changeset 0:3f4adc85ba5d draft

"planemo upload for repository https://github.com/dlal-group/simtext commit fd3f5b7b0506fbc460f2a281f694cb57f1c90a3c-dirty"
author dlalgroup
date Thu, 24 Sep 2020 02:01:50 +0000
parents
children f55a02423699
files Dockerfile README.md abstracts_by_pmids.R examples/commands_examples examples/data/1a/clingen_data examples/data/1a/clingen_data_matrix examples/data/1a/pubmed_by_queries_output examples/data/1b/clingen_data examples/data/1b/clingen_data_matrix examples/data/1b/pubmed_by_queries_output examples/data/2/abstracts_by_pmids_output examples/data/2/researcher_data.txt examples/data/2/researcher_data_matrix macros.xml pmids_to_pubtator_matrix.R pmids_to_pubtator_matrix.xml pubmed_by_queries.R simtext_app.R test/commands_tests test/data/abstracts_by_pmids_output test/data/pmids_to_pubtator_matrix_output test/data/pubmed_by_queries_output test/data/pubmed_by_queries_output_abstracts test/data/test_data test/data/text_to_wordmatrix_output text_to_wordmatrix.R
diffstat 26 files changed, 2788 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Dockerfile	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,38 @@
+FROM rocker/r-ubuntu:20.04
+WORKDIR /simtext
+COPY . .
+
+RUN apt-get update -qq && apt-get -y upgrade && apt-get -y --no-install-recommends install \
+  libssl-dev  \
+  file \
+  zlib1g-dev \
+  libcurl4-openssl-dev \
+  libxml2-dev \
+  libjpeg-dev \
+  && Rscript -e 'if (!require("shiny")) install.packages("shiny", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("plotly")) install.packages("plotly", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("DT")) install.packages("DT", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("shinycssloaders")) install.packages("shinycssloaders", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("shinythemes")) install.packages("shinythemes", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("tableHTML")) install.packages("tableHTML", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("argparse")) install.packages("argparse", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("PubMedWordcloud")) install.packages("PubMedWordcloud", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("ggplot2")) install.packages("ggplot2", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("stringr")) install.packages("stringr", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("tidyr")) install.packages("tidyr", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("magrittr")) install.packages("magrittr", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("plyr")) install.packages("plyr", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("ggpubr")) install.packages("ggpubr", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("rafalib")) install.packages("rafalib", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("RColorBrewer")) install.packages("RColorBrewer", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("dendextend")) install.packages("dendextend", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("Rtsne")) install.packages("Rtsne", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("umap")) install.packages("umap", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("reutils")) install.packages("reutils", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("textclean")) install.packages("textclean", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("easyPubMed")) install.packages("easyPubMed", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("RCurl")) install.packages("RCurl", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("SnowballC")) install.packages("SnowballC", repos="https://cloud.r-project.org");' \
+  && Rscript -e 'if (!require("SemNetCleaner")) install.packages("SemNetCleaner", repos="https://cloud.r-project.org");' 
+
+ENV PATH "/simtext/:${PATH}"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.md	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,181 @@
+# SimText
+
+A text mining framework for interactive analysis and visualization of similarities among biomedical entities.
+
+## Brief overview of tools:
+
+ - pubmed_by_queries: 
+
+ For each search query, PMIDs or abstracts from PubMed are saved.
+
+ - abstracts_by_pmids: 
+
+ For all PMIDs in each row of a table the according abstracts are saved in additional columns.
+
+ - text_to_wordmatrix: 
+
+ The most frequent words of text from each row are extracted and united in one large binary matrix. 
+ 
+ - pmids_to_pubtator_matrix: 
+
+ For PMIDs of each row, scientific words are extracted using PubTator annotations and subsequently united in one large binary matrix. 
+
+ - simtext_app: 
+
+ Shiny app with word clouds, dimension reduction plot, dendrogram of hierarchical clustering and table with words and their frequency among the search queries.
+
+## Requirements
+
+ - R (version > 4.0.0)
+
+## Installation
+
+```
+$ mkdir -p <path>/simtext
+$ cd <path>/simtext
+$ git clone https://github.com/dlal-group/simtext
+```
+
+## pubmed_by_queries
+
+This tool uses a set of search queries to download a defined number of abstracts or PMIDs for each search query from PubMed. PubMed's search rules and syntax apply. Users can obtain an API key from the Settings page of their NCBI account (to create an account, visit http://www.ncbi.nlm.nih.gov/account/).
+
+Input:
+
+Tab-delimited table with a list of search queries (biomedical entities of interest) in one column. The column header should start with "ID_" (e.g., "ID_gene" if search queries are genes). 
+
+Usage:
+```
+$ Rscript pubmed_by_queries.R [-h] [-i INPUT] [-o OUTPUT] [-n NUMBER] [-a] [-k KEY] [--install_packages]
+```
+
+Optional arguments: 
+```
+ -h, --help                  show help message
+ -i INPUT, --input INPUT     input file name. add path if file is not in working directory
+ -o OUTPUT, --output OUTPUT  output file name [default "pubmed_by_queries_output"]
+ -n NUMBER, --number NUMBER  number of PMIDs or abstracts to save per ID [default "5"]
+ -a, --abstract              if abstracts instead of PMIDs should be retrieved use --abstracts 
+ -k KEY, --key KEY           if NCBI API key is available, add it to speed up the download of PubMed data
+ --install_packages           if you want to auto install missing required packages
+```
+
+Output: 
+
+A table with additional columns containing PMIDs or abstracts from PubMed.
+
+## abstracts_by_pmids
+
+This tool retrieves abstracts for a matrix of PMIDs. The abstract text is saved in additional columns.
+
+Input:
+
+Tab-delimited table with rows representing biomedical entities and columns containing the corresponding PMIDs. The names of the PMID columns should start with “PMID_” (e.g., “PMID_1”, “PMID_2” etc.).
+
+Usage:
+```
+$ Rscript abstracts_by_pmid.R [-h] [-i INPUT] [-o OUTPUT]
+```
+
+Optional arguments: 
+```
+ -h, --help                    show help message
+ -i INPUT, --input INPUT    input file name. add path if file is not in working directory
+ -o OUTPUT, --output OUTPUT output file name [default "abstracts_by_pmids_output"]
+ --install_packages           if you want to auto install missing required packages
+```
+
+Output: 
+
+A table with additional columns containing abstract texts.
+
+## text_to_wordmatrix
+
+The tool extracts for each row the most frequent words from the text in columns starting with "ABSTRACT" or "TEXT. The extracted words from each row are united in one large binary matrix, with 0= word not frequently occurring in text of that row and 1= word frequently present in text of that row.
+
+Input: 
+
+The output of ‘pubmed_by_queries’ or ‘abstracts_by_pmids’ tools, or a tab-delimited table with text in columns starting with "ABSTRACT" or "TEXT".
+
+Usage:
+```
+$ Rscript text_to_wordmatrix.R [-h] [-i INPUT] [-o OUTPUT] [-n NUMBER] [-r] [-l] [-w] [-s] [-p]
+```
+
+Optional arguments: 
+```
+ -h, --help                    show help message
+ -i INPUT, --input INPUT       input file name. add path if file is not in working directory
+ -o OUTPUT, --output OUTPUT    output file name. [default "text_to_wordmatrix_output"]
+ -n NUMBER, --number NUMBER    number of most frequent words that should be extracted per row [default "50"]
+ -r, --remove_num              remove any numbers in text
+ -l, --lower_case              by default all characters are translated to lower case. otherwise use -l
+ -w, --remove_stopwords        by default a set of english stopwords (e.g., 'the' or 'not') are removed. otherwise use -w
+ -s, --stemDoc                 apply Porter's stemming algorithm: collapsing words to a common root to aid comparison of vocabulary
+ -p, --plurals                 by default words in plural and singular are merged to the singular form. otherwise use -p
+ -- install_packages           if you want to auto install missing required packages
+```
+
+Output: 
+
+A binary matrix in that each column represents one of the extracted words.
+
+## pmids_to_pubtator_matrix
+
+The tool uses all PMIDs per row and extracts "Gene", "Disease", "Mutation", "Chemical" and "Species" terms of the corresponding abstracts, using PubTator annotations. The user can choose from which categories terms should be extracted. The extracted terms are united in one large binary matrix, with 0= term not present in abstracts of that row and 1= term present in abstracts of that row. The user can decide if the scientific terms should be extracted and used as they are or if they should be grouped by their geneIDs/ meshIDs (several terms are often grouped into one ID). Also, by default all terms are extracted, otherwise the user can specify a number of most frequent words to extract per row.
+
+Input: 
+
+Output of 'abstracts_by_pmids' tool, or tab-delimited table with columns containing PMIDs. The names of the PMID columns should start with "PMID", e.g. "PMID_1", "PMID_2" etc.
+
+Usage:
+```
+$ Rscript pmids_to_pubtator_matrix.R [-h] [-i INPUT] [-o OUTPUT] [-b BYID] [-n NUMBER][-c {Gene,Disease,Mutation,Chemical,Species} [{Gene,Disease,Mutation,Chemical,Species} ...]]
+```
+ 
+Optional arguments:
+```
+ -h, --help                    show help message
+ -i INPUT, --input INPUT       input file name. add path if file is not in workind directory
+ -o OUTPUT, --output OUTPUT    output file name. [default "pmids_to_pubtator_matrix_output"]
+ -b, --byid                    if you want to find common gene IDs / mesh IDs instead of specific scientific terms.
+ -n NUMBER, --number NUMBER    number of most frequent terms/IDs to extract. by default all terms/IDs are extracted.
+ -c [...], --categories [...]  PubTator categories that should be considered [default "('Gene', 'Disease', 'Mutation','Chemical')"]
+ -- install_packages           if you want to auto install missing required packages
+```
+
+Output: 
+
+Binary matrix in that each column represents one of the extracted terms.
+
+## simtext_app
+
+The tool enables the exploration of data generated by ‘text_to_wordmatrix’ or ‘pmids_to_pubtator_matrix’ tools in a Shiny local instance. The following features can be generated: 1) word clouds for each initial search query, 2) dimension reduction and hierarchical clustering of binary matrices, and 3) tables with words and their frequency in the search queries.
+
+Input:
+
+1)	Input 1: 
+Tab-delimited table with
+	- A column with initial search queries starting with "ID_" (e.g., "ID_gene" if initial search queries were genes).
+	- Column(s) with grouping factor(s) to compare pre-existing categories of the initial search queries with the grouping based on text. The column names should start with "GROUPING_". If the column name is "GROUPING_disorder", "disorder" will be shown as a grouping variable in the app.
+2)	Input 2: 
+The output of ‘text_to_wordmatrix’ or ‘pmids_to_pubtator_matrix’ tools, or a binary matrix.
+
+Usage:
+```
+$ Rscript simtext_app.R [-h] [-i INPUT] [-m MATRIX] [-p PORT]
+```
+
+Optional arguments:
+```
+ -h,        --help             show help message
+ -i INPUT,  --input INPUT      input file name. add path if file is not in working directory
+ -m MATRIX, --matrix MATRIX    matrix file name. add path if file is not in working directory
+ -p PORT,   --port PORT        specify port, otherwise randomly selected
+ --host						   specify host
+ -- install_packages           if you want to auto install missing required packages
+```
+
+Output: 
+
+SimText app
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/abstracts_by_pmids.R	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,142 @@
+#!/usr/bin/env Rscript
+#TOOL2 abstracts_by_pmids
+#
+#This tool retrieves for all PMIDs in each row of a table the according abstracts and saves them in additional columns.
+#
+#Input: Tab-delimited table with columns containing PMIDs. The names of the PMID columns should start with “PMID”, e.g. “PMID_1”, “PMID_2” etc.
+#
+#Output: Input table with additional columns containing abstracts corresponding to the PMIDs from PubMed. 
+#The abstract columns are called "ABSTRACT_1", "ABSTARCT_2" etc. 
+#
+# Usage: $ T2_abstracts_by_pmid.R [-h] [-i INPUT] [-o OUTPUT]
+# 
+# optional arguments:
+# -h, --help                 show help message
+# -i INPUT, --input INPUT    input file name. add path if file is not in working directory
+# -o OUTPUT, --output OUTPUT output file name. [default "T2_output"]
+
+
+if ( '--install_packages' %in% commandArgs()) {
+  print('Installing packages')
+  if (!require('argparse')) install.packages('argparse', repo="http://cran.rstudio.com/");
+  if (!require("reutils")) install.packages("reutils", repo="http://cran.rstudio.com/");
+  if (!require('easyPubMed')) install.packages('easyPubMed', repo="http://cran.rstudio.com/" );
+  if (!require('textclean')) install.packages('textclean', repo="http://cran.rstudio.com/");
+}
+
+suppressPackageStartupMessages(library("argparse"))
+library("reutils")
+suppressPackageStartupMessages(library("easyPubMed"))
+suppressPackageStartupMessages(library("textclean"))
+
+parser <- ArgumentParser()
+parser$add_argument("-i", "--input", 
+                    help = "input fie name. add path if file is not in workind directory")
+parser$add_argument("-o", "--output", default="abstracts_by_pmids_output",
+                    help = "output file name. [default \"%(default)s\"]")
+parser$add_argument("--install_packages", action="store_true", default=FALSE,
+                    help="If you want to auto install missing required packages.")
+
+args <- parser$parse_args()
+
+data = read.delim(args$input, stringsAsFactors=FALSE, header= TRUE, sep='\t')
+pmids_cols_index <- grep("PMID", names(data))
+
+fetch_abstracts = function(PMIDs, row){
+  
+  efetch_result <- NULL
+  try_num <- 1
+  t_0 <- Sys.time()
+  
+  while(is.null(efetch_result)) {
+    
+    # Timing check: kill at 3 min
+    if (try_num > 1){
+      Sys.sleep(time = 1*try_num)
+      cat("Problem to receive PubMed data or error is received. Please wait. Try number: ",try_num,"\n") 
+    }
+    
+    t_1 <- Sys.time()
+    
+    if(as.numeric(difftime(t_1, t_0, units = "mins")) > 3){
+      message("Killing the request! Something is not working. Please, try again later","\n")
+      return(data)
+    }
+
+    efetch_result <- tryCatch({    
+      suppressWarnings(efetch(uid=PMIDs, db="pubmed", retmode = "xml"))
+    }, error = function(e) {
+      NULL
+    })
+    
+    if(!is.null(as.list(efetch_result$errors)$error)){
+      if (as.list(efetch_result$errors)$error == "HTTP error: Status 400; Bad Request") {
+        efetch_result <- NULL
+      }
+    }
+      
+    try_num <- try_num + 1
+    
+  } #while loop end
+
+  # articles to list
+  xml_data <- strsplit(efetch_result$content, "<PubmedArticle(>|[[:space:]]+?.*>)")[[1]][-1]
+  xml_data <- sapply(xml_data, function(x) {
+    #trim extra stuff at the end of the record
+    if (!grepl("</PubmedArticle>$", x))
+      x <- sub("(^.*</PubmedArticle>).*$", "\\1", x) 
+    # Rebuid XML structure and proceed
+    x <- paste("<PubmedArticle>", x)
+    gsub("[[:space:]]{2,}", " ", x)}, 
+    USE.NAMES = FALSE, simplify = TRUE)
+  
+  abstract.text = sapply(xml_data, function(x){
+    custom_grep(x, tag="AbstractText", format="char")}, 
+    USE.NAMES = FALSE, simplify = TRUE)
+  
+  abstracts <- sapply(abstract.text, function(x){
+    if (length(x) > 1){
+      x <- paste(x, collapse = " ", sep = " ")
+      x <- gsub("</{0,1}i>", "", x, ignore.case = T)
+      x <- gsub("</{0,1}b>", "", x, ignore.case = T)
+      x <- gsub("</{0,1}sub>", "", x, ignore.case = T)
+      x <- gsub("</{0,1}exp>", "", x, ignore.case = T)
+    } else if (length(x) < 1) {
+      x <- NA
+    } else {
+      x <- gsub("</{0,1}i>", "", x, ignore.case = T)
+      x <- gsub("</{0,1}b>", "", x, ignore.case = T)
+      x <- gsub("</{0,1}sub>", "", x, ignore.case = T)
+      x <- gsub("</{0,1}exp>", "", x, ignore.case = T)
+    }
+    x
+  }, 
+  USE.NAMES = FALSE, simplify = TRUE)
+  
+  abstracts = as.character(abstracts)
+  
+  if(length(abstracts)>0){
+    data[row,sapply(1:length(abstracts),function(i){paste0("ABSTRACT_",i)})] <- abstracts
+    cat(length(abstracts)," abstracts for PMIDs of row ", row, " are added in the table.","\n")
+  }
+  
+  return(data)
+}
+    
+
+for(row in 1:nrow(data)){
+  PMIDs= as.character(unique(data[row, pmids_cols_index]))
+  PMIDs = PMIDs[!PMIDs=="NA"]
+  
+  if(length(PMIDs) > 0){
+    data = tryCatch(fetch_abstracts(PMIDs, row),
+                    error=function(e){ 
+                      Sys.sleep(3)
+                      })
+  } else {
+    print(paste("No PMIDs in row", row))
+  }
+}
+
+write.table(data, args$output, sep = '\t', row.names = FALSE, col.names = TRUE)
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/commands_examples	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,78 @@
+#Commands to reproduce use-case examples
+
+
+#### Use-case 1a #####
+
+$ cd <path>/SimText
+
+$ Rscript pubmed_by_queries.R \
+ --input examples/data/1a/clingen_data \
+ --output examples/data/1a/pubmed_by_queries_output \
+ --number 500 \
+ --abstract \
+ --install_packages
+
+$ Rscript text_to_wordmatrix.R \
+ --input "examples/data/1a/pubmed_by_queries_output" \
+ --output "examples/data/1a/clingen_data_matrix" \
+ --number 100 \
+ --install_packages
+
+$ Rscript simtext_app.R \
+ --input "examples/data/1a/clingen_data" \
+ --matrix "examples/data/1a/clingen_data_matrix" \
+ --install_packages
+
+
+
+#### Use-case 1b #####
+
+$ cd <path>/SimText
+
+$ Rscript pubmed_by_queries.R \
+ --input "examples/data/1b/clingen_data" \
+ --output "examples/data/1b/pubmed_by_queries_output" \
+ --number 500 \
+ --install_packages
+
+$ Rscript pmids_to_pubtator_matrix.R \
+ --input "examples/data/1b/pubmed_by_queries_output"  \
+ --output "examples/data/1b/clingen_data_matrix" \
+ --categories Disease Gene \
+ --number 100 \
+ --install_packages
+
+$ Rscript simtext_app.R \
+ --input "examples/data/1b/clingen_data" \
+ --matrix "examples/data/1b/clingen_data_matrix" \
+ --install_packages
+
+
+#### Use-case 2 #####
+
+cd <path>/SimText
+
+$ Rscript abstracts_by_pmids.R \
+ --input "examples/data/2/researcher_data.txt" \
+ --output "examples/data/2/abstracts_by_pmids_output"
+
+$ Rscript text_to_wordmatrix.R \
+ --input "examples/data/2/abstracts_by_pmids_output" \
+ --output "examples/data/2/researcher_data_matrix" \
+ --number 50
+
+$ Rscript simtext_app.R \
+ --input "examples/data/2/researcher_data.txt" \
+ --matrix "examples/data/2/researcher_data_matrix"
+
+
+
+
+
+
+
+
+
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/1a/clingen_data	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,96 @@
+"ID_gene"	"GROUPING_disorder"
+"1"	"CHD2"	"complex neurodevelopmental disorder"
+"2"	"EEF1A2"	"complex neurodevelopmental disorder"
+"3"	"GRIN1"	"complex neurodevelopmental disorder"
+"4"	"GRIN2A"	"complex neurodevelopmental disorder"
+"5"	"KCNB1"	"complex neurodevelopmental disorder"
+"6"	"MEF2C"	"complex neurodevelopmental disorder"
+"7"	"NRXN1"	"complex neurodevelopmental disorder"
+"8"	"PURA"	"complex neurodevelopmental disorder"
+"9"	"SCN2A"	"complex neurodevelopmental disorder"
+"10"	"SCN8A"	"complex neurodevelopmental disorder"
+"11"	"SHANK2"	"complex neurodevelopmental disorder"
+"12"	"SYNGAP1"	"complex neurodevelopmental disorder"
+"13"	"CC2D1A"	"complex neurodevelopmental disorder"
+"14"	"HOXA1"	"complex neurodevelopmental disorder"
+"15"	"IQSEC2"	"complex neurodevelopmental disorder"
+"16"	"NLGN4X"	"complex neurodevelopmental disorder"
+"17"	"SMC1A"	"complex neurodevelopmental disorder"
+"18"	"UPF3B"	"complex neurodevelopmental disorder"
+"19"	"WDR45"	"complex neurodevelopmental disorder"
+"20"	"ACTA2"	"familial thoracic aortic aneurysm and aortic dissection"
+"21"	"COL3A1"	"familial thoracic aortic aneurysm and aortic dissection"
+"22"	"FBN1"	"familial thoracic aortic aneurysm and aortic dissection"
+"23"	"LOX"	"familial thoracic aortic aneurysm and aortic dissection"
+"24"	"MYH11"	"familial thoracic aortic aneurysm and aortic dissection"
+"25"	"MYLK"	"familial thoracic aortic aneurysm and aortic dissection"
+"26"	"PRKG1"	"familial thoracic aortic aneurysm and aortic dissection"
+"27"	"SMAD3"	"familial thoracic aortic aneurysm and aortic dissection"
+"28"	"TGFB2"	"familial thoracic aortic aneurysm and aortic dissection"
+"29"	"TGFBR1"	"familial thoracic aortic aneurysm and aortic dissection"
+"30"	"TGFBR2"	"familial thoracic aortic aneurysm and aortic dissection"
+"31"	"ACTG1"	"nonsyndromic genetic deafness"
+"32"	"COCH"	"nonsyndromic genetic deafness"
+"33"	"EYA4"	"nonsyndromic genetic deafness"
+"34"	"GRHL2"	"nonsyndromic genetic deafness"
+"35"	"KCNQ4"	"nonsyndromic genetic deafness"
+"36"	"MYH14"	"nonsyndromic genetic deafness"
+"37"	"MYO6"	"nonsyndromic genetic deafness"
+"38"	"MYO7A"	"nonsyndromic genetic deafness"
+"39"	"POU4F3"	"nonsyndromic genetic deafness"
+"40"	"SLC17A8"	"nonsyndromic genetic deafness"
+"41"	"TECTA"	"nonsyndromic genetic deafness"
+"42"	"TMC1"	"nonsyndromic genetic deafness"
+"43"	"CABP2"	"nonsyndromic genetic deafness"
+"44"	"CDH23"	"nonsyndromic genetic deafness"
+"45"	"CIB2"	"nonsyndromic genetic deafness"
+"46"	"CLDN14"	"nonsyndromic genetic deafness"
+"47"	"ESPN"	"nonsyndromic genetic deafness"
+"48"	"ESRRB"	"nonsyndromic genetic deafness"
+"49"	"GIPC3"	"nonsyndromic genetic deafness"
+"50"	"GRXCR1"	"nonsyndromic genetic deafness"
+"51"	"ILDR1"	"nonsyndromic genetic deafness"
+"52"	"LHFPL5"	"nonsyndromic genetic deafness"
+"53"	"LOXHD1"	"nonsyndromic genetic deafness"
+"54"	"MARVELD2"	"nonsyndromic genetic deafness"
+"55"	"MYO15A"	"nonsyndromic genetic deafness"
+"56"	"MYO3A"	"nonsyndromic genetic deafness"
+"57"	"OTOA"	"nonsyndromic genetic deafness"
+"58"	"OTOG"	"nonsyndromic genetic deafness"
+"59"	"OTOGL"	"nonsyndromic genetic deafness"
+"60"	"PJVK"	"nonsyndromic genetic deafness"
+"61"	"RDX"	"nonsyndromic genetic deafness"
+"62"	"S1PR2"	"nonsyndromic genetic deafness"
+"63"	"STRC"	"nonsyndromic genetic deafness"
+"64"	"TMIE"	"nonsyndromic genetic deafness"
+"65"	"TMPRSS3"	"nonsyndromic genetic deafness"
+"66"	"TPRN"	"nonsyndromic genetic deafness"
+"67"	"POU3F4"	"nonsyndromic genetic deafness"
+"68"	"SMPX"	"nonsyndromic genetic deafness"
+"69"	"KRAS"	"Noonan syndrome"
+"70"	"LZTR1"	"Noonan syndrome"
+"71"	"NRAS"	"Noonan syndrome"
+"72"	"PTPN11"	"Noonan syndrome"
+"73"	"RAF1"	"Noonan syndrome"
+"74"	"RIT1"	"Noonan syndrome"
+"75"	"RRAS2"	"Noonan syndrome"
+"76"	"SOS1"	"Noonan syndrome"
+"77"	"ETHE1"	"Leigh syndrome"
+"78"	"LRPPRC"	"Leigh syndrome"
+"79"	"NDUFS1"	"Leigh syndrome"
+"80"	"NDUFS4"	"Leigh syndrome"
+"81"	"NDUFV1"	"Leigh syndrome"
+"82"	"SCO2"	"Leigh syndrome"
+"83"	"SLC19A3"	"Leigh syndrome"
+"84"	"SUCLA2"	"Leigh syndrome"
+"85"	"SURF1"	"Leigh syndrome"
+"86"	"TTC19"	"Leigh syndrome"
+"87"	"PDHA1"	"Leigh syndrome"
+"88"	"ACTC1"	"hypertrophic cardiomyopathy"
+"89"	"MYH7"	"hypertrophic cardiomyopathy"
+"90"	"MYL3"	"hypertrophic cardiomyopathy"
+"91"	"PRKAG2"	"hypertrophic cardiomyopathy"
+"92"	"TNNI3"	"hypertrophic cardiomyopathy"
+"93"	"TNNT2"	"hypertrophic cardiomyopathy"
+"94"	"TPM1"	"hypertrophic cardiomyopathy"
+"95"	"ALPK3"	"hypertrophic cardiomyopathy"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/1a/clingen_data_matrix	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,96 @@
+"chd2"	"gene"	"patient"	"mutation"	"epilepsy"	"protein"	"variant"	"genetic"	"cell"	"chromatin"	"expression"	"reaction"	"identified"	"disorder"	"syndrome"	"dna"	"group"	"associated"	"seizure"	"analysis"	"role"	"study"	"region"	"result"	"case"	"sequencing"	"using"	"including"	"methyl"	"one"	"pathogenic"	"also"	"mouse"	"two"	"excitation"	"state"	"clinical"	"epileptic"	"molecular"	"novo"	"studies"	"data"	"found"	"human"	"genomic"	"different"	"function"	"deletion"	"disability"	"previously"	"spectrum"	"can"	"dynamic"	"factor"	"show"	"vibrational"	"development"	"energy"	"intellectual"	"known"	"phenotype"	"channel"	"chromodomain"	"helicase"	"product"	"reported"	"experiment"	"chd1"	"effect"	"however"	"potential"	"showed"	"cause"	"chd"	"level"	"cancer"	"candidate"	"new"	"observed"	"onset"	"binding"	"developmental"	"novel"	"revealed"	"disease"	"performed"	"present"	"three"	"dnabinding"	"phenotypic"	"report"	"chd3"	"finding"	"may"	"feature"	"mechanism"	"severe"	"targeted"	"age"	"diagnosis"	"eef1a2"	"elongation"	"translation"	"eef1a"	"eef1a1"	"statin"	"muscle"	"tissue"	"tumor"	"eukaryotic"	"expressed"	"line"	"nuclear"	"growth"	"apoptosis"	"increased"	"target"	"normal"	"model"	"pathway"	"mrna"	"carcinoma"	"ovarian"	"breast"	"suggest"	"used"	"activity"	"change"	"survival"	"alpha"	"significantly"	"control"	"overexpression"	"treatment"	"marker"	"involved"	"isoforms"	"interaction"	"cycle"	"vitro"	"proliferation"	"phase"	"significant"	"synthesis"	"brain"	"neuron"	"functional"	"cellular"	"increase"	"provide"	"compared"	"complex"	"important"	"rat"	"receptor"	"grin1"	"nmda"	"subunit"	"glutamate"	"schizophrenia"	"nmdar"	"nmethyldaspartate"	"synaptic"	"nmdars"	"neuronal"	"signaling"	"behavior"	"grin2b"	"association"	"response"	"glutamatergic"	"cortex"	"system"	"glun1"	"polymorphism"	"test"	"learning"	"nr1"	"social"	"memory"	"grin2a"	"reduced"	"site"	"evidence"	"alcohol"	"glycine"	"cognitive"	"exon"	"mutant"	"type"	"melanoma"	"individual"	"risk"	"exposure"	"variation"	"drug"	"related"	"glun2a"	"several"	"child"	"kv21"	"current"	"potassium"	"kcnb1"	"membrane"	"voltagegated"	"activation"	"inactivation"	"ion"	"delayed"	"domain"	"voltage"	"myocyte"	"rectifier"	"kv15"	"voltagedependent"	"insulin"	"regulation"	"gating"	"pulmonary"	"ca2"	"properties"	"kv2"	"decreased"	"action"	"localization"	"form"	"hippocampal"	"plasmon"	"inhibited"	"kinase"	"kv12"	"regulate"	"specific"	"inhibition"	"component"	"excitability"	"outward"	"mef2c"	"cardiac"	"differentiation"	"transcription"	"heart"	"reprogramming"	"stem"	"skeletal"	"cardiomyocytes"	"enhancer"	"fibroblast"	"transcriptional"	"gata4"	"induced"	"myoblast"	"mef2"	"embryonic"	"direct"	"progenitor"	"play"	"early"	"network"	"regulatory"	"formation"	"regulator"	"nrxn1"	"autism"	"cnvs"	"asd"	"neurexin"	"synapse"	"number"	"rare"	"neurexins"	"neurodevelopmental"	"presynaptic"	"copy"	"genomewide"	"splicing"	"adhesion"	"molecule"	"common"	"family"	"locus"	"population"	"cnv"	"postsynaptic"	"sample"	"susceptibility"	"pura"	"puralpha"	"strain"	"total"	"isolate"	"pur"	"higher"	"animal"	"method"	"prevalence"	"among"	"based"	"sequence"	"respectively"	"use"	"time"	"specie"	"coli"	"high"	"infection"	"day"	"mean"	"year"	"adult"	"rate"	"value"	"jammu"	"blood"	"difference"	"horse"	"goat"	"extract"	"first"	"scn2a"	"sodium"	"nav12"	"scn1a"	"prion"	"prpsc"	"encephalopathy"	"epilepsies"	"families"	"familial"	"kcnq2"	"infantile"	"prpc"	"neonatal"	"diagnostic"	"nav"	"prp"	"benign"	"nav16"	"scn8a"	"axon"	"node"	"nav11"	"purkinje"	"nerve"	"pain"	"ai"	"within"	"persistent"	"resurgent"	"firing"	"nav17"	"contribute"	"shank2"	"shank"	"density"	"shank1"	"shank3"	"spine"	"excitatory"	"psd"	"scaffolding"	"pdz"	"behavioral"	"multiple"	"deficit"	"scaffold"	"dendritic"	"methylation"	"prosap1shank2"	"syngap1"	"syngap"	"ra"	"phosphorylation"	"plasticity"	"psd95"	"gtpaseactivating"	"critical"	"camkii"	"cortical"	"cc2d1a"	"5ht1a"	"freud1"	"aki1"	"mental"	"retardation"	"repressor"	"male"	"nonsyndromic"	"autosomal"	"freud2"	"pfc"	"recessive"	"cc2d1b"	"lgd"	"element"	"female"	"dm14"	"nudr"	"major"	"repression"	"str"	"anxiety"	"separase"	"serotonin"	"chromosome"	"inhibitor"	"rna"	"hoxa1"	"hox"	"hoxb1"	"acid"	"embryo"	"retinoic"	"homeobox"	"hindbrain"	"assay"	"invasion"	"neural"	"lung"	"hotairm1"	"mir10a"	"migration"	"patterning"	"progression"	"iqsec2"	"xlinked"	"brag1"	"exome"	"affected"	"arf6"	"mecp2"	"cohort"	"exchange"	"rtt"	"xlid"	"rett"	"testing"	"brag2"	"escape"	"nucleotide"	"proband"	"sec7"	"ampa"	"guanine"	"heterozygous"	"kdm5c"	"iqarfgefbrag1"	"missense"	"nlgn4x"	"neuroligin"	"nlgn4"	"nlgn3"	"neuroligins"	"autistic"	"nlgn4y"	"neuroligin4"	"single"	"nl4"	"xyy"	"smc1a"	"cdls"	"cohesin"	"nipbl"	"cornelia"	"lange"	"smc3"	"rad21"	"hdac8"	"facial"	"structural"	"chromatid"	"cohesion"	"characterized"	"defect"	"limb"	"sister"	"stag2"	"myeloid"	"aml"	"caused"	"leukemia"	"congenital"	"nmd"	"upf3b"	"decay"	"nonsensemediated"	"mrnas"	"upf1"	"upf2"	"termination"	"ejc"	"codon"	"transcript"	"premature"	"junction"	"upf3a"	"nonsense"	"ptcs"	"y14"	"degrade"	"degradation"	"duplication"	"surveillance"	"conserved"	"cytoplasmic"	"bind"	"export"	"demonstrate"	"eif4a3"	"wdr45"	"neurodegeneration"	"iron"	"bpan"	"autophagy"	"accumulation"	"nbia"	"proteinassociated"	"betapropeller"	"delay"	"imaging"	"childhood"	"mri"	"nigra"	"adulthood"	"substantia"	"dystonia"	"globus"	"parkinsonism"	"subtype"	"progressive"	"pallidus"	"spasm"	"basal"	"dominant"	"due"	"ganglion"	"magnetic"	"resonance"	"deposition"	"neurodegenerative"	"c19orf12"	"fibrosis"	"αsma"	"collagen"	"liver"	"acta2"	"actin"	"smooth"	"hepatic"	"tgfβ1"	"vascular"	"matrix"	"αsmooth"	"aortic"	"emt"	"vivo"	"caf"	"myofibroblast"	"epithelial"	"via"	"endothelial"	"therapeutic"	"fibrotic"	"myofibroblasts"	"extracellular"	"western"	"tgfβ"	"primary"	"transition"	"stellate"	"col3a1"	"col1a1"	"tendon"	"iii"	"skin"	"upregulated"	"veds"	"ecm"	"healing"	"ehlersdanlos"	"col1a2"	"deg"	"inflammatory"	"remodeling"	"fbn1"	"mf"	"marfan"	"fibrillin1"	"aneurysm"	"dissection"	"connective"	"elastic"	"cardiovascular"	"aorta"	"fiber"	"elastin"	"microfibril"	"root"	"thoracic"	"fibrillin"	"lox"	"lox1"	"compound"	"enzyme"	"5lox"	"antiinflammatory"	"oxidase"	"inflammation"	"lipid"	"macrophage"	"cox2"	"well"	"plant"	"production"	"lysyl"	"injury"	"lipoxygenase"	"antioxidant"	"concentration"	"oxldl"	"oxidized"	"oxidative"	"activities"	"acute"	"fusion"	"myh11"	"cbfbmyh11"	"chain"	"inv16"	"myosin"	"smc"	"detected"	"smcs"	"cytogenetic"	"relapse"	"rearrangement"	"prognosis"	"abnormalities"	"prognostic"	"contractile"	"cbf"	"bone"	"mrd"	"marrow"	"mylk"	"light"	"mlck"	"contraction"	"asthma"	"nmmlck"	"intestinal"	"circmylk"	"african"	"nonmuscle"	"cgmp"	"cgmpdependent"	"cgki"	"prkg1"	"pkg"	"cyclic"	"nitric"	"pkgi"	"cgk"	"oxide"	"pressure"	"snps"	"hypertension"	"gkinase"	"pkgialpha"	"smad3"	"renal"	"transforming"	"smad2"	"kidney"	"inhibit"	"demonstrated"	"diabetic"	"promote"	"addition"	"tgfβ2"	"tgfb2"	"immune"	"len"	"cytokines"	"tgfbr1"	"alk5"	"tgfbr2"	"metastasis"	"mirnas"	"targeting"	"factorβ"	"signalling"	"actg1"	"hearing"	"loss"	"actb"	"baraitserwinter"	"analyzed"	"deafness"	"differentially"	"malformation"	"biological"	"impairment"	"outcome"	"coch"	"cochlin"	"cocaine"	"vestibular"	"ear"	"ligand"	"complexes"	"dfna9"	"bond"	"inner"	"structure"	"trial"	"radical"	"rigi"	"sensorineural"	"eya4"	"crc"	"eya"	"methylated"	"eye"	"absent"	"hypermethylation"	"dfna10"	"pattern"	"colorectal"	"member"	"promoter"	"eya1"	"hcc"	"hypermethylated"	"sensory"	"chinese"	"identify"	"nihl"	"grhl2"	"grainyheadlike"	"closure"	"zeb1"	"tube"	"morphogenesis"	"knockdown"	"barrier"	"epithelialmesenchymal"	"grhl"	"grhl3"	"prostate"	"grainyhead"	"allele"	"kcnq4"	"kcnq"	"kv7"	"hair"	"kv74"	"kcnq1"	"kcnq3"	"kcnq5"	"retigabine"	"dfna2"	"activator"	"arteries"	"ohcs"	"outer"	"opener"	"blocker"	"auditory"	"cochlear"	"linopirdine"	"myh14"	"heavy"	"iic"	"myh9"	"iib"	"myh10"	"dfna4"	"mir499"	"neuropathy"	"nmhc"	"iia"	"mitochondrial"	"myh"	"peripheral"	"teleost"	"myo6"	"motor"	"stereocilia"	"endosome"	"unconventional"	"uca1"	"endocytosis"	"vesicle"	"dfna22"	"filament"	"myo7a"	"usher"	"viia"	"retinal"	"ush"	"ush1"	"photoreceptor"	"ush2a"	"ush1b"	"cdh23"	"cochlea"	"rpe"	"retinitis"	"pigmentosa"	"large"	"dysfunction"	"melanosome"	"pou4f3"	"atoh1"	"hcs"	"brn3c"	"dfna15"	"organ"	"brn3"	"transgenic"	"brn3b"	"regeneration"	"cervical"	"vglut3"	"transporter"	"vesicular"	"vglut1"	"vglut2"	"nucleus"	"release"	"slc17a8"	"terminal"	"vgluts"	"amacrine"	"distribution"	"cholinergic"	"immunoreactivity"	"retina"	"vglut"	"neurotransmitter"	"dorsal"	"ihcs"	"amino"	"bipolar"	"interneuron"	"raphe"	"transport"	"transmitter"	"lateral"	"tecta"	"optic"	"tectum"	"olfactory"	"projection"	"tectal"	"layer"	"area"	"visual"	"anterior"	"medial"	"chick"	"frog"	"retinotectal"	"tectorial"	"ipsilateral"	"ventral"	"part"	"map"	"tmc1"	"transmembrane"	"tmc2"	"tmc"	"met"	"channellike"	"transduction"	"mechanotransduction"	"gjb2"	"tip"	"dfna36"	"arnshl"	"bundle"	"lhfpl5"	"hereditary"	"tmie"	"mechanoelectrical"	"four"	"conductance"	"dfnb711"	"screening"	"homozygous"	"cabp2"	"cabp1"	"pdi"	"cabps"	"erp72"	"disulfide"	"calreticulin"	"cav13"	"isomerase"	"thioredoxin"	"cabp4"	"kdel"	"bip"	"substrate"	"ca2binding"	"cabp"	"chaperone"	"compartment"	"endoplasmic"	"reticulum"	"calmodulin"	"renaturation"	"trx"	"calciumbinding"	"casup2sup"	"ck2"	"contain"	"contrast"	"cterminal"	"denatured"	"fructose"	"interact"	"likely"	"spiral"	"storage"	"cadherin"	"link"	"pcdh15"	"harmonin"	"ahl"	"agerelated"	"cib2"	"calcium"	"cib1"	"cib4"	"integrin"	"integrinbinding"	"ush2"	"essential"	"sheep"	"pakistani"	"profound"	"camy2"	"dfnb48"	"heterogeneity"	"isolated"	"pdzd7"	"cldn14"	"stone"	"tight"	"claudin"	"claudin14"	"casr"	"mgsup2sup"	"paracellular"	"claudins"	"tubule"	"urinary"	"dfnb29"	"review"	"cldn14supsup"	"excretion"	"pth"	"serum"	"dialysis"	"european"	"rrt"	"espin"	"transplantation"	"espn"	"registry"	"paediatric"	"countrie"	"therapy"	"transplant"	"pediatric"	"replacement"	"europe"	"graft"	"esrd"	"espneraedta"	"society"	"height"	"per"	"incidence"	"start"	"acc"	"median"	"overall"	"failure"	"nephrology"	"game"	"mortality"	"ckd"	"chronic"	"pmp"	"care"	"espins"	"season"	"esrrb"	"pluripotency"	"nanog"	"pluripotent"	"esc"	"estrogen"	"oct4"	"selfrenewal"	"err"	"estrogenrelated"	"sox2"	"errβ"	"orphan"	"trophoblast"	"klf4"	"motif"	"beton"	"errbeta"	"core"	"gipc3"	"gipc1"	"gipc2"	"wnt"	"gastric"	"gipc"	"affect"	"causative"	"wnt7a"	"brca2"	"nshl"	"tgfbeta"	"whole"	"otof"	"pedigree"	"relatively"	"bioinformatics"	"highly"	"identity"	"influx"	"sanger"	"sjgipc3"	"totalaminoacid"	"we"	"wnt7b"	"xenopus"	"confirmed"	"domaincontaining"	"grxcr1"	"grxcr2"	"pirouette"	"chloroplast"	"decline"	"thrumin1"	"baseline"	"ceradts"	"movement"	"snp"	"additional"	"czech"	"depression"	"gwas"	"architecture"	"atoh1induced"	"consanguineous"	"cysteinerich"	"described"	"dfnb25"	"dha"	"glutaredoxin"	"heterogeneous"	"length"	"ildr1"	"tricellulin"	"tricellular"	"dfnb42"	"ildr2"	"ttjs"	"angulin2ildr1"	"immunoglobulinlike"	"containing"	"lsr"	"water"	"cck"	"contact"	"angulin"	"tc"	"angulin1lsr"	"knockout"	"corti"	"tmh"	"dfnb67"	"hmgic"	"labelling"	"lipoma"	"partnerlike"	"predicted"	"lower"	"machinery"	"row"	"hscy"	"mechanically"	"loxhd1"	"corneal"	"fecd"	"fcd"	"dystrophy"	"fuchs"	"tcf4"	"carrier"	"repeat"	"dfnb77"	"expansion"	"slc4a11"	"rs613872"	"bcbm"	"endothelium"	"lateonset"	"nextgeneration"	"nsclp"	"performance"	"tnr"	"unrelated"	"causal"	"five"	"tric"	"marveld2"	"occludin"	"permeability"	"pancreatic"	"tjs"	"dfnb49"	"roma"	"bicellular"	"marveld3"	"hepatocellular"	"nasal"	"calve"	"epithelia"	"investigated"	"myo15a"	"dfnb3"	"slc26a4"	"xva"	"identification"	"parallel"	"deaf"	"linkage"	"massively"	"responsible"	"iranian"	"myo3a"	"iiia"	"tail"	"myo3b"	"class"	"filopodia"	"protrusion"	"actinbinding"	"espin1"	"her2"	"atp"	"cargo"	"atpase"	"alter"	"affinity"	"hydrolysis"	"morn4"	"otoa"	"otoancorin"	"hpv16"	"rsv"	"mesothelin"	"viral"	"maternal"	"vaccine"	"samhd1"	"stereocilin"	"attachment"	"surface"	"immunization"	"blast"	"dfnb22"	"keratinocytes"	"microdeletion"	"mother"	"replication"	"16p122"	"analyse"	"otog"	"otogelin"	"acellular"	"moderate"	"mucin"	"twister"	"precipitation"	"banner"	"otolith"	"twt"	"balbc"	"otogelinlike"	"tbx1"	"temperature"	"chr"	"encoding"	"evolution"	"mild"	"otogl"	"hb"	"sporadic"	"adg"	"myotis"	"pig"	"biallelic"	"either"	"inheritance"	"wholeexome"	"dfnb"	"examination"	"mec"	"mucus"	"parg925"	"presence"	"similar"	"somatic"	"tp53"	"001"	"affecting"	"diverse"	"frequencies"	"pjvk"	"dfnb59"	"pejvakin"	"peroxisome"	"gasdermin"	"dfna5"	"gsdm"	"ansd"	"bat"	"diaph3"	"dfnb9"	"echolocating"	"gsdmd"	"korean"	"rdx"	"explosive"	"tnt"	"energetic"	"detection"	"material"	"soil"	"detonation"	"hmx"	"chemical"	"thermal"	"sensitivity"	"mas"	"condition"	"crystal"	"hexahydro135trinitro135triazine"	"petn"	"range"	"impact"	"decomposition"	"munition"	"salt"	"residue"	"particle"	"spectroscopy"	"field"	"low"	"simulation"	"carbon"	"mixture"	"obtained"	"trace"	"s1p"	"s1pr2"	"sphingosine1phosphate"	"sphingosine"	"s1pr1"	"1phosphate"	"jte013"	"antagonist"	"bile"	"s1p2"	"sphk1"	"s1pr3"	"s1prs"	"s1pinduced"	"strc"	"hematopoietic"	"approach"	"dfnb16"	"circling"	"esophagectomy"	"invasive"	"minimally"	"hmie"	"ivor"	"lewis"	"circir"	"included"	"predator"	"complication"	"stage"	"surgical"	"postoperative"	"prey"	"resection"	"esophageal"	"leakage"	"dfnb6"	"mckeown"	"tmprss3"	"protease"	"serine"	"sgns"	"tprn"	"research"	"disaster"	"health"	"emergency"	"taperin"	"module"	"expert"	"management"	"meeting"	"microtia"	"dfnb79"	"healthedrm"	"medicine"	"signal"	"stereociliary"	"clic5"	"communication"	"key"	"navigation"	"need"	"vision"	"asia"	"base"	"collection"	"davidii"	"issue"	"pacific"	"postnatal"	"proposed"	"rootlet"	"thematic"	"tprnnull"	"world"	"2018"	"apcdm"	"coexpression"	"conference"	"cub"	"degeneration"	"frameshift"	"international"	"kobe"	"pou3f4"	"brn4"	"pou"	"dfn3"	"otic"	"nscs"	"stapes"	"dfnx2"	"glucagon"	"mesenchyme"	"temporal"	"smpx"	"notch"	"csl"	"small"	"zebrafish"	"maintenance"	"dfnx4"	"nor1"	"kra"	"adenocarcinoma"	"pdac"	"braf"	"alteration"	"nsclc"	"metastatic"	"egfr"	"status"	"resistance"	"chemotherapy"	"oncogenic"	"mutated"	"driver"	"lztr1"	"nf2"	"schwannomatosis"	"schwannomas"	"smarcb1"	"noonan"	"germline"	"schwannoma"	"22q112"	"neurofibromatosis"	"mosaic"	"unilateral"	"criterion"	"meningioma"	"tumour"	"constitutional"	"nf1"	"predisposition"	"fetuses"	"rasmapk"	"spinal"	"del"	"nras"	"lesion"	"mutational"	"thyroid"	"ng"	"metastases"	"profile"	"pik3ca"	"shp2"	"ptpn11"	"phosphatase"	"tyrosine"	"jmml"	"raf1"	"erk"	"mapk"	"rubisco"	"rit1"	"rit"	"rin"	"gtpases"	"gtpase"	"hypertrophic"	"rasopathies"	"cardiomyopathy"	"cascade"	"short"	"effector"	"p38"	"stature"	"sos1"	"tc21"	"rras2"	"rras"	"transformation"	"activated"	"oral"	"tc21rras2"	"pi3k"	"rasrelated"	"hras"	"activate"	"platelet"	"activating"	"whereas"	"tolerance"	"salinity"	"nasupsup"	"arabidopsis"	"so"	"nacl"	"sos2"	"homeostasis"	"grb2"	"content"	"ethe1"	"ethylmalonic"	"sulfide"	"h2s"	"sulfur"	"dioxygenase"	"persulfide"	"metabolic"	"biochemical"	"glutathione"	"hydrogen"	"oxidation"	"deficiency"	"thiosulfate"	"acrocyanosis"	"mitochondrion"	"sdo"	"catabolism"	"cysteine"	"diarrhea"	"metabolism"	"detoxification"	"redox"	"petechiae"	"cox"	"gsh"	"lrpprc"	"lrp130"	"leucinerich"	"pentatricopeptide"	"leigh"	"lsfc"	"pgc1α"	"respiratory"	"cytochrome"	"map1s"	"pol1"	"ppr"	"stability"	"ndufs1"	"ndufv1"	"assembly"	"ro"	"sperm"	"ndufs4"	"ndufs2"	"oxygen"	"symptom"	"pqq"	"induce"	"death"	"ndufs4ko"	"nadh"	"neurological"	"dopaminergic"	"isoflurane"	"rapamycin"	"culture"	"dehydrogenase"	"electron"	"mtdna"	"ndufv2"	"sco2"	"cerebral"	"copper"	"p53"	"saturation"	"sco1"	"oxygenation"	"arterial"	"co2"	"surgery"	"flow"	"nearinfrared"	"glycolysis"	"decrease"	"measured"	"cox17"	"thiamine"	"slc19a3"	"thiamin"	"uptake"	"biotin"	"thtr2"	"slc19a2"	"hthtr2"	"thtr1"	"vitamin"	"carriermediated"	"btbgd"	"mediated"	"proc"	"acinar"	"hthtr1"	"sucla2"	"depletion"	"suclg1"	"methylmalonic"	"ligase"	"encephalomyopathy"	"succinylcoa"	"md"	"suclg2"	"aciduria"	"acidemia"	"succinatecoa"	"rrm2b"	"elevated"	"lactic"	"polg"	"tk2"	"acidosis"	"mpv17"	"surf1"	"heme"	"biogenesis"	"cox1"	"shy1"	"ttc19"	"ciii"	"parl"	"cerebellar"	"ataxia"	"bilateral"	"uqcc2"	"remain"	"uqcrfs1"	"bcs1l"	"cytokinesis"	"gpia"	"pigl"	"tetratricopeptide"	"atrophy"	"consistent"	"deficient"	"intramembrane"	"parent"	"presented"	"presenting"	"rhomboid"	"pdha1"	"pyruvate"	"pdh"	"glucose"	"pdc"	"pdhc"	"e1α"	"e1alpha"	"actc1"	"hcm"	"myh7"	"ventricular"	"sarcomere"	"mybpc3"	"dcm"	"noncompaction"	"tnnt2"	"dilated"	"left"	"hypertrophy"	"myopathy"	"cardiomyocyte"	"myocardial"	"myl3"	"biomarkers"	"myl2"	"tnni3"	"tpm1"	"sarcomeric"	"troponin"	"skm"	"peptide"	"toxicity"	"prkag2"	"ampk"	"glycogen"	"conduction"	"preexcitation"	"ampactivated"	"wpw"	"wolffparkinsonwhite"	"relative"	"sudden"	"restrictive"	"rcm"	"history"	"index"	"ctnt"	"hsctnt"	"without"	"coronary"	"tropomyosin"	"tpm"	"mir21"	"isoform"	"thin"	"tm1"	"tpm2"	"alpk3"	"volume"	"mescs"	"preterm"	"damage"	"eight"	"lof"	"score"	"leptin"	"osteosarcoma"	"ttn"	"underlying"	"altered"	"differentiated"	"enddiastolic"	"neuroprotective"	"ratio"
+1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	0	1	0	1	0	1	0	0	1	1	1	0	1	1	1	0	1	0	0	1	1	0	1	0	1	1	1	0	0	0	0	1	0	1	1	1	1	1	1	1	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	1	0	0	0	1	0	1	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	0	1	1	0	1	1	1	1	1	1	0	1	1	0	1	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	1	1	1	1	0	0	1	1	0	1	0	1	0	1	0	0	0	0	1	0	1	1	1	0	0	0	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	1	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	1	1	0	1	1	1	1	0	0	1	0	0	0	1	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	0	1	1	0	0	0	1	1	0	1	1	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	1	1	0	1	0	0	1	1	0	1	0	1	0	1	0	0	0	0	1	0	1	1	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	1	1	0	1	1	1	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	1	1	0	0	1	0	0	0	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	0	1	1	1	0	0	0	1	0	1	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	1	1	1	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	1	1	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	1	0	1	1	0	1	1	1	0	0	0	0	1	1	1	0	0	1	1	1	1	1	1	0	0	0	1	1	0	0	0	0	0	1	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	1	1	1	1	1	0	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	1	0	1	1	1	1	1	1	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	1	0	1	0	1	0	1	0	1	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	1	0	1	0	0	0	0	1	0	1	1	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	1	0	0	1	1	1	0	1	1	1	1	1	1	0	1	1	0	1	0	1	1	1	0	0	1	0	0	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	1	1	0	1	0	1	1	1	0	1	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	1	1	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	1	1	1	1	1	1	1	1	1	1	0	1	1	1	1	1	0	0	1	1	1	1	1	1	1	1	0	1	1	0	0	0	1	1	0	0	0	0	1	0	0	1	1	1	0	0	0	1	0	0	1	1	1	1	1	0	1	0	0	0	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	1	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	1	1	1	0	0	1	1	1	1	0	0	1	1	0	1	1	0	0	0	0	1	0	0	1	0	1	0	0	0	1	1	0	0	0	0	0	0	1	1	1	1	1	0	1	0	0	0	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	1	0	0	0	0	0	1	0	1	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	1	0	1	0	1	1	1	1	1	0	0	1	1	0	1	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	1	1	1	0	0	1	0	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	1	1	1	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	0	0	1	1	1	1	1	1	0	1	1	1	1	1	0	0	1	1	1	1	0	0	1	0	1	1	1	1	1	1	0	0	1	0	1	0	1	1	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	1	1	0	0	1	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	1	1	0	1	0	0	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	1	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	1	1	0	0	0	1	0	1	1	0	1	1	1	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	1	1	1	1	0	0	1	1	1	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	0	1	0	1	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	1	1	0	0	0	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	0	0	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	1	0	1	0	0	1	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	1	0	1	1	1	0	1	0	1	0	1	1	0	1	1	0	0	1	1	0	1	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	1	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	1	1	1	0	1	1	0	0	0	1	0	1	0	1	0	0	1	0	0	1	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	1	1	1	0	0	0	0	0	1	0	1	1	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	0	1	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	0	0	1	0	1	0	1	1	0	1	1	1	0	0	1	0	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	1	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	1	0	1	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	1	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	1	0	1	1	1	1	0	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	0	1	0	0	1	0	1	1	1	1	1	1	0	1	1	1	1	0	1	0	0	1	1	0	1	0	1	1	1	0	0	0	0	1	0	0	1	0	1	0	1	0	1	1	0	0	0	0	0	1	1	0	1	0	1	0	0	0	1	0	1	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	0	0	1	0	1	1	0	1	1	1	0	1	1	0	1	0	1	1	1	0	0	0	0	1	0	0	1	1	1	0	1	1	0	1	1	0	1	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	1	1	1	0	0	0	1	1	1	0	1	1	1	1	1	1	0	0	1	1	0	0	0	0	1	1	0	1	0	0	1	1	0	1	0	0	1	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	1	0	1	0	1	1	1	1	0	1	1	0	0	1	0	1	1	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	0	0	1	0	0	1	0	1	0	0	0	0	0	1	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	1	1	1	1	1	1	0	0	0	0	1	1	1	0	0	1	1	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	1	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	1	0	1	0	0	1	1	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	1	0	1	1	0	1	1	1	0	0	0	0	1	0	1	0	0	1	1	0	1	1	1	0	1	0	1	1	0	1	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	0	1	1	0	1	1	1	0	1	1	1	1	1	0	0	1	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	1	0	1	1	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	1	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	0	0	1	0	0	1	0	1	0	0	0	0	0	1	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	1	0	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	1	1	1	0	0	1	1	0	1	0	1	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	0	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	1	0	0	1	0	1	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	0	1	0	1	1	1	1	1	0	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	1	0	1	1	0	1	1	0	0	0	0	0	1	1	0	0	0	1	1	0	0	1	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	1	1	1	1	0	0	1	0	0	0	0	1	1	1	1	0	0	1	1	0	1	0	1	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	0	0	1	0	0	1	0	1	0	0	0	0	0	1	1	0	1	1	1	0	1	0	0	1	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	1	1	1	0	1	1	1	0	0	0	0	1	1	0	0	0	1	1	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	1	1	0	0	0	0	1	1	0	0	1	1	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	0	0	1	0	0	1	0	1	0	1	0	0	0	1	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	1	1	0	1	1	1	0	0	0	0	1	1	1	0	0	1	1	0	1	1	1	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	1	1	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	1	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	1	1	0	1	1	1	0	0	0	1	1	1	0	0	0	1	1	1	1	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	1	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	1	1	1	0	1	1	1	0	0	0	1	1	1	0	1	0	1	1	1	1	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	1	0	1	1	1	1	1	1	1	0	0	1	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	1	1	1	1	1	0	1	1	1	1	0	0	0	0	1	0	1	1	1	1	0	0	1	0	1	1	1	1	0	0	0	1	0	0	0	0	0	0	1	1	0	0	1	1	0	1	0	0	1	0	0	1	0	0	0	0	1	1	0	1	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	1	1	0	0	0	1	1	0	1	1	1	0	1	1	0	1	0	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	1	1	0	0	1	1	1	1	0	0	1	0	0	1	1	0	0	0	1	0	1	0	1	1	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	0	1	0	1	1	1	1	1	1	1	1	1	0	1	0	0	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	1	0	1	1	1	0	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	0	1	0	1	1	1	0	1	0	0	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	1	1	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	1	1	1	1	1	0	1	0	1	0	0	1	1	1	0	1	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	1	1	0	0	1	0	0	0	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	1	1	0	1	1	1	1	1	0	1	1	1	0	1	1	1	1	1	0	0	0	0	1	0	1	0	1	1	0	1	1	0	0	0	0	1	0	1	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	1	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	1	1	0	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	1	0	1	1	0	1	1	0	1	1	0	1	0	1	1	1	0	1	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	0	1	1	1	0	1	1	0	0	0	0	1	0	0	1	0	1	0	0	1	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	0	1	0	1	1	1	1	1	0	1	1	1	0	0	0	1	1	1	0	0	1	0	1	0	0	1	1	1	0	1	1	0	0	0	0	1	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	1	0	1	0	0	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	1	0	0	0	0	0	1	0	1	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	1	1	0	0	1	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	1	0	0	0	1	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	0	1	0	1	0	1	1	0	1	0	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	1	0	1	1	1	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	1	0	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	1	0	0	1	0	1	0	0	1	0	1	0	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	0	1	0	1	0	1	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	1	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	1	0	1	1	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	1	1	0	1	1	1	1	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	0	1	0	1	0	0	1	1	1	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	1	1	0	0	1	0	1	1	1	0	0	0	0	1	0	1	1	1	1	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	1	0	1	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	0	1	1	1	1	0	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	1	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	0	0	0	0	1	1	0	1	0	1	0	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	1	1	0	0	0	0	1	0	0	1	0	0	1	1	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	0	0	0	1	1	1	1	0	1	0	1	0	0	1	0	1	0	1	1	1	1	1	0	0	1	1	0	0	0	1	1	1	0	1	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	0	0	1	0	1	0	1	1	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	1	0	0	1	1	0	0	1	0	1	1	0	0	0	1	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	0	1	0	1	1	1	1	0	1	0	1	1	0	0	0	0	0	1	0	1	1	0	1	1	1	0	0	1	0	1	1	1	0	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	0	1	1	0	0	1	0	0	0	1	0	1	1	1	0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	0	0	1	0	1	0	1	0	1	0	1	1	0	0	1	1	1	1	1	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	1	1	0	1	0	0	1	1	1	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	1	0	1	0	1	0	1	0	1	1	1	0	1	0	1	1	0	0	1	0	0	1	0	1	0	0	1	0	1	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	0	1	1	1	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	1	0	0	1	0	0	0	1	0	1	0	1	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	0	0	1	1	0	1	1	1	0	1	1	1	1	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	1	0	0	0	1	1	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	1	0	1	0	1	1	1	0	1	1	1	1	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	1	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	1	0	1	0	1	1	1	0	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	1	0	0	1	0	1	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	0	0	1	0	0	0	1	1	0	1	0	1	0	1	1	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	1	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	0	0	1	0	1	1	1	1	1	1	1	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	0	0	0	1	0	0	1	0	1	1	0	0	0	0	1	0	0	1	0	1	0	1	0	0	1	1	0	0	0	1	0	1	0	0	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	1	0	1	0	1	1	1	0	0	0	1	0	0	1	1	0	0	0	1	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	0	0	1	0	0	1	0	1	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	1	1	1	1	1	1	0	0	0	1	0	1	0	0	0	1	1	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	0	1	0	1	0	1	1	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	1	0	0	1	1	1	1	1	0	1	0	0	0	1	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	1	1	0	0	1	1	0	1	0	1	1	1	0	0	0	0	0	0	1	0	1	1	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	1	0	0	1	0	0	1	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	1	1	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	1	1	0	1	1	0	0	1	1	1	1	1	0	0	1	0	1	0	0	1	1	1	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	0	0	1	1	1	1	0	1	1	0	0	0	1	0	0	1	0	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	1	1	0	0	1	0	1	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	0	1	0	1	0	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	1	1	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	1	0	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	0	1	1	1	0	1	1	1	0	0	0	1	0	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	1	1	1	1	1	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	1	1	0	1	1	1	0	1	1	1	1	1	0	0	0	1	1	1	0	0	1	0	1	0	1	1	1	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	0	1	1	0	1	1	0	1	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	0	1	1	1	1	0	1	1	1	1	0	1	1	1	0	1	0	0	1	0	1	0	1	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	1	0	1	1	1	1	0	0	0	0	0	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	1	1	0	1	0	1	0	1	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	0	0	1	1	0	1	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	1	1	0	1	1	0	1	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	0	1	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	1	0	0	1	1	1	1	1	0	1	1	0	1	0	0	0	0	1	0	1	0	1	0	0	0	1	0	1	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	1	0	1	1	0	0	0	0	0	0	1	0	1	0	1	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	1	1	0	1	1	1	0	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	1	1	1	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	1	0	1	1	1	1	0	1	1	0	1	0	1	0	1	1	0	1	0	1	1	1	1	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	1	1	0	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	0	0	0	1	0	0	1	0	1	0	1	1	0	1	0	0	1	1	0	0	0	0	1	0	0	0	1	1	1	0	0	0	1	0	1	0	0	0	0	1	1	1	0	0	1	0	0	1	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	0	1	0	1	0	1	0	0	0	0	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	0	1	1	1	1	0	1	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	1	0	1	1	1	1	1	0	1	0	1	1	0	1	0	1	0	0	1	1	1	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	0	1	0	1	1	1	0	1	1	0	1	1	0	1	0	1	1	1	0	0	1	0	1	0	0	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	1	0	1	1	0	0	0	0	1	1	1	0	0	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	0	0	1	1	0	1	1	1	0	1	1	0	1	1	0	0	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	1	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	0	1	0	1	1	1	0	1	0	0	1	1	0	0	0	1	1	1	0	0	0	0	1	0	0	1	1	1	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	1	1	0	1	1	1	0	0	1	1	0	0	0	0	1	1	0	0	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	1	1	1	1	1	1	0	1	1	1	0	1	1	0	1	0	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	0	0	1	0	0	0	1	1	1	0	0	1	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	1	1	0	0	0	1	0	1	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	0	1	1	0	0	1	0	1	1	1	0	1	0	0	1	0	0	1	0	1	1	1	0	0	0	0	0	0	0	1	1	1	0	1	1	0	0	0	0	1	0	1	1	0	1	1	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	0	0	1	1	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	1	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	0	1	0	1	0	1	1	1	1	1	0	1	0	1	0	1	0	0	1	0	1	0	0	1	1	1	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	1	0	1	0	0	0	1	1	0	0	1	1	1	0	0	1	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	1	1	1	0	1	1	1	0	0	1	0	0	0	1	1	0	0	0	1	1	1	1	0	0	0	1	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	1	1	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	0	1	0	1	0	1	1	0	0	1	1	0	1	1	1	0	1	1	0	1	0	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	1	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	1	1	1	1	1	1	1	0	0	1	0	1	1	1	0	0	1	0	1	0	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	1	0	0	0	1	0	1	0	1	0	0	0	0	0	1	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	0	1	0	1	0	1	1	1	1	0	0	1	1	1	1	1	0	0	1	0	1	0	0	1	1	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	1	0	0	1	0	1	0	1	0	0	0	0	0	1	0	1	0	1	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	1	0	1	1	1	1	1	1	0	1	0	1	0	1	1	1	1	0	0	1	0	1	1	1	0	0	1	0	1	0	0	1	1	1	0	1	1	1	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	1	1	0	1	0	0	0	0	1	0	0	1	1	1	0	1	1	0	0	1	0	1	1	1	0	1	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	0	1	1	0	0	0	1	1	1	0	0	1	0	1	1	0	0	0	1	1	0	0	0	1	0	0	1	1	0	0	1	0	0	0	1	0	1	1	0	0	1	1	0	1	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	1	1	1	1	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	0	1	1	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	0	0	0	0	0	0	1	1	1	0	1	1	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	1	1	0	0	1	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	1	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	1	1	1	1	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	1	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	0	1	0	0	1	1	0	1	1	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	1	0	1	0	0	1	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	0	0	1	1	1	1	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	1	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	0	0	1	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	1	0	1	1	0	1	1	1	0	1	1	1	1	1	0	1	1	1	1	1	0	0	1	0	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	1	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	1	1	1	0	1	1	1	1	1	1	1	1	1	0	1	1	1	0	1	0	0	1	0	0	0	1	1	1	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	1	1	1	0	0	1	1	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	0	1	1	1	1	0	0	1	0	1	1	1	0	0	1	0	0	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	1	1	1	0	0	1	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	1	1	0	1	1	1	0	1	1	0	1	1	0	1	0	1	1	1	0	0	1	0	1	0	1	1	1	1	0	1	1	0	0	0	0	1	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	0	0	1	0	1	0	1	0	1	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	1	0	1	0	1	1	1	0	0	0	0	1	1	0	1	0	0	1	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	0	1	1	1	1	0	1	0	1	0	0	0	0	1	0	1	1	1	0	0	1	1	1	1	0	0	1	1	1	0	0	0	1	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/1a/pubmed_by_queries_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,96 @@
+"ID_gene"	"GROUPING_disorder"	"ABSTRACT_1"	"ABSTRACT_2"	"ABSTRACT_3"	"ABSTRACT_4"	"ABSTRACT_5"	"ABSTRACT_6"	"ABSTRACT_7"	"ABSTRACT_8"	"ABSTRACT_9"	"ABSTRACT_10"	"ABSTRACT_11"	"ABSTRACT_12"	"ABSTRACT_13"	"ABSTRACT_14"	"ABSTRACT_15"	"ABSTRACT_16"	"ABSTRACT_17"	"ABSTRACT_18"	"ABSTRACT_19"	"ABSTRACT_20"	"ABSTRACT_21"	"ABSTRACT_22"	"ABSTRACT_23"	"ABSTRACT_24"	"ABSTRACT_25"	"ABSTRACT_26"	"ABSTRACT_27"	"ABSTRACT_28"	"ABSTRACT_29"	"ABSTRACT_30"	"ABSTRACT_31"	"ABSTRACT_32"	"ABSTRACT_33"	"ABSTRACT_34"	"ABSTRACT_35"	"ABSTRACT_36"	"ABSTRACT_37"	"ABSTRACT_38"	"ABSTRACT_39"	"ABSTRACT_40"	"ABSTRACT_41"	"ABSTRACT_42"	"ABSTRACT_43"	"ABSTRACT_44"	"ABSTRACT_45"	"ABSTRACT_46"	"ABSTRACT_47"	"ABSTRACT_48"	"ABSTRACT_49"	"ABSTRACT_50"	"ABSTRACT_51"	"ABSTRACT_52"	"ABSTRACT_53"	"ABSTRACT_54"	"ABSTRACT_55"	"ABSTRACT_56"	"ABSTRACT_57"	"ABSTRACT_58"	"ABSTRACT_59"	"ABSTRACT_60"	"ABSTRACT_61"	"ABSTRACT_62"	"ABSTRACT_63"	"ABSTRACT_64"	"ABSTRACT_65"	"ABSTRACT_66"	"ABSTRACT_67"	"ABSTRACT_68"	"ABSTRACT_69"	"ABSTRACT_70"	"ABSTRACT_71"	"ABSTRACT_72"	"ABSTRACT_73"	"ABSTRACT_74"	"ABSTRACT_75"	"ABSTRACT_76"	"ABSTRACT_77"	"ABSTRACT_78"	"ABSTRACT_79"	"ABSTRACT_80"	"ABSTRACT_81"	"ABSTRACT_82"	"ABSTRACT_83"	"ABSTRACT_84"	"ABSTRACT_85"	"ABSTRACT_86"	"ABSTRACT_87"	"ABSTRACT_88"	"ABSTRACT_89"	"ABSTRACT_90"	"ABSTRACT_91"	"ABSTRACT_92"	"ABSTRACT_93"	"ABSTRACT_94"	"ABSTRACT_95"	"ABSTRACT_96"	"ABSTRACT_97"	"ABSTRACT_98"	"ABSTRACT_99"	"ABSTRACT_100"	"ABSTRACT_101"	"ABSTRACT_102"	"ABSTRACT_103"	"ABSTRACT_104"	"ABSTRACT_105"	"ABSTRACT_106"	"ABSTRACT_107"	"ABSTRACT_108"	"ABSTRACT_109"	"ABSTRACT_110"	"ABSTRACT_111"	"ABSTRACT_112"	"ABSTRACT_113"	"ABSTRACT_114"	"ABSTRACT_115"	"ABSTRACT_116"	"ABSTRACT_117"	"ABSTRACT_118"	"ABSTRACT_119"	"ABSTRACT_120"	"ABSTRACT_121"	"ABSTRACT_122"	"ABSTRACT_123"	"ABSTRACT_124"	"ABSTRACT_125"	"ABSTRACT_126"	"ABSTRACT_127"	"ABSTRACT_128"	"ABSTRACT_129"	"ABSTRACT_130"	"ABSTRACT_131"	"ABSTRACT_132"	"ABSTRACT_133"	"ABSTRACT_134"	"ABSTRACT_135"	"ABSTRACT_136"	"ABSTRACT_137"	"ABSTRACT_138"	"ABSTRACT_139"	"ABSTRACT_140"	"ABSTRACT_141"	"ABSTRACT_142"	"ABSTRACT_143"	"ABSTRACT_144"	"ABSTRACT_145"	"ABSTRACT_146"	"ABSTRACT_147"	"ABSTRACT_148"	"ABSTRACT_149"	"ABSTRACT_150"	"ABSTRACT_151"	"ABSTRACT_152"	"ABSTRACT_153"	"ABSTRACT_154"	"ABSTRACT_155"	"ABSTRACT_156"	"ABSTRACT_157"	"ABSTRACT_158"	"ABSTRACT_159"	"ABSTRACT_160"	"ABSTRACT_161"	"ABSTRACT_162"	"ABSTRACT_163"	"ABSTRACT_164"	"ABSTRACT_165"	"ABSTRACT_166"	"ABSTRACT_167"	"ABSTRACT_168"	"ABSTRACT_169"	"ABSTRACT_170"	"ABSTRACT_171"	"ABSTRACT_172"	"ABSTRACT_173"	"ABSTRACT_174"	"ABSTRACT_175"	"ABSTRACT_176"	"ABSTRACT_177"	"ABSTRACT_178"	"ABSTRACT_179"	"ABSTRACT_180"	"ABSTRACT_181"	"ABSTRACT_182"	"ABSTRACT_183"	"ABSTRACT_184"	"ABSTRACT_185"	"ABSTRACT_186"	"ABSTRACT_187"	"ABSTRACT_188"	"ABSTRACT_189"	"ABSTRACT_190"	"ABSTRACT_191"	"ABSTRACT_192"	"ABSTRACT_193"	"ABSTRACT_194"	"ABSTRACT_195"	"ABSTRACT_196"	"ABSTRACT_197"	"ABSTRACT_198"	"ABSTRACT_199"	"ABSTRACT_200"	"ABSTRACT_201"	"ABSTRACT_202"	"ABSTRACT_203"	"ABSTRACT_204"	"ABSTRACT_205"	"ABSTRACT_206"	"ABSTRACT_207"	"ABSTRACT_208"	"ABSTRACT_209"	"ABSTRACT_210"	"ABSTRACT_211"	"ABSTRACT_212"	"ABSTRACT_213"	"ABSTRACT_214"	"ABSTRACT_215"	"ABSTRACT_216"	"ABSTRACT_217"	"ABSTRACT_218"	"ABSTRACT_219"	"ABSTRACT_220"	"ABSTRACT_221"	"ABSTRACT_222"	"ABSTRACT_223"	"ABSTRACT_224"	"ABSTRACT_225"	"ABSTRACT_226"	"ABSTRACT_227"	"ABSTRACT_228"	"ABSTRACT_229"	"ABSTRACT_230"	"ABSTRACT_231"	"ABSTRACT_232"	"ABSTRACT_233"	"ABSTRACT_234"	"ABSTRACT_235"	"ABSTRACT_236"	"ABSTRACT_237"	"ABSTRACT_238"	"ABSTRACT_239"	"ABSTRACT_240"	"ABSTRACT_241"	"ABSTRACT_242"	"ABSTRACT_243"	"ABSTRACT_244"	"ABSTRACT_245"	"ABSTRACT_246"	"ABSTRACT_247"	"ABSTRACT_248"	"ABSTRACT_249"	"ABSTRACT_250"	"ABSTRACT_251"	"ABSTRACT_252"	"ABSTRACT_253"	"ABSTRACT_254"	"ABSTRACT_255"	"ABSTRACT_256"	"ABSTRACT_257"	"ABSTRACT_258"	"ABSTRACT_259"	"ABSTRACT_260"	"ABSTRACT_261"	"ABSTRACT_262"	"ABSTRACT_263"	"ABSTRACT_264"	"ABSTRACT_265"	"ABSTRACT_266"	"ABSTRACT_267"	"ABSTRACT_268"	"ABSTRACT_269"	"ABSTRACT_270"	"ABSTRACT_271"	"ABSTRACT_272"	"ABSTRACT_273"	"ABSTRACT_274"	"ABSTRACT_275"	"ABSTRACT_276"	"ABSTRACT_277"	"ABSTRACT_278"	"ABSTRACT_279"	"ABSTRACT_280"	"ABSTRACT_281"	"ABSTRACT_282"	"ABSTRACT_283"	"ABSTRACT_284"	"ABSTRACT_285"	"ABSTRACT_286"	"ABSTRACT_287"	"ABSTRACT_288"	"ABSTRACT_289"	"ABSTRACT_290"	"ABSTRACT_291"	"ABSTRACT_292"	"ABSTRACT_293"	"ABSTRACT_294"	"ABSTRACT_295"	"ABSTRACT_296"	"ABSTRACT_297"	"ABSTRACT_298"	"ABSTRACT_299"	"ABSTRACT_300"	"ABSTRACT_301"	"ABSTRACT_302"	"ABSTRACT_303"	"ABSTRACT_304"	"ABSTRACT_305"	"ABSTRACT_306"	"ABSTRACT_307"	"ABSTRACT_308"	"ABSTRACT_309"	"ABSTRACT_310"	"ABSTRACT_311"	"ABSTRACT_312"	"ABSTRACT_313"	"ABSTRACT_314"	"ABSTRACT_315"	"ABSTRACT_316"	"ABSTRACT_317"	"ABSTRACT_318"	"ABSTRACT_319"	"ABSTRACT_320"	"ABSTRACT_321"	"ABSTRACT_322"	"ABSTRACT_323"	"ABSTRACT_324"	"ABSTRACT_325"	"ABSTRACT_326"	"ABSTRACT_327"	"ABSTRACT_328"	"ABSTRACT_329"	"ABSTRACT_330"	"ABSTRACT_331"	"ABSTRACT_332"	"ABSTRACT_333"	"ABSTRACT_334"	"ABSTRACT_335"	"ABSTRACT_336"	"ABSTRACT_337"	"ABSTRACT_338"	"ABSTRACT_339"	"ABSTRACT_340"	"ABSTRACT_341"	"ABSTRACT_342"	"ABSTRACT_343"	"ABSTRACT_344"	"ABSTRACT_345"	"ABSTRACT_346"	"ABSTRACT_347"	"ABSTRACT_348"	"ABSTRACT_349"	"ABSTRACT_350"	"ABSTRACT_351"	"ABSTRACT_352"	"ABSTRACT_353"	"ABSTRACT_354"	"ABSTRACT_355"	"ABSTRACT_356"	"ABSTRACT_357"	"ABSTRACT_358"	"ABSTRACT_359"	"ABSTRACT_360"	"ABSTRACT_361"	"ABSTRACT_362"	"ABSTRACT_363"	"ABSTRACT_364"	"ABSTRACT_365"	"ABSTRACT_366"	"ABSTRACT_367"	"ABSTRACT_368"	"ABSTRACT_369"	"ABSTRACT_370"	"ABSTRACT_371"	"ABSTRACT_372"	"ABSTRACT_373"	"ABSTRACT_374"	"ABSTRACT_375"	"ABSTRACT_376"	"ABSTRACT_377"	"ABSTRACT_378"	"ABSTRACT_379"	"ABSTRACT_380"	"ABSTRACT_381"	"ABSTRACT_382"	"ABSTRACT_383"	"ABSTRACT_384"	"ABSTRACT_385"	"ABSTRACT_386"	"ABSTRACT_387"	"ABSTRACT_388"	"ABSTRACT_389"	"ABSTRACT_390"	"ABSTRACT_391"	"ABSTRACT_392"	"ABSTRACT_393"	"ABSTRACT_394"	"ABSTRACT_395"	"ABSTRACT_396"	"ABSTRACT_397"	"ABSTRACT_398"	"ABSTRACT_399"	"ABSTRACT_400"	"ABSTRACT_401"	"ABSTRACT_402"	"ABSTRACT_403"	"ABSTRACT_404"	"ABSTRACT_405"	"ABSTRACT_406"	"ABSTRACT_407"	"ABSTRACT_408"	"ABSTRACT_409"	"ABSTRACT_410"	"ABSTRACT_411"	"ABSTRACT_412"	"ABSTRACT_413"	"ABSTRACT_414"	"ABSTRACT_415"	"ABSTRACT_416"	"ABSTRACT_417"	"ABSTRACT_418"	"ABSTRACT_419"	"ABSTRACT_420"	"ABSTRACT_421"	"ABSTRACT_422"	"ABSTRACT_423"	"ABSTRACT_424"	"ABSTRACT_425"	"ABSTRACT_426"	"ABSTRACT_427"	"ABSTRACT_428"	"ABSTRACT_429"	"ABSTRACT_430"	"ABSTRACT_431"	"ABSTRACT_432"	"ABSTRACT_433"	"ABSTRACT_434"	"ABSTRACT_435"	"ABSTRACT_436"	"ABSTRACT_437"	"ABSTRACT_438"	"ABSTRACT_439"	"ABSTRACT_440"	"ABSTRACT_441"	"ABSTRACT_442"	"ABSTRACT_443"	"ABSTRACT_444"	"ABSTRACT_445"	"ABSTRACT_446"	"ABSTRACT_447"	"ABSTRACT_448"	"ABSTRACT_449"	"ABSTRACT_450"	"ABSTRACT_451"	"ABSTRACT_452"	"ABSTRACT_453"	"ABSTRACT_454"	"ABSTRACT_455"	"ABSTRACT_456"	"ABSTRACT_457"	"ABSTRACT_458"	"ABSTRACT_459"	"ABSTRACT_460"	"ABSTRACT_461"	"ABSTRACT_462"	"ABSTRACT_463"	"ABSTRACT_464"	"ABSTRACT_465"	"ABSTRACT_466"	"ABSTRACT_467"	"ABSTRACT_468"	"ABSTRACT_469"	"ABSTRACT_470"	"ABSTRACT_471"	"ABSTRACT_472"	"ABSTRACT_473"	"ABSTRACT_474"	"ABSTRACT_475"	"ABSTRACT_476"	"ABSTRACT_477"	"ABSTRACT_478"	"ABSTRACT_479"	"ABSTRACT_480"	"ABSTRACT_481"	"ABSTRACT_482"	"ABSTRACT_483"	"ABSTRACT_484"	"ABSTRACT_485"	"ABSTRACT_486"	"ABSTRACT_487"	"ABSTRACT_488"	"ABSTRACT_489"	"ABSTRACT_490"	"ABSTRACT_491"	"ABSTRACT_492"	"ABSTRACT_493"	"ABSTRACT_494"	"ABSTRACT_495"	"ABSTRACT_496"	"ABSTRACT_497"	"ABSTRACT_498"	"ABSTRACT_499"	"ABSTRACT_500"
+"CHD2"	"complex neurodevelopmental disorder"	"Homeostatic plasticity fails at the intersection of autism-gene mutations and a novel class of common genetic modifiers. We identify a set of common phenotypic modifiers that interact with five independent autism gene orthologs (RIMS1, CHD8, CHD2, WDFY3, ASH1L) causing a common failure of presynaptic homeostatic plasticity (PHP) in Drosophila. Heterozygous null mutations in each autism gene are demonstrated to have normal baseline neurotransmission and PHP. However, PHP is sensitized and rendered prone to failure. A subsequent electrophysiology-based genetic screen identifies the first known heterozygous mutations that commonly genetically interact with multiple ASD gene orthologs, causing PHP to fail. Two phenotypic modifiers identified in the screen, PDPK1 and PPP2R5D, are characterized. Finally, transcriptomic, ultrastructural and electrophysiological analyses define one mechanism by which PHP fails; an unexpected, maladaptive up-regulation of CREG, a conserved, neuronally expressed, stress response gene and a novel repressor of PHP. Thus, we define a novel genetic landscape by which diverse, unrelated autism risk genes may converge to commonly affect the robustness of synaptic transmission."	"Genetic mutations and features of mantle cell lymphoma: a systematic review and meta-analysis. Mantle cell lymphoma (MCL) is an incurable rare subtype of non-Hodgkin lymphoma and is subject to relapse and therapeutic resistance. Molecular aberrations in MCL affect pathogenesis, prognosis, and therapeutic response. In this systematic review, we searched 3 databases and selected 32 articles that described mutations in MCL patients. We then conducted a meta-analysis using a Bayesian multiregression model to analyze patient-level data in 2127 MCL patients, including prevalence of mutations. In tumor or bone marrow samples taken at diagnosis or baseline, ATM was the most frequently mutated gene (43.5%) followed by TP53 (26.8%), CDKN2A (23.9%), and CCND1 (20.2%). Aberrations were also detected in IGH (38.4%) and MYC (20.8%), primarily through cytogenetic methods. Other common baseline mutations were NSD2 (15.0%), KMT2A (8.9%), S1PR1 (8.6%), and CARD11 (8.5%). Our data also show a change in mutational status from baseline samples to samples at disease progression and present mutations of interest in MCL that should be considered for future analysis. The genes with the highest mutational frequency difference (&gt;5%) are TP53, ATM, KMT2A, MAP3K14, BTK, TRAF2, CHD2, TLR2, ARID2, RIMS2, NOTCH2, TET2, SPEN, NSD2, CARD11, CCND1, SP140, CDKN2A, and S1PR1. These findings provide a summary of the mutational landscape of MCL. The genes with the highest change in mutation frequency should be included in targeted next-generation sequencing panels for future studies. These findings also highlight the need for analysis of serial samples in MCL. Patient-level data of prevalent mutations in MCL provide additional evidence emphasizing molecular variability in advancing precision medicine initiatives in MCL."	"Genotype-phenotype correlates of infantile-onset developmental &amp; epileptic encephalopathy syndromes in South India: A single centre experience. A paucity of literature exists on genotype- phenotype correlates of 'unknown-etiology' infantile-onset developmental-epileptic encephalopathies (DEE) from India. The primary objective was to explore the yield of genetic testing in identifying potential disease causing variants in electro-clinical phenotypes of DEE METHODS: An observational hospital-based study was undertaken on children with unexplained refractory seizure-onset ≤12 months age and developmental delay, whose families consented and underwent genetic testing during a three year time period (2016-2018) by next-generation sequencing (NGS) or multiplex ligand protein amplification. Yield was considered based on demonstration of pathogenic/likely pathogenic variants only and variants of unknown significance (VUS) were documented. Pathogenic/likely pathogenic variants were identified in 26 (31.7 %) out of 82 children with DEE. These included those variants responsible for primarily DEE- 21(76.7 %); neuro-metabolic disorders- 3(18.6 %) and chromosomal deletions- 2(4.7 %). Of these patients, early-infantile epilepsy onset ≤ 6 months age was noted in 22(84.6 %). The DEE studied included Ohtahara syndrome associated with STXBP1 and SCN8A variants with yield of 50 % (2/4 tested); early myoclonic encephalopathy (no yield in 2); West syndrome with CDKL5, yield of 13.3 % (2/15 tested); epilepsy of infancy with migrating partial seizures due to CACNA1A and KCNT1 variants, yield of 67 % (2/3 tested); DEE-unclassified with KCNQ2, AP3B2, ZEB2, metabolic variants (SUOX, ALDH7A1, GLDC) and chromosome deletions (chr 1p36, chr2q24.3); yield of 32 % (8/25 tested). Patients with Dravet syndrome/Dravet-like phenotypes (N = 33) had variants in SCN1A (N = 10), SCN1B, CHD2; yield of 36.4 % (12/33 tested; 57.1 % from NGS). Eighteen patients with potential variants (SCN1A, SCN2A, SCN8A, KCNQ2, ALDH7A1 which also included VUS) could be offered targeted therapy. Our study confirms a good yield of genetic testing in neonatal and infantile-onset DEE provided robust phenotyping of infants is attempted with prognostic and therapeutic implications, particularly relevant to centres with resource constraints."	"Selective N-monomethylation of primary anilines with the controllable installation of N-CH2D, N-CHD2, and N-CD3 units. The selective N-monomethylation of primary anilines was realized by the use of the Me3N-BH3/N,N-dimethylformamide (DMF) system as the methyl source. This method also allows for the controllable introduction of N-CH2D, N-CHD2, and N-CD3 units with high levels of deuterium incorporation using Me3N-BH3/d7-DMF, Me3N-BD3/DMF and Me3N-BD3/d7-DMF systems, respectively."	"HDO production from [<sup>2</sup>H7]glucose Quantitatively Identifies Warburg Metabolism. Increased glucose uptake and aerobic glycolysis are striking features of many cancers. These features have led to many techniques for screening and diagnosis, but many are expensive, less feasible or have harmful side-effects. Here, we report a sensitive <sup>1</sup>H/<sup>2</sup>H NMR method to measure the kinetics of lactate isotopomer and HDO production using a deuterated tracer. To test this hypothesis, HUH-7 hepatocellular carcinoma and AML12 normal hepatocytes were incubated with [<sup>2</sup>H7]glucose. <sup>1</sup>H/<sup>2</sup>H NMR data were recorded for cell media as a function of incubation time. The efflux rate of lactate-CH3, lactate-CH2D and lactate-CHD2 was calculated as 0.0033, 0.0071, and 0.0.012 µmol/10<sup>6</sup>cells/min respectively. Differential production of lactate isotopomers was due to deuterium loss during glycolysis. Glucose uptake and HDO production by HUH-7 cells showed a strong correlation, indicating that monitoring the HDO production could be a diagnostic feature in cancers. Deuterium mass balance of [<sup>2</sup>H7]glucose uptake to <sup>2</sup>H-lactate and HDO production is quantitatively matched, suggesting increasing HDO signal could be used to diagnose Warburg (cancer) metabolism. Measuring the kinetics of lactate isotopomer and HDO production by <sup>1</sup>H and <sup>2</sup>H MR respectively are highly sensitive. Increased T1 of <sup>2</sup>H-lactate isotopomers indicates inversion/saturation recovery methods may be a simple means of generating metabolism-based contrast."	"Life-threatening secondary hemophagocytic lymphohistiocytosis following vagal nerve stimulator infection in a child with CHD2 myoclonic encephalopathy: a case report. Vagus nerve stimulation (VNS) is a surgical treatment available for patients affected by generalized refractory epilepsy. The authors report the case of a 15-year-old girl affected by CHD2-related myoclonic encephalopathy and BLM haploinsufficiency due to a deletion of 15q25.3q26.2 region, who suffered from secondary hemophagocytic lymphohistiocytosis (SHLH) after a VNS wound infection. SHLH has sporadically been described in epileptic patients. Based on indirect evidence that shows immune dysregulation in patients with CHD2 mutations and BLM mutations, we hypothesize that the genetic background of this patient may have played a critical role in the development of the syndrome."	"Next-generation sequencing in thymic epithelial tumors uncovered novel genomic aberration sites and strong correlation between TMB and MSH6 single nucleotide variations. Thymic epithelial tumors (TET) including thymomas and thymic carcinomas are rare, but they are common primary tumors in the anterior mediastinum. The etiology and tumorigenesis of TET remain unclear. To better understand the novel aberrations of this rare tumor and provide more significant mutation sites for targeted therapy, we performed next-generation sequencing detection on 55 patients with TET. Our results showed that most genes in 12 core pathways harbored aberrations of indeterminate potential. In 4 genes (ARID1A, KMT2C, TGFBR2 and MAP3K1), the indel frequency was above 90%. Dozens of genes, including TGFBR2, KMT2C, PRKDC, ATR, CHD2, SDHA, KDM5A, CHEK1, MSH6 and POLE, possessed frameshift indel with different frequencies in different hotspot sites, which could be the new targets of therapy for TET. For the first time, we revealed a strong correlation between the tumor mutational burden and single nucleotide variations, but not frameshift, on DNA mismatch repair gene MSH6 in TET."	"Juvenile myoclonic epilepsy mimic associated with CHD2 gene mutation. This paper reports the electroclinical manifestations of an epilepsy syndrome associated with a chromodomain helicase DNA-binding protein 2 (CHD2) gene mutation with clinical semiology and electroencephalographic (EEG) features consistent with juvenile myoclonic epilepsy (JME). Myoclonic and myoclonic-tonic-clonic seizures, as well as generalized 4- to 5-Hz high-amplitude spike-wave and polyspike-wave discharges, were well characterized in an adolescent. However, the atypical age of onset, developmental disability, and apparent drug resistance led to suspicion of an alternative etiology for epilepsy, subsequently verified as a CHD2 gene mutation. When atypical features are present, a JME mimic should be suspected in the differential diagnosis of the more established syndrome of JME."	"Chromatin remodeling dysfunction extends the etiological spectrum of schizophrenia: a case report. The role of deleterious copy number variations in schizophrenia is well established while data regarding pathogenic variations remain scarce. We report for the first time a case of schizophrenia in a child with a pathogenic mutation of the chromodomain helicase DNA binding protein 2 (CHD2) gene. The proband was the second child of unrelated parents. Anxiety and sleep disorders appeared at the age of 10 months. He presented febrile seizures and, at the age of 8, two generalized tonic-clonic seizures. At the age of 10, emotional withdrawal emerged, along with a flat affect, disorganization and paranoid ideation, without seizures. He began to talk and giggle with self. Eventually, the patient presented daily auditory and visual hallucinations. The diagnosis of childhood onset schizophrenia (DSM V) was then evoked. Brain imaging was unremarkable. Wakefulness electroencephalography showed a normal background and some bilateral spike-wave discharges that did not explain the psychosis features. A comparative genomic hybridization array (180 K, Agilent, Santa Clara, CA, USA) revealed an 867-kb 16p13.3 duplication, interpreted as a variant of unknown significance confirmed by a quantitative PCR that also showed its maternal inheritance. Risperidone (1,5 mg per day), led to clinical improvement. At the age of 11, an explosive relapse of epilepsy occurred with daily seizures of various types. The sequencing of a panel for monogenic epileptic disorders and Sanger sequencing revealed a de novo pathogenic heterozygous transition in CHD2 (NM_001271.3: c.4003G &gt; T). This case underlines that schizophrenia may be, sometimes, underpinned by a Mendelian disease. It addresses the question of systematic genetic investigations in the presence of warning signs such as a childhood onset of the schizophrenia or a resistant epilepsy. It points that, in the absence of pathogenic copy number variation, the investigations should also include a search for pathogenic variations, which means that some of the patients with schizophrenia should benefit from Next Generation Sequencing tools. Last but not least, CHD2 encodes a member of the chromodomain helicase DNA-binding (CHD) family involved in chromatin remodeling. This observation adds schizophrenia to the phenotypic spectrum of chromodomain remodeling disorders, which may lead to innovative therapeutic approaches."	"Dravet syndrome as part of the clinical and genetic spectrum of sodium channel epilepsies and encephalopathies. Dravet syndrome is the most studied form of genetic epilepsy. It has now been clarified that the clinical spectrum of the syndrome does not have firmly established boundaries. The core phenotype is characterized by intractable, mainly clonic, seizures precipitated by increased body temperature with onset in the first year of life and subsequent appearance of multiple seizures types still precipitated by, but not confined to, hyperthermia. Cognitive impairment is invariably present when the full syndrome is manifested. This complex of symptoms is related to mutations in the SCN1A gene, which are often de novo and constitutional but can also be inherited from a parent with less severe clinical manifestations or be present as somatic mosaicism. Inheritance from less severely affected individuals, at times only having experienced a few febrile seizures, and differences in severity, even within the same family, with a subset of patients only showing fragments of the syndrome, testify to a remarkable phenotypic heterogeneity as far as severity, but less so clinical phenomenology, are concerned. This characteristic, together with underascertainment of SCN1A mutations due to human errors or technical limitations in uncovering alternative pathogenic molecular mechanisms, such as genomic rearrangements or poison exons, has contributed to making clinicians and geneticists suspicious that Dravet syndrome may be caused by more than one gene. This opinion has been further amplified by the description of other genetic disorders, such as PCDH19- or CHD2-related epilepsy, whose phenotypes have included fragments of the Dravet phenotypic spectrum, and by the suboptimal characterization of phenotypes associated with mutations in SCN1B, HCN1, KCN2A, GABRA1, GABRG2, and STXBP1. The SCN1A gene-Dravet syndrome association is in our opinion highly specific. However, because the syndrome spectrum is wide, fragments of it can at times also be manifested in other genetic epilepsy syndromes, thereby leading to overdiagnosis of Dravet syndrome beyond SCN1A. Dravet syndrome is in turn a severe SCN1A phenotype within a continuum of SCN1A-related clinical phenomenology."	"A regulatory role for CHD2 in myelopoiesis. The transcriptional program that dictates haematopoietic cell fate and differentiation requires an epigenetic regulatory and memory function, provided by a network of epigenetic factors that regulate DNA methylation, post-translational histone modifications and chromatin structure. Disturbed epigenetic regulation causes perturbations in the blood cell differentiation program that results in various types of haematopoietic disorders. Thus, accurate epigenetic regulation is essential for functional haematopoiesis. In this study, we used a CRISPR-Cas9 screening approach to identify new epigenetic regulators in myeloid differentiation. We designed a Chromatin-UMI CRISPR guide library targeting 1092 epigenetic regulators. Phorbol 12-myristate 13-acetate (PMA) treatment of the chronic myeloid leukaemia cell line K-562 was used as a megakaryocytic myeloid differentiation model. Both previously described developmental epigenetic regulators and novel factors were identified in our screen. In this study, we validated and characterized a role for the chromatin remodeller CHD2 in myeloid proliferation and megakaryocytic differentiation."	"Functional Analysis of the SIM1 Variant p.G715V in 2 Patients With Obesity. Single-minded homologue 1 (SIM1) is a transcription factor with several physiological and developmental functions. Haploinsufficiency of SIM1 is associated with early-onset obesity with or without Prader-Willi-like (PWL) features and may exhibit incomplete penetrance. Next-generation sequencing was performed for 2 male patients with obesity, including 1 man presenting with intellectual disability (ID), body mass index (BMI) of 47.4, and impulse-control disorder, and the other man with early obesity (BMI of 36); sequencing revealed a missense variant in SIM1 (c.2144G&gt;T; p.G715V) in both individuals. Previous studies have identified several disease-associated variants that fall near the p.G715V variant within the C-terminal domain of SIM1. We examined p.G715V variant stability and activity in a doxycycline-inducible stable cell line transfected with an artificial reporter construct and either ARNT or ARNT2 as a partner protein. Functional testing of the p.G715V variant revealed a significant reduction in SIM1-mediated transcriptional activity. We also generated the first ab initio hybrid protein model for full-length SIM1 to show the predicted spatial relationship between p.G715V and other previously described variants in this region and identified a putative mutation hotspot within the C-terminus. Significant clinical heterogeneity has been observed in patients with SIM1 variants, particularly with regards to the PWL phenotype. In the patient with ID, a second variant of uncertain significance in CHD2 was identified that may contribute to his ID and behavioral disturbances, emphasizing the role of additional genetic modifiers."	"Targeted Searches of the Electronic Health Record and Genomics Identify an Etiology in Three Patients with Short Stature and High IGF-I Levels. Short stature is one of the most common reasons for referral to a pediatric endocrinologist and can result from many etiologies. However, many patients with short stature do not receive a definitive diagnosis. To ascertain whether integrating targeted bioinformatics searches of electronic health records (EHRs) combined with genomic studies could identify patients with previously undiagnosed rare genetic etiologies of short stature. We focused on a specific rare phenotypic subgroup: patients with short stature and elevated IGF-I levels. We performed a cross-sectional cohort study at three large academic pediatric healthcare networks. Eligible subjects included children with heights below -2 SD, IGF-I levels &gt;90th percentile, and no known etiology for short stature. We performed a search of the EHRs to identify eligible patients. Patients were then recruited for phenotyping followed by exome sequencing and in vitro assays of IGF1R function. A total of 234 patients were identified by the bioinformatics algorithm with 39 deemed eligible after manual review (17%). Of those, 9 were successfully recruited. A genetic etiology was identified in 3 of the 9 patients including 2 novel variants in IGF1R and a de novo variant in CHD2. In vitro studies supported the pathogenicity of the IGF1R variants. This study provides proof of principle that patients with rare phenotypic subgroups can be identified based on discrete data elements in the EHRs. Although limitations exist to fully automating this approach, these searches may help find patients with previously unidentified rare genetic disorders."	"Gene alterations in epigenetic modifiers and JAK-STAT signaling are frequent in breast implant-associated ALCL. The oncogenic events involved in breast implant-associated anaplastic large cell lymphoma (BI-ALCL) remain elusive. To clarify this point, we have characterized the genomic landscape of 34 BI-ALCLs (15 tumor and 19 in situ subtypes) collected from 54 BI-ALCL patients diagnosed through the French Lymphopath network. Whole-exome sequencing (n = 22, with paired tumor/germline DNA) and/or targeted deep sequencing (n = 24) showed recurrent mutations of epigenetic modifiers in 74% of cases, involving notably KMT2C (26%), KMT2D (9%), CHD2 (15%), and CREBBP (15%). KMT2D and KMT2C mutations correlated with a loss of H3K4 mono- and trimethylation by immunohistochemistry. Twenty cases (59%) showed mutations in ≥1 member of the JAK/STAT pathway, including STAT3 (38%), JAK1 (18%), and STAT5B (3%), and in negative regulators, including SOCS3 (6%), SOCS1 (3%), and PTPN1 (3%). These mutations were more frequent in tumor-type samples than in situ samples (P = .038). All BI-ALCLs expressed pSTAT3, regardless of the mutational status of genes in the JAK/STAT pathway. Mutations in the EOMES gene (12%) involved in lymphocyte development, PI3K-AKT/mTOR (6%), and loss-of-function mutations in TP53 (12%) were also identified. Copy-number aberration (CNA) analysis identified recurrent alterations, including gains on chromosomes 2, 9p, 12p, and 21 and losses on 4q, 8p, 15, 16, and 20. Regions of CNA encompassed genes involved in the JAK/STAT pathway and epigenetic regulators. Our results show that the BI-ALCL genomic landscape is characterized by not only JAK/STAT activating mutations but also loss-of-function alterations of epigenetic modifiers."	"CHD2 epilepsy: epigenetics and the quest for precision medicine. NA"	"Regulation of CHD2 expression by the Chaserr long noncoding RNA gene is essential for viability. Chromodomain helicase DNA binding protein 2 (Chd2) is a chromatin remodeller implicated in neurological disease. Here we show that Chaserr, a highly conserved long noncoding RNA transcribed from a region near the transcription start site of Chd2 and on the same strand, acts in concert with the CHD2 protein to maintain proper Chd2 expression levels. Loss of Chaserr in mice leads to early postnatal lethality in homozygous mice, and severe growth retardation in heterozygotes. Mechanistically, loss of Chaserr leads to substantially increased Chd2 mRNA and protein levels, which in turn lead to transcriptional interference by inhibiting promoters found downstream of highly expressed genes. We further show that Chaserr production represses Chd2 expression solely in cis, and that the phenotypic consequences of Chaserr loss are rescued when Chd2 is perturbed as well. Targeting Chaserr is thus a potential strategy for increasing CHD2 levels in haploinsufficient individuals."	"Optimized NMR Experiments for the Isolation of I=1/2 Manifold Transitions in Methyl Groups of Proteins. Optimized NMR experiments are developed for isolating magnetization belonging to the I=1/2 manifolds of <sup>13</sup> CH3 methyl groups in proteins, enabling the manipulation of the magnetization of a <sup>13</sup> CH3 moiety as if it were an AX (<sup>1</sup> H-<sup>13</sup> C) spin-system. These experiments result in the same 'simplification' of a <sup>13</sup> CH3 spin-system that would be obtained from the production of {<sup>13</sup> CHD2 }-methyl-labeled protein samples. The sensitivity of I=1/2 manifold-selection experiments is a factor of approximately 2 less than that of the corresponding experiments acquired on {<sup>13</sup> CHD2 }-labeled methyl groups. The methodology described here is primarily intended for small-to-medium sized proteins, where the losses in sensitivity associated with the isolation of I=1/2 manifold transitions can be tolerated. Several NMR applications that benefit from simplification of the <sup>13</sup> CH3 (AX3 ) spin-systems are described, with an emphasis on the measurements of methyl <sup>1</sup> H-<sup>13</sup> C residual dipolar couplings in a {<sup>13</sup> CH3 }-methyl-labeled deletion mutant of the human chaperone DNAJB6b, where modulation of NMR signal intensities due to evolution of methyl <sup>1</sup> H-<sup>13</sup> C scalar and dipolar couplings follows a simple cosine function characteristic of an AX (<sup>1</sup> H-<sup>13</sup> C) spin-system, significantly simplifying data analysis."	"CHD2-related epilepsy: novel mutations and new phenotypes. The aim of this report was to refine the genotypes and phenotypes of chromodomain helicase DNA-binding protein 2 (CHD2)-related epilepsy. Seventeen patients with CHD2 mutations were enrolled. CHD2 mutations were identified by application of next-generation sequencing of epilepsy or whole exome sequencing. Sixteen mutations were identified, among which 15 have not yet been reported. Thirteen mutations were de novo. Age at seizure onset ranged from 3 months to 10 years 5 months. Seizures observed were generalized tonic-clonic, myoclonic, atonic, atypical absence, focal, and myoclonic-atonic. Epileptic spasms occurred in two patients. Developmental disability was present in 14 patients. Autism features were observed in seven patients. Video electroencephalogram was abnormal in 15 patients. Five patients were diagnosed with non-specific epileptic encephalopathy, two with epilepsy with myoclonic-atonic seizures, two with Lennox-Gastaut syndrome, two with febrile seizures plus, and one with West syndrome. Seizures were controlled in nine patients. Q1392TfsX17 may be a hot-spot mutation of CHD2. West syndrome was observed as a new phenotype of CHD2 mutation. The severity of the phenotypes of CHD2 mutations ranged from mild febrile seizures to severe epileptic encephalopathy. WHAT THIS PAPER ADDS: Q1392TfsX17 maybe the hot-spot mutation of CHD2. West syndrome could be a new phenotype of CHD2 mutation. CHD2基因突变相关癫痫的新突变和新表型: 本文研究的目的是总结CHD2基因突变相关癫痫的基因型和表型特点。采用靶向捕获二代测序癫痫基因检测包或全外显子组测序的方法发现17例患儿携带CHD2基因突变,共包括16种突变,其中15种为新突变,13种为新生突变。癫痫发作起病年龄为生后3个月-10岁5个月。病程中出现的发作类型包括全面强直阵挛发作、肌阵挛发作、失张力发作、不典型失神、局灶性发作和肌阵挛-失张力发作。2例患儿出现痉挛发作。14例患儿有不同程度的运动、智力发育落后,7例有孤独症样表现。15例患儿脑电图异常。癫痫综合征诊断符合非特异性早发癫痫性脑病5例,癫痫伴肌阵挛-失张力发作2例,Lennox-Gastaut综合征2例,热性惊厥附加症2例,婴儿痉挛症1例。9例患儿发作控制。 Q1392TfsX17 可能是CHD2基因的热点突变。婴儿痉挛症是CHD2基因突变相关癫痫的新表型。CHD2基因突变相关癫痫既可见于较轻的热性惊厥,也可以见于严重的癫痫性脑病。."	"Computational Study of the Rovibrational Spectra of CH2D<sup>+</sup> and CHD2<sup/>. In this paper, we present rovibrational energy levels of CH2D<sup>+</sup> and CHD2<sup>+</sup>. They are computed with a large basis and the Lanczos algorithm. CH2D<sup>+</sup> and CHD2<sup>+</sup> are believed to play an important role in interstellar space, but so far, there are no definitive observations. The predictions of this paper should facilitate detection. For CH2D<sup>+</sup>, two CH stretch bands have been studied at high resolution. Compared to our calculated energies, the root-mean-square error is 0.08 cm<sup>-1</sup>. For CHD2<sup>+</sup>, one CH stretch band has been studied at high resolution. Compared to our calculated energies, the root-mean-square error is 0.5 cm<sup>-1</sup>. Errors are larger, for both isotopologues, for bend states. We attribute these errors to the potential energy surface. Wave function and probability distribution plots are used to make assignments. The ν1 band of CHD2<sup>+</sup> is significantly perturbed, and according to our calculations, the 3ν3 state is closest and might be the most important perturber."	"Rotamer Jumps, Proton Exchange, and Amine Inversion Dynamics of Dimethylated Lysine Residues in Proteins Resolved by pH-Dependent <sup>1</sup>H and <sup>13</sup>C NMR Relaxation Dispersion. Post-translational methylation of lysine side chains is of great importance for protein regulation, including epigenetic control. Here, we present specific <sup>13</sup>CHD2 labeling of dimethylated lysines as a sensitive probe of the structure, interactions, and dynamics of these groups, and outline a theoretical and experimental framework for analyzing their conformational dynamics using <sup>1</sup>H and <sup>13</sup>C CPMG relaxation dispersion experiments. Dimethylated lysine side chains in calcium-loaded calmodulin show a marked pH dependence of their Carr-Purcell-Meiboom-Gill (CPMG) dispersion profiles, indicating complex exchange behavior. Combined analysis of <sup>1</sup>H and <sup>13</sup>C CPMG relaxation dispersions requires consideration of 12-state correlated exchange of the two methyl groups due to circular three-state rotamer jumps around the Cε-Nζ axis combined with proton exchange and amine inversion. Taking into account a number of fundamental constraints, the exchange model can be reduced to include only three fitted parameters, namely, the geometric average of the rotamer-jump rate constants, the rate constant of deprotonation of Nζ, and the chemical shift difference between the trans and gauge positions of the <sup>13</sup>C or <sup>1</sup>H nuclei. The pH dependence indicates that protonation of the end group dramatically slows down rotamer exchange for some lysine residues, whereas deprotonation leads to rapid amine inversion coupled with rotamer scrambling. The observed variation among residues in their exchange behavior appears to depend on the structural environment of the side chain. Understanding this type of exchange process is critical to correctly interpreting NMR spectra of methylated lysine side chains. The exchange model presented here forms the basis for studying the structure and dynamics of epigenetically modified lysine side chains and perturbations caused by changes in pH or interactions with target proteins."	"CircRNA UBAP2 promotes the progression of ovarian cancer by sponging microRNA-144. This study aims to elucidate the regulatory effect of circular RNA UBAP2 (circUBAP2) on the progression of ovarian cancer (OC). Quantitative Real Time-Polymerase Chain Reaction (qRT-PCR) was used to detect the expressions of circUBAP2, microRNA-144 and CHD2 in OC tissues and adjacent normal tissues. The correlation between the expression levels of circUBAP2 and microRNA-144 with pathological parameters of OC patients was analyzed. Subcellular distribution of circUBAP2 was detected by chromatin fractionation assay. After overexpression of circUBAP2 in OC cells, changes in proliferative and migratory abilities were evaluated by Cell Counting Kit-8 (CCK-8) and transwell assay, respectively. In addition, the Dual-Luciferase reporter gene assay was used to verify the binding of circUBAP2 and microRNA-144, and the binding of CHD2 to microRNA-144. QRT-PCR results showed that circUBAP2 was highly expressed in OC tissues, and its expression was negatively correlated with TMN stage and five-year survival of OC patients. CircUBAP2 was mainly distributed in the cytoplasm. Overexpression of circUBAP2 significantly promoted the proliferative and migratory abilities of OC cells. The Dual-Luciferase reporter gene assay demonstrated that circUBAP2 could bind to microRNA-144. Meanwhile, circUBAP2 negatively regulated microRNA-144 expression in OC cells. Besides, the promotive effects of circUBAP2 on the proliferation and migration of OC cells were reversed by microRNA-144 overexpression. MicroRNA-144 was lowly expressed in OC tissues, which was negatively correlated with TNM stage of OC patients. The Dual-Luciferase reporter gene assay confirmed the binding condition between CHD2 and microRNA-144. CHD2 expression was negatively regulated by microRNA-144 in OC cells. Moreover, CHD2 could bind to microRNA-144 and partially inhibited its activity, thereby promoting the proliferative and migratory abilities of OC cells. CircUBAP2 promotes the progression of ovarian cancer by adsorbing microRNA-144."	"Genetic characterization of B-cell prolymphocytic leukemia: a prognostic model involving MYC and TP53. B-cell prolymphocytic leukemia (B-PLL) is a rare hematological disorder whose underlying oncogenic mechanisms are poorly understood. Our cytogenetic and molecular assessments of 34 patients with B-PLL revealed several disease-specific features and potential therapeutic targets. The karyotype was complex (≥3 abnormalities) in 73% of the patients and highly complex (≥5 abnormalities) in 45%. The most frequent chromosomal aberrations were translocations involving MYC [t(MYC)] (62%), deletion (del)17p (38%), trisomy (tri)18 (30%), del13q (29%), tri3 (24%), tri12 (24%), and del8p (23%). Twenty-six (76%) of the 34 patients exhibited an MYC aberration, resulting from mutually exclusive translocations or gains. Whole-exome sequencing revealed frequent mutations in TP53, MYD88, BCOR, MYC, SF3B1, SETD2, CHD2, CXCR4, and BCLAF1. The majority of B-PLL used the IGHV3 or IGHV4 subgroups (89%) and displayed significantly mutated IGHV genes (79%). We identified 3 distinct cytogenetic risk groups: low risk (no MYC aberration), intermediate risk (MYC aberration but no del17p), and high risk (MYC aberration and del17p) (P = .0006). In vitro drug response profiling revealed that the combination of a B-cell receptor or BCL2 inhibitor with OTX015 (a bromodomain and extra-terminal motif inhibitor targeting MYC) was associated with significantly lower viability of B-PLL cells harboring a t(MYC). We concluded that cytogenetic analysis is a useful diagnostic and prognostic tool in B-PLL. Targeting MYC may be a useful treatment option in this disease."	"MAS dependent sensitivity of different isotopomers in selectively methyl protonated protein samples in solid state NMR. Sensitivity and resolution together determine the quality of NMR spectra in biological solids. For high-resolution structure determination with solid-state NMR, proton-detection emerged as an attractive strategy in the last few years. Recent progress in probe technology has extended the range of available MAS frequencies up to above 100 kHz, enabling the detection of resolved resonances from sidechain protons, which are important reporters of structure. Here we characterise the interplay between MAS frequency in the newly available range of 70-110 kHz and proton content on the spectral quality obtainable on a 1 GHz spectrometer for methyl resonances. Variable degrees of proton densities are tested on microcrystalline samples of the α-spectrin SH3 domain with selectively protonated methyl isotopomers (CH3, CH2D, CHD2) in a perdeuterated matrix. The experimental results are supported by simulations that allow the prediction of the sensitivity outside this experimental frequency window. Our results facilitate the selection of the appropriate labelling scheme at a given MAS rotation frequency."	"QTL mapping of rat blood pressure loci on RNO1 within a homologous region linked to human hypertension on HSA15. Fine-mapping of regions linked to the inheritance of hypertension is accomplished by genetic dissection of blood pressure quantitative trait loci (BP QTLs) in rats. The goal of the current study was to further fine-map two genomic regions on rat chromosome 1 with opposing blood pressure effects (BP QTL1b1 and BP QTL1b1a), the homologous region of which on human chromosome 15 harbors BP QTLs. Two new substrains were constructed and studied from the previously reported BP QTL1b1, one having significantly lower systolic BP by 17 mmHg than that of the salt-sensitive (S) rat (P = 0.007). The new limits of BP QTL1b1 were between 134.09 Mb and 135.40 Mb with a 43% improvement from the previous 2.31 Mb to the current 1.31 Mb interval containing 4 protein-coding genes (Rgma, Chd2, Fam174b, and St8sia2), 2 predicted miRNAs, and 4 lncRNAs. One new substrain was constructed and studied from the previously reported BPQTL1b1a having a significantly higher systolic BP by 22 mmHg (P = 0.006) than that of the S rat. The new limits of BPQTL1b1a were between 133.53 Mb and 134.52 Mb with a 32% improvement from the previous1.45 Mb to the current 990.21 Kb interval containing 1 protein-coding gene, Mctp2, and a lncRNA. The congenic segments of these two BP QTLs overlapped between 134.09 Mb and 134.52 Mb. No exonic variants were detected in any of the genes. These findings reiterate complexity of genetic regulation of BP within QTL regions, where elements beyond protein-coding sequences could be factors in controlling BP."	"A Quasi-Classical Evaluation of the J-Shifting Approximation for the Reactive Cross Sections of F + CHD3 and F + CH4. We evaluated the accuracy of the J-shifting approximation to estimate reactant state-selected cross sections for the F+CH4 → HF+CH3 and F+CHD3 → HF+CD3/DF+CHD2 reactions. In particular, we analyzed how the rotational state of methane influences the quality of the approximation. The systems were considered in full dimensionality. Since full-quantum scattering calculations are still unfeasible for these reactions, we employed quasi-classical trajectories (QCT) to calculate the cross sections. The characteristics of the Born-Oppenheimer potential energy surface of these reactions pose a great challenge to the assumptions of the J-shifting approach. In spite of this, we found that it performs well for both reactions if the methane molecule is in the rotational ground state. However, when methane is rotationally excited, the approach affords good results for the F+CH4 system but clearly fails for F+CHD3. The reasons for this failure will be discussed, and a simple procedure to recover good estimators for the cross sections from J = 0 calculations will be introduced."	"Clinical utility of multigene panel testing in adults with epilepsy and intellectual disability. To determine the diagnostic yield of a commercial epilepsy gene panel in adults with chronic epilepsy and accompanying intellectual disability, given that genetic evaluation is often overlooked in this group of patients. This is a cross-sectional study analyzing the results of epilepsy gene panels including up to 185 genes in adult epilepsy patients with intellectual disability, according to Diagnostic and Statistical Manual of Mental Disorders, fifth edition. Patients with acquired structural brain abnormalities or known chromosomal abnormalities were excluded. From approximately 600 patients seen from January 2017 to June 2018 at a single academic epilepsy center, 64 probands and two affected relatives (32 males, mean age = 31 years ± 10) were selected and clinically tested. Fourteen probands (14/64 = 22%; four males, mean age = 32 years ± 10) were found to have pathogenic or likely pathogenic variants in the following genes: SCN1A, GABRB3, UBE3A, KANSL1, SLC2A1, KCNQ2, SLC6A1, HNRNPU, STX1B, SCN2A, PURA, and CHD2. Six variants arose de novo, and the inheritance was not determined in eight. Nine probands (64%) had severe or profound intellectual disability, and five (35%) had autistic features. Eight patients (57%) had a diagnostic change from presumptive clinical diagnosis prior to genetic testing. We were able to demonstrate that a commercial epilepsy gene panel can be an important resource in clinical practice, identifying the etiology in 22% of adults with epilepsy and intellectual disability. The diagnostic yield is similar to previously reported pediatric cohorts. Larger samples would be required to evaluate the more prevalent genotypes among adult epilepsy patients."	"Meta-Analysis of Microarray Expression Studies on Metformin in Cancer Cell Lines. Several studies have demonstrated that metformin (MTF) acts with variable efficiency as an anticancer agent. The pleiotropic anticancer effects of MTF on cancer cells have not been fully explored yet. By interrogating the Gene Expression Omnibus (GEO) for microarray expression data, we identified eight eligible submissions, representing five different studies, that employed various conditions including different cell lines, MTF concentrations, treatment durations, and cellular components. A compilation of the data sets of 13 different conditions contained 443 repeatedly up- and 387 repeatedly down-regulated genes; the majority of these 830 differentially expressed genes (DEGs) were associated with higher MTF concentrations and longer MTF treatment. The most frequently upregulated genes include DNA damage inducible transcript 4 (DDIT4), chromodomain helicase DNA binding protein 2 (CHD2), endoplasmic reticulum to nucleus signaling 1 (ERN1), and growth differentiation factor 15 (GDF15). The most commonly downregulated genes include arrestin domain containing 4 (ARRDC4), and thioredoxin interacting protein (TXNIP). The most significantly (p-value &lt; 0.05, Fisher's exact test) overrepresented protein class was entitled, nucleic acid binding. Cholesterol biosynthesis and other metabolic pathways were specifically affected by downregulated pathway molecules. In addition, cell cycle pathways were significantly related to the data set. Generated networks were significantly related to, e.g., carbohydrate and lipid metabolism, cancer, cell cycle, and DNA replication, recombination, and repair. A second compilation comprised genes that were at least under one condition up- and in at least another condition down-regulated. Herein, the most frequently deregulated genes include nuclear paraspeckle assembly transcript 1 (NEAT1) and insulin induced gene 1 (INSIG1). The most significantly overrepresented protein classes in this compilation were entitled, nucleic acid binding, ubiquitin-protein ligase, and mRNA processing factor. In conclusion, this study provides a comprehensive list of deregulated genes and biofunctions related to in vitro MTF application and individual responses to different conditions. Biofunctions affected by MTF include, e.g., cholesterol synthesis and other metabolic pathways, cell cycle, and DNA replication, recombination, and repair. These findings can assist in defining the conditions in which MTF exerts additive or synergistic effects in cancer treatment."	"Integrated miRNA-mRNA transcriptomic analysis reveals epigenetic-mediated embryonic muscle growth differences between Wuzhishan and Landrace pigs1. Pig is one of the major dietary protein sources for human consumption, from which muscle is the largest protein origin. However, molecular mechanisms concerning early porcine embryonic muscle development distinctions between pig breeds are still unclear. In this study, an integrated analysis of transcriptome and miRNAome was conducted using longissimus dorsi muscle of 4 early embryonic stages around the primary myofiber formation time (18-, 21-, 28-, and 35-d post coitus) from 2 pig breeds (Landrace [LR] and Wuzhishan [WZS]) differing in meat mass. The global miRNA/mRNA expression profile showed that WZS prepared for myogenic developmental processes earlier than LR. After identifying and analyzing the interaction network of top 100 up-/down-regulated miRNA and their target genes, we were able to find 3 gene clusters: chromatin modification-related (Chd2, H3f3a, Chd6, and Mll1), myogenesis-related (Pax3, Pbx1, Mef2a, and Znf423), and myosin component-related (Mylk, Myo5a, Mylk4, Myh9, and Mylk2) gene clusters. These genes may involve in miRNA-gene myogenic regulatory network that plays vital role in regulating distinct early porcine embryonic myogenic processes between LR and WZS. In summary, our study reveals an epigenetic-mediated myogenic regulatory axial that will help us to decipher molecular mechanisms concerning early porcine embryonic muscle development distinctions between pig breeds."	"Genomic backgrounds of Japanese patients with undiagnosed neurodevelopmental disorders. Recently, many genes related to neurodevelopmental disorders have been identified by high-throughput genomic analysis; however, a comprehensive understanding of the mechanism underlying neurodevelopmental disorders remains to be established. To further understand these underlying mechanisms, we performed a comprehensive genomic analysis of patients with undiagnosed neurodevelopmental disorders. Genomic analysis using next-generation sequencing with a targeted panel was performed for a total of 133 Japanese patients (male/female, 81/52) with previously undiagnosed neurodevelopmental disorders, including developmental delay (DD), intellectual disability (ID), autism spectrum disorder (ASD), and epilepsy. Genomic copy numbers were also analyzed using the eXome Hidden Markov Model (XHMM). Thirty-nine patients (29.3%) exhibited pathogenic or likely pathogenic findings with single-gene variants or chromosomal aberrations. Among them, 20 patients were presented here. Pathogenic or likely pathogenic variants were identified in 18 genes, including ACTG1, CACNA1A, CHD2, CDKL5, DNMT3A, EHMT1, GABRB3, GABRG2, GRIN2B, KCNQ3, KDM5C, MED13L, SCN2A, SHANK3, SMARCA2, STXBP1, SYNGAP1, and TBL1XR1. A diagnostic yield of 29.3% in this study was nearly the same as that previously reported from other countries. Thus, we suggest that there is no difference in genomic backgrounds in Japanese patients with undiagnosed neurodevelopmental disabilities. Although most of the patients possessed de novo variants, one of the patients showed an X-linked inheritance pattern. As X-linked recessive disorders exhibit the possibility of recurrent occurrence in the family, comprehensive molecular diagnosis is important for genetic counseling."	"Exome sequencing findings in 27 patients with myoclonic-atonic epilepsy: Is there a major genetic factor? Myoclonic-atonic epilepsy (MAE) is thought to have a genetic etiology. Mutations in CHD2, SLC2A1 and SLC6A1 genes have been reported in few patients showing often intellectual disability prior to MAE onset. We aimed to explore putative causal genetic factors in MAE. We performed array-CGH and whole-exome sequencing in 27 patients. We considered non-synonymous variants, splice acceptor, donor site mutations, and coding insertions/deletions. A gene was causal when its mutations have been already linked to epilepsy or other brain diseases or when it has a putative function in neuronal excitability or brain development. We identified candidate disease-causing variants in 11 patients (41%). Single variants were found in some known epilepsy-associated genes (namely CHD2, KCNT1, KCNA2 and STXBP1) but not in others (SLC2A1 and SLC6A1). One new candidate gene SUN1 requires further validation. MAE shows underlying genetic heterogeneity with only few cases linked to mutations in genes reported in developmental and epileptic encephalopathies."	"Alternative splicing induces cytoplasmic localization of RBFOX2 protein in calcific tendinopathy. Calcific tendinopathy (CT) is characterized by deposits of calcium, most commonly found in the shoulder tendons. The exact cause and pathogenesis of CT are not fully understood. This study analyzed the expression pattern of RNA-binding protein fox-1 homolog 2 (RBFOX2), a crucial splicing regulator in tissue differentiation. Normal and calcific tendons were compared for RBFOX2 mRNA level using quantitative reverse-transcription polymerase chain reaction. Intracellular localization of RBFOX2 protein was investigated using immunofluorescence microscopy. Normal and calcific tendon cDNAs were used to clone RBFOX2. Sequencing analysis identified coding sequences of the RBFOX2 isoform. The intracellular localization of RBFOX2 protein differed with disease status, with RBFOX2 localized in the cytoplasm in calcific tendons and the nucleus in normal tendons. Analysis of the RBFOX2 protein-coding sequence showed that exon 10, responsible for nuclear localization, was absent in calcific tendons. Splicing of RBFOX2 target genes CHD2 and MBNL1 was significantly affected by cytoplasmic localization of RBFOX2 in calcific tendons. Given the function of RBFOX2 as a splicing regulator in the nucleus, cytoplasmic localization of RBFOX2 protein in calcific tendons may have affected overall splicing events and altered gene expression. These results provide insights for comprehension of CT pathogenesis."	"Genetic mechanisms of regression in autism spectrum disorder. Developmental regression occurs in approximately one-third of children with autism spectrum disorder (ASD). There is a strong genetic influence in ASD and hundreds of genes have been implicated. Theories suggest that regressive ASD is a neurobiological subtype with potentially different causes. This review examines the evidence of genetic influences in regression and provides a summary of its frequency among ASD-associated single-gene disorders. The few twin- and family studies reporting on the concordance of regressive ASD among twin pairs and siblings provide mixed results, and no conclusions of the variance explained by either genetic or environmental factors can be drawn. Among the 89 genes robustly associated with ASD, 16 have been connected to regression, of which seven showed rates of regression higher than 30% among the mutation carriers. The molecular functions of these genes highlight important roles of transcriptional and synapse regulation for regression. Overall, this review shows our limited understanding of factors influencing regressive ASD and calls for additional studies to answer the open questions."	"Exome sequencing identifies molecular diagnosis in children with drug-resistant epilepsy. Early onset drug-resistant epilepsy is a neurologic disorder in which 2 antiepileptic drugs fail to maintain the seizure-free status of the patient. Heterogeneous clinical presentations make the diagnosis challenging. We aim to identify the underlying genetic causes of a pediatric cohort with drug-resistant epilepsy and evaluate whether the findings can provide information on patient management. We include patients with drug-resistant epilepsy onset before 18 years of age. Singleton clinical chromosomal microarray (CMA) followed by whole exome sequencing (WES) was performed using genomic DNA. In the first-tier analysis of the exome data, we aimed to identify disease-causing mutations in 546 genes known to cause, or to be associated with, epilepsy. For negative cases, we proceeded to exome-wide analysis. Rare coding variants were interrogated for pathogenicity based on the American College of Medical Genetics and Genomics (ACMG) guidelines. We recruited 50 patients. We identified 6 pathogenic or likely pathogenic mutations, giving a diagnostic yield of 12%. Mutations were found in 6 different genes: SCN8A, SCN1A, MECP2, CDKL5, DEPDC5, and CHD2. The CDKL5 variant was found to be mosaic. One variant of unknown significance (VUS) in KCNT1 was found in a patient with compatible clinical features. Of note, a reported pathogenic SCN5A mutation known to contribute to Brugada syndrome, was also found in the patient with an SCN1A mutation. Our study suggests that singleton WES is an effective diagnostic tool for drug-resistant epilepsy. Genetic diagnosis can help to consolidate the clinical diagnosis, to facilitate phenotypic expansion, and to influence treatment and management options for seizure control in our patients. In our study, a significant portion of the genetic findings are known to be associated with an increased risk of sudden unexpected death in epilepsy (SUDEP). These findings could assist with more appropriate management in patients with epilepsy."	"Genetic testing in a cohort of patients with potential epilepsy with myoclonic-atonic seizures. Epilepsy with myoclonic-atonic seizures (EMAS) accounts for 1-2% of all childhood-onset epilepsies. EMAS has been shown to have an underlying genetic component, however the genetics of this disorder is not yet well understood. The purpose of this study was to review genetic testing results for a cohort of EMAS patients. A retrospective chart review was conducted for 77 patients evaluated at Children's Hospital Colorado with a potential diagnosis of EMAS. Genetic testing and biochemical testing was reviewed. Family history data was also collected. Seventy-seven percent of the cohort had at least one genetic test performed, and a molecular diagnosis was reached for six patients. Thirty-seven patients had a microarray, six of which identified a copy number variant. Only one was felt to contribute to the phenotype (2p16.3 deletion including NRXN1). Fifty-one patients had an epilepsy panel, two of which were positive (likely pathogenic variant in SCN1A, pathogenic variant in GABRG2). Of the six patients who had whole exome sequencing, two were negative, three were positive or likely positive, and one had multiple variants not felt to explain the phenotype. While EMAS is widely accepted to have a strong genetic component, the diagnostic yield of genetic testing remains low. This may be because several genes now thought to be associated with EMAS are not included on the more commonly ordered epilepsy panels, or have only recently been added to them."	"CHD2: One Gene, Many Roles. Mutations in the chromodomain helicase DNA-binding 2 (CHD2) gene have been found in patients with a range of neurodevelopmental disorders. In this issue of Neuron, Kim et al. (2018) showed that Chd2 haploinsufficiency compromises cortical development, synaptic function, and memory in mice."	"Genotypes of Enterocytozoon bieneusi in Dogs and Cats in Eastern China. Enterocytozoon bieneusi is a common opportunistic pathogen found in both humans and animals. As companion animals live in close contact with human being, they may act as a zoonotic reservoir and play an important role in transmitting this parasite to humans. We evaluated the prevalence, genotypic diversity and zoonotic potential of E. bieneusi in dogs and cats in eastern China during Apr to Dec 2013. Fecal specimens from 315 dogs and 143 cats from veterinary hospitals in eastern China were examined in 2015 by internal transcribed spacer (ITS)-based PCR. E. bieneusi was detected in 8.6% of canine and in 1.4% of feline samples. Seven genotypes of E. bieneusi were identified, including four known genotypes (PtEb IX, EbpC, Type IV and D) and three novel genotypes, named CHD1, CHD2 and CHD3. The dominant genotype in dogs was PtEbIX (59.3%; n=16/27). Five (CHD1, EbpC, CHD2, D and Type IV) of the seven genotypes were in the so-called zoonotic group 1, whereas genotypes PtEbIX belonged to the dog-specific group and genotypes CHD3 were placed in group 2. Dogs are predominately infected with host-specific genotypes of E. bieneusi, and the finding of several zoonotic genotypes in dogs and cats reminds us of potentially zoonotic transmission of microsporidiosis."	"Chd2 Is Necessary for Neural Circuit Development and Long-Term Memory. Considerable evidence suggests loss-of-function mutations in the chromatin remodeler CHD2 contribute to a broad spectrum of human neurodevelopmental disorders. However, it is unknown how CHD2 mutations lead to impaired brain function. Here we report mice with heterozygous mutations in Chd2 exhibit deficits in neuron proliferation and a shift in neuronal excitability that included divergent changes in excitatory and inhibitory synaptic function. Further in vivo experiments show that Chd2<sup>+/-</sup> mice displayed aberrant cortical rhythmogenesis and severe deficits in long-term memory, consistent with phenotypes observed in humans. We identified broad, age-dependent transcriptional changes in Chd2<sup>+/-</sup> mice, including alterations in neurogenesis, synaptic transmission, and disease-related genes. Deficits in interneuron density and memory caused by Chd2<sup>+/-</sup> were reproduced by Chd2 mutation restricted to a subset of inhibitory neurons and corrected by interneuron transplantation. Our results provide initial insight into how Chd2 haploinsufficiency leads to aberrant cortical network function and impaired memory."	"Autism-linked CHD gene expression patterns during development predict multi-organ disease phenotypes. Recent large-scale exome sequencing studies have identified mutations in several members of the CHD (Chromodomain Helicase DNA-binding protein) gene family in neurodevelopmental disorders. Mutations in the CHD2 gene have been linked to developmental delay, intellectual disability, autism and seizures, CHD8 mutations to autism and intellectual disability, whereas haploinsufficiency of CHD7 is associated with executive dysfunction and intellectual disability. In addition to these neurodevelopmental features, a wide range of other developmental defects are associated with mutants of these genes, especially with regards to CHD7 haploinsufficiency, which is the primary cause of CHARGE syndrome. Whilst the developmental expression of CHD7 has been reported previously, limited information on the expression of CHD2 and CHD8 during development is available. Here, we compare the expression patterns of all three genes during mouse development directly. We find high, widespread expression of these genes at early stages of development that gradually becomes restricted during later developmental stages. Chd2 and Chd8 are widely expressed in the developing central nervous system (CNS) at all stages of development, with moderate expression remaining in the neocortex, hippocampus, olfactory bulb and cerebellum of the postnatal brain. Similarly, Chd7 expression is seen throughout the CNS during late embryogenesis and early postnatal development, with strong enrichment in the cerebellum, but displays low expression in the cortex and neurogenic niches in early life. In addition to expression in the brain, novel sites of Chd2 and Chd8 expression are reported. These findings suggest additional roles for these genes in organogenesis and predict that mutation of these genes may predispose individuals to a range of other, non-neurological developmental defects."	"Novel and de novo mutations in pediatric refractory epilepsy. Pediatric refractory epilepsy is a broad phenotypic spectrum with great genetic heterogeneity. Next-generation sequencing (NGS) combined with Sanger sequencing could help to understand the genetic diversity and underlying disease mechanisms in pediatric epilepsy. Here, we report sequencing results from a cohort of 172 refractory epilepsy patients aged 0-14 years. The pathogenicity of identified variants was evaluated in accordance with the American College of Medical Genetics and Genomics (ACMG) criteria. We identified 43 pathogenic or likely pathogenic variants in 40 patients (23.3%). Among these variants, 74.4% mutations (32/43) were de novo and 60.5% mutations (26/43) were novel. Patients with onset age of seizures ≤12 months had higher yields of deleterious variants compared to those with onset age of seizures &gt; 12 months (P = 0.006). Variants in ion channel genes accounted for the greatest functional gene category (55.8%), with SCN1A coming first (16/43). 81.25% (13/16) of SCN1A mutations were de novo and 68.8% (11/16) were novel in Dravet syndrome. Pathogenic or likely pathogenic variants were found in the KCNQ2, STXBP1, SCN2A genes in Ohtahara syndrome. Novel deleterious variants were also found in West syndrome, Doose syndrome and glucose transporter type 1 deficiency syndrome patients. One de novo MECP2 mutation were found in a Rett syndrome patient. TSC1/TSC2 variants were found in 60% patients with tuberous sclerosis complex patients. Other novel mutations detected in unclassified epilepsy patients involve the SCN8A, CACNA1A, GABRB3, GABRA1, IQSEC2, TSC1, VRK2, ATP1A2, PCDH19, SLC9A6 and CHD2 genes. Our study provides novel insights into the genetic origins of pediatric epilepsy and represents a starting-point for further investigations into the molecular pathophysiology of pediatric epilepsy that could eventually lead to better treatments."	"Somatic mutations in specific and connected subpathways are associated with short neuroblastoma patients' survival and indicate proteins targetable at onset of disease. Neuroblastoma (NB) is an embryonic malignancy of the sympathetic nervous system with heterogeneous biological, morphological, genetic and clinical characteristics. Although genomic studies revealed the specific biological features of NB pathogenesis useful for new therapeutic approaches, the improvement of high-risk (HR)-NB patients overall survival remains unsatisfactory. To further clarify the biological basis of disease aggressiveness, we used whole-exome sequencing to examine the genomic landscape of HR-NB patients at stage M with short survival (SS) and long survival (LS). Only a few genes, including SMARCA4, SMO, ZNF44 and CHD2, were recurrently and specifically mutated in the SS group, confirming the low recurrence of common mutations in this tumor. A systems biology approach revealed that in the two patient groups, mutations occurred in different pathways. Mutated genes (ARHGEF11, CACNA1G, FGF4, PTPRA, PTK2, ANK3, SMO, NTNG2, VCL and NID2) regulate the MAPK pathway associated with the organization of the extracellular matrix, cell motility through PTK2 signaling and matrix metalloproteinase activity. Moreover, we detected mutations in LAMA2, PTK2, LAMA4, and MMP14 genes, impairing MET signaling, in SFI1 and CHD2 involved in centrosome maturation and chromosome remodeling, in AK7 and SPTLC2, which regulate the metabolism of nucleotides and lipoproteins, and in NALCN, SLC12A1, SLC9A9, which are involved in the transport of small molecules. Notably, connected networks of somatically mutated genes specific for SS patients were identified. The detection of mutated genes present at the onset of disease may help to address an early treatment of HR-NB patients using FDA-approved compounds targeting the deregulated pathways."	"Chromatin Remodeling Proteins in Epilepsy: Lessons From CHD2-Associated Epilepsy. The chromodomain helicase DNA-binding (CHD) family of proteins are ATP-dependent chromatin remodelers that contribute to the reorganization of chromatin structure and deposition of histone variants necessary to regulate gene expression. CHD proteins play an important role in neurodevelopment, as pathogenic variants in CHD1, CHD2, CHD4, CHD7 and CHD8 have been associated with a range of neurological phenotypes, including autism spectrum disorder (ASD), intellectual disability (ID) and epilepsy. Pathogenic variants in CHD2 are associated with developmental epileptic encephalopathy (DEE) in humans, however little is known about how these variants contribute to this disorder. Of the nine CHD family members, CHD2 is the only one that leads to a brain-restricted phenotype when disrupted in humans. This suggests that despite being expressed ubiquitously, CHD2 has a unique role in human brain development and function. In this review, we will discuss the phenotypic spectrum of patients with pathogenic variants in CHD2, current animal models of CHD2 deficiency, and the role of CHD2 in proliferation, neurogenesis, neuronal differentiation, chromatin remodeling and DNA-repair. We also consider how CHD2 depletion can affect each of these biological mechanisms and how these defects may underpin neurodevelopmental disorders including epilepsy."	"G-quadruplexes in the BAP1 promoter positively regulate its expression. Accumulating evidence suggests a key role of BAP1 in oncogenesis, but mechanisms regulating BAP1 gene expression remain unexplored. In this report, we revealed that the BAP1 promoter contains multiple G-tracts in its negative strand with high potential of forming G-quadruplex (G4) structures. In circular dichroism studies, synthesized oligonucleotides within these G-rich regions upstream the BAP1 transcription start site showed molar ellipticity at specific wavelengths characteristic of G4 structures. Analyses of these oligonucleotides by native polyacrylamide gel electrophoresis revealed formation of multiple types of G4 structures. In reporter assays, mutations or deletion of predicted G4 structures reduced BAP1 promoter activity. Additionally, DNA helicases CHD2 and CHD7 could reduce BAP1 promoter activity, likely through unwinding its G4 structures."	"The first reported case of an inherited pathogenic CHD2 variant in a clinically affected mother and daughter. Pathogenic variants in CHD2 (chromodomain helicase DNA-binding protein 2) have been reported in neurodevelopmental disorders with a broad spectrum of phenotypic variability, ranging from mild intellectual disability to atonic-myoclonic epilepsy. However, given the paucity of reported cases the extent of this phenotypic spectrum is currently unknown. Furthermore, all confirmed pathogenic CHD2 variants reported to date have been de novo, preventing the study of intrafamilial phenotypic heterogeneity and creating ambiguity regarding recurrence risk, penetrance, and expressivity. Here, we report the first known case of an inherited pathogenic CHD2 variant in affected mother and daughter. This case demonstrates intrafamilial phenotypic heterogeneity and confirms potential heritability of CHD2-related neurodevelopmental disorders."	"CHD2-epilepsy: Polygraphic documentation of self-induced seizures due to fixation-off sensitivity. CHD2 gene has been described in association with different types of childhood myoclonic epilepsy and is emerging as a gene involved in photosensitivity alone or combined with epilepsy. Recent studies suggest that CHD2 could be responsible for a proper phenotype characterized by infantile-onset generalized epilepsy, intellectual disability, and photosensitivity and in particular with self-induced seizures. We report the case of a child with CHD2 mutation and mild developmental impairment that since the age of 3 years started with myoclonic seizures apparently well responding to antiepileptic drugs and that subsequently developed intractable self-induced seizures. Through an accurate Video-EEG polygraphic analysis, we demonstrated that seizures are related to an abnormal increase of epileptiform activity after eye-closure or loss of fixation as observed in the Fixation-Off Sensitivity (FOS) phenomenon. In conclusion our study adds relevant features of the CHD2-epilepsy phenotype and confirms that CHD2 mutations produce a distinctive form of myoclonic epilepsy with visual-sensitive seizures."	"Targeted gene panel and genotype-phenotype correlation in children with developmental and epileptic encephalopathy. We performed targeted gene-panel sequencing for children with developmental and epileptic encephalopathy (DEE) and evaluated the clinical implications of genotype-phenotype correlations. We assessed 278 children with DEE using a customized gene panel that included 172 genes, and extensively reviewed their clinical characteristics, including therapeutic efficacy, according to genotype. In 103 (37.1%) of the 278 patients with DEE, 35 different disease-causing monogenic mutations were identified. The diagnostic yield was higher among patients who were younger at seizure onset, especially those whose seizures started during the neonatal period, and in patients with drug-resistant epilepsy. According to epilepsy syndromes, the diagnostic yield was the highest among patients with West syndrome (WS) with a history of neonatal seizures and mutations in KCNQ2 and STXBP1 were most frequently identified. On the basis of genotypes, we evaluated the clinical progression and seizure outcomes with specific therapeutic regimens; these were similar to those reported previously. In particular, sodium channel blockers were effective in patients with mutations in KCNQ2 and SCN2A in infancy, as well as SCN8A, and interestingly, the ketogenic diet also showed diverse efficacy for patients with SCN1A, CDKL5, KCNQ2, STXBP1, and SCN2A mutations. Unfortunately, quinidine was not effective in 2 patients with migrating focal epilepsy in infancy related to KCNT1 mutations. Targeted gene-panel sequencing is a useful diagnostic tool for DEE in children, and genotype-phenotype correlations are helpful in anticipating the clinical progression and treatment efficacy among these patients."	"Nutritional status in short daily hemodialysis versus conventional hemodialysis patients in China. Malnutrition is the main determinant of mortality and morbidity in maintenance hemodialysis patients. In many countries except for China, it has been reported that short daily hemodialysis (SDHD) could improve nutritional status. We will report here the nutritional results obtained in the SDHD therapy period compared with conventional hemodialysis (cHD) therapy period in Chinese patients. This study compared 29 SDHD patients (SDHD group), each patient served as his own control, with 30 cHD patients (cHD group) serving as the parallel controls. The hematologic parameters, anthropometric measurements, modified quantitative subjective global assessment (MQSGA) score, weekly standard Kt/V (std Kt/V) and average daily intake of protein were measured at baseline (SDHD0 or cHD0 period), at 3 months (SDHD1 or cHD1 period) and at 6 months (SDHD2 or cHD2 period). The average daily intake of protein, dry weight, body mass index, mid-arm circumference, mid-arm muscle circumference, serum albumin, prealbumin, cholesterol, hemoglobin, weekly std Kt/V values at SDHD2 were higher than the corresponding values at SDHD0 (p &lt; 0.05, p &lt; 0.05, p &lt; 0.001, p &lt; 0.05, p &lt; 0.05, p &lt; 0.05, p &lt; 0.001, p &lt; 0.05, p &lt; 0.05, p &lt; 0.001 and p &lt; 0.001, respectively). Meanwhile, the average daily intake of protein, serum albumin, prealbumin, cholesterol, hemoglobin, weekly std Kt/V values at SDHD2 were higher than the corresponding values at cHD2 (p &lt; 0.05, p &lt; 0.001, p &lt; 0.05, p &lt; 0.05, p &lt; 0.001 and p &lt; 0.001, respectively), whereas the MQSGA score at SDHD2 was lower than the score at SDHD0 and cHD0 (p &lt; 0.05, respectively). SDHD may improve the nutritional status compared with cHD in Chinese patients undergoing maintenance hemodialysis."	"Efficient strategy for the molecular diagnosis of intractable early-onset epilepsy using targeted gene sequencing. We intended to evaluate diagnostic utility of a targeted gene sequencing by using next generation sequencing (NGS) panel in patients with intractable early-onset epilepsy (EOE) and find the efficient analytical step for increasing the diagnosis rate. We assessed 74 patients with EOE whose seizures started before 3 years of age using a customized NGS panel that included 172 genes. Single nucleotide variants (SNVs) and exonic and chromosomal copy number variations (CNVs) were intensively examined with our customized pipeline and crosschecked with commercial or pre-built software. Variants were filtered and prioritized by in-depth clinical review, and finally classified according to the American College of Medical Genetics and Genomics guidelines. Each case was further discussed in a monthly consensus meeting that included the participation of all laboratory personnel, bioinformaticians, geneticists, and clinicians. The NGS panel identified 28 patients (37.8%) with genetic abnormalities; 25 patients had pathogenic or likely pathogenic SNVs in 17 genes including SXTBP1 (n = 3), CDKL5 (n = 2), KCNQ2 (n = 2), SCN1A (n = 2), SYNGAP1 (n = 2), GNAO1 (n = 2), KCNT1 (n = 2), BRAT1, WWOX, ZEB2, CHD2, PRICKLE2, COL4A1, DNM1, SCN8A, MECP2, SLC9A6 (n = 1). The other 3 patients had pathogenic CNVs (2 duplications and 1 deletion) with varying sizes (from 2.5 Mb to 12 Mb). The overall diagnostic yield was 37.8% after following our step-by-step approach for clinical consensus. NGS is a useful diagnostic tool with great utility for patients with EOE. Diagnostic yields can be maximized with a standardized and team-based approach."	"Mutation Screening of the CHCHD2 Gene for Alzheimer's Disease and Frontotemporal Dementia in Chinese Mainland Population. As an important multifunctional protein involved in regulation of mitochondrial metabolism, CHCHD2 was identified as a causative gene for Parkinson's disease (PD), yet the relationship between CHCHD2 and neurodegenerative dementia is not well understood. We directly sequenced the entire coding region of CHCHD2 gene in 150 AD patients, 84 FTD patients, and 417 controls. Four rare putative pathogenic variants of CHCHD2, including rs142444896 (c.5C&gt;T, p.P2L), rs752705344 (c.15C&gt;G, p.S5R), rs145190179 (c.94G&gt;A, p.A32T), and rs182992574 (c.255T&gt;A, p.S85R) were identified from a cohort composed of 150 AD and 84 FTD patients. These results suggest that CH CHD2 gene play an important role in other neurodegenerative disorders from our dementia study in China."	"Novel mutations and phenotypes of epilepsy-associated genes in epileptic encephalopathies. Epileptic encephalopathies are severe epilepsy disorders with strong genetic bases. We performed targeted next-generation sequencing (NGS) in 70 patients with epileptic encephalopathies. The likely pathogenicity of variants in candidate genes was evaluated by American College of Medical Genetics and Genomics (ACMG) scoring taken together with the accepted clinical presentation. Thirty-three candidate variants were detected after population filtration and computational prediction. According to ACMG, 21 candidate variants, including 18 de novo variants, were assessed to be pathogenic/likely pathogenic with clinical concordance. Twelve variants were initially assessed as uncertain significance by ACMG, among which 3 were considered causative and 3 others were considered possibly causative after analysis of clinical concordance. In total, 24 variants were identified as putatively causative, among which 19 were novel findings. SCN1A mutations were identified in 50% of patients with Dravet syndrome. TSC1/TSC2 mutations were detected in 66.7% of patients with tuberous sclerosis. STXBP1 mutations were the main findings in patients with West syndrome. Mutations in SCN2A, KCNT1, KCNQ2 and CLCN4 were identified in patients with epileptic infantile with migrating focal seizures; among them, KCNQ2 and CLCN4 were first identified as potential causative genes. Only one CHD2 mutation was detected in patients with Lennox-Gastaut syndrome. This study highlighted the utility of targeted NGS in genetic diagnoses of epileptic encephalopathies and a comprehensive evaluation of the pathogenicity of variants based on ACMG scoring and assessment of clinical concordance. Epileptic encephalopathies differ in genetic causes, and the genotype-phenotype correlations would provide insights into the underlying pathogenic mechanisms."	"Imaging spectroscopy of the missing REMPI bands of methyl radicals: Final touches on all vibrational frequencies of the 3p Rydberg states. (2 + 1) resonance-enhanced multiphoton ionization (REMPI) detection of methyl radicals, in particular that via the intermediate 3p Rydberg states, has shown to be a powerful method and thus enjoyed a wide range of applications. Methyl has six vibrational modes. Among them-including partially and fully deuterated isotopologs-four out of twenty vibrational frequencies in the intermediate 3p states have so far eluded direct spectroscopic determination. Here, by exploiting the imaging spectroscopy approach to a few judiciously selected chemical reactions, the four long-sought REMPI bands-CHD2(61<sup>1</sup>), CH2D(31<sup>1</sup>), CH2D(51<sup>1</sup>), and CH2D(61<sup>1</sup>)-are discovered, which complete the REMPI identification for probing any vibrational mode of excitation of methyl radical and its isotopologs. These results, in conjunction with those previously reported yet scattered in the literature, are summarized here for ready reference, which should provide all necessary information for further spectral assignments and future studies of chemical dynamics using this versatile REMPI scheme."	"Regulatory networks specifying cortical interneurons from human embryonic stem cells reveal roles for CHD2 in interneuron development. Cortical interneurons (cINs) modulate excitatory neuronal activity by providing local inhibition. During fetal development, several cIN subtypes derive from the medial ganglionic eminence (MGE), a transient ventral telencephalic structure. While altered cIN development contributes to neurodevelopmental disorders, the inaccessibility of human fetal brain tissue during development has hampered efforts to define molecular networks controlling this process. Here, we modified protocols for directed differentiation of human embryonic stem cells, obtaining efficient, accelerated production of MGE-like progenitors and MGE-derived cIN subtypes with the expected electrophysiological properties. We defined transcriptome changes accompanying this process and integrated these data with direct transcriptional targets of NKX2-1, a transcription factor controlling MGE specification. This analysis defined NKX2-1-associated genes with enriched expression during MGE specification and cIN differentiation, including known and previously unreported transcription factor targets with likely roles in MGE specification, and other target classes regulating cIN migration and function. NKX2-1-associated peaks were enriched for consensus binding motifs for NKX2-1, LHX, and SOX transcription factors, suggesting roles in coregulating MGE gene expression. Among the NKX2-1 direct target genes with cIN-enriched expression was CHD2, which encodes a chromatin remodeling protein mutated to cause human epilepsies. Accordingly, CHD2 deficiency impaired cIN specification and altered later electrophysiological function, while CHD2 coassociated with NKX2-1 at cis-regulatory elements and was required for their transactivation by NKX2-1 in MGE-like progenitors. This analysis identified several aspects of gene-regulatory networks underlying human MGE specification and suggested mechanisms by which NKX2-1 acts with chromatin remodeling activities to regulate gene expression programs underlying cIN development."	"Molecular diagnosis of patients with epilepsy and developmental delay using a customized panel of epilepsy genes. Pediatric epilepsies are a group of disorders with a broad phenotypic spectrum that are associated with great genetic heterogeneity, thus making sequential single-gene testing an impractical basis for diagnostic strategy. The advent of next-generation sequencing has increased the success rate of epilepsy diagnosis, and targeted resequencing using genetic panels is the a most cost-effective choice. We report the results found in a group of 87 patients with epilepsy and developmental delay using targeted next generation sequencing (custom-designed Haloplex panel). Using this gene panel, we were able to identify disease-causing variants in 17 out of 87 (19.5%) analyzed patients, all found in known epilepsy-associated genes (KCNQ2, CDKL5, STXBP1, SCN1A, PCDH19, POLG, SLC2A1, ARX, ALG13, CHD2, SYNGAP1, and GRIN1). Twelve of 18 variants arose de novo and 6 were novel. The highest yield was found in patients with onset in the first years of life, especially in patients classified as having early-onset epileptic encephalopathy. Knowledge of the underlying genetic cause provides essential information on prognosis and could be used to avoid unnecessary studies, which may result in a greater diagnostic cost-effectiveness."	"TDP-43 Promotes Neurodegeneration by Impairing Chromatin Remodeling. Regulation of chromatin structure is critical for brain development and function. However, the involvement of chromatin dynamics in neurodegeneration is less well understood. Here we find, launching from Drosophila models of amyotrophic lateral sclerosis and frontotemporal dementia, that TDP-43 impairs the induction of multiple key stress genes required to protect from disease by reducing the recruitment of the chromatin remodeler Chd1 to chromatin. Chd1 depletion robustly enhances TDP-43-mediated neurodegeneration and promotes the formation of stress granules. Conversely, upregulation of Chd1 restores nucleosomal dynamics, promotes normal induction of protective stress genes, and rescues stress sensitivity of TDP-43-expressing animals. TDP-43-mediated impairments are conserved in mammalian cells, and, importantly, the human ortholog CHD2 physically interacts with TDP-43 and is strikingly reduced in level in temporal cortex of human patient tissue. These findings indicate that TDP-43-mediated neurodegeneration causes impaired chromatin dynamics that prevents appropriate expression of protective genes through compromised function of the chromatin remodeler Chd1/CHD2. Enhancing chromatin dynamics may be a treatment approach to amyotrophic lateral scleorosis (ALS)/frontotemporal dementia (FTD)."	"Autism spectrum disorder recurrence, resulting of germline mosaicism for a CHD2 gene missense variant. Germline mosaicism for a novel missense variant p.Thr645Met located in the SNF2-related ATP dependent helicase domain of CHD2 in 2 affected siblings with autism spectrum disorder."	"CHD2 mutations: Only epilepsy? Description of cognitive and behavioral profile in a case with a new mutation. NA"	"Dravet syndrome and its mimics: Beyond SCN1A. Dravet syndrome (DS) is a severe developmental and epileptic encephalopathy characterized by the onset of prolonged febrile and afebrile seizures in infancy, and evolving to drug-resistant epilepsy with accompanying cognitive, behavioral, and motor impairment. Most cases are now known to be caused by pathogenic variants in the sodium channel gene SCN1A, but several other genes have also been implicated. This review examines current understanding of the role of non-SCN1A genes in DS, and what is known about phenotypic similarities and differences. We discuss whether these are best thought of as minority causes of DS, or as similar but distinct conditions. Based on a review of literature, a list of genes linked to DS was compiled and PubMed was searched for reports of DS-like phenotypes arising from variants in each. Online Mendelian Inheritance in Man (OMIM) was used to identify further reports relevant to each gene. Genes that have been reported to cause DS-like phenotypes include SCN2A, SCN8A, SCN9A, SCN1B, PCDH19, GABRA1, GABRG2, STXBP1, HCN1, CHD2, and KCNA2. Many of these genes, however, appear to be associated with their own, different, clinical picture. Other candidate genes for DS have been reported, but there is currently an insufficient body of literature to support their causative role. Although most cases of DS arise from SCN1A variants, numerous other genes cause encephalopathies that are clinically similar. Increasingly, a tendency is noted to define newly described epileptic disorders primarily in genetic terms, with clinical features being linked to genotypes. As genetic diagnosis becomes more readily available, its potential to guide pathophysiologic understanding and therapeutic strategy cannot be ignored. Clinical assessment remains essential; the challenge now is to develop a gene-based taxonomy that complements traditional syndromic classifications, allowing elements of both to inform new approaches to treatment."	"Exonic Mosaic Mutations Contribute Risk for Autism Spectrum Disorder. Genetic risk factors for autism spectrum disorder (ASD) have yet to be fully elucidated. Postzygotic mosaic mutations (PMMs) have been implicated in several neurodevelopmental disorders and overgrowth syndromes. By leveraging whole-exome sequencing data on a large family-based ASD cohort, the Simons Simplex Collection, we systematically evaluated the potential role of PMMs in autism risk. Initial re-evaluation of published single-nucleotide variant (SNV) de novo mutations showed evidence consistent with putative PMMs for 11% of mutations. We developed a robust and sensitive SNV PMM calling approach integrating complementary callers, logistic regression modeling, and additional heuristics. In our high-confidence call set, we identified 470 PMMs in children, increasing the proportion of mosaic SNVs to 22%. Probands have a significant burden of synonymous PMMs and these mutations are enriched for computationally predicted impacts on splicing. Evidence of increased missense PMM burden was not seen in the full cohort. However, missense burden signal increased in subcohorts of families where probands lacked nonsynonymous germline mutations, especially in genes intolerant to mutations. Parental mosaic mutations that were transmitted account for 6.8% of the presumed de novo mutations in the children. PMMs were identified in previously implicated high-confidence neurodevelopmental disorder risk genes, such as CHD2, CTNNB1, SCN2A, and SYNGAP1, as well as candidate risk genes with predicted functions in chromatin remodeling or neurodevelopment, including ACTL6B, BAZ2B, COL5A3, SSRP1, and UNC79. We estimate that PMMs potentially contribute risk to 3%-4% of simplex ASD case subjects and future studies of PMMs in ASD and related disorders are warranted."	"Molecular cytogenetic characterization of a duplication of 15q24.2-q26.2 associated with anencephaly and neural tube defect. We present molecular cytogenetic characterization of a duplication of 15q24.2-q26.2 associated with anencephaly and neural tube defect (NTD). A 35-year-old pregnant woman was found to have a fetus with anencephaly by prenatal ultrasound at 12 weeks of gestation. The pregnancy was subsequently terminated, and a malformed fetus was delivered with anencephaly. Cytogenetic analysis of the cultured placental tissues revealed a karyotype of 46,XX,dup(15) (q24.2q26.2). Parental karyotypes were normal. Array comparative genomic hybridization analysis of the placental tissues revealed a 20.36-Mb duplication of 15q24.2-q26.2 encompassing 100 Online Mendelian Inheritance of in Man (OMIM) genes including LINGO1, MTHFS, KIF7 and CHD2. Metaphase fluorescence in situ hybridization analysis using 15q25.1-specidic probe confirmed a duplication of 15q25.1. Polymorphic DNA marker analysis showed a maternal origin of the duplication. A duplication of chromosome 15q24.2-q26.2 can be associated with NTD."	"Conformer specific nonadiabatic reaction dynamics in the photodissociation of partially deuterated thioanisoles (C6H5S-CH2D and C6H5S-CHD2). In this work, we have investigated nonadiabatic dynamics in the vicinity of conical intersections for predissociation reactions of partially deuterated thioanisole molecules: C6H5S-CH2D and C6H5S-CHD2. Each isotopomer has two distinct rotational conformers according to the geometrical position of D or H of the methyl moiety with respect to the molecular plane for C6H5S-CH2D or C6H5S-CHD2, respectively, as spectroscopically characterized in our earlier report [J. Lee, S.-Y. Kim and S. K. Kim, J. Phys. Chem. A, 2014, 118, 1850]. Since identification and separation of two different rotational conformers of each isotopomer have been unambiguously done, we could interrogate nonadiabatic dynamics of thioanisole in terms of both H/D substitutional and conformational structural effects. Nonadiabatic transition probability, estimated by the experimentally measured branching ratio of the nonadiabatically produced ground-state channel giving C6H5S·(X[combining tilde]) versus the adiabatic excited-state channel leading to the C6H5S·(Ã) radical, shows resonance-like increases at symmetric (νs) or asymmetric (7a) S-CH2D (or S-CHD2) stretching mode excitation in S1 for all conformational isomers of two isotopomers. However, absolute probabilistic value of the nonadiabatic transition is found to vary quite drastically depending on different conformers and isotopomers. The experimental finding that nonadiabatic transition dynamics are very sensitive to subtle changes in the nuclear configuration within the Franck-Condon region induced by the H/D substitution indicates that the S1/S2 conical intersection seam is quite narrowly defined in the multi-dimensional nuclear configurational space as far as the S-methyl predissociation reaction is concerned. In order to understand the relation between molecular structure and nonadiabaticity of reaction, potential energy surfaces near S1/S2 conical intersections have been theoretically calculated along νs and 7a normal mode coordinates for all conformational isomers. Slow-electron velocity map imaging (SEVI) spectroscopy is employed to unravel the extent of intramolecular vibrational redistribution (IVR) for particular mode excitations of S1, providing insights into the dynamic interplay between IVR and nonadiabatic transition probability near the conical intersection seam."	"Probing slow timescale dynamics in proteins using methyl <sup>1</sup>H CEST. Although <sup>15</sup>N- and <sup>13</sup>C-based chemical exchange saturation transfer (CEST) experiments have assumed an important role in studies of biomolecular conformational exchange, <sup>1</sup>H CEST experiments are only beginning to emerge. We present a methyl-TROSY <sup>1</sup>H CEST experiment that eliminates deleterious <sup>1</sup>H-<sup>1</sup>H NOE dips so that CEST profiles can be analyzed robustly to extract methyl proton chemical shifts of rare protein conformers. The utility of the experiment, along with a version that is optimized for <sup>13</sup>CHD2 labeled proteins, is established through studies of exchanging protein systems. A comparison between methyl <sup>1</sup>H CEST and methyl <sup>1</sup>H CPMG approaches is presented to highlight the complementarity of the two experiments."	"Non-adiabatic effects in F + CHD3 reactive scattering. The effect of non-adiabatic transitions on the F(<sup>2</sup>P) + CHD3(ν1) → DF + CHD2 and F(<sup>2</sup>P) + CHD3(ν1) → HF + CD3 reactions is investigated. The dynamics of the nuclei was simulated using trajectory surface hopping and a vibronically and spin-orbit coupled diabatic potential energy matrix. To facilitate the calculations, the fewest switching algorithm of Tully was adapted to the use of a complex diabatic potential energy matrix. For reactions of CHD3 with ground state fluorine atoms, F(<sup>2</sup>P3/2), the ratio between the previously computed adiabatic cross sections and the non-adiabatic ones was found to range from 1.4 to 2.1. The actual ratio depends on the translational energy and the initial vibrational state of CHD3. The total reactivity of CHD3(ν1 = 1) was found to be always larger than that of CHD3(ν1=0) mainly because of the increase in the cross sections for the HF + CD3 channel. Thus, the inclusion of non-adiabatic transitions in the theoretical treatment cannot resolve the existing disagreement between theory and experiment. Cross sections for the reaction of CHD3 with spin-orbit excited fluorine atoms, F(<sup>2</sup>P1/2), were found to be significantly smaller than the ones for reaction with F(<sup>2</sup>P3/2)."	"Genome-wide alteration in DNA hydroxymethylation in the sperm from bisphenol A-exposed men. Environmental BPA exposure has been shown to impact human sperm concentration and motility, as well as rodent spermatogenesis. However, it is unclear whether BPA exposure is associated with alteration in DNA hydroxymethylation, a marker for epigenetic modification, in human sperm. A genome-wide DNA hydroxymethylation study was performed using sperm samples of men who were occupationally exposed to BPA. Compared with controls who had no occupational BPA exposure, the total levels of 5-hydroxymethylcytosine (5hmc) increased significantly (19.37% increase) in BPA-exposed men, with 72.69% of genome regions harboring 5hmc. A total of 9,610 differential 5hmc regions (DhMRs) were revealed in BPA-exposed men relative to controls, which were mainly located in intergenic and intron regions. These DhMRs were composed of 8,670 hyper-hMRs and 940 hypo-hMRs, affecting 2,008 genes and the repetitive elements. The hyper-hMRs affected genes were enriched in pathways associated with nervous system, development, cardiovascular diseases and signal transduction. Additionally, enrichment of 5hmc was observed in the promoters of eight maternally expressed imprinted genes in BPA-exposed sperm. Some of the BPA-affected genes, for example, MLH1, CHD2, SPATA12 and SPATA20 might participate in the response to DNA damage in germ cells caused by BPA. Our analysis showed that enrichment of 5hmc both in promoters and gene bodies is higher in the genes whose expression has been detected in human sperm than those whose expression is absent. Importantly, we observed that BPA exposure affected the 5hmc level in 11.4% of these genes expressed in sperm, and in 6.85% of the sperm genome. Finally, we also observed that BPA exposure tends to change the 5hmc enrichment in the genes which was previously reported to be distributed with the trimethylated Histone 3 (H3K27me3, H3K4me2 or H3K4me3) in sperm. Thus, these results suggest that BPA exposure likely interferes with gene expression via affecting DNA hydroxymethylation in a way partially dependent on trimethylation of H3 in human spermatogenesis. Our current study reveals a new mechanism by which BPA exposure reduces human sperm quality."	"Chd2 regulates chromatin for proper gene expression toward differentiation in mouse embryonic stem cells. Chromatin reorganization is necessary for pluripotent stem cells, including embryonic stem cells (ESCs), to acquire lineage potential. However, it remains unclear how ESCs maintain their characteristic chromatin state for appropriate gene expression upon differentiation. Here, we demonstrate that chromodomain helicase DNA-binding domain 2 (Chd2) is required to maintain the differentiation potential of mouse ESCs. Chd2-depleted ESCs showed suppressed expression of developmentally regulated genes upon differentiation and subsequent differentiation defects without affecting gene expression in the undifferentiated state. Furthermore, chromatin immunoprecipitation followed by sequencing revealed alterations in the nucleosome occupancy of the histone variant H3.3 for developmentally regulated genes in Chd2-depleted ESCs, which in turn led to elevated trimethylation of the histone H3 lysine 27. These results suggest that Chd2 is essential in preventing suppressive chromatin formation for developmentally regulated genes and determines subsequent effects on developmental processes in the undifferentiated state."	"Theoretical Study of the Pair-Correlated F + CHD3(v = 0,ν1 = 1) Reaction: Effect of CH Stretching Vibrational Excitation. The F + CHD3(v) reaction is a benchmark system in polyatomic reactions. Theoretical/experimental comparisons have been reported in recent years that present some controversies, specifically the role of the reactant CH stretching vibrational excitation, CHD3(ν1 = 1), on the reactivity of both isotope channels, DF(v) + CHD2(v') and HF(v) + CD3(v'). However, in many cases, these comparisons are not made on an equal footing. Previous theoretical studies were concerned with overall reactivity of each isotope channel, while fine velocity map imaging experiments provided results in a product pair-correlated manner. In order to shed some light on these controversies, we perform here a pair-correlated theory/experiment comparison for the title reaction, using quasi-classical trajectory calculations on a full dimensional potential energy surface. When these calculations are analyzed in a quantum spirit, i.e., by discarding those trajectories whose results do not meet quantum-mechanical requirements and aiming to reproduce stringent experimental constraints, some of the discrepancies on overall reactivity and the effect of the CH vibrational excitation are now resolved. Agreement with the available experimental studies, though still qualitative in some aspects, has noticeably improved."	"Lennox-Gastaut Syndrome: A State of the Art Review. Lennox-Gastaut syndrome (LGS) is a severe age-dependent epileptic encephalopathy usually with onset between 1 and 8 years of age. Functional neuroimaging studies recently introduced the concept of Lennox-Gastaut as &quot;secondary network epilepsy&quot; resulting from dysfunctions of a complex system involving both cortical and subcortical structures (default-mode network, corticoreticular connections, and thalamus). These dysfunctions are produced by different disorders including hypoxic-ischemic encephalopathies, meningoencephalitis, cortical malformations, neurocutaneous disorders, or tumors. The list of etiologies was expanded to pathogenic copy number variants at whole-genome array comparative genomic hybridization associated with late-onset cases or pathogenic mutations involving genes, such as GABRB3, ALG13, SCN8A, STXBP1, DNM1, FOXG1, or CHD2. Various clinical trials demonstrated the usefulness of different drugs (including rufinamide, clobazam, lamotrigine, topiramate, or felbamate), ketogenic diet, resective surgery, corpus callosotomy, and vagus nerve stimulation in the treatment of epileptic manifestations. The outcome of LGS often remains disappointing regarding seizure control or cognitive functioning. The realization of animal models, which are still lacking, and the full comprehension of molecular mechanisms involved in epileptogenesis and cognitive impairment would give a relevant support to further improvements in therapeutic strategies for LGS patients."	"Genetic Variants Identified from Epilepsy of Unknown Etiology in Chinese Children by Targeted Exome Sequencing. Genetic factors play a major role in the etiology of epilepsy disorders. Recent genomics studies using next generation sequencing (NGS) technique have identified a large number of genetic variants including copy number (CNV) and single nucleotide variant (SNV) in a small set of genes from individuals with epilepsy. These discoveries have contributed significantly to evaluate the etiology of epilepsy in clinic and lay the foundation to develop molecular specific treatment. However, the molecular basis for a majority of epilepsy patients remains elusive, and furthermore, most of these studies have been conducted in Caucasian children. Here we conducted a targeted exome-sequencing of 63 trios of Chinese epilepsy families using a custom-designed NGS panel that covers 412 known and candidate genes for epilepsy. We identified pathogenic and likely pathogenic variants in 15 of 63 (23.8%) families in known epilepsy genes including SCN1A, CDKL5, STXBP1, CHD2, SCN3A, SCN9A, TSC2, MBD5, POLG and EFHC1. More importantly, we identified likely pathologic variants in several novel candidate genes such as GABRE, MYH1, and CLCN6. Our results provide the evidence supporting the application of custom-designed NGS panel in clinic and indicate a conserved genetic susceptibility for epilepsy between Chinese and Caucasian children."	"Genomic Profile of Chronic Lymphocytic Leukemia in Korea Identified by Targeted Sequencing. Chronic lymphocytic leukemia (CLL) is extremely rare in Asian countries and there has been one report on genetic changes for 5 genes (TP53, SF3B1, NOTCH1, MYD88, and BIRC3) by Sanger sequencing in Chinese CLL. Yet studies of CLL in Asian countries using Next generation sequencing have not been reported. We aimed to characterize the genomic profiles of Korean CLL and to find out ethnic differences in somatic mutations with prognostic implications. We performed targeted sequencing for 87 gene panel using next-generation sequencing along with G-banding and fluorescent in situ hybridization (FISH) for chromosome 12, 13q14.3 deletion, 17p13 deletion, and 11q22 deletion. Overall, 36 out of 48 patients (75%) harbored at least one mutation and mean number of mutation per patient was 1.6 (range 0-6). Aberrant karyotypes were observed in 30.4% by G-banding and 66.7% by FISH. Most recurrent mutation (&gt;10% frequency) was ATM (20.8%) followed by TP53 (14.6%), SF3B1 (10.4%), KLHL6 (8.3%), and BCOR (6.25%). Mutations of MYD88 was associated with moderate adverse prognosis by multiple comparisons (P = 0.055). Mutation frequencies of MYD88, SAMHD1, EGR2, DDX3X, ZMYM3, and MED12 showed similar incidence with Caucasians, while mutation frequencies of ATM, TP53, KLHL6, BCOR and CDKN2A tend to be higher in Koreans than in Caucasians. Especially, ATM mutation showed 1.5 fold higher incidence than Caucasians, while mutation frequencies of SF3B1, NOTCH1, CHD2 and POT1 tend to be lower in Koreans than in Caucasians. However, mutation frequencies between Caucasians and Koreans were not significantly different statistically, probably due to low number of patients. Collectively, mutational profile and adverse prognostic genes in Korean CLL were different from those of Caucasians, suggesting an ethnic difference, while profile of cytogenetic aberrations was similar to those of Caucasians."	"Differential steric effects in Cl reactions with aligned CHD3(v1 = 1) by the R(0) and Q(1) transitions. II. Abstracting the unexcited D-atoms. A complete set of four polarization-dependent differential cross sections in the reactions of Cl + aligned-CHD3(v1=1,jK)→DCl(v=0)+CHD2(v1=1) is reported here for two different, rotationally polarized states with j = 1: specifically the jK=10 state prepared via the R(0) excitation and the 1±1 state via Q(1). In stark contrast to the complicated situation of the HCl(v) + CD3(v = 0) channel reported in Paper-I, the stereo-requirement of this isotopic channel for both polarized reactants appears quite straightforward and consistent with a direct rebound mechanism. The extent of steric effects is moderate and relatively smaller than the alternative H-atom abstraction channel. All major findings reported here can qualitatively be understood by first noting that the present reaction invokes abstracting a D-atom, which is the spectator in the IR-excitation process. Next, it is recognized that the directional properties of two polarized states of CHD3(v1=1, jK) should manifest primarily in the IR-excited C-H bond, leaving secondary imprints in the unexcited CD3-moiety. The stereo-specificity of the DCl + CHD2 product channel is further reduced by the fact that the abstraction can occur with any one of the three spatially distinct D-atoms."	"Differential steric effects in Cl reactions with aligned CHD3(v1 = 1) by the R(0) and Q(1) transitions. I. Attacking the excited C-H bond. When a CHD3 molecule is pumped to the C-H stretching-excited state by absorbing a linearly polarized infrared (IR) photon via the R(0) branch of the v1 = 1←0 transition, the rotational angular momentum j of the prepared state jK=10 preferentially lies in a plane perpendicular to the IR polarization axis εIR. By way of contrast, when the Q(1) branch is used, the state of jK=1±1 is prepared with j aligned along the direction of εIR. Reported here is a detailed study of the title reaction by actively controlling the collision geometries under these two IR-excitation schemes at collision energy Ec = 8.6 kcal mol<sup>-1</sup>, using a crossed molecular beam, product imaging approach. We found that under the R(0) excitation, the polarization-dependent differential cross sections for the HCl(v = 0) + CD3(00) channel can largely be understood by invoking dual reaction mechanisms. The forward-scattered products are most likely mediated by a time-delayed resonance mechanism-as the formation of the HCl(v = 1) + CD3(00) channel, whereas the backward/sideways scattered products are governed by a direct abstraction mechanism. Compared to the previous results at lower Ec of 3.8 kcal mol<sup>-1</sup>, the sighting of opening-up the attack angle at the transition state of the direct pathway is proposed. Results under the Q(1) excitation are, however, perplexing and bear no obvious correlation to the corresponding ones for the R(0) excitation, defying simple intuitive interpretation. Possible reasons are put forward, which call for theoretical investigations for deeper insights. The results on the alternative isotope channel, DCl + CHD2, will be reported in the following paper."	"Understanding Genotypes and Phenotypes in Epileptic Encephalopathies. Epileptic encephalopathies are severe often intractable seizure disorders where epileptiform abnormalities contribute to a progressive disturbance in brain function. Often, epileptic encephalopathies start in childhood and are accompanied by developmental delay and various neurological and non-neurological comorbidities. In recent years, this concept has become virtually synonymous with a group of severe childhood epilepsies including West syndrome, Lennox-Gastaut syndrome, Dravet syndrome, and several other severe childhood epilepsies for which genetic factors are increasingly recognized. In the last 5 years, the field has seen a virtual explosion of gene discovery, raising the number of bona fide genes and possible candidate genes for epileptic encephalopathies to more than 70 genes, explaining 20-25% of all cases with severe early-onset epilepsies that had otherwise no identifiable causes. This review will focus on the phenotypic variability as a characteristic aspect of genetic epilepsies. For many genetic epilepsies, the phenotypic presentation can be broad, even in patients with identical genetic alterations. Furthermore, patients with different genetic etiologies can have seemingly similar clinical presentations, such as in Dravet syndrome. While most patients carry mutations in SCN1A, similar phenotypes can be seen in patients with mutations in PCDH19, CHD2, SCN8A, or in rare cases GABRA1 and STXBP1. In addition to the genotypic and phenotypic heterogeneity, both benign phenotypes and severe encephalopathies have been recognized in an increasing number of genetic epilepsies, raising the question whether these conditions represent a fluid continuum or distinct entities."	"Application of whole-exome sequencing to unravel the molecular basis of undiagnosed syndromic congenital neutropenia with intellectual disability. Neutropenia can be qualified as congenital when of neonatal onset or when associated with extra-hematopoietic manifestations. Overall, 30% of patients with congenital neutropenia (CN) remain without a molecular diagnosis after a multidisciplinary consultation and tedious diagnostic strategy. In the rare situations when neutropenia is identified and associated with intellectual disability (ID), there are few diagnostic hypotheses to test. This retrospective multicenter study reports on a clinically heterogeneous cohort of 10 unrelated patients with CN associated with ID and no molecular diagnosis prior to whole-exome sequencing (WES). WES provided a diagnostic yield of 40% (4/10). The results suggested that in many cases neutropenia and syndromic manifestations could not be assigned to the same molecular alteration. Three sub-groups of patients were highlighted: (i) severe, symptomatic chronic neutropenia, detected early in life, and related to a known mutation in the CN spectrum (ELANE); (ii) mild to moderate benign intermittent neutropenia, detected later, and associated with mutations in genes implicated in neurodevelopmental disorders (CHD2, HUWE1); and (iii) moderate to severe intermittent neutropenia as a probably undiagnosed feature of a newly reported syndrome (KAT6A). Unlike KAT6A, which seems to be associated with a syndromic form of CN, the other reported mutations may not explain the entire clinical picture. Although targeted gene sequencing can be discussed for the primary diagnosis of severe CN, we suggest that performing WES for the diagnosis of disorders associating CN with ID will not only provide the etiological diagnosis but will also pave the way towards personalized care and follow-up. © 2016 Wiley Periodicals, Inc."	"State-to-State Mode Specificity in F + CHD3 → HF/DF + CD3/CHD2 Reaction. The F + CHD3 → HF/DF + CD3/CHD2 reaction is studied using a state-to-state quasi-classical trajectory method on a recently developed ab initio based full-dimensional potential energy surface. Consistent with sudden vector projection model predictions, the HF/DF products are highly excited in both vibrational and rotational modes, while the CD3/CHD2 product internal excitation is mostly in the umbrella/out-of-plane mode. Furthermore, the C-H stretching vibration in the CHD3 reactant is found to behave as an active mode for the HF + CD3 channel, leading to additional excitation in the HF product but having almost no impact on CD3 vibrational state distributions. On the other hand, this mode acts as a spectator for the DF + CHD2 channel, exerting little influence on the DF and other CHD2 vibrational modes except an extra quantum excitation in the C-H stretching mode. The calculated vibrational state resolved differential cross sections are in good agreement with available experimental results at Ec = 9.00 kcal/mol. "	"Sensitive proton-detected solid-state NMR spectroscopy of large proteins with selective CH3 labelling: application to the 50S ribosome subunit. Solid-state NMR spectroscopy allows the characterization of the structure, interactions and dynamics of insoluble and/or very large proteins. Sensitivity and resolution are often major challenges for obtaining atomic-resolution information, in particular for very large protein complexes. Here we show that the use of deuterated, specifically CH3-labelled proteins result in significant sensitivity gains compared to previously employed CHD2 labelling, while line widths increase only marginally. We apply this labelling strategy to a 468 kDa-large dodecameric aminopeptidase, TET2, and the 1.6 MDa-large 50S ribosome subunit of Thermus thermophilus. "	"Absence epilepsy and the CHD2 gene: an adolescent male with moderate intellectual disability, short-lasting psychoses, and an interstitial deletion in 15q26.1-q26.2. Deletions of the 15q26 region encompassing the chromodomain helicase DNA binding domain 2 (CHD2) gene have been associated with intellectual disability, behavioral problems, and several types of epilepsy. Including the cases mentioned in ECARUCA (European cytogeneticists association register of unbalanced chromosome aberrations) and DECIPHER (database of genomic variation and phenotype in humans using ensembl resources), so far, a total of 13 intellectually disabled patients with a genetically proven deletion of the CHD2 gene are described, of whom eleven had a history of severe forms of epilepsy starting from a young age. In this article, a moderately intellectually disabled 15-year-old male with a 15q26.1-q26.2 interstitial deletion is reported, who was referred for analysis of two recent short-lasting psychotic episodes that were nonresponsive to antipsychotic treatment and recurrent disinhibited behaviors since early infancy. Careful interdisciplinary assessment revealed that the psychotic phenomena originated from a previously unrecognized absence epilepsy. Treatment with valproic acid was started which resulted in full remission of psychotic symptoms, and consequently, substantial improvement of behavior. It was concluded that in case of (rare) developmental disorders with genetically proven etiology, a detailed inventory of anamnestic data and description of symptomatology over time may elucidate epilepsy-related psychopathology for which a specific treatment regimen is needed. "	"Quantitative measurement of exchange dynamics in proteins via (13)C relaxation dispersion of (13)CHD2-labeled samples. Methyl groups have emerged as powerful probes of protein dynamics with timescales from picoseconds to seconds. Typically, studies involving high molecular weight complexes exploit (13)CH3- or (13)CHD2-labeling in otherwise highly deuterated proteins. The (13)CHD2 label offers the unique advantage of providing (13)C, (1)H and (2)H spin probes, however a disadvantage has been the lack of an experiment to record (13)C Carr-Purcell-Meiboom-Gill relaxation dispersion that monitors millisecond time-scale dynamics, implicated in a wide range of biological processes. Herein we develop an experiment that eliminates artifacts that would normally result from the scalar coupling between (13)C and (2)H spins that has limited applications in the past. The utility of the approach is established with a number of applications, including measurement of ms dynamics of a disease mutant of a 320 kDa p97 complex."	"A Quantitative Analysis of Subclonal and Clonal Gene Mutations before and after Therapy in Chronic Lymphocytic Leukemia. Chronic lymphocytic leukemia (CLL)-associated gene mutations that influence CLL cell fitness and chemotherapy resistance should increase in clonal representation when measured before therapy and at relapse. To uncover mutations associated with CLL relapse, we have performed whole-exome sequencing in a discovery cohort of 61 relapsed CLL patients identifying 86 recurrently mutated genes. The variant allele fractions (VAF) of 19 genes with mutations in ≥3 of 61 cases were measured in 53 paired pre- and posttreatment CLL samples sorted to purity using panel-based deep resequencing or by droplet digital PCR. We identify mutations in TP53 as the dominant subclonal gene driver of relapsed CLL often demonstrating substantial increases in VAFs. Subclonal mutations in SAMHD1 also recurrently demonstrated increased VAFs at relapse. Mutations in ATP10A, FAT3, FAM50A, and MGA, although infrequent, demonstrated enrichment in ≥2 cases each. In contrast, mutations in NOTCH1, SF3B1, POT1, FBXW7, MYD88, NXF1, XPO1, ZMYM3, or CHD2 were predominantly already clonal prior to therapy indicative of a pretreatment pathogenetic driver role in CLL. Quantitative analyses of clonal dynamics uncover rising, stable, and falling clones and subclones without clear evidence that gene mutations other than in TP53 and possibly SAMHD1 are frequently selected for at CLL relapse. Data in aggregate support a provisional categorization of CLL-associated recurrently mutated genes into three classes (i) often subclonal before therapy and strongly enriched after therapy, or, (ii) mostly clonal before therapy or without further enrichments at relapse, or, (iii) subclonal before and after therapy and enriching only in sporadic cases. Clin Cancer Res; 22(17); 4525-35. ©2016 AACR."	"Photosensitivity and CHD2 Variants. Investigators from multinational institutions hypothesized that disruption of CHD2, which encodes chromodomain helicase DNA-binding protein 2, would be associated with common forms of photosensitive epilepsy or photosensitivity manifesting as a photoparoxysmal response alone. "	"PARP1 Links CHD2-Mediated Chromatin Expansion and H3.3 Deposition to DNA Repair by Non-homologous End-Joining. The response to DNA double-strand breaks (DSBs) requires alterations in chromatin structure to promote the assembly of repair complexes on broken chromosomes. Non-homologous end-joining (NHEJ) is the dominant DSB repair pathway in human cells, but our understanding of how it operates in chromatin is limited. Here, we define a mechanism that plays a crucial role in regulating NHEJ in chromatin. This mechanism is initiated by DNA damage-associated poly(ADP-ribose) polymerase 1 (PARP1), which recruits the chromatin remodeler CHD2 through a poly(ADP-ribose)-binding domain. CHD2 in turn triggers rapid chromatin expansion and the deposition of histone variant H3.3 at sites of DNA damage. Importantly, we find that PARP1, CHD2, and H3.3 regulate the assembly of NHEJ complexes at broken chromosomes to promote efficient DNA repair. Together, these findings reveal a PARP1-dependent process that couples ATP-dependent chromatin remodeling with histone variant deposition at DSBs to facilitate NHEJ and safeguard genomic stability."	"Genome-wide nucleosome specificity and function of chromatin remodellers in ES cells. ATP-dependent chromatin remodellers allow access to DNA for transcription factors and the general transcription machinery, but whether mammalian chromatin remodellers target specific nucleosomes to regulate transcription is unclear. Here we present genome-wide remodeller-nucleosome interaction profiles for the chromatin remodellers Chd1, Chd2, Chd4, Chd6, Chd8, Chd9, Brg1 and Ep400 in mouse embryonic stem (ES) cells. These remodellers bind one or both full nucleosomes that flank micrococcal nuclease (MNase)-defined nucleosome-free promoter regions (NFRs), where they separate divergent transcription. Surprisingly, large CpG-rich NFRs that extend downstream of annotated transcriptional start sites are nevertheless bound by non-nucleosomal or subnucleosomal histone variants (H3.3 and H2A.Z) and marked by H3K4me3 and H3K27ac modifications. RNA polymerase II therefore navigates hundreds of base pairs of altered chromatin in the sense direction before encountering an MNase-resistant nucleosome at the 3' end of the NFR. Transcriptome analysis after remodeller depletion reveals reciprocal mechanisms of transcriptional regulation by remodellers. Whereas at active genes individual remodellers have either positive or negative roles via altering nucleosome stability, at polycomb-enriched bivalent genes the same remodellers act in an opposite manner. These findings indicate that remodellers target specific nucleosomes at the edge of NFRs, where they regulate ES cell transcriptional programs. "	"Exome sequencing analysis in a pair of monozygotic twins re-evaluates the genetics behind their intellectual disability and reveals a CHD2 mutation. Neurodevelopmental disorders include a broad spectrum of conditions, which are characterized by delayed motor and/or cognitive milestones and by a variable range of intellectual disability with or without an autistic behavior. Several genetic factors have been implicated in intellectual disability onset and exome sequencing studies have recently identified new inherited or de novo mutations in patients with neurodevelopmental disorders. We report the case of two monozygotic twins who came for the first time to our attention at the age of 20months for a global neurodevelopmental delay associated with an autism spectrum disorder, hypotonia, postnatal microcephaly, stereotypic movements and circadian rhythm alterations in association with late-onset epilepsy. MECP2 sequence was normal. A CGH-array analysis revealed in both twins two maternally inherited duplications on chromosomes 8p22 and 16p13.11. The latter has been previously associated with neurodevelopmental disorders. We performed an exome sequencing analysis on one twin and her parents and identified a CHD2 mutation, previously described in association with a phenotypic spectrum overlapping our patients' phenotype. This work underlines the importance to consider a CHD2 involvement in children with intellectual disability and autism spectrum disorder even in the absence of epilepsy at an early age. It also highlights the necessity to re-evaluate inherited copy number variants with low penetrance and/or high phenotypic variability because an underlying de novo molecular event can be the major cause of the phenotype. This is essential in order to reach a correct diagnosis and provide the couple with a proper recurrence risk."	"Quasiclassical Trajectory Study on the Role of CH-Stretching Vibrational Excitation in the F((2)P) + CHD3(v(1)=0,1) Reactions. To analyze the role of CH-stretching vibrational excitation on the reactivity and dynamics of the F((2)P) + CHD3(v1=0,1) reactions, quasiclassical trajectory calculations using a full-dimensional analytical potential energy surface at different collision energies were performed. The extra energy of the CH excitation had almost no effect on the reactivity for the DF + CHD2 channel, although it increased the reactivity for the HF + CD3 channel, with the net effect being that CH excitation barely modified overall reactivity. In addition, the DF/HF branching ratio was not far from the statistical value for the ground-state reaction, whereas CH excitation decreased this ratio. These results, intimately related to the topology of the entrance channel, agree with recent theoretical results obtained using different surfaces (although some differences even persist among them) but strongly contradict recent experiments. This controversy will doubtless guarantee more accurate experiments and theoretical calculations in the future. However, properties related to the exit channel show reasonable theoretical/experimental agreement. Thus, the extra energy of CH excitation is mainly channelled into the HF and DF products for the HF + CD3 and DF + CHD 2 channels, respectively, and the product scattering distributions are forward in both channels, where CH excitation has almost no effect on them. "	"Collaborative cross mice in a genetic association study reveal new candidate genes for bone microarchitecture. The microstructure of trabecular bone is a composite trait governed by a complex interaction of multiple genetic determinants. Identifying these genetic factors should significantly improve our ability to predict of osteoporosis and its associated risks. Genetic mapping using collaborative cross mice (CC), a genetically diverse recombinant inbred mouse reference panel, offers a powerful tool to identify causal loci at a resolution under one mega base-pairs, with a relatively small cohort size. Here, we utilized 31 CC lines (160 mice of both sexes in total) to perform genome-wide haplotype mapping across 77,808 single-nucleotide polymorphisms (SNPs). Haplotype scans were refined by imputation with the catalogue of sequence variation segregating in the CC to suggest potential candidate genes. Trabecular traits were obtained following microtomographic analysis, performed on 10-μm resolution scans of the femoral distal metaphysis. We measured the trabecular bone volume fraction (BV/TV), number (Tb.N), thickness (Tb.Th), and connectivity density (Conn.D). Heritability of these traits ranged from 0.6 to 0.7. In addition there was a significant (P &lt; 0.01) sex effect in all traits except Tb.Th. Our haplotype scans yielded six quantitative trait loci (QTL) at 1 % false discovery rate; BV/TV and Tb.Th produced two proximal loci each, on chromosome 2 and 7, respectively, and Tb.N and Conn.D yielded one locus on chromosomes 8 and 14, respectively. We identified candidate genes with previously-reported functions in bone biology, and implicated unexpected genes whose function in bone biology has yet to be assigned. Based on the literature, among the genes that ranked particularly high in our analyses (P &lt; 10(-6)) and which have a validated causal role in skeletal biology, are Avp, Oxt, B2m (associated with BV/TV), Cnot7 (with Tb.N), Pcsk6, Rgma (with Tb.Th), Rb1, and Cpb2 (with Conn.D). Other candidate genes strongly suggested by our analyses are Sgcz, Fgf20 (associated with Tb.N), and Chd2 (with Tb.Th). We have demonstrated for the first time genome-wide significant association between several genetic loci and trabecular microstructural parameters for genes with previously reported experimental observations, as well as proposing a role for new candidate genes with no previously characterized skeletal function."	"(13)CHD2-CEST NMR spectroscopy provides an avenue for studies of conformational exchange in high molecular weight proteins. An NMR experiment for quantifying slow (millisecond) time-scale exchange processes involving the interconversion between visible ground state and invisible, conformationally excited state conformers is presented. The approach exploits chemical exchange saturation transfer (CEST) and makes use of (13)CHD2 methyl group probes that can be readily incorporated into otherwise highly deuterated proteins. The methodology is validated with an application to a G48A Fyn SH3 domain that exchanges between a folded conformation and a sparsely populated and transiently formed unfolded ensemble. Experiments on a number of different protein systems, including a 360 kDa half-proteasome, establish that the sensitivity of this (13)CHD2 (13)C-CEST technique can be upwards of a factor of 5 times higher than for a previously published (13)CH3 (13)C-CEST approach (Bouvignies and Kay in J Biomol NMR 53:303-310, 2012), suggesting that the methodology will be powerful for studies of conformational exchange in high molecular weight proteins. "	"A Quasiclassical Study of the F((2)P) + CHD3 (ν1 = 0,1) Reactive System on an Accurate Potential Energy Surface. Quasiclassical trajectories (QCT) have been employed to elucidate the effect of exciting the C-H bond in F + CHD3 collisions. The calculations were performed on a new potential energy surface that accurately describes the van der Waals complexes in the entrance channel of the reaction. It was found that exciting the C-H bond significantly enhances the yield of HF + CD3, whereas it has a minor effect on the production of DF + CHD2. Therefore, the net effect is that the total reactivity increases upon excitation. This result strongly contradicts recent experimental findings. Significant differences in regard to the yield of each product channel were also found between QCT results calculated with the new surface and those obtained with the surface previously developed by Czakó et al. This shows that relatively small variations in the topography of the entrance channel can result in huge discrepancies in the predicted DF/HF branching ratio. However, in regard to other attributes of the reaction, the agreement between QCT results computed with different surfaces, and between them and experimental results, is good. For the F + CHD3 → HF + CD3 reaction, at a collisional energy of 9.0 kcal/mol, experiments and QCT calculations agree, indicating that the extra energy deposited in the C-H bond is channelled into the HF product. In addition, the angular distribution of CD3 is backward oriented and is not sensitive to the excitation of the C-H bond. "	"CHD2 mutations are a rare cause of generalized epilepsy with myoclonic-atonic seizures. Chromodomain helicase DNA-binding protein 2 (CHD2) gene mutations have been reported in patients with myoclonic-atonic epilepsy (MAE), as well as in patients with Lennox-Gastaut, Dravet, and Jeavons syndromes and other epileptic encephalopathies featuring generalized epilepsy and intellectual disability. The aim of this study was to assess the impact of CHD2 mutations in a series of patients with MAE. Twenty patients affected by MAE were included in the study. We analyzed antecedents, age at onset, seizure semiology and frequency, EEG, treatment, and neuropsychological outcome. We sequenced the CHD2 gene with Sanger technology. We identified a CHD2 frameshift mutation in one patient (c.4256del19). He was a 17-year-old boy with no familial history for epilepsy and normal development before epilepsy onset. Epilepsy onset was at 3years and 5months: he presented with myoclonic-atonic seizures, head drops, myoclonic jerks, and absences. Interictal EEGs revealed slow background activity associated with generalized epileptiform abnormalities and photoparoxysmal response. His seizures were highly responsive to valproic acid, and an attempt to withdraw it led to seizure recurrence. Neuropsychological evaluation revealed moderate intellectual disability. Chromodomain-helicase-DNA-binding protein 2 is not the major gene associated with MAE. Conversely, CHD2 could be responsible for a proper phenotype characterized by infantile-onset generalized epilepsy, intellectual disability, and photosensitivity, which might overlap with MAE, Lennox-Gastaut, Dravet, and Jeavons syndromes. "	"Effect of CH stretching excitation on the reaction dynamics of F + CHD3 → DF + CHD2. The vibrationally excited reaction of F + CHD3(ν1 = 1) → DF + CHD2 at a collision energy of 9.0 kcal/mol is investigated using the crossed-beams and time-sliced velocity map imaging techniques. Detailed and quantitative information of the CH stretching excitation effects on the reactivity and dynamics of the title reaction is extracted with the help of an accurate determination of the fraction of the excited CHD3 reagent in the crossed-beam region. It is found that all vibrational states of the CHD2 products observed in the ground-state reaction, which mainly involve the excitation of the umbrella mode of the CHD2 products, are severely suppressed by the CH stretching excitation. However, there are four additional vibrational states of the CHD2 products appearing in the excited-state reaction which are not presented in the ground-state reaction. These vibrational states either have the CH stretching excitation retained or involve one quantum excitation in the CH stretching and the excitation of the umbrella mode. Including all observed vibrational states, the overall cross section of the excited-state reaction is estimated to be 66.6% of that of the ground-state one. Experimental results also show that when the energy of CH stretching excitation is released during the reaction, it is deposited almost exclusively as the rovibrational energy of the DF products, with little portion in the translational degree of freedom. For vibrational states of the CHD2 products observed in both ground- and excited-state reactions, the CH stretching excitation greatly suppresses the forward scattered products, causing a noticeable change in the product angular distributions. "	"High rates of submicroscopic aberrations in karyotypically normal acute lymphoblastic leukemia. Acute lymphoblastic leukemia (ALL) is not a single uniform disease. It consists of several subgroups with different cytogenetic and molecular genetic aberrations, clinical presentations and outcomes. Banding cytogenetics plays a pivotal role in the detection of recurrent chromosomal rearrangements and is the starting point of genetic analysis in ALL, still. Nowadays, molecular (cyto)genetic tools provide substantially to identify previously non-detectable, so-called cryptic chromosomal aberrations in ALL. However, ALL according to banding cytogenetics with normal karyotype - in short cytogenetically normal ALL (CN-ALL) - represent up to ~50 % of all new diagnosed ALL cases. The overall goal of this study was to identify and characterize the rate of cryptic alterations in CN-ALL and to rule out if one single routine approach may be sufficient to detect most of the cryptic alterations present. Sixty-one ALL patients with CN-ALL were introduced in this study. All of them underwent high resolution fluorescence in situ hybridization (FISH) analysis. Also DNA could be extracted from 34 ALL samples. These DNA-samples were studied using a commercially available MLPA (multiplex ligation-dependent probe amplification) probe set directed against 37 loci in hematological malignancies and/or array-comparative genomic hybridization (aCGH). Chromosomal aberrations were detected in 21 of 61 samples (~34 %) applying FISH approaches: structural abnormalities were present in 15 cases and even numerical ones were identified in 6 cases. Applying molecular approaches copy number alterations (CNAs) were detected in 27/34 samples. Overall, 126 CNAs were identified and only 34 of them were detectable by MLPA (~27 %). Loss of CNs was identified in ~80 % while gain of CNs was present in ~20 % of the 126 CNAs. A maximum of 13 aberrations was detected per case; however, only one aberration per case was found in 8 of all in detail studied 34 cases. Of special interest among the detected CNAs are the following new findings: del(15)(q26.1q26.1) including CHD2 gene was found in 20 % of the studied ALL cases, dup(18)(q21.2q21.2) with the DCC gene was present in 9 % of the cases, and the CDK6 gene in 7q21.2 was deleted in 12 % of the here in detail studied ALL cases. In conclusion, high resolution molecular cytogenetic tools and molecular approaches like MLPA and aCGH need to be combined in a cost-efficient way, to identify disease and progression causing alterations in ALL, as majority of them are cryptic in banding cytogenetic analyses."	"Mutations in CHD2 cause defective association with active chromatin in chronic lymphocytic leukemia. Great progress has recently been achieved in the understanding of the genomic alterations driving chronic lymphocytic leukemia (CLL). Nevertheless, the specific molecular mechanisms governing chromatin remodeling in CLL are unknown. Here we report the genetic and functional characterization of somatic mutations affecting the chromatin remodeler CHD2, one of the most frequently mutated genes in CLL (5.3%) and in monoclonal B lymphocytosis (MBL, 7%), a B-cell expansion that can evolve to CLL. Most of the mutations affecting CHD2, identified by whole-exome sequencing of 456 CLL and 43 MBL patients, are either truncating or affect conserved residues in functional domains, thus supporting a putative role for CHD2 as a tumor suppressor gene. CHD2 mutants show altered nuclear distribution, and a chromodomain helicase DNA binding protein 2 (CHD2) mutant affected in its DNA-binding domain exhibits defective association with active chromatin. Clinicobiological analyses show that most CLL patients carrying CHD2 mutations also present mutated immunoglobulin heavy chain variable region genes (IGHVs), being the most frequently mutated gene in this prognostic subgroup. This is the first study providing functional evidence supporting CHD2 as a cancer driver and opens the way to further studies of the role of this chromatin remodeler in CLL. "	"CHD2 is Required for Embryonic Neurogenesis in the Developing Cerebral Cortex. Chromodomain helicase DNA-binding protein 2 (CHD2) has been associated with a broad spectrum of neurodevelopmental disorders, such as autism spectrum disorders and intellectual disability. However, it is largely unknown whether and how CHD2 is involved in brain development. Here, we demonstrate that CHD2 is predominantly expressed in Pax6(+) radial glial cells (RGs) but rarely expressed in Tbr2(+) intermediate progenitors (IPs). Importantly, the suppression of CHD2 expression inhibits the self-renewal of RGs and increases the generation of IPs and the production of neurons. CHD2 mediates these functions by directly binding to the genomic region of repressor element 1-silencing transcription factor (REST), thereby regulating the expression of REST. Furthermore, the overexpression of REST rescues the defect in neurogenesis caused by CHD2 knockdown. Taken together, these findings demonstrate an essential role of CHD2 in the maintenance of the RGs self-renewal levels, the subsequent generation of IPs, and neuronal output during neurogenesis in cerebral cortical development, suggesting that inactivation of CHD2 during neurogenesis might contribute to abnormal neurodevelopment."	"CHD2 variants are a risk factor for photosensitivity in epilepsy. Photosensitivity is a heritable abnormal cortical response to flickering light, manifesting as particular electroencephalographic changes, with or without seizures. Photosensitivity is prominent in a very rare epileptic encephalopathy due to de novo CHD2 mutations, but is also seen in epileptic encephalopathies due to other gene mutations. We determined whether CHD2 variation underlies photosensitivity in common epilepsies, specific photosensitive epilepsies and individuals with photosensitivity without seizures. We studied 580 individuals with epilepsy and either photosensitive seizures or abnormal photoparoxysmal response on electroencephalography, or both, and 55 individuals with photoparoxysmal response but no seizures. We compared CHD2 sequence data to publicly available data from 34 427 individuals, not enriched for epilepsy. We investigated the role of unique variants seen only once in the entire data set. We sought CHD2 variants in 238 exomes from familial genetic generalized epilepsies, and in other public exome data sets. We identified 11 unique variants in the 580 individuals with photosensitive epilepsies and 128 unique variants in the 34 427 controls: unique CHD2 variation is over-represented in cases overall (P = 2.17 × 10(-5)). Among epilepsy syndromes, there was over-representation of unique CHD2 variants (3/36 cases) in the archetypal photosensitive epilepsy syndrome, eyelid myoclonia with absences (P = 3.50 × 10(-4)). CHD2 variation was not over-represented in photoparoxysmal response without seizures. Zebrafish larvae with chd2 knockdown were tested for photosensitivity. Chd2 knockdown markedly enhanced mild innate zebrafish larval photosensitivity. CHD2 mutation is the first identified cause of the archetypal generalized photosensitive epilepsy syndrome, eyelid myoclonia with absences. Unique CHD2 variants are also associated with photosensitivity in common epilepsies. CHD2 does not encode an ion channel, opening new avenues for research into human cortical excitability."	"CHD2 myoclonic encephalopathy is frequently associated with self-induced seizures. To delineate the phenotype of early childhood epileptic encephalopathy due to de novo mutations of CHD2, which encodes the chromodomain helicase DNA binding protein 2. We analyzed the medical history, MRI, and video-EEG recordings of 9 individuals with de novo CHD2 mutations and one with a de novo 15q26 deletion encompassing CHD2. Seizures began at a mean of 26 months (12-42) with myoclonic seizures in all 10 cases. Seven exhibited exquisite clinical photosensitivity; 6 self-induced with the television. Absence seizures occurred in 9 patients including typical (4), atypical (2), and absence seizures with eyelid myoclonias (4). Generalized tonic-clonic seizures occurred in 9 of 10 cases with a mean onset of 5.8 years. Convulsive and nonconvulsive status epilepticus were later features (6/10, mean onset 9 years). Tonic (40%) and atonic (30%) seizures also occurred. In 3 cases, an unusual seizure type, the atonic-myoclonic-absence was captured on video. A phenotypic spectrum was identified with 7 cases having moderate to severe intellectual disability and refractory seizures including tonic attacks. Their mean age at onset was 23 months. Three cases had a later age at onset (34 months) with relative preservation of intellect and an initial response to antiepileptic medication. The phenotypic spectrum of CHD2 encephalopathy has distinctive features of myoclonic epilepsy, marked clinical photosensitivity, atonic-myoclonic-absence, and intellectual disability ranging from mild to severe. Recognition of this genetic entity will permit earlier diagnosis and enable the development of targeted therapies."	"Transcription-coupled recruitment of human CHD1 and CHD2 influences chromatin accessibility and histone H3 and H3.3 occupancy at active chromatin regions. CHD1 and CHD2 chromatin remodeling enzymes play important roles in development, cancer and differentiation. At a molecular level, the mechanisms are not fully understood but include transcriptional regulation, nucleosome organization and turnover. Here we show human CHD1 and CHD2 enzymes co-occupy active chromatin regions associated with transcription start sites (TSS), enhancer like regions and active tRNA genes. We demonstrate that their recruitment is transcription-coupled. CHD1 and CHD2 show distinct binding profiles across active TSS regions. Depletion of CHD1 influences chromatin accessibility at TSS and enhancer-like chromatin regions. CHD2 depletion causes increased histone H3 and reduced histone variant H3.3 occupancy. We conclude that transcription-coupled recruitment of CHD1 and CHD2 occurs at transcribed gene TSSs and at intragenic and intergenic enhancer-like sites. The recruitment of CHD1 and CHD2 regulates the architecture of active chromatin regions through chromatin accessibility and nucleosome disassembly."	"Correlated Dynamics of the O((3)P) + CHD3(v=0) Reaction: A Joint Crossed-Beam and Quasiclassical Trajectory Study. Crossed beam experiments and quasiclassical trajectory computations on an ab initio potential energy surface are performed for the O((3)P) + CHD3(v=0) → OH(v'=0) + CD3(v2=0,2) and OD(v'=0,1) + CHD2(v=0) reactions. Both experiment and theory show that the excitation functions display a concave-up behavior and the angular distributions are backward scattered, indicating a direct rebound mechanism and a tight-bend transition state. The reaction produces mainly ground-state products showing the dominance of a vibrationally adiabatic reaction pathway. The standard histogram binning cannot reproduce the observed vibrational adiabaticity, whereas Gaussian binning gives good agreement with experiment. "	"Recurrent de novo mutations implicate novel genes underlying simplex autism risk. Autism spectrum disorder (ASD) has a strong but complex genetic component. Here we report on the resequencing of 64 candidate neurodevelopmental disorder risk genes in 5,979 individuals: 3,486 probands and 2,493 unaffected siblings. We find a strong burden of de novo point mutations for these genes and specifically implicate nine genes. These include CHD2 and SYNGAP1, genes previously reported in related disorders, and novel genes TRIP12 and PAX5. We also show that mutation carriers generally have lower IQs and enrichment for seizures. These data begin to distinguish genetically distinct subtypes of autism important for aetiological classification and future therapeutics. "	"Human CHD2 is a chromatin assembly ATPase regulated by its chromo- and DNA-binding domains. Chromodomain helicase DNA-binding protein 2 (CHD2) is an ATPase and a member of the SNF2-like family of helicase-related enzymes. Although deletions of CHD2 have been linked to developmental defects in mice and epileptic disorders in humans, little is known about its biochemical and cellular activities. In this study, we investigate the ATP-dependent activity of CHD2 and show that CHD2 catalyzes the assembly of chromatin into periodic arrays. We also show that the N-terminal region of CHD2, which contains tandem chromodomains, serves an auto-inhibitory role in both the DNA-binding and ATPase activities of CHD2. While loss of the N-terminal region leads to enhanced chromatin-stimulated ATPase activity, the N-terminal region is required for ATP-dependent chromatin remodeling by CHD2. In contrast, the C-terminal region, which contains a putative DNA-binding domain, selectively senses double-stranded DNA of at least 40 base pairs in length and enhances the ATPase and chromatin remodeling activities of CHD2. Our study shows that the accessory domains of CHD2 play central roles in both regulating the ATPase domain and conferring selectivity to chromatin substrates. "	"De novo mutations in moderate or severe intellectual disability. Genetics is believed to have an important role in intellectual disability (ID). Recent studies have emphasized the involvement of de novo mutations (DNMs) in ID but the extent to which they contribute to its pathogenesis and the identity of the corresponding genes remain largely unknown. Here, we report a screen for DNMs in subjects with moderate or severe ID. We sequenced the exomes of 41 probands and their parents, and confirmed 81 DNMs affecting the coding sequence or consensus splice sites (1.98 DNMs/proband). We observed a significant excess of de novo single nucleotide substitutions and loss-of-function mutations in these cases compared to control subjects, suggesting that at least a subset of these variations are pathogenic. A total of 12 likely pathogenic DNMs were identified in genes previously associated with ID (ARID1B, CHD2, FOXG1, GABRB3, GATAD2B, GRIN2B, MBD5, MED13L, SETBP1, TBR1, TCF4, WDR45), resulting in a diagnostic yield of ∼29%. We also identified 12 possibly pathogenic DNMs in genes (HNRNPU, WAC, RYR2, SET, EGR1, MYH10, EIF2C1, COL4A3BP, CHMP2A, PPP1CB, VPS4A, PPP2R2B) that have not previously been causally linked to ID. Interestingly, no case was explained by inherited mutations. Protein network analysis indicated that the products of many of these known and candidate genes interact with each other or with products of other ID-associated genes further supporting their involvement in ID. We conclude that DNMs represent a major cause of moderate or severe ID. "	"CHD1 and CHD2 are positive regulators of HIV-1 gene expression. Retroviruses encode a very limited number of proteins and therefore must exploit a wide variety of host proteins for completion of their lifecycle. We performed an insertional mutagenesis screen to identify novel cellular regulators of retroviral replication. This approach identified the ATP-dependent chromatin remodeler, chromodomain helicase DNA-binding protein 2 (CHD2), as well as the highly related CHD1 protein, as positive regulators of both MLV and HIV-1 replication in rodent and human cells. RNAi knockdown of either CHD2 or the related CHD1 protein, in human cells resulted in a block to infection by HIV-1, specifically at the level of transcription. These results demonstrate that CHD1 and CHD2 can act as positive regulators of HIV-1 gene expression."	"15q26.1 microdeletion encompassing only CHD2 and RGMA in two adults with moderate intellectual disability, epilepsy and truncal obesity. We report two patients with microdeletions in chromosomal subdomain 15q26.1 encompassing only two genes, CHD2 and RGMA. Both patients present a distinct phenotype with intellectual disability, epilepsy, behavioral issues, truncal obesity, scoliosis and facial dysmorphism. CHD2 haploinsufficiency is known to cause intellectual disability and epilepsy, RGMA haploinsufficiency might explain truncal obesity with onset around puberty observed in our two patients. "	"CHD2 haploinsufficiency is associated with developmental delay, intellectual disability, epilepsy and neurobehavioural problems. The chromodomain helicase DNA binding domain (CHD) proteins modulate gene expression via their ability to remodel chromatin structure and influence histone acetylation. Recent studies have shown that CHD2 protein plays a critical role in embryonic development, tumor suppression and survival. Like other genes encoding members of the CHD family, pathogenic mutations in the CHD2 gene are expected to be implicated in human disease. In fact, there is emerging evidence suggesting that CHD2 might contribute to a broad spectrum of neurodevelopmental disorders. Despite growing evidence, a description of the full phenotypic spectrum of this condition is lacking. We conducted a multicentre study to identify and characterise the clinical features associated with haploinsufficiency of CHD2. Patients with deletions of this gene were identified from among broadly ascertained clinical cohorts undergoing genomic microarray analysis for developmental delay, congenital anomalies and/or autism spectrum disorder. Detailed clinical assessments by clinical geneticists showed recurrent clinical symptoms, including developmental delay, intellectual disability, epilepsy, behavioural problems and autism-like features without characteristic facial gestalt or brain malformations observed on magnetic resonance imaging scans. Parental analysis showed that the deletions affecting CHD2 were de novo in all four patients, and analysis of high-resolution microarray data derived from 26,826 unaffected controls showed no deletions of this gene. The results of this study, in addition to our review of the literature, support a causative role of CHD2 haploinsufficiency in developmental delay, intellectual disability, epilepsy and behavioural problems, with phenotypic variability between individuals."	"Convergence of genes and cellular pathways dysregulated in autism spectrum disorders. Rare copy-number variation (CNV) is an important source of risk for autism spectrum disorders (ASDs). We analyzed 2,446 ASD-affected families and confirmed an excess of genic deletions and duplications in affected versus control groups (1.41-fold, p = 1.0 × 10(-5)) and an increase in affected subjects carrying exonic pathogenic CNVs overlapping known loci associated with dominant or X-linked ASD and intellectual disability (odds ratio = 12.62, p = 2.7 × 10(-15), ∼3% of ASD subjects). Pathogenic CNVs, often showing variable expressivity, included rare de novo and inherited events at 36 loci, implicating ASD-associated genes (CHD2, HDAC4, and GDI1) previously linked to other neurodevelopmental disorders, as well as other genes such as SETD5, MIR137, and HDAC9. Consistent with hypothesized gender-specific modulators, females with ASD were more likely to have highly penetrant CNVs (p = 0.017) and were also overrepresented among subjects with fragile X syndrome protein targets (p = 0.02). Genes affected by de novo CNVs and/or loss-of-function single-nucleotide variants converged on networks related to neuronal signaling and development, synapse function, and chromatin regulation. "	"High-throughput transcription profiling identifies putative epigenetic regulators of hematopoiesis. Hematopoietic differentiation is governed by a complex regulatory program controlling the generation of different lineages of blood cells from multipotent hematopoietic stem cells. The transcriptional program that dictates hematopoietic cell fate and differentiation requires an epigenetic memory function provided by a network of epigenetic factors regulating DNA methylation, posttranslational histone modifications, and chromatin structure. Aberrant interactions between epigenetic factors and transcription factors cause perturbations in the blood cell differentiation program that result in various types of hematopoietic disorders. To elucidate the contributions of different epigenetic factors in human hematopoiesis, high-throughput cap analysis of gene expression was used to build transcription profiles of 199 epigenetic factors in a wide range of blood cells. Our epigenetic transcriptome analysis revealed cell type- (eg, HELLS and ACTL6A), lineage- (eg, MLL), and/or leukemia- (eg, CHD2, CBX8, and EPC1) specific expression of several epigenetic factors. In addition, we show that several epigenetic factors use alternative transcription start sites in different cell types. This analysis could serve as a resource for the scientific community for further characterization of the role of these epigenetic factors in blood development."	"CHD2 mutations in Lennox-Gastaut syndrome. Lennox-Gastaut syndrome (LGS) is an epileptic encephalopathy with a heterogeneous etiology. In this study, we aimed to explore the role of CHD2 in LGS, as CHD2 mutations have been described recently in various epileptic encephalopathies. We have previously identified one patient with a large deletion affecting the CHD2 gene in a group of 22 patients with LGS or LGS-like epilepsy. In the remaining 17 patients without known etiology, Sanger sequencing revealed a de novo 1-bp duplication in the CHD2 gene in another patient. This mutation leads to a frameshift and, consequently, a premature stop codon 49bp downstream of the mutation. The patient had prominent myoclonic seizures and photosensitivity, thus, sharing phenotypic features with previously reported patients with CHD2-related epilepsy. In our original material of 22 patients with LGS features, we have now found two (9%) with mutations in the CHD2 gene. Our findings suggest that CHD2 mutations are important in the etiological spectrum of LGS. "	"Spectroscopic separation of the methyl internal-rotational isomers of thioanisole isotopomers (C6H5S-CH2D and C6H5S-CHD2). Two distinct rotational isomers of thioanisole-d1 (C6H5S-CH2D) and thioanisole-d2 (C6H5S-CHD2) with respect to the internal rotation of the methyl moiety have been identified and characterized spectroscopically using the resonantly enhanced two photon ionization, UV-UV hole burning, and slow-electron velocity map imaging techniques. From the statistical weights, the definite assignment for the specific rotational isomer of each isotopomer has been successfully done, providing isomer-specific ionization energies and vibrational frequencies of S1/D0 states. Detailed molecular structures, the methyl internal-rotor barrier, and normal-mode descriptions for selective vibrations are discussed with the aid of density functional theory calculations. "	"Comprehensive pathway-based analysis identifies associations of BCL2, GNAO1 and CHD2 with non-obstructive azoospermia risk. Do genetic variants in known canonical pathways that have been widely suggested to affect spermatogenesis confer susceptibility to non-obstructive azoospermia (NOA)? Rs1406714 in CHD2, rs2126986 in GNAO1 and rs7226979 in BCL2 were associated with NOA in Han Chinese men at a significant level after multiple testing corrections. Previous genome-wide association studies (GWASs) have identified three loci for NOA, whereas less attention has been given to those markers that did not exceed the genome-wide significance threshold. We conducted a two-stage association study containing 1653 NOA cases and 2329 controls to investigate the susceptibility markers for NOA. Imputation and pathway-based approaches can be applied to identify additional causal makers with small effects on NOA. We performed a candidate pathway-based association study using imputed-genotyping data for 24 238 single nucleotide polymorphisms estimated from NOA GWAS. Remarkably, 40 markers were associated with NOA in both imputation analysis and NOA GWAS (Stage 1) after linkage disequilibrium analysis and selected for validation (Stage 2) in another population. Based on the literature, genes from 11 biological pathways known or hypothesized to be important in spermatogenesis were selected. Combined analysis using directly genotyped data for Stages 1 and 2 revealed that rs1406714 in CHD2 was associated with decreased risk of NOA [odds ratio (OR) = 0.78, 95% confidence interval (CI) = 0.68-0.89, Pmeta = 1.7E-04], whereas rs2126986 in GNAO1 and rs7226979 in BCL2 were both risk makers for NOA (rs2126986: OR = 1.28, 95% CI = 1.15-1.41, Pmeta = 2.3E-06; rs7226979: OR = 1.21, 95% CI = 1.11-1.33, Pmeta = 4.5E-05). Our analysis of genes in the pathways studied was not exhaustive. Our study opens new avenues for the identification of other novel causal markers that are related to NOA. It will also provide a new paradigm for understanding the etiology of male infertility and contribute to the development of targeted therapies."	"De novo loss-of-function mutations in CHD2 cause a fever-sensitive myoclonic epileptic encephalopathy sharing features with Dravet syndrome. Dravet syndrome is a severe epilepsy syndrome characterized by infantile onset of therapy-resistant, fever-sensitive seizures followed by cognitive decline. Mutations in SCN1A explain about 75% of cases with Dravet syndrome; 90% of these mutations arise de novo. We studied a cohort of nine Dravet-syndrome-affected individuals without an SCN1A mutation (these included some atypical cases with onset at up to 2 years of age) by using whole-exome sequencing in proband-parent trios. In two individuals, we identified a de novo loss-of-function mutation in CHD2 (encoding chromodomain helicase DNA binding protein 2). A third CHD2 mutation was identified in an epileptic proband of a second (stage 2) cohort. All three individuals with a CHD2 mutation had intellectual disability and fever-sensitive generalized seizures, as well as prominent myoclonic seizures starting in the second year of life or later. To explore the functional relevance of CHD2 haploinsufficiency in an in vivo model system, we knocked down chd2 in zebrafish by using targeted morpholino antisense oligomers. chd2-knockdown larvae exhibited altered locomotor activity, and the epileptic nature of this seizure-like behavior was confirmed by field-potential recordings that revealed epileptiform discharges similar to seizures in affected persons. Both altered locomotor activity and epileptiform discharges were absent in appropriate control larvae. Our study provides evidence that de novo loss-of-function mutations in CHD2 are a cause of epileptic encephalopathy with generalized seizures. "	"SPATA12 and its possible role in DNA damage induced by ultraviolet-C. Our previous studies indicated that SPATA12, a novel spermatogenesis-associated gene, might be an inhibitor involved in spermatogenesis and tumorigenesis. To obtain a better understanding of the functions of SPATA12, a yeast two-hybrid screening system was used to search for interacting proteins, and chromodomain helicase DNA binding protein 2 (CHD2) was successfully identified. Bimolecular fluorescence complementation (BiFC) and subcellular co-localization assays further suggested a possible interaction between SPATA12 and CHD2 in the nuclei. CHD2 is known to be involved in the later stage of the DNA damage response pathway by influencing the transcriptional activity of p53. Thus, our hypothesis is that SPATA12 might play a role in DNA damage signaling. Western blotting results showed that SPATA12 expression could be induced in ultraviolet-C (UV-C) irradiated cells. Through reporter gene assays and the activator protein-1 (AP-1) decoy oligodeoxynucleotide method, we demonstrated that SPATA12 promoter activity could be up-regulated in response to UV-C radiation exposure and an AP-1 binding site in the SPATA12 promoter may have a role in transcriptional regulation of SPATA12. Using colony formation and host cell reactivation assays, it was demonstrated that SPATA12 might lead to inhibition of cellular proliferation in UV-C-irradiated DNA damage. Furthermore, SPATA12 was transfected into H1299, MCF-7 and HeLa cells, and flow cytometry (FCM) results suggested that there are some biological association between SPATA12 and p53 in UV-C-irradiated DNA damage. In addition, we investigated whether SPATA12 could up-regulate the expression of p53. Taken together, these findings indicate that SPATA12 could be induced under UV-C stress. During DNA damage process, AP-1 involves in the transcriptional up-regulation of SPATA12 in response to UV-C radiation and p53 involves in growth inhibitory effects of SPATA12 on UV-C irradiated cells. "	"De novo mutations in epileptic encephalopathies. Epileptic encephalopathies are a devastating group of severe childhood epilepsy disorders for which the cause is often unknown. Here we report a screen for de novo mutations in patients with two classical epileptic encephalopathies: infantile spasms (n = 149) and Lennox-Gastaut syndrome (n = 115). We sequenced the exomes of 264 probands, and their parents, and confirmed 329 de novo mutations. A likelihood analysis showed a significant excess of de novo mutations in the ∼4,000 genes that are the most intolerant to functional genetic variation in the human population (P = 2.9 × 10(-3)). Among these are GABRB3, with de novo mutations in four patients, and ALG13, with the same de novo mutation in two patients; both genes show clear statistical evidence of association with epileptic encephalopathy. Given the relevant site-specific mutation rates, the probabilities of these outcomes occurring by chance are P = 4.1 × 10(-10) and P = 7.8 × 10(-12), respectively. Other genes with de novo mutations in this cohort include CACNA1A, CHD2, FLNA, GABRA1, GRIN1, GRIN2B, HNRNPU, IQSEC2, MTOR and NEDD4L. Finally, we show that the de novo mutations observed are enriched in specific gene sets including genes regulated by the fragile X protein (P &lt; 10(-8)), as has been reported previously for autism spectrum disorders. "	"Catalog of mRNA expression patterns for DNA methylating and demethylating genes in developing mouse lower urinary tract. The mouse prostate develops from a component of the lower urinary tract (LUT) known as the urogenital sinus (UGS). This process requires androgens and signaling between mesenchyme and epithelium. Little is known about DNA methylation during prostate development, including which factors are expressed, whether their expression changes over time, and if DNA methylation contributes to androgen signaling or influences signaling between mesenchyme and epithelium. We used in situ hybridization to evaluate the spatial and temporal expression pattern of mRNAs which encode proteins responsible for establishing, maintaining or remodeling DNA methylation. These include DNA methyltransferases, DNA deaminases, DNA glycosylases, base excision repair and mismatch repair pathway members. The mRNA expression patterns were compared between male and female LUT prior to prostatic bud formation (14.5 days post coitus (dpc)), during prostatic bud formation (17.5 dpc) and during prostatic branching morphogenesis (postnatal day (P) 5). We found dramatic changes in the patterns of these mRNAs over the course of prostate development and identified examples of sexually dimorphic mRNA expression. Future investigation into how DNA methylation patterns are established, maintained and remodeled during the course of embryonic prostatic bud formation may provide insight into prostate morphogenesis and disease."	"Protein conformational exchange measured by 1H R1ρ relaxation dispersion of methyl groups. Activated dynamics plays a central role in protein function, where transitions between distinct conformations often underlie the switching between active and inactive states. The characteristic time scales of these transitions typically fall in the microsecond to millisecond range, which is amenable to investigations by NMR relaxation dispersion experiments. Processes at the faster end of this range are more challenging to study, because higher RF field strengths are required to achieve refocusing of the exchanging magnetization. Here we describe a rotating-frame relaxation dispersion experiment for (1)H spins in methyl (13)CHD2 groups, which improves the characterization of fast exchange processes. The influence of (1)H-(1)H rotating-frame nuclear Overhauser effects (ROE) is shown to be negligible, based on a comparison of R 1ρ relaxation data acquired with tilt angles of 90° and 35°, in which the ROE is maximal and minimal, respectively, and on samples containing different (1)H densities surrounding the monitored methyl groups. The method was applied to ubiquitin and the apo form of calmodulin. We find that ubiquitin does not exhibit any (1)H relaxation dispersion of its methyl groups at 10 or 25 °C. By contrast, calmodulin shows significant conformational exchange of the methionine methyl groups in its C-terminal domain, as previously demonstrated by (1)H and (13)C CPMG experiments. The present R 1ρ experiment extends the relaxation dispersion profile towards higher refocusing frequencies, which improves the definition of the exchange correlation time, compared to previous results. "	"Targeted resequencing in epileptic encephalopathies identifies de novo mutations in CHD2 and SYNGAP1. Epileptic encephalopathies are a devastating group of epilepsies with poor prognosis, of which the majority are of unknown etiology. We perform targeted massively parallel resequencing of 19 known and 46 candidate genes for epileptic encephalopathy in 500 affected individuals (cases) to identify new genes involved and to investigate the phenotypic spectrum associated with mutations in known genes. Overall, we identified pathogenic mutations in 10% of our cohort. Six of the 46 candidate genes had 1 or more pathogenic variants, collectively accounting for 3% of our cohort. We show that de novo CHD2 and SYNGAP1 mutations are new causes of epileptic encephalopathies, accounting for 1.2% and 1% of cases, respectively. We also expand the phenotypic spectra explained by SCN1A, SCN2A and SCN8A mutations. To our knowledge, this is the largest cohort of cases with epileptic encephalopathies to undergo targeted resequencing. Implementation of this rapid and efficient method will change diagnosis and understanding of the molecular etiologies of these disorders. "	"Transcriptional response of the bovine endometrium and embryo to endometrial polymorphonuclear neutrophil infiltration as an indicator of subclinical inflammation of the uterine environment. The aim of the present study was to analyse the effect of subclinical endometritis on endometrial and embryonic gene expression. A total of 49 cows at either Day 0 or Day 7 of the oestrous cycle (62-83 days post partum) following superovulation were classified as having subclinical endometritis (SE-0, SE-7) or a healthy endometrium (HE-0, HE-7) on the basis of endometrial cytological evaluation. Endometrial samples and associated embryos were subjected to global transcriptome analysis using the Bovine GeneChip (Affymetrix, Santa Clara, CA, USA) and aberrant transcript profiles were observed in SE-0 and SE-7 cows. At Day 0, 10 transcripts were found to be differentially expressed in endometrial samples. Specifically, the PDZK1, PXDN, DDHD2, GPLD1 and SULT1B1 genes were downregulated, whereas the PKIB, LOC534256, BT29392, LYZ and S100A14 genes were upregulated in SE-0 cows. Similarly, 11 transcripts were found to be differentially regulated on Day 7. Of these, GNPTG, BOLA-DQA5, CHD2, LOC541226, VCAM1 and ARHGEF2 were found to be downregulated, whereas PSTPIP2, BT236441 and MGC166084 were upregulated in SE-7 cows. Accordingly, endometrial health status affected the number of flushed, transferable embryos. In all, 20 genes were differentially regulated in blastocysts derived from HE-7 and SE-7 cows. Of these, GZMK, TCEAL4, MYL7, ADD3 and THEM50B were upregulated, whereas NUDCD2, MYO1E, BZW1, EHD4 and GZMB were downregulated. In conclusion, endometrial polymorphonuclear neutrophil infiltration as an indicator of subclinical endometritis is associated with changes in endometrial gene expression patterns, including genes involved in cell adhesion and immune modulation. Consequently, subclinical endometritis affects gene expression in embryos, including the expression of genes related to membrane stability, the cell cycle and apoptosis."	"Chd2 interacts with H3.3 to determine myogenic cell fate. Cell differentiation is mediated by lineage-determining transcription factors. We show that chromodomain helicase DNA-binding domain 2 (Chd2), a SNF2 chromatin remodelling enzyme family member, interacts with MyoD and myogenic gene regulatory sequences to specifically mark these loci via deposition of the histone variant H3.3 prior to cell differentiation. Directed and genome-wide analysis of endogenous H3.3 incorporation demonstrates that knockdown of Chd2 prevents H3.3 deposition at differentiation-dependent, but not housekeeping, genes and inhibits myogenic gene activation. The data indicate that MyoD determines cell fate and facilitates differentiation-dependent gene expression through Chd2-dependent deposition of H3.3 at myogenic loci prior to differentiation."	"Molecular basis of pregnancy-induced breast cancer prevention. Reduction in breast cancer risk is associated with elevated circulating levels of human chorionic gonadotropin (hCG) during the first trimester of gestation. The knowledge that hCG also modifies the genomic signature of breast epithelial cells, from highly susceptible to refractory, to undergo neoplastic transformation, and also exerts both preventive and therapeutic effects on chemically induced mammary cancer, lead us to select this hormone for inducing chromatin remodeling in breast epithelial cells as a surrogate end point of complete differentiation and cancer prevention. We have found that chromatin remodeling is the driving force of the differences between the nulliparous and parous breast. In the parous breast, the epithelial cells have a condensed chromatin and increased reactivity with anti-H3K9me2 [di-methyl histone 3 (H3) (Lysine 9)] and H3K27me3 antibodies. This is accompanied by upregulation of noncoding RNA (ncRNA) elements including X2-inactive specific transcript (XIST) and chromatin remodeling genes, such as chromodomain helicase DNA-binding protein 2 (CHD2) and the chromobox homolog 3 (CBX3), whose products are required for controlling recruitment of protein/protein or DNA/protein interactions Another important gene upregulated in the parous breast epithelial cells is the histone-lysine N-methyltransferase or enhancer of zeste homolog 2 (EZH2), a member of the polycomb group (PcG) forming multimeric protein complexes that maintains the transcriptional repressive state of genes over successive cell generations. The fact that recent studies indicate that ncRNAs recruit PcG complexes to the locus of transcription or to sites located elsewhere in the genome cause us to postulate that the increased chromatin condensation in the parous breast has been initiated by ncRNAs, a postulate supported by the observed upregulation of several ncRNAs that included the XIST. The identification of a specific genomic signature of pregnancy has uncovered a novel tool that will serve as a surrogate biomarker for testing new chemopreventive agents and will significantly advance the field of cancer prevention. The clinical impact of this work is that it validates in an experimental system the genomic signature of prevention identified in the human parous breast and establish the bases for the use of the hormone hCG in the prevention of breast cancer, an approach that has not been fully developed until now. "	"Chromodomain helicase DNA-binding protein 2 affects the repair of X-ray and UV-induced DNA damage. Eukaryotic cells have evolved a variety of parallel and redundant DNA damage response pathways that function in a coordinated fashion to prevent the fixation of DNA damage as mutations. Despite the wealth of knowledge on DNA damage signaling on downstream cellular events, the mechanisms of DNA damage recognition, DNA repair as well as DNA damage signaling in the context of chromatin is poorly understood. Chromodomain helicase DNA-binding proteins (CHD) belong to a group of highly conserved chromatin remodeling proteins that are implicated in regulation of transcription. In an effort to understand the physiological role of one of the CHD members in a mammalian model system, we developed a mutant mouse model for the Chd2 gene. The Chd2 mutant mice are highly susceptible to spontaneous lymphoid tumor formation. In this study, we present evidence that the Chd2 mutant cells are defective in their ability to repair DNA damage induced by ionizing and ultraviolet radiation. Consistent with the role of Chd2 in regulating DNA damage responses, the Chd2 mutant cells are also sensitive to DNA damaging agents in clonogenic assays. In summary, our data suggest that the Chd2 protein is involved in regulating the DNA damage responses at the chromatin level."	"Deletion of the RMGA and CHD2 genes in a child with epilepsy and mental deficiency. We describe a novel chromosome microdeletion at 15q26.1 detected by oligo-array-CGH in a 6-year-old girl presenting with global development delay, epilepsy, autistic behavior and facial dysmorphisms. Although these features are often present in Angelman syndrome, no alterations were present in the methylation pattern of the Prader-Willi-Angelman critical region. The deletion encompasses only 2 genes: CHD2, which is part of a gene family already involved in CHARGE syndrome, and RGMA which exerts a negative control on axon growth. Deletion of either or both genes could cause the phenotype of this patient. These results provide a further chromosome region requiring evaluation in patients presenting Angelman features."	"Four out of eight genes in a mouse chromosome 7 congenic donor region are candidate obesity genes. We previously identified a region of mouse chromosome 7 that influences body fat mass in F2 littermates of congenic × background intercrosses. Current analyses revealed that alleles in the donor region of the subcongenic B6.C-D7Mit318 (318) promoted a twofold increase in adiposity in homozygous lines of 318 compared with background C57BL/6ByJ (B6By) mice. Parent-of-origin effects were discounted through cross-fostering studies and an F1 reciprocal cross. Mapping of the donor region revealed that it has a maximal size of 2.8 Mb (minimum 1.8 Mb) and contains a maximum of eight protein coding genes. Quantitative PCR in whole brain, liver, and gonadal white adipose tissue (GWAT) revealed differential expression between genotypes for three genes in females and two genes in males. Alpha-2,8-sialyltransferase 8B (St8sia2) showed reduced 318 mRNA levels in brain for females and males and in GWAT for females only. Both sexes of 318 mice had reduced Repulsive guidance molecule-a (Rgma) expression in GWAT. In brain, Family with sequence similarity 174 member b (Fam174b) had increased expression in 318 females, whereas Chromodomain helicase DNA binding protein 2 (Chd2-2) had reduced expression in 318 males. No donor region genes were differentially expressed in liver. Sequence analysis of coding exons for all genes in the 318 donor region revealed only one single nucleotide polymorphism that produced a nonsynonymous missense mutation, Gln7Pro, in Fam174b. Our findings highlight the difficulty of using expression and sequence to identify quantitative trait genes underlying obesity even in small genomic regions."	"Genetic and expressional alterations of CHD genes in gastric and colorectal cancers. Chromodomain helicase DNA-binding protein (CHD) is a regulator of the chromatin remodelling process. The aim was to determine the CHD1, CHD2, CHD3, CHD4, CHD7, CHD8 and CHD9 mutational status of mononucleotide repeats in gastric and colorectal cancers with microsatellite instability (MSI). The repeats were determined in 28 gastric cancers (GCs) with high MSI (MSI-H), 45 GCs with low MSI (MSI-L)/stable MSI (MSS), 35 colorectal cancers (CRCs) with MSI-H and 45 CRCs with MSI-L/MSS by single-strand conformation polymorphism analysis. CHD4 and CHD8 expression was also examined in GCs and CRCs by immunohistochemistry. CHD1, CHD2, CHD3, CHD4, CHD7, CHD8 and CHD9 mutations were found in five, 19, three, five, seven, 10 and seven cancers, respectively. They were detected in MSI-H cancers, but not in MSI-L/MSS cancers. Loss of CHD4 expression was observed in 56.4% of the GCs and 55.7% of the CRCs, and loss of CHD8 was observed in 35.7% of the GCs and 28.6% of the CRCs. The cancers with CHD4 and CHD8 mutations showed loss of CHD4 and CHD8 expression, respectively. Frameshift mutation and loss of expression of CHD genes are common in GCs and CRCs with MSI-H.These alterations might contribute to cancer pathogenesis by deregulating CHD-mediated chromatin remodelling."	"Generation of a rat monoclonal antibody specific for CHD2. CHD2 is a member of the CHD family that contains chromodomain, helicase domain as well as DNA-binding domain. The CHD family is involved in gene expression and transcription by ATP-dependent chromatin remodeling. Analysis of mutant mouse revealed that CHD2 is involved in development as well as hematopoiesis, which suggests the involvement of CHD2 in gene expression. However, CHD2 has not yet been analyzed biochemically as there is no specific antibody against it. Here, we report on the establishment of specific monoclonal antibody (MAb) against CHD2 utilizing a rat medial iliac lymph node method. Through cell immunostaining utilizing established MAb to CHD2, we confirmed that CHD2 was localized in euchromatin. Additionally, IP-Western revealed that the expression level of full-length CHD2 did not change during the differentiation stage. Additionally, a specific signal was confirmed around 95 kDa at the undifferentiated stage. This clearly indicated that CHD2 was involved in specific gene expression at this stage. Thus, this antibody can contribute to elucidating the function of CHD2 in cell expression."	"Threshold photoelectron spectroscopy of the methyl radical isotopomers, CH3, CH2D, CHD2 and CD3: synergy between VUV synchrotron radiation experiments and explicitly correlated coupled cluster calculations. Threshold photoelectron spectra (TPES) of the isotopomers of the methyl radical (CH(3), CH(2)D, CHD(2), and CD(3)) have been recorded in the 9.5-10.5 eV VUV photon energy range using third generation synchrotron radiation to investigate the vibrational spectroscopy of the corresponding cations at a 7-11 meV resolution. A threshold photoelectron-photoion coincidence (TPEPICO) spectrometer based on velocity map imaging and Wiley-McLaren time-of-flight has been used to simultaneously record the TPES of several radical species produced in a Ar-seeded beam by dc flash-pyrolysis of nitromethane (CH(x)D(y)NO(2), x + y = 3). Vibrational bands belonging to the symmetric stretching and out-of-plane bending modes have been observed and P, Q, and R branches have been identified in the analysis of the rotational profiles. Vibrational configuration interaction (VCI), in conjunction with near-equilibrium potential energy surfaces calculated by the explicitly correlated coupled cluster method CCSD(T*)-F12a, is used to calculate vibrational frequencies for the four radical isotopomers and the corresponding cations. Agreement with data from high-resolution IR spectroscopy is very good and a large number of predictions is made. In particular, the calculated wavenumbers for the out-of-plane bending vibrations, nu(2)(CH(3)(+)) = 1404 cm(-1), nu(4)(CH(2)D(+)) = 1308 cm(-1), nu(4)(CHD(2)(+)) = 1205 cm(-1), and nu(2)(CD(3)(+)) = 1090 cm(-1), should be accurate to ca. 2 cm(-1). Additionally, computed Franck-Condon factors are used to estimate the importance of autoionization relative to direct ionization. The chosen models globally account for the observed transitions, but in contrast to PES spectroscopy, evidence for rotational and vibrational autoionization is found. It is shown that state-selected methyl cations can be produced by TPEPICO spectroscopy for ion-molecule reaction studies, which are very important for the understanding of the planetary ionosphere chemistry."	"Diet-induced gene expression of isolated pancreatic islets from a polygenic mouse model of the metabolic syndrome. Numerous new genes have recently been identified in genome-wide association studies for type 2 diabetes. Most are highly expressed in beta cells and presumably play important roles in their function. However, these genes account for only a small proportion of total risk and there are likely to be additional candidate genes not detected by current methodology. We therefore investigated islets from the polygenic New Zealand mouse (NZL) model of diet-induced beta cell dysfunction to identify novel genes and pathways that may play a role in the pathogenesis of diabetes. NZL mice were fed a diabetogenic high-fat diet (HF) or a diabetes-protective carbohydrate-free HF diet (CHF). Pancreatic islets were isolated by laser capture microdissection (LCM) and subjected to genome-wide transcriptome analyses. In the prediabetic state, 2,109 islet transcripts were differentially regulated (&gt;1.5-fold) between HF and CHF diets. Of the genes identified, 39 (e.g. Cacna1d, Chd2, Clip2, Igf2bp2, Dach1, Tspan8) correlated with data from the Diabetes Genetics Initiative and Wellcome Trust Case Control Consortium genome-wide scans for type 2 diabetes, thus validating our approach. HF diet induced early changes in gene expression associated with increased cell-cycle progression, proliferation and differentiation of islet cells, and oxidative stress (e.g. Cdkn1b, Tmem27, Pax6, Cat, Prdx4 and Txnip). In addition, pathway analysis identified oxidative phosphorylation as the predominant gene-set that was significantly upregulated in response to the diabetogenic HF diet. We demonstrated that LCM of pancreatic islet cells in combination with transcriptional profiling can be successfully used to identify novel candidate genes for diabetes. Our data strongly implicate glucose-induced oxidative stress in disease progression."	"CH stretching excitation in the early barrier F + CHD3 reaction inhibits CH bond cleavage. Most studies of the impact of vibrational excitation on molecular reactivity have focused on reactions with a late barrier (that is, a transition state resembling the products). For an early barrier reaction, conventional wisdom predicts that a reactant's vibration should not couple efficiently to the reaction coordinate and thus should have little impact on the outcome. We report here an in-depth experimental study of the reactivity effects exerted by reactant C-H stretching excitation in a prototypical early-barrier reaction, F + CHD3. Rather counterintuitively, we find that the vibration hinders the overall reaction rate, inhibits scission of the excited bond itself (favoring the DF + CHD2 product channel), and influences the coproduct vibrational distribution despite being conserved in the CHD2 product. The results highlight substantial gaps in our predictive framework for state-selective polyatomic reactivity."	"A mutation in the mouse Chd2 chromatin remodeling enzyme results in a complex renal phenotype. Glomerular diseases are the third leading cause of kidney failure worldwide, behind only diabetes and hypertension. The molecular mechanisms underlying the cause of glomerular diseases are still largely unknown. The identification and characterization of new molecules associated with glomerular function should provide new insights into understanding the diverse group of glomerular diseases. The Chd2 protein belongs to a family of enzymes involved in ATP-dependent chromatin remodeling, suggesting that it likely functions as an epigenetic regulator of gene expression via the modification of chromatin structure. In this study, we present a detailed histomorphologic characterization of mice containing a mutation in the chromodomain helicase DNA-binding protein 2 (Chd2). We show that Chd2-mutant mice present with glomerulopathy, proteinuria, and significantly impaired kidney function. Additionally, serum analysis revealed decreased hemoglobin and hematocrit levels in Chd2-mutant mice, suggesting that the glomerulopathy observed in these mice is associated with anemia. Collectively, the data suggest a role for the Chd2 protein in the maintenance of kidney function."	"Role of chromodomain helicase DNA-binding protein 2 in DNA damage response signaling and tumorigenesis. The chromodomain helicase DNA-binding proteins (CHDs) are known to affect transcription through their ability to remodel chromatin and modulate histone deacetylation. In an effort to understand the functional role of the CHD2 in mammals, we have generated a Chd2 mutant mouse model. Remarkably, the Chd2 protein appears to play a critical role in the development, hematopoiesis and tumor suppression. The Chd2 heterozygous mutant mice exhibit increased extramedullary hematopoiesis and susceptibility to lymphomas. At the cellular level, Chd2 mutants are defective in hematopoietic stem cell differentiation, accumulate higher levels of the chromatin-associated DNA damage response mediator, gamma H2AX, and exhibit an aberrant DNA damage response after X-ray irradiation. Our data suggest a direct role for the chromatin remodeling protein in DNA damage signaling and genome stability maintenance."	"State-to-state dynamics analysis of the F + CHD3 reaction: a quasiclassical trajectory study. An exhaustive state-to-state dynamics study was performed to analyze the F + CHD3 --&gt; FD(nu', j') + CHD2(nu) gas-phase abstraction reaction. Quasiclassical trajectory (QCT) calculations, including corrections to avoid zero-point energy leakage along the trajectories, were performed at different collision energies on an analytical potential energy surface (PES-2006) recently developed by our group. Whereas the CHD2 coproduct appears vibrationally and rotationally cold, most of the available energy appears as FD(nu') product vibrational energy, peaking at nu' = 2 and nu' = 3, with the population in the latter level growing as the energy increases. The excitation function rises from the threshold of the reaction and then levels off at higher energies, with the maximum contribution from the FD(nu' = 3) level. The state-specific FD(nu') scattering distributions correlated with the coproduct CHD2 in the nu4 = 2 and nu3 = 1 states, at different collision energies, show a steady change from backward to forward scattering as the energy increases. This similar behavior for the two coproduct vibrational states, nu4 = 2 and nu3 = 1, agrees qualitatively with the experimental measurements. Comparison with theoretical and experimental results for the isotopic analogues, F + CH4 and F + CD4, shows that the title reaction presents a direct mechanism, similar to the perdeuterated reaction, but contrasts with that of the F + CH4 reaction. These results for the dynamics of different isotopic variants, always in qualitative and sometimes in quantitative agreement with experiment, show the capacity of the PES-2006 surface to correctly describe the title reaction, even though there are differences that could be due to deficiencies of the PES but also to the known limitations of the classical treatment in the QCT method."	"Disruption of chromodomain helicase DNA binding protein 2 (CHD2) causes scoliosis. Herein we characterize an apparently balanced de novo translocation, t(X;15)(p22.2;q26.1)dn, in a female patient with scoliosis, hirsutism, learning problems, and developmental delay (DGAP025). Other clinical findings include a high-arched palate, 2-3 syndactyly of the toes, and mildly elevated serum testosterone. No known or predicted genes are disrupted by the Xp22.2 breakpoint. The 15q26.1 breakpoint disrupts chromodomain helicase DNA binding protein 2 (CHD2). Another member of the chromatin-remodeling gene family, CHD7, has been associated with a defined constellation of congenital anomalies known as coloboma, heart anomaly, choanal atresia, mental retardation, genital and ear anomalies syndrome (CHARGE) and idiopathic scoliosis. Monosomy of 15q26 also has been associated with a spectrum of congenital abnormalities and growth retardation that overlaps with those of DGAP025. To provide a biological correlate, we characterized a mutant mouse model with Chd2 disruption that is associated with embryonic and perinatal lethality. Expression analysis indicated that Chd2 is expressed in the heart, forebrain, extremities, facial and dorsal regions during specific times of embryonic development. Chd2(+/m) mice showed pronounced lordokyphosis, reduced body fat, postnatal runting, and growth retardation. These data suggest that haploinsufficiency for CHD2 could result in a complex of abnormal human phenotypes that includes scoliosis and possibly features similar to CHARGE syndrome."	"Bond-selective control of a heterogeneously catalyzed reaction. Energy redistribution, including the many phonon-assisted and electronically assisted energy-exchange processes at a gas-metal interface, can hamper vibrationally mediated selectivity in chemical reactions. We establish that these limitations do not prevent bond-selective control of a heterogeneously catalyzed reaction. State-resolved gas-surface scattering measurements show that the nu1 C-H stretch vibration in trideuteromethane (CHD3) selectively activates C-H bond cleavage on a Ni(111) surface. Isotope-resolved detection reveals a CD3:CHD2 product ratio &gt; 30:1, which contrasts with the 1:3 ratio for an isoenergetic ensemble of CHD3 whose vibrations are statistically populated. Recent studies of vibrational energy redistribution in the gas and condensed phases suggest that other gas-surface reactions with similar vibrational energy flow dynamics might also be candidates for such bond-selective control."	"Role of the C-H stretch mode excitation in the dynamics of the Cl + CHD3 reaction: a quasi-classical trajectory calculation. To analyze the effect of the C-H stretch mode excitation on the dynamics of the Cl + CHD3 gas-phase abstraction reaction, an exhaustive state-to-state dynamics study was performed. This reaction can evolve along two channels: H-abstraction, CD3 + ClH, and D-abstraction, CHD2 + ClD. On an analytical potential energy surface constructed previously by our group, named PES-2005, quasi-classical trajectory calculations were performed at a collision energy of 0.18 eV, including corrections to avoid zero-point energy leakage along the trajectories. First, strong coupling between different vibrational modes in the entry valley was observed; i.e., the reaction is vibrationally nonadiabatic. Second, for the ground-state CHD3(nu=0) reaction, the diatomic fragments appeared in their ground states, and the H- and D-abstraction reactions showed similar reactivities. However, when the reactivity per atom is considered, the H is three times more reactive than the D atom. Third, when the C-H stretch mode is excited by one quantum, CHD3(nu1=1), the H-abstraction is strongly favored, and the C-H stretch excitation is maintained in the product CHD2(nu1=1) + ClD channel; i.e., the reaction shows mode selectivity, reproducing the experimental evidence, and also the reactivity of the vibrational ground state is increased, in agreement with experiment. Fourth, the state-to-state angular distributions of the CD3 and CHD2 products showed the products to be practically sideways for the reactant ground state, while the C-H excitation yielded a more forward scattering, reproducing the experimental data. The role of the zero-point energy correction was also analyzed, and we find that the dynamics results are very sensitive on how the ZPE issue is treated. Finally, a comparison is made with the similar H + CHD3(nu1=0,1) and Cl + CH4(nu1=0,1) reactions."	"A detailed inventory of DNA copy number alterations in four commonly used Hodgkin's lymphoma cell lines. Classical Hodgkin's lymphoma (cHL) is a common malignant lymphoma characterized by the presence of large, usually multinucleated malignant Hodgkin and Reed Sternberg (HRS) cells which are thought to be derived from germinal center B-cells. In cHL, the HRS cells constitute less than 1% of the tumor volume; consequently the profile of genetic aberrations in cHL is still poorly understood. In this study, we subjected four commonly used cHL cell lines to array comparative genomic hybridization (aCGH) in order to delineate known chromosomal aberrations in more detail and to search for small hitherto undetected genomic imbalances. The aCGH profiles of the four cell lines tested confirmed the complex patterns of rearrangements previously demonstrated with M-FISH and chromosomal CGH (cCGH). Importantly, aCGH allowed a much more accurate delineation of imbalances as compared to previous studies performed at chromosomal level of resolution. Furthermore, we detected 35 hitherto undetected aberrations including a homozygous deletion of chromosomal region 15q26.2 in the cell line HDLM2 encompasing RGMA and CHD2 and an amplification of the STAT6 gene in cell line L1236 leading to STAT6 overexpression. Finally, in cell line KM-H2 we found a 2.35 Mb deletion at 16q12.1 putatively defining a small critical region for the recurrent 16q deletion in cHL. This region contains the CYLD gene, a known suppressor gene of the NF-mB pathway. aCGH was performed on four cHL cell lines leading to the improved delineation of known chromosomal imbalances and the detection of 35 hitherto undetected aberrations. More specifically, our results highlight STAT6 as a potential transcriptional target and identified RGMA, CHD2 and CYLD as candidate tumor suppressors in cHL."	"Quasi-classical trajectory calculations analyzing the dynamics of the C-H stretch mode excitation in the H+CHD3 reaction. A state-to-state dynamics study was performed at a collision energy of 1.53 eV to analyze the effect of the C-H stretch mode excitation on the dynamics of the gas-phase H+CHD3 reaction, which can evolve along two channels, H-abstraction, CD3+H2, and D-abstraction, CHD2+HD. Quasi-classical trajectory calculations were performed on an analytical potential energy surface constructed previously by our group. First, strong coupling between different vibrational modes in the entry channel was observed; i.e., the reaction is non-adiabatic. Second, we found that the C-H stretch mode excitation has little influence on the product rotational distributions for both channels, and on the vibrational distribution for the CD3+H2 channel. However, it has significant influence on the product vibrational distribution for the CHD2+HD channel, where the C-H stretch excitation is maintained in the products, i.e., the reaction shows mode selectivity, reproducing the experimental evidence. Third, the C-H stretch excitation by one quantum increases the reactivity of the vibrational ground-state, in agreement with experiment. Fourth, the state-to-state angular distributions of the CD3 and CHD2 products are reported, finding that for the reactant ground-state the products are practically sideways, whereas the C-H excitation yields a more forward scattering."	"Mammary tumor modifiers in BALB/cJ mice heterozygous for p53. BALB/c mice are predisposed to developing spontaneous mammary tumors, which are further increased in a p53 heterozygous state. C57BL/6J mice are resistant to induced mammary tumors and develop less than 1% mammary tumors in both wild-type and p53+/- states. To map modifiers of mammary tumorigenesis, we have established F1 and F2 crosses and backcrosses to BALB/cJ (N2-BALB/cJ) and C57BL/6J (N2-C57BL/6J) strains. All cohorts developed mammary carcinomas in p53+/- females, suggesting that multiple loci dominantly and recessively contributed to mammary tumorigenesis. We mapped two modifiers of mammary tumorigenesis in the BALB/cJ strain. Mtsm1 (mammary tumor susceptibility modifier), a dominant-acting modifier, is located on chromosome 7. Mtsm1 is suggestive for linkage to mammary tumorigenesis (p = 0.001). We have analyzed the Mtsm1 region to locate candidate genes by comparing it to a rat modifier region, Mcs3, which shares syntenic conservation with Mtsm1. Expression data and SNPs were also taken into account. Five potential candidate genes within Mtsm1 are Aldh1a3, Chd2, Nipa2, Pcsk6, and Tubgcp5. The second modifier mapped is Mtsm2, a recessive-acting modifier. Mtsm2 is located on chromosome X and is significantly linked to mammary tumorigenesis (p = 1.03 x 10(-7))."	"Molecular implications of evolutionary differences in CHD double chromodomains. Double chromodomains occur in CHD proteins, which are ATP-dependent chromatin remodeling factors implicated in RNA polymerase II transcription regulation. Biochemical studies suggest important differences in the histone H3 tail binding of different CHD chromodomains. In human and Drosophila, CHD1 double chromodomains bind lysine 4-methylated histone H3 tail, which is a hallmark of transcriptionally active chromatin in all eukaryotes. Here, we present the crystal structure of the yeast CHD1 double chromodomains, and pinpoint their differences with that of the human CHD1 double chromodomains. The most conserved residues in these double chromodomains are the two chromoboxes that orient adjacently. Only a subset of CHD chromoboxes can form an aromatic cage for methyllysine binding, and methyllysine binding requires correctly oriented inserts. These factors preclude yeast CHD1 double chromodomains from interacting with the histone H3 tail. Despite great sequence similarity between the human CHD1 and CHD2 chromodomains, variation within an insert likely prevents CHD2 double chromodomains from binding lysine 4-methylated histone H3 tail as efficiently as in CHD1. By using the available structural and biochemical data we highlight the evolutionary specialization of CHD double chromodomains, and provide insights about their targeting capacities."	"A gene signature of 8 genes could identify the risk of recurrence and progression in Dukes' B colon cancer patients. The benefit of postoperative adjuvant chemotherapy in patients with Dukes' B colorectal cancer is still uncertain and its routine use is not recommended. The five-year relapse rate is approximately 25-40% and the identification of patients at high risk of recurrence would represent an important strategy for the use of adjuvant chemotherapy. We retrospectively analyzed gene expression profiles in frozen tumor specimens from patients with Dukes' B colorectal cancer by using high density oligonucleotide microarrays. Our results show a subset of 48 genes differentially expressed with an associated probability &lt;0.001 in the t-test. Another statistical procedure based on the Fisher criterion resulted in 11 genes able to separate both groups. We selected the 8 genes present in both subsets. The differential expression of five genes (CHD2, RPS5, ZNF148, BRI3 and MGC23401) in colon cancer progression was confirmed by real-time PCR in an independent set of patients of Dukes' B and C stages."	"High-resolution ESR study of the H...CH3, H...CHD2, D...CH2D, and D...CD3 radical pairs in solid argon. High-resolution electron spin resonance (ESR) spectra of radical pairs of a hydrogen atom that coupled with a methyl radical (H...CH3, H...CHD2, D...CH2D, and D...CD3) were observed for X-ray irradiated solid argon containing selectively deuterium-labeled methanes, CH4, CH2D2, and CD4, at 4.2 K. The double-quartet 1H-hyperfine (hf) splittings of ca. 26 and 1.16 mT at the Deltam(s) = +/-1 and Deltam(s) = +/-2 transitions, which are one-half of the isotropic 1H-hf splittings of an isolated H-atom and a CH3 radical, were attributed to the H...CH3 pair. The 1H-hf splittings at the Deltam(s) = +/-1 transition were further split by the fine structure (fs) due to the electron dipole-dipole coupling. Because of the high-resolution spectra, three different sets of the fs splitting, d, are clearly resolved in the spectra of both the H...CH3 and the D...CD3 pairs. The separation distance (inter-spin distance), R, between the H-atom and the CH3 radical being in pairs was evaluated from the d values based on a point-dipole interaction model. For the case of the H...CH3 pair, the observed d values of 4.2, 4.9, and 5.1 mT yield the respective separations, R = 0.87, 0.83, and 0.82 nm, to probe the trapping site of the pair in an Ar crystalline lattice (fcc). For the pair with R = 0.87 nm, for example, we propose that the CH3 radical occupies a substitutional site and the counter H-atom occupies either the interstitial tetrahedral sites directed away from the CH3 radicals by a distance of 0.87 nm or the interstitial octahedral sites by a distance of 0.88 nm. When a mixture of CH4 and CD4 in a solid Ar matrix was irradiated, only two different radical pairs, H...CH3 and D...CD3, were observed. This result clearly demonstrates that the hydrogen atom and methyl radicals, which undergo a pairwise trapping, can originate from the same methane molecule."	"[Chronotropic incompetence predicts angiographic severity in patients with coronary artery disease]. To investigate the relationship between the chronotropic incompetence and angiographic severity in patients with coronary artery disease (CAD). Coronary angiography was performed in 130 patients suspected for CAD and angiographic severity of coronary artery was quantitated by Duke score and Gensini score. Patients were divided to 4 groups: non-CAD group (39 patients), CAD group with one coronary artery involved (CHD1 group, 30 patients), CHD group with two coronary arteries involved (CHD2 group, 31 patients) and CAD group with three coronary arteries involved (CHD3 group, 30 patients). One month before coronary angiography, symptom-limited exercise treadmill tests were made and the ratio of heart rate reserve (HRR) and the percent maximal age-predicted heart rate achieved (rHR) were measured. rHR and HRR were significantly lower in CHD2 group (rHR 0.79+/-0.08, HRR 0.63+/-0.11) and CHD3 (rHR 0.78+/-0.07, HRR 0.59+/-0.12) than that in non-CHD group (rHR 0.89+/-0.06, HRR 0.80+/-0.10) and CHD1 group (rHR 0.86+/-0.08, HRR 0.74+/-0.15, all P&lt;0.05). rHR and HRR also significantly correlated with Duke score (r=-0.554, -0.578, all P&lt;0.01) and Gennisi score (r=-0.453, -0.467, all P&lt;0.01). CHD incidence rate was 75% in patients with positive rHR (or HRR) but without ST lowering during exercise. Chronotropic incompetence are negatively related to angiographic coronary severities and thus predict angiographic coronary severities. There is a high CAD incidence in patients with positive rHR (or HRR) but no ST lowering during symptom-limited exercise treadmill tests."	"CH-stretching overtone spectra of a fast rotating methyl group: 2-CH3 and 2-CHD2 pyridines. The CH-stretching overtone spectra of the methyl group in gaseous 2-CH(3) and 2-CHD(2) methylpyridines are recorded with conventional Fourier transform near-infrared spectroscopy in the Deltav(CH) = 1-4 regions and by intracavity laser photoacoustic spectroscopy in the Deltav(CH) = 5 and 6 regions. All spectra exhibit a complex structure. They are analyzed with a theoretical model that incorporates, within the adiabatic approximation, the coupling of the anharmonic CH-stretch vibrations described by Morse potentials with the quasifree internal rotation of the methyl group and with isoenergetic combination states involving the six angle deformation modes of the methyl group. The molecular vibrations are calculated in terms of redundant internal coordinates in an unambiguous canonical form. A simultaneous analysis of different isotopic derivatives is thus achieved. The Fermi resonance coupling parameters are those previously determined for toluene. The technique of diabatic rotations is used to disentangle the multiple avoided crossings occurring along the internal rotation coordinate theta in the calculated spectra, which become rapidly very dense owing to the low symmetry of the system. This simulation is successful in reproducing the experimental spectra. In addition, the transferrability of the Fermi resonance coupling parameters between two parent molecules is demonstrated."	"Mutation of the SNF2 family member Chd2 affects mouse development and survival. The chromodomain helicase DNA-binding domain (Chd) proteins belong to the SNF2-like family of ATPases that function in chromatin remodeling and assembly. These proteins are characterized by the presence of tandem chromodomains and are further subdivided based on the presence or absence of additional structural motifs. The Chd1-Chd2 subfamily is distinguished by the presence of a DNA-binding domain that recognizes AT-rich sequence. Currently, there are no reports addressing the function of the Chd2 family member. Embryonic stem cells containing a retroviral gene-trap inserted at the Chd2 locus were utilized to generate mice expressing a Chd2 protein lacking the DNA-binding domain. This mutation in Chd2 resulted in a general growth delay in homozygous mutants late in embryogenesis and in perinatal lethality. Animals heterozygous for the mutation showed decreased neonatal viability and increased susceptibility to non-neoplastic lesions affecting most primary organs. In particular, approximately 85% of the heterozygotes showed gross kidney abnormalities. Our results demonstrate that mutation of Chd2 dramatically affects mammalian development and long-term survival."	"Array comparative genomic hybridization in patients with congenital diaphragmatic hernia: mapping of four CDH-critical regions and sequencing of candidate genes at 15q26.1-15q26.2. Congenital diaphragmatic hernia (CDH) is a common birth defect with a high mortality and morbidity. There have been few studies that have assessed copy number changes in CDH. We present array comparative genomic hybridization data for 29 CDH patients to identify and map chromosome aberrations in this disease. Three patients with 15q26.1-15q26.2 deletions had heterogeneous breakpoints that overlapped with the critical 4 Mb region previously delineated for CDH, confirming 15q26.1-15q26.2 as a critical region for CDH. The three other most compelling CDH-critical regions for genomic deletions based on these data and a literature review are located at chromosomes 8p23.1, 4p16.3-4pter, and 1q41-1q42.1. Based on these recurrent deletions at 15q26.1-15q26.2, we hypothesized that loss-of-function mutations in a gene or genes from this region could cause CDH and sequenced six candidate genes from this region in more than 100 patients with CDH. For three of these genes (CHD2, ARRDC4, and RGMA), we identified missense changes and that were not identified in normal controls; however, none of these alterations appeared unambiguously causal with CDH. These data suggest that CDH caused by chromosome deletions at 15q26.2 may arise because of a contiguous gene deletion syndrome or may have a multifactorial etiology. In addition, there is evidence for substantial genetic heterogeneity in CDH and diaphragmatic hernias can be non-penetrant in patients who have deletions involving CDH-critical regions."	"Ehlers-Danlos syndrome and periventricular nodular heterotopia in a Spanish family with a single FLNA mutation. The Ehlers-Danlos syndrome (EDS) comprises a group of hereditary connective tissue disorders. Periventricular nodular heterotopia (PNH) is a human neuronal migration disorder characterised by seizures and conglomerates of neural cells around the lateral ventricles of the brain, caused by FLNA mutations. FLNA encodes filamin A, an actin binding protein involved in cytoskeletal organisation. The amino-terminal actin binding domain (ABD) of filamins contains two tandem calponin homology domains, CHD1 and CHD2. To report clinical and genetic analyses in a Spanish family affected by a connective tissue disorder suggestive of EDS type III and PNH. A clinical and molecular study was undertaken in the three affected women. Clinical histories, physical and neurological examinations, brain magnetic resonance imaging studies, and skin biopsies were done. Genetic analysis of the FLNA gene was undertaken by direct sequencing and restriction fragment length polymorphism analysis. Mutation analysis of the FLNA gene resulted in the identification of a novel mutation in exon 3 (c.383C--&gt;T) segregating with the combination of both syndromes. This mutation results in a substitution of an alanine residue (A128V) in CHD1. The findings suggest that the Ala128Val mutation causes the dual EDS-PNH phenotype. This association constitutes a new variant within the EDS spectrum. This is the first description of a familial EDS-PNH association with a mutation in FLNA."	"Insight into binding of alkanes to transition metals from NMR spectroscopy of isomeric pentane and isotopically labeled alkane complexes. Alkane complexes of the type Cp'Re(CO)2(alkane) (Cp' = cyclopentadienyl or (isopropyl)cyclopentadienyl; alkane = isotopomers of n-pentane and cyclopentane) have been characterized using NMR spectroscopy following photolysis of Cp'Re(CO)3 in the appropriate alkane at 163-193 K. In the case of n-pentane, three different complexes are observed corresponding to binding of the three different types of carbon in this alkane. ROESY NMR experiments indicate that these isomeric complexes are slowly interconverting intramolecularly at 173 K. The order of the energetically preferred site of coordination is methylene (C2) approximately central methylene (C3) &gt; methyl (C1) but with a spread of &lt;0.2 kcal mol-1. Isotopic perturbation of resonance (IPR) experiments, conducted on several isotopomers of (i-PrCp)Re(CO)2(1-pentane), showed a large shielding of the 1H NMR chemical shift of the proton in a bound CHD2 moiety (delta -3.62) and CH2D (delta -2.64) compared with that of a bound CH3 moiety (delta -1.99). Likewise, the value of 1JCH for the coordinated methyl group of isotopomers of (i-PrCp)Re(CO)2(1-pentane) reduces in the order CH3 &gt; CH2D &gt; CHD2. This suggests that the alkane coordinates in an eta2-C,H fashion with a rapid exchange of bound hydrogen or deuterium within a methyl or methylene group, and that binding of a hydrogen atom is preferred over a deuterium by an amount of 0.23 +/- 0.03 kcal mol-1."	"Congenital diaphragmatic hernia and chromosome 15q26: determination of a candidate region by use of fluorescent in situ hybridization and array-based comparative genomic hybridization. Congenital diaphragmatic hernia (CDH) has an incidence of 1 in 3,000 births and a high mortality rate (33%-58%). Multifactorial inheritance, teratogenic agents, and genetic abnormalities have all been suggested as possible etiologic factors. To define candidate regions for CDH, we analyzed cytogenetic data collected on 200 CDH cases, of which 7% and 5% showed numerical and structural abnormalities, respectively. This study focused on the most frequent structural anomaly found: a deletion on chromosome 15q. We analyzed material from three of our patients and from four previously published patients with CDH and a 15q deletion. By using array-based comparative genomic hybridization and fluorescent in situ hybridization to determine the boundaries of the deletions and by including data from two individuals with terminal 15q deletions but without CDH, we were able to exclude a substantial portion of the telomeric region from the genetic etiology of this disorder. Moreover, one patient with CDH harbored a small interstitial deletion. Together, these findings allowed us to define a minimal deletion region of approximately 5 Mb at chromosome 15q26.1-26.2. The region contains four known genes, of which two--NR2F2 and CHD2--are particularly intriguing gene candidates for CDH."	"Effect of deuteration on some structural parameters of methyl groups in proteins as evaluated by residual dipolar couplings. One bond methyl 1H-13C and 13Cmethyl-13C scalar and residual dipolar couplings have been measured at sites in an 15N, 13C, approximately 50% 2H labeled sample of the B1 immunoglobulin binding domain of peptostreptococcal protein L to investigate changes in the structure of methyl groups in response to deuterium substitution. Both one bond methyl 1H-13C and 13Cmethyl-13C scalar coupling constants have been found to decrease slightly with increasing deuterium content. Previous studies have shown that 1H-13C couplings in methyl groups are exquisitely sensitive to electronic structure, with decreases in coupling values as a function of deuteration consistent with a slight lengthening of the remaining H-C bonds. Changes in the HmethylCmethylC angle are found to be small, with average differences on the order of 0.3+/-0.1 degrees and 0.4+/-0.2 degrees between CH3, CH2D and CH3, CHD2 isotopomers, respectively. Knowledge of methyl geometry is a prerequisite for the extraction of accurate dynamics parameters from spin relaxation studies involving these groups."	"Apolipoprotein E polymorphism in the early onset of coronary heart disease. To assess the relationship between apolipoprotein E (apoE) polymorphism and the early onset of coronary heart disease (CHD) and the effect of apoE on lipids and lipoproteins in healthy Chinese subjects. Sixty-eight patients with CHD younger than 55 years (CHD1), 136 patients with CHD older than 65 years (CHD2), and 136 healthy subjects were enrolled, and their plasma levels of triglyceride (TG), total cholesterol (TC) and high density lipoprotein cholesterol (HDL-C) were determined. The apoE genotypes were identified by polymerase chain reaction-restriction fragment length polymorphism. apoE 3/4 genotype and E4 allele frequency in the CHD1 group were higher than those in the CHD2 group and healthy subjects, while no differences were found between CHD2 and healthy subjects. Meanwhile, the plasma levels of TC and low density lipoprotein cholesterol (LDL-C) were higher in the CHD2 group than in both CHD1 group and healthy subjects. Each apoE isoprotein has variable TC and LDL-C levels that is E2 (E2/2 + E2/3) &lt; E3(E3/3) &lt; E4(E4/4 + E3/4). apoE is one of the genetic factors that affect TC and LDL-C levels, and apoE 4 has a very close relation to CHD, suggesting that apoE 4 is an independent genetic factor of the early onset of CHD."	"[Identification of partially deuterated exometabolites during culture of tea fungi in heavy water]. Exometabolites of tea fungus during the cultivation on heavy water were studied by methods of high-resolution proton and deuterium exchange. Is was shown that, depending on the degree of exchange of proton for deuterium in the methyl group of acetate, three isotopomers exist: -CH3, -CH2D, and -CHD2. Ethanol is represented by six isotopomers: -CHD-CH3, -CD2-CH3, -CD2-CH2D, -CD2-CHD2, -CHD-CH2D, and -CHD-CHD2. Relative concentration of these isotopomers and the percent content of deuterium were determined. Based on these data, the kinetics of metabolism of the object cultivated on heavy water was analyzed. It was show that the efficiency of glucose utilization is the same as during cultivation on light water with the exception that the time of utilization is significantly greater. At the same time, the parameters of utilization of ethanol and its conversion into acetic acid in the life activity of the tea fungus in heavy and light water are very similar."	"A robust and cost-effective method for the production of Val, Leu, Ile (delta 1) methyl-protonated 15N-, 13C-, 2H-labeled proteins. A selective protonation strategy is described that uses [3-2H] 13C alpha-ketoisovalerate to introduce (1H-delta methyl)-leucine and (1H-gamma methyl)-valine into 15N-, 13C-, 2H-labeled proteins. A minimum level of 90% incorporation of label into both leucine and valine methyl groups is obtained by inclusion of approximately 100 mg/L alpha-ketoisovalerate in the bacterial growth medium. Addition of [3,3-2H2] alpha-ketobutyrate to the expression media (D2O solvent) results in the production of proteins with (1H-delta1 methyl)-isoleucine (&gt; 90% incorporation). 1H-13C HSQC correlation spectroscopy establishes that CH2D and CHD2 isotopomers are not produced with this method. This approach offers enhanced labeling of Leu methyl groups over previous methods that utilize Val as the labeling agent and is more cost effective."	"Genetics of age-related hearing loss in mice: I. Inbred and F1 hybrid strains. The auditory-evoked brainstem response (ABR) was used to assess hearing loss in five inbred strains of mice and all ten combinations of F1 hybrids. The inbred strains are CBA/H-T6J (CH), DBA/2J (D2), C57BL/6J (B6), BALB/cByJ (BY) and WB/ReJ (WB). The F1 hybrids are CHD2, CHB6, CHBY, CHWB, D2B6, D2BY, D2WB, B6BY, B6WB, and BYWB. At middle age (12, 16 months), mice were tested with click stimuli. At a relatively old age (23 months, near inbreds' median life span), they were tested with both click and tone-pip stimuli. The CH mice and their four F1 hybrid strains exhibit lower thresholds than the other strains, with the F1 strains being most sensitive (i.e., hybrid vigor). The D2 inbred and the three D2 F1 hybrids (excluding CHD2) exhibit the earliest and most severe hearing losses. The B6, BY and WB inbred strains exhibit severe hearing losses between 16 and 23 months of age; however, the B6BY, B6WB and BYWB F1 hybrids have significantly lower thresholds than their parental strains (genetic complementation). These data support a genetic model for recessive alleles at three different loci which contribute to age-related hearing loss. The CH mice have none of the recessive alleles, and the D2 mice are homozygous recessive for all three; the B6, BY and WB inbred strains are homozygous recessive respectively for one of the three loci."	"Citrate synthase stabilizes the enethiolate of acetyldithio coenzyme A. Citrate synthase catalyzes the slow condensation of acetyldithio-CoA [Ac(= S)CoA] with oxalacetate to form thiocitrate [Wlassics, I.D., Stille, C., &amp; Anderson, V.E. (1988) Biochim. Biophys. Acta 952, 269]. During the transient approach to steady state an observable amount of the dithioester absorbance disappears. The amplitude of the decrease in absorbance corresponds to 0.32, 0.03, and 0.02 enzyme equiv at pH 8.3, 7.5, and 6.6, respectively. The difference spectra from before and after the transient exhibit the dithioester lambda max at 306 nm. Acid quenching of a stiochiometric reaction between Ac(= S)CoA and citrate synthase following the transient quantitatively regenerates Ac(= S)CoA, indicating carbon-carbon bond formation had not yet occurred. The apparent first-order rate constant of the transient is independent of Ac(= S)CoA concentration and increases with decreasing pH, being 0.007, 0.016, and 0.04 s-1 at pH 8.3, 7.5, and 6.6, respectively. 2-Fluoroacetyldithio-CoA is a better inhibitor of citrate synthase, Ki = 300 nM, and substrate, Vmax = 2 X 10(-3) s-1, than Ac(= S)CoA. 1H NMR experiments indicate that citrate synthase catalyzes the exchange of the alpha-hydrogens of Ac(= S)CoA with turnover numbers of 0.13 and 0.54 s-1 at pD 7.9 and 7.2, respectively. Analysis of the proton and deuterium decoupled 13C NMR spectra of [2-13C]Ac(= S)CoA that has exchanged 37% of the alpha-hydrogens in the presence of citrate synthase indicates that the relative proportions of CH3, CH2D, CHD2, and CD3 were 0.29, 0.39, 0.25, and 0.07, respectively. This statistical distribution indicates each exchange event is independent. The data indicate that citrate synthase stabilizes the ionized form of Ac(= S)CoA by 5 kcal/mol relative to the un-ionized form, that the ionized dithioester is on the reaction pathway, and that below pH 8.3 the slow carbon-carbon bond forming reaction is responsible for the 10(6) decrease in Vmax caused by substituting sulfur for oxygen in the thioester carbonyl."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"EEF1A2"	"complex neurodevelopmental disorder"	"Genome-Wide DNA Methylation Profiles in Community Members Exposed to the World Trade Center Disaster. The primary goal of this pilot study was to assess feasibility of studies among local community members to address the hypothesis that complex exposures to the World Trade Center (WTC) dust and fumes resulted in long-term epigenetic changes. We enrolled 18 WTC-exposed cancer-free women from the WTC Environmental Health Center (WTC EHC) who agreed to donate blood samples during their standard clinical visits. As a reference WTC unexposed group, we randomly selected 24 age-matched cancer-free women from an existing prospective cohort who donated blood samples before 11 September 2001. The global DNA methylation analyses were performed using Illumina Infinium MethylationEpic arrays. Statistical analyses were performed using R Bioconductor package. Functional genomic analyses were done by mapping the top 5000 differentially expressed CpG sites to the Kyoto Encyclopedia of Genes and Genomes (KEGG) Pathway database. Among cancer-free subjects, we observed substantial methylation differences between WTC-exposed and unexposed women. The top 15 differentially methylated gene probes included BCAS2, OSGIN1, BMI1, EEF1A2, SPTBN5, CHD8, CDCA7L, AIDA, DDN, SNORD45C, ZFAND6, ARHGEF7, UBXN8, USF1, and USP12. Several cancer-related pathways were enriched in the WTC-exposed subjects, including endocytosis, mitogen-activated protein kinase (MAPK), viral carcinogenesis, as well as Ras-associated protein-1 (Rap1) and mammalian target of rapamycin (mTOR) signaling. The study provides preliminary data on substantial differences in DNA methylation between WTC-exposed and unexposed populations that require validation in further studies."	"LAIR-1 suppresses cell growth of ovarian cancer cell via the PI3K-AKT-mTOR pathway. Recently, over-expression of LAIR-1 has been found in some solid cancers, including ovarian cancer. The role of LAIR-1 in cancer progression needs further investigation. In this study, we identified the LAIR-1 cDNA sequence of the ovarian cancer cells HO8910. Using SKOV3 cells, we confirmed the finding from our previous study that LAIR-1 could suppress in vitro cell proliferation and cell migration. We also found LAIR-1 overexpression can induce apoptosis of SKOV3 cells. We revealed LAIR-1 suppressed cell growth by inhibiting the PI3K-AKT-mTOR axis. Moreover, the LAIR-1 antitumor activity and its mechanism were also identified in vivo. We used Co-IP assay and mass spectrometry to identify potential LAIR-1-binding proteins in LAIR-1 overexpressing SKOV3 cells. MS analysis identified 167 potentially interacting proteins. GO analyses indicated a possible involvement of LAIR-1 in mRNA processing through its interaction with some eukaryotic translation initiation factors (eIF4E1B, eIF2S3, eIF3D, eIF4G2, eIF5B) and eukaryotic translation elongation factors (eEF1A2 and eEF1B2). Our findings suggest that LAIR-1 may suppress the growth of ovarian cancer cells by serving as a modulator that suppresses PI3K-AKT-mTOR directly or regulating protein synthesis at the translational level. Our results indicate that a LAIR-1-based strategy may prevent or suppress the progression of ovarian cancer."	"Downregulation of eEF1A/EFT3-4 Enhances Dopaminergic Neurodegeneration After 6-OHDA Exposure in C. elegans Model. Parkinson's disease (PD) is a neurodegenerative disorder characterized by the aggregation of α-synuclein protein and selective death of dopaminergic (DA) neurons in the substantia nigra of the midbrain. Although the molecular pathogenesis of PD is not completely understood, a recent study has reported that eukaryotic translation elongation factor 1 alpha (eEF1A) declined in the PD-affected brain. Therefore, the roles of eEF1A1 and eEF1A2 in the prevention of DA neuronal cell death in PD are aimed to be investigated. Herein, by using Caenorhabditis elegans as a PD model, we investigated the role of eft-3/eft-4, the worm homolog of eEF1A1/eEF1A2, on 6-hydroxydopamine (6-OHDA)-induced DA neuron degeneration. Our results demonstrated that the expressions of eft-3 and eft-4 were decreased in the 6-OHDA-induced worms. RNA interference (RNAi) of eft-3 and eft-4 resulted in dramatic exacerbation of DA neurodegeneration induced by 6-OHDA, as well as aggravated the food-sensing behavior, ethanol avoidance, and decreased lifespan when compared with only 6-OHDA-induced worms. Moreover, downregulation of eft-3/4 in 6-OHDA-induced worms suppressed the expression of the anti-apoptotic genes, including PI3K/age-1, PDK-1/pdk-1, mTOR/let-363, and AKT-1,2/akt-1,2, promoting the expression of apoptotic genes such as BH3/egl-1 and Caspase-9/ced-3. Collectively, these findings indicate that eEF1A plays an important role in the 6-OHDA-induced neurodegeneration through the phosphatidylinositol 3-kinase (PI3K)/serine/threonine protein kinase (Akt)/mammalian target of rapamycin (mTOR) pathway and that eEF1A isoforms may be a novel and effective pro-survival factor in protective DA neurons against toxin-induced neuronal death."	"Plitidepsin to treat multiple myeloma. While remaining relatively rare, multiple myeloma (MM) accounts for approximately 10% of all hematological malignancies, being an insidious disease with an overall 5-year survival rate of 52%. In addition to other associated complications, myeloma bone disease further aggravates MM patients, the majority of whom suffer from lytic lesions, leading to pain, fractures, mobility issues and neurological deficits. Patients not responding or becoming resistant to prior therapies have now a novel therapeutic tool with an unprecedent mode of action, differing from those currently in use. The anticancer effects of the marine-derived antitumor agent plitidepsin primarily rely on the interaction with elongation factor 1-α 2 (eEF1A2), known to be overexpressed in breast cancer and MM cells, targeting the noncanonical role of the protein and leading to a proapoptotic response. Following the drug's approval from Australian regulatory authorities, eligible patients will have access to a new first-in-class drug to treat MM, expanding the current anti-MM portfolio. Plitidepsin (Aplidin; PharmaMar) was approved in combination with the corticosteroid agent dexamethasone, to treat MM patients who failed or became resistant to other therapies, covering the third- and fourth-line treatment setting."	"Dimethylation of eEF1A at Lysine 55 Plays a Key Role in the Regulation of eEF1A2 on Malignant Cell Functions of Acute Myeloid Leukemia. This study aimed to explore whether eukaryotic translation elongation factor 1 alpha 2 affected cell proliferation, migration, and apoptosis via regulating the dimethylation of eukaryotic translation elongation factor 1 alpha at lysine 55 in acute myeloid leukemia. The expressions of eukaryotic translation elongation factor 1 alpha 2 and dimethylation of eukaryotic translation elongation factor 1 alpha at lysine 55 in acute myeloid leukemia cell lines and human normal bone marrow mononuclear cells (as control) were assessed. Control CRISPR-Cas9 lentivirus, eukaryotic translation elongation factor 1 alpha 2 knockout CRISPR-Cas9 lentivirus, vector plasmid, eukaryotic translation elongation factor 1 alpha 2 wild type overexpression plasmid, and eukaryotic translation elongation factor 1 alpha 2 with a K55R substitution overexpression plasmid were transfected into AML-193 and Kasumi-1 cells combined or alone, and were accordingly divided into 4 groups (Sgcontrol + vector group, SgeEF1A2 + vector group, SgeEF1A2 + eEF1A2WT group, and SgeEFIA2 + eEF1A2K55R group). Eukaryotic translation elongation factor 1 alpha 2 and dimethylation of eukaryotic translation elongation factor 1 alpha at lysine 55 expressions were higher in AML-193, Kasumi-1, and KG-1 cell lines compared to the control. In AML-193 and Kasumi-1 cells, the knockout and compensated experiments revealed that eukaryotic translation elongation factor 1 alpha 2 promoted cell proliferation and migration but repressed apoptosis. Additionally, the knockout of eukaryotic translation elongation factor 1 alpha 2 decreased dimethylation of eukaryotic translation elongation factor 1 alpha at lysine 55 expression, meanwhile, eukaryotic translation elongation factor 1 alpha 2 wild type overexpression enhanced while eukaryotic translation elongation factor 1 alpha 2 with a K55R substitution overexpression did not influence the dimethylation of eukaryotic translation elongation factor 1 alpha at lysine 55 expression. Furthermore, eukaryotic translation elongation factor 1 alpha 2 wild type overexpression promoted cell proliferation, enhanced migration, and decreased apoptosis, but eukaryotic translation elongation factor 1 alpha 2 with a K55R substitution overexpression did not influence these cellular functions in AML-193 and Kasumi-1 cells, suggesting the implication of dimethylation of eukaryotic translation elongation factor 1 alpha at lysine 55 in eukaryotic translation elongation factor 1 alpha 2 mediated oncogenesis of acute myeloid leukemia. Eukaryotic translation elongation factor 1 alpha 2 and its dimethylated product may serve as therapeutic targets, and these findings may provide support for exploring novel strategies in acute myeloid leukemia treatment."	"Identification of therapeutics that target eEF1A2 and upregulate utrophin A translation in dystrophic muscles. Up-regulation of utrophin in muscles represents a promising therapeutic strategy for the treatment of Duchenne Muscular Dystrophy. We previously demonstrated that eEF1A2 associates with the 5'UTR of utrophin A to promote IRES-dependent translation. Here, we examine whether eEF1A2 directly regulates utrophin A expression and identify via an ELISA-based high-throughput screen, FDA-approved drugs that upregulate both eEF1A2 and utrophin A. Our results show that transient overexpression of eEF1A2 in mouse muscles causes an increase in IRES-mediated translation of utrophin A. Through the assessment of our screen, we reveal 7 classes of FDA-approved drugs that increase eEF1A2 and utrophin A protein levels. Treatment of mdx mice with the 2 top leads results in multiple improvements of the dystrophic phenotype. Here, we report that IRES-mediated translation of utrophin A via eEF1A2 is a critical mechanism of regulating utrophin A expression and reveal the potential of repurposed drugs for treating DMD via this pathway."	"Effects of eEF1A2 knockdown on autophagy in an MPP<sup>+</sup>-induced cellular model of Parkinson's disease. 1-Methyl-4-phenylpyridinium ion (MPP<sup>+</sup>) is widely used to induce a cellular model of Parkinson's disease (PD) in dopaminergic cell lines. Downregulation of the protein translation elongation factor 1 alpha (eEF1A) has been reported in the brain tissue of PD patients. eEF1A2, an isoform of eEF1A, is associated with lysosome biogenesis that involves the autophagy process. However, the role of eEF1A2 on autophagic activity in PD has not been elucidated. In this work, we investigated the role of eEF1A2 on autophagy using eEF1A2 siRNA knockdown in differentiated SH-SY5Y neuronal cells treated with MPP<sup>+</sup>. We found that eEF1A2 was upregulated in differentiated cells, which could be silenced by eEF1A2 siRNA. Significantly, cells treated with MPP<sup>+</sup> after eEF1A2 knockdown showed a decreased number of LC3 puncta, decreased LC3-II/LC3-I ratio, and decreased phospho-Beclin-1, compared to the MPP<sup>+</sup> alone group. These cells showed extensive areas of mitochondria damage, with a reduction of mitochondrial membrane potential, but reduced mitophagy as indicated by the reduced colocalization of LC3 puncta with damaged mitochondria. Cells with eEF1A2 siRNA plus MPP<sup>+</sup> treatment aggravated α-synuclein accumulation but reduced colocalization with LC3. As a result, eEF1A2 knockdown decreased viability, increased apoptotic nuclei, increased caspase-3/7 activation and increased cleaved caspase-3 when cells were treated with MPP<sup>+</sup>. These results suggest that eEF1A2 is essential for dopaminergic neuron survival against MPP<sup>+</sup>, in part through autophagy regulation."	"Damaging de novo missense variants in EEF1A2 lead to a developmental and degenerative epileptic-dyskinetic encephalopathy. Heterozygous de novo variants in the eukaryotic elongation factor EEF1A2 have previously been described in association with intellectual disability and epilepsy but never functionally validated. Here we report 14 new individuals with heterozygous EEF1A2 variants. We functionally validate multiple variants as protein-damaging using heterologous expression and complementation analysis. Our findings allow us to confirm multiple variants as pathogenic and broaden the phenotypic spectrum to include dystonia/choreoathetosis, and in some cases a degenerative course with cerebral and cerebellar atrophy. Pathogenic variants appear to act via a haploinsufficiency mechanism, disrupting both the protein synthesis and integrated stress response functions of EEF1A2. Our studies provide evidence that EEF1A2 is highly intolerant to variation and that de novo pathogenic variants lead to an epileptic-dyskinetic encephalopathy with both neurodevelopmental and neurodegenerative features. Developmental features may be driven by impaired synaptic protein synthesis during early brain development while progressive symptoms may be linked to an impaired ability to handle cytotoxic stressors."	"Yeast as a Model to Understand Actin-Mediated Cellular Functions in Mammals-Illustrated with Four Actin Cytoskeleton Proteins. The budding yeast Saccharomyces cerevisiae has an actin cytoskeleton that comprises a set of protein components analogous to those found in the actin cytoskeletons of higher eukaryotes. Furthermore, the actin cytoskeletons of S. cerevisiae and of higher eukaryotes have some similar physiological roles. The genetic tractability of budding yeast and the availability of a stable haploid cell type facilitates the application of molecular genetic approaches to assign functions to the various actin cytoskeleton components. This has provided information that is in general complementary to that provided by studies of the equivalent proteins of higher eukaryotes and hence has enabled a more complete view of the role of these proteins. Several human functional homologues of yeast actin effectors are implicated in diseases. A better understanding of the molecular mechanisms underpinning the functions of these proteins is critical to develop improved therapeutic strategies. In this article we chose as examples four evolutionarily conserved proteins that associate with the actin cytoskeleton: 1) yeast Hof1p/mammalian PSTPIP1, 2) yeast Rvs167p/mammalian BIN1, 3) yeast eEF1A/eEF1A1 and eEF1A2 and 4) yeast Yih1p/mammalian IMPACT. We compare the knowledge on the functions of these actin cytoskeleton-associated proteins that has arisen from studies of their homologues in yeast with information that has been obtained from in vivo studies using live animals or in vitro studies using cultured animal cell lines."	"Recapitulation of the EEF1A2 D252H neurodevelopmental disorder-causing missense mutation in mice reveals a toxic gain of function. Heterozygous de novo mutations in EEF1A2, encoding the tissue-specific translation elongation factor eEF1A2, have been shown to cause neurodevelopmental disorders including often severe epilepsy and intellectual disability. The mutational profile is unusual; ~50 different missense mutations have been identified but no obvious loss of function mutations, though large heterozygous deletions are known to be compatible with life. A key question is whether the heterozygous missense mutations operate through haploinsufficiency or a gain of function mechanism, an important prerequisite for design of therapeutic strategies. In order both to address this question and to provide a novel model for neurodevelopmental disorders resulting from mutations in EEF1A2, we created a new mouse model of the D252H mutation. This mutation causes the eEF1A2 protein to be expressed at lower levels in brain but higher in muscle in the mice. We compared both heterozygous and homozygous D252H and null mutant mice using behavioural and motor phenotyping alongside molecular modelling and analysis of binding partners. Although the proteomic analysis pointed to a loss of function for the D252H mutant protein, the D252H homozygous mice were more severely affected than null homozygotes on the same genetic background. Mice that are heterozygous for the missense mutation show no behavioural abnormalities but do have sex-specific deficits in body mass and motor function. The phenotyping of our novel mouse lines, together with analysis of molecular modelling and interacting proteins, suggest that the D252H mutation results in a gain of function."	"Candidate Genes Associated with Delayed Neuropsychomotor Development and Seizures in a Patient with Ring Chromosome 20. Ring chromosome 20 (r20) is characterized by intellectual impairment, behavioral disorders, and refractory epilepsy. We report a patient presenting nonmosaic ring chromosome 20 followed by duplication and deletion in 20q13.33 with seizures, delayed neuropsychomotor development and language, mild hypotonia, low weight gain, and cognitive deficit. Chromosomal microarray analysis (CMA) enabled us to restrict a chromosomal segment and thus integrate clinical and molecular data with systems biology. With this approach, we were able to identify candidate genes that may help to explain the consequences of deletions in 20q13.33. In our analysis, we observed five hubs (ARFGAP1, HELZ2, COL9A3, PTK6, and EEF1A2), seven bottlenecks (CHRNA4, ARFRP1, GID8, COL9A3, PTK6, ZBTB46, and SRMS), and two H-B nodes (PTK6 and COL9A3). The candidate genes may play an important role in the developmental delay and seizures observed in r20 patients. Gene ontology included microtubule-based movement, nucleosome assembly, DNA repair, and cholinergic synaptic transmission. Defects in these bioprocesses are associated with the development of neurological diseases, intellectual disability, neuropathies, and seizures. Therefore, in this study, we can explore molecular cytogenetic data, identify proteins through network analysis of protein-protein interactions, and identify new candidate genes associated with the main clinical findings in patients with 20q13.33 deletions."	"EEF1A2 mutations in epileptic encephalopathy/intellectual disability: Understanding the potential mechanism of phenotypic variation. EEF1A2 encodes protein elongation factor 1-alpha 2, which is involved in Guanosine triphosphate (GTP)-dependent binding of aminoacyl-transfer RNA (tRNA) to the A-site of ribosomes during protein biosynthesis and is highly expressed in the central nervous system. De novo mutations in EEF1A2 have been identified in patients with extensive neurological deficits, including intractable epilepsy, globe developmental delay, and severe intellectual disability. However, the mechanism underlying phenotype variation is unknown. Using next-generation sequencing, we identified a novel and a recurrent de novo mutation, c.294C&gt;A; p.(Phe98Leu) and c.208G&gt;A; p.(Gly70Ser), in patients with Lennox-Gastaut syndrome. The further systematic analysis revealed that all EEF1A2 mutations were associated with epilepsy and intellectual disability, suggesting its critical role in neurodevelopment. Missense mutations with severe molecular alteration in the t-RNA binding sites or GTP hydrolysis domain were associated with early-onset severe epilepsy, indicating that the clinical expression was potentially determined by the location of mutations and alteration of molecular effects. This study highlights the potential genotype-phenotype relationship in EEF1A2 and facilitates the evaluation of the pathogenicity of EEF1A2 mutations in clinical practice."	"Expression pattern of EEF1A2 in brain tumors: Histological analysis and functional role as a promoter of EMT. Glioblastomas are highly aggressive brain tumors with a very poor survival rate. EEF1A2, the proto-oncogenic isoform of the EEF1A translation factor family, has been found to be overexpressed and promoting tumorigenesis in multiple cancers. Interestingly, recent studies reported reduced expression of this protein in brain tumors, drawing our attention to find the functional role and mechanism of this protein in brain tumor progression. Using representative cell line as models, the role of EEF1A2 in cell proliferation, migration and invasion were assessed using MTS assay, scratch wound-healing assay, transwell migration and invasion assay, respectively. Activation of key signaling pathways was assessed using western blots and real-time PCR. Finally, using immunohistochemistry we checked the protein levels of EEF1A2 in CNS tumors. EEF1A2 was found to increase the proliferative, migratory and invasive properties of cell lines of both glial and neuronal origin. PI3K activation directly correlated with EEF1A2 levels. Protein levels of key EMT markers viz. Twist, Snail, and Slug were increased upon ectopic EEF1A2 expression. Furthermore, EEF1A2 was found to affect the expression levels of key inflammatory cytokines, growth factors and matrix metalloproteases. IHC analysis showed that EEF1A2 is upregulated in tumor tissues compared to normal tissue. EEF1A2 acts as an oncogene in both neuronal and glial cells and triggers an EMT program via PI3K pathway. However, it shows enhanced expression in neuronal cells of the brain than the glial cells, which could explain the previously reported anomaly."	"Circadian modulation of the cardiac proteome underpins differential adaptation to morning and evening exercise training: an LC-MS/MS analysis. All living beings on earth are influenced by the circadian rhythm, the rising and the setting of the sun. The ubiquitous effect of exercise is widely believed to maximize health benefits but has not been formally investigated for cardiac responses in the exercise-induced circadian rhythms. We hypothesized that the exercise-related proteome is differentially influenced by circadian rhythm and analyzed the differences between the effects of morning and evening exercise. Twenty-four Sprague-Dawley rats were randomly divided into four groups (n = 6 per group): morning control, morning exercise, evening control, and evening exercise groups. The exercise groups were subjected to 12-week treadmill exercise (5 days/week) performed either during daytime or nighttime. After 12 weeks, the physiological characteristics (e.g., body weight, heart weight, visceral fat, and blood metabolites), cardiovascular capacity (ejection fraction (%) and fractional shortening (%)), circadian gene expression levels (clock, ball1, per1, per2, cry1, and cry2), and the proteomic data were obtained and subjected to univariate and multivariate analysis. The mRNA levels of per1 and cry2 increased in the evening group compared with those in the morning group. We also found that per2 decreased and cry2 increased in the evening exercise groups. The evening exercise groups showed more decreased triacylglycerides and increased blood insulin levels than the morning exercise group. The principal component analysis, partial least squares discriminant analysis, and orthogonal partial least squares discriminant analysis indicated that the circadian rhythm differently influenced the protein networks of the exercise groups. In the morning exercise group, the transcription-translation feedback loop (TTFL) (clock, per1, per2, cry1, and cry2) formed a protein-protein interaction network with Nme2, Hint1, Ddt, Ndufb8, Ldha, and Eef1a2. In contrast, the TTFL group appeared close to Maoa, Hist2h4, and Macrod1 in the evening exercise group. Interestingly, the evening exercise group decreased the mRNA level of per2 but not per1. Per1 and Per2 are known to transport Cry1 and Cry2 into the nucleus. Taken together, we summarized the characteristics of enriched proteins in the aspect of their molecular function, cellular component, and biological process. Our results might provide a better understanding of the circadian effect on exercise-related proteins."	"Data article on genes that share similar expression patterns with EEF1 complex proteins in hepatocellular carcinoma. Eukaryotic Elongation Factor complex 1 (EEF1) consists of six subunits namely EEF1A1, EEF1A2, EEF1B2, EEF1D, EEF1E1 and EEF1G. Recently we showed that EEF1 complex proteins might play critical roles in cancer [1]. This article provides data on genes that share similar expression patterns with EEF1 complex proteins in cancer by analyzing RNA expression data using GEPIA online tool. Correlation analysis was performed on selected genes in a pairwise manner and the Pearson coefficients were automatically calculated by the GEPIA online tool. These data can be useful for future studies directed towards understanding the mechanisms by which EEF1 complex proteins affect in cancer pathogenesis."	"Combined burden and functional impact tests for cancer driver discovery using DriverPower. The discovery of driver mutations is one of the key motivations for cancer genome sequencing. Here, as part of the ICGC/TCGA Pan-Cancer Analysis of Whole Genomes (PCAWG) Consortium, which aggregated whole genome sequencing data from 2658 cancers across 38 tumour types, we describe DriverPower, a software package that uses mutational burden and functional impact evidence to identify driver mutations in coding and non-coding sites within cancer whole genomes. Using a total of 1373 genomic features derived from public sources, DriverPower's background mutation model explains up to 93% of the regional variance in the mutation rate across multiple tumour types. By incorporating functional impact scores, we are able to further increase the accuracy of driver discovery. Testing across a collection of 2583 cancer genomes from the PCAWG project, DriverPower identifies 217 coding and 95 non-coding driver candidates. Comparing to six published methods used by the PCAWG Drivers and Functional Interpretation Working Group, DriverPower has the highest F1 score for both coding and non-coding driver discovery. This demonstrates that DriverPower is an effective framework for computational driver discovery."	"Translation elongation factor 1A2 is encoded by one of four closely related eef1a genes and is dispensable for survival in zebrafish. Zebrafish are valuable model organisms for the study of human single-gene disorders: they are genetically manipulable, their development is well understood, and mutant lines with measurable, disease-appropriate phenotypic abnormalities can be used for high throughput drug screening approaches. However, gene duplication events in zebrafish can result in redundancy of gene function, masking loss-of-function phenotypes and thus confounding this approach to disease modelling. Furthermore, recent studies have yielded contrasting results depending on whether specific genes are targeted using genome editing to make mutant lines, or whether morpholinos are used (morphants). De novo missense mutations in the human gene EEF1A2, encoding a tissue-specific translation elongation factor, cause severe neurodevelopmental disorders; there is a real need for a model system to study these disorders and we wanted to explore the possibility of a zebrafish model. We identified four eef1a genes and examined their developmental and tissue-specific expression patterns: eef1a1l1 is first to be expressed while eef1a2 is only detected later during development. We then determined the effects of introducing null mutations into translation elongation factor 1A2 (eEF1A2) in zebrafish using CRISPR/Cas9 gene editing, in order to compare the results with previously described morphants, and with severe neurodegenerative lethal phenotype of eEF1A2-null mice. In contrast with both earlier analyses in zebrafish using morpholinos and with the mouse eEF1A2-null mice, disruption of the eef1a2 gene in zebrafish is compatible with normal lifespan. The resulting lines, however, may provide a valuable platform for studying the effects of expression of mutant human eEF1A2 mRNA."	"Whole exome sequencing reveals a de novo missense variant in EEF1A2 in a Rett syndrome-like patient. Using whole exome sequencing, we found a pathogenic variant in the EEF1A2 gene in a patient with a Rett syndrome-like (RTT-like) phenotype, further confirming the association between EEF1A2 and Rett syndrome RTT and RTT-like phenotypes."	"SNX16 activates c-Myc signaling by inhibiting ubiquitin-mediated proteasomal degradation of eEF1A2 in colorectal cancer development. Sorting nexin 16 (SNX16), a member of the sorting nexin family, has been implicated in tumor development. However, the function of SNX16 has not yet been investigated in colorectal cancer (CRC). Here, we showed that SNX16 expression was significantly upregulated in CRC tissues compared with normal counterparts. Upregulated mRNA levels of SNX16 predicted poor survival of CRC patients. Functional experiments showed that SNX16 could promote CRC cells growth both in vitro and in vivo. Knockdown of SNX16 induced cell cycle arrest and apoptosis, whereas ectopic overexpression of SNX16 had the opposite effects. Mechanistically, SNX16-eukaryotic translation elongation factor 1A2 (eEF1A2) interaction could inhibit the degradation and ubiquitination of eEF1A2, followed by activation of downstream c-Myc signaling. Our study unveiled that the SNX16/eEF1A2/c-Myc signaling axis could promote colorectal tumorigenesis and SNX16 might potentially serve as a novel biomarker for the diagnosis and an intervention of CRC."	"Effects of eEF1A1 targeting by aptamer/siRNA in chronic lymphocytic leukaemia cells. The effectiveness of therapies for chronic lymphocytic leukemia (CLL), the most common leukemia in Western countries adults, can be improved via a deeper understanding of its molecular abnormalities. Whereas the isoforms of the eukaryotic elongation factor 1A (eEF1A1 and eEF1A2) are implicated in different tumors, no information are available in CLL. eEF1A1/eEF1A2 amounts were quantitated in the lymphocytes of 46 CLL patients vs normal control (real time PCR, western blotting). eEF1A1 role in CLL was investigated in a cellular (MEC-1) and animal model of CLL via its targeting by an aptamer (GT75) or a siRNA (siA1) delivered by electroporation (in vitro) or lipofection (in vivo). eEF1A1/eEF1A2 were elevated in CLL lymphocytes vs control. eEF1A1 but not eEF1A2 levels were higher in patients which died during the study compared to those surviving. eEF1A1 targeting (GT75/siA1) resulted in MEC-1 viability reduction/autophagy stimulation and in vivo tumor growth down-regulation. The increase of eEF1A1 in dead vs surviving patients may confer to eEF1A1 the role of a prognostic marker for CLL and possibly of a therapeutic target, given its involvement in MEC-1 survival. Specific aptamer/siRNA released by optimized delivery systems may allow the development of novel therapeutic options."	"Correction: Elevated levels of eEF1A2 protein expression in triple negative breast cancer relate with poor prognosis. [This corrects the article DOI: 10.1371/journal.pone.0218030.]."	"Generation of endoplasmic reticulum stress and inhibition of autophagy by plitidepsin induces proteotoxic apoptosis in cancer cells. Plitidepsin (PLD, Aplidin®), a cyclic depsipeptide originally isolated from the marine tunicate Aplidium albicans, has been recently approved by Australian regulatory authorities for the treatment of multiple myeloma patients. Plitidepsin binds to eEF1A2 and induces oxidative stress, Rac1 activation and JNK1 phosphorylation, triggering a rapid apoptotic program in tumor cells. Since oxidative stress is one of the known sources of endoplasmic reticulum stress, we investigated whether PLD was inducing a bona fide ER stress in HeLa cells and whether this process was essential in the mechanism of action of the compound. Indeed, PLD activated an ER stress-induced unfolded protein response (UPR), including the alternative splicing of XBP1, the proteolytic processing of ATF6 and the phosphorylation of eIF2α and JNK. Interestingly, though PLD induced a strong phosphorylation of eIF2α in all the analyzed cell lines, it did not elicit an increased expression of ATF4 and CHOP, a transcription factor involved in launching UPR-mediated apoptosis. On the contrary, a clear reduction of CHOP protein levels was observed after PLD treatment, most probably due to both the lack of transactivation by ATF4 and its rapid degradation by the ubiquitin/proteasome machinery. Using fibroblasts devoid of each one of the four possible kinases involved in eIF2α phosphorylation, we observed that only PKR was involved in the response to PLD treatment and, accordingly, PKR<sup>-/-</sup> fibroblasts are shown to be resistant to the apoptogenic activity of the compound. Furthermore, eIF2α phosphorylation itself was shown to be irrelevant for the induction of cell death by PLD. Instead, we reveal that PLD induces an increase in the levels of misfolded proteins while simultaneously inhibiting the autophagic flux. These two effects combined prevent PLD-treated cells from reducing proteotoxic stress and lead to apoptosis. Other anti-myeloma drugs like bortezomib, which target the proteasome, also inhibit the degradation of misfolded proteins through alternate pathways and a synergistic anticancer effect of the PLD plus bortezomib combination has been previously disclosed. The present results extend this synergy to in vivo experiments and provide a mechanistic rationale for this synergy."	"Genome-wide association analysis of autism identified multiple loci that have been reported as strong signals for neuropsychiatric disorders. Autism is a common neurodevelopmental disorder with a moderate to a high degree of heritability, but only a few common genetic variants that explain the heritability have been associated. We performed a genome-wide transmission disequilibrium test analysis of a newly genotyped autism case-parent triad samples (127 trios) in Han Chinese, identified top association signals at multiple single nucleotide polymorphisms (SNPs), including rs9839376 (OR = 2.59, P = 1.27 × 10<sup>-05</sup> ) at KCNMB2, rs6044680 (OR = 0.319, P = 4.82 × 10<sup>-05</sup> ) and rs7274133 (OR = 0.313, P = 3.22 × 10<sup>-05</sup> ) at PCSK2, and rs310619 (OR = 2.40, P = 7.44 × 10<sup>-05</sup> ) at EEF1A2. Furthermore, a genome-wide combined P-value of individual SNPs in two independent case-parent triad samples (total 402 triads, n = 1,206) identified SNPs at EGFLAM, ZDHHC2, AGBL1, and SNX29 as additional association signals for autism. While none of these signals achieved a genome-wide significance in the two samples of our study, they have been reported in a previous genome-wide association study of neuropsychiatric disorders, and the majority of these SNP have a significant cis-regulatory association with mRNA in human tissues (false discovery rate (FDR) &lt; 0.05). Our study warrants further study or replication with additional sample for association with autism and other neuropsychiatric disorders. Autism Res 2020, 13: 382-396. © 2019 International Society for Autism Research, Wiley Periodicals, Inc. LAY SUMMARY: Autism is a common neurodevelopmental disorder, heritable, but only a few common genetic variants that explain the heritability have been associated. We conducted a genome-wide association study with two cohorts of autism case-parent triad samples in Han Chinese and identified multiple single nucleotide polymorphisms that were reported as strong association signals in a previous genome-wide association study of other neuropsychiatric disorders or related traits. Our study provides evidence for shared genetic variants among autism and other neuropsychiatric disorders."	"Alterations in Eukaryotic Elongation Factor complex proteins (EEF1s) in cancer and their implications in epigenetic regulation. In the cell, both transcriptional and translational processes are tightly regulated. Cancer is a multifactorial disease characterized by aberrant protein expression. Since epigenetic control mechanisms are also frequently disrupted during carcinogenesis, they have been the center of attention in cancer research within the past decades. EEF1 complex members, which are required for the elongation process in eukaryotes, have recently been implicated in carcinogenesis. This study aims to investigate genetic alterations within EEF1A1, EEF1A2, EEF1B2, EEF1D, EEF1E1 and EEF1G genes and their potential effects on epigenetic regulation mechanisms. In this study, we analyzed DNA sequencing and mRNA expression data available on The Cancer Genome Atlas (TCGA) across different cancer types to detect genetic alterations in EEF1 genes and investigated their potential impact on selected epigenetic modulators. We found that EEF1 complex proteins were deregulated in several types of cancer. Lower EEF1A1, EEF1B2, EEF1D and EEF1G levels were correlated with poor survival in glioma, while lower EEF1B2, EEF1D and EEF1E1 levels were correlated with better survival in hepatocellular carcinoma. We detected genetic alterations within EEF1 genes in up to 35% of the patients and showed that these alterations resulted in down-regulation of histone modifying enzymes KMT2C, KMT2D, KMT2E, KAT6A and EP300. Here in this study, we showed that EEF1 deregulations might result in differential epigenomic landscapes, which affect the overall transcriptional profile, contributing to carcinogenesis. Identification of these molecular distinctions might be useful in developing targeted drug therapies and personalized medicine."	"eEF1A2 exacerbated insulin resistance in male skeletal muscle via PKCβ and ER stress. Recent studies raise the possibility that eukaryotic translation elongation factor 1 alpha (eEF1A) may play a role in metabolism. One isoform, eEF1A2, is specifically expressed in skeletal muscle, heart and brain. It regulates translation elongation and signal transduction. Nonetheless, eEF1A2's function in skeletal muscle glucose metabolism remains unclear. In the present study, suppression subtractive hybridisation showed a decrease in Eef1a2 transcripts in the skeletal muscle of diabetic Mongolian gerbils. This was confirmed at mRNA and protein levels in hyperglycaemic gerbils, and in db/db and high-fat diet-fed mice. Further, this downregulation was independent of Eef1a2 promoter methylation. Interestingly, adeno-associated virus-mediated eEF1A2 overexpression in skeletal muscle aggravated fasting hyperglycaemia, hyperinsulinaemia and glucose intolerance in male diabetic gerbils but not in female gerbil models. The overexpression of eEF1A2 in skeletal muscle also resulted in promoted serum glucose levels and insulin resistance in male db/db mice. Up- and downregulation of eEF1A2 by lentiviral vector transfection confirmed its inhibitory effect on insulin-stimulated glucose uptake and signalling transduction in C2C12 myotubes with palmitate (PA)-induced insulin resistance. Furthermore, eEF1A2 bound PKCβ and increased its activation in the cytoplasm, whereas suppression of PKCβ by an inhibitor attenuated eEF1A2-mediated impairment of insulin sensitivity in insulin-resistant myotubes. Endoplasmic reticulum (ER) stress was elevated by eEF1A2, whereas suppression of ER stress or JNK partially restored insulin sensitivity in PA-treated myotubes. Additionally, eEF1A2 inhibited lipogenesis and lipid utilisation in insulin-resistant skeletal muscle. Collectively, we demonstrated that eEF1A2 exacerbates insulin resistance in male murine skeletal muscle via PKCβ and ER stress."	"Mild epileptic phenotype associates with de novo eef1a2 mutation: Case report and review. Mutations in the elongation factor 1 alpha 2 (EEF1A2) gene have been recently shown to cause epileptic encephalopathy (MIM # 616409 EIEE33) associated with neurodevelopmental disorders such as intellectual disability, autistic spectrum disorder, hypotonia and dysmorphic facial features. EEF1A2 protein is involved in protein synthesis, suppression of apoptosis, regulation of actin function and cytoskeletal structure. To date, only sixteen patients with EEF1A2 mutations have been reported. We described a new case, a boy with severe intellectual disability with absent speech, autistic spectrum disorder, mild dysmorphic facial features, failure to thrive and epilepsy associated to a de novo heterozygous missense mutation in EEF1A2 (c.364G&gt;A; p.Glu122Lys) identified by next generation sequencing; it was already reported in other studies. Most clinical features are shared by all individuals with EEF1A2 mutation, but unlike others reports our patient showed a mild epileptic phenotype: epilepsy developed in late infancy and was well-controlled with antiepileptic drugs. Moreover, at the onset of epilepsy, interictal wake/sleep electroencephalograms showed typical pattern that disappeared with age. This report focused that EEF1A2 mutations should be considered not only in patients with epileptic encephalopathy, but also in those with less severe epilepsy. A typical EEG pattern may be a biomarker for EEF1A2 mutation, but further investigations and longitudinal clinical observations are required."	"A rapid and specific method to simultaneously quantify eukaryotic elongation factor 1A1 and A2 protein levels in cancer cells. The two isoforms of the eukaryotic Elongation Factor 1A (eEF1A1 and eEF1A2), sustain the progression/aggressiveness of cancer cells. Thus, they are considered promising therapeutic targets and prognostic markers. It follows that their precise quantification is of utmost relevance in research and development. The simultaneous quantification of A1 and A2 proteins in the cells helps the comprehension of cancer biology mechanisms and response to drug treatments. However, the high homology at the amino-acidic level (92%) can cause antibodies cross-reaction. Moreover, the commonly employed western blotting just gives semi-quantitative data and does not allow the detection of both protein targets within the same cell. Thus, we developed an in cell western (ICW) technique to bypass the above limitations. Firstly, relevant antibodies cross-reaction was excluded by immunohistochemistry on normal pancreatic tissue; then eEF1A1-A2 protein levels were quantitated by ICW in prostate and colorectal cancer cell lines in 96 well plates under different conditions, which include: 1) drug treatment, 2) siRNA silencing, 3) cell seeding density. We show that: 1) eEF1A1-A2 levels vary depending on the cell type following drug treatment, 2) ICW can accurately detect eEF1A1-A2 protein levels following siRNA silencing, 3) cell seeding density influences eEF1A1-A2 levels, depending on cell type. ICW is a valuable tool to specifically determine the intracellular level of eEF1A1-A2 proteins thus contributing to better define their role as potential therapeutic targets and prognostic markers in human tumors as well as for drug effects screening."	"Ultra-Rare Genetic Variation in the Epilepsies: A Whole-Exome Sequencing Study of 17,606 Individuals. Sequencing-based studies have identified novel risk genes associated with severe epilepsies and revealed an excess of rare deleterious variation in less-severe forms of epilepsy. To identify the shared and distinct ultra-rare genetic risk factors for different types of epilepsies, we performed a whole-exome sequencing (WES) analysis of 9,170 epilepsy-affected individuals and 8,436 controls of European ancestry. We focused on three phenotypic groups: severe developmental and epileptic encephalopathies (DEEs), genetic generalized epilepsy (GGE), and non-acquired focal epilepsy (NAFE). We observed that compared to controls, individuals with any type of epilepsy carried an excess of ultra-rare, deleterious variants in constrained genes and in genes previously associated with epilepsy; we saw the strongest enrichment in individuals with DEEs and the least strong in individuals with NAFE. Moreover, we found that inhibitory GABAA receptor genes were enriched for missense variants across all three classes of epilepsy, whereas no enrichment was seen in excitatory receptor genes. The larger gene groups for the GABAergic pathway or cation channels also showed a significant mutational burden in DEEs and GGE. Although no single gene surpassed exome-wide significance among individuals with GGE or NAFE, highly constrained genes and genes encoding ion channels were among the lead associations; such genes included CACNA1G, EEF1A2, and GABRG2 for GGE and LGI1, TRIM3, and GABRG2 for NAFE. Our study, the largest epilepsy WES study to date, confirms a convergence in the genetics of severe and less-severe epilepsies associated with ultra-rare coding variation, and it highlights a ubiquitous role for GABAergic inhibition in epilepsy etiology."	"Retraction Note: miR-663 attenuates tumor growth and invasiveness by targeting eEF1A2 in pancreatic cancer. The Editor-in-Chief has retracted this article [1] because Figure 6b overlaps with Figure 8 of [2] and Figure 4a overlaps with Figure 2b of [3]."	"Elevated levels of eEF1A2 protein expression in triple negative breast cancer relate with poor prognosis. Eukaryotic elongation factor 1 alpha 2 (eEF1A2) is a translation factor selectively expressed by heart, skeletal muscle, nervous system and some specialized cells. Its ectopic expression relates with tumorigenesis in several types of human cancer. No data are available about the role of eEF1A2 in Triple Negative Breast Cancers (TNBC). This study investigated the relation between eEF1A2 protein levels and the prognosis of TNBC. A total of 84 TNBC diagnosed in the period 2002-2011 were included in the study. eEF1A2 protein level was measured in formalin-fixed paraffin-embedded tissues by immunohistochemistry in a semi-quantitative manner (sum of the percentage of positive cells x staining intensity) on a scale from 0 to 300. Cox regression assessed the association between eEF1A2 levels and disease-free survival (DFS) and breast cancer-specific survival (BCSS). Elevated values of eEF1A2 were associated with older age at diagnosis (p = 0.003), and androgen receptors positivity (p = 0.002). At univariate Cox analysis, eEF1A2 levels were not significantly associated with DFS and BCSS (p = 0.11 and p = 0.08, respectively) whereas adjusting for stage of disease, elevated levels of eEF1A2 protein resulted associated with poor prognosis (HR = 1.05, 95% CI: 1.01-1.11, p = 0.04 and HR = 1.07, 95% CI: 1.01-1.14, p = 0.03 for DFS and BCSS, respectively). This trend was confirmed analyzing negative versus positive samples by using categorized scores. Our data showed a negative prognostic role of eEF1A2 protein in TNBC, sustaining further investigations to confirm this result by wider and independent cohorts of patients."	"Chronic Intermittent Ethanol Exposure Induces Upregulation of Matrix Metalloproteinase-9 in the Rat Medial Prefrontal Cortex and Hippocampus. Matrix metalloproteinase-9 (MMP-9, Gelatinase B), an extracellular-acting Zn<sup>2+</sup>-dependent endopeptidase, are involved in brain pathologies including ischemia, glioma, and epilepsy. Recent studies suggested that MMP-9 plays an important role in neuronal plasticity, specifically in learning and memory. To determine whether and how MMP-9 plays role in alcohol-related behaviors, male Sprague-Dawley (SD) rats were subjected to chronic intermittent ethanol (CIE) exposure for 4 weeks, following which we collected tissue samples from the hippocampus, medial prefrontal cortex (mPFC), and amygdala at different stages (acute and chronic exposure) during alcohol exposure. Real-time PCR and western blot assays were used to detect changes in the mRNA and protein expression of MMP-9. Our results indicated that both acute and chronic alcohol exposure induced up-regulation of MMP-9 mRNA levels in the hippocampus and mPFC, but not in the amygdala. Furthermore, acute and chronic alcohol exposure up regulated the expression of total MMP-9 and active MMP-9 in these two brain regions. Moreover, the increase of active MMP-9 expression was larger than those in total MMP-9 expression. Immunoprecipitation analyses identified potential MMP-9-interacting proteins, including Itgb1, Src, Eef1a2, tubulin, actin, and histone H2B. These results demonstrate that both acute and CIE exposure induced increases in MMP-9 expression in the mPFC and hippocampus, suggesting that MMP-9 plays a key role in chronic alcohol exposure and dependence."	"Novel nannocystin A analogues as anticancer therapeutics: Synthesis, biological evaluations and structure-activity relationship studies. Nannocystin A is a novel 21-membered macrocyclic lactam that targets eukaryotic translation elongation factor 1α (eEF1A) and displays potent antiproliferative activities. Herein, a series of nannocystin A analogues were synthesized and their structure-activity relationship (SAR) were established based on the MTT assay and western blotting analysis. The SAR enabled us to identify a structurally simplified nannocystin A analogue LQ18, which exhibited potent antiproliferative activities with IC50 values ranging from 4.3 to 48 nM against the tested cell lines, and inhibited eEF1A1 expression in A549 cell line. LQ18 arrested cell cycle at G2 phase and induced A549 cell apoptosis via up-regulation of caspase-3, caspase-9 and bax protein expressions in a dose-dependent manner, while it significantly decreased the bcl-2 expression. Collectively, these data demonstrated that LQ18 could be a promising lead for the development of structurally novel eEF1A1 inhibitor for cancer treatment."	"Cancer-related gene expression is associated with disease severity and modifiable lifestyle factors in non-alcoholic fatty liver disease. The aim of this study was to determine whether hepatic gene expression related to hepatocellular carcinoma (HCC) is associated with disease severity and modifiable lifestyle factors in non-alcoholic fatty liver disease (NAFLD). In a cross-sectional study, the associations between hepatic gene expression and liver histology, insulin resistance, anthropometrics, diet, and physical activity were assessed in patients with non-alcoholic steatohepatitis (NASH; n = 19) or simple steatosis (SS; n = 20). In a group of patients with NASH, we then conducted a 1-y, single-arm, pilot study using ω-3 polyunsaturated fatty acid (PUFA) supplementation to determine whether changes in hepatic PUFA content would have a modulating effect on hepatic gene expression and would affect liver histology. In the cross-sectional study, histological features of disease severity correlated with AKR1B10, ANXA2, PEG10, SPP1, STMN2, MT1A, and MT1B in NASH and with EEF1A2, PEG10, and SPP1 in SS. In addition, PEG10, SPP1, ANXA2, and STMN2 expression correlated positively with insulin resistance in NASH. SPP1 and UBD correlated strongly with body mass index in SS. Associations between ENPP2, AKR1B10, SPP1, UBD, and waist circumference depended on sex and diagnosis. Several genes correlated with protein, fat, or carbohydrate intake. PEG10 correlated positively with physical activity in NASH and inversely with plasma vitamin C in both groups. Despite increased erythrocyte and hepatic ω-3 PUFA, supplementation did not alter hepatic gene expression and liver histology. HCC-related gene expression was associated with liver histology, body mass index, waist circumference, diet, and physical activity but was not affected by ω-3 PUFA supplementation."	"Postmortem proteomics to discover biomarkers for forensic PMI estimation. The assessment of postmortem degradation of skeletal muscle proteins has emerged as a novel approach to estimate the time since death in the early to mid-postmortem phase (approximately 24 h postmortem (hpm) to 120 hpm). Current protein-based methods are limited to a small number of skeletal muscle proteins, shown to undergo proteolysis after death. In this study, we investigated the usability of a target-based and unbiased system-wide protein analysis to gain further insights into systemic postmortem protein alterations and to identify additional markers for postmortem interval (PMI) delimitation. We performed proteomic profiling to globally analyze postmortem alterations of the rat and mouse skeletal muscle proteome at defined time points (0, 24, 48, 72, and 96 hpm), harnessing a mass spectrometry-based quantitative proteomics approach. Hierarchical clustering analysis for a total of 579 (rat) and 896 (mouse) quantified proteins revealed differentially expressed proteins during the investigated postmortem period. We further focused on two selected proteins (eEF1A2 and GAPDH), which were shown to consistently degrade postmortem in both rat and mouse, suggesting conserved intra- and interspecies degradation behavior, and thus preserved association with the PMI and possible transferability to humans. In turn, we validated the usefulness of these new markers by classical Western blot experiments in a rat model and in human autopsy cases. Our results demonstrate the feasibility of mass spectrometry-based analysis to discover novel protein markers for PMI estimation and show that the proteins eEF1A2 and GAPDH appear to be valuable markers for PMI estimation in humans."	"eEF1A demonstrates paralog specific effects on HIV-1 reverse transcription efficiency. The eukaryotic translation elongation factor 1A (eEF1A) has two cell-type specific paralogs, eEF1A1 and eEF1A2. Both paralogs undertake a canonical function in delivering aminoacyl-tRNA to the ribosome for translation, but differences in other functions are emerging. eEF1A1 has been reported to be important for the replication of many viruses, but no study has specifically linked the eEF1A2 paralog. We have previously demonstrated that eEF1A1 directly interacts with HIV-1 RT and supports efficient reverse transcription. Here, we showed that RT interacted more strongly with eEF1A1 than with eEF1A2 in immunoprecipitation assay. Biolayer interferometry using eEF1A paralogs showed different association and dissociation rates with RT. Over expressed eEF1A1, but not eEF1A2, was able to restore HIV-1 reverse transcription efficiency in HEK293T cells with endogenous eEF1A knocked-down and HIV-1 reverse transcription efficiency correlated with the level of eEF1A1 mRNA, but not to eEF1A2 mRNA in both HEK293T and primary human skeletal muscle cells."	"A large scale proteome analysis of the gefitinib primary resistance overcome by KDAC inhibition in KRAS mutated adenocarcinoma cells overexpressing amphiregulin. KDAC inhibitors (KDACi) overcome gefitinib primary resistance in non-small cell lung cancer (NSCLC) including mutant-KRAS lung adenocarcinoma. To identify which proteins are involved in the restoration of this sensitivity and to provide new therapeutic targets for mutant-KRAS lung adenocarcinoma, we performed an iTRAQ quantitative proteomic analysis after subcellular fractionation of H358-NSCLC treated with gefitinib and KDACi (TSA/NAM) versus gefitinib alone. The 86 proteins found to have been significantly dysregulated between the two conditions, were mainly involved in cellular metabolism and cell transcription processes. As expected, the pathway related to histone modifications was affected by the KDACi. Pathways known for controlling tumor development and (chemo)-resistance (miRNA biogenesis/glutathione metabolism) were affected by the KDACi/gefitinib treatment. Moreover, 57 dysregulated proteins were upstream of apoptosis (such as eEF1A2 and STAT1) and hence provide potential therapeutic targets. The inhibition by siRNA of eEF1A2 expression resulted in a slight decrease in H358-NSCLC viability. In addition, eEF1A2 and STAT1 siRNA transfections suggested that both STAT1 and eEF1A2 prevent AKT phosphorylation known for enhancing gefitinib resistance in NSCLC. Therefore, altogether our data provide new insights into proteome regulations in the context of overcoming the NSCLC resistance to gefitinib through KDACi in H358 KRAS mutated and amphiregulin-overexpressing NSCLC cells."	"Binding of eEF1A2 to the RNA-dependent protein kinase PKR modulates its activity and promotes tumour cell survival. Through several not-fully-characterised moonlighting functions, translation elongation factor eEF1A2 is known to provide a fitness boost to cancer cells. Furthermore, eEF1A2 has been demonstrated to confer neoplastic characteristics on preneoplastic, nontumourigenic precursor cells. We have previously shown that eEF1A2 is the target of plitidepsin, a marine drug currently in development for cancer treatment. Herein, we characterised a new signalling pathway through which eEF1A2 promotes tumour cell survival. Previously unknown binding partners of eEF1A2 were identified through co-immunoprecipitation, high-performance liquid chromatography-mass spectrometry and proximity ligation assay. Using plitidepsin to release eEF1A2 from those protein complexes, their effects on cancer cell survival were analysed in vitro. We uncovered that double-stranded RNA-activated protein kinase (PKR) is a novel eEF1A2-interacting partner whose pro-apoptotic effect is hindered by the translation factor, most likely through sequestration and inhibition of its kinase activity. Targeting eEF1A2 with plitidepsin releases PKR from the complex, facilitating its activation and triggering a mitogen-activated protein kinase signalling cascade together with a nuclear factor-κB-dependent activation of the extrinsic apoptotic pathway, which lead to tumour cell death. Through its binding to PKR, eEF1A2 provides a survival boost to cancer cells, constituting an Achilles heel that can be exploited in anticancer therapy."	"Identification of a Specific Translational Machinery via TCTP-EF1A2 Interaction Regulating NF1-associated Tumor Growth by Affinity Purification and Data-independent Mass Spectrometry Acquisition (AP-DIA). Neurofibromatosis type 1 (NF1) is an autosomal dominant disease that predisposes individuals to developing benign neurofibromas and malignant peripheral nerve sheath tumors (MPNST). The mechanism of NF1-tumorigenesis or the curatives have not been established. Using unique trascriptome and proteome integration method, iPEACH (1), we previously identified translationally controlled tumor protein (TCTP) as a novel biological target for NF1-associated tumors (2). Here, we identified specific TCTP-interacting proteins by sequential affinity purification and data-independent mass spectrometry acquisition (AP-DIA/SWATH) to investigate the role of TCTP in NF1-associated malignant tumors. TCTP mainly interacts with proteins related to protein synthesis and especially to elongation factor complex components, including EF1A2, EF1B, EF1D, EF1G, and valyl-tRNA synthetase (VARS), in NF1-deficient malignant tumor cells. Interestingly, TCTP preferentially binds to EF1A2 (normally found only in neural and skeletal-muscle cells and several cancer cells), rather than EF1A1 despite the high homologies (98%) in their sequences. The docking simulation and further validations to study the interaction between TCTP and EF1A2 revealed that TCTP directly binds with EF1A2 via the contact areas of EF1A2 dimerization. Using unique and common sequences between EF1A2 and EF1A1 in AP-DIA/SWATH, we quantitatively validated the interaction of EF1A2 and TCTP/other elongation factors and found that TCTP coordinates the translational machinery of elongation factors via the association with EF1A2. These data suggest that TCTP activates EF1A2-dependent translation by mediating complex formation with other elongation factors. Inhibiting the TCTP-EF1A2 interaction with EF1A2 siRNAs or a TCTP inhibitor, artesunate, significantly down-regulated the factors related to protein translation and caused dramatic suppression of growth/translation in NF1-associated tumors. Our findings demonstrate that a specific protein translation machinery related to the TCTP-EF1A2 interaction is functionally implicated in the tumorigenesis and progression of NF1-associated tumors and could represent a therapeutic target."	"Successful treatment of choreo-athetotic movements in a patient with an EEF1A2 gene variant. Pathogenic variants in EEF1A2, a gene encoding a eukaryotic translation elongation factor, have been previously reported in pediatric cases of epileptic encephalopathy and intellectual disability. We report a case of a 17-year-old male with a prior history of epilepsy, autism, intellectual disability, and the abrupt onset of choreo-athetotic movements. The patient was diagnosed with an EEF1A2 variant by whole exome sequencing. His movement disorder responded dramatically to treatment with tetrabenazine. To the best of our knowledge, this is the first report of successful treatment of a hyperkinetic movement disorder in the setting of EEF1A2 mutation. A trial with tetrabenazine should be considered in cases with significant choreoathetosis."	"The role of translation elongation factor eEF1 subunits in neurodevelopmental disorders. The multi-subunit eEF1 complex plays a crucial role in de novo protein synthesis. The central functional component of the complex is eEF1A, which occurs as two independently encoded variants with reciprocal expression patterns: whilst eEF1A1 is widely expressed, eEF1A2 is found only in neurons and muscle. Heterozygous mutations in the gene encoding eEF1A2, EEF1A2, have recently been shown to cause epilepsy, autism, and intellectual disability. The remaining subunits of the eEF1 complex, eEF1Bα, eEF1Bδ, eEF1Bγ, and valyl-tRNA synthetase (VARS), together form the GTP exchange factor for eEF1A and are ubiquitously expressed, in keeping with their housekeeping role. However, mutations in the genes encoding these subunits EEF1B2 (eEF1Bα), EEF1D (eEF1Bδ), and VARS (valyl-tRNA synthetase) have also now been identified as causes of neurodevelopmental disorders. In this review, we describe the mutations identified so far in comparison with the degree of normal variation in each gene, and the predicted consequences of the mutations on the functions of the proteins and their isoforms. We discuss the likely effects of the mutations in the context of the role of protein synthesis in neuronal development."	"Integrative analysis of significant RNA-binding proteins in colorectal cancer metastasis. The aberrant expression of RNA-binding proteins (RBPs) plays a crucial role in the occurrence and progression of human cancer. However, the key functions of RBPs in the metastasis of colorectal cancer have not yet been fully elucidated. Here, we integrated multi-omics data and identified four differentially expressed RBPs (APOBEC3G, EEF1A2, EIF5AL1 and CELF3) in patients with colorectal cancer metastasis. To clarify the underlying molecular mechanisms, we systematically analyzed the genomic features and downstream regulatory relationships of the four RBPs. In a genomic level, the copy number variations of APOBEC3G, EEF1A2, and CELF3 demonstrated significantly differential distributions between metastatic and nonmetastatic patients. Besides that, combining sequence and expression information, we identified 436 putative RNA targets regulated by the four RBPs through strict multistep bioinformatics screening. For the downstream analysis, the evidence from functional enrichment analysis and public literature indicated the roles of these target genes in the carcinogenesis and progression of colorectal cancer. Furthermore, through the machine learning algorithm and statistical analysis, we obtained two gene candidates that had obvious effects on the metastasis and overall survival status of patients with colorectal cancer. In summary, our study comprehensively explored the influence of APOBEC3G, EEF1A2, EIF5AL1, and CELF3 in colorectal cancer metastasis, which may offer favorable perspectives for clinical diagnosis and therapy."	"Plitidepsin: a potential new treatment for relapsed/refractory multiple myeloma. Plitidepsin is a marine-derived anticancer compound isolated from the Mediterranean tunicate Applidium albicans. It exerts pleiotropic effects on cancer cells, most likely by binding to the eukaryotic translation eEF1A2. This ultimately leads to cell-cycle arrest, growth inhibition and induction of apoptosis via multiple pathway alterations. Recently, a Phase III randomized trial in patients with relapsed/refractory multiple myeloma reported outcomes for plitidepsin plus dexamethasone compared with dexamethasone. Median progression-free survival was 3.8 months in the plitidepsin arm and 1.9 months in the dexamethasone arm (HR: 0.611; p = 0.0048). Here, we review preclinical data regarding plitidepsins mechanism of action, give an overview of clinical trial results across different tumor types as well as the latest results in multiple myeloma."	"Identification of differentially expressed proteins in rats with spinal cord injury during the transitional phase using an iTRAQ-based quantitative analysis. Spinal cord injury (SCI) is a disease associated with high disability and mortality rates. The transitional phase from subacute phase to intermediate phase may play a major role in the process of secondary injury. Changes in protein expression levels have been shown to play key roles in many central nervous system (CNS) diseases. Nevertheless, the roles of proteins in the transitional phase of SCI are not clear. We examined protein expression in a rat model 2 weeks after SCI and identified differentially expressed proteins (DEPs) using isobaric tagging for relative and absolute protein quantification (iTRAQ). Gene Ontology (GO) analysis and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis of DEPs were performed. Furthermore, we constructed a protein-protein interaction (PPI) network, and the top 10 high-degree core nodes were identified. Meanwhile, we validated protein level changes of five high-degree core regulated proteins using Western blots. A total of 162 DEPs were identified between the injury group and the control, of which 101 (62.35%) were up-regulated and 61 (37.65%) were down-regulated in the transitional phase of SCI. Key molecular function, cellular components, biological process terms and pathways were identified and may be important mechanisms in the transitional phase of SCI. Alb, Calm1, Vim, Apoe, Syp, P4hb, Cd68, Eef1a2, Rab3a and Lgals3 were the top 10 high-degree core nodes. Western blot analysis performed on five of these proteins showed the same trend as iTRAQ results. The current study may provide novel insights into how proteins regulate the pathogenesis of the transitional phase after SCI."	"Itraconazole treatment of primary malignant melanoma of the vagina evaluated using positron emission tomography and tissue cDNA microarray: a case report. Primary malignant melanoma of the vagina is extremely rare, with a poorer prognosis than cutaneous malignant melanoma. Previous studies have explored the repurposing of itraconazole, a common oral anti-fungal agent, for the treatment of various cancers. Here, we describe a patient with metastatic, unresectable vaginal malignant melanoma treated with 200 mg oral itraconazole twice a day in a clinical window-of-opportunity trial. A 64-year-old Japanese woman with vaginal and inguinal tumours was referred to our institution. On the basis of an initial diagnosis of vaginal cancer metastatic to the inguinal lymph nodes, we treated her with itraconazole in a clinical trial until the biopsy and imaging study results were obtained. During this period, biopsies were performed three times, and <sup>18</sup>F-fluoro-deoxyglucose positron emission tomography (FDG/PET)-computed tomography (CT) was performed twice. Biopsy results confirmed the diagnosis of primary malignant melanoma of the vagina. Imaging studies revealed metastases to multiple sites, including the brain, for which she underwent gamma-knife radiosurgery. During the window period before nivolumab initiation, the patient received itraconazole for 30 days. Within a week of itraconazole initiation, pain in the inguinal nodes was ameliorated. PET-CT on days 6 and 30 showed a reduction in tumour size and FDG uptake, respectively. The biopsied specimens obtained on days 1, 13, and 30 were subjected to cDNA microarray analysis, which revealed a 100-fold downregulation in the transcription of four genes: STATH, EEF1A2, TTR, and CDH2. After 12 weeks of nivolumab administration, she developed progressive disease and grade 3 immune-related hepatitis. Discontinuation of nivolumab resulted in the occurrence of left pelvic and inguinal pain. Following re-challenge with itraconazole, the patient has not reported any pain for 4 months. The findings of this case suggest that itraconazole is a potential effective treatment option for primary malignant melanoma of the vagina. Moreover, we identified potential itraconazole target genes, which could help elucidate the mechanism underlying this disease and potentially aid in the development of new therapeutic agents."	"Metarrestin, a perinucleolar compartment inhibitor, effectively suppresses metastasis. Metastasis remains a leading cause of cancer mortality due to the lack of specific inhibitors against this complex process. To identify compounds selectively targeting the metastatic state, we used the perinucleolar compartment (PNC), a complex nuclear structure associated with metastatic behaviors of cancer cells, as a phenotypic marker for a high-content screen of over 140,000 structurally diverse compounds. Metarrestin, obtained through optimization of a screening hit, disassembles PNCs in multiple cancer cell lines, inhibits invasion in vitro, suppresses metastatic development in three mouse models of human cancer, and extends survival of mice in a metastatic pancreatic cancer xenograft model with no organ toxicity or discernable adverse effects. Metarrestin disrupts the nucleolar structure and inhibits RNA polymerase (Pol) I transcription, at least in part by interacting with the translation elongation factor eEF1A2. Thus, metarrestin represents a potential therapeutic approach for the treatment of metastatic cancer."	"A genome-wide association study of growth and fatness traits in two pig populations with different genetic backgrounds. Improvement in growth and fatness traits are the main objectives in pig all breeding programs. Tenth rib backfat thickness (10RIBBFT) and days to 100 kg (D100), which are good predictors of carcass lean content and growth rate, respectively, are economically important traits and also main breeding target traits in pigs. To investigate the genetic mechanisms of 10RIBBFT and D100 of pigs, we sampled 1,137 and 888 pigs from 2 Yorkshire populations of American and British origin, respectively, and conducted genome-wide association study (GWAS) through combined analysis and meta-analysis, to identify SNPs associated with 10RIBBFT and D100. A total of 11 and 7 significant SNPs were identified by combined analysis for 10RIBBFT and D100, respectively. And in meta-analysis, 8 and 7 significant SNPs were identified for 10RIBBFT and D100, respectively. Among them, 6 and 5 common significant SNPs in two analysis results were, respectively, identified associated with 10RIBBFT and D100, and correspondingly explained 2.09% and 0.52% of the additive genetic variance of 10RIBBFT and D100. Further bioinformatics analysis revealed 10 genes harboring or close to these common significant SNPs, 5 for 10RIBBFT and 5 for D100. In particular, Gene Ontology analysis highlighted 6 genes, PCK1, ANGPTL3, EEF1A2, TNFAIP8L3, PITX2, and PLA2G12, as promising candidate genes relevant with backfat thickness and growth. PCK1, ANGPTL3, EEF1A2, and TNFAIP8L3 could influence backfat thickness through phospholipid transport, regulation of lipid metabolic process through the glycerophospholipid biosynthesis and metabolism pathway, the metabolism of lipids and lipoproteins pathway. PITX2 has a crucial role in skeletal muscle tissue development and animal organ morphogenesis, and PLA2G12A plays a role in the lipid catabolic and phospholipid catabolic processes, which both are involved in the body weight pathway. All these candidate genes could directly or indirectly influence fat production and growth in Yorkshire pigs. Our findings provide novel insights into the genetic basis of growth and fatness traits in pigs. The candidate genes for D100 and 10RIBBFT are worthy of further investigation."	"Dynamic cellular maps of molecular species: Application to drug-target interactions. The design of living cell studies aimed at deciphering the mechanism of action of drugs targeting proteins with multiple functions, expressed in a wide range of concentrations and cellular locations, is a real challenge. We recently showed that the antitumor drug plitidepsin (APL) localizes sufficiently close to the elongation factor eEF1A2 so as to suggest the formation of drug-protein complexes in living cells. Here we present an extension of our previous micro-spectroscopy study, that combines Generalized Polarization (GP) images, with the phasor approach and fluorescence lifetime imaging microscopy (FLIM), using a 7-aminocoumarin drug analog (APL<sup>*</sup>) as fluorescence tracer. Using the proposed methodology, we were able to follow in real time the formation and relative distribution of two sets of APL-target complexes in live cells, revealing two distinct patterns of behavior for HeLa-wt and APL resistant HeLa-APL-R cells. The information obtained may complement and facilitate the design of new experiments and the global interpretation of the results obtained with other biochemical and cell biology methods, as well as possibly opening new avenues of study to decipher the mechanism of action of new drugs."	"The expression profile and prognostic significance of eukaryotic translation elongation factors in different cancers. Eukaryotic translation factors, especially initiation factors have garnered much attention with regards to their role in the onset and progression of different cancers. However, the expression levels and prognostic significance of translation elongation factors remain poorly explored in different cancers. In this study, we have investigated the mRNA transcript levels of seven translation elongation factors in different cancer types using Oncomine and TCGA databases. Furthermore, we have identified the prognostic significance of these factors using Kaplan-Meier Plotter and SurvExpress databases. We observed altered expression levels of all the elongation factors in different cancers. Higher expression of EEF1A2, EEF1B2, EEF1G, EEF1D, EEF1E1 and EEF2 was observed in most of the cancer types, whereas reverse trend was observed for EEF1A1. Overexpression of many factors predicted poor prognosis in breast (EEF1D, EEF1E1, EEF2) and lung cancer (EEF1A2, EEF1B2, EEF1G, EEF1E1). However, we didn't see any common correlation of expression levels of elongation factors with survival outcomes across cancer types. Cancer subtype stratification showed association of survival outcomes and expression levels of elongation factors in specific sub-types of breast, lung and gastric cancer. Most interestingly, we observed a reciprocal relationship between the expression levels of the two EEF1A isoforms viz. EEF1A1 and EEF1A2, in most of the cancer types. Our results suggest that translation elongation factors can have a role in tumorigenesis and affect survival in cancer specific manner. Elongation factors have potential to serve as biomarkers and therapeutic drug targets, yet further study is required. Reciprocal relationship of differential expression between EEF1A isoforms observed in multiple cancer types indicates opposing roles in cancer and needs further investigation."	"HIC2 regulates isoform switching during maturation of the cardiovascular system. Physiological changes during embryonic development are associated with changes in the isoform expression of both myocyte sarcomeric proteins and of erythrocyte haemoglobins. Cell type-specific isoform expression of these genes also occurs. Although these changes appear to be coordinated, it is unclear how changes in these disparate cell types may be linked. The transcription factor Hic2 is required for normal cardiac development and the mutant is embryonic lethal. Hic2 embryos exhibit precocious expression of the definitive-lineage haemoglobin Hbb-bt in circulating primitive erythrocytes and of foetal isoforms of cardiomyocyte genes (creatine kinase, Ckm, and eukaryotic elongation factor Eef1a2) as well as ectopic cardiac expression of fast-twitch skeletal muscle troponin isoforms. We propose that HIC2 regulates a switching event within both the contractile machinery of cardiomyocytes and the oxygen carrying systems during the developmental period where demands on cardiac loading change rapidly."	"Inhibition of neuroblastoma proliferation by PF-3758309, a small-molecule inhibitor that targets p21-activated kinase 4. Neuroblastoma is the most common extracranial solid childhood tumor. Despite the availability of advanced multimodal therapy, high-risk patients still have low survival rates. p21-activated kinase 4 (PAK4) has been shown to regulate many cellular processes in cancer cells, including migration, polarization and proliferation. However, the role of PAK4 in neuroblastoma remains unclear. In the present study, we demonstrated that PAK4 was overexpressed in neuroblastoma tissues and was correlated with tumor malignance and prognosis. To investigate the function of PAK4 in neuroblastoma, we used a small-molecule inhibitor that targets PAK4, that is, PF-3758309. Our results showed that PF-3758309 significantly induced cell cycle arrest at the G1 phase and apoptosis in neuroblastoma cell lines. Meanwhile, the inhibition of PAK4 by PF-3758309 increased the expression of CDKN1A, BAD and BAK1 and decreased the expression of Bcl-2 and Bax. In addition, we screened the target genes of PAK4 by PCR array and found that 23 genes were upregulated (including TP53I3, TBX3, EEF1A2, CDKN1A, IFNB1 and MAPK8IP2) and 20 genes were downregulated (including TNFSF8, Bcl2-A1, Bcl2L1, SOCS3, BIRC3 and NFKB1) after PAK4 inhibition by PF-3758309. Moreover, PAK4 was found to regulate the cell cycle and apoptosis via the ERK signaling pathway. In conclusion, the present study demonstrated, for the first time, the expression and function of PAK4 in neuroblastomas and the inhibitory effect of PF-3758309, which deserves further investigation as an alternative strategy for neuroblastoma treatment."	"The EEF1A2 gene expression as risk predictor in localized prostate cancer. Besides clinical stage and Gleason score, risk-stratification of prostate cancer in the pretherapeutic setting mainly relies on the serum PSA level. Yet, this is associated with many uncertainties. With regard to therapy decision-making, additional markers are needed to allow an exact risk prediction. Eukaryotic translation elongation factor 1 alpha 2 (EEF1A2) was previously suggested as driver of tumor progression and potential biomarker. In the present study its functional and prognostic relevance in prostate cancer was investigated. EEF1A2 expression was analyzed in two cohorts of patients (n = 40 and n = 59) with localized PCa. Additionally data from two large expression dataset (MSKCC, Cell, 2010 with n = 131 localized, n = 19 metastatic PCa and TCGA provisional data, n = 499) of PCa patients were reanalyzed. The expression of EEF1A2 was correlated with histopathology features and biochemical recurrence (BCR). To evaluate the influence of EEF1A2 on proliferation and migration of metastatic PC3 cells, siRNA interference was used. Statistical significance was tested with t-test, Mann-Whitney-test, Pearson correlation and log-rank test. qRT-PCR revealed EEF1A2 to be significantly overexpressed in PCa tissue, with an increase according to tumor stage in one cohort (p = 0.0443). In silico analyses in the MSKCC cohort confirmed the overexpression of EEF1A2 in localized PCa with high Gleason score (p = 0.0142) and in metastatic lesions (p = 0.0038). Patients with EEF1A2 overexpression had a significantly shorter BCR-free survival (p = 0.0028). EEF1A2 expression was not correlated with serum PSA levels. Similar results were seen in the TCGA cohort, where EEF1A2 overexpression only occurred in tumors with Gleason 7 or higher. Patients with elevated EEF1A2 expression had a significantly shorter BCR-free survival (p = 0.043). EEF1A2 knockdown significantly impaired the migration, but not the proliferation of metastatic PC3 cells. The overexpression of EEF1A2 is a frequent event in localized PCa and is associated with histopathology features and a shorter biochemical recurrence-free survival. Due to its independence from serum PSA levels, EEF1A2 could serve as valuable biomarker in risk-stratification of localized PCa."	"Homozygous EEF1A2 mutation causes dilated cardiomyopathy, failure to thrive, global developmental delay, epilepsy and early death. Eukaryotic elongation factor 1A (EEF1A), is encoded by two distinct isoforms, EEF1A1 and EEF1A2; whereas EEF1A1 is expressed almost ubiquitously, EEF1A2 expression is limited such that it is only detectable in skeletal muscle, heart, brain and spinal cord. Currently, the role of EEF1A2 in normal cardiac development and function is unclear. There have been several reports linking de novo dominant EEF1A2 mutations to neurological issues in humans. We report a pair of siblings carrying a homozygous missense mutation p.P333L in EEF1A2 who exhibited global developmental delay, failure to thrive, dilated cardiomyopathy and epilepsy, ultimately leading to death in early childhood. A third sibling also died of a similar presentation, but DNA was unavailable to confirm the mutation. Functional genomic analysis was performed in S. cerevisiae and zebrafish. In S. cerevisiae, there was no evidence for a dominant-negative effect. Previously identified putative de novo mutations failed to complement yeast strains lacking the EEF1A ortholog showing a major growth defect. In contrast, the introduction of the mutation seen in our family led to a milder growth defect. To evaluate its function in zebrafish, we knocked down eef1a2 expression using translation blocking and splice-site interfering morpholinos. EEF1A2-deficient zebrafish had skeletal muscle weakness, cardiac failure and small heads. Human EEF1A2 wild-type mRNA successfully rescued the morphant phenotype, but mutant RNA did not. Overall, EEF1A2 appears to be critical for normal heart function in humans, and its deficiency results in clinical abnormalities in neurologic function as well as in skeletal and cardiac muscle defects."	"Structural rationale for the cross-resistance of tumor cells bearing the A399V variant of elongation factor eEF1A1 to the structurally unrelated didemnin B, ternatin, nannocystin A and ansatrienin B. At least four classes of structurally distinct natural products with potent antiproliferative activities target the translation elongation factor eEF1A1, which is best known as the G-protein that delivers amino acyl transfer RNAs (aa-tRNAs) to ribosomes during mRNA translation. We present molecular models in atomic detail that provide a common structural basis for the high-affinity binding of didemnin B, ternatin, ansatrienin B and nannocystin A to eEF1A1, as well as a rationale based on molecular dynamics results that accounts for the deleterious effect of replacing alanine 399 with valine. The proposed binding site, at the interface between domains I and III, is eminently hydrophobic and exists only in the GTP-bound conformation. Drug binding at this site is expected to disrupt neither loading of aa-tRNAs nor GTP hydrolysis but would give rise to stabilization of this particular conformational state, in consonance with reported experimental findings. The experimental solution of the three-dimensional structure of mammalian eEF1A1 has proved elusive so far and the highly homologous eEF1A2 from rabbit muscle has been crystallized and solved only as a homodimer in a GDP-bound conformation. Interestingly, in this dimeric structure the large interdomain cavity where the drugs studied are proposed to bind is occupied by a mostly hydrophobic α-helix from domain I of the same monomer. Since binding of this α-helix and any of these drugs to domain III of eEF1A(1/2) is, therefore, mutually exclusive and involves two distinct protein conformations, one intriguing possibility that emerges from our study is that the potent antiproliferative effect of these natural products may arise not only from inhibition of protein synthesis, which is the current dogma, but also from interference with some other non-canonical functions. From this standpoint, this type of drugs could be considered antagonists of eEF1A1/2 oligomerization, a hypothesis that opens up novel areas of research."	"METTL21B Is a Novel Human Lysine Methyltransferase of Translation Elongation Factor 1A: Discovery by CRISPR/Cas9 Knockout. Lysine methylation is widespread on human proteins, however the enzymes that catalyze its addition remain largely unknown. This limits our capacity to study the function and regulation of this modification. Here we used the CRISPR/Cas9 system to knockout putative protein methyltransferases METTL21B and METTL23 in K562 cells, to determine if they methylate elongation factor eEF1A. The known eEF1A methyltransferase EEF1AKMT1 was also knocked out as a control. Targeted mass spectrometry revealed the loss of lysine 165 methylation upon knockout of METTL21B, and the expected loss of lysine 79 methylation on knockout of EEF1AKMT1 No loss of eEF1A methylation was seen in the METTL23 knockout. Recombinant METTL21B was shown in vitro to catalyze methylation on lysine 165 in eEF1A1 and eEF1A2, confirming it as the methyltransferase responsible for this methylation site. Proteomic analysis by SILAC revealed specific upregulation of large ribosomal subunit proteins in the METTL21B knockout, and changes to further processes related to eEF1A function in knockouts of both METTL21B and EEF1AKMT1 This indicates that the methylation of lysine 165 in human eEF1A has a very specific role. METTL21B exists only in vertebrates, with its target lysine showing similar evolutionary conservation. We suggest METTL21B be renamed eEF1A-KMT3. This is the first study to specifically generate CRISPR/Cas9 knockouts of putative protein methyltransferase genes, for substrate discovery and site mapping. Our approach should prove useful for the discovery of further novel methyltransferases, and more generally for the discovery of sites for other protein-modifying enzymes."	"Biallelic mutations in the gene encoding eEF1A2 cause seizures and sudden death in F0 mice. De novo heterozygous missense mutations in the gene encoding translation elongation factor eEF1A2 have recently been found to give rise to neurodevelopmental disorders. Children with mutations in this gene have developmental delay, epilepsy, intellectual disability and often autism; the most frequently occurring mutation is G70S. It has been known for many years that complete loss of eEF1A2 in mice causes motor neuron degeneration and early death; on the other hand heterozygous null mice are apparently normal. We have used CRISPR/Cas9 gene editing in the mouse to mutate the gene encoding eEF1A2, obtaining a high frequency of biallelic mutations. Whilst many of the resulting founder (F0) mice developed motor neuron degeneration, others displayed phenotypes consistent with a severe neurodevelopmental disorder, including sudden unexplained deaths and audiogenic seizures. The presence of G70S protein was not sufficient to protect mice from neurodegeneration in G70S/- mice, showing that the mutant protein is essentially non-functional."	"De novo sequencing and comparative analysis of testicular transcriptome from different reproductive phases in freshwater spotted snakehead Channa punctatus. The spotted snakehead Channa punctatus is a seasonally breeding teleost widely distributed in the Indian subcontinent and economically important due to high nutritional value. The declining population of C. punctatus prompted us to focus on genetic regulation of its reproduction. The present study carried out de novo testicular transcriptome sequencing during the four reproductive phases and correlated differential expression of transcripts with various testicular events in C. punctatus. The Illumina paired-end sequencing of testicular transcriptome from resting, preparatory, spawning and postspawning phases generated 41.94, 47.51, 61.81 and 44.45 million reads, and 105526, 105169, 122964 and 106544 transcripts, respectively. Transcripts annotated using Rattus norvegicus reference protein sequences and classified under various subcategories of biological process, molecular function and cellular component showed that the majority of the subcategories had highest number of transcripts during spawning phase. In addition, analysis of transcripts exhibiting differential expression during the four phases revealed an appreciable increase in upregulated transcripts of biological processes such as cell proliferation and differentiation, cytoskeleton organization, response to vitamin A, transcription and translation, regulation of angiogenesis and response to hypoxia during spermatogenically active phases. The study also identified significant differential expression of transcripts relevant to spermatogenesis (mgat3, nqo1, hes2, rgs4, cxcl2, alcam, agmat), steroidogenesis (star, tkt, gipc3), cell proliferation (eef1a2, btg3, pif1, myo16, grik3, trim39, plbd1), cytoskeletal organization (espn, wipf3, cd276), sperm development (klhl10, mast1, hspa1a, slc6a1, ros1, foxj1, hipk1), and sperm transport and motility (hint1, muc13). Analysis of functional annotation and differential expression of testicular transcripts depending on reproductive phases of C. punctatus helped in developing a comprehensive understanding on genetic regulation of spermatogenic and steroidogenic events in seasonally breeding teleosts. Our findings provide the basis for future investigation on the precise role of testicular genes in regulation of seasonal reproduction in male teleosts."	"Dissecting the role of the elongation factor 1A isoforms in hepatocellular carcinoma cells by liposome-mediated delivery of siRNAs. Eukaryotic elongation factor 1A (eEF1A), a protein involved in protein synthesis, has two major isoforms, eEF1A1 and eEF1A2. Despite the evidences of their involvement in hepatocellular carcinoma (HCC), the quantitative contribution of each of the two isoforms to the disease is unknown. We depleted the two isoforms by means of siRNAs and studied the effects in three different HCC cell lines. Particular care was dedicated to select siRNAs able to target each of the two isoform without affecting the other one. This is not a trivial aspect due to the high sequence homology between eEF1A1 and eEF1A2. The selected siRNAs can specifically deplete either eEF1A1 or eEF1A2. This, in turn, results in an impairment of cell vitality, growth and arrest in the G1/G0 phase of the cell cycle. Notably, these effects are quantitatively superior following eEF1A1 than eEF1A2 depletion. Moreover, functional tests revealed that the G1/G0 block induced by eEF1A1 depletion depends on the down-regulation of the transcription factor E2F1, a known player in HCC. In conclusion, our data indicate that the independent targeting of the two eEF1A isoforms is effective in reducing HCC cell growth and that eEF1A1 depletion may result in a more evident effect."	"Efficient and versatile CRISPR engineering of human neurons in culture to model neurological disorders. The recent identification of multiple new genetic causes of neurological disorders highlights the need for model systems that give experimental access to the underlying biology. In particular, the ability to couple disease-causing mutations with human neuronal differentiation systems would be beneficial. Gene targeting is a well-known approach for dissecting gene function, but low rates of homologous recombination in somatic cells (including neuronal cells) have traditionally impeded the development of robust cellular models of neurological disorders. Recently, however, CRISPR/Cas9 gene editing technologies have expanded the number of systems within which gene targeting is possible. Here we adopt as a model system LUHMES cells, a commercially available diploid human female mesencephalic cell line that differentiates into homogeneous mature neurons in 1-2 weeks. We describe optimised methods for transfection and selection of neuronal progenitor cells carrying targeted genomic alterations using CRISPR/Cas9 technology. By targeting the endogenous X-linked MECP2 locus, we introduced four independent missense mutations that cause the autism spectrum disorder Rett syndrome and observed the desired genetic structure in 3-26% of selected clones, including gene targeting of the inactive X chromosome. Similar efficiencies were achieved by introducing neurodevelopmental disorder-causing mutations at the autosomal EEF1A2 locus on chromosome 20. Our results indicate that efficiency of genetic &quot;knock-in&quot; is determined by the location of the mutation within the donor DNA molecule. Furthermore, we successfully introduced an mCherry tag at the MECP2 locus to yield a fusion protein, demonstrating that larger insertions are also straightforward in this system. We suggest that our optimised methods for altering the genome of LUHMES cells make them an attractive model for the study of neurogenetic disorders."	"Inappropriate expression of the translation elongation factor 1A disrupts genome stability and metabolism. The translation elongation factor eEF1A is one of the most abundant proteins found within cells, and its role within protein synthesis is well documented. Levels of eEF1A are tightly controlled, with inappropriate expression linked to oncogenesis. However, the mechanisms by which increased eEF1A expression alters cell behaviour are unknown. Our analyses in yeast suggest that elevation of eEF1A levels leads to stabilisation of the spindle pole body and changes in nuclear organisation. Elevation of the eEF1A2 isoform also leads to altered nuclear morphology in cultured human cells, suggesting a conserved role in maintaining genome stability. Gene expression and metabolomic analyses reveal that the level of eEF1A is crucial for the maintenance of metabolism and amino acid levels in yeast, most likely because of its role in the control of vacuole function. Increased eEF1A2 levels trigger lysosome biogenesis in cultured human cells, also suggesting a conserved role within metabolic control mechanisms. Taken together, our data suggest that the control of eEF1A levels is important for the maintenance of a number of cell functions beyond translation and that its de-regulation might contribute to its oncogenic properties."	"Translation Elongation Factor eEF1A2 is a Novel Anticancer Target for the Marine Natural Product Plitidepsin. eEF1A2 is one of the isoforms of the alpha subunit of the eukaryotic Elongation Factor 1. It is overexpressed in human tumors and is endowed with oncogenic properties, favoring tumor cell proliferation while inhibiting apoptosis. We demonstrate that plitidepsin, an antitumor agent of marine origin that has successfully completed a phase-III clinical trial for multiple myeloma, exerts its antitumor activity by targeting eEF1A2. The drug interacts with eEF1A2 with a KD of 80 nM and a target residence time of circa 9 min. This protein was also identified as capable of binding [<sup>14</sup>C]-plitidepsin in a cell lysate from K-562 tumor cells. A molecular modelling approach was used to identify a favorable binding site for plitidepsin at the interface between domains 1 and 2 of eEF1A2 in the GTP conformation. Three tumor cell lines selected for at least 100-fold more resistance to plitidepsin than their respective parental cells showed reduced levels of eEF1A2 protein. Ectopic expression of eEF1A2 in resistant cells restored the sensitivity to plitidepsin. FLIM-phasor FRET experiments demonstrated that plitidepsin localizes in tumor cells sufficiently close to eEF1A2 as to suggest the formation of drug-protein complexes in living cells. Altogether, our results strongly suggest that eEF1A2 is the primary target of plitidepsin."	"Targeted sequencing of 351 candidate genes for epileptic encephalopathy in a large cohort of patients. Many genes are candidates for involvement in epileptic encephalopathy (EE) because one or a few possibly pathogenic variants have been found in patients, but insufficient genetic or functional evidence exists for a definite annotation. To increase the number of validated EE genes, we sequenced 26 known and 351 candidate genes for EE in 360 patients. Variants in 25 genes known to be involved in EE or related phenotypes were followed up in 41 patients. We prioritized the candidate genes, and followed up 31 variants in this prioritized subset of candidate genes. Twenty-nine genotypes in known genes for EE (19) or related diseases (10), dominant as well as recessive or X-linked, were classified as likely pathogenic variants. Among those, likely pathogenic de novo variants were found in EE genes that act dominantly, including the recently identified genes EEF1A2, KCNB1 and the X-linked gene IQSEC2. A de novo frameshift variant in candidate gene HNRNPU was the only de novo variant found among the followed-up candidate genes, and the patient's phenotype was similar to a few recent publications. Mutations in genes described in OMIM as, for example, intellectual disability gene can lead to phenotypes that get classified as EE in the clinic. We confirmed existing literature reports that de novo loss-of-function HNRNPUmutations lead to severe developmental delay and febrile seizures in the first year of life."	"Ser/Thr kinases and polyamines in the regulation of non-canonical functions of elongation factor 1A. The link between eukaryotic translation elongation factor 1A (eEF1A) and signal transduction pathways through the regulatory mechanism of phosphorylation has never been considered. In this review, we focus on the different kinases that recognize the Ser and Thr residues of the eEF1A1 and eEF1A2 isoforms and regulate their involvement in different cellular processes like cell survival and apoptosis. In this context, polyamines seem to play a role in the regulation of the translation elongation process by modulating the Ser/Thr kinases involved in the phosphorylation of translation elongation factors."	"Comparison of the ability of mammalian eEF1A1 and its oncogenic variant eEF1A2 to interact with actin and calmodulin. The question as to why a protein exerts oncogenic properties is answered mainly by well-established ideas that these proteins interfere with cellular signaling pathways. However, the knowledge about structural and functional peculiarities of the oncoproteins causing these effects is far from comprehensive. The 97.5% homologous tissue-specific A1 and A2 isoforms of mammalian translation elongation factor eEF1A represent an interesting model to study a difference between protein variants of a family that differ in oncogenic potential. We propose that the different oncogenic impact of A1 and A2 might be explained by differences in their ability to communicate with their respective cellular partners. Here we probed this hypothesis by studying the interaction of eEF1A with two known partners - calmodulin and actin. Indeed, an inability of the A2 isoform to interact with calmodulin is shown, while calmodulin is capable of binding A1 and interferes with its tRNA-binding and actin-bundling activities in vitro. Both A1 and A2 variants revealed actin-bundling activity; however, the form of bundles formed in the presence of A1 or A2 was distinctly different. Thus, a potential inability of A2 to be controlled by Ca2+-mediated regulatory systems is revealed."	"Novel de novo EEF1A2 missense mutations causing epilepsy and intellectual disability. Exome sequencing has led to the discovery of mutations in novel causative genes for epilepsy. One such gene is EEF1A2, encoding a neuromuscular specific translation elongation factor, which has been found to be mutated de novo in five cases of severe epilepsy. We now report on a further seven cases, each with a different mutation, of which five are newly described. New cases were identified and sequenced through the Deciphering Developmental Disabilities project, via direct contact with neurologists or geneticists, or recruited via our website. All the mutations cause epilepsy and intellectual disability, but with a much wider range of severity than previously identified. All new cases share specific subtle facial dysmorphic features. Each mutation occurs at an evolutionarily highly conserved amino acid position indicating strong structural or functional selective pressure. EEF1A2 should be considered as a causative gene not only in cases of epileptic encephalopathy but also in children with less severe epilepsy and intellectual disability. The emergence of a possible discernible phenotype, a broad nasal bridge, tented upper lip, everted lower lip and downturned corners of the mouth may help in identifying patients with mutations in EEF1A2."	"Identification of genes showing differential expression profile associated with growth rate in skeletal muscle tissue of Landrace weanling pig. Suppression subtractive hybridization was used to identify genes showing differential expression profile associated with growth rate in skeletal muscle tissue of Landrace weanling pig. Two subtracted cDNA populations were generated from musculus longissimus muscle tissues of selected pigs with extreme expected breeding values at the age of 100 kg. Three upregulated genes (EEF1A2, TSG101 and TTN) and six downregulated genes (ATP5B, ATP5C1, COQ3, HADHA, MYH1 and MYH7) in pig with genetic propensity for higher growth rate were identified by sequence analysis of 12 differentially expressed clones selected by differential screening following the generation of the subtracted cDNA population. Real-time PCR analysis confirmed difference in expression profiles of the identified genes in musculus longissimus muscle tissues between the two Landrace weanling pig groups with divergent genetic propensity for growth rate. Further, differential expression of the identified genes except for the TTN was validated by Western blot analysis. Additionally, the eight genes other than the ATP5C1 colocalized with the same chromosomal positions as QTLs that have been previously identified for growth rate traits. Finally, the changes of expression predicted from gene function suggested association of upregulation of expression of the EEF1A2, TSG101 and TTN genes and downregulation of the ATP5B, ATP5C1, COQ3, HADHA, MYH1 and MYH7 gene expression with increased growth rate. The identified genes will provide an important insight in understanding the molecular mechanism underlying growth rate in Landrace pig breed. "	"Eukaryotic elongation factor-1α 2 knockdown inhibits hepatocarcinogenesis by suppressing PI3K/Akt/NF-κB signaling. To assess the impact of eukaryotic elongation factor 1 alpha 2 (eEF1A2) on hepatocellular carcinoma (HCC) cell proliferation, apoptosis, migration and invasion, and determine the underlying mechanisms. eEF1A2 levels were detected in 62 HCC tissue samples and paired pericarcinomatous specimens, and the human HCC cell lines SK-HEP-1, HepG2 and BEF-7402, by real-time PCR and immunohistochemistry. Experimental groups included eEF1A2 silencing in BEL-7402 cells with lentivirus eEF1A2-shRNA (KD group) and eEF1A2 overexpression in SK-HEP-1 cells with eEF1A2 plasmid (OE group). Non-transfected cells (control group) and lentivirus-based empty vector transfected cells (NC group) were considered control groups. Cell proliferation (MTT and colony formation assays), apoptosis (Annexin V-APC assay), cell cycle (DNA ploidy assay), and migration and invasion (Transwell assays) were assessed. Protein levels of PI3K/Akt/NF-κB signaling effectors were evaluated by Western blot. eEF1A2 mRNA and protein levels were significantly higher in HCC cancer tissue samples than in paired pericarcinomatous and normal specimens. SK-HEP-1 cells showed lower eEF1A2 mRNA levels; HepG2 and BEL-7402 cells showed higher eEF1A2 mRNA levels, with BEL-7402 cells displaying the highest amount. Efficient eEF1A2 silencing resulted in reduced cell proliferation, migration and invasion, increased apoptosis, and induced cell cycle arrest. The PI3K/Akt/NF-κB signaling pathway was notably inhibited. Inversely, eEF1A2 overexpression resulted in promoted cell proliferation, migration and invasion. eEF1A2, highly expressed in HCC, is a potential oncogene. Its silencing significantly decreases HCC tumorigenesis, likely by inhibiting PI3K/Akt/NF-κB signaling."	"Overexpression of PDZK1IP1, EEF1A2 and RPL41 genes in intrahepatic cholangiocarcinoma. Intrahepatic cholangiocarcinoma (iCCA) is an aggressive malignancy in the liver, which is associated with a poor prognosis. However, the molecular pathogenesis of iCCA remains unclear. RNA-Seq for tumor and para-tumor sample pairs enables the characterization of changes in the gene expression profiles of patients with iCCA. The present study analyzed RNA‑Seq data of seven iCCA para‑tumor and tumor sample pairs. Differential gene expression analysis demonstrated significant upregulation of PDZK1IP1, EEF1A2 and RPL41 (ENSG00000279483) genes in the iCCA samples when compared with the matched para‑tumor samples. Furthermore, genes associated with the immune system, metabolism and metabolic energy were significantly downregulated in the iCCA tumor tissues, indicating that this is involved in the pathogenesis of iCCA. The present study aimed to elucidate the gene expression patterns associated with the tumorigenesis of iCCA by comparing tumor and normal tissues, in order to isolate novel diagnostic factors for iCCA. "	"Comparative mRNA Expression of eEF1A Isoforms and a PI3K/Akt/mTOR Pathway in a Cellular Model of Parkinson's Disease. The PI3K/Akt/mTOR pathway is one of dysregulated pathways in Parkinson's disease (PD). Previous studies in nonneuronal cells showed that Akt regulation can be increased by eukaryotic protein elongation factor 1 alpha 2 (eEF1A2). eEF1A2 is proposed to contribute protection against apoptotic death, likely through activation of the PI3K/Akt pathway. Whether eEF1A2 plays a role in the prevention of cell death in PD has not been investigated. Recently, gene profiling on dopaminergic neurons from postmortem PD patients showed both upregulation and downregulation of some PI3K and mTOR genes. In this paper, the expression of all gene members of the PI3K/Akt/mTOR pathway in relation to those of the eEF1A isoforms in a cellular model of PD was investigated at the mRNA level. The results showed a similar trend of upregulation of genes of the eEF1A isoforms (eEF1A1 and eEF1A2) and of the PI3K (classes I-III)/Akt (Akt1, Akt2, and Akt3)/mTOR (mTORC1 and mTORC2) pathway in both nondifferentiated and differentiated SH-SY5Y dopaminergic cells treated with 1-methyl-4-phenylpyridinium (MPP(+)). Upregulation of eEF1A2, Akt1, and mTORC1 was consistent with the relative increase of eEF1A2, Akt, phospho-Akt, and mTORC1 proteins. The possible role of eEF1A isoforms in the regulation of the PI3K/Akt/mTOR pathway in PD is discussed. "	"MLIF Alleviates SH-SY5Y Neuroblastoma Injury Induced by Oxygen-Glucose Deprivation by Targeting Eukaryotic Translation Elongation Factor 1A2. Monocyte locomotion inhibitory factor (MLIF), a heat-stable pentapeptide, has been shown to exert potent anti-inflammatory effects in ischemic brain injury. In this study, we investigated the neuroprotective action of MLIF against oxygen-glucose deprivation (OGD)-induced injury in human neuroblastoma SH-SY5Y cells. MTT assay was used to assess cell viability, and flow cytometry assay and Hoechst staining were used to evaluate apoptosis. LDH assay was used to exam necrosis. The release of inflammatory cytokines was detected by ELISA. Levels of the apoptosis associated proteins were measured by western blot analysis. To identify the protein target of MLIF, pull-down assay and mass spectrometry were performed. We observed that MLIF enhanced cell survival and inhibited apoptosis and necrosis by inhibiting p-JNK, p53, c-caspase9 and c-caspase3 expression. In the microglia, OGD-induced secretion of inflammatory cytokines was markedly reduced in the presence of MLIF. Furthermore, we found that eukaryotic translation elongation factor 1A2 (eEF1A2) is a downstream target of MLIF. Knockdown eEF1A2 using short interfering RNA (siRNA) almost completely abrogated the anti-apoptotic effect of MLIF in SH-SY5Y cells subjected to OGD, with an associated decrease in cell survival and an increase in expression of p-JNK and p53. These results indicate that MLIF ameliorates OGD-induced SH-SY5Y neuroblastoma injury by inhibiting the p-JNK/p53 apoptotic signaling pathway via eEF1A2. Our findings suggest that eEF1A2 may be a new therapeutic target for ischemic brain injury. "	"Identification of novel genetic causes of Rett syndrome-like phenotypes. The aim of this work was to identify new genetic causes of Rett-like phenotypes using array comparative genomic hybridisation and a whole exome sequencing approach. We studied a cohort of 19 Portuguese patients (16 girls, 3 boys) with a clinical presentation significantly overlapping Rett syndrome (RTT). Genetic analysis included filtering of the single nucleotide variants and indels with preference for de novo, homozygous/compound heterozygous, or maternally inherited X linked variants. Examination by MRI and muscle biopsies was also performed. Pathogenic genomic imbalances were found in two patients (10.5%): an 18q21.2 deletion encompassing four exons of the TCF4 gene and a mosaic UPD of chromosome 3. Variants in genes previously implicated in neurodevelopmental disorders (NDD) were identified in six patients (32%): de novo variants in EEF1A2, STXBP1 and ZNF238 were found in three patients, maternally inherited X linked variants in SLC35A2, ZFX and SHROOM4 were detected in two male patients and one homozygous variant in EIF2B2 was detected in one patient. Variants were also detected in five novel NDD candidate genes (26%): we identified de novo variants in the RHOBTB2, SMARCA1 and GABBR2 genes; a homozygous variant in EIF4G1; compound heterozygous variant in HTT. Network analysis reveals that these genes interact by means of protein interactions with each other and with the known RTT genes. These findings expand the phenotypical spectrum of previously known NDD genes to encompass RTT-like clinical presentations and identify new candidate genes for RTT-like phenotypes."	"Two cases of early-onset myoclonic seizures with continuous parietal delta activity caused by EEF1A2 mutations. Mutations in the elongation factor 1 alpha 2 (EEF1A2) gene have recently been shown to cause severe intellectual disability with early-onset epilepsy. The specific manifestations of mutations in this gene remain unknown. We report two cases of severe intellectual disability accompanied by early-onset epilepsy with continuous delta activity evident on electroencephalography. Both cases presented with developmental delay and repetitive myoclonic seizures in early infancy. Both cases showed continuous high-voltage delta activity over both parietal areas when awake, as revealed by interictal electroencephalograms. After the emergence of continuous delta activity, development stagnated. One case showed some development after relief of the seizures and epileptic activity, but drug resistant seizures recurred, and the development again became stagnant. In both cases, a de novo recurrent heterozygous mutation in EEF1A2 [c.364G&gt;A (p.E122K)] was identified by whole-exome sequencing. This report provides clinical data on epileptic encephalopathy in patients with EEF1A2 mutation. Continuous high-voltage delta activity seen over both parietal areas may be a unique manifestation of EEF1A2 mutation. Epileptic activity may aggravate the effect of the mutation on brain development."	"Human eukaryotic elongation factor 1A forms oligomers through specific cysteine residues. Eukaryotic elongation factor 1A (eEF1A) is a multifunctional protein involved in bundling actin, severing microtubule, activating the phosphoinositol-4 kinase, and recruiting aminoacyl-tRNAs to ribosomes during protein biosynthesis. Although evidence has shown the presence of the isoform eEF1A1 oligomers, the substantial mechanism of the self-association remains unclear. Herein, we found that human eEF1A1 could spontaneously form oligomers. Specifically, mutagenesis screen on cysteine residues demonstrated that Cys(234) was essential for eEF1A1 oligomerization. In addition, we also found that hydrogen peroxide treatment could induce the formation of eEF1A oligomers in cells. By cysteine replacement, eEF1A2 isoform displayed the ability to oligomerize in cells under the oxidative environment. In summary, in this study we characterized eEF1A1 oligomerization and demonstrated that specific cysteine residues are required for this oligomerization activity. "	"New insights on the interaction between the isoforms 1 and 2 of human translation elongation factor 1A. The eukaryotic translation elongation factor 1A (eEF1A) is a moonlighting protein that besides to its canonical role in protein synthesis is also involved in many other cellular processes such as cell survival and apoptosis. In a previous work, we identified eEF1A Raf-mediated phosphorylation sites and defined their role in the regulation of eEF1A half-life and apoptosis of human cancer cells. We proposed that the phosphorylation of eEF1A by C-Raf required the presence of both eEF1A isoforms thus suggesting the formation of a potential eEF1A heterodimer owning regulatory properties. This study aimed at investigating the cellular localization and interaction between two eEF1A isoforms. To this end, we developed chimera proteins by adding at the N-terminal end of both eEF1A1 and eEF1A2 cyan fluorescence protein (mCerulean) and yellow fluorescence protein (mVenus), respectively. The fluorescent eEF1A1 and eEF1A2 chimeras were both addressed to COS-7 cells and found co-localized in the cytoplasm at the level of cellular membranes. We highlighted FRET between the labeled N-termini of eEF1A isoforms. The intra-molecular FRET of this chimera was about 17%. Our results provide novel information on the intracellular distribution and interaction of eEF1A isoforms. "	"Nannocystin A: an Elongation Factor 1 Inhibitor from Myxobacteria with Differential Anti-Cancer Properties. Cultivation of myxobacteria of the Nannocystis genus led to the isolation and structure elucidation of a class of novel cyclic lactone inhibitors of elongation factor 1. Whole genome sequence analysis and annotation enabled identification of the putative biosynthetic cluster and synthesis process. In biological assays the compounds displayed anti-fungal and cytotoxic activity. Combined genetic and proteomic approaches identified the eukaryotic translation elongation factor 1α (EF-1α) as the primary target for this compound class. Nannocystin A (1) displayed differential activity across various cancer cell lines and EEF1A1 expression levels appear to be the main differentiating factor. Biochemical and genetic evidence support an overlapping binding site of 1 with the anti-cancer compound didemnin B on EF-1α. This myxobacterial chemotype thus offers an interesting starting point for further investigations of the potential of therapeutics targeting elongation factor 1."	"Molecular changes in endometriosis-associated ovarian clear cell carcinoma. Endometriosis is frequently associated with and thought of having propensity to develop into ovarian clear cell carcinoma (OCCC), although the molecular transformation mechanism is not completely understood. We employed immunohistochemical (IHC) staining for marker expression along the potential progression continuum. Expression profiling of microdissected endometriotic and OCCC cells from patient-matched formalin-fixed, paraffin-embedded samples was performed to explore the carcinogenic pathways. Function of novel biomarkers was confirmed by knockdown experiments. PTEN was significantly lost in both endometriosis and invasive tumour tissues, while oestrogen receptor (ER) expression was lost in OCCC relative to endometriosis. XRCC5, PTCH2, eEF1A2 and PPP1R14B were significantly overexpressed in OCCC and associated endometriosis, but not in benign endometriosis (p ⩽ 0.004). Knockdown experiments with XRCC5 and PTCH2 in a clear cell cancer cell line resulted in significant growth inhibition. There was also significant silencing of a panel of target genes with histone H3 lysine 27 trimethylation, a signature of polycomb chromatin-remodelling complex in OCCC. IHC confirmed the loss of expression of one such polycomb target gene, the serous ovarian cancer lineage marker Wilms' tumour protein 1 (WT1) in OCCC, while endometriotic tissues showed significant co-expression of WT1 and ER. Loss of PTEN expression is proposed as an early and permissive event in endometriosis development, while the loss of ER and polycomb-mediated transcriptional reprogramming for pluripotency may play an important role in the ultimate transformation process. Our study provides new evidence to redefine the pathogenic programme for lineage-specific transformation of endometriosis to OCCC."	"ERRγ target genes are poor prognostic factors in Tamoxifen-treated breast cancer. One-third of estrogen (ER+) and/or progesterone receptor-positive (PGR+) breast tumors treated with Tamoxifen (TAM) do not respond to initial treatment, and the remaining 70% are at risk to relapse in the future. Estrogen-related receptor gamma (ESRRG, ERRγ) is an orphan nuclear receptor with broad, structural similarities to classical ER that is widely implicated in the transcriptional regulation of energy homeostasis. We have previously demonstrated that ERRγ induces resistance to TAM in ER+ breast cancer models, and that the receptor's transcriptional activity is modified by activation of the ERK/MAPK pathway. We hypothesize that hyper-activation or over-expression of ERRγ induces a pro-survival transcriptional program that impairs the ability of TAM to inhibit the growth of ER+ breast cancer. The goal of the present study is to determine whether ERRγ target genes are associated with reduced distant metastasis-free survival (DMFS) in ER+ breast cancer treated with TAM. Raw gene expression data was obtained from 3 publicly available breast cancer clinical studies of women with ER+ breast cancer who received TAM as their sole endocrine therapy. ERRγ target genes were selected from 2 studies that published validated chromatin immunoprecipitation (ChIP) analyses of ERRγ promoter occupancy. Kaplan-Meier estimation was used to determine the association of ERRγ target genes with DMFS, and selected genes were validated in ER+, MCF7 breast cancer cells that express exogenous ERRγ. Thirty-seven validated receptor target genes were statistically significantly altered in women who experienced a DM within 5 years, and could classify several independent studies into poor vs. good DMFS. Two genes (EEF1A2 and PPIF) could similarly separate ER+, TAM-treated breast tumors by DMFS, and their protein levels were measured in an ER+ breast cancer cell line model with exogenous ERRγ. Finally, expression of ERRγ and these two target genes are elevated in models of ER+ breast cancer with hyperactivation of ERK/MAPK. ERRγ signaling is associated with poor DMFS in ER+, TAM-treated breast cancer, and ESRRG, EEF1A2, and PPIF comprise a 3-gene signaling node that may contribute to TAM resistance in the context of an active ERK/MAPK pathway."	"Array-comparative genomic hybridization analysis of a cohort of Saudi patients with epilepsy. Specific genetic anomalies or non-genetic factors could lead to epilepsy, but in various cases the underlying cause is unknown. Novel technologies, such as array comparative genomic hybridization, may reveal the copy number variants (CNVs), established as significant risk factor for epilepsy. This study carried out a high-density whole genome array- comparative genomic hybridization analysis with blood DNA samples from a cohort of twenty epilepsy patients to search for CNVs associated with epilepsy. Microdeletion of 14q31.1 was observed in four patients including two from the same family with loss of the NRXN3 gene; microdeletion of 15q12 in one patient with loss of the GABRG3 gene, and microduplication of 20q13.33 in three patients with loss of the gene group CHRNA4, KCNQ2, EEF1A2 and PPDPF were also found. These CNV findings were confirmed by real-time quantitative polymerase chain reaction. We have described, for the first time, numerous potential CNVs/genes implicated in epilepsy in the Saudi population. The study presents a better description of the genetic variations in epilepsy, and would eventually enable us to provide a foundation for understanding the critical genome regions which might be involved in the development of epilepsy. "	"The eEF1A Proteins: At the Crossroads of Oncogenesis, Apoptosis, and Viral Infections. Eukaryotic translation elongation factors 1 alpha, eEF1A1 and eEF1A2, are not only translation factors but also pleiotropic proteins that are highly expressed in human tumors, including breast cancer, ovarian cancer, and lung cancer. eEF1A1 modulates cytoskeleton, exhibits chaperone-like activity and also controls cell proliferation and cell death. In contrast, eEF1A2 protein favors oncogenesis as shown by the fact that overexpression of eEF1A2 leads to cellular transformation and gives rise to tumors in nude mice. The eEF1A2 protein stimulates the phospholipid signaling and activates the Akt-dependent cell migration and actin remodeling that ultimately favors tumorigenesis. In contrast, inactivation of eEF1A proteins leads to immunodeficiency, neural and muscular defects, and favors apoptosis. Finally, eEF1A proteins interact with several viral proteins resulting in enhanced viral replication, decreased apoptosis, and increased cellular transformation. This review summarizes the recent findings on eEF1A proteins indicating that eEF1A proteins play a critical role in numerous human diseases through enhancement of oncogenesis, blockade of apoptosis, and increased viral pathogenesis. "	"Validation of reference genes for quantitative real-time PCR in Périgord black truffle (Tuber melanosporum) developmental stages. The symbiotic fungus Tuber melanosporum Vittad. (Périgord black truffle) belongs to the Ascomycota and forms mutualistic symbiosis with tree and shrub roots. This truffle has a high value in a global market and is cultivated in many countries of both hemispheres. The publication of the T. melanosporum genome has given researchers unique opportunities to learn more about the biology of the fungus. Real-time quantitative PCR (qRT-PCR) is a definitive technique for quantitating differences in transcriptional gene expression levels between samples. To facilitate gene expression studies and obtain more accurate qRT-PCR data, normalization relative to stable housekeeping genes is required. These housekeeping genes must show stable expression under given experimental conditions for the qRT-PCR results to be accurate. Unfortunately, there are no studies on the stability of housekeeping genes used in T. melanosporum development. In this study, we present a morphological and microscopical classification of the developmental stages of T. melanosporum fruit body, and investigate the expression levels of 12 candidate reference genes (18S rRNA; 5.8S rRNA; Elongation factor 1-alpha; Elongation factor 1-beta; α-tubulin; 60S ribosomal protein L29; β-tubulin; 40S ribosomal protein S1; 40S ribosomal protein S3; Glucose-6-phosphate dehydrogenase; β-actin; Ubiquitin-conjugating enzyme). To evaluate the suitability of these genes as endogenous controls, five software-based approaches and one web-based comprehensive tool (RefFinder) were used to analyze and rank the tested genes. We demonstrate here that the 18S rRNA gene shows the most stable expression during T. melanosporum development and that a set of three genes, 18S rRNA, Elongation factor 1-alpha and 40S ribosomal protein S3, is the most suitable to normalize qRT-PCR data from all the analyzed developmental stages; conversely, 18S rRNA, Glucose-6-phosphate dehydrogenase and Elongation factor 1-alpha are the most suitable genes for fruiting body developmental stages. "	"Porcine EEF1A1 and EEF1A2 genes: genomic structure, polymorphism, mapping and expression. Eukaryotic translation elongation factor 1 alpha (EEF1A) plays a key role in protein synthesis. In higher vertebrates EEF1A occurs in two isoforms, EEF1A1 and EEF1A2, encoded by distinct genes. The purpose of this study was to compare the two porcine genes as for the genomic sequence, gene organization and mRNA expression in different tissues, as well as to search for polymorphism and chromosomal assignment. Standard methods of DNA and mRNA analysis were used. We determined the complete genomic sequence of the porcine EEF1A1 and EEF1A2 genes. The two genes differ in the lengths of transcription units (3102 and 8588 bp, respectively), but have similar genomic organization and their coding sequences are highly similar (78% identity of coding sequences and 92.4% identity of amino acid sequences). Several polymorphisms in the two genes were detected. EEF1A1 and EEF1A2 were mapped to SSC1p11.1 and SSC17q23.3, respectively. mRNA of EEF1A1 was expressed in all studied tissues (the highest expression was in 44-day fetal muscle and low expression in adult liver and brain), while EEF1A2 was expressed only in skeletal-muscle, tongue, heart, diaphragm and brain tissues. EEF1A2 was not expressed in fetal muscle tissue (44 days). In this paper results are provided on genomic sequences, genomic organization, polymorphism, chromosomal assignment and spatial and temporal expressions of the porcine EEF1A1 and EEF1A2 genes. Novel polymorphisms were described in both genes. Porcine EEF1A2 was studied for the first time."	"miR-663 attenuates tumor growth and invasiveness by targeting eEF1A2 in pancreatic cancer. miR-663 is associated with many important biologic processes, such as the evolution, development, viral infection, inflammatory response, and carcinogenesis among vertebrates. However, the molecular function and mechanism of miR-663 in pancreatic cancer growth and invasion is still unclear. Western blot and real-time PCR were used to study the expression level of eEF1A2 protein and miR-663 in pancreatic cancer tissues and cell lines. The Pearson χ (2) test was used to determine the correlation between miR-663 expression and clinicopathologic features of patients. Patients' survival was analyzed using the Kaplan-Meier method, using the log-rank test for comparison. The biological function of miR-663 was examined by measuring cell growth, cell invasion and apoptosis analysis in vitro and in vivo. miR-663 target gene and signaling pathway was identified by luciferase activity assay and western blot. We found that, in pancreatic cancer, eEF1A2 was significantly upregulated but miR-663 was significantly downregulated. Further results showed that the expression level of eEF1A2 and miR-663 was strongly associated with TNM stage and node metastasis status of the patients. miR-663 and eEF1A2 were inversely correlated with each other, and the changes in the expression levels of each can also predict the survival of patients with pancreatic cancer. We identified miR-663 as a tumor attenuate molecular that attenuated the proliferation and invasion of pancreatic cancer cells both in vitro and in vivo. Finally, we confirmed that the expression of eEF1A2 can partially restore the pro-apoptotic and anti-invasion functions of miR-663. miR-663 attenuated the proliferation and invasion of pancreatic cells both in vitro and in vivo by directly targeting eEF1A2. miR-663 and eEF1A2 might be potential targets for the treatment of pancreatic cancer in the future."	"Overexpression of eukaryotic elongation factor 1 alpha-2 is associated with poorer prognosis in patients with gastric cancer. Eukaryotic elongation factor 1 alpha-2 (eEF1A2) is a protein translation factor involved in protein synthesis. It is overexpressed in various cancers, which indicates potential vital functions in tumorigenesis and progression. Our study aims to investigate the expression levels of eEF1A2 in gastric cancer and its roles in clinical practice. A total of 129 patients with pathologically confirmed gastric cancer and 24 normal controls were recruited for this study. The expression levels of eEF1A2 in gastric cancer and normal tissues were evaluated by tissue microarrays, quantitative real-time PCR, and western blot analysis. Kaplan-Meier analysis and Cox's proportional hazards model were used in survival analysis. Compared with corresponding controls, gastric cancer specimens had significantly increased expressions of eEF1A2 at mRNA and protein levels (both P &lt; 0.05). Moreover, multivariate analysis confirmed that overexpression of eEF1A2 was a significant and independent indicator for predicting poor prognosis of gastric cancer. Our results showed for the first time that overexpression of eEF1A2 was correlated with worse outcomes in gastric cancer patients, suggesting its critical roles in the carcinogenesis of gastric cancer."	"Independent overexpression of the subunits of translation elongation factor complex eEF1H in human lung cancer. The constituents of stable multiprotein complexes are known to dissociate from the complex to play independent regulatory roles. The components of translation elongation complex eEF1H (eEF1A, eEF1Bα, eEF1Bβ, eEF1Bγ) were found overexpressed in different cancers. To gain the knowledge about novel cancer-related translational mechanisms we intended to reveal whether eEF1H exists as a single unit or independent subunits in different human cancers. The changes in the expression level of every subunit of eEF1H in the human non-small-cell lung cancer tissues were examined. The localization of eEF1H subunits was assessed by immunohistochemistry methods, subcellular fractionation and confocal microscopy. The possibility of the interaction between the subunits was estimated by co-immunoprecipitation. The level of eEF1Bβ expression was increased more than two-fold in 36%, eEF1Bγ in 28%, eEF1A in 20% and eEF1Bα in 8% of tumor specimens. The cancer-induced alterations in the subunits level were found to be uncoordinated, therefore the increase in the level of at least one subunit of eEF1H was observed in 52% of samples. Nuclear localization of eEF1Bβ in the cancer rather than distal normal looking tissues was found. In cancer tissue, eEF1A and eEF1Bα were not found in nuclei while all four subunits of eEF1H demonstrated both cytoplasmic and nuclear appearance in the lung carcinoma cell line A549. Unexpectedly, in the A549 nuclear fraction eEF1A lost the ability to interact with the eEF1B complex. The results suggest independent functioning of some fraction of the eEF1H subunits in human tumors. The absence of eEF1A and eEF1B interplay in nuclei of A549 cells is a first evidence for non-translational role of nuclear-localized subunits of eEF1B. We conclude the appearance of the individual eEF1B subunits in tumors is a more general phenomenon than appreciated before and thus is a novel signal of cancer-related changes in translation apparatus."	"Characterisation of translation elongation factor eEF1B subunit expression in mammalian cells and tissues and co-localisation with eEF1A2. Translation elongation is the stage of protein synthesis in which the translation factor eEF1A plays a pivotal role that is dependent on GTP exchange. In vertebrates, eEF1A can exist as two separately encoded tissue-specific isoforms, eEF1A1, which is almost ubiquitously expressed, and eEF1A2, which is confined to neurons and muscle. The GTP exchange factor for eEF1A1 is a complex called eEF1B made up of subunits eEF1Bα, eEF1Bδ and eEF1Bγ. Previous studies have cast doubt on the ability of eEF1B to interact with eEF1A2, suggesting that this isoform might use a different GTP exchange factor. We show that eEF1B subunits are all widely expressed to varying degrees in different cell lines and tissues, and at different stages of development. We show that ablation of any of the subunits in human cell lines has a small but significant impact on cell viability and cycling. Finally, we show that both eEF1A1 and eEF1A2 colocalise with all eEF1B subunits, in such close proximity that they are highly likely to be in a complex. "	"Protumorigenic role of Timeless in hepatocellular carcinoma. The mammalian timeless (TIM) protein interacts with proteins of the endogenous clock and essentially contributes to the circadian rhythm. In addition, TIM is involved in maintenance of chromosome integrity, growth control and development. Thus, we hypothesized that TIM may exert a potential protumorigenic function in human hepatocarcinogenesis. TIM was overexpressed in a subset of human HCCs both at the mRNA and the protein level. siRNA-mediated knockdown of TIM reduced cell viability due to the induction of apoptosis and G2 arrest. The latter was mediated via CHEK2 phosphorylation. In addition, siRNA-treated cells showed a significantly reduced migratory capacity and reduced expression levels of various proteins. Mechanistically, TIM directly interacts with the eukaryotic elongation factor 1A2 (EEF1A2), which binds to actin filaments to promote tumor cell migration. siRNA-mediated knockdown of TIM reduced EEF1A2 protein levels thereby affecting ribosomal protein biosynthesis. Thus, overexpression of TIM exerts oncogenic function in human HCCs, which is mediated via CHEK2 and EEF1A2."	"[EEF1A2 inhibits the p53 function in hepatocellular carcinoma via PI3K/AKT/mTOR-dependent stabilization of MDM4]. Upregulation of mouse double minute 4 (MDM4) is a frequent event in human hepatocellular carcinoma (HCC) but the underlying molecular mechanisms are poorly characterized. In this study a potential role of the phosphoinositide-3-kinase/v-AKT murine thymoma viral oncogene homolog/mammalian target of rapamycin (PI3K/AKT/mTOR) cascade was investigated in the regulation of MDM4 in HCC. Inhibition of the PI3K-AKT and/or mTOR pathways lowered MDM4 protein levels in HCC cells. Mechanistic protection from proteasomal degradation resulted from de-ubiquitination by ubiquitin-specific protease 2a and AKT-mediated phosphorylation of MDM4, thus increasing MDM4 protein levels. These findings were corroborated in a chimeric AKT mouse model. Upregulation of PI3K/AKT/mTOR signaling may result from overexpression of the eukaryotic elongation factor 1A2 (EEF1A2). Finally, a strong association between the expression of EEF1A2, phosphorylated AKT and MDM4 was observed in human HCC samples. Strong activation of the EEF1A2/PI3K/AKT/mTOR/MDM4 signaling pathway was observed in HCC patients with short survival suggesting that targeting this axis might be a promising approach in a subset of HCC patients."	"Mammalian translation elongation factor eEF1A2: X-ray structure and new features of GDP/GTP exchange mechanism in higher eukaryotes. Eukaryotic elongation factor eEF1A transits between the GTP- and GDP-bound conformations during the ribosomal polypeptide chain elongation. eEF1A*GTP establishes a complex with the aminoacyl-tRNA in the A site of the 80S ribosome. Correct codon-anticodon recognition triggers GTP hydrolysis, with subsequent dissociation of eEF1A*GDP from the ribosome. The structures of both the 'GTP'- and 'GDP'-bound conformations of eEF1A are unknown. Thus, the eEF1A-related ribosomal mechanisms were anticipated only by analogy with the bacterial homolog EF-Tu. Here, we report the first crystal structure of the mammalian eEF1A2*GDP complex which indicates major differences in the organization of the nucleotide-binding domain and intramolecular movements of eEF1A compared to EF-Tu. Our results explain the nucleotide exchange mechanism in the mammalian eEF1A and suggest that the first step of eEF1A*GDP dissociation from the 80S ribosome is the rotation of the nucleotide-binding domain observed after GTP hydrolysis. "	"Co-expression analysis of fetal weight-related genes in ovine skeletal muscle during mid and late fetal development stages. Muscle development and lipid metabolism play important roles during fetal development stages. The commercial Texel sheep are more muscular than the indigenous Ujumqin sheep. We performed serial transcriptomics assays and systems biology analyses to investigate the dynamics of gene expression changes associated with fetal longissimus muscles during different fetal stages in two sheep breeds. Totally, we identified 1472 differentially expressed genes during various fetal stages using time-series expression analysis. A systems biology approach, weighted gene co-expression network analysis (WGCNA), was used to detect modules of correlated genes among these 1472 genes. Dramatically different gene modules were identified in four merged datasets, corresponding to the mid fetal stage in Texel and Ujumqin sheep, the late fetal stage in Texel and Ujumqin sheep, respectively. We further detected gene modules significantly correlated with fetal weight, and constructed networks and pathways using genes with high significances. In these gene modules, we identified genes like TADA3, LMNB1, TGF-β3, EEF1A2, FGFR1, MYOZ1, and FBP2 correlated with fetal weight. Our study revealed the complex network characteristics involved in muscle development and lipid metabolism during fetal development stages. Diverse patterns of the network connections observed between breeds and fetal stages could involve some hub genes, which play central roles in fetal development, correlating with fetal weight. Our findings could provide potential valuable biomarkers for selection of body weight-related traits in sheep and other livestock."	"Molecular docking uncovers TSPY binds more efficiently with eEF1A2 compared to eEF1A1. Testis-specific protein, Y-encoded (TSPY) binds to eukaryotic translation elongation factor 1 alpha (eEF1A) at its SET/NAP domain that is essential for the elongation during protein synthesis implicated with normal spermatogenesis. The eEF1A exists in two forms, eEF1A1 (alpha 1) and eEF1A2 (alpha 2), encoded by separate loci. Despite critical interplay of the TSPY and eEF1A proteins, literature remained silent on the residues playing significant roles during such interactions. We deduced 3D structures of TSPY and eEF1A variants by comparative modeling (Modeller 9.13) and assessed protein-protein interactions employing HADDOCK docking. Pairwise alignment using EMBOSS Needle for eEF1A1 and eEF1A2 proteins revealed high degree (~92%) of homology. Efficient binding of TSPY with eEF1A2 as compared to eEF1A1 was observed, in spite of the occurrence of significant structural similarities between the two variants. We also detected strong interactions of domain III followed by domains II and I of both eEF1A variants with TSPY. In the process, seven interacting residues of TSPY's NAP domain namely, Asp 175, Glu 176, Asp 179, Tyr 183, Asp 240, Glu 244, and Tyr 246 common to both eEF1A variants were detected. Additionally, six lysine residues observed in eEF1A2 suggest their possible role in TSPY-eEF1A2 complex formation essential for germ cell development and spermatogenesis. Thus, more efficient binding of TSPY with eEF1A2 as compared to that of eEF1A1 established autonomous functioning of these two variants. Studies on mutated protein following similar approach would uncover the causative obstruction, between the interacting partners leading to deeper understanding on the structure-function relationship. "	"Reference gene screening for analyzing gene expression across goat tissue. Real-time quantitative PCR (qRT-PCR) is one of the important methods for investigating the changes in mRNA expression levels in cells and tissues. Selection of the proper reference genes is very important when calibrating the results of real-time quantitative PCR. Studies on the selection of reference genes in goat tissues are limited, despite the economic importance of their meat and dairy products. We used real-time quantitative PCR to detect the expression levels of eight reference gene candidates (18S, TBP, HMBS, YWHAZ, ACTB, HPRT1, GAPDH and EEF1A2) in ten tissues types sourced from Boer goats. The optimal reference gene combination was selected according to the results determined by geNorm, NormFinder and Bestkeeper software packages. The analyses showed that tissue is an important variability factor in genes expression stability. When all tissues were considered, 18S, TBP and HMBS is the optimal reference combination for calibrating quantitative PCR analysis of gene expression from goat tissues. Dividing data set by tissues, ACTB was the most stable in stomach, small intestine and ovary, 18S in heart and spleen, HMBS in uterus and lung, TBP in liver, HPRT1 in kidney and GAPDH in muscle. Overall, this study provided valuable information about the goat reference genes that can be used in order to perform a proper normalisation when relative quantification by qRT-PCR studies is undertaken. "	"Up-regulation of eEF1A2 promotes proliferation and inhibits apoptosis in prostate cancer. eEF1A2 is a protein translation factor involved in protein synthesis, which possesses important function roles in cancer development. This study aims at investigating the expression pattern of eEF1A2 in prostate cancer and its potential role in prostate cancer development. We examined the expression level of eEF1A2 in 30 pairs of prostate cancer tissues by using RT-PCR and immunohistochemical staining (IHC). Then we applied siRNA specifically targeting eEF1A2 to down-regulate its expression in DU-145 and PC-3 cells. Flow cytometer was used to explore apoptosis and Western-blot was used to detect the pathway proteins of apoptosis. Our results showed that the expression level of eEF1A2 in prostate cancer tissues was significantly higher compared to their corresponding normal tissues. Reduction of eEF1A2 expression in DU-145 and PC-3 cells led to a dramatic inhibition of proliferation accompanied with enhanced apoptosis rate. Western blot revealed that apoptosis pathway proteins (caspase3, BAD, BAX, PUMA) were significantly up-regulated after suppression of eEF1A2. More importantly, the levels of eEF1A2 and caspase3 were inversely correlated in prostate cancer tissues. Our data suggests that eEF1A2 plays an important role in prostate cancer development, especially in inhibiting apoptosis. So eEF1A2 might serve as a potential therapeutic target in prostate cancer."	"[Preparation of monospecific antibodies against isoform 2 of translation elongation factor 1A (eEF1A2)]. Amino acid sequences of eukaryotic translation elongation factor isoform 1 (eEF1A1) and 2 (eEF1A2) were compared and two peptide fragments of eEF1A2 were chosen as linear antigenic determinants for generation of monospecific antipeptide antibodies. Selected peptides were synthesized, conjugated to bovine serum albumin (BSA) and used for mice immunizations. Antibodies, produced against the eEF1A2 fragment 330-343 conjugated to BSA, specifically recognized this isoform in the native and partially denatured states but did not interact with the eEF1A1 isoform. It was shown that these monospecific anti-eEF1A2 antibodies could be employed for eEF1A2 detection both by enzyme-linked immunosorbent assay and by immunoblotting."	"De novo EEF1A2 mutations in patients with characteristic facial features, intellectual disability, autistic behaviors and epilepsy. Eukaryotic elongation factor 1, alpha-2 (eEF1A2) protein is involved in protein synthesis, suppression of apoptosis, and regulation of actin function and cytoskeletal structure. EEF1A2 gene is highly expressed in the central nervous system and Eef1a2 knockout mice show the neuronal degeneration. Until now, only one missense mutation (c.208G &gt; A, p.Gly70Ser) in EEF1A2 has been reported in two independent patients with neurological disease. In this report, we described two patients with de novo mutations (c.754G &gt; C, p.Asp252His and c.364G &gt; A, p.Glu122Lys) in EEF1A2 found by whole-exome sequencing. Common clinical features are shared by all four individuals: severe intellectual disability, autistic behavior, absent speech, neonatal hypotonia, epilepsy and progressive microcephaly. Furthermore, the two patients share the similar characteristic facial features including a depressed nasal bridge, tented upper lip, everted lower lip and downturned corners of the mouth. These data strongly indicate that a new recognizable disorder is caused by EEF1A2 mutations. "	"The prognostic significance of eukaryotic elongation factor 1 alpha-2 in non-small cell lung cancer. Eukaryotic elongation factor 1 alpha-2 (eEF1A2) has been recently shown to be a putative oncogene of lung cancer. We analyzed the expression and prognostic significance of eEF1A2 in 69 primary non-small cell lung cancer (NSCLC) cases. We also suppressed eEF1A2 expression using RNA interference and then analyzed cell proliferation, migration and invasion of five adenocarcinoma cell lines. eEF1A2 protein expression was positive in 84.1%. Negative immunostaining for eEF1A2 was shown to be an independent prognostic factor and significantly correlated with lymph node metastasis. There was no significant correlation between eEF1A2 protein and mRNA expression levels. Among the five examined cell lines, transfection of eEF1A2 siRNA inhibited cell migration in only one cell line while it did not change cell proliferation and invasion. Negative immunostaining of eEF1A2 predicted for poor prognosis of NSCLC. The mechanism of this result could not be elucidated by cell proliferation, migration and invasion assays."	"In vivo characterization of the role of tissue-specific translation elongation factor 1A2 in protein synthesis reveals insights into muscle atrophy. Translation elongation factor 1A2 (eEF1A2), uniquely among translation factors, is expressed specifically in neurons and muscle. eEF1A2-null mutant wasted mice develop an aggressive, early-onset form of neurodegeneration, but it is unknown whether the wasting results from denervation of the muscles, or whether the mice have a primary myopathy resulting from loss of translation activity in muscle. We set out to establish the relative contributions of loss of eEF1A2 in the different tissues to this postnatal lethal phenotype. We used tissue-specific transgenesis to show that correction of eEF1A2 levels in muscle fails to ameliorate the overt phenotypic abnormalities or time of death of wasted mice. Molecular markers of muscle atrophy such as Fbxo32 were dramatically upregulated at the RNA level in wasted mice, both in the presence and in the absence of muscle-specific expression of eEF1A2, but the degree of upregulation at the protein level was significantly lower in those wasted mice without transgene-derived expression of eEF1A2 in muscle. This provides the first in vivo confirmation that eEF1A2 plays an important role in translation. In spite of the inability of the nontransgenic wasted mice to upregulate key atrogenes at the protein level in response to denervation to the same degree as their transgenic counterparts, there were no measurable differences between transgenic and nontransgenic wasted mice in terms of weight loss, grip strength, or muscle pathology. This suggests that a compromised ability fully to execute the atrogene pathway in denervated muscle does not affect the process of muscle atrophy in the short term."	"Identification of molecular tumor markers in renal cell carcinomas with TFE3 protein expression by RNA sequencing. TFE3 translocation renal cell carcinoma (tRCC) is defined by chromosomal translocations involving the TFE3 transcription factor at chromosome Xp11.2. Genetically proven TFE3 tRCCs have a broad histologic spectrum with overlapping features to other renal tumor subtypes. In this study, we aimed for characterizing RCC with TFE3 protein expression. Using next-generation whole transcriptome sequencing (RNA-Seq) as a discovery tool, we analyzed fusion transcripts, gene expression profile, and somatic mutations in frozen tissue of one TFE3 tRCC. By applying a computational analysis developed to call chimeric RNA molecules from paired-end RNA-Seq data, we confirmed the known TFE3 translocation. Its fusion partner SFPQ has already been described as fusion partner in tRCCs. In addition, an RNA read-through chimera between TMED6 and COG8 as well as MET and KDR (VEGFR2) point mutations were identified. An EGFR mutation, but no chromosomal rearrangements, was identified in a control group of five clear cell RCCs (ccRCCs). The TFE3 tRCC could be clearly distinguished from the ccRCCs by RNA-Seq gene expression measurements using a previously reported tRCC gene signature. In validation experiments using reverse transcription-PCR, TMED6-COG8 chimera expression was significantly higher in nine TFE3 translocated and six TFE3-expressing/non-translocated RCCs than in 24 ccRCCs (P &lt; .001) and 22 papillary RCCs (P &lt; .05-.07). Immunohistochemical analysis of selected genes from the tRCC gene signature showed significantly higher eukaryotic translation elongation factor 1 alpha 2 (EEF1A2) and Contactin 3 (CNTN3) expression in 16 TFE3 translocated and six TFE3-expressing/non-translocated RCCs than in over 200 ccRCCs (P &lt; .0001, both). "	"EEF1A2 inactivates p53 by way of PI3K/AKT/mTOR-dependent stabilization of MDM4 in hepatocellular carcinoma. Mouse Double Minute homolog 4 (MDM4) gene up-regulation often occurs in human hepatocellular carcinoma (HCC), but the molecular mechanisms responsible for its induction remain poorly understood. Here we investigated the role of the phosphoinositide-3-kinase/v-akt murine thymoma viral oncogene homolog/mammalian target of rapamycin (PI3K/AKT/mTOR) axis in the regulation of MDM4 levels in HCC. The activity of MDM4 and the PI3K/AKT/mTOR pathway was modulated in human HCC cell lines by way of silencing and overexpression experiments. Expression of main pathway components was analyzed in an AKT mouse model and human HCCs. MDM4 inhibition resulted in growth restraint of HCC cell lines both in vitro and in vivo. Inhibition of the PI3K-AKT and/or mTOR pathways lowered MDM4 protein levels in HCC cells and reactivated p53-dependent transcription. Deubiquitination by ubiquitin-specific protease 2a and AKT-mediated phosphorylation protected MDM4 from proteasomal degradation and increased its protein stability. The eukaryotic elongation factor 1A2 (EEF1A2) was identified as an upstream inducer of PI3K supporting MDM4 stabilization. Also, we detected MDM4 protein up-regulation in an AKT mouse model and a strong correlation between the expression of EEF1A2, activated/phosphorylated AKT, and MDM4 in human HCC (each rho &gt; 0.8, P &lt; 0.001). Noticeably, a strong activation of this cascade was associated with shorter patient survival. The EEF1A2/PI3K/AKT/mTOR axis promotes the protumorigenic stabilization of the MDM4 protooncogene in human HCC by way of a posttranscriptional mechanism. The activation level of the EEF1A2/PI3K/AKT/mTOR/MDM4 axis significantly influences the survival probability of HCC patients in vivo and may thus represent a promising molecular target."	"Highly homologous eEF1A1 and eEF1A2 exhibit differential post-translational modification with significant enrichment around localised sites of sequence variation. This article was reviewed by Frank Eisenhaber and Ramanathan Sowdhamini.Translation elongation factors eEF1A1 and eEF1A2 are 92% identical but exhibit non-overlapping expression patterns. While the two proteins are predicted to have similar tertiary structures, it is notable that the minor variations between their sequences are highly localised within their modelled structures. We used recently available high-throughput &quot;omics&quot; data to assess the spatial location of post-translational modifications and discovered that they are highly enriched on those surface regions of the protein that correspond to the clusters of sequence variation. This observation suggests how these two isoforms could be differentially regulated allowing them to perform distinct functions."	"Raf kinases in signal transduction and interaction with translation machinery. In recent years, a large amount of evidence has given a central role to translational control in diseases such as cancer, tissue hypertrophy and neurodegeneration. Its deregulation can directly modulate cell cycling, transformation and survival response. The aim of this review is to describe the interaction between Raf activation and the main characters of the translational machinery, such as the elongation factor 1A (eEF1A), which has been recognized in recent years as one of the most interesting putative oncogenes. A particular emphasis is given to an intriguing non-canonical role that eEF1A can play in the relationship between the Ras→Raf-1→MEK1→ERK-1/2 and PI3K→Akt signaling pathways. Recently, our group has described a C-Raf kinase-mediated phosphorylation of eEF1A triggered by a survival pathway induced upon interferon alpha (IFNα) treatment in the human epidermoid cancer cell line (H1355). This phosphorylation seems to be the center of the survival pathway that counteracts the well-known pro-apoptotic function of IFNα. Furthermore, we have identified two new phosphorylation sites on eEF1A (Ser21 and Thr88) that are substrates for Raf kinases in vitro and, likely, in vivo as well. These residues seem to have a significant functional role in the control of cellular processes, such as cell proliferation and survival. In fact, overexpression of eEF1A2 in gemcitabine-treated cancer cells caused the upregulation of phosphoAkt and an increase in cell viability, thereby suggesting that eEF1A2 could exert its oncogenic behavior by participating in the regulation of PI3K pathway."	"eEF1A2 promotes cell migration, invasion and metastasis in pancreatic cancer by upregulating MMP-9 expression through Akt activation. eEF1A2 is a protein translation factor involved in protein synthesis that is overexpressed in various cancers, with important functions in tumor genesis and progression. We have previously showed that the ectopic expression of eEF1A2 is correlated with lymph node metastasis and perineural invasion in pancreatic cancer. In this study, we investigated the functional role of eEF1A2 in the regulation of cell migration, invasion, and metastasis in pancreatic cancer. Furthermore, we investigated the potential molecular mechanisms involved. By evaluating the invasive ability of a panel of pancreatic cancer cell lines with different metastatic potentials, eEF1A2 expression in cells was positively associated with their invasive ability. The knockdown of eEF1A2 by siRNA decreased the migration and invasion of PANC-1 cells. By contrast, the ectopic expression of exogenous eEF1A2 significantly promoted the migration and invasion of SW1990 cells. Stable eEF1A2 overexpression in a nude mouse model of peritoneal metastasis likewise dramatically enhanced the intraperitoneal metastatic ability of SW1990 cells. In addition, eEF1A2 overexpression could upregulate MMP-9 expression and activity. A significant positive correlation between the overexpression of both eEF1A2 and MMP-9 was observed in pancreatic cancer tissues. The inhibition of MMP-9 activity reduced the promoting effect of eEF1A2 on cell migration and invasion. Furthermore, eEF1A2-mediated cell migration and invasion, as well as MMP-9 expression and upregulation, were largely dependent on the eEF1A2-induced Akt activation. The findings suggested the potentially important role of eEF1A2 in pancreatic cancer migration, invasion, and metastasis. Thus, the results provide evidence of eEF1A2 as a potential therapeutic target in the treatment of aggressive pancreatic cancer. "	"Stability of reference genes for normalization of reverse transcription quantitative real-time PCR (RT-qPCR) data in bovine blastocysts produced by IVF, ICSI and SCNT. Reverse transcription quantitative real-time polymerase chain reaction (RT-qPCR) is a sensitive and accurate tool for quantitative estimation of gene transcription levels in preimplantation embryos. To control for possible experimental variations, gene expression data must be normalized using internal control genes commonly known as reference genes. However, the stability of reference genes can vary depending on the state of development and/or experimental conditions; hence the assessment of their stability is essential before initiating a gene expression analysis. In the present study, we used RT-qPCR to measure the transcript levels of 10 commonly used reference genes and analyzed their expression stability in bovine blastocysts produced by in vitro fertilization (IVF), intracytoplasmic sperm injection (ICSI) and somatic cell nuclear transfer (SCNT). Using the geNorm program, we found the best combination of genes to normalize gene expression data in bovine embryos at the blastocyst stage produced by IVF (HMBS, SF3A1, and HPRT1), ICSI (H2A, HMBS, and GAPDH), SCNT (ACTB, SF3A1, and SDHA) and/or between blastocysts produced by these methods (GAPDH, HMBS and EEF1A2). We also demonstrated that not only the culture conditions may affect the expression patterns in bovine blastocysts but also the choice of embryo production method may have an important effect."	"Proto-oncogenic isoform A2 of eukaryotic translation elongation factor eEF1 is a target of miR-663 and miR-744. Eukaryotic translation elongation factor 1A2 (eEF1A2) is a known proto-oncogene. We proposed that stimulation of the eEF1A2 expression in cancer tissues is caused by the loss of miRNA-mediated control. Impact of miRNAs on eEF1A2 at the mRNA and protein levels was examined by qPCR and western blot, respectively. Dual-luciferase assay was applied to examine the influence of miRNAs on 3'-UTR of EEF1A2. To detect miRNA-binding sites, mutations into the 3'-UTR of EEF1A2 mRNA were introduced by the overlap extension PCR. miR-663 and miR-744 inhibited the expression of luciferase gene attached to the 3'-UTR of EEF1A2 up to 20% and 50%, respectively. In MCF7 cells, overexpression of miR-663 and miR-744 reduced the EEF1A2 mRNA level by 30% and 50%. Analogous effects were also observed at the eEF1A2 protein level. In resveratrol-treated MCF7 cells the upregulation of mir-663 and mir-744 was accompanied by downregulation of EEF1A2 mRNA. Both miRNAs were able to inhibit the proliferation of MCF7 cells. miR-663 and miR-744 mediate inhibition of the proto-oncogene eEF1A2 expression that results in retardation of the MCF7 cancer cells proliferation. Antitumour effect of resveratrol may include stimulation of the miR-663 and miR-744 expression."	"Exome sequencing reveals new causal mutations in children with epileptic encephalopathies. The management of epilepsy in children is particularly challenging when seizures are resistant to antiepileptic medications, or undergo many changes in seizure type over time, or have comorbid cognitive, behavioral, or motor deficits. Despite efforts to classify such epilepsies based on clinical and electroencephalographic criteria, many children never receive a definitive etiologic diagnosis. Whole exome sequencing (WES) is proving to be a highly effective method for identifying de novo variants that cause neurologic disorders, especially those associated with abnormal brain development. Herein we explore the utility of WES for identifying candidate causal de novo variants in a cohort of children with heterogeneous sporadic epilepsies without etiologic diagnoses. We performed WES (mean coverage approximately 40×) on 10 trios comprised of unaffected parents and a child with sporadic epilepsy characterized by difficult-to-control seizures and some combination of developmental delay, epileptic encephalopathy, autistic features, cognitive impairment, or motor deficits. Sequence processing and variant calling were performed using standard bioinformatics tools. A custom filtering system was used to prioritize de novo variants of possible functional significance for validation by Sanger sequencing. In 9 of 10 probands, we identified one or more de novo variants predicted to alter protein function, for a total of 15. Four probands had de novo mutations in genes previously shown to harbor heterozygous mutations in patients with severe, early onset epilepsies (two in SCN1A, and one each in CDKL5 and EEF1A2). In three children, the de novo variants were in genes with functional roles that are plausibly relevant to epilepsy (KCNH5, CLCN4, and ARHGEF15). The variant in KCNH5 alters one of the highly conserved arginine residues of the voltage sensor of the encoded voltage-gated potassium channel. In vitro analyses using cell-based assays revealed that the CLCN4 mutation greatly impaired ion transport by the ClC-4 2Cl(-) /H(+) -exchanger and that the mutation in ARHGEF15 reduced GEF exchange activity of the gene product, Ephexin5, by about 50%. Of interest, these seven probands all presented with seizures within the first 6 months of life, and six of these have intractable seizures. The finding that 7 of 10 children carried de novo mutations in genes of known or plausible clinical significance to neuronal excitability suggests that WES will be of use for the molecular genetic diagnosis of sporadic epilepsies in children, especially when seizures are of early onset and difficult to control."	"Degradation of newly synthesized polypeptides by ribosome-associated RACK1/c-Jun N-terminal kinase/eukaryotic elongation factor 1A2 complex. Folding of newly synthesized polypeptides (NSPs) into functional proteins is a highly regulated process. Rigorous quality control ensures that NSPs attain their native fold during or shortly after completion of translation. Nonetheless, signaling pathways that govern the degradation of NSPs in mammals remain elusive. We demonstrate that the stress-induced c-Jun N-terminal kinase (JNK) is recruited to ribosomes by the receptor for activated protein C kinase 1 (RACK1). RACK1 is an integral component of the 40S ribosome and an adaptor for protein kinases. Ribosome-associated JNK phosphorylates the eukaryotic translation elongation factor 1A isoform 2 (eEF1A2) on serines 205 and 358 to promote degradation of NSPs by the proteasome. These findings establish a role for a RACK1/JNK/eEF1A2 complex in the quality control of NSPs in response to stress."	"Tumor suppressor p16(INK4a) inhibits cancer cell growth by downregulating eEF1A2 through a direct interaction. The tumor suppressor protein p16(INK4a) is a member of the INK4 family of cyclin-dependent kinase (Cdk) inhibitors, which are involved in the regulation of the eukaryotic cell cycle. However, the mechanisms underlying the anti-proliferative effects of p16(INK4a) have not been fully elucidated. Using yeast two-hybrid screening, we identified the eukaryotic elongation factor (eEF)1A2 as a novel interacting partner of p16(INK4a). eEF1A2 is thought to function as an oncogene in cancers. The p16(INK4a) protein interacted with all but the D2 (250-327 aa) domain of eEF1A2. Ectopic expression of p16(INK4a) decreased the expression of eEF1A2 and inhibited cancer cell growth. Furthermore, suppression of protein synthesis by expression of p16(INK4a) ex vivo was verified by luciferase reporter activity. Microinjection of p16(INK4a) mRNA into the cytoplasm of Xenopus embryos suppressed the luciferase mRNA translation, whereas the combination of p16(INK4a) and morpholino-eEF1A2 resulted in a further reduction in translational activity. We conclude that the interaction of p16(INK4a) with eEF1A2, and subsequent downregulation of the expression and function of eEF1A2 is a novel mechanism explaining the anti-proliferative effects of p16(INK4a)."	"eEF1A2 protein expression correlates with lymph node metastasis and decreased survival in pancreatic ductal adenocarcinoma. To examine eukaryotic elongation factor1A2 (eEF1A2) expression in pancreatic ductal adenocarcinoma (PDA) and to analyze its relationship with the clinicopathol¬ogy of PDA. eEF1A2 expression was examined in 97 PDA specimens by immunohistochemistry. We also analyzed the association between FAP expression in PDAC cells and the clinicopathology of PDA patients. eEF1A2 expression was absent in normal pancreatic tissue. In contrast, in PDA, eEF1A2 showed positive immunoreactivity in 76 of 97 (77.8%) PDA cases. We found significant associations between increased eEF1A2 expression and the presence of nodal metastasis (p=0.039) and perineural invasion (p=0.043). Univariate analysis of survival showed that the median overall survival time of eEF1A2-positive PDA patients (11.7 months) was significantly shorter than that of eEF1A2-negative PDAC patients (17.5 months; p&lt;0.001). In addition, when the Cox proportion hazard model was used in multivariate survival analysis, we revealed that eEF1A2 expression (p&lt;0.001; hazard rate, 95%CI 2.91-13.61) and TNM stage (p&lt;0.001 hazard rate, 95%CI 0.18-0.23) still remained statistically significant. eEF1A2 is highly expressed in PDA, and its expression is associated with nodal metastasis and perineural invasion, as well as worse prognosis."	"The more basic isoform of eEF1A relates to tumour cell phenotype and is modulated by hyper-proliferative/differentiating stimuli in normal lymphocytes and CCRF-CEM T-lymphoblasts. The elongation factor 1A proteins (eEF1A1/A2) are known to play a role in tumours. We previously found that a more basic isoform of eEF1A (MBI-eEF1A) is present in the cytoskeletal/nuclear-enriched extracts of CCRF-CEM T-lymphoblasts but not in those of normal lymphocytes. To obtain deeper knowledge about MBI-eEF1A biology, we investigate from which of the eEF1A proteins, eEF1A1 or eEF1A2, MBI-eEF1A originates and the possibility that its appearance can be modulated by the differentiated or proliferative cell status. CCRF-CEM T-lymphoblasts and normal lymphocytes were cultured with or without differentiation/pro-proliferative stimuli (Phorbol 12-Myristate 13-Acetate (PMA) alone or the combination of phytohaemagglutinin (PHA) with PMA, respectively), and the presence of MBI-eEF1A evaluated together with that of the eEF1A1/A2 mRNAs. Our data indicate that the MBI-eEF1A may derive from eEF1A1 as eEF1A2 is not expressed in CCRF-CEM and normal lymphocytes. Moreover, MBI-eEF1A is inducible in normal lymphocytes upon hyper-proliferative stimuli application; in CCRF-CEM, its presence can be abrogated by PMA-induced differentiation. Finally, MBI-eEF1A may have a functional role in hyper-proliferating/tumour cells as its disappearance reduces the growth of CCRF-CEM and that of PHA/PMA-stimulated lymphocytes. The presented data suggest that MBI-eEF1A may be related to oncogenic cell phenotype, rising the possibility to use MBI-eEF1A as target for novel therapeutic strategies."	"Haploinsufficiency for translation elongation factor eEF1A2 in aged mouse muscle and neurons is compatible with normal function. Translation elongation factor isoform eEF1A2 is expressed in muscle and neurons. Deletion of eEF1A2 in mice gives rise to the neurodegenerative phenotype &quot;wasted&quot; (wst). Mice homozygous for the wasted mutation die of muscle wasting and neurodegeneration at four weeks post-natal. Although the mutation is said to be recessive, aged heterozygous mice have never been examined in detail; a number of other mouse models of motor neuron degeneration have recently been shown to have similar, albeit less severe, phenotypic abnormalities in the heterozygous state. We therefore examined the effects of ageing on a cohort of heterozygous +/wst mice and control mice, in order to establish whether a presumed 50% reduction in eEF1A2 expression was compatible with normal function. We evaluated the grip strength assay as a way of distinguishing between wasted and wild-type mice at 3-4 weeks, and then performed the same assay in older +/wst and wild-type mice. We also used rotarod performance and immunohistochemistry of spinal cord sections to evaluate the phenotype of aged heterozygous mice. Heterozygous mutant mice showed no deficit in neuromuscular function or signs of spinal cord pathology, in spite of the low levels of eEF1A2."	"Proteomic analysis of trichloroethylene-induced alterations in expression, distribution, and interactions of SET/TAF-Iα and two SET/TAF-Iα-binding proteins, eEF1A1 and eEF1A2, in hepatic L-02 cells. Emerging evidence indicates that trichloroethylene (TCE) exposure causes severe hepatotoxicity. However, the mechanisms of TCE hepatotoxicity remain unclear. Recently, we reported that TCE exposure up-regulated the expression of the oncoprotein SET/TAF-Iα and SET knockdown attenuated TCE-induced cytotoxicity in hepatic L-02 cells. To decipher the function of SET/TAF-Iα and its contributions to TCE-induced hepatotoxicity, we employed a proteomic analysis of SET/TAF-Iα with tandem affinity purification to identify SET/TAF-Iα-binding proteins. We identified 42 novel Gene Ontology co-annotated SET/TAF-Iα-binding proteins. The identifications of two of these proteins (eEF1A1, elongation factor 1-alpha 1; eEF1A2, elongation factor 1-alpha 2) were confirmed by Western blot analysis and co-immunoprecipitation (Co-IP). Furthermore, we analyzed the effects of TCE on the expression, distribution and interactions of eEF1A1, eEF1A2 and SET in L-02 cells. Western blot analysis reveals a significant up-regulation of eEF1A1, eEF1A2 and two isoforms of SET, and immunocytochemical analysis reveals that eEF1A1 and SET is redistributed by TCE. SET is redistributed from the nucleus to the cytoplasm, while eFE1A1 is translocated from the cytoplasm to the nucleus. Moreover, we find by Co-IP that TCE exposure significantly increases the interaction of SET with eEF1A2. Our data not only provide insights into the physiological functions of SET/TAF-Iα and complement the SET interaction networks, but also demonstrate that TCE exposure induces alterations in the expression, distribution and interactions of SET and its binding partners. These alterations may constitute the mechanisms of TCE cytotoxicity."	"Retrospective evaluation of tumor markers in ovarian mature cystic teratoma and ovarian endometrioma. The aim of this study was to evaluate the correlation between clinicopathological characteristics and serum levels of tumor markers in patients with ovarian endometrioma (OE) and ovarian mature cystic teratoma (MCT). Values of CA125, CA19-9, and sialyl Tn antigen (STN) were retrospectively investigated in 321 patients with OE. CA125, CA19-9, STN, and squamous cell carcinoma antigen (SCC) were examined in 435 patients with MCT. Mean values of CA125, CA19-9, and STN were 105.3 U/mL, 58.0 U/mL, and 31.1 U/mL in OE, while the values were 26.8 U/mL, 246.8 U/mL, and 24.7 U/mL in MCT. Abnormal elevation of CA125, CA19-9, and STN was observed in 53.3%, 38.9, and 13.5 of OE, and in 12.9, 50.6, and 4.6% of MCT, respectively. CA125 level was significantly higher in bilaterally occurring OE and premenopausal patients with MCT, while the value of CA19-9 was significantly higher in cases of bilaterally occurring MCT. Furthermore, the levels of CA125 and CA19-9 showed significant correlations with tumor diameter, while the levels of STN and SCC showed no significant correlations with tumor diameter. The highest CA125 level (9513 U/mL) was observed in OE and the highest CA19-9 level (25 590 U/mL) was observed in MCT. Although abnormal increases in the levels of CA125 and CA19-9 were often observed, the levels of STN were not influenced by clinicopathologic factors in OE and MCT. Further studies of the clinical usefulness of STN for detecting malignant tumors in OE and MCT are needed."	"Translation elongation factor-1A1 (eEF1A1) localizes to the spine by domain III. In vertebrates, there are two variants of eukaryotic peptide elongation factor 1A (eEF1A; formerly eEF-1α), eEF1A1 and eEF1A2, which have three well-conserved domains (D(I), D(II), and D(III)). In neurons, eEF1A1 is the embryonic type, which is expressed during embryonic development as well as the first two postnatal weeks. In the present study, EGFP-tagged eEF1A1 truncates were expressed in cortical neurons isolated from rat embryo (E18-19). Live cell images of transfected neurons showed that D(III)-containing EGFP-fusion proteins (EGFP-D(III), -D(II)-III, -D(I)-III) formed clusters that were confined within somatodendritic domains, while D(III)-missing ones (EGFP-D(I), -D(II), -D(I)-II) and control EGFP were homogeneously D(I)spersed throughout the neuron incluD(I)ng axons. In dendrites, EGFP-D(III) was targeted to the heads of spine- and filopoD(I)a-like protrusions, where it was colocalized with SynGAPα, a postsynaptic marker. Our data inD(I)cate that D(III) of eEF1A1 meD(I)ates formation of clusters and localization to spines."	"Purification, crystallization and preliminary X-ray crystallographic analysis of mammalian translation elongation factor eEF1A2. Translation elongation factor eEF1A2 was purified to homogeneity from rabbit muscle by two consecutive ion-exchange column-chromatography steps and this mammalian eEF1A2 was successfully crystallized for the first time. Protein crystals obtained using ammonium sulfate as precipitant diffracted to 2.5 Å resolution and belonged to space group P6(1)22 or P6(3)22 (unit-cell parameters a = b = 135.4, c = 304.6 Å). A complete native data set was collected to 2.7 Å resolution."	"Raf kinases mediate the phosphorylation of eukaryotic translation elongation factor 1A and regulate its stability in eukaryotic cells. We identified eukaryotic translation elongation factor 1A (eEF1A) Raf-mediated phosphorylation sites and defined their role in the regulation of eEF1A half-life and of apoptosis of human cancer cells. Mass spectrometry identified in vitro S21 and T88 as phosphorylation sites mediated by B-Raf but not C-Raf on eEF1A1 whereas S21 was phosphorylated on eEF1A2 by both B- and C-Raf. Interestingly, S21 belongs to the first eEF1A GTP/GDP-binding consensus sequence. Phosphorylation of S21 was strongly enhanced when both eEF1A isoforms were preincubated prior the assay with C-Raf, suggesting that the eEF1A isoforms can heterodimerize thus increasing the accessibility of S21 to the phosphate. Overexpression of eEF1A1 in COS 7 cells confirmed the phosphorylation of T88 also in vivo. Compared with wt, in COS 7 cells overexpressed phosphodeficient (A) and phospho-mimicking (D) mutants of eEF1A1 (S21A/D and T88A/D) and of eEF1A2 (S21A/D), resulted less stable and more rapidly proteasome degraded. Transfection of S21 A/D eEF1A mutants in H1355 cells increased apoptosis in comparison with the wt isoforms. It indicates that the blockage of S21 interferes with or even supports C-Raf induced apoptosis rather than cell survival. Raf-mediated regulation of this site could be a crucial mechanism involved in the functional switching of eEF1A between its role in protein biosynthesis and its participation in other cellular processes."	"iTRAQ identification of candidate serum biomarkers associated with metastatic progression of human prostate cancer. A major challenge in the management of patients with prostate cancer is identifying those individuals at risk of developing metastatic disease, as in most cases the disease will remain indolent. We analyzed pooled serum samples from 4 groups of patients (n = 5 samples/group), collected prospectively and actively monitored for a minimum of 5 yrs. Patients groups were (i) histological diagnosis of benign prostatic hyperplasia with no evidence of cancer 'BPH', (ii) localised cancer with no evidence of progression, 'non-progressing' (iii) localised cancer with evidence of biochemical progression, 'progressing', and (iv) bone metastasis at presentation 'metastatic'. Pooled samples were immuno-depleted of the 14 most highly abundant proteins and analysed using a 4-plex iTRAQ approach. Overall 122 proteins were identified and relatively quantified. Comparisons of progressing versus non-progressing groups identified the significant differential expression of 25 proteins (p&lt;0.001). Comparisons of metastatic versus progressing groups identified the significant differential expression of 23 proteins. Mapping the differentially expressed proteins onto the prostate cancer progression pathway revealed the dysregulated expression of individual proteins, pairs of proteins and 'panels' of proteins to be associated with particular stages of disease development and progression. The median immunostaining intensity of eukaryotic translation elongation factor 1 alpha 1 (eEF1A1), one of the candidates identified, was significantly higher in osteoblasts in close proximity to metastatic tumour cells compared with osteoblasts in control bone (p = 0.0353, Mann Whitney U). Our proteomic approach has identified leads for potentially useful serum biomarkers associated with the metastatic progression of prostate cancer. The panels identified, including eEF1A1 warrant further investigation and validation."	"Widespread expression of SAA and Hp RNA in bovine tissues after evaluation of suitable reference genes. The serum amyloid A (SAA) and haptoglobin (Hp) are the most prominent acute phase proteins (APPs) in cow. Liver mainly produces APPs, but extra hepatic expression has also been demonstrated in some tissues. The major aim of the present study was to assess the constitutive SAA and Hp mRNA expression by quantitative PCR (qPCR) in a wide panel of 33 bovine tissues, including gastrointestinal tract, respiratory system, urogenital system, mammary gland, hematopoietic system, central nervous system, eye, thyroid and heart. Normalization of gene expression in different samples requires reference genes, which are stably expressed. Therefore, seven reference genes were investigated (ACTB, GAPDH, HMBS, SDHA, YWHAZ, SF3A1, EEF1A2) and three genes, namely SF3A1, HMBS and ACTB, were selected after assessing their stability with geNorm™ and NormFinder(©) softwares. The qPCR analysis confirmed liver as the principal source of SAA and Hp, but also identified both APPs' mRNA in almost all tissues. The highest expression rate of SAA was found in thyroid, followed by pancreas and submandibulary gland. Hp mRNA expression was detected at high concentration in pancreas and submandibulary gland. The present data indicated a widespread expression of SAA and Hp also in non pathological conditions, thus envisaging a possible role as immunomodulatory and protective molecules. To understand where SAA and Hp come from is the prerequisite to their utilization as Acute Phase Reaction biomarkers."	"Dissecting the expression of EEF1A1/2 genes in human prostate cancer cells: the potential of EEF1A2 as a hallmark for prostate transformation and progression. In prostate adenocarcinoma, the dissection of the expression behaviour of the eukaryotic elongation factors (eEF1A1/2) has not yet fully elucidated. The EEF1A1/A2 expressions were investigated by real-time PCR, western blotting (cytoplasmic and cytoskeletal/nuclear-enriched fractions) and immunofluorescence in the androgen-responsive LNCaP and the non-responsive DU-145 and PC-3 cells, displaying a low, moderate and high aggressive phenotype, respectively. Targeted experiments were also conducted in the androgen-responsive 22Rv1, a cell line marking the progression towards androgen-refractory tumour. The non-tumourigenic prostate PZHPV-7 cell line was the control. Compared with PZHPV-7, cancer cells showed no major variations in EEF1A1 mRNA; eEF1A1 protein increased only in cytoskeletal/nuclear fraction. On the contrary, a significant rise of EEF1A2 mRNA and protein were found, with the highest levels detected in LNCaP. Eukaryotic elongation factor 1A2 immunostaining confirmed the western blotting results. Pilot evaluation in archive prostate tissues showed the presence of EEF1A2 mRNA in near all neoplastic and perineoplastic but not in normal samples or in benign adenoma; in contrast, EEF1A1 mRNA was everywhere detectable. Eukaryotic elongation factor 1A2 switch-on, observed in cultured tumour prostate cells and in human prostate tumour samples, may represent a feature of prostate cancer; in contrast, a minor involvement is assigned to EEF1A1. These observations suggest to consider EEF1A2 as a marker for prostate cell transformation and/or possibly as a hallmark of cancer progression."	"The lipid kinase PI4KIIIβ and the eEF1A2 oncogene co-operate to disrupt three-dimensional in vitro acinar morphogenesis. The study of in vitro morphogenesis is fundamental to understanding neoplasia since the dysregulation of morphogenic pathways that create multi-cellular organisms is a common hallmark of oncogenesis. The in vitro culture of human breast epithelial cells on reconstituted basement membranes recapitulate some features of in vivo breast development, including the formation of a three-dimensional structure termed an acinus. Importantly, the capacity to disrupt in vitro acinar morphogenesis is a common property of human breast oncogenes. In this report, we find that phosphatidylinositol 4-kinase IIIβ (PI4KIIIβ), a lipid kinase that phosphorylates phosphatidylinositol (PI) to PI(4)P, disrupts in vitro mammary acinar formation. The PI4KIIIβ protein localizes to the basal surface of acini created by human MCF10A cells and ectopic expression of PI4KIIIβ induces multi-acinar devlopment. Furthermore, expression of an oncogenic PI4KIIIβ activator, eEF1A2 (eukaryotic elongation factor 1 alpha 2), phenocopies the PI4KIIIβ multi-acinar phenotype. Ectopic expression of PI4KIIIβ or eEF1A2 alters the localization of PI(4)P and PI(4,5)P(2) within acini, indicating the importance of these lipids in acinar development. Our work shows that PI4KIIIβ, eEF1A2 and PI(4)P likely play an important role in mammary neoplasia and acinar development."	"Evolutionary importance of translation elongation factor eEF1A variant switching: eEF1A1 down-regulation in muscle is conserved in Xenopus but is controlled at a post-transcriptional level. Translation elongation isoform eEF1A1 has a pivotal role in protein synthesis and is almost ubiquitously expressed. In mice and rats that transcription of the gene encoding eEF1A1 is downregulated to undetectable levels in muscle after weaning; eEF1A1 is then replaced by a separately encoded but closely related isoform eEF1A2, which has only previously been described in mammals. We now show that not only is eEF1A2 conserved in non-mammalian vertebrate species, but the down-regulation of eEF1A1 protein in muscle is preserved in Xenopus, with the protein being undetectable by adulthood. Interestingly, though, this down-regulation is controlled post-transcriptionally, and levels of full-length eEF1A1 mRNA remain similar to those of eEF1A2. The switching off of eEF1A1 in muscle is therefore sufficiently important to have evolved through the use of repression operating at different levels in different species. The 3'UTR of eEF1A1 is highly conserved and contains predicted binding sites for several miRNAs, suggesting a possible method for controlling of expression. We suggest that isoform switching may have evolved because of a need for certain cell types to modify the well-established non-canonical functions of eEF1A1."	"Novel flavonoids with antiproliferative activities against breast cancer cells. A series of flavone analogues were synthesized and evaluated for their antiproliferation activity against breast cancer cells. The IC(50) of compound 10 and 24 were determined to be at 5 μM. These compounds were used as baits to screen breast cancer cDNA expression phage display proteome library. DNA sequencing of the binding phages suggests that eEF1A1 is a target protein for 10 and 24. Further optimization of these compounds led to the discovery of 39 with higher cytotoxic potency (IC(50) = 1 μM) and binding to eEF1A2. Biological and biochemical data suggest that eEF1A2 might be a therapeutic target and that 39 is an excellent lead compound for further development."	"Candidate gene expression and intramuscular fat content in pigs. Seventy-two pigs of three genetic groups (Brazilian indigenous breed Piau, Commercial line and Crossbred) of both sexes were slaughtered at four live weights (30, 60, 90 and 120 kg). Intramuscular fat (IMF) content in Longissimus dorsi muscle of each animal was extracted and correlated with candidate gene mRNA expression (ATN1, EEF1A2, FABP3, LDLR, MGP, OBSCN, PDHB, TRDN and RYR1). Within slaughter weight of 120 kg, Piau and Crossbred pigs showed higher IMF content (p &lt; 0.05) than commercial animals, with 2.48, 2.08 and 1.00% respectively. Barrows presented higher values of IMF (p &lt; 0.05) than gilts (1.54 and 1.30% respectively). Gene expression of EEF1A2, FABP3, LDLR, OBSCN, PDHB, TRDN and RYR1 were correlated with IMF (p &lt; 0.05) using the whole dataset. For Piau data only, expression of FABP3, LDLR, MGP, OBSCN, PDHB, TRDN and RYR1 showed correlation with IMF (p &lt; 0.05). Genes that have important roles in lipid transportation inside the cell (FABP3) and tissues (LDLR) showed correlation with IMF of, respectively, 0.68 and 0.63 using the whole data set, and 0.90 and 0.91 using data from Piau animals. The highly positive correlation of the LDLR and FAPB3 expression with IMF content may confirm that these genes are important for fat deposition in the porcine L. dorsi muscle."	"eEF1A phosphorylation in the nucleus of insulin-stimulated C2C12 myoblasts: Ser⁵³ is a novel substrate for protein kinase C βI. Recent data indicate that some PKC isoforms are translocated to the nucleus, in response to certain stimuli, where they play an important role in nuclear signaling events. To identify novel interacting proteins of conventional PKC (cPKC) at the nuclear level during myogenesis and to find new PKC isozyme-specific phosphosubstrates, we performed a proteomics analysis of immunoprecipitated nuclear samples from mouse myoblast C2C12 cells following insulin administration. Using a phospho(Ser)-PKC substrate antibody, specific interacting proteins were identified by LC-MS/MS spectrometry. A total of 16 proteins with the exact and complete motif recognized by the phospho-cPKC substrate antibody were identified; among these, particular interest was given to eukaryotic elongation factor 1α (eEF1A). Nuclear eEF1A was focalized in the nucleoli, and its expression was observed to increase following insulin treatment. Of the cPKC isoforms, only PKCβI was demonstrated to be expressed in the nucleus of C2C12 myocytes and to co-immunoprecipitate with eEF1A. In-depth analysis using site-directed mutagenesis revealed that PKCβI could phosphorylate Ser⁵³ of the eEF1A2 isoform and that the association between eEF1A2 and PKCβI was dependent on the phosphorylation status of eEF1A2."	"Expression of the actin-binding proteins indicates that cofilin and fascin are related to breast tumour size. This study was designed to investigate the expression of four actin-binding proteins, alpha-actinin-4, cofilin 1, fascin and elongation factor 1-alpha 2 (eEF1A2), in samples of breast cancer from 112 patients with different stages of breast cancer (stages T0 - T1, T2 and T3) compared with normal control tissues (n = 33). Levels of eEF1A2 and alpha-actinin-4 mRNA appeared to be unrelated to tumour size, except for a significant down-regulation of alpha-actinin-4 mRNA in T3 cases. Significant up-regulation of cofilin 1 mRNA was associated with stages T0 - T1 and T2; up-regulation seen at stage T3 was not significant compared with control tissue. Fascin mRNA levels were significantly reduced at all three tumour stages (T0 - T1, T2 and T3) compared with control tissue. In conclusion, some components of the actin cytoskeletal system might hold significant potential as targets in future cancer therapies."	"Eef1a2 promotes cell growth, inhibits apoptosis and activates JAK/STAT and AKT signaling in mouse plasmacytomas. The canonical function of EEF1A2, normally expressed only in muscle, brain, and heart, is in translational elongation, but recent studies suggest a non-canonical function as a proto-oncogene that is overexpressed in a variety of solid tumors including breast and ovary. Transcriptional profiling of a spectrum of primary mouse B cell lineage neoplasms showed that transcripts encoding EEF1A2 were uniquely overexpressed in plasmacytomas (PCT), tumors of mature plasma cells. Cases of human multiple myeloma expressed significantly higher levels of EEF1A2 transcripts than normal bone marrow plasma cells. High-level expression was also a feature of a subset of cell lines developed from mouse PCT and from the human MM. Heightened expression of EEF1A2 was not associated with increased copy number or coding sequence mutations. shRNA-mediated knockdown of Eef1a2 transcripts and protein was associated with growth inhibition due to delayed G1-S progression, and effects on apoptosis that were seen only under serum-starved conditions. Transcriptional profiles and western blot analyses of knockdown cells revealed impaired JAK/STAT and PI3K/AKT signaling suggesting their contributions to EEF1A2-mediated effects on PCT induction or progression. EEF1A2 may play contribute to the induction or progression of some PCT and a small percentage of MM. Eef1a2 could also prove to be a useful new marker for a subset of MM and, ultimately, a possible target for therapy."	"The utrophin A 5'-UTR drives cap-independent translation exclusively in skeletal muscles of transgenic mice and interacts with eEF1A2. The molecular mechanisms regulating expression of utrophin A are of therapeutic interest since upregulating its expression at the sarcolemma can compensate for the lack of dystrophin in animal models of Duchenne Muscular Dystrophy (DMD). The 5'-UTR of utrophin A has been previously shown to drive cap-independent internal ribosome entry site (IRES)-mediated translation in response to muscle regeneration and glucocorticoid treatment. To determine whether the utrophin A IRES displays tissue specific activity, we generated transgenic mice harboring control (CMV/betaGAL/CAT) or utrophin A 5'-UTR (CMV/betaGAL/UtrA/CAT) bicistronic reporter transgenes. Examination of multiple tissues from two CMV/betaGAL/UtrA/CAT lines revealed that the utrophin A 5'-UTR drives cap-independent translation of the reporter gene exclusively in skeletal muscles and no other examined tissues. This expression pattern suggested that skeletal muscle-specific factors are involved in IRES-mediated translation of utrophin A. We performed RNA-affinity chromatography experiments combined with mass spectrometry to identify trans-factors that bind the utrophin A 5'-UTR and identified eukaryotic elongation factor 1A2 (eEF1A2). UV-crosslinking experiments confirmed the specificity of this interaction. Regions of the utrophin A 5'-UTR that bound eEF1A2 also mediated cap-independent translation in C2C12 muscle cells. Cultured cells lacking eEF1A2 had reduced IRES activity compared with cells overexpressing eEF1A2. Together, these results suggest an important role for eEF1A2 in driving cap-independent translation of utrophin A in skeletal muscle. The trans-factors and signaling pathways driving skeletal-muscle specific IRES-mediated translation of utrophin A could provide unique targets for developing pharmacological-based DMD therapies."	"eEF1A2 and neuronal degeneration. Translation elongation factor eEF1A (eukaryotic elongation factor 1A) exists as two individually encoded variants in mammals, which are 98% similar and 92% identical at the amino acid level. One variant, eEF1A1, is almost ubiquitously expressed, the other variant, eEF1A2, shows a very restricted pattern of expression. A spontaneous mutation was described in 1972, which gives rise to the wasted phenotype: homozygous wst/wst mice develop normally until shortly after weaning, but then lose muscle bulk, acquire tremors and gait abnormalities and die by 4 weeks. This mutation has been shown to be a deletion of 15 kb that removes the promoter and first exon of the gene encoding eEF1A2. The reciprocal pattern of expression of eEF1A1 and eEF1A2 in muscle fits well with the timing of onset of the phenotype of wasted mice: eEF1A1 declines after birth until it is undetectable by 3 weeks, whereas eEF1A2 expression increases over this time. No other gene is present in the wasted deletion, and transgenic studies have shown that the phenotype is due to loss of eEF1A2. We have shown that eEF1A2, but not eEF1A1, is also expressed at high levels in motor neurons in the spinal cord. Wasted mice develop many pathological features of motor neuron degeneration and may represent a good model for early onset of motor neuron disease. Molecular modelling of the eEF1A1 and eEF1A2 protein structures highlights differences between the two variants that may be critical for functional differences. Interactions between eEF1A2 and ZPR1 (zinc-finger protein 1), which interacts with the SMN (survival motor neuron) protein, may be important in motor neuron biology."	"Resveratrol suppresses growth of human ovarian cancer cells in culture and in a murine xenograft model: eukaryotic elongation factor 1A2 as a potential target. The eukaryotic elongation factor 1A2 (eEF1A2) is known to retain oncogenic potential and is recognized as a novel target for cancer prevention and therapy. Resveratrol (trans-3,4',5-trihydroxystilbene), a phytoalexin present in grapes, has been reported to possess chemopreventive and chemotherapeutic activities. In the present study, we examined the growth-inhibitory effects of resveratrol in human ovarian cancer PA-1 cells, considering eEF1A2 as a potential molecular target. Pretreatment with resveratrol attenuated proliferation of serum-starved PA-1 cells stimulated with insulin or serum. Resveratrol also activated caspase-9, -7, and -3 and induced apoptosis in PA-1 cells in the presence of insulin or serum. Insulin or serum stimulation of PA-1 cells resulted in the marked induction of eEF1A2, which was suppressed by pretreatment with resveratrol. Moreover, resveratrol inhibited insulin- or serum-induced soft-agar colony formation in eEF1A2-transfected NIH3T3 cells. An antibody array directed to assess the phosphorylation of protein kinases revealed that treatment with insulin or serum induced the phosphorylation of Akt in PA-1 cells. Pharmacologic inhibition of Akt with LY294002 abrogated insulin- or serum-induced eEF1A2 expression and increased the caspase-3 activity. In another experiment, i.p. administration of resveratrol retarded the growth of PA-1 cell xenograft and the expression of eEF1A2 in athymic nude mice in association with decreased bromodeoxyuridine positivity, reduced expression of proliferating cell nuclear antigen, increased the terminal deoxynucleotidyl transferase-mediated dUTP nick end labeling and caspase-3 staining, and diminished CD31 positivity. Taken together, eEF1A2 may be considered as a potential molecular target for the antiproliferative effects of resveratrol in PA-1 ovarian cancer cells."	"eEF1A2 as a putative oncogene. The first evidence for the role of the protein elongation factor eEF1A2 in tumorigenesis was reported by Anand and colleagues who demonstrated that eEF1A2 is overexpressed in about 30% of ovarian tumors and some established ovarian cancer cells. This abnormal expression correlates with a poor prognosis. Since this discovery, there have been several reports suggesting eEF1A2 as a diagnostic marker in various cancers. This review highlights the oncogenic potential of eEF1A2."	"Structural models of human eEF1A1 and eEF1A2 reveal two distinct surface clusters of sequence variation and potential differences in phosphorylation. Despite sharing 92% sequence identity, paralogous human translation elongation factor 1 alpha-1 (eEF1A1) and elongation factor 1 alpha-2 (eEF1A2) have different but overlapping functional profiles. This may reflect the differential requirements of the cell-types in which they are expressed and is consistent with complex roles for these proteins that extend beyond delivery of tRNA to the ribosome. To investigate the structural basis of these functional differences, we created and validated comparative three-dimensional (3-D) models of eEF1A1 and eEF1A2 on the basis of the crystal structure of homologous eEF1A from yeast. The spatial location of amino acid residues that vary between the two proteins was thereby pinpointed, and their surface electrostatic and lipophilic properties were compared. None of the variations amongst buried amino acid residues are judged likely to have a major structural effect on the protein fold, or to affect domain-domain interactions. Nearly all the variant surface-exposed amino acid residues lie on one face of the protein, in two proximal but distinct sub-clusters. The result of previously performed mutagenesis in yeast may be interpreted as confirming the importance of one of these clusters in actin-bundling and filament disorganization. Interestingly, some variant residues lie in close proximity to, and in a few cases show differences in interactions with, residues previously inferred to be directly involved in binding GTP/GDP, eEF1Balpha and aminoacyl-tRNA. Additional sequence-based predictions, in conjunction with the 3-D models, reveal likely differences in phosphorylation sites that could reconcile some of the functional differences between the two proteins. The revelation and putative functional assignment of two distinct sub-clusters on the surface of the protein models should enable rational site-directed mutagenesis, including homologous reverse-substitution experiments, to map surface binding patches onto these proteins. The predicted variant-specific phosphorylation sites also provide a basis for experimental verification by mutagenesis. The models provide a structural framework for interpretation of the resulting functional analysis."	"The role of translation elongation factor eEF1A in intracellular alkalinization-induced tumor cell growth. The formation of a pH gradient, which is characterized by intracellular alkalinization and extracellular acidification, plays a key role in the growth and metastasis of tumor cells. However, the underlying mechanisms of alkalinization-induced cell growth are not known. In this study, we investigated the roles of eukaryotic translation elongation factor 1 alpha (eEF1A) in alkalinization-induced cell growth. In all cell lines tested (NIH3T3, HEK293, and HeLa), cell growth was affected by the modulation of intracellular pH. In general, weak intracellular alkalinization produced increased cell growth, whereas intracellular acidification resulted in decreased cell growth. It is interesting to note that portions of actin-bound eEF1A proteins were gradually reduced from acidic to alkaline conditions, suggesting an increase in levels of functionally active, free-form eEF1A. Over-expression of eEF1A caused increased cell growth in HeLa cells. It should be noted that dissociation of eEF1A from actin by transfection with the actin-binding domain deleted eEF1A construct further increased cell growth under acidic conditions, whereas most of the intact eEF1A was bound to actin. Conversely, knockdown of eEF1A by treatment with eEF1A1 and eEF1A2 siRNAs nullified the effects of alkalinization-induced cell growth. The above findings suggest that an increase in free-form eEF1A under alkaline conditions plays a critical role in alkalinization-induced cell growth."	"Antimicrobial and immunomodulatory attributes of statins: relevance in solid-organ transplant recipients. Statins are increasingly being used to treat solid-organ transplant recipients for posttransplantation metabolic complications. In addition to improving dyslipidemia, statins also have manifold non-lipid-lowering effects. With regard to sepsis or infection, these agents modify the inflammatory cascades by pleiotropic actions at multiple levels and exhibit activities against opportunistic bacteria, fungi, and viruses that can cause serious infections in solid-organ transplant recipients. They also have synergistic interactions with antimicrobial agents. Statins with antimicrobial and immunomodulatory attributes might improve morbidity and mortality attributable to sepsis or infection in solid-organ transplant recipients."	"Regulation and functional role of eEF1A2 in pancreatic carcinoma. Pancreatic cancer typically has an unfavourable prognosis due to late diagnosis and a lack of therapeutic options. Thus, it is important to better understand its pathological mechanism and to develop more effective treatments for the disease. Human chromosome 20q13 has long been suspected to harbour oncogenes involved in pancreatic cancer and other tumours. In this study, we found that eEF1A2, a gene located in 20q13, was significantly upregulated in pancreatic cancer. Little or no expression of eEF1A2 was detected in normal human pancreatic and chronic pancreatitis tissues, whereas increased eEF1A2 expression occurred in 83% of the pancreatic cancers we studied. Furthermore, using in vitro and in vivo model systems, we found that overexpression of eEF1A2 promoted cell growth, survival, and invasion in pancreatic cancer. Our data thus suggest that eEF1A2 might play an important role in pancreatic carcinogenesis, possibly by acting as a tumour oncogene."	"Loss of translation elongation factor (eEF1A2) expression in vivo differentiates between Wallerian degeneration and dying-back neuronal pathology. Wallerian degeneration and dying-back pathology are two well-known cellular pathways capable of regulating the breakdown and loss of axonal and synaptic compartments of neurons in vivo. However, the underlying mechanisms and molecular triggers of these pathways remain elusive. Here, we show that loss of translation elongation factor eEF1A2 expression in lower motor neurons and skeletal muscle fibres in homozygous Wasted mice triggered a dying-back neuropathy. Synaptic loss at the neuromuscular junction occurred in advance of axonal pathology and by a mechanism morphologically distinct from Wallerian degeneration. Dying-back pathology in Wasted mice was accompanied by reduced expression levels of the zinc finger protein ZPR1, as found in other dying-back neuropathies such as spinal muscular atrophy. Surprisingly, experimental nerve lesion revealed that Wallerian degeneration was significantly delayed in homozygous Wasted mice; morphological assessment revealed that approximately 80% of neuromuscular junctions in deep lumbrical muscles at 24 h and approximately 50% at 48 h had retained motor nerve terminals following tibial nerve lesion. This was in contrast to wild-type and heterozygous Wasted mice where &lt; 5% of neuromuscular junctions had retained motor nerve terminals at 24 h post-lesion. These data show that eEF1A2 expression is required to prevent the initiation of dying-back pathology at the neuromuscular junction in vivo. In contrast, loss of eEF1A2 expression significantly inhibited the initiation and progression of Wallerian degeneration in vivo. We conclude that loss of eEF1A2 expression distinguishes mechanisms underlying dying-back pathology from those responsible for Wallerian degeneration in vivo and suggest that eEF1A2-dependent cascades may provide novel molecular targets to manipulate neurodegenerative pathways in lower motor neurons."	"Molecular correlates of laminar differences in the macaque dorsal lateral geniculate nucleus. In anthropoid primates, cells in the magnocellular and parvocellular layers of the dorsal lateral geniculate nucleus (dLGN) are distinguished by unique retinal inputs, receptive field properties, and laminar terminations of their axons in visual cortex. To identify genes underlying these phenotypic differences, we screened RNA from magnocellular and parvocellular layers of adult macaque dLGN for layer-specific differences in gene expression. Real-time quantitative reverse transcription-PCR and in situ hybridization were used to confirm gene expression in adult and fetal macaque. Cellular localization of gene expression revealed 11 new layer-specific markers, of which 10 were enriched in magnocellular layers (BRD4, CAV1, EEF1A2, FAM108A1, INalpha, KCNA1, NEFH, NEFL, PPP2R2C, and SFRP2) and one was enriched in parvocellular and koniocellular layers (TCF7L2). These markers relate to functions involved in development, transcription, and cell signaling, with Wnt/beta-catenin and neurofilament pathways figuring prominently. A subset of markers was differentially expressed in the fetal dLGN during a developmental epoch critical for magnocellular and parvocellular pathway formation. These results provide new evidence for the molecular differentiation of magnocellular and parvocellular streams through the primate dLGN."	"Evaluation of suitable reference genes for gene expression studies in bovine muscular tissue. Real-time reverse transcriptase quantitative polymerase chain reaction (real-time RTqPCR) is a technique used to measure mRNA species copy number as a way to determine key genes involved in different biological processes. However, the expression level of these key genes may vary among tissues or cells not only as a consequence of differential expression but also due to different factors, including choice of reference genes to normalize the expression levels of the target genes; thus the selection of reference genes is critical for expression studies. For this purpose, ten candidate reference genes were investigated in bovine muscular tissue. The value of stability of ten candidate reference genes included in three groups was estimated: the so called 'classical housekeeping' genes (18S, GAPDH and ACTB), a second set of genes used in expression studies conducted on other tissues (B2M, RPII, UBC and HMBS) and a third set of novel genes (SF3A1, EEF1A2 and CASC3). Three different statistical algorithms were used to rank the genes by their stability measures as produced by geNorm, NormFinder and Bestkeeper. The three methods tend to agree on the most stably expressed genes and the least in muscular tissue. EEF1A2 and HMBS followed by SF3A1, ACTB, and CASC3 can be considered as stable reference genes, and B2M, RPII, UBC and GAPDH would not be appropriate. Although the rRNA-18S stability measure seems to be within the range of acceptance, its use is not recommended because its synthesis regulation is not representative of mRNA levels. Based on geNorm algorithm, we propose the use of three genes SF3A1, EEF1A2 and HMBS as references for normalization of real-time RTqPCR in muscle expression studies."	"Translation elongation factor eEF1A binds to a novel myosin binding protein-C-like protein. Eukaryotic translation elongation factor 1A (eEF1A) is a guanine-nucleotide binding protein, which transports aminoacylated tRNA to the ribosomal A site during protein synthesis. In a yeast two-hybrid screening of a human skeletal muscle cDNA library, a novel eEF1A binding protein, immunoglobulin-like and fibronectin type III domain containing 1 (IGFN1), was discovered, and its interaction with eEF1A was confirmed in vitro. IGFN1 is specifically expressed in skeletal muscle and presents immunoglobulin I and fibronectin III sets of domains characteristic of sarcomeric proteins. IGFN1 shows sequence and structural homology to myosin binding protein-C fast and slow-type skeletal muscle isoforms. IGFN1 is substantially upregulated during muscle denervation. We propose a model in which this increased expression of IGFN1 serves to down-regulate protein synthesis via interaction with eEF1A during denervation."	"The eukaryotic translation elongation factor eEF1A2 induces neoplastic properties and mediates tumorigenic effects of ZNF217 in precursor cells of human ovarian carcinomas. Ovarian epithelial carcinomas (OECs) frequently exhibit amplifications at the 20q13 locus which is the site of several oncogenes, including the eukaryotic elongation factor EEF1A2 and the transcription factor ZNF217. We reported previously that overexpressed ZNF217 induces neoplastic characteristics in precursor cells of OEC. Unexpectedly, ZNF217, which is a transcriptional repressor, enhanced expression of eEF1A2. In our study, array comparative genomic hybridization, single nucleotide polymorphism and Affymetrix analysis of ZNF217-overexpressing cell lines confirmed consistently increased expression of eEF1A2 but not of other oncogenes, and revealed early changes in EEF1A2 gene copy numbers and increased expression at crisis during immortalization. We defined the influence of eEF1A2 overexpression on immortalized ovarian surface epithelial cells, and investigated interrelationships between effects of ZNF217 and eEF1A2 on cellular phenotypes. Lentivirally induced eEF1A2 overexpression caused delayed crisis, apoptosis resistance and increases in serum-independence, saturation densities and anchorage independence. siRNA to eEF1A2 reversed apoptosis resistance and reduced anchorage independence in eEF1A2-overexpressing lines. Remarkably, siRNA to eEF1A2 was equally efficient in inhibiting both anchorage independence and resistance to apoptosis conferred by ZNF217 overexpression. Our data define neoplastic properties that are caused by eEF1A2 in nontumorigenic ovarian cancer precursor cells, and suggest that eEF1A2 plays a role in mediating ZNF217-induced neoplastic progression."	"The human Y-encoded testis-specific protein interacts functionally with eukaryotic translation elongation factor eEF1A, a putative oncoprotein. Testis-specific protein Y-encoded (TSPY) is the putative gene for the gonadoblastoma locus on the Y chromosome. TSPY is expressed in normal germ cells of fetal and adult testis and ectopically in tumor germ cells, including gonadoblastoma in intersex patients, testicular germ cell tumors, prostate cancer and other somatic cancers. It is a member of the TSPY/SET/NAP1 superfamily and harbors a highly conserved domain, termed SET/NAP domain. To explore its possible role(s) in tumorigenesis, we had performed a yeast two-hybrid screen of a fetal gonadal cDNA library and identified the translation elongation factor eEF1A as a binding partner for TSPY at the SET/NAP domain. TSPY and eEF1A were highly expressed and colocalized in tumor germ cells of human seminoma specimens, suggesting their possible interaction in germ cell tumors. They were colocalized in the cytoplasm and could be co-immunoprecipitated from transfected COS7 cells. Significantly, both eEF1A1 and eEF1A2 have postulated to be involved in various types of human cancer, including breast and prostate cancers. TSPY enhanced protein synthesis of a reporter gene, which was augmented by an overexpression of eEF1A. TSPY also increased the nuclear redistribution of eEF1A, resulting in a parallel increase in reporter gene transcripts. Our results suggest that TSPY could exert its oncogenic function(s) by interacting with eEF1As and stimulating gene expression via its enhancements in protein synthesis and gene transcription."	"Eukaryotic elongation factor 1A2 cooperates with phosphatidylinositol-4 kinase III beta to stimulate production of filopodia through increased phosphatidylinositol-4,5 bisphosphate generation. Eukaryotic elongation factor 1 alpha 2 (eEF1A2) is a transforming gene product that is highly expressed in human tumors of the ovary, lung, and breast. eEF1A2 also stimulates actin remodeling, and the expression of this factor is sufficient to induce the formation of filopodia, long cellular processes composed of bundles of parallel actin filaments. Here, we find that eEF1A2 stimulates formation of filopodia by increasing the cellular abundance of cytosolic and plasma membrane-bound phosphatidylinositol-4,5 bisphosphate [PI(4,5)P(2)]. We have previously reported that the eEF1A2 protein binds and activates phosphatidylinositol-4 kinase III beta (PI4KIIIbeta), and we find that production of eEF1A2-dependent PI(4,5)P(2) and generation of filopodia require PI4KIIIbeta. Furthermore, PI4KIIIbeta is itself capable of activating both the production of PI(4,5)P(2) and the creation of filopodia. We propose a model for extrusion of filopodia in which eEF1A2 activates PI4KIIIbeta, and activated PI4KIIIbeta stimulates production of PI(4,5)P(2) and filopodia by increasing PI4P abundance. Our work suggests an important role for both eEF1A2 and PI4KIIIbeta in the control of PI(4,5)P(2) signaling and actin remodeling."	"Molecular characterization and expression analysis of five different elongation factor 1 alpha genes in the flatfish Senegalese sole (Solea senegalensis Kaup): differential gene expression and thyroid hormones dependence during metamorphosis. Eukaryotic elongation factor 1 alpha (eEF1A) is one of the four subunits composing eukaryotic translation elongation factor 1. It catalyzes the binding of aminoacyl-tRNA to the A-site of the ribosome in a GTP-dependent manner during protein synthesis, although it also seems to play a role in other non-translational processes. Currently, little information is still available about its expression profile and regulation during flatfish metamorphosis. With regard to this, Senegalese sole (Solea senegalensis) is a commercially important flatfish in which eEF1A gene remains to be characterized. The development of large-scale genomics of Senegalese sole has facilitated the identification of five different eEF1A genes, referred to as SseEF1A1, SseEF1A2, SseEF1A3, SseEF1A4, and Sse42Sp50. Main characteristics and sequence identities with other fish and mammalian eEF1As are described. Phylogenetic and tissue expression analyses allowed for the identification of SseEF1A1 and SseEF1A2 as the Senegalese sole counterparts of mammalian eEF1A1 and eEF1A2, respectively, and of Sse42Sp50 as the ortholog of Xenopus laevis and teleost 42Sp50 gene. The other two elongation factors, SseEF1A3 and SseEF1A4, represent novel genes that are mainly expressed in gills and skin. The expression profile of the five genes was also studied during larval development, revealing different behaviours. To study the possible regulation of SseEF1A gene expressions by thyroid hormones (THs), larvae were exposed to the goitrogen thiourea (TU). TU-treated larvae exhibited lower SseEF1A4 mRNA levels than untreated controls at both 11 and 15 days after treatment, whereas transcripts of the other four genes remained relatively unchanged. Moreover, addition of exogenous T4 hormone to TU-treated larvae increased significantly the steady-state levels of SseEF1A4 with respect to untreated controls, demonstrating that its expression is up-regulated by THs. We have identified five different eEF1A genes in the Senegalese sole, referred to as SseEF1A1, SseEF1A2, SseEF1A3, SseEF1A4, and Sse42Sp50. The five genes exhibit different expression patterns in tissues and during larval development. TU and T4 treatments demonstrate that SseEF1A4 is up-regulated by THs, suggesting a role in the translational regulation of the factors involved in the dramatic changes that occurs during Senegalese sole metamorphosis."	"Multiple molecular dynamics simulation of the isoforms of human translation elongation factor 1A reveals reversible fluctuations between &quot;open&quot; and &quot;closed&quot; conformations and suggests specific for eEF1A1 affinity for Ca2+-calmodulin. Eukaryotic translation elongation factor eEF1A directs the correct aminoacyl-tRNA to ribosomal A-site. In addition, eEF1A is involved in carcinogenesis and apoptosis and can interact with large number of non-translational ligands. There are two isoforms of eEF1A, which are 98% similar. Despite the strong similarity, the isoforms differ in some properties. Importantly, the appearance of eEF1A2 in tissues in which the variant is not normally expressed can be coupled to cancer development.We reasoned that the background for the functional difference of eEF1A1 and eEF1A2 might lie in changes of dynamics of the isoforms. It has been determined by multiple MD simulation that eEF1A1 shows increased reciprocal flexibility of structural domains I and II and less average distance between the domains, while increased non-correlated diffusive atom motions within protein domains characterize eEF1A2. The divergence in the dynamic properties of eEF1A1 and eEF1A2 is caused by interactions of amino acid residues that differ between the two variants with neighboring residues and water environment. The main correlated motion of both protein isoforms is the change in proximity of domains I and II which can lead to disappearance of the gap between the domains and transition of the protein into a &quot;closed&quot; conformation. Such a transition is reversible and the protein can adopt an &quot;open&quot; conformation again. This finding is in line with our earlier experimental observation that the transition between &quot;open&quot; and &quot;closed&quot; conformations of eEF1A could be essential for binding of tRNA and/or other biological ligands. The putative calmodulin-binding region Asn311-Gly327 is less flexible in eEF1A1 implying its increased affinity for calmodulin. The ability of eEF1A1 rather than eEF1A2 to interact with Ca2+/calmodulin is shown experimentally in an ELISA-based test. We have found that reversible transitions between &quot;open&quot; and &quot;close&quot; conformations of eEF1A provide a molecular background for the earlier observation that the eEF1A molecule is able to change the shape upon interaction with tRNA. The ability of eEF1A1 rather than eEF1A2 to interact with calmodulin is predicted by MD analysis and showed experimentally. The differential ability of the eEF1A isoforms to interact with signaling molecules discovered in this study could be associated with cancer-related properties of eEF1A2."	"The prognostic significance of elongation factor eEF1A2 in ovarian cancer. To determine whether eukaryotic elongation factor 1 alpha 2 (eEF1A2), a transforming gene previously shown to be highly expressed in primary human ovarian tumours, is a prognostic marker. We have used an antibody specific for eEF1A2 to measure eEF1A2 protein expression in 500 primary ovarian tumours in a tissue microarray. We have also ectopically expressed eEF1A2 in SK-OV-3 cells, a clear cell carcinoma line that does not normally express eEF1A2. We have shown that eEF1A2 has high expression levels in approximately 30% of all primary ovarian tumours. 50% of serous tumours, 30% of endometrioid, 19% of mucinous and 8% of clear cell tumours highly express eEF1A2. Ectopic expression of eEF1A2 in the SK-OV-3 clear cell carcinoma line enhances their in vitro proliferative capacity and ability to form tumour-like spheroids in hanging drop culture. Expression of eEF1A2 did not alter sensitivity to anoikis, cisplatin, or taxol. In serous cancer, eEF1A2 is an independent prognostic marker for survival and high eEF1A2 protein expression was associated with increased probability of 20-year survival. eEF1A2 is highly expressed in ovarian carcinomas. Its expression enhances cell growth in vitro, and eEF1A2 expression is likely to be a useful ovarian cancer prognostic factor in ovarian cancer patients with serous tumours."	"Etiology-dependent molecular mechanisms in human hepatocarcinogenesis. Hepatocellular carcinoma (HCC) is one of the most common cancers worldwide and is characterized by aggressive tumor behavior coupled with poor prognosis. Various etiologies have been linked to HCC development, most prominently chronic hepatitis B and C virus infections as well as chronic alcohol consumption. In approximately 10% of HCCs, the etiology remains cryptic; however, recent epidemiological data suggest that most of these cryptogenic HCCs develop due to nonalcoholic steatohepatitis. To identify etiology-dependent DNA copy number aberrations and genes relevant to hepatocarcinogenesis, we performed array-based comparative genomic hybridization of 63 HCCs of well-defined etiology and 4 HCC cell lines followed by gene expression profiling and functional analyses of candidate genes. For a 10-megabase chromosome region on 8q24, we observed etiology-dependent copy number gains and MYC overexpression in viral and alcohol-related HCCs, resulting in up-regulation of MYC target genes. Cryptogenic HCCs showed neither 8q24 gains, nor MYC overexpression, nor target gene activation, suggesting that tumors of this etiology develop by way of a distinct MYC-independent pathomechanism. Furthermore, we detected several etiology-independent small chromosome aberrations, including amplification of MDM4 on 1q32.1 and frequent gains of EEF1A2 on 20q13.33. Both genes were overexpressed in approximately half the HCCs examined, and gene silencing reduced cell viability as well as proliferation and increased apoptosis rates in HCC cell lines. Our findings suggest that MDM4 and EEF1A2 act as etiology-independent oncogenes in a significant percentage of HCCs."	"Overexpression of the elongation factor 1A1 relates to muscle proteolysis and proapoptotic p66(ShcA) gene transcription in hypercatabolic trauma patients. The eukaryotic elongation factors (eEF1A2 and eEF1A1) play a key role in translation of messenger RNA (mRNA) to protein. In skeletal muscle of healthy humans, EEF1A2 is overexpressed and selected over EEF1A1. In cellular stress models, muscle EEF1A1 expression increased and was associated with apoptosis and catabolism. We have determined mRNA levels of EEF1A1 and EEF1A2, as well as those of other proapoptotic genes, such as p66(ShcA) and c-MYC, in skeletal muscle of severely traumatized patients and healthy volunteers. Muscle protein kinetic was determined by stable isotopes and the arteriovenous technique. The patients were in a hypercatabolic condition because the rate of muscle proteolysis exceeded that of synthesis. Mean mRNA levels of EEF1A1 and EEF1A2 were 165- and 29-fold greater (P &lt; .01) in patients than in the control group, respectively. Mean p66(ShcA) mRNA levels were 3-fold greater (P &lt; .05) in patients than in the controls. In contrast, c-MYC mRNA levels were not significantly different in patients and healthy controls. In patients, muscle mRNA levels of EEF1A1 and p66(ShcA) directly correlated (P &lt; .05) with the rate of proteolysis (R = 0.901 and R = 0.826, respectively). This is in agreement with a reduction in actin and tubulin protein content, both markers of cytoskeletal and sarcomeric disorganization, and with an increased poly(adenosine diphosphate-ribose) polymerase cleavage, a marker of apoptosis. In conclusion, in hypercatabolic traumatized patients, an up-regulation of muscle EEF1A1 and p66(ShcA) relates to proteolysis rate, suggesting an involvement of these genes in muscle catabolic response."	"Components of the translational machinery are associated with juvenile glycine receptors and are redistributed to the cytoskeleton upon aging and synaptic activity. The translation eukaryotic elongation factor 1alpha (eEF1A) is a monomeric GTPase involved in protein synthesis. In addition, this protein is thought to participate in other cellular functions such as actin bundling, cell cycle regulation, and apoptosis. Here we show that eEF1A is associated with the alpha2 subunit of the inhibitory glycine receptor in pulldown experiments with rat brain extracts. Moreover, additional proteins involved in translation like ribosomal S6 protein and p70 ribosomal S6 protein kinase as well as ERK1/2 and calcineurin were identified in the same pulldown approaches. Glycine receptor activation in spinal cord neurons cultured for 1 week resulted in an increased phosphorylation of ribosomal S6 protein. Immunocytochemistry showed that eEF1A and ribosomal S6 protein are localized in the soma, dendrites, and at synapses of cultured hippocampal and spinal cord neurons. Consistent with our biochemical data, immunoreactivities of both proteins were partially overlapping with glycine receptor immunoreactivity in cultured spinal cord and hippocampal neurons. After 5 weeks in culture, eEF1A immunoreactivity was redistributed to the cytoskeleton in about 45% of neurons. Interestingly, the degree of redistribution could be increased at earlier stages of in vitro differentiation by inhibition of either the ERK1/2 pathway or glycine receptors and simultaneous N-methyl-D-aspartate receptor activation. Our findings suggest a functional coupling of eEF1A with both inhibitory and excitatory receptors, possibly involving the ERK-signaling pathway."	"A2 isoform of mammalian translation factor eEF1A displays increased tyrosine phosphorylation and ability to interact with different signalling molecules. The eEF1A1 and eEF1A2 isoforms of translation elongation factor 1A have 98% similarity and perform the same protein synthesis function catalyzing codon-dependent binding of aminoacyl-tRNA to 80S ribosome. However, the isoforms apparently play different non-canonical roles in apoptosis and cancer development which are awaiting further investigations. We hypothesize that the difference in non-translational functions could be caused, in particular, by differential ability of the isoforms to be involved in phosphotyrosine-mediated signalling. The ability of eEF1A1 and eEF1A2 to interact with SH2 and SH3 domains of different signalling molecules in vitro was compared. Indeed, contrary to eEF1A1, eEF1A2 was able to interact with SH2 domains of Grb2, RasGAP, Shc and C-terminal part of Shp2 as well as with SH3 domains of Crk, Fgr, Fyn and phospholipase C-gamma1. Interestingly, the interaction of both isoforms with Shp2 in vivo was found using stable cell lines expressing eEF1A1-His or eEF1A2-His. The formation of a complex between endogenous eEF1A and Shp2 was also shown. Importantly, a higher level of tyrosine phosphorylation of eEF1A2 as compared to eEF1A1 was demonstrated in several independent experiments and its importance for interaction of eEF1A2 with Shp2 in vitro was revealed. Thus, despite the fact that both isoforms of eEF1A could be involved in the phosphotyrosine-mediated processes, eEF1A2 apparently has greater potential to participate in such signalling pathways. Since tyrosine kinases/phosphatases play a prominent role in human cancerogenesis, our observations may gave a basis for recently found oncogenicity of the eEF1A2 isoform."	"Characterization of a putative ovarian oncogene, elongation factor 1alpha, isolated by panning a synthetic phage display single-chain variable fragment library with cultured human ovarian cancer cells. In an effort to identify cell surface targets and single short-chain antibody (scFv) for ovarian cancer therapy, we used a phage display approach to isolate an antibody with high reactivity against ovarian cancer. A phage scFv library was subjected to panning against human SK-OV-3 ovarian cancer cells. A clone with high reactivity was selected and tested in immunoperoxidase staining on a panel of normal tissues and ovarian carcinoma. Using immunoprecipitation, a differentially expressed band was analyzed by mass spectrometry. The antigen subclass was characterized with reverse transcription-PCR on cDNA library of normal tissues, and 91 ovarian cancer specimens, and correlated with clinicohistopathologic characteristics. Ninety-six individual scFv clones were screened in ELISA following panning. scFv F7 revealed high reactivity with ovarian cancer cell lines and showed intense staining of 15 fresh ovarian cancer specimens and no staining of a panel of normal tissues. A 40-kDa protein was identified to be translation elongation factor 1alpha1 (EEF1A1; P &lt; 0.05). The expression of EEF1A2, a highly homologous and functionally similar oncogene, was found to be restricted only to the normal tissues of the heart, brain, and skeletal muscle. Aberrant EEF1A2 mRNA expression was found in 21 of 91 (23%) of ovarian cancer specimens and significantly correlated with increased likelihood of recurrence (P = 0.021). scFv F7 may represent an ovarian cancer-specific antibody against translation EEF1A family of translational factors. We propose that EEF1A2 may be a useful target for therapy of human ovarian cancer."	"The expression levels of the translational factors eEF1A 1/2 correlate with cell growth but not apoptosis in hepatocellular carcinoma cell lines with different differentiation grade. Despite the involvement of the elongation factors eEF1A (eEF1A1 and eEF1A2) in the development of different cancers no information is available on their possible contribution to the biology of hepatocellular carcinoma (HCC). We investigated the expression of both forms of eEF1A in HepG2 and JHH6 cell lines considered to be a good in vitro model of HCC at different stage of differentiation. Our data indicate that the mRNA amount of eEF1A1 is increased in both cell lines as compared to normal liver tissue, but eEF1A2 mRNA level is markedly increased only in JHH6. Moreover, the less differentiated cell line JHH6 displays higher EEF1A1 and EEF1A2 mRNAs levels and an higher nuclear-enriched/cytoplasm ratio of EEF1A protein compared to the better differentiated HepG2 cell line. Over-expression depends only partially on gene amplification. The more abundant mRNA levels and the higher nuclear-enriched/cytoplasm ratio of eEF1A in JHH6 neither correlate with apoptosis resistance nor with proliferation rate in sub-confluent cells. However, in confluent cells, a clear tendency to maintain JHH6 into the cell cycle was observed. In conclusion, we document the increased mRNA levels of EEF1A genes in HCC cell lines compared to normal liver. Additionally, we show the increased nuclear-enriched/cytoplasmic protein ratio of eEF1A and the marked raise of the expression of both eEF1A forms in JHH6 compared to HepG2, suggesting the possibility that eEF1A forms might become a relevant markers related to HCC tumor phenotype."	"Whole genome microarray analysis of gene expression in subjects with fragile X syndrome. Fragile X syndrome, the most common inherited form of human mental retardation, arises as a consequence of a large expansion of a CGG trinucleotide repeat in 5' untranslated region of the fragile X mental retardation 1 (FMR1) gene located on the X chromosome. Although the FMR1 gene was cloned 15 years ago, the mechanisms that cause fragile X syndrome remain to be elucidated. Multiple studies have identified proteins that potentially interact with FMRP, the product of FMR1, and differentially expressed genes in an Fmr1 knockout mouse. To assess the impact of fragile X syndrome on gene expression in humans and to attempt to identify disturbed genes and gene interactive pathways relevant to fragile X syndrome, we performed gene expression microarray analysis using RNA isolated from lymphoblastoid cells derived from males with fragile X syndrome with and similarly aged control males. We used whole genome microarrays consisting of 57,000 probes to analyze global changes to the transcriptome in readily available lymphoblastoid cell lines derived from males with fragile X syndrome and healthy comparison males with normal intelligence. We verified the differential expression of several of these genes with known biological function relevant to fragile X syndrome using quantitative reverse transcription polymerase chain reaction using RNA from lymphoblastoid cells from fragile X syndrome and control males as well as RNA from human brain tissue (frontal cortex) of other affected fragile X syndrome males. We identified more than 90 genes that had significant differences in probe intensity of at least 1.5-fold with a false discovery rate of 5% in cells from males with fragile X syndrome relative to comparison males. The list of 90 differentially expressed genes contained an overrepresentation of genes involved in signaling (e.g., UNC13B [-3.3-fold change in expression in lymphoblasts by quantitative reverse transcription polymerase chain reaction), GABRD [+2.0-fold change] EEF1A2 [+4.3-fold change]), morphogenesis (e.g., MAP1B [-7.5-fold change], ACCN1 [-8.0-fold change]), and neurodevelopment and function (e.g., PPP1R9B [+3.5-fold change], HES1 [+2.8-fold change]). These genes may represent members of candidate networks disturbed by the loss of FMR1 and consequently fragile X mental retardation protein function, thus lending support for altered fragile X mental retardation protein function resulting in an abnormal transcriptome. Further analyses of the genes, especially those that have been identified in multiple studies, are warranted to develop a more integrated description of the alterations in gene processing that lead to fragile X syndrome."	"Translation elongation factor eEF1A2 is essential for post-weaning survival in mice. Translation elongation factor eEF1A, formerly known as EF-1 alpha, exists as two variant forms; eEF1A1, which is almost ubiquitously expressed, and eEF1A2, whose expression is restricted to muscle and brain at the level of whole tissues. Expression analysis of these genes has been complicated by a general lack of availability of antibodies that specifically recognize each variant form. Wasted mice (wst/wst) have a 15.8-kilobase deletion that abolishes activity of eEF1A2, but before this study it was unknown whether the deletion also affected neighboring genes. We have generated a panel of anti-peptide antibodies and used them to show that eEF1A2 is expressed at high levels in specific cell types in tissues previously thought not to express this variant, such as pancreatic islet cells and enteroendocrine cells in colon crypts. Expression of eEF1A1 and eEF1A2 is shown to be generally mutually exclusive, and we relate the expression pattern of eEF1A2 to the phenotype seen in wasted mice. We then carried out a series of transgenic experiments to establish whether the expression of other genes is affected by the deletion in wasted mice. We show that aspects of the phenotype such as motor neuron degeneration relate precisely to the relative expression of eEF1A1 and eEF1A2, whereas the immune system abnormalities are likely to result from a stress response. We conclude that loss of eEF1A2 function is solely responsible for the abnormalities seen in these mice."	"Expression of eEF1A2 is associated with clear cell histology in ovarian carcinomas: overexpression of the gene is not dependent on modifications at the EEF1A2 locus. The tissue-specific translation elongation factor eEF1A2 is a potential oncogene that is overexpressed in human ovarian cancer. eEF1A2 is highly similar (98%) to the near-ubiquitously expressed eEF1A1 (formerly known as EF1-alpha) making analysis with commercial antibodies difficult. We wanted to establish the expression pattern of eEF1A2 in ovarian cancer of defined histological subtypes at both the RNA and protein level, and to establish the mechanism for the overexpression of eEF1A2 in tumours. We show that while overexpression of eEF1A2 is seen at both the RNA and protein level in up to 75% of clear cell carcinomas, it occurs at a lower frequency in other histological subtypes. The copy number at the EEF1A2 locus does not correlate with expression level of the gene, no functional mutations were found, and the gene is unmethylated in both normal and tumour DNA, showing that overexpression is not dependent on genetic or epigenetic modifications at the EEF1A2 locus. We suggest that the cause of overexpression of eEF1A2 may be the inappropriate expression of a trans-acting factor. The oncogenicity of eEF1A2 may be related either to its role in protein synthesis or to potential non-canonical functions."	"Establishment and expression profiling of new lung cancer cell lines from Chinese smokers and lifetime never-smokers. Bronchogenic adenocarcinoma is the predominant histologic subtype of lung cancer, which ranks top in the cancer mortality in both men and women. Female nonsmokers and adenocarcinoma have emerged as a distinct combination in patients with lung cancer in recent decades. Lung cancer cell lines established from patients with known clinical characteristics such as gender and smoking habit would be useful for future research on lung cancer. Four new lung adenocarcinoma cell lines (HKULC 1-4) were established from Chinese patients with primary lung adenocarcinomas and with different clinical characteristics with respect to age, gender, smoking habits, tumor staging, and previous therapy. They were characterized by immunohistochemical and growth kinetic studies, tests for tumorigenicity in nude mice, epidermal growth factor receptor (EGFR) gene mutation analysis, and in situ hybridization, and gene expression profiling with Affymetrix GeneChip HG-U133A. The newly established HKULC lung adenocarcinoma cell lines were maintained for over 70 passages and demonstrated morphologic and immunohistochemical features and growth kinetics of tumor cell lines. One of the four HKULC cell lines, HKULC 3 (derived from a female nonsmoking patient with lung adenocarcinoma), was found to have a deletion at exon 19 of the EGFR gene. EGFR in situ hybridization showed no EGFR gene amplification in these cell lines. HKULC 1 and 4 formed tumor xenografts after inoculation in nude mice. A list of 71 genes that were differentially expressed or showing class predictive significance was identified. These genes included putative tumor suppressor genes (DKK3, SERPINF1, CDH11, DSC3, and KLF6), genes involved in or related to the EGFR pathways (ERBB3, MUC1, VAV1), genes involved in regulation of cell cycle and proliferation (CDKN1A and CDKN2A), a putative oncogene (EEF1A2), and a gene related to metastasis (MTSS1). Four new lung adenocarcinoma cell lines were established from patients with different clinical characteristics. These characterized cell lines and their gene expression profiles will provide resources for studies of lung cancer biology and in vitro chemotherapeutic drug study."	"Multiple roles of the candidate oncogene ZNF217 in ovarian epithelial neoplastic progression. The transcription factor ZNF217 is often amplified in ovarian cancer, but its role in neoplastic progression is unknown. We introduced ZNF217-HA by adenoviral and retroviral infection into normal human ovarian surface epithelial cells (OSE), i.e., the source of ovarian cancer, and into SV40 Tag/tag expressing, p53/pRB-deficient OSE with extended but finite life spans (IOSE). In OSE, ZNF217-HA reduced cell-substratum adhesion and accelerated loss of senescent cells, but caused no obvious proneoplastic changes. In contrast, ZNF217-HA transduction into IOSE yielded two permanent lines, I-80RZ and I-144RZ, which exhibited telomerase activity, stable telomere lengths, anchorage independence and reduced serum dependence, but were not tumorigenic in SCID mice. This immortalization required short-term EGF treatment near the time of crisis. The permanent lines were EGF-independent, but ZNF217-dependent since siRNA to ZNF217 inhibited anchorage independence and arrested growth. Array CGH revealed genomic changes resembling those of ovarian carcinomas, such as amplicons at 3q and 20q, and deletions at 4q and 18, associated with underexpressed annexin A10, N-cadherin, desmocollin 3 and PAI-2, which have been reported as tumor suppressors. The lines overexpressed EEF1A2, SMARA3 and STAT1 and underexpressed other oncogenes, tumor suppressors and extracellular matrix/adhesion genes. The results implicate ZNF217 as an ovarian oncogene, which is detrimental to senescing normal OSE cells but contributes to neoplastic progression in OSE with inactivated p53/RB. The resemblance of the genomic changes in the ZNF217-overexpressing lines to ovarian carcinomas provides a unique model to investigate interrelationships between these changes and ovarian neoplastic phenotypes."	"Molecular programming of endothelin-1 in HIV-infected brain: role of Tat in up-regulation of ET-1 and its inhibition by statins. Human Immune Deficiency Virus-1 (HIV-1) infection can induce severe and debilitating neurological problems, including behavioral abnormalities, motor dysfunction, and dementia. HIV can persistently infect astrocytes, during which viral accessory proteins are produced that are unaffected by current antiretroviral therapy. The effect of these proteins on astrocyte function remains unknown. Astrocytes are the predominant cells within the brain; thus, disruption of astrocyte function could influence the neuropathogenesis of HIV infection. To explore further these effects, we constitutively expressed HIV-Tat protein in astrocytes. Since the nuclear presence of Tat protein leads to alteration of host gene expression, we further analyzed the effects of Tat on host gene transcripts. Endothelin-1 (ET-1) was a significantly elevated transcript as verified by reverse transcription-polymerase chain reaction (RT-PCR), and it was subsequently released extracellularly in Tat-expressing and HIV-infected astrocytes. ET-1 expression was also prominent in reactive astrocytes and neurons in brain tissues from basal ganglia and frontal lobes of HIV encephalitic patients. HIV-Tat regulated ET-1 at the transcriptional level through NF-kappaB (NF-kappaB)-responsive sites in the ET-1 promoter. Intriguingly, simvastatin (10 microM) down-regulated HIV-Tat-induced ET-1 and also inhibited activation of NF-kappaB in astrocytes. Our findings suggest that ET-1 may be critical in mediating the neuropathogenesis of HIV dementia and that statins may have therapeutic potential in these patients."	"eEF1A2 activates Akt and stimulates Akt-dependent actin remodeling, invasion and migration. eEF1A2 (eukaryotic protein elongation factor 1 alpha 2) is a protein translation factor that is likely a human oncogene by virtue of its capacity to transform mammalian cells and its high expression in tumors of the ovary, breast and lung. Here, we show that expression of eEF1A2 is sufficient to stimulate the formation of filopodia in BT549 human breast cancer cells and non-transformed Rat2 cells. Filopodia formation in eEF1A2-expressing cells is dependent on the activity of phosphatidylinositol-3 kinase (PI3K), and the ROCK and Akt kinases. Furthermore, eEF1A2 expression is sufficient to activate Akt in a PI3K-dependent fashion and inactivation of eEF1A2 by short interfering RNA reduces Akt activity. Using breast cancer cell line BT 549, we show that eEF1A2 expression stimulates cell migration and invasion in a largely PI3K- and Akt-dependent manner. These results suggest that eEF1A2 regulates oncogenesis through Akt and PI3K-dependent cytoskeletal remodeling."	"Binding of elongation factor eEF1A2 to phosphatidylinositol 4-kinase beta stimulates lipid kinase activity and phosphatidylinositol 4-phosphate generation. Eukaryotic protein translation elongation factor 1 alpha 2 (eEF1A2) is an oncogene that transforms mammalian cell lines and increases their tumorigenicity in nude mice. Increased expression of eEF1A2 occurs during the development of breast, ovarian, and lung cancer. Here, we report that eEF1A2 directly binds to and activates phosphatidylinositol 4-kinase III beta (PI4KIIIbeta), an enzyme that converts phosphatidylinositol to phosphatidylinositol 4-phosphate. Purified recombinant eEF1A2 increases PI4KIIIbeta lipid kinase activity in vitro, and expression of eEF1A2 in rat and human cells is sufficient to increase overall cellular phosphatidylinositol 4-kinase activity and intracellular phosphatidylinositol 4-phosphate abundance. siRNA-mediated reduction in eEF1A2 expression concomitantly reduces phosphatidylinositol 4-kinase activity. This identifies a physical and functional relationship between eEF1A2 and PI4KIIIbeta."	"Calcification and cellularity in human aortic heart valve tissue determine the differentiation of bone-marrow-derived cells. Human bone-marrow-derived mesenchymal stem cells (MSC) are responsible the remodeling of human tissue. However, damaged aortic valves are lack the ability to regenerate which is an active cell-mediated process. Diseased aortic valve remodeling has similarities even to bone formation. In this study, the prerequisites for cultured MSCs to undergo osteoblastic differentiation on aortic valves were explored. An ex vivo model using a human aortic valve microenvironment was developed. The expression of type I procollagen, alkaline phosphatase activity, osteocalcin secretion and osteocalcin immunostaining were studied to evaluate the induction of osteogenesis of the MSCs on noncalcified and calcified human aortic valves. Aortic valves were exposed to freeze-thaw injury to devitalize valves in order to separately study the role of valve matrix vs. endothelial cells in the explants. Thus, valves were assigned to 1 of 4 treatment groups: noncalcified uninjured valves, calcified uninjured valves, noncalcified injured and calcified injured. Finally, valves were decalcified to separately explore the effect of a calcified matrix on the osteogenesis. In this co-culture system, the noncalcified uninjured valves inhibited osteogenesis of MSCs, whereas the calcified valves promoted differentiation towards osteoblastic lineage. Devitalization of the valve matrix inflicted a significant increase in the osteogenesis of co-cultured MSCs. Calcified matrix in the valves seemed to have a role in the spontaneous osteogenesis of the MSCs. This spontaneous matrix induced differentiation of MSCs into osteoblast lineage could not be inhibited by pravastatin, indomethacin or tetracycline. In conclusion, these results suggest that interactions between MSCs and aortic valve matrix components and cells modulate MSC phenotype in this environment. Further studies are required to characterize this interesting phenomenon in greater detail."	"Expression of protein elongation factor eEF1A2 predicts favorable outcome in breast cancer. Breast cancer is the most common malignancy among North American women. The identification of factors that predict outcome is key to individualized disease management and to our understanding of breast oncogenesis. We have analyzed mRNA expression of protein elongation factor eEF1A2 in two independent breast tumor populations of size n = 345 and n = 88, respectively. We find that eEF1A2 mRNA is expressed at a low level in normal breast epithelium but is detectably expressed in approximately 50-60% of primary human breast tumors. We have derived an eEF1A2-specific antibody and measured eEF1A2 protein expression in a sample of 438 primary breast tumors annotated with 20-year survival data. We find that high levels of eEF1A2 protein are detected in 60% of primary breast tumors independent of HER-2 protein expression, tumor size, lymph node status, and estrogen receptor (ER) expression. Importantly, we find that high eEF1A2 is a significant predictor of outcome. Women whose tumor has high eEF1A2 protein expression have an increased probability of 20-year survival compared to those women whose tumor does not express substantial eEF1A2. In addition, eEF1A2 protein expression predicts increased survival probability in those breast cancer patients whose tumor is HER-2 negative or who have lymph node involvement."	"Mouse translation elongation factor eEF1A-2 interacts with Prdx-I to protect cells against apoptotic death induced by oxidative stress. eEF1A-1 and eEF1A-2 are two isoforms of translation elongation factor eEF1A. In adult mammalian tissues, isoform eEF1A-1 is present in all tissues except neurons, cardiomyocytes, and myotubes, where its isoform, eEF1A-2, is the only form expressed. Both forms of eEF1A have been characterized to function in the protein elongation step of translation, and eEF1A-1 is shown to possess additional non-canonical roles in actin binding/bundling, microtubule bundling/severing, and cellular transformation processes. To study whether eEF1A-2 has similar non-canonical functions, we carried out a yeast two-hybrid screening using a full sequence of mouse eEF1A-2 as bait. A total of 78 hits, representing 23 proteins, were identified and validated to be true positives. We have focused on the protein with the highest frequency of hits, peroxiredoxin I (Prdx-I), for in-depth study of its functional implication for eEF1A-2. Here we show that Prdx-I coimmunoprecipitates with eEF1A-2 from extracts of both cultured cells and mouse tissues expressing this protein, but it does not do so with its isoform, eEF1A-1, even though the latter is abundantly present. We also report that an eEF1A-2 and Prdx-I double transfectant increases resistance to peroxide-induced cell death as high as 1 mM peroxide treatment, significantly higher than do single transfectants with either gene alone; this protection is correlated with reduced activation of caspases 3 and 8, and with increased expression of pro-survival factor Akt. Thus, our results suggest that eEF1A-2 interacts with Prdx-I to functionally provide cells with extraordinary resistance to oxidative stress-induced cell death."	"Elongation factor 1A family regulates the recycling of the M4 muscarinic acetylcholine receptor. In this study, we tested the hypothesis that the elongation 1A (eEF1A) family regulates the cell surface density of the M4 subtype of the muscarinic acetylcholine receptors (mAChR) following agonist-induced internalization. Here, we show that mouse brains lacking eEF1A2 have no detectable changes in M4 expression or localization. We, however, did discover that eEF1A1, the other eEF1A isoform, is expressed in adult neurons contrary to previous reports. This novel finding suggested that the lack of change in M4 expression and distribution in brains lacking eEF1A2 might be due to compensatory effects of eEF1A1. Supporting this theory, we demonstrate that the overexpression of either eEF1A1 or eEF1A2 inhibits M4 recovery to the cell surface after agonist-induced internalization in PC12 cells. Furthermore, eEF1A1 or eEF1A2 had no effect on the recovery of the M1 subtype in PC12 cells. These results demonstrate the novel ability of the eEF1A family to specifically regulate the M4 mAChR."	"High resolution analysis of genomic aberrations by metaphase and array comparative genomic hybridization identifies candidate tumour genes in lung cancer cell lines. Tumours develop from clonally expanded population of cells harbouring aberrations of oncogenes and tumour suppressor genes. In this study, metaphase and array comparative genomic hybridization showed good correlation of aberration profiles in lung adenocarcinoma cell lines from patients with different tobacco exposure. Recurrent DNA gains were found at chromosomes 1, 7, 8, 17, 20, and deletions at 1, 3, 8, 9, 10, 12, 17, 18, 19. Candidate tumour loci and encompassed genes at 7p21 (AGR2), 8q21(TPD52), 20q13 (ZNF217, WFDC2, EEF1A2) and 10p15 (KLF6) were analyzed by dual colour FISH for genomic changes and quantitative PCR for expression changes. Results indicated that EEF1A2 and KLF6 were strong candidates of oncogene and tumour suppressor genes, respectively. This study illustrates, a practical strategy for identifying candidate cancer genes from microarray data."	"[Current concepts of vascular calcification]. Vascular calcification, such as coronary and aortic calcification, is a significant feature of vascular pathology. Two distinct forms of vascular calcification are well recognized. One is medial calcification, which occurs between the cell layers of smooth muscle cells, and is related to aging, diabetes and chronic renal failure. The other is atherosclerotic calcification, which occurs in the intima during the development of atheromatous disease. It has been shown that statins inhibit the progression of calcification in the aortic valve and the coronary artery. We have found that statins inhibit calcification of human aortic smooth muscle cells, which is induced by incubating the cells in high-phosphate medium. We also found that this is mediated by inhibiting cellular apoptosis, an essential mechanism for calcification, not by inhibiting inorganic phosphate (Pi) uptake by sodium-dependent phosphate cotransporter (NPC). Besides apoptosis and Pi uptake, such proteins as osteoprotegerin (OPG), matrix Gla protein (MGP), Klotho, fetuin-A, and apoE have been shown to negatively affect vascular calcification. Many previous reports suggest that vascular calcification appears to be regulated by promoting factors, such as Pi, apoptosis, modified LDL, advanced glycation end products, oxidative stress, vitaminD3, glucocorticoid, cbfa-1, osteopontin, and inhibitory factors, such as OPG, MGP, Klotho, fetuin-A, PTH/PTHrP, pyrophosphate, statins, and bisphosphonates. The precise mechanism of vascular calcification is of interest."	"Identification of putative oncogenes in lung adenocarcinoma by a comprehensive functional genomic approach. Amplification and overexpression of putative oncogenes confer growth advantages for tumor development. We used a functional genomic approach that integrated simultaneous genomic and transcript microarray, proteomics, and tissue microarray analyses to directly identify putative oncogenes in lung adenocarcinoma. We first identified 183 genes with increases in both genomic copy number and transcript in six lung adenocarcinoma cell lines. Next, we used two-dimensional polyacrylamide gel electrophoresis and mass spectrometry to identify 42 proteins that were overexpressed in the cancer cells relative to normal cells. Comparing the 183 genes with the 42 proteins, we identified four genes - PRDX1, EEF1A2, CALR, and KCIP-1 - in which elevated protein expression correlated with both increased DNA copy number and increased transcript levels (all r &gt; 0.84, two-sided P &lt; 0.05). These findings were validated by Southern, Northern, and Western blotting. Specific inhibition of EEF1A2 and KCIP-1 expression with siRNA in the four cell lines tested suppressed proliferation and induced apoptosis. Parallel fluorescence in situ hybridization and immunohistochemical analyses of EEF1A2 and KCIP-1 in tissue microarrays from patients with lung adenocarcinoma showed that gene amplification was associated with high protein expression for both genes and that protein overexpression was related to tumor grade, disease stage, Ki-67 expression, and a shorter survival of patients. The amplification of EEF1A2 and KCIP-1 and the presence of overexpressed protein in tumor samples strongly suggest that these genes could be oncogenes and hence potential targets for diagnosis and therapy in lung adenocarcinoma."	"Chemical genomic screening for methylation-silenced genes in gastric cancer cell lines using 5-aza-2'-deoxycytidine treatment and oligonucleotide microarray. To identify novel methylation-silenced genes in gastric cancers, we carried out a chemical genomic screening, a genome-wide search for genes upregulated by treatment with a demethylating agent, 5-aza-2'-deoxycytidine (5-aza-dC). After 5-aza-dC treatment of a gastric cancer cell line (AGS) 579 genes were upregulated 16-fold or more, using an oligonucleotide microarray with 39,000 genes. From these genes, we selected 44 known genes on autosomes whose silencing in gastric cancer has not been reported. Thirty-two of these had CpG islands (CGI) in their putative promoter regions, and all of the CGI were methylated in AGS, giving an estimated number of 421+/-75 (95% confidence interval) methylation-silenced genes. Additionally, we analyzed the methylation status of 16 potential tumor-related genes with promoter CGI that were upregulated four-fold or more, and 14 of these were methylated in AGS. Methylation status of the 32 randomly selected and 16 potential tumor-related genes was analyzed in 10 primary gastric cancers, and 42 genes (ABHD9, ADFP, ALDH1A3, ANXA5, AREG, BDNF, BMP7, CAV1, CDH2, CLDN3, CTSL, EEF1A2, F2R, FADS1, FSD1, FST, FYN, GPR54, GREM1, IGFBP3, IGFBP7, IRS2, KISS1, MARK1, MLF1, MSX1, MTSS1, NT5E, PAX6, PLAGL1, PLAU, PPIC, RBP4, RORA, SCRN1, TBX3, TFAP2C, TNFSF9, ULBP2, WIF1, ZNF177 and ZNF559) were methylated in at least one primary gastric cancer. A metastasis suppressor gene, MTSS1, was located in a genomic region with frequent loss of heterozygosity (8q22), and was expressed abundantly in the normal gastric mucosa, suggesting its role in gastric carcinogenesis. (Cancer Sci 2006; 97: 64 -71)."	"Aromatase inhibitors increase the sensitivity of human tumor cells to monocyte-mediated, antibody-dependent cellular cytotoxicity. A randomized, placebo-controlled phase III trial of the breast cancer vaccine Theratope (Biomira Corporation, Edmonton, Alberta, Canada), which expresses the underglycosylated, mucin-associated peptide STn showed that patients treated concomitantly with hormone therapy plus vaccine survived significantly longer than patients treated with hormone therapy plus a control vaccine. The objective of this study was to elucidate a mechanism to explain this effect. Tumor cells characterized for expression of estrogen receptor (ER), STn, and Mucin-1 (Muc1) were pretreated (24 hours) with the aromatase inhibitor (AI) formestane, followed by assessment of sensitivity to monocyte-mediated killing in the presence and absence of STn or Muc1 antibodies (Abs) using the (51)Cr-release assay. ER+/STn+/Muc1+ tumor cells cultured in medium were equally sensitive to killing by monocytes in the absence or presence of STn and Muc1 Abs (mean = 54% and 55% cytolysis, respectively, P = not significant). Formestane-pretreated cells showed decreased sensitivity to killing by monocytes in the absence of Abs (mean = 45% cytolysis, P = .07) but significantly increased sensitivity to monocyte-mediated, antibody-dependent cellular cytotoxicity (MM-ADCC) (mean = 65%, P = .003). These effects were not seen with either ER+/STn-/Muc1+ cells or ER-/STn+/Muc1+ cells, indicating the need for both ER and STn positivity of the target tumor cells. Tumor cells treated with an AI exhibit increased sensitivity to MM-ADCC. The capacity of an AI to &quot;sensitize&quot; tumor cells to this form of antitumor immunity represents a heretofore, undescribed mechanism whereby a hormone-based treatment may collaborate with antigen-specific tumor immunity to produce improved tumor control in vivo in metastatic breast cancer patients."	"Translation elongation factor eEF1A2 is a potential oncoprotein that is overexpressed in two-thirds of breast tumours. The tissue-specific translation elongation factor eEF1A2 was recently shown to be a potential oncogene that is overexpressed in ovarian cancer. Although there is no direct evidence for an involvement of eEF1A2 in breast cancer, the genomic region to which EEF1A2 maps, 20q13, is frequently amplified in breast tumours. We therefore sought to establish whether eEF1A2 expression might be upregulated in breast cancer. eEF1A2 is highly similar (98%) to the near-ubiquitously expressed eEF1A1 (formerly known as EF1-alpha) making analysis with commercial antibodies difficult. We have developed specific anti-eEF1A2 antibodies and used them in immunohistochemical analyses of tumour samples. We report the novel finding that although eEF1A2 is barely detectable in normal breast it is moderately to strongly expressed in two-thirds of breast tumours. This overexpression is strongly associated with estrogen receptor positivity. eEF1A2 should be considered as a putative oncogene in breast cancer that may be a useful diagnostic marker and therapeutic target for a high proportion of breast tumours. The oncogenicity of eEF1A2 may be related to its role in protein synthesis or to its potential non-canonical functions in cytoskeletal remodelling or apoptosis."	"Pharmacology of vascular endothelium. Delivered on 27 June 2004 at the 29th FEBS Congress in Warsaw. Sir John Vane named vascular endothelium 'the maestro of blood circulation'. Recently, 'the maestro' has become a target for pharmacotherapy of atherothrombotic and diabetic vasculopathies with well known cardio-vascular drugs belonging to the families of Angiotensin Converting Enzyme inhibitors, HMG CoA reductase inhibitors or beta1-Adrenoceptor antagonists. These drugs became upgraded to a position of the pleiotropic endothelial drugs. It is not a simple verbal change in the nomenclature. It means that these drugs apart from their well defined mechanisms of action, as indicated in their regular names, in addition they act in an unknown mechanism at the level of vascular endothelium preventing angina, myocardial infarction and stroke. Many biochemical events take place in endothelial cells. I chose for a closer inspection the nitric oxide/prostacyclin defensive system to explain the endothelial pleiotropism of the drugs in question. I tried to examine the validity of this conception according to the general rule: in vitro cognitio sed in vivo veritas."	"Modulation of translation factor's gene expression by histone deacetylase inhibitors in breast cancer cells. The histone deacetylase inhibitors sodium butyrate (NaBu) and trichostatin A (TSA) exhibit anti-proliferative activity by causing cell cycle arrest and apoptosis. The mechanisms by which NaBu and TSA cause apoptosis and cell cycle arrest are not yet completely clarified, although these agents are known to modulate the expression of several genes including cell-cycle- and apoptosis-related genes. The enzymes involved in the process of translation have important roles in controlling cell growth and apoptosis, and several of these translation factors have been described as having a causal role in the development of cancer. The expression patterns of the translation mechanism, namely of the elongation factors eEF1A1 and eEF1A2, and of the termination factors eRF1 and eRF3, were studied in the breast cancer cell line MCF-7 by real-time quantitative reverse transcription-polymerase chain reaction after a 24-h treatment with NaBu and TSA. NaBu induced inhibition of translation factors' transcription, whereas TSA caused an increase in mRNA levels. Thus, these two agents may modulate the expression of translation factors through different pathways. We propose that the inhibition caused by NaBu may, in part, be responsible for the cell cycle arrest and apoptosis induced by this agent in MCF-7 cells."	"Progressive loss of motor neuron function in wasted mice: effects of a spontaneous null mutation in the gene for the eEF1 A2 translation factor. Wasted (wst) is a spontaneous autosomal recessive mutation in which the gene encoding translation factor eEF1A2 is deleted. Homozygous mice show tremors and disturbances of gait shortly after weaning, followed by motor neuron degeneration, paralysis, and death by about 28 days. We have now conducted a more detailed analysis of neuromuscular pathology in these animals. Reactive gliosis was observed at 19 days postnatal in wst/wst cervical spinal cord, showing a rostrocaudal gradient. This was followed a few days later by motor neuron vacuolation and neurofilament accumulation, again with a rostrocaudal progression. Thoracic/abdominal muscles from wst/wst mice aged 17 days showed evidence of progressive denervation of motor endplates, including weak synaptic transmission and retraction of motor nerve terminals. Similar abnormalities appeared in distal, lumbrical muscles from about 25 days of age. We conclude that spontaneous failure of eEF1A2 expression in the wasted mutant first triggers gliosis in spinal cord and retraction of motor nerve terminals in muscle, and then motor neuron pathology and death. The early initiation and rapid progression of motor unit degeneration in wst/wst mice suggest that they should be considered an important and accessible model of early-onset motor neuron degeneration in humans."	"Inflammation, oxidative stress, and atherosclerosis. NA"	"Immuno-characterization of the switch of peptide elongation factors eEF1A-1/EF-1alpha and eEF1A-2/S1 in the central nervous system during mouse development. During early postnatal development, a switch occurs between eEF1A-1/EF-1alpha and eEF1A-2/S1, homologous peptide elongation factors, in brain, heart, and skeletal muscle; eEF1A-2/S1 becomes the major form expressed in maturity. By immunofluorescent labeling, we detected both homologues in the developing brains of wild-type and wasted mutant mice, carrying a deletion in the eEF1A-2/S1 gene; we found that brain expression of eEF1A-2/S1 protein is restricted to mature, terminally differentiated neurons, and coincides with the disappearance of eEF1A-1/EF-1alpha 20 days after birth. Furthermore, no elongation factor 1A is present in wasted mutant mice neurons following the developmental switch, indicating that the genetic regulation silencing eEF1A-1/EF-1alpha is still functional."	"The role of protein elongation factor eEF1A2 in ovarian cancer. Frequent gains of chromosome 20q12-13 in ovarian tumors indicate that at least one important oncogene is found at that locus. One of the genes there is EEF1A2, which maps to 20q13.3 and encodes protein elongation factor eEF1A2. This review will focus on recent evidence indicating that EEF1A2 is an important ovarian oncogene and that the protein elongation network can activate tumorigenesis and inhibit apoptosis."	"Not just for housekeeping: protein initiation and elongation factors in cell growth and tumorigenesis. Proteins provide the structural framework of a cell and perform the enzymatic activities sustaining DNA replication and energy production. The hormones and growth factors that facilitate organ-to-organ communication are proteins as are the receptors and signaling intermediaries that integrate extracellular stimuli to intracellular action. As such, eukaryotic cells devote tremendous effort and energy to protein synthesis. The enzymes involved in protein synthesis have traditionally been described as cellular housekeepers. This was meant to imply that while they were necessary for cell viability, they were not thought to have a causal role in activating cell differentiation or neoplastic development the way that a transcription factor or hormone receptor might. However, two protein translation factors, protein initiation factor eIF4E and protein elongation factor eEF1A2, have been identified as important human oncogenes. This review summarizes recent work showing that protein initiation and elongation factors have important regulatory roles in cell growth, apoptosis, and tumorigenesis."	"Changes in protein levels of elongation factors, eEF1A-1 and eEF1A-2/S1, in long-term denervated rat muscle. This study was designed to determine whether the quantitative relationship between the levels of the eEF1A-1(developmental) and eEF1A-2/S1 (adult) isoforms of peptide elongation factor remains stable after denervation of skeletal muscle or whether in response to denervation the relative amount of the developmental form would increase. In normal postnatal rat muscle, eEF1A-2/S1 is the dominant form represented, and levels of eEF1A-1 are extremely low. One hind limb in young adult rats was permanently denervated. Denervated and corresponding contralateral control muscles were removed for biochemical and morphological analysis from 2 days to 25 months after denervation. By one month after denervation, relative levels of eEF1A-1 rose dramatically in relation to those of eEF1A-2/S1, and they remained high throughout the remainder of the 25-month denervation period. Ultrastructural analysis showed a complex mix of muscle fiber atrophy, dying muscle nuclei and muscle fibers, and newly forming muscle fibers in the same tissue. As during muscle regeneration, levels of the developmental eEF1A-1 isoform of peptide elongation factor greatly increased relative to those of the adult eEF1A-2/S1 adult isoform following denervation in rat muscles. However, in contrast to regeneration, the elevated level of eEF1A-1 did not return to the basal minimal level. Since switching from eEF1A-1 to eEF1A-2/S1 is an indicator that terminal differentiated is completed, the failure of eEF1A-1 to return to basal level may be indicative of the persistence of an unstable tissue environment that includes muscle fiber atrophy, degeneration and neomyogenesis. The specific cellular basis for the increase in eEF1A-1 could not be determined from this study."	"Effects of long-term denervation on skeletal muscle in old rats. We compared the reactions to denervation of limb muscles between young adult and old rats. After denervation for up to 4 months in 24-month-old rats, limb muscles were removed and analyzed for contractile properties, morphology, and levels of several key molecules, including the peptide elongation factors eEF1A-1 and eEF1A-2/S1, myogenin, gamma-subunit of the acetylcholine receptor, and cyclin D3. The principal difference between denervated old and young muscle is a somewhat slower rate of atrophy in denervated older muscle, especially among the type II fibers. Expression levels of certain molecules were higher in old than in young control muscle, but after denervation, levels of these molecules increased to the same absolute values in both young and old rats. Although many aspects of postdenervation reactions do not differ greatly between young and old animals, the lesser degree of atrophy in the old rats may reflect significant age-based mechanisms."	"Protein elongation factor EEF1A2 is a putative oncogene in ovarian cancer. We have found that EEF1A2, the gene encoding protein elongation factor EEF1A2 (also known as eEF-1 alpha 2), is amplified in 25% of primary ovarian tumors and is highly expressed in approximately 30% of ovarian tumors and established cell lines. We have also demonstrated that EEF1A2 has oncogenic properties: it enhances focus formation, allows anchorage-independent growth and decreases the doubling time of rodent fibroblasts. In addition, EEF1A2 expression made NIH3T3 fibroblasts tumorigenic and increased the growth rate of ES-2 ovarian carcinoma cells xenografted in nude mice. Thus, EEF1A2 and the process of protein elongation are likely to be critical in the development of ovarian cancer."	"Novel interaction between the M4 muscarinic acetylcholine receptor and elongation factor 1A2. The activation of the muscarinic acetylcholine receptor (mAChR) family, consisting of five subtypes (M1-M5), produces a variety of physiological effects throughout the central nervous system. However, the role of each individual subtype remains poorly understood. To further elucidate signal transduction pathways for specific subtypes, we used the most divergent portion of the subtypes, the intracellular third (i3) loop, as bait to identify interacting proteins. Using a brain pull-down assay, we identify elongation factor 1A2 (eEF1A2) as a specific binding partner to the i3 loop of M4, and not to M1 or M2. In addition, we demonstrate a direct interaction between these proteins. In the rat striatum, the M4 mAChR colocalizes with eEF1A2 in the soma and neuropil. In PC12 cells, endogenous eEF1A2 co-immunoprecipitates with the endogenous M4 mAChR, but not with the endogenous M1 mAChR. In our in vitro model, M4 dramatically accelerates nucleotide exchange of eEF1A2, a GTP-binding protein. This indicates the M4 mAChR is a guanine exchange factor for eEF1A2. eEF1A2 is an essential GTP-binding protein for protein synthesis. Thus, our data suggest a novel role for M4 in the regulation of protein synthesis through its interaction with eEF1A2."	"Mapping the human translation elongation factor eEF1H complex using the yeast two-hybrid system. In eukaryotes, the eukaryotic translation elongation factor eEF1A responsible for transporting amino-acylated tRNA to the ribosome forms a higher-order complex, eEF1H, with its guanine-nucleotide-exchange factor eEF1B. In metazoans, eEF1B consists of three subunits: eEF1B alpha, eEF1B eta and eEF1B gamma. The first two subunits possess the nucleotide-exchange activity, whereas the role of the last remains poorly defined. In mammals, two active tissue-specific isoforms of eEF1A have been identified. The reason for this pattern of differential expression is unknown. Several models on the basis of in vitro experiments have been proposed for the macromolecular organization of the eEF1H complex. However, these models differ in various aspects. This might be due to the difficulties of handling, particularly the eEF1B beta and eEF1B gamma subunits in vitro. Here, the human eEF1H complex is for the first time mapped using the yeast two-hybrid system, which is a powerful in vivo technique for analysing protein-protein interactions. The following complexes were observed: eEF1A1:eEF1B alpha, eEF1A1:eEF1B beta, eEF1B beta:eEF1B beta, eEF1B alpha:eEF1B gamma, eEF1B beta:eEF1B gamma and eEF1B alpha:eEF1B gamma:eEF1B beta, where the last was observed using a three-hybrid approach. Surprisingly, eEF1A2 showed no or only little affinity for the guanine-nucleotide-exchange factors. Truncated versions of the subunits of eEF1B were used to orientate these subunits within the resulting model. The model unit is a pentamer composed of two molecules of eEF1A, each interacting with either eEF1B alpha or eEF1B beta held together by eEF1B gamma. These units can dimerize via eEF1B beta. Our model is compared with other models, and structural as well as functional aspects of the model are discussed."	"[The role of immune mechanisms in the pathogenesis of atherosclerosis]. NA"	"Rhabdomyolysis and statin therapy: relevance to the elderly. A recent debate has emerged as to the risk-benefit ratio of 3-hydroxy-3-methylglutaryl coenzyme A (HMG-CoA) reductase inhibitors (statins). This debate has centered on the withdrawal of the HMG-CoA reductase inhibitor cerivastatin (Baycol). Its withdrawal was prompted by an unacceptably high rate of rhabdomyolysis associated with its use. The development of rhabdomyolysis in cerivastatin-treated patients surprised few, since myotoxicity is a class effect with HMG-CoA reductase inhibitors. What has sprung from the cerivastatin experience, though, is the concept of &quot;guilt by association&quot;; thus, other members of this class are now viewed in a similarly negative light. Such misgivings are understandable, but to a degree may be ill-advised, since differences exist in the risk and therefore the rate of rhabdomyolysis occurrence among the various HMG-CoA reductase inhibitors. In this regard, pravastatin and fluvastatin are least likely to provoke muscle cell damage, which, at least in part, relates to their not being metabolized by the cytochrome P-450 (CYP) 3A4 pathway. When muscle damage does occur with HMG-CoA reductase inhibitors, it is commonly the result of drug-drug interactions rather than a specific adverse response to HMG-CoA reductase inhibitor monotherapy. Such drug-drug interactions inevitably result in higher plasma concentrations of an HMG-CoA reductase inhibitor and thereby an increased risk of myotoxicity. A growing consensus supports an expanded use of HMG-CoA reductase inhibitors in elderly patients. Polypharmacy and altered drug metabolism both put the elderly patient at increased risk of myotoxicity when drugs in the HMG-CoA reductase inhibitor class are administered. Physicians must take many factors into account when selecting a member of the HMG-CoA reductase inhibitor class, particularly as relates to their use in the multiply medicated elderly patient."	"[Novel actions of HMG-CoA reductase inhibitors(statins)--vascular and cerebral protection through inhibition of small GTPase Rho]. Clinical trials have demonstrated the beneficial effect of HMG-CoA reductase inhibitors(statins) for stroke prevention, independent of their lipid-lowering effects. Recent experimental progress indicated the effects of statins for brain protection on both vascular walls(endothelium, smooth muscle, inflammatory cells and platelets) and extra-vascular tissues(brain parenchyma). These pleiotropic effects of statins have been, at least in part, ascribed to inhibition of small GTPases Rho and Ras, which require isoprenoids (intermediates of the cholesterol biosynthesis pathway) for activation. Importantly, statin inhibition of Rho (1) attenuates the infarct size in a rat model of brain ischemia via the elevation of eNOS expression, and (2) suppresses vascular smooth muscle proliferation through up-regulation of CDK inhibitor p27kip1. The novel action of statin, as inhibitor of small GTPase family, should expand its potential toward integrative organ protection, beyond its conventional lipid-lowering and anti-atherogenic effects."	"Peptide elongation factor eEF1A-2/S1 expression in cultured differentiated myotubes and its protective effect against caspase-3-mediated apoptosis. Peptide elongation factor eEF1A-2/S1, which shares 92% homology with eEF1A-1/EF-1alpha, is exclusively expressed in brain, heart, and skeletal muscle. In these tissues, eEF1A-2/S1 is the only type 1A elongation factor expressed in adulthood because a transition from eEF1A-1/EF-1alpha to eEF1A-2/S1 occurs in early postnatal development. In this article, we report that the expression of eEF1A-2/S1 protein is activated upon myogenic differentiation. Furthermore, we show that upon serum deprivation-induced apoptosis, eEF1A-2/S1 protein disappears and is replaced by its homolog eEF1A-1/EF-1alpha in dying myotubes; cell death is characterized by the activation of caspase-3. In addition, we show that the continuous expression of eEF1A-2/S1 resulting from adenoviral gene transfer protects differentiated myotubes from apoptosis by delaying their death, thus suggesting a prosurvival function for eEF1A-2/S1 in skeletal muscle. In contrast, myotube death is accelerated by the introduction of the homologous gene, eEF1A-1/EF-1alpha, whereas cells transfected with antisense eEF1A-1/EF-1alpha are protected from apoptosis. These results demonstrate that the two sister genes, eEF1A-1/EF-1alpha and eEF1A-2/S1, regulate myotube survival with the former exerting prodeath activity and the latter a prosurvival effect."	"Therapy and clinical trials. NA"	"[Statins: an intriguing nexus between osteoporosis and atherothrombosis]. NA"	"The human elongation factor 1 A-2 gene (EEF1A2): complete sequence and characterization of gene structure and promoter activity. The eukaryotic elongation factor 1 A (eEF1A, formerly EF1alpha) is a key factor in protein synthesis, where it promotes the transfer of aminoacylated tRNAs to the A site of the ribosome. Two differentially expressed isoforms of eEF1A, designated eEF1A-1 and eEF1A-2, are found in mammals. Here we report the isolation and sequencing of the gene (HGMW-approved symbol EEF1A2) coding for the human eEF1A-2 isoform. Furthermore, we characterize the gene structure and the activity of the promoter. Isolation of overlapping clones from human libraries revealed that the human eEF1A-2 gene spans approximately 10 kb and consists of eight exons. The intron-exon boundaries of human EEF1A2 and EEF1A1 are conserved, yet the gene of the eEF1A-2 isoform is larger than the eEF1A-1 gene because of enlarged introns. Primer extension analysis identified the predominant transcription start site 166 bp upstream of the AUG codon. The start site maps to an adenine located within a consensus initiator element. Sequencing of a 2-kb 5'-flanking promoter region revealed no TATA element. However, several putative cis-regulatory elements were discovered. The 5'-promoter activity was characterized by transient transfection experiments. Progressive deletions of the upstream promoter region defined a minimal promoter region, ranging from -16 to +92, that is sufficient to drive transcription."	"Cell cycle distribution of cord blood-derived haematopoietic progenitor cells and their recruitment into the S-phase of the cell cycle. The objective of this study was to evaluate the cycling status of cord blood (CB)-derived colony-forming cells (CFC) and long-term culture-initiating cells (LTC-IC), and their recruitment into the S-phase of the cell cycle. By using the cytosine arabinoside (Ara-C) suicide approach, we found that only small proportions of both CFC and LTC-IC were in the S-phase of the cell cycle. These estimates were confirmed by flow cytometric DNA analysis, which showed that 96 +/- 2% of CB-derived CD34+ cells were in G0/G1 and only 1.6 +/- 0.4% in the S-phase. Staining of CD34+ cells with an antistatin monoclonal antibody, a marker of the G0 phase, indicated that among CD34+ cells with a flow cytometric DNA content typical of the G0/G1 phase 68 +/- 7% of cells were in the G0 phase of the cell cycle. Incubation (24 h) with interleukin 3 (IL-3), recombinant human stem cell factor (SCF) and granulocyte colony-stimulating factor (G-CSF) significantly increased the proportion of cells in the S-phase for both CFC and LTC-IC without inducing any loss in numbers. Flow cytometric DNA analysis also showed an increase in CD34+ cells in the S-phase upon continuous exposure to these cytokines. Our findings indicate that: (i) very few CB-derived CFC or LTC-IC were in the S-phase of the cell cycle; (ii) a substantial amount of CD34+ cells with a flow cytometric DNA content typical of the G0/G1 fraction was cycling, as found in the G1 phase of the cell cycle; and (iii) 24-h incubation with IL-3, SCF and G-CSF could drive a proportion of progenitor cells into the S-phase without reducing their number. These data might be useful for gene transfer protocols and the ex vivo expansion of CB-derived progenitor cells."	"Nonlamin components of the lamina: a paucity of proteins. Current models of nuclear organization propose that nuclear functions are modulated in part by reversible tethering of chromatin loops to structural elements of the nucleoplasm and the nuclear envelope. Lamins are the best-characterized proteins of the lamina portion of the nuclear envelope and are involved in binding chromatin to the inner nuclear membrane. However, they are not a universal feature of eukaryotic nuclei and do not account fully for the putative functions of the lamina in all organisms. It is possible that nonlamin components of the lamina may substitute for lamins in organisms from which they are absent and modify the properties of lamins during development and the cell cycle. We review the properties of the relatively small number of such components that have been reported, including the young arrest (fs(1)Ya) protein of Drosophila, statin, circumferin, and the MAN antigens. The experimental evidence indicates they are a diverse group of proteins, and that at least some have the potential to modulate the interactions of chromatin, lamins, and the nuclear membranes."	"Nuclear phospholipids in human lymphocytes activated by phytohemagglutinin. Using a specific ultracytochemical technique, the labelling with phospholipase A2-gold complex, we have followed nuclear phospholipids (PL) along the G1 phase in human lymphocytes activated by PHA. Our data point out two main results relating nuclear PL to the transcriptional activity, characteristic of the G1 phase, during which many different molecules necessary both for progression through G1 and for the start of S phase are synthesized. PL quantitative changes parallel those of hnRNPs and snRNPs, which are markers of the levels of transcriptional activity and processing. We found that nuclei of G0 lymphocytes, with a very low transcription level, are poor of PL as well as of RNPs. The amount of PL increases in activated lymphocytes, along all G1, until the beginning of S phase. At the same time, hnRNPs and snRNPs strongly increase and maintain higher levels than in control cells, till the beginning of S phase. PL are localized on nuclear structures where also RNPs involved in transcription and splicing, are located, i. e. perichromatin fibrils, interchromatin granules and the dense fibrillar component of the nucleolus. Since it is known that during S phase nuclear PL decrease, while both the enzyme activities related to their breakdown and their hydrolysis products increase, PL seem to be involved in the generation of signal molecules triggering DNA replication. We suggest that PL in the nucleus can be involved in multiple functions, depending on the phase of the cell cycle."	"The lethal mutation of the mouse wasted (wst) is a deletion that abolishes expression of a tissue-specific isoform of translation elongation factor 1alpha, encoded by the Eef1a2 gene. We have identified the mutation responsible for the autosomal recessive wasted (wst) mutation of the mouse. Wasted mice are characterized by wasting and neurological and immunological abnormalities starting at 21 days after birth; they die by 28 days. A deletion of 15.8 kb in wasted mice abolishes expression of a gene called Eef1a2, encoding a protein that is 92% identical at the amino acid level to the translation elongation factor EF1alpha (locus Eef1a). We have found no evidence for the involvement of another gene in this deletion. Expression of Eef1a2 is reciprocal with that of Eef1a. Expression of Eef1a2 takes over from Eef1a in heart and muscle at precisely the time at which the wasted phenotype becomes manifest. These data suggest that there are tissue-specific forms of the translation elongation apparatus essential for postnatal survival in the mouse."	"All-trans retinoic acid (ATRA)-induced apoptosis is preceded by G1 arrest in human MCF-7 breast cancer cells. In this study the effects of all-trans retinoic acid (ATRA) on cell cycle and apoptosis of MCF-7 human breast cancer cells were investigated to elucidate the mechanisms underlying the antineoplastic potential of this retinoid in breast cancer. The antiproliferative effect of ATRA was evaluated by DNA content measurements and dual-parameter flow cytometry of bromodeoxyuridine (BrdU) incorporation and of the expression of cell cycle-related proteins (Ki-67 as proliferation marker and statin as quiescence marker) vs DNA content. Apoptosis was also studied by flow cytometry of either DNA content or Annexin V labelling. After 10(-6) M ATRA treatment, the fraction of S-phase cells decreased significantly, and cells accumulated in the G0/G1 range of DNA contents. Dual-parameter flow cytograms showed a decrease in the percentage of Ki-67-labelled cells (after 10 days, only 20% of the cells were still positive for Ki-67 compared with 95% in controls), while the fraction of statin-positive cells increased slightly. From 3 days of treatment onwards, apoptosis was found to occur. These results show that ATRA-induced inhibition of MCF-7 cell growth is related to two mechanisms, i.e. the block of cell proliferation, mostly in a pre-S phase, and the induction of apoptosis. These results should be taken into account when attempting to design treatment programmes that associate ATRA with antineoplastic compounds of different cell cycle specificity."	"The expression of proliferation and quiescence associated antigens in acute myeloid leukemia correlates with survival duration: analysis of 15 refractory cases. In this study, blast cells from 15 patients with acute myeloid leukemia resistant to induction therapy were examined with two monoclonal antibodies that identify, respectively, the nuclear protein specifically expressed in non proliferating cells (statin) and the proliferating cell nuclear antigen (PCNA). We found that statin values varied widely, ranging from 0.6% to 14.7% (mean value 6.4%). When the patients were subdivided according to the mean value, those presenting with higher statin values survived for a shorter period of time than the ones characterized by lower levels (p = 0.003). We observed a wide variation in the range of PCNA values; however, if an agreement between survival duration and at least one of the proposed markers was considered, all but one case displayed concordance between survival duration and PCNA and/or statin values (in addition, 4/15 cases showed agreement for both markers). These preliminary data could indicate a possible discriminating prognostic factor between categories of patients characterized by different aspects of resistance, perhaps susceptible to different salvage therapy approaches."	"Assignment of human elongation factor 1alpha genes: EEF1A maps to chromosome 6q14 and EEF1A2 to 20q13.3. The human elongation factor 1alpha gene family consists of at least 2 actively transcribed genes, EEF1A and EEF1A2, and more than 18 homologous loci. EEF1A2 is expressed in a tissue-specific manner, whereas EEF1A is expressed ubiquitously, and both of them can function in translation. An EEF1A cDNA probe has previously been shown to cross-hybridize with several human chromosomes, but the location of the functional gene has not been established. We have mapped the functional EEF1A gene to 6q14 by combined fluorescence in situ hybridization (FISH) and PCR analysis of a somatic cell hybrid panel and mapped EEF1A2 to 20q13.3 by FISH. In addition, the 11 strongest cross-hybridizing loci (EEF1AL2-EEF1AL13) were mapped by FISH to 12p12, 9q34, 7p15-p21, 19q13, 3q26-q27, 7q33-q35, 1p13-p22, 2q12-q14, 5p12-q11, 1q31-q32, and Xq21."	"Immunohistochemical analysis of statin in colorectal adenocarcinoma, polyps, and normal mucosa. The search for an understanding of the kinetics of the malignant cell is an ongoing focus of research. The aim of the present study was to determine whether there were any differences in the expression of statin, a nonproliferation-specific nuclear protein, among different colorectal tissues and whether there is any relationship between statin presence and neoplastic aggressivity. The study population consisted of specimens from 19 patients who underwent resection for carcinoma, one for villous adenoma, and seven for colonoscopic polypectomies. Tissue samples were taken from the center of the specimen and from mucosa 10 cm from the lesion. Statin immunoreactivity was evaluated by counting stained nuclei in ten randomly chosen fields, and percent of positive cells was calculated. Average percentage of statin-positive cells was 34.33 +/- 6.81 in the normal crypt, 44.42 +/- 7.28 for polyps, and 7.74 +/- 5.67 for carcinomas (significantly lower than normal mucosa and polyps; P &lt; 0.001). Statin expression is dramatically diminished in invasive carcinoma tissue, but it did not help determine aggressivity with respect to Dukes stage."	"Increased levels of statin, a marker of cell cycle arrest, in response to hippocampal neuronal injury. Injured neurons in the CNS are known to synthesize high levels of proliferation related oncogene products and heat shock proteins without dividing. Statin is a cell cycle regulated nuclear phosphoprotein, selectively associated with the non-proliferative state in a wide variety of cell types. In the present study, neuronal statin was examined following lethal or sublethal neuronal injuries in the hippocampus of Alzheimer's disease patients, in rats receiving kainate lesions to the dorsal hippocampus and in entorhinal cortex lesioned rats. Immunolabelling of nuclear statin showed that statin immunoreactivity increased preferentially in CA1 pyramidal neurons of the hippocampus in Alzheimer's disease. In kainate lesioned rats, statin immunoreactivity was markedly induced in the CA3 hippocampal region in association with neuronal loss. Entorhinal cortex lesioned rats showed a transient induction of statin between 2 and 6 days post lesion in CA1 neurons. However, cell counts in entorhinal cortex lesioned rats remained unaltered in the CA1 and granule cell layers during the entire 30 day time course, indicating that increased statin levels are not secondary to neuronal degeneration and are not necessarily accompanied by irreversible neuronal death. It is concluded that, in addition to proliferation related gene products, neuronal injury induces an increase in levels of statin, a nuclear marker of cell cycle arrest. Furthermore, statin may be a potentially useful marker of injurious neuronal stress, even under conditions that do not necessarily lead to irreversible cell death."	"Predictive value of statin, a G0-associated cell cycle protein, in childhood acute lymphoblastic leukemia. Blast cells of 71 children with newly diagnosed acute lymphoblastic leukemia (ALL) were examined with a novel monoclonal antibody (MAb), S-44, immunoreactive to statin, a nuclear protein specifically expressed in non-proliferating cells. The statin labeling index (LI) varied greatly from case to case and ranged from 0.3% to 86%, with a mean value of 10%. The degree of statin LI correlated inversely with the expression of Ki-67. When patients were subdivided according to whether the statin LI was higher or lower than the mean value, patients with higher statin LI did not respond to chemotherapy and survived for a shorter period of time. Our results suggest that labeling of statin with the S-44 MAb is a useful prognostic marker of the cytotoxic effects of anti-cancer drugs in patients with ALL."	"Expression of proliferation-specific genes in the mucosa adjacent to colon carcinoma. One of the main concerns in colon carcinoma therapy is local recurrence of the malignancy at the site of resection. Previous studies have shown that morphologically normal-appearing mucosa adjacent to colon carcinoma is different from mucosa distant from carcinoma. Mucosa adjacent to a carcinoma is characterized by crypt lengthening, cell hypertrophy, and change in production of mucopolysaccharides from sulfomucin in normal mucosa to sialomucins in carcinomas and adjacent mucosa. Recently there have been reports suggesting that there is an upward extension of the proliferative compartment in colonic crypts of this adjacent mucosa. Immunoblot analysis using antibodies to retinoblastoma, statin, c-Fos, c-Jun, and Cdc-2 proteins was used for our study on the expression of early cell cycle genes in carcinoma and its adjacent mucosa. In all, 15 tissue samples obtained from patients with colon carcinoma were analyzed. Tissue specimens were collected and immediately dissected as tumor, 0 to 1, 1 to 2, 2 to 3, 3 to 4, and 4 to 5 cm from the primary lesion. Dissected pieces were homogenized separately and subjected to immunoblot analysis. We found upregulation of c-Fos, c-Jun, and Cdc-2 expression in carcinoma and adjacent mucosa up to 4 cm from the edge of the carcinoma. The phosphorylated form of retinoblastoma is present in the carcinoma as well as in adjacent mucosa up to 4 cm from the margin of the carcinoma. Furthermore, we observed that the level of statin, a nonproliferation-specific nuclear protein, is very low in the primary lesion and in adjacent mucosa up to 3 cm. These results indicate that adjacent tissue up to 3 to 4 cm from the carcinoma has elevated levels of expression for cell cycle traverse-associated genes and down-regulation of nonproliferation-specific gene expressions such as statin. This imbalance indicates that within 3 to 4 cm from the edge of the carcinoma, colonic epithelial cells are already abnormal and may be in the hyperproliferative and preneoplastic state, susceptible to further steps leading to eventual malignant transformation."	"Regulation of c-fos expression in senescing Werner syndrome fibroblasts differs from that observed in senescing fibroblasts from normal donors. The Werner syndrome (WS) is a segmental progeroid syndrome caused by a recessive mutation (WRN) mapped to 8p12. The replicative life spans of somatic cells cultured from WS patients are substantially reduced compared to age-matched controls. Certain molecular concomitants of the replicative decline of normal fibroblast cultures have recently been defined, and it appears that multiple changes in gene expression accompany normal cell senescence. If the mechanisms by which WS cells exit the cell cycle were entirely comparable, the molecular markers of senescence should be identical in normal and WS cells. We find that this is not the case. The constitutive expression of statin, a nuclear protein associated with the nonproliferating state, was comparably expressed in normal and WS senescent cells. Likewise, the steady state levels of p53, a protein known to be involved in the G1 checkpoint of the cell cycle, were similar in early-passage fibroblasts from normal and WS subjects. The levels of p53 were not increased in senescent fibroblasts, whether derived from normal or WS subjects. By contrast, the inducibility of mRNA and protein expression of the c-fos protooncogene is preserved in late-passage WS cells. This is in contrast to what is observed in late-passage fibroblasts from normal subjects. Additional genotypes will have to be examined, however, to determine the specificity of this new aspect of the WS phenotype."	"Nuclear phospholipids during the adaptation of human EUE cells to hypertonic stress. The phospholipid component of interphase nuclei was analysed in EUE cells (an established cell line from embryonic human epithelium) grown in an isotonic culture medium and during the adaptation process to a hypertonic medium, using a highly specific ultracytochemical procedure, viz. labelling with the phospholipase A2 gold-complex. Within the nucleus, the phospholipids were localized in domains involved in different steps of the synthesis and processing of the RNA. These localizations did not vary at the two key steps of the adaptation process to hypertonic medium: short-term treatment (6 h) representing critical shock condition, and long-term growth (5 days) representing the adapted cells under survival conditions. On the contrary, deep changes of the labelling intensity of phospholipids at these sites occurred at the different times of hypertonic treatment and followed the same course as those observed in the ultramorphological patterns of transcription: the chromatin condensation, as evaluated by image analysis, the permanent nucleolar components, the interchromatin and the perichromatin granules. These data endorse the hypothesis that nuclear phospholipids could be involved in different steps of the transcriptional activity. They are indicative of the deep changes occurring in the EUE cells submitted to hypertonic stress."	"Proliferative activity at colonic anastomoses as determined by statin. A nonproliferation-specific nuclear protein. One theory of anastomotic recurrence in large bowel carcinoma is that epithelial hyperplasia at the suture line causes metachronous carcinoma. S44, a monoclonal antibody directed against statin, a nuclear protein expressed in quiescent cells, was used to determine whether the anastomosis represents an area with a high proliferation rate. During follow-up colonoscopic examination of patients who had undergone previous resection for colorectal carcinoma, biopsies were taken from the anastomotic site and from the mucosa 10 to 15 cm from the anastomosis. One side of 10 well-oriented crypts was counted for each patient with the number of nuclei positive for statin being determined by the presence of dark brown reaction product. The average percentages of statin-positive cells varied between 19.4 and 44.4 (average, 31.3 +/- 6.5) for the normal mucosa and 22.8 to 35.1 (average, 29.98 +/- 3.67) for the anastomotic mucosa. The differences were not significant. There were no differences between those patients in whom the postoperative time elapsed was two years or less and those greater than two years. This study is unique in that the proliferative activity at the site of colonic anastomosis was determined in a clinical setting, and patients in which the anastomoses were created anywhere from 1 to 14 years earlier were included. Using S44 as a marker, this study does not support the theory that suture line recurrence is a result of an enhanced proliferation rate."	"Statin--a novel marker of nonproliferation. Expression in nonneoplastic lymphoid tissues and follicular lymphomas. Statin is a 57 kDa nuclear protein exclusively found in noncycling cells. Its expression in hematolymphoid cells had not been examined previously. The authors studied statin immunoreactivity in nonneoplastic lymphoid tissues from 26 lymph nodes, 3 tonsils, and 2 spleens. Statin was detected primarily in small lymphoid cells and histiocytes, along with such accessory elements as fibroblasts and endothelial cells. The distribution of positive cells showed an inverse correlation with the proliferative activity of the various lymphoid compartments. Statin labeling was also quantified in 15 follicular lymphomas and compared with that in hyperplastic follicles. Although reactivity in benign germinal centers was less than that in neoplastic follicles, this difference did not prove statistically significant. Statin provides an alternative to proliferation-associated parameters, such as Ki-67 and proliferating cell nuclear antigen, in the analysis of hematolymphoid processes and may be helpful in the dissection of their kinetic heterogeneity."	"Characterization of 57 kDa statin as a true marker for growth arrest in tissue by its disappearance from regenerating liver. Statin, a 57 kDa nuclear protein, is lost from quiescent fibroblasts in culture when they are induced to enter the cell cycle by feeding with growth factors, or by removal of contact inhibition. In order to investigate changes in statin expression during the transition from a quiescent to a cycling state in situ, we performed 70% partial hepatectomy on rats and analyzed the regenerating liver by immunofluorescence microscopy with antistatin monoclonal antibodies (S44 mAb), and by immunoblotting of liver proteins in cytoplasmic and enriched nuclear/cytoskeletal fractions. Western blot analysis showed that rat hepatocytes in situ contain a nuclear 57 kDa form of statin, as seen in cultured fibroblasts; however additional S44-immunoreactive polypeptides with molecular weights of 53 and 110 kDa are also present in both cytoplasmic and nuclear/cytoskeletal fractions. Immunofluorescence microscopy indicates that the proportion of S44-positive hepatocyte nuclei drops to approximately 60% within 24 hours after hepatectomy, a time period when re-entry of hepatocytes into the cell cycle is first observed. On Western blots of hepatocyte nuclear/cytoskeletal proteins obtained 24 hours after hepatectomy, the 57 kDa form of statin is markedly reduced. These results suggest that, although in liver the S44 antibody recognizes three proteins (53 kDa, 57 kDa, and 110 kDa), the 57 kDa in intact liver, similar to cultured fibroblasts, is the only polypeptide recognized by the statin antibody that disappears when hepatocytes are induced to re-enter the cell cycle from a quiescent state."	"Cell cycle kinetic effects of tamoxifen on human breast cancer cells. Flow cytometric analyses of DNA content, BrdU labeling, Ki-67, PCNA, and statin expression. Tamoxifen is known to inhibit the growth of some human mammary carcinoma cells; this effect is accompanied by a decrease in the proportion of cells synthesizing DNA. In this work, flow cytometry of DNA and of bromodeoxyuridine labeling and the evaluation of the cell cycle-related antigens Ki-67, PCNA, and statin were used to investigate the changes in the proliferation kinetics of MCF-7 cells before and after treatment with 10(-7) M TAM. The treatment with TAM induced a significant decrease in the fraction of S-phase cells and an increase in those with a DNA content typical of G0/1 phase. The TAM-induced block in G0/1 is paralleled by a decrease in the frequency of cells expressing Ki-67 and PCNA, and by an increase in statin-positive (G0) cells. These results confirmed that the TAM-induced inhibition of cell growth is associated with major changes in the cell cycle parameters of MCF-7 cells, and provide the first experimental evidence that two main mechanisms are operating: the accumulation of cells in G1, before the onset of S-phase, and the exit of some cells from the cycling compartment."	"[HIV protease inhibitors]. NA"	"Expression of the nuclear membrane protein statin in cycling cells. Statin is a 57 kD protein previously reported to be expressed by cells in G0. We have studied the detailed distribution of statin immunoreactivity in normal human and rat tissues, and correlated this with investigation of in vitro model systems. By laser confocal microscopy, statin immunoreactivity is localized to the nuclear membrane. In contrast to previous reports, using in vitro model systems we found that statin was also expressed by replicating cells as judged by both co-localization with [3H]thymidine-labelled and Ki67-labelled cells. Furthermore, in a nude mouse xenograft model the number of statin-labelled cells exceeded the number of quiescent cells as assessed by both fraction of labelled mitosis methods and labelling with [3H]thymidine and Ki67. We conclude that although there is an association between expression of the 57 kD nuclear membrane protein statin and growth arrest, this is not absolute and it is expressed in a sub-population of cycling cells. The properties of statin closely resemble those of nuclear lamins, members of the intermediate filament family."	"Quiescent and cycling cell compartments in the senescent and Alzheimer-diseased human brain. Statin is a 57-kd nuclear protein expressed exclusively in nonproliferating cells. In the present study, immunohistochemical localization of statin in normal, senescent human brain revealed that virtually all neurons, ependymal cells, vascular smooth muscle cells, and endothelial cells are statin-positive and, hence, postmitotic. As we previously demonstrated in rodents, an unexpectedly large fraction of neuroglial cells throughout the aging human brain is statin-negative (range, 41 to 45%), consistent with the substantial retention of neuroglial proliferative capacity well into the senium. In Alzheimer's disease, there is a significant increase in the proportion of statin-negative neuroglia (range, 51 to 58%). In all regions except cerebellum, loss of statin in Alzheimer neuroglia could be accounted for by changes involving the astrocyte subpopulation. These results provide evidence that reactive gliosis in this neurodegenerative disorder encompasses some degree of astrocyte hyperplasia in addition to astrocyte hypertrophy. Maintenance of normal compartments of cycling and quiescent neuroglia in the senescent human brain may serve to define neurologic well-being during the aging process. Conversely, deviations in neuroglial cytokinetics may indicate the presence and extent of intervening neuropathologic processes."	"The differential expression of statin in the nuclei of human colonic crypts adjacent to a cancer: an immunohistochemical study. Statin, a non-proliferation-specific nuclear antigen, was used here to assess the colonic crypt kinetics of the mucosa bordering a human colon cancer. Mucosal strips adjacent to a colon cancer obtained from operative specimens were immediately cut into five one cm segments and stored in liquid nitrogen. An immunohistological technique using the statin antibody as a nuclear marker was used to determine the labelling indices of the non-cycling compartment at the varying distances. Optical density measurements of the nuclear reaction product served to objectively identify the statin-positive nucleus. The results indicate that there is a statistically significant reduction (P &lt; 0.0001) in the statin-positive labelling index in the entire crypt length for a distance of three cms. The division of the entire crypt into four levels (A, B, C and D) demonstrates that this effect is principally due to the upward extension of the statin-negative cell mass into levels B and C with a corresponding decrease in the labelling index of the statin-positive nuclei in these levels. The in vivo expression of nuclear statin demonstrates its usefulness in accurately determining the size of the non-proliferative compartment in the human colonic crypt adjacent to a colon cancer."	"Transforming growth factor-beta 1 induces expression of statin during differentiation of human promonocytic leukemia cells. Transforming growth factor-Beta (TGF-beta) is a potent growth inhibitor for several cell types including epithelial cells and hematopoietic progenitor cells. Using a human promonocytic leukemia cell line, THP-1, we have shown that TGF-beta inhibits their proliferation and promotes differentiation into cells exhibiting macrophage-like properties. Therefore, a key question is whether TGF-beta influences the expression of genes associated with proliferation and/or growth inhibition. TGF-beta treatment of THP-1 cells results in downregulation of expression of c-myc. We also observe that TGF-beta 1-treated cells express reduced levels of the cell cycle regulated histone, H2B, but express elevated levels of an RNA splicing variant of this histone that has been observed to be upregulated in growth inhibited and terminally differentiated cells. In addition, a nuclear protein associated with senescence and withdrawal of cells from the cell cycle, statin, is also expressed by THP-1 cells in response to TGF-beta 1 treatment. These results suggest that TGF-beta 1 is capable of inducing expression of specific nuclear proteins associated with differentiation and/or cessation of proliferation that may result in changes in nuclear organization and altered gene expression. Such changes in nuclear organization may be incompatible with continued proliferation of the cells."	"Statin, a protein specifically present in nonproliferating cells, is a phosphoprotein and forms a complex with a 45-kilodalton serine/threonine kinase. The protein statin is found in nuclei of nonproliferating cells. Here we report that statin is a phosphoprotein, phosphorylated at serine residues in cultured cells. During immunoprecipitation with anti-statin (S44) antibody, a 45-kDa protein co-precipitates with the 57-kDa statin. In vitro kinase assays demonstrate that the S44 immunoprecipitates can phosphorylate, besides statin, immunoglobulins, enolase, and casein, at either serine or serine/threonine residues. Kinase assays with immunoprecipitated proteins performed on casein- or enolase-impregnated gels show that these substrates are phosphorylated by the 45-kDa (p45) protein. When the S44 immunoprecipitates from human cultured fibroblasts with different in vitro life-spans were compared, the p45 kinase activity was present only in young nongrowing and senescent cells, but not in young growing ones. In other cell cultures, the kinase is detected only in protein complexes precipitated from quiescent 3T3 cells, but not from cycling 3T3 cells or from transformed human glioma (U251-4) cells. Cell fractionation studies, indicating that the phosphorylating activity of S44 immunoprecipitates correlates both qualitatively and quantitatively with the amount of statin present, provide strong evidence that in vivo statin is specifically associated with the p45 kinase. These results suggest that the nonproliferation-specific nature of statin is indeed related to the phosphorylated property of this protein and maybe contributed by the associated kinase."	"Proliferative activity of colonic mucosa at different distances from primary adenocarcinoma as determined by the presence of statin: a nonproliferation-specific nuclear protein. The field change is one hypothesis concerning the development of colorectal carcinoma. Removal of a carcinoma without its entire surrounding altered mucosa may result in the development of a recurrence. S44, a monoclonal antibody directed against statin, a nuclear protein expressed in nonproliferating cells in either a quiescent or senescent state, was used to determine the rate of cell growth in colorectal mucosa at different distances from carcinomas. The specimens of 18 patients undergoing resection of a colorectal carcinoma were immediately opened after operation, and strips of mucosa were taken at distances of 1 cm, 5 cm, and 10 cm from the carcinoma. For each location, 10 longitudinally oriented crypts were evaluated for statin-positive cells identified by the presence of a dark brown peroxidase-conjugated antibody reaction product. The average percentage of statin-positive cells per crypt was significantly lower at a 1-cm distance from the carcinoma compared with the mucosa located 5 and 10 cm from the carcinoma (20.89 +/- 4.33 at 1 cm, 32.41 +/- 5.27 at 5 cm, and 34.23 +/- 6.45 at 10 cm). None of the calculated parameters showed any significant difference between the 5-cm and 10-cm locations. The fact that the proliferation rate of the mucosal cells returns to the normal level at 5 cm from the margin of the carcinoma suggests that cells located within this distance still retain proliferative potential even though they are morphologically indistinguishable from their normal counterparts. We conclude that failure to remove this transitional, potentially proliferative mucosa may result in subsequent development of anastomotic or perianastomotic recurrences."	"Are all nonproliferating cells similar? NA"	"Histochemical localization of Statin--a non-proliferation-specific nuclear protein--in nuclei of normal and abnormal human thyroid tissue. Surgical specimens of 29 human thyroid masses, both benign and malignant, were examined by means of a novel monoclonal antibody immunoreactive to statin, which is expressed only in quiescent G0 cells. The nuclei of normal thyroid follicle tissue together with nodular goitres and follicular adenomata had similar labelling indices of 96 +/- 2.67, 95 +/- 2.43 and 94 +/- 1.98 respectively. By contrast the labelling indices of papillary and undifferentiated thyroid malignancies were 82 +/- 3.05 and 15.2, respectively. These results indicate that normal thyroid tissues as well as benign thyroid tumors have similar non-proliferative activities. The differentiated papillary cancers have a smaller non-cycling compartment, the smallest being present in the most biologically aggressive undifferentiated thyroid cancer. The immunohistological evaluation of statin in the nuclei of human thyroid malignancies correlates with their biological behaviour in an inverse relationship."	"Expression of cell cycle related proteins--proliferating cell nuclear antigen (PCNA) and statin--during adaptation and de-adaptation of EUE cells to a hypertonic medium. EUE cells adapted to grow for long times in a hypertonic medium have a longer cell cycle than those growing in isotonic medium. To elucidate whether this lengthening involves specific cycle phases to differing extents, the expression of two cycle-related protein, PCNA and statin, was studied by dual parameter flow cytometry of indirect immunofluorescence protein labelling and DNA content. In isotonic medium, most cells, in all the cycle phases, were PCNA positive; in contrast, PCNA negative cells and statin positive cells were very few in number and only fell in the G0/1 range of DNA contents. In hypertonic medium, the frequency of PCNA positive cells was lower, and that of statin positive cells higher, than in isotonic medium, particularly in the G0/1 range of DNA contents: this suggests that a G0 block occurs under long-term hypertonic stress. Consistently, dual parameter flow cytometric measurement of BrdUrd immunofluorescence labelling and DNA content showed that fewer cells entered S phase in hypertonic medium and their progression through the S phase was slower; evidence was also found for the occurrence of a G2 block. These kinetics changes were fully reversible in isotonic medium, thus indicating the adaptive nature of the EUE response to hypertonicity."	"Statin immunolocalization in human brain tumors. Detection of noncycling cells using a novel marker of cell quiescence. Surgical specimens of 35 human brain tumors were examined with a novel monoclonal antibody, S-44, immunoreactive to statin, a nuclear protein specifically expressed in quiescent (noncycling) G0-phase cells. Benign tumors typically were statin positive with labeling indices (LI) between 22% and 96%: acoustic schwannomas (n = 3, mean = 29.9 +/- 19.4%); meningiomas (n = 4, mean = 59.0 +/- 15.1%); pituitary adenomas (n = 3, mean = 79.9 +/- 28.2%), and an epidermoid cyst (41.0%). By contrast, the statin LI of 18 of 24 (75%) malignant brain tumors was less than or equal to 2%: medulloblastomas (n = 7, mean = 0.3 +/- 0.2%); anaplastic astrocytomas (n = 3, mean = 1.6 +/- 2.7%); glioblastomas (n = 10, mean = 10.3 +/- 14.4%); metastatic carcinomas (n = 3, mean = 3.0 +/- 4.6); and a germinoma (0.2%). The vascular endothelium among diverse tumors typically was statin positive. All 21 tumors with a statin LI less than 10% were malignant, and all nine tumors with a statin LI greater than 40% were benign. The statin LI of benign tumors (n = 11, mean = 55.1 +/- 26.7%) was significantly higher than that of the malignant tumors (n = 24, mean = 5.2 +/- 10.5%, P less than 0.001). The absence of statin expression is a new way to determine the malignancy of human brain tumors. The statin LI may be useful to guide the prognosis and treatment of individual patients. The mechanisms that control statin expression are important in therapy seeking to shift the proliferating, cycling cells to the quiescent, G0 compartment."	"Isolation and characterization of the rat chromosomal gene for a polypeptide (pS1) antigenically related to statin. Increasing evidence shows the existence of nonproliferation-specific gene(s) whose expression is mostly present in growth-arrested cells. One member of this gene family has been identified by previous work as a nuclear protein of 57,000 Da, termed statin. Logical extensions of statin research are to identify the genomic and cDNA clones encoding for statin and to study the regulation of statin gene expression. During the search for the statin gene, we have identified a cDNA clone and a genomic clone named S1 and S10, respectively, by screening a rat brain lambda gt11 expression library with the statin antibody and subsequently using S1 cDNA as a probe to screen a rat genomic cosmid library. Here, we report the cloning and sequencing of the S1 cDNA and S10 genomic clones. Primary sequence analyses indicate that the derived amino acid sequence of S1 shares high homology (greater than 92.6%) with human elongation factor 1 alpha (EF-1 alpha), whereas the 5'- and 3'-untranslated regions are less than 20% homologous. Despite the unusually high degree of similarity between S1 and human EF-1 alpha at the amino acid sequence level, their protein products are different and immunologically distinct. The in vitro transcription and translation product of S1 (pS1), a 49,000-Da polypeptide, reacts only with the monoclonal antibody against statin; this antibody exhibits no antigenic reaction to the EF-1 alpha protein. Northern blot analysis shows that the S1 message is most abundant in G0 phase of 3T3 mouse fibroblasts, but becomes significantly reduced in G1 and S phase cells. EF-1 alpha messages do not show such dramatic changes during cell cycle phase transition. These findings suggest that the expression of the identified S1 cDNA clone is specific for nonproliferating cells and that the in vitro translation product of the S1 cDNA is recognized by the statin antibody. Genomic Southern blots indicate that S1 cDNA is encoded by a single copy gene in the rat genome and is a unique member of the EF-1 alpha/S1 supermultigene family. DNA sequence analysis demonstrates that the rat S1 transcription unit is 12 kilobase pairs in length and contains seven introns. The organization of exons is virtually identical between S1 and human EF-1 alpha. In contrast, neither a TATA box nor a CAAT box is located in the proximal 5'-flanking regions from positions -1 to -1359 of the S1 gene, where we could expect to find the regulatory region containing the elements controlling gene expression; no evident sequence homology to the human EF-1 alpha gene is detected in this region.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Characterization of two populations of statin and the relationship of their syntheses to the state of cell proliferation. Statin has previously been identified to be a 57-kD protein present in the nuclei of quiescent and senescent human fibroblasts, but not in their replicating counterparts (Wang, E. 1985. J. Cell Biol. 100: 545-551). In the present report we demonstrate by immunoprecipitation analysis of fractionated cellular extracts the existence of two populations of statin. The Triton X-100-soluble statin is found in replicating sparse cultures as well as in quiescent confluent cultures and quiescent serum-starved cultures of young human fibroblasts, but the Triton X-100-insoluble, nuclear envelope-localized statin is present only in the quiescent cultures. Two-dimensional gel analysis of the immunoprecipitated cellular fractions reveals that both populations of statin have an isoelectric point of 5.3. Pulse-chase experiments show that statin is synthesized as a 57-kD polypeptide and is not processed from a precursor of different molecular mass. Experiments on serum stimulation of quiescent cells show that synthesis of the Triton X-100-insoluble statin decreases rapidly during the transition from the G0 to S phase, and that this decrease is accompanied by a slower reduction in synthesis of the Triton X-100-soluble statin. These results suggest that the cellular expression of the two populations of statin may be associated with the mechanisms controlling the transition between the growing state and the quiescent state and confirm the previous finding that the Triton X-100-insoluble, nuclear envelope-localized statin could be used as a marker for cells arrested at the G0 phase of the cell cycle."	"Statin expression in the untreated and SarCNU-exposed human glioma cell line, SK-MG-1. Cytokinetic analyses of gliomas and other neoplasms rely exclusively on the use of proliferation-dependent markers such as [3H]-thymidine and BuDR incorporation and the detection of growth-dependent proteins such as proliferating cell nuclear antigen (PCNA) and Ki-67. In normal tissues, the monoclonal antibody S-44 recognizes statin, a nuclear protein expressed only in nonproliferating cells. In the present study, indirect immunofluorescence microscopy using S-44 identified nuclear statin in 5.9% of a population of untreated human SK-MG-1 glioma cells in vitro. Incremental doses of the alkylating agent sarcosinamide chloroethylnitrosourea (SarCNU) induced a linear increase in the fraction of statin-positive SK-MG-1 cells. Labeling of nuclear statin with the monoclonal antibody S-44 may be a potentially useful marker of the cytotoxic effects of anticancer drugs in gliomas and other neoplastic tissues."	"Statin, a nonproliferation-specific protein, is associated with the nuclear envelope and is heterogeneously distributed in cells leaving quiescent state. Statin, a protein of 57,000 daltons, is present primarily in the nuclei of nonproliferating cells of terminally differentiated tissues or of in vitro aged fibroblast cultures. In young growing cells, the protein can be induced to appear in the nuclei once the cell-cycle traverse is blocked by various tissue culture manipulations, such as serum starvation; this expression, however, can be rapidly removed by addition of serum. The disappearance of statin in cells leaving the quiescent state is not uniform along the periphery of the nucleus; it can be distributed in various patterns, such as caps, nodules, patches, or irregular granules. This unusual distribution seems to suggest that preferential sites exist at the region of the nuclear envelope where statin presence may residually remain. The concentration of statin at the nuclear envelope region in cells at G0-quiescent phase is confirmed by the intense staining of fluorescent antibody at the periphery of isolated rat liver nuclei. Further examination of the isolated nuclei reveals that the protein is associated with the lamina compartment of the nuclear envelope; this is evidenced by the results of immunoblotting experiments showing statin presence in the fraction enriched for lamins A-C. Immunogold labelling studies show that the protein is located in the general area of the nuclear envelope. These results suggest that statin in G0-quiescent cells is located predominantly at the nuclear envelope region and that in this vicinity there may exist geometrically sites of statin concentration as evidenced by the heterogeneous distribution in those cells experiencing the departure from the quiescent state."	"The disappearance of a cyclin-like protein and the appearance of statin is correlated with the onset of differentiation during myogenesis in vitro. We have used monoclonal antibodies to statin (S-44) and a cyclin-like protein (S-132) to examine the distribution of these two antigens in proliferating and in nonproliferating populations of cells. We have found that this cyclin-like protein is present in proliferating fibroblasts, whereas statin is absent from these same cell populations; in contrast, in senescent populations of fibroblasts the cyclin-like antigen disappears and statin labeling of nuclei appears. During myogenesis in rat muscle cell cultures, S-132 labeling is present in proliferating myoblasts and disappears after cells fuse and differentiate as multinucleated myotubes. In contrast, statin is absent from proliferating myoblasts, but appears when these cells become postmitotic and begin to differentiate. Similar results were seen during chick myogenesis. We have also found similar results during serum-starvation-induced differentiation in neuroblastoma cells. These results indicate that the cyclin-like protein disappears and statin appears upon commitment to differentiation in vitro, and the presence or the absence of these proteins appears to provide cellular markers for the transition from the proliferative to the nonproliferative state during differentiation."	"Contact-inhibition-induced quiescent state is marked by intense nuclear expression of statin. Statin, a nuclear protein of 57,000 daltons, is found in in vitro aged, nonproliferating human fibroblasts but not in their young, replicating counterparts or transformed derivatives; it is also found in the nuclei of young fibroblasts when their growth is arrested but rapidly disappears from the cells once the restriction to growth is removed. We reported earlier that as cells leave the quiescent state, the loss of statin from the nucleus precedes the initiation of DNA synthesis; here we report that in a confluent culture, as cells leave the traverse of the replicative cycle and assume the quiescent phenotype, statin is not expressed maximally until total contact inhibition of growth is achieved. This full manifestation of statin occurs in monolayer culture with cells forming the typical swirling pattern and fibronectin organized into large intercellular cables. The late expression of statin in cells approaching the quiescent state is also verified biochemically by immunoblotting assays. The present results, taken together with those reported earlier, indicate that the nuclear appearance of statin occurs only after the complete cessation of DNA synthesis and that the full manifestation of this protein can be used as a marker for the G0 quiescent state."	"Disappearance of statin, a protein marker for non-proliferating and senescent cells, following serum-stimulated cell cycle entry. Statin, a protein of 57,000 D, is present in the nuclei of quiescent or senescent fibroblasts (Wang, E, J cell biol 100 (1985) 545), but is absent in their young replicating counterparts. Immunohistochemical survey of a variety of tissues demonstrates that the presence of statin is a marker for cells that are no longer involved in proliferation, i.e. those cells that are terminally differentiated. Statin expression was examined by immunofluorescence microscopy in serum-starved cultures whose replication had been reinitiated by raising the serum concentration from 0.5 to 10%. Prior to serum addition, more than 85% of the cells stained positively for statin. After stimulation with serum, the expression of statin disappeared rapidly within the first 12-14 h. On the other hand, an increase in the level of DNA synthesis, signifying entry into S phase, was observed initially at 18 h after serum stimulation, and reached maximal levels 6 h later. Immunoprecipitation of statin derived from cells harvested at different intervals after serum stimulation revealed that the level of statin synthesis was reduced by 4 h and was hardly detectable at 8 h. These results demonstrate that the synthesis of statin occurs primarily when cells are in a quiescent state, and declines rapidly when cells are induced to proliferate; this decline precedes the transition from G1 to S phase."	"Difluorostatine- and difluorostatone-containing peptides as potent and specific renin inhibitors. NA"	"Rapid disappearance of statin, a nonproliferating and senescent cell-specific protein, upon reentering the process of cell cycling. Statin, a 57,000-D protein characteristically found in nonreplicating cells, was identified by a monoclonal antibody produced by hybridomas established from mice injected with extracts of in vitro aged human fibroblasts (Wang, E., 1985, J. Cell Biol., 100:545-551). Fluorescence staining with the antibody shows that the expression of statin disappears upon reinitiation of the process for cell replication. The rapid de-expression is observed in fibroblasts involved in the in vitro wound-healing process, as well as in cells that have been subcultured after trypsinization and replated from a confluent culture. Kinetic analysis shows that 50% of the cell population lose their statin expression at 12 h after replating, before the actual events of mitosis. Immunogold labeling with highly purified antibodies localizes the protein at the nuclear envelope in nonreplicating cells, but not in their replicating counterparts. Immunoblotting analysis confirms the disappearance of statin in cells that have reentered the cycling process. Using the technique of flow cytometry to examine the large number of nonreplicating fibroblasts in confluent cultures, we have found that statin is mostly expressed in those cells showing the least amount of DNA content, whose growth is blocked at the G0/G1 stage of the cell cycle. This close correlation is rapidly altered once the cells are released from the confluent state. These results suggest that the expression of statin may be regulated by a fine mechanism controlling the transition from the nonreplicating to the replicating state, and that the protein is structurally associated with the nuclear envelope."	"A 57,000-mol-wt protein uniquely present in nonproliferating cells and senescent human fibroblasts. Mouse monoclonal antibody, S-30, was produced from hybridoma preparation from mice injected with the cytoskeleton extract of an in vitro aged culture of human fibroblasts derived from a 66-yr-old donor. The antibody stains positively the nuclei of the nonproliferating cells present predominantly in the senescent cultures of five selected fibroblast strains derived from donors of different age groups, whereas a negative reaction is observed in the cultures of their young counterparts. In the intermediate stage of the in vitro life span of these cell strains, a heterogeneous positive reaction for staining with S-30 antibody is observed in different subfractions of cell cultures. However, the expression of S-30 can be induced in the young fibroblasts at the early stage of their life by prolonged culturing to confluence. This induced expression of S-30 nuclear staining can be depleted upon subculturing at low cell density. Immunoelectron microscopy with colloidal gold-protein A complex demonstrates that the S-30 proteins are present in the nuclear plasma and at the region of nuclear envelope in a clustered arrangement. Immunoprecipitation of [3H]leucine labeled cell specimens shows that the antibody S-30 reacts with a protein with a molecular weight of approximately 57,000."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRIN1"	"complex neurodevelopmental disorder"	"Functional Genomics of Epileptogenesis in Animal Models and Humans. It has been estimated that epilepsies are among the top five neurological diseases with the highest burden of disease. In recent years, genome-wide expression studies (GWES) have been carried out in experimental models of epilepsy and in samples from human patients. In this study, I carried out meta-analyses and analyses of convergence for available GWES for epileptogenesis in humans and in mouse, rat, zebrafish and fruit fly models. Multiple lines of evidence (such as genome-wide association data and known druggable genes) were integrated to prioritize top candidate genes for epileptogenesis and a functional enrichment analysis was carried out. Several top candidate genes, which are supported by multiple lines of genomic evidence, such as GRIN1, KCNAB1 and STX1B, were identified. Druggable genes of potential interest (such as GABRA2, GRIK1, KCNAB1 and STX4) were also identified. An enrichment of genes regulated by the MEF2 and SOX5 transcription factors and the miR-106b-5p and miR-101-3p miRNAs was found. The current work is the first meta-analysis and convergent analysis of GWES for epileptogenesis in humans and in multiple animal models, integrating results from several genomic studies. Novel candidate genes and pathways for epileptogenesis were identified in this analysis."	"Positive allosteric modulators that target NMDA receptors rectify loss-of-function GRIN variants associated with neurological and neuropsychiatric disorders. N-methyl-d-aspartate receptors (NMDARs) mediate a slow component of excitatory synaptic transmission that plays important roles in normal brain function and development. A large number of disease-associated variants in the GRIN gene family encoding NMDAR GluN subunits have been identified in patients with various neurological and neuropsychiatric disorders. Many of these variants reduce the function of NMDARs by a range of different mechanisms, including reduced glutamate potency, reduced glycine potency, accelerated deactivation time course, decreased surface expression, and/or reduced open probability. We have evaluated whether three positive allosteric modulators of NMDAR receptor function (24(S)-hydroxycholesterol, pregnenolone sulfate, tobramycin) and three co-agonists (d-serine, l-serine, and d-cycloserine) can mitigate the diminished function of NMDARs harboring GRIN variants. We examined the effects of these modulators on NMDARs that contained 21 different loss-of-function variants in GRIN1, GRIN2A, or GRIN2B, identified in patients with epilepsy, intellectual disability, autism, and/or movement disorders. For all variants, some aspect of the reduced function was partially restored. Moreover, some variants showed enhanced sensitivity to positive allosteric modulators compared to wild type receptors. These results raise the possibility that enhancement of NMDAR function by positive allosteric modulators may be a useful therapeutic strategy."	"Sex-Specific Anxiety and Prefrontal Cortex Glutamatergic Dysregulation Are Long-Term Consequences of Pre-and Postnatal Exposure to Hypercaloric Diet in a Rat Model. Both maternal and early life malnutrition can cause long-term behavioral changes in the offspring, which depends on the caloric availability and the timing of the exposure. Here we investigated in a rat model whether a high-caloric palatable diet given to the mother and/or to the offspring during the perinatal and/or postnatal period might dysregulate emotional behavior and prefrontal cortex function in the offspring at adult age. To this end, we examined both anxiety responses and the mRNA/protein expression of glutamatergic, GABAergic and endocannabinoid signaling pathways in the prefrontal cortex of adult offspring. Male animals born from mothers fed the palatable diet, and who continued with this diet after weaning, exhibited anxiety associated with an overexpression of the mRNA of Grin1, Gria1 and Grm5 glutamate receptors in the prefrontal cortex. In addition, these animals had a reduced expression of the endocannabinoid system, the main inhibitory retrograde input to glutamate synapses, reflected in a decrease of the Cnr1 receptor and the Nape-pld enzyme. In conclusion, a hypercaloric maternal diet induces sex-dependent anxiety, associated with alterations in both glutamatergic and cannabinoid signaling in the prefrontal cortex, which are accentuated with the continuation of the palatable diet during the life of the offspring."	"Methionine mediates resilience to chronic social defeat stress by epigenetic regulation of NMDA receptor subunit expression. Previous studies suggested that methionine (Met) levels are decreased in depressed patients. However, whether the decrease in this amino acid is important for phenotypic behaviors associated with depression has not been deciphered. The response of individuals to chronic stress is variable, with some individuals developing depression and others becoming resilient to stress. In this study, our objective was to examine the effect of Met on susceptibility to stress. Male C57BL/6J mice were subjected to daily defeat sessions by a CD1 aggressor, for 10 days. On day 11, the behavior of mice was assessed using social interaction and open-field tests. Mice received Met 4 h before each defeat session. Epigenetic targets were assessed either through real-rime RTPCR or through Western Blots. Met did not modulate anxiety-like behaviors, but rather promoted resilience to chronic stress, rescued social avoidance behaviors and reversed the increase in the cortical expression levels of N-methyl-D-aspartate receptor (NMDAR) subunits. Activating NMDAR activity abolished the ability of Met to promote resilience to stress and to rescue social avoidance behavior, whereas inhibiting NMDAR did not show any synergistic or additive protective effects. Indeed, Met increased the cortical levels of the histone methyltransferase SETDB1, and in turn, the levels of the repressive histone H3 lysine (K9) trimethylation (me3). Our data indicate that Met rescues susceptibility to stress by inactivating cortical NMDAR activity through an epigenetic mechanism involving histone methylation."	"Changes in subunit composition of NMDA receptors in animal models of schizophrenia by repeated administration of methamphetamine. The dopamine and glutamate hypotheses reflect only some of the pathophysiological changes associated with schizophrenia. We have proposed a new &quot;comprehensive progressive pathophysiology model&quot; based on the &quot;dopamine to glutamate hypothesis.&quot; Repeated administration of methamphetamine (METH) at a dose of 2.5 mg/kg in rats has been used to assess dynamic changes in the pathophysiology of schizophrenia. Previous use of this model suggested N-methyl-d-aspartate receptor (NMDA-R) dysfunction, but the mechanism could only be inferred from limited, indirect observations. In the present study, we used this model to investigate changes in the expression of NMDA-R subunits. Repeated administration of METH significantly decreased the gene expression levels of glutamate ionotropic receptor NMDA type subunit (Grin) subtypes Grin1 and Grin2c in the prefrontal cortex (PFC), Grin1 and Grin2a in the hippocampus (HPC), and Grin1, Grin2b, and Grin2d in the striatum (ST).We observed a significant difference in Grin1 expression between the PFC and ST. Furthermore, repeated administration of METH significantly decreased the protein expression of GluN1 in both cytosolic and synaptosomal fractions isolated from the PFC, and significantly decreased the protein expression of GluN1 in the cytosolic fraction, but not the synaptosomal fraction from the ST. These regional differences may be due to variations in the synthesis of GluN1 or intracellular trafficking events in each area of the brain. Considering that knockdown of Grin1 in mice affects vulnerability to develop schizophrenia, these results suggest that this model reflects some of the pathophysiological changes of schizophrenia, combining both the dopamine and glutamate hypotheses."	"Modulation on Glutamic Pathway of Frontal-Striatum-Thalamus by rs11146020 and rs3813296 Gene Polymorphism in First-Episode Negative Schizophrenia. The frontal-striatum-thalamus pathway is important in the glutamic neural circuit. The hypofunction of GRIN1 and GRIA2 subunits from glutamic receptors has been hypothesized as the primary process in the etiology of schizophrenia. Identified gene polymorphism involved in the pathogenesis of schizophrenia may uncover relevant mechanism pathways. We selected two loci of rs11146020 and rs3813296 distributed in GRIN1 and GRIA2 genes and tested their main and interaction effects on causality connections and structural characteristics in the frontal-striatum-thalamus pathway in 55 Han Chinese first-episode negative schizophrenia patients. We found that: (1) rs11146020 has a significant main effect on the causality connections between the bilateral dorsolateral prefrontal cortex, and rs3813296 mainly influences those of the descending pathway from the prefrontal cortex to the striatum; (2) interaction effect of rs11146020 and rs3813296 on causality connections are located in the ascending pathway from the pallidum to the dorsolateral prefrontal cortex; and (3) the two loci have effects on the volumes of several regions of this pathway. Our results suggested there is modulation on glutamic frontal-striatum-thalamus pathway by rs11146020 and rs3813296 gene polymorphism. Patients with different genotypes have different neuroimaging characteristics, which indirectly reminded clinicians those patients should receive different clinical interventions."	"Disability-specific genes GRIN1, GRIN2 and CNR1 show injury-dependent protein expression in the lumbar spinal cord of CCI rats. The sensory changes triggered by peripheral nerve injury result from functional changes in both neurons and glia in the dorsal horn of the spinal cord. Whether the disrupted affective-motivational states often comorbid with injury-evoked changes in sensation are driven directly by these functional changes is a question only recently investigated. Using a combination of GeneChip microarrays and RT-PCR techniques we identified differences in mRNA expression unique to rats with sustained changes to their social behaviour following sciatic nerve chronic constriction injury (CCI). Amongst these changes were the mRNAs encoding several of the NMDA subunits and the CB1 receptor. However, as protein translation is not a necessary consequence of the upregulation or downregulation of genes we decided to evaluate the functional significance of our initial observations using immunohistochemical detection of their translated protein products to determine their location and abundance in the lumbar spinal cord. Spinal cord tissue from rats with ('Affected'), and without ('Unaffected') changes in social behaviour after CCI was compared with tissue from uninjured controls. The expression of NMDA-1 (NR1) subunit, NMDA-2D subunit, Cannabinoid Receptor 1 (CB1), Glucocorticoid Receptor (GR) and Glial Fibrillary Acidic Protein (GFAP) immunoreactivities was quantified for these rats and revealed that nerve injury increased the expression of NMDA-2D, CB1 and GFAP immunoreactivity compared to uninjured controls. However, these changes were not specific to rats whose social behaviours were 'Affected' or 'Unaffected' by the nerve injury. Our data thus suggest that the development and expression of changes in social behaviour seen in a proportion of rats following CCI are unlikely to be directly related to the spinal changes in NMDA-2D, CB1 and GFAP expression induced by the nerve injury."	"[Relationship between Ca(2+)/CaMKⅡ-mediated GABA(A)R-NMDAR interaction and tinnitus]. 耳鸣严重影响患者的生活质量,目前认为其产生机制与听觉通路信号改变所引起的神经元可塑性变化有关,其中可能涉及神经元兴奋性和抑制性传导失衡。A型γ-氨基丁酸受体(γ-aminobutyric acid a receptor,GABA(A)R)和N-甲基-D天冬氨酸受体(N-methyl-D-aspartic acid receptor,NMDAR)是重要的神经元抑制性和兴奋性受体,NMDAR功能亢进和GABA(A)R功能抑制可能是耳鸣发生中的关键性事件。钙/钙调蛋白激酶Ⅱ(Ca(2+)/calmodulin-dependent protein kinaseⅡ,Ca(2+)/CaMKⅡ)是一种丝氨酸/苏氨酸蛋白激酶,介导NMDAR和GABA(A)R的磷酸化及其相互作用,在神经突触受体活性调节过程中发挥重要作用,并可能参与耳鸣的发生发展过程。本文就Ca(2+)/CaMKⅡ介导NMDAR与GABA(A)R的相互作用及其与耳鸣的关系展开综述,并结合临床试验介绍相关耳鸣治疗最新研究成果,以期为临床耳鸣的治疗提供新的作用靶点和干预思路。."	"N-Methyl-D-Aspartate Receptor Hypofunction in Meg-01 Cells Reveals a Role for Intracellular Calcium Homeostasis in Balancing Megakaryocytic-Erythroid Differentiation. The release of calcium ions (Ca<sup>2+</sup>) from the endoplasmic reticulum (ER) and related store-operated calcium entry (SOCE) regulate maturation of normal megakaryocytes. The N-methyl-D-aspartate (NMDA) receptor (NMDAR) provides an additional mechanism for Ca<sup>2+</sup> influx in megakaryocytic cells, but its role remains unclear. We created a model of NMDAR hypofunction in Meg-01 cells using CRISPR-Cas9 mediated knockout of the GRIN1 gene, which encodes an obligate, GluN1 subunit of the NMDAR. We found that compared with unmodified Meg-01 cells, Meg-01-GRIN1<sup>-/-</sup> cells underwent atypical differentiation biased toward erythropoiesis, associated with increased basal ER stress and cell death. Resting cytoplasmic Ca<sup>2+</sup> levels were higher in Meg-01-GRIN1<sup>-/-</sup> cells, but ER Ca<sup>2+</sup> release and SOCE were lower after activation. Lysosome-related organelles accumulated including immature dense granules that may have contributed an alternative source of intracellular Ca<sup>2+</sup>. Microarray analysis revealed that Meg-01-GRIN1<sup>-/-</sup> cells had deregulated expression of transcripts involved in Ca<sup>2+</sup> metabolism, together with a shift in the pattern of hematopoietic transcription factors toward erythropoiesis. In keeping with the observed pro-cell death phenotype induced by GRIN1 deletion, memantine (NMDAR inhibitor) increased cytotoxic effects of cytarabine in unmodified Meg-01 cells. In conclusion, NMDARs comprise an integral component of the Ca<sup>2+</sup> regulatory network in Meg-01 cells that help balance ER stress and megakaryocytic-erythroid differentiation. We also provide the first evidence that megakaryocytic NMDARs regulate biogenesis of lysosome-related organelles, including dense granules. Our results argue that intracellular Ca<sup>2+</sup> homeostasis may be more important for normal megakaryocytic and erythroid differentiation than currently recognized; thus, modulation may offer therapeutic opportunities."	"A Model to Study NMDA Receptors in Early Nervous System Development. N-methyl-D-aspartate receptors (NMDARs) are glutamate-gated ion channels that play critical roles in neuronal development and nervous system function. Here, we developed a model to study NMDARs in early development in zebrafish, by generating CRISPR-mediated lesions in the NMDAR genes, grin1a and grin1b, which encode the obligatory GluN1 subunits. While receptors containing grin1a or grin1b show high Ca<sup>2+</sup> permeability, like their mammalian counterpart, grin1a is expressed earlier and more broadly in development than grin1b Both grin1a<sup>-/-</sup> and grin1b<sup>-/-</sup> zebrafish are viable. Unlike in rodents, where the grin1 knockout is embryonic lethal, grin1 double-mutant fish (grin1a<sup>-/-</sup>; grin1b<sup>-/-</sup>), which lack all NMDAR-mediated synaptic transmission, survive until ∼10 d dpf (days post fertilization), providing a unique opportunity to explore NMDAR function during development and in generating behaviors. Many behavioral defects in the grin1 double-mutant larvae, including abnormal evoked responses to light and acoustic stimuli, prey-capture deficits, and a failure to habituate to acoustic stimuli, are replicated by short-term treatment with the NMDAR antagonist MK-801, suggesting that they arise from acute effects of compromised NMDAR-mediated transmission. Other defects, however, such as periods of hyperactivity and alterations in place preference, are not phenocopied by MK-801, suggesting a developmental origin. Together, we have developed a unique model to study NMDARs in the developing vertebrate nervous system.SIGNIFICANCE STATEMENT Rapid communication between cells in the nervous system depends on ion channels that are directly activated by chemical neurotransmitters. One such ligand-gated ion channel, the NMDAR, impacts nearly all forms of nervous system function. It has been challenging, however, to study the prolonged absence of NMDARs in vertebrates, and hence their role in nervous system development, due to experimental limitations. Here, we demonstrate that zebrafish lacking all NMDAR transmission are viable through early development and are capable of a wide range of stereotypic behaviors. As such, this zebrafish model provides a unique opportunity to study the role of NMDAR in the development of the early vertebrate nervous system."	"BDNF deficiency and enriched environment treatment affect neurotransmitter gene expression differently across ages. Deficiency of activity-induced expression of brain-derived neurotrophic factor (BDNF) disturbs neurotransmitter gene expression. Enriched environment treatment (EET) ameliorates the defects. However, how BDNF deficiency and EET affect the neurotransmitter gene expression differently across ages remains unclear. We addressed this question by determining the neurotransmitter gene expression across three life stages in wild-type and activity-dependent BDNF-deficient (KIV) mice. Mice received 2-months of standard control treatment (SCT) or EET at early-life development (ED: 0-2 months), young adulthood (2-4 months), and old adulthood (12-14 months) (N = 16/group). Half of these mice received additional 1-month SCT to examine persisting EET effects. High-throughput quantitative reverse transcription polymerase chain reaction measured expression of 81 genes for dopamine, adrenaline, serotonin, gamma aminobutyric acid, glutamate, acetylcholine, and BDNF systems in the frontal cortex (FC) and hippocampus. Results revealed that BDNF deficiency mostly reduced neurotransmitter gene expression, greatest at ED in the FC. EET increased expression of a larger number of genes at ED than adulthood, particularly in the KIV FC. Many genes down-regulated in KIV mice were up-regulated by EET, which persisted when EET was provided at ED (e.g., 5-hydroxytryptamine (serotonin) transporter [5HTT], ADRA1D, GRIA3, GABRA5, GABBR2). In both the regions, BDNF deficiency decreased the density of gene co-expression network specifically at ED, while EET increased the density and hub genes (e.g., GAT1, GABRG3, GRIN1, CHRNA7). These results suggest that BDNF deficiency, which occurs under chronic stress, causes neurotransmitter dysregulations prominently at ED, particularly in the FC. EET at ED may be most effective to normalize the dysregulations, providing persisting effects later in life. OPEN SCIENCE BADGES: This article has received a badge for *Open Materials* because it provided all relevant information to reproduce the study in the manuscript. More information about the Open Science badges can be found at https://cos.io/our-services/open-science-badges/."	"Seasonal reproductive state determines gene expression in the hypothalamus of a latitudinal migratory songbird during the spring and autumn migration. We investigated gonadal effects on hypothalamic transcription of genes in sham-operated and castrated redheaded buntings photostimulated into spring and autumn migratory states. RNA-Seq results showed testes-dependent differences between spring and autumn migratory states. In particular, differentially expressed genes enriched G-protein-coupled receptor and calcium-ion signaling pathways during spring and autumn states, respectively. qPCR assay showed attenuated gabra5, ttr, thra and thrb expressions, suggesting reduced GABA and thyroid hormone effects on photo-sexual response in spring. In spring castrates, reduced npy, tac1 and nrcam and increased ank3 expression suggested testicular effects on the appetite, prolactin release and neuronal functions, whereas in autumn castrates, reduced rasgrp1, grm5 and grin1, and increased mras expression suggested testicular effects on the ras, G-protein and glutamate signaling pathways. Castration-induced reciprocal switching of pomc and pdyn expressions suggested effects on the overall homeostasis in both seasons. These results demonstrate transcriptome-wide changes, with season-dependent roles of testes in songbird migration."	"From bedside-to-bench: What disease-associated variants are teaching us about the NMDA receptor. NMDA receptors (NMDARs) are glutamate-gated ion channels that contribute to nearly all brain processes. Not surprisingly then, genetic variations in the genes encoding NMDAR subunits can be associated with neurodevelopmental, neurological and psychiatric disorders. These disease-associated variants (DAVs) present challenges, such as defining how DAV-induced alterations in receptor function contribute to disease progression and how to treat the affected individual clinically. As a starting point to overcome these challenges, we need to refine our understanding of the complexity of NMDAR structure function. In this regard, DAVs have expanded our knowledge of NMDARs because they do not just target well-known structure-function motifs, but rather give an unbiased view of structural elements that are important to the biology of NMDARs. Indeed, established NMDAR structure-function motifs have been validated by the appearance of disorders in patients where these motifs have been altered, and DAVs have identified novel structural features in NMDARs such as gating triads and hinges in the gating machinery. Still, the majority of DAVs remain unexplored and occur at sites in the protein with unidentified function or alter receptor properties in multiple and unanticipated ways. Detailed mechanistic and structural investigations are required of both established and novel motifs to develop a highly refined pathomechanistic model that accounts for the complex machinery that regulates NMDARs. Such a model would provide a template for rational drug design and a starting point for personalized medicine."	"The association between eating behavior and polymorphisms in GRIN2B, GRIK3, GRIA1 and GRIN1 genes in people with type 2 diabetes mellitus. Excess body weight is the main risk factor of type 2 diabetes. Recent studies have shown that psychological and behavioral factors affect weight. Additionally, emerging evidence indicates that polymorphisms of neurotransmitter genes can impact eating behavior. The aim of this study was to detect the associations between SNPs in glutamatergic system genes and type 2 diabetes in the ethnic group of Tatars origin living in the Republic of Bashkortostan (Russian Federation). In our case-control cross-sectional study, 501 patients with type 2 diabetes (170 men and 331 women, 60.9 ± 9.2 years old (mean ± SD), BMI 30.9 ± 3.9 kg/m<sup>2</sup> (mean ± SD) of Tatar ethnicity, and a control group of 420 Tatars (170 men and 250 women, 56.3 ± 11.6 years old (mean ± SD), BMI 24.4 ± 4.3 kg/m<sup>2</sup> (mean ± SD), were genotyped for five SNPs in four glutamatergic genes (GRIN2B, GRIK3, GRIA1, GRIN1). Three SNPs were associated with type 2 diabetes: rs7301328 in GRIN2B [odds ratio adjusted for age, sex and BMI (OR<sup>adj</sup>) = 0.77 (95% CI 0.63-0.93), p<sup>adj</sup> = 0.0077], rs1805476 in GRIN2B [OR<sup>adj</sup> = 1.25 (95% CI 1.03-1.51), p<sup>adj</sup> = 0.0240], and rs2195450 in GRIA1 [OR<sup>adj</sup> = 1.35 (95% CI 1.02-1.79), p<sup>adj</sup> = 0.0340]. Regression analysis revealed that rs1805476 in GRIN2B was associated with LDL level, glomerular filtration rate, BMI (p = 0.020, p = 0.012 and p = 0.018, respectively). The SNP rs7301328 in GRIN2B was associated with triglyceride levels and HbA1c (p = 0.040, p = 0.023, respectively). These associations were not significant after Bonferroni correction. We found the association between rs534131 in GRIK3, rs2195450 in GRIA1, rs1805476 in GRIN2B and diabetic retinopathy (p = 0.005, p = 0.007, p = 0.040, respectively); rs7301328 in GRIN2B was associated with hypertension (p = 0.025) and cerebrovascular disease (p = 0.013). The association between rs534131 of GRIK3, rs2195450 of GRIA1 genes and diabetic retinopathy remained significant after Bonferroni correction. The SNPs rs6293 in GRIN1 was significantly associated with eating behavior in patients with type 2 diabetes (p = 0.01). Our results demonstrate that polymorphic variants of glutamatergic genes are associated with eating behavior and diabetic complications in Tatar ethnic group residing in the Republic of Bashkortostan. We detected novel associations of the polymorphic loci in GRIN1 (rs6293) gene with external eating behavior in type 2 diabetes patients, GRIK3 (rs534131) and GRIA1 (rs2195450) genes with diabetic retinopathy."	"GnRH(1-5), a metabolite of gonadotropin-releasing hormone, enhances luteinizing hormone release via activation of kisspeptin neurons in female rats. Accumulating evidence suggests that kisspeptin neurons in the arcuate nucleus (ARC), which coexpress neurokinin B and dynorphin, are involved in gonadotropin-releasing hormone (GnRH)/luteinizing hormone (LH) pulse generation, while the anteroventral periventricular nucleus (AVPV) kisspeptin neurons are responsible for GnRH/LH surge generation. The present study aims to examine whether GnRH(1-5), a GnRH metabolite, regulates LH release via kisspeptin neurons. GnRH(1-5) was intracerebroventricularly injected to ovariectomized and estrogen-treated Wistar-Imamichi female rats. Immediately after the central GnRH(1-5) administration at 2 nmol, plasma LH concentration increased, resulting in significantly higher levels of the area under the curve and baseline of plasma LH concentrations compared to vehicle-injected controls. On the other hand, in Kiss1 knockout rats, GnRH(1-5) administration failed to affect LH secretion, suggesting that the facilitatory effect of GnRH(1-5) on LH release is mediated by kisspeptin neurons. Double in situ hybridization (ISH) for Kiss1 and Gpr101, a GnRH(1-5) receptor gene, revealed that few Kiss1-expressing cells coexpress Gpr101 in both ARC and AVPV. On the other hand, double ISH for Gpr101 and Slc17a6, a glutamatergic marker gene, revealed that 29.2% of ARC Gpr101-expressing cells coexpress Slc17a6. Further, most of the AVPV and ARC Kiss1-expressing cells coexpress Grin1, a gene encoding a subunit of NMDA receptor. Taken together, these results suggest that the GnRH(1-5)-GPR101 signaling facilitates LH release via indirect activation of kisspeptin neurons and that glutamatergic neurons may mediate the signaling. This provides a new aspect of kisspeptin- and GnRH-neuronal communication with the presence of stimulation from GnRH to kisspeptin neurons in female rats."	"Control of Long-Term Synaptic Potentiation and Learning by Alternative Splicing of the NMDA Receptor Subunit GluN1. NMDA receptors (NMDARs) are critical for physiological synaptic plasticity, learning, and memory and for pathological plasticity and neuronal death. The GluN1 subunit is encoded by a single gene, GRIN1, with 8 splice variants, but whether the diversity generated by this splicing has physiological consequences remains enigmatic. Here, we generate mice lacking from the GluN1 exon 5-encoded N1 cassette (GluN1a mice) or compulsorily expressing this exon (GluN1b mice). Despite no differences in basal synaptic transmission, long-term potentiation in the hippocampus is significantly enhanced in GluN1a mice compared with that in GluN1b mice. Furthermore, GluN1a mice learn more quickly and have significantly better spatial memory performance than do GluN1b mice. In addition, in human iPSC-derived neurons in autism spectrum disorder NMDARs show characteristics of N1-lacking GluN1. Our findings indicate that alternative splicing of GluN1 is a mechanism for controlling physiological long-lasting synaptic potentiation, learning, and memory."	"N-methyl-D-aspartate (NMDA) receptor expression and function is required for early chondrogenesis. In vitro chondrogenesis depends on the concerted action of numerous signalling pathways, many of which are sensitive to the changes of intracellular Ca<sup>2+</sup> concentration. N-methyl-D-aspartate (NMDA) glutamate receptor is a cation channel with high permeability for Ca<sup>2+</sup>. Whilst there is now accumulating evidence for the expression and function of NMDA receptors in non-neural tissues including mature cartilage and bone, the contribution of glutamate signalling to the regulation of chondrogenesis is yet to be elucidated. We studied the role of glutamatergic signalling during the course of in vitro chondrogenesis in high density chondrifying cell cultures using single cell fluorescent calcium imaging, patch clamp, transient gene silencing, and western blotting. Here we show that key components of the glutamatergic signalling pathways are functional during in vitro chondrogenesis in a primary chicken chondrogenic model system. We also present the full glutamate receptor subunit mRNA and protein expression profile of these cultures. This is the first study to report that NMDA-mediated signalling may act as a key factor in embryonic limb bud-derived chondrogenic cultures as it evokes intracellular Ca<sup>2+</sup> transients, which are abolished by the GluN2B subunit-specific inhibitor ifenprodil. The function of NMDARs is essential for chondrogenesis as their functional knock-down using either ifenprodil or GRIN1 siRNA temporarily blocks the differentiation of chondroprogenitor cells. Cartilage formation was fully restored with the re-expression of the GluN1 protein. We propose a key role for NMDARs during the transition of chondroprogenitor cells to cartilage matrix-producing chondroblasts."	"Autoimmune encephalitis. Autoimmune encephalitis is emerging as an important and relatively common cause of encephalitis in the developed world. Crucially, early recognition and prompt initiation of a range of immunotherapies is likely to improve the outcomes of patients with autoimmune encephalitis, particularly for those with identifiable antibodies against neuronal cell surface proteins. There are a rapidly growing number of specific autoantibodies and associated syndromes, but many of these remain very rare. The majority of cases comprise anti-N-methyl-D-aspartate (NMDA) receptor encephalitis or anti-leucine-rich glioma-inactivated protein 1 (LGI1) encephalitis with the remaining cases a mixture of over 10 other specific antibodies or being seronegative. The core anti-NMDA encephalitis phenotype is a distinct symptom complex involving psychiatric and neurological features and anti-LGI1 encephalitis presents with cognitive changes and distinct seizure types. Diagnosis can be delayed owing to limited access to specialised laboratory testing or in cases with atypical or limited features."	"Ovariectomy Influences Cognition and Markers of Alzheimer's Disease. Alzheimer's disease (AD) is one of the most devastating and costly diseases, and prevalence of AD increases with age. Furthermore, females are twice as likely to suffer from AD compared to males. The cessation of reproductive steroid hormone production during menopause is hypothesized to cause this difference. Two rodent AD models, APP21 and APP+PS1, and wild type (WT) rats underwent an ovariectomy or sham surgery. Changes in learning and memory, brain histology, amyloid-β (Aβ) deposition, levels of mRNAs involved in Aβ production and clearance, and synaptic and cognitive function were determined. Barnes maze results showed that regardless of ovariectomy status, APP+PS1 rats learned slower and had poor memory retention. Ovariectomy caused learning impairment only in the APP21 rats. High levels of Aβ42 and very low levels of Aβ40 were observed in the brain cortices of APP+PS1 rats indicating limited endogenous PS1. The APP+PS1 rats had 43-fold greater formic acid soluble Aβ42 than Aβ40 at 17 months. Furthermore, levels of formic acid soluble Aβ42 increased 57-fold in ovariectomized APP+PS1 rats between 12 and 17 months of age. The mRNA encoding Grin1 significantly decreased due to ovariectomy whereas levels of Bace1, Chat, and Prkcb all decreased with age. The expression levels of mRNAs involved in Aβ degradation and AβPP cleavage (Neprilysin, Ide, Adam9, and Psenen) were found to be highly correlated with each other as well as hippocampal Aβ deposition. Taken together, these results indicate that both ovariectomy and genotype influence AD markers in a complex manner."	"NMDA Receptor in Vasopressin 1b Neurons Is Not Required for Short-Term Social Memory, Object Memory or Aggression. The arginine vasopressin 1b receptor (Avpr1b) plays an important role in social behaviors including aggression, social learning and memory. Genetic removal of Avpr1b from mouse models results in deficits in aggression and short-term social recognition in adults. Avpr1b gene expression is highly enriched in the pyramidal neurons of the hippocampal cornu ammonis 2 (CA2) region. Activity of the hippocampal CA2 has been shown to be required for normal short-term social recognition and aggressive behaviors. Vasopressin acts to enhance synaptic responses of CA2 neurons through a NMDA-receptor dependent mechanism. Genetic removal of the obligatory subunit of the NMDA receptor (Grin1) within distinct hippocampal regions impairs non-social learning and memory. However, the question of a direct role for NMDA receptor activity in Avpr1b neurons to modulate social behavior remains unclear. To answer this question, we first created a novel transgenic mouse line with Cre recombinase knocked into the Avpr1b coding region to genetically target Avpr1b neurons. We confirmed this line has dense Cre expression throughout the dorsal and ventral CA2 regions of the hippocampus, along with scattered expression within the caudate-putamen and olfactory bulb (OB). Conditional removal of the NMDA receptor was achieved by crossing our line to an available floxed Grin1 line. The resulting mice were measured on a battery of social and memory behavioral tests. Surprisingly, we did not observe any differences between Avpr1b-Grin1 knockout mice and their wildtype siblings. We conclude that mice without typical NMDA receptor function in Avpr1b neurons can develop normal aggression as well as short-term social and object memory performance."	"Neuronal network dysfunction in a model for Kleefstra syndrome mediated by enhanced NMDAR signaling. Kleefstra syndrome (KS) is a neurodevelopmental disorder caused by mutations in the histone methyltransferase EHMT1. To study the impact of decreased EHMT1 function in human cells, we generated excitatory cortical neurons from induced pluripotent stem (iPS) cells derived from KS patients. Neuronal networks of patient-derived cells exhibit network bursting with a reduced rate, longer duration, and increased temporal irregularity compared to control networks. We show that these changes are mediated by upregulation of NMDA receptor (NMDAR) subunit 1 correlating with reduced deposition of the repressive H3K9me2 mark, the catalytic product of EHMT1, at the GRIN1 promoter. In mice EHMT1 deficiency leads to similar neuronal network impairments with increased NMDAR function. Finally, we rescue the KS patient-derived neuronal network phenotypes by pharmacological inhibition of NMDARs. Summarized, we demonstrate a direct link between EHMT1 deficiency and NMDAR hyperfunction in human neurons, providing a potential basis for more targeted therapeutic approaches for KS."	"Calcium Signaling and Gene Expression. Calcium signaling plays an important role in gene expression. At the transcriptional level, this may underpin mammalian neuronal synaptic plasticity. Calcium influx into the postsynaptic neuron via: N-methyl-D-aspartate (NMDA) receptors activates small GTPase Rac1 and other Rac guanine nucleotide exchange factors, and stimulates calmodulin-dependent kinase kinase (CaMKK) and CaMKI; α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptors that are not impermeable to calcium ions, that is, those lacking the glutamate receptor-2 subunits, leads to activation of Ras guanine nucleotide-releasing factor proteins, which is coupled with activation of the mitogen-activated protein kinases/extracellular signal-regulated kinases signaling cascade; L-type voltage-gated calcium channels activates signaling pathways involving CaMKII, downstream responsive element antagonist modulator and distinct microdomains. Key members of these signaling cascades then translocate into the nucleus, where they alter the expression of genes involved in neuronal synaptic plasticity. At the post-transcriptional level, intracellular calcium level changes can change alternative splicing patterns; in the mammalian brain, alterations in calcium signaling via NMDA receptors is associated with exon silencing of the CI cassette of the NMDA R1 receptor (GRIN1) transcript by UAGG motifs in response to neuronal excitation. Regulation also occurs at the translational level; transglutaminase-2 (TG2) mediates calcium ion-regulated crosslinking of Y-box binding protein-1 (YB-1) translation-regulatory protein in TGFβ1-activated myofibroblasts; YB-1 binds smooth muscle α-actin mRNA and regulates its translational activity. Calcium signaling is also important in epigenetic regulation, for example in respect of changes in cytosine bases. Targeting calcium signaling may provide therapeutically useful options, for example to induce epigenetic reactivation of tumor suppressor genes in cancer patients."	"N-terminal alternative splicing of GluN1 regulates the maturation of excitatory synapses and seizure susceptibility. The majority of NMDA receptors (NMDARs) in the brain are composed of 2 GluN1 and 2 GluN2 subunits. The inclusion or exclusion of 1 N-terminal and 2 C-terminal domains of GluN1 results in 8 splicing variants that exhibit distinct temporal and spatial patterns of expression and functional properties. However, previous functional analyses of Grin1 variants have been done using heterologous expression and the in vivo function of Grin1 splicing is unknown. Here we show that N-terminal splicing of GluN1 has important functions in the maturation of excitatory synapses. The inclusion of exon 5 of Grin1 is up-regulated in several brain regions such as the thalamus and neocortex. We find that deletion of Grin1 exon 5 disrupts the developmental remodeling of NMDARs in thalamic neurons and the effect is distinct from that of Grin2a (GluN2A) deletion. Deletion of Grin2a or exon 5 of Grin1 alone partially attenuates the shortening of NMDAR-mediated excitatory postsynaptic currents (NMDAR-EPSCs) during early life, whereas deletion of both Grin2a and exon 5 of Grin1 completely abolishes the developmental change in NMDAR-EPSC decay time. Deletion of exon 5 of Grin1 leads to an overproduction of excitatory synapses in layer 5 pyramidal neurons in the cortex and increases seizure susceptibility in adult mice. Our findings demonstrate that N-terminal splicing of GluN1 has important functions in synaptic maturation and neuronal network excitability."	"Heterogeneous glutamatergic receptor mRNA expression across phrenic motor neurons in rats. The diaphragm muscle comprises various types of motor units that are recruited in an orderly fashion governed by the intrinsic electrophysiological properties (membrane capacitance as a function of somal surface area) of phrenic motor neurons (PhMNs). Glutamate is the main excitatory neurotransmitter at PhMNs and acts primarily via fast acting AMPA and N-methyl-D-aspartic acid (NMDA) receptors. Differences in receptor expression may also contribute to motor unit recruitment order. We used single cell, multiplex fluorescence in situ hybridization to determine glutamatergic receptor mRNA expression across PhMNs based on their somal surface area. In adult male and female rats (n = 9) PhMNs were retrogradely labeled for analyses (n = 453 neurons). Differences in the total number and density of mRNA transcripts were evident across PhMNs grouped into tertiles according to somal surface area. A ~ 25% higher density of AMPA (Gria2) and NMDA (Grin1) mRNA expression was evident in PhMNs in the lower tertile compared to the upper tertile. These smaller PhMNs likely comprise type S motor units that are recruited first to accomplish lower force, ventilatory behaviors. In contrast, larger PhMNs with lower volume densities of AMPA and NMDA mRNA expression presumably comprise type FInt and FF motor units that are recruited during higher force, expulsive behaviors. Furthermore, there was a significantly higher cytosolic NMDA mRNA expression in small PhMNs suggesting a more important role for NMDA-mediated glutamatergic neurotransmission at smaller PhMNs. These results are consistent with the observed order of motor unit recruitment and suggest a role for glutamatergic receptors in support of this orderly recruitment. Cover Image for this issue: doi: 10.1111/jnc.14747."	"Rett and Rett-like syndrome: Expanding the genetic spectrum to KIF1A and GRIN1 gene. This study aimed to investigate the new genetic etiologies of Rett syndrome (RTT) or Rett-like phenotypes. Targeted next-generation sequencing (NGS) was performed on 44 Chinese patients with RTT or Rett-like phenotypes, in whom genetic analysis of MECP2, CDKL5, and FOXG1 was negative. The detection rate was 31.8% (14/44). A de novo pathogenic variant (c.275_276ins AA, p. Cys92*) of KIF1A was identified in a girl with all core features of typical RTT. A patient with atypical RTT was detected having de novo GRIN1 pathogenic variant (c.2337C &gt; A, p. Val793Phe). Additionally, compound heterozygous pathogenic variants of PPT1 gene were detected in a girl, who initially displayed typical RTT features, but progressed into neuronal ceroid lipofuscinoses (NCL) afterwards. Pathogenic variants in KCNQ2, MEF2C, WDR45, TCF4, IQSEC2, and SDHA were also found in our cohort. It is the first time that pathogenic variants of GRIN1 and KIF1A were linked to RTT and Rett-like profiles. Our findings expanded the genetic heterogeneity of Chinese RTT or Rett-like patients, and also suggest that some patients with genetic metabolic disease such as NCL, might displayed Rett features initially, and clinical follow-up is essential for the diagnosis."	"De novo GRIN variants in NMDA receptor M2 channel pore-forming loop are associated with neurological diseases. N-methyl-D-aspartate receptors (NMDARs) mediate slow excitatory postsynaptic transmission in the central nervous system, thereby exerting a critical role in neuronal development and brain function. Rare genetic variants in the GRIN genes encoding NMDAR subunits segregated with neurological disorders. Here, we summarize the clinical presentations for 18 patients harboring 12 de novo missense variants in GRIN1, GRIN2A, and GRIN2B that alter residues in the M2 re-entrant loop, a region that lines the pore and is intolerant to missense variation. These de novo variants were identified in children with a set of neurological and neuropsychiatric conditions. Evaluation of the receptor cell surface expression, pharmacological properties, and biophysical characteristics show that these variants can have modest changes in agonist potency, proton inhibition, and surface expression. However, voltage-dependent magnesium inhibition is significantly reduced in all variants. The NMDARs hosting a single copy of a mutant subunit showed a dominant reduction in magnesium inhibition for some variants. These variant NMDARs also show reduced calcium permeability and single-channel conductance, as well as altered open probability. The data suggest that M2 missense variants increase NMDAR charge transfer in addition to varied and complex influences on NMDAR functional properties, which may underlie the patients' phenotypes."	"Glutamate controls vessel-associated migration of GABA interneurons from the pial migratory route via NMDA receptors and endothelial protease activation. During cortex development, fine interactions between pyramidal cells and migrating GABA neurons are required to orchestrate correct positioning of interneurons, but cellular and molecular mechanisms are not yet clearly understood. Functional and age-specific expression of NMDA receptors by neonate endothelial cells suggests a vascular contribution to the trophic role of glutamate during cortical development. Associating functional and loss-of-function approaches, we found that glutamate stimulates activity of the endothelial proteases MMP-9 and t-PA along the pial migratory route (PMR) and radial cortical microvessels. Activation of MMP-9 was NMDAR-dependent and abrogated in t-PA<sup>-/-</sup> mice. Time-lapse recordings revealed that glutamate stimulated migration of GABA interneurons along vessels through an NMDAR-dependent mechanism. In Gad67-GFP mice, t-PA invalidation and in vivo administration of an MMP inhibitor impaired positioning of GABA interneurons in superficial cortical layers, whereas Grin1 endothelial invalidation resulted in a strong reduction of the thickness of the pial migratory route, a marked decrease of the glutamate-induced MMP-9-like activity along the PMR and a depopulation of interneurons in superficial cortical layers. This study supports that glutamate controls the vessel-associated migration of GABA interneurons by regulating the activity of endothelial proteases. This effect requires endothelial NMDAR and is t-PA-dependent. These neurodevelopmental data reinforce the debate regarding safety of molecules with NMDA-antagonist properties administered to preterm and term neonates."	"Distinct gene alterations between Fos-expressing striatal and thalamic neurons after withdrawal from methamphetamine self-administration. Methamphetamine (Meth) seeking progressively increases after withdrawal (incubation of Meth craving). We previously demonstrated a role of anterior intralaminar nucleus of thalamus (AIT) to dorsomedial striatum (DMS) projections in this incubation. Here, we examined molecular alterations in DMS and AIT neurons activated (identified by neuronal activity marker Fos) during &quot;incubated&quot; Meth-seeking relapse test after prolonged withdrawal. We trained male rats to self-administer Meth or saline (control condition) for 10 days (6 hr/day). Using fluorescence-activated cell sorting, we examined gene expression in Fos-positive (activated during a 2-hr relapse test) and Fos-negative (nonactivated) DMS and AIT neurons. In DMS, we found increased mRNA expressions of immediate early genes (IEGs) (Arc, Egr1, Npas4, Fosb), Trkb, glutamate receptors subunits (Gria3, Grin1, Grin2b, Grm1), and epigenetic enzymes (Hdac3, Hdac5, Crebbp) in Fos-positive neurons, compared with Fos-negative neurons. In AIT, we found that fewer genes (Egr1, Fosb, TrkB, Grin1, and Hdac5) exhibited increased mRNA expression in Fos-positive neurons. Unexpectedly, in both brain regions, gene alterations described above also occurred in drug-naïve saline self-administration control rats. These results demonstrated that transcriptional regulations in Fos-positive neurons activated during the relapse tests are brain region-specific but are not uniquely associated with drug exposure during the self-administration training."	"An update on anti-NMDA receptor encephalitis for neurologists and psychiatrists: mechanisms and models. The identification of anti-NMDA receptor (NMDAR) encephalitis about 12 years ago made it possible to recognise that some patients with rapidly progressive psychiatric symptoms or cognitive impairment, seizures, abnormal movements, or coma of unknown cause, had an autoimmune disease. In this disease, autoantibodies serve as a diagnostic marker and alter NMDAR-related synaptic transmission. At symptom onset, distinguishing the disease from a primary psychiatric disorder is challenging. The severity of symptoms often requires intensive care. Other than clinical assessment, no specific prognostic biomarkers exist. The disease is more prevalent in women (with a female to male ratio of around 8:2) and about 37% of patients are younger than 18 years at presentation of the disease. Tumours, usually ovarian teratoma, and herpes simplex encephalitis are known triggers of NMDAR autoimmunity. About 80% of patients improve with immunotherapy and, if needed, tumour removal, but the recovery is slow. Animal models have started to reveal the complexity of the underlying pathogenic mechanisms and will lead to novel treatments beyond immunotherapy. Future studies should aim at identifying prognostic biomarkers and treatments that accelerate recovery."	"Progressive neuroanatomical changes caused by Grin1 loss-of-function mutation. NMDA receptor dysfunction is central to the encephalopathies caused by missense mutations in the NMDA receptor subunit genes. Missense variants of GRIN1, GRIN2A, and GRIN2B cause similar syndromes with varying severity of intellectual impairment, autism, epilepsy, and motor dysfunction. To gain insight into possible biomarkers of NMDAR hypofunction, we asked whether a loss-of-function variant in the Grin1 gene would cause structural changes in the brain that could be detected by MRI. We also studied the developmental trajectory of these changes to determine whether structural changes coincided with reported cognitive impairments in the mice. We performed magnetic resonance imaging in male Grin1-/- knockdown mice (GluN1KD) that were three, six, or twelve weeks old. Deformation-based morphometry was used to assess neuroanatomical differences. Volumetric reductions were detected in substantia nigra and striatum of GluN1KD mice at all ages. Changes in limbic structures were only evident at six weeks of age. Reductions in white matter volumes were first evident at three weeks, and additional deficits were detected at six and twelve weeks. FluoroJade immunofluorescence revealed degenerating neurons in twelve-week old GluN1KD mice. We conclude that Grin1 loss-of-function mutations cause volume reductions in dopaminergic structures early in development, while changes to limbic and white matter structures are delayed and are more pronounced in post-adolescent ages. The evidence of degenerating neurons in the mature brain indicates an ongoing process of cell loss as a consequence of NMDAR hypofunction."	"Anti-N-Methyl-D-Aspartate Receptor Encephalitis: A Challenging Diagnosis in the Emergency Department. Anti-N-methyl-D-aspartate receptor (NMDAR) encephalitis is an underdiagnosed disease that has been described thus far only in case series. Patients, the majority of which are females, develop neuropsychiatric symptoms that can often be misdiagnosed as purely psychiatric illness. Although teratomas are nearly pathognomonic for anti-NMDAR encephalitis, these are less common in children and males. This case illustrates some common features of anti-NMDAR encephalitis and some of the challenges in diagnosis."	"Differential expression of synaptic markers regulated during neurodevelopment in a rat model of schizophrenia-like behavior. Schizophrenia is considered a neurodevelopmental disorder. Recent reports relate synaptic alterations with disease etiology. The inbred Roman High- (RHA-I) and Low- (RLA-I) Avoidance rat strains are a congenital neurobehavioral model, with the RHA-I displaying schizophrenia-related behaviors and serotonin 2A (5-HT2A) and metabotropic glutamate 2 (mGlu2) receptor alterations in the prefrontal cortex (PFC). We performed a comprehensive characterization of the RHA-I/RLA-I rats by real-time qPCR and Western blotting for 5-HT1A, 5-HT2A, mGlu2, dopamine 1 and dopamine 2 receptors (DRD1 and DRD2), AMPA receptor subunits Gria1, Gria2 and NMDA receptor subunits Grin1, Grin2a and Grin2b, as well as pre- and post-synaptic components in PFC and hippocampus (HIP). Besides corroborating decreased mGlu2 (Grm2) expression, we found increased mRNA levels for Snap25, Synaptophysin (Syp), Homer1 and Neuregulin-1 (Nrg1) in the PFC of the RHA-I and decreased expression of Vamp1, and Snapin in the HIP. We also showed alterations in Vamp1, Grin2b, Syp, Snap25 and Nrg1 at protein levels. mRNA levels of Brain Derived Neurotrophic Factor (BDNF) were increased in the PFC of the RHA-I rats, with no differences in the HIP, while BDNF protein levels were decreased in PFC and increased in HIP. To investigate the temporal dynamics of these synaptic markers during neurodevelopment, we made use of the open source BrainCloud™ dataset, and found that SYP, GRIN2B, NRG1, HOMER1, DRD1 and BDNF expression is upregulated in PFC during childhood and adolescence, suggesting a more immature neurobiological endophenotype in the RHA-I strain."	"Abnormal circadian rhythm in patients with GRIN1-related developmental epileptic encephalopathy. GRIN1 encodes the obligate subunit (GluN1) of glutamate N-methyl-d-aspartate receptor (NMDAr). Pathogenic variants in GRIN1 are a well-known cause of infantile encephalopathy characterized by profound developmental delay (DD), variable epileptic phenotypes, and distinctive behavioral abnormalities. Recently, GRIN1 has also been implicated in the pathogenesis of polymicrogyria (PMG). We investigated two patients presenting with severe intellectual disability (ID), epilepsy, stereotyped movements, and abnormal ocular movements. They showed distinctive circadian rhythm alterations and sleep-wake patterns anomalies characterized by recurrent cyclic crying or laughing spells. Genetic analysis led to the identification of two distinct de novo variants in GRIN1 affecting the same amino acid residue of an important functional protein domain. Recent advances in circadian rhythm and sleep regulation suggest that abnormal GluN1 function might play a relevant pathogenetic role for the peculiar behavioral abnormalities observed in GRIN1 patients. Our cases highlight the relevance of circadian rhythm abnormalities in epileptic children as a clue toward GRIN1 encephalopathy and expand the complex phenotypic spectrum of this severe genetic disorder."	"Mechanisms underlying the efficacy of exercise as an intervention for cocaine relapse: a focus on mGlu5 in the dorsal medial prefrontal cortex. Exercise shows promise as a treatment option for addiction; but in order to prevent relapse, it may need to be introduced early in the course of treatment. We propose that exercise, by upregulating dorsal medial prefrontal cortex (dmPFC)-nucleus accumbens (NAc) transmission, offsets deficits in pathways targeting glutamate, BDNF, and dopamine during early abstinence, and in doing so, normalizes neuroadaptations that underlie relapse. We compared the effects of exercise (wheel running, 2-h/day) during early (days 1-7), late (days 8-14), and throughout abstinence (days 1-14) to sedentary conditions on cocaine-seeking and gene expression in the dmPFC and NAc core of male rats tested following 24-h/day extended-access cocaine (up to 96 infusions/day) or saline self-administration and protracted abstinence (15 days). Based on these data, we then used site-specific manipulation to determine whether dmPFC metabotropic glutamate receptor5 (mGlu5) underlies the efficacy of exercise. Exercise initiated during early, but not late abstinence, reduced cocaine-seeking; this effect was strongly associated with dmPFC Grm5 expression (gene encoding mGlu5), and modestly associated with dmPFC Grin1 and Bdnf-IV expression. Activation of mGlu5 in the dmPFC during early abstinence mimicked the efficacy of early-initiated exercise; however, inhibition of these receptors prior to the exercise sessions did not block its efficacy indicating that there may be redundancy in the mechanisms through which exercise reduces cocaine-seeking. These findings indicate that addiction treatments, including exercise, should be tailored for early versus late phases of abstinence since their effectiveness will vary over abstinence due to the dynamic nature of the underlying neuroadaptations."	"D-Aspartate amends reproductive performance of aged roosters by changing gene expression and testicular histology. Male broiler breeders (n=32) of 55 weeks of age were administered four different doses of capsulated d-aspartate (DA; 0, 100, 200 or 300mgkg-1day-1, p.o. (DA0, DA100, DA200 and DA300 respectively)) for 12 successive weeks to assess reproductive performance, blood testosterone, testicular histology and transcript levels of steroidogenic acute regulatory protein (StAR), cholesterol side-chain cleavage enzyme (P450scc), androgen receptor (AR), LH receptor (LHR), 3β-hydroxysteroid dehydrogenase (3BHSD), proliferating cell nuclear antigen (PCNA), glutamate ionotropic receptor NMDA type subunit 1 (GRIN1) and glutamate ionotropic receptor NMDA type subunit 2B (GRIN2B). Blood samples and ejaculates were collected, and bodyweight was recorded weekly for 10 weeks. AI was performed weekly for the last 2 weeks to determine the number of sperm penetration holes in the perivitelline layer, fertility and hatchability. Testes histology and transcript levels were evaluated in the 12th week. Bodyweight, numbers of Leydig cells and blood vessels, testis index and levels of sperm abnormalities were not affected (P&gt;0.05) by the treatment. However, sperm total and forward motility, plasma membrane integrity and functionality of sperm, ejaculate volume, testosterone concentration and fertility were higher (P&lt;0.05) in both the DA200 and DA300 groups compared with the other groups. In the DA100 and DA200 groups, sperm concentration, number of spermatogonia, thickness of the seminiferous epithelium and the diameter of tubules were significantly higher (P&lt;0.05) than the other DA-treated groups. The number of penetration holes, hatchability and malondialdehyde concentration were higher in the DA200, all DA-treated and DA300 groups respectively compared with the control and other treatment groups. Except for P450scc, AR, LHR and PCNA transcript levels in the DA300 groups, the relative expression of the genes evaluated improved significantly in the other DA-treated groups. Based on these experimental findings, it is concluded that DA improves reproductive performance of aged roosters."	"Cognitive and physical disability in Egyptian patients with multiple sclerosis: genetic and optical coherence tomography study. Objectives: The aim of this study was to explore the relationship between cognitive dysfunction, neurodegeneration, and genetic factors among multiple sclerosis (MS) patients. Methods: Fifty patients of definite MS were included. Physical disability was assessed by expanded disability status scale (EDSS). Cognitive functions were assessed by using the Brief International Cognitive Assessment for Multiple Sclerosis (BICAMS). For each eye, optical coherence tomography (OCT) was used to track thickness of retinal nerve fiber layer (RNFL) and ganglion cell complex (GCC), respecting the previous history of optic neuritis (ON). All patients were genotyped for glutamate N-methyl-D-aspartate receptors (NMDARs). Results: A statistically significant negative correlation was found between scores of EDSS and each of neuropsychological tests scores and thickness of both RNFL and GCC. The predictor for progressive disability assessed by EDSS was Symbol Digit Modalities Test (SDMT) (P = 0.021), that is dependent on the educational level of the patients (P = 0.016). A statistically significant positive correlation was found between scores of all neuropsychological tests and the thickness of both RNFL and GCC. Eighty-three percent of MS patients with CC genotype reported previous attacks of ON with significant thinning in RNFL and GCC despite their higher cognitive performance in comparison to other genotypes. Discussion: Deficit in information processing speed measured by SDMT is a predictor of early progressive disability in MS patients. Thinning of RNFL and GCC is a potential biomarker for cognitive and physical disability in MS. The CC genotype of glutamate NMDAR gene has a divergent effect on visual and cognitive functions."	"The promising novel biomarkers and candidate small molecule drugs in lower-grade glioma: Evidence from bioinformatics analysis of high-throughput data. Overall survival of patients with low-grade glioma (LGG) has shown no significant improvement over the past 30 years, with survival averaging approximately 7 years. This study aimed to identify novel promising biomarkers of LGG and reveal its potential molecular mechanisms by integrated bioinformatics analysis. The microarray datasets of GSE68848 and GSE4290 were selected from GEO database for integrated analysis. In total, 293 overlapping differentially expressed genes (DEGs) were detected using the limma package. One hundred and eighty-eight nodes with 603 interactions were obtained from the establishment of protein-protein interaction (PPI) network. Functional and signaling pathway enriched were significantly correlated with the synapse and calcium signaling pathway, respectively. Module analysis revealed eight hub genes with high connectivity, which included CHRM1, DLG2, GABRD, GRIN1, HTR2A, KCNJ3, KCNJ9, and NUSAP1, and they were markedly correlated with patients' prognosis. The mining of the Gene Expression Profiling Interactive Analysis database and qPCR further confirmed the abnormal expression of these key genes with their prognostic value in LGG. We eventually predicted the 20 most vital small molecule drugs, which potentially reverse the carcinogenic state of LGG, as per the CMap (connectivity map) database and these DEGs, and MS-275 (enrichment score = -0.939) was considered as the most promising small molecule to treat LGG. In conclusion, our study provided eight reliable novel molecular biomarkers for diagnosis, prognosis prediction, and treatment targets for LGG. These conclusions will contribute to a better comprehension of molecular mechanisms fundamental to LGG occurrence and progression, and providing new insights for future development of genomic individualized treatment in LGG."	"What DNA methylation modifications and/or genetic variations interact with childhood maltreatment in the development of depression: A systematic review. Child maltreatment predicts a significant risk factor for depression. The relationship between child maltreatment and depression has been shown to vary as a function of genetic factors. There have been very few systematic reviews conducted to date to synthesize what DNA methylations and/ or genetic variations interact with childhood maltreatment in the course of depression. This systematic review aimed to provide an overview of DNA methylation modifications with/without genetic variations associated with childhood maltreatment in depression. Computerized and manual search on six databases (EMBASE, HealthStar, PsychoInfo, Medline, PubMed and Cochrane Library) and grey literature up to June 30th 2018 were conducted. Studies were critically evaluated for their eligibility and study quality. The initial search resulted in 196 articles. Five articles met the eligibility criteria being included in this review. All the selected studies were from the United States and published within the last five years. Changes in ID3, TPPP, GRIN1, and OXTR DNA methylation sites were found to be involved in the childhood maltreatment-depression relationship. The number of eligible articles included in this review was small. Selected articles had small sample sizes. A high degree of heterogeneity was found. It is difficult to conclude what the roles of DNA methylation modifications are in the relationship between maltreatment and depression. Population stratification has not been extensively studied so far and should be considered in the further research. This review synthesizes an overview of the interaction between childhood maltreatment, DNA methylation modifications and genetic variations in depression. Findings of this review highlight an urgent need for genetic and epigenetic research in the area of childhood maltreatment and depression. Future etiological explorations should target on the above identified sites."	"[Chronic phosphoproteomic in temporal lobe epilepsy mouse models induced by kainic acid]. To investigate functions of proteins and signaling pathways involved in epileptogenesis during the chronic stage of temporal lobe epilepsy in mouse models. Kainic acid-induced temporal lobe epilepsy models were conducted, when reaching stage 4 using racine scale, the mice of experimental group were supposed to be successfully established. Pentobarbital sodium was injected to stop epileptic seizure in case of death. Twenty-eight days after the kainic acid injection, when the experimental group generally turned into chronic spontaneous seizures, mice hippocampal tissues were extracted from the control and the experimental groups respectively for phosphoproteomic. Enriched phosphorylated proteins were detected using mass spectrometry, only the proteins whose density was greater than 10<sup>6</sup> were analyzed by matching the Gene Ontology (GO) database, Kyoto Encyclopedia of Genes and Genomes (KEGG) database and STRING database to detect proteins involved in epileptogenesis in protein functions, signaling pathways and protein-protein interaction respectively. After that, literatures were reviewed about the key proteins. (1) Total of 12 697 phosphorylation sites of enriched proteins were detected by mass spectrometry, and there were 159 sites whose phosphorylation levels were significantly different from the control (P&lt;0.001). (2) GO database showed that 35.7% of the 159 sites were about &quot;catalytic activity&quot;, 39.5% were about &quot;binding&quot; and 20.8% were about &quot;cell communication&quot;, and the 159 proteins also participated in many biological processes, such as &quot;primary metabolic process&quot; &quot;response to stimulus&quot; &quot;developmental process&quot; &quot;localization&quot; and &quot;phosphate-containing compound metabolic process&quot;. (3) KEGG database showed that the 159 protein sites mainly involved in 10 signaling pathways: glutamatergic synapse, Ras signaling pathway, African trypanosomiasis, Cocaine addiction, Circadian entrainment, Amyotrophic lateral sclerosis (ALS), Long-term potentiation, Endocytosis, Gap junction, Nicotine addiction. (4) STRING database showed that the protein-protein interaction network formed by the 159 proteins was focused on Grin1/Dlg3, Arhgef 2/Arhgap33/Tiam1 and Sptnb1/3/4/Add3/Ank2 protein group respectively. (5) Phosphorylation levels of Grin1, Arhgef 2, Arhgap33, Tiam1, Sptbn1/2/4 and Ank2 in experimental group were significantly higher than in the control (P&lt;0.001). Phosphoproteomic illustrated integral distribution of phosphorylated proteins at the chronic stage of temporal lobe epilepsy in the mouse model. Literatures showed that most key proteins were closely related to epileptogenesis, suggesting that some proteins or signaling pathways may play a role in epileptogenesis, such as dopamine and Kir3.1."	"Comparative analyses of the neurobehavioral, molecular, and enzymatic effects of organophosphates on embryo-larval zebrafish (Danio rerio). Organophosphates insecticides (OPs) are common surface water contaminants in both urban and agricultural landscapes. Neurobehavioral effects on larval fish are known to occur at concentrations higher than those reported in the environment. The aim of this study was to perform a comparative analysis of neurobehavioral, molecular, and biochemical responses of four OPs (diazinon, dichlorvos, malathion, methyl-parathion) via the following endpoint measurements: distance traveled, velocity, gene expression (AChE, c-Fos, LINGO-1B, GRIN-1B), enzymatic acetylcholinesterase (AChE) activity, and carboxylesterase (CES) activity. OP exposures (5 hpf - 120 dpf) on embryo-larval zebrafish (Danio rerio) were assessed using a larval zebrafish behavior assay at concentrations: 0.01, 0.1, 10, and 100 μg/L. Individual OPs had varying degrees of neurotoxicity. Significant hypoactivity was observed in the 100 μg/L treatments for diazinon and malathion (p &lt; 0.05) as compared to the controls. Diazinon-exposed larvae exhibited a 26% locomotor decrease, and hypoactivity was observed in malathion-exposed larvae at a reduction of 22% and 29% for distance traveled and velocity, respectively. Gene regulation and enzymatic activity changes were measured for both 0.1 and 100 μg/L exposures across OP treatments. Increased CES activity was observed for the 0.1 μg/L treatments of diazinon and methyl-parathion as well as the 100 μg/L treatment of dichlorvos; meanwhile, decreased CES activity was observed for 100 μg/L treatments of diazinon and malathion. Relative enzymatic activity of AChE was inhibited as compared to the control for the 0.1 μg/L diazinon. No other treatment group exhibited a significant effect on biochemical AChE activity; however, AChE upregulation was observed in the 0.1 μg/L exposure for diazinon, dichlorvos, and malathion. Methyl-parathion was observed to downregulate c-Fos at 0.1 μg/L exposure. Malathion upregulated LINGO-1B at 100 μg/L, a gene associated with neuronal regeneration; meanwhile, downregulation of LINGO-1B was observed for 0.1 μg/L exposure of methyl-parathion. Additional downregulation was observed for GRIN-1B in the 100 μg/L diazinon, 100 μg/L dichlorvos, and 0.1 μg/L methyl-parathion treatments. Exposure of ZF embryos to independent concentrations of 100 μg/L concentrations of diazinon and malathion resulted in hypoactivity and decreased CES activity at 5 dfp. No changes in swimming behavior were observed for either the 0.1 μg/L or 100 μg/L dichlorvos or methyl-parathion treatments. Observations from this study indicate that AChE inhibition may not be the most sensitive biomarker of OP pesticide exposure in zebrafish. Rather, the enzyme CES demonstrated higher sensitivity as a biomarker of OP toxicity."	"Long-term treadmill exercise upregulated hippocampal learning-related genes without improving cognitive behaviour in socially isolated rats. Some environment enrichments such as exercise has been reported to improve the diminished cognitive functions and related gene expression. Therefore, we aimed to investigate the effects of prolonged treadmill exercise on long-term learning and hippocampal gene expression, which involves learning and plasticity. Male Wistar rats (n = 32) randomly assigned into four groups: control (C), social isolation (SI), exercised (E), social isolation + exercise (SE) during postnatal days (PNDs) 21-34. Social isolation protocol was applied during 14 days by placing the rat alone in a cage. Rats were exercised daily, 5 days per week, for overall 4 weeks. Finally, learning performance was evaluated by the novel object recognition test. At the end of learning test, the rats were decapitated to isolate hippocampus tissues for learning related gene expression such as N-methyl-d-aspartate receptor (NMDAR) subunit genes (Grin1, Grin2a, Grin2b) and cyclin dependent kinase 5 (Cdk5), Cdk5 regulatory subunit p35 (Cdk5r), activity-regulated, cytoskeletal-associated protein (Arc), the immediate early gene (c-Fos, a marker of neuronal activation), doublecortin (DCX), achaetescute homolog 1 (ASCL1), brain-derived neurotrophic factor (BDNF) by real-time polymerase chain reaction (RT-PCR). Grin1, NMDAR subunit gene expression was increased significantly in E group compared to other groups. Grin2b, NMDAR subunit gene expression was increased in E group compared to the SI group. Cdk5 level increased in E group compared to the SE group. The ASCL1 gene expression increased in E group compare to the SE group. The DCX gene expression increasing in C group compared to SI and SE groups. Taken together these findings may point out that long-term social isolation down-regulated learning-related genes. However, treadmill exercise together with social isolation did not restore this down-regulation although treadmill exercise increased learning-related genes without improving cognitive behaviour."	"GRIN2B promoter methylation deficits in early-onset schizophrenia and its association with cognitive function. We investigated GRIN1 and GRIN2B promoter methylation in first-episode schizophrenia patients compared with siblings and controls, testing for correlations between DNA methylation, cognitive performance and clinical variables. Blood-derived DNA from all groups underwent bisulfite conversion and pyrosequencing to determine methylation at CpG sites within the GRIN1 and GRIN2B promoters and results were compared with the measure of global methylation LINE-1. We found hypomethylation among all CpGs analyzed within GRIN2B promoter in patients and greater LINE-1 methylation in patients and siblings. CpG4 was correlated to a measure of intellectual function. Changes in GRIN2B promoter methylation may represent an environmental influence contributing to glutamatergic dysfunction in psychosis and relate to lower cognitive performance in subjects with first-episode schizophrenia."	"Gene mutational analysis in a cohort of Chinese children with unexplained epilepsy: Identification of a new KCND3 phenotype and novel genes causing Dravet syndrome. This study aimed to investigate the genetic etiology of epilepsy in a cohort of Chinese children. Targeted next-generation sequencing (NGS) was performed for 120 patients with unexplained epilepsy, including 71 patients with early-onset epileptic encephalopathies, and 16 patients with Dravet syndrome (including three patients with a Dravet-like phenotype) but without SCN1A pathogenic variants. Pathogenic variants of 14 genes were discovered in 22 patients (18%). A de novo KCND3 pathogenic variant (c.1174G &gt; A, p.Val392Ile) was identified in a boy with refractory epilepsy, psychomotor regression, attention deficit, and visual decline. Pathogenic variants in other coding genes were excluded via whole exome sequencing. This KCND3 variant was previously confirmed to be pathogenic by Giudicessi, et al. However, the clinical profile was different: sudden death at 20 years old without any medical history of neurological disorders, nor with any diseases typically caused by KCND3 pathogenic variants such as Brugada syndrome, spinocerebellar ataxia type 19/22 or ataxia accompanied by epilepsy. This indicates that we have identified a new KCND3 phenotype. In addition, we also uncovered a GRIN1 pathogenic variant and a novel HCN1 pathogenic variant in the Dravet cohort. Our study highlights the significant utility of NGS panels in the genetic diagnosis of pediatric epilepsy. Our findings indicate that KCND3 pathogenic variants may be responsible for a wider phenotypic spectrum than previously thought, by including childhood epileptic encephalopathy. Furthermore, this study provides evidence that GRIN1 and HCN1 are candidate genes for Dravet and Dravet-like phenotypes."	"Polymicrogyria and GRIN1 mutations: altered connections, altered excitability. NA"	"Association between polymorphisms in the GRIN1 gene 5' regulatory region and schizophrenia in a northern Han Chinese population and haplotype effects on protein expression in vitro. Schizophrenia is a severe neurodevelopmental disorder with a complex genetic and environmental etiology. Abnormal glutamate ionotropic N-methyl-D-aspartate receptor (NMDA) type subunit 1 (NR1) may be a potential cause of schizophrenia. We conducted a case-control study to investigate the association between the GRIN1 gene, which encodes the NR1 subunit, and the risk of schizophrenia in a northern Chinese Han population using Sanger DNA sequencing. The dual luciferase reporter assay was used to detect the influence of two different haplotypes on GRIN1 gene expression. Seven SNPs (single nucleotide polymorphisms), including rs112421622 (- 2019 T/C), rs138961287 (- 1962--1961insT), rs117783907 (-1945G/T), rs181682830 (-1934G/A), rs7032504 (-1742C/T), rs144123109 (-1140G/A), and rs11146020 (-855G/C) were detected in the study population. Rs117783907 (-1945G/T) was associated with the occurrence of schizophrenia as a protective factor. The genotype frequencies of rs138961287 (- 1962--1961insT) and rs11146020 (-855G/C) were statistically different between cases and controls (p &lt; 0.0083). The other four variations were not shown to be associated with the disease. Two haplotypes were composed of the seven SNPs, and distribution of T-del-G-G-C-G-G was significantly different between the case and control groups. However, the dual luciferase reporter assay showed that neither of the haplotypes affected luciferase expression in HEK-293 and SK-N-SH cell lines. The GRIN1 gene may be related to the occurrence of schizophrenia. Additional research will be needed to fully ascertain the role of GRIN1 in the etiology of schizophrenia."	"Gene-Environment Interaction in a Conditional NMDAR-Knockout Model of Schizophrenia. Interactions between genetic and environmental risk factors take center stage in the pathology of schizophrenia. We assessed if the stressor of reduced environmental enrichment applied in adulthood provokes deficits in the positive, negative or cognitive symptom domains of schizophrenia in a mouse line modeling NMDA-receptor (NMDAR) hypofunction in forebrain inhibitory interneurons (Grin1<sup>ΔPpp1r2</sup> ). We find that Grin1<sup>ΔPpp1r2</sup> mice, when group-housed in highly enriched cages, appear largely normal across a wide range of schizophrenia-related behavioral tests. However, they display various short-term memory deficits when exposed to minimal enrichment. This demonstrates that the interaction between risk genes causing NMDA-receptor hypofunction and environmental risk factors may negatively impact cognition later in life."	"In-silico investigation of coding variants potentially affecting the functioning of the glutamatergic N-methyl-D-aspartate receptor in schizophrenia. Several lines of evidence support the hypothesis that impaired functioning of the glutamatergic N-methyl-D-aspartate receptor (NMDAR) might be involved in the etiology of schizophrenia. NMDAR is activated by phosphorylation by Fyn, and there is also some evidence to suggest that abnormalities in Fyn functionality could also be involved in susceptibility to schizophrenia. In a recent weighted burden analysis of exome-sequenced schizophrenia cases and controls, we noted modest statistical evidence for an enrichment of rare, functional variants in FYN, GRIN1, and GRIN2B in schizophrenia cases. To test the plausibility of the hypothesis that schizophrenia susceptibility might be associated with genetic variants predicted to cause impaired functioning of NMDAR, either directly or indirectly through impairment of the kinases that phosphorylate it. In an exome-sequenced sample of 4225 schizophrenia cases and 5834 controls, rare variants occurring in genes for the NMDAR subunits and for the kinases acting on it were annotated. The counts of disruptive and damaging variants were compared between cases and controls, and the distribution of amino acids affected by damaging variants was visualised in ProteinPaint and the RCSB Protein Data Bank. Special attention was paid to tyrosine residues subject to phosphorylation. There was no suggestion that abnormalities of the serine-threonine kinases or of Src were associated with schizophrenia. Overall, three cases and no controls had a disruptive variant in GRIN2A and two cases and no controls had a disruptive variant in FYN. Moreover, 14 cases and three controls had damaging variants in FYN, and all the variants in controls affected amino acid residues in the N-terminal region outside of any known functional domains. By contrast, 10 variants in cases affected amino acids in functional domains, and in the 3D structure of Fyn, two of the amino acid substitutions, A376T and Q517E, were adjacent to each other. A total of eight cases and one control had damaging variants in GRIN1, but there was no obvious pattern with respect to particular functional domains being affected in this or other genes. A single case had a variant in GRIN2A affecting a well-supported phosphorylation site, Y943C, and three cases had a variant in FYN which produces an amino acid change, T216S, which lies two residues away from two adjacent well-supported phosphorylation sites. Aside from this, there was no suggestion that tyrosine phosphorylation sites in Fyn or NMDAR were affected. The numbers of variants involved are too small for firm conclusions to be drawn. The results are consistent with the hypothesis that ∼0.5% of patients with schizophrenia have disruptive or damaging genetic variants, which could plausibly impair functioning of NMDAR directly or indirectly through impairing Fyn function."	"Rapid onset of altered mental status with progressive autonomic instability and hypoventilation in a 2-year-old male. Nazari R, Carmona Jr CA. Rapid onset of altered mental status with progressive autonomic instability and hypoventilation in a 2-year-old male. Turk J Pediatr 2019; 61: 949-952. Anti N-methyl-D-aspartate receptor (NMDAR) encephalitis should be suspected in children who report with acute behavioral change, seizures, and non-specific movement disorders. While historically associated with adolescent females with ovarian teratoma, anti-NMDAR encephalitis has now been described in the pediatric population of both sexes. These patients display the neurological and psychiatric manifestations similar to females but lack a tumor. We report a two-year-old previously healthy young male who presented with alteration in speech, seizures, and extra pyramidal movement disorders. He was diagnosed with anti-NMDAR encephalitis with positive cerebrospinal fluid (CSF) serology for anti-NMDAR antibodies. In this case report, we describe the clinical presentation, course of illness, investigation, and management of our patient. We conclude by emphasizing three observations and insights from our case compared to what is mentioned in the literature."	"Synaptic Reorganization Response in the Cochlear Nucleus Following Intense Noise Exposure. The cochlear nucleus, located in the brainstem, receives its afferent auditory input exclusively from the auditory nerve fibers of the ipsilateral cochlea. Noise-induced neurodegenerative changes occurring in the auditory nerve stimulate a cascade of neuroplastic changes in the cochlear nucleus resulting in major changes in synaptic structure and function. To identify some of the key molecular mechanisms mediating this synaptic reorganization, we unilaterally exposed rats to a high-intensity noise that caused significant hearing loss and then measured the resulting changes in a synaptic plasticity gene array targeting neurogenesis and synaptic reorganization. We compared the gene expression patterns in the dorsal cochlear nucleus (DCN) and ventral cochlear nucleus (VCN) on the noise-exposed side versus the unexposed side using a PCR gene array at 2 d (early) and 28 d (late) post-exposure. We discovered a number of differentially expressed genes, particularly those related to synaptogenesis and regeneration. Significant gene expression changes occurred more frequently in the VCN than the DCN and more changes were seen at 28 d versus 2 d post-exposure. We confirmed the PCR findings by in situ hybridization for Brain-derived neurotrophic factor (Bdnf), Homer-1, as well as the glutamate NMDA receptor Grin1, all involved in neurogenesis and plasticity. These results suggest that Bdnf, Homer-1 and Grin1 play important roles in synaptic remodeling and homeostasis in the cochlear nucleus following severe noise-induced afferent degeneration."	"Structural Basis of the Proton Sensitivity of Human GluN1-GluN2A NMDA Receptors. N-methyl-D-aspartate (NMDA) receptors are critical for synaptic development and plasticity. While glutamate is the primary agonist, protons can modulate NMDA receptor activity at synapses during vesicle exocytosis by mechanisms that are unknown. We used cryo-electron microscopy to solve the structures of the human GluN1-GluN2A NMDA receptor at pH 7.8 and pH 6.3. Our structures demonstrate that the proton sensor predominantly resides in the N-terminal domain (NTD) of the GluN2A subunit and reveal the allosteric coupling mechanism between the proton sensor and the channel gate. Under high-pH conditions, the GluN2A-NTD adopts an &quot;open-and-twisted&quot; conformation. However, upon protonation at the lower pH, the GluN2A-NTD transits from an open- to closed-cleft conformation, causing rearrangements between the tetrameric NTDs and agonist-binding domains. The conformational mobility observed in our structures (presumably from protonation) is supported by molecular dynamics simulation. Our findings reveal the structural mechanisms by which protons allosterically inhibit human GluN1-GluN2A receptor activity."	"Intradomain Interactions in an NMDA Receptor Fragment Mediate N-Glycan Processing and Conformational Sampling. The structural and functional roles of highly conserved asparagine-linked (N)-glycans on the extracellular ligand-binding domain (LBD) of the N-methyl-D-aspartate receptors are poorly understood. We applied solution- and computation-based methods that identified N-glycan-mediated intradomain and interglycan interactions. Nuclear magnetic resonance (NMR) spectra of the GluN1 LBD showed clear signals corresponding to each of the three N-glycans and indicated the reducing end of glycans at N440 and N771 potentially contacted nearby amino acids. Molecular dynamics simulations identified contacts between nearby amino acids and the N440- and N771-glycans that were consistent with the NMR spectra. The distal portions of the N771-glycan also contacted the core residues of the nearby N471-glycan. This result was consistent with mass spectrometry data indicating the limited N471-glycan core fucosylation and reduced branch processing of the N771-glycan could be explained by interglycan contacts. We discuss a potential role for the GluN1 LBD N-glycans in interdomain contacts formed in NMDA receptors."	"The protective mechanism underlying phenylethanoid glycosides (PHG) actions on synaptic plasticity in rat Alzheimer's disease model induced by beta amyloid 1-42. Phenylethanoid glycosides (PHG), derived from Herba cistanche, were found to exert protective effects on cognitive dysfunctions by improving synaptic plasticity in Alzheimer's disease (AD) rat model. However, the mechanisms underlying these effects of PHG on synaptic plasticity remain to be determined. Thus the aim of this study was to examine the influence of PHG on synaptic plasticity in male AD rat model induced by bilateral central nervous system ventricle injections of beta amyloid 1-42 oligomers (Aβ1-42). The following parameters were measured: (1) number of intact pyramidal cells in hippocampal CA1 region by Nissl staining, (2) post synaptic density 95 (PSD-95), phosphorylated N-methyl-D-aspartate receptor-1(p-NMDAR1) and (3) phosphorylated Tau protein (p-Tau) by immunohistochemistry and western blot. In addition, the content of malondialdehyde (MDA) and activities of superoxide dismutase (SOD) and glutathione peroxidase (GSH-Px) were determined. Aβ1-42 lowered the number of intact pyramidal cells in hippocampal CA1 region. In contrast, treatment with PHG significantly elevated this cell number. Aβ1-42 significantly diminished protein expression levels of PSD-95 accompanied by elevated protein expression levels of p-NMDAR1 and p-Tau. PHG markedly increased protein expression levels of PSD-95, but significantly reduced protein expression levels of p-NMDAR1 and p-Tau. Further, Aβ1-42 markedly increased MDA content concomitantly with reduced activities of SOD and GSH-Px. PHG significantly decreased MDA content accompanied by elevated activities of SOD and GSH-Px. Data suggest that the protective effects of PHG on synaptic plasticity may involve inhibition of cytotoxicity-mediated by Aβ-1-42 administration and reduction of oxidant stress."	"Interneuronal NMDA receptors regulate long-term depression and motor learning in the cerebellum. NMDA receptors (NMDARs) are required for long-term depression (LTD) at parallel fibre-Purkinje cell synapses, but their cellular localization and physiological functions in vivo are unclear. NMDARs in molecular-layer interneurons (MLIs), but not granule cells or Purkinje cells, are required for LTD, but not long-term potentiation induced by low-frequency stimulation of parallel fibres. Nitric oxide produced by NMDAR activation in MLIs probably mediates LTD induction. NMDARs in granule cells or Purkinje cells are dispensable for motor learning during adaptation of horizontal optokinetic responses. Long-term potentiation (LTP) and depression (LTD), which serve as cellular synaptic plasticity models for learning and memory, are crucially regulated by N-methyl-d-aspartate receptors (NMDARs) in various brain regions. In the cerebellum, LTP and LTD at parallel fibre (PF)-Purkinje cell (PC) synapses are thought to mediate certain forms of motor learning. However, while NMDARs are essential for LTD in vitro, their cellular localization remains controversial. In addition, whether and how NMDARs mediate motor learning in vivo remains unclear. Here, we examined the contribution of NMDARs expressed in granule cells (GCs), PCs and molecular-layer interneurons (MLIs) to LTD/LTP and motor learning by generating GC-, PC- and MLI/PC-specific knockouts of Grin1, a gene encoding an obligatory GluN1 subunit of NMDARs. While robust LTD and LTP were induced at PF-PC synapses in GC- and PC-specific Grin1 (GC-Grin1 and PC-Grin1, respectively) conditional knockout (cKO) mice, only LTD was impaired in MLI/PC-specific Grin1 (MLI/PC-Grin1) cKO mice. Application of diethylamine nitric oxide (NO) sodium, a potent NO donor, to the cerebellar slices restored LTD in MLI/PC-Grin1 cKO mice, suggesting that NO is probably downstream to NMDARs. Furthermore, the adaptation of horizontal optokinetic responses (hOKR), a cerebellar motor learning task, was normally observed in GC-Grin1 cKO and PC-Grin1 cKO mice, but not in MLI/PC-Grin1 cKO mice. These results indicate that it is the NMDARs expressed in MLIs, but not in PCs or GCs, that play important roles in LTD in vitro and motor learning in vivo."	"Electroclinical history of a five-year-old girl with GRIN1-related early-onset epileptic encephalopathy: a video-case study. De novo mutations in the GRIN1 gene have been recently reported as the molecular cause of a broad-spectrum early-onset neurological phenotype. Here, we describe a five-year-old girl with an early-onset epileptic encephalopathy associated with an infantile hyperkinetic movement disorder and oculomotor abnormalities. Whole-exome sequencing identified a novel p.Met641Leu de novo variant in the GRIN1 gene as the cause of the phenotype. In silico analysis suggested that the p.Met641Leu variant would alter the gating property of the ion channel, with the involved methionine residue facing towards the ion pore. Long-term systematic video-EEG allowed us to report on the electroclinical history and, specifically, on the semiology of the hyperkinetic movement disorder and oculomotor abnormalities resembling oculogyric crises in our patient. Our findings and a review of the recent literature reinforce the notion of GRIN1-encephalopathy as a recognizable neurological phenotype that should be suspected in early-onset epilepsy associated with hyperkinetic movement disorders. [Published with video sequence on www.epilepticdisorders.com]."	"Parabrachial CGRP Neurons Establish and Sustain Aversive Taste Memories. Food aversions develop when the taste of a novel food is associated with sickness, which often occurs after food poisoning or chemotherapy treatment. We identified calcitonin-gene-related peptide (CGRP) neurons in the parabrachial nucleus (PBN) as sufficient and necessary for establishing a conditioned taste aversion (CTA). Photoactivating projections from CGRP<sup>PBN</sup> neurons to either the central nucleus of the amygdala or the bed nucleus of the stria terminalis can also induce robust CTA. CGRP<sup>PBN</sup> neurons undergo plasticity following CTA, and inactivation of either Arc or Grin1 (genes involved in memory consolidation) prevents establishment of a strong CTA. Calcium imaging reveals that the novel food re-activates CGRP<sup>PBN</sup> neurons after conditioning. Inhibition of these neurons or inactivation of the Grin1 gene after conditioning attenuates CTA expression. Our results indicate that CGRP<sup>PBN</sup> neurons not only play a key role for learning food aversions but also contribute to the maintenance and expression of those memories."	"A conserved glycine harboring disease-associated mutations permits NMDA receptor slow deactivation and high Ca<sup>2+</sup> permeability. A variety of de novo and inherited missense mutations associated with neurological disorders are found in the NMDA receptor M4 transmembrane helices, which are peripheral to the pore domain in eukaryotic ionotropic glutamate receptors. Subsets of these mutations affect receptor gating with dramatic effects, including in one instance halting it, occurring at a conserved glycine near the extracellular end of M4. Functional experiments and molecular dynamic simulations of constructs with and without substitutions at this glycine indicate that it acts as a hinge, permitting the intracellular portion of the ion channel to laterally expand. This expansion stabilizes long-lived open states leading to slow deactivation and high Ca<sup>2+</sup> permeability. Our studies provide a functional and structural framework for the effect of missense mutations on NMDARs at central synapses and highlight how the M4 segment may represent a pathway for intracellular modulation of NMDA receptor function."	"Glutamate Activity Regulates and Dendritic Development of J-RGCs. Retinal ganglion cells (RGCs) have a wide variety of dendritic architectures, which are critical for the formation of their function-specific synaptic circuitry. The developmental regulation of the dendrites of RGCs is thought to be subtype dependent. The purpose of this study is to characterize the dendritic development of a genetically identified RGC subtype, JamB RGCs (J-RGCs), and the roles of glutamate receptor activity on the dendritic development of these cells. We show that the dendrites of J-RGCs are strictly ramified in the outer portion of the inner plexiform layer (IPL) of the retina at the age of postnatal day 8 (P8), mimicking the ramification pattern of adults. However, several other important features of dendrites undergo substantial developmental refinement after P8. From P8 to P13, the dendritic development of J-RGCs is characterized by a dramatic increase of dendritic length and the size of the dendritic field. After eye opening, the dendritic development of J-RGCs is characterized by a tremendous decrease of the number of dendritic protrusions (spine-like structures) and a consolidation of the size of the dendritic field. To determine whether the dendritic development of J-RGCs is regulated by glutamatergic activity, we conditionally knocked out the expression of an obligatory subunit of N-methyl-D-aspartate receptors (NMDARs), NR1 (Grin1), in J-RGCs. We found that J-RGCs with the NMDAR mutation have decreased dendrite outgrowth and dendritic field expansion but increased number of dendritic protrusions before eye opening. To determine if visual experience regulates the development of J-RGC dendrites, we raised the mice in complete darkness after birth. Light deprivation prevented the decrease in the number of dendritic protrusions and the consolidation of the dendritic field of wild type (WT) mice after eye opening. However, light deprivation has no additional effect on the number of dendritic protrusions or the size of the dendritic field of J-RGCs with NMDAR mutation. Together, these results revealed the roles of light stimulation and NMDAR activity on the dendritic development of J-RGCs."	"Increased cocaine self-administration in rats lacking the serotonin transporter: a role for glutamatergic signaling in the habenula. Serotonin (5-HT) and the habenula (Hb) contribute to motivational and emotional states such as depression and drug abuse. The dorsal raphe nucleus, where 5-HT neurons originate, and the Hb are anatomically and reciprocally interconnected. Evidence exists that 5-HT influences Hb glutamatergic transmission. Using serotonin transporter knockout (SERT<sup>-/-</sup> ) rats, which show depression-like behavior and increased cocaine intake, we investigated the effect of SERT reduction on expression of genes involved in glutamate neurotransmission under both baseline conditions as well as after short-access or long-access cocaine (ShA and LgA, respectively) intake. In cocaine-naïve animals, SERT removal led to reduced baseline Hb mRNA levels of critical determinants of glutamate transmission, such as SLC1A2, the main glutamate transporter and N-methyl-D-aspartate (Grin1, Grin2A and Grin2B) as well as α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (Gria1 and Gria2) receptor subunits, with no changes in the scaffolding protein Dlg4. In response to ShA and LgA cocaine intake, SLC1A2 and Grin1 mRNA levels decreased in SERT<sup>+/+</sup> rats to levels equal of those of SERT<sup>-/-</sup> rats. Our data reveal that increased extracellular levels of 5-HT modulate glutamate neurotransmission in the Hb, serving as critical neurobiological substrate for vulnerability to cocaine addiction."	"Role of copper in depression. Relationship with ketamine treatment. Depression is one of the most common psychiatric issues with a proportion of adults with major depressive disorder who fail to achieve remission with index pharmacological treatment. There are unmet needs in ADT focus on non-monoaminergic agents. Accumulating evidence suggests that the N-Methyl-d-aspartate receptor (NMDAR) plays an important role in the neurobiology and treatment of major depressive disorder. The role of copper ions in pathogenesis and treatment of depression is not fully clarified, however interaction between copper and NMDAR is of prime importance. Release of copper ions inhibits NMDAR and α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptor function thus protects neurons from glutamatergic excitotoxity. Abnormalities in glutamatergic transmission are the key of glutamate hypothesis of depression. Some authors revealed that NMDARs are also regulated by cellular prion protein (PrP<sup>C</sup>) and indicated that interactions of copper, glycine and NMDARs subunits are vital for the regulation of the receptor. As NMDAR antagonist ketamine is known to produce rapid antidepressive effect, observation of copper serum levels in patients treated with ketamine may provide important information about connections between NMDAR antagonistic agents and trace elements antagonistic to that receptor. It is necessary to carry out further studies related to copper and ketamine in depression treatment."	"The effects of single-dose injections of modafinil and methamphetamine on epigenetic and functional markers in the mouse medial prefrontal cortex: potential role of dopamine receptors. METH use causes neuroadaptations that negatively impact the prefrontal cortex (PFC) leading to addiction and associated cognitive decline in animals and humans. In contrast, modafinil enhances cognition by increasing PFC function. Accumulated evidence indicates that psychostimulant drugs, including modafinil and METH, regulate gene expression via epigenetic modifications. In this study, we measured the effects of single-dose injections of modafinil and METH on the protein levels of acetylated histone H3 (H3ac) and H4ac, deacetylases HDAC1 and HDAC2, and of the NMDA subunit GluN1 in the medial PFC (mPFC) of mice euthanized 1 h after drug administration. To test if dopamine (DA) receptors (DRs) participate in the biochemical effects of the two drugs, we injected the D1Rs antagonist, SCH23390, or the D2Rs antagonist, raclopride, 30 min before administration of METH and modafinil. We evaluated each drug effect on glutamate synaptic transmission in D1R-expressing layer V pyramidal neurons. We also measured the enrichment of H3ac and H4ac at the promoters of several genes including DA, NE, orexin, histamine, and glutamate receptors, and their mRNA expression, since they are responsive to chronic modafinil and METH treatment. Acute modafinil and METH injections caused similar effects on total histone acetylation, increasing H3ac and decreasing H4ac, and they also increased HDAC1, HDAC2 and GluN1 protein levels in the mouse mPFC. In addition, the effects of the drugs were prevented by pre-treatment with D1Rs and D2Rs antagonists. Specifically, the changes in H4ac, HDAC2, and GluN1 were responsive to SCH23390, whereas those of H3ac and GluN1 were responsive to raclopride. Whole-cell patch clamp in transgenic BAC-Drd1a-tdTomato mice showed that METH, but not modafinil, induced paired-pulse facilitation of EPSCs, suggesting reduced presynaptic probability of glutamate release onto layer V pyramidal neurons. Analysis of histone 3/4 enrichment at specific promoters revealed: i) distinct effects of the drugs on histone 3 acetylation, with modafinil increasing H3ac at Drd1 and Adra1b promoters, but METH increasing H3ac at Adra1a; ii) distinct effects on histone 4 acetylation enrichment, with modafinil increasing H4ac at the Drd2 promoter and decreasing it at Hrh1, but METH increasing H4ac at Drd1; iii) comparable effects of both psychostimulants, increasing H3ac at Drd2, Hcrtr1, and Hrh1 promoters, decreasing H3ac at Hrh3, increasing H4ac at Hcrtr1, and decreasing H4ac at Hcrtr2, Hrh3, and Grin1 promoters. Interestingly, only METH altered mRNA levels of genes with altered histone acetylation status, inducing increased expression of Drd1a, Adra1a, Hcrtr1, and Hrh1, and decreasing Grin1. Our study suggests that although acute METH and modafinil can both increase DA neurotransmission in the mPFC, there are similar and contrasting epigenetic and transcriptional consequences that may account for their divergent clinical effects."	"Carbamoylated erythropoietin induces a neurotrophic gene profile in neuronal cells. Erythropoietin (EPO), a cytokine molecule, is best-known for its role in erythropoiesis. Preclinical studies have demonstrated that EPO has robust neuroprotective effects that appear to be independent of erythropoiesis. It is also being clinically tested for the treatment of neuropsychiatric illnesses due to its behavioral actions. A major limitation of EPO is that long-term administration results in excessive red blood cell production and increased blood viscosity. A chemical modification of EPO, carbamoylated erythropoietin (CEPO), reproduces the behavioral response of EPO in animal models but does not stimulate erythropoiesis. The molecular mechanisms involved in the behavioral effects of CEPO are not known. To obtain molecular insight we examined CEPO induced gene expression in neuronal cells. PC-12 cells were treated with CEPO followed by genome-wide microarray analysis. We investigated the functional significance of the gene profile by unbiased bioinformatics analysis. The Ingenuity pathway analysis (IPA) software was employed. The results revealed activation of functions such as neuronal number and long-term potentiation. Regulated signaling cascades included categories such as neurotrophin, CREB, NGF and synaptic long-term potentiation signaling. Some of the regulated genes from these pathways are CAMKII, EGR1, FOS, GRIN1, KIF1B, NOTCH1. We also comparatively examined EPO and CEPO-induced gene expression for a subset of genes in the rat dentate gyrus. The CEPO gene profile shows the induction of genes and signaling cascades that have roles in neurogenesis and memory formation, mechanisms that can produce antidepressant and cognitive function enhancing activity."	"NR1 and NR3B Composed Intranuclear N-methyl-d-aspartate Receptor Complexes in Human Melanoma Cells. Heterotetrameric N-methyl-d-aspartate type glutamate receptors (NMDAR) are cationic channels primarily permeable for Ca<sup>2+</sup>. NR1 and NR3 subunits bind glycine, while NR2 subunits bind glutamate for full activation. As NR1 may contain a nuclear localization signal (NLS) that is recognized by importin-α, our aim was to investigate if NMDARs are expressed in the nuclei of melanocytes and melanoma cells. A detailed NMDAR subunit expression pattern was examined by RT-PCRs (reverse transcription followed by polymerase chain reaction), fractionated western blots and immunocytochemistry in human epidermal melanocytes and in human melanoma cell lines A2058, HT199, HT168M1, MEL35/0 and WM35. All kind of NMDAR subunits are expressed as mRNAs in melanocytes, as well as in melanoma cells, while NR2B protein remained undetectable in any cell type. Western blots proved the exclusive presence of NR1 and NR3B in nuclear fractions and immunocytochemistry confirmed NR1-NR3B colocalization inside the nuclei of all melanoma cells. The same phenomenon was not observed in melanocytes. Moreover, protein database analysis revealed a putative NLS in NR3B subunit. Our results support that unusual, NR1-NR3B composed NMDAR complexes are present in the nuclei of melanoma cells. This may indicate a new malignancy-related histopathological feature of melanoma cells and raises the possibility of a glycine-driven, NMDA-related nuclear Ca<sup>2+</sup>-signalling in these cells."	"Disruption of GRIN2B Impairs Differentiation in Human Neurons. Heterozygous loss-of-function mutations in GRIN2B, a subunit of the NMDA receptor, cause intellectual disability and language impairment. We developed clonal models of GRIN2B deletion and loss-of-function mutations in a region coding for the glutamate binding domain in human cells and generated neurons from a patient harboring a missense mutation in the same domain. Transcriptome analysis revealed extensive increases in genes associated with cell proliferation and decreases in genes associated with neuron differentiation, a result supported by extensive protein analyses. Using electrophysiology and calcium imaging, we demonstrate that NMDA receptors are present on neural progenitor cells and that human mutations in GRIN2B can impair calcium influx and membrane depolarization even in a presumed undifferentiated cell state, highlighting an important role for non-synaptic NMDA receptors. It may be this function, in part, which underlies the neurological disease observed in patients with GRIN2B mutations."	"NMDA Receptor Activation Underlies the Loss of Spinal Dorsal Horn Neurons and the Transition to Persistent Pain after Peripheral Nerve Injury. Peripheral nerve lesions provoke apoptosis in the dorsal horn of the spinal cord. The cause of cell death, the involvement of neurons, and the relevance for the processing of somatosensory information are controversial. Here, we demonstrate in a mouse model of sciatic nerve injury that glutamate-induced neurodegeneration and loss of γ-aminobutyric acid (GABA)ergic interneurons in the superficial dorsal horn promote the transition from acute to chronic neuropathic pain. Conditional deletion of Grin1, the essential subunit of N-methyl-d-aspartate-type glutamate receptors (NMDARs), protects dorsal horn neurons from excitotoxicity and preserves GABAergic inhibition. Mice deficient in functional NMDARs exhibit normal nociceptive responses and acute pain after nerve injury, but this initial increase in pain sensitivity is reversible. Eliminating NMDARs fully prevents persistent pain-like behavior. Reduced pain in mice lacking proapoptotic Bax confirmed the significance of neurodegeneration. We conclude that NMDAR-mediated neuron death contributes to the development of chronic neuropathic pain."	"NMDA receptor subunits change in the prefrontal cortex of pure-opioid and multi-drug abusers: a post-mortem study. Addiction is a chronic relapsing disorder and is one of the most important issues in the world. Changing the level of neurotransmitters and the activities of their receptors, play a major role in the pathophysiology of substance abuse disorders. It is well-established that N-methyl-D-aspartate receptors (NMDARs) play a significant role in the molecular basis of addiction. NMDAR has two obligatory GluN1 and two regionally localized GluN2 subunits. This study investigated changes in the protein level of GluN1, GluN2A, and GluN2B in the prefrontal cortex of drug abusers. The medial prefrontal cortex (mPFC), lateral prefrontal cortex (lPFC), and orbitofrontal cortex (OFC) were dissected from the brain of 101 drug addicts brains and were compared with the brains of non-addicts (N = 13). Western blotting technique was used to show the alteration in NMDAR subunits level. Data obtained using Western blotting technique showed a significant increase in the level of GluN1 and GluN2B, but not in GluN2A subunits in all the three regions (mPFC, lPFC, and OFC) of men whom suffered from addiction as compared to the appropriate controls. These findings showed a novel role for GluN1, GluN2B subunits, rather than the GluN2A subunit of NMDARs, in the pathophysiology of addiction and suggested their role in the drug-induced plasticity of NMDARs."	"Protective influences of N-acetylcysteine against alcohol abstinence-induced depression by regulating biochemical and GRIN2A, GRIN2B gene expression of NMDA receptor signaling pathway in rats. Evidences have indicated a high degree of comorbidity of alcoholism and depression. N-acetylcysteine (NAC) has shown its clinical efficiency in the treatment of several psychiatric disorders and is identified as a multi-target acting drug. The ability of NAC to prevent alcohol abstinence-induced depression-like effects and underlying mechanism(s) have not been adequately addressed. This study was aimed to investigate the beneficial effects of NAC in the alcohol abstinence-induced depression developed following long-term voluntary alcohol intake. For evaluation of the effects of NAC, Sprague-Dawley rats were enabled to voluntary drinking of 4.5%, 7.5% and 9% v/v alcohol for fifteen days. NAC (25, 50, and 100 mg/kg) and fluoxetine (5 mg/kg) were injected intraperitoneally for three consecutive days during the alcohol abstinence period on the days 16, 17, 18. The behavioral studies were conducted employing forced swim test (FST), and tail suspension test (TST) on day 18 to determine the effects of N-acetylcysteine and fluoxetine in the ethanol withdrawal induced-depression. Blood alcohol concentration, alcohol biomarkers like SGPT, SGOT, ALP, GGT, and MCV were estimated by using commercially available kits. Serotonin concentrations were measured in the plasma, hippocampus and pre-frontal cortex using the rat ELISA kit. The expression of GRIN1, GRIN2A, GRIN2B genes for the N-methyl d-aspartate receptors (NMDAR) subunits in the hippocampus and the prefrontal cortex were also examined by reverse-transcription quantitative polymerase chain reaction. The results revealed that alcohol abstinence group depicted increased immobility time in FST and TST. Further, NAC exerted significant protective effect at the doses 50 mg/kg and 100 mg/kg, but 25 mg/kg showed insignificant protection against alcohol abstinence-induced depression. The increased level of biochemical parameters following ethanol abstinence were also reversed by NAC at the dose of 100 mg/kg. The significant reversal effect of NAC on the serotonin level following alcohol abstinence was greater in the hippocampus as compared to the third-day alcohol withdrawal group. The increased expression levels of GRIN2A and GRIN2B following ethanol abstinence were reversed with a higher dose of NAC (100 mg/kg) treatment. In conclusion, the results of the study reveal that NAC has remarkable protective effects in the alcohol abstinence-induced depression by modulating alcohol markers, serotonin levels and GRIN2A, GRIN2B gene expression of NMDAR signaling pathway in rats."	"Weighted Burden Analysis of Exome-Sequenced Case-Control Sample Implicates Synaptic Genes in Schizophrenia Aetiology. A previous study of exome-sequenced schizophrenia cases and controls reported an excess of singleton, gene-disruptive variants among cases, concentrated in particular gene sets. The dataset included a number of subjects with a substantial Finnish contribution to ancestry. We have reanalysed the same dataset after removal of these subjects and we have also included non-singleton variants of all types using a weighted burden test which assigns higher weights to variants predicted to have a greater effect on protein function. We investigated the same 31 gene sets as previously and also 1454 GO gene sets. The reduced dataset consisted of 4225 cases and 5834 controls. No individual variants or genes were significantly enriched in cases but 13 out of the 31 gene sets were significant after Bonferroni correction and the &quot;FMRP targets&quot; set produced a signed log p value (SLP) of 7.1. The gene within this set with the highest SLP, equal to 3.4, was FYN, which codes for a tyrosine kinase which phosphorylates glutamate metabotropic receptors and ionotropic NMDA receptors, thus modulating their trafficking, subcellular distribution and function. In the most recent GWAS of schizophrenia it was identified as a &quot;prioritized candidate gene&quot;. Two of the subunits of the NMDA receptor which are substrates of FYN are coded for by GRIN1 (SLP = 1.7) and GRIN2B (SLP = 2.1). Of note, for some sets there was a substantial enrichment of non-singleton variants. Of 1454 GO gene sets, three were significant after Bonferroni correction. Identifying specific genes and variants will depend on genotyping them in larger samples and/or demonstrating that they cosegregate with illness within pedigrees."	"Role of G protein-regulated inducer of neurite outgrowth 3 (GRIN3) in β-arrestin 2-Akt signaling and dopaminergic behaviors. The G protein-regulated inducer of neurite growth (GRIN) family has three isoforms (GRIN1-3), which bind to the Gαi/o subfamily of G protein that mediate signal processing via G protein-coupled receptors (GPCRs). Here, we show that GRIN3 is involved in regulation of dopamine-dependent behaviors and is essential for activation of the dopamine receptors (DAR)-β-arrestin signaling cascade. Analysis of functional regions of GRIN3 showed that a di-cysteine motif (Cys751/752) is required for plasma membrane localization. GRIN3 was co-immunoprecipitated with GPCR kinases 2/6 and β-arrestins 1/2. Among GRINs, only GRIN3, which is highly expressed in striatum, strongly interacted with β-arrestin 2. We also generated GRIN3-knockout mice (GRIN3KO). GRIN3KO exhibited reduced locomotor activity and increased anxiety-like behavior in the elevated maze test, as well as a reduced locomoter response to dopamine stimulation. We also examined the phosphorylation of Akt at threonine 308 (phospho308-Akt), which is dephosphorylated via a β-arrestin 2-mediated pathway. Dephosphorylation of phospho308-Akt via the D2R-β-arrestin 2 signaling pathway was completely abolished in striatum of GRIN3KO. Our results suggest that GRIN3 has a role in recruitment and assembly of proteins involved in β-arrestin-dependent, G protein-independent signaling."	"Genome-wide Association Study Identifies a Regulatory Variant of RGMA Associated With Opioid Dependence in European Americans. Opioid dependence (OD) is at epidemic levels in the United States. Genetic studies can provide insight into its biology. We completed an OD genome-wide association study in 3058 opioid-exposed European Americans, 1290 of whom met criteria for a DSM-IV diagnosis of OD. Analysis used DSM-IV criterion count. By meta-analysis of four cohorts, Yale-Penn 1 (n = 1388), Yale-Penn 2 (n = 996), Yale-Penn 3 (n = 98), and SAGE (Study of Addiction: Genetics and Environment) (n = 576), we identified a variant on chromosome 15, rs12442183, near RGMA, associated with OD (p = 1.3 × 10<sup>-8</sup>). The association was also genome-wide significant in Yale-Penn 1 taken individually and nominally significant in two of the other three samples. The finding was further supported in a meta-analysis of all available opioid-exposed African Americans (n = 2014 [1106 meeting DSM-IV OD criteria]; p = 3.0 × 10<sup>-3</sup>) from three cohorts; there was nominal significance in two of these samples. Thus, of seven subsamples examined in two populations, one was genome-wide significant, and four of six were nominally (or nearly) significant. RGMA encodes repulsive guidance molecule A, which is a central nervous system axon guidance protein. Risk allele rs12442183*T was correlated with higher expression of a specific RGMA transcript variant in frontal cortex (p = 2 × 10<sup>-3</sup>). After chronic morphine injection, the homologous mouse gene (Rgma) was upregulated in C57BL/6J striatum. Coexpression analysis of 1301 brain samples revealed that RGMA messenger RNA expression was associated with that of four genes implicated in other psychiatric disorders, including GRIN1. This is the first study to demonstrate an association of RGMA with OD. It provides a new lead into our understanding of OD pathophysiology."	"Uncoupling the widespread occurrence of anti-NMDAR1 autoantibodies from neuropsychiatric disease in a novel autoimmune model. Autoantibodies of the IgG class against N-methyl-D-aspartate-receptor subunit-NR1 (NMDAR1-AB) were considered pathognomonic for anti-NMDAR encephalitis. This view has been challenged by the age-dependent seroprevalence (up to &gt;20%) of functional NMDAR1-AB of all immunoglobulin classes found in &gt;5000 individuals, healthy or affected by different diseases. These findings question a merely encephalitogenic role of NMDAR1-AB. Here, we show that NMDAR1-AB belong to the normal autoimmune repertoire of dogs, cats, rats, mice, baboons, and rhesus macaques, and are functional in the NMDAR1 internalization assay based on human IPSC-derived cortical neurons. The age dependence of seroprevalence is lost in nonhuman primates in captivity and in human migrants, raising the intriguing possibility that chronic life stress may be related to NMDAR1-AB formation, predominantly of the IgA class. Active immunization of ApoE<sup>-/-</sup> and ApoE<sup>+/+</sup> mice against four peptides of the extracellular NMDAR1 domain or ovalbumin (control) leads to high circulating levels of specific AB. After 4 weeks, the endogenously formed NMDAR1-AB (IgG) induce psychosis-like symptoms upon MK-801 challenge in ApoE<sup>-/-</sup> mice, characterized by an open blood-brain barrier, but not in their ApoE<sup>+/+</sup> littermates, which are indistinguishable from ovalbumin controls. Importantly, NMDAR1-AB do not induce any sign of inflammation in the brain. Immunohistochemical staining for microglial activation markers and T lymphocytes in the hippocampus yields comparable results in ApoE<sup>-/-</sup> and ApoE<sup>+/+</sup> mice, irrespective of immunization against NMDAR1 or ovalbumin. These data suggest that NMDAR1-AB of the IgG class shape behavioral phenotypes upon access to the brain but do not cause brain inflammation on their own."	"Schizophrenia-Like Dopamine Release Abnormalities in a Mouse Model of NMDA Receptor Hypofunction. Amphetamine-induced augmentation of striatal dopamine and its blunted release in prefrontal cortex (PFC) is a hallmark of schizophrenia pathophysiology. Although N-methyl-D-aspartate receptor (NMDAR) hypofunction is also implicated in schizophrenia, it remains unclear whether NMDAR hypofunction leads to dopamine release abnormalities. We previously demonstrated schizophrenia-like phenotypes in GABAergic neuron-specific NMDAR hypofunctional mutant mice, in which Ppp1r2-Cre dependent deletion of indispensable NMDAR channel subunit Grin1 is induced in corticolimbic GABAergic neurons including parvalbumin (PV)-positive neurons, in postnatal development, but not in adulthood. Here, we report enhanced dopaminomimetic-induced locomotor activity in these mutants, along with bidirectional, site-specific changes in in vivo amphetamine-induced dopamine release: nucleus accumbens (NAc) dopamine release was enhanced by amphetamine in postnatal Ppp1r2-Cre/Grin1 knockout (KO) mice, whereas dopamine release was dramatically reduced in the medial PFC (mPFC) compared to controls. Basal tissue dopamine levels in both the NAc and mPFC were unaffected. Interestingly, the magnitude and distribution of amphetamine-induced c-Fos expression in dopamine neurons was comparable between genotypes across dopaminergic input subregions in the ventral tegmental area (VTA). These effects appear to be both developmentally and cell-type specifically modulated, since PV-specific Grin1 KO mice could induce the same effects as seen in postnatal-onset Ppp1r2-Cre/Grin1 KO mice, but no such abnormalities were observed in somatostatin-Cre/Grin1 KO mice or adult-onset Ppp1r2-Cre/Grin1 KO mice. These results suggest that PV GABAergic neuron-NMDAR hypofunction in postnatal development confers bidirectional NAc hyper- and mPFC hypo-sensitivity to amphetamine-induced dopamine release, similar to that classically observed in schizophrenia pathophysiology."	"De novo mutations in GRIN1 cause extensive bilateral polymicrogyria. Polymicrogyria is a malformation of cortical development. The aetiology of polymicrogyria remains poorly understood. Using whole-exome sequencing we found de novo heterozygous missense GRIN1 mutations in 2 of 57 parent-offspring trios with polymicrogyria. We found nine further de novo missense GRIN1 mutations in additional cortical malformation patients. Shared features in the patients were extensive bilateral polymicrogyria associated with severe developmental delay, postnatal microcephaly, cortical visual impairment and intractable epilepsy. GRIN1 encodes GluN1, the essential subunit of the N-methyl-d-aspartate receptor. The polymicrogyria-associated GRIN1 mutations tended to cluster in the S2 region (part of the ligand-binding domain of GluN1) or the adjacent M3 helix. These regions are rarely mutated in the normal population or in GRIN1 patients without polymicrogyria. Using two-electrode and whole-cell voltage-clamp analysis, we showed that the polymicrogyria-associated GRIN1 mutations significantly alter the in vitro activity of the receptor. Three of the mutations increased agonist potency while one reduced proton inhibition of the receptor. These results are striking because previous GRIN1 mutations have generally caused loss of function, and because N-methyl-d-aspartate receptor agonists have been used for many years to generate animal models of polymicrogyria. Overall, our results expand the phenotypic spectrum associated with GRIN1 mutations and highlight the important role of N-methyl-d-aspartate receptor signalling in the pathogenesis of polymicrogyria."	"The human GCOM1 complex gene interacts with the NMDA receptor and internexin-alpha. The known functions of the human GCOM1 complex hub gene include transcription elongation and the intercalated disk of cardiac myocytes. However, in all likelihood, the gene's most interesting, and thus far least understood, roles will be found in the central nervous system. To investigate the functions of the GCOM1 gene in the CNS, we have cloned human and rat brain cDNAs encoding novel, 105 kDa GCOM1 combined (Gcom) proteins, designated Gcom15, and identified a new group of GCOM1 interacting genes, termed Gints, from yeast two-hybrid (Y2H) screens. We showed that Gcom15 interacts with the NR1 subunit of the NMDA receptor by co-expression in heterologous cells, in which we observed bi-directional co-immunoprecipitation of human Gcom15 and murine NR1. Our Y2H screens revealed 27 novel GCOM1 interacting genes, many of which are synaptic proteins and/or play roles in neurologic diseases. Finally, we showed, using rat brain protein preparations, that the Gint internexin-alpha (INA), a known interactor of the NMDAR, co-IPs with GCOM1 proteins, suggesting a GCOM1-GRIN1-INA interaction and a novel pathway that may be relevant to neuroprotection."	"Rare loss of function mutations in N-methyl-D-aspartate glutamate receptors and their contributions to schizophrenia susceptibility. In schizophrenia (SCZ) and autism spectrum disorder (ASD), the dysregulation of glutamate transmission through N-methyl-D-aspartate receptors (NMDARs) has been implicated as a potential etiological mechanism. Previous studies have accumulated evidence supporting NMDAR-encoding genes' role in etiology of SCZ and ASD. We performed a screening study for exonic regions of GRIN1, GRIN2A, GRIN2C, GRIN2D, GRIN3A, and GRIN3B, which encode NMDAR subunits, in 562 participates (370 SCZ and 192 ASD). Forty rare variants were identified including 38 missense, 1 frameshift mutation in GRIN2C and 1 splice site mutation in GRIN2D. We conducted in silico analysis for all variants and detected seven missense variants with deleterious prediction. De novo analysis was conducted if pedigree samples were available. The splice site mutation in GRIN2D is predicted to result in intron retention by minigene assay. Furthermore, the frameshift mutation in GRIN2C and splice site mutation in GRIN2D were genotyped in an independent sample set comprising 1877 SCZ cases, 382 ASD cases, and 2040 controls. Both of them were revealed to be singleton. Our study gives evidence in support of the view that ultra-rare variants with loss of function (frameshift, nonsense or splice site) in NMDARs genes may contribute to possible risk of SCZ."	"Under the mask of Kabuki syndrome: Elucidation of genetic-and phenotypic heterogeneity in patients with Kabuki-like phenotype. Kabuki syndrome is mainly caused by dominant de-novo pathogenic variants in the KMT2D and KDM6A genes. The clinical features of this syndrome are highly variable, making the diagnosis of Kabuki-like phenotypes difficult, even for experienced clinical geneticists. Herein we present molecular genetic findings of causal genetic variation using array comparative genome hybridization and a Mendeliome analysis, utilizing targeted exome analysis focusing on regions harboring rare disease-causing variants in Kabuki-like patients which remained KMT2D/KDM6A-negative. The aCGH analysis revealed a pathogenic CNV in the 14q11.2 region, while targeted exome sequencing revealed pathogenic variants in genes associated with intellectual disability (HUWE1, GRIN1), including a gene coding for mandibulofacial dysostosis with microcephaly (EFTUD2). Lower values of the MLL2-Kabuki phenotypic score are indicative of Kabuki-like phenotype (rather than true Kabuki syndrome), where aCGH and Mendeliome analyses have high diagnostic yield. Based on our findings we conclude that for new patients with Kabuki-like phenotypes it is possible to choose a specific molecular testing approach that has the highest detection rate for a given MLL2-Kabuki score, thus fostering more precise patient diagnosis and improved management in these genetically- and phenotypically heterogeneous clinical entities."	"Identification of novel Ack1-interacting proteins and Ack1 phosphorylated sites in mouse brain by mass spectrometry. Ack1 (activated Cdc42-associated tyrosine kinase) is a non-receptor tyrosine kinase that is highly expressed in brain. This kinase contains several protein-protein interaction domains and its action is partially regulated by phosphorylation. As a first step to address the neuronal functions of Ack1, here we screened mouse brain samples to identify proteins that interact with this kinase. Using mass spectrometry analysis, we identified new putative partners for Ack1 including cytoskeletal proteins such as Drebrin or MAP4; adhesion regulators such as NCAM1 and neurabin-2; and synapse mediators such as SynGAP, GRIN1 and GRIN3. In addition, we confirmed that Ack1 and CAMKII both co-immunoprecipitate and co-localize in neurons. We also identified that adult and P5 samples contained the phosphorylated residues Thr 104 and Ser 825, and only P5 samples contained phosphorylated Ser 722, a site linked to cancer and interleukin signaling when phosphorylated. All these findings support the notion that Ack1 could be involved in neuronal plasticity."	"Repeated methamphetamine and modafinil induce differential cognitive effects and specific histone acetylation and DNA methylation profiles in the mouse medial prefrontal cortex. Methamphetamine (METH) and modafinil are psychostimulants with different long-term cognitive profiles: METH is addictive and leads to cognitive decline, whereas modafinil has little abuse liability and is a cognitive enhancer. Increasing evidence implicates epigenetic mechanisms of gene regulation behind the lasting changes that drugs of abuse and other psychotropic compounds induce in the brain, like the control of gene expression by histones 3 and 4 tails acetylation (H3ac and H4ac) and DNA cytosine methylation (5-mC). Mice were treated with a seven-day repeated METH, modafinil or vehicle protocol and evaluated in the novel object recognition (NOR) test or sacrificed 4days after last injection for molecular assays. We evaluated total H3ac, H4ac and 5-mC levels in the medial prefrontal cortex (mPFC), H3ac and H4ac promotor enrichment (ChIP) and mRNA expression (RT-PCR) of neurotransmitter systems involved in arousal, wakefulness and cognitive control, like dopaminergic (Drd1 and Drd2), α-adrenergic (Adra1a and Adra1b), orexinergic (Hcrtr1 and Hcrtr2), histaminergic (Hrh1 and Hrh3) and glutamatergic (AMPA Gria1 and NMDA Grin1) receptors. Repeated METH and modafinil treatment elicited different cognitive outcomes in the NOR test, where modafinil-treated mice performed as controls and METH-treated mice showed impaired recognition memory. METH-treated mice also showed i) decreased levels of total H3ac and H4ac, and increased levels of 5-mC, ii) decreased H3ac enrichment at promoters of Drd2, Hcrtr1/2, Hrh1 and Grin1, and increased H4ac enrichment at Drd1, Hrh1 and Grin1, iii) increased mRNA of Drd1a, Grin1 and Gria1. Modafinil-treated mice shared none of these effects and showed increased H3ac enrichment and mRNA expression at Adra1b. Modafinil and METH showed similar effects linked to decreased H3ac in Hrh3, increased H4ac in Hcrtr1, and decreased mRNA expression of Hcrtr2. The specific METH-induced epigenetic and transcriptional changes described here may be related to the long-term cognitive decline effects of the drug and its detrimental effects on mPFC function. The lack of similar epigenetic effects of chronic modafinil administration supports this notion."	"Contributions of prolonged contingent and non-contingent cocaine exposure to escalation of cocaine intake and glutamatergic gene expression. Similar to the pattern observed in people with substance abuse disorders, laboratory animals will exhibit escalation of cocaine intake when the drug is available over prolonged periods of time. Here, we investigated the contribution of behavioral contingency of cocaine administration on escalation of cocaine intake and gene expression in the dorsal medial prefrontal cortex (dmPFC) in adult male rats. Rats were allowed to self-administer intravenous cocaine (0.25 mg/infusion) under either limited cocaine-(1 h/day), prolonged cocaine-(6 h/day), or limited cocaine-(1 h/day) plus yoked cocaine-access (5 h/day); a control group received access to saline (1 h/day). One day after the final self-administration session, the rats were euthanized and the dmPFC was removed for quantification of mRNA expression of critical glutamatergic signaling genes, Homer2, Grin1, and Dlg4, as these genes and brain region have been previously implicated in addiction, learning, and memory. All groups with cocaine-access showed escalated cocaine intake during the first 10 min of each daily session, and within the first 1 h of cocaine administration. Additionally, the limited-access + yoked group exhibited more non-reinforced lever responses during self-administration sessions than the other groups tested. Lastly, Homer2, Grin1, and Dlg4 mRNA were impacted by both duration and mode of cocaine exposure. Only prolonged-access rats exhibited increases in mRNA expression for Homer2, Grin1, and Dlg4 mRNA. Taken together, these findings indicate that both contingent and non-contingent &quot;excessive&quot; cocaine exposure supports escalation behavior, but the behavioral contingency of cocaine-access has distinct effects on the patterning of operant responsiveness and changes in mRNA expression."	"Personalized therapy in a GRIN1 mutated girl with intellectual disability and epilepsy. NA"	"Molecular diagnosis of patients with epilepsy and developmental delay using a customized panel of epilepsy genes. Pediatric epilepsies are a group of disorders with a broad phenotypic spectrum that are associated with great genetic heterogeneity, thus making sequential single-gene testing an impractical basis for diagnostic strategy. The advent of next-generation sequencing has increased the success rate of epilepsy diagnosis, and targeted resequencing using genetic panels is the a most cost-effective choice. We report the results found in a group of 87 patients with epilepsy and developmental delay using targeted next generation sequencing (custom-designed Haloplex panel). Using this gene panel, we were able to identify disease-causing variants in 17 out of 87 (19.5%) analyzed patients, all found in known epilepsy-associated genes (KCNQ2, CDKL5, STXBP1, SCN1A, PCDH19, POLG, SLC2A1, ARX, ALG13, CHD2, SYNGAP1, and GRIN1). Twelve of 18 variants arose de novo and 6 were novel. The highest yield was found in patients with onset in the first years of life, especially in patients classified as having early-onset epileptic encephalopathy. Knowledge of the underlying genetic cause provides essential information on prognosis and could be used to avoid unnecessary studies, which may result in a greater diagnostic cost-effectiveness."	"Mice lacking a functional NMDA receptor exhibit social subordination in a group-housed environment. Social dominance, in which an individual asserts control over others or benefits most after social conflict, has an influence on social behaviour. However, the mechanisms mediating social dominance remain unclear. Social dominance within social groups determines the distribution of rewards such as food and access to mating partners, which can act as reinforcers. In this study, we used the water competition test to determine whether mice were dominant or subordinate. It has been previously reported that mice heterozygous for a missense mutation in Grin1 (Grin1<sup>Rgsc174</sup> ) showed altered social behaviour, with increased locomotor activity, novelty seeking and anxiety. However, social dominance in these mice has not been previously investigated. We subjected Grin1<sup>Rgsc174/+</sup> mice to the water competition test using IntelliCage and observed that Grin1 influences competitive dominance. We found that Grin1<sup>Rgsc174/+</sup> mice exhibited social subordination characterised by decreased corner visit frequency and occupancy time at the beginning of the task. However, Grin1<sup>Rgsc174/+</sup> mice retained increased basal activity and exploring behaviour under a group-housed environment. Our findings suggested that Grin1 plays an important role in determining social dominance."	"[Differential alternative splicing in brain regions of rats selected for aggressive behavior]. Profiles of alternative mRNA isoforms have been determined in three brain regions of rats from an aggressive and a tame line selected for 74 generations. Among 2319 genes with alternatively spliced exons, approximately 84% were confirmed by analyzing public databases. Based on Gene Ontology-guided clustering of alternatively spliced genes, it has been found that the sample was enriched in synapse-specific genes (FDR &lt; 10^(-17)). Patterns of gene expression in the brains of animals with genetically determined high or low aggression were more frequently found to differ in the use of alternatively spliced exons than in animals environmentally conditioned for increased or lowered propensity to aggression. For the Adcyap1r1 gene, five alternatively spliced mRNA isoforms have been represented differentially in aggressive animals. A detailed analysis of the gene that encodes glutamate ionotropic receptor NMDA type subunit 1 (Grin1) has confirmed significant differences in the levels of its alternatively spliced isoforms in certain brain regions of tame and aggressive rats. These differences may affect the behavior in rats genetically selected for aggression levels."	"Emerging Monogenic Complex Hyperkinetic Disorders. Hyperkinetic movement disorders can manifest alone or as part of complex phenotypes. In the era of next-generation sequencing (NGS), the list of monogenic complex movement disorders is rapidly growing. This review will explore the main features of these newly identified conditions. Mutations in ADCY5 and PDE10A have been identified as important causes of childhood-onset dyskinesias and KMT2B mutations as one of the most frequent causes of complex dystonia in children. The delineation of the phenotypic spectrum associated with mutations in ATP1A3, FOXG1, GNAO1, GRIN1, FRRS1L, and TBC1D24 is revealing an expanding genetic overlap between epileptic encephalopathies, developmental delay/intellectual disability, and hyperkinetic movement disorders,. Thanks to NGS, the etiology of several complex hyperkinetic movement disorders has been elucidated. Importantly, NGS is changing the way clinicians diagnose these complex conditions. Shared molecular pathways, involved in early stages of brain development and normal synaptic transmission, underlie basal ganglia dysfunction, epilepsy, and other neurodevelopmental disorders."	"Serum complement levels in anti-N-methyl-d-aspartate receptor encephalitis. This study aimed to evaluate the relationship between serum complement and anti-N-methyl-d-aspartate receptor (NMDAR) encephalitis. Serum complement (C3, C4 and CH50), immunoglobulins (IgG, IgM and IgA) and C-reactive protein (CRP) were evaluated in 40 patients with anti-NMDAR encephalitis and 40 controls. Follow-up evaluations of 11 of the 40 patients with anti-NMDAR encephalitis were conducted 6 months after admission. Modified Rankin Scale (mRS) scores and clinical and cerebrospinal fluid parameters were evaluated in patients with anti-NMDAR encephalitis. Serum C4 levels were significantly higher in patients with anti-NMDAR encephalitis than in controls (P = 0.003), especially in female patients (P = 0.001) and those with severe impairment (mRS ≥ 4; P &lt; 0.001). Serum CH50 levels were significantly higher in patients with severe impairment (P = 0.007) and limited treatment responses (P = 0.007). Serum C4 was associated with C3 (r = 0.506, P = 0.001), CH50 (r = 0.478, P = 0.002) and mRS score (r = 0.607, P &lt; 0.001). Serum C3 was associated with CH50 (r = 0.339, P = 0.032) and cerebrospinal fluid white blood cells (r = 0.351, P = 0.026). Serum CH50 was associated with age, mRS score and CRP. Follow-up evaluations revealed that mRS scores were significantly lower than those before treatment, and a significant negative correlation was observed between the change in C3 levels and the change in mRS score. Our results demonstrated that serum C4 levels were elevated and associated with C3, CH50 and CRP levels, and disease severity in patients with anti-NMDAR encephalitis."	"Transcriptome analysis for UVB-induced phototoxicity in mouse retina. Throughout life, the human eye is continuously exposed to sunlight and artificial lighting. Ambient light exposure can lead to visual impairment and transient or permanent blindness. To mimic benign light stress conditions, Mus musculus eyes were exposed to low-energy UVB radiation, ensuring no severe morphological changes in the retinal structure post-exposure. We performed RNA-seq analysis to reveal the early transcriptional changes and key molecular pathways involved before the activation of the canonical cell death pathway. RNA-seq analysis identified 537 genes that were differentially modulated, out of which 126 were clearly up regulated (&gt;2-fold, P &lt; .01) and 51 were significantly down regulated (&lt;2-fold, P &lt; .01) in response to UVB irradiation in the mouse retina. Gene ontology analysis revealed that UVB exposure affected pathways for cellular stress and signaling (eg, Creb3, Ddrgk1, Grin1, Map7, Uqcc2, Uqcrb), regulation of chromatin and gene expression (eg, Chd5, Jarid2, Kat6a, Smarcc2, Sumo1, Zfp84), transcription factors (eg, Asxl2, Atf7, Per1, Phox2a, Rxra), RNA processing, and neuronal genes (eg, B4gal2, Drd1, Grm5, Rnf40, Rnps1, Usp39, Wbp4). The differentially expressed genes from the RNA-seq analysis were validated by quantitative PCR. Both analyses yielded similar gene expression patterns. The genes and pathways identified here improve the understanding of early transcriptional responses to UVB irradiation. They may also help in elucidating the genes responsible for the inherent susceptibility of humans to UVB-induced retinal diseases."	"Gene Targeted Mice with Conditional Knock-In (-Out) of NMDAR Mutations. For the genetic alterations of NMDA receptor (NMDAR) properties like Ca<sup>2+</sup>-permeability or voltage-dependent gating in mice and for the experimental analysis of nonsense or missense mutations that were identified in human patients, single nucleotide mutations have to be introduced into the germ line of mice (Burnashev and Szepetowski, Curr Opin Pharmacol 20:73-82, 2015; Endele et al., Nat Genet 42:1021-1026, 2010). This can be done with very high precision by the well-established method of gene replacement, which makes use of homologous recombination in pluripotent embryonic stem (ES) cells of mice. The homologous recombination at NMDAR subunit genes (Grin; for glutamate receptor ionotropic NMDAR subtype) has to be performed by targeting vectors, also called replacement vectors. The targeting vector should encode part of the gene for the NMDAR subunit, the NMDAR mutation, and a removable selection maker. In these days, the targeting vector can be precisely designed using DNA sequences from public databases. The assembly of the vector is then done from isogenic NMDAR gene fragments cloned in bacterial artificial chromosomes (BACs) using &quot;high fidelity&quot; long-range PCR reactions. During these PCR reactions, the NMDAR mutations are introduced into the cloned NMDAR gene fragments of the targeting vector. Finally, the targeting vector is used for homologous recombination in mouse ES cells. Positive ES cell clones which have the correct mutation have to be selected and are then used for blastocyst injection to generate chimeric mice that hopefully transmit the Grin gene targeted ES cells to their offspring. In the first offspring generation of the founder (F1), some animals will be heterozygous for the targeted NMDAR gene mutation. In order to regulate the expression of NMDAR mutations, it is important to keep the targeted NMDAR mutation under conditional control. Here, we describe a general method how those conditionally controlled NMDAR mutations can be engraved into the germ line of mice as hypomorphic Grin alleles. By breeding these hypomorphic Grin gene targeted mice with Cre recombinase expressing mice, the hypomorphic Grin allele can be activated at specific time points in specific cell types, and the function of the mutated NMDAR can be analyzed in these - so called - conditional mouse models. In this method chapter, we describe in detail the different methodical steps for successful gene targeting and generation of conditional NMDAR mutant mouse lines. Within the last 20 years, several students in our Department of Molecular Neurobiology in Heidelberg used these techniques several times to generate different mouse lines with mutated NMDARs."	"Genetic and Functional Analysis of GRIN2A in Tumor Samples. Ionotropic glutamate receptors (iGluRs) are large integral membrane multi-protein complexes that create ion channels in plasma membranes. Upon binding of receptor specific ligands (e.g., glutamate), increased efflux or influx of mono- or divalent cations (e.g., Ca<sup>2+</sup>) promotes synaptic transmission, cellular migration, and survival. Three classes of iGluRs were originally defined after their respective agonists: AMPA, kainate, and NMDA receptors (NMDARs). Recently, we examined iGluR families at the genetic level using Next-Generation Sequencing (NGS) (whole-exome sequencing (WES)) and discovered a high prevalence of somatic mutations within the gene for one of the NMDAR subunits, GRIN2A, specifically in malignant melanoma. Following confirmation of the somatic mutations, we focused on functional characterization of a subset of the GRIN2A mutants that demonstrated a loss of NMDAR functionality. We used gene expression and protein biochemistry to examine complex formation between GluN1 subunit (encoded by GRIN1) and GluN2A subunit (encoded by GRIN2A), anchorage-independent growth in soft agar and cellular migration. Furthermore, we used shRNA depletion of endogenous GRIN2A in melanoma cells expressing either wild-type GRIN2A or mutant GRIN2A and measured cellular proliferation compared to negative controls. Our data show that somatic mutation of certain residues in GluN2A results in increased survival and is the first such report to demonstrate the functional importance of GRIN2A mutations in melanoma and the significance ionotropic glutamate receptor signaling plays in malignant melanoma."	"Patient characteristics affect the response to ketamine and opioids during the treatment of vaso-occlusive episode-related pain in sickle cell disease. BackgroundN-methyl-D-aspartate receptor activation has been implicated in the pathobiology of inflammatory, nociceptive and neuropathic pain, opioid tolerance, opioid-induced hyperalgesia, and central sensitization. Some of those mechanisms underlie sickle cell disease(SCD)-associated pain.MethodsWe conducted an exploratory cohort study of SCD patients who during vaso-occlusive episodes (VOEs) received subanesthetic doses of the N-methyl-D-aspartate receptor antagonist, ketamine, as an adjunct to opioids. We sought to identify predictors of changes in pain scores and of the percentage of ketamine infusions associated with meaningful changes (≥20% reduction) in pain and opioid consumption.ResultsEight-five patients received 181 ketamine infusions for VOE-associated pain. Combined with opioids, ketamine yielded significant decrease in pain scores and opioid consumption. Ketamine administered to males and to younger patients yielded greater pain score decrease compared with females (P=0.013) and older patients (P=0.018). Fifty-four percent of infusions yielded meaningful reductions in pain scores, and in multivariate analysis, sex, age group, pain location, and infusion duration independently predicted pain score changes.ConclusionThis study suggests that in SCD patients admitted with VOE-associated pain, ketamine has age- and sex-dependent effects. These data can inform sample and effect size calculations for controlled trials to determine which SCD patients would benefit most from ketamine."	"Novel Rbfox2 isoforms associated with alternative exon usage in rat cortex and suprachiasmatic nucleus. Transcriptome diversity in adult neurons is partly mediated by RNA binding proteins (RBPs), including the RBFOX factors. RBFOX3/NeuN, a neuronal maturity marker, is strangely depleted in suprachiasmatic nucleus (SCN) neurons, and may be compensated by a change in Rbfox2 expression. In this study, we found no superficial changes in Rbfox2 expression in the SCN, but mRNA population analysis revealed a distinct SCN transcript profile that includes multiple novel Rbfox2 isoforms. Of eleven isoforms in SCN and cerebral cortex that exhibit exon variation across two protein domains, we found a 3-fold higher abundance of a novel ('-12-40') C-terminal domain (CTD)-variant in the SCN. This isoform embraces an alternative reading frame that imparts a 50% change in CTD protein sequence, and functional impairment of exon 7 exclusion activity in a RBFOX2-target, the L-type calcium channel gene, Cacna1c. We have also demonstrated functional correlates in SCN gene transcripts; inclusion of Cacna1c exon 7, and also exclusion of both NMDA receptor gene Grin1 exon 4, and Enah exon 12, all consistent with a change in SCN RBFOX activity. The demonstrated regional diversity of Rbfox2 in adult brain highlights the functional adaptability of this RBP, enabling neuronal specialization, and potentially responding to disease-related neuronal dysfunction."	"Structural switch from a multistranded G-quadruplex to single strands as a consequence of point mutation in the promoter of the human GRIN1 gene. A huge number of G-rich sequences forming quadruplexes are found in the human genome, especially in telomeric regions, UTRs, and the promoter regions of a number of genes. One such gene is GRIN1 encoding the NR1 subunit of the N-methyl-d-aspartate receptor (NMDA). Several lines of reports have implicated that attenuated function of NMDA results in schizophrenia, a genetic disorder characterized by hallucinations, delusions, and psychosis. Involvement of the GRIN1 gene in the pathogenesis of schizophrenia has been extensively analysed. Recent reports have demonstrated that polymorphism in the promoter region of GRIN1 at position -855 (G/C) has a possible association with schizophrenia. The binding site for the NF-κB transcription factor gets altered due to this mutation, resulting in reduced gene expression as well as NMDA activity. By combining gel electrophoresis (PAGE), circular dichroism (CD) and CD melting techniques, the G → C single nucleotide polymorphism (SNP) at the G-rich sequence (d-CTTAGCCCGAGGAG[combining low line]GGGGGTCCCAAGT; GRIN1) was investigated. We report that the GRIN1 sequence can form an octameric/multistranded quadruplex structure with parallel conformation in the presence of K<sup>+</sup> as well as Na<sup>+</sup>. CD and gel studies are in good correlation in order to detect molecularity and strand conformation. The parallel G-quadruplex species was hypothesized to be octameric in K<sup>+</sup>/Na<sup>+</sup> salts. The mutated sequence (d-CTTAGCCCGAGGAC[combining low line]GGGGGTCCCAAGT; GRIN1M) remained single stranded under physiological conditions. CD melting studies support the formation of an interstranded G-quadruplex structure by the GRIN1 sequence. Two structural models are propounded for a multistranded parallel G-quadruplex conformation which might be responsible for regulating the gene expression normally underlying memory and learning."	"Glutamate signaling through the NMDA receptor reduces the expression of scleraxis in plantaris tendon derived cells. A body of evidence demonstrating changes to the glutaminergic system in tendinopathy has recently emerged. This hypothesis was further tested by studying the effects of glutamate on the tenocyte phenotype, and the impact of loading and exposure to glucocorticoids on the glutamate signaling machinery. Plantaris tendon tissue and cultured plantaris tendon derived cells were immunohisto-/cytochemically stained for glutamate, N-Methyl-D-Aspartate receptor 1 (NMDAR1) and vesicular glutamate transporter 2 (VGluT2). Primary cells were exposed to glutamate or receptor agonist NMDA. Cell death/viability was measured via LDH/MTS assays, and Western blot for cleaved caspase 3 (c-caspase 3) and cleaved poly (ADP-ribose) polymerase (c-PARP). Scleraxis mRNA (Scx)/protein(SCX) were analyzed by qPCR and Western blot, respectively. A FlexCell system was used to apply cyclic strain. The effect of glucocorticoids was studies by adding dexamethasone (Dex). The mRNA of the glutamate synthesizing enzymes Got1 and Gls, and NMDAR1 protein were measured. Levels of free glutamate were determined by a colorimetric assay. Immunoreactions for glutamate, VGluT2, and NMDAR1 were found in tenocytes and peritendinous cells in tissue sections and in cultured cells. Cell death was induced by high concentrations of glutamate but not by NMDA. Scleraxis mRNA/protein was down-regulated in response to NMDA/glutamate stimulation. Cyclic strain increased, and Dex decreased, Gls and Got1 mRNA expression. Free glutamate levels were lower after Dex exposure. In conclusion, NMDA receptor stimulation leads to a reduction of scleraxis expression that may be involved in a change of phenotype in tendon cells. Glutamate synthesis is increased in tendon cells in response to strain and decreased by glucocorticoid stimulation. This implies that locally produced glutamate could be involved in the tissue changes observed in tendinopathy."	"GRIN2B gain of function mutations are sensitive to radiprodil, a negative allosteric modulator of GluN2B-containing NMDA receptors. De novo gain of function mutations in GRIN2B encoding the GluN2B subunit of the N-methyl-d-aspartate (NMDA) receptor have been linked with epileptic encephalopathies, including infantile spasms. We investigated the effects of radiprodil, a selective GluN2B negative allosteric modulator and other non-selective NMDA receptor inhibitors on glutamate currents mediated by NMDA receptors containing mutated GluN2B subunits. The experiments were performed in Xenopus oocytes co-injected with the following human mRNAs: GRIN1/GRIN2B, GRIN1/GRIN2B-R540H, GRIN1/GRIN2B-N615I and GRIN1/GRIN2B-V618G. Glutamate displayed slightly increased potency in the R540H variant, but not in N615I and V618G variants. However, the inhibition by Mg<sup>2+</sup> was completely abolished in N615I and V618G variants. In fact, Mg<sup>2+</sup> enhanced glutamate responses in those variants. The potency of radiprodil to block glutamate-evoked currents was not affected in any of the variants, while the effects by non-selective NMDA inhibitors were greatly reduced in some of the variants. Additionally, in the Mg<sup>2+</sup> insensitive variants, radiprodil blocked glutamate-activated currents with the same potency as in the absence of Mg<sup>2+</sup>. The gain of function observed in the reported GRIN2B variants could be a key pathophysiological factor leading to neuronal hyper-excitability in epileptic encephalopathies. The GluN2B-selective inhibitor radiprodil fully retained its pharmacological profile under these conditions, while other non-selective NMDA receptor antagonists lost their potency. Consequently, our data suggest that radiprodil may be a valuable therapeutic option for treatment of pediatric epileptic encephalopathies associated with GRIN2B mutations."	"De novo GRIN1 mutations: An emerging cause of severe early infantile encephalopathy. De novo GRIN1 mutations have recently been shown to cause severe intellectual disability, hypotonia, hyperkinetic and stereotyped movements, and epilepsy. We report two new cases of severe early onset encephalopathy associated with hyperkinetic and oculogyric-like movements, caused by mutations in the GRIN1 gene; both were identified by whole exome sequencing. One of the patients harbored the novel mutation p.Ser688Tyr and the other patient harbored the p.Gly827Arg mutation, which was previously reported in three patients. In silico studies suggested that the p.Se688Tyr mutation results in disruption of NMDA ligand binding and the p.Gly827Arg mutation results in disrupted gating of the ion channel. Our study highlights the importance of GRIN1 mutations in the etiology of isolated cases of early onset encephalopathy, and the valuable role of whole exome sequencing in identifying these mutations."	"Computationally Discovered Potentiating Role of Glycans on NMDA Receptors. N-methyl-D-aspartate receptors (NMDARs) are glycoproteins in the brain central to learning and memory. The effects of glycosylation on the structure and dynamics of NMDARs are largely unknown. In this work, we use extensive molecular dynamics simulations of GluN1 and GluN2B ligand binding domains (LBDs) of NMDARs to investigate these effects. Our simulations predict that intra-domain interactions involving the glycan attached to residue GluN1-N440 stabilize closed-clamshell conformations of the GluN1 LBD. The glycan on GluN2B-N688 shows a similar, though weaker, effect. Based on these results, and assuming the transferability of the results of LBD simulations to the full receptor, we predict that glycans at GluN1-N440 might play a potentiator role in NMDARs. To validate this prediction, we perform electrophysiological analysis of full-length NMDARs with a glycosylation-preventing GluN1-N440Q mutation, and demonstrate an increase in the glycine EC50 value. Overall, our results suggest an intramolecular potentiating role of glycans on NMDA receptors."	"2-methoxyestradiol impacts on amino acids-mediated metabolic reprogramming in osteosarcoma cells by its interaction with NMDA receptor. Deregulation of serine and glycine metabolism, have been identified to function as metabolic regulators in supporting tumor cell growth. The role of serine and glycine in regulation of cancer cell proliferation is complicated, dependent on concentrations of amino acids and tissue-specific. D-serine and glycine are coagonists of N-methyl-D-aspartate (NMDA) receptor subunit GRIN1. Importantly, NMDA receptors are widely expressed in cancer cells and play an important role in regulation of cell death, proliferation, and metabolism of numerous malignancies. The aim of the present work was to associate the metabolism of glycine and D-serine with the anticancer activity of 2-methoxyestradiol. 2-methoxyestradiol is a potent anticancer agent but also a physiological 17β- estradiol metabolite. In the study we have chosen two malignant cell lines expressing functional NMDA receptors, that is osteosarcoma 143B and breast cancer MCF7. We used MTS assay, migration assay, flow cytometric analyses, Western blotting and immunoprecipitation techniques as well as molecular modeling studies. We have demonstrated the extensive crosstalk between the deregulated metabolic network and cancer cell signaling. Herein, we observed an anticancer effect of high concentrations of glycine and D-serine in osteosarcoma cells. In contrast, the amino acids when used at low, physiological concentrations induced the proliferation and migration of osteosarcoma cells. Importantly, the pro-cancergogenic effects of both glycine and D-serine where abrogated by the usage of 2-methoxyestradiol at both physiological and pharmacological relevant concentrations. The obtained data confirmed that 2-methoxyestradiol may be a physiological anticancer molecule."	"GRIN1 mutation associated with intellectual disability alters NMDA receptor trafficking and function. N-methyl-d-aspartate receptors (NMDARs) play important roles in brain development and neurological disease. We report two individuals with similar dominant de novo GRIN1 mutations (c.1858 G&gt;A and c.1858 G&gt;C; both p.G620R). Both individuals presented at birth with developmental delay and hypotonia associated with behavioral abnormalities and stereotypical movements. Recombinant NMDARs containing the mutant GluN1-G620R together with either GluN2A or GluN2B were evaluated for changes in their trafficking to the plasma membrane and their electrophysiological properties. GluN1-G620R/GluN2A complexes showed a mild reduction in trafficking, a ~2-fold decrease in glutamate and glycine potency, a strong decrease in sensitivity to Mg<sup>2+</sup> block, and a significant reduction of current responses to a maximal effective concentration of agonists. GluN1-G620R/GluN2B complexes showed significantly reduced delivery of protein to the cell surface associated with similarly altered electrophysiology. These results indicate these individuals may have suffered neurodevelopmental deficits as a result of the decreased presence of GluN1-G620R/GluN2B complexes on the neuronal surface during embryonic brain development and reduced current responses of GluN1-G620R-containing NMDARs after birth. These cases emphasize the importance of comprehensive functional characterization of de novo mutations and illustrates how a combination of several distinct features of NMDAR expression, trafficking and function can be present and influence phenotype."	"QTL mapping of stress related gene expression in a cross between domesticated chickens and ancestral red junglefowl. Domestication of animals is associated with numerous alterations in physiology, morphology, and behavior. Lower reactivity of the hypothalamic-pituitary-adrenal (HPA) axis and reduced fearfulness is seen in most studied domesticates, including chickens. Previously we have shown that the physiological stress response as well as expression levels of hundreds of genes in the hypothalamus and adrenal glands are different between domesticated White Leghorn and the progenitor of modern chickens, the Red Junglefowl. To map genetic loci associated with the transcription levels of genes involved in the physiological stress response, we conducted an eQTL analysis in the F12 generation of an inter-cross between White Leghorn and Red Junglefowl. We selected genes for further studies based on their known function in the regulation of the HPA axis or sympathoadrenal (SA) system, and measured their expression levels in the hypothalamus and the adrenal glands after a brief stress exposure (physical restraint). The expression values were treated as quantitative traits for the eQTL mapping. The plasma levels of corticosterone were also assessed. We analyzed the correlation between gene expression and corticosterone levels and mapped eQTL and their potential effects on corticosterone levels. The effects on gene transcription of a previously found QTL for corticosterone response were also investigated. The expression levels of the glucocorticoid receptor (GR) in the hypothalamus and several genes in the adrenal glands were correlated with the post-stress levels of corticosterone in plasma. We found several cis- and trans-acting eQTL for stress-related genes in both hypothalamus and adrenal. In the hypothalamus, one eQTL for c-FOS and one QTL for expression of GR were found. In the adrenal tissue, we identified eQTL for the genes NR0B1, RGS4, DBH, MAOA, GRIN1, GABRB2, GABRB3, and HSF1. None of the found eQTL were significant predictors of corticosterone levels. The previously found QTL for corticosterone was associated with GR expression in hypothalamus. Our data suggests that domestication related modification in the stress response is driven by changes in the transcription levels of several modulators of the HPA and SA systems in hypothalamus and adrenal glands and not by changes in the expression of the steroidogenic genes. The presence of eQTL for GR in hypothalamus combined with the negative correlation between GR expression and corticosterone response suggests GR as a candidate for further functional studies regarding modification of stress response during chicken domestication."	"Molecular Mechanism of Disease-Associated Mutations in the Pre-M1 Helix of NMDA Receptors and Potential Rescue Pharmacology. N-methyl-D-aspartate receptors (NMDARs), ligand-gated ionotropic glutamate receptors, play key roles in normal brain development and various neurological disorders. Here we use standing variation data from the human population to assess which protein domains within NMDAR GluN1, GluN2A and GluN2B subunits show the strongest signal for being depleted of missense variants. We find that this includes the GluN2 pre-M1 helix and linker between the agonist-binding domain (ABD) and first transmembrane domain (M1). We then evaluate the functional changes of multiple missense mutations in the NMDAR pre-M1 helix found in children with epilepsy and developmental delay. We find mutant GluN1/GluN2A receptors exhibit prolonged glutamate response time course for channels containing 1 or 2 GluN2A-P552R subunits, and a slow rise time only for receptors with 2 mutant subunits, suggesting rearrangement of one GluN2A pre-M1 helix is sufficient for rapid activation. GluN2A-P552R and analogous mutations in other GluN subunits increased the agonist potency and slowed response time course, suggesting a functionally conserved role for this residue. Although there is no detectable change in surface expression or open probability for GluN2A-P552R, the prolonged response time course for receptors that contained GluN2A-P552R increased charge transfer for synaptic-like activation, which should promote excitotoxic damage. Transfection of cultured neurons with GluN2A-P552R prolonged EPSPs, and triggered pronounced dendritic swelling in addition to excitotoxicity, which were both attenuated by memantine. These data implicate the pre-M1 region in gating, provide insight into how different subunits contribute to gating, and suggest that mutations in the pre-M1 helix can compromise neuronal health. Evaluation of FDA-approved NMDAR inhibitors on the mutant NMDAR-mediated current response and neuronal damage provides a potential clinical path to treat individuals harboring similar mutations in NMDARs."	"Glutamatergic and GABAergic gene sets in attention-deficit/hyperactivity disorder: association to overlapping traits in ADHD and autism. Attention-deficit/hyperactivity disorder (ADHD) and autism spectrum disorders (ASD) often co-occur. Both are highly heritable; however, it has been difficult to discover genetic risk variants. Glutamate and GABA are main excitatory and inhibitory neurotransmitters in the brain; their balance is essential for proper brain development and functioning. In this study we investigated the role of glutamate and GABA genetics in ADHD severity, autism symptom severity and inhibitory performance, based on gene set analysis, an approach to investigate multiple genetic variants simultaneously. Common variants within glutamatergic and GABAergic genes were investigated using the MAGMA software in an ADHD case-only sample (n=931), in which we assessed ASD symptoms and response inhibition on a Stop task. Gene set analysis for ADHD symptom severity, divided into inattention and hyperactivity/impulsivity symptoms, autism symptom severity and inhibition were performed using principal component regression analyses. Subsequently, gene-wide association analyses were performed. The glutamate gene set showed an association with severity of hyperactivity/impulsivity (P=0.009), which was robust to correcting for genome-wide association levels. The GABA gene set showed nominally significant association with inhibition (P=0.04), but this did not survive correction for multiple comparisons. None of single gene or single variant associations was significant on their own. By analyzing multiple genetic variants within candidate gene sets together, we were able to find genetic associations supporting the involvement of excitatory and inhibitory neurotransmitter systems in ADHD and ASD symptom severity in ADHD."	"Novel homozygous missense variant of GRIN1 in two sibs with intellectual disability and autistic features without epilepsy. We report on two consanguineous sibs affected with severe intellectual disability and autistic features due to a homozygous missense variant of GRIN1. Massive parallel sequencing was performed using a gene panel including 450 genes related to intellectual disability and autism spectrum disorders. We found a homozygous missense variation of GRIN1 (c.679G&gt;C; p.(Asp227His)) in the two affected sibs, which was inherited from both unaffected heterozygous parents. Heterozygous variants of GRIN1, encoding the GluN1 subunit of the NMDA receptor, have been reported in patients with neurodevelopmental disorders including epileptic encephalopathy, severe intellectual disability, and movement disorders. The p.(Asp227His) variant is located in the same aminoterminal protein domain as the recently published p.(Arg217Trp), which was found at the homozygous state in two patients with a similar phenotype of severe intellectual disability and autistic features but without epilepsy. In silico predictions were consistent with a deleterious effect. The present findings further expand the clinical spectrum of GRIN1 variants and support the existence of hypomorphic variants causing severe neurodevelopmental impairment with autosomal recessive inheritance."	"Bipolar Disorder Associated microRNA, miR-1908-5p, Regulates the Expression of Genes Functioning in Neuronal Glutamatergic Synapses. Bipolar disorder (BD), characterized by recurrent mood swings between depression and mania, is a highly heritable and devastating mental illness with poorly defined pathophysiology. Recent genome-wide molecular genetic studies have identified several protein-coding genes and microRNAs (miRNAs) significantly associated with BD. Notably, some of the proteins expressed from BD-associated genes function in neuronal synapses, suggesting that abnormalities in synaptic function could be one of the key pathogenic mechanisms of BD. In contrast, however, the role of BD-associated miRNAs in disease pathogenesis remains largely unknown, mainly because of a lack of understanding about their target mRNAs and pathways in neurons. To address this problem, in this study, we focused on a recently identified BD-associated but uncharacterized miRNA, miR-1908-5p. We identified and validated its novel target genes including DLGAP4, GRIN1, STX1A, CLSTN1 and GRM4, which all function in neuronal glutamatergic synapses. Moreover, bioinformatic analyses of human brain expression profiles revealed that the expression levels of miR-1908-5p and its synaptic target genes show an inverse-correlation in many brain regions. In our preliminary experiments, the expression of miR-1908-5p was increased after chronic treatment with valproate but not lithium in control human neural progenitor cells. In contrast, it was decreased by valproate in neural progenitor cells derived from dermal fibroblasts of a BD subject. Together, our results provide new insights into the potential role of miR-1908-5p in the pathogenesis of BD and also propose a hypothesis that neuronal synapses could be a key converging pathway of some BD-associated protein-coding genes and miRNAs."	"Estrogenic Endocrine Disrupting Chemicals Influencing NRF1 Regulated Gene Networks in the Development of Complex Human Brain Diseases. During the development of an individual from a single cell to prenatal stages to adolescence to adulthood and through the complete life span, humans are exposed to countless environmental and stochastic factors, including estrogenic endocrine disrupting chemicals. Brain cells and neural circuits are likely to be influenced by estrogenic endocrine disruptors (EEDs) because they strongly dependent on estrogens. In this review, we discuss both environmental, epidemiological, and experimental evidence on brain health with exposure to oral contraceptives, hormonal therapy, and EEDs such as bisphenol-A (BPA), polychlorinated biphenyls (PCBs), phthalates, and metalloestrogens, such as, arsenic, cadmium, and manganese. Also we discuss the brain health effects associated from exposure to EEDs including the promotion of neurodegeneration, protection against neurodegeneration, and involvement in various neurological deficits; changes in rearing behavior, locomotion, anxiety, learning difficulties, memory issues, and neuronal abnormalities. The effects of EEDs on the brain are varied during the entire life span and far-reaching with many different mechanisms. To understand endocrine disrupting chemicals mechanisms, we use bioinformatics, molecular, and epidemiologic approaches. Through those approaches, we learn how the effects of EEDs on the brain go beyond known mechanism to disrupt the circulatory and neural estrogen function and estrogen-mediated signaling. Effects on EEDs-modified estrogen and nuclear respiratory factor 1 (NRF1) signaling genes with exposure to natural estrogen, pharmacological estrogen-ethinyl estradiol, PCBs, phthalates, BPA, and metalloestrogens are presented here. Bioinformatics analysis of gene-EEDs interactions and brain disease associations identified hundreds of genes that were altered by exposure to estrogen, phthalate, PCBs, BPA or metalloestrogens. Many genes modified by EEDs are common targets of both 17 β-estradiol (E2) and NRF1. Some of these genes are involved with brain diseases, such as Alzheimer's Disease (AD), Parkinson's Disease, Huntington's Disease, Amyotrophic Lateral Sclerosis, Autism Spectrum Disorder, and Brain Neoplasms. For example, the search of enriched pathways showed that top ten E2 interacting genes in AD-APOE, APP, ATP5A1, CALM1, CASP3, GSK3B, IL1B, MAPT, PSEN2 and TNF-underlie the enrichment of the Kyoto Encyclopedia of Genes and Genomes (KEGG) AD pathway. With AD, the six E2-responsive genes are NRF1 target genes: APBB2, DPYSL2, EIF2S1, ENO1, MAPT, and PAXIP1. These genes are also responsive to the following EEDs: ethinyl estradiol (APBB2, DPYSL2, EIF2S1, ENO1, MAPT, and PAXIP1), BPA (APBB2, EIF2S1, ENO1, MAPT, and PAXIP1), dibutyl phthalate (DPYSL2, EIF2S1, and ENO1), diethylhexyl phthalate (DPYSL2 and MAPT). To validate findings from Comparative Toxicogenomics Database (CTD) curated data, we used Bayesian network (BN) analysis on microarray data of AD patients. We observed that both gender and NRF1 were associated with AD. The female NRF1 gene network is completely different from male human AD patients. AD-associated NRF1 target genes-APLP1, APP, GRIN1, GRIN2B, MAPT, PSEN2, PEN2, and IDE-are also regulated by E2. NRF1 regulates targets genes with diverse functions, including cell growth, apoptosis/autophagy, mitochondrial biogenesis, genomic instability, neurogenesis, neuroplasticity, synaptogenesis, and senescence. By activating or repressing the genes involved in cell proliferation, growth suppression, DNA damage/repair, apoptosis/autophagy, angiogenesis, estrogen signaling, neurogenesis, synaptogenesis, and senescence, and inducing a wide range of DNA damage, genomic instability and DNA methylation and transcriptional repression, NRF1 may act as a major regulator of EEDs-induced brain health deficits. In summary, estrogenic endocrine disrupting chemicals-modified genes in brain health deficits are part of both estrogen and NRF1 signaling pathways. Our findings suggest that in addition to estrogen signaling, EEDs influencing NRF1 regulated communities of genes across genomic and epigenomic multiple networks may contribute in the development of complex chronic human brain health disorders."	"Altered Expression of Genes Encoding Neurotransmitter Receptors in GnRH Neurons of Proestrous Mice. Gonadotropin-releasing hormone (GnRH) neurons play a key role in the central regulation of reproduction. In proestrous female mice, estradiol triggers the pre-ovulatory GnRH surge, however, its impact on the expression of neurotransmitter receptor genes in GnRH neurons has not been explored yet. We hypothesized that proestrus is accompanied by substantial changes in the expression profile of genes coding for neurotransmitter receptors in GnRH neurons. We compared the transcriptome of GnRH neurons obtained from intact, proestrous, and metestrous female GnRH-GFP transgenic mice, respectively. About 1500 individual GnRH neurons were sampled from both groups and their transcriptome was analyzed using microarray hybridization and real-time PCR. In this study, changes in mRNA expression of genes involved in neurotransmitter signaling were investigated. Differential gene expression was most apparent in GABA-ergic (Gabbr1, Gabra3, Gabrb3, Gabrb2, Gabrg2), glutamatergic (Gria1, Gria2, Grin1, Grin3a, Grm1, Slc17a6), cholinergic (Chrnb2, Chrm4) and dopaminergic (Drd3, Drd4), adrenergic (Adra1b, Adra2a, Adra2c), adenosinergic (Adora2a, Adora2b), glycinergic (Glra), purinergic (P2rx7), and serotonergic (Htr1b) receptors. In concert with these events, expression of genes in the signaling pathways downstream to the receptors, i.e., G-proteins (Gnai1, Gnai2, Gnas), adenylate-cyclases (Adcy3, Adcy5), protein kinase A (Prkaca, Prkacb) protein kinase C (Prkca) and certain transporters (Slc1a4, Slc17a6, Slc6a17) were also changed. The marked differences found in the expression of genes involved in neurotransmitter signaling of GnRH neurons at pro- and metestrous stages of the ovarian cycle indicate the differential contribution of these neurotransmitter systems to the induction of the pre-ovulatory GnRH surge, the known prerequisite of the subsequent hormonal cascade inducing ovulation."	"N-Methyl d-Aspartate Receptor Expression Patterns in the Human Fetal Cerebral Cortex. N-methyl d-aspartate receptors (NMDARs), a subtype of glutamate receptor, have important functional roles in cellular activity and neuronal development. They are well-studied in rodent and adult human brains, but limited information is available about their distribution in the human fetal cerebral cortex. Here we show that 3 NMDAR subunits, NR1, NR2A, and NR2B, are expressed in the human cerebral cortex during the second trimester of gestation, a period of intense neurogenesis and synaptogenesis. With increasing fetal age, expression of the NMDAR-encoding genes Grin1 (NR1) and Grin2a (NR2A) increased while Grin2b (NR2B) expression decreased. The protein levels of all 3 subunits paralleled the changes in gene expression. On cryosections, all 3 subunits were expressed in proliferative ventricular and subventricular zones, in radial glia, and in intermediate progenitor cells, consistent with their role in the proliferation of cortical progenitor cells and in the determination of their respective fates. The detection of NR1, NR2A, and NR2B in both glutamatergic and GABAergic neurons of the cortical plate suggests the involvement of NMDARs in the maturation of human cortical neurons and in early synapse formation. Our results and previous studies in rodents suggest that NMDAR expression in the developing human brain is evolutionarily conserved."	"Maternal protein restriction induced-hypertension is associated to oxidative disruption at transcriptional and functional levels in the medulla oblongata. Maternal protein restriction during pregnancy and lactation predisposes the adult offspring to sympathetic overactivity and arterial hypertension. Although the underlying mechanisms are poorly understood, dysregulation of the oxidative balance has been proposed as a putative trigger of neural-induced hypertension. The aim of the study was to evaluate the association between the oxidative status at transcriptional and functional levels in the medulla oblongata and maternal protein restriction induced-hypertension. Wistar rat dams were fed a control (normal protein; 17% protein) or a low protein ((Lp); 8% protein) diet during pregnancy and lactation, and male offspring was studied at 90 days of age. Direct measurements of baseline arterial blood pressure (ABP) and heart rate (HR) were recorded in awakened offspring. In addition, quantitative RT-PCR was used to assess the mRNA expression of superoxide dismutase 1 (SOD1) and 2 (SOD2), catalase (CAT), glutathione peroxidase (GPx), Glutamatergic receptors (Grin1, Gria1 and Grm1) and GABA(A)-receptor-associated protein like 1 (Gabarapl1). Malondialdehyde (MDA) levels, CAT and SOD activities were examined in ventral and dorsal medulla. Lp rats exhibited higher ABP. The mRNA expression levels of SOD2, GPx and Gabarapl1 were down regulated in medullary tissue of Lp rats (P&lt;.05, t test). In addition, we observed that higher MDA levels were associated to decreased SOD (approximately 45%) and CAT (approximately 50%) activities in ventral medulla. Taken together, our data suggest that maternal protein restriction induced-hypertension is associated with medullary oxidative dysfunction at transcriptional level and with impaired antioxidant capacity in the ventral medulla."	"The effect of the NMDA receptor-dependent signaling pathway on cell morphology and melanosome transfer in melanocytes. The pigmentation of skin and hair in mammals is driven by the intercellular transfer of melanosome from the melanocyte to surrounding keratinocytes However, the detailed molecular mechanism is still a subject of investigation. To investigate the effects of N-methyl-d-aspartate (NMDA) receptor-dependent signaling pathway on melanocyte morphologic change and melanosome transfer between melanocytes and keratinocytes. The expression and the intracellular distribution of NMDA receptor in human melanocyte were analyzed by Western blot and immunofluorescence staining. Melanocytes were treated with 100μM NMDA receptor antagonist MK-801 [(+)-5-methyl-10,11-dihydro-5H-dibenzo[a,d] cyclohepten-5,10-imine maleate] and 100μM NMDA receptor agonist NMDA, after which the morphological change of melanocyte dendrites and filopodias were observed by scanning electron microscope. The β-tubulin distribution and intracellular calcium concentration ([Ca<sup>2+</sup>]i) were observed by immunofluorescence staining and flow cytometry under the same treatment respectively. In addition, melanocytes and keratinocytes were co-cultured with or without treatment of MK-801, and the melanosome transfer efficacy were analyzed by flow cytometry. We show that human epidermal melanocytes expresses NMDA receptor 1, one subtype of the ionotropic glutamate receptors (iGluRs). Stimulation with agonist of NMDA receptor increased the number of melanocyte filopodia. In contrast, blockage of NMDA receptor with antagonist decreased the number of melanocyte filopodia and this morphological change was accompanied by the disorganization of β-tubulin microfilaments in the intracellular cytoskeleton. In melanocyte-keratinocyte co-cultures, numerous melanocyte filopodia connect to keratinocyte plasma membranes; agonist of NMDA receptor exhibited an increased number of melanocyte filopodia attachments to keratinocyte, while antagonist of NMDA receptor led to a decreased. Moreover, antagonist of NMDA receptor decreased the intracellular calcium concentration in melanocytes and reduced the efficacy of melanosome transfer. Our data suggest that filopodia delivery is the major mode of melanosome transfer between melanocytes and keratinocytes. NMDA drives melanosome transfer by promoting filopodia delivery and direct morphological effects on melanocytes, while MK-801 affects the intracellular β-tubulin redistribution and the filopodia delivery between melanocytes and keratinocytes. We hypothesize that NMDA receptor-dependent signaling is involved in melanosome transfer, which is associated with calcium influx, cytoskeleton protein redistribution, dendrites and filopodia formation. A thorough understanding of melanosome transfer is crucial for designing treatments for hyper- and hypo-pigmentary disorders of the skin."	"Cognition and Synaptic-Plasticity Related Changes in Aged Rats Supplemented with 8- and 10-Carbon Medium Chain Triglycerides. Brain glucose hypometabolism is a common feature of Alzheimer's disease (AD). Previous studies have shown that cognition is improved by providing AD patients with an alternate energy source: ketones derived from either ketogenic diet or supplementation with medium chain triglycerides (MCT). Recently, data on the neuroprotective capacity of MCT-derived medium chain fatty acids (MCFA) suggest 8-carbon and 10-carbon MCFA may have cognition-enhancing properties which are not related to ketone production. We investigated the effect of 8 week treatment with MCT8, MCT10 or sunflower oil supplementation (5% by weight of chow diet) in 21 month old Wistar rats. Both MCT diets increased ketones plasma similarly compared to control diet, but MCT diets did not increase ketones in the brain. Treatment with MCT10, but not MCT8, significantly improved novel object recognition memory compared to control diet, while social recognition increased in both MCT groups. MCT8 and MCT10 diets decreased weight compared to control diet, where MCFA plasma levels were higher in MCT10 groups than in MCT8 groups. Both MCT diets increased IRS-1 (612) phosphorylation and decreased S6K phosphorylation (240/244) but only MCT10 increased Akt phosphorylation (473). MCT8 supplementation increased synaptophysin, but not PSD-95, in contrast MCT10 had no effect on either synaptic marker. Expression of Ube3a, which controls synaptic stability, was increased by both MCT diets. Cortex transcription via qPCR showed that immediate early genes related to synaptic plasticity (arc, plk3, junb, egr2, nr4a1) were downregulated by both MCT diets while MCT8 additionally down-regulated fosb and egr1 but upregulated grin1 and gba2. These results demonstrate that treatment of 8- and 10-carbon length MCTs in aged rats have slight differential effects on synaptic stability, protein synthesis and behavior that may be independent of brain ketone levels. "	"The role of genes involved in stress, neural plasticity, and brain circuitry in depressive phenotypes: Convergent findings in a mouse model of neglect. Early life neglect increases risk for the development of psychopathologies during childhood and adulthood, including depression and anxiety disorders. We recently reported epigenetic changes in DNA derived from saliva in three genes predicted depression in a cohort of maltreated children: DNA-binding protein inhibitor ID-3 (ID3), Glutamate NMDA Receptor (GRIN1), and Tubulin Polymerization Promoting Protein (TPPP). To validate the role of these genes in depression risk, secondary analyses were conducted of gene expression data obtained from medial prefrontal cortex (mPFC) tissue of mice subjected to a model of maternal neglect which included maternal separation and early weaning (MSEW). Anxiety and depression-like phenotype data derived using the elevated plus maze (EPM) and forced swimming test (FST), respectively, were also available for secondary analyses. Behavioral tests were conducted in MSEW and control adult male mice when they were between 65 and 80days old. ID3, GRIN1 and TPPP gene expression in the mPFC were found to significantly predict behavioral differences in the EPM and FST. These results further support the role of these genes in the etiology of depressive and anxiety phenotypes following early life stress."	"Ionotropic glutamate receptor expression in human white matter. Glutamate is the key excitatory neurotransmitter of the central nervous system (CNS). Its role in human grey matter transmission is well understood, but this is less clear in white matter (WM). Ionotropic glutamate receptors (iGluR) are found on both neuronal cell bodies and glia as well as on myelinated axons in rodents, and rodent WM tissue is capable of glutamate release. Thus, rodent WM expresses many of the components of the traditional grey matter neuron-to-neuron synapse, but to date this has not been shown for human WM. We demonstrate the presence of iGluRs in human WM by immunofluorescence employing high-resolution spectral confocal imaging. We found that the obligatory N-methyl-d-aspartic acid (NMDA) receptor subunit GluN1 and the α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (AMPA) receptor subunit GluA4 co-localized with myelin, oligodendroglial cell bodies and processes. Additionally, GluA4 colocalized with axons, often in distinct clusters. These findings may explain why human WM is vulnerable to excitotoxic events following acute insults such as stroke and traumatic brain injury and in more chronic inflammatory conditions such as multiple sclerosis (MS). Further exploration of human WM glutamate signalling could pave the way for developing future therapies modulating the glutamate-mediated damage in these and other CNS disorders. "	"[Therapy of Antibody-Associated Autoimmune Encephalitis]. The identification of an antibody-associated autoimmune encephalitis underlying diverse syndromes, typically comprising epileptic seizures and neuropsychiatric symptoms, and their favorable prognosis, when treated with immunotherapies, is one of the success stories in neurology in recent years. Here we review current widely used therapy regimens in antibody-associated autoimmune encephalitis and the prognosis of the different antibody-associated sub-forms. The main therapeutic instruments encompass tumor therapy (if tumor is detected) and immunotherapies, though recommendations are mainly based on retrospective data analysis. The primary therapeutic goal is complete remission. The degree to which this can be accomplished depends upon the different sub-forms. "	"Exploring neuroprotective potential of Withania somnifera phytochemicals by inhibition of GluN2B-containing NMDA receptors: An in silico study. N-methyl-d-aspartate receptors (NMDARs) mediated excitotoxicity has been implicated in multi-neurodegenerative diseases. Due to lack of efficacy and adverse effects of NMDA receptor antagonists, search for herbal remedies that may act as therapeutic agents is an active area of research to combat these diseases. Withania somnifera (WS) is being used for centuries as a nerve tonic and Nootropic agents. The present study targets the in silico evaluation of the neuroprotective efficacy of W. somnifera phytochemicals by inhibition of NMDA receptor-mediated excitotoxicity through allosteric inhibition of the GluN2B containing NMDARs. We predict Blood Brain Barrier (BBB) penetration, mutagenicity, drug-likeness and Human Intestinal Absorption properties of 25 WS phytochemicals. Further, molecular docking was performed to know whether these phytochemicals inhibit the GluN2B containing NMDARs or not. The results suggest that Anaferine, Beta-Sitosterol, Withaferin A, Withanolide A, Withanolide B and Withanolide D inhibit GluN2B containing NMDARs through allosteric mode similar to the well-known selective antagonist Ifenprodil. These phytochemicals have potential as an essentially useful oral drug to counter NMDARs mediated excitotoxicity and to treat multi-neurodegenerative diseases. "	"Delineating the GRIN1 phenotypic spectrum: A distinct genetic NMDA receptor encephalopathy. To determine the phenotypic spectrum caused by mutations in GRIN1 encoding the NMDA receptor subunit GluN1 and to investigate their underlying functional pathophysiology. We collected molecular and clinical data from several diagnostic and research cohorts. Functional consequences of GRIN1 mutations were investigated in Xenopus laevis oocytes. We identified heterozygous de novo GRIN1 mutations in 14 individuals and reviewed the phenotypes of all 9 previously reported patients. These 23 individuals presented with a distinct phenotype of profound developmental delay, severe intellectual disability with absent speech, muscular hypotonia, hyperkinetic movement disorder, oculogyric crises, cortical blindness, generalized cerebral atrophy, and epilepsy. Mutations cluster within transmembrane segments and result in loss of channel function of varying severity with a dominant-negative effect. In addition, we describe 2 homozygous GRIN1 mutations (1 missense, 1 truncation), each segregating with severe neurodevelopmental phenotypes in consanguineous families. De novo GRIN1 mutations are associated with severe intellectual disability with cortical visual impairment as well as oculomotor and movement disorders being discriminating phenotypic features. Loss of NMDA receptor function appears to be the underlying disease mechanism. The identification of both heterozygous and homozygous mutations blurs the borders of dominant and recessive inheritance of GRIN1-associated disorders."	"Knockout of NMDA-receptors from parvalbumin interneurons sensitizes to schizophrenia-related deficits induced by MK-801. It has been suggested that a functional deficit in NMDA-receptors (NMDARs) on parvalbumin (PV)-positive interneurons (PV-NMDARs) is central to the pathophysiology of schizophrenia. Supportive evidence come from examination of genetically modified mice where the obligatory NMDAR-subunit GluN1 (also known as NR1) has been deleted from PV interneurons by Cre-mediated knockout of the corresponding gene Grin1 (Grin1(ΔPV) mice). Notably, such PV-specific GluN1 ablation has been reported to blunt the induction of hyperlocomotion (a surrogate for psychosis) by pharmacological NMDAR blockade with the non-competitive antagonist MK-801. This suggests PV-NMDARs as the site of the psychosis-inducing action of MK-801. In contrast to this hypothesis, we show here that Grin1(ΔPV) mice are not protected against the effects of MK-801, but are in fact sensitized to many of them. Compared with control animals, Grin1(ΔPV)mice injected with MK-801 show increased stereotypy and pronounced catalepsy, which confound the locomotor readout. Furthermore, in Grin1(ΔPV)mice, MK-801 induced medial-prefrontal delta (4 Hz) oscillations, and impaired performance on tests of motor coordination, working memory and sucrose preference, even at lower doses than in wild-type controls. We also found that untreated Grin1(ΔPV)mice are largely normal across a wide range of cognitive functions, including attention, cognitive flexibility and various forms of short-term memory. Taken together these results argue against PV-specific NMDAR hypofunction as a key starting point of schizophrenia pathophysiology, but support a model where NMDAR hypofunction in multiple cell types contribute to the disease. "	"ATP1A3 Mutation in Adult Rapid-Onset Ataxia. A 21-year old male presented with ataxia and dysarthria that had appeared over a period of months. Exome sequencing identified a de novo missense variant in ATP1A3, the gene encoding the α3 subunit of Na,K-ATPase. Several lines of evidence suggest that the variant is causative. ATP1A3 mutations can cause rapid-onset dystonia-parkinsonism (RDP) with a similar age and speed of onset, as well as severe diseases of infancy. The patient's ATP1A3 p.Gly316Ser mutation was validated in the laboratory by the impaired ability of the expressed protein to support the growth of cultured cells. In a crystal structure of Na,K-ATPase, the mutated amino acid was directly apposed to a different amino acid mutated in RDP. Clinical evaluation showed that the patient had many characteristics of RDP, however he had minimal fixed dystonia, a defining symptom of RDP. Successive magnetic resonance imaging (MRI) revealed progressive cerebellar atrophy, explaining the ataxia. The absence of dystonia in the presence of other RDP symptoms corroborates other evidence that the cerebellum contributes importantly to dystonia pathophysiology. We discuss the possibility that a second de novo variant, in ubiquilin 4 (UBQLN4), a ubiquitin pathway component, contributed to the cerebellar neurodegenerative phenotype and differentiated the disease from other manifestations of ATP1A3 mutations. We also show that a homozygous variant in GPRIN1 (G protein-regulated inducer of neurite outgrowth 1) deletes a motif with multiple copies and is unlikely to be causative. "	"History of the Concept of Disconnectivity in Schizophrenia. Nearly 60 years ago Seymour Kety proposed that research on genetics and brain pathology, but not on neurochemistry, would ultimately lead to an understanding of the pathophysiology of schizophrenia. This article will demonstrate the prescience of Kety's proposal; advances in our knowledge of brain structure and genetics have shaped our current understanding of the pathophysiology of schizophrenia. Brain-imaging techniques have shown that schizophrenia is associated with cortical atrophy and ventricular enlargement, which progresses for at least a decade after the onset of psychotic symptoms. Cortical atrophy correlates with negative symptoms and cognitive impairment, but not with psychotic symptoms, in schizophrenia. Studies with the Golgi-staining technique that illuminates the entire neuron indicate that cortical atrophy is due to reduced synaptic connectivity on the pyramidal neurons and not due to actual loss of neurons. Results of recent genetic studies indicate that several risk genes for schizophrenia are within two degrees of separation from the N-methy-D-aspartate receptor (NMDAR), a subtype of glutamate receptor that is critical to synapse formation and synaptic plasticity. Inactivation of one of these risk genes that encodes serine racemase, which synthesizes D-serine, an NMDAR co-agonist, reproduces the synaptic pathology of schizophrenia. Thus, widespread loss of cortical synaptic connectivity appears to be the primary pathology in schizophrenia that is driven by multiple risk genes that adversely affect synaptogenesis and synapse maintenance, as hypothesized by Kety. "	"GRIN1 Mutations in Early-Onset Epileptic Encephalopathy. Investigators from Yokohama City University and other medical centers in Israel and Japan reported mutations on N-methyl-D-aspartate (NMDA) receptors subunit GRIN1 (GluN1) identified in patients with nonsyndromic intellectual disability and early-onset epileptic encephalopathy. "	"Influence of Genetic Variants of the N-Methyl-D-Aspartate Receptor on Emotion and Social Behavior in Adolescents. Considerable evidence has suggested that the epigenetic regulation of N-methyl-D-aspartate (NMDA) glutamate receptors plays a crucial role in neuropsychiatric disorders. Previous exploratory studies have been primarily based on evidence from patients and have rarely sampled the general population. This exploratory study examined the relationship of single-nucleotide polymorphism (SNP) variations in the genes encoding the NMDA receptor (i.e., GRIN1, GRIN2A, GRIN2B, GRIN2C, and GRIN2D) with emotion and social behavior in adolescents. For this study, 832 tenth-grade Taiwanese volunteers were recruited, and their scores from the Beck Youth Inventories were used to evaluate their emotional and social impairments. Based on these scores, GRIN1 (rs4880213) was significantly associated with depression and disruptive behavior. In addition, GRIN2B (rs7301328) was significantly associated with disruptive behavior. Because emotional and social impairment greatly influence learning ability, the findings of this study provide important information for clinical treatment and the development of promising prevention and treatment strategies, especially in the area of psychological adjustment. "	"Reversal of social deficits by subchronic oxytocin in two autism mouse models. Social deficits are a hallmark feature of autism spectrum disorder (ASD) and related developmental syndromes. Although there is no standard treatment for social dysfunction, clinical studies have identified oxytocin as a potential therapeutic with prosocial efficacy. We have previously reported that peripheral oxytocin treatment can increase sociability and ameliorate repetitive stereotypy in adolescent mice from the C58/J model of ASD-like behavior. In the present study, we determined that prosocial oxytocin effects were not limited to the adolescent period, since C58/J mice, tested in adulthood, demonstrated significant social preference up to 2 weeks following subchronic oxytocin treatment. Oxytocin was also evaluated in adult mice with underexpression of the N-methyl-d-aspartate receptor NR1 subunit (encoded by Grin1), a genetic model of autism- and schizophrenia-like behavior. Subchronic oxytocin had striking prosocial efficacy in male Grin1 knockdown mice; in contrast, chronic regimens with clozapine (66 mg/kg/day) or risperidone (2 mg/kg/day) failed to reverse deficits in sociability. Neither the subchronic oxytocin regimen, nor chronic treatment with clozapine or risperidone, reversed impaired prepulse inhibition in the Grin1 knockdown mice. Overall, these studies demonstrate oxytocin can enhance sociability in mouse models with divergent genotypes and behavioral profiles, adding to the evidence that this neurohormone could have therapeutic prosocial efficacy across a spectrum of developmental disorders."	"Pretreatment with baicalin attenuates hypoxia and glucose deprivation-induced injury in SH-SY5Y cells. To explore the neuroprotective effects of baicalin against hypoxia and glucose deprivation-reperfusion (OGD/RO)-induced injury in SH-SY5Y cells. SH-SY5Y cells were divided into a control group, a OGD/RO group, which was subject to OGD/RO induction; and 3 baicalin groups subject to baicalin (1, 5, 25 μmol/L) for 2 h before induction of OGD/RO (low-, medium-, and high-dose baicalin groups). Cell viability was detected by thiazolyl blue tetrazolium bromide (MTT) assay and flow cytometric analysis was used to detect cell apoptosis. Real-time polymerase chain reaction was performed to determine the mRNA expression of caspase-3 gene. Western blot analysis was conducted to determine the expression of nuclear factor (NF)-κB and N-methyl-daspartic acid receptor-1 (NMDAR1). Baicalin could significantly attenuate OGD/RO mediated apoptotic cell death in SH-SY5Y cells; the apoptosis rates in the low-, medium- and high-dose groups were 12.1%, 7.9%, and 5.4%, respectively. Western blot and real-time PCR analysis revealed that significant decrease in caspase-3 expression in the baicalin group compared with the OGD/RO group (P&lt;0.01). Additionally, down-regulation of NF-κB and NMDAR1 was observed in the baicalin group compared with those obtained from the OGD/RO group. Compared with the low-dose baicalin group, remarkable decrease was noted in the medium- and high-dose groups (P&lt;0.01). Baicalin pre-treatment attenuates brain ischemia reperfusion injury by suppressing cellular apoptosis."	"Long Noncoding RNA FosDT Promotes Ischemic Brain Injury by Interacting with REST-Associated Chromatin-Modifying Proteins. Ischemia induces extensive temporal changes in cerebral transcriptome that influences the neurologic outcome after stroke. In addition to protein-coding RNAs, many classes of noncoding RNAs, including long noncoding RNAs (LncRNAs), also undergo changes in the poststroke brain. We currently evaluated the functional significance of an LncRNA called Fos downstream transcript (FosDT) that is cogenic with Fos gene. Following transient middle cerebral artery occlusion (MCAO) in adult rats, expression of FosDT and Fos was induced. FosDT knockdown significantly ameliorated the postischemic motor deficits and reduced the infarct volume. Focal ischemia also increased FosDT binding to chromatin-modifying proteins (CMPs) Sin3a and coREST (corepressors of the transcription factor REST). Furthermore, FosDT knockdown derepressed REST-downstream genes GRIA2, NFκB2, and GRIN1 in the postischemic brain. Thus, FosDT induction and its interactions with REST-associated CMPs, and the resulting regulation of REST-downstream genes might modulate ischemic brain damage. LncRNAs, such as FosDT, can be therapeutically targeted to minimize poststroke brain damage. Mammalian brain is abundantly enriched with long noncoding RNAs (LncRNAs). Functional roles of LncRNAs in normal and pathological states are not yet understood. This study identified that LncRNA FosDT induced after transient focal ischemia modulates poststroke behavioral deficits and brain damage. These effects of FosDT in part are due to its interactions with chromatin-modifying proteins Sin3a and coREST (corepressors of the transcription factor REST) and subsequent derepression of REST-downstream genes GRIA2, NFκB2, and GRIN1. Therefore, LncRNA-mediated epigenetic remodeling could determine stroke outcome."	"Hippocampal NMDAR-Wnt-Catenin signaling disrupted with cognitive deficits in adolescent offspring exposed to prenatal hypoxia. Prenatal hypoxia (PH) is one of the most common stresses on fetuses, and might lead to abnormal brain development. This work investigates whether PH affects behavioral development of the learning/memory ability in the adolescent offspring rats and the underlying molecular basis in the brain. In this study, pregnant rats used to generate PH offspring were treated with hypoxia (10.5% oxygen) from gestational day 4 to 21. Brain weights of either the fetuses or the 6-week old offspring in the PH group were found to be significantly lower compared with the control group. Morris water maze tests showed longer escape latency and swimming distance during navigation testing in the PH offspring; retention tests demonstrated less frequency of crossing target areas indicating impaired learning and memory ability in the PH offspring. The expressions of subunits of N-methyl-D-aspartate receptors (NMDARs), Grin1/NR1, Grin2a/NR2A, and Grin2b/NR2B, were significantly decreased in the hippocampus of adolescent offspring in the PH group. Wnt3a as well as active form of β-catenin protein were also significantly down-regulated. Furthermore, the expression of early response gene, Fosl1, was significantly reduced. The results above provide new evidence that PH might result in the spatial acquisition and retrieval deficits in the adolescent offspring, associated with dysregulation of NMDARs-Wnt-Catenin signaling in the hippocampus. This study result deepens the knowledge of the long-term influence of prenatal insults on the neuro-behavioral development. "	"Glutamate Receptors within the Mesolimbic Dopamine System Mediate Alcohol Relapse Behavior. Glutamatergic input within the mesolimbic dopamine (DA) pathway plays a critical role in the development of addictive behavior. Although this is well established for some drugs of abuse, it is not known whether glutamate receptors within the mesolimbic system are involved in mediating the addictive properties of chronic alcohol use. Here we evaluated the contribution of mesolimbic NMDARs and AMPARs in mediating alcohol-seeking responses induced by environmental stimuli and relapse behavior using four inducible mutant mouse lines lacking the glutamate receptor genes Grin1 or Gria1 in either DA transporter (DAT) or D1R-expressing neurons. We first demonstrate the lack of GluN1 or GluA1 in either DAT- or D1R-expressing neurons in our mutant mouse lines by colocalization studies. We then show that GluN1 and GluA1 receptor subunits within these neuronal subpopulations mediate the alcohol deprivation effect, while having no impact on context- plus cue-induced reinstatement of alcohol-seeking behavior. We further validated these results pharmacologically by demonstrating similar reductions in the alcohol deprivation effect after infusion of the NMDAR antagonist memantine into the nucleus accumbens and ventral tegmental area of control mice, and a rescue of the mutant phenotype via pharmacological potentiation of AMPAR activity using aniracetam. In conclusion, dopamine neurons as well as D1R-expressing medium spiny neurons and their glutamatergic inputs via NMDARs and AMPARs act in concert to influence relapse responses. These results provide a neuroanatomical and molecular substrate for relapse behavior and emphasize the importance of glutamatergic drugs in modulating relapse behavior. Here we provide genetic and pharmacological evidence that glutamate receptors within the mesolimbic dopamine system play an essential role in alcohol relapse. Using various inducible and site-specific transgenic mouse models and pharmacological validation experiments, we show that critical subunits of NMDARs and AMPARs expressed either in dopamine neurons or in dopamine receptor D1-containing neurons play an important role in the alcohol deprivation effect (the increase in alcohol intake after a period of abstinence) while having no impact on context- plus cue-induced reinstatement of alcohol-seeking responses. Medications targeting glutamatergic neurotransmission by selective inactivation of these glutamate receptors might have therapeutic efficacy."	"Insecticide imidacloprid influences cognitive functions and alters learning performance and related gene expression in a rat model. The potential toxic effects of several pesticides, including imidacloprid on non-target organisms have not been clearly established. Also, the chronic effects of non-toxic doses on cognitive function in mammals are unknown. In this study, the effects of different doses of imidacloprid on learning and memory of infant and adult rats were evaluated, and the expressions of genes synthesizing proteins known to be associated with learning in brain tissues were also documented. 0.5, 2 and 8 mg/kg doses of imidacloprid were administered to newborn infant and adult Wistar albino rats by gavage. Their learning activities were evaluated, and the expression levels of the inotropic glutamate receptor GRIN1, synoptophysin, growth-associated protein 43 and the muscarinic receptor M1 in hippocampus were determined by real-time PCR method. Learning activities were diminished significantly at 2 and 8 mg/kg doses in the infant model groups and at 8 mg/kg dose in adult rats. Also, expression levels of GRIN1, SYP and GAP-43 were found to be insignificantly altered. Only the expression of M1 were significantly changed in high doses of adult group. Thus imidacloprid in high doses causes deterioration in cognitive functions particularly in infant rats, and this deterioration may be associated with changes in the expressions of related genes. "	"High prevalence of genetic alterations in early-onset epileptic encephalopathies associated with infantile movement disorders. Recent studies have elucidated causative roles for genetic abnormalities in early-onset epileptic encephalopathies (EOEE). Accompanying characteristic features, in addition to seizures, have also been suggested to provide important clues for an early and accurate genetic diagnosis of affected patients. In this study, we investigated the underlying genetic causes in patients with EOEE associated with infantile movement disorders. We examined 11 patients with EOEE and involuntary movements (nine with West syndrome and two with nonsyndromic epileptic encephalopathy). All showed severe developmental delay, cognitive impairment, and involuntary movements such as chorea, ballism, dyskinesia or myoclonus, and hand stereotypies. We performed whole-exome sequencing of 10 patients, while the other patient underwent high-resolution melting analysis of candidate EOEE genes. We identified mutations in CDKL5, SCN2A, SETD5, ALG13, and TBL1XR1 in seven patients with West syndrome, and in SCN1A and GRIN1 in the two patients with unclassified epileptic encephalopathy. All mutations were validated as de novo events. The genetic cause was undetermined in the remaining two patients. We found pathogenic mutations in seven genes, in nine of 11 patients with EOEE and involuntary movements. Although the results of our study are preliminary because of the small number of patients, they nevertheless suggest that specific accompanying phenotypes such as hyperkinetic movements or hand stereotypies could be important in narrowing the disease spectrum and identifying causative genetic abnormalities."	"GRIN1 polymorphisms do not affect susceptibility or phenotype in NMDA receptor encephalitis. To determine whether distinct single nucleotide polymorphisms (SNPs) within the glutamate receptor ionotropic NMDA 1 gene (GRIN1) are associated with NMDA receptor (NMDAR) encephalitis and whether these same variants are associated with variability in the clinical presentation and course of affected patients. We performed clinical follow-up on 48 patients with NMDAR encephalitis and NMDAR autoantibodies detected in serum or CSF. All RefSeq GRIN1 coding exons were sequenced in 39 Caucasian-European patients, and the frequencies of SNPs were compared with those of an ethnically similar population using a case-control study design. Predetermined clinical variables were compared between patients with and without identified SNPs. Two SNPs were identified in GRIN1: 24 (62%) Caucasian-European patients with NMDAR encephalitis had alternate alleles at both rs6293 (exon 6) and rs1126442 (exon 7; exon numbering according to NM_001185090). The SNPs were in complete linkage disequilibrium. The frequency of these variants did not differ between patients with NMDAR encephalitis and ethnically matched individuals in the general population. No differences in clinical presentation, measures of disease severity, clinical course, or outcomes were observed between patients with different genotypes at these SNPs. Disease susceptibility or course in patients with NMDAR encephalitis was not strongly affected by SNPs in GRIN1. This study provides an estimate of the frequency of SNPs in GRIN1 in patients with NMDAR encephalitis and emphasizes the need for multisite collaborative studies enrolling larger numbers of patients to identify the genetic contributions to NMDAR encephalitis."	"Identification of Target Genes Involved in Wound Healing Angiogenesis of Endothelial Cells with the Treatment of a Chinese 2-Herb Formula. Angiogenesis is vitally important in diabetic wound healing. We had previously demonstrated that a Chinese 2-herb formula (NF3) significantly stimulated angiogenesis of HUVEC in wound healing. However, the molecular mechanism has not yet been elucidated. In line with this, global expression profiling of NF3-treated HUVEC was performed so as to assess the regulatory role of NF3 involved in the underlying signaling pathways in wound healing angiogenesis. The microarray results illustrated that different panels of differentially expressed genes were strictly governed in NF3-treated HUVEC in a time-regulated manner. The microarray analysis followed by qRT-PCR and western blotting verification of NF3-treated HUVEC at 6 h revealed the involvement of various genes in diverse biological process, e.g., MAP3K14 in anti-inflammation; SLC5A8 in anti-tumorogenesis; DNAJB7 in protein translation; BIRC5, EPCAM, INSL4, MMP8 and NPR3 in cell proliferation; CXCR7, EPCAM, HAND1 and MMP8 in migration; CXCR7, EPCAM and MMP8 in tubular formation; and BIRC5, CXCR7, EPCAM, HAND1, MMP8 and UBD in angiogenesis. After 16 h incubation of NF3, other sets of genes were shown with differential expression in HUVEC, e.g., IL1RAPL2 and NR1H4 in anti-inflammation; miR28 in anti-tumorogenesis; GRIN1 and LCN1 in anti-oxidation; EPB41 in intracellular signal transduction; PRL and TFAP2A in cell proliferation; miR28, PRL and SCG2 in cell migration; PRL in tubular formation; and miR28, NR1H4 and PRL in angiogenesis. This study provided concrete scientific evidence in support of the regulatory role of NF3 on endothelial cells involved in wound healing angiogenesis. "	"Novel genetic causes for cerebral visual impairment. Cerebral visual impairment (CVI) is a major cause of low vision in children due to impairment in projection and/or interpretation of the visual input in the brain. Although acquired causes for CVI are well known, genetic causes underlying CVI are largely unidentified. DNAs of 25 patients with CVI and intellectual disability, but without acquired (eg, perinatal) damage, were investigated by whole-exome sequencing. The data were analyzed for de novo, autosomal-recessive, and X-linked variants, and subsequently classified into known, candidate, or unlikely to be associated with CVI. This classification was based on the Online Mendelian Inheritance in Man database, literature reports, variant characteristics, and functional relevance of the gene. After classification, variants in four genes known to be associated with CVI (AHDC1, NGLY1, NR2F1, PGAP1) in 5 patients (20%) were identified, establishing a conclusive genetic diagnosis for CVI. In addition, in 11 patients (44%) with CVI, variants in one or more candidate genes were identified (ACP6, AMOT, ARHGEF10L, ATP6V1A, DCAF6, DLG4, GABRB2, GRIN1, GRIN2B, KCNQ3, KCTD19, RERE, SLC1A1, SLC25A16, SLC35A2, SOX5, UFSP2, UHMK1, ZFP30). Our findings show that diverse genetic causes underlie CVI, some of which will provide insight into the biology underlying this disease process. "	"Low expression of Gria1 and Grin1 glutamate receptors in the nucleus accumbens of Spontaneously Hypertensive Rats (SHR). The Spontaneously Hypertensive Rat (SHR) strain is a classical animal model for the study of essential hypertension. Recently, our group suggested that this strain could be a useful animal model for schizophrenia, which is a severe mental illness with involvement of glutamatergic system. The aim of this study is to investigate glutamatergic receptors (Gria1 and Grin1) and glycine transporter (Glyt1) gene expression in the prefrontal cortex (PFC) and nucleus accumbens (NAcc) of SHR animals. The effects in gene expression of a chronic treatment with antipsychotic drugs (risperidone, haloperidol and clozapine) were also analyzed. Animals were treated daily for 30 days, and euthanized for brain tissue collection. The expression pattern was evaluated by Real Time Reverse-Transcriptase (RT) PCR technique. In comparison to control rats, SHR animals present a lower expression of both NMDA (Grin1) and AMPA (Gria1) gene receptors in the NAcc. Antipsychotic treatments were not able to change gene expressions in any of the regions evaluated. These findings provide evidence for the role of glutamatergic changes in schizophrenia-like phenotype of the SHR strain. "	"The effects of single nucleotide polymorphisms in glutamatergic neurotransmission genes on neural response to alcohol cues and craving. The aim of the current study was to determine genotype effects of four single nucleotide polymorphisms (SNPs) in the genes of the N-Methyl-d-aspartate receptor (GRIN1, GRIN2A, GRIN2C) and kainate receptor (GRIK1), which have been previously associated with alcoholism, on behavior, neural cue-reactivity and drinking outcome. Eighty-six abstinent alcohol dependent patients were recruited from an in-patient setting. Neuropsychological tests, genotyping and functional magnetic resonance imaging (fMRI) were used to study genotype effects. GRIN2C risk allele carriers displayed increased alcohol cue-induced activation in the anterior cingulate cortex (ACC) and dorsolateral prefrontal cortex (dlPFC). Neural activation in the ACC positively correlated with craving for alcohol (r = 0.201, P = 0.032), whereas activation in the dlPFC showed a negative association (r = -0.215, P = 0.023). In addition, dlPFC activation predicted time to first relapse (HR = 2.701, 95%CI 1.244-5.864, P = 0.012). GRIK1 risk allele carriers showed increased cue-induced activation in the medial prefrontal (PFC) and orbitofrontal cortex (OFC) and in the lateral PFC and OFC. Activation in both clusters positively correlated with alcohol craving (rmedOFC, medPFC = 0.403, P = 0.001, rlatOFC, latPFC = 0.282, P = 0.008), and activation in the cluster that encompassed the medial OFC predicted time to first relapse (HR = 1.911, 95%CI 1.030-3.545, P = 0.040). Findings indicate that SNPs in the GRIN2C and GRIK1 genes are associated with altered cue-induced brain activation that is related to craving for alcohol and relapse risk. "	"The NMDA receptor functions independently and as an LRP1 co-receptor to promote Schwann cell survival and migration. NMDA receptors (NMDA-Rs) are ionotropic glutamate receptors, which associate with LDL-receptor-related protein-1 (LRP1) to trigger cell signaling in response to protein ligands in neurons. Here, we demonstrate for the first time that the NMDA-R is expressed by rat Schwann cells and functions independently and with LRP1 to regulate Schwann cell physiology. The NR1 (encoded by GRIN1) and NR2b (encoded by GRIN2B) NMDA-R subunits were expressed by cultured Schwann cells and upregulated in sciatic nerves following crush injury. The ability of LRP1 ligands to activate ERK1/2 (also known as MAPK3 and MAPK1, respectively) and promote Schwann cell migration required the NMDA-R. NR1 gene silencing compromised Schwann cell survival. Injection of the LRP1 ligands tissue-type plasminogen activator (tPA, also known as PLAT) or MMP9-PEX into crush-injured sciatic nerves activated ERK1/2 in Schwann cells in vivo, and the response was blocked by systemic treatment with the NMDA-R inhibitor MK801. tPA was unique among the LRP1 ligands examined because tPA activated cell signaling and promoted Schwann cell migration by interacting with the NMDA-R independently of LRP1, albeit with delayed kinetics. These results define the NMDA-R as a Schwann cell signaling receptor for protein ligands and a major regulator of Schwann cell physiology, which may be particularly important in peripheral nervous system (PNS) injury. "	"Gene expression profiling predicts pathways and genes associated with Parkinson's disease. This study was aimed to explore the molecular mechanism of Parkinson's disease (PD) development and discover underlying pathways and genes associated with PD. The microarray data of GSE22491 containing 10 samples from PD patients and 8 samples from healthy controls (HC) were downloaded from the Gene Expression Omnibus (GEO) database. The differentially expressed genes (DEGs) were identified by paired t-test. Then the DEGs were performed cluster and principal component analyses followed by Gene Ontology (GO) and pathway enrichment analyses and protein-protein interaction (PPI) network construction. Total 176 up-regulated DEGs and 49 down-regulated DEGs were identified. Totally, 39 GO terms and 72 pathways were closely related to PD. Pathway of neuronal system was enriched by 10 DEGs such as synapsin I (SYN1), glutamate receptor, ionotropic, N-methyl-D-aspartate 1 (GRIN1) and GRIN2D. In the PPI networks, 18 hub genes were obtained, such as GRIN2D and discs, large (Drosophila) homolog-associated protein 3 (DLGAP3). The pathway of neuronal system and its enriched DEGs may play important roles in PD progression. The DEGs such as SYN1, GRIN1, GRIN2D and DLGAP3 may become promising candidate genes for PD. "	"Ethanol upregulates NMDA receptor subunit gene expression in human embryonic stem cell-derived cortical neurons. Chronic alcohol consumption may result in sustained gene expression alterations in the brain, leading to alcohol abuse or dependence. Because of ethical concerns of using live human brain cells in research, this hypothesis cannot be tested directly in live human brains. In the present study, we used human embryonic stem cell (hESC)-derived cortical neurons as in vitro cellular models to investigate alcohol-induced expression changes of genes involved in alcohol metabolism (ALDH2), anti-apoptosis (BCL2 and CCND2), neurotransmission (NMDA receptor subunit genes: GRIN1, GRIN2A, GRIN2B, and GRIN2D), calcium channel activity (ITPR2), or transcriptional repression (JARID2). hESCs were differentiated into cortical neurons, which were characterized by immunostaining using antibodies against cortical neuron-specific biomarkers. Ethanol-induced gene expression changes were determined by reverse-transcription quantitative polymerase chain reaction (RT-qPCR). After a 7-day ethanol (50 mM) exposure followed by a 24-hour ethanol withdrawal treatment, five of the above nine genes (including all four NMDA receptor subunit genes) were highly upregulated (GRIN1: 1.93-fold, P = 0.003; GRIN2A: 1.40-fold, P = 0.003; GRIN2B: 1.75-fold, P = 0.002; GRIN2D: 1.86-fold, P = 0.048; BCL2: 1.34-fold, P = 0.031), and the results of GRIN1, GRIN2A, and GRIN2B survived multiple comparison correction. Our findings suggest that alcohol responsive genes, particularly NMDA receptor genes, play an important role in regulating neuronal function and mediating chronic alcohol consumption-induced neuroadaptations. "	"Sex differences in glutamate receptor gene expression in major depression and suicide. Accumulating data indicate that the glutamate system is disrupted in major depressive disorder (MDD), and recent clinical research suggests that ketamine, an antagonist of the N-methyl-d-aspartate (NMDA) glutamate receptor (GluR), has rapid antidepressant efficacy. Here we report findings from gene expression studies of a large cohort of postmortem subjects, including subjects with MDD and controls. Our data reveal higher expression levels of the majority of glutamatergic genes tested in the dorsolateral prefrontal cortex (DLPFC) in MDD (F21,59=2.32, P=0.006). Posthoc data indicate that these gene expression differences occurred mostly in the female subjects. Higher expression levels of GRIN1, GRIN2A-D, GRIA2-4, GRIK1-2, GRM1, GRM4, GRM5 and GRM7 were detected in the female patients with MDD. In contrast, GRM5 expression was lower in male MDD patients relative to male controls. When MDD suicides were compared with MDD non-suicides, GRIN2B, GRIK3 and GRM2 were expressed at higher levels in the suicides. Higher expression levels were detected for several additional genes, but these were not statistically significant after correction for multiple comparisons. In summary, our analyses indicate a generalized disruption of the regulation of the GluRs in the DLPFC of females with MDD, with more specific GluR alterations in the suicides and in the male groups. These data reveal further evidence that, in addition to the NMDA receptor, the AMPA, kainate and the metabotropic GluRs may be targets for the development of rapidly acting antidepressant drugs. "	"Bidirectional Effect of Pregnenolone Sulfate on GluN1/GluN2A N-Methyl-D-Aspartate Receptor Gating Depending on Extracellular Calcium and Intracellular Milieu. Pregnenolone sulfate (PS), one of the most commonly occurring neurosteroids in the central nervous system, influences the function of several receptors. PS modulates N-methyl-D-aspartate receptors (NMDARs) and has been shown to have both positive and negative modulatory effects on NMDAR currents generally in a subtype-selective manner. We assessed the gating mechanism of PS modulation of GluN1/GluN2A receptors transiently expressed in human embryonic kidney 293 cells using whole-cell and single-channel electrophysiology. Only a modest effect on the whole-cell responses was observed by PS in dialyzed (nonperforated) whole-cell recordings. Interestingly, in perforated conditions, PS was found to increase the whole-cell currents in the absence of nominal extracellular Ca(2+), whereas PS produced an inhibition of the current responses in the presence of 0.5 mM extracellular Ca(2+). The Ca(2+)-binding DRPEER motif and GluN1 exon-5 were found to be critical for the Ca(2+)-dependent bidirectional effect of PS. Single-channel cell-attached analysis demonstrated that PS primarily affected the mean open time to produce its effects: positive modulation mediated by an increase in duration of open time constants, and negative modulation mediated by a reduction in the time spent in a long-lived open state of the receptor. Further kinetic modeling of the single-channel data suggested that the positive and negative modulatory effects are mediated by different gating steps which may represent GluN2 and GluN1 subunit-selective conformational changes, respectively. Our studies provide a unique mechanism of modulation of NMDARs by an endogenous neurosteroid, which has implications for identifying state-dependent molecules."	"A 16-year-old girl with anti-NMDA-receptor encephalitis and family history of psychotic disorders. Autoimmune NMDA-R encephalitis (ANRE) shares clinical features with schizophrenia. Recent research also indicates that both disorders are associated with dysfunction of the N-Methyl-D-Aspartate glutamate receptors (NMDA-R) subunit 1. We present the case of Ms A, 16 years old. Ms A presented with acute personality change, bizarre behaviour, delusional ideas and atypical seizures. She had a family history of psychotic disorders, and autistic traits diagnosed in childhood. She was initially diagnosed with a psychotic disorder. Delayed testing of CSF indicated ANRE. As the patient was a Jehovah's witness the treating team was unable to use gammaglobulin therapy; they instead relied on combined plasmapheresis and rituximab. To exclude the possibility that the affected members of this family shared a gene coding for an abnormal configuration of the NMDA receptor subunit 1 we sequenced the region of the GRIN1 gene in DNA extracted from blood in both Ms A and her grandmother. Ms A's condition improved dramatically, though her long-term memory is still demonstrably impaired. No genetic abnormality was detected. This case emphasizes how important it is, for a first episode psychosis, to exclude ANRE and other autoimmune synaptic encephalitides, even in the face of significant family history, and if seronegative, the importance of testing for CSF autoantibodies."	"NTRK2 expression levels are reduced in laser captured pyramidal neurons from the anterior cingulate cortex in males with autism spectrum disorder. The anterior cingulate cortex (ACC) is a brain area involved in modulating behavior associated with social interaction, disruption of which is a core feature of autism spectrum disorder (ASD). Functional brain imaging studies demonstrate abnormalities of the ACC in ASD as compared to typically developing control patients. However, little is known regarding the cellular basis of these functional deficits in ASD. Pyramidal neurons in the ACC are excitatory glutamatergic neurons and key cellular mediators of the neural output of the ACC. This study was designed to investigate the potential role of ACC pyramidal neurons in ASD brain pathology. Postmortem ACC tissue from carefully matched ASD and typically developing control donors was obtained from two national brain collections. Pyramidal neurons and surrounding astrocytes were separately collected from layer III of the ACC by laser capture microdissection. Isolated RNA was subjected to reverse transcription and endpoint PCR to determine gene expression levels for 16 synaptic genes relevant to glutamatergic neurotransmission. Cells were also collected from the prefrontal cortex (Brodmann area 10) to examine those genes demonstrating differences in expression in the ACC comparing typically developing and ASD donors. The level of NTRK2 expression was robustly and significantly lower in pyramidal neurons from ASD donors as compared to typically developing donors. Levels of expression of GRIN1, GRM8, SLC1A1, and GRIP1 were modestly lower in pyramidal neurons from ASD donors, but statistical significance for these latter genes did not survive correction for multiple comparisons. No significant expression differences of any genes were found in astrocytes laser captured from the same neocortical area. In addition, expression levels of NTRK2 and other synaptic genes were normal in pyramidal neurons laser captured from the prefrontal cortex. These studies demonstrate a unique pathology of neocortical pyramidal neurons of the ACC in ASD. NTRK2 encodes the tropomyosin receptor kinase B (TrkB), transmission through which neurotrophic factors modify differentiation, plasticity, and synaptic transmission. Reduced pyramidal neuron NTRK2 expression in the ACC could thereby contribute to abnormal neuronal activity and disrupt social behavior mediated by this brain region."	"Semi-quantitative analyses of antibodies to N-methyl-d-aspartate type glutamate receptor subunits (GluN2B &amp; GluN1) in the clinical course of Rasmussen syndrome. In Rasmussen syndrome (RS), in addition to the predominant involvement of cytotoxic T cells, heterogeneous autoantibodies against neural molecules are also found, but their function has not been elucidated. We examined antibodies to N-methyl-d-aspartate (NMDA) type glutamate receptor (GluR) subunits (GluN2B &amp; GluN1) semi-quantitatively in cerebrospinal fluid (CSF) samples from RS patients, and evaluated their changes over time and their roles in immunopathogenesis. Autoantibodies against N-terminal and C-terminal of GluN2B and GluN1 were examined in 40 CSF samples collected from 18 RS patients 5 to 180 months after the onset of RS. Epileptic patients without infectious etiology or progressive clinical course served as disease controls (n=23). Synthesized peptides encoding the extracellular and intracellular domains of human GluN2B and GluN1 subunits were used as antigens in ELISA. We defined the cut-off for these antibodies as mean +2 standard deviations (optimal density) of the disease controls. MRI were evaluated according to the MRI staging proposed by Bien et al. (2002b, Neurology 58, 250). CSF levels of antibodies against N-terminal and C-terminal of GluN2B were higher in RS patients than in disease controls (p&lt;0.01). Likewise, CSF levels of antibodies against N-terminal and C-terminal of GluN1 were also higher in RS patients than in disease controls (p&lt;0.01). All four antibodies tested were below cut-off levels in almost all CSF samples collected within one year from epilepsy onset. The proportions of CSF samples with these antibodies above cut-off levels were highest from 12 to 23 months after epilepsy onset, and declined after 24 months. CSF levels of these antibodies were higher when seizure occurred daily than when seizure occurred less frequently (p&lt;0.01), and were higher at MRI stage 3 than at MRI stages 0, 2 and 4 (p&lt;0.05), except for anti-GluN1-CT antibody at stage 2. Broad epitope recognition spectrum and delayed production of autoantibodies to NMDA type GluR in CSF of RS patients suggest that the autoantibodies are produced against NMDA type GluR antigens derived from cytotoxic T cell-mediated neuronal damages. These antibodies may impact the pathophysiology of RS in the most active stage, and could be a marker for active inflammation in the clinical course of RS. Further studies including passive transfer of the antibodies to mice may reveal the pivotal roles of the antibodies in RS."	"Absence of N-Methyl-D-Aspartate Receptor IgG Autoantibodies in Schizophrenia: The Importance of Cross-Validation Studies. NA"	"Grin1 deletion in CRF neurons sex-dependently enhances fear, sociability, and social stress responsivity. The corticotropin releasing factor (CRF) system plays a critical role in responses to stressful stimuli, and is expressed in many areas of the brain involved in processing fear, anxiety, and social behaviors. To better understand the mechanisms by which the CRF system modulates responses to stressful events and social stimuli, we employed a mouse model that selectively disrupts NMDA receptor function via NMDA receptor subunit NR1 (Grin1) knockout specifically in Cre-expressing CRF neurons. These animals (Cre+/(fGrin1+)) were compared with littermates lacking Cre expression (Cre-/(fGrin1+)). Following cue discrimination fear conditioning, male Cre+/(fGrin1+) mice showed increased fear expression to the tone paired with a foot shock (CS+) while still discriminating the CS+ from a tone never paired with a foot shock (CS-). In contrast to males, female mice learned and discriminated fear cues equivalently across the genotypes. Similarly, no genotype differences in sociability or social novelty were observed in female mice, but Cre+/(fGrin1+) males displayed greater naive sociability and preference for social novelty than Cre-/(fGrin1+) littermates. Furthermore, the level of social withdrawal exhibited by male Cre+/(fGrin1+) mice susceptible to social defeat stress relative to same genotype controls was significantly more pronounced than that displayed by susceptible Cre-/(fGrin1+) mice compared to control Cre-/(fGrin1+) mice. Together, these results demonstrate increased fear, social, and stress responsiveness specifically in male Cre+/(fGrin1+) mice. Our findings indicate that NMDA-mediated glutamatergic regulation of CRF neurons is important for appropriately regulating fear and social responses, likely functioning to promote survival under aversive circumstances. "	"Differential Gene Expression in Gonadotropin-Releasing Hormone Neurons of Male and Metestrous Female Mice. Gonadotropin-releasing hormone (GnRH) neurons play a pivotal role in the regulation of the hypothalamic-pituitary gonadal axis in a sex-specific manner. We hypothesized that the differences seen in reproductive functions of males and females are associated with a sexually dimorphic gene expression profile of GnRH neurons. We compared the transcriptome of GnRH neurons obtained from intact metestrous female and male GnRH-green fluorescent protein transgenic mice. About 1,500 individual GnRH neurons from each sex were sampled with laser capture microdissection followed by whole-transcriptome amplification for gene expression profiling. Under stringent selection criteria (fold change &gt;1.6, adjusted p value 0.01), Affymetrix Mouse Genome 430 PM array analysis identified 543 differentially expressed genes. Sexual dimorphism was most apparent in gene clusters associated with synaptic communication, signal transduction, cell adhesion, vesicular transport and cell metabolism. To validate microarray results, 57 genes were selected, and 91% of their differential expression was confirmed by real-time PCR. Similarly, 88% of microarray results were confirmed with PCR from independent samples obtained by patch pipette harvesting and pooling of 30 GnRH neurons from each sex. We found significant differences in the expression of genes involved in vesicle priming and docking (Syt1, Cplx1), GABAergic (Gabra3, Gabrb3, Gabrg2) and glutamatergic (Gria1, Grin1, Slc17a6) neurotransmission, peptide signaling (Sstr3, Npr2, Cxcr4) and the regulation of intracellular ion homeostasis (Cacna1, Cacnb1, Cacng5, Kcnq2, Kcnc1). The striking sexual dimorphism of the GnRH neuron transcriptome we report here contributes to a better understanding of the differences in cellular mechanisms of GnRH neurons in the two sexes."	"Methamphetamine blunts Ca(2+) currents and excitatory synaptic transmission through D1/5 receptor-mediated mechanisms in the mouse medial prefrontal cortex. Psychostimulant addiction is associated with dysfunctions in frontal cortex. Previous data demonstrated that repeated exposure to methamphetamine (METH) can alter prefrontal cortex (PFC)-dependent functions. Here, we show that withdrawal from repetitive non-contingent METH administration (7 days, 1 mg/kg) depressed voltage-dependent calcium currents (ICa ) and increased hyperpolarization-activated cation current (IH ) amplitude and the paired-pulse ratio of evoked excitatory postsynaptic currents (EPSCs) in deep-layer pyramidal mPFC neurons. Most of these effects were blocked by systemic co-administration of the D1/D5 receptor antagonist SCH23390 (0.5 and 0.05 mg/kg). In vitro METH (i.e. bath-applied to slices from naïve-treated animals) was able to emulate its systemic effects on ICa and evoked EPSCs paired-pulse ratio. We also provide evidence of altered mRNA expression of (1) voltage-gated calcium channels P/Q-type Cacna1a (Cav 2.1), N-type Cacna1b (Cav 2.2), T-type Cav 3.1 Cacna1g, Cav 3.2 Cacna1h, Cav 3.3 Cacna1i and the auxiliary subunit Cacna2d1 (α2δ1); (2) hyperpolarization-activated cyclic nucleotide-gated channels Hcn1 and Hcn2; and (3) glutamate receptors subunits AMPA-type Gria1, NMDA-type Grin1 and metabotropic Grm1 in the mouse mPFC after repeated METH treatment. Moreover, we show that some of these changes in mRNA expression were sensitive D1/5 receptor blockade. Altogether, these altered mechanisms affecting synaptic physiology and transcriptional regulation may underlie PFC functional alterations that could lead to PFC impairments observed in METH-addicted individuals. "	"GRIN1 mutations cause encephalopathy with infantile-onset epilepsy, and hyperkinetic and stereotyped movement disorders. Recently, de novo mutations in GRIN1 have been identified in patients with nonsyndromic intellectual disability and epileptic encephalopathy. Whole exome sequencing (WES) analysis of patients with genetically unsolved epileptic encephalopathies identified four patients with GRIN1 mutations, allowing us to investigate the phenotypic spectrum of GRIN1 mutations. Eighty-eight patients with unclassified early onset epileptic encephalopathies (EOEEs) with an age of onset &lt;1 year were analyzed by WES. The effect of mutations on N-methyl-D-aspartate (NMDA) receptors was examined by mapping altered amino acids onto three-dimensional models. We identified four de novo missense GRIN1 mutations in 4 of 88 patients with unclassified EOEEs. In these four patients, initial symptoms appeared within 3 months of birth, including hyperkinetic movements in two patients (2/4, 50%), and seizures in two patients (2/4, 50%). Involuntary movements, severe developmental delay, and intellectual disability were recognized in all four patients. In addition, abnormal eye movements resembling oculogyric crises and stereotypic hand movements were observed in two and three patients, respectively. All the four patients exhibited only nonspecific focal and diffuse epileptiform abnormality, and never showed suppression-burst or hypsarrhythmia during infancy. A de novo mosaic mutation (c.1923G&gt;A) with a mutant allele frequency of 16% (in DNA of blood leukocytes) was detected in one patient. Three mutations were located in the transmembrane domain (3/4, 75%), and one in the extracellular loop near transmembrane helix 1. All the mutations were predicted to impair the function of the NMDA receptor. Clinical features of de novo GRIN1 mutations include infantile involuntary movements, seizures, and hand stereotypies, suggesting that GRIN1 mutations cause encephalopathy resulting in seizures and movement disorders."	"CA1-specific deletion of NMDA receptors induces abnormal renewal of a learned fear response. CA1 hippocampal N-methyl-d-aspartate-receptors (NMDARs) are necessary for contextually related learning and memory processes. Extinction, a form of learning, has been shown to require intact hippocampal NMDAR signalling. Renewal of fear expression can occur after fear extinction training, when the extinguished fear stimulus is presented in an environmental context different from the training context and thus, renewal is dependent on contextual memory. In this study, we show that a Grin1 knock-out (loss of the essential NR1 subunit for the NMDAR) restricted to the bilateral CA1 subfield of the dorsal hippocampus does not affect acquisition of learned fear, but does attenuate extinction of a cued fear response even when presented in the extinction-training context. We propose that failure to remember the (safe) extinction context is responsible for the abnormal fear response and suggest it is a dysfunctional renewal. The results highlight the difference in outcome of extinguished fear memory resulting from a partial rather than complete loss of function of the hippocampus and suggest a potential mechanism for abnormally increased fear expression in PTSD."	"Association of GRIN1, ABCB1, and DRD4 genes and response to antipsychotic drug treatment in schizophrenia. NA"	"Prefrontal NMDA receptors expressed in excitatory neurons control fear discrimination and fear extinction. N-methyl-D-aspartate receptors (NMDARs) are critically involved in various learning mechanisms including modulation of fear memory, brain development and brain disorders. While NMDARs mediate opposite effects on medial prefrontal cortex (mPFC) interneurons and excitatory neurons, NMDAR antagonists trigger profound cortical activation. The objectives of the present study were to determine the involvement of NMDARs expressed specifically in excitatory neurons in mPFC-dependent adaptive behaviors, specifically fear discrimination and fear extinction. To achieve this, we tested mice with locally deleted Grin1 gene encoding the obligatory NR1 subunit of the NMDAR from prefrontal CamKIIα positive neurons for their ability to distinguish frequency modulated (FM) tones in fear discrimination test. We demonstrated that NMDAR-dependent signaling in the mPFC is critical for effective fear discrimination following initial generalization of conditioned fear. While mice with deficient NMDARs in prefrontal excitatory neurons maintain normal responses to a dangerous fear-conditioned stimulus, they exhibit abnormal generalization decrement. These studies provide evidence that NMDAR-dependent neural signaling in the mPFC is a component of a neural mechanism for disambiguating the meaning of fear signals and supports discriminative fear learning by retaining proper gating information, viz. both dangerous and harmless cues. We also found that selective deletion of NMDARs from excitatory neurons in the mPFC leads to a deficit in fear extinction of auditory conditioned stimuli. These studies suggest that prefrontal NMDARs expressed in excitatory neurons are involved in adaptive behavior. "	"Upregulation of RBFOX1 in the malformed cortex of patients with intractable epilepsy and in cultured rat neurons. Mutations in RNA‑binding Fox 1 (RBFOX1) are known to be associated with neurodevelopmental disorders including epilepsy, mental retardation and autism spectrum disorder. The deletion of the Rbfox1 gene in mice has been shown to result in heightened susceptibility to seizures. However, other studies have revealed mutations or the downregulation of RBFOX1 in specimens obtained from patients with epilepsy or malformations of cortical development (MCD). Generally, the expression of RBFOX1 varies according to tissue type. In this study, we demonstrated the upregulation of RBFOX1 protein in the cortex of patients with MCD and intractable epilepsy. Electrophysiological recordings of cultured rat cortical neurons with increased Rbfox1 expression also revealed a significantly increased amplitude of action potential (AP) and Na+ current density. Some of these neurons (26.32%) even displayed spontaneous, recurrent, epileptiform discharges (SREDs). Additionally, certain Rbfox1 target transcripts associated with epilepsy, including glutamate receptor, ionotropic, N-methyl D-aspartate 1 [Grin1, also known as N-methyl-D-aspartate receptor subunit NR1 (NMDAR1)], synaptosomal-associated protein, 25 kDa (SNAP‑25 or Snap25) and sodium channel, voltage gated, type VIII, alpha subunit (Scn8a, also known as Nav1.6) were identified to be upregulated in these cultured cortical neurons with an upregulated Rbfox1 expression. These data suggest that the upregulation of RBFOX1 contributes to neuronal hyperexcitation and seizures. The upregulation of NMDAR1 (Grin1), SNAP‑25 (Snap25) and Scn8a may thus be involved in Rbfox1‑related neuronal hyperexcitation."	"Additive effect of MTHFR and GRIN1 genetic polymorphisms on the risk of schizophrenia. Schizophrenia is a complex disorder with polygenic inheritance. The MTHFR gene (OMIM: 607093) plays an important role in the folate metabolism. It has been suggested that C677T (rs1801133) and A1298C (rs1801131) genetic polymorphisms in the MTHFR gene lead to the decreased activity of the methylenetetrahydrofolate reductase enzyme which may have significant effect on developing schizophrenia. We used a case-control study to establish the possible association between the C677T and the A1298C polymorphisms and susceptibility to schizophrenia in an Iranian population. The genotypes of the polymorphisms were determined using PCR-RFLP. The data were analyzed by logistic regression model. Data analysis revealed that the combination genotypes of 677CT/1298AA, 677CC/1298CC, 677TT/1298AA, 677CT/1298AC and 677CT/1298CC increase the risk of schizophrenia. In order to evaluate the effect of combined genotypes of the three mentioned polymorphic loci, the frequencies of the compound genotypes were compared between control and patient groups (Table 4). Base on the results, the existence of &gt;4 risk factors showed about 32-fold increased risk for schizophrenia (OR=32.3, 95% CI: 5.52-188, P=&lt;0.001)."	"Differential effects between one week and four weeks exposure to same mass of SO2 on synaptic plasticity in rat hippocampus. Sulfur dioxide (SO2 ) is a ubiquitous air pollutant. The previous studies have documented the adverse effects of SO2 on nervous system health, suggesting that acutely SO2 inhalation at high concentration may be associated with neurotoxicity and increase risk of hospitalization and mortality of many brain disorders. However, the remarkable features of air pollution exposure are lifelong duration and at low concentration; and it is rarely reported that whether there are different responses on synapse when rats inhaled same mass of SO2 at low concentration with a longer term. In this study, we evaluated the synaptic plasticity in rat hippocampus after exposure to same mass of SO2 at various concentrations and durations (3.5 and 7 mg/m(3) , 6 h/day, for 4 weeks; and 14 and 28 mg/m(3) , 6 h/day, for 1 week). The results showed that the mRNA level of synaptic plasticity marker Arc, glutamate receptors (GRIA1, GRIA2, GRIN1, GRIN2A, and GRIN2B) and the protein expression of memory related kinase p-CaMKпα were consistently inhibited by SO2 both in 1 week and 4 weeks exposure cases; the protein expression of presynaptic marker synaptophysin, postsynaptic density protein 95 (PSD-95), protein kinase A (PKA), and protein kinase C (PKC) were increased in 1 week exposure case, and decreased in 4 weeks exposure case. Our results indicated that SO2 inhalation caused differential synaptic injury in 1 week and 4 weeks exposure cases, and implied the differential effects might result from different PKA- and/or PKC-mediated signal pathway. © 2014 Wiley Periodicals, Inc. Environ Toxicol 31: 820-829, 2016. "	"Presynaptic NMDA receptors - dynamics and distribution in developing axons in vitro and in vivo. During cortical development, N-methyl-D-aspartate (NMDA) receptors (NMDARs) facilitate presynaptic terminal formation, enhance neurotransmitter release and are required in presynaptic neurons for spike-timing-dependent long-term depression (tLTD). However, the extent to which NMDARs are found within cortical presynaptic terminals has remained controversial, and the sub-synaptic localization and dynamics of axonal NMDARs are unknown. Here, using live confocal imaging and biochemical purification of presynaptic membranes, we provide strong evidence that NMDARs localize to presynaptic terminals in vitro and in vivo in a developmentally regulated manner. The NR1 and NR2B subunits (also known as GRIN1 and GRIN2B, respectively) were found within the active zone membrane, where they could respond to synaptic glutamate release. Surprisingly, NR1 also appeared in glutamatergic and GABAergic synaptic vesicles. During synaptogenesis, NR1 was mobile throughout axons - including growth cones and filopodia, structures that are involved in synaptogenesis. Upon synaptogenic contact, NMDA receptors were quickly recruited to terminals by neuroligin-1 signaling. Unlike dendrites, the trafficking and distribution of axonal NR1 were insensitive to activity changes, including NMDA exposure, local glutamate uncaging or action potential blockade. These results support the idea that presynaptic NMDARs play an early role in presynaptic development. "	"Specific contributions of N-methyl-D-aspartate receptors in the dorsal striatum to cognitive flexibility. Behavioral flexibility is known to be mediated by corticostriatal systems and to involve several major neurotransmitter signaling pathways. The current study investigated the effects of inactivation of glutamatergic N-methyl-D-aspartate-(NMDA) receptor signaling in the dorsal striatum on behavioral flexibility in mice. NMDA-receptor inactivation was achieved by virus-mediated inactivation of the Grin1 gene, which encodes the essential NR1 subunit of NMDA receptors. To assess behavioral flexibility, we used a water U-maze paradigm in which mice had to shift from an initially acquired rule to a new rule (strategy shifting) or had to reverse an initially learned rule (reversal learning). Inactivation of NMDA-receptors in all neurons of the dorsal striatum did not affect learning of the initial rule or reversal learning, but impaired shifting from one strategy to another. Strategy shifting was also compromised when NMDA-receptors were inactivated only in dynorphin-expressing neurons in the dorsal striatum, which represent the direct pathway. These data suggest that NMDA-receptor-mediated synaptic plasticity in the dorsal striatum contributes to strategy shifting and that striatal projection neurons of the direct pathway are particularly relevant for this process."	"Grin1 receptor deletion within CRF neurons enhances fear memory. Corticotropin releasing factor (CRF) dysregulation is implicated in mood and anxiety disorders such as posttraumatic stress disorder (PTSD). CRF is expressed in areas engaged in fear and anxiety processing including the central amygdala (CeA). Complicating our ability to study the contribution of CRF-containing neurons to fear and anxiety behavior is the wide variety of cell types in which CRF is expressed. To manipulate specific subpopulations of CRF containing neurons, our lab has developed a mouse with a Cre recombinase gene driven by a CRF promoter (CRFp3.0Cre) (Martin et al., 2010). In these studies, mice that have the gene that encodes NR1 (Grin1) flanked by loxP sites (floxed) were crossed with our previously developed CRFp3.0Cre mouse to selectively disrupt Grin1 within CRF containing neurons (Cre+/fGrin1+). We find that disruption of Grin1 in CRF neurons did not affect baseline levels of anxiety, locomotion, pain sensitivity or exploration of a novel object. However, baseline expression of Grin1 was decreased in Cre+/fGrin1+ mice as measured by RTPCR. Cre+/fGrin1+ mice showed enhanced auditory fear acquisition and retention without showing any significant effect on fear extinction. We measured Gria1, the gene that encodes AMPAR1 and the CREB activator Creb1 in the amygdala of Cre+/fGrin1+ mice after fear conditioning. Both Gria1 and Creb1 were enhanced in the amygdala after training. To determine if the Grin1-expressing CRF neurons within the CeA are responsible for the enhancement of fear memory in adults, we infused a lentivirus with Cre driven by a CRF promoter (LV pCRF-Cre/fGrin1+) into the CeA of floxed Grin1 mice. Cre driven deletion of Grin1 specifically within CRF expressing cells in the CeA also resulted in enhanced fear memory acquisition and retention. Altogether, these findings suggest that selective disruption of Grin1 within CeA CRF neurons strongly enhances fear memory. "	"NMDA receptor-deficient mice display sexual dimorphism in the onset and severity of behavioural abnormalities. N-methyl-d-aspartate (NMDA) receptor-deficient mice can be used to understand the role that NMDA receptors (NMDARs) play in the pathophysiology of neurodevelopmental disorders such as schizophrenia. Genetically modified mice with low levels of NR1 subunit (NR1 knockdown mice) have reduced receptor levels throughout development, and have robust abnormalities in behaviours that are relevant to schizophrenia. We traced the onset and severity of these behaviours at three developmental stages to understand when in development the underlying circuits depend on intact NMDAR function. We examined social behaviour, working memory, executive function, locomotor activity and stereotypy at 3, 6 and 12 weeks of age in NR1 knockdown mice and their wild-type littermates. We discovered that each of these behaviours had a unique developmental trajectory in mutant mice, and males showed an earlier onset and severity than females in several behaviours. Hyperlocomotion was most substantial in juvenile mice and plateaued in adult mice, whereas stereotypy progressively worsened with age. Impairments in working memory and sociability were sexually dimorphic, with deficits first detected in peri-adolescent males but only detected in adult females. Interestingly, executive function was most impaired in peri-adolescent mice of either sex. Furthermore, while juvenile mutant mice had some ability to problem solve in the puzzle box test, the same mice lost this ability when tested 4 weeks later. Our studies highlight key developmental periods for males and females in the expression of behaviours that are relevant to psychiatric disorders."	"Expression of glutamatergic genes in healthy humans across 16 brain regions; altered expression in the hippocampus after chronic exposure to alcohol or cocaine. We analyzed global patterns of expression in genes related to glutamatergic neurotransmission (glutamatergic genes) in healthy human adult brain before determining the effects of chronic alcohol and cocaine exposure on gene expression in the hippocampus. RNA-Seq data from 'BrainSpan' was obtained across 16 brain regions from nine control adults. We also generated RNA-Seq data from postmortem hippocampus from eight alcoholics, eight cocaine addicts and eight controls. Expression analyses were undertaken of 28 genes encoding glutamate ionotropic (AMPA, kainate, NMDA) and metabotropic receptor subunits, together with glutamate transporters. The expression of each gene was fairly consistent across the brain with the exception of the cerebellum, the thalamic mediodorsal nucleus and the striatum. GRIN1, encoding the essential NMDA subunit, had the highest expression across all brain regions. Six factors accounted for 84% of the variance in global gene expression. GRIN2B (encoding GluN2B), was up-regulated in both alcoholics and cocaine addicts (FDR corrected P = 0.008). Alcoholics showed up-regulation of three genes relative to controls and cocaine addicts: GRIA4 (encoding GluA4), GRIK3 (GluR7) and GRM4 (mGluR4). Expression of both GRM3 (mGluR3) and GRIN2D (GluN2D) was up-regulated in alcoholics and down-regulated in cocaine addicts relative to controls. Glutamatergic genes are moderately to highly expressed throughout the brain. Six factors explain nearly all the variance in global gene expression. At least in the hippocampus, chronic alcohol use largely up-regulates glutamatergic genes. The NMDA GluN2B receptor subunit might be implicated in a common pathway to addiction, possibly in conjunction with the GABAB1 receptor subunit."	"Differential alterations of neocortical GluN receptor subunits in patients with mixed subcortical ischemic vascular dementia and Alzheimer's disease. Glutamatergic deficits are well-established neurochemical findings in Alzheimer's disease (AD) and are thought to underlie both cognitive and behavioral symptoms of the disease. However, it is unclear whether subcortical ischemic vascular dementia (SIVD) and mixed SIVD/AD (MixD) manifest similar changes in the glutamatergic system. To measure the immunoreactivities of NMDA receptor GluN1, GluN2A, and GluN2B subunits in SIVD and MixD. Postmortem neocortical tissues from a cohort of well-characterized, longitudinally followed-up patients with SIVD and MixD, together with age-matched controls, were processed for immunoblotting with GluN subunit-specific antibodies. There was a significant reduction of GluN1 only in MixD, while significant increases of GluN2A and GluN2B were found only in SIVD. Furthermore, GluN1 loss and GluN2A/2B upregulation was associated respectively with higher Braak stages and lacunar infarct scores. Our data suggest that the differential alterations of GluN subunits in SIVD and MixD may result from separate, interacting disease processes, and point to the potential utility of glutamatergic approaches for pharmacotherapy."	"Determination of the effects on learning and memory performance and related gene expressions of clothianidin in rat models. Clothianidin (CLO) is one of the pesticides used to protect against insects, and its potential toxic effects on cognitive functions are not clearly known. This study aims to evaluate the possible effects of dose-dependent CLO on learning and memory in infant and adult male rats and the expression of related genes in the hippocampus. Doses of 2, 8 and 24 mg/kg of CLO were administered to newborn infant and adult albino Winstar rats in the form of gavage and dissolved in vehicle matter. Their cognitive and learning functions were evaluated by the Morris water maze and probe tests. Expression levels of N-methyl D-aspartate 1 (GRIN1), muscuranic receptor M1, synoptophysin (SYP) and growth-associated protein 43 (GAP-43) of tissues isolated from the hippocampus were determined using the real-time PCR method. In the Morris water maze test, no change (p &gt; 0.05) was exhibited in the adult and infant rats after CLO was applied, although there was a significant difference (p &lt; 0.05) in performance between infants and the control group after 24 mg/kg was applied in the probe test. Also, expression levels GRIN1, M1, SYP, GAP-43 did not change when compared to the control (p &gt; 0.05). Our study shows that exposure to high doses of CLO causes deterioration of cognitive functions in infant rats. "	"Thalamic NMDA receptor function is necessary for patterning of the thalamocortical somatosensory map and for sensorimotor behaviors. NMDARs play a major role in patterning of topographic sensory maps in the brain. Genetic knock-out of the essential subunit of NMDARs in excitatory cortical neurons prevents whisker-specific neural pattern formation in the barrel cortex. To determine the role of NMDARs en route to the cortex, we generated sensory thalamus-specific NR1 (Grin1)-null mice (ThNR1KO). A multipronged approach, using histology, electrophysiology, optical imaging, and behavioral testing revealed that, in these mice, whisker patterns develop in the trigeminal brainstem but do not develop in the somatosensory thalamus. Subsequently, there is no barrel formation in the neocortex yet a partial afferent patterning develops. Whisker stimulation evokes weak cortical activity and presynaptic neurotransmitter release probability is also affected. We found several behavioral deficits in tasks, ranging from sensorimotor to social and cognitive. Collectively, these results show that thalamic NMDARs play a critical role in the patterning of the somatosensory thalamic and cortical maps and their impairment may lead to pronounced behavioral defects. "	"Efficient strategy for the molecular diagnosis of intellectual disability using targeted high-throughput sequencing. Intellectual disability (ID) is characterised by an extreme genetic heterogeneity. Several hundred genes have been associated to monogenic forms of ID, considerably complicating molecular diagnostics. Trio-exome sequencing was recently proposed as a diagnostic approach, yet remains costly for a general implementation. We report the alternative strategy of targeted high-throughput sequencing of 217 genes in which mutations had been reported in patients with ID or autism as the major clinical concern. We analysed 106 patients with ID of unknown aetiology following array-CGH analysis and other genetic investigations. Ninety per cent of these patients were males, and 75% sporadic cases. We identified 26 causative mutations: 16 in X-linked genes (ATRX, CUL4B, DMD, FMR1, HCFC1, IL1RAPL1, IQSEC2, KDM5C, MAOA, MECP2, SLC9A6, SLC16A2, PHF8) and 10 de novo in autosomal-dominant genes (DYRK1A, GRIN1, MED13L, TCF4, RAI1, SHANK3, SLC2A1, SYNGAP1). We also detected four possibly causative mutations (eg, in NLGN3) requiring further investigations. We present detailed reasoning for assigning causality for each mutation, and associated patients' clinical information. Some genes were hit more than once in our cohort, suggesting they correspond to more frequent ID-associated conditions (KDM5C, MECP2, DYRK1A, TCF4). We highlight some unexpected genotype to phenotype correlations, with causative mutations being identified in genes associated to defined syndromes in patients deviating from the classic phenotype (DMD, TCF4, MECP2). We also bring additional supportive (HCFC1, MED13L) or unsupportive (SHROOM4, SRPX2) evidences for the implication of previous candidate genes or mutations in cognitive disorders. With a diagnostic yield of 25% targeted sequencing appears relevant as a first intention test for the diagnosis of ID, but importantly will also contribute to a better understanding regarding the specific contribution of the many genes implicated in ID and autism."	"Efficient, complete deletion of synaptic proteins using CRISPR. One of the most powerful ways to test the function of a protein is to characterize the consequences of its deletion. In the past, this has involved inactivation of the gene by homologous recombination either in the germline or later through conditional deletion. RNA interference (RNAi) provides an alternative way to knock down proteins, but both of these approaches have their limitations. Recently, the CRISPR/Cas9 system has suggested another way to selectively inactivate genes. We have now tested this system in postmitotic neurons by targeting two well-characterized synaptic proteins, the obligatory GluN1 subunit of the NMDA receptor and the GluA2 subunit of the AMPA receptor. Expression of CRISPR/Cas9 in hippocampal slice cultures completely eliminated NMDA receptor and GluA2 function. CRISPR/Cas9 thus provides a powerful tool to study the function of synaptic proteins. "	"CRISPR/Cas9-mediated gene knock-down in post-mitotic neurons. The prokaryotic adaptive immune system CRISPR/Cas9 has recently been adapted for genome editing in eukaryotic cells. This technique allows for sequence-specific induction of double-strand breaks in genomic DNA of individual cells, effectively resulting in knock-out of targeted genes. It thus promises to be an ideal candidate for application in neuroscience where constitutive genetic modifications are frequently either lethal or ineffective due to adaptive changes of the brain. Here we use CRISPR/Cas9 to knock-out Grin1, the gene encoding the obligatory NMDA receptor subunit protein GluN1, in a sparse population of mouse pyramidal neurons. Within this genetically mosaic tissue, manipulated cells lack synaptic current mediated by NMDA-type glutamate receptors consistent with complete knock-out of the targeted gene. Our results show the first proof-of-principle demonstration of CRISPR/Cas9-mediated knock-down in neurons in vivo, where it can be a useful tool to study the function of specific proteins in neuronal circuits. "	"Magnetic resonance spectroscopy and tissue protein concentrations together suggest lower glutamate signaling in dentate gyrus in schizophrenia. Hippocampal dysfunction in schizophrenia is widely acknowledged, yet the mechanism of such dysfunction remains debated. In this study we investigate the excitatory and inhibitory hippocampal neurotransmission using two complementary methodologies, proton magnetic resonance spectroscopy (MRS) and tissue biochemistry, sampling individuals with schizophrenia in vivo and postmortem hippocampal tissue in vitro. The results show significantly lower glutamate concentrations in hippocampus in schizophrenia, an in vivo finding mirrored by lower GluN1 protein levels selectively in the dentate gyrus (DG) in vitro. In a mouse model with a DG knockout of the GRIN1 gene, we further confirmed that a selective decrease in DG GluN1 is sufficient to decrease the glutamate concentrations in the whole hippocampus. Gamma-aminobutyric acid (GABA) concentrations and GAD67 protein were not significantly different in hippocampus in schizophrenia. Similarly, GABA concentrations in the hippocampi of mice with a DG knockout of the GRIN1 gene were not significantly different from wild type. These findings provide strong evidence implicating the excitatory system within hippocampus in the pathophysiology of schizophrenia, particularly indicating the DG as a site of pathology. "	"Altered expression of Alzheimer's disease-related genes in the cerebellum of autistic patients: a model for disrupted brain connectome and therapy. Autism and Alzheimer's disease (AD) are, respectively, neurodevelopmental and degenerative diseases with an increasing epidemiological burden. The AD-associated amyloid-β precursor protein-α has been shown to be elevated in severe autism, leading to the 'anabolic hypothesis' of its etiology. Here we performed a focused microarray analysis of genes belonging to NOTCH and WNT signaling cascades, as well as genes related to AD and apoptosis pathways in cerebellar samples from autistic individuals, to provide further evidence for pathological relevance of these cascades for autism. By using the limma package from R and false discovery rate, we demonstrated that 31% (116 out of 374) of the genes belonging to these pathways displayed significant changes in expression (corrected P-values &lt;0.05), with mitochondria-related genes being the most downregulated. We also found upregulation of GRIN1, the channel-forming subunit of NMDA glutamate receptors, and MAP3K1, known activator of the JNK and ERK pathways with anti-apoptotic effect. Expression of PSEN2 (presinilin 2) and APBB1 (or F65) were significantly lower when compared with control samples. Based on these results, we propose a model of NMDA glutamate receptor-mediated ERK activation of α-secretase activity and mitochondrial adaptation to apoptosis that may explain the early brain overgrowth and disruption of synaptic plasticity and connectome in autism. Finally, systems pharmacology analyses of the model that integrates all these genes together (NOWADA) highlighted magnesium (Mg(2+)) and rapamycin as most efficient drugs to target this network model in silico. Their potential therapeutic application, in the context of autism, is therefore discussed. "	"Arsenic downregulates gene expression at the postsynaptic density in mouse cerebellum, including genes responsible for long-term potentiation and depression. Arsenic (As) is a neurotoxin induces dysfunction of learning and memory. Research has indicated that cerebellum may be involved in arsenic-induced impairment of learning and memory. However, the molecular mechanisms that underlie these effects remain unclear. This study screened for the differentially expressed genes related to the long-term potentiation and long-term depression (LTP and LTD) at the cerebellar postsynaptic density (PSD) of mice following exposure to arsenic, and we provide evidence of the mechanism by which arsenic adversely affects the functions of learning and memory. Here, SPF mice were exposed to 1ppm, 2ppm and 4ppm As2O3 for 60 days. The ultrastructure of the synapses in cerebella of these mice was observed via transmission electron microscopy. The cerebellum global gene expression of mice exposed to 4ppm As2O3 was determined through GeneChip analysis. We used the web tool DAVID to analyze the Gene Ontology (GO) and KEGG pathways that were significantly enriched among the differentially expressed genes. Our observations of synaptic ultrastructure showed that the thickness of the cerebellar PSD was reduced in mice exposed to arsenic. Go analysis revealed the PSD as a significantly altered cellular component. KEGG pathway analysis showed that LTP and LTD were affected by arsenic with highest statistical significance, and 20 differentially expressed genes were associated with them. Among these differentially expressed genes, significant decreases in the mRNA expressions of CaMKII, Gria1, Gria2, Grin1, Itpr1, Grm1 and PLCβ4 related to the LTP and LTD were found at the PSD of mouse cerebellum exposed to arsenic. The downregulation of these genes was further confirmed via real-time reverse transcription PCR or Western blot at 1ppm, 2ppm and 4ppm As2O3. Our results indicate that the 7 genes with in cerebellar PSDs may be involved in arsenic-induced neurotoxicity, including impairment of learning and memory. "	"A recently-discovered NMDA receptor gene, GRIN3B, is associated with duration mismatch negativity. The study explored associations between mismatch negativity and N-methyl-d-aspartic acid receptor subunit genes, GRIN1, GRIN2B and GRIN3B in healthy subjects and schizophrenia. Nineteen single-nucleotide polymorphisms were genotyped in 138 schizophrenia patients and 103 healthy subjects. Rs2240158 of GRIN3B was significantly associated with mismatch negativity in healthy subjects. "	"Somatic mutation of GRIN2A in malignant melanoma results in loss of tumor suppressor activity via aberrant NMDAR complex formation. The ionotropic glutamate receptors (N-methyl-D-aspartate receptors (NMDARs)) are composed of large complexes of multi-protein subunits creating ion channels in the cell plasma membranes that allow for influx or efflux of mono- or divalent cations (e.g., Ca(2+)) important for synaptic transmissions, cellular migration, and survival. Recently, we discovered the high prevalence of somatic mutations within one of the ionotropic glutamate receptors, GRIN2A, in malignant melanoma. Functional characterization of a subset of GRIN2A mutants demonstrated a loss of NMDAR complex formation between GRIN1 and GRIN2A, increased anchorage-independent growth in soft agar, and increased migration. Somatic mutation of GRIN2A results in a dominant negative effect inhibiting the tumor-suppressive phenotype of wild-type (WT) GRIN2A in melanoma. Depletion of endogenous GRIN2A in melanoma cells expressing WT GRIN2A resulted in increased proliferation compared with control. In contrast, short-hairpin RNA depletion of GRIN2A in mutant cell lines slightly reduced proliferation. Our data show that somatic mutation of GRIN2A results in increased survival, and we demonstrate the functional importance of GRIN2A mutations in melanoma and the significance that ionotropic glutamate receptor signaling has in malignant melanoma."	"[Autoimmune encephalitis as a cause of psychosis]. Antibodies directed to the surface structures of nerve cells may cause autoimmune encephalitis. It may cause limbic encephalitis requiring intensive care, or symptoms are restricted to psychosis. This disease may be impossible to distinguish clinically from a functional psychotic illness. Some of the cases are paraneoplastic, i.e. associated with a diagnosed or latent malignant neoplasia, most commonly ovarian teratoma. The first line treatment for autoimmune encephalitis is an immunomodulatory combination therapy with immunoglobulin and methylprednisolone. We recommend screening of the most common NMDAR and VGKC antibodies related to autoimmune encephalitis from patients having developed a new psychosis."	"[Evaluation of the Methadone Maintenance Program of the Risaralda Mental Hospital]. Psychosocial care and methadone maintenance treatment (MMT) are the preferred strategies for the management of heroin addicts, but the results are still unsatisfactory, justifying the search and intervention of the factors influencing the response to treatment. In order to determine the contribution of demographic, clinical and genetic variables on serum concentrations and response to methadone, we investigated patients on MMT, who were receiving methadone in supervised and unchanged doses at least during the previous two weeks. The age, gender, body mass index (BMI), duration of heroin abuse, addiction to other drugs, criminal background, current daily methadone doses, time spent in the TMM, comorbidity and concomitant medication were recorded. Blood samples were taken for the determination of serum levels of racemic methadone and its R and S-enantiomers, and for typing of candidate alleles of POR, CYP2B6, ABCB1, GRIN1, OPRM1, SLC6A3, DßH and ARRB2 genes, all associated with the metabolism, tissue distribution and mechanism of action of methadone. Methadone quantification was by HPLC-DAD, and the detection of genetic markers by Real Time PCR and VNTR methods. A total of 80 subject volunteers were enrolled, with a mean age of 23.5 (5) years (86% male), all of them were addicts of multiple drugs, 60% with a criminal background, 5.1 (2.9) years taking heroin, and 5.3 (4) months on MMT, and taking a supervised dose of 41 (12) mg/day methadone. The (R), (S) and (R, S) methadone enantiomer trough plasma levels were, 84 (40), 84 (42), and 168 (77) ng/mL, respectively. All genotypes were in Hardy-Weinberg equilibrium. The two urine tests were negative for heroin in 61.3% (49/80) of the volunteers, the decline in cocaine/crack use was 83%, 30% of marijuana, and other psychoactives (inhalants, benzodiazepines, amphetamines) decreased to zero, while the consumption of snuff remained at 93.5% (75/80). Blood concentrations of racemic methadone and its enantiomers were significantly associated with the dose/day of the medication, but none of the other demographic, clinical or genetic variables impacted on serum levels of methadone. As for the results of the MMT, non-users and occasional users of heroin, as well as those who stopped taking other psychoactive drugs, and the ones who did not, were similar as regards the demographic, genetic and clinical variables. This included the blood metahdone concentrations, except for individuals who did not reduce their consumption of other psychoactives other than heroin, who had significantly (P=.03) higher blood levels of S-methadone, compared with those who did stop taking them. There was a significant reduction in the consumption of heroin and other psychoactives, and social rehabilitation of patients. However, the extensive overlap between effective and ineffective doses of methadone suggests the presence of personal and social variables that transcend the simple pharmacological management. These probably need to be addressed more successfully from the psychosocial features, particularly as regards to identifying and overcoming relapse-trigger experiences, as well as certain features of the patient, such as their psychological distress level or their psychiatric disorders."	"Glucocorticoids induce specific ion-channel-mediated toxicity in human rotator cuff tendon: a mechanism underpinning the ultimately deleterious effect of steroid injection in tendinopathy? Glucocorticoid injection (GCI) and surgical rotator cuff repair are two widely used treatments for rotator cuff tendinopathy. Little is known about the way in which medical and surgical treatments affect the human rotator cuff tendon in vivo. We assessed the histological and immunohistochemical effects of these common treatments on the rotator cuff tendon. Controlled laboratory study. Supraspinatus tendon biopsies were taken before and after treatment from 12 patients undergoing GCI and 8 patients undergoing surgical rotator cuff repair. All patients were symptomatic and none of the patients undergoing local GCI had full thickness tears of the rotator cuff. The tendon tissue was then analysed using histological techniques and immunohistochemistry. There was a significant increase in nuclei count and vascularity after rotator cuff repair and not after GCI (both p=0.008). Hypoxia inducible factor 1α (HIF-1α) and cell proliferation were only increased after rotator cuff repair (both p=0.03) and not GCI. The ionotropic N-methyl-d-aspartate receptor 1 (NMDAR1) glutamate receptor was only increased after GCI and not rotator cuff repair (p=0.016). An increase in glutamate was seen in both groups following treatment (both p=0.04), while an increase in the receptor metabotropic glutamate receptor 7 (mGluR7) was only seen after rotator cuff repair (p=0.016). The increases in cell proliferation, vascularity and HIF-1α after surgical rotator cuff repair appear consistent with a proliferative healing response, and these features are not seen after GCI. The increase in the glutamate receptor NMDAR1 after GCI raises concerns about the potential excitotoxic tendon damage that may result from this common treatment."	"Searching for novel Cdk5 substrates in brain by comparative phosphoproteomics of wild type and Cdk5-/- mice. Protein phosphorylation is the most common post-translational modification that regulates several pivotal functions in cells. Cyclin-dependent kinase 5 (Cdk5) is a proline-directed serine/threonine kinase which is mostly active in the nervous system. It regulates several biological processes such as neuronal migration, cytoskeletal dynamics, axonal guidance and synaptic plasticity among others. In search for novel substrates of Cdk5 in the brain we performed quantitative phosphoproteomics analysis, isolating phosphoproteins from whole brain derived from E18.5 Cdk5+/+ and Cdk5-/- embryos, using an Immobilized Metal-Ion Affinity Chromatography (IMAC), which specifically binds to phosphorylated proteins. The isolated phosphoproteins were eluted and isotopically labeled for relative and absolute quantitation (iTRAQ) and mass spectrometry identification. We found 40 proteins that showed decreased phosphorylation at Cdk5-/- brains. In addition, out of these 40 hypophosphorylated proteins we characterized two proteins, :MARCKS (Myristoylated Alanine-Rich protein Kinase C substrate) and Grin1 (G protein regulated inducer of neurite outgrowth 1). MARCKS is known to be phosphorylated by Cdk5 in chick neural cells while Grin1 has not been reported to be phosphorylated by Cdk5. When these proteins were overexpressed in N2A neuroblastoma cell line along with p35, serine phosphorylation in their Cdk5 motifs was found to be increased. In contrast, treatments with roscovitine, the Cdk5 inhibitor, resulted in an opposite effect on serine phosphorylation in N2A cells and primary hippocampal neurons transfected with MARCKS. In summary, the results presented here identify Grin 1 as novel Cdk5 substrate and confirm previously identified MARCKS as a a bona fide Cdk5 substrate. "	"Child abuse, depression, and methylation in genes involved with stress, neural plasticity, and brain circuitry. To determine whether epigenetic markers predict dimensional ratings of depression in maltreated children. A genome-wide methylation study was completed using the Illumina 450K BeadChip array in 94 maltreated and 96 healthy nontraumatized children with saliva-derived DNA. The 450K BeadChip does not include any methylation sites in the exact location as sites in candidate genes previously examined in the literature, so a test for replication of prior research findings was not feasible. Methylation in 3 genes emerged as genome-wide-significant predictors of depression: DNA-Binding Protein Inhibitor ID-3 (ID3); Glutamate Receptor, Ionotropic N-methyl-D-aspartate (NMDA) 1 (GRIN1); and Tubulin Polymerization Promoting Protein (TPPP) (p &lt; 5.0 × 10(-7), all analyses). These genes are all biologically relevant with ID3 involved in the stress response, GRIN1 involved in neural plasticity, and TPPP involved in neural circuitry development. Methylation in CpG sites in candidate genes were not predictors of depression at significance levels corrected for whole genome testing, but maltreated and control children did have significantly different β values after Bonferroni correction at multiple methylation sites in these candidate genes (e.g., BDNF, NR3C1, FKBP5). This study suggests that epigenetic changes in ID3, GRIN1, and TPPP genes, in combination with experiences of maltreatment, may confer risk for depression in children. The study adds to a growing body of literature supporting a role for epigenetic mechanisms in the pathophysiology of stress-related psychiatric disorders. Although epigenetic changes are frequently long lasting, they are not necessarily permanent. Consequently, interventions to reverse the negative biological and behavioral sequelae associated with child maltreatment are briefly discussed."	"The preeminent role of childhood abuse and neglect in vulnerability to major psychiatric disorders: toward elucidating the underlying neurobiological mechanisms. NA"	"Developmental Expression Patterns of GABAA Receptor Subunits in Layer 3 and 5 Pyramidal Cells of Monkey Prefrontal Cortex. Cortical pyramidal neuron activity is regulated in part through inhibitory inputs mediated by GABAA receptors. The subunit composition of these receptors confers distinct functional properties. Thus, developmental shifts in subunit expression will likely influence the characteristics of pyramidal cell firing and the functional maturation of processes that depend on these neurons. We used laser microdissection and PCR to quantify postnatal developmental changes in the expression of GABAA receptor subunits (α1, α2, α5, β2, γ2, and δ) in layer 3 pyramidal cells of monkey prefrontal cortex, which are critical for working memory. To determine the specificity of these changes, we examined glutamate receptor subunits (AMPA Glur1 and NMDA Grin1) and conducted the same analyses in layer 5 pyramidal cells. Expression of GABAA receptor subunit mRNAs changed substantially, whereas glutamate receptor subunit changes were modest over postnatal development. Some transcripts (e.g., GABAA α1) progressively increased from birth until adulthood, whereas others (e.g., GABAA α2) declined with age. Changes in some transcripts were present in only one layer (e.g., GABAA δ). The development of GABAA receptor subunit expression in primate prefrontal pyramidal neurons is protracted and subunit- and layer-specific. These trajectories might contribute to the molecular basis for the maturation of working memory. "	"Adult hemiparkinsonian rats do not benefit from tactile stimulation. Tactile stimulation (TS) applied to adult rats after cortical injury (medial frontal cortex aspiration or sensorimotor pial stripping stroke model) has been previously shown to ameliorate behavioral impairments and to improve morphological parameters like dendritic length of prefrontal cortical neurons (Gibb et al., 2010). The purpose of this study was to examine the effect of TS on healthy and hemiparkinsonian adult rats. Therefore, the animals received TS for 14 days and 15 min three times daily. At different time points rats were tested in various behavioral tests (amphetamine-induced rotation, cylinder test, staircase test). Finally, rats were sacrificed, their brains removed, and processed for Golgi-Cox analyses, tyrosine hydroxylase immunohistochemistry and quantitative RT-PCR. We found that the striatal 6-OHDA lesion itself induced a long-term increase of astroglial Fgf2 transcript levels, but was not further increased by TS. In contrast TS applied to healthy rats elicited a transient short-term increase of Fgf2 in the striatum and Bdnf, Grin1, and Fgf2 in the hippocampus. Moreover, behavioral and histological analyses do not support a beneficial effect of TS for hemiparkinsonian rats, applied for two weeks starting one day after partial striatal 6-OHDA lesion."	"Lipid Nanoparticle Delivery of siRNA to Silence Neuronal Gene Expression in the Brain. Manipulation of gene expression in the brain is fundamental for understanding the function of proteins involved in neuronal processes. In this article, we show a method for using small interfering RNA (siRNA) in lipid nanoparticles (LNPs) to efficiently silence neuronal gene expression in cell culture and in the brain in vivo through intracranial injection. We show that neurons accumulate these LNPs in an apolipoprotein E-dependent fashion, resulting in very efficient uptake in cell culture (100%) with little apparent toxicity. In vivo, intracortical or intracerebroventricular (ICV) siRNA-LNP injections resulted in knockdown of target genes either in discrete regions around the injection site or in more widespread areas following ICV injections with no apparent toxicity or immune reactions from the LNPs. Effective targeted knockdown was demonstrated by showing that intracortical delivery of siRNA against GRIN1 (encoding GluN1 subunit of the NMDA receptor (NMDAR)) selectively reduced synaptic NMDAR currents in vivo as compared with synaptic AMPA receptor currents. Therefore, LNP delivery of siRNA rapidly manipulates expression of proteins involved in neuronal processes in vivo, possibly enabling the development of gene therapies for neurological disorders.Molecular Therapy-Nucleic Acids (2013) 2, e136; doi:10.1038/mtna.2013.65; published online 3 December 2013. "	"Genome-wide approaches reveal EGR1-controlled regulatory networks associated with neurodegeneration. Early growth response gene 1 (Egr1) is a member of the immediate early gene (IEG) family of transcription factors and plays a role in memory formation. To identify EGR1 target genes in brain of Alzheimer's disease (AD) model mice - APP23, we applied chromatin immunoprecipitation (ChIP) followed by high-throughput DNA sequencing (ChIP-seq). Functional annotation of genes associated with EGR1 binding revealed a set of related networks including synaptic vesicle transport, clathrin-mediated endocytosis (CME), intracellular membrane fusion and transmission of signals elicited by Ca(2+) influx. EGR1 binding is associated with significant enrichment of activating chromatin marks and appears enriched near genes that are up-regulated in the brains of APP23 mice. Among the putative EGR1 targets identified and validated in this study are genes related to synaptic plasticity and transport of proteins, such as Arc, Grin1, Syn2, Vamp2 and Stx6, and genes implicated in AD such as Picalm, Psen2 and App. We also demonstrate a potential regulatory link between EGR1 and its newly identified targets in vivo, since conditions that up-regulate Egr1 levels in brain, such as a spatial memory test, also lead to increased expression of the targets. On the other hand, protein levels of EGR1 and ARC, SYN2, STX6 and PICALM are significantly lower in the brain of adult APP mice than in age-matched wild type animals. The results of this study suggest that EGR1 regulates the expression of genes involved in CME, vesicular transport and synaptic transmission that may be critical for AD pathogenesis. "	"Lead induces similar gene expression changes in brains of gestationally exposed adult mice and in neurons differentiated from mouse embryonic stem cells. Exposure to environmental toxicants during embryonic life causes changes in the expression of developmental genes that may last for a lifetime and adversely affect the exposed individual. Developmental exposure to lead (Pb), an ubiquitous environmental contaminant, causes deficits in cognitive functions and IQ, behavioral effects, and attention deficit hyperactivity disorder (ADHD). Long-term effects observed after early life exposure to Pb include reduction of gray matter, alteration of myelin structure, and increment of criminal behavior in adults. Despite growing research interest, the molecular mechanisms responsible for the effects of lead in the central nervous system are still largely unknown. To study the molecular changes due to Pb exposure during neurodevelopment, we exposed mice to Pb in utero and examined the expression of neural markers, neurotrophins, transcription factors and glutamate-related genes in hippocampus, cortex, and thalamus at postnatal day 60. We found that hippocampus was the area where gene expression changes due to Pb exposure were more pronounced. To recapitulate gestational Pb exposure in vitro, we differentiated mouse embryonic stem cells (ESC) into neurons and treated ESC-derived neurons with Pb for the length of the differentiation process. These neurons expressed the characteristic neuronal markers Tubb3, Syp, Gap43, Hud, Ngn1, Vglut1 (a marker of glutamatergic neurons), and all the glutamate receptor subunits, but not the glial marker Gafp. Importantly, several of the changes observed in Pb-exposed mouse brains in vivo were also observed in Pb-treated ESC-derived neurons, including those affecting expression of Ngn1, Bdnf exon IV, Grin1, Grin2D, Grik5, Gria4, and Grm6. We conclude that our ESC-derived model of toxicant exposure during neural differentiation promises to be a useful model to analyze mechanisms of neurotoxicity induced by Pb and other environmental agents. "	"The σ-1 receptor interacts directly with GluN1 but not GluN2A in the GluN1/GluN2A NMDA receptor. The σ-1 receptor (Sig1R) is widely expressed in the CNS, where it has a neuroprotective role in ischemia and stroke and an involvement in schizophrenia. The Sig1R interacts functionally with a variety of ion channels, including the NMDA receptor (NMDAR). Here, we used atomic force microscopy (AFM) imaging to investigate the interaction between the Sig1R and the NMDAR. The Sig1R bound directly to GluN1/GluN2A NMDAR heterotetramers. Furthermore, the mean angle between pairs of bound Sig1Rs was 72°. This result suggested that the Sig1R interacts with either GluN1 or GluN2A, but not both, and supports our recent demonstration that the NMDAR subunits adopt an adjacent (i.e., 1/1/2/2) arrangement. The Sig1R could be coisolated with GluN1 but not with GluN2A, indicating that GluN1 is its specific target within the NMDAR. Consistent with this conclusion, AFM imaging of coisolated Sig1R and GluN1 revealed GluN1 dimers decorated with Sig1Rs. In situ proximity ligation assays demonstrated that the Sig1R interacts with GluN1 (but not with GluN2A) within intact cells and also that its C terminus is extracellular. We conclude that the Sig1R binds to the GluN1/GluN2A NMDAR specifically via the GluN1 subunit. This interaction likely accounts for at least some of the modulatory effects of Sig1R ligands on the NMDAR. "	"Repetitive behavior profile and supersensitivity to amphetamine in the C58/J mouse model of autism. Restricted repetitive behaviors are core symptoms of autism spectrum disorders (ASDs). The range of symptoms encompassed by the repetitive behavior domain includes lower-order stereotypy and self-injury, and higher-order indices of circumscribed interests and cognitive rigidity. Heterogeneity in clinical ASD profiles suggests that specific manifestations of repetitive behavior reflect differential neuropathology. The present studies utilized a set of phenotyping tasks to determine a repetitive behavior profile for the C58/J mouse strain, a model of ASD core symptoms. In an observational screen, C58/J demonstrated overt motor stereotypy, but not over-grooming, a commonly-used measure for mouse repetitive behavior. Amphetamine did not exacerbate motor stereotypy, but had enhanced stimulant effects on locomotion and rearing in C58/J, compared to C57BL/6J. Both C58/J and Grin1 knockdown mice, another model of ASD-like behavior, had marked deficits in marble-burying. In a nose poke task for higher-order repetitive behavior, C58/J had reduced holeboard exploration and preference for non-social, versus social, olfactory stimuli, but did not demonstrate cognitive rigidity following familiarization to an appetitive stimulus. Analysis of available high-density genotype data indicated specific regions of divergence between C58/J and two highly-sociable strains with common genetic lineage. Strain genome comparisons identified autism candidate genes, including Cntnap2 and Slc6a4, located within regions divergent in C58/J. However, Grin1, Nlgn1, Sapap3, and Slitrk5, genes linked to repetitive over-grooming, were not in regions of divergence. These studies suggest that specific repetitive phenotypes can be used to distinguish ASD mouse models, with implications for divergent underlying mechanisms for different repetitive behavior profiles. "	"A combinatorial approach of Proteomics and Systems Biology in unravelling the mechanisms of acute kidney injury (AKI): involvement of NMDA receptor GRIN1 in murine AKI. Acute kidney injury (AKI) is a frequent condition in hospitalised patients undergoing major surgery or the critically ill and is associated with increased mortality. Based on the volume of the published literature addressing this condition, reporting both supporting as well as conflicting molecular evidence, it is apparent that a comprehensive analysis strategy is required to understand and fully delineate molecular events and pathways which can be used to describe disease induction and progression as well as lead to a more targeted approach in intervention therapies. We used a Systems Biology approach coupled with a de-novo high-resolution proteomic analysis of kidney cortex samples from a mouse model of folic acid-induced AKI (12 animals in total) and show comprehensive mapping of signalling cascades, gene activation events and metabolite interference by mapping high-resolution proteomic datasets onto a de-novo hypothesis-free dataspace. The findings support the involvement of the glutamatergic signalling system in AKI, induced by over-activation of the N-methyl-D-aspartate (NMDA)-receptor leading to apoptosis and necrosis by Ca2+-influx, calpain and caspase activation, and co-occurring reactive oxygen species (ROS) production to DNA fragmentation and NAD-rundown. The specific over-activation of the NMDA receptor may be triggered by the p53-induced protein kinase Dapk1, which is a known non-reversible cell death inducer in a neurological context. The pathway mapping is consistent with the involvement of the Renin-Angiotensin Aldosterone System (RAAS), corticoid and TNFα signalling, leading to ROS production and gene activation through NFκB, PPARγ, SMAD and HIF1α trans-activation, as well as p53 signalling cascade activation. Key elements of the RAAS-glutamatergic axis were assembled as a novel hypothetical pathway and validated by immunohistochemistry. This study shows to our knowledge for the first time in a molecular signal transduction pathway map how AKI is induced, progresses through specific signalling cascades that may lead to end-effects such as apoptosis and necrosis by uncoupling of the NMDA receptor. Our results can potentially pave the way for a targeted pharmacological intervention in disease progression or induction."	"Pathological reorganization of NMDA receptors subunits and postsynaptic protein PSD-95 distribution in Alzheimer's disease. In Alzheimer's disease (AD), synaptic alterations play a major role and are often correlated with cognitive changes. In order to better understand synaptic modifications, we compared alterations in NMDA receptors and postsynaptic protein PSD-95 expression in the entorhinal cortex (EC) and frontal cortex (FC; area 9) of AD and control brains. We combined immunohistochemical and image analysis methods to quantify on consecutive sections the distribution of PSD-95 and NMDA receptors GluN1, GluN2A and GluN2B in EC and FC from 25 AD and control cases. The density of stained receptors was analyzed using multivariate statistical methods to assess the effect of neurodegeneration. In both regions, the number of neuronal profiles immunostained for GluN1 receptors subunit and PSD-95 protein was significantly increased in AD compared to controls (3-6 fold), while the number of neuronal profiles stained for GluN2A and GluN2B receptors subunits was on the contrary decreased (3-4 fold). The increase in marked neuronal profiles was more prominent in a cortical band corresponding to layers 3 to 5 with large pyramidal cells. Neurons positive for GluN1 or PSD-95 staining were often found in the same localization on consecutive sections and they were also reactive for the anti-tau antibody AD2, indicating a neurodegenerative process. Differences in the density of immunoreactive puncta representing neuropile were not statistically significant. Altogether these data indicate that GluN1 and PSD-95 accumulate in the neuronal perikarya, but this is not the case for GluN2A and GluN2B, while the neuropile compartment is less subject to modifications. Thus, important variations in the pattern of distribution of the NMDA receptors subunits and PSD-95 represent a marker in AD and by impairing the neuronal network, contribute to functional deterioration. "	"Role of motor cortex NMDA receptors in learning-dependent synaptic plasticity of behaving mice. The primary motor cortex has an important role in the precise execution of learned motor responses. During motor learning, synaptic efficacy between sensory and primary motor cortical neurons is enhanced, possibly involving long-term potentiation and N-methyl-D-aspartate (NMDA)-specific glutamate receptor function. To investigate whether NMDA receptor in the primary motor cortex can act as a coincidence detector for activity-dependent changes in synaptic strength and associative learning, here we generate mice with deletion of the Grin1 gene, encoding the essential NMDA receptor subunit 1 (GluN1), specifically in the primary motor cortex. The loss of NMDA receptor function impairs primary motor cortex long-term potentiation in vivo. Importantly, it impairs the synaptic efficacy between the primary somatosensory and primary motor cortices and significantly reduces classically conditioned eyeblink responses. Furthermore, compared with wild-type littermates, mice lacking NMDA receptors in the [corrected] primary motor cortex show slower learning in Skinner-box tasks. Thus, primary motor cortex NMDA receptors are necessary for activity-dependent synaptic strengthening and associative learning."	"De novo mutations in epileptic encephalopathies. Epileptic encephalopathies are a devastating group of severe childhood epilepsy disorders for which the cause is often unknown. Here we report a screen for de novo mutations in patients with two classical epileptic encephalopathies: infantile spasms (n = 149) and Lennox-Gastaut syndrome (n = 115). We sequenced the exomes of 264 probands, and their parents, and confirmed 329 de novo mutations. A likelihood analysis showed a significant excess of de novo mutations in the ∼4,000 genes that are the most intolerant to functional genetic variation in the human population (P = 2.9 × 10(-3)). Among these are GABRB3, with de novo mutations in four patients, and ALG13, with the same de novo mutation in two patients; both genes show clear statistical evidence of association with epileptic encephalopathy. Given the relevant site-specific mutation rates, the probabilities of these outcomes occurring by chance are P = 4.1 × 10(-10) and P = 7.8 × 10(-12), respectively. Other genes with de novo mutations in this cohort include CACNA1A, CHD2, FLNA, GABRA1, GRIN1, GRIN2B, HNRNPU, IQSEC2, MTOR and NEDD4L. Finally, we show that the de novo mutations observed are enriched in specific gene sets including genes regulated by the fragile X protein (P &lt; 10(-8)), as has been reported previously for autism spectrum disorders. "	"[Correlation between genetic polymorphisms of -855 G/C and -1140 G/A in GRIN1 gene and paranoid schizophrenia]. To investigate the single nucleotide polymorphisms (SNP) of -855 G/C and -1140 G/A in promoter regions of GRIN1 gene and find their genetic correlation to paranoid schizophrenia as well as their applicable values in forensic medicine. The genetic polymorphisms of -855 G/C and -1140 G/A at the 5' end of GRIN1 gene were detected by PCR restriction fragment length polymorphism and PAGE in 183 healthy unrelated individuals of northern Chinese Han population and 172 patients of paranoid schizophrenia, respectively. The chi2 test was used to identify Hardy-Weinberg equilibrium of the genotype distribution. The differences of genotypes and allelic frequency distributions were compared between the two groups. Distributions of the genotypic frequencies satisfied Hardy-Weinberg equilibrium in both groups. The difference of genotypes was statistically significant between female patient group and female control group in -855 G/C distribution (P &lt; 0.05). The differences of genotypes and allelic frequencies were statistically significant not only between the patient group and the control group but also between female patient group and female control group in -1140 G/A distribution (P &lt; 0.05). The SNP of -1140 G/A in promoter regions of GRIN1 gene might positively correlate to paranoid schizophrenia. The genetic factor of schizophrenia is involved in gender tendency. And it could be useful in forensic identification of schizophrenia."	"Genetic variation of GRIN1 confers vulnerability to methamphetamine-dependent psychosis in a Thai population. GRIN1 is a gene that encodes the N-methyl-d aspartate (NMDA) receptor subunit1 (NR1). Variations of GRIN1 have been identified as a risk factor for schizophrenia and drug dependence, supporting hypotheses of glutamatergic dysfunction in these disorders. Methamphetamine (METH) is a psychostimulant drug which can induce psychotic symptoms reminiscent of those found in schizophrenia; thus GRIN1 is a candidate gene for vulnerability to METH dependence or METH-dependent psychosis. The present study examined two polymorphisms of GRIN1, rs11146020 (G1001C) and rs1126442 (G2108A), in 100 male Thai METH-dependent patients and 103 healthy controls using PCR-RFLP techniques. Neither polymorphism was significantly associated with METH dependence, although rs1126442 was highly significantly associated with METH-dependent psychosis, in which the A allele showed reduced frequency (P&lt;0.00001). The present findings indicate that the rs1126442 of GRIN1 contributes to the genetic vulnerability to psychosis in METH-dependent subjects in the Thai population."	"Opposite roles of NMDA receptors in relapsing and primary progressive multiple sclerosis. Synaptic transmission and plasticity mediated by NMDA receptors (NMDARs) could modulate the severity of multiple sclerosis (MS). Here the role of NMDARs in MS was first explored in 691 subjects carrying specific allelic variants of the NR1 subunit gene or of the NR2B subunit gene of this glutamate receptor. The analysis was replicated for significant SNPs in an independent sample of 1548 MS subjects. The C allele of rs4880213 was found to be associated with reduced NMDAR-mediated cortical excitability, and with increased probability of having more disability than the CT/TT MS subjects. MS severity was higher in the CC group among relapsing-remitting MS (RR-MS) patients, while primary progressive MS (PP-MS) subjects homozygous for the T allele had more pronounced clinical worsening. Mean time to first relapse, but not to an active MRI scan, was lower in the CC group of RR-MS patients, and the number of subjects with two or more clinical relapses in the first two years of the disease was higher in CC compared to CT/TT group. Furthermore, the percentage of relapses associated with residual disability was lower in subjects carrying the T allele. Lesion load at the MRI was conversely unaffected by the C or T allele of this SNP in RR-MS patients. Axonal and neuronal degeneration at the optical coherence tomography was more severe in the TT group of PP-MS patients, while reduced retinal nerve fiber thickness had less consequences on visual acuity in RR-MS patients bearing the T allele. Finally, the T allele was associated with preserved cognitive abilities at the Rao's brief repeatable neuropsychological battery in RR-MS. Signaling through glutamate NMDARs enhances both compensatory synaptic plasticity and excitotoxic neurodegeneration, impacting in opposite ways on RR-MS and PP-MS pathophysiological mechanisms. "	"Pharmacological disruption of mouse social approach behavior: relevance to negative symptoms of schizophrenia. Social withdrawal is one of several negative symptoms of schizophrenia, all of which are poorly treated by current therapies. One challenge in developing agents with efficacy against negative symptoms is the lack of suitable preclinical models. The social approach test was used as the basis for developing an assay to test emerging therapies for negative symptoms. NMDA antagonists and dopamine agonists have been used extensively to produce or disrupt behaviors thought to be rodent correlates of positive and cognitive symptoms of schizophrenia. The aim of these studies was to determine whether sociability of mice in the 3-chamber social approach test could be disrupted and whether this paradigm could have utility in predicting efficacy against negative symptoms. The criteria for such a model were: a lack of response to antipsychotics and attenuation by agents such as the glycine agonist, d-cycloserine, which has been shown to possess clinical efficacy against negative symptoms. Administration of the NMDA antagonists MK-801, PCP, or ketamine did not disrupt sociability. In contrast, Grin1 hypomorph mice displayed a social deficit which was not reversed by atypical antipsychotics or d-serine. d-Amphetamine disrupted sociability without stimulating locomotor activity and its effect was not reversed by antipsychotics. The GABAA inverse agonist, FG-7142, reduced sociability and this was reversed by the GABAA antagonist, flumazenil and dcycloserine, but not by clozapine, or the GABAA benzodiazepine anxiolytic, alprazolam. Based on our criteria, the GABAA model warrants further evaluation to confirm that this paradigm has utility as a preclinical model for predicting efficacy against negative symptoms of schizophrenia. "	"Stroke patients develop antibodies that react with components of N-methyl-D-aspartate receptor subunit 1 in proportion to lesion size. Antibodies against neuronal antigens develop in patients after stroke and some may serve as biomarkers of neuronal injury. We aimed to determine whether antibodies against subunit 1 (GluN1) of the N-methyl-D-aspartate receptor also develop after stroke and if so, whether they correlate with stroke characteristics. Forty-eight patients with ischemic stroke and 96 healthy controls were tested for the presence of serum antibodies targeting GluN1. Testing was conducted using 20-kDa recombinant GluN1-S2 peptide (by ELISA and Western blotting) and on rat brain tissue (by Western blotting and immunohistochemistry). Clinical examinations and computed tomographic brain scans were performed to assess clinical state and infarct size and location. Of the 48 patients with ischemic stroke, 21 (44%) had antibodies that reacted with the recombinant GluN1-S2. There was no evidence of antibody binding to intact GluN1 in brain tissue. Western blot appearances suggested reactivity with GluN1 degradation products. Patients with anti-GluN1-S2 antibodies were more likely to have higher National Institutes of Health Stroke Scale scores, larger infarcts, and more frequent cortical involvement. Of the 96 controls, only 3 (3%), all aged&gt;50 years, had antibodies that reacted with GluN1-S2 at low levels. Antibodies that bind recombinant GluN1-S2 peptides (but not the intact GluN1 protein) develop transiently in patients after stroke in proportion to infarct size, suggesting that these antibodies are raised secondarily to neuronal damage. The anti-GluN1-S2 antibodies may provide useful information about the presence and severity of cerebral infarction. This will require confirmation in larger studies."	"ENU-mutagenesis mice with a non-synonymous mutation in Grin1 exhibit abnormal anxiety-like behaviors, impaired fear memory, and decreased acoustic startle response. The Grin1 (glutamate receptor, ionotropic, NMDA1) gene expresses a subunit of N-methyl-D-aspartate (NMDA) receptors that is considered to play an important role in excitatory neurotransmission, synaptic plasticity, and brain development. Grin1 is a candidate susceptibility gene for neuropsychiatric disorders, including schizophrenia, bipolar disorder, and attention deficit/hyperactivity disorder (ADHD). In our previous study, we examined an N-ethyl-N-nitrosourea (ENU)-generated mutant mouse strain (Grin1(Rgsc174)/Grin1+) that has a non-synonymous mutation in Grin1. These mutant mice showed hyperactivity, increased novelty-seeking to objects, and abnormal social interactions. Therefore, Grin1(Rgsc174)/Grin1+ mice may serve as a potential animal model of neuropsychiatric disorders. However, other behavioral characteristics related to these disorders, such as working memory function and sensorimotor gating, have not been fully explored in these mutant mice. In this study, to further investigate the behavioral phenotypes of Grin1(Rgsc174)/Grin1+ mice, we subjected them to a comprehensive battery of behavioral tests. There was no significant difference in nociception between Grin1(Rgsc174)/Grin1+ and wild-type mice. The mutants did not display any abnormalities in the Porsolt forced swim and tail suspension tests. We confirmed the previous observations that the locomotor activity of these mutant mice increased in the open field and home cage activity tests. They displayed abnormal anxiety-like behaviors in the light/dark transition and the elevated plus maze tests. Both contextual and cued fear memory were severely deficient in the fear conditioning test. The mutant mice exhibited slightly impaired working memory in the eight-arm radial maze test. The startle amplitude was markedly decreased in Grin1(Rgsc174)/Grin1+ mice, whereas no significant differences between genotypes were detected in the prepulse inhibition (PPI) test. The mutant mice showed no obvious deficits in social behaviors in three different social interaction tests. This study demonstrated that the Grin1(Rgsc174)/Grin1+ mutation causes abnormal anxiety-like behaviors, a deficiency in fear memory, and a decreased startle amplitude in mice. Although Grin1(Rgsc174)/Grin1+ mice only partially recapitulate symptoms of patients with ADHD, schizophrenia, and bipolar disorder, they may serve as a unique animal model of a certain subpopulation of patients with these disorders."	"A role for spermine oxidase as a mediator of reactive oxygen species production in HIV-Tat-induced neuronal toxicity. Chronic oxidative stress, which occurs in brain tissues of HIV-infected patients, is involved in the pathogenesis of HIV-associated dementia. Oxidative stress can be induced by HIV-1-secreted proteins, either directly or indirectly through the release of cytotoxic factors. In particular, HIV-1 Tat is able to induce neuronal death by interacting with and activating the polyamine-sensitive subtype of the NMDA receptor (NMDAR). Here, we focused on the role of polyamine catabolism in Tat-induced oxidative stress in human neuroblastoma (SH-SY5Y) cells. First, Tat was found to induce reactive oxygen species production and to affect cell viability in SH-SY5Y cells, these effects being mediated by spermine oxidase (SMO). Second, Tat was observed to increase SMO activity as well as decreasing the intracellular spermine levels. Third, Tat-induced SMO activation was completely prevented by the NMDAR antagonist MK-801, clearly indicating an involvement of NMDAR stimulation. Finally, pretreatment of cells with N-acetylcysteine, a scavenger of H₂O₂, and with MK-801 was able to completely inhibit reactive oxygen species formation and to restore cell viability. Altogether, these data strongly suggest a role for polyamine catabolism-derived H₂O₂ in neurotoxicity as elicited by Tat-stimulated NMDAR."	"Association of genetic variation in pharmacodynamic factors with methadone dose required for effective treatment of opioid addiction. The interindividual variability in the dose required for effective methadone maintenance treatment (MMT) for opioid addiction may be influenced in part by genetic variations in genes encoding pharmacodynamic factors of methadone. This study was conducted to identify some of these variants. This study focused on 11 genes encoding components of the opioidergic (OPRM1, POMC and ARRB2), the dopaminergic (ANKK1 and DRD2) and the glutamatergic pathways (GRIN1 and GRIN2A), as well as the neurotrophin system (NGFB, BDNF, NTRK1 and NTRK2). The study includes 227 Israeli patients undergoing stable MMT. Out of the 110 variants analyzed, 12 SNPs (in BDNF, NTRK2, OPRM1, DRD2 and ANKK1) were associated with methadone dose (nominal p &lt; 0.05). Of these SNPs, ANKK1 rs7118900 and DRD2 rs2283265 are known to affect gene expression. Logistic regression of five representative SNPs discriminated between individuals requiring a methadone dose of &gt;120 mg/day and &lt;120 mg/day (p = 0.019), and showed moderate sensitivity and specificity (AUC of 0.63 in receiver operating characteristic analysis). This data should stimulate further research on the potential influence and clinical significance of these variants on MMT."	"Neto1 associates with the NMDA receptor/amyloid precursor protein complex. Neuropilin tolloid-like 1 (Neto1), is a CUB domain-containing transmembrane protein that was recently identified as a novel component of the NMDA receptor complex. Here, we have investigated the possible association of Neto1 with the amyloid precursor protein (APP)695/GluN1/GluN2A and APP695/GluN1/GluN2B NMDA receptor trafficking complexes that we have previously identified. Neto1(HA) was shown to co-immunoprecipitate with assembled NMDA receptors via GluN2A or GluN2B subunits; Neto1(HA) did not co-immunoprecipitate APP695(FLAG) . Co-immunoprecipitations from mammalian cells co-transfected with APP695(FLAG) , Neto1(HA) and GluN1/GluN2A or GluN1/GluN2B revealed that all four proteins co-exist within one macromolecular complex. Immunoprecipitations from native brain tissue similarly revealed the existence of a GluN1/GluN2A or GluN2B/APP/Neto1 complex. Neto1(HA) caused a reduction in the surface expression of both NMDA receptor subtypes, but had no effect on APP695(FLAG) - or PSD-95α(c-Myc) enhanced surface receptor expression. The Neto1 binding domain of GluN2A was mapped using GluN1/GluN2A chimeras and GluN2A truncation constructs. The extracellular GluN2A domain does not contribute to association with Neto1(HA) but deletion of the intracellular tail resulted in a loss of Neto-1(HA) co-immunoprecipitation which was paralleled by a loss of association between GluN2A and SAP102. Thus, Neto1 is concluded to be a component of APP/NMDA receptor trafficking complexes."	"Peripheral nerve injury is accompanied by chronic transcriptome-wide changes in the mouse prefrontal cortex. Peripheral nerve injury can have long-term consequences including pain-related manifestations, such as hypersensitivity to cutaneous stimuli, as well as affective and cognitive disturbances, suggesting the involvement of supraspinal mechanisms. Changes in brain structure and cortical function associated with many chronic pain conditions have been reported in the prefrontal cortex (PFC). The PFC is implicated in pain-related co-morbidities such as depression, anxiety and impaired emotional decision-making ability. We recently reported that this region is subject to significant epigenetic reprogramming following peripheral nerve injury, and normalization of pain-related structural, functional and epigenetic abnormalities in the PFC are all associated with effective pain reduction. In this study, we used the Spared Nerve Injury (SNI) model of neuropathic pain to test the hypothesis that peripheral nerve injury triggers persistent long-lasting changes in gene expression in the PFC, which alter functional gene networks, thus providing a possible explanation for chronic pain associated behaviors. SNI or sham surgery where performed in male CD1 mice at three months of age. Six months after injury, we performed transcriptome-wide sequencing (RNAseq), which revealed 1147 differentially regulated transcripts in the PFC in nerve-injured vs. control mice. Changes in gene expression occurred across a number of functional gene clusters encoding cardinal biological processes as revealed by Ingenuity Pathway Analysis. Significantly altered biological processes included neurological disease, skeletal muscular disorders, behavior, and psychological disorders. Several of the changes detected by RNAseq were validated by RT-QPCR and included transcripts with known roles in chronic pain and/or neuronal plasticity including the NMDA receptor (glutamate receptor, ionotropic, NMDA; grin1), neurite outgrowth (roundabout 3; robo3), gliosis (glial fibrillary acidic protein; gfap), vesicular release (synaptotagmin 2; syt2), and neuronal excitability (voltage-gated sodium channel, type I; scn1a). This study used an unbiased approach to document long-term alterations in gene expression in the brain following peripheral nerve injury. We propose that these changes are maintained as a memory of an insult that is temporally and spatially distant from the initial injury."	"Mechanistic and structural determinants of NMDA receptor voltage-dependent gating and slow Mg2+ unblock. NMDA receptor (NMDAR)-mediated currents depend on membrane depolarization to relieve powerful voltage-dependent NMDAR channel block by external magnesium (Mg(o)(2+)). Mg(o)(2+) unblock from native NMDARs exhibits a fast component that is consistent with rapid Mg(o)(2+) -unbinding kinetics and also a slower, millisecond time scale component (slow Mg(o)(2+) unblock). In recombinant NMDARs, slow Mg(o)(2+) unblock is prominent in GluN1/2A (an NMDAR subtype composed of GluN1 and GluN2A subunits) and GluN1/2B receptors, with slower kinetics observed for GluN1/2B receptors, but absent from GluN1/2C and GluN1/2D receptors. Slow Mg(o)(2+) unblock from GluN1/2B receptors results from inherent voltage-dependent gating, which increases channel open probability with depolarization. Here we examine the mechanisms responsible for NMDAR subtype dependence of slow Mg(o)(2+) unblock. We demonstrate that slow Mg(o)(2+) unblock from GluN1/2A receptors, like GluN1/2B receptors, results from inherent voltage-dependent gating. Surprisingly, GluN1/2A and GluN1/2B receptors exhibited equal inherent voltage dependence; faster Mg(o)(2+) unblock from GluN1/2A receptors can be explained by voltage-independent differences in gating kinetics. To investigate the absence of slow Mg(o)(2+) unblock in GluN1/2C and GluN1/2D receptors, we examined the GluN2 S/L site, a site responsible for several NMDAR subtype-dependent channel properties. Mutating the GluN2 S/L site of GluN2A subunits from serine (found in GluN2A and GluN2B subunits) to leucine (found in GluN2C and GluN2D) greatly diminished both voltage-dependent gating and slow Mg(o)(2+) unblock. Therefore, the residue at the GluN2 S/L site governs the expression of both slow Mg(o)(2+) unblock and inherent voltage dependence."	"Identification of in vivo, conserved, TAF15 RNA binding sites reveals the impact of TAF15 on the neuronal transcriptome. RNA binding proteins (RBPs) have emerged as major causative agents of amyotrophic lateral sclerosis (ALS). To investigate the function of TAF15, an RBP recently implicated in ALS, we explored its target RNA repertoire in normal human brain and mouse neurons. Coupling high-throughput sequencing of immunoprecipitated and crosslinked RNA with RNA sequencing and TAF15 knockdowns, we identified conserved TAF15 RNA targets and assessed the impact of TAF15 on the neuronal transcriptome. We describe a role of TAF15 in the regulation of splicing for a set of neuronal RNAs encoding proteins with essential roles in synaptic activities. We find that TAF15 is required for a critical alternative splicing event of the zeta-1 subunit of the glutamate N-methyl-D-aspartate receptor (Grin1) that controls the activity and trafficking of NR1. Our study uncovers neuronal RNA networks impacted by TAF15 and sets the stage for investigating the role of TAF15 in ALS pathogenesis."	"Rhythmic theta and delta activity of cortical and hippocampal neuronal networks in genetically or pharmacologically induced N-methyl-D-aspartate receptor hypofunction under urethane anesthesia. N-Methyl-d-aspartate receptor (NMDAR) antagonists mimic several symptoms of schizophrenia in healthy subjects, and are used in preclinical disease models. In the present study, the impact of pharmacologically and genetically induced NMDAR hypofunction was assessed in rats and mice, including the NMDAR hypomorphic (Grin1) mice, with respect to neuronal network oscillations. Field potentials were recorded from the ventro-medial prefrontal cortex (mPFC) and hippocampus (CA1) in rats, as well as spontaneous and elicited hippocampal theta oscillations in response to brainstem stimulation in Grin1 and wild-type (WT) mice under anesthesia. Effects of the α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptor positive allosteric modulator LY451395 were tested in Grin1 mice and in WT mice following an MK-801 challenge. Recordings from the mPFC and CA1 in rats revealed regular delta and theta oscillations, respectively, which were disrupted by MK-801. In WT mice, MK-801 reduced both spontaneous and elicited hippocampal theta power. Age-matched Grin1 mice showed abnormal hippocampal field potentials, resembling activity seen after administration of MK-801 in WT mice, but also epileptiform discharges. Administration of MK-801 achieved high levels of NMDAR occupancy (84-98%) in both rats and mice, which is comparable to the approximately 90-95% reduction of NMDAR expression in the Grin1 mouse. Impaired elicited CA1 theta oscillation in WT mice following MK-801, or Grin1 mice was significantly improved by LY451395. These findings demonstrate similar, although not identical, changes in network activity following reduction in functioning NMDARs induced by acute pharmacological or genetic manipulations, indicating that these novel neurophysiological models could be used in evaluating drug candidates targeting glutamate neurotransmission."	"Nuclear respiratory factor 2 regulates the expression of the same NMDA receptor subunit genes as NRF-1: both factors act by a concurrent and parallel mechanism to couple energy metabolism and synaptic transmission. Neuronal activity and energy metabolism are tightly coupled processes. Previously, we found that nuclear respiratory factor 1 (NRF-1) transcriptionally co-regulates energy metabolism and neuronal activity by regulating all 13 subunits of the critical energy generating enzyme, cytochrome c oxidase (COX), as well as N-methyl-d-aspartate (NMDA) receptor subunits 1 and 2B, GluN1 (Grin1) and GluN2B (Grin2b). We also found that another transcription factor, nuclear respiratory factor 2 (NRF-2 or GA-binding protein) regulates all subunits of COX as well. The goal of the present study was to test our hypothesis that NRF-2 also regulates specific subunits of NMDA receptors, and that it functions with NRF-1 via one of three mechanisms: complementary, concurrent and parallel, or a combination of complementary and concurrent/parallel. By means of multiple approaches, including in silico analysis, electrophoretic mobility shift and supershift assays, in vivo chromatin immunoprecipitation of mouse neuroblastoma cells and rat visual cortical tissue, promoter mutations, real-time quantitative PCR, and western blot analysis, NRF-2 was found to functionally regulate Grin1 and Grin2b genes, but not any other NMDA subunit genes. Grin1 and Grin2b transcripts were up-regulated by depolarizing KCl, but silencing of NRF-2 prevented this up-regulation. On the other hand, over-expression of NRF-2 rescued the down-regulation of these subunits by the impulse blocker TTX. NRF-2 binding sites on Grin1 and Grin2b are conserved among species. Our data indicate that NRF-2 and NRF-1 operate in a concurrent and parallel manner in mediating the tight coupling between energy metabolism and neuronal activity at the molecular level."	"Array-based profiling of DNA methylation changes associated with alcohol dependence. Epigenetic regulation through DNA methylation may influence vulnerability to numerous disorders, including alcohol dependence (AD). Peripheral blood DNA methylation levels of 384 CpGs in the promoter regions of 82 candidate genes were examined in 285 African Americans (AAs; 141 AD cases and 144 controls) and 249 European Americans (EAs; 144 AD cases and 105 controls) using Illumina GoldenGate Methylation Array assays. Association of AD and DNA methylation changes was analyzed using multivariate analyses of covariance with frequency of intoxication, sex, age, and ancestry proportion as covariates. CpGs showing significant methylation alterations in AD cases were further examined in a replication sample (49 EA cases and 32 EA controls) using Sequenom's MassARRAY EpiTYPER technology. In AAs, 2 CpGs in 2 genes (GABRB3 and POMC) were hypermethylated in AD cases compared with controls (p ≤ 0.001). In EAs, 6 CpGs in 6 genes (HTR3A, NCAM1, DRD4, MBD3, HTR2B, and GRIN1) were hypermethylated in AD cases compared with controls (p ≤ 0.001); CpG cg08989585 in the HTR3A promoter region showed a significantly higher methylation level in EA cases than in EA controls after Bonferroni correction (p = 0.00007). Additionally, methylation levels of 6 CpGs (including cg08989585) in the HTR3A promoter region were analyzed in the replication sample. Although the 6 HTR3A promoter CpGs did not show significant methylation differences between EA cases and EA controls (p = 0.067 to 0.877), the methylation level of CpG cg08989585 was nonsignificantly higher in EA cases (26.9%) than in EA controls (18.6%; p = 0.139). The findings from this study suggest that DNA methylation profile appears to be associated with AD in a population-specific way and the predisposition to AD may result from a complex interplay of genetic variation and epigenetic modifications."	"Dissecting spatial knowledge from spatial choice by hippocampal NMDA receptor deletion. Hippocampal NMDA receptors (NMDARs) and NMDAR-dependent synaptic plasticity are widely considered crucial substrates of long-term spatial memory, although their precise role remains uncertain. Here we show that Grin1(ΔDGCA1) mice, lacking GluN1 and hence NMDARs in all dentate gyrus and dorsal CA1 principal cells, acquired the spatial reference memory water maze task as well as controls, despite impairments on the spatial reference memory radial maze task. When we ran a spatial discrimination water maze task using two visually identical beacons, Grin1(ΔDGCA1) mice were impaired at using spatial information to inhibit selecting the decoy beacon, despite knowing the platform's actual spatial location. This failure could suffice to impair radial maze performance despite spatial memory itself being normal. Thus, these hippocampal NMDARs are not essential for encoding or storing long-term, associative spatial memories. Instead, we demonstrate an important function of the hippocampus in using spatial knowledge to select between alternative responses that arise from competing or overlapping memories."	"Preweaning sensorimotor deficits and adolescent hypersociability in Grin1 knockdown mice. Mice with knockdown of the N-methyl-D-aspartate (NMDA) receptor NR1 subunit, encoded by the gene Grin1, have been investigated as a model for the intrinsic NMDA hypofunction hypothesized for schizophrenia. Previous work has shown that adult Grin1 mutant mice have overt deficits in habituation and sensorimotor gating, exaggerated reactivity to environmental stimuli, reduced social approach, and other alterations that reflect behavioral manifestations of schizophrenia. In humans, the emergence of overt symptoms of the disorder typically occurs in adolescence or early adulthood, suggesting a role for aberrant maturation of NMDA receptor signaling in symptom onset. The following study evaluated Grin1 mutant mice for abnormal behavioral phenotypes during the preweaning, adolescent, and adult periods. Measures included open field activity, prepulse inhibition of acoustic startle responses, and social preference in a three-chamber choice task. Mice from the C57BL/6J inbred strain, one of the parental strains for the Grin1 line, were also tested. The results showed that developmental reduction of NMDA receptor function led to significant alterations in behavior during the second and third weeks of life, including exaggerated startle responses and sensorimotor gating deficits on postnatal day 13, and pronounced hypersociability in adolescence. Male Grin1 mutant mice were more susceptible than female mice to the detrimental effects of decreased NMDA signaling. Overall, these findings provide evidence that reduced Grin1 function leads to abnormal phenotypes in the preweaning period, and that deficient NMDA signaling can lead to both overt hypersociability or marked asociality, dependent upon sex and age."	"Pilot study of iPS-derived neural cells to examine biologic effects of alcohol on human neurons in vitro. Studies of the effects of alcohol on N-methyl-d-aspartate (NMDA) receptor function and gene expression have depended on rodent or postmortem human brain models. Ideally, the effects of alcohol might better be examined in living neural tissue derived from human subjects. In this study, we used new technologies to reprogram human subject-specific tissue into pluripotent cell colonies and generate human neural cultures as a model system to examine the molecular actions of alcohol. Induced pluripotent stem (iPS) cells were generated from skin biopsies taken from 7 individuals, 4 alcohol-dependent subjects, and 3 social drinkers. We differentiated the iPS cells into neural cultures and characterized them by immunocytochemistry using antibodies for the neuronal marker beta-III tubulin, glial marker s100β, and synaptic marker synpasin-1. Electrophysiology was performed to characterize the iPS-derived neurons and to measure the effects of acute alcohol exposure on the NMDA receptor response in chronically alcohol exposed and nonexposed neural cultures from 1 nonalcoholic. Finally, we examined changes in mRNA expression of the NMDA receptor subunit genes GRIN1, GRIN2A, GRIN2B, and GRIN2D after 7 days of alcohol exposure and after 24-hour withdrawal from chronic alcohol exposure. Immunocytochemistry revealed positive staining for neuronal, glial, and synaptic markers. iPS-derived neurons displayed spontaneous electrical properties and functional ionotropic receptors. Acute alcohol exposure significantly attenuated the NMDA response, an effect that was not observed after 7 days of chronic alcohol exposure. After 7 days of chronic alcohol exposure, there were significant increases in mRNA expression of GRIN1, GRIN2A, and GRIN2D in cultures derived from alcoholic subjects but not in cultures derived from nonalcoholics. These findings support the potential utility of human iPS-derived neural cultures as in vitro models to examine the molecular actions of alcohol on human neural cells."	"Muscleblind-like 1 knockout mice reveal novel splicing defects in the myotonic dystrophy brain. Myotonic dystrophy type 1 (DM1) is a multi-systemic disorder caused by a CTG trinucleotide repeat expansion (CTG(exp)) in the DMPK gene. In skeletal muscle, nuclear sequestration of the alternative splicing factor muscleblind-like 1 (MBNL1) explains the majority of the alternative splicing defects observed in the HSA(LR) transgenic mouse model which expresses a pathogenic range CTG(exp). In the present study, we addressed the possibility that MBNL1 sequestration by CUG(exp) RNA also contributes to splicing defects in the mammalian brain. We examined RNA from the brains of homozygous Mbnl1(ΔE3/ΔE3) knockout mice using splicing-sensitive microarrays. We used RT-PCR to validate a subset of alternative cassette exons identified by microarray analysis with brain tissues from Mbnl1(ΔE3/ΔE3) knockout mice and post-mortem DM1 patients. Surprisingly, splicing-sensitive microarray analysis of Mbnl1(ΔE3/ΔE3) brains yielded only 14 candidates for mis-spliced exons. While we confirmed that several of these splicing events are perturbed in both Mbnl1 knockout and DM1 brains, the extent of splicing mis-regulation in the mouse model was significantly less than observed in DM1. Additionally, several alternative exons, including Grin1 exon 4, App exon 7 and Mapt exons 3 and 9, which have previously been reported to be aberrantly spliced in human DM1 brain, were spliced normally in the Mbnl1 knockout brain. The sequestration of MBNL1 by CUG(exp) RNA results in some of the aberrant splicing events in the DM1 brain. However, we conclude that other factors, possibly other MBNL proteins, likely contribute to splicing mis-regulation in the DM1 brain."	"G Protein-regulated inducer of neurite outgrowth (GRIN) modulates Sprouty protein repression of mitogen-activated protein kinase (MAPK) activation by growth factor stimulation. Gα(o/i) interacts directly with GRIN (G protein-regulated inducer of neurite outgrowth). Using the yeast two-hybrid system, we identified Sprouty2 as an interacting partner of GRIN. Gα(o) and Sprouty2 bind to overlapping regions of GRIN, thus competing for GRIN binding. Imaging experiments demonstrated that Gα(o) expression promoted GRIN translocation to the plasma membrane, whereas Sprouty2 expression failed to do so. Given the role of Sprouty2 in the regulation of growth factor-mediated MAPK activation, we examined the contribution of the GRIN-Sprouty2 interaction to CB1 cannabinoid receptor regulation of FGF receptor signaling. In Neuro-2A cells, a system that expresses all of the components endogenously, modulation of GRIN levels led to regulation of MAPK activation. Overexpression of GRIN potentiated FGF activation of MAPK and decreased tyrosine phosphorylation of Sprouty2. Pretreatment with G(o/i)-coupled CB1 receptor agonist attenuated subsequent FGF activation of MAPK. Decreased expression of GRIN both diminished FGF activation of MAPK and blocked CB1R attenuation of MAPK activation. These observations indicate that Gα(o) interacts with GRIN and outcompetes GRIN from bound Sprouty. Free Sprouty then in turn inhibits growth factor signaling. Thus, here we present a novel mechanism of how G(o/i)-coupled receptors can inhibit growth factor signaling to MAPK."	"Repressor element-1 silencing transcription factor (REST)-dependent epigenetic remodeling is critical to ischemia-induced neuronal death. Dysregulation of the transcriptional repressor element-1 silencing transcription factor (REST)/neuron-restrictive silencer factor is important in a broad range of diseases, including cancer, diabetes, and heart disease. The role of REST-dependent epigenetic modifications in neurodegeneration is less clear. Here, we show that neuronal insults trigger activation of REST and CoREST in a clinically relevant model of ischemic stroke and that REST binds a subset of &quot;transcriptionally responsive&quot; genes (gria2, grin1, chrnb2, nefh, nfκb2, trpv1, chrm4, and syt6), of which the AMPA receptor subunit GluA2 is a top hit. Genes with enriched REST exhibited decreased mRNA and protein. We further show that REST assembles with CoREST, mSin3A, histone deacetylases 1 and 2, histone methyl-transferase G9a, and methyl CpG binding protein 2 at the promoters of target genes, where it orchestrates epigenetic remodeling and gene silencing. RNAi-mediated depletion of REST or administration of dominant-negative REST delivered directly into the hippocampus in vivo prevents epigenetic modifications, restores gene expression, and rescues hippocampal neurons. These findings document a causal role for REST-dependent epigenetic remodeling in the neurodegeneration associated with ischemic stroke and identify unique therapeutic targets for the amelioration of hippocampal injury and cognitive deficits."	"Brain transcriptome perturbations in the Hfe(-/-) mouse model of genetic iron loading. Severe disruption of brain iron homeostasis can cause fatal neurodegenerative disease, however debate surrounds the neurologic effects of milder, more common iron loading disorders such as hereditary hemochromatosis, which is usually caused by loss-of-function polymorphisms in the HFE gene. There is evidence from both human and animal studies that HFE gene variants may affect brain function and modify risks of brain disease. To investigate how disruption of HFE influences brain transcript levels, we used microarray and real-time reverse transcription polymerase chain reaction to assess the brain transcriptome in Hfe(-/-) mice relative to wildtype AKR controls (age 10 weeks, n≥4/group). The Hfe(-/-) mouse brain showed numerous significant changes in transcript levels (p&lt;0.05) although few of these related to proteins directly involved in iron homeostasis. There were robust changes of at least 2-fold in levels of transcripts for prominent genes relating to transcriptional regulation (FBJ osteosarcoma oncogene Fos, early growth response genes), neurotransmission (glutamate NMDA receptor Grin1, GABA receptor Gabbr1) and synaptic plasticity and memory (calcium/calmodulin-dependent protein kinase IIα Camk2a). As previously reported for dietary iron-supplemented mice, there were altered levels of transcripts for genes linked to neuronal ceroid lipofuscinosis, a disease characterized by excessive lipofuscin deposition. Labile iron is known to enhance lipofuscin generation which may accelerate brain aging. The findings provide evidence that iron loading disorders can considerably perturb levels of transcripts for genes essential for normal brain function and may help explain some of the neurologic signs and symptoms reported in hemochromatosis patients."	"Glutamate receptors in tendinopathic patients. Tendinopathy, pain, and degeneration, may be related to the up-regulation of substance P (SP) and its activation of glutamate receptors. We hypothesized that the pathogenesis of tendinopathy involves N-methyl-D-aspartate receptor type 1 (NMDAR1) activation (phosphorylated NMDAR1; phospho-NMDAR1) co-existing with SP. Moreover, we examined the presence of metabotropic receptors that increase (mGluR1 and mGluR5) or decrease (mGluR6 and mGluR7) NMDAR1 excitability. Biopsies from patients with patellar tendinopathy (n = 10) and from controls (n = 8) were immunohistochemically analyzed according to the occurrence and tissue distribution of NMDAR1, phosho-NMDAR1, mGluR (1, 5-7), and SP. The biopsies were immunohistochemically single- and double-stained and semi-quantitatively assessed. Tendinopathic biopsies exhibited increased occurrence of NMDAR1, phospho-NMDAR1, SP, and mGluR5, while mGluR6-7 were not increased and mGluR1 was not found. The occurrence of NMDAR1 and SP correlated in tendinopathy (r(2) = 0.54, p = 0.03), but not in the controls (r(2) = 0.11, p = 0.4). Co-localization of SP and phospho-NMDAR1 within the tendon proper was only found in tendinopathy, localized on hypertrophic tenocytes, blood vessels, and penetrating free-nerve fibres. Up-regulation and activation of the glutamate receptor, phospho-NMDAR1, suggests a role in the pathophysiology of tendinopathy. Increased NMDAR1 excitability may be related to increased SP and mGluR5. The unique co-existence of SP and phospho-NMDAR1 in tendinopathy presumably reflects a tissue proliferative and nociceptive role."	"Genome-wide association mapping of loci for antipsychotic-induced extrapyramidal symptoms in mice. Tardive dyskinesia (TD) is a debilitating, unpredictable, and often irreversible side effect resulting from chronic treatment with typical antipsychotic agents such as haloperidol. TD is characterized by repetitive, involuntary, purposeless movements primarily of the orofacial region. In order to investigate genetic susceptibility to TD, we used a validated mouse model for a systems genetics analysis geared toward detecting genetic predictors of TD in human patients. Phenotypic data from 27 inbred strains chronically treated with haloperidol and phenotyped for vacuous chewing movements were subject to a comprehensive genomic analysis involving 426,493 SNPs, 4,047 CNVs, brain gene expression, along with gene network and bioinformatic analysis. Our results identified ~50 genes that we expect to have high prior probabilities for association with haloperidol-induced TD, most of which have never been tested for association with human TD. Among our top candidates were genes regulating the development of brain motor control regions (Zic4 and Nkx6-1), glutamate receptors (Grin1 and Grin2a), and an indirect target of haloperidol (Drd1a) that has not been studied as well as the direct target, Drd2."	"Severely impaired learning and altered neuronal morphology in mice lacking NMDA receptors in medium spiny neurons. The striatum is composed predominantly of medium spiny neurons (MSNs) that integrate excitatory, glutamatergic inputs from the cortex and thalamus, and modulatory dopaminergic inputs from the ventral midbrain to influence behavior. Glutamatergic activation of AMPA, NMDA, and metabotropic receptors on MSNs is important for striatal development and function, but the roles of each of these receptor classes remain incompletely understood. Signaling through NMDA-type glutamate receptors (NMDARs) in the striatum has been implicated in various motor and appetitive learning paradigms. In addition, signaling through NMDARs influences neuronal morphology, which could underlie their role in mediating learned behaviors. To study the role of NMDARs on MSNs in learning and in morphological development, we generated mice lacking the essential NR1 subunit, encoded by the Grin1 gene, selectively in MSNs. Although these knockout mice appear normal and display normal 24-hour locomotion, they have severe deficits in motor learning, operant conditioning and active avoidance. In addition, the MSNs from these knockout mice have smaller cell bodies and decreased dendritic length compared to littermate controls. We conclude that NMDAR signaling in MSNs is critical for normal MSN morphology and many forms of learning."	"Neuronal differentiation alters the ratio of Sp transcription factors recruited to the CYP46A1 promoter. CYP46A1 is a neuron-specific cytochrome P450 that plays a pivotal role in maintaining cholesterol homeostasis in the CNS. However, the molecular mechanisms underlying human CYP46A1 expression are still poorly understood, partly because of the lack of a cellular model that expresses high levels of CYP46A1. Our previous studies demonstrated that specificity protein (Sp) transcription factors control CYP46A1 expression, and are probably responsible for cell-type specificity. Herein, we have differentiated Ntera2/cloneD1 cells into post-mitotic neurons and identified for the first time a human cell model that expresses high levels of CYP46A1 mRNA. Our results show a decrease in Sp1 protein levels, concomitant with the increase in CYP46A1 mRNA levels. This decrease was correlated with changes in the ratio of Sp proteins associated to the CYP46A1 proximal promoter. To examine if the increase in (Sp3+Sp4)/Sp1 ratio was observed in other Sp-regulated promoters, we have selected four genes--reelin, glutamate receptor subunit zeta-1, glutamate receptor subunit epsilon-1 and μ-opioid receptor--known to be expressed in the human brain and analyzed the Sp proteins binding pattern to the promoter of these genes, in undifferentiated and differentiated Ntera2/cloneD1. Our data indicate that the dissociation of Sp1 from promoter regions is a common feature amongst Sp-regulated genes that are up-regulated after neuronal differentiation."	"Analysis of free D-serine in mammals and its biological relevance. D-Serine is a unique endogenous substance enriched in the brain at the exceptionally high concentrations as a free D-amino acid in mammals throughout their life. Peripheral tissues and blood contain low or trace levels of the D-amino acid. In the nervous systems, D-serine appears to act as an intrinsic coagonist for the N-methyl-D-aspartate type glutamate receptor (NMDA receptor) based upon the following characteristics: (i) D-serine stereoselectively binds to and stimulates the glycine-regulatory site of the NMDA receptor consisting of GRIN1/GRIN2 subunits more potently than glycine with an affinity and ED50 at high nanomolar ranges, (ii) the selective elimination of D-serine in brain tissues attenuates the NMDA receptor functions, indicating an indispensable role in physiological activation of the glutamate receptor, and (iii) the distribution of D-serine is uneven and closely correlated with that of the binding densities of the various NMDA receptor sites, and especially of the GRIN2B subunit in the brain. Moreover, d-serine exerts substantial influence on the GRIN1/GRIN3-NMDA and δ2 glutamate receptor. In the brain and retina, metabolic processes of D-serine, such as biosynthesis, extracellular release, uptake, and degradation, are observed and some candidate molecules that mediate these processes have been isolated. The fact that the mode of extracellular release of D-serine in the brain differs from that of classical neurotransmitters is likely to be related to the detection of D-serine in both glial cells and neurons, suggesting that d-serine signals could be required for the glia-synapse interaction. Moreover, the findings from the basic experiments and clinical observations support the views that the signaling system of endogenous free D-serine plays important roles, at least, through the action on the NMDA receptors in the brain wiring development and the regulation of higher brain functions, including cognitive, emotional and sensorimotor function. Based upon these data, aberrant D-serine-NMDA receptor interactions have been considered to be involved in the pathophysiology of a variety of neuropsychiatric disorders including schizophrenia and ischemic neuronal cell death. The molecular and cellular mechanisms for regulating the D-serine signals in the nervous system are, therefore, suitable targets for studies aiming to elucidate the causes of neuropsychiatric disorders and for the development of new treatments for intractable neuropsychiatric symptoms."	"Association of GRIN1 and GRIN2A-D with schizophrenia and genetic interaction with maternal herpes simplex virus-2 infection affecting disease risk. N-methyl-D-aspartate (NMDA) receptors are very important for proper brain development and several lines of evidence support that hypofunction of the NMDA receptors are involved in the pathophysiology of schizophrenia. Gene variation and gene-environmental interactions involving the genes encoding the NMDA receptors are therefore likely to influence the risk of schizophrenia. The aim of this study was to determine (1) whether SNP variation in the genes (GRIN1, GRIN2A, GRIN2B, GRIN2C, and GRIN2D) encoding the NMDA receptor were associated with schizophrenia; (2) whether GRIN gene variation in the offspring interacted with maternal herpes simplex virus-2 (HSV-2) seropositivity during pregnancy influencing the risk of schizophrenia later in life. Individuals from three independently collected Danish case control samples were genotyped for 81 tagSNPs (in total 984 individuals diagnosed with schizophrenia and 1,500 control persons) and antibodies against maternal HSV-2 infection were measured in one of the samples (365 cases and 365 controls). Nine SNPs out of 30 in GRIN2B were significantly associated with schizophrenia. One SNP remained significant after Bonferroni correction (rs1806194, P(nominal) = 0.0008). Significant interaction between maternal HSV-2 seropositivity and GRIN2B genetic variation in the offspring were observed for seven SNPs and two remained significant after Bonferroni correction (rs1805539, P(nominal) = 0.0001 and rs1806205, P(nominal) = 0.0008). The significant associations and interactions were located at the 3' region of GRIN2B suggesting that genetic variation in this part of the gene may be involved in the pathophysiology of schizophrenia."	"Animal models of attention-deficit/hyperactivity disorder. Attention-deficit hyperactivity disorder (AD/HD) is a clinically heterogenous disorder including hyperactivity, impulsivity, and inattention. Both psychostimulant and non-psychostimulant drugs such as methylphenidate and atomoxetine, respectively, to modulate catecholeamine neurotransmission are used as current pharmacotherapies for AD/HD. Multiple lines of evidence suggest that genetic factors play major roles in the etiology of AD/HD. meta-Analyses and pooled data analyses have suggested associations between AD/HD and polymorphisms in genes encoding monoamine neurotransmission molecules. There has been considerable research on this disorder using genetic, pharmacological, and neuroimaging approaches, and several animal models of AD/HD such as spontaneously hypertensive rat (SHR), dopamine transporter (DAT) knockout mice, coloboma mutant mouse, and Grin1 mutant mouse have been reported. These animal models are valuable tools for investigating molecular, cellular, and behavioral mechanisms as well as the neural development and circuit mechanisms of AD/HD. Here, we review the recent literature on animal models of AD/HD and discuss their advantages and limitations."	"Genetic variants of the NMDA receptor influence cortical excitability and plasticity in humans. N-methyl-d-aspartate (NMDA) receptors play crucial roles in glutamate-mediated synaptic transmission and plasticity and are involved in a variety of brain functions. Specific single nucleotide polymorphisms (SNPs) in the genes encoding NMDA receptor subunits have been associated with some neuropsychiatric disorders involving altered glutamate transmission, but how these polymorphisms impact on synaptic function in humans is unknown. Here, the role of NMDA receptors in the control of cortical excitability and plasticity was explored by comparing the response to single, paired, and repetitive transcranial magnetic stimulations of the motor cortex in 77 healthy subjects carrying specific allelic variants of the NR1 subunit gene (GRIN1 rs4880213 and rs6293) or of the NR2B subunit gene (GRIN2B rs7301328, rs3764028, and rs1805247). Our results showed that individuals homozygous for the T allele in the rs4880213 GRIN1 SNP had reduced intracortical inhibition, as expected for enhanced glutamatergic excitation in these subjects. Furthermore, individuals carrying the G allele in the rs1805247 GRIN2B SNP show greater intracortical facilitation and greater long-term potentiation-like cortical plasticity after intermittent -burst stimulation. Our results provide novel insights into the function of NMDA receptors in the human brain and might contribute to the clarification of the synaptic bases of severe neuropsychiatric disorders associated with defective glutamate transmission."	"Excess of de novo deleterious mutations in genes associated with glutamatergic systems in nonsyndromic intellectual disability. Little is known about the genetics of nonsyndromic intellectual disability (NSID). We hypothesized that de novo mutations (DNMs) in synaptic genes explain an important fraction of sporadic NSID cases. In order to investigate this possibility, we sequenced 197 genes encoding glutamate receptors and a large subset of their known interacting proteins in 95 sporadic cases of NSID. We found 11 DNMs, including ten potentially deleterious mutations (three nonsense, two splicing, one frameshift, four missense) and one neutral mutation (silent) in eight different genes. Calculation of point-substitution DNM rates per functional and neutral site showed significant excess of functional DNMs compared to neutral ones. De novo truncating and/or splicing mutations in SYNGAP1, STXBP1, and SHANK3 were found in six patients and are likely to be pathogenic. De novo missense mutations were found in KIF1A, GRIN1, CACNG2, and EPB41L1. Functional studies showed that all these missense mutations affect protein function in cell culture systems, suggesting that they may be pathogenic. Sequencing these four genes in 50 additional sporadic cases of NSID identified a second DNM in GRIN1 (c.1679_1681dup/p.Ser560dup). This mutation also affects protein function, consistent with structural predictions. None of these mutations or any other DNMs were identified in these genes in 285 healthy controls. This study highlights the importance of the glutamate receptor complexes in NSID and further supports the role of DNMs in this disorder."	"G4 motifs correlate with promoter-proximal transcriptional pausing in human genes. The RNA Pol II transcription complex pauses just downstream of the promoter in a significant fraction of human genes. The local features of genomic structure that contribute to pausing have not been defined. Here, we show that genes that pause are more G-rich within the region flanking the transcription start site (TSS) than RefSeq genes or non-paused genes. We show that enrichment of binding motifs for common transcription factors, such as SP1, may account for G-richness upstream but not downstream of the TSS. We further show that pausing correlates with the presence of a GrIn1 element, an element bearing one or more G4 motifs at the 5'-end of the first intron, on the non-template DNA strand. These results suggest potential roles for dynamic G4 DNA and G4 RNA structures in cis-regulation of pausing, and thus genome-wide regulation of gene expression, in human cells."	"Balanced NMDA receptor activity in dopamine D1 receptor (D1R)- and D2R-expressing medium spiny neurons is required for amphetamine sensitization. Signaling through N-methyl-D-aspartate-type glutamate receptors (NMDARs) is essential for the development of behavioral sensitization to psychostimulants such as amphetamine (AMPH). However, the cell type and brain region in which NMDAR signaling is required for AMPH sensitization remain unresolved. Here we use selective inactivation of Grin1, the gene encoding the essential NR1 subunit of NMDARs, in dopamine neurons or their medium spiny neuron (MSN) targets, to address this issue. We show that NMDAR signaling in dopamine neurons is not required for behavioral sensitization to AMPH. Conversely, removing NMDARs from MSNs that express the dopamine D1 receptor (D1R) significantly attenuated AMPH sensitization, and conditional, virus-mediated restoration of NR1 in D1R neurons in the nucleus accumbens (NAc) of these animals rescued sensitization. Interestingly, sensitization could also be restored by virus-mediated inactivation of NR1 in all remaining neurons in the NAc of animals lacking NMDARs on D1R neurons, or by removing NMDARs from all MSNs. Taken together, these data indicate that unbalanced loss of NMDAR signaling in D1R MSNs alone prevents AMPH sensitization, whereas a balanced loss of NMDARs from both D1R and dopamine D2 receptor-expressing (D2R) MSNs is permissive for sensitization."	"Gene-gene interaction analyses between NMDA receptor subunit and dopamine receptor gene variants and clozapine response. To investigate the possible association and gene-gene interaction effects of polymorphisms in NMDA receptor subunit (GRIN1, GRIN2A and GRIN2B) and dopamine receptor (DRD1, DRD2 and DRD3) genes with clozapine response. GRIN1 rs11146020 (G1001C), GRIN2A GT-repeat and GRIN2B rs10193895 (G-200T) polymorphisms were tested for association in a Caucasian (n = 183) and an African-American (n = 49) sample using χ(2) and ANOVA tests. Logistic regression and two-way ANOVA were used to explore gene-gene interaction effects with dopamine receptor gene variants. This study does not support the involvement of the NMDA receptor subunit gene polymorphisms in clozapine response. All tests for an association were negative. Gene-gene interaction analyses however yielded promising leads, including an observed effect between DRD1 rs686 and DRD3 Ser9Gly polymorphisms on clozapine response (p = 0.002)."	"Rare mutations in N-methyl-D-aspartate glutamate receptors in autism spectrum disorders and schizophrenia. Pharmacological, genetic and expression studies implicate N-methyl-D-aspartate (NMDA) receptor hypofunction in schizophrenia (SCZ). Similarly, several lines of evidence suggest that autism spectrum disorders (ASD) could be due to an imbalance between excitatory and inhibitory neurotransmission. As part of a project aimed at exploring rare and/or de novo mutations in neurodevelopmental disorders, we have sequenced the seven genes encoding for NMDA receptor subunits (NMDARs) in a large cohort of individuals affected with SCZ or ASD (n=429 and 428, respectively), parents of these subjects and controls (n=568). Here, we identified two de novo mutations in patients with sporadic SCZ in GRIN2A and one de novo mutation in GRIN2B in a patient with ASD. Truncating mutations in GRIN2C, GRIN3A and GRIN3B were identified in both subjects and controls, but no truncating mutations were found in the GRIN1, GRIN2A, GRIN2B and GRIN2D genes, both in patients and controls, suggesting that these subunits are critical for neurodevelopment. The present results support the hypothesis that rare de novo mutations in GRIN2A or GRIN2B can be associated with cases of sporadic SCZ or ASD, just as it has recently been described for the related neurodevelopmental disease intellectual disability. The influence of genetic variants appears different, depending on NMDAR subunits. Functional compensation could occur to counteract the loss of one allele in GRIN2C and GRIN3 family genes, whereas GRIN1, GRIN2A, GRIN2B and GRIN2D appear instrumental to normal brain development and function."	"The kinesin superfamily protein KIF17 is regulated by the same transcription factor (NRF-1) as its cargo NR2B in neurons. The kinesin superfamily of motor proteins is known to be ATP-dependent transporters of various types of cargoes. In neurons, KIF17 is found to transport vesicles containing the N-methyl-D-aspartate receptor NR2B subunit from the cell body specifically to the dendrites. These subunits are intimately associated with glutamatergic neurotransmission as well as with learning and memory. Glutamatergic synapses are highly energy-dependent, and recently we found that the same transcription factor, nuclear respiratory factor 1 (NRF-1), co-regulates energy metabolism (via its regulation of cytochrome c oxidase and other mitochondrial enzymes) and neurochemicals of glutamatergic transmission (NR1, NR2B, GluR2, and nNOS). The present study tested our hypothesis that NRF-1 also transcriptionally regulates KIF17. By means of in silico analysis, electrophoretic mobility shift and supershift assays, in vivo chromatin immunoprecipitation assays, promoter mutations, and real-time quantitative PCR, we found that NRF-1 (but not NRF-2) functionally regulates Kif17, but not Kif1a, gene. NRF-1 binding sites on Kif17 gene are highly conserved among mice, rats, and humans. Silencing of NRF-1 with small interference RNA blocked the up-regulation of Kif17 mRNA and proteins (and of Grin1 and Grin2b) induced by KCl-mediated depolarization, whereas over-expressing NRF-1 rescued these transcripts and proteins from being suppressed by TTX. Thus, NRF-1 co-regulates oxidative enzymes that generate energy and neurochemicals that consume energy related to glutamatergic neurotransmission, such as KIF17, NR1, and NR2B, thereby ensuring that energy production matches energy utilization at the molecular and cellular levels."	"Chromosome conformation capture of transcriptional interactions between cytochrome c oxidase genes and genes of glutamatergic synaptic transmission in neurons. Neuronal activity and energy metabolism are tightly coupled processes. Recently, we found that nuclear respiratory factor 1 co-regulates all subunits of cytochrome c oxidase (COX, representing oxidative energy metabolism) and glutamatergic neurochemicals, including NR1 (Grin1) and NR2B (Grin2b) of NMDA receptors, GluR2 (Gria2) of alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptors, and neuronal nitric oxide synthase (Nos1). Moreover, all 10 nuclear-encoded COX subunit genes and three transcription factor genes for the three mitochondrial-encoded COX subunits are transcribed in the same transcription factory. The goal of the present study was to test our hypothesis that genomic loci for Grin1, Grin2b, Gria2, and Nos1 interact with those for COX at the transcriptional level. By means of chromosome conformation capture, interactions were found among all of these genes in neurons, but not in C2C12 muscle cells. COX subunit genes also did not interact with neurochemical genes not regulated by nuclear respiratory factor 1, nor with genes for calreticulin, a non-mitochondrial protein. Depolarizing stimulation up-regulated interaction frequencies between COX and neurochemical genes, whereas impulse blockade with tetrodotoxin or inhibition of COX with KCN down-regulated them in neurons. Thus, an efficient mechanism is in place for coordinating the transcriptional coupling of energy metabolism and glutamatergic neurotransmission at the molecular level in neurons."	"Chronic stress and impaired glutamate function elicit a depressive-like phenotype and common changes in gene expression in the mouse frontal cortex. Major depression might originate from both environmental and genetic risk factors. The environmental chronic mild stress (CMS) model mimics some environmental factors contributing to human depression and induces anhedonia and helplessness. Mice heterozygous for the synaptic vesicle protein (SVP) vesicular glutamate transporter 1 (VGLUT1) have been proposed as a genetic model of deficient glutamate function linked to depressive-like behaviour. Here, we aimed to identify, in these two experimental models, gene expression changes in the frontal cortex, common to stress and impaired glutamate function. Both VGLUT1(+/-) and CMS mice showed helpless and anhedonic-like behavior. Microarray studies in VGLUT1(+/-) mice revealed regulation of genes involved in apoptosis, neurogenesis, synaptic transmission, protein metabolic process or learning and memory. In addition, RT-PCR studies confirmed gene expression changes in several glutamate, GABA, dopamine and serotonin neurotransmitter receptors. On the other hand, CMS affected the regulation of 147 transcripts, some of them involved in response to stress and oxidoreductase activity. Interestingly, 52 genes were similarly regulated in both models. Specifically, a dowregulation in genes that promote cell proliferation (Anapc7), cell growth (CsnK1g1), cell survival (Hdac3), and inhibition of apoptosis (Dido1) was observed. Genes linked to cytoskeleton (Hspg2, Invs), psychiatric disorders (Grin1, MapK12) or an antioxidant enzyme (Gpx2) were also downregulated. Moreover, genes that inhibit the MAPK pathways (Dusp14), stimulate oxidative metabolism (Eif4a2) and enhance glutamate transmission (Rab8b) were upregulated. We suggest that these genes could form part of the altered &quot;molecular context&quot; underlying depressive-like behaviour in animal models. The clinical relevance of these findings is discussed."	"A possible association of responsiveness to adrenocorticotropic hormone with specific GRIN1 haplotypes in infantile spasms. Adrenocorticotropic hormone (ACTH) has been used as the major therapy for infantile spasms since 1958 because it effectively suppresses seizures; it also normalizes the electroencephalogram in the short-term treatment of infantile spasms. G protein-regulated inducer of neurite outgrowth 1 (GRIN1, also known as N-methyl-D-aspartate receptor 1, NMDAR1), a glutamate receptor, is the main component of functional N-methyl-D-aspartic acid receptors that are involved in the glucocorticoid-induced neuronal damage. Thus, it may be a candidate gene to be tested for responsiveness to ACTH in infantile spasms. In the present study, polymorphisms in the GRIN1 gene in infantile spasms were investigated using a case-control design. Twelve single nucleotide polymorphisms in the GRIN1 gene were genotyped in a Chinese case-control set consisting of 97 unrelated patients with infantile spasms (60 males, 37 females; mean age 6.4 mo, SD 2.7) and 96 healthy individuals (63 males, 33 females; mean age 7.3 mo, SD 3.8). Association analysis was performed on the genotyped data. Five estimated haplotypes with a frequency of more than 3% were detected. Results of the study showed that responsiveness to treatment with ACTH in homozygous carriers of the CTA haplotype was higher than that in heterozygous carriers and non-carriers (p=0.022). Furthermore, CTG, a rare haplotype, was strongly associated with infantile spasms (p=0.013). The results suggest that haplotypes of GRIN1 may influence responsiveness to ACTH. The findings necessitate further study for confirmation."	"Association analysis of GRIN1 and GRIN2B polymorphisms and Parkinson's disease in a hospital-based case-control study. Hyperactivation of N-methyl-d-aspartate receptors (NMDARs) leads to neuronal excitotoxicity and is suggested to play a role in many brain disorders, including Alzheimer's disease and schizophrenia. However, the association between polymorphisms in the genes that code for NMDAR subunits, N-methyl-d-aspartate 1 and 2B (GRIN1 and GRIN2B) and Parkinson's disease (PD) remains unclear. In a hospital-based case-control study of PD, DNA samples were collected from 101 PD patients and 205 healthy controls. Genotyping assays were used to screen for polymorphisms in the GRIN1 (rs2301364 T&gt;C, rs28489906 T&gt;C, and rs4880213 T&gt;C) and GRIN2B (C366G, C2664T, and rs1805476 T&gt;G) genes, and logistic regression analysis was then used to assess the association between these single nucleotide polymorphisms (SNPs) and PD susceptibility. None of the 6 SNPs were significantly associated with PD risk on their own. However, in conjunction with putative low-risk genotypes for the GRIN1 gene, the GRIN2BC366G variant was significantly associated with reduced PD risk compared with the homozygous genotype 366CC (OR=0.38, 95%CI=0.17-0.93, P=0.033). A synergistic effect on risk reduction was observed in subjects who carried multiple polymorphisms of GRIN1 and the GRIN2BC366G polymorphism (OR=0.78, 95%CI=0.59-1.02, P(trend)=0.073). Our results suggest that polymorphisms in the GRIN1 and GRIN2B genes may serve as potential biomarkers for a reduced risk of PD among the Chinese population in Taiwan."	"Strain differences in stress responsivity are associated with divergent amygdala gene expression and glutamate-mediated neuronal excitability. Stress is a major risk factor for numerous neuropsychiatric diseases. However, susceptibility to stress and the qualitative nature of stress effects on behavior differ markedly among individuals. This is partly because of the moderating influence of genetic factors. Inbred mouse strains provide a relatively stable and restricted range of genetic and environmental variability that is valuable for disentangling gene-stress interactions. Here, we screened a panel of inbred strains for anxiety- and depression-related phenotypes at baseline (trait) and after exposure to repeated restraint. Two strains, DBA/2J and C57BL/6J, differed in trait and restraint-induced anxiety-related behavior (dark/light exploration, elevated plus maze). Gene expression analysis of amygdala, medial prefrontal cortex, and hippocampus revealed divergent expression in DBA/2J and C57BL/6J both at baseline and after repeated restraint. Restraint produced strain-dependent expression alterations in various genes including glutamate receptors (e.g., Grin1, Grik1). To elucidate neuronal correlates of these strain differences, we performed ex vivo analysis of glutamate excitatory neurotransmission in amygdala principal neurons. Repeated restraint augmented amygdala excitatory postsynaptic signaling and altered metaplasticity (temporal summation of NMDA receptor currents) in DBA/2J but not C57BL/6J. Furthermore, we found that the C57BL/6J-like changes in anxiety-related behavior after restraint were absent in null mutants lacking the modulatory NMDA receptor subunit Grin2a, but not the AMPA receptor subunit Gria1. Grin2a null mutants exhibited significant ( approximately 30%) loss of dendritic spines on amygdala principal neurons under nonrestraint conditions. Collectively, our data support a model in which genetic variation in glutamatergic neuroplasticity in corticolimbic circuitry underlies phenotypic variation in responsivity to stress."	"Phenotypic characterization of a new Grin1 mutant mouse generated by ENU mutagenesis. In the RIKEN large-scale N-ethyl-N-nitrosourea (ENU) mutagenesis project we screened mice with a dominant mutation that exhibited abnormal behavior in the open-field test, passive avoidance test and home-cage activity test. We tested 2045 progeny of C57BL/6J males treated with ENU and untreated DBA/2J females in the open-field test and isolated behavioral mutant M100174, which exhibited a significant increase in spontaneous locomotor activity. We identified a missense mutation in the Grin1 gene, which encodes NMDA receptor subunit 1, and designated the mutant gene Grin1(Rgsc174). This mutation results in an arginine to cysteine substitution in the C0 domain of the protein. Detailed analyses revealed that Grin1(Rgsc174) heterozygote exhibited increased novelty-seeking behavior and slight social isolation in comparison with the wild type. In contrast to other Grin1 mutant mice, this mutant exhibited no evidence of heightened anxiety. These results indicate that this is a unique behavioral Grin1 gene mutant mouse that differs from the known Grin1 mutant mice. The results of immunohistochemical and biochemical analyses suggested that impaired interaction between the glutamatergic pathway and dopaminergic pathway may underlie the behavioral phenotypes of the Grin1(Rgsc174) mutant."	"A glycine site-specific NMDA receptor antagonist protects retina ganglion cells from ischemic injury by modulating apoptotic cascades. Glutamate neurotoxicity is one of the causative factors leading to neural degeneration including retina. Inhibition of NMDA receptors has been shown neuroprotective effects. However, specifically inhibition of glycine subunit in NMDA receptors and its effects on retina neural protection has not been tested. In this study, using a glycine site-specific NMDA receptor antagonist, we investigated its neuroprotective effects on rat retinal ganglion cells (RGCs) from a transient ischemic injury and its possible underlying mechanisms. Following an ischemia/reperfusion injury the structural damages of rat retinas were assessed by an immunofluorescence method and the apoptosis of retinal neural cells was evaluated by using a terminal deoxynucleotidyl transferase-mediated dUTP nick-end labeling (TUNEL) method. The survived RGCs were labeled by retrograde manner and counted on whole-mounted retinas. In the presence of glycine site-specific NMDA receptor antagonist, the thickness of retina was sustained, especially in the inner nuclear layers compared with mock controls. While a significantly higher numbers of TUNEL-positive apoptotic cells and fewer of RGCs were observed in the retina without the glycine antagonist, indicating its strong protective roles. Some apoptotic factors such as Bax, Bcl-2, CAMK II, COX1, COX4, Caspase-3, and GRIN1 gene have been tested from retinal samples with or without the glycine antagonist. A significantly lower of expressions of Bax, CAMK II, COX1, COX4, Caspase-3, and GRIN1 have been shown in the retinas with the antagonist. Bcl-2/Bax ratio was significantly higher with the antagonist, suggested that the glycine site-specific NMDA receptor antagonist protecting RGC death might through inhibition of apoptotic signaling."	"Synaptic dysfunction in Parkinson's disease. In neuronal circuits, memory storage depends on activity-dependent modifications in synaptic efficacy, such as LTD (long-term depression) and LTP (long-term potentiation), the two main forms of synaptic plasticity in the brain. In the nucleus striatum, LTD and LTP represent key cellular substrates for adaptive motor control and procedural memory. It has been suggested that their impairment could account for the onset and progression of motor symptoms of PD (Parkinson's disease), a neurodegenerative disorder characterized by the massive degeneration of dopaminergic neurons projecting to the striatum. In fact, a peculiar aspect of striatal plasticity is the modulation exerted by DA (dopamine) on LTP and LTD. Our understanding of these maladaptive forms of plasticity has mostly come from the electrophysiological, molecular and behavioural analyses of experimental animal models of PD. In PD, a host of cellular and synaptic changes occur in the striatum in response to the massive loss of DA innervation. Chronic L-dopa therapy restores physiological synaptic plasticity and behaviour in treated PD animals, but most of them, similarly to patients, exhibit a reduction in the efficacy of the drug and disabling AIMs (abnormal involuntary movements) defined, as a whole, as L-dopa-induced dyskinesia. In those animals experiencing AIMs, synaptic plasticity is altered and is paralleled by modifications in the postsynaptic compartment. In particular, dysfunctions in trafficking and subunit composition of NMDARs [NMDA (N-methyl-D-aspartate) receptors] on striatal efferent neurons result from chronic non-physiological dopaminergic stimulation and contribute to the pathogenesis of dyskinesias. According to these pathophysiological concepts, therapeutic strategies targeting signalling proteins coupled to NMDARs within striatal spiny neurons could represent new pharmaceutical interventions for PD and L-dopa-induced dyskinesia."	"N-methyl-D-aspartate receptor NR1 subunit gene (GRIN1) G1001C polymorphism and susceptibility to schizophrenia: A meta-analysis. A comprehensive literature search was conducted to identify all case-control studies investigating the association between GRIN1 G1001C polymorphism and schizophrenia susceptibility (MIM: 138249; dbSNP: rs 11146020). A total of 6 eligible studies (including 1639 schizophrenia cases and 1489 controls) were identified for the meta-analysis. Including all studies, there was significant heterogeneity between studies. In overall the GC (OR=1.00, 95 % CI: 0.0.85-1.19) and CC (OR=1.09, 95 % CI: 0.67-1.79) genotypes were not associated with schizophrenia risk compared with the GG genotype. In one study patients were diagnosed using DSM-IIIR criteria and in another study the genotypic frequencies of control subjects showed significant deviation from the expected frequencies according to the Hardy-Weinberg equilibrium. After excluding these studies from the meta-analysis, the heterogeneity between studies dramatically decreased. Statistical analysis showed that the GC genotype compared with the GG genotype significantly increased the risk of schizophrenia (OR=1.85, 95 % CI: 1.43-2.42, P&lt;0.0001). The CC versus GG genotype significantly increased the schizophrenia risk (OR=2.46, 95% CI: 1.17-6.84, P=0.017). There was significant linear trend for presence of 0, 1, and 2 of the C allele and risk of schizophrenia (χ<sup>2</sup>=25.45, P&lt;0.0001). In conclusion, the C variant allele may be associated with an increased risk for developing schizophrenia."	"Genetic association studies of glutamate, GABA and related genes in schizophrenia and bipolar disorder: a decade of advance. Schizophrenia (SZ) and bipolar disorder (BD) are debilitating neurobehavioural disorders likely influenced by genetic and non-genetic factors and which can be seen as complex disorders of synaptic neurotransmission. The glutamatergic and GABAergic neurotransmission systems have been implicated in both diseases and we have reviewed extensive literature over a decade for evidence to support the association of glutamate and GABA genes in SZ and BD. Candidate-gene based population and family association studies have implicated some ionotrophic glutamate receptor genes (GRIN1, GRIN2A, GRIN2B and GRIK3), metabotropic glutamate receptor genes (such as GRM3), the G72/G30 locus and GABAergic genes (e.g. GAD1 and GABRB2) in both illnesses to varying degrees, but further replication studies are needed to validate these results. There is at present no consensus on specific single nucleotide polymorphisms or haplotypes associated with the particular candidate gene loci in these illnesses. The genetic architecture of glutamate systems in bipolar disorder need to be better studied in view of recent data suggesting an overlap in the genetic aetiology of SZ and BD. There is a pressing need to integrate research platforms in genomics, epistatic models, proteomics, metabolomics, neuroimaging technology and translational studies in order to allow a more integrated understanding of glutamate and GABAergic signalling processes and aberrations in SZ and BD as well as their relationships with clinical presentations and treatment progress over time."	"Ethanol self-administration modulation of NMDA receptor subunit and related synaptic protein mRNA expression in prefrontal cortical fields in cynomolgus monkeys. Functional impairment of the orbital and medial prefrontal cortex underlies deficits in executive control that characterize addictive disorders, including alcohol addiction. Previous studies indicate that alcohol alters glutamate neurotransmission and one substrate of these effects may be through the reconfiguration of the subunits constituting ionotropic glutamate receptor (iGluR) complexes. Glutamatergic transmission is integral to cortico-cortical and cortico-subcortical communication, and alcohol-induced changes in the abundance of the receptor subunits and/or their splice variants may result in critical functional impairments of prefrontal cortex in the alcohol-addicted state. The effects of chronic ethanol self-administration on glutamate receptor ionotropic NMDA (GRIN), as well as GRIN1 splice variant mRNA expression was studied in the orbitofrontal cortex (OFC; Area 13), dorsolateral prefrontal cortex (DLPFC; Area 46) and anterior cingulate cortex (ACC; Area 24) of male cynomolgus monkeys. Chronic ethanol self-administration resulted in significant changes in the expression of NMDA subunit mRNA expression in the DLPFC and OFC, but not the ACC. In DLPFC, the overall expression of NMDA subunits was significantly decreased in ethanol treated monkeys. Slight but significant changes were observed for synaptic associated protein 102 kD (SAP102) and neuronal nitric oxide synthase (nNOS) mRNAs. In OFC, the NMDAR1 variant GRIN1-1 was reduced while GRIN1-2 was increased. Furthermore, no significant changes in GFAP protein levels were observed in either the DLPFC or OFC. Results from these studies provide the first demonstration of posttranscriptional regulation of iGluR subunits in the primate brain following long-term ethanol self-administration. Furthermore, changes in these transcripts do not appear to reflect changes in glial activation or loss. Further studies examining the expression and cellular localization of subunit proteins and receptor pharmacology would shed more light on the findings reported here."	"Predicting functional alternative splicing by measuring RNA selection pressure from multigenome alignments. High-throughput methods such as EST sequencing, microarrays and deep sequencing have identified large numbers of alternative splicing (AS) events, but studies have shown that only a subset of these may be functional. Here we report a sensitive bioinformatics approach that identifies exons with evidence of a strong RNA selection pressure ratio (RSPR)--i.e., evolutionary selection against mutations that change only the mRNA sequence while leaving the protein sequence unchanged--measured across an entire evolutionary family, which greatly amplifies its predictive power. Using the UCSC 28 vertebrate genome alignment, this approach correctly predicted half to three-quarters of AS exons that are known binding targets of the NOVA splicing regulatory factor, and predicted 345 strongly selected alternative splicing events in human, and 262 in mouse. These predictions were strongly validated by several experimental criteria of functional AS such as independent detection of the same AS event in other species, reading frame-preservation, and experimental evidence of tissue-specific regulation: 75% (15/20) of a sample of high-RSPR exons displayed tissue specific regulation in a panel of ten tissues, vs. only 20% (4/20) among a sample of low-RSPR exons. These data suggest that RSPR can identify exons with functionally important splicing regulation, and provides biologists with a dataset of over 600 such exons. We present several case studies, including both well-studied examples (GRIN1) and novel examples (EXOC7). These data also show that RSPR strongly outperforms other approaches such as standard sequence conservation (which fails to distinguish amino acid selection pressure from RNA selection pressure), or pairwise genome comparison (which lacks adequate statistical power for predicting individual exons)."	"GRIN1 regulates micro-opioid receptor activities by tethering the receptor and G protein in the lipid raft. The lipid raft location of mu-opioid receptor (MOR) determines the receptor activities. However, the manner in which MOR is anchored within the lipid rafts is undetermined. Using the targeted proteomic approach and mass spectrometry analyses, we have identified GRIN1 (G protein-regulated inducer of neurite outgrowth 1) can tether MOR with the G protein alpha-subunit and subsequently regulate the receptor distribution within the lipid rafts. Glutathione S-transferase fusion pulldown and receptor mutational analyses indicate that GRIN1-MOR interaction involves a receptor sequence (267)GSKEK(271) within the MOR third intracellular loop that is not involved in Galpha interaction. The GRIN1 domains involved in MOR interaction are also distinct from those involved in Galpha interaction. Pertussis toxin pretreatment reduced the amount of GRIN1 co-immunoprecipitated with MOR but not the amount with Galpha. Furthermore, overexpression of GRIN1 significantly enhanced the amount of MOR in lipid raft and the receptor signaling magnitude as measured by Src kinase activation. Such increase in MOR signaling was demonstrated further by determining the GRIN1-dependent pertussis toxin-sensitive neurite outgrowth. In contrast to minimal neurite outgrowth induced by etorphine in control neuroblastoma N2A cells, overexpression of GRIN1 resulted in the increase in etorphine- and non-morphine-induced neurite outgrowth in these cells. Knocking down endogenous GRIN1 by small interfering RNA attenuated the agonist-induced neurite outgrowth. Disrupting lipid raft by methyl-beta-cyclodextrin also blocked neurite outgrowth. Hence, by tethering Galpha with MOR, GRIN1 stabilizes the receptor within the lipid rafts and potentiates the receptor signaling in the neurite outgrowth processes."	"Behavioral deficits and subregion-specific suppression of LTP in mice expressing a population of mutant NMDA receptors throughout the hippocampus. The NMDA receptor (NMDAR) subunit GluN1 is an obligatory component of NMDARs without a known functional homolog and is expressed in almost every neuronal cell type. The NMDAR system is a coincidence detector with critical roles in spatial learning and synaptic plasticity. Its coincidence detection property is crucial for the induction of hippocampal long-term potentiation (LTP). We have generated a mutant mouse model expressing a hypomorph of the Grin1(N598R) allele, which leads to a minority (about 10%) of coincidence detection-impaired NMDARs. Surprisingly, these animals revealed specific functional changes in the dentate gyrus (DG) of the hippocampal formation. Early LTP was expressed normally in area CA1 in vivo, but was completely suppressed at perforant path-granule cell synapses in the DG. In addition, there was a pronounced reduction in the amplitude of the evoked population spike in the DG. These specific changes were accompanied by behavioral impairments in spatial recognition, spatial learning, reversal learning, and retention. Our data show that minor changes in GluN1-dependent NMDAR physiology can cause dramatic consequences in synaptic signaling in a subregion-specific fashion despite the nonredundant nature of the GluN1 gene and its global expression."	"Breast cancer expresses functional NMDA receptors. We demonstrate here that functional NMDAR1 and NMDAR2 receptors are expressed by Mcf-7 and SKBR3 breast cancer cell lines, and possibly by most or all high-grade breast tumors, and that these receptors are important for the growth of human breast cancer xenografts in mice. RT-PCR demonstrated mRNA for both NMDAR1 and NMDAR2 receptors are expressed in both Mcf-7 and SKBR3 cell lines, and these messages likely have sequences identical to those reported for human mRNAs. Proteins of the expected respective sizes 120 and 170 kD are generated from these mRNAs by the tumor cells. Cell growth was found to be significantly (P &lt; 0.0001) impaired down to 10% of normal growth by the irreversible NMDAR1 antagonists MK-801 and memantine with IC 50s ranging from 600 to &gt;800 microM and from 200 to 300 microM for the two lines. Paradoxically, memantine with a lower binding affinity had the greater influence of the two inhibitors on cell viability. Immunohistochemical examination of high-grade invasive ductal and lobular breast cancer with our polyclonal antibodies against a peptide (-Met-Ser-Ile-Tyr-Ser-Asp-Lys-Ser-Ile-His-) in the extracellular domain of the NMDAR1 receptor gave specific positive staining for the receptor in all 10 cases examined. Positive staining was chiefly concentrated at the membranes of these tumor tissues. No staining with these antibodies was found for normal breast and kidney tissues. When Mcf-7 cells were grown as tumor xenografts in nu/nu mice, the growth of these tumors was completely arrested by daily treatments with MK-801 over 5 days. All of these data point to active NMDAR receptors being expressed by most breast cancers, and having an important influence on their survival."	"Disruption of glutamate receptors at Shank-postsynaptic platform in Alzheimer's disease. Synaptic loss underlies the memory deficit of Alzheimer's disease (AD). The molecular mechanism is elusive; however, excitatory synapses organized by the postsynaptic density (PSD) have been used as targets for AD treatment. To identify pathological entities at the synapse in AD, synaptic proteins were screened by quantitative proteomic profiling. The critical proteins were then selected for immunoblot analysis. The glutamate receptors N-methyl-d-aspartate (NMDA) receptor 1 and alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (AMPA) receptor 2 (GluR2) were substantially lost; specifically, the loss of GluR2 was up to 40% at PSD in AD. Shank proteins, the organizers of these glutamate receptors at excitatory synapses, were dramatically altered in AD. The level of Shank2 was increased, whereas the protein level of Shank3 was decreased. Further, the Shank3 protein was modified by ubiquitin, indicating that abnormal activity of the ubiquitin-proteasome system may lead to Shank3 degradation in AD. Our findings suggest that disruption of glutamate receptors at the Shank-postsynaptic platform could contribute to destruction of the PSD which underlies the synaptic dysfunction and loss in AD."	"Coexistence of up-regulated NMDA receptor 1 and glutamate on nerves, vessels and transformed tenocytes in tendinopathy. Elevated levels of the neurotransmitter glutamate and the presence of its receptor, N-methyl-d-aspartate receptor type 1 (NMDAR1), have been established in patients with tendinopathy, i.e. chronic tendon pain and degeneration. However, whether NMDAR1 is up- or down-regulated in tendinopathy and co-localized with glutamate is still unexplored. We hypothesize that an alteration in tissue expression and in the coexistence of NMDAR1 and glutamate occurs in tendinopathy and might play a role in nociception and possibly also progression of tendon degeneration (tendinosis). We therefore examined the tissue distribution and levels of NMDAR1 and glutamate in biopsies from patients with patellar tendinopathy (n=10) and from controls (n=8). The biopsies were single- and double-stained immunohistochemically for glutamate and NMDAR1 and assessed subjectively and semi-quantitatively. The chronic painful tendons exhibited a significant elevation of NMDAR1 (ninefold), which was independent of the observed increase in glutamate (10-fold). This up-regulation of NMDAR1 and glutamate was found to be co-localized on nerve fibers as well as on morphologically altered tenocytes and blood vessels. None of the controls exhibited neuronal coexistence of glutamate and NMDAR1. The neuronal coexistence of glutamate and NMDAR1, observed in painful tendinosis but not in controls, suggests a regulatory role in intensified pain signalling."	"Coupling of energy metabolism and synaptic transmission at the transcriptional level: role of nuclear respiratory factor 1 in regulating both cytochrome c oxidase and NMDA glutamate receptor subunit genes. Neuronal activity and energy metabolism are tightly coupled processes. Regions high in neuronal activity, especially of the glutamatergic type, have high levels of cytochrome c oxidase (COX). Perturbations in neuronal activity affect the expressions of COX and glutamatergic NMDA receptor subunit 1 (NR1). The present study sought to test our hypothesis that the coupling extends to the transcriptional level, whereby NR1 and possibly other NR subunits and COX are coregulated by the same transcription factor, nuclear respiratory factor 1 (NRF-1), which regulates all COX subunit genes. By means of multiple approaches, including in silico analysis, electrophoretic mobility shift and supershift assays, in vivo chromatin immunoprecipitation, promoter mutations, and real-time quantitative PCR, NRF-1 was found to functionally bind to the promoters of Grin 1 (NR1), Grin 2b (NR2b) and COX subunit genes, but not of Grin2a and Grin3a genes. These transcripts were upregulated by KCl and downregulated by tetrodotoxin (TTX) in cultured primary neurons. However, silencing of NRF-1 with small interference RNA blocked the upregulation of Grin1, Grin2b, and COX induced by KCl, and overexpression of NRF-1 rescued these transcripts that were suppressed by TTX. NRF-1 binding sites on Grin1 and Grin2b genes are also highly conserved among mice, rats, and humans. Thus, NRF-1 is an essential transcription factor critical in the coregulation of NR1, NR2b, and COX, and coupling exists at the transcriptional level to ensure coordinated expressions of proteins important for synaptic transmission and energy metabolism."	"Influence of functional variant of neuronal nitric oxide synthase on impulsive behaviors in humans. Human personality is characterized by substantial heritability but few functional gene variants have been identified. Although rodent data suggest that the neuronal isoform of nitric oxide synthase (NOS-I) modifies diverse behaviors including aggression, this has not been translated to human studies. To investigate the functionality of an NOS1 promoter repeat length variation (NOS1 Ex1f variable number tandem repeat [VNTR]) and to test whether it is associated with phenotypes relevant to impulsivity. Molecular biological studies assessed the cellular consequences of NOS1 Ex1f VNTR; association studies were conducted to investigate the impact of this genetic variant on impulsivity; imaging genetics was applied to determine whether the polymorphism is functional on a neurobiological level. Three psychiatric university clinics in Germany. More than 3200 subjects were included in the association study: 1954 controls, 403 patients with personality disorder, 383 patients with adult attention-deficit/hyperactivity disorder (ADHD), 151 with familial ADHD, 189 suicide attempters, and 182 criminal offenders. For the association studies, the major outcome criteria were phenotypes relevant to impulsivity, namely, the dimensional phenotype conscientiousness and the categorical phenotypes adult ADHD, aggression, and cluster B personality disorder. A novel functional promoter polymorphism in NOS1 was associated with traits related to impulsivity, including hyperactive and aggressive behaviors. Specifically, the short repeat variant was more frequent in adult ADHD, cluster B personality disorder, and autoaggressive and heteroaggressive behavior. This short variant came along with decreased transcriptional activity of the NOS1 exon 1f promoter and alterations in the neuronal transcriptome including RGS4 and GRIN1. On a systems level, it was associated with hypoactivation of the anterior cingulate cortex, which is involved in the processing of emotion and reward in behavioral control. These findings implicate deficits in neuronal signaling via nitric oxide in moderation of prefrontal circuits underlying impulsivity-related behavior in humans."	"Reduced levels of NR2A and NR2B subunits of NMDA receptor and PSD-95 in the prefrontal cortex in major depression. Recent neuroimaging and postmortem studies have demonstrated abnormalities in glutamatergic transmission in major depression. Glutamate NMDA (N-methyl-d-aspartate) receptors are one of the major mediators of excitatory neurotransmission in the central nervous system. At synaptic sites, NMDA receptors are linked with postsynaptic density protein-95 (PSD-95) that plays a key role in mediating trafficking, clustering, and downstream signaling events, following receptor activation. In this study, we examined the expression of NMDA receptor subunits NR1, NR2A, and NR2B as well as PSD-95 in the anterior prefrontal cortex (PFC) using Western blot method. Cortical samples were obtained from age, gender and postmortem interval matched depressed and psychiatrically healthy controls. The results revealed that there was a reduced expression of the NMDA receptor subunits NR2A (-54%) and NR2B (-48%), and PSD-95 protein level (-40%) in the PFC of depressed subjects relative to controls, with no change in the NR1 subunit. The alterations in NMDA receptor subunits, especially the NR2A and NR2B, as well as PSD-95 suggest an abnormality in the NMDA receptor signaling in the PFC in major depression. Our findings in conjunction with recent clinical, cellular, and neuroimaging studies further implicate the involvement of glutamate neurotransmission in the pathophysiology of depression. This study provides additional evidence that NMDA receptor complex is a target for discovery of novel antidepressants."	"[The association between glutamate receptor gene SNP and schizophrenia]. Glutamate is a necessary excitatory neurotransmitter in human nervous system, which runs a biological function by binding with corresponding receptors. Psychiatric diseases occur when genes which encode receptors become dysfunctional. The authors have reviewed related literature and summarized the association between schizophrenia and glutamate receptor gene SNPs such as rs11146020 in GRIN1, 366C/G in GRIN2B, and rs1468412 in GRM3, etc. Due to controversial results in various studies, it is hypothesized that schizophrenia are complicated polygenic inherited diseases. Some sites such as 366C/G, 2664C/T and rs1408766 (C/T) possess with valuable genetic polymorphisms and might potentially contribute to personal identification and paternity testing. Studies in this field may have a potential significance in forensic psychiatry practice."	"Mutant mice with reduced NMDA-NR1 glycine affinity or lack of D-amino acid oxidase function exhibit altered anxiety-like behaviors. Several compounds that promote activation of the N-methyl-d-aspartate receptor (NMDAR) glycine site have been proposed as treatments for schizophrenia, but the impact of these putative antipsychotics on anxiety remains unclear. In this study, we employed genetic and pharmacological mouse models of altered NMDAR glycine site function to examine the effects of these proposed treatments in unconditioned tests of anxiety. In the elevated plus-maze, open field, and novel object test, homozygous Grin1(D481N) mutant mice that have a five-fold reduction in NMDAR glycine affinity demonstrated an anxiolytic-like phenotype. In contrast, d-serine, a direct activator of the NMDAR glycine site, and ALX-5407, a glycine transporter-1 (GlyT-1) inhibitor, enhanced anxiety-like behaviors in wild-type and Grin1(D481N) mutant animals. Homozygous Dao1(G181R) mutant mice that lack function of the d-serine catabolic enzyme, d-amino acid oxidase (DAO), displayed an elevation in anxiety. Deficient DAO activity also reversed the anxiolytic effects of diminished NMDAR function in mice carrying both the homozygous Grin1(D481N) and Dao1(G181R) mutation. Thus, a direct agonist of the NMDAR glycine site, a GlyT-1 inhibitor, and suppression of DAO function induced anxiogenic-like behaviors. Consequently, application of these treatments for amelioration of schizophrenic symptoms necessitates caution as an enhancement of comorbid anxiety disorders may result."	"Association between the G1001C polymorphism in the GRIN1 gene promoter and schizophrenia in the Iranian population. Schizophrenia is a complex genetic disorder to which genetic variation in the glutamatergic signaling pathways is believed to play a substantial role in the etiology of the disease. Association studies have implicated the N-methyl-D-aspartate receptor subunit gene, GRIN1, as a candidate gene for schizophrenia. In this report, we used a case control study to establish the possible association between the G1001C polymorphism in the GRIN1 gene promoter region and schizophrenia in an Iranian cohort of 200 unrelated patients and 200 controls. The allelic and genotypic frequencies of the polymorphism were determined using polymerase chain reaction restriction fragment length polymorphism. Data analysis using logistic regression and the Mantel-Haenszel chi-square test revealed a strong association between the G1001C polymorphism and schizophrenia (CG genotype: odds ratio (OR) = 2.12, 95% confidence interval (CI) 1.34-3.48, P = 0.001 and CC genotype: OR = 29.10, 95% CI 3.40-565.78, P &lt; 0.001). Furthermore, the C allele is significantly associated with an increasing risk of schizophrenia."	"Dynamic expression patterns of G protein-regulated inducer of neurite outgrowth 1 (GRIN1) and its colocalization with Galphao implicate significant roles of Galphao-GRIN1 signaling in nervous system. GRIN1 (Gprin 1) is a signaling molecule coexpression of which with constitutively active form of Galphao can stimulate neurite extensions in Neuro2a cells, yet its in vivo roles remain elusive. Here, we examine expression profiles of GRIN1 during mouse development by in situ hybridization (ISH) and immunohistochemistry. ISH analysis revealed that GRIN1 expression was limited to the nervous system at all developmental stages tested: in the central nervous system, GRIN1 expression occurred within the entire embryonic mantle zones, while it became restricted to sets of nuclei at postnatal to adult stages. Immunohistochemistry using a GRIN1-specific antibody demonstrated that GRIN1 colocalized with Galphao at neuronal dendrites and axons, but it was not detected in glial cells. These results suggest that Galphao-GRIN1 pathway could mediate significant roles in neuronal migration and differentiation at embryonic stages and exert functions in wiring and/or maintenance of specific neural circuitries at postnatal to adult stages."	"Effect of microgravity on gene expression in mouse brain. Changes in gravitational force such as that experienced by astronauts during space flight induce a redistribution of fluids from the caudad to the cephalad portion of the body together with an elimination of normal head-to-foot hydrostatic pressure gradients. To assess brain gene profile changes associated with microgravity and fluid shift, a large-scale analysis of mRNA expression levels was performed in the brains of 2-week control and hindlimb-unloaded (HU) mice using cDNA microarrays. Although to different extents, all functional categories displayed significantly regulated genes indicating that considerable transcriptomic alterations are induced by HU. Interestingly, the TIC class (transport of small molecules and ions into the cells) had the highest percentage of up-regulated genes, while the most down-regulated genes were those of the JAE class (cell junction, adhesion, extracellular matrix). TIC genes comprised 16% of those whose expression was altered, including sodium channel, nonvoltage-gated 1 beta (Scnn1b), glutamate receptor (Grin1), voltage-dependent anion channel 1 (Vdac1), calcium channel beta 3 subunit (Cacnb3) and others. The analysis performed by GeneMAPP revealed several altered protein classes and functional pathways such as blood coagulation and immune response, learning and memory, ion channels and cell junction. In particular, data indicate that HU causes an alteration in hemostasis which resolves in a shift toward a more hyper-coagulative state with an increased risk of venous thrombosis. Furthermore, HU treatment seems to impact on key steps of synaptic plasticity and learning processes."	"Mice with reduced NMDA receptor glycine affinity model some of the negative and cognitive symptoms of schizophrenia. Schizophrenic patients demonstrate prominent negative and cognitive symptoms that are poorly responsive to antipsychotic treatment. Abnormal glutamatergic neurotransmission may contribute to these pathophysiological dimensions of schizophrenia. We examined the involvement of the glycine coagonist site on the N-methyl-D: -aspartate receptor (NMDAR) glycine coagonist site in the modulation of negative and cognitive endophenotypes in mice. Behavioral phenotypes relevant to schizophrenia were assessed in Grin1(D481N) mice that have reduced NMDAR glycine affinity. Grin1(D481N) mutant mice showed abnormally persistent latent inhibition (LI) that was reversed by two agents that enhance NMDAR glycine site function, D: -serine (600 mg/kg) and ALX-5407 (1 mg/kg), and by the classical atypical antipsychotic clozapine (3 mg/kg). Similarly, blockade of the NMDAR glycine site with the antagonist L-701,324 (5 mg/kg) induced persistent LI in C57BL6/J mice. In a social affiliations task, Grin1(D481N) mutant animals showed reduced social approach behaviors that were normalized by D: -serine (600 mg/kg). During a nonassociative spatial object recognition task, mutant mice demonstrated impaired reactivity to a spatial change that was reversible by D: -serine (300 and 600 mg/kg) and clozapine (0.75 mg/kg). In contrast, responses to social novelty and nonspatial change remained unaffected, indicating that the Grin1(D481N) mutation induces selective deficits in sociability and spatial discrimination, while leaving intact the ability to react to novelty. Genetic and pharmacologically induced deficiencies in glycine binding appear to model the impairments in behavioral flexibility, sociability, and spatial recognition related to the negative and cognitive symptoms of schizophrenia. Antipsychotics that target the NMDAR glycine site may be beneficial in treating such psychiatric symptoms."	"Transcription of the chicken Grin1 gene is regulated by the activity of SP3 and NRSF in undifferentiated cells and neurons. The NMDA (N-methyl-D-aspartate) receptors are important in the regulation of neuronal development, synaptic plasticity, learning and memory, and are involved in several brain pathologies. The NR1 subunit is essential for the assembly of functional receptors, as it forms the calcium-permeable ion channel and contains the obligatory co-agonist binding site. Previous studies have shown that NR1 gene (Grin1) expression is up-regulated during neuronal differentiation and its expression is widespread in the central nervous system. We have previously cloned the chicken Grin1 gene and 1.9 kb of the 5'-regulatory region. In the present study, we analysed the molecular mechanisms that regulate chicken Grin1 gene transcription in undifferentiated cells and neurons. By functional analysis of chicken Grin1-luciferase gene 5'-regulatory region constructs, we demonstrate that the basal promoter is delimited within 210 bp upstream from the main transcription initiation site. DNA-protein binding and functional assays revealed that the 5'-UTR (untranslated region) has one consensus NRSE (neuron-restrictive silencing element) that binds NRSF (neuron-restrictive silencing factor), and one SP (stimulating protein transcription factor) element that binds SP3, both repressing Grin1 gene transcription in undifferentiated P19 cells (embryonic terato-carcinoma cells) and PC12 cells (phaeochromocytoma cells). The promoter region lacks a consensus TATA box, but contains one GSG/SP (GSG-like box near a SP-consensus site) that binds SP3 and up-regulates gene transcription in embryonic chicken cortical neurons. Taken together, these results demonstrate a dual role of SP3 in regulating the expression of the Grin1 gene, by repressing transcription in the 5'-UTR in undifferentiated cells as well as acting as a transcription factor, increasing Grin1 gene transcription in neurons."	"Development of a mouse test for repetitive, restricted behaviors: relevance to autism. Repetitive behavior, a core symptom of autism, encompasses stereotyped responses, restricted interests, and resistance to change. These studies investigated whether different components of the repetitive behavior domain could be modeled in the exploratory hole-board task in mice. Four inbred mouse strains, C57BL/6J, BALB/cByJ, BTBR T+tf/J, and FVB/NJ, and mice with reduced expression of Grin1, leading to NMDA receptor hypofunction (NR1neo/neo mice), were tested for exploration and preference for olfactory stimuli in an activity chamber with a 16-hole floor-board. Reduced exploration and high preference for holes located in the corners of the chamber were observed in BALB/cByJ and BTBR T+tf/J mice. All inbred strains had initial high preference for a familiar olfactory stimulus (clean cage bedding). BTBR T+tf/J was the only strain that did not demonstrate a shift in hole preference towards an appetitive olfactory stimulus (cereal or a chocolate chip), following home cage exposure to the food. The NR1neo/neo mice showed lower hole selectivity and aberrant olfactory stimulus preference, in comparison to wildtype controls. The results indicate that NR1neo/neo mice have repetitive nose poke responses that are less modified by environmental contingencies than responses in wildtype mice. 25-30% of NMDA receptor hypomorphic mice also show self-injurious responses. Findings from the olfactory studies suggest that resistance to change and restricted interests might be modeled in mice by a failure to alter patterns of hole preference following familiarization with an appetitive stimulus, and by high preference persistently demonstrated for one particular olfactory stimulus. Further work is required to determine the characteristics of optimal mouse social stimuli in the olfactory hole-board test."	"Molecular mechanisms of schizophrenia. Schizophrenia is a complex disorder, where family, twin and adoption studies have been demonstrating a high heritability of the disease and that this disease is not simply defined by several major genes but rather evolves from addition or potentiation of a specific cluster of genes, which subsequently determines the genetic vulnerability of an individual. Linkage and association studies suggest that a genetic vulnerablility, is not forcefully leading to the disease since triggering factors and environmental influences, i.e. birth complications, drug abuse, urban background or time of birth have been identified. This has lead to the assumption that schizophrenia is not only a genetically defined static disorder but a dynamic process leading to dysregulation of multiple pathways. There are several different hypothesis based on several facets of the disease, some of them due to the relatively well-known mechanisms of therapeutic agents. The most widely considered neurodevelopmental hypothesis of schizophrenia integrates environmental influences and causative genes. The dopamine hypothesis of schizophrenia is based on the fact that all common treatments involve antidopaminergic mechanisms and genes such as DRD2, DRD3, DARPP-32, BDNF or COMT are closely related to dopaminergic system functioning. The glutamatergic hypothesis of schizophrenia lead recently to a first successful mGlu2/3 receptor agonistic drug and is underpinned by significant findings in genes regulating the glutamatergic system (SLC1A6, SLC1A2 GRIN1, GRIN2A, GRIA1, NRG1, ErbB4, DTNBP1, DAAO, G72/30, GRM3). Correspondingly, GABA has been proposed to modulate the pathophysiology of the disease which is represented by the involvement of genes like GABRA1, GABRP, GABRA6 and Reelin. Moreover, several genes implicating immune, signaling and networking deficits have been reported to be involved in the disease, i.e. DISC1, RGS4, PRODH, DGCR6, ZDHHC8, DGCR2, Akt, CREB, IL-1B, IL-1RN, IL-10, IL-1B. However, molecular findings suggest that a complex interplay between receptors, kinases, proteins and hormones is involved in schizophrenia. In a unifying hypothesis, different cascades merge into another that ultimately lead to the development of symptoms adherent to schizophrenic disorders."	"Elevated GRIA1 mRNA expression in Layer II/III and V pyramidal cells of the DLPFC in schizophrenia. The functional integrity of the dorsolateral prefrontal cortex (DLPFC) is altered in schizophrenia leading to profound deficits in working memory and cognition. Growing evidence indicates that dysregulation of glutamate signaling may be a significant contributor to the pathophysiology mediating these effects; however, the contribution of NMDA and AMPA receptors in the mediation of this deficit remains unclear. The equivocality of data regarding ionotropic glutamate receptor alterations of subunit expression in the DLPFC of schizophrenics is likely reflective of subtle alterations in the cellular and molecular composition of specific neuronal populations within the region. Given previous evidence of Layer II/III and V pyramidal cell alterations in schizophrenia and the significant influence of subunit composition on NMDA and AMPA receptor function, laser capture microdissection combined with quantitative PCR was used to examine the expression of AMPA (GRIA1-4) and NMDA (GRIN1, 2A and 2B) subunit mRNA levels in Layer II/III and Layer V pyramidal cells in the DLPFC. Comparisons were made between individuals diagnosed with schizophrenia, bipolar disorder, major depressive disorder and controls (n=15/group). All subunits were expressed at detectable levels in both cell populations for all diseases as well as for the control group. Interestingly, GRIA1 mRNA was significantly increased in both cell types in the schizophrenia group compare to controls, while similar trends were observed in major depressive disorder (Layers II/III and V) and bipolar disorder (Layer V). These data suggest that increased GRIA1 subunit expression may contribute to schizophrenia pathology."	"Possible association between genetic variants at the GRIN1 gene and schizophrenia with lifetime history of depressive symptoms in a German sample. Genetic variation in glutamatergic signalling pathways is believed to play a substantial role in the aetiology of schizophrenia. The N-methyl-D-aspartate receptor subunit gene GRIN1 has been proposed as a candidate gene for schizophrenia. We tested for a potential association between schizophrenia and four single nucleotide polymorphisms (rs4880213, rs11146020, rs6293, and rs10747050) and one microsatellite marker at GRIN1 in a German sample of 354 patients and 323 controls. We found significant associations in single-marker and haplotype-based analyses (P&lt;0.05). Significance was more pronounced (P&lt;0.01) in the subset of patients with a lifetime history of major depression, a subgroup of schizophrenia described previously as a promising phenotypic subtype in genetic studies of schizophrenia. Although significances did not withstand correction for multiple testing, the results of our exploratory analysis warrant further studies on GRIN1 and schizophrenia."	"D-serine augments NMDA-NR2B receptor-dependent hippocampal long-term depression and spatial reversal learning. The contributions of hippocampal long-term depression (LTD) to explicit learning and memory are poorly understood. Electrophysiological and behavioral studies examined the effects of modulating NMDA receptor-dependent LTD on spatial learning in the Morris water maze (MWM). The NMDA receptor co-agonist D-serine substantially enhanced NR2B-dependent LTD, but not long-term potentiation (LTP) or depotentiation, in hippocampal slices from adult wild type mice. Exogenous D-serine did not alter MWM acquisition, but substantially enhanced subsequent reversal learning of a novel target location and performance in a delayed-matching-to-place task. Conversely, an NR2B antagonist disrupted reversal learning and promoted perseveration. Endogenous synaptic D-serine likely saturates during LTP induction because exogenous D-serine rescued deficient LTP and MWM acquisition in Grin1(D481N) mutant mice having a lower D-serine affinity. Thus, D-serine may enhance a form of hippocampal NR2B-dependent LTD that contributes to spatial reversal learning. By enhancing this form of synaptic plasticity, D-serine could improve cognitive flexibility in psychiatric disorders characterized by perseveration of aberrant ideation or behaviors."	"Glutamate signaling proteins and tyrosine hydroxylase in the locus coeruleus of alcoholics. It has been postulated that alcoholism is associated with abnormalities in glutamatergic neurotransmission. This study examined the density of glutamate NMDA receptor subunits and its associated proteins in the noradrenergic locus coeruleus (LC) in deceased alcoholic subjects. Our previous research indicated that the NMDA receptor in the human LC is composed of obligatory NR1 and regulatory NR2C subunits. At synapses, NMDA receptors are stabilized through interactions with postsynaptic density protein (PSD-95). PSD-95 provides structural and functional coupling of the NMDA receptor with neuronal nitric oxide synthase (nNOS), an intracellular mediator of NMDA receptor activation. LC tissue was obtained from 10 alcohol-dependent subjects and eight psychiatrically healthy controls. Concentrations of NR1 and NR2C subunits, as well as PSD-95 and nNOS, were measured using Western blotting. In addition, we have examined tyrosine hydroxylase (TH), the rate-limiting enzyme in the synthesis of norepinephrine. The amount of NR1 was lower in the rostral (-30%) and middle (-41%) portions of the LC of alcoholics as compared to control subjects. No differences in the amounts of NR2C, PSD-95, nNOS and TH were detected comparing alcoholic to control subjects. Lower levels of NR1 subunit of the NMDA receptor in the LC implicates altered glutamate-norepinephrine interactions in alcoholism."	"eIF2B and oligodendrocyte survival: where nature and nurture meet in bipolar disorder and schizophrenia? Bipolar disorder and schizophrenia share common chromosomal susceptibility loci and many risk-promoting genes. Oligodendrocyte cell loss and hypomyelination are common to both diseases. A number of environmental risk factors including famine, viral infection, and prenatal or childhood stress may also predispose to schizophrenia or bipolar disorder. In cells, related stressors (starvation, viruses, cytokines, oxidative, and endoplasmic reticulum stress) activate a series of eIF2-alpha kinases, which arrest protein synthesis via the eventual inhibition, by phosphorylated eIF2-alpha, of the translation initiation factor eIF2B. Growth factors increase protein synthesis via eIF2B activation and counterbalance this system. The control of protein synthesis by eIF2-alpha kinases is also engaged by long-term potentiation and repressed by long-term depression, mediated by N-methyl-D-aspartate (NMDA) and metabotropic glutamate receptors. Many genes reportedly associated with both schizophrenia and bipolar disorder code for proteins within or associated with this network. These include NMDA (GRIN1, GRIN2A, GRIN2B) and metabotropic (GRM3, GRM4) glutamate receptors, growth factors (BDNF, NRG1), and many of their downstream signaling components or accomplices (AKT1, DAO, DAOA, DISC1, DTNBP1, DPYSL2, IMPA2, NCAM1, NOS1, NOS1AP, PIK3C3, PIP5K2A, PDLIM5, RGS4, YWHAH). They also include multiple gene products related to the control of the stress-responsive eIF2-alpha kinases (IL1B, IL1RN, MTHFR, TNF, ND4, NDUFV2, XBP1). Oligodendrocytes are particularly sensitive to defects in the eIF2B complex, mutations in which are responsible for vanishing white matter disease. The convergence of natural and genetic risk factors on this area in bipolar disorder and schizophrenia may help to explain the apparent vulnerability of this cell type in these conditions. This convergence may also help to reconcile certain arguments related to the importance of nature and nurture in the etiology of these psychiatric disorders. Both may affect common stress-related signaling pathways that dictate oligodendrocyte viability and synaptic plasticity."	"Depolarization and CaM kinase IV modulate NMDA receptor splicing through two essential RNA elements. Alternative splicing controls the activity of many proteins important for neuronal excitation, but the signal-transduction pathways that affect spliced isoform expression are not well understood. One particularly interesting system of alternative splicing is exon 21 (E21) of the NMDA receptor 1 (NMDAR1 E21), which controls the trafficking of NMDA receptors to the plasma membrane and is repressed by Ca(++)/calmodulin-dependent protein kinase (CaMK) IV signaling. Here, we characterize the splicing of NMDAR1 E21. We find that E21 splicing is reversibly repressed by neuronal depolarization, and we identify two RNA elements within the exon that function together to mediate the inducible repression. One of these exonic elements is similar to an intronic CaMK IV-responsive RNA element (CaRRE) originally identified in the 3' splice site of the BK channel STREX exon, but not previously observed within an exon. The other element is a new RNA motif. Introduction of either of these two motifs, called CaRRE type 1 and CaRRE type 2, into a heterologous constitutive exon can confer CaMK IV-dependent repression on the new exon. Thus, either exonic CaRRE can be sufficient for CaMK IV-induced repression. Single nucleotide scanning mutagenesis defined consensus sequences for these two CaRRE motifs. A genome-wide motif search and subsequent RT-PCR validation identified a group of depolarization-regulated alternative exons carrying CaRRE consensus sequences. Many of these exons are likely to alter neuronal function. Thus, these two RNA elements define a group of co-regulated splicing events that respond to a common stimulus in neurons to alter their activity."	"[An association study between GRIN1, BDNF genes and bipolar disorder]. To evaluate the role of inherited gene variations in GRIN1 (glutamate receptor, ionotropic NMDA1), BDNF (brain derived neurotrophic factor) genes in human bipolar disorder, we selected 4 single nucleotide polymorphisms in GRIN1, BDNF (2 SNPs in each gene) and made SNPs analysis in 100 unrelated cases and 100 controls by TaqMan. Then we compared genotypes differences between cases and controls. The software SHEsis was also used to make haplotype analysis. The significant results were obtained, showing that the SNPs in GRIN1 gene were related to the BP (P &lt; 0.05). In addition, the combined haplotype T/G had a significant difference in the two groups (P &lt; 0.05). The SNPs in BDNF gene showed no statistical significance. These results confirm that the GRIN1 gene confers susceptibility to bipolar disorder."	"Multiple genes and factors associated with bipolar disorder converge on growth factor and stress activated kinase pathways controlling translation initiation: implications for oligodendrocyte viability. Famine and viral infection, as well as interferon therapy have been reported to increase the risk of developing bipolar disorder. In addition, almost 100 polymorphic genes have been associated with this disease. Several form most of the components of a phosphatidyl-inositol signalling/AKT1 survival pathway (PIK3C3, PIP5K2A, PLCG1, SYNJ1, IMPA2, AKT1, GSK3B, TCF4) which is activated by growth factors (BDNF, NRG1) and also by NMDA receptors (GRIN1, GRIN2A, GRIN2B). Various other protein products of genes associated with bipolar disorder either bind to or are affected by phosphatidyl-inositol phosphate products of this pathway (ADBRK2, HIP1R, KCNQ2, RGS4, WFS1), are associated with its constituent elements (BCR, DUSP6, FAT, GNAZ) or are downstream targets of this signalling cascade (DPYSL2, DRD3, GAD1, G6PD, GCH1, KCNQ2, NOS3, SLC6A3, SLC6A4, SST, TH, TIMELESS). A further pathway relates to endoplasmic reticulum-stress (HSPA5, XBP1), caused by problems in protein glycosylation (ALG9), growth factor receptor sorting (PIK3C3, HIP1R, SYBL1), or aberrant calcium homoeostasis (WFS1). Key processes relating to these pathways appear to be under circadian control (ARNTL, CLOCK, PER3, TIMELESS). DISC1 can also be linked to many of these pathways. The growth factor pathway promotes protein synthesis, while the endoplasmic reticulum stress pathway, and other stress pathways activated by viruses and cytokines (IL1B, TNF, Interferons), oxidative stress or starvation, all factors associated with bipolar disorder risk, shuts down protein synthesis via control of the EIF2 alpha and beta translation initiation complex. For unknown reasons, oligodendrocytes appear to be particularly prone to defects in the translation initiation complex (EIF2B) and the convergence of these environmental and genomic signalling pathways on this area might well explain their vulnerability in bipolar disorder."	"Association of the glutamate receptor subunit gene GRIN2B with attention-deficit/hyperactivity disorder. The glutamatergic signaling pathway represents an ideal candidate susceptibility system for attention-deficit/hyperactivity disorder (ADHD). Disruption of specific N-methyl-D-aspartate-type glutamate receptor subunit genes (GRIN1, 2A-D) in mice leads to significant alterations in cognitive and/or locomotor behavior including impairments in latent learning, spatial memory tasks and hyperactivity. Here, we tested for association of GRIN2B variants with ADHD, by genotyping nine single nucleotide polymorphisms (SNPs) in 205 nuclear families identified through probands with ADHD. Transmission of alleles from heterozygous parents to affected offspring was examined using the transmission/disequilibrium test. Quantitative trait analyses for the ADHD symptom dimensions [inattentive (IA) and hyperactive/impulsive (HI)] and cognitive measures of verbal working memory and verbal short-term memory were performed using the fbat program. Three SNPs showed significantly biased transmission (P &lt; 0.05), with the strongest evidence of association found for rs2,284,411 (chi(2)= 7.903, 1 degree of freedom, P= 0.005). Quantitative trait analyses showed associations of these markers with both the IA and the HI symptom dimensions of ADHD but not with the cognitive measures of verbal short-term memory or verbal working memory. Our data suggest an association between variations in the GRIN2B subunit gene and ADHD as measured categorically or as a quantitatively distributed trait."	"No association between genetic variants at the GRIN1 gene and bipolar disorder in a German sample. Disturbed glutamatergic neurotransmission has been implicated in the pathogenesis of schizophrenia and bipolar disorder, with the N-methy-D-aspartate receptors being in the focus of research. The NR1 subunit, which is encoded by the gene GRIN1, plays a key role in the functionality of N-methy-D-aspartate receptors. We tested the association between GRIN1 and bipolar disorder in a sample of German descent, consisting of 306 bipolar disorder patients and 319 population-based controls. No significant association was found. In accordance with our recent findings, we hypothesized that restricting case definition to individuals with a history of persecutory delusions might clarify the relationship between bipolar disorder and GRIN1. This stratified analysis did not yield any significant association either. Our results do not support an association of the GRIN1 gene with bipolar disorder in the German population."	"Glutamate acts at NMDA receptors on fresh bovine and on cultured human retinal pigment epithelial cells to trigger release of ATP. The photoreceptors lie between the inner retina and the retinal pigment epithelium (RPE). The release of glutamate by the phototoreceptors can signal changes in light levels to inner retinal neurons, but the role of glutamate in communicating with the RPE is unknown. Since RPE cells are known to release ATP, we asked whether glutamate could trigger ATP release from RPE cells and whether this altered cell signalling. Stimulation of the apical face of fresh bovine RPE eyecups with 100 mum NMDA increased ATP levels more than threefold, indicating that both receptors for NMDA and release of ATP occurred across the apical membrane of fresh RPE cells. NMDA increased ATP levels bathing cultured human ARPE-19 cells more than twofold, with NMDA receptor inhibitors MK-801 and d-AP5 preventing this release. Blocking the glycine site of the NMDA receptor with 5,7-dichlorokynurenic acid prevented ATP release from ARPE-19 cells. Release was also blocked by channel blocker NPPB and Ca(2+) chelator BAPTA, but not by cystic fibrosis transmembrane conductance regulator (CFTR) blocker glibenclamide or vesicular release inhibitor brefeldin A. Glutamate produced a dose-dependent release of ATP from ARPE-19 cells that was substantially inhibited by MK-801. NMDA triggered a rise in cell Ca(2+) that was blocked by MK-801, by the ATPase apyrase, by the P2Y(1) receptor antagonist MRS2179 and by depletion of intracellular Ca(2+) stores with thapsigargin. These results suggest that glutamate stimulates NMDA receptors on the apical membrane of RPE cells to release ATP. This secondary release can amplify the glutaminergic signal by increasing Ca(2+) inside RPE cells, and might activate Ca(2+)-dependent conductances. The interplay between glutaminergic and purinergic systems may thus be important for light-dependent interactions between photoreceptors and the RPE."	"Significant association between the genetic variations in the 5' end of the N-methyl-D-aspartate receptor subunit gene GRIN1 and schizophrenia. N-methyl-D-aspartate (NMDA) receptors play important roles in many neurophysiological processes. Evidence from previous studies indicate that NMDA receptors contribute to the pathophysiology of schizophrenia. Two NMDA receptor subunit genes, GRIN1 and GRIN2A, are both good candidate genes for schizophrenia. We genotyped five single nucleotide polymorphisms (SNPs) in GRIN1 and two in GRIN2A in 2455 Han Chinese subjects, including population- and family-based samples, and performed case-control and transmission disequilibrium test (TDT) analyses. A microsatellite in GRIN2A was genotyped in population-based samples and a Mann-Whitney U test was performed. A highly significant association was detected at the 5' end of GRIN1. Analyses of single variants and multiple-locus haplotypes indicate that the association is mainly generated by rs11146020 (case-control study: p = .0000013, odds ratio = .61, 95% confidence interval .50-.74; TDT: p = .0019, T/NT = 79/123). No association was found in the GRIN2A polymorphisms. Our results provide support for the hypothesis that NMDA receptors are an important factor in schizophrenia. Moreover, rs11146020 is located in 5' untranslated region where several functional elements have been found. Hence, the SNP is a potential candidate in altering risk for schizophrenia and worthy of further replication and functional study."	"Pharmacogenetics and obesity: common gene variants influence weight loss response of the norepinephrine/dopamine transporter inhibitor GW320659 in obese subjects. GW320659, a highly selective neuronal norepinephrine and dopamine re-uptake inhibitor, has been evaluated for the treatment of obesity. Scrutiny of the weight loss data from a phase II study (GlaxoSmithKline study OBS20001) showed a wide variation in weight loss response following GW320659 treatment and the possibility that the study population might include subgroups with enhanced weight loss response. Pharmacogenetic analysis was performed in 191 subjects prospectively ascertained from a Phase II dose ranging study to evaluate the influence of genotype on weight loss efficacy and safety of GW320659 in obese subjects. Common genetic polymorphisms in the drug target (norepinephrine transporter protein 1, SLC6A2) and mechanism pathway (NMDA receptor channel NR1 subunit, GRIN1) were associated with increased weight loss following GW320659 treatment in a proportion (36%) of the study population. In the patient subgroup selected for these genotypes, GW320659 (15 mg/day) produced a significant difference in mean weight loss of 7.84 kg (SD 5.23, n = 14), compared to 2.53 kg (SD 5.17, n = 24) in the subgroup that did not possess the genotypes (P = 0.006). This subgroup also showed a highly significant weight loss response for GW320659 compared to placebo (+0.31 kg, SD 3.32, n = 16) with the same genotypes (P &lt; 0.0001). In addition, there was no difference in placebo response between either subgroup. Polymorphisms in SLC6A2 and GRIN1 could be used to maximize effective obesity pharmacotherapy by norepinephrine/dopamine transporter inhibitors by identifying patients that may be predisposed to particularly good treatment weight loss response."	"Histone methylation at gene promoters is associated with developmental regulation and region-specific expression of ionotropic and metabotropic glutamate receptors in human brain. Glutamatergic signaling is regulated, in part, through differential expression of NMDA and AMPA/KA channel subunits and G protein-coupled metabotropic receptors. In human brain, region-specific expression patterns of glutamate receptor genes are maintained over the course of decades, suggesting a role for molecular mechanisms involved in long-term regulation of transcription, including methylation of lysine residues at histone N-terminal tails. Using a native chromatin immunoprecipitation assay, we studied histone methylation marks at proximal promoters of 16 ionotropic and metabotropic glutamate receptor genes (GRIN1,2A-D; GRIA1,3,4; GRIK2,4,5; GRM1,3,4,6,7 ) in cerebellar cortex collected across a wide age range from midgestation to 90 years old. Levels of di- and trimethylated histone H3-lysine 4, which are associated with open chromatin and transcription, showed significant differences between promoters and a robust correlation with corresponding mRNA levels in immature and mature cerebellar cortex. In contrast, levels of trimethylated H3-lysine 27 and H4-lysine 20, two histone modifications defining silenced or condensed chromatin, did not correlate with transcription but were up-regulated overall in adult cerebellum. Furthermore, differential gene expression patterns in prefrontal and cerebellar cortex were reflected by similar differences in H3-lysine 4 methylation at promoters. Together, these findings suggest that histone lysine methylation at gene promoters is involved in developmental regulation and maintenance of region-specific expression patterns of ionotropic and metabotropic glutamate receptors. The association of a specific epigenetic mark, H3-(methyl)-lysine 4, with the molecular architecture of glutamatergic signaling in human brain has potential implications for schizophrenia and other disorders with altered glutamate receptor function."	"Genetics and epigenetics in major psychiatric disorders: dilemmas, achievements, applications, and future scope. No specific gene has been identified for any major psychiatric disorder, including schizophrenia, in spite of strong evidence supporting a genetic basis for these complex and devastating disorders. There are several likely reasons for this failure, ranging from poor study design with low statistical power to genetic mechanisms such as polygenic inheritance, epigenetic interactions, and pleiotropy. Most study designs currently in use are inadequate to uncover these mechanisms. However, to date, genetic studies have provided some valuable insight into the causes and potential therapies for psychiatric disorders. There is a growing body of evidence suggesting that the understanding of the genetic etiology of psychiatric illnesses, including schizophrenia, will be more successful with integrative approaches considering both genetic and epigenetic factors. For example, several genes including those encoding dopamine receptors (DRD2, DRD3, and DRD4), serotonin receptor 2A (HTR2A) and catechol-O-methyltransferase (COMT) have been implicated in the etiology of schizophrenia and related disorders through meta-analyses and large, multicenter studies. There is also growing evidence for the role of DRD1, NMDA receptor genes (GRIN1, GRIN2A, GRIN2B), brain-derived neurotrophic factor (BDNF), and dopamine transporter (SLC6A3) in both schizophrenia and bipolar disorder. Recent studies have indicated that epigenetic modification of reelin (RELN), BDNF, and the DRD2 promoters confer susceptibility to clinical psychiatric conditions. Pharmacologic therapy of psychiatric disorders will likely be more effective once the molecular pathogenesis is known. For example, the hypoactive alleles of DRD2 and the hyperactive alleles of COMT, which degrade the dopamine in the synaptic cleft, are associated with schizophrenia. It is likely that insufficient dopaminergic transmission in the frontal lobe plays a role in the development of negative symptoms associated with this disorder. Antipsychotic therapies with a partial dopamine D2 receptor agonist effect may be a plausible alternative to current therapies, and would be effective in symptom reduction in psychotic individuals. It is also possible that therapies employing dopamine D1/D2 receptor agonists or COMT inhibitors will be beneficial for patients with negative symptoms in schizophrenia and bipolar disorder. The complex etiology of schizophrenia, and other psychiatric disorders, warrants the consideration of both genetic and epigenetic systems and the careful design of experiments to illumine the genetic mechanisms conferring liability for these disorders and the benefit of existing and new therapies."	"An association study of the N-methyl-D-aspartate receptor NR1 subunit gene (GRIN1) and NR2B subunit gene (GRIN2B) in schizophrenia with universal DNA microarray. Dysfunction of the N-methyl-D-aspartate (NMDA) receptors has been implicated in the etiology of schizophrenia based on psychotomimetic properties of several antagonists and on observation of genetic animal models. To conduct association analysis of the NMDA receptors in the Chinese population, we examined 16 reported SNPs across the NMDA receptor NR1 subunit gene (GRIN1) and NR2B subunit gene (GRIN2B), five of which were identified in the Chinese population. In this study, we combined universal DNA microarray and ligase detection reaction (LDR) for the purposes of association analysis, an approach we considered to be highly specific as well as offering a potentially high throughput of SNP genotyping. The association study was performed using 253 Chinese patients with schizophrenia and 140 Chinese control subjects. No significant frequency differences were found in the analysis of the alleles but some were found in the haplotypes of the GRIN2B gene. The interactions between the GRIN1 and GRIN2B genes were evaluated using the multifactor-dimensionality reduction (MDR) method, which showed a significant genetic interaction between the G1001C in the GRIN1 gene and the T4197C and T5988C polymorphisms in the GRIN2B gene. These findings suggest that the combined effects of the polymorphisms in the GRIN1 and GRIN2B genes might be involved in the etiology of schizophrenia.European Journal of Human Genetics (2005) 13, 807-814. doi:10.1038/sj.ejhg.5201418 Published online 20 April 2005."	"A combinatorial code for splicing silencing: UAGG and GGGG motifs. Alternative pre-mRNA splicing is widely used to regulate gene expression by tuning the levels of tissue-specific mRNA isoforms. Few regulatory mechanisms are understood at the level of combinatorial control despite numerous sequences, distinct from splice sites, that have been shown to play roles in splicing enhancement or silencing. Here we use molecular approaches to identify a ternary combination of exonic UAGG and 5'-splice-site-proximal GGGG motifs that functions cooperatively to silence the brain-region-specific CI cassette exon (exon 19) of the glutamate NMDA R1 receptor (GRIN1) transcript. Disruption of three components of the motif pattern converted the CI cassette into a constitutive exon, while predominant skipping was conferred when the same components were introduced, de novo, into a heterologous constitutive exon. Predominant exon silencing was directed by the motif pattern in the presence of six competing exonic splicing enhancers, and this effect was retained after systematically repositioning the two exonic UAGGs within the CI cassette. In this system, hnRNP A1 was shown to mediate silencing while hnRNP H antagonized silencing. Genome-wide computational analysis combined with RT-PCR testing showed that a class of skipped human and mouse exons can be identified by searches that preserve the sequence and spatial configuration of the UAGG and GGGG motifs. This analysis suggests that the multi-component silencing code may play an important role in the tissue-specific regulation of the CI cassette exon, and that it may serve more generally as a molecular language to allow for intricate adjustments and the coordination of splicing patterns from different genes."	"In silico identification of regulatory elements of GRIN1 genes. The ionotropic receptor of glutamate activated by N-methyl-D-aspartate (iGluR-NMDA) is a multiheteromeric complex constituted by at least three different types of subunits, encoded by seven different genes. The subunits of iGluR-NMDA have a complex system of regulation of their gene expression. Their expression is specific for each type of neural cell, as well as for the age of the organism. Moreover, there are reports that iGluR-NMDA expression is species-specific. Even though this macromolecular complex is very important in physiology and pathology of the central nervous system, knowledge to date about the regulatory elements controlling expression is scarce. We present the results of an in silico prediction of potential regulatory elements, some of which coincide with the few known experimentally. We also present the important differences regarding the presence and the localization of the regulatory elements among human, rat, and mouse species."	"In vitro characterization of novel NR2B selective NMDA receptor antagonists. N-Methyl-D-aspartate (NMDA) subunit specific receptor antagonism has potential therapeutic application for multiple CNS pathologies. MERCK 1, MERCK 2, and MERCK 3 are novel NR2B subtype selective NMDA receptor antagonists. The affinity and the kinetic mechanism of inhibition by these antagonists and ifenprodil were investigated using the whole-cell configuration of the patch clamp technique, calcium flux, and radioligand binding on a mouse cell line L(tk-) expressing recombinant human heteromeric NMDA receptors consisting of NR1a/NR2B subunit combinations. The rank order of potency, as determined by electrophysiology, was ifenprodil&lt;MERCK 2&lt;MERCK 1&lt;MERCK 3 with K(D)'s 79+/-8, 2.4+/-1.1, 1.3+/-0.9, and approximately 0.16+/-0.02 nM, respectively. The apparent dissociation rate constants among these compounds differed by as much as 394-fold whereas the apparent association constants varied less than 3-fold. Higher affinities were a result of slower drug dissociation kinetics of receptor unbinding. Maximal inhibition was not voltage-dependent and was not statistically different at saturating concentrations by these compounds. These results provide the first detailed functional analysis of the kinetic mechanism of MERCK 1, MERCK 2, and MERCK 3 inhibition of NMDA receptors."	"GRIN1 locus may modify the susceptibility to seizures during alcohol withdrawal. N-Methyl-D-aspartate (NMDA) receptors, members of the glutamate receptor channel superfamily, are generally inhibited by alcohol. The expression and alternative splicing of the obligatory NR1 subunit is altered by alcohol exposure, emphasizing the involvement of the NR1 subunit, which is coded by the GRIN1 gene, in alcohol-mediated effects. We performed an association study in patients with alcohol dependence with the GRIN1 locus. Two independent case control samples consisting of a total of 442 alcohol-dependent patients and 442 unrelated controls were included. There was no overall difference in allele or genotype frequency between patients and controls. However, the 2108A allele and A-containing genotypes were over-represented in the patients with a history of withdrawal-induced seizures when compared to healthy volunteers (allele: chi(2) = 5.412, df = 1, P = 0.020) or an independent sample of patients without a history of seizures (allele: chi(2) = 4.185, df = 1, P = 0.041). Age at onset, years of alcohol dependence, and a history of delirium tremens did not differ between genotype or allele groups. These findings support the hypothesis that the GRIN1 locus may modify the susceptibility to seizures during alcohol withdrawal. This novel finding warrants replication."	"Structural consequences of D481N/K483Q mutation at glycine binding site of NMDA ionotropic glutamate receptors: a molecular dynamics study. N-Methyl-D-Aspartate (NMDA) receptors are the ligand gated as well as voltage sensitive ionotropic glutamate receptors, widely distributed in the vertebrate central nervous system and they play critical role in the pathogenesis of schizophrenia. Molecular dynamics simulations have been carried out on high resolution crystal structure of NR1 subunit of NMDA receptor ligand binding core (S1S2) in four different conformations. We have investigated consequence of D481N/K483Q double mutation of NR1 subunit from simulation results of (a) glycine bound form (WG), (b) unbound (closed-apo) form (WOG), (c) a double mutated form (DM), and (d) the antagonist (5,7-dichlorokynuric acid) bound form (DCKA). The MD simulations and simulated annealing for 4ns show a distinct conformation for the double mutated conformation that neither follows the antagonist nor apo conformation. There are two distinct sites, loop1 and loop2 where the double mutated structure in its glycine bound form shows significant RMSD deviations as compared to the wild-type. The interactions of glycine with the receptor remain theoretically unchanged in the double mutated structure and there is no detachment of S1S2 domains. The results suggest that separation of S1 and S2 domains may not be essential for channel inactivation. Therefore, it is hypothesized that hypoactivation of NMDA receptor channels may arise out of the conformational changes at non-conserved Loop1 and Loop2 regions observed in the mutated structure. The Loop1 and Loop2 regions responsible for inter-subunit interactions in a functional NMDA receptor, may therefore, render the ligand bound form defunct. This may account for behavioral anomalies due to receptor inactivation seen in grin1 mutated mice."	"Functional characterization of Galphao signaling through G protein-regulated inducer of neurite outgrowth 1. G protein-regulated inducer of neurite outgrowth 1 (GRIN1) was initially identified as a binding protein for guanosine 5'-3-O-(thio)triphosphate-bound Galphaz. GRIN1 is specifically expressed in brain and interacts selectively with activated alpha subunits of the Gi subfamily. GRIN1 colocalizes with Galphao at the growth cone of neuronal cells and promotes neurite extension in Neuro2a cells when coexpressed with constitutively active mutant GalphaoQ205L. These results suggest that GRIN1 functions as a downstream target for Galphao. However, GRIN1 does not contain domains that are homologous to known signaling motifs. To understand the mechanisms of Galphao-GRIN1 pathway, we analyzed functional domains of GRIN1 that are involved in binding with Galphao or with its targeting to the plasma membrane. Using pull-down assays with glutathione S-transferase-fused GRIN1 deletion mutants, Galphao binding regions were localized to amino acid residues 716 to 746 and 797 to 827 of GRIN1. The Galphao binding region of GRIN1 did not demonstrate GTPase accelerating activity for Galphao. GRIN1 localized in the cell periphery in Neuro2a cells, and two cysteine residues at C-terminal region of GRIN1 (Cys818 and Cys819) were shown to be critical for its membrane targeting. Coexpression of GRIN1 with GalphaoQ205L or GRIN1Delta(717-827), which lacks Galphao binding region, promoted microspike formation in Swiss 3T3 cells or neurite extension in Neuro2a cells. The dominant-negative mutant of Cdc42 blocked these morphological changes. Coexpression of GRIN1 and GalphaoQ205L stimulated the formation of GTP-bound Cdc42 in Swiss 3T3 cells. These results suggest that the binding of activated Galphao to GRIN1 induces activation of Cdc42, which leads to morphological changes in neuronal cells."	"A molecular code for splicing silencing: configurations of guanosine-rich motifs. Alternative pre-mRNA splicing is frequently used to expand the protein-coding capacity of genomes, and to regulate gene expression at the post-transcriptional level. It is a significant challenge to decipher the molecular language of tissue-specific splicing because the inherent flexibility of these mechanisms is specified by numerous short sequence motifs distributed in introns and exons. In the present study, we employ the glutamate NMDA (N-methyl-D-aspartate) R1 receptor (GRIN1) transcript as a model system to identify the molecular determinants for a brain region-specific exon silencing mechanism. We identify a set of guanosine-rich motifs that function co-operatively to regulate the CI cassette exon in a manner consistent with its in vivo splicing pattern. Whereas hnRNP (heterogeneous nuclear ribonucleoprotein) A1 mediates silencing of the CI cassette exon in conjunction with the guanosine-rich motifs, hnRNP H functions as an antagonist to silencing. Genome-wide analysis shows that, while this motif pattern is rarely present in human and mouse exons, those exons for which the pattern is conserved are generally found to be skipped exons. The identification of a similar arrangement of guanosine-rich motifs in transcripts of the hnRNP H family of splicing factors has implications for their co-ordinate regulation at the level of splicing."	"The clinical potential of antiepileptic gene therapy. Epilepsy afflicts approximately 1% of the population and, although the majority of patients gain effective seizure control through existing medications, a significant number prove refractory to treatment. For intractable focal epilepsies, gene therapy techniques provide a realistic treatment alternative, especially in patients who are considered surgical candidates. Neurotransmitter receptors and ion channels offer attractive gene therapy targets, but the pattern of viral vector transduction and gene expression can dramatically influence the final outcome. Recently, studies have shown that viral vector-mediated transduction and expression of neuroactive peptides, such as galanin and neuropeptide Y, can attenuate seizure sensitivity and prevent seizure-induced cell death in vivo. As future studies define the best means to avoid immunological silencing, as well as establish transduction properties in pathological, epileptic tissue, it should be possible to develop an efficacious gene therapy for intractable focal epilepsy."	"Identification and biochemical analysis of GRIN1 and GRIN2. We have identified the novel Galphaz-binding protein, which is referred to as the G-protein-regulated inducer of neurite outgrowth (GRIN1) using the far-western method. GRIN1 is expressed specifically in brain and binds preferentially to the activated form of alpha subunits of Gz, Gi, and Go. Coexpression of GRIN1 and the activated form of Galphao induce neurite outgrowth in Neuro2a cells. We have further identified two human GRIN1 homologs, GRIN2 and GRIN3, in the database. This article shows that GRIN2 can also bind to the GTP-bound form of Galphao. These findings suggest that the GRIN1 family may function as a downstream effector for Galphao to regulate neurite growth."	"Characterization of the expression and function of N-methyl-D-aspartate receptor in keratinocytes. The N-methyl-D-aspartate (NMDA) receptor is expressed on neural tissue where it gates calcium ion entry upon stimulation. Using immunohistochemistry, it has been demonstrated in this study that the NMDAR1 receptor is also expressed on keratinocytes (KCs) in normal human skin and inflamed psoriatic skin in vivo. Furthermore, the NMDA receptor was functional as demonstrated by the ability of this receptor to trigger Ca++ influx in KCs. Incubation of cultured, human KCs with MK-801 decreases the cell growth and induces an increase in apoptosis. These findings demonstrate that the KC expression of NMDA receptor is a mechanism through which the influx of Ca++ into the cell can be regulated and suggest that the expression of this receptor may play a role in the regulation of KC growth and differentiation."	"Ionotropic glutamate receptor activated by N-methyl-D-aspartate: a key molecule of conscious life. We want to propose that basic stereotyped integrative functions are the result of sequentially built neuronal circuits in the primitive regions of the brain in whose build-up a particular subunit composition iGluR-NMDA would play a central role. iGluR-NMDA is a multiregulated heteromeric glutamate receptor-ion channel found in plasma membranes of neurons and other cells. iGluR-NMDA may be composed of up to five subunits, depending on the type of cell involved and its location. There are three major types of subunits and there are variations within each type allowing for up to 13 possible subunits, at least in the rat, which differ from each other in amino acid sequence and thus, in tertiary structure. The actual iGluR-NMDA heteropolymer involved in a given function may thus have a great number of subunit composition possibilities which would be the result of the particular genes expressed in a given type of cell. The iGluR-NMDA is an ion channel that opens in response to glutamate in a highly regulated fashion in which different molecules and ions present in the interstitial fluid determine whether or not the channel opens upon glutamate binding. The original function of iGluR-NMDA may have been that of allowing calcium influx to cells. As the brain receives external stimuli through the senses, new circuits will be formed stepwise in the neocortex in which a particular subunit composition iGluR-NMDA will be involved. Differentiation between external stimuli generated circuits and those governing internal functions will allow distinction between self and non-self, thus generating conscious awareness. The role of the particular subunit composition iGluR-NMDA proposed would be that of providing a means of calcium influx to the synapses to be formed and, if the same stimulus is forthcoming, allowing permanent synapses formation through the membrane incorporation of calcium dependent adhesion molecules such as cadherins and cytoskeleton reorganization promoted by nectins."	"Association analysis of the genetic variants of the N-methyl D-aspartate receptor subunit 2b (NR2b) and treatment-refractory schizophrenia in the Chinese. Several pieces of evidence showed that N-methyl D-aspartate (NMDA)-receptor-mediated decreases in function may be a causative factor for schizophrenia. The NMDA receptors are composed of a common glutamate receptor, an ionotropic NMDA 1 (GRIN1) subunit and one of four GRIN2 subunits (GRIN2A-GRIN2D), combined in an undetermined ratio to make up the receptor complex. In this study, we tested the hypothesis of whether the GRIN2B 366C/G and 2664C/T genetic polymorphisms are related to Chinese treatment-refractory schizophrenic patients. 193 treatment-refractory schizophrenic patients and 176 normal subjects were recruited for this study. The results demonstrated that the genotype distribution was similar between schizophrenic patients and control subjects in 366C/G (p = 0.88) and 2664C/T (p = 0.336), but we found a higher mean clozapine dosage in 2664C/C genotype patients. These results show that GRIN2B genetic variations were not a major risk factor for treatment-refractory schizophrenic patients, but may influence the effect of clozapine during treatment."	"N-methyl-D-aspartate receptor NR1 subunit gene (GRIN1) in schizophrenia: TDT and case-control analyses. The N-methyl-d-aspartate glutamate receptors (NMDAR) act in the CNS as regulators of the release of neurotransmitters such as dopamine, noradrenaline, acetylcholine, and GABA. It has been suggested that a weakened glutamatergic tone increases the risk of sensory overload and of exaggerated responses in the monoaminergic system, which is consistent with the symptomatology of schizophrenia. We studied two silent polymorphisms in GRIN1. GRIN1/1 is a G/C substitution localized on the 5' untranslated region; GRIN1/10 is an A/G substitution localized in exon 6 of GRIN1. Minor allele frequencies in our sample were calculated to be 0.05 and 0.2 respectively. We genotyped 86 nuclear families and 91 ethnically matched case-control pairs. Both samples were collected from the Toronto area. We tested the hypothesis that GRIN1 polymorphisms were associated with schizophrenia using the transmission disequilibrium test (TDT) and comparing allele frequencies between cases and controls. The results are as follows: GRIN1/1: chi(2) = 2.19, P = 0.14; GRIN1/10: chi(2) = 1.5, P = 0.22. For the case-control sample: GRIN1/1: chi(2) = 0.013, P = 0.908; GRIN1/10: chi(2) = 0.544, P = 0.461. No significant results were obtained. Haplotype analyses showed a borderline significant result for the 2,1 haplotype (chi(2) = 3.86, P-value = 0.049). An analysis of variance (ANOVA) to evaluate the association between genetic makeup and age at onset was performed, with no significant results: GRIN1/1, F[df = 2] = 0.42, P-value = 0.659; GRIN1/10, F[df = 2] = 0.16, P-value = 0.853. We are currently collecting additional samples to increase the power of the analyses."	"Association between the G1001C polymorphism in the GRIN1 gene promoter region and schizophrenia. The GRIN1 gene plays a fundamental role in many brain functions, and its involvement in the pathogenesis of the schizophrenia has been widely investigated. Non-synonymous polymorphisms have not been identified in the coding regions. To investigate the potential role of GRIN1 in the susceptibility to schizophrenia, we analyzed the G1001C polymorphism located in the promoter region in a case-control association study. The G1001C polymorphism allele distribution was analyzed in a sample of 139 Italian schizophrenic patients and 145 healthy control subjects by a polymerase chain reaction amplification followed by digestion with a restriction endonuclease. We found that the C allele may alter a consensus sequence for the transcription factor NF-kappa B and that its frequency was higher in patients than in control subjects (p =.0085). The genotype distribution also was different, with p =.034 (if C allele dominant, p =.0137, odds ratio 2.037, 95% confidence interval 1.1502-3.6076). The association reported in this study suggests that the GRIN1 gene is a good candidate for the susceptibility to schizophrenia."	"Evidence that the N-methyl-D-aspartate subunit 1 receptor gene (GRIN1) confers susceptibility to bipolar disorder. There is evidence for the involvement of glutamatergic transmission in the pathogenesis of major psychoses. The two most commonly used mood stabilizers (ie lithium and valproate) have been found to act via the N-methyl-D-aspartate receptor (NMDAR), suggesting a specific role of NMDAR in the pathogenesis of bipolar disorder (BP). The key subunit of the NMDAR, named NMDA-1 receptor, is coded by a gene located on chromosome 9q34.3 (GRIN1). We tested for the presence of linkage disequilibrium between the GRIN1 (1001-G/C, 1970-A/G, and 6608-G/C polymorphisms) and BP. A total of 288 DSM-IV Bipolar I, Bipolar II, or schizoaffective disorder, manic type, probands with their living parents were studied. In all, 73 triads had heterozygous parents for the 1001-G/C polymorphism, 174 for the 1970-A/G, and 48 for the 6608-G/C. These triads were suitable for the final analyses, that is, the transmission disequilibrium test (TDT) and the haplotype-TDT. For the 1001-G/C and the 6608-G/C polymorphisms, we found a preferential transmission of the G allele to the affected individuals (chi(2)=4.765, df=1, P=0.030 and chi(2)= 8.395, df=1, P=0.004, respectively). The 1001G-1970A-6608A and the 1001G-1970A-6608G haplotypes showed the strongest association with BP (global chi(2)=14.12, df=4, P=0.007). If these results are replicated there could be important implications for the involvement of the GRIN1 in the pathogenesis of BP. The role of the gene variants in predicting the response to mood stabilizers in BP should also be investigated."	"Involvement of NMDA receptors in alcohol-mediated behavior: mice with reduced affinity of the NMDA R1 glycine binding site display an attenuated sensitivity to ethanol. Ethanol antagonizes central effects of glutamate by inhibition of the N-methyl-D-aspartate (NMDA) receptor function. The co-agonist glycine has been shown to reverse alcohol-mediated effects. The aim of this study was to evaluate the influence of the glycine binding site of the NMDA receptor on the behavioral effects of alcohol by investigating mice with an 80% reduced affinity of the NMDA R1 subunit for glycine (Grin1(D481N)). Free-choice and forced alcohol intake was studied over a period of 52 days. Anxiolytic activity (elevated plus maze, open field) and motor coordination (rotarod) was tested after 3 days of forced alcohol intake and during ethanol withdrawal. In contrast to wild-type mice, alcohol-associated anxiolysis and motor impairment was attenuated in Grin1(D481N) mice during intoxication. Free-choice alcohol intake did not differ between wild-type and Grin1(D481N) mice. Our results give first evidence in vivo for a possible role of an altered NMDA-receptor complex with a hyposensitive glycine binding site for behavioral effects mediated by ethanol."	"Systematic mutation analysis of the human glutamate receptor, ionotropic, N-methyl-D-aspartate 1 gene(GRIN1) in schizophrenic patients. Schizophrenia is a severe, complex mental disorder with unknown etiology. Abnormal glutamate neurotransmission has been proposed as one of the hypotheses of the pathogenesis of schizophrenia. Mohn recently reported that transgenic mice with the reduced glutamate receptor, ionotropic, -methyl-D-aspartate 1 gene (GRIN1) (formerly referred to as NMDAR1) expression display schizophrenia-like behaviors, which can be ameliorated by antipsychotic drug treatment. Their report promoted us to examine whether mutations in the human GRIN1 gene may convey genetic susceptibility to schizophrenia. To test this possibility, we systematically screened mutations in the promoter region and in all the exons of the human GRIN1 gene in a cohort of Chinese schizophrenic patients from Taiwan. Using single-strand conformation polymorphism analysis and autosequencing, we identified two single nucleotide polymorphisms, designated g.-1140G&gt;A and g.-855G&gt;C, respectively, at the 5'-untranslated region of the human GRIN1 gene. Genetic association study, however, revealed no association of these two single nucleotide polymorphisms with schizophrenia in our patients. Besides, no other mutations of the human GRIN1 gene were detected in this study. Our data suggest that the human GRIN1 gene may not contribute substantially to the genetic etiology of schizophrenia in our population."	"Polymorphism analysis of the upstream region of the human N-methyl-D-aspartate receptor subunit NR1 gene (GRIN1): implications for schizophrenia. Dysfunction of the gene for the NR1 subunit of the N-methyl-D-aspartate (NMDA) receptor (GRIN1) has been implicated in the pathogenesis of schizophrenia. In support of this hypothesis are behavioral abnormalities reminiscent of schizophrenia in mice with an attenuated expression of the NR1 subunit receptor and the reduced level of NR1 mRNA in postmortem brains of patients with schizophrenia. We screened single nucleotide polymorphisms (SNPs) in the upstream region between +51 and -941 from the translation initiation codon of GRIN1 and identified 17 SNPs, 10 of which were located within the region containing the Sp1 motif and the GSG motifs. As genotyping of 191-196 Japanese patients with schizophrenia and 202-216 controls revealed no significant association between schizophrenia and the SNPs in the upstream region of GRIN1, these SNPs apparently do not play a critical role in the pathogenesis of schizophrenia in the Japanese population."	"Severe impairment of NMDA receptor function in mice carrying targeted point mutations in the glycine binding site results in drug-resistant nonhabituating hyperactivity. NMDA receptor hypofunction has been implicated in the pathophysiology of schizophrenia, and pharmacological and genetic approaches have been used to model such dysfunction. We previously have described two mouse lines carrying point mutations in the NMDA receptor glycine binding site, Grin1(D481N) and Grin1(K483Q), which exhibit 5- and 86-fold reductions in receptor glycine affinity, respectively. Grin1(D481N) animals exhibit a relatively mild phenotype compatible with a moderate reduction in NMDA receptor function, whereas Grin1(K483Q) animals die shortly after birth. In this study we have characterized compound heterozygote Grin1(D481N/K483Q) mice, which are viable and exhibited biphasic NMDA receptor glycine affinities compatible with the presence of each of the two mutated alleles. Grin1(D481N/K483Q) mice exhibited a marked NMDA receptor hypofunction revealed by deficits in hippocampal long-term potentiation, which were rescued by the glycine site agonist d-serine, which also facilitated NMDA synaptic currents in mutant, but not in wild-type, mice. Analysis of striatal monoamine levels revealed an apparent dopaminergic and serotonergic hyperfunction. Behaviorally, Grin1(D481N/K483Q) mice were insensitive to acute dizocilpine pretreatment and exhibited increased startle response but normal prepulse inhibition. Most strikingly, mutant mice exhibited a sustained, nonhabituating hyperactivity and increased stereotyped behavior that were resistant to suppression by antipsychotics and the benzodiazepine site agonist Zolpidem. They also displayed a disruption of nest building behavior and were unable to perform a cued learning paradigm in the Morris water maze. We speculate that the severity of NMDA receptor hypofunction in these mice may account for their profound behavioral phenotype and insensitivity to antipsychotics."	"Determination of the genomic structure and mutation screening in schizophrenic individuals for five subunits of the N-methyl-D-aspartate glutamate receptor. The glutamatergic system is the major excitatory neurotransmitter system in the CNS. Glutamate receptors, and in particular N-methyl-D-aspartate (NMDA) receptors, have been proposed as mediators of many common neuropsychiatric phenotypes including cognition, psychosis, and degeneration. We have reconstructed the genomic structure of all five genes encoding NMDA receptors in silico. We screened each for sequence variation and estimated the allele frequencies of all detected SNPs in pooled samples of 184 UK Caucasian schizophrenics and 184 UK Caucasian blood donor controls. Only a single non-synonymous polymorphism was found indicating extreme selection pressure. The rarity of non-synonymous changes suggests that such variants are unlikely to make a common contribution to common phenotypes. We found a further 26 polymorphisms within exonic or adjacent intronic sequences. The minor alleles of most of these have a relatively high frequency (63% above 0.2). These SNPs will therefore be suitable for studying neuropsychiatric phenotypes that are putatively related to NMDA dysfunction. Pooled analysis provided no support for association between any of the GRIN genes and schizophrenia."	"Mutation analysis of the N-methyl-D-aspartate receptor NR1 subunit gene (GRIN1) in schizophrenia. Dysfunction of N-methyl-D-aspartate (NMDA) type ionotropic glutamate receptors has been implicated in the etiology of schizophrenia based on psychotomimetic properties of the antagonist phencyclidine (PCP) and observation that mice expressing low levels of the N-methyl-D-aspartate receptor NR1 subunit exhibit behavioral alterations that may be ameliorated by neuroleptic drugs. Based on the hypothesis that some schizophrenic patients have functionally deficient mutation(s) of the gene encoding N-methyl-D-aspartate receptor NR1 subunit (GRIN1), we screened 48 Japanese patients with schizophrenia for mutations in the coding region of the GRIN1 gene. Four variants, IVS2-22T&gt;C, IVS2-12G&gt;A, IVS4-34C&gt;T, and 1719G/A (Pro516Pro), were identified. No non-synonymous mutation was detected. No significant association was suggested by case-control comparisons. Results indicate that genomic variations of the GRIN1 gene are not likely to be involved substantially in the etiology of schizophrenia."	"Functional consequences of reduction in NMDA receptor glycine affinity in mice carrying targeted point mutations in the glycine binding site. We have used site-directed mutagenesis in conjunction with homologous recombination to generate two mouse lines carrying point mutations in the glycine binding site of the NMDAR1 subunit (Grin1). Glycine concentration-response curves from acutely dissociated hippocampal neurons revealed a 5- and 86-fold reduction in receptor glycine affinity in mice carrying Grin1(D481N) and Grin1(K483Q) mutations, respectively, whereas receptor glutamate affinity remained unaffected. Homozygous mutant Grin1(D481N) animals are viable and fertile and appear to develop normally. However, homozygous mutant Grin1(K483Q) animals are significantly lighter at birth, do not feed, and die within a few days. No gross abnormalities in CNS anatomy were detected in either Grin1(D481N) or Grin1(K483Q) mice. Interestingly, in situ hybridization and Western blot analysis revealed changes in the expression levels of NMDA receptor subunits in Grin1(D481N) mice relative to wild type that may represent a compensatory response to the reduction in receptor glycine affinity. Grin1(D481N) mice exhibited deficits in hippocampal theta burst-induced long-term potentiation (LTP) and spatial learning and also a reduction in sensitivity to NMDA-induced seizures relative to wild-type controls, consistent with a reduced activation of NMDA receptors. Mutant mice exhibited normal prepulse inhibition but showed increased startle reactivity. Preliminary analysis indicated that the mice exhibit a decreased natural aversion to an exposed environment. The lethal phenotype of Grin1(K483Q) animals confirms the critical role of NMDA receptor activation in neonatal survival. A milder reduction in receptor glycine affinity results in an impairment of LTP and spatial learning and alterations in anxiety-related behavior, providing further evidence for the role of NMDA receptor activation in these processes."	"A candidate target for G protein action in brain. An effector candidate for G protein action, GRIN1, was identified by screening a cDNA expression library with phosphorylated GTPgammaS-G(z)alpha as a probe. GRIN1 is a novel protein without substantial homology to known protein domains. It is expressed largely in brain and binds specifically to activated G(z)alpha, G(o)alpha, and G(i)alpha through its carboxyl-terminal region. The protein KIAA0514 (GRIN2) is homologous to GRIN1 at its carboxyl terminus and also binds to activated G(o)alpha. Both GRIN1 and G(o)alpha are membrane-bound proteins that are enriched in the growth cones of neurites. Coexpression of GRIN1 or GRIN2 with activated G(o)alpha causes formation of a network of fine processes in Neuro2a cells, suggesting that these pathways may function downstream of G(o)alpha to control growth of neurites."	"The stumbler mutation maps to proximal mouse chromosome 2. The cerebellar mouse mutation stumbler (stu) was mapped to proximal Chromosome (Chr) 2 with a recently developed polymerase chain reaction assay for endogenous retroviruses that vary between mouse strains. The stu locus resides between the markers D2Mit5 and D2Mit7. A number of developmentally or neurologically relevant candidate genes map in this region, including Bmi1, Dbh, Grin1, Notch1, Pax8, Rxra, and Spna2. Knowing the chromosomal localization of stu should simplify maintenance of the stumbler mouse stock and also enable analysis of the cerebellar defect in presymptomatic individuals."	"Genomic cloning and localization by FISH and linkage analysis of the human gene encoding the primary subunit NMDAR1 (GRIN1) of the NMDA receptor channel. A cDNA clone of the NMDAR1 (isoform E) has been used to screen both lambda and cosmid genomic libraries. A genomic phage clone was identified and sequenced and was found to contain some of the 3' coding regions of the GRIN1 gene. This clone was used to localize the gene using fluorescent in situ hybridization (FISH) to normal chromosomes, and also to a lymphoblastoid cell line containing a translocation involving chromosomes 9 and 15. FISH localized the gene to chromosome 9q34.3. The clone was used to screen a panel of genomic DNAs cut with 20 restriction enzymes. A VNTR sequence 5' to the gene, which was polymorphic for a number of restriction enzymes, was detected. A PvuII fragment of the genomic clone was found to detect the VNTR on Southern hybridization. The polymorphic VNTR marker was mapped against chromosome 9q34 markers using linkage analysis in the CEPH families. The GRIN1 gene was linked to D9S7 with a maximum lod score of 20.09 at zero recombination fraction in males and 0.03% recombination in females."	"Gene mapping of NMDA receptors and metabotropic glutamate receptors in the rat (Rattus norvegicus). Five N-methyl-D-aspartate receptor subunit genes and six metabotropic glutamate receptor subtype genes have been assigned to particular rat chromosomes by using a rat x mouse somatic cell hybrid clone panel. N-Methyl-D-aspartate receptor subunit genes (gene symbol, GRIN) GRIN1, GRIN2A, GRIN2B, GRIN2C, and GRIN2D have been assigned to chromosomes (Chr) 3, 10, 4, 10, and 1, respectively. Metabotropic glutamate receptor subtype genes (gene symbol, GRM) GRM1, GRM2, GRM3, GRM4, GRM5, and GRM6 have been assigned to Chr 1, 8, 4, 20, 1, and 10, respectively. In addition, GRIN2A and GRM6 loci were successfully localized on Chr 10 linkage maps by linkage analyses. The genetic distances between loci in cM (+/- SD) are as follows: GRIN2A-28.6(+/- 7.0)-RR24-23.3(+/- 6.4)-MYHSE, from a linkage analysis using the (SHR x WTC)F1 x WTC cross, and RR24-4.2(+/- 2.9)-GRM6-4.2(+/- 2.9)-MMYHSE-2.1(+/- 2.1)-ASGR, SHBG-27.1(+/- 6.4)-PPY, from a linkage analysis using the (ZI x TM)F1 x ZI cross."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRIN2A"	"complex neurodevelopmental disorder"	"Next Generation Sequencing of 134 Children with Autism Spectrum Disorder and Regression. Approximately 30% of individuals with autism spectrum disorder (ASD) experience developmental regression, the etiology of which remains largely unknown. We performed a complete literature search and identified 47 genes that had been implicated in such cases. We sequenced these genes in a preselected cohort of 134 individuals with regressive autism. In total, 16 variants in 12 genes with evidence supportive of pathogenicity were identified. They were classified as variants of uncertain significance based on ACMG standards and guidelines. Among these were recurring variants in GRIN2A and PLXNB2, variants in genes that were linked to syndromic forms of ASD (GRIN2A, MECP2, CDKL5, SCN1A,PCDH19, UBE3A, and SLC9A6), and variants in the form of oligogenic heterozygosity (EHMT1, SLC9A6, and MFSD8)."	"Positive allosteric modulators that target NMDA receptors rectify loss-of-function GRIN variants associated with neurological and neuropsychiatric disorders. N-methyl-d-aspartate receptors (NMDARs) mediate a slow component of excitatory synaptic transmission that plays important roles in normal brain function and development. A large number of disease-associated variants in the GRIN gene family encoding NMDAR GluN subunits have been identified in patients with various neurological and neuropsychiatric disorders. Many of these variants reduce the function of NMDARs by a range of different mechanisms, including reduced glutamate potency, reduced glycine potency, accelerated deactivation time course, decreased surface expression, and/or reduced open probability. We have evaluated whether three positive allosteric modulators of NMDAR receptor function (24(S)-hydroxycholesterol, pregnenolone sulfate, tobramycin) and three co-agonists (d-serine, l-serine, and d-cycloserine) can mitigate the diminished function of NMDARs harboring GRIN variants. We examined the effects of these modulators on NMDARs that contained 21 different loss-of-function variants in GRIN1, GRIN2A, or GRIN2B, identified in patients with epilepsy, intellectual disability, autism, and/or movement disorders. For all variants, some aspect of the reduced function was partially restored. Moreover, some variants showed enhanced sensitivity to positive allosteric modulators compared to wild type receptors. These results raise the possibility that enhancement of NMDAR function by positive allosteric modulators may be a useful therapeutic strategy."	"Brain transcriptome study through CRISPR/Cas9 mediated mouse Dip2c gene knock-out. Dip2C is highly expressed in brain and many other tissues but its biological functions are still not clear. Genes regulated by Dip2C in brain have never been studied. The clustered regularly interspaced short palindromic repeat (CRISPR)/CRISPR-associated protein (Cas) systems, adaptive immune systems of bacteria and archaea, have been recently developed and broadly used in genome editing. Here, we describe targeted gene deletions of Dip2c gene in mice via CRISPR/Cas9 system and study of brain transcriptome under Dip2C regulation. The CRISPR/Cas9 system effectively generated targeted deletions of Dip2c by pronuclei injection of plasmids that express Cas9 protein and two sgRNAs. We achieved targeted large fragment deletion with efficiencies at 14.3% (1/7), 66.7% (2/3) and 20% (1/5) respectively in 3 independent experiments, averaging 26.7%. The large deletion DNA segments are 160.4 kb (Dip2C<sup>Δ160kb</sup>), spanning from end of exon 4 to mid of exon 38. A mouse with two base pair deletion was generated from a single sgRNA targeting in exon 4 (Dip2c<sup>Δ2bp</sup>) by non-homologous end joining (NHEJ). Loss of gene expression for Dip2c mRNA was confirmed by quantitative real-time PCR (qPCR). Dip2C-regulated genes and pathways in brain were investigated through RNAseq of Dip2c<sup>Δ2bp</sup>. In total, 838 genes were found differentially regulated, with 252 up and 586 down. Gene ontology (GO) analysis indicated that DEGs in brain are enriched in neurological functions including 'memory', 'neuropeptide signaling pathway', and 'response to amphetamine' while KEGG analysis shows that 'neuroactive ligand-receptor interaction pathway' is the most significantly enriched. DEGs Grid2ip, Grin2a, Grin2c, Grm4, Gabbr2, Gabra5, Gabre, Gabrq, Gabra6 and Gabrr2 are among the highly regulated genes by Dip2C. Results confirm Dip2C may play important roles in brain development and function."	"The Utility of Speech-Language Biomarkers to Predict Oral Feeding Outcomes in the Premature Newborn. Purpose Successful oral feeding and speech emergence are dependent upon the coordination of shared oral muscles and facial nerves. We aimed to determine if the speech-associated genes, forkhead box P2 (FOXP2), contactin-associated protein-like 2 (CNTNAP2), glutamate receptor, ionotropic, N-methyl D-aspartate 2A (GRIN2A), and neurexin 1, were detectable in neonatal saliva and could predict feeding outcomes in premature newborns. Method In this prospective, observational, preliminary study, saliva collected from 51 premature infants (gestational ages: 30-34 6/7 weeks) at different stages of oral feeding development underwent gene expression analysis. Binary (+/-) expression profiles were explored and examined in relation to days to achieve full oral feeds. Results GRIN2A and neurexin 1 rarely amplified in neonatal saliva and were not informative. Infants who amplified FOXP2 but not CNTNAP2 at the start of oral feeds achieved oral feeding success 3.20 (95% CI [-2.5, 8.9]) days sooner than other gene combinations. Conclusions FOXP2 and CNTNAP2 may be informative in predicting oral feeding outcomes in newborns. Salivary analysis at the start of oral feeding trials may inform feeding outcomes in this population and warrants further investigation."	"Therapeutic Effect of Berberine on Insomnia Rats by ErbB Signaling Pathway. BACKGROUND Insomnia seriously affects people's health and quality of life. Short-term use of Western drugs may also be harmful. Traditional Chinese medicine has been widely used to treat diseases in world. Therefore, this paper aims to study the therapeutic effect of berberine based on the insomnious rat model. MATERIAL AND METHODS The insomnia rat model was established by intragastric administration of caffeine and parachlorophenylalanine (PCPA). Berberine and diazepam were used to treat the established insomnia rats. Then, the pathological changes of insomnia rats were detected. In addition, transcriptome sequencing and data analysis were carried out using rat hippocampus. The expression of key genes was verified by quantitative polymerase chain reaction and western blot. RESULTS After 7 days of intragastric administration of berberine, the body weight, memory, and sleep quality of insomnia rats were significantly improved. The key roles of Erbb4, Erbb2, Ar, and Grin2a in berberine treatment were identified. Through the analysis of biological functions and signaling pathways, berberine was shown to play a salutary role through nervous system development and ErbB signaling pathway. Gene-set enrichment analysis (GSEA) results showed that berberine treatment affected more metabolic pathways. Compared with diazepam, berberine can play a faster role, and also improve the overall health level of insomnia rats. CONCLUSIONS These results suggest that berberine can alleviate insomnia in rats through a neuroprotective effect and improved metabolic level. Berberine has great potential in treatment of insomnia and might have better clinical significance."	"Exome sequencing in 57 patients with self-limited focal epilepsies of childhood with typical or atypical presentations suggests novel candidate genes. Self-limited focal epilepsies of childhood (SFEC) are amongst the best defined and most frequent epilepsy syndromes affecting children with usually normal developmental milestones. They include core syndromes such as Rolandic epilepsy or &quot;Benign&quot; epilepsy with Centro-Temporal Spikes and the benign occipital epilepsies, the early onset Panayiotopoulos syndrome and the late-onset Gastaut type. Atypical forms exist for all of them. Atypical Rolandic epilepsies are conceptualized as belonging to a continuum reaching from the &quot;benign&quot; RE to the severe end of the Landau-Kleffner (LKS) and Continuous Spike-Waves during Sleep syndromes (CSWS). GRIN2A has been shown to cause the epilepsy-aphasia continuum that includes some patients with atypical Rolandic epilepsy with frequent speech disorders, LKS and CSWS. In the present study, we searched novel genes causing SFEC with typical or atypical presentations. Exome sequencing was performed in 57 trios. Patients presented with typical or atypical SFEC, negative for GRIN2A pathogenic variant. We found rare candidate variants in 20 patients. Thirteen had occurred de novo and were mostly associated to atypical Rolandic Epilepsy. Two of them could be considered as disease related: a null variant in GRIN2B and a missense variant in CAMK2A. Others were considered good candidates, including a substitution affecting a splice site in CACNG2 and missense variants in genes encoding enzymes involved in chromatin remodeling. Our results further illustrate the fact that atypical SFEC are more likely to have Mendelian inheritance than typical SFEC."	"Modelling and treating GRIN2A developmental and epileptic encephalopathy in mice. NMDA receptors play crucial roles in excitatory synaptic transmission. Rare variants in GRIN2A encoding the GluN2A subunit are associated with a spectrum of disorders, ranging from mild speech and language delay to intractable neurodevelopmental disorders, including but not limited to developmental and epileptic encephalopathy. A de novo missense variant, p.Ser644Gly, was identified in a child with this disorder, and Grin2a knock-in mice were generated to model and extend understanding of this intractable childhood disease. Homozygous and heterozygous mutant mice exhibited altered hippocampal morphology at 2 weeks of age, and all homozygotes exhibited lethal tonic-clonic seizures by mid-third week. Heterozygous adults displayed susceptibility to induced generalized seizures, hyperactivity, repetitive and reduced anxiety behaviours, plus several unexpected features, including significant resistance to electrically-induced limbic seizures and to pentylenetetrazole induced tonic-clonic seizures. Multielectrode recordings of neuronal networks revealed hyperexcitability and altered bursting and synchronicity. In heterologous cells, mutant receptors had enhanced NMDA receptor agonist potency and slow deactivation following rapid removal of glutamate, as occurs at synapses. NMDA receptor-mediated synaptic currents in heterozygous hippocampal slices also showed a prolonged deactivation time course. Standard anti-epileptic drug monotherapy was ineffective in the patient. Introduction of NMDA receptor antagonists was correlated with a decrease in seizure burden. Chronic treatment of homozygous mouse pups with NMDA receptor antagonists significantly delayed the onset of lethal seizures but did not prevent them. These studies illustrate the power of using multiple experimental modalities to model and test therapies for severe neurodevelopmental disorders, while revealing significant biological complexities associated with GRIN2A developmental and epileptic encephalopathy."	"Network pharmacology-based study on the mechanism of Schisandra chinensis for treating Alzheimer's disease. Alzheimer's disease (AD) is a mental illness that poses a serious threat to human health worldwide. Schisandra chinensis is a natural herb that can treat the effects of AD, but its specific mechanism is still unclear. The purpose of this study was to explore the potential components and pharmacological pathways of S. chinensis in the treatment of AD. In this study, we investigated the compound of S. chinensis and the effects of it on AD by network pharmacology. Meanwhile, the potential mechanism was proved in vitro. The results showed that S. chinensis contained 173 compounds. Compound-target network confirmed that (E)-9-Isopropyl-6-Methyl-5,9-Decadiene-2-One, 1-Phenyl-1,3-Butanedion, nootkatone and phenyl-2-Propanone were the main chemical constituents which highly aimed at APOE, CACNA1D, GRIN2A, and PTGS2. KEGG and GO enrichment analysis indicated that the main pathways involved neural-related signaling pathways and functions, such as nicotine addiction, GABAergic synapse, Ca<sup>2+</sup> signaling pathway, AD, and so on. Validation experiments showed that nootkatone was able to exert anti-apoptotic effects related to Ca<sup>2+</sup> signaling pathway by inhibiting nitric oxide production, enhancing the activity of antioxidant enzymes, upregulating the expression of anti-oxidation and anti-apoptotic proteins in vitro. These results illustrated that S. chinensis could regulate neuronal apoptosis through the calcium signaling pathway to exert anti-AD by integrating multi-component, multi-target and multi-pathway."	"Potential Roles of Redox Dysregulation in the Development of Schizophrenia. Converging evidence implicates redox dysregulation as a pathological mechanism driving the emergence of psychosis. Increased oxidative damage and decreased capacity of intracellular redox modulatory systems are consistent findings in persons with schizophrenia as well as in persons at clinical high risk who subsequently developed frank psychosis. Levels of glutathione, a key regulator of cellular redox status, are reduced in the medial prefrontal cortex, striatum, and thalamus in schizophrenia. In humans with schizophrenia and in rodent models recapitulating various features of schizophrenia, redox dysregulation is linked to reductions of parvalbumin containing gamma-aminobutyric acid (GABA) interneurons and volumes of their perineuronal nets, white matter abnormalities, and microglia activation. Importantly, the activity of transcription factors, kinases, and phosphatases regulating diverse aspects of neurodevelopment and synaptic plasticity varies according to cellular redox state. Molecules regulating interneuron function under redox control include NMDA receptor subunits GluN1 and GluN2A as well as KEAP1 (regulator of transcription factor NRF2). In a rodent schizophrenia model characterized by impaired glutathione synthesis, the Gclm knockout mouse, oxidative stress activated MMP9 (matrix metalloprotease 9) via its redox-responsive regulatory sites, causing a cascade of molecular events leading to microglia activation, perineural net degradation, and impaired NMDA receptor function. Molecular pathways under redox control are implicated in the etiopathology of schizophrenia and are attractive drug targets for individualized drug therapy trials in the contexts of prevention and treatment of psychosis."	"Molecular Genetic Features of Primary Nonurachal Enteric-type Adenocarcinoma, Urachal Adenocarcinoma, Mucinous Adenocarcinoma, and Intestinal Metaplasia/Adenoma: Review of the Literature and Next-generation Sequencing Study. The diagnosis of primary adenocarcinoma of the urinary bladder may be challenging in routine practice. These tumors may morphologically and immunohistochemically overlap with urachal adenocarcinoma and colorectal adenocarcinoma. Further, their genetic background is poorly understood. We systematically searched the PubMed database for results of complex genetic evaluation of primary bladder adenocarcinoma subtypes. Subsequently, we designed our own series of bladder lesions. We evaluated 36 cases: 16 primary enteric-type adenocarcinomas, 7 urachal enteric adenocarcinomas, 3 primary mucinous/colloid adenocarcinomas, and 10 intestinal-type metaplasia/villous adenoma. Detailed clinical data were collected, and all cases were examined using targeted next-generation sequencing. On the basis of the literature, the first mutated gene in these tumors was reported to be KRAS in 11.3% of cases, followed by TERT promoter mutations in 28.5%. In addition to KRAS and TERT, other genes were also found to be frequently mutated in primary bladder adenocarcinoma, including TP53, PIK3CA, CTNNB1, APC, FBXW7, IDH2, and RB1. In our series, the most frequent gene mutations in primary enteric-type adenocarcinomas were as follows: TP53 (56%); BRCA2, KMT2B (both 33%); NOTCH2, KDR, ARID1B, POLE, PTEN, KRAS (all 28%); in urachal enteric adenocarcinoma they were as follows: TP53 (86%); PTEN, NOTCH (both 43%); in primary mucinous/colloid adenocarcinomas they were as follows: KRAS, GRIN2A, AURKB (all 67%); and, in intestinal-type metaplasia/villous adenoma, they were as follows: APC, PRKDC (both 60%); ROS1, ATM, KMT2D (all 50%). No specific mutational pattern was identified using cluster analysis for any of the groups. Herein, we describe the pathologic features and immunohistochemical staining patterns traditionally used in the differential diagnoses of glandular lesions of the bladder in routine surgical pathology. We outline the mutational landscape of these lesions as an aggregate of published data with additional data from our cohort. Although diagnostically not discriminatory, we document that the most common genetic alterations shared between these glandular neoplasms include TP53, APC (in the Wnt pathway), and KRAS (in the MAPK pathway) mutations."	"SIRT1 accelerates the progression of activity-based anorexia. Food consumption is fundamental for life, and eating disorders often result in devastating or life-threatening conditions. Anorexia nervosa (AN) is characterized by a persistent restriction of energy intake, leading to lowered body weight, constant fear of gaining weight, and psychological disturbances of body perception. Herein, we demonstrate that SIRT1 inhibition, both genetically and pharmacologically, delays the onset and progression of AN behaviors in activity-based anorexia (ABA) models, while SIRT1 activation accelerates ABA phenotypes. Mechanistically, we suggest that SIRT1 promotes progression of ABA, in part through its interaction with NRF1, leading to suppression of a NMDA receptor subunit Grin2A. Our results suggest that AN may arise from pathological positive feedback loops: voluntary food restriction activates SIRT1, promoting anxiety, hyperactivity, and addiction to starvation, exacerbating the dieting and exercising, thus further activating SIRT1. We propose SIRT1 inhibition can break this cycle and provide a potential therapy for individuals suffering from AN."	"Neuronal deficiency of p38α-MAPK ameliorates symptoms and pathology of APP or Tau-transgenic Alzheimer's mouse models. Alzheimer's disease (AD) is the leading cause of dementia with very limited therapeutic options. Amyloid β (Aβ) and phosphorylated Tau (p-Tau) are key pathogenic molecules in AD. P38α-MAPK is specifically activated in AD lesion sites. However, its effects on AD pathogenesis, especially on p-Tau-associated brain pathology, and the underlying molecular mechanisms remain unclear. We mated human APP-transgenic mice and human P301S Tau-transgenic mice with mapk14-floxed and neuron-specific Cre-knock-in mice. We observed that deletion of p38α-MAPK specifically in neurons improves the cognitive function of both 9-month-old APP and Tau-transgenic AD mice, which is associated with decreased Aβ and p-Tau load in the brain. We further used next-generation sequencing to analyze the gene transcription in brains of p38α-MAPK deficient and wild-type APP-transgenic mice, which indicated that deletion of p38α-MAPK regulates the transcription of calcium homeostasis-related genes, especially downregulates the expression of grin2a, a gene encoding NMDAR subunit NR2A. Cell culture experiments further verified that deletion of p38α-MAPK inhibits NMDA-triggered calcium influx and neuronal apoptosis. Our systemic studies of AD pathogenic mechanisms using both APP- and Tau-transgenic mice suggested that deletion of neuronal p38α-MAPK attenuates AD-associated brain pathology and protects neurons in AD pathogenesis. This study supports p38α-MAPK as a novel target for AD therapy."	"Changes in subunit composition of NMDA receptors in animal models of schizophrenia by repeated administration of methamphetamine. The dopamine and glutamate hypotheses reflect only some of the pathophysiological changes associated with schizophrenia. We have proposed a new &quot;comprehensive progressive pathophysiology model&quot; based on the &quot;dopamine to glutamate hypothesis.&quot; Repeated administration of methamphetamine (METH) at a dose of 2.5 mg/kg in rats has been used to assess dynamic changes in the pathophysiology of schizophrenia. Previous use of this model suggested N-methyl-d-aspartate receptor (NMDA-R) dysfunction, but the mechanism could only be inferred from limited, indirect observations. In the present study, we used this model to investigate changes in the expression of NMDA-R subunits. Repeated administration of METH significantly decreased the gene expression levels of glutamate ionotropic receptor NMDA type subunit (Grin) subtypes Grin1 and Grin2c in the prefrontal cortex (PFC), Grin1 and Grin2a in the hippocampus (HPC), and Grin1, Grin2b, and Grin2d in the striatum (ST).We observed a significant difference in Grin1 expression between the PFC and ST. Furthermore, repeated administration of METH significantly decreased the protein expression of GluN1 in both cytosolic and synaptosomal fractions isolated from the PFC, and significantly decreased the protein expression of GluN1 in the cytosolic fraction, but not the synaptosomal fraction from the ST. These regional differences may be due to variations in the synthesis of GluN1 or intracellular trafficking events in each area of the brain. Considering that knockdown of Grin1 in mice affects vulnerability to develop schizophrenia, these results suggest that this model reflects some of the pathophysiological changes of schizophrenia, combining both the dopamine and glutamate hypotheses."	"Immunotherapy in GRIN2A-negative Landau-Kleffner Syndrome. NA"	"Immunotherapy for GRIN2A and GRIN2D-related epileptic encephalopathy. GRIN-related developmental-epileptic encephalopathies are associated with a spectrum of neurodevelopmental disorders, including intellectual disability, epilepsy including continuous spike-and-wave during sleep syndrome (CSWS), or epilepsy-aphasia spectrum phenotypes such as in Landau-Kleffner syndrome. Efficacy of IVIG treatment was recently reported in a patient with LKS related to GRIN2A mutation. We describe the efficacy of Immunotherapy in 5 consecutive patients (4 males, age range 6 months-13 years) with molecularly confirmed GRIN-related epileptic encephalopathy (4 with GRIN2A- related epilepsy-aphasia spectrum/epileptic encephalopathy with CSWS, accompanied by verbal, communicative and behavioural regression, and one patient with GRIN2D - related infantile developmental-epileptic encephalopathy). All patients had global developmental delay/ intellectual disability in various degrees, and were resistant to anticonvulsants, but none of the patients had frequent clinical seizures. All patients received monthly infusion of IVIG 2 g/ kg for 6 months; 2 patients were also treated with high-dose corticosteroids. Normalization or near normalization of the EEG was noted in 3 patients, from whom 2 had mild improvement in verbal abilities and communication skills. Perceptual/spatial abilities, as well as executive functions and attention span, remained significantly impaired. according to this preliminary, open-label study, Immunotherapy may lead to a clinical and electrographic improvement in patients with GRIN-related developmental-epileptic encephalopathies. Further studies to validate the efficacy of immunotherapy and the potential role of autoimmunity in GRIN-related disorders are needed."	"Somatic synonymous mutations in regulatory elements contribute to the genetic aetiology of melanoma. Non-synonymous mutations altering tumor suppressor genes and oncogenes are widely studied. However, synonymous mutations, which do not alter the protein sequence, are rarely investigated in melanoma genome studies. We explored the role of somatic synonymous mutations in melanoma samples from TCGA (The Cancer Genome Atlas). The pathogenic synonymous mutation and neutral synonymous mutation data were used to assess the significance of pathogenic synonymous mutations in melanoma likely to affect genetic regulatory elements using Fisher's exact test. Poisson distribution probabilities of each gene were used to mine the genes with multiple potential functional synonymous mutations affecting regulatory elements. Concentrating on five types of genetic regulatory functions, we found that the mutational patterns of pathogenic synonymous mutations are mostly involved in exonic splicing regulators in near-splicing sites or inside DNase I hypersensitivity sites or non-optimal codon. Moreover, the sites of miRNA binding alteration exhibit a significantly lower rate of evolution than other sites. Finally, 12 genes were hit by recurrent potentially functional synonymous mutations, which showed statistical significance in the pathogenic mutations. Among them, nine genes (DNAH5, ADCY8, GRIN2A, KSR2, TECTA, RIMS2, XKR6, MYH1, SCN10A) have been reported to be mutated in melanoma, and other three genes (SLC9A2, CASR, SLC8A3) have a great potential to impact melanoma. These findings confirm the functional consequences of somatic synonymous mutations in melanoma, emphasizing the significance of research in future studies."	"[Effects of long non-coding RNA RP1-90L14.1 on the biological behaviors of cancer prostate LNCaP cells and its regulating mechanisms]. To investigate the effects of long non-coding RNA RP1-90L14.1 on the proliferation, migration and invasion of prostate cancer LNCaP cells and the expressions of GRIN2A and BACE2. Using RT-PCR, we detected the expression of RP1-90L14.1 in LNCaP and LNCaP-AI cells, transiently transfected the RP1-90L14.1 overexpression plasmid (the RP1-90L14.1 group) and vector plasmid (the LNCaP-NC group) into the LNCaP cells, and cultured the two groups of cells with ordinary medium and phenol red-free activated carbon adsorption medium (PRF-ACA). Then we examined the proliferation, migration and invasiveness of the cells by CCK-8 and Transwell, and determined the mRNA and protein expressions of GRIN2A and BACE2 by RT-PCR and Western blot. The expression of RP1-90L14.1 was significantly higher in the LNCaP-AI than in the LNCaP cells (8.49 ± 0.43 vs 2.53 ± 0.95, P &lt; 0.05), and so was that of LNCaP-RP1-90L14.1 in the RP1-90L14.1 than in the LNCaP-NC group after transfection (0.71 ± 0.22 vs 0.02 ± 0.01, P &lt; 0.05). The optical densities (OD) of the cells were 51.95% and 50.69% higher in the RP1-90L14.1 than in the LNCaP-NC group after 72 hours of culture with ordinary medium and phenol red-free ACA (1.22 ± 0.08 vs 0.08 ± 0.05, P &lt; 0.05; 0.79 ± 0.02 vs 0.53 ± 0.05, P &lt; 0.05), and 51.72% and 60.23% higher in the former than in the latter after 96 hours (1.72 ± 0.07 vs 1.13 ± 0.05, P &lt; 0.05; 1.18 ± 0.05 vs 0.73 ± 0.08, P &lt; 0.05). The numbers of the migrating cells cultured with common medium and PRF-ACA were markedly higher in the RP1-90L14.1 than in the LNCaP-NC group after transfection (682.0 ± 42.7 vs 422.0 ± 37.1, P &lt; 0.05; 419.0 ± 42.9 vs 251.0 ± 25.9, P &lt; 0.05), and so were those of the invading cells (507.0 ± 22.2 vs 274.0 ± 19.6, P &lt; 0.05; 352.0 ± 14.1 vs 216.0 ± 14.3, P &lt; 0.05). Statistically significant differences were observed between the RP1-90L14.1 and LNCaP-NC groups in the mRNA and protein expressions of GRIN2A (5.13 ± 0.89 vs 2.09 ± 0.54, P &lt; 0.05; 5.88 ± 0.29 vs 2.03 ± 0.22, P &lt; 0.05) and BACE2 (5.82 ± 0.50 vs 2.53 ± 0.30, P &lt; 0.05; 4.89 ± 0.19 vs 3.37 ± 0.13, P &lt; 0.05).  lncRNA RP1-90L14.1 may play important roles in the proliferation, migration and invasiveness of prostate cancer cells. RP1-90L14.1 can promote the expressions of GRIN2A and BACE2 and may have an endogenous competitive relation with GRIN2A and BACE2."	"From bedside-to-bench: What disease-associated variants are teaching us about the NMDA receptor. NMDA receptors (NMDARs) are glutamate-gated ion channels that contribute to nearly all brain processes. Not surprisingly then, genetic variations in the genes encoding NMDAR subunits can be associated with neurodevelopmental, neurological and psychiatric disorders. These disease-associated variants (DAVs) present challenges, such as defining how DAV-induced alterations in receptor function contribute to disease progression and how to treat the affected individual clinically. As a starting point to overcome these challenges, we need to refine our understanding of the complexity of NMDAR structure function. In this regard, DAVs have expanded our knowledge of NMDARs because they do not just target well-known structure-function motifs, but rather give an unbiased view of structural elements that are important to the biology of NMDARs. Indeed, established NMDAR structure-function motifs have been validated by the appearance of disorders in patients where these motifs have been altered, and DAVs have identified novel structural features in NMDARs such as gating triads and hinges in the gating machinery. Still, the majority of DAVs remain unexplored and occur at sites in the protein with unidentified function or alter receptor properties in multiple and unanticipated ways. Detailed mechanistic and structural investigations are required of both established and novel motifs to develop a highly refined pathomechanistic model that accounts for the complex machinery that regulates NMDARs. Such a model would provide a template for rational drug design and a starting point for personalized medicine."	"Association of Gene Variations in Ionotropic Glutamate Receptor and Attention-Deficit/Hyperactivity Disorder in the Chinese Population: A Two-Stage Case-Control Study. Objective: The aim of this study was to comprehensively explore the relationship between genetic variations within GRIN2A, GRIN2B, GRIK1, GRIK4, GRID2, and ADHD. Method: Genotyping was performed with the Sequenom MassARRAY system in a two-stage case-control study. ADHD symptoms were assessed using the Swanson, Nolan, and Pelham version IV scale and the Integrated Visual and Auditory Continuous Performance Test. In silico analysis was performed with website resources. Results: GRID2 rs1385405 showed a significant association with ADHD risk in the codominant model (OR = 2.208, 95% CI = [1.387, 3.515]) in the first stage and in the codominant model (OR = 1.874, 95% CI = [1.225, 2.869]) and recessive model (OR = 1.906, 95% CI = [1.265, 2.873]) in the second stage and related to inattention and hyperactivity symptom. In addition, rs1385405 disturbed the activity of exonic splicing enhancer and mediated GRID2 gene expression in the frontal cortex. Conclusion: our data provided evidence for the participation of GRID2 variants in conferring the risk of ADHD."	"Generation of an induced pluripotent stem cell line SYSUi-003-A from a child with epilepsy carrying GRIN2A mutation. We generated iPSCs from peripheral blood mononuclear cells of a child with epilepsy carrying heterozygous missense mutation in GRIN2A, using integration free episomal vectors. These iPSCs express pluripotent markers, represent a normal karyotype and have the ability to differentiate into three germ layers."	"Genetic and histologic spatiotemporal evolution of recurrent, multifocal, multicentric and metastatic glioblastoma. Glioblastoma is the most frequent and aggressive primary brain tumor, characterized by extensive brain invasion and rarely, systemic metastases. The pathogenesis of metastatic glioblastoma is largely unknown. We present the first integrated clinical/histologic/genetic analysis of 5 distinct brain and lung foci from a unique case of recurrent, multifocal, multicentric and metastatic glioblastoma. The initial right frontotemporal gliosarcoma received standard surgical/chemoradiation therapy and recurred 1.5 years later, co-occurring with three additional masses localized to the ipsilateral temporal lobe, cerebellum and lung. Synchronous metastatic lung carcinoma was suspected in this long-term smoker patient with family history of cancer. However, glioblastoma was confirmed in all tumors, although with different morphologic patterns, including ependymomatous and epithelioid. Genomic profiling revealed a germline FANCD2 variant of unknown significance, and a 4-gene somatic mutation signature shared by all tumors, consisting of TERT promoter and PTEN, RB1 and TP53 tumor suppressor mutations. Additional GRIN2A and ATM heterozygous mutations were selected in the cerebellar and lung foci, but were variably present in the supratentorial foci, indicating reduced post-therapeutic genetic evolution in brain foci despite morphologic variability. Significant genetic drift characterized the lung metastasis, likely explaining the known resistance of circulating glioblastoma cells to systemic seeding. MET overexpression was detected in the initial gliosarcoma and lung metastasis, possibly contributing to invasiveness. This comprehensive analysis sheds light on the temporospatial evolution of glioblastoma and underscores the importance of genetic testing for diagnosis and personalized therapy."	"Gene Therapy Repairs for the Epileptic Brain: Potential for Treatment and Future Directions. Epilepsy is a syndrome specified by frequent seizures and is one of the most prevalent neurological conditions, and that one-third of people of epilepsy are resistant to available drugs. Surgery is supposed to be the main treatment for the remedy of multiple drug-resistant epilepsy, but it is a drastic procedure. Advancement in genomic technologies indicates that gene therapy can make such surgery unnecessary. The considerable number of new studies show the significance of mutation in mammalian target of rapamycin pathway, NMDA receptors, GABA receptors, potassium channels and G-protein coupled receptors. Illustration of the meticulous drug in epilepsy targeting new expression of mutations in SCN8A, GRIN2A, GRIN2D and KCNT1 are conferred. Various methods are utilized to express a gene in a precise area of the brain; Transplantation of cells in an ex vivo approach (fetal cells, fibroblasts, immortalized cells), nonviral vector delivery and viral vector delivery like retrovirus, herpes simplex virus adenovirus and adeno-related virus. Gene therapy has thus been explored to generate anti-epileptogenic, anti-seizure and disease-modifying effects. Specific targeting of the epileptogenic region is facilitated by gene therapy, hence sparing the adjacent healthy tissue and decreasing the adverse effects that frequently go hand in hand with antiepileptic medication."	"Genetic Intersections of Language and Neuropsychiatric Conditions. To better understand the shared basis of language and mental health, this review examines the behavioral and neurobiological features of aberrant language in five major neuropsychiatric conditions. Special attention is paid to genes implicated in both language and neuropsychiatric disorders, as they reveal biological domains likely to underpin the processes controlling both. Abnormal language and communication are common manifestations of neuropsychiatric conditions, and children with impaired language are more likely to develop psychiatric disorders than their peers. Major themes in the genetics of both language and psychiatry include master transcriptional regulators, like FOXP2; key developmental regulators, like AUTS2; and mediators of neurotransmission, like GRIN2A and CACNA1C."	"Glutamate ionotropic receptor NMDA type subunit 2A (GRIN2A) gene polymorphism (rs4998386) and Parkinson's disease susceptibility: A meta-analysis. Dopaminergic neuronal degeneration seen in Parkinson's disease (PD) might result from a single nucleotide polymorphism (SNP) in the glutamate ionotropic receptor NMDA type subunit 2A (GRIN2A) gene. We thus performed a meta-analysis exploring the relationship between the rs4998386 SNP of the GRIN2A gene and PD susceptibility. We searched PubMed, EMBASE, Web of Science, Google Scholar, and China National Knowledge Infrastructure for studies published between January 2005 and January 2019. The association between the rs4998386 polymorphism and PD susceptibility was evaluated by calculating the pooled odds ratios (ORs) and 95% confidence intervals (CIs). Meta-analysis results did not show a significant association between the rs4998386 polymorphism of the GRIN2A gene and PD susceptibility when assuming an allelic model (OR, 0.90; 95% CI, 0.76-1.07; P = .22; I<sup>2 </sup>= 53%), a dominant model (OR, 0.96; 95% CI, 0.82-1.12; P = .62; I<sup>2 </sup>= 64%), or a recessive model (OR, 1.14; 95% CI, 0.93-1.38; P = .22; I<sup>2 </sup>= 0%). Our meta-analysis found that the rs4998386 polymorphism of the GRIN2A gene is not associated with risk of PD in either Europeans or white Americans. However, large sample studies with different ethnicities should be conducted to establish the role of the rs4998386 polymorphism in PD pathophysiology."	"Deletion of Glycogen Synthase Kinase-3β in D2 Receptor-Positive Neurons Ameliorates Cognitive Impairment via NMDA Receptor-Dependent Synaptic Plasticity. Cortical dopaminergic systems are critically involved in prefrontal cortex (PFC) functions, especially in working memory and neurodevelopmental disorders such as schizophrenia. GSK-3β (glycogen synthase kinase-3β) is highly associated with cAMP (cyclic adenosine monophosphate)-independent dopamine D2 receptor (D2R)-mediated signaling to affect dopamine-dependent behaviors. However, the mechanisms underlying the GSK-3β modulation of cognitive function via D2Rs remains unclear. This study explored how conditional cell-type-specific ablation of GSK-3β in D2R+ neurons (D2R-GSK-3β<sup>-/-</sup>) in the brain affects synaptic function in the medial PFC (mPFC). Both male and female (postnatal days 60-90) mice, including 140 D2R, 24 D1R, and 38 DISC1 mice, were used. This study found that NMDA receptor (NMDAR) function was significantly increased in layer V pyramidal neurons in mPFC of D2R-GSK-3β<sup>-/-</sup> mice, along with increased dopamine modulation of NMDAR-mediated current. Consistently, NR2A and NR2B protein levels were elevated in mPFC of D2R-GSK-3β<sup>-/-</sup> mice. This change was accompanied by a significant increase in enrichment of activator histone mark H3K27ac at the promoters of both Grin2a and Grin2b genes. In addition, altered short- and long-term synaptic plasticity, along with an increased spine density in layer V pyramidal neurons, were detected in D2R-GSK-3β<sup>-/-</sup> mice. Indeed, D2R-GSK-3β<sup>-/-</sup> mice also exhibited a resistance of working memory impairment induced by injection of NMDAR antagonist MK-801. Notably, either inhibiting GSK-3β or disrupting the D2R-DISC1 complex was able to reverse the mutant DISC1-induced decrease of NMDAR-mediated currents in the mPFC. This study demonstrates that GSK-3β modulates cognition via D2R-DISC1 interaction and epigenetic regulation of NMDAR expression and function."	"Association between (GT)n Promoter Polymorphism and Recovery from Concussion: A Pilot Study. Variability in recovery among concussed athletes can be attributed to several risk factors. One risk factor not definitively explored is genetic variation. Genetic variations such as variable number tandem repeats (VNTR) in the promotor region are normal in the population, and can lead to disparities in the amount of protein produced, which could be associated with neuronal recovery. Little research has been conducted to investigate promoter VNTRs within genes responsible for recovery following a concussion. The authors implemented a prospective cohort design using a standardized concussion protocol to diagnose and follow 93 athletes to full recovery at three different sites to determine the association between promotor GT(n) VNTR polymorphisms and recovery time within concussed athletes. The GT(n) VNTR within the promoter region of glutamate ionotropic receptor N-methyl-d-aspartate (NMDA) type subunit 2A (GRIN2A), potassium voltage-gated channel subfamily H member 2 (KCNH2), glutamate ionotropic receptor kainate type subunit 1 (GRIK1), and neurofilament light (NEFL) were genotyped using capillary electrophoresis. GT(n) VNTR promotor polymorphisms were dichotomized into long (L) and short (s) alleles. Using adjusted negative binomial regression models we found that athletes carrying the LL GRIN2A GT(n) VNTR within the promoter region were more likely to experience a prolonged concussion recovery, which resulted in their not being able to return to play for ∼60 days. Additionally, there was a trend toward significance, in which the ss NEFL GT(n) Caucasian athletes had prolonged concussion recovery. This could presumably be attributed to altered proteins or protein levels that disrupt neuronal recovery. This pilot study suggests that these VNTRs are associated with prolonged concussion recovery. In future studies, we plan to measure the extent to which the L or s alleles alter the level and the activity of the GluNR2a and NEFL proteins that GRIN2A and NEFL produce, respectively."	"Developmental exposure to diacetoxyscirpenol reversibly disrupts hippocampal neurogenesis by inducing oxidative cellular injury and suppressed differentiation of granule cell lineages in mice. To investigate the developmental exposure effect of diacetoxyscirpenol (DAS) on postnatal hippocampal neurogenesis, pregnant ICR mice were provided a diet containing DAS at 0, 0.6, 2.0, or 6.0 ppm from gestational day 6 to day 21 on weaning after delivery. Offspring were maintained through postnatal day (PND) 77 without DAS exposure. On PND 21, neural stem cells (NSCs) and all subpopulations of proliferating progenitor cells were suggested to decrease in number in the subgranular zone (SGZ) at ≥ 2.0 ppm. At 6.0 ppm, increases of SGZ cells showing TUNEL<sup>+</sup>, metallothionein-I/II<sup>+</sup>, γ-H2AX<sup>+</sup> or malondialdehyde<sup>+</sup>, and transcript downregulation of Ogg1, Parp1 and Kit without changing the level of double-stranded DNA break-related genes were observed in the dentate gyrus. This suggested induction of oxidative DNA damage of NSCs and early-stage progenitor cells, which led to their apoptosis. Cdkn2a, Rb1 and Trp53 downregulated transcripts, which suggested an increased vulnerability to DNA damage. Hilar PVALB<sup>+</sup> GABAergic interneurons decreased and Grin2a and Chrna7 were downregulated, which suggested suppression of type-2-progenitor cell differentiation. On PND 77, hilar RELN<sup>+</sup> interneurons increased at ≥ 2.0 ppm; at 6.0 ppm, RELN-related Itsn1 transcripts were upregulated and ARC<sup>+</sup> granule cells decreased. Increased RELN signals may ameliorate the response to the decreases of NSCs and ARC-mediated synaptic plasticity. These results suggest that DAS reversibly disrupts hippocampal neurogenesis by inducing oxidative cellular injury and suppressed differentiation of granule cell lineages. The no-observed-adverse-effect level of DAS for offspring neurogenesis was determined to be 0.6 ppm (0.09-0.29 mg/kg body weight/day)."	"Distinct roles of GRIN2A and GRIN2B variants in neurological conditions. Rapid advances in sequencing technology have led to an explosive increase in the number of genetic variants identified in patients with neurological disease and have also enabled the assembly of a robust database of variants in healthy individuals. A surprising number of variants in the GRIN genes that encode N-methyl-D-aspartate (NMDA) glutamatergic receptor subunits have been found in patients with various neuropsychiatric disorders, including autism spectrum disorders, epilepsy, intellectual disability, attention-deficit/hyperactivity disorder, and schizophrenia. This review compares and contrasts the available information describing the clinical and functional consequences of genetic variations in GRIN2A and GRIN2B. Comparison of clinical phenotypes shows that GRIN2A variants are commonly associated with an epileptic phenotype but that GRIN2B variants are commonly found in patients with neurodevelopmental disorders. These observations emphasize the distinct roles that the gene products serve in circuit function and suggest that functional analysis of GRIN2A and GRIN2B variation may provide insight into the molecular mechanisms, which will allow more accurate subclassification of clinical phenotypes. Furthermore, characterization of the pharmacological properties of variant receptors could provide the first opportunity for translational therapeutic strategies for these GRIN-related neurological and psychiatric disorders."	"Integrated Transcriptome Analyses Revealed Key Target Genes in Mouse Models of Autism. Genetic mutations are the major pathogenic factor of Autism Spectrum Disorder (ASD). In recent years, more and more ASD risk genes have been revealed, among which there are a group of transcriptional regulators. Considering the similarity of the core clinical phenotypes, it is possible that these different factors may regulate the expression levels of certain key targets. Identification of these targets could facilitate the understanding of the etiology and developing of novel diagnostic and therapeutic methods. Therefore, we performed integrated transcriptome analyses of RNA-Seq and microarray data in multiple ASD mouse models and identified a number of common downstream genes in various brain regions, many of which are related to the structure and function of the synapse components or drug addiction. We then established protein-protein interaction networks of the overlapped targets and isolated the hub genes by 11 algorithms based on the topological structure of the networks, including Sdc4, Vegfa, and Cp in the Cortex-Adult subgroup, Gria1 in the Cortex-Juvenile subgroup, and Kdr, S1pr1, Ubc, Grm2, Grin2b, Nrxn1, Pdyn, Grin3a, Itgam, Grin2a, Gabra2, and Camk4 in the Hippocampus-Adult subgroup, many of which have been associated with ASD in previous studies. Finally, we cross compared our results with human brain transcriptional data sets and verified several key candidates, which may play important role in the pathology process of ASD, including SDC4, CP, S1PR1, UBC, PDYN, GRIN2A, GABRA2, and CAMK4. In summary, by integrated bioinformatics analysis, we have identified a series of potentially important molecules for future ASD research. Autism Res 2020, 13: 352-368. © 2019 International Society for Autism Research, Wiley Periodicals, Inc. LAY SUMMARY: Abnormal transcriptional regulation accounts for a significant portion of Autism Spectrum Disorder. In this study, we performed transcriptome analyses of mouse models to identify common downstream targets of transcriptional regulators involved in ASD. We identified several recurrent target genes that are close related to the common pathological process of ASD, including SDC4, CP, S1PR1, UBC, PDYN, GRM2, NRXN1, GRIN3A, ITGAM, GRIN2A, GABRA2, and CAMK4. These results provide potentially important targets for understanding the molecular mechanism of ASD."	"Exploring lithium's transcriptional mechanisms of action in bipolar disorder: a multi-step study. Lithium has been the first-line treatment for bipolar disorder (BD) for more than six decades. Although the molecular effects of lithium have been studied extensively and gene expression changes are generally believed to be involved, the specific mechanisms of action that mediate mood regulation are still not known. In this study, a multi-step approach was used to explore the transcriptional changes that may underlie lithium's therapeutic efficacy. First, we identified genes that are associated both with lithium exposure and with BD, and second, we performed differential expression analysis of these genes in brain tissue samples from BD patients (n = 42) and healthy controls (n = 42). To identify genes that are regulated by lithium exposure, we used high-sensitivity RNA-sequencing of corpus callosum (CC) tissue samples from lithium-treated (n = 8) and non-treated (n = 9) rats. We found that lithium exposure significantly affected 1108 genes (FDR &lt; 0.05), 702 up-regulated and 406 down-regulated. These genes were mostly enriched for molecular functions related to signal transduction, including well-established lithium-related pathways such as mTOR and Wnt signaling. To identify genes with differential expression in BD, we performed expression quantitative trait loci (eQTL) analysis on BD-associated genetic variants from the most recent genome-wide association study (GWAS) using three different gene expression databases. We found 307 unique eQTL genes regulated by BD-associated variants, of which 12 were also significantly modulated by lithium treatment in rats. Two of these showed differential expression in the CC of BD cases: RPS23 was significantly down-regulated (p = 0.0036, fc = 0.80), while GRIN2A showed suggestive evidence of down-regulation in BD (p = 0.056, fc = 0.65). Crucially, GRIN2A was also significantly up-regulated by lithium in the rat brains (p = 2.2e-5, fc = 1.6), which suggests that modulation of GRIN2A expression may be a part of the therapeutic effect of the drug. These results indicate that the recent upsurge in research on this central component of the glutamatergic system, as a target of novel therapeutic agents for affective disorders, is warranted and should be intensified."	"N-terminal alternative splicing of GluN1 regulates the maturation of excitatory synapses and seizure susceptibility. The majority of NMDA receptors (NMDARs) in the brain are composed of 2 GluN1 and 2 GluN2 subunits. The inclusion or exclusion of 1 N-terminal and 2 C-terminal domains of GluN1 results in 8 splicing variants that exhibit distinct temporal and spatial patterns of expression and functional properties. However, previous functional analyses of Grin1 variants have been done using heterologous expression and the in vivo function of Grin1 splicing is unknown. Here we show that N-terminal splicing of GluN1 has important functions in the maturation of excitatory synapses. The inclusion of exon 5 of Grin1 is up-regulated in several brain regions such as the thalamus and neocortex. We find that deletion of Grin1 exon 5 disrupts the developmental remodeling of NMDARs in thalamic neurons and the effect is distinct from that of Grin2a (GluN2A) deletion. Deletion of Grin2a or exon 5 of Grin1 alone partially attenuates the shortening of NMDAR-mediated excitatory postsynaptic currents (NMDAR-EPSCs) during early life, whereas deletion of both Grin2a and exon 5 of Grin1 completely abolishes the developmental change in NMDAR-EPSC decay time. Deletion of exon 5 of Grin1 leads to an overproduction of excitatory synapses in layer 5 pyramidal neurons in the cortex and increases seizure susceptibility in adult mice. Our findings demonstrate that N-terminal splicing of GluN1 has important functions in synaptic maturation and neuronal network excitability."	"De novo GRIN variants in NMDA receptor M2 channel pore-forming loop are associated with neurological diseases. N-methyl-D-aspartate receptors (NMDARs) mediate slow excitatory postsynaptic transmission in the central nervous system, thereby exerting a critical role in neuronal development and brain function. Rare genetic variants in the GRIN genes encoding NMDAR subunits segregated with neurological disorders. Here, we summarize the clinical presentations for 18 patients harboring 12 de novo missense variants in GRIN1, GRIN2A, and GRIN2B that alter residues in the M2 re-entrant loop, a region that lines the pore and is intolerant to missense variation. These de novo variants were identified in children with a set of neurological and neuropsychiatric conditions. Evaluation of the receptor cell surface expression, pharmacological properties, and biophysical characteristics show that these variants can have modest changes in agonist potency, proton inhibition, and surface expression. However, voltage-dependent magnesium inhibition is significantly reduced in all variants. The NMDARs hosting a single copy of a mutant subunit showed a dominant reduction in magnesium inhibition for some variants. These variant NMDARs also show reduced calcium permeability and single-channel conductance, as well as altered open probability. The data suggest that M2 missense variants increase NMDAR charge transfer in addition to varied and complex influences on NMDAR functional properties, which may underlie the patients' phenotypes."	"Convergent functional genomics of cocaine misuse in humans and animal models. Background: Data from the Global Burden of Disease Study 2016 recently estimated that after opioid and cannabis use disorders, cocaine use disorders were among the most common, with around 5.8 million cases around the world. Several genome-wide expression studies (GWES) for cocaine misuse have been carried out in brain tissues from patients and controls and in mouse and rat models.Objectives: In the current work, we used a convergent functional genomics approach to identify novel candidate genes and pathways for cocaine misuse.Methods: We carried out meta-analyses for available GWES for cocaine misuse in humans and mouse and rat models (three, four, and two GWES, respectively). Multiple lines of evidence (GWES, genome-wide association and epigenomic data) were integrated to prioritize top candidate genes, and a functional enrichment analysis was carried out.Results: Several top candidate genes supported by multiple lines of genomic evidence, and with known roles in brain plasticity, were identified: APP, GRIN2A, GRIN2B, KCNA2, MAP4, PCDH10, PPP3CA, SNCB, and SV2C. An enrichment of genes regulated by the AP1 transcription factor was found.Conclusion: This is the first meta-analysis of GWES for cocaine misuse in humans and mouse and rat models. The analysis of convergence of multiple lines of genome-wide evidence identified novel candidate genes and pathways for cocaine misuse, which are of basic and clinical importance."	"Discovery and validation of methylated-differentially expressed genes in Helicobacter pylori-induced gastric cancer. DNA methylation has an important role in Helicobacter pylori (H. pylori)-induced gastric cancer (GC) processes and development. The aim of this study was to search genome-scale epigenetic modifications for studying pathogenesis of H. pylori-induced GC, and to find factors and powerful signature related to survival and prognosis. In this study, we conducted a comprehensive analysis of DNA methylation and gene expression profiles in the Gene Expression Omnibus (GEO), to identified differentially expressed genes (DEGs) and differentially methylated genes (DMGs). Functional enrichment analysis of the screened genes was performed, and a protein-protein interaction network was constructed. The TCGA DNA methylation databases and 55 H. pylori-infected GC cases of GEO RNA sequencing (GSE62254) were utilized for prognostic value validation of hub genes. Finally, a prognosis-related risk signature was identified by a series of bioinformatics analysis for H. pylori-induced GC patients. Totally, 161 DMGs were identified. Pathway analysis showed that all MDEGs mainly associated with Ras signaling pathway, renal cell carcinoma, mitogen-activated protein kinase signaling pathway. Five hub genes including CACNB2, GNB4, GRIN2A, MEF2C, and PREX1 were screened as independent prognostic factors in H. pylori-induced GC patients. Two-gene (CACNB2 and MEF2C) risk signature was constructed for predicting the overall survival of H. pylori-induced GC patients. Our study indicated possible MDEGs and pathways in H. pylori-induced GC by bioinformatics analysis, which may provide novel insights for unraveling pathogenesis of H. pylori-induced GC. Hub genes might serve as aberrantly methylation-based biomarkers for clinical diagnostic and prognostic evaluation of H. pylori-induced GC."	"Progressive neuroanatomical changes caused by Grin1 loss-of-function mutation. NMDA receptor dysfunction is central to the encephalopathies caused by missense mutations in the NMDA receptor subunit genes. Missense variants of GRIN1, GRIN2A, and GRIN2B cause similar syndromes with varying severity of intellectual impairment, autism, epilepsy, and motor dysfunction. To gain insight into possible biomarkers of NMDAR hypofunction, we asked whether a loss-of-function variant in the Grin1 gene would cause structural changes in the brain that could be detected by MRI. We also studied the developmental trajectory of these changes to determine whether structural changes coincided with reported cognitive impairments in the mice. We performed magnetic resonance imaging in male Grin1-/- knockdown mice (GluN1KD) that were three, six, or twelve weeks old. Deformation-based morphometry was used to assess neuroanatomical differences. Volumetric reductions were detected in substantia nigra and striatum of GluN1KD mice at all ages. Changes in limbic structures were only evident at six weeks of age. Reductions in white matter volumes were first evident at three weeks, and additional deficits were detected at six and twelve weeks. FluoroJade immunofluorescence revealed degenerating neurons in twelve-week old GluN1KD mice. We conclude that Grin1 loss-of-function mutations cause volume reductions in dopaminergic structures early in development, while changes to limbic and white matter structures are delayed and are more pronounced in post-adolescent ages. The evidence of degenerating neurons in the mature brain indicates an ongoing process of cell loss as a consequence of NMDAR hypofunction."	"Idiopathic encephalopathy related to status epilepticus during slow sleep (ESES) as a &quot;pure&quot; model of epileptic encephalopathy. An electroclinical, genetic, and follow-up study. The objective of the study was to investigate electroclinical and neuropsychological features, genetic background, and evolution of children with idiopathic encephalopathy with status epilepticus during slow sleep (ESES), including Landau-Kleffner syndrome (LKS). All children diagnosed with idiopathic ESES at the Danish Epilepsy Centre between March 2003 and December 2014 were retrospectively reviewed. Repeated 24-hour electroencephalography (24-h EEG) recordings, neuropsychological assessments, and clinical-neurological evaluation were performed throughout the follow-up in all patients. In 13 children, genetic investigations were performed. We collected 24 children (14 males and 10 females). Mean age at ESES diagnosis was 6 years, and mean ESES duration was 2 years and 7 months. Twenty-one children had epileptic seizures. Three children had LKS. Topography of sleep-related EEG epileptic abnormalities was diffuse in 3 subjects, hemispheric in 6, multifocal in 9, and focal in 6. During the active phase of ESES, all children presented with a heterogeneous combination of behavioral and cognitive disturbances. In 14 children, a parallel between severity of the clinical picture and spike-wave index (SWI) was observed. We could not find a strict correlation between the type and severity of neurobehavioral impairment and the side/topography of sleep-related EEG discharges during the active phase of ESES. At the last follow-up, 21 children were in remission from ESES. Complete recovery from neurobehavioral disorders was observed in 5 children. Genetic assessment, performed in 13 children, showed GRIN2A variant in two (15.4%). Our patients with idiopathic ESES showed a heterogeneous pattern of epileptic seizures, neurobehavioral disorders, and sleep EEG features. Only one-fourth of children completely recovered from the neuropsychological disturbances after ESES remission. Lack of correlation between severity/type of cognitive derangement and SWI and/or topography of sleep EEG epileptic abnormalities may suggest the contribution of additional factors (including impaired sleep homeostasis due to epileptic activity) in the neurobehavioral derangement that characterize ESES."	"The human NMDA receptor GluN2A<sup>N615K</sup> variant influences channel blocker potency. N-methyl-D-aspartate (NMDA) receptors are glutamate receptors with key roles in synaptic plasticity, due in part to their Mg<sup>2+</sup> mediated voltage-dependence. A large number of genetic variants affecting NMDA receptor subunits have been found in people with a range of neurodevelopmental disorders, including GluN2A<sup>N615K</sup> (GRIN2A<sup>C1845A</sup>) in two unrelated individuals with severe epileptic encephalopathy. This missense variant substitutes a lysine in place of an asparagine known to be important for blockade by Mg<sup>2+</sup> and other small molecule channel blockers. We therefore measured the impact of GluN2A<sup>N615K</sup> on a range of NMDA receptor channel blockers using two-electrode voltage clamp recordings made in Xenopus oocytes. We found that GluN2A<sup>N615K</sup> resulted in block by Mg<sup>2+</sup> 1 mmol/L being greatly reduced (89% vs 8%), block by memantine 10 μmol/L (76% vs 27%) and amantadine 100 μmol/L (45% vs 17%) being substantially reduced, block by ketamine 10 μmol/L being modestly reduced (79% vs 73%) and block by dextromethorphan 10 μmol/L being enhanced (45% vs 55%). Coapplying Mg<sup>2+</sup> with memantine or amantadine did not reduce the GluN2A<sup>N615K</sup> block seen with either small molecule. In addition, we measured single-channel conductance of GluN2A<sup>N615K</sup>-containing NMDA receptors in outside-out patches pulled from Xenopus oocytes, finding a 4-fold reduction in conductance (58 vs 15 pS). In conclusion, the GluN2A<sup>N615K</sup> variant is associated with substantial changes to important physiological and pharmacological properties of the NMDA receptor. Our findings are consistent with GluN2A<sup>N615K</sup> having a disease-causing role, and inform potential therapeutic strategies."	"Differential expression of synaptic markers regulated during neurodevelopment in a rat model of schizophrenia-like behavior. Schizophrenia is considered a neurodevelopmental disorder. Recent reports relate synaptic alterations with disease etiology. The inbred Roman High- (RHA-I) and Low- (RLA-I) Avoidance rat strains are a congenital neurobehavioral model, with the RHA-I displaying schizophrenia-related behaviors and serotonin 2A (5-HT2A) and metabotropic glutamate 2 (mGlu2) receptor alterations in the prefrontal cortex (PFC). We performed a comprehensive characterization of the RHA-I/RLA-I rats by real-time qPCR and Western blotting for 5-HT1A, 5-HT2A, mGlu2, dopamine 1 and dopamine 2 receptors (DRD1 and DRD2), AMPA receptor subunits Gria1, Gria2 and NMDA receptor subunits Grin1, Grin2a and Grin2b, as well as pre- and post-synaptic components in PFC and hippocampus (HIP). Besides corroborating decreased mGlu2 (Grm2) expression, we found increased mRNA levels for Snap25, Synaptophysin (Syp), Homer1 and Neuregulin-1 (Nrg1) in the PFC of the RHA-I and decreased expression of Vamp1, and Snapin in the HIP. We also showed alterations in Vamp1, Grin2b, Syp, Snap25 and Nrg1 at protein levels. mRNA levels of Brain Derived Neurotrophic Factor (BDNF) were increased in the PFC of the RHA-I rats, with no differences in the HIP, while BDNF protein levels were decreased in PFC and increased in HIP. To investigate the temporal dynamics of these synaptic markers during neurodevelopment, we made use of the open source BrainCloud™ dataset, and found that SYP, GRIN2B, NRG1, HOMER1, DRD1 and BDNF expression is upregulated in PFC during childhood and adolescence, suggesting a more immature neurobiological endophenotype in the RHA-I strain."	"Impaired vocal communication, sleep-related discharges, and transient alteration of slow-wave sleep in developing mice lacking the GluN2A subunit of N-methyl-d-aspartate receptors. Glutamate-gated N-methyl-d-aspartate receptors (NMDARs) are instrumental to brain development and functioning. Defects in the GRIN2A gene, encoding the GluN2A subunit of NMDARs, cause slow-wave sleep (SWS)-related disorders of the epilepsy-aphasia spectrum (EAS). The as-yet poorly understood developmental sequence of early EAS-related phenotypes, and the role of GluN2A-containing NMDARs in the development of SWS and associated electroencephalographic (EEG) activity patterns, were investigated in Grin2a knockout (KO) mice. Early social communication was investigated by ultrasonic vocalization (USV) recordings; the relationship of electrical activity of the cerebral cortex with SWS was studied using deep local field potential or chronic EEG recordings at various postnatal stages. Grin2a KO pups displayed altered USV and increased occurrence of high-voltage spindles. The pattern of slow-wave activity induced by low-dose isoflurane was altered in Grin2a KO mice in the 3rd postnatal week and at 1 month of age. These alterations included strong suppression of the delta oscillation power and an increase in the occurrence of the spike-wave bursts. The proportion of SWS and the sleep quality were transiently reduced in Grin2a KO mice aged 1 month but recovered by the age of 2 months. Grin2a KO mice also displayed spontaneous spike-wave discharges, which occurred nearly exclusively during SWS, at 1 and 2 months of age. The impaired vocal communication, the spike-wave discharges occurring almost exclusively in SWS, and the age-dependent alteration of SWS that were all seen in Grin2a KO mice matched the sleep-related and age-dependent manifestations seen in children with EAS, hence validating the Grin2a KO as a reliable model of EAS disorders. Our data also show that GluN2A-containing NMDARs are involved in slow-wave activity, and that the period of postnatal brain development (postnatal day 30) when several anomalies peaked might be critical for GluN2A-dependent, sleep-related physiological and pathological processes."	"Update on the genetics of the epilepsy-aphasia spectrum and role of GRIN2A mutations. Formerly idiopathic, focal epilepsies (IFE) are self-limiting, &quot;age-related&quot; diseases that mainly occur during critical developmental periods. Childhood epilepsy with centrotemporal spikes, or Rolandic epilepsy (RE), is the most frequent form of IFE. Together with the Landau-Kleffner syndrome and the epileptic Encephalopathy related to Status Epilepticus during slow Sleep syndrome (ESES), RE is part of a single and continuous spectrum of childhood epilepsies and epileptic encephalopathies with acquired cognitive, behavioral and speech and/or language impairment, known as the epilepsy-aphasia spectrum (EAS). The pathophysiology has long been attributed to an elusive and complex interplay between brain development and maturation processes on the one hand, and susceptibility genes on the other hand. Studies based on the variable combination of molecular cytogenetics, Sanger and next-generation sequencing tools, and functional assays have led to the identification and validation of genetic mutations in the GRIN2A gene that can directly cause various types of EAS disorders. The recent identification of GRIN2A defects in EAS represents a first and major break-through in our understanding of the underlying pathophysiological mechanisms. In this review, we describe the current knowledge on the genetic architecture of IFE."	"GRIN2A: involvement in movement disorders and intellectual disability without seizures. NA"	"Ameliorating effect of postweaning exposure to antioxidant on disruption of hippocampal neurogenesis induced by developmental hypothyroidism in rats. Developmental hypothyroidism as a model of autism spectrum disorders disrupts hippocampal neurogenesis through the adult stage. The present study investigated the ameliorating effect of postweaning exposure to antioxidant on the hypothyroidism-induced disruptive neurogenesis. Mated female Sprague-Dawley rats were treated with 0 or 10 ppm 6-propyl-2-thiouracil (PTU) as an anti-thyroid agent in drinking water from gestational day 6 to postnatal day (PND) 21 on weaning. PTU-exposed male offspring were fed either basal diet, diet containing α-glycosyl isoquercitrin (AGIQ) at 5,000 ppm or α-lipoic acid (ALA) at 1,000 ppm as an antioxidant from PND 21 to PND 77. PTU-exposure decreased DCX<sup>+</sup> and NeuN<sup>+</sup> granule cell lineage subpopulations, synaptic plasticity-related FOS<sup>+</sup> granule cells, and hilar PVALB<sup>+</sup> and GAD67<sup>+</sup> GABAergic interneurons, increased hilar SST<sup>+</sup> and CALB2<sup>+</sup> interneurons, and upregulated Gria3, Otx2, and antioxidant enzyme genes in the dentate gyrus on PND 77. These results suggest disruption of neurogenesis remained in relation with increase of oxidative stress and compensatory responses to the disruption at the adult stage. AGIQ recovered expression of some antioxidant enzyme genes and was effective for restoration of NeuN<sup>+</sup> postmitotic granule cells and PVALB<sup>+</sup> and SST<sup>+</sup> interneurons. In contrast, ALA was effective for restoration of all interneuron subpopulations, as well as postmitotic granule cells, and upregulated Grin2a that may play a role for the restoration. Both antioxidants recovered expression of Otx2 and AGIQ-alone recovered Gria3, suggesting a reversal of disruptive neurogenesis by compensatory responses. Thus, postweaning antioxidant exposure may be effective for ameliorating developmental hypothyroidism-induced disruptive neurogenesis by restoring the function of regulatory system."	"The prevalence of ADH1B and OPRM1 alleles predisposing for alcohol consumption are increased in the Hungarian psoriasis population. Alcohol intake affects in great the symptoms and life of psoriasis patients, although the association of SNPs related to increased alcohol consumption with psoriasis has not been elucidated. Therefore, to investigate the association of psoriasis with established alcohol consumption and dependence-related gene variants we conducted a population-based case-control study including 3743 subjects (776 psoriasis cases and 2967 controls from the general Hungarian population). Genotyping of 23 SNPs at ADH1B, ADH1C, ALDH1A1, ALDH2, SLC6A3, DDC, GABRA2, GABRG1, HTR1B, MAOA, TPH2, CHRM2, GRIN2A, POMC, OPRM1, OPRK1 and BDNF were determined and differences in genotype and allele distributions were investigated. Multiple logistic regression analyses were implemented. Analysis revealed association between C allele of the rs1229984 polymorphism (ADH1B gene) and psoriasis risk (ORadditive = 1.58, 95% CI 1.23-2.03, p &lt; 0.001, ORrecessive = 1.58, 95% CI 1.22-2.04, p = 0.001). Furthermore, the G allele of rs1799971 polymorphism (OPRM1 gene) increased the risk of familial aggregation (ORadditive = 1.99, 95% CI 1.36-2.91, p &lt; 0.001 ORdominant = 2.01, 95% CI 1.35-3.01, p &lt; 0.001). In subgroups of psoriatic patients with history of early onset and familial aggregation effect allele 'C' of rs1229984 showed association in the additive and recessive models (ORadditive = 2.41, 95% CI 1.26-4.61, p &lt; 0.01, ORrecessive = 2.42, 95% CI 1.26-4.68, p &lt; 0.01). While effect allele 'G' of rs1799971 (OPRM1) also associated with increased risk of early onset and familial aggregation of psoriasis in the additive and dominant models (ORadditive = 1.75, 95% CI 1.27-2.43, p = 0.001, ORdominant = 1.82, 95% CI 1.26-2.63, p = 0.001). Our results suggest that genetically defined high-risk individuals for alcohol consumption are more common in the psoriasis population."	"Gadd45α modulates aversive learning through post-transcriptional regulation of memory-related mRNAs. Learning is essential for survival and is controlled by complex molecular mechanisms including regulation of newly synthesized mRNAs that are required to modify synaptic functions. Despite the well-known role of RNA-binding proteins (RBPs) in mRNA functionality, their detailed regulation during memory consolidation is poorly understood. This study focuses on the brain function of the RBP Gadd45α (growth arrest and DNA damage-inducible protein 45 alpha, encoded by the Gadd45a gene). Here, we find that hippocampal memory and long-term potentiation are strongly impaired in Gadd45a-deficient mice, a phenotype accompanied by reduced levels of memory-related mRNAs. The majority of the Gadd45α-regulated transcripts show unusually long 3' untranslated regions (3'UTRs) that are destabilized in Gadd45a-deficient mice via a transcription-independent mechanism, leading to reduced levels of the corresponding proteins in synaptosomes. Moreover, Gadd45α can bind specifically to these memory-related mRNAs. Our study reveals a new function for extended 3'UTRs in memory consolidation and identifies Gadd45α as a novel regulator of mRNA stability."	"Identifying mutations in epilepsy genes: Impact on treatment selection. The last decade saw impressive advances not only in the discovery of gene mutations causing epilepsy, but also in unraveling the molecular mechanisms underlying the clinical manifestations of the disease. Increasing evidence is emerging that understanding these mechanisms is relevant for selection of the most appropriate treatment in the affected individual(s). The present article discusses the therapeutic implications of epilepsy-causing variants affecting a broad range of targets, from ion channels to genes controlling cellular metabolism and cell signaling pathways. Identification of a precise genetic etiology can direct physicians to (i) prescribe treatments that correct specific metabolic defects (e.g., the ketogenic diet for GLUT1 deficiency, or pyridoxine for pyridoxine-dependent epilepsies); (ii) avoid antiepileptic drugs (AEDs) that can aggravate the pathogenic defect (e.g., sodium channel blocking drugs in SCN1A-related Dravet syndrome), or (iii) select AEDs that counteract the functional disturbance caused by the gene mutation (e.g., sodium channel blockers for epilepsies due to gain-of-function SCN8A mutations). In some instances, different pathogenic variants of the same gene can have opposite functional effects, which determines whether certain treatments can be beneficial or deleterious (e.g., gain-of-function versus loss-of-function variants in SCN2A determine whether sodium channel blockers improve or worsen seizure control). There are also cases where functional disturbances caused by the gene defect may not be corrected by existing AEDs, but can be countered by medications already available in the market for other indications (e.g., memantine has been used to treat the epileptic encephalopathy caused by a specific gain-of-function GRIN2A mutation), thus making 'drug repurposing' a valuable tool for personalized epilepsy therapies. As our understanding of pathogenic mechanisms improve, opportunities arise for development of treatments targeting the specific gene defect or its consequences. Everolimus, an mTOR inhibitor approved for the treatment of focal seizures associated with tuberous sclerosis complex, is an example of a medication targeting the etiological mechanisms of the disease. Several treatments aimed at correcting specific pathogenic defects responsible for rare genetic epilepsies are currently in development, and range from traditional small molecules to novel approaches involving peptides, antisense oligonucleotides, and gene therapy."	"Caffeine as a potential arousal enhancer: altered NMDA subunit gene expression without improving cognitive performance in REM sleep deprived rats. Caffeine is one of the most extensively consumed stimulants in the world and has been suggested to induce wakefulness by antagonizing the function of the adenosine A2A receptor. Therefore, we investigated the effects of chronic caffeine consumption on learning and memory in the REM sleep-deprived rats.Male Wistar rats (n = 50), were randomly assigned into 5 groups: Control (C), Caffeine (Cf), Pedestal Control (PC), Sleep Deprivation (SD), Sleep Deprivation and Caffeine (SD + Cf). Sleep deprivation procedure was applied as the flower-pot technique. SD and SD + Cf groups were deprived for 18 hours in a day for 21 days. Caffeine was administered daily in drinking water (0.3 g⁄L) for 5 weeks. For evaluated learning and memory function, Morris Water Maze Test (MWM) was used. Fluidigm Access Array was used for Grin2a, Grin2b, BDNF, cdk5/cdk5r1, CaMKIIa genes expression in the hippocampus. Distance moved and escape latency were decreased through trial days (p&amp;lt;0.05). However, there is no significant difference between groups for time spent in targeted quadrant during probe test for memory performance. Grin2a up-regulation was found in Cf and SD+Cf (p&amp;lt;0.05), and cdk5r1 increased in Cf and PC control (p&amp;lt;0.05). Also, BDNF up-regulation was found in PC group. Grin2b, Cdk5, CaMKIIa expression levels were not changed significantly. We showed chronic caffeine altered some of the hippocampal genes without changing learning and memory in REM sleep deprived rats. Chronic consumption of caffeine caused up-regulation in Grin2a that subunit of NMDA receptor. We supposed that chronic caffeine consumption maintained arousal without affecting learning and memory performance."	"Long-term treadmill exercise upregulated hippocampal learning-related genes without improving cognitive behaviour in socially isolated rats. Some environment enrichments such as exercise has been reported to improve the diminished cognitive functions and related gene expression. Therefore, we aimed to investigate the effects of prolonged treadmill exercise on long-term learning and hippocampal gene expression, which involves learning and plasticity. Male Wistar rats (n = 32) randomly assigned into four groups: control (C), social isolation (SI), exercised (E), social isolation + exercise (SE) during postnatal days (PNDs) 21-34. Social isolation protocol was applied during 14 days by placing the rat alone in a cage. Rats were exercised daily, 5 days per week, for overall 4 weeks. Finally, learning performance was evaluated by the novel object recognition test. At the end of learning test, the rats were decapitated to isolate hippocampus tissues for learning related gene expression such as N-methyl-d-aspartate receptor (NMDAR) subunit genes (Grin1, Grin2a, Grin2b) and cyclin dependent kinase 5 (Cdk5), Cdk5 regulatory subunit p35 (Cdk5r), activity-regulated, cytoskeletal-associated protein (Arc), the immediate early gene (c-Fos, a marker of neuronal activation), doublecortin (DCX), achaetescute homolog 1 (ASCL1), brain-derived neurotrophic factor (BDNF) by real-time polymerase chain reaction (RT-PCR). Grin1, NMDAR subunit gene expression was increased significantly in E group compared to other groups. Grin2b, NMDAR subunit gene expression was increased in E group compared to the SI group. Cdk5 level increased in E group compared to the SE group. The ASCL1 gene expression increased in E group compare to the SE group. The DCX gene expression increasing in C group compared to SI and SE groups. Taken together these findings may point out that long-term social isolation down-regulated learning-related genes. However, treadmill exercise together with social isolation did not restore this down-regulation although treadmill exercise increased learning-related genes without improving cognitive behaviour."	"Comprehensive functional annotation of susceptibility SNPs prioritized 10 genes for schizophrenia. Nearly 95% of susceptibility SNPs identified by genome-wide association studies (GWASs) are located in non-coding regions, which causes a lot of difficulty in deciphering their biological functions on disease pathogenesis. Here, we aimed to conduct a comprehensive functional annotation for all the schizophrenia susceptibility loci obtained from GWASs. Considering varieties of epigenomic regulatory elements, we annotated all 22,688 acquired susceptibility SNPs according to their genomic positions to obtain functional SNPs. The comprehensive annotation indicated that these functional SNPs are broadly involved in diverse biological processes. Histone modification enrichment showed that H3K27ac, H3K36me3, H3K4me1, and H3K4me3 were related to the development of schizophrenia. Transcription factors (TFs) prediction, methylation quantitative trait loci (meQTL) analyses, expression quantitative trait loci (eQTL) analyses, and proteomic quantitative trait loci analyses (pQTL) identified 447 target protein-coding genes. Subsequently, differential expression analyses between schizophrenia cases and controls, nervous system phenotypes from mouse models, and protein-protein interaction with known schizophrenia-related pathways and genes were carried out with our target genes. We finaly prioritized 10 target genes for schizophrenia (CACNA1C, CLU, CSNK2B, GABBR1, GRIN2A, MAPK3, NOTCH4, SRR, TNF, and SYNGAP1). Our results may serve as an encyclopedia of schizophrenia susceptibility SNPs and offer holistic guides for post-GWAS functional experiments."	"NMDA 2A receptors in parvalbumin cells mediate sex-specific rapid ketamine response on cortical activity. Ketamine has emerged as a widespread treatment for a variety of psychiatric disorders when used at sub-anesthetic doses, but the neural mechanisms underlying its acute action remain unclear. Here, we identified NMDA receptors containing the 2A subunit (GluN2A) on parvalbumin (PV)-expressing inhibitory interneurons as a pivotal target of low-dose ketamine. Genetically deleting GluN2A receptors globally or selectively from PV interneurons abolished the rapid enhancement of visual cortical responses and gamma-band oscillations by ketamine. Moreover, during the follicular phase of the estrous cycle in female mice, the ketamine response was transiently attenuated along with a concomitant decrease of grin2A mRNA expression within PV interneurons. Thus, GluN2A receptors on PV interneurons mediate the immediate actions of low-dose ketamine treatment, and fluctuations in receptor expression across the estrous cycle may underlie sex-differences in drug efficacy."	"In-silico investigation of coding variants potentially affecting the functioning of the glutamatergic N-methyl-D-aspartate receptor in schizophrenia. Several lines of evidence support the hypothesis that impaired functioning of the glutamatergic N-methyl-D-aspartate receptor (NMDAR) might be involved in the etiology of schizophrenia. NMDAR is activated by phosphorylation by Fyn, and there is also some evidence to suggest that abnormalities in Fyn functionality could also be involved in susceptibility to schizophrenia. In a recent weighted burden analysis of exome-sequenced schizophrenia cases and controls, we noted modest statistical evidence for an enrichment of rare, functional variants in FYN, GRIN1, and GRIN2B in schizophrenia cases. To test the plausibility of the hypothesis that schizophrenia susceptibility might be associated with genetic variants predicted to cause impaired functioning of NMDAR, either directly or indirectly through impairment of the kinases that phosphorylate it. In an exome-sequenced sample of 4225 schizophrenia cases and 5834 controls, rare variants occurring in genes for the NMDAR subunits and for the kinases acting on it were annotated. The counts of disruptive and damaging variants were compared between cases and controls, and the distribution of amino acids affected by damaging variants was visualised in ProteinPaint and the RCSB Protein Data Bank. Special attention was paid to tyrosine residues subject to phosphorylation. There was no suggestion that abnormalities of the serine-threonine kinases or of Src were associated with schizophrenia. Overall, three cases and no controls had a disruptive variant in GRIN2A and two cases and no controls had a disruptive variant in FYN. Moreover, 14 cases and three controls had damaging variants in FYN, and all the variants in controls affected amino acid residues in the N-terminal region outside of any known functional domains. By contrast, 10 variants in cases affected amino acids in functional domains, and in the 3D structure of Fyn, two of the amino acid substitutions, A376T and Q517E, were adjacent to each other. A total of eight cases and one control had damaging variants in GRIN1, but there was no obvious pattern with respect to particular functional domains being affected in this or other genes. A single case had a variant in GRIN2A affecting a well-supported phosphorylation site, Y943C, and three cases had a variant in FYN which produces an amino acid change, T216S, which lies two residues away from two adjacent well-supported phosphorylation sites. Aside from this, there was no suggestion that tyrosine phosphorylation sites in Fyn or NMDAR were affected. The numbers of variants involved are too small for firm conclusions to be drawn. The results are consistent with the hypothesis that ∼0.5% of patients with schizophrenia have disruptive or damaging genetic variants, which could plausibly impair functioning of NMDAR directly or indirectly through impairing Fyn function."	"Periconceptional maternal alcohol consumption leads to behavioural changes in adult and aged offspring and alters the expression of hippocampal genes associated with learning and memory and regulators of the epigenome. Maternal alcohol consumption throughout pregnancy can result in long term behavioural deficits in offspring. However, less is known about the impact of alcohol during the periconceptional period (PC). The aim of this study was to examine the effect of PC ethanol (PC:EtOH) exposure on long term cognitive function; including memory and anxiety. Rats were exposed to a liquid diet containing ethanol (EtOH) (12.5% vol;vol) or a control diet from 4 days prior to mating until day 4 of pregnancy. Separate cohorts of animals were tested at 6 months (adult) or 15-18 months of age (aged). Offspring underwent a series of behavioural tests to assess anxiety, spatial and recognition memory. The hippocampus was collected, and mRNA expression of epigenetic modifiers and genes implicated in learning and memory were examined. PC:EtOH exposure resulted in a subtle anxiety like behaviour in adult female offspring with a significant reduction in directed exploring/head dipping behaviour during holeboard testing. In aged male offspring, PC:EtOH exposure resulted in a tendency for increased directed exploring/head dipping behaviour during holeboard testing. No differences between treatments were observed in the elevated plus maze. Aged female offspring exposed to PC:EtOH demonstrated short term spatial memory impairment (P &lt; 0.05). PC:EtOH resulted in an upregulation of hippocampal mRNA expression of bdnf, grin2a and grin2b at 18 months of age along with increased expression of epigenetic modifiers (dnmt1, dnmt3a and hdac2). In conclusion, PC:EtOH can lead to sex specific anxiety-like behaviour and impairments in spatial memory and altered hippocampal gene expression."	"Functional assessment of triheteromeric NMDA receptors containing a human variant associated with epilepsy. NMDA receptors are neurotransmitter-gated ion channels that are critically involved in brain cell communication Variations in genes encoding NMDA receptor subunits have been found in a range of neurodevelopmental disorders. We investigated a de novo genetic variant found in patients with epileptic encephalopathy that changes a residue located in the ion channel pore of the GluN2A NMDA receptor subunit. We found that this variant (GluN2A<sup>N615K</sup> ) impairs physiologically important receptor properties: it markedly reduces Mg<sup>2+</sup> blockade and channel conductance, even for receptors in which one GluN2A<sup>N615K</sup> is co-assembled with one wild-type GluN2A subunit. Our findings are consistent with the GluN2A<sup>N615K</sup> mutation being the primary cause of the severe neurodevelopmental disorder in carriers. NMDA receptors are ionotropic calcium-permeable glutamate receptors with a voltage-dependence mediated by blockade by Mg<sup>2+</sup> . Their activation is important in signal transduction, as well as synapse formation and maintenance. Two unrelated individuals with epileptic encephalopathy carry a de novo variant in the gene encoding the GluN2A NMDA receptor subunit: a N615K missense variant in the M2 pore helix (GRIN2A<sup>C1845A</sup> ). We hypothesized that this variant underlies the neurodevelopmental disorders in carriers and explored its functional consequences by electrophysiological analysis in heterologous systems. We focused on GluN2A<sup>N615K</sup> co-expressed with wild-type GluN2 subunits in physiologically relevant triheteromeric NMDA receptors containing two GluN1 and two distinct GluN2 subunits, whereas previous studies have investigated the impact of the variant in diheteromeric NMDA receptors with two GluN1 and two identical GluN2 subunits. We found that GluN2A<sup>N615K</sup> -containing triheteromers showed markedly reduced Mg<sup>2+</sup> blockade, with a value intermediate between GluN2A<sup>N615K</sup> diheteromers and wild-type NMDA receptors. Single-channel conductance was reduced by four-fold in GluN2A<sup>N615K</sup> diheteromers, again with an intermediate value in GluN2A<sup>N615K</sup> -containing triheteromers. Glutamate deactivation rates were unaffected. Furthermore, we expressed GluN2A<sup>N615K</sup> in cultured primary mouse cortical neurons, observing a decrease in Mg<sup>2+</sup> blockade and reduction in current density, confirming that the variant continues to have significant functional impact in neuronal systems. Our results demonstrate that the GluN2A<sup>N615K</sup> variant has substantial effects on NMDA receptor properties fundamental to the roles of the receptor in synaptic plasticity, even when expressed alongside wild-type subunits. This work strengthens the evidence indicating that the GluN2A<sup>N615K</sup> variant underlies the disabling neurodevelopmental phenotype in carriers."	"Downregulation of the Vitamin D Receptor Regulated Gene Set in the Hippocampus After MDMA Treatment. The active ingredient of ecstasy, ±3,4-methylenedioxymethamphetamine (MDMA), in addition to its initial reinforcing effects, induces selective and non-selective brain damage. Evidences suggest that the hippocampus (HC), a central region for cognition, may be especially vulnerable to impairments on the long-run, nevertheless, transcription factors that may precede and regulate such chronic changes remained uninvestigated in this region. In the current study, we used gene-set enrichment analysis (GSEA) to reveal possible transcription factor candidates responsible for enhanced vulnerability of HC after MDMA administration. Dark Agouti rats were intraperitoneally injected with saline or 15 mg/kg MDMA. Three weeks later HC gene expression was measured by Illumina whole-genome beadarrays and GSEA was performed with MSigDB transcription factor sets. The number of significantly altered genes on the genome level (significance &lt; 0.001) in up/downregulated sets was also counted. MDMA upregulated one, and downregulated 13 gene sets in the HC of rats, compared to controls, including Pax4, Pitx2, FoxJ2, FoxO1, Oct1, Sp3, AP3, FoxO4, and vitamin D receptor (VDR)-regulated sets (q-value &lt;0.05). VDR-regulated set contained the second highest number of significantly altered genes, including among others, Camk2n2, Gria3, and Grin2a. Most identified transcription factors are implicated in the response to ischemia confirming that serious hypoxia/ischemia occurs in the HC after MDMA administration, which may contribute to the selective vulnerability of this brain region. Moreover, our results also raise the possibility that vitamin D supplementation, in addition to the commonly used antioxidants, could be a potential alternative method to attenuate MDMA-induced chronic hippocampal impairments."	"GRIN2A-related disorders: genotype and functional consequence predict phenotype. Alterations of the N-methyl-d-aspartate receptor (NMDAR) subunit GluN2A, encoded by GRIN2A, have been associated with a spectrum of neurodevelopmental disorders with prominent speech-related features, and epilepsy. We performed a comprehensive assessment of phenotypes with a standardized questionnaire in 92 previously unreported individuals with GRIN2A-related disorders. Applying the criteria of the American College of Medical Genetics and Genomics to all published variants yielded 156 additional cases with pathogenic or likely pathogenic variants in GRIN2A, resulting in a total of 248 individuals. The phenotypic spectrum ranged from normal or near-normal development with mild epilepsy and speech delay/apraxia to severe developmental and epileptic encephalopathy, often within the epilepsy-aphasia spectrum. We found that pathogenic missense variants in transmembrane and linker domains (misTMD+Linker) were associated with severe developmental phenotypes, whereas missense variants within amino terminal or ligand-binding domains (misATD+LBD) and null variants led to less severe developmental phenotypes, which we confirmed in a discovery (P = 10-6) as well as validation cohort (P = 0.0003). Other phenotypes such as MRI abnormalities and epilepsy types were also significantly different between the two groups. Notably, this was paralleled by electrophysiology data, where misTMD+Linker predominantly led to NMDAR gain-of-function, while misATD+LBD exclusively caused NMDAR loss-of-function. With respect to null variants, we show that Grin2a+/- cortical rat neurons also had reduced NMDAR function and there was no evidence of previously postulated compensatory overexpression of GluN2B. We demonstrate that null variants and misATD+LBD of GRIN2A do not only share the same clinical spectrum (i.e. milder phenotypes), but also result in similar electrophysiological consequences (loss-of-function) opposing those of misTMD+Linker (severe phenotypes; predominantly gain-of-function). This new pathomechanistic model may ultimately help in predicting phenotype severity as well as eligibility for potential precision medicine approaches in GRIN2A-related disorders."	"Moderating effect of mode of delivery on the genetics of intelligence: Explorative genome-wide analyses in ALSPAC. Intelligence is a core construct of individual differences in cognitive abilities and a strong predictor of important life outcomes. Within recent years, rates of cesarean section have substantially increased globally, though little is known about its effect on neurodevelopmental trajectories. Thus, we aimed to investigate the influence of delivery by cesarean section on the genetics of intelligence in children. Participants were recruited through the Avon Longitudinal Study of Parents and Children (ALSPAC). Intelligence was measured by the Wechsler Intelligence Scale for Children (WISC). Genotyping was performed using the Illumina Human Hap 550 quad genome-wide SNP genotyping platform and was followed by imputation using MACH software. Genome-wide interaction analyses were conducted using linear regression. A total of 2,421 children and 2,141,747 SNPs were subjected to the genome-wide interaction analyses. No variant reached genome-wide significance. The strongest interaction was observed at rs17800861 in the GRIN2A gene (β = -3.43, 95% CI = -4.74 to -2.12, p = 2.98E-07). This variant is predicted to be located within active chromatin compartments in the hippocampus and may influence binding of the NF-kappaB transcription factor. Our results may indicate that mode of delivery might have a moderating effect on genetic disposition of intelligence in children. Studies of considerable sizes (&gt;10,000) are likely required to more robustly detect variants governing such interaction. In summary, the presented findings prompt the need for further studies aimed at increasing our understanding of effects various modes of delivery may have on health outcomes in children."	"No association of GRIN2A polymorphisms with the major depressive disorder in the Chinese Han origin. NA"	"[Speech and language neurodevelopmental disorders in epilepsy: pathophysiologic mechanisms and therapeutic approaches]. Speech and language development may be impaired in all forms of epilepsy involving specialized functional areas in the dominant cerebral hemisphere and their connections. The concept of epilepsy-aphasia clinical spectrum was recently proposed, but the notion of aphasia is quite conditional here as many of these patients demonstrate disorders of speech and language development from their infancy. Those forms of epilepsy are considered as continuum from the most severe Landau-Kleffner syndrome (LKS) and epilepsy with continuous spike-and-wave during sleep (CSWS) (also indicating as electrical status epilepticus during sleep - ESES) to intermediate epilepsy-aphasia disorders (with incomplete correspondence to diagnostic criteria of LKS and epilepsy with CSWS). The mild end of the spectrum is represented by benign childhood epilepsy with centrotemporal spikes (rolandic), which is often associated with speech and language disorders. The importance of genetic factors is discussed, including mutations in SRPX2, GRIN2A and other genes. The perspectives of individualized pharmacotherapy in epilepsy, co-morbid with neurodevelopmental disorders or impairments of speech and language development, are depending on the progress in genetic studies. In the new generation of antiepileptic drugs the positive influence on neuroplasticity mechanisms and higher cerebral functions are supposed for levetiracetam. Речь и ее развитие могут страдать при всех формах эпилепсии, затрагивающих специализированные центры в доминантном большом полушарии и их формирующиеся связи. В последние годы сформулирована концепция спектра расстройств 'эпилепсия-афазия', при этом указание на афазию представляется достаточно условным, поскольку у значительной части этих пациентов с раннего возраста отмечаются нарушения речевого развития. Соответствующие формы эпилепсии рассматриваются как клинический континуум, в котором самыми тяжелыми являются синдром Ландау-Клеффнера и эпилепсия с CSWS (также обозначается как эпилепсия с электрическим эпилептическим статусом медленноволнового сна - ESES), за ними следует промежуточная форма расстройства спектра 'эпилепсия-афазия' (с неполным соответствием критериям синдрома Ландау-Клеффнера и эпилепсии с CSWS), а наименьшей степенью тяжести обладает доброкачественная эпилепсия детства с центротемпоральными спайками (роландическая), при которой часто отмечаются речевые расстройства. Обсуждается роль генетических изменений при данных формах эпилепсии, в том числе мутаций генов SRPX2, GRIN2A и др. Перспективы индивидуализированной фармакотерапии эпилепсии, коморбидной с нарушениями нервно-психического развития и формированием речи, связаны с достижениями генетики. Среди современных эффективных противоэпилептических препаратов в аспекте положительного влияния на патогенез болезни выделен леветирацетам."	"Illuminated night alters hippocampal gene expressions and induces depressive-like responses in diurnal corvids. Artificial light at night induces circadian disruptions and causes cognitive impairment and mood disorders; yet very little is known about the neural and molecular correlates of these effects in diurnal animals. We manipulated the night environment and examined cellular and molecular changes in hippocampus, the brain region involved in cognition and mood, of Indian house crows (Corvus splendens) exposed to 12 hr light (150 lux): 12 hr darkness (0 lux). Diurnal corvids are an ideal model species with cognitive abilities at par with mammals. Dim light (6 lux) at night (dLAN) altered daily activity:rest pattern, reduced sleep, and induced depressive-like responses (decreased eating and self-grooming, self-mutilation, and reduced novel object exploration); return to an absolute dark night reversed these negative effects. dLAN suppressed nocturnal melatonin levels; however, diurnal corticosterone levels were unaffected. Concomitant reduction of immunoreactivity for DCX and BDNF suggested dLAN-induced suppression of hippocampal neurogenesis and compromised neuronal health. dLAN also negatively influenced hippocampal expression of genes associated with depressive-like responses (bdnf, il-1β, tnfr1, nr4a2), but not of those associated with neuronal plasticity (egr1, creb, syngap, syn2, grin2a, grin2b), cellular oxidative stress (gst, sod3, cat1) and neuronal death (caspase2, caspase3, foxo3). Furthermore, we envisaged the role of BDNF and showed epigenetic modification of bdnf gene by decreased histone H3 acetylation and increased hdac4 expression under dLAN. These results demonstrate transcriptional and epigenetic bases of dLAN-induced negative effects in diurnal crows, and provide insights into the risks of exposure to illuminated nights to animals including humans in an urban setting."	"Genotype and phenotype analysis using an epilepsy-associated gene panel in Chinese pediatric epilepsy patients. Epilepsy is a common and genetically heterogeneous disorder among children. Advances in next-generation sequencing have revealed that numerous epilepsy genes, helped us improve the understanding of mechanisms underlying epileptogenesis, and guided the development of treatments. We identified 39 candidate variants in 21 genes, including 37 that were pathogenic or likely pathogenic variants according to the American College of Medical Genetics and Genomics scoring system and two variants of uncertain significance that were considered causative after they were associated with clinical characteristics. Thirty were de novo variants (76.9%), and 20 variants had not previously been reported (51.3%). We obtained a diagnosis in 39 of the 141 probands (27.7%). The most frequently mutated gene was SCN1A; KCNQ2, KCNT1, PCDH19, STXBP1, SCN2A, TSC2, and PRRT2 were mutated in more than one individual; ANKRD11, CDKL5, DCX, DEPDC5, GABRB3, GRIN2A, IQSEC2, KCNA2, KCNB1, KCNJ6, TSC1, SCN9A, and SCN1B were mutated in a single individual. In addition, we detected a nonsense variant in a candidate gene KCND1 and considered it as a new candidate epilepsy gene, which needed further functional study. Consequently, large number of unreported variants were detected, diverse phenotypes were associated with known epilepsy genes. Changes in clinical management beyond genetic counseling were suggested."	"Transient microstructural brain anomalies and epileptiform discharges in mice defective for epilepsy and language-related NMDA receptor subunit gene Grin2a. The epilepsy-aphasia spectrum (EAS) is a heterogeneous group of age-dependent childhood disorders characterized by sleep-activated discharges associated with infrequent seizures and language, cognitive, and behavioral deficits. Defects in the GRIN2A gene, encoding a subunit of glutamate-gated N-methyl-d-aspartate (NMDA) receptors, represent the most important cause of EAS identified so far. Neocortical or thalamic lesions were detected in a subset of severe EAS disorders, and more subtle anomalies were reported in patients with so-called &quot;benign&quot; phenotypes. However, whether brain structural alterations exist in the context of GRIN2A defects is unknown. Magnetic resonance diffusion tensor imaging (MR-DTI) was used to perform longitudinal analysis of the brain at 3 developmental timepoints in living mice genetically knocked out (KO) for Grin2a. In addition, electroencephalography (EEG) was recorded using multisite extracellular electrodes to characterize the neocortical activity in vivo. Microstructural alterations were detected in the neocortex, the corpus callosum, the hippocampus, and the thalamus of Grin2a KO mice. Most MR-DTI alterations were detected at a specific developmental stage when mice were aged 30 days, but not at earlier (15 days) or later (2 months) ages. EEG analysis detected epileptiform discharges in Grin2a KO mice in the third postnatal week. Grin2a KO mice replicated several anomalies found in patients with EAS disorders. Transient structural alterations detected by MR-DTI recalled the age-dependent course of EAS disorders, which in humans start during childhood and show variable outcome at the onset of adolescence. Together with the epileptiform discharges detected in young Grin2a KO mice, our data suggested the existence of early anomalies in the maturation of the neocortical and thalamocortical systems. Whereas the possible relationship of those anomalies with sleep warrants further investigations, our data suggest that Grin2a KO mice may serve as an animal model to study the neuronal mechanisms of EAS disorders and to design new therapeutic strategies."	"Increased cocaine self-administration in rats lacking the serotonin transporter: a role for glutamatergic signaling in the habenula. Serotonin (5-HT) and the habenula (Hb) contribute to motivational and emotional states such as depression and drug abuse. The dorsal raphe nucleus, where 5-HT neurons originate, and the Hb are anatomically and reciprocally interconnected. Evidence exists that 5-HT influences Hb glutamatergic transmission. Using serotonin transporter knockout (SERT<sup>-/-</sup> ) rats, which show depression-like behavior and increased cocaine intake, we investigated the effect of SERT reduction on expression of genes involved in glutamate neurotransmission under both baseline conditions as well as after short-access or long-access cocaine (ShA and LgA, respectively) intake. In cocaine-naïve animals, SERT removal led to reduced baseline Hb mRNA levels of critical determinants of glutamate transmission, such as SLC1A2, the main glutamate transporter and N-methyl-D-aspartate (Grin1, Grin2A and Grin2B) as well as α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (Gria1 and Gria2) receptor subunits, with no changes in the scaffolding protein Dlg4. In response to ShA and LgA cocaine intake, SLC1A2 and Grin1 mRNA levels decreased in SERT<sup>+/+</sup> rats to levels equal of those of SERT<sup>-/-</sup> rats. Our data reveal that increased extracellular levels of 5-HT modulate glutamate neurotransmission in the Hb, serving as critical neurobiological substrate for vulnerability to cocaine addiction."	"Inhibition of GluN2A NMDA receptors ameliorates synaptic plasticity deficits in the Fmr1<sup>-/y</sup> mouse model. Fragile X syndrome (FXS) is a genetic condition that is the most common form of inherited intellectual impairment and causes a range of neurodevelopmental complications including learning disabilities and intellectual disability and shares many characteristics with autism spectrum disorder (ASD). In the FXS mouse model, Fmr1<sup>-/y</sup> , impaired synaptic plasticity was restored by pharmacologically inhibiting GluN2A-containing NMDA receptors but not GluN2B-containing receptors. Similar results were obtained by crossing Fmr1<sup>-/y</sup> with GluN2A knock-out (Grin2A<sup>-/-</sup> ) mice. These results suggest that dampening the elevated levels of GluN2A-containing NMDA receptors in Fmr1<sup>-/y</sup> mice has the potential to restore hyperexcitability of the neural circuitry to (a more) normal-like level of brain activity. NMDA receptors (NMDARs) play important roles in synaptic plasticity at central excitatory synapses, and dysregulation of their function may lead to severe disorders such Fragile X syndrome (FXS). FXS is caused by transcriptional silencing of the FMR1 gene followed by lack of the encoding protein. Here we examined the effects of pharmacological and genetic manipulation of hippocampal NMDAR functions in long-term potentiation (LTP) and depression (LTD). We found impaired NMDAR-dependent LTP in the Fmr1-deficient mice, which could be fully restored when GluN2A-containing NMDARs was pharmacological inhibited. Interestingly, similar LTP effects were observed when the GluN2A gene (Grin2a) was deleted in Fmr1<sup>-/y</sup> mice (Fmr1<sup>-/y</sup> /Grin2a<sup>-/-</sup> double knockout). In addition, GluN2A inhibition improved elevated mGluR5-dependent LTD to normal level in the Fmr1<sup>-/y</sup> mouse. These findings suggest that GluN2A is a promising target in FXS research that could help us better understand the disorder."	"Electrical status epilepticus in sleep, a constitutive feature of Christianson syndrome? Christianson syndrome (CS) is a X-linked neurodevelopmental disorder, including severe intellectual disability (ID), progressive microcephaly, ataxia, autistic behaviour (ASD), near absent speech, and epilepsy. Electrical status epilepticus in sleep (ESES) has been reported in two patients. We describe five male patients from three unrelated families with Christianson syndrome caused by a pathogenic nucleotide variation or a copy-number variation involving SLC9A6. ESES was present in three out of the five patients in the critical age window between 4 and 8 years. All patients presented with severe intellectual disability, autistic features, and hyperactivity. Epilepsy onset occurred within the first two years of life. Seizures were of various types. In the two boys with a 20-years follow-up, epilepsy was drug-resistant during childhood, and became less active in early adolescence. Psychomotor regression was noted in two patients presenting with ESES. It was difficult to assess to what extent ESES could have contributed to the pathophysiological process, leading to regression of the already very limited communication skills. The two published case reports and our observation suggests that ESES could be a constitutive feature of Christianson syndrome, as it has already been shown for other Mendelian epileptic disorders, such as GRIN2A and CNKSR2-related developmental epileptic encephalopathies. Sleep EEG should be performed in patients with Christianson syndrome between 4 and 8 years of age. ESES occurring in the context of ID, ASD and severe speech delay, could be helpful to make a diagnosis of CS."	"Developmental exposure of citreoviridin transiently affects hippocampal neurogenesis targeting multiple regulatory functions in mice. To investigate the developmental exposure effect of citreoviridin (CIT) on postnatal hippocampal neurogenesis, pregnant ICR mice were dietary exposed to CIT at 0, 1, 3 and 10 ppm from gestation day 6 to postnatal day (PND) 21 on weaning. Offspring were maintained through PND 77 without CIT exposure. Male offspring were analyzed. At 10 ppm on PND 21, weak changes suggestive of neural stem cell reduction and progenitor cell proliferation were observed. Number of hilar CALB1<sup>+</sup> interneurons reduced, suggesting an influence on neurogenesis. In contrast, number of hilar SST<sup>+</sup> interneurons increased and Bdnf and Ntrk2 transcripts upregulated in the dentate gyrus, suggesting a facilitation of BDNF-TRKB signaling for progenitor cell proliferation. Transcript expression changes of an outside regulatory system suggested suppressed function of GABAergic interneurons, especially of PVALB<sup>+</sup> interneurons for compensation on neural stem cell reduction. At ≥ 3 ppm, number of ARC<sup>+</sup> mature granule cells increased, and at 10 ppm, number of hilar GRIA1<sup>+</sup> cells increased and Gria2 and Gria3 upregulated, suggesting an operation of AMPA receptor membrane trafficking on the increase of ARC-mediated synaptic plasticity. On PND 77, all the transcript expression changes of the neurogenesis regulatory system except for Grin2d were inverted, suggesting an operation of a homeostatic mechanism on CIT-induced disruptive neurogenesis. Simultaneous downregulation of Grin2a and Grin2d suggests suppression of GABAergic interneuron function to adjust neurogenesis at the normal level. The no-observed-adverse-effect level of CIT for offspring neurogenesis was determined to be 1 ppm, translating to 0.13-0.51 mg/kg body weight/day of maternal oral exposure."	"Selective deletion of glutamine synthetase in the mouse cerebral cortex induces glial dysfunction and vascular impairment that precede epilepsy and neurodegeneration. Glutamate-ammonia ligase (glutamine synthetase; Glul) is enriched in astrocytes and serves as the primary enzyme for ammonia detoxification and glutamate inactivation in the brain. Loss of astroglial Glul is reported in hippocampi of epileptic patients, but the mechanism by which Glul deficiency might cause disease remains elusive. Here we created a novel mouse model by selectively deleting Glul in the hippocampus and neocortex. The Glul deficient mice were born without any apparent malformations and behaved unremarkably until postnatal week three. There were reductions in tissue levels of aspartate, glutamate, glutamine and GABA and in mRNA encoding glutamate receptor subunits GRIA1 and GRIN2A as well as in the glutamate transporter proteins EAAT1 and EAAT2. Adult Glul-deficient mice developed progressive neurodegeneration and spontaneous seizures which increased in frequency with age. Importantly, progressive astrogliosis occurred before neurodegeneration and was first noted in astrocytes along cerebral blood vessels. The responses to CO2-provocation were attenuated at four weeks of age and dilated microvessels were observed histologically in sclerotic areas of cKO. Thus, the abnormal glutamate metabolism observed in this model appeared to cause epilepsy by first inducing gliopathy and disrupting the neurovascular coupling."	"TSPYL2 Regulates the Expression of EZH2 Target Genes in Neurons. Testis-specific protein, Y-encoded-like 2 (TSPYL2) is an X-linked gene in the locus for several neurodevelopmental disorders. We have previously shown that Tspyl2 knockout mice had impaired learning and sensorimotor gating, and TSPYL2 facilitates the expression of Grin2a and Grin2b through interaction with CREB-binding protein. To identify other genes regulated by TSPYL2, here, we showed that Tspyl2 knockout mice had an increased level of H3K27 trimethylation (H3K27me3) in the hippocampus, and TSPYL2 interacted with the H3K27 methyltransferase enhancer of zeste 2 (EZH2). We performed chromatin immunoprecipitation (ChIP)-sequencing in primary hippocampal neurons and divided all Refseq genes by k-mean clustering into four clusters from highest level of H3K27me3 to unmarked. We confirmed that mutant neurons had an increased level of H3K27me3 in cluster 1 genes, which consist of known EZH2 target genes important in development. We detected significantly reduced expression of genes including Gbx2 and Prss16 from cluster 1 and Acvrl1, Bdnf, Egr3, Grin2c, and Igf1 from cluster 2 in the mutant. In support of a dynamic role of EZH2 in repressing marked synaptic genes, the specific EZH2 inhibitor GSK126 significantly upregulated, while the demethylase inhibitor GSKJ4 downregulated the expression of Egr3 and Grin2c. GSK126 also upregulated the expression of Bdnf in mutant primary neurons. Finally, ChIP showed that hemagglutinin-tagged TSPYL2 co-existed with EZH2 in target promoters in neuroblastoma cells. Taken together, our data suggest that TSPYL2 is recruited to promoters of specific EZH2 target genes in neurons, and enhances their expression for proper neuronal maturation and function."	"Altered N-methyl D-aspartate receptor subunit expression causes changes to the circadian clock and cell phenotype in osteoarthritic chondrocytes. The chondrocyte circadian clock is altered in osteoarthritis. This change is implicated in the disease-associated changes in chondrocyte phenotype and cartilage loss. Why the clock is changed is unknown. N-methyl-D-aspartate receptors (NMDAR) are critical for regulating the hypothalamic clock. Chondrocytes also express NMDAR and the type of NMDAR subunits expressed changes in osteoarthritis. To determine if NMDAR regulate the chondrocyte clock and phenotype. Chondrocytes isolated from macroscopically-normal (MN) and osteoarthritic human cartilage were treated with NMDAR antagonists or transfected with GRIN2A or GRIN2B-targetting siRNA. H5 chondrocytes were transfected with GluN2B-expression plasmids. Clock genes and chondrocyte phenotypic markers were measured by RT-qPCR. PER2 amplitude was higher and BMAL1 amplitude lower in osteoarthritic compared to MN chondrocytes. In osteoarthritic chondrocytes, NMDAR inhibition restored PER2 and BMAL1 expression to levels similar to MN chondrocytes, and resulted in reduced MMP13 and COL10A1. Paradoxically, NMDAR inhibition in MN chondrocytes resulted in increased PER2, decreased BMAL1 and increased MMP13 and COL10A1. Osteoarthritic, but not MN chondrocytes expressed GluN2B NMDAR subunits. GluN2B knockdown in osteoarthritic chondrocytes restored expression of circadian clock components and phenotypic markers to levels similar to MN chondrocytes. Ectopic expression of GluN2B resulted in reduced BMAL1, increased PER2 and altered SOX9, RUNX2 and MMP13 expression. Knockdown of PER2 mitigated the effects of GluN2B on SOX9 and MMP13. NMDAR regulate the chondrocyte clock and phenotype suggesting NMDAR may also regulate clocks in other peripheral tissues. GluN2B expression in osteoarthritis may contribute to pathology by altering the chondrocyte clock."	"Genetic etiologies of the electrical status epilepticus during slow wave sleep: systematic review. Electrical status epilepticus during slow-wave sleep (ESESS) which is also known as continuous spike-wave of slow sleep (CSWSS) is type of electroencephalographic (EEG) pattern which is seen in ESESS/CSWSS/epilepsy aphasia spectrum. This EEG pattern can occur alone or with other syndromes. Its etiology is not clear, however, brain malformations, immune disorders, and genetic etiologies are suspected to contribute. We aimed to perform a systematic review of all genetic etiologies which have been reported to associate with ESESS/CSWSS/epilepsy-aphasia spectrum. We further aimed to identify the common underlying pathway which can explain it. To our knowledge, there is no available systematic review of genetic etiologies of ESESS/CSWSS/epilepsy-aphasia spectrum. MEDLINE, EMBASE, PubMed and Cochrane review database were searched, using terms specific to electrical status epilepticus during sleep or continuous spike-wave discharges during slow sleep or epilepsy-aphasia spectrum and of studies of genetic etiologies. These included monogenic mutations and copy number variations (CNVs). For each suspected dosage-sensitive gene, further studies were performed through OMIM and PubMed database. Twenty-six studies out of the 136 identified studies satisfied our inclusion criteria. I51 cases were identified among those 26 studies. 16 studies reported 11 monogenic mutations: SCN2A (N = 6), NHE6/SLC9A6 (N = 1), DRPLA/ ATN1 (N = 1), Neuroserpin/SRPX2 (N = 1), OPA3 (N = 1), KCNQ2 (N = 2), KCNA2 (N = 5), GRIN2A (N = 34), CNKSR2 (N = 2), SLC6A1 (N = 2) and KCNB1 (N = 5). 10 studies reported 89 CNVs including 9 recurrent ones: Xp22.12 deletion encompassing CNKSR2 (N = 6), 16p13 deletion encompassing GRIN2A (N = 4), 15q11.2-13.1 duplication (N = 15), 3q29 duplication (N = 11), 11p13 duplication (N = 2), 10q21.3 deletion (N = 2), 3q25 deletion (N = 2), 8p23.3 deletion (N = 2) and 9p24.2 (N = 2). 68 of the reported genetic etiologies including monogenic mutations and CNVs were detected in patients with ESESS/CSWSS/epilepsy aphasia spectrum solely. The most common underlying pathway was channelopathy (N = 56). Our review suggests that genetic etiologies have a role to play in the occurrence of ESESS/CSWSS/epilepsy-aphasia spectrum. The common underlying pathway is channelopathy. Therefore we propose more genetic studies to be done for more discoveries which can pave a way for proper drug identification. We also suggest development of common cut-off value for spike-wave index to ensure common language among clinicians and researchers."	"Segregating polymorphism in the NMDA receptor gene GRIN2A, schizotypy, and mental rotation among healthy individuals. Common alleles associated with psychiatric disorders are often regarded as deleterious genes that influence vulnerability to disease, but they may also be considered as mediators of variation in adaptively structured cognitive phenotypes among healthy individuals. The schizophrenia-associated gene GRIN2A (glutamate ionotropic receptor NMDA type subunit 2a) codes for a protein subunit of the NMDA (N-methyl-D-aspartate) receptor that underlies central aspects of human cognition. Pharmacological NMDA blockage recapitulates the major features of schizophrenia in human subjects, and represents a key model for the neurological basis of this disorder. We genotyped two functional GRIN2A polymorphisms in a large population of healthy individuals who were scored for schizotypy and mental imagery/manipulation (the mental rotation test). Rare-allele homozygosity of the promoter microsatellite rs3219790 was associated with high total schizotypy (after adjustment for multiple comparisons) and with enhanced mental rotation ability (nominally, but not after adjustment for multiple comparisons), among males. These findings provide preliminary evidence regarding a genetic basis to previous reports of enhanced mental imagery in schizophrenia and schizotypy. The results also suggest that some schizophrenia-related alleles may be subject to cognitive tradeoffs involving both positive and negative effects on psychological phenotypes, which may help to explain the maintenance of psychiatric-disorder risk alleles in human populations."	"Silver Nanoparticle Exposure Induces Neurotoxicity in the Rat Hippocampus Without Increasing the Blood-Brain Barrier Permeability. Silver nanoparticles (Ag-NPs) can enter the brain and subsequently induce neurotoxicity. However, the toxicity of Ag-NPs on the blood-brain barrier (BBB) and the underlying mechanism(s) of action on the hippocampus in vivo are not well understood. To investigate Ag-NP suspension (Ag-NPS)-induced toxicity on the BBB and neurons, Sprague-Dawley rats were randomly divided into 3 groups, and Ag-NPS, Ag-ion, and 5% sucrose solution (vehicle control) were administrated intravenously, respectively. After 24 h exposure to Ag-NPS, the BBB permeability was not significantly changed. However, the Ag concentrations in the brain tissues were only detected in the Ag-NPS group. Gene expression results indicated that the expression of Claudin 4 (tight junction protein) was significantly decreased. Furthermore, astrocyte foot swelling, neuron shrinkage and Ag-NP like particles were observed under transmission electron microscopy. Global gene expression analysis showed that 502 genes were up-regulated and 703 genes were down-regulated in the hippocampi treated with Ag-NPS. In the Ag-NPS-treated group, 78 biological functions were changed based on gene ontology (GO) and 34 signaling pathways were significantly changed using Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis, which were associated with the neuroactive ligand-receptor interaction, cytokine-cytokine receptor interaction, calcium signaling pathway and MAPK signaling pathway. In comparison, 27 GO and 9 KEGG pathways were changed in the released Ag-ion-treated group. Ag-NPS decreased C1qtnf3 expression and increased Adra1d expression to affect MAPK signaling pathway, which promoted inflammation and apoptosis in the hippocampus. Moreover, Ag-NPS significantly increased Spp1, Cacna1s and Tacr3 mRNAs expression, which may result in intracellular calcium increasing and initiate cell death. Furthermore, Ag-NPS affected calcium signaling pathway and neuroactive ligand-receptor (Grin2a, Drd2, and Adra1d), which are crucial in diverse cellular functions in the brain including cognition and neurodevelopment. These results draw our attention to the importance of Ag-NP-induced toxicity in the rat hippocampus and provide a better understanding of its toxicological mechanisms in vivo."	"[Study of GRIN2A mutation in epilepsy-aphasia spectrum disorders]. To detect potential mutations of the glutamate receptor subunit (GRIN2A) gene and delineate the clinical-genetic characteristics of patients with epilepsy-aphasia spectrum (EAS) disorders. One hundred twenty two patients with Landau-Kleffner syndrome (LKS), epileptic encephalopathy with continuous spike-and-wave during sleep (CSWS), benign childhood epilepsy with centrotemporal spikes (BECT) and BECT variants were recruited. Potential mutations of the GRIN2A gene were screened with Sanger sequencing. And clinical-genetic characteristics for all patients were analyzed. The patients have included 9 LKS, 26 CSWS, 42 BECT variants and 45 BECT. The mean age of onset of seizure or aphasia was 5 years old (10 months to 11 years). Mutation screening has detected 4 possible pathogenic missense mutations including c.2278G&gt;A (p.G760S), c.4153G&gt;T (p.D1385Y), c.1364G&gt;A (p.C455Y) and c.691T&gt;C (p.C231R) in four unrelated probands, which comprised one case with LKS and three with BECT variants. The mutation rate was 11.1% (1/9) for LKS and 7.2% (3/42) for BECT variants. No GRIN2A mutation was found in the 26 patients with CSWS and 45 patients with BECT. Among the 122 probands, 25 (20.5%) patients without a GRIN2A mutation had a positive family history of febrile seizures or epilepsy. GRIN2A mutation do exist in EAS patients, but with a relatively low rate. A proportion of EAS patients without a GRIN2A mutation have a positive family history, which suggested a complex mechanism for EAS."	"Diagnostic yield of targeted massively parallel sequencing in children with epileptic encephalopathy. To report our institutional experience of targeted massively parallel sequencing (MPS) testing in children with epilepsy. We retrospectively analysed the yield of targeted epileptic encephalopathy (EE) panel of 71 known EE genes in patients with epilepsy of unknown cause, who underwent clinical triage by a group of neurologists prior to the testing. We compared cost of the EE panel approach compared to traditional evaluation in patients with identified pathogenic variants. The yield of pathogenic variants was 28.5% (n = 30/105), highest in early onset EE &lt;3 months including Ohtahara syndrome (52%, n = 10/19) and lowest in generalized epilepsy (0/17). Patients identified with pathogenic variants had earlier onset of seizures (median 3.6 m vs 1.1y, p &lt; 0.001, OR 0.6/year, P &lt; 0.02) compared to those without pathogenic variants. Pathogenic/likely pathogenic variants were found in ALDH7A1 (2), CACNA1A (1), CDKL5 (3), FOXG1 (2), GABRB3 (1), GRIN2A (1), KCNQ2 (4), KCNQ3 (1), PRRT2 (1), SCN1A (6), SCN2A (2), SCN8A (2), SYNGAP1 (1), UBE3A (2) and WWOX (1) genes. This study expands the inheritance pattern caused by KCNQ3 mutations to include an autosomal recessive severe phenotype with neonatal seizures and severe developmental delay. The average cost of etiological evaluation was less with early use of EE panel compared to the traditional investigation approach ($5990 Australian dollars (AUD) vs $13069 AUD ; p = 0.02) among the patients with identified pathogenic variants. Targeted MPS testing is a comprehensive and economical investigation that enables early genetic diagnosis in children with EE. Careful clinical triage and selection of patients with young onset EE may maximize the yield of EE panel testing."	"Identification of new risk factors for rolandic epilepsy: CNV at Xp22.31 and alterations at cholinergic synapses. Rolandic epilepsy (RE) is the most common genetic childhood epilepsy, consisting of focal, nocturnal seizures and frequent neurodevelopmental impairments in speech, language, literacy and attention. A complex genetic aetiology is presumed in most, with monogenic mutations in GRIN2A accounting for &gt;5% of cases. To identify rare, causal CNV in patients with RE. We used high-density SNP arrays to analyse the presence of rare CNVs in 186 patients with RE from the UK, the USA, Sardinia, Argentina and Kerala, India. We identified 84 patients with one or more rare CNVs, and, within this group, 14 (7.5%) with recurrent risk factor CNVs and 15 (8.0%) with likely pathogenic CNVs. Nine patients carried recurrent hotspot CNVs including at 16p13.11 and 1p36, with the most striking finding that four individuals (three from Sardinia) carried a duplication, and one a deletion, at Xp22.31. Five patients with RE carried a rare CNV that disrupted genes associated with other epilepsies (KCTD7, ARHGEF15, CACNA2D1, GRIN2A and ARHGEF4), and 17 cases carried CNVs that disrupted genes associated with other neurological conditions or that are involved in neuronal signalling/development. Network analysis of disrupted genes with high brain expression identified significant enrichment in pathways of the cholinergic synapse, guanine-exchange factor activation and the mammalian target of rapamycin. Our results provide a CNV profile of an ethnically diverse cohort of patients with RE, uncovering new areas of research focus, and emphasise the importance of studying non-western European populations in oligogenic disorders to uncover a full picture of risk variation."	"Incorporating epilepsy genetics into clinical practice: a 360°evaluation. We evaluated a new epilepsy genetic diagnostic and counseling service covering a UK population of 3.5 million. We calculated diagnostic yield, estimated clinical impact, and surveyed referring clinicians and families. We costed alternative investigational pathways for neonatal onset epilepsy. Patients with epilepsy of unknown aetiology onset &lt; 2 years; treatment resistant epilepsy; or familial epilepsy were referred for counseling and testing. We developed NGS panels, performing clinical interpretation with a multidisciplinary team. We held an educational workshop for paediatricians and nurses. We sent questionnaires to referring paediatricians and families. We analysed investigation costs for 16 neonatal epilepsy patients. Of 96 patients, a genetic diagnosis was made in 34% of patients with seizure onset &lt; 2 years, and 4% &gt; 2 years, with turnaround time of 21 days. Pathogenic variants were seen in SCN8A, SCN2A, SCN1A, KCNQ2, HNRNPU, GRIN2A, SYNGAP1, STXBP1, STX1B, CDKL5, CHRNA4, PCDH19 and PIGT. Clinician prediction was poor. Clinicians and families rated the service highly. In neonates, the cost of investigations could be reduced from £9362 to £2838 by performing gene panel earlier and the median diagnostic delay of 3.43 years reduced to 21 days. Panel testing for epilepsy has a high yield among children with onset &lt; 2 years, and an appreciable clinical and financial impact. Parallel gene testing supersedes single gene testing in most early onset cases that do not show a clear genotype-phenotype correlation. Clinical interpretation of laboratory results, and in-depth discussion of implications for patients and their families, necessitate multidisciplinary input and skilled genetic counseling."	"Protective influences of N-acetylcysteine against alcohol abstinence-induced depression by regulating biochemical and GRIN2A, GRIN2B gene expression of NMDA receptor signaling pathway in rats. Evidences have indicated a high degree of comorbidity of alcoholism and depression. N-acetylcysteine (NAC) has shown its clinical efficiency in the treatment of several psychiatric disorders and is identified as a multi-target acting drug. The ability of NAC to prevent alcohol abstinence-induced depression-like effects and underlying mechanism(s) have not been adequately addressed. This study was aimed to investigate the beneficial effects of NAC in the alcohol abstinence-induced depression developed following long-term voluntary alcohol intake. For evaluation of the effects of NAC, Sprague-Dawley rats were enabled to voluntary drinking of 4.5%, 7.5% and 9% v/v alcohol for fifteen days. NAC (25, 50, and 100 mg/kg) and fluoxetine (5 mg/kg) were injected intraperitoneally for three consecutive days during the alcohol abstinence period on the days 16, 17, 18. The behavioral studies were conducted employing forced swim test (FST), and tail suspension test (TST) on day 18 to determine the effects of N-acetylcysteine and fluoxetine in the ethanol withdrawal induced-depression. Blood alcohol concentration, alcohol biomarkers like SGPT, SGOT, ALP, GGT, and MCV were estimated by using commercially available kits. Serotonin concentrations were measured in the plasma, hippocampus and pre-frontal cortex using the rat ELISA kit. The expression of GRIN1, GRIN2A, GRIN2B genes for the N-methyl d-aspartate receptors (NMDAR) subunits in the hippocampus and the prefrontal cortex were also examined by reverse-transcription quantitative polymerase chain reaction. The results revealed that alcohol abstinence group depicted increased immobility time in FST and TST. Further, NAC exerted significant protective effect at the doses 50 mg/kg and 100 mg/kg, but 25 mg/kg showed insignificant protection against alcohol abstinence-induced depression. The increased level of biochemical parameters following ethanol abstinence were also reversed by NAC at the dose of 100 mg/kg. The significant reversal effect of NAC on the serotonin level following alcohol abstinence was greater in the hippocampus as compared to the third-day alcohol withdrawal group. The increased expression levels of GRIN2A and GRIN2B following ethanol abstinence were reversed with a higher dose of NAC (100 mg/kg) treatment. In conclusion, the results of the study reveal that NAC has remarkable protective effects in the alcohol abstinence-induced depression by modulating alcohol markers, serotonin levels and GRIN2A, GRIN2B gene expression of NMDAR signaling pathway in rats."	"The impact of body mass index in gene expression of reelin pathway mediators in individuals with schizophrenia and mood disorders: A post-mortem study. The objective of this study was to compare the expression of genes involved in the reelin pathway, in the post-mortem brain of individuals with schizophrenia (SZ) and mood disorders (MD) with a healthy control (HC) group; and to investigate the role f body mass index (BMI) as a potential mediator. The &quot;Gene Expression in Postmortem dlPFC and Hippocampus from Schizophrenia and Mood Disorders&quot; study holds microarray data on individuals with SZ, MD and HCs (from whom 849 specimens are from the dlPFC and 579 from the hippocampus). mRNA data was obtained using HumanHT-12 v4 BeadChip arrays (Illumina). Multivariate analysis of covariance were used to investigate the main effects of group and relevant covariates on RELNm, NOTCH1, GRIN1m, GRIN3A, CAMK2Gm, CAMK2A, CAMK2Bm, CAMK2N2, GRIN2Bm, GRIN2A, CREBBPm, APOE, LDLR and DAB1 gene expression. In the dlPFC, individuals with SZ had higher expression, relative to HCs, of APOE. Individuals with MD had higher expression, relative to HCs, of CAMK2A, CAMK2N2, and GRIN2Bm. Moreover, individuals with MD had higher expression, relative to SZ patients, of CAMK2N2. There were significant group by BMI effects for expression of RELN, CAMK2A, CAMK2N2, and GRIN2A. In the hippocampus, individuals with MD had lower expression, relative to HCs, of APOE. The results of this study suggest that the expression of genes related to the reelin pathway could be different between individuals with SZ and MD and healthy controls, with a greater vulnerability associated with greater BMI."	"Genetic polymorphisms of GRIN2A and GRIN2B modify the neurobehavioral effects of low-level lead exposure in children. Lead (Pb) is neurotoxic and children are highly susceptible to this effect, particularly within the context of continuous low-level Pb exposure. A current major challenge is identification of children who may be uniquely susceptible to Pb toxicity because of genetic predisposition. Learning and memory are among the neurobehavioral processes that are most notably affected by Pb exposure, and modification of N-methyl-D-aspartate receptors (NMDAR) that regulate these processes during development are postulated to underlie these adverse effects of Pb. We examined the hypothesis that polymorphic variants of genes encoding glutamate receptor, ionotropic, NMDAR subunits 2A and 2B, GRIN2A and GRIN2B, exacerbate the adverse effects of Pb exposure on these processes in children. Participants were subjects who participated as children in the Casa Pia Dental Amalgam Clinical Trial and for whom baseline blood Pb concentrations and annual neurobehavioral test results over the 7 year course of the clinical trial were available. Genotyping assays were performed for variants of GRIN2A (rs727605 and rs1070503) and GRIN2B (rs7301328 and rs1806201) on biological samples acquired from 330 of the original 507 trial participants. Regression modeling strategies were employed to evaluate the association between genotype status, Pb exposure, and neurobehavioral test outcomes. Numerous significant adverse interaction effects between variants of both GRIN2A and GRIN2B, individually and in combination, and Pb exposure were observed particularly among boys, preferentially within the domains of Learning &amp; Memory and Executive Function. In contrast, very few interaction effects were observed among similarly genotyped girls with comparable Pb exposure. These findings support observations of an essential role of GRIN2A and GRIN2B on developmental processes underlying learning and memory as well as other neurological functions in children and demonstrate, further, modification of Pb effects on these processes by specific variants of both GRIN2A and GRIN2B genes. These observations highlight the importance of genetic factors in defining susceptibility to Pb neurotoxicity and may have important public health implications for future strategies aimed at protecting children and adolescents from potential health risks associated with low-level Pb exposure."	"A novel missense mutation in GRIN2A causes a nonepileptic neurodevelopmental disorder. Mutations in the GRIN2A gene, which encodes the GluN2A (glutamate [NMDA] receptor subunit epsilon-1) subunit of the N-methyl-d-aspartate receptor, have been identified in patients with epilepsy-aphasia spectrum disorders, idiopathic focal epilepsies with centrotemporal spikes, and epileptic encephalopathies with severe developmental delay. However, thus far, mutations in this gene have not been associated with a nonepileptic neurodevelopmental disorder with dystonia. The objective of this study was to identify the disease-causing gene in 2 siblings with neurodevelopmental and movement disorders with no epileptiform abnormalities. The study method was targeted next-generation sequencing panel for neuropediatric disorders and subsequent electrophysiological studies. The 2 siblings carry a novel missense mutation in the GRIN2A gene (p.Ala643Asp) that was not detected in genomic DNA isolated from blood cells of their parents, suggesting that the mutation is the consequence of germinal mosaicism in 1 progenitor. In functional studies, the GluN2A-A643D mutation increased the potency of the agonists L-glutamate and glycine and decreased the potency of endogenous negative modulators, including protons, magnesium and zinc but reduced agonist-evoked peak current response in mammalian cells, suggesting that this mutation has a mixed effect on N-methyl-d-aspartate receptor function. De novo GRIN2A mutations can give rise to a neurodevelopmental and movement disorder without epilepsy. © 2018 International Parkinson and Movement Disorder Society."	"Voluntary Exercise During Adolescence Mitigated Negative the Effects of Maternal Separation Stress on the Depressive-Like Behaviors of Adult Male Rats: Role of NMDA Receptors. Evidence indicates that experiencing early-life stress (ELS) is a risk factor for the development of mental disorders such as depression. Maternal separation stress (MS) is a valid animal model of ELS that caused to induce long-lasting effects on the brain and behaviors of animals. It hypothesized that adolescence is a critical stage in which the brain is still developing, and applying (non)pharmacological therapies in this period may attenuate the effects of ELS on the brain and behavior. Male rats were subjected to MS from postnatal day (PND) 2-14, and the stressed animals were then treated with (1) chronic fluoxetine (FLX) (5 mg/kg) and (2) voluntary running wheel exercise (RW) from PND 30, for 30 days. Then, we subjected the animals to behavioral and molecular assessments at PND 60. Our data showed that MS provoked depressive-like behaviors in rats, tested by the forced swimming test, splash test, and sucrose preference test. Additionally, we found that MS increased the gene expression of the NR2A (and not NR2B) subunit of N-methyl-D-aspartate (NMDA) receptors in the hippocampus of adult rats. Both FLX and RW treatments during adolescence were able to mitigate the negative effects of ELS on stressed animals. These results highlighted the importance of adolescence in treating stressed animals with FLX/voluntary RW exercise to alleviate the depressive effects of ELS. In addition, we found that ELS altered the transcriptional level of Grin2a (and not Grin2b) in the hippocampus. Finally, our results showed that FLX/voluntary RW exercise during adolescence could normalize altered expression of Grin2a in the hippocampus of adult rats."	"HIPK2-Mediated Transcriptional Control of NMDA Receptor Subunit Expression Regulates Neuronal Survival and Cell Death. NMDA receptors are critical for neuronal communication. Dysfunction in NMDA receptors has been implicated in neuropsychiatric diseases. While it is well recognized that the composition of NMDA receptors undergoes a GluN2B-to-GluN2A switch in early postnatal life, the mechanism regulating this switch remains unclear. Using transcriptomic and functional analyses in brain tissues from male and female Hipk2<sup>+/+</sup> and Hipk2<sup>-/-</sup> mice, we showed that the HIPK2-JNK-c-Jun pathway is important in suppressing the transcription of Grin2a and Grin2c, which encodes the GluN2A and GluN2C subunits of the NMDA receptors, respectively. Loss of HIPK2 leads to a significant decrease in JNK-c-Jun signaling, which in turn derepresses the transcription of Grin2a and Grin2c mRNA and upregulates GluN2A and GluN2C protein levels. These changes result in a significant increase of GluN2A/GluN2B ratio in synapse and mitochondria, a persistent activation of the ERK-CREB pathway and the upregulation of synaptic activity-regulated genes, which collectively contribute to the resistance of Hipk2<sup>-/-</sup> neurons to cell death induced by mitochondrial toxins.SIGNIFICANCE STATEMENT We identify HIPK2-JNK-c-Jun signaling as a key mechanism that regulates the transcription of NMDA receptor subunits GluN2A and GluN2C in vivo Our results provide insights into a previously unrecognized molecular mechanism that control the switch of NMDA receptor subunits in early postnatal brain development. Furthermore, we provide evidence that changes in the ratio of NMDA subunits GluN2A/GluN2B can also be detected in the synapse and mitochondria, which contributes to a persistent activation of the prosurvival ERK-CREB pathway and its downstream target genes. Collectively, these changes protect HIPK2 deficient neurons from mitochondrial toxins."	"Identification and analysis of hub genes and networks related to hypoxia preconditioning in mice (No 035215). Hypoxia preconditioning is an effective strategy of intrinsic cell protection. An acute repetitive hypoxic mice model was developed. High-throughput microarray analysis was performed to explore the integrative alterations of gene expression in repetitive hypoxic mice. Data obtained was analyzed via multiple bioinformatics approaches to identify the hub genes, pathways and biological processes related to hypoxia preconditioning. The current study, for the first time, provides insights into the gene expression profiles in repetitive hypoxic mice. It was found that a total of 1175 genes expressed differentially between the hypoxic mice and normal mice. Overall, 113 significantly up-regulated and 138 significantly down-regulated functions were identified from the differentially expressed genes in repetitive hypoxic brains. Among them, at least fourteen of these genes were very associated with hypoxia preconditioning. The change trends of these genes were validated by reverse-transcription polymerase chain reaction and were found to be consistent with the microarray data. Combined the results of pathway and gene co-expression networks, we defined Plcb1, Cacna2d1, Atp2b4, Grin2a, Grin2b and Glra1 as the main hub genes tightly related with hypoxia preconditioning. The differential functions mainly included the mitogen-activated protein kinase pathway and ion or neurotransmitter transport. The multiple reactions in cell could be initiated by activating MAPK pathway to prevent hypoxia damage. Plcb1 was an important and hub gene and node in the hypoxia preconditioning signal networks. The findings in the hub genes and integrated gene networks provide very useful information for further exploring the molecular mechanisms of hypoxia preconditioning."	"Divergence in problem-solving skills is associated with differential expression of glutamate receptors in wild finches. Problem solving and innovation are key components of intelligence. We compare wild-caught individuals from two species that are close relatives of Darwin's finches, the innovative Loxigilla barbadensis, and its most closely related species in Barbados, the conservative Tiaris bicolor. We found an all-or-none difference in the problem-solving capacity of the two species. Brain RNA sequencing analyses revealed interspecific differences in genes related to neuronal and synaptic plasticity in the intrapallial neural populations (mesopallium and nidopallium), especially in the nidopallium caudolaterale, a structure functionally analogous to the mammalian prefrontal cortex. At a finer scale, we discovered robust differences in glutamate receptor expression between the species. In particular, the GRIN2B/GRIN2A ratio, known to correlate with synaptic plasticity, was higher in the innovative L. barbadensis. These findings suggest that divergence in avian intelligence is associated with similar neuronal mechanisms to that of mammals, including humans."	"Social deficits in Shank3-deficient mouse models of autism are rescued by histone deacetylase (HDAC) inhibition. Haploinsufficiency of the SHANK3 gene is causally linked to autism spectrum disorder (ASD), and ASD-associated genes are also enriched for chromatin remodelers. Here we found that brief treatment with romidepsin, a highly potent class I histone deacetylase (HDAC) inhibitor, alleviated social deficits in Shank3-deficient mice, which persisted for ~3 weeks. HDAC2 transcription was upregulated in these mice, and knockdown of HDAC2 in prefrontal cortex also rescued their social deficits. Nuclear localization of β-catenin, a Shank3-binding protein that regulates cell adhesion and transcription, was increased in Shank3-deficient mice, which induced HDAC2 upregulation and social deficits. At the downstream molecular level, romidepsin treatment elevated the expression and histone acetylation of Grin2a and actin-regulatory genes and restored NMDA-receptor function and actin filaments in Shank3-deficient mice. Taken together, these findings highlight an epigenetic mechanism underlying social deficits linked to Shank3 deficiency, which may suggest potential therapeutic strategies for ASD patients bearing SHANK3 mutations."	"Immediate Early Genes Anchor a Biological Pathway of Proteins Required for Memory Formation, Long-Term Depression and Risk for Schizophrenia. While the causes of myriad medical and infectious illnesses have been identified, the etiologies of neuropsychiatric illnesses remain elusive. This is due to two major obstacles. First, the risk for neuropsychiatric disorders, such as schizophrenia, is determined by both genetic and environmental factors. Second, numerous genes influence susceptibility for these illnesses. Genome-wide association studies have identified at least 108 genomic loci for schizophrenia, and more are expected to be published shortly. In addition, numerous biological processes contribute to the neuropathology underlying schizophrenia. These include immune dysfunction, synaptic and myelination deficits, vascular abnormalities, growth factor disruption, and N-methyl-D-aspartate receptor (NMDAR) hypofunction. However, the field of psychiatric genetics lacks a unifying model to explain how environment may interact with numerous genes to influence these various biological processes and cause schizophrenia. Here we describe a biological cascade of proteins that are activated in response to environmental stimuli such as stress, a schizophrenia risk factor. The central proteins in this pathway are critical mediators of memory formation and a particular form of hippocampal synaptic plasticity, long-term depression (LTD). Each of these proteins is also implicated in schizophrenia risk. In fact, the pathway includes four genes that map to the 108 loci associated with schizophrenia: GRIN2A, nuclear factor of activated T-cells (NFATc3), early growth response 1 (EGR1) and NGFI-A Binding Protein 2 (NAB2); each of which contains the &quot;Index single nucleotide polymorphism (SNP)&quot; (most SNP) at its respective locus. Environmental stimuli activate this biological pathway in neurons, resulting in induction of EGR immediate early genes: EGR1, EGR3 and NAB2. We hypothesize that dysfunction in any of the genes in this pathway disrupts the normal activation of Egrs in response to stress. This may result in insufficient electrophysiologic, immunologic, and neuroprotective, processes that these genes normally mediate. Continued adverse environmental experiences, over time, may thereby result in neuropathology that gives rise to the symptoms of schizophrenia. By combining multiple genes associated with schizophrenia susceptibility, in a functional cascade triggered by neuronal activity, the proposed biological pathway provides an explanation for both the polygenic and environmental influences that determine the complex etiology of this mental illness."	"Implication of Genes for the N-Methyl-D-Aspartate (NMDA) Receptor in Substance Addictions. Drug dependence is a chronic brain disease with harmful consequences for both individual users and society. Glutamate is a primary excitatory neurotransmitter in the brain, and both in vivo and in vitro experiments have implicated N-methyl-D-aspartate (NMDA) receptor, a glutamate receptor, as an element in various types of addiction. Recent findings from genetics-based approaches such as genome-wide linkage, candidate gene association, genome-wide association (GWA), and next-generation sequencing have demonstrated the significant association of NMDA receptor subunit genes such as GluN3A, GluN2B, and GluN2A with various addiction-related phenotypes. Of these genes, GluN3A has been the most studied, and it has been revealed to play crucial roles in the etiology of addictions. In this communication, we provide an updated view of the genetic effects of NMDA receptor subunit genes and their functions in the etiology of addictions based on the findings from investigation of both common and rare variants as well as SNP-SNP interactions. To better understand the molecular mechanisms underlying addiction-related behaviors and to promote the development of specific medicines for the prevention and treatment of addictions, current efforts aim not only to identify more causal variants in NMDA receptor subunits by using large independent samples but also to reveal the molecular functions of these variants in addictions."	"Exome-wide analysis of mutational burden in patients with typical and atypical Rolandic epilepsy. Rolandic epilepsy (RE) is the most common focal epilepsy in childhood. To date no hypothesis-free exome-wide mutational screen has been conducted for RE and atypical RE (ARE). Here we report on whole-exome sequencing of 194 unrelated patients with RE/ARE and 567 ethnically matched population controls. We identified an exome-wide significantly enriched burden for deleterious and loss-of-function variants only for the established RE/ARE gene GRIN2A. The statistical significance of the enrichment disappeared after removing ARE patients. For several disease-related gene-sets, an odds ratio &gt;1 was detected for loss-of-function variants."	"Interaction between caffeine and polymorphisms of glutamate ionotropic receptor NMDA type subunit 2A (GRIN2A) and cytochrome P450 1A2 (CYP1A2) on Parkinson's disease risk. Caffeine intake has been inversely associated with Parkinson's disease (PD) risk. This relationship may be modified by polymorphisms of glutamate ionotropic receptor NMDA type subunit 2A (GRIN2A) and cytochrome P450 1A2 (CYP1A2), but the results of previous studies have been inconsistent. We examined the interaction of caffeine intake with GRIN2A-rs4998386 and CYP1A2-rs762551 polymorphisms in influencing PD risk among 829 incident cases of PD and 2,754 matched controls selected among participants in the following 3 large prospective ongoing cohorts: the Nurses' Health Study, the Health Professionals' Follow-up Study, and the Cancer Prevention Study II Nutrition Cohort. Matching factors included cohort, birth year, source of DNA, date of DNA collection, and race. Relative risks and 95% confidence intervals were estimated using conditional logistic models. Interactions were tested both on the multiplicative scale and on the additive scale. Overall, caffeine intake was associated with a lower PD risk (adjusted relative risk for highest versus lowest tertile = 0.70; 95% confidence interval, 0.57-0.86; p &lt; .001). In analyses stratified by the GRIN2A-rs4998386 genotype, the multivariable-adjusted relative risk of PD comparing the highest to the lowest tertile of caffeine was 0.69 (95% confidence interval, 0.55-0.88; p &lt; .01) among individuals homozygous for the C allele, and 0.85 (95% confidence interval, 0.55-1.32; p = .47; pRERI = .43) among carriers for the T allele. Interactions between caffeine and GRIN2A were not significant in either the multiplicative or additive scales. We also did not observe significant interactions for CYP1A2-rs762551 and incident PD risk. Our findings do not support the hypothesis of an interaction between the GRIN2A-rs4998386 or CYP1A2-rs762551 polymorphism and caffeine intake in determining PD risk. © 2018 International Parkinson and Movement Disorder Society."	"Rare loss of function mutations in N-methyl-D-aspartate glutamate receptors and their contributions to schizophrenia susceptibility. In schizophrenia (SCZ) and autism spectrum disorder (ASD), the dysregulation of glutamate transmission through N-methyl-D-aspartate receptors (NMDARs) has been implicated as a potential etiological mechanism. Previous studies have accumulated evidence supporting NMDAR-encoding genes' role in etiology of SCZ and ASD. We performed a screening study for exonic regions of GRIN1, GRIN2A, GRIN2C, GRIN2D, GRIN3A, and GRIN3B, which encode NMDAR subunits, in 562 participates (370 SCZ and 192 ASD). Forty rare variants were identified including 38 missense, 1 frameshift mutation in GRIN2C and 1 splice site mutation in GRIN2D. We conducted in silico analysis for all variants and detected seven missense variants with deleterious prediction. De novo analysis was conducted if pedigree samples were available. The splice site mutation in GRIN2D is predicted to result in intron retention by minigene assay. Furthermore, the frameshift mutation in GRIN2C and splice site mutation in GRIN2D were genotyped in an independent sample set comprising 1877 SCZ cases, 382 ASD cases, and 2040 controls. Both of them were revealed to be singleton. Our study gives evidence in support of the view that ultra-rare variants with loss of function (frameshift, nonsense or splice site) in NMDARs genes may contribute to possible risk of SCZ."	"Targeted next-generation sequencing provides novel clues for associated epilepsy and cardiac conduction disorder/SUDEP. Sudden unexpected death in epilepsy is an unpredicted condition in patients with a diagnosis of epilepsy, and autopsy does not conclusively identify cause of death. Although the pathophysiological mechanisms that underlie this entity remain unknown, the fact that epilepsy can affect cardiac function is not surprising. The genetic factors involving ion channels co-expressed in the heart and brain and other candidate genes have been previously described. In the present study, 20 epilepsy patients with personal or family history of heart rhythm disturbance/cardiac arrhythmias/sudden death were sequenced using a custom re-sequencing panel. Twenty-six relatives were genetically analysed to ascertain the family segregation in ten individuals. Four subjects revealed variants with positive genotype-phenotype segregation: four missense variants in the CDKL5, CNTNAP2, GRIN2A and ADGRV1 genes and one copy number variant in KCNQ1. The potential pathogenic role of variants in new candidate genes will need further studies in larger cohorts, and the evaluation of the potential pathogenic role in the cardio-cerebral mechanisms requires in vivo/in vitro studies. In addition to family segregation, evaluation of the potential pathogenic roles of these variants in cardio-cerebral mechanisms by in vivo/in vitro studies should also be performed. The potential pathogenic role of variants in new candidate genes will need further studies in larger cohorts."	"THC Treatment Alters Glutamate Receptor Gene Expression in Human Stem Cell-Derived Neurons. Given the cognitive and behavioral effects following in utero Δ9-tetrahydrocannabinol (THC) exposure that have been reported in humans and rodents, it is critical to understand the precise consequences of THC on developing human neurons. Here, we utilize excitatory neurons derived from human-induced pluripotent stem cells (hiPSCs), and report that in vitro THC exposure reduced expression of glutamate receptor subunit genes (GRIA1, GRIA2, GRIN2A, and GRIN2B). By expanding these studies across hiPSC-derived neurons from individuals with a variety of genotypes, we believe that a hiPSC-based model will facilitate studies of the interaction of THC exposure and the genetic risk factors underlying neuropsychiatric disease vulnerability."	"The Modulation of NMDA and AMPA/Kainate Receptors by Tocotrienol-Rich Fraction and Α-Tocopherol in Glutamate-Induced Injury of Primary Astrocytes. Astrocytes are known as structural and supporting cells in the central nervous system (CNS). Glutamate, as a main excitatory amino acid neurotransmitter in the mammalian central nervous system, can be excitotoxic, playing a key role in many chronic neurodegenerative diseases. The aim of the current study was to elucidate the potential of vitamin E in protecting glutamate-injured primary astrocytes. Hence, primary astrocytes were isolated from mixed glial cells of C57BL/6 mice by applying the EasySep<sup>®</sup> Mouse CD11b Positive Selection Kit, cultured in Dulbecco's modified Eagle medium (DMEM) and supplemented with special nutrients. The IC20 and IC50 values of glutamate, as well as the cell viability of primary astrocytes, were assessed with 100 ng/mL, 200 ng/mL, and 300 ng/mL of tocotrienol-rich fraction (TRF) and alpha-tocopherol (α-TCP), as determined by an 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay. The mitochondrial membrane potential (MMP) detected in primary astrocytes was assessed with the same concentrations of TRF and α-TCP. The expression levels of the ionotropic glutamate receptor genes (Gria2, Grin2A, GRIK1) were independently determined using RT-PCR. The purification rate of astrocytes was measured by a flow-cytometer as circa 79.4%. The IC20 and IC50 values of glutamate were determined as 10 mM and 100 mM, respectively. Exposure to 100 mM of glutamate in primary astrocytes caused the inhibition of cell viability of approximately 64.75% and 61.10% in pre- and post-study, respectively (p &lt; 0.05). Both TRF and α-TCP (at the lowest and highest concentrations, respectively) were able to increase the MMP to 88.46% and 93.31% pre-treatment, and 78.43% and 81.22% post-treatment, respectively. Additionally, the findings showed a similar pattern for the expression level of the ionotropic glutamate receptor genes. Increased extracellular calcium concentrations were also observed, indicating that the presence of vitamin E altered the polarization of astrocytes. In conclusion, α-TCP showed better recovery and prophylactic effects as compared to TRF in the pre-treatment of glutamate-injured primary astrocytes."	"Epigenetic control of epilepsy target genes contributes to a cellular memory of epileptogenesis in cultured rat hippocampal neurons. Hypersynchronous neuronal excitation manifests clinically as seizure (ictogenesis), and may recur spontaneously and repetitively after a variable latency period (epileptogenesis). Despite tremendous research efforts to describe molecular pathways and signatures of epileptogenesis, molecular pathomechanisms leading to chronic epilepsy remain to be clarified. We hypothesized that epigenetic modifications may form the basis for a cellular memory of epileptogenesis, and used a primary neuronal cell culture model of the rat hippocampus to study the translation of massive neuronal excitation into persisting changes of epigenetic signatures and pro-epileptogenic target gene expression. Increased spontaneous activation of cultured neurons was detected 3 and 7 days after stimulation with 10 μM glutamate when compared to sham-treated time-matched controls using calcium-imaging in vitro. Chromatin-immunoprecipitation experiments revealed short-term (3 h, 7 h, and 24 h) and long-term (3 d and 2 weeks) changes in histone modifications, which were directly linked to decreased expression of two selected epilepsy target genes, e.g. excitatory glutamate receptor genes Gria2 and Grin2a. Increased promoter methylation observed 4 weeks after glutamate stimulation at respective genes suggested long-term repression of Gria2 and Grin2a genes. Inhibition of glutamatergic activation or blocking the propagation of action potentials in cultured neurons rescued altered gene expression and regulatory epigenetic modifications. Our data support the concept of a cellular memory of epileptogenesis and persisting epigenetic modifications of epilepsy target genes, which are able to turn normal into pro-epileptic neurons and circuits."	"Diagnostic Yield From 339 Epilepsy Patients Screened on a Clinical Gene Panel. The contribution of genetic factors to epilepsy has long been recognized and has been estimated to play a role in 70% to 80% of cases. Identification of a pathogenic variant can help families to better cope with the disorder, allows for genetic counseling to determine recurrence risk, and in some cases, can directly influence treatment options. In this study, we determined the diagnostic yield of a clinical gene panel applied to an unselected cohort of epilepsy patients. Variant reports from 339 clinically referred epilepsy patients screened using a 110-gene panel were retrospectively reviewed. Variants were classified using the American College of Medical Genetics and Genomics guidelines. Pathogenic or likely pathogenic variants were identified in 62 individuals (18%) and potentially causative variants were identified in an additional 21 individuals (6%). Causative and potentially causative variants were most frequently identified in SCN1A (n = 15) and KCNQ2 (n = 10). Other genes in which disease-causing variants were identified in multiple individuals included CDKL5, SCN2A, SCN8A, SCN1B, STXBP1, TPP1, PCDH19, CACNA1A, GABRA1, GRIN2A, SLC2A1, and TSC2. Sixteen additional genes had variants identified in single individuals. We identified 87 variants in 30 different genes that could explain disease, of which 54% were not previously reported. This study confirms the utility of targeted gene panel analysis in epilepsy and highlights several factors to improve the yield of diagnostic genetic testing, including the critical need for clinical phenotype information and parental samples, microarray analysis for whole exon deletions and duplications, and frequent update of panels to incorporate new disease genes."	"GRIN2A mutations in epilepsy-aphasia spectrum disorders. Epilepsy-aphasia spectrum (EAS) are a group of epilepsy syndromes denoting an association between epilepsy, speech disorders and the EEG signature of centrotemporal spikes. Mutations in the GRIN2A gene, encoding the NMDA glutamate receptor α2 subunit were reported in focal epilepsy with speech disorder. We aimed to explore the role of GRIN2A mutations in patients with centrotemporal spikes related epileptic syndromes in a Chinese cohort. Patients with Landau-Kleffner syndrome (LKS), epileptic encephalopathy with continuous spike-and-wave during sleep (ECSWS), atypical benign partial epilepsy (ABPE), and benign epilepsy with centrotemporal spikes (BECTS) were recruited. GRIN2A mutation screening was performed using PCR and Sanger sequencing. 122 patients, including 9 LKS, 26 ECSWS, 42 ABPE and 45 BECTS were enrolled. The mean age of seizure or aphasia onset was 5 years, ranging from 10 months to 11 years. Heterozygous GRIN2A mutations were detected in four patients (G760S, D1385Y, C455Y and C231R) GRIN2A mutation was found in 11.1% (1 out of 9 cases) of LKS, and in 7.1% (3 out of 42 cases) of ABPE, but in none with ECSWS and BECTS. No GRIN2A mutation was found in patients with a family history of febrile seizures or epilepsy. GRIN2A mutation is a genetic cause in less than 11% patients with LKS or ABPE. GRIN2A gene is a rare causative gene in Chinese patients with EAS, suggesting the possibility of other gene involved in the pathogenesis."	"A lack of GluN2A-containing NMDA receptors confers a vulnerability to redox dysregulation: Consequences on parvalbumin interneurons, and their perineuronal nets. The GluN2A subunit of NMDA receptors (NMDARs) plays a critical role during postnatal brain development as its expression increases while Glun2B expression decreases. Mutations and polymorphisms in GRIN2A gene, coding for GluN2A, are linked to developmental brain disorders such as mental retardation, epilepsy, schizophrenia. Published data suggest that GluN2A is involved in maturation and phenotypic maintenance of parvalbumin interneurons (PVIs), and these interneurons suffer from a deficient glutamatergic neurotransmission via GluN2A-containing NMDARs in schizophrenia. In the present study, we find that although PVIs and their associated perineuronal nets (PNNs) appear normal in anterior cingulate cortex of late adolescent/young adult GRIN2A KO mice, a lack of GluN2A delays PNN maturation. GRIN2A KO mice display a susceptibility to redox dysregulation as sub-threshold oxidative stress and subtle alterations in antioxidant systems are observed in their prefrontal cortex. Consequently, an oxidative insult applied during early postnatal development increases oxidative stress, decreases the number of parvalbumin-immunoreactive cells, and weakens the PNNs in KO but not WT mice. These effects are long-lasting, but preventable by the antioxidant, N-acetylcysteine. The persisting oxidative stress, deficit in PVIs and PNNs, and reduced local high-frequency neuronal synchrony in anterior cingulate of late adolescent/young adult KO mice, which have been challenged by an early-life oxidative insult, is accompanied with microglia activation. Altogether, these indicate that a lack of GluN2A-containing NMDARs alters the fine control of redox status, leading to a delayed maturation of PNNs, and conferring vulnerability for long-term oxidative stress, microglial activation, and PVI network dysfunction."	"A distinct microRNA expression profile is associated with α[<sup>11</sup>C]-methyl-L-tryptophan (AMT) PET uptake in epileptogenic cortical tubers resected from patients with tuberous sclerosis complex. Tuberous sclerosis complex (TSC) is characterized by hamartomatous lesions in various organs and arises due to mutations in the TSC1 or TSC2 genes. TSC mutations lead to a range of neurological manifestations including epilepsy, cognitive impairment, autism spectrum disorders (ASD), and brain lesions that include cortical tubers. There is evidence that seizures arise at or near cortical tubers, but it is unknown why some tubers are epileptogenic while others are not. We have previously reported increased tryptophan metabolism measured with α[<sup>11</sup>C]-methyl-l-tryptophan (AMT) positron emission tomography (PET) in epileptogenic tubers in approximately two-thirds of patients with tuberous sclerosis and intractable epilepsy. However, the underlying mechanisms leading to seizure onset in TSC remain poorly characterized. MicroRNAs are enriched in the brain and play important roles in neurodevelopment and brain function. Recent reports have shown aberrant microRNA expression in epilepsy and TSC. In this study, we performed microRNA expression profiling in brain specimens obtained from TSC patients undergoing epilepsy surgery for intractable epilepsy. Typically, in these resections several non-seizure onset tubers are resected together with the seizure-onset tubers because of their proximity. We directly compared seizure onset tubers, with and without increased tryptophan metabolism measured with PET, and non-onset tubers to assess the role of microRNAs in epileptogenesis associated with these lesions. Whether a particular tuber was epileptogenic or non-epileptogenic was determined with intracranial electrocorticography, and tryptophan metabolism was measured with AMT PET. We identified a set of five microRNAs (miR-142-3p, 142-5p, 223-3p, 200b-3p and 32-5p) that collectively distinguish among the three primary groups of tubers: non-onset/AMT-cold (NC), onset/AMT-cold (OC), and onset/AMT-hot (OH). These microRNAs were significantly upregulated in OH tubers compared to the other two groups, and microRNA expression was most significantly associated with AMT-PET uptake. The microRNAs target a group of genes enriched for synaptic signaling and epilepsy risk, including SLC12A5, SYT1, GRIN2A, GRIN2B, KCNB1, SCN2A, TSC1, and MEF2C. We confirmed the interaction between miR-32-5p and SLC12A5 using a luciferase reporter assay. Our findings provide a new avenue for subsequent mechanistic studies of tuber epileptogenesis in TSC."	"Genetic and Functional Analysis of GRIN2A in Tumor Samples. Ionotropic glutamate receptors (iGluRs) are large integral membrane multi-protein complexes that create ion channels in plasma membranes. Upon binding of receptor specific ligands (e.g., glutamate), increased efflux or influx of mono- or divalent cations (e.g., Ca<sup>2+</sup>) promotes synaptic transmission, cellular migration, and survival. Three classes of iGluRs were originally defined after their respective agonists: AMPA, kainate, and NMDA receptors (NMDARs). Recently, we examined iGluR families at the genetic level using Next-Generation Sequencing (NGS) (whole-exome sequencing (WES)) and discovered a high prevalence of somatic mutations within the gene for one of the NMDAR subunits, GRIN2A, specifically in malignant melanoma. Following confirmation of the somatic mutations, we focused on functional characterization of a subset of the GRIN2A mutants that demonstrated a loss of NMDAR functionality. We used gene expression and protein biochemistry to examine complex formation between GluN1 subunit (encoded by GRIN1) and GluN2A subunit (encoded by GRIN2A), anchorage-independent growth in soft agar and cellular migration. Furthermore, we used shRNA depletion of endogenous GRIN2A in melanoma cells expressing either wild-type GRIN2A or mutant GRIN2A and measured cellular proliferation compared to negative controls. Our data show that somatic mutation of certain residues in GluN2A results in increased survival and is the first such report to demonstrate the functional importance of GRIN2A mutations in melanoma and the significance ionotropic glutamate receptor signaling plays in malignant melanoma."	"Functional Investigation of a GRIN2A Variant Associated with Rolandic Epilepsy. N-methyl-D-aspartate receptors (NMDARs), a subtype of glutamate-gated ion channels, play a central role in epileptogenesis. Recent studies have identified an increasing number of GRIN2A (a gene encoding the NMDAR GluN2A subunit) mutations in patients with epilepsy. Phenotypes of GRIN2A mutations include epilepsy-aphasia disorders and other epileptic encephalopathies, which pose challenges in clinical treatment. Here we identified a heterozygous GRIN2A mutation (c.1341T&gt;A, p.N447K) from a boy with Rolandic epilepsy by whole-exome sequencing. The patient became seizure-free with a combination of valproate and lamotrigine. Functional investigation was carried out using recombinant NMDARs containing a GluN2A-N447K mutant that is located in the ligand-binding domain of the GluN2A subunit. Whole-cell current recordings in HEK 293T cells revealed that the N447K mutation increased the NMDAR current density by ~1.2-fold, enhanced the glutamate potency by 2-fold, and reduced the sensitivity to Mg<sup>2+</sup> inhibition. These results indicated that N447K is a gain-of-function mutation. Interestingly, alternative substitutions by alanine and glutamic acid at the same residue (N447A and N447E) did not change NMDAR function, suggesting a residual dependence of this mutation in altering NMDAR function. Taken together, this study identified human GluN2A N447K as a novel mutation associated with epilepsy and validated its functional consequences in vitro. Identification of this mutation is also helpful for advancing our understanding of the role of NMDARs in epilepsy and provides new insights for precision therapeutics in epilepsy."	"Acquired epileptic opercular syndrome related to a heterozygous deleterious substitution in GRIN2A. Epileptic encephalopathies with continuous spike-and-waves during sleep (CSWS) are characterized by cognitive or language impairment, and are occasionally associated with pathogenic variants of the GRIN2A gene. In these disorders, speech dysfunction could be either related to cerebral dysfunction caused by the GRIN2A deleterious variant or intense interictal epileptic activity. Here, we present a patient with apraxia of speech, clearly linked to severity of epilepsy, carrying a GRIN2A variant. A 6-year-old boy developed acute regression of expressive language following epileptic seizures, leading to complete mutism, at which time EEG revealed CSWS. MEG showed bilateral superior parietal and opercular independent CSWS onsets and PET with fluorodeoxyglucose demonstrated significant increase in relative glucose metabolism in bilateral superior parietal regions. Corticosteroids induced a regression of CSWS together with impressive improvement in speech abilities. This case supports the hypothesis of a triggering role for epileptic discharges in speech deterioration observed in children carrying a deleterious variant of GRIN2A. When classic antiepileptic drugs fail to control epileptic activity, corticosteroids should be considered. Multimodal functional neuroimaging suggests a role for opercular and superior parietal areas in acquired epileptic opercular syndrome. [Published with video sequences on www.epilepticdisorders.com]."	"Identification of key genes associated with rheumatoid arthritis with bioinformatics approach. We aimed to identify key genes associated with rheumatoid arthritis (RA).The microarray datasets of GSE1919, GSE12021, and GSE21959 (35 RA samples and 32 normal controls) were downloaded from the Gene Expression Omnibus database. Differentially expressed genes (DEGs) in RA samples were identified using the t test in limma package. Functional enrichment analysis was performed using clusterProfiler package. A protein-protein interaction (PPI) network of selected DEGs was constructed based on the Human Protein Reference Database. Active modules were explored using the jActiveModules plug-in in the Cytoscape Network Modeling package.In total, 537 DEGs in RA samples were identified, including 241 upregulated and 296 downregulated genes. A total of 24,451 PPI pairs were collected, and 5 active modules were screened. Furthermore, 19 submodules were acquired from the 5 active modules. Discs large homolog 1 (DLG1) and related DEGs such as guanylate cyclase 1, soluble, alpha 2 (GUCY1A2), N-methyl d-aspartate receptor 2A subunit (GRIN2A), and potassium voltage-gated channel member 1 (KCNA1) were identified in 8 submodules. Plasminogen (PLG) and related DEGs such as chemokine (C-X-C motif) ligand 2 (CXCL2), laminin, alpha 3 (LAMA3), complement component 7 (C7), and coagulation factor X (F10) were identified in 4 submodules.Our results indicate that DLG1, GUCY1A2, GRIN2A, KCNA1, PLG, CXCL2, LAMA3, C7, and F10 may play key roles in the progression of RA and may serve as putative therapeutic targets for treating RA."	"Genetic and epigenetic mechanisms of epilepsy: a review. Epilepsy is a common episodic neurological disorder or condition characterized by recurrent epileptic seizures, and genetics seems to play a key role in its etiology. Early linkage studies have localized multiple loci that may harbor susceptibility genes to epilepsy, and mutational analyses have detected a number of mutations involved in both ion channel and nonion channel genes in patients with idiopathic epilepsy. Genome-wide studies of epilepsy have found copy number variants at 2q24.2-q24.3, 7q11.22, 15q11.2-q13.3, and 16p13.11-p13.2, some of which disrupt multiple genes, such as NRXN1, AUTS2, NLGN1, CNTNAP2, GRIN2A, PRRT2, NIPA2, and BMP5, implicated for neurodevelopmental disorders, including intellectual disability and autism. Unfortunately, only a few common genetic variants have been associated with epilepsy. Recent exome-sequencing studies have found some genetic mutations, most of which are located in nonion channel genes such as the LGI1, PRRT2, EFHC1, PRICKLE, RBFOX1, and DEPDC5 and in probands with rare forms of familial epilepsy, and some of these genes are involved with the neurodevelopment. Since epigenetics plays a role in neuronal function from embryogenesis and early brain development to tissue-specific gene expression, epigenetic regulation may contribute to the genetic mechanism of neurodevelopment through which a gene and the environment interacting with each other affect the development of epilepsy. This review focused on the analytic tools used to identify epilepsy and then provided a summary of recent linkage and association findings, indicating the existence of novel genes on several chromosomes for further understanding of the biology of epilepsy."	"An Integrative Computational Approach to Evaluate Genetic Markers for Bipolar Disorder. Studies to date have reported hundreds of genes connected to bipolar disorder (BP). However, many studies identifying candidate genes have lacked replication, and their results have, at times, been inconsistent with one another. This paper, therefore, offers a computational workflow that can curate and evaluate BP-related genetic data. Our method integrated large-scale literature data and gene expression data that were acquired from both postmortem human brain regions (BP case/control: 45/50) and peripheral blood mononuclear cells (BP case/control: 193/593). To assess the pathogenic profiles of candidate genes, we conducted Pathway Enrichment, Sub-Network Enrichment, and Gene-Gene Interaction analyses, with 4 metrics proposed and validated for each gene. Our approach developed a scalable BP genetic database (BP_GD), including BP related genes, drugs, pathways, diseases and supporting references. The 4 metrics successfully identified frequently-studied BP genes (e.g. GRIN2A, DRD1, DRD2, HTR2A, CACNA1C, TH, BDNF, SLC6A3, P2RX7, DRD3, and DRD4) and also highlighted several recently reported BP genes (e.g. GRIK5, GRM1 and CACNA1A). The computational biology approach and the BP database developed in this study could contribute to a better understanding of the current stage of BP genetic research and assist further studies in the field."	"Hemoglobins emerging roles in mental disorders. Metabolical, genetical and immunological aspects. Hemoglobin (Hb) expression in the central nervous system is recently shown. Cooccurences of mental disorders (mainly bipolar disorder (BD) and tic disorders) with β- or α-thalassemia trait or erythrocytosis were witnessed, which may be due to peripheral or central hypoxia/hyperoxia or haplotypal gene interactions. β-Globin genes reside at 11p15.5 close to tyrosine hydroxylase, dopamine receptor DRD4 and Brain Derived Neurotrophic Factor, which involve in psychiatric diseases. α-Globin genes reside at 16p13.3 which associates with BD, tic disorders, ATR-16 Syndrome and Rubinstein Taybi Syndrome (RTS). CREB-Binding Protein (CEBBP)-gene is mutated in RTS, which commonly associates with mood disorders. 16p13.3 region also contains GRIN2A gene encoding N-methyl-d-aspartate receptor-2A and SSTR5 (Somatostatin Receptor-5), again involving in mental disorders. We demonstrated a protective role of minor HbA2 against post-partum episodes in BD and association of higher minor HbF (fetal hemoglobin) levels with family history of psychosis in a BD-patient cohort. HbA2 increases in cardiac ischemia and in mountain dwellers indicating its likely protection against ischemia/hypoxia. HMGIY, a repressive transcription factor of δ-globin chain of HbA2 is increased in lymphocytes of schizophrenics. In autism, deletional mutations were found in BCL11A gene, which cause persistence of HbF at high levels in adulthood. Also, certain polymorphisms in BCL11A strongly associate with schizophrenia. Further, many drugs from anabolic steroids to antimalarial agents elevate HbF and may cause mania. We ascribe a protective role to HbA2 and a maladaptive detrimental role to HbF in psychopathology. We believe that future studies on hemoglobins may pave to discover novel pathogenesis mechanisms in mental disorders."	"Functional Properties of Human NMDA Receptors Associated with Epilepsy-Related Mutations of GluN2A Subunit. Genetic variants of the glutamate activated N-methyl-D-aspartate (NMDA) receptor (NMDAR) subunit GluN2A are associated with the hyperexcitable states manifested by epileptic seizures and interictal discharges in patients with disorders of the epilepsy-aphasia spectrum (EAS). The variants found in sporadic cases and families are of different types and include microdeletions encompassing the corresponding GRIN2A gene as well as nonsense, splice-site and missense GRIN2A defects. They are located at different functional domains of GluN2A and no clear genotype-phenotype correlation has emerged yet. Moreover, GluN2A variants may be associated with phenotypic pleiotropy. Deciphering the consequences of pathogenic GRIN2A variants would surely help in better understanding of the underlying mechanisms. This emphasizes the need for functional studies to unravel the basic functional properties of each specific NMDAR variant. In the present study, we have used patch-clamp recordings to evaluate kinetic changes of mutant NMDARs reconstituted after co-transfection of cultured cells with the appropriate expression vectors. Three previously identified missense variants found in patients or families with disorders of the EAS and situated in the N-terminal domain (p.Ile184Ser) or in the ligand-binding domain (p.Arg518His and p.Ala716Thr) of GluN2A were studied in both the homozygous and heterozygous conditions. Relative surface expression and current amplitude were significantly reduced for NMDARs composed of mutant p.Ile184Ser and p.Arg518His, but not p.Ala716His, as compared with wild-type (WT) NMDARs. Amplitude of whole-cell currents was still drastically decreased when WT and mutant p.Arg518His-GluN2A subunits were co-expressed, suggesting a dominant-negative mechanism. Activation times were significantly decreased in both homozygous and heterozygous conditions for the two p.Ile184Ser and p.Arg518His variants, but not for p.Ala716His. Deactivation also significantly increased for p.Ile184Ser variant in the homozygous but not the heterozygous state while it was increased for p.Arg518His in both states. Our data indicate that p.Ile184Ser and p.Arg518His GluN2A variants both impacted on NMDAR function, albeit differently, whereas p.Ala716His did not significantly influence NMDAR kinetics, hence partly questioning its direct and strong pathogenic role. This study brings new insights into the functional impact that GRIN2A variants might have on NMDAR kinetics, and provides a mechanistic explanation for the neurological manifestations seen in the corresponding human spectrum of disorders."	"Obsessive-compulsive disorder, which genes? Which functions? Which pathways? An integrated holistic view regarding OCD and its complex genetic etiology. Obsessive-compulsive disorder (OCD) is characterized by recurrent obtrusive and repetitive acts typically occurred following anxiety. In the last two decades, studies done on the gene sequences, large-scale and point mutations and gene-gene, gene-environment and gene-drug interactions have led to the discovery of hundreds of genes associated with OCD. Although each gene in turn is a part of the etiology of this disorder; however, OCD, like other mental disorders is complex and a comprehensive and integrated view is necessary to understand its genetic basis. In this study, through an extensive review of existing published studies, all genes associated with OCD were found. Then, in order to integrate the results, all the interactions between these genes were explored and the achievement was represented as an interactive genetic network. Furthermore, the reconstructed network was analyzed. It was found that GRIN2A, GRIN2B and GRIA2 are the most central nodes in the network. Functional and pathway enrichment analysis showed that glutamate-related pathways are the main deficient systems in patients with OCD. By studying genes shared between OCD and other diseases, it was cleared that OCD, epilepsy and some types of cancer have the most number of shared genes. The results of this study, in addition to reviewing the available results as a comprehensive and integrated manner, provide new hypotheses for future studies."	"MUG-Mel2, a novel highly pigmented and well characterized NRAS mutated human melanoma cell line. NRAS mutation in melanoma has been associated with aggressive tumor biology and poor prognosis. Although targeted therapy has been tested for NRAS mutated melanoma, response rates still appear much weaker, than in BRAF mutated melanoma. While plenty of cell lines exist, however, only few melanogenic cell lines retain their in vivo characteristics. In this work we present an intensively pigmented and well-characterized cell line derived from a highly aggressive NRAS mutated cutaneous melanoma, named MUG-Mel2. We present the clinical course, unique morphology, angiogenic properties, growth characteristics using in vivo experiments and 3D cell culture, and results of the exome gene sequencing of an intensively pigmented melanogenic cell line MUG-Mel2, derived from a cutaneous metastasis of an aggressive NRAS p. Q61R mutated melanoma. Amongst several genetic alterations, mutations in GRIN2A, CREBP, PIK3C2G, ATM, and ATR were present. These mutations, known to reinforce DNA repair problems in melanoma, might serve as potential treatment targets. The aggressive and fast growing behavior in animal models and the obtained phenotype in 3D culture reveal a perfect model for research in the field of NRAS mutated melanoma."	"Next-generation DNA sequencing identifies novel gene variants and pathways involved in specific language impairment. A significant proportion of children have unexplained problems acquiring proficient linguistic skills despite adequate intelligence and opportunity. Developmental language disorders are highly heritable with substantial societal impact. Molecular studies have begun to identify candidate loci, but much of the underlying genetic architecture remains undetermined. We performed whole-exome sequencing of 43 unrelated probands affected by severe specific language impairment, followed by independent validations with Sanger sequencing, and analyses of segregation patterns in parents and siblings, to shed new light on aetiology. By first focusing on a pre-defined set of known candidates from the literature, we identified potentially pathogenic variants in genes already implicated in diverse language-related syndromes, including ERC1, GRIN2A, and SRPX2. Complementary analyses suggested novel putative candidates carrying validated variants which were predicted to have functional effects, such as OXR1, SCN9A and KMT2D. We also searched for potential &quot;multiple-hit&quot; cases; one proband carried a rare AUTS2 variant in combination with a rare inherited haplotype affecting STARD9, while another carried a novel nonsynonymous variant in SEMA6D together with a rare stop-gain in SYNPR. On broadening scope to all rare and novel variants throughout the exomes, we identified biological themes that were enriched for such variants, including microtubule transport and cytoskeletal regulation."	"Cerebrovascular Remodeling and Neuroinflammation is a Late Effect of Radiation-Induced Brain Injury in Non-Human Primates. Fractionated whole-brain irradiation (fWBI) is a mainstay of treatment for patients with intracranial neoplasia; however late-delayed radiation-induced normal tissue injury remains a major adverse consequence of treatment, with deleterious effects on quality of life for affected patients. We hypothesize that cerebrovascular injury and remodeling after fWBI results in ischemic injury to dependent white matter, which contributes to the observed cognitive dysfunction. To evaluate molecular effectors of radiation-induced brain injury (RIBI), real-time quantitative polymerase chain reaction (RT-qPCR) was performed on the dorsolateral prefrontal cortex (DLPFC, Brodmann area 46), hippocampus and temporal white matter of 4 male Rhesus macaques (age 6-11 years), which had received 40 Gray (Gy) fWBI (8 fractions of 5 Gy each, twice per week), and 3 control comparators. All fWBI animals developed neurologic impairment; humane euthanasia was elected at a median of 6 months. Radiation-induced brain injury was confirmed histopathologically in all animals, characterized by white matter degeneration and necrosis, and multifocal cerebrovascular injury consisting of perivascular edema, abnormal angiogenesis and perivascular extracellular matrix deposition. Herein we demonstrate that RIBI is associated with white matter-specific up-regulation of hypoxia-associated lactate dehydrogenase A (LDHA) and that increased gene expression of fibronectin 1 (FN1), SERPINE1 and matrix metalloprotease 2 (MMP2) may contribute to cerebrovascular remodeling in late-delayed RIBI. Additionally, vascular stability and maturation associated tumor necrosis super family member 15 (TNFSF15) and vascular endothelial growth factor beta (VEGFB) mRNAs were increased within temporal white matter. We also demonstrate that radiation-induced brain injury is associated with decreases in white matter-specific expression of neurotransmitter receptors SYP, GRIN2A and GRIA4. We additionally provide evidence that macrophage/microglial mediated neuroinflammation may contribute to RIBI through increased gene expression of the macrophage chemoattractant CCL2 and macrophage/microglia associated CD68. Global patterns in cerebral gene expression varied significantly between regions examined (P &lt; 0.0001, Friedman's test), with effects most prominent within cerebral white matter."	"Towards Personalized Medicine in Melanoma: Implementation of a Clinical Next-Generation Sequencing Panel. Molecular diagnostics are increasingly performed routinely in the diagnosis and management of patients with melanoma due to the development of novel therapies that target specific genetic mutations. The development of next-generation sequencing (NGS) technologies has enabled to sequence multiple cancer-driving genes in a single assay, with improved sensitivity in mutation detection. The main objective of this study was the design and implementation of a melanoma-specific sequencing panel, and the identification of the spectrum of somatic mutations in a series of primary melanoma samples. A custom panel was designed to cover the coding regions of 35 melanoma-related genes. Panel average coverage was 2,575.5 reads per amplicon, with 92,8% of targeted bases covered ≥500×. Deep coverage enabled sensitive discovery of mutations in as low as 0.5% mutant allele frequency. Eighty-five percent (85/100) of the melanomas had at least one somatic mutation. The most prevalent mutated genes were BRAF (50%;50/199), NRAS (15%;15/100), PREX2 (14%;14/100), GRIN2A (13%;13/100), and ERBB4 (12%;12/100). Turn-around-time and costs for NGS-based analysis was reduced in comparison to conventional molecular approaches. The results of this study demonstrate the cost-effectiveness and feasibility of a custom-designed targeted NGS panel, and suggest the implementation of targeted NGS into daily routine practice."	"Caffeine, creatine, GRIN2A and Parkinson's disease progression. Caffeine is neuroprotective in animal models of Parkinson's disease (PD) and caffeine intake is inversely associated with the risk of PD. This association may be influenced by the genotype of GRIN2A, which encodes an NMDA-glutamate-receptor subunit. In two placebo-controlled studies, we detected no association of caffeine intake with the rate of clinical progression of PD, except among subjects taking creatine, for whom higher caffeine intake was associated with more rapid progression. We now have analyzed data from 420 subjects for whom DNA samples and caffeine intake data were available from a placebo-controlled study of creatine in PD. The GRIN2A genotype was not associated with the rate of clinical progression of PD in the placebo group. However, there was a 4-way interaction between GRIN2A genotype, caffeine, creatine and the time since baseline. Among subjects in the creatine group with high levels of caffeine intake, but not among those with low caffeine intake, the GRIN2A T allele was associated with more rapid progression (p=0.03). These data indicate that the deleterious interaction between caffeine and creatine with respect to rate of progression of PD is influenced by GRIN2A genotype. This example of a genetic factor interacting with environmental factors illustrates the complexity of gene-environment interactions in the progression of PD."	"Epilepsy-associated GRIN2A mutations reduce NMDA receptor trafficking and agonist potency - molecular profiling and functional rescue. Mutations in the N-methyl-D-aspartate receptor (NMDAR) gene GRIN2A cause epilepsy-aphasia syndrome (EAS), a spectrum of epileptic, cognitive and language disorders. Using bioinformatic and patient data we shortlisted 10 diverse missense mutations for characterisation. We used high-throughput calcium-flux assays and patch clamp recordings of transiently transfected HEK-293 cells for electrophysiological characterization, and Western blotting and confocal imaging to assay expression and surface trafficking. Mutations P79R, C231Y, G483R and M705V caused a significant reduction in glutamate and glycine agonist potency, whilst D731N was non-responsive. These mutants, along with E714K, also showed significantly decreased total protein levels and trafficking to the cell surface, whilst C436R was not trafficked at all. Crucially this reduced surface expression did not cause the reduced agonist response. We were able to rescue the phenotype of P79R, C231Y, G483R and M705V after treatment with a GluN2A-selective positive allosteric modulator. With our methodology we were not able to identify any functional deficits in mutations I814T, D933N and N976S located between the glutamate-binding domain and C-terminus. We show GRIN2A mutations affect the expression and function of the receptor in different ways. Careful molecular profiling of patients will be essential for future effective personalised treatment options."	"Advances in epilepsy gene discovery and implications for epilepsy diagnosis and treatment. Epilepsy genetics is shifting from the academic pursuit of gene discovery to a clinical discipline based on molecular diagnosis and stratified medicine. We consider the latest developments in epilepsy genetics and review how gene discovery in epilepsy is influencing the clinical classification of epilepsy and informing new therapeutic approaches and drug discovery. Recent studies highlighting the importance of mutation in GABA receptors, NMDA receptors, potassium channels, G-protein coupled receptors, mammalian target of rapamycin pathway and chromatin remodeling are discussed. Examples of precision medicine in epilepsy targeting gain-of-function mutations in KCNT1, GRIN2A, GRIN2D and SCN8A are presented. Potential reasons for the paucity of examples of precision medicine for loss-of-function mutations or in non-ion channel epilepsy genes are explored. We highlight how systems genetics and gene network analyses have suggested that pathways disrupted in epilepsy overlap with those of other neurodevelopmental traits including human cognition. We review how network-based computational approaches are now being applied to epilepsy drug discovery. We are living in an unparalleled era of epilepsy gene discovery. Advances in clinical care from this progress are already materializing through improved clinical diagnosis and stratified medicine. The application of targeted drug repurposing based on single gene defects has shown promise for epilepsy arising from gain-of-function mutations in ion-channel subunit genes, but important barriers remain to translating these approaches to non-ion channel epilepsy genes and loss-of-function mutations. Gene network analysis offers opportunities to discover new pathways for epilepsy, to decipher epilepsy's relationship to other neurodevelopmental traits and to frame a new approach to epilepsy drug discovery."	"A de novo loss-of-function GRIN2A mutation associated with childhood focal epilepsy and acquired epileptic aphasia. N-methyl-D-aspartate receptors (NMDAR) subunit GRIN2A/GluN2A mutations have been identified in patients with various neurological diseases, such as epilepsy and intellectual disability / developmental delay (ID/DD). In this study, we investigated the phenotype and underlying molecular mechanism of a GRIN2A missense mutation identified by next generation sequencing on idiopathic focal epilepsy using in vitro electrophysiology. Genomic DNA of patients with epilepsy and ID/DD were sequenced by targeted next-generation sequencing within 300 genes related to epilepsy and ID/DD. The effects of one missense GRIN2A mutation on NMDAR function were evaluated by two-electrode voltage clamp current recordings and whole cell voltage clamp current recordings. We identified one de novo missense GRIN2A mutation (Asp731Asn, GluN2A(D731N)) in a child with unexplained epilepsy and DD. The D731N mutation is located in a portion of the agonist-binding domain (ABD) in the GluN2A subunit, which is the binding pocket for agonist glutamate. This residue in the ABD is conserved among vertebrate species and all other NMDAR subunits, suggesting an important role in receptor function. The proband shows developmental delay as well as EEG-confirmed seizure activity. Functional analyses reveal that the GluN2A(D731N) mutation decreases glutamate potency by over 3,000-fold, reduces amplitude of current response, shortens synaptic-like response time course, and decreases channel open probability, while enhancing sensitivity to negative allosteric modulators, including extracellular proton and zinc inhibition. The combined effects reduce NMDAR function. We identified a de novo missense mutation in the GRIN2A gene in a patient with childhood focal epilepsy and acquired epileptic aphasia. The mutant decreases NMDAR activation suggesting NMDAR hypofunction may contribute to the epilepsy pathogenesis."	"Functional Evaluation of a De Novo GRIN2A Mutation Identified in a Patient with Profound Global Developmental Delay and Refractory Epilepsy. The N-methyl-d-aspartate receptor (NMDAR), a ligand-gated ionotropic glutamate receptor, plays important roles in normal brain development and a wide range of neurologic disorders, including epilepsy. Here, we evaluate for the first time the functional properties of a de novo GRIN2A missense mutation (p.M817V) in the pre-M4 linker in a child with profound global developmental delay and refractory epilepsy. Electrophysiologic recordings revealed that the mutant GluN2A(M817V)-containing receptors showed enhanced agonist potency, reduced sensitivity to endogenous negative inhibitors (Mg<sup>2+</sup>, proton, and zinc), prolonged synaptic-like response time course, increased single-channel mean open time, and increased channel open probability. These results suggest that the gain-of-function M817V mutation causes overactivation of NMDAR and drives neuronal hyperexcitability, which may contribute to the patient's observed epileptic phenotype. Molecular modeling of the closed channel conformation reveals that this mutation weakens the interaction between GluN2 transmembrane helix M4 and two GluN1 transmembrane helices, and increases atomic fluctuation or movement of the pre-M1 region of GluN1 subunit, suggesting a mechanism by which channel function is enhanced. The functional changes of this mutation on agonist potency occur when the mutation is introduced into all other GluN2 subunits, suggesting a conserved role of this residue in control of NMDAR function through interactions of membrane spanning GluN2 and GluN1 helices. A number of NMDAR-targeted drugs including U.S. Food and Drug Association-approved NMDAR channel blockers were evaluated for their ability to inhibit receptors containing GluN2A(M817V) as a first step to exploring the potential for rescue pharmacology and personalized medicine."	"Genetic findings in sport-related concussions: potential for individualized medicine? Concussion is a traumatic transient disturbance of the brain. In sport, the initial time and severity of concussion is known giving an opportunity for subsequent analysis. Variability in susceptibility and recovery between individual athletes depends, among other parameters, on genetic factors. The genes-encoding polypeptides that determine incidence, severity and prognosis for concussion are the primary candidates for genetic analysis. Genetic polymorphisms in the genes contributing to plasticity and repair (APOE), synaptic connectivity (GRIN2A), calcium influx (CACNA1E), uptake and deposit of glutamate (SLC17A7) are potential biomarkers of concussion incidence and recovery rate. With catalogued genetic variants, prospective genotyping of athletes at the beginning of their career will allow medical professionals to improve concussion management and return-to-play decisions."	"Epilepsy in patients with GRIN2A alterations: Genetics, neurodevelopment, epileptic phenotype and response to anticonvulsive drugs. To delineate the genetic, neurodevelopmental and epileptic spectrum associated with GRIN2A alterations with emphasis on epilepsy treatment. Retrospective study of 19 patients (7 females; age: 1-38 years; mean 10.1 years) with epilepsy and GRIN2A alteration. Genetic variants were classified according to the guidelines and recommendations of the American College of Medical Genetics (ACMG). Clinical findings including epilepsy classification, treatment, EEG findings, early childhood development and neurodevelopmental outcome were collected with an electronic questionnaire. 7 out of 19 patients fulfilled the ACMG-criteria of carrying &quot;pathogenic&quot; or &quot;likely pathogenic variants&quot;, in twelve patients the alterations were classified as variants of unknown significance. The spectrum of pathogenic/likely pathogenic mutations was as follows: nonsense n = 3, missense n = 2, duplications/deletions n = 1 and splice site n = 1. First seizures occurred at a mean age of 2.4 years with heterogeneous seizure types. Patients were treated with a mean of 5.6 AED. 4/5 patients with VPA had an improved seizure frequency (n = 3 with a truncation: n = 1 missense). 3/5 patients with STM reported an improvement of seizures (n = 2 truncation, n = 1 splicing). 3/5 CLB patients showed an improvement (n = 2: truncation; n = 1 splicing). Steroids were reported to have a positive effect on seizure frequency in 3/5 patients (n = 1 each truncation, splicing or deletion). Our data indicate that children with epilepsy due to pathogenic GRIN2A mutations present with different clinical phenotypes and a spectrum of seizure types in the context of a pharmacoresistant epilepsy providing information for clinicians treating children with this form of genetically determined epileptic syndrome."	"Effects of selection for ethanol preference on gene expression in the nucleus accumbens of HS-CC mice. Previous studies on changes in murine brain gene expression associated with the selection for ethanol preference have used F2 intercross or heterogeneous stock (HS) founders, derived from standard laboratory strains. However, these populations represent only a small proportion of the genetic variance available in Mus musculus. To investigate a wider range of genetic diversity, we selected mice for ethanol preference using an HS derived from the eight strains of the collaborative cross. These HS mice were selectively bred (four generations) for high and low ethanol preference. The nucleus accumbens shell of naive S4 mice was interrogated using RNA sequencing (RNA-Seq). Gene networks were constructed using the weighted gene coexpression network analysis assessing both coexpression and cosplicing. Selection targeted one of the network coexpression modules (greenyellow) that was significantly enriched in genes associated with receptor signaling activity including Chrna7, Grin2a, Htr2a and Oprd1. Connectivity in the module as measured by changes in the hub nodes was significantly reduced in the low preference line. Of particular interest was the observation that selection had marked effects on a large number of cell adhesion molecules, including cadherins and protocadherins. In addition, the coexpression data showed that selection had marked effects on long non-coding RNA hub nodes. Analysis of the cosplicing network data showed a significant effect of selection on a large cluster of Ras GTPase-binding genes including Cdkl5, Cyfip1, Ndrg1, Sod1 and Stxbp5. These data in part support the earlier observation that preference is linked to Ras/Mapk pathways."	"16p13 microduplication without CREBBP involvement: Moving toward a phenotype delineation. The short arm of chromosome 16 is one of the less stable regions of our genome, as over 10% of the euchromatic region of 16p is composed of highly complex low copy repeats that are known to be predisposed to rearrangements mediated by non-allelic homologous recombination. The 16p13.3p13.13 molecular region has been defined as the 16p duplication hotspot, and duplications of chromosome 16p13 have recently been confirmed to cause a recognizable syndrome, with CREBBP being the main phenotype-causing gene. To date, only one case report is present in the literature with a 16p13 duplication without CREBBP involvement; we describe here a second analogous case with a not previously reported 16p13.2p13.13 microduplication. This paper allows us to better delineate the clinical features of 16p13 microduplications that do not encompass CREBBP and, concurrently, to narrow the molecular region responsible for congenital heart defects in 16p duplications as well as to propose GRIN2A as a candidate gene for epilepsy."	"[Cognitive deficits are underestimated in children with benign epilepsy with centro-temporal spikes]. Benign epilepsy with centro-temporal spikes (BECTS) is, as the name suggests, usually considered benign. However, there is a growing awareness that this is not the case in all instances. Many of the children with BECTS have neuropsychological and linguistic dysfunctions, even after remission of the disease. In patients with classic BECTS, an association with GRIN2A-mutations is reported by several groups, suggesting a possible placement of BECTS at the mild end of an epileptic-aphasia spectrum. Awareness of the possible neuropsychological consequences of BECTS should be considered when treating these children."	"Mechanistic Insight into NMDA Receptor Dysregulation by Rare Variants in the GluN2A and GluN2B Agonist Binding Domains. Epilepsy and intellectual disability are associated with rare variants in the GluN2A and GluN2B (encoded by GRIN2A and GRIN2B) subunits of the N-methyl-D-aspartate receptor (NMDAR), a ligand-gated ion channel with essential roles in brain development and function. By assessing genetic variation across GluN2 domains, we determined that the agonist binding domain, transmembrane domain, and the linker regions between these domains were particularly intolerant to functional variation. Notably, the agonist binding domain of GluN2B exhibited significantly more variation intolerance than that of GluN2A. To understand the ramifications of missense variation in the agonist binding domain, we investigated the mechanisms by which 25 rare variants in the GluN2A and GluN2B agonist binding domains dysregulated NMDAR activity. When introduced into recombinant human NMDARs, these rare variants identified in individuals with neurologic disease had complex, and sometimes opposing, consequences on agonist binding, channel gating, receptor biogenesis, and forward trafficking. Our approach combined quantitative assessments of these effects to estimate the overall impact on synaptic and non-synaptic NMDAR function. Interestingly, similar neurologic diseases were associated with both gain- and loss-of-function variants in the same gene. Most rare variants in GluN2A were associated with epilepsy, whereas GluN2B variants were associated with intellectual disability with or without seizures. Finally, discerning the mechanisms underlying NMDAR dysregulation by these rare variants allowed investigations of pharmacologic strategies to correct NMDAR function."	"Differential effect of chronic stress on mouse hippocampal memory and affective behavior: Role of major ovarian hormones. Molecular mechanisms of depression-like pathophysiology in female rodent models are less reported compared to males, despite its higher prevalence in human females. Moreover, the stress-response in brain circuitries including reward and cognition circuitries varies with age or hormonal status of the females. So, to understand the stress-induced mood and cognitive disorders in intact females (with ovaries) and ovariectomized (OVX) females, we studied changes in mouse hippocampus, a functionally heterogeneous neural structure involved in both affective and cognitive behaviors. Here, we used a 6-day Chronic Unpredictable Stress (CUS) paradigm in mice to induce depression and related mood disorders. Interestingly, intact females and OVX females showed difference in mood disorder sub-phenotypes to CUS. Similar to an earlier report of CUS affecting the critical reward circuitry structure the nucleus accumbens differently in females with and without ovaries, cognitive behavior in intact females and OVX females also responded differentially to CUS, as evident from Morris Water Maze (MWM) test results. We report that the presence or absence of ovarian hormones, particularly the estrogen, has a significant impact in altering the hippocampus related spatial memory and affective behavior, in females. Our results also illustrate that estrogen administration improves both reward and cognitive behavior, and plays a significant role in alleviating stress-induced despair behavior and enhancing spatial reference memory following a brief 6-day stressful paradigm. Further, it also indicates that the NMDA receptor subunits, GRIN2A and GRIN2B, might mediate the effects of estrogen in the hippocampal functions, thus suggestive of a translational significance of the finding."	"MicroRNA-139-5p negatively regulates NR2A-containing NMDA receptor in the rat pilocarpine model and patients with temporal lobe epilepsy. Regulation of N-methyl-d-aspartate (NMDA) subunits NR2A and NR2B expression during status epilepticus (SE) remains incompletely understood. Here we explored the role of brain-enriched microRNA (miR)-139-5p in this process. miRNA microarray was performed to examine changes in miRNA expression in the rat pilocarpine model following NMDA-receptor blockade. The dynamic expression patterns of miR-139-5p, NR2A, and NR2B levels were measured in rats during the three phases of temporal lobe epilepsy (TLE) development using quantitative reverse transcription polymerase chain reaction (qRT-PCR) and Western blot. Similar expression methods were applied to hippocampi obtained from patients with TLE and from normal controls. Moreover, miR-139-5p agomir and antagomir were utilized to explore the role of miR-139-5p in determining NMDA-receptor subunit expression patterns. We identified 18 miRNAs that were significantly altered in the rat pilocarpine model following NMDA-receptor blockade. Of these, miR-139-5p was significantly up-regulated and Grin2A was predicted as its potential putative target. In patients with TLE, miR-139-5p expression was significantly down-regulated, whereas NR2A and NR2B levels were significantly up-regulated. In the rat model of SE, miR-139-5p expression was down-regulated while NR2A was up-regulated in the acute and chronic phases, but not in the latent phase. NR2B expression was up-regulated during the three phases of TLE development. Overexpression of miR-139-5p decreased, whereas depletion of miR-139-5p enhanced the expression levels of NR2A, but not NR2B, induced by pilocarpine treatment. Of interest, NMDA nonselective antagonist and NR2A selective antagonist enhanced miR-139-5p levels suppressed by pilocarpine treatment, whereas the NR2B selective antagonist was ineffective. These findings elucidate the potential role of miR-139-5p in NMDA-receptor involvement in TLE development and may provide novel therapeutic targets for the future treatment of TLE."	"N-Methyl d-Aspartate Receptor Expression Patterns in the Human Fetal Cerebral Cortex. N-methyl d-aspartate receptors (NMDARs), a subtype of glutamate receptor, have important functional roles in cellular activity and neuronal development. They are well-studied in rodent and adult human brains, but limited information is available about their distribution in the human fetal cerebral cortex. Here we show that 3 NMDAR subunits, NR1, NR2A, and NR2B, are expressed in the human cerebral cortex during the second trimester of gestation, a period of intense neurogenesis and synaptogenesis. With increasing fetal age, expression of the NMDAR-encoding genes Grin1 (NR1) and Grin2a (NR2A) increased while Grin2b (NR2B) expression decreased. The protein levels of all 3 subunits paralleled the changes in gene expression. On cryosections, all 3 subunits were expressed in proliferative ventricular and subventricular zones, in radial glia, and in intermediate progenitor cells, consistent with their role in the proliferation of cortical progenitor cells and in the determination of their respective fates. The detection of NR1, NR2A, and NR2B in both glutamatergic and GABAergic neurons of the cortical plate suggests the involvement of NMDARs in the maturation of human cortical neurons and in early synapse formation. Our results and previous studies in rodents suggest that NMDAR expression in the developing human brain is evolutionarily conserved."	"Selected GRIN2A mutations in melanoma cause oncogenic effects that can be modulated by extracellular glutamate. GRIN2A mutations are frequent in melanoma tumours but their role in disease is not well understood. GRIN2A encodes a modulatory subunit of the N-methyl-d-aspartate receptor (NMDAR). We hypothesized that certain GRIN2A mutations increase NMDAR function and support melanoma growth through oncogenic effects. This hypothesis was tested using 19 low-passage melanoma cell lines, four of which carried novel missense mutations in GRIN2A that we previously reported. We examined NMDAR expression, function of a calcium ion (Ca<sup>2+</sup>) channel and its contribution to cell growth using pharmacological modulators; findings were correlated with the presence or absence of GRIN2A mutations. We found that NMDAR expression was low in all melanoma cell lines, independent of GRIN2A mutations. In keeping with this, NMDAR-mediated Ca<sup>2+</sup> influx and its contribution to cell proliferation were weak in most cell lines. However, certain GRIN2A mutations and culture media with lower glutamate levels enhanced NMDAR effects on cell growth and invasion. The main finding was that G762E was associated with higher glutamate-mediated Ca<sup>2+</sup> influx and stronger NMDAR contribution to cell proliferation, compared with wild-type GRIN2A and other GRIN2A mutations. The pro-invasive phenotype of mutated cell lines was increased in culture medium containing less glutamate, implying environmental modulation of mutation effects. In conclusion, NMDAR ion channel function is low in cultured melanoma cells but supports cell proliferation and invasion. Selected GRIN2A mutations, such as G762E, are associated with oncogenic consequences that can be modulated by extracellular glutamate. Primary cultures may be better suited to determine the role of the NMDAR in melanoma in vivo."	"Association of the GRIN2B rs2284411 polymorphism with methylphenidate response in attention-deficit/hyperactivity disorder. We investigated the possible association between two NMDA subunit gene polymorphisms (GRIN2B rs2284411 and GRIN2A rs2229193) and treatment response to methylphenidate (MPH) in attention-deficit/hyperactivity disorder (ADHD). A total of 75 ADHD patients aged 6-17 years underwent 6 months of MPH administration. Treatment response was defined by changes in scores of the ADHD-IV Rating Scale (ADHD-RS), clinician-rated Clinical Global Impression-Improvement (CGI-I), and Continuous Performance Test (CPT). The association of the GRIN2B and GRIN2A polymorphisms with treatment response was analyzed using logistic regression analyses. The GRIN2B rs2284411 C/C genotype showed significantly better treatment response as assessed by ADHD-RS inattention ( p=0.009) and CGI-I scores ( p=0.009), and there was a nominally significant association in regard to ADHD-RS hyperactivity-impulsivity ( p=0.028) and total ( p=0.023) scores, after adjusting for age, sex, IQ, baseline Clinical Global Impression-Severity (CGI-S) score, baseline ADHD-RS total score, and final MPH dose. The GRIN2B C/C genotype also showed greater improvement at the CPT response time variability ( p&lt;0.001). The GRIN2A G/G genotype was associated with a greater improvement in commission errors of the CPT compared to the G/A genotype ( p=0.001). The results suggest that the GRIN2B rs2284411 genotype may be an important predictor of MPH response in ADHD."	"High Resolution Genomic Scans Reveal Genetic Architecture Controlling Alcohol Preference in Bidirectionally Selected Rat Model. Investigations on the influence of nature vs. nurture on Alcoholism (Alcohol Use Disorder) in human have yet to provide a clear view on potential genomic etiologies. To address this issue, we sequenced a replicated animal model system bidirectionally-selected for alcohol preference (AP). This model is uniquely suited to map genetic effects with high reproducibility, and resolution. The origin of the rat lines (an 8-way cross) resulted in small haplotype blocks (HB) with a corresponding high level of resolution. We sequenced DNAs from 40 samples (10 per line of each replicate) to determine allele frequencies and HB. We achieved ~46X coverage per line and replicate. Excessive differentiation in the genomic architecture between lines, across replicates, termed signatures of selection (SS), were classified according to gene and region. We identified SS in 930 genes associated with AP. The majority (50%) of the SS were confined to single gene regions, the greatest numbers of which were in promoters (284) and intronic regions (169) with the least in exon's (4), suggesting that differences in AP were primarily due to alterations in regulatory regions. We confirmed previously identified genes and found many new genes associated with AP. Of those newly identified genes, several demonstrated neuronal function involved in synaptic memory and reward behavior, e.g. ion channels (Kcnf1, Kcnn3, Scn5a), excitatory receptors (Grin2a, Gria3, Grip1), neurotransmitters (Pomc), and synapses (Snap29). This study not only reveals the polygenic architecture of AP, but also emphasizes the importance of regulatory elements, consistent with other complex traits."	"Low-dose oral cadmium increases airway reactivity and lung neuronal gene expression in mice. Inhalation of cadmium (Cd) is associated with lung diseases, but less is known concerning pulmonary effects of Cd found in the diet. Cd has a decades-long half-life in humans and significant bioaccumulation occurs with chronic dietary intake. We exposed mice to low-dose CdCl2 (10 mg/L in drinking water) for 20 weeks, which increased lung Cd to a level similar to that of nonoccupationally exposed adult humans. Cd-treated mice had increased airway hyperresponsiveness to methacholine challenge, and gene expression array showed that Cd altered the abundance of 443 mRNA transcripts in mouse lung. In contrast to higher doses, low-dose Cd did not elicit increased metallothionein transcripts in lung. To identify pathways most affected by Cd, gene set enrichment of transcripts was analyzed. Results showed that major inducible targets of low-dose Cd were neuronal receptors represented by enriched olfactory, glutamatergic, cholinergic, and serotonergic gene sets. Olfactory receptors regulate chemosensory function and airway hypersensitivity, and these gene sets were the most enriched. Targeted metabolomics analysis showed that Cd treatment also increased metabolites in pathways of glutamatergic (glutamate), serotonergic (tryptophan), cholinergic (choline), and catecholaminergic (tyrosine) receptors in the lung tissue. Protein abundance measurements showed that the glutamate receptor GRIN2A was increased in mouse lung tissue. Together, these results show that in mice, oral low-dose Cd increased lung Cd to levels comparable to humans, increased airway hyperresponsiveness and disrupted neuronal pathways regulating bronchial tone. Therefore, dietary Cd may promote or worsen airway hyperresponsiveness in multiple lung diseases including asthma. "	"Maternal exposure to ochratoxin A targets intermediate progenitor cells of hippocampal neurogenesis in rat offspring via cholinergic signal downregulation and oxidative stress responses. To elucidate the developmental exposure effects of ochratoxin A (OTA) on postnatal hippocampal neurogenesis, pregnant SD rats were provided a diet containing 0, 0.12, 0.6, or 3.0ppm OTA from gestation day 6 to day 21 on weaning after delivery. Offspring were maintained through postnatal day (PND) 77 without OTA exposure. At 3.0ppm, offspring of both sexes showed a transient body weight decrease after weaning. Changes in hippocampal neurogenesis-related parameters as measured in male PND 21 offspring were observed at 3.0ppm. In the subgranular zone (SGZ) of the dentate gyrus, PAX6<sup>+</sup> or TBR2<sup>+</sup> cells were decreased, while GFAP<sup>+</sup> or DCX<sup>+</sup> cells did not fluctuate in number, suggesting decreased numbers of type-2 progenitor cells. On the other hand, SGZ cells accumulating malondialdehyde increased. In the hilus of the dentate gyrus, SST<sup>+</sup> or CHRNB2<sup>+</sup> γ-aminobutyric acid (GABA)-ergic interneurons decreased, accompanied with transcript downregulation of Chrnb2 in the dentate gyrus. These results suggest that maternal exposure to OTA decreased type-2 progenitor cells by reducing hilar GABAergic interneurons innervating type-2 progenitor cells via cholinergic signal downregulation and also by increasing oxidative stress in the SGZ. Transcript levels of neurotrophin (Bdnf), glutamatergic receptors (Gria1, Gria2, and Grin2a), serotonin-synthesizing enzyme, and serotonergic receptors (Tph2, Htr1a, and Htr4) increased in the dentate gyrus, suggesting multiple neuroprotective actions against OTA-induced aberrant neurogenesis. All observed fluctuations were reversed by PND 77. The no-observed-adverse-effect level for offspring neurogenesis was determined to be 0.6ppm, corresponding to 39.3-76.0μg/kg body weight/day."	"Behavioral and physiological characterization of PKC-dependent phosphorylation in the Grin2a∆PKC mouse. Activity-dependent plasticity in NMDA receptor-containing synapses can be regulated by phosphorylation of serines and tyrosines in the C-terminal domain of the receptor subunits by various kinases. We have previously identified S1291/S1312 as important sites for PKC phosphorylation; while Y1292/Y1312 are the sites indirectly phosphorylated by PKC via Src kinase. In the oocyte expression system, mutation of those Serine sites to Alanine (that cannot be phosphorylated) in the GluN2A subunit, resulted in a decreased PKC stimulated current enhancement through the receptors compared to wild-type NMDA receptors. To investigate the behavioral and physiological significance of those PKC-mediated phosphorylation sites in vivo, the Grin2a∆PKC mouse expressing GluN2A with four mutated amino acids: S1291A, S1312A, Y1292F and Y1387F was generated using homologous recombination. The Grin2a∆PKC mice exhibit reduced anxiety in the open field test, light dark emergence test, and elevated plus maze. The mutant mice show reduced alternation in a Y maze spontaneous alternation task and a in a non-reinforced T maze alternation task. Interestingly, when the mutant mice were exposed to novel environments, there was no increase in context-induced Fos levels in hippocampal CA1 and CA3 compared to home-cage Fos levels, while the Fos increased in the WT mice in CA1, CA3 and DG. When the SC-CA1 synapses in slices from mutant mice were stimulated using a theta-burst protocol, there was no impairment in LTP. Overall, these results suggest that at least one of those PKC-mediated phosphorylation sites regulates NMDAR-mediated signaling that modulates anxiety."	"Computational Identification of Novel Stage-Specific Biomarkers in Colorectal Cancer Progression. It is well-known that the conversion of normal colon epithelium to adenoma and then to carcinoma stems from acquired molecular changes in the genome. The genetic basis of colorectal cancer has been elucidated to a certain extent, and much remains to be known about the identity of specific cancer genes that are associated with the advancement of colorectal cancer from one stage to the next. Here in this study we attempted to identify novel cancer genes that could underlie the stage-specific progression and metastasis of colorectal cancer. We conducted a stage-based meta-analysis of the voluminous tumor genome-sequencing data and mined using multiple approaches for novel genes driving the progression to stage-II, stage-III and stage-IV colorectal cancer. The consensus of these driver genes seeded the construction of stage-specific networks, which were then analyzed for the centrality of genes, clustering of subnetworks, and enrichment of gene-ontology processes. Our study identified three novel driver genes as hubs for stage-II progression: DYNC1H1, GRIN2A, GRM1. Four novel driver genes were identified as hubs for stage-III progression: IGF1R, CPS1, SPTA1, DSP. Three novel driver genes were identified as hubs for stage-IV progression: GSK3B, GGT1, EIF2B5. We also identified several non-driver genes that appeared to underscore the progression of colorectal cancer. Our study yielded potential diagnostic biomarkers for colorectal cancer as well as novel stage-specific drug targets for rational intervention. Our methodology is extendable to the analysis of other types of cancer to fill the gaps in our knowledge. "	"GRIN2A polymorphisms and expression levels are associated with lead-induced neurotoxicity. Lead acts as an antagonist of the N-methyl-d-aspartate receptor (NMDAR). GRIN2A encodes an important subunit of NMDARs and may be a critical factor in the mechanism of lead neurotoxicity. Changes in GRIN2A expression levels or gene variants may be mechanisms of lead-induced neurotoxicity. In this study, we hypothesized that GRIN2A might contribute to lead-induced neurotoxicity. A preliminary HEK293 cell experiment was performed to analyze the association between GRIN2A expression and lead exposure. In addition, in a population-based study, serum GRIN2A levels were measured in both lead-exposed and control populations. To detect further the influence of GRIN2A gene single nucleotide polymorphisms (SNPs) in lead-induced neurotoxicity, 3 tag SNPs (rs2650429, rs6497540, and rs9302415) were genotyped in a case-control study that included 399 lead-exposed subjects and 398 controls. Lead exposure decreased GRIN2A expression levels in HEK293 cells ( p &lt; 0.001) compared with lead-free cells. Lead-exposed individuals had lower serum GRIN2A levels compared with controls ( p &lt; 0.001), and we found a trend of decreasing GRIN2A level with an increase in blood lead level ( p &lt; 0.001). In addition, we found a significant association between rs2650429 CT and TT genotypes and risk of lead poisoning compared with the rs2650429 CC genotype (adjusted odds ratio = 1.42, 95% confidence interval = 1.01-2.00]. Therefore, changes in GRIN2A expression levels and variants may be important mechanisms in the development of lead-induced neurotoxicity."	"Targeted next generation sequencing of endoscopic ultrasound acquired cytology from ampullary and pancreatic adenocarcinoma has the potential to aid patient stratification for optimal therapy selection. Less than 10% of registered drug intervention trials for pancreatic ductal adenocarcinoma (PDAC) include a biomarker stratification strategy. The ability to identify distinct mutation subsets via endoscopic ultrasound fine needle aspiration (EUS FNA) molecular cytology could greatly aid clinical trial patient stratification and offer predictive markers. We identified chemotherapy treatment naïve ampullary adenocarcinoma and PDAC patients who underwent EUS FNA to assess multigene mutational frequency and diversity with a surgical resection concordance assessment, where available. Following strict cytology smear screening criteria, targeted next generation sequencing (NGS) using a 160 cancer gene panel was performed. Complete sequencing was achieved in 29 patients, whereby 83 pathogenic alterations were identified in 21 genes. Cytology genotyping revealed that the majority of mutations were identified in KRAS (93%), TP53 (72%), SMAD4 (31%), and GNAS (10%). There was 100% concordance for the following pathogenic alterations: KRAS, TP53, SMAD4, KMT2D, NOTCH2, MSH2, RB1, SMARCA4, PPP2R1A, PIK3R1, SCL7A8, ATM, and FANCD2. Absolute multigene mutational concordance was 83%. Incremental cytology smear mutations in GRIN2A, GATA3 and KDM6A were identified despite re-examination of raw sequence reads in the corresponding resection specimens. EUS FNA cytology genotyping using a 160 cancer gene NGS panel revealed a broad spectrum of pathogenic alterations. The fidelity of cytology genotyping to that of paired surgical resection specimens suggests that EUS FNA represents a suitable surrogate and may complement the conventional stratification criteria in decision making for therapies and may guide future biomarker driven therapeutic development."	"The GRIN2B and GRIN2A Gene Variants Are Associated With Continuous Performance Test Variables in ADHD. To examine the association between variants of N-methyl-D-aspartate (NMDA) receptor subunit-encoding genes (GRIN2A and GRIN2B) and continuous performance test (CPT) variables in ADHD and healthy controls. In all, 253 ADHD patients and 98 controls were recruited. The diagnosis, genotype, and diagnosis-genotype interaction effects for the CPT variables were examined. Significant diagnosis effects were detected for all CPT variables. There were significant genotype and interaction effects on response time variability (RTV) by the GRIN2B variant. The C/C subgroup had higher RTV than the C/T + T/T subgroup in ADHD, but not in controls. There were significant genotype effects on omission errors by the GRIN2A variant. The G/G subgroup had more omission errors than the G/A + A/A subgroup in ADHD patients, but not in controls. These results suggest that the genetic variants of GRIN2B and GRIN2A confer an increased susceptibility to attentional impairment in ADHD patients."	"Transcriptional profiling of the mouse hippocampus supports an NMDAR-mediated neurotoxic mode of action for benzo[a]pyrene. Benzo[a]pyrene (BaP) is a genotoxic carcinogen and a neurotoxicant. The neurotoxicity of BaP is proposed to arise from either genotoxicity leading to neuronal cell death, or perturbed expression of N-methyl-d-aspartate receptor (NMDAR) subunits. To explore these hypotheses, we profiled hippocampal gene expression of adult male Muta(™) Mouse administered 0, 1, 35, or 70 mg BaP/kg bw per day by oral gavage for 3 days. Transcriptional profiles were examined by RNA-sequencing (RNA-seq), DNA microarrays, and real-time quantitative reverse transcription polymerase chain reaction (RT-PCR). BaP-DNA adducts in the cerebellum were quantified by (32) P-post-labeling to measure genotoxicity. RNA-seq revealed altered expression of 0, 260, and 219 genes (P-value &lt; 0.05, fold-change ≥ ± 1.5) following exposure to the low, medium, and high doses, respectively; 54 genes were confirmed by microarrays. Microarray and RT-PCR analysis showed increased expression of NMDAR subunits Grina and Grin2a. In contrast, no effects on DNA-damage response genes were observed despite comparable BaP-DNA adduct levels in the cerebellum and in the lungs and livers of mice at similar BaP doses in previous studies. The results suggest that DNA-damage response does not play a major role in BaP-induced adult neurotoxicity. Meta-analysis revealed that BaP-induced transcriptional profiles are highly correlated with those from the hippocampus of transgenic mice exhibiting similar neurotoxicity outcomes to BaP-exposed mice and rats (i.e., defects in learning and memory). Overall, we suggest that BaP-induced neurotoxicity is more likely to be a consequence of NMDAR perturbation than genotoxicity, and identify other important genes potentially mediating this adverse outcome. Environ. Mol. Mutagen. 57:350-363, 2016. © 2016 Her Majesty the Queen in Right of Canada. Environmental and Molecular Mutagenesis © 2016 Environmental Mutagen Society."	"Likelihood of mechanistic roles for dopaminergic, serotonergic and glutamatergic receptors in tardive dyskinesia: A comparison of genetic variants in two independent patient populations. An established theory for the pathogenesis of tardive dyskinesia is disturbed dopaminergic receptor sensitivity and/or dopaminergic intracellular signaling. We examined associations between genetic variants of neurotransmitter receptors and tardive dyskinesia. We assessed tardive dyskinesia in Caucasian psychiatric inpatients from Siberia (N = 431) and a long-stay population from the Netherlands (N = 168). These patients were genotyped for 43 tag single nucleotide polymorphisms in five neurotransmitter receptor genes, and the results for the two populations were compared. Several significant associations with tardive dyskinesia were identified, but only GRIN2A (rs1345423) was found in both patient populations. This lack of agreement was probably due to the small effect size of the associations, the multiple testing and the small sample size of the Dutch patient population. After reviewing the literature, we propose that the constitutive stimulatory activity of serotonergic type 2 receptors may be relevant. Inactivity of the serotonergic, type 2C receptor or blockade of these receptors by atypical antipsychotic drugs may decrease the vulnerability to develop tardive dyskinesia."	"Specific gene expression patterns of 108 schizophrenia-associated loci in cortex. The latest genome-wide association study of schizophrenia identified 108 distinct genomic loci that contribute to schizophrenia. Brain development and function depend on the precise regulation of gene expression. The expression of many genes is differentially regulated across brain regions and developmental time points. We investigated the specific gene expression patterns arising from the 108 schizophrenia-associated loci using multiple publicly available databases and multiple regional brain datasets from developing and adult post-mortem human brains. The temporal-spatial expression analysis revealed that the genes in these loci were intensively enriched in the cortex during several developmental stages. These cortex-specific genes were particularly expressed in the fetal brain and adult neocortex."	"Subregional Expression of Hippocampal Glutamatergic and GABAergic Genes in F344 Rats with Social Isolation after Weaning. Many studies have shown that postweaning social isolation (pwSI) alters various behavioral phenotypes, including hippocampusdependent tasks. Here, we report the comprehensive analysis of the expression of glutamatergic and GABAergic neurotransmissionrelated genes in the distinct hippocampal subregions of pwSI rats. Male F344 rats (age, 4 wk) experienced either pwSI or group housing (controls). At 7 wk of age, the hippocampus of each rat was removed and laser-microdissected into the CA1 and CA3 layers of pyramidal cells and the granule cell layer of the dentate gyrus. Subsequently, the expression of glutamatergic- and GABAergic- related genes was analyzed by quantitative RT-PCR. In the CA1 and CA3 pyramidal cell layers, 18 of 24 glutamate receptor subunit genes were at least 1.5-fold increased in expression after pwSI. In particular, the expression of several N-methyl-D-aspartate and kainate receptors (for example, Grin2a in CA1, Grik4 in CA3) was significantly increased after pwSI. In contrast, pwSI tended to decrease the expression of GABAA receptor subunit genes, and Gabra1, Gabra2, Gabra4, Gabra5, Gabrb2, Gabrg1, and Gabrg2 were all significantly decreased in expression compared with the levels in the group-housed rats. These results indicate a subregion- specific increase of glutamate receptors and reduction of GABAA receptors, suggesting that the hippocampal circuits of pwSI rats may be in more excitable states than those of group-housed rats. "	"MPX-004 and MPX-007: New Pharmacological Tools to Study the Physiology of NMDA Receptors Containing the GluN2A Subunit. GluN2A is the most abundant of the GluN2 NMDA receptor subunits in the mammalian CNS. Physiological and genetic evidence implicate GluN2A-containing receptors in susceptibility to autism, schizophrenia, childhood epilepsy and neurodevelopmental disorders such as Rett Syndrome. However, GluN2A-selective pharmacological probes to explore the therapeutic potential of targeting these receptors have been lacking. Here we disclose a novel series of pyrazine-containing GluN2A antagonists exemplified by MPX-004 (5-(((3-chloro-4-fluorophenyl)sulfonamido)methyl)-N-((2-methylthiazol-5-yl)methyl)pyrazine-2-carboxamide) and MPX-007 (5-(((3-fluoro-4-fluorophenyl)sulfonamido)methyl)-N-((2-methylthiazol-5-yl)methyl)methylpyrazine-2-carboxamide). MPX-004 and MPX-007 inhibit GluN2A-containing NMDA receptors expressed in HEK cells with IC50s of 79 nM and 27 nM, respectively. In contrast, at concentrations that completely inhibited GluN2A activity these compounds have no inhibitory effect on GluN2B or GluN2D receptor-mediated responses in similar HEK cell-based assays. Potency and selectivity were confirmed in electrophysiology assays in Xenopus oocytes expressing GluN2A-D receptor subtypes. Maximal concentrations of MPX-004 and MPX-007 inhibited ~30% of the whole-cell current in rat pyramidal neurons in primary culture and MPX-004 inhibited ~60% of the total NMDA receptor-mediated EPSP in rat hippocampal slices. GluN2A-selectivity at native receptors was confirmed by the finding that MPX-004 had no inhibitory effect on NMDA receptor mediated synaptic currents in cortical slices from GRIN2A knock out mice. Thus, MPX-004 and MPX-007 offer highly selective pharmacological tools to probe GluN2A physiology and involvement in neuropsychiatric and developmental disorders. "	"Influence of Genetic Variants of the N-Methyl-D-Aspartate Receptor on Emotion and Social Behavior in Adolescents. Considerable evidence has suggested that the epigenetic regulation of N-methyl-D-aspartate (NMDA) glutamate receptors plays a crucial role in neuropsychiatric disorders. Previous exploratory studies have been primarily based on evidence from patients and have rarely sampled the general population. This exploratory study examined the relationship of single-nucleotide polymorphism (SNP) variations in the genes encoding the NMDA receptor (i.e., GRIN1, GRIN2A, GRIN2B, GRIN2C, and GRIN2D) with emotion and social behavior in adolescents. For this study, 832 tenth-grade Taiwanese volunteers were recruited, and their scores from the Beck Youth Inventories were used to evaluate their emotional and social impairments. Based on these scores, GRIN1 (rs4880213) was significantly associated with depression and disruptive behavior. In addition, GRIN2B (rs7301328) was significantly associated with disruptive behavior. Because emotional and social impairment greatly influence learning ability, the findings of this study provide important information for clinical treatment and the development of promising prevention and treatment strategies, especially in the area of psychological adjustment. "	"Response to immunotherapy in a patient with Landau-Kleffner syndrome and GRIN2A mutation. Landau-Kleffner syndrome (LKS) has been demonstrated in the past to respond to immunotherapy. Recently, some cases of LKS have been shown to be secondary to glutamate receptor (GRIN2A) mutations. Whether such cases respond to immunotherapy is not known. Here, we present the case of a 3-year-old boy with LKS found to have a GRIN2A heterozygous missense mutation, whose clinical symptoms and EEG responded to a course of combination oral steroids and monthly infusions of intravenous immunoglobulin. He then relapsed after discontinuation of this therapy, and responded again after a second course of intravenous immunoglobulin. We conclude that immunotherapy should be considered as a therapeutic option in patients with LKS who are also found to harbour GRIN2A mutations. "	"Effects of a Flavonoid-Rich Fraction on the Acquisition and Extinction of Fear Memory: Pharmacological and Molecular Approaches. The effects of flavonoids have been correlated with their ability to modulate the glutamatergic, serotoninergic, and GABAergic neurotransmission; the major targets of these substances are N-methyl-D-aspartic acid receptor (NMDARs), serotonin type1A receptor (5-HT1ARs), and the gamma-aminobutyric acid type A receptors (GABAARs). Several studies showed that these receptors are involved in the acquisition and extinction of fear memory. This study assessed the effects of treatment prior to conditioning with a flavonoid-rich fraction from the stem bark of Erythrina falcata (FfB) on the acquisition and extinction of the conditioned suppression following pharmacological manipulations and on gene expression in the dorsal hippocampus (DH). Adult male Wistar rats were treated before conditioned fear with FfB, vehicle, an agonist or antagonist of the 5-HT1AR, GABAARs or the GluN2B-NMDAR or one of these antagonists before FfB treatment. The effects of these treatments on fear memory retrieval, extinction training and extinction retrieval were evaluated at 48, 72, and 98 h after conditioning, respectively. We found that activation of GABAARs and inactivation of GluN2B-NMDARs play important roles in the acquisition of lick response suppression. FfB reversed the effect of blocking GluN2B-NMDARs on the conditioned fear and induced the spontaneous recovery. Blocking the 5-HT1AR and the GluN2B-NMDAR before FfB treatment seemed to be associated with weakening of the spontaneous recovery. Expression of analysis of DH samples via qPCR showed that FfB treatment resulted in the overexpression of Htr1a, Grin2a, Gabra5, and Erk2 after the retention test and of Htr1a and Erk2 after the extinction retention test. Moreover, blocking the 5-HT1ARs and the GluN2B-NMDARs before FfB treatment resulted in reduced Htr1a and Grin2b expression after the retention test, but played a distinct role in Grin2a and Erk2 expression, according session evaluated. We show for the first time that the serotoninergic and glutamatergic receptors are important targets for the effect of FfB on the conditioned fear and spontaneous recovery, in which the ERK signaling pathway appears to be modulated. Further, these results provide important information regarding the role of the DH in conditioned suppression. Taken together, our data suggest that FfB represents a potential therapy for preventing or treating memory impairments. "	"Expression of GRIN2A in benign and malignant nasopharyngeal diseases and its clinical significance. The gene glutamate receptor, ionotropic, N-methyl D-aspartate 2A (GRIN2A) is associated with development and neuron viability, and our previous studies showed it to be substantially methylated in nasopharyngeal carcinoma, indicating a link to this disease. The aim of this work was to investigate GRIN2A expression and its clinical significance in nasopharyngeal carcinoma, in contrast to nasopharyngitis and nasopharyngeal precancerous lesions. Fifty patients with nasopharyngeal carcinoma were selected as study subjects, while 28 chronic nasopharyngitis patients and 22 individuals with nasopharyngeal precancerous lesions were used as controls. Immunohistochemical analysis was used to study GRIN2A protein expression, and its relationship with nasopharyngeal carcinoma clinical stage and histopathological features were assessed. GRIN2A appeared as yellow staining in the cytoplasm or nucleus. It was strongly expressed in the nasopharyngeal epithelial tissues of patients with chronic nasopharyngitis and in nasopharyngeal precancerous lesions, the proportions of GRIN2A-positive cells being 82.1 and 72.7%, respectively. However, it was weakly expressed in nasopharyngeal carcinoma tissues, with 28.0% of cells testing positive (P &lt; 0.001). No significant difference in the expression of GRIN2A was observed between different clinical stages and pathological grades. We conclude that weak GRIN2A expression is a major feature of nasopharyngeal carcinoma. "	"Hippocampal NMDAR-Wnt-Catenin signaling disrupted with cognitive deficits in adolescent offspring exposed to prenatal hypoxia. Prenatal hypoxia (PH) is one of the most common stresses on fetuses, and might lead to abnormal brain development. This work investigates whether PH affects behavioral development of the learning/memory ability in the adolescent offspring rats and the underlying molecular basis in the brain. In this study, pregnant rats used to generate PH offspring were treated with hypoxia (10.5% oxygen) from gestational day 4 to 21. Brain weights of either the fetuses or the 6-week old offspring in the PH group were found to be significantly lower compared with the control group. Morris water maze tests showed longer escape latency and swimming distance during navigation testing in the PH offspring; retention tests demonstrated less frequency of crossing target areas indicating impaired learning and memory ability in the PH offspring. The expressions of subunits of N-methyl-D-aspartate receptors (NMDARs), Grin1/NR1, Grin2a/NR2A, and Grin2b/NR2B, were significantly decreased in the hippocampus of adolescent offspring in the PH group. Wnt3a as well as active form of β-catenin protein were also significantly down-regulated. Furthermore, the expression of early response gene, Fosl1, was significantly reduced. The results above provide new evidence that PH might result in the spatial acquisition and retrieval deficits in the adolescent offspring, associated with dysregulation of NMDARs-Wnt-Catenin signaling in the hippocampus. This study result deepens the knowledge of the long-term influence of prenatal insults on the neuro-behavioral development. "	"Unexplained early onset epileptic encephalopathy: Exome screening and phenotype expansion. Early onset epileptic encephalopathies (EOEEs) represent a significant diagnostic challenge. Newer genomic approaches have begun to elucidate an increasing number of responsible single genes as well as emerging diagnostic strategies. In this single-center study, we aimed to investigate a cohort of children with unexplained EOEE. We performed whole-exome sequencing (WES), targeting a list of 137 epilepsy-associated genes on 50 children with unexplained EOEE. We characterized all phenotypes in detail and classified children according to known electroclinical syndromes where possible. Infants with previous genetic diagnoses, causative brain malformations, or inborn errors of metabolism were excluded. We identified disease-causing variants in 11 children (22%) in the following genes: STXBP1 (n = 3), KCNB1 (n = 2), KCNT1, SCN1A, SCN2A, GRIN2A, DNM1, and KCNA2. We also identified two further variants (in GRIA3 and CPA6) in two children requiring further investigation. Eleven variants were de novo, and in one paternal testing was not possible. Phenotypes were broadened for some variants identified. This study demonstrates that WES is a clinically useful screening tool for previously investigated unexplained EOEE and allows for reanalysis of data as new genes are being discovered. Detailed phenotyping allows for expansion of specific gene disorders leading to epileptic encephalopathy and emerging sub-phenotypes."	"Gene Expression Switching of Receptor Subunits in Human Brain Development. Synaptic receptors in the human brain consist of multiple protein subunits, many of which have multiple variants, coded by different genes, and are differentially expressed across brain regions and developmental stages. The brain can tune the electrophysiological properties of synapses to regulate plasticity and information processing by switching from one protein variant to another. Such condition-dependent variant switch during development has been demonstrated in several neurotransmitter systems including NMDA and GABA. Here we systematically detect pairs of receptor-subunit variants that switch during the lifetime of the human brain by analyzing postmortem expression data collected in a population of donors at various ages and brain regions measured using microarray and RNA-seq. To further detect variant pairs that co-vary across subjects, we present a method to quantify age-corrected expression correlation in face of strong temporal trends. This is achieved by computing the correlations in the residual expression beyond a cubic-spline model of the population temporal trend, and can be seen as a nonlinear version of partial correlations. Using these methods, we detect multiple new pairs of context dependent variants. For instance, we find a switch from GLRA2 to GLRA3 that differs from the known switch in the rat. We also detect an early switch from HTR1A to HTR5A whose trends are negatively correlated and find that their age-corrected expression is strongly positively correlated. Finally, we observe that GRIN2B switch to GRIN2A occurs mostly during embryonic development, presumably earlier than observed in rodents. These results provide a systematic map of developmental switching in the neurotransmitter systems of the human brain. "	"Developmental cuprizone exposure impairs oligodendrocyte lineages differentially in cortical and white matter tissues and suppresses glutamatergic neurogenesis signals and synaptic plasticity in the hippocampal dentate gyrus of rats. Developmental cuprizone (CPZ) exposure impairs rat hippocampal neurogenesis. Here, we captured the developmental neurotoxicity profile of CPZ using a region-specific expression microarray analysis in the hippocampal dentate gyrus, corpus callosum, cerebral cortex and cerebellar vermis of rat offspring exposed to 0, 0.1, or 0.4% CPZ in the maternal diet from gestation day 6 to postnatal day (PND) 21. Transcripts of those genes identified as altered were subjected to immunohistochemical analysis on PNDs 21 and 77. Our results showed that transcripts for myelinogenesis-related genes, including Cnp, were selectively downregulated in the cerebral cortex by CPZ at ≥0.1% or 0.4% on PND 21. CPZ at 0.4% decreased immunostaining intensity for 2',3'-cyclic-nucleotide 3'-phosphodiesterase (CNPase) and CNPase(+) and OLIG2(+) oligodendrocyte densities in the cerebral cortex, whereas CNPase immunostaining intensity alone was decreased in the corpus callosum. By contrast, a striking transcript upregulation for Klotho gene and an increased density of Klotho(+) oligodendrocytes were detected in the corpus callosum at ≥0.1%. In the dentate gyrus, CPZ at ≥0.1% or 0.4% decreased the transcript levels for Gria1, Grin2a and Ptgs2, genes related to the synapse and synaptic transmission, and the number of GRIA1(+) and GRIN2A(+) hilar γ-aminobutyric acid (GABA)-ergic interneurons and cyclooxygenase-2(+) granule cells. All changes were reversed at PND 77. Thus, developmental CPZ exposure reversibly decreased mature oligodendrocytes in both cortical and white matter tissues, and Klotho protected white matter oligodendrocyte growth. CPZ also reversibly targeted glutamatergic signals of GABAergic interneuron to affect dentate gyrus neurogenesis and synaptic plasticity in granule cells. "	"Association between GRIN2A promoter polymorphism and recovery from concussion. To determine genetic variability within the N-methyl-D-aspartate receptor 2A sub-unit (GRIN2A) gene promoter and its association with concussion recovery time. The hypothesis tested was that there would be a difference in allele and/or genotype distribution between two groups of athletes with normal and prolonged recovery. DNA was extracted from saliva collected from a total of 87 athletes with a physician-diagnosed concussion. The (GT) variable number tandem repeats (VNTR) within the promoter region of GRIN2A was genotyped. The long (L) allele was an allele with ≥25 repeats and the short (S) allele was an allele with &lt;25 repeats in the GT tract. Participants' recovery time was followed prospectively and was categorized as normal (≤60 days) or prolonged (&gt;60 days). LL carriers were 6-times more likely to recover longer than 60 days following the concussive event (p = 0.0433) when compared to SS carriers. Additionally, L allele carriers were found more frequently in the prolonged recovery group (p = 0.048). Determining genetic influence on concussion recovery will aid in future development of genetic counselling. The clinical relevance of genotyping athletes could improve management of athletes who experience concussion injuries."	"C3-induced release of neurotrophic factors from Schwann cells - potential mechanism behind its regeneration promoting activity. Previous studies revealed a peripheral nerve regeneration (PNR)(1) promoting activity of Clostridium botulinum C3(2) exoenzyme or a 26(mer) C-terminal peptide fragment covering amino acids 156-181 (C3(156-181)),(3) when delivered as one-time injection at the lesion site. The current study was performed to 1) investigate if prolonged availability of C3 and C3(156-181) at the lesion site can further enhance PNR in vivo and to 2) elucidate effects of C3 and C3(156-181) on Schwann cells (SCs)(4)in vitro. For in vivo studies, 10 mm adult rat sciatic nerve gaps were reconstructed with the epineurial pouch technique or autologous nerve grafts. Epineurial pouches were filled with a hydrogel containing i) vehicle, ii) 40 μM C3 or iii) 40 μM C3(156-181). Sensory and motor functional recovery was monitored over 12 weeks and the outcome of PNR further analyzed by nerve morphometry. In vitro, we compared gene expression profiles (microarray analysis) and neurotrophic factor expression (western blot analysis) of untreated rat neonatal SCs with those treated with C3 or C3(156-181) for 72 h. Effects on neurotrophic factor expression levels were proven in adult human SCs. Unexpectedly, prolonged delivery of C3 and C3(156-181) at the lesion site did not increase the outcome of PNR. Regarding the potential mechanism underlying their previously detected PNR promoting action, however, 6 genes were found to be commonly altered in SCs upon treatment with C3 or C3(156-181). We demonstrate significant down-regulation of genes involved in glutamate uptake (Eaac1,(5)Grin2a(6)) and changes in neurotrophic factor expression (increase of FGF-2(7) and decrease of NGF(8)). Our microarray-based expression profiling revealed novel C3-regulated genes in SCs possibly involved in the axonotrophic (regeneration promoting) effects of C3 and C3(156-181). Detection of altered neurotrophic factor expression by C3 or C3(156-181) treated primary neonatal rat SCs and primary adult human SCs supports this hypothesis. "	"Characterization of a Novel Mutation in SLC1A1 Associated with Schizophrenia. We have recently described a hemi-deletion on chromosome 9p24.2 at the SLC1A1 gene locus and its co-segregation with schizophrenia in an extended Palauan pedigree. This finding represents a point of convergence for several pathophysiological models of schizophrenia. The present report sought to characterize the biological consequences of this hemi-deletion. Dual luciferase assays demonstrated that the partially deleted allele (lacking exon 1 and the native promoter) can drive expression of a 5'-truncated SLC1A1 using sequence upstream of exon 2 as a surrogate promoter. However, confocal microscopy and electrophysiological recordings demonstrate that the 5'-truncated SLC1A1 lacks normal membrane localization and glutamate transport ability. To identify downstream consequences of the hemi-deletion, we first used a themed qRT-PCR array to compare expression of 84 GABA and glutamate genes in RNA from peripheral blood leukocytes in deletion carriers (n = 11) versus noncarriers (n = 8) as well as deletion carriers with psychosis (n = 5) versus those without (n = 3). Then, targeted RNA-Seq (TREx) was used to quantify expression of 375 genes associated with neuropsychiatric disorders in HEK293 cells subjected to either knockdown of SLC1A1 or overexpression of full-length or 5'-truncated SLC1A1. Expression changes of several genes strongly implicated in schizophrenia pathophysiology were detected (e.g. SLC1A2, SLC1A3, SLC1A6, SLC7A11, GRIN2A, GRIA1 and DLX1). "	"Effect of a GRIN2A de novo mutation associated with epilepsy and intellectual disability on NMDA receptor currents and Mg(2+) block in cultured primary cortical neurons. Background GRIN2A encodes the GluN2A subunit of the NMDA receptor (NMDAR), an ionotropic glutamate receptor that has important roles in synaptogenesis and synaptic plasticity. Some individuals with early onset epilepsies and intellectual disability carry heterozygous missense mutations in this gene, including a de-novo mutation in the receptor pore region (GluN2A(N615K)). We hypothesised that this mutation underlies the carrier's brain disorder and sought to explore its functional consequences. We made two-electrode voltage clamp recordings from Xenopus laevis oocytes expressing GluN1/GluN2A(N615K) (N615K) NMDARs and compared them with wild-type (WT) NMDARs to assess the mutation's effect on potency of inhibition by Mg(2+) and other channel blockers. We then used whole-cell patch-clamping to evaluate NMDAR-mediated currents in mouse primary cortical pyramidal neurons transfected with either GluN2A(WT) or GluN2A(N651K) subunits. Means were compared by use of independent two-tailed t tests. In oocytes, Mg(2+) (1 mM) block at -60 mV was significantly decreased (N615K [n=13], mean 5% [SE 8] vs WT [n=15], 89 [4]; p&lt;0·0001). Furthermore, in N615K (n=17) and WT (n=17) oocytes, block by 10 μM memantine was also reduced (mean 26% [6] vs 75 [7], p&lt;0·0001) as was block by 100 μM amantadine (18% [4] vs 44 [12], p&lt;0·0001). Block by ketamine (N615K, n=14; WT, n=14) was not significantly affected, whereas block by dextromethorphan was increased (N615K [n=9], 56% [8] vs WT [n=8], 44 [6]; p=0·003). In N615K (n=10) and WT (n=10) neurons we observed a significant decrease in Mg(2+) sensitivity (49% [18] vs 95 [5], p&lt;0·0001) and a significant decrease in current density (42 pA/pF [19] vs 61 [20], p=0·044). This study suggests that the disease-associated mutation GluN2A(N615K) has substantial effects on NMDAR inhibition by both endogenous and exogenous channel blockers, and on NMDA current density. It is plausible that these changes underlie the carrier's phenotype. Wellcome Trust via an Edinburgh Clinical Academic Training PhD Fellowship."	"Genetics of long-term treatment outcome in bipolar disorder. Bipolar disorder (BD) shows one of the strongest genetic predispositions among psychiatric disorders and the identification of reliable genetic predictors of treatment response could significantly improve the prognosis of the disease. The present study investigated genetic predictors of long-term treatment-outcome in 723 patients with BD type I from the STEP-BD (Systematic Treatment Enhancement Program for Bipolar Disorder) genome-wide dataset. BD I patients with &gt;6months of follow-up and without any treatment restriction (reflecting a natural setting scenario) were included. Phenotypes were the total and depressive episode rates and the occurrence of one or more (hypo)manic/mixed episodes during follow-up. Quality control of genome-wide data was performed according to standard criteria and linear/logistic regression models were used as appropriate under an additive hypothesis. Top genes were further analyzed through a pathway analysis. Genes previously involved in the susceptibility to BD (DFNB31, SORCS2, NRXN1, CNTNAP2, GRIN2A, GRM4, GRIN2B), antidepressant action (DEPTOR, CHRNA7, NRXN1), and mood stabilizer or antipsychotic action (NTRK2, CHRNA7, NRXN1) may affect long-term treatment outcome of BD. Promising findings without previous strong evidence were TRAF3IP2-AS1, NFYC, RNLS, KCNJ2, RASGRF1, NTF3 genes. Pathway analysis supported particularly the involvement of molecules mediating the positive regulation of MAPK cascade and learning/memory processes. Further studies focused on the outlined genes may be helpful to provide validated markers of BD treatment outcome. "	"The effects of single nucleotide polymorphisms in glutamatergic neurotransmission genes on neural response to alcohol cues and craving. The aim of the current study was to determine genotype effects of four single nucleotide polymorphisms (SNPs) in the genes of the N-Methyl-d-aspartate receptor (GRIN1, GRIN2A, GRIN2C) and kainate receptor (GRIK1), which have been previously associated with alcoholism, on behavior, neural cue-reactivity and drinking outcome. Eighty-six abstinent alcohol dependent patients were recruited from an in-patient setting. Neuropsychological tests, genotyping and functional magnetic resonance imaging (fMRI) were used to study genotype effects. GRIN2C risk allele carriers displayed increased alcohol cue-induced activation in the anterior cingulate cortex (ACC) and dorsolateral prefrontal cortex (dlPFC). Neural activation in the ACC positively correlated with craving for alcohol (r = 0.201, P = 0.032), whereas activation in the dlPFC showed a negative association (r = -0.215, P = 0.023). In addition, dlPFC activation predicted time to first relapse (HR = 2.701, 95%CI 1.244-5.864, P = 0.012). GRIK1 risk allele carriers showed increased cue-induced activation in the medial prefrontal (PFC) and orbitofrontal cortex (OFC) and in the lateral PFC and OFC. Activation in both clusters positively correlated with alcohol craving (rmedOFC, medPFC = 0.403, P = 0.001, rlatOFC, latPFC = 0.282, P = 0.008), and activation in the cluster that encompassed the medial OFC predicted time to first relapse (HR = 1.911, 95%CI 1.030-3.545, P = 0.040). Findings indicate that SNPs in the GRIN2C and GRIK1 genes are associated with altered cue-induced brain activation that is related to craving for alcohol and relapse risk. "	"De Novo Heterogeneous Mutations in SCN2A and GRIN2A Genes and Seizures With Ictal Vocalizations. NA"	"Glutamatergic and GABAergic susceptibility loci for heroin and cocaine addiction in subjects of African and European ancestry. Drug addiction, a leading health problem, is a chronic brain disease with a significant genetic component. Animal models and clinical studies established the involvement of glutamate and GABA neurotransmission in drug addiction. This study was designed to assess if 258 variants in 27 genes of these systems contribute to the vulnerability to develop drug addiction. Four independent analyses were conducted in a sample of 1860 subjects divided according to drug of abuse (heroin or cocaine) and ancestry (African and European). A total of 11 SNPs in eight genes showed nominally significant associations (P&lt;0.01) with heroin and/or cocaine addiction in one or both ancestral groups but the associations did not survive correction for multiple testing. Of these SNPs, the GAD1 upstream SNP rs1978340 is potentially functional as it was shown to affect GABA concentrations in the cingulate cortex. In addition, SNPs GABRB3 rs7165224; DBI rs12613135; GAD1 SNPs rs2058725, rs1978340, rs2241164; and GRIN2A rs1650420 were previously reported in associations with drug addiction or related phenotypes. The study supports the involvement of genetic variation in the glutamatergic and GABAergic systems in drug addiction with partial overlap in susceptibility loci between cocaine and heroin addiction."	"Ethanol upregulates NMDA receptor subunit gene expression in human embryonic stem cell-derived cortical neurons. Chronic alcohol consumption may result in sustained gene expression alterations in the brain, leading to alcohol abuse or dependence. Because of ethical concerns of using live human brain cells in research, this hypothesis cannot be tested directly in live human brains. In the present study, we used human embryonic stem cell (hESC)-derived cortical neurons as in vitro cellular models to investigate alcohol-induced expression changes of genes involved in alcohol metabolism (ALDH2), anti-apoptosis (BCL2 and CCND2), neurotransmission (NMDA receptor subunit genes: GRIN1, GRIN2A, GRIN2B, and GRIN2D), calcium channel activity (ITPR2), or transcriptional repression (JARID2). hESCs were differentiated into cortical neurons, which were characterized by immunostaining using antibodies against cortical neuron-specific biomarkers. Ethanol-induced gene expression changes were determined by reverse-transcription quantitative polymerase chain reaction (RT-qPCR). After a 7-day ethanol (50 mM) exposure followed by a 24-hour ethanol withdrawal treatment, five of the above nine genes (including all four NMDA receptor subunit genes) were highly upregulated (GRIN1: 1.93-fold, P = 0.003; GRIN2A: 1.40-fold, P = 0.003; GRIN2B: 1.75-fold, P = 0.002; GRIN2D: 1.86-fold, P = 0.048; BCL2: 1.34-fold, P = 0.031), and the results of GRIN1, GRIN2A, and GRIN2B survived multiple comparison correction. Our findings suggest that alcohol responsive genes, particularly NMDA receptor genes, play an important role in regulating neuronal function and mediating chronic alcohol consumption-induced neuroadaptations. "	"Polymorphisms in MicroRNA Genes And Genes Involving in NMDAR Signaling and Schizophrenia: A Case-Control Study in Chinese Han Population. Disturbances in glutamate signaling caused by disruption of N-methyl-D-aspartate-type glutamate receptor (NMDAR) have been implicated in schizophrenia. Findings suggested that miR-219, miR-132 and miR-107 could involve in NMDAR signaling by influencing the expression of pathway genes or the signaling transmission and single nucleotide polymorphisms (SNPs) within miRNA genes or miRNA target sites could result in their functional changes. Therefore, we hypothesized that SNPs in miRNAs and/or their target sites were associated with schizophrenia. 3 SNPs in hsa-pri-miR-219/132/107 and 6 SNPs in 3'UTRs of GRIN2A/2B/3A and CAMK2G were selected and genotyped in a case-control study of 1041 schizophrenia cases and 953 healthy controls in Chinese Han population. In the present study, GRIN2B rs890 showed significant associations with schizophrenia. Further functional analyses showed that the rs890 variant C allele led to significantly lower luciferase activity, compared with the A allele. MDR analysis showed that a 4-locus model including rs107822, rs2306327, rs890 and rs12342026 was the best model. These findings suggest that GRIN2B may be associated with schizophrenia and interaction effects of the polymorphisms in hsa-miR-219, CAKM2G, GRIN2B and GRIN3A may confer susceptibility to schizophrenia in the Chinese Han population."	"Investigation of GRIN2A in common epilepsy phenotypes. Recently, mutations and deletions in the GRIN2A gene have been identified to predispose to benign and severe idiopathic focal epilepsies (IFE), revealing a higher incidence of GRIN2A alterations among the more severe phenotypes. This study aimed to explore the phenotypic boundaries of GRIN2A mutations by investigating patients with the two most common epilepsy syndromes: (i) idiopathic generalized epilepsy (IGE) and (ii) temporal lobe epilepsy (TLE). Whole exome sequencing data of 238 patients with IGE as well as Sanger sequencing of 84 patients with TLE were evaluated for GRIN2A sequence alterations. Two additional independent cohorts comprising 1469 IGE and 330 TLE patients were screened for structural deletions (&gt;40kb) involving GRIN2A. Apart from a presumably benign, non-segregating variant in a patient with juvenile absence epilepsy, neither mutations nor deletions were detected in either cohort. These findings suggest that mutations in GRIN2A preferentially are involved in genetic variance of pediatric IFE and do not contribute significantly to either adult focal epilepsies as TLE or generalized epilepsies. "	"Genome-wide association study of schizophrenia in Ashkenazi Jews. Schizophrenia is a common, clinically heterogeneous disorder associated with lifelong morbidity and early mortality. Several genetic variants associated with schizophrenia have been identified, but the majority of the heritability remains unknown. In this study, we report on a case-control sample of Ashkenazi Jews (AJ), a founder population that may provide additional insights into genetic etiology of schizophrenia. We performed a genome-wide association analysis (GWAS) of 592 cases and 505 controls of AJ ancestry ascertained in the US. Subsequently, we performed a meta-analysis with an Israeli AJ sample of 913 cases and 1640 controls, followed by a meta-analysis and polygenic risk scoring using summary results from Psychiatric GWAS Consortium 2 schizophrenia study. The U.S. AJ sample showed strong evidence of polygenic inheritance (pseudo-R(2) ∼9.7%) and a SNP-heritability estimate of 0.39 (P = 0.00046). We found no genome-wide significant associations in the U.S. sample or in the combined US/Israeli AJ meta-analysis of 1505 cases and 2145 controls. The strongest AJ specific associations (P-values in 10(-6) -10(-7) range) were in the 22q 11.2 deletion region and included the genes TBX1, GLN1, and COMT. Supportive evidence (meta P &lt; 1 × 10(-4) ) was also found for several previously identified genome-wide significant findings, including the HLA region, CNTN4, IMMP2L, and GRIN2A. The meta-analysis of the U.S. sample with the PGC2 results provided initial genome-wide significant evidence for six new loci. Among the novel potential susceptibility genes is PEPD, a gene involved in proline metabolism, which is associated with a Mendelian disorder characterized by developmental delay and cognitive deficits."	"Investigation of genes important in neurodevelopment disorders in adult human brain. Several neurodevelopmental disorders (NDDs) are caused by mutations in genes expressed in fetal brain, but little is known about these same genes in adult human brain. Here, we test the hypothesis that genes associated with NDDs continue to have a role in adult human brain to explore the idea that NDD symptoms may be partially a result of their adult function rather than just their neurodevelopmental function. To demonstrate adult brain function, we performed expression analyses and ChIPseq in human neural stem cell(NSC) lines at different developmental stages and adult human brain, targeting two genes associated with NDDs, SATB2 and EHMT1, and the WNT signaling gene TCF7L2, which has not been associated with NDDs. Analysis of DNA interaction sites in neural stem cells reveals high (40-50 %) overlap between proliferating and differentiating cells for each gene in temporal space. Studies in adult brain demonstrate that consensus sites are similar to NSCs but occur at different genomic locations. We also performed expression analyses using BrainSpan data for NDD-associated genes SATB2, EHMT1, FMR1, MECP2, MBD5, CTNND2, RAI1, CHD8, GRIN2A, GRIN2B, TCF4, SCN2A, and DYRK1A and find high expression of these genes in adult brain, at least comparable to developing human brain, confirming that genes associated with NDDs likely have a role in adult tissue. Adult function of genes associated with NDDs might be important in clinical disease presentation and may be suitable targets for therapeutic intervention."	"Sex differences in glutamate receptor gene expression in major depression and suicide. Accumulating data indicate that the glutamate system is disrupted in major depressive disorder (MDD), and recent clinical research suggests that ketamine, an antagonist of the N-methyl-d-aspartate (NMDA) glutamate receptor (GluR), has rapid antidepressant efficacy. Here we report findings from gene expression studies of a large cohort of postmortem subjects, including subjects with MDD and controls. Our data reveal higher expression levels of the majority of glutamatergic genes tested in the dorsolateral prefrontal cortex (DLPFC) in MDD (F21,59=2.32, P=0.006). Posthoc data indicate that these gene expression differences occurred mostly in the female subjects. Higher expression levels of GRIN1, GRIN2A-D, GRIA2-4, GRIK1-2, GRM1, GRM4, GRM5 and GRM7 were detected in the female patients with MDD. In contrast, GRM5 expression was lower in male MDD patients relative to male controls. When MDD suicides were compared with MDD non-suicides, GRIN2B, GRIK3 and GRM2 were expressed at higher levels in the suicides. Higher expression levels were detected for several additional genes, but these were not statistically significant after correction for multiple comparisons. In summary, our analyses indicate a generalized disruption of the regulation of the GluRs in the DLPFC of females with MDD, with more specific GluR alterations in the suicides and in the male groups. These data reveal further evidence that, in addition to the NMDA receptor, the AMPA, kainate and the metabotropic GluRs may be targets for the development of rapidly acting antidepressant drugs. "	"Transcriptome comparison in the pituitary-adrenal axis between Beagle and Chinese Field dogs after chronic stress exposure. Chronic stress can induce a series of maladjustments, and the response to stress is partly regulated by the hypothalamus-pituitary-adrenal axis. The aim of this study was to investigate the genetic mechanisms of this axis regulating stress responsiveness. The pituitary and adrenal cortex of Beagle and Chinese Field Dog (CFD) from a stress exposure group [including Beagle pituitary 1 (BP1), CFD pituitary 1 (CFDP1), Beagle adrenal cortex 1 (BAC1), CFD adrenal cortex 1 (CFDAC1)] and a control group [including Beagle pituitary 2 (BP2), CFD pituitary 2 (CFDP2), Beagle adrenal cortex 2 (BAC2), CFD adrenal cortex 2 (CFDAC2)], selected to perform RNA-seq transcriptome comparisons, showed that 40, 346, 376, 69, 70, 38, 57 and 71 differentially expressed genes were detected in BP1 vs. BP2, CFDP1 vs. CFDP2, BP1 vs. CFDP1, BP2 vs. CFDP2, BAC1 vs. BAC2, CFDAC1 vs. CFDAC2, BAC1 vs. CFDAC1 and BAC2 vs. CFDAC2 respectively. NPB was a gene common to BAC1 vs. BAC2 and CFDAC1 vs. CFDAC2, indicating it was a potential gene affecting response to chronic stress, regardless of the extent of chronic stress induced. PLP1 was a gene common to BP1 vs. CFDP1 and BP2 vs. CFDP2, suggesting its important roles in affecting the stress-tolerance difference between the two breeds, regardless of whether there was stress exposure or not. Pathway analysis found 12, 4, 11 and 1 enriched pathway in the comparisons of BP1 vs. CFDP1, BP2 vs. CFDP2, CFDP1 vs. CFDP2 and BAC1 vs. BAC2 respectively. Glutamatergic synapse, neuroactive ligand-receptor interaction, retrograde endocannabinoid signaling, GABAergic synapse, calcium signaling pathway and dopaminergic synapse were the most significantly enriched pathways in both CFDP1 vs. CFDP2 and BP1 vs. CFDP1. GO, KEGG pathway and gene network analysis demonstrated that GRIA3, GRIN2A, GRIN2B and NPY were important in regulating the stress response in CFD. Nevertheless, ADORA1, CAMK2A, GRM1, GRM7 and NR4A1 might be critical genes contributing to the stress-tolerance difference between CFD and Beagle when subjected to stress exposure. In addition, RGS4 and SYN1 might play important roles both in regulating the stress response in CFD and in affecting the stress-tolerance difference in different breeds. These observations clearly showed that some genes in the adrenal cortex and pituitary could regulate the stress response in Beagle and CFDs, whereas some others could affect the stress-tolerance difference between these two breeds. Our results can contribute to a more comprehensive understanding of the genetic mechanisms of response to chronic stress. "	"Exploring Genetic Factors Involved in Huntington Disease Age of Onset: E2F2 as a New Potential Modifier Gene. Age of onset (AO) of Huntington disease (HD) is mainly determined by the length of the CAG repeat expansion (CAGexp) in exon 1 of the HTT gene. Additional genetic variation has been suggested to contribute to AO, although the mechanism by which it could affect AO is presently unknown. The aim of this study is to explore the contribution of candidate genetic factors to HD AO in order to gain insight into the pathogenic mechanisms underlying this disorder. For that purpose, two AO definitions were used: the earliest age with unequivocal signs of HD (earliest AO or eAO), and the first motor symptoms age (motor AO or mAO). Multiple linear regression analyses were performed between genetic variation within 20 candidate genes and eAO or mAO, using DNA and clinical information of 253 HD patients from REGISTRY project. Gene expression analyses were carried out by RT-qPCR with an independent sample of 35 HD patients from Basque Country Hospitals. We found suggestive association signals between HD eAO and/or mAO and genetic variation within the E2F2, ATF7IP, GRIN2A, GRIN2B, LINC01559, HIP1 and GRIK2 genes. Among them, the most significant was the association between eAO and rs2742976, mapping to the promoter region of E2F2 transcription factor. Furthermore, rs2742976 T allele patient carriers exhibited significantly lower lymphocyte E2F2 gene expression, suggesting a possible implication of E2F2-dependent transcriptional activity in HD pathogenesis. Thus, E2F2 emerges as a new potential HD AO modifier factor. "	"Genetics of pediatric epilepsy. As the genetic etiologies of an expanding number of epilepsy syndromes are revealed, the complexity of the phenotype genotype correlation increases. As our review will show, multiple gene mutations cause different epilepsy syndromes, making identification of the specific mutation increasingly more important for prognostication and often more directed treatment. Examples of that include the need to avoid specific drugs in Dravet syndrome and the ongoing investigations of the potential use of new directed therapies such as retigabine in KCNQ2-related epilepsies, quinidine in KCNT1-related epilepsies, and memantine in GRIN2A-related epilepsies. "	"Stress during pregnancy alters dendritic spine density and gene expression in the brain of new-born lambs. Rodent studies show how prenatal stress (PS) can alter morphology in the cortico-limbic structures that support emotional and cognitive functions. PS-induced alteration is less well described in species with a gyrencephalic brain and complex earlier fetal development, and never in sheep at birth to rule out postnatal environment effects or influences of maternal behavior. This study aimed to assess the consequences of a mild chronic stress in pregnant ewes on the neurobiological development of their lambs at birth. During the last third of gestation, 7 ewes were exposed daily to various unpredictable and negative routine management-based challenges (stressed group), while 7 other ewes were housed without any additional perturbation (control group). For each group, a newborn from each litter was sacrificed at birth to collect its brain and analyze its expression levels of genes involved in neuronal dendritic morphology (Dlg4, Rac1, RhoA, Doc2b), synaptic transmission (Nr1, Grin2A, Grin2B) and glucocorticoid receptor (Nr3C1) in hippocampus (HPC), prefrontal cortex (PFC) and amygdala (AMYG). Results revealed that lambs from stressed dam (PS lambs) showed under-expression of Rac1 and Nr1 in PFC and overexpression of Dlg4 in AMYG compared to controls. To assess the morphological consequences of gene dysregulations, the dendritic morphology of pyramidal neurons was explored by Golgi-Cox staining in HPC and PFC. PS lambs had higher dendritic spine density in both structures and more stubby-type spines in the CA1 area of HPC than controls. This is the first demonstration in sheep that PS alters fetal brain, possibly reflecting functional changes in synaptic transmission to cope with adversity experienced in fetal life. "	"Epilepsy genetics: the ongoing revolution. Epilepsies have long remained refractory to gene identification due to several obstacles, including a highly variable inter- and intrafamilial expressivity of the phenotypes, a high frequency of phenocopies, and a huge genetic heterogeneity. Recent technological breakthroughs, such as array comparative genomic hybridization and next generation sequencing, have been leading, in the past few years, to the identification of an increasing number of genomic regions and genes in which mutations or copy-number variations cause various epileptic disorders, revealing an enormous diversity of pathophysiological mechanisms. The field that has undergone the most striking revolution is that of epileptic encephalopathies, for which most of causing genes have been discovered since the year 2012. Some examples are the continuous spike-and-waves during slow-wave sleep and Landau-Kleffner syndromes for which the recent discovery of the role of GRIN2A mutations has finally confirmed the genetic bases. These new technologies begin to be used for diagnostic applications, and the main challenge now resides in the interpretation of the huge mass of variants detected by these methods. The identification of causative mutations in epilepsies provides definitive confirmation of the clinical diagnosis, allows accurate genetic counselling, and sometimes permits the development of new appropriate and specific antiepileptic therapies. Future challenges include the identification of the genetic or environmental factors that modify the epileptic phenotypes caused by mutations in a given gene and the understanding of the role of somatic mutations in sporadic epilepsies. "	"Correlation of functional GRIN2A gene promoter polymorphisms with schizophrenia and serum D-serine levels. Schizophrenia is a severe, complex mental disorder. Abnormal glutamate neurotransmission mediated by decreased expression of N-methyl-d-aspartic acid receptors (NMDArs) and its endogenous co-agonist d-serine (d-Ser) has been proposed as one of the hypotheses of the pathogenesis of schizophrenia. GRIN2A gene promoter polymorphism causes changes in the regulation of the expression of NMDAr subunit genes. Our study is aimed at evaluating a possible association between GRIN2A promoter GT polymorphisms and schizophrenia in the Han Chinese population in Shaanxi and the relationship between serum d-Ser levels and GRIN2A (GT)n in schizophrenia. Four hundred and twenty patients with schizophrenia and 410 healthy individuals were recruited in this study and GRIN2A (GT)n repeats as well as serum d-Ser levels were measured in all of the subjects. Nineteen alleles were found in (GT)n locus. The allele frequency of (GT)21, (GT)22 and (GT)23 in schizophrenic subjects was significantly lower compared with the mentally healthy controls, while the allele (GT)26 was significantly more frequent than in normal persons. Transcriptional activity of GRIN2A promoter was gradually suppressed with the increase in the length of the (GT)n repeats. d-Ser levels in the serum of the GRIN2A (GT)21 schizophrenic patients were significantly lower than those of the GRIN2A (GT)21 healthy control. A significant correlation between serum d-Ser levels and GRIN2A (GT)21 in schizophrenia was detected. GRIN2A (GT)21 may play a significant role in the etiology of schizophrenia among the Chinese Han population of Shaanxi."	"CREB-BDNF pathway influences alcohol cue-elicited activation in drinkers. Alcohol use disorder (AUD) is suggested to have polygenic risk factors and also exhibits neurological complications, strongly encouraging a translational study to explore the associations between aggregates of genetic variants and brain function alterations related to alcohol use. In this study, we used a semiblind multivariate approach, parallel independent component analysis with multiple references (pICA-MR) to investigate relationships of genome-wide single nucleotide polymorphisms with alcohol cue-elicited brain activations in 315 heavy drinkers, where pICA-MR assesses multiple reference genes for their architecture and functional influences on neurobiological conditions. The genetic component derived from the cAMP-response element-binding protein and -brain derived neurotrophic factor (CREB-BDNF) pathway reference was significantly associated (r = -0.38, P = 3.98 × 10(-12) ) with an imaging component reflecting hyperactivation in precuneus, superior parietal lobule, and posterior cingulate for drinkers with more severe alcohol dependence symptoms. The highlighted brain regions participate in many cognitive processes and have been robustly implicated in craving-related studies. The genetic factor highlighted the CREB and BDNF references, as well as other genes including GRM5, GRM7, GRID1, GRIN2A, PRKCA, and PRKCB. Ingenuity Pathway Analysis indicated that the genetic component was enriched in synaptic plasticity, GABA, and protein kinase A signaling. Collectively, our findings suggest that genetic variations in various neural plasticity and signaling pathways partially explain the variance of precuneus reactivity to alcohol cues which appears to be associated with AUD severity."	"New genes for focal epilepsies with speech and language disorders. The last 2 years have seen exciting advances in the genetics of Landau-Kleffner syndrome and related disorders, encompassed within the epilepsy-aphasia spectrum (EAS). The striking finding of mutations in the N-methyl-D-aspartate (NMDA) receptor subunit gene GRIN2A as the first monogenic cause in up to 20% of patients with EAS suggests that excitatory glutamate receptors play a key role in these disorders. Patients with GRIN2A mutations have a recognizable speech and language phenotype that may assist with diagnosis. Other molecules involved in RNA binding and cell adhesion have been implicated in EAS; copy number variations are also found. The emerging picture highlights the overlap between the genetic determinants of EAS with speech and language disorders, intellectual disability, autism spectrum disorders and more complex developmental phenotypes."	"Ionotropic GABA and Glutamate Receptor Mutations and Human Neurologic Diseases. The advent of whole exome/genome sequencing and the technology-driven reduction in the cost of next-generation sequencing as well as the introduction of diagnostic-targeted sequencing chips have resulted in an unprecedented volume of data directly linking patient genomic variability to disorders of the brain. This information has the potential to transform our understanding of neurologic disorders by improving diagnoses, illuminating the molecular heterogeneity underlying diseases, and identifying new targets for therapeutic treatment. There is a strong history of mutations in GABA receptor genes being involved in neurologic diseases, particularly the epilepsies. In addition, a substantial number of variants and mutations have been found in GABA receptor genes in patients with autism, schizophrenia, and addiction, suggesting potential links between the GABA receptors and these conditions. A new and unexpected outcome from sequencing efforts has been the surprising number of mutations found in glutamate receptor subunits, with the GRIN2A gene encoding the GluN2A N-methyl-d-aspartate receptor subunit being most often affected. These mutations are associated with multiple neurologic conditions, for which seizure disorders comprise the largest group. The GluN2A subunit appears to be a locus for epilepsy, which holds important therapeutic implications. Virtually all α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptor mutations, most of which occur within GRIA3, are from patients with intellectual disabilities, suggesting a link to this condition. Similarly, the most common phenotype for kainate receptor variants is intellectual disability. Herein, we summarize the current understanding of disease-associated mutations in ionotropic GABA and glutamate receptor families, and discuss implications regarding the identification of human mutations and treatment of neurologic diseases. "	"Targeting the schizophrenia genome: a fast track strategy from GWAS to clinic. The Psychiatric Genomics Consortium-Schizophrenia Workgroup (PGC-SCZ) has recently published a genomewide association study (GWAS) identifying &gt;100 genetic loci, encompassing a total of 341 protein-coding genes, attaining genomewide significance for susceptibility to schizophrenia. Given the extremely long time (12-15 years) and expense (&gt;$1 billion) associated with the development of novel drug targets, repurposing of drugs with known and validated targets may be the most expeditious path toward deriving clinical utility from these GWAS findings. In the present study, we examined all genes within loci implicated by the PGC-SCZ GWAS against databases of targets of both approved and registered pharmaceutical compounds. We identified 20 potential schizophrenia susceptibility genes that encode proteins that are the targets of approved drugs. Of these, we prioritized genes/targets that are of clear neuropsychiatric interest and that are also sole members of the linkage disequilibrium block surrounding a PGC-SCZ GWAS hit. In addition to DRD2, 5 genes meet these criteria: CACNA1C, CACNB2, CACNA1I, GRIN2A and HCN1. An additional 20 genes coding for proteins that are the targets of drugs in registered clinical trials, but without approved indications, were also identified. Although considerable work is still required to fully explicate the biological implications of the PGC-SCZ GWAS results, pathways related to these known, druggable targets may represent a promising starting point. "	"Context-induced reinstatement of methamphetamine seeking is associated with unique molecular alterations in Fos-expressing dorsolateral striatum neurons. Context-induced reinstatement of drug seeking is a well established animal model for assessing the neural mechanisms underlying context-induced drug relapse, a major factor in human drug addiction. Neural activity in striatum has previously been shown to contribute to context-induced reinstatement of heroin, cocaine, and alcohol seeking, but not yet for methamphetamine seeking. In this study, we found that context-induced reinstatement of methamphetamine seeking increased expression of the neural activity marker Fos in dorsal but not ventral striatum. Reversible inactivation of neural activity in dorsolateral but not dorsomedial striatum using the GABA agonists muscimol and baclofen decreased context-induced reinstatement. Based on our previous findings that Fos-expressing neurons play a critical role in conditioned drug effects, we assessed whether context-induced reinstatement was associated with molecular alterations selectively induced within context-activated Fos-expressing neurons. We used fluorescence-activated cell sorting to isolate reinstatement-activated Fos-positive neurons from Fos-negative neurons in dorsal striatum and used quantitative PCR to assess gene expression within these two populations of neurons. Context-induced reinstatement was associated with increased expression of the immediate early genes Fos and FosB and the NMDA receptor subunit gene Grin2a in only Fos-positive neurons. RNAscope in situ hybridization confirmed that Grin2a, as well as Grin2b, expression were increased in only Fos-positive neurons from dorsolateral, but not dorsomedial, striatum. Our results demonstrate an important role of dorsolateral striatum in context-induced reinstatement of methamphetamine seeking and that this reinstatement is associated with unique gene alterations in Fos-expressing neurons. "	"Exome sequencing unravels unexpected differential diagnoses in individuals with the tentative diagnosis of Coffin-Siris and Nicolaides-Baraitser syndromes. Coffin-Siris syndrome (CSS) and Nicolaides-Baraitser syndrome (NCBRS) are rare intellectual disability/congenital malformation syndromes that represent distinct entities but show considerable clinical overlap. They are caused by mutations in genes encoding members of the BRG1- and BRM-associated factor (BAF) complex. However, there are a number of patients with the clinical diagnosis of CSS or NCBRS in whom the causative mutation has not been identified. In this study, we performed trio-based whole-exome sequencing (WES) in ten previously described but unsolved individuals with the tentative diagnosis of CSS or NCBRS and found causative mutations in nine out of ten individuals. Interestingly, our WES analysis disclosed overlapping differential diagnoses including Wiedemann-Steiner, Kabuki, and Adams-Oliver syndromes. In addition, most likely causative de novo mutations were identified in GRIN2A and SHANK3. Moreover, trio-based WES detected SMARCA2 and SMARCA4 deletions, which had not been annotated in a previous Haloplex target enrichment and next-generation sequencing of known CSS/NCBRS genes emphasizing the advantages of WES as a diagnostic tool. In summary, we discuss the phenotypic and diagnostic challenges in clinical genetics, establish important differential diagnoses, and emphasize the cardinal features and the broad clinical spectrum of BAF complex disorders and other disorders caused by mutations in epigenetic landscapers. "	"VAV3 Overexpressed in Cancer Stem Cells Is a Poor Prognostic Indicator in Ovarian Cancer Patients. Ovarian carcinoma is a highly lethal malignancy due to frequent relapse and drug resistance. Cancer stem cells (CSCs) are thought to contribute significantly to disease relapse and drug resistance. In this study, a subpopulation of CSCs of ovarian carcinoma was isolated and the genes differentially expressed in these cells were identified to characterize CSCs and to find candidate biomarkers. Ovarian carcinoma cells from patients were primarily cultured, and spheroid-forming cells (SFCs) were isolated. The characteristic genes of SFCs were identified through cDNA microarray and validation by quantitative real-time polymerase chain reaction and immunohistochemistry, and the association of their expression with clinicopathologic parameters was analyzed. GSC (4.26-fold), VAV3 (7.05-fold), FOXA2 (12.06-fold), LEF1 (17.26-fold), COMP (21.33-fold), GRIN2A (9.36-fold), CD86 (23.14-fold), PYY (4.18-fold), NKX3-2 (10.35-fold), and PDK4 (74.26-fold) were significantly upregulated in SFCs compared with parental cancer cells. With validation for human ovarian carcinomas, LEF1, PYY, NKX3-2, and WNT3A were significantly upregulated in chemoresistant cancers compared with chemosensitive cancers. Overexpression of LEF1, VAV3, and NKX3-2 was significantly associated with distant metastasis by immunohistochemistry. VAV3 overexpression was an independent poor survival indicator (hazard ratio=15.27, P&lt;0.05) by multivariate Cox analysis. The further functional assay revealed that VAV3 knockdown regulated CSC activation and ovarian cancer cell proliferation and sensitized paclitaxel (PTX)-resistant cancer cells to PTX treatment. Taken together, we identified by high-throughput analysis of CSCs that VAV3 overexpression is a novel biomarker for poor prognosis and survival in ovarian carcinoma. "	"The genetic basis of new treatment modalities in melanoma. In recent years, intracellular signal transduction via RAS-RAF-MEK-ERK has been successfully targeted in new treatment approaches for melanoma using small molecule inhibitors against activated BRAF (V600E mutation) and activated MEK1/2. Also mutated c-KIT has been identified as a promising target. Meanwhile, evidence has been provided that combinations between BRAF inhibitors and MEK1/2 inhibitors are more promising than single-agent treatments. Moreover, new treatment algorithms favor sequential treatment using BRAF inhibitors and newly developed immunotherapies targeting common T lymphocyte antigen 4 (CTLA-4) or programmed cell death 1 (PD-1). In depth molecular analyses have uncovered new mechanisms of treatment resistance and recurrence, which may impact on future treatment decisions. Moreover, next-generation sequencing data have shown that recurrent lesions harbor specific genetic aberrations. At the same time, high throughput sequencing studies of melanoma unraveled a series of new treatment candidates for future treatment approaches such as ERBB4, GRIN2A, GRM3, and RAC1. More recent bioinformatic technologies provided genetic evidence for extensive tumor heterogeneity and tumor clonality of solid tumors, which might also be of relevance for melanoma. However, these technologies have not yet been applied to this tumor. In this review, an overview on the genetic basis of current treatment of melanoma, treatment resistance and recurrences including new treatment perspectives based on recent high-throughput sequencing data is provided. Moreover, future aspects of individualized treatment based on each patient's individual mutational landscape are discussed. "	"Clinical and molecular delineation of a 16p13.2p13.13 microduplication. The 16p13.3p13.1 region has been reported as a &quot;critical&quot; hotspot region for recurrent microdeletions/duplications, which may contribute to epilepsy, learning difficulties and facial dysmorphisms. Cytogenetic and array-CGH analyses were performed because of the clinical characteristics of the patient. The girl showed de novo 16p13.3p13.13 duplication spanning a region of ∼5.3 Mb. She presented brain anomalies, intellectual disability, epilepsy, facial and vertebral dysmorphisms. To our knowledge, this is the first reported case of 16p13.3p13.13 duplication; only three patients with an overlapping deletion in 16p13.2p13.13 were previously described. The duplicated region contains 21 OMIM genes and, six of them (RBFOX1, TMEM114, ABAT, PMM2, GRIN2A and, LITAF) were found to be associated with known diseases. Although no duplication of these genes has been described in the literature, we discuss here if they had some role in determining phenotype of our patient."	"GRIN2A: an aptly named gene for speech dysfunction. To delineate the specific speech deficits in individuals with epilepsy-aphasia syndromes associated with mutations in the glutamate receptor subunit gene GRIN2A. We analyzed the speech phenotype associated with GRIN2A mutations in 11 individuals, aged 16 to 64 years, from 3 families. Standardized clinical speech assessments and perceptual analyses of conversational samples were conducted. Individuals showed a characteristic phenotype of dysarthria and dyspraxia with lifelong impact on speech intelligibility in some. Speech was typified by imprecise articulation (11/11, 100%), impaired pitch (monopitch 10/11, 91%) and prosody (stress errors 7/11, 64%), and hypernasality (7/11, 64%). Oral motor impairments and poor performance on maximum vowel duration (8/11, 73%) and repetition of monosyllables (10/11, 91%) and trisyllables (7/11, 64%) supported conversational speech findings. The speech phenotype was present in one individual who did not have seizures. Distinctive features of dysarthria and dyspraxia are found in individuals with GRIN2A mutations, often in the setting of epilepsy-aphasia syndromes; dysarthria has not been previously recognized in these disorders. Of note, the speech phenotype may occur in the absence of a seizure disorder, reinforcing an important role for GRIN2A in motor speech function. Our findings highlight the need for precise clinical speech assessment and intervention in this group. By understanding the mechanisms involved in GRIN2A disorders, targeted therapy may be designed to improve chronic lifelong deficits in intelligibility."	"Aberrant NMDA receptor DNA methylation detected by epigenome-wide analysis of hippocampus and prefrontal cortex in major depression. Current perspectives on the molecular underpinnings of major depressive disorder (MDD) posit a mechanistic role of epigenetic DNA modifications in mediating the interaction between environmental risk factors and a genetic predisposition. However, conclusive evidence for differential methylation signatures in the brain's epigenome of MDD patients as compared to controls is still lacking. To address this issue, we conducted a pilot study including an epigenome-wide methylation analysis in six individuals diagnosed with recurrent MDD and six control subjects matched for age and gender, with a priori focus on the hippocampus and prefrontal cortex as pathophysiologically relevant candidate regions. Our analysis revealed differential methylation profiles of 11 genes in hippocampus and 20 genes in prefrontal cortex, five of which were selected for replication of the methylation status using pyrosequencing. Among these replicated targets, GRIN2A was found to be hypermethylated in both prefrontal cortex and hippocampus. This finding may be of particular functional relevance as GRIN2A encodes the glutamatergic N-methyl-D-aspartate receptor subunit epsilon-1 (NR2A) and is known to be involved in a plethora of synaptic plasticity-related regulatory processes probably disturbed in MDD. "	"Differential effects between one week and four weeks exposure to same mass of SO2 on synaptic plasticity in rat hippocampus. Sulfur dioxide (SO2 ) is a ubiquitous air pollutant. The previous studies have documented the adverse effects of SO2 on nervous system health, suggesting that acutely SO2 inhalation at high concentration may be associated with neurotoxicity and increase risk of hospitalization and mortality of many brain disorders. However, the remarkable features of air pollution exposure are lifelong duration and at low concentration; and it is rarely reported that whether there are different responses on synapse when rats inhaled same mass of SO2 at low concentration with a longer term. In this study, we evaluated the synaptic plasticity in rat hippocampus after exposure to same mass of SO2 at various concentrations and durations (3.5 and 7 mg/m(3) , 6 h/day, for 4 weeks; and 14 and 28 mg/m(3) , 6 h/day, for 1 week). The results showed that the mRNA level of synaptic plasticity marker Arc, glutamate receptors (GRIA1, GRIA2, GRIN1, GRIN2A, and GRIN2B) and the protein expression of memory related kinase p-CaMKпα were consistently inhibited by SO2 both in 1 week and 4 weeks exposure cases; the protein expression of presynaptic marker synaptophysin, postsynaptic density protein 95 (PSD-95), protein kinase A (PKA), and protein kinase C (PKC) were increased in 1 week exposure case, and decreased in 4 weeks exposure case. Our results indicated that SO2 inhalation caused differential synaptic injury in 1 week and 4 weeks exposure cases, and implied the differential effects might result from different PKA- and/or PKC-mediated signal pathway. © 2014 Wiley Periodicals, Inc. Environ Toxicol 31: 820-829, 2016. "	"Molecular characterization of a cohort of 73 patients with infantile spasms syndrome. Infantile Spasms syndrome (ISs) is a characterized by epileptic spasms occurring in clusters with an onset in the first year of life. West syndrome represents a subset of ISs that associates spasms in clusters, a hypsarrhythmia EEG pattern and a developmental arrest or regression. Aetiology of ISs is widely heterogeneous including many genetic causes. Many patients, however, remain without etiological diagnosis, which is critical for prognostic purpose and genetic counselling. In the present study, we performed genetic screening of 73 patients with different types of ISs by array-CGH and molecular analysis of 5 genes: CDKL5, STXBP1, KCNQ2, and GRIN2A, whose mutations cause different types of epileptic encephalopathies, including ISs, as well as MAGI2, which was suggested to be related to a subset of ISs. In total, we found a disease-causing mutation or CNV (Copy Number Variation) in 15% of the patients. These included 6 point mutations found in CDKL5 (n = 3) and STXBP1 (n = 3), 3 microdeletions (10 Mb in 2q24.3, 3.2 Mb in 5q14.3 including the region upstream to MEF2C, and 256 kb in 9q34 disrupting EHMT1), and 2 microduplications (671 kb in 2q24.3 encompassing SCN2A, and 11.93 Mb in Xq28). In addition, we discuss 3 CNVs as potential risk factors, including one 16p12.1 deletion, one intronic deletion of the NEDD4 gene, and one intronic deletion of CALN1 gene. The present findings highlight the efficacy of combined cytogenetic and targeted mutation screening to improve the diagnostic yield in patient with ISs. "	"Transcriptional evidence for the role of chronic venlafaxine treatment in neurotrophic signaling and neuroplasticity including also Glutamatergic [corrected] - and insulin-mediated neuronal processes. Venlafaxine (VLX), a serotonine-noradrenaline reuptake inhibitor, is one of the most commonly used antidepressant drugs in clinical practice for the treatment of major depressive disorder (MDD). Despite being more potent than its predecessors, similarly to them, the therapeutical effect of VLX is visible only 3-4 weeks after the beginning of treatment. Furthermore, recent papers show that antidepressants, including also VLX, enhance the motor recovery after stroke even in non depressed persons. In the present, transcriptomic-based study we looked for changes in gene expressions after a long-term VLX administration. Osmotic minipumps were implanted subcutaneously into Dark Agouti rats providing a continuous (40 mg/kg/day) VLX delivery for three weeks. Frontal regions of the cerebral cortex were isolated and analyzed using Illumina bead arrays to detect genes showing significant chances in expression. Gene set enrichment analysis was performed to identify specific regulatory networks significantly affected by long term VLX treatment. Chronic VLX administration may have an effect on neurotransmitter release via the regulation of genes involved in vesicular exocytosis and receptor endocytosis (such as Kif proteins, Myo5a, Sv2b, Syn2 or Synj2). Simultaneously, VLX activated the expression of genes involved in neurotrophic signaling (Ntrk2, Ntrk3), glutamatergic transmission (Gria3, Grin2b and Grin2a), neuroplasticity (Camk2g/b, Cd47), synaptogenesis (Epha5a, Gad2) and cognitive processes (Clstn2). Interestingly, VLX increased the expression of genes involved in mitochondrial antioxidant activity (Bcl2 and Prdx1). Additionally, VLX administration also modulated genes related to insulin signaling pathway (Negr1, Ppp3r1, Slc2a4 and Enpp1), a mechanism that has recently been linked to neuroprotection, learning and memory. Our results strongly suggest that chronic VLX treatment improves functional reorganization and brain plasticity by influencing gene expression in regulatory networks of motor cortical areas. These results are consonant with the synaptic (network) hypothesis of depression and antidepressant-induced motor recovery after stroke."	"Lack of replication of the GRIN2A-by-coffee interaction in Parkinson disease. NA"	"Glutamate receptor gene GRIN2A, coffee, and Parkinson disease. NA"	"Functional polymorphisms of the glutamate receptor N-methyl D-aspartate 2A gene are associated with heroin addiction. Heroin dependence is a debilitating psychiatric disorder with a complex inheritance mechanism. Genetic polymorphisms in functional regions of the glutamate receptor, N-methyl D-aspartate 2A (GRIN2A) gene, which encodes the 2A subunit of the N-methyl D-aspartate (NMDA) receptor, may modulate the risk of heroin addiction. We investigated the potential association between 8 single nucleotide polymorphisms (SNPs) of the GRIN2A gene (SNPs rs3219790, rs1014531, rs8044472, rs8045712, rs9933624, rs9940680, rs1420040, and rs767749) and heroin addiction using the MassARRAY system and GeneScan. A total of 405 heroin-addicted patients and 397 healthy control subjects were recruited for this study. Statistically significant differences were observed for rs3219790 in the promoter region of the GRIN2A gene. The frequency of the (GT)26 repeats in the heroin addiction group was significantly higher than that in the control group [X(2) = 5.475, P = 0.019, odds ratio (OR) = 1.367, 95% confidence interval (CI) = 1.051-1.776]. Strong linkage disequilibrium was observed in block 1 (D' &gt; 0.9). However, significant evidence of linkage disequilibrium was not observed between the 7 SNPs in our sample population. These data suggest that GRIN2A gene polymorphisms confer susceptibility to heroin addiction and support the hypothesis that dysfunction of GRIN2A is involved in the pathophysiological process of heroin addiction."	"What causes aberrant salience in schizophrenia? A role for impaired short-term habituation and the GRIA1 (GluA1) AMPA receptor subunit. The GRIA1 locus, encoding the GluA1 (also known as GluRA or GluR1) AMPA glutamate receptor subunit, shows genome-wide association to schizophrenia. As well as extending the evidence that glutamatergic abnormalities have a key role in the disorder, this finding draws attention to the behavioural phenotype of Gria1 knockout mice. These mice show deficits in short-term habituation. Importantly, under some conditions the attention being paid to a recently presented neutral stimulus can actually increase rather than decrease (sensitization). We propose that this mouse phenotype represents a cause of aberrant salience and, in turn, that aberrant salience (and the resulting positive symptoms) in schizophrenia may arise, at least in part, from a glutamatergic genetic predisposition and a deficit in short-term habituation. This proposal links an established risk gene with a psychological process central to psychosis and is supported by findings of comparable deficits in short-term habituation in mice lacking the NMDAR receptor subunit Grin2a (which also shows association to schizophrenia). As aberrant salience is primarily a dopaminergic phenomenon, the model supports the view that the dopaminergic abnormalities can be downstream of a glutamatergic aetiology. Finally, we suggest that, as illustrated here, the real value of genetically modified mice is not as 'models of schizophrenia' but as experimental tools that can link genomic discoveries with psychological processes and help elucidate the underlying neural mechanisms. "	"miR-137, a new target for post-stroke depression? Expression of miR-137 is downregulated in brain tissue from patients with depression and suicidal behavior, and is also downregulated in peripheral blood from stroke patients. However, it is not yet known if miR-137 acts as a bridge between stroke and depression. To test this, we used middle cerebral artery occlusion and chronic mild stress to establish a post-stroke depression model in rats. Compared with controls, we found significantly lower miR-137 levels in the brain and peripheral blood from post-stroke depression rats. Injection of a miR-137 antagonist into the brain ventricles upregulated miR-137 levels, and improved behavioral changes in post-stroke depression rats. Luciferase assays showed miR-137 bound to the 3'UTR of Grin2A, regulating Grin2A expression in a neuronal cell line. Grin2A gene overexpression in the brain of post-stroke depression rats, noticeably suppressed the inhibitory effect of miR-137 on post-stroke depression. Overall, our results show that miR-137 suppresses Grin2A protein expression through binding to Grin2A mRNA, thereby exerting an inhibitory effect on post-stroke depression. Our results offer a new therapeutic direction for post-stroke depression. "	"Whole-exome sequencing broadens the phenotypic spectrum of rare pediatric epilepsy: a retrospective study. Whole-exome sequencing (WES) has transformed our ability to detect mutations causing rare diseases. FORGE (Finding Of Rare disease GEnes) and Care4Rare Canada are nation-wide projects focused on identifying disease genes using WES and translating this technology to patient care. Rare forms of epilepsy are well-suited for WES and we retrospectively selected FORGE and Care4Rare families with clinical descriptions that included childhood-onset epilepsy or seizures not part of a recognizable syndrome or an early-onset encephalopathy where standard-of-care investigations were unrevealing. Nine families met these criteria and a diagnosis was made in seven, and potentially eight, of the families. In the eight families we identified mutations in genes associated with known neurological and epilepsy disorders: ASAH1, FOLR1, GRIN2A (two families), SCN8A, SYNGAP1 and SYNJ1. A novel and rare mutation was identified in KCNQ2 and was likely responsible for the benign seizures segregating in the family though additional evidence would be required to be definitive. In retrospect, the clinical presentation of four of the patients was considered atypical, thereby broadening the phenotypic spectrum of these conditions. Given the extensive clinical and genetic heterogeneity associated with epilepsy, our findings suggest that WES may be considered when a specific gene is not immediately suspected as causal. "	"Caffeine interaction with glutamate receptor gene GRIN2A: Parkinson's disease in Swedish population. A complex interplay between genetic and environmental factors is thought to be involved in the etiology of Parkinson's disease (PD). A recent genome-wide association and interaction study (GWAIS) identified GRIN2A, which encodes an NMDA-glutamate-receptor subunit involved in brain's excitatory neurotransmission, as a PD genetic modifier in inverse association with caffeine intake. Here in, we attempted to replicate the reported association of a single nucleotide polymorphism, GRIN2A_rs4998386, and its interaction with caffeine intake with PD in patient-control study in an ethnically homogenous population in southeastern Sweden, as consistent and independent genetic association studies are the gold standard for the validation of genome-wide association studies. All the subjects (193 sporadic PD patients and 377 controls) were genotyped, and the caffeine intake data was obtained by questionnaire. We observed an association between rs4998386 and PD with odds ratio (OR) of 0.61, 95% confidence intervals (CI) of 0.39-0.96, p = 0.03, under a model excluding rare TT allele. There was also a strong significance in joint effects of gene and caffeine on PD risk (TC heavy caffeine vs. CC light caffeine: OR = 0.38, 95%CI = [0.20-0.70], p = 0.002) and gene-caffeine interaction (OR = 0.998, 95%CI = [0.991-0.999], p&lt;0.001). Overall, our results are in support of the findings of the GWAIS and provided additional evidence indicating PD protective effects of coffee drinking/caffeine intake as well as the interaction with glutamate receptor genotypes."	"Whole-exome sequencing in an individual with severe global developmental delay and intractable epilepsy identifies a novel, de novo GRIN2A mutation. We present a 4-year-old girl with profound global developmental delay and refractory epilepsy characterized by multiple seizure types (partial complex with secondary generalization, tonic, myoclonic, and atypical absence). Her seizure semiology did not fit within a specific epileptic syndrome. Despite a broad metabolic and genetic workup, a diagnosis was not forthcoming. Whole-exome sequencing with a trio analysis (affected child compared to unaffected parents) was performed and identified a novel de novo missense mutation in GRIN2A, c.2449A&gt;G, p.Met817Val, as the likely cause of the refractory epilepsy and global developmental delay. GRIN2A encodes a subunit of N-methyl-d-aspartate (NMDA) receptor that mediates excitatory transmission in the central nervous system. A significant reduction in the frequency and the duration of her seizures was observed after the addition of topiramate over a 10-month period. Further prospective studies in additional patients with mutations in GRIN2A will be required to optimize seizure management for this rare disorder. This report expands the current phenotype associated with GRIN2A mutations."	"GRIN2A mutation and early-onset epileptic encephalopathy: personalized therapy with memantine. Early-onset epileptic encephalopathies have been associated with de novo mutations of numerous ion channel genes. We employed techniques of modern translational medicine to identify a disease-causing mutation, analyze its altered behavior, and screen for therapeutic compounds to treat the proband. Three modern translational medicine tools were utilized: 1) high-throughput sequencing technology to identify a novel de novo mutation; 2) in vitro expression and electrophysiology assays to confirm the variant protein's dysfunction; and 3) screening of existing drug libraries to identify potential therapeutic compounds. A de novo GRIN2A missense mutation (c.2434C&gt;A; p.L812M) increased the charge transfer mediated by NMDA receptors containing the mutant GluN2A-L812M subunit. In vitro analysis with NMDA receptor blockers indicated that GLuN2A-L812M-containing NMDARs retained their sensitivity to the use-dependent channel blocker memantine; while screening of a previously reported GRIN2A mutation (N615K) with these compounds produced contrasting results. Consistent with these data, adjunct memantine therapy reduced our proband's seizure burden. This case exemplifies the potential for personalized genomics and therapeutics to be utilized for the early diagnosis and treatment of infantile-onset neurological disease."	"Towards the identification of a genetic basis for Landau-Kleffner syndrome. To establish the genetic basis of Landau-Kleffner syndrome (LKS) in a cohort of two discordant monozygotic (MZ) twin pairs and 11 isolated cases. We used a multifaceted approach to identify genetic risk factors for LKS. Array comparative genomic hybridization (CGH) was performed using the Agilent 180K array. Whole genome methylation profiling was undertaken in the two discordant twin pairs, three isolated LKS cases, and 12 control samples using the Illumina 27K array. Exome sequencing was undertaken in 13 patients with LKS including two sets of discordant MZ twins. Data were analyzed with respect to novel and rare variants, overlapping genes, variants in reported epilepsy genes, and pathway enrichment. A variant (cG1553A) was found in a single patient in the GRIN2A gene, causing an arginine to histidine change at site 518, a predicted glutamate binding site. Following copy number variation (CNV), methylation, and exome sequencing analysis, no single candidate gene was identified to cause LKS in the remaining cohort. However, a number of interesting additional candidate variants were identified including variants in RELN, BSN, EPHB2, and NID2. A single mutation was identified in the GRIN2A gene. This study has identified a number of additional candidate genes including RELN, BSN, EPHB2, and NID2. A PowerPoint slide summarizing this article is available for download in the Supporting Information section here."	"Defective auditory processing in a child with temporal epileptic focus. A 9-year-old boy presented with intolerance to noise that was a trigger for violent temper tantrums that occasionally resembled complex partial seizures. The condition was also a cause for withdrawal from all activities and settings that could potentially be associated with noise. Both electroencephalography and magnetoencephalography clearly demonstrated a left temporal (T5) epileptic focus, although the child never had convulsive seizures. Genetic studies failed to reveal a GRIN2A mutation. We suggest that the hyperacusis in the reported child is another variation of the Landau-Kleffner spectrum. "	"Somatic mutation of GRIN2A in malignant melanoma results in loss of tumor suppressor activity via aberrant NMDAR complex formation. The ionotropic glutamate receptors (N-methyl-D-aspartate receptors (NMDARs)) are composed of large complexes of multi-protein subunits creating ion channels in the cell plasma membranes that allow for influx or efflux of mono- or divalent cations (e.g., Ca(2+)) important for synaptic transmissions, cellular migration, and survival. Recently, we discovered the high prevalence of somatic mutations within one of the ionotropic glutamate receptors, GRIN2A, in malignant melanoma. Functional characterization of a subset of GRIN2A mutants demonstrated a loss of NMDAR complex formation between GRIN1 and GRIN2A, increased anchorage-independent growth in soft agar, and increased migration. Somatic mutation of GRIN2A results in a dominant negative effect inhibiting the tumor-suppressive phenotype of wild-type (WT) GRIN2A in melanoma. Depletion of endogenous GRIN2A in melanoma cells expressing WT GRIN2A resulted in increased proliferation compared with control. In contrast, short-hairpin RNA depletion of GRIN2A in mutant cell lines slightly reduced proliferation. Our data show that somatic mutation of GRIN2A results in increased survival, and we demonstrate the functional importance of GRIN2A mutations in melanoma and the significance that ionotropic glutamate receptor signaling has in malignant melanoma."	"Emergence of motor circuit activity. In the developing nervous system, ordered neuronal activity patterns can occur even in the absence of sensory input and to investigate how these arise, we have used the model system of the embryonic chicken spinal motor circuit, focusing on motor neurons of the lateral motor column (LMC). At the earliest stages of their molecular differentiation, we can detect differences between medial and lateral LMC neurons in terms of expression of neurotransmitter receptor subunits, including CHRNA5, CHRNA7, GRIN2A, GRIK1, HTR1A and HTR1B, as well as the KCC2 transporter. Using patch-clamp recordings we also demonstrate that medial and lateral LMC motor neurons have subtly different activity patterns that reflect the differential expression of neurotransmitter receptor subunits. Using a combination of patch-clamp recordings in single neurons and calcium-imaging of motor neuron populations, we demonstrate that inhibition of nicotinic, muscarinic or GABA-ergic activity, has profound effects of motor circuit activity during the initial stages of neuromuscular junction formation. Finally, by analysing the activity of large populations of motor neurons at different developmental stages, we show that the asynchronous, disordered neuronal activity that occurs at early stages of circuit formation develops into organised, synchronous activity evident at the stage of LMC neuron muscle innervation. In light of the considerable diversity of neurotransmitter receptor expression, activity patterns in the LMC are surprisingly similar between neuronal types, however the emergence of patterned activity, in conjunction with the differential expression of transmitter systems likely leads to the development of near-mature patterns of locomotor activity by perinatal ages. "	"The Effect of mGluR5 Antagonism During Binge Drinkingon Subsequent Ethanol Intake in C57BL/6J Mice: Sex- and Age-Induced Differences. Binge ethanol (EtOH) intake during adolescence leads to an array of behavioral and cognitive consequences including elevated intake of EtOH during adulthood, with female mice showing greater susceptibility than males. Administration of the metabotropic glutamate receptor 5 (mGluR5) antagonist 3-((2-Methyl-1,3-thiazol-4-yl)ethynyl)pyridine (MTEP) has been shown to reduce EtOH self-administration in adult male mice, but little is known about its effect on female and adolescent mice. MTEP (0, 10, 20 mg/kg, i.p.) was repeatedly administered to female and male, adult and adolescent C57BL/6J mice during binge sessions using the scheduled high alcohol consumption paradigm. Next, we assessed whether MTEP administration during binge altered the subsequent 24-hour EtOH intake following a period of abstinence. Finally, we investigated whether MTEP administration during binge followed by an abstinence period altered mRNA of glutamatergic genes within the nucleus accumbens of female mice. MTEP significantly decreased binge EtOH intake in all mice, but only female mice exhibited altered subsequent 24-hour EtOH intake. Interestingly, the alteration in subsequent EtOH intake in female animals was age dependent, with adolescent exposure to MTEP during binge decreasing 24-hour intake and adult exposure to MTEP during binge increasing 24-hour intake. Finally, while there were no effects of MTEP pretreatment on the genes examined, there was a robust age effect found during analysis of mGluR1 (Grm1), mGluR5 (Grm5), the NR2A subunit of the NMDA receptor (Grin2a), phosphatidylinositol 3-kinase (Pik3r1), mammalian target of rapamycin (Mtor), and extracellular signal-regulated kinase (Mapk1) mRNA, with adolescent female animals having lower expression than their adult counterparts. Collectively, the present findings add to existing evidence implicating the contribution of long-term effects of adolescent binge drinking to enhance alcohol abuse in adulthood, while suggesting that mGluR5 antagonism may not be the best pharmacotherapy to treat binge alcohol consumption in female and adolescent animals."	"Functional analysis of a de novo GRIN2A missense mutation associated with early-onset epileptic encephalopathy. NMDA receptors (NMDARs), ligand-gated ion channels, play important roles in various neurological disorders, including epilepsy. Here we show the functional analysis of a de novo missense mutation (L812M) in a gene encoding NMDAR subunit GluN2A (GRIN2A). The mutation, identified in a patient with early-onset epileptic encephalopathy and profound developmental delay, is located in the linker region between the ligand-binding and transmembrane domains. Electrophysiological recordings revealed that the mutation enhances agonist potency, decreases sensitivity to negative modulators including magnesium, protons and zinc, prolongs the synaptic response time course and increases single-channel open probability. The functional changes of this amino acid apply to all other NMDAR subunits, suggesting an important role of this residue on the function of NMDARs. Taken together, these data suggest that the L812M mutation causes overactivation of NMDARs and drives neuronal hyperexcitability. We hypothesize that this mechanism underlies the patient's epileptic phenotype as well as cerebral atrophy. "	"Whole-genome sequencing identifies genomic heterogeneity at a nucleotide and chromosomal level in bladder cancer. Using complete genome analysis, we sequenced five bladder tumors accrued from patients with muscle-invasive transitional cell carcinoma of the urinary bladder (TCC-UB) and identified a spectrum of genomic aberrations. In three tumors, complex genotype changes were noted. All three had tumor protein p53 mutations and a relatively large number of single-nucleotide variants (SNVs; average of 11.2 per megabase), structural variants (SVs; average of 46), or both. This group was best characterized by chromothripsis and the presence of subclonal populations of neoplastic cells or intratumoral mutational heterogeneity. Here, we provide evidence that the process of chromothripsis in TCC-UB is mediated by nonhomologous end-joining using kilobase, rather than megabase, fragments of DNA, which we refer to as &quot;stitchers,&quot; to repair this process. We postulate that a potential unifying theme among tumors with the more complex genotype group is a defective replication-licensing complex. A second group (two bladder tumors) had no chromothripsis, and a simpler genotype, WT tumor protein p53, had relatively few SNVs (average of 5.9 per megabase) and only a single SV. There was no evidence of a subclonal population of neoplastic cells. In this group, we used a preclinical model of bladder carcinoma cell lines to study a unique SV (translocation and amplification) of the gene glutamate receptor ionotropic N-methyl D-aspertate as a potential new therapeutic target in bladder cancer. "	"Oncogenes in melanoma: an update. Melanoma is a highly aggressive tumour with poor prognosis in the metastatic stage. BRAF, NRAS, and KIT are three well-known oncogenes involved in melanoma pathogenesis. Targeting of mutated BRAF kinase has recently been shown to significantly improve overall survival of metastatic melanoma patients, underscoring the particular role of this oncogene in melanoma biology. However, recurrences regularly occur within several months, which supposedly involve further oncogenes. Moreover, oncogenic driver mutations have not been described for up to 30% of all melanomas. In order to obtain a more complete picture of the mutational landscape of melanoma, more recent studies used high-throughput DNA sequencing technologies. A number of new oncogene candidates such as MAPK1/2, ERBB4, GRIN2A, GRM3, RAC1, and PREX2 were identified. Their particular role in melanoma biology is currently under investigation. Evidence for the functional relevance of some of these new oncogene candidates has been provided in in vitro and in vivo experiments. However, these findings await further validation in clinical studies. This review provides an overview on well-known melanoma oncogenes and new oncogene candidates, based on recent high-throughput sequencing studies. The list of genes discussed herein is of course not complete but highlights some of the most significant of recent findings in this area. The new candidates may support more individualized treatment approaches for metastatic melanoma patients in the future. "	"Evidence That GRIN2A Mutations in Melanoma Correlate with Decreased Survival. Previous whole-exome sequencing has demonstrated that melanoma tumors harbor mutations in the GRIN2A gene. GRIN2A encodes the regulatory GluN2A subunit of the glutamate-gated N-methyl-d-aspartate receptor (NMDAR), involvement of which in melanoma remains undefined. Here, we sequenced coding exons of GRIN2A in 19 low-passage melanoma cell lines derived from patients with metastatic melanoma. Potential mutation impact was evaluated in silico, including within the GluN2A crystal structure, and clinical correlations were sought. We found that of 19 metastatic melanoma tumors, four (21%) carried five missense mutations in the evolutionarily conserved domains of GRIN2A; two were previously reported. Melanoma cells that carried these mutations were treatment-naïve. Sorting intolerant from tolerant analysis predicted that S349F, G762E, and P1132L would disrupt protein function. When modeled into the crystal structure of GluN2A, G762E was seen to potentially alter GluN1-GluN2A interactions and ligand binding, implying disruption to NMDAR functionality. Patients whose tumors carried non-synonymous GRIN2A mutations had faster disease progression and shorter overall survival (P &lt; 0.05). This was in contrast to the BRAF V600E mutation, found in 58% of tumors but showing no correlation with clinical outcome (P = 0.963). Although numbers of patients in this study are small, and firm conclusions about the association between GRIN2A mutations and poor clinical outcome cannot be drawn, our results highlight the high prevalence of GRIN2A mutations in metastatic melanoma and suggest for the first time that mutated NMDARs impact melanoma progression. "	"The nucleosome assembly protein TSPYL2 regulates the expression of NMDA receptor subunits GluN2A and GluN2B. TSPYL2 is an X-linked gene encoding a nucleosome assembly protein. TSPYL2 interacts with calmodulin-associated serine/threonine kinase, which is implicated in X-linked mental retardation. As nucleosome assembly and chromatin remodeling are important in transcriptional regulation and neuronal function, we addressed the importance of TSPYL2 through analyzing Tspyl2 loss-of-function mice. We detected down-regulation of N-methyl-D-aspartate receptor subunits 2A and 2B (GluN2A and GluN2B) in the mutant hippocampus. Evidence from luciferase reporter assays and chromatin immunoprecipitation supported that TSPYL2 regulated the expression of Grin2a and Grin2b, the genes encoding GluN2A and GluN2B. We also detected an interaction between TSPYL2 and CBP, indicating that TSPYL2 may activate gene expression through binding CBP. In terms of functional outcome, Tspyl2 loss-of-function impaired long-term potentiation at hippocampal Schaffer collateral-CA1 synapses. Moreover, mutant mice showed a deficit in fear learning and memory. We conclude that TSPYL2 contributes to cognitive variability through regulating the expression of Grin2a and Grin2b. "	"A subset of genomic alterations detected in rolandic epilepsies contains candidate or known epilepsy genes including GRIN2A and PRRT2. Rolandic epilepsies (REs) represent the most frequent epilepsy in childhood. Patients may experience cognitive, speech, language, reading, and behavioral issues. The genetic origin of REs has long been debated. The participation of rare copy number variations (CNVs) in the pathophysiology of various human epilepsies has been increasingly recognized. However, no systematic search for microdeletions or microduplications has been reported in RE so far. Array comparative genomic hybridization (aCGH) and quantitative polymerase chain reaction (qPCR) were used to analyze the genomic status of a series of 47 unrelated RE patients who displayed various types of electroclinical manifestations. Thirty rare CNVs were detected in 21 RE patients. Two CNVs were de novo, 12 were inherited, and 16 were of unknown inheritance. Each CNV was unique to one given patient, except for a 16p11.2 duplication found in two patients. The CNVs of highest interest comprised or disrupted strong candidate or confirmed genes for epileptic and other neurodevelopmental disorders, including BRWD3, GRIN2A, KCNC3, PRKCE, PRRT2, SHANK1, and TSPAN7. Patients with REs showed rare microdeletions and microduplications with high frequency and heterogeneity. Whereas only a subset of all genomic alterations found here may actually participate in the phenotype, the novel de novo events as well as several inherited CNVs contain or disrupt genes, some of which are likely to influence the emergence, the presentation, or the comorbidity of RE. The future screening of cohorts of larger size will help in detecting more de novo or recurrent events and in appreciating the possible enrichment of specific CNVs in patients with RE."	"[Melanoma: from molecular studies to the treatment breakthrough]. Melanoma holds a leading position in the mortality from skin tumors. Standard treatment of metastatic melanoma allows tumor remission to be achieved only in a small subset of patients. Studies on melanoma molecular pathogenesis led to the identification of several causative genetic events and, consequently, to the development of novel targeted drugs. More than a half of melanomas contain amine acid substitutions in serine-threonine kinase BRAF. Clinical trials involving specific BRAF inhibitors--vemurafenib and dabrafenib--demonstrated high efficacy of these agents towards BRAF-mutated melanoma. MEK inhibitors may show activity against both BRAF--and NRAS-driven tumors. Mucosal and acral melanomas frequently contain mutation in KIT receptor and can be successfully treated by imatinib. There are novel therapeutic monoclonal antibodies targeted against immunosuppressive molecules CTLA4, PD-1 and PD-L1. In some instances these drugs allow to obtain exceptionally prolonged responses. Whole genome sequencing led to the identification of new melanoma genes, e.g. GRIN2A, TRRAP, PREX2, RAC1, STK19, PPP6C, etc. Molecular testing, especially BRAF mutation analysis, has become a mandatory part of melanoma diagnosis. Nevertheless, despite the revolution in melanoma treatment, the prevention of excessive ultraviolet exposure, cancer awareness and early diagnosis remain the main tools for the management of this disease."	"GRIN2A, a green semaphore on the lumping route to idiopathic focal epilepsy in childhood. NA"	"Two patients with a GRIN2A mutation and childhood-onset epilepsy. N-methyl-D-aspartate is a key neurotransmitter within the central nervous system and its dysfunction can play an important role in epilepsy. Mutations of genes involving the N-methyl-D-aspartate receptor have been implicated in a wide variety of neuropsychiatric disorders including epilepsy, specifically, within the glutamate receptor ionotropic N-methyl-D-aspartate 2A (GRIN2A). We report two patients with a glutamate receptor ionotropic N-methyl-D-aspartate 2A mutation who presented with epilepsy. Individuals with a glutamate receptor ionotropic N-methyl-D-aspartate 2A mutation exhibit a broad clinical spectrum."	"Epilepsy: GRIN2A mutations identified as key genetic drivers of epilepsy-aphasia spectrum disorders. NA"	"New developments in dermatological oncogenetics. Activated intracellular signaling pathways based on mutations in oncogenes and tumor suppressor genes play an important role in a variety of malignant tumors. In dermatology, such mutations have been identified in melanoma, basal cell carcinoma and squamous cell carcinoma. These have partly led to the establishment of new, targeted therapies. Treatment successes have been particularly impressive for melanoma with small molecule inhibitors directed against the mutated BRAF oncogene and in basal cell carcinoma with inhibitors directed against the hedgehog signaling pathway. New sequencing technologies, in particular next generation sequencing, have led to a better and more comprehensive understanding of malignant tumors. This approach confirmed the pathogenic role of BRAF, NRAS and MAP kinase pathways for melanoma. At the same time, a series of further interesting target molecules with oncogenic mutations such as ERBB4, GRIN2A, GRM3, PREX2, RAC1 and TP53 were identified. New aspects have recently been shown for squamous cell carcinoma by detection of mutations in the NOTCH signaling pathway. A better understanding of the pathogenesis of these and other tumors should lead to improved and maybe even individualized treatment. The current developments in dermatological oncogenetics based on the new sequencing technologies are reviewed. "	"Analysis of variations in the glutamate receptor, N-methyl D-aspartate 2A (GRIN2A) gene reveals their relative importance as genetic susceptibility factors for heroin addiction. The glutamate receptor, N-methyl D-aspartate 2A (GRIN2A) gene that encodes the 2A subunit of the N-methyl D-aspartate (NMDA) receptor was recently shown to be involved in the development of opiate addiction. Genetic polymorphisms in GRIN2A have a plausible role in modulating the risk of heroin addiction. An association of GRIN2A single-nucleotide polymorphisms (SNPs) with heroin addiction was found earlier in African Americans. To identify markers that contribute to the genetic susceptibility to heroin addiction, we examined the potential association between heroin addiction and forty polymorphisms of the GRIN2A gene using the MassARRAY system and GeneScan in this study. The frequency of the (GT)26 repeats (rs3219790) in the heroin addiction group was significantly higher than that in the control group (χ(2) = 5.360, P = 0.021). The allele frequencies of three polymorphisms (rs1102972, rs1650420, and rs3104703 in intron 3) were strongly associated with heroin addiction (P&lt;0.001, 0.0002, and &lt;0.001, after Bonferroni correction). Three additional SNPs from the same intron (rs1071502, rs6497730, and rs1070487) had nominally significant P values for association (P&lt;0.05), but did not pass the threshold value. Haplotype analysis revealed that the G-C-T-C-C-T-A (block 6) and T-T (block 10) haplotypes of the GRIN2A gene displayed a protective effect (P = &lt;0.001 and 0.003). These findings point to a role for GRIN2A polymorphisms in heroin addiction among the Han Chinese from Shaanxi province, and may be informative for future genetic or neurobiological studies on heroin addiction."	"GRIN2A mutations in acquired epileptic aphasia and related childhood focal epilepsies and encephalopathies with speech and language dysfunction. Epileptic encephalopathies are severe brain disorders with the epileptic component contributing to the worsening of cognitive and behavioral manifestations. Acquired epileptic aphasia (Landau-Kleffner syndrome, LKS) and continuous spike and waves during slow-wave sleep syndrome (CSWSS) represent rare and closely related childhood focal epileptic encephalopathies of unknown etiology. They show electroclinical overlap with rolandic epilepsy (the most frequent childhood focal epilepsy) and can be viewed as different clinical expressions of a single pathological entity situated at the crossroads of epileptic, speech, language, cognitive and behavioral disorders. Here we demonstrate that about 20% of cases of LKS, CSWSS and electroclinically atypical rolandic epilepsy often associated with speech impairment can have a genetic origin sustained by de novo or inherited mutations in the GRIN2A gene (encoding the N-methyl-D-aspartate (NMDA) glutamate receptor α2 subunit, GluN2A). The identification of GRIN2A as a major gene for these epileptic encephalopathies provides crucial insights into the underlying pathophysiology. "	"Mutations in GRIN2A cause idiopathic focal epilepsy with rolandic spikes. Idiopathic focal epilepsy (IFE) with rolandic spikes is the most common childhood epilepsy, comprising a phenotypic spectrum from rolandic epilepsy (also benign epilepsy with centrotemporal spikes, BECTS) to atypical benign partial epilepsy (ABPE), Landau-Kleffner syndrome (LKS) and epileptic encephalopathy with continuous spike and waves during slow-wave sleep (CSWS). The genetic basis is largely unknown. We detected new heterozygous mutations in GRIN2A in 27 of 359 affected individuals from 2 independent cohorts with IFE (7.5%; P = 4.83 × 10(-18), Fisher's exact test). Mutations occurred significantly more frequently in the more severe phenotypes, with mutation detection rates ranging from 12/245 (4.9%) in individuals with BECTS to 9/51 (17.6%) in individuals with CSWS (P = 0.009, Cochran-Armitage test for trend). In addition, exon-disrupting microdeletions were found in 3 of 286 individuals (1.0%; P = 0.004, Fisher's exact test). These results establish alterations of the gene encoding the NMDA receptor NR2A subunit as a major genetic risk factor for IFE. "	"GRIN2A mutations cause epilepsy-aphasia spectrum disorders. Epilepsy-aphasia syndromes (EAS) are a group of rare, severe epileptic encephalopathies of unknown etiology with a characteristic electroencephalogram (EEG) pattern and developmental regression particularly affecting language. Rare pathogenic deletions that include GRIN2A have been implicated in neurodevelopmental disorders. We sought to delineate the pathogenic role of GRIN2A in 519 probands with epileptic encephalopathies with diverse epilepsy syndromes. We identified four probands with GRIN2A variants that segregated with the disorder in their families. Notably, all four families presented with EAS, accounting for 9% of epilepsy-aphasia cases. We did not detect pathogenic variants in GRIN2A in other epileptic encephalopathies (n = 475) nor in probands with benign childhood epilepsy with centrotemporal spikes (n = 81). We report the first monogenic cause, to our knowledge, for EAS. GRIN2A mutations are restricted to this group of cases, which has important ramifications for diagnostic testing and treatment and provides new insights into the pathogenesis of this debilitating group of conditions. "	"Association of genetic variation in pharmacodynamic factors with methadone dose required for effective treatment of opioid addiction. The interindividual variability in the dose required for effective methadone maintenance treatment (MMT) for opioid addiction may be influenced in part by genetic variations in genes encoding pharmacodynamic factors of methadone. This study was conducted to identify some of these variants. This study focused on 11 genes encoding components of the opioidergic (OPRM1, POMC and ARRB2), the dopaminergic (ANKK1 and DRD2) and the glutamatergic pathways (GRIN1 and GRIN2A), as well as the neurotrophin system (NGFB, BDNF, NTRK1 and NTRK2). The study includes 227 Israeli patients undergoing stable MMT. Out of the 110 variants analyzed, 12 SNPs (in BDNF, NTRK2, OPRM1, DRD2 and ANKK1) were associated with methadone dose (nominal p &lt; 0.05). Of these SNPs, ANKK1 rs7118900 and DRD2 rs2283265 are known to affect gene expression. Logistic regression of five representative SNPs discriminated between individuals requiring a methadone dose of &gt;120 mg/day and &lt;120 mg/day (p = 0.019), and showed moderate sensitivity and specificity (AUC of 0.63 in receiver operating characteristic analysis). This data should stimulate further research on the potential influence and clinical significance of these variants on MMT."	"Candidate glutamatergic and dopaminergic pathway gene variants do not influence Huntington's disease motor onset. Huntington's disease (HD) is a neurodegenerative disorder characterized by motor, cognitive, and behavioral disturbances. It is caused by the expansion of the HTT CAG repeat, which is the major determinant of age at onset (AO) of motor symptoms. Aberrant function of N-methyl-D-aspartate receptors and/or overexposure to dopamine has been suggested to cause significant neurotoxicity, contributing to HD pathogenesis. We used genetic association analysis in 1,628 HD patients to evaluate candidate polymorphisms in N-methyl-D-aspartate receptor subtype genes (GRIN2A rs4998386 and rs2650427, and GRIN2B rs1806201) and functional polymorphisms in genes in the dopamine pathway (DAT1 3' UTR 40-bp variable number tandem repeat (VNTR), DRD4 exon 3 48-bp VNTR, DRD2 rs1800497, and COMT rs4608) as potential modifiers of the disease process. None of the seven polymorphisms tested was found to be associated with significant modification of motor AO, either in a dominant or additive model, after adjusting for ancestry. The results of this candidate-genetic study therefore do not provide strong evidence to support a modulatory role for these variations within glutamatergic and dopaminergic genes in the AO of HD motor manifestations. "	"Potential Impact of miR-137 and Its Targets in Schizophrenia. The significant impact of microRNAs (miRNAs) on disease pathology is becoming increasingly evident. These small non-coding RNAs have the ability to post-transcriptionally silence the expression of thousands of genes. Therefore, dysregulation of even a single miRNA could confer a large polygenic effect. Schizophrenia is a genetically complex illness thought to involve multiple genes each contributing a small risk. Large genome-wide association studies identified miR-137, a miRNA shown to be involved in neuronal maturation, as one of the top risk genes. To assess the potential mechanism of impact of miR-137 in this disorder and identify its targets, we used a combination of literature searches, ingenuity pathway analysis (IPA), and freely accessible bioinformatics resources. Using TargetScan and the schizophrenia gene resource (SZGR) database, we found that in addition to CSMD1, C10orf26, CACNA1C, TCF4, and ZNF804A, five schizophrenia risk genes whose transcripts are also validated miR-137 targets, there are other schizophrenia-associated genes that may be targets of miR-137, including ERBB4, GABRA1, GRIN2A, GRM5, GSK3B, NRG2, and HTR2C. IPA analyses of all the potential targets identified several nervous system (NS) functions as the top canonical pathways including synaptic long-term potentiation, a process implicated in learning and memory mechanisms and recently shown to be altered in patients with schizophrenia. Among the subset of targets involved in NS development and function, the top scoring pathways were ephrin receptor signaling and axonal guidance, processes that are critical for proper circuitry formation and were shown to be disrupted in schizophrenia. These results suggest that miR-137 may indeed play a substantial role in the genetic etiology of schizophrenia by regulating networks involved in neural development and brain function."	"Differences in the transcriptional profiles of human cumulus cells isolated from MI and MII oocytes of patients with polycystic ovary syndrome. Polycystic ovary syndrome (PCOS) is a common endocrine and metabolic disorder in women. The abnormalities of endocrine and intra-ovarian paracrine interactions may change the microenvironment for oocyte development during the folliculogenesis process and reduce the developmental competence of oocytes in PCOS patients who are suffering from anovulatory infertility and pregnancy loss. In this microenvironment, the cross talk between an oocyte and the surrounding cumulus cells (CCs) is critical for achieving oocyte competence. The aim of our study was to investigate the gene expression profiles of CCs obtained from PCOS patients undergoing IVF cycles in terms of oocyte maturation by using human Genome U133 Plus 2.0 microarrays. A total of 59 genes were differentially expressed in two CC groups. Most of these genes were identified to be involved in one or more of the following pathways: receptor interactions, calcium signaling, metabolism and biosynthesis, focal adhesion, melanogenesis, leukocyte transendothelial migration, Wnt signaling, and type 2 diabetes mellitus. According to the different expression levels in the microarrays and their putative functions, six differentially expressed genes (LHCGR, ANGPTL1, TNIK, GRIN2A, SFRP4, and SOCS3) were selected and analyzed by quantitative RT-PCR (qRT-PCR). The qRT-PCR results were consistent with the microarray data. Moreover, the molecular signatures (LHCGR, TNIK, and SOCS3) were associated with developmental potential from embryo to blastocyst stage and were proposed as biomarkers of embryo viability in PCOS patients. Our results may be clinically important as they offer a new potential strategy for competent oocyte/embryo selection in PCOS patients."	"Limbic activation to novel versus familiar food cues predicts food preference and alcohol intake. Expectation of salient rewards and novelty seeking are processes implicated in substance use disorders but the neurobiological substrates underlying these associations are not well understood. To better understand the regional circuitry of novelty and reward preference, rats were conditioned to pair unique cues with bacon, an initially novel food, or chow, a familiar food. In the same animals, after training, cue-induced brain activity was measured, and the relationships between activity and preference for three rewards, the conditioned foods and ethanol (EtOH), were separately determined. Activity in response to the food paired cues was measured using brain glucose metabolism (BGluM). Rats favoring bacon-paired (BAP) cues had increased BGluM in mesocorticolimbic brain regions after exposure to these cues, while rats favoring chow-paired (CHP) cues showed relative deactivation in these regions. Rats exhibiting BAP cue-induced activation in prefrontal cortex (PFC) also consumed more EtOH while rats with cortical activation in response to CHP cues showed lower EtOH consumption. Additionally, long-term stable expression levels of PFC Grin2a, a subunit of the NMDA receptor, correlated with individual differences in EtOH preference insomuch that rats with high EtOH preference had enduringly low PFC Grin2a mRNA expression. No other glutamatergic, dopaminergic or endocannabinoid genes studied showed this relationship. Overall, these results suggest that natural variation in mesocorticolimbic sensitivity to reward-paired cues underlies behavioral preferences for and vulnerability to alcohol abuse, and support the notion of common neuronal circuits involved in food- and drug-seeking behavior. The findings also provide evidence that PFC NMDA-mediated glutamate signaling may modulate these associations."	"Assessment of NMDA receptor genes (GRIN2A, GRIN2B and GRIN2C) as candidate genes in the development of degenerative lumbar scoliosis. Degenerative lumbar scoliosis (DLS) progresses with aging after 50-60 years. The genetic association of DLS remains largely unclear. In this study, the genetic association between glutamate receptor, ionotropic, N-methyl D-aspartate (NMDA, GRIN) receptor genes and DLS was investigated. A total of 9 coding single nucleotide polymorphisms (cSNPs) in NMDA receptor genes [GRIN2A (rs8049651, Leu425Leu; rs9806806, Tyr730Tyr); GRIN2B (rs7301328, Pro122Pro; rs35025065, Asp447Asp; rs1805522, Ile602Ile; rs1806201, Thr888Thr; rs1805247, His1399His); and GRIN2C (rs689730, Ala33Ala; rs3744215, Arg1209Ser)] were selected and genotyped using direct sequencing in 70 patients with DLS and 141 healthy controls. Multiple logistic models (codominant, dominant and recessive) were calculated for the odds ratio (OR), 95% confidence interval (CI) and corresponding P-values. The SNPStats, SNPAnalyzer and HelixTree programs were used for the evaluation of the genetic data. Among the SNPs examined, no significant associations were observed between the NMDA receptor genes and DLS. When the patients were divided into two groups according to clinical characteristics based on Cobb's angle (&lt;20° or ≥20°) and lateral listhesis (&lt;6 mm or ≥6 mm), associations were observed between rs689730 of GRIN2C and Cobb's angle (codominant, P=0.038; dominant, P=0.022) and between rs7301328 of GRIN2B and lateral listhesis (codominant, P=0.003; dominant, P=0.015; recessive, P=0.015). These results indicate that the GRIN2A, GRIN2B and GRIN2C genes do not affect the development of DLS. However, the GRIN2C gene may be associated with Cobb's angle, while the GRIN2B gene may be associated with lateral listhesis."	"Genetics of melanoma. Genomic variation is a trend observed in various human diseases including cancer. Genetic studies have set out to understand how and why these variations result in cancer, why some populations are pre-disposed to the disease, and also how genetics affect drug responses. The melanoma incidence has been increasing at an alarming rate worldwide. The burden posed by melanoma has made it a necessity to understand the fundamental signaling pathways involved in this deadly disease. Signaling cascades such as mitogen-activated protein kinase and PI3K/AKT have been shown to be crucial in the regulation of processes that are commonly dysregulated during cancer development such as aberrant proliferation, loss of cell cycle control, impaired apoptosis, and altered drug metabolism. Understanding how these and other oncogenic pathways are regulated has been integral in our challenge to develop potent anti-melanoma drugs. With advances in technology and especially in next generation sequencing, we have been able to explore melanoma genomes and exomes leading to the identification of previously unknown genes with functions in melanomagenesis such as GRIN2A and PREX2. The therapeutic potential of these novel candidate genes is actively being pursued with some presenting as druggable targets while others serve as indicators of therapeutic responses. In addition, the analysis of the mutational signatures of melanoma tumors continues to cement the causative role of UV exposure in melanoma pathogenesis. It has become distinctly clear that melanomas from sun-exposed skin areas have distinct mutational signatures including C to T transitions indicative of UV-induced damage. It is thus necessary to continue spreading awareness on how to decrease the risk factors of developing the disease while at the same time working for a cure. Given the large amount of information gained from these sequencing studies, it is likely that in the future, treatment of melanoma will follow a highly personalized route that takes into account the differential mutational signatures of each individual's cancer."	"Association between the GRM7 rs3792452 polymorphism and attention deficit hyperacitiveity disorder in a Korean sample. The purpose of this study was to investigate the association between the ionotropic and glutamate receptors, N-methyl D-asparate 2A (GRIN2A) and 2B (GRIN2B), and the metabotropic glutamate receptor mGluR7 (GRM7) gene polymorphisms and attention-deficit hyperactivity disorder (ADHD) in Korean population. We conducted a case-control analysis of 202 ADHD subjects and 159 controls, performed a transmission disequilibrium test (TDT) on 149 trios, and compared scores from the continuous performance test (CPT), the Children's Depression Inventory (CDI), and the State-Trait Anxiety Inventory for Children (STAIC) according to the genotype of the glutamate receptor genes. There were no significant differences in the genotype or allele frequencies of the GRIN2A rs8049651, GRIN2B rs2284411, or GRM7 rs37952452 polymorphisms between the ADHD and control groups. For 148 ADHD trios, the TDT analysis also showed no preferential transmission of the GRIN2A rs8049651 or GRIN2B rs2284411 polymorphisms. However, the TDT analysis of the GRM7 rs3792452 polymorphism showed biased transmission of the G allele (χ2 = 4.67, p = 0.031). In the ADHD probands, the subjects with GG genotype in the GRM7 rs37952452 polymorphism had higher mean T-scores for omission errors on the CPT than did those with the GA or AA genotype (t = 3.38, p = 0.001). In addition, the ADHD subjects who were homozygous for the G allele in the GRM7 rs37952452 polymorphism had higher STAIC-T (t = 5.52, p &lt; 0.001) and STAIC-S (t = 2.74, p = 0.007) scores than did those with the GA or AA genotype. These results provide preliminary evidence of an association between the GRM7 rs37952452 polymorphism and selective attention deficit and anxiety found within the Korean ADHD population."	"Antipsychotic-induced movement disorders in long-stay psychiatric patients and 45 tag SNPs in 7 candidate genes: a prospective study. Four types of antipsychotic-induced movement disorders: tardive dyskinesia (TD), parkinsonism, akathisia and tardive dystonia, subtypes of TD (orofacial and limb truncal dyskinesia), subtypes of parkinsonism (rest tremor, rigidity, and bradykinesia), as well as a principal-factor of the movement disorders and their subtypes, were examined for association with variation in 7 candidate genes (GRIN2B, GRIN2A, HSPG2, DRD3, DRD4, HTR2C, and NQO1). Naturalistic study of 168 white long-stay patients with chronic mental illness requiring long-term antipsychotic treatment, examined by the same rater at least two times over a 4-year period, with a mean follow-up time of 1.1 years, with validated scales for TD, parkinsonism, akathisia, and tardive dystonia. The authors genotyped 45 tag SNPs in 7 candidate genes, associated with movement disorders or schizophrenia in previous studies. Genotype and allele frequency comparisons were performed with multiple regression methods for continuous movement disorders. Various tag SNPs reached nominal significance; TD with rs1345423, rs7192557, rs1650420, as well as rs11644461; orofacial dyskinesia with rs7192557, rs1650420, as well as rs4911871; limb truncal dyskinesia with rs1345423, rs7192557, rs1650420, as well as rs11866328; bradykinesia with rs2192970; akathisia with rs324035; and the principal-factor with rs10772715. After controlling for multiple testing, no significant results remained. The findings suggest that selected tag SNPs are not associated with a susceptibility to movement disorders. However, as the sample size was small and previous studies show inconsistent results, definite conclusions cannot be made. Replication is needed in larger study samples, preferably in longitudinal studies which take the fluctuating course of movement disorders and gene-environment interactions into account."	"Evolution of GluN2A/B cytoplasmic domains diversified vertebrate synaptic plasticity and behavior. Two genome duplications early in the vertebrate lineage expanded gene families, including GluN2 subunits of the NMDA receptor. Diversification between the four mammalian GluN2 proteins occurred primarily at their intracellular C-terminal domains (CTDs). To identify shared ancestral functions and diversified subunit-specific functions, we exchanged the exons encoding the GluN2A (also known as Grin2a) and GluN2B (also known as Grin2b) CTDs in two knock-in mice and analyzed the mice's biochemistry, synaptic physiology, and multiple learned and innate behaviors. The eight behaviors were genetically separated into four groups, including one group comprising three types of learning linked to conserved GluN2A/B regions. In contrast, the remaining five behaviors exhibited subunit-specific regulation. GluN2A/B CTD diversification conferred differential binding to cytoplasmic MAGUK proteins and differential forms of long-term potentiation. These data indicate that vertebrate behavior and synaptic signaling acquired increased complexity from the duplication and diversification of ancestral GluN2 genes."	"Content of mRNA for NMDA glutamate receptor subunits in the frontal cortex and striatum of rats after morphine withdrawal is related to the degree of abstinence. We studied the expression of mRNA for genes, whose protein products regulate the glutamate/NO/cGMP signal cascade in the frontal cortex, striatum, midbrain, and hippocampus of rats with various degrees of spontaneous morphine withdrawal syndrome. The concentration of Grin2a mRNA (subunit of the NMDA glutamate receptor) in the frontal cortex increased mainly in animals with severe abstinence. By contrast, the expression of mRNA for the Grin2b subunit in the striatum decreased in animals with mild abstinence. Variations in the content of mRNA for other products of the cascade (isoforms of NO-dependent guanylate cyclase and cGMP-dependent protein kinase) after morphine withdrawal were not related to the degree of abstinence. Our results suggest that the region-specific expression of mRNA for certain subunits of the NMDA glutamate receptor after morphine withdrawal can determine the degree of abstinence."	"Local overexpression of GH and GH/IGF1 effects in the adult mouse hippocampus. GH therapy improves hippocampal functions mainly via circulating IGF1. However, the roles of local GH and IGF1 expression are not well understood. We investigated whether transgenic (TG) overexpression in the adult brain of bovine GH (bGH) under the control of the glial fibrillary acidic protein (GFAP) promoter affected cellular proliferation and the expression of transcripts known to be induced by systemic GH in the hippocampus. Cellular proliferation was examined by 5-bromo-2'-deoxyuridine immunohistochemistry. Quantitative PCR and western blots were performed. Although robustly expressed, bGH-Tg did not increase either cell proliferation or survival. However, bGH-Tg modestly increased Igf1 and Gfap mRNAs, whereas other GH-associated transcripts were unaffected, i.e. the GH receptor (Ghr), IGF1 receptor (Igf1r), 2',3'-cyclic nucleotide 3'-phosphodiesterase (Cnp), ionotropic glutamate receptor 2a (Nr2a (Grin2a)), opioid receptor delta (Dor), synapse-associated protein 90/postsynaptic density-95-associated protein (Sapap2 (Dlgap2)), haemoglobin beta (Hbb) and glutamine synthetase (Gs (Glul)). However, IGF1R was correlated with the expression of Dor, Nr2a, Sapap2, Gs and Gfap. In summary, although local bGH expression was robust, it activated local IGF1 very modestly, which is probably the reason for the low response of previous GH-associated response parameters. This would, in turn, indicate that hippocampal GH is less important than endocrine GH. However, as most transcripts were correlated with the expression of IGF1R, there is still a possibility for endogenous circulating or local GH to act via IGF1R signalling. Possible reasons for the relative bio-inactivity of bGH include the bell-shaped dose-response curve and cell-specific expression of bGH."	"Glutamate gene polymorphisms predict brain volumes in multiple sclerosis. Several genetic markers have been associated with multiple sclerosis (MS) susceptibility; however, uncovering the genetic aetiology of the complex phenotypic expression of MS has been more difficult so far. The most common approach in imaging genetics is based on mass-univariate linear modelling (MULM), which faces several limitations. Here we apply a novel multivariate statistical model, sparse reduced-rank regression (sRRR), to identify possible associations of glutamate related single nucleotide polymorphisms (SNPs) and multiple MRI-derived phenotypes in MS. Seven phenotypes related to brain and lesion volumes for a total number of 326 relapsing-remitting and secondary-progressive MS patients and a total of 3809 glutamate related and control SNPs were analysed with sRRR, which resulted in a ranking of SNPs in decreasing order of importance ('selection probability'). Lasso regression and MULM were used as comparative statistical techniques to assess consistency of the most important associations over different statistical models. Five SNPs within the NMDA-receptor-2A-subunit (GRIN2A) domain were identified by sRRR in association with normalized brain volume (NBV), normalized grey matter volume and normalized white matter volume (NMWM). The association between GRIN2A and both NBV and NWMV was confirmed in MULM and Lasso analysis. Using a novel, multivariate regression model confirmed by two other statistical approaches we show associations between GRIN2A SNPs and phenotypic variation in NBV and NWMV in this first exploratory study. Replications in independent datasets are now necessary to validate these findings."	"Epileptic encephalopathies of the Landau-Kleffner and continuous spike and waves during slow-wave sleep types: genomic dissection makes the link with autism. The continuous spike and waves during slow-wave sleep syndrome (CSWSS) and the Landau-Kleffner (LKS) syndrome are two rare epileptic encephalopathies sharing common clinical features including seizures and regression. Both CSWSS and LKS can be associated with the electroencephalography pattern of electrical status epilepticus during slow-wave sleep and are part of a clinical continuum that at its benign end also includes rolandic epilepsy (RE) with centrotemporal spikes. The CSWSS and LKS patients can also have behavioral manifestations that overlap the spectrum of autism disorders (ASD). An impairment of brain development and/or maturation with complex interplay between genetic predisposition and nongenetic factors has been suspected. A role for autoimmunity has been proposed but the pathophysiology of CSWSS and of LKS remains uncharacterized. In recent years, the participation of rare genomic alterations in the susceptibility to epileptic and autistic disorders has been demonstrated. The involvement of copy number variations (CNVs) in 61 CSWSS and LKS patients was questioned using comparative genomic hybridization assays coupled with validation by quantitative polymerase chain reaction (PCR). Whereas the patients showed highly heterogeneous in genomic architecture, several potentially pathogenic alterations were detected. A large number of these corresponded to genomic regions or genes (ATP13A4, CDH9, CDH13, CNTNAP2, CTNNA3, DIAPH3, GRIN2A, MDGA2, SHANK3) that have been either associated with ASD for most of them, or involved in speech or language impairment, or in RE. Particularly, CNVs encoding cell adhesion proteins (cadherins, protocadherins, contactins, catenins) were detected with high frequency (≈20% of the patients) and significant enrichment (cell adhesion: p = 0.027; cell adhesion molecule binding: p = 9.27 × 10(-7)). Overall our data bring the first insights into the possible molecular pathophysiology of CSWSS and LKS. The overrepresentation of cell adhesion genes and the strong overlap with the genetic, genomic and molecular ASD networks, provide an exciting and unifying view on the clinical links among CSWSS, LKS, and ASD."	"Pilot study of iPS-derived neural cells to examine biologic effects of alcohol on human neurons in vitro. Studies of the effects of alcohol on N-methyl-d-aspartate (NMDA) receptor function and gene expression have depended on rodent or postmortem human brain models. Ideally, the effects of alcohol might better be examined in living neural tissue derived from human subjects. In this study, we used new technologies to reprogram human subject-specific tissue into pluripotent cell colonies and generate human neural cultures as a model system to examine the molecular actions of alcohol. Induced pluripotent stem (iPS) cells were generated from skin biopsies taken from 7 individuals, 4 alcohol-dependent subjects, and 3 social drinkers. We differentiated the iPS cells into neural cultures and characterized them by immunocytochemistry using antibodies for the neuronal marker beta-III tubulin, glial marker s100β, and synaptic marker synpasin-1. Electrophysiology was performed to characterize the iPS-derived neurons and to measure the effects of acute alcohol exposure on the NMDA receptor response in chronically alcohol exposed and nonexposed neural cultures from 1 nonalcoholic. Finally, we examined changes in mRNA expression of the NMDA receptor subunit genes GRIN1, GRIN2A, GRIN2B, and GRIN2D after 7 days of alcohol exposure and after 24-hour withdrawal from chronic alcohol exposure. Immunocytochemistry revealed positive staining for neuronal, glial, and synaptic markers. iPS-derived neurons displayed spontaneous electrical properties and functional ionotropic receptors. Acute alcohol exposure significantly attenuated the NMDA response, an effect that was not observed after 7 days of chronic alcohol exposure. After 7 days of chronic alcohol exposure, there were significant increases in mRNA expression of GRIN1, GRIN2A, and GRIN2D in cultures derived from alcoholic subjects but not in cultures derived from nonalcoholics. These findings support the potential utility of human iPS-derived neural cultures as in vitro models to examine the molecular actions of alcohol on human neural cells."	"Rapid temporal changes in the expression of a set of neuromodulatory genes during alcohol withdrawal in the dorsal vagal complex: molecular evidence of homeostatic disturbance. Chronic alcohol exposure produces neuroadaptation, which increases the risk of cellular excitotoxicity and autonomic dysfunction during withdrawal. The temporal progression and regulation of the gene expression that contributes to this physiologic and behavioral phenotype is poorly understood early in the withdrawal period. Further, it is unexplored in the dorsal vagal complex (DVC), a brainstem autonomic regulatory structure. We use a quantitative polymerase chain reaction platform to precisely and simultaneously measure the expression of 145 neuromodulatory genes in more than 100 rat DVC samples from control, chronically alcohol-exposed, and withdrawn rats. To gain insight into the dynamic progression and regulation of withdrawal, we focus on the expression of a subset of functionally relevant genes during the first 48 hours, when behavioral symptoms are most severe. In the DVC, expression of this gene subset is essentially normal in chronically alcohol-exposed rats. However, withdrawal results in rapid, large-magnitude expression changes in this group. We observed differential regulation in 86 of the 145 genes measured (59%), some as early as 4 hours into withdrawal. Time series measurements (4, 8, 18, 32, and 48 hours after alcohol removal) revealed dynamic expression responses in immediate early genes, γ-aminobutyric acid type A, ionotropic glutamate, and G-protein coupled receptors and the Ras/Raf signaling pathway. Together, these changes elucidate a complex, temporally coordinated response that involves correlated expression of many functionally related groups. In particular, the expression patterns of Gabra1, Grin2a, Grin3a, and Grik3 were tightly correlated. These receptor subunits share overrepresented transcription factor binding sites for Pax-8 and other transcription factors, suggesting a common regulatory mechanism and a role for these transcription factors in the regulation of neurotransmission within the first 48 hours of alcohol withdrawal. Expression in this gene set is essentially normal in the alcohol-adapted DVC, but withdrawal results in immediate, large-magnitude, and dynamic changes. These data support both increased research focus on the biological ramifications of alcohol withdrawal and enable novel insights into the dynamic withdrawal expression response in this understudied homeostatic control center."	"Family based association of GRIN2A and GRIN2B with Korean autism spectrum disorders. N-Methyl-d-aspartate (NMDA) receptor, one of the glutamate receptors, has a role in the regulation of synaptic activity. It functions as an ion channel in the central nervous system and its inappropriate activation has been implicated in several neurological conditions. To test the association between candidate genes related with NMDA receptors and autism spectrum disorders (ASDs), we examined single nucleotide polymorphisms (SNPs) for GRIN2A and GRIN2B by using the family-based association test (FBAT) in 151 Korean trios. There was a statistically significant associations between ASDs and haplotypes in GRIN2B (bi-allelic mode additive model P-value=0.003; FDR P-value=0.012). This study supports a possible role of GRIN2B as a candidate gene for the etiology of ASDs."	"Genome-wide association mapping of loci for antipsychotic-induced extrapyramidal symptoms in mice. Tardive dyskinesia (TD) is a debilitating, unpredictable, and often irreversible side effect resulting from chronic treatment with typical antipsychotic agents such as haloperidol. TD is characterized by repetitive, involuntary, purposeless movements primarily of the orofacial region. In order to investigate genetic susceptibility to TD, we used a validated mouse model for a systems genetics analysis geared toward detecting genetic predictors of TD in human patients. Phenotypic data from 27 inbred strains chronically treated with haloperidol and phenotyped for vacuous chewing movements were subject to a comprehensive genomic analysis involving 426,493 SNPs, 4,047 CNVs, brain gene expression, along with gene network and bioinformatic analysis. Our results identified ~50 genes that we expect to have high prior probabilities for association with haloperidol-induced TD, most of which have never been tested for association with human TD. Among our top candidates were genes regulating the development of brain motor control regions (Zic4 and Nkx6-1), glutamate receptors (Grin1 and Grin2a), and an indirect target of haloperidol (Drd1a) that has not been studied as well as the direct target, Drd2."	"Exploring schizophrenia drug-gene interactions through molecular network and pathway modeling. In this study, we retrieved 39 schizophrenia-related antipsychotic drugs from the DrugBank database. These drugs had interactions with 142 targets, whose corresponding genes were defined as drug targeted genes. To explore the complexity between these drugs and their related genes in schizophrenia, we constructed a drug-target gene network. These genes were overrepresented in several pathways including: neuroactive ligand-receptor pathways, glutamate metabolism, and glycine metabolism. Through integrating the pathway information into a drug-gene network, we revealed a few bridge genes connected the sub-networks of the drug-gene network: GRIN2A, GRIN3B, GRIN2C, GRIN2B, DRD1, and DRD2. These genes encode ionotropic glutamate receptors belonging to the NMDA receptor family and dopamine receptors. Haloperidol was the only drug to directly interact with these pathways and receptors and consequently may have a unique action at the drug-gene interaction level during the treatment of schizophrenia. This study represents the first systematic investigation of drug-gene interactions in psychosis."	"Ovarian steroids increase glutamatergic related gene expression in serotonin neurons of macaques. Dendritic spines are the elementary structural units of neuronal plasticity and their proliferation and stabilization involve components of glutamate neurotransmission. In a model of hormone replacement therapy (HT), we sought the effect of estradiol (E) and progesterone (P) on gene expression related to glutamate neurotransmission in a laser captured preparation enriched for serotonin neurons from rhesus macaques. Microarray analysis was conducted (n=2 animals/treatment) and then confirmed for pivotal genes with qRT-PCR on additional laser captured material (n=3 animals/treatment). Ovariectomized rhesus macaques were treated with either placebo, E or E+P via Silastic implants for 1month prior to euthanasia. The midbrain was obtained, sectioned and immunostained for TPH. TPH-positive neurons were laser captured using an Arcturus Laser Dissection Microscope (Pixel II). RNA from laser captured serotonin neurons (n=2 animals/treatment) was hybridized to Rhesus Affymetrix GeneChips for screening purposes. There was a 2-fold or greater change in the expression of 28 probe sets related to glutamate processes in E and E+P treated animals. Quantitative (q) RT-PCR was conducted for 11 genes with a custom Taqman PCR array containing monkey specific primers and analyzed with ANOVA followed by Bonferroni's test. The log of the relative expression values indicated that in general, the responses to E and E+P were similar. Comparison of the relative expression or log relative expression in Ovx-controls to combined E and E+P treated groups with t-tests showed a significant increase in AMPA1 (GRIA1), AMPA2 (GRIA2), AMPA4 (GRIA4), NMDA2a (GRIN2A), metabotrophic glutamate receptor (GRM1), glutamine synthetase (GLUL), glutamate dehydrogenase (GLUD), glutamate cysteine ligase modifier subunit (GCLM), the glutamate transporter 2 (SLC1A2) and the glutamate transporter 3 (SLC1A3) with steroid treatment. There was no effect of steroid treatment on gene expression of the glutamate cysteine ligase catalytic subunit (GCLC). These data suggest that ovarian steroids target gene expression of ionotrophic and metabotrophic glutamate receptors in serotonin neurons. These receptors are present on dendritic spines and are necessary for spine maturation. The mRNAs coding for glutamate-related enzymes and transporters are likely derived from astrocytes or glutamate-containing terminals. Their induction by ovarian steroids indicates a complex upregulation of multiple components in the glutamate cycle and antioxidation, in addition to spine proliferation."	"Modulation of behavior and glutamate receptor mRNA expression in rats after sub-chronic administration of benzo(a)pyrene. The present study aimed to test whether exposure to benzo(a)pyrene [B(a)P] affects spatial learning and short-term memory by modulating the expression of the Gria1 and Grin2a glutamate receptor subunit genes in the hippocampus. Thirty-six 21-24-day-old, male rats were randomly assigned into high-, medium-, and low-dose toxin exposure groups (6.25, 2.5, and 1 mg/kg, respectively) and a control group, each containing nine rats. The behavioral performance of adult rats exposed to sub-chronic administration of B(a)P was monitored by learning and memory tests (Morris water maze). Real-time PCR assays were used to quantify Gria1 and Grin2a gene expression in the hippocampus. At medium and high doses, B(a)P impaired spatial learning performance. The crossing-platform-location frequency and the time spent swimming in the platform area, which both relate to short-term memory, were significantly decreased in B(a)P-treated rats compared with controls. The level of Gria1 mRNA increased 2.6-5.9-fold, and the level of Grin2a mRNA increased 10-14.5-fold, with a greater fold increase associated with higher doses of B(a)P. We demonstrated that sub-chronic administration of B(a)P inhibits spatial learning and short-term memory, and increases Gria1 and Grin2a expression in the hippocampus. This suggests a relationship of B(a)P exposure levels with Gria1 and Grin2a expression and impairment of short-term and spatial memory."	"Identification of genes upregulated in ALK-positive and EGFR/KRAS/ALK-negative lung adenocarcinomas. Activation of the EGFR, KRAS, and ALK oncogenes defines 3 different pathways of molecular pathogenesis in lung adenocarcinoma. However, many tumors lack activation of any pathway (triple-negative lung adenocarcinomas) posing a challenge for prognosis and treatment. Here, we report an extensive genome-wide expression profiling of 226 primary human stage I-II lung adenocarcinomas that elucidates molecular characteristics of tumors that harbor ALK mutations or that lack EGFR, KRAS, and ALK mutations, that is, triple-negative adenocarcinomas. One hundred and seventy-four genes were selected as being upregulated specifically in 79 lung adenocarcinomas without EGFR and KRAS mutations. Unsupervised clustering using a 174-gene signature, including ALK itself, classified these 2 groups of tumors into ALK-positive cases and 2 distinct groups of triple-negative cases (groups A and B). Notably, group A triple-negative cases had a worse prognosis for relapse and death, compared with cases with EGFR, KRAS, or ALK mutations or group B triple-negative cases. In ALK-positive tumors, 30 genes, including ALK and GRIN2A, were commonly overexpressed, whereas in group A triple-negative cases, 9 genes were commonly overexpressed, including a candidate diagnostic/therapeutic target DEPDC1, that were determined to be critical for predicting a worse prognosis. Our findings are important because they provide a molecular basis of ALK-positive lung adenocarcinomas and triple-negative lung adenocarcinomas and further stratify more or less aggressive subgroups of triple-negative lung ADC, possibly helping identify patients who may gain the most benefit from adjuvant chemotherapy after surgical resection."	"A genome-wide association study with DNA pooling identifies the variant rs11866328 in the GRIN2A gene that affects disease progression of chronic HBV infection. Host genetics play a vital role in determining clinical outcomes of hepatitis B virus (HBV) infection. To identify novel susceptibility loci to HBV progression, we carried out a genome-wide association study with DNA pooling. This study assessed the relationship between 8 highly-ranked SNPs selected from our DNA pool and disease progression of HBV infection in two independent case-control studies. The first population included 628 asymptomatic HBV carriers (AsC) and 1729 progressed HBV carriers recruited from Hubei Province in south China. The second population was composed of 226 AsC and 215 progressed HBV carriers recruited from Shandong Province in north China. Of the 8 SNPs, variant rs11866328 (G/T), located in the glutamate receptor ionotropic N-methyl D-aspartate 2A (GRIN2A) gene, was replicated and had significant associations with disease progression of HBV infection in the DNA pooling stage both in the Hubei (OR 1.65; 95% CI 1.34,2.02; p=1.96 × 10(-6); additive model), and in the Shandong (OR 1.73; 95% CI 1.14,2.65; p=1.00×10(-2); additive model) population. Polymorphism rs11866328 in the GRIN2A gene might be a genetic variant underlying the susceptibility of HBV carriers to disease progression."	"NMDA receptor gene variations as modifiers in Huntington disease: a replication study. Several candidate modifier genes which, in addition to the pathogenic CAG repeat expansion, influence the age at onset (AO) in Huntington disease (HD) have already been described. The aim of this study was to replicate association of variations in the N-methyl D-aspartate receptor subtype genes GRIN2A and GRIN2B in the &quot;REGISTRY&quot; cohort from the European Huntington Disease Network (EHDN). The analyses did replicate the association reported between the GRIN2A rs2650427 variation and AO in the entire cohort. Yet, when subjects were stratified by AO subtypes, we found nominally significant evidence for an association of the GRIN2A rs1969060 variation and the GRIN2B rs1806201 variation. These findings further implicate the N-methyl D-aspartate receptor subtype genes as loci containing variation associated with AO in HD."	"Association of GRIN1 and GRIN2A-D with schizophrenia and genetic interaction with maternal herpes simplex virus-2 infection affecting disease risk. N-methyl-D-aspartate (NMDA) receptors are very important for proper brain development and several lines of evidence support that hypofunction of the NMDA receptors are involved in the pathophysiology of schizophrenia. Gene variation and gene-environmental interactions involving the genes encoding the NMDA receptors are therefore likely to influence the risk of schizophrenia. The aim of this study was to determine (1) whether SNP variation in the genes (GRIN1, GRIN2A, GRIN2B, GRIN2C, and GRIN2D) encoding the NMDA receptor were associated with schizophrenia; (2) whether GRIN gene variation in the offspring interacted with maternal herpes simplex virus-2 (HSV-2) seropositivity during pregnancy influencing the risk of schizophrenia later in life. Individuals from three independently collected Danish case control samples were genotyped for 81 tagSNPs (in total 984 individuals diagnosed with schizophrenia and 1,500 control persons) and antibodies against maternal HSV-2 infection were measured in one of the samples (365 cases and 365 controls). Nine SNPs out of 30 in GRIN2B were significantly associated with schizophrenia. One SNP remained significant after Bonferroni correction (rs1806194, P(nominal) = 0.0008). Significant interaction between maternal HSV-2 seropositivity and GRIN2B genetic variation in the offspring were observed for seven SNPs and two remained significant after Bonferroni correction (rs1805539, P(nominal) = 0.0001 and rs1806205, P(nominal) = 0.0008). The significant associations and interactions were located at the 3' region of GRIN2B suggesting that genetic variation in this part of the gene may be involved in the pathophysiology of schizophrenia."	"Comprehensive analysis of candidate genes for photosensitivity using a complementary bioinformatic and experimental approach. Photoparoxysmal response (PPR) is a highly heritable electroencephalographic trait characterized by an increased sensitivity to photic stimulation. It may serve as an endophenotype for idiopathic generalized epilepsy. Family linkage studies identified susceptibility loci for PPR on chromosomes 5q35.3, 8q21.13, and 16p13.3. This study aimed to identify key candidate genes within these loci. We used bioinformatics tools for gene prioritization integrating information on biologic function, sequence data, gene expression, and others. The prime candidate gene from this analysis was sequenced in 48 photopositive probands. Presumed functional implications of identified polymorphisms were investigated using bioinformatics methods. The glutamate receptor subunit gene GRIN2A was identified as a prime candidate gene. Sequence analysis revealed various new polymorphisms. None of the identified variants was predicted to be functionally relevant. We objectified the selection of candidate genes for PPR without an a priori hypothesis. Particularly among the various ion channel genes in the linkage regions, GRIN2A was identified as the prime candidate gene. GRIN2A mutations have recently been identified in various epilepsies. Even though our mutation analysis failed to demonstrate direct involvement of GRIN2A in photosensitivity, in silico gene prioritization may provide a useful tool for the identification of candidate genes within large genomic regions."	"Genome-wide gene-environment study identifies glutamate receptor gene GRIN2A as a Parkinson's disease modifier gene via interaction with coffee. Our aim was to identify genes that influence the inverse association of coffee with the risk of developing Parkinson's disease (PD). We used genome-wide genotype data and lifetime caffeinated-coffee-consumption data on 1,458 persons with PD and 931 without PD from the NeuroGenetics Research Consortium (NGRC), and we performed a genome-wide association and interaction study (GWAIS), testing each SNP's main-effect plus its interaction with coffee, adjusting for sex, age, and two principal components. We then stratified subjects as heavy or light coffee-drinkers and performed genome-wide association study (GWAS) in each group. We replicated the most significant SNP. Finally, we imputed the NGRC dataset, increasing genomic coverage to examine the region of interest in detail. The primary analyses (GWAIS, GWAS, Replication) were performed using genotyped data. In GWAIS, the most significant signal came from rs4998386 and the neighboring SNPs in GRIN2A. GRIN2A encodes an NMDA-glutamate-receptor subunit and regulates excitatory neurotransmission in the brain. Achieving P(2df) = 10(-6), GRIN2A surpassed all known PD susceptibility genes in significance in the GWAIS. In stratified GWAS, the GRIN2A signal was present in heavy coffee-drinkers (OR = 0.43; P = 6×10(-7)) but not in light coffee-drinkers. The a priori Replication hypothesis that &quot;Among heavy coffee-drinkers, rs4998386_T carriers have lower PD risk than rs4998386_CC carriers&quot; was confirmed: OR(Replication) = 0.59, P(Replication) = 10(-3); OR(Pooled) = 0.51, P(Pooled) = 7×10(-8). Compared to light coffee-drinkers with rs4998386_CC genotype, heavy coffee-drinkers with rs4998386_CC genotype had 18% lower risk (P = 3×10(-3)), whereas heavy coffee-drinkers with rs4998386_TC genotype had 59% lower risk (P = 6×10(-13)). Imputation revealed a block of SNPs that achieved P(2df)&lt;5×10(-8) in GWAIS, and OR = 0.41, P = 3×10(-8) in heavy coffee-drinkers. This study is proof of concept that inclusion of environmental factors can help identify genes that are missed in GWAS. Both adenosine antagonists (caffeine-like) and glutamate antagonists (GRIN2A-related) are being tested in clinical trials for treatment of PD. GRIN2A may be a useful pharmacogenetic marker for subdividing individuals in clinical trials to determine which medications might work best for which patients."	"Alterations in protein and gene expression within the barrel cortices of ZnT3 knockout mice: experience-independent and dependent changes. Much evidence exists for the involvement of vesicular zinc in neurotransmission and cortical plasticity. Recent studies have reported that mice deficient in zinc transporter-3 protein (ZnT3) and thus, vesicular zinc, have significant behavioural and biochemical deficits. Here, we examined whether phenotypic differences existed in the barrel cortices of ZnT3 KO mice using functional proteomics and quantitative PCR. Additionally, by manipulating whisker input, we also investigated experience-dependent changes in protein and gene expression, thereby assaying how cortical plasticity is different in the absence of vesicular zinc. The GABA metabolizing protein ABAT was observed in lower abundances consistently in KO mice. Several presynaptic proteins were identified that were abundant in differing amounts between the WT and KO groups in an experience-dependent manner. At baseline, we observed a decrease in the relative expression of Dlg4, Grin2a, Mt3, and Ntrkb genes in KO mice. The reduced expression of Nrtkb persisted with whisker plucking. These data demonstrate that fundamental changes in the expression of proteins and genes important in neurotransmission occur in the absence of vesicular zinc. Furthermore, the complement of experience-dependent changes were different between WT and KO mice, indicating that the lack of vesicular zinc affects the process of cortical plasticity."	"L-type voltage-dependent calcium channels facilitate acetylation of histone H3 through PKCγ phosphorylation in mice with methamphetamine-induced place preference. The present study investigated regulation of histone acetylation by L-type voltage-dependent calcium channels (VDCCs), one of the machineries to provide Ca(2+) signals. Acetylation of histone through the phosphorylation of protein kinase Cγ (PKCγ) in the development of methamphetamine (METH)-induced place preference was demonstrated in the limbic forebrain predominantly but also in the nucleus accumbens of α1C subunit knockout mice. Chronic administration of METH produced a significant place preference in mice, which was dose-dependently inhibited by both chelerythrine (a PKC inhibitor) and nifedipine (an L-type VDCC blocker). Protein levels of acetylated histone H3 and p-PKCγ significantly increased in the limbic forebrain of mice showing METH-induced place preference, and it was also significantly attenuated by pre-treatment with chelerythrine or nifedipine. METH-induced place preference was also significantly attenuated by deletion of half the α1C gene, which is one of the subunits forming Ca(2+) channels. Furthermore, increased acetylation of histone H3 was found in specific gene-promoter regions related to synaptic plasticity, such as Nrxn, Syp, Dlg4, Gria1, Grin2a, Grin2b, Camk2a, Creb, and cyclin-dependent kinase 5, in wild-type mice showing METH-induced place preference, while such enhancement of multiple synaptic plasticity genes was significantly attenuated by a deletion of half the α1C gene. These findings suggest that L-type VDCCs play an important role in the development of METH-induced place preference by facilitating acetylation of histone H3 in association with enhanced expression of synaptic plasticity genes via PKCγ phosphorylation following an increase in the intracellular Ca(2+) concentration."	"Age-related alterations in retinal neurovascular and inflammatory transcripts. Vision loss is one of the most common complications of aging, even in individuals with no diagnosed ocular disease. Increasing age induces structural alterations and functional impairments in retinal neurons and microvasculature linked to the activation of proinflammatory signaling pathways. Commonalities between the effects of aging and those observed with diabetes, including visual impairment, vascular dysfunction, and increased inflammatory response, have led to the hypothesis that diabetes-associated pathologies reflect an &quot;advanced aging&quot; phenotype. The goal of this study was to investigate the effects of aging on retinal mRNA expression of neurovascular and inflammatory transcripts previously demonstrated to be regulated with diabetes. The relative expression of 36 genes of interest previously identified as consistently regulated with diabetes was assessed in retinas of Young (3 month), Adult (12 month), and Aged (26 month) Fischer 344 x Brown Norway (F1) hybrid rats using quantitative PCR. Serum samples obtained at sacrifice were assayed to determine serum glucose levels. Eleven inflammation- and microvascular-related genes previously demonstrated to be upregulated in young diabetic rats (complement component 1 s subcomponent [C1s], chitinase 3-like 1 [Chi3L1], endothelin 2 [Edn2], guanylate nucleotide binding protein 2 [Gbp2], glial fibrillary acidic protein [Gfap], intracellular adhesion molecule 1 [Icam1], janus kinase 3 [Jak3], lipopolysaccharide-induced TNF factor [Litaf], complement 1-inhibitor [Serping1], signal transducer and activator of transcription 3 [Stat3], tumor necrosis factor receptor subfamily member 12a [Tnfrsf12a]) demonstrated progressively increasing retinal expression in aged normoglycemic rats. Additionally, two neuronal function-related genes (glutamate receptor ionotropic NMDA 2A [Grin2a] and polycomb group ring finger 1 [Pcgf1]) and one inflammation-related gene (pigment epithelium-derived growth factor [Pedf]) displayed patterns of expression dissimilar to that previously demonstrated with diabetes. The commonalities in retinal age-related and diabetes-induced molecular alterations provide support for the hypothesis that diabetes and aging engage some common para-inflammatory processes. However, these results also demonstrate that while the retinal genomic response to diabetes and aging share commonalities, they are not superimposable phenotypes. The observed changes in retinal gene expression provide further evidence of retinal alterations in neurovascular and inflammatory processes across the adult rat lifespan; this is indicative of para-inflammation that may contribute to the functional impairments that occur with advanced age. The data also suggest the potential for an additive effect of aging and diabetes in the development of diabetic complications."	"Association between a polymorphism in the promoter of a glutamate receptor subunit gene (GRIN2A) and alcoholism. A variable (GT)(n) repeat in the 5'-regulatory region of N-methyl-D-aspartate GRIN2A subtype has recently been identified and associated with psychiatric disorders. In this study, we examined the association of this polymorphism with alcohol dependence. Subject-control analysis included 206 alcohol-dependent and 168 control subjects. Average observed repeat numbers and genotype distributions were significantly different (P-value = 0.001) in alcohol-dependent subjects versus control subjects. Short alleles were significantly less frequent among alcohol-dependent subjects (odds ratio = 0.58, P-value = 7 × 10(-4)). These results could be replicated in an independent sample of 116 alcohol-dependent subjects. For the first time, a significant association was identified between this polymorphism and alcoholism."	"Exome sequencing identifies GRIN2A as frequently mutated in melanoma. The incidence of melanoma is increasing more than any other cancer, and knowledge of its genetic alterations is limited. To systematically analyze such alterations, we performed whole-exome sequencing of 14 matched normal and metastatic tumor DNAs. Using stringent criteria, we identified 68 genes that appeared to be somatically mutated at elevated frequency, many of which are not known to be genetically altered in tumors. Most importantly, we discovered that TRRAP harbored a recurrent mutation that clustered in one position (p. Ser722Phe) in 6 out of 167 affected individuals (∼4%), as well as a previously unidentified gene, GRIN2A, which was mutated in 33% of melanoma samples. The nature, pattern and functional evaluation of the TRRAP recurrent mutation suggest that TRRAP functions as an oncogene. Our study provides, to our knowledge, the most comprehensive map of genetic alterations in melanoma to date and suggests that the glutamate signaling pathway is involved in this disease."	"Gene-gene interaction analyses between NMDA receptor subunit and dopamine receptor gene variants and clozapine response. To investigate the possible association and gene-gene interaction effects of polymorphisms in NMDA receptor subunit (GRIN1, GRIN2A and GRIN2B) and dopamine receptor (DRD1, DRD2 and DRD3) genes with clozapine response. GRIN1 rs11146020 (G1001C), GRIN2A GT-repeat and GRIN2B rs10193895 (G-200T) polymorphisms were tested for association in a Caucasian (n = 183) and an African-American (n = 49) sample using χ(2) and ANOVA tests. Logistic regression and two-way ANOVA were used to explore gene-gene interaction effects with dopamine receptor gene variants. This study does not support the involvement of the NMDA receptor subunit gene polymorphisms in clozapine response. All tests for an association were negative. Gene-gene interaction analyses however yielded promising leads, including an observed effect between DRD1 rs686 and DRD3 Ser9Gly polymorphisms on clozapine response (p = 0.002)."	"Rare mutations in N-methyl-D-aspartate glutamate receptors in autism spectrum disorders and schizophrenia. Pharmacological, genetic and expression studies implicate N-methyl-D-aspartate (NMDA) receptor hypofunction in schizophrenia (SCZ). Similarly, several lines of evidence suggest that autism spectrum disorders (ASD) could be due to an imbalance between excitatory and inhibitory neurotransmission. As part of a project aimed at exploring rare and/or de novo mutations in neurodevelopmental disorders, we have sequenced the seven genes encoding for NMDA receptor subunits (NMDARs) in a large cohort of individuals affected with SCZ or ASD (n=429 and 428, respectively), parents of these subjects and controls (n=568). Here, we identified two de novo mutations in patients with sporadic SCZ in GRIN2A and one de novo mutation in GRIN2B in a patient with ASD. Truncating mutations in GRIN2C, GRIN3A and GRIN3B were identified in both subjects and controls, but no truncating mutations were found in the GRIN1, GRIN2A, GRIN2B and GRIN2D genes, both in patients and controls, suggesting that these subunits are critical for neurodevelopment. The present results support the hypothesis that rare de novo mutations in GRIN2A or GRIN2B can be associated with cases of sporadic SCZ or ASD, just as it has recently been described for the related neurodevelopmental disease intellectual disability. The influence of genetic variants appears different, depending on NMDAR subunits. Functional compensation could occur to counteract the loss of one allele in GRIN2C and GRIN3 family genes, whereas GRIN1, GRIN2A, GRIN2B and GRIN2D appear instrumental to normal brain development and function."	"Mutations in GRIN2A and GRIN2B encoding regulatory subunits of NMDA receptors cause variable neurodevelopmental phenotypes. N-methyl-D-aspartate (NMDA) receptors mediate excitatory neurotransmission in the mammalian brain. Two glycine-binding NR1 subunits and two glutamate-binding NR2 subunits each form highly Ca²(+)-permeable cation channels which are blocked by extracellular Mg²(+) in a voltage-dependent manner. Either GRIN2B or GRIN2A, encoding the NMDA receptor subunits NR2B and NR2A, was found to be disrupted by chromosome translocation breakpoints in individuals with mental retardation and/or epilepsy. Sequencing of GRIN2B in 468 individuals with mental retardation revealed four de novo mutations: a frameshift, a missense and two splice-site mutations. In another cohort of 127 individuals with idiopathic epilepsy and/or mental retardation, we discovered a GRIN2A nonsense mutation in a three-generation family. In a girl with early-onset epileptic encephalopathy, we identified the de novo GRIN2A mutation c.1845C&gt;A predicting the amino acid substitution p.N615K. Analysis of NR1-NR2A(N615K) (NR2A subunit with the p.N615K alteration) receptor currents revealed a loss of the Mg²(+) block and a decrease in Ca²(+) permeability. Our findings suggest that disturbances in the neuronal electrophysiological balance during development result in variable neurological phenotypes depending on which NR2 subunit of NMDA receptors is affected."	"Specific involvement of postsynaptic GluN2B-containing NMDA receptors in the developmental elimination of corticospinal synapses. The GluN2B (GluRepsilon2/NR2B) and GluN2A (GluRepsilon1/NR2A) NMDA receptor (NMDAR) subtypes have been differentially implicated in activity-dependent synaptic plasticity. However, little is known about the respective contributions made by these two subtypes to developmental plasticity, in part because studies of GluN2B KO [Grin2b(-/-) (2b(-/-))] mice are hampered by early neonatal mortality. We previously used in vitro slice cocultures of rodent cerebral cortex (Cx) and spinal cord (SpC) to show that corticospinal (CS) synapses, once present throughout the SpC, are eliminated from the ventral side during development in an NMDAR-dependent manner. To study subtype specificity of NMDAR in this developmental plasticity, we cocultured Cx and SpC slices derived from postnatal day 0 (P0) animals with different genotypes [2b(-/-), Grin2a(-/-) (2a(-/-)), or WT mice]. The distribution of CS synapses was studied electrophysiologically and with a voltage-sensitive dye. Synapse elimination on the ventral side was blocked in WT(Cx)-2b(-/-)(SpC) pairs but not in WT(Cx)-2a(-/-)(SpC) or 2b(-/-)(Cx)-WT(SpC) pairs. CS axonal regression was also observed through live imaging of CS axons labeled with enhanced yellow fluorescent protein (EYFP) through exo utero electroporation. These findings suggest that postsynaptic GluN2B is selectively involved in CS synapse elimination. In addition, the elimination was not blocked in 2a(-/-) SpC slices, where Ca(2+) entry through GluN2B-mediated CS synaptic currents was reduced to the same level as in 2b(-/-) slices, suggesting that the differential effect of GluN2B and GluN2A in CS synapse elimination might not be explained based solely on greater Ca(2+) entry through GluN2B-containing channels."	"Strain differences in stress responsivity are associated with divergent amygdala gene expression and glutamate-mediated neuronal excitability. Stress is a major risk factor for numerous neuropsychiatric diseases. However, susceptibility to stress and the qualitative nature of stress effects on behavior differ markedly among individuals. This is partly because of the moderating influence of genetic factors. Inbred mouse strains provide a relatively stable and restricted range of genetic and environmental variability that is valuable for disentangling gene-stress interactions. Here, we screened a panel of inbred strains for anxiety- and depression-related phenotypes at baseline (trait) and after exposure to repeated restraint. Two strains, DBA/2J and C57BL/6J, differed in trait and restraint-induced anxiety-related behavior (dark/light exploration, elevated plus maze). Gene expression analysis of amygdala, medial prefrontal cortex, and hippocampus revealed divergent expression in DBA/2J and C57BL/6J both at baseline and after repeated restraint. Restraint produced strain-dependent expression alterations in various genes including glutamate receptors (e.g., Grin1, Grik1). To elucidate neuronal correlates of these strain differences, we performed ex vivo analysis of glutamate excitatory neurotransmission in amygdala principal neurons. Repeated restraint augmented amygdala excitatory postsynaptic signaling and altered metaplasticity (temporal summation of NMDA receptor currents) in DBA/2J but not C57BL/6J. Furthermore, we found that the C57BL/6J-like changes in anxiety-related behavior after restraint were absent in null mutants lacking the modulatory NMDA receptor subunit Grin2a, but not the AMPA receptor subunit Gria1. Grin2a null mutants exhibited significant ( approximately 30%) loss of dendritic spines on amygdala principal neurons under nonrestraint conditions. Collectively, our data support a model in which genetic variation in glutamatergic neuroplasticity in corticolimbic circuitry underlies phenotypic variation in responsivity to stress."	"Deletions in 16p13 including GRIN2A in patients with intellectual disability, various dysmorphic features, and seizure disorders of the rolandic region. Seizure disorders of the rolandic region comprise a spectrum of different epilepsy syndromes ranging from benign rolandic epilepsy to more severe seizure disorders including atypical benign partial epilepsy/pseudo-Lennox syndrome,electrical status epilepticus during sleep, and Landau-Kleffner syndrome. Centrotemporal spikes are the unifying electroencephalographic hallmark of these benign focal epilepsies, indicating a pathophysiologic relationship between the various epilepsies arising from the rolandic region. The etiology of these epilepsies is elusive, but a genetic component is assumed given the heritability of the characteristic electrographic trait. Herein we report on three patients with intellectual disability, various dysmorphic features, and epilepsies involving the rolandic region, carrying previously undescribed deletions in 16p13. The only gene located in the critical region shared by all three patients is GRIN2A coding for the alpha-2 subunit of the neuronal N-methyl-D-aspartate(NMDA) receptor."	"Molecular genetics of attention deficit hyperactivity disorder. Although twin studies demonstrate that ADHD is a highly heritable condition, molecular genetic studies suggest that the genetic architecture of ADHD is complex. The handful of genome-wide linkage and association scans that have been conducted thus far show divergent findings and are, therefore, not conclusive. Similarly, many of the candidate genes reviewed here (ie, DBH, MAOA, SLC6A2, TPH-2, SLC6A4, CHRNA4, GRIN2A) are theoretically compelling from neurobiological systems perspective but available data are sparse and inconsistent. However, candidate gene studies of ADHD have produced substantial evidence implicating several genes in the etiology of the disorder, with meta-analyses supportive of a role of the genes coding for DRD4, DRD5, SLC6A3, SNAP-25, and HTR1B in the etiology of ADHD."	"Functional (GT)n polymorphisms in promoter region of N-methyl-d-aspartate receptor 2A subunit (GRIN2A) gene affect hippocampal and amygdala volumes. The glutamate system including N-methyl-d-aspartate (NMDA) affects synaptic formation, plasticity and maintenance. Recent studies have shown a variable (GT)n polymorphism in the promoter region of the NMDA subunit gene (GRIN2A) and a length-dependent inhibition of transcriptional activity by the (GT)n repeat. In the present study, we examined whether the GRIN2A polymorphism is associated with regional brain volume especially in medial temporal lobe structures, in which the NMDA-dependent synaptic processes have been most extensively studied. Gray matter regions of interest (ROIs) for the bilateral amygdala and hippocampus were outlined manually on the magnetic resonance images of 144 healthy individuals. In addition, voxel-based morphometry (VBM) was conducted to explore the association of genotype with regional gray matter volume from everywhere in the brain in the same sample. The manually measured hippocampal and amygdala volumes were significantly larger in subjects with short allele carriers (n = 89) than in those with homozygous long alleles (n = 55) when individual differences in intracranial volume were accounted for. The VBM showed no significant association between the genotype and regional gray matter volume in any brain region. These findings suggest that the functional GRIN2A (GT)n polymorphism could weakly but significantly impact on human medial temporal lobe volume in a length-dependent manner, providing in vivo evidence of the role of the NMDA receptor in human brain development."	"Genetic association studies of glutamate, GABA and related genes in schizophrenia and bipolar disorder: a decade of advance. Schizophrenia (SZ) and bipolar disorder (BD) are debilitating neurobehavioural disorders likely influenced by genetic and non-genetic factors and which can be seen as complex disorders of synaptic neurotransmission. The glutamatergic and GABAergic neurotransmission systems have been implicated in both diseases and we have reviewed extensive literature over a decade for evidence to support the association of glutamate and GABA genes in SZ and BD. Candidate-gene based population and family association studies have implicated some ionotrophic glutamate receptor genes (GRIN1, GRIN2A, GRIN2B and GRIK3), metabotropic glutamate receptor genes (such as GRM3), the G72/G30 locus and GABAergic genes (e.g. GAD1 and GABRB2) in both illnesses to varying degrees, but further replication studies are needed to validate these results. There is at present no consensus on specific single nucleotide polymorphisms or haplotypes associated with the particular candidate gene loci in these illnesses. The genetic architecture of glutamate systems in bipolar disorder need to be better studied in view of recent data suggesting an overlap in the genetic aetiology of SZ and BD. There is a pressing need to integrate research platforms in genomics, epistatic models, proteomics, metabolomics, neuroimaging technology and translational studies in order to allow a more integrated understanding of glutamate and GABAergic signalling processes and aberrations in SZ and BD as well as their relationships with clinical presentations and treatment progress over time."	"Heroin addiction in African Americans: a hypothesis-driven association study. Heroin addiction is a chronic complex disease with a substantial genetic contribution. This study was designed to identify gene variants associated with heroin addiction in African Americans. The emphasis was on genes involved in reward modulation, behavioral control, cognitive function, signal transduction and stress response. We have performed a case-control association analysis by screening with 1350 variants of 130 genes. The sample consisted of 202 former severe heroin addicts in methadone treatment and 167 healthy controls with no history of drug abuse. Single nucleotide polymorphism (SNP), haplotype and multi-SNP genotype pattern analyses were performed. Seventeen SNPs showed point-wise significant association with heroin addiction (nominal P&lt; 0.01). These SNPs are from genes encoding several receptors: adrenergic (ADRA1A), arginine vasopressin (AVPR1A), cholinergic (CHRM2), dopamine (DRD1), GABA-A (GABRB3), glutamate (GRIN2A) and serotonin (HTR3A) as well as alcohol dehydrogenase (ADH7), glutamic acid decarboxylase (GAD1 and GAD2), the nucleoside transporter (SLC29A1) and diazepam-binding inhibitor (DBI). The most significant result of the analyses was obtained for the GRIN2A haplotype G-A-T (rs4587976-rs1071502-rs1366076) with protective effect (P(uncorrected) = 9.6E- 05, P(corrected) = 0.058). This study corroborates several reported associations with alcohol and drug addiction as well as other related disorders and extends the list of variants that may affect the development of heroin addiction. Further studies will be necessary to replicate these associations and to elucidate the roles of these variants in drug addiction vulnerability."	"Microarray analysis of gene expression profile by treatment of Cinnamomi Ramulus in lipopolysaccharide-stimulated BV-2 cells. It has been reported that components of Cinnamomi Ramulus (CR) demonstrate an anti-inflammatory effect by inhibiting the expression of inducible nitric oxide synthesis (iNOS) and cyclooxygenase-2 (COX-2) and by suppressing nitric oxide (NO) production in the central nervous system (CNS) as well as in the periphery. In this study, microarray analysis was performed to investigate the effect of CR on the gene expression and associated pathways of lipopolysaccharide (LPS)-stimulated BV-2 microglial cells. Microglia plays an important role in the processes of several inflammation-mediated neurodegenerative diseases. Activated microglia can produce various pro-inflammatory cytokines, chemokines, and toxic mediators, which may initiate or amplify the inflammatory responses in the CNS. In the present study, the negative control group was cultured in normal medium, the positive control group was activated with 1 microg/ml of LPS, and the CR group was previously treated with 10 microg/ml of CR before LPS stimulation. With the cutoff value of 1.5-fold change in the expression, 341 genes including pro-inflammatory cytokines, chemokines, and transcription factors were found to be up-regulated in LPS-stimulated BV-2 cells (Supplemental Table 2). CR reduced the LPS-induced up-regulation of such inflammatory genes as Ccl5, Cd80, Cxcl10, Grin2a, Ifi203, Ifit1, Il1alpha, Il6, Lilrb3, Nos2 (iNOS), Rab2b, Rsad2 and Vpreb1. This resulted in a full list of 38 and 37 annotated genes whose expression is up- and down-regulated by CR respectively (Supplemental Table 3). RT-PCR analysis showed that the expression of LPS-induced TNF-alpha, IL-1beta, IL-6, and iNOS mRNAs were attenuated in the presence of the CR extract. The results imply that CR has the anti-inflammatory effect of down-regulating the expression of various genes related to inflammatory responses in LPS-stimulated BV-2 cells, and that CR could be a candidate for the prevention or therapeutic treatment of inflammation-mediated neurodegenerative diseases."	"Candidate genes and neuropsychological phenotypes in children with ADHD: review of association studies. We reviewed systematically the results of genetic studies investigating associations between putative susceptibility genes for attention-deficit hyperactivity disorder (ADHD) and neuropsychological traits relevant for this disorder. We identified papers for review through the PubMed database. Twenty-nine studies examined 10 genes (DRD4, DAT1, COMT, DBH, MAOA, DRD5, ADRA2A, GRIN2A, BDNF and TPH2) in relation to neuropsychological traits relevant for ADHD. For DRD4, the continuous performance test (CPT) and derived tasks were the most used tests. Association of high reaction time variability with the 7-repeat allele absence appears to be the most consistent result and seems to be specific to ADHD. Speed of processing, set-shifting and cognitive impulsiveness were less frequently investigated but seem to be altered in the 7-repeat allele carriers. No effect of genotype was found on response inhibition (the stop and go/no-go tasks). For DAT1, 4 studies provide conflicting results in relation to omission and commission errors from CPT and derived tasks. High reaction time variability seems to be the most replicated cognitive marker associated with the 10-repeat homozygosity. The other genes have attracted fewer studies, and the reported findings need to be replicated. Although we aimed to perform a formal meta-analysis, this was not possible because the number of studies using the same neurocognitive endophenotypes was limited. We referred only minimally to the various theoretical frameworks in this field of research; more detail would have been beyond the scope of our systematic review. Finally, sample sizes in most of the studies we reviewed were small. Thus, some negative findings could be attributed to a lack of statistical power, and positive results should be considered preliminary until they are replicated in extended samples. Several methodological issues, including measurement errors, developmental changes in cognitive abilities, sex, psychostimulant effects and presence of comorbid conditions, represent confounding factors and may explain conflicting results."	"Genome-wide association study of smoking initiation and current smoking. For the identification of genes associated with smoking initiation and current smoking, genome-wide association analyses were carried out in 3497 subjects. Significant genes that replicated in three independent samples (n = 405, 5810, and 1648) were visualized into a biologically meaningful network showing cellular location and direct interaction of their proteins. Several interesting groups of proteins stood out, including glutamate receptors (e.g., GRIN2B, GRIN2A, GRIK2, GRM8), proteins involved in tyrosine kinase receptor signaling (e.g., NTRK2, GRB14), transporters (e.g., SLC1A2, SLC9A9) and cell-adhesion molecules (e.g., CDH23). We conclude that a network-based genome-wide association approach can identify genes influencing smoking behavior."	"Primate home range and GRIN2A, a receptor gene involved in neuronal plasticity: implications for the evolution of spatial memory. N-methyl-D-aspartate (NMDA) glutamate receptors play crucial roles in neuronal synaptic plasticity, learning and memory. However, as to whether different NMDA subunits are implicated in specific forms of memory is unclear. Moreover, nothing is known about the interspecific genetic variability of the GRIN2A subunit and how this variation can potentially explain evolutionary changes in behavioral phenotypes. Here, we used 28 primate GRIN2A sequences and various proxies of memory across primates to investigate the role of GRIN2A. Codon-specific sequence analysis on these sequences showed that GRIN2A in primates coevolved with a likely ecological proxy of spatial memory (relative home-range size) but not with other indices of non-spatial learning and memory such as social memory and social learning. Models based on gene averages failed to detect positive selection in primate branches with major changes in relative home-range size. This implies that accelerated evolution is concentrated in specific parts of the protein expressed by GRIN2A. Overall, our molecular evolution study, the first on GRIN2A, supports the notion that different NMDA subunits may play a role in specific forms of memory and that phenotypic diversity along with genetic evolution can be used to investigate the link between genes and behavior across evolutionary time."	"Coupling of energy metabolism and synaptic transmission at the transcriptional level: role of nuclear respiratory factor 1 in regulating both cytochrome c oxidase and NMDA glutamate receptor subunit genes. Neuronal activity and energy metabolism are tightly coupled processes. Regions high in neuronal activity, especially of the glutamatergic type, have high levels of cytochrome c oxidase (COX). Perturbations in neuronal activity affect the expressions of COX and glutamatergic NMDA receptor subunit 1 (NR1). The present study sought to test our hypothesis that the coupling extends to the transcriptional level, whereby NR1 and possibly other NR subunits and COX are coregulated by the same transcription factor, nuclear respiratory factor 1 (NRF-1), which regulates all COX subunit genes. By means of multiple approaches, including in silico analysis, electrophoretic mobility shift and supershift assays, in vivo chromatin immunoprecipitation, promoter mutations, and real-time quantitative PCR, NRF-1 was found to functionally bind to the promoters of Grin 1 (NR1), Grin 2b (NR2b) and COX subunit genes, but not of Grin2a and Grin3a genes. These transcripts were upregulated by KCl and downregulated by tetrodotoxin (TTX) in cultured primary neurons. However, silencing of NRF-1 with small interference RNA blocked the upregulation of Grin1, Grin2b, and COX induced by KCl, and overexpression of NRF-1 rescued these transcripts that were suppressed by TTX. NRF-1 binding sites on Grin1 and Grin2b genes are also highly conserved among mice, rats, and humans. Thus, NRF-1 is an essential transcription factor critical in the coregulation of NR1, NR2b, and COX, and coupling exists at the transcriptional level to ensure coordinated expressions of proteins important for synaptic transmission and energy metabolism."	"Molecular mechanisms of schizophrenia. Schizophrenia is a complex disorder, where family, twin and adoption studies have been demonstrating a high heritability of the disease and that this disease is not simply defined by several major genes but rather evolves from addition or potentiation of a specific cluster of genes, which subsequently determines the genetic vulnerability of an individual. Linkage and association studies suggest that a genetic vulnerablility, is not forcefully leading to the disease since triggering factors and environmental influences, i.e. birth complications, drug abuse, urban background or time of birth have been identified. This has lead to the assumption that schizophrenia is not only a genetically defined static disorder but a dynamic process leading to dysregulation of multiple pathways. There are several different hypothesis based on several facets of the disease, some of them due to the relatively well-known mechanisms of therapeutic agents. The most widely considered neurodevelopmental hypothesis of schizophrenia integrates environmental influences and causative genes. The dopamine hypothesis of schizophrenia is based on the fact that all common treatments involve antidopaminergic mechanisms and genes such as DRD2, DRD3, DARPP-32, BDNF or COMT are closely related to dopaminergic system functioning. The glutamatergic hypothesis of schizophrenia lead recently to a first successful mGlu2/3 receptor agonistic drug and is underpinned by significant findings in genes regulating the glutamatergic system (SLC1A6, SLC1A2 GRIN1, GRIN2A, GRIA1, NRG1, ErbB4, DTNBP1, DAAO, G72/30, GRM3). Correspondingly, GABA has been proposed to modulate the pathophysiology of the disease which is represented by the involvement of genes like GABRA1, GABRP, GABRA6 and Reelin. Moreover, several genes implicating immune, signaling and networking deficits have been reported to be involved in the disease, i.e. DISC1, RGS4, PRODH, DGCR6, ZDHHC8, DGCR2, Akt, CREB, IL-1B, IL-1RN, IL-10, IL-1B. However, molecular findings suggest that a complex interplay between receptors, kinases, proteins and hormones is involved in schizophrenia. In a unifying hypothesis, different cascades merge into another that ultimately lead to the development of symptoms adherent to schizophrenic disorders."	"NR2A and NR2B receptor gene variations modify age at onset in Huntington disease in a sex-specific manner. In addition to the pathogenetic CAG repeat expansion other genetic factors play a significant role in determining age at onset (AO) in Huntington disease (HD), e.g. variations in the NR2A and NR2B glutamate receptor subunit genes (GRIN2A, GRIN2B). In order to expand these findings we fine-mapped a larger HD patient panel (n = 250) using densely spaced markers flanking the originally associated SNPs in GRIN2A and GRIN2B. In GRIN2A association fine-mapping based on eight additional SNPs confirmed intron 2 as the region of strongest association. In GRIN2B fine-mapping with seven additional SNPs consolidated C2664T as causal genetic variation. Gender stratification of patients revealed differences in the variability in AO attributable to the CAG repeat number and highly significant differences in the AO association with the C2664T and rs8057394/ rs2650427 variations. Addition of the corresponding genotype variations to the effect of CAG repeat lengths resulted in a significant increase of the R2 values only in females. The sex-specific effect for C2664T is underscored by differences in the genotype and allele frequencies observed for female versus male HD patients (P = 0.01) caused by decreased CC frequency in females. Overall, female HD patients homozygous for the CC genotype tended to have later AO compared to the other two genotypes. Stratification of the results by presumed menopausal status demonstrated that the significant findings were predominantly observed in pre-menopausal patients. We speculate that altered hormone levels herald protective effects of this genotype. Together, GRIN2A and GRIN2B genotype variations explain 7.2% additional variance in AO for HD."	"eIF2B and oligodendrocyte survival: where nature and nurture meet in bipolar disorder and schizophrenia? Bipolar disorder and schizophrenia share common chromosomal susceptibility loci and many risk-promoting genes. Oligodendrocyte cell loss and hypomyelination are common to both diseases. A number of environmental risk factors including famine, viral infection, and prenatal or childhood stress may also predispose to schizophrenia or bipolar disorder. In cells, related stressors (starvation, viruses, cytokines, oxidative, and endoplasmic reticulum stress) activate a series of eIF2-alpha kinases, which arrest protein synthesis via the eventual inhibition, by phosphorylated eIF2-alpha, of the translation initiation factor eIF2B. Growth factors increase protein synthesis via eIF2B activation and counterbalance this system. The control of protein synthesis by eIF2-alpha kinases is also engaged by long-term potentiation and repressed by long-term depression, mediated by N-methyl-D-aspartate (NMDA) and metabotropic glutamate receptors. Many genes reportedly associated with both schizophrenia and bipolar disorder code for proteins within or associated with this network. These include NMDA (GRIN1, GRIN2A, GRIN2B) and metabotropic (GRM3, GRM4) glutamate receptors, growth factors (BDNF, NRG1), and many of their downstream signaling components or accomplices (AKT1, DAO, DAOA, DISC1, DTNBP1, DPYSL2, IMPA2, NCAM1, NOS1, NOS1AP, PIK3C3, PIP5K2A, PDLIM5, RGS4, YWHAH). They also include multiple gene products related to the control of the stress-responsive eIF2-alpha kinases (IL1B, IL1RN, MTHFR, TNF, ND4, NDUFV2, XBP1). Oligodendrocytes are particularly sensitive to defects in the eIF2B complex, mutations in which are responsible for vanishing white matter disease. The convergence of natural and genetic risk factors on this area in bipolar disorder and schizophrenia may help to explain the apparent vulnerability of this cell type in these conditions. This convergence may also help to reconcile certain arguments related to the importance of nature and nurture in the etiology of these psychiatric disorders. Both may affect common stress-related signaling pathways that dictate oligodendrocyte viability and synaptic plasticity."	"Multiple genes and factors associated with bipolar disorder converge on growth factor and stress activated kinase pathways controlling translation initiation: implications for oligodendrocyte viability. Famine and viral infection, as well as interferon therapy have been reported to increase the risk of developing bipolar disorder. In addition, almost 100 polymorphic genes have been associated with this disease. Several form most of the components of a phosphatidyl-inositol signalling/AKT1 survival pathway (PIK3C3, PIP5K2A, PLCG1, SYNJ1, IMPA2, AKT1, GSK3B, TCF4) which is activated by growth factors (BDNF, NRG1) and also by NMDA receptors (GRIN1, GRIN2A, GRIN2B). Various other protein products of genes associated with bipolar disorder either bind to or are affected by phosphatidyl-inositol phosphate products of this pathway (ADBRK2, HIP1R, KCNQ2, RGS4, WFS1), are associated with its constituent elements (BCR, DUSP6, FAT, GNAZ) or are downstream targets of this signalling cascade (DPYSL2, DRD3, GAD1, G6PD, GCH1, KCNQ2, NOS3, SLC6A3, SLC6A4, SST, TH, TIMELESS). A further pathway relates to endoplasmic reticulum-stress (HSPA5, XBP1), caused by problems in protein glycosylation (ALG9), growth factor receptor sorting (PIK3C3, HIP1R, SYBL1), or aberrant calcium homoeostasis (WFS1). Key processes relating to these pathways appear to be under circadian control (ARNTL, CLOCK, PER3, TIMELESS). DISC1 can also be linked to many of these pathways. The growth factor pathway promotes protein synthesis, while the endoplasmic reticulum stress pathway, and other stress pathways activated by viruses and cytokines (IL1B, TNF, Interferons), oxidative stress or starvation, all factors associated with bipolar disorder risk, shuts down protein synthesis via control of the EIF2 alpha and beta translation initiation complex. For unknown reasons, oligodendrocytes appear to be particularly prone to defects in the translation initiation complex (EIF2B) and the convergence of these environmental and genomic signalling pathways on this area might well explain their vulnerability in bipolar disorder."	"Replication of twelve association studies for Huntington's disease residual age of onset in large Venezuelan kindreds. The major determinant of age of onset in Huntington's disease is the length of the causative triplet CAG repeat. Significant variance remains, however, in residual age of onset even after repeat length is factored out. Many genetic polymorphisms have previously shown evidence of association with age of onset of Huntington's disease in several different populations. To replicate these genetic association tests in 443 affected people from a large set of kindreds from Venezuela. Previously tested polymorphisms were analysed in the HD gene itself (HD), the GluR6 kainate glutamate receptor (GRIK2), apolipoprotein E (APOE), the transcriptional coactivator CA150 (TCERG1), the ubiquitin carboxy-terminal hydrolase L1 (UCHL1), p53 (TP53), caspase-activated DNase (DFFB), and the NR2A and NR2B glutamate receptor subunits (GRIN2A, GRIN2B). The GRIN2A single-nucleotide polymorphism explains a small but considerable amount of additional variance in residual age of onset in our sample. The TCERG1 microsatellite shows a trend towards association but does not reach statistical significance, perhaps because of the uninformative nature of the polymorphism caused by extreme allele frequencies. We did not replicate the genetic association of any of the other genes. GRIN2A and TCERG1 may show true association with residual age of onset for Huntington's disease. The most surprising negative result is for the GRIK2 (TAA)(n) polymorphism, which has previously shown association with age of onset in four independent populations with Huntington's disease. The lack of association in the Venezuelan kindreds may be due to the extremely low frequency of the key (TAA)(16) allele in this population."	"Significant linkage and association between a functional (GT)n polymorphism in promoter of the N-methyl-D-aspartate receptor subunit gene (GRIN2A) and schizophrenia. Dysfunction of the N-methyl-d-aspartate (NMDA) type glutamate receptor has been proposed as a mechanism in the etiology of schizophrenia, based on the observation that non-competitive antagonists of the NMDA receptor, such as phencyclidine, induce schizophrenia-like symptoms. Previous study identified a variable (GT)n polymorphism in the promoter region of the N-methyl-d-aspartate (NMDA) subunit gene (GRIN2A), and showed its association with schizophrenia in a case-control study, together with a correlation between the length of the repeat and severity of chronic outcome. Our present study was aimed at confirming the association of the (GT)n polymorphism of GRIN2A promoter with schizophrenia using 122 Han Chinese sib-pair families. Non-parametric linkage analysis and transmission/disequilibrium test (TDT) were undertaken using the GENEHUNTER, v2.1. In non-parametric linkage analysis, suggestive linkage was found for the (GT)n polymorphism (NPL=2.77, P=0.002902). The TDT was significant for (GT)n polymorphism and that the (GT)23 was preferentially transmitted to schizophrenia-affected children (T/NT: 123:72, chi(2)=13.34, P=0.000260). Our results indicate that the (GT)n polymorphism in the promoter of GRIN2A gene may play a significant role in the etiology of schizophrenia among our samples."	"Linkage of monogenic infantile hypertrophic pyloric stenosis to chromosome 16p12-p13 and evidence for genetic heterogeneity. Infantile hypertrophic pyloric stenosis (IHPS) is the most common form of bowel obstruction in infancy. The disease affects males four times more often than females and is considered a paradigm for the sex-modified model of multifactorial inheritance. However, pedigrees consistent with autosomal dominant inheritance have also been documented. We analyzed a 3-generation family with IHPS including 10 affected individuals (5 males and 5 females) and mapped the underlying disease locus to chromosome 16p12-p13 (LOD score 3.23) by using a single-nucleotide polymorphism-based genomewide scan. The analysis of 10 additional multiplex pedigrees yielded negative or nonsignificant LOD scores, indicating the presence of locus heterogeneity. Sequence analysis of candidate genes from the chromosome 16 disease interval excluded the presence of pathogenic mutations in the GRIN2A and MYH11 genes."	"[Genetic background of ADHD: genes of the serotonergic system, other candidate genes, endophenotype]. Recent studies have shown that in the aetiology of attention-deficit hyperactivity disorder (ADHD) genetic factors may be of importance. Biochemical and pharmacological studies reveal a connection between abnormalities of dopaminergic, adrenergic and serotonergic system and ADHD. Therefore genes for enzymes synthesizing or degrading proper neurotransmitters, genes for adequate transporters and receptors and genes for other substances, which altered the level of neurotransmitters, are studied. Many authors describe the connection between ADHD development and the synaptosomal-associated protein 25 (SNAP-25) gene. This protein plays a role in catecholamine secretion. Its higher expression is specific for neurones. SNAP-25 gene mutation may change this protein level, function of synapse and neurotransmitters storage. Acetylcholine receptor alpha4 subunit gene stimulation increases the dopamine level. Therefore this receptor gene may be important in the aetiology of ADHD studies. Other possible factors in ADHD background are substance influence on brain maturation, including N-methyl-D aspartate glutamate receptor 2A gene polymorphism (GRIN2A) and brain derived neurotrophic factor (BDNF) gene. One of the greatest challenges in studying the genetic basis of psychiatric disorders is to find appropriate ways to define the relevant endophenotype. ADHD often coexists with other psychiatric disorders, including specific developmental disorders, conduct disorders, obsessive-compulsive disorder and early onset of bipolar disorder."	"Significant association between the genetic variations in the 5' end of the N-methyl-D-aspartate receptor subunit gene GRIN1 and schizophrenia. N-methyl-D-aspartate (NMDA) receptors play important roles in many neurophysiological processes. Evidence from previous studies indicate that NMDA receptors contribute to the pathophysiology of schizophrenia. Two NMDA receptor subunit genes, GRIN1 and GRIN2A, are both good candidate genes for schizophrenia. We genotyped five single nucleotide polymorphisms (SNPs) in GRIN1 and two in GRIN2A in 2455 Han Chinese subjects, including population- and family-based samples, and performed case-control and transmission disequilibrium test (TDT) analyses. A microsatellite in GRIN2A was genotyped in population-based samples and a Mann-Whitney U test was performed. A highly significant association was detected at the 5' end of GRIN1. Analyses of single variants and multiple-locus haplotypes indicate that the association is mainly generated by rs11146020 (case-control study: p = .0000013, odds ratio = .61, 95% confidence interval .50-.74; TDT: p = .0019, T/NT = 79/123). No association was found in the GRIN2A polymorphisms. Our results provide support for the hypothesis that NMDA receptors are an important factor in schizophrenia. Moreover, rs11146020 is located in 5' untranslated region where several functional elements have been found. Hence, the SNP is a potential candidate in altering risk for schizophrenia and worthy of further replication and functional study."	"Analysis of correlation between serum D-serine levels and functional promoter polymorphisms of GRIN2A and GRIN2B genes. D-Serine is an endogenous coagonist that increases the opening of N-methyl-D-aspartate (NMDA)-type glutamate receptor channels. We previously reported a reduction of D-serine serum levels in schizophrenia, supporting the disease hypothesis of NMDA receptor-mediated hypo-neurotransmission. The serum levels of D-serine are thought to reflect brain d-serine content. It is important to understand whether there is a direct link between the altered D-serine levels and NMDA receptor expression in vivo or whether these are independent processes. Two polymorphisms are known to regulate the expression of NMDA receptor subunit genes: (GT)(n) (rs3219790) in the promoter region of the NR2A subunit gene (GRIN2A) and -200T &gt; G (rs1019385) in the NR2B gene (GRIN2B). These polymorphisms are also reported to be associated with schizophrenia. Therefore, we examined the correlation between these two polymorphisms and d-serine serum levels in mentally healthy controls, schizophrenics and the combined group. We observed no significant genotype-phenotype correlations in any of the sample groups. However, analyses of larger sample numbers and the detection of additional polymorphisms that affect gene expression are needed before we can conclude that NMDA receptor expression and serum levels of d-serine, if involved in schizophrenia pathophysiology, are independent and additive events."	"Genetics of bipolar disorder. Many linkage loci and candidate genes have been reported in molecular genetic studies of bipolar disorder. However, none of these findings have been consistently replicated. Meta-analyses of linkage studies have also reported conflicting results. Among recently reported candidate genes, BDNF, G72, AKT1, GRIN2A, XBP1, GRK3, HTR4, IMPA2 and GABRA1 may have some importance. Study of the possible roles of epigenetics or analysis of genetic diseases, in which bipolar disorder is one of phenotypes, may also be promising. In addition to monoaminergic and intracellular signaling pathways, recent studies have revealed possible roles for mitochondrial dysfunction, for glutamatergic dysfunction and for the endoplasmic reticulum stress pathway."	"Genetics and epigenetics in major psychiatric disorders: dilemmas, achievements, applications, and future scope. No specific gene has been identified for any major psychiatric disorder, including schizophrenia, in spite of strong evidence supporting a genetic basis for these complex and devastating disorders. There are several likely reasons for this failure, ranging from poor study design with low statistical power to genetic mechanisms such as polygenic inheritance, epigenetic interactions, and pleiotropy. Most study designs currently in use are inadequate to uncover these mechanisms. However, to date, genetic studies have provided some valuable insight into the causes and potential therapies for psychiatric disorders. There is a growing body of evidence suggesting that the understanding of the genetic etiology of psychiatric illnesses, including schizophrenia, will be more successful with integrative approaches considering both genetic and epigenetic factors. For example, several genes including those encoding dopamine receptors (DRD2, DRD3, and DRD4), serotonin receptor 2A (HTR2A) and catechol-O-methyltransferase (COMT) have been implicated in the etiology of schizophrenia and related disorders through meta-analyses and large, multicenter studies. There is also growing evidence for the role of DRD1, NMDA receptor genes (GRIN1, GRIN2A, GRIN2B), brain-derived neurotrophic factor (BDNF), and dopamine transporter (SLC6A3) in both schizophrenia and bipolar disorder. Recent studies have indicated that epigenetic modification of reelin (RELN), BDNF, and the DRD2 promoters confer susceptibility to clinical psychiatric conditions. Pharmacologic therapy of psychiatric disorders will likely be more effective once the molecular pathogenesis is known. For example, the hypoactive alleles of DRD2 and the hyperactive alleles of COMT, which degrade the dopamine in the synaptic cleft, are associated with schizophrenia. It is likely that insufficient dopaminergic transmission in the frontal lobe plays a role in the development of negative symptoms associated with this disorder. Antipsychotic therapies with a partial dopamine D2 receptor agonist effect may be a plausible alternative to current therapies, and would be effective in symptom reduction in psychotic individuals. It is also possible that therapies employing dopamine D1/D2 receptor agonists or COMT inhibitors will be beneficial for patients with negative symptoms in schizophrenia and bipolar disorder. The complex etiology of schizophrenia, and other psychiatric disorders, warrants the consideration of both genetic and epigenetic systems and the careful design of experiments to illumine the genetic mechanisms conferring liability for these disorders and the benefit of existing and new therapies."	"Candidate-gene screening and association analysis at the autism-susceptibility locus on chromosome 16p: evidence of association at GRIN2A and ABAT. Autism is a highly heritable neurodevelopmental disorder whose underlying genetic causes have yet to be identified. To date, there have been eight genome screens for autism, two of which identified a putative susceptibility locus on chromosome 16p. In the present study, 10 positional candidate genes that map to 16p11-13 were examined for coding variants: A2BP1, ABAT, BFAR, CREBBP, EMP2, GRIN2A, MRTF-B, SSTR5, TBX6, and UBN1. Screening of all coding and regulatory regions by denaturing high-performance liquid chromatography identified seven nonsynonymous changes. Five of these mutations were found to cosegregate with autism, but the mutations are not predicted to have deleterious effects on protein structure and are unlikely to represent significant etiological variants. Selected variants from candidate genes were genotyped in the entire International Molecular Genetics Study of Autism Consortium collection of 239 multiplex families and were tested for association with autism by use of the pedigree disequilibrium test. Additionally, genotype frequencies were compared between 239 unrelated affected individuals and 192 controls. Patterns of linkage disequilibrium were investigated, and the transmission of haplotypes across candidate genes was tested for association. Evidence of single-marker association was found for variants in ABAT, CREBBP, and GRIN2A. Within these genes, 12 single-nucleotide polymorphisms (SNPs) were subsequently genotyped in 91 autism trios (one affected individual and two unaffected parents), and the association was replicated within GRIN2A (Fisher's exact test, P&lt;.0001). Logistic regression analysis of SNP data across GRIN2A and ABAT showed a trend toward haplotypic differences between cases and controls."	"Extended analyses support the association of a functional (GT)n polymorphism in the GRIN2A promoter with Japanese schizophrenia. Dysfunction of the N-methyl-D-aspartate (NMDA) type glutamate receptor has been proposed as a mechanism in the etiology of schizophrenia. Recently, we identified a variable (GT)n repeat in the promoter region of the NMDA NR2A subunit gene (GRIN2A), and showed its association with schizophrenia in a case-control study, together with a correlation between the length of the repeat and severity of chronic outcome. In this study, we extended our analyses, by increasing the number of case-control samples to a total of 672 schizophrenics and 686 controls, and excluded potential sample stratification effects. We confirmed the significant allelic association between the repeat polymorphism and disease (P = 0.011), and as in the previous study, we observed an over-representation of longer alleles in schizophrenia. These results suggest a probable genetic effect for the GRIN2A promoter (GT)n variation on the predisposition to schizophrenia in Japanese cohorts."	"NR2A and NR2B receptor gene variations modify age at onset in Huntington disease. N -Methyl-d-aspartate (NMDA) receptor-mediated excitotoxicity has been proposed to play a role in the pathogenesis of Huntington disease (HD), an autosomal dominantly inherited disorder associated with defined expansions in a stretch of perfect CAG repeats in the 5' part of the IT15 gene. The number of CAG repeat units is highly predictive for the age at onset (AO) in HD. However, AO is only modestly correlated with repeat length when the HD expansion range is in the high 30s or low 40s. Therefore, we investigated whether the genes for the different subunits composing the multimeric complexes of NMDA receptors (GRIN glutamate receptor, ionotropic, N-methyl-d-aspartate) represent candidates for modulating the AO of HD. In the studied cohort of 167 HD patients, the repeat range from 41 to 45 CAG units accounted for 30.8% of the variance in AO; 12.3% additional variance could be attributed to GRIN2B genotype variation and 4.5% to GRIN2A genotype variation. We conclude that these two genes, coding for NR2B and NR2A subtypes mainly expressed in the striatum, may influence the variability in AO of HD. Neuroprotective strategies for HD patients and persons at risk should be reconsidered in the light of these findings."	"Follow-up of genetic linkage findings on chromosome 16p13: evidence of association of N-methyl-D aspartate glutamate receptor 2A gene polymorphism with ADHD. Attention deficit hyperactivity disorder (ADHD) is a childhood onset disorder, for which there is good evidence that genetic factors contribute to the aetiology. Recently reported linkage findings suggested evidence of a susceptibility locus on chromosome 16p13 (maximum LOD score of 4.2, P=5 x 10(-6)). The GRIN2A (glutamate receptor, ionotropic, N-methyl D-aspartate 2A) gene that encodes the N-methyl D-aspartate receptor subunit 2A (NMDA2A) maps to this region of linkage. As this is also a good functional candidate gene for ADHD, we undertook family-based association analysis in a sample of 238 families. We found significant evidence of association with a GRIN2A exon 5 polymorphism (chi(2)=5.7, P=0.01). Our data suggest that genetic variation in GRIN2A may confer increased risk for ADHD and that this, at least in part, might be responsible for the linkage result on 16p reported by Smalley et al. We conclude that replication is required and that further work examining for association of GRIN2A polymorphisms with ADHD is warranted."	"Glutamate receptor, ionotropic, N-methyl D-aspartate 2A (GRIN2A) gene as a positional candidate for attention-deficit/hyperactivity disorder in the 16p13 region. The glutamate system may be involved in the development of attention-deficit/hyperactivity disorder (ADHD) based on animal models and the role of N-methyl-D-aspartate receptors (NMDAR) in cognition and motor processes. A follow-up study of the first genome scan for ADHD identified significant evidence for linkage to the 16p13 region. The glutamate receptor, ionotropic, N-methyl D-aspartate 2A (GRIN2A) gene that encodes the 2A subunit of the NMDA receptor, resides in this region and a recent study has reported an association between this gene and ADHD. We tested for linkage between the alleles and haplotypes of four polymorphisms at the GRIN2A locus and ADHD in our sample of 183 nuclear families with 229 affected children. In contrast to previous findings, we did not identify any evidence for a relationship of these markers and ADHD. Owing to the role of GRIN2A in aspects of cognition, we investigated the relationship of this gene to the cognitive phenotypes of inhibitory control, verbal short-term memory and verbal working memory. There was no significant evidence of linkage between GRIN2A and these phenotypes. While the results were not significant in our sample, the previous association finding suggests that further study of this gene is warranted."	"Association analysis of the genetic variants of the N-methyl D-aspartate receptor subunit 2b (NR2b) and treatment-refractory schizophrenia in the Chinese. Several pieces of evidence showed that N-methyl D-aspartate (NMDA)-receptor-mediated decreases in function may be a causative factor for schizophrenia. The NMDA receptors are composed of a common glutamate receptor, an ionotropic NMDA 1 (GRIN1) subunit and one of four GRIN2 subunits (GRIN2A-GRIN2D), combined in an undetermined ratio to make up the receptor complex. In this study, we tested the hypothesis of whether the GRIN2B 366C/G and 2664C/T genetic polymorphisms are related to Chinese treatment-refractory schizophrenic patients. 193 treatment-refractory schizophrenic patients and 176 normal subjects were recruited for this study. The results demonstrated that the genotype distribution was similar between schizophrenic patients and control subjects in 366C/G (p = 0.88) and 2664C/T (p = 0.336), but we found a higher mean clozapine dosage in 2664C/C genotype patients. These results show that GRIN2B genetic variations were not a major risk factor for treatment-refractory schizophrenic patients, but may influence the effect of clozapine during treatment."	"Genetic analysis of a functional GRIN2A promoter (GT)n repeat in bipolar disorder pedigrees in humans. Hypofunction of glutamatergic neurotransmission has been hypothesized to underlie the pathophysiology of bipolar affective disorder, as well as schizophrenia. We examined the role of the N-methyl-D-aspartate receptor 2A subunit (GRIN2A) gene on 16p13.3, a region thought to be linked to bipolar disorder, (1) because in a prior study we identified a functional and polymorphic (GT)n repeat in the 5' regulatory region of the gene, with longer alleles showing lower transcriptional activity and an over representation in schizophrenia, and (2) because of the suggestion of a genetic overlap between affective disorder and schizophrenia. Family-based association tests detected a nominally significant preferential transmission of longer alleles in a panel of 96 multiplex bipolar pedigrees. These results support the hypothesis that a hypoglutamatergic state is involved in the pathogenesis of bipolar affective disorder."	"A microsatellite repeat in the promoter of the N-methyl-D-aspartate receptor 2A subunit (GRIN2A) gene suppresses transcriptional activity and correlates with chronic outcome in schizophrenia. Hypofunction of the N-methyl-D-aspartate (NMDA) receptor has been hypothesized to underlie the pathophysiology of schizophrenia, based on the observation that non-competitive antagonists of the NMDA receptor, such as phencyclidine, induce schizophrenia-like symptoms. Mice lacking the NR2A subunit of the NMDA receptor complex are known to display abnormal behaviour, similar to schizophrenic symptoms. The expression of NR2A starts at puberty, a period corresponding to the clinical onset of schizophrenia. This evidence suggests that the NR2A (GRIN2A) gene may play a role in the development of schizophrenia and disease phenotypes. In this study, we performed a genetic analysis of this gene in schizophrenia. Analysis of the GRIN2A gene detected four single nucleotide polymorphisms, and a variable (GT)(n) repeat in the promoter region of the gene. A case-control study (375 schizophrenics and 378 controls) demonstrated evidence of an association between the repeat polymorphism and the disease (P = 0.05, Mann-Whitney test), with longer alleles overly represented in patients. An in-vitro promoter assay revealed a length dependent inhibition of transcriptional activity by the (GT)(n) repeat, which was consistent with a receptor binding assay in postmortem brains. Significantly, the score of symptom severity in chronic patients correlated with repeat size (P = 0.01, Spearman's Rank test). These results illustrate a genotype-phenotype correlation in schizophrenia and suggest that the longer (GT)(n) stretch may act as a risk-conferring factor that worsens chronic outcome by reducing GRIN2A levels in the brain."	"Detailed chromosomal and radiation hybrid mapping in the proximal part of rat Chromosome 10 and gene order comparison with mouse and human. The rat provides valuable and sometimes unique models of human complex diseases. To fully exploit the rat models in biomedical research, it is important to have access to detailed knowledge of the rat genome organization as well as its relation to the human genome. Rat Chromosome 10 (RNO10) harbors several important cancer-related genes. Deletions in the proximal part of RNO10 were repeatedly found in a rat model for endometrial cancer. To identify functional and positional candidate genes in the affected region, we used radiation hybrid (RH) mapping and single- and dual-color fluorescence in situ hybridization (FISH) techniques to construct a detailed chromosomal map of the proximal part of RNO10. The regional localization of 14 genes, most of them cancer-related ( Grin2a, Gspt1, Crebbp, Gfer, Tsc2, Tpsb1, Il9r, Il4, Irf1, Csf2, Sparc, Tp53, Thra1, Gh1), and of five microsatellite markers ( D10Mit10, D10Rat42, D10Rat50, D10Rat72, and D10Rat165) was determined on RNO10. For a fifteenth gene, Ppm1b, which had previously been assigned to RNO10, the map position was corrected to RNO6q12-q13."	"Localization of the human NMDAR2D receptor subunit gene (GRIN2D) to 19q13.1-qter, the NMDAR2A subunit gene to 16p13.2 (GRIN2A), and the NMDAR2C subunit gene (GRIN2C) to 17q24-q25 using somatic cell hybrid and radiation hybrid mapping panels. NA"	"Gene structure and chromosomal localization of the mouse NMDA receptor channel subunits. Multiple espilon subunits are major determinants of the diversity of the N-methyl-D-aspartate (NMDA) receptor channel. The four epsilon subunit mRNAs exhibit distinct expression patterns in the brain. In an attempt to elucidate the molecular basis of selective and characteristic expression of the NMDA receptor channel subunits, we have isolated the gene encoding the mouse NMDA receptor epsilon 3 subunit and have determined its structural organization. The epsilon 3 subunit gene spans 17.5 kb and consists of 14 exons. The major transcription start site is 439 bp upstream of the ATG initiation codon as determined by primer extension and S1 nucleas protection analyses. Two polyadenylation sites are 397 (or 398) and 402 bp downstream of the termination codon. The 5'-flanking region of the epsilon 3 subunit gene contains GC-rich segments including consensus sequences for binding of the transcription factors Spl and EGR-1. The murine chromosomal locations of the five NMDA receptor channel subunits, the epsilon 1 (Grin2a), epsilon 2 (Grin2b), epsilon 3 (Grin2c), epsilon 4 (Grin2d) and zeta 1 (Grinl) subunits, were determined using an interspecific backcross mapping panel derived from crosses of [(C57BL/6JxM. spretus) F1xC57BL/6J] mice. Each of these genes mapped to a single chromosome location. The mapping results assigned the five loci to five different mouse autosomes, indicating that they have become well dispersed among mouse chromosomes."	"Gene mapping of NMDA receptors and metabotropic glutamate receptors in the rat (Rattus norvegicus). Five N-methyl-D-aspartate receptor subunit genes and six metabotropic glutamate receptor subtype genes have been assigned to particular rat chromosomes by using a rat x mouse somatic cell hybrid clone panel. N-Methyl-D-aspartate receptor subunit genes (gene symbol, GRIN) GRIN1, GRIN2A, GRIN2B, GRIN2C, and GRIN2D have been assigned to chromosomes (Chr) 3, 10, 4, 10, and 1, respectively. Metabotropic glutamate receptor subtype genes (gene symbol, GRM) GRM1, GRM2, GRM3, GRM4, GRM5, and GRM6 have been assigned to Chr 1, 8, 4, 20, 1, and 10, respectively. In addition, GRIN2A and GRM6 loci were successfully localized on Chr 10 linkage maps by linkage analyses. The genetic distances between loci in cM (+/- SD) are as follows: GRIN2A-28.6(+/- 7.0)-RR24-23.3(+/- 6.4)-MYHSE, from a linkage analysis using the (SHR x WTC)F1 x WTC cross, and RR24-4.2(+/- 2.9)-GRM6-4.2(+/- 2.9)-MMYHSE-2.1(+/- 2.1)-ASGR, SHBG-27.1(+/- 6.4)-PPY, from a linkage analysis using the (ZI x TM)F1 x ZI cross."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"KCNB1"	"complex neurodevelopmental disorder"	"Intellectual Disability and Potassium Channelopathies: A Systematic Review. Intellectual disability (ID) manifests prior to adulthood as severe limitations to intellectual function and adaptive behavior. The role of potassium channelopathies in ID is poorly understood. Therefore, we aimed to evaluate the relationship between ID and potassium channelopathies. We hypothesized that potassium channelopathies are strongly associated with ID initiation, and that both gain- and loss-of-function mutations lead to ID. This systematic review explores the burden of potassium channelopathies, possible mechanisms, advancements using animal models, therapies, and existing gaps. The literature search encompassed both PubMed and Embase up to October 2019. A total of 75 articles describing 338 cases were included in this review. Nineteen channelopathies were identified, affecting the following genes: KCNMA1, KCNN3, KCNT1, KCNT2, KCNJ10, KCNJ6, KCNJ11, KCNA2, KCNA4, KCND3, KCNH1, KCNQ2, KCNAB1, KCNQ3, KCNQ5, KCNC1, KCNB1, KCNC3, and KCTD3. Twelve of these genes presented both gain- and loss-of-function properties, three displayed gain-of-function only, three exhibited loss-of-function only, and one had unknown function. How gain- and loss-of-function mutations can both lead to ID remains largely unknown. We identified only a few animal studies that focused on the mechanisms of ID in relation to potassium channelopathies and some of the few available therapeutic options (channel openers or blockers) appear to offer limited efficacy. In conclusion, potassium channelopathies contribute to the initiation of ID in several instances and this review provides a comprehensive overview of which molecular players are involved in some of the most prominent disease phenotypes."	"Multi-trait analysis for genome-wide association study of five psychiatric disorders. We conducted a cross-trait meta-analysis of genome-wide association study on schizophrenia (SCZ) (n = 65,967), bipolar disorder (BD) (n = 41,653), autism spectrum disorder (ASD) (n = 46,350), attention deficit hyperactivity disorder (ADHD) (n = 55,374), and depression (DEP) (n = 688,809). After the meta-analysis, the number of genomic loci increased from 14 to 19 in ADHD, from 3 to 10 in ASD, from 45 to 57 in DEP, from 8 to 54 in BD, and from 64 to 87 in SCZ. We observed significant enrichment of overlapping genes among different disorders and identified a panel of cross-disorder genes. A total of seven genes were found being commonly associated with four out of five psychiatric conditions, namely GABBR1, GLT8D1, HIST1H1B, HIST1H2BN, HIST1H4L, KCNB1, and DCC. The SORCS3 gene was highlighted due to the fact that it was involved in all the five conditions of study. Analysis of correlations unveiled the existence of two clusters of related psychiatric conditions, SCZ and BD that were separate from the other three traits, and formed another group. Our results may provide a new insight for genetic basis of the five psychiatric disorders."	"KCNB1 gene polymorphisms and related indel as predictor biomarkers of treatment response for colorectal cancer - toward a personalized medicine. The KCNB1 gene variants were differentially associated with cancers. However, their association with colorectal cancer has not yet been explored. We investigated the contribution of the KCNB1 gene variants rs3331, rs1051295, and indel (insertion/deletion) rs11468831 Polymorphism as predictors of the treatment response in colorectal cancer patients. A retrospective study, which involved 291 Tunisian colorectal cancer patients (aged 60.0 ± 13.1 years), who were stratified into responder and non-responder groups, according to TNM stages and their responsiveness to chemotherapy based on fluorouracil. KCNB1 genotyping was performed with amplification-refractory mutation system-polymerase chain reaction, and was confirmed by Sanger sequencing. Sex-specific response was found and colorectal cancer females are less likely to achieve a positive response during the chemotherapy strategy, compared to males. Weight and body mass index, tumor size, and tumor localization are considered as predictive factors to treatment responsiveness. Carriage of rs11468831 Ins allele was significantly associated with successful therapy achievement (p adjusted &lt; 0.001). Stratification of colorectal cancer patients' response according to tumor localization and TNM stages reveals negative association of rs3331 Major allele to treatment response among the patients with advanced cancer stages (subgroup G2). The presence of rs3331 (homozygous minor) C/C genotype was positively associated with decline in carcino-embryonic antigen (p = 0.043) and CA19-9 (p = 0.014) serum levels. On the other hand, the presence of rs1051295 (homozygous minor) A/A genotype was correlated with marked decline in CA19-9 serum levels. KCNB1 haplotype did not reveal any association between haplotypes and treatment response. The results obtained suggest that gender-specific strategies for screening treatment and prevention protocols as well as KCNB1 variants may constitute an effective model for ongoing personalization medicine."	"Phenotypic and genetic spectrum of epilepsy with myoclonic atonic seizures. We aimed to describe the extent of neurodevelopmental impairments and identify the genetic etiologies in a large cohort of patients with epilepsy with myoclonic atonic seizures (MAE). We deeply phenotyped MAE patients for epilepsy features, intellectual disability, autism spectrum disorder, and attention-deficit/hyperactivity disorder using standardized neuropsychological instruments. We performed exome analysis (whole exome sequencing) filtered on epilepsy and neuropsychiatric gene sets to identify genetic etiologies. We analyzed 101 patients with MAE (70% male). The median age of seizure onset was 34 months (range = 6-72 months). The main seizure types were myoclonic atonic or atonic in 100%, generalized tonic-clonic in 72%, myoclonic in 69%, absence in 60%, and tonic seizures in 19% of patients. We observed intellectual disability in 62% of patients, with extremely low adaptive behavioral scores in 69%. In addition, 24% exhibited symptoms of autism and 37% exhibited attention-deficit/hyperactivity symptoms. We discovered pathogenic variants in 12 (14%) of 85 patients, including five previously published patients. These were pathogenic genetic variants in SYNGAP1 (n = 3), KIAA2022 (n = 2), and SLC6A1 (n = 2), as well as KCNA2, SCN2A, STX1B, KCNB1, and MECP2 (n = 1 each). We also identified three new candidate genes, ASH1L, CHD4, and SMARCA2 in one patient each. MAE is associated with significant neurodevelopmental impairment. MAE is genetically heterogeneous, and we identified a pathogenic genetic etiology in 14% of this cohort by exome analysis. These findings suggest that MAE is a manifestation of several etiologies rather than a discrete syndromic entity."	"Increased diagnostic yield in complex dystonia through exome sequencing. A strategy based on targeted gene panel sequencing identifies possibly pathogenic variants in fewer than 20% of cases in early-onset and familial form of dystonia. By using Whole Exome Sequencing (WES), we aimed to identify the missing genetic causes in dystonic patients without diagnosis despite gene panel sequencing. WES was applied to DNA samples from 32 patients with early-onset or familial dystonia investigated by sequencing of a 127 movement disorders-associated gene panel. Dystonia was described according to the familial history, body distribution, evolution pattern, age of onset, associated symptoms and associated movement disorders. Rate of diagnoses was evaluated for each clinical feature. We identified causative variants for 11 patients from 9 families in CTNNB1, SUCLG1, NUS1, CNTNAP1, KCNB1, RELN, GNAO1, HIBCH, ADCK3 genes, yielding an overall diagnostic rate of 34.4%. Diagnostic yield was higher in complex dystonia compared to non-complex dystonia (66.7%-5.9%; p &lt; 0.002), especially in patients showing intellectual disability compared to the patients without intellectual disability (87.5%-16.7%; p &lt; 0.002). Our approach suggests WES as an efficient tool to improve the diagnostic yield after gene panel sequencing in dystonia. Larger study are warranted to confirm a potential genetic overlap between neurodevelopmental diseases and dystonia."	"Thrombospondin-4 induces prolongation of action potential duration in rat isolated ventricular myocytes. Expression of thrombospondin-4 (TSP-4), a matricellular protein, is increased in the heart tissue of various cardiac disease models. In dorsal root ganglion neurons, TSP-4 inhibits L-type Ca<sup>2+</sup> channel (LTCC) activity. Although TSP-4 might be related to the electrophysiological properties in heart, it remains to be clarified. The present study aimed to clarify the effects of TSP-4 on action potential (AP), LTCC current (ICaL) and voltage-dependent K<sup>+</sup> (Kv) channel current (IKv) in rat isolated ventricular myocytes by a patch clamp technique. Ventricular myocytes were isolated from the heart of adult male Wistar rats. The ventricular myocytes were treated with TSP-4 (5 nM) or its vehicle for 4 hr. Then, whole-cell patch clamp technique was performed to measure AP (current-clamp mode) and ICaL and IKv (voltage-clamp mode). The mRNA expression of Kv channels was examined by reverse transcription-polymerase chain reaction. TSP-4 had no effect on the resting membrane potential and peak amplitude of AP. On the other hand, TSP-4 significantly prolonged AP duration (APD) at 50% and 90% repolarization. TSP-4 significantly inhibited the peak amplitudes of ICaL and IKv. TSP-4 had no effect on mRNA expression of Kv channels (Kcna4, Kcna5, Kcnb1, Kcnd2 and Kcnd3). The present study for the first time demonstrated that TSP-4 prolongs APD in rat ventricular myocytes, which is possibly mediated through the suppression of Kv channel activity."	"MicroRNAs Associated With Colon Cancer: New Potential Prognostic Markers and Targets for Therapy. MicroRNAs (miRNAs) are a kind of non-coding RNA (ncRNA) that regulate the expression of target genes and play a role in the occurrence and development of cancers. Colon cancer (COAD) is the second most common cause of cancer-related mortality. However, the prognostic value of miRNAs in COAD is still confusing. In this study, we obtain miRNAs and messenger RNAs (mRNAs) expression profiles of COAD from the Cancer Genome Atlas (TCGA) database. After preliminary data screening and preprocessing, we acquire the expression data of 894 miRNAs and 17,019 mRNAs. Then, compared with the normal samples, 39 upregulated miRNAs and 54 downregulated miRNAs are identified by differential expression analysis. Furthermore, we obtain 1,487 upregulated mRNAs and 2,847 downregulated mRNAs. We confirm nine key miRNAs related to the survival rate of COAD patients. Moreover, by using bioinformatics methods, we get 461 common genes from both the target genes of these nine key miRNAs and differentially expressed mRNAs. Through analyzing the protein-protein interaction (PPI) network of these 461 common genes and survival analysis, we confirm five hub genes as promising biomarkers for COAD prognosis. It is worth mentioning that no previous reports have found that PGR and KCNB1 are related to COAD. We expect these key miRNAs and hub genes will provide a new way for the study of COAD."	"Kv2.1 channels play opposing roles in regulating membrane potential, Ca<sup>2+</sup> channel function, and myogenic tone in arterial smooth muscle. The accepted role of the protein Kv2.1 in arterial smooth muscle cells is to form K<sup>+</sup> channels in the sarcolemma. Opening of Kv2.1 channels causes membrane hyperpolarization, which decreases the activity of L-type CaV1.2 channels, lowering intracellular Ca<sup>2+</sup> ([Ca<sup>2+</sup>]i) and causing smooth muscle relaxation. A limitation of this model is that it is based exclusively on data from male arterial myocytes. Here, we used a combination of electrophysiology as well as imaging approaches to investigate the role of Kv2.1 channels in male and female arterial myocytes. We confirmed that Kv2.1 plays a canonical conductive role but found it also has a structural role in arterial myocytes to enhance clustering of CaV1.2 channels. Less than 1% of Kv2.1 channels are conductive and induce membrane hyperpolarization. Paradoxically, by enhancing the structural clustering and probability of CaV1.2-CaV1.2 interactions within these clusters, Kv2.1 increases Ca<sup>2+</sup> influx. These functional impacts of Kv2.1 depend on its level of expression, which varies with sex. In female myocytes, where expression of Kv2.1 protein is higher than in male myocytes, Kv2.1 has conductive and structural roles. Female myocytes have larger CaV1.2 clusters, larger [Ca<sup>2+</sup>]i, and larger myogenic tone than male myocytes. In contrast, in male myocytes, Kv2.1 channels regulate membrane potential but not CaV1.2 channel clustering. We propose a model in which Kv2.1 function varies with sex: in males, Kv2.1 channels control membrane potential but, in female myocytes, Kv2.1 plays dual electrical and CaV1.2 clustering roles. This contributes to sex-specific regulation of excitability, [Ca<sup>2+</sup>]i, and myogenic tone in arterial myocytes."	"A de novo heterozygous mutation in KCNC2 gene implicated in severe developmental and epileptic encephalopathy. An increasing number of developmental and epileptic encephalopathies have been correlated with variants of ion channel genes, and in particular of potassium channels genes, such as KCNA1, KCNA2, KCNB1, KCNQ2, KCTD7 and KCNT1. Here we report a child with an early severe developmental and epileptic encephalopathy, spastic tetraplegia, opisthotonos attacks. The whole exome sequencing showed the de novo heterozygous variant c.1411G &gt; C (p.Val471Leu) in the KCNC2 gene. Although this is, to our knowledge, the first case of encephalopathy associated with a KCNC2 gene variant, and further confirmatory studies are needed, previous preclinical and clinical evidence seems to suggest that KCNC2 is a new candidate epilepsy gene."	"Meta-Analyses Support Previous and Novel Autism Candidate Genes: Outcomes of an Unexplored Brazilian Cohort. Large genomic databases of neurodevelopmental disorders (NDD) are helpful resources of genomic variations in complex and heterogeneous conditions, as Autism Spectrum Disorder (ASD). We evaluated the role of rare copy number variations (CNVs) and exonic de novo variants, in a molecularly unexplored Brazilian cohort of 30 ASD trios (n = 90), by performing a meta-analysis of our findings in more than 20,000 patients from NDD cohorts. We identified three pathogenic CNVs: two duplications on 1q21 and 17p13, and one deletion on 4q35. CNVs meta-analysis (n = 8,688 cases and n = 3,591 controls) confirmed 1q21 relevance by identifying duplications in other 16 ASD patients. Exome analysis led the identification of seven de novo variants in ASD genes (SFARI list): three loss-of-function pathogenic variants in CUL3, CACNA1H, and SHANK3; one missense pathogenic variant in KCNB1; and three deleterious missense variants in ATP10A, ANKS1B, and DOCK1. From the remaining 12 de novo variants in non-previous ASD genes, we prioritized PRPF8 and RBM14. Meta-analysis (n = 13,754 probands; n = 2,299 controls) identified six and two additional patients with validated de novo variants in PRPF8 and RBM14, respectively. By comparing the de novo variants with a previously established mutational rate model, PRPF8 showed nominal significance before multiple test correction (P = 0.039, P-value adjusted = 0.079, binomial test), suggesting its relevance to ASD. Approximately 60% of our patients presented comorbidities, and the diagnostic yield was estimated in 23% (7/30: three pathogenic CNVs and four pathogenic de novo variants). Our uncharacterized Brazilian cohort with tetra-hybrid ethnic composition was a valuable resource to validate and identify possible novel candidate loci. Autism Res 2020, 13: 199-206. © 2019 International Society for Autism Research, Wiley Periodicals, Inc. LAY SUMMARY: We believed that to study an unexplored autistic population, such as the Brazilian, could help to find novel genes for autism. In order to test this idea, with our limited budget, we compared candidate genes obtained from genomic analyses of 30 children and their parents, with those of more than 20,000 individuals from international studies. Happily, we identified a genetic cause in 23% of our patients and suggest a possible novel candidate gene for autism (PRPF8)."	"Complexes formed with integrin-α5 and KCNB1 potassium channel wild type or epilepsy-susceptibility variants modulate cellular plasticity via Ras and Akt signaling. Voltage-gated potassium (K<sup>+</sup>) channel subfamily B member 1 (KCNB1, Kv2.1) and integrin-α5 form macromolecular complexes-named integrin-α5-KCNB1 complexes (IKCs)-in the human brain, but their function was poorly understood. Here we report that membrane depolarization triggered IKC intracellular signals mediated by small GTPases of the Ras subfamily and protein kinase B (Akt) to advance the development of filopodia and lamellipodia in Chinese hamster ovary cells, stimulate their motility, and enhance neurite outgrowth in mouse neuroblastoma Neuro2a cells. Five KCNB1 mutants (L211P, R312H G379R, G381R, and F416L) linked to severe infancy or early-onset epileptic encephalopathy exhibited markedly defective conduction. However, although L211P, G379R, and G381R normally engaged Ras/Akt and stimulated cell migration, R312H and F416L failed to activate Ras/Akt signaling and did not enhance cell migration. Taken together, these data suggest that IKCs modulate cellular plasticity via Ras and Akt signaling. As such, defective IKCs may cause epilepsy through mechanisms other than dysregulated excitability such as, for example, abnormal neuronal development and resulting synaptic connectivity.-Yu, W., Shin, M. R., Sesti, F. Complexes formed with integrin-α5 and KCNB1 potassium channel wild type or epilepsy-susceptibility variants modulate cellular plasticity via Ras and Akt signaling."	"Dissecting the genetic basis of comorbid epilepsy phenotypes in neurodevelopmental disorders. Neurodevelopmental disorders (NDDs) such as autism spectrum disorder, intellectual disability, developmental disability, and epilepsy are characterized by abnormal brain development that may affect cognition, learning, behavior, and motor skills. High co-occurrence (comorbidity) of NDDs indicates a shared, underlying biological mechanism. The genetic heterogeneity and overlap observed in NDDs make it difficult to identify the genetic causes of specific clinical symptoms, such as seizures. We present a computational method, MAGI-S, to discover modules or groups of highly connected genes that together potentially perform a similar biological function. MAGI-S integrates protein-protein interaction and co-expression networks to form modules centered around the selection of a single &quot;seed&quot; gene, yielding modules consisting of genes that are highly co-expressed with the seed gene. We aim to dissect the epilepsy phenotype from a general NDD phenotype by providing MAGI-S with high confidence NDD seed genes with varying degrees of association with epilepsy, and we assess the enrichment of de novo mutation, NDD-associated genes, and relevant biological function of constructed modules. The newly identified modules account for the increased rate of de novo non-synonymous mutations in autism, intellectual disability, developmental disability, and epilepsy, and enrichment of copy number variations (CNVs) in developmental disability. We also observed that modules seeded with genes strongly associated with epilepsy tend to have a higher association with epilepsy phenotypes than modules seeded at other neurodevelopmental disorder genes. Modules seeded with genes strongly associated with epilepsy (e.g., SCN1A, GABRA1, and KCNB1) are significantly associated with synaptic transmission, long-term potentiation, and calcium signaling pathways. On the other hand, modules found with seed genes that are not associated or weakly associated with epilepsy are mostly involved with RNA regulation and chromatin remodeling. In summary, our method identifies modules enriched with de novo non-synonymous mutations and can capture specific networks that underlie the epilepsy phenotype and display distinct enrichment in relevant biological processes. MAGI-S is available at https://github.com/jchow32/magi-s ."	"Spectrum of KV 2.1 Dysfunction in KCNB1-Associated Neurodevelopmental Disorders. Pathogenic variants in KCNB1, encoding the voltage-gated potassium channel KV 2.1, are associated with developmental and epileptic encephalopathy (DEE). Previous functional studies on a limited number of KCNB1 variants indicated a range of molecular mechanisms by which variants affect channel function, including loss of voltage sensitivity, loss of ion selectivity, and reduced cell-surface expression. We evaluated a series of 17 KCNB1 variants associated with DEE or other neurodevelopmental disorders (NDDs) to rapidly ascertain channel dysfunction using high-throughput functional assays. Specifically, we investigated the biophysical properties and cell-surface expression of variant KV 2.1 channels expressed in heterologous cells using high-throughput automated electrophysiology and immunocytochemistry-flow cytometry. Pathogenic variants exhibited diverse functional defects, including altered current density and shifts in the voltage dependence of activation and/or inactivation, as homotetramers or when coexpressed with wild-type KV 2.1. Quantification of protein expression also identified variants with reduced total KV 2.1 expression or deficient cell-surface expression. Our study establishes a platform for rapid screening of KV 2.1 functional defects caused by KCNB1 variants associated with DEE and other NDDs. This will aid in establishing KCNB1 variant pathogenicity and the mechanism of dysfunction, which will enable targeted strategies for therapeutic intervention based on molecular phenotype. ANN NEUROL 2019;86:899-912."	"Neuronal ER-plasma membrane junctions organized by Kv2-VAP pairing recruit Nir proteins and affect phosphoinositide homeostasis. The association of plasma membrane (PM)-localized voltage-gated potassium (Kv2) channels with endoplasmic reticulum (ER)-localized vesicle-associated membrane protein-associated proteins VAPA and VAPB defines ER-PM junctions in mammalian brain neurons. Here, we used proteomics to identify proteins associated with Kv2/VAP-containing ER-PM junctions. We found that the VAP-interacting membrane-associated phosphatidylinositol (PtdIns) transfer proteins PYK2 N-terminal domain-interacting receptor 2 (Nir2) and Nir3 specifically associate with Kv2.1 complexes. When coexpressed with Kv2.1 and VAPA in HEK293T cells, Nir2 colocalized with cell-surface-conducting and -nonconducting Kv2.1 isoforms. This was enhanced by muscarinic-mediated PtdIns(4,5)P2 hydrolysis, leading to dynamic recruitment of Nir2 to Kv2.1 clusters. In cultured rat hippocampal neurons, exogenously expressed Nir2 did not strongly colocalize with Kv2.1, unless exogenous VAPA was also expressed, supporting the notion that VAPA mediates the spatial association of Kv2.1 and Nir2. Immunolabeling signals of endogenous Kv2.1, Nir2, and VAP puncta were spatially correlated in cultured neurons. Fluorescence-recovery-after-photobleaching experiments revealed that Kv2.1, VAPA, and Nir2 have comparable turnover rates at ER-PM junctions, suggesting that they form complexes at these sites. Exogenous Kv2.1 expression in HEK293T cells resulted in significant differences in the kinetics of PtdIns(4,5)P2 recovery following repetitive muscarinic stimulation, with no apparent impact on resting PtdIns(4,5)P2 or PtdIns(4)P levels. Finally, the brains of Kv2.1-knockout mice had altered composition of PtdIns lipids, suggesting a crucial role for native Kv2.1-containing ER-PM junctions in regulating PtdIns lipid metabolism in brain neurons. These results suggest that ER-PM junctions formed by Kv2 channel-VAP pairing regulate PtdIns lipid homeostasis via VAP-associated PtdIns transfer proteins."	"Correction: Oxidation of KCNB1 potassium channels triggers apoptotic integrin signaling in the brain. Since the publication of this article the authors have noted that there were two typos that could have caused confusion to the readers:1) References to &quot;integrin alpha chain V&quot; should have been &quot;integrin alpha 5&quot;. These appear in the Abstract and the first paragraph of the Results section.2) In the Results section under the header &quot;Integrins activate Fyn tyrosine kinases&quot; and the legend of Figure 6a, &quot;tyr530&quot; should be replaced with &quot;tyr416&quot;.3) In the the legend of Figure 6b, &quot;pSrc&quot; with should be replaced with &quot;pFyn&quot;."	"Differential expression of genes participating in cardiomyocyte electrophysiological remodeling via membrane ionic mechanisms and Ca<sup>2+</sup>-handling in human heart failure. Excitation-contraction coupling in normal cardiac function is performed with well balanced and coordinated functioning but with complex dynamic interactions between functionally connected membrane ionic currents. However, their genomic investigations provide essential information on the regulation of diseases by their transcripts. Therefore, we examined the gene expression levels of the most important voltage-gated ionic channels such as Na<sup>+</sup>-channels (SCN5A), Ca<sup>2+</sup>-channels (CACNA1C and CACNA1H), and K<sup>+</sup>-channels, including transient outward (KCND2, KCNA2, KCNA5, KCNA8), inward rectifier (KCNJ2, KCNJ12, KCNJ4), and delayed rectifier (KCNB1) in left ventricular tissues from either ischemic or dilated cardiomyopathy (ICM or DCM). We also examined the mRNA levels of ATP-dependent K<sup>+</sup>-channels (KCNJ11, ABCC9) and ERG-family channels (KCNH2). We further determined the mRNA levels of ryanodine receptors (RyR2; ARVC2), phospholamban (PLB or PLN), SR Ca<sup>2+</sup>-pump (SERCA2; ATP2A1), an accessory protein FKBP12 (PPIASE), protein kinase A (PPNAD4), and Ca<sup>2+</sup>/calmodulin-dependent protein kinase II (CAMK2G). The mRNA levels of SCN5A, CACNA1C, and CACNA1H in both groups decreased markedly in the heart samples with similar significance, while KvLQT1 genes were high with depressed Kv4.2. The KCNJ11 and KCNJ12 in both groups were depressed, while the KCNJ4 level was significantly high. More importantly, the KCNA5 gene was downregulated only in the ICM, while the KCNJ2 was upregulated only in the DCM. Besides, mRNA levels of ARVC2 and PLB were significantly high compared to the controls, whereas others (ATP2A1, PPIASE, PPNAD4, and CAMK2G) were decreased. Importantly, the increases of KCNB1 and KCNJ11 were more prominent in the ICM than DCM, while the decreases in ATP2A1 and FKBP1A were more prominent in DCM compared to ICM. Overall, this study was the first to demonstrate that the different levels of changes in gene profiles via different types of cardiomyopathy are prominent particularly in some K<sup>+</sup>-channels, which provide further information about our knowledge of how remodeling processes can be differentiated in HF originated from different pathological conditions."	"Expanding the genetic and phenotypic relevance of KCNB1 variants in developmental and epileptic encephalopathies: 27 new patients and overview of the literature. Developmental and epileptic encephalopathies (DEE) refer to a heterogeneous group of devastating neurodevelopmental disorders. Variants in KCNB1 have been recently reported in patients with early-onset DEE. KCNB1 encodes the α subunit of the delayed rectifier voltage-dependent potassium channel Kv 2.1. We review the 37 previously reported patients carrying 29 distinct KCNB1 variants and significantly expand the mutational spectrum describing 18 novel variants from 27 unreported patients. Most variants occur de novo and mainly consist of missense variants located on the voltage sensor and the pore domain of Kv 2.1. We also report the first inherited variant (p.Arg583*). KCNB1-related encephalopathies encompass a wide spectrum of neurodevelopmental disorders with predominant language difficulties and behavioral impairment. Eighty-five percent of patients developed epilepsies with variable syndromes and prognosis. Truncating variants in the C-terminal domain are associated with a less-severe epileptic phenotype. Overall, this report provides an up-to-date review of the mutational and clinical spectrum of KCNB1, strengthening its place as a causal gene in DEEs and emphasizing the need for further functional studies to unravel the underlying mechanisms."	"Kv2.1 voltage-gated potassium channels in developmental perspective. Kv2.1 voltage-gated potassium channels consist of two types of α-subunits: (a) electrically-active Kcnb1 α-subunits and (b) silent or modulatory α-subunits plus β-subunits that, similar to silent α-subunits, also regulate electrically-active subunits. Voltage-gated potassium channels were traditionally viewed, mainly by electrophysiologists, as regulators of the electrical activity of the plasma membrane in excitable cells, a role that is performed by transmembrane protein domains of α-subunits that form the electric pore. Genetic studies revealed a role for this region of α-subunits of voltage-gated potassium channels in human neurodevelopmental disorders, such as epileptic encephalopathy. The N- and C-terminal domains of α-subunits interact to form the cytoplasmic subunit of heterotetrameric potassium channels that regulate electric pores. Subsequent animal studies revealed the developmental functions of Kcnb1-containing voltage-gated potassium channels and illustrated their role during brain development and reproduction. These functions of potassium channels are discussed in this review in the context of regulatory interactions between electrically-active and regulatory subunits."	"Genetic heterogeneity in infantile spasms. Infantile spasms (IS) is a developmental and epileptic encephalopathy with heterogeneous etiologies including many genetic causes. Genetic studies have identified pathogenic variants in over 30 genes as causes of IS. Many of these genetic causes are extremely rare, with only one reported incidence in an individual with IS. To better understand the genetic landscape of IS, we used targeted sequencing to screen 42 candidate IS genes and 53 established developmental and epileptic encephalopathy genes in 92 individual with IS. We identified a genetic diagnosis for 7.6% of our cohort, including pathogenic variants in KCNB1 (n = 2), GNAO1 (n = 1), STXBP1 (n = 1), SLC35A2 (n = 1), TBL1XR1 (n = 1), and KIF1A (n = 1). Our data emphasize the genetic heterogeneity of IS and will inform the diagnosis and management of individuals with this devastating disorder."	"Targeting cholecystokinin-2 receptor for pancreatic cancer chemoprevention. Gastrin signaling mediated through cholecystokinin-2 receptor (CCK2R) and its downstream molecules is altered in pancreatic cancer. CCK2R antagonists, YF476 (netazepide) and JNJ-26070109, were tested systematically for their effect on pancreatic intraepithelial neoplasia (PanIN) progression to pancreatic ductal adenocarcinoma (PDAC) in Kras<sup>G12D</sup> mice. After dose selection using wild-type mice, six-week-old p48<sup>Cre/+</sup> -LSL-Kras<sup>G12D</sup> (22-24 per group) genetically engineered mice (GEM) were fed AIN-76A diets containing 0, 250, or 500 ppm JNJ-26070109 or YF-476 for 38 weeks. At termination, pancreata were collected, weighed, and evaluated for PanINs and PDAC. Results demonstrated that control-diet-fed mice showed 69% (males) and 33% (females) incidence of PDAC. Administration of low and high dose JNJ-26070109 inhibited the incidence of PDAC by 88% and 71% (P &lt; .004) in male mice and by 100% and 24% (P &gt; .05) in female mice, respectively. Low and high dose YF476 inhibited the incidence of PDAC by 74% (P &lt; .02) and 69% (P &lt; .02) in male mice and by 45% and 33% (P &gt; .05) in female mice, respectively. Further, transcriptome analysis showed downregulation of Cldn1, Sstr1, Apod, Gkn1, Siglech, Cyp2c44, Bnc1, Fmo2, 623169, Kcne4, Slc27a6, Cma1, Rho GTPase activating protein 18, and Gpr85 genes in JNJ-26070109-treated mice compared with untreated mice. YF476-treated mouse pancreas showed downregulation of Riks, Zpbp, Ntf3, Lrrn4, Aass, Skint3, Kcnb1, Dgkb, Ddx60, and Aspn gene expressions compared with untreated mouse pancreas. Overall, JNJ-26070109 showed better chemopreventive efficacy than YF476. However, caution is recommended when selecting doses, as the agents appeared to exhibit gender-specific effects."	"Defining the Kv2.1-syntaxin molecular interaction identifies a first-in-class small molecule neuroprotectant. The neuronal cell death-promoting loss of cytoplasmic K<sup>+</sup> following injury is mediated by an increase in Kv2.1 potassium channels in the plasma membrane. This phenomenon relies on Kv2.1 binding to syntaxin 1A via 9 amino acids within the channel intrinsically disordered C terminus. Preventing this interaction with a cell and blood-brain barrier-permeant peptide is neuroprotective in an in vivo stroke model. Here a rational approach was applied to define the key molecular interactions between syntaxin and Kv2.1, some of which are shared with mammalian uncoordinated-18 (munc18). Armed with this information, we found a small molecule Kv2.1-syntaxin-binding inhibitor (cpd5) that improves cortical neuron survival by suppressing SNARE-dependent enhancement of Kv2.1-mediated currents following excitotoxic injury. We validated that cpd5 selectively displaces Kv2.1-syntaxin-binding peptides from syntaxin and, at higher concentrations, munc18, but without affecting either synaptic or neuronal intrinsic properties in brain tissue slices at neuroprotective concentrations. Collectively, our findings provide insight into the role of syntaxin in neuronal cell death and validate an important target for neuroprotection."	"Case report: mutation analysis of primary pulmonary lymphoepithelioma-like carcinoma via whole-exome sequencing. Primary pulmonary lymphoepithelioma-like carcinoma (LELC) is a rare tumor subtype accounting for around 0.9% of lung cancers. At present, research on LELC mainly focuses on pathological diagnosis, while the molecular mutation landscape is still unclear. A 72-year-old female presented a productive cough for three weeks followed by severe symptoms for another week. Respiratory sounds were weak and coarser in the right lung field. F-FDG PET-CTA showed a hypermetabolic mass in the upper lobe of the right lung as well as the enlargement of right hilar and subcarinal lymph nodes. Hematoxylin-eosin staining and immunohistochemistry staining of the biopsy established the diagnosis of primary pulmonary LELC. After thoracoscopic-assisted radical resection of right lung cancer and middle lobe of right lung, the patient's vital signs were stable without apparent productive cough, chest pain, chest tightness and other subjective discomforts. Furtherwhole exome sequencing of the patient's tumor tissue and leukocytes (served as a germline mutation control) revealed 613 somatic gene mutations, and of which mutations in PRIM2, KCNB1, CDH1, and ATRX were most likely related to the LELC pathogenesis. The recurrence of gene mutations from various cancers database and a tumor mutation burden (TMB) of 18.7 mutations/mb were revealed as well. Our findings have illustrated the genomic profile of a primary pulmonary LELC case and provided a positive biomarker that immune checkpoint blockade is potentially effective for this patient in further treatment."	"The KCNE2 potassium channel β subunit is required for normal lung function and resilience to ischemia and reperfusion injury. The KCNE2 single transmembrane-spanning voltage-gated potassium (Kv) channel β subunit is ubiquitously expressed and essential for normal function of a variety of cell types, often via regulation of the KCNQ1 Kv channel. A polymorphism upstream of KCNE2 is associated with reduced lung function in human populations, but the pulmonary consequences of KCNE2 gene disruption are unknown. Here, germline deletion of mouse Kcne2 reduced pulmonary expression of potassium channel α subunits Kcnq1 and Kcnb1 but did not alter expression of other Kcne genes. Kcne2 colocalized and coimmunoprecipitated with Kcnq1 in mouse lungs, suggesting the formation of pulmonary Kcnq1-Kcne2 potassium channel complexes. Kcne2 deletion reduced blood O2, increased CO2, increased pulmonary apoptosis, and increased inflammatory mediators TNF-α, IL-6, and leukocytes in bronchoalveolar lavage (BAL) fluids. Consistent with increased pulmonary vascular leakage, Kcne2 deletion increased plasma, BAL albumin, and the BAL:plasma albumin concentration ratio. Kcne2<sup>-/-</sup> mouse lungs exhibited baseline induction of the reperfusion injury salvage kinase pathway but were less able to respond via this pathway to imposed pulmonary ischemia/reperfusion injury (IRI). We conclude that KCNE2 regulates KCNQ1 in the lungs and is required for normal lung function and resistance to pulmonary IRI. Our data support a causal relationship between KCNE2 gene disruption and lung dysfunction.-Zhou, L., Köhncke, C., Hu, Z., Roepke, T. K., Abbott, G. W. The KCNE2 potassium channel β subunit is required for normal lung function and resilience to ischemia and reperfusion injury."	"Longitudinal Epigenome-Wide Methylation Study of Cognitive Decline and Motor Progression in Parkinson's Disease. DNA methylation studies in Parkinson's disease (PD) thus far have focused on disease susceptibility but not progression. In this epigenome-wide association study (EWAS), we aim to identify methylation markers associated with faster cognitive decline or motor progression in PD. We included 232 PD patients from the Parkinson's Environment and Gene follow-up study who provided blood samples at enrolment. Information on cognitive and motor function was collected using the Mini-Mental State Examination (MMSE) and Unified Parkinson's Disease Rating Scale (UPDRS). For EWAS analyses, we used a robust measure of correlation: biweight midcorrelations, t-tests, and Cox proportional hazard models. We also conducted weighted correlation network analysis (WGCNA) to identify CpG modules associated with cognitive decline or motor progression in PD. Among 197 individuals of European ancestry, with our EWAS approach we identified 7 genome-wide significant CpGs associated with a MMSE 4-point decline and 8 CpGs associated with faster motor progression (i.e., rate of UPDRS increase ≥5-point/year). The most interesting CpGs for cognitive decline include cg17445913 in KCNB1 (cor = 0.36, p = 6.85×10-7) and cg02920897 in DLEU2 (cor = 0.34, p = 3.23×10-6), while for motor progression it was cg01754178 in PTPRN2 (cor = - 0.34, p = 2.07×10-6). In WGCNA, motor progression related modules were enriched for genes related to neuronal synaptic functions, Wnt signaling pathway, and mitochondrial apoptosis. Our study provides the first epigenetic evidence that differential methylation in genes previously identified as being associated with cognitive impairment, neuronal synaptic function, Wnt signaling pathway, and mitochondrial apoptosis is associated with cognitive and motor progression in PD."	"Transcriptomic analysis of fetal membranes reveals pathways involved in preterm birth. Preterm birth (PTB), defined as infant delivery before 37 weeks of completed gestation, results from the interaction of both genetic and environmental components and constitutes a complex multifactorial syndrome. Transcriptome analysis of PTB has proven challenging because of the multiple causes of PTB and the numerous maternal and fetal gestational tissues that must interact to facilitate parturition. The transcriptome of the chorioamnion membranes at the site of rupture in PTB and term fetuses may reflect the molecular pathways of preterm labor. In this work, chorioamnion membranes from severe preterm and term fetuses were analyzed using RNA sequencing. Functional annotations and pathway analysis of differentially expressed genes were performed with the GAGE and GOSeq packages. A subset of differentially expressed genes in PTB was validated in a larger cohort using qRT-PCR and by comparing our results with genes and pathways previously reported in the literature. A total of 270 genes were differentially expressed (DE): 252 were upregulated and 18 were down-regulated in severe preterm births relative to term births. Inflammatory and immunological pathways were upregulated in PTB. Both types of pathways were previously suggested to lead to PTB. Pathways that were not previously reported in PTB, such as the hemopoietic pathway, appeared upregulated in preterm membranes. A group of 18 downregulated genes discriminated between term and severe preterm cases. These genes potentially characterize a severe preterm transcriptome pattern and therefore are candidate genes for understanding the syndrome. Some of the downregulated genes are involved in the nervous system, morphogenesis (WNT1, DLX5, PAPPA2) and ion channel complexes (KCNJ16, KCNB1), making them good candidates as biomarkers of PTB. The identification of this DE gene pattern will help with the development of a multi-gene disease classifier. These markers were generated in an admixed South American population in which PTB has a high incidence. Since the genetic background may differentially impact different populations, it is necessary to include populations such as those from South America and Africa, which are usually excluded from high-throughput approaches. These classifiers should be compared to those in other populations to obtain a global landscape of PTB."	"Oxidation of KCNB1 potassium channels in the murine brain during aging is associated with cognitive impairment. Voltage-gated potassium (K<sup>+</sup>) channel sub-family B member 1 (KCNB1, Kv2.1) is known to undergo oxidation-induced oligomerization during aging but whether this process affects brain's physiology was not known. Here, we used 10, 16 and 22 month-old transgenic mice overexpressing a KCNB1 variant that does not oligomerize (Tg-C73A) and as control, mice overexpressing the wild type (Tg-WT) channel and non-transgenic (non-Tg) mice to elucidate the effects of channel's oxidation on cognitive function. Aging mice in which KCNB1 oligomerization is negligible (Tg-C73A), performed significantly better in the Morris Water Maze (MWM) test of working memory compared to non-Tg or Tg-WT mice. KCNB1 and synapsin-1 co-immunoprecipitated and the cognitive impairment in the MWM was associated with moderate loss of synapsin-1 in pre-synaptic structures of the hippocampus, whereas neurodegeneration and neuronal loss were not significantly different in the various genotypes. We conclude that moderate oxidation of the KCNB1 channel during aging can influence neuronal networks by affecting synaptic function."	"Cytoskeleton disruption affects Kv2.1 channel function and its modulation by PIP2. Voltage-gated potassium channels are expressed in a wide variety of excitable and non-excitable cells and regulate numerous cellular functions. The activity of ion channels can be modulated by direct interaction or/and functional coupling with other proteins including auxiliary subunits, scaffold proteins and the cytoskeleton. Here, we evaluated the influence of the actin-based cytoskeleton on the Kv2.1 channel using pharmacological and electrophysiological methods. We found that disruption of the actin-based cytoskeleton by latrunculin B resulted in the regulation of the Kv2.1 inactivation mechanism; it shifted the voltage of half-maximal inactivation toward negative potentials by approximately 15 mV, accelerated the rate of closed-state inactivation, and delayed the recovery rate from inactivation. The actin cytoskeleton stabilizing agent phalloidin prevented the hyperpolarizing shift in the half-maximal inactivation potential when co-applied with latrunculin B. Additionally, PIP2 depletion (a strategy that regulates Kv2.1 inactivation) after cytoskeleton disruption does not regulate further the inactivation of Kv2.1, which suggests that both factors could be regulating the Kv2.1 channel by a common mechanism. In summary, our results suggest a role for the actin-based cytoskeleton in regulating Kv2.1 channels."	"Clustered Kv2.1 decreases dopamine transporter activity and internalization. The dopamine transporter (DAT) regulates dopamine neurotransmission via reuptake of dopamine released into the extracellular space. Interactions with partner proteins alter DAT function and thereby dynamically shape dopaminergic tone important for normal brain function. However, the extent and nature of these interactions are incompletely understood. Here, we describe a novel physical and functional interaction between DAT and the voltage-gated K<sup>+</sup> channel Kv2.1 (potassium voltage-gated channel subfamily B member 1 or KCNB1). To examine the functional consequences of this interaction, we employed a combination of immunohistochemistry, immunofluorescence live-cell microscopy, co-immunoprecipitation, and electrophysiological approaches. Consistent with previous reports, we found Kv2.1 is trafficked to membrane-bound clusters observed both in vivo and in vitro in rodent dopamine neurons. Our data provide evidence that clustered Kv2.1 channels decrease DAT's lateral mobility and inhibit its internalization, while also decreasing canonical transporter activity by altering DAT's conformational equilibrium. These results suggest that Kv2.1 clusters exert a spatially discrete homeostatic braking mechanism on DAT by inducing a relative increase in inward-facing transporters. Given recent reports of Kv2.1 dysregulation in neurological disorders, it is possible that alterations in the functional interaction between DAT and Kv2.1 affect dopamine neuron activity."	"The Role of the Voltage-Gated Potassium Channel Proteins Kv8.2 and Kv2.1 in Vision and Retinal Disease: Insights from the Study of Mouse Gene Knock-Out Mutations. Mutations in the KCNV2 gene, which encodes the voltage-gated K<sup>+</sup> channel protein Kv8.2, cause a distinctive form of cone dystrophy with a supernormal rod response (CDSRR). Kv8.2 channel subunits only form functional channels when combined in a heterotetramer with Kv2.1 subunits encoded by the KCNB1 gene. The CDSRR disease phenotype indicates that photoreceptor adaptation is disrupted. The electroretinogram (ERG) response of affected individuals shows depressed rod and cone activity, but what distinguishes this disease is the supernormal rod response to a bright flash of light. Here, we have utilized knock-out mutations of both genes in the mouse to study the pathophysiology of CDSRR. The Kv8.2 knock-out (KO) mice show many similarities to the human disorder, including a depressed a-wave and an elevated b-wave response with bright light stimulation. Optical coherence tomography (OCT) imaging and immunohistochemistry indicate that the changes in six-month-old Kv8.2 KO retinae are largely limited to the outer nuclear layer (ONL), while outer segments appear intact. In addition, there is a significant increase in TUNEL-positive cells throughout the retina. The Kv2.1 KO and double KO mice also show a severely depressed a-wave, but the elevated b-wave response is absent. Interestingly, in all three KO genotypes, the c-wave is totally absent. The differential response shown here of these KO lines, that either possess homomeric channels or lack channels completely, has provided further insights into the role of K<sup>+</sup> channels in the generation of the a-, b-, and c-wave components of the ERG."	"The tarantula toxin GxTx detains K<sup>+</sup> channel gating charges in their resting conformation. Allosteric ligands modulate protein activity by altering the energy landscape of conformational space in ligand-protein complexes. Here we investigate how ligand binding to a K<sup>+</sup> channel's voltage sensor allosterically modulates opening of its K<sup>+</sup>-conductive pore. The tarantula venom peptide guangxitoxin-1E (GxTx) binds to the voltage sensors of the rat voltage-gated K<sup>+</sup> (Kv) channel Kv2.1 and acts as a partial inverse agonist. When bound to GxTx, Kv2.1 activates more slowly, deactivates more rapidly, and requires more positive voltage to reach the same K<sup>+</sup>-conductance as the unbound channel. Further, activation kinetics are more sigmoidal, indicating that multiple conformational changes coupled to opening are modulated. Single-channel current amplitudes reveal that each channel opens to full conductance when GxTx is bound. Inhibition of Kv2.1 channels by GxTx results from decreased open probability due to increased occurrence of long-lived closed states; the time constant of the final pore opening step itself is not impacted by GxTx. When intracellular potential is less than 0 mV, GxTx traps the gating charges on Kv2.1's voltage sensors in their most intracellular position. Gating charges translocate at positive voltages, however, indicating that GxTx stabilizes the most intracellular conformation of the voltage sensors (their resting conformation). Kinetic modeling suggests a modulatory mechanism: GxTx reduces the probability of voltage sensors activating, giving the pore opening step less frequent opportunities to occur. This mechanism results in K<sup>+</sup>-conductance activation kinetics that are voltage-dependent, even if pore opening (the rate-limiting step) has no inherent voltage dependence. We conclude that GxTx stabilizes voltage sensors in a resting conformation, and inhibits K<sup>+</sup> currents by limiting opportunities for the channel pore to open, but has little, if any, direct effect on the microscopic kinetics of pore opening. The impact of GxTx on channel gating suggests that Kv2.1's pore opening step does not involve movement of its voltage sensors."	"The Pattern of mRNA Expression Is Changed in Sinoatrial Node from Goto-Kakizaki Type 2 Diabetic Rat Heart. In vivo experiments in Goto-Kakizaki (GK) type 2 diabetic rats have demonstrated reductions in heart rate from a young age. The expression of genes encoding more than 70 proteins that are associated with the generation and conduction of electrical activity in the GK sinoatrial node (SAN) have been evaluated to further clarify the molecular basis of the low heart rate. Heart rate and expression of genes were evaluated with an extracellular electrode and real-time RT-PCR, respectively. Rats aged 12-13 months were employed in these experiments. Isolated spontaneous heart rate was reduced in GK heart (161 ± 12 bpm) compared to controls (229 ± 11 bpm). There were many differences in expression of mRNA, and some of these differences were of particular interest. Compared to control SAN, expression of some genes were downregulated in GK-SAN: gap junction, Gja1 (Cx43), Gja5 (Cx40), Gjc1 (Cx45), and Gjd3 (Cx31.9); cell membrane transport, Trpc1 (TRPC1) and Trpc6 (TRPC6); hyperpolarization-activated cyclic nucleotide-gated channels, Hcn1 (HCN1) and Hcn4 (HCN4); calcium channels, Cacna1d (Cav1.3), Cacna1g (Cav3.1), Cacna1h (Cav3.2), Cacna2d1 (Cavα2δ1), Cacna2d3 (Cavα2δ3), and Cacng4 (Cav  γ  4); and potassium channels, Kcna2 (Kv1.2), Kcna4 (Kv1.4), Kcna5 (Kv1.5), Kcnb1 (Kv2.1), Kcnd3 (Kv4.3), Kcnj2 (Kir2.1), Kcnk1 (TWIK1), Kcnk5 (K2P5.1), Kcnk6 (TWIK2), and Kcnn2 (SK2) whilst others were upregulated in GK-SAN: Ryr2 (RYR2) and Nppb (BNP). This study provides new insight into the changing expression of genes in the sinoatrial node of diabetic heart."	"Molecular Neuroprotection Induced by Zinc-Dependent Expression of Hepatitis C-Derived Protein NS5A Targeting Kv2.1 Potassium Channels. We present the design of an innovative molecular neuroprotective strategy and provide proof-of-concept for its implementation, relying on the injury-mediated activation of an ectopic gene construct. As oxidative injury leads to the intracellular liberation of zinc, we hypothesize that tapping onto the zinc-activated metal regulatory element (MRE) transcription factor 1 system to drive expression of the Kv2.1-targeted hepatitis C protein NS5A (hepatitis C nonstructural protein 5A) will provide neuroprotection by preventing cell death-enabling cellular potassium loss in rat cortical neurons in vitro. Indeed, using biochemical and morphologic assays, we demonstrate rapid expression of MRE-driven products in neurons. Further, we report that MRE-driven NS5A expression, induced by a slowly evolving excitotoxic stimulus, functionally blocks injurious, enhanced Kv2.1 potassium whole-cell currents and improves neuronal viability. We suggest this form of &quot;on-demand&quot; neuroprotection could provide the basis for a tenable therapeutic strategy to prevent neuronal cell death in neurodegeneration."	"Genotype and phenotype analysis using an epilepsy-associated gene panel in Chinese pediatric epilepsy patients. Epilepsy is a common and genetically heterogeneous disorder among children. Advances in next-generation sequencing have revealed that numerous epilepsy genes, helped us improve the understanding of mechanisms underlying epileptogenesis, and guided the development of treatments. We identified 39 candidate variants in 21 genes, including 37 that were pathogenic or likely pathogenic variants according to the American College of Medical Genetics and Genomics scoring system and two variants of uncertain significance that were considered causative after they were associated with clinical characteristics. Thirty were de novo variants (76.9%), and 20 variants had not previously been reported (51.3%). We obtained a diagnosis in 39 of the 141 probands (27.7%). The most frequently mutated gene was SCN1A; KCNQ2, KCNT1, PCDH19, STXBP1, SCN2A, TSC2, and PRRT2 were mutated in more than one individual; ANKRD11, CDKL5, DCX, DEPDC5, GABRB3, GRIN2A, IQSEC2, KCNA2, KCNB1, KCNJ6, TSC1, SCN9A, and SCN1B were mutated in a single individual. In addition, we detected a nonsense variant in a candidate gene KCND1 and considered it as a new candidate epilepsy gene, which needed further functional study. Consequently, large number of unreported variants were detected, diverse phenotypes were associated with known epilepsy genes. Changes in clinical management beyond genetic counseling were suggested."	"The Insensitivity of TASK-3 K₂P Channels to External Tetraethylammonium (TEA) Partially Depends on the Cap Structure. Two-pore domain K⁺ channels (K₂P) display a characteristic extracellular cap structure formed by two M1-P1 linkers, the functional role of which is poorly understood. It has been proposed that the presence of the cap explains the insensitivity of K₂P channels to several K⁺ channel blockers including tetraethylammonium (TEA). We have explored this hypothesis using mutagenesis and functional analysis, followed by molecular simulations. Our results show that the deletion of the cap structure of TASK-3 (TWIK-related acid-sensitive K⁺ channel) generates a TEA-sensitive channel with an IC50 of 11.8 ± 0.4 mM. The enhanced sensitivity to TEA displayed by the cap-less channel is also explained by the presence of an extra tyrosine residue at position 99. These results were corroborated by molecular simulation analysis, which shows an increased stability in the binding of TEA to the cap-less channel when a ring of four tyrosine is present at the external entrance of the permeation pathway. Consistently, Y99A or Y205A single-residue mutants generated in a cap-less channel backbone resulted in TASK-3 channels with low affinity to external TEA."	"Oxidation of KCNB1 channels in the human brain and in mouse model of Alzheimer's disease. Oxidative modification of the voltage-gated K<sup>+</sup> channel subfamily B member 1 (KCNB1, Kv2.1) is emerging as a mechanism of neuronal vulnerability potentially capable of affecting multiple conditions associated with oxidative stress, from normal aging to neurodegenerative disease. In this study we report that oxidation of KCNB1 channels is exacerbated in the post mortem brains of Alzheimer's disease (AD) donors compared to age-matched controls. In addition, phosphorylation of Focal Adhesion kinases (FAK) and Src tyrosine kinases, two key signaling steps that follow KCNB1 oxidation, is also strengthened in AD vs. control brains. Quadruple transgenic mice expressing a non-oxidizable form of KCNB1 in the 3xTg-AD background (APPSWE, PS1M146V, and tauP301L), exhibit improved working memory along with reduced brain inflammation, protein carbonylation and intraneuronal β-amyloid (Aβ) compared to 3xTg-AD mice or mice expressing the wild type (WT) KCNB1 channel. We conclude that oxidation of KCNB1 channels is a mechanism of neuronal vulnerability that is pervasive in the vertebrate brain."	"Identification of VAPA and VAPB as Kv2 Channel-Interacting Proteins Defining Endoplasmic Reticulum-Plasma Membrane Junctions in Mammalian Brain Neurons. Membrane contacts between endoplasmic reticulum (ER) and plasma membrane (PM), or ER-PM junctions, are ubiquitous in eukaryotic cells and are platforms for lipid and calcium signaling and homeostasis. Recent studies have revealed proteins crucial to the formation and function of ER-PM junctions in non-neuronal cells, but little is known of the ER-PM junctions prominent in aspiny regions of mammalian brain neurons. The Kv2.1 voltage-gated potassium channel is abundantly clustered at ER-PM junctions in brain neurons and is the first PM protein that functions to organize ER-PM junctions. However, the molecular mechanism whereby Kv2.1 localizes to and remodels these junctions is unknown. We used affinity immunopurification and mass spectrometry-based proteomics on brain samples from male and female WT and Kv2.1 KO mice and identified the resident ER vesicle-associated membrane protein-associated proteins isoforms A and B (VAPA and VAPB) as prominent Kv2.1-associated proteins. Coexpression with Kv2.1 or its paralog Kv2.2 was sufficient to recruit VAPs to ER-PM junctions. Multiplex immunolabeling revealed colocalization of Kv2.1 and Kv2.2 with endogenous VAPs at ER-PM junctions in brain neurons from male and female mice in situ and in cultured rat hippocampal neurons, and KO of VAPA in mammalian cells reduces Kv2.1 clustering. The association of VAPA with Kv2.1 relies on a &quot;two phenylalanines in an acidic tract&quot; (FFAT) binding domain on VAPA and a noncanonical phosphorylation-dependent FFAT motif comprising the Kv2-specific clustering or PRC motif. These results suggest that Kv2.1 localizes to and organizes neuronal ER-PM junctions through an interaction with VAPs.SIGNIFICANCE STATEMENT Our study identified the endoplasmic reticulum (ER) proteins vesicle-associated membrane protein-associated proteins isoforms A and B (VAPA and VAPB) as proteins copurifying with the plasma membrane (PM) Kv2.1 ion channel. We found that expression of Kv2.1 recruits VAPs to ER-PM junctions, specialized membrane contact sites crucial to distinct aspects of cell function. We found endogenous VAPs at Kv2.1-mediated ER-PM junctions in brain neurons and other mammalian cells and that knocking out VAPA expression disrupts Kv2.1 clustering. We identified domains of VAPs and Kv2.1 necessary and sufficient for their association at ER-PM junctions. Our study suggests that Kv2.1 expression in the PM can affect ER-PM junctions via its phosphorylation-dependent association to ER-localized VAPA and VAPB."	"Genetic etiologies of the electrical status epilepticus during slow wave sleep: systematic review. Electrical status epilepticus during slow-wave sleep (ESESS) which is also known as continuous spike-wave of slow sleep (CSWSS) is type of electroencephalographic (EEG) pattern which is seen in ESESS/CSWSS/epilepsy aphasia spectrum. This EEG pattern can occur alone or with other syndromes. Its etiology is not clear, however, brain malformations, immune disorders, and genetic etiologies are suspected to contribute. We aimed to perform a systematic review of all genetic etiologies which have been reported to associate with ESESS/CSWSS/epilepsy-aphasia spectrum. We further aimed to identify the common underlying pathway which can explain it. To our knowledge, there is no available systematic review of genetic etiologies of ESESS/CSWSS/epilepsy-aphasia spectrum. MEDLINE, EMBASE, PubMed and Cochrane review database were searched, using terms specific to electrical status epilepticus during sleep or continuous spike-wave discharges during slow sleep or epilepsy-aphasia spectrum and of studies of genetic etiologies. These included monogenic mutations and copy number variations (CNVs). For each suspected dosage-sensitive gene, further studies were performed through OMIM and PubMed database. Twenty-six studies out of the 136 identified studies satisfied our inclusion criteria. I51 cases were identified among those 26 studies. 16 studies reported 11 monogenic mutations: SCN2A (N = 6), NHE6/SLC9A6 (N = 1), DRPLA/ ATN1 (N = 1), Neuroserpin/SRPX2 (N = 1), OPA3 (N = 1), KCNQ2 (N = 2), KCNA2 (N = 5), GRIN2A (N = 34), CNKSR2 (N = 2), SLC6A1 (N = 2) and KCNB1 (N = 5). 10 studies reported 89 CNVs including 9 recurrent ones: Xp22.12 deletion encompassing CNKSR2 (N = 6), 16p13 deletion encompassing GRIN2A (N = 4), 15q11.2-13.1 duplication (N = 15), 3q29 duplication (N = 11), 11p13 duplication (N = 2), 10q21.3 deletion (N = 2), 3q25 deletion (N = 2), 8p23.3 deletion (N = 2) and 9p24.2 (N = 2). 68 of the reported genetic etiologies including monogenic mutations and CNVs were detected in patients with ESESS/CSWSS/epilepsy aphasia spectrum solely. The most common underlying pathway was channelopathy (N = 56). Our review suggests that genetic etiologies have a role to play in the occurrence of ESESS/CSWSS/epilepsy-aphasia spectrum. The common underlying pathway is channelopathy. Therefore we propose more genetic studies to be done for more discoveries which can pave a way for proper drug identification. We also suggest development of common cut-off value for spike-wave index to ensure common language among clinicians and researchers."	"Epileptic spasm and de novo KCNB1 mutation: if it is not one potassium channel, it is another! NA"	"Kv2.1 clusters on β-cell plasma membrane act as reservoirs that replenish pools of newcomer insulin granule through their interaction with syntaxin-3. The voltage-dependent K<sup>+</sup> (Kv) channel Kv2.1 is a major delayed rectifier in many secretory cells, including pancreatic β cells. In addition, Kv2.1 has a direct role in exocytosis at an undefined step, involving SNARE proteins, that is independent of its ion-conducting pore function. Here, we elucidated the precise step in exocytosis. We previously reported that syntaxin-3 (Syn-3) is the key syntaxin that mediates exocytosis of newcomer secretory granules that spend minimal residence time on the plasma membrane before fusion. Using high-resolution total internal reflection fluorescence microscopy, we now show that Kv2.1 forms reservoir clusters on the β-cell plasma membrane and binds Syn-3 via its C-terminal C1b domain, which recruits newcomer insulin secretory granules into this large reservoir. Upon glucose stimulation, secretory granules were released from this reservoir to replenish the pool of newcomer secretory granules for subsequent fusion, occurring just adjacent to the plasma membrane Kv2.1 clusters. C1b deletion blocked the aforementioned Kv2.1-Syn-3-mediated events and reduced fusion of newcomer secretory granules. These insights have therapeutic implications, as Kv2.1 overexpression in type-2 diabetes rat islets restored biphasic insulin secretion."	"Downregulation of L-Type Voltage-Gated Ca<sup>2+</sup>, Voltage-Gated K<sup>+</sup>, and Large-Conductance Ca<sup>2+</sup>-Activated K<sup>+</sup> Channels in Vascular Myocytes From Salt-Loading Offspring Rats Exposed to Prenatal Hypoxia. Prenatal hypoxia is suggested to be associated with increased risks of hypertension in offspring. This study tested whether prenatal hypoxia resulted in salt-sensitive offspring and its related mechanisms of vascular ion channel remodeling. Pregnant rats were housed in a normoxic (21% O2) or hypoxic (10.5% O2) chamber from gestation days 5 to 21. A subset of male offspring received a high-salt diet (8% NaCl) from 4 to 12 weeks after birth. Blood pressure was significantly increased only in the salt-loading offspring exposed to prenatal hypoxia, not in the offspring that received regular diets and in control offspring provided with high-salt diets. In mesenteric artery myocytes from the salt-loading offspring with prenatal hypoxia, depolarized resting membrane potential was associated with decreased density of L-type voltage-gated Ca<sup>2+</sup> (Cav1.2) and voltage-gated K<sup>+</sup> channel currents and decreased calcium sensitive to the large-conductance Ca<sup>2+</sup>-activated K<sup>+</sup> channels. Protein expression of the L-type voltage-gated Ca<sup>2+</sup> α1C subunit, large-conductance calcium-activated K<sup>+</sup> channel (β1, not α subunits), and voltage-gated K<sup>+</sup> channel (KV2.1, not KV1.5 subunits) was also decreased in the arteries of salt-loading offspring with prenatal hypoxia. The results demonstrated that chronic prenatal hypoxia may program salt-sensitive hypertension in male offspring, providing new information of ion channel remodeling in hypertensive myocytes. This information paves the way for early prevention and treatments of salt-induced hypertension related to developmental problems in fetal origins."	"Potassium Channel Gain of Function in Epilepsy: An Unresolved Paradox. Exome and targeted sequencing have revolutionized clinical diagnosis. This has been particularly striking in epilepsy and neurodevelopmental disorders, for which new genes or new variants of preexisting candidate genes are being continuously identified at increasing rates every year. A surprising finding of these efforts is the recognition that gain of function potassium channel variants are actually associated with certain types of epilepsy, such as malignant migrating partial seizures of infancy or early-onset epileptic encephalopathy. This development has been difficult to understand as traditionally potassium channel loss-of-function, not gain-of-function, has been associated with hyperexcitability disorders. In this article, we describe the current state of the field regarding the gain-of-function potassium channel variants associated with epilepsy (KCNA2, KCNB1, KCND2, KCNH1, KCNH5, KCNJ10, KCNMA1, KCNQ2, KCNQ3, and KCNT1) and speculate on the possible cellular mechanisms behind the development of seizures and epilepsy in these patients. Understanding how potassium channel gain-of-function leads to epilepsy will provide new insights into the inner working of neural circuits and aid in developing new therapies."	"Regulation of Kv2.1 channel inactivation by phosphatidylinositol 4,5-bisphosphate. Phosphatidylinositol 4,5-bisphosphate (PIP2) is a membrane phospholipid that regulates the function of multiple ion channels, including some members of the voltage-gated potassium (Kv) channel superfamily. The PIP2 sensitivity of Kv channels is well established for all five members of the Kv7 family and for Kv1.2 channels; however, regulation of other Kv channels by PIP2 remains unclear. Here, we investigate the effects of PIP2 on Kv2.1 channels by applying exogenous PIP2 to the cytoplasmic face of excised membrane patches, activating muscarinic receptors (M1R), or depleting endogenous PIP2 using a rapamycin-translocated 5-phosphatase (FKBP-Inp54p). Exogenous PIP2 rescued Kv2.1 channels from rundown and partially prevented the shift in the voltage-dependence of inactivation observed in inside-out patch recordings. Native PIP2 depletion by the recruitment of FKBP-Insp54P or M1R activation in whole-cell experiments, induced a shift in the voltage-dependence of inactivation, an acceleration of the closed-state inactivation, and a delayed recovery of channels from inactivation. No significant effects were observed on the activation mechanism by any of these treatments. Our data can be modeled by a 13-state allosteric model that takes into account that PIP2 depletion facilitates inactivation of Kv2.1. We propose that PIP2 regulates Kv2.1 channels by interfering with the inactivation mechanism."	"Micro-ribonucleic acid-binding site variants of type 2 diabetes candidate loci predispose to gestational diabetes mellitus in Chinese Han women. Emerging evidence has suggested that the genetic background of gestational diabetes mellitus (GDM) was analogous to type 2 diabetes mellitus. In contrast to type 2 diabetes mellitus, the genetic studies for GDM were limited. Accordingly, the aim of the present study was to extensively explore the influence of micro-ribonucleic acid-binding single-nucleotide polymorphisms (SNPs) in type 2 diabetes mellitus candidate loci on GDM susceptibility in Chinese. A total of 839 GDM patients and 900 controls were enrolled. Six micro-ribonucleic acid-binding SNPs were selected from 30 type 2 diabetes mellitus susceptibility loci and genotyped using TaqMan allelic discrimination assays. The minor allele of three SNPs, PAX4 rs712699 (OR 1.366, 95% confidence interval 1.021-1.828, P = 0.036), KCNB1 rs1051295 (OR 1.579, 95% confidence interval 1.172-2.128, P = 0.003) and MFN2 rs1042842 (OR 1.398, 95% confidence interval 1.050-1.862, P = 0.022) were identified to significantly confer higher a risk of GDM in the additive model. The association between rs1051295 and increased fasting plasma glucose (b = 0.006, P = 0.008), 3-h oral glucose tolerance test plasma glucose (b = 0.058, P = 0.025) and homeostatic model assessment of insulin resistance (b = 0.065, P = 0.017) was also shown. Rs1042842 was correlated with higher 3-h oral glucose tolerance test plasma glucose (b = 0.056, P = 0.028). However, no significant correlation between the other included SNPs (LPIN1 rs1050800, VPS26A rs1802295 and NLRP3 rs10802502) and GDM susceptibility were observed. The present findings showed that micro-ribonucleic acid-binding SNPs in type 2 diabetes mellitus candidate loci were also associated with GDM susceptibility, which further highlighted the similar genetic basis underlying GDM and type 2 diabetes mellitus."	"Monogenic disorders that mimic the phenotype of Rett syndrome. Rett syndrome (RTT) is caused by mutations in methyl-CpG-binding protein 2 (MECP2), but defects in a handful of other genes (e.g., CDKL5, FOXG1, MEF2C) can lead to presentations that resemble, but do not completely mirror, classical RTT. In this study, we attempted to identify other monogenic disorders that share features with RTT. We performed a retrospective chart review on n = 319 patients who had undergone clinical whole exome sequencing (WES) for further etiological evaluation of neurodevelopmental diagnoses that remained unexplained despite extensive prior workup. From this group, we characterized those who (1) possessed features that were compatible with RTT based on clinical judgment, (2) subsequently underwent MECP2 sequencing and/or MECP2 deletion/duplication analysis with negative results, and (3) ultimately arrived at a diagnosis other than RTT with WES. n = 7 patients had clinical features overlapping RTT with negative MECP2 analysis but positive WES providing a diagnosis. These seven patients collectively possessed pathogenic variants in six different genes: two in KCNB1 and one each in FOXG1, IQSEC2, MEIS2, TCF4, and WDR45. n = 2 (both with KCNB1 variants) fulfilled criteria for atypical RTT. RTT-associated features included the following: loss of hand or language skills (n = 3; IQSEC2, KCNB1 x 2); disrupted sleep (n = 4; KNCB1, MEIS2, TCF4, WDR45); stereotyped hand movements (n = 5; FOXG1, KNCB1 x 2, MEIS2, TCF4); bruxism (n = 3; KCNB1 x 2; TCF4); and hypotonia (n = 7). Clinically based diagnoses can be misleading, evident by the increasing number of genetic conditions associated with features of RTT with negative MECP2 mutations."	"Defective trafficking of Kv2.1 channels in MPTP-induced nigrostriatal degeneration. Intracellular protein trafficking is tightly regulated, and improper trafficking might be the fundamental provocateur for human diseases including neurodegeneration. In neurons, protein trafficking to and from the plasma membrane affects synaptic plasticity. Voltage-gated potassium channel 2.1 (Kv2.1) is a predominant delayed rectifier potassium (K<sup>+</sup> ) current, and electrical activity patterns of dopamine (DA) neurons within the substantia nigra are generated and modulated by the orchestrated function of different ion channels. The pathological hallmark of Parkinson's disease (PD) is the progressive loss of these DA neurons, resulting in the degeneration of striatal dopaminergic terminals. However, whether trafficking of Kv2.1 channels contributes to PD remains unclear. In this study, we demonstrated that MPTP/MPP<sup>+</sup> increases the surface expression of the Kv2.1 channel and causes nigrostriatal degeneration by using a subchronic MPTP mouse model. The inhibition of the Kv2.1 channel by using a specific blocker, guangxitoxin-1E, protected nigrostriatal projections against MPTP/MPP<sup>+</sup> insult and thus facilitated the recovery of motor coordination. These findings highlight the importance of trafficking of Kv2.1 channels in the pathogenesis of PD."	"Clinical features and outcome of 6 new patients carrying de novo KCNB1 gene mutations. To describe electroclinical features and outcome of 6 patients harboring KCNB1 mutations. Clinical, EEG, neuropsychological, and brain MRI data analysis. Targeted next-generation sequencing of a 95 epilepsy gene panel. The mean age at seizure onset was 11 months. The mean follow-up of 11.3 years documented that 4 patients following an infantile phase of frequent seizures became seizure free; the mean age at seizure offset was 4.25 years. Epilepsy phenotypes comprised West syndrome in 2 patients, infantile-onset unspecified generalized epilepsy, myoclonic and photosensitive eyelid myoclonia epilepsy resembling Jeavons syndrome, Lennox-Gastaut syndrome, and focal epilepsy with prolonged occipital or clonic seizures in each and every one. Five patients had developmental delay prior to seizure onset evolving into severe intellectual disability with absent speech and autistic traits in one and stereotypic hand movements with impulse control disorder in another. The patient with Jeavons syndrome evolved into moderate intellectual disability. Mutations were de novo, 4 missense and 2 nonsense, 5 were novel, and 1 resulted from somatic mosaicism. KCNB1-related manifestations include a spectrum of infantile-onset generalized or focal seizures whose combination leads to early infantile epileptic encephalopathy including West, Lennox-Gastaut, and Jeavons syndromes. Long-term follow-up highlights that following a stormy phase, seizures subside or cease and treatment may be eased or withdrawn. Cognitive and motor functions are almost always delayed prior to seizure onset and evolve into severe, persistent impairment. Thus, KCNB1 mutations are associated with diffuse brain dysfunction combining seizures, motor, and cognitive impairment."	"Characterization of a KCNB1 variant associated with autism, intellectual disability, and epilepsy. To perform functional characterization of a potentially pathogenic KCNB1 variant identified by clinical exome sequencing of a proband with a neurodevelopmental disorder that included epilepsy and centrotemporal spikes on EEG. Whole-exome sequencing identified the KCNB1 variant c.595A&gt;T (p.Ile199Phe). Biochemical and electrophysiologic experiments were performed to determine whether this variant affected protein expression, trafficking, and channel functional properties. Biochemical characterization of the variant suggested normal protein expression and trafficking. Functional characterization revealed biophysical channel defects in assembled homotetrameric and heterotetrameric channels. The identification of the KCNB1 variant c.595A&gt;T (p.Ile199Phe) in a neurodevelopmental disorder that included epilepsy with centrotemporal spikes expands the phenotypic spectrum of epilepsies associated with KCNB1 variants. The KCNB1-I199F variant exhibited partial loss of function relative to the wild-type channel. This defect is arguably less severe than previously reported KCNB1 variants, suggesting the possibility that the degree of KCNB1 protein dysfunction may influence disease severity."	"Phytochemicals genistein and capsaicin modulate Kv2.1 channel gating. Phytochemicals are a large group of plant-derived compounds that have a broad range of pharmacological effects. Some of these effects are derived from their action on transport proteins, including ion channels. The present study investigates the effects of the phytochemicals genistein and capsaicin on voltage-gated potassium Kv2.1 channels. The whole-cell patch clamp technique was used to explore the regulation of Kv2.1 channels expressed in HEK293 cells by genistein and capsaicin. Both phytochemicals had a profound effect on the gating properties of Kv2.1 channels; the voltage dependence of activation and inactivation was shifted to hyperpolarized potentials, the closed-state inactivation was accelerated, and the recovery from inactivation was delayed. Moreover, genistein and capsaicin inhibited Kv2.1 currents in a concentration dependent manner. This study effectively demonstrated the inhibitory effects of genistein and capsaicin on Kv2.1 channels. As Kv2.1 channels play a prominent role in glucose-stimulated insulin secretion, our findings contribute to our understanding of the putative mechanism by which these phytochemicals exert their reported hypoglycemic effects."	"Trafficking of Kv2.1 Channels to the Axon Initial Segment by a Novel Nonconventional Secretory Pathway. Kv2.1 is a major delayed-rectifier voltage-gated potassium channel widely expressed in neurons of the CNS. Kv2.1 localizes in high-density cell-surface clusters in the soma and proximal dendrites as well as in the axon initial segment (AIS). Given the crucial roles of both of these compartments in integrating signal input and then generating output, this localization of Kv2.1 is ideal for regulating the overall excitability of neurons. Here we used fluorescence recovery after photobleaching imaging, mutagenesis, and pharmacological interventions to investigate the molecular mechanisms that control the localization of Kv2.1 in these two different membrane compartments in cultured rat hippocampal neurons of mixed sex. Our data uncover a unique ability of Kv2.1 channels to use two molecularly distinct trafficking pathways to accomplish this. Somatodendritic Kv2.1 channels are targeted by the conventional secretory pathway, whereas axonal Kv2.1 channels are targeted by a nonconventional trafficking pathway independent of the Golgi apparatus. We further identified a new AIS trafficking motif in the C-terminus of Kv2.1, and show that putative phosphorylation sites in this region are critical for the restricted and clustered localization in the AIS. These results indicate that neurons can regulate the expression and clustering of Kv2.1 in different membrane domains independently by using two distinct localization mechanisms, which would allow neurons to precisely control local membrane excitability.SIGNIFICANCE STATEMENT Our study uncovered a novel mechanism that targets the Kv2.1 voltage-gated potassium channel to two distinct trafficking pathways and two distinct subcellular destinations: the somatodendritic plasma membrane and that of the axon initial segment. We also identified a distinct motif, including putative phosphorylation sites, that is important for the AIS localization. This raises the possibility that the destination of a channel protein can be dynamically regulated via changes in post-translational modification, which would impact the excitability of specific membrane compartments."	"Clinician's guide to genes associated with Rett-like phenotypes-Investigation of a Danish cohort and review of the literature. The differential diagnostics in Rett syndrome has evolved with the development of next generation sequencing-based techniques and many patients have been diagnosed with other syndromes or variants in newly described genes where the associated phenotype(s) is yet to be fully explored. The term Rett-like refers to phenotypes with distinct overlapping features of Rett syndrome where the clinical criteria are not completely fulfilled. In this study we have combined a review of Rett-like disorders with data from a Danish cohort of 35 patients with Rett-like phenotypes emphasizing the diagnostic overlap with Pitt-Hopkins syndrome, Cornelia de Lange syndrome with SMC1A variants, and epileptic encephalopathies, for example, due to STXBP1 variants. We also found a patient with a pathogenic variant in KCNB1, which has not been previously linked to a Rett-like phenotype. This study underlines the clinical and genetic heterogeneity of a Rett syndrome spectrum, and provides an overview of the Rett syndrome-related genes described to date, and hence serves as a guide for diagnosing patients with Rett-like phenotypes."	"A distinct microRNA expression profile is associated with α[<sup>11</sup>C]-methyl-L-tryptophan (AMT) PET uptake in epileptogenic cortical tubers resected from patients with tuberous sclerosis complex. Tuberous sclerosis complex (TSC) is characterized by hamartomatous lesions in various organs and arises due to mutations in the TSC1 or TSC2 genes. TSC mutations lead to a range of neurological manifestations including epilepsy, cognitive impairment, autism spectrum disorders (ASD), and brain lesions that include cortical tubers. There is evidence that seizures arise at or near cortical tubers, but it is unknown why some tubers are epileptogenic while others are not. We have previously reported increased tryptophan metabolism measured with α[<sup>11</sup>C]-methyl-l-tryptophan (AMT) positron emission tomography (PET) in epileptogenic tubers in approximately two-thirds of patients with tuberous sclerosis and intractable epilepsy. However, the underlying mechanisms leading to seizure onset in TSC remain poorly characterized. MicroRNAs are enriched in the brain and play important roles in neurodevelopment and brain function. Recent reports have shown aberrant microRNA expression in epilepsy and TSC. In this study, we performed microRNA expression profiling in brain specimens obtained from TSC patients undergoing epilepsy surgery for intractable epilepsy. Typically, in these resections several non-seizure onset tubers are resected together with the seizure-onset tubers because of their proximity. We directly compared seizure onset tubers, with and without increased tryptophan metabolism measured with PET, and non-onset tubers to assess the role of microRNAs in epileptogenesis associated with these lesions. Whether a particular tuber was epileptogenic or non-epileptogenic was determined with intracranial electrocorticography, and tryptophan metabolism was measured with AMT PET. We identified a set of five microRNAs (miR-142-3p, 142-5p, 223-3p, 200b-3p and 32-5p) that collectively distinguish among the three primary groups of tubers: non-onset/AMT-cold (NC), onset/AMT-cold (OC), and onset/AMT-hot (OH). These microRNAs were significantly upregulated in OH tubers compared to the other two groups, and microRNA expression was most significantly associated with AMT-PET uptake. The microRNAs target a group of genes enriched for synaptic signaling and epilepsy risk, including SLC12A5, SYT1, GRIN2A, GRIN2B, KCNB1, SCN2A, TSC1, and MEF2C. We confirmed the interaction between miR-32-5p and SLC12A5 using a luciferase reporter assay. Our findings provide a new avenue for subsequent mechanistic studies of tuber epileptogenesis in TSC."	"Up-Regulation of the Voltage-Gated KV2.1 K<sup>+</sup> Channel in the Renal Arterial Myocytes of Dahl Salt-Sensitive Hypertensive Rats. Salt-sensitive hypertension induces renal injury via decreased blood flow in the renal artery (RA), and ion channel dysfunction in RA myocytes (RAMs) may be involved in the higher renal vascular resistance. We examined the effects of several voltage-gated K<sup>+</sup> (KV) channel blockers on the resting tension in endothelium-denuded RA strips and delayed-rectifier K<sup>+</sup> currents in RAMs of Dahl salt-sensitive hypertensive rats (Dahl-S) fed with low- (Dahl-LS) and high-salt diets (Dahl-HS). The tetraethylammonium (TEA)-induced contraction in RA strips were significantly larger in Dahl-HS than Dahl-LS. Correspondingly, TEA-sensitive KV currents were significantly larger in the RAMs of Dahl-HS than Dahl-LS. Among the TEA-sensitive KV channel subtypes, the expression levels of KV2.1 transcript and protein were significantly higher in the RA of Dahl-HS than Dahl-LS, while those of KV1.5, KV7.1, and KV7.4 transcripts was comparable in two groups. KV2.1 currents detected as the guangxitoxin-1E-sensitive component were larger in the RAMs of Dahl-HS than Dahl-LS. These suggest that the up-regulation of the KV2.1 channel in RAMs may be involved in the compensatory mechanisms against decreased renal blood flow in salt-sensitive hypertension."	"Prenatal diagnosis of complex phenotype in a 13-week-old fetus with an interstitial multigene deletion 20q13.13.-q13.2 by chromosomal microarray. We report the first trimester three-dimensional ultrasonographic findings in a 13-week-old fetus with complex phenotype and a de novo 4.7 Mb multigene deletion encompassing chromosome region 20q13.13-q13.2 detected by chromosomal microarray. Fetal sonography detected radial-ray anomalies in the form of bilateral absence of thumbs and the left club hand deformity. The presence of single atrioventricular canal instead of the atrial septal defect typical for Holt-Oram syndrome pointed us to rather suspect the SALL4 related diseases. Central nervous system anomaly in the form of enlarged lateral brain ventricles with choroid plexus shifted backwards was not previously reported as a part of SALL4 related disorders. The pregnancy was terminated at 14 + 3 weeks of pregnancy and the autopsy confirmed ultrasonographic findings. Deleted region included 38 genes, where only SALL4, ADNP and KCNB1 heterozygote pathogenic variants were described to be cause of syndromic forms. Radial ray anomalies are common part of clinical picture of SALL4 related disorders. Despite the lack of prenatally described cases, we hypothesized that maldevelopment of lateral brain ventriculomegaly could be very early sonographic sign of disturbed ADNP expression causing Helsmoortel-Van der Aa syndrome, but in some extent also of KCNB1 related early-onset epileptic encephalopathy. Furthermore, the possible dosage-dependent influence of recessive genes located in this region cannot be also excluded. The use of genome-wide technologies enables the detection of subtle chromosomal imbalances and more precise familial genetic counseling regarding actual and future pregnancies."	"Neurodevelopmental Disorders Caused by De Novo Variants in KCNB1 Genotypes and Phenotypes. Knowing the range of symptoms seen in patients with a missense or loss-of-function variant in KCNB1 and how these symptoms correlate with the type of variant will help clinicians with diagnosis and prognosis when treating new patients. To investigate the clinical spectrum associated with KCNB1 variants and the genotype-phenotype correlations. This study summarized the clinical and genetic information of patients with a presumed pathogenic variant in KCNB1. Patients were identified in research projects or during clinical testing. Information on patients from previously published articles was collected and authors contacted if feasible. All patients were seen at a clinic at one of the participating institutes because of presumed genetic disorder. They were tested in a clinical setting or included in a research project. The genetic variant and its inheritance and information on the patient's symptoms and characteristics in a predefined format. All variants were identified with massive parallel sequencing and confirmed with Sanger sequencing in the patient. Absence of the variant in the parents could be confirmed with Sanger sequencing in all families except one. Of 26 patients (10 female, 15 male, 1 unknown; mean age at inclusion, 9.8 years; age range, 2-32 years) with developmental delay, 20 (77%) carried a missense variant in the ion channel domain of KCNB1, with a concentration of variants in region S5 to S6. Three variants that led to premature stops were located in the C-terminal and 3 in the ion channel domain. Twenty-one of 25 patients (84%) had seizures, with 9 patients (36%) starting with epileptic spasms between 3 and 18 months of age. All patients had developmental delay, with 17 (65%) experiencing severe developmental delay; 14 (82%) with severe delay had behavioral problems. The developmental delay was milder in 4 of 6 patients with stop variants and in a patient with a variant in the S2 transmembrane element rather than the S4 to S6 region. De novo KCNB1 missense variants in the ion channel domain and loss-of-function variants in this domain and the C-terminal likely cause neurodevelopmental disorders with or without seizures. Patients with presumed pathogenic variants in KCNB1 have a variable phenotype. However, the type and position of the variants in the protein are (imperfectly) correlated with the severity of the disorder."	"NMDA receptors mediate leptin signaling and regulate potassium channel trafficking in pancreatic β-cells. NMDA receptors (NMDARs) are Ca<sup>2+</sup>-permeant, ligand-gated ion channels activated by the excitatory neurotransmitter glutamate and have well-characterized roles in the nervous system. The expression and function of NMDARs in pancreatic β-cells, by contrast, are poorly understood. Here, we report a novel function of NMDARs in β-cells. Using a combination of biochemistry, electrophysiology, and imaging techniques, we now show that NMDARs have a key role in mediating the effect of leptin to modulate β-cell electrical activity by promoting AMP-activated protein kinase (AMPK)-dependent trafficking of KATP and Kv2.1 channels to the plasma membrane. Blocking NMDAR activity inhibited the ability of leptin to activate AMPK, induce KATP and Kv2.1 channel trafficking, and promote membrane hyperpolarization. Conversely, activation of NMDARs mimicked the effect of leptin, causing Ca<sup>2+</sup> influx, AMPK activation, and increased trafficking of KATP and Kv2.1 channels to the plasma membrane, and triggered membrane hyperpolarization. Moreover, leptin potentiated NMDAR currents and triggered NMDAR-dependent Ca<sup>2+</sup> influx. Importantly, NMDAR-mediated signaling was observed in rat insulinoma 832/13 cells and in human β-cells, indicating that this pathway is conserved across species. The ability of NMDARs to regulate potassium channel surface expression and thus, β-cell excitability provides mechanistic insight into the recently reported insulinotropic effects of NMDAR antagonists and therefore highlights the therapeutic potential of these drugs in managing type 2 diabetes."	"Kv2.1 Clustering Contributes to Insulin Exocytosis and Rescues Human β-Cell Dysfunction. Insulin exocytosis is regulated by ion channels that control excitability and Ca<sup>2+</sup> influx. Channels also play an increasingly appreciated role in microdomain structure. In this study, we examine the mechanism by which the voltage-dependent K<sup>+</sup> (Kv) channel Kv2.1 (KCNB1) facilitates depolarization-induced exocytosis in INS 832/13 cells and β-cells from human donors with and without type 2 diabetes (T2D). We find that Kv2.1, but not Kv2.2 (KCNB2), forms clusters of 6-12 tetrameric channels at the plasma membrane and facilitates insulin exocytosis. Knockdown of Kv2.1 expression reduces secretory granule targeting to the plasma membrane. Expression of the full-length channel (Kv2.1-wild-type) supports the glucose-dependent recruitment of secretory granules. However, a truncated channel (Kv2.1-ΔC318) that retains electrical function and syntaxin 1A binding, but lacks the ability to form clusters, does not enhance granule recruitment or exocytosis. Expression of KCNB1 appears reduced in T2D islets, and further knockdown of KCNB1 does not inhibit Kv current in T2D β-cells. Upregulation of Kv2.1-wild-type, but not Kv2.1-ΔC318, rescues the exocytotic phenotype in T2D β-cells and increases insulin secretion from T2D islets. Thus, the ability of Kv2.1 to directly facilitate insulin exocytosis depends on channel clustering. Loss of this structural role for the channel might contribute to impaired insulin secretion in diabetes."	"Corrigendum: Novel KCNB1 mutation associated with non-syndromic intellectual disability. NA"	"Oxidation of KCNB1 potassium channels triggers apoptotic integrin signaling in the brain. Oxidative modification of the voltage-gated potassium (K<sup>+</sup>) channel KCNB1 promotes apoptosis in the neurons of cortex and hippocampus through a signaling pathway mediated by Src tyrosine kinases. How oxidation of the channel is transduced into Src recruitment and activation, however, was not known. Here we show that the apoptotic signal originates from integrins, which form macromolecular complexes with KCNB1 channels. The initial stimulus is transduced to Fyn and possibly other Src family members by focal adhesion kinase (FAK). Thus KCNB1 and integrin alpha chain V (integrin-α5) coimmunoprecipitated in the mouse brain and these interactions were retained upon channel's oxidation. Pharmacological inhibition of integrin signaling or FAK suppressed apoptosis induced by oxidation of KCNB1, as well as FAK and Src/Fyn activation. Most importantly, the activation of the integrin-FAK-Src/Fyn cascade was negligible in the presence of non-oxidizable C73A KCNB1 mutant channels, even though they normally interacted with integrin-α5. This leads us to conclude that the transition between the non-oxidized and oxidized state of KCNB1 activates integrin signaling. KCNB1 oxidation may favor integrin clustering, thereby facilitating the recruitment and activation of FAK and Src/Fyn kinases."	"[A novel mutation in KCNB1 gene in a child with neuropsychiatric comorbidities with both intellectual disability and epilepsy and review of literature]. Objective: To explore the association between the phenotype and KCNB1 gene mutation. Method: Clinical information including physical features, laboratory and genetic data of one patient of mental retardation with refractory epilepsy from Department of Pediatrics, Xiangya Hospital in January 2016 was analyzed. This patient was discovered to have KCNB1 gene mutations through whole exome sequencing. Relevant information about KCNB1 gene mutation was searched and collected from Pubmed, CNKI, Human Gene Mutation Database(HGMD) and Online Mendelian Inheritance in Man(OMIM). Searching was done using &quot;KCNB1&quot; as a keyword. Result: A 3.5 years old boy who visited our hospital firstly at the age of 2 years because of development delay came for follow up as he developed seizures.The forms included tonic, clonic seizures and spasm. The condition became more severe 10 months later. Electroencephalogram(EEG) showed high frequency discharge (&gt;85%). He had poor response to multiple anti-epileptic drugs, methylprednisolone and ketogenic diet. At the age of 3, he started to have mental regression. Whole exome-sequencing study (trios) identified a novel heterozygous mutation c. G1136T (p.G379V) in KCNB1, which is not available in the databases mentioned above. This is the first case report of KCNB1 gene mutation in China. Eight cases have been reported so far worldwide and all of them were diagnosed with refractory epilepsy. Those 8 reported cases of encephalopathy were all due to de novo mutation. Conclusion: The main clinical features of patients with KCNB1 mutations include severe to profound intellectual disability, intractable seizures, hypotonia and regression of cognition and motor activity which lead to poor prognosis. 目的: 探讨KCNB1基因的表型和基因型的关系。 方法: 回顾性分析1例2014年6月在中南大学湘雅医院儿科接诊,2016年1月明确诊断的KCNB1基因突变导致智力障碍合并难治性癫痫患儿的临床资料,并以&quot;KCNB1&quot;为检索词通过Pubmed、CNKI、人类基因组突变数据库(HGMD)和在线人类孟德尔遗传数据库(OMIM)等数据库对国内外文献进行检索,总结KCNB1基因突变患儿的临床表型及其与基因型的关系。 结果: 患儿 男, 3岁6月龄,2岁时因&quot;发育迟缓&quot;首次门诊就诊,诊断考虑&quot;精神运动发育迟滞&quot; ,既往13月龄首先出现抽搐发作,脑电图未见明显异常,未重视。随诊期间于2岁10月龄再次出现抽搐,3岁抽搐情况加重,发作形式多样,可表现为强直、阵挛及痉挛发作,脑电图示清醒期及NREM期放电指数高(&gt;85%),通过多种抗癫痫药物、激素、生酮饮食等均无法控制抽搐发作,3岁起出现精神运动发育倒退,体格检查示肌张力低,独坐不稳,不能独站,无语言交流。通过全外显子测序技术检测出该患儿KCNB1新生杂合错义突变,突变位点为c.G1136T(p.G379V),且上述数据库均未记载。国内尚无KCNB1基因突变患儿记录,国外文献共报道8例,突变均为新发错义突变,表型为癫痫脑病。 结论: KCNB1基因突变患者的主要临床表型为重度智力障碍合并难治性癫痫,查体可见肌张力减低,后期可伴有精神运动发育倒退,预后差。."	"Role of KCNB1 in the prognosis of gliomas and autophagy modulation. Increasing evidence suggests that ion channel genes play an important role in the progression of gliomas. However, the mechanisms by which ion channel genes influence the progression of glioma are not fully understood. We identified KCNB1 as a novel ion gene, associated with malignant progression and favorable overall survival (OS) and progression-free survival (PFS) in glioma patients from three datasets (CGGA, GSE16011 and REMBRANDT). Moreover, we characterized a novel function of autophagy induction accompanied by increased apoptosis and reduced proliferation and invasion of glioma cells for KCNB1. KEGG pathway analysis and in vitro studies suggested that the ERK pathway is involved in KCNB1-mediated regulation of autophagy, which was confirmed by inhibition of KCNB1-induced autophagy by using a selective ERK1/2 inhibitor (U0126) or siERK1/2. In vivo studies showed that KCNB1 induced autophagy while inhibiting tumor growth and increasing survival. Overall, our studies define KCNB1 as a novel prognostic factor for gliomas that exerts its tumor suppressive function through autophagy induction."	"Neuregulin 1-ErbB module in C-bouton synapses on somatic motor neurons: molecular compartmentation and response to peripheral nerve injury. The electric activity of lower motor neurons (MNs) appears to play a role in determining cell-vulnerability in MN diseases. MN excitability is modulated by cholinergic inputs through C-type synaptic boutons, which display an endoplasmic reticulum-related subsurface cistern (SSC) adjacent to the postsynaptic membrane. Besides cholinergic molecules, a constellation of proteins involved in different signal-transduction pathways are clustered at C-type synaptic sites (M2 muscarinic receptors, Kv2.1 potassium channels, Ca<sup>2+</sup> activated K<sup>+</sup> [SK] channels, and sigma-1 receptors [S1R]), but their collective functional significance so far remains unknown. We have previously suggested that neuregulin-1 (NRG1)/ErbBs-based retrograde signalling occurs at this synapse. To better understand signalling through C-boutons, we performed an analysis of the distribution of C-bouton-associated signalling proteins. We show that within SSC, S1R, Kv2.1 and NRG1 are clustered in highly specific, non-overlapping, microdomains, whereas ErbB2 and ErbB4 are present in the adjacent presynaptic compartment. This organization may define highly ordered and spatially restricted sites for different signal-transduction pathways. SSC associated proteins are disrupted in axotomised MNs together with the activation of microglia, which display a positive chemotactism to C-bouton sites. This indicates that C-bouton associated molecules are also involved in neuroinflammatory signalling in diseased MNs, emerging as new potential therapeutic targets."	"Angiotensin II reduces the surface abundance of KV 1.5 channels in arterial myocytes to stimulate vasoconstriction. Several different voltage-dependent K<sup>+</sup> (KV ) channel isoforms are expressed in arterial smooth muscle cells (myocytes). Vasoconstrictors inhibit KV currents, but the isoform selectivity and mechanisms involved are unclear. We show that angiotensin II (Ang II), a vasoconstrictor, stimulates degradation of KV 1.5, but not KV 2.1, channels through a protein kinase C- and lysosome-dependent mechanism, reducing abundance at the surface of mesenteric artery myocytes. The Ang II-induced decrease in cell surface KV 1.5 channels reduces whole-cell KV 1.5 currents and attenuates KV 1.5 function in pressurized arteries. We describe a mechanism by which Ang II stimulates protein kinase C-dependent KV 1.5 channel degradation, reducing the abundance of functional channels at the myocyte surface. Smooth muscle cells (myocytes) of resistance-size arteries express several different voltage-dependent K<sup>+</sup> (KV ) channels, including KV 1.5 and KV 2.1, which regulate contractility. Myocyte KV currents are inhibited by vasoconstrictors, including angiotensin II (Ang II), but the mechanisms involved are unclear. Here, we tested the hypothesis that Ang II inhibits KV currents by reducing the plasma membrane abundance of KV channels in myocytes. Angiotensin II (applied for 2 h) reduced surface and total KV 1.5 protein in rat mesenteric arteries. In contrast, Ang II did not alter total or surface KV 2.1, or KV 1.5 or KV 2.1 cellular distribution, measured as the percentage of total protein at the surface. Bisindolylmaleimide (BIM; a protein kinase C blocker), a protein kinase C inhibitory peptide or bafilomycin A (a lysosomal degradation inhibitor) each blocked the Ang II-induced decrease in total and surface KV 1.5. Immunofluorescence also suggested that Ang II reduced surface KV 1.5 protein in isolated myocytes; an effect inhibited by BIM. Arteries were exposed to Ang II or Ang II plus BIM (for 2 h), after which these agents were removed and contractility measurements performed or myocytes isolated for patch-clamp electrophysiology. Angiotensin II reduced both whole-cell KV currents and currents inhibited by Psora-4, a KV 1.5 channel blocker. Angiotensin II also reduced vasoconstriction stimulated by Psora-4 or 4-aminopyridine, another KV channel inhibitor. These data indicate that Ang II activates protein kinase C, which stimulates KV 1.5 channel degradation, leading to a decrease in surface KV 1.5, a reduction in whole-cell KV 1.5 currents and a loss of functional KV 1.5 channels in myocytes of pressurized arteries."	"Novel KCNB1 mutation associated with non-syndromic intellectual disability. Potassium voltage-gated channel subfamily B member 1 (KCNB1) encodes Kv2.1 potassium channel of crucial role in hippocampal neuron excitation homeostasis. KCNB1 mutations are known to cause early-onset infantile epilepsy. To date, 10 KCNB1 mutations have been described in 11 patients. Using whole-exome sequencing, we identified a novel de novo missense (c.1132G&gt;C, p.V378L) KCNB1 mutation in a patient with global developmental delay, intellectual disability, severe speech impairment, but no episode of epilepsy until the lastly examined age of 6 years old. Furthermore, she showed neuropsychiatric symptoms including hyperactivity with irritability, heteroaggressiveness, psychomotor instability and agitation. Our observation might expand the phenotypic spectrum of KCNB1-related phenotypes and raises the issue of the occurrence of the epileptic phenotype."	"Dromedary immune response and specific Kv2.1 antibody generation using a specific immunization approach. Voltage-gated potassium (Kv) channels form cells repolarizing power and are commonly expressed in excitable cells. In non-excitable cells, Kv channels such as Kv2.1 are involved in cell differentiation and growth. Due to the involvement of Kv2.1 in several physiological processes, these channels are promising therapeutic targets. To develop Kv2.1 specific antibody-based channel modulators, we applied a novel approach and immunized a dromedary with heterologous Ltk- cells that overexpress the mouse Kv2.1 channel instead of immunizing with channel protein fragments. The advantage of this approach is that the channel is presented in its native tetrameric configuration. Using a Cell-ELISA, we demonstrated the ability of the immune serum to detect Kv2.1 channels on the surface of cells that express the channel. Then, using a Patch Clamp electrophysiology assay we explored the capability of the dromedary serum in modulating Kv2.1 currents. Cells that were incubated for 3h with serum taken at Day 51 from the start of the immunization displayed a statistically significant 2-fold reduction in current density compared to control conditions as well as cells incubated with serum from Day 0. Here we show that an immunization approach with cells overexpressing the Kv2.1 channel yields immune serum with Kv2.1 specific antibodies."	"Functional antagonism of voltage-gated K+ channel α-subunits in the developing brain ventricular system. The brain ventricular system is essential for neurogenesis and brain homeostasis. Its neuroepithelial lining effects these functions, but the underlying molecular pathways remain to be understood. We found that the potassium channels expressed in neuroepithelial cells determine the formation of the ventricular system. The phenotype of a novel zebrafish mutant characterized by denudation of neuroepithelial lining of the ventricular system and hydrocephalus is mechanistically linked to Kcng4b, a homologue of the 'silent' voltage-gated potassium channel α-subunit Kv6.4. We demonstrated that Kcng4b modulates proliferation of cells lining the ventricular system and maintains their integrity. The gain of Kcng4b function reduces the size of brain ventricles. Electrophysiological studies suggest that Kcng4b mediates its effects via an antagonistic interaction with Kcnb1, the homologue of the electrically active delayed rectifier potassium channel subunit Kv2.1. Mutation of kcnb1 reduces the size of the ventricular system and its gain of function causes hydrocephalus, which is opposite to the function of Kcng4b. This demonstrates the dynamic interplay between potassium channel subunits in the neuroepithelium as a novel and crucial regulator of ventricular development in the vertebrate brain."	"Oxidation of KCNB1 Potassium Channels Causes Neurotoxicity and Cognitive Impairment in a Mouse Model of Traumatic Brain Injury. The delayed rectifier potassium (K<sup>+</sup>) channel KCNB1 (Kv2.1), which conducts a major somatodendritic current in cortex and hippocampus, is known to undergo oxidation in the brain, but whether this can cause neurodegeneration and cognitive impairment is not known. Here, we used transgenic mice harboring human KCNB1 wild-type (Tg-WT) or a nonoxidable C73A mutant (Tg-C73A) in cortex and hippocampus to determine whether oxidized KCNB1 channels affect brain function. Animals were subjected to moderate traumatic brain injury (TBI), a condition characterized by extensive oxidative stress. Dasatinib, a Food and Drug Administration-approved inhibitor of Src tyrosine kinases, was used to impinge on the proapoptotic signaling pathway activated by oxidized KCNB1 channels. Thus, typical lesions of brain injury, namely, inflammation (astrocytosis), neurodegeneration, and cell death, were markedly reduced in Tg-C73A and dasatinib-treated non-Tg animals. Accordingly, Tg-C73A mice and non-Tg mice treated with dasatinib exhibited improved behavioral outcomes in motor (rotarod) and cognitive (Morris water maze) assays compared to controls. Moreover, the activity of Src kinases, along with oxidative stress, were significantly diminished in Tg-C73A brains. Together, these data demonstrate that oxidation of KCNB1 channels is a contributing mechanism to cellular and behavioral deficits in vertebrates and suggest a new therapeutic approach to TBI. This study provides the first experimental evidence that oxidation of a K<sup>+</sup> channel constitutes a mechanism of neuronal and cognitive impairment in vertebrates. Specifically, the interaction of KCNB1 channels with reactive oxygen species plays a major role in the etiology of mouse model of traumatic brain injury (TBI), a condition associated with extensive oxidative stress. In addition, a Food and Drug Administration-approved drug ameliorates the outcome of TBI in mouse, by directly impinging on the toxic pathway activated in response to oxidation of the KCNB1 channel. These findings elucidate a basic mechanism of neurotoxicity in vertebrates and might lead to a new therapeutic approach to TBI in humans, which, despite significant efforts, is a condition that remains without effective pharmacological treatments."	"A three ion channel genes-based signature predicts prognosis of primary glioblastoma patients and reveals a chemotherapy sensitive subtype. Increasing evidence suggests that ion channels not only regulate electric signaling in excitable cells but also play important roles in the development of brain tumor. However, the roles of ion channels in glioma remain controversial. In the present study, we systematically analyzed the expression patterns of ion channel genes in a cohort of Chinese patients with glioma using RNAseq expression profiling. First, a molecular signature comprising three ion channel genes (KCNN4, KCNB1 and KCNJ10) was identified using Univariate Cox regression and two-tailed student's t test conducted in overall survival (OS) and gene expression. We assigned a risk score based on three ion channel genes to each primary Glioblastoma multiforme (pGBM) patient. We demonstrated that pGBM patients who had a high risk of unfavorable outcome were sensitive to chemotherapy. Next, we screened the three ion genes-based signature in different molecular glioma subtypes. The signature showed a Mesenchymal subtype and wild-type IDH1 preference. Gene ontology (GO) analysis for the functional annotation of the signature showed that patients with high-risk scores tended to exhibit the increased expression of proteins associated with apoptosis, immune response, cell adhesion and motion and vasculature development. Gene Set Enrichment Analysis (GSEA) results showed that pathways associated with negative regulation of programmed cell death, cell proliferation and locomotory behavior were highly expressed in the high-risk group. These results suggest that ion channel gene expression could improve the subtype classification in gliomas at the molecular level. The findings in the present study have been validated in two independent cohorts."	"Single-Molecule Imaging of Nav1.6 on the Surface of Hippocampal Neurons Reveals Somatic Nanoclusters. Voltage-gated sodium (Nav) channels are responsible for the depolarizing phase of the action potential in most nerve cells, and Nav channel localization to the axon initial segment is vital to action potential initiation. Nav channels in the soma play a role in the transfer of axonal output information to the rest of the neuron and in synaptic plasticity, although little is known about Nav channel localization and dynamics within this neuronal compartment. This study uses single-particle tracking and photoactivation localization microscopy to analyze cell-surface Nav1.6 within the soma of cultured hippocampal neurons. Mean-square displacement analysis of individual trajectories indicated that half of the somatic Nav1.6 channels localized to stable nanoclusters ∼230 nm in diameter. Strikingly, these domains were stabilized at specific sites on the cell membrane for &gt;30 min, notably via an ankyrin-independent mechanism, indicating that the means by which Nav1.6 nanoclusters are maintained in the soma is biologically different from axonal localization. Nonclustered Nav1.6 channels showed anomalous diffusion, as determined by mean-square-displacement analysis. High-density single-particle tracking of Nav channels labeled with photoactivatable fluorophores in combination with Bayesian inference analysis was employed to characterize the surface nanoclusters. A subpopulation of mobile Nav1.6 was observed to be transiently trapped in the nanoclusters. Somatic Nav1.6 nanoclusters represent a new, to our knowledge, type of Nav channel localization, and are hypothesized to be sites of localized channel regulation. "	"Targeted sequencing of 351 candidate genes for epileptic encephalopathy in a large cohort of patients. Many genes are candidates for involvement in epileptic encephalopathy (EE) because one or a few possibly pathogenic variants have been found in patients, but insufficient genetic or functional evidence exists for a definite annotation. To increase the number of validated EE genes, we sequenced 26 known and 351 candidate genes for EE in 360 patients. Variants in 25 genes known to be involved in EE or related phenotypes were followed up in 41 patients. We prioritized the candidate genes, and followed up 31 variants in this prioritized subset of candidate genes. Twenty-nine genotypes in known genes for EE (19) or related diseases (10), dominant as well as recessive or X-linked, were classified as likely pathogenic variants. Among those, likely pathogenic de novo variants were found in EE genes that act dominantly, including the recently identified genes EEF1A2, KCNB1 and the X-linked gene IQSEC2. A de novo frameshift variant in candidate gene HNRNPU was the only de novo variant found among the followed-up candidate genes, and the patient's phenotype was similar to a few recent publications. Mutations in genes described in OMIM as, for example, intellectual disability gene can lead to phenotypes that get classified as EE in the clinic. We confirmed existing literature reports that de novo loss-of-function HNRNPUmutations lead to severe developmental delay and febrile seizures in the first year of life."	"SP6616 as a new Kv2.1 channel inhibitor efficiently promotes β-cell survival involving both PKC/Erk1/2 and CaM/PI3K/Akt signaling pathways. Kv2.1 as a voltage-gated potassium (Kv) channel subunit has a pivotal role in the regulation of glucose-stimulated insulin secretion (GSIS) and pancreatic β-cell apoptosis, and is believed to be a promising target for anti-diabetic drug discovery, although the mechanism underlying the Kv2.1-mediated β-cell apoptosis is obscure. Here, the small molecular compound, ethyl 5-(3-ethoxy-4-methoxyphenyl)-2-(4-hydroxy-3-methoxybenzylidene)-7-methyl-3-oxo-2,3-dihydro-5H-[1,3]thiazolo[3,2-a]pyrimidine-6-carboxylate (SP6616) was discovered to be a new Kv2.1 inhibitor. It was effective in both promoting GSIS and protecting β cells from apoptosis. Evaluation of SP6616 on either high-fat diet combined with streptozocin-induced type 2 diabetic mice or db/db mice further verified its efficacy in the amelioration of β-cell dysfunction and glucose homeostasis. SP6616 treatment efficiently increased serum insulin level, restored β-cell mass, decreased fasting blood glucose and glycated hemoglobin levels, and improved oral glucose tolerance. Mechanism study indicated that the promotion of SP6616 on β-cell survival was tightly linked to its regulation against both protein kinases C (PKC)/extracellular-regulated protein kinases 1/2 (Erk1/2) and calmodulin(CaM)/phosphatidylinositol 3-kinase(PI3K)/serine/threonine-specific protein kinase (Akt) signaling pathways. To our knowledge, this may be the first report on the underlying pathway responsible for the Kv2.1-mediated β-cell protection. In addition, our study has also highlighted the potential of SP6616 in the treatment of type 2 diabetes."	"Oxidation of K(+) Channels in Aging and Neurodegeneration. Reversible regulation of proteins by reactive oxygen species (ROS) is an important mechanism of neuronal plasticity. In particular, ROS have been shown to act as modulatory molecules of ion channels-which are key to neuronal excitability-in several physiological processes. However ROS are also fundamental contributors to aging vulnerability. When the level of excess ROS increases in the cell during aging, DNA is damaged, proteins are oxidized, lipids are degraded and more ROS are produced, all culminating in significant cell injury. From this arose the idea that oxidation of ion channels by ROS is one of the culprits for neuronal aging. Aging-dependent oxidative modification of voltage-gated potassium (K(+)) channels was initially demonstrated in the nematode Caenorhabditis elegans and more recently in the mammalian brain. Specifically, oxidation of the delayed rectifier KCNB1 (Kv2.1) and of Ca(2+)- and voltage sensitive K(+) channels have been established suggesting that their redox sensitivity contributes to altered excitability, progression of healthy aging and of neurodegenerative disease. Here I discuss the implications that oxidation of K(+) channels by ROS may have for normal aging, as well as for neurodegenerative disease. "	"Specific gene expression patterns of 108 schizophrenia-associated loci in cortex. The latest genome-wide association study of schizophrenia identified 108 distinct genomic loci that contribute to schizophrenia. Brain development and function depend on the precise regulation of gene expression. The expression of many genes is differentially regulated across brain regions and developmental time points. We investigated the specific gene expression patterns arising from the 108 schizophrenia-associated loci using multiple publicly available databases and multiple regional brain datasets from developing and adult post-mortem human brains. The temporal-spatial expression analysis revealed that the genes in these loci were intensively enriched in the cortex during several developmental stages. These cortex-specific genes were particularly expressed in the fetal brain and adult neocortex."	"The contribution of Kv2.2-mediated currents decreases during the postnatal development of mouse dorsal root ganglion neurons. Delayed rectifier voltage-gated K(+)(Kv) channels play an important role in the regulation of the electrophysiological properties of neurons. In mouse dorsal root ganglion (DRG) neurons, a large fraction of the delayed rectifier current is carried by both homotetrameric Kv2 channels and heterotetrameric channels consisting of Kv2 and silent Kv (KvS) subunits (i.e., Kv5-Kv6 and Kv8-Kv9). However, little is known about the contribution of Kv2-mediated currents during the postnatal development ofDRGneurons. Here, we report that the Stromatoxin-1 (ScTx)-sensitive fraction of the total outward K(+)current (IK) from mouseDRGneurons gradually decreased (~13%,P &lt; 0.05) during the first month of postnatal development. Because ScTx inhibits both Kv2.1- and Kv2.2-mediated currents, this gradual decrease may reflect a decrease in currents containing either subunit. However, the fraction of Kv2.1 antibody-sensitive current that only reflects the Kv2.1-mediated currents remained constant during that same period. These results suggested that the fractional contribution of Kv2.2-mediated currents relative toIKdecreased with postnatal age. SemiquantitativeRT-PCRanalysis indicated that this decrease can be attributed to developmental changes in Kv2.2 expression as themRNAlevels of the Kv2.2 subunit decreased gradually between 1 and 4 weeks of age. In addition, we observed age-dependent fluctuations in themRNAlevels of the Kv6.3, Kv8.1, Kv9.1, and Kv9.3 subunits. These results support an important role of both Kv2 and KvS subunits in the postnatal maturation ofDRGneurons. "	"Twenty-eight genetic loci associated with ST-T-wave amplitudes of the electrocardiogram. The ST-segment and adjacent T-wave (ST-T wave) amplitudes of the electrocardiogram are quantitative characteristics of cardiac repolarization. Repolarization abnormalities have been linked to ventricular arrhythmias and sudden cardiac death. We performed the first genome-wide association meta-analysis of ST-T-wave amplitudes in up to 37 977 individuals identifying 71 robust genotype-phenotype associations clustered within 28 independent loci. Fifty-four genes were prioritized as candidates underlying the phenotypes, including genes with established roles in the cardiac repolarization phase (SCN5A/SCN10A, KCND3, KCNB1, NOS1AP and HEY2) and others with as yet undefined cardiac function. These associations may provide insights in the spatiotemporal contribution of genetic variation influencing cardiac repolarization and provide novel leads for future functional follow-up."	"Zn(2+) -induced Ca(2+) release via ryanodine receptors triggers calcineurin-dependent redistribution of cortical neuronal Kv2.1 K(+) channels. Increases in intracellular Zn(2+) concentrations are an early, necessary signal for the modulation of Kv2.1 K(+) channel localization and physiological function. Intracellular Zn(2+) -mediated Kv2.1 channel modulation is dependent on calcineurin, a Ca(2+) -activated phosphatase. We show that intracellular Zn(2+) induces a significant increase in ryanodine receptor-dependent cytosolic Ca(2+) transients, which leads to a calcineurin-dependent redistribution of Kv2.1 channels from pre-existing membrane clusters to diffuse localization. As such, the link between Zn(2+) and Ca(2+) signalling in this Kv2.1 modulatory pathway is established. We observe that a sublethal ischaemic preconditioning insult also leads to Kv2.1 redistribution in a ryanodine receptor-dependent fashion. We suggest that Zn(2+) may be an early and ubiquitous signalling molecule mediating Ca(2+) release from the cortical endoplasmic reticulum via ryanodine receptor activation. Sublethal injurious stimuli in neurons induce transient increases in free intracellular Zn(2+) that are associated with regulating adaptive responses to subsequent lethal injury, including alterations in the function and localization of the delayed-rectifier potassium channel, Kv2.1. However, the link between intracellular Zn(2+) signalling and the observed changes in Kv2.1 remain undefined. In the present study, utilizing exogenous Zn(2+) treatment, along with a selective Zn(2+) ionophore, we show that transient elevations in intracellular Zn(2+) concentrations are sufficient to induce calcineurin-dependent Kv2.1 channel dispersal in rat cortical neurons in vitro, which is accompanied by a relatively small but significant hyperpolarizing shift in the voltage-gated activation kinetics of the channel. Critically, using a molecularly encoded calcium sensor, we found that the calcineurin-dependent changes in Kv2.1 probably occur as a result of Zn(2+) -induced cytosolic Ca(2+) release via activation of neuronal ryanodine receptors. Finally, we couple this mechanism with an established model for in vitro ischaemic preconditioning and show that Kv2.1 channel modulation in this process is also ryanodine receptor-sensitive. Our results strongly suggest that intracellular Zn(2+) -initiated signalling may represent an early and possibly widespread component of Ca(2+) -dependent processes in neurons."	"Modulation of the voltage-gated potassium channel Kv2.1 by the anti-tumor alkylphospholipid perifosine. The aim of the present study was to assess the effects of perifosine-a third generation alkylphospholipid analog with anti-tumor properties-on the activity of Kv2.1 channels. The whole-cell patch clamp technique was applied to follow the modulatory effect of perifosine on Kv2.1 channels expressed in HEK293 cells. Obtained data provide evidence that perifosine application decreases the whole cell Kv2.1 currents in a concentration-independent manner. Perifosine induces a hyperpolarizing shift in the voltage dependence of Kv2.1 channels inactivation without altering the voltage dependence of channels activation. The kinetics of Kv2.1 closed-state inactivation was accelerated by perifosine, with no significant effects on the recovery rate from inactivation. Taken together, these results show that perifosine modified the Kv2.1 inactivation gating resulting in a decrease of the current amplitude. These data will help to elucidate the mechanism of action of this promising anti-cancer drug on ion channels and their possible implications."	"Unexplained early onset epileptic encephalopathy: Exome screening and phenotype expansion. Early onset epileptic encephalopathies (EOEEs) represent a significant diagnostic challenge. Newer genomic approaches have begun to elucidate an increasing number of responsible single genes as well as emerging diagnostic strategies. In this single-center study, we aimed to investigate a cohort of children with unexplained EOEE. We performed whole-exome sequencing (WES), targeting a list of 137 epilepsy-associated genes on 50 children with unexplained EOEE. We characterized all phenotypes in detail and classified children according to known electroclinical syndromes where possible. Infants with previous genetic diagnoses, causative brain malformations, or inborn errors of metabolism were excluded. We identified disease-causing variants in 11 children (22%) in the following genes: STXBP1 (n = 3), KCNB1 (n = 2), KCNT1, SCN1A, SCN2A, GRIN2A, DNM1, and KCNA2. We also identified two further variants (in GRIA3 and CPA6) in two children requiring further investigation. Eleven variants were de novo, and in one paternal testing was not possible. Phenotypes were broadened for some variants identified. This study demonstrates that WES is a clinically useful screening tool for previously investigated unexplained EOEE and allows for reanalysis of data as new genes are being discovered. Detailed phenotyping allows for expansion of specific gene disorders leading to epileptic encephalopathy and emerging sub-phenotypes."	"Erratum to: Association of KCNB1 polymorphisms with lipid metabolisms and insulin resistance: a case-control design of population-based cross-sectional study in Chinese Han population. NA"	"Modulation of Closed-State Inactivation in Kv2.1/Kv6.4 Heterotetramers as Mechanism for 4-AP Induced Potentiation. The voltage-gated K+ (Kv) channel subunits Kv2.1 and Kv2.2 are expressed in almost every tissue. The diversity of Kv2 current is increased by interacting with the electrically silent Kv (KvS) subunits Kv5-Kv6 and Kv8-Kv9, into functional heterotetrameric Kv2/KvS channels. These Kv2/KvS channels possess unique biophysical properties and display a more tissue-specific expression pattern, making them more desirable pharmacological and therapeutic targets. However, little is known about the pharmacological properties of these heterotetrameric complexes. We demonstrate that Kv5.1, Kv8.1 and Kv9.3 currents were inhibited differently by the channel blocker 4-aminopyridine (4-AP) compared to Kv2.1 homotetramers. In contrast, Kv6.4 currents were potentiated by 4-AP while displaying moderately increased affinities for the channel pore blockers quinidine and flecainide. We found that the 4-AP induced potentiation of Kv6.4 currents was caused by modulation of the Kv6.4-mediated closed-state inactivation: suppression by 4-AP of the Kv2.1/Kv6.4 closed-state inactivation recovered a population of Kv2.1/Kv6.4 channels that was inactivated at resting conditions, i.e. at a holding potential of -80 mV. This modulation also resulted in a slower initiation and faster recovery from closed-state inactivation. Using chimeric substitutions between Kv6.4 and Kv9.3 subunits, we demonstrated that the lower half of the S6 domain (S6c) plays a crucial role in the 4-AP induced potentiation. These results demonstrate that KvS subunits modify the pharmacological response of Kv2 subunits when assembled in heterotetramers and illustrate the potential of KvS subunits to provide unique pharmacological properties to the heterotetramers, as is the case for 4-AP on Kv2.1/Kv6.4 channels. "	"A novel epileptic encephalopathy mutation in KCNB1 disrupts Kv2.1 ion selectivity, expression, and localization. The epileptic encephalopathies are a group of highly heterogeneous genetic disorders. The majority of disease-causing mutations alter genes encoding voltage-gated ion channels, neurotransmitter receptors, or synaptic proteins. We have identified a novel de novo pathogenic K+ channel variant in an idiopathic epileptic encephalopathy family. Here, we report the effects of this mutation on channel function and heterologous expression in cell lines. We present a case report of infantile epileptic encephalopathy in a young girl, and trio-exome sequencing to determine the genetic etiology of her disorder. The patient was heterozygous for a de novo missense variant in the coding region of the KCNB1 gene, c.1133T&gt;C. The variant encodes a V378A mutation in the α subunit of the Kv2.1 voltage-gated K+ channel, which is expressed at high levels in central neurons and is an important regulator of neuronal excitability. We found that expression of the V378A variant results in voltage-activated currents that are sensitive to the selective Kv2 channel blocker guangxitoxin-1E. These voltage-activated Kv2.1 V378A currents were nonselective among monovalent cations. Striking cell background-dependent differences in expression and subcellular localization of the V378A mutation were observed in heterologous cells. Further, coexpression of V378A subunits and wild-type Kv2.1 subunits reciprocally affects their respective trafficking characteristics. A recent study reported epileptic encephalopathy-linked missense variants that render Kv2.1 a tonically activated, nonselective cation channel that is not voltage activated. Our findings strengthen the correlation between mutations that result in loss of Kv2.1 ion selectivity and development of epileptic encephalopathy. However, the strong voltage sensitivity of currents from the V378A mutant indicates that the loss of voltage-sensitive gating seen in all other reported disease mutants is not required for an epileptic encephalopathy phenotype. In addition to electrophysiological differences, we suggest that defects in expression and subcellular localization of Kv2.1 V378A channels could contribute to the pathophysiology of this KCNB1 variant."	"De novo KCNB1 mutations in infantile epilepsy inhibit repetitive neuronal firing. The voltage-gated Kv2.1 potassium channel encoded by KCNB1 produces the major delayed rectifier potassium current in pyramidal neurons. Recently, de novo heterozygous missense KCNB1 mutations have been identified in three patients with epileptic encephalopathy and a patient with neurodevelopmental disorder. However, the frequency of KCNB1 mutations in infantile epileptic patients and their effects on neuronal activity are yet unknown. We searched whole exome sequencing data of a total of 437 patients with infantile epilepsy, and found novel de novo heterozygous missense KCNB1 mutations in two patients showing psychomotor developmental delay and severe infantile generalized seizures with high-amplitude spike-and-wave electroencephalogram discharges. The mutation located in the channel voltage sensor (p.R306C) disrupted sensitivity and cooperativity of the sensor, while the mutation in the channel pore domain (p.G401R) selectively abolished endogenous Kv2 currents in transfected pyramidal neurons, indicating a dominant-negative effect. Both mutants inhibited repetitive neuronal firing through preventing production of deep interspike voltages. Thus KCNB1 mutations can be a rare genetic cause of infantile epilepsy, and insufficient firing of pyramidal neurons would disturb both development and stability of neuronal circuits, leading to the disease phenotypes. "	"Critical role of Casein kinase 2 in hepatitis C NS5A-mediated inhibition of Kv2.1 K(+) channel function. Inhibiting injury-induced increases in outward K(+) currents is sufficient to block cell death in cortical neuronal injury models. It is now known that apoptosis is facilitated in hepatocytes by the same K(+) channel as in cortical neurons, namely, the delayed rectifier K(+) channel Kv2.1. The hepatitis C virus (HCV) protein NS5A prevents the apoptosis-enabling loss of intracellular potassium by inhibiting Kv2.1 function and thus blocking hepatocyte cell death. Critically, neurons expressing NS5A1b (from HCV genotype 1b), but not NS5A1a, can be protected from lethal injurious stimuli via a block of Kv2.1-mediated potassium currents. Here, we identify a key component unique to NS5A1b, which is necessary for restricting Kv2.1 currents and establishing neuroprotection. By comparing the sequence differences between NS5A1b and 1a we identify putative casein kinase 2 (CK2) phosphorylation regions unique to the 1b genotype. We show that selective inhibition of CK2 in cortical neurons results in loss of NS5A1b's ability to depress outward potassium currents, and, surprisingly, potentiates currents in non-NS5A-expressing cells. As such, our results suggest that NS5A1b-mediated inhibition of Kv2.1 function is critically dependent on its phosphorylation status at genotypic-specific CK2-directed residues. Importantly, inhibiting NS5A viral replicative function with the novel HCV drug Ledipasvir does not impair the ability of this protein to block Kv2.1 function. This suggests that the modulation of NS5A function by CK2 may be a component of HCV unique to the regulation of apoptosis. "	"Cell Cycle-dependent Changes in Localization and Phosphorylation of the Plasma Membrane Kv2.1 K+ Channel Impact Endoplasmic Reticulum Membrane Contact Sites in COS-1 Cells. The plasma membrane (PM) comprises distinct subcellular domains with diverse functions that need to be dynamically coordinated with intracellular events, one of the most impactful being mitosis. The Kv2.1 voltage-gated potassium channel is conditionally localized to large PM clusters that represent specialized PM:endoplasmic reticulum membrane contact sites (PM:ER MCS), and overexpression of Kv2.1 induces more exuberant PM:ER MCS in neurons and in certain heterologous cell types. Localization of Kv2.1 at these contact sites is dynamically regulated by changes in phosphorylation at one or more sites located on its large cytoplasmic C terminus. Here, we show that Kv2.1 expressed in COS-1 cells undergoes dramatic cell cycle-dependent changes in its PM localization, having diffuse localization in interphase cells, and robust clustering during M phase. The mitosis-specific clusters of Kv2.1 are localized to PM:ER MCS, and M phase clustering of Kv2.1 induces more extensive PM:ER MCS. These cell cycle-dependent changes in Kv2.1 localization and the induction of PM:ER MCS are accompanied by increased mitotic Kv2.1 phosphorylation at several C-terminal phosphorylation sites. Phosphorylation of exogenously expressed Kv2.1 is significantly increased upon metaphase arrest in COS-1 and CHO cells, and in a pancreatic β cell line that express endogenous Kv2.1. The M phase clustering of Kv2.1 at PM:ER MCS in COS-1 cells requires the same C-terminal targeting motif needed for conditional Kv2.1 clustering in neurons. The cell cycle-dependent changes in localization and phosphorylation of Kv2.1 were not accompanied by changes in the electrophysiological properties of Kv2.1 expressed in CHO cells. Together, these results provide novel insights into the cell cycle-dependent changes in PM protein localization and phosphorylation. "	"Binding loci of RelA-containing nuclear factor-kappaB dimers in promoter regions of PHM1-31 myometrial smooth muscle cells. Human parturition is associated with many pro-inflammatory mediators which are regulated by the nuclear factor-kappaB (NF-κB) family of transcription factors. In the present study, we employed a ChIP-on-chip approach to define genomic loci within chromatin of PHM1-31 myometrial cells that were occupied by RelA-containing NF-κB dimers in response to a TNF stimulation of 1 h. In TNF-stimulated PHM1-31 cells, anti-RelA serum enriched 13 300 chromatin regions; importantly, 11 110 regions were also enriched by anti-RelA antibodies in the absence of TNF. DNA sequences in these regions, from both unstimulated or TNF-stimulated PHM1-31 cultures, were associated with genic regions including IκBα, COX-2, IL6RN, Jun and KCNMB3. TNF-induced binding events at a consensus κB site numbered 1667; these were represented by 112 different instances of the consensus κB motif. Of the 1667 consensus κB motif occurrences, 770 (46.2%) were identified within intronic regions. In unstimulated PHM1-31 cells, anti-RelA-serum-enriched regions were associated with sequences corresponding to open reading frames of ion channel subunit genes including CACNB3 and KCNB1. Moreover, in unstimulated cells, the consensus κB site was identified 2116 times, being defined by 103 different sequence instances of this motif. Of these 2116 consensus κB motifs, 1089 (51.5%) were identified within intronic regions. Parallel expression array analyses in PHM1-31 cultures demonstrated that TNF stimulated a &gt;2-fold induction in 51 genes and a fold repression of &gt;1.5 in 18 others. We identified 14 anti-RelA-serum-enriched genomic regions that correlated with 17 TNF-inducible genes, such as COX2, Egr-1, Jun, IκBα and IL6, as well as five regions associated with TNF-mediated gene repression, including Col1A2."	"Target of HIV-1 Envelope Glycoprotein gp120-Induced Hippocampal Neuron Damage: Role of Voltage-Gated K(+) Channel Kv2.1. Human immunodeficiency virus type 1 (HIV-1) envelope glycoprotein 120 (gp120) has been reported to be toxic to the hippocampal neurons, and to be involved in the pathogenesis of HIV-1-associated neurocognitive disorders (HAND). Accumulating evidence has demonstrated that voltage-gated potassium (Kv) channels, especially the outward delayed-rectifier K(+) (Ik) channels, play a critical role in gp120-induced cortical neuronal death in vitro. However, the potential mechanisms underlying the hippocampal neuronal injury resulted from gp120-mediated neurotoxicity remain poorly understood. Using whole-cell patch clamp recording in cultured hippocampal neurons, this study found that gp120 significantly increased the outward delayed-rectifier K(+) currents (Ik). Meanwhile, Western blot assay revealed that gp120 markedly upregulated Kv2.1 protein levels, which was consistent with the increased Ik density. With Western blot and terminal deoxynucleotidyl transferase dUTP nick end labeling assays, it was discovered that gp120-induced neuronal injury was largely due to activation of Kv2.1 channels and resultant apoptosis mediated by caspase-3 activation, as the pharmacological blockade of Kv2.1 channels largely attenuated gp120-induced cell damage and caspase-3 expression. Moreover, p38 MAPK was demonstrated to participate in gp120-induced hippocampal neural damage, since p38 MAPK antagonist (SB203580) partially abrogated gp120-induced Kv2.1 upregulation and neural apoptosis. Taken together, these results suggest that gp120 induces hippocampal neuron apoptosis by enhancement of the Ik, which might be associated with increased Kv2.1 expression via the p38 MAPK pathway. "	"Association of KCNB1 polymorphisms with lipid metabolisms and insulin resistance: a case-control design of population-based cross-sectional study in Chinese Han population. In our previous study, we had assessed in the Chinese Han population the association of KCNB1 rs1051295 with metabolic traits indicating metabolic syndrome, and showed that KCNB1 rs1051295 genotype TT was associated with increase of waist to hip ratio (WHR), fasting insulin (FINS), triglycerides (TG) and decreased insulin sensitivity at basal condition. Here, we aimed at detecting whether there were associations between other tag SNPs of KCNB1 and favorable or unfavorable metabolic traits. We conducted a case-control design of population-based cross-sectional study to investigate the association between each of the 22 candidates tag SNPs of KCNB1 and metabolic traits in a population of 733 Chinese Han individuals. The association was assessed by multiple linear regression analysis or unconditional logistic regression analysis. We found that among the 22 selected tag SNPs, four were associated with an increase (rs3331, rs16994565) or decrease (rs237460, rs802950) in serum cholesterol levels; two of these (rs237460, rs802590) further associated or were associated with reduced serum LDL-cholesterol. Two novel tag SNPs (rs926672, rs1051295) were associated with increased serum TG levels. We also showed that KCNB1 rs926672 associated with insulin resistance by a case-control study, and two tag SNPs (rs2057077and rs4810952) of KCNB1 were associated with the measure of insulin resistance (HOMA-IR) in a cross-section study. These results indicate that KCNB1 is likely associated with metabolic traits that may either predispose or protect from progression to metabolic syndrome. This study provides initial evidence that the gene variants of KCNB1, encoding Kv2.1 channel, is associated with perturbation of lipid metabolism and insulin resistance in Chinese Han population."	"Heme Oxygenase-1 Influences Apoptosis via CO-mediated Inhibition of K+ Channels. Hypoxic/ischemic episodes can trigger oxidative stress-mediated loss of central neurons via apoptosis, and low pO2 is also a feature of the tumor microenvironment, where cancer cells are particularly resistant to apoptosis. In the CNS, ischemic insult increases expression of the CO-generating enzyme heme oxygenase-1 (HO-1), which is commonly constitutively active in cancer cells. It has been proposed that apoptosis can be regulated by the trafficking and activity of K(+) channels, particularly Kv2.1. We have explored the idea that HO-1 may influence apoptosis via regulation of Kv2.1. Overexpression of Kv2.1 in HEK293 cells increased their vulnerability to oxidant-induced apoptosis. CO (applied as the donor CORM-2) protected cells against apoptosis and inhibited Kv2.1 channels. Similarly in hippocampal neurones, CO selectively inhibited Kv2.1 and protected neurones against oxidant-induced apoptosis. In medulloblastoma sections we identified constitutive expression of HO-1 and Kv2.1, and in the medulloblastoma-derived cell line DAOY, hypoxic HO-1 induction or exposure to CO protected cells against apoptosis, and also selectively inhibited Kv2.1 channels expressed in these cells. These studies are consistent with a central role for Kv2.1 in apoptosis in both central neurones and cancer cells. They also suggest that HO-1 expression can strongly influence apoptosis via CO-mediated regulation of Kv2.1 activity. "	"Auxiliary KCNE subunits modulate both homotetrameric Kv2.1 and heterotetrameric Kv2.1/Kv6.4 channels. The diversity of the voltage-gated K(+) (Kv) channel subfamily Kv2 is increased by interactions with auxiliary β-subunits and by assembly with members of the modulatory so-called silent Kv subfamilies (Kv5-Kv6 and Kv8-Kv9). However, it has not yet been investigated whether these two types of modulating subunits can associate within and modify a single channel complex simultaneously. Here, we demonstrate that the transmembrane β-subunit KCNE5 modifies the Kv2.1/Kv6.4 current extensively, whereas KCNE2 and KCNE4 only exert minor effects. Co-expression of KCNE5 with Kv2.1 and Kv6.4 did not alter the Kv2.1/Kv6.4 current density but modulated the biophysical properties significantly; KCNE5 accelerated the activation, slowed the deactivation and steepened the slope of the voltage-dependence of the Kv2.1/Kv6.4 inactivation by accelerating recovery of the closed-state inactivation. In contrast, KCNE5 reduced the current density ~2-fold without affecting the biophysical properties of Kv2.1 homotetramers. Co-localization of Kv2.1, Kv6.4 and KCNE5 was demonstrated with immunocytochemistry and formation of Kv2.1/Kv6.4/KCNE5 and Kv2.1/KCNE5 complexes was confirmed by Fluorescence Resonance Energy Transfer experiments performed in HEK293 cells. These results suggest that a triple complex consisting of Kv2.1, Kv6.4 and KCNE5 subunits can be formed. In vivo, formation of such tripartite Kv2.1/Kv6.4/KCNE5 channel complexes might contribute to tissue-specific fine-tuning of excitability. "	"AMIGO-Kv2.1 Potassium Channel Complex Is Associated With Schizophrenia-Related Phenotypes. The enormous variability in electrical properties of neurons is largely affected by a multitude of potassium channel subunits. Kv2.1 is a widely expressed voltage-dependent potassium channel and an important regulator of neuronal excitability. The Kv2.1 auxiliary subunit AMIGO constitutes an integral part of the Kv2.1 channel complex in brain and regulates the activity of the channel. AMIGO and Kv2.1 localize to the distinct somatodendritic clusters at the neuronal plasma membrane. Here we have created and characterized a mouse line lacking the AMIGO gene. Absence of AMIGO clearly reduced the amount of the Kv2.1 channel protein in mouse brain and altered the electrophysiological properties of neurons. These changes were accompanied by behavioral and pharmacological abnormalities reminiscent of those identified in schizophrenia. Concomitantly, we have detected an association of a rare, population-specific polymorphism of KV2.1 (KCNB1) with human schizophrenia in a genetic isolate enriched with schizophrenia. Our study demonstrates the involvement of AMIGO-Kv2.1 channel complex in schizophrenia-related behavioral domains in mice and identifies KV2.1 (KCNB1) as a strong susceptibility gene for schizophrenia spectrum disorders in humans. "	"Genome-Wide Association Identifies SLC2A9 and NLN Gene Regions as Associated with Entropion in Domestic Sheep. Entropion is an inward rolling of the eyelid allowing contact between the eyelashes and cornea that may lead to blindness if not corrected. Although many mammalian species, including humans and dogs, are afflicted by congenital entropion, no specific genes or gene regions related to development of entropion have been reported in any mammalian species to date. Entropion in domestic sheep is known to have a genetic component therefore, we used domestic sheep as a model system to identify genomic regions containing genes associated with entropion. A genome-wide association was conducted with congenital entropion in 998 Columbia, Polypay, and Rambouillet sheep genotyped with 50,000 SNP markers. Prevalence of entropion was 6.01%, with all breeds represented. Logistic regression was performed in PLINK with additive allelic, recessive, dominant, and genotypic inheritance models. Two genome-wide significant (empirical P&lt;0.05) SNP were identified, specifically markers in SLC2A9 (empirical P = 0.007; genotypic model) and near NLN (empirical P = 0.026; dominance model). Six additional genome-wide suggestive SNP (nominal P&lt;1x10(-5)) were identified including markers in or near PIK3CB (P = 2.22x10(-6); additive model), KCNB1 (P = 2.93x10(-6); dominance model), ZC3H12C (P = 3.25x10(-6); genotypic model), JPH1 (P = 4.68x20(-6); genotypic model), and MYO3B (P = 5.74x10(-6); recessive model). This is the first report of specific gene regions associated with congenital entropion in any mammalian species, to our knowledge. Further, none of these genes have previously been associated with any eyelid traits. These results represent the first genome-wide analysis of gene regions associated with entropion and provide target regions for the development of sheep genetic markers for marker-assisted selection."	"Researchers discover genetic cause of rare type of epilepsy. NA"	"THE INHIBITORY EFFECT OF PACLITAXEL ON (Kv2.1) K+ CURRENT IN H9c2 CELLS. Using the whole-cell voltage clamp technique, we investigated the effect of paclitaxel, an anticancer agent which promotes microtubule formation, on K(+) current in H9c2 cells originated from rat embryonic cardiac myocytes. Paclitaxel inhibited Kv2.1 voltage-dependent K(+) current (IKur) with ultra-rapidly activating and slowly inactivating kinetics in a concentration-dependent manner. The inhibitory effect of paclitaxel on IKur was time-dependent and more marked at 200 ms after the onset than at the beginning of the depolarizing pulse. The IC50 value of paclitaxel was 1.1 µM at 200 ms. The time-dependent inhibition suggests that paclitaxel might be an open channel blocker of Kv2.1. This inhibition of Kv2.1 may be involved in the adverse effects of paclitaxel on cardiac and neuronal cells. "	"Tarantula toxins use common surfaces for interacting with Kv and ASIC ion channels. Tarantula toxins that bind to voltage-sensing domains of voltage-activated ion channels are thought to partition into the membrane and bind to the channel within the bilayer. While no structures of a voltage-sensor toxin bound to a channel have been solved, a structural homolog, psalmotoxin (PcTx1), was recently crystalized in complex with the extracellular domain of an acid sensing ion channel (ASIC). In the present study we use spectroscopic, biophysical and computational approaches to compare membrane interaction properties and channel binding surfaces of PcTx1 with the voltage-sensor toxin guangxitoxin (GxTx-1E). Our results show that both types of tarantula toxins interact with membranes, but that voltage-sensor toxins partition deeper into the bilayer. In addition, our results suggest that tarantula toxins have evolved a similar concave surface for clamping onto α-helices that is effective in aqueous or lipidic physical environments. "	"Induction of stable ER-plasma-membrane junctions by Kv2.1 potassium channels. Junctions between cortical endoplasmic reticulum (cER) and the plasma membrane are a subtle but ubiquitous feature in mammalian cells; however, very little is known about the functions and molecular interactions that are associated with neuronal ER-plasma-membrane junctions. Here, we report that Kv2.1 (also known as KCNB1), the primary delayed-rectifier K(+) channel in the mammalian brain, induces the formation of ER-plasma-membrane junctions. Kv2.1 localizes to dense, cell-surface clusters that contain non-conducting channels, indicating that they have a function that is unrelated to membrane-potential regulation. Accordingly, Kv2.1 clusters function as membrane-trafficking hubs, providing platforms for delivery and retrieval of multiple membrane proteins. Using both total internal reflection fluorescence and electron microscopy we demonstrate that the clustered Kv2.1 plays a direct structural role in the induction of stable ER-plasma-membrane junctions in both transfected HEK 293 cells and cultured hippocampal neurons. Glutamate exposure results in a loss of Kv2.1 clusters in neurons and subsequent retraction of the cER from the plasma membrane. We propose Kv2.1-induced ER-plasma-membrane junctions represent a new macromolecular plasma-membrane complex that is sensitive to excitotoxic insult and functions as a scaffolding site for both membrane trafficking and Ca(2+) signaling. "	"Uremic retention solute indoxyl sulfate level is associated with prolonged QTc interval in early CKD patients. Total mortality and sudden cardiac death is highly prevalent in patients with chronic kidney disease (CKD). In CKD patients, the protein-bound uremic retention solute indoxyl sulfate (IS) is independently associated with cardiovascular disease. However, the underlying mechanisms of this association have yet to be elucidated. The relationship between IS and cardiac electrocardiographic parameters was investigated in a prospective observational study among early CKD patients. IS arrhythmogenic effect was evaluated by in vitro cardiomyocyte electrophysiological study and mathematical computer simulation. In a cohort of 100 early CKD patients, patients with corrected QT (QTc) prolongation had higher IS levels. Furthermore, serum IS level was independently associated with prolonged QTc interval. In vitro, the delay rectifier potassium current (IK) was found to be significantly decreased after the treatment of IS in a dose-dependent manner. The modulation of IS to the IK was through the regulation of the major potassium ion channel protein Kv 2.1 phosphorylation. In a computer simulation, the decrease of IK by IS could prolong the action potential duration (APD) and induce early afterdepolarization, which is known to be a trigger mechanism of lethal ventricular arrhythmias. In conclusion, serum IS level is independently associated with the prolonged QTc interval in early CKD patients. IS down-regulated IK channel protein phosphorylation and the IK current activity that in turn increased the cardiomyocyte APD and QTc interval in vitro and in the computer ORd model. These findings suggest that IS may play a role in the development of arrhythmogenesis in CKD patients. "	"Selective down-regulation of KV2.1 function contributes to enhanced arterial tone during diabetes. Enhanced arterial tone is a leading cause of vascular complications during diabetes. Voltage-gated K(+) (KV) channels are key regulators of vascular smooth muscle cells (VSMCs) contractility and arterial tone. Whether impaired KV channel function contributes to enhance arterial tone during diabetes is unclear. Here, we demonstrate a reduction in KV-mediated currents (IKv) in VSMCs from a high fat diet (HFD) mouse model of type 2 diabetes. In particular, IKv sensitive to stromatoxin (ScTx), a potent KV2 blocker, were selectively reduced in diabetic VSMCs. This was associated with decreased KV2-mediated regulation of arterial tone and suppression of the KV2.1 subunit mRNA and protein in VSMCs/arteries isolated from HFD mice. We identified protein kinase A anchoring protein 150 (AKAP150), via targeting of the phosphatase calcineurin (CaN), and the transcription factor nuclear factor of activated T-cells c3 (NFATc3) as required determinants of KV2.1 suppression during diabetes. Interestingly, substantial reduction in transcript levels for KV2.1 preceded down-regulation of large conductance Ca(2+)-activated K(+) (BKCa) channel β1 subunits, which are ultimately suppressed in chronic hyperglycemia to a similar extent. Together, our study supports the concept that transcriptional suppression of KV2.1 by activation of the AKAP150-CaN/NFATc3 signaling axis contributes to enhanced arterial tone during diabetes. "	"Jingzhaotoxin-35, a novel gating-modifier toxin targeting both Nav1.5 and Kv2.1 channels. Jingzhaotoxin-35 (JZTX-35), a 36-residue polypeptide, was purified from the venom of the Chinese tarantula Chilobrachys jingzhao. JZTX-35 inhibited Nav1.5 and Kv2.1 currents with the IC50 value of 1.07 μM and 3.62 μM, respectively, but showed no significant effect on either Na(+) currents or Ca(2+) currents evoked in hippocampal neurons. It shifted the activation of the Nav1.5 and Kv2.1 channels to more depolarized voltages, and markedly shifted the steady-state inactivation of Nav1.5 currents toward more hyperpolarized potentials. Moreover, JZTX-35 can bind to a close state of Nav1.5 and Kv2.1 channels. These results indicate that JZTX-35 is a new gating modifier toxin. JZTX-35 shares high sequence similarity with Jingzhaotoxins (JZTXs) targeting Nav1.5 or Kv2.1 channels, but they showed different ion channel selectivity. Structure-function analysis in this study would provide important clues for the exploration of ion channel selectivity of JZTXs. "	"Partial blockade of Kv2.1 channel potentiates GLP-1's insulinotropic effects in islets and reduces its dose required for improving glucose tolerance in type 2 diabetic male mice. Glucagon-like peptide-1 (GLP-1)-based medicines have recently been widely used to treat type 2 diabetic patients, whereas adverse effects of nausea and vomiting have been documented. Inhibition of voltage-gated K(+) channel subtype Kv2.1 in pancreatic β-cells has been suggested to contribute to mild depolarization and promotion of insulin release. This study aimed to determine whether the blockade of Kv2.1 channels potentiates the insulinotropic effect of GLP-1 agonists. Kv2.1 channel blocker guangxitoxin-1E (GxTx) and GLP-1 agonist exendin-4 at subthreshold concentrations, when combined, markedly increased the insulin release and cytosolic Ca(2+) concentration ([Ca(2+)]i) in a glucose-dependent manner in mouse islets and β-cells. Exendin-4 at subthreshold concentration alone increased islet insulin release and β-cell [Ca(2+)]i in Kv2.1(+/-) mice. The [Ca(2+)]i response to subthreshold exendin-4 and GxTx in combination was attenuated by pretreatment with protein kinase A inhibitor H-89, indicating the protein kinase A dependency of the cooperative effect. Furthermore, subthreshold doses of GxTx and GLP-1 agonist liraglutide in combination markedly increased plasma insulin and improved glucose tolerance in diabetic db/db mice and NSY mice. These results demonstrate that a modest suppression of Kv2.1 channels dramatically raises insulinotropic potency of GLP-1-based drugs, which opens a new avenue to reduce their doses and associated adverse effects while achieving the same glycemic control in type 2 diabetes."	"Chemoselective tarantula toxins report voltage activation of wild-type ion channels in live cells. Electrically excitable cells, such as neurons, exhibit tremendous diversity in their firing patterns, a consequence of the complex collection of ion channels present in any specific cell. Although numerous methods are capable of measuring cellular electrical signals, understanding which types of ion channels give rise to these signals remains a significant challenge. Here, we describe exogenous probes which use a novel mechanism to report activity of voltage-gated channels. We have synthesized chemoselective derivatives of the tarantula toxin guangxitoxin-1E (GxTX), an inhibitory cystine knot peptide that binds selectively to Kv2-type voltage gated potassium channels. We find that voltage activation of Kv2.1 channels triggers GxTX dissociation, and thus GxTX binding dynamically marks Kv2 activation. We identify GxTX residues that can be replaced by thiol- or alkyne-bearing amino acids, without disrupting toxin folding or activity, and chemoselectively ligate fluorophores or affinity probes to these sites. We find that GxTX-fluorophore conjugates colocalize with Kv2.1 clusters in live cells and are released from channels activated by voltage stimuli. Kv2.1 activation can be detected with concentrations of probe that have a trivial impact on cellular currents. Chemoselective GxTX mutants conjugated to dendrimeric beads likewise bind live cells expressing Kv2.1, and the beads are released by channel activation. These optical sensors of conformational change are prototype probes that can indicate when ion channels contribute to electrical signaling. "	"Domain structure and conformational changes in rat KV2.1 ion channel. Voltage-gated potassium Kv2.1 channels are widely distributed in the central nervous system, specifically in neuroendocrine and endocrine cells. Their cytoplasmic C-termini are large and carry out many important functions. Here we provide the first direct structural evidence that each C-terminal part within the Kv2.1 ion channel is formed by two distinct domains (Kv2 and CTA). We expressed and purified two C-terminal truncation mutants of a rat Kv2.1 channel, lacking the entire C-termini or the CTA domain. Single particle electron microscopy was used to obtain three-dimensional reconstructions of purified C-terminal Kv2.1 mutants at 2.0 and 2.4 nm resolution. Comparison of these structures to each other and to the low-resolution EM structure of the full-length Kv2.1 channel revealed the exact locations of cytoplasmic Kv2 and CTA domains within the tetramer. Four Kv2 domains envelop the N-terminal T1 domain. The tetramer of the CTA domains underlies the Kv2-T1 complex and may also affect the channel's surface expression. Subsequent molecular dynamics simulation and homology modeling produced open and closed structural models of the membrane part of the Kv2.1 channel."	"(±)3,4-methylenedioxyamphetamine inhibits the TEA-sensitive K⁺ current in the hippocampal neuron and the Kv2.1 current expressed in H1355 cells. The whole-cell patch clamp method was used to study the effects of (±)3,4-methylenedioxyamphetamine (MDA) in hippocampal CA1 neurons from neonatal rats and in lung epithelial H1355 cells expressing Kv2.1. Extracellular application of MDA (30 μM) induced bursts of action potentials in hippocampal CA1 neurons exhibiting single spike action potentials without a bursting firing pattern, and promoted action potential bursts in hippocampal CA1 neurons exhibiting bursting firing of action potentials. Whereas MDA (30 and 100 μM) markedly decreased the delayed outward current in hippocampal CA1 neurons, MDA (100 μM) only slightly decreased the fast-inactivating K(+) current (I(A)) current. Furthermore, MDA (100 μM) substantially decreased the delayed outward current in the presence of 4-aminopyridine (4-AP; 3 mM), but did not significantly decrease the delayed outward current in the presence of tetraethylammonium (TEA; 30 mM). MDA (100 μM) also inhibited the current in H1355 cells expressing Kv2.1. Our results have shown that MDA inhibits the TEA-sensitive K(+) current in the hippocampus and the Kv2.1 current expressed in H1355 cells. These effects may contribute to the pharmacological and toxicological effects of MDA."	"Potassium channel Kv2.1 is regulated through protein phosphatase-1 in response to increases in synaptic activity. The functional stability of neurons in the face of large variations in both activity and efficacy of synaptic connections suggests that neurons possess intrinsic negative feedback mechanisms to balance and tune excitability. While NMDA receptors have been established to play an important role in glutamate receptor-dependent plasticity through protein dephosphorylation, the effects of synaptic activation on intrinsic excitability are less well characterized. We show that increases in synaptic activity result in dephosphorylation of the potassium channel subunit Kv2.1. This dephosphorylation is induced through NMDA receptors and is executed through protein phosphatase-1 (PP1), an enzyme previously established to play a key role in regulating ligand gated ion channels in synaptic plasticity. Dephosphorylation of Kv2.1 by PP1 in response to synaptic activity results in substantial shifts in the inactivation curve of IK, resulting in a reduction in intrinsic excitability, facilitating negative feedback to neuronal excitability. "	"De novo KCNB1 mutations in epileptic encephalopathy. Numerous studies have demonstrated increased load of de novo copy number variants or single nucleotide variants in individuals with neurodevelopmental disorders, including epileptic encephalopathies, intellectual disability, and autism. We searched for de novo mutations in a family quartet with a sporadic case of epileptic encephalopathy with no known etiology to determine the underlying cause using high-coverage whole exome sequencing (WES) and lower-coverage whole genome sequencing. Mutations in additional patients were identified by WES. The effect of mutations on protein function was assessed in a heterologous expression system. We identified a de novo missense mutation in KCNB1 that encodes the KV 2.1 voltage-gated potassium channel. Functional studies demonstrated a deleterious effect of the mutation on KV 2.1 function leading to a loss of ion selectivity and gain of a depolarizing inward cation conductance. Subsequently, we identified 2 additional patients with epileptic encephalopathy and de novo KCNB1 missense mutations that cause a similar pattern of KV 2.1 dysfunction. Our genetic and functional evidence demonstrate that KCNB1 mutation can result in early onset epileptic encephalopathy. This expands the locus heterogeneity associated with epileptic encephalopathies and suggests that clinical WES may be useful for diagnosis of epileptic encephalopathies of unknown etiology."	"High temperature sensitivity is intrinsic to voltage-gated potassium channels. Temperature-sensitive transient receptor potential (TRP) ion channels are members of the large tetrameric cation channels superfamily but are considered to be uniquely sensitive to heat, which has been presumed to be due to the existence of an unidentified temperature-sensing domain. Here we report that the homologous voltage-gated potassium (Kv) channels also exhibit high temperature sensitivity comparable to that of TRPV1, which is detectable under specific conditions when the voltage sensor is functionally decoupled from the activation gate through either intrinsic mechanisms or mutations. Interestingly, mutations could tune Shaker channel to be either heat-activated or heat-deactivated. Therefore, high temperature sensitivity is intrinsic to both TRP and Kv channels. Our findings suggest important physiological roles of heat-induced variation in Kv channel activities. Mechanistically our findings indicate that temperature-sensing TRP channels may not contain a specialized heat-sensor domain; instead, non-obligatory allosteric gating permits the intrinsic heat sensitivity to drive channel activation, allowing temperature-sensitive TRP channels to function as polymodal nociceptors."	"Dynamics of hERG closure allow novel insights into hERG blocking by small molecules. Today, drug discovery routinely uses experimental assays to determine very early if a lead compound can yield certain types of off-target activity. Among such off targets is hERG. The ion channel plays a primordial role in membrane repolarization and altering its activity can cause severe heart arrhythmia and sudden death. Despite routine tests for hERG activity, rather little information is available for helping medicinal chemists and molecular modelers to rationally circumvent hERG activity. In this article novel insights into the dynamics of hERG channel closure are described. Notably, helical pairwise closure movements have been observed. Implications and relations to hERG inactivation are presented. Based on these dynamics novel insights on hERG blocker placement are presented, compared to literature, and discussed. Last, new evidence for horizontal ligand positioning is shown in light of former studies on hERG blockers. "	"Oxidation of KCNB1 K(+) channels in central nervous system and beyond. KCNB1, a voltage-gated potassium (K(+)) channel that conducts a major delayed rectifier current in the brain, pancreas and cardiovascular system is a key player in apoptotic programs associated with oxidative stress. As a result, this protein represents a bona fide drug target for limiting the toxic effects of oxygen radicals. Until recently the consensus view was that reactive oxygen species trigger a pro-apoptotic surge in KCNB1 current via phosphorylation and SNARE-dependent incorporation of KCNB1 channels into the plasma membrane. However, new evidence shows that KCNB1 can be modified by oxidants and that oxidized KCNB1 channels can directly activate pro-apoptotic signaling pathways. Hence, a more articulated picture of the pro-apoptotic role of KCNB1 is emerging in which the protein induces cell's death through distinct molecular mechanisms and activation of multiple pathways. In this review article we discuss the diverse functional, toxic and protective roles that KCNB1 channels play in the major organs where they are expressed. "	"Electrophysiological and morphological maturation of murine fetal cardiomyocytes during electrical stimulation in vitro. The aim of this study was to investigate whether continuous electrical stimulation affects electrophysiological properties and cell morphology of fetal cardiomyocytes (FCMs) in culture. Fetal cardiomyocytes at day 14.5 post coitum were harvested from murine hearts and electrically stimulated for 6 days in culture using a custom-made stimulation chamber. Subsequently, action potentials of FCM were recorded with glass microelectrodes. Immunostainings of α-Actinin, connexin 43, and vinculin were performed. Expression of ion channel subunits Kcnd2, Slc8a1, Cacna1, Kcnh2, and Kcnb1 was analyzed by quantitative reverse-transcriptase polymerase chain reaction. Action potential duration to 50% and 90% repolarization (APD50 and APD90) of electrically stimulated FCMs were significantly decreased when compared to nonstimulated control FCM. Alignment of cells was significantly higher in stimulated FCM when compared to control FCM. The expression of connexin 43 was significantly increased in stimulated FCM when compared to control FCM. The ratio between cell length and cell width of the stimulated FCM was significantly higher than in control FCM. Kcnh2 and Kcnd2 were upregulated in stimulated FCM when compared to control FCM. Expression of Slc8a1, Cacna1c, and Kcnb1 was not different in stimulated and control FCMs. The decrease in APD50 observed after electrical stimulation of FCM in vitro corresponds to the electrophysiological maturation of FCM in vivo. Expression levels of ion channels suggest that some important but not all aspects of the complex process of electrophysiological maturation are promoted by electrical stimulation. Parallel alignment, increased connexin 43 expression, and elongation of FCM are signs of a morphological maturation induced by electrical stimulation. "	"Effects of a sucrose-enriched diet on the pattern of gene expression, contraction and Ca(2+) transport in Goto-Kakizaki type 2 diabetic rat heart. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus (T2DM), and cardiovascular disease is the major cause of morbidity and mortality in diabetic patients. A variety of diastolic and systolic dysfunctions have been demonstrated in type 2 diabetic heart. The consumption of sugar-sweetened beverages has been linked to rising rates of obesity, which in turn is a risk factor for development of T2DM. In this study, the effects of a sucrose-enriched diet on the pattern of gene expression, contraction and Ca(2+) transport in the Goto-Kakizaki T2DM rat heart were investigated. Genes encoding cardiac muscle proteins (Myh7, Mybpc3, Myl1, Myl3 and Mylpf), intercellular proteins (Gja4), cell membrane transport (Atp1b1), calcium channels (Cacna1c, Cacna1g and Cacnb1) and potassium channels (Kcnj11) were upregulated and genes encoding potassium channels (Kcnb1) were downregulated in GK compared with control rats. Genes encoding cardiac muscle proteins (Myh6, Mybpc3 and Tnn2), intercellular proteins (Gja1 and Gja4), intracellular Ca(2+) transport (Atp2a1 and Ryr2), cell membrane transport (Atp1a2 and Atp1b1) and potassium channel proteins (Kcnj2 and Kcnj8) were upregulated and genes encoding cardiac muscle proteins (Myh7) were downregulated in control rats fed sucrose compared with control rats. Genes encoding cardiac muscle proteins (Myh7) and potassium channel proteins (Kcnj11) were downregulated in control and GK rats fed sucrose compared with control and GK rats, respectively. The amplitude of shortening was reduced in myocytes from the control-sucrose group compared with control rats and in the GK-sucrose group compared with GK rats. The amplitude of the Ca(2+) transient was increased in myocytes from control-sucrose compared with control rats and decreased in GK-sucrose compared with GK rats. Subtle alterations in the pattern of expression of genes encoding a variety of cardiac muscle proteins are associated with changes in shortening and intracellular Ca(2+) transport in ventricular myocytes from GK T2DM and control rats fed a sucrose-enriched diet."	"The inhibitory effect of shakuyakukanzoto on K+ current in H9c2 cells. Shakuyakukanzoto (shao-yao-gan-cao-tang) is a commonly used Chinese traditional herbal medicine for the treatment of acute pain with muscle cramp. However, its mechanism of action is unclear. We previously reported that a low concentration of Kanzo (licorice) and isoliquiritigenin, a component of licorice, inhibited the potassium (K(+)) current in H9c2 cells. Therefore, in the present study, we examined the effects of Shakuyakukanzoto, Shakuyaku or Kanzo on the K(+) current (IKur) in H9c2 cells. Shakuyakukanzoto inhibited IKur in a concentration-dependent manner. The half-maximal concentration of Shakuyakukanzoto was approximately 1.3 mg/mL and the Hill coefficient was 1.2. The order of potency of inhibiting IKur was Kanzo&gt;Shakuyakukanzoto&gt;Shakuyaku. Glycyrrhizin, a major component of licorice, had no inhibitory effect on IKur. A small interfering RNA experiment indicated that IKur was most likely to be Kv2.1 in H9c2 cells. Our results suggest that Shakuyakukanzoto may normalize intracellular and extracellular K(+) balance by inhibiting IKur and reducing K(+) efflux, while the Na(+)-K(+) pump promotes K(+) influx into myofibers. Consequently, excess K(+) may be reduced from external space of myofibers. This may be a part of the Shakuyakukanzoto mechanism for improving muscle pain. "	"GDF15 regulates Kv2.1-mediated outward K+ current through the Akt/mTOR signalling pathway in rat cerebellar granule cells. GDF15 (growth/differentiation factor 15), a novel member of the TGFβ (transforming growth factor β) superfamily, plays critical roles in the central and peripheral nervous systems, but the signal transduction pathways and receptor subtypes involved are not well understood. In the present paper, we report that GDF15 specifically increases the IK (delayed-rectifier outward K+ current) in rat CGNs (cerebellar granule neurons) in time- and concentration-dependent manners. The GDF15-induced amplification of the IK is mediated by the increased expression and reduced lysosome-dependent degradation of the Kv2.1 protein, the main α-subunit of the IK channel. Exposure of CGNs to GDF15 markedly induced the phosphorylation of ERK (extracellular-signal-regulated kinase), Akt and mTOR (mammalian target of rapamycin), but the GDF15-induced IK densities and increased expression of Kv2.1 were attenuated only by Akt and mTOR, and not ERK, inhibitors. Pharmacological inhibition of the Src-mediated phosphorylation of TGFβR2 (TGFβ receptor 2), not TGFβR1, abrogated the effect of GDF15 on IK amplification and Kv2.1 induction. Immunoprecipitation assays showed that GDF15 increased the tyrosine phosphorylation of TGFβRII in the CGN lysate. The results of the present study reveal a novel regulation of Kv2.1 by GDF15 mediated through the TGFβRII-activated Akt/mTOR pathway, which is a previously uncharacterized Smad-independent mechanism of GDF15 signalling. "	"Specific sorting and post-Golgi trafficking of dendritic potassium channels in living neurons. Proper membrane localization of ion channels is essential for the function of neuronal cells. Particularly, the computational ability of dendrites depends on the localization of different ion channels in specific subcompartments. However, the molecular mechanisms that control ion channel localization in distinct dendritic subcompartments are largely unknown. Here, we developed a quantitative live cell imaging method to analyze protein sorting and post-Golgi vesicular trafficking. We focused on two dendritic voltage-gated potassium channels that exhibit distinct localizations: Kv2.1 in proximal dendrites and Kv4.2 in distal dendrites. Our results show that Kv2.1 and Kv4.2 channels are sorted into two distinct populations of vesicles at the Golgi apparatus. The targeting of Kv2.1 and Kv4.2 vesicles occurred by distinct mechanisms as evidenced by their requirement for specific peptide motifs, cytoskeletal elements, and motor proteins. By live cell and super-resolution imaging, we identified a novel trafficking machinery important for the localization of Kv2.1 channels. Particularly, we identified non-muscle myosin II as an important factor in Kv2.1 trafficking. These findings reveal that the sorting of ion channels at the Golgi apparatus and their subsequent trafficking by unique molecular mechanisms are crucial for their specific localizations within dendrites. "	"Deletion of the Kv2.1 delayed rectifier potassium channel leads to neuronal and behavioral hyperexcitability. The Kv2.1 delayed rectifier potassium channel exhibits high-level expression in both principal and inhibitory neurons throughout the central nervous system, including prominent expression in hippocampal neurons. Studies of in vitro preparations suggest that Kv2.1 is a key yet conditional regulator of intrinsic neuronal excitability, mediated by changes in Kv2.1 expression, localization and function via activity-dependent regulation of Kv2.1 phosphorylation. Here we identify neurological and behavioral deficits in mutant (Kv2.1(-/-) ) mice lacking this channel. Kv2.1(-/-) mice have grossly normal characteristics. No impairment in vision or motor coordination was apparent, although Kv2.1(-/-) mice exhibit reduced body weight. The anatomic structure and expression of related Kv channels in the brains of Kv2.1(-/-) mice appear unchanged. Delayed rectifier potassium current is diminished in hippocampal neurons cultured from Kv2.1(-/-) animals. Field recordings from hippocampal slices of Kv2.1(-/-) mice reveal hyperexcitability in response to the convulsant bicuculline, and epileptiform activity in response to stimulation. In Kv2.1(-/-) mice, long-term potentiation at the Schaffer collateral - CA1 synapse is decreased. Kv2.1(-/-) mice are strikingly hyperactive, and exhibit defects in spatial learning, failing to improve performance in a Morris Water Maze task. Kv2.1(-/-) mice are hypersensitive to the effects of the convulsants flurothyl and pilocarpine, consistent with a role for Kv2.1 as a conditional suppressor of neuronal activity. Although not prone to spontaneous seizures, Kv2.1(-/-) mice exhibit accelerated seizure progression. Together, these findings suggest homeostatic suppression of elevated neuronal activity by Kv2.1 plays a central role in regulating neuronal network function."	"A unique ion channel clustering domain on the axon initial segment of mammalian neurons. The axon initial segment (AIS) plays a key role in initiation of action potentials and neuronal output. The plasma membrane of the AIS contains high densities of voltage-gated ion channels required for these electrical events, and much recent work has focused on defining the mechanisms for generating and maintaining this unique neuronal plasma membrane domain. The Kv2.1 voltage-gated potassium channel is abundantly present in large clusters on the soma and proximal dendrites of mammalian brain neurons. Kv2.1 is also a component of the ion channel repertoire at the AIS. Here we show that Kv2.1 clusters on the AIS of brain neurons across diverse mammalian species including humans define a noncanonical ion channel clustering domain deficient in Ankyrin-G. The sites of Kv2.1 clustering on the AIS are sites where cisternal organelles, specialized intracellular calcium release membranes, come into close apposition with the plasma membrane, and are also sites of clustering of γ-aminobutyric acid (GABA)ergic synapses. Using an antibody specific for a single Kv2.1 phosphorylation site, we find that the phosphorylation state differs between Kv2.1 clusters on the proximal and distal portions of the AIS. Together, these studies show that the sites of Kv2.1 clustering on the AIS represent specialized domains containing components of diverse neuronal signaling pathways that may contribute to local regulation of Kv2.1 function and AIS membrane excitability."	"Plasma gelsolin protects HIV-1 gp120-induced neuronal injury via voltage-gated K+ channel Kv2.1. Plasma gelsolin (pGSN), a secreted form of gelsolin, is constitutively expressed throughout the central nervous system (CNS). The neurons, astrocytes and oligodendrocytes are the major sources of pGSN in the CNS. It has been shown that levels of pGSN in the cerebrospinal fluid (CSF) are decreased in several neurological conditions including HIV-1-associated neurocognitive disorders (HAND). Although there is no direct evidence that a decreased level of pGSN in CSF is causally related to the pathogenesis of neurological disorders, neural cells, if lacking pGSN, are more vulnerable to cell death. To understand how GSN levels relate to neuronal injury in HAND, we studied the effects of pGSN on HIV-1 gp120-activated outward K+ currents in primary rat cortical neuronal cultures. Incubation of rat cortical neurons with gp120 enhanced the outward K+ currents induced by voltage steps and resulted in neuronal apoptosis. Treatment with pGSN suppressed the gp120-induced increase of delayed rectifier current (IK) and reduced vulnerability to gp120-induced neuronal apoptosis. Application of Guangxitoxin-1E (GxTx), a Kv2.1 specific channel inhibitor, inhibited gp120 enhancement of IK and associated neuronal apoptosis, similar effects to pGSN. Western blot and PCR analysis revealed gp120 exposure to up-regulate Kv2.1 channel expression, which was also inhibited by treatment with pGSN. Taken together, these results indicate pGSN protects neurons by suppressing gp120 enhancement of IK through Kv2.1 channels and reduction of pGSN in HIV-1-infected brain may contribute to HIV-1-associated neuropathy."	"Redistribution of Kv2.1 ion channels on spinal motoneurons following peripheral nerve injury. Pathophysiological responses to peripheral nerve injury include alterations in the activity, intrinsic membrane properties and excitability of spinal neurons. The intrinsic excitability of α-motoneurons is controlled in part by the expression, regulation, and distribution of membrane-bound ion channels. Ion channels, such as Kv2.1 and SK, which underlie delayed rectifier potassium currents and afterhyperpolarization respectively, are localized in high-density clusters at specific postsynaptic sites (Deardorff et al., 2013; Muennich and Fyffe, 2004). Previous work has indicated that Kv2.1 channel clustering and kinetics are regulated by a variety of stimuli including ischemia, hypoxia, neuromodulator action and increased activity. Regulation occurs via channel dephosphorylation leading to both declustering and alterations in channel kinetics, thus normalizing activity (Misonou et al., 2004; Misonou et al., 2005; Misonou et al., 2008; Mohapatra et al., 2009; Park et al., 2006). Here we demonstrate using immunohistochemistry that peripheral nerve injury is also sufficient to alter the surface distribution of Kv2.1 channels on motoneurons. The dynamic changes in channel localization include a rapid progressive decline in cluster size, beginning immediately after axotomy, and reaching maximum within one week. With reinnervation, the organization and size of Kv2.1 clusters do not fully recover. However, in the absence of reinnervation Kv2.1 cluster sizes fully recover. Moreover, unilateral peripheral nerve injury evokes parallel, but smaller effects bilaterally. These results suggest that homeostatic regulation of motoneuron Kv2.1 membrane distribution after axon injury is largely independent of axon reinnervation. "	"Thalamic neuropeptide mediating the effects of nursing on lactation and maternal motivation. Nursing has important physiological and psychological consequences on mothers during the postpartum period. Tuberoinfundibular peptide of 39 residues (TIP39) may contribute to its effects on prolactin release and maternal motivation. Since TIP39-containing fibers and the receptor for TIP39, the parathyroid hormone 2 receptor (PTH2 receptor) are abundant in the arcuate nucleus and the medial preoptic area, we antagonized TIP39 action locally to reveal its actions. Mediobasal hypothalamic injection of a virus encoding an antagonist of the PTH2 receptor markedly decreased basal serum prolactin levels and the suckling-induced prolactin release. In contrast, injecting this virus into the preoptic area had no effect on prolactin levels, but did dampen maternal motivation, judged by reduced time in a pup-associated cage during a place preference test. In support of an effect of TIP39 on maternal motivation, we observed that TIP39 containing fibers and terminals had the same distribution within the preoptic area as neurons expressing Fos in response to suckling. Furthermore, TIP39 terminals closely apposed the plasma membrane of 82% of Fos-ir neurons. Retrograde tracer injected into the arcuate nucleus and the medial preoptic area labeled TIP39 neurons in the posterior intralaminar complex of the thalamus (PIL), indicating that these cells but not other groups of TIP39 neurons project to these hypothalamic regions. We also found that TIP39 mRNA levels in the PIL markedly increased around parturition and remained elevated throughout the lactation period, demonstrating the availability of the peptide in postpartum mothers. Furthermore, suckling, but not pup exposure without physical contact, increased Fos expression by PIL TIP39 neurons. These results indicate that suckling activates TIP39 neurons in the PIL that affect prolactin release and maternal motivation via projections to the arcuate nucleus and the preoptic area, respectively. "	"Plasma membrane domains enriched in cortical endoplasmic reticulum function as membrane protein trafficking hubs. In mammalian cells, the cortical endoplasmic reticulum (cER) is a network of tubules and cisterns that lie in close apposition to the plasma membrane (PM). We provide evidence that PM domains enriched in underlying cER function as trafficking hubs for insertion and removal of PM proteins in HEK 293 cells. By simultaneously visualizing cER and various transmembrane protein cargoes with total internal reflectance fluorescence microscopy, we demonstrate that the majority of exocytotic delivery events for a recycled membrane protein or for a membrane protein being delivered to the PM for the first time occur at regions enriched in cER. Likewise, we observed recurring clathrin clusters and functional endocytosis of PM proteins preferentially at the cER-enriched regions. Thus the cER network serves to organize the molecular machinery for both insertion and removal of cell surface proteins, highlighting a novel role for these unique cellular microdomains in membrane trafficking. "	"Hepatitis C virus NS5A inhibits mixed lineage kinase 3 to block apoptosis. Hepatitis C virus (HCV) infection results in the activation of numerous stress responses including oxidative stress, with the potential to induce an apoptotic state. Previously we have shown that HCV attenuates the stress-induced, p38MAPK-mediated up-regulation of the K(+) channel Kv2.1, to maintain the survival of infected cells in the face of cellular stress. We demonstrated that this effect was mediated by HCV non-structural 5A (NS5A) protein, which impaired p38MAPK activity through a polyproline motif-dependent interaction, resulting in reduction of phosphorylation activation of Kv2.1. In this study, we investigated the host cell proteins targeted by NS5A to mediate Kv2.1 inhibition. We screened a phage-display library expressing the entire complement of human SH3 domains for novel NS5A-host cell interactions. This analysis identified mixed lineage kinase 3 (MLK3) as a putative NS5A interacting partner. MLK3 is a serine/threonine protein kinase that is a member of the MAPK kinase kinase (MAP3K) family and activates p38MAPK. An NS5A-MLK3 interaction was confirmed by co-immunoprecipitation and Western blot analysis. We further demonstrate a novel role of MLK3 in the modulation of Kv2.1 activity, whereby MLK3 overexpression leads to the up-regulation of channel activity. Accordingly, coexpression of NS5A suppressed this stimulation. Additionally we demonstrate that overexpression of MLK3 induced apoptosis, which was also counteracted by NS5A. We conclude that NS5A targets MLK3 with multiple downstream consequences for both apoptosis and K(+) homeostasis. "	"Resveratrol inhibits K(v)2.2 currents through the estrogen receptor GPR30-mediated PKC pathway. Resveratrol (REV) is a naturally occurring phytoalexin that inhibits neuronal K⁺ channels; however, the molecular mechanisms behind the effects of REV and the relevant α-subunit are not well defined. With the use of patch-clamp technique, cultured cerebellar granule cells, and HEK-293 cells transfected with the K(v)2.1 and K(v)2.2 α-subunits, we investigated the effect of REV on K(v)2.1 and K(v)2.2 α-subunits. Our data demonstrated that REV significantly suppressed Kv2.2 but not Kv2.1 currents with a fast, reversible, and mildly concentration-dependent manner and shifted the activation or inactivation curve of Kv2.2 channels. Activating or inhibiting the cAMP/PKA pathway did not abolish the inhibition of K(v)2.2 current by REV. In contrast, activation of PKC with phorbol 12-myristate 13-acetate mimicked the inhibitory effect of REV on K(v)2.2 by modifying the activation or inactivation properties of Kv2.2 channels and eliminated any further inhibition by REV. PKC and PKC-α inhibitor completely eliminated the REV-induced inhibition of K(v)2.2. Moreover, the effect of REV on K(v)2.2 was reduced by preincubation with antagonists of GPR30 receptor and shRNA for GPR30 receptor. Western blotting results indicated that the levels of PKC-α and PKC-β were significantly increased in response to REV application. Our data reveal, for the first time, that REV inhibited K(v)2.2 currents through PKC-dependent pathways and a nongenomic action of the oestrogen receptor GPR30."	"Structure-activity relationships of pentamidine-affected ion channel trafficking and dofetilide mediated rescue. Drug interference with normal hERG protein trafficking substantially reduces the channel density in the plasma membrane and thereby poses an arrhythmic threat. The chemical substructures important for hERG trafficking inhibition were investigated using pentamidine as a model drug. Furthermore, the relationship between acute ion channel block and correction of trafficking by dofetilide was studied. hERG and K(IR)2.1 trafficking in HEK293 cells was evaluated by Western blot and immunofluorescence microscopy after treatment with pentamidine and six pentamidine analogues, and correction with dofetilide and four dofetilide analogues that displayed different abilities to inhibit IKr . Molecular dynamics simulations were used to address mode, number and type of interactions between hERG and dofetilide analogues. Structural modifications of pentamidine differentially affected plasma membrane levels of hERG and K(IR)2.1. Modification of the phenyl ring or substituents directly attached to it had the largest effect, affirming the importance of these chemical residues in ion channel binding. PA-4 had the mildest effects on both ion channels. Dofetilide corrected pentamidine-induced hERG, but not K(IR)2.1 trafficking defects. Dofetilide analogues that displayed high channel affinity, mediated by pi-pi stacks and hydrophobic interactions, also restored hERG protein levels, whereas analogues with low affinity were ineffective. Drug-induced trafficking defects can be minimized if certain chemical features are avoided or 'synthesized out'; this could influence the design and development of future drugs. Further analysis of such features in hERG trafficking correctors may facilitate the design of a non-blocking corrector for trafficking defective hERG proteins in both congenital and acquired LQTS."	"An exploratory study of the association between KCNB1 rs1051295 and type 2 diabetes and its related traits in Chinese Han population. Since the KCNB1 encoding Kv2.1 channel accounts for the majority of Kv currents modulating insulin secretion by pancreatic islet beta-cells, we postulated that KCNB1 is a plausible candidate gene for genetic variation contributing to the variable compensatory secretory function of beta-cells in type-2 diabetes (T2D). We conducted two studies, a case-control study and a cross-section study, to investigate the association of common single-nucleotide polymorphisms (SNPs) in KCNB1 with T2D and its linking traits. In the case-control study, we first examined the association of 20 tag SNPs of KCNB1 with T2D in a population with 226 T2D patients and non-diabetic subjects (screening study). We then identified the association in an enlarged population of 412 T2D patients and non-diabetic subjects (replication study). In the cross-sectional study, we investigated the linkage between the candidate SNP rs1051295 and T2D by comparing beta-cell function and insulin sensitivity among rs1051295 genotypes in a general population of 1051 subjects at fasting and after glucose loading (oral glucose tolerance tests, OGTT) in 84 fasting glucose impaired subjects, and several T2D-related traits. We found that among the 19 available tag SNPs, only the KCNB1 rs1051295 was associated with T2D (P = 0.027), with the rs1051295 TT genotype associated with an increased risk of T2D compared with genotypes CC (P = 0.009). At fasting, rs1051295 genotype TT was associated with a 9.8% reduction in insulin sensitivity compared to CC (P = 0.008); along with increased plasma triglycerides (TG) levels (TT/CC: P = 0.046) and increased waist/hip (W/H) ratio (TT/CC: P = 0.013; TT/TC: P = 0.002). OGTT confirmed that genotype TT exhibited reduced insulin sensitivity by 16.3% (P = 0.030) compared with genotype TC+CC in a fasting glucose impaired population. The KCNB1 rs1051295 genotype TT in the Chinese Han population is associated with decreased insulin sensitivity and increased plasma TG and W/H ratio, which together contribute to an increased risk for T2D."	"Molecular mechanisms underlying the apoptotic effect of KCNB1 K+ channel oxidation. Potassium (K(+)) channels are targets of reactive oxygen species in the aging nervous system. KCNB1 (formerly Kv2.1), a voltage-gated K(+) channel abundantly expressed in the cortex and hippocampus, is oxidized in the brains of aging mice and of the triple transgenic 3xTg-AD mouse model of Alzheimer's disease. KCNB1 oxidation acts to enhance apoptosis in mammalian cell lines, whereas a KCNB1 variant resistant to oxidative modification, C73A-KCNB1, is cytoprotective. Here we investigated the molecular mechanisms through which oxidized KCNB1 channels promote apoptosis. Biochemical evidence showed that oxidized KCNB1 channels, which form oligomers held together by disulfide bridges involving Cys-73, accumulated in the plasma membrane as a result of defective endocytosis. In contrast, C73A-mutant channels, which do not oligomerize, were normally internalized. KCNB1 channels localize in lipid rafts, and their internalization was dynamin 2-dependent. Accordingly, cholesterol supplementation reduced apoptosis promoted by oxidation of KCNB1. In contrast, cholesterol depletion exacerbated apoptotic death in a KCNB1-independent fashion. Inhibition of raft-associating c-Src tyrosine kinase and downstream JNK kinase by pharmacological and molecular means suppressed the pro-apoptotic effect of KCNB1 oxidation. Together, these data suggest that the accumulation of KCNB1 oligomers in the membrane disrupts planar lipid raft integrity and causes apoptosis via activating the c-Src/JNK signaling pathway."	"Binding of hanatoxin to the voltage sensor of Kv2.1. Hanatoxin 1 (HaTx1) is a polypeptide toxin isolated from spider venoms. HaTx1 inhibits the voltage-gated potassium channel kv2.1 potently with nanomolar affinities. Its receptor site has been shown to contain the S3b-S4a paddle of the voltage sensor (VS). Here, the binding of HaTx1 to the VSs of human Kv2.1 in the open and resting states are examined using a molecular docking method and molecular dynamics. Molecular docking calculations predict two distinct binding modes for the VS in the resting state. In the two binding modes, the toxin binds the S3b-S4a from S2 and S3 helices, or from S1 and S4 helices. Both modes are found to be stable when embedded in a lipid bilayer. Only the mode in which the toxin binds the S3b-S4a paddle from S2 and S3 helices is consistent with mutagenesis experiments, and considered to be correct. The toxin is then docked to the VS in the open state, and the toxin-VS interactions are found to be less favorable. Computational mutagenesis calculations performed on F278R and E281K mutant VSs show that the mutations may reduce toxin binding affinity by weakening the non-bonded interactions between the toxin and the VS. Overall, our calculations reproduce a wide range of experimental data, and suggest that HaTx1 binds to the S3b-S4a paddle of Kv2.1 from S2 and S3 helices."	"Distinct modifications in Kv2.1 channel via chemokine receptor CXCR4 regulate neuronal survival-death dynamics. The chemokine stromal cell-derived factor-1α (SDF-1α) has multiple effects on neuronal activity, survival, and death under conditions that generate a proinflammatory microenvironment within the brain, via signaling through C-X-C-type chemokine receptor 4 (CXCR4), although the underlying cellular/molecular mechanisms are unclear. Using rat hippocampal neurons, we investigated distinct modifications in the voltage-gated K⁺ (Kv) channel Kv2.1 in response to short- and long-term SDF-1α/CXCR4-mediated signaling as an underlying mechanism for CXCR4-dependent regulation of neuronal survival and death. Acute exposure of neurons to SDF-1α led to dynamic dephosphorylation and altered localization of Kv2.1 channel, resulting in enhanced voltage-dependent activation of Kv2.1-based delayed-rectifier Kv currents (I(DR)). These changes were dependent on CXCR4- and/or NMDA receptor-mediated activation of calcineurin and provide neuroprotection. However, prolonged SDF-1α treatment leads to CXCR4-mediated activation of p38 mitogen-activated protein kinase, resulting in phosphorylation of Kv2.1 at S800 and enhanced surface trafficking of the channel protein, resulting in increased I(DR)/Kv2.1 current density. This, in combination with sustained dephosphorylation-induced enhancement of the voltage-dependent activation of I(DR)/Kv2.1, predisposed neurons to excessive K⁺ efflux, a vital step for the neuronal apoptotic program. Such apoptotic death was dependent on CXCR4 and Kv2.1 function and was absent in cells expressing the Kv2.1-S800A mutant channel. Furthermore, similar modifications in Kv2.1 and CXCR4/Kv2.1-dependent apoptosis were observed following treatment of neurons with the human immunodeficiency virus-1 (HIV-1) glycoprotein gp120. Therefore, distinct modifications in Kv2.1 in response to short- and long-term CXCR4-mediated signaling could provide a basis for neuroprotection or apoptosis in neuropathologies, such as neuroinflammation, stroke, brain tumors, and HIV-associated neurodegeneration."	"The role of voltage-gated potassium channels Kv2.1 and Kv2.2 in the regulation of insulin and somatostatin release from pancreatic islets. The voltage-gated potassium channels Kv2.1 and Kv2.2 are highly expressed in pancreatic islets, yet their contribution to islet hormone secretion is not fully understood. Here we investigate the role of Kv2 channels in pancreatic islets using a combination of genetic and pharmacologic approaches. Pancreatic β-cells from Kv2.1(-/-) mice possess reduced Kv current and display greater glucose-stimulated insulin secretion (GSIS) relative to WT β-cells. Inhibition of Kv2.x channels with selective peptidyl [guangxitoxin-1E (GxTX-1E)] or small molecule (RY796) inhibitors enhances GSIS in isolated wild-type (WT) mouse and human islets, but not in islets from Kv2.1(-/-) mice. However, in WT mice neither inhibitor improved glucose tolerance in vivo. GxTX-1E and RY796 enhanced somatostatin release in isolated human and mouse islets and in situ perfused pancreata from WT and Kv2.1(-/-) mice. Kv2.2 silencing in mouse islets by adenovirus-small hairpin RNA (shRNA) specifically enhanced islet somatostatin, but not insulin, secretion. In mice lacking somatostatin receptor 5, GxTX-1E stimulated insulin secretion and improved glucose tolerance. Collectively, these data show that Kv2.1 regulates insulin secretion in β-cells and Kv2.2 modulates somatostatin release in δ-cells. Development of selective Kv2.1 inhibitors without cross inhibition of Kv2.2 may provide new avenues to promote GSIS for the treatment of type 2 diabetes."	"[Cigarette smoke exposure induced pulmonary artery pressure increase through inhibiting Kv1.5 and Kv2.1 mRNA expression in rat pulmonary artery smooth muscles]. To investigate the effect of cigarette smoke exposure on Kv1.5 and Kv2.1 mRNA expression in rat pulmonary arterial smooth muscle cells (PASMCs), and further to clarify the possible mechanism of cigarette smoking induced pulmonary arterial hypertension. Primary cell culture and animal experiments were used in this study. Rat distal PASMCs were isolated and cultured by collagenase digestion. PASMCs were treated by nicotine 100 nmol/L. After 48 h, Kv1.5 and Kv2.1 mRNA expression were detected by real-time quantitative PCR and compared with the control group. Rat model of chronic exposure to cigarette smoke was established. Thirty-six male SD rats were randomly divided equally into 6 groups: (1) 1 month control group; (2) 1 month cigarette exposure group; (3) 3 month control group; (4) 3 month cigarette exposure group; (5) 6 month control group; (6) 6 month cigarette exposure group. Direct right heart manometry, HE staining and real-time quantitative PCR were used to detect the effect of smoke exposure on rat right ventricular systolic pressure (RVSP), mean pressure (mPAP), right ventricular hypertrophy index [RV/(LV + S)] as well as Kv1.5 and Kv2.1 mRNA expression on pulmonary artery smooth muscle at different time points (1 month, 3 months and 6 months). The mPAP and RVSP in cigarette smoke exposure 6 month group were (13.08 ± 0.64) mm Hg and (29.73 ± 0.83) mm Hg, slightly higher than those in the control 6 month group [(10.16 ± 0.44) mm Hg and (22.56 ± 0.64) mm Hg] (P &lt; 0.01). The ratio of Kv1.5 mRNA expression in distal pulmonary arteries in 1 month, 3 month, 6 month cigarette exposure group to that in control groups was (52 ± 11)%, (64 ± 19)% and (75 ± 11)% (P &lt; 0.05). The ratio of Kv2.1 mRNA expression in distal pulmonary arteries in 1 month, 3 month, 6 month cigarette exposure groups to that in control groups was (51.0 ± 18.6)%, (78.7 ± 10.1)% and (71.4 ± 2.3)% (P &lt; 0.01); Chronic exposure to cigarette smoke significantly decreased Kv1.5 and Kv2.1 mRNA expression in rat pulmonary arterial smooth muscle at each time point. The ratio of Kv1.5 and Kv2.1 mRNA expression in rat distal PASMCs treated with nicotine (100 nmol/L, 48 h) to control group were (62 ± 14)% (P &lt; 0.05) and (72 ± 15)% (P &lt; 0.01), respectively. Nicotine inhibited Kv1.5 and Kv2.1 mRNA expression in rat distal PASMCs. Cigarette smoke exposure may be involved in pulmonary hypertension by downregulating potassium channels Kv1.5 and Kv2.1 mRNA expression in rat pulmonary artery smooth muscles."	"Functional analysis of missense mutations in Kv8.2 causing cone dystrophy with supernormal rod electroretinogram. Mutations in KCNV2 have been proposed as the molecular basis for cone dystrophy with supernormal rod electroretinogram. KCNV2 codes for the modulatory voltage-gated potassium channel α-subunit, Kv8.2, which is incapable of forming functional channels on its own. Functional heteromeric channels are however formed with Kv2.1 in heterologous expression systems, with both α-subunit genes expressed in rod and cone photoreceptors. Of the 30 mutations identified in the KCNV2 gene, we have selected three missense mutations localized in the potassium channel pore and two missense mutations localized in the tetramerization domain for analysis. We characterized the differences between homomeric Kv2.1 and heteromeric Kv2.1/Kv8.2 channels and investigated the influence of the selected mutations on the function of heteromeric channels. We found that two pore mutations (W467G and G478R) led to the formation of nonconducting heteromeric Kv2.1/Kv8.2 channels, whereas the mutations localized in the tetramerization domain prevented heteromer generation and resulted in the formation of homomeric Kv2.1 channels only. Consequently, our study suggests the existence of two distinct molecular mechanisms involved in the disease pathology."	"The retinal clock drives the expression of Kcnv2, a channel essential for visual function and cone survival. The gene Kcnv2 codes for the voltage-gated potassium channel subunit Kv8.2, which can coassemble with Kv2.1 subfamily members to constitute functional voltage-gated potassium channels. Mutations in the Kcnv2 gene result in a retinal disorder designated &quot;cone dystrophy with supernormal rod response (CDSRR),&quot; revealing that Kcnv2 is essential for visual processing and cone survival. The aim of this study was to determine whether expression of Kcnv2 and Kv2.1 is under circadian regulation and may thus contribute to the clock-driven adjustment of photoreceptor function. Expression of the genes was recorded in preparations of the whole retina and microdissected retinal neurons by using quantitative polymerase chain reaction and Western blot. The transcript levels of Kcnv2 and Kv2.1 in preparations of whole retina and photoreceptor cells were found to display daily rhythms, with elevated values during the night. For Kcnv2 this rhythm was shown to evoke a corresponding rhythm in Kv8.2, the protein product of this gene. The daily changes in retinal Kcnv2 and Kv2.1 mRNA levels persisted under constant darkness and are therefore driven by the endogenous retinal clock system, which itself is entrained by light. The present data provide evidence that the transcriptional regulation of Kcnv2 and Kv2.1 is a way through which the retinal clock system drives the functional adaptation of visual function to the marked daily changes in environmental lighting conditions."	"Hypoxia induces voltage-gated K+ (Kv) channel expression in pulmonary arterial smooth muscle cells through hypoxia-inducible factor-1 (HIF-1). Hypoxia-inducible factor-1 (HIF-1) regulates the expression of hypoxia-inducible genes by binding erythropoietin (EPO) enhancer fragments. Of these genes, HIF-1 upregulates voltage-gated K+1.2 channels (Kv1.2) in rat PC12 cells. Whether HIF-1 regulates hypoxia-induced Kv channel expression in cultured pulmonary artery smooth muscle cells (PASMCs), however, has not been determined. In this study, we investigated the effects of hypoxia on the expression of Kv1.2 Kv1.5, Kv2.1, and Kv9.3 channels in PASMCs and examined the direct role of HIF-1 by transfecting either wild type or mutant EPO enhancer fragments. Our results showed that 18 h exposure to hypoxia significantly increased the expression of Kv1.2, Kv1.5, Kv2.1, and Kv9.3; and this hypoxia-induced upregulation was completely inhibited after transfection with the wild type but not mutant EPO enhancer fragment. These results indicate that HIF-1 regulates hypoxia-stimulated induction of Kv1.2 Kv1.5, Kv2.1, and Kv9.3 channels in cultured PASMCs."	"The delayed rectifier potassium conductance in the sarcolemma and the transverse tubular system membranes of mammalian skeletal muscle fibers. A two-microelectrode voltage clamp and optical measurements of membrane potential changes at the transverse tubular system (TTS) were used to characterize delayed rectifier K currents (IK(V)) in murine muscle fibers stained with the potentiometric dye di-8-ANEPPS. In intact fibers, IK(V) displays the canonical hallmarks of K(V) channels: voltage-dependent delayed activation and decay in time. The voltage dependence of the peak conductance (gK(V)) was only accounted for by double Boltzmann fits, suggesting at least two channel contributions to IK(V). Osmotically treated fibers showed significant disconnection of the TTS and displayed smaller IK(V), but with similar voltage dependence and time decays to intact fibers. This suggests that inactivation may be responsible for most of the decay in IK(V) records. A two-channel model that faithfully simulates IK(V) records in osmotically treated fibers comprises a low threshold and steeply voltage-dependent channel (channel A), which contributes ∼31% of gK(V), and a more abundant high threshold channel (channel B), with shallower voltage dependence. Significant expression of the IK(V)1.4 and IK(V)3.4 channels was demonstrated by immunoblotting. Rectangular depolarizing pulses elicited step-like di-8-ANEPPS transients in intact fibers rendered electrically passive. In contrast, activation of IK(V) resulted in time- and voltage-dependent attenuations in optical transients that coincided in time with the peaks of IK(V) records. Normalized peak attenuations showed the same voltage dependence as peak IK(V) plots. A radial cable model including channels A and B and K diffusion in the TTS was used to simulate IK(V) and average TTS voltage changes. Model predictions and experimental data were compared to determine what fraction of gK(V) in the TTS accounted simultaneously for the electrical and optical data. Best predictions suggest that K(V) channels are approximately equally distributed in the sarcolemma and TTS membranes; under these conditions, &gt;70% of IK(V) arises from the TTS."	"The electrically silent Kv6.4 subunit confers hyperpolarized gating charge movement in Kv2.1/Kv6.4 heterotetrameric channels. The voltage-gated K(+) (Kv) channel subunit Kv6.4 does not form functional homotetrameric channels but co-assembles with Kv2.1 to form functional Kv2.1/Kv6.4 heterotetrameric channels. Compared to Kv2.1 homotetramers, Kv6.4 exerts a ~40 mV hyperpolarizing shift in the voltage-dependence of Kv2.1/Kv6.4 channel inactivation, without a significant effect on activation gating. However, the underlying mechanism of this Kv6.4-induced modulation of Kv2.1 channel inactivation, and whether the Kv6.4 subunit participates in the voltage-dependent gating of heterotetrameric channels is not well understood. Here we report distinct gating charge movement of Kv2.1/Kv6.4 heterotetrameric channels, compared to Kv2.1 homotetramers, as revealed by gating current recordings from mammalian cells expressing these channels. The gating charge movement of Kv2.1/Kv6.4 heterotetrameric channels displayed an extra component around the physiological K(+) equilibrium potential, characterized by a second sigmoidal relationship of the voltage-dependence of gating charge movement. This distinct gating charge displacement reflects movement of the Kv6.4 voltage-sensing domain and has a voltage-dependency that matches the hyperpolarizing shift in Kv2.1/Kv6.4 channel inactivation. These results provide a mechanistic basis for the modulation of Kv2.1 channel inactivation gating kinetics by silent Kv6.4 subunits."	"Shortening and intracellular Ca2+ in ventricular myocytes and expression of genes encoding cardiac muscle proteins in early onset type 2 diabetic Goto-Kakizaki rats. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus. Cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. Contractile dysfunction, associated with disturbances in excitation-contraction coupling, has been widely demonstrated in the diabetic heart. The aim of this study was to investigate the pattern of cardiac muscle genes that are involved in the process of excitation-contraction coupling in the hearts of early onset (8-10 weeks of age) type 2 diabetic Goto-Kakizaki (GK) rats. Gene expression was assessed in ventricular muscle with real-time RT-PCR; shortening and intracellular Ca(2+) were measured in ventricular myocytes with video edge detection and fluorescence photometry, respectively. The general characteristics of the GK rats included elevated fasting and non-fasting blood glucose and blood glucose at 120 min following a glucose challenge. Expression of genes encoding cardiac muscle proteins (Myh6/7, Mybpc3, Myl1/3, Actc1, Tnni3, Tnn2, Tpm1/2/4 and Dbi) and intercellular proteins (Gja1/4/5/7, Dsp and Cav1/3) were unaltered in GK ventricle compared with control ventricle. The expression of genes encoding some membrane pumps and exchange proteins was unaltered (Atp1a1/2, Atp1b1 and Slc8a1), whilst others were either upregulated (Atp1a3, relative expression 2.61 ± 0.69 versus 0.84 ± 0.23) or downregulated (Slc9a1, 0.62 ± 0.07 versus 1.08 ± 0.08) in GK ventricle compared with control ventricle. The expression of genes encoding some calcium (Cacna1c/1g, Cacna2d1/2d2 and Cacnb1/b2), sodium (Scn5a) and potassium channels (Kcna3/5, Kcnj3/5/8/11/12, Kchip2, Kcnab1, Kcnb1, Kcnd1/2/3, Kcne1/4, Kcnq1, Kcng2, Kcnh2, Kcnk3 and Kcnn2) were unaltered, whilst others were either upregulated (Cacna1h, 0.95 ± 0.16 versus 0.47 ± 0.09; Scn1b, 1.84 ± 0.16 versus 1.11 ± 0.11; and Hcn2, 1.55 ± 0.15 versus 1.03 ± 0.08) or downregulated (Hcn4, 0.16 ± 0.03 versus 0.37 ± 0.08; Kcna2, 0.35 ± 0.03 versus 0.80 ± 0.11; Kcna4, 0.79 ± 0.25 versus 1.90 ± 0.26; and Kcnj2, 0.52 ± 0.07 versus 0.78 ± 0.08) in GK ventricle compared with control ventricle. The amplitude of ventricular myocyte shortening and the intracellular Ca(2+) transient were unaltered; however, the time-to-peak shortening was prolonged and time-to-half decay of the Ca(2+) transient was shortened in GK myocytes compared with control myocytes. The results of this study demonstrate changes in expression of genes encoding various excitation-contraction coupling proteins that are associated with disturbances in myocyte shortening and intracellular Ca(2+) transport."	"Toxic role of K+ channel oxidation in mammalian brain. Potassium (K(+)) channels are essential to neuronal signaling and survival. Here we show that these proteins are targets of reactive oxygen species in mammalian brain and that their oxidation contributes to neuropathy. Thus, the KCNB1 (Kv2.1) channel, which is abundantly expressed in cortex and hippocampus, formed oligomers upon exposure to oxidizing agents. These oligomers were ∼10-fold more abundant in the brain of old than young mice. Oxidant-induced oligomerization of wild-type KCNB1 enhanced apoptosis in neuronal cells subject to oxidative insults. Consequently, a KCNB1 variant resistant to oxidation, obtained by mutating a conserved cysteine to alanine, (C73A), was neuroprotective. The fact that oxidation of KCNB1 is toxic, argues that this mechanism may contribute to neuropathy in conditions characterized by high levels of oxidative stress, such as Alzheimer's disease (AD). Accordingly, oxidation of KCNB1 channels was exacerbated in the brain of a triple transgenic mouse model of AD (3xTg-AD). The C73A variant protected neuronal cells from apoptosis induced by incubation with β-amyloid peptide (Aβ(1-42)). In an invertebrate model (Caenorhabditis elegans) that mimics aspects of AD, a C73A-KCNB1 homolog (C113S-KVS-1) protected specific neurons from apoptotic death induced by ectopic expression of human Aβ(1-42). Together, these data underscore a novel mechanism of toxicity in neurodegenerative disease."	"The voltage-gated channel accessory protein KCNE2: multiple ion channel partners, multiple ways to long QT syndrome. The single-pass transmembrane protein KCNE2 or MIRP1 was once thought to be the missing accessory protein that combined with hERG to fully recapitulate the cardiac repolarising current IKr. As a result of this role, it was an easy next step to associate mutations in KCNE2 to long QT syndrome, in which there is delayed repolarisation of the heart. Since that time however, KCNE2 has been shown to modify the behaviour of several other channels and currents, and its role in the heart and in the aetiology of long QT syndrome has become less clear. In this article, we review the known interactions of the KCNE2 protein and the resulting functional effects, and the effects of mutations in KCNE2 and their clinical role."	"Cholesterol enhances neuron susceptibility to apoptotic stimuli via cAMP/PKA/CREB-dependent up-regulation of Kv2.1. Cholesterol is a major component of membrane lipid rafts. It is more abundant in the brain than in other tissues and plays a critical role in maintaining brain function. We report here that a significant enhancement in apoptosis in rat cerebellar granule neurons (CGNs) was observed upon incubation with 5mM K(+) /serum free (LK-S) medium. Cholesterol enrichment further potentiated CGN apoptosis incubated under LK-S medium. On the contrary, cholesterol depletion using methyl-beta-cyclodextrin protected the CGNs from apoptosis induced by LK-S treatment. Cholesterol enrichment, however, did not induce apoptosis in CGNs that have been incubated with 25mM K(+) /serum medium. Mechanistically, increased I(K) currents and DNA fragmentation were found in CGNs incubated in LK-S, which was further potentiated in the presence of cholesterol. Cholesterol-treated CGNs also exhibited increased cAMP levels and up-regulation of Kv2.1 expression. Increased levels of activated form of PKA and phospho-CREB further supported activation of the cAMP/PKA pathway upon treatment of CGNs with cholesterol-containing LK-S medium. Conversely, inhibition of PKA or small G protein Gs abolished the increase in I(K) current and the potentiation of Kv2.1 expression, leading to reduced susceptibility of CGNs to LK-S and cholesterol-induced apoptosis. Our results demonstrate that the elevation of membrane cholesterol enhances CGN susceptibility to apoptotic stimuli via cAMP/PKA/CREB-dependent up-regulation of Kv2.1. Our data provide new evidence for the role of cholesterol in eliciting neuronal cell death."	"Phosphorylation of the voltage-gated potassium channel Kv2.1 by AMP-activated protein kinase regulates membrane excitability. Firing of action potentials in excitable cells accelerates ATP turnover. The voltage-gated potassium channel Kv2.1 regulates action potential frequency in central neurons, whereas the ubiquitous cellular energy sensor AMP-activated protein kinase (AMPK) is activated by ATP depletion and protects cells by switching off energy-consuming processes. We show that treatment of HEK293 cells expressing Kv2.1 with the AMPK activator A-769662 caused hyperpolarizing shifts in the current-voltage relationship for channel activation and inactivation. We identified two sites (S440 and S537) directly phosphorylated on Kv2.1 by AMPK and, using phosphospecific antibodies and quantitative mass spectrometry, show that phosphorylation of both sites increased in A-769662-treated cells. Effects of A-769662 were abolished in cells expressing Kv2.1 with S440A but not with S537A substitutions, suggesting that phosphorylation of S440 was responsible for these effects. Identical shifts in voltage gating were observed after introducing into cells, via the patch pipette, recombinant AMPK rendered active but phosphatase-resistant by thiophosphorylation. Ionomycin caused changes in Kv2.1 gating very similar to those caused by A-769662 but acted via a different mechanism involving Kv2.1 dephosphorylation. In cultured rat hippocampal neurons, A-769662 caused hyperpolarizing shifts in voltage gating similar to those in HEK293 cells, effects that were abolished by intracellular dialysis with Kv2.1 antibodies. When active thiophosphorylated AMPK was introduced into cultured neurons via the patch pipette, a progressive, time-dependent decrease in the frequency of evoked action potentials was observed. Our results suggest that activation of AMPK in neurons during conditions of metabolic stress exerts a protective role by reducing neuronal excitability and thus conserving energy."	"Identification of novel and selective Kv2 channel inhibitors. Identification of selective ion channel inhibitors represents a critical step for understanding the physiological role that these proteins play in native systems. In particular, voltage-gated potassium (K(V)2) channels are widely expressed in tissues such as central nervous system, pancreas, and smooth muscle, but their particular contributions to cell function are not well understood. Although potent and selective peptide inhibitors of K(V)2 channels have been characterized, selective small molecule K(V)2 inhibitors have not been reported. For this purpose, high-throughput automated electrophysiology (IonWorks Quattro; Molecular Devices, Sunnyvale, CA) was used to screen a 200,000-compound mixture (10 compounds per sample) library for inhibitors of K(V)2.1 channels. After deconvolution of 190 active samples, two compounds (A1 and B1) were identified that potently inhibit K(V)2.1 and the other member of the K(V)2 family, K(V)2.2 (IC(50), 0.1-0.2 μM), and that possess good selectivity over K(V)1.2 (IC(50) &gt;10 μM). Modeling studies suggest that these compounds possess a similar three-dimensional conformation. Compounds A1 and B1 are &gt;10-fold selective over Na(V) channels and other K(V) channels and display weak activity (5-9 μM) on Ca(V) channels. The biological activity of compound A1 on native K(V)2 channels was confirmed in electrophysiological recordings of rat insulinoma cells, which are known to express K(V)2 channels. Medicinal chemistry efforts revealed a defined structure-activity relationship and led to the identification of two compounds (RY785 and RY796) without significant Ca(V) channel activity. Taken together, these newly identified channel inhibitors represent important tools for the study of K(V)2 channels in biological systems."	"Hypoxic preconditioning enhances bone marrow mesenchymal stem cell migration via Kv2.1 channel and FAK activation. Transplantation using stem cells including bone marrow mesenchymal stem cells (BMSCs) is emerging as a potential regenerative therapy after ischemic attacks in the heart and brain. The migration capability of transplanted cells is a critical cellular function for tissue repair. Based on our recent observations that hypoxic preconditioning (HP) has multiple benefits in improving stem cell therapy and that the potassium Kv2.1 channel acts as a promoter for focal adhesion kinase (FAK) activation and cell motility, the present investigation tested the hypothesis that HP treatment can increase BMSC migration via the mechanism of increased Kv2.1 expression and FAK activities. BMSCs derived from green fluorescent protein-transgenic mice were treated under either normoxic (N-BMSC) or hypoxic (0.5% O(2)) (HP-BMSC) conditions for 24 h. Western blot analysis showed HP selectively upregulated Kv2.1 expression while leaving other K(+) channels, such as Kv1.5 and Kv1.4, unaffected. Compared with normoxic controls, significantly larger outward delayed rectifier K(+) currents were recorded in HP-BMSCs. HP enhanced BMSC migration/homing activities in vitro and after intravenous transplantation into rats subjected to permanent myocardial infarction (MI). The HP-promoted BMSC migration was inhibited by either blocking K(+) channels or knocking down Kv2.1. Supporting a relationship among HP, Kv2.1, and FAK activation, HP increased phosphorylation of FAK(397) and FAK(576/577), and this effect was antagonized by blocking K(+) channels. These findings provide novel evidence that HP enhances the ability of BMSCs to migrate and home to the injured region; this effect is mediated through a regulatory role of Kv2.1 on FAK phosphorylation/activation."	"Ion channels as target effectors for carbon monoxide. Our understanding of carbon monoxide (CO) as an endogenous signalling molecule has expanded enormously in recent years, to the point where it can now be safely exploited therapeutically. In more recent years, the ability of CO to modulate ion channel activity has added further diversity to its activity. Here, I summarize briefly the established ion channel targets of CO and describe in more detail its actions on two example ion channels (the cardiac L-type Ca(2+) channel and the neuronal delayed rectifier, Kv2.1). The physiological consequences of such modulation are also considered. It is clear that our knowledge of the cellular effects of this gas is incomplete, and further study is required to further understand and so more fully exploit its therapeutic potential."	"Ergodic and nonergodic processes coexist in the plasma membrane as observed by single-molecule tracking. Diffusion in the plasma membrane of living cells is often found to display anomalous dynamics. However, the mechanism underlying this diffusion pattern remains highly controversial. Here, we study the physical mechanism underlying Kv2.1 potassium channel anomalous dynamics using single-molecule tracking. Our analysis includes both time series of individual trajectories and ensemble averages. We show that an ergodic and a nonergodic process coexist in the plasma membrane. The ergodic process resembles a fractal structure with its origin in macromolecular crowding in the cell membrane. The nonergodic process is found to be regulated by transient binding to the actin cytoskeleton and can be accurately modeled by a continuous-time random walk. When the cell is treated with drugs that inhibit actin polymerization, the diffusion pattern of Kv2.1 channels recovers ergodicity. However, the fractal structure that induces anomalous diffusion remains unaltered. These results have direct implications on the regulation of membrane receptor trafficking and signaling."	"Uncoupling charge movement from channel opening in voltage-gated potassium channels by ruthenium complexes. The Kv2.1 channel generates a delayed-rectifier current in neurons and is responsible for modulation of neuronal spike frequency and membrane repolarization in pancreatic β-cells and cardiomyocytes. As with other tetrameric voltage-activated K(+)-channels, it has been proposed that each of the four Kv2.1 voltage-sensing domains activates independently upon depolarization, leading to a final concerted transition that causes channel opening. The mechanism by which voltage-sensor activation is coupled to the gating of the pore is still not understood. Here we show that the carbon-monoxide releasing molecule 2 (CORM-2) is an allosteric inhibitor of the Kv2.1 channel and that its inhibitory properties derive from the CORM-2 ability to largely reduce the voltage dependence of the opening transition, uncoupling voltage-sensor activation from the concerted opening transition. We additionally demonstrate that CORM-2 modulates Shaker K(+)-channels in a similar manner. Our data suggest that the mechanism of inhibition by CORM-2 may be common to voltage-activated channels and that this compound should be a useful tool for understanding the mechanisms of electromechanical coupling."	"TGF-β1 enhances Kv2.1 potassium channel protein expression and promotes maturation of cerebellar granule neurons. Members of the transforming growth factor-β (TGF-β) family of cytokines are involved in diverse physiological processes. Although TGF-β is known to play multiple roles in the mammalian central nervous system (CNS), its role in neuronal development has not been explored. We have studied the effects of TGF-β1 on the electrophysiological properties and maturation of rat primary cerebellar granule neurons (CGNs). We report that incubation with TGF-β1 increased delayed rectifier potassium current (I(K) ) amplitudes in a dose- and time-dependent manner, but did not affect the kinetic properties of the channel. Exposure to TGF-β1 (20 ng/ml) for 36 h led to a 37.2% increase in I(K) amplitudes. There was no significant change in mRNA levels for the key Kv2.1 channel protein, but translation blockade abolished the increase in protein levels and channel activity, arguing that TGF-β1 increases I(K) amplitudes by upregulating translation of the Kv2.1 channel protein. Although TGF-β1 treatment did not affect the activity of protein kinase A (PKA), and constitutive activation of PKA with forskolin failed to increase I(K) amplitudes, inhibition of PKA prevented channel upregulation, demonstrating that basal PKA activity is required for TGF-β1 stimulation of I(K) channel activity. TGF-β1 also promoted the expression of the γ-aminobutyric acid (GABA(A) ) receptor α6 subunit, a marker of mature CGNs, and calcium influx during depolarizing stimuli was reduced by TGF-β1. The effects of TGF-β1 were only observed during a narrow developmental time-window, and were lost as CGNs matured. These findings suggest that TGF-β1 upregulates K(+) channel expression and I(K) currents and thereby promotes CGN maturation."	"The augmenter of liver regeneration protects the kidneys after orthotopic liver transplantation possibly by upregulating HIF-1α and O2-sensitive K+ channels. The augmenter of liver regeneration (ALR) might promote better renal function after orthotopic liver transplantation (OLT). Using a rat allogeneic OLT model, we investigated if ALR can mediate renal protection and its potential mechanisms. Orthotopic liver transplant recipients were assigned to a cyclosporine A (CsA)-treated group (CsA group) and an ALR+CsA group (ALR group). Transplanted liver, kidneys, and serum were harvested on post-transplantation days 1, 3, and 7 for histological examination, and hepatic function and renal function analysis. We also measured the expression of hypoxiainducible factor-1 (HIF-1α) and O(2)-sensitive K(+) cannels (KV1.5 and KV2.1), and free Ca(2+) in the smooth muscle cells (SMCs) of intrarenal arterioles in the kidneys. All transplanted livers suffered mild acute rejection after OLT. Recipient kidney damage was more severe in the CsA group, characterized by increased serum creatinine, tubular epithelial apoptosis and necrosis, and the formation of casts. In the ALR group, HIF-1α, KV1.5, and KV2.1 were upregulated, accompanied by lower Ca(2+) concentration, in the SMCs shortly after OLT. Augmenter of liver regeneration might increase the expression of HIF-1α and K(+) channels and decrease intracellular free Ca(2+), thereby inhibiting arterial contraction and promoting kidney perfusion immediately after OLT."	"Identification of two novel chromosome regions associated with isolated growth hormone deficiency. The goal of this study was to identify novel candidate genes that may cause or predispose to growth hormone (GH) deficiency. DNA samples from 45 individuals with isolated GH deficiency were assessed using oligonucleotide microarray comparative genomic hybridization. Five individuals with previously unreported copy number variants were identified. Two of the five individuals were hemizygous for regions already known to cause GH deficiency (chromosomes 22q11.21 and 15q26.3). The remaining three individuals had copy number changes involving two novel chromosome regions. One individual had a homozygous deletion of a 2.2 Mb region of 13q33.1 that contains a single gene: integrin, beta-like 1 (ITGBL1). The remaining two individuals had duplications of 4.7 Mb on chromosome 20q13.13. This region includes eight genes not previously identified as copy number variants. These genes are ARFGEF2, CSE1L, DDX27, ZNFX1, C20orf199, SNORD12, KCNB1, and PTGIS. Thus, further investigations into these potential candidate genes are necessary."	"Stromatoxin-sensitive, heteromultimeric Kv2.1/Kv9.3 channels contribute to myogenic control of cerebral arterial diameter. Cerebral vascular smooth muscle contractility plays a crucial role in controlling arterial diameter and, thereby, blood flow regulation in the brain. A number of K(+) channels have been suggested to contribute to the regulation of diameter by controlling smooth muscle membrane potential (E(m)) and Ca(2+) influx. Previous studies indicate that stromatoxin (ScTx1)-sensitive, Kv2-containing channels contribute to the control of cerebral arterial diameter at 80 mmHg, but their precise role and molecular composition were not determined. Here, we tested if Kv2 subunits associate with 'silent' subunits from the Kv5, Kv6, Kv8 or Kv9 subfamilies to form heterotetrameric channels that contribute to control of diameter of rat middle cerebral arteries (RMCAs) over a range of intraluminal pressure from 10 to 100 mmHg. The predominant mRNAs expressed by RMCAs encode Kv2.1 and Kv9.3 subunits. Co-localization of Kv2.1 and Kv9.3 proteins at the plasma membrane of dissociated single RMCA myocytes was detected by proximity ligation assay. ScTx1-sensitive native current of RMCA myocytes and Kv2.1/Kv9.3 currents exhibited functional identity based on the similarity of their deactivation kinetics and voltage dependence of activation that were distinct from those of homomultimeric Kv2.1 channels. ScTx1 treatment enhanced the myogenic response of pressurized RMCAs between 40 and 100 mmHg, but this toxin also caused constriction between 10 and 40 mmHg that was not previously observed following inhibition of large conductance Ca(2+)-activated K(+) (BK(Ca)) and Kv1 channels. Taken together, this study defines the molecular basis of Kv2-containing channels and contributes to our understanding of the functional significance of their expression in cerebral vasculature. Specifically, our findings provide the first evidence of heteromultimeric Kv2.1/Kv9.3 channel expression in RMCA myocytes and their distinct contribution to control of cerebral arterial diameter over a wider range of E(m) and transmural pressure than Kv1 or BK(Ca) channels owing to their negative range of voltage-dependent activation."	"Hypoxia suppresses Kv 2.1 channel expression through endogenous 15-hydroxyeicosatetraenoic acid in rat pulmonary artery. We have previously reported that hypoxia activates lung 15-lipoxygenase (15-LOX), which catalyzes arachidonic acid to produce 15-HETE, leading to constriction of neonatal rabbit pulmonary arteries. Hypoxia suppresses Kv2.1 channel expression. Although the Kv channel inhibition by hypoxia is likely to be mediated through 15-HETE, direct evidence is still lacking. To explore whether 15-LOX/15-HETE pathway contributes to the hypoxia-induced down-regulation of Kv2.1 channel, we performed studies using 15-LOX blockers, semi-quantitative PCR and western blot analysis. We found that Kv2.1 channel expression at the mRNA and protein levels was greatly up-regulated in pulmonary arterial smooth muscle cells (PASMCs) and pulmonary artery (PA) after blockade of endogenous 15-HETE under hypoxic condition. 15-HETE further decreased Kv2.1 channel expression in comparison with 12-HETE and 5-HETE in cultured PASMCs and PA under normoxic conditions. These data indicate that hypoxia suppresses Kv2.1 channel expression through endogenous 15-HETE in PA."	"Voltage-dependent metabolic regulation of Kv2.1 channels in pancreatic beta-cells. Voltage-gated potassium channels (Kv channels) play a crucial role in formation of action potentials in response to glucose stimulation in pancreatic beta-ells. We previously reported that the Kv channel is regulated by glucose metabolism, particularly by MgATP. We examined whether the regulation of Kv channels is voltage-dependent and mechanistically related with phosphorylation of the channels. In rat pancreatic beta-cells, suppression of glucose metabolism with low glucose concentrations of 2.8mM or less or by metabolic inhibitors decreased the Kv2.1-channel activity at positive membrane potentials, while increased it at potentials negative to -10 mV, suggesting that modulation of Kv channels by glucose metabolism is voltage-dependent. Similarly, in HEK293 cells expressing the recombinant Kv2.1 channels, 0mM but not 10mM MgATP modulated the channel activity in a manner similar to that in beta-cells. Both steady-state activation and inactivation kinetics of the channel were shifted toward the negative potential in association with the voltage-dependent modulation of the channels by cytosolic dialysis of alkaline phosphatase in beta-cells. The modulation of Kv-channel current-voltage relations were also observed during and after glucose-stimulated electrical excitation. These results suggest that the cellular metabolism including MgATP production and/or channel phosphorylation/dephosphorylation underlie the physiological modulation of Kv2.1 channels during glucose-induced insulin secretion."	"A gating charge transfer center in voltage sensors. Voltage sensors regulate the conformations of voltage-dependent ion channels and enzymes. Their nearly switchlike response as a function of membrane voltage comes from the movement of positively charged amino acids, arginine or lysine, across the membrane field. We used mutations with natural and unnatural amino acids, electrophysiological recordings, and x-ray crystallography to identify a charge transfer center in voltage sensors that facilitates this movement. This center consists of a rigid cyclic &quot;cap&quot; and two negatively charged amino acids to interact with a positive charge. Specific mutations induce a preference for lysine relative to arginine. By placing lysine at specific locations, the voltage sensor can be stabilized in different conformations, which enables a dissection of voltage sensor movements and their relation to ion channel opening."	"Quantitative analysis of the effects of extracellular matrix proteins on membrane dynamics associated with corneal epithelial cell motility. Interaction of corneal epithelial cells with components of the basement membrane regulates cell morphology, adhesion, and migration. The authors examined the effects of basement membrane components on the behavior of human corneal epithelial (HCE) cells, including movement of the cell membrane in relation to the direction of cell migration. HCE cells were plated on fibronectin, laminin, collagen types I and IV, and bovine serum albumin (BSA). Cell adhesion was evaluated by staining with crystal violet. Cell movement was monitored by time-lapse microscopy, and an image processing program was developed for quantitative analysis of movement of the cell membrane in relation to the direction of cell migration. Actin cytoskeleton, focal adhesions, and the K+ channel Kv2.1 were detected by fluorescence microscopy. Laminin, fibronectin, and collagen types I and IV each promoted cell adhesion compared with that apparent with BSA. Fibronectin and collagen types I and IV, but not laminin, increased cell motility. Laminin had no effect on membrane movement compared with that observed in the presence of BSA. Collagen types I and IV each increased membrane movement but in a manner independent of the direction of cell migration. Fibronectin induced membrane movement in the direction of cell migration. Fibronectin induced the formation of thick bundles of F-actin and focal adhesions at the cell periphery and the localization of Kv2.1 at the leading edge of the cell, whereas laminin and collagen types I and IV elicited the formation of thinner bundles of F-actin and smaller focal adhesions. Fibronectin may modulate the directional migration of corneal epithelial cells."	"Zn2+ regulates Kv2.1 voltage-dependent gating and localization following ischemia. The delayed-rectifier K(+) channel Kv2.1 exists in highly phosphorylated somatodendritic clusters. Ischemia induces rapid Kv2.1 dephosphorylation and a dispersal of these clusters, accompanied by a hyperpolarizing shift in their voltage-dependent activation kinetics. Transient modulation of Kv2.1 activity and localization following ischemia is dependent on a rise in intracellular Ca(2+)and the protein phosphatase calcineurin. Here, we show that neuronal free Zn(2+)also plays a critical role in the ischemic modulation of Kv2.1. We found that sub-lethal ischemia in cultured rat cortical neurons led to characteristic hyperpolarizing shifts in K(+) current voltage dependency and pronounced dephosphorylation of Kv2.1. Zn(2+)chelation, similar to calcineurin inhibition, attenuated ischemic induced changes in K(+) channel activation kinetics. Zn(2+)chelation during ischemia also blocked Kv2.1 declustering. Surprisingly, we found that the Zn(2+)rise following ischemia occurred in spite of calcineurin inhibition. Therefore, a calcineurin-independent rise in neuronal free Zn(2+) is critical in altering Kv2.1 channel activity and localization following ischemia. The identification of Zn(2+) in mediating ischemic modulation of Kv2.1 may lead to a better understanding of cellular adaptive responses to injury."	"Regulation of Kv2.1 phosphorylation in an animal model of anoxia. Conditions such as hypoxia and anoxia inflict serious damage to the brain and continue to be major medical problems. However, the molecular mechanisms that give rise to such damage are not well understood. To elucidate these mechanisms, we established a clinically relevant rodent model of anoxia/recovery by monitoring blood gas levels after oxygen deprivation. Using this animal model, we examined the regulation of Kv2.1, a voltage-gated potassium channel that plays pivotal roles in the homeostasis and survival of neurons. We found that exposure to anoxia induces rapid dephosphorylation of Kv2.1 in the brain, which can be blocked by pre-administration of a NMDA-type glutamate receptor antagonist, memantine. Furthermore, this change is rapidly reversed as the animal recovers from anoxic stress. These results suggest that Kv2.1 is tightly regulated in a clinically relevant animal model of anoxia and further implicate its role in the homeostasis of neurons during anoxic stress."	"Non-redundant summary scores applied to the North American Rheumatoid Arthritis Consortium dataset.  After performing a genome-wide association study, it is often difficult to know which regions to follow up, especially when no one marker reaches genome-wide significance. Researchers frequently focus on their top N findings, knowing that true associations may be buried deeper in the list. Others focus on genes or regions that have multiple markers showing evidence of association. However, these markers are often in high linkage disequilibrium with one another (r2 &gt; 0.80), which indicates that these additional markers are providing redundant information. I propose a novel method that identifies regions with multiple lines of evidence, by down-weighting the contribution of additional markers in proportion to pairwise linkage disequilibrium. I have used this non-redundant summary score in my analysis of the North American Rheumatoid Arthritis Consortium dataset released as part of Genetic Analysis Workshop 16. Three regions were identified that had a genome-wide empirical p-value less than 0.01, including one novel region on chromosome 20 near the KCNB1 and PTGIS genes."	"Association of KCNB1 to rheumatoid arthritis via interaction with HLA-DRB1.  With the rapid development of large-scale high-throughput genotyping technology, genome-wide association studies have become a popular approach to mapping genes underlying common human disorders. Some genes are discovered, but many more have not been. Because these genes were not initially identified, it is reasonable to assume that their main effect is weak. We propose a method to accommodate such a situation. It is applied to the Genetic Analysis Workshop 16 Problem 1 case-control data in which shared-epitope alleles of HLA-DRB1 show very strong association with rheumatoid arthritis. Because some previous functional studies have reported association of gene KCNB1 to rheumatoid arthritis, we evaluate whether the gene KCNB1 contributes to the genetics of rheumatoid arthritis in this data set. Fifteen single-nucleotide polymorphisms from this gene were chosen. The association of KCNB1 gene to rheumatoid arthritis seems to be moderate."	"Angiotensin II exerts glucose-dependent effects on Kv currents in mouse pancreatic beta-cells via angiotensin II type 2 receptors. Hyperglycemia-associated glucotoxicity induces beta-cell apoptosis but the underlying mechanisms are unknown. Interestingly, prolonged exposure to high glucose upregulates the expression and function of the renin-angiotensin system (RAS). We hypothesize that the voltage-gated outward potassium (K(v)) current, which governs beta-cell membrane potential and insulin secretion, has a role in glucotoxicity. In this study, we investigated the effects of prolonged exposure to high glucose on mouse pancreatic beta-cells and concurrent effects on the RAS by examining changes in expression of angiotensin II (ANG II) receptors and changes in the expression and activity of K(v) channels. beta-Cells were incubated in high glucose medium for 1-7 days and then were examined with electrophysiological and molecular biology techniques. Prolonged exposure to high glucose produced a marked increase in beta-cell primary K(v) channel subunit, K(v)2.1, expression and K(v) current amplitude. Enhanced expression of ANG II type 1 receptor (AT(1)R) was also observed under high glucose conditions, whereas blockade of AT(1)R by losartan did not alter K(v) channel expression. External application of ANG II reduced K(v) current amplitude under normal, but not high, glucose conditions. The effect of ANG II on K(v) channel gating was abolished by ANG II type 2 receptor (AT(2)R) antagonism. These data suggest that hyperglycemia alters beta-cell function through modification of the K(v) channel which may be associated with the RAS."	"Suppression of a pro-apoptotic K+ channel as a mechanism for hepatitis C virus persistence. An estimated 3% of the global population are infected with hepatitis C virus (HCV), and the majority of these individuals will develop chronic liver disease. As with other chronic viruses, establishment of persistent infection requires that HCV-infected cells must be refractory to a range of pro-apoptotic stimuli. In response to oxidative stress, amplification of an outward K(+) current mediated by the Kv2.1 channel, precedes the onset of apoptosis. We show here that in human hepatoma cells either infected with HCV or harboring an HCV subgenomic replicon, oxidative stress failed to initiate apoptosis via Kv2.1. The HCV NS5A protein mediated this effect by inhibiting oxidative stress-induced p38 MAPK phosphorylation of Kv2.1. The inhibition of a host cell K(+) channel by a viral protein is a hitherto undescribed viral anti-apoptotic mechanism and represents a potential target for antiviral therapy."	"Genome-wide association study identifies single-nucleotide polymorphism in KCNB1 associated with left ventricular mass in humans: the HyperGEN Study. We conducted a genome-wide association study (GWAS) and validation study for left ventricular (LV) mass in the Family Blood Pressure Program-HyperGEN population. LV mass is a sensitive predictor of cardiovascular mortality and morbidity in all genders, races, and ages. Polymorphisms of candidate genes in diverse pathways have been associated with LV mass. However, subsequent studies have often failed to replicate these associations. Genome-wide association studies have unprecedented power to identify potential genes with modest effects on left LV mass. We describe here a GWAS for LV mass in Caucasians using the Affymetrix GeneChip Human Mapping 100 k Set. Cases (N = 101) and controls (N = 101) were selected from extreme tails of the LV mass index distribution from 906 individuals in the HyperGEN study. Eleven of 12 promising (Q &lt; 0.8) single-nucleotide polymorphisms (SNPs) from the genome-wide study were successfully genotyped using quantitative real time PCR in a validation study. Despite the relatively small sample, we identified 12 promising SNPs in the GWAS. Eleven SNPs were successfully genotyped in the validation study of 704 Caucasians and 1467 African Americans; 5 SNPs on chromosomes 5, 12, and 20 were significantly (P &lt; or = 0.05) associated with LV mass after correction for multiple testing. One SNP (rs756529) is intragenic within KCNB1, which is dephosphorylated by calcineurin, a previously reported candidate gene for LV hypertrophy within this population. These findings suggest KCNB1 may be involved in the development of LV hypertrophy in humans."	"A model of action potentials and fast Ca2+ dynamics in pancreatic beta-cells. We examined the ionic mechanisms mediating depolarization-induced spike activity in pancreatic beta-cells. We formulated a Hodgkin-Huxley-type ionic model for the action potential (AP) in these cells based on voltage- and current-clamp results together with measurements of Ca(2+) dynamics in wild-type and Kv2.1 null mouse islets. The model contains an L-type Ca(2+) current, a &quot;rapid&quot; delayed-rectifier K(+) current, a small slowly-activated K(+) current, a Ca(2+)-activated K(+) current, an ATP-sensitive K(+) current, a plasma membrane calcium-pump current and a Na(+) background current. This model, coupled with an equation describing intracellular Ca(2+) homeostasis, replicates beta-cell AP and Ca(2+) changes during one glucose-induced spontaneous spike, the effects of blocking K(+) currents with different inhibitors, and specific complex spike in mouse islets lacking Kv2.1 channels. The currents with voltage-independent gating variables can also be responsible for burst behavior. Original features of this model include new equations for L-type Ca(2+) current, assessment of the role of rapid delayed-rectifier K(+) current, and Ca(2+)-activated K(+) currents, demonstrating the important roles of the Ca(2+)-pump and background currents in the APs and bursts. This model provides acceptable fits to voltage-clamp, AP, and Ca(2+) concentration data based on in silico analysis."	"Kv2.1 and silent Kv subunits underlie the delayed rectifier K+ current in cultured small mouse DRG neurons. Silent voltage-gated K(+) (K(v)) subunits interact with K(v)2 subunits and primarily modulate the voltage dependence of inactivation of these heterotetrameric channels. Both K(v)2 and silent K(v) subunits are expressed in the mammalian nervous system, but little is known about their expression and function in sensory neurons. This study reports the presence of K(v)2.1, K(v)2.2, and silent subunit K(v)6.1, K(v)8.1, K(v)9.1, K(v)9.2, and K(v)9.3 mRNA in mouse dorsal root ganglia (DRG). Immunocytochemistry confirmed the protein expression of K(v)2.x and K(v)9.x subunits in cultured small DRG neurons. To investigate if K(v)2 and silent K(v) subunits are underlying the delayed rectifier K(+) current (I(K)) in these neurons, K(v)2-mediated currents were isolated by the extracellular application of rStromatoxin-1 (ScTx) or by the intracellular application of K(v)2 antibodies. Both ScTx- and anti-K(v)2.1-sensitive currents displayed two components in their voltage dependence of inactivation. Together, both components accounted for approximately two-thirds of I(K). A comparison with results obtained in heterologous expression systems suggests that one component reflects homotetrameric K(v)2.1 channels, whereas the other component represents heterotetrameric K(v)2.1/silent K(v) channels. These observations support a physiological role for silent K(v) subunits in small DRG neurons."	"Molecular diversity of deep short-axon cells of the rat main olfactory bulb. Local circuit GABAergic interneurons comprise the most diverse cell populations of neuronal networks. Interneurons have been characterized and categorized based on their axo-somato-dendritic morphologies, neurochemical content, intrinsic electrical properties and their firing in relation to in-vivo population activity. Great advances in our understanding of their roles have been facilitated by their selective identification. Recently, we have described three major subtypes of deep short-axon cells (dSACs) of the main olfactory bulb (MOB) based on their axo-dendritic distributions and synaptic connectivity. Here, we investigated whether dSACs also display pronounced molecular diversity and whether distinct dSAC subtypes selectively express certain molecules. Multiple immunofluorescent labeling revealed that the most commonly used molecular markers of dSACs (e.g. vasoactive intestinal polypeptide, calbindin and nitric oxide synthase) label only very small subpopulations (&lt; 7%). In contrast, voltage-gated potassium channel subunits Kv2.1, Kv3.1b, Kv4.3 and the GABA(A) receptor alpha1 subunit are present in 70-95% of dSACs without showing any dSAC subtype-selective expression. However, metabotropic glutamate receptor type 1alpha mainly labels dSACs that project to the glomerular layer (GL-dSAC subtype) and comprise approximately 20% of the total dSAC population. Analysing these molecular markers with stereological methods, we estimated the total number of dSACs in the entire MOB to be approximately 13,500, which is around a quarter of the number of mitral cells. Our results demonstrate a large molecular heterogeneity of dSACs and reveal a unique neurochemical marker for one dSAC subtype. Based on our results, dSAC subtype-specific genetic modifications will allow us to decipher the role of GL-dSACs in shaping the dynamic activity of the MOB network."	"Regulation of intrinsic excitability in hippocampal neurons by activity-dependent modulation of the KV2.1 potassium channel. KV2.1 is the prominent somatodendritic sustained or delayed rectifier voltage-gated potassium (KV) channel in mammalian central neurons, and is a target for activity-dependent modulation via calcineurin-dependent dephosphorylation. Using hanatoxin-mediated block of KV2.1 we show that, in cultured rat hippocampal neurons, glutamate stimulation leads to significant hyperpolarizing shifts in the voltage-dependent activation and inactivation gating properties of the KV2.1-component of delayed rectifier K+ (IK) currents. In computer models of hippocampal neurons, these glutamate- stimulated shifts in the gating of the KV2.1-component of IK lead to a dramatic suppression of action potential firing frequency. Current-clamp experiments in cultured rat hippocampal neurons showed glutamate stimulation induced a similar suppression of neuronal firing frequency. Membrane depolarization also resulted in similar hyperpolarizing shifts in the voltage-dependent gating properties of neuronal IK currents, and suppression of neuronal firing. The glutamate-induced effects on neuronal firing were eliminated by hanatoxin, but not by dendrotoxin-K, a blocker of KV1.1-containing channels. These studies together demonstrate a specific contribution of modulation of KV2.1 channels in the activity-dependent regulation of intrinsic neuronal excitability."	"A quantitative trait locus for SBP maps near KCNB1 and PTGIS in a population isolate. Population isolates are characterized by simplified genetic background and as such present promising opportunities for studying complex diseases. We performed a genome-wide linkage analysis for systolic (SBP) and diastolic blood pressure (DBP) followed up by the association analysis in the Croatian isolated island of Vis, where a very high prevalence of hypertension was reported (75%). Variance-components linkage analysis was used to map quantitative trait loci (QTL) for SBP and DBP in 125 families with 1,389 members. Follow-up association analysis was performed in a sample of 421 subjects from the island of Vis. The 15 top-ranking single nucleotide polymorphisms (SNPs) were selected and tested for the association by in silico replication in the British 1958 Birth Cohort DNA Collection. Linkage results showed evidence for a QTL influencing DBP (lod = 1.89) on chromosome 7p14.2 and two QTL influencing SBP (lod = 2.03 on chromosome 1p36 and lod = 1.75 on chromosome 20q13). For the association results, the replication was observed for the rs237484 polymorphism on chromosome 20 that was associated with SBP with the effect size beta = -5.2 (P = 0.001; per A allele) in Vis population and beta = -1.1 (P = 0.04) in the British 1958 Birth Cohort. rs237484 is in proximity to the potassium voltage gate channel gene (KCNB1) and close to the prostaglandin I2 (prostacyclin) synthase gene (PTGIS). These results provide evidence of a QTL influencing blood pressure (BP) variability in this region and support the notion that the isolated population of the island of Vis is a suitable population for conducting linkage and association analyses of cardiovascular-related phenotypes."	"SUMOylation regulates Kv2.1 and modulates pancreatic beta-cell excitability. The covalent attachment of small ubiquitin-like modifier (SUMO) proteins regulates protein localization and function. SUMOylation has recently been shown to modulate ion-channel function; however, the extent to which this affects native currents and cellular excitability remains to be determined. The voltage-dependent K(+) (Kv) channel Kv2.1 regulates pancreatic beta-cell excitability and insulin secretion. We found that YFP-tagged SUMO1 (SUMO1-YFP) can be immunoprecipitated with Kv2.1 when these two proteins are coexpressed in HEK 293 cells. Furthermore, direct infusion of recombinant SUMO1 peptide or coexpression of SUMO1-YFP inhibited current through cloned Kv2.1 by 80% and 48%, respectively. Insulin-secreting cells express SUMO variants 1 and 3, and expression of the SUMO1-YFP in human beta-cells or insulinoma cells inhibited native Kv currents (by 49% and 33%, respectively). Inhibition of the channel resulted from an acceleration of channel inactivation and an inhibition of recovery from inactivation, resulting in the widening of beta-cell action potentials and a decreased firing frequency. Finally, these effects on channel function and excitability were augmented by the conjugating enzyme Ubc9 and rescued by the SUMO protease SENP1. Thus, protein SUMOylation can exert a strong inhibitory action on the voltage-dependent K(+) channel Kv2.1 and can regulate cellular excitability in native beta-cells."	"Mitsugumin 53-mediated maintenance of K+ currents in cardiac myocytes. Mitsugumin 53 (MG53) is a muscle-specific RBCC/TRIM family member predominantly localized on small vesicles underneath the plasma membrane. Upon cell-surface lesion MG53 recruits the vesicles to the repair site in an oxidation-dependent manner and MG53-knockout mice develop progressive myopathy associated with defective membrane repair. In this report, we focus on MG53-knockout cardiomyocytes showing abnormal action potential profile and a reduced K+ current density. In cDNA expression experiments using cultured cells, KV2.1-mediated currents were remarkably increased by MG53 without affecting the total and cell-surface levels of channel expression. In imaging analysis MG53 seemed to facilitate the mobility of KV2.1-containing endocytic vesicles with acidic pH. However, similar effects on the current density and vesicular mobility were not observed in the putative dominant-negative form of MG53. Our data suggest that MG53 is involved in a constitutive cycle of certain cell-surface proteins between the plasma membrane and endosome-like vesicles in striated muscle, and also imply that the vesicular dynamics are essential for the quality control of KV2.1 in cardiomyocytes."	"Role of protein kinase C in 15-HETE-induced hypoxic pulmonary vasoconstriction. The aim of the present study was to investigate the roles of protein kinase C (PKC) signal transduction pathway in the 15-hydroxyeicosatetraenoic acid (15-HETE)-induced down-regulation expression of K(V) 1.5, K(V) 2.1 and K(V) 3.4, and pulmonary vasoconstriction under hypoxia. Tension measurements on rat pulmonary artery (PA) rings, Western blots, semi-quantitative PCR and whole-cell patch-clamp technique were employed to investigate the effects of 15-HETE on PKC and K(V) channels. Hypericin (6.8 micromol/L), a PKC inhibitor, significantly attenuated the constriction of PA rings to 15-HETE under hypoxia. The down-regulation of K(V) 1.5, K(V) 2.1 and K(V) 3.4 channel expression and inhibition of whole-cell K currents (I(K)(V)) induced by 15-HETE were rescued and restored, respectively, by hypericin. These studies indicate that the PKC signal transduction pathway is involved in 15-HETE-induced rat pulmonary vasoconstriction under hypoxia. 15-HETE suppresses the expression of K(V) 1.5, K(V) 2.1 and K(V) 3.4 channels and inhibits I(K)(V) through the PKC signaling pathway in pulmonary arterial smooth muscle cells."	"SNAP-25(1-180) enhances insulin secretion by blocking Kv2.1 channels in rat pancreatic islet beta-cells. Voltage-gated outward K(+) currents from pancreatic islet beta-cells are known to repolarize the action potential during a glucose stimulus, and consequently to modulate Ca(2+) entry and insulin secretion. The voltage gated K(+) (Kv) channel, Kv2.1, which is expressed in rat islet beta-cells, mediates over 60% of the Kv outward K(+) currents. A novel peptidyl inhibitor of Kv2.1/Kv2.2 channels, guangxitoxin (GxTX)-1, has been shown to enhance glucose-stimulated insulin secretion. Here, we show that SNAP-25(1-180) (S180), an N-terminal SNAP-25 domain, but not SNAP-25(1-206) (S206), inhibits Kv current and enhances glucose-dependent insulin secretion from rat pancreatic islet beta-cells, and furthermore, this enhancement was induced by the blockade of the Kv2.1 current. This study indicates that the Kv2.1 channel is a potential target for novel therapeutic agent design for the treatment of type 2 diabetes. This target may possess advantages over currently-used therapies, which modulate insulin secretion in a glucose-independent manner."	"The Kv2.1 channels mediate neuronal apoptosis induced by excitotoxicity. Chronic loss of intracellular K(+) can induce neuronal apoptosis in pathological conditions. However, the mechanism by which the K(+) channels are regulated in this process remains largely unknown. Here, we report that the increased membrane expression of Kv2.1 proteins in cortical neurons deprived of serum, a condition known to induce K(+) loss, promotes neuronal apoptosis. The increase in I(K) current density and apoptosis in the neurons deprived of serum were inhibited by a dominant negative form of Kv2.1 and MK801, an antagonist to NMDA receptors. The membrane level of Kv2.1 and its interaction with SNAP25 were increased, whereas the Kv2.1 phosphorylation was inhibited in the neurons deprived of serum. Botulinum neurotoxin, an agent known to prevent formation of soluble N-ethylmaleimide-sensitive factor attachment protein receptor complex, suppressed the increase in I(K) current density. Together, these results suggest that NMDA receptor-dependent Kv2.1 membrane translocation is regulated by a soluble N-ethylmaleimide-sensitive factor attachment protein receptor-dependent vesicular trafficking mechanism and is responsible for neuronal cell death induced by chronic loss of K(+)."	"Mutation of histidine 105 in the T1 domain of the potassium channel Kv2.1 disrupts heteromerization with Kv6.3 and Kv6.4. The voltage-activated K(+) channel subunit Kv2.1 can form heterotetramers with members of the Kv6 subfamily, generating channels with biophysical properties different from homomeric Kv2.1 channels. The N-terminal tetramerization domain (T1) has been shown previously to play a role in Kv channel assembly, but the mechanisms controlling specific heteromeric assembly are still unclear. In Kv6.x channels the histidine residue of the zinc ion-coordinating C3H1 motif of Kv2.1 is replaced by arginine or valine. Using a yeast two-hybrid assay, we found that substitution of the corresponding histidine 105 in Kv2.1 by valine (H105V) or arginine (H105R) disrupted the interaction of the T1 domain of Kv2.1 with the T1 domains of both Kv6.3 and Kv6.4, whereas interaction of the T1 domain of Kv2.1 with itself was unaffected by this mutation. Using fluorescence resonance energy transfer (FRET), interaction could be detected between the subunits Kv2.1/Kv2.1, Kv2.1/Kv6.3, and Kv2.1/Kv6.4. Reduced FRET signals were obtained after co-expression of Kv2.1(H105V) or Kv2.1(H105R) with Kv6.3 or Kv6.4. Wild-type Kv2.1 but not Kv2.1(H105V) could be co-immunoprecipitated with Kv6.4. Co-expression of dominant-negative mutants of Kv6.3 reduced the current produced Kv2.1, but not of Kv2.1(H105R) mutants. Co-expression of Kv6.3 or Kv6.4 with wt Kv2.1 but not with Kv2.1(H105V) or Kv2.1(H105R) changed the voltage dependence of activation of the channels. Our results suggest that His-105 in the T1 domain of Kv2.1 is required for functional heteromerization with members of the Kv6 subfamily. We conclude from our findings that Kv2.1 and Kv6.x subunits have complementary T1 domains that control selective heteromerization."	"The Kv2.1 K+ channel targets to the axon initial segment of hippocampal and cortical neurons in culture and in situ. The Kv2.1 delayed-rectifier K+ channel regulates membrane excitability in hippocampal neurons where it targets to dynamic cell surface clusters on the soma and proximal dendrites. In the past, Kv2.1 has been assumed to be absent from the axon initial segment. Transfected and endogenous Kv2.1 is now demonstrated to preferentially accumulate within the axon initial segment (AIS) over other neurite processes; 87% of 14 DIV hippocampal neurons show endogenous channel concentrated at the AIS relative to the soma and proximal dendrites. In contrast to the localization observed in pyramidal cells, GAD positive inhibitory neurons within the hippocampal cultures did not show AIS targeting. Photoactivable-GFP-Kv2.1-containing clusters at the AIS were stable, moving &lt;1 microm/hr with no channel turnover. Photobleach studies indicated individual channels within the cluster perimeter were highly mobile (FRAP tau=10.4+/-4.8 sec), supporting our model that Kv2.1 clusters are formed by the retention of mobile channels behind a diffusion-limiting perimeter. Demonstrating that the AIS targeting is not a tissue culture artifact, Kv2.1 was found in axon initial segments within both the adult rat hippocampal CA1, CA2, and CA3 layers and cortex. In summary, Kv2.1 is associated with the axon initial segment both in vitro and in vivo where it may modulate action potential frequency and back propagation. Since transfected Kv2.1 initially localizes to the AIS before appearing on the soma, it is likely multiple mechanisms regulate Kv2.1 trafficking to the cell surface."	"Formation of Kv2.1-FAK complex as a mechanism of FAK activation, cell polarization and enhanced motility. Focal adhesion kinase (FAK) plays key roles in cell adhesion and migration. We now report that the delayed rectifier Kv2.1 potassium channel, through its LD-like motif in N-terminus, may interact with FAK and enhance phosphorylation of FAK(397) and FAK(576/577). Overlapping distribution of Kv2.1 and FAK was observed on soma and proximal dendrites of cortical neurons. FAK expression promotes a polarized membrane distribution of the Kv2.1 channel. In Kv2.1-transfected CHO cells, formation of the Kv2.1-FAK complex was stimulated by fibronectin/integrin and inhibited by the K(+) channel blocker tetraethylammonium (TEA). FAK phosphorylation was minimized by shRNA knockdown of the Kv2.1 channel, point mutations of the N-terminus, and TEA, respectively. Cell migration morphology was altered by Kv2.1 knockdown or TEA, hindering cell migration activity. In wound healing tests in vitro and a traumatic injury animal model, Kv2.1 expression and co-localization of Kv2.1 and FAK significantly enhanced directional cell migration and wound closure. It is suggested that the Kv2.1 channel may function as a promoting signal for FAK activation and cell motility."	"NFATc3 regulates BK channel function in murine urinary bladder smooth muscle. The nuclear factor of activated T-cells (NFAT) is a Ca(2+)-dependent transcription factor that has been reported to regulate the expression of smooth muscle contractile proteins and ion channels. Here we report that large conductance Ca(2+)-sensitive potassium (BK) channels and voltage-gated K(+) (K(V)) channels may be regulatory targets of NFATc3 in urinary bladder smooth muscle (UBSM). UBSM myocytes from NFATc3-null mice displayed a reduction in iberiotoxin (IBTX)-sensitive BK currents, a decrease in mRNA for the pore-forming alpha-subunit of the BK channel, and a reduction in BK channel density compared with myocytes from wild-type mice. Tetraethylammonium chloride-sensitive K(V) currents were elevated in UBSM myocytes from NFATc3-null mice, as was mRNA for the Shab family member K(V)2.1. Despite K(V) current upregulation, bladder strips from NFATc3-null mice displayed an elevated contractile response to electrical field stimulation relative to strips from wild-type mice, but this difference was abrogated in the presence of the BK channel blocker IBTX. These results support a role for the transcription factor NFATc3 in regulating UBSM contractility, primarily through an NFATc3-dependent increase in BK channel activity."	"VAMP2 interacts directly with the N terminus of Kv2.1 to enhance channel inactivation. Recently, we demonstrated that the Kv2.1 channel plays a role in regulated exocytosis of dense-core vesicles (DCVs) through direct interaction of its C terminus with syntaxin 1A, a plasma membrane soluble NSF attachment receptor (SNARE) component. We report here that Kv2.1 interacts with VAMP2, the vesicular SNARE partner that is also present at high concentration in neuronal plasma membrane. This is the first report of VAMP2 interaction with an ion channel. The interaction was demonstrated in brain membranes and characterized using electrophysiological and biochemical analyses in Xenopus oocytes combined with an in vitro binding analysis and protein modeling. Comparative study performed with wild-type and mutant Kv2.1, wild-type Kv1.5, and chimeric Kv1.5N/Kv2.1 channels revealed that VAMP2 enhanced the inactivation of Kv2.1, but not of Kv1.5, via direct interaction with the T1 domain of the N terminus of Kv2.1. Given the proposed role for surface VAMP2 in the regulation of the vesicle cycle and the important role for the sustained Kv2.1 current in the regulation of dendritic calcium entry during high-frequency stimulation, the interaction of VAMP2 with Kv2.1 N terminus may contribute, alongside with the interaction of syntaxin with Kv2.1 C terminus, to the activity dependence of DCV release."	"Delayed rectifier and A-type potassium channels associated with Kv 2.1 and Kv 4.3 expression in embryonic rat neural progenitor cells. Because of the importance of voltage-activated K(+) channels during embryonic development and in cell proliferation, we present here the first description of these channels in E15 rat embryonic neural progenitor cells derived from the subventricular zone (SVZ). Activation, inactivation, and single-channel conductance properties of recorded progenitor cells were compared with those obtained by others when these Kv gene products were expressed in oocytes. Neural progenitor cells derived from the subventricular zone of E15 embryonic rats were cultured under conditions that did not promote differentiation. Immunocytochemical and Western blot assays for nestin expression indicated that almost all of the cells available for recording expressed this intermediate filament protein, which is generally accepted as a marker for uncommitted embryonic neural progenitor cells. However, a very small numbers of the cells expressed GFAP, a marker for astrocytes, O4, a marker for immature oligodendrocytes, and betaIII-tubulin, a marker for neurons. Using immunocytochemistry and Western blots, we detected consistently the expression of Kv2.1, and 4.3. In whole-cell mode, we recorded two outward currents, a delayed rectifier and an A-type current. We conclude that Kv2.1, and 4.3 are expressed in E15 SVZ neural progenitor cells, and we propose that they may be associated with the delayed-rectifier and the A-type currents, respectively, that we recorded. These results demonstrate the early expression of delayed rectifier and A-type K(+) currents and channels in embryonic neural progenitor cells prior to the differentiation of these cells."	"Single particle image reconstruction of the human recombinant Kv2.1 channel. Kv2.1 channels are widely expressed in neuronal and endocrine cells and generate slowly activating K+ currents, which contribute to repolarization in these cells. Kv2.1 is expressed at high levels in the mammalian brain and is a major component of the delayed rectifier current in the hippocampus. In addition, Kv2.1 channels have been implicated in the regulation of membrane repolarization, cytoplasmic calcium levels, and insulin secretion in pancreatic beta-cells. They are therefore an important drug target for the treatment of Type II diabetes mellitus. We used electron microscopy and single particle image analysis to derive a three-dimensional density map of recombinant human Kv2.1. The tetrameric channel is egg-shaped with a diameter of approximately 80 A and a long axis of approximately 120 A. Comparison to known crystal structures of homologous domains allowed us to infer the location of the cytoplasmic and transmembrane assemblies. There is a very good fit of the Kv1.2 crystal structure to the assigned transmembrane assembly of Kv2.1. In other low-resolution maps of K+ channels, the cytoplasmic N-terminal and transmembrane domains form separate rings of density. In contrast, Kv2.1 displays contiguous density that connects the rings, such that there are no large windows between the channel interior and the cytoplasmic space. The crystal structure of KcsA is thought to be in a closed conformation, and the good fit of the KcsA crystal structure to the Kv2.1 map suggests that our preparations of Kv2.1 may also represent a closed conformation. Substantial cytoplasmic density is closely associated with the T1 tetramerization domain and is ascribed to the approximately 184 kDa C-terminal regulatory domains within each tetramer."	"Voltage gated K+ channel expression in arteries of Wistar-Kyoto and spontaneously hypertensive rats. We have previously demonstrated differences in the gene expression of voltage-gated K v1.X channel alpha-subunits in arteries from Wistar-Kyoto rats (WKYs) and spontaneously hypertensive rats (SHRs). The purpose of this study was to test the hypothesis that these differences are also present at the protein level. Proteins were isolated from the aorta, mesenteric (MAs) and tail arteries (TAs) of 12- to 15-week-old male WKY and SHR, and analyzed by immunoblotting. K(v) currents were recorded from MA myocytes by patch clamp methods. Expression of Kv1.2, Kv1.5, and Kv2.1 was higher in MAs but was not different in aortas of SHRs as compared to WKYs. In the TA, expression of Kv1.2 and Kv1.5 was higher while that of Kv2.1 was lower in SHR compared to WKY. In the MA, the larger expression of an 80 kDa species of Kv1.2 in SHRs was associated with a lower expression of a 60 kDa species. Kv2.1 gene expression was larger in MAs from SHRs but not different in TAs. K(v) currents associated with Kv1.X and Kv2.1 channels were both larger in MA myocytes from SHRs but less than expected based upon differences in K(v) alpha-subunit protein expression. For the MA, K(v) protein expression and current components between WKYs and SHRs were qualitatively consistent, but differences in gene and protein expression were not closely correlated. The higher expression of K(v) subunits in small mesenteric arteries (SMAs) of SHR would tend to maintain normal myogenic activity and vasoconstrictor reserve, and could be viewed as a form of homeostatic remodeling."	"Direct interaction of endogenous Kv channels with syntaxin enhances exocytosis by neuroendocrine cells. K(+) efflux through voltage-gated K(+) (Kv) channels can attenuate the release of neurotransmitters, neuropeptides and hormones by hyperpolarizing the membrane potential and attenuating Ca(2+) influx. Notably, direct interaction between Kv2.1 channels overexpressed in PC12 cells and syntaxin has recently been shown to facilitate dense core vesicle (DCV)-mediated release. Here, we focus on endogenous Kv2.1 channels and show that disruption of their interaction with native syntaxin after ATP-dependent priming of the vesicles by Kv2.1 syntaxin-binding peptides inhibits Ca(2+) -triggered exocytosis of DCVs from cracked PC12 cells in a specific and dose-dependent manner. The inhibition cannot simply be explained by the impairment of the interaction of syntaxin with its SNARE cognates. Thus, direct association between endogenous Kv2.1 and syntaxin enhances exocytosis and in combination with the Kv2.1 inhibitory effect to hyperpolarize the membrane potential, could contribute to the known activity dependence of DCV release in neuroendocrine cells and in dendrites where Kv2.1 commonly expresses and influences release."	"Atomic structure of a voltage-dependent K+ channel in a lipid membrane-like environment. Voltage-dependent K+ (Kv) channels repolarize the action potential in neurons and muscle. This type of channel is gated directly by membrane voltage through protein domains known as voltage sensors, which are molecular voltmeters that read the membrane voltage and regulate the pore. Here we describe the structure of a chimaeric voltage-dependent K+ channel, which we call the 'paddle-chimaera channel', in which the voltage-sensor paddle has been transferred from Kv2.1 to Kv1.2. Crystallized in complex with lipids, the complete structure at 2.4 ångström resolution reveals the pore and voltage sensors embedded in a membrane-like arrangement of lipid molecules. The detailed structure, which can be compared directly to a large body of functional data, explains charge stabilization within the membrane and suggests a mechanism for voltage-sensor movements and pore gating."	"Microglia induce neurotoxicity via intraneuronal Zn(2+) release and a K(+) current surge. Microglial cells are critical components of the injurious cascade in a large number of neurodegenerative diseases. However, the precise molecular mechanisms by which microglia mediate neuronal cell death have not been fully delineated. We report here that reactive species released from activated microglia induce the liberation of Zn(2+) from intracellular stores in cultured cortical neurons, with a subsequent enhancement in neuronal voltage-gated K(+) currents, two events that have been intimately linked to apoptosis. Both the intraneuronal Zn(2+) release and the K(+) current surge could be prevented by the NADPH oxidase inhibitor apocynin, the free radical scavenging mixture of superoxide dismutase and catalase, as well as by 5,10,15,20-tetrakis(4-sulfonatophenyl)porphyrinato iron(III) chloride. The enhancement of K(+) currents was prevented by neuronal overexpression of metallothionein III or by expression of a dominant negative (DN) vector for the upstream mitogen-activated protein kinase apoptosis signal regulating kinase-1 (ASK-1). Importantly, neurons overexpressing metallothionein-III or transfected with DN vectors for ASK-1 or Kv2.1-encoded K(+) channels were resistant to microglial-induced toxicity. These results establish a direct link between microglial-generated oxygen and nitrogen reactive products and neuronal cell death mediated by intracellular Zn(2+) release and a surge in K(+) currents."	"Kv2.1 ablation alters glucose-induced islet electrical activity, enhancing insulin secretion. Voltage-gated potassium currents (Kv), primarily due to Kv2.1 channels, are activated by glucose-stimulated pancreatic beta cell depolarization, but the exact role (or roles) of this channel in regulating insulin secretion remains uncertain. Here we report that, compared with controls, Kv2.1 null mice have reduced fasting blood glucose levels and elevated serum insulin levels. Glucose tolerance is improved and insulin secretion is enhanced compared to control animals, with similar results in isolated islets in vitro. Isolated Kv2.1(-/-) beta cells have residual Kv currents, which are decreased by 83% at +50 mV compared with control cells. The glucose-induced action potential (AP) duration is increased while the firing frequency is diminished, similar to the effect of specific toxins on control cells but substantially different from the effect of the less specific blocker tetraethylammonium. These results reveal the specific role of Kv2.1 in modulating glucose-stimulated APs of beta cells, exposing additional important currents involved in regulating physiological insulin secretion."	"Postnatal development has a marked effect on ventricular repolarization in mice. To better understand the mechanisms that underlie cardiac repolarization abnormalities in the immature heart, this study characterized and compared K(+) currents in mouse ventricular myocytes from day 1, day 7, day 20, and adult CD1 mice to determine the effects of postnatal development on ventricular repolarization. Current- and patch-clamp techniques were used to examine action potentials and the K(+) currents underlying repolarization in isolated myocytes. RT-PCR was used to quantify mRNA expression for the K(+) channels of interest. This study found that action potential duration (APD) decreased as age increased, with the shortest APDs observed in adult myocytes. This study also showed that K(+) currents and the mRNA relative abundance for the various K(+) channels were significantly greater in adult myocytes compared with day 1 myocytes. Examination of the individual components of total K(+) current revealed that the inward rectifier K(+) current (I(K1)) developed by day 7, both the Ca(2+)-independent transient outward current (I(to)) and the steady-state outward K(+) current (I(ss)) developed by day 20, and the ultrarapid delayed rectifier K(+) current (I(Kur)) did not fully develop until the mouse reached maturity. Interestingly, the increase in I(Kur) was not associated with a decrease in APD. Comparison of atrial and ventricular K(+) currents showed that I(to) and I(Kur) density were significantly greater in day 7, day 20, and adult myocytes compared with age-matched atrial cells. Overall, it appears that, in mouse ventricle, developmental changes in APD are likely attributable to increases in I(to), I(ss), and I(K1), whereas the role of I(Kur) during postnatal development appears to be less critical to APD."	"Characterization of the heteromeric potassium channel formed by kv2.1 and the retinal subunit kv8.2 in Xenopus oocytes. Kv8.2 (KCNV2) subunits do not form homotetrameric potassium channels, although they coassemble with Kv2.1 to constitute functional heteromers. High expression of Kv8.2 was reported in the human retina and its mutations were linked to the visual disorder &quot;cone dystrophy with supernormal rod electroretinogram.&quot; We detected abundant Kv8.2 expression in the photoreceptor layer of mouse retina, where Kv2.1 is also known to be present. When the two subunits were coexpressed in Xenopus oocytes in equal amounts, Kv8.2 abolished the current of Kv2.1. If the proportion of Kv8.2 was reduced then the current of heteromeric channels emerged. Kv8.2 shifted the steady-state activation of Kv2.1 to more negative potentials, without affecting the voltage dependence of inactivation. This gave rise to a window current within the -40 to -10 mV membrane potential range. Ba2+ inhibited the heteromeric channel and shifted its activation to more positive potentials. These electrophysiological and pharmacological properties resemble those of the voltage-gated K+ current (named I Kx) described in amphibian retinal rods. Furthermore, oocytes expressing Kv2.1/Kv8.2 developed transient hyperpolarizing overshoots in current-clamp experiments, whereas those expressing only Kv2.1 failed to do so. Similar overshoots are characteristic responses of photoreceptors to light flashes. We demonstrated that Kv8.2 G476D, analogous to a disease-causing human mutation, eliminated Kv2.1 current, if the subunits were coexpressed equally. However, Kv8.2 G476D did not form functional heteromers under any conditions. Therefore we suggest that the custom-tailored current of Kv2.1/Kv8.2 functionally contributes to photoreception, and this is the reason that mutations of Kv8.2 lead to a genetic visual disorder."	"Solution structure of Jingzhaotoxin-III, a peptide toxin inhibiting both Nav1.5 and Kv2.1 channels. Jingzhaotoxin-III (JZTX-III) is a peptide toxin isolated from the venom of the Chinese spider Chilobrachys jingzhao that inhibits Nav channels of rat cardiac myocytes by modifying voltage-dependent gating and also binds to Kv2.1 channel (Kd = 0.43 microM) with an action model similar to that of hanatoxin1 and SGTx1. The solution structure of JZTX-III was determined by (1)H 2D NMR method. The toxin adopts an ICK motif composed of three beta-strands connected by four turns. Structural comparison of JZTX-III with those of other ICK motif peptides shows that they all adopt a conserved surface profile, a hydrophobic patch surrounded by charged residues, which might be the crucial site for voltage-gating ion channel inhibition. Furthermore, the similar action model of JZTX-III affecting both Kv and Nav channels implies that JZTX-III recognized a conserved receptor within the voltage sensing domains, which is similar to that of hanatoxin1 binding to both Kv and Cav channels."	"Kv2 subunits underlie slowly inactivating potassium current in rat neocortical pyramidal neurons. We determined the expression of Kv2 channel subunits in rat somatosensory and motor cortex and tested for the contributions of Kv2 subunits to slowly inactivating K+ currents in supragranular pyramidal neurons. Single cell RT-PCR showed that virtually all pyramidal cells expressed Kv2.1 mRNA and approximately 80% expressed Kv2.2 mRNA. Immunocytochemistry revealed striking differences in the distribution of Kv2.1 and Kv2.2 subunits. Kv2.1 subunits were clustered and located on somata and proximal dendrites of all pyramidal cells. Kv2.2 subunits were primarily distributed on large apical dendrites of a subset of pyramidal cells from deep layers. We used two methods for isolating currents through Kv2 channels after excluding contributions from Kv1 subunits: intracellular diffusion of Kv2.1 antibodies through the recording pipette and extracellular application of rStromatoxin-1 (ScTx). The Kv2.1 antibody specifically blocked the slowly inactivating K+ current by 25-50% (at 8 min), demonstrating that Kv2.1 subunits underlie much of this current in neocortical pyramidal neurons. ScTx (300 nM) also inhibited approximately 40% of the slowly inactivating K+ current. We observed occlusion between the actions of Kv2.1 antibody and ScTx. In addition, Kv2.1 antibody- and ScTx-sensitive currents demonstrated similar recovery from inactivation and voltage dependence and kinetics of activation and inactivation. These data indicate that both agents targeted the same channels. Considering the localization of Kv2.1 and 2.2 subunits, currents from truncated dissociated cells are probably dominated by Kv2.1 subunits. Compared with Kv2.1 currents in expression systems, the Kv2.1 current in neocortical pyramidal cells activated and inactivated at relatively negative potentials and was very sensitive to holding potential."	"The K+ channel gene, Kcnb1: genomic structure and characterization of its 5'-regulatory region as part of an overlapping gene group. Kcnb1 expression is down-regulated in certain types of cardiomyopathy. As a first step towards understanding Kcnb1 regulation, we determined its genomic structure and characterized its 5'-regulatory region. Two species of Kcnb1 mRNA were found to arise from alternative usage of two highly GC-rich promoters (P1, P2). While transcripts arising from P1 were mainly detected in brain, P2 transcripts were highly expressed in heart and brain. Core regulatory regions were characterized for P1 and P2. The mutation of a potential Nur77/Nurr1/NOR-1 binding site, NBRE(Kcnb1), conserved in both human and mouse, resulted in a significant decrease in basal P2 promoter activity. Luciferase activities of the longest promoter-reporter construct reflected the level of endogenous Kcnb1 mRNA in myoblast, smooth muscle, and pituitary cell lines. Hyperosmolarity increased Kcnb1 mRNA concentration two-fold, mainly at the transcriptional level in clonal pituitary cells. These findings provide a basis for future studies of (post)transcriptional mechanism(s) down-regulating Kcnb1 expression in a variety of cardiomyopathies and point towards a possible involvement of Kcnb1 in pituitary cell excitability and secretory activity regulated by osmolarity."	"Bone morphogenetic protein-2 upregulates expression and function of voltage-gated K+ channels in human pulmonary artery smooth muscle cells. Activity of voltage-gated K(+) (K(V)) channels in pulmonary artery smooth muscle cells (PASMC) plays an important role in control of apoptosis and proliferation in addition to regulating membrane potential and pulmonary vascular tone. Bone morphogenetic proteins (BMPs) inhibit proliferation and induce apoptosis in normal human PASMC, whereas dysfunctional BMP signaling and downregulated K(V) channels are involved in pulmonary vascular medial hypertrophy associated with pulmonary hypertension. This study evaluated the effect of BMP-2 on K(V) channel function and expression in normal human PASMC. BMP-2 (100 nM for 18-24 h) significantly (&gt;2-fold) upregulated mRNA expression of KCNA5, KCNA7, KCNA10, KCNC3, KCNC4, KCNF1, KCNG3, KCNS1, and KCNS3 but downregulated (at least 2-fold) KCNAB1, KCNA2, KCNG2, and KCNV2. The most dramatic change was the &gt;10-fold downregulation of KCNG2 and KCNV2, two electrically silent gamma-subunits that form heterotetramers with functional K(V) channel alpha-subunits (e.g., KCNB1-2). Furthermore, the amplitude and current density of whole cell K(V) currents were significantly increased in PASMC treated with BMP-2. It has been demonstrated that K(+) currents generated by KCNB1 and KCNG1 (or KCNG2) or KCNB1 and KCNV2 heterotetramers are smaller than those generated by KCNB1 homotetramers, indicating that KCNG2 and KCNV2 (2 subunits that were markedly downregulated by BMP-2) are inhibitors of functional K(V) channels. These results suggest that BMP-2 divergently regulates mRNA expression of various K(V) channel alpha-, beta-, and gamma-subunits and significantly increases whole cell K(V) currents in human PASMC. Finally, we present evidence that attenuation of c-Myc expression by BMP-2 may be involved in BMP-2-mediated increase in K(V) channel activity and regulation of K(V) channel expression. The increased K(V) channel activity may be involved in the proapoptotic and/or antiproliferative effects of BMP-2 on PASMC."	"Insensitivity of cardiac delayed-rectifier I(Kr) to tyrosine phosphorylation inhibitors and stimulators. 1. The rapidly activating delayed-rectifying K+ current (I(Kr)) in heart cells is an important determinant of repolarisation, and decreases in its density are implicated in acquired and inherited long QT syndromes. The objective of the present study on I(Kr) in guinea-pig ventricular myocytes was to evaluate whether the current is acutely regulated by tyrosine phosphorylation. 2. Myocytes configured for ruptured-patch or perforated-patch voltage-clamp were depolarised with 200-ms steps to 0 mV for measurement of I(Kr) tail amplitude on repolarisations to -40 mV. 3. I(Kr) in both ruptured-patch and perforated-patch myocytes was only moderately (14-20%) decreased by 100 microM concentrations of protein tyrosine kinase (PTK) inhibitors tyrphostin A23, tyrphostin A25, and genistein. However, similar-sized decreases were induced by PTK-inactive analogues tyrphostin A1 and daidzein, suggesting that they were unrelated to inhibition of PTK. 4. Ruptured-patch and perforated-patch myocytes were also treated with promoters of tyrosine phosphorylation, including phosphotyrosyl phosphatase (PTP) inhibitor orthovanadate, exogenous c-Src PTK, and four receptor PTK activators (insulin, insulin-like growth factor-1, epidermal growth factor, and basic fibroblast growth factor). None of these treatments had a significant effect on the amplitude of I(Kr). 5. We conclude that Kr channels in guinea-pig ventricular myocytes are unlikely to be regulated by PTK and PTP."	"Modulation of Kv2.1 channel gating and TEA sensitivity by distinct domains of SNAP-25. Distinct domains within the SNARE (soluble N-ethylmaleimide-sensitive fusion protein attachment protein receptor) proteins, STX1A (syntaxin 1A) and SNAP-25 (synaptosome-associated protein-25 kDa), regulate hormone secretion by their actions on the cell's exocytotic machinery, as well as voltage-gated Ca2+ and K+ channels. We examined the action of distinct domains within SNAP-25 on Kv2.1 (voltage gated K+ 2.1) channel gating. Dialysis of N-terminal SNAP-25 domains, S197 (SNAP-25(1-197)) and S180 (SNAP-25(1-180)), but not S206 (full-length SNAP-25(1-206)) increased the rate of Kv2.1 channel activation and slowed channel inactivation. Remarkably, these N-terminal SNAP-25 domains, acting on the Kv2.1 cytoplasmic N-terminus, potentiated the external TEA (tetraethylammonium)-mediated block of Kv2.1. To further examine whether these are effects of the channel pore domain, internal K+ was replaced with Na+ and external K+ was decreased from 4 to 1 mM, which decreased the IC50 of the TEA block from 6.8+/-0.9 mM to &gt;100 mM. Under these conditions S180 completely restored TEA sensitivity (7.9+/-1.5 mM). SNAP-25 C-terminal domains, SNAP-25(198-206) and SNAP-25(181-197), had no effect on Kv2.1 gating kinetics. We conclude that different domains within SNAP-25 can form distinct complexes with Kv2.1 to execute a fine allosteric regulation of channel gating and the architecture of the outer pore structure in order to modulate cell excitability."	"Domain analysis of Kv6.3, an electrically silent channel. The subunit Kv6.3 encodes a voltage-gated potassium channel belonging to the group of electrically silent Kv subunits, i.e. subunits that do not form functional homotetrameric channels. The lack of current, caused by retention in the endoplasmic reticulum (ER), was overcome by coexpression with Kv2.1. To investigate whether a specific section of Kv6.3 was responsible for ER retention, we constructed chimeric subunits between Kv6.3 and Kv2.1, and analysed their subcellular localization and functionality. The results demonstrate that the ER retention of Kv6.3 is not caused by the N-terminal A and B box (NAB) domain nor the intracellular N- or C-termini, but rather by the S1-S6 core protein. Introduction of individual transmembrane segments of Kv6.3 in Kv2.1 was tolerated, with the exception of S6. Indeed, introduction of the S6 domain of Kv6.3 in Kv2.1 was enough to cause ER retention, which was due to the C-terminal section of S6. The S4 segment of Kv6.3 could act as a voltage sensor in the Kv2.1 context, albeit with a major hyperpolarizing shift in the voltage dependence of activation and inactivation, apparently caused by the presence of a tyrosine in Kv6.3 instead of a conserved arginine. This study suggests that the silent behaviour of Kv6.3 is largely caused by the C-terminal part of its sixth transmembrane domain that causes ER retention of the subunit."	"Delayed-rectifier (KV2.1) regulation of pancreatic beta-cell calcium responses to glucose: inhibitor specificity and modeling. The delayed-rectifier (voltage-activated) K(+) conductance (K(V)) in pancreatic islet beta-cells has been proposed to regulate plasma membrane repolarization during responses to glucose, thereby determining bursting and Ca(2+) oscillations. Here, we verified the expression of K(V)2.1 channel protein in mouse and human islets of Langerhans. We then probed the function of K(V)2.1 channels in islet glucose responses by comparing the effect of hanatoxin (HaTx), a specific blocker of K(V)2.1 channels, with a nonspecific K(+) channel blocker, tetraethylammonium (TEA). Application of HaTx (1 microM) blocked delayed-rectifier currents in mouse beta-cells, resulting in a 40-mV rightward shift in threshold of activation of the voltage-dependent outward current. In the presence of HaTx, there was negligible voltage-activated outward current below 0 mV, suggesting that K(V)2.1 channels form the predominant part of this current in the physiologically relevant range. We then employed HaTx to study the role of K(V)2.1 in the beta-cell Ca(2+) responses to elevated glucose in comparison with TEA. Only HaTx was able to induce slow intracellular Ca(2+) concentration ([Ca(2+)](i)) oscillations in cells stimulated with 20 mM glucose, whereas TEA induced an immediate rise in [Ca(2+)](i) followed by rapid oscillations. In human islets, HaTx acted in a similar fashion. The data were analyzed using a detailed mathematical model of ionic flux and Ca(2+) regulation in beta-cells. The results can be explained by a specific HaTx effect on the K(V) current, whereas TEA affects multiple K(+) conductances. The results underscore the importance of K(V)2.1 channel in repolarization of the pancreatic beta-cell plasma membrane and its role in regulating insulin secretion."	"Fluorescence measurements reveal stoichiometry of K+ channels formed by modulatory and delayed rectifier alpha-subunits. Modulatory alpha-subunits, which comprise one-fourth of all voltagegated K(+) channel (Kv) alpha-subunits, do not assemble into homomeric channels, but selectively associate with delayed rectifier Kv2 subunits to form heteromeric channels of unknown stoichiometry. Their distinct expression patterns and unique functional properties have made these channels candidate molecular correlates for a broad set of native K(+) currents. Here, we combine FRET and electrophysiological measurements to determine the stoichiometry and geometry of heteromeric channels composed of the delayed rectifier Kv2.1 subunit and the modulatory Kv9.3 alpha-subunit. Kv channel alpha-subunits were fused with GFP variants, and heteromerization of different combinations of tagged and untagged alpha-subunits was studied. FRET, evaluated by acceptor photobleaching, was only observed upon formation of functional channels. Our results, obtained from two independent experimental paradigms, suggest the formation of heteromeric Kv2.1/Kv9.3 channels of fixed stoichiometry consisting of three Kv2.1 subunits and one Kv9.3 subunit. Strikingly, despite this uneven stoichiometry, we find that heteromeric Kv2.1/Kv9.3 channels maintain a pseudosymmetric arrangement of subunits around the central pore."	"A family exhibiting arterial tortuosity syndrome displays homozygosity for markers in the arterial tortuosity locus at chromosome 20q13. Arterial tortuosity associated with hyperextensible skin and hypermobility of joints, features that are characteristics of Ehlers-Danlos syndrome (EDS), has been described in several families. An arterial tortuosity locus has recently been mapped to chromosome 20q13. Here, we report a consanguineous Kurdish family in which an affected child manifested elongation and severe tortuosity of the aorta, carotid, and other arteries. Additional clinical symptoms include loose skin, hypermobile joints, hernias, and facial features that resemble EDS individuals. To examine whether the arterial tortuosity locus was involved in this child, homozygosity analysis was performed using microsatellite markers on 20q13. The affected child was found homozygous, whereas the unaffected parents and three siblings were heterozygous. Additional typing defined the genomic interval to a 37-cm region within which the arterial tortuosity locus is located. Three functional candidate genes (B4GALT5, KCNB1, and PTGIS) were sequenced. No mutations were discovered in the coding regions of these three genes and the promoter regions of B4GALT5 and KCNB1 genes. Moreover, the B4GALT5 mRNA expression was unaltered in patient-derived lymphoblastoid cells. In the PTGIS gene promoter, the affected child was homozygous for eight variable number of tandem repeats, while parents and unaffected siblings carried six repeats."	"[Effect of 17beta-estradiol on Kv2.1 current and delayed rectifier potassium current in cultured rat hippocampal neurons]. To study the effects of 17beta-estradiol on Kv2.1 potassium channel current and delayed rectifier potassium current (IK) in cultured rat hippocampal neurons. The effects of 17beta-estradiol on Kv2.1 channel current and IK in cultured rat hippocampal neurons were observed using the whole cell patch clamp techniques. 17beta-Estradiol was shown to reduce the amplitude of Kv2.1 current and IK in concentration-dependent manners. The IC50s of 17beta-estradiol blocking Kv2.1 and IK were 2.4 and 4.0 micromol x L(-1), respectively. 17beta-Estradiol (3 micromol x l(-1)) significantly shifted the steady-state activation and inactivation curves of Kv2.1 current to negative potentials. However, it only produced the shift of the steady-state activation curve of IK to the negative potential without effect on the steady-state inactivation of IK. 17beta-Estradiol inhibits Kv2.1 and IK of hippocampus at similar level. The inhibition of 17beta-estradiol on IK current may be partially via blocking Kv2.1 current."	"Long-term amiodarone administration remodels expression of ion channel transcripts in the mouse heart. The basis for the unique effectiveness of long-term amiodarone treatment on cardiac arrhythmias is incompletely understood. The present study investigated the pharmacogenomic profile of amiodarone on genes encoding ion-channel subunits. Adult male mice were treated for 6 weeks with vehicle or oral amiodarone at 30, 90, or 180 mg x kg(-1) x d(-1). Plasma and myocardial levels of amiodarone and N-desethylamiodarone increased dose-dependently, reaching therapeutic ranges observed in human. Plasma triiodothyronine levels decreased, whereas reverse triiodothyronine levels increased in amiodarone-treated animals. In ECG recordings, amiodarone dose-dependently prolonged the RR, PR, QRS, and corrected QT intervals. Specific microarrays containing probes for the complete ion-channel repertoire (IonChips) and real-time reverse transcription-polymerase chain reaction experiments demonstrated that amiodarone induced a dose-dependent remodeling in multiple ion-channel subunits. Genes encoding Na+ (SCN4A, SCN5A, SCN1B), connexin (GJA1), Ca2+ (CaCNA1C), and K+ channels (KCNA5, KCNB1, KCND2) were downregulated. In patch-clamp experiments, lower expression of K+ and Na+ channel genes was associated with decreased I(to,f), I(K,slow), and I(Na) currents. Inversely, other K+ channel alpha- and beta-subunits, such as KCNA4, KCNK1, KCNAB1, and KCNE3, were upregulated. Long-term amiodarone treatment induces a dose-dependent remodeling of ion-channel expression that is correlated with the cardiac electrophysiologic effects of the drug. This profile cannot be attributed solely to the amiodarone-induced cardiac hypothyroidism syndrome. Thus, in addition to the direct effect of the drug on membrane proteins, part of the therapeutic action of long-term amiodarone treatment is likely related to its effect on ion-channel transcripts."	"Open form of syntaxin-1A is a more potent inhibitor than wild-type syntaxin-1A of Kv2.1 channels. We have shown that SNARE (soluble N-ethylmaleimide-sensitive fusion protein attachment protein receptor) proteins not only participate directly in exocytosis, but also regulate the dominant membrane-repolarizing Kv channels (voltage-gated K+ channels), such as Kv2.1, in pancreatic beta-cells. In a recent report, we demonstrated that WT (wild-type) Syn-1A (syntaxin-1A) inhibits Kv2.1 channel trafficking and gating through binding to the cytoplasmic C-terminus of Kv2.1. During beta-cell exocytosis, Syn-1A converts from a closed form into an open form which reveals its active H3 domain to bind its SNARE partners SNAP-25 (synaptosome-associated protein of 25 kDa) and synaptobrevin. In the present study, we compared the effects of the WT Syn-1A and a mutant open form Syn-1A (L165A, E166A) on Kv2.1 channel trafficking and gating. When co-expressed in HEK-293 cells (human embryonic kidney-293 cells), the open form Syn-1A decreased Kv2.1 current density more than (P&lt;0.05) the WT Syn-1A (166+/-35 and 371+/-93 pA/pF respectively; control=911+/-91 pA/pF). Confocal microscopy and biotinylation experiments showed that both the WT and open form Syn-1A inhibited Kv2.1 expression at the plasma membrane to a similar extent, suggesting that the stronger reduction of Kv2.1 current density by the open form compared with the WT Syn-1A is probably due to a stronger direct inhibition of channel activity. Consistently, dialysis of the recombinant open form Syn-1A protein into Kv2.1-expressing HEK-293 cells caused stronger inhibition of Kv2.1 current amplitude (P&lt;0.05) than the WT Syn-1A protein (73+/-2 and 82+/-3% of the control respectively). We found that the H3 but not H(ABC) domain is the putative active domain of Syn-1A, which bound to and inhibited the Kv2.1 channel. When co-expressed in HEK-293 cells, the open-form Syn-1A slowed down Kv2.1 channel activation (tau=12.3+/-0.8 ms) much more than (P&lt;0.05) WT Syn-1A (tau=7.9+/-0.8 ms; control tau=5.5+/-0.6 ms). In addition, only the open form Syn-1A, but not the WT Syn-1A, caused a significant (P&lt;0.05) left-shift in the steady-state inactivation curve (V(1/2)=33.1+/-1.3 and -29.4+/-1.1 mV respectively; control V(1/2)=-24.8+/-2 mV). The present study therefore indicates that the open form of Syn-1A is more potent than the WT Syn-1A in inhibiting the Kv2.1 channel. Such stronger inhibition by the open form of Syn-1A may limit K+ efflux and thus decelerate membrane repolarization during exocytosis, leading to optimization of insulin release."	"Oxygen-sensitive Kv channel gene transfer confers oxygen responsiveness to preterm rabbit and remodeled human ductus arteriosus: implications for infants with patent ductus arteriosus. Oxygen (O2)-sensitive K+ channels mediate acute O2 sensing in many tissues. At birth, initial functional closure of the ductus arteriosus (DA) results from O2-induced vasoconstriction. This mechanism often fails in premature infants, resulting in persistent DA, a common form of congenital heart disease. We hypothesized that the basis for impaired O2 constriction in preterm DA is reduced expression and function of O2-sensitive, voltage-gated (Kv) channels. Preterm rabbit DA rings have reduced O2 constriction (even after inhibition of prostaglandin and nitric oxide synthases), and preterm DA smooth muscle cells (DASMCs) display reduced O2-sensitive K+ current. This is associated with decreased mRNA and protein expression of certain O2-sensitive Kv channels (Kv1.5 and Kv2.1) but equivalent expression of the L-type calcium channel. Transmural Kv1.5 or Kv2.1 gene transfer &quot;rescues&quot; the developmental deficiency, conferring O2 responsiveness to preterm rabbit DAs. Targeted SMC Kv1.5 gene transfer also enhances O2 constriction in human DAs. These data demonstrate a central role for developmentally regulated DASMC O2-sensitive Kv channels in the functional closure of the DA. Modulation of Kv channels may have therapeutic potential in diseases associated with impaired O2 responsiveness, including persistent DA."	"NFATc3 regulates Kv2.1 expression in arterial smooth muscle. Voltage-gated K+ (Kv) channels control the excitability of arterial smooth muscle. However, the molecular mechanisms regulating Kv channel function in smooth muscle remain unclear. We examined the hypothesis that the vasoactive peptide angiotensin II (Ang II) regulates arterial smooth muscle Kv channel function via calcineurin-dependent activation of the transcription factor NFAT. We found that sustained administration of Ang II decreased Kv currents (IKv) by reducing the expression of Kv2.1 K+ channel subunits. This effect of Ang II was independent of pressure but required Ca2+ influx through L-type Ca2+ channels. Consistent with our hypothesis, we found that calcineurin and NFATc3 are obligatory components of the signaling cascade mediating reduced IKv by Ang II. We conclude that sustained Ang II exposure increases smooth muscle Ca2+, which leads to activation of calcineurin and NFATc3, culminating in decreased Kv2.1 expression and reduced IKv function. These results support the novel concept that NFATc3 controls the excitability of arterial smooth muscle by regulating Kv2.1 expression."	"Preferential expression and function of voltage-gated, O2-sensitive K+ channels in resistance pulmonary arteries explains regional heterogeneity in hypoxic pulmonary vasoconstriction: ionic diversity in smooth muscle cells. Hypoxic pulmonary vasoconstriction (HPV) is initiated by inhibition of O2-sensitive, voltage-gated (Kv) channels in pulmonary arterial smooth muscle cells (PASMCs). Kv inhibition depolarizes membrane potential (E(M)), thereby activating Ca2+ influx via voltage-gated Ca2+ channels. HPV is weak in extrapulmonary, conduit pulmonary arteries (PA) and strong in precapillary resistance arteries. We hypothesized that regional heterogeneity in HPV reflects a longitudinal gradient in the function/expression of PASMC O2-sensitive Kv channels. In adult male Sprague Dawley rats, constrictions to hypoxia, the Kv blocker 4-aminopyridine (4-AP), and correolide, a Kv1.x channel inhibitor, were endothelium-independent and greater in resistance versus conduit PAs. Moreover, HPV was dependent on Kv-inhibition, being completely inhibited by pretreatment with 4-AP. Kv1.2, 1.5, Kv2.1, Kv3.1b, Kv4.3, and Kv9.3. mRNA increased as arterial caliber decreased; however, only Kv1.5 protein expression was greater in resistance PAs. Resistance PASMCs had greater K+ current (I(K)) and a more hyperpolarized E(M) and were uniquely O2- and correolide-sensitive. The O2-sensitive current (active at -65 mV) was resistant to iberiotoxin, with minimal tityustoxin sensitivity. In resistance PASMCs, 4-AP and hypoxia inhibited I(K) 57% and 49%, respectively, versus 34% for correolide. Intracellular administration of anti-Kv1.5 antibodies inhibited correolide's effects. The hypoxia-sensitive, correolide-insensitive I(K) (15%) was conducted by Kv2.1. Anti-Kv1.5 and anti-Kv2.1 caused additive depolarization in resistance PASMCs (Kv1.5&gt;Kv2.1) and inhibited hypoxic depolarization. Heterologously expressed human PASMC Kv1.5 generated an O2- and correolide-sensitive I(K) like that in resistance PASMCs. In conclusion, Kv1.5 and Kv2.1 account for virtually all the O2-sensitive current. HPV occurs in a Kv-enriched resistance zone because resistance PASMCs preferentially express O2-sensitive Kv-channels."	"Messenger RNA and protein expression analysis of voltage-gated potassium channels in the brain of Abeta(25-35)-treated rats. Potassium channel dysfunction has been implicated in Alzheimer's disease. In the present study, the expression of voltage-gated potassium channel (Kv) subunits in rat brain was measured after a single intracerebroventricular injection of beta-amyloid peptide 25-35 (Abeta(25-35)). After injection of Abeta, the spatial memory of rats was significantly impaired in the Morris water maze. Expression of five main Kv channel subunits (Kv1.5, Kv2.1, Kv1.4, Kv4.2, and Kv4.3) in mRNA level was assessed by using reverse transcription-polymerase chain reaction (RT-PCR). The mRNA levels of Kv2.1 and Kv1.4 were increased by 72% and 67%, respectively, in hippocampus, and Kv4.2 mRNA was increased by 58% in cortex. No other significant mRNA expression changes were found in Abeta-treated rats. The protein expression of Kv2.1, Kv1.4, and Kv4.2 was detected by using Western blotting. Kv2.1 and Kv1.4 protein levels were increased by 48% and 50%, respectively, in hippocampus of Abeta-treated rats, and Kv4.2 protein was increased by 42% in cerebral cortex. This study indicates that the expression up-regulation of Kv1.4, Kv2.1, and Kv4.2 in Abeta-induced cognitive impairment might play an important role in the pathogenesis of Alzheimer's disease."	"Regulation of ion channel localization and phosphorylation by neuronal activity. Voltage-dependent Kv2.1 K(+) channels, which mediate delayed rectifier Kv currents (I(K)), are expressed in large clusters on the somata and dendrites of principal pyramidal neurons, where they regulate neuronal excitability. Here we report activity-dependent changes in the localization and biophysical properties of Kv2.1. In the kainate model of continuous seizures in rat, we find a loss of Kv2.1 clustering in pyramidal neurons in vivo. Biochemical analysis of Kv2.1 in the brains of these rats shows a marked dephosphorylation of Kv2.1. In cultured rat hippocampal pyramidal neurons, glutamate stimulation rapidly causes dephosphorylation of Kv2.1, translocation of Kv2.1 from clusters to a more uniform localization, and a shift in the voltage-dependent activation of I(K). An influx of Ca(2+) leading to calcineurin activation is both necessary and sufficient for these effects. Our finding that neuronal activity modifies the phosphorylation state, localization and function of Kv2.1 suggests an important link between excitatory neurotransmission and the intrinsic excitability of pyramidal neurons."	"Subacute hypoxia decreases voltage-activated potassium channel expression and function in pulmonary artery myocytes. Chronic hypoxia results in both structural changes in the pulmonary artery and a sustained increase in pulmonary vascular tone. This study investigated the effects of subacute moderate hypoxia on expression and function of potassium (K+) channels in rat pulmonary artery myocytes (PASMCs). The rats were kept at 0.67 atmospheres for 6, 12, or 24 h. We found that the expression of mRNA for voltage-activated K+ channels (Kv)1.2, Kv1.5, and Kv2.1 is reduced after less than 24 h of this moderate hypoxia. K+ current (Ik) is significantly inhibited in PASMCs from rats hypoxic for 24 h, resting membrane potential is depolarized and cytosolic [Ca2+] is increased in these cells. In addition, antibodies to Kv1.2, Kv1.5, and Kv2.1 inhibit Ik, cause membrane depolarization and attenuate both hypoxia- and 4-AP-induced elevation in [Ca2+]i in PASMCs from normoxic rats but not from 24 h hypoxic rats. Subacute hypoxia does not completely remove the mRNA for Kv1.2, Kv1.5, and Kv2.1, but antibodies against these channels no longer alter Ik or cytosolic calcium, suggesting that subacute hypoxia may inactivate the channels as well as reduce expression. As the expression of mRNA for Kv1.2, Kv1.5, and Kv2.1 is sensitive to subacute hypoxia and decreased expression/function of these channels has physiologic effects on membrane potential and cytosolic calcium, it seems likely that these Kv channels may also be involved in the mechanism of high-altitude pulmonary edema and possibly in the signaling of chronic hypoxic pulmonary hypertension."	"Rate-limiting reactions determining different activation kinetics of Kv1.2 and Kv2.1 channels. To identify the mechanisms underlying the faster activation kinetics in Kv1.2 channels compared to Kv2.1 channels, ionic and gating currents were studied in rat Kv1.2 and human Kv2.1 channels heterologously expressed in mammalian cells. At all voltages the time course of the ionic currents could be described by an initial sigmoidal and a subsequent exponential component and both components were faster in Kv1.2 than in Kv2.1 channels. In Kv1.2 channels, the activation time course was more sigmoid at more depolarized potentials, whereas in Kv2.1 channels it was somewhat less sigmoid at more depolarized potentials. In contrast to the ionic currents, the ON gating currents were similarly fast for both channels. The main portion of the measured ON gating charge moved before the ionic currents were activated. The equivalent gating charge of Kv1.2 ionic currents was twice that of Kv2.1 ionic currents, whereas that of Kv1.2 ON gating currents was smaller than that of Kv2.1 ON gating currents. In conclusion, the different activation kinetics of Kv1.2 and Kv2.1 channels are caused by rate-limiting reactions that follow the charge movement recorded from the gating currents. In Kv1.2 channels, the reaction coupling the voltage-sensor movement to the pore opening contributes to rate limitation in a voltage-dependent fashion, whereas in Kv2.1 channels, activation is additionally rate-limited by a slow reaction in the subunit gating."	"Disruption of pancreatic beta-cell lipid rafts modifies Kv2.1 channel gating and insulin exocytosis. In pancreatic beta-cells, the predominant voltage-gated Ca(2+) channel (Ca(V)1.2) and K(+) channel (K(V)2.1) are directly coupled to SNARE (soluble N-ethylmaleimide-sensitive factor attachment protein (SNAP) receptor) proteins. These SNARE proteins modulate channel expression and gating and closely associate these channels with the insulin secretory vesicles. We show that K(V)2.1 and Ca(V)1.2, but not K(V)1.4, SUR1, or Kir6.2, target to specialized cholesterol-rich lipid raft domains on beta-cell plasma membranes. Similarly, the SNARE proteins syntaxin 1A, SNAP-25, and VAMP-2, but not Munc-13-1 or n-Sec1, are associated with lipid rafts. Disruption of the lipid rafts by depleting membrane cholesterol with methyl-beta-cyclodextrin shunts K(V)2.1, Ca(V)1.2, and SNARE proteins out of lipid rafts. Furthermore, methyl-beta-cyclodextrin inhibits K(V)2.1 but not Ca(V)1.2 channel activity and enhances single-cell exocytic events and insulin secretion. Membrane compartmentalization of ion channels and SNARE proteins in lipid rafts may be critical for the temporal and spatial coordination of insulin release, forming what has been described as the excitosome complex."	"Modification of Kv2.1 K+ currents by the silent Kv10 subunits. Human and rat Kv10.1a and b cDNAs encode silent K+ channel pore-forming subunits that modify the electrophysiological properties of Kv2.1. These alternatively spliced variants arise by the usage of an alternative site of splicing in exon 1 producing an 11-amino acid insertion in the linker between the first and second transmembrane domains in Kv10.1b. In human, the Kv10s mRNA were detected by Northern blot in brain kidney lung and pancreas. In brain, they were expressed in cortex, hippocampus, caudate, putamen, amygdala and weakly in substantia nigra. In rat, Kv10.1 products were detected in brain and weakly in testes. In situ hybridization in rat brain shows that Kv10.1 mRNAs are expressed in cortex, olfactory cortical structures, basal ganglia/striatal structures, hippocampus and in many nuclei of the amygdala complex. The CA3 and dentate gyrus of the hippocampus present a gradient that show a progression from high level of expression in the caudo-ventro-medial area to a weak level in the dorso-rostral area. The CA1 and CA2 areas had low levels throughout the hippocampus. Several small nuclei were also labeled in the thalamus, hypothalamus, pons, midbrain, and medulla oblongata. Co-injection of Kv2.1 and Kv10.1a or b mRNAs in Xenopus oocytes produced smaller currents that in the Kv2.1 injected oocytes and a moderate reduction of the inactivation rate without any appreciable change in recovery from inactivation or voltage dependence of activation or inactivation. At higher concentration, Kv10.1a also reduces the activation rate and a more important reduction in the inactivation rate. The gene that encodes for Kv10.1 mRNAs maps to chromosome 2p22.1 in human, 6q12 in rat and 17E4 in mouse, locations consistent with the known systeny for human, rat and mouse chromosomes."	"Influence of permeant ions on voltage sensor function in the Kv2.1 potassium channel. We previously demonstrated that the outer vestibule of activated Kv2.1 potassium channels can be in one of two conformations, and that K(+) occupancy of a specific selectivity filter site determines which conformation the outer vestibule is in. These different outer vestibule conformations result in different sensitivities to internal and external TEA, different inactivation rates, and different macroscopic conductances. The [K(+)]-dependent switch in outer vestibule conformation is also associated with a change in rate of channel activation. In this paper, we examined the mechanism by which changes in [K(+)] modulate the rate of channel activation. Elevation of symmetrical [K(+)] or [Rb(+)] from 0 to 3 mM doubled the rate of on-gating charge movement (Q(on)), measured at 0 mV. Cs(+) produced an identical effect, but required 40-fold higher concentrations. All three permeant ions occupied the selectivity filter over the 0.03-3 mM range, so simple occupancy of the selectivity filter was not sufficient to produce the change in Q(on). However, for each of these permeant ions, the speeding of Q(on) occurred with the same concentration dependence as the switch between outer vestibule conformations. Neutralization of an amino acid (K356) in the outer vestibule, which abolishes the modulation of channel pharmacology and ionic currents by the K(+)-dependent reorientation of the outer vestibule, also abolished the K(+)-dependence of Q(on). Together, the data indicate that the K(+)-dependent reorientation in the outer vestibule was responsible for the change in Q(on). Moreover, similar [K(+)]-dependence and effects of mutagenesis indicate that the K(+)-dependent change in rate of Q(on) can account for the modulation of ionic current activation rate. Simple kinetic analysis suggested that K(+) reduced an energy barrier for voltage sensor movement. These results provide strong evidence for a direct functional interaction, which is modulated by permeant ions acting at the selectivity filter, between the outer vestibule of the Kv2.1 potassium channel and the voltage sensor."	"Solution structure and functional characterization of SGTx1, a modifier of Kv2.1 channel gating. SGTx1 is a peptide toxin isolated from the venom of the spider Scodra griseipes that has been shown to inhibit outward K(+) currents in rat cerebellar granule neurons. Although its amino acid sequence is known to be highly (76%) homologous with that of hanatoxin (HaTx), a well-characterized modifier of Kv2.1 channel gating, the structural and functional characteristics of SGTx1 remain largely unknown. Here we describe the NMR solution structure of SGTx1, the mechanism of its interaction with Kv2.1 channels, and its effect on channel activity once bound. The NMR structure of SGTx1 contains a molecular fold closely resembling the &quot;inhibitor cystine knot&quot; of HaTx, which is composed of an antiparallel beta-sheet and four chain reversals stabilized by three disulfide bonds. Functionally, SGTx1 reversibly inhibited K(+) currents in oocytes expressing Kv2.1 channels. Moreover, generation of steady-state activation curves showed that, consistent with other gating modifiers, SGTx1 acted by shifting the activation of the channel to more depolarized voltages. Thus, the surface profile and mechanism of action of SGTx1 are similar to those of HaTx. Still, detailed comparison of SGTx1 with HaTx revealed differences in binding affinity and conformational homogeneity that result from differences in the charge distribution at the binding surface and in the amino acid composition of the respective beta-hairpin structures in the peptides."	"Novel neuroprotective K+ channel inhibitor identified by high-throughput screening in yeast. Discovery of K+ channel modulators is limited by low-throughput capacity of existing K+ channel assays. To enable high-throughput screening for novel pharmacological modulators of K+ channels, we developed an assay based on growth of yeast that functionally expresses mammalian Kir2.1 channels. Screening of 10,000 small molecules from a combinatorial chemical library yielded 42 potential Kir2.1 inhibitors. One compound, 3-bicyclo[2.2.1]hept-2-yl-benzene-1,2-diol, was confirmed to inhibit K+ channels in patch-clamp measurements in mammalian cells with EC50 values of 60 and 1 microM for Kir2.1 and Kv2.1 channels, respectively. Inhibition of Kv2.1 channels decreased in the presence of the external pore blocker tetraethylammonium (TEA) and depended on a residue required for extracellular TEA action, suggesting that the identified compound targets the external mouth of the channel. Furthermore, at the nontoxic concentration of 3 microM, the identified compound completely abolished in vitro neuronal apoptosis mediated by Kv2.1 channels. Therefore, yeast-based screening has identified a novel uncharged neuroprotective mammalian K+ channel inhibitor."	"Attenuation of I(K,slow1) and I(K,slow2) in Kv1/Kv2DN mice prolongs APD and QT intervals but does not suppress spontaneous or inducible arrhythmias. Overexpression of a truncated Kv1.1 or Kv2.1 channel polypeptide in the heart (Kv1DN or Kv2DN) resulted in mice with a prolonged action potential duration (APD) due to marked attenuation of rapidly activating, slowly inactivating K+ current (I(K,slow1)) or slowly inactivating outward K(+) current (I(K,slow2)) in ventricular myocytes. ECG monitoring, optical mapping, and programmed electrical stimulation of Kv1DN mice revealed spontaneous and inducible reentrant ventricular tachycardia due to spatial dispersion of repolarization and refractoriness. Recently, we demonstrated upregulation of I(K,slow2) in apical cardiomyocytes derived from Kv1DN mice. We therefore hypothesized that the selective upregulation of Kv2.1-encoded currents underlies the apex-to-base dispersion of repolarization and the reentrant arrhythmias. To test this hypothesis, the Kv1DN line was crossbred with the Kv2DN line to produce Kv1/Kv2DN lines. Whole cell voltage-clamp recordings from left ventricular cells of Kv1/Kv2DN confirmed that the 4-aminopyridine- and tetraethylammonium-sensitive components of IK,slow were eliminated, resulting in marked APD prolongation compared with wild-type, Kv1DN, and Kv2DN cells. Telemetric ECG recordings revealed prolongation of the corrected QT in Kv1/Kv2DN compared with Kv1DN and Kv2DN mice. However, attenuation of Kv2.1-encoded currents in Kv1DN mice did not suppress the arrhythmias. Thus, the elimination of I(K,slow2) prolongs APD and the QT intervals, but does not have an antiarrhythmic effect."	"Focal aggregation of voltage-gated, Kv2.1 subunit-containing, potassium channels at synaptic sites in rat spinal motoneurones. Delayed rectifier K+ currents are involved in the control of alpha-motoneurone excitability, but the precise spatial distribution and organization of the membrane ion channels that contribute to these currents have not been defined. Voltage-activated Kv2.1 channels have properties commensurate with a contribution to delayed rectifier currents and are expressed in neurones throughout the mammalian central nervous system. A specific antibody against Kv2.1 channel subunits was used to determine the surface distribution and clustering of Kv2.1 subunit-containing channels in the cell membrane of alpha-motoneurones and other spinal cord neurones. In alpha-motoneurones, Kv2.1 immunoreactivity (-IR) was abundant in the surface membrane of the soma and large proximal dendrites, and was present also in smaller diameter distal dendrites. Plasma membrane-associated Kv2.1-IR in alpha-motoneurones was distributed in a mosaic of small irregularly shaped, and large disc-like, clusters. However, only small to medium clusters of Kv2.1-IR were observed in spinal interneurones and projection neurones, and some interneurones, including Renshaw cells, lacked demonstrable Kv2.1-IR. In alpha-motoneurones, dual immunostaining procedures revealed that the prominent disc-like domains of Kv2.1-IR are invariably apposed to presynaptic cholinergic C-terminals. Further, Kv2.1-IR colocalizes with immunoreactivity against postsynaptic muscarinic (m2) receptors at these locations. Ultrastructural examination confirmed the postsynaptic localization of Kv2.1-IR at C-terminal synapses, and revealed clusters of Kv2.1-IR at a majority of S-type, presumed excitatory, synapses. Kv2.1-IR in alpha-motoneurones is not directly associated with presumed inhibitory (F-type) synapses, nor is it present in presynaptic structures apposed to the motoneurone. Occasionally, small patches of extrasynaptic Kv2.1-IR labelling were observed in surface membrane apposed by glial processes. Voltage-gated potassium channels responsible for the delayed rectifier current, including Kv2.1, are usually assigned roles in the repolarization of the action potential. However, the strategic localization of Kv2.1 subunit-containing channels at specific postsynaptic sites suggests that this family of voltage-activated K+ channels may have additional roles and/or regulatory components."	"MinK-related peptide 2 modulates Kv2.1 and Kv3.1 potassium channels in mammalian brain. Delayed rectifier potassium current diversity and regulation are essential for signal processing and integration in neuronal circuits. Here, we investigated a neuronal role for MinK-related peptides (MiRPs), membrane-spanning modulatory subunits that generate phenotypic diversity in cardiac potassium channels. Native coimmunoprecipitation from rat brain membranes identified two novel potassium channel complexes, MiRP2-Kv2.1 and MiRP2-Kv3.1b. MiRP2 reduces the current density of both channels, slows Kv3.1b activation, and slows both activation and deactivation of Kv2.1. Altering native MiRP2 expression levels by RNAi gene silencing or cDNA transfection toggles the magnitude and kinetics of endogenous delayed rectifier currents in PC12 cells and hippocampal neurons. Computer simulations predict that the slower gating of Kv3.1b in complexes with MiRP2 will broaden action potentials and lower sustainable firing frequency. Thus, MiRP2, unlike other known neuronal beta subunits, provides a mechanism for influence over multiple delayed rectifier potassium currents in mammalian CNS via modulation of alpha subunits from structurally and kinetically distinct subfamilies."	"Dimerization in vivo and inhibition of the nonreceptor form of protein tyrosine phosphatase epsilon. cyt-PTP epsilon is a naturally occurring nonreceptor form of the receptor-type protein tyrosine phosphatase (PTP) epsilon. As such, cyt-PTP epsilon enables analysis of phosphatase regulation in the absence of extracellular domains, which participate in dimerization and inactivation of the receptor-type phosphatases receptor-type protein tyrosine phosphatase alpha (RPTPalpha) and CD45. Using immunoprecipitation and gel filtration, we show that cyt-PTP epsilon forms dimers and higher-order associations in vivo, the first such demonstration among nonreceptor phosphatases. Although cyt-PTP epsilon readily dimerizes in the absence of exogenous stabilization, dimerization is increased by oxidative stress. Epidermal growth factor receptor stimulation can affect cyt-PTP epsilon dimerization and tyrosine phosphorylation in either direction, suggesting that cell surface receptors can relay extracellular signals to cyt-PTP epsilon, which lacks extracellular domains of its own. The inactive, membrane-distal (D2) phosphatase domain of cyt-PTP epsilon is a major contributor to intermolecular binding and strongly interacts in a homotypic manner; the presence of D2 and the interactions that it mediates inhibit cyt-PTP epsilon activity. Intermolecular binding is inhibited by the extreme C and N termini of D2. cyt-PTP epsilon lacking these regions constitutively dimerizes, and its activities in vitro towards para-nitrophenylphosphate and in vivo towards the Kv2.1 potassium channel are markedly reduced. We conclude that physiological signals can regulate dimerization and phosphorylation of cyt-PTP epsilon in the absence of direct interaction between the PTP and extracellular molecules. Furthermore, dimerization can be mediated by the D2 domain and does not strictly require the presence of PTP extracellular domains."	"Mediation of neuronal apoptosis by Kv2.1-encoded potassium channels. Cellular K+ efflux is a requisite event in the unfolding of apoptosis programs across many types of cells and death-inducing stimuli; however, the molecular identities of the ion channels mediating this key event have remained undefined. Here, we show that Kv2.1-encoded K+ channels are responsible for the expression of apoptosis in cortical neurons in vitro. Transient expression of two different dominant-negative forms of this subunit in neurons completely eliminated the enhancement of K+ currents that normally accompanies the cell death process. Importantly, neurons deficient in functional Kv2.1-encoded K+ channels were protected from oxidant and staurosporine-induced apoptosis. Finally, Chinese hamster ovary cells, which do not express endogenous voltage-gated K+ channels, became substantially more sensitive to apoptosis after transient expression of wild-type Kv2.1. These results suggest that Kv2.1-encoded K+ channels are necessary for the apoptotic signaling cascade in mammalian cortical neurons in culture and are sufficient for increasing the susceptibility to apoptogens in a nonexcitable cell."	"Inhibitory effects of pimozide on cloned and native voltage-gated potassium channels. The primary goal of this study was to use the cloned neuronal Kv channels to test if pimozide (PMZD), an antipsychotic drug, modulates the activity of Kv channels. In CHO cells, PMZD blocked Kv2.1, a major neuronal delayed rectifier, in a manner that depends upon time and concentration. The estimated IC50 was 4.2 microM at +50 mV. Tail current analysis shows that PMZD reduced the amplitude of the currents, with no effect on the steady-state activation curve (V(1/2) from 14.1 to 11.1 mV) or the slope (16.7 vs. 14.0 mV). From -120 to -20 mV, PMZD did not impact the deactivation kinetics of Kv2.1. PMZD also blocked Kv1.1, another neuronal delayed rectifier, with 16.1 microM of IC50. When Kv1.1 was co-expressed with Kvbeta1, approximately 50% of the Kv1.1 were converted into an inactivating A-type current and the Kv1.1/Kvbeta1 A-type currents were insensitive to PMZD. PMZD (10 microM) had minimal effect on Kv1.4, and had no effect on the M-current candidates, KCNQ2 and KCNQ3 when co-expressed in Xenopus oocytes. In hippocampal neurons, PMZD inhibited the delayed rectifiers by approximately 60%, and A-type currents were insensitive to PMZD. The results suggest that PMZD inhibits certain neuronal Kv channels in heterologous expression systems and in hippocampal neurons. PMZD was less effective on A-type currents, presumably because its ability to block requires a prolonged opening of the K channels. It is thus conceivable that the time-dependent and/or subunit-specific inhibition of Kv channels may increase the release of neurotransmitters such as serotonin and glutamate."	"Direct interaction of target SNAREs with the Kv2.1 channel. Modal regulation of channel activation and inactivation gating. Previously we suggested that interaction between voltage-gated K+ channels and protein components of the exocytotic machinery regulated transmitter release. This study concerns the interaction between the Kv2.1 channel, the prevalent delayed rectifier K+ channel in neuroendocrine and endocrine cells, and syntaxin 1A and SNAP-25. We recently showed in islet beta-cells that the Kv2.1 K+ current is modulated by syntaxin 1A and SNAP-25. Here we demonstrate, using co-immunoprecipitation and immunocytochemistry analyses, the existence of a physical interaction in neuroendocrine cells between Kv2.1 and syntaxin 1A. Furthermore, using concomitant co-immunoprecipitation from plasma membranes and two-electrode voltage clamp analyses in Xenopus oocytes combined with in vitro binding analysis, we characterized the effects of these interactions on the Kv2.1 channel gating pertaining to the assembly/disassembly of the syntaxin 1A/SNAP-25 (target (t)-SNARE) complex. Syntaxin 1A alone binds strongly to Kv2.1 and shifts both activation and inactivation to hyperpolarized potentials. SNAP-25 alone binds weakly to Kv2.1 and probably has no effect by itself. Expression of SNAP-25 together with syntaxin 1A results in the formation of t-SNARE complexes, with consequent elimination of the effects of syntaxin 1A alone on both activation and inactivation. Moreover, inactivation is shifted to the opposite direction, toward depolarized potentials, and its extent and rate are attenuated. Based on these results we suggest that exocytosis in neuroendocrine cells is tuned by the dynamic coupling of the Kv2.1 channel gating to the assembly status of the t-SNARE complex."	"Different Kv2.1/Kv9.3 heteromer expression during brain and lung post-natal development in the rat. The Kv2.1/Kv9.3 heteromer generates an O2 sensitive potassium channel and induces a slow deactivation that has important consequences for brain and lung physiology. We examined the developmental regulation of Kv2.1 and Kv9.3 mRNAs in brain and lung. Both genes followed parallel expression patterns in brain, increasing progressively through post-natal life. In lung, however, the expression of the two genes followed opposite trends: Kv2.1 transcripts decreased, while Kv9.3 mRNA increased. The Kv9.3/Kv2.1 ratio shows that while in brain the expression of both genes followed a similar pattern, the relative abundance of Kv9.3 increased steadily through post-natal life in lung. Furthermore, there is selective regulation of gene expression during the suckling-weaning transition. Our results suggest that different Kv9.3/Kv2.1 ratios could have physiological implications in both organs during post-natal development, and that diet composition and selective tissue-specific insulin regulation modulate the expression of Kv2.1 and Kv9.3."	"Properties and molecular basis of the mouse urinary bladder voltage-gated K+ current. Potassium channels play an important role in controlling the excitability of urinary bladder smooth muscle (UBSM). Here we describe the biophysical, pharmacological and molecular properties of the mouse UBSM voltage-gated K+ current (IK(V)). The IK(V) activated, deactivated and inactivated slowly with time constants of 29.9 ms at +30 mV, 131 ms at -40 mV and 3.4 s at +20 mV. The midpoints of steady-state activation and inactivation curves were 1.1 mV and -61.4 mV, respectively. These properties suggest that IK(V) plays a role in regulating the resting membrane potential and contributes to the repolarization and after-hyperpolarization phases of action potentials. The IK(V) was blocked by tetraethylammonium ions with an IC50 of 5.2 mM and was unaffected by 1 mM 4-aminopyridine. RT-PCR for voltage-gated K+ channel (KV) subunits revealed the expression of Kv2.1, Kv5.1, Kv6.1, Kv6.2 and Kv6.3 in isolated UBSM myocytes. A comparison of the biophysical properties of UBSM IK(V) with those reported for Kv2.1 and Kv5.1 and/or Kv6 heteromultimeric channels demonstrated a marked similarity. We propose that heteromultimeric channel complexes composed of Kv2.1 and Kv5.1 and/or Kv6 subunits form the molecular basis of the mouse UBSM IK(V)."	"Syntaxin 1A binds to the cytoplasmic C terminus of Kv2.1 to regulate channel gating and trafficking. Voltage-gated K(+) (Kv) 2.1 is the dominant Kv channel that controls membrane repolarization in rat islet beta-cells and downstream insulin exocytosis. We recently showed that exocytotic SNARE protein SNAP-25 directly binds and modulates rat islet beta-cell Kv 2.1 channel protein at the cytoplasmic N terminus. We now show that SNARE protein syntaxin 1A (Syn-1A) binds and modulates rat islet beta-cell Kv2.1 at its cytoplasmic C terminus (Kv2.1C). In HEK293 cells overexpressing Kv2.1, we observed identical effects of channel inhibition by dialyzed GST-Syn-1A, which could be blocked by Kv2.1C domain proteins (C1: amino acids 412-633, C2: amino acids 634-853), but not the Kv2.1 cytoplasmic N terminus (amino acids 1-182). This was confirmed by direct binding of GST-Syn-1A to the Kv2.1C1 and C2 domains proteins. These findings are in contrast to our recent report showing that Syn-1A binds and modulates the cytoplasmic N terminus of neuronal Kv1.1 and not by its C terminus. Co-expression of Syn-1A in Kv2.1-expressing HEK293 cells inhibited Kv2.1 surfacing, which caused a reduction of Kv2.1 current density. In addition, Syn-1A caused a slowing of Kv2.1 current activation and reduction in the slope factor of steady-state inactivation, but had no affect on inactivation kinetics or voltage dependence of activation. Taken together, SNAP-25 and Syn-1A mediate secretion not only through its participation in the exocytotic SNARE complex, but also by regulating membrane potential and calcium entry through their interaction with Kv and Ca(2+) channels. In contrast to Ca(2+) channels, where these SNARE proteins act on a common synprint site, the SNARE proteins act not only on distinct sites within a Kv channel, but also on distinct sites between different Kv channel families."	"Phosphorylation-dependent regulation of Kv2.1 Channel activity at tyrosine 124 by Src and by protein-tyrosine phosphatase epsilon. Voltage-gated potassium (Kv) channels are a complex and heterogeneous family of proteins that play major roles in brain and cardiac excitability. Although Kv channels are activated by changes in cell membrane potential, tyrosine phosphorylation of channel subunits can modulate the extent of channel activation by depolarization. We have previously shown that dephosphorylation of Kv2.1 by the nonreceptor-type tyrosine phosphatase PTPepsilon (cyt-PTPepsilon) down-regulates channel activity and counters its phosphorylation and up-regulation by Src or Fyn. In the present study, we identify tyrosine 124 within the T1 cytosolic domain of Kv2.1 as a target site for the activities of Src and cyt-PTPepsilon. Tyr(124) is phosphorylated by Src in vitro; in whole cells, Y124F Kv2.1 is significantly less phosphorylated by Src and loses most of its ability to bind the D245A substrate-trapping mutant of cyt-PTPepsilon. Phosphorylation of Tyr(124) is critical for Src-mediated up-regulation of Kv2.1 channel activity, since Y124F Kv2.1-mediated K(+) currents are only marginally up-regulated by Src, in contrast with a 3-fold up-regulation of wild-type Kv2.1 channels by the kinase. Other properties of Kv2.1, such as expression levels, subcellular localization, and voltage dependence of channel activation, are unchanged in Y124F Kv2.1, indicating that the effects of the Y124F mutation are specific. Together, these results indicate that Tyr(124) is a significant site at which the mutually antagonistic activities of Src and cyt-PTPepsilon affect Kv2.1 phosphorylation and activity."	"Molecular site of action of the antiarrhythmic drug propafenone at the voltage-operated potassium channel Kv2.1. The effects of the antiarrhythmic drug propafenone at Kv2.1 channels were studied with wild-type and mutated channels expressed in Xenopus laevis oocytes. Propafenone decreased the Kv2.1 currents in a time- and voltage-dependent manner (decrease of the time constants of current rise, increase of block with the duration of voltage steps starting from a block of less than 19%, increase of block with the amplitude of depolarization yielding a fractional electrical distance delta of 0.11 to 0.16). Block of Kv2.1 appeared with application to the intracellular, but not the extracellular, side of membrane patches. In mutagenesis experiments, all parts of the Kv2.1 channel were successively exchanged with those of the Kv1.2 channel, which is much more sensitive to propafenone. The intracellular amino and carboxyl terminus and the intracellular linker S4-S5 reduced the blocking effect of propafenone, whereas the linker S5-S6, as well as the segment S6 of the Kv1.2 channel, abolished it to the value of the Kv1.2 channel. In the linker S5-S6, this effect could be narrowed down to two groups of amino acids (groups 372 to 374 and 383 to 384), which also affected the sensitivity to tetraethylammonium. In segment S6, several amino acids in the intracellularly directed part of the helix significantly reduced propafenone sensitivity. The results suggest that propafenone blocks the Kv2.1 channel in the open state from the intracellular side by entering the inner vestibule of the channel. These results are consistent with a direct interaction of propafenone with the lower part of the pore helix and/or residues of segment S6."	"Impaired voltage-gated K+ channel expression in brain during experimental cancer cachexia. Cancer-induced cachexia affects most advanced cancer patients. It is characterized by anorexia, profound metabolic dysfunctions, and severe neurological disorders. Here we show that voltage-gated potassium channel (Kv) expression is impaired in the brain of tumor-bearing animals. Expression of both delayed rectifier (Kv1.1, Kv1.2, Kv1.3, Kv1.5, Kv1.6, Kv2.1, Kv3.1, Kv4.2) and A-type potassium channels (Kv1.4, Kv3.3, Kv3.4) was greatly down-regulated in brain from animals bearing a Yoshida AH-130 ascites hepatoma. The possible compensatory mechanisms (Kv1.4/Kv4.2), expression of redundant genes (Kv3.1/Kv3.3) and heteromultimeric channel formation (Kv2.1/Kv9.3) were also affected. The high circulating levels of TNFalpha and the reduced expression of the anti-apoptotic protein Bcl-XL found in the brain of tumor-bearing animals indicate that this response could be mediated by an increase in brain cell death due to apoptosis. The results suggest that brain function is impaired during cancer cachexia, and may account for the cancer-induced anorectic response and other neurological alterations."	"Microarray analysis reveals complex remodeling of cardiac ion channel expression with altered thyroid status: relation to cellular and integrated electrophysiology. Although electrophysiological remodeling occurs in various myocardial diseases, the underlying molecular mechanisms are poorly understood. cDNA microarrays containing probes for a large population of mouse genes encoding ion channel subunits (&quot;IonChips&quot;) were developed and exploited to investigate remodeling of ion channel transcripts associated with altered thyroid status in adult mouse ventricle. Functional consequences of hypo- and hyperthyroidism were evaluated with patch-clamp and ECG recordings. Hypothyroidism decreased heart rate and prolonged QTc duration. Opposite changes were observed in hyperthyroidism. Microarray analysis revealed that hypothyroidism induces significant reductions in KCNA5, KCNB1, KCND2, and KCNK2 transcripts, whereas KCNQ1 and KCNE1 expression is increased. In hyperthyroidism, in contrast, KCNA5 and KCNB1 expression is increased and KCNQ1 and KCNE1 expression is decreased. Real-time RT-PCR validated these results. Consistent with microarray analysis, Western blot experiments confirmed those modifications at the protein level. Patch-clamp recordings revealed significant reductions in I(to,f) and I(K,slow) densities, and increased I(Ks) density in hypothyroid myocytes. In addition to effects on K+ channel transcripts, transcripts for the pacemaker channel HCN2 were decreased and those encoding the alpha1C Ca2+ channel (CaCNA1C) were increased in hypothyroid animals. The expression of Na+, Cl-, and inwardly rectifying K+ channel subunits, in contrast, were unaffected by thyroid hormone status. Taken together, these data demonstrate that thyroid hormone levels selectively and differentially regulate transcript expression for at least nine ion channel alpha- and beta-subunits. Our results also document the potential of cDNA microarray analysis for the simultaneous examination of ion channel transcript expression levels in the diseased/remodeled myocardium."	"[Effects of chronic exposure to beta-amyloid-peptide25-35 on the mRNA expressions of voltage-gated outward potassium channel subunits in cultured rat hippocampal neurons]. To investigate mRNA expression changes of voltage-gated outward potassium channel subtypes in cultured rat hippocampal neurons after chronic exposure to beta-amyloid-petitde25-35 (beta-AP25-35). mRNA expression was detected by RT-PCR, comparative expression levels were determined by imaging densitometer. Delayed rectifying (Kv2.1, Kv1.5), transient outward (Kv1.4, Kv4.2) and large conductance calcium-activated (rSlo) potassium channel mRNA were expressed in cultured rat hippocampal. In the presence of beta-AP25-35 3 mumol.L-1 for 24 h, the relative expression level of Kv2.1 was significantly increased (n = 3, P &lt; 0.05); the other subtypes were not changed obviously (n = 3, P &gt; 0.05). The increase of Kv2.1 mRNA mainly happened between 24 and 36 h after exposure to beta-AP25-35. After exposure to beta-AP25-35 for 60 h, Kv2.1 mRNA decreased significantly (n = 3, P &lt; 0.01). The upregulation of Kv2.1 on transcription levels may be involved in the enhancement of delayed rectifying outward potassium (Ik) current induced by beta-AP25-35."	"Influence of pore residues on permeation properties in the Kv2.1 potassium channel. Evidence for a selective functional interaction of K+ with the outer vestibule. The Kv2.1 potassium channel contains a lysine in the outer vestibule (position 356) that markedly reduces open channel sensitivity to changes in external [K(+)]. To investigate the mechanism underlying this effect, we examined the influence of this outer vestibule lysine on three measures of K(+) and Na(+) permeation. Permeability ratio measurements, measurements of the lowest [K(+)] required for interaction with the selectivity filter, and measurements of macroscopic K(+) and Na(+) conductance, were all consistent with the same conclusion: that the outer vestibule lysine in Kv2.1 interferes with the ability of K(+) to enter or exit the extracellular side of the selectivity filter. In contrast to its influence on K(+) permeation properties, Lys 356 appeared to be without effect on Na(+) permeation. This suggests that Lys 356 limited K(+) flux by interfering with a selective K(+) binding site. Combined with permeation studies, results from additional mutagenesis near the external entrance to the selectivity filter indicated that this site was located external to, and independent from, the selectivity filter. Protonation of a naturally occurring histidine in the same outer vestibule location in the Kv1.5 potassium channel produced similar effects on K(+) permeation properties. Together, these results indicate that a selective, functional K(+) binding site (e.g., local energy minimum) exists in the outer vestibule of voltage-gated K(+) channels. We suggest that this site is the location of K(+) hydration/dehydration postulated to exist based on the structural studies of KcsA. Finally, neutralization of position 356 enhanced outward K(+) current magnitude, but did not influence the ability of internal K(+) to enter the pore. These data indicate that in Kv2.1, exit of K(+) from the selectivity filter, rather than entry of internal K(+) into the channel, limits outward current magnitude. We discuss the implications of these findings in relation to the structural basis of channel conductance in different K(+) channels."	"Temperature and redox state dependence of native Kv2.1 currents in rat pancreatic beta-cells. In pancreatic beta-cells, voltage-dependent K(+) (Kv) channels repolarise glucose-stimulated action potentials. Kv channels are therefore negative regulators of Ca(2+) entry and insulin secretion. We have recently demonstrated that Kv2.1 mediates the majority of beta-cell voltage-dependent outward K(+) current and now investigate the function of native beta-cell Kv2.1 channels at near-physiological temperatures (32-35 degrees C). While beta-cell voltage-dependent outward K(+) currents inactivated little at room temperature, both fast-inactivation (111.5 +/- 14.3 ms) and slow-inactivation (1.21 +/- 0.12 s) was observed at 32-35 degrees C. Kv2.1 mediates the fast-inactivating current observed at 32-35 degrees C, since it could be selectively ablated by expression of a dominant-negative Kv2.1 construct (Kv2.1N). The surprising ability of Kv2.1N to selectively remove the fast-inactivating component, together with its sensitivity to tetraethylammonium (TEA), demonstrate that this component is not mediated by the classically fast-inactivating and TEA-resistant channels such as Kv1.4 and 4.2. Increasing the intracellular redox state by elevating the cytosolic NADPH/NADP(+) ratio from 1/10 to 10/1 increased the rates of both fast- and slow-inactivation. In addition, increasing the intracellular redox state also increased the relative contribution of the fast-inactivation component from 38.8 +/- 2.1 % to 55.9 +/- 1.8 %. The present study suggests that, in beta-cells, Kv2.1 channels mediate a fast-inactivating K(+) current at physiological temperatures and may be regulated by the metabolic generation of NADPH."	"The Roles of N- and C-terminal determinants in the activation of the Kv2.1 potassium channel. The human and rat forms of the Kv2.1 channel have identical amino acids over the membrane-spanning regions and differ only in the N- and C-terminal intracellular regions. Rat Kv2.1 activates much faster than human Kv2.1. Here we have studied the role of the N- and C-terminal residues that determine this difference in activation kinetics between the two channels. For this, we constructed mutants and chimeras between the two channels, expressed them in oocytes, and recorded currents by two-electrode voltage clamping. In the N-terminal region, mutation Q67E in the rat channel displayed a slowing of activation relative to rat wild type, whereas mutation D75E in the human channel showed faster activation than human wild type. In the C-terminal region, we found that some residues within the region of amino acids 740-853 (&quot;CTA&quot; domain) were also involved in determining activation kinetics. The electrophysiological data also suggested interactions between the N and C termini. Such an interaction was confirmed directly by using a glutathione S-transferase (GST) fusion protein with the N terminus of Kv2.1, which we showed to bind to the C terminus of Kv2.1. Taken together, these data suggest that exposed residues in the T1 domain of the N terminus, as well as the CTA domain in the C terminus, are important in determining channel activation kinetics and that these N- and C-terminal regions interact."	"Regional upregulation of Kv2.1-encoded current, IK,slow2, in Kv1DN mice is abolished by crossbreeding with Kv2DN mice. Overexpression of a truncated Kv1.1 channel transgene in the heart (Kv1DN) resulted in mice with a prolonged action potential duration due to marked attenuation of a rapidly activating, slowly inactivating potassium current (I(K,slow1)) in ventricular myocytes. Optical mapping and programmed electrical stimulation revealed inducible ventricular tachycardia due to spatial dispersion of repolarization and refractoriness. Here we show that a delayed rectifier with slower inactivation kinetics (I(K,slow2)) was selectively upregulated in Kv1DN cardiocytes. This electrical remodeling was spatially restricted to myocytes derived from the apex of the left ventricle. Biophysical and pharmacological studies of I(K,slow2) indicate that it resembles Kv2-encoded currents. Northern blot analyses and real-time PCR revealed upregulation of Kv2.1 transcript in Kv1DN mice. Crossbreeding of Kv1DN mice with mice expressing a truncated Kv2.1 polypeptide (Kv2DN) eliminated I(K,slow2). In summary, our data indicate that the spatially restrictive upregulation of Kv2.1-encoded currents underlies the increased dispersion of the repolarization observed in Kv1DN mice."	"Delayed rectifier K+ currents, IK, are encoded by Kv2 alpha-subunits and regulate tonic firing in mammalian sympathetic neurons. Previous studies have revealed the presence of four kinetically distinct voltage-gated K+ currents, I(Af), I(As), I(K), and I(SS), in rat superior cervical ganglion (SCG) neurons and demonstrated that I(K) and I(SS) are expressed in all cells, whereas I(Af) and I(As) are differentially distributed. Previous studies have also revealed the presence of distinct components of I(Af) encoded by alpha-subunits of the Kv1 and Kv4 subfamilies. In the experiments described here, pore mutants of Kv2.1 (Kv2.1W365C/Y380T) and Kv2.2 (Kv2.2W373C/Y388T) that function as Kv2 subfamily-specific dominant negatives (Kv2.1DN and Kv2.2DN) were generated to probe the functional role(s) of Kv2 alpha-subunits. Expression of Kv2.1DN or Kv2.2DN in human embryonic kidney-293 cells selectively attenuates Kv2.1- or Kv2.2-encoded K+ currents, respectively. Using the Biolistics Gene Gun, cDNA constructs encoding either Kv2.1DN or Kv2.2DN [and enhanced green fluorescent protein (EGFP)] were introduced into SCG neurons. Whole-cell recordings from EGFP-positive Kv2.1DN or Kv2.2DN-expressing cells revealed selective decreases in I(K). Coexpression of Kv2.1DN and Kv2.2DN eliminates I(K) in most (75%) SCG cells and, in the remaining (25%) cells, I(K) density is reduced. Together with biochemical data revealing that Kv2.1 and Kv2.2 alpha-subunits do not associate in rat SCGs, these results suggest that Kv2.1 and Kv2.2 form distinct populations of I(K) channels, and that Kv2 alpha-subunits underlie (most of) I(K) in SCG neurons. Similar to wild-type cells, phasic, adapting, and tonic firing patterns are evident in SCG cells expressing Kv2.1DN or Kv2.2DN, although action potential durations in tonic cells are prolonged. Expression of Kv2.2DN also results in membrane depolarization, suggesting that Kv2.1- and Kv2.2-encoded I(K) channels play distinct roles in regulating the excitability of SCG neurons."	"Control of outer vestibule dynamics and current magnitude in the Kv2.1 potassium channel. In Kv2.1 potassium channels, changes in external [K+] modulate current magnitude as a result of a K+-dependent interconversion between two outer vestibule conformations. Previous evidence indicated that outer vestibule conformation (and thus current magnitude) is regulated by the occupancy of a selectivity filter binding site by K+. In this paper, we used the change in current magnitude as an assay to study how the interconversion between outer vestibule conformations is controlled. With 100 mM internal K+, rapid elevation of external [K+] from 0 to 10 mM while channels were activated produced no change in current magnitude (outer vestibule conformation did not change). When channels were subsequently closed and reopened in the presence of elevated [K+], current magnitude was increased (outer vestibule conformation had changed). When channels were activated in the presence of low internal [K+], or when K+ flow into conducting channels was transiently interrupted by an internal channel blocker, increasing external [K+] during activation did increase current magnitude (channel conformation did change). These data indicate that, when channels are in the activated state under physiological conditions, the outer vestibule conformation remains fixed despite changes in external [K+]. In contrast, when channel occupancy is lowered, (by channel closing, an internal blocker or low internal [K+]), the outer vestibule can interconvert between the two conformations. We discuss evidence that the ability of the outer vestibule conformation to change is regulated by the occupancy of a nonselectivity filter site by K+. Independent of the outer vestibule-based potentiation mechanism, Kv2.1 was remarkably insensitive to K+-dependent processes that influence current magnitude (current magnitude changed by &lt;7% at membrane potentials between -20 and 30 mV). Replacement of two outer vestibule lysines in Kv2.1 by smaller neutral amino acids made current magnitude dramatically more sensitive to the reduction in K+ driving force (current magnitude changed by as much as 40%). When combined, these outer vestibule properties (fixed conformation during activation and the presence of lysines) all but prevent variation in Kv2.1 current magnitude when [K+] changes during activation. Moreover, the insensitivity of Kv2.1 current magnitude to changes in K+ driving force promotes a more uniform modulation of current over a wide range of membrane potentials by the K+-dependent regulation of outer vestibule conformation."	"Synaptosome-associated protein of 25 kilodaltons modulates Kv2.1 voltage-dependent K(+) channels in neuroendocrine islet beta-cells through an interaction with the channel N terminus. Insulin secretion is initiated by ionic events involving membrane depolarization and Ca(2+) entry, whereas exocytic SNARE (soluble N-ethylmaleimide-sensitive factor attachment protein receptor) proteins mediate exocytosis itself. In the present study, we characterize the interaction of the SNARE protein SNAP-25 (synaptosome-associated protein of 25 kDa) with the beta-cell voltage-dependent K(+) channel Kv2.1. Expression of Kv2.1, SNAP-25, and syntaxin 1A was detected in human islet lysates by Western blot, and coimmunoprecipitation studies showed that heterologously expressed SNAP-25 and syntaxin 1A associate with Kv2.1. SNAP-25 reduced currents from recombinant Kv2.1 channels by approximately 70% without affecting channel localization. This inhibitory effect could be partially alleviated by codialysis of a Kv2.1N-terminal peptide that can bind in vitro SNAP-25, but not the Kv2.1C-terminal peptide. Similarly, SNAP-25 blocked voltage-dependent outward K(+) currents from rat beta-cells by approximately 40%, an effect that was completely reversed by codialysis of the Kv2.1N fragment. Finally, SNAP-25 had no effect on outward K(+) currents in beta-cells where Kv2.1 channels had been functionally knocked out using a dominant-negative approach, indicating that the interaction is specific to Kv2.1 channels as compared with other beta-cell Kv channels. This study demonstrates that SNAP-25 can regulate Kv2.1 through an interaction at the channel N terminus and supports the hypothesis that SNARE proteins modulate secretion through their involvement in regulation of membrane ion channels in addition to exocytic membrane fusion."	"Inhibition of Kv2.1 voltage-dependent K+ channels in pancreatic beta-cells enhances glucose-dependent insulin secretion. Voltage-dependent (Kv) outward K(+) currents repolarize beta-cell action potentials during a glucose stimulus to limit Ca(2+) entry and insulin secretion. Dominant-negative &quot;knockout&quot; of Kv2 family channels enhances glucose-stimulated insulin secretion. Here we show that a putative Kv2.1 antagonist (C-1) stimulates insulin secretion from MIN6 insulinoma cells in a glucose- and dose-dependent manner while blocking voltage-dependent outward K(+) currents. C-1-blocked recombinant Kv2.1-mediated currents more specifically than currents mediated by Kv1, -3, and -4 family channels (Kv1.4, 3.1, 4.2). Additionally, C-1 had little effect on currents recorded from MIN6 cells expressing a dominant-negative Kv2.1 alpha-subunit. The insulinotropic effect of acute Kv2.1 inhibition resulted from enhanced membrane depolarization and augmented intracellular Ca(2+) responses to glucose. Immunohistochemical staining of mouse pancreas sections showed that expression of Kv2.1 correlated highly with insulin-containing beta-cells, consistent with the ability of C-1 to block voltage-dependent outward K(+) currents in isolated mouse beta-cells. Antagonism of Kv2.1 in an ex vivo perfused mouse pancreas model enhanced first- and second-phase insulin secretion, whereas glucagon secretion was unaffected. The present study demonstrates that Kv2.1 is an important component of beta-cell stimulus-secretion coupling, and a compound that enhances, but does not initiate, beta-cell electrical activity by acting on Kv2.1 would be a useful antidiabetic agent."	"O2 sensing in the human ductus arteriosus: regulation of voltage-gated K+ channels in smooth muscle cells by a mitochondrial redox sensor. Functional closure of the human ductus arteriosus (DA) is initiated within minutes of birth by O2 constriction. It occurs by an incompletely understood mechanism that is intrinsic to the DA smooth muscle cell (DASMC). We hypothesized that O2 alters the function of an O2 sensor (the mitochondrial electron transport chain, ETC) thereby increasing production of a diffusible redox-mediator (H2O2), thus triggering an effector mechanism (inhibition of DASMC voltage-gated K+ channels, Kv). O2 constriction was evaluated in 26 human DAs (12 female, aged 9+/-2 days) studied in their normal hypoxic state or after normoxic tissue culture. In fresh, hypoxic DAs, 4-aminopyridine (4-AP), a Kv inhibitor, and O2 cause similar constriction and K+ current inhibition (I(K)). Tissue culture for 72 hours, particularly in normoxia, causes ionic remodeling, characterized by decreased O2 and 4-AP constriction in DA rings and reduced O2- and 4-AP-sensitive I(K) in DASMCs. Remodeled DAMSCs are depolarized and express less O2-sensitive channels (including Kv2.1, Kv1.5, Kv9.3, Kv4.3, and BK(Ca)). Kv2.1 adenoviral gene-transfer significantly reverses ionic remodeling, partially restoring both the electrophysiological and tone responses to 4-AP and O2. In fresh DASMCs, ETC inhibitors (rotenone and antimycin) mimic hypoxia, increasing I(K) and reversing constriction to O2, but not phenylephrine. O2 increases, whereas hypoxia and ETC inhibitors decrease H2O2 production by altering mitochondrial membrane potential (DeltaPsim). H2O2, like O2, inhibits I(K) and depolarizes DASMCs. We conclude that O2 controls human DA tone by modulating the function of the mitochondrial ETC thereby varying DeltaPsim and the production of H2O2, which regulates DASMC Kv channel activity and DA tone."	"Contributions of Kv1.2, Kv1.5 and Kv2.1 subunits to the native delayed rectifier K(+) current in rat mesenteric artery smooth muscle cells. A large array of voltage-gated K(+) channel (Kv) genes has been identified in vascular smooth muscle tissues. This molecular diversity underlies the vast repertoire of native Kv channels that regulate the excitability of vascular smooth muscle tissues. The contributions of different Kv subunit gene products to the native Kv currents are poorly understood in vascular smooth muscle cells (SMCs). In the present study, Kv subunit-specific antibodies were applied intracellularly to selectively block various Kv channel subunits and the whole-cell outward Kv currents were recorded using the patch-clamp technique in rat mesenteric artery SMCs. Anti-Kv1.2 antibody (8 microg/ml) inhibited the Kv currents by 29.2 +/- 5.9% (n = 6, P &lt; 0.05), and anti-Kv1.5 antibody (6 microg/ml) by 24.5 +/- 2.6% (n = 7, P &lt; 0.05). Anti-Kv2.1 antibody inhibited the Kv currents in a concentration-dependent fashion (4-20 microg/ml). Co-application of antibodies against Kv1.2 and Kv2.1 (8 microg/ml each) induced an additive inhibition of Kv currents by 42.3 +/- 3.1% (n = 7, P &lt; 0.05). In contrast, anti-Kv1.3 antibody (6 microg/ml) did not have any effect on the native Kv current (n = 6, P &gt; 0.05). A control antibody (anti-GIRK1) also had no effect on the native Kv currents. This study demonstrates that Kv1.2, Kv1.5, and Kv2.1 subunit genes all contribute to the formation of the native Kv channels in rat mesenteric artery SMCs."	"Novel tarantula toxins for subtypes of voltage-dependent potassium channels in the Kv2 and Kv4 subfamilies. Three novel peptides with the ability to inhibit voltage-dependent potassium channels in the shab (Kv2) and shal (Kv4) subfamilies were identified from the venom of the African tarantulas Stromatopelma calceata (ScTx1) and Heteroscodra maculata (HmTx1, HmTx2). The three toxins are 34- to 38-amino acid peptides that belong to the structural family of inhibitor cystine knot spider peptides reticulated by three disulfide bridges. Electrophysiological recordings in COS cells show that these toxins act as gating modifier of voltage-dependent K+ channels. ScTx1 is the first high-affinity inhibitor of the Kv2.2 channel subtype (IC50, 21.4 nM) to be described. ScTx1 also inhibits the Kv2.1 channels, with an IC50 of 12.7 nM, and Kv2.1/Kv9.3 heteromultimers that have been proposed to be involved in O2 sensing in pulmonary artery myocytes. In addition, it is the most effective inhibitor of Kv4.2 channels described thus far, with an IC50 of 1.2 nM. HmTx toxins share sequence similarities with both the potassium channel blocker toxins (HmTx1) and the calcium channel blocker toxin omega-GsTx SIA (HmTx2). They inhibit potassium current associated with Kv2 subtypes in the 100 to 300 nM concentration range. HmTx2 seems to be a specific inhibitor of Kv2 channels, whereas HmTx1 also inhibits Kv4 channels, including Kv4.1, with the same potency. HmTx1 is the first described peptide effector of the Kv4.1 subtype. Those novel toxins are new tools for the investigation of the physiological role of the different potassium channel subunits in cellular physiology."	"Hypoxic vasorelaxation inhibition by organ culture correlates with loss of Kv channels but not Ca(2+) channels. We (Thorne GD, Shimizu S, and Paul RJ. Am J Physiol Cell Physiol 281: C24-C32, 2001) have recently shown that organ culture for 24 h specifically inhibits relaxation to acute hypoxia (95% N(2)-5% CO(2)) in the porcine coronary artery. Here we show similar results in the porcine carotid artery and the rat and mouse aorta. In the coronary artery, part of the inability to relax to hypoxia after organ culture is associated with a concomitant loss in ability to reduce intracellular Ca(2+) concentration ([Ca(2+)](i)) during hypoxia (Thorne GD, Shimizu S, and Paul RJ. Am J Physiol Cell Physiol 281: C24-C32, 2001). To elucidate the mechanisms responsible for the loss of relaxation to hypoxia, we investigated changes in K(+) and Ca(2+) channel activity and gene expression that play key roles in [Ca(2+)](i) regulation in vascular smooth muscle (VSM). Reduced mRNA expression of O(2)-sensitive K(+) channels (Kv1.5 and Kv2.1) was shown by reverse transcriptase-polymerase chain reaction in the rat aorta. In contrast, no change in other expressed voltage-gated K(+) channels (Kv1.2 and Kv1.3) or Ca(2+) channel subtypes was found. Modified K(+) channel expression is supported by functional evidence indicating a reduced response to general K(+) channel activation, by pinacidil, and to specific voltage-dependent K(+) (Kv) channel blockade by 4-aminopyridine. In conclusion, organ culture decreases expression of specific Kv channels. These changes are consistent with altered mechanisms of VSM contractility that may be involved in Ca(2+)-dependent pathways of hypoxia-induced vasodilation."	"Developmental changes in the functional characteristics and expression of voltage-gated K+ channel currents in rat aortic myocytes. Active control of the arterial diameter by vascular smooth muscle is one of the principle mechanisms by which vessels adapt to a significant rise in blood pressure after birth. Although voltage-gated K+ (Kv) channels play an important role in the regulation of excitation-contraction coupling in arteries, very little is known about postnatal modification of Kv channels. We therefore investigated changes in the functional characteristics and expression of Kv channels in rat aortic myocytes (RAMs) during early postnatal development. Kv currents (I(Kv)) were investigated in single smooth muscle cells freshly dispersed from neonatal (1-3 days) and adult Wistar rat thoracic aorta using the whole-cell patch clamp technique. I(Kv) in neonates had significantly faster activation kinetics and was inactivated at more positive voltages than I(Kv) in adults (half-inactivation potential -24+/-2 and -40+/-3 mV and slope factor 4.2+/-0.4 and 11.1+/-0.5 mV, respectively). No difference in the steady state activation was found. I(Kv) in neonates was insensitive to a high concentration of tetraethylammonium (TEA, 10 mM) but blocked 4-aminopyridine (4-AP, IC(50)=0.5+/-0.1 mM), whereas I(Kv) in adult RAMs was almost completely abolished by 10 mM TEA and was relatively insensitive to low concentrations of 4-AP. I(Kv) in both age groups was insensitive to charybdotoxin (300 nM) or alpha-dendrotoxin (200 nM). Immunoblot analysis showed that the expression of Kv1.2 alpha-protein decreased and Kv2.1 increased with development. Significant changes in functional characteristics of the native I(Kv) and the expression of particular Kv channel proteins occurred during postnatal vascular development. These changes could play an important role in adaptation to extrauterine life."	"Obligatory heterotetramerization of three previously uncharacterized Kv channel alpha-subunits identified in the human genome. Voltage-gated K(+) channels control excitability in neuronal and various other tissues. We identified three unique alpha-subunits of voltage-gated K(+)-channels in the human genome. Analysis of the full-length sequences indicated that one represents a previously uncharacterized member of the Kv6 subfamily, Kv6.3, whereas the others are the first members of two unique subfamilies, Kv10.1 and Kv11.1. Although they have all of the hallmarks of voltage-gated K(+) channel subunits, they did not produce K(+) currents when expressed in mammalian cells. Confocal microscopy showed that Kv6.3, Kv10.1, and Kv11.1 alone did not reach the plasma membrane, but were retained in the endoplasmic reticulum. Yeast two-hybrid experiments failed to show homotetrameric interactions, but showed interactions with Kv2.1, Kv3.1, and Kv5.1. Co-expression of each of the previously uncharacterized subunits with Kv2.1 resulted in plasma membrane localization with currents that differed from typical Kv2.1 currents. This heteromerization was confirmed by co-immunoprecipitation. The Kv2 subfamily consists of only two members and uses interaction with &quot;silent subunits&quot; to diversify its function. Including the subunits described here, the &quot;silent subunits&quot; represent one-third of all Kv subunits, suggesting that obligatory heterotetramer formation is more widespread than previously thought."	"Amino-terminal determinants of U-type inactivation of voltage-gated K+ channels. The T1 domain is a cytosolic NH2-terminal domain present in all Kv (voltage-dependent potassium) channels, and is highly conserved between Kv channel subfamilies. Our characterization of a truncated form of Kv1.5 (Kv1.5deltaN209) expressed in myocardium demonstrated that deletion of the NH2 terminus of Kv1.5 imparts a U-shaped inactivation-voltage relationship to the channel, and prompted us to investigate the NH2 terminus as a regulatory site for slow inactivation of Kv channels. We examined the macroscopic inactivation properties of several NH2-terminal deletion mutants of Kv1.5 expressed in HEK 293 cells, demonstrating that deletion of residues up to the T1 boundary (Kv1.5deltaN19, Kv1.5deltaN91, and Kv1.5deltaN119) did not alter Kv1.5 inactivation, however, deletion mutants that disrupted the T1 structure consistently exhibited inactivation phenotypes resembling Kv1.5deltaN209. Chimeric constructs between Kv1.5 and the NH2 termini of Kv1.1 and Kv1.3 preserved the inactivation kinetics observed in full-length Kv1.5, again suggesting that the Kv1 T1 domain influences slow inactivation. Furthermore, disruption of intersubunit T1 contacts by mutation of residues Glu(131) and Thr(132) to alanines resulted in channels exhibiting a U-shaped inactivation-voltage relationship. Fusion of the NH2 terminus of Kv2.1 to the transmembrane segments of Kv1.5 imparted a U-shaped inactivation-voltage relationship to Kv1.5, whereas fusion of the NH2 terminus of Kv1.5 to the transmembrane core of Kv2.1 decelerated Kv2.1 inactivation and abolished the U-shaped voltage dependence of inactivation normally observed in Kv2.1. These data suggest that intersubunit T1 domain interactions influence U-type inactivation in Kv1 channels, and suggest a generalized influence of the T1 domain on U-type inactivation between Kv channel subfamilies."	"Gene transfer and metabolic modulators as new therapies for pulmonary hypertension. Increasing expression and activity of potassium channels in rat and human models. Chronic Hypoxic Pulmonary Hypertension (CH-PHT) is characterized by pulmonary artery (PA) vasoconstriction and cell proliferation/hypertrophy. PA smooth muscle cell (PASMC) contractility and proliferation are controlled by cytosolic Ca++ levels, which are largely determined by membrane potential (E(M)). E(M) is depolarized in CH-PHT due to decreased expression and functional inhibition of several redox-regulated, 4-aminopyridine (4-AP) sensitive, voltage-gated K+ channels (Kv1.5 and Kv2.1). Humans with Pulmonary Arterial Hypertension (PAH) also have decreased PASMC expression of Kv1.5 and Kv2.1. We speculate this &quot;K+-channelopathy&quot; contributes to PASMC depolarization and Ca++ overload thus promoting vasoconstriction and PASMC proliferation. We hypothesized that restoration of Kv channel expression in PHT and might eventually be beneficial. Two strategies were used to increase Kv channel expression in PASMCs: oral administration of a metabolic modulator drug (Dichloroacetate, DCA) and direct Kv gene transfer using an adenovirus (Ad5-Kv2.1). DCA a pyruvate dehydrogenase kinase inhibitor, promotes a more oxidized redox state mimicking normoxia and previously has been noted to increase K+ current in myocytes. Rats were given DCA in the drinking water after the development of CH-PHT and hemodynamics were measured approximately 5 days later. We also tested the ability of Ad5-Kv2.1 to increase Kv2.1 channel expression and function in human PAs ex vivo. The DCA-treated rats had decreased PVR, RVH and PA remodeling compared to the control CH-PHT rats (n=5/group, p&lt;0.05). DCA restored Kv2.1 expression and PASMC Kv current density to near normoxic levels. Adenoviral gene transfer increased expression of Kv2.1 channels and enhanced 4-AP constriction in human PAs. Increasing Kv channel function in PAs is feasible and might be beneficial."	"Molecular cloning and characterization of Kv6.3, a novel modulatory subunit for voltage-gated K(+) channel Kv2.1. We report identification and characterization of Kv6.3, a novel member of the voltage-gated K(+) channel. Reverse transcriptase-polymerase chain reaction analysis indicated that Kv6.3 was highly expressed in the brain. Electrophysiological studies indicated that homomultimeric Kv6.3 did not yield a functional voltage-gated ion channel. When Kv6.3 and Kv2.1 were co-expressed, the heteromultimeric channels displayed the decreased rate of deactivation compared to the homomultimeric Kv2.1 channels. Immunoprecipitation studies indicated that Kv6.3 bound with Kv2.1 in co-transfected cells. These results indicate that Kv6.3 is a novel member of the voltage-gated K(+) channel which functions as a modulatory subunit."	"Dichloroacetate, a metabolic modulator, prevents and reverses chronic hypoxic pulmonary hypertension in rats: role of increased expression and activity of voltage-gated potassium channels. Chronic hypoxic pulmonary hypertension (CH-PHT) is associated with suppressed expression and function of voltage-gated K(+) channels (Kv) in pulmonary artery (PA) smooth muscle cells (SMCs) and a shift in cellular redox balance toward a reduced state. We hypothesized that dichloroacetate (DCA), a metabolic modulator that can shift redox balance toward an oxidized state and increase Kv current in myocardial cells, would reverse CH-PHT. We studied 4 groups of rats: normoxic, normoxic+DCA (DCA 70 mg. kg(-1). d(-1) PO), chronically hypoxic (CH), and CH+DCA. CH and CH+DCA rats were kept in a hypoxic chamber (10% FiO(2)) for 2 to 3 weeks. DCA was given either at day 1 to prevent or at day 10 to reverse CH-PHT. We used micromanometer-tipped catheters and measured hemodynamics in closed-chest rats on days 14 to 18. CH+DCA rats had significantly reduced pulmonary vascular resistance, right ventricular hypertrophy, and PA remodeling compared with the CH rats. CH inhibited I(K), eliminated the acute hypoxia-sensitive I(K), and decreased Kv2.1 channel expression. In the short term, low-dose DCA (1 micromol/L) increased I(K) in CH-PASMCs. In a mammalian expression system, DCA activated Kv2.1 by a tyrosine kinase-dependent mechanism. When given long-term, DCA partially restored I(K) and Kv2.1 expression in PASMCs without altering right ventricular pyruvate dehydrogenase activity, suggesting that the beneficial effects of DCA occur by nonmetabolic mechanisms. DCA both prevents and reverses CH-PHT by a mechanism involving restoration of expression and function of Kv channels. DCA has previously been used in humans and may potentially be a therapeutic agent for pulmonary hypertension."	"Dynamic localization and clustering of dendritic Kv2.1 voltage-dependent potassium channels in developing hippocampal neurons. Dendritic excitability is modulated by the highly variable spatial and temporal expression pattern of voltage-dependent potassium channels. Somatodendritic Kv2.1 channels contribute a major component of delayed rectifier potassium current in cultured hippocampal neurons, where Kv2.1 is localized to large clusters on the soma and proximal dendrites. Here we found that dramatic differences exist in the clustering of endogenous Kv2.1 in cultured rat hippocampal GABAergic interneurons and glutamatergic pyramidal neurons. Studies on neurons developing in culture revealed that while a similar sequence of Kv2.1 localization and clustering occurred in both cell types, the process was temporally delayed in pyramidal cells. Localization and clustering of recombinant green fluorescent protein-tagged Kv2.1 occurred by the same sequence of events, and imaging of GFP-Kv2.1 clustering in living neurons revealed dynamic fusion events that underlie cluster formation. Overexpression of GFP-Kv2.1 accelerated the clustering program in pyramidal neurons such that the observed differences in Kv2.1 clustering in pyramidal neurons and interneurons were eliminated. Confocal imaging showed a preferential association of Kv2.1 with the basal membrane in cultured neurons, and electrophysiological recordings from neurons cultured on transistors revealed that Kv2.1 contributed the bulk of a previously described adherens junction delayed rectifier potassium conductance. Finally, Kv2.1 clusters were found spatially associated with ryanodine receptor intracellular Ca(2+) ([Ca(2+)](i)) release channels. These findings reveal a stepwise assembly of Kv2.1 potassium channels into membrane clusters during development, and an association of these clusters with Ca(2+) signaling apparatus. Together these data suggest that the restricted localization of Kv2.1 may play an important role in the previously observed contribution of this potassium channel in regulating dendritic [Ca(2+)](i) transients."	"Spatial alterations of Kv channels expression and K(+) currents in post-MI remodeled rat heart. The hypothesis being tested in the present study is that increased anisotropic properties occurs in the remodeled post-infarction heart due to spatial alterations in Kv channels expression and K(+) currents of the remodeled myocardium. Three to 4 weeks post myocardial infarction (MI) in the rat, we measured the two components of the outward K(+) current, I(to-fast (f)) and I(to-slow(s)) in the epicardium (epi) and endocardium (endo) of noninfarcted remodeled left ventricle (LV) using patch clamp techniques. Alterations in mRNA and/or protein levels of potassium channel genes Kv1.4, Kv1.5, Kv2.1, Kv4.2 and Kv4.3 were measured in epi, midmyocardium (mid), and endo regions of LV and in the right ventricle (RV). In sham operated rat heart, the density of I(to-f) was 2.3 times greater in epi compared to endo myocytes. In post-MI heart, the density of I(to-f) and I(to-s) decreased to a similar degree in LV epi and endo but the difference in I(to-f) density between epi and endo persisted. The mRNA and/or protein levels of Kv1.4, Kv2.1, Kv4.2 and Kv4.3 but not Kv1.5 decreased to a varying extent in different regions of LV but not in RV of post-MI heart. Our results suggest that regional downregulation of Kv channels expression and density of K(+) currents can be a significant determinant of increased spatial electrophysiological heterogeneity and contribute to increased electrical instability of the post-MI heart."	"Hippocampal heterotopia lack functional Kv4.2 potassium channels in the methylazoxymethanol model of cortical malformations and epilepsy. Human cortical malformations often result in severe forms of epilepsy. Although the morphological properties of cells within these malformations are well characterized, very little is known about the function of these cells. In rats, prenatal methylazoxymethanol (MAM) exposure produces distinct nodules of disorganized pyramidal-like neurons (e.g., nodular heterotopia) and loss of lamination in cortical and hippocampal structures. Hippocampal nodular heterotopias are prone to hyperexcitability and may contribute to the increased seizure susceptibility observed in these animals. Here we demonstrate that heterotopic pyramidal neurons in the hippocampus fail to express a potassium channel subunit corresponding to the fast, transient A-type current. In situ hybridization and immunohistochemical analysis revealed markedly reduced expression of Kv4.2 (A-type) channel subunits in heterotopic cell regions of the hippocampus of MAM-exposed rats. Patch-clamp recordings from visualized heterotopic neurons indicated a lack of fast, transient (I(A))-type potassium current and hyperexcitable firing. A-type currents were observed on normotopic pyramidal neurons in MAM-exposed rats and on interneurons, CA1 pyramidal neurons, and cortical layer V-VI pyramidal neurons in saline-treated control rats. Changes in A-current were not associated with an alteration in the function or expression of delayed, rectifier (Kv2.1) potassium channels on heterotopic cells. We conclude that heterotopic neurons lack functional A-type Kv4.2 potassium channels and that this abnormality could contribute to the increased excitability and decreased seizure thresholds associated with brain malformations in MAM-exposed rats."	"Members of the Kv1 and Kv2 voltage-dependent K(+) channel families regulate insulin secretion. In pancreatic beta-cells, voltage-dependent K(+) (Kv) channels are potential mediators of repolarization, closure of Ca(2+) channels, and limitation of insulin secretion. The specific Kv channels expressed in beta-cells and their contribution to the delayed rectifier current and regulation of insulin secretion in these cells are unclear. High-level protein expression and mRNA transcripts for Kv1.4, 1.6, and 2.1 were detected in rat islets and insulinoma cells. Inhibition of these channels with tetraethylammonium decreased I(DR) by approximately 85% and enhanced glucose-stimulated insulin secretion by 2- to 4-fold. Adenovirus-mediated expression of a C-terminal truncated Kv2.1 subunit, specifically eliminating Kv2 family currents, reduced delayed rectifier currents in these cells by 60-70% and enhanced glucose-stimulated insulin secretion from rat islets by 60%. Expression of a C-terminal truncated Kv1.4 subunit, abolishing Kv1 channel family currents, reduced delayed rectifier currents by approximately 25% and enhanced glucose-stimulated insulin secretion from rat islets by 40%. This study establishes that Kv2 and 1 channel homologs mediate the majority of repolarizing delayed rectifier current in rat beta-cells and that antagonism of Kv2.1 may prove to be a novel glucose-dependent therapeutic treatment for type 2 diabetes."	"Modulation of outward potassium currents in aligned cultures of neonatal rat ventricular myocytes during phorbol ester-induced hypertrophy. Protein kinase C-stimulating phorbol esters induce a strong hypertrophic response when applied in vitro to cardiac ventricular myocytes. The aim of this study was to determine if this in vitro model of hypertrophy is associated with changes in the expression of voltage-gated K(+)channels. Myocytes were isolated from 3--4-day-old neonatal rats and cultured on aligned collagen thin gels. Membrane currents were measured with the use of the whole-cell arrangement of the patch clamp technique and the expression levels of the Kv1.4, Kv4.2 and Kv2.1 alpha subunits quantified using Western blot analysis. Voltage steps positive to -30 mV resulted in the activation of both a transient (I(to)) and a sustained (I(sus)) component of outward K(+)current in the aligned myocytes. Overnight exposure to phorbol 12-myristate 13-acetate (PMA) caused a 55% increase in myocyte size and a three-fold reduction in the peak amplitude of I(to). No differences in the half-maximal voltages required for activation and steady-state inactivation were observed between I(to)measured in control and PMA-treated myocytes. In contrast, PMA treatment resulted in a 62% increase in a tetraethylammonium-sensitive component of I(sus)(TEA-I(sus)) and was associated with the appearance of a slow component of current decay. Expression levels of the Kv1.4 and Kv4.2 alpha subunits were strongly depressed in the hypertrophic myocytes, while the density of the Kv2.1 alpha subunit was enhanced. PMA-induced changes in the Kv alpha subunits were partially prevented through inhibition of the mitogen-activated protein kinase (MAPK) pathway. Thus, PMA-induced hypertrophy of cultured ventricular myocytes is associated with an altered expression of voltage-gated K(+)channels."	"Role of the S2 and S3 segment in determining the activation kinetics in Kv2.1 channels. We constructed chimeras between the rapidly activating Kv1.2 channel and the slowly activating Kv2.1 channel in order to study to what extent sequence differences within the S1-S4 region contribute to the difference in activation kinetics. The channels were expressed in Xenopus oocytes and the currents were measured with a two-microelectrode voltage-clamp technique. Substitution of the S1-S4 region of Kv2.1 subunits by the ones of Kv1.2 resulted in chimeric channels which activated more rapidly than Kv2.1. Furthermore, activation kinetics were nearly voltage-independent in contrast to the pronounced voltage-dependent activation kinetics of both parent channels. Systematic screening of the S1-S4 region by the replacement of smaller protein parts resolved that the main functional changes generated by the S1-S4 substitution were generated by the S2 and the S3 segment. However, the effects of these segments were different: The S3 substitution reduced the effective gating charge and accelerated both a voltage-dependent and a voltage-independent component of the activation time course. In contrast, the S2 substitution accelerated predominantly the voltage-dependent component of the activation time course thereby leaving the effective gating charge unchanged. It is concluded that the S2 and the S3 segment determine the activation kinetics in a specific manner."	"Downregulation of K(+) channel genes expression in type I diabetic cardiomyopathy. Type I diabetic cardiomyopathy has consistently been shown to be associated with decrease of repolarising K(+) currents, but the mechanisms responsible for the decrease are not well defined. We investigated the streptozotocin (STZ) rat model of type I diabetes. We utilized RNase protection assay and Western blot analysis to investigate the message expression and protein density of key cardiac K(+) channel genes in the diabetic rat left ventricular (LV) myocytes. Our results show that message and protein density of Kv2.1, Kv4.2, and Kv4.3 are significantly decreased as early as 14 days following induction of type I diabetes in the rat. The results demonstrate, for the first time, that insulin-deficient type I diabetes is associated with early downregulation of the expression of key cardiac K(+) channel genes that could account for the depression of cardiac K(+) currents, I(to-f) and I(to-s). These represent the main electrophysiological abnormality in diabetic cardiomyopathy and is known to enhance the arrhythmogenecity of the diabetic heart. The findings also extend the extensive list of gene expression regulation by insulin."	"Multiple single-nucleotide polymorphisms (SNPs) in the Japanese population in six candidate genes for long QT syndrome. We report here 20 single-nucleotide polymorphisms (SNPs), including 15 novel ones, in six genes that are considered to be candidates for long QT syndrome (LQTS): 2 SNPs in KCNB1, 3 in KCND3, 3 in KCNJ11, 7 in ABCC9, 3 in ADRB1, and 2 in SLC18A2. We also examined their allelic frequencies in a Japanese sample population of LQTS-affected and nonaffected individuals. These data will be useful for genetic association studies designed to investigate acquired arrhythmias."	"Voltage-gated K+ channels in chemoreceptor sensory neurons of rat petrosal ganglion. A subpopulation of sensory neurons in the petrosal ganglion transmits information between peripheral chemoreceptors (glomus cells) in the carotid body and relay neurons in the nucleus of the solitary tract. Expression of voltage-gated K+ channels in these neurons was characterized by immunohistochemical localization. Five members of the Kv1 family, Kv1.1, Kv1.2, Kv1.4, Kv1.5 and Kv1.6 and members of two other families, Kv2.1 and Kv4.3, were identified in over 90% of the chemoreceptor neurons. Although the presence of these channel proteins was consistent throughout the population, individual neurons showed considerable variation in K+ current profiles."	"Heterogeneity of Kv2.1 mRNA expression and delayed rectifier current in single isolated myocytes from rat left ventricle. Expression of the voltage-gated K(+) channel Kv2.1, a possible molecular correlate for the cardiac delayed rectifier current (I(K)), has recently been shown to vary between individual ventricular myocytes. The functional consequences of this cell-to-cell heterogeneity in Kv2.1 expression are not known. Using multiplex single-cell reverse transcriptase-polymerase chain reaction (RT-PCR), we detected Kv2.1 mRNA in 47% of isolated midmyocardial myocytes from the rat left ventricular free wall that were positive for alpha-myosin heavy chain mRNA (n=74). Whole-cell patch-clamp recordings demonstrated marked differences in the magnitude of I(K) (200 to 1450 pA at V(Pip)=40 mV) between individual myocytes of the same origin. Furthermore, the tetraethylammonium (TEA)-sensitive outward current (I(TEA)), known to be partly encoded by Kv2.1 in mice, revealed a wide range of current magnitudes between single cells (150 to 1130 pA at V(Pip)=40 mV). Combined patch-clamp recordings and multiplex single-cell RT-PCR analysis of the same myocytes, however, showed no differences in I(K) or I(TEA) magnitude or inactivation kinetics between myocytes expressing Kv2.1 mRNA and those that did not express Kv2.1 mRNA. In contrast, in all midmyocardial myocytes expressing the transient outward potassium current (I(to1)), Kv4 mRNA, which has been shown to underlie I(to1), was detected (n=10). These results indicate that I(K) heterogeneity among individual left ventricular myocytes cannot be explained by the distribution pattern of Kv2.1 mRNA. Other mechanisms besides Kv2.1 mRNA expression appear to determine magnitude and kinetics of I(K) in rat ventricular myocytes."	"Molecular cloning and functional characterization of a novel delayed rectifier potassium channel from channel catfish (Ictalurus punctatus): expression in taste buds. The gustatory system of channel catfish is widely studied for its sensitivity to amino acids. As a first step in identifying the molecular components that play a role in taste transduction in catfish, we cloned the full-length cDNA for Kv2-catfish, a novel K(+) channel that is expressed in taste buds. The deduced amino acid sequence is 816 residues, and shares a 56-59% sequence identity with Kv2.1 and Kv2.2, the other members of the vertebrate Kv2 subfamily of voltage-gated K(+) channels. The Kv2-catfish RNA was expressed in taste buds, brain, skeletal muscle, kidney, intestine and gills, and its gene is represented as a single copy in the catfish genome. Recombinant channels expressed in Xenopus oocytes were selective for K(+), and were inhibited by tetraethylammonium applied to the extracellular side of the membrane during two-electrode voltage clamp analysis with a 50% inhibitory constant of 6.1 mM. The channels showed voltage-dependent activation, and did not inactivate within 200 ms. Functionally, Kv2-catfish is a voltage-gated, delayed rectifier K(+) channel, and its primary structure is the most divergent sequence identified among the vertebrate members of the Kv2 subfamily of K(+) channels, being related equally well to Kv2.1 and Kv2.2."	"Effects of bupivacaine and a novel local anesthetic, IQB-9302, on human cardiac K+ channels. We have studied and compared the effects of bupivacaine with those induced by a new local anesthetic, IQB-9302, on human cardiac K+ channels hKv1.5, Kv2.1, Kv4.3, and HERG. Both drugs have a close chemical structure, only differing in their N-substituent (n-butyl and cyclopropylmethyl, for bupivacaine and IQB-9302, respectively). Both drugs blocked Kv2.1, Kv4.3, and HERG channels similarly. Bupivacaine inhibited these channels by 48.6 +/- 3.4, 45.4 +/- 12.4, and 43.1 +/- 9.1%, respectively, and IQB-9302 by 48.1 +/- 3.3, 36.1 +/- 3.7, and 50.3 +/- 6.6%, respectively. However, bupivacaine was 2.5 times more potent than IQB-9302 to block hKv1.5 channels (EC(50) = 8.9 +/- 1.4 versus 21.5 +/- 4.7 microM). Both drugs induced a time- and voltage-dependent block of hKv1.5 and Kv2.1 channels. Block of Kv4.3 channels induced by either drug was time- and voltage-dependent at membrane potentials coinciding with the activation of the channels. IQB-9302 produced an instantaneous block of Kv4.3 and hKv1.5 channels at the beginning of the depolarizing pulse that can be interpreted as a drug interaction with a nonconducting state. Bupivacaine and IQB-9302 induced a similar degree of block of HERG channels and induced a steep voltage-dependent decrease of the relative current. These results suggest that 1) bupivacaine and IQB-9302 block the open state of hKv1.5, Kv2.1, Kv4.3, and HERG channels; and 2) small differences at the N-substituent of these drugs do not affect the drug-induced block of Kv2.1, Kv4.3, or HERG, but specifically modify block of hKv1.5 channels."	"GYGD pore motifs in neighbouring potassium channel subunits interact to determine ion selectivity. Cells maintain a negative resting membrane potential through the constitutive activity of background K+ channels. A novel multigene family of such K+ channels has recently been identified. A unique characteristic of these K+ channels is the presence of two homologous, subunit-like domains, each containing a pore-forming region. Sequence co-variations in the GYGD signature motifs of the two pore regions suggested an interaction between neighbouring pore domains. Mutations of the GYGD motif in the rat drk1 (Kv2.1) K+ channel showed that the tyrosine (Y) position was important for K+ selectivity and single channel conductance, whereas the aspartate (D) position was a critical determinant of open state stability. Tandem constructs engineered to mimic the GYGx-GxGD pattern seen in two-domain K+ channels delineated a co-operative intersubunit interaction between the Y and D positions, which determined ion selectivity, conductance and gating. In the bacterial KcsA K+ channel crystal structure, the equivalent aspartate residue (D80) does not directly interact with permeating K+ ions. However, the data presented here show that the D position is able to fine-tune ion selectivity through a functional interaction with the Y position in the neighbouring subunit. These data indicate a physiological basis for the extensive sequence variation seen in the GYGD motifs of two-domain K+ channels. It is suggested that a cell can precisely regulate its resting membrane potential by selectively expressing a complement of two-domain K+ channels."	"Molecular diversity of the repolarizing voltage-gated K+ currents in mouse atrial cells. Voltage-clamp studies on atrial myocytes isolated from adult and postnatal day 15 (P15) C57BL6 mice demonstrate the presence of three kinetically distinct Ca2+-independent, depolarization-activated outward K+ currents: a fast, transient outward current (Ito,f), a rapidly activating, slowly inactivating current (IK,s) and a non-inactivating, steady-state current (Iss). The time- and voltage-dependent properties of to,f, IK,s and Iss in adult and P15 atrial cells are indistinguishable. Pharmacological experiments reveal the presence of two components of IK,s: one that is blocked selectively by 50 microM 4-aminopyridine (4-AP), and a 4-AP-insensitive component that is blocked by 25 mM TEA; Iss is also partially attenuated by 25 mM TEA. There are also two components of IK,s recovery from steady-state inactivation. To explore the molecular correlates of mouse atrial IK,s and Iss, whole-cell voltage-clamp recordings were obtained from P15 and adult atrial cells isolated from transgenic mice expressing a mutant Kv2.1 alpha subunit (Kv2.1N216Flag) that functions as a dominant negative, and from P15 atrial myocytes exposed to (1 microM) antisense oligodeoxynucleotides (AsODNs) targeted against Kv1.5 or Kv2.1. Peak outward K+ current densities are attenuated significantly in atrial myocytes isolated from P15 and adult Kv2.1N216Flag-expressing animals and in P15 cells exposed to AsODNs targeted against either Kv1.5 or Kv2.1. Analysis of the decay phases of the outward currents evoked during long (5 s) depolarizing voltage steps revealed that IK, s is selectively attenuated in cells exposed to the Kv1.5 AsODN, whereas both IK,s and Iss are attenuated in the presence of the Kv2. 1 AsODN. In P15 and adult Kv2.1N216Flag-expressing atrial cells, mean +/- s.e.m. IK,s and Iss densities are also significantly lower than in non-transgenic atrial cells. In addition, pharmacological experiments reveal that the TEA-sensitive component IK,s is selectively eliminated in P15 and adult Kv2.1N216Flag-expressing atrial cells. Taken together, the results presented here reveal that both Kv1.5 and Kv2.1 contribute to mouse atrial IK,s, consistent with the presence of two molecularly distinct components of IK,s. In addition, Kv2.1 contributes to mouse atrial Iss."	"Two mechanisms of K(+)-dependent potentiation in Kv2.1 potassium channels. Elevation of external [K(+)] potentiates outward K(+) current through several voltage-gated K(+) channels. This increase in current magnitude is paradoxical in that it occurs despite a significant decrease in driving force. We have investigated the mechanisms involved in K(+)-dependent current potentiation in the Kv2.1 K(+) channel. With holding potentials of -120 to -150 mV, which completely removed channels from the voltage-sensitive inactivated state, elevation of external [K(+)] up to 10 mM produced a concentration-dependent increase in outward current magnitude. In the absence of inactivation, currents were maximally potentiated by 38%. At more positive holding potentials, which produced steady-state inactivation, K(+)-dependent potentiation was enhanced. The additional K(+)-dependent potentiation (above 38%) at more positive holding potentials was precisely equal to a K(+)-dependent reduction in steady-state inactivation. Mutation of two lysine residues in the outer vestibule of Kv2.1 (K356 and K382), to smaller, uncharged residues (glycine and valine, respectively), completely abolished K(+)-dependent potentiation that was not associated with inactivation. These mutations did not influence steady-state inactivation or the K(+)-dependent potentiation due to reduction in steady-state inactivation. These results demonstrate that K(+)-dependent potentiation can be completely accounted for by two independent mechanisms: one that involved the outer vestibule lysines and one that involved K(+)-dependent removal of channels from the inactivated state. Previous studies demonstrated that the outer vestibule of Kv2.1 can be in at least two conformations, depending on the occupancy of the selectivity filter by K(+) (Immke, D., M. Wood, L. Kiss, and S. J. Korn. 1999. J. Gen. Physiol. 113:819-836; Immke, D., and S. J. Korn. 2000. J. Gen. Physiol. 115:509-518). This change in conformation was functionally defined by a change in TEA sensitivity. Similar to the K(+)-dependent change in TEA sensitivity, the lysine-dependent potentiation depended primarily (&gt;90%) on Lys-356 and was enhanced by lowering initial K(+) occupancy of the pore. Furthermore, the K(+)-dependent changes in current magnitude and TEA sensitivity were highly correlated. These results suggest that the previously described K(+)-dependent change in outer vestibule conformation underlies the lysine-sensitive, K(+)-dependent potentiation mechanism."	"Modification of delayed rectifier potassium currents by the Kv9.1 potassium channel subunit. Within auditory pathways, the intrinsic electrical properties of neurons, and in particular their complement of potassium channels, play a key role in shaping the timing and pattern of action potentials produced by sound stimuli. The Kv9.1 gene encodes a potassium channel alpha subunit that is expressed in a variety of neurons, including those of the inferior colliculus. When cRNA encoding this subunit is injected into Xenopus oocytes, no functional channels are expressed. When, however, Kv9.1 is co-expressed with certain other alpha potassium channel subunits, it changes the characteristics of the currents produced by these functional channel proteins. We have found that Kv9.1 isolated from a rat brain cDNA library alters the kinetics and the voltage-dependence of activation and inactivation of Kv2.1, a channel subunit that generates slowly inactivating delayed rectifier potassium currents. The rate of activation of Kv2.1 is slowed by co-expression with Kv9.1. With Kv2.1 alone, the amplitude of evoked currents increases monotonically with increasing command potentials. In contrast, when Kv2.1 is co-expressed with Kv9.1, the amplitude of currents increases with increasing depolarization up to potentials of only approximately +60 mV, after which increasing depolarization results in a decrease in current amplitude. Currents produced by Kv2. 1 alone and by Kv2.1/Kv9.1 are both sensitive to the potassium channel blocker tetraethyl ammonium ions (TEA), but higher concentrations of TEA (20 mM) eliminate the biphasic voltage-dependence of the Kv2.1/Kv9.1 currents. Co-expression with Kv9.1 also produces an apparent negative shift in the voltage-dependence of inactivation and activation. Computer simulations of model neurons suggest that co-expression of Kv9.1 with Kv2.1 may have different effects in neurons depending on whether their firing pattern is limited by the inactivation of inward currents. In excitable cells in which the inward currents do not inactivate, co-expression with Kv9.1 could produce an inhibition of firing during sustained depolarization. In contrast, in model neurons with rapidly inactivating inward current, the change in the voltage-dependence of activation produced by Kv9.1 may allow the cells to follow high frequency stimulation more effectively."	"Hypomyelination and increased activity of voltage-gated K(+) channels in mice lacking protein tyrosine phosphatase epsilon. Protein tyrosine phosphatase epsilon (PTP epsilon) is strongly expressed in the nervous system; however, little is known about its physiological role. We report that mice lacking PTP epsilon exhibit hypomyelination of sciatic nerve axons at an early post-natal age. This occurs together with increased activity of delayed- rectifier, voltage-gated potassium (Kv) channels and with hyperphosphorylation of Kv1.5 and Kv2.1 Kv channel alpha-subunits in sciatic nerve tissue and in primary Schwann cells. PTP epsilon markedly reduces Kv1.5 or Kv2.1 current amplitudes in Xenopus oocytes. Kv2.1 associates with a substrate-trapping mutant of PTP epsilon, and PTP epsilon profoundly reduces Src- or Fyn-stimulated Kv2.1 currents and tyrosine phosphorylation in transfected HEK 293 cells. In all, PTP epsilon antagonizes activation of Kv channels by tyrosine kinases in vivo, and affects Schwann cell function during a critical period of Schwann cell growth and myelination."	"Regulation of Shaker-type potassium channels by hypoxia. Oxygen-sensitive K+ channels in PC12 cells. Little is known about the molecular composition of the O2-sensitive K+ (Ko2) channels. The possibility that these channels belong to the Shaker subfamily (Kv1) of voltage-dependent K+ (Kv) channels has been raised in pulmonary artery (PA) smooth muscle cells. Numerous findings suggest that the Ko2 channel in PC12 cells is a Kv1 channel, formed by the Kv1.2 alpha subunit. The Ko2 channel in PC12 cells is a slow-inactivating voltage-dependent K+ channel of 20 pS conductance. Other Kv channels, also expressed in PC12 cells, are not inhibited by hypoxia. Selective up-regulation by chronic hypoxia of the Kv1.2 alpha subunit expression correlates with an increase O2-sensitivity of the K+ current. Other Kv1 alpha subunit genes encoding slow-inactivating Kv channels, such as Kv1.3, Kv2.1, Kv3.1 and Kv3.2 are not modulated by chronic hypoxia. The Ko2 current in PC12 cells is blocked by 5 mM externally applied tetraethylammonium chloride (TEA) and by charydbotoxin (CTX). The responses of the Kv1.2 K+ channel to hypoxia have been studied in the Xenopus oocytes and compared to those of Kv2.1, also proposed as Ko2 channel in PA smooth muscle cells. Two-electrode voltage clamp experiments show that hypoxia induces inhibition of K+ current amplitude only in oocytes injected with Kv1.2 cRNA. These data indicate that Kv1.2 K+ channels are inhibited by hypoxia."	"Structural elements determining activation kinetics in Kv2.1. Voltage-dependent K+ channels open when depolarizing the membrane voltage. Among the different alpha-subunits, the time course of current activation spreads over a wide range. The structural basis underlying this diversity is not known. We constructed multiple chimeras between two voltage-dependent K+ channels, the rapidly activating Kv1.2 and the slowly activating Kv2.1, and we focused on the C-terminal half of the core region. The general strategy was to substitute parts of Kv2.1 by corresponding parts of Kv1.2 and to test for an acceleration of activation. We identified three regions which contribute to the determination of the activation kinetics: the S5-pore linker, the deep pore, and the S4-segment."	"KChAP as a chaperone for specific K(+) channels. The concept of chaperones for K(+) channels is new. Recently, we discovered a novel molecular chaperone, KChAP, which increased total Kv2.1 protein and functional channels in Xenopus oocytes through a transient interaction with the Kv2.1 amino terminus. Here we report that KChAP is a chaperone for Kv1.3 and Kv4.3. KChAP increased the amplitude of Kv1.3 and Kv4.3 currents without affecting kinetics or voltage dependence, but had no such effect on Kv1.1, 1.2, 1.4, 1.5, 1.6, and 3.1 or Kir2.2, HERG, or KvLQT1. Although KChAP belongs to a family of proteins that interact with transcription factors, upregulation of channel currents was not blocked by the transcription inhibitor actinomycin D. A 98-amino acid fragment of KChAP binds to the channel and is indistinguishable from KChAP in its enhancement of Kv4.3 current and protein levels. Using a KChAP antibody, we have coimmunoprecipitated KChAP with Kv2.1 and Kv4.3 from heart. We propose that KChAP is a chaperone for specific Kv channels and may have this function in cardiomyocytes where Kv4.3 produces the transient outward current, I(to)."	"Short-term effects of rapid pacing on mRNA level of voltage-dependent K(+) channels in rat atrium: electrical remodeling in paroxysmal atrial tachycardia. Atrial fibrillation causes electrophysiological changes of the atrium, thereby facilitating its maintenance. Although the expression of ion channels is modulated in chronic atrial fibrillation, it is yet unknown whether paroxysmal atrial fibrillation can also lead to electrical remodeling by affecting gene expression. To examine the short-term effects of rapid pacing on the mRNA level of voltage-dependent K(+) channels, high-rate atrial pacing was performed in Sprague-Dawley rat hearts. Total RNA was prepared from the atrial appendages from 0 to 8 hours after the onset of pacing, and mRNA levels of Kv1.2, Kv1. 4, Kv1.5, Kv2.1, Kv4.2, Kv4.3, erg, KvLQT1, and minK were determined by RNase protection assay. Among these 9 genes, the mRNA level of the Kv1.5 channel immediately and transiently increased, with bimodal peaks at 0.5 and 2 hours after the onset of pacing. Conversely, the pacing gradually and progressively decreased the mRNA levels of the Kv4.2 and Kv4.3 channels. The increase of Kv1.5 and the decrease of Kv4.2 and Kv4.3 mRNA levels were both rate dependent. In correspondence with the changes in the mRNA level, Kv1. 5 channel protein transiently increased in the membrane fraction of the atrium during a 2- to 8-hour pacing period. Electrophysiological findings that the shortening of the action potential produced by 4-hour pacing was almost abolished by a low concentration of 4-aminopyridine implied that the increased Kv1.5 protein was functioning. Even short-term high-rate atrial excitation could differentially alter the mRNA levels of Kv1.5, Kv4.2, and Kv4.3 in a rate-dependent manner. In particular, increased Kv1.5 gene expression, having a transient nature, implied the possible biochemical electrical remodeling unique to paroxysmal tachycardia."	"Ion-Ion interactions at the selectivity filter. Evidence from K(+)-dependent modulation of tetraethylammonium efficacy in Kv2.1 potassium channels. In the Kv2.1 potassium channel, binding of K(+) to a high-affinity site associated with the selectivity filter modulates channel sensitivity to external TEA. In channels carrying Na(+) current, K(+) interacts with the TEA modulation site at concentrations &lt;/=30 microM. In this paper, we further characterized the TEA modulation site and examined how varying K(+) occupancy of the pore influenced the interaction of K(+) with this site. In the presence of high internal and external [K(+)], TEA blocked 100% of current with an IC(50) of 1.9 +/- 0.2 mM. In the absence of a substitute permeating ion, such as Na(+), reducing access of K(+) to the pore resulted in a reduction of TEA efficacy, but produced little or no change in TEA potency (under conditions in which maximal block by TEA was just 32%, the IC(50) for block was 2.0 +/- 0.6 mM). The all-or-none nature of TEA block (channels were either completely sensitive or completely insensitive), indicated that one selectivity filter binding site must be occupied for TEA sensitivity, and that one selectivity filter binding site is not involved in modulating TEA sensitivity. At three different levels of K(+) occupancy, achieved by manipulating access of internal K(+) to the pore, elevation of external [K(+)] shifted channels from a TEA-insensitive to -sensitive state with an EC(50) of approximately 10 mM. Combined with previous results, these data demonstrate that the TEA modulation site has a high affinity for K(+) when only one K(+) is in the pore and a low affinity for K(+) when the pore is already occupied by K(+). These results indicate that ion-ion interactions occur at the selectivity filter. These results also suggest that the selectivity filter is the site of at least one low affinity modulatory effect of external K(+), and that the selectivity filter K(+) binding sites are not functionally interchangeable."	"Apparent change in ion selectivity caused by changes in intracellular K(+) during whole-cell recording. In whole-cell recordings from HEK293 cells stably transfected with the delayed rectifier K(+) channel Kv2.1, long depolarizations produce current-dependent changes in [K(+)](i) that mimic inactivation and changes in ion selectivity. With 10 mM K(o)(+) or K(i)(+), and 140-160 mM Na(i,o)(+), long depolarizations shifted the reversal potential (V(R)) toward E(Na). However, similar shifts in V(R) were observed when Na(i,o)(+) was replaced with N-methyl-D-glucamine (NMG(+))(i, o). In that condition, [K(+)](o) did not change significantly, but the results could be quantitatively explained by changes in [K(+)](i). For example, a mean outward K(+) current of 1 nA for 2 s could decrease [K(+)](i) from 10 mM to 3 mM in a 10 pF cell. Dialysis by the recording pipette reduced but did not fully prevent changes in [K(+)](i). With 10 mM K(i,o)(+), 150 mM Na(i)(+), and 140 mM NMG(o)(+), steps to +20 mV produced a positive shift in V(R), as expected from depletion of K(i)(+), but opposite to the shift expected from a decreased K(+)/Na(+) selectivity. Long steps to V(R) caused inactivation, but no change in V(R). We conclude that current-dependent changes in [K(+)](i) need to be carefully evaluated when studying large K(+) currents in small cells."	"A novel targeting signal for proximal clustering of the Kv2.1 K+ channel in hippocampal neurons. The discrete localization of ion channels is a critical determinant of neuronal excitability. We show here that the dendritic K+ channels Kv2.1 and Kv2.2 were differentially targeted in cultured hippocampal neurons. Kv2.1 was found in high-density clusters on the soma and proximal dendrites, while Kv2.2 was uniformly distributed throughout the soma and dendrites. Chimeras revealed a proximal restriction and clustering domain on the cytoplasmic tail of Kv2.1. Truncations and internal deletions revealed a 26-amino acid targeting signal within which four residues were critical for localization. This signal is not related to other known sequences for neuronal and epithelial membrane protein targeting and represents a novel cytoplasmic signal responsible for proximal restriction and clustering."	"Differential targeting of Shaker-like potassium channels to lipid rafts. Ion channel targeting within neuronal and muscle membranes is an important determinant of electrical excitability. Recent evidence suggests that there exists within the membrane specialized microdomains commonly referred to as lipid rafts. These domains are enriched in cholesterol and sphingolipids and concentrate a number of signal transduction proteins such as nitric-oxide synthase, ligand-gated receptors, and multiple protein kinases. Here, we demonstrate that the voltage-gated K(+) channel Kv2.1, but not Kv4.2, targets to lipid rafts in both heterologous expression systems and rat brain. The Kv2.1 association with lipid rafts does not appear to involve caveolin. Depletion of cellular cholesterol alters the buoyancy of the Kv2.1 associated rafts and shifts the midpoint of Kv2.1 inactivation by nearly 40 mV without affecting peak current density or channel activation. The differential targeting of Kv channels to lipid rafts represents a novel mechanism both for the subcellular sorting of K(+) channels to regions of the membrane rich in signaling complexes and for modulating channel properties via alterations in lipid content."	"Frequency-dependent regulation of rat hippocampal somato-dendritic excitability by the K+ channel subunit Kv2.1. The voltage-dependent potassium channel subunit Kv2.1 is widely expressed throughout the mammalian CNS and is clustered primarily on the somata and proximal dendrites, but not axons, of both principal neurones and inhibitory interneurones of the cortex and hippocampus. This expression pattern suggests that Kv2.1-containing channels may play a role in the regulation of pyramidal neurone excitability. To test this hypothesis and to determine the functional role of Kv2. 1-containing channels, cultured hippocampal slices were incubated with antisense oligonucleotides directed against Kv2.1 mRNA. Western blot analysis demonstrated that Kv2.1 protein content of cultured slices decreased &gt; 90 % following 2 weeks of treatment with antisense oligonucleotides, when compared with either control missense-treated or untreated cultures. Similarly, Kv2.1 immunostaining was selectively decreased in antisense-treated cultures. Sustained outward potassium currents, recorded in both whole-cell and outside-out patch configurations, demonstrated a selective reduction of amplitude only in antisense-treated CA1 pyramidal neurones. Under current-clamp conditions, action potential durations were identical in antisense-treated, control missense-treated and untreated slices when initiated by low frequency stimulation (0.2 Hz). In contrast, spike repolarization was progressively prolonged during higher frequencies of stimulation (1 Hz) only in cells from antisense-treated slices. Similarly, action potentials recorded during electrographic interictal activity in the 'high [K+]o' model of epilepsy demonstrated pronounced broadening of their late phase only in cells from antisense-treated slices. Consistent with the frequency-dependent spike broadening, calcium imaging experiments from single CA1 pyramidal neurones revealed that high frequency Schaffer collateral stimulation resulted in a prolonged elevation of dendritic [Ca2+]i transients only in antisense-treated neurones. These studies demonstrate that channels containing Kv2.1 play a role in regulating pyramidal neurone somato-dendritic excitability primarily during episodes of high frequency synaptic transmission."	"Voltage sensitivity and gating charge in Shaker and Shab family potassium channels. The members of the voltage-dependent potassium channel family subserve a variety of functions and are expected to have voltage sensors with different sensitivities. The Shaker channel of Drosophila, which underlies a transient potassium current, has a high voltage sensitivity that is conferred by a large gating charge movement, approximately 13 elementary charges. A Shaker subunit's primary voltage-sensing (S4) region has seven positively charged residues. The Shab channel and its homologue Kv2.1 both carry a delayed-rectifier current, and their subunits have only five positively charged residues in S4; they would be expected to have smaller gating-charge movements and voltage sensitivities. We have characterized the gating currents and single-channel behavior of Shab channels and have estimated the charge movement in Shaker, Shab, and their rat homologues Kv1.1 and Kv2.1 by measuring the voltage dependence of open probability at very negative voltages and comparing this with the charge-voltage relationships. We find that Shab has a relatively small gating charge, approximately 7.5 e(o). Surprisingly, the corresponding mammalian delayed rectifier Kv2.1, which has the same complement of charged residues in the S2, S3, and S4 segments, has a gating charge of 12.5 e(o), essentially equal to that of Shaker and Kv1.1. Evidence for very strong coupling between charge movement and channel opening is seen in two channel types, with the probability of voltage-independent channel openings measured to be below 10(-9) in Shaker and below 4 x 10(-8) in Kv2.1."	"Expression of voltage-dependent K(+) channel genes in mesenteric artery smooth muscle cells. Molecular basis of native voltage-dependent K(+) (Kv) channels in smooth muscle cells (SMCs) from rat mesenteric arteries was investigated. The whole cell patch-clamp study revealed that a 4-aminopyridine-sensitive delayed rectifier K(+) current (I(K)) was the predominant K(+) conductance in these cells. A systematic screening of the expression of 18 Kv channel genes using RT-PCR technique showed that six I(K)-encoding genes (Kv1.2, Kv1.3, Kv1.5, Kv2.1, Kv2.2, and Kv3.2) were expressed in mesenteric artery. Although no transient outward Kv currents (I(A)) were recorded in the studied SMCs, transcripts of multiple I(A)-encoding genes, including Kv1.4, Kv3.3, Kv3.4, Kv4.1, Kv4.2, and Kv4.3 as well as I(A)-facilitating Kv beta-subunits (Kvbeta1, Kvbeta2, and Kvbeta3), were detected in mesenteric arteries. Western blot analysis demonstrated that four I(K)-related Kv channel proteins (Kv1.2, Kv1. 3, Kv1.5, and Kv2.1) were detected in mesenteric artery tissues. The presence of Kv1.2, Kv1.3, Kv1.5, and Kv2.1 channel proteins in isolated SMCs was further confirmed by immunocytochemistry study. Our results suggest that the native I(K) in rat mesenteric artery SMCs might be generated by heteromultimerization of Kv genes."	"Structural and functional characterization of Kv6.2 a new gamma-subunit of voltage-gated potassium channel. We have cloned and functionally expressed Kv6.2, a new member of the Kv6 subfamily of voltage-gated potassium channel subunits. The human Kv6.2 (KCNF2) gene was mapped at 18q22-18q23. Kv6.2 mRNA is preferentially expressed in rat and human myocard. Rat and human Kv6.2 subunits appear to be unable to form functional Kv channels in a heterologous expression system, but, when coexpressed with Kv2.1 alpha subunits, heteromultimeric Kv channels were formed mediating voltage-activated delayed-rectifier type outward currents. Their kinetics and conductance-voltage relationship were different from those mediated by homomultimeric Kv2.1 channels. Yeast two-hybrid reporter assays indicated that Kv6.2 amino-termini are able to interact specifically with the Kv2.1 amino-terminus. It is proposed that this protein protein interaction underlies Kv2.1/Kv6.2 subunit assembly and the expression of functional heteromultimeric Kv2.1/Kv6.2 channels. The most resiliant feature of the Kv2.1/Kv6.2 channels was their submicromolar sensitivity to the antiarrhythmic drug propafenone. The data suggest that delayed-rectifier type channels containing Kv6.2 subunits may contribute to cardiac action potential repolarization."	"Attenuation of the slow component of delayed rectification, action potential prolongation, and triggered activity in mice expressing a dominant-negative Kv2 alpha subunit. An in vivo experimental strategy, involving cardiac-specific expression of a mutant Kv 2.1 subunit that functions as a dominant negative, was exploited in studies focused on exploring the role of members of the Kv2 subfamily of pore-forming (alpha) subunits in the generation of functional voltage-gated K(+) channels in the mammalian heart. A mutant Kv2.1 alpha subunit (Kv2.1N216) was designed to produce a truncated protein containing the intracellular N terminus, the S1 membrane-spanning domain, and a portion of the S1/S2 loop. The truncated Kv2.1N216 was epitope tagged at the C terminus with the 8-amino acid FLAG peptide to generate Kv2. 1N216FLAG. No ionic currents are detected on expression of Kv2. 1N216FLAG in HEK-293 cells, although coexpression of this construct with wild-type Kv2.1 markedly reduced the amplitudes of Kv2. 1-induced currents. Using the alpha-myosin heavy chain promoter to direct cardiac specific expression of the transgene, 2 lines of Kv2. 1N216FLAG-expressing transgenic mice were generated. Electrophysiological recordings from ventricular myocytes isolated from these animals revealed that I(K, slow) is selectively reduced. The attenuation of I(K, slow) is accompanied by marked action potential prolongation, and, occasionally, spontaneous triggered activity (apparently induced by early afterdepolarizations) is observed. The time constant of inactivation of I(K, slow) in Kv2. 1N216FLAG-expressing cells (mean+/-SEM=830+/-103 ms; n=17) is accelerated compared with the time constant of I(K, slow) inactivation (mean+/-SEM=1147+/-57 ms; n=25) in nontransgenic cells. In addition, unlike I(K, slow) in wild-type cells, the component of I(K, slow) remaining in the Kv2.1N216FLAG-expressing cells is insensitive to 25 mmol/L tetraethylammonium. Taken together, these observations suggest that there are 2 distinct components of I(K, slow) in mouse ventricular myocytes and that Kv2 alpha subunits underlie the more slowly inactivating, tetraethylammonium-sensitive component of I(K, slow). In vivo telemetric recordings also reveal marked QT prolongation, consistent with a defect in ventricular repolarization, in Kv2.1N216FLAG-expressing transgenic mice."	"Tyrosine kinases modulate K+ channel gating in mouse Schwann cells. 1. The whole-cell configuration of the patch-clamp technique and immunoprecipitation experiments were used to investigate the effects of tyrosine kinases on voltage-dependent K+ channel gating in cultured mouse Schwann cells. 2. Genistein, a broad-spectrum tyrosine kinase inhibitor, markedly reduced the amplitude of a slowly inactivating delayed-rectifier current (IK) and, to a lesser extent, that of a transient K+ current (IA). Similar results were obtained on IK with another tyrosine kinase inhibitor, herbimycin A. Daidzein, the inactive analogue of genistein, was without effect. 3. Unlike herbimycin A, genistein produced additional effects on IA by profoundly affecting its gating properties. These changes consisted of slower activation kinetics with an increased time to peak, a positive shift in the voltage dependence of activation (by +30 mV), a decrease in the steepness of activation gating (9 mV per e-fold change) and an acceleration of channel deactivation. 4. The steepness of the steady-state inactivation was increased by genistein treatment, while the recovery from inactivation was not significantly altered. 5. The action of genistein on voltage-dependent K+ (Kv) currents was accompanied by a decrease in tyrosine phosphorylation of Kv1.4 as well as Kv1.5 and Kv2.1 encoding transient and slowly inactivating delayed-rectifier K+ channel alpha subunits, respectively. 6. In conclusion, the present study shows that tyrosine kinases markedly affect the amplitude of voltage-dependent K+ currents in Schwann cells and finely tune the gating properties of the transient K+ current component IA. These modulations may be functionally relevant in the control of K+ channel activity during Schwann cell development and peripheral myelinogenesis."	"Delayed rectifier currents in rat globus pallidus neurons are attributable to Kv2.1 and Kv3.1/3.2 K(+) channels. The symptoms of Parkinson disease are thought to result in part from increased burst activity in globus pallidus neurons. To gain a better understanding of the factors governing this activity, we studied delayed rectifier K(+) conductances in acutely isolated rat globus pallidus (GP) neurons, using whole-cell voltage-clamp and single-cell RT-PCR techniques. From a holding potential of -40 mV, depolarizing voltage steps in identified GP neurons evoked slowly inactivating K(+) currents. Analysis of the tail currents revealed rapidly and slowly deactivating currents of similar amplitude. The fast component of the current deactivated with a time constant of 11. 1 +/- 0.8 msec at -40 mV and was blocked by micromolar concentrations of 4-AP and TEA (K(D) approximately 140 microM). The slow component of the current deactivated with a time constant of 89 +/- 10 microseconds at -40 mV and was less sensitive to TEA (K(D) = 0.8 mM) and 4-AP (K(D) approximately 6 mM). Organic antagonists of Kv1 family channels had little or no effect on somatic currents. These properties are consistent with the hypothesis that the rapidly deactivating current is attributable to Kv3.1/3.2 channels and the slowly deactivating current to Kv2.1-containing channels. Semiquantitative single-cell RT-PCR analysis of Kv3 and Kv2 family mRNAs supported this conclusion. An alteration in the balance of these two channel types could underlie the emergence of burst firing after dopamine-depleting lesions."	"Kv2.1/Kv9.3, an ATP-dependent delayed-rectifier K+ channel in pulmonary artery myocytes. NA"	"Heteromeric assembly of Kv2.1 with Kv9.3: effect on the state dependence of inactivation. Modulatory alpha-subunits of Kv channels remain electrically silent after homomeric expression. Their interactions with Kv2 alpha-subunits via the amino-terminal domain promote the assembly of heteromeric functional channels. The kinetic features of these heteromers differ from those of Kv2 homomers, suggesting a distinct role in electrical signaling. This study investigates biophysical properties of channels emerging from the coexpression of Kv2.1 with the modulatory alpha-subunit Kv9.3. Changes relative to homomeric Kv2.1 concern activation, deactivation, inactivation, and recovery from inactivation. A detailed description of Kv2.1/Kv9.3 inactivation is presented. Kv2.1/Kv9.3 heteromers inactivate in a fast and complete fashion from intermediate closed states, but in a slow and incomplete manner from open states. Intermediate closed states of channel gating can be approached through partial activation or deactivation, according to a proposed qualitative model. These transitions are rate-limiting for Kv2.1/Kv9.3 inactivation. Finally, based on the kinetic description, we propose a putative function for Kv2.1/Kv9.3 heteromers in rat heart."	"Potassium-dependent changes in the conformation of the Kv2.1 potassium channel pore. The voltage-gated K+ channel, Kv2.1, conducts Na+ in the absence of K+. External tetraethylammonium (TEAo) blocks K+ currents through Kv2.1 with an IC50 of 5 mM, but is completely without effect in the absence of K+. TEAo block can be titrated back upon addition of low [K+]. This suggested that the Kv2.1 pore undergoes a cation-dependent conformational rearrangement in the external vestibule. Individual mutation of lysine (Lys) 356 and 382 in the outer vestibule, to a glycine and a valine, respectively, increased TEAo potency for block of K+ currents by a half log unit. Mutation of Lys 356, which is located at the outer edge of the external vestibule, significantly restored TEAo block in the absence of K+ (IC50 = 21 mM). In contrast, mutation of Lys 382, which is located in the outer vestibule near the TEA binding site, resulted in very weak (extrapolated IC50 = approximately 265 mM) TEAo block in the absence of K+. These data suggest that the cation-dependent alteration in pore conformation that resulted in loss of TEA potency extended to the outer edge of the external vestibule, and primarily involved a repositioning of Lys 356 or a nearby amino acid in the conduction pathway. Block by internal TEA also completely disappeared in the absence of K+, and could be titrated back with low [K+]. Both internal and external TEA potencies were increased by the same low [K+] (30-100 microM) that blocked Na+ currents through the channel. In addition, experiments that combined block by internal and external TEA indicated that the site of K+ action was between the internal and external TEA binding sites. These data indicate that a K+-dependent conformational change also occurs internal to the selectivity filter, and that both internal and external conformational rearrangements resulted from differences in K+ occupancy of the selectivity filter. Kv2.1 inactivation rate was K+ dependent and correlated with TEAo potency; as [K+] was raised, TEAo became more potent and inactivation became faster. Both TEAo potency and inactivation rate saturated at the same [K+]. These results suggest that the rate of slow inactivation in Kv2.1 was influenced by the conformational rearrangements, either internal to the selectivity filter or near the outer edge of the external vestibule, that were associated with differences in TEA potency."	"Influence of non-P region domains on selectivity filter properties in voltage-gated K+ channels. The selectivity filter in voltage-gated K+ channels is formed at the interface of the pore loops (S5-S6 loop) from four channel subunits. Whereas most K+ channels are essentially impermeable to Na+, the Kv2.1 K+ channel conducts Na+ relatively well in the absence of K+ and selects for K+ over Na+ at least partially by an affinity-based competition mechanism. To examine whether the ability of Kv2.1 to conduct Na+ reflected unique properties of either its S5-S6 loop or channel domains that held the S5-S6 loop in place (the scaffolding), we studied chimeras made from Kv1.3 (which is completely impermeable to Na+) and Kv2.1. Chimeras that contained either the S5-S6 loop from Kv1.3 inserted into the Kv2.1 scaffolding or vice versa both made highly selective K+ channels that conducted Na+ and displayed competition between Na+ and K+ for conduction through the pore: In channels that contained the S5-S6 loop from Kv2.1, concentration-dependent block of Na+ current by either external or internal K+ differed depending on whether Kv2.1 or Kv1.3 donated the scaffolding. These results indicate that neither the S5-S6 loop nor the scaffolding from Kv2.1 possess unique attributes that permit Na+ to conduct through the channel. Furthermore, these results indicate that the competitive interaction between K+ and Na+ at the selectivity filter is determined not only by the S5-S6 loop but also by the scaffolding that holds the S5-S6 loop."	"Identification of the Kv2.1 K+ channel as a major component of the delayed rectifier K+ current in rat hippocampal neurons. Molecular cloning studies have revealed the existence of a large family of voltage-gated K+ channel genes expressed in mammalian brain. This molecular diversity underlies the vast repertoire of neuronal K+ channels that regulate action potential conduction and neurotransmitter release and that are essential to the control of neuronal excitability. However, the specific contribution of individual K+ channel gene products to these neuronal K+ currents is poorly understood. We have shown previously, using an antibody, &quot;KC, &quot; specific for the Kv2.1 K+ channel alpha-subunit, the high-level expression of Kv2.1 protein in hippocampal neurons in situ and in culture. Here we show that KC is a potent blocker of K+ currents expressed in cells transfected with the Kv2.1 cDNA, but not of currents expressed in cells transfected with other highly related K+ channel alpha-subunit cDNAs. KC also blocks the majority of the slowly inactivating outward current in cultured hippocampal neurons, although antibodies to two other K+ channel alpha-subunits known to be expressed in these cells did not exhibit blocking effects. In all cases the blocking effects of KC were eliminated by previous incubation with a recombinant fusion protein containing the KC antigenic sequence. Together these studies show that Kv2.1, which is expressed at high levels in most mammalian central neurons, is a major contributor to the delayed rectifier K+ current in hippocampal neurons and that the KC antibody is a powerful tool for the elucidation of the role of the Kv2.1 K+ channel in regulating neuronal excitability."	"Contribution of the selectivity filter to inactivation in potassium channels. Voltage-gated K+ channels exhibit a slow inactivation process, which becomes an important influence on the rate of action potential repolarization during prolonged or repetitive depolarization. During slow inactivation, the outer mouth of the permeation pathway undergoes a conformational change. We report here that during the slow inactivation process, the channel progresses through at least three permeation states; from the initial open state that is highly selective for K+, the channel enters a state that is less permeable to K+ and more permeable to Na+, and then proceeds to a state that is non-conducting. Similar results were obtained in three different voltage-gated K+ channels: Kv2.1, a channel derived from Shaker (Shaker Delta A463C), and a chimeric channel derived from Kv2.1 and Kv1.3 that displays classical C-type inactivation. The change in selectivity displayed both voltage- and time-dependent properties of slow inactivation and was observed with K+ on either side of the channel. Elevation of internal [K+] inhibited Na+ conduction through the inactivating channel in a concentration-dependent manner. These results indicate that the change in selectivity filter function is an integral part of the slow inactivation mechanism, and argue against the hypothesis that the inactivation gate is independent from the selectivity filter. Thus, these data suggest that the selectivity filter is itself the inactivation gate."	"Heteromultimeric delayed-rectifier K+ channels in schwann cells: developmental expression and role in cell proliferation. Schwann cells (SCs) are responsible for myelination of nerve fibers in the peripheral nervous system. Voltage-dependent K+ currents, including inactivating A-type (KA), delayed-rectifier (KD), and inward-rectifier (KIR) K+ channels, constitute the main conductances found in SCs. Physiological studies have shown that KD channels may play an important role in SC proliferation and that they are downregulated in the soma as proliferation ceases and myelination proceeds. Recent studies have begun to address the molecular identity of K+ channels in SCs. Here, we show that a large repertoire of K+ channel alpha subunits of the Shaker (Kv1.1, Kv1.2, Kv1.4, and Kv1.5), Shab (Kv2.1), and Shaw (Kv3.1b and Kv3.2) families is expressed in mouse SCs and sciatic nerve. We characterized heteromultimeric channel complexes that consist of either Kv1.5 and Kv1.2 or Kv1.5 and Kv1.4. In postnatal day 4 (P4) sciatic nerve, most of the Kv1.2 channel subunits are involved in heteromultimeric association with Kv1.5. Despite the presence of Kv1. 1 and Kv1.2 alpha subunits, the K+ currents were unaffected by dendrotoxin I (DTX), suggesting that DTX-sensitive channel complexes do not account substantially for SC KD currents. SC proliferation was found to be potently blocked by quinidine or 4-aminopyridine but not by DTX. Consistent with previous physiological studies, our data show that there is a marked downregulation of all KD channel alpha subunits from P1-P4 to P40 in the sciatic nerve. Our results suggest that KD currents are accounted for by a complex combinatorial activity of distinct K+ channel complexes and confirm that KD channels are involved in SC proliferation."	"Constitutive activation of delayed-rectifier potassium channels by a src family tyrosine kinase in Schwann cells. In the nervous system, Src family tyrosine kinases are thought to be involved in cell growth, migration, differentiation, apoptosis, as well as in myelination and synaptic plasticity. Emerging evidence indicates that K+ channels are crucial targets of Src tyrosine kinases. However, most of the data accumulated so far refer to heterologous expression, and native K+-channel substrates of Src or Fyn in neurons and glia remain to be elucidated. The present study shows that a Src family tyrosine kinase constitutively activates delayed-rectifier K+ channels (IK) in mouse Schwann cells (SCs). IK currents are markedly downregulated upon exposure of cells to the tyrosine kinase inhibitors herbimycin A and genistein, while a potent upregulation of IK is observed when recombinant Fyn kinase is introduced through the patch pipette. The Kv1.5 and Kv2.1 K+-channel alpha subunits are constitutively tyrosine phosphorylated and physically associate with Fyn both in cultured SCs and in the sciatic nerve in vivo. Kv2.1- channel subunits are found to interact with the Fyn SH2 domain. Inhibition of Schwann cell proliferation by herbimycin A and by K+-channel blockers suggests that the functional linkage between Src tyrosine kinases and IK channels could be important for Schwann cell proliferation and the onset of myelination."	"Molecular identification of the role of voltage-gated K+ channels, Kv1.5 and Kv2.1, in hypoxic pulmonary vasoconstriction and control of resting membrane potential in rat pulmonary artery myocytes. Hypoxia initiates pulmonary vasoconstriction (HPV) by inhibiting one or more voltage-gated potassium channels (Kv) in the pulmonary artery smooth muscle cells (PASMCs) of resistance arteries. The resulting membrane depolarization increases opening of voltage-gated calcium channels, raising cytosolic Ca2+ and initiating HPV. There are presently nine families of Kv channels known and pharmacological inhibitors lack the specificity to distinguish those involved in control of resting membrane potential (Em) or HPV. However, the Kv channels involved in Em and HPV have characteristic electrophysiological and pharmacological properties which suggest their molecular identity. They are slowly inactivating, delayed rectifier currents, inhibited by 4-aminopyridine (4-AP) but insensitive to charybdotoxin. Candidate Kv channels with these traits (Kv1.5 and Kv2.1) were studied. Antibodies were used to immunolocalize and functionally characterize the contribution of Kv1. 5 and Kv2.1 to PASMC electrophysiology and vascular tone. Immunoblotting confirmed the presence of Kv1.1, 1.2, 1.3, 1.5, 1.6, and 2.1, but not Kv1.4, in PASMCs. Intracellular administration of anti-Kv2.1 inhibited whole cell K+ current (IK) and depolarized Em. Anti-Kv2.1 also elevated resting tension and diminished 4-AP-induced vasoconstriction in membrane-permeabilized pulmonary artery rings. Anti-Kv1.5 inhibited IK and selectively reduced the rise in [Ca2+]i and constriction caused by hypoxia and 4-AP. However, anti-Kv1.5 neither caused depolarization nor elevated basal pulmonary artery tone. This study demonstrates that antibodies can be used to dissect the whole cell K+ currents in mammalian cells. We conclude that Kv2. 1 is an important determinant of resting Em in PASMCs from resistance arteries. Both Kv2.1 and Kv1.5 contribute to the initiation of HPV."	"Molecular basis and function of voltage-gated K+ channels in pulmonary arterial smooth muscle cells. K(+)-channel activity-mediated alteration of the membrane potential and cytoplasmic free Ca2+ concentration ([Ca2+]cyt) is a pivotal mechanism in controlling pulmonary vasomotor tone. By using combined approaches of patch clamp, imaging fluorescent microscopy, and molecular biology, we examined the electrophysiological properties of K+ channels and the role of different K+ currents in regulating [Ca2+]cyt and explored the molecular identification of voltage-gated K+ (KV)- and Ca(2+)-activated K+ (KCa)-channel genes expressed in pulmonary arterial smooth muscle cells (PASMC). Two kinetically distinct KV currents [IK(V)], a rapidly inactivating (A-type) and a noninactivating delayed rectifier, as well as a slowly activated KCa current [IK(Ca)] were identified. IK(V) was reversibly inhibited by 4-aminopyridine (5 mM), whereas IK(Ca) was significantly inhibited by charybdotoxin (10-20 nM). K+ channels are composed of pore-forming alpha-subunits and auxiliary beta-subunits. Five KV-channel alpha-subunit genes from the Shaker subfamily (KV1.1, KV1.2, KV1.4, KV1.5, and KV1.6), a KV-channel alpha-subunit gene from the Shab subfamily (KV2.1), a KV-channel modulatory alpha-subunit (KV9.3), and a KCa-channel alpha-subunit gene (rSlo), as well as three KV-channel beta-subunit genes (KV beta 1.1, KV beta 2, and KV beta 3) are expressed in PASMC. The data suggest that 1) native K+ channels in PASMC are encoded by multiple genes; 2) the delayed rectifier IK(V) may be generated by the KV1.1, KV1.2, KV1.5, KV1.6, KV2.1, and/or KV2.1/KV9.3 channels; 3) the A-type IK(V) may be generated by the KV1.4 channel and/or the delayed rectifier KV channels (KV1 subfamily) associated with beta-subunits; and 4) the IK(Ca) may be generated by the rSlo gene product. The function of the KV channels plays an important role in the regulation of membrane potential and [Ca2+]cyt in PASMC."	"Inactivation of Kv2.1 potassium channels. We report here several unusual features of inactivation of the rat Kv2.1 delayed rectifier potassium channel, expressed in Xenopus oocytes. The voltage dependence of inactivation was U-shaped, with maximum inactivation near 0 mV. During a maintained depolarization, development of inactivation was slow and only weakly voltage dependent (tau = 4 s at 0 mV; tau = 7 s at +80 mV). However, recovery from inactivation was strongly voltage dependent (e-fold for 20 mV) and could be rapid (tau = 0.27 s at -140 mV). Kv2.1 showed cumulative inactivation, where inactivation built up during a train of brief depolarizations. A single maintained depolarization produced more steady-state inactivation than a train of pulses, but there could actually be more inactivation with the repeated pulses during the first few seconds. We term this phenomenon &quot;excessive cumulative inactivation.&quot; These results can be explained by an allosteric model, in which inactivation is favored by activation of voltage sensors, but the open state of the channel is resistant to inactivation."	"The K+ channel, Kv2.1, is apposed to astrocytic processes and is associated with inhibitory postsynaptic membranes in hippocampal and cortical principal neurons and inhibitory interneurons. A variety of voltage-gated ion channels are expressed on principal cell dendrites and have been proposed to play a pivotal role in the regulation of dendritic excitability. Previous studies at the light microscopic level demonstrated that the K+ channel subunit Kv2.1 expression was polarized to the cell soma and dendrites of principal neurons throughout the central nervous system. Here, using double immunostaining we now show that Kv2.1 protein is similarly expressed in the majority of cortical and hippocampal parvalbumin, calbindin and somatostatin-containing inhibitory interneurons. At the electron microscopic level Kv2.1 immunoreactivity was primarily observed on the plasma membrane of the somata and proximal dendrites of both principal neurons and inhibitory interneurons; expression was low on smaller dendritic branches, and absent on axons and presynaptic terminals. Kv2.1 subunit expression was highly concentrated on the cell surface membrane immediately facing astrocytic processes. Kv2.1 expression was also concentrated in specific cytoplasmic compartments and on the subsurface cisterns underlying the plasma membrane facing astrocytes. In addition, Kv2.1 subunit immunoreactivity was associated with postsynaptic densities of a fraction of inhibitory symmetric synapses; while expression at asymmetric synapses was rare. These data demonstrate that channels formed by Kv2.1 subunits are uniquely positioned on the soma and principal dendrites of both pyramidal cells and inhibitory interneurons at sites immediately adjacent to astrocytic processes. This close apposition to astrocytes will ensure a rapid removal and limit the influence of K+ released into the extracellular space. This expression pattern suggests that channels formed by Kv2.1 are poised to provide a role in the regulation of neuronal dendritic excitability."	"Kv2.1/Kv9.3, a novel ATP-dependent delayed-rectifier K+ channel in oxygen-sensitive pulmonary artery myocytes. The molecular structure of oxygen-sensitive delayed-rectifier K+ channels which are involved in hypoxic pulmonary artery (PA) vasoconstriction has yet to be elucidated. To address this problem, we identified the Shab K+ channel Kv2.1 and a novel Shab-like subunit Kv9.3, in rat PA myocytes. Kv9.3 encodes an electrically silent subunit which associates with Kv2.1 and modulates its biophysical properties. The Kv2.1/9.3 heteromultimer, unlike Kv2.1, opens in the voltage range of the resting membrane potential of PA myocytes. Moreover, we demonstrate that the activity of Kv2.1/Kv9.3 is tightly controlled by internal ATP and is reversibly inhibited by hypoxia. In conclusion, we propose that metabolic regulation of the Kv2.1/Kv9.3 heteromultimer may play an important role in hypoxic PA vasoconstriction and in the possible development of PA hypertension."	"Phosphorylation of the Kv2.1 K+ channel alters voltage-dependent activation. The voltage-gated delayed-rectifier-type K+ channel Kv2.1 is expressed in high-density clusters on the soma and proximal dendrites of mammalian central neurons; thus, dynamic regulation of Kv2.1 would be predicted to have an impact on dendritic excitability. Rat brain Kv2.1 polypeptides are phosphorylated extensively, leading to a dramatically increased molecular mass on sodium dodecyl sulfate gels. Phosphoamino acid analysis of Kv2.1 expressed in transfected cells and labeled in vivo with 32P shows that phosphorylation was restricted to serine residues and that a truncation mutant, DeltaC318, which lacks the last 318 amino acids in the cytoplasmic carboxyl terminus, was phosphorylated to a much lesser degree than was wild-type Kv2.1. Whole-cell patch-clamp studies showed that the voltage-dependence of activation of DeltaC318 was shifted to more negative membrane potentials than Kv2.1 without differences in macroscopic kinetics; however, the differences in the voltage-dependence of activation between Kv2.1 and DeltaC318 were eliminated by in vivo intracellular application of alkaline phosphatase, suggesting that these differences were due to differential phosphorylation. Similar analyses of other truncation and point mutants indicated that the phosphorylation sites responsible for the observed differences in voltage-dependent activation lie between amino acids 667 and 853 near the distal end of the Kv2.1 carboxyl terminus. Together, these parallel biochemical and electrophysiological results provide direct evidence that the voltage-dependent activation of the delayed-rectifier K+ channel Kv2. 1 can be modulated by direct phosphorylation of the channel protein; such modulation of Kv2.1 could dynamically regulate dendritic excitability."	"Association and colocalization of the Kvbeta1 and Kvbeta2 beta-subunits with Kv1 alpha-subunits in mammalian brain K+ channel complexes. The differential expression and association of cytoplasmic beta-subunits with pore-forming alpha-subunits may contribute significantly to the complexity and heterogeneity of voltage-gated K+ channels in excitable cells. Here we examined the association and colocalization of two mammalian beta-subunits, Kvbeta1 and Kvbeta2, with the K+ channel alpha-subunits Kv1.1, Kv1.2, Kv1.4, Kv1.6, and Kv2.1 in adult rat brain. Reciprocal coimmunoprecipitation experiments using subunit-specific antibodies indicated that Kvbeta1 and Kvbeta2 associate with all the Kv1 alpha-subunits examined, and with each other, but not with Kv2.1. A much larger portion of the total brain pool of Kv1-containing channel complexes was found associated with Kvbeta2 than with Kvbeta1. Single- and multiple-label immunohistochemical staining indicated that Kvbeta1 codistributes extensively with Kv1.1 and Kv1.4 in cortical interneurons, in the hippocampal perforant path and mossy fiber pathways, and in the globus pallidus and substantia nigra. Kvbeta2 codistributes extensively with Kv1.1 and Kv1.2 in all brain regions examined and was strikingly colocalized with these alpha-subunits in the juxtaparanodal region of nodes of Ranvier as well as in the axons and terminals of cerebellar basket cells. Taken together, these data provide a direct demonstration that Kvbeta1 and Kvbeta2 associate and colocalize with Kv1 alpha-subunits in native tissues and provide a biochemical and neuroanatomical basis for the differential contribution of Kv1 alpha- and beta-subunits to electrophysiologically diverse neuronal K+ currents."	"Expression and function of pancreatic beta-cell delayed rectifier K+ channels. Role in stimulus-secretion coupling. Voltage-dependent delayed rectifier K+ channels regulate aspects of both stimulus-secretion and excitation-contraction coupling, but assigning specific roles to these channels has proved problematic. Using transgenically derived insulinoma cells (betaTC3-neo) and beta-cells purified from rodent pancreatic islets of Langerhans, we studied the expression and role of delayed rectifiers in glucose-stimulated insulin secretion. Using reverse-transcription polymerase chain reaction methods to amplify all known candidate delayed rectifier transcripts, the expression of the K+ channel gene Kv2.1 in betaTC3-neo insulinoma cells and purified rodent pancreatic beta-cells was detected and confirmed by immunoblotting in the insulinoma cells. betaTC3-neo cells were also found to express a related K+ channel, Kv3.2. Whole-cell patch clamp demonstrated the presence of delayed rectifier K+ currents inhibited by tetraethylammonium (TEA) and 4-aminopyridine, with similar Kd values to that of Kv2.1, correlating delayed rectifier gene expression with the K+ currents. The effect of these blockers on intracellular Ca2+ concentration ([Ca2+]i) was studied with fura-2 microspectrofluorimetry and imaging techniques. In the absence of glucose, exposure to TEA (1-20 mM) had minimal effects on betaTC3-neo or rodent islet [Ca2+]i, but in the presence of glucose, TEA activated large amplitude [Ca2+]i oscillations. In the insulinoma cells the TEA-induced [Ca2+]i oscillations were driven by synchronous oscillations in membrane potential, resulting in a 4-fold potentiation of insulin secretion. Activation of specific delayed rectifier K+ channels can therefore suppress stimulus-secretion coupling by damping oscillations in membrane potential and [Ca2+]i and thereby regulate secretion. These studies implicate previously uncharacterized beta-cell delayed rectifier K+ channels in the regulation of membrane repolarization, [Ca2+]i, and insulin secretion."	"Kv2.1 and electrically silent Kv6.1 potassium channel subunits combine and express a novel current. Heteromultimer formation between Kv potassium channel subfamilies with the production of a novel current is reported for the first time. Protein-protein interactions between Kv2.1 and electrically silent Kv6.1 alpha-subunits were detected using two microelectrode voltage clamp and yeast two-hybrid measurements. Amino terminal portions of Kv6.1 were unable to form homomultimers but interacted specifically with amino termini of Kv2.1. Xenopus oocytes co-injected with Kv6.1 and Kv2.1 cRNAs exhibited a novel current with decreased rates of deactivation, decreased sensitivity to TEA block, and a hyperpolarizing shift of the half maximal activation potential when compared to Kv2.1. Our results indicate that Kv channel subfamilies can form heteromultimeric channels and, for the first time, suggest a possible functional role for the Kv6 subfamily."	"Identification of a cytoplasmic domain important in the polarized expression and clustering of the Kv2.1 K+ channel. The voltage-sensitive K+ channel Kv2.1 has a polarized and clustered distribution in neurons. To investigate the basis for this localization, we expressed wild-type Kv2.1 and two COOH-terminal truncation mutants, delta C318 and delta C187, in polarized epithelial MDCK cells. These functional channel proteins had differing subcellular localization, in that while both wild-type Kv2.1 and delta C187 localized to the lateral membrane in high density clusters, delta C318 was expressed uniformly on both apical and lateral membranes. A chimeric protein containing the hemagglutinin protein from influenza virus and the region of Kv2.1 that differentiates the two truncation mutants (amino acids 536-666) was also expressed in MDCK cells, where it was found in high density clusters similar to those observed for Kv2.1. Polarized expression and clustering of Kv2.1 correlates with detergent solubility, suggesting that interaction with the detergent insoluble cytoskeleton may be necessary for proper localization of this channel."	"Oxidation of an engineered pore cysteine locks a voltage-gated K+ channel in a nonconducting state. We report the use of cysteine-substituted mutants in conjunction with in situ oxidation to determine the physical proximity of a pair of engineered cysteines in the pore region of the voltage-gated K+ channel Kv2.1. We show that the newly introduced cysteine 1379C, located near the outer end of the narrow ion-conduction pathway, renders the K+ channel sensitive to oxidation by H2O2, but only if the native cysteine at position 394 in S6 remains in place. Conservative substitutions in S6 for cysteine 394 abolish H2O2 sensitivity in the Kv2.1 mutant 1379C. Comparative immunoblot analysis of wild-type and 1379C Kv2.1-expressing HEK293 cells demonstrates the presence of subunit dimers for 1379C, but not for wild-type Kv2.1. At the single-channel level, the probability of opening of 1379C channels, unlike wild-type, is reduced in the presence of H2O2; however, oxidation of 1379C does not alter unit current. These findings imply that cysteine 379, located near the outer end of the narrow ion-conduction pathway, participates in disulfide bridge formation, locking the channel in a nonconducting state from which it cannot undergo conformational transitions required for opening."	"A new K+ channel beta subunit to specifically enhance Kv2.2 (CDRK) expression. Cloned K+ channel beta subunits are hydrophilic proteins which associate to pore-forming alpha subunits of the Shaker subfamily. The resulting alphabeta heteromultimers K+ channels have inactivation kinetics significantly more rapid than those of the corresponding alpha homomultimers. This paper reports the cloning and the brain localization of mKvbeta4 (m for mouse), a new beta subunit. This new beta subunit is highly expressed in the nervous system but is also present in other tissues such as kidney. In contrast with other beta subunits, coexpression of the mKvbeta4 subunit with alpha subunits of Shaker-type K+ channel does not modify the kinetic properties or voltage-dependence of these channels in Xenopus oocytes. Instead, mKvbeta4 associates to Kv2.2 (CDRK), a Shab K+ channel, to specifically enhance (a factor of up to 6) its expression level without changing its elementary conductance or kinetics. It is without effect on another closely related Shab K+ channel Kv2.1 (DRK1). Chimeras between Kv2.1 and Kv2. 2 indicate that the COOH-terminal end of the Kv2.2 protein is essential for its mKvbeta4 sensitivity. The functional results associated with the observation of the co-localization of mKvbeta4 and Kv2.2 transcripts in most brain areas strongly suggest that both subunits interact in vivo to form a slowly-inactivating K+ channel. A chaperone-like effect of mKvbeta4 seems to permit the integration of a larger number of Kv2.2 channels at the plasma membrane."	"Identification of a Ser857-Asn857 substitution in DRK1 (KCNB1), population frequencies and lack of association to the low voltage alpha EEG trait. A nonconservative amino acid substitution (Ser857Asn) in the human delayed-rectifier potassium channel DRK1 (KCNB1 locus), a candidate gene for the low voltage alpha electroencephalogram (EEG) trait locus (LVEEG1) at 20q13.2, and its frequency in ethnic population samples are described. The frequency of Asn857 in seven different ethnic population samples, totalling more than 1600 individuals, ranged from zero to greater than 3%. However, no association was found between Asn857 and the low voltage alpha EEG trait (LVA) in a population of 105 subjects assessed for the EEG, 24 of whom actually had LVA."	"Generation and characterization of subtype-specific monoclonal antibodies to K+ channel alpha- and beta-subunit polypeptides. Molecular characterization of mammalian voltage-sensitive K+ channel genes and their expression became possible with the cloning of the Shaker locus of Drosophila. However, analysis of the expression patterns and subunit composition of native K+ channel protein complexes requires immunological probes specific for the individual K+ channel gene products expressed in excitable tissue. Here, we describe the generation and characterization of monoclonal antibodies (mAbs) against eight distinct mammalian K+ channel polypeptides; the Kv1.1, Kv1.2, Kv1.4, Kv1.5 and Kv1.6 Shaker-related alpha-subunits, the Kv2.1 Shab-related alpha-subunit, and the Kv beta 1 and Kv beta 2 beta-subunits. We characterized the subtype-specificity of these mAbs against native K+ channels in mammalian brain and against recombinant K+ channels expressed in transfected mammalian cells. In addition, we used these mAbs to investigate the cellular and subcellular distribution of the corresponding polypeptides in rat cerebral cortex, as well as their expression levels across brain regions."	"Permeation selectivity by competition in a delayed rectifier potassium channel. Permeation selectivity was studied in two human potassium channels, Kv2.1 and Kv1.5, expressed in a mouse cell line. With normal concentrations of potassium and sodium, both channels were highly selective for potassium. On removal of potassium, Kv2.1 displayed a large sodium conductance that was inhibited by low concentrations of potassium. The channel showed a competition mechanism of selectivity similar to that of calcium channels. In contrast, Kv1.5 displayed a negligible sodium conductance on removal of potassium. The observation that structurally similar potassium channels show different abilities to conduct sodium provides a basis for understanding the structural determinants of potassium channel selectivity."	"Thirteen genes (Cebpb, E2f1, Tcf4, Cyp24, Pck1, Acra4, Edn3, Kcnb1, Mc3r, Ntsr, Cd40, Plcg1 and Rcad) that probably lie in the distal imprinting region of mouse chromosome 2 are not monoallelically expressed. Seven imprinted genes are currently known in the mouse but none have been identified yet in the distal imprinting region of mouse Chromosome (Chr) 2, a region which shows striking linkage conservation with human chromosome 20q13. Both maternal duplication/paternal deficiency and its reciprocal for distal Chr 2 lead to mice with abnormal body shapes and behavioural abnormalities. We have tested a number of candidate genes, that are either likely or known to lie within the distal imprinting region, for monoallelic expression. These included 3 genes (Cebpb, E2f1 and Tcf4) that express transcription factors, 2 genes (Cyp24 and Pck1) that are involved in growth, 5 genes (Acra4, Edn3, Kcnb1, Mc3r and Ntsr) where a defect could lead to neurological and probably behavioural problems, and 3 genes (Cd40, Plcg1 and Rcad) that are less obvious candidates but sequence information was available for designing primers to test their expression. On/off expression of each gene was tested by reverse transcription-polymerase chain reaction (RT-PCR) analysis of RNA extracted from tissues of mice with maternal duplication/paternal deficiency and its reciprocal for the distal region of Chr 2. None of the 13 genes is monoallelically expressed in the appropriate tissues before and shortly after birth which suggests that these genes are not imprinted later in development. This study has narrowed down the search for imprinted genes, and valuable information on which genes have been tested for on/off expression is provided. Since there is considerable evidence of conservation of imprinting between mouse and human, we would predict that the 13 genes are not imprinted in human. Five of the genes: E2f1, Tcf4, Kcnb1, Cd40 and Rcad, have not yet been mapped in human. However, because of the striking linkage conservation observed between mouse Chr 2 and human chromosome 20, we would expect these genes to map on human chromosome 20q13."	"Physical and genetic localization of a Shab subfamily potassium channel (KCNB1) gene to chromosomal region 20q13.2. A human delayed rectifier K+ channel gene has been localized to the long arm of human chromosome 20q13.2 by fluorescence in situ hybridization of genomic P1 clones from this locus. A polymorphic (GA) microsatellite repeat was identified in one of the P1 clones. The new SSR marker (D20S436) was genotyped in four CEPH pedigrees. Two-point linkage analysis indicated linkage of this marker to a PCR marker, D20S109, with a maximum lod score of 9.32 at theta = 0.001. The assignment of this K+ channel gene to 20q13.2 eliminates it as a candidate for the gene associated with benign familial neonatal convulsions (BFNC), which has been localized to 20q13.3. Genetically, the K+ channel gene maps more than 30 cM proximal to the BFNC locus."	"Chromosomal mapping in the mouse of eight K(+)-channel genes representing the four Shaker-like subfamilies Shaker, Shab, Shaw, and Shal. The four Shaker-like subfamilies of Shaker-, Shab-, Shaw-, and Shal-related K+ channels in mammals have been defined on the basis of their sequence homologies to the corresponding Drosophila genes. Using interspecific backcrosses between Mus musculus and Mus spretus, we have chromosomally mapped in the mouse the Shaker-related K(+)-channel genes Kcna1, Kcna2, Kcna4, Kcna5, and Kcna6; the Shab-related gene Kcnb1; the Shaw-related gene Kcnc4; and the Shal-related gene Kcnd2. The following localizations were determined: Chr 2, cen-Acra-Kcna4-Pax-6-a-Pck-1-Kras-3-Kcn b1 (corresponding human Chrs 11p and 20q, respectively); Chr 3, cen-Hao-2-(Kcna2, Kcnc4)-Amy-1 (human Chr 1); and Chr 6, cen-Cola-2-Met-Kcnd2-Cpa-Tcrb-adr/Clc-1-Hox-1.1-Myk - 103-Raf-1-(Tpi-1, Kcna1, Kcna5, Kcna6) (human Chrs 7q and 12p, respectively). Thus, there is a cluster of at least three Shaker-related K(+)-channel genes on distal mouse Chr 6 and a cluster on Chr 2 that at least consists of one Shaker-related and one Shaw-related gene. The three other K(+)-channel genes are not linked to each other. The map positions of the different types of K(+)-channel genes in the mouse are discussed in relation to those of their homologs in man and to hereditary diseases of mouse and man that might involve K+ channels."	"Cloning and characterization of a human delayed rectifier potassium channel gene. A human genomic DNA library was screened for sequences homologues to the rat delayed rectifier Kv 2.1 (DRK1) K+ channel cDNA. Three phages were isolated which hybridized to Kv 2.1 cDNA probes. Alignment of the human genomic DNA sequence with the rat cDNA sequence indicated that the open reading frame (ORF) is interrupted by a large intervening sequence, that separates exons encoding the membrane spanning core region of the K+ channel polypeptide. The Kv 2.1 gene occurs once in the human genome and has been mapped to chromosome 20. The human, mouse and rat Kv 2.1 proteins have been highly conserved, showing only a few substitutions outside of the membrane spanning domains in the amino- and carboxy-terminal cytoplasmic domains. Nevertheless, expression of human DRK1 channels in Xenopus oocytes showed that mouse, rat and human Kv 2.1 channels have distinct pharmacological and electrophysiological properties. The observed differences in activation, voltage-dependence, 4-aminopyridine sensitivity and single-channel conductance have to be attributed to amino acid substitutions in the amino-and/or carboxy-terminal cytoplasmic domains. Obviously, these domains of Kv 2.1 channels influence biophysical K+ channel properties, which are thought to be determined solely by the membrane spanning core domain of potassium channels."	"Distinct spatial and temporal expression patterns of K+ channel mRNAs from different subfamilies. Different types of K+ channels play important roles in many aspects of excitability. The isolation of cDNA clones from Drosophila, Aplysia, Xenopus, and mammals points to a large multigene family with several distinct members encoding K+ channels with unique electrophysiological and pharmacological properties. Given the pivotal role K+ channels play in the fine tuning of electrical properties of excitable tissues, we studied the spatial and temporal basis of K+ channel diversity. We report the isolation of two putative K+ channels that define two new subfamilies based upon amino acid sequence similarities with other known K+ channels. Northern blot and in situ hybridization studies revealed differences in the spatial and temporal expression patterns for these two new clones along with mRNAs from other K+ channel subfamilies. Two of the K+ channels studied are predominantly expressed in the brain. One of the &quot;brain-specific&quot; K+ channels is first expressed after about 2 weeks of postnatal cerebellar development and remains at levels about 10-fold higher in the cerebellum than in the rest of the brain."	"A mouse brain homolog of the Drosophila Shab K+ channel with conserved delayed-rectifier properties. We have cloned and expressed a mouse brain K+ channel that is the homolog of the Drosophila Shab K+ channel. Mouse and Drosophila Shab K+ channels (mShab and fShab, respectively) represent an instance of K+ channels and structurally related species that are both functionally and structurally conserved; most kinetic, voltage-sensitive, and pharmacological properties are similar for the 2 channels. The greatest functional difference between the currents is recovery from inactivation, which is several times slower for mShab than for fShab currents. In addition to conserved structure, the mShab polypeptide has an unusually long nonconserved region at the carboxyl end of the protein. Truncation of 293 residues from the carboxyl end produced no noticeable change in voltage-sensitive, kinetic, or pharmacological properties. Thus, the measured functional properties of mShab are determined by the remaining 564 residues, most of which are conserved. The mShab and fShab channels are naturally occurring structural variants having substitutions in conserved portions that appear relatively neutral with respect to all measured properties except for, possibly, the rate of recovery from inactivation. The mShab current closely resembles a native delayed-rectifier-type potassium current, IK, in hippocampal neurons."	"A novel potassium channel with delayed rectifier properties isolated from rat brain by expression cloning. Voltage-activated potassium channels play an important part in the control of excitability in nerve and muscle. Different K+ channels are involved in establishing the resting potential, determining the duration of action potentials, modulation of transmitter release, and in rhythmic firing patterns and delayed excitation. Using in vitro transcripts made from a directional complementary DNA library we have isolated, by expression cloning in Xenopus oocytes, a novel K+-channel gene (drk1). Functionally, drk1 encodes channels that are K+ selective and belong to the delayed rectifier class of channels, rather than the A-type class encoded by the Shaker gene of Drosophila. The channels show sigmoidal voltage-dependent activation and do not inactivate within 500 ms. Structurally, drk1 encodes an amino-acid sequence which is more closely related to the Drosophila Shab gene than to the Shaker gene."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MEF2C"	"complex neurodevelopmental disorder"	"O-GlcNAcylation of Mef2c regulates myoblast differentiation. Unlike other types of glycosylation, O-GlcNAcylation is a single glycosylation which occurs exclusively in the nucleus and cytosol. O-GlcNAcylation underlie metabolic diseases, including diabetes and obesity. Furthermore, O-GlcNAcylation affects different oncogenic processes such as osteoblast differentiation, adipogenesis and hematopoiesis. Emerging evidence suggests that skeletal muscle differentiation is also regulated by O-GlcNAcylation, but the detailed molecular mechanism has not been fully elucidated. In this study, we showed that hyper-O-GlcNAcylation reduced the expression of myogenin, a transcription factor critical for terminal muscle development, in C2C12 myoblasts differentiation by O-GlcNAcylation on Thr9 of myocyte-specific enhancer factor 2c. Furthermore, we showed that O-GlcNAcylation on Mef2c inhibited its DNA binding affinity to myogenin promoter. Taken together, we demonstrated that hyper-O-GlcNAcylation attenuates skeletal muscle differentiation by increased O-GlcNAcylation on Mef2c, which downregulates its DNA binding affinity."	"Loss of Mef2D function enhances TLR induced IL-10 production in macrophages. Mef2 transcription factors comprise a family of 4 different isoforms that regulate a number of processes including neuronal and muscle development. While roles for Mef2C and Mef2D have been described in B cell development their role in immunity has not been extensively studied. In innate immune cells such as macrophages, TLRs drive the production of both pro- and anti-inflammatory cytokines. IL-10 is an important anti-inflammatory cytokine produced by macrophages and it establishes an autocrine feedback loop to inhibit pro-inflammatory cytokine production. We show here that macrophages from Mef2D knockout mice have elevated levels of IL-10 mRNA induction compared to wild type cells following LPS stimulation. The secretion of IL-10 was also higher from Mef2D knockout macrophages and this correlated to a reduction in the secretion of TNF, IL-6 and IL-12p40. The use of an IL-10 neutralising antibody showed that this reduction in pro-inflammatory cytokine production in the Mef2D knockouts was IL-10 dependent. As the IL-10 promoter has previously been reported to contain a potential binding site for Mef2D, it is possible that the binding of other Mef2 isoforms in the absence of Mef2D may result in a higher activation of the IL-10 gene. Further studies with compound Mef2 isoforms would be required to address this. We also show that Mef2D is highly expressed in the thymus, but that loss of Mef2D does not affect thymic T cell development or the production of IFNg from CD8 T cells."	"MEF2C and HDAC5 regulate Egr1 and Arc genes to increase dendritic spine density and complexity in early enriched environment. We investigated the effects of environmental enrichment during critical period of early postnatal life and how it interplays with the epigenome to affect experience-dependent visual cortical plasticity. Mice raised in an EE from birth to during CP have increased spine density and dendritic complexity in the visual cortex. EE upregulates synaptic plasticity genes, Arc and Egr1, and a transcription factor MEF2C. We also observed an increase in MEF2C binding to the promoters of Arc and Egr1. In addition, pups raised in EE show a reduction in HDAC5 and its binding to promoters of Mef2c, Arc and Egr1 genes. With an overexpression of Mef2c, neurite outgrowth increased in complexity. Our results suggest a possible underlying molecular mechanism of EE, acting through MEF2C and HDAC5, which drive Arc and Egr1. This could lead to the observed increased dendritic spine density and complexity induced by early EE."	"Microsecretory adenocarcinoma of the hard palate: A case report of a recently described entity. We report a case of microsecretory adenocarcinoma of the hard palate. The patient is a 37-year-old woman with a 15 mm submucosal tumor, which was incidentally found by her primary care dentist, in her hard palate. Preoperative magnetic resonance imaging revealed a tumor exhibiting high signal on T2-weighted image, which was gradually enhanced on dynamic study. Histologically, the tumor border was ill-defined without fibrous capsule and adjoined minor salivary gland with permeative infiltration at the tumor periphery. The tumor comprised intercalated duct-like cells with polygonal narrow eosinophilic to clear cytoplasm and small, uniform oval nuclei. These cells formed small infiltrative microcysts, tubules and fascicular cords collecting pale basophilic secretions and small vacuoles setting in an abundant fibromyxoid stroma. The tumor cells were positive for CK AE1+AE3, S-100 protein, and p63, while are completely negative for p40, alpha-SMA, and calponin. The MEF2C-SS18 fusion was identified by reverse transcriptase-polymerase chain reaction followed by Sanger sequencing. The combination of characteristic histology, immunophenotype, and presence of MEF2C-SS18 fusion indicated the diagnosis of microsecretory adenocarcinoma of the hard palate, an entity described only recently. Post-operative course was uneventful and there was no evidence of disease at 4 months after surgery."	"Intrinsic activation of cardiosphere-derived cells enhances myocardial repair. Permanent loss of cardiomyocytes after myocardial infarction results in irreversible damage to cardiac function. The present study aims to enhance the cardiomyogenic efficiency of cardiosphere-derived cells (CDCs) to develop into large populations of cardiomyocytes by intrinsic activation of cardio-specific differentiation factors (Gata4, Mef2c, Nkx2-5, Hand2, and Tnnt2) by a CRISPR/dCas9 assisted transcriptional enhancement system. Exhaustive screening was performed to identify the specific sequences in endogenous regulatory regions (enhancers and promoters) responsible for transcriptional activation of the target genes, via a CRISPR/dCas9 system fused with transcriptional activator VP64 (CRISPR-dCas9-VP64). In a rat model of acute myocardial infarction, we compared the regenerative potential and functional benefits of CDCs with or without transcriptional activation. We identified a panel of specific CRISPR RNA targeting the enhancers and promoters, which demonstrated significantly higher expression of differentiation factors of Gata4, Hand2, and Tnnt2. The group of CDCs with transcriptional activator VP64 (CDC with VP64) showed significant improvement in the left ventricular ejection fraction (61.9% vs 52.5% and 44.1% in the CDC without transcriptional activation group and control) and decreased scar area in the heart. We have identified endogenous regulatory regions responsible for an intrinsic activation of cardio-specific differentiation factors assisted via a CRISPR/dCas9 gene transcriptional system. The CRISPR/dCas9 system may provide an efficient and effective means of regulating Tnnt2 gene activation within stem cells. Subsequently, this system can be used to enhance transplanted CDCs differentiation potential within ischemic myocardia to better therapeutic outcomes of patients with ischemic heart disease."	"RYBP is important for cardiac progenitor cell development and sarcomere formation. We have previously established that epigenetic regulator RING1 and YY1 binding protein (RYBP) is required for the contractility of embryonic stem (ES) cell derived cardiomyocytes (CMCs), suggesting its essential role in contractility. In order to investigate the underlying molecular events of this phenotype, we compared the transcriptomic profile of the wild type and Rybp null mutant ES cells and CMCs differentiated from these cell lines. We identified genes related to ion homeostasis, cell adhesion and sarcomeric organization affected in the Rybp null mutant CMCs, by using hierarchical gene clustering and Gene Ontology analysis. We have also demonstrated that the amount of RYBP is drastically reduced in the terminally differentiated wild type CMCs whilst it is broadly expressed in the early phase of differentiation when progenitors form. We also describe that RYBP is important for the proper expression of key cardiac transcription factors including Mesp1, Shh and Mef2c. These findings identify Rybp as a gene important for both early cardiac gene transcription and consequent sarcomere formation necessary for contractility. Since impairment of sarcomeric function and contractility plays a central role in reduced cardiac pump function leading to heart failures in human, current results might be relevant to the pathophysiology of cardiomyopathies."	"Genome-wide studies reveal the essential and opposite roles of ARID1A in controlling human cardiogenesis and neurogenesis from pluripotent stem cells. Early human heart and brain development simultaneously occur during embryogenesis. Notably, in human newborns, congenital heart defects strongly associate with neurodevelopmental abnormalities, suggesting a common gene or complex underlying both cardiogenesis and neurogenesis. However, due to lack of in vivo studies, the molecular mechanisms that govern both early human heart and brain development remain elusive. Here, we report ARID1A, a DNA-binding subunit of the SWI/SNF epigenetic complex, controls both neurogenesis and cardiogenesis from human embryonic stem cells (hESCs) through distinct mechanisms. Knockout-of-ARID1A (ARID1A<sup>-/-</sup>) leads to spontaneous differentiation of neural cells together with globally enhanced expression of neurogenic genes in undifferentiated hESCs. Additionally, when compared with WT hESCs, cardiac differentiation from ARID1A <sup>-/-</sup> hESCs is prominently suppressed, whereas neural differentiation is significantly promoted. Whole genome-wide scRNA-seq, ATAC-seq, and ChIP-seq analyses reveal that ARID1A is required to open chromatin accessibility on promoters of essential cardiogenic genes, and temporally associated with key cardiogenic transcriptional factors T and MEF2C during early cardiac development. However, during early neural development, transcription of most essential neurogenic genes is dependent on ARID1A, which can interact with a known neural restrictive silencer factor REST/NRSF. We uncover the opposite roles by ARID1A to govern both early cardiac and neural development from pluripotent stem cells. Global chromatin accessibility on cardiogenic genes is dependent on ARID1A, whereas transcriptional activity of neurogenic genes is under control by ARID1A, possibly through ARID1A-REST/NRSF interaction."	"Misoprostol attenuates neonatal cardiomyocyte proliferation through Bnip3, perinuclear calcium signaling, and inhibition of glycolysis. Systemic hypoxia resulting from preterm birth, altered lung development, and cyanotic congenital heart disease is known to impede the regulatory and developmental pathways in the neonatal heart. While the molecular mechanisms are still unknown, hypoxia induces aberrant cardiomyocyte proliferation, which may be initially adaptive, but can ultimately program the heart to fail in early life. Recent evidence suggests that the prostaglandin E1 analogue, misoprostol, is cytoprotective in the hypoxia-exposed neonatal heart by impacting alternative splicing of the Bcl-2 family member Bnip3, resulting in the generation of a variant lacking the third exon (Bnip3ΔExon3 or small Nip; sNip). Using a rodent model of neonatal hypoxia, in combination with rat primary neonatal cardiomyocytes (PVNCs) and H9c2 cells, we sought to determine if misoprostol can prevent cardiomyocyte proliferation and what the key molecular mechanisms might be in this pathway. In PVNCs, exposure to 10% oxygen induced myocyte proliferation concurrent with molecular markers of cell-cycle progression, such as Cyclin-D1, which were prevented by misoprostol treatment. Furthermore, we describe a critical role for sNip in opposing cardiomyocyte proliferation through several mechanisms, including reduced expression of the proliferative MEF2C-myocardin-BMP10 pathway, accumulation of nuclear calcium leading to NFATc3 activation, and increased expression of the cardiac maturation factor BMP2. Intriguingly, misoprostol and sNip inhibited hypoxia-induced glycolytic flux, which directly influenced myocyte proliferation. These observations were further supported by knockdown studies, where hypoxia-induced cardiomyocyte proliferation is restored in misoprostol-treated cells by an siRNA targeting sNip. Finally, in postnatal day (PND)-10 rat pups exposed to hypoxia, we observed histological evidence of increased nuclei number and increased PPH3 staining, which were completely attenuated by misoprostol treatment. Collectively, this data demonstrates how neonatal cardiomyocyte proliferation can be pharmacologically modulated by misoprostol treatment, which may have important implications for both neonatal and regenerative medicine."	"Disabled-2: a positive regulator of the early differentiation of myoblasts. Dab2 is an adaptor protein and a tumor suppressor. Our previous study has found that Dab2 was expressed in early differentiating skeletal muscles in mouse embryos. In this study, we determined the role of Dab2 in the skeletal muscle differentiation using C2C12 myoblasts in vitro and Xenopus laevis embryos in vivo. The expression of Dab2 was increased in C2C12 myoblasts during the formation of myotubes in vitro. Knockdown of Dab2 expression in C2C12 myoblasts resulted in a reduction of myotube formation, whereas the myotube formation was enhanced upon overexpression of Dab2. Re-expression of Dab2 in C2C12 myoblasts with downregulated expression of Dab2 restored their capacity to form myotubes. Microarray profiling and subsequent network analyses on the 155 differentially expressed genes after Dab2 knockdown showed that Mef2c was an important myogenic transcription factor regulated by Dab2 through the p38 MAPK pathway. It was also involved in other pathways that are associated with muscular development and functions. In Xenopus embryos developed in vivo, XDab2 was expressed in the myotome of somites where various myogenic markers were also expressed. Knockdown of XDab2 expression with antisense morpholinos downregulated the expression of myogenic markers in somites. In conclusion, this study is the first to provide solid evidence to show that Dab2 is a positive regulator of the early myoblast differentiation."	"Downregulated miR-18b-5p triggers apoptosis by inhibition of calcium signaling and neuronal cell differentiation in transgenic SOD1 (G93A) mice and SOD1 (G17S and G86S) ALS patients. MicroRNAs (miRNAs) are endogenous non-coding RNAs that regulate gene expression at the post-transcriptional level and are key modulators in neurodegenerative diseases. Overexpressed miRNAs play an important role in ALS; however, the pathogenic mechanisms of deregulated miRNAs are still unclear. We aimed to assess the dysfunction of RNAs or miRNAs in fALS (SOD1 mutations). We compared the RNA-seq of subcellular fractions in NSC-34 WT (hSOD1) and MT (hSOD1 (G93A)) cells to find altered RNAs or miRNAs. We identified that Hif1α and Mef2c were upregulated, and Mctp1 and Rarb were downregulated in the cytoplasm of NSC-34 MT cells. SOD1 mutations decreased the level of miR-18b-5p. Induced Hif1α which is the target for miR-18b increased Mef2c expression as a transcription factor. Mef2c upregulated miR-206 as a transcription factor. Inhibition of Mctp1 and Rarb which are targets of miR-206 induces intracellular Ca<sup>2+</sup> levels and reduces cell differentiation, respectively. We confirmed that miR-18b-5p pathway was also observed in G93A Tg, fALS (G86S) patient, and iPSC-derived motor neurons from fALS (G17S) patient. Our data indicate that SOD1 mutation decreases miR-18b-5p, which sequentially regulates Hif1α, Mef2c, miR-206, Mctp1 and Rarb in fALS-linked SOD1 mutation. These results provide new insights into the downregulation of miR-18b-5p dependent pathogenic mechanisms of ALS."	"Nerve impulse transmission pathway-focused genes expression analysis in patients with primary hypothyroidism and autoimmune thyroiditis. Thyroid hormones have important actions in the adult brain. They regulate genes expression in myelination, differentiation of neuronal and glial cells, and neuronal viability and function. We used the pathway-specific real-time PCR array (Neurotrophins and Receptors RT2 Profiler PCR Array, QIAGEN, Germany) to identify and verify nerve impulse transmission pathway-focused genes expression in peripheral white blood cells of patients with postoperative hypothyroidism, hypothyroidism as a result of autoimmune thyroiditis (AIT) and AIT with elevated serum an anti-thyroglobulin (anti-Tg) and anti-thyroid peroxidase (anti-TPO) antibodies. It was shown that patients with postoperative hypothyroidism and hypothyroidism resulting from AIT had significantly lower expression of BDNF and CBLN1. In patients with AIT with elevated serum anti-Tg and anti-TPO antibodies, the expression of GDNF was significantly down-regulated and the expression of PNOC was up-regulated. The expression levels of MEF2C and NTSR1 were decreased in the group of patients with postoperative hypothyroidism and AIT, correspondingly. The results of this study demonstrate that AIT and hypothyroidism can affect the expression of mRNA nerve impulse transmission genes in gene specific manner and that these changes in gene expressions can be playing a role in the development of neurological complications associated with thyroid pathology. Detection of the transcriptional activity of nerve impulse transmission genes in peripheral white blood cells can be used as an important minimally invasive prognostic marker of the risk for developing neurological complications comorbid with thyroid pathology."	"Appropriate timing for hypothermic machine perfusion to preserve livers donated after circulatory death. Hypothermic machine perfusion (HMP) is a method that can be more effective in preserving donor organs compared with cold storage (CS). However, the optimal duration and the exact mechanisms of the protevtive effects of HMP remain unknow. The present study aimed to investigate the adequate perfusion time and mechanisms underlying HMP to protect livers donated after circulatory death (DCD). After circulatory death, adult male Sprague‑Dawley rat livers were subjected to 30 min of warm ischemia (WI) and were subsequently preserved by HMP or CS. To determine the optimal perfusion time, liver tissues were analyzed at 0, 1, 3, 5, 12 and 24 h post‑preservation to evaluate injury and assess the expression of relevant proteins. WI livers were preserved by HMP or CS for 3 h, and liver viability was evaluated by normothermic reperfusion (NR). During NR, oxygen consumption, bile production and the activities of hepatic enzymes in the perfusate were assessed. Following 2 h of NR, levels of inflammation and oxidative stress were determined in the livers and perfusate. HMP for 3 h resulted in the highest expression of myocyte enhancer factor 2C (MEF2C) and kruppel‑like factor 2 (KLF2) and the lowest expression of NF‑κB p65, tumor necrosis factor (TNF)‑α and interleukin (IL)‑1β among the different timepoints, which indicated that 3 h may be the optimal time for HMP induction of the KLF2‑dependent signaling pathway. Compared with CS‑preserved livers, HMP‑preserved livers displayed significantly higher oxygen consumption, lower hepatic enzyme levels in the perfusate following NR. Following HMP preservation, the expression levels of MEF2C, KLF2, endothelial nitric oxide synthase and nitric oxide were increased, whereas the expression levels of NF‑κB p65, IL‑1β and TNF‑α were decreased compared with CS preservation. The results indicated that 3 h may be the optimal time for HMP to protect DCD rat livers. Furthermore, HMP may significantly reduce liver inflammation and oxidative stress injury by mediating the KLF2/NF‑κB/eNOS‑dependent signaling pathway."	"Role of sodium tetraborate as a cardioprotective or competitive agent: Modulation of hypertrophic intracellular signals. Boron is an essential trace element in cellular metabolism; however, the molecular mechanism of boron in the heart is unclear. In this study, we examined the effect of sodium tetraborate (as boron source) as a possible protective agent or competitive inhibitor of cardiac hypertrophy in an in vitro murine model. We evaluated different previously reported sodium tetraborate concentrations and it was found that 13 μM improves viability without affecting the cellular structure. We demonstrated that cardiomyocytes pretreated with sodium tetraborate prevents cellular damage induced by isoproterenol (cardioprotective effect) by increasing proliferation rate and inhibiting apoptosis. In addition, the reduction of the expression of the α1AR and β1AR adrenergic receptors as well as Erk1/2 was notable. Consequently, the expression of the early response genes c-myc, c-fos and c-jun was delayed. Also, the expression of GATA-4, NFAT, NKx2.5 and myogenin transcription factors involved in sarcomere synthesis declined. In contrast, cardiomyocytes, when treated simultaneously with sodium tetraborate and isoproterenol, did not increase their size (cytoplasmic gain), but an increase in apoptosis levels was observed; therefore, the proliferation rate was reduced. Although the mRNA levels of α1AR and β1AR as well as Erk1/2 and Akt1 were low at 24 h, their expression increased to 48 h. Notably, the mRNA of expression levels of c-myc, c-fos and c-jun were lower than those determined in the control, while the transcription factors GATA-4, MEF2c, Nkx2.5, NFAT and CDk9 were determined in most cells. These results suggest that pretreatment with sodium tetraborate in cardiomyocytes inhibits the hypertrophic effect. However, sodium tetraborate attenuates isoproterenol induced hypertrophy damage in cardiomyocytes when these two compounds are added simultaneously."	"Enhanced Generation of Induced Cardiomyocytes Using a Small-Molecule Cocktail to Overcome Barriers to Cardiac Cellular Reprogramming. Background Given known inefficiencies in reprogramming of fibroblasts into mature induced cardiomyocytes (iCMs), we sought to identify small molecules that would overcome these barriers to cardiac cell transdifferentiation. Methods and Results We screened alternative combinations of compounds known to impact cell reprogramming using morphologic and functional cell differentiation assays in vitro. After screening 6 putative reprogramming factors, we found that a combination of the histone deacetylase inhibitor sodium butyrate, the WNT inhibitor ICG-001, and the cardiac growth regulator retinoic acid (RA) maximally enhanced iCM generation from primary rat cardiac fibroblasts when combined with administration of the cardiodifferentiating transcription factors Gata4, Mef2C, and Tbx5 (GMT) compared with GMT administration alone (23±1.5% versus 3.3±0.2%; P&lt;0.0001). Expression of the cardiac markers cardiac troponin T, Myh6, and Nkx2.5 was upregulated as early as 10 days after GMT-sodium butyrate, ICG-001, and RA treatment. Human iCM generation was likewise enhanced when administration of the human cardiac reprogramming factors GMT, Hand2, and Myocardin plus miR-590 was combined with sodium butyrate, ICG-001, and RA compared with GMT, Hand2, and Myocardin plus miR-590 treatment alone (25±1.3% versus 5.7±0.4%; P&lt;0.0001). Rat and human iCMs also more frequently demonstrated spontaneous beating in coculture with neonatal cardiomyocytes with the addition of sodium butyrate, ICG-001, and RA to transcription factor cocktails compared with transcription factor treatment alone. Conclusions The combined administration of histone deacetylase and WNT inhibitors with RA enhances rat and human iCM generation induced by transcription factor administration alone. These findings suggest opportunities for improved translational approaches for cardiac regeneration."	"Downregulation of lncRNA-11496 in the Brain Contributes to Microglia Apoptosis via Regulation of Mef2c in Chronic T. gondii Infection Mice. Though it is well known that chronic infections of Toxoplasma gondii (T. gondii) can induce mental and behavioral disorders in the host, little is known about the role of long non-coding RNAs (lncRNAs) in this pathological process. In this study, we employed an advanced lncRNAs and mRNAs integration chip (Affymetrix HTA 2.0) to detect the expression of both lncRNAs and mRNAs in T. gondii Chinese 1 strain infected mouse brain. As a result, for the first time, the downregulation of lncRNA-11496 (NONMMUGO11496) was identified as the responsible factor for this pathological process. We showed that dysregulation of lncRNA-11496 affected proliferation, differentiation and apoptosis of mouse microglia. Furthermore, we proved that Mef2c (Myocyte-specific enhancer factor 2C), a member of the MEF2 subfamily, is the target gene of lncRNA-11496. In a more detailed study, we confirmed that lncRNA-11496 positively regulated the expression of Mef2c by binding to histone deacetylase 2 (HDAC2). Importantly, Mef2c itself could coordinate neuronal differentiation, survival, as well as synapse formation. Thus, our current study provides the first evidence in terms of the modulatory action of lncRNAs in chronic toxoplasmosis in T. gondii infected mouse brain, providing a solid scientific basis for using lncRNA-11496 as a therapeutic target to treat T. gondii induced neurological disorder."	"Small Flies Meet Big Data: Genetic Convergence of Neurodevelopmental Disorders Modeled in Drosophila. NA"	"Maf and Mafb control mouse pallial interneuron fate and maturation through neuropsychiatric disease gene regulation. ​Maf (c-Maf) and Mafb transcription factors (TFs) have compensatory roles in repressing somatostatin (SST<sup>+</sup>) interneuron (IN) production in medial ganglionic eminence (MGE) secondary progenitors in mice. Maf and Mafb conditional deletion (cDKO) decreases the survival of MGE-derived cortical interneurons (CINs) and changes their physiological properties. Herein, we show that (1) Mef2c and Snap25 are positively regulated by Maf and Mafb to drive IN morphological maturation; (2) Maf and Mafb promote Mef2c expression which specifies parvalbumin (PV<sup>+</sup>) INs; (3) Elmo1, Igfbp4 and Mef2c are candidate markers of immature PV<sup>+</sup> hippocampal INs (HIN). Furthermore, Maf/Mafb neonatal cDKOs have decreased CINs and increased HINs, that express Pnoc, an HIN specific marker. Our findings not only elucidate key gene targets of Maf and Mafb that control IN development, but also identify for the first time TFs that differentially regulate CIN vs. HIN production."	"Utility of genetic testing for therapeutic decision-making in adults with epilepsy. Genetic testing has become a routine part of the diagnostic workup in children with early onset epilepsies. In the present study, we sought to investigate a cohort of adult patients with epilepsy, to determinate the diagnostic yield and explore the gain of personalized treatment approaches in adult patients. Two hundred patients (age span = 18-80 years) referred for diagnostic gene panel testing at the Danish Epilepsy Center were included. The vast majority (91%) suffered from comorbid intellectual disability. The medical records of genetically diagnosed patients were mined for data on epilepsy syndrome, cognition, treatment changes, and seizure outcome following the genetic diagnosis. We found a genetic diagnosis in 46 of 200 (23%) patients. SCN1A, KCNT1, and STXBP1 accounted for the greatest number of positive findings (48%). More rare genetic findings included SLC2A1, ATP6A1V, HNRNPU, MEF2C, and IRF2BPL. Gene-specific treatment changes were initiated in 11 of 46 (17%) patients (one with SLC2A1, 10 with SCN1A) following the genetic diagnosis. Ten patients improved, with seizure reduction and/or increased alertness and general well-being. With this study, we show that routine diagnostic testing is highly relevant in adults with epilepsy. The diagnostic yield is similar to previously reported pediatric cohorts, and the genetic findings can be useful for therapeutic decision-making, which may lead to better seizure control, ultimately improving quality of life."	"Identification of Prognostic Immune Genes in Bladder Urothelial Carcinoma. The aim of this study is to identify possible prognostic-related immune genes in bladder urothelial carcinoma and to try to predict the prognosis of bladder urothelial carcinoma based on these genes. The Cancer Genome Atlas (TCGA) expression profile data and corresponding clinical traits were obtained. Differential gene analysis was performed using R software. Reactome was used to analyze the pathway of immune gene participation. The differentially expressed transcription factors and differentially expressed immune-related genes were extracted from the obtained list of differentially expressed genes, and the transcription factor-immune gene network was constructed. To analyze the relationship between immune genes and clinical traits of bladder urothelial carcinoma, a multifactor Cox proportional hazards regression model based on the expression of immune genes was established and validated. Fifty-eight immune genes were identified to be associated with the prognosis of bladder urothelial carcinoma. These genes were enriched in Cytokine Signaling in Immune System, Signaling by Receptor Tyrosine Kinases, Interferon alpha/beta signaling, and other immune related pathways. Transcription factor-immune gene regulatory network was established, and EBF1, IRF4, SOX17, MEF2C, NFATC1, STAT1, ANXA6, SLIT2, and IGF1 were screened as hub genes in the network. The model calculated by the expression of 16 immune genes showed a good survival prediction ability (p &lt; 0.05 and AUC = 0.778). A transcription factor-immune gene regulatory network related to the prognosis of bladder urothelial carcinoma was established. EBF1, IRF4, SOX17, MEF2C, NFATC1, STAT1, ANXA6, SLIT2, and IGF1 were identified as hub genes in the network. The proportional hazards regression model constructed by 16 immune genes shows a good predictive ability for the prognosis of bladder urothelial carcinoma."	"MEF2C Hypofunction in Neuronal and Neuroimmune Populations Produces MEF2C Haploinsufficiency Syndrome-like Behaviors in Mice. Microdeletions of the MEF2C gene are linked to a syndromic form of autism termed MEF2C haploinsufficiency syndrome (MCHS). MEF2C hypofunction in neurons is presumed to underlie most of the symptoms of MCHS. However, it is unclear in which cell populations MEF2C functions to regulate neurotypical development. Multiple biochemical, molecular, electrophysiological, behavioral, and transgenic mouse approaches were used to characterize MCHS-relevant synaptic, behavioral, and gene expression changes in mouse models of MCHS. We showed that MCHS-associated missense mutations cluster in the conserved DNA binding domain and disrupt MEF2C DNA binding. DNA binding-deficient global Mef2c heterozygous mice (Mef2c-Het) displayed numerous MCHS-related behaviors, including autism-related behaviors, changes in cortical gene expression, and deficits in cortical excitatory synaptic transmission. We detected hundreds of dysregulated genes in Mef2c-Het cortex, including significant enrichments of autism risk and excitatory neuron genes. In addition, we observed an enrichment of upregulated microglial genes, but this was not due to neuroinflammation in the Mef2c-Het cortex. Importantly, conditional Mef2c heterozygosity in forebrain excitatory neurons reproduced a subset of the Mef2c-Het phenotypes, while conditional Mef2c heterozygosity in microglia reproduced social deficits and repetitive behavior. Taken together, our findings show that mutations found in individuals with MCHS disrupt the DNA-binding function of MEF2C, and DNA binding-deficient Mef2c global heterozygous mice display numerous MCHS-related phenotypes, including excitatory neuron and microglia gene expression changes. Our findings suggest that MEF2C regulates typical brain development and function through multiple cell types, including excitatory neuronal and neuroimmune populations."	"MicroRNA-23 suppresses osteogenic differentiation of human bone marrow mesenchymal stem cells by targeting the MEF2C-mediated MAPK signaling pathway. The present study aimed to determine the role and mechanism of miR-23 with respect to regulating the osteogenic differentiation of human bone marrow mesenchymal stem cells (hBMSCs). The expression of miR-23 and MEF2C was measured in osteoporosis (OP) patients and healthy controls by a quantitative reverse transcriptase-polymerase chain reaction (qRT-PCR). The correlation between miR-23 and MEF2C was determined by the Pearson correlation coefficient. Moreover, bioinformatic analysis was performed using public databases. Target gene function and potential pathways were further examined. Then, we used a miR-23 mimic or inhibitor to further explore the potential mechanism of miR-23. miR-23 is found to be up-regulated and MEF2C is down-regulated in OP patients compared to healthy controls. miR-23 had a negative correlation with MEF2C (r = -0.937, p = 0.001). Bioinformatic analysis revealed that a total of 664 overlapping target genes were found in the TargetScan (http://www.targetscan.org), miRDB (http://mirdb.org) and miRanda (http://www.microrna.org/microrna/home.do) databases. Moreover, Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis indicated that miR-23 may regulate the mitogan-activated protein kinase (MAPK) signaling pathway. miR-23 is down-regulated and MEF2C is significantly up-regulated in the osteogenic differentiation of hBMSCs. MEF2C was significantly up-regulated in the osteogenic differentiation of hBMSCs. Overexpression of miR-23 significantly down-regulated alkaline phosphatase (ALP) activity and calcium deposition, whereas the miR-23 inhibitor had the opposite effects. Moreover, overexpression of miR-23 significantly decreased osteoblast-related markers (Runx2, Osx, ALP and OCN). Further experiments confirmed that MEF2C is a direct target of miR-23. Moreover, the miR-23 mimic enhanced the expression of p-p38 but had no effect on p-JNK. miR-23 decreases the osteogenic differentiation of hBMSCs through the MEF2C/MAPK signaling pathway."	"The NMDA receptor subunit GluN3A regulates synaptic activity-induced and myocyte enhancer factor 2C (MEF2C)-dependent transcription. N-Methyl-d-aspartate type glutamate receptors (NMDARs) are key mediators of synaptic activity-regulated gene transcription in neurons, both during development and in the adult brain. Developmental differences in the glutamate receptor ionotropic NMDA 2 (GluN2) subunit composition of NMDARs determines whether they activate the transcription factor cAMP-responsive element-binding protein 1 (CREB). However, whether the developmentally regulated GluN3A subunit also modulates NMDAR-induced transcription is unknown. Here, using an array of techniques, including quantitative real-time PCR, immunostaining, reporter gene assays, RNA-Seq, and two-photon glutamate uncaging with calcium imaging, we show that knocking down GluN3A in rat hippocampal neurons promotes the inducible transcription of a subset of NMDAR-sensitive genes. We found that this enhancement is mediated by the accumulation of phosphorylated p38 mitogen-activated protein kinase in the nucleus, which drives the activation of the transcription factor myocyte enhancer factor 2C (MEF2C) and promotes the transcription of a subset of synaptic activity-induced genes, including brain-derived neurotrophic factor (Bdnf) and activity-regulated cytoskeleton-associated protein (Arc). Our evidence that GluN3A regulates MEF2C-dependent transcription reveals a novel mechanism by which NMDAR subunit composition confers specificity to the program of synaptic activity-regulated gene transcription in developing neurons."	"Epigenetic regulation of neuronal cell specification inferred with single cell &quot;Omics&quot; data. The brain is a highly complex organ consisting of numerous types of cells with ample diversity at the epigenetic level to achieve distinct gene expression profiles. During neuronal cell specification, transcription factors (TFs) form regulatory modules with chromatin remodeling proteins to initiate the cascade of epigenetic changes. Currently, little is known about brain epigenetic regulatory modules and how they regulate gene expression in a cell-type specific manner. To infer TFs involved in neuronal specification, we applied a recursive motif search approach on the differentially methylated regions identified from single-cell methylomes. The epigenetic transcription regulatory modules (ETRM), including EGR1 and MEF2C, were predicted and the co-expression of TFs in ETRMs were examined with RNA-seq data from single or sorted brain cells using a conditional probability matrix. Lastly, computational predications were validated with EGR1 ChIP-seq data. In addition, methylome and RNA-seq data generated from Egr1 knockout mice supported the essential role of EGR1 in brain epigenome programming, in particular for excitatory neurons. In summary, we demonstrated that brain single cell methylome and RNA-seq data can be integrated to gain a better understanding of how ETRMs control cell specification. The analytical pipeline implemented in this study is freely accessible in the Github repository (https://github.com/Gavin-Yinld/brain_TF)."	"Genome-Wide Analysis Reveals Changes in Polled Yak Long Non-coding RNAs in Skeletal Muscle Development. Long non-coding RNAs (lncRNAs) have been extensively studied in recent years. Numerous lncRNAs have been identified in mice, rats, and humans, some of which play important roles in muscle formation and development. However, little is known about lncRNA regulators that affect muscle development in yak (Bos grunniens). LncRNA expression during skeletal muscle development in yak was analyzed by RNA sequencing at three development stages: 3 years (group A), 6 months (group M), and 90-day-old fetuses (group E). A total of 1180 lncRNAs were identified in the three development stages. Compared with group E, 154 were upregulated and 130 were downregulated in group A. Compared with group A, 31 were upregulated and 29 were downregulated in group M. Compared with group E, 147 were upregulated and 149 were downregulated in group M (padj &lt; 0.001, |log2FC| &gt; 1.2). In addition, functional annotation analysis based on gene ontology (GO) and the Kyoto protocol encyclopedia of genes and genomes (KEGG) database showed that differentially expressed lncRNAs (DElncRNAs) were cis-trans target genes. The results showed that DElncRNAs were mainly involved in PI3K-Akt signaling pathway, focal adhesion, MAPK signaling pathway, apoptosis, and p53 signaling pathway. Furthermore, RTL1, IGF2, MEF2C, Pax7, and other well-known muscle development regulators were included in a co-expression network of differentially expressed target genes and lncRNAs. These data will help to further clarify the function of lncRNAs in the different stages of skeletal muscle developmental in yak."	"Effects of PPAR-γ in the Myocardium on the Development of Ventricular Septation. Ventricular septum defects (VSDs) are common types of congenital heart diseases caused by developmental defect; they contribute to 25%-30% of all adult congenital heart diseases. The peroxisome proliferator-activated receptor gamma (PPAR-γ) is widely expressed in mammalian tissues and in the immune system, regulating cell differentiation and immune and inflammatory responses. The PPAR-γ gene has recently been found crucial for heart development, but the mechanism of action is not clear. This study aims to investigate the effects of the PPAR-γ gene in the myocardium on the development of ventricular septation. In this study, we applied Cre-loxP recombination enzyme (CRE) technology to downregulate the expression of the PPAR-γ gene in different cardiac tissues, RT-PCR to examine the expression of the c-fos and TGF-β1 genes, and histology staining to check the defect of embryonic heart at embryonic day 14.5 (E14.5). We found that the downregulation of the PPAR-γ gene resulted in a ventricular membranous septation defect of the embryonic heart at E14.5. Furthermore, only conversion of a Tnt:Cre, but not Mef2c:Cre, Tie2:Cre, or Wnt:Cre PPAR-γ floxed allele to a null allele resulted in VSD. PPAR-γ<sup>Tnt-Cre/+</sup> embryos showed increases in atrioventricular (AV)-cushion cells and the expression of c-fos gene but no change in the expression of TGF-β1 at E10.5. Our study demonstrates PPAR-γ in the myocardium is required for ventricular septation through regulation of AV-cushion cell proliferation by a Tnt/c-fos signal."	"Effect for Human Genomic Variation During the BMP4-Induced Conversion From Pluripotent Stem Cells to Trophoblast. The role of genomic variation in differentiation is currently not well understood. Here, the genomic variations were determined with the whole-genome sequencing for three pairs of pluripotent stem cell lines and their corresponding BMP4-induced trophoblast cell lines. We identified ∼3,500 single nucleotide variations and ∼4,500 indels by comparing the genome sequenced data between the stem cell lines and the matched BMP4-induced trophoblast cell lines and annotated them by integrating the epigenomic and transcriptomic datasets. Relatively, introns enrich more variations. We found ∼45% (42 genes) of the differentially expressed genes in trophoblasts that associate genomic variations. Six variations, located at transcription factor binding sites where H3K4me3 and H3K27ac are enriched in both H1 and H1_BMP4, were identified. The epigenetic status around the genomic variations in H1 was similar to that in H1_BMP4. This means that the variation-associated gene's expression change can not be attributed to epigenetic alteration. The genes associated with the six variations were upregulated in differentiation. We inferred that during the differentiation, an increased in the expression level of the MEF2C gene is due to a genomic variation in chromosomes 5: 88179358 A &gt; G, which is at a binding site of TFs KLF16, NR2C2, and ZNF740 to MEF2C. Allele G shows a higher affinity to the TFs in the induced cells. The increased expression of MEF2C leads to an increased expression of TF MEF2C's target genes, subsequently affecting the differentiation. Although genomic variation should not be a dominant factor in differentiation, we believe that genomic variation could indeed play a role in the differentiation from stem cells into trophoblast."	"Distinct roles of calmodulin and Ca<sup>2+</sup>/calmodulin-dependent protein kinase II in isopreterenol-induced cardiac hypertrophy. Intracellular calcium is related to cardiac hypertrophy. The CaV1.2 channel and Ca<sup>2+</sup>/calmodulin-dependent protein kinase II (CaMKII) and CaM regulate the intracellular calcium content. However, the differences in CaMKII and CaM in cardiac hypertrophy are still conflicting and are worthy of studying as drug targets. Therefore, in this study, we aim to investigate the roles and mechanism of CaM and CaMKII on CaV1.2 in pathological myocardial hypertrophy. The results showed that ISO stimulation caused SD rat heart and cardiomyocyte hypertrophy. In vivo, the HW/BW, LVW/BW, cross-sectional area, fibrosis ratio and ANP expression were all increased. There were no differences in CaV1.2 channel expression in the in vivo model or the in vitro model, but the ISO stimulation induced channel activity, and the [Ca<sup>2+</sup>]i increased. The protein expression levels of CaMKII and p-CaMKII were all increased in the ISO group, but the CaM expression level decreased. AIP inhibited ANP, CaMKII and p-CaMKII expression, and ISO-induced [Ca<sup>2+</sup>]i increased. AIP also reduced HDAC4, p-HDAC and MEF2C expression. However, CMZ did not play a cardiac hypertrophy reversal role in vitro. In conclusion, we considered that compared with CaM, CaMKII may be a much more important drug target in cardiac hypertrophy reversal."	"The CaMKII phosphorylation site Thr1604 in the CaV1.2 channel is involved in pathological myocardial hypertrophy in rats. Residue Thr1604 in the CaV1.2 channel is a Ca<sup>2+</sup>/calmodulin dependent protein kinase II (CaMKII) phosphorylation site, and its phosphorylation status maintains the basic activity of the channel. However, the role of CaV1.2 phosphorylation at Thr1604 in myocardial hypertrophy is incompletely understood. Isoproterenol (ISO) was used to induce cardiomyocyte hypertrophy, and autocamtide-2-related inhibitory peptide (AIP) was added as a treatment. Rats in a myocardial hypertrophy development model were subcutaneously injected with ISO for two or three weeks. The heart and left ventricle weights, each of which were normalized to the body weight and cross-sectional area of the myocardial cells, were used to describe the degree of hypertrophy. Protein expression levels were detected by western blotting. CaMKII-induced CaV1.2 (Thr1604) phosphorylation (p-CaV1.2) was assayed by coimmunoprecipitation. The results showed that CaMKII, HDAC, MEF2 C, and atrial natriuretic peptide (ANP) expression was increased in the ISO group and downregulated by AIP treatment in vitro. There was no difference in the expression of these proteins between the ISO 2-week group and the ISO 3-week group in vivo. CaV1.2 channel expression did not change, but p-CaV1.2 expression was increased after ISO stimulation and decreased by AIP. In the rat model, p-CaV1.2 levels and CaMKII activity were much higher in the ISO 3-week group than in the ISO 2-week group. CaMKII-induced CaV1.2 channel phosphorylation at residue Thr1604 may be one of the key features of myocardial hypertrophy and disease development.Abbreviations: CaMKII: Ca2+/calmodulin dependent protein kinase II; p-CaMKII: autophosphorylated Ca2+/calmodulin dependent protein kinase II; CaM: calmodulin; AIP: autocamtide-2-related inhibitory peptide; ECC: excitation-contraction coupling; ISO: isoproterenol; BW: body weight; HW: heart weight; LVW: left ventricle weight; HDAC: histone deacetylase; p-HDAC: phosphorylated histone deacetylase; MEF2C: myocyte-specific enhancer factor 2C; ANP: atrial natriuretic peptide; PKC: protein kinase C."	"Direct Conversion of Human Dermal Fibroblasts into Cardiomyocyte-Like Cells Using CiCMC Nanogels Coupled with Cardiac Transcription Factors and a Nucleoside Drug. Using direct conversion technology, normal adult somatic cells can be routinely switched from their original cell type into specific differentiated cell types by inducing the expression of differentiation-related transcription factors. In this study, normal human dermal fibroblasts (NHDFs) are directly converted into cardiomyocyte-like cells by drug and gene delivery using carboxymethylcellulose (CMC) nanoparticles (CiCMC-NPs). CMC-based multifunctional nanogels containing specific cardiomyocyte-related genes are designed and fabricated, including GATA4, MEF2C, and TBX5 (GMT). However, GMT alone is insufficient, at least in vitro, in human fibroblasts. Hence, to inhibit proliferation and to induce differentiation, 5-azacytidine (5-AZA) is conjugated to the hydroxyl group of CMC in CiCMC-NPs containing GMT; in addition, the CMC is coated with polyethylenimine. It is confirmed that the CiCMC-NPs have nanogel properties, and that they exhibit the characteristic effects of 5-AZA and GMT. When CiCMC-NPs-containing 5-AZA and GMT are introduced into NHDFs, cardiomyocyte differentiation is initiated. In the reprogrammed cells, the mature cardiac-specific markers cardiac troponin I and α-actinin are expressed at twofold to threefold higher levels than in NHDFs. Engineered cells transplanted into live hearts exhibit active pumping ability within 1 day. Histology and immunohistology of heart tissue confirm the presence of transplanted engineered NHDF cells at injection sites."	"Whole-transcriptome analysis reveals a potential hsa_circ_0001955/hsa_circ_0000977-mediated miRNA-mRNA regulatory sub-network in colorectal cancer. Circular RNAs (circRNAs), a novel class of non-coding RNAs, have been found to act as microRNA (miRNA) sponges and thus play key roles in biological processes and pathogenesis. However, studies regarding circRNAs in colorectal cancer (CRC) remain inadequate. By differential expression analysis, 10 candidate circRNAs (6 upregulated and 4 downregulated circRNAs) were chosen. 9 of 10 circRNAs were available on CSCD and their structure showed the binding potential of miRNA. Intersection analysis revealed that miR-145-5p, miR-3127-5p, miR-761, miR-4766-3p, miR-135a-5p, miR-135b-5p, miR-374a-3p and miR-330-3p were 8 miRNAs with the most potential in binding circRNAs. Further expression validation and correlation analysis demonstrated hsa_circ_0001955/miR-145-5p and hsa_circ_0000977/miR-135b-5p axes as key pathways in CRC. Subsequently, target gene prediction, differential expression analysis, intersection analysis and correlation analysis showed that CDK6, MMP12 and RAB3IP were the three potential downstream targets of hsa_circ_0001955/miR-145-5p axis and FOXO1, MBNL1, MEF2C, RECK, PPM1E, TTLL7 and PCP4L1 were the seven potential downstream targets of hsa_circ_0000977/miR-135b-5p axis in CRC. Finally, we also confirmed that expression of hsa_circ_0001955 or hsa_circ_0000977 was significantly positively correlated with their individual targets in CRC. In the present work, we constructed a potential hsa_circ_0001955/hsa_circ_0000977-mediated circRNA-miRNA-mRNA regulatory network in CRC by a series of in silico analysis and experimental validation. Whole-transcriptome microarrays from CRC and matched normal samples were obtained from GEO. The structure of circRNA was identified by CSCD. starBase and miRNet were successively used to predict miRNA of circRNA and target gene of miRNA. Expression correlation between RNA-RNA interactions was assessed using GEO and TCGA data. Finally, a potential circRNA-miRNA-mRNA network was established based on competing endogenous RNA (ceRNA) hypothesis."	"Toxic effects of dechlorane plus on the common carp (Cyprinus carpio) embryonic development. Dechlorane Plus (DP) is a widely used chlorinated flame retardant, which has been extensively detected in the environment. Although DP content in the surface water is low, it can pose a continuous exposure risk to aquatic organisms due to its strong bioaccumulation. Considering that the related studies on the toxicity mechanism of DP exposure are limited, the effect of DP on carp embryo development was evaluated. In the present work, carp embryos were exposed to different concentrations (0, 30, 60, and 120 μg/L) of DP at 3 h post-fertilization (hpf). The expression levels of neural and skeletal development-associated genes, such as sox2, sox19a, Mef2c and BMP4, were detected with quantitative PCR, and the changes in different developmental toxicity endpoints were observed. Our results demonstrated that the expression levels of sox2, sox19a, Mef2c and BMP4 were significantly altered and several developmental abnormalities were found in DP-exposed carp embryos, such as DNA damage, increased mortality rate, delayed hatching time, reduced hatching rate, decreased body length, and increased morphological deformities. In addition, the activities of reactive oxygen species and malondialdehyde were remarkably higher in 60 and 120 μg/L DP exposure groups than in control group. These results suggest that DP can exhibit a unique modes of action, which lead to aberration occurrence in the early development stage of common carps, which may be related to some gene damage and oxidative stress. Besides, the parameters evaluated here can be used as tools to access the environmental risk for biota and humans exposed to DP."	"Significance of MEF2C and RUNX3 Regulation for Endochondral Differentiation of Human Mesenchymal Progenitor Cells. Guiding progenitor cell development between chondral versus endochondral pathways is still an unachieved task of cartilage neogenesis, and human mesenchymal progenitor cell (MPC) chondrogenesis is considered as a valuable model to better understand hypertrophic development of chondrocytes. Transcription factors Runx2, Runx3, and Mef2c play prominent roles for chondrocyte hypertrophy during mouse development, but little is known on the importance of these key fate-determining factors for endochondral development of human MPCs. The aim of this study was to unravel the regulation of RUNX2, RUNX3, and MEF2C during MPC chondrogenesis, the pathways driving their expression, and the downstream hypertrophic targets affected by their regulation. RUNX2, RUNX3, and MEF2C gene expression was differentially regulated during chondrogenesis of MPCs, but remained low and unregulated when non-hypertrophic articular chondrocytes were differentiated under the same conditions. RUNX3 and MEF2C mRNA and protein levels rose in parallel to hypertrophic marker upregulation, but surprisingly, RUNX2 gene expression changed only by trend and RUNX2 protein remained undetectable. While RUNX3 expression was driven by TGF-β and BMP signaling, MEF2C responded to WNT-, BMP-, and Hedgehog-pathway inhibition. MEF2C but not RUNX3 levels correlated significantly with COL10A1, IHH, and IBSP gene expression when hypertrophy was attenuated. IBSP was a downstream target of RUNX3 and MEF2C but not RUNX2 in SAOS-2 cells, underlining the capacity of RUNX3 and MEF2C to stimulate osteogenic marker expression in human cells. Conclusively, RUNX3 and MEF2C appeared more important than RUNX2 for human endochondral MPC chondrogenesis. Pathways altering the speed of chondrogenesis (FGF, TGF-β, BMP) affected RUNX2 or RUNX3, while pathways changing hypertrophy (WNT, PTHrP/HH) regulated mainly MEF2C. Taken together, reduction of MEF2C levels is a new goal to shift human cartilage neogenesis toward the chondral pathway."	"Methylation‑associated silencing of miR‑638 promotes endometrial carcinoma progression by targeting MEF2C. Promoter methylation‑associated silencing of cancer‑associated microRNAs (miRNAs) is a common epigenetic mechanism during tumorigenesis in various types of human cancer. However, this has not been comprehensively examined in endometrial carcinoma (EC). In the present study, an miRNA microarray consisting of 1,347 common human miRNAs was used to select potential tumor suppressive miRNAs that were hyper‑methylated in EC. This led to the identification of miR‑638, miR‑210 and miR‑3665. The methylation status of miR‑638 was examined by bisulfite sequencing polymerase chain reaction and miR‑638 expression was measured by TaqMan miRNA assays. EC cell lines transfected with vectors overexpressing miR‑638, its target gene myocyte enhancer factor 2C (MEF2C) or both, were constructed. Dual‑luciferase reporter assays, a xenograft mouse model and rescue experiments were designed to study miR‑638 and its target gene MEF2C. The results indicated that the promoter region of miR‑638 was highly methylated and the expression of miR‑638 was significantly downregulated in cancerous tissues from 42 patients with EC who underwent surgical resection. Additionally, a low expression of miR‑638 was significantly associated with advanced Federation of Gynecology and Obstetrics stage and was demonstrated to indicate shorter disease‑free survival. Functional studies indicated that the overexpression of miR‑638 in EC cell lines inhibited in vitro tumor progression and in vivo tumorigenicity. MEF2C was verified as a direct target of miR‑638 and was demonstrated to mediate the tumor‑suppressive function of miR‑638 in EC."	"Research into the intervention effect of folic acid on arsenic-induced heart abnormalities in fetal rats during the periconception period. The incidence of CHD is the highest among birth defects and is increasing year to year. CHD seriously harms the health of infants and young children and presents a large economic burden to families and society. The pathogenesis of CHD and preventive measures are the focus of current research. Our research aimed to explore the intervention effect of folic acid on heart abnormalities resulting from sodium arsenic (NaAsO2) exposure during the periconception period. Sixty 35-day-old female SD rats were randomly divided into 5 groups with 12 rats in each group. Group A was the control group. The rats were given distilled water and ordinary chow. The rats in group B were given distilled water containing 75 mg/L NaAsO2 and ordinary chow. The rats in groups C, D, and E were given distilled water containing 75 mg/L NaAsO2 and chow containing 0.53 mg/kg, 5.3 mg/kg, and 10.6 mg/kg folic acid, respectively. The general condition of the embryos and the histopathology of the embryonic hearts were examined. The acetylation levels of histone H3K9 in heart tissues and the expression levels of Mef2C (which is related to heart development) were observed. The embryo weight and placental weight of groups B-E were significantly lower than those of group A (P &lt; 0.05). The heart malformation rate of the fetal rats in groups B-E was significantly higher than that of the fetal rats in group A (P &lt; 0.05). We found that the level of H3K9 acetylation in fetal rat cardiomyocytes in groups B-E was significantly higher than that in group A (P &lt; 0.05) and that the level of H3K9 acetylation in groups C-E was lower than that in group B (P &lt; 0.05). The mRNA level of Mef2C in fetal rat cardiomyocytes in group B-E was significantly higher than that in group A (P &lt; 0.05), and the mRNA level of Mef2C in groups C-E was significantly lower than that in group B (P &lt; 0.05). Supplementation with folic acid during the periconception period can interfere with the toxic effects of arsenic on the heart. The mechanism may be that lowering the acetylation levels of histone H3K9 in heart tissues leads to decreased expression levels of Mef2C, which may play a protective role in heart development in fetal rats."	"MAML1 promotes ESCC aggressiveness through upregulation of EMT marker TWIST1. Mastermind-like 1 (MAML1) is the main transcriptional co-activator of Notch signaling pathway. It plays essential roles in several pathways including MEF2C, p53, Nf-кB and Wnt/β-catenin. TWIST1 is known as a regulator of epithelial mesenchymal transition (EMT), which is considered as a primary step in promotion of tumor cell metastasis. Since concomitant expression of these genes was observed in tumors, our aim in this study was to elucidate the linkage between MAML1 and TWIST1 co-overexpression in esophageal squamous cell carcinoma (ESCC). While MAML1 silencing significantly down-regulated TWIST1, its ectopic expression up-regulated TWIST1 expression in both mRNA and protein levels in KYSE-30 cells. Expression of mesenchymal markers was increased significantly after MAML1 and TWIST1 ectopic expression, while epithelial markers expression was significantly decreased after silencing of both genes. Concomitant protein expression of MAML1 and TWIST1 was significantly observed in ESCC patients. Enforced expression of TWIST1 had no impact on MAML1 gene expression in KYSE-30 cells. The results clearly suggest transcriptional regulation of TWIST1 by MAML1 transcription factor in ESCC cells KYSE-30. Since TWIST1 is known as an EMT inducing marker, our results may revealed the mastermind behind TWIST1 function and introduced MAML1 as an upstream master regulator of TWIST1 and EMT in KYSE-30 cells."	"Chronic Alcohol Dysregulates Skeletal Muscle Myogenic Gene Expression after Hind Limb Immobilization in Female Rats. Alcohol use and aging are risk factors for falls requiring immobilization and leading to skeletal muscle atrophy. Skeletal muscle regeneration is integral to post-immobilization recovery. This study aimed to elucidate the effects of alcohol and ovarian hormone loss on the expression of genes implicated in muscle regeneration. Three-month-old female rats received an ovariectomy or a sham surgery, consumed an alcohol-containing or control diet for 10 weeks, were subjected to unilateral hind limb immobilization for seven days, and finally were allowed a three (3d)- or 14 (14d)-day recovery. Immobilization decreased the quadriceps weight at 3d and 14d, and alcohol decreased the quadriceps weight at 14d in the nonimmobilized hind limb (NI). At 3d, alcohol decreased gene expression of myoblast determination protein (MyoD) in the immobilized hind limb (IMM) and myocyte enhancer factor (Mef)2C and tumor necrosis factor (TNF)α in NI, and ovariectomy increased MyoD and decreased TNFα expression in NI. At 14d, alcohol increased the gene expression of Mef2C, MyoD, TNFα, and transforming growth factor (TFG)β in IMM and decreased monocyte chemoattractant protein (MCP)1 expression in NI; ovariectomy increased TNFα expression in NI, and alcohol and ovariectomy together increased Mef2C expression in NI. Despite increased TGFβ expression, there was no concomitant alcohol-mediated increase in collagen in IMM at 14d. Overall, these data indicate that alcohol dysregulated the post-immobilization alteration in the expression of genes implicated in regeneration. Whether alcohol-mediated molecular changes correspond with post-immobilization functional alterations remains to be determined."	"Design of a Comprehensive Fluorescence in Situ Hybridization Assay for Genetic Classification of T-Cell Acute Lymphoblastic Leukemia. T-cell acute lymphoblastic leukemia (T-ALL) results from deregulation of a number of genes via multiple genomic mechanisms. We designed a comprehensive fluorescence in situ hybridization (CI-FISH) assay that consists of genomic probes to simultaneously investigate oncogenes and oncosuppressors recurrently involved in chromosome rearrangements in T-ALL, which was applied to 338 T-ALL cases. CI-FISH provided genetic classification into one of the well-defined genetic subgroups (ie, TAL/LMO, HOXA, TLX3, TLX1, NKX2-1/2-2, or MEF2C) in 80% of cases. Two patients with translocations of the LMO3 transcription factor were identified, suggesting that LMO3 activation may serve as an alternative to LMO1/LMO2 activation in the pathogenesis of this disease. Moreover, intrachromosomal rearrangements that involved the 10q24 locus were found as a new mechanism of TLX1 activation. An unequal distribution of cooperating genetic defects was found among the six genetic subgroups. Interestingly, deletions that targeted TCF7 or TP53 were exclusively found in HOXA T-ALL, LEF1 defects were prevalent in NKX2-1 rearranged patients, CASP8AP2 and PTEN alterations were significantly enriched in TAL/LMO leukemias, and PTPN2 and NUP214-ABL1 abnormalities occurred in TLX1/TLX3. This work convincingly shows that CI-FISH is a powerful tool to define genetic heterogeneity of T-ALL, which may be applied as a rapid and accurate diagnostic test."	"Deletion of metal transporter Zip14 (Slc39a14) produces skeletal muscle wasting, endotoxemia, Mef2c activation and induction of miR-675 and Hspb7. Skeletal muscle represents the largest pool of body zinc, however, little is known about muscle zinc homeostasis or muscle-specific zinc functions. Zip14 (Slc39a14) was the most highly expressed zinc transporter in skeletal muscle of mice in response to LPS-induced inflammation. We compared metabolic parameters of skeletal muscle from global Zip14 knockout (KO) and wild-type mice (WT). At basal steady state Zip14 KO mice exhibited a phenotype that included muscle wasting and metabolic endotoxemia. Microarray and qPCR analysis of gastrocnemius muscle RNA revealed that ablation of Zip14 produced increased muscle p-Mef2c, Hspb7 and miR-675-5p expression and increased p38 activation. ChIP assays showed enhanced binding of NF-[Formula: see text] to the Mef2c promoter. In contrast, LPS-induced systemic inflammation enhanced Zip14-dependent zinc uptake by muscle, increased expression of Atrogin1 and MuRF1 and markedly reduced MyoD. These signatures of muscle atrophy and cachexia were not influenced by Zip14 ablation, however. LPS-induced miR-675-3p and -5p expression was Zip14-dependent. Collectively, these results with an integrative model are consistent with a Zip14 function in skeletal muscle at steady state that supports myogenesis through suppression of metabolic endotoxemia and that Zip14 ablation coincides with sustained activity of phosphorylated components of signaling pathways including p-Mef2c, which causes Hspb7-dependent muscle wasting."	"MEF2c-Dependent Downregulation of Myocilin Mediates Cancer-Induced Muscle Wasting and Associates with Cachexia in Patients with Cancer. Skeletal muscle wasting is a devastating consequence of cancer that contributes to increased complications and poor survival, but is not well understood at the molecular level. Herein, we investigated the role of Myocilin (Myoc), a skeletal muscle hypertrophy-promoting protein that we showed is downregulated in multiple mouse models of cancer cachexia. Loss of Myoc alone was sufficient to induce phenotypes identified in mouse models of cancer cachexia, including muscle fiber atrophy, sarcolemmal fragility, and impaired muscle regeneration. By 18 months of age, mice deficient in Myoc showed significant skeletal muscle remodeling, characterized by increased fat and collagen deposition compared with wild-type mice, thus also supporting Myoc as a regulator of muscle quality. In cancer cachexia models, maintaining skeletal muscle expression of Myoc significantly attenuated muscle loss, while mice lacking Myoc showed enhanced muscle wasting. Furthermore, we identified the myocyte enhancer factor 2 C (MEF2C) transcription factor as a key upstream activator of Myoc whose gain of function significantly deterred cancer-induced muscle wasting and dysfunction in a preclinical model of pancreatic ductal adenocarcinoma (PDAC). Finally, compared with noncancer control patients, MYOC was significantly reduced in skeletal muscle of patients with PDAC defined as cachectic and correlated with MEF2c. These data therefore identify disruptions in MEF2c-dependent transcription of Myoc as a novel mechanism of cancer-associated muscle wasting that is similarly disrupted in muscle of patients with cachectic cancer. SIGNIFICANCE: This work identifies a novel transcriptional mechanism that mediates skeletal muscle wasting in murine models of cancer cachexia that is disrupted in skeletal muscle of patients with cancer exhibiting cachexia."	"TGF-β3/Smad3 Contributes to Isoflurane Postconditioning Against Cerebral Ischemia-Reperfusion Injury by Upregulating MEF2C. Isoflurane postconditioning alleviates cerebral ischemic-reperfusion injury (CIRI), but the underlying mechanism has not been fully clarified. We previously demonstrated that the transforming growth factor beta-1 (TGF-β1)/Smads signaling pathway is involved in the neuroprotective effect of isoflurane postconditioning. TGF-β3 has a highly homologous sequence relative to that of TGF-β1. In this study, we explored the roles of the TGF-β3/Smad3 signaling pathway and myocyte enhancer factor 2C (MEF2C) in neuroprotection induced by isoflurane postconditioning. A CIRI rat model was established by middle cerebral artery occlusion for 1.5 h, followed by 24 h of reperfusion. Isoflurane postconditioning led to lower infarct volumes and neurologic deficit scores, more surviving neurons, and less damaged and apoptotic neurons as compared with those of CIRI rats. Moreover, isoflurane postconditioning upregulated the expressions of TGF-β3, p-Smad3, and MEF2C. However, the neuroprotective effect was reversed by pirfenidone, a TGF-β3/Smad3 signaling pathway inhibitor. Also, pirfenidone treatment downregulated the expression of MEF2C. These results indicate that the TGF-β3/Smad3 signaling pathway contributes to the neuroprotection of isoflurane postconditioning after CIRI and is possibly related to MEF2C."	"RNA-Based Strategies for Cardiac Reprogramming of Human Mesenchymal Stromal Cells. Multipotent adult mesenchymal stromal cells (MSCs) could represent an elegant source for the generation of patient-specific cardiomyocytes needed for regenerative medicine, cardiovascular research, and pharmacological studies. However, the differentiation of adult MSC into a cardiac lineage is challenging compared to embryonic stem cells or induced pluripotent stem cells. Here we used non-integrative methods, including microRNA and mRNA, for cardiac reprogramming of adult MSC derived from bone marrow, dental follicle, and adipose tissue. We found that MSC derived from adipose tissue can partly be reprogrammed into the cardiac lineage by transient overexpression of GATA4, TBX5, MEF2C, and MESP1, while cells isolated from bone marrow, and dental follicle exhibit only weak reprogramming efficiency. qRT-PCR and transcriptomic analysis revealed activation of a cardiac-specific gene program and up-regulation of genes known to promote cardiac development. Although we did not observe the formation of fully mature cardiomyocytes, our data suggests that adult MSC have the capability to acquire a cardiac-like phenotype when treated with mRNA coding for transcription factors that regulate heart development. Yet, further optimization of the reprogramming process is mandatory to increase the reprogramming efficiency."	"Lineage reprogramming of fibroblasts into induced cardiac progenitor cells by CRISPR/Cas9-based transcriptional activators. Overexpression of exogenous lineage-determining factors succeeds in directly reprogramming fibroblasts to various cell types. Several studies have reported reprogramming of fibroblasts into induced cardiac progenitor cells (iCPCs). CRISPR/Cas9-mediated gene activation is a potential approach for cellular reprogramming due to its high precision and multiplexing capacity. Here we show lineage reprogramming to iCPCs through a dead Cas9 (dCas9)-based transcription activation system. Targeted and robust activation of endogenous cardiac factors, including GATA4, HAND2, MEF2C and TBX5 (G, H, M and T; GHMT), can reprogram human fibroblasts toward iCPCs. The iCPCs show potentials to differentiate into cardiomyocytes, smooth muscle cells and endothelial cells in vitro. Addition of MEIS1 to GHMT induces cell cycle arrest in G2/M and facilitates cardiac reprogramming. Lineage reprogramming of human fibroblasts into iCPCs provides a promising cellular resource for disease modeling, drug discovery and individualized cardiac cell therapy."	"Investigating cone photoreceptor development using patient-derived NRL null retinal organoids. Photoreceptor loss is a leading cause of blindness, but mechanisms underlying photoreceptor degeneration are not well understood. Treatment strategies would benefit from improved understanding of gene-expression patterns directing photoreceptor development, as many genes are implicated in both development and degeneration. Neural retina leucine zipper (NRL) is critical for rod photoreceptor genesis and degeneration, with NRL mutations known to cause enhanced S-cone syndrome and retinitis pigmentosa. While murine Nrl loss has been characterized, studies of human NRL can identify important insights for human retinal development and disease. We utilized iPSC organoid models of retinal development to molecularly define developmental alterations in a human model of NRL loss. Consistent with the function of NRL in rod fate specification, human retinal organoids lacking NRL develop S-opsin dominant photoreceptor populations. We report generation of two distinct S-opsin expressing populations in NRL null retinal organoids and identify MEF2C as a candidate regulator of cone development."	"LncRNA UCA1 Suppresses the Inflammation Via Modulating miR-203-Mediated Regulation of MEF2C/NF-κB Signaling Pathway in Epilepsy. Although many advances have been made in the pathogenesis of epilepsy recently, the pathological mechanisms of epilepsy are still largely unknown. Exploring the pathological mechanisms and developing novel therapeutic strategies for epilepsy are urgently needed. A SD rat model of epilepsy was established with lithium chloride-pilocarpine. Astrocytes were isolated, cultured from 8 to 12 week rats and identified by flow cytometry and immunofluorescence. Immunohistochemical staining was used for MEF2C and NF-κB in paraffin-embedded sections. RT-qPCR and western blot were used to analyze gene expression. ELISA was used to analyze the concentration of IL-6, TNF-α and Cox-2. Cells were transfected with pcDNA-MEFC2, sh-MEFC2, pcDNA-UCA1, sh-UCA1, miR-203 mimic or miR-203 inhibitor. Cell viability was assessed by MTT assay. Dual luciferase assay was used to determine the direct interaction of lncRNA UCA1/miR-203 and miR-203/MEF2C. MEF2C was down-regulated and inhibited NF-κB expression and the secretion of IL-6 and TNF-α in epilepsy. LncRNA UCA1 was also down-regulated in epilepsy. LncRNA UCA1 over-expression increased the expression of MEF2C and its knock-down decreased MEF2C expression. Luciferase activity showed lncRNA UCA1 directly targeted miR-203 and miR-203 directly targeted MEF2C. MiR-203 suppressed the expression of MEF2C, and promoted NF-κB, phosphorylated IκB/IKK and inflammatory effectors, which was reversed by MEF2C knock-down. Moreover, lncRNA UCA1 could increase the expression of MEF2C to inhibit NF-κB, phosphorylated IκB/IKK and inflammatory effectors, which was also reversed by miR-203 mimic transfection. LncRNA UCA1 inhibited the inflammation via regulating miR-203 mediated regulation of MEF2C/NF-κB signaling in epilepsy. Our investigation elucidated novel pathological mechanisms and provided potential therapeutic targets for epilepsy."	"miR-128a Acts as a Regulator in Cardiac Development by Modulating Differentiation of Cardiac Progenitor Cell Populations. MicroRNAs (miRs) appear to be major, yet poorly understood players in regulatory networks guiding cardiogenesis. We sought to identify miRs with unknown functions during cardiogenesis analyzing the miR-profile of multipotent Nkx2.5 enhancer cardiac progenitor cells (NkxCE-CPCs). Besides well-known candidates such as miR-1, we found about 40 miRs that were highly enriched in NkxCE-CPCs, four of which were chosen for further analysis. Knockdown in zebrafish revealed that only miR-128a affected cardiac development and function robustly. For a detailed analysis, loss-of-function and gain-of-function experiments were performed during in vitro differentiations of transgenic murine pluripotent stem cells. MiR-128a knockdown (1) increased Isl1, Sfrp5, and Hcn4 (cardiac transcription factors) but reduced Irx4 at the onset of cardiogenesis, (2) upregulated Isl1-positive CPCs, whereas NkxCE-positive CPCs were downregulated, and (3) increased the expression of the ventricular cardiomyocyte marker Myl2 accompanied by a reduced beating frequency of early cardiomyocytes. Overexpression of miR-128a (4) diminished the expression of Isl1, Sfrp5, Nkx2.5, and Mef2c, but increased Irx4, (5) enhanced NkxCE-positive CPCs, and (6) favored nodal-like cardiomyocytes (Tnnt2<sup>+</sup>, Myh6<sup>+</sup>, Shox2<sup>+</sup>) accompanied by increased beating frequencies. In summary, we demonstrated that miR-128a plays a so-far unknown role in early heart development by affecting the timing of CPC differentiation into various cardiomyocyte subtypes."	"Contribution of Intellectual Disability-Related Genes to ADHD Risk and to Locomotor Activity in Drosophila. Attention deficit hyperactivity disorder (ADHD) is a common, highly heritable neuropsychiatric disorder. ADHD often co-occurs with intellectual disability, and shared overlapping genetics have been suggested. The aim of this study was to identify novel ADHD genes by investigating whether genes carrying rare mutations linked to intellectual disability contribute to ADHD risk through common genetic variants. Validation and characterization of candidates were performed using Drosophila melanogaster. Common genetic variants in a diagnostic gene panel of 396 autosomal intellectual disability genes were tested for association with ADHD risk through gene set and gene-wide analyses, using ADHD meta-analytic data from the Psychiatric Genomics Consortium for discovery (N=19,210) and ADHD data from the Lundbeck Foundation Initiative for Integrative Psychiatric Research for replication (N=37,076). The significant genes were functionally validated and characterized in Drosophila by assessing locomotor activity and sleep upon knockdown of those genes in brain circuits. The intellectual disability gene set was significantly associated with ADHD risk in the discovery and replication data sets. The three genes most consistently associated were MEF2C, ST3GAL3, and TRAPPC9. Performing functional characterization of the two evolutionarily conserved genes in Drosophila melanogaster, the authors found that their knockdown in dopaminergic (dMEF2) and circadian neurons (dTRAPPC9) resulted in increased locomotor activity and reduced sleep, concordant with the human phenotype. This study reveals that a large set of intellectual disability-related genes contribute to ADHD risk through effects of common alleles. Utilizing this continuity, the authors identified TRAPPC9, MEF2C, and ST3GAL3 as novel ADHD candidate genes. Characterization in Drosophila suggests that TRAPPC9 and MEF2C contribute to ADHD-related behavior through distinct neural substrates."	"The Effect of Cardiogenic Factors on Cardiac Mesenchymal Cell Anti-Fibrogenic Paracrine Signaling and Therapeutic Performance. Intrinsic cardiogenic factor expression, a proxy for cardiomyogenic lineage commitment, may be an important determinant of donor cell cardiac reparative capacity in cell therapy applications; however, whether and how this contributes to their salutary effects remain largely ambiguous. Methods: The current study examined the consequences of enhanced cardiogenic factor expression, via lentiviral delivery of GMT (GATA4, MEF2C, and TBX5), on cardiac mesenchymal cell (CMC) anti-fibrogenic paracrine signaling dynamics, in vitro, and cardiac reparative capacity, in vivo. Proteome cytokine array analyses and in vitro cardiac fibroblast activation assays were performed using conditioned medium derived from either GMT- or GFP control-transduced CMCs, to respectively assess cardiotrophic factor secretion and anti-fibrogenic paracrine signaling aptitude. Results: Relative to GFP controls, GMT CMCs exhibited enhanced secretion of cytokines implicated to function in pathways associated with matrix remodeling and collagen catabolism, and more ably impeded activated cardiac fibroblast Col1A1 synthesis in vitro. Following their delivery in a rat model of chronic ischemic cardiomyopathy, conventional echocardiography was unable to detect a therapeutic advantage with either CMC population; however, hemodynamic analyses identified a modest, yet calculable supplemental benefit in surrogate measures of global left ventricular contractility with GMT CMCs relative to GFP controls. This phenomenon was neither associated with a decrease in infarct size nor an increase in viable myocardium, but with only a marginal decrease in regional myocardial collagen deposition. Conclusion: Overall, these results suggest that CMC cardiomyogenic lineage commitment biases cardiac repair and, further, that enhanced anti-fibrogenic paracrine signaling potency may underlie, in part, their improved therapeutic utility."	"Mechanism for neurotransmitter-receptor matching. Synaptic communication requires the expression of functional postsynaptic receptors that match the presynaptically released neurotransmitter. The ability of neurons to switch the transmitter they release is increasingly well documented, and these switches require changes in the postsynaptic receptor population. Although the activity-dependent molecular mechanism of neurotransmitter switching is increasingly well understood, the basis of specification of postsynaptic neurotransmitter receptors matching the newly expressed transmitter is unknown. Using a functional assay, we show that sustained application of glutamate to embryonic vertebrate skeletal muscle cells cultured before innervation is necessary and sufficient to up-regulate ionotropic glutamate receptors from a pool of different receptors expressed at low levels. Up-regulation of these ionotropic receptors is independent of signaling by metabotropic glutamate receptors. Both imaging of glutamate-induced calcium elevations and Western blots reveal ionotropic glutamate receptor expression prior to immunocytochemical detection. Sustained application of glutamate to skeletal myotomes in vivo is necessary and sufficient for up-regulation of membrane expression of the GluN1 NMDA receptor subunit. Pharmacological antagonists and morpholinos implicate p38 and Jun kinases and MEF2C in the signal cascade leading to ionotropic glutamate receptor expression. The results suggest a mechanism by which neuronal release of transmitter up-regulates postsynaptic expression of appropriate transmitter receptors following neurotransmitter switching and may contribute to the proper expression of receptors at the time of initial innervation."	"A neuronal enhancer network upstream of MEF2C is compromised in patients with Rett like characteristics. NA"	"New markers for regulation of transcription and macromolecule metabolic process in porcine oocytes during in vitro maturation. Oocyte maturation is essential for proper fertilization, embryo implantation and early development. While the physiological conditions of these processes are relatively well‑known, its exact molecular mechanisms remain widely undiscovered. Oocyte growth, differentiation and maturation are therefore the subject of scientific debate. Precious literature has indicated that the oocyte itself serves a regulatory role in the mechanisms underlying these processes. Hence, the present study performed expression microarrays to analyze the complete transcriptome of porcine oocytes during their in vitro maturation (IVM). Pig material was used for experimentation, as it possesses similarities to the reproductive processes and general genetic proximities of Sus scrofa to human. Oocytes, isolated from the ovaries of slaughtered animals were assessed via the Brilliant Cresyl Blue test and directed to IVM. A number of oocytes were left to be analyzed as the 'before IVM' group. Oocyte mRNA was isolated and used for microarray analysis, which was subsequently validated via RT‑qPCR. The current study particularly focused on genes belonging to 'positive regulation of transcription, DNA‑dependent', 'positive regulation of gene expression', 'positive regulation of macromolecule metabolic process' and 'positive regulation of transcription from RNA polymerase II promoter' ontologies. FOS, VEGFA, ESR1, AR, CCND2, EGR2, ENDRA, GJA1, INHBA, IHH, INSR, APP, WWTR1, SMARCA1, NFAT5, SMAD4, MAP3K1, EGR1, RORA, ECE1, NR5A1, KIT, IKZF2, MEF2C, SH3D19, MITF and PSMB4 were all determined to be significantly altered (fold change, &gt;|2|; P&lt;0.05) among these groups, with their downregulation being observed after IVM. Genes with the most altered expressions were analyzed and considered to be potential markers of maturation associated with transcription regulation and macromolecule metabolism process."	"Identification of FOXH1 mutations in patients with sporadic conotruncal heart defect. Conotruncal heart defects (CTD) are an important subtype of congenital heart disease that occur due to abnormality in the development of the cardiac outflow tract (OFT). FOXH1 is a transcription factor that participates in the morphogenesis of the right ventricle and OFT. In this study, we confirmed the expression of FOXH1 in mouse and human embryos during OFT development. We also scanned the coding exons and splicing regions of the FOXH1 gene in 605 patients with sporadic CTD and 300 unaffected controls, from which we identified seven heterozygous FOXH1 gene mutations. According to bioinformatics analysis results, they were predicted potentially deleterious at conserved amino acid sites. Western blot was used to show that all the variants decreased the expression of FOXH1 protein, while dual-luciferase reporter assay showed that six of them, with an exception of p.P35R, had enhanced abilities to modulate the expression of MEF2C, which interacts with NKX2.5 and is involved in cardiac growth. The electrophoretic mobility shift assays result showed that two mutations altered DNA-binding abilities of mutant FOXH1 proteins. Phenotype heterogeneity was found in patients with the same mutation. These results indicate that FOXH1 mutations lead to disease-causing functional changes that contribute to the occurrence of CTD."	"Genetic interaction screen for severe neurodevelopmental disorders reveals a functional link between Ube3a and Mef2 in Drosophila melanogaster. Neurodevelopmental disorders (NDDs) are clinically and genetically extremely heterogeneous with shared phenotypes often associated with genes from the same networks. Mutations in TCF4, MEF2C, UBE3A, ZEB2 or ATRX cause phenotypically overlapping, syndromic forms of NDDs with severe intellectual disability, epilepsy and microcephaly. To characterize potential functional links between these genes/proteins, we screened for genetic interactions in Drosophila melanogaster. We induced ubiquitous or tissue specific knockdown or overexpression of each single orthologous gene (Da, Mef2, Ube3a, Zfh1, XNP) and in pairwise combinations. Subsequently, we assessed parameters such as lethality, wing and eye morphology, neuromuscular junction morphology, bang sensitivity and climbing behaviour in comparison between single and pairwise dosage manipulations. We found most stringent evidence for genetic interaction between Ube3a and Mef2 as simultaneous dosage manipulation in different tissues including glia, wing and eye resulted in multiple phenotype modifications. We subsequently found evidence for physical interaction between UBE3A and MEF2C also in human cells. Systematic pairwise assessment of the Drosophila orthologues of five genes implicated in clinically overlapping, severe NDDs and subsequent confirmation in a human cell line revealed interactions between UBE3A/Ube3a and MEF2C/Mef2, thus contributing to the characterization of the underlying molecular commonalities."	"Isoform Specific Effects of Mef2C during Direct Cardiac Reprogramming. Direct conversion of cardiac fibroblasts into induced cardiomyocytes (iCMs) by forced expression of defined factors holds great potential for regenerative medicine by offering an alternative strategy for treatment of heart disease. Successful iCM conversion can be achieved by minimally using three transcription factors, Mef2c (M), Gata4(G), and Tbx5 (T). Despite increasing interest in iCM mechanistic studies using MGT(polycistronic construct with optimal expression of M,G and T), the reprogramming efficiency varies among different laboratories. Two main Mef2c isoforms (isoform2, Mi2 and isoform4, Mi4) are present in heart and are used separately by different labs, for iCM reprogramming. It is currently unknown if differently spliced isoform of Mef2c contributes to varied reprogramming efficiency. Here, we used Mi2 and Mi4 together with Gata4 and Tbx5 in separate vectors or polycistronic vector, to convert fibroblasts to iCMs. We found that Mi2 can induce higher reprogramming efficiency than Mi4 in MEFs. Addition of Hand2 to MGT retroviral cocktail or polycistronic Mi2-GT retroviruses further enhanced the iCM conversion. Overall, this study demonstrated the isoform specific effects of Mef2c, during iCM reprogramming, clarified some discrepancy about varied efficiency among labs and might lead to future research into the role of alternative splicing and the consequent variants in cell fate determination."	"Maternal Exposure to High-Fat Diet Induces Long-Term Derepressive Chromatin Marks in the Heart. Heart diseases are a leading cause of death. While the link between early exposure to nutritional excess and heart disease risk is clear, the molecular mechanisms involved are poorly understood. In the developmental programming field, increasing evidence is pointing out the critical role of epigenetic mechanisms. Among them, polycomb repressive complex 2 (PRC2) and DNA methylation play a critical role in heart development and pathogenesis. In this context, we aimed at evaluating the role of these epigenetic marks in the long-term cardiac alterations induced by early dietary challenge. Using a model of rats exposed to maternal high-fat diet during gestation and lactation, we evaluated cardiac alterations at adulthood. Expression levels of PRC2 components, its histone marks di- and trimethylated histone H3 (H3K27me2/3), associated histone mark (ubiquitinated histone H2A, H2AK119ub1) and target genes were measured by Western blot. Global DNA methylation level and DNA methyl transferase 3B (DNMT3B) protein levels were measured. Maternal high-fat diet decreased H3K27me3, H2Ak119ub1 and DNA methylation levels, down-regulated the enhancer of zeste homolog 2 (EZH2), and DNMT3B expression. The levels of the target genes, isl lim homeobox 1 (Isl1), six homeobox 1 (Six1) and mads box transcription enhancer factor 2, polypeptide C (Mef2c), involved in cardiac pathogenesis were up regulated. Overall, our data suggest that the programming of cardiac alterations by maternal exposure to high-fat diet involves the derepression of pro-fibrotic and pro-hypertrophic genes through the induction of EZH2 and DNMT3B deficiency."	"MiR-210 inhibits hypoxia-induced apoptosis of smooth muscle cells via targeting MEF2C. Vascular smooth muscle cell (VSMC) apoptosis plays an important role in vascular remodeling and atherosclerotic plaque instability. Growing evidence suggests that microRNAs (miRNAs) play a critical role in VSMC function, however, the underlying mechanism remains unclear. This study used a hypoxic-induced VSMC apoptosis model. Expression of miR-210, its target MEF2C, and other key factors of apoptosis were detected and measured by real-time PCR and western blot. Luciferase reporter assay was performed to detect the miR-210 target. The function of miR-210 in apoptosis was determined using flow cytometric cell apoptosis assays. The relationship between miR-210 and MEF2C was confirmed and key apoptosis factors were detected. The restoration of miR-210 function in cells transfected with a miR-210 mimic inhibited VSMC apoptosis compared to control. MiR-210 overexpression inhibited the expression of Bax, Bad, cleaved Caspase-3, and promoted the expression of Bcl-2, Caspase-3, Caspase-9 and mitochondrial cytochrome c at both the mRNA and protein levels. Results also found that MEF2C was a direct target of miR-210 in hypoxic VSMCs. Further, miR-210 suppressed MEF2C expression by directly binding to its 3'-untranslated region and the expression of miR-210 was negatively correlated with MEF2C mRNA levels. Results from this study provide the first evidence that miR-210 can inhibit apoptosis by targeting MEF2C in hypoxic VSMCs and may support the development of new biomarkers and therapeutic targets for atherosclerosis."	"Downregulation of circulating miR 802-5p and miR 194-5p and upregulation of brain MEF2C along breast cancer brain metastasization. Breast cancer brain metastases (BCBMs) have been underinvestigated despite their high incidence and poor outcome. MicroRNAs (miRNAs), and particularly circulating miRNAs, regulate multiple cellular functions, and their deregulation has been reported in different types of cancer and metastasis. However, their signature in plasma along brain metastasis development and their relevant targets remain undetermined. Here, we used a mouse model of BCBM and next-generation sequencing (NGS) to establish the alterations in circulating miRNAs during brain metastasis formation and development. We further performed bioinformatics analysis to identify their targets with relevance in the metastatic process. We additionally analyzed human resected brain metastasis samples of breast cancer patients for target expression validation. Breast cancer cells were injected in the carotid artery of mice to preferentially induce metastasis in the brain, and samples were collected at different timepoints (5 h, 3, 7, and 10 days) to follow metastasis development in the brain and in peripheral organs. Metastases were detected from 7 days onwards, mainly in the brain. NGS revealed a deregulation of circulating miRNA profile during BCBM progression, rising from 18% at 3 days to 30% at 10 days following malignant cells' injection. Work was focused on those altered prior to metastasis detection, among which were miR-802-5p and miR-194-5p, whose downregulation was validated by qPCR. Using targetscan and diana tools, the transcription factor myocyte enhancer factor 2C (MEF2C) was identified as a target for both miRNAs, and its expression was increasingly observed in malignant cells along brain metastasis development. Its upregulation was also observed in peritumoral astrocytes pointing to a role of MEF2C in the crosstalk between tumor cells and astrocytes. MEF2C expression was also observed in human BCBM, validating the observation in mouse. Collectively, downregulation of circulating miR-802-5p and miR-194-5p appears as a precocious event in BCBM and MEF2C emerges as a new player in brain metastasis development."	"MEF2C repressor variant deregulation leads to cell cycle re-entry and development of heart failure. A pathophysiological link exists between dysregulation of MEF2C transcription factors and heart failure (HF), but the underlying mechanisms remain elusive. Alternative splicing of MEF2C exons α, β and γ provides transcript diversity with gene activation or repression functionalities. Neonatal and adult rat ventricular myocytes were used to overexpress MEF2C splicing variants γ+ (repressor) or γ-, or the inactive MEF2Cγ+23/24 (K23T/R24L). Phenotypic alterations in cardiomyocytes were determined by confocal and electron microscopy, flow cytometry and DNA microarray. We used transgenic mice with cardiac-specific overexpression of MEF2Cγ+ or MEF2Cγ- to explore the impact of MEF2C variants in cardiac phenotype. Samples of non-infarcted areas of the left ventricle from patients and mouse model of myocardial infarction were used to detect the expression of MEF2Cγ+ in failing hearts. We demonstrate a previously unrealized upregulation of the transrepressor MEF2Cγ+ isoform in human and mouse failing hearts. We show that adenovirus-mediated overexpression of MEF2Cγ+ downregulates multiple MEF2-target genes, and drives incomplete cell-cycle reentry, partial dedifferentiation and apoptosis in the neonatal and adult rat. None of these changes was observed in cardiomyocytes overexpressing MEF2Cγ-. Transgenic mice overexpressing MEF2Cγ+, but not the MEF2Cγ-, developed dilated cardiomyopathy, correlated to cell-cycle reentry and apoptosis of cardiomyocytes. Our results provide a mechanistic link between MEF2Cγ+ and deleterious abnormalities in cardiomyocytes, supporting the notion that splicing dysregulation in MEF2C towards the selection of the MEF2Cγ+ variant contributes to the pathogenesis of HF by promoting cardiomyocyte dropout. São Paulo Research Foundation (FAPESP); Brazilian National Research Council (CNPq)."	"A novel MEF2C mutation in lymphoid neoplasm diffuse large B-cell lymphoma promotes tumorigenesis by increasing c-JUN expression. Diffuse large B-cell lymphoma (DLBCL) is the most aggressive non-Hodgkin lymphoma (NHL), accounting for about 31% of the newly diagnosed NHL worldwide. Although approximately 60% of patients who initially received a standard R-CHOP treatment likely have a 3-year event-free survival, many patients become refractory or relapsed due to the genetic heterogeneity of this malignancy. Hence, new treatment strategies are urgently needed. MEF2C, a member of the MEF2 transcription factor family gene, plays great important roles involved in the development of various tissues and the pathogenesis of lymphoma. However, the exact functions and molecular mechanisms of MEF2C in DLBCL are not fully investigated. By Sanger sequencing, we identified a novel point mutation of MEF2C at the p.N389 site in DLBCL patient, which was further validated by several DLBCL cell lines. Intriguingly, we found that the p.N389S mutation did not influence MEF2C expression, protein stability, and subcellular distribution, but enhanced its transcriptional activity. Furthermore, we demonstrated that MEF2C p.N389S mutation promotes DLBCL cell proliferation, cellular adhesion, and tumor formation in nude mice. On mechanism, our data revealed that MEF2C p.N389S mutation increases c-JUN expression, and c-JUN regulation mediated the oncogenic function of MEF2C p.N389S mutation on DLBCL cells. Our finding may provide a significant insight into the DLBCL and a compelling therapy target for this disease treatment."	"MiR-301a promotes embryonic stem cell differentiation to cardiomyocytes. Cardiovascular disease is the leading cause of death worldwide. Tissue repair after pathological injury in the heart remains a major challenge due to the limited regenerative ability of cardiomyocytes in adults. Stem cell-derived cardiomyocytes provide a promising source for the cell transplantation-based treatment of injured hearts. To explore the function and mechanisms of miR-301a in regulating cardiomyocyte differentiation of mouse embryonic stem (mES) cells, and provide experimental evidence for applying miR-301a to the cardiomyocyte differentiation induction from stem cells. mES cells with or without overexpression of miR-301a were applied for all functional assays. The hanging drop technique was applied to form embryoid bodies from mES cells. Cardiac markers including GATA-4, TBX5, MEF2C, and α-actinin were used to determine cardiomyocyte differentiation from mES cells. High expression of miR-301a was detected in the heart from late embryonic to neonatal mice. Overexpression of miR-301a in mES cells significantly induced the expression of cardiac transcription factors, thereby promoting cardiomyocyte differentiation and beating cardiomyocyte clone formation. PTEN is a target gene of miR-301a in cardiomyocytes. PTEN-regulated PI3K-AKT-mTOR-Stat3 signaling showed involvement in regulating miR-301a-promoted cardiomyocyte differentiation from mES cells. MiR-301a is capable of promoting embryonic stem cell differentiation to cardiomyocytes."	"Pulsed glucocorticoids enhance dystrophic muscle performance through epigenetic-metabolic reprogramming. In humans, chronic glucocorticoid use is associated with side effects like muscle wasting, obesity, and metabolic syndrome. Intermittent steroid dosing has been proposed in Duchenne Muscular Dystrophy patients to mitigate the side effects seen with daily steroid intake. We evaluated biomarkers from Duchenne Muscular Dystrophy patients, finding that, compared with chronic daily steroid use, weekend steroid use was associated with reduced serum insulin, free fatty acids, and branched chain amino acids, as well as reduction in fat mass despite having similar BMIs. We reasoned that intermittent prednisone administration in dystrophic mice would alter muscle epigenomic signatures, and we identified the coordinated action of the glucocorticoid receptor, KLF15 and MEF2C as mediators of a gene expression program driving metabolic reprogramming and enhanced nutrient utilization. Muscle lacking Klf15 failed to respond to intermittent steroids. Furthermore, coadministration of the histone acetyltransferase inhibitor anacardic acid with steroids in mdx mice eliminated steroid-specific epigenetic marks and abrogated the steroid response. Together, these findings indicate that intermittent, repeated exposure to glucocorticoids promotes performance in dystrophic muscle through an epigenetic program that enhances nutrient utilization."	"Neudesin Neurotrophic Factor Promotes Bovine Preadipocyte Differentiation and Inhibits Myoblast Myogenesis. Neudesin neurotrophic factor (NENF) is a secreted protein that is essential in multiple biological processes, including neural functions, adipogenesis, and tumorigenesis. In our previous study, NENF was significantly inhibited in the bovine adipocytes-myoblasts co-culture system. However, studies on NENF regulation of bovine muscle development and involvement in the cross-talk between adipose tissue and skeletal muscle have not been reported. Hence, the aim of this study was to clarify the functional roles of NENF in bovine preadipocytes and myoblasts. Real-time quantitative PCR (RT-qPCR) was performed to examine the spatial expression patterns of NENF in different tissues, and the results showed that NENF was highly expressed in the muscle of four-day-old and 24-month-old Qinchuan cattle. Compared with four-day-old Qinchuan cattle, the expression level of NENF was significantly up-regulated in 24-month-old bovine adipose tissue. To explore the roles of NENF in bovine myoblast and preadipocyte differentiation, small interfering RNA (siRNA) targeting the NENF gene were transfected into bovine preadipocytes and myoblasts to knock down the expression of the NENF gene. The results showed that the knockdown of NENF in differentiating adipocytes attenuated lipid accumulation, decreased the mRNA expression of adipogenic key marker genes PPARγ, CEBPα, CEBPβ, FASN, and SCD1, and decreased the protein expression of PPARγ, CEBPα, and FASN. The formation of myotubes was significantly accelerated, and the mRNA expression levels of myogenic marker genes MYOD1, MYF5, MYF6, MEF2A, MEF2C, and CKM, and the protein expression levels of MYOD1, MYF6, MEF2A, and CKM were up-regulated in myoblasts where NENF was knocked down. In short, the knockdown of NENF inhibited preadipocyte differentiation and promoted myoblast myogenesis."	"β-Adrenergic stimuli and rotating suspension culture enhance conversion of human adipogenic mesenchymal stem cells into highly conductive cardiac progenitors. Clinical trials using human adipogenic mesenchymal stem cells (hAdMSCs) for the treatment of cardiac diseases have shown improvement in cardiac function and were proven safe. However, hAdMSCs do not convert efficiently into cardiomyocytes (CMs) or vasculature. Thus, reprogramming hAdMSCs into myocyte progenitors may fare better in future investigations. To reprogramme hAdMSCs into electrically conductive cardiac progenitor cells, we pioneered a three-step reprogramming strategy that uses proven MESP1/ETS2 transcription factors, β-adrenergic and hypoxic signalling induced in three-dimensional (3D) cardiospheres. In Stage 1, ETS2 and MESP1 activated NNKX2.5, TBX5, MEF2C, dHAND, and GATA4 during the conversion of hAdMSCs into cardiac progenitor cells. Next, in Stage 2, β2AR activation repositioned cardiac progenitors into de novo immature conductive cardiac cells, along with the appearance of RYR2, CAV2.1, CAV3.1, NAV1.5, SERCA2, and CX45 gene transcripts and displayed action potentials. In Stage 3, electrical conduction that was fostered by 3D cardiospheres formed in a Synthecon®, Inc. rotating bioreactor induced the appearance of hypoxic genes: HIF-1α/β, PCG 1α/β, and NOS2, which coincided with the robust activation of adult contractile genes including MLC2v, TNNT2, and TNNI3, ion channel genes, and the appearance of hyperpolarization-activated and cyclic nucleotide-gated channels (HCN1-4). Conduction velocities doubled to ~200 mm/s after hypoxia and doubled yet again after dissociation of the 3D cell clusters to ~400 mm/s. By comparison, normal conduction velocities within working ventricular myocytes in the whole heart range from 0.5 to 1 m/s. Epinephrine stimulation of stage 3 cardiac cells in patches resulted in an increase in amplitude of the electrical wave, indicative of conductive cardiac cells. Our efficient protocol that converted hAdMSCs into highly conductive cardiac progenitors demonstrated the potential utilization of stage 3 cells for tissue engineering applications for cardiac repair."	"Zebrafish Vestigial Like Family Member 4b Is Required for Valvulogenesis Through Sequestration of Transcription Factor Myocyte Enhancer Factor 2c. A variety of cardiac transcription factors/cofactors, signaling pathways, and downstream structural genes integrate to form the regulatory hierarchies to ensure proper cardiogenesis in vertebrate. Major interaction proteins of the transcription cofactor vestigial like family member 4 (VGLL4) include myocyte enhancer factor 2 (MEF2) and TEA domain transcription factors (TEAD), both of which play important roles in embryonic cardiac development and in adulthood. In this study, we identified that the deficiency of zebrafish vgll4b paralog, a unique family member expressed in developing heart, led to an impaired valve development. Mechanistically, in vgll4b mutant embryos the disruption of Vgll4b-Mef2c complex, rather than that of Vgll4b-Tead complex, resulted in an aberrant expression of krüppel-like factor 2a (klf2a) in endocardium. Such misexpression of klf2a eventually evoked the valvulogenesis defects. Our findings suggest that zebrafish Vgll4b plays an important role in modulating the transcription activity of Mef2c on klf2a during valve development in a blood-flow-independent manner."	"A Five-microRNA Signature as Prognostic Biomarker in Colorectal Cancer by Bioinformatics Analysis. Mounting evidence has demonstrated that a lot of miRNAs are overexpressed or downregulated in colorectal cancer (CRC) tissues and play a crucial role in tumorigenesis, invasion, and migration. The aim of our study was to screen new biomarkers related to CRC prognosis by bioinformatics analysis. By using the R language edgeR package for the differential analysis and standardization of miRNA expression profiles from The Cancer Genome Atlas (TCGA), 502 differentially expressed miRNAs (343 up-regulated, 159 down-regulated) were screened based on the cut-off criteria of p &lt; 0.05 and |log2FC|&gt;1, then all the patients (421) with differentially expressed miRNAs and complete survival time, status were then randomly divided into train group (212) and the test group (209). Eight miRNAs with p &lt; 0.005 were revealed in univariate cox regression analysis of train group, then stepwise multivariate cox regression was applied for constituting a five-miRNA (hsa-miR-5091, hsa-miR-10b-3p, hsa-miR-9-5p, hsa-miR-187-3p, hsa-miR-32-5p) signature prognostic biomarkers with obviously different overall survival. Test group and entire group shown the same results utilizing the same prescient miRNA signature. The area under curve (AUC) of receiver operating characteristic (ROC) curve for predicting 5 years survival in train group, test group, and whole cohort were 0.79, 0.679, and 0.744, respectively, which demonstrated better predictive power of prognostic model. Furthermore, Univariate cox regression and multivariate cox regression considering other clinical factors displayed that the five-miRNA signature could serve as an independent prognostic factor. In order to predict the potential biological functions of five-miRNA signature, target genes of these five miRNAs were analyzed by Kyoto Encyclopedia of Genes and Genomes (KEGG) signaling pathway and Gene Ontology (GO) enrichment analysis. The top 10 hub genes (ESR1, ADCY9, MEF2C, NRXN1, ADCY5, FGF2, KITLG, GATA1, GRIA1, KAT2B) of target genes in protein protein interaction (PPI) network were screened by string database and Cytoscape 3.6.1 (plug-in cytoHubba). In addition, 19 of target genes were associated with survival prognosis. Taken together, the current study showed the model of five-miRNA signature could efficiently function as a novel and independent prognosis biomarker and therapeutic target for CRC patients."	"Methyl-CpG Binding Protein 2 in Alzheimer Dementia. Despite decades of research on Alzheimer disease, understanding the complexity of the genetic and molecular interactions involved in its pathogenesis remains far from our grasp. Methyl-CpG Binding Protein 2 (MeCP2) is an important epigenetic regulator enriched in the brain, and recent findings have implicated MeCP2 as a crucial player in Alzheimer disease. Here, we provide comprehensive insights into the pathophysiological roles of MeCP2 in Alzheimer disease. In particular, we focus on how the alteration of MeCP2 expression can impact Alzheimer disease through risk genes, amyloid-β and tau pathology, cell death and neurodegeneration, and cellular senescence. We suggest that Alzheimer disease can be adversely affected by upregulated MeCP2-dependent repression of risk genes (MEF2C, ADAM10, and PM20D1), increased tau accumulation, and neurodegeneration through neuronal cell death (excitotoxicity and apoptosis). In addition, we propose that the progression of Alzheimer disease could be caused by reduced MeCP2-mediated enhancement of astrocytic and microglial senescence and consequent glial SASP (senescence-associated secretory phenotype)-dependent neuroinflammation. We surmise that any imbalance in MeCP2 function would accelerate or cause Alzheimer disease pathogenesis, implying that MeCP2 may be a potential drug target for the treatment and prevention of Alzheimer disease."	"HDAC4 and 5 repression of TBX5 is relieved by protein kinase D1. TBX5 is a T-box family transcription factor that regulates heart and forelimb development in vertebrates and functional deficiencies in this protein result in Holt-Oram syndrome. Recently, we have shown that acetylation of TBX5 potentiates its activity and is important for heart and limb development. Here we report that class II histone deacetylases HDAC4 and HDAC5 associate with TBX5 and repress its role in cardiac gene transcription. Both HDAC4 and HDAC5 deacetylate TBX5, which promotes its relocation to the cytoplasm and HDAC4 antagonizes the physical association and functional cooperation between TBX5 and MEF2C. We also show that protein kinase D1 (PRKD1) relieves the HDAC4/5-mediated repression of TBX5. Thus, this study reveals a novel interaction of HDAC4/5 and PRKD1 in the regulation of TBX5 transcriptional activity."	"Establishing a new human hypertrophic cardiomyopathy-specific model using human embryonic stem cells. Symptom of ventricular hypertrophy caused by cardiac troponin T (TNNT2) mutations is mild, while patients often showed high incidence of sudden cardiac death. The 92nd arginine to glutamine mutation (R92Q) of cTnT was one of the mutant hotspots in hypertrophic cardiomyopathy (HCM). However, there are no such human disease models yet. To solve this problem, we generated TNNT2 R92Q mutant hESC cell lines (heterozygote or homozygote) using TALEN mediated homologous recombination in this study. After directed cardiac differentiation, we found a relative larger cell size in both heterozygous and homozygous TNNT2 R92Q hESC-cardiomyocytes. Expression of atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and sarcoplasmic reticulum Ca<sup>2+</sup>-ATPase2a (SERCA2a) were downregulated, while myocyte specific enhancer factor 2c (MEF2c) and the ratio of beta myosin to alpha myosin heavy chain (MYH7/MYH6) were increased in heterozygous TNNT2 R92Q hESC-cardiomyocytes. TNNT2 R92Q mutant cardiomyocytes exhibited efficient responses to heart-related pharmaceutical agents. We also found TNNT2 R92Q heterozygous mutant cardiomyocytes showed increased calcium sensitivity and contractility. Further, engineered heart tissues (EHTs) prepared by combining rat decellularized heart extracellular matrices with heterozygous R92Q mutant cardiomyocytes showed similar drug responses as to HCM patients and increased sensitivity to caspofungin-induced cardiotoxicity. Using RNA-sequencing of TNNT2 R92Q heterozygous mutant cardiomyocytes, we found dysregulation of calcium might participated in the early development of hypertrophy. Our hESC-derived TNNT2 R92Q mutant cardiomyocytes and EHTs are good in vitro human disease models for future disease studies and drug screening."	"Mitochondrial thioredoxin-2 maintains HCN4 expression and prevents oxidative stress-mediated sick sinus syndrome. Sick sinus syndrome (SSS) is associated with loss of HCN4 (hyperpolarization-activated cyclic nucleotide-gated potassium channel 4) function in the cardiac conduction system. The underlying mechanism for SSS remains elusive. This study is to investigate how mitochondrial oxidative stress induces HCN4 downregulation associated with in sick sinus syndrome. Trx2<sup>lox/lox</sup> mice were crossed with α-myosin heavy chain (α-Mhc)-Cre and Hcn4-CreER<sup>T2</sup> deleter mice to generate Trx2 deletion mice in the whole heart (Trx2cKO) and in the conduction system (Trx2ccsKO), respectively. Echocardiography was applied to measure hemodynamics and heart rhythm. Histological analyses, gene profiling and chromatin immunoprecipitation were performed to define the mechanism by which thioredoxin-2 (Trx2) regulates HCN4 expression and cardiac function. Trx2cKO mice displayed dilated cardiomyopathy, low heart rate, and atrial ventricular block (AVB) phenotypes. Immunofluorescence revealed that HCN4 expression was specifically reduced within the sinoatrial node in Trx2cKO mice. Interestingly, Trx2ccsKO mice displayed low heart rate and AVB without dilated cardiomyopathy. Both mRNA and protein levels of HCN4 were reduced in the sinoatrial node, suggesting transcriptional HCN4 regulation upon Trx2 deletion. ChIP indicated that the binding of MEF2 to the HCN4 enhancer was not altered by Trx2 deletion; however, histone 3 acetylation at the MEF2 binding site was decreased, and expression of histone deacetylase 4 (HDAC4) was elevated following Trx2 deletion. Moreover, HDAC4 binding to the HCN4 enhancer was mediated by MEF2. Mitochondrial ROS were increased by Trx2 deletion and importantly, mitochondria-specific ROS scavenger MitoTEMPO suppressed HDAC4 elevation, HCN4 reduction, and sinus bradycardia in Trx2ccsKO mice. In the conduction system, Trx2 is critical for maintaining HCN4-mediated normal heart rate. Loss of Trx2 reduces HCN4 expression via a mitochondrial ROS-HDAC4-MEF2C pathway and subsequently induces sick sinus syndrome in mice."	"Overexpression of Pygo2 Increases Differentiation of Human Umbilical Cord Mesenchymal Stem Cells into Cardiomyocyte-like Cells. Our previous studies have shown that Pygo (Pygopus) in Drosophila plays a critical role in adult heart function that is likely conserved in mammals. However, its role in the differentiation of human umbilical cord mesenchymal stem cells (hUC-MSCs) into cardiomyocytes remains unknown. To investigate the role of pygo2 in the differentiation of hUC-MSCs into cardiomyocytes. Third passage hUC-MSCs were divided into two groups: a p+ group infected with the GV492-pygo2 virus and a p- group infected with the GV492 virus. After infection and 3 or 21 days of incubation, Quantitative real-time PCR (qRT-PCR) was performed to detect pluripotency markers, including OCT-4 and SOX2. Nkx2.5, Gata-4 and cTnT were detected by immunofluorescence at 7, 14 and 21 days post-infection, respectively. Expression of cardiac-related genes-including Nkx2.5, Gata-4, TNNT2, MEF2c, ISL-1, FOXH1, KDR, αMHC and α-Actin-were analyzed by qRT-PCR following transfection with the virus at one, two and three weeks. After three days of incubation, there were no significant changes in the expression of the pluripotency stem cell markers OCT-4 and SOX2 in the p+ group hUC-MSCs relative to controls (OCT-4: 1.03 ± 0.096 VS 1, P &gt; 0.05, SOX2: 1.071 ± 0.189 VS 1, P &gt; 0.05); however, after 21 days, significant decreases were observed (OCT-4: 0.164 ± 0.098 VS 1, P &lt; 0.01, SOX2: 0.209 ± 0.109 VS 1, P &lt; 0.001). Seven days following incubation, expression of mesoderm specialisation markers, such as Nkx2.5, Gata-4, MEF2c and KDR, were increased; at 14 days following incubation, expression of cardiac genes, such as Nkx2.5, Gata-4, TNNT2, MEF2c, ISL-1, FOXH1, KDR, αMHC and α-Actin, were significantly upregulated in the p+ group relative to the p- group (P &lt; 0.05). Taken together, these findings suggest that overexpression of pygo2 results in more hUCMSCs gradually differentiating into cardiomyocyte-like cells. We are the first to show that overexpression of pygo2 significantly enhances the expression of cardiac-genic genes, including Nkx2.5 and Gata-4, and promotes the differentiation of hUC-MSCs into cardiomyocyte-like cells."	"G9α-dependent histone H3K9me3 hypomethylation promotes overexpression of cardiomyogenesis-related genes in foetal mice. Alcohol consumption during pregnancy can cause foetal alcohol syndrome and congenital heart disease. Nonetheless, the underlying mechanism of alcohol-induced cardiac dysplasia remains unknown. We previously reported that alcohol exposure during pregnancy can cause abnormal expression of cardiomyogenesis-related genes, and histone H3K9me3 hypomethylation was observed in alcohol-treated foetal mouse heart. Hence, an imbalance in histone methylation may be involved in alcohol-induced cardiac dysplasia. In this study, we investigated the involvement of G9α histone methyltransferase in alcohol-induced cardiac dysplasia in vivo and in vitro using heart tissues of foetal mice and primary cardiomyocytes of neonatal mice. Western blotting revealed that alcohol caused histone H3K9me3 hypomethylation by altering G9α histone methyltransferase expression in cardiomyocytes. Moreover, overexpression of cardiomyogenesis-related genes (MEF2C, Cx43, ANP and β-MHC) was observed in alcohol-exposed foetal mouse heart. Additionally, we demonstrated that G9α histone methyltransferase directly interacted with histone H3K9me3 and altered its methylation. Notably, alcohol did not down-regulate H3K9me3 methylation after G9α suppression by short hairpin RNA in primary mouse cardiomyocytes, preventing MEF2C, Cx43, ANP and β-MHC overexpression. These findings suggest that G9α histone methyltransferase-mediated imbalance in histone H3K9me3 methylation plays a critical role in alcohol-induced abnormal expression cardiomyogenesis-related genes during pregnancy. Therefore, G9α histone methyltransferase may be an intervention target for congenital heart disease."	"Effects of aerobic and inspiratory training on skeletal muscle microRNA-1 and downstream-associated pathways in patients with heart failure. The exercise intolerance in chronic heart failure with reduced ejection fraction (HFrEF) is mostly attributed to alterations in skeletal muscle. However, the mechanisms underlying the skeletal myopathy in patients with HFrEF are not completely understood. We hypothesized that (i) aerobic exercise training (AET) and inspiratory muscle training (IMT) would change skeletal muscle microRNA-1 expression and downstream-associated pathways in patients with HFrEF and (ii) AET and IMT would increase leg blood flow (LBF), functional capacity, and quality of life in these patients. Patients age 35 to 70 years, left ventricular ejection fraction (LVEF) ≤40%, New York Heart Association functional classes II-III, were randomized into control, IMT, and AET groups. Skeletal muscle changes were examined by vastus lateralis biopsy. LBF was measured by venous occlusion plethysmography, functional capacity by cardiopulmonary exercise test, and quality of life by Minnesota Living with Heart Failure Questionnaire. All patients were evaluated at baseline and after 4 months. Thirty-three patients finished the study protocol: control (n = 10; LVEF = 25 ± 1%; six males), IMT (n = 11; LVEF = 31 ± 2%; three males), and AET (n = 12; LVEF = 26 ± 2%; seven males). AET, but not IMT, increased the expression of microRNA-1 (P = 0.02; percent changes = 53 ± 17%), decreased the expression of PTEN (P = 0.003; percent changes = -15 ± 0.03%), and tended to increase the p-AKT<sup>ser473</sup> /AKT ratio (P = 0.06). In addition, AET decreased HDAC4 expression (P = 0.03; percent changes = -40 ± 19%) and upregulated follistatin (P = 0.01; percent changes = 174 ± 58%), MEF2C (P = 0.05; percent changes = 34 ± 15%), and MyoD expression (P = 0.05; percent changes = 47 ± 18%). AET also increased muscle cross-sectional area (P = 0.01). AET and IMT increased LBF, functional capacity, and quality of life. Further analyses showed a significant correlation between percent changes in microRNA-1 and percent changes in follistatin mRNA (P = 0.001, rho = 0.58) and between percent changes in follistatin mRNA and percent changes in peak VO2 (P = 0.004, rho = 0.51). AET upregulates microRNA-1 levels and decreases the protein expression of PTEN, which reduces the inhibitory action on the PI3K-AKT pathway that regulates the skeletal muscle tropism. The increased levels of microRNA-1 also decreased HDAC4 and increased MEF2c, MyoD, and follistatin expression, improving skeletal muscle regeneration. These changes associated with the increase in muscle cross-sectional area and LBF contribute to the attenuation in skeletal myopathy, and the improvement in functional capacity and quality of life in patients with HFrEF. IMT caused no changes in microRNA-1 and in the downstream-associated pathway. The increased functional capacity provoked by IMT seems to be associated with amelioration in the respiratory function instead of changes in skeletal muscle. ClinicalTrials.gov (Identifier: NCT01747395)."	"Differential DNA Methylation of Networked Signaling, Transcriptional, Innate and Adaptive Immunity, and Osteoclastogenesis Genes and Pathways in Gout. In gout, autoinflammatory responses to urate crystals promote acute arthritis flares, but the pathogeneses of tophi, chronic synovitis, and erosion are less well understood. Defining the pathways of epigenomic immunity training can reveal novel pathogenetic factors and biomarkers. The present study was undertaken to seminally probe differential DNA methylation patterns utilizing epigenome-wide analyses in patients with gout. Peripheral blood mononuclear cells (PBMCs) were obtained from a San Diego cohort of patients with gout (n = 16) and individually matched healthy controls (n = 14). PBMC methylome data were processed with ChAMP package in R. ENCODE data and Taiji data analysis software were used to analyze transcription factor (TF)-gene networks. As an independent validation cohort, whole blood DNA samples from New Zealand Māori subjects (n = 13 patients with gout, n = 16 control subjects without gout) were analyzed. Differentially methylated loci clearly separated gout patients from controls, as determined by hierarchical clustering and principal components analyses. IL23R, which mediates granuloma formation and cell invasion, was identified as one of the multiple differentially methylated gout risk genes. Epigenome-wide analyses revealed differential methylome pathway enrichment for B and T cell receptor signaling, Th17 cell differentiation and interleukin-17 signaling, convergent longevity regulation, circadian entrainment, and AMP-activated protein kinase signaling, which are pathways that impact inflammation via insulin-like growth factor 1 receptor, phosphatidylinositol 3-kinase/Akt, NF-κB, mechanistic target of rapamycin signaling, and autophagy. The gout cohorts overlapped for 37 (52.9%) of the 70 TFs with hypomethylated sequence enrichment and for 30 (78.9%) of the 38 enriched KEGG pathways identified via TFs. Evidence of shared differentially methylated gout TF-gene networks, including the NF-κB activation-limiting TFs MEF2C and NFATC2, pointed to osteoclast differentiation as the most strongly weighted differentially methylated pathway that overlapped in both gout cohorts. These findings of differential DNA methylation of networked signaling, transcriptional, innate and adaptive immunity, and osteoclastogenesis genes and pathways suggest that they could serve as novel therapeutic targets in the management of flares, tophi, chronic synovitis, and bone erosion in patients with gout."	"MiR-21, MiR-29a, GATA4, and MEF2c Expression Changes in Endothelin-1 and Angiotensin II Cardiac Hypertrophy Stimulated Isl-1<sup>+</sup>Sca-1<sup>+</sup>c-kit<sup>+</sup> Porcine Cardiac Progenitor Cells In Vitro. Cost- and time-intensive porcine translational disease models offer great opportunities to test drugs and therapies for pathological cardiac hypertrophy and can be supported by porcine cell culture models that provide further insights into basic disease mechanisms. Cardiac progenitor cells (CPCs) residing in the adult heart have been shown to differentiate in vitro into cardiomyocytes and could contribute to cardiac regeneration. Therefore, it is important to evaluate their changes on the cellular level caused by disease. We successfully isolated Isl1<sup>+</sup>Sca1<sup>+</sup>cKit<sup>+</sup> porcine CPCs (pCPCs) from pig hearts and stimulated them with endothelin-1 (ET-1) and angiotensin II (Ang II) in vitro. We also performed a cardiac reprogramming transfection and tested the same conditions. Our results show that undifferentiated Isl1<sup>+</sup>Sca1<sup>+</sup>cKit<sup>+</sup> pCPCs were significantly upregulated in GATA4, MEF2c, and miR-29a gene expressions and in BNP and MCP-1 protein expressions with Ang II stimulation, but they showed no significant changes in miR-29a and MCP-1 when stimulated with ET-1. Differentiated Isl1<sup>+</sup>Sca1<sup>+</sup>cKit<sup>+</sup> pCPCs exhibited significantly higher levels of MEF2c, GATA4, miR-29a, and miR-21 as well as Cx43 and BNP with Ang II stimulation. pMx-MGT-transfected Isl1<sup>+</sup>Sca1<sup>+</sup>cKit<sup>+</sup> pCPCs showed significant elevations in MEF2c, GATA4, and BNP expressions when stimulated with ET-1. Our model demonstrates that in vitro stimulation leads to successful Isl1<sup>+</sup>Sca1<sup>+</sup>cKit<sup>+</sup> pCPC hypertrophy with upregulation of cardiac remodeling associated genes and profibrotic miRNAs and offers great possibilities for further investigations of disease mechanisms and treatment."	"Salt-inducible kinase inhibition suppresses acute myeloid leukemia progression in vivo. Lineage-defining transcription factors (TFs) are compelling targets for leukemia therapy, yet they are among the most challenging proteins to modulate directly with small molecules. We previously used CRISPR screening to identify a salt-inducible kinase 3 (SIK3) requirement for the growth of acute myeloid leukemia (AML) cell lines that overexpress the lineage TF myocyte enhancer factor (MEF2C). In this context, SIK3 maintains MEF2C function by directly phosphorylating histone deacetylase 4 (HDAC4), a repressive cofactor of MEF2C. In this study, we evaluated whether inhibition of SIK3 with the tool compound YKL-05-099 can suppress MEF2C function and attenuate disease progression in animal models of AML. Genetic targeting of SIK3 or MEF2C selectively suppressed the growth of transformed hematopoietic cells under in vitro and in vivo conditions. Similar phenotypes were obtained when cells were exposed to YKL-05-099, which caused cell-cycle arrest and apoptosis in MEF2C-expressing AML cell lines. An epigenomic analysis revealed that YKL-05-099 rapidly suppressed MEF2C function by altering the phosphorylation state and nuclear localization of HDAC4. Using a gatekeeper allele of SIK3, we found that the antiproliferative effects of YKL-05-099 occurred through on-target inhibition of SIK3 kinase activity. Based on these findings, we treated 2 different mouse models of MLL-AF9 AML with YKL-05-099, which attenuated disease progression in vivo and extended animal survival at well-tolerated doses. These findings validate SIK3 as a therapeutic target in MEF2C-addicted AML and provide a rationale for developing druglike inhibitors of SIK3 for definitive preclinical investigation and for studies in human patients."	"Differential chamber-specific expression and regulation of long non-coding RNAs during cardiac development. Cardiovascular development is governed by a complex interplay between inducting signals such as Bmps and Fgfs leading to activation of cardiac specific transcription factors such as Nkx2.5, Mef2c and Srf that orchestrate the initial steps of cardiogenesis. Over the last decade we have witnessed the discovery of novel layers of gene regulation, i.e. post-transcriptional regulation exerted by non-coding RNAs. The function role of small non coding RNAs has been widely demonstrated, e.g. miR-1 knockout display several cardiovascular abnormalities during embryogenesis. More recently long non-coding RNAs have been also reported to modulate gene expression and function in the developing heart, as exemplified by the embryonic lethal phenotypes of Fendrr and Braveheart knock out mice, respectively. In this study, we investigated the differential expression profile during cardiogenesis of previously reported lncRNAs in heart development. Our data revealed that Braveheart, Fendrr, Carmen display a preferential adult expression while Miat, Alien, H19 preferentially display chamber-specific expression at embryonic stages. We also demonstrated that these lncRNAs are differentially regulated by Nkx2.5, Srf and Mef2c, Pitx2 &gt; Wnt &gt; miRNA signaling pathway and angiotensin II and thyroid hormone administration. Importantly isoform-specific expression and distinct nuclear vs cytoplasmic localization of Braveheart, Carmen and Fendrr during chamber morphogenesis is observed, suggesting distinct functional roles of these lncRNAs in atrial and ventricular chambers. Furthermore, we demonstrate by in situ hybridization a dynamic epicardial, myocardial and endocardial expression of H19 during cardiac development. Overall our data support novel roles of these lncRNAs in different temporal and tissue-restricted fashion during cardiogenesis."	"Human Endometrial Transcriptome and Progesterone Receptor Cistrome Reveal Important Pathways and Epithelial Regulators. Poor uterine receptivity is one major factor leading to pregnancy loss and infertility. Understanding the molecular events governing successful implantation is hence critical in combating infertility. To define Progesterone Receptor (PGR)-regulated molecular mechanisms and epithelial roles in receptivity. RNA-sequencing and PGR-ChIP-seq were conducted in parallel to identify PGR-regulated pathways during the Window of implantation (WOI) in endometrium of fertile women. Endometrial biopsies from the proliferative and mid-secretory phases were analyzed. Participants were fertile, reproductive aged (18-37 years) women with normal cycle length, and without any history of dysmenorrhea, infertility, or irregular cycles. In total, 42 endometrial biopsies obtained from 42 women were analyzed in this study. There were no interventions during this study. Here we measured the alterations in gene expression and PGR occupancy in the genome during the WOI, based on the hypothesis that PGR binds uterine chromatin cycle dependently to regulate genes involved in uterine cell differentiation and function. 653 genes were identified with regulated PGR binding and differential expression during the WOI. These were involved in regulating inflammatory response, xenobiotic metabolism, epithelial mesenchymal transition, cell death, interleukin/Signal Transducer And Activator Of Transcription (STAT) signaling, estrogen response, and Mammalian target of rapamycin complex 1 (MTORC1) response. Transcriptome of the epithelium identified 3052 differentially expressed genes, of which 658 were uniquely regulated. Transcription factors Interferon Regulatory Factor 8 (IRF8) and Myocyte Enhancer Factor 2C (MEF2C) were found to be regulated in the epithelium during the WOI at the protein level, suggesting potentially important functions that are previously unrecognized. PGR binds the genomic regions of genes regulating critical processes in uterine receptivity and function."	"Characterizing the effects of in utero exposure to valproic acid on murine fetal heart development. Recently, the use of the antiepileptic drug valproic acid (VPA) for the treatment of psychiatric conditions has been on the rise. However, studies have shown that in utero VPA exposure can affect embryonic development, including being associated with congenital heart defects. One proposed mechanism of VPA-initiated teratogenicity is the inhibition of histone deacetylase, which is involved in the regulation of transcription factors that regulate cardiogenesis. Myocyte enhancing factor 2C (Mef2c), a transcription factor involved in the development of cardiac structure and cardiomyocyte differentiation, has been shown to increase in response to in utero VPA exposure, associating with contractile dysfunction and myocardial disorganization. To characterize the effects of VPA on murine heart development, pregnant CD-1 mice were dosed with 400 mg/kg of VPA on gestational day (GD) 9. Using high-resolution ultrasound, we examined the effects of VPA on cardiac contractile function on GD 14-18, with fetal hearts being harvested on GD 19 for histological analysis. Lastly, we conducted quantitative real-time polymerase chain reaction to measure the relative Mef2c gene expression in GD 16 murine hearts. We observed structural anomalies at GD 19 in the hearts of VPA-treated mice. Additionally, our results showed alterations in measures of cardiac contractility, with a decrease or increase in cardiac contractile ability in VPA-treated mice depending on the GD and measurement taken. These results further characterize the effects of VPA on heart development and suggest that alterations in Mef2c gene expression, at least on GD 16, do not mediate VPA-induced cardiotoxicity in CD-1 mice."	"A reference map of murine cardiac transcription factor chromatin occupancy identifies dynamic and conserved enhancers. Mapping the chromatin occupancy of transcription factors (TFs) is a key step in deciphering developmental transcriptional programs. Here we use biotinylated knockin alleles of seven key cardiac TFs (GATA4, NKX2-5, MEF2A, MEF2C, SRF, TBX5, TEAD1) to sensitively and reproducibly map their genome-wide occupancy in the fetal and adult mouse heart. These maps show that TF occupancy is dynamic between developmental stages and that multiple TFs often collaboratively occupy the same chromatin region through indirect cooperativity. Multi-TF regions exhibit features of functional regulatory elements, including evolutionary conservation, chromatin accessibility, and activity in transcriptional enhancer assays. H3K27ac, a feature of many enhancers, incompletely overlaps multi-TF regions, and multi-TF regions lacking H3K27ac retain conservation and enhancer activity. TEAD1 is a core component of the cardiac transcriptional network, co-occupying cardiac regulatory regions and controlling cardiomyocyte-specific gene functions. Our study provides a resource for deciphering the cardiac transcriptional regulatory network and gaining insights into the molecular mechanisms governing heart development."	"Stoichiometric optimization of Gata4, Hand2, Mef2c, and Tbx5 expression for contractile cardiomyocyte reprogramming. Reprogramming of fibroblasts to induced cardiomyocyte-like cells (iCMs) offers potential strategies for new cardiomyocyte generation. However, a major challenge of this approach remains its low efficiency for contractile iCMs. Here, we showed that controlled stoichiometric expression of Gata4 (G), Hand2 (H), Mef2c (M), and Tbx5 (T) significantly enhanced contractile cardiomyocyte reprogramming over previously defined stoichiometric expression of GMT or uncontrolled expression of GHMT. We generated quad-cistronic vectors expressing distinct relative protein levels of GHMT within the context of a previously defined splicing order of M-G-T with high Mef2c level. Transduction of the quad-cistronic vector with a splicing order of M-G-T-H (referred to as M-G-T-H) inducing relatively low Hand2 and high Mef2c protein levels not only increased sarcomeric protein induction, but also markedly promoted the development of contractile structures and functions in fibroblasts. The expressed Gata4 and Tbx5 protein levels by M-G-T-H transduction were relatively higher than those by transductions of other quad-cistronic vectors, but lower than those by previously defined M-G-T tri-cistronic vector transduction. Taken together, our results demonstrate the stoichiometric requirement of GHMT expression for structural and functional progresses of cardiomyocyte reprogramming and provide a new basic tool-set for future studies."	"Induced cardiomyocyte maturation: Cardiac transcription factors are necessary but not sufficient. The process by which fibroblasts are directly reprogrammed into cardiomyocytes involves two stages; initiation and maturation. Initiation represents the initial expression of factors that induce fibroblasts to transdifferentiate into cardiomyocytes. Following initiation, the cell undergoes a period of maturation before becoming a mature cardiomyocyte. We wanted to understand the role of cardiac development transcription factors in the maturation process. We directly reprogram fibroblasts into cardiomyocytes by a combination of miRNAs (miR combo). The ability of miR combo to induce cardiomyocyte-specific genes in fibroblasts was lost following the knockdown of the cardiac transcription factors Gata4, Mef2C, Tbx5 and Hand2 (GMTH). To further clarify the role of GMTH in miR combo reprogramming we utilized a modified CRISPR-Cas9 approach to activate endogenous GMTH genes. Importantly, both miR combo and the modified CRISPR-Cas9 approach induced comparable levels of GMTH expression. While miR combo was able to reprogram fibroblasts into cardiomyocyte-like cells, the modified CRISPR-Cas9 approach could not. Indeed, we found that cardiomyocyte maturation only occurred with very high levels of GMT expression. Taken together, our data indicates that while endogenous cardiac transcription factors are insufficient to reprogram fibroblasts into mature cardiomyocytes, endogenous cardiac transcription factors are necessary for expression of maturation genes."	"Transcriptional characterisation of human lung cells identifies novel mesenchymal lineage markers. The lung mesenchyme gives rise to multiple distinct lineages of cells in the mature respiratory system, including smooth muscle cells of the airway and vasculature. However, a thorough understanding of the specification and mesenchymal cell diversity in the human lung is lacking. We completed single-cell RNA sequencing analysis of fetal human lung tissues. Canonical correlation analysis, clustering, cluster marker gene identification and t-distributed stochastic neighbour embedding representation was performed in Seurat. Cell populations were annotated using ToppFun. Immunohistochemistry and in situ hybridisation were used to validate spatiotemporal gene expression patterns for key marker genes. We identified molecularly distinct populations representing &quot;committed&quot; fetal human lung endothelial cells, pericytes and smooth muscle cells. Early endothelial lineages expressed &quot;classic&quot; endothelial cell markers (platelet endothelial cell adhesion molecule/CD31 and claudin 5), while pericytes expressed platelet-derived growth factor receptor-β, Thy-1 membrane glycoprotein and basement membrane molecules (collagen IV, laminin and proteoglycans). We observed a large population of &quot;nonspecific&quot; human lung mesenchymal progenitor cells characterised by expression of collagen I and multiple elastin fibre genes (ELN, MFAP2 and FBN1). We closely characterised the diversity of mesenchymal lineages defined by α2-smooth muscle actin (ACTA2) expression. Two cell populations, with the highest levels of ACTA2 transcriptional activity, expressed unique sets of markers associated with airway or vascular smooth muscle cells. Spatiotemporal analysis of these marker genes confirmed early and persistent spatial specification of airway (HHIP, MYLK and IGF1) and vascular (NTRK3 and MEF2C) smooth muscle cells in the developing human lung. Our data suggest that specification of distinct airway and vascular smooth muscle cell phenotypes is established early in development and can be identified using the markers we provide."	"CAIII expression in skeletal muscle is regulated by Ca<sup>2+</sup>-CaMKII-MEF2C signaling. Carbonic anhydrase III (CAIII) is selectively expressed in slow-twitch myofibers in skeletal muscle. The fast-twitch to slow-twitch transformation of myofibers following denervation is accompanied by increased CAIII expression, suggesting that the effects of nerve impulses on skeletal-muscle remodeling influence CAIII expression. Here, we determined the molecular mechanisms underlying the effects of nerve conduction on CAIII expression. The results indicated that changes in skeletal-muscle [Ca<sup>2+</sup>]i altered CAIII expression. Moreover, results from the RNA-interference and over-expression experiments identified myocyte enhancer factor 2C (MEF2C) as the key transcription factor regulating [Ca<sup>2+</sup>]i-mediated changes in CAIII transcription. Additionally, chromatin immunoprecipitation experiments and luciferase assays confirmed MEF2C interaction and direct binding of the CAIII promoter between -416 and -200 base pair. Investigations of upstream cytoplasmic signaling pathways responsible for MEF2C activation revealed Ca<sup>2+</sup>/calmodulin-dependent protein kinase II (CaMKII) as the key factor involved in MEF2C-mediated regulation of CAIII expression. This study demonstrates that the Ca<sup>2+</sup>-CaMKII-MEF2C signaling pathway is the key factor involved in regulating CAIII expression in skeletal muscle. These results provide a theoretical basis supporting further investigations of changes in CAIII levels under different pathophysiological conditions and will facilitate a broader understanding of the biological functions of CAIII."	"Exogenous pyruvate represses histone gene expression and inhibits cancer cell proliferation via the NAMPT-NAD+-SIRT1 pathway. Pyruvate is a glycolytic metabolite used for energy production and macromolecule biosynthesis. However, little is known about its functions in tumorigenesis. Here, we report that exogenous pyruvate inhibits the proliferation of different types of cancer cells. This inhibitory effect of pyruvate on cell growth is primarily attributed to its function as a signal molecule to repress histone gene expression, which leads to less compact chromatin and misregulation of genome-wide gene expression. Pyruvate represses histone gene expression by inducing the expression of NAD+ biosynthesis enzyme, nicotinamide phosphoribosyltransferase (NAMPT) via myocyte enhancer factor 2C (MEF2C), which then increases NAD+ levels and activates the histone deacetylase activity of SIRT1. Chromatin immunoprecipitation analysis indicates that pyruvate enhances SIRT1 binding at histone gene promoters where it reduces histone acetylation. Although pyruvate delays cell entry into S phase, pyruvate represses histone gene expression independent of cell cycle progression. Moreover, we find that administration of pyruvate reduces histone expression and retards tumor growth in xenograft mice without significant side effects. Using tissues from cervical and lung cancer patients, we find intracellular pyruvate concentrations inversely correlate with histone protein levels. Together, we uncover a previously unknown function of pyruvate in regulating histone gene expression and cancer cell proliferation."	"Key Regulators of Cardiovascular Differentiation and Regeneration: Harnessing the Potential of Direct Reprogramming to Treat Heart Failure. Cardiovascular diseases remain a leading cause of death worldwide, with the number of patients with heart failure increasing rapidly in aging societies. As adult cardiomyocytes are terminally differentiated cells and opportunities for heart transplantation are very limited, regenerative medicine may become a game changer in heart failure treatment. To develop strategies for generating cardiomyocytes, vascular cells, and other supporting cells, it is necessary to understand the mechanism of cardiovascular differentiation during development and from pluripotent stem cells. Master regulators for cardiovascular differentiation can generate new cardiomyocytes and vascular cells directly from other differentiated cells such as fibroblasts. Fibroblasts can be directly reprogrammed into cardiomyocytes by overexpressing a combination of 3 cardiac-specific transcription factors (Gata4, Mef2c, Tbx5) both in vitro and in vivo, which restores cardiac function after myocardial infarction in mice. Moreover, a direct reprogramming-based approach can be used to identify new key regulators of the cardiovascular mesoderm, which can differentiate into all 3 types of cardiovascular cells including cardiomyocytes, endothelial cells, and smooth muscle cells. This review provides a perspective on how key regulators for cardiovascular differentiation and regeneration can be identified and used to develop new treatments for heart failure."	"Dysregulated mitogen-activated protein kinase pathway mediated cell cycle disruption in sporadic parathyroid tumors. The study was designed to evaluate expression profiling of mitogen-activated protein kinase (MAPK) signalling pathway genes in sporadic parathyroid adenoma. Expression of MAPK signalling pathway genes including activated transcription factors and cell cycle regulatory genes was analysed by real-time PCR- based array in parathyroid adenoma (N = 20) and normal parathyroid tissue (N = 4). MAPK signalling pathway as studied by PCR array revealed that a total of 22 genes were differentially expressed (≥ twofold change, p ≤ 0.05) in parathyroid adenoma. Up-regulated genes were ARAF, MAPK12, CREBBP, MYC, HSPB1, HRAS, CDK4, CCND1, and E2F1, and down-regulated genes were MAP4K1, DLK1, MAP3K4, MAPK10, MAPK8, ATF2, SMAD4, MEF2C, LAMTOR3, FOS, CDKN2A CDKN2B, and RB1. The present study revealed that ERK1/2 signalling pathway with up-regulation of HRAS, ARAF, and MEK1 genes and up-regulation of positive regulators of cell cycle (CCND1, CDK4, and E2F1) and down-regulation negative regulators of cell cycle (CDKN2A, CDKN2B, and RB1) made highly dysregulated MAPK signalling pathway in parathyroid adenoma. Expression of CDK4 was positively associated with plasma PTH level (r = 0.60, p = 0.04) and tumor weight (r = 0.80, p = 0.02) of the adenoma patients, respectively. Expression of CDKN2A was correlated negatively with PTH level (r = - 0.52, p = 0.04) of the adenoma patients. The current study revealed that ERK pathway and associated cell cycle regulator genes are dysregulated in sporadic parathyroid adenoma."	"Hypoxia Activates the PTHrP -MEF2C Pathway to Attenuate Hypertrophy in Mesenchymal Stem Cell Derived Cartilage. Articular cartilage lacks an intrinsic repair capacity and due to the ability of mesenchymal stem cells (MSCs) to differentiate into chondrocytes, MSCs have been touted as a cellular source to regenerate damaged cartilage. However, a number of prevailing concerns for such a treatment remain. Generally, administration of MSCs into a cartilage defect results in poor regeneration of the damaged cartilage with the repaired cartilage consisting primarily of fibro-cartilage rather than hyaline cartilage. Methods that improve the chondrogenic potential of transplanted MSCs in vivo may be advantageous. In addition, the proclivity of MSC-derived cartilage to undergo hypertrophic differentiation or form bone in vivo also remains a clinical concern. If MSC-derived cartilage was to undergo hypertrophic differentiation in vivo, this would be deleterious in a clinical setting. This study focuses on establishing a mechanism of action by which hypoxia or low oxygen tension can be used to both enhance chondrogenesis and attenuate hypertrophic differentiation of both MSC and ATDC5 derived chondrocytes. Having elucidated a novel mechanism of action, the subsequent goals of this study were to develop an in vitro culture regime to mimic the beneficial effects of physiological low oxygen tension in a normoxic environment."	"Rett and Rett-like syndrome: Expanding the genetic spectrum to KIF1A and GRIN1 gene. This study aimed to investigate the new genetic etiologies of Rett syndrome (RTT) or Rett-like phenotypes. Targeted next-generation sequencing (NGS) was performed on 44 Chinese patients with RTT or Rett-like phenotypes, in whom genetic analysis of MECP2, CDKL5, and FOXG1 was negative. The detection rate was 31.8% (14/44). A de novo pathogenic variant (c.275_276ins AA, p. Cys92*) of KIF1A was identified in a girl with all core features of typical RTT. A patient with atypical RTT was detected having de novo GRIN1 pathogenic variant (c.2337C &gt; A, p. Val793Phe). Additionally, compound heterozygous pathogenic variants of PPT1 gene were detected in a girl, who initially displayed typical RTT features, but progressed into neuronal ceroid lipofuscinoses (NCL) afterwards. Pathogenic variants in KCNQ2, MEF2C, WDR45, TCF4, IQSEC2, and SDHA were also found in our cohort. It is the first time that pathogenic variants of GRIN1 and KIF1A were linked to RTT and Rett-like profiles. Our findings expanded the genetic heterogeneity of Chinese RTT or Rett-like patients, and also suggest that some patients with genetic metabolic disease such as NCL, might displayed Rett features initially, and clinical follow-up is essential for the diagnosis."	"Non-invasive prenatal testing reveals copy number variations related to pregnancy complications. Pregnancy complications could lead to maternal and fetal morbidity and mortality. Early diagnosing and managing complications have been associated with good outcomes. The placenta was an important organ for development of pregnancy complications. Thus, non-invasive prenatal testing technologies could detect genetic variations, such as aneuploidies and sub-chromosomal copy number variations, reflecting defective placenta by maternal plasma cffDNAs. Maternal cffDNAs had been proved to derive from trophoblast cells of placenta. In order to find out the relationship between genetic variations and pregnancy complications, we reviewed NIPT results for subchromosomal copy number variations in a cohort of 3890 pregnancies without complications and 441 pregnancies with pregnancy complications including gestational diabetes mellitus (GDM), pregnancy-induced hypertension (PIH), preterm prelabor rupture of membranes (PPROM) and placenta implantation abnormalities (PIA). For GDMs, we identified three CNV regions containing some members of alpha- and beta-defensins, such as DEFA1, DEFA3, DEFB1. For PIHs, we found three duplication and one deletion region including Pcdhα, Pcdhβ, and Pcdhγ, known as protocadherins, which were complicated by hypertensive disorders. For PPROMs and PIAs, we identified one and two CNV regions, respectively. SFTPA2, SFTPD and SFTPA1, belonging to surfactant protein, was considered to moderated the inflammatory activation within the fetal extra-embryonic compartment, associated to duration of preterm prelabor rupture of fetal membranes, while MEF2C and TM6SF1 could be involved in trophoblast invasion and differentiation. Our findings gave a clue to correlation between genetic variations of maternal cell-free DNAs and pregnancy complications."	"Administration of SB239063 Ameliorates Ovariectomy-Induced Bone Loss via Suppressing Osteoclastogenesis in Mice. Activation of osteoclast formation and function is crucial for the development of osteolytic diseases such as osteoporosis. RANKL (receptor activator of nuclear factor-κB ligand) activates NF-κB (nuclear factor κB), MAPK (mitogen-activated protein kinase), and NFATc1 (nuclear factor of activated T-cells, cytoplasmic 1) signaling pathways to induce osteoclastogenesis. In this study, we demonstrated that SB239063, a p38-specific inhibitor, suppressed osteoclastogenesis and bone resorption via inhibiting phosphorylation of MEF2C (myocyte enhancer factor 2C) and subsequently leading to MEF2C degradation by ubiquitination. Knockdown of MEF2C impaired osteoclast formation due to decreased c-Fos expression. Furthermore, MEF2C can directly bind to the promoter region of c-Fos to initiate its transcription. Interestingly, overexpression of either MEF2C or c-Fos can partially rescue the inhibitory effect of SB239063 on osteoclastogenesis. In addition, in vivo data proved that SB239063 also played a preventive role in both LPS (lipopolysaccharide)- and OVX (ovariectomy)-induced bone loss in mice. In conclusion, our results show that SB239063 can be a potential therapy for osteolytic diseases, and a novel p38/MEF2C/c-Fos axis is essential for osteoclastogenesis."	"Topically applied adipose-derived mesenchymal stem cell treatment in experimental focal cerebral ischemia. In this study, the neuro-modulation effect of topical mesenchymal stem cells (MSCs) was tested in a rodent middle carotid artery occlusion (MCAO) model. Twenty-four hours after MCAO, craniotomy was made and 0.8 × 10<sup>6</sup> GFP-MSCs were topically applied to the exposed parietal cortex. The MSCs were fixed in position by a thin layer of fibrin glue (N = 30). In the control group, saline were topically applied to the ipsilateral parietal cortex (N = 30). Three days after topical application, few GFP-positive cells were found in the ischemic penumbra. They expressed GFAP and NeuN. Topical MSCs triggered microglial activation, astrocytosis and cellular proliferation at day 3. The recovery of neurological functions were significantly enhanced as determined in Rotarod test and Morris Water Maze test with smaller infarct volume. PCR array showed that expressions of ten genes of neurogenesis were altered in the penumbra region (fold change &gt; 1.25, p &lt; 0.05) in MSCs group: Apoe, Ascl1, Efnb1, Mef2c, Nog, A100a6 and B2m were up-regulated; Pax2, Pax3 and Th were down-regulated. In conclusion, topical application provided a direct and effective transplant method for the delivery of MSCs to the surface of ipsilateral cerebral cortex and the topical MSCs could improve the neurological function from cerebral ischemia resulting from a major cerebral artery occlusion in a rodent experimental model."	"Chlorella vulgaris Modulates Genes and Muscle-Specific microRNAs Expression to Promote Myoblast Differentiation in Culture. Loss of skeletal muscle mass, strength, and function due to gradual decline in the regeneration of skeletal muscle fibers was observed with advancing age. This condition is known as sarcopenia. Myogenic regulatory factors (MRFs) are essential in muscle regeneration as its activation leads to the differentiation of myoblasts to myofibers. Chlorella vulgaris is a coccoid green eukaryotic microalga that contains highly nutritious substances and has been reported for its pharmaceutical effects. The aim of this study was to determine the effect of C. vulgaris on the regulation of MRFs and myomiRs expression in young and senescent myoblasts during differentiation in vitro. Human skeletal muscle myoblast (HSMM) cells were cultured and serial passaging was carried out to obtain young and senescent cells. The cells were then treated with C. vulgaris followed by differentiation induction. The expression of Pax7, MyoD1, Myf5, MEF2C, IGF1R, MYOG, TNNT1, PTEN, and MYH2 genes and miR-133b, miR-206, and miR-486 was determined in untreated and C. vulgaris-treated myoblasts on Days 0, 1, 3, 5, and 7 of differentiation. The expression of Pax7, MyoD1, Myf5, MEF2C, IGF1R, MYOG, TNNT1, and PTEN in control senescent myoblasts was significantly decreased on Day 0 of differentiation (p&lt;0.05). Treatment with C. vulgaris upregulated Pax7, Myf5, MEF2C, IGF1R, MYOG, and PTEN in senescent myoblasts (p&lt;0.05) and upregulated Pax7 and MYOG in young myoblasts (p&lt;0.05). The expression of MyoD1 and Myf5 in young myoblasts however was significantly decreased on Day 0 of differentiation (p&lt;0.05). During differentiation, the expression of these genes was increased with C. vulgaris treatment. Further analysis on myomiRs expression showed that miR-133b, miR-206, and miR-486 were significantly downregulated in senescent myoblasts on Day 0 of differentiation which was upregulated by C. vulgaris treatment (p&lt;0.05). During differentiation, the expression of miR-133b and miR-206 was significantly increased with C. vulgaris treatment in both young and senescent myoblasts (p&lt;0.05). However, no significant change was observed on the expression of miR-486 with C. vulgaris treatment. C. vulgaris demonstrated the modulatory effects on the expression of MRFs and myomiRs during proliferation and differentiation of myoblasts in culture. These findings may indicate the beneficial effect of C. vulgaris in muscle regeneration during ageing thus may prevent sarcopenia in the elderly."	"Epigenomic mechanisms of alcohol-induced impaired differentiation of skeletal muscle stem cells; role of Class IIA histone deacetylases. Loss of functional metabolic muscle mass remains a strong and consistent predictor of mortality among people living with human immunodeficiency virus (PLWH). PLWH have a higher incidence of alcohol use disorder (AUD), and myopathy is a significant clinical comorbidity due to AUD. One mechanism of skeletal muscle (SKM) mass maintenance and repair is by differentiation and fusion of satellite cells (SCs) to existing myofibers. Previous studies demonstrated that chronic binge alcohol (CBA) administration decreases SC differentiation potential, myogenic gene expression, and miR-206 expression in simian immunodeficiency virus (SIV)-infected male rhesus macaques and that miR-206 targets the Class IIA histone deacetylase, HDAC4. The aim of this study was to determine whether alcohol-induced increases in Class IIA HDACs mediate the observed decrease in differentiation potential of SCs. Data show that CBA dysregulated HDAC gene expression in SKM and myoblasts of SIV-infected macaques. CBA and antiretroviral therapy increased HDAC activity in SKM and this was positively correlated with HDAC4 gene expression. In vitro ethanol (ETOH) treatment increased HDAC expression during differentiation and decreased differentiation potential of myoblasts. HDAC expression was negatively correlated with fusion index and myotube formation, indicators of differentiation potential. Treatment with a Class II HDAC inhibitor, TMP195, restored differentiation in ETOH-treated myoblasts. MEF2C expression at day 3 of differentiation was positively correlated with fusion index and myotube formation. These findings suggest that an alcohol-mediated increase in Class IIA HDAC expression contributes to decreased myoblast differentiation by downregulating MEF2C, a transcription factor critical for myogenesis."	"Disruption of chromatin organisation causes MEF2C gene overexpression in intellectual disability: a case report. Balanced structural variants are mostly described in disease with gene disruption or subtle rearrangement at breakpoints. Here we report a patient with mild intellectual deficiency who carries a de novo balanced translocation t(3;5). Breakpoints were fully explored by microarray, Array Painting and Sanger sequencing. No gene disruption was found but the chromosome 5 breakpoint was localized 228-kb upstream of the MEF2C gene. The predicted Topologically Associated Domains analysis shows that it contains only the MEF2C gene and a long non-coding RNA LINC01226. RNA studies looking for MEF2C gene expression revealed an overexpression of MEF2C in the lymphoblastoid cell line of the patient. Pathogenicity of MEF2C overexpression is still unclear as only four patients with mild intellectual deficiency carrying 5q14.3 microduplications containing MEF2C are described in the literature. The microduplications in these individuals also contain other genes expressed in the brain. The patient presented the same phenotype as 5q14.3 microduplication patients. We report the first case of a balanced translocation leading to an overexpression of MEF2C similar to a functional duplication."	"Orai1 inhibitor STIM2β regulates myogenesis by controlling SOCE dependent transcriptional factors. Store-operated Ca<sup>2+</sup> entry (SOCE), the fundamental Ca<sup>2+</sup> signaling mechanism in myogenesis, is mediated by stromal interaction molecule (STIM), which senses the depletion of endoplasmic reticulum Ca<sup>2+</sup> stores and induces Ca<sup>2+</sup> influx by activating Orai channels in the plasma membrane. Recently, STIM2β, an eight-residue-inserted splice variant of STIM2, was found to act as an inhibitor of SOCE. Although a previous study demonstrated an increase in STIM2β splicing during in vitro differentiation of skeletal muscle, the underlying mechanism and detailed function of STIM2β in myogenesis remain unclear. In this study, we investigated the function of STIM2β in myogenesis using the C2C12 cell line with RNA interference-mediated knockdown and CRISPR-Cas-mediated knockout approaches. Deletion of STIM2β delayed myogenic differentiation through the MEF2C and NFAT4 pathway in C2C12 cells. Further, loss of STIM2β increased cell proliferation by altering Ca<sup>2+</sup> homeostasis and inhibited cell cycle arrest mediated by the cyclin D1-CDK4 degradation pathway. Thus, this study identified a previously unknown function of STIM2β in myogenesis and improves the understanding of how cells effectively regulate the development process via alternative splicing."	"TRP Channels Expression Profile in Human End-Stage Heart Failure. Objectives: Many studies indicate the involvement of transient receptor potential (TRP) channels in the development of heart hypertrophy. However, the data is often conflicted and has originated in animal models. Here, we provide systematic analysis of TRP channels expression in human failing myocardium. Methods and results: Left-ventricular tissue samples were isolated from explanted hearts of NYHA III-IV patients undergoing heart transplants (n = 43). Quantitative real-time PCR was performed to assess the mRNA levels of TRPC, TRPM and TRPV channels. Analysis of functional, clinical and biochemical data was used to confirm an end-stage heart failure diagnosis. Compared to myocardium samples from healthy donor hearts (n = 5), we detected a distinct increase in the expression of TRPC1, TRPC5, TRPM4 and TRPM7, and decreased expression of TRPC4 and TRPV2. These changes were not dependent on gender, clinical or biochemical parameters, nor functional parameters of the heart. We detected, however, a significant correlation of TRPC1 and MEF2c expression. Conclusions: The end-stage heart failure displays distinct expressional changes of TRP channels. Our findings provide a systematic description of TRP channel expression in human heart failure. The results highlight the complex interplay between TRP channels and the need for deeper analysis of early stages of hypertrophy and heart failure development."	"Discovery and validation of methylated-differentially expressed genes in Helicobacter pylori-induced gastric cancer. DNA methylation has an important role in Helicobacter pylori (H. pylori)-induced gastric cancer (GC) processes and development. The aim of this study was to search genome-scale epigenetic modifications for studying pathogenesis of H. pylori-induced GC, and to find factors and powerful signature related to survival and prognosis. In this study, we conducted a comprehensive analysis of DNA methylation and gene expression profiles in the Gene Expression Omnibus (GEO), to identified differentially expressed genes (DEGs) and differentially methylated genes (DMGs). Functional enrichment analysis of the screened genes was performed, and a protein-protein interaction network was constructed. The TCGA DNA methylation databases and 55 H. pylori-infected GC cases of GEO RNA sequencing (GSE62254) were utilized for prognostic value validation of hub genes. Finally, a prognosis-related risk signature was identified by a series of bioinformatics analysis for H. pylori-induced GC patients. Totally, 161 DMGs were identified. Pathway analysis showed that all MDEGs mainly associated with Ras signaling pathway, renal cell carcinoma, mitogen-activated protein kinase signaling pathway. Five hub genes including CACNB2, GNB4, GRIN2A, MEF2C, and PREX1 were screened as independent prognostic factors in H. pylori-induced GC patients. Two-gene (CACNB2 and MEF2C) risk signature was constructed for predicting the overall survival of H. pylori-induced GC patients. Our study indicated possible MDEGs and pathways in H. pylori-induced GC by bioinformatics analysis, which may provide novel insights for unraveling pathogenesis of H. pylori-induced GC. Hub genes might serve as aberrantly methylation-based biomarkers for clinical diagnostic and prognostic evaluation of H. pylori-induced GC."	"Cardiac regeneration with pluripotent stem cell-derived cardiomyocytes and direct cardiac reprogramming. Cardiovascular disease is the leading cause of death globally. Cardiomyocytes (CMs) have poor regenerative capacity, and pharmacological therapies have limited efficacy in severe heart failure. Currently, there are several promising strategies for cardiac regeneration. The most promising approach to remuscularize failing hearts is cell transplantation therapy using newly generated CMs from exogenous sources, such as pluripotent stem cells. Alternatively, approaches to generate new CMs from endogenous cell sources in situ may also repair the injured heart and improve cardiac function. Direct cardiac reprogramming has emerged as a novel therapeutic approach to regenerate injured hearts by directly converting endogenous cardiac fibroblasts into CM-like cells. Through cell transplantation and direct cardiac reprogramming, new CMs can be generated and scar tissue reduced to improve cardiac function; therefore, cardiac regeneration may serve as a powerful strategy for treatment of severe heart failure. While substantial progress has been made in these two strategies for cardiac regeneration over the past several years, challenges remain for clinical translation. This review provide an overview of previous reports and current challenges in this field."	"Inhibition of miR-223 expression using a sponge strategy decreases restenosis in rat injured carotids. Restenosis is a frequent complication of angioplasty. It consists of a neointimal hyperplasia resulting from progression and migration of vascular smooth muscle cells (VSMC) into the vessel lumen. The microRNA miR-223 was recently shown to be involved in cardiovascular diseases including atherosclerosis, vascular calcification and arterial thrombosis. In this study, our aim was to assess the impact of miR-223 modulation on restenosis in a rat model of carotid artery after balloon injury. The over and down-expression of miR-223 were induced by adenoviral vectors, containing either a pre-miR-223 sequence allowing artificial miR-223 expression or a sponge sequence, trapping the native microRNA, respectively. Restenosis was quantified on stained rat carotid sections. In vitro, three mRNA (Myocyte Enhancer Factor 2C (MEF2C), Ras homolog gene family, member B (RhoB) and Nuclear factor 1 A-type (NFIA)) reported as miR-223 direct targets and known to be implicated in VSMC differentiation and contractility were studied by RT-qPCR. Our findings showed that down-expression of miR-223 significantly reduced neointimal hyperplasia by 44% in carotids, and was associated with a 2-3-fold overexpression of MEF2C, RhoB and NFIA in a murine monocyte macrophage cell line, RAW 264.7 cells. Down-regulating miR-223 could be a potential therapeutic approach to prevent restenosis after angioplasty."	"Context-Specific Transcription Factor Functions Regulate Epigenomic and Transcriptional Dynamics during Cardiac Reprogramming. Ectopic expression of combinations of transcription factors (TFs) can drive direct lineage conversion, thereby reprogramming a somatic cell's identity. To determine the molecular mechanisms by which Gata4, Mef2c, and Tbx5 (GMT) induce conversion from a cardiac fibroblast toward an induced cardiomyocyte, we performed comprehensive transcriptomic, DNA-occupancy, and epigenomic interrogation throughout the reprogramming process. Integration of these datasets identified new TFs involved in cardiac reprogramming and revealed context-specific roles for GMT, including the ability of Mef2c and Tbx5 to independently promote chromatin remodeling at previously inaccessible sites. We also find evidence for cooperative facilitation and refinement of each TF's binding profile in a combinatorial setting. A reporter assay employing newly defined regulatory elements confirmed that binding of a single TF can be sufficient for gene activation, suggesting that co-binding events do not necessarily reflect synergy. These results shed light on fundamental mechanisms by which combinations of TFs direct lineage conversion."	"Transcription factor Tbx5 promotes cardiomyogenic differentiation of cardiac fibroblasts treated with 5-azacytidine. Conversion of cardiac fibroblasts (CFs) into induced cardiomyocytes has recently been demonstrated, represents a potential therapeutic strategy for cardiac repair after myocardial injury. However, current approaches are inefficient. Here, we report that a defined transcription factor Tbx5, promoted cardiac reprogramming in the presence of a chemical inducer 5-azacytidine (5-aza). Morphological changes and cardiac specific genes and proteins expression were determined by immunofluorescence, quantitative real-time polymerase chain reaction, and Western blot analysis. Remarkably, Tbx5 enabled cardiac reprogramming with 5-aza by activating the expression of myocardial transcription-related genes, including cTnT, α-actin, Mef2c and inhibiting the expression of pluripotent genes such as Nanog, Oct4, and Sox2. Moreover, overexpression of Tbx5 upregulated the expression of sarcomere protein cTnT in CFs more efficiently at week 3 compared with 5aza-treated alone (P &lt; 0.05). Conversely, inhibition of Tbx5 attenuated cardiac reprogramming. Furthermore, downregulated Tbx5 decreased wnt3a expression. At the same time, the inhibition effect of Tbx5i on cardiac reprogramming was reversed in vitro when these cells were exposed to Chir99021, a GSK-3 inhibitor. This finding provides new insight into the mechanism of cardiac reprogramming underlying the cardiac reprogramming process and lays the foundation for future clinical applications."	"Cardiotoxicity of forchlorfenuron (CPPU) in zebrafish (Danio rerio) and H9c2 cardiomyocytes. Forchlorfenuron (CPPU), as a plant growth regulator or herbicide/pesticide, is widely used in agriculture worldwide. It is adopted by most farmers due to its high efficacy for boosting size and improving the quality of fruit. However, CPPU was implicated in, and gained notoriety due to an incident of exploding watermelon that occurred in 2011. Subsequently, the wider community became aware of the potential risks it posed to living organisms and the ecosystem. In this study, we evaluated the effects of CPPU on the survival, cardiac morphology and function, as well as hematopoietic system, of zebrafish (Danio rerio). Notably, CPPU (2.5-12.5 μg/ml) induced cardiac morphology deformation, cardiac contractile dysfunction and erythrocyte reduction in zebrafish. Consistently, the mRNA expression levels of several cardiac and hematopoietic gene markers (myl7, gata4, mef2c, amhc, vmhc and gata1) were altered by CPPU treatment. In addition, CPPU caused cytotoxicity, cytoskeleton destruction and reduced corresponding proteins (Myl7, Gata4 and Mef2c) expression in H9c2 cardiomyocytes in vitro. Taken together, this study has identified the cardiotoxicity of CPPU in different experimental models and enhanced our understanding on the mechanism underlying the toxicity of CPPU to living organisms."	"MEF2C/miR-133a-3p.1 circuit-stabilized AQP1 expression maintains endothelial water homeostasis. Aquaporin 1 (AQP1) plays an important role in endothelial functions and is regulated by MEF2C. However, how AQP1 level is stabilized to maintain endothelial water homeostasis is still not clear. Here, we show that AQP1 expression is significantly upregulated by MEF2C transcriptionally and inhibited by miR-133a-3p.1 post-transcriptionally. Meanwhile, MEF2C activates the expression of miR-133a1. Simultaneous overexpression of MEF2C and miR-133a-3p.1 suppresses the aptitude of changes in AQP1 expression caused by either MEF2C or miR-133a-3p.1. Accordingly, the changes in migration and tube formation of human umbilical vein endothelial cells (HUVECs) caused by MEF2C or miR133a-3p.1 are blunted by coexpression of both of them. These data demonstrate that the homeostasis and physiological function of AQP1 in endothelial health are maintained by the MEF2C and miR-133a-3p.1 regulatory circuit."	"Induction of endothelial dysfunction by oxidized low-density lipoproteins via downregulation of Erk-5/Mef2c/KLF2 signaling: Amelioration by fisetin. Extra-cellular signal regulated kinase-5 (Erk-5), a transcriptional activator and regulator of endothelial cells (ECs) homeostasis, has been implicated in shear stress-induced endothelial dysfunction (ED), however its role in oxidized low-density lipoprotein (oxLDL)- induced ED during metabolic stress is not known. Herein, regulation and function of Erk-5 in oxLDL-induced EC death, inflammation and dysfunction has been investigated. Primary Human Umbilical Vein Endothelial Cells (pHUVECs) were stimulated with oxLDL. MTT and Trypan blue exclusion assays to assess cell viability, RT-qPCR and Western blotting assays to determine expression of endothelial and inflammatory markers and ED mediators at mRNA and protein levels, respectively were performed. Monocyte adhesion assay was performed to examine monocytes adherence to oxLDL-stimulated pHUVECs. The exposure of oxLDL induced a dose- and time-dependent decrease in pHUVECs viability, which concurred with decreased Erk-5 expression. Further, oxLDL (100 μg/ml) decreased the expression of endothelial markers eNOS and vWF, and increased the expression of ICAM-1, at both mRNA and protein levels. SiRNA-mediated silencing of Erk-5 or its inhibition showed that changes in eNOS, vWF and ICAM-1 expression could be mediated through Erk-5. Furthermore, oxLDL decreased the levels of Erk-5's upstream regulator MEK5 and downstream regulators Mef2c and KLF2, which were similar to their expressions in Erk-5 silenced cells. Fisetin, a phytochemical and bioflavonoid, could reduce the effect of oxLDL in ECs by upregulating the expression of endothelial markers including Erk-5, and downregulating the expression of inflammation markers. These results suggest that Erk-5 could be a critical regulator of oxLDL-induced EC death, inflammation and dysfunction via downregulation of Erk-5/Mef2c-KLF2 signaling pathway, which can be ameliorated by a bioflavonoid, fisetin."	"TAF Family Proteins and MEF2C Are Essential for Epstein-Barr Virus Super-Enhancer Activity. Super-enhancers (SEs) are clusters of enhancers marked by extraordinarily high and broad chromatin immunoprecipitation followed by deep sequencing (ChIP-seq) signals for H3K27ac or other transcription factors (TFs). SEs play pivotal roles in development and oncogenesis. Epstein-Barr virus (EBV) super-enhancers (ESEs) are co-occupied by all essential EBV oncogenes and EBV-activated NF-κB subunits. Perturbation of ESEs stops lymphoblastoid cell line (LCL) growth. To further characterize ESEs and identify proteins critical for ESE function, MYC ESEs were cloned upstream of a green fluorescent protein (GFP) reporter. Reporters driven by MYC ESEs 525 kb and 428 kb upstream of MYC (525ESE and 428ESE) had very high activities in LCLs but not in EBV-negative BJAB cells. EBNA2 activated MYC ESE-driven luciferase reporters. CRISPRi targeting 525ESE significantly decreased MYC expression. Genome-wide CRISPR screens identified factors essential for ESE activity. TBP-associated factor (TAF) family proteins, including TAF8, TAF11, and TAF3, were essential for the activity of the integrated 525ESE-driven reporter in LCLs. TAF8 and TAF11 knockout significantly decreased 525ESE activity and MYC transcription. MEF2C was also identified to be essential for 525ESE activity. Depletion of MEF2C decreased 525ESE reporter activity, MYC expression, and LCL growth. MEF2C cDNA resistant to CRIPSR cutting rescued MEF2C knockout and restored 525ESE reporter activity and MYC expression. MEF2C depletion decreased IRF4, EBNA2, and SPI1 binding to 525ESE in LCLs. MEF2C depletion also affected the expression of other ESE target genes, including the ETS1 and BCL2 genes. These data indicated that in addition to EBNA2, TAF family members and MEF2C are essential for ESE activity, MYC expression, and LCL growth.IMPORTANCE SEs play critical roles in cancer development. Since SEs assemble much bigger protein complexes on enhancers than typical enhancers (TEs), they are more sensitive than TEs to perturbations. Understanding the protein composition of SEs that are linked to key oncogenes may identify novel therapeutic targets. A genome-wide CRISPR screen specifically identified proteins essential for MYC ESE activity but not simian virus 40 (SV40) enhancer. These proteins not only were essential for the reporter activity but also were also important for MYC expression and LCL growth. Targeting these proteins may lead to new therapies for EBV-associated cancers."	"MiR-199a-3p inhibition facilitates cardiomyocyte differentiation of embryonic stem cell through promotion of MEF2C. MicroRNAs (miRNAs) is a small molecule (19-25 nucleotide) noncoding RNA that inhibits the expression of target messenger RNA (mRNA) at the posttranscriptional level as an endogenous regulator. There is an increasing evidence that miR-199a-3p has a significant effect on the development of multiple tumors. However, the specific roles of miR-199a-3p in myocardial differentiation of embryonic stem cell still need to be investigated. Method of the hanging drop was used to build the model of cardiomyocyte differentiation of stem cell and beating rate of embryoid bodies (EBs) was calculated. The levels of intracellular MEF2C, a-MHC, GATA4, Nkx2.5, and cTnT mRNA were measured by real-time quantitative polymerase chain reaction, while the expressions of miR-199a-3p were detected simultaneously. Protein levels of MEF2C, a-MHC, GATA4, Nkx2.5, and cTnT were quantified by western blot analysis. Immunoreactivities of MEF2C and cTnT were analyzed by immunofluorescence. The interaction between miR-199a-3p and its predicted target (3'-untranslated region of MEF2C mRNA) was verified by luciferase assay. MiR-199a-3p levels increased during cardiogenesis. MiR-199a-3p inhibitor increased the beating rate of EBs and promoted expressions of cardiac-specific markers (GATA4, Nkx2.5, cTnT, and a-MHC). Notably, miR-199a-3p inhibition brought upregulation of MEF2C, which is the target of miR-199a-3p that we predicted and verified experimentally. In addition, MEF2C siRNA decreased miR-199a-3p inhibitor promoted EBs beating and attenuated miR-199a-3p inhibitor-induced cTnT and MEF2C expressions. The results above showed that MEF2C was involved in the process of promoting the differentiation of stem cells into cardiac myocytes by miR-199a-3p inhibitors."	"Transcriptional Regulatory Network Analysis to Reveal the Key Genes Involved in Skeletal Muscle Injury.  Skeletal muscle is among the three major muscle types, and skeletal muscle injury (SMI) can elevate the risk of dependency and falls. This study is designed to explore the key genes involved in SMI and skeletal muscle regeneration. Microarray data set GSE81096, which included 11 injured skeletal muscle stem cell samples and 12 noninjured skeletal muscle stem cell samples, was from Gene Expression Omnibus. The differentially expressed genes (DEGs) between injured and noninjured samples were screened by R package limma, and then were performed with enrichment analysis based on the Database for Annotation, Visualization, and Integrated Discovery. Followed by protein-protein interaction (PPI), transcriptional regulatory analyses were conducted using Cytoscape software. A total of 1018 DEGs were screened from the injured samples, among which four upregulated genes and nine downregulated genes were predicted as transcription factors. Besides, four modules were identified from the PPI network. In the transcriptional regulatory network, E2F1, E2F4, JUNB, FOS, and MEF2C had higher degrees. Moreover, E2F4 and FOS might function in SMI separately through targeting E2F1 and JUNB. E2F1, E2F4, JUNB, FOS, and MEF2C might be involved in SMI and skeletal muscle regeneration. "	"Hand2 Selectively Reorganizes Chromatin Accessibility to Induce Pacemaker-like Transcriptional Reprogramming. Gata4, Hand2, Mef2c, and Tbx5 (GHMT) can reprogram transduced fibroblasts into induced pacemaker-like myocytes (iPMs), but the underlying mechanisms remain obscure. Here, we explore the role of Hand2 in iPM formation by using a combination of transcriptome, genome, and biochemical assays. We found many shared transcriptional signatures between iPMs and the endogenous sinoatrial node (SAN), yet key regulatory networks remain missing. We demonstrate that Hand2 augments chromatin accessibility at loci involved in sarcomere organization, electrical coupling, and membrane depolarization. Focusing on an established cardiac Hand2 cistrome, we observe selective reorganization of chromatin accessibility to promote pacemaker-specific gene expression. Moreover, we identify a Hand2 cardiac subtype diversity (CSD) domain through biochemical analysis of the N terminus. By integrating our RNA-seq and ATAC-seq datasets, we highlight desmosome organization as a hallmark feature of iPM formation. Collectively, our results illuminate Hand2-dependent mechanisms that may guide future efforts to rationally improve iPM formation."	"The most recurrent monogenic disorders that overlap with the phenotype of Rett syndrome. Rett syndrome (RTT) is an early-onset neurodevelopmental disorder that is caused by mutations in the MECP2 gene; however, defects in other genes (CDKL5 and FOXG1) can lead to presentations that resemble classic RTT, although they are not completely identical. Here, we attempted to identify other monogenic disorders that share features of RTT. A total of 437 patients with a clinical diagnosis of RTT-like were studied; in 242 patients, a custom panel with 17 genes related to an RTT-like phenotype was run via a HaloPlex-Target-Enrichment-System. In the remaining 195 patients, a commercial TruSight-One-Sequencing-Panel was analysed. A total of 40 patients with clinical features of RTT had variants which affect gene function in six genes associated with other monogenic disorders. Twelve patients had variants in STXBP1, nine in TCF4, six in SCN2A, five in KCNQ2, four in MEF2C and four in SYNGAP1. Genetic studies using next generation sequencing (NGS) allowed us to study a larger number of genes associated with RTT-like simultaneously, providing a genetic diagnosis for a wider group of patients. These new findings provide the clinician with more information and clues that could help in the prevention of future symptoms or in pharmacologic therapy."	"Shift from slow- to fast-twitch muscle fibres in skeletal muscle of newborn heterozygous and homozygous myostatin-knockout piglets. Myostatin (MSTN) is a member of the transforming growth factor-β superfamily that negatively regulates skeletal muscle development. A lack of MSTN induces muscle hypertrophy and increases formation of fast-twitch (Type II) muscle fibres. This study investigated muscle development in newborn heterozygous (MSTN+/-) and homozygous (MSTN-/-) MSTN-knockout piglets. Detailed morphological and gene and protein expression analyses were performed of the biceps femoris, semitendinosus and diaphragm of MSTN+/-, MSTN-/- and wild-type (WT) piglets. Haematoxylin-eosin staining revealed that the cross-sectional area of muscle fibres was significantly larger in MSTN-knockout than WT piglets. ATPase staining demonstrated that the percentage of Type IIb and IIa muscle fibres was significantly higher in MSTN-/- and MSTN+/- piglets respectively than in WT piglets. Western blotting showed that protein expression of myosin heavy chain-I was reduced in muscles of MSTN-knockout piglets. Quantitative reverse transcription-polymerase chain reaction revealed that, compared with WT piglets, myogenic differentiation factor (MyoD) mRNA expression in muscles was 1.3- to 2-fold higher in MSTN+/- piglets and 1.8- to 3.5-fold higher MSTN-/- piglets (P&lt;0.05 and P&lt;0.01 respectively). However, expression of myocyte enhancer factor 2C (MEF2C) mRNA in muscles was significantly lower in MSTN+/- than WT piglets (P&lt;0.05). MSTN plays an important role in skeletal muscle development and regulates muscle fibre type by modulating the gene expression of MyoD and MEF2C in newborn piglets."	"Microsecretory Adenocarcinoma: A Novel Salivary Gland Tumor Characterized by a Recurrent MEF2C-SS18 Fusion. Salivary gland adenocarcinoma not otherwise specified (NOS) is a heterogenous group, likely containing distinct tumors not yet characterized. A growing number of low to intermediate-grade salivary carcinomas are now known to harbor tumor-specific gene fusions. On occasion, identifying a novel fusion allows for recognition of a new salivary tumor type, in addition to representing a potential diagnostic tool. We sought to characterize a distinctive salivary gland adenocarcinoma that would previously have been regarded as adenocarcinoma NOS. On the basis of the recognition of 5 morphologically identical, distinct low-grade salivary adenocarcinomas, we used targeted RNA sequencing (RNA-Seq) to determine whether these could be differentiated from other fusion-associated salivary gland tumors. RNA-Seq was performed on all 5 low-intermediate grade adenocarcinomas NOS with near-identical histologic appearances, as well as 23 low-intermediate grade control adenocarcinoma NOS cases that did not resemble the index cases. All 5 index cases harbored a novel MEF2C-SS18 gene fusion, which was independently confirmed by reverse transcriptase-polymerase chain reaction. The MEF2C-SS18-positive cases arose in the oral cavity (4/5) and parotid gland (1/5) of 3 women and 2 men ranging from 21 to 80 years (mean: 46) and shared near-identical histologic features: intercalated duct-like cells with eosinophilic to clear cytoplasm and small, uniform oval nuclei, infiltrative microcysts and cords, abundant intraluminal secretions, and cellular fibromyxoid stroma. Mitotic rates were low; necrosis was absent. All MEF2C-SS18-positive tumors were positive for S100 and p63 and negative for p40, smooth muscle actin, calponin, and mammaglobin. One of the 23 control cases, a parotid tumor, was found to contain a SS18-ZBTB7A gene fusion; it demonstrated similar, but not identical histologic and immunophenotypic features compared with the MEF2C-SS18 cases. The remaining control cases were negative for SS18 and MEF2C rearrangements. A novel MEF2C-SS18 gene fusion and unique histologic and immunophenotypic features characterize a heretofore undefined low-grade salivary adenocarcinoma for which we propose the term &quot;microsecretory adenocarcinoma.&quot; RNA-Seq helped establish this entity as a distinct tumor type, and identified one possibly related case with a different SS18-related fusion. The recognition of microsecretory adenocarcinoma and its separation from other adenocarcinomas NOS will facilitate a more complete understanding of the clinical and pathologic characteristics of this previously unrecognized neoplasm."	"Placental P-glycoprotein inhibition enhances susceptibility to Di-(2-ethylhexyl)-phthalate induced cardiac malformations in mice: A possibly promising target for congenital heart defects prevention. Reducing toxicants transplacental rates could contribute to the prevention of congenital heart defects (CHDs). Placental P-glycoprotein (P-gp) plays a vital role in fetal toxicants exposure and subsequently affects the risk of toxicants-induced birth defects. However, data on the role of placental P-gp in decreasing toxicants-induced cardiac anomalies is extremely limited. This study aimed to explore the protective role of placental P-gp in reducing the risk of Di-(2-ethylhexyl)-phthalate (DEHP) induced cardiac anomalies in mice. The C57BL mice were randomly divided into four groups: the vehicle group (corn oil, n = 10), 500mg/Kg DEHP group (n = 15), 3mg/Kg verapamil group (n = 10) and 500mg/Kg DEHP &amp; 3mg/Kg verapamil group (n = 20). Pregnant dams in different group received respective intervention by gavage once daily from E6.5-14.5. Maternal weights were monitored every day and samples were collected at E15.5. HE staining was used to examine fetal cardiac malformations. Real-time quantitative PCR (RT-qPCR) and Western-Blot were applied to detect Nkx2.5/Gata4/Tbx5/Mef2c/Chf1 mRNA and protein expression, respectively. The mRNA expression of peroxisome proliferator-activated receptor γ (PPARγ) was also determined using RT-qPCR. Co-administration of verapamil and DEHP significantly elevated fetal cardiac malformation rates, in comparison with the DEHP group, the verapamil group and the vehicle group. Different phenotypes of cardiac anomalies, including septal defects and ventricular myocardium noncompaction, were noted both in the DEHP group and the DEHP &amp; verapamil group. The ventricular myocardium noncompaction appeared to be more severe in the DEHP &amp; verapamil group. Fetal cardiac PPARγ mRNA expression was notably increased and Gata4/Mef2c/Chf1 expression was markedly decreased in the DEHP &amp; verapamil group. Placental P-gp inhibition enhances susceptibility to DEHP induced cardiac malformations in mice."	"Cardiac Reprogramming Factors Synergistically Activate Genome-wide Cardiogenic Stage-Specific Enhancers. The cardiogenic transcription factors (TFs) Mef2c, Gata4, and Tbx5 can directly reprogram fibroblasts to induced cardiac-like myocytes (iCLMs), presenting a potential source of cells for cardiac repair. While activity of these TFs is enhanced by Hand2 and Akt1, their genomic targets and interactions during reprogramming are not well studied. We performed genome-wide analyses of cardiogenic TF binding and enhancer profiling during cardiac reprogramming. We found that these TFs synergistically activate enhancers highlighted by Mef2c binding sites and that Hand2 and Akt1 coordinately recruit other TFs to enhancer elements. Intriguingly, these enhancer landscapes collectively resemble patterns of enhancer activation during embryonic cardiogenesis. We further constructed a cardiac reprogramming gene regulatory network and found repression of EGFR signaling pathway genes. Consistently, chemical inhibition of EGFR signaling augmented reprogramming. Thus, by defining epigenetic landscapes these findings reveal synergistic transcriptional activation across a broad landscape of cardiac enhancers and key signaling pathways that govern iCLM reprogramming."	"Key nutritional factors and interactions during larval development of pikeperch (Sander lucioperca). The effects of 8 nutritional variables (Ca/P, Eicosapentaenoic acid (20:5n-3) + Docosahexaenoic acid (22:6n - 3) (EPA + DHA), Arachidonic acid (20:4n - 6) (ARA), Se, vitamins E, C, D and A) were investigated to identify their respective importance and interactions in pikeperch larval development. In this respect, two modalities (low and high levels) of each variable were tested through a fractional factorial experimental design allowing a reduction from 256 (2<sup>8</sup>) to 16 (2<sup>8 - 4</sup>) experimental units. Survival was significantly higher in larvae fed a high Ca/P diet while larval growth was significantly lower in larvae fed the same diet variant, associated with a higher incidence of kyphosis and pectoral anomalies in these larvae. Lordosis and scoliosis seemed to be mostly affected by dietary long chain polyunsaturated fatty acids (LC-PUFAs). A significant interaction was shown between n-3 LC-PUFA and vitamin C on jaw anomalies, while myocyte-specific enhancer factor 2C (mef2c) gene expression correlated positively with dietary vitamin C increment. Results also demonstrated an effect of the different nutrients and their interactions on the activity levels of digestive enzymatic activities. The results of the present study highlight the importance of the interactions between Ca/P, LC-PUFAs and vitamins C and E, suggesting their essential roles as key nutritional factors influencing pikeperch larval development."	"Effects of histone deacetylase inhibitor Scriptaid and parathyroid hormone on osteocyte functions and metabolism. Bone is a highly metabolic organ that undergoes continuous remodeling to maintain its structural integrity. During development, bones, in particular osteoblasts, rely on glucose uptake. However, the role of glucose metabolism in osteocytes is unknown. Osteocytes are terminally differentiated osteoblasts orchestrating bone modeling and remodeling. In these cells, parathyroid hormone (PTH) suppresses Sost/sclerostin expression (a potent inhibitor of bone formation) by promoting nuclear translocation of class IIa histone deacetylase (HDAC) 4 and 5 and the repression of myocyte enhancer factor 2 (MEF2) type C. Recently, Scriptaid, an HDAC complex co-repressor inhibitor, has been shown to induce MEF2 activation and exercise-like adaptation in mice. In muscles, Scriptaid disrupts the HDAC4/5 co-repressor complex, increases MEF2C function, and promotes cell respiration. We hypothesized that Scriptaid, by affecting HDAC4/5 localization and MEF2C activation, might affect osteocyte functions. Treatment of the osteocytic Ocy454-12H cells with Scriptaid increased metabolic gene expression, cell respiration, and glucose uptake. Similar effects were also seen upon treatment with PTH, suggesting that both Scriptaid and PTH can promote osteocyte metabolism. Similar to PTH, Scriptaid potently suppressed Sost expression. Silencing of HDAC5 in Ocy454-12H cells abolished Sost suppression but not glucose transporter type 4 (Glut4) up-regulation induced by Scriptaid. These results demonstrate that Scriptaid increases osteocyte respiration and glucose uptake by mechanisms independent of HDAC complex inhibition. In osteocytes, Scriptaid, similar to PTH, increases binding of HDAC5 to Mef2c with suppression of Sost but only partially increases receptor activator of NF-κB ligand (Rankl) expression, suggesting a potential bone anabolic effect."	"Dopamine receptor antagonists as potential therapeutic agents for ADPKD. Autosomal dominant polycystic kidney disease (ADPKD) is caused mostly by mutations in polycystin-1 or polycystin-2. Fluid flow leads to polycystin-dependent calcium influx and nuclear export of histone deacetylase 5 (HDAC5), which facilitates the maintenance of renal epithelial architecture by de-repression of MEF2C target genes. Here, we screened a small-molecule library to find drugs that promotes nuclear export of HDAC5. We found that dopamine receptor antagonists, domperidone and loxapine succinate, stimulate export of HDAC5, even in Pkd1-/-cells. Domperidone targets Drd3 receptor to modulate the phosphorylation of HDAC5. Domperidone treatment increases HDAC5 phosphorylation likely by reducing protein phosphatase 2A (PP2A) activity, thus shifting the equilibrium towards HDAC5-P and export from the nucleus. Treating Pkd1-/-mice with domperidone showed significantly reduced cystic growth and cell proliferation. Further, treated mice displayed a reduction in glomerular cyst and increased body weight and activity. These results suggest that HDAC5 nucleocytoplasmic shuttling may be modulated to impede disease progression in ADPKD and uncovers an unexpected role for a class of dopamine receptors in renal epithelial morphogenesis."	"Salvianolic Acid B Inhibits Activation of Human Primary Hepatic Stellate Cells Through Downregulation of the Myocyte Enhancer Factor 2 Signaling Pathway. Various isoforms of myocyte enhancer factor 2 (MEF2) have been shown to play a role in the activation of rat hepatic stellate cells (HSCs) in culture. The signals that regulate MEF2 in HSCs are unknown. In addition, whether MEF2s regulate the activation of human HSCs (H-HSCs) is unclear. Here, we studied the expression and function of MEF2s in H-HSCs. Our data showed that the levels of MEF2A, C, and D proteins were high in liver tissues from patients with cirrhosis and increased during culture-induced activation of primary H-HSCs. Exposure of H-HSCs to transforming growth factor beta 1 (TGF-β1) led to a significant increase in MEF2A and C protein levels and enhanced MEF2 activity. Interestingly, TGF-β1 did not further enhance MEF2D levels. Furthermore, TGF-β1 activated p38 mitogen-activated protein kinase (MAPK) and led to increased phosphorylation of MEF2C at its p38 recognition site. Inhibition of p38 MAPK inhibited both TGF-β1- and culture-induced activation of MEF2. The activity of collagen I reporter in H-HSCs was significantly reduced when MEF2A and MEF2C were blocked with overexpression of dominant negative MEF2 mutants. Salvianolic-acid B (SA-B), a water-soluble element of Salvia miltiorrhiza known to have anti-fibrosis effects, attenuated both basal and TGF-β1-induced increased levels of MEF2A and C mRNA and protein. In addition, SA-B inhibited MEF2 activity, which correlated with reduced expression of the HSC activation markers, α-smooth muscle actin (α-SMA), and collagen I. Administration of SA-B reduced MEF2A in vivo, which was accompanied by reduced levels of α-SMA in a model of dimethylnitrosamine-induced rat liver fibrosis. We concluded that the MEF2 transcription factor was stimulated by TGF-β1 in H-HSCs. Antagonizing TGF-β1-induced activation of the MEF2 signaling pathway may account in part for the anti-fibrosis effects of SA-B."	"[Enhanced autophagy activates p38/MEF2C pathway to regulate the expression of synapse-associated proteins and improve the symptoms of autistic rats]. Objective To study the mechanism of p38/myocyte enhancer factor 2C (p38/MEF2C) pathway regulating synapse before and after autophagy intervention in the prefrontal cortex of autistic rats. Methods An animal model of autism was induced by intraperitoneal injection of valproic acid (VPA) at 12.5 days of gestation in Wistar rats. They were treated with normal saline or VPA. The offspring of the saline treatment group served as a control group. The offspring of the VPA treatment group were randomly divided into the model group, 5 mg/kg 3-methyladenine (3-MA) group, and 5 mg/kg rapamycin (Rap) autophagy enhanced group, and the treatment time of each group was from the 35th day of birth to the 42nd day of birth. Western blot analysis was used to detect the protein levels of p38, phosphorylated p38 (p-p38), MEF2C, synaptic vesicle protein (SYN), postsynaptic density 95 (PSD-95), and gephyrin protein in the prefrontal cortex of rats; immunohistochemical staining was used to detect the expression and distribution of SYN, PSD-95 and gephyrin in the prefrontal cortex, and semi-quantitative analysis was performed then. Results Compared with the control group, the developmental and behavioral test showed that the model group had developmental lag and social disorder. Compared with the model group, the Rap group shoed improved social disorder, and the 3-MA group could aggravate social disorder. Compared with the control group, the expression of p38, p-p38, MEF2C was down-regulated, the expression of SYN and PSD-95 protein was up-regulated, and the expression of gephyrin was down-regulated. Compared with the model group, the expression of p38, p-p38, MEF2C in the Rap group was up-regulated, the levels of SYN and PSD-95 protein were down-regulated, and the level of gephyrin protein was up-regulated, while that in 3-MA group was opposite. Compared with the control group, the number of SYN and PSD-95 positive cells in the model group increased, and the number of gephyrin positive cells decreased. Compared with the model group, the number of SYN and PSD-95 positive cells in the Rap group decreased, and the number of gephyrin-positive cells increased, and the 3-MA group was opposite. Conclusion The p38/MEF2C signaling pathway is inhibited in the prefrontal cortex of rats with autism, which can regulate the expression of synaptic related proteins and improve autistic behavior by enhancing autophagy to activate the p38/MEF2C signaling pathway."	"Chemical suppression of specific C-C chemokine signaling pathways enhances cardiac reprogramming. Reprogramming of fibroblasts into induced cardiomyocytes (iCMs) is a potentially promising strategy for regenerating a damaged heart. However, low fibroblast-cardiomyocyte conversion rates remain a major challenge in this reprogramming. To this end, here we conducted a chemical screen and identified four agents, insulin-like growth factor-1, Mll1 inhibitor MM589, transforming growth factor-β inhibitor A83-01, and Bmi1 inhibitor PTC-209, termed IMAP, which coordinately enhanced reprogramming efficiency. Using α-muscle heavy chain-GFP-tagged mouse embryo fibroblasts as a starting cell type, we observed that the IMAP treatment increases iCM formation 6-fold. IMAP stimulated higher cardiac troponin T and α-actinin expression and increased sarcomere formation, coinciding with up-regulated expression of many cardiac genes and down-regulated fibroblast gene expression. Furthermore, IMAP promoted higher spontaneous beating and calcium transient activities of iCMs derived from neonatal cardiac fibroblasts. Intriguingly, we also observed that the IMAP treatment repressed many genes involved in immune responses, particularly those in specific C-C chemokine signaling pathways. We therefore investigated the roles of C-C motif chemokine ligand 3 (CCL3), CCL6, and CCL17 in cardiac reprogramming and observed that they inhibited iCM formation, whereas inhibitors of C-C motif chemokine receptor 1 (CCR1), CCR4, and CCR5 had the opposite effect. These results indicated that the IMAP treatment directly suppresses specific C-C chemokine signaling pathways and thereby enhances cardiac reprogramming. In conclusion, a combination of four chemicals, named here IMAP, suppresses specific C-C chemokine signaling pathways and facilitates Mef2c/Gata4/Tbx5 (MGT)-induced cardiac reprogramming, providing a potential means for iCM formation in clinical applications."	"Ensuring expression of four core cardiogenic transcription factors enhances cardiac reprogramming. Previous studies have shown that forced expression of core cardiogenic transcription factors can directly reprogram fibroblasts to induced cardiomyocyte-like cells (iCMs). This cardiac reprogramming approach suggests a potential strategy for cardiomyocyte regeneration. However, a major challenge of this approach remains the low conversion rate. Here, we showed that ensuring expression of four cardiogenic transcription factors (i.e. Gata4 (G), Hand2 (H), Mef2c (M), and Tbx5 (T)) in individual fibroblasts is an initial bottleneck for cardiac reprogramming. Following co-transduction of three or four retroviral vectors encoding individual cardiogenic transcription factors, only a minor subpopulation of cells indeed expressed all three (GMT) or four (GHMT) factors. By selectively analyzing subpopulations of cells expressing various combinations of reprogramming factors, we found that co-expression of GMT in individual fibroblasts is sufficient to induce sarcomeric proteins. However, only a small fraction of those cells expressing GMT were able to develop organized sarcomeric structures and contractility. In contrast, ensuring expression of GHMT markedly enhanced the development of contractile cardiac structures and functions in fibroblasts, although its incremental effect on sarcomeric protein induction was relatively small. Our findings provide new insights into the mechanistic basis of inefficient cardiac reprogramming and can help to devise efficient reprogramming strategies."	"The Pathway to Cancer Cachexia: MicroRNA-Regulated Networks in Muscle Wasting Based on Integrative Meta-Analysis. Cancer cachexia is a multifactorial syndrome that leads to significant weight loss. Cachexia affects 50%-80% of cancer patients, depending on the tumor type, and is associated with 20%-40% of cancer patient deaths. Besides the efforts to identify molecular mechanisms of skeletal muscle atrophy-a key feature in cancer cachexia-no effective therapy for the syndrome is currently available. MicroRNAs are regulators of gene expression, with therapeutic potential in several muscle wasting disorders. We performed a meta-analysis of previously published gene expression data to reveal new potential microRNA-mRNA networks associated with muscle atrophy in cancer cachexia. We retrieved 52 differentially expressed genes in nine studies of muscle tissue from patients and rodent models of cancer cachexia. Next, we predicted microRNAs targeting these differentially expressed genes. We also include global microRNA expression data surveyed in atrophying skeletal muscles from previous studies as background information. We identified deregulated genes involved in the regulation of apoptosis, muscle hypertrophy, catabolism, and acute phase response. We further predicted new microRNA-mRNA interactions, such as miR-27a/Foxo1, miR-27a/Mef2c, miR-27b/Cxcl12, miR-27b/Mef2c, miR-140/Cxcl12, miR-199a/Cav1, and miR-199a/Junb, which may contribute to muscle wasting in cancer cachexia. Finally, we found drugs targeting MSTN, CXCL12, and CAMK2B, which may be considered for the development of novel therapeutic strategies for cancer cachexia. Our study has broadened the knowledge of microRNA-regulated networks that are likely associated with muscle atrophy in cancer cachexia, pointing to their involvement as potential targets for novel therapeutic strategies."	"Engineering a haematopoietic stem cell niche by revitalizing mesenchymal stromal cells. Haematopoietic stem cells (HSCs) are maintained by bone marrow niches in vivo<sup>1,2</sup>, but the ability of niche cells to maintain HSCs ex vivo is markedly diminished. Expression of niche factors by Nestin-GFP<sup>+</sup> mesenchymal-derived stromal cells (MSCs) is downregulated upon culture, suggesting that transcriptional rewiring may contribute to this reduced HSC maintenance potential. Using an RNA sequencing screen, we identified five genes encoding transcription factors (Klf7, Ostf1, Xbp1, Irf3 and Irf7) that restored HSC niche function in cultured bone marrow-derived MSCs. These revitalized MSCs (rMSCs) exhibited enhanced synthesis of HSC niche factors while retaining their mesenchymal differentiation capacity. In contrast to HSCs co-cultured with control MSCs, HSCs expanded with rMSCs showed higher repopulation capacity and protected lethally irradiated recipient mice. Competitive reconstitution assays revealed an approximately sevenfold expansion of functional HSCs by rMSCs. rMSCs prevented the accumulation of DNA damage in cultured HSCs, a hallmark of ageing and replication stress. Analysis of the reprogramming mechanisms uncovered a role for myocyte enhancer factor 2c (Mef2c) in the revitalization of MSCs. These results provide insight into the transcriptional regulation of the niche with implications for stem cell-based therapies."	"Regulation of WNT5A and WNT11 during MSC in vitro chondrogenesis: WNT inhibition lowers BMP and hedgehog activity, and reduces hypertrophy. Re-directing mesenchymal stromal cell (MSC) chondrogenesis towards a non-hypertrophic articular chondrocyte-(AC)-like phenotype is important for improving articular cartilage neogenesis to enhance clinical cartilage repair strategies. This study is the first to demonstrate that high levels of non-canonical WNT5A followed by WNT11 and LEF1 discriminated MSC chondrogenesis from AC re-differentiation. Moreover, β-catenin seemed incompletely silenced in differentiating MSCs, which altogether suggested a role for WNT signaling in hypertrophic MSC differentiation. WNT inhibition with the small molecule IWP-2 supported MSC chondrogenesis according to elevated proteoglycan deposition and reduced the characteristic upregulation of BMP4, BMP7 and their target ID1, as well as IHH and its target GLI1 observed during endochondral differentiation. Along with the pro-hypertrophic transcription factor MEF2C, multiple hypertrophic downstream targets including IBSP and alkaline phosphatase activity were reduced by IWP-2, demonstrating that WNT activity drives BMP and hedgehog upregulation, and MSC hypertrophy. WNT inhibition almost matched the strong anti-hypertrophic capacity of pulsed parathyroid hormone-related protein application, and both outperformed suppression of BMP signaling with dorsomorphin, which also reduced cartilage matrix deposition. Yet, hypertrophic marker expression under IWP-2 remained above AC level, and in vivo mineralization and ectopic bone formation were reduced but not eliminated. Overall, the strong anti-hypertrophic effects of IWP-2 involved inhibition but not silencing of pro-hypertrophic BMP and IHH pathways, and more advanced silencing of WNT activity as well as combined application of IHH or BMP antagonists should next be considered to install articular cartilage neogenesis from human MSCs."	"Genes Whose Gain or Loss-of-Function Increases Endurance Performance in Mice: A Systematic Literature Review. Endurance is not only a key factor in many sports but endurance-related variables are also associated with good health and low mortality. Twin and family studies suggest that several endurance-associated traits are ≈50% inherited. However, we still poorly understand what DNA sequence variants contribute to endurance heritability. To address this issue, we conducted a systematic review to identify genes whose experimental loss or gain-of-function increases endurance capacity in mice. We found 31 genes including two isoforms of Ppargc1a whose manipulation increases running or swimming endurance performance by up to 1800%. Genes whose gain-of-function increases endurance are Adcy5, Adcy8, Hk2, Il15, Mef2c, Nr4a3, Pck1 (Pepck), Ppard, Ppargc1a (both the a and b isoforms of the protein Pgc-1α), Ppargc1b, Ppp3ca (calcineurin), Scd1, Slc5a7, Tfe3, Tfeb, Trib3 &amp; Trpv1. Genes whose loss-of-function increases endurance in mice are Actn3, Adrb2, Bdkrb2, Cd47, Crym, Hif1a, Myoz1, Pappa, Pknox1, Pten, Sirt4, Thbs1, Thra, and Tnfsf12. Of these genes, human DNA sequence variants of ACTN3, ADCY5, ADRB2, BDKRB2, HIF1A, PPARD, PPARGC1A, PPARGC1B, and PPP3CA are also associated with endurance capacity and/or VO2max trainability suggesting evolutionary conservation between mice and humans. Bioinformatical analyses show that there are numerous amino acid or copy number-changing DNA variants of endurance genes in humans, suggesting that genetic variation of endurance genes contributes to the variation of human endurance capacity, too. Moreover, several of these genes/proteins change their expression or phosphorylation in skeletal muscle or the heart after endurance exercise, suggesting a role in the adaptation to endurance exercise."	"Differential contribution of the two waves of cardiac progenitors and their derivatives to aorta and pulmonary artery. During mouse development, part of the cells derived from the second heart field (SHF) progenitors contributes to the elongation and enlargement of the outflow tract (OFT) that subsequently septates into the trunks of aorta (Ao) and pulmonary artery (PA). Thus, the cardiac progenitor-originated cells are distributed to both Ao and PA. Here, we investigated that how these cells are assigned to the two great arteries during OFT septation through lineage tracing technology. By use of the inducible Mef2c-AHF-CreERT2; Rosa26-mTmG reporter system, two waves of SHF progenitors and their derivatives were identified, and they made differential contribution to the Ao and PA, respectively. While the early wave of cells (at E7.5) was preferentially destined to the Ao, the second wave of cells (from E8.5 till E11.5) made its favorite path to the PA. In addition, we unveiled PDK1 as a critical regulator of the second wave of cells as deletion of Pdk1 resulted in poorly developed PA leading to pulmonary stenosis. Thus, this study provides insights into the understanding of the pre-determined cell fate of the cardiac progenitor-derived cells with preferential contribution to the Ao and PA, as well as of the pathogenesis of pulmonary stenosis."	"Whole genome paired-end sequencing elucidates functional and phenotypic consequences of balanced chromosomal rearrangement in patients with developmental disorders. Balanced chromosomal rearrangements associated with abnormal phenotype are rare events, but may be challenging for genetic counselling, since molecular characterisation of breakpoints is not performed routinely. We used next-generation sequencing to characterise breakpoints of balanced chromosomal rearrangements at the molecular level in patients with intellectual disability and/or congenital anomalies. Breakpoints were characterised by a paired-end low depth whole genome sequencing (WGS) strategy and validated by Sanger sequencing. Expression study of disrupted and neighbouring genes was performed by RT-qPCR from blood or lymphoblastoid cell line RNA. Among the 55 patients included (41 reciprocal translocations, 4 inversions, 2 insertions and 8 complex chromosomal rearrangements), we were able to detect 89% of chromosomal rearrangements (49/55). Molecular signatures at the breakpoints suggested that DNA breaks arose randomly and that there was no major influence of repeated elements. Non-homologous end-joining appeared as the main mechanism of repair (55% of rearrangements). A diagnosis could be established in 22/49 patients (44.8%), 15 by gene disruption (KANSL1, FOXP1, SPRED1, TLK2, MBD5, DMD, AUTS2, MEIS2, MEF2C, NRXN1, NFIX, SYNGAP1, GHR, ZMIZ1) and 7 by position effect (DLX5, MEF2C, BCL11B, SATB2, ZMIZ1). In addition, 16 new candidate genes were identified. Systematic gene expression studies further supported these results. We also showed the contribution of topologically associated domain maps to WGS data interpretation. Paired-end WGS is a valid strategy and may be used for structural variation characterisation in a clinical setting."	"MEF2C-related epilepsy: Delineating the phenotypic spectrum from a novel mutation and literature review. MEF2C-related epilepsy has been poorly described in the literature, despite a consistent MEF2C haploinsufficiency phenotype characterized by severe language impairment and motor delay (MIM# 613443). We aimed to delineate the spectrum of electroclinical manifestations of MEF2C-related epilepsy from an illustrative case and literature review. A retrospective chart review of our case was performed followed by a literature review on PubMed and OMIM. Publications including patients with MEF2C pathogenic, likely pathogenic variants, or microdeletions without involvement of other genes were selected. The index case is a 2-year-old male with global developmental delay who presented at 7 months with atypical febrile seizures, generalized myoclonias, and focal impaired awareness seizures. Neuroimaging studies were unremarkable and electroencephalograms showed high voltage 200-400uV, 2-2.5 Hz generalized spike-and-waves and polyspikes with alternating frontal predominance, and multifocal spike-and-slow waves. Whole exome sequencing showed an unreported de novo likely pathogenic variant in the MEF2C gene c.236 G &gt; C (p.Arg79Pro). Data from ten additional publications including 22 patients were gathered. From the 23 patients in total, 19 (82%) had seizures. Febrile seizures were most common, but myoclonic, focal-onset and generalized seizures were also reported. Electroencephalogram findings were described in eleven, and nine (82%) showed epileptiform abnormalities. MEF2C-related epilepsy may be described as a spectrum of manifestations including febrile seizures, myoclonia, and focal-onset or generalized seizures. Electroencephalogram is consistently abnormal, showing findings such as background slowing, multifocal and generalized epileptiform discharges and polyspikes. It remains unclear whether most patients are responsive or refractory to treatment with anti-epileptic medications."	"Integrated analysis of human transcriptome data for Rett syndrome finds a network of involved genes. Rett syndrome (RTT) is a rare disorder causing severe intellectual and physical disability. The cause is a mutation in the gene coding for the methyl-CpG binding protein 2 (MECP2), a multifunctional regulator protein. Purpose of the study was integration and investigation of multiple gene expression profiles in human cells with impaired MECP2 gene to obtain a robust, data-driven insight in molecular disease mechanisms. Information about changed gene expression was extracted from five previously published studies, integrated and the resulting differentially expressed genes were analysed using overrepresentation analysis of biological pathways and gene ontology, and network analysis. We identified a set of genes, which are significantly changed not in all but several transcriptomics datasets and were not mentioned in the context of RTT before. We found that these genes are involved in several processes and molecular pathways known to be affected in RTT. Integrating transcription factors we identified a possible link how MECP2 regulates cytoskeleton organisation via MEF2C and CAPG. Integrative analysis of omics data and prior knowledge databases is a powerful approach to identify links between mutation and phenotype especially in rare disease research where little data is available."	"Genetics of Alzheimer's Disease. Alzheimer's disease (AD) related genes have been elucidated by advanced genetic techniques. Familial autosomal dominant AD genes founded by linkage analyses are APP, PSEN1, PSEN2, ABCA7, and SORL1. Genome-wide association studies have found risk genes such as ABCA7, BIN1, CASS4, CD33, CD2AP, CELF1, CLU, CR1, DSG2, EPHA1, FERMT2, HLA-DRB5-HLA-DRB1, INPP5D, MEF2C, MS4A6A/MS4A4E, NME8, PICALM, PTK2B, SLC24A4, SORL1, and ZCWPW1. ABCA7, SORL1, TREM2, and APOE are proved to have high odds ratio (&gt;2) in risk of AD using next generation sequencing studies. Thanks to the promising genetic techniques such as CRISPR-CAS9 and single-cell RNA sequencing opened a new era in genetics. CRISPR-CAS9 can directly link genetic knowledge to future treatment. Single-cell RNA sequencing are providing useful information on cell biology and pathogenesis of diverse diseases."	"LncRNA-MEG3 promotes bovine myoblast differentiation by sponging miR-135. Long noncoding RNA maternally expressed gene 3 (lncRNA-MEG3) is an important regulator in multiple biological functions. However, lncRNA-MEG3's function in cattle growth and regulatory mechanism on bovine skeletal muscle development has not yet been well studied. In this project, we first investigated lncRNA-MEG3's expression profile and detected that it was highly expressed in bovine skeletal muscle tissue and its RNA level was kept increasingly during the early phase of bovine primary myoblast differentiation. Using luciferase reporter assays, we identified the lncRNA-MEG3 core promoter containing putative transcription factor binding site for myocyte enhancer factor 2C (MEF2C). Interestingly, we found that LncRNA-MEG3 could significantly upregulate and downregulate myosin heavy chain ( MHC), myogenin ( MyoG), and MEF2C through overexpression and RNAi strategies, respectively. Using luciferase reporter assays, we also verified lncRNA-MEG3 as a miR-135 sponge. Overexpression of miR-135 markedly inhibited the wild type of lncRNA-MEG3, but not the mutant lncRNA-MEG3 reporter. The luciferase activity of miR-135 sensor could be rescued by lncRNA-MEG3 via competing for miRNA-135. In addition, the luciferase activity of MEF2C was significantly upregulated by the wild type of lncRNA-MEG3. This study, for the first time, revealed that lncRNA-MEG3 could promote bovine skeletal muscle differentiation via interacting with miRNA-135 and MEF2C. The results were valuable for further studies and applications of lncRNA related roles in beef molecular breeding."	"Genetics of Bone and Muscle Interactions in Humans. To summarize the evidence from recent studies on the shared genetics between bone and muscle in humans. Genome-wide association studies (GWAS) have successfully identified a multitude of loci influencing the variability of different bone or muscle parameters, with multiple loci overlapping between the traits. In addition, joint analyses of multiple correlated musculoskeletal traits (i.e., multivariate GWAS) have underscored several genes with possible pleiotropic effects on both bone and muscle including MEF2C and SREBF1. Notably, several of the proposed pleiotropic genes have been validated using human cells or animal models. It is clear that the study of pleiotropy may provide novel insights into disease pathophysiology potentially leading to the identification of new treatment strategies that simultaneously prevent or treat both osteoporosis and sarcopenia. However, the role of muscle factors (myokines) that stimulate bone metabolism, as well as osteokines that affect muscles, is in its earliest stage of understanding."	"Circular RNA circHIPK3 Promotes the Proliferation and Differentiation of Chicken Myoblast Cells by Sponging miR-30a-3p. Circular RNAs and microRNAs widely exist in various species and play crucial roles in multiple biological processes. It is essential to study their roles in myogenesis. In our previous sequencing data, both miR-30a-3p and circular HIPK3 (circHIPK3) RNA, which are produced by the third exon of the HIPK3 gene, were differentially expressed among chicken skeletal muscles at 11 embryo age (E11), 16 embryo age (E16), and 1-day post-hatch (P1). Here, we investigated their potential roles in myogenesis. Proliferation experiment showed that miR-30a-3p could inhibit the proliferation of myoblast. Through dual-luciferase assay and Myosin heavy chain (MYHC) immunofluorescence, we found that miR-30a-3p could inhibit the differentiation of myoblast by binding to Myocyte Enhancer Factor 2 C (MEF2C), which could promote the differentiation of myoblast. Then, we found that circHIPK3 could act as a sponge of miR-30a-3p and exerted a counteractive effect of miR-30a-3p by promoting the proliferation and differentiation of myoblasts. Taking together, our data suggested that circHIPK3 could promote the chicken embryonic skeletal muscle development by sponging miR-30a-3p."	"Role of cyclooxygenase-2-mediated prostaglandin E2-prostaglandin E receptor 4 signaling in cardiac reprogramming. Direct cardiac reprogramming from fibroblasts can be a promising approach for disease modeling, drug screening, and cardiac regeneration in pediatric and adult patients. However, postnatal and adult fibroblasts are less efficient for reprogramming compared with embryonic fibroblasts, and barriers to cardiac reprogramming associated with aging remain undetermined. In this study, we screened 8400 chemical compounds and found that diclofenac sodium (diclofenac), a non-steroidal anti-inflammatory drug, greatly enhanced cardiac reprogramming in combination with Gata4, Mef2c, and Tbx5 (GMT) or GMT plus Hand2. Intriguingly, diclofenac promoted cardiac reprogramming in mouse postnatal and adult tail-tip fibroblasts (TTFs), but not in mouse embryonic fibroblasts (MEFs). Mechanistically, diclofenac enhanced cardiac reprogramming by inhibiting cyclooxygenase-2, prostaglandin E2/prostaglandin E receptor 4, cyclic AMP/protein kinase A, and interleukin 1β signaling and by silencing inflammatory and fibroblast programs, which were activated in postnatal and adult TTFs. Thus, anti-inflammation represents a new target for cardiac reprogramming associated with aging."	"Targeted resequencing of 358 candidate genes for autism spectrum disorder in a Chinese cohort reveals diagnostic potential and genotype-phenotype correlations. Autism spectrum disorder (ASD) is a childhood neuropsychiatric disorder with a complex genetic architecture. The diagnostic potential of a targeted panel of ASD genes has only been evaluated in small cohorts to date and is especially understudied in the Chinese population. Here, we designed a capture panel with 358 genes (111 syndromic and 247 nonsyndromic) for ASD and sequenced a Chinese cohort of 539 cases evaluated with the Autism Diagnostic Interview-Revised (ADI-R) and the Autism Diagnostic Observation Schedule (ADOS) as well as 512 controls. ASD cases were found to carry significantly more ultra-rare functional variants than controls. A subset of 78 syndromic and 54 nonsyndromic genes was the most significantly associated and should be given high priority in the future screening of ASD patients. Pathogenic and likely pathogenic variants were detected in 9.5% of cases. Variants in SHANK3 and SHANK2 were the most frequent, especially in females, and occurred in 1.2% of cases. Duplications of 15q11-13 were detected in 0.8% of cases. Variants in CNTNAP2 and MEF2C were correlated with epilepsy/tics in cases. Our findings reveal the diagnostic potential of ASD genetic panel testing and new insights regarding the variant spectrum. Genotype-phenotype correlations may facilitate the diagnosis and management of ASD."	"Venous endothelin modulates responsiveness of cardiac sympathetic axons to arterial semaphorin. Developing neurons of the peripheral nervous system reach their targets via cues that support directional growth, a process known as axon guidance. In investigating how sympathetic axons reach the heart in mice, we discovered that a combination of guidance cues are employed in sequence to refine axon outgrowth, a process we term second-order guidance. Specifically, endothelin-1 induces sympathetic neurons expressing the receptor Ednra to project to the vena cavae leading to the heart. Endothelin signaling in turn induces expression of the repulsive receptor Plexin-A4, via induction of the transcription factor MEF2C. In the absence of endothelin or plexin signaling, sympathetic neurons misproject to incorrect competing vascular trajectories (the dorsal aorta and intercostal arteries). The same anatomical and physiological consequences occur in Ednra<sup>+/-</sup>; Plxna4<sup>+/-</sup> double heterozygotes, genetically confirming functional interaction. Second-order axon guidance therefore multiplexes a smaller number of guidance cues in sequential fashion, allowing precise refinement of axon trajectories."	"Identification of the Regulatory Elements and Target Genes of Megakaryopoietic Transcription Factor MEF2C. Megakaryopoiesis produces specialized haematopoietic stem cells in the bone marrow that give rise to megakaryocytes which ultimately produce platelets. Defects in megakaryopoiesis can result in altered platelet counts and physiology, leading to dysfunctional haemostasis and thrombosis. Additionally, dysregulated megakaryopoiesis is also associated with myeloid pathologies. Transcription factors play critical roles in cell differentiation by regulating the temporal and spatial patterns of gene expression which ultimately decide cell fate. Several transcription factors have been described as regulating megakaryopoiesis including myocyte enhancer factor 2C (MEF2C); however, the genes regulated by MEF2C that influence megakaryopoiesis have not been reported. Using chromatin immunoprecipitation-sequencing and Gene Ontology data we identified five candidate genes that are bound by MEF2C and regulate megakaryopoiesis: MOV10, AGO3, HDAC1, RBBP5 and WASF2. To study expression of these genes, we silenced MEF2C gene expression in the Meg01 megakaryocytic cell line and in induced pluripotent stem cells by CRISPR/Cas9 editing. We also knocked down MEF2C expression in cord blood-derived haematopoietic stem cells by siRNA. We found that absent or reduced MEF2C expression resulted in defects in megakaryocytic differentiation and reduced levels of the candidate target genes. Luciferase assays confirmed that genomic sequences within the target genes are regulated by MEF2C levels. Finally, we demonstrate that small deletions linked to a platelet count-associated single nucleotide polymorphism alter transcriptional activity, suggesting a mechanism by which genetic variation in MEF2C alters platelet production. These data help elucidate the mechanism behind MEF2C regulation of megakaryopoiesis and genetic variation driving platelet production."	"Transcriptional cofactor Vgll2 is required for functional adaptations of skeletal muscle induced by chronic overload. Skeletal muscle is composed of heterogeneous populations of myofibers classified as slow- and fast-twitch fibers. Myofiber size and composition are drastically changed in response to physiological demands. We previously showed that transcriptional cofactor vestigial-like (Vgll) 2 is a pivotal regulator of slow muscle gene programming under sedentary conditions. However, whether Vgll2 is required for skeletal muscle adaptations after chronic overload is unclear. Therefore, we investigated the role of Vgll2 in chronic overload-inducing skeletal muscle adaptations using synergist ablation (SA) on plantaris. We found that Vgll2 is an essential regulator of the switch towards a slow-contractile phenotype and oxidative metabolism during chronic overload. Mice lacking Vgll2 exhibited limited fiber type transition and downregulation of genes related to lactate metabolism and their regulator peroxisome proliferator-activated receptor gamma coactivator 1α1, after SA, was augmented in Vgll2-deficient mice compared with in wild-type mice. Mechanistically, increased muscle usage elevated Vgll2 levels and promoted the interaction between Vgll2 and its transcription partners such as TEA domain1 (TEAD1), MEF2c, and NFATc1. Calcium ionophore treatment promoted nuclear translocation of Vgll2 and increased TEAD-dependent MYH7 promotor activity in a Vgll2-dependent manner. Taken together, these data demonstrate that Vgll2 plays an important role for functional adaptation of skeletal muscle to chronic overload."	"Lineage-specific reorganization of nuclear peripheral heterochromatin and H3K9me2 domains. Dynamic organization of chromatin within the three-dimensional nuclear space has been postulated to regulate gene expression and cell fate. Here, we define the genome-wide distribution of nuclear peripheral heterochromatin as a multipotent P19 cell adopts either a neural or a cardiac fate. We demonstrate that H3K9me2-marked nuclear peripheral heterochromatin undergoes lineage-specific reorganization during cell-fate determination. This is associated with spatial repositioning of genomic loci away from the nuclear periphery as shown by 3D immuno-FISH. Locus repositioning is not always associated with transcriptional changes, but a subset of genes is upregulated. Mef2c is specifically repositioned away from the nuclear periphery during early neurogenic differentiation, but not during early cardiogenic differentiation, with associated transcript upregulation. Myocd is specifically repositioned during early cardiogenic differentiation, but not during early neurogenic differentiation, and is transcriptionally upregulated at later stages of cardiac differentiation. We provide experimental evidence for lineage-specific regulation of nuclear architecture during cell-fate determination in a mouse cell line."	"Effects of long non-coding RNA uc.245 on cardiomyocyte-like differentiation in P19 cells via FOG2. Each year, cardiac diseases may cause a high morbidity and mortality worldwide. Long non-coding RNAs (lncRNAs) that contained ultra-conserved elements (UCEs) may play important roles on cardiomyocytes differentiation. Further investigations underlying mechanisms of lncRNA-UC regulating embryonic heart development are necessary. In this study, we investigated the effects of lnc-uc.245 on proliferation, migration, apoptosis, and cardiomyocyte-like differentiation in P19 cells with DMSO stimulation, and hypothesized that lnc-uc.245 would influence cardiomyocytes differentiation via FOG2. Lentiviral vectors of pGPU6/GFP/Neo-uc.245 and pGPU6/GFP/Neo-shRNA-uc.245 were respectively transfected into P19 cells to overexpress or silence uc.245. MTT assay, Annexin V-FITC/PI double-staining, scratch test and transwell assay were performed and the results showed that uc.245 overexpression could significantly suppress P19 cell proliferation, migration, cardiomyocyte-like differentiation but promote cell apoptosis. Contrarily, sh-uc.245 treatment caused the opposite changes. Uc.245 overexpression obviously downregulated the expression of cardiomyogenic-specific molecular markers (cTnI, ANP, α-MHC, Nkx2.5, GATA4, MEF2C) but remarkably upregulated the expression of FOG2. Subsequently, we transfected the recombinant vectors loaded FOG2 or shRRNA-FOG2 into P19 cells to further address the functional significance of FOG2 in uc.245-regulated cardiomyocyte-like differentiation. Interestingly, we found that overexpressing of FOG2 promoted cell proliferation, migration, and inhibited apoptosis both in uc.245 overexpressed and silenced P19 cells, especially in uc.245 silenced cell line. In addition, sh-FOG2 promoted cardiomyocyte-like differentiation and upregulated the expression of cardiomyogenic-specific markers at the gene and protein levels both in uc.245 overexpressed and silenced P19 cells. Similarly, this upregulation effect of sh-FOG2 was more obvious after uc.245 silencing. These findings suggest that FOG2 is a key mediator during uc.245-regulated differentiation of P19 cells into cardiomyocytes. It is expected that lnc-uc.245/FOG2 will become a promising therapeutic target for cardiac diseases."	"The MicroRNA-551a/MEF2C Axis Regulates the Survival and Sphere Formation of Cancer Cells in Response to 5-Fluorouracil. microRNAs regulate a diverse spectrum of cancer biology, including tumorigenesis, metastasis, stemness, and drug resistance. To investigate miRNA-mediated regulation of drug resistance, we characterized the resistant cell lines to 5-fluorouracil by inducing stable expression of miRNAs using lenti-miRNA library. Here, we demonstrate miR-551a as a novel factor regulating cell survival after 5-FU treatment. miR-551a-expressing cells (Hep3B-lenti-miR-551a) were resistant to 5-FU-induced cell death, and after 5-FU treatment, and showed significant increases in cell viability, cell survival, and sphere formation. It was further shown that myocyte-specific factor 2C is the direct target of miR-551a. Our results suggest that miR-551a plays a novel function in regulating 5-FU-induced cell death, and targeting miR-551a might be helpful to sensitize cells to anti-cancer drugs."	"Characterization of a novel microRNA, miR-188, elevated in serum of muscular dystrophy dog model. MicroRNAs (miRNAs) are non-coding small RNAs that regulate gene expression at the post-transcriptional level. Several miRNAs are exclusively expressed in skeletal muscle and participate in the regulation of muscle differentiation by interacting with myogenic factors. These miRNAs can be found at high levels in the serum of patients and animal models for Duchenne muscular dystrophy, which is expected to be useful as biomarkers for their clinical conditions. By miRNA microarray analysis, we identified miR-188 as a novel miRNA that is elevated in the serum of the muscular dystrophy dog model, CXMDJ. miR-188 was not muscle-specific miRNA, but its expression was up-regulated in skeletal muscles associated with muscle regeneration induced by cardiotoxin-injection in normal dogs and mice. Manipulation of miR-188 expression using antisense oligo and mimic oligo RNAs alters the mRNA expression of the myogenic regulatory factors, MRF4 and MEF2C. Our results suggest that miR-188 is a new player that participates in the gene regulation process of muscle differentiation and that it may serve as a serum biomarker reflecting skeletal muscle regeneration."	"Cardiac progenitor reprogramming for heart regeneration. Myocardial infarction leads to the loss of a huge number of cardiomyocytes and the reparatory response to this phenomenon is scar tissue formation, which impairs heart function. Direct reprogramming technology offers an alternative strategy for the generation of functional cardiomyocytes not only in vitro, but also in vivo in the site of injury. Results have demonstrated cardiac tissue regeneration and improvement in heart function after myocardial infarction following local injection of vectors encoding reprogramming transcription factors or miRNAs. This shows the great potential of cardiac reprogramming technology for heart regeneration. However, in addition to cardiomyocytes, other cell types, including endothelial cells and smooth muscle cells are also required to be generated in the damaged area in order to achieve complete cardiac tissue regeneration. To this aim induced proliferative/expandable cardiovascular progenitor cells (iCPCs) appear to be an appropriate cell source, which is capable of differentiation into three cardiovascular lineages both in vitro and in vivo. In this regard, this study goes over in vitro and in vivo cardiac reprogramming technology and specifically deals with cardiac progenitor reprogramming and its potential for heart regeneration."	"Mutations Defining Patient Cohorts With Elevated PD-L1 Expression in Gastric Cancer. The immunotherapy agent pembrolizumab has been approved for gastric cancer (GC) patients with recurrent or advanced disease who are PD-L1 positive. Mutations in the primary lesion may drive the expression of immune targets thereby priming the tumor to therapeutic sensitivity. In this study, we aimed to uncover mutations associated with elevated PD-L1 expression in GC patients. Data from 410 GC patients were available, including the mutational spectrum of 39,916 genes and expression values of 20,500 genes. PD-L1 gene expression was compared to the mutational status of each gene separately by using a Mann-Whitney U-test and a Receiver Operating Characteristic test. Only mutations with a prevalence over 5% were considered. Significance was accepted in cases of p &lt; 1E-05 and a fold change over 1.44. Mutations in 209 genes were associated with increased PD-L1 expression. These mutations were enriched in genes related to microtubule-based movement (p = 3.4E-4), cell adhesion (p = 4.9E-4), response to DNA-damage (p = 6.9E-4), and double-strand break-repair (p = 1.6E-3). Mutations in TTK (p = 8.8E-10, AUC = 0.77), COL7A1 (p = 2.0E-9, AUC = 0.74), KIF15 (p = 2.5E-9, AUC = 0.75), and BDP1 (p = 3.3E-9, AUC = 0.74) had the strongest link to elevated PD-L1 expression. Finally, we established a decision tree based on mutations in PIK3CA, MEF2C, SLC11A1, and KIF15 capable to separate patient sub-cohorts with elevated PD-L1 expression. In summary, we identified mutations associated with elevated PD-L1 expression that facilitate the development of better prognostic biomarkers for GC, and might offer insight into the underlying tumor biology."	"Protein kinase A mediates novel serine-584 phosphorylation of HDAC4. Given the well-established diversified signaling pathways for histone deacetylase 4 (HDAC4) and the regulation of HDAC4 by several post-translational modifications (PTMs), including phosphorylation, sumoylation, and ubiquitination, an unbiased and detailed analysis of HDAC4 PTMs is needed. In this study, we used matrix-assisted laser desorption/ionization time of flight (MALDI-TOF/TOF) to describe phosphorylation at serine 584 (Ser584) along with already-known dual phosphorylation at serines 265 and 266 (Ser265/266), that together regulate HDAC4 activity. Overexpression of site-specific HDAC4 mutants (S584A, S265/266A) in HEK 293T cells, followed by HDAC activity assays, revealed the mutants to be less active than the wild-type protein. In vitro kinase assays have established that Ser584 and Ser265/266 are phosphorylated by protein kinase A (PKA). Luciferase assays driven by the myocyte enhancer factor 2 (MEF2) promoter and real-time PCR analysis of the MEF2 target genes show that the S584A and S265/266A mutants are less repressive than the wild-type. Furthermore, treatment with PKA activators such as 8-Bromo-cAMP and forskolin, and silencing either by shRNA or its inhibitor H-89 in a mouse myoblast cell line (C2C12) and in a non-muscle human cell line (K562), confirmed in vivo phosphorylation of HDAC4 in C2C12 but not in K562 cells, indicating the specific functional significance of HDAC4 phosphorylation in muscle cells. Thus, we identified PKA-induced Ser584 phosphorylation of HDAC4 as a yet unknown regulatory mechanism of the HDAC4-MEF2 axis."	"hdac4 mediates perichondral ossification and pharyngeal skeleton development in the zebrafish. Histone deacetylases (HDACs) are epigenetic factors that function to repress gene transcription by removing acetyl groups from the N-terminal of histone lysines. Histone deacetylase 4 (HDAC4), a class IIa HDAC, has previously been shown to regulate the process of endochondral ossification in mice via repression of Myocyte enhancer factor 2c (MEF2C), a transcriptional activator of Runx2, which in turn promotes chondrocyte maturation and production of bone by osteoblasts. In this study, we generated two zebrafish lines with mutations in hdac4 using CRISPR/Cas9 and analyzed mutants for skeletal phenotypes and expression of genes known to be affected by Hdac4 expression. Lines have insertions causing a frameshift in a proximal exon of hdac4 and a premature stop codon. Mutations are predicted to result in aberrant protein sequence and a truncated protein, eliminating the Mef2c binding domain and Hdac domain. Zygotic mutants from two separate lines show a significant increase in ossification of pharyngeal ceratohyal cartilages at 7 days post fertilization (dpf) (p &lt; 0.01, p &lt; 0.001). At 4 dpf, mutant larvae have a significant increase of expression of runx2a and runx2b in the ceratohyal cartilage (p &lt; 0.05 and p &lt; 0.01, respectively). A subset of maternal-zygotic (mz) mutant and heterozygote larvae (40%) have dramatically increased ossification at 7 dpf compared to zygotic mutants, including formation of a premature anguloarticular bone and mineralization of the first and second ceratobranchial cartilages and symplectic cartilages, which normally does not occur until fish are approximately 10 or 12 dpf. Some maternal-zygotic mutants and heterozygotes show loss of pharyngeal first arch elements (25.9% and 10.2%, respectively) and neurocranium defects (30.8% and 15.2%, respectively). Analysis of RNA-seq mRNA transcript levels and in situ hybridizations from zygotic stages to 75-90% epiboly indicates that hdac4 is highly expressed in early embryos, but diminishes by late epiboly, becoming expressed again in larval stages. Loss of function of hdac4 in zebrafish is associated with increased expression of runx2a and runx2b targets indicating that a role for hdac4 in zebrafish is to repress activation of ossification of cartilage. These findings are consistent with observations of precocious cartilage ossification in Hdac4 mutant mice, demonstrating that the function of Hdac4 in skeletal development is conserved among vertebrates. Expression of hdac4 mRNA in embryos younger than 256-512 cells indicates that there is a maternal contribution of hdac4 to the early embryo. The increase in ossification and profound loss of first pharyngeal arch elements and anterior neurocranium in a subset of maternal-zygotic mutant and heterozygote larvae suggests that maternal hdac4 functions in cartilage ossification and development of cranial neural crest-derived structures."	"Binary Colloidal Crystals Drive Spheroid Formation and Accelerate Maturation of Human-Induced Pluripotent Stem Cell-Derived Cardiomyocytes. The development of human-induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) provides significant advances to cell therapy, disease modeling, and drug screening applications. However, the current differentiation protocol is inefficient in mimicking biophysical and biochemical characteristics of cardiac niche. Hence, immature cardiomyocytes are often generated. In this study, hiPSC-CMs were generated on a new family of substrates called monolayer binary colloidal crystals (BCCs). Four BCCs were fabricated with different sizes (2 or 5 or 0.4 or 0.2 μm) and materials [Si or polystyrene (PS) or poly(methyl methacrylate)] abbreviated as 2PS, 5PS, 2PM, and 5PM. BCCs have complex surface micro-/nanotopographies and heterogeneous chemistries which are important modulators in microenvironments in vitro. The results showed that hiPSCs formed adhered spheroids with strong pluripotent markers ( Oct4, Nanog, and Sox2) on PM surfaces compared to PS and flat surfaces. After 30-day differentiation, hiPSC-CMs on PM surfaces showed markedly improved myofibril ultrastructures, Ca<sup>2+</sup> handling, and electrophysiological properties, indicating that more mature hiPSC-CMs were generated. hiPSC-CMs generated on 5PM are more similar to adult heart tissue compared to other surfaces in terms of genes ( ACTC1, TNNT2, RYR2, SERCA2a, SCN5a, KCNJ2, CACNA1c, ITGB1, GJA1, MYH6, and MYH7) and protein (ssTnI and cTnI) expressions. We further demonstrated that 5PM surfaces facilitated cadherin switching (from E- to N-) during cardiac differentiation and mature N-cadherin expression, which were positively correlated with the cardiogensis markers ( GATA4, MEF2c, and NKX2.5). This study illuminated that a tailored surface nanotopography was beneficial in hiPSC culture and in situ cardiac differentiation. This one-step approach and BCCs can be a next-generation tool for hiPSC expansion and CM differentiation."	"MiRNAs differentially expressed in skeletal muscle of animals with divergent estimated breeding values for beef tenderness. MicroRNAs (miRNAs) are small noncoding RNAs of approximately 22 nucleotides, highly conserved among species, which modulate gene expression by cleaving messenger RNA target or inhibiting translation. MiRNAs are involved in the regulation of many processes including cell proliferation, differentiation, neurogenesis, angiogenesis, and apoptosis. Beef tenderness is an organoleptic characteristic of great influence in the acceptance of meat by consumers. Previous studies have shown that collagen level, marbling, apoptosis and proteolysis are among the many factors that affect beef tenderness. Considering that miRNAs can modulate gene expression, this study was designed to identify differentially expressed miRNAs that could be modulating biological processes involved with beef tenderness. Deep sequence analysis of miRNA libraries from longissimus thoracis muscle allowed the identification of 42 novel and 308 known miRNAs. Among the known miRNAs, seven were specifically expressed in skeletal muscle. Differential expression analysis between animals with high (H) and low (L) estimated breeding values for shear force (EBVSF) revealed bta-mir-182 and bta-mir-183 are up-regulated (q value &lt; 0.05) in animals with L EBVSF, and bta-mir-338 is up-regulated in animals with H EBVSF. The number of bovine predicted targets for bta-mir-182, bta-mir-183 and bta-mir-338 were 811, 281 and 222, respectively, which correspond to 1204 unique target genes. Among these, four of them, MEF2C, MAP3K2, MTDH and TNRC6B were common targets of the three differentially expressed miRNAs. The functional analysis identified important pathways related to tenderness such as apoptosis and the calpain-calpastatin system. The results obtained indicate the importance of miRNAs in the regulatory mechanisms that influence muscle proteolysis and meat tenderness and contribute to our better understanding of the role of miRNAs in biological processes associated with beef tenderness."	"In vitro characterization of goat skeletal muscle satellite cells. Skeletal muscle satellite cells (SMSCs) provide a good model for the study of postnatal muscle growth and intramuscular adipogenesis because they have myogenic and adipogenic differentiation ability. In this study, we harvested goat SMSCs using pronase digestion method. Then, the cells were purified from stratified liquids between 40 and 90% percoll. Multinucleated myotubes formed and the myogenic genes were expressed during the myogenic differentiation. PAX7 showed the highest expression level on the proliferating phase and decreased during differentiation. On the proliferating stage, the expression level of MyoG and MEF2C was relatively low. After entering the differentiation stage, the expression of MyoD, MyoG, and MEF2C was increased, and then decline subsequently. During adipogenic differentiation, a lot of lipid droplets were present around the cells at 7 d, and the adipogenic-related genes were expressed. The ADIPOQ, PPARγ and SREBP-1 expression levels were up-regulated during adipogenic differentiation, while the expression of ACC, FASN and C/EBPα were increased at 4 d, and then declined at 7 d. This study established a successful system for isolation, purification and identification of goat SMSCs. It is demonstrated that goat skeletal satellite cells are multipotential and can be induced into myoblasts and adipocytes."	"Aggregation of Child Cardiac Progenitor Cells Into Spheres Activates Notch Signaling and Improves Treatment of Right Ventricular Heart Failure. Congenital heart disease can lead to life-threatening right ventricular (RV) heart failure. Results from clinical trials support expanding cardiac progenitor cell (CPC) based therapies. However, our recent data show that CPCs lose function as they age, starting as early as 1 year. To determine whether the aggregation of child (1-5-year-old) CPCs into scaffold-free spheres can improve differentiation by enhancing Notch signaling, a known regulator of CPC fate. We hypothesized that aggregated (3-dimensional [3D]) CPCs will repair RV heart failure better than monolayer (2-dimensional [2D]) CPCs. Spheres were produced with 1500 CPCs each using a microwell array. CPC aggregation significantly increased gene expression of Notch1 compared with 2D CPCs, accompanied by significant upregulation of cardiogenic transcription factors (GATA4, HAND1, MEF2C, NKX2.5, and TBX5) and endothelial markers (CD31, FLK1, FLT1, VWF). Blocking Notch receptor activation with the γ-secretase inhibitor DAPT (N-[N-(3,5-difluorophenacetyl)-L-alanyl]-S-phenylglycine t-butyl ester) diminished these effects. To evaluate the therapeutic improvements of CPC aggregation, RV heart failure was induced in athymic rats by pulmonary artery banding, and cells were implanted into the RV free wall. Echocardiographic measurements 28 days postimplantation showed significantly improved RV function with 3D compared with 2D CPCs. Tracking implanted CPCs via DiR (1,1'-dioctadecyl-3,3,3',3'-tetramethylindotricarbocyanine iodide)-labeling showed improved retention of 3D CPCs. Transducing 3D CPCs with Notch1-shRNA (short hairpin RNA) did not reduce retention, but significantly reduced RV functional improvements. Histological analyses showed 3D treatment reduced RV fibrosis and increased angiogenesis. Although 3D CPCs formed CD31<sup>+</sup> vessel-like cells in vivo, these effects are more likely because of improved 3D CPC exosome function compared with 2D CPC exosomes. Spherical aggregation improves child CPC function in a Notch-dependent manner. The strong reparative ability of CPC spheres warrants further investigation as a treatment for pediatric heart failure, especially in older children where reparative ability may be reduced."	"The Unique Mechanisms of Cellular Proliferation, Migration and Apoptosis are Regulated through Oocyte Maturational Development-A Complete Transcriptomic and Histochemical Study. The growth and development of oocyte affect the functional activities of the surrounding somatic cells. These cells are regulated by various types of hormones, proteins, metabolites, and regulatory molecules through gap communication, ultimately leading to the development and maturation of oocytes. The close association between somatic cells and oocytes, which together form the cumulus-oocyte complexes (COCs), and their bi-directional communication are crucial for the acquisition of developmental competences by the oocyte. In this study, oocytes were extracted from the ovaries obtained from crossbred landrace gilts and subjected to in vitro maturation. RNA isolated from those oocytes was used for the subsequent microarray analysis. The data obtained shows, for the first time, variable levels of gene expression (fold changes higher than |2| and adjusted p-value &lt; 0.05) belonging to four ontological groups: regulation of cell proliferation (GO:0042127), regulation of cell migration (GO:0030334), and regulation of programmed cell death (GO:0043067) that can be used together as proliferation, migration or apoptosis markers. We have identified several genes of porcine oocytes (ID2, VEGFA, BTG2, ESR1, CCND2, EDNRA, ANGPTL4, TGFBR3, GJA1, LAMA2, KIT, TPM1, VCP, GRID2, MEF2C, RPS3A, PLD1, BTG3, CD47, MITF), whose expression after in vitro maturation (IVM) is downregulated with different degrees. Our results may be helpful in further elucidating the molecular basis and functional significance of a number of gene markers associated with the processes of migration, proliferation and angiogenesis occurring in COCs."	"Ferulic acid regulates muscle fiber type formation through the Sirt1/AMPK signaling pathway. Ferulic acid (FA) is a polyphenolic compound of plant cell walls. Several recent studies demonstrated that polyphenolic compounds could regulate muscle fiber type formation. In this study, we investigated the effect of FA on muscle fiber type formation and also explored its molecular mechanism in mouse C2C12 myotubes. Real-time quantitative PCR showed that FA significantly increased the mRNA abundances of myosin heavy chain (MyHC) I, MyHC IIa, sirtuin1 (Sirt1), peroxisome proliferator-activated receptor gamma coactivator-1-α (PGC-1α) and myocyte enhancer factor 2C (MEF2C), but decreased the mRNA abundance of MyHC IIb. FA increased succinate dehydrogenase (SDH) activity and decreased lactate dehydrogenase (LDH) activity. Western blot analysis showed that FA significantly increased the protein level of slow-MyHC, but significantly decreased the protein level of fast-MyHC, which were attenuated by AMP-activated protein kinase (AMPK) inhibitor Compound C, AMPKα2 siRNA or Sirt1 inhibitor EX527. We also showed that EX527 attenuated FA-induced increase in the phosphorylation levels of AMPK and liver kinase B1 (LKB1), indicating that AMPK serves as a downstream target of Sirt1. Our present study provides the first in vitro evidence that FA regulates muscle fiber type formation via the Sirt1/AMPK signal pathway."	"Mesenchymal stem cells facilitate cardiac differentiation in Sox2-expressing cardiac C-kit cells in coculture. Stem cell therapy offers hope to reconstitute injured myocardium and salvage heart from failing. A recent approach using combinations of derived Cardiac-derived c-kit expressing cells (CCs) and mesenchymal stem cells (MSCs) in transplantation improved infarcted hearts with a greater functional outcome, but the effects of MSCs on CCs remain to be elucidated. We used a novel two-step protocol to clonogenically amplify colony forming c-kit expressing cells from 4- to 6-week-old C57BL/6N mice. This method yielded highly proliferative and clonogenic CCs with an average population doubling time of 17.2 ± 0.2, of which 80% were at the G1 phase. We identified two distinctly different CC populations based on its Sox2 expression, which was found to inversely related to their nkx2.5 and gata4 expression. To study CCs after MSC coculture, we developed micron-sized particles of iron oxide-based magnetic reisolation method to separate CCs from MSCs for subsequent analysis. Through validation using the sex and species mismatch CC-MSC coculture method, we confirmed that the purity of the reisolated cells was greater than 85%. In coculture experiment, we found that MSCs prominently enhanced Ctni and Mef2c expressions in Sox2 <sup>pos</sup> CCs after the induction of cardiac differentiation, and the level was higher than that of conditioned medium Sox2 <sup>pos</sup> CCs. However, these effects were not found in Sox2 <sup>neg</sup> CCs. Immunofluorescence labeling confirmed the presence of cardiac-like cells within Sox2 <sup>pos</sup> CCs after differentiation, identified by its cardiac troponin I and α-sarcomeric actinin expressions. In conclusion, this study shows that MSCs enhance CC differentiation toward cardiac myocytes. This enhancement is dependent on CC stemness state, which is determined by Sox2 expression."	"Integrative functional genomic analysis of human brain development and neuropsychiatric risks. To broaden our understanding of human neurodevelopment, we profiled transcriptomic and epigenomic landscapes across brain regions and/or cell types for the entire span of prenatal and postnatal development. Integrative analysis revealed temporal, regional, sex, and cell type-specific dynamics. We observed a global transcriptomic cup-shaped pattern, characterized by a late fetal transition associated with sharply decreased regional differences and changes in cellular composition and maturation, followed by a reversal in childhood-adolescence, and accompanied by epigenomic reorganizations. Analysis of gene coexpression modules revealed relationships with epigenomic regulation and neurodevelopmental processes. Genes with genetic associations to brain-based traits and neuropsychiatric disorders (including MEF2C, SATB2, SOX5, TCF4, and TSHZ3) converged in a small number of modules and distinct cell types, revealing insights into neurodevelopment and the genomic basis of neuropsychiatric risks."	"Cardiovascular development and survival require Mef2c function in the myocardial but not the endothelial lineage. MEF2C is a member of the highly conserved MEF2 family of transcription factors and is a key regulator of cardiovascular development. In mice, Mef2c is expressed in the developing heart and vasculature, including the endothelium. Loss of Mef2c function in germline knockout mice leads to early embryonic demise and profound developmental abnormalities in the cardiovascular system. Previous attempts to uncover the cause of embryonic lethality by specifically disrupting Mef2c function in the heart or vasculature failed to recapitulate the global Mef2c knockout phenotype and instead resulted in relatively minor defects that did not compromise viability or result in significant cardiovascular defects. However, previous studies examined the requirement of Mef2c in the myocardial and endothelial lineages using Cre lines that begin to be expressed after the expression of Mef2c has already commenced. Here, we tested the requirement of Mef2c in the myocardial and endothelial lineages using conditional knockout approaches in mice with Cre lines that deleted Mef2c prior to onset of its expression in embryonic development. We found that deletion of Mef2c in the early myocardial lineage using Nkx2-5<sup>Cre</sup> resulted in cardiac and vascular abnormalities that were indistinguishable from the defects in the global Mef2c knockout. In contrast, early deletion of Mef2c in the vascular endothelium using an Etv2::Cre line active prior to the onset of Mef2c expression resulted in viable offspring that were indistinguishable from wild type controls with no overt defects in vascular development, despite nearly complete early deletion of Mef2c in the vascular endothelium. Thus, these studies support the idea that the requirement of MEF2C for vascular development is secondary to its requirement in the heart and suggest that the observed failure in vascular remodeling in Mef2c knockout mice results from defective heart function."	"Efficient in vivo direct conversion of fibroblasts into cardiomyocytes using a nanoparticle-based gene carrier. The reprogramming of induced cardiomyocytes (iCMs) has shown potential in regenerative medicine. However, in vivo reprogramming of iCMs is significantly inefficient, and novel gene delivery systems are required to more efficiently and safely induce in vivo reprogramming of iCMs for therapeutic applications in heart injury. In this study, we show that cationic gold nanoparticles (AuNPs) loaded with Gata4, Mef2c, and Tbx5 function as nanocarriers for cardiac reprogramming. The AuNP/GMT/PEI nanocomplexes show high reprogramming efficiency in human and mouse somatic cells with low cytotoxicity and direct conversion into iCMs without integrating factors into the genome. Importantly, AuNP/GMT/PEI nanocomplexes led to efficient in vivo conversion into cardiomyocytes after myocardial infarction (MI), resulting in the effective recovery of cardiac function and scar area. Taken together, these results show that the AuNP/GMT/PEI nanocarrier can be used to develop effective therapeutics for heart regeneration in cardiac disease patients."	"Lipin1 is required for skeletal muscle development by regulating MEF2c and MyoD expression. Lipin1 is critical for skeletal muscle development. Lipin1 regulates MyoD and myocyte-specific enhancer factor 2C (MEF2c) expression via the protein kinase C (PKC)/histone deacetylase 5-mediated pathway. Inhibition of PKCμ activity suppresses myoblast differentiation by inhibiting MyoD and MEF2c expression. Our previous characterization of global lipin1-deficient (fld) mice demonstrated that lipin1 played a novel role in skeletal muscle (SM) regeneration. The present study using cell type-specific Myf5-cre;Lipin1<sup>fl/fl</sup> conditional knockout mice (Lipin1<sup>Myf5cKO</sup> ) shows that lipin1 is a major determinant of SM development. Lipin1 deficiency induced reduced muscle mass and myopathy. Our results from lipin1-deficient myoblasts suggested that lipin1 regulates myoblast differentiation via the protein kinase Cμ (PKCμ)/histone deacetylase 5 (HDAC5)/myocyte-specific enhancer factor 2C (MEF2c):MyoD-mediated pathway. Lipin1 deficiency leads to the suppression of PKC isoform activities, as well as inhibition of the downstream target of PKCμ, class II deacetylase HDAC5 nuclear export, and, consequently, inhibition of MEF2c and MyoD expression in the SM of lipin1<sup>Myf5cKO</sup> mice. Restoration of diacylglycerol-mediated signalling in lipin1 deficient myoblasts by phorbol 12-myristate 13-acetate transiently activated PKC and HDAC5, and upregulated MEF2c expression. Our findings provide insights into the signalling circuitry that regulates SM development, and have important implications for developing intervention aimed at treating muscular dystrophy."	"Autocrine regulation of mesenchymal progenitor cell fates orchestrates tooth eruption. Formation of functional skeletal tissues requires highly organized steps of mesenchymal progenitor cell differentiation. The dental follicle (DF) surrounding the developing tooth harbors mesenchymal progenitor cells for various differentiated cells constituting the tooth root-bone interface and coordinates tooth eruption in a manner dependent on signaling by parathyroid hormone-related peptide (PTHrP) and the PTH/PTHrP receptor (PPR). However, the identity of mesenchymal progenitor cells in the DF and how they are regulated by PTHrP-PPR signaling remain unknown. Here, we show that the PTHrP-PPR autocrine signal maintains physiological cell fates of DF mesenchymal progenitor cells to establish the functional periodontal attachment apparatus and orchestrates tooth eruption. A single-cell RNA-seq analysis revealed cellular heterogeneity of PTHrP<sup>+</sup> cells, wherein PTHrP<sup>+</sup> DF subpopulations abundantly express PPR. Cell lineage analysis using tamoxifen-inducible PTHrP-creER mice revealed that PTHrP<sup>+</sup> DF cells differentiate into cementoblasts on the acellular cementum, periodontal ligament cells, and alveolar cryptal bone osteoblasts during tooth root formation. PPR deficiency induced a cell fate shift of PTHrP<sup>+</sup> DF mesenchymal progenitor cells to nonphysiological cementoblast-like cells precociously forming the cellular cementum on the root surface associated with up-regulation of Mef2c and matrix proteins, resulting in loss of the proper periodontal attachment apparatus and primary failure of tooth eruption, closely resembling human genetic conditions caused by PPR mutations. These findings reveal a unique mechanism whereby proper cell fates of mesenchymal progenitor cells are tightly maintained by an autocrine system mediated by PTHrP-PPR signaling to achieve functional formation of skeletal tissues."	"A neuronal enhancer network upstream of MEF2C is compromised in patients with Rett-like characteristics. Mutations in myocyte enhancer factor 2C (MEF2C), an important transcription factor in neurodevelopment, are associated with a Rett-like syndrome. Structural variants (SVs) upstream of MEF2C, which do not disrupt the gene itself, have also been found in patients with a similar phenotype, suggesting that disruption of MEF2C regulatory elements can also cause a Rett-like phenotype. To characterize those elements that regulate MEF2C during neural development and that are affected by these SVs, we used genomic tools coupled with both in vitro and in vivo functional assays. Through circularized chromosome conformation capture sequencing (4C-seq) and the assay for transposase-accessible chromatin using sequencing (ATAC-seq), we revealed a complex interaction network in which the MEF2C promoter physically contacts several distal enhancers that are deleted or translocated by disease-associated SVs. A total of 16 selected candidate regulatory sequences were tested for enhancer activity in vitro, with 14 found to be functional enhancers. Further analyses of their in vivo activity in zebrafish showed that each of these enhancers has a distinct activity pattern during development, with eight enhancers displaying neuronal activity. In summary, our results disentangle a complex regulatory network governing neuronal MEF2C expression that involves multiple distal enhancers. In addition, the characterized neuronal enhancers pose as novel candidates to screen for mutations in neurodevelopmental disorders, such as Rett-like syndrome."	"WD40 repeat and FYVE domain containing 3 is essential for cardiac development. WD40 repeat and FYVE domain containing 3 (WDFY3) is an adaptor protein involved in selective degradation of protein aggregates by autophagy. Recent studies have revealed that Wdfy3 is critical in the regulation of brain development and osteoclastogenesis in vivo. However, the function of Wdfy3 in cardiac development remains completely unknown. In this study, we explore the role of Wdfy3 in cardiac morphogenesis using Wdfy3-deficient mice. Wdfy3 was expressed in the developing heart in mice and peaked at embryonic day 12.5 (E12.5). Loss of Wdfy3 in mice led to embryonic and neonatal lethality. Wdfy3-deficient mice displayed various congenital heart defects including membranous ventricular septal defect (VSD), aortic overriding (AO), double outlet right ventricle (DORV), thinning of ventricular wall, ventricular dilation, and disorganized ventricular trabeculation at E14.5. Cell proliferation was reduced in the hearts from Wdfy3-deficient mice at E12.5 and E14.5, which was associated with enhanced p21 expression. Cardiomyocyte differentiation was diminished as demonstrated by reduced Myh6 and MLC2v in Wdfy3-deficient mice at E14.5. In addition, Nkx2-5 and Mef2c, two cardiac transcription factors regulating cardiomyocyte differentiation, were decreased in Wdfy3-deficient mice at E14.5. Apoptotic cell death remained unaltered. These data suggest that reduced cell proliferation and cardiomyocyte differentiation contribute to cardiac defects in Wdfy3-deficient mice. Mechanistically, loss of Wdfy3 led to a reduction in protein levels of Notch 1 intracellular domain and its downstream targets Hes1 and Hey1, which was accompanied with enhanced full-length Notch1 protein levels. In vitro luciferase assay showed that Wdfy3 deficiency induced activity of p21 promoter, while diminished activity of Hes1 promoter through modulation of Notch1 signalling. Moreover, Wdfy3 was co-localized with Notch1 in primary embryonic cardiomyocytes. Endogenous Wdfy3 physically interacted with full-length Notch1 in the developing heart. These results suggest that Notch1 signalling is perturbed in the hearts from Wdfy3-deficient mice. No alteration of autophagy was detected in the hearts from Wdfy3-deficient mice. Taken together, our data suggest that Wdfy3 plays an essential role in cardiac development, which may be mediated by modulation of Notch1 signalling."	"MicroRNA-499-5p regulates skeletal myofiber specification via NFATc1/MEF2C pathway and Thrap1/MEF2C axis. This study aimed to investigate the role of microRNA-499-5p (miR-499-5p) in the regulation of skeletal myofiber specification and its underlying mechanisms. Mouse C2C12 cells were used in this study. Cyclosporin A and siRNA targeting Thrap1 (si-Thrap1) were used to inhibit NFATc1/MEF2C pathway and knockdown Thrap1, respectively. The expressions of miR-499-5p and genes were evaluated by real-time quantitative PCR and western blot analysis. Overexpression of miR-499-5p promoted oxidative fiber gene expression and repressed glycolytic fiber gene expression, affecting several factors associated with fiber specification including NFATc1/MEF2C pathway, PGC-1α, FoxO1 and Wnt5a. Inhibition of NFATc1/MEF2C pathway partly reduced the effect of miR-499-5p overexpression on muscle fiber gene expression. MiR-499-5p targeted Thrap1 in proliferating and differentiating C2C12 cells. Knockdown of Thrap1 showed a parallel function with miR-499-5p overexpression on muscle fiber gene expression and NFATc1/MEF2C pathway, accompanied by an increase of miR-499-5p level. The effects of miR-499-5p inhibitor on muscle fiber type specific gene expression and NFATc1/MEF2C pathway were effectively reversed by Thrap1 knockdown. MiR-499-5p regulated skeletal myofiber specification and affected several factors associated with fiber specification. MiR-499-5p regulated muscle gene expression partly through NFATc1/MEF2C pathway. We also showed a clue that miR-499-5p regulates skeletal muscle fiber specification in C2C12 cells through targeting Thrap1, thereby, promoting NFATc1/MEF2C pathway and then triggering a series of oxidative muscle fiber gene expression."	"ISL1 loss-of-function mutation contributes to congenital heart defects. Congenital heart defect (CHD) is the most common form of birth deformity and is responsible for substantial morbidity and mortality in humans. Increasing evidence has convincingly demonstrated that genetic defects play a pivotal role in the pathogenesis of CHD. However, CHD is a genetically heterogeneous disorder and the genetic basis underpinning CHD in the vast majority of cases remains elusive. This study was sought to identify the pathogenic mutation in the ISL1 gene contributing to CHD. A cohort of 210 unrelated patients with CHD and a total of 256 unrelated healthy individuals used as controls were registered. The coding exons and splicing boundaries of ISL1 were sequenced in all study subjects. The functional effect of an identified ISL1 mutation was evaluated using a dual-luciferase reporter assay system. A novel heterozygous ISL1 mutation, c.409G &gt; T or p.E137X, was identified in an index patient with congenital patent ductus arteriosus and ventricular septal defect. Analysis of the proband's pedigree revealed that the mutation co-segregated with CHD, which was transmitted in the family in an autosomal dominant pattern with complete penetrance. The nonsense mutation was absent in 512 control chromosomes. Functional analysis unveiled that the mutant ISL1 protein failed to transactivate the promoter of MEF2C, alone or in synergy with TBX20. This study firstly implicates ISL1 loss-of-function mutation with CHD in humans, which provides novel insight into the molecular mechanism of CHD, implying potential implications for genetic counseling and individually tailored treatment of CHD patients."	"Novel MEF2C point mutations in Chinese patients with Rett (-like) syndrome or non-syndromic intellectual disability: insights into genotype-phenotype correlation. MEF2C (Myocyte-specific enhancer factor 2C) has been associated with neurodevelopmental disorders. This study aimed at delineating the clinical profiles of MEF2C gene mutations. In total, 112 Chinese patients with intellectual disability (ID) were recruited, including 44 patients presented with Rett syndrome (RTT) or RTT-like syndrome, and 68 patients with non-syndromic ID. Targeted next-generation sequencing (NGS) was performed. Detailed clinical information was collected. Five heterozygous MEF2C gene mutations were identified, of which three were novel. The MEF2C mutant rate was 4.5% (5/112) in total, and 6.8% (3/44) in the RTT (-like) cohort. All patients with MEF2C gene mutation presented with cognitive impairment, gross motor delay, speech disorder and autistic features. Four patients had epilepsy, which responded well to antiepileptic drugs. One female was diagnosed with classical RTT, two females with RTT-like syndrome, and two males with non-syndromic ID. Generally, the phenotype of two males with relatively downstream mutations (c.565C &gt; T, p.Arg 189*; c.766C &gt; T, p.Arg 256*) was milder than that of three females with upstream mutations (c.48C &gt; G, p.Asn16Lys; c.334G &gt; T, p.Glu112* and c.403-1G &gt; T). Our findings expanded the current understanding of the consequences of MEF2C dysfunctions, especially MEF2C point mutations. MEF2C mutations are associated with a broad clinical spectrum, ranged from classical RTT to non-syndromic ID. Through our study, it can be inferred that there is correlation between the phenotype and MEF2C-genotype, the mutation site. Overall, the MEF2C gene mutational analysis should be performed in ID cohort, especially in patients with features overlapped with RTT."	"Priming with oxytocin and relaxin improves cardiac differentiation of adipose tissue-derived stem cells. Previous studies have identified the heart as a source and a target tissue for oxytocin and relaxin hormones. These hormones play important roles in the regulation of cardiovascular function and repair of ischemic heart injury. In the current study, we examined the impact of oxytocin and relaxin on the development of cardiomyocytes from mesenchymal stem cells. For this purpose, mouse adipose tissue-derived stem cells (ADSCs) were treated with different concentrations of oxytocin or relaxin for 4 days. Three weeks after initiation of cardiac induction, differentiated ADSCs expressed cardiac-specific genes, Gata4, Mef2c, Nkx2.5, Tbx5, α- and β-Mhc, Mlc2v, Mlc2a and Anp, and cardiac proteins including connexin 43, desmin and α-actinin. 10 <sup>-7</sup> M oxytocin and 50 ng/mL relaxin induced the maximum upregulation in the expression of cardiac markers. A combination of oxytocin and relaxin induced cardiomyocyte differentiation more potently than the individual factors. In our experiment, oxytocin-relaxin combination increased the population of cardiac troponin I-expressing cells to 6.84% as compared with 2.36% for the untreated ADSCs, 3.7% for oxytocin treatment and 3.41% for relaxin treatment groups. In summary, the results of this study indicated that oxytocin and relaxin hormones individually and in combination can improve cardiac differentiation of ADSCs, and treatment of the ADSCs and possibly other mesenchymal stem cells with these hormones may enhance their cardiogenic differentiation and survival after transplantation into the ischemic heart tissue."	"JAG1, MEF2C and BDNF polymorphisms associated with bone mineral density in women from Northern México Introduction: Osteoporosis is characterized by a low bone mineral density. Genetic composition is one of the most influential factors in determining bone mineral density (BMD). There are few studies on genes associated with BMD in the Mexican population.Objective: To investigate the association of eight single nucleotide polymorphisms (SNP) of JAG1, MEF2C and BDNF genes with BMD in women of Northern México.Materials and methods: This study involved 124 unrelated Mexican women between 40 and 80 years old. BMD was determined by dual X-ray absorptiometry. Genotyping was performed using allelic discrimination by real time PCR. We analyzed the SNP of JAG1 (rs6514116, rs2273061, rs2235811 and rs6040061), MEF2C (rs1366594, rs12521522 and rs11951031), and BDNF (rs6265) and the data using linear regression.Results: The JAG1 SNP rs2235811 was associated with the BMD of the total body under the dominant inheritance model (p=0,024). Although the other SNPs were not associated with BMD in any of the inheritance models studied, a trend was observed.Conclusion: Our results suggest that the SNP rs2235811 in the JAG1 gene might contribute to the variation in BMD in women from northern México."	"Tcf7l1 directly regulates cardiomyocyte differentiation in embryonic stem cells. The T-cell factor/lymphoid enhancer factor (TCF/LEF) family protein Tcf7l1 is highly abundant in embryonic stem cells (ESCs), regulating pluripotency and preparing epiblasts for further differentiation. Defects in the cardiovascular system in Tcf7l1-null mouse were considered secondary to mesoderm malformation. Here, we used temporally controlled Tcf7l1 expression in Tcf7l1-null ESCs to address whether Tcf7l1 directly contributes to cardiac forward programming. Tcf7l1 knockout during differentiation impaired cardiomyocyte formation but did not affect mesoderm formation. Tcf7l1-null ESCs showed delay in mesoderm formation, but once completed, ectopic Tcf7l1 augmented cardiomyocyte differentiation. Further, Tcf7l1-VP16 and Tcf7l1dN showed procardiac activity whereas Tcf7l1-En was ineffective. Our results support that Tcf7l1 contributes to cardiac lineage development as a β-catenin-independent transactivator of cardiac genes."	"B Cell Development sans B Cell Receptor Responsiveness Due to Unfolded Protein Response-Triggered Mef2c Protein Degradation. BCR engagement leads to activation and clonal expansion of B cells. The I-A<sup>12%</sup> mutant mouse possesses a branch site point mutation in the H2-Aa gene that causes highly reduced I-Aa protein expression. As I-A is a heterodimer made up of I-Aa and I-Ab, reduced I-Aa results not only in reduced surface I-A expression but also in an excess of unpaired I-Ab. B cells that develop in I-A<sup>12%</sup> mice proliferated in response to LPS stimulation but failed to do so upon BCR stimulation. Developing I-A<sup>12%</sup> B cells were engaged in unfolded protein response due to an excess of unpaired I-Ab. BCR responsiveness was restored by transduced I-Aa expression and by BiP, the unfolded protein response sensor. Reducing the load of unpaired I-Ab also restored BCR responsiveness of I-A<sup>12%</sup> B cells. Mef2c protein, a transcription factor required for BCR-stimulated proliferation, was missing in I-A<sup>12%</sup> B cells, and that transduced Mef2c expression restored BCR responsiveness. Mef2c protein appeared in I-A<sup>12%</sup> B cells after addition of proteasome inhibitors. Mef2c degradation was mediated by Skp2 E3 ligase, and that knockdown of Skp2 mRNA in I-A<sup>12%</sup> B cells restored BCR responsiveness. Our results point to a generalized incompatibility between BCR responsiveness and increased Skp2 stability. They also imply the existence of regulatory mechanisms other than Ig gene rearrangement that govern Mef2c turnover in a specific, exquisite, and dynamic fashion."	"A Novel Mouse Model for Cilia-Associated Cardiovascular Anomalies with a High Penetrance of Total Anomalous Pulmonary Venous Return. Primary cilia are small organelles projecting from the cell surface of many cell types. They play a crucial role in the regulation of various signaling pathway. In this study, we investigated the importance of cilia for heart development by conditionally deleting intraflagellar transport protein Ift88 using the col3.6-cre mouse. Analysis of col3.6;Ift88 offspring showed a wide spectrum of cardiovascular defects including double outlet right ventricle and atrioventricular septal defects. In addition, we found that in the majority of specimens the pulmonary veins did not properly connect to the developing left atrium. The abnormal connections found resemble those seen in patients with total anomalous pulmonary venous return. Analysis of mutant hearts at early stages of development revealed abnormal development of the dorsal mesocardium, a second heart field-derived structure at the venous pole intrinsically related to the development of the pulmonary veins. Data presented support a crucial role for primary cilia in outflow tract development and atrioventricular septation and their significance for the formation of the second heart field-derived tissues at the venous pole including the dorsal mesocardium. Furthermore, the results of this study indicate that proper formation of the dorsal mesocardium is critically important for the development of the pulmonary veins. Anat Rec, 302:136-145, 2019. © 2018 Wiley Periodicals, Inc."	"Epigallocatechin-3 gallate prevents pressure overload-induced heart failure by up-regulating SERCA2a via histone acetylation modification in mice. Heart failure is a common, costly, and potentially fatal condition. The cardiac sarcoplasmic reticulum Ca-ATPase (SERCA2a) plays a critical role in the regulation of cardiac function. Previously, low SERCA2a expression was revealed in mice with heart failure. Epigallocatechin-3-gallate (EGCG) can function as an epigenetic regulator and has been reported to enhance cardiac function. However, the underlying epigenetic regulatory mechanism is still unclear. In this study, we investigated whether EGCG can up-regulate SERCA2a via histone acetylation and play role in preventing heart failure. For this, we generated a mouse model of heart failure by performing a minimally invasive transverse aortic constriction (TAC) operation and used this to test the effects of EGCG. The TAC+EGCG group showed nearly normal cardiac function compared to that in the SHAM group. The expression of SERCA2a was decreased at both the mRNA and protein levels in the TAC group but was enhanced in the TAC+EGCG group. Levels of AcH3 and AcH3K9 were determined to decrease near the promoter region of Atp2a2 (the gene encoding SERCA-2a) in the TAC group, but were elevated in the TAC+EGCG group. Meanwhile, HDAC1 activity and binding near the Atp2a2 promoter were increased in the TAC group but decreased with EGCG addition. Further, binding levels of GATA4 and Mef2c near the Atp2a2 promoter region were reduced in TAC hearts, which might have been caused by histone hypoacetylation; this was reversed by EGCG. Together, upregulation of SERCA2a via the modification of histone acetylation plays a role in EGCG-mediated prevention of pressure overload-induced heart failure, and this might represent a novel pharmacological target for the treatment of heart failure."	"Mir-206 partially rescues myogenesis deficiency by inhibiting CUGBP1 accumulation in the cell models of myotonic dystrophy. Objectives: In this study, we aim to determine how CUG-expansion and the abundance of Celf1 regulates normal myocyte differentiation and reveal the role ofmiR-206 in myotonic dystrohy and explore a possible gene therapy vector. Methods: we set up CUG-expansion and Celf1 overexpression C2C12 cell models to imitate the myocyte differentiation defects of DM1, then transfected AdvmiR-206 into cell models, tested the level of myogenic markers MyoD, MyoG, Mef2c, Celf1 by RT-PCRand Western Blotting, detected myotube formation by myosin heavy chain immunostaining. Result: 3'-UTR CUG-expansion leads to myotube defects and impaired myoblasts differentiation. Overexpression of Celf1 inhibits myoblast differentiation and impairs differentiation. Knockdown of Celf1 partially rescues differentiation defects of myoblasts harboring CUG-expansion. miR-206 incompletely reverses myoblast differentiation inhibition induced by CUG-expansion and partially recuses myoblast differentiation defects induced by Celf1 overexpression. Conclusions: Ectopic miR-206 mimicking the endogenous temporal patterns specifically drives a myocyte program that boosts myoblast lineages, likely by promoting the expression of MyoD to rectify the myogenic deficiency by stimulating the accumulation of Celf1. Abbreviations: DMPK: (dystrophia myotonica protein kinase); 3'-UTR: (3'-untranslated region); MBNL1: (muscleblind-like [Drosophila]); DM1: (myotonic dystrophy type 1); GFP: (green fluorescent protein); RT-PCR: (quantitative reverse transcriptase-polymerase chain reaction); shRNA: (short hairpin RNA)."	"Myocyte Enhancer Factor 2c Regulates Dendritic Complexity and Connectivity of Cerebellar Purkinje Cells. Mef2c haploinsufficiency is implicated in behavioral deficits related to autism, schizophrenia, and intellectual disability. Although perturbations in the cerebellum, notably Purkinje cells, have been linked to these neurological disorders, the underlying mechanisms remain poorly understood. In this study, we investigated the roles of Mef2c in cerebellar Purkinje cells during the first three weeks of postnatal development. Our analysis revealed that in comparison to other members of the Mef2 family, Mef2c expression is limited to postnatal Purkinje cells. Because the role of Mef2c has not been assessed in GABAergic neurons, we set out to determine the functional significance of Mef2c by knocking down the expression of Mef2c selectively in Purkinje cells. We found that the loss of Mef2c expression during the first and second postnatal week results in an increase in dendritic arborization without impact on the general growth and migration of Purkinje cells. The influence of Mef2c on dendritic arborization persists throughout the first three weeks, but is most prominent during the first postnatal week suggesting a critical period of Mef2c activity. Additionally, the loss of Mef2c expression results in an increase in the number of spines accompanied by an increase in Gad67 and vGluT1 puncta and decrease in vGluT2 puncta. Thus, our results reveal the specific expression and functional relevance of Mef2c in developing Purkinje cells and offer insight to how disruption of the expression of Mef2c in a GABAergic neuronal subtype may lead to pathogenesis of cerebellar-associated disorders."	"In utero exposure to PM2.5 during gestation caused adult cardiac hypertrophy through histone acetylation modification. Ambient particles with a diameter of &lt;2.5 μm (PM2.5) is a global health concern, and exposure to PM2.5 contributes to the progression of cardiovascular morbidity and mortality. In this study, pregnant c57 mice were exposed to PM2.5 during the whole gestation (approximately 300 µg/m <sup>3</sup> PM2.5 for 2 hours/d). A significantly low birth weight was found after in utero PM2.5 exposure, and low body weight continued for 12 weeks after birth. In the offspring, remarkable destructions of cardiac ultrastructures were determined both in newborn and adult hearts. In adulthood, hearts of mice in the PM2.5 exposed group showed cardiac hypertrophy. Protein levels of p300, CBP (histone acetyltransferase), and acetylated histone3 lysine 9 (H3K9ac) increased in the trial group; messenger RNA (mRNA) levels of GATA binding protein 4 (GATA4) and myocyte enhancer factor 2C (Mef2c) (prohypertrophic transcription factors), and mRNA levels of the classic hypertrophic genes, such as α-MHC and β-MHC, increased significantly in the hearts of the PM2.5 exposed group. H3K9ac levels near the promoter region of GATA4 and Mef2c went up in the PM2.5 group. The binding affinities of p300/CBP with promoters of GATA4 and Mef2c increased notably. Taken together, out data indicated that maternal exposure to PM2.5 during gestation may cause a series of cardiovascular events in the offspring; histone acetylation modification may play an important role in the programming of cardiac hypertrophy."	"Identification of TBX2 and TBX3 variants in patients with conotruncal heart defects by target sequencing. Conotruncal heart defects (CTDs) are heterogeneous congenital heart malformations that result from outflow tract dysplasia; however, the genetic determinants underlying CTDs remain unclear. Increasing evidence demonstrates that dysfunctional TBX2 and TBX3 result in outflow tract malformations, implying that both of them are involved in CTD pathogenesis. We screened for TBX2 and TBX3 variants in a large cohort of CTD patients (n = 588) and population-matched healthy controls (n = 300) by target sequencing and genetically analyzed the expression and function of these variants. The probably damaging variants p.R608W, p.T249I, and p.R616Q of TBX2 and p.A192T, p.M65L, and p.A562V of TBX3 were identified in CTD patients, but none in controls. All altered amino acids were highly conserved evolutionarily. Moreover, our data suggested that mRNA and protein expressions of TBX2 and TBX3 variants were altered compared with those of the wild-type. We screened PEA3 and MEF2C as novel downstream genes of TBX2 and TBX3, respectively. Functional analysis revealed that TBX2R608W and TBX2R616Q variant proteins further activated HAS2 promoter but failed to activate PEA3 promoter and that TBX3A192T and TBX3A562V variant proteins showed a reduced transcriptional activity over MEF2C promoter. Our results indicate that the R608W and R616Q variants of TBX2 as well as the A192T and A562V variants of TBX3 contribute to CTD etiology; this was the first association of variants of TBX2 and TBX3 to CTDs based on a large population."	"Systems genetics of sensation seeking. Sensation seeking is a multifaceted, heritable trait which predicts the development of substance use and abuse in humans; similar phenomena have been observed in rodents. Genetic correlations among sensation seeking and substance use indicate shared biological mechanisms, but the genes and networks underlying these relationships remain elusive. Here, we used a systems genetics approach in the BXD recombinant inbred mouse panel to identify shared genetic mechanisms underlying substance use and preference for sensory stimuli, an intermediate phenotype of sensation seeking. Using the operant sensation seeking (OSS) paradigm, we quantified preference for sensory stimuli in 120 male and 127 female mice from 62 BXD strains and the C57BL/6J and DBA/2J founder strains. We used relative preference for the active and inactive levers to dissociate preference for sensory stimuli from locomotion and exploration phenotypes. We identified genomic regions on chromosome 4 (155.236-155.742 Mb) and chromosome 13 (72.969-89.423 Mb) associated with distinct behavioral components of OSS. Using publicly available behavioral data and mRNA expression data from brain regions involved in reward processing, we identified (a) genes within these behavioral QTL exhibiting genome-wide significant cis-eQTL and (b) genetic correlations among OSS phenotypes, ethanol phenotypes and mRNA expression. From these analyses, we nominated positional candidates for behavioral QTL associated with distinct OSS phenotypes including Gnb1 and Mef2c. Genetic covariation of Gnb1 expression, preference for sensory stimuli and multiple ethanol phenotypes suggest that heritable variation in Gnb1 expression in reward circuitry partially underlies the widely reported relationship between sensation seeking and substance use."	"Isolation, Characterization and Differentiation of Mouse Cardiac Progenitor Cells. Despite several strategies developed for replenishing the dead myocardium after myocardial infarction (MI), stem cell therapy remains the leading method to regenerate new myocardium. Although induced pluripotent stem cells (iPS) and transdifferentiation of the differentiated cells have been used as novel approaches for myocardial regeneration, these approaches did not yield very successful results for myocardial regeneration in in vivo studies. Asynchronous contractility of newly formed cardiomyocytes with the existing cardiomyocytes is the most important issue with iPS approach, while very low yield of transdifferentiated cardiomyocytes and their less chances to beat in the same rhythm as existing cardiomyocytes in the MI heart are important caveats with transdifferentiation approach. CSCs are present in the heart and they have the potential to differentiate into myocardial cells. However, the number of resident CSCs is very low. Therefore, it is important to get maximum yield of CSCs during isolation process from the heart. Increasing the number of CSCs and initiating their differentiation ex vivo are crucial for CSC-based stem cell therapy. Here, we present a better method for isolation, characterization and differentiation of CSCs from the mouse heart. We also demonstrated morphological changes in the CSCs after 2 days, 3 days, and 7 days in maintenance medium and a separate group of CSCs cultured for 12 days in differentiation medium using Phase-Contrast microscopy. We have used different markers for identification of CSCs isolated from the mouse heart such as marker for mouse CSC, Sca-1, cardiac-specific markers NKX2-5, MEF2C, GATA4, and stemness markers OCT4 and SOX2. To characterize the differentiated CSCs, we used CSCs maintained in differentiation medium for 12 days. To evaluate differentiation of CSCs, we determined the expression of cardiomyocyte-specific markers actinin and troponin I. Overall; we described an elegant method for isolation, identification, differentiation and characterization of CSCs from the mouse heart."	"Pre- and post-puberty expression of genes and proteins in the uterus of Bos indicus heifers: the luteal phase effect post-puberty. Progesterone signaling and uterine function are crucial in terms of pregnancy establishment. To investigate how the uterine tissue and its secretion changes in relation to puberty, we sampled tissue and uterine fluid from six pre- and six post-pubertal Brahman heifers. Post-pubertal heifers were sampled in the luteal phase. Gene expression of the uterine tissue was investigated with RNA-sequencing, whereas the uterine fluid was used for protein profiling with mass spectrometry. A total of 4034 genes were differentially expressed (DE) at a nominal P-value of 0.05, and 26 genes were significantly DE after Bonferroni correction (P &lt; 3.1 × 10<sup>-6</sup> ). We also identified 79 proteins (out of 230 proteins) that were DE (P &lt; 1 × 10<sup>-5</sup> ) in the uterine fluid. When we compared proteomics and transcriptome results, four DE proteins were identified as being encoded by DE genes: OVGP1, GRP, CAP1 and HBA. Except for CAP1, the other three had lower expression post-puberty. The function of these four genes hypothetically related to preparation of the uterus for a potential pregnancy is discussed in the context of puberty. All DE genes and proteins were also used in pathway and ontology enrichment analyses to investigate overall function. The DE genes were enriched for terms related to ribosomal activity. Transcription factors that were deemed key regulators of DE genes are also reported. Transcription factors ZNF567, ZNF775, RELA, PIAS2, LHX4, SOX2, MEF2C, ZNF354C, HMG20A, TCF7L2, ZNF420, HIC1, GTF3A and two novel genes had the highest regulatory impact factor scores. These data can help to understand how puberty influences uterine function."	"Prognostic implications of additional genomic lesions in adult Philadelphia chromosome-positive acute lymphoblastic leukemia. To shed light onto the molecular basis of Philadelphia chromosome-positive acute lymphoblastic leukemia and to investigate the prognostic role of additional genomic lesions, we analyzed copy number aberrations using the Cytoscan HD Array in 116 newly diagnosed adult patients with Philadelphia chromosome-positive acute lymphoblastic leukemia enrolled in four different GIMEMA protocols, all based on a chemotherapy-free induction strategy. This analysis showed that patients with Philadelphia chromosome-positive acute lymphoblastic leukemia carry an average of 7.8 lesions/case, with deletions outnumbering gains (88% versus 12%). The most common deletions were those targeting IKZF1, PAX5 and CDKN2A/B, which were detected in 84%, 36% and 32% of cases, respectively. Patients carrying simultaneous deletions of IKZF1 plus CDKN2A/B and/or PAX5 had a significantly lower disease-free survival rate (24.9% versus 43.3%; P=0.026). The only IKZF1 isoform affecting prognosis was the dominant negative one (P=0.003). Analysis of copy number aberrations showed that 18% of patients harbored MEF2C deletions, which were of two types, differing in size: the longer deletions were associated with the achievement of a complete molecular remission (P=0.05) and had a favorable impact on disease-free survival (64.3% versus 32.1% at 36 months; P=0.031). These findings retained statistical significance also in multivariate analysis (P=0.057). KRAS deletions, detected in 6% of cases, were associated with the achievement of a complete molecular remission (P=0.009). These results indicate that in adults with Philadelphia chromosome-positive acute lymphoblastic leukemia a detailed evaluation of additional deletions - including CDKN2A/B, PAX5, IKZF1, MEF2C and KRAS - has prognostic implications and should be incorporated in the design of more personalized treatment strategies."	"Direct Cardiac Reprogramming: A Novel Approach for Heart Regeneration. Cardiac diseases are among the most common causes of death globally. Cardiac muscle has limited proliferative capacity, and regenerative therapies are highly in demand as a new treatment strategy. Although pluripotent reprogramming has been developed, it has obstacles, such as a potential risk of tumor formation, poor survival of the transplanted cells, and high cost. We previously reported that fibroblasts can be directly reprogrammed to cardiomyocytes by overexpressing a combination of three cardiac-specific transcription factors (Gata4, Mef2c, Tbx5 (together, GMT)). We and other groups have promoted cardiac reprogramming by the addition of certain miRNAs, cytokines, and epigenetic factors, and unraveled new molecular mechanisms of cardiac reprogramming. More recently, we discovered that Sendai virus (SeV) vector expressing GMT could efficiently and rapidly reprogram fibroblasts into integration-free cardiomyocytes in vitro via robust transgene expression. Gene delivery of SeV-GMT also improves cardiac function and reduces fibrosis after myocardial infarction in mice. Through direct cardiac reprogramming, new cardiomyocytes can be generated and scar tissue reduced to restore cardiac function, and, thus, direct cardiac reprogramming may serve as a powerful strategy for cardiac regeneration. Here, we provide an overview of the previous reports and current challenges in this field."	"[Expression level and clinical significance of MEF2C gene in adult acute myeloid leukemia]. NA"	"Seasonal plasticity of cognition and related biological measures in adults with and without Alzheimer disease: Analysis of multiple cohorts. There are few data concerning the association between season and cognition and its neurobiological correlates in older persons-effects with important translational and therapeutic implications for the diagnosis and treatment of Alzheimer disease (AD). We aimed to measure these effects. We analyzed data from 3,353 participants from 3 observational community-based cohort studies of older persons (the Rush Memory and Aging Project [MAP], the Religious Orders Study [ROS], and the Minority Aging Research Study [MARS]) and 2 observational memory-clinic-based cohort studies (Centre de Neurologie Cognitive [CNC] study at Lariboisière Hospital and the Sunnybrook Dementia Study [SDS]). We performed neuropsychological testing and, in subsets of participants, evaluated cerebrospinal fluid AD biomarkers, standardized structured autopsy measures, and/or prefrontal cortex gene expression by RNA sequencing. We examined the association between season and these variables using nested multiple linear and logistic regression models. There was a robust association between season and cognition that was replicated in multiple cohorts (amplitude = 0.14 SD [a measure of the magnitude of seasonal variation relative to overall variability; 95% CI 0.07-0.23], p = 0.007, in the combined MAP, ROS, and MARS cohorts; amplitude = 0.50 SD [95% CI 0.07-0.66], p = 0.017, in the SDS cohort). Average composite global cognitive function was higher in the summer and fall compared to winter and spring, with the difference equivalent in cognitive effect to 4.8 years' difference in age (95% CI 2.1-8.4, p = 0.002). Further, the odds of meeting criteria for mild cognitive impairment or dementia were higher in the winter and spring (odds ratio 1.31 [95% CI 1.10-1.57], p = 0.003). These results were robust against multiple potential confounders including depressive symptoms, sleep, physical activity, and thyroid status and persisted in cases with AD pathology. Moreover, season had a marked effect on cerebrospinal fluid Aβ 42 level (amplitude 0.30 SD [95% CI 0.10-0.64], p = 0.003), which peaked in the summer, and on the brain expression of 4 cognition-associated modules of co-expressed genes (m6: amplitude = 0.44 SD [95% CI 0.21-0.65], p = 0.0021; m13: amplitude = 0.46 SD [95% CI 0.27-0.76], p = 0.0009; m109: amplitude = 0.43 SD [95% CI 0.24-0.67], p = 0.0021; and m122: amplitude 0.46 SD [95% CI 0.20-0.71], p = 0.0012), which were in phase or anti-phase to the rhythms of cognition and which were in turn associated with binding sites for several seasonally rhythmic transcription factors including BCL11A, CTCF, EGR1, MEF2C, and THAP1. Limitations include the evaluation of each participant or sample once per annual cycle, reliance on self-report for measurement of environmental and behavioral factors, and potentially limited generalizability to individuals in equatorial regions or in the southern hemisphere. Season has a clinically significant association with cognition and its neurobiological correlates in older adults with and without AD pathology. There may be value in increasing dementia-related clinical resources in the winter and early spring, when symptoms are likely to be most pronounced. Moreover, the persistence of robust seasonal plasticity in cognition and its neurobiological correlates, even in the context of concomitant AD pathology, suggests that targeting environmental or behavioral drivers of seasonal cognitive plasticity, or the key transcription factors and genes identified in this study as potentially mediating these effects, may allow us to substantially improve cognition in adults with and without AD."	"Clinical and molecular characteristics of MEF2D fusion-positive B-cell precursor acute lymphoblastic leukemia in childhood, including a novel translocation resulting in MEF2D-HNRNPH1 gene fusion. Fusion genes involving MEF2D have recently been identified in precursor B-cell acute lymphoblastic leukemia, mutually exclusive of the common risk stratifying genetic abnormalities, although their true incidence and associated clinical characteristics remain unknown. We identified 16 cases of acute lymphoblastic leukemia and 1 of lymphoma harboring MEF2D fusions, including MEF2D-BCL9 (n=10), MEF2D-HNRNPUL1 (n=6), and one novel MEF2D-HNRNPH1 fusion. The incidence of MEF2D fusions overall was 2.4% among consecutive precursor B-cell acute lymphoblastic leukemia patients enrolled onto a single clinical trial. They frequently showed a cytoplasmic μ chain-positive pre-B immunophenotype, and often expressed an aberrant CD5 antigen. Besides up- and down-regulation of HDAC9 and MEF2C, elevated GATA3 expression was also a characteristic feature of MEF2D fusion-positive patients. Mutations of PHF6, recurrent in T-cell acute lymphoblastic leukemia, also showed an unexpectedly high frequency (50%) in these patients. MEF2D fusion-positive patients were older (median age 9 years) with elevated WBC counts (median: 27,300/ml) at presentation and, as a result, were mostly classified as NCI high risk. Although they responded well to steroid treatment, MEF2D fusion-positive patients showed a significantly worse outcome, with 53.3% relapse and subsequent death. Stem cell transplantation was ineffective as salvage therapy. Interestingly, relapse was frequently associated with the presence of CDKN2A/CDKN2B gene deletions. Our observations indicate that MEF2D fusions comprise a distinct subgroup of precursor B-cell acute lymphoblastic leukemia with a characteristic immunophenotype and gene expression signature, associated with distinct clinical features."	"Tbx1 represses Mef2c gene expression and is correlated with histone 3 deacetylation of the anterior heart field enhancer. The TBX1 gene is haploinsufficient in 22q11.2 deletion syndrome (22q11.2DS), and genetic evidence from human patients and mouse models points to a major role of this gene in the pathogenesis of this syndrome. Tbx1 can activate and repress transcription, and previous work has shown that one of its functions is to negatively modulate cardiomyocyte differentiation. Tbx1 occupies the anterior heart field (AHF) enhancer of the Mef2c gene, which encodes a key cardiac differentiation transcription factor. Here, we show that increased dosage of Tbx1 correlates with downregulation of Mef2c expression and reduced acetylation of its AHF enhancer in cultured mouse myoblasts. Consistently, 22q11.2DS-derived and in vitro-differentiated human induced pluripotent stem cells (hiPSCs) expressed higher levels of MEF2C and showed increased AHF acetylation, compared with hiPSCs from a healthy donor. Most importantly, we show that in mouse embryos, loss of Tbx1 enhances the expression of the Mef2c-AHF-Cre transgene in a specific region of the splanchnic mesoderm, and in a dosage-dependent manner, providing an in vivo correlate of our cell culture data. These results indicate that Tbx1 regulates the Mef2c AHF enhancer by inducing histone deacetylation."	"Establishment of primary myoblast cell cultures from cryopreserved skeletal muscle biopsies to serve as a tool in related research &amp; development studies. Primary myoblast cell cultures display the phenotypic characteristics and genetic defects of the donor tissue and represent an in vitro model system reflecting the disease pathology. They have been generated only from freshly harvested tissue biopsies. Here, we describe a novel technique to establish myoblast cell cultures from cryopreserved skeletal muscle biopsy tissues that are useful for diagnostic and research purposes. This protocol was performed on seven gradually frozen muscle biopsy specimens from various neuromuscular disorders that were stored in dimethylsulfoxide (DMSO)-supplemented freezing media at -80 °C for up to one year. After storage for varying periods of time, primary myoblast cultures were successfully established from all cryopreserved biopsy tissues without any chromosomal abnormality. Desmin immunoreactivity confirmed that the cell cultures contained &gt;90% pure myoblasts. The myoblasts differentiated into multinucleated myotubes successfully. Furthermore, there were no statistically significant differences in cell viability, metabolic activity, population doubling time, and myocyte enhancer factor 2 (MEF2C) expression between cell cultures established from freshly harvested and one year-stored frozen tissue specimens. This protocol opens up new horizons for basic research and the pre-clinical studies of novel therapies by using cryopreserved skeletal muscle biopsies stored under suitable conditions in tissue banks."	"Molecular discoveries and treatment strategies by direct reprogramming in cardiac regeneration. Cardiac tissue has minimal endogenous regenerative capacity in response to injury. Treatment options are limited following tissue damage after events such as myocardial infarction. Current strategies are aimed primarily at injury prevention, but attention has been increasingly targeted toward the development of regenerative therapies. This review focuses on recent developments in the field of cardiac fibroblast reprogramming into induced cardiomyocytes. Early efforts to produce cardiac regeneration centered around induced pluripotent stem cells, but clinical translation has proved elusive. Currently, techniques are being developed to directly transdifferentiate cardiac fibroblasts into induced cardiomyocytes. Viral vector-driven expression of a combination of transcription factors including Gata4, Mef2c, and Tbx5 induced cardiomyocyte development in mice. Subsequent combinational modifications have extended these results to human cell lines and increased efficacy. The miRNAs including combinations of miR-1, miR-133, miR-208, and miR-499 can improve or independently drive regeneration of cardiomyocytes. Similar results could be obtained by combinations of small molecules with or without transcription factor or miRNA expression. The local tissue environment greatly impacts favorability for reprogramming. Modulation of signaling pathways, especially those mediated by VEGF and TGF-β, enhance differentiation to cardiomyocytes. Current reprogramming strategies are not ready for clinical application, but recent breakthroughs promise regenerative cardiac therapies in the near future."	"Sex-specific impact of prenatal androgens on social brain default mode subsystems. Early-onset neurodevelopmental conditions (e.g., autism) affect males more frequently than females. Androgens may play a role in this male-bias by sex-differentially impacting early prenatal brain development, particularly neural circuits that later develop specialized roles in social cognition. Here, we find that increasing prenatal testosterone in humans is associated with later reduction of functional connectivity between social brain default mode (DMN) subsystems in adolescent males, but has no effect in females. Since testosterone can work directly via the androgen receptor (AR) or indirectly via the estrogen receptor through aromatase conversion to estradiol, we further examined how a potent non-aromatizable androgen, dihydrotestosterone (DHT), acts via the AR to influence gene expression in human neural stem cells (hNSC)-particularly for genes of high-relevance for DMN circuitry. DHT dysregulates a number of genes enriched for syndromic causes of autism and intellectual disability and for genes that in later development are expressed in anatomical patterns that highly correspond to the cortical midline DMN subsystem. DMN-related and DHT-affected genes (e.g., MEF2C) are involved in a number of synaptic processes, many of which impact excitation-inhibition balance. Androgens have male-specific prenatal influence over social brain circuitry in humans and may be relevant towards explaining some component of male-bias in early-onset neurodevelopmental conditions."	"Pentraxin 3 promotes cardiac differentiation of mouse embryonic stem cells through JNK signaling pathway. Cardiovascular disease is a leading cause of death worldwide, requiring the development of new therapeutic strategies including stem cell therapy. Pentraxins (PTXs) are a superfamily of proteins highly involved in different myocardial disorders, and thus this study aimed to identify the modulation of long pentraxin 3 (PTX3) in the differentiation of mouse embryonic stem cells (mESCs) toward cardiomyocytes. Cell toxicity of PTX3 was detected by MTT and LDH assays in mESCs. Embryoid bodies (EBs) were differentiated using hanging drop method, and the beating was observed under microscope. Expressional levels of early cardiac progenitor marker genes were assessed by qRT-PCR. Expression of marker proteins in early myocardial development and the activation of JNK signaling pathway was evaluated by Western blot. PTX3 treatment at 50 ng/mL significantly promoted the expression of cardiac-specific marker genes including Nkx2.5, Mef2c, Tbx5, dHand, and αMHC, and increased the expression of cardiac maturity indicative markers including connexin 43 and troponin C1. PTX3 enhanced the phosphorylation of JNK across the incubation duration, whereas the activation of p38 remained the same as control group. Co-treatment of JNK signaling pathway inhibitor SP600125 impaired the PTX3-promoted transcription of Nkx2.5, Mef2c, Tbx5, dHand, and αMHC. This study revealed the promotion of PTX3 in the differentiation of mESCs into cardiomyocytes and the underlying mechanism."	"ALDH1A3 Is the Key Isoform That Contributes to Aldehyde Dehydrogenase Activity and Affects in Vitro Proliferation in Cardiac Atrial Appendage Progenitor Cells. High aldehyde dehydrogenase (ALDH<sup>hi</sup>) activity has been reported in normal and cancer stem cells. We and others have shown previously that human ALDH<sup>hi</sup> cardiac atrial appendage cells are enriched with stem/progenitor cells. The role of ALDH in these cells is poorly understood but it may come down to the specific ALDH isoform(s) expressed. This study aimed to compare ALDH<sup>hi</sup> and ALDH<sup>lo</sup> atrial cells and to identify the isoform(s) that contribute to ALDH activity, and their functional role. Methods and Results: Cells were isolated from atrial appendage specimens from patients with ischemic and/or valvular heart disease undergoing heart surgery. ALDH<sup>hi</sup> activity assessed with the Aldefluor reagent coincided with primitive surface marker expression (CD34<sup>+</sup>). Depending on their ALDH activity, RT-PCR analysis of ALDH<sup>hi</sup> and ALDH<sup>lo</sup> cells demonstrated a differential pattern of pluripotency genes (Oct 4, Nanog) and genes for more established cardiac lineages (Nkx2.5, Tbx5, Mef2c, GATA4). ALDH<sup>hi</sup> cells, but not ALDH<sup>lo</sup> cells, formed clones and were culture-expanded. When cultured under cardiac differentiation conditions, ALDH<sup>hi</sup> cells gave rise to a higher number of cardiomyocytes compared with ALDH<sup>lo</sup> cells. Among 19 ALDH isoforms known in human, ALDH1A3 was most highly expressed in ALDH<sup>hi</sup> atrial cells. Knocking down ALDH1A3, but not ALDH1A1, ALDH1A2, ALDH2, ALDH4A1, or ALDH8A1 using siRNA decreased ALDH activity and cell proliferation in ALDH<sup>hi</sup> cells. Conversely, overexpressing ALDH1A3 with a retroviral vector increased proliferation in ALDH<sup>lo</sup> cells. Conclusions: ALDH1A3 is the key isoform responsible for ALDH activity in ALDH<sup>hi</sup> atrial appendage cells, which have a propensity to differentiate into cardiomyocytes. ALDH1A3 affects in vitro proliferation of these cells."	"Aberrant Protein Turn-Over Associated With Myofibrillar Disorganization in FHL1 Knockout Mice. Mutations in the FHL1 gene, and FHL1 protein deletion, are associated with rare hereditary myopathies and cardiomyopathies. FHL1-null mice develop age-dependent myopathy and increased autophagic activity. However, the molecular pathway involved in contractile function and increased autophagic activity in the FHL1-null mouse has not yet been fully elucidated. In this study, FHL1 protein was knocked out in mice using Transcription Activator-like Effector Nucleases (TALENs) and the IRS1-FOXO1/mTOR signaling pathway was investigated in skeletal muscles and heart. TALEN constructs caused targeted mutations in 30% of newborn mice; these mutations caused a deletion of 1-13 base pairs which blocked synthesis of the full-length FHL1 protein. Furthermore, 2.5-month old FHL1-null male mice were not prone to global muscular fatigue when compared with WT littermates, but histological analysis and ultrastructural analysis by transmission electron microscopy confirmed the presence of myofibrillar disorganization and the accumulation of autophagosome or autolysosome-like structures in FHL1-null mice. Moreover, autophagy and mitophagy were both activated in FHL1 KO mice and the degradation of autophagic lysosomes was impeded. Enhanced autophagic activity in FHL1 KO mice was induced by FOXO1 up-regulation and protein synthesis was increased via mTOR. The cytoskeletal proteins, MYBPC2 and LDB3, were involved in the formation of pathological changes in FHL1 KO mice. Markers of early differentiation (MEF2C and MYOD1) and terminal differentiation (total MYH) were both up-regulated in tibialis anterior (TA) muscles in FHL1 KO mice. The number of type I and type II fibers increased in FHL1-null TA muscles, but the number of type| | b, and type | | d fibers were both reduced in FHL1-null TA muscles. The results obtained from the heart were consistent with those from the skeletal muscle and indicated autophagic activation by FOXO1 and an increase in protein synthesis via mTOR also occurred in the heart tissue of FHL1 knockout mice. In conclusion, aberrant protein turn-over associated with myofibrillar disorganization in FHL1 knockout mice. the up-regulation of FOXO1 was associated with enhanced autophagic activity and pathological changes in the muscle fibers of FHL1 KO mice. These results indicated that autophagy activated by FOXO1 is a promising therapeutic target for hereditary myopathies and cardiomyopathies induced by FHL1."	"Reversible permeabilization of the mitochondrial membrane promotes human cardiomyocyte differentiation from embryonic stem cells. Cell death and differentiation appear to share similar cellular features. In this study, we aimed to investigate whether differentiation and mitochondrial cell death use a common pathway. We assessed the hallmarks of apoptosis during cardiomyocyte differentiation of human embryonic stem cells and found remarkable changes in P53, reactive oxygen species, apoptotic protease-activating factor 1, poly[ADP-ribose]polymerase 1, cellular adenosine triphosphate, and mitochondrial complex I activity. Furthermore, we observed reversible mitochondrial membrane permeabilization during cardiomyocyte differentiation accompanied by reversible loss of mitochondrial membrane potential, and these changes coincided with the fluctuating patterns of cytosolic cytochrome c accumulation and subsequent caspase-9 and -3/7 activation. Moreover, the use of apoptosis inhibitors (BCL2-associated X protein [BAX] inhibitor and caspase-3/7 inhibitor) during differentiation impaired cardiomyocyte development, resulting in substantial downregulation of T, MESP1, NKX2.5, and α-MHC. Additionally, although the expression of specific differentiation markers (T, MESP1, NKX2.5, MEF2C, GATA4, and SOX17) was enhanced in doxorubicin-induced human embryonic stem cells, the stemness-specific markers (OCT4 and NANOG) showed significant downregulation. With increasing doxorubicin concentration (0.03-0.6 µM; IC50 = 0.5 µM), we observed a marked increase in the expression of mesoderm and endoderm markers. In summary, we suggest that reversible mitochondrial outer membrane permeabilization promotes cardiomyocyte differentiation through an attenuated mitochondria-mediated apoptosis-like pathway."	"Direct Reprogramming of Fibroblasts Into Smooth Muscle-Like Cells With Defined Transcription Factors-Brief Report. Objective- To identify the transcription factors that could contribute to direct reprogramming of fibroblasts toward smooth muscle cell fate. Approach and Results- We screened various combinations of transcription factors, including Myocd (myocardin), Mef2C (myocyte enhancer factor 2C), Mef2B (myocyte enhancer factor 2B), Mkl1 (MKL [megakaryoblastic leukemia]/Myocd-like 1), Gata4 (GATA-binding protein 4), Gata5 (GATA-binding protein 5), Gata6 (GATA-binding protein 6), Ets1 (E26 avian leukemia oncogene 1, 5' domain), and their corresponding carboxyterminal fusions to the transactivation domain of MyoD (myogenic differentiation 1)-indicated by *-for their effects on reprogramming mouse embryonic fibroblasts and human adult dermal fibroblasts to the smooth muscle cell fate as determined by the expression of specific markers. The combination of 3 transcription factors, Myocd (or Myocd*) with Mef2C (or Mef2C*) and Gata6, was the most efficient in enhancing the expression of smooth muscle marker genes and decreasing fibroblast gene expression. Additionally, the derived induced smooth muscle-like cells showed a contractile phenotype in response to carbachol. Conclusions- Combination of Myocd and Gata6 with Mef2C* (MG2*) could sufficiently and efficiently direct differentiation of mouse embryonic and human dermal fibroblasts into induced smooth muscle-like cells, thus opening new opportunities for disease modeling, tissue engineering, and personalized medicine."	"Chimeric Adeno-Associated Virus-Mediated Cardiovascular Reprogramming for Ischemic Heart Disease. Here, we demonstrated chimeric adeno-associated virus (chimeric AAV), AAV-DJ-mediated cardiovascular reprogramming strategy to generate new cardiomyocytes and limit collagen deposition in cardiac fibroblasts by inducing synergism of chimeric AAV-expressing Gata4, Mef2c, Tbx5 (AAV-GMT)-mediated heart reprogramming and chimeric AAV-expressing thymosin β4 (AAV-Tβ4)-mediated heart regeneration. AAV-GMT promoted a gradual increase in expression of cardiac-specific genes, including Actc1, Gja1, Myh6, Ryr2, and cTnT, with a gradual decrease in expression of a fibrosis-specific gene, procollagen type I and here AAV-Tβ4 help to induce GMT expression, providing a chimeric AAV-mediated therapeutic cell reprogramming strategy for ischemic heart diseases."	"Mesoporous Silica Nanoparticles Rescue H2O2-induced Inhibition of Cardiac Differentiation. The anti-oxidative property of mesoporous silica nanoparticles (MSNs) has been proposed previously, which prompted us to investigate the potential protective effect of MSNs on human embryonic stem cells (hESCs) against oxidative stress. To this purpose, the cell viability was determined by 3-(4,5-dimethyl-2-thiazolyl)-2,5-diphenyl-2-H-tetrazolium bromide assay. Apoptosis was analyzed by Annexin V/propidium iodide double-staining method. The intracellular glutathione, superoxide dismutase and malondialdehyde were measured with commercial assay kits. The reactive oxygen species was detected by staining with fluorescent dye DCFH-DA. The relative levels of Nkx2.5, Mef2c, Tbx5, dHand and α-MHC transcripts were measured by real-time polymerase chain reaction. The protein levels of Connexin 43, Troponin C1 and GAPDH were determined by immunoblotting. The beating behavior of embryoid bodies (EBs) was visually examined. Our results demonstrated that MSNs reversed hydrogen peroxide (H2O2)-inhibited cell viability and ameliorated H2O2-induced cell apoptosis in vitro. The H2O2-elicited intracellular oxidative stress was significantly relieved in the presence of MSNs. Furthermore, MSNs improved H2O2-suppressed differentiation of hESC-derived EBs and the maturation of the cardiomyocytes. In addition, MSNs treatment enhanced the beating properties of EBs. MSNs effectively conferred protection on hESCs against oxidative stress with respect to cardiac differentiation.Key words: Mesoporous silica nanoparticles, hydrogen peroxide, human embryonic stem cells, differentiation."	"The major depressive disorder GWAS-supported variant rs10514299 in TMEM161B-MEF2C predicts putamen activation during reward processing in alcohol dependence. Alcohol dependence (AD) frequently co-occurs with major depressive disorder (MDD). While this comorbidity is associated with an increase in disease burden, worse treatment outcomes, and greater economic costs, the underlying neurobiology remains poorly understood. A recent large-scale GWAS of MDD has identified a locus in the TMEM161B-MEF2C region (rs10514299) as a novel risk variant; however, the biological relevance of this variant has not yet been studied. Given previous reports of disrupted reward processing in both AD and MDD, we hypothesized that rs10514299 would be associated with differences in striatal BOLD responses during reward/loss anticipation in AD. DNA samples from 45 recently detoxified patients with AD and 45 healthy controls (HC) were genotyped for rs10514299. Participants performed the Monetary Incentive Delay task in a 3-Tesla MRI scanner. Effects of rs10514299 on striatal activation during anticipation of high/low reward/loss were investigated. Furthermore, we examined associations between rs10514299 and lifetime AD diagnosis in two independent clinical samples [NIAAA: n = 1858 (1123 cases, 735 controls); SAGE: n = 3838 (1848 cases, 1990 controls)], as well as its association with depression severity in a subsample of individuals with a lifetime AD diagnosis (n = 953). Patients carrying the T allele showed significantly greater putamen activation during anticipation of high reward (p = 0.014), low reward (at trend-level; p = 0.081), high loss (p = 0.024), and low loss (p = 0.046) compared to HCs. Association analyses in the NIAAA sample showed a trend-level relationship between rs10514299 and a lifetime AD diagnosis in the European American subgroup (odds ratio = 0.82, p = 0.09). This finding was not replicated in the SAGE sample. In the NIAAA sample, the T allele was significantly associated with greater depression symptom severity in individuals with a lifetime AD diagnosis (β = 1.25, p = 0.02); this association was driven by the African American ancestry subgroup (β = 2.11, p = 0.008). We show for the first time that the previously identified MDD risk variant rs10514299 in TMEM161B-MEF2C predicts neuronal correlates of reward processing in an AD phenotype, possibly explaining part of the shared pathophysiology and comorbidity between the disorders."	"Characterization of long non-coding RNAs and MEF2C-AS1 identified as a novel biomarker in diffuse gastric cancer. Previous studies proved that long noncoding RNAs (lncRNAs) play important role in human cancer. However, the knowledge of genome scale expression of lncRNAs and their potential biological function in gastric cancer is still lacking. Next generation RNA sequencing (RNA-seq) was performed on tumor tissues and matched adjacent normal tissues of six diffuse gastric cancer (DGC) patients. Then we performed a comprehensive analysis on lncRNAs and mRNA. Fifty-eight lncRNAs were upregulated and 54 lncRNAs were downregulated in diffuse gastric cancer tissue compared with adjacent tissue. The numbers of up- and downregulated mRNAs were 306 and 161, respectively. In addition, we inferred the function of lncRNAs by construction of a co-expression network for deregulated mRNAs and lncRNAs. Co-expressed genes of MEF2C-AS1 and FENDRR were enriched to RAS and TGF-beta signaling pathway. MEF2C-AS1 and FENDRR expression were re-evaluated by Real-time Quantitative PCR in 42 DGC patients' tumor and normal tissues, and other 46 DGC patents' and 21 healthy controls' plasma. Validation data showed MEF2C-AS1 and FENDRR were significantly downregulated in tumor tissues compared with normal tissues. And decreased FENDRR are associated with aggressive tumor characteristics including more advanced stage (P = .030), poor differentiation (P = .043) and lymphatic metastasis (P = .001). The expression level MEF2C-AS1 was significantly lower in DGC patients' plasma than that in healthy controls' plasma. In gastric cancer cell lines, knock-down of MEF2C-AS1 or FENDRR reduced the protein levels of FAT3, NTN1 and LYVE1 (the co-expressed genes), which were related with gastric cancer cell proliferation and invasion by previous studies. In addition, knock-down of MEF2C-AS1 or FENDRR promoted aggressive tumor behaviors in in-vitro assays. In this study, we provide a valuable resource of lncRNAs which might play important roles in the function of oncogenes or tumor suppressors affecting the development and progression of diffuse gastric cancer."	"Altered DNA Methylation of Long Noncoding RNA uc.167 Inhibits Cell Differentiation in Heart Development. In previous studies, we have demonstrated the function of uc.167 in the heart development. DNA methylation plays a crucial role in regulating the expression of developmental genes during embryonic development. In this study, the methylomic landscape was investigated in order to identify the DNA methylation alterations. Methylated DNA immunoprecipitation (MeDIP) was performed to examine the differences in methylation status of overexpressed uc.167 in P19 cells. GO and KEGG pathway analyses of differentially methylated genes were also conducted. We found that the distribution of differentially methylated regions (DMRs) peaks in different components of genome was mainly located in intergenic regions and intron. The biological process associated with uc.167 was focal adhesion and Rap1 signaling pathway. MEF2C was significantly decreased in uc.167 overexpressed group, suggesting that uc.167 may influence the P19 differentiation through MEF2C reduction. Taken together, our findings revealed that the effect of uc.167 on P19 differentiation may be attributed to the altered methylation of specific genes."	"MEF2 as upstream regulator of the transcriptome signature in human skeletal muscle during unloading. Our understanding of skeletal muscle structural and functional alterations during unloading has increased in recent decades, yet the molecular mechanisms underpinning these changes have only started to be unraveled. The purpose of the current investigation was to assess changes in skeletal muscle gene expression after 21 days of bed rest, with a particular focus on predicting upstream regulators of muscle disuse. Additionally, the association between differential microRNA expression and the transcriptome signature of bed rest were investigated. mRNAs from musculus vastus lateralis biopsies obtained from 12 men before and after the bed rest were analyzed using a microarray. There were 54 significantly upregulated probesets after bed rest, whereas 103 probesets were downregulated (false discovery rate 10%; fold-change cutoff ≥1.5). Among the upregulated genes, transcripts related to denervation-induced alterations in skeletal muscle were identified, e.g., acetylcholine receptor subunit delta and perinatal myosin. The most downregulated transcripts were functionally enriched for mitochondrial genes and genes involved in mitochondrial biogenesis, followed by a large number of contractile fiber components. Upstream regulator analysis identified a robust inhibition of the myocyte enhancer factor-2 (MEF2) family, in particular MEF2C, which was suggested to act upstream of several key downregulated genes, most notably peroxisome proliferator-activated receptor γ coactivator 1-α (PGC-1α)/peroxisome proliferator-activated receptors (PPARs) and CRSP3. Only a few microRNAs were identified as playing a role in the overall transcriptome picture induced by sustained bed rest. Our results suggest that the MEF2 family is a key regulator underlying the transcriptional signature of bed rest and, hence, ultimately also skeletal muscle alterations induced by systemic unloading in humans."	"Novel formononetin-7-sal ester ameliorates pulmonary fibrosis via MEF2c signaling pathway. Pulmonary fibrosis is a progressive disorder with poor prognosis and limited treatment options. Therefore, novel therapeutic drugs should be developed in preclinical studies. In this study, we designed and synthesized a novel compound named formononetin-7-sal ester (FS). We also investigated its anti-pulmonary fibrosis ability on transforming growth factor beta 1 (TGF-β1)-stimulated pulmonary epithelial cells and fibroblasts in vitro and on bleomycin (BLM)-induced pulmonary fibrosis in vivo. FS strongly blocked cell proliferation and migration, which were activated by TGF-β1, thereby reducing the expression of lung fibrosis markers, such as vimentin, alpha-smooth muscle actin (α-SMA), Snail, and collagen I and III, and increasing the expression of the epithelial cell marker E-cadherin. FS ameliorated BLM-induced pulmonary fibrosis in mice and decreased histopathologic fibrosis scores and collagen deposition. A low expression of hydroxyproline, vimentin, α-SMA, and Snail and a high expression of E-cadherin were found in FS-treated lungs compared with BLM-instilled lungs. Using the Cignal Finder 45-Pathway Reporter Array, we tested the regulation of FS in pulmonary fibrosis-associated signaling pathways and observed that FS significantly inhibited the myocyte enhancer factor-2c (MEF2c) signaling pathway. Gain- and loss-of-function studies, rescue experiments and promoter activity testing were designed to further confirm this result in vivo and in vitro. Collectively, our results demonstrated that FS prevents pulmonary fibrosis via the MEF2c signaling pathway."	"Global gene expression analysis identifies Mef2c as a potential player in Wnt16-mediated transcriptional regulation. Wnt16 is a major Wnt ligand involved in the regulation of postnatal bone homeostasis. Previous studies have shown that Wnt16 promotes bone formation and inhibits bone resorption, suggesting that this molecule could be targeted for therapeutic interventions to treat bone thinning disorders such as osteoporosis. However, the molecular mechanisms by which Wnt16 regulates bone metabolism is not yet fully understood. To better understand the molecular mechanisms by which Wnt16 promotes bone formation and to identify the target genes regulated by Wnt16 in osteoblasts, we treated calvarial osteoblasts purified from C57Bl/6 mice with recombinant Wnt16 and profiled the gene expression changes by RNA-seq at 24 h post-treatment. We also compared gene expression profiles of Wnt16-treated osteoblasts to canonical Wnt3a- and non-canonical Wnt5a-treated osteoblasts. This study identified 576 genes differentially expressed in Wnt16-treated osteoblasts compared to sham-treated controls; these included several members of Wnt pathway (Wnt2b, Wnt7b, Wnt11, Axin2, Sfrp2, Sfrp4, Fzd5 etc.) and TGF-β/BMP signaling pathway (Bmp7, Inhba, Inhbb, Tgfb2 etc.). Wnt16 also regulated a large number of genes with known bone phenotypes. We also found that about 37% (215/576) of the Wnt16 targets overlapped with Wnt3a targets and ~15% (86/576) overlapped with Wnt5a targets, suggesting that Wnt16 activates both canonical and non-canonical Wnt signaling targets in osteoblasts. Transcription factor binding motif enrichment analysis in the promoter regions of Wnt16 targets identified noncanonical Wnt/JNK pathway activated transcription factors Fosl2 and Fosl1 as two of the most significantly enriched transcription factors associated with genes activated by Wnt16 while Mef2c was the most significantly enriched transcription factor associated with genes repressed by Wnt16. We also found that a large number of Mef2c targets overlapped with genes down-regulated by Wnt16 and Mef2c itself was transcriptionally repressed by Wnt16 suggesting that Mef2c plays a role in Wnt16-mediated transcriptional regulation."	"Paediatric patients with acute leukaemia and KMT2A (MLL) rearrangement show a distinctive expression pattern of histone deacetylases. Histone deacetylase inhibitors (HDACi) had emerged as promising drugs in leukaemia, but their toxicity due to lack of specificity limited their use. Therefore, there is a need to elucidate the role of HDACs in specific settings. The study of HDAC expression in childhood leukaemia could help to choose more specific HDACi for selected candidates in a personalized approach. We analysed HDAC1-11, SIRT1, SIRT7, MEF2C and MEF2D mRNA expression in 211 paediatric patients diagnosed with acute leukaemia. There was a global overexpression of HDACs, while specific HDACs correlated with clinical and biological features, and some even predicted outcome. Thus, some HDAC and MEF2C profiles probably reflected the lineage and the maturation of the blasts and some profiles identified specific oncogenic pathways active in the leukaemic cells. Specifically, we identified a distinctive signature for patients with KMT2A (MLL) rearrangement, with high HDAC9 and MEF2D expression, regardless of age, KMT2A partner and lineage. Moreover, we observed an adverse prognostic value of HDAC9 overexpression, regardless of KMT2A rearrangement. Our results provide useful knowledge on the complex picture of HDAC expression in childhood leukaemia and support the directed use of specific HDACi to selected paediatric patients with acute leukaemia."	"Comparison between Atlantic salmon Salmo salar post-smolts reared in open sea cages and in the Preline raceway semi-closed containment aquaculture system. The use of closed containment (CCS) or semi-closed containment systems (S-CCS) for Atlantic salmon Salmo salar aquaculture is under evaluation in Norway. One such system is the Preline S-CCS, a floating raceway system that pumps water from 35 m depth creating a constant current through the system. Exposing fish to moderate water currents is considered aerobic exercise and it is often perceived as positive for fish welfare, growth, food utilization, muscle development and cardiac health. The present study compared fish reared in the Preline S-CCS and in a reference open pen. Samples were taken in fresh water before being transferred to the seawater systems and after 1, 2 and 4 months in seawater and analysed for growth, mortality, muscle development and plasma insulin-like growth factor I (IGF-I) levels. Moreover, gene transcription were determined in the skeletal muscle [igf-I, insulin-like growth factor 1 receptor a (igf1ra) and insulin-like growth factor 1 binding protein 1a (igf1bp1a)] and cardiac transcription factors [myocyte-specific enhancer factor 2C (mef2c), gata4 and vascular endothelial growth factor (vegf)]. While the results suggest that post-smolts in Preline S-CCS were smaller than reference fish, fish from Preline S-CCS have less accumulated mortality at the end of the experiment and showed 2.44 times more small muscle fibres than the reference group fish after 4 months in seawater. These results confirmed what was previously observed in the second generation of Preline. Similar levels of big muscle fibres between Preline S-CCS and reference suggest a similar hypertrophy of muscle fibres even with lower IGF-I expression in the Preline S-CCS. Cardiac gene transcription suggests cardiac hypertrophy was observed after 4 months in seawater in the Preline S-CCS group. Altogether, Preline S-CCS is a promising technology able to produce more robust S. salar with a faster growth and lower mortality in the subsequent standard open cage system growth period."	"Association between pathologic factors and ERG expression in prostate cancer: finding pivotal networking. To evaluate associations between pathologic factors and erythroblast transformation-specific (ETS)-related gene (ERG) expression in prostate cancer patients. Using next-generation sequencing, we identified target genes and regulatory networks. ERG expression in 60 radical prostatectomies was compared with pathological findings by association rule mining with the Apriori algorithm. Whole-exome and RNA sequencing were performed on three formalin-fixed, paraffin-embedded ERG-positive and negative prostate cancer samples. A network diagram identifying dominant altered genes was constructed using Cytoscape open-source bioinformatics platform and GeneMania plugin. Pathologic conditions positive for perineural invasion, apical margins, and Gleason score 3 + 4 = 7 were significantly more likely to be ERG-positive than other pathologic conditions (p = 0.0008), suggesting an association between ERG positivity, perineural invasion, apical margins, and Gleason score 3 + 4 = 7 (Firth's logistic regression: OR 42.565, 95% CI 1.670-1084.847, p = 0.0232). Results of whole-exome and RNA sequencing identified 97 somatic mutations containing common mutated genes. Regulatory network analysis identified NOTCH1, MEF2C, STAT3, LCK, CACNA2D3, PCSK7, MEF2A, PDZD2, TAB1, and ASGR1 as pivotal genes. NOTCH1 appears to function as a hub, because it had the highest node degree and betweenness. NOTCH1 staining was found 8 of 60 specimens (13%), with a significant association between ERG and NOTCH1 positivity (p = 0.001). Evaluating the association between ERG expression and pathologic factors, and identifying the regulatory network and pivotal hub may help to understand the clinical significance of ERG-positive prostate cancer."	"Suppression of Pro-fibrotic Signaling Potentiates Factor-mediated Reprogramming of Mouse Embryonic Fibroblasts into Induced Cardiomyocytes. Trans-differentiation of one somatic cell type into another has enormous potential to model and treat human diseases. Previous studies have shown that mouse embryonic, dermal, and cardiac fibroblasts can be reprogrammed into functional induced-cardiomyocyte-like cells (iCMs) through overexpression of cardiogenic transcription factors including GATA4, Hand2, Mef2c, and Tbx5 both in vitro and in vivo. However, these previous studies have shown relatively low efficiency. In order to restore heart function following injury, mechanisms governing cardiac reprogramming must be elucidated to increase efficiency and maturation of iCMs. We previously demonstrated that inhibition of pro-fibrotic signaling dramatically increases reprogramming efficiency. Here, we detail methods to achieve a reprogramming efficiency of up to 60%. Furthermore, we describe several methods including flow cytometry, immunofluorescent imaging, and calcium imaging to quantify reprogramming efficiency and maturation of reprogrammed fibroblasts. Using the protocol detailed here, mechanistic studies can be undertaken to determine positive and negative regulators of cardiac reprogramming. These studies may identify signaling pathways that can be targeted to promote reprogramming efficiency and maturation, which could lead to novel cell therapies to treat human heart disease."	"miR-487b-3p Suppresses the Proliferation and Differentiation of Myoblasts by Targeting IRS1 in Skeletal Muscle Myogenesis. MicroRNAs are endogenous, small non-coding RNAs that can play critical gene-regulatory roles during skeletal muscle development and are highly conserved. miR-487b-3p is expressed in muscle, and the detailed mechanism by which it regulates myoblast proliferation and differentiation has not been explored. Here, we found that miR-487b-3p expression was significantly higher in goat muscle tissues than in other tissues and was higher in fetal goat muscle tissues than in mature goat tissues, suggesting that miR-487b-3p has an important effect on skeletal muscle myogenesis. Functional studies showed that miR-487b-3p overexpression significantly suppressed C2C12 myoblast proliferation and differentiation, which was accompanied by the down-regulation of functional genes related to proliferation (MyoD, Pax7 and PCNA) and differentiation (Myf5, MyoG and Mef2c), whereas the inhibition of miR-487b-3p accelerated C2C12 myoblast proliferation and differentiation and was accompanied by the up-regulation of functional genes. Using Target-Scan and David, we found that miR-487b-3p targeted the 3'-UTR of IRS1, an essential regulator in the PI3K/Akt and MAPK/Erk pathways. We then confirmed the targeting of IRS1 by miR-487b-3p using dual-luciferase assays, RT-qPCR and western blotting. Furthermore, IRS1 silencing markedly inhibited proliferation and differentiation in cultured C2C12 myoblasts, confirming the important role of IRS1 in myogenesis. These results reveal an IRS1-mediated regulatory link between miR-487b-3p and the PI3K/Akt and MAPK/Erk pathways during skeletal muscle myogenesis."	"Genome-wide association study of extreme high bone mass: Contribution of common genetic variation to extreme BMD phenotypes and potential novel BMD-associated genes. Generalised high bone mass (HBM), associated with features of a mild skeletal dysplasia, has a prevalence of 0.18% in a UK DXA-scanned adult population. We hypothesized that the genetic component of extreme HBM includes contributions from common variants of small effect and rarer variants of large effect, both enriched in an extreme phenotype cohort. We performed a genome-wide association study (GWAS) of adults with either extreme high or low BMD. Adults included individuals with unexplained extreme HBM (n = 240) from the UK with BMD Z-scores ≥+3.2, high BMD females from the Anglo-Australasian Osteoporosis Genetics Consortium (AOGC) (n = 1055) with Z-scores +1.5 to +4.0 and low BMD females also part of AOGC (n = 900), with Z-scores -1.5 to -4.0. Following imputation, we tested association between 6,379,332 SNPs and total hip and lumbar spine BMD Z-scores. For potential target genes, we assessed expression in human osteoblasts and murine osteocytes. We observed significant enrichment for associations with established BMD-associated loci, particularly those known to regulate endochondral ossification and Wnt signalling, suggesting that part of the genetic contribution to unexplained HBM is polygenic. Further, we identified associations exceeding genome-wide significance between BMD and four loci: two established BMD-associated loci (5q14.3 containing MEF2C and 1p36.12 containing WNT4) and two novel loci: 5p13.3 containing NPR3 (rs9292469; minor allele frequency [MAF] = 0.33%) associated with lumbar spine BMD and 11p15.2 containing SPON1 (rs2697825; MAF = 0.17%) associated with total hip BMD. Mouse models with mutations in either Npr3 or Spon1 have been reported, both have altered skeletal phenotypes, providing in vivo validation that these genes are physiologically important in bone. NRP3 regulates endochondral ossification and skeletal growth, whilst SPON1 modulates TGF-β regulated BMP-driven osteoblast differentiation. Rs9292469 (downstream of NPR3) also showed some evidence for association with forearm BMD in the independent GEFOS sample (n = 32,965). We found Spon1 was highly expressed in murine osteocytes from the tibiae, femora, humeri and calvaria, whereas Npr3 expression was more variable. We report the most extreme-truncate GWAS of BMD performed to date. Our findings, suggest potentially new anabolic bone regulatory pathways that warrant further study."	"MEF2 and the tumorigenic process, hic sunt leones. While MEF2 transcription factors are well known to cooperate in orchestrating cell fate and adaptive responses during development and adult life, additional studies over the last decade have identified a wide spectrum of genetic alterations of MEF2 in different cancers. The consequences of these alterations, including triggering and maintaining the tumorigenic process, are not entirely clear. A deeper knowledge of the molecular pathways that regulate MEF2 expression and function, as well as the nature and consequences of MEF2 mutations are necessary to fully understand the many roles of MEF2 in malignant cells. This review discusses the current knowledge of MEF2 transcription factors in cancer."	"Metastatic cancers promote cachexia through ZIP14 upregulation in skeletal muscle. Patients with metastatic cancer experience a severe loss of skeletal muscle mass and function known as cachexia. Cachexia is associated with poor prognosis and accelerated death in patients with cancer, yet its underlying mechanisms remain poorly understood. Here, we identify the metal-ion transporter ZRT- and IRT-like protein 14 (ZIP14) as a critical mediator of cancer-induced cachexia. ZIP14 is upregulated in cachectic muscles of mice and in patients with metastatic cancer and can be induced by TNF-α and TGF-β cytokines. Strikingly, germline ablation or muscle-specific depletion of Zip14 markedly reduces muscle atrophy in metastatic cancer models. We find that ZIP14-mediated zinc uptake in muscle progenitor cells represses the expression of MyoD and Mef2c and blocks muscle-cell differentiation. Importantly, ZIP14-mediated zinc accumulation in differentiated muscle cells induces myosin heavy chain loss. These results highlight a previously unrecognized role for altered zinc homeostasis in metastatic cancer-induced muscle wasting and implicate ZIP14 as a therapeutic target for its treatment."	"Circular RNA circSVIL Promotes Myoblast Proliferation and Differentiation by Sponging miR-203 in Chicken. Circular RNAs (circRNAs), expressed abundantly and universally in various eukaryotes, are involved in growth and development of animals. Our previous study on circRNA sequencing revealed that circSVIL, an exonic circular, expressed differentially among skeletal muscle at 11 embryo age (E11), 16 embryo age (E16), and 1 day post-hatch (P1). In this study, we aim to investigate the effect of circSVIL on the development of skeletal muscle. We detected the expression level of circSVIL in embryonic leg muscle during E10 to P1. As a result, we found that circSVIL had a high expression level during late embryonic development of skeletal muscle. Through dual-luciferase assay, RNA immunoprecipitation and biotin-coupled miRNA pull down, we found chicken circSVIL could functions as miR-203 sponges and upregulated the mRNA level of c-JUN and MEF2C. In chicken, circSVIL could promote the proliferation and differentiation of myoblast, and antagonize the functions of miR-203. Altogether our data suggest that circSVIL promotes the embryonic skeletal muscle development by sequestering miR-203 in chicken."	"Direct Reprograming to Regenerate Myocardium and Repair Its Pacemaker and Conduction System. The regenerative medicine field has been revolutionized by the direct conversion of one cell type to another by ectopic expression of lineage-specific transcription factors. The direct reprogramming of fibroblasts to induced cardiac myocytes (iCMs) by core cardiac transcription factors (Gata4, Mef2c, Tbx5) both in vitro and in vivo has paved the way in cardiac regeneration and repair. Several independent research groups have successfully reported the direct reprogramming of fibroblasts in injured myocardium to cardiac myocytes employing a variety of approaches that rely on transcription factors, small molecules, and micro RNAs (miRNAs). Recently, this technology has been considered for local repair of the pacemaker and the cardiac conduction system. To address this, we will first discuss the direct reprograming advancements in the setting of working myocardium regeneration, and then elaborate on how this technology can be applied to repair the cardiac pacemaker and the conduction system."	"[New allelic variants of non-syndromic mental retardation of type 20 caused by mutations in the MEF2C gene]. To determine clinical and genetic characteristics of patients with non-syndromic mental retardation (NMR), type 20 with autosomal dominant type of inheritance (OMIM: 613443). Fourteen patients were studied including four patients with mutations in the MEF2C gene revealed by exome sequencing. Three of the four mutations in the gene were found for the first time. Based on a comparative analysis of the clinical manifestations of 4 observed patients and 9 patients with type 20 NMR described in the literature, the authors determined common clinical characteristics of this syndrome. In most cases with delayed psycho-speech development and convulsive syndrome, the patients were expected to have various variants of early epileptic encephalopathies, in which presence of convulsive paroxysms leads to intellectual deficit, while in the case of NMR, the delay in development can be noted long before the onset of seizures. Exome sequencing is the most effective method of NMR diagnosis. Цель исследования. Установление клинических и генетических характеристик пациентов с несиндромальной умственной отсталостью (НУО) 20-го типа с аутосомно-доминантным типом наследования (OMIM: 613443). Материал и методы. Были изучены 14 случаев, в 4 из которых методом экзомного секвенирования выявлена мутация в гене MEF2C. Три из четырех мутаций в гене были обнаружены впервые. Результаты и заключение. На основе обобщения особенностей клинических проявлений у 4 описанных авторами больных и 9 описанных в литературе пациентов с НУО 20-го типа выделены общие клинические характеристики рассматриваемого синдрома. В большинстве случаев задержки психоречевого развития и судорожного синдрома у пациентов предполагалось наличие различных вариантов ранних эпилептических энцефалопатий, при которых судорожные пароксизмы приводят к интеллектуальному дефициту. Отметим, что при НУО задержка развития может быть зафиксирована задолго до появления судорог. Сделан вывод, что наиболее эффективным методом диагностики является секвенирование экзома."	"Simulated microgravity attenuates myogenic differentiation via epigenetic regulations. The molecular mechanisms involved in myogenic differentiation are relatively well-known. Myogenic differentiation is regulated by the sequential activation of the basic helix-loop-helix myogenic regulatory transcription factors (MRFs), and biomechanical signals play an important role in the regulation of myogenesis. In this study, we sought to determine whether simulated microgravity culture using Gravite<sup>®</sup> may affect myoblast differentiation and expression of MRF genes. Although rat myoblasts, L6 cells were differentiated to myotubes in an incubation period-dependent manner, myogenesis of L6 cells was significantly attenuated under simulated microgravity (10<sup>-3</sup>G) conditions. Real-time Reverse transcription polymerase chain reaction (RT-PCR) showed that expressions of Myog, Myf6, Mef2c, Des, and Ckm under 1 G conditions increase in an incubation period-dependent manner, and that Myod1 expression was specifically observed to increase transiently in the early phase. However, expressions of Myod1 and Myog were significantly inhibited under simulated microgravity conditions. To clarify the molecular mechanisms, L6 cells were treated with 5-AzaC, and further incubated with differentiation medium under 1 G or 10<sup>-3</sup> G conditions. The results showed differences in expression levels of Myod1, Myog, and, as well as those of myotube thickness between 1 G and 10<sup>-3</sup> G conditions, completely disappeared in this experimental condition. Modified HpaII tiny fragment enrichment by ligation-mediated PCR (HELP)-assay showed that kinetic changes of DNA methylation status were attenuated in simulated microgravity conditions. These results indicate that microgravity regulates myogenesis and Myod1 expression by controlling DNA methylation."	"S-phase Synchronization Facilitates the Early Progression of Induced-Cardiomyocyte Reprogramming through Enhanced Cell-Cycle Exit. Direct reprogramming of fibroblasts into induced cardiomyocytes (iCMs) holds a great promise for regenerative medicine and has been studied in several major directions. However, cell-cycle regulation, a fundamental biological process, has not been investigated during iCM-reprogramming. Here, our time-lapse imaging on iCMs, reprogrammed by Gata4, Mef2c, and Tbx5 (GMT) monocistronic retroviruses, revealed that iCM-reprogramming was majorly initiated at late-G1- or S-phase and nearly half of GMT-reprogrammed iCMs divided soon after reprogramming. iCMs exited cell cycle along the process of reprogramming with decreased percentage of 5-ethynyl-20-deoxyuridine (EdU)⁺/&amp;alpha;-myosin heavy chain (&amp;alpha;MHC)-GFP⁺ cells. S-phase synchronization post-GMT-infection could enhance cell-cycle exit of reprogrammed iCMs and yield more GFP<sup>high</sup> iCMs, which achieved an advanced reprogramming with more expression of cardiac genes than GFP<sup>low</sup> cells. However, S-phase synchronization did not enhance the reprogramming with a polycistronic-viral vector, in which cell-cycle exit had been accelerated. In conclusion, post-infection synchronization of S-phase facilitated the early progression of GMT-reprogramming through a mechanism of enhanced cell-cycle exit."	"MEF2C promotes gefitinib resistance in hepatic cancer cells through regulating MIG6 transcription. Mitogen-inducible gene 6 ( MIG6) holds a special position in epidermal growth factor receptor (EGFR) tyrosine kinase inhibitor (TKI) resistance. As MIG6 regulates the activity of EGFR signal pathway negatively, high level of MIG6 can increase the EGFR TKI resistance of cancer cells, and limit the therapeutic action of EGFR TKI, such as gefitinib or erlotinib. Therefore, better understanding of the molecular mechanisms underlying the regulation of EGFR TKI resistance holds great value in cancer therapy. In our study, we mainly explored the function of transcription activator, myocyte enhancer factor 2C (MEF2C), on MIG6 expression as well as gefitinib-resistant ability of hepatic cancer cells. Our results indicated that both MEF2C and MIG6 could be upregulated in gefitinib-resistant cancer tissues and cancer cell lines compared with gefitinib-sensitive ones. Chromatin immunoprecipitation assay and dual luciferase assay showed that MEF2C could bind to the MEF2C element in the promoter sequence of MIG6 and promote the transcription of MIG6. This effect increased the gefitinib-resistant ability of cancer cells. Therefore, MEF2C knockdown inhibited the gefitinib resistance and limited the proliferation of hepatic cancer cells in vitro and in vivo, while overexpression of MEF2C showed opposite effect on cancer cell proliferation. Our study provides novel insight into the regulation mechanism of MIG6 and suggests potential implications for the therapeutic strategies of gefitinib resistance through inhibiting MEF2C in hepatic cancer cells."	"MicroRNA-139-5p suppresses myosin heavy chain I and IIa expression via inhibition of the calcineurin/NFAT signaling pathway. MicroRNAs (miRNAs) are a class of small non-coding RNAs that are widely involved in a variety of biological processes. Different skeletal muscle fiber type composition exhibits characteristic differences in functional properties and energy metabolism of skeletal muscle. However, the molecular mechanism by which miRNAs control the different type of muscle fiber formation is still not fully understood. In the present study, we characterized the role of microRNA-139-5p (miR-139-5p) in the regulation of myosin heavy chain (MyHC) isoform expression and its underlying mechanisms. Here we found that the expression of miR-139-5p was significantly higher in mouse slow-twitch muscle than in fast-twitch muscle. Overexpression of miR-139-5p downregulated the expression of MyHC I and MyHC IIa, whereas inhibition of miR-139-5p upregulated them. We also found that the levels of calcineurin (CaN), NFATc1, MEF2C and MCIP1.4, which are the components of CaN/NFAT signaling pathway that has shown to positively regulate slow fiber-selective gene expression, were notably inhibited by miR-139-5p overexpression. Furthermore, treatment of phenylephrine (PE), a α1-adrenoceptor agonist, abolished the inhibitory effect of miR-139-5p on MyHC I and MyHC IIa expression. Together, our findings indicated that the role of miR-139-5p in regulating the MyHC isoforms, especially MyHC I and MyHC IIa, may be achieved through inhibiting CaN/NFAT signaling pathway."	"RNA Binding Protein, HuR, Regulates SCN5A Expression Through Stabilizing MEF2C transcription factor mRNA. Although transcription is the initial process of gene expression, posttranscriptional gene expression regulation has also played a critical role for fine-tuning gene expression in a fast, precise, and cost-effective manner. Although the regulation of sodium channel α-subunit (SCN5A) mRNA expression has been studied at both transcriptional and pre-mRNA splicing levels, the molecular mechanisms governing SCN5A mRNA expression are far from clear. Herein, we show that, as evidenced by ribonucleoprotein immunoprecipitation assay, RNA binding protein Hu antigen R/ELAV like RNA binding protein 1 (HuR/ELAVL1) and myocyte enhancer factor-2C (MEF2C) transcription factor mRNA are associated. HuR positively regulated transcription factor MEF2C mRNA expression by protecting its mRNA from degradation. As demonstrated by both chromatin immunoprecipitation-quantitative polymerase chain reaction assay and an electrophoretic mobility shift assay, MEF2C enhanced SCN5A transcription by binding to a putative MEF2C binding site within SCN5A promoter region. Overexpression of HuR increased the expression of SCN5A mRNA, and this effect was attenuated by the presence of MEF2C small interfering RNA in cardiomyocytes. In conclusion, our results suggested that HuR participates in a combined network at the DNA and RNA levels that regulates SCN5A mRNA expression. HuR upregulates MEF2C mRNA expression by protecting MEF2C mRNA from degradation, and consequently, the elevated MEF2C enhances SCN5A mRNA transcription."	"Genome-wide association study of lncRNA polymorphisms with bone mineral density. Recent studies suggested that long noncoding RNAs (lncRNAs) were widely transcribed in the genome, but their potential roles in the genetic complexity of human disorders required further exploration. The purpose of the present study was to explore genetic polymorphisms of lncRNAs associated with bone mineral density (BMD) and its potential value. Based on the lncRNASNP database, 55,906 lncSNPs were selected to conduct a genome-wide association study meta-analysis among 11,140 individuals of seven independent studies for BMDs at femoral neck (FN), lumbar spine, and total hip (HIP). Promising results were replicated in Genetic Factors for Osteoporosis Consortium (GEFOS Sequencing, n = 32,965). We found two lncRNA loci that were significantly associated with BMD. MEF2C antisense RNA 1 (MEF2C-AS1) located at 5q14.3 was significantly associated with FN-BMD after Bonferroni correction, and the strongest association signal was detected at rs6894139 (P = 3.03 × 10<sup>-9</sup> ). LOC100506136 rs6465531 located at 7q21.3 showed significant association with HIP-BMD (P = 7.43 × 10<sup>-7</sup> ). MEF2C-AS1 rs6894139 was replicated in GEFOS Sequencing with P-value of 1.43 × 10<sup>-23</sup> . Our results illustrated the important role of polymorphisms in lncRNAs in determining variations of BMD and provided justification and evidence for subsequent functional studies."	"Comparative analysis of histologically classified oligodendrogliomas reveals characteristic molecular differences between subgroups. Molecular data of histologically classified oligodendrogliomas are available offering the possibility to stratify these human brain tumors into clinically relevant molecular subtypes. Gene copy number, mutation, and expression data of 193 histologically classified oligodendrogliomas from The Cancer Genome Atlas (TCGA) were analyzed by well-established computational approaches (unsupervised clustering, statistical testing, network inference). We applied hierarchical clustering to tumor gene copy number profiles and revealed three molecular subgroups within histologically classified oligodendrogliomas. We further screened these subgroups for molecular glioma markers (1p/19q co-deletion, IDH mutation, gain of chromosome 7 and loss of chromosome 10) and found that our subgroups largely resemble known molecular glioma subtypes. We excluded glioblastoma-like tumors (7a10d subgroup) and derived a gene expression signature distinguishing histologically classified oligodendrogliomas with concurrent 1p/19q co-deletion and IDH mutation (1p/19q subgroup) from those with predominant IDH mutation alone (IDHme subgroup). Interestingly, many signature genes were part of signaling pathways involved in the regulation of cell proliferation, differentiation, migration, and cell-cell contacts. We further learned a gene regulatory network associated with the gene expression signature revealing novel putative major regulators with functions in cytoskeleton remodeling (e.g. APBB1IP, VAV1, ARPC1B), apoptosis (CCNL2, CREB3L1), and neural development (e.g. MYTIL, SCRT1, MEF2C) potentially contributing to the manifestation of differences between both subgroups. Moreover, we revealed characteristic expression differences of several HOX and SOX transcription factors suggesting the activity of different glioma stemness programs in both subgroups. We show that gene copy number profiles alone are sufficient to derive molecular subgroups of histologically classified oligodendrogliomas that are well-embedded into general glioma classification schemes. Moreover, our revealed novel putative major regulators and characteristic stemness signatures indicate that different developmental programs might be active in these subgroups, providing a basis for future studies."	"Enhanced differentiation of human pluripotent stem cells into cardiomyocytes by bacteria-mediated transcription factors delivery. Virus-mediated expression of defined transcription factor (TF) genes can effectively induce cellular reprogramming. However, sustained expression of the TFs often hinders pluripotent stem cell (PSC) differentiation into specific cell types, as each TF exerts its effect on PSCs for a defined period of time during differentiation. Here, we applied a bacterial type III secretion system (T3SS)-based protein delivery tool to directly translocate TFs in the form of protein into human PSCs. This transient protein delivery technique showed high delivery efficiency for hPSCs, and it avoids potential genetic alterations caused by the introduction of transgenes. In an established cardiomyocyte de novo differentiation procedure, five transcriptional factors, namely GATA4, MEF2C, TBX5, ESRRG and MESP1 (abbreviated as GMTEM), were translocated at various time points. By detecting the expression of cardiac marker genes (Nkx2.5 and cTnT), we found that GMTEM proteins delivered on mesoderm stage of the cardiomyocytes lineage differentiation significantly enhanced both the human ESC and iPSC differentiation into cardiomyocytes, while earlier or later delivery diminished the enhancing effect. Furthermore, all of the five factors were required to enhance the cardiac differentiation. This work provides a virus-free strategy of transient transcription factors delivery for directing human stem cell fate without jeopardizing genome integrity, thus safe for biomedical applications."	"p53 mediated regulation of coactivator associated arginine methyltransferase 1 (CARM1) expression is critical for suppression of adipogenesis. Coactivator-associated arginine methyltransferase 1 (CARM1/PRMT4) is a type I arginine methyltransferase that mediates transcriptional activation via methylation of histone H3 on R17, R26, and R42. CARM1 is also a coactivator of transcription of various transcription factors such as NF-kB, MEF2C, β-catenin, p53, PPAR-gamma etc. CARM1 has been functionally implicated in maintenance of pluripotency, cellular differentiation, and tumorigenesis; where its expression status plays an important role. Although its expression has been shown to be regulated by a few miRNAs in different contexts at post-transcriptional level, transcriptional regulation of CARM1 gene is still unexplored. In this report we demonstrate that CARM1 is a p53 responsive gene, where p53 could suppress CARM1 promoter-driven luciferase expression. CARM1 gene expression was found to be repressed by p53 in 3T3L1 preadipocytes when activated with Nutlin-3a treatment. Ectopic overexpression of CARM1 could rescue inhibitory effect of p53 on adipogenesis, suggesting a role of p53-CARM1 axis of regulation operational in the context of adipocyte differentiation. p53 and CARM1 showed antagonistic regulatory influence on PPAR-gamma expression; which suggests that p53-mediated suppression of adipogenesis could be partly via repression of CARM1 expression. Taken together these observations provide convincing mechanistic explanation for p53 function in the context of adipocyte differentiation process."	"High salt-induced excess reactive oxygen species production resulted in heart tube malformation during gastrulation. An association has been proved between high salt consumption and cardiovascular mortality. In vertebrates, the heart is the first functional organ to be formed. However, it is not clear whether high-salt exposure has an adverse impact on cardiogenesis. Here we report high-salt exposure inhibited basement membrane breakdown by affecting RhoA, thus disturbing the expression of Slug/E-cadherin/N-cadherin/Laminin and interfering with mesoderm formation during the epithelial-mesenchymal transition(EMT). Furthermore, the DiI<sup>+</sup> cell migration trajectory in vivo and scratch wound assays in vitro indicated that high-salt exposure restricted cell migration of cardiac progenitors, which was caused by the weaker cytoskeleton structure and unaltered corresponding adhesion junctions at HH7. Besides, down-regulation of GATA4/5/6, Nkx2.5, TBX5, and Mef2c and up-regulation of Wnt3a/β-catenin caused aberrant cardiomyocyte differentiation at HH7 and HH10. High-salt exposure also inhibited cell proliferation and promoted apoptosis. Most importantly, our study revealed that excessive reactive oxygen species(ROS)generated by high salt disturbed the expression of cardiac-related genes, detrimentally affecting the above process including EMT, cell migration, differentiation, cell proliferation and apoptosis, which is the major cause of malformation of heart tubes."	"&quot;Positive Regulation of RNA Metabolic Process&quot; Ontology Group Highly Regulated in Porcine Oocytes Matured In Vitro: A Microarray Approach. The cumulus-oocyte complexes (COCs) growth and development during folliculogenesis and oogenesis are accompanied by changes involving synthesis and accumulation of large amount of RNA and proteins. In this study, the transcriptomic profile of genes involved in &quot;oocytes RNA synthesis&quot; in relation to in vitro maturation in pigs was investigated for the first time. The RNA was isolated from oocytes before and after in vitro maturation (IVM). Interactions between differentially expressed genes/proteins belonging to &quot;positive regulation of RNA metabolic process&quot; ontology group were investigated by STRING10 software. Using microarray assays, we found expression of 12258 porcine transcripts. Genes with fold change higher than |2| and with corrected p value lower than 0.05 were considered as differentially expressed. The ontology group &quot;positive regulation of RNA metabolic process&quot; involved differential expression of AR, INHBA, WWTR1, FOS, MEF2C, VEGFA, IKZF2, IHH, RORA, MAP3K1, NFAT5, SMARCA1, EGR1, EGR2, MITF, SMAD4, APP, and NR5A1 transcripts. Since all of the presented genes were downregulated after IVM, we suggested that they might be significantly involved in regulation of RNA synthesis before reaching oocyte MII stage. Higher expression of &quot;RNA metabolic process&quot; related genes before IVM indicated that they might be recognized as important markers and specific &quot;transcriptomic fingerprint&quot; of RNA template accumulation and storage for further porcine embryos growth and development."	"LKB1, Salt-Inducible Kinases, and MEF2C Are Linked Dependencies in Acute Myeloid Leukemia. The lineage-specific transcription factor (TF) MEF2C is often deregulated in leukemia. However, strategies to target this TF have yet to be identified. Here, we used a domain-focused CRISPR screen to reveal an essential role for LKB1 and its Salt-Inducible Kinase effectors (SIK3, in a partially redundant manner with SIK2) to maintain MEF2C function in acute myeloid leukemia (AML). A key phosphorylation substrate of SIK3 in this context is HDAC4, a repressive cofactor of MEF2C. Consequently, targeting of LKB1 or SIK3 diminishes histone acetylation at MEF2C-bound enhancers and deprives leukemia cells of the output of this essential TF. We also found that MEF2C-dependent leukemias are sensitive to on-target chemical inhibition of SIK activity. This study reveals a chemical strategy to block MEF2C function in AML, highlighting how an oncogenic TF can be disabled by targeting of upstream kinases."	"A screen for deeply conserved non-coding GWAS SNPs uncovers a MIR-9-2 functional mutation associated to retinal vasculature defects in human. Thousands of human disease-associated single nucleotide polymorphisms (SNPs) lie in the non-coding genome, but only a handful have been demonstrated to affect gene expression and human biology. We computationally identified risk-associated SNPs in deeply conserved non-exonic elements (CNEs) potentially contributing to 45 human diseases. We further demonstrated that human CNE1/rs17421627 associated with retinal vasculature defects showed transcriptional activity in the zebrafish retina, while introducing the risk-associated allele completely abolished CNE1 enhancer activity. Furthermore, deletion of CNE1 led to retinal vasculature defects and to a specific downregulation of microRNA-9, rather than MEF2C as predicted by the original genome-wide association studies. Consistent with these results, miR-9 depletion affects retinal vasculature formation, demonstrating MIR-9-2 as a critical gene underpinning the associated trait. Importantly, we validated that other CNEs act as transcriptional enhancers that can be disrupted by conserved non-coding SNPs. This study uncovers disease-associated non-coding mutations that are deeply conserved, providing a path for in vivo testing to reveal their cis-regulated genes and biological roles."	"Developmental diversification of cortical inhibitory interneurons. Diverse subsets of cortical interneurons have vital roles in higher-order brain functions. To investigate how this diversity is generated, here we used single-cell RNA sequencing to profile the transcriptomes of mouse cells collected along a developmental time course. Heterogeneity within mitotic progenitors in the ganglionic eminences is driven by a highly conserved maturation trajectory, alongside eminence-specific transcription factor expression that seeds the emergence of later diversity. Upon becoming postmitotic, progenitors diverge and differentiate into transcriptionally distinct states, including an interneuron precursor state. By integrating datasets across developmental time points, we identified shared sources of transcriptomic heterogeneity between adult interneurons and their precursors, and uncovered the embryonic emergence of cardinal interneuron subtypes. Our analysis revealed that the transcription factor Mef2c, which is linked to various neuropsychiatric and neurodevelopmental disorders, delineates early precursors of parvalbumin-expressing neurons, and is essential for their development. These findings shed new light on the molecular diversification of early inhibitory precursors, and identify gene modules that may influence the specification of human interneuron subtypes."	"Dysregulation of TBX1 dosage in the anterior heart field results in congenital heart disease resembling the 22q11.2 duplication syndrome. Non-allelic homologous recombination events on chromosome 22q11.2 during meiosis can result in either the deletion (22q11.2DS) or duplication (22q11.2DupS) syndrome. Although the spectrum and frequency of congenital heart disease (CHD) are known for 22q11.2DS, there is less known for 22q11.2DupS. We now evaluated cardiac phenotypes in 235 subjects with 22q11.2DupS including 102 subjects we collected and 133 subjects that were previously reported as a confirmation and found 25% have CHD, mostly affecting the cardiac outflow tract (OFT). Previous studies have shown that global loss or gain of function (LOF; GOF) of mouse Tbx1, encoding a T-box transcription factor mapping to the region of synteny to 22q11.2, results in similar OFT defects. To further evaluate Tbx1 function in the progenitor cells forming the cardiac OFT, termed the anterior heart field, Tbx1 was overexpressed using the Mef2c-AHF-Cre driver (Tbx1 GOF). Here we found that all resulting conditional GOF embryos had a persistent truncus arteriosus (PTA), similar to what was previously reported for conditional Tbx1 LOF mutant embryos. To understand the basis for the PTA in the conditional GOF embryos, we found that proliferation in the Mef2c-AHF-Cre lineage cells before migrating to the heart, was reduced and critical genes were oppositely changed in this tissue in Tbx1 GOF embryos versus conditional LOF embryos. These results suggest that a major function of TBX1 in the AHF is to maintain the normal balance of expression of key cardiac developmental genes required to form the aorta and pulmonary trunk, which is disrupted in 22q11.2DS and 22q11.2DupS."	"MiR-204-5p regulates C2C12 myoblast differentiation by targeting MEF2C and ERRγ. Myogenic differentiation, which occurs in the process of muscle development, is a highly ordered process. Increasing evidence indicates that microRNAs (miRNAs) are important regulators in myogenic processes. In this study, we found that miR-204-5p expression gradually decreased when myoblasts were induced to differentiate. Our results suggested that miR-204-5p blunted myoblast differentiation, which was accompanied with a decreased proportion of myosin heavy chain (MyHC)-positive cells in myoblasts with augmented expression of miR-204-5p. Furthermore, overexpression of miR-204-5p significantly decreased the MyHC composition of slow-twitch fibers in myoblasts. Luciferase activity assays confirmed that miR-204-5p directly targeted the 3'-untranslated region (3'-UTR) of myocyte enhancer factor 2C (MEF2C) and estrogen-related receptor gamma (ERRγ). Small interfering RNA (siRNA) technology successfully inhibited the expression of MEF2C and ERRγ. Interference with MEF2C or ERRγ inhibited myoblast differentiation and the formation of slow-twitch fibers. Meanwhile, co-transfection of either si-MEF2C or si-ERRγ with miR-204-5p mimics resulted in a more severe attenuation of myogenic differentiation. In summary, this study demonstrates that miR-204-5p inhibits myoblast differentiation by targeting MEF2C and ERRγ. Our findings suggest that miR-204-5p is a potential regulator that could influence myogenesis."	"PVT1 regulates the malignant behaviors of human glioma cells by targeting miR-190a-5p and miR-488-3p. The long non-coding RNA (lncRNA) PVT1 is reported to be involved in tumorigenesis and the progression of many malignancies. However, the function of PVT1 in gliomas remains unclarified. The present study demonstrated the expression level of PVT1 using qRT-PCR. The role of PVT1 in the regulation of biological behaviors of glioma cells was investigated using CCK-8 assay, Transwell assay and flow cytometry. The possible molecular mechanisms were also elucidated. In our results, PVT1 was up-regulated in glioma specimens and cell lines. Knockdown of PVT1 impaired the malignant behaviors of glioma cells via the suppression of proliferation, migration and invasion, as well as through promotion of apoptosis. Furthermore, PVT1 was identified to affect the glioma cells via binding to miR-190a-5p and miR-488-3p, which were down-regulated and played tumor suppressor roles in glioma cells. Up-regulated miR-190a-5p or miR-488-3p partially rescued the suppressive effect induced by PVT1 knockdown. Myocyte enhancer factor 2C (MEF2C) was a direct downstream target of miR-190a-5p and miR-488-3p, which was proved to be an oncogene and involved in the PVT1 knockdown induced regulation of biological behaviors of glioma cells. Over-expression of MEF2C up-regulated JAGGED1 by increasing the promoter activity of JAGGED1. PVT1 knockdown combined with miR-190a-5p and miR-488-3p over-expression contributed to the smallest tumor volume and the longest survivals in nude mice. In conclusion, PVT1-miR-190a-5p/miR-488-3p-MEF2C-JAGGED1 axis is involved in proliferation and progression of glioma. Thus, PVT1 may become a novel target in glioma therapy."	"Podocyte-specific Rac1 deficiency ameliorates podocyte damage and proteinuria in STZ-induced diabetic nephropathy in mice. Activation of Ras-related C3 botulinum toxin substrate 1 (Rac1) has been implicated in diverse kidney diseases, yet its in vivo significance in diabetic nephropathy (DN) is largely unknown. In the present study, we demonstrated a podocyte-specific Rac1-deficient mouse strain and showed that specific inhibition of Rac1 was able to attenuate diabetic podocyte injury and proteinuria by the blockade of Rac1/PAK1/p38/β-catenin signaling cascade, which reinstated the integrity of podocyte slit diaphragms (SD), rectified the effacement of foot processes (FPs), and prevented the dedifferentiation of podocytes. In vitro, we showed Rac1/PAK1 physically bound to β-catenin and had a direct phosphorylation modification on its C-terminal Ser675, leading to less ubiquitylated β-catenin, namely more stabilized β-catenin, and its nuclear migration under high-glucose conditions; further, p38 activation might be responsible for β-catenin nuclear accumulation via potentiating myocyte-specific enhancer factor 2C (MEF2c) phosphorylation. These findings provided evidence for a potential renoprotective and therapeutic strategy of cell-specific Rac1 deficiency for DN and other proteinuric diseases."	"A Novel MEF2C Loss-of-Function Mutation Associated with Congenital Double Outlet Right Ventricle. Congenital heart defect (CHD) represents the most prevalent birth defect, and accounts for substantial morbidity and mortality in humans. Aggregating evidence demonstrates the genetic basis for CHD. However, CHD is a heterogeneous disease, and the genetic determinants underlying CHD in most patients remain unknown. In the present study, a cohort of 186 unrelated cases with CHD and 300 unrelated control individuals were recruited. The coding exons and flanking introns of the MEF2C gene, which encodes a transcription factor crucial for proper cardiovascular development, were sequenced in all study participants. The functional effect of an identified MEF2C mutation was characterized using a dual-luciferase reporter assay system. As a result, a novel heterozygous MEF2C mutation, p.R15C, was detected in an index patient with congenital double outlet right ventricle (DORV) as well as ventricular septal defect. Analysis of the proband's pedigree showed that the mutation co-segregated with CHD with complete penetrance. The missense mutation, which changed the evolutionarily conserved amino acid, was absent in 300 control individuals. Functional deciphers revealed that the mutant MEF2C protein had a significantly decreased transcriptional activity. Furthermore, the mutation significantly reduced the synergistic activation between MEF2C and GATA4, another transcription factor linked to CHD. This study firstly associates MEF2C loss-of-function mutation with DORV in humans, which provides novel insight into the molecular pathogenesis of CHD, suggesting potential implications for genetic counseling and personalized treatment of CHD patients."	"Integrated microRNA and mRNA network analysis of the human myometrial transcriptome in the transition from quiescence to labor. We conducted integrated transcriptomics network analyses of miRNA and mRNA interactions in human myometrium to identify novel molecular candidates potentially involved in human parturition. Myometrial biopsies were collected from women undergoing primary Cesarean deliveries in well-characterized clinical scenarios: (1) spontaneous term labor (TL, n = 5); (2) term nonlabor (TNL, n = 5); (3) spontaneous preterm birth (PTB) with histologic chorioamnionitis (PTB-HCA, n = 5); and (4) indicated PTB nonlabor (PTB-NL, n = 5). RNAs were profiled using RNA sequencing, and miRNA-target interaction networks were mined for key discriminatory subnetworks. Forty miRNAs differed between TL and TNL myometrium, while seven miRNAs differed between PTB-HCA vs. PTB-NL specimens; six of these were cross-validated using quantitative PCR. Based on the combined sequencing data, unsupervised clustering revealed two nonoverlapping cohorts that differed primarily by absence or presence of uterine quiescence, rather than gestational age or original clinical cohort. The intersection of differentially expressed miRNAs and their targets predicted 22 subnetworks with enriched representation of miR-146b-5p, miR-223-3p, and miR-150-5p among miRNAs, and of myocyte enhancer factor-2C (MEF2C) among mRNAs. Of four known MEF2 transcription factors, decreased MEF2A and MEF2C expression in women with uterine nonquiescence was observed in the sequencing data, and validated in a second cohort by quantitative PCR. Immunohistochemistry localized MEF2A and MEF2C to myometrial smooth muscle cells and confirmed decreased abundance with labor. Collectively, these results suggest altered MEF2 expression may represent a previously unrecognized process through which miRNAs contribute to the phenotypic switch from quiescence to labor in human myometrium."	"MEF2C Phosphorylation Is Required for Chemotherapy Resistance in Acute Myeloid Leukemia. In acute myeloid leukemia (AML), chemotherapy resistance remains prevalent and poorly understood. Using functional proteomics of patient AML specimens, we identified MEF2C S222 phosphorylation as a specific marker of primary chemoresistance. We found that Mef2c<sup>S222A/S222A</sup> knock-in mutant mice engineered to block MEF2C phosphorylation exhibited normal hematopoiesis, but were resistant to leukemogenesis induced by MLL-AF9 MEF2C phosphorylation was required for leukemia stem cell maintenance and induced by MARK kinases in cells. Treatment with the selective MARK/SIK inhibitor MRT199665 caused apoptosis and conferred chemosensitivity in MEF2C-activated human AML cell lines and primary patient specimens, but not those lacking MEF2C phosphorylation. These findings identify kinase-dependent dysregulation of transcription factor control as a determinant of therapy response in AML, with immediate potential for improved diagnosis and therapy for this disease.Significance: Functional proteomics identifies phosphorylation of MEF2C in the majority of primary chemotherapy-resistant AML. Kinase-dependent dysregulation of this transcription factor confers susceptibility to MARK/SIK kinase inhibition in preclinical models, substantiating its clinical investigation for improved diagnosis and therapy of AML. Cancer Discov; 8(4); 478-97. ©2018 AACR.This article is highlighted in the In This Issue feature, p. 371."	"Novel Loci Associated With Attention-Deficit/Hyperactivity Disorder Are Revealed by Leveraging Polygenic Overlap With Educational Attainment. Attention-deficit/hyperactivity disorder (ADHD) is a common and highly heritable psychiatric condition. By exploiting the reported relationship between ADHD and educational attainment (EA), we aimed to improve discovery of ADHD-associated genetic variants and to investigate genetic overlap between these phenotypes. A conditional/conjunctional false discovery rate (condFDR/conjFDR) method was applied to genome-wide association study (GWAS) data on ADHD (2,064 trios, 896 cases, and 2,455 controls) and EA (n=328,917) to identify ADHD-associated loci and loci overlapping between ADHD and EA. Identified single nucleotide polymorphisms (SNPs) were tested for association in an independent population-based study of ADHD symptoms (n=17,666). Genetic correlation between ADHD and EA was estimated using LD score regression and Pearson correlation. At levels of condFDR&lt;0.01 and conjFDR&lt;0.05, we identified 5 ADHD-associated loci, 3 of these being shared between ADHD and EA. None of these loci had been identified in the primary ADHD GWAS, demonstrating the increased power provided by the condFDR/conjFDR analysis. Leading SNPs for 4 of 5 identified regions are in introns of protein coding genes (KDM4A, MEF2C, PINK1, RUNX1T1), whereas the remaining one is an intergenic SNP on chromosome 2 at 2p24. Consistent direction of effects in the independent study of ADHD symptoms was shown for 4 of 5 identified loci. A polygenic overlap between ADHD and EA was supported by significant genetic correlation (rg=-0.403, p=7.90×10<sup>-8</sup>) and &gt;10-fold mutual enrichment of SNPs associated with both traits. We identified 5 novel loci associated with ADHD and provided evidence for a shared genetic basis between ADHD and EA. These findings could aid understanding of the genetic risk architecture of ADHD and its relation to EA."	"Critical role of phosphodiesterase 2A in mouse congenital heart defects. Phosphodiesterase 2 A (Pde2A), a cAMP-hydrolysing enzyme, is essential for mouse development; however, the cause of Pde2A knockout embryonic lethality is unknown. To understand whether Pde2A plays a role in cardiac development, hearts of Pde2A deficient embryos were analysed at different stage of development. At the stage of four chambers, Pde2A deficient hearts were enlarged compared to the hearts of Pde2A heterozygous and wild-type. Pde2A knockout embryos revealed cardiac defects such as absence of atrial trabeculation, interventricular septum (IVS) defects, hypertrabeculation and thinning of the myocardial wall and in rare cases they had overriding aorta and valves defects. E14.5 Pde2A knockouts showed reduced cardiomyocyte proliferation and increased apoptosis in the IVS and increased proliferation in the ventricular trabeculae. Analyses of E9.5 Pde2A knockout embryos revealed defects in cardiac progenitor and neural crest markers, increase of Islet1 positive and AP2 positive apoptotic cells. The expression of early cTnI and late Mef2c cardiomyocyte differentiation markers was strongly reduced in Pde2A knockout hearts. The master transcription factors of cardiac development, Tbx, were down-regulated in E14.5 Pde2A knockout hearts. Absence of Pde2A caused an increase of intracellular cAMP level, followed by an up-regulation of the inducible cAMP early repressor, Icer in fetal hearts. In vitro experiments on wild-type fetal cardiomyocytes showed that Tbx gene expression is down-regulated by cAMP inducers. Furthermore, Pde2A inhibition in vivo recapitulated the heart defects observed in Pde2A knockout embryos, affecting cardiac progenitor cells. Interestingly, the expression of Pde2A itself was dramatically affected by Pde2A inhibition, suggesting a potential autoregulatory loop. We demonstrated for the first time a direct relationship between Pde2A impairment and the onset of mouse congenital heart defects, highlighting a novel role for cAMP in cardiac development regulation."	"Alzheimer risk loci and associated neuropathology in a population-based study (Vantaa 85+). To test the association of distinct neuropathologic features of Alzheimer disease (AD) with risk loci identified in genome-wide association studies. Vantaa 85+ is a population-based study that includes 601 participants aged ≥85 years, of which 256 were neuropathologically examined. We analyzed 29 AD risk loci in addition to APOE ε4, which was studied separately and used as a covariate. Genotyping was performed using a single nucleotide polymorphism (SNP) array (341 variants) and imputation (6,038 variants). Participants with Consortium to Establish a Registry for Alzheimer Disease (CERAD) (neuritic Aβ plaques) scores 0 (n = 65) vs score M + F (n = 171) and Braak (neurofibrillary tangle pathology) stages 0-II (n = 74) vs stages IV-VI (n = 119), and with capillary Aβ (CapAβ, n = 77) vs without (n = 179) were compared. Cerebral amyloid angiopathy (CAA) percentage was analyzed as a continuous variable. Altogether, 24 of the 29 loci were associated (at p &lt; 0.05) with one or more AD-related neuropathologic features in either SNP array or imputation data. Fifteen loci associated with CERAD score, smallest p = 0.0002122, odds ratio (OR) 2.67 (1.58-4.49) at MEF2C locus. Fifteen loci associated with Braak stage, smallest p = 0.004372, OR 0.31 (0.14-0.69) at GAB2 locus. Twenty loci associated with CAA, smallest p = 7.17E-07, β 14.4 (8.88-20) at CR1 locus. Fifteen loci associated with CapAβ smallest p = 0.002594, OR 0.54 (0.37-0.81) at HLA-DRB1 locus. Certain loci associated with specific neuropathologic features. CASS4, CLU, and ZCWPW1 associated only with CAA, while TREM2 and HLA-DRB5 associated only with CapAβ. AD risk loci differ in their association with neuropathologic features, and we show for the first time distinct risk loci for CAA and CapAβ."	"The effect of maternal exposure to di-(2-ethylhexyl)-phthalate on fetal cardiac development in mice. Accumulating evidence has suggested a link between maternal di-(2-ethylhexyl)-phthalate (DEHP) exposure and various developmental abnormalities. However, the evidence regarding the effect of maternal DEHP exposure on fetal cardiac development is scarce. The present study aimed to determine the effect of maternal DEHP exposure on fetal cardiac development in mice and explore the possible involved mechanism preliminarily. The C57BL mice were randomly divided into four groups: the vehicle group (corn oil, n = 10), 250 mg kg<sup>-1</sup> DEHP group (n = 15), 500 mg kg<sup>-1</sup> DEHP group (n = 20) and 1 g kg<sup>-1</sup> DEHP group (n = 20). Pregnant dams in different group received respective intervention by gavage once daily from embryonic day (E)6.5 to E14.5. Maternal weights were monitored every day and samples were collected at E15.5. Hematoxylin and eosin staining was used to examine fetal cardiac malformations. Real-time quantitative polymerase chain reaction and western blot were applied to detect peroxisome proliferator-activated receptor (PPAR)α/PPARγ/Nkx2.5/Gata4/Tbx5/Mef2c/Chf1 mRNA and protein expression, respectively. Maternal DEHP exposure significantly decreased maternal body weight, fetal weight and placental weight, and remarkably elevated fetal cardiac malformations rate. The phenotypes of cardiac anomalies mainly include septal defects, ventricular myocardium noncompaction and cardiac hypoplasia. Higher doses DEHP (500 mg kg<sup>-1</sup> and 1 g kg<sup>-1</sup> ) could significantly decreased fetal cardiac Gata4/Mef2c/Chf1 expression, while PPARγ expression was upregulated. Maternal exposure to higher doses of DEHP could result in fetal cardiac development malformations in mice and it might have resulted from the inhibition of cardiac GATA4/Mef2c/Chf1 expression via PPARγ activation."	"Comprehensive analysis of lncRNAs and mRNAs with associated co-expression and ceRNA networks in C2C12 myoblasts and myotubes. Long non-coding RNAs (lncRNAs) are emerging as important regulators in the modulation of muscle development and muscle-related diseases. To explore potential regulators of muscle differentiation, we determined the expression profiles of lncRNAs and mRNAs in C2C12 mouse myoblast cell line using microarray analysis. Gene ontology and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analyses were performed to explore their function. We also constructed co-expression, cis/trans-regulation, and competing endogenous RNA (ceRNA) networks with bioinformatics methods. We found that 3067 lncRNAs and 3235 mRNAs were differentially regulated (fold change ≥2.0). Bioinformatics analysis indicated that the principal functions of the transcripts were related to muscle structure development and morphogenesis. Co-expression analysis showed 261 co-expression relationships between 233 lncRNAs and 10 mRNAs, and nine lncRNAs interacted with myog and MEF2C collectively. Cis/trans-regulation prediction revealed that lncRNA Myh6 could be a valuable gene via cis-regulation, and lncRNAs such as 2310043L19Ris, V00821, and AK139352 may participate in particular pathways regulated by transcription factors, including myog, myod1, and foxo1. The myog-specific ceRNA network covered 10 lncRNAs, 378 miRNAs, and 1960 edges. The upregulated lncRNAs Filip1, Myl1, and 2310043L19Rik may promote myog expression by acting as ceRNAs. Our results offer a new perspective on the modulation of lncRNAs in muscle differentiation."	"The Yin and Yang of YY1 in tumor growth and suppression. Yin Yang-1 (YY1) is a zinc finger protein and member of the GLI-Kruppel family that can activate or inactivate gene expression depending on interacting partners, promoter context and chromatin structure, and may be involved in the transcriptional control of ∼10% of the total mammalian gene set. A growing body of literature indicates that YY1 is overexpressed in multiple cancer types and that increased YY1 levels correlate with poor clinical outcomes in many cancers. However, the role of YY1 in the promotion or suppression of tumor growth remains controversial and its regulatory effects may be tumor cell type dependent at least in experimental systems. The molecular mechanisms responsible for the apparently conflicting roles of YY1 are not yet fully elucidated. This review highlights recent advances in our understanding of regulatory insights involving YY1 function in a range of cancer types. For example, YY1's roles in tumor growth involve stabilization of hypoxia-inducible factor HIF-1α in a p53 independent manner, negative regulation of miR-9 transcription, control of MYCT1 transcription, a novel miR-193a-5p-YY1-APC axis, intracellular ROS and mitochondrial superoxide generation, p53 reduction and EGFR activation, control of genes associated with mitochondrial energy metabolism and miRNA regulatory networks involving miR-7, miR-9, miR-34a, miR-186, miR-381, miR-584-3p and miR-635. On the other hand, tumor suppressor roles of YY1 appear to involve YY1 stimulation of tumor suppressor BRCA1, increased Bax transcription and apoptosis involving cytochrome c release and caspase-3/-7 cleavage, induction of heme oxygenase-1, inhibition of pRb phosphorylation and p21 binding to cyclin D1 and cdk4, reduced expression of long noncoding RNA of SOX2 overlapping transcript, and MUC4/ErbB2/p38/MEF2C-dependent downregulation of MMP-10. YY1 expression is associated with that of cancer stem cell markers SOX2, BMI1 and OCT4 across many cancers suggesting multidynamic regulatory control and groups of cancers with distinct molecular signatures. Greater understanding of the mechanistic roles of YY1 will in turn lead to the development of more specific approaches to modulate YY1 expression and activity with therapeutic potential."	"Monogenic disorders that mimic the phenotype of Rett syndrome. Rett syndrome (RTT) is caused by mutations in methyl-CpG-binding protein 2 (MECP2), but defects in a handful of other genes (e.g., CDKL5, FOXG1, MEF2C) can lead to presentations that resemble, but do not completely mirror, classical RTT. In this study, we attempted to identify other monogenic disorders that share features with RTT. We performed a retrospective chart review on n = 319 patients who had undergone clinical whole exome sequencing (WES) for further etiological evaluation of neurodevelopmental diagnoses that remained unexplained despite extensive prior workup. From this group, we characterized those who (1) possessed features that were compatible with RTT based on clinical judgment, (2) subsequently underwent MECP2 sequencing and/or MECP2 deletion/duplication analysis with negative results, and (3) ultimately arrived at a diagnosis other than RTT with WES. n = 7 patients had clinical features overlapping RTT with negative MECP2 analysis but positive WES providing a diagnosis. These seven patients collectively possessed pathogenic variants in six different genes: two in KCNB1 and one each in FOXG1, IQSEC2, MEIS2, TCF4, and WDR45. n = 2 (both with KCNB1 variants) fulfilled criteria for atypical RTT. RTT-associated features included the following: loss of hand or language skills (n = 3; IQSEC2, KCNB1 x 2); disrupted sleep (n = 4; KNCB1, MEIS2, TCF4, WDR45); stereotyped hand movements (n = 5; FOXG1, KNCB1 x 2, MEIS2, TCF4); bruxism (n = 3; KCNB1 x 2; TCF4); and hypotonia (n = 7). Clinically based diagnoses can be misleading, evident by the increasing number of genetic conditions associated with features of RTT with negative MECP2 mutations."	"Stabilization of NF-κB-Inducing Kinase Suppresses MLL-AF9-Induced Acute Myeloid Leukemia. Canonical NF-κB signaling is constitutively activated in acute myeloid leukemia (AML) stem cells and is required for maintenance of the self-renewal of leukemia stem cells (LSCs). However, any potential role for NF-κB non-canonical signaling in AML has been largely overlooked. Here, we report that stabilization of NF-κB-inducing kinase (NIK) suppresses AML. Mechanistically, stabilization of NIK activates NF-κB non-canonical signaling and represses NF-κB canonical signaling. In addition, stabilization of NIK-induced activation of NF-κB non-canonical signaling upregulates Dnmt3a and downregulates Mef2c, which suppresses and promotes AML development, respectively. Importantly, by querying the connectivity MAP using up- and downregulated genes that are present exclusively in NIK-stabilized LSCs, we discovered that verteporfin has anti-AML effects, suggesting that repurposing verteporfin to target myeloid leukemia is worth testing clinically. Our data provide a scientific rationale for developing small molecules to stabilize NIK specifically in myeloid leukemias as an attractive therapeutic option."	"Identification of fusion genes and characterization of transcriptome features in T-cell acute lymphoblastic leukemia. T-cell acute lymphoblastic leukemia (T-ALL) is a clonal malignancy of immature T cells. Recently, the next-generation sequencing approach has allowed systematic identification of molecular features in pediatric T-ALL. Here, by performing RNA-sequencing and other genomewide analysis, we investigated the genomic landscape in 61 adult and 69 pediatric T-ALL cases. Thirty-six distinct gene fusion transcripts were identified, with SET-NUP214 being highly related to adult cases. Among 18 previously unknown fusions, ZBTB16-ABL1, TRA-SALL2, and involvement of NKX2-1 were recurrent events. ZBTB16-ABL1 functioned as a leukemogenic driver and responded to the effect of tyrosine kinase inhibitors. Among 48 genes with mutation rates &gt;3%, 6 were newly found in T-ALL. An aberrantly overexpressed short mRNA transcript of the SLC17A9 gene was revealed in most cases with overexpressed TAL1, which predicted a poor prognosis in the adult group. Up-regulation of HOXA, MEF2C, and LYL1 was often present in adult cases, while TAL1 overexpression was detected mainly in the pediatric group. Although most gene fusions were mutually exclusive, they coexisted with gene mutations. These genetic abnormalities were correlated with deregulated gene expression markers in three subgroups. This study may further enrich the current knowledge of T-ALL molecular pathogenesis."	"Direct In Vivo Reprogramming with Sendai Virus Vectors Improves Cardiac Function after Myocardial Infarction. Direct cardiac reprogramming holds great promise for regenerative medicine. We previously generated directly reprogrammed induced cardiomyocyte-like cells (iCMs) by overexpression of Gata4, Mef2c, and Tbx5 (GMT) using retrovirus vectors. However, integrating vectors pose risks associated with insertional mutagenesis and disruption of gene expression and are inefficient. Here, we show that Sendai virus (SeV) vectors expressing cardiac reprogramming factors efficiently and rapidly reprogram both mouse and human fibroblasts into integration-free iCMs via robust transgene expression. SeV-GMT generated 100-fold more beating iCMs than retroviral-GMT and shortened the duration to induce beating cells from 30 to 10 days in mouse fibroblasts. In vivo lineage tracing revealed that the gene transfer of SeV-GMT was more efficient than retroviral-GMT in reprogramming resident cardiac fibroblasts into iCMs in mouse infarct hearts. Moreover, SeV-GMT improved cardiac function and reduced fibrosis after myocardial infarction. Thus, efficient, non-integrating SeV vectors may serve as a powerful system for cardiac regeneration."	"ADGRV1 is implicated in myoclonic epilepsy. To investigate the significance of variation in ADGRV1 (also known as GPR98, MASS1, and VLGR1), MEF2C, and other genes at the 5q14.3 chromosomal locus in myoclonic epilepsy. We studied the epilepsy phenotypes of 4 individuals with 5q14.3 deletion and found that all had myoclonic seizures. We then screened 6 contiguous genes at 5q14.3, MEF2C, CETN3, MBLAC2, POLR3G, LYSMD3, and ADGRV1, in a 95-patient cohort with epilepsy and myoclonic seizures. Of these genes, point mutations in MEF2C cause a phenotype involving seizures and intellectual disability. A role for ADGRV1 in epilepsy has been proposed previously, based on a recessive mutation in the Frings mouse model of audiogenic seizures, as well as a shared homologous region with another epilepsy gene, LGI1. Six patients from the myoclonic epilepsy cohort had likely pathogenic ultra-rare ADGRV1 variants, and statistical analysis showed that ultra-rare variants were significantly overrepresented when compared to healthy population data from the Genome Aggregation Database. Of the remaining genes, no definite pathogenic variants were identified. Our data suggest that the ADGRV1 variation contributes to epilepsy with myoclonic seizures, although the inheritance pattern may be complex in many cases. In patients with 5q14.3 deletion and epilepsy, ADGRV1 haploinsufficiency likely contributes to seizure development. The latter is a shift from current thinking, as MEF2C haploinsufficiency has been considered the main cause of epilepsy in 5q14.3 deletion syndrome. In cases of 5q14.3 deletion and epilepsy, seizures likely occur due to haploinsufficiency of one or both of ADGRV1 and MEF2C."	"Trichinella spiralis muscle larvae excretory-secretory products induce changes in cytoskeletal and myogenic transcription factors in primary myoblast cultures. Trichinella spiralis infection in skeletal muscle culminates with nurse cell formation. The participation of excretory-secretory products of the muscle larvae has been implicated in this process through different studies performed in infected muscle and the muscle cell line C2C12. In this work, we developed primary myoblast cultures to analyse the changes induced by excretory-secretory products of the muscle larvae in muscle cells. Microarray analyses revealed expression changes in muscle cell differentiation, proliferation, cytoskeleton organisation, cell motion, transcription, cell cycle, apoptosis and signalling pathways such as MAPK, Jak-STAT, Wnt and PI3K-Akt. Some of these changes were further evaluated by other methodologies such as quantitative real-time PCR (qRT-PCR) and western blot, confirming that excretory-secretory products of the muscle larvae treated primary mouse myoblasts undergo increased proliferation, decreased expression of MHC and up-regulation of α-actin. In addition, changes in relevant muscle transcription factors (Pax7, Myf5 and Mef2c) were observed. Taken together, these results provide new information about how T. spiralis could alter the normal process of skeletal muscle repair after ML invasion to accomplish nurse cell formation."	"Involment of RAS/ERK1/2 signaling and MEF2C in miR-155-3p inhibition-triggered cardiomyocyte differentiation of embryonic stem cell. MicroRNAs (miRNAs) are short, noncoding RNAs that regulate post-transcriptional gene expression by targeting messenger RNAs (mRNAs) for cleavage or translational repression. Growing evidence indicates that miR-155 expression changes with the development of heart and plays an important role in heart physiopathology. However, the role of miR-155 in cardiac cells differentiation is unclear. Using the well-established embryonic stem cell (ESC), we demonstrated that miR-155-3p expression was down-regulated during cardiogenesis from mouse ESC. By contrast, the myogenic enhance factor 2C (MEF2C), a predicted target gene of miR-155-3p, was up-regulated. We further demonstrated that miR-155-3p inhibition increased the percentage of embryoid bodies (EB) beating and up-regulated the expression of cardiac specific markers, GATA4, Nkx2.5, and cTnT mRNA and protein. Notably, miR-155-3p inhibition caused upregulation of MEF2C, KRAS and ERK1/2. ERK1/2 inhibitor, PD98059 significantly decreased the expression of MEF2C protein. These findings indicate that miR-155-3p inhibition promotes cardiogenesis, and its mechanisms are involved in the RAS-ERK1/2 signaling and MEF2C."	"LINC00461, a long non-coding RNA, is important for the proliferation and migration of glioma cells. An increasing number of reports have revealed that long non-coding RNAs are important players in tumorigenesis. Here we showed that long non-coding RNA LINC00461 is highly expressed in glioma tissues compared to non-neoplastic brain tissues. The knockdown of LINC00461 suppressed cyclinD1/A/E expression which led to G0/G1 cell cycle arrest and inhibited cell proliferation in glioma cells. LINC00461 suppression also inhibited glioma cell migration and invasion. The function of LINC00461 in glioma cells is partially mediated by MAPK/ERK and PI3K/AKT signaling pathways as down-regulation of LINC00461 expression suppressed ERK1/2 and AKT activities. Moreover, LINC00461 knockdown decreased expression levels of microRNA miR-9 and flanking genes MEF2C and TMEM161B. Taken together, our results demonstrate that LINC00461 is important for glioma progression affecting cell proliferation, migration and invasion via MAPK/ERK, PI3K/AKT, and possibly other signaling pathways."	"Identification of novel genetic regulations associated with airway epithelial homeostasis using next-generation sequencing data and bioinformatics approaches. Airway epithelial cells play important roles in airway remodeling. Understanding gene regulations in airway epithelial homeostasis may provide new insights into pathogenesis and treatment of asthma. This study aimed to combine gene expression (GE) microarray, next generation sequencing (NGS), and bioinformatics to explore genetic regulations associated with airway epithelial homeostasis. We analyzed expression profiles of mRNAs (GE microarray) and microRNAs (NGS) in normal and asthmatic bronchial epithelial cells, and identified 9 genes with potential microRNA-mRNA interactions. Of these 9 dysregulated genes, downregulation of MEF2C and MDGA1 were validated in a representative microarray (GSE43696) from the gene expression omnibus (GEO) database. Our findings suggested that upregulated mir-203a may repress MEF2C, a transcription factor, leading to decreased cellular proliferation. In addition, upregulated mir-3065-3p may repress MDGA1, a cell membrane anchor protein, resulting in suppression of cell-cell adhesion. We also found that KCNJ2, a potassium channel, was downregulated in severe asthma and may promote epithelial cell apoptosis. We proposed that aberrant regulations of mir-203a-MEF2C and mir-3065-3p-MDGA1, as well as downregulation of KCNJ2, play important roles in airway epithelial homeostasis in asthma. These findings provide new perspectives on diagnostic or therapeutic strategies targeting bronchial epithelium for asthma. The approach in this study also provides a new aspect of studying asthma."	"The role of MEF2 transcription factors in dehydration and anoxia survival in Rana sylvatica skeletal muscle. The wood frog (Rana sylvatica) can endure freezing of up to 65% of total body water during winter. When frozen, wood frogs enter a dormant state characterized by a cessation of vital functions (i.e., no heartbeat, blood circulation, breathing, brain activity, or movement). Wood frogs utilize various behavioural and biochemical adaptations to survive extreme freezing and component anoxia and dehydration stresses, including a global suppression of metabolic functions and gene expression. The stress-responsive myocyte enhancer factor-2 (MEF2) transcription factor family regulates the selective expression of genes involved in glucose transport, protein quality control, and phosphagen homeostasis. This study examined the role of MEF2A and MEF2C proteins as well as select downstream targets (glucose transporter-4, calreticulin, and muscle and brain creatine kinase isozymes) in 40% dehydration and 24 h anoxia exposure at the transcriptional, translational, and post-translational levels using qRT-PCR, immunoblotting, and subcellular localization. Mef2a/c transcript levels remained constant during dehydration and anoxia. Total, cytoplasmic, and nuclear MEF2A/C and phospho-MEF2A/C protein levels remained constant during dehydration, whereas a decrease in total MEF2C levels was observed during rehydration. Total and phospho-MEF2A levels remained constant during anoxia, whereas total MEF2C levels decreased during 24 h anoxia and P-MEF2C levels increased during 4 h anoxia. In contrast, cytoplasmic MEF2A levels and nuclear phospho-MEF2A/C levels were upregulated during anoxia. MEF2 downstream targets remained constant during dehydration and anoxia, with the exception of glut4 which was upregulated during anoxia. These results suggest that the upregulated MEF2 response reported in wood frogs during freezing may in part stem from their cellular responses to surviving prolonged anoxia, rather than dehydration, leading to an increase in GLUT4 expression which may have an important role during anoxia survival."	"NitroSynapsin therapy for a mouse MEF2C haploinsufficiency model of human autism. Transcription factor MEF2C regulates multiple genes linked to autism spectrum disorder (ASD), and human MEF2C haploinsufficiency results in ASD, intellectual disability, and epilepsy. However, molecular mechanisms underlying MEF2C haploinsufficiency syndrome remain poorly understood. Here we report that Mef2c <sup>+/-</sup>(Mef2c-het) mice exhibit behavioral deficits resembling those of human patients. Gene expression analyses on brains from these mice show changes in genes associated with neurogenesis, synapse formation, and neuronal cell death. Accordingly, Mef2c-het mice exhibit decreased neurogenesis, enhanced neuronal apoptosis, and an increased ratio of excitatory to inhibitory (E/I) neurotransmission. Importantly, neurobehavioral deficits, E/I imbalance, and histological damage are all ameliorated by treatment with NitroSynapsin, a new dual-action compound related to the FDA-approved drug memantine, representing an uncompetitive/fast off-rate antagonist of NMDA-type glutamate receptors. These results suggest that MEF2C haploinsufficiency leads to abnormal brain development, E/I imbalance, and neurobehavioral dysfunction, which may be mitigated by pharmacological intervention."	"MEF2 transcription factors in human placenta and involvement in cytotrophoblast invasion and differentiation. Development of the human placenta and its trophoblast cell types is critical for a successful pregnancy. Defects in trophoblast invasion and differentiation are associated with adverse pregnancy outcomes, including preeclampsia. The members of myocyte enhancer factor-2 (MEF2) family of transcription factors are key regulators of cellular proliferation, differentiation, and invasion in various cell types and tissues and might play a similarly important role in regulating trophoblast proliferation, invasion, and differentiation during human placental development. In the present study, using human cytotrophoblast cell lines (HTR8/SVneo and BeWo) and primary human cytotrophoblasts (CTBs), we show that members of the MEF2 family are differentially expressed in human placental CTBs, with MEF2B and MEF2D being highly expressed in first trimester extravillous CTBs. Overexpression of MEF2D results in cytotrophoblast proliferation and enhances the invasion and migration of extravillous-like HTR8/SVneo cells. This invasive property is blocked by overexpression of a dominant negative MEF2 (dnMEF2). In contrast, MEF2A is the principal MEF2 isoform expressed in term CTBs, MEF2C and MEF2D being expressed more weakly, and MEF2B expression being undetected. Overexpression of MEF2A induces cytotrophoblast differentiation and syncytium formation in BeWo cells. During in vitro differentiation of primary CTBs, MEF2A expression is associated with CTB differentiation into syncytiotrophoblast. Additionally, the course of p38 MAPK and ERK5 activities parallels the increase in MEF2A expression. These findings suggest individual members of MEF2 family distinctively regulate cytotrophoblast proliferation, invasion, and differentiation. Dysregulation of expression of MEF2 family or of their upstream signaling pathways may be associated with placenta-related pregnancy disorders."	"MEF2C mRNA expression and cognitive function in Japanese patients with Alzheimer's disease. Despite continuing research into Alzheimer's disease (AD), its pathological mechanisms and modulating factors remain unknown. Several genes influence AD pathogenesis by affecting inflammatory pathways. Myocyte-enhancer factor 2C (MEF2C) is one such candidate gene for AD. We examined MEF2C mRNA expression levels and methylation rates of CpG on its promoter region in peripheral leukocytes from Japanese AD patients compared with age- and sex-matched control subjects. In peripheral leukocytes, MEF2C mRNA expression levels in AD subjects were significantly lower than those in control subjects (0.86 ± 0.25 vs 0.99 ± 0.27, respectively, P = 0.007) and were correlated with the Alzheimer's Disease Assessment Scale (r = -0.345, P = 0.049) and the Mini Mental State Examination (r = 0.324, P = 0.02). No significant differences were found in methylation rates between AD and control subjects. MEF2C mRNA expression in leukocytes may be a biological marker for cognitive decline in AD."	"MEF2C loss-of-function mutation contributes to congenital heart defects. Congenital heart disease (CHD) is the most common type of developmental abnormality in humans, and is a leading cause for substantially increased morbidity and mortality in affected individuals. Increasing studies demonstrates a pivotal role of genetic defects in the pathogenesis of CHD, and presently mutations in more than 60 genes have been associated with CHD. Nevertheless, CHD is of pronounced genetic heterogeneity, and the genetic basis underpinning CHD in a large proportion of patients remains unclear. In the present study, the whole coding exons and splicing donors/acceptors of the MEF2C gene, which codes for a transcription factor essential for normal cardiovascular development, were sequenced in 200 unrelated patients affected with CHD, and a novel heterozygous missense mutation, p.L38P, was identified in an index patient with patent ductus arteriosus (PDA) and ventricular septal defect (VSD). Genetic scan of the mutation carrier's family members available showed that the mutation was present in all affected family members but absent in unaffected family members. Analysis of the proband's pedigree revealed that the mutation co-segregated with PDA, which was transmitted as an autosomal dominant trait with complete penetrance. The mutation changed the amino acid that was completely conserved evolutionarily, and did not exist in 300 unrelated, ethnically-matched healthy individuals used as controls. Functional deciphers by using a dual-luciferase reporter assay system unveiled that the mutant MEF2C protein had a significantly reduced transcriptional activity. Furthermore, the mutation significantly diminished the synergistic activation between MEF2C and GATA4, another cardiac core transcription factor that has been causally linked to CHD. In conclusion, this is the first report on the association of a MEF2C loss-of-function mutation with an increased vulnerability to CHD in humans, which provides novel insight into the molecular mechanisms underlying CHD, implying potential implications for early diagnosis and timely prophylaxis of CHD."	"Single-cell transcriptomics reconstructs fate conversion from fibroblast to cardiomyocyte. Direct lineage conversion offers a new strategy for tissue regeneration and disease modelling. Despite recent success in directly reprogramming fibroblasts into various cell types, the precise changes that occur as fibroblasts progressively convert to the target cell fates remain unclear. The inherent heterogeneity and asynchronous nature of the reprogramming process renders it difficult to study this process using bulk genomic techniques. Here we used single-cell RNA sequencing to overcome this limitation and analysed global transcriptome changes at early stages during the reprogramming of mouse fibroblasts into induced cardiomyocytes (iCMs). Using unsupervised dimensionality reduction and clustering algorithms, we identified molecularly distinct subpopulations of cells during reprogramming. We also constructed routes of iCM formation, and delineated the relationship between cell proliferation and iCM induction. Further analysis of global gene expression changes during reprogramming revealed unexpected downregulation of factors involved in mRNA processing and splicing. Detailed functional analysis of the top candidate splicing factor, Ptbp1, revealed that it is a critical barrier for the acquisition of cardiomyocyte-specific splicing patterns in fibroblasts. Concomitantly, Ptbp1 depletion promoted cardiac transcriptome acquisition and increased iCM reprogramming efficiency. Additional quantitative analysis of our dataset revealed a strong correlation between the expression of each reprogramming factor and the progress of individual cells through the reprogramming process, and led to the discovery of new surface markers for the enrichment of iCMs. In summary, our single-cell transcriptomics approaches enabled us to reconstruct the reprogramming trajectory and to uncover intermediate cell populations, gene pathways and regulators involved in iCM induction."	"Effect of stem cell niche elasticity/ECM protein on the self-beating cardiomyocyte differentiation of induced pluripotent stem (iPS) cells at different stages. Stem cell-based myocardial regeneration therapies have emerged as alternative strategies to heart transplantation for serious heart diseases, but autologous beating mature cardiomyocytes are not available. Here we investigated the effect of culture substrates on the cardiomyocyte differentiation of induced pluripotent stem cells (iPSs) in vitro by separately evaluating the following continuous three steps: (1) cardiac marker gene expression, (2) contractile gene expression and self-beating, and (3) beating duration. To this end, we used iPS cells to study the cardiac differentiation, and neonatal rat cardiomyocytes (NCMs) to study beating behavior. These cells were cultured on substrates with different natures, i.e., an elastic substrate (Es) with the modulus of 9, 20, or 180 kPa, and hard tissue culture polystyrene dishes (TCPS) coated with collagen type I (Col), gelatin (Gel), or fibronectin (FN). The results revealed that the effective niches in each step were very different. The cardiac marker gene (GATA4, Tbx5, MEF2C) expression of iPSs at the 1st step was very high on the TCPS coated with FN or Gel, whereas on the FN-coated Es (especially with the 9 kPa modulus), the undifferentiated marker gene (Nanog) expression of iPSs was maintained. The expression of the contractile genes α-MHC, TnC1, and TnT2 and the self-beating (the 2nd step) of the NCMs were high on FN-coated TCPS and Col-coated Es. The 3rd step (beating duration) of the NCMs was effective on the Es, and at 21 days both the iPSs and NCMs stopped beating on the TCPS but were still beating on the Es. Overall, cardiac differentiation 'preferred' ECM-rigid culture substrates, and beating-behavior 'preferred' Col-soft culture substrates. These results are important for understanding and designing cardiac differentiation niches for regenerative medicine, and they suggest that a single culture substrate is not suitable for preparing self-beating cardiomyocytes. The transplantation of beating cardiomyocytes (BCMs) is expected to be made more effective for serious heart diseases. The identification of the appropriate engineering processes and suitable culture substrates for inducing stem cell differentiation into BCMs is thus indispensable. The differentiation can be divided into three major processes, the cardiac differentiation step, the beating-induction step and the beating-duration step. A protocol with the higher efficiency in all of the steps must be useful. In this study, we separately evaluated the effect of culture substrates at each three step. We clarified that the biological and the physical properties of the culture substrates required at these steps were different. We found useful criteria for effective cardiac cell niche systems design."	"The transcription factor MEF2A fine-tunes gene expression in the atrial and ventricular chambers of the adult heart. The distinct morphological and functional properties of the cardiac chambers arise from an elaborate developmental program involving cell lineage determination, morphogenesis, and dynamic spatiotemporal gene expression patterns. Although a number of transcription factors have been identified for proper gene regulation in the chambers, the complete transcriptional network that controls these patterns remains poorly defined. Previous studies have implicated the MEF2C transcription factor in the regulation of chamber-restricted enhancers. To better understand the mechanisms of MEF2-mediated regional gene regulation in the heart, we took advantage of MEF2A knock-out (KO) mice, a model that displays a predominantly ventricular chamber phenotype. Transcriptomic analysis of atrial and ventricular tissue from adult MEF2A KO hearts revealed a striking difference in chamber gene expression, with a larger proportion of dysregulated genes in the atrial chambers. Canonical pathway analysis of genes preferentially dysregulated in the atria and ventricles revealed distinct MEF2A-dependent cellular processes in each cardiac chamber. In the atria, MEF2A regulated genes involved in fibrosis and adhesion, whereas in the ventricles, it controlled inflammation and endocytosis. Finally, analysis of transcription factor-binding site motifs of differentially dysregulated genes uncovered distinct MEF2A co-regulators for the atrial and ventricular gene sets, and a subset of these was found to cooperate with MEF2A. In conclusion, our results suggest a mechanism in which MEF2 transcriptional activity is differentially recruited to fine-tune gene expression levels in each cardiac chamber. This regulatory mechanism ensures optimal output of these gene products for proper physiological function of the atrial and ventricular chambers."	"Functional analysis of schizophrenia genes using GeneAnalytics program and integrated databases. Schizophrenia (SCZ) is a chronic debilitating neuropsychiatric disorder with multiple risk factors involving numerous complex genetic influences. We examined and updated a master list of clinically relevant and susceptibility genes associated with SCZ reported in the literature and genomic databases dedicated to gene discovery for characterization of SCZ genes. We used the commercially available GeneAnalytics computer-based gene analysis program and integrated genomic databases to create a molecular profile of the updated list of 608 SCZ genes to model their impact in select categories (tissues and cells, diseases, pathways, biological processes, molecular functions, phenotypes and compounds) using specialized GeneAnalytics algorithms. Genes for schizophrenia were predominantly expressed in the cerebellum, cerebral cortex, medulla oblongata, thalamus and hypothalamus. Psychiatric/behavioral disorders incorporating SCZ genes included ADHD, bipolar disorder, autism spectrum disorder and alcohol dependence as well as cancer, Alzheimer's and Parkinson's disease, sleep disturbances and inflammation. Function based analysis of major biological pathways and mechanisms associated with SCZ genes identified glutaminergic receptors (e.g., GRIA1, GRIN2, GRIK4, GRM5), serotonergic receptors (e.g., HTR2A, HTR2C), GABAergic receptors (e.g., GABRA1, GABRB2), dopaminergic receptors (e.g., DRD1, DRD2), calcium-related channels (e.g., CACNA1H, CACNA1B), solute transporters (e.g., SLC1A1, SLC6A2) and for neurodevelopment (e.g., ADCY1, MEF2C, NOTCH2, SHANK3). Biological mechanisms involving synaptic transmission, regulation of membrane potential and transmembrane ion transport were identified as leading molecular functions associated with SCZ genes. Our approach to interrogate SCZ genes and their interactions at various levels has increased our knowledge and insight into the disease process possibly opening new avenues for therapeutic intervention."	"Transcription and Signaling Regulators in Developing Neuronal Subtypes of Mouse and Human Enteric Nervous System. The enteric nervous system (ENS) regulates gastrointestinal function via different subtypes of neurons, organized into fine-tuned neural circuits. It is not clear how cell diversity is created within the embryonic ENS; information required for development of cell-based therapies and models of enteric neuropathies. We aimed to identify proteins that regulate ENS differentiation and network formation. We generated and compared RNA expression profiles of the entire ENS, ENS progenitor cells, and non-ENS gut cells of mice, collected at embryonic days 11.5 and 15.5, when different subtypes of neurons are formed. Gastrointestinal tissues from R26ReYFP reporter mice crossed to Sox10-CreER<sup>T2</sup> or Wnt1-Cre mice were dissected and the 6 populations of cells were isolated by flow cytometry. We used histochemistry to map differentially expressed proteins in mouse and human gut tissues at different stages of development, in different regions. We examined enteric neuronal diversity and gastric function in Wnt1-Cre x Sox6<sup>fl/fl</sup> mice, which do not express the Sox6 gene in the ENS. We identified 147 transcription and signaling factors that varied in spatial and temporal expression during development of the mouse ENS. Of the factors also analyzed in human ENS, most were conserved. We uncovered 16 signaling pathways (such as fibroblast growth factor and Eph/ephrin pathways). Transcription factors were grouped according to their specific expression in enteric progenitor cells (such as MEF2C), enteric neurons (such as SOX4), or neuron subpopulations (such as SATB1 and SOX6). Lack of SOX6 in the ENS reduced the numbers of gastric dopamine neurons and delayed gastric emptying. Using transcriptome and histochemical analyses of the developing mouse and human ENS, we mapped expression patterns of transcription and signaling factors. Further studies of these candidate determinants might elucidate the mechanisms by which enteric stem cells differentiate into neuronal subtypes and form distinct connectivity patterns during ENS development. We found expression of SOX6 to be required for development of gastric dopamine neurons."	"Genome-Wide Association Study to Find Modifiers for Tetralogy of Fallot in the 22q11.2 Deletion Syndrome Identifies Variants in the GPR98 Locus on 5q14.3. The 22q11.2 deletion syndrome (22q11.2DS; DiGeorge syndrome/velocardiofacial syndrome) occurs in 1 of 4000 live births, and 60% to 70% of affected individuals have congenital heart disease, ranging from mild to severe. In our cohort of 1472 subjects with 22q11.2DS, a total of 62% (n=906) have congenital heart disease and 36% (n=326) of these have tetralogy of Fallot (TOF), comprising the largest subset of severe congenital heart disease in the cohort. To identify common genetic variants associated with TOF in individuals with 22q11.2DS, we performed a genome-wide association study using Affymetrix 6.0 array and imputed genotype data. In our cohort, TOF was significantly associated with a genotyped single-nucleotide polymorphism (rs12519770, P=2.98×10<sup>-</sup><sup>8</sup>) in an intron of the adhesion GPR98 (G-protein-coupled receptor V1) gene on chromosome 5q14.3. There was also suggestive evidence of association between TOF and several additional single-nucleotide polymorphisms in this region. Some genome-wide significant loci in introns or noncoding regions could affect regulation of genes nearby or at a distance. On the basis of this possibility, we examined existing Hi-C chromatin conformation data to identify genes that might be under shared transcriptional regulation within the region on 5q14.3. There are 6 genes in a topologically associated domain of chromatin with GPR98, including MEF2C (Myocyte-specific enhancer factor 2C). MEF2C is the only gene that is known to affect heart development in mammals and might be of interest with respect to 22q11.2DS. In conclusion, common variants may contribute to TOF in 22q11.2DS and may function in cardiac outflow tract development."	"A distinct microRNA expression profile is associated with α[<sup>11</sup>C]-methyl-L-tryptophan (AMT) PET uptake in epileptogenic cortical tubers resected from patients with tuberous sclerosis complex. Tuberous sclerosis complex (TSC) is characterized by hamartomatous lesions in various organs and arises due to mutations in the TSC1 or TSC2 genes. TSC mutations lead to a range of neurological manifestations including epilepsy, cognitive impairment, autism spectrum disorders (ASD), and brain lesions that include cortical tubers. There is evidence that seizures arise at or near cortical tubers, but it is unknown why some tubers are epileptogenic while others are not. We have previously reported increased tryptophan metabolism measured with α[<sup>11</sup>C]-methyl-l-tryptophan (AMT) positron emission tomography (PET) in epileptogenic tubers in approximately two-thirds of patients with tuberous sclerosis and intractable epilepsy. However, the underlying mechanisms leading to seizure onset in TSC remain poorly characterized. MicroRNAs are enriched in the brain and play important roles in neurodevelopment and brain function. Recent reports have shown aberrant microRNA expression in epilepsy and TSC. In this study, we performed microRNA expression profiling in brain specimens obtained from TSC patients undergoing epilepsy surgery for intractable epilepsy. Typically, in these resections several non-seizure onset tubers are resected together with the seizure-onset tubers because of their proximity. We directly compared seizure onset tubers, with and without increased tryptophan metabolism measured with PET, and non-onset tubers to assess the role of microRNAs in epileptogenesis associated with these lesions. Whether a particular tuber was epileptogenic or non-epileptogenic was determined with intracranial electrocorticography, and tryptophan metabolism was measured with AMT PET. We identified a set of five microRNAs (miR-142-3p, 142-5p, 223-3p, 200b-3p and 32-5p) that collectively distinguish among the three primary groups of tubers: non-onset/AMT-cold (NC), onset/AMT-cold (OC), and onset/AMT-hot (OH). These microRNAs were significantly upregulated in OH tubers compared to the other two groups, and microRNA expression was most significantly associated with AMT-PET uptake. The microRNAs target a group of genes enriched for synaptic signaling and epilepsy risk, including SLC12A5, SYT1, GRIN2A, GRIN2B, KCNB1, SCN2A, TSC1, and MEF2C. We confirmed the interaction between miR-32-5p and SLC12A5 using a luciferase reporter assay. Our findings provide a new avenue for subsequent mechanistic studies of tuber epileptogenesis in TSC."	"ZNF281 enhances cardiac reprogramming by modulating cardiac and inflammatory gene expression. Direct reprogramming of fibroblasts to cardiomyocytes represents a potential means of restoring cardiac function following myocardial injury. AKT1 in the presence of four cardiogenic transcription factors, GATA4, HAND2, MEF2C, and TBX5 (AGHMT), efficiently induces the cardiac gene program in mouse embryonic fibroblasts but not adult fibroblasts. To identify additional regulators of adult cardiac reprogramming, we performed an unbiased screen of transcription factors and cytokines for those that might enhance or suppress the cardiogenic activity of AGHMT in adult mouse fibroblasts. Among a collection of inducers and repressors of cardiac reprogramming, we discovered that the zinc finger transcription factor 281 (ZNF281) potently stimulates cardiac reprogramming by genome-wide association with GATA4 on cardiac enhancers. Concomitantly, ZNF281 suppresses expression of genes associated with inflammatory signaling, suggesting the antagonistic convergence of cardiac and inflammatory transcriptional programs. Consistent with an inhibitory influence of inflammatory pathways on cardiac reprogramming, blockade of these pathways with anti-inflammatory drugs or components of the nucleosome remodeling deacetylase (NuRD) complex, which associate with ZNF281, stimulates cardiac gene expression. We conclude that ZNF281 acts at a nexus of cardiac and inflammatory gene programs, which exert opposing influences on fibroblast to cardiac reprogramming."	"Intrinsic remote conditioning of the myocardium as a comprehensive cardiac response to ischemia and reperfusion. We have previously shown that distal anterior wall ischemia/reperfusion induces gene expression changes in the proximal anterior myocardial area, involving genes responsible for cardiac remodeling. Here we investigated the molecular signals of the ischemia non-affected remote lateral and posterior regions and present gene expression profiles of the entire left ventricle by using our novel and straightforward method of 2D and 3D image reconstruction. Five or 24h after repetitive 10min ischemia/reperfusion without subsequent infarction, pig hearts were explanted and myocardial samples from 52 equally distributed locations of the left ventricle were collected. Expressional changes of seven genes of interest (HIF-1α; caspase-3, transcription factor GATA4; myocyte enhancer factor 2C /MEF2c/; hexokinase 2 /HK2/; clusterin /CLU/ and excision repair cross-complementation group 4 /ERCC4/) were measured by qPCR. 2D and 3D gene expression maps were constructed by projecting the fold changes on the NOGA anatomical mapping coordinates. Caspase-3, GATA4, HK2, CLU, and ERCC4 were up-regulated region-specifically in the ischemic zone at 5 h post ischemia/reperfusion injury. Overexpression of GATA4, clusterin and ERCC4 persisted after 24 h. HK2 showed strong up-regulation in the ischemic zone and down-regulation in remote areas at 5 h, and was severely reduced in all heart regions at 24 h. These results indicate a quick onset of regulation of apoptosis-related genes, which is partially reversed in the late phase of ischemia/reperfusion cardioprotection, and highlight variations between ischemic and unaffected myocardium over time. The NOGA 2D and 3D construction system is an attractive method to visualize expressional variations in the myocardium."	"MEF2C Interacts With c-FOS in PTH-Stimulated Mmp13 Gene Expression in Osteoblastic Cells. Parathyroid hormone (PTH) regulates the transcription of many genes in the osteoblast. One of these genes is Mmp13, which is involved in bone remodeling and early stages of endochondral bone formation. Previously, we reported that PTH induces Mmp13 transcription by regulating the dissociation of histone deacetylase 4 (HDAC4) from runt-related transcription factor 2 (Runx2), and the association of the HATs, p300, and p300/CREB binding protein (CBP)-associated factor. It is known that, in addition to Runx2, HDAC4 binds to the transcription factor, myocyte-specific enhancer factor 2c (MEF2C), and represses its activity. In this work, we investigated whether MEF2C participates in PTH-stimulated Mmp13 gene expression in osteoblastic cells and how it does so. Knockdown of Mef2c in UMR 106-01 cells repressed Mmp13 messenger RNA expression and promoter activity with or without PTH treatment. Chromatin immunoprecipitation (ChIP) assays showed that MEF2C associated with the Mmp13 promoter; this increased after 4 hours of PTH treatment. ChIP-reChIP results indicate that endogenous MEF2C associates with HDAC4 on the Mmp13 promoter; after PTH treatment, this association decreased. From gel shift, ChIP, and promoter-reporter assays, MEF2C was found to associate with the activator protein-1 (AP-1) site without directly binding to DNA and had its stimulatory effect through interaction with c-FOS. In conclusion, MEF2C is necessary for Mmp13 gene expression at the transcriptional level and participates in PTH-stimulated Mmp13 gene expression by increased binding to c-FOS at the AP-1 site in the Mmp13 promoter. The observation of MEF2C interacting with a member of the AP-1 transcription factor family provides knowledge of the functions of HDAC4, c-FOS, and MEF2C."	"Mef2C restrains microglial inflammatory response and is lost in brain ageing in an IFN-I-dependent manner. During ageing, microglia acquire a phenotype that may negatively affect brain function. Here we show that ageing microglial phenotype is largely imposed by interferon type I (IFN-I) chronically present in aged brain milieu. Overexpression of IFN-β in the CNS of adult wild-type mice, but not of mice lacking IFN-I receptor on their microglia, induces an ageing-like transcriptional microglial signature, and impairs cognitive performance. Furthermore, we demonstrate that age-related IFN-I milieu downregulates microglial myocyte-specific enhancer factor 2C (Mef2C). Immune challenge in mice lacking Mef2C in microglia results in an exaggerated microglial response and has an adverse effect on mice behaviour. Overall, our data indicate that the chronic presence of IFN-I in the brain microenvironment, which negatively affects cognitive function, is mediated via modulation of microglial activity. These findings may shed new light on other neurological conditions characterized by elevated IFN-I signalling in the brain.Microglia cells in the brain regulate immune responses, but in ageing can negatively affect brain function. Here the authors show that the chronic presence of type I interferon in aged mouse brain impedes cognitive ability by altering microglia transcriptome and limiting Mef2C, a microglia 'off' signal."	"Regulation of Cartilage Development and Diseases by Transcription Factors. Genetic studies and molecular cloning approaches have been successfully used to identify several transcription factors that regulate the numerous stages of cartilage development. Sex-determining region Y (SRY)-box 9 (Sox9) is an essential transcription factor for the initial stage of cartilage development. Sox5 and Sox6 play an important role in the chondrogenic action of Sox9, presumably by defining its cartilage specificity. Several transcription factors have been identified as transcriptional partners for Sox9 during cartilage development. Runt-related transcription factor 2 (Runx2) and Runx3 are necessary for hypertrophy of chondrocytes. CCAAT/enhancer-binding protein β (C/EBPβ) and activating transcription factor 4 (ATF4) function as co-activators for Runx2 during hypertrophy of chondrocytes. In addition, myocyte-enhancer factor 2C (Mef2C) is required for initiation of chondrocyte hypertrophy, presumably by functioning upstream of Runx2. Importantly, the pathogenic roles of several transcription factors in osteoarthritis have been demonstrated based on the similarity of pathological phenomena seen in osteoarthritis with chondrocyte hypertrophy. We discuss the importance of investigating cellular and molecular properties of articular chondrocytes and degradation mechanisms in osteoarthritis, one of the most common cartilage diseases."	"Ca<sup>2+</sup>/Calmodulin-Dependent Protein Kinase II and Androgen Signaling Pathways Modulate MEF2 Activity in Testosterone-Induced Cardiac Myocyte Hypertrophy. Testosterone is known to induce cardiac hypertrophy through androgen receptor (AR)-dependent and -independent pathways, but the molecular underpinnings of the androgen action remain poorly understood. Previous work has shown that Ca<sup>2+</sup>/calmodulin-dependent protein kinase II (CaMKII) and myocyte-enhancer factor 2 (MEF2) play key roles in promoting cardiac myocyte growth. In order to gain mechanistic insights into the action of androgens on the heart, we investigated how testosterone affects CaMKII and MEF2 in cardiac myocyte hypertrophy by performing studies on cultured rat cardiac myocytes and hearts obtained from adult male orchiectomized (ORX) rats. In cardiac myocytes, MEF2 activity was monitored using a luciferase reporter plasmid, and the effects of CaMKII and AR signaling pathways on MEF2C were examined by using siRNAs and pharmacological inhibitors targeting these two pathways. In the in vivo studies, ORX rats were randomly assigned to groups that were administered vehicle or testosterone (125 mg⋅kg<sup>-1</sup>⋅week<sup>-1</sup>) for 5 weeks, and plasma testosterone concentrations were determined using ELISA. Cardiac hypertrophy was evaluated by measuring well-characterized hypertrophy markers. Moreover, western blotting was used to assess CaMKII and phospholamban (PLN) phosphorylation, and MEF2C and AR protein levels in extracts of left-ventricle tissue from control and testosterone-treated ORX rats. Whereas testosterone treatment increased the phosphorylation levels of CaMKII (Thr286) and phospholambam (PLN) (Thr17) in cardiac myocytes in a time- and concentration-dependent manner, testosterone-induced MEF2 activity and cardiac myocyte hypertrophy were prevented upon inhibition of CaMKII, MEF2C, and AR signaling pathways. Notably, in the hypertrophied hearts obtained from testosterone-administered ORX rats, both CaMKII and PLN phosphorylation levels and AR and MEF2 protein levels were increased. Thus, this study presents the first evidence indicating that testosterone activates MEF2 through CaMKII and AR signaling. Our findings suggest that an orchestrated mechanism of action involving signal transduction and transcription pathways underlies testosterone-induced cardiac myocyte hypertrophy."	"HDAC11 Inhibits Myoblast Differentiation through Repression of MyoD-Dependent Transcription. Abnormal differentiation of muscle is closely associated with aging (sarcopenia) and diseases such as cancer and type II diabetes. Thus, understanding the mechanisms that regulate muscle differentiation will be useful in the treatment and prevention of these conditions. Protein lysine acetylation and methylation are major post-translational modification mechanisms that regulate key cellular processes. In this study, to elucidate the relationship between myogenic differentiation and protein lysine acetylation/methylation, we performed a PCR array of enzymes related to protein lysine acetylation/methylation during C2C12 myoblast differentiation. Our results indicated that the expression pattern of HDAC11 was substantially increased during myoblast differentiation. Furthermore, ectopic expression of HDAC11 completely inhibited myoblast differentiation, concomitant with reduced expression of key myogenic transcription factors. However, the catalytically inactive mutant of HDAC11 (H142/143A) did not impede myoblast differentiation. In addition, wild-type HDAC11, but not the inactive HDAC11 mutant, suppressed MyoD-induced promoter activities of MEF2C and MYOG (Myogenin), and reduced histone acetylation near the E-boxes, the MyoD binding site, of the MEF2C and MYOG promoters. Collectively, our results indicate that HDAC11 would suppress myoblast differentiation via regulation of MyoD-dependent transcription. These findings suggest that HDAC11 is a novel critical target for controlling myoblast differentiation."	"MEF2C loss-of-function mutation associated with familial dilated cardiomyopathy. The MADS-box transcription factor myocyte enhancer factor 2C (MEF2C) is required for the cardiac development and postnatal adaptation and in mice-targeted disruption of the MEF2C gene results in dilated cardiomyopathy (DCM). However, in humans, the association of MEF2C variation with DCM remains to be investigated. The coding regions and splicing boundaries of the MEF2C gene were sequenced in 172 unrelated patients with idiopathic DCM. The available close relatives of the index patient harboring an identified MEF2C mutation and 300 unrelated, ethnically matched healthy individuals used as controls were genotyped for MEF2C. The functional effect of the mutant MEF2C protein was characterized in contrast to its wild-type counterpart by using a dual-luciferase reporter assay system. A novel heterozygous MEF2C mutation, p.Y157X, was detected in an index patient with adult-onset DCM. Genetic screen of the mutation carrier's family members revealed that the mutation co-segregated with DCM, which was transmitted as an autosomal dominant trait with complete penetrance. The non-sense mutation was absent in 300 control individuals. Functional analyses unveiled that the mutant MEF2C protein had no transcriptional activity. Furthermore, the mutation abolished the synergistic transactivation between MEF2C and GATA4 as well as HAND1, two other transcription factors that have been associated with DCM. This study indicates MEF2C as a new gene responsible for human DCM, which provides novel insight into the mechanism underpinning DCM, suggesting potential implications for development of innovative prophylactic and therapeutic strategies for DCM, the most prevalent form of primary myocardial disease."	"Methylation Profiling RIN3 and MEF2C Identifies Epigenetic Marks Associated with Sporadic Early Onset Alzheimer's Disease. A number of genetic loci associate with early onset Alzheimer's disease (EOAD); however, the drivers of this disease remains enigmatic. Genome wide association and in vivo modeling have shown that loss-of-function, e.g., ABCA7, reduced levels of SIRT1 and MEFF2C, or increased levels of PTK2β confer risk or link to the pathogenies. It is known that DNA methylation can profoundly affect gene expression and can impact on the composition of the proteome; therefore, the aim of this study is to assess if genes associated with sporadic EOAD (sEOAD) are differentially methylated. Epi-profiles of DNA extracted from blood and cortex were compared using a pyrosequencing platform. We identified significant group-wide hypomethylation in AD blood when compared to controls for 7 CpGs located within the 3'UTR of RIN3 (CpG1 p = 0.019, CpG2 p = 0.018, CpG3 p = 0.012, CpG4 p = 0.009, CpG5 p = 0.002, CpG6 p = 0.018, and CpG7 p = 0.013, respectively; AD/Control n = 22/26; Male/Female n = 27/21). Observed effects were not gender specific. No group wide significant differences were found in the promoter methylation of PTK2β, ABCA7, SIRT1, or MEF2C, genes known to associate with late onset AD. A rare and significant difference in methylation was observed for one CpG located upstream of the MEF2C promoter in one AD individual only (22% reduction in methylation, p = 2.0E-10; Control n = 26, AD n = 25, Male/Female n = 29/22). It is plausible aberrant methylation may mark sEOAD in blood and may manifest in some individuals as rare epi-variants for genes linked to sEOAD."	"Regulation of transcription factor MEF2C by RNA binding protein HuR: PS021. NA"	"Dietary Sodium Butyrate Supplementation Promotes Oxidative Fiber Formation in Mice. Sodium butyrate (SB), a sodium salt of butyric acid, has been shown to improve the animal production performance. The aim of this work was to test the effect of feeding mice with diets containing different dose of SB (1, 3, and 5%) on oxidative fiber formation. Dietary SB supplementation had no effect on body weights and food intakes. Dietary SB supplementation upregulated the expressions of oxidative fiber-related protein including MyHC I, MyHC IIa, myoglobin, and troponin-I-slow. Dietary SB supplementation also upregulated the expressions of phospho-FoxO1 and MEF2C protein, but did not affect total FoxO1 protein expression. Taken together, these results indicate that dietary SB supplementation promotes oxidative fiber formation in mice, which might be through inactivation of FoxO1 and upregulation of MEF2C expression."	"Single-Construct Polycistronic Doxycycline-Inducible Vectors Improve Direct Cardiac Reprogramming and Can Be Used to Identify the Critical Timing of Transgene Expression. Direct reprogramming is a promising approach in regenerative medicine. Overexpression of the cardiac transcription factors Gata4, Mef2c, and Tbx5 (GMT) or GMT plus Hand2 (GHMT) directly reprogram fibroblasts into cardiomyocyte-like cells (iCMs). However, the critical timing of transgene expression and the molecular mechanisms for cardiac reprogramming remain unclear. The conventional doxycycline (Dox)-inducible temporal transgene expression systems require simultaneous transduction of two vectors (pLVX-rtTA/pLVX-cDNA) harboring the reverse tetracycline transactivator (rtTA) and the tetracycline response element (TRE)-controlled transgene, respectively, leading to inefficient cardiac reprogramming. Herein, we developed a single-construct-based polycistronic Dox-inducible vector (pDox-cDNA) expressing both the rtTA and TRE-controlled transgenes. Fluorescence activated cell sorting (FACS) analyses, quantitative RT-PCR, and immunostaining revealed that pDox-GMT increased cardiac reprogramming three-fold compared to the conventional pLVX-rtTA/pLVX-GMT. After four weeks, pDox-GMT-induced iCMs expressed multiple cardiac genes, produced sarcomeric structures, and beat spontaneously. Co-transduction of pDox-Hand2 with retroviral pMX-GMT increased cardiac reprogramming three-fold compared to pMX-GMT alone. Temporal Dox administration revealed that Hand2 transgene expression is critical during the first two weeks of cardiac reprogramming. Microarray analyses demonstrated that Hand2 represses cell cycle-promoting genes and enhances cardiac reprogramming. Thus, we have developed an efficient temporal transgene expression system, which could be invaluable in the study of cardiac reprogramming."	"High Sensitivity Quantitative Proteomics Using Automated Multidimensional Nano-flow Chromatography and Accumulated Ion Monitoring on Quadrupole-Orbitrap-Linear Ion Trap Mass Spectrometer. Quantitative proteomics using high-resolution and accuracy mass spectrometry promises to transform our understanding of biological systems and disease. Recent development of parallel reaction monitoring (PRM) using hybrid instruments substantially improved the specificity of targeted mass spectrometry. Combined with high-efficiency ion trapping, this approach also provided significant improvements in sensitivity. Here, we investigated the effects of ion isolation and accumulation on the sensitivity and quantitative accuracy of targeted proteomics using the recently developed hybrid quadrupole-Orbitrap-linear ion trap mass spectrometer. We leveraged ultrahigh efficiency nano-electrospray ionization under optimized conditions to achieve yoctomolar sensitivity with more than seven orders of linear quantitative accuracy. To enable sensitive and specific targeted mass spectrometry, we implemented an automated, two-dimensional (2D) ion exchange-reversed phase nanoscale chromatography system. We found that automated 2D chromatography improved the sensitivity and accuracy of both PRM and an intact precursor scanning mass spectrometry method, termed accumulated ion monitoring (AIM), by more than 100-fold. Combined with automated 2D nano-scale chromatography, AIM achieved subattomolar limits of detection of endogenous proteins in complex biological proteomes. This allowed quantitation of absolute abundance of the human transcription factor MEF2C at ∼100 molecules/cell, and determination of its phosphorylation stoichiometry from as little as 1 μg of extracts isolated from 10,000 human cells. The combination of automated multidimensional nano-scale chromatography and targeted mass spectrometry should enable ultrasensitive high-accuracy quantitative proteomics of complex biological systems and diseases."	"Oxidative and glycolytic skeletal muscles show marked differences in gene expression profile in Chinese Qingyuan partridge chickens. Oxidative and glycolytic myofibers have different structures and metabolic characteristics and their ratios are important in determining poultry meat quality. However, the molecular mechanisms underlying their differences are unclear. In this study, global gene expression profiling was conducted in oxidative skeletal muscle (obtained from the soleus, or SOL) and glycolytic skeletal muscle (obtained from the extensor digitorum longus, or EDL) of Chinese Qingyuan partridge chickens, using the Agilent Chicken Gene Expression Chip. A total of 1224 genes with at least 2-fold differences were identified (P &lt; 0.05), of which 654 were upregulated and 570 were downregulated in SOL. GO, KEGG pathway, and co-expressed gene network analyses suggested that PRKAG3, ATP2A2, and PPARGC1A might play important roles in myofiber composition. The function of PPARGC1A gene was further validated. PPARGC1A mRNA expression levels were higher in SOL than in EDL muscles throughout the early postnatal development stages. In myoblast cells, shRNA knockdown of PPARGC1A significantly inhibited some muscle development and transition-related genes, including PPP3CA, MEF2C, and SM (P &lt; 0.01 or P &lt; 0.05), and significantly upregulated the expression of FWM (P &lt; 0.05). Our study demonstrates strong transcriptome differences between oxidative and glycolytic myofibers, and the results suggest that PPARGC1A is a key gene involved in chicken myofiber composition and transition."	"Transcription factor ZNF148 is a negative regulator of human muscle differentiation. Muscle differentiation is a complex process in which muscle progenitor cells undergo determination and eventually cellular fusion. This process is heavily regulated by such master transcription factors as MYOD and members of the MEF2 family. Here, we show that the transcription factor ZNF148 plays a direct role in human muscle cell differentiation. Downregulation of ZNF148 drives the formation of a muscle phenotype with rapid expression of myosin heavy chain, even in proliferative conditions. This phenotype was most likely mediated by the robust and swift upregulation of MYOD and MEF2C."	"MiR-448 promotes vascular smooth muscle cell proliferation and migration in through directly targeting MEF2C. Abnormal proliferation and migration of vascular smooth muscle cells (VSMCs) is a critical process in various cardiovascular diseases such as coronary artery disease (CAD), atherosclerosis, stroke, and hypertension. MicroRNAs (miRNAs) are small, short, and noncoding RNAs that inhibit gene expression through binding to the 3'-UTR (3' untranslated regions) of target gene mRNAs. We showed that the expression of miR-448 was upregulated in VSMCs from coronary atherosclerotic plaques compared with normal coronary artery tissues. We also found that PDGF-bb promoted VSMCs proliferation and could induce miR-448 expression. Ectopic miR-448 expression induced VSMCs proliferation. Overexpression of miR-448 induced ki-67 mRNA and protein expression. Moreover, we identified MEF2C was a direct target of miR-448 in VSMCs. Overexpression of miR-448 promoted VSMCs migration. Furthermore, overexpression of MEF2C decreased miR-448-induced VSMCs proliferation and migration. These evidences suggested that miR-448 played an important role in the proliferation and migration of VSMCs."	"Further Clinical Delineation of the MEF2C Haploinsufficiency Syndrome: Report on New Cases and Literature Review of Severe Neurodevelopmental Disorders Presenting with Seizures, Absent Speech, and Involuntary Movements. Mutations in the MEF2C ( myocyte enhancer factor 2 ) gene have been established as a cause for an intellectual disability syndrome presenting with seizures, absence of speech, stereotypic movements, hypotonia, and limited ambulation. Phenotypic overlap with Rett's and Angelman's syndromes has been noted. Following the first reports of 5q14.3q15 microdeletions encompassing the MEF2C gene, further cases with point mutations and partial gene deletions of the MEF2C gene have been described. We present the clinical phenotype of our cohort of six patients with MEF2C mutations and compare our findings with previously reported patients as well as with a growing number of genetic conditions presenting with a severe neurodevelopmental, Rett-like, phenotype. We aim to add to the current knowledge of the natural history of the &quot;MEF2C haploinsufficiency syndrome&quot; as well as of the differential diagnosis, clinical management, and genetic counseling in this diagnostically challenging group of patients."	"Re-evaluation of hypoplastic left heart syndrome from a developmental and morphological perspective. Hypoplastic left heart syndrome (HLHS) covers a spectrum of rare congenital anomalies characterised by a non-apex forming left ventricle and stenosis/atresia of the mitral and aortic valves. Despite many studies, the causes of HLHS remain unclear and there are conflicting views regarding the role of flow, valvar or myocardial abnormalities in its pathogenesis, all of which were proposed prior to the description of the second heart field. Our aim was to re-evaluate the patterns of malformation in HLHS in relation to recognised cardiac progenitor populations, with a view to providing aetiologically useful sub-groupings for genomic studies. We examined 78 hearts previously classified as HLHS, with subtypes based on valve patency, and re-categorised them based on their objective ventricular phenotype. Three distinct subgroups could be identified: slit-like left ventricle (24%); miniaturised left ventricle (6%); and thickened left ventricle with endocardial fibroelastosis (EFE; 70%). Slit-like ventricles were always found in combination with aortic atresia and mitral atresia. Miniaturised left ventricles all had normally formed, though smaller aortic and mitral valves. The remaining group were found to have a range of aortic valve malformations associated with thickened left ventricular walls despite being described as either atresia or stenosis. The degree of myocardial thickening was not correlated to the degree of valvar stenosis. Lineage tracing in mice to investigate the progenitor populations that form the parts of the heart disrupted by HLHS showed that whereas Nkx2-5-Cre labelled myocardial and endothelial cells within the left and right ventricles, Mef2c-AHF-Cre, which labels second heart field-derived cells only, was largely restricted to the endocardium and myocardium of the right ventricle. However, like Nkx2-5-Cre, Mef2c-AHF-Cre lineage cells made a significant contribution to the aortic and mitral valves. In contrast, Wnt1-Cre made a major contribution only to the aortic valve. This suggests that discrete cardiac progenitors might be responsible for the patterns of defects observed in the distinct ventricular sub-groups. Only the slit-like ventricle grouping was found to map to the current nomenclature: the combination of mitral atresia with aortic atresia. It appears that slit-like and miniature ventricles also form discrete sub-groups. Thus, reclassification of HLHS into subgroups based on ventricular phenotype, might be useful in genetic and developmental studies in investigating the aetiology of this severe malformation syndrome."	"Histone Methyltransferase G9a Is Required for Cardiomyocyte Homeostasis and Hypertrophy. Correct gene expression programming of the cardiomyocyte underlies the normal functioning of the heart. Alterations to this can lead to the loss of cardiac homeostasis, triggering heart dysfunction. Although the role of some histone methyltransferases in establishing the transcriptional program of postnatal cardiomyocytes during heart development has been shown, the function of this class of epigenetic enzymes is largely unexplored in the adult heart. In this study, we investigated the role of G9a/Ehmt2, a histone methyltransferase that defines a repressive epigenetic signature, in defining the transcriptional program for cardiomyocyte homeostasis and cardiac hypertrophy. We investigated the function of G9a in normal and stressed cardiomyocytes with the use of a conditional, cardiac-specific G9a knockout mouse, a specific G9a inhibitor, and high-throughput approaches for the study of the epigenome (chromatin immunoprecipitation sequencing) and transcriptome (RNA sequencing); traditional methods were used to assess cardiac function and cardiovascular disease. We found that G9a is required for cardiomyocyte homeostasis in the adult heart by mediating the repression of key genes regulating cardiomyocyte function via dimethylation of H3 lysine 9 and interaction with enhancer of zeste homolog 2, the catalytic subunit of polycomb repressive complex 2, and MEF2C-dependent gene expression by forming a complex with this transcription factor. The G9a-MEF2C complex was found to be required also for the maintenance of heterochromatin needed for the silencing of developmental genes in the adult heart. Moreover, G9a promoted cardiac hypertrophy by repressing antihypertrophic genes. Taken together, our findings demonstrate that G9a orchestrates critical epigenetic changes in cardiomyocytes in physiological and pathological conditions, thereby providing novel therapeutic avenues for cardiac pathologies associated with dysregulation of these mechanisms."	"Vascular Endothelial Growth Factor and Ischemic Heart Disease Risk: A Mendelian Randomization Study. Vascular endothelial growth factor (VEGF) has angiogenic and possibly proatherosclerotic properties. Observationally it is positively associated with cardiovascular disease, although these observations could be confounded or due to reverse causation. We assessed ischemic heart disease (IHD) risk by genetically predicted VEGF, ie, using Mendelian randomization. Single nucleotide polymorphisms (SNPs) predicting VEGF level, at genome-wide significance, were applied to the CARDIoGRAMplusC4D 1000 Genomes-based genome-wide association study IHD case (n=60 801)-control (n=123 504) study. We obtained unconfounded estimates using instrumental variable analysis by combining the Wald estimates for each SNP using inverse variance weighting and Mendelian randomization-Egger regression. Based on 9 SNPs independently predicting VEGF (rs1740073 [C6orf223], rs2375981 [KCNV2], rs2639990 [ZADH2], rs4782371 [ZFPM1], rs6921438 [LOC100132354], rs7043199 [VLDLR-AS1], rs10761741 [JMJD1C], rs6993770 [ZFPM2], and rs114694170 [MEF2C]), VEGF was unrelated to IHD (odds ratio 0.99 per log-transformed pg/mL, 95%CI 0.96-1.02) using inverse variance weighting. However, Mendelian randomization-Egger regression suggested an inverse relation of VEGF with IHD (odds ratio 0.95, 95%CI 0.91-0.99), although the association was not evident after excluding the lead SNP (rs6921438) or additionally excluding the pleiotropic SNP (rs6993770). Our study does not provide strong evidence for a positive effect of VEGF on IHD but does not rule out the possibility that some specific types of VEGF, for which genetic predictors have not yet been identified, might play a role."	"Decline in cellular function of aged mouse c-kit<sup>+</sup> cardiac progenitor cells. While autologous stem cell-based therapies are currently being tested on elderly patients, there are limited data on the function of aged stem cells and in particular c-kit<sup>+</sup> cardiac progenitor cells (CPCs). We isolated c-kit<sup>+</sup> cells from young (3 months) and aged (24 months) C57BL/6 mice to compare their biological properties. Aged CPCs have increased senescence, decreased stemness and reduced capacity to proliferate or to differentiate following dexamethasone (Dex) treatment in vitro, as evidenced by lack of cardiac lineage gene upregulation. Aged CPCs fail to activate mitochondrial biogenesis and increase proteins involved in mitochondrial oxidative phosphorylation in response to Dex. Aged CPCs fail to upregulate paracrine factors that are potentially important for proliferation, survival and angiogenesis in response to Dex. The results highlight marked differences between young and aged CPCs, which may impact future design of autologous stem cell-based therapies. Therapeutic use of c-kit<sup>+</sup> cardiac progenitor cells (CPCs) is being evaluated for regenerative therapy in older patients with ischaemic heart failure. Our understanding of the biology of these CPCs has, however, largely come from studies of young cells and animal models. In the present study we examined characteristics of CPCs isolated from young (3 months) and aged (24 months) mice that could underlie the diverse outcomes reported for CPC-based therapeutics. We observed morphological differences and altered senescence indicated by increased senescence-associated markers β-galactosidase and p16 mRNA in aged CPCs. The aged CPCs also proliferated more slowly than their young counterparts and expressed lower levels of the stemness marker LIN28. We subsequently treated the cells with dexamethasone (Dex), routinely used to induce commitment in CPCs, for 7 days and analysed expression of cardiac lineage marker genes. While MEF2C, GATA4, GATA6 and PECAM mRNAs were significantly upregulated in response to Dex treatment in young CPCs, their expression was not increased in aged CPCs. Interestingly, Dex treatment of aged CPCs also failed to increase mitochondrial biogenesis and expression of the mitochondrial proteins Complex III and IV, consistent with a defect in mitochondria complex assembly in the aged CPCs. Dex-treated aged CPCs also had impaired ability to upregulate expression of paracrine factor genes and the conditioned media from these cells had reduced ability to induce angiogenesis in vitro. These findings could impact the design of future CPC-based therapeutic approaches for the treatment of older patients suffering from cardiac injury."	"Nuclear Pore Complexes: A Scaffold Regulating Developmental Transcription? Nuclear pore complexes (NPCs) have a conserved, but poorly understood, role in transcriptional regulation. Recently, in Developmental Cell, Raices et al. argued that tissue-specific nuclear pore proteins (Nups) act as scaffolds that recruit the transcription factor Mef2C to the NPC, promoting transcription of NPC-associated genes during muscle development."	"Identification of Osr2 Transcriptional Target Genes in Palate Development. Previous studies have identified the odd-skipped related 2 (Osr2) transcription factor as a key intrinsic regulator of palatal shelf growth and morphogenesis. However, little is known about the molecular program acting downstream of Osr2 in the regulation of palatogenesis. In this study, we isolated palatal mesenchyme cells from embryonic day 12.5 (E12.5) and E13.5 Osr2<sup>RFP/+</sup> and Osr2<sup>RFP/-</sup> mutant mouse embryos and performed whole transcriptome RNA sequencing analyses. Differential expression analysis of the RNA sequencing datasets revealed that expression of 70 genes was upregulated and expression of 61 genes was downregulated by &gt;1.5-fold at both E12.5 and E13.5 in the Osr2<sup>RFP/-</sup> palatal mesenchyme cells, in comparison with Osr2<sup>RFP/+</sup> littermates. Gene ontology analysis revealed enrichment of signaling molecules and transcription factors crucial for skeletal development and osteoblast differentiation among those significantly upregulated in the Osr2 mutant palatal mesenchyme. Using quantitative real-time polymerase chain reaction (RT-PCR)and in situ hybridization assays, we validated that the Osr2<sup>-/-</sup> embryos exhibit significantly increased and expanded expression of many osteogenic pathway genes, including Bmp3, Bmp5, Bmp7, Mef2c, Sox6, and Sp7 in the developing palatal mesenchyme. Furthermore, we demonstrate that expression of Sema3a, Sema3d, and Sema3e, is ectopically activated in the developing palatal mesenchyme in Osr2<sup>-/-</sup> embryos. Through chromatin immunoprecipitation, followed by RT-PCR analysis, we demonstrate that endogenous Osr2 protein binds to the promoter regions of the Sema3a and Sema3d genes in the embryonic palatal mesenchyme. Moreover, Osr2 expression repressed the transcription from the Sema3a and Sema3d promoters in cotransfected cells. Since the Sema3 subfamily of signaling molecules plays diverse roles in the regulation of cell proliferation, migration, and differentiation, these data reveal a novel role for Osr2 in regulation of palatal morphogenesis through preventing aberrant activation of Sema3 signaling. Together, these data indicate that Osr2 controls multiple molecular pathways, including BMP and Sema3 signaling, in palate development."	"Control of Pathological Cardiac Hypertrophy by Transcriptional Corepressor IRF2BP2 (Interferon Regulatory Factor-2 Binding Protein 2). The transcription factor NFAT1 (nuclear factor of activated T-cells 1), with the aid of transcriptional coactivators, has been recognized for its necessity and sufficiency to drive pathological cardiac hypertrophy. However, how the transcriptional activity of NFAT1 in terms of cardiac hypertrophy is controlled at the transcriptional level has not been well defined. Herein, we showed that a cardiac-enriched protein IRF2BP2 (interferon regulatory factor-2 binding protein 2) was further upregulated in both human and mouse hypertrophied myocardium and negatively regulated cardiomyocyte hypertrophic response in vitro. By generating cardiomyocyte-specific Irf2bp2 knockout and Irf2bp2-transgenic mouse strains, our in vivo experiments showed that, whereas IRF2BP2 loss-of-function exacerbated both aortic banding- and angiotensin II infusion-induced cardiac hypertrophic response, IRF2BP2 overexpression exerted a strong protective effect against these maladaptive processes. Particularly, IRF2BP2 directly interacted with the C-terminal transactivation domain of NFAT1 by competing with myocyte enhancer factor-2C and disturbing their transcriptional synergism, thereby impeding NFAT1-transactivated hypertrophic transcriptome. As a result, the devastating effect of Irf2bp2 deficiency on cardiac hypertrophy was largely rescued by NFAT1 blockage. Our study, thus, defined IRF2BP2 as a novel negative regulator in controlling pathological cardiac hypertrophy at the transcriptional level."	"Cardiac reprogramming factor Gata4 reduces postinfarct cardiac fibrosis through direct repression of the profibrotic mediator snail. The administration of a variety of reprogramming factor cocktails has now been shown to reprogram cardiac fibroblasts into induced cardiomyocyte-like cells. However, reductions in ventricular fibrosis observed after reprogramming factor administration seem to far exceed the extent of induced cardiomyocyte-like cell generation in vivo. We investigated whether reprogramming factor administration might primarily play a role in activating antifibrotic molecular pathways. Adult rat cardiac fibroblasts were infected with lentivirus encoding the transcription factors Gata4, Mef2c, or Tbx5, all 3 vectors, or a green fluorescent protein control vector. Gene and protein expression assays were performed to identify relevant antifibrotic targets of these factors. The antifibrotic effects of these factors were then investigated in a rat coronary ligation model. Gata4, Mef2c, or Tbx5 administration to rat cardiac fibroblasts in vitro significantly downregulated expression of Snail and the profibrotic factors connective tissue growth factor, collagen1a1, and fibronectin. Of these factors, Gata4 was shown to be the one responsible for the downregulation of the profibrotic factors and Snail (mRNA expression fold change relative to green fluorescent protein for Snail, Gata4: 0.5 ± 0.3, Mef2c: 1.3 ± 1.0, Tbx5: 0.9 ± 0.5, Gata4, Mef2c, or Tbx5: 0.6 ± 0.2, P &lt; .05). Chromatin immunoprecipitation quantitative polymerase chain reaction identified Gata4 binding sites in the Snail promoter. In a rat coronary ligation model, only Gata4 administration alone improved postinfarct ventricular function and reduced the extent of postinfarct fibrosis. Gata4 administration reduces postinfarct ventricular fibrosis and improves ventricular function in a rat coronary ligation model, potentially as a result of Gata4-mediated downregulation of the profibrotic mediator Snail."	"The epigenomics of schizophrenia, in the mouse. Large-scale consortia including the Psychiatric Genomics Consortium, the Common Minds Consortium, BrainSeq and PsychENCODE, and many other studies taken together provide increasingly detailed insights into the genetic and epigenetic risk architectures of schizophrenia (SCZ) and offer vast amounts of molecular information, but with largely unexplored therapeutic potential. Here we discuss how epigenomic studies in human brain could guide animal work to test the impact of disease-associated alterations in chromatin structure and function on cognition and behavior. For example, transcription factors such as MYOCYTE-SPECIFIC ENHANCER FACTOR 2C (MEF2C), or multiple regulators of the open chromatin mark, methyl-histone H3-lysine 4, are associated with the genetic risk architectures of common psychiatric disease and alterations in chromatin structure and function in diseased brain tissue. Importantly, these molecules also affect cognition and behavior in genetically engineered mice, including virus-mediated expression changes in prefrontal cortex (PFC) and other key nodes in the circuitry underlying psychosis. Therefore, preclinical and small laboratory animal work could target genomic sequences affected by chromatin alterations in SCZ. To this end, in vivo editing of enhancer and other regulatory non-coding DNA by RNA-guided nucleases including CRISPR-Cas, and designer transcription factors, could be expected to deliver pipelines for novel therapeutic approaches aimed at improving cognitive dysfunction and other core symptoms of SCZ."	"Smooth Muscle Cells Derived From Second Heart Field and Cardiac Neural Crest Reside in Spatially Distinct Domains in the Media of the Ascending Aorta-Brief Report. Smooth muscle cells (SMCs) of the proximal thoracic aorta are embryonically derived from the second heart field (SHF) and cardiac neural crest (CNC). However, distributions of these embryonic origins are not fully defined. The regional distribution of SMCs of different origins is speculated to cause region-specific aortopathies. Therefore, the aim of this study was to determine the distribution of SMCs of SHF and CNC origins in the proximal thoracic aorta. Mice with repressed LacZ in the ROSA26 locus were bred to those expressing Cre controlled by either the Wnt1 or Mef2c (myocyte-specific enhancer factor 2c) promoter to trace CNC- and SHF-derived SMCs, respectively. Thoracic aortas were harvested, and activity of β-galactosidase was determined. Aortas from Wnt1-Cre mice had β-galactosidase-positive areas throughout the region from the proximal ascending aorta to just distal of the subclavian arterial branch. Unexpectedly, β-galactosidase-positive areas in Mef2c-Cre mice extended from the aortic root throughout the ascending aorta. This distribution occurred independent of sex and aging. Cross and sagittal aortic sections demonstrated that CNC-derived cells populated the inner medial aspect of the anterior region of the ascending aorta and transmurally in the media of the posterior region. Interestingly, outer medial cells throughout anterior and posterior ascending aortas were derived from the SHF. β-Galactosidase-positive medial cells of both origins colocalized with an SMC marker, α-actin. Both CNC- and SHF-derived SMCs populate the media throughout the ascending aorta. The outer medial cells of the ascending aorta form a sleeve populated by SHF-derived SMCs."	"miR-142-3p Contributes to Early Cardiac Fate Decision of Embryonic Stem Cells. MicroRNAs (miRNAs) play important roles in cell fate decisions. However, the miRNAs and their targets involved in the regulation of cardiac lineage specification are largely unexplored. Here, we report novel functions of miR-142-3p in the regulation of cardiomyocyte differentiation from mouse embryonic stem cells (mESCs). With a miRNA array screen, we identified a number of miRNAs significantly changed during mESC differentiation into the mesodermal and cardiac progenitor cells, and miR-142-3p was one among the markedly downregulated miRNAs. Ectopic expression and inhibition of miR-142-3p did not alter the characteristics of undifferentiated ESCs, whereas ectopic expression of miR-142-3p impaired cardiomyocyte formation. In addition, ectopic expression of miR-142-3p inhibited the expression of a cardiac mesodermal marker gene Mesp1 and downstream cardiac transcription factors Nkx2.5, Tbx5, and Mef2c but not the expression of three germ layer-specific genes. We further demonstrated that miR-142-3p targeted the 3'-untranslated region of Mef2c. These results reveal miR-142-3p as an important regulator of early cardiomyocyte differentiation. Our findings provide new knowledge for further understanding of roles and mechanisms of miRNAs as critical regulators of cardiomyocyte differentiation."	"Decreased myoblast differentiation in chronic binge alcohol-administered simian immunodeficiency virus-infected male macaques: role of decreased miR-206. Skeletal muscle stem cells play a critical role in regeneration of myofibers. We previously demonstrated that chronic binge alcohol (CBA) markedly attenuates myoblast differentiation potential and myogenic gene expression. Muscle-specific microRNAs (miRs) are implicated in regulation of myogenic genes. The aim of this study was to determine whether myoblasts isolated from asymptomatic CBA-administered simian immunodeficiency virus (SIV)-infected macaques treated with antiretroviral therapy (ART) showed similar impairments and, if so, to elucidate potential underlying mechanisms. Myoblasts were isolated from muscle at 11 mo after SIV infection from CBA/SIV macaques and from time-matched sucrose (SUC)-treated SIV-infected (SUC/SIV) animals and age-matched controls. Myoblast differentiation and myogenic gene expression were significantly decreased in myoblasts from SUC/SIV and CBA/SIV animals compared with controls. SIV and CBA decreased muscle-specific miR-206 in plasma and muscle and SIV decreased miR-206 expression in myoblasts, with no statistically significant changes in other muscle-specific miRs. These findings were associated with a significant increase in histone deacetylase 4 (HDAC4) and decrease in myogenic enhancer factor 2C (MEF2C) expression in CBA/SIV muscle. Transfection with miR-206 inhibitor decreased myotube differentiation, increased expression of HDAC4, and decreased MEF2C, suggesting a critical role of miR-206 in myogenesis. Moreover, HDAC4 was confirmed to be a direct miR-206 target. These results support a mechanistic role for decreased miR-206 in suppression of myoblast differentiation resulting from chronic alcohol and SIV infection. The parallel changes in skeletal muscle and circulating levels of miR-206 warrant studies to establish the possible use of plasma miR-206 as an indicator of impaired muscle function."	"Regulation of cardiac myocyte cell death and differentiation by myocardin. Myocardin is a cardiac- and smooth muscle-enriched transcriptional co-activator that was originally described as an interacting partner of the serum response factor. Shortly after myocardin's discovery, a wealth of published literature described the role of myocardin as a regulator of smooth muscle differentiation and phenotype modulation, while gene-targeting studies confirmed the essential role of myocardin in vascular development. More recently, myocardin has been implicated as an important regulator of cardiac myocyte differentiation in studies demonstrating direct programming of fibroblasts towards the cardiac lineage. This function of myocardin has been attributed to its physical interaction with cardiac-enriched transcription factors such as MEF2C, GATA4, and TBX5. Moreover, conditional knockout models have revealed a critical role for myocardin during cardiac chamber maturation, and a surprising function for myocardin in the regulation of cardiomyocyte proliferation, cell death, and possibly mitochondrial function. This review summarizes the literature surrounding the cardiac-specific roles of myocardin during development and post-natal cardiac remodeling. In addition, we take a bioinformatics and computational approach to discuss known and predicted interactions and biological functions of myocardin, which suggests areas for future research."	"The NOTCH1/SNAIL1/MEF2C Pathway Regulates Growth and Self-Renewal in Embryonal Rhabdomyosarcoma. Tumor-propagating cells (TPCs) share self-renewal properties with normal stem cells and drive continued tumor growth. However, mechanisms regulating TPC self-renewal are largely unknown, especially in embryonal rhabdomyosarcoma (ERMS)-a common pediatric cancer of muscle. Here, we used a zebrafish transgenic model of ERMS to identify a role for intracellular NOTCH1 (ICN1) in increasing TPCs by 23-fold. ICN1 expanded TPCs by enabling the de-differentiation of zebrafish ERMS cells into self-renewing myf5+ TPCs, breaking the rigid differentiation hierarchies reported in normal muscle. ICN1 also had conserved roles in regulating human ERMS self-renewal and growth. Mechanistically, ICN1 upregulated expression of SNAIL1, a transcriptional repressor, to increase TPC number in human ERMS and to block muscle differentiation through suppressing MEF2C, a myogenic differentiation transcription factor. Our data implicate the NOTCH1/SNAI1/MEF2C signaling axis as a major determinant of TPC self-renewal and differentiation in ERMS, raising hope of therapeutically targeting this pathway in the future."	"Genome-Wide Dynamics of Nascent Noncoding RNA Transcription in Porcine Heart After Myocardial Infarction. Microarrays and RNA sequencing are widely used to profile transcriptome remodeling during myocardial ischemia. However, the steady-state RNA analysis lacks in sensitivity to detect all noncoding RNA species and does not provide separation between transcriptional and post-transcriptional regulations. Here, we provide the first comprehensive analysis of nascent RNA profiles of mRNAs, primary micro-RNAs, long noncoding RNAs, and enhancer RNAs in a large animal model of acute infarction. Acute infarction was induced by cardiac catheterization of domestic swine. Nuclei isolated from healthy, border zone, and ischemic regions of the affected heart were subjected to global run-on sequencing. Global run-on sequencing analysis indicated that half of affected genes are regulated at the level of transcriptional pausing. A gradient of induction of inflammatory mediators and repression of peroxisome proliferator-activated receptor signaling and oxidative phosphorylation was detected when moving from healthy toward infarcted area. In addition, we interrogated the transcriptional regulation of primary micro-RNAs and provide evidence that several arrhythmia-related target genes exhibit repression at post-transcriptional level. We identified 450 long noncoding RNAs differently regulated by ischemia, including novel conserved long noncoding RNAs expressed in antisense orientation to myocardial transcription factors GATA-binding protein 4, GATA-binding protein 6, and Krüppel-like factor 6. Finally, characterization of enhancers exhibiting differential expression of enhancer RNAs pointed a central role for Krüppel-like factor, MEF2C, ETS, NFY, ATF, E2F2, and NRF1 transcription factors in determining transcriptional responses to ischemia. Global run-on sequencing allowed us to follow the gradient of gene expression occurring in the ischemic heart and identify novel noncoding RNAs regulated by oxygen deprivation. These findings highlight potential new targets for diagnosis and treatment of myocardial ischemia."	"Postexercise essential amino acid supplementation amplifies skeletal muscle satellite cell proliferation in older men 24 hours postexercise. Aged skeletal muscle has an attenuated and delayed ability to proliferate satellite cells in response to resistance exercise. The mechanistic target of rapamycin complex 1 (mTORC1) signaling pathway is a focal point for cell growth, however, the effect of postexercise mTORC1 activation on human skeletal muscle satellite cell (SC) proliferation is unknown. To test the proliferative capacity of skeletal muscle SC in aging muscle to a potent mTORC1 activator (i.e., EAA; essential amino acids) we recruited older (~72y) men to conduct leg resistance exercise (8setsx10reps) without (-EAA; n = 8) and with (+EAA: n = 11) ingestion of 10 g of EAA 1 h postexercise. Muscle biopsies were taken before exercise (Pre) and 24 h postexercise (Post) for assessment of expression and fiber type-specific Pax7<sup>+</sup> SC, Ki67<sup>+</sup>Pax7<sup>+</sup> SC and MyoD<sup>+</sup> SC -EAA did not show an increase in Pax7<sup>+</sup> satellite cells at Post(P &gt; 0.82). Although statistical significance for an increase in Pax7 + SC at 24 h post-RE was not observed in +EAA versus -EAA, we observed trends for a treatment difference (P &lt; 0.1). When examining the change from Pre to Post trends were demonstrated (#/myofiber: P = 0.076; and %/myonuclei: P = 0.065) for a greater increase in +EAA versus -EAA Notably, we found an increase SC proliferation in +EAA, but not -EAA with increase in Ki67<sup>+</sup> SC and MyoD<sup>+</sup> cells (P &lt; 0.05). Ki67<sup>+</sup> SC also exhibited a significant group difference Post (P &lt; 0.010). Pax7<sup>+</sup> SC in fast twitch myofibers did not change and were not different between groups (P &gt; 0.10). CDK2, MEF2C, RB1 mRNA only increased in +EAA (P &lt; 0.05). Acute muscle satellite cell proliferative capacity may be partially rescued with postexercise EAA ingestion in older men."	"Nuclear Pores Regulate Muscle Development and Maintenance by Assembling a Localized Mef2C Complex. Nuclear pore complexes (NPCs) are multiprotein channels connecting the nucleus with the cytoplasm. NPCs have been shown to have tissue-specific composition, suggesting that their function can be specialized. However, the physiological roles of NPC composition changes and their impacts on cellular processes remain unclear. Here we show that the addition of the Nup210 nucleoporin to NPCs during myoblast differentiation results in assembly of an Mef2C transcriptional complex required for efficient expression of muscle structural genes and microRNAs. We show that this NPC-localized complex is essential for muscle growth, myofiber maturation, and muscle cell survival and that alterations in its activity result in muscle degeneration. Our findings suggest that NPCs regulate the activity of functional gene groups by acting as scaffolds that promote the local assembly of tissue-specific transcription complexes and show how nuclear pore composition changes can be exploited to regulate gene expression at the nuclear periphery."	"Freeze-responsive regulation of MEF2 proteins and downstream gene networks in muscles of the wood frog, Rana sylvatica. The wood frog survives frigid North American winters by retreating into a state of suspended animation characterized by the freezing of up to 65% of total body water as extracellular ice and displaying no heartbeat, breathing, brain activity, or movement. Physiological and biochemical adaptations are in place to facilitate global metabolic depression and protect against the consequences of whole body freezing. This study examined the myocyte enhancer factor 2 (MEF2) transcription factor family, proteins responsible for coordinating selective gene expression of a myriad of cellular functions from muscle development and remodelling to various stress responses. Immunoblotting, subcellular localization, and RT-PCR were used to analyze the regulation of MEF2A and MEF2C transcription factors and selected downstream targets under their control at transcriptional, translational, and post-translational levels in skeletal and cardiac muscles from control, frozen and thawed frogs. Both MEF2A/C proteins were freeze-responsive in skeletal muscle, displaying increases of 1.7-2 fold for phosphorylated MEF2A<sup>Thr312</sup> and MEF2C<sup>Thr300</sup> during freezing with an enrichment of nuclear phosphorylated MEF2 proteins (by 1.7-2.1 fold) observed as early as 4h post-freezing. Despite the reduced response of total and phosphorylated MEF2A/C protein levels observed in cardiac muscle, the MEF2 downstream gene targets (glucose transporter-4, calreticulin, and creatine kinase brain and muscle isozymes) displayed similar increases in transcript levels (1.7-4.8 fold) after 24h freezing in both muscle types. This study describes a novel freeze-responsive function for MEF2 transcription factors and further elaborates our understanding of the molecular mechanisms underlying natural freeze tolerance. This novel freeze-responsive regulation suggests a role for MEF2s and downstream genes in cryoprotectant glucose distribution, calcium homeostasis, and maintenance of energy reserves vital for successful freeze tolerance."	"Uncovering direct and indirect molecular determinants of chromatin loops using a computational integrative approach. Chromosomal organization in 3D plays a central role in regulating cell-type specific transcriptional and DNA replication timing programs. Yet it remains unclear to what extent the resulting long-range contacts depend on specific molecular drivers. Here we propose a model that comprehensively assesses the influence on contacts of DNA-binding proteins, cis-regulatory elements and DNA consensus motifs. Using real data, we validate a large number of predictions for long-range contacts involving known architectural proteins and DNA motifs. Our model outperforms existing approaches including enrichment test, random forests and correlation, and it uncovers numerous novel long-range contacts in Drosophila and human. The model uncovers the orientation-dependent specificity for long-range contacts between CTCF motifs in Drosophila, highlighting its conserved property in 3D organization of metazoan genomes. Our model further unravels long-range contacts depending on co-factors recruited to DNA indirectly, as illustrated by the influence of cohesin in stabilizing long-range contacts between CTCF sites. It also reveals asymmetric contacts such as enhancer-promoter contacts that highlight opposite influences of the transcription factors EBF1, EGR1 or MEF2C depending on RNA Polymerase II pausing."	"Copy number variations independently induce autism spectrum disorder. The examination of copy number variation (CNV) is critical to understand the etiology of the CNV-related autism spectrum disorders (ASD). DNA samples were obtained from 64 ASD probands, which were genotyped on an Affymetrix CytoScan HD platform. qPCR or FISH were used as a validation for some novel recurrent CNVs. We further compared the clinical phenotypes of the genes in the Database of Chromosomal Imbalance and Phenotype in Humans Using Ensembl Resources (DECIPHER) database with these overlapping genes. Using vast, readily available databases with previously reported clinically relevant CNVs from human populations, the genes were evaluated using Enrichment Analysis and GO Slim Classification. By using the Ploysearch2 software, we identified the interaction relationship between significant genes and known ASD genes. A total of 29 CNVs, overlapping with 520 genes, including 315 OMIM genes, were identified. Additionally, myocyte enhancer factor 2 family (MEF2C) with two cases of CNV overlapping were also identified. Enrichment analysis showed that the 520 genes are most likely to be related to membrane components with protein-binding functions involved in metabolic processes. In the interaction network of those genes, the known ASD genes are mostly at the core position and the significant genes found in our samples are closely related to the known ASD genes. CNVs should be an independent factor to induce autism. With the strategy of our study, we could find the ASDs candidate genes by CNV data and review certain pathogenesis of this disorder. Those CNVs were associated with ASD and they may contribute to ASD by affecting the ASD-related genes."	"β-Cyclodextrin induces the differentiation of resident cardiac stem cells to cardiomyocytes through autophagy. Cardiac stem cells (CSCs) have emerged as promising cell candidates to regenerate damaged hearts, because of the potential in differentiating to cardiomyocytes. However, the differentiation is difficult to trigger without inducers. Here we reported that β-cyclodextrin (β-CD) increased the expression of cardiac transcription factors (Nkx2.5 and GATA4), structural proteins (cardiac Troponin T, cTnt), transcriptional enhancer (Mef2c) and induced GATA4 nucleus translocation in adult resident CSCs, thus β-CD could be used to enhance myogenic transition. As the differentiation process was accompanied by autophagy, we constructed the Atg5 knockdown cell line by using the Atg5 siRNA lentivirus, and the myogenic conversion was blocked in Atg5 knockdown cells, which suggested that β-CD induces the cardiomyocytes transition of resident CSCs through autophagy. Furthermore, we found that JNK/STAT3 and GSK3β/β-catenin was the downstream pathways of β-CD-induced autophagy and differentiation using the inhibitors. Moreover, β-CD performed its functions through improving intracellular cholesterol levels and affecting cholesterol efflux. Collectively, our results reveal that β-CD as a novel tool to induce myogenic transition of CSCs, which could mobilize the resident CSCs or used together with CSCs to enhance the therapy effects of CSCs on damaged hearts. In addition, the clarified molecular mechanisms supported the new targets for inducing cardiomyocyte differentiation."	"MEF2C-dysregulated pediatric T-cell acute lymphoblastic leukemia is associated with CDKN1B deletions and a poor response to glucocorticoid therapy. T-cell acute lymphoblastic leukemia (T-ALL) is an aggressive hematological disease in which multiple genetic abnormalities cooperate in the malignant transformation of T-lymphoid progenitors. Although in pediatric T-ALL, CDKN1B deletions occur in about 12% of the cases and represent one of the most frequent copy number alterations, neither their association with other genetic alterations nor the clinical characteristics of these patients have been determined yet. In this study, we show that loss of CDKN1B increased the prevalence of cell cycle regulator defects in immature T-ALL, usually only ascribed to CDKN2A/B deletions, and that CDKN1B deletions frequently coincide with expression of MEF2C, considered as one of the driving oncogenes in immature early T-cell precursor (ETP) ALL. However, MEF2C-dysregulation was only partially associated with the immunophenotypic characteristics used to define ETP-ALL. Furthermore, MEF2C expression levels were significantly associated with or may even be predictive of the response to glucocorticoid treatment."	"Corrigendum: The LIM domain protein nTRIP6 acts as a co-repressor for the transcription factor MEF2C in myoblasts. NA"	"Production of zebrafish cardiospheres and cardiac progenitor cells in vitro and three-dimensional culture of adult zebrafish cardiac tissue in scaffolds. The hearts of adult zebrafish (Danio rerio) are capable of complete regeneration in vivo even after major injury, making this species of particular interest for understanding the growth and differentiation processes required for cardiac tissue engineering. To date, little research has been carried out on in vitro culture of adult zebrafish cardiac cells. In this work, progenitor-rich cardiospheres suitable for cardiomyocyte differentiation and myocardial regeneration were produced from adult zebrafish hearts. The cardiospheres contained a mixed population of c-kit<sup>+</sup> and Mef2c<sup>+</sup> cells; proliferative peripheral cells of possible mesenchymal lineage were also observed. Cellular outgrowth from cardiac explants and cardiospheres was enhanced significantly using conditioned medium harvested from cultures of a rainbow trout cell line, suggesting that fish-specific trophic factors are required for zebrafish cardiac cell expansion. Three-dimensional culture of zebrafish heart cells in fibrous polyglycolic acid (PGA) scaffolds was carried out under dynamic fluid flow conditions. High levels of cell viability and cardiomyocyte differentiation were maintained within the scaffolds. Expression of cardiac troponin T, a marker of differentiated cardiomyocytes, increased during the first 7 days of scaffold culture; after 15 days, premature disintegration of the biodegradable scaffolds led to cell detachment and a decline in differentiation status. This work expands our technical capabilities for three-dimensional zebrafish cardiac cell culture with potential applications in tissue engineering, drug and toxicology screening, and ontogeny research. Biotechnol. Bioeng. 2017;114: 2142-2148. © 2017 Wiley Periodicals, Inc."	"Antagonistic regulation of cell-cycle and differentiation gene programs in neonatal cardiomyocytes by homologous MEF2 transcription factors. Cardiomyocytes acquire their primary specialized function (contraction) before exiting the cell cycle. In this regard, proliferation and differentiation must be precisely coordinated for proper cardiac morphogenesis. Here, we have investigated the complex transcriptional mechanisms employed by cardiomyocytes to coordinate antagonistic cell-cycle and differentiation gene programs through the molecular dissection of the core cardiac transcription factor, MEF2. Knockdown of individual MEF2 proteins, MEF2A, -C, and -D, in primary neonatal cardiomyocytes resulted in radically distinct and opposite effects on cellular homeostasis and gene regulation. MEF2A and MEF2D were absolutely required for cardiomyocyte survival, whereas MEF2C, despite its major role in cardiac morphogenesis and direct reprogramming, was dispensable for this process. Inhibition of MEF2A or -D also resulted in the activation of cell-cycle genes and down-regulation of markers of terminal differentiation. In striking contrast, the regulation of cell-cycle and differentiation gene programs by MEF2C was antagonistic to that of MEF2A and -D. Computational analysis of regulatory regions from MEF2 isoform-dependent gene sets identified the Notch and Hedgehog signaling pathways as key determinants in coordinating MEF2 isoform-specific control of antagonistic gene programs. These results reveal that mammalian MEF2 family members have distinct transcriptional functions in cardiomyocytes and suggest that these differences are critical for proper development and maturation of the heart. Analysis of MEF2 isoform-specific function in neonatal cardiomyocytes has yielded insight into an unexpected transcriptional regulatory mechanism by which these specialized cells utilize homologous members of a core cardiac transcription factor to coordinate cell-cycle and differentiation gene programs."	"Endothelial Myocyte Enhancer Factor 2c Inhibits Migration of Smooth Muscle Cells Through Fenestrations in the Internal Elastic Lamina. Laminar flow activates myocyte enhancer factor 2 (MEF2) transcription factors in vitro to induce expression of atheroprotective genes in the endothelium. Here we sought to establish the role of Mef2c in the vascular endothelium in vivo. To study endothelial Mef2c, we generated endothelial-specific deletion of Mef2c using Tie2-Cre or Cdh5-Cre-ER<sup>T2</sup> and examined aortas and carotid arteries by en face immunofluorescence. We observed enhanced actin stress fiber formation in the Mef2c-deleted thoracic aortic endothelium (laminar flow region), similar to those observed in normal aortic inner curvature (disturbed flow region). Furthermore, Mef2c deletion resulted in the de novo formation of subendothelial intimal cells expressing markers of differentiated smooth muscle in the thoracic aortas and carotids. Lineage tracing showed that these cells were not of endothelial origin. To define early events in intimal development, we induced endothelial deletion of Mef2c and examined aortas at 4 and 12 weeks postinduction. The number of intimal cell clusters increased from 4 to 12 weeks, but the number of cells within a cluster peaked at 2 cells in both cases, suggesting ongoing migration but minimal proliferation. Moreover, we identified cells extending from the media through fenestrations in the internal elastic lamina into the intima, indicating transfenestral smooth muscle migration. Similar transfenestral migration was observed in wild-type carotid arteries ligated to induce neointimal formation. These results indicate that endothelial Mef2c regulates the endothelial actin cytoskeleton and inhibits smooth muscle cell migration into the intima."	"The association of severe encephalopathy and question mark ear is highly suggestive of loss of MEF2C function. Auriculocondylar syndrome and isolated question mark ear result from dysregulation of the endothelin 1-endothelin receptor type A signaling pathway. Animal models have highlighted the role of the transcription factor MEF2C as an effector of this pathway. We report heterozygous MEF2C loss-of-function as a possible cause of question mark ear associated with intellectual deficiency."	"Distinct Fiber Type Signature in Mouse Muscles Expressing a Mutant Lamin A Responsible for Congenital Muscular Dystrophy in a Patient. Specific mutations in LMNA, which encodes nuclear intermediate filament proteins lamins A/C, affect skeletal muscle tissues. Early-onset LMNA myopathies reveal different alterations of muscle fibers, including fiber type disproportion or prominent dystrophic and/or inflammatory changes. Recently, we identified the p.R388P LMNA mutation as responsible for congenital muscular dystrophy (L-CMD) and lipodystrophy. Here, we asked whether viral-mediated expression of mutant lamin A in murine skeletal muscles would be a pertinent model to reveal specific muscle alterations. We found that the total amount and size of muscle fibers as well as the extent of either inflammation or muscle regeneration were similar to wildtype or mutant lamin A. In contrast, the amount of fast oxidative muscle fibers containing myosin heavy chain IIA was lower upon expression of mutant lamin A, in correlation with lower expression of genes encoding transcription factors MEF2C and MyoD. These data validate this in vivo model for highlighting distinct muscle phenotypes associated with different lamin contexts. Additionally, the data suggest that alteration of muscle fiber type identity may contribute to the mechanisms underlying physiopathology of L-CMD related to R388P mutant lamin A."	"Boosters and barriers for direct cardiac reprogramming. Heart disease is currently the most significant cause of morbidity and mortality worldwide, which accounts for approximately 33% of all deaths. Recently, a promising and alchemy-like strategy has been developed called direct cardiac reprogramming, which directly converts somatic cells such as fibroblasts to cardiac lineage cells such as cardiomyocytes (CMs), termed induced CMs or iCMs. The first in vitro cardiac reprogramming study, mediated by cardiac transcription factors (TFs)-Gata4, Tbx5 and Mef2C-, was not enough efficient to produce an adequate number of fully reprogrammed, functional iCMs. As a result, numerous combinations of cardiac TFs exist for direct cardiac reprogramming of mouse and human fibroblasts. However, the efficiency of direct cardiac reprogramming remains low. Recently, a number of cellular and molecular mechanisms have been identified to increase the efficiency of direct cardiac reprogramming and the quality of iCMs. For example, microgrooved substrate, cardiogenic growth factors [VEGF, FGF, BMP4 and Activin A], and an appropriate stoichiometry of TFs boost the direct cardiac reprogramming. On the other hand, serum, TGFβ signaling, activators of epithelial to mesenchymal transition, and some epigenetic factors (Bmi1 and Ezh2) are barriers for direct cardiac reprogramming. Manipulating these mechanisms by the application of boosters and removing barriers can increase the efficiency of direct cardiac reprogramming and possibly make iCMs reliable for cell-based therapy or other potential applications. In this review, we summarize the latest trends in cardiac TF- or miRNA-based direct cardiac reprogramming and comprehensively discuses all molecular and cellular boosters and barriers affecting direct cardiac reprogramming."	"Rapamycin efficiently promotes cardiac differentiation of mouse embryonic stem cells. To investigate the effects of rapamycin on cardiac differentiation, murine embryonic stem cells (ESCs) were induced into cardiomyocytes by 10<sup>-4</sup> M ascorbic acid (AA), 20 nM rapamycin alone or 0.01% solvent DMSO. We found that rapamycin alone was insufficient to initiate cardiomyogenesis. Then, the ESCs were treated with AA and rapamycin (20 nM) or AA and DMSO (0.01%) as a control. Compared with control, mouse ESCs (mESCs) treated with rapamycin (20 nM) and AA yielded a significantly higher percentage of cardiomyocytes, as confirmed by the percentage of beating embryonic bodies (EBs), the immunofluorescence and FACS analysis. Rapamycin significantly increased the expression of a panel of cardiac markers including Gata4, α-Mhc, β-Mhc, and Tnnt2. Additionally, rapamycin enhanced the expression of mesodermal and cardiac transcription factors such as Mesp1, Brachyury T, Eomes, Isl1, Gata4, Nkx2.5, Tbx5, and Mef2c. Mechanistic studies showed that rapamycin inhibits Wnt/β-catenin and Notch signaling but promotes the expression of fibroblast growth factor (Fgf8), Fgf10, and Nodal at early stage, and bone morphogenetic protein 2 (Bmp 2) at later stages. Sequential treatment of rapamycin showed that rapamycin promotes cardiac differentiation at the early and later stages. Interestingly, another mammalian target of rapamycin (mTOR) inhibitor Ku0063794 (1 µM) had similar effects on cardiomyogenesis. In conclusion, our results highlight a practical approach to generate cardiomyocytes from mESCs by rapamycin."	"Epigallocatechin gallate reverses cTnI-low expression-induced age-related heart diastolic dysfunction through histone acetylation modification. Cardiac diastolic dysfunction (CDD) is the most common form of cardiovascular disorders, especially in elderly people. Cardiac troponin I (cTnI) plays a critical role in the regulation of cardiac function, especially diastolic function. Our previous studies showed that cTnI-low expression induced by histone acetylation modification might be one of the causes that result in diastolic dysfunction in ageing hearts. This study was designed to investigate whether epigallocatechin-3-gallate (EGCG) would modify histone acetylation events to regulate cTnI expression and then improve cardiac functions in ageing mice. Our study shows that EGCG improved cardiac diastolic function of aged mice after 8-week treatment. Low expression of cTnI in the ageing hearts was reversed through EGCG treatment. EGCG inhibited the expression of histone deacetylase 1 (HDAC1) and HDAC3, and the binding levels of HDAC1 in the proximal promoter of cTnI. Acetylated lysine 9 on histone H3 (AcH3K9) levels of cTnI's promoter were increased through EGCG treatment. Additionally, EGCG resulted in an ascent of the binding levels of transcription factors GATA4 and Mef2c with cTnI's promoter. Together, our data indicate that EGCG may improve cardiac diastolic function of ageing mice through up-regulating cTnI by histone acetylation modification. These findings provide new insights into histone acetylation mechanisms of EGCG treatment that may contribute to the prevention of CDD in ageing populations."	"Assessing Cardiomyocyte Subtypes Following Transcription Factor-mediated Reprogramming of Mouse Embryonic Fibroblasts. Direct reprogramming of one cell type into another has recently emerged as a powerful paradigm for regenerative medicine, disease modeling, and lineage specification. In particular, the conversion of fibroblasts into induced cardiomyocyte-like myocytes (iCLMs) by Gata4, Hand2, Mef2c, and Tbx5 (GHMT) represents an important avenue for generating de novo cardiac myocytes in vitro and in vivo. Recent evidence suggests that GHMT generates a greater diversity of cardiac subtypes than previously appreciated, thus underscoring the need for a systematic approach to conducting additional studies. Before direct reprogramming can be used as a therapeutic strategy, however, the mechanistic underpinnings of lineage conversion must be understood in detail to generate specific cardiac subtypes. Here we present a detailed protocol for generating iCLMs by GHMT-mediated reprogramming of mouse embryonic fibroblasts (MEFs). We outline methods for MEF isolation, retroviral production, and MEF infection to accomplish efficient reprogramming. To determine the subtype identity of reprogrammed cells, we detail a step-by-step approach for performing immunocytochemistry on iCLMs using a defined set of compatible antibodies. Methods for confocal microscopy, identification, and quantification of iCLMs and individual atrial (iAM), ventricular (iVM), and pacemaker (iPM) subtypes are also presented. Finally, we discuss representative results of prototypical direct reprogramming experiments and highlight important technical aspects of our protocol to ensure efficient lineage conversion. Taken together, our optimized protocol should provide a stepwise approach for investigators to conduct meaningful cardiac reprogramming experiments that require identification of individual CM subtypes."	"CaMKII Signaling Stimulates Mef2c Activity In Vitro but Only Minimally Affects Murine Long Bone Development in vivo. The long bones of vertebrate limbs form by endochondral ossification, whereby mesenchymal cells differentiate into chondrogenic progenitors, which then differentiate into chondrocytes. Chondrocytes undergo further differentiation from proliferating to prehypertrophic, and finally to hypertrophic chondrocytes. Several signaling pathways and transcription factors regulate this process. Previously, we and others have shown in chicken that overexpression of an activated form of Calcium/calmodulin-dependent kinase II (CaMKII) results in ectopic chondrocyte maturation. Here, we show that this is not the case in the mouse. Although, in vitro Mef2c activity was upregulated by about 55-fold in response to expression of an activated form of CaMKII (DACaMKII), transgenic mice that expressed a dominant-active form of CaMKII under the control of the Col2a1 regulatory elements display only a very transient and mild phenotype. Here, only the onset of chondrocyte hypertrophy at E12.5 is accelerated. It is also this early step in chondrocyte differentiation that is temporarily delayed around E13.5 in transgenic mice expressing the peptide inhibitor CaM-KIIN from rat (rKIIN) under the control of the Col2a1 regulatory elements. Yet, ultimately DACaMKII, as well as rKIIN transgenic mice are born with completely normal skeletal elements with regard to their length and growth plate organization. Hence, our in vivo analysis suggests that CaMKII signaling plays a minor role in chondrocyte maturation in mice."	"Transcription factor-induced activation of cardiac gene expression in human c-kit+ cardiac progenitor cells. Although transplantation of c-kit+ cardiac progenitor cells (CPCs) significantly alleviates post-myocardial infarction left ventricular dysfunction, generation of cardiomyocytes by exogenous CPCs in the recipient heart has often been limited. Inducing robust differentiation would be necessary for improving the efficacy of the regenerative cardiac cell therapy. We assessed the hypothesis that differentiation of human c-kit+ CPCs can be enhanced by priming them with cardiac transcription factors (TFs). We introduced five different TFs (Gata4, MEF2C, NKX2.5, TBX5, and BAF60C) into CPCs, either alone or in combination, and then examined the expression of marker genes associated with the major cardiac cell types using quantitative RT-PCR. When introduced individually, Gata4 and TBX5 induced a subset of myocyte markers. Moreover, Gata4 alone significantly induced smooth muscle cell and fibroblast markers. Interestingly, these gene expression changes brought by Gata4 were also accompanied by morphological changes. In contrast, MEF2C and NKX2.5 were largely ineffective in initiating cardiac gene expression in CPCs. Surprisingly, introduction of multiple TFs in different combinations mostly failed to act synergistically. Likewise, addition of BAF60C to Gata4 and/or TBX5 did not further potentiate their effects on cardiac gene expression. Based on our results, it appears that GATA4 is able to potentiate gene expression programs associated with multiple cardiovascular lineages in CPCs, suggesting that GATA4 may be effective in priming CPCs for enhanced differentiation in the setting of stem cell therapy."	"Cooperative activation of cardiac transcription through myocardin bridging of paired MEF2 sites. Enhancers frequently contain multiple binding sites for the same transcription factor. These homotypic binding sites often exhibit synergy, whereby the transcriptional output from two or more binding sites is greater than the sum of the contributions of the individual binding sites alone. Although this phenomenon is frequently observed, the mechanistic basis for homotypic binding site synergy is poorly understood. Here, we identify a bona fide cardiac-specific Prkaa2 enhancer that is synergistically activated by homotypic MEF2 binding sites. We show that two MEF2 sites in the enhancer function cooperatively due to bridging of the MEF2C-bound sites by the SAP domain-containing co-activator protein myocardin, and we show that paired sites buffer the enhancer from integration site-dependent effects on transcription in vivo Paired MEF2 sites are prevalent in cardiac enhancers, suggesting that this might be a common mechanism underlying synergy in the control of cardiac gene expression in vivo."	"Reduced dosage of β-catenin provides significant rescue of cardiac outflow tract anomalies in a Tbx1 conditional null mouse model of 22q11.2 deletion syndrome. The 22q11.2 deletion syndrome (22q11.2DS; velo-cardio-facial syndrome; DiGeorge syndrome) is a congenital anomaly disorder in which haploinsufficiency of TBX1, encoding a T-box transcription factor, is the major candidate for cardiac outflow tract (OFT) malformations. Inactivation of Tbx1 in the anterior heart field (AHF) mesoderm in the mouse results in premature expression of pro-differentiation genes and a persistent truncus arteriosus (PTA) in which septation does not form between the aorta and pulmonary trunk. Canonical Wnt/β-catenin has major roles in cardiac OFT development that may act upstream of Tbx1. Consistent with an antagonistic relationship, we found the opposite gene expression changes occurred in the AHF in β-catenin loss of function embryos compared to Tbx1 loss of function embryos, providing an opportunity to test for genetic rescue. When both alleles of Tbx1 and one allele of β-catenin were inactivated in the Mef2c-AHF-Cre domain, 61% of them (n = 34) showed partial or complete rescue of the PTA defect. Upregulated genes that were oppositely changed in expression in individual mutant embryos were normalized in significantly rescued embryos. Further, β-catenin was increased in expression when Tbx1 was inactivated, suggesting that there may be a negative feedback loop between canonical Wnt and Tbx1 in the AHF to allow the formation of the OFT. We suggest that alteration of this balance may contribute to variable expressivity in 22q11.2DS."	"miR-124 and miR-9 mediated downregulation of HDAC5 promotes neurite development through activating MEF2C-GPM6A pathway. The class IIa histone deacetylases (HDACs) play important roles in the central nervous system during diverse biological processes such as synaptic plasticity, axon regeneration, cell apoptosis, and neural differentiation. Although it is known that HDAC5 regulates neuronal differentiation, neither the physiological function nor the regulation of HDAC5 in neuronal differentiation is clear. Here, we identify HDAC5 as an inhibitor of neurite elongation and show that HDAC5 is regulated by the brain enriched microRNA miR-124 and miR-9. We discover that HDAC5 inhibits neurite extension both in differentiated P19 cells and primary neurons. We also show that the neuronal membrane glycoprotein GPM6A (M6a) is a direct target gene of HDAC5 regulated transcriptional factor MEF2C. HDAC5 inhibits neurite elongation, acting at least partially via a MEF2C/M6a signaling pathway. We also confirmed the miR-124/miR-9 regulated HDAC5-MEF2C-M6a pathway regulates neurite development in primary neurons. Thus, HDAC5 emerges as a cellular conductor of MEF2C and M6a activity and is regulated by miR-124 and miR-9 to control neurite development."	"5q14.3 Microdeletions: A Contiguous Gene Syndrome with Capillary Malformation-Arteriovenous Malformation Syndrome and Neurologic Findings. Deletions within chromosome region 5q14.3q15 have been associated with a spectrum of disorders including developmental delay, hypotonia, absent speech, mild facial dysmorphism, seizures, and brain anomalies. Some cases of concomitant neurologic abnormalities and cutaneous vascular malformation associated with 5q14.3 deletion have been reported. Previously reported cases had similar features, including multiple capillary malformations, and neurologic abnormalities, including epilepsy, hypotonia, and developmental delay. We report a case of 5q14.3 neurocutaneous syndrome presenting with multiple capillary malformations, neurologic abnormalities, and microdeletion in chromosome 5q14.3."	"Erythropoietin (EPO) ameliorates obesity and glucose homeostasis by promoting thermogenesis and endocrine function of classical brown adipose tissue (BAT) in diet-induced obese mice. Erythropoietin (EPO), clinically used as a hematopoietic drug, has received much attention due to its nonhematopoietic effects. EPO reportedly has beneficial effects on obesity and diabetes mellitus. We investigated whether interscapular brown adipose tissue (iBAT: main part of classical BAT) could play a role in EPO's anti-obesity and anti-diabetic effects in diet-induced obese mice. Four-week-old male C57BL/6J mice were fed a high-fat diet (HFD-Con), and half were additionally given an intraperitoneal injection of recombinant human EPO (200 IU/kg) (HFD-EPO) thrice a week for four weeks. At 8 weeks, EPO-injected mice showed significantly reduced body weight with reduced epididymal and subcutaneous white fat mass and unchanged caloric intake and locomotor activity. HOMA-IR (insulin resistance index) and glucose levels during intraperitoneal glucose tolerance test (IPGTT) were significantly lower in HFD-EPO mice than in HFD-Con mice. EPO-injected mice also showed increased oxygen consumption, indicative of metabolic rate, and skin temperature around iBAT tissue masses. EPO significantly upregulated the PRD1-BF1-RIZ1 homologous domain containing 16 (PRDM16), a transcriptional factor with a crucial role in brown adipocyte differentiation. EPO significantly increased phosphorylated signal transducer and activator of transcription 3 (STAT3), which is downstream of erythropoietin receptor (EpoR) and known to stabilize PRDM16. EPO's suppression of myocyte enhancer factor 2c (Mef2c) and microRNA-133a (miR-133a) via β3-adrenergic receptor caused PRDM16 upregulation. EPO-mediated enhancement of EpoR/STAT3 and β-adrenergic receptor/Mef2c/miR-133 pathways dramatically increases total uncoupling protein 1 (UCP1), an essential enzyme for BAT thermogenesis. Furthermore, EPO activated BAT's endocrine functions. EPO facilitated fibroblast growth factor 21 (FGF21) production and excretion in iBAT, associated with reduction of liver gluconeogenesis-related genes. Thus, EPO's improvement of obesity and glucose homeostasis can be attributed to increased iBAT thermogenic capacity and activation of BAT's endocrine functions."	"Sfrp5 identifies murine cardiac progenitors for all myocardial structures except for the right ventricle. Upon acquirement of pulmonary circulation, the ancestral heart may have been remodelled coincidently with, or accompanied by, the production and rearrangement of progenitor cells. However, the progenitor populations that give rise to the left ventricle (LV) and sinus venosus (SV) are still ambiguous. Here we show that the expression of Secreted frizzled-related protein Sfrp5 in the mouse identifies common progenitors for the outflow tract (OFT), LV, atrium and SV but not the right ventricle (RV). Sfrp5 expression begins at the lateral sides of the cardiac crescent, excluding early differentiating regions, and continues in the venous pole, which gives rise to the SV. Lineage-tracing analysis revealed that descendants of Sfrp5-expressing cells at E7.5 contribute not only to the SV but also to the LV, atria and OFT and are found also in the dorsal splanchnic mesoderm accompanied by the expression of the secondary heart field marker, Islet1. These findings provide insight into the arrangement of cardiac progenitors for systemic circulation."	"Notch Inhibition Enhances Cardiac Reprogramming by Increasing MEF2C Transcriptional Activity. Conversion of fibroblasts into functional cardiomyocytes represents a potential means of restoring cardiac function after myocardial infarction, but so far this process remains inefficient and little is known about its molecular mechanisms. Here we show that DAPT, a classical Notch inhibitor, enhances the conversion of mouse fibroblasts into induced cardiac-like myocytes by the transcription factors GATA4, HAND2, MEF2C, and TBX5. DAPT cooperates with AKT kinase to further augment this process, resulting in up to 70% conversion efficiency. Moreover, DAPT promotes the acquisition of specific cardiomyocyte features, substantially increasing calcium flux, sarcomere structure, and the number of spontaneously beating cells. Transcriptome analysis shows that DAPT induces genetic programs related to muscle development, differentiation, and excitation-contraction coupling. Mechanistically, DAPT increases binding of the transcription factor MEF2C to the promoter regions of cardiac structural genes. These findings provide mechanistic insights into the reprogramming process and may have important implications for cardiac regeneration therapies."	"Abnormal epigenetic changes during differentiation of human skeletal muscle stem cells from obese subjects. Human skeletal muscle stem cells are important for muscle regeneration. However, the combined genome-wide DNA methylation and expression changes taking place during adult myogenesis have not been described in detail and novel myogenic factors may be discovered. Additionally, obesity is associated with low relative muscle mass and diminished metabolism. Epigenetic alterations taking place during myogenesis might contribute to these defects. We used Infinium HumanMethylation450 BeadChip Kit (Illumina) and HumanHT-12 Expression BeadChip (Illumina) to analyze genome-wide DNA methylation and transcription before versus after differentiation of primary human myoblasts from 14 non-obese and 14 obese individuals. Functional follow-up experiments were performed using siRNA mediated gene silencing in primary human myoblasts and a transgenic mouse model. We observed genome-wide changes in DNA methylation and expression patterns during differentiation of primary human muscle stem cells (myoblasts). We identified epigenetic and transcriptional changes of myogenic transcription factors (MYOD1, MYOG, MYF5, MYF6, PAX7, MEF2A, MEF2C, and MEF2D), cell cycle regulators, metabolic enzymes and genes previously not linked to myogenesis, including IL32, metallothioneins, and pregnancy-specific beta-1-glycoproteins. Functional studies demonstrated IL-32 as a novel target that regulates human myogenesis, insulin sensitivity and ATP levels in muscle cells. Furthermore, IL32 transgenic mice had reduced insulin response and muscle weight. Remarkably, approximately 3.7 times more methylation changes (147,161 versus 39,572) were observed during differentiation of myoblasts from obese versus non-obese subjects. In accordance, DNMT1 expression increased during myogenesis only in obese subjects. Interestingly, numerous genes implicated in metabolic diseases and epigenetic regulation showed differential methylation and expression during differentiation only in obese subjects. Our study identifies IL-32 as a novel myogenic regulator, provides a comprehensive map of the dynamic epigenome during differentiation of human muscle stem cells and reveals abnormal epigenetic changes in obesity."	"APOBEC2 negatively regulates myoblast differentiation in muscle regeneration. Recently we found that the deficiency of APOBEC2, a member of apoB mRNA editing enzyme, catalytic polypeptide-like family, leads to a diminished muscle mass and increased myofiber with centrally-located nuclei known as dystrophic phenotypes. APOBEC2 expression is predominant in skeletal and cardiac muscles and elevated exclusively at the early-differentiation phase of wild-type (WT) myoblast cultures; however the physiological significance is still un-known. Here we show that APOBEC2 is a key negative regulator of myoblast differentiation in muscle regeneration. APOBEC2-knockout (A2KO) mice myoblast cultures displayed a normal morphology of primary myotubes along with earlier increase in fusion index and higher expression levels of myosin heavy chain (MyHC), myogenin and its cooperating factor MEF2C than WT myoblasts. Similar response was observable in APOBEC2-knockdown cultures of WT myoblasts that were transfected with the specific siRNA at the differentiation phase (not proliferation phase). Importantly, cardiotoxin-injured A2KO gastrocnemius muscle provided in vivo evidence by showing larger up-regulation of neonatal MyHC and myogenin and hence earlier regeneration of myofiber structures with diminished cross-sectional areas and minimal Feret diameters. Therefore, the findings highlight a promising role for APOBEC2 in normal progression of regenerative myogenesis at the early-differentiation phase upon muscle injury."	"Association and interaction effects of Alzheimer's disease-associated genes and lifestyle on cognitive aging in older adults in a Taiwanese population. Genome-wide association studies and meta-analyses implicated that increased risk of developing Alzheimer's diseases (AD) has been associated with the ABCA7, APOE, BIN1, CASS4, CD2AP, CD33, CELF1, CLU, CR1, DSG2, EPHA1, FERMT2, HLA-DRB1, HLA-DRB4, INPP5D, MEF2C, MS4A4A, MS4A4E, MS4A6E, NME8, PICALM, PLD3, PTK2B, RIN3, SLC24A4, SORL1, and ZCWPW1 genes. In this study, we assessed whether single nucleotide polymorphisms (SNPs) within these 27 AD-associatedgenes are linked with cognitive aging independently and/or through complex interactions in an older Taiwanese population. We also analyzed the interactions between lifestyle and these genes in influencing cognitive aging. A total of 634 Taiwanese subjects aged over 60 years from the Taiwan Biobank were analyzed. Mini-Mental State Examination (MMSE) scores were performed for all subjects to evaluate cognitive functions. Out of the 588 SNPs tested in this study, only the association between CASS4-rs911159 and cognitive aging persisted significantly (P = 2.2 x 10-5) after Bonferroni correction. Our data also showed a nominal association of cognitive aging with the SNPs in six more key AD-associated genes, including EPHA1-rs10952552, FERMT2-rs4901317, MEF2C-rs9293506, PLD3-rs11672825, RIN3-rs1885747, and SLC24A4-rs67063100 (P = 0.0018~0.0097). Additionally, we found the interactions among CASS4-rs911159, EPHA-rs10952552, FERMT2-rs4901317, MEF2C-rs9293506, or SLC24A4-rs67063100 on cognitive aging (P = 0.004~0.035). Moreover, our analysis suggested the interactions of SLC24A4-rs67063100 or MEF2C-rs9293506 with lifestyle such as alcohol consumption, smoking status, physical activity, or social support on cognitive aging (P = 0.008~0.041). Our study indicates that the AD-associated genes may contribute to the risk of cognitive aging independently as well as through gene-gene and gene-lifestyle interactions."	"Discovery and progress of direct cardiac reprogramming. Cardiac disease remains a major cause of death worldwide. Direct cardiac reprogramming has emerged as a promising approach for cardiac regenerative therapy. After the discovery of MyoD, a master regulator for skeletal muscle, other single cardiac reprogramming factors (master regulators) have been sought. Discovery of cardiac reprogramming factors was inspired by the finding that multiple, but not single, transcription factors were needed to generate induced pluripotent stem cells (iPSCs) from fibroblasts. We first reported a combination of cardiac-specific transcription factors, Gata4, Mef2c, and Tbx5 (GMT), that could convert mouse fibroblasts into cardiomyocyte-like cells, which were designated as induced cardiomyocyte-like cells (iCMs). Following our first report of cardiac reprogramming, many researchers, including ourselves, demonstrated an improvement in cardiac reprogramming efficiency, in vivo direct cardiac reprogramming for heart regeneration, and cardiac reprogramming in human cells. However, cardiac reprogramming in human cells and adult fibroblasts remains inefficient, and further efforts are needed. We believe that future research elucidating epigenetic barriers and molecular mechanisms of direct cardiac reprogramming will improve the reprogramming efficiency, and that this new technology has great potential for clinical applications."	"Neural Crest Stem Cells Can Differentiate to a Cardiomyogenic Lineage with an Ability to Contract in Response to Pulsed Infrared Stimulation. Cellular cardiomyoplasty has rapidly risen to prominence in the clinic following a myocardial infarction; however, low engraftment of transplanted cells limits the therapeutic benefit to these procedures. Recently, lineage-specific stem cells differentiated into cardiomyocytes have gained much attention to assist in the repair of an injured heart tissue; however, questions regarding the ideal cell source remain. In the present study, we have identified a source that is easy to extract stem cells from and show that the cells present have a high plasticity toward the cardiomyogenic lineage. We focused on the recently discovered neural crest stem cells residing in the periodontal ligament that can be easily obtained through dental procedures. Neural crest stem cells were obtained from human excised third molars and differentiated in culture using a protocol for directed differentiation into cardiomyocytes. Differentiation of cells was assessed through gene expression and immunostaining studies. Optical stimulation using pulsed infrared radiation (IR) (λ = 1863 nm) was delivered to cell aggregates to study their contractile ability. We show that neural crest stem cells can be differentiated to a cardiomyogenic lineage, which was verified through immunostaining and gene expression. We observed a significant increase in cardiomyocyte-specific markers, NK2 homeobox 5 (NKX2.5) and troponin T type 2 (TNNT2), with positive changes in tropomyosin I (TPM1), gap junction protein alpha 1/Cx43 (GJA1/Cx43), and myocyte enhancement factor 2C (MEF2C). Furthermore, we were able to elicit and maintain pulse-by-pulse contractile responses in the derived cells, including in cardiospheres, with pulsed IR delivered at various radiant energies. The contractility in responses to IR could be maintained at different frequencies (0.25-2 Hz) and up to 10-min durations. While these cells did not maintain their contractility following cessation of IR, these cells demonstrated responses to the optical stimuli that are consistent with previous reports. We also found no evidence for irreversible mitochondrial depolarization in these cells following the long duration of infrared stimulation, suggesting the robustness of these cells. Overall, these results suggest the merit of neural crest-derived stem cells for cardiomyogenic applications and a potential cell source for repair that should contribute to efforts to translate cell-based strategies to the clinic."	"MicroRNA-214 regulates smooth muscle cell differentiation from stem cells by targeting RNA-binding protein QKI. MicroRNA-214(miR-214) has been recently reported to regulate angiogenesis and embryonic stem cells (ESCs) differentiation. However, very little is known about its functional role in vascular smooth muscle cells (VSMCs) differentiation from ESCs. In the present study, we assessed the hypothesis that miR-214 and its target genes play an important role in VSMCs differentiation. Murine ESCs were seeded on collagen-coated flasks and cultured in differentiation medium for 2 to 8 days to allow VSMCs differentiation. miR-214 was significantly upregulated during VSMCs differentiation. miR-214 overexpression and knockdown in differentiating ESCs significantly promoted and inhibited VSMCs -specific genes expression, respectively. Importantly, miR-214 overexpression in ESCs promoted VSMCs differentiation in vivo. Quaking (QKI) was predicted as one of the major targets of miR-214, which was negatively regulated by miR-214. Luciferase assay showed miR-214 substantially inhibited wild type, but not the mutant version of QKI-3-UTR-luciferase activity in differentiating ESCs, further confirming a negative regulation role of miR-214 in QKI gene expression. Mechanistically, our data showed that miR-214 regulated VSMCs gene expression during VSMCs differentiation from ESCs through suppression of QKI. We further demonstrated that QKI down-regulated the expression of SRF, MEF2C and Myocd through transcriptional repression and direct binding to promoters of the SRF, MEF2c and Myocd genes. Taken together, we have uncovered a central role of miR-214 in ESC-VSMC differentiation, and successfully identified QKI as a functional modulating target in miR-214 mediated VSMCs differentiation."	"Myocyte enhancer factor 2C and its directly-interacting proteins: A review. Myocyte enhancer factor 2C (MEF2C) is a transcription factor of MADS box family involved in the early development of several human cells including muscle (i.e., skeletal, cardiac, and smooth), neural, chondroid, immune, and endothelial cells. Dysfunction of MEF2C leads to embryo hypoplasia, disorganized myofibers and perinatal lethality. The main role of MEF2C is its regulation of muscle development. It has been reported that MEF2C-knockout mice die on embryonic day 9.5 from unnatural development of cardiovascular. The effects of MEF2C are mediated by its directly-interacting proteins; therefore, the investigation of these interactions is critical in order to clarify MEF2C's biological function. In this study, we review twenty-five proteins that directly interact with MEF2C, including nineteen proteins related to muscle development, four proteins related to neural cell development, one protein related to chondroid cell development, four proteins related to immune cell development, and two proteins related to endothelial cell development. Among these proteins, the interaction of MEF2C with MRFs is important for differentiation of developing muscle cells. MEF2C interacts with Sox18 for endothelial vessel morphogenesis. The interaction of MEF2C with Cabin1 is important for maintaining T-cell inactivation. Investigating the interactions of MEF2C and its directly-interacting proteins is not only helpful to understand of the physiological function of MEF2C, but also provides a target for future rational drug design."	"Use of FGF-2 and FGF-18 to direct bone marrow stromal stem cells to chondrogenic and osteogenic lineages. Intervertebral disc degeneration/low back pain is the number one global musculoskeletal condition in terms of disability and socioeconomic impact. Multipotent mesenchymal stem cells (MSCs) were cultured in micromass pellets ± FGF-2 or -18 up to 41 days, matrix components were immunolocalized and gene expression monitored by quantitative-reverse transcription PCR. Chondrogenesis occurred earlier in FGF-18 than FGF-2 cultures. Lower COL2A1, COL10A1 and ACAN expression by day 41 indicated a downregulation in chondrocyte hypertrophy. MEF2c, ALPL, were upregulated; calcium, decorin and biglycan, and 4C3 and 7D4 chondroitin sulphate sulfation motifs were evident in FGF-18 but not FGF-2 pellets. FGF-2 and -18 preconditioned MSCs produced cell lineages which promoted chondrogenesis and osteogenesis and may be useful in the production of MSC lineages suitable for repair of cartilaginous tissue defects."	"MEF2C transcription factor is associated with the genetic and epigenetic risk architecture of schizophrenia and improves cognition in mice. Large-scale consortia mapping the genomic risk architectures of schizophrenia provide vast amounts of molecular information, with largely unexplored therapeutic potential. We harnessed publically available information from the Psychiatric Genomics Consortium, and report myocyte enhancer factor 2C (MEF2C) motif enrichment in sequences surrounding the top scoring single-nucleotide polymorphisms within risk loci contributing by individual small effect to disease heritability. Chromatin profiling at base-pair resolution in neuronal nucleosomes extracted from prefrontal cortex of 34 subjects, including 17 cases diagnosed with schizophrenia, revealed MEF2C motif enrichment within cis-regulatory sequences, including neuron-specific promoters and superenhancers, affected by histone H3K4 hypermethylation in disease cases. Vector-induced short- and long-term Mef2c upregulation in mouse prefrontal projection neurons consistently resulted in enhanced cognitive performance in working memory and object recognition paradigms at baseline and after psychotogenic drug challenge, in conjunction with remodeling of local connectivity. Neuronal genome tagging in vivo by Mef2c-Dam adenine methyltransferase fusion protein confirmed the link between cognitive enhancement and MEF2C occupancy at promoters harboring canonical and variant MEF2C motifs. The multilayered integrative approaches presented here provide a roadmap to uncover the therapeutic potential of transcriptional regulators for schizophrenia and related disorders."	"Involvement of Wnt pathway in ethanol-induced inhibition of mouse embryonic stem cell differentiation. Ethanol has been reported to have toxicity on embryonic stem cells (ESCs). The present study aims to address the teratogenic effects of ethanol on the growth and cardiac differentiation of ESCs. Mouse embryonic stem D3 cells were employed. 3-(4,5-dimethyl-2-thiazolyl)-2,5-diphenyl-2-H-tetrazolium bromide (MTT) and lactate dehydrogenase (LDH) assays were used to determine cytotoxicity. Quantitative real time polymerase chain reaction (qRT-PCR) and Western blotting were used to analyze the expressions of cardiac differentiation-related and Wnt signaling factors. The beating profile of cardiomyocytes was recorded to assess cardiac differentiation. Ethanol induced growth inhibition in both undifferentiated and differentiated ESCs after 5 days of exposure. Ethanol inhibited the loss of pluripotent gene expressions including Nanog, Sox2 and Oct4. The expressions of cardiac markers, Nkx2.5, Mef2c, Tbx5, dHand, αMHC, Cx43 and troponin C1, were suppressed by ethanol treatment. Furthermore, ethanol delayed cardiac differentiation of ESCs till 11 days of differentiation. The expressions of Wnt-related regulators, β-catenin and its target cyclin D1, were downregulated by ethanol. Wnt pathway agonist wnt3a could greatly rescue ethanol-induced inhibition of cardiac differentiation and Wnt-pathway-related protein expressions. These finding suggested that ethanol suppresses mouse ESC differentiation largely by inhibiting Wnt signaling pathway."	"Muscle developmental defects in heterogeneous nuclear Ribonucleoprotein A1 knockout mice. Heterogeneous ribonucleoprotein A1 (hnRNP A1) is crucial for regulating alternative splicing. Its integrated function within an organism has not, however, been identified. We generated hnRNP A1 knockout mice to study the role of hnRNP A1 in vivo The knockout mice, hnRNP A1<sup>-/-</sup>, showed embryonic lethality because of muscle developmental defects. The blood pressure and heart rate of the heterozygous mice were higher than those of the wild-type mice, indicating heart function defects. We performed mouse exon arrays to study the muscle development mechanism. The processes regulated by hnRNP A1 included cell adhesion and muscle contraction. The expression levels of muscle development-related genes in hnRNP A1<sup>+/-</sup> mice were significantly different from those in wild-type mice, as detected using qRT-PCR. We further confirmed the alternative splicing patterns of muscle development-related genes including mef2c, lrrfip1, usp28 and abcc9 Alternative mRNA isoforms of these genes were increased in hnRNP A1<sup>+/-</sup> mice compared with wild-type mice. Furthermore, we revealed that the functionally similar hnRNP A2/B1 did not compensate for the expression of hnRNP A1 in organisms. In summary, our study demonstrated that hnRNP A1 plays a critical and irreplaceable role in embryonic muscle development by regulating the expression and alternative splicing of muscle-related genes."	"Core Transcription Factors, MicroRNAs, and Small Molecules Drive Transdifferentiation of Human Fibroblasts Towards The Cardiac Cell Lineage. Transdifferentiation has been described as a novel method for converting human fibroblasts into induced cardiomyocyte-like cells. Such an approach can produce differentiated cells to study physiology or pathophysiology, examine drug interactions or toxicities, and engineer cardiac tissues. Here we describe the transdifferentiation of human dermal fibroblasts towards the cardiac cell lineage via the induced expression of transcription factors GATA4, TBX5, MEF2C, MYOCD, NKX2-5, and delivery of microRNAs miR-1 and miR-133a. Cells undergoing transdifferentiation expressed ACTN2 and TNNT2 and partially organized their cytoskeleton in a cross-striated manner. The conversion process was associated with significant upregulation of a cohort of cardiac-specific genes, activation of pathways associated with muscle contraction and physiology, and downregulation of fibroblastic markers. We used a genetically encoded calcium indicator and readily detected active calcium transients although no spontaneous contractions were observed in transdifferentiated cells. Finally, we determined that inhibition of Janus kinase 1, inhibition of Glycogen synthase kinase 3, or addition of NRG1 significantly enhanced the efficiency of transdifferentiation. Overall, we describe a method for achieving transdifferentiation of human dermal fibroblasts into induced cardiomyocyte-like cells via transcription factor overexpression, microRNA delivery, and molecular pathway manipulation."	"Retinal expression and localization of Mef2c support its important role in photoreceptor gene expression. Photoreceptor-specific gene expression is controlled by a hierarchical network of transcription factors, including the master regulators cone-rod homeobox (Crx) and neural retina leucine zipper (Nrl). Myocyte-enhancer factor 2c (Mef2c) is an ubiquitously expressed transcription factor with important functions in the cardiovascular system. Here, we performed a detailed analysis of Mef2c expression, localization and function in the retina to further elucidate its potential role for photoreceptor gene regulation. We showed that murine retinal Mef2c mRNA expression was high at birth and peaked at late postnatal developmental stages. Using immunohistochemistry and Western blot, Mef2c protein was detected in the outer nuclear layer of adult mouse and human retinas and localized to the nucleus of 661W photoreceptor-like cells. Mef2c knock-down in 661W cells reduced the expression of arrestin 3 (Arr3) and medium-wave-sensitive cone opsin (Opn1mw) but increased transcript levels of mitogen-activated protein kinase 15 (Mapk15) and phosphodiesterase 6h (Pde6h). In conclusion, Mef2c is highly expressed in the retina where it modulates photoreceptor-specific gene expression."	"Keratin mediated attachment of stem cells to augment cardiomyogenic lineage commitment. The objective of this work was to develop a simple surface modification technique using keratin derived from human hair for efficient cardiomyogenic lineage commitment of human mesenchymal stem cells (hMSCs). Keratin was extracted from discarded human hair containing both the acidic and basic components along with the heterodimers. The extracted keratin was adsorbed to conventional tissue culture polystyrene surfaces at different concentration. Keratin solution of 500μg/ml yielded a well coated layer of 12±1nm thickness with minimal agglomeration. The keratin coated surfaces promoted cell attachment and proliferation. Large increases in the mRNA expression of known cardiomyocyte genes such as cardiac actinin, cardiac troponin and β-myosin heavy chain were observed. Immunostaining revealed increased expression of sarcomeric α-actinin and tropomyosin whereas Western blots confirmed higher expression of tropomyosin and myocyte enhancer factor 2C in cells on the keratin coated surface than on the non-coated surface. Keratin promoted DNA demethylation of the Atp2a2 and Nkx2.5 genes thereby elucidating the importance of epigenetic changes as a possible molecular mechanism underlying the increased differentiation. A global gene expression analysis revealed a significant alteration in the expression of genes involved in pathways associated in cardiomyogenic commitment including cytokine and chemokine signaling, cell-cell and cell-matrix interactions, Wnt signaling, MAPK signaling, TGF-β signaling and FGF signaling pathways among others. Thus, adsorption of keratin offers a facile and affordable yet potent route for inducing cardiomyogenic lineage commitment of stem cells with important implications in developing xeno-free strategies in cardiovascular regenerative medicine."	"Experience-Dependent and Differential Regulation of Local and Long-Range Excitatory Neocortical Circuits by Postsynaptic Mef2c. Development of proper cortical circuits requires an interaction of sensory experience and genetic programs. Little is known of how experience and specific transcription factors interact to determine the development of specific neocortical circuits. Here, we demonstrate that the activity-dependent transcription factor, Myocyte enhancer factor-2C (Mef2c), differentially regulates development of local versus long-range excitatory synaptic inputs onto layer 2/3 neurons in the somatosensory neocortex in vivo. Postnatal, postsynaptic deletion of Mef2c in a sparse population of L2/3 neurons suppressed development of excitatory synaptic connections from all local input pathways tested. In the same cell population, Mef2c deletion promoted the strength of excitatory inputs originating from contralateral neocortex. Both the synapse promoting and synapse suppressing effects of Mef2c deletion required normal whisking experience. These results reveal a role of Mef2c in experience-dependent development of specific sensory neocortical circuits."	"Epilepsy-causing sequence variations in SIK1 disrupt synaptic activity response gene expression and affect neuronal morphology. SIK1 syndrome is a newly described developmental epilepsy disorder caused by heterozygous mutations in the salt-inducible kinase SIK1. To better understand the pathophysiology of SIK1 syndrome, we studied the effects of SIK1 pathogenic sequence variations in human neurons. Primary human fetal cortical neurons were transfected with a lentiviral vector to overexpress wild-type and mutant SIK1 protein. We evaluated the transcriptional activity of known downstream gene targets in neurons expressing mutant SIK1 compared with wild type. We then assayed neuronal morphology by measuring neurite length, number and branching. Truncating SIK1 sequence variations were associated with abnormal MEF2C transcriptional activity and decreased MEF2C protein levels. Epilepsy-causing SIK1 sequence variations were associated with significantly decreased expression of ARC (activity-regulated cytoskeletal-associated) and other synaptic activity response element genes. Assay of mRNA levels for other MEF2C target genes NR4A1 (Nur77) and NRG1, found significantly, decreased the expression of these genes as well. The missense p.(Pro287Thr) SIK1 sequence variation was associated with abnormal neuronal morphology, with significant decreases in mean neurite length, mean number of neurites and a significant increase in proximal branches compared with wild type. Epilepsy-causing SIK1 sequence variations resulted in abnormalities in the MEF2C-ARC pathway of neuronal development and synapse activity response. This work provides the first insights into the mechanisms of pathogenesis in SIK1 syndrome, and extends the ARX-MEF2C pathway in the pathogenesis of developmental epilepsy."	"MiR-590 Promotes Transdifferentiation of Porcine and Human Fibroblasts Toward a Cardiomyocyte-Like Fate by Directly Repressing Specificity Protein 1. Reprogramming of cardiac fibroblasts into induced cardiomyocyte-like cells represents a promising potential new therapy for treating heart disease, inducing significant improvements in postinfarct ventricular function in rodent models. Because reprogramming factors effective in transdifferentiating rodent cells are not sufficient to reprogram human cells, we sought to identify reprogramming factors potentially applicable to human studies. Lentivirus vectors expressing Gata4, Mef2c, and Tbx5 (GMT); Hand2 (H), Myocardin (My), or microRNA (miR)-590 were administered to rat, porcine, and human cardiac fibroblasts in vitro. induced cardiomyocyte-like cell production was then evaluated by assessing expression of the cardiomyocyte marker, cardiac troponin T (cTnT), whereas signaling pathway studies were performed to identify reprogramming factor targets. GMT administration induced cTnT expression in ≈6% of rat fibroblasts, but failed to induce cTnT expression in porcine or human cardiac fibroblasts. Addition of H/My and/or miR-590 to GMT administration resulted in cTNT expression in ≈5% of porcine and human fibroblasts and also upregulated the expression of the cardiac genes, MYH6 and TNNT2. When cocultured with murine cardiomyocytes, cTnT-expressing porcine cardiac fibroblasts exhibited spontaneous contractions. Administration of GMT plus either H/My or miR-590 alone also downregulated fibroblast genes COL1A1 and COL3A1. miR-590 was shown to directly suppress the zinc finger protein, specificity protein 1 (Sp1), which was able to substitute for miR-590 in inducing cellular reprogramming. These data support porcine studies as a surrogate for testing human cardiac reprogramming, and suggest that miR-590-mediated repression of Sp1 represents an alternative pathway for enhancing human cardiac cellular reprogramming."	"Chromatin-remodelling factor Brg1 regulates myocardial proliferation and regeneration in zebrafish. The zebrafish possesses a remarkable capacity of adult heart regeneration, but the underlying mechanisms are not well understood. Here we report that chromatin remodelling factor Brg1 is essential for adult heart regeneration. Brg1 mRNA and protein are induced during heart regeneration. Transgenic over-expression of dominant-negative Xenopus Brg1 inhibits the formation of BrdU<sup>+</sup>/Mef2C<sup>+</sup> and Tg(gata4:EGFP) cardiomyocytes, leading to severe cardiac fibrosis and compromised myocardial regeneration. RNA-seq and RNAscope analyses reveal that inhibition of Brg1 increases the expression of cyclin-dependent kinase inhibitors such as cdkn1a and cdkn1c in the myocardium after ventricular resection; and accordingly, myocardial-specific expression of dn-xBrg1 blunts myocardial proliferation and regeneration. Mechanistically, injury-induced Brg1, via its interaction with Dnmt3ab, suppresses the expression of cdkn1c by increasing the methylation level of CpG sites at the cdkn1c promoter. Taken together, our results suggest that Brg1 promotes heart regeneration by repressing cyclin-dependent kinase inhibitors partly through Dnmt3ab-dependent DNA methylation."	"Histone H3 Methyltransferase Suv39h1 Prevents Myogenic Terminal Differentiation by Repressing MEF2 Activity in Muscle Cells. The myogenic regulatory factors (MRFs) and myocyte enhancer factor 2 (MEF2) transcription factors have been extensively studied as key transcription factors that regulate myogenic gene expression. However, few reports on the molecular mechanism that modulates chromatin remodeling during skeletal muscle differentiation are available. We reported here that the expression of the H3-K9 methyltransferase Suv39h1 was decreased during myoblast differentiation. Ectopic expression of Suv39h1 could inhibit myoblast differentiation, increasing H3-K9 methylation levels, whereas knockdown of Suv39h1 stimulated myoblast differentiation. Furthermore, Suv39h1 interacted with MEF2C directly and inhibited MEF2 transcription activity in a dose-dependent manner. Together, our studies revealed a molecular mechanism wherein Suv39h1 modulated myogenic gene expression and activation during skeletal muscle differentiation."	"Direct Cardiac Reprogramming as a Novel Therapeutic Strategy for Treatment of Myocardial Infarction. Direct reprogramming of fibroblasts into induced cardiomyocytes (iCMs) holds great promise as a novel therapy for the treatment of heart failure, a common and morbid disease that is usually caused by irreversible loss of functional cardiomyocytes (CMs). Recently, we and others showed that in a murine model of acute myocardial infarction, delivery of three transcription factors, Gata4, Mef2c, and Tbx5 converted endogenous cardiac fibroblasts into functional iCMs. These iCMs integrated electrically and mechanically with surrounding myocardium, resulting in a reduction in scar size and an improvement in heart function. Our findings suggest that iCM reprogramming may be a means of regenerating functional CMs in vivo for patients with heart disease. However, because relatively little is known about the factors that regulate iCM reprogramming, the applicability of iCM reprogramming is currently limited to the experimental settings in which it has been attempted. Specific hurdles include the relatively low conversion rate of iCMs and the need for reprogramming to occur in the context of acute injury. Therefore, before this treatment can become a viable therapy for human heart disease, the optimal condition for efficient iCM generation must be determined. Here, we provide a detailed protocol for both in vitro and in vivo iCM generation that has been optimized so far in our lab. We hope that this protocol will lay a foundation for future further improvement of iCM generation and provide a platform for mechanistic studies."	"The A Allele of the Single-Nucleotide Polymorphism rs630923 Creates a Binding Site for MEF2C Resulting in Reduced CXCR5 Promoter Activity in B-Cell Lymphoblastic Cell Lines. Chemokine receptor CXCR5 is highly expressed in B-cells and under normal conditions is involved in their migration to specific areas of secondary lymphoid organs. B-cells are known to play an important role in various autoimmune diseases including multiple sclerosis (MS) where areas of demyelinating lesions attract B-cells by overexpressing CXCL13, the CXCR5 ligand. In this study, we aimed to determine the functional significance of single-nucleotide polymorphism rs630923 (A/C), which is located in cxcr5 gene promoter, and its common allele is associated with increased risk of MS. Using bioinformatics and pull-down assay in B-lymphoblastic cell lines, we showed that protective minor rs630923 &quot;A&quot; allele created functional binding site for MEF2C transcription factor. Elevated MEF2C expression in B-cells correlated with reduced activity of cxcr5 promoter containing rs630923 &quot;A&quot; allele. This effect that was fully neutralized by MEF2C-directed siRNA may mechanistically explain the protective role of the rs630923 minor allele in MS. Using site-directed mutagenesis of the cxcr5 gene promoter, we were unable to find any experimental evidence for the previously proposed role of NFκB transcription factors in rs630923-mediated CXCR5 promoter regulation. Thus, our results identify MEF2C as a possible mediator of protective function of the rs630923 &quot;A&quot; allele in MS."	"Exploring Regulatory Mechanisms of Atrial Myocyte Hypertrophy of Mitral Regurgitation through Gene Expression Profiling Analysis: Role of NFAT in Cardiac Hypertrophy. Left atrial enlargement in mitral regurgitation (MR) predicts a poor prognosis. The regulatory mechanisms of atrial myocyte hypertrophy of MR patients remain unknown. This study comprised 14 patients with MR, 7 patients with aortic valve disease (AVD), and 6 purchased samples from normal subjects (NC). We used microarrays, enrichment analysis and quantitative RT-PCR to study the gene expression profiles in the left atria. Microarray results showed that 112 genes were differentially up-regulated and 132 genes were differentially down-regulated in the left atria between MR patients and NC. Enrichment analysis of differentially expressed genes demonstrated that &quot;NFAT in cardiac hypertrophy&quot; pathway was not only one of the significant associated canonical pathways, but also the only one predicted with a non-zero score of 1.34 (i.e. activated) through Ingenuity Pathway Analysis molecule activity predictor. Ingenuity Pathway Analysis Global Molecular Network analysis exhibited that the highest score network also showed high association with cardiac related pathways and functions. Therefore, 5 NFAT associated genes (PPP3R1, PPP3CB, CAMK1, MEF2C, PLCE1) were studies for validation. The mRNA expressions of PPP3CB and MEF2C were significantly up-regulated, and CAMK1 and PPP3R1 were significantly down-regulated in MR patients compared to NC. Moreover, MR patients had significantly increased mRNA levels of PPP3CB, MEF2C and PLCE1 compared to AVD patients. The atrial myocyte size of MR patients significantly exceeded that of the AVD patients and NC. Differentially expressed genes in the &quot;NFAT in cardiac hypertrophy&quot; pathway may play a critical role in the atrial myocyte hypertrophy of MR patients."	"Erratum to: High expression of myocyte enhancer factor 2C (MEF2C) is associated with adverse-risk features and poor outcome in pediatric acute myeloid leukemia: a report from the Children's Oncology Group. NA"	"Primate Neurons Flex Their Musclin. Sensory experience evokes long-lasting changes in neural circuits through activity-dependent gene expression. Ataman et al. (2016) report in Nature that primates evolved novel transcriptional responses to neuronal activity, including induction of musclin/osteocrin (OSTN), which may regulate specialized aspects of primate neural circuits."	"Nfix Induces a Switch in Sox6 Transcriptional Activity to Regulate MyHC-I Expression in Fetal Muscle. Sox6 belongs to the Sox gene family and plays a pivotal role in fiber type differentiation, suppressing transcription of slow-fiber-specific genes during fetal development. Here, we show that Sox6 plays opposite roles in MyHC-I regulation, acting as a positive and negative regulator of MyHC-I expression during embryonic and fetal myogenesis, respectively. During embryonic myogenesis, Sox6 positively regulates MyHC-I via transcriptional activation of Mef2C, whereas during fetal myogenesis, Sox6 requires and cooperates with the transcription factor Nfix in repressing MyHC-I expression. Mechanistically, Nfix is necessary for Sox6 binding to the MyHC-I promoter and thus for Sox6 repressive function, revealing a key role for Nfix in driving Sox6 activity. This feature is evolutionarily conserved, since the orthologs Nfixa and Sox6 contribute to repression of the slow-twitch phenotype in zebrafish embryos. These data demonstrate functional cooperation between Sox6 and Nfix in regulating MyHC-I expression during prenatal muscle development."	"The genomic landscape of balanced cytogenetic abnormalities associated with human congenital anomalies. Despite the clinical significance of balanced chromosomal abnormalities (BCAs), their characterization has largely been restricted to cytogenetic resolution. We explored the landscape of BCAs at nucleotide resolution in 273 subjects with a spectrum of congenital anomalies. Whole-genome sequencing revised 93% of karyotypes and demonstrated complexity that was cryptic to karyotyping in 21% of BCAs, highlighting the limitations of conventional cytogenetic approaches. At least 33.9% of BCAs resulted in gene disruption that likely contributed to the developmental phenotype, 5.2% were associated with pathogenic genomic imbalances, and 7.3% disrupted topologically associated domains (TADs) encompassing known syndromic loci. Remarkably, BCA breakpoints in eight subjects altered a single TAD encompassing MEF2C, a known driver of 5q14.3 microdeletion syndrome, resulting in decreased MEF2C expression. We propose that sequence-level resolution dramatically improves prediction of clinical outcomes for balanced rearrangements and provides insight into new pathogenic mechanisms, such as altered regulation due to changes in chromosome topology."	"Chemical Enhancement of In Vitro and In Vivo Direct Cardiac Reprogramming. Reprogramming of cardiac fibroblasts into induced cardiomyocyte-like cells in situ represents a promising strategy for cardiac regeneration. A combination of 3 cardiac transcription factors, Gata4, Mef2c, and Tbx5 (GMT), can convert fibroblasts into induced cardiomyocyte-like cells, albeit with low efficiency in vitro. We screened 5500 compounds in primary cardiac fibroblasts to identify the pathways that can be modulated to enhance cardiomyocyte reprogramming. We found that a combination of the transforming growth factor-β inhibitor SB431542 and the WNT inhibitor XAV939 increased reprogramming efficiency 8-fold when added to GMT-overexpressing cardiac fibroblasts. The small molecules also enhanced the speed and quality of cell conversion; we observed beating cells as early as 1 week after reprogramming compared with 6 to 8 weeks with GMT alone. In vivo, mice exposed to GMT, SB431542, and XAV939 for 2 weeks after myocardial infarction showed significantly improved reprogramming and cardiac function compared with those exposed to only GMT. Human cardiac reprogramming was similarly enhanced on transforming growth factor-β and WNT inhibition and was achieved most efficiently with GMT plus myocardin. Transforming growth factor-β and WNT inhibitors jointly enhance GMT-induced direct cardiac reprogramming from cardiac fibroblasts in vitro and in vivo and provide a more robust platform for cardiac regeneration."	"High glucose repatterns human podocyte energy metabolism during differentiation and diabetic nephropathy. Podocytes play a key role in diabetic nephropathy pathogenesis, but alteration of their metabolism remains unknown in human kidney. By using a conditionally differentiating human podocyte cell line, we addressed the functional and molecular changes in podocyte energetics during in vitro development or under high glucose conditions. In 5 mM glucose medium, we observed a stepwise activation of oxidative metabolism during cell differentiation that was characterized by peroxisome proliferator-activated receptor-γ coactivator 1α (PGC-1α)-dependent stimulation of mitochondrial biogenesis and function, with concomitant reduction of the glycolytic enzyme content. Conversely, when podocytes were cultured in high glucose (20 mM), stepwise oxidative phosphorylation biogenesis was aborted, and a glycolytic switch occurred, with consecutive lactic acidosis. Expression of the master regulators of oxidative metabolism transcription factor A mitochondrial, PGC-1α, AMPK, and serine-threonine liver kinase B1 was altered by high glucose, as well as their downstream signaling networks. Focused transcriptomics revealed that myocyte-specific enhancer factor 2C (MEF2C) and myogenic factor 5 (MYF5) expression was inhibited by high glucose levels, and endoribonuclease-prepared small interfering RNA-mediated combined inhibition of those transcription factors phenocopied the glycolytic shift that was observed in high glucose conditions. Accordingly, a reduced expression of MEF2C, MYF5, and PGC-1α was found in kidney tissue sections that were obtained from patients with diabetic nephropathy. These findings obtained in human samples demonstrate that MEF2C-MYF5-dependent bioenergetic dedifferentiation occurs in podocytes that are confronted with a high-glucose milieu.-Imasawa, T., Obre, E., Bellance, N., Lavie, J., Imasawa, T., Rigothier, C., Delmas, Y., Combe, C., Lacombe, D., Benard, G., Claverol, S., Bonneu, M., Rossignol, R. High glucose repatterns human podocyte energy metabolism during differentiation and diabetic nephropathy."	"In vivo conditional deletion of HDAC7 reveals its requirement to establish proper B lymphocyte identity and development. Class IIa histone deacetylase (HDAC) subfamily members are tissue-specific gene repressors with crucial roles in development and differentiation processes. A prominent example is HDAC7, a class IIa HDAC that shows a lymphoid-specific expression pattern within the hematopoietic system. In this study, we explored its potential role in B cell development by generating a conditional knockout mouse model. Our study demonstrates for the first time that HDAC7 deletion dramatically blocks early B cell development and gives rise to a severe lymphopenia in peripheral organs, while also leading to pro-B cell lineage promiscuity. We find that HDAC7 represses myeloid and T lymphocyte genes in B cell progenitors through interaction with myocyte enhancer factor 2C (MEFC2). In B cell progenitors, HDAC7 is recruited to promoters and enhancers of target genes, and its absence leads to increased enrichment of histone active marks. Our results prove that HDAC7 is a bona fide transcriptional repressor essential for B cell development."	"MEF2C regulates cortical inhibitory and excitatory synapses and behaviors relevant to neurodevelopmental disorders. Numerous genetic variants associated with MEF2C are linked to autism, intellectual disability (ID) and schizophrenia (SCZ) - a heterogeneous collection of neurodevelopmental disorders with unclear pathophysiology. MEF2C is highly expressed in developing cortical excitatory neurons, but its role in their development remains unclear. We show here that conditional embryonic deletion of Mef2c in cortical and hippocampal excitatory neurons (Emx1-lineage) produces a dramatic reduction in cortical network activity in vivo, due in part to a dramatic increase in inhibitory and a decrease in excitatory synaptic transmission. In addition, we find that MEF2C regulates E/I synapse density predominantly as a cell-autonomous, transcriptional repressor. Analysis of differential gene expression in Mef2c mutant cortex identified a significant overlap with numerous synapse- and autism-linked genes, and the Mef2c mutant mice displayed numerous behaviors reminiscent of autism, ID and SCZ, suggesting that perturbing MEF2C function in neocortex can produce autistic- and ID-like behaviors in mice."	"Dynamical Expression of MicroRNA-127-3p in Proliferating and Differentiating C2C12 Cells. MicroRNAs (miRNAs) are highly conserved, short non-coding RNAs that regulate gene expression at the posttranscriptional level. Although many miRNAs are identified in muscles and muscle cells, their individual roles are still not fully understood. In the present study, we investigated a muscle highly-expressed miRNA, miR-127-3p, in C2C12 myoblasts and tissues of goats with different muscle phenotypes (Boer vs Wushan black goats). Our results demonstrated that i) miR-127-3p was extensively expressed in tissues of goats; ii) miR-127-3p was higher expressed in muscle, spleen, heart, and skin in the muscular goats (Boer goats) than the control (Wushan black goats). Then we further characterized the dynamical expression of miR-127-3p, MyoD, MyoG, Myf5, Mef2c, and Myosin in the proliferating and differentiating C2C12 myoblasts at day of 0, 1, 3, 5, and 7 in culture mediums. Especially, we found that miR-127-3p was significantly higher expressed in the proliferating than differentiating cells. Our findings suggest that miR-127-3p probably plays roles in the proliferation and differentiation of myoblasts, which further underlies regulation of muscle phenotype in goats."	"Myocyte-specific enhancer factor 2C: a novel target gene of miR-214-3p in suppressing angiotensin II-induced cardiomyocyte hypertrophy. The role of microRNA-214-3p (miR-214-3p) in cardiac hypertrophy was not well illustrated. The present study aimed to investigate the expression and potential target of miR-214-3p in angiotensin II (Ang-II)-induced mouse cardiac hypertrophy. In mice with either Ang-II infusion or transverse aortic constriction (TAC) model, miR-214-3p expression was markedly decreased in the hypertrophic myocardium. Down-regulation of miR-214-3p was observed in the myocardium of patients with cardiac hypertrophy. Expression of miR-214-3p was upregulated in Ang-II-induced hypertrophic neonatal mouse ventricular cardiomyocytes. Cardiac hypertrophy was attenuated in Ang-II-infused mice by tail vein injection of miR-214-3p. Moreover, miR-214-3p inhibited the expression of atrial natriuretic peptide (ANP) and β-myosin heavy chain (MHC) in Ang-II-treated mouse cardiomyocytes in vitro. Myocyte-specific enhancer factor 2C (MEF2C), which was increased in Ang-II-induced hypertrophic mouse myocardium and cardiomyocytes, was identified as a target gene of miR-214-3p. Functionally, miR-214-3p mimic, consistent with MEF2C siRNA, inhibited cell size increase and protein expression of ANP and β-MHC in Ang-II-treated mouse cardiomyocytes. The NF-κB signal pathway was verified to mediate Ang-II-induced miR-214-3p expression in cardiomyocytes. Taken together, our results revealed that MEF2C is a novel target of miR-214-3p, and attenuation of miR-214-3p expression may contribute to MEF2Cexpressionin cardiac hypertrophy."	"Transcriptional control of chondrocyte specification and differentiation. A milestone in the evolutionary emergence of vertebrates was the invention of cartilage, a tissue that has key roles in modeling, protecting and complementing the bony skeleton. Cartilage is elaborated and maintained by chondrocytes. These cells derive from multipotent skeletal progenitors and they perform highly specialized functions as they proceed through sequential lineage commitment and differentiation steps. They form cartilage primordia, the primary skeleton of the embryo. They then transform these primordia either into cartilage growth plates, temporary drivers of skeletal elongation and endochondral ossification, or into permanent tissues, namely articular cartilage. Chondrocyte fate decisions and differentiated activities are controlled by numerous extrinsic and intrinsic cues, and they are implemented at the gene expression level by transcription factors. The latter are the focus of this review. Meritorious efforts from many research groups have led over the last two decades to the identification of dozens of key chondrogenic transcription factors. These regulators belong to all types of transcription factor families. Some have master roles at one or several differentiation steps. They include SOX9 and RUNX2/3. Others decisively assist or antagonize the activities of these masters. They include TWIST1, SOX5/6, and MEF2C/D. Many more have tissue-patterning roles and regulate cell survival, proliferation and the pace of cell differentiation. They include, but are not limited to, homeodomain-containing proteins and growth factor signaling mediators. We here review current knowledge of all these factors, one superclass, class, and family at a time. We then compile all knowledge into transcriptional networks. We also identify remaining gaps in knowledge and directions for future research to fill these gaps and thereby provide novel insights into cartilage disease mechanisms and treatment options."	"Foxp2 controls synaptic wiring of corticostriatal circuits and vocal communication by opposing Mef2c. Cortico-basal ganglia circuits are critical for speech and language and are implicated in autism spectrum disorder, in which language function can be severely affected. We demonstrate that in the mouse striatum, the gene Foxp2 negatively interacts with the synapse suppressor gene Mef2c. We present causal evidence that Mef2c inhibition by Foxp2 in neonatal mouse striatum controls synaptogenesis of corticostriatal inputs and vocalization in neonates. Mef2c suppresses corticostriatal synapse formation and striatal spinogenesis, but can itself be repressed by Foxp2 through direct DNA binding. Foxp2 deletion de-represses Mef2c, and both intrastriatal and global decrease of Mef2c rescue vocalization and striatal spinogenesis defects of Foxp2-deletion mutants. These findings suggest that Foxp2-Mef2C signaling is critical to corticostriatal circuit formation. If found in humans, such signaling defects could contribute to a range of neurologic and neuropsychiatric disorders."	"MEF2C rs190982 polymorphism with late-onset Alzheimer's disease in Han Chinese: A replication study and meta-analyses. The myocyte enhancer factor (MEF2) family of transcription factors plays a vital role in memory and learning due to its functions in regulating synapse number and reducing dendritic spines. Myocyte enhancer factor 2 C (MEF2C) is regarded as modulator of amyloid-protein precursor (APP) proteolytic processing, in which amyloid-β (Aβ) is produced. A common single nucleotide polymorphism (SNP, rs190982) in MEF2C gene was identified to be related to late-onset Alzheimer's disease (LOAD) in Caucasians in a large meta-analysis of genome-wide association studies (GWAS). Here, we recruited unrelated 984 LOAD patients and 1348 healthy controls matched for gender and age to ascertain whether the rs190982 polymorphism is related to LOAD in Han Chinese. No difference in the genotype and allele distributions of the MEF2C rs190982 polymorphism was found between LOAD cases and healthy controls (genotype: P = 0.861; allele: P = 0.862), even after stratification for APOE ε4 allele as well as statistical adjustment for age, gender and APOE ε4 status. Furthermore, the meta-analysis in 4089 Chinese individuals did not detect the association of rs190982 within MEF2C with the risk for LOAD (OR = 1.03, 95%CI = 0.90-1.18). Overall, the current evidence did not support the relation between rs190982 polymorphism within MEF2C and the LOAD risk in Northern Han Chinese."	"In situ reprogramming to transdifferentiate fibroblasts into cardiomyocytes using adenoviral vectors: Implications for clinical myocardial regeneration. The reprogramming of cardiac fibroblasts into induced cardiomyocyte-like cells improves ventricular function in myocardial infarction models. Only integrating persistent expression vectors have thus far been used to induce reprogramming, potentially limiting its clinical applicability. We therefore tested the reprogramming potential of nonintegrating, acute expression adenoviral (Ad) vectors. Ad or lentivirus vectors encoding Gata4 (G), Mef2c (M), and Tbx5 (T) were validated in vitro. Sprague-Dawley rats then underwent coronary ligation and Ad-mediated administration of vascular endothelial growth factor to generate infarct prevascularization. Three weeks later, animals received Ad or lentivirus encoding G, M, or T (AdGMT or LentiGMT) or an equivalent dose of a null vector (n = 11, 10, and 10, respectively). Outcomes were analyzed by echocardiography, magnetic resonance imaging, and histology. Ad and lentivirus vectors provided equivalent G, M, and T expression in vitro. AdGMT and LentiGMT both likewise induced expression of the cardiomyocyte marker cardiac troponin T in approximately 6% of cardiac fibroblasts versus &lt;1% cardiac troponin T expression in AdNull (adenoviral vector that does not encode a transgene)-treated cells. Infarcted myocardium that had been treated with AdGMT likewise demonstrated greater density of cells expressing the cardiomyocyte marker beta myosin heavy chain 7 compared with AdNull-treated animals. Echocardiography demonstrated that AdGMT and LentiGMT both increased ejection fraction compared with AdNull (AdGMT: 21% ± 3%, LentiGMT: 14% ± 5%, AdNull: -0.4% ± 2%; P &lt; .05). Ad vectors are at least as effective as lentiviral vectors in inducing cardiac fibroblast transdifferentiation into induced cardiomyocyte-like cells and improving cardiac function in postinfarct rat hearts. Short-term expression Ad vectors may represent an important means to induce cardiac cellular reprogramming in humans."	"Maternal dietary linoleic acid supplementation promotes muscle fibre type transformation in suckling piglets. As meat quality is basically dependent on muscle fibre characteristics, it is important to know how muscle fibres are regulated and transformed. This study aimed to investigate the effect of maternal dietary supplementation on muscle fibre types using 3% saturated fatty acid (palmitic acid, PA) or 3% unsaturated fatty acid (linoleic acid, LA) from 80 days of gestation to the weaning of offspring (25 days post-natal). The results indicated that higher mRNA levels of MyHCI type genes were found in the soleus muscles of piglets that suckled from LA-supplemented sows than from PA-supplemented sows. In addition, LA treatment increased the gene expression of the type I muscle fibre marker troponin I (p &lt; 0.01), suggesting that LA promoted muscle fibre type transformation to type I fibres. Moreover, PGC-1α (p &lt; 0.01) and MEF2c (p &lt; 0.05) mRNA levels were higher in the piglets from the LA treatment group than in those from the PA treatment group. Furthermore, LA supplementation also significantly increased AMP-activated protein kinase (AMPK) mRNA levels (p &lt; 0.05), which is an upstream regulator of PGC-1α. Collectively, these findings demonstrated that maternal dietary LA supplementation promoted muscle fibre transformation to type I fibre and that this process may be mediated through an AMPK-dependent pathway."	"Gain-of-function mutations in GATA6 lead to atrial fibrillation. The genetic basis of atrial fibrillation (AF) and congenital heart disease remains incompletely understood. We sought to determine the causative mutation in a family with AF, atrial septal defects, and ventricular septal defects. We evaluated a pedigree with 16 family members, 1 with an atrial septal defect, 1 with a ventricular septal defect, and 3 with AF; we performed whole exome sequencing in 3 affected family members. Given that early-onset AF was prominent in the family, we then screened individuals with early-onset AF, defined as an age of onset &lt;66 years, for mutations in GATA6. Variants were functionally characterized using reporter assays in a mammalian cell line. Exome sequencing in 3 affected individuals identified a conserved mutation, R585L, in the transcription factor gene GATA6. In the Massachusetts General Hospital Atrial Fibrillation (MGH AF) Study, the mean age of AF onset was 47.1 ± 10.9 years; 79% of the participants were men; and there was no evidence of structural heart disease. We identified 3 GATA6 variants (P91S, A177T, and A543G). Using wild-type and mutant GATA6 constructs driving atrial natriuretic peptide promoter reporter, we found that 3 of the 4 variants had a marked upregulation of luciferase activity (R585L: 4.1-fold, P &lt; .0001; P91S: 2.5-fold, P = .0002; A177T; 1.7-fold, P = .03). In addition, when co-overexpressed with GATA4 and MEF2C, GATA6 variants exhibited upregulation of the alpha myosin heavy chain and atrial natriuretic peptide reporter activity. Overall, we found gain-of-function mutations in GATA6 in both a family with early-onset AF and atrioventricular septal defects as well as in a family with sporadic, early-onset AF."	"Intragenic CNVs for epigenetic regulatory genes in intellectual disability: Survey identifies pathogenic and benign single exon changes. The disruption of genes involved in epigenetic regulation is well known to cause Intellectual Disability (ID). We reported a custom microarray study that interrogated among others, the epigenetic regulatory gene-class, at single exon resolution. Here we elaborate on identified intragenic CNVs involving epigenetic regulatory genes; specifically discussing those in three genes previously unreported in ID etiology-ARID2, KDM3A, and ARID4B. The changes in ARID2 and KDM3A are likely pathogenic while the ARID4B variant is uncertain. Previously, we found a CNV involving only exon 6 of the JARID2 gene occurred apparently de novo in seven patients. JARID2 is known to cause ID and other neurodevelopmental conditions. However, exon 6 of this gene encodes one of a series of repeated motifs. We therefore, investigated the impact of this variant in two cohorts and present a genotype-phenotype assessment. We find the JARID2 exon 6 CNV is benign, with a high population frequency (&gt;14%), but nevertheless could have a contributory effect. We also present results from an interrogation of the exomes of 2,044 patients with neurocognitive phenotypes for the incidence of potentially damaging mutation in the epigenetic regulatory gene-class. This paper provides a survey of the fine-scale CNV landscape for epigenetic regulatory genes in the context of ID, describing likely pathogenic as well as benign single exon imbalances. © 2016 Wiley Periodicals, Inc."	"Cardiomyogenesis of periodontal ligament-derived stem cells by dynamic tensile strain. Cellular therapies for the treatment of myocardial infarction have proven to be an invaluable tool in recent years and provide encouraging evidence for the possibility to restore normal heart function. However, questions still remain as to the optimal cell source, pre-conditioning methods and delivery techniques for such an application. This study explores the use of a population of stem cells arising from the neural crest and isolated from adult human periodontal ligament along with short-term mechanical strain as an inducer of cardiomyogenesis and possibly pre-conditioning stimulus for cellular cardiomyoplasty. Cells were subjected to a short-term dynamic mechanical tension in our custom-built bioreactor and analyzed for cardiomyogenic commitment. Mechanical strain elicited a cardiomyogenic response from the cells following just 2 h of stimulation. Mechanical strain activated and translocated cardiac-specific transcription factors GATA4, MEF2C and Nkx2.5, and induced expression of the sarcomeric actin and cardiac troponin T proteins. Mechanical strain induced production of significantly higher levels of nitric oxide when compared to static controls. Elimination of elevated ROS levels by free radical scavengers completely abolished the cardiomyogenic response of the cells. MicroRNA profile changes in stretched cells were detected for 39 miRNAs with 16 of the differentially expressed miRNAs related to heart development. The use of stem cells in combination with mechanical strain prior to their delivery in vivo may pose a valuable alternative for the treatment of myocardial infarction and merits further exploration for its capacity to augment the already observed beneficial effects of cellular therapies."	"AuNP-Collagen Matrix with Localized Stiffness for Cardiac-Tissue Engineering: Enhancing the Assembly of Intercalated Discs by β1-Integrin-Mediated Signaling. A schematic for the mechanism of accelerating the assembly of intercalated discs (IDs) in cardiac myocytes regulated by gold nanoparticles (AuNPs) is presented. AuNPs with local nanoscale stiffness in the substrate activate β1-integrin signaling, which mediates the activation of integrin-linked kinase (ILK) and its downstream signal kinase by stimulating expression of the transcription factors GATA4 and MEF-2c."	"Fine-mapping the effects of Alzheimer's disease risk loci on brain morphology. The neural substrate of genetic risk variants for Alzheimer's disease (AD) remains unknown. We studied their effect on healthy brain morphology to provide insight into disease etiology in the preclinical phase. We included 4071 nondemented, elderly participants of the population-based Rotterdam Study who underwent brain magnetic resonance imaging and genotyping. We performed voxel-based morphometry (VBM) on all gray-matter voxels for 19 previously identified, common AD risk variants. Whole-brain expression data from the Allen Human Brain Atlas was used to examine spatial overlap between VBM association results and expression of genes in AD risk loci regions. Brain regions most significantly associated with AD risk variants were the left postcentral gyrus with ABCA7 (rs4147929, p = 4.45 × 10<sup>-6</sup>), right superior frontal gyrus by ZCWPW1 (rs1476679, p = 5.12 × 10<sup>-6</sup>), and right postcentral gyrus by APOE (p = 6.91 × 10<sup>-6</sup>). Although no individual voxel passed multiple-testing correction, we found significant spatial overlap between the effects of AD risk loci on VBM and the expression of genes (MEF2C, CLU, and SLC24A4) in the Allen Brain Atlas. Results are available online on www.imagene.nl/ADSNPs/. In this single largest imaging genetics data set worldwide, we found that AD risk loci affect cortical gray matter in several brain regions known to be involved in AD, as well as regions that have not been implicated before."	"Enzymatically crosslinked gelatin hydrogel promotes the proliferation of adipose tissue-derived stromal cells. Gelatin hydrogel crosslinked by microbial transglutaminase (mTG) exhibits excellent performance in cell adhesion, proliferation, and differentiation. We examined the gelation time and gel strength of gelatin/mTG hydrogels in various proportions to investigate their physical properties and tested their degradation performances in vitro. Cell morphology and viability of adipose tissue-derived stromal cells (ADSCs) cultured on the 2D gel surface or in 3D hydrogel encapsulation were evaluated by immunofluorescence staining. Cell proliferation was tested via Alamar Blue assay. To investigate the hydrogel effect on cell differentiation, the cardiac-specific gene expression levelsof Nkx2.5, Myh6, Gja1, and Mef2c in encapsulated ADSCs with or without cardiac induction medium were detected by real-time RT-PCR. Cell release from the encapsulated status and cell migration in a 3D hydrogel model were assessed in vitro. Results show that the gelatin/mTG hydrogels are not cytotoxic and that their mechanical properties are adjustable. Hydrogel degradation is related to gel concentration and the resident cells. Cell growth morphology and proliferative capability in both 2D and 3D cultures were mainly affected by gel concentration. PCR result shows that hydrogel modulus together with induction medium affects the cardiac differentiation of ADSCs. The cell migration experiment and subcutaneous implantation show that the hydrogels are suitable for cell delivery."	"G9a inhibits MEF2C activity to control sarcomere assembly. In this study, we demonstrate that the lysine methyltransferase G9a inhibits sarcomere organization through regulation of the MEF2C-HDAC5 regulatory axis. Sarcomeres are essential for muscle contractile function. Presently, skeletal muscle disease and dysfunction at the sarcomere level has been associated with mutations of sarcomere proteins. This study provides evidence that G9a represses expression of several sarcomere genes and its over-expression disrupts sarcomere integrity of skeletal muscle cells. G9a inhibits MEF2C transcriptional activity that is essential for expression of sarcomere genes. Through protein interaction assays, we demonstrate that G9a interacts with MEF2C and its co-repressor HDAC5. In the presence of G9a, calcium signaling-dependent phosphorylation and export of HDAC5 to the cytoplasm is blocked which likely results in enhanced MEF2C-HDAC5 association. Activation of calcium signaling or expression of constitutively active CaMK rescues G9a-mediated repression of HDAC5 shuttling as well as sarcomere gene expression. Our results demonstrate a novel epigenetic control of sarcomere assembly and identifies new therapeutic avenues to treat skeletal and cardiac myopathies arising from compromised muscle function."	"Finding lost genes in GWAS via integrative-omics analysis reveals novel sub-networks associated with preterm birth. Maternal genome influences associate with up to 40% of spontaneous preterm births (PTB). Multiple genome wide association studies (GWAS) have been completed to identify genetic variants associated with PTB. Disappointingly, no highly significant SNPs have replicated in independent cohorts so far. We developed an approach combining protein-protein interaction (PPI) network data with tissue specific gene expression data to &quot;find&quot; SNPs of modest significance to identify candidate genes of functional importance that would otherwise be overlooked. This approach is based on the assumption that &quot;high-ranking&quot; SNPs falling short of genome wide significance may nevertheless indicate genes that have substantial biological value in understanding PTB. We mapped highly-ranked candidate SNPs from a meta-analysis of PTB-GWAS to coding genes and developed a PPI network enriched with PTB-SNP carrying genes. This network was scored with gene expression data from term and preterm myometrium to identify subnetworks of PTB-SNP associated genes coordinately expressed with labour onset in myometrial tissue. Our analysis consistently identified significant sub-networks associated with the interacting transcription factors MEF2C and TWIST1, genes not previously associated with PTB, both of which regulate processes clearly relevant to birth timing. Other genes in the significant sub-networks were also associated with inflammatory pathways, as well as muscle function and ion channels. Gene expression level dysregulation was confirmed for eight of these networks by qRT-PCR in an independent set of term and pre-term subjects. Our method identifies novel genes dysregulated in PTB and provides a generalized framework to identify GWAS SNPs that would otherwise be overlooked."	"microRNA expression profiling and functional annotation analysis of their targets modulated by oxidative stress during embryonic heart development in diabetic mice. Maternal pregestational diabetes mellitus (PGDM) induces congenital heart defects (CHDs). The molecular mechanism underlying PGDM-induced CHDs is unknown. microRNAs (miRNAs), small non-coding RNAs, repress gene expression at the posttranscriptional level and play important roles in heart development. We performed a global miRNA profiling study to assist in revealing potential miRNAs modulated by PGDM and possible developmental pathways regulated by miRNAs during heart development. A total of 149 mapped miRNAs in the developing heart were significantly altered by PGDM. Bioinformatics analysis showed that the majority of the 2111 potential miRNA target genes were associated with cardiac development-related pathways including STAT3 and IGF-1 and transcription factors (Cited2, Zeb2, Mef2c, Smad4 and Ets1). Overexpression of the antioxidant enzyme, superoxide dismutase 1, reversed PGDM-altered miRNAs, suggesting that oxidative stress is responsible for dysregulation of miRNAs. Thus, our study provides the foundation for further investigation of a miRNA-dependent mechanism underlying PGDM-induced CHDs."	"Targeted sequencing of genome wide significant loci associated with bone mineral density (BMD) reveals significant novel and rare variants: the Cohorts for Heart and Aging Research in Genomic Epidemiology (CHARGE) targeted sequencing study. Bone mineral density (BMD) is a heritable phenotype that predicts fracture risk. We performed fine-mapping by targeted sequencing at WLS, MEF2C, ARHGAP1/F2 and JAG1 loci prioritized by eQTL and bioinformatic approaches among 56 BMD loci from our previous GWAS meta-analysis. Targeted sequencing was conducted in 1,291 Caucasians from the Framingham Heart Study ( n = 925) and Cardiovascular Health Study ( n = 366), including 206 women and men with extreme low femoral neck (FN) BMD. A total of 4,964 sequence variants (SNVs) were observed and 80% were rare with MAF &lt;1%. The associations between previously identified SNPs in these loci and BMD, while nominally significant in sequenced participants, were no longer significant after multiple testing corrections. Conditional analyses did not find protein-coding variants that may be responsible for GWAS signals. On the other hand, in the sequenced subjects, we identified novel associations in WLS , ARHGAP1 , and 5' of MEF2C ( P- values &lt; 8x10 - 5 ; false discovery rate (FDR) q-values &lt; 0.01) that were much more strongly associated with BMD compared to the GWAS SNPs. These associated SNVs are less-common; independent from previous GWAS signals in the same loci; and located in gene regulatory elements. Our findings suggest that protein-coding variants in selected GWAS loci did not contribute to GWAS signals. By performing targeted sequencing in GWAS loci, we identified less-common and rare non-coding SNVs associated with BMD independently from GWAS common SNPs, suggesting both common and less-common variants may associate with disease risks and phenotypes in the same loci."	"Dynamic Phosphorylation of the Myocyte Enhancer Factor 2Cα1 Splice Variant Promotes Skeletal Muscle Regeneration and Hypertrophy. The transcription factor MEF2C (Myocyte Enhancer Factor 2C) plays an established role in the early steps of myogenic differentiation. However, the involvement of MEF2C in adult myogenesis and in muscle regeneration has not yet been systematically investigated. Alternative splicing of mammalian MEF2C transcripts gives rise to two mutually exclusive protein variants: MEF2Cα2 which exerts a positive control of myogenic differentiation, and MEF2Cα1, in which the α1 domain acts as trans-repressor of the MEF2C pro-differentiation activity itself. However, MEF2Cα1 variants are persistently expressed in differentiating cultured myocytes, suggesting a role in adult myogenesis. We found that overexpression of both MEF2Cα1/α2 proteins in a mouse model of muscle injury promotes muscle regeneration and hypertrophy, with each isoform promoting different stages of myogenesis. Besides the ability of MEF2Cα2 to increase differentiation, we found that overexpressed MEF2Cα1 enhances both proliferation and differentiation of primary myoblasts, and activates the AKT/mTOR/S6K anabolic signaling pathway in newly formed myofibers. The multiple activities of MEF2Cα1 are modulated by phosphorylation of Ser98 and Ser110, two amino acid residues located in the α1 domain of MEF2Cα1. These specific phosphorylations allow the interaction of MEF2Cα1 with the peptidyl-prolyl isomerase PIN1, a regulator of MEF2C functions. Overall, in this study we established a novel regulatory mechanism in which the expression and the phosphorylation of MEF2Cα1 are critically required to sustain the adult myogenesis. The described molecular mechanism will represent a new potential target for the development of therapeutical strategies to treat muscle-wasting diseases. Stem Cells 2017;35:725-738."	"Inferring the Skeletal Muscle Developmental Changes of Grazing and Barn-Fed Goats from Gene Expression Data. Thirty-six Xiangdong black goats were used to investigate age-related mRNA and protein expression levels of some genes related to skeletal muscle structural proteins, MRFs and MEF2 family, and skeletal muscle fiber type and composition during skeletal muscle growth under grazing (G) and barn-fed (BF) feeding systems. Goats were slaughtered at six time points selected to reflect developmental changes of skeletal muscle during nonrumination (days 0, 7, and 14), transition (day 42), and rumination phases (days 56 and 70). It was observed that the number of type IIx in the longissimus dorsi was increased quickly while numbers of type IIa and IIb decreased slightly, indicating that these genes were coordinated during the rapid growth and development stages of skeletal muscle. No gene expression was affected (P &gt; 0.05) by feeding system except Myf5 and Myf6. Protein expressions of MYOZ3 and MEF2C were affected (P &lt; 0.05) by age, whereas PGC-1α was linearly decreased in the G group, and only MYOZ3 protein was affected (P &lt; 0.001) by feeding system. Moreover, it was found that PGC-1α and MEF2C proteins may interact with each other in promoting muscle growth. The current results indicate that (1) skeletal muscle growth during days 0-70 after birth is mainly myofiber hypertrophy and differentiation, (2) weaning affects the expression of relevant genes of skeletal muscle structural proteins, skeletal muscle growth, and skeletal muscle fiber type and composition, and (3) nutrition or feeding regimen mainly influences the expression of skeletal muscle growth genes. "	"A long-lasting cardiomyogenic gene expression by PEI-based transfection induces endogenous cardiac mRNAs in human adipose-derived stem cells. Our previous work revealed that a polyethyleneimine (PEI)-based gene delivery causes robust and sustained expression of exogenous genes in human adipose-derived stem cells (hADSCs). Here we use this method to test whether a single introduction of cDNAs for the three cardiomyogenic reprogramming genes (GATA4, MEF2C, and TBX5) might be sufficient to induce transdifferentiation of hADSCs towards the cardiomyogenic lineage. A single transfection results in sustained expression of the introduced genes for more than two weeks. hADSCs exhibit undetectable or very low levels of mRNAs for endogenous GATA4, MEF2C and TBX5. However, mRNAs for these endogenous factors become apparent at ∼2 weeks after transfection and keep increasing until the end of experimental period at the fifth week. Concordant with these cardiomyogenic genes, Nkx2.5 mRNA becomes significant at ∼2 weeks and gradually increases until the end of experimental period. Several other cardiomyogenic mRNAs were also significant at 5 weeks. Thus, a single transfection of cDNAs for the cardiomyogenic reprogramming genes using a PEI-based method induces transdifferentiation of ADSCs."	"Systematic selection of small molecules to promote differentiation of embryonic stem cells and experimental validation for generating cardiomyocytes. Small molecules are being increasingly used for inducing the targeted differentiation of stem cells to different cell types. However, until now no systematic method for selecting suitable small molecules for this purpose has been presented. In this work, we propose an integrated and general bioinformatics- and cheminformatics-based approach for selecting small molecules which direct cellular differentiation in the desired way. The approach was successfully experimentally validated for differentiating stem cells into cardiomyocytes. All predicted compounds enhanced expression of cardiac progenitor (Gata4, Nkx2-5 and Mef2c) and mature cardiac markers (Actc1, myh6) significantly during and post-cardiac progenitor formation. The best-performing compound, Famotidine, increased the percentage of Myh6-positive cells from 33 to 56%, and enhanced the expression of Nkx2.5 and Tnnt2 cardiac progenitor and cardiac markers in protein level. The approach employed in the study is applicable to all other stem cell differentiation settings where gene expression data are available. "	"Role of PTHrP(1-34) Pulse Frequency Versus Pulse Duration to Enhance Mesenchymal Stromal Cell Chondrogenesis. Generation of phenotypically stable, articular chondrocytes from mesenchymal stromal cells (MSCs) is still an unaccomplished task, with formation of abundant, hyaline extracellular matrix, and avoidance of hypertrophy being prime challenges. We recently demonstrated that parathyroid hormone-related protein (PTHrP) is a promising factor to direct chondrogenesis of MSCs towards an articular phenotype, since intermittent PTHrP application stimulated cartilage matrix production and reduced undesired hypertrophy. We here investigated the role of frequency, pulse duration, total exposure time, and underlying mechanisms in order to unlock the full potential of PTHrP actions. Human MSC subjected to in vitro chondrogenesis for six weeks were exposed to 2.5 nM PTHrP(1-34) pulses from days 7 to 42. Application frequency was increased from three times weekly (3 × 6 h/week) to daily maintaining either the duration of individual pulses (6 h/day) or total exposure time (18 h/week; 2.6 h/day). Daily PTHrP treatment significantly increased extracellular matrix deposition regardless of pulse duration and suppressed alkaline-phosphatase activity by 87%. High total exposure time significantly reduced cell proliferation at day 14. Pulse duration was critically important to significantly reduce IHH expression, but irrelevant for PTHrP-induced suppression of the hypertrophic markers MEF2C and IBSP. COL10A1, RUNX2, and MMP13 expression remained unaltered. Decreased IGFBP-2, -3, and -6 expression suggested modulated IGF-I availability in PTHrP groups, while drop of SOX9 protein levels during the PTHrP-pulse may delay chondroblast formation and hypertrophy. Overall, the significantly optimized timing of PTHrP-pulses demonstrated a vast potential to enhance chondrogenesis of MSC and suppress hypertrophy possibly via superior balancing of IGF- and SOX9-related mechanisms. J. Cell. Physiol. 231: 2673-2681, 2016. © 2016 Wiley Periodicals, Inc. "	"MEF2C protects bone marrow B-lymphoid progenitors during stress haematopoiesis. DNA double strand break (DSB) repair is critical for generation of B-cell receptors, which are pre-requisite for B-cell progenitor survival. However, the transcription factors that promote DSB repair in B cells are not known. Here we show that MEF2C enhances the expression of DNA repair and recombination factors in B-cell progenitors, promoting DSB repair, V(D)J recombination and cell survival. Although Mef2c-deficient mice maintain relatively intact peripheral B-lymphoid cellularity during homeostasis, they exhibit poor B-lymphoid recovery after sub-lethal irradiation and 5-fluorouracil injection. MEF2C binds active regulatory regions with high-chromatin accessibility in DNA repair and V(D)J genes in both mouse B-cell progenitors and human B lymphoblasts. Loss of Mef2c in pre-B cells reduces chromatin accessibility in multiple regulatory regions of the MEF2C-activated genes. MEF2C therefore protects B lymphopoiesis during stress by ensuring proper expression of genes that encode DNA repair and B-cell factors."	"Transformation by different oncogenes relies on specific metabolic adaptations. Metabolic adaptations are emerging as common traits of cancer cells and tumor progression. In vitro transformation of NIH 3T3 cells allows the analysis of the metabolic changes triggered by a single oncogene. In this work, we have compared the metabolic changes induced by H-RAS and by the nuclear resident mutant of histone deacetylase 4 (HDAC4). RAS-transformed cells exhibit a dominant aerobic glycolytic phenotype characterized by up-regulation of glycolytic enzymes, reduced oxygen consumption and a defect in complex I activity. In this model of transformation, glycolysis is strictly required for sustaining the ATP levels and the robust cellular proliferation. By contrast, in HDAC4/TM transformed cells, glycolysis is only modestly up-regulated, lactate secretion is not augmented and, instead, mitochondrial oxygen consumption is increased. Our results demonstrate that cellular transformation can be accomplished through different metabolic adaptations and HDAC4/TM cells can represent a useful model to investigate oncogene-driven metabolic changes besides the Warburg effect."	"BRG1 interacts with GLI2 and binds Mef2c gene in a hedgehog signalling dependent manner during in vitro cardiomyogenesis. The Hedgehog (HH) signalling pathway regulates cardiomyogenesis in vivo and in differentiating P19 embryonal carcinoma (EC) cells, a mouse embryonic stem (mES) cell model. To further assess the transcriptional role of HH signalling during cardiomyogenesis in stem cells, we studied the effects of overexpressing GLI2, a primary transducer of the HH signalling pathway, in mES cells. Stable GLI2 overexpression resulted in an enhancement of cardiac progenitor-enriched genes, Mef2c, Nkx2-5, and Tbx5 during mES cell differentiation. In contrast, pharmacological blockade of the HH pathway in mES cells resulted in lower expression of these genes. Mass spectrometric analysis identified the chromatin remodelling factor BRG1 as a protein which co-immunoprecipitates with GLI2 in differentiating mES cells. We then determined that BRG1 is recruited to a GLI2-specific Mef2c gene element in a HH signalling-dependent manner during cardiomyogenesis in P19 EC cells, a mES cell model. Thus, we propose a mechanism where HH/GLI2 regulates the expression of Mef2c by recruiting BRG1 to the Mef2c gene, most probably via chromatin remodelling, to ultimately regulate in vitro cardiomyogenesis."	"Crucial Role of Elovl6 in Chondrocyte Growth and Differentiation during Growth Plate Development in Mice. ELOVL family member 6, elongation of very long chain fatty acids (Elovl6) is a microsomal enzyme, which regulates the elongation of C12-16 saturated and monounsaturated fatty acids. Elovl6 has been shown to be associated with various pathophysiologies including insulin resistance, atherosclerosis, and non-alcoholic steatohepatitis. To investigate a potential role of Elovl6 during bone development, we here examined a skeletal phenotype of Elovl6 knockout (Elovl6-/-) mice. The Elovl6-/- skeleton was smaller than that of controls, but exhibited no obvious patterning defects. Histological analysis revealed a reduced length of proliferating and an elongated length of hypertrophic chondrocyte layer, and decreased trabecular bone in Elovl6-/- mice compared with controls. These results were presumably due to a modest decrease in chondrocyte proliferation and accelerated differentiation of cells of the chondrocyte lineage. Consistent with the increased length of the hypertrophic chondrocyte layer in Elovl6-/- mice, Collagen10α1 was identified as one of the most affected genes by ablation of Elovl6 in chondrocytes. Furthermore, this elevated expression of Collagen10α1 of Elovl6-null chondrocytes was likely associated with increased levels of Foxa2/a3 and Mef2c mRNA expression. Relative increases in protein levels of nuclear Foxa2 and cytoplasmic histone deacethylase 4/5/7 were also observed in Elovl6 knockdown cells of the chondrocyte lineage. Collectively, our data suggest that Elovl6 plays a critical role for proper development of embryonic growth plate. "	"Genome-Wide Association Study of Bone Mineral Density in Korean Men. Osteoporosis is a medical condition of global concern, with increasing incidence in both sexes. Bone mineral density (BMD), a highly heritable trait, has been proven a useful diagnostic factor in predicting fracture. Because medical information is lacking about male osteoporotic genetics, we conducted a genome-wide association study of BMD in Korean men. With 1,176 participants, we analyzed 4,414,664 single nucleotide polymorphisms (SNPs) after genomic imputation, and identified five SNPs and three loci correlated with bone density and strength. Multivariate linear regression models were applied to adjust for age and body mass index interference. Rs17124500 (p = 6.42 × 10(-7)), rs34594869 (p = 6.53 × 10(-7)) and rs17124504 (p = 6.53 × 10(-7)) in 14q31.3 and rs140155614 (p = 8.64 × 10(-7)) in 15q25.1 were significantly associated with lumbar spine BMD (LS-BMD), while rs111822233 (p = 6.35 × 10(-7)) was linked with the femur total BMD (FT-BMD). Additionally, we analyzed the relationship between BMD and five genes previously identified in Korean men. Rs61382873 (p = 0.0009) in LRP5, rs9567003 (p = 0.0033) in TNFSF11 and rs9935828 (p = 0.0248) in FOXL1 were observed for LS-BMD. Furthermore, rs33997547 (p = 0.0057) in ZBTB and rs1664496 (p = 0.0012) in MEF2C were found to influence FT-BMD and rs61769193 (p = 0.0114) in ZBTB to influence femur neck BMD. We identified five SNPs and three genomic regions, associated with BMD. The significance of our results lies in the discovery of new loci, while also affirming a previously significant locus, as potential osteoporotic factors in the Korean male population. "	"Low Oxygen Tension Enhances Expression of Myogenic Genes When Human Myoblasts Are Activated from G0 Arrest. Most cell culture studies have been performed at atmospheric oxygen tension of 21%, however the physiological oxygen tension is much lower and is a factor that may affect skeletal muscle myoblasts. In this study we have compared activation of G0 arrested myoblasts in 21% O2 and in 1% O2 in order to see how oxygen tension affects activation and proliferation of human myoblasts. Human myoblasts were isolated from skeletal muscle tissue and G0 arrested in vitro followed by reactivation at 21% O2 and 1% O2. The effect was assesses by Real-time RT-PCR, immunocytochemistry and western blot. We found an increase in proliferation rate of myoblasts when activated at a low oxygen tension (1% O2) compared to 21% O2. In addition, the gene expression studies showed up regulation of the myogenesis related genes PAX3, PAX7, MYOD, MYOG (myogenin), MET, NCAM, DES (desmin), MEF2A, MEF2C and CDH15 (M-cadherin), however, the fraction of DES and MYOD positive cells was not increased by low oxygen tension, indicating that 1% O2 may not have a functional effect on the myogenic response. Furthermore, the expression of genes involved in the TGFβ, Notch and Wnt signaling pathways were also up regulated in low oxygen tension. The differences in gene expression were most pronounced at day one after activation from G0-arrest, thus the initial activation of myoblasts seemed most sensitive to changes in oxygen tension. Protein expression of HES1 and β-catenin indicated that notch signaling may be induced in 21% O2, while the canonical Wnt signaling may be induced in 1% O2 during activation and proliferation of myoblasts."	"FAK Forms a Complex with MEF2 to Couple Biomechanical Signaling to Transcription in Cardiomyocytes. Focal adhesion kinase (FAK) has emerged as a mediator of mechanotransduction in cardiomyocytes, regulating gene expression during hypertrophic remodeling. However, how FAK signaling is relayed onward to the nucleus is unclear. Here, we show that FAK interacts with and regulates myocyte enhancer factor 2 (MEF2), a master cardiac transcriptional regulator. In cardiomyocytes exposed to biomechanical stimulation, FAK accumulates in the nucleus, binds to and upregulates the transcriptional activity of MEF2 through an interaction with the FAK focal adhesion targeting (FAT) domain. In the crystal structure (2.9 Å resolution), FAT binds to a stably folded groove in the MEF2 dimer, known to interact with regulatory cofactors. FAK cooperates with MEF2 to enhance the expression of Jun in cardiomyocytes, an important component of hypertrophic response to mechanical stress. These findings underscore a connection between the mechanotransduction involving FAK and transcriptional regulation by MEF2, with potential relevance to the pathogenesis of cardiac disease."	"Temporal correlation between differentiation factor expression and microRNAs in Holstein bovine skeletal muscle. Satellite cells are adult stem cells located between the basal lamina and sarcolemma of muscle fibers. Under physiological conditions, satellite cells are quiescent, but they maintain a strong proliferative potential and propensity to differentiate, which underlies their critical role in muscle preservation and growth. MicroRNAs (miRNAs) play essential roles during animal development as well as in stem cell self-renewal and differentiation regulation. MiRNA-1, miRNA-133a and miRNA-206 are closely related muscle-specific miRNAs, and are thus defined myomiRNAs. MyomiRNAs are integrated into myogenic regulatory networks. Their expression is under the transcriptional and post-transcriptional control of myogenic factors and, in turn, they exhibit widespread control of muscle gene expression. Very little information is available about the regulation and behavior of satellite cells in large farm animals, in particular during satellite cell differentiation. Here, we study bovine satellite cells (BoSCs) undergoing a differentiation process and report the expression pattern of selected genes and miRNAs involved. Muscle samples of longissimus thoracis from Holstein adult male animals were selected for the collection of satellite cells. All satellite cell preparations demonstrated myotube differentiation. To characterize the dynamics of several transcription factors expressed in BoSCs, we performed real-time PCR on complementary DNA generated from the total RNA extracted from BoSCs cultivated in growth medium (GM) or in differentiation medium (DM) for 4 days. In the GM condition, BoSCs expressed the satellite cell lineage markers as well as transcripts for the myogenic regulatory factors. At the time of isolation from muscle, PAX7 was expressed in nearly 100% of BoSCs; however, its messenger RNA (mRNA) levels dramatically decreased between 3 and 6 days post isolation (P&lt;0.01). MyoD mRNA levels increased during the 1st day of cultivation in DM (day 7; P&lt;0.02), showing a gradual activation of the myogenic gene program. During the subsequent 4 days of culture in DM, several tested genes, including MRF4, MYOG, MEF2C, TMEM8C, DES and MYH1, showed increased expression (P&lt;0.05), and these levels remained high throughout the culture period investigated. Meanwhile, the expression of genes involved in the differentiation process also miRNA-1, miRNA-133a and miRNA-206 were strongly up-regulated on the 1st day in DM (day 7; P&lt;0.05). Analysis revealed highly significant correlations between myomiRNAs expression and MEF2C, MRF4, TMEM8C, DES and MYH1 gene expression (P&lt;0.001). Knowledge about the transcriptional changes correlating with the growth and differentiation of skeletal muscle fibers could be helpful for developing strategies to improve production performance in livestock."	"Genome-wide association meta-analyses identified 1q43 and 2q32.2 for hip Ward's triangle areal bone mineral density. Aiming to identify genomic variants associated with osteoporosis, we performed a genome-wide association meta-analysis of bone mineral density (BMD) at Ward's triangle of the hip in 7175 subjects from 6 samples. We performed in silico replications with femoral neck, trochanter, and inter-trochanter BMDs in 6912 subjects from the Framingham heart study (FHS), and with forearm, femoral neck and lumbar spine BMDs in 32965 subjects from the GEFOS summary results. Combining the evidence from all samples, we identified 2 novel loci for areal BMD: 1q43 (rs1414660, discovery p=1.20×10(-8), FHS p=0.05 for trochanter BMD; rs9287237, discovery p=3.55×10(-7), FHS p=9.20×10(-3) for trochanter BMD, GEFOS p=0.02 for forearm BMD, nearest gene FMN2) and 2q32.2 (rs56346965, discovery p=7.48×10(-7), FHS p=0.10 for inter-trochanter BMD, GEFOS p=0.02 for spine BMD, nearest gene NAB1). The two lead SNPs rs1414660 and rs56346965 are eQTL sites for the genes GREM2 and NAB1 respectively. Functional annotation of GREM2 and NAB1 illustrated their involvement in BMP signaling pathway and in bone development. We also replicated three previously reported loci: 5q14.3 (rs10037512, discovery p=3.09×10(-6), FHS p=8.50×10(-3), GEFOS p=1.23×10(-24) for femoral neck BMD, nearest gene MEF2C), 6q25.1 (rs3020340, discovery p=1.64×10(-6), GEFOS p=1.69×10(-3) for SPN-BMD, nearest gene ESR1) and 7q21.3 (rs13310130, discovery p=8.79×10(-7), GEFOS p=2.61×10(-7) for spine BMD, nearest gene SHFM1). Our findings provide additional insights that further enhance our understanding of bone development, osteoporosis, and fracture pathogenesis."	"[β-catenin is involved in BMP9-induced differentiation of C3H10T1/2 cells into cardiomyocyte-like cells]. Objective To investigate the role of β-catenin in the differentiation of C3H10T1/2 cells into cardiomyocyte-like cells induced by bone morphogenetic protein 9 (BMP9). Methods C3H10T1/2 cells were transfected with the recombinant adenovirus expressing BMP9 (Ad-BMP9) and differentiated into cardiomyocytes in vitro for up to 21 days. The activated level of β-catenin in the cells after cultivated with Ad-BMP9 and different concentrations of β-catenin specific inhibitor XAV-939 was detected by Western blotting. Real-time quantitative PCR (qRT-PCR) was performed to evaluate the expressions of cardiac specific gene myocyte enhancer factor 2C (MEF2C) and GATA binding protein 4 (GATA4) in the cells one week after induced by Ad-BMP9 and different concentrations of XAV-939. Three weeks after the transfection, the expressions of connexin 43 (Cx43) and cardiac troponin T (cTnT) were analyzed by Western blotting, and the location of Cx43 in the cells was observed by immunofluorescence technique. Results While the transfection was successful in 50% of the cells positive for BMP9, β-catenin was excessively activated and their phosphorylation level remarkably increased. After XAV-939 inhibited the activity of β-catenin, the expressions of MEF2C, GATA4, Cx43, cTnT in C3H10T1/2 cells induced by BMP9 were significantly suppressed. Conclusion The β-catenin can be activated by BMP9 and the activation of β-catenin plays an important role in the differentiation of C3H10T1/2 cells into cardiomyocyte-like cells induced by BMP9. "	"Function analysis of Mef2c promoter in muscle differentiation. Regeneration of adult skeletal muscle following injury occurs through the activation of satellite cells that proliferates, differentiates, and fuses with injured myofibers. Myocyte enhancer factor 2 (MEF2) proteins are reported to have the potential contributions to adult muscle regeneration. To further understand Mef2c gene, the promoter of pig Mef2c gene was analyzed in this paper. Quantitative real-time PCR (qRT-PCR) revealed the expression pattern of Mef2c gene in muscle of eight tissues. The Mef2c promoter had the higher transcriptional activity in differentiated C2C12 cells than that in proliferating C2C12 cells, which was accompanied by the upregulation of mRNA expression of Mef2c gene. Function deletion and mutation analyses showed that MyoD and MEF2 binding sites within the Mef2c promoter were responsible for the regulation of Mef2c transcription. MEF2C could upregulate the transcriptional activities of Mef2c promoter constructs, which contained a 3'-end nucleotide sequence with p300 binding site. The electrophoretic mobility shift assays and chromatin immunoprecipitation assays determined the MyoD binding site in Mef2c promoter. These results advanced our knowledge of the promoter of the pig Mef2c gene, and the study of Mef2c promoter regulator elements helped to elucidate the regulation mechanisms of Mef2c in muscle differentiation or muscle repair and regeneration."	"Generation of iPSC from cardiac and tail-tip fibroblasts derived from a second heart field reporter mouse. Mef2c Anterior Heart Field (AHF) enhancer is activated during embryonic heart development and it is expressed in multipotent cardiovascular progenitors (CVP) giving rise to endothelial and myocardial components of the outflow tract, right ventricle and ventricular septum. Here we have generated iPSC from transgenic Mef2c-AHF-Cre x Ai6(RCLZsGreen) mice. These iPSC will provide a novel tool to investigate the AHF-CVP and their cell progeny."	"MiR-27a is Essential for the Shift from Osteogenic Differentiation to Adipogenic Differentiation of Mesenchymal Stem Cells in Postmenopausal Osteoporosis. Osteoporosis is a progressive bone disease characterized by a decrease in bone mass and density, which results in an increased risk of fractures. Mesenchymal stem cells (MSCs) are progenitor cells that can differentiate into osteoblasts, osteocytes and adipocytes in bone and fat formation. A reduction in the differentiation of MSCs into osteoblasts contributes to the impaired bone formation observed in osteoporosis. MicroRNAs (miRNAs) play a regulatory role in osteogenesis and MSC differentiation. MiR-27a has been reported to be down-regulated in the development of osteoporosis and during adipogenic differentiation. In this study, a miRNA microarray analysis was used to investigate expression profiles of miRNA in the serum of osteoporotic patients and healthy controls and this data was validated by quantitative real-time PCR (qRT-PCR). MSCs isolated from human and mice with miR-27a inhibition or overexpression were induced to differentiate into osteoblasts or adipocytes. TargetScan and PicTar were used to predict the target gene of miR-27a. The mRNA or protein levels of several specific proteins in MSCs were detected using qRT-PCR or western blot analysis. Ovariectomized mice were used as in vivo model of human postmenopausal osteoporosis for bone mineral density measurement, micro-CT analysis and histomorphometric analysis. Here, we analyzed the role of miR-27a in bone metabolism. Microarray analysis indicated that miR-27a expression was significantly reduced in osteoporotic patients. Analysis on MSCs derived from patients with osteoporosis indicated that osteoblastogenesis was reduced, whereas adipogenesis was increased. MSCs that had undergone osteoblast induction showed a significant increase in miR-27a expression, whereas cells that had undergone adipocyte induction showed a significant decrease in miR-27a expression, indicating that miR-27a was essential for MSC differentiation. We demonstrated that myocyte enhancer factor 2 c (Mef2c), a transcription factor, was the direct target of miR-27a using a dual luciferase assay. An inverse relationship between miR-27a expression and Mef2c expression in osteoporotic patients was shown. Silencing of miR-27a decreased bone formation, confirming the role of miR-27a in bone formation in vivo. In summary, miR-27a was essential for the shift of MSCs from osteogenic differentiation to adipogenic differentiation in osteoporosis by targeting Mef2c."	"Deregulation of polycomb repressor complex 1 modifier AUTS2 in T-cell leukemia. Recently, we identified deregulated expression of the B-cell specific transcription factor MEF2C in T-cell acute lymphoid leukemia (T-ALL). Here, we performed sequence analysis of a regulatory upstream section of MEF2C in T-ALL cell lines which, however, proved devoid of mutations. Unexpectedly, we found strong conservation between the regulatory upstream region of MEF2C (located at chromosomal band 5q14) and an intergenic stretch at 7q11 located between STAG3L4 and AUTS2, covering nearly 20 kb. While the non-coding gene STAG3L4 was inconspicuously expressed, AUTS2 was aberrantly upregulated in 6% of T-ALL patients (public dataset GSE42038) and in 3/24 T-ALL cell lines, two of which represented very immature differentiation stages. AUTS2 expression was higher in normal B-cells than in T-cells, indicating lineage-specific activity in lymphopoiesis. While excluding chromosomal aberrations, examinations of AUTS2 transcriptional regulation in T-ALL cells revealed activation by IL7-IL7R-STAT5-signalling and MEF2C. AUTS2 protein has been shown to interact with polycomb repressor complex 1 subtype 5 (PRC1.5), transforming this particular complex into an activator. Accordingly, expression profiling and functional analyses demonstrated that AUTS2 activated while PCGF5 repressed transcription of NKL homeobox gene MSX1 in T-ALL cells. Forced expression and pharmacological inhibition of EZH2 in addition to H3K27me3 analysis indicated that PRC2 repressed MSX1 as well. Taken together, we found that AUTS2 and MEF2C, despite lying on different chromosomes, share strikingly similar regulatory upstream regions and aberrant expression in T-ALL subsets. Our data implicate chromatin complexes PRC1/AUTS2 and PRC2 in a gene network in T-ALL regulating early lymphoid differentiation."	"MEF2C and CEBPA: Possible co-regulators in chronic myeloid leukemia disease progression. Chronic myelogenous leukemia (CML), a hematopoietic malignancy, characterized initially by a chronic phase (CP) progresses into blast crisis (BC) with the accumulation of secondary abnormalities. We have reported earlier that MEF2C, a target of miR-223, was significantly up regulated in CML and also showed a negative correlation with miR-223. In this study, gene expression arrays were used to identify the genes regulated by MEF2C during myelopoiesis. Statistical tools were used to understand the correlation between MEF2C and the targets in different phases of CML. Different CML cell lines and CML patient samples were treated with imatinib to study the effect of MEF2C on the target genes. We observed that MEF2C targets a set of myeloid genes including the myeloid transcription factor CEBPA. MEF2C and CEBPA expression patterns are negatively correlated in CML patient samples. We further show that the expression of MEF2C and CEBPA along with CSF3R is sufficient to molecularly classify different stages of CML. Imatinib, the drug of choice for CML, abrogates MEF2C expression and reverses CEBPA repression both in the cell line and the primary cells. We report the existence of a MEF2C and CEBPA correlation in CML disease progression."	"Multipotency and cardiomyogenic potential of human adipose-derived stem cells from epicardium, pericardium, and omentum. Acute myocardial infarction (MI) leads to an irreversible loss of proper cardiac function. Application of stem cell therapy is an attractive option for MI treatment. Adipose tissue has proven to serve as a rich source of stem cells (ADSCs). Taking into account the different morphogenesis, anatomy, and physiology of adipose tissue, we hypothesized that ADSCs from different adipose tissue depots may exert a diverse multipotency and cardiogenic potential. The omental, pericardial, and epicardial adipose tissue samples were obtained from organ donors and patients undergoing heart transplantation at our institution. Human foreskin fibroblasts were used as the control group. Isolated ADSCs were analyzed for adipogenic and osteogenic differentiation capacity and proliferation potential. The immunophenotype and constitutive gene expression of alkaline phosphatase (ALP), GATA4, Nanog, and OCT4 were analyzed. DNA methylation inhibitor 5-azacytidine was exposed to the cells to stimulate the cardiogenesis. Finally, reprogramming towards cardiomyocytes was initiated with exogenous overexpression of seven transcription factors (ESRRG, GATA4, MEF2C, MESP1, MYOCD, TBX5, ZFPM2) previously applied successfully for fibroblast transdifferentiation toward cardiomyocytes. Expression of cardiac troponin T (cTNT) and alpha-actinin (Actn2) was analyzed 3 weeks after initiation of the cardiac differentiation. The multipotent properties of isolated plastic adherent cells were confirmed with expression of CD29, CD44, CD90, and CD105, as well as successful differentiation toward adipocytes and osteocytes; with the highest osteogenic and adipogenic potential for the epicardial and omental ADSCs, respectively. Epicardial ADSCs demonstrated a lower doubling time as compared with the pericardium and omentum-derived cells. Furthermore, epicardial ADSCs revealed higher constitutive expression of ALP and GATA4. Increased Actn2 and cTNT expression was observed after the transduction of seven reprogramming factors, with the highest expression in the epicardial ADSCs, as compared with the other ADSC subtypes and fibroblasts. Human epicardial ADSCs revealed a higher cardiomyogenic potential as compared with the pericardial and omental ADSC subtypes as well as the fibroblast counterparts. Epicardial ADSCs may thus serve as the valuable subject for further studies on more effective methods of adult stem cell differentiation toward cardiomyocytes."	"The LIM domain protein nTRIP6 acts as a co-repressor for the transcription factor MEF2C in myoblasts. The transcription factor Myocyte enhancer factor 2C (MEF2C) plays a key role in the late differentiation of skeletal muscle progenitor cells, the so-called myoblasts. During myoblast differentiation, both MEF2C expression and transcriptional activity are regulated. We have reported that nTRIP6, the nuclear isoform of the focal adhesion LIM domain protein TRIP6, acts as an adaptor transcriptional co-activator for several transcription factors. It interacts with the promoter-bound transcription factors and consequently mediates the recruitment of other co-activators. Based on a described interaction between MEF2C and TRIP6 in a yeast-two-hybrid screen, we hypothesised a co-regulatory function of nTRIP6 for MEF2C. In proliferating myoblasts, nTRIP6 interacted with MEF2C and was recruited together with MEF2C to the MEF2-binding regions of the MEF2C target genes Myom2, Mb, Tnni2 and Des. Silencing nTRIP6 or preventing its interaction with MEF2C increased MEF2C transcriptional activity and increased the expression of these MEF2C target genes. Thus, nTRIP6 acts as a co-repressor for MEF2C. Mechanistically, nTRIP6 mediated the recruitment of the class IIa histone deacetylase HDAC5 to the MEF2C-bound promoters. In conclusion, our results unravel a transcriptional co-repressor function for nTRIP6. This adaptor co-regulator can thus exert either co-activator or co-repressor functions, depending on the transcription factor it interacts with."	"Sustained AMPK activation improves muscle function in a mitochondrial myopathy mouse model by promoting muscle fiber regeneration. Acute pharmacological activation of adenosine monophosphate (AMP)-kinase using 5-aminoimidazole-4-carboxamide-1-b-D-ribofuranoside (AICAR) has been shown to improve muscle mitochondrial function by increasing mitochondrial biogenesis. We asked whether prolonged AICAR treatment is beneficial in a mouse model of slowly progressing mitochondrial myopathy (Cox10-Mef2c-Cre), and whether the compensatory mechanism is indeed an increase in mitochondrial biogenesis. We treated the animals for 3 months and found that sustained AMP-dependent kinase activation improved cytochrome c oxidase activity, rescued the motor phenotype and delayed the onset of the myopathy. This improvement was observed whether treatment started before or after the onset of the disease. We found that AICAR increased skeletal muscle regeneration thereby decreasing the levels of deleted Cox10-floxed alleles. We conclude that although increase in mitochondrial biogenesis and other pathways may contribute, the main mechanism by which AICAR improves the myopathy phenotype is by promoting muscle regeneration."	"LncRNA-uc.167 influences cell proliferation, apoptosis and differentiation of P19 cells by regulating Mef2c. In our previous study we screened thousands of lncRNAs for their relationship with ventricular septal defect. Among these lncRNAs, uc.167 attracted our attention for its high level of conservation and that it was antisense to the Mef2c gene, which encodes myocyte enhancer factor 2C. This study aims to investigate the role of uc.167 during cardiomyocyte maturation in P19 cells induction and possible mechanism. The uc.167 expression level in human heart tissue of ventricular septum defect (VSD) was evaluated by qRT-PCR. The UCSC database was searched to investigate the bioinformatics of uc.167. We constructed overexpression vector of uc.167 and Mef2c. To detect proliferation and apoptosis, we combined cell cycle analysis and CCK8, Hoechst staining, flow cytometry and caspase-3 assays, respectively. The cardiomyogenesis related RNAs (cTnT, GATA4, and Mef2c) and proteins were detected by qRT-PCR and Western blotting. In this study, we found that uc.167 expression was significantly increased in VSD heart tissues. uc.167 is on the opposite strand to the coding gene Mef2c. The expression model of Mef2c and uc.167 showed an opposite correlation in the embryonic development and process of differentiation of P19 cells into cardiomyocytes. Overexpression of uc.167 inhibited proliferation but promoted apoptosis in P19 cells compared with the vector group, and those relative mRNAs and proteins decreased during the differentiation process. Whereas, co-expression of Mef2c and uc.167 can partially reverse the negative effects of uc.167 on proliferation, apoptosis and differentiation. Taken together, our findings suggest that uc.167 contributes to the development potential of VSD and may constitute a potential therapeutic target in this disease. uc.167 influences cell proliferation, apoptosis and differentiation of P19 cell by regulating Mef2c. "	"MEF2C haploinsufficiency syndrome: Report of a new MEF2C mutation and review. MEF2C haploinsufficiency syndrome is characterized by severe intellectual disability, epilepsy, stereotypic movements, minor dysmorphisms and brain abnormalities. We report the case of a patient with a new MEF2C mutation, comparing his clinical and imaging features to those previously reported in the literature. A 10 year-old boy first came to pediatric neurology clinic at the age of 11 months because of severe psychomotor delay, without regression. He presented generalized hypotonia, poor eye contact, hand-mouth stereotypies, strabismus and minor facial dimorphisms. Epileptic seizures started at 26 months of age and were refractory. Brain MRI showed a slight increase in periventricular white matter signal and globally enlarged CSF spaces. Molecular analysis revealed a de novo, pathogenic and causative MEF2C mutation. MEF2C haploinsufficiency syndrome was recently recognized as a neurodevelopmental disorder. Severe intellectual disability with inability to speak and epilepsy are universal features in patients with MEF2C mutations, although mild cognitive and speech disorders have been reported to occur in patients with duplications. Epilepsy might be absent in patients with partial deletions. Abnormal movement patterns are very common in patients with MEF2C haploinsufficiency. Delayed myelination seems to be more commonly observed in patients with MEF2C mutations, while malformations of cortical development were only reported in patients with microdeletions. Although MEF2C haploinsufficiency prevalence is yet to be determined, it should be considered in the differential diagnosis of patients with severe intellectual disability and Rett-like features."	"Community Structure Reveals Biologically Functional Modules in MEF2C Transcriptional Regulatory Network. Gene regulatory networks are useful to understand the activity behind the complex mechanisms in transcriptional regulation. A main goal in contemporary biology is using such networks to understand the systemic regulation of gene expression. In this work, we carried out a systematic study of a transcriptional regulatory network derived from a comprehensive selection of all potential transcription factor interactions downstream from MEF2C, a human transcription factor master regulator. By analyzing the connectivity structure of such network, we were able to find different biologically functional processes and specific biochemical pathways statistically enriched in communities of genes into the network, such processes are related to cell signaling, cell cycle and metabolism. In this way we further support the hypothesis that structural properties of biological networks encode an important part of their functional behavior in eukaryotic cells. "	"An epigenetic mechanism mediates developmental nicotine effects on neuronal structure and behavior. Developmental nicotine exposure causes persistent changes in cortical neuron morphology and in behavior. We used microarray screening to identify master transcriptional or epigenetic regulators mediating these effects of nicotine and discovered increases in Ash2l mRNA, encoding a component of a histone methyltransferase complex. We therefore examined genome-wide changes in trimethylation of histone H3 on Lys4 (H3K4me3), a mark induced by the Ash2l complex associated with increased gene transcription. A large proportion of regulated promoter sites were involved in synapse maintenance. We found that Mef2c interacts with Ash2l and mediates changes in H3K4me3. Knockdown of Ash2l or Mef2c abolished nicotine-mediated alterations of dendritic complexity in vitro and in vivo, and attenuated nicotine-dependent changes in passive avoidance behavior. In contrast, overexpression mimicked nicotine-mediated alterations of neuronal structure and passive avoidance behavior. These studies identify Ash2l as a target induced by nicotinic stimulation that couples developmental nicotine exposure to changes in brain epigenetic marks, neuronal structure and behavior."	"Mainstream smoke and sidestream smoke affect the cardiac differentiation of mouse embryonic stem cells discriminately. Epidemiology studies suggest that maternal smoking and passive smoking have strongly resulted in the occurrence of congenital heart defects (CHD) in offspring. Cigarette smoke (CS) can be divided into mainstream smoke (MS) and sidestream smoke (SS); CS chemistry study indicates that significant differences exist in the composition of MS and SS. Therefore, MS and SS were suspected to process toxicity dissimilarly. However, much less was known about the difference in the developmental effects induced by MS and SS. In the current study, heart development was mimicked by mouse embryonic stem cells (ESCs) differentiation. After MS and SS exposure, by tracing the bone morphogenetic protein (BMP)-Smad4 signalling pathway, interruption of downstream gene expression was observed, including Gata4, Mef2c and Nkx2.5, as well as myosin heavy chain and myosin light chain. Specifically, SS caused inhibition of Gata4 expression, even at non-cytotoxic concentration. Further, SS-induced hypoacetylation in promoter regions of Gata4 reflected the orchestration of CS-gene modulation-epigenetic regulation. Even though SS induced apoptosis in ESC-derived cardiomyocytes, the partial clearance in cells with down-regulated Gata4 caused these cells to survive and undergo further differentiation, which laid potential risk for abnormal heart development. These data uncovered the difference between MS and SS on heart development preliminarily."	"Forceful Backbending Stereotypies Revealing MEF2C Haploinsufficiency. NA"	"Up-Regulation of miRNA-21 Expression Promotes Migration and Proliferation of Sca-1+ Cardiac Stem Cells in Mice. BACKGROUND This study, by regulating the expression level of microRNA-21 (miRNA-21) in antigen-1+ (Sca-1+) cardiac stem cells (CSCs), examined the role of miRNA-21 in migration, proliferation, and differentiation of Sca-1+ CSCs, and explored the use of miRNA-21 in treatment of heart-related diseases in mice. MATERIAL AND METHODS The CSCs of 20 healthy 2-month-old C57BL/6 mice were collected in our study. Immunomagnetic beads were used to separate and prepare pure Sca-1+ CSCs, which were further examined by flow cytometry. The samples were assigned to 4 groups: the blank group, the miRNA-21 mimic group, the miRNA-21 inhibitor group, and the negative control (NC) group. Quantitative real-time polymerase chain reaction (qRT-PCR), Transwell chamber assay, and the methyl thiazolylte-trazolium (MTT) assay were performed. Reverse transcriptase-polymerase chain reaction (RT-PCR) was used to measure the expression levels of GATA-4, MEF2c, TNI, and β-MHC differentiation-related genes. RESULTS Immunomagnetic separation results indicated that Sca-1+ CSCs accounted for more than 87.4% of CSCs. RT-PCR results also showed that the expression level of miRNA-21 of the miRNA-21 mimic group was higher than those of the other groups (all P&lt;0.05). Compared to the NC and the blank group, the migration of Sca-1+ CSCs was more active in the miRNA-21 mimic group and less active in the miRNA-21 inhibitor group (all P&lt;0.05). Moreover, compared to the blank group, the proliferation of Sca-1+ CSCs was enhanced in the miRNA-21 mimic group and inhibited in the miRNA-21 inhibitor group (all P&lt;0.05). The results of RT-PCR indicated that neither miRNA-21 mimics nor miR-21 inhibitors influenced the gene expression levels of GATA-4, MEF2c, TNI, or β-MHC. CONCLUSIONS Our study provides evidence that up-regulation of miRNA-21 can promote migration and proliferation of Sca-1+ CSCs to enhance the capacity of Sca-1+ CSCs to repair damaged myocardium, which may pave the way for therapeutic strategies directed toward restoring miRNA-21 function for heart-related diseases. "	"MEF2C-MYOCD and Leiomodin1 Suppression by miRNA-214 Promotes Smooth Muscle Cell Phenotype Switching in Pulmonary Arterial Hypertension. Vascular hyperproliferative disorders are characterized by excessive smooth muscle cell (SMC) proliferation leading to vessel remodeling and occlusion. In pulmonary arterial hypertension (PAH), SMC phenotype switching from a terminally differentiated contractile to synthetic state is gaining traction as our understanding of the disease progression improves. While maintenance of SMC contractile phenotype is reportedly orchestrated by a MEF2C-myocardin (MYOCD) interplay, little is known regarding molecular control at this nexus. Moreover, the burgeoning interest in microRNAs (miRs) provides the basis for exploring their modulation of MEF2C-MYOCD signaling, and in turn, a pro-proliferative, synthetic SMC phenotype. We hypothesized that suppression of SMC contractile phenotype in pulmonary hypertension is mediated by miR-214 via repression of the MEF2C-MYOCD-leiomodin1 (LMOD1) signaling axis. In SMCs isolated from a PAH patient cohort and commercially obtained hPASMCs exposed to hypoxia, miR-214 expression was monitored by qRT-PCR. miR-214 was upregulated in PAH- vs. control subject hPASMCs as well as in commercially obtained hPASMCs exposed to hypoxia. These increases in miR-214 were paralleled by MEF2C, MYOCD and SMC contractile protein downregulation. Of these, LMOD1 and MEF2C were directly targeted by the miR. Mir-214 overexpression mimicked the PAH profile, downregulating MEF2C and LMOD1. AntagomiR-214 abrogated hypoxia-induced suppression of the contractile phenotype and its attendant proliferation. Anti-miR-214 also restored PAH-PASMCs to a contractile phenotype seen during vascular homeostasis. Our findings illustrate a key role for miR-214 in modulation of MEF2C-MYOCD-LMOD1 signaling and suggest that an antagonist of miR-214 could mitigate SMC phenotype changes and proliferation in vascular hyperproliferative disorders including PAH."	"Co-culture with neonatal cardiomyocytes enhances the proliferation of iPSC-derived cardiomyocytes via FAK/JNK signaling. We previously reported that the pluripotent stem cells can differentiate into cardiomyocytes (CMs) by co-culture with neonatal CMs (NCMs) in vitro. However, the involving mechanism is not clear. Mouse induced pluripotent stem cells (iPSCs) were cultured in hanging drops to form embryoid bodies (EBs) and to induce myocardial differentiation. Co-culture of EBs and NCMs was established in a transwell insert system, while EBs grown alone in the wells were used as controls. Co-culture with NCMs markedly increased the generation of functional CMs from iPSCs. The focal adhesion kinase (FAK) phosphorylation, and c-Jun N-terminal kinase (JNK) phosphorylation in co-culture were higher than that in EBs grown alone. Treating FAK small interfering RNA (FAK siRNA) or specific inhibitor for JNK (SP600125) to iPSCs significantly reduced the phosphorylation of JNK and the expressions of Mef2c and Bcl-2. The expressions of cTnT and MLC-2V were also decreased. Our results revealed that co-culture with NCMs significantly enhance the differentiation ability of iPSCs by increasing Mef2c and Bcl-2 expressions concomitantly with a marked augment on cell proliferation through JNK signaling pathways. These findings indicated that co-culture of EBs with NCMs induces genes expressed in a mature pattern and stimulates the proliferation of iPSC-derived CMs (iPS-CMs) by activating FAK/JNK signaling."	"ISL1 and JMJD3 synergistically control cardiac differentiation of embryonic stem cells. ISL1 is expressed in cardiac progenitor cells and plays critical roles in cardiac lineage differentiation and heart development. Cardiac progenitor cells hold great potential for clinical and translational applications. However, the mechanisms underlying ISL1 function in cardiac progenitor cells have not been fully elucidated. Here we uncover a hierarchical role of ISL1 in cardiac progenitor cells, showing that ISL1 directly regulates hundreds of potential downstream target genes that are implicated in cardiac differentiation, through an epigenetic mechanism. Specifically, ISL1 promotes the demethylation of tri-methylation of histone H3K27 (H3K27me3) at the enhancers of key downstream target genes, including Myocd and Mef2c, which are core cardiac transcription factors. ISL1 physically interacts with JMJD3, a H3K27me3 demethylase, and conditional depletion of JMJD3 leads to impaired cardiac progenitor cell differentiation, phenocopying that of ISL1 depletion. Interestingly, ISL1 is not only responsible for the recruitment of JMJD3 to specific target loci during cardiac progenitor differentiation, but also modulates its demethylase activity. In conclusion, ISL1 and JMJD3 partner to alter the cardiac epigenome, instructing gene expression changes that drive cardiac differentiation."	"Sphingosine 1-phosphate elicits RhoA-dependent proliferation and MRTF-A mediated gene induction in CPCs. Although c-kit(+) cardiac progenitor cells (CPCs) are currently used in clinical trials there remain considerable gaps in our understanding of the molecular mechanisms underlying their proliferation and differentiation. G-protein coupled receptors (GPCRs) play an important role in regulating these processes in mammalian cell types thus we assessed GPCR mRNA expression in c-kit(+) cells isolated from adult mouse hearts. Our data provide the first comprehensive overview of the distribution of this fundamental class of cardiac receptors in CPCs and reveal notable distinctions from that of adult cardiomyocytes. We focused on GPCRs that couple to RhoA activation in particular those for sphingosine-1-phosphate (S1P). The S1P2 and S1P3 receptors are the most abundant S1P receptor subtypes in mouse and human CPCs while cardiomyocytes express predominantly S1P1 receptors. Treatment of CPCs with S1P, as with thrombin and serum, increased proliferation through a pathway requiring RhoA signaling, as evidenced by significant attenuation when Rho was inhibited by treatment with C3 toxin. Further analysis demonstrated that both S1P- and serum-induced proliferation are regulated through the S1P2 and S1P3 receptor subtypes which couple to Gα12/13 to elicit RhoA activation. The transcriptional co-activator MRTF-A was activated by S1P as assessed by its nuclear accumulation and induction of a RhoA/MRTF-A luciferase reporter. In addition S1P treatment increased expression of cardiac lineage markers Mef2C and GATA4 and the smooth muscle marker GATA6 through activation of MRTF-A. In conclusion, we delineate an S1P-regulated signaling pathway in CPCs that introduces the possibility of targeting S1P2/3 receptors, Gα12/13 or RhoA to influence the proliferation and commitment of c-kit(+) CPCs and improve the response of the myocardium following injury."	"Sphingosylphosphorylcholine promotes the differentiation of resident Sca-1 positive cardiac stem cells to cardiomyocytes through lipid raft/JNK/STAT3 and β-catenin signaling pathways. Resident cardiac Sca-1-positive (+) stem cells may differentiate into cardiomyocytes to improve the function of damaged hearts. However, little is known about the inducers and molecular mechanisms underlying the myogenic conversion of Sca-1(+) stem cells. Here we report that sphingosylphosphorylcholine (SPC), a naturally occurring bioactive lipid, induces the myogenic conversion of Sca-1(+) stem cells, as evidenced by the increased expression of cardiac transcription factors (Nkx2.5 and GATA4), structural proteins (cardiac Troponin T), transcriptional enhancer (Mef2c) and GATA4 nucleus translocation. First, SPC activated JNK and STAT3, and the JNK inhibitor SP600125 or STAT3 inhibitor stattic impaired the SPC-induced expression of cardiac transcription factors and GATA4 nucleus translocation, which suggests that JNK and STAT3 participated in SPC-promoted cardiac differentiation. Moreover, STAT3 activation was inhibited by SP600125, whereas JNK was inhibited by β-cyclodextrin as a lipid raft breaker, which indicates a lipid raft/JNK/STAT3 pathway involved in SPC-induced myogenic transition. β-Catenin, degraded by activated GSK3β, was inhibited by SPC. Furthermore, GSK3β inhibitors weakened but the β-catenin inhibitor promoted SPC-induced differentiation. We found no crosstalk between the lipid raft/JNK/STAT3 and β-catenin pathway. Our study describes a lipid, SPC, as an endogenic inducer of myogenic conversion in Sca-1(+) stem cells with low toxicity and high efficiency for uptake. "	"Late-onset Alzheimer disease risk variants mark brain regulatory loci. To investigate the top late-onset Alzheimer disease (LOAD) risk loci detected or confirmed by the International Genomics of Alzheimer's Project for association with brain gene expression levels to identify variants that influence Alzheimer disease (AD) risk through gene expression regulation. Expression levels from the cerebellum (CER) and temporal cortex (TCX) were obtained using Illumina whole-genome cDNA-mediated annealing, selection, extension, and ligation assay (WG-DASL) for ∼400 autopsied patients (∼200 with AD and ∼200 with non-AD pathologies). We tested 12 significant LOAD genome-wide association study (GWAS) index single nucleotide polymorphisms (SNPs) for cis association with levels of 34 genes within ±100 kb. We also evaluated brain levels of 14 LOAD GWAS candidate genes for association with 1,899 cis-SNPs. Significant associations were validated in a subset of TCX samples using next-generation RNA sequencing (RNAseq). We identified strong associations of brain CR1, HLA-DRB1, and PILRB levels with LOAD GWAS index SNPs. We also detected other strong cis-SNPs for LOAD candidate genes MEF2C, ZCWPW1, and SLC24A4. MEF2C and SLC24A4, but not ZCWPW1 cis-SNPs, also associate with LOAD risk, independent of the index SNPs. The TCX expression associations could be validated with RNAseq for CR1, HLA-DRB1, ZCWPW1, and SLC24A4. Our results suggest that some LOAD GWAS variants mark brain regulatory loci, nominate genes under regulation by LOAD risk variants, and annotate these variants for their brain regulatory effects."	"Genome-wide epigenetic analysis of MEF2A and MEF2C transcription factors in mouse cortical neurons. The transcription factors of the myocyte enhancer factor 2 family (MEF2 A-D) are highly expressed in the brain and play a key role in neuronal survival/apoptosis, differentiation and synaptic plasticity. However, the precise genome-wide mapping of different members of the family has not yet been fully elucidated. Here, we report the comparative analysis of MEF2A and MEF2C genome-wide mapping in mouse cortical neurons by ChIP-seq, a powerful approach to elucidate the genomic functions of transcription factors and to identify their transcriptional targets. Our analysis reveals that MEF2A and MEF2C each orchestrate similar epigenomic programs mainly through the binding of enhancer regulatory elements in proximity of target genes involved in neuronal plasticity and calcium signaling. We highlight the differences in the enhancer networks and molecular pathways regulated by MEF2A and MEF2C, which might be determined by the combinatorial action of different transcription factors. "	"Rett-like phenotypes: expanding the genetic heterogeneity to the KCNA2 gene and first familial case of CDKL5-related disease. Several genes have been implicated in Rett syndrome (RTT) in its typical and variant forms. We applied next-generation sequencing (NGS) to evaluate for mutations in known or new candidate genes in patients with variant forms of Rett or Rett-like phenotypes of unknown molecular aetiology. In the first step, we used NGS with a custom panel including MECP2, CDKL5, FOXG1, MEF2C and IQSEC2. In addition to a FOXG1 mutation in a patient with all core features of the congenital variant of RTT, we identified a missense (p.Ser240Thr) in CDKL5 in a patient who appeared to be seizure free. This missense was maternally inherited with opposite allele expression ratios in the proband and her mother. In the asymptomatic mother, the mutated copy of the CDKL5 gene was inactivated in 90% of blood cells. We also identified a premature stop codon (p.Arg926*) in IQSEC2 in a patient with a Rett-like phenotype. Finally, exome sequencing enabled us to characterize a heterozygous de novo missense (p.Val408Ala) in KCNA2 encoding the potassium channel Kv 1.2 in a girl with infantile-onset seizures variant of RTT. Our study expands the genetic heterogeneity of RTT and RTT-like phenotypes. Moreover, we report the first familial case of CDKL5-related disease."	"Specific gene expression patterns of 108 schizophrenia-associated loci in cortex. The latest genome-wide association study of schizophrenia identified 108 distinct genomic loci that contribute to schizophrenia. Brain development and function depend on the precise regulation of gene expression. The expression of many genes is differentially regulated across brain regions and developmental time points. We investigated the specific gene expression patterns arising from the 108 schizophrenia-associated loci using multiple publicly available databases and multiple regional brain datasets from developing and adult post-mortem human brains. The temporal-spatial expression analysis revealed that the genes in these loci were intensively enriched in the cortex during several developmental stages. These cortex-specific genes were particularly expressed in the fetal brain and adult neocortex."	"Characterization of the duck (Anas platyrhynchos) Rbm24 and Rbm38 genes and their expression profiles in myoblast and skeletal muscle tissues. RNA-binding motif proteins 24 (Rbm24) and 38 (Rbm38) are known to regulate genes expression in a post-transcriptional way. However, it remains unclear about the similarities and differences between Rbm24 and Rbm38 in terms of their sequence characteristics and expression profiles during myoblast differentiation and skeletal muscle development. In this study, we found that the coding domain sequences (CDSs) of duck Rbm24 and Rbm38 consisted of 678 and 648 nucleotides, respectively. Both of them contain a conserved RNA-recognition motif (RRM). Phylogenetic analysis showed that duck Rbm24 and Rbm38 were clustered with other Aves, nevertheless, avian Rbm24 was clustered with mammalian and reptilian Rbm24; avian Rbm38 was clustered with amphibian and reptilian Rbm38. Real-time PCR results exhibited that during embryonic stage, Rbm24 and Rbm38 in leg and breast muscle increased to their peak (P&lt;0.01) at same time. During postnatal stage, the peak of Rbm24 and Rbm38 in leg were found at W5, while the peak of them in breast was found at W6 (P&lt;0.01). Moreover, a relative high value of Rbm24 and Rbm38 in leg was found at W1 and W3, respectively. Additionally, both Rbm24 and Rbm38 expressed at each stage of duck myoblast differentiation, however, Rbm24 shared similar expression profiles with MEF2C, and Rbm38 shared similar expression profiles with MyoG and MEF2A. Furthermore, hierarchical clustering results were consistent with the preceding findings. These results serve as a foundation for further investigations about similar and different effects of Rbm24 and Rbm38 on myoblast differentiation and skeletal muscle development. "	"[Identification of the Disease-Associated Genes in Periodontitis Using the Co-expression Network]. The aim of this study was to investigate the disease-associated genes in periodontitis. In the present experiments, the topological analysis of the differential co-expression network was proposed. Using the GSE16134 dataset downloaded from the European Molecular Biology Laboratory-European Bioinformatics Institute, a co-expression network was constructed after the differentially expressed genes (DEGs) were identified between the diseased (242 samples) and healthy (69 samples) gingival tissues from periodontitis patients. The topological properties of the modules obtained from the network as well as an analysis of transcription factors (TFs) were used to determine the disease-associated genes. The gene ontology and pathway enrichment analysis was performed to investigate the underlying mechanisms of these disease related genes. A total of 524 DEGs, including 19 TFs were identified and a co-expression network with 2569 edges was obtained. Among the 7 modules gained in the network, the TFs (ZNF215, ZEN273, NFAT5, TRPS1, MEF2C and FLI1) were considered to be important in periodontitis. The functional and pathway enrichment analysis revealed that the DEGs were highly involved in the immune system. The co-expression network analysis and TFs identified in periodontitis may provide opportunities for biomarker development and novel insights into the therapeutics of periodontitis."	"Time course analysis based on gene expression profile and identification of target molecules for colorectal cancer. The study aimed to investigate the expression changes of genes in colorectal cancer (CRC) and screen the potential molecular targets. The GSE37178 of mRNA expression profile including the CRC samples extracted by surgical resection and the paired normal samples was downloaded from Gene Expression Omnibus database. The genes whose expressions were changed at four different time points were screened and clustered using Mfuzz package. Then DAVID was used to perform the functional and pathway enrichment analysis for genes in different clusters. The protein-protein interaction (PPI) networks were constructed for genes in the clusters according to the STRING database. Furthermore, the related-transcription factors (TFs) and microRNAs (miRNAs) were obtained based on the resources in databases and then were combined with the PPI networks in each cluster to construct the integrated network containing genes, TFs and miRNAs. As a result, 314 genes were clustered into four groups. Genes in cluster 1 and cluster 2 showed a decreasing trend, while genes in cluster 3 and cluster 4 presented an increasing trend. Then 18 TFs (e.g., TCF4, MEF2C and FOS) and 18 miRNAs (e.g., miR-382, miR-217, miR-1184, miR-326 and miR-330-5p) were identified and three integrated networks for cluster 1, 3, and 4 were constructed. The results implied that expression of PITX2, VSNL1, TCF4, MEF2C and FOS are time-related and associated with CRC development, accompanied by several miRNAs including miR-382, miR-217, miR-21, miR-1184, miR-326 and miR-330-5p. All of them might be used as potential diagnostic or therapeutic target molecules for CRC."	"Gene-based aggregate SNP associations between candidate AD genes and cognitive decline. Single nucleotide polymorphisms (SNPs) in and near ABCA7, BIN1, CASS4, CD2AP, CD33, CELF1, CLU, complement receptor 1 (CR1), EPHA1, EXOC3L2, FERMT2, HLA cluster (DRB5-DQA), INPP5D, MEF2C, MS4A cluster (MS4A3-MS4A6E), NME8, PICALM, PTK2B, SLC24A4, SORL1, and ZCWPW1 have been associated with Alzheimer's disease (AD) in large meta-analyses. We aimed to determine whether established AD-associated genes are associated with longitudinal cognitive decline by examining aggregate variation across these gene regions. In two single-sex cohorts of older, community-dwelling adults, we examined the association between SNPs in previously implicated gene regions and cognitive decline (age-adjusted person-specific cognitive slopes) using a Sequence Kernel Association Test (SKAT). In regions which showed aggregate significance, we examined the univariate association between individual SNPs in the region and cognitive decline. Only two of the original AD-associated SNPs were significantly associated with cognitive decline in our cohorts. We identified significant aggregate-level associations between cognitive decline and the gene regions BIN1, CD33, CELF1, CR1, HLA cluster, and MEF2C in the all-female cohort and significant associations with ABCA7, HLA cluster, MS4A6E, PICALM, PTK2B, SLC24A4, and SORL1 in the all-male cohort. We also identified a block of eight correlated SNPs in CD33 and several blocks of correlated SNPs in CELF1 that were significantly associated with cognitive decline in univariate analysis in the all-female cohort. "	"Exogenous expression of homeoprotein EGAM1N prevents in vitro cardiomyogenesis by impairing expression of T and Nkx2.5, but not Mef2c, in mouse embryonic stem cells. Generation of multiple cell types from embryonic stem (ES) cells and induced pluripotent stem cells is crucial to provide materials for regenerative medicine. EGAM1N has been found in preimplantation mouse embryos and mouse ES cells as a functionally unclassified homeoprotein. Recently, we reported that expression of EGAM1N suppressed the in vitro differentiation of ES cells into progenitor cells that arise in early embryogenesis. To clarify the effect of EGAM1N on terminal differentiation, embryoid bodies (EBs) were prepared from ES cells expressing exogenous Egam1n. In EBs expressing Egam1n, cardiomyogenesis was inhibited by impairing the expression of crucial transcription factors Brachyury T and Nkx2.5 in the generation of mesoderm and cardiomyocytes, respectively. Expression levels of Mef2c, another crucial gene for cardiomyogenesis, were unaffected. Conversely, the expression levels of Gata6 and Plat, markers for the primitive endoderm lineage, and Cdx2, a marker for the trophectoderm lineage, were increased. These results suggested that certain cell populations in EBs expressing Egam1n preferentially differentiated to such cell lineages. Our results suggest that EGAM1N not only affects the generation of progenitor cells during early embryogenesis, but also the progression of terminal differentiation, such as cardiomyogenesis, in mouse ES cells."	"Changes in gene methylation patterns in neonatal murine hearts: Implications for the regenerative potential. The neonatal murine heart is able to regenerate after severe injury; this capacity however, quickly diminishes and it is lost within the first week of life. DNA methylation is an epigenetic mechanism which plays a crucial role in development and gene expression regulation. Under investigation here are the changes in DNA methylation and gene expression patterns which accompany the loss of regenerative potential. The MeDIP-chip (methylated DNA immunoprecipitation microarray) approach was used in order to compare global DNA methylation profiles in whole murine hearts at day 1, 7, 14 and 56 complemented with microarray transcriptome profiling. We found that the methylome transition from day 1 to day 7 is characterized by the excess of genomic regions which gain over those that lose DNA methylation. A number of these changes were retained until adulthood. The promoter genomic regions exhibiting increased DNA methylation at day 7 as compared to day 1 are significantly enriched in the genes critical for heart maturation and muscle development. Also, the promoter genomic regions showing an increase in DNA methylation at day 7 relative to day 1 are significantly enriched with a number of transcription factors binding motifs including those of Mfsd6l, Mef2c, Meis3, Tead4, and Runx1. The results indicate that the extensive alterations in DNA methylation patterns along the development of neonatal murine hearts are likely to contribute to the decline of regenerative capabilities observed shortly after birth. This conclusion is supported by the evidence that an increase in DNA methylation in the neonatal murine heart from day 1 to day 7 occurs in the promoter regions of genes playing important roles in cardiovascular system development."	"Evaluating the Safety of Retroviral Vectors Based on Insertional Oncogene Activation and Blocked Differentiation in Cultured Thymocytes. Insertional oncogenesis due to retroviral (RV) vector integration has caused recurrent leukemia in multiple gene therapy trials, predominantly due to vector integration effects at the LMO2 locus. While currently available preclinical safety models have been used for evaluating vector safety, none have predicted or reproduced the recurrent LMO2 integrations seen in previous X-linked severe combined immunodeficiency (X-SCID) and Wiskott-Aldrich clinical gene therapy trials. We now describe a new assay for assessing vector safety that recapitulates naturally occurring insertions into Lmo2 and other T-cell proto-oncogenes leading to a preleukemic developmental arrest in primary murine thymocytes cultured in vitro. This assay was used to compare the relative oncogenic potential of a variety of gamma-RV and lentiviral vectors and to assess the risk conferred by various transcriptional elements contained in these genomes. Gamma-RV vectors that contained full viral long-terminal repeats were most prone to causing double negative 2 (DN2) arrest and led to repeated cases of Lmo2 pathway activation, while lentiviral vectors containing these same elements were significantly less prone to activate proto-oncogenes or cause DN2 arrest. This work provides a new preclinical assay that is especially relevant for assessing safety in SCID disorders and provides a new tool for designing safer RV vectors. "	"Bmi1 Is a Key Epigenetic Barrier to Direct Cardiac Reprogramming. Direct reprogramming of induced cardiomyocytes (iCMs) suffers from low efficiency and requires extensive epigenetic repatterning, although the underlying mechanisms are largely unknown. To address these issues, we screened for epigenetic regulators of iCM reprogramming and found that reducing levels of the polycomb complex gene Bmi1 significantly enhanced induction of beating iCMs from neonatal and adult mouse fibroblasts. The inhibitory role of Bmi1 in iCM reprogramming is mediated through direct interactions with regulatory regions of cardiogenic genes, rather than regulation of cell proliferation. Reduced Bmi1 expression corresponded with increased levels of the active histone mark H3K4me3 and reduced levels of repressive H2AK119ub at cardiogenic loci, and de-repression of cardiogenic gene expression during iCM conversion. Furthermore, Bmi1 deletion could substitute for Gata4 during iCM reprogramming. Thus, Bmi1 acts as a critical epigenetic barrier to iCM production. Bypassing this barrier simplifies iCM generation and increases yield, potentially streamlining iCM production for therapeutic purposes."	"Computational Characterization of Osteoporosis Associated SNPs and Genes Identified by Genome-Wide Association Studies. Genome-wide association studies (GWASs) have revealed many SNPs and genes associated with osteoporosis. However, influence of these SNPs and genes on the predisposition to osteoporosis is not fully understood. We aimed to identify osteoporosis GWASs-associated SNPs potentially influencing the binding affinity of transcription factors and miRNAs, and reveal enrichment signaling pathway and &quot;hub&quot; genes of osteoporosis GWAS-associated genes. We conducted multiple computational analyses to explore function and mechanisms of osteoporosis GWAS-associated SNPs and genes, including SNP conservation analysis and functional annotation (influence of SNPs on transcription factors and miRNA binding), gene ontology analysis, pathway analysis and protein-protein interaction analysis. Our results suggested that a number of SNPs potentially influence the binding affinity of transcription factors (NFATC2, MEF2C, SOX9, RUNX2, ESR2, FOXA1 and STAT3) and miRNAs. Osteoporosis GWASs-associated genes showed enrichment of Wnt signaling pathway, basal cell carcinoma and Hedgehog signaling pathway. Highly interconnected &quot;hub&quot; genes revealed by interaction network analysis are RUNX2, SP7, TNFRSF11B, LRP5, DKK1, ESR1 and SOST. Our results provided the targets for further experimental assessment and further insight on osteoporosis pathophysiology."	"Endothelial Aquaporin-1 (AQP1) Expression Is Regulated by Transcription Factor Mef2c. Aquaporin 1 (AQP1) is expressed in most microvasculature endothelial cells and forms water channels that play major roles in a variety of physiologic processes. This study aimed to delineate the transcriptional regulation of AQP1 by Mef2c in endothelial cells. Mef2c cooperated with Sp1 to activate human AQP1 transcription by binding to its proximal promoter in human umbilical cord vein endothelial cells (HUVEC). Over-expression of Mef2c, Sp1, or Mef2c/Sp1 increased HUVEC migration and tube-forming ability, which can be abolished AQP1 knockdown. These data indicate that AQP1 is a direct target of Mef2c in regulating angiogenesis and vasculogenesis of endothelial cells. "	"MEF2D and MEF2C pathways disruption in sporadic and familial ALS patients. Amyotrophic lateral sclerosis (ALS) is a progressive neuro-muscular disease characterized by motor neuron loss. MEF2D and MEF2C are members of the myocyte enhancer factor 2 family (MEF2), a group of transcription factors playing crucial roles both in muscle and in neural development and maintenance; for this reason, a possible involvement of MEF2 in ALS context has been investigated. Since the transcriptional activity of each tissue specific MEF2 isoform is conserved in different cell types, we chose to assess our parameters in an easily accessible and widely used experimental tool such as peripheral blood mononuclear cells (PBMCs) obtained from 30 sporadic ALS patients (sALS), 9 ALS patients with mutations in SOD1 gene (SOD1+) and 30 healthy controls. Gene expression analysis showed a significant up-regulation of MEF2D and MEF2C mRNA levels in both sporadic and SOD1+ ALS patients. Although protein levels were unchanged, a different pattern of distribution for MEF2D and MEF2C proteins was evidenced by immunohistochemistry in patients. A significant down-regulation of MEF2 downstream targets BDNF, KLF6 and RUFY3 was reported in both sALS and SOD1+ ALS patients, consistent with an altered MEF2 transcriptional activity. Furthermore, the potential regulatory effect of histone deacetylase 4 and 5 (HDAC4 and HDAC5) on MEF2D and MEF2C activity was also investigated. We found that MEF2D and HDAC4 colocalize in PBMC nuclei, while HDAC5 was localized in the cytoplasm. However, the unchanged HDACs localization and protein levels between sALS and controls seem to exclude their involvement in MEF2 altered function. In conclusion, our results show a systemic alteration of MEF2D and MEF2C pathways in both sporadic and SOD1+ ALS patients, underlying a possible common feature between the sporadic and the familial form of disease. Although further analyses in other neuromuscular diseases are needed to determine the specificity of changes in these pathways to ALS, measuring MEF2 alterations in accessible biofluids may be useful as biomarkers for disease diagnosis and progression."	"Six Novel Loci Associated with Circulating VEGF Levels Identified by a Meta-analysis of Genome-Wide Association Studies. Vascular endothelial growth factor (VEGF) is an angiogenic and neurotrophic factor, secreted by endothelial cells, known to impact various physiological and disease processes from cancer to cardiovascular disease and to be pharmacologically modifiable. We sought to identify novel loci associated with circulating VEGF levels through a genome-wide association meta-analysis combining data from European-ancestry individuals and using a dense variant map from 1000 genomes imputation panel. Six discovery cohorts including 13,312 samples were analyzed, followed by in-silico and de-novo replication studies including an additional 2,800 individuals. A total of 10 genome-wide significant variants were identified at 7 loci. Four were novel loci (5q14.3, 10q21.3, 16q24.2 and 18q22.3) and the leading variants at these loci were rs114694170 (MEF2C, P = 6.79 x 10(-13)), rs74506613 (JMJD1C, P = 1.17 x 10(-19)), rs4782371 (ZFPM1, P = 1.59 x 10(-9)) and rs2639990 (ZADH2, P = 1.72 x 10(-8)), respectively. We also identified two new independent variants (rs34528081, VEGFA, P = 1.52 x 10(-18); rs7043199, VLDLR-AS1, P = 5.12 x 10(-14)) at the 3 previously identified loci and strengthened the evidence for the four previously identified SNPs (rs6921438, LOC100132354, P = 7.39 x 10(-1467); rs1740073, C6orf223, P = 2.34 x 10(-17); rs6993770, ZFPM2, P = 2.44 x 10(-60); rs2375981, KCNV2, P = 1.48 x 10(-100)). These variants collectively explained up to 52% of the VEGF phenotypic variance. We explored biological links between genes in the associated loci using Ingenuity Pathway Analysis that emphasized their roles in embryonic development and function. Gene set enrichment analysis identified the ERK5 pathway as enriched in genes containing VEGF associated variants. eQTL analysis showed, in three of the identified regions, variants acting as both cis and trans eQTLs for multiple genes. Most of these genes, as well as some of those in the associated loci, were involved in platelet biogenesis and functionality, suggesting the importance of this process in regulation of VEGF levels. This work also provided new insights into the involvement of genes implicated in various angiogenesis related pathologies in determining circulating VEGF levels. The understanding of the molecular mechanisms by which the identified genes affect circulating VEGF levels could be important in the development of novel VEGF-related therapies for such diseases."	"MEF2C and SOCS2 in stemness regulation. NA"	"A Shh coreceptor Cdo is required for efficient cardiomyogenesis of pluripotent stem cells. Sonic hedgehog (Shh) signaling plays an important role for early heart development, such as heart looping and cardiomyogenesis of pluripotent stem cells. A multifunctional receptor Cdo functions as a Shh coreceptor together with Boc and Gas1 to activate Shh signaling and these coreceptors seem to play compensatory roles in early heart development. Thus in this study, we examined the role of Cdo in cardiomyogenesis by utilizing an in vitro differentiation of pluripotent stem cells. Here we show that Cdo is required for efficient cardiomyogenesis of pluripotent stem cells by activation of Shh signaling. Cdo is induced concurrently with Shh signaling activation upon induction of cardiomyogenesis of P19 embryonal carcinoma (EC) cells. Cdo-depleted P19 EC and Cdo(-/-) mouse embryonic stem (ES) cells display decreased expression of key cardiac regulators, including Gata4, Nkx2.5 and Mef2c and this decrease coincides with reduced Shh signaling activities. Furthermore Cdo deficiency causes a stark reduction in formation of mature contractile cardiomyocytes. This defect in cardiomyogenesis is overcome by reactivation of Shh signaling at the early specification stage of cardiomyogenesis. The Shh agonist treatment restores differentiation capacities of Cdo-deficient ES cells into contractile cardiomyocytes by recovering both the expression of early cardiac regulators and structural genes such as cardiac troponin T and Connexin 43. Therefore Cdo is required for efficient cardiomyogenesis of pluripotent stem cells and an excellent target to improve the differentiation potential of stem cells for generation of transplantable cells to treat cardiomyopathies."	"MEF2C and EBF1 Co-regulate B Cell-Specific Transcription. Hematopoietic stem cells are capable of self-renewal or differentiation along three main lineages: myeloid, erythroid, and lymphoid. One of the earliest lineage decisions for blood progenitor cells is whether to adopt the lymphoid or myeloid fate. Previous work had shown that myocyte enhancer factor 2C (MEF2C) is indispensable for the lymphoid fate decision, yet the specific mechanism of action remained unclear. Here, we have identified early B cell factor-1 (EBF1) as a co-regulator of gene expression with MEF2C. A genome-wide survey of MEF2C and EBF1 binding sites identified a subset of B cell-specific genes that they target. We also determined that the p38 MAPK pathway activates MEF2C to drive B cell differentiation. Mef2c knockout mice showed reduced B lymphoid-specific gene expression as well as increased myeloid gene expression, consistent with MEF2C's role as a lineage fate regulator. This is further supported by interaction between MEF2C and the histone deacetylase, HDAC7, revealing a likely mechanism to repress the myeloid transcription program. This study thus elucidates both activation and repression mechanisms, identifies regulatory partners, and downstream targets by which MEF2C regulates lymphoid-specific differentiation. "	"MicroRNA-23a reduces slow myosin heavy chain isoforms composition through myocyte enhancer factor 2C (MEF2C) and potentially influences meat quality. MicroRNAs (miRNAs) are non-coding small RNAs that participate in the regulation of a variety of biological processes. Muscle fiber types were very important to meat quality traits, however, the molecular mechanism by which miRNAs regulate the muscle fiber type composition is not fully understood. The aim of this study was to investigate whether miRNA-23a can affect muscle fiber type composition. Luciferase reporter assays proved that miRNA-23a directly targets the 3' untranslated region (UTRs) of MEF2c. Overexpression of miRNA-23a significantly suppressed the expression of MEF2c both in mRNA and protein levels, thus caused down-regulation of the expression of some key downstream genes of MEF2c (PGC1-α, NRF1 and mtTFA). More interestingly, overexpression of miRNA-23a significantly restrained the myogenic differentiation and decreased the ratio of slow myosin heavy chain in myoblasts (p&lt;0.05). Our findings hinted a novel role of miRNA-23a in the epigenetic regulation of meat quality via decreasing the ratio of slow myosin heavy chain isoforms. "	"Prenatal detection of 5q14.3 duplication including MEF2C and brain phenotype. The 5q14.3 duplication is a rare condition comprising speech and developmental delay, microcephaly, and mild ventriculomegaly. The region 5q14.3 contains several genes but the predominant role for the onset of the neurodevelopmental phenotype has been attributed to MEF2C. We describe the prenatal identification of 5q14.3 duplication, including MEF2C, in a monochorionic twin pregnancy with corpus callosum anomalies, confirmed by autopsy. To the best of our knowledge, this cerebral finding has been observed for the first time in 5q14.3 duplication patients, possibly widening the neurological picture of this scarcely known syndrome. A pathogenetic role of MEF2C overexpression in brain development may be assumed, but further studies are needed."	"RBM4a-regulated splicing cascade modulates the differentiation and metabolic activities of brown adipocytes. RNA-binding motif protein 4a (RBM4a) reportedly reprograms splicing profiles of the insulin receptor (IR) and myocyte enhancer factor 2C (MEF2C) genes, facilitating the differentiation of brown adipocytes. Using an RNA-sequencing analysis, we first compared the gene expressing profiles between wild-type and RBM4a(-/-) brown adipocytes. The ablation of RBM4a led to increases in the PTBP1, PTBP2 (nPTB), and Nova1 proteins, whereas elevated RBM4a reduced the expression of PTBP1 and PTBP2 proteins in brown adipocytes through an alternative splicing-coupled nonsense-mediated decay mechanism. Subsequently, RBM4a indirectly shortened the half-life of the Nova1 transcript which was comparatively stable in the presence of PTBP2. RBM4a diminished the influence of PTBP2 in adipogenic development by reprogramming the splicing profiles of the FGFR2 and PKM genes. These results constitute a mechanistic understanding of the RBM4a-modulated splicing cascade during the brown adipogenesis. "	"MicroRNA-27b Regulates Mitochondria Biogenesis in Myocytes. MicroRNAs (miRNAs) are small, non-coding RNAs that affect the post-transcriptional regulation of various biological pathways. To date, it is not fully understood how miRNAs regulate mitochondrial biogenesis. This study aimed at the identification of the role of miRNA-27b in mitochondria biogenesis. The mitochondria content in C2C12 cells was significantly increased during myogenic differentiation and accompanied by a marked decrease of miRNA-27b expression. Furthermore, the expression of the predicted target gene of miRNA-27b, forkhead box j3 (Foxj3), was also increased during myogenic differentiation. Luciferase activity assays confirmed that miRNA-27b directly targets the 3'-untranslated region (3'-UTR) of Foxj3. Overexpression of miRNA-27b provoked a decrease of mitochondria content and diminished expression of related mitochondrial genes and Foxj3 both at mRNA and protein levels. The expression levels of downstream genes of Foxj3, such as Mef2c, PGC1α, NRF1 and mtTFA, were also decreased in C2C12 cells upon overexpression of miRNA-27b. These results suggested that miRNA-27b may affect mitochondria biogenesis by down-regulation of Foxj3 during myocyte differentiation. "	"Calreticulin secures calcium-dependent nuclear pore competency required for cardiogenesis. Calreticulin deficiency causes myocardial developmental defects that culminate in an embryonic lethal phenotype. Recent studies have linked loss of this calcium binding chaperone to failure in myofibrillogenesis through an as yet undefined mechanism. The purpose of the present study was to identify cellular processes corrupted by calreticulin deficiency that precipitate dysregulation of cardiac myofibrillogenesis related to acquisition of cardiac phenotype. In an embryonic stem cell knockout model, calreticulin deficit (crt(-/-)) compromised nucleocytoplasmic transport of nuclear localization signal-dependent and independent pathways, disrupting nuclear import of the cardiac transcription factor MEF2C. The expression of nucleoporins and associated nuclear transport proteins in derived crt(-/-) cardiomyocytes revealed an abnormal nuclear pore complex (NPC) configuration. Altered protein content in crt(-/-) cells resulted in remodeled NPC architecture that caused decreased pore diameter and diminished probability of central channel occupancy versus wild type counterparts. Ionophore treatment of impaired calcium handling in crt(-/-) cells corrected nuclear pore microarchitecture and rescued nuclear import resulting in normalized myofibrillogenesis. Thus, calreticulin deficiency alters nuclear pore function and structure, impeding myofibrillogenesis in nascent cardiomyocytes through a calcium dependent mechanism. This essential role of calreticulin in nucleocytoplasmic communication competency ties its regulatory action with proficiency of cardiac myofibrillogenesis essential for proper cardiac development. "	"Foxc1 Regulates Early Cardiomyogenesis and Functional Properties of Embryonic Stem Cell Derived Cardiomyocytes. Embryonic Stem Cells (ESCs) hold great potential for regeneration of damaged myocardium, however the molecular circuitry that guides ESC differentiation into cardiomyocytes remains poorly understood. This is exemplified by the elusive role of the transcription factor, Foxc1, during cardiac development. The only known Foxc1 target during heart development is Tbx1. Because Foxc1 null mice contain heart mutations that are far more severe than Tbx1 null mice, it is likely that Foxc1 has additional regulatory roles during heart development. The goal of our study was to test whether Foxc1 is critical for ESC differentiation into functional cardiomyocytes through proper regulation of specific downstream gene networks. Converging evidence from Foxc1 deficient and overexpression ESC models reveals a close relationship between Foxc1 levels and early cardiomyogenic factors Isl1, Mef2c, and Nkx2.5 and also the production of functional cardiomyocytes. We show Foxc1 regulates early cardiomyogenesis during a specific window of differentiation, D4-D6. Through whole transcriptome RNA-sequencing analysis, we report pathways regulated by Foxc1 involved in cardiac function including actin cytoskeleton, cell adhesion, tight and gap junctions, and calcium signaling. Our data indicate a novel Foxc1 direct gene target, Myh7, which encodes the predominant myosin heavy chain isoform, MHCβ, expressed during cardiac development. These data lead us to conclude that Foxc1 regulates both early cardiomyogenesis and the functional properties of ESC-derived cardiomyocytes. Our findings shed light on the molecular circuitry governing cardiomyogenesis that may lead to the development of better translational strategies for the use of pluripotent stem cells in regenerative medicine towards repairing damaged myocardium. Stem Cells 2016;34:1487-1500."	"MEF2C regulates outflow tract alignment and transcriptional control of Tdgf1. Congenital heart defects are the most common birth defects in humans, and those that affect the proper alignment of the outflow tracts and septation of the ventricles are a highly significant cause of morbidity and mortality in infants. A late differentiating population of cardiac progenitors, referred to as the anterior second heart field (AHF), gives rise to the outflow tract and the majority of the right ventricle and provides an embryological context for understanding cardiac outflow tract alignment and membranous ventricular septal defects. However, the transcriptional pathways controlling AHF development and their roles in congenital heart defects remain incompletely elucidated. Here, we inactivated the gene encoding the transcription factor MEF2C in the AHF in mice. Loss of Mef2c function in the AHF results in a spectrum of outflow tract alignment defects ranging from overriding aorta to double-outlet right ventricle and dextro-transposition of the great arteries. We identify Tdgf1, which encodes a Nodal co-receptor (also known as Cripto), as a direct transcriptional target of MEF2C in the outflow tract via an AHF-restricted Tdgf1 enhancer. Importantly, both the MEF2C and TDGF1 genes are associated with congenital heart defects in humans. Thus, these studies establish a direct transcriptional pathway between the core cardiac transcription factor MEF2C and the human congenital heart disease gene TDGF1. Moreover, we found a range of outflow tract alignment defects resulting from a single genetic lesion, supporting the idea that AHF-derived outflow tract alignment defects may constitute an embryological spectrum rather than distinct anomalies. "	"Genome-wide Association Study of Platelet Count Identifies Ancestry-Specific Loci in Hispanic/Latino Americans. Platelets play an essential role in hemostasis and thrombosis. We performed a genome-wide association study of platelet count in 12,491 participants of the Hispanic Community Health Study/Study of Latinos by using a mixed-model method that accounts for admixture and family relationships. We discovered and replicated associations with five genes (ACTN1, ETV7, GABBR1-MOG, MEF2C, and ZBTB9-BAK1). Our strongest association was with Amerindian-specific variant rs117672662 (p value = 1.16 × 10(-28)) in ACTN1, a gene implicated in congenital macrothrombocytopenia. rs117672662 exhibited allelic differences in transcriptional activity and protein binding in hematopoietic cells. Our results underscore the value of diverse populations to extend insights into the allelic architecture of complex traits. "	"Activated Integrin-Linked Kinase Negatively Regulates Muscle Cell Enhancement Factor 2C in C2C12 Cells. Our previous study reported that muscle cell enhancement factor 2C (MEF2C) was fully activated after inhibition of the phosphorylation activity of integrin-linked kinase (ILK) in the skeletal muscle cells of goats. It enhanced the binding of promoter or enhancer of transcription factor related to proliferation of muscle cells and then regulated the expression of these genes. In the present investigation, we explored whether ILK activation depended on PI3K to regulate the phosphorylation and transcriptional activity of MEF2C during C2C12 cell proliferation. We inhibited PI3K activity in C2C12 with LY294002 and then found that ILK phosphorylation levels and MEF2C phosphorylation were decreased and that MCK mRNA expression was suppressed significantly. After inhibiting ILK phosphorylation activity with Cpd22 and ILK-shRNA, we found MEF2C phosphorylation activity and MCK mRNA expression were increased extremely significantly. In the presence of Cpd22, PI3K activity inhibition increased MEF2C phosphorylation and MCK mRNA expression indistinctively. We conclude that ILK negatively and independently of PI3K regulated MEF2C phosphorylation activity and MCK mRNA expression in C2C12 cells. The results provide new ideas for the study of classical signaling pathway of PI3K-ILK-related proteins and transcription factors. "	"Apelin: an endogenous peptide essential for cardiomyogenic differentiation of mesenchymal stem cells via activating extracellular signal-regulated kinase 1/2 and 5. Growing evidence has shown that apelin/APJ system functions as a critical mediator of cardiac development as well as cardiovascular function. Here, we investigated the role of apelin in the cardiomyogenic differentiation of mesenchymal stem cells derived from Wharton's jelly of human umbilical cord in vitro. In this research, we used RNA interference methodology and gene transfection technique to regulate the expression of apelin in Wharton's jelly-derived mesenchymal stem cells and induced cells with a effective cardiac differentiation protocol including 5-azacytidine and bFGF. Four weeks after induction, induced cells assumed a stick-like morphology and myotube-like structures except apelin-silenced cells and the control group. The silencing expression of apelin in Wharton's jelly-derived mesenchymal stem cells decreased the expression of several critical cardiac progenitor transcription factors (Mesp1, Mef2c, NKX2.5) and cardiac phenotypes (cardiac α-actin, β-MHC, cTnT, and connexin-43). Meanwhile, endogenous compensation of apelin contributed to differentiating into cells with characteristics of cardiomyocytes in vitro. Further experiment showed that exogenous apelin peptide rescued the cardiomyogenic differentiation of apelin-silenced mesenchymal stem cells in the early stage (1-4 days) of induction. Remarkably, our experiment indicated that apelin up-regulated cardiac specific genes in Wharton's jelly-derived mesenchymal stem cells via activating extracellular signal-regulated kinase (ERK) 1/2 and 5. "	"5q14.3 deletion neurocutaneous syndrome: Contiguous gene syndrome caused by simultaneous deletion of RASA1 and MEF2C: A progressive disease. We report the case of a young girl who was presented with complex clinical symptoms caused by the deletion of contiguous genes: RASA1 and MEF2C, located on chromosome 5q14.3. Specifically, the diagnosis of her skin disorder and vascular malformations involving central nervous system is consistent with a RASopathy. The child's neurological manifestations are observed in most patients suffering from 5q14.3 by deletion or mutation of the MEF2C gene. A review of the literature allowed us to conclude that the contiguous deletion of genes RASA1 and MEF2C fulfills the criteria for the diagnosis of a Neurocutaneous syndrome as proposed by Carr et al. [2011]. We also assessed the penetrance of RASA1 and clinical manifestations of MEF2C according to the type of deletion. This child described presents the complete symptomatology of both deleted genes. We would also like to highlight the progression of the disorder."	"Hypoxia Enhances Direct Reprogramming of Mouse Fibroblasts to Cardiomyocyte-Like Cells. Recent work has shown that mouse and human fibroblasts can be reprogrammed to cardiomyocyte-like cells with a combination of transcription factors. Current research has focused on improving the efficiency and mechanisms for fibroblast reprogramming. Previously, it has been reported that hypoxia enhances fibroblast cell reprogramming to pluripotent stem cells. In this study, we observed that 6 h of hypoxic conditions (2% oxygen) on newborn mouse dermal fibroblasts can improve the efficiency of reprogramming to cardiomyocyte-like cells. Expression of cardiac-related genes and proteins increased at 4 weeks after transfer of three transcription factors (Gata4/Mef2c/Tbx5 [GMT]). However, beating cardiomyocyte cells were not detected. The epigenetic mechanism of hypoxia-induced fibroblast reprogramming to cardiomyocyte cells requires further study. "	"Three-Dimensional Cultures of Human Subcutaneous Adipose Tissue-Derived Progenitor Cells Based on RAD16-I Self-Assembling Peptide. The prolonged ischemia after myocardial infarction leads to a high degree of cardiomyocyte death, which leads to a reduction of normal heart function. Valuable lessons can be learnt from human myocardium and stem cell biology that would help scientists to develop new, effective, safe, and affordable regenerative therapies. In vivo models are of high interest, but their high complexity limits the possibility to analyze specific factors. In vitro models permit analyzing specific factors of tissue physiology or pathophysiology providing accurate approaches that may guide the creation of three-dimensional (3D) engineered cell aggregates. These systems provide a simplistic way to examine individual factors as compared to animal models, and better mimic the reality than 2D models. In this sense, the objective of this work is to better understand the behavior of a human mesenchymal stem cell-like cell line (subcutaneous adipose tissue-derived progenitor cells [subATDPCs], susceptible to be used in cell therapies) when they are embedded in the 3D environment provided by RAD16-I self-assembling peptide (SAP). Specifically, we study the effect in subATDPCs viability, morphology, proliferation, and protein and gene expression of matrix composition (i.e., RGD motif and heparin polysaccharide modifications) in RAD16-I matrix under different media conditions. Results demonstrated that the 3D environment provided by RAD16-I SAP is able to maintain subATDPCs in this new milieu and at the same time its cardiac commitment. Additionally, it has been observed that chemical induction can induce upregulation of cardiac markers, such as TBX5, MEF2C, ACTN1, and GJA1. Therefore, we propose this 3D model as a promising platform to analyze the effect of specific cues that can help improve cell performance for future cell therapy."	"Identifying the crosstalk of dysfunctional pathways mediated by lncRNAs in breast cancer subtypes. Crosstalk among abnormal pathways widely occurs in human cancer and generally leads to insensitivity to cancer treatment. How long non-coding RNAs (lncRNAs) participate in the regulation of an abnormal pathway crosstalk in human cancer is largely unknown. Here, we proposed a strategy that integrates mRNA and lncRNA expression profiles for systematic identification of lncRNA-mediated crosstalk among risk pathways in different breast cancer subtypes. We identified 12 to 44 crosstalking pathway pairs mediated by 28 to 49 lncRNAs in four breast cancer subtypes. An LncRNA-mediated crosstalking pathway network in each breast cancer subtype was then constructed. We observed a number of breast cancer subtype-specific crosstalks of risk pathways. These subtype-specific lncRNA-mediated pathway crosstalks largely determined subtype-selective functions. Notably, we observed that lncRNAs mediated the crosstalk of pathways by cooperating with known important protein-coding genes, which play core roles in the deterioration of breast cancer. And we also identified key lncRNAs contributing to the crosstalk network in each subtype. As an example, the low expression of LIFR-AS1 was associated with poor survival in LumB subtype, and its cooperated genes IL1R and TGFBR located at the most upstream of the MAPK signaling pathway shared a common cascade path (p38 MAPKs-MEF2C) that can result in proliferation, differentiation and apoptosis. In summary, we offer an effective way to characterize complex crosstalks mediated by lncRNAs in breast cancer subtypes, which can be applied to other diseases and provide useful information for understanding the pathogenesis of human cancer."	"Heme Oxygenase-1/Carbon Monoxide System and Embryonic Stem Cell Differentiation and Maturation into Cardiomyocytes. The differentiation of embryonic stem (ES) cells into energetically efficient cardiomyocytes contributes to functional cardiac repair and is envisioned to ameliorate progressive degenerative cardiac diseases. Advanced cell maturation strategies are therefore needed to create abundant mature cardiomyocytes. In this study, we tested whether the redox-sensitive heme oxygenase-1/carbon monoxide (HO-1/CO) system, operating through mitochondrial biogenesis, acts as a mechanism for ES cell differentiation and cardiomyocyte maturation. Manipulation of HO-1/CO to enhance mitochondrial biogenesis demonstrates a direct pathway to ES cell differentiation and maturation into beating cardiomyocytes that express adult structural markers. Targeted HO-1/CO interventions up- and downregulate specific cardiogenic transcription factors, transcription factor Gata4, homeobox protein Nkx-2.5, heart- and neural crest derivatives-expressed protein 1, and MEF2C. HO-1/CO overexpression increases cardiac gene expression for myosin regulatory light chain 2, atrial isoform, MLC2v, ANP, MHC-β, and sarcomere α-actinin and the major mitochondrial fusion regulators, mitofusin 2 and MICOS complex subunit Mic60. This promotes structural mitochondrial network expansion and maturation, thereby supporting energy provision for beating embryoid bodies. These effects are prevented by silencing HO-1 and by mitochondrial reactive oxygen species scavenging, while disruption of mitochondrial biogenesis and mitochondrial DNA depletion by loss of mitochondrial transcription factor A compromise infrastructure. This leads to failure of cardiomyocyte differentiation and maturation and contractile dysfunction. The capacity to augment cardiomyogenesis via a defined mitochondrial pathway has unique therapeutic potential for targeting ES cell maturation in cardiac disease. Our findings establish the HO-1/CO system and redox regulation of mitochondrial biogenesis as essential factors in ES cell differentiation as well as in the subsequent maturation of these cells into functional cardiac cells."	"MEF2C orthologues from zebrafish: Evolution, expression and promoter regulation. MEF2C is a crucial transcription factor for cranial neural crest cells development. An abnormal expression of this protein leads to severe abnormalities in craniofacial features. Recently, a human disease (MRD20) was described as a consequence of MEF2C haploinsufficiency. These patients show severe developmental delay, intellectual disability and dysmorphic features. Zebrafish presents two MEF2C orthologues, mef2ca and mef2cb. In this study we demonstrate a highly conserved pattern of chromosome localization for MEF2C between human and zebrafish, a similar protein sequence and tissue expression profile. We have focused our functional analysis on the zebrafish orthologue mef2cb. We identified three new exons through 5' RACE and described two new transcriptional start sites (TSS). These alternative TSS reflect the occurrence of two alternative promoters differentially regulated by nuclear factors related to craniofacial or neuronal development such as Sox9b, Sox10 and Runx2. We also predict that mef2cb gene may be post transcriptionally regulated by analysing the structure of its 5' UTR region, conserved throughout evolution. Our study provides new insights in MEF2C conservation and provides the first evidence of mef2cb regulation by both transcriptional and post transcriptional mechanisms, thus contributing to validate zebrafish as a good model for future studies concerning MEF2C dependent pathologies. "	"Cardiac Niche Influences the Direct Reprogramming of Canine Fibroblasts into Cardiomyocyte-Like Cells. The Duchenne and Becker muscular dystrophies are caused by mutation of dystrophin gene and primarily affect skeletal and cardiac muscles. Cardiac involvement in dystrophic GRMD dogs has been demonstrated by electrocardiographic studies with the onset of a progressive cardiomyopathy similar to the cardiac disease in DMD patients. In this respect, GRMD is a useful model to explore cardiac and skeletal muscle pathogenesis and for developing new therapeutic protocols. Here we describe a protocol to convert GRMD canine fibroblasts isolated from heart and skin into induced cardiac-like myocytes (ciCLMs). We used a mix of transcription factors (GATA4, HAND2, TBX5, and MEF2C), known to be able to differentiate mouse and human somatic cells into ciCLMs. Exogenous gene expression was obtained using four lentiviral vectors carrying transcription factor genes and different resistance genes. Our data demonstrate a direct switch from fibroblast into ciCLMs with no activation of early cardiac genes. ciCLMs were unable to contract spontaneously, suggesting, differently from mouse and human cells, an incomplete differentiation process. However, when transplanted in neonatal hearts of SCID/Beige mice, ciCLMs participate in cardiac myogenesis. "	"Common Viral Integration Sites Identified in Avian Leukosis Virus-Induced B-Cell Lymphomas. Avian leukosis virus (ALV) induces B-cell lymphoma and other neoplasms in chickens by integrating within or near cancer genes and perturbing their expression. Four genes--MYC, MYB, Mir-155, and TERT--have previously been identified as common integration sites in these virus-induced lymphomas and are thought to play a causal role in tumorigenesis. In this study, we employ high-throughput sequencing to identify additional genes driving tumorigenesis in ALV-induced B-cell lymphomas. In addition to the four genes implicated previously, we identify other genes as common integration sites, including TNFRSF1A, MEF2C, CTDSPL, TAB2, RUNX1, MLL5, CXorf57, and BACH2. We also analyze the genome-wide ALV integration landscape in vivo and find increased frequency of ALV integration near transcriptional start sites and within transcripts. Previous work has shown ALV prefers a weak consensus sequence for integration in cultured human cells. We confirm this consensus sequence for ALV integration in vivo in the chicken genome. Avian leukosis virus induces B-cell lymphomas in chickens. Earlier studies showed that ALV can induce tumors through insertional mutagenesis, and several genes have been implicated in the development of these tumors. In this study, we use high-throughput sequencing to reveal the genome-wide ALV integration landscape in ALV-induced B-cell lymphomas. We find elevated levels of ALV integration near transcription start sites and use common integration site analysis to greatly expand the number of genes implicated in the development of these tumors. Interestingly, we identify several genes targeted by viral insertions that have not been previously shown to be involved in cancer."	"Essential control of early B-cell development by Mef2 transcription factors. The sequential activation of distinct developmental gene networks governs the ultimate identity of a cell, but the mechanisms involved in initiating downstream programs are incompletely understood. The pre-B-cell receptor (pre-BCR) is an important checkpoint of B-cell development and is essential for a pre-B cell to traverse into an immature B cell. Here, we show that activation of myocyte enhancer factor 2 (Mef2) transcription factors (TFs) by the pre-BCR is necessary for initiating the subsequent genetic network. We demonstrate that B-cell development is blocked at the pre-B-cell stage in mice deficient for Mef2c and Mef2d TFs and that pre-BCR signaling enhances the transcriptional activity of Mef2c/d through phosphorylation by the Erk5 mitogen-activating kinase. This activation is instrumental in inducing Krüppel-like factor 2 and several immediate early genes of the AP1 and Egr family. Finally, we show that Mef2 proteins cooperate with the products of their target genes (Irf4 and Egr2) to induce secondary waves of transcriptional regulation. Our findings uncover a novel role for Mef2c/d in coordinating the transcriptional network that promotes early B-cell development. "	"Improved Generation of Induced Cardiomyocytes Using a Polycistronic Construct Expressing Optimal Ratio of Gata4, Mef2c and Tbx5. Direct conversion of cardiac fibroblasts (CFs) into induced cardiomyocytes (iCMs) holds great potential for regenerative medicine by offering alternative strategies for treatment of heart disease. This conversion has been achieved by forced expression of defined factors such as Gata4 (G), Mef2c (M) and Tbx5 (T). Traditionally, iCMs are generated by a cocktail of viruses expressing these individual factors. However, reprogramming efficiency is relatively low and most of the in vitro G,M,T-transduced fibroblasts do not become fully reprogrammed, making it difficult to study the reprogramming mechanisms. We recently have shown that the stoichiometry of G,M,T is crucial for efficient iCM reprogramming. An optimal stoichiometry of G,M,T with relative high level of M and low levels of G and T achieved by using our polycistronic MGT vector (hereafter referred to as MGT) significantly increased reprogramming efficiency and improved iCM quality in vitro. Here we provide a detailed description of the methodology used to generate iCMs with MGT construct from cardiac fibroblasts. Isolation of cardiac fibroblasts, generation of virus for reprogramming and evaluation of the reprogramming process are also included to provide a platform for efficient and reproducible generation of iCMs."	"Postnatal Loss of Mef2c Results in Dissociation of Effects on Synapse Number and Learning and Memory. Myocyte enhancer factor 2 (MEF2) transcription factors play critical roles in diverse cellular processes during central nervous system development. Studies attempting to address the role of MEF2 in brain have largely relied on overexpression of a constitutive MEF2 construct that impairs memory formation or knockdown of MEF2 function that increases spine numbers and enhances memory formation. Genetic deletion of individual MEF2 isoforms in brain during embryogenesis demonstrated that Mef2c loss negatively regulates spine numbers resulting in learning and memory deficits, possibly as a result of its essential role in development. To investigate MEF2C function in brain further, we genetically deleted Mef2c during postnatal development in mice. We characterized these conditional Mef2c knockout mice in an array of behavioral paradigms and examined the impact of postnatal loss of Mef2c on long-term potentiation. We observed increased spine numbers in hippocampus of the conditional Mef2c knockout mice. However, the postnatal loss of Mef2c did not impact learning and memory, long-term potentiation, or social and repetitive behaviors. Our findings demonstrate a critical role for MEF2C in the regulation of spine numbers with a dissociation of learning and memory, synaptic plasticity, and measures of autism-related behaviors in postnatal brain."	"Fibroblast Growth Factors and Vascular Endothelial Growth Factor Promote Cardiac Reprogramming under Defined Conditions. Fibroblasts can be directly reprogrammed into cardiomyocyte-like cells (iCMs) by overexpression of cardiac transcription factors, including Gata4, Mef2c, and Tbx5; however, this process is inefficient under serum-based culture conditions, in which conversion of partially reprogrammed cells into fully reprogrammed functional iCMs has been a major hurdle. Here, we report that a combination of fibroblast growth factor (FGF) 2, FGF10, and vascular endothelial growth factor (VEGF), termed FFV, promoted cardiac reprogramming under defined serum-free conditions, increasing spontaneously beating iCMs by 100-fold compared with those under conventional serum-based conditions. Mechanistically, FFV activated multiple cardiac transcriptional regulators and converted partially reprogrammed cells into functional iCMs through the p38 mitogen-activated protein kinase and phosphoinositol 3-kinase/AKT pathways. Moreover, FFV enabled cardiac reprogramming with only Mef2c and Tbx5 through the induction of cardiac reprogramming factors, including Gata4. Thus, defined culture conditions promoted the quality of cardiac reprogramming, and this finding provides new insight into the mechanism of cardiac reprogramming. "	"Genomic profiling screens small molecules of metastatic prostate carcinoma. The aim of the present study was to investigate the pathogenesis of metastatic prostate carcinoma, to find the metabolic pathways changed in the disease and to screen out the potential therapeutic drugs. GSE38241 was downloaded from Gene Expression Omnibus; the Geoquery package was applied to preprocessed expression profiling, and the differentially-expressed genes (DEGs) were selected with limma (linear regression model packages). Next, WikiPathways cluster analysis was performed for DEGs on a Gene Set Analysis Toolkit V2 platform, and DEGs with hypergeometric algorithms were calculated through gene set enrichment analysis. A total of 1,126 DEGs were identified between the normal prostate and metastatic prostate carcinoma. In addition, KPNA4, SYT1, PLCB1, SPRED1, MBNL2, RNF165, MEF2C, MBNL1, ZFP36L1 and CELF2, were found to be likely to play significant roles in the process of metastatic prostate carcinoma. The small molecules STOCK1N-35874 and 5182598 could simulate the state of normal cells well, while the small molecules MS-275 and quinostatin could simulate the state of metastatic prostate carcinoma cells. In conclusions, the small molecules STOCK1N-35874 and 5182598 were identified to be good potential therapeutic drugs for the treatment of metastatic prostate carcinoma, while the two small molecules MS-275 and quinostatin could cause metastatic prostate carcinoma."	"Cardiac-Derived Extracellular Matrix Enhances Cardiogenic Properties of Human Cardiac Progenitor Cells. The use of biomaterials has been demonstrated as a viable strategy to promote cell survival and cardiac repair. However, limitations on combinational cell-biomaterial therapies exist, as cellular behavior is influenced by the microenvironment and physical characteristics of the material. Among the different scaffolds employed for cardiac tissue engineering, a myocardial matrix hydrogel has been shown to promote cardiogenesis in murine cardiac progenitor cells (mCPCs) in vitro. In this study, we investigated the influence of the hydrogel on Sca-1-like human fetal and adult CPCs (fCPCs and aCPCs) when encapsulated in three-dimensional (3D) material in vitro. fCPCs encapsulated in the myocardial matrix showed an increase in the gene expression level of cardiac markers GATA-4 and MLC2v and the vascular marker vascular endothelial growth factor receptor 2 (VEGFR2) after 4 days in culture, and a significant increase in GATA-4 up to 1 week. Increased gene expression levels of Nkx2.5, MEF2c, VEGFR2, and CD31 were also observed when aCPCs were cultured in the matrix compared to collagen. Cell survival was sustained in both hydrogels up to 1 week in culture with the myocardial matrix capable of enhancing the expression of the proliferation marker Ki-67 after 4 days in culture. When encapsulated CPCs were treated with H2O2, an improved survival of the cells cultured in the myocardial matrix was observed. Finally, we evaluated the use of the myocardial matrix as hydrogel for in vivo cell transplantation and demonstrated that the gelation properties of the hydrogel are not influenced by the cells. In summary, we showed that the myocardial matrix hydrogel promotes human CPC cardiogenic potential, proliferation, and survival and is a favorable hydrogel for 3D in vitro culture. Furthermore, we demonstrated the in vivo applicability of the matrix as a potential vehicle for cell transplantation."	"Generation of Functional Human Cardiac Progenitor Cells by High-Efficiency Protein Transduction. The reprogramming of fibroblasts to induced pluripotent stem cells raises the possibility that somatic cells could be directly reprogrammed to cardiac progenitor cells (CPCs). The present study aimed to assess highly efficient protein-based approaches to reduce or eliminate the genetic manipulations to generate CPCs for cardiac regeneration therapy. A combination of QQ-reagent-modified Gata4, Hand2, Mef2c, and Tbx5 and three cytokines rapidly and efficiently reprogrammed human dermal fibroblasts (HDFs) into CPCs. This reprogramming process enriched trimethylated histone H3 lysine 4, monoacetylated histone H3 lysine 9, and Baf60c at the Nkx2.5 cardiac enhancer region by the chromatin immunoprecipitation quantitative polymerase chain reaction assay. Protein-induced CPCs transplanted into rat hearts after myocardial infarction improved cardiac function, and this was related to differentiation into cardiomyocyte-like cells. These findings demonstrate that the highly efficient protein-transduction method can directly reprogram HDFs into CPCs. This protein reprogramming strategy lays the foundation for future refinements both in vitro and in vivo and might provide a source of CPCs for regenerative approaches. The findings from the present study have demonstrated an efficient protein-transduction method of directly reprogramming fibroblasts into cardiac progenitor cells. These results have great potential in cell-based therapy for cardiovascular diseases."	"High expression of myocyte enhancer factor 2C (MEF2C) is associated with adverse-risk features and poor outcome in pediatric acute myeloid leukemia: a report from the Children's Oncology Group. Recent studies have identified myocyte enhancer factor 2C (MEF2C) as cooperating oncogene in acute myeloid leukemia (AML) and suggested a contribution to the aggressive nature of at least some subtypes of AML, raising the possibility that MEF2C could serve as marker of poor-risk AML and, therefore, have prognostic significance. To test this hypothesis, we retrospectively quantified MEF2C expression in pretreatment bone marrow specimens in participants of the AAML0531 trial by reverse-transcriptase polymerase chain reaction and correlated expression levels with disease characteristics and clinical outcome. In all 751 available patient specimens, MEF2C messenger RNA (mRNA) was detectable and varied &gt;3000-fold relative to β-glucuronidase. Patients with the highest relative MEF2C expression (4th quartile) less likely achieved a complete remission after one course of chemotherapy than the other patients (67 vs. 78 %, P = 0.005). They also had an inferior overall survival (P = 0.014; at 5 years 55 ± 8 vs. 67 ± 4 %), inferior event-free survival (P &lt; 0.001; at 5 years 38 ± 7 vs. 54 ± 4 %), and higher relapse risk than patients within the lower 3 quartiles of MEF2C expression (P &lt; 0.001; at 5 years 53 ± 9 vs. 35 ± 5 %). These differences were accounted for by lower prevalence of cytogenetically/molecularly defined low-risk disease (16 vs. 46 %, P &lt; 0.001) and higher prevalence of standard-risk disease (68 vs. 42 %, P &lt; 0.001) in patients with high MEF2C expression, suggesting that MEF2C cooperates with additional pathogenic abnormalities. High MEF2C expression identifies a subset of AML patients with adverse-risk disease features and poor outcome. With confirmation that high MEF2C mRNA expression leads to overexpression of MEF2C protein, these findings provide the rationale for therapeutic targeting of MEF2C transcriptional activation in AML."	"[Expression of Myocardial Specificity Markers MEF-2C and Cx43 in Rat Bone Marrow-derived Mesenchymal Stem Cells Induced by Electrical Stimulation In Vitro]. Bone marrow-derived mesenchymal stem cells (BMSCs) for repairing damaged heart tissue are a new kind of important treatment options because of their potential to differentiate into cardiomyocytes. We in this experiment investigated the effect of different electrical stimulation time on the expression of myocardial specificity gene and protein in rat bone marrow mesenchymal stem cells (rBMSCs) in vitro. The rBMSCs of second or third generation were randomly divided into three groups, i.e, electrical stimulation (ES) group, 5-Azacytidine (5-Aza) group and the control group. The rBMSCs in the ES groups with complete medium were exposed to 2 V, 2 Hz, 5 ms electrical stimulation for 0. 5 h, 2 h, 4 h, and 6 h respectively every day for 10 days. Those in the 5-Aza group were induced by 5-Aza (10 μmol/L) for 24 h, and then cultured with complete medium for 10 days. Those in the control group were only cultured with complete medium, without any treatment, for 10 days. The rBMSCs' morphological feature in each group was observed with inverted phase microscope. The mRNA expression of myocyte-specific enhancer factor 2C (MEF-2C) and connexin 43 (Cx43) were examined with Real-Time quantitative PCR and the protein expression of MEF-2C, Cx43 were detected with Western Blot method. The results showed that the mRNA expression level of the MEF-2C, Cx43 and the protein expression level of MEF-2C, Cx43 were significantly higher in the ES group and 5-Aza group than those in the relative control group (P &lt; 0.05). It suggests that electrical stimulation could play a part of role in the induction of the rBMSCs to differentiate into the cariomyocyte-like cells in vitro and the effectiveness of the electrical stimulation with 2 h/d had the best in our experiment. But the mechanism how electrical stimulation promotes the differentiation of rBMSC into cardiomyocyte is still unclear."	"MicroRNA-29c overexpression inhibits proliferation and promotes apoptosis and differentiation in P19 embryonal carcinoma cells. Compared to healthy controls, microRNA-29c (miR-29c) is highly expressed in the heart during progression towards ventricular septal defect. However, studies on miR-29c function in heart development are scarce. We investigated the role of miR-29c in P19 cell proliferation, apoptosis, and differentiation and the underlying mechanisms. We evaluated proliferation and cell cycle progression, detected morphological changes; apoptosis rate; BAX, BCL2, GATA binding protein 4 (GATA4), cardiac troponin T (cTnT), and myocyte enhancer factor 2C (MEF2C) expression; and caspase-3, -8, and -9 activity in miR-29c-overexpressing P19 cells, and investigated whether WNT4 was a miR-29c target. MiR-29c-overexpressing cells had decreased proliferation, increased G1 cells, and significantly higher apoptotic rate than the controls. Expression of the apoptosis-related BAX and BCL2 genes and caspase-3, -8, and -9 activity were significantly increased in miR-29c-overexpressing cells. Expression of the cardiac-specific markers GATA4, cTnT, and MEF2C revealed promoted differentiation in miR-29c-overexpressing cells compared to the controls. Luciferase assay confirmed that WNT4 is a miR-29c target. Wnt4 and β-catenin expression was decreased in miR-29c-overexpressing cells. MiR-29c inhibits P19 cell proliferation and promotes apoptosis and differentiation, possibly by suppressing Wnt4 signaling, whose deregulation contributes to congenital heart disease development. "	"Aberrant expression of homeobox gene SIX1 in Hodgkin lymphoma. In Hodgkin lymphoma (HL) we recently identified deregulated expression of homeobox genes MSX1 and OTX2 which are physiologically involved in development of the embryonal neural plate border region. Here, we examined in HL homeobox gene SIX1 an additional regulator of this embryonal region mediating differentiation of placodal precursors. SIX1 was aberrantly activated in 12 % of HL patient samples in silico, indicating a pathological role in a subset of this B-cell malignancy. In addition, SIX1 expression was detected in HL cell lines which were used as models to reveal upstream factors and target genes of this basic developmental regulator. We detected increased copy numbers of the SIX1 locus at chromosome 14q23 correlating with enhanced expression while chromosomal translocations were absent. Moreover, comparative expression profiling data and pertinent gene modulation experiments indicated that the WNT-signalling pathway and transcription factor MEF2C regulate SIX1 expression. Genes encoding the transcription factors GATA2, GATA3, MSX1 and SPIB - all basic lymphoid regulators - were identified as targets of SIX1 in HL. In addition, cofactors EYA1 and TLE4, respectively, contrastingly mediated activation and suppression of SIX1 target gene expression. Thus, the protein domain interfaces may represent therapeutic targets in SIX1-positive HL subsets. Collectively, our data reveal a gene regulatory network with SIX1 centrally deregulating lymphoid differentiation and support concordance of lymphopoiesis/lymphomagenesis and developmental processes in the neural plate border region. "	"Transcriptional regulation of gilthead seabream bone morphogenetic protein (BMP) 2 gene by bone- and cartilage-related transcription factors. Bone morphogenetic protein (BMP) 2 belongs to the transforming growth factor β (TGFβ) superfamily of cytokines and growth factors. While it plays important roles in embryo morphogenesis and organogenesis, BMP2 is also critical to bone and cartilage formation. Protein structure and function have been remarkably conserved throughout evolution and BMP2 transcription has been proposed to be tightly regulated, although few data is available. In this work we report the cloning and functional analysis of gilthead seabream BMP2 promoter. As in other vertebrates, seabream BMP2 gene has a 5′ non-coding exon, a feature already present in DPP gene, the fruit fly ortholog of vertebrate BMP2 gene, and maintained throughout evolution. In silico analysis of seabream BMP2 promoter revealed several binding sites for bone and cartilage related transcription factors (TFs) and their functionality was evaluated using promoter-luciferase constructions and TF-expressing vectors. Runt-related transcription factor 3 (RUNX3) was shown to negatively regulate BMP2 transcription and combination with the core binding factor β (CBFβ) further reduced transcriptional activity of the promoter. Although to a lesser extent, myocyte enhancer factor 2C (MEF2C) had also a negative effect on the regulation of BMP2 gene transcription, when associated with SRY (sex determining region Y)-box 9 (SOX9b). Finally, v-ets avian erythroblastosis virus E26 oncogene homolog 1 (ETS1) was able to slightly enhance BMP2 transcription. Data reported here provides new insights toward the better understanding of the transcriptional regulation of BMP2 gene in a bone and cartilage context."	"Directed Differentiation of Embryonic Stem Cells Into Cardiomyocytes by Bacterial Injection of Defined Transcription Factors. Forced expression of defined transcriptional factors has been well documented as an effective method for cellular reprogramming or directed differentiation. However, transgene expression is not amenable for therapeutic application due to potential insertional mutagenesis. Here, we have developed a bacterial type III secretion system (T3SS)-based protein delivery tool and shown its application in directing pluripotent stem cell differentiation by a controlled delivery of transcription factors relevant to early heart development. By fusing to an N-terminal secretion sequence for T3SS-dependent injection, three transcriptional factors, namely Gata4, Mef2c, and Tbx5 (abbreviated as GMT), were translocated into murine embryonic stem cells (ESCs), where the proteins are effectively targeted to the nucleus with an average intracellular half-life of 5.5 hours. Exogenous GMT protein injection activated the cardiac program, and multiple rounds of GMT protein delivery significantly improved the efficiency of ESC differentiation into cardiomyocytes. Combination of T3SS-mediated GMT delivery and Activin A treatment showed an additive effect, resulting in on average 60% of the ESCs differentiated into cardiomyocytes. ESC derived cardiomyocytes displayed spontaneous rhythmic contractile movement as well as normal hormonal responses. This work serves as a foundation for the bacterial delivery of multiple transcription factors to direct cell fate without jeopardizing genomic integrity. "	"Tumor Necrosis Factor Alpha and Insulin-Like Growth Factor 1 Induced Modifications of the Gene Expression Kinetics of Differentiating Skeletal Muscle Cells. TNF-α levels are increased during muscle wasting and chronic muscle degeneration and regeneration processes, which are characteristic for primary muscle disorders. Pathologically increased TNF-α levels have a negative effect on muscle cell differentiation efficiency, while IGF1 can have a positive effect; therefore, we intended to elucidate the impact of TNF-α and IGF1 on gene expression during the early stages of skeletal muscle cell differentiation. This study presents gene expression data of the murine skeletal muscle cells PMI28 during myogenic differentiation or differentiation with TNF-α or IGF1 exposure at 0 h, 4 h, 12 h, 24 h, and 72 h after induction. Our study detected significant coregulation of gene sets involved in myoblast differentiation or in the response to TNF-α. Gene expression data revealed a time- and treatment-dependent regulation of signaling pathways, which are prominent in myogenic differentiation. We identified enrichment of pathways, which have not been specifically linked to myoblast differentiation such as doublecortin-like kinase pathway associations as well as enrichment of specific semaphorin isoforms. Moreover to the best of our knowledge, this is the first description of a specific inverse regulation of the following genes in myoblast differentiation and response to TNF-α: Aknad1, Cmbl, Sepp1, Ndst4, Tecrl, Unc13c, Spats2l, Lix1, Csdc2, Cpa1, Parm1, Serpinb2, Aspn, Fibin, Slc40a1, Nrk, and Mybpc1. We identified a gene subset (Nfkbia, Nfkb2, Mmp9, Mef2c, Gpx, and Pgam2), which is robustly regulated by TNF-α across independent myogenic differentiation studies. This is the largest dataset revealing the impact of TNF-α or IGF1 treatment on gene expression kinetics of early in vitro skeletal myoblast differentiation. We identified novel mRNAs, which have not yet been associated with skeletal muscle differentiation or response to TNF-α. Results of this study may facilitate the understanding of transcriptomic networks underlying inhibited muscle differentiation in inflammatory diseases."	"Increased IGF-IEc expression and mechano-growth factor production in intestinal muscle of fibrostenotic Crohn's disease and smooth muscle hypertrophy. The igf1 gene is alternatively spliced as IGF-IEa and IGF-IEc variants in humans. In fibrostenotic Crohn's disease, the fibrogenic cytokine TGF-β1 induces IGF-IEa expression and IGF-I production in intestinal smooth muscle and results in muscle hyperplasia and collagen I production that contribute to stricture formation. Mechano-growth factor (MGF) derived from IGF-IEc induces skeletal and cardiac muscle hypertrophy following stress. We hypothesized that increased IGF-IEc expression and MGF production mediated smooth muscle hypertrophy also characteristic of fibrostenotic Crohn's disease. IGF-IEc transcripts and MGF protein were increased in muscle cells isolated from fibrostenotic intestine under regulation by endogenous TGF-β1. Erk5 and MEF2C were phosphorylated in vivo in fibrostenotic muscle; both were phosphorylated and colocalized to nucleus in response to synthetic MGF in vitro. Smooth muscle-specific protein expression of α-smooth muscle actin, γ-smooth muscle actin, and smoothelin was increased in affected intestine. Erk5 inhibition or MEF2C siRNA blocked smooth muscle-specific gene expression and hypertrophy induced by synthetic MGF. Conditioned media of cultured fibrostenotic muscle induced muscle hypertrophy that was inhibited by immunoneutralization of endogenous MGF or pro-IGF-IEc. The results indicate that TGF-β1-dependent IGF-IEc expression and MGF production in patients with fibrostenotic Crohn's disease regulates smooth muscle cell hypertrophy a critical factor that contributes to intestinal stricture formation. "	"Jugular pit associated with 5q14.3 deletion incorporating the MEF2C locus: a recurrent clinical finding. NA"	"ErbB4 Activated p38γ MAPK Isoform Mediates Early Cardiogenesis Through NKx2.5 in Human Pluripotent Stem Cells. Activation of ErbB4 receptor signaling is instrumental in heart development, lack of which results in embryonic lethality. However, mechanism governing its intracellular signaling remains elusive. Using human pluripotent stem cells, we show that ErbB4 is critical for cardiogenesis whereby its genetic knockdown results in loss of cardiomyocytes. Phospho-proteome profiling and Western blot studies attribute this loss to inactivation of p38γ MAPK isoform which physically interacts with NKx2.5 and GATA4 transcription factors. Post-cardiomyocyte formation p38γ/NKx2.5 downregulation is followed by p38α/MEF2c upregulation suggesting stage-specific developmental roles of p38 MAPK isoforms. Knockdown of p38γ MAPK similarly disrupts cardiomyocyte formation in spite of the presence of NKx2.5. Cell fractionation and NKx2.5 phosphorylation studies suggest inhibition of ErbB4-p38γ signaling hinders NKx2.5 nuclear translocation during early cardiogenesis. This study reveals a novel pathway that directly links ErbB4 and p38γ to the transcriptional machinery of NKx2.5-GATA4 complex which is critical for cardiomyocyte formation during mammalian heart development."	"In vivo cardiac reprogramming using an optimal single polycistronic construct. NA"	"The Transcription Factor MEF2 Is a Novel Regulator of Gsta Gene Class in Mouse MA-10 Leydig Cells. Testosterone is essential for spermatogenesis and the development of male sexual characteristics. However, steroidogenesis produces a significant amount of reactive oxygen species (ROS), which can disrupt testosterone production. The myocyte enhancer factor 2 (MEF2) is an important regulator of organogenesis and cell differentiation in various tissues. In the testis, MEF2 is present in Sertoli and Leydig cells throughout fetal and adult life. MEF2-deficient MA-10 Leydig cells exhibit a significant decrease in steroidogenesis concomitant with a reduction in glutathione S-transferase (GST) activity and in the expression of the 4 Gsta members (GST) that encode ROS inactivating enzymes. Here, we report a novel role for MEF2 in ROS detoxification by directly regulating Gsta expression in Leydig cells. Endogenous Gsta1-4 mRNA levels were decreased in MEF2-deficient MA-10 Leydig cells. Conversely, overexpression of MEF2 increased endogenous Gsta1 levels. MEF2 recruitment to the proximal Gsta1 promoter and direct binding on the -506-bp MEF2 element were confirmed by chromatin immunoprecipitation and DNA precipitation assays. In MA-10 Leydig cells, MEF2 activates the Gsta1 promoter and cooperates with Ca(2+)/calmodulin-dependent kinases I to further enhance Gsta1 promoter activity. These effects were lost when the -506-bp MEF2 element was mutated or when a MEF2-Engrailed dominant negative protein was used. Similar results were obtained on the Gsta2, Gsta3, and Gsta4 promoters, suggesting a global role for MEF2 factors in the regulation of all 4 Gsta genes. Altogether, our results identify a novel role for MEF2 in the expression of genes involved in ROS detoxification, a process essential for adequate testosterone production in Leydig cells. "	"Alcohol exposure increases the expression of cardiac transcription factors through ERK1/2-mediated histone3 hyperacetylation in H9c2 cells. Alcohol abuse during pregnancy may cause fetal cardiac developmental abnormalities. Our previous studies showed that alcohol could induce histone hyperacetylation and over-expression of cardiac transcription factors both in vivo and in vitro. The objective of the present study was to investigate the role of ERK1/2 signaling pathway in alcohol-induced histone hyperacetylation and up-regulation of cardiac transcription factors in H9c2 cells. The Cardiac cell line H9c2 was cultured with alcohol. U0126, a specific inhibitor of ERK1/2 pathway was employed to block the ERK1/2 signaling pathway. Western blotting analysis showed that alcohol significantly enhanced the levels of phosphorylated ERK1/2 and induced hyperacetylation of histone3, which were both effectively prevented with U0126. Real-time PCR showed that U0126 treatment significantly decreased alcohol-induced over-expression of GATA4 and MEF2c, and the basal expression level of GATA4, but did not affect MEF2c. ChIP assay showed that U0126 treatment significantly decreased alcohol-induced hyperacetylation of histone3 near the promoter regions of GATA4 and MEF2c. The basal acetylation level of histone3 near the promoter region of GATA4 was affected by U0126 as well, but not that near the promoter region of MEF2c. These data indicated that ERK1/2 signaling played an important role in mediating alcohol induced over-expression of GATA4 and MEF2c, which is possibly through the up-regulation of acetylation of histone3 near the gene promoters that affects the expression of GATA4 and MEF2c in H9c2 cells. ERK1/2 pathway might be a potential target for the intervention of alcohol induced congenital heart diseases."	"Hedgehog/Patched-associated rhabdomyosarcoma formation from delta1-expressing mesodermal cells. Rhabdomyosarcoma (RMS) is the most common pediatric soft tissue sarcoma. In children, the 2 major RMS subtypes are alveolar and embryonal RMS. Aberrant Hedgehog/Patched1 (Hh/Ptch) signaling is a hallmark of embryonal RMS. We demonstrate that mice carrying a Ptch mutation in mesodermal Delta1-expressing cells develop embryonal-like RMS at a similar rate as mice harboring a Ptch mutation in the germline or the brachury-expressing mesoderm. The tumor incidence decreases dramatically when Ptch is mutated in Myf5- or Pax3-expressing cells. No RMS develop from Myogenin/Mef2c-expressing cells. This suggests that Hh/Ptch-associated RMS are derived from Delta1-positive, Myf5-negative, Myogenin-negative and Pax3-negative mesodermal progenitors that can undergo myogenic differentiation but lack stable lineage commitment. Additional preliminary genetic data and data on mesodermal progenitors further imply an interplay of Hh/Ptch and Delta/Notch signaling activity during RMS initiation. In contrast, Wnt signals supposedly suppress RMS formation because RMS multiplicity decreases after inactivation of the Wnt-inhibitor Wif1. Finally, our results strongly suggest that the tumor-initiating event determines the lineage of RMS origin."	"Cystatin D locates in the nucleus at sites of active transcription and modulates gene and protein expression. Cystatin D is an inhibitor of lysosomal and secreted cysteine proteases. Strikingly, cystatin D has been found to inhibit proliferation, migration, and invasion of colon carcinoma cells indicating tumor suppressor activity that is unrelated to protease inhibition. Here, we demonstrate that a proportion of cystatin D locates within the cell nucleus at specific transcriptionally active chromatin sites. Consistently, transcriptomic analysis show that cystatin D alters gene expression, including that of genes encoding transcription factors such as RUNX1, RUNX2, and MEF2C in HCT116 cells. In concordance with transcriptomic data, quantitative proteomic analysis identified 292 proteins differentially expressed in cystatin D-expressing cells involved in cell adhesion, cytoskeleton, and RNA synthesis and processing. Furthermore, using cytokine arrays we found that cystatin D reduces the secretion of several protumor cytokines such as fibroblast growth factor-4, CX3CL1/fractalkine, neurotrophin 4 oncostatin-M, pulmonary and activation-regulated chemokine/CCL18, and transforming growth factor B3. These results support an unanticipated role of cystatin D in the cell nucleus, controlling the transcription of specific genes involved in crucial cellular functions, which may mediate its protective action in colon cancer. "	"Analysis of SOST expression using large minigenes reveals the MEF2C binding site in the evolutionarily conserved region (ECR5) enhancer mediates forskolin, but not 1,25-dihydroxyvitamin D3 or TGFβ1 responsiveness. Transcribed from the SOST gene, sclerostin is an osteocyte-derived negative regulator of bone formation that inhibits osteoblastogenesis via antagonism of the Wnt pathway. Sclerostin is a promising therapeutic target for low bone mass diseases and neutralizing antibody therapies that target sclerostin are in development. Diverse stimuli regulate SOST including the vitamin D hormone, forskolin (Fsk), bone morphogenic protein 2 (BMP-2), oncostatin M (OSM), dexamethasone (Dex), and transforming growth factor (TGFβ1). To explore the mechanisms by which these compounds regulate SOST expression, we examined their ability to regulate a SOST reporter minigene containing the entire SOST locus including the downstream regionor mutant minigenes containing a deletion of the -1kb to -2kb promoter proximal region (-1kb), ECR2, ECR5, or two point mutations in the MEF2 binding site of ECR5 (ECR5/MEF2). Previous reports suggest that both the PTH and TGFβ1 effects on SOST are mediated through ECR5 and that the action of PTH is mediated specifically via the MEF2 binding site at ECR5. Consistent with these reports, the suppressive effects of Fsk were abrogated following both ECR5 deletion and ECR5/MEF2 mutation. In contrast, we found that TGFβ1 negatively regulated SOST and that neither ECR5 nor ECR5/MEF2 was involved. Surprisingly, none of these four deletions/mutations abrogated the suppressive effects of the vitamin D hormone, OSM, Dex, or TGFβ1, or the positive effects of BMP-2. These data suggest that we need to move beyond ECR5 to understand SOST regulation."	"High-efficiency reprogramming of fibroblasts into cardiomyocytes requires suppression of pro-fibrotic signalling. Direct reprogramming of fibroblasts into cardiomyocytes by forced expression of cardiomyogenic factors, GMT (GATA4, Mef2C, Tbx5) or GHMT (GATA4, Hand2, Mef2C, Tbx5), has recently been demonstrated, suggesting a novel therapeutic strategy for cardiac repair. However, current approaches are inefficient. Here we demonstrate that pro-fibrotic signalling potently antagonizes cardiac reprogramming. Remarkably, inhibition of pro-fibrotic signalling using small molecules that target the transforming growth factor-β or Rho-associated kinase pathways converts embryonic fibroblasts into functional cardiomyocyte-like cells, with the efficiency up to 60%. Conversely, overactivation of these pro-fibrotic signalling networks attenuates cardiac reprogramming. Furthermore, inhibition of pro-fibrotic signalling dramatically enhances the kinetics of cardiac reprogramming, with spontaneously contracting cardiomyocytes emerging in less than 2 weeks, as opposed to 4 weeks with GHMT alone. These findings provide new insights into the molecular mechanisms underlying cardiac conversion of fibroblasts and would enhance efforts to generate cardiomyocytes for clinical applications. "	"Akt1/protein kinase B enhances transcriptional reprogramming of fibroblasts to functional cardiomyocytes. Conversion of fibroblasts to functional cardiomyocytes represents a potential approach for restoring cardiac function after myocardial injury, but the technique thus far has been slow and inefficient. To improve the efficiency of reprogramming fibroblasts to cardiac-like myocytes (iCMs) by cardiac transcription factors [Gata4, Hand2, Mef2c, and Tbx5 (GHMT)], we screened 192 protein kinases and discovered that Akt/protein kinase B dramatically accelerates and amplifies this process in three different types of fibroblasts (mouse embryo, adult cardiac, and tail tip). Approximately 50% of reprogrammed mouse embryo fibroblasts displayed spontaneous beating after 3 wk of induction by Akt plus GHMT. Furthermore, addition of Akt1 to GHMT evoked a more mature cardiac phenotype for iCMs, as seen by enhanced polynucleation, cellular hypertrophy, gene expression, and metabolic reprogramming. Insulin-like growth factor 1 (IGF1) and phosphoinositol 3-kinase (PI3K) acted upstream of Akt whereas the mitochondrial target of rapamycin complex 1 (mTORC1) and forkhead box o3 (Foxo3a) acted downstream of Akt to influence fibroblast-to-cardiomyocyte reprogramming. These findings provide insights into the molecular basis of cardiac reprogramming and represent an important step toward further application of this technique. "	"Differentiation of stem cells derived from carious teeth into dopaminergic-like cells. To investigate whether dental pulp stem cells from carious teeth (DPSCs-CT) can differentiate into functional dopaminergic-like (DAergic) cells and provide an alternative cell source in regenerative medicine. Dental pulp stem cells from healthy (DPSCs) and carious teeth (DPSCs-CT) were isolated from young donors. Both cell lines were expanded in identical culture conditions and subsequently differentiated towards DAergic-like cells using pre-defined dopaminergic cocktails. The dopaminergic efficiencies were evaluated both at gene and protein as well as at secretome levels. The efficiency of DPSCs-CT to differentiate into DAergic-like cells was not equivalent to that of DPSCs. This was further reflected in both gene and protein generation whereby key neuronal markers such as nestin, NURR1 and beta-III-tubulin were expressed significantly lower as compared to differentiated DPSCs (P &lt; 0.05). In addition, expressions of transcriptomes related to neurogenesis revealed downregulation of more than 50% of the genes as compared to differentiated DPSC (P &lt; 0.05). Amongst the notable genes were those from the transcription factors family (FLNA, MEF2C, NEUROG2), signalling pathway family (DLL1, Notch1, TGF-β1), neuro-inducer family (BDNF) and cell communication family (APBB1). DPSCs-CT were able to differentiate into DAergic-like cells but not as efficiently as DPSCs. As such, prior to use in regenerative medicine, stem cells from any source should be thoroughly investigated beyond conventional benchmarks such as that proposed by the International Society for Cellular Therapy (ISCT)."	"The Isl1/Ldb1 Complex Orchestrates Genome-wide Chromatin Organization to Instruct Differentiation of Multipotent Cardiac Progenitors. Cardiac stem/progenitor cells hold great potential for regenerative therapies; however, the mechanisms regulating their expansion and differentiation remain insufficiently defined. Here we show that Ldb1 is a central regulator of genome organization in cardiac progenitor cells, which is crucial for cardiac lineage differentiation and heart development. We demonstrate that Ldb1 binds to the key regulator of cardiac progenitors, Isl1, and protects it from degradation. Furthermore, the Isl1/Ldb1 complex promotes long-range enhancer-promoter interactions at the loci of the core cardiac transcription factors Mef2c and Hand2. Chromosome conformation capture followed by sequencing identified specific Ldb1-mediated interactions of the Isl1/Ldb1 responsive Mef2c anterior heart field enhancer with genes that play key roles in cardiac progenitor cell function and cardiovascular development. Importantly, the expression of these genes was downregulated upon Ldb1 depletion and Isl1/Ldb1 haplodeficiency. In conclusion, the Isl1/Ldb1 complex orchestrates a network for heart-specific transcriptional regulation and coordination in three-dimensional space during cardiogenesis. "	"Enhanced efficiency of genetic programming toward cardiomyocyte creation through topographical cues. Generation of de novo cardiomyocytes through viral over-expression of key transcription factors represents a highly promising strategy for cardiac muscle tissue regeneration. Although the feasibility of cell reprogramming has been proven possible both in vitro and in vivo, the efficiency of the process remains extremely low. Here, we report a chemical-free technique in which topographical cues, more specifically parallel microgrooves, enhance the directed differentiation of cardiac progenitors into cardiomyocyte-like cells. Using a lentivirus-mediated direct reprogramming strategy for expression of Myocardin, Tbx5, and Mef2c, we showed that the microgrooved substrate provokes an increase in histone H3 acetylation (AcH3), known to be a permissive environment for reprogramming by &quot;stemness&quot; factors, as well as stimulation of myocardin sumoylation, a post-translational modification essential to the transcriptional function of this key co-activator. These biochemical effects mimicked those of a pharmacological histone deacetylase inhibitor, valproic acid (VPA), and like VPA markedly augmented the expression of cardiomyocyte-specific proteins by the genetically engineered cells. No instructive effect was seen in cells unresponsive to VPA. In addition, the anisotropy resulting from parallel microgrooves induced cellular alignment, mimicking the native ventricular myocardium and augmenting sarcomere organization. "	"Time course and side-by-side analysis of mesodermal, pre-myogenic, myogenic and differentiated cell markers in the chicken model for skeletal muscle formation. The chicken is a well-established model for amniote (including human) skeletal muscle formation because the developmental anatomy of chicken skeletal muscle matches that of mammals. The accessibility of the chicken in the egg as well as the sequencing of its genome and novel molecular techniques have raised the profile of this model. Over the years, a number of regulatory and marker genes have been identified that are suited to monitor the progress of skeletal myogenesis both in wildtype and in experimental embryos. However, in the various studies, differing markers at different stages of development have been used. Moreover, contradictory results on the hierarchy of regulatory factors are now emerging, and clearly, factors need to be able to cooperate. Thus, a reference paper describing in detail and side-by-side the time course of marker gene expression during avian myogenesis is needed. We comparatively analysed onset and expression patterns of the key markers for the chicken immature paraxial mesoderm, for muscle-competent cells, for cells committed to myogenesis and for cells entering terminal differentiation. We performed this analysis from stages when the first paraxial mesoderm is being laid down to the stage when mesoderm formation comes to a conclusion. Our data show that, although the sequence of marker gene expression is the same at the various stages of development, the timing of the expression onset is quite different. Moreover, marker gene expression in myogenic cells being deployed from the dorsomedial and ventrolateral lips of the dermomyotome is different from those being deployed from the rostrocaudal lips, suggesting different molecular programs. Furthermore, expression of Myosin Heavy Chain genes is overlapping but different along the length of a myotube. Finally, Mef2c is the most likely partner of Mrf proteins, and, in contrast to the mouse and more alike frog and zebrafish fish, chicken Mrf4 is co-expressed with MyoG as cells enter terminal differentiation. "	"MEF2B mutations in non-Hodgkin lymphoma dysregulate cell migration by decreasing MEF2B target gene activation. Myocyte enhancer factor 2B (MEF2B) is a transcription factor with mutation hotspots at K4, Y69 and D83 in diffuse large B-cell lymphoma (DLBCL). To provide insight into the regulatory network of MEF2B, in this study, we analyse global gene expression and DNA-binding patterns. We find that candidate MEF2B direct target genes include RHOB, RHOD, CDH13, ITGA5 and CAV1, and that indirect target genes of MEF2B include MYC, TGFB1, CARD11, MEF2C, NDRG1 and FN1. MEF2B overexpression increases HEK293A cell migration and epithelial-mesenchymal transition, and decreases DLBCL cell chemotaxis. K4E, Y69H and D83V MEF2B mutations decrease the capacity of MEF2B to activate transcription and decrease its' effects on cell migration. The K4E and D83V mutations decrease MEF2B DNA binding. In conclusion, our map of the MEF2B regulome connects MEF2B to drivers of oncogenesis. "	"The Utility of Next-Generation Sequencing in Gene Discovery for Mutation-Negative Patients with Rett Syndrome. Rett syndrome (RTT) is a rare, severe disorder of neuronal plasticity that predominantly affects girls. Girls with RTT usually appear asymptomatic in the first 6-18 months of life, but gradually develop severe motor, cognitive, and behavioral abnormalities that persist for life. A predominance of neuronal and synaptic dysfunction, with altered excitatory-inhibitory neuronal synaptic transmission and synaptic plasticity, are overarching features of RTT in children and in mouse models. Over 90% of patients with classical RTT have mutations in the X-linked methyl-CpG-binding (MECP2) gene, while other genes, including cyclin-dependent kinase-like 5 (CDKL5), Forkhead box protein G1 (FOXG1), myocyte-specific enhancer factor 2C (MEF2C), and transcription factor 4 (TCF4), have been associated with phenotypes overlapping with RTT. However, there remain a proportion of patients who carry a clinical diagnosis of RTT, but who are mutation negative. In recent years, next-generation sequencing technologies have revolutionized approaches to genetic studies, making whole-exome and even whole-genome sequencing possible strategies for the detection of rare and de novo mutations, aiding the discovery of novel disease genes. Here, we review the recent progress that is emerging in identifying pathogenic variations, specifically from exome sequencing in RTT patients, and emphasize the need for the use of this technology to identify known and new disease genes in RTT patients. "	"Inflammation in Alzheimer's Disease and Molecular Genetics: Recent Update. Alzheimer's disease (AD) is a complex age-related neurodegenerative disorder of the central nervous system. Since the first description of AD in 1907, many hypotheses have been established to explain its causes. The inflammation theory is one of them. Pathological and biochemical studies of brains from AD individuals have provided solid evidence of the activation of inflammatory pathways. Furthermore, people with long-term medication of anti-inflammatory drugs have shown a reduced risk to develop the disease. After three decades of genetic study in AD, dozens of loci harboring genetic variants influencing inflammatory pathways in AD patients has been identified through genome-wide association studies (GWAS). The most well-known GWAS risk factor that is responsible for immune response and inflammation in AD development should be APOE ε4 allele. However, a growing number of other GWAS risk AD candidate genes in inflammation have recently been discovered. In the present study, we try to review the inflammation in AD and immunity-associated GWAS risk genes like HLA-DRB5/DRB1, INPP5D, MEF2C, CR1, CLU and TREM2. "	"Myocyte Dedifferentiation Drives Extraocular Muscle Regeneration in Adult Zebrafish. The purpose of this study was to characterize the injury response of extraocular muscles (EOMs) in adult zebrafish. Adult zebrafish underwent lateral rectus (LR) muscle myectomy surgery to remove 50% of the muscle, followed by molecular and cellular characterization of the tissue response to the injury. Following myectomy, the LR muscle regenerated an anatomically correct and functional muscle within 7 to 10 days post injury (DPI). Following injury, the residual muscle stump was replaced by a mesenchymal cell population that lost cell polarity and expressed mesenchymal markers. Next, a robust proliferative burst repopulated the area of the regenerating muscle. Regenerating cells expressed myod, identifying them as myoblasts. However, both immunofluorescence and electron microscopy failed to identify classic Pax7-positive satellite cells in control or injured EOMs. Instead, some proliferating nuclei were noted to express mef2c at the very earliest point in the proliferative burst, suggesting myonuclear reprogramming and dedifferentiation. Bromodeoxyuridine (BrdU) labeling of regenerating cells followed by a second myectomy without repeat labeling resulted in a twice-regenerated muscle broadly populated by BrdU-labeled nuclei with minimal apparent dilution of the BrdU signal. A double-pulse experiment using BrdU and 5-ethynyl-2'-deoxyuridine (EdU) identified double-labeled nuclei, confirming the shared progenitor lineage. Rapid regeneration occurred despite a cell cycle length of 19.1 hours, whereas 72% of the regenerating muscle nuclei entered the cell cycle by 48 hours post injury (HPI). Dextran lineage tracing revealed that residual myocytes were responsible for muscle regeneration. EOM regeneration in adult zebrafish occurs by dedifferentiation of residual myocytes involving a muscle-to-mesenchyme transition. A mechanistic understanding of myocyte reprogramming may facilitate novel approaches to the development of molecular tools for targeted therapeutic regeneration in skeletal muscle disorders and beyond."	"Direct Reprogramming-The Future of Cardiac Regeneration? Today, the only available curative therapy for end stage congestive heart failure (CHF) is heart transplantation. This therapeutic option is strongly limited by declining numbers of available donor hearts and by restricted long-term performance of the transplanted graft. The disastrous prognosis for CHF with its restricted therapeutic options has led scientists to develop different concepts of alternative regenerative treatment strategies including stem cell transplantation or stimulating cell proliferation of different cardiac cell types in situ. However, first clinical trials with overall inconsistent results were not encouraging, particularly in terms of functional outcome. Among other approaches, very promising ongoing pre-clinical research focuses on direct lineage conversion of scar fibroblasts into functional myocardium, termed &quot;direct reprogramming&quot; or &quot;transdifferentiation.&quot; This review seeks to summarize strategies for direct cardiac reprogramming including the application of different sets of transcription factors, microRNAs, and small molecules for an efficient generation of cardiomyogenic cells for regenerative purposes. "	"cAMP induces hypertrophy and alters DNA methylation in HL-1 cardiomyocytes. cAMP is a highly regulated secondary messenger involved in many biological processes. Chronic activation of the cAMP pathway by catecholamines results in cardiac hypertrophy and fibrosis; however, the mechanism by which elevated cAMP leads to cardiomyopathy is not fully understood. To address this issue, we increased intracellular cAMP levels in HL-1 cardiomyocytes, a cell line derived from adult mouse atrium, using either the stable cAMP analog N(6),2'-O-dibutyryladenosine 3',5'-cyclic monophosphate (DBcAMP) or phosphodiesterase (PDE) inhibitors caffeine and theophylline. Elevated cAMP levels increased cell size and altered expression levels of cardiac genes and micro-RNAs associated with hypertrophic cardiomyopathy (HCM), including Myh6, Myh7, Myh7b, Tnni3, Anp, Bnp, Gata4, Mef2c, Mef2d, Nfatc1, miR208a, and miR208b. In addition, DBcAMP altered the expression of DNA methyltransferases (Dnmts) and Tet methylcytosine dioxygenases (Tets), enzymes that regulate genomic DNA methylation levels. Changes in expression of DNA methylation genes induced by elevated cAMP led to increased global DNA methylation in HL-1 cells. In contrast, inhibition of DNMT activity with 5-azacytidine treatment decreased global DNA methylation levels and blocked the increased expression of several HCM genes (Myh7, Gata4, Mef2c, Nfatc1, Myh7b, Tnni3, and Bnp) observed with DBcAMP treatment. These results demonstrate that cAMP induces cardiomyocyte hypertrophy and altered HCM gene expression in vitro and that DNA methylation patterns mediate the upregulation of HCM genes induced by cAMP. These data identify a previously unknown mechanism by which elevated levels of cAMP lead to increased expression of genes associated with cardiomyocyte hypertrophy. "	"MiR-135b-5p and MiR-499a-3p Promote Cell Proliferation and Migration in Atherosclerosis by Directly Targeting MEF2C. Proliferation and migration of endothelial cells (ECs) and vascular smooth muscle cells (VSMCs) are critical processes involved in atherosclerosis. Recent studies have revealed that microRNAs (miRNAs) can be detected in circulating blood with a stable form and the expression profiles differ in many cellular processes associated with coronary artery disease (CAD). However, little is known about their role, especially serum-derived miRNAs, in ECs and VSMCs phenotype modulation during atherosclerosis. We compared the miRNA expressions in serum samples from 13 atherosclerotic CAD patients and 5 healthy control subjects and identified 36 differentially expressed miRNAs. The expression of selected miRNAs (miR-135b-5p and miR-499a-3p) was further validated in 137 serum samples. Interestingly, miR-135b-5p and miR-499a-3p directly regulated a common target gene: myocyte enhancer factor 2C (MEF2C) which plays an important role in modulating cell phenotype of cardiovascular systems. Furthermore, our results indicated that the 2 elevated miRNAs could jointly promote ECs and VSMCs proliferation and migration by repressing MEF2C expression. Together, our findings demonstrated a serum-based miRNA expression profile for atherosclerotic CAD patients, potentially revealing a previously undocumented mechanism for cell proliferation and migration mediated by miR-135b-5p and miR-499a-3p, and might provide novel insights into the role of circulating miRNAs in atherosclerosis pathogenesis. "	"Naphthenic Acid Mixtures from Oil Sands Process-Affected Water Enhance Differentiation of Mouse Embryonic Stem Cells and Affect Development of the Heart. Extraction of petrochemicals from the surface mining of oil sand deposits results in generation of large volumes of oil sands process-affected water (OSPW). Naphthenic acids (NA) are generally considered to be among the most toxic components of OSPW. Previous studies have shown that NAs are toxic to aquatic organisms, however knowledge of their effects on mammalian health and development is limited. In the present study, we evaluated the developmental effects of an NA extract prepared from fresh OSPW on differentiating mouse embryonic stem cells (ESC). We found that treatment of differentiating cells with the NA extract at noncytotoxic concentrations alters expression of various lineage specification markers and development of the heart. Notably, expression of cardiac specific markers such as Nkx2.5, Gata4, and Mef2c were significantly up-regulated. Moreover, exposure to the NA extract enhanced differentiation of embryoid bodies and resulted in the early appearance of spontaneously beating clusters. Interestingly, exposure of undifferentiated mouse ESCs to the NA extract did not change the expression level of pluripotency markers (i.e., Oct4, Nanog, and Sox2). Altogether, these data identify some of the molecular pathways affected by components within this NA extract during differentiation of mammalian cells."	"Protein profiles of cardiomyocyte differentiation in murine embryonic stem cells exposed to perfluorooctane sulfonate. Perfluorooctane sulfonate (PFOS) is a persistent organic contaminant that may affect diverse systems in animals and humans, including the cardiovascular system. However, little is known about the mechanism by which it affects the biological systems. Herein, we used embryonic stem cell test procedure as a tool to assess the developmental cardiotoxicity of PFOS. The differentially expressed proteins were identified by quantitative proteomics that combines the stable isotope labeling of amino acids with high-performance liquid chromatography-electrospray ionization tandem mass spectrometry. Results of the embryonic stem cell test procedure suggested that PFOS was a weak embryotoxic chemical. Nevertheless, a few marker proteins related to cardiovascular development (Brachyury, GATA4, MEF2C, α-actinin) were significantly reduced by exposure to PFOS. In total, 176 differential proteins were identified by proteomics analysis, of which 67 were upregulated and 109 were downregulated. Gene ontology annotation classified these proteins into 13 groups by molecular functions, 12 groups by cellular locations and 10 groups by biological processes. Most proteins were mainly relevant to either catalytic activity (25.6%), nucleus localization (28.9%) or to cellular component organization (19.8%). Pathway analysis revealed that 32 signaling pathways were affected, particularly these involved in metabolism. Changes in five proteins, including L-threonine dehydrogenase, X-ray repair cross-complementing 5, superoxide dismutase 2, and DNA methyltransferase 3b and 3a were confirmed by Western blotting, suggesting the reliability of the technique. These results revealed potential new targets of PFOS on the developmental cardiovascular system."	"BCL2 Inhibitor (ABT-737): A Restorer of Prednisolone Sensitivity in Early T-Cell Precursor-Acute Lymphoblastic Leukemia with High MEF2C Expression? Early T-cell precursor-acute lymphoblastic leukemia (ETP-ALL) has been identified as a high-risk subtype of pediatric T-cell acute lymphoblastic leukemia (T-ALL). Conventional chemotherapy is not fully effective for this subtype of leukemia; therefore, potential therapeutic targets need to be explored. Analysis of the gene expression patterns of the transcription factors in pediatric T-ALL revealed that MEF2C and FLT3 were expressed at higher levels in ETP-ALL than typical T-ALL. Using human T-ALL and BaF3 cell lines with high expression levels of MEF2C, the present study tested whether the BCL2 inhibitor (ABT-737) restores the sensitivity to prednisolone (PSL), because MEF2C causes PSL resistance, possibly by augmenting the anti-apoptotic activity of BCL2. Treatment with PSL and ABT-737 caused a significant reduction in the IC50 of PSL in the MEF2C-expressing LOUCY cells, in addition to the MEF2C-transduced BaF3 cells, but not in the non-MEF2C-expressing Jurkat cells. The combination treatment significantly accelerated the killing of primary leukemic blast cells of ETP-ALL with high expression levels of MEF2C, which were co-cultured with murine stromal cells. These findings suggest that BCL2 inhibitors may be a therapeutic candidate in vivo for patients with ETP-ALL with high expression levels of MEF2C. "	"MEF2C-Related 5q14.3 Microdeletion Syndrome Detected by Array CGH: A Case Report. Genetic screening is being widely applied to trace the origin of global developmental delay or intellectual disability. The 5q14.3 microdeletion has recently been uncovered as a clinical syndrome presenting with severe intellectual disability, limited walking ability, febrile convulsions, absence of speech, and minor brain malformations. MEF2C was suggested as a gene mainly responsible for the 5q14.3 microdeletion syndrome. We present the case of a 6-year-old girl, who is the first patient in Korea with de novo interstitial microdeletions involving 5q14.3, showing the typical clinical features of 5q14.3 microdeletion syndrome with a smaller size of chromosomal involvement compared to the previous reports. The microdeletion was not detected by subtelomeric multiplex ligation-dependent probe amplification, but by array comparative genomic hybridization, which is advisable for the detection of a small-sized genetic abnormality. "	"Endothelin signaling activates Mef2c expression in the neural crest through a MEF2C-dependent positive-feedback transcriptional pathway. Endothelin signaling is essential for neural crest development, and dysregulated Endothelin signaling is associated with several neural crest-related disorders, including Waardenburg and other syndromes. However, despite the crucial roles of this pathway in neural crest development and disease, the transcriptional effectors directly activated by Endothelin signaling during neural crest development remain incompletely elucidated. Here, we establish that the MADS box transcription factor MEF2C is an immediate downstream transcriptional target and effector of Endothelin signaling in the neural crest. We show that Endothelin signaling activates Mef2c expression in the neural crest through a conserved enhancer in the Mef2c locus and that CRISPR-mediated deletion of this Mef2c neural crest enhancer from the mouse genome abolishes Endothelin induction of Mef2c expression. Moreover, we demonstrate that Endothelin signaling activates neural crest expression of Mef2c by de-repressing MEF2C activity through a Calmodulin-CamKII-histone deacetylase signaling cascade. Thus, these findings identify a MEF2C-dependent, positive-feedback mechanism for Endothelin induction and establish MEF2C as an immediate transcriptional effector and target of Endothelin signaling in the neural crest. "	"Cardiac LXRα protects against pathological cardiac hypertrophy and dysfunction by enhancing glucose uptake and utilization. Pathological cardiac hypertrophy is characterized by a shift in metabolic substrate utilization from fatty acids to glucose, but the molecular events underlying the metabolic remodeling remain poorly understood. Here, we investigated the role of liver X receptors (LXRs), which are key regulators of glucose and lipid metabolism, in cardiac hypertrophic pathogenesis. Using a transgenic approach in mice, we show that overexpression of LXRα acts to protect the heart against hypertrophy, fibrosis, and dysfunction. Gene expression profiling studies revealed that genes regulating metabolic pathways were differentially expressed in hearts with elevated LXRα. Functionally, LXRα overexpression in isolated cardiomyocytes and murine hearts markedly enhanced the capacity for myocardial glucose uptake following hypertrophic stress. Conversely, this adaptive response was diminished in LXRα-deficient mice. Transcriptional changes induced by LXRα overexpression promoted energy-independent utilization of glucose via the hexosamine biosynthesis pathway, resulting in O-GlcNAc modification of GATA4 and Mef2c and the induction of cytoprotective natriuretic peptide expression. Our results identify LXRα as a key cardiac transcriptional regulator that helps orchestrate an adaptive metabolic response to chronic cardiac stress, and suggest that modulating LXRα may provide a unique opportunity for intervening in myocyte metabolism. "	"Investigation of Neuropathogenesis in HIV-1 Clade B and C Infection Associated with IL-33 and ST2 Regulation. In present research work, for the first time, we demonstrate that neuropathogenesis in HIV-1 clade B and C infection is associated with IL-33 and ST2 dysregulation, that is, implication toward neuropathogenesis. It is known that neuropathogenesis of HIV infected individuals is clade dependent. Proinflammatory cytokines and related receptors play a significant role in the complex regulatory mechanisms of neuropathogenesis in HIV-1 infection. Among them, IL-33 is an inflammatory cytokine expressed in the central nervous system (CNS) and activates microglia cells and may affect neuroimmune inflammatory processes involved in HIV neuropathogenesis. Beside this, IL-33 receptor (ST2) plays a role in neuroinflammatory processes through the modulation of the biological action of IL-33. quantitative real time PCR (qRT-PCR), ELISA, Western blot (WB), and flow cytometry experiments were performed to elucidate the role of IL-33/ST2 in HIV neuropathogenesis in CNS cells. Apoptosis and mechanisms of IL-33 in neuronal cells were studied using caspase-3 assay and RT-PCR. Results of the studies suggest that the infection in CNS cells with HIV-1 clade B resulted in higher levels of IL-33/ST2L expression compared to HIV-1 clade C infection. Furthermore, higher concentrations of IL-33 were associated with a decrease in myocyte enhancer factor 2C (MEF2C) expression, a transcription factor that regulates synaptic function, and an increase in apoptosis, NOD2, and SLC11A1 in clade B infection. This led to neuroinflammation which dysregulates synaptic function and apoptosis. These parameters are common in neuroAIDS provoked by HIV infection. "	"JAZF1 promotes proliferation of C2C12 cells, but retards their myogenic differentiation through transcriptional repression of MEF2C and MRF4-Implications for the role of Jazf1 variants in oncogenesis and type 2 diabetes. Single-nucleotide polymorphisms associated with type 2 diabetes (T2D) have been identified in Jazf1, which is also involved in the oncogenesis of endometrial stromal tumors. To understand how Jazf1 variants confer a risk of tumorigenesis and T2D, we explored the functional roles of JAZF1 and searched for JAZF1 target genes in myogenic C2C12 cells. Consistent with an increase of Jazf1 transcripts during myoblast proliferation and their decrease during myogenic differentiation in regenerating skeletal muscle, JAZF1 overexpression promoted cell proliferation, whereas it retarded myogenic differentiation. Examination of myogenic genes revealed that JAZF1 overexpression transcriptionally repressed MEF2C and MRF4 and their downstream genes. AMP deaminase1 (AMPD1) was identified as a candidate for JAZF1 target by gene array analysis. However, promoter assays of Ampd1 demonstrated that mutation of the putative binding site for the TR4/JAZF1 complex did not alleviate the repressive effects of JAZF1 on promoter activity. Instead, JAZF1-mediated repression of Ampd1 occurred through the MEF2-binding site and E-box within the Ampd1 proximal regulatory elements. Consistently, MEF2C and MRF4 expression enhanced Ampd1 promoter activity. AMPD1 overexpression and JAZF1 downregulation impaired AMPK phosphorylation, while JAZF1 overexpression also reduced it. Collectively, these results suggest that aberrant JAZF1 expression contributes to the oncogenesis and T2D pathogenesis."	"Forward Programming of Cardiac Stem Cells by Homogeneous Transduction with MYOCD plus TBX5. Adult cardiac stem cells (CSCs) express many endogenous cardiogenic transcription factors including members of the Gata, Hand, Mef2, and T-box family. Unlike its DNA-binding targets, Myocardin (Myocd)-a co-activator not only for serum response factor, but also for Gata4 and Tbx5-is not expressed in CSCs. We hypothesised that its absence was a limiting factor for reprogramming. Here, we sought to investigate the susceptibility of adult mouse Sca1+ side population CSCs to reprogramming by supplementing the triad of GATA4, MEF2C, and TBX5 (GMT), and more specifically by testing the effect of the missing co-activator, Myocd. Exogenous factors were expressed via doxycycline-inducible lentiviral vectors in various combinations. High throughput quantitative RT-PCR was used to test expression of 29 cardiac lineage markers two weeks post-induction. GMT induced more than half the analysed cardiac transcripts. However, no protein was detected for the induced sarcomeric genes Actc1, Myh6, and Myl2. Adding MYOCD to GMT affected only slightly the breadth and level of gene induction, but, importantly, triggered expression of all three proteins examined (α-cardiac actin, atrial natriuretic peptide, sarcomeric myosin heavy chains). MYOCD + TBX was the most effective pairwise combination in this system. In clonal derivatives homogenously expressing MYOCD + TBX at high levels, 93% of cardiac transcripts were up-regulated and all five proteins tested were visualized. (1) GMT induced cardiac genes in CSCs, but not cardiac proteins under the conditions used. (2) Complementing GMT with MYOCD induced cardiac protein expression, indicating a more complete cardiac differentiation program. (3) Homogeneous transduction with MYOCD + TBX5 facilitated the identification of differentiating cells and the validation of this combinatorial reprogramming strategy. Together, these results highlight the pivotal importance of MYOCD in driving CSCs toward a cardiac muscle fate."	"The mammalian target of rapamycin signaling pathway regulates myocyte enhancer factor-2C phosphorylation levels through integrin-linked kinase in goat skeletal muscle satellite cells. Mammalian target of rapamycin (mTOR) signaling pathway plays a key role in muscle development and is involved in multiple intracellular signaling pathways. Myocyte enhancer factor-2 (MEF2) regulates muscle cell proliferation and differentiation. However, how the mTOR signaling pathway regulates MEF2 activity remains unclear. We isolated goat skeletal muscle satellite cells (gSSCs) as model cells to explore mTOR signaling pathway regulation of MEF2C. We inhibited mTOR activity in gSSCs with PP242 and found that MEF2C phosphorylation was decreased and that muscle creatine kinase (MCK) expression was suppressed. Subsequently, we detected integrin-linked kinase (ILK) using MEF2C coimmunoprecipitation; ILK and MEF2C were colocalized in the gSSCs. We found that inhibiting mTOR activity increased ILK phosphorylation levels and that inhibiting ILK activity with Cpd 22 and knocking down ILK with small interfering RNA increased MEF2C phosphorylation and MCK expression. In the presence of Cpd 22, mTOR activity inhibition did not affect MEF2C phosphorylation. Moreover, ILK dephosphorylated MEF2C in vitro. These results suggest that the mTOR signaling pathway regulates MEF2C positively and regulates ILK negatively and that ILK regulates MEF2C negatively. It appears that the mTOR signaling pathway regulates MEF2C through ILK, further regulating the expression of muscle-related genes in gSSCs. "	"Stimulation of cardiomyogenesis from mouse embryonic stem cells by nuclear translocation of cardiotrophin-1. Cardiotrophin-1 (CT-1) controls cardiomyogenesis of mouse embryonic stem (ES) cells. To investigate the signaling pathway underlying the action of CT-1 on cardiac cell differentiation. Protein expression was analyzed by western blot technique and cardiac areas by immunohistochemistry. Calcium, reactive oxygen species (ROS) and nitric oxide (NO) were assessed by microfluorometry using fluo-4, H2DCF, and DAF-2DA, respectively. Gene inactivation of CT-1 was achieved by siRNA technology. CT-1 as well as its receptor gp 130 were transiently upregulated during differentiation of ES cells. Exogenous CT-1 enhanced cardiomyogenesis, increased the cardiac transcription factors MEF2c, Nkx-2.5, TEAD3 and GATA4, the cardiac proteins α-actinin, MLC2a, MYH7, MLC1a, MLC2v and HCN4 as well as vascular endothelial growth factor (VEGF), platelet-derived growth factor-BB (PDGF-BB), fibroblast growth factor-2 (FGF-2) and atrial natriuretic peptide (ANP). CT-1 downregulation by small interfering RNA (siRNA) inhibited cardiomyogenesis and decreased VEGF, PDGF-BB, FGF-2 and ANP expression. CT-1 raised intracellular calcium which was abolished by the intracellular calcium chelator BAPTA, AM and thapsigargin. Moreover, CT-1 treatment increased ROS, followed by NO generation and NOS3 activation. During ES cell differentiation CT-1 was translocated to the cell nucleus. Exogenous CT-1 induced nuclear translocation of endogenous CT-1, which was inhibited by BAPTA, the NOS inhibitor L-N(G)-Nitroarginine methyl ester (l-NAME), the radical scavenger N-(2-mercaptopropionyl)-glycine (NMPG) as well as the janus kinase 2 (JAK2) inhibitor AG490 and the PI3 kinase (PI3K) inhibitor LY294002. Nuclear translocation of CT-1 regulates cardiomyogenesis of ES cells and involves calcium, NO, ROS as well as CT-1 regulated signaling pathways."	"A CD63(+ve)/c-kit(+ve) stem cell population isolated from the mouse heart. Cardiac cell regeneration from endogenous cardiac stem cells (CSCs) following MI is rather low. Therefore, identifying mechanisms to boost endogenous CSC activation and participation in cardiac repair appears to be the most promising strategy for MI patients. We previously engineered tissue inhibitor of metalloproteinases-1 (TIMP-1) overexpressing embryonic stem (ES-TIMP-1) cells and transplanted them into the infarcted murine heart. Collected data demonstrated that TIMP-1 enhanced transplanted ES cell engraftment, survival and differentiation into cardiac myocytes post-transplantation. Therefore, we postulated that there may be a new stem cell population present in the heart that is regulated by extracellular protein TIMP-1. Furthermore, we hypothesized that this cell population has a potential for cell proliferation and differentiation into cardiac cell types. Therefore, we isolated CSCs from 4 weeks old C57BL/6 mice and cultured them in vitro in presence of ESCM, ES-TIMP-1-CM or TIMP-1. Our immunostaining data demonstrated the existence of a novel CSC subpopulation, CD63(+ve)/c-kit(+ve). When treated with TIMP-1, these cells showed significantly (p &lt; 0.05) increased proliferation rates compared to control cells, enhanced TIMP-1 receptor (CD63), along with improved expression of phospho and total β-catenin proteins as demonstrated by Western blot analysis. Next, we demonstrate significantly (p &lt; 0.05) improved cardiac myocyte, vascular smooth muscle cell, and endothelial cell differentiation. Furthermore, our RT-PCR data shows increase in cardiac gene (GATA-4, Mef2C, and Nkx-2.5) expression when compared to ESCM and control cells. Collectively, these data, for the first time, establish the existence of a new CD63(+ve)/c-kit(+ve) CSC subpopulation that has a significant potential for proliferation and differentiation into cardiac cell types once stimulated with TIMP-1."	"Dynamic changes in global and gene-specific DNA methylation during hibernation in adult thirteen-lined ground squirrels, Ictidomys tridecemlineatus. Hibernating mammals conserve energy in the winter by undergoing prolonged bouts of torpor, interspersed with brief arousals back to euthermia. These bouts are accompanied by a suite of reversible physiological and biochemical changes; however, much remains to be discovered about the molecular mechanisms involved. Given the seasonal nature of hibernation, it stands to reason that underlying plastic epigenetic mechanisms should exist. One such form of epigenomic regulation involves the reversible modification of cytosine bases in DNA by methylation. DNA methylation is well known to be a mechanism that confers upon DNA its cellular identity during differentiation in response to innate developmental cues. However, it has recently been hypothesized that DNA methylation also acts as a mechanism for adapting genome function to changing external environmental and experiential signals over different time scales, including during adulthood. Here, we tested the hypothesis that DNA methylation is altered during hibernation in adult wild animals. This study evaluated global changes in DNA methylation in response to hibernation in the liver and skeletal muscle of thirteen-lined ground squirrels along with changes in expression of DNA methyltransferases (DNMT1/3B) and methyl binding domain proteins (MBDs). A reduction in global DNA methylation occurred in muscle during torpor phases whereas significant changes in DNMTs and MBDs were seen in both tissues. We also report dynamic changes in DNA methylation in the promoter of the myocyte enhancer factor 2C (mef2c) gene, a candidate regulator of metabolism in skeletal muscle. Taken together, these data show that genomic DNA methylation is dynamic across torpor-arousal bouts during winter hibernation, consistent with a role for this regulatory mechanism in contributing to the hibernation phenotype. "	"Human umbilical cord blood-derived mononuclear cells improve murine ventricular function upon intramyocardial delivery in right ventricular chronic pressure overload. Stem cell therapy has emerged as potential therapeutic strategy for damaged heart muscles. Umbilical cord blood (UCB) cells are the most prevalent stem cell source available, yet have not been fully tested in cardiac regeneration. Herein, studies were performed to evaluate the cardiovascular safety and beneficial effect of mononuclear cells (MNCs) isolated from human umbilical cord blood upon intramyocardial delivery in a murine model of right ventricle (RV) heart failure due to pressure overload. UCB-derived MNCs were delivered into the myocardium of a diseased RV cardiac model. Pulmonary artery banding (PAB) was used to produce pressure overload in athymic nude mice that were then injected intramyocardially with UCB-MNCs (0.4×10^6 cells/heart). Cardiac functions were then monitored by telemetry, echocardiography, magnetic resonance imaging (MRI) and pathologic analysis of heart samples to determine the ability for cell-based repair. The cardio-toxicity studies provided evidence that UCB cell transplantation has a safe therapeutic window between 0.4 to 0.8 million cells/heart without altering QT or ST-segments or the morphology of electrocardiograph waves. The PAB cohort demonstrated significant changes in RV chamber dilation and functional defects consistent with severe pressure overload. Using cardiac MRI analysis, UCB-MNC transplantation in the setting of PAB demonstrated an improvement in RV structure and function in this surgical mouse model. The RV volume load in PAB-only mice was 24.09±3.9 compared to 11.05±2.09 in the cell group (mm3, P-value&lt;0.005). The analysis of pathogenic gene expression (BNP, ANP, Acta1, Myh7) in the cell-transplanted group showed a significant reversal with respect to the diseased PAB mice with a robust increase in cardiac progenitor gene expression such as GATA4, Kdr, Mef2c and Nkx2.5. Histological analysis indicated significant fibrosis in the RV in response to PAB that was reduced following UCB-MNC's transplantation along with concomitant increased Ki-67 expression and CD31 positive vessels as a marker of angiogenesis within the myocardium. These findings indicate that human UCB-derived MNCs promote an adaptive regenerative response in the right ventricle upon intramyocardial transplantation in the setting of chronic pressure overload heart failure."	"[Infantile spasm associated with 5q14.3 microdeletion syndrome: clinical and genetic characterization of a core family]. To characterize the clinical feature of a child with infantile spasm, karyotype and molecular cytogenetic analyses were performed to investigate the cause of disease and choose a suitable prenatal diagnostic method for the couple with the child. Routine G-banding was performed to analyze the karyotype of the patient and her parents, and molecular karyotyping was performed using SNP array. Confirmation and segregation studies were performed by fluorescence in situ hybridization (FISH). The patient presented with severe psychomotor retardation, epilepsy, muscular hypotonia, stereotypic behavior and facial phenotype characterized by bulging forehead, cupid-bow upper lip, large ears with prominent lobes and pronounced occipital protuberance. Subdural collection of fluid was shown in cranial CT scan, and frequent interictal epileptiform discharges and hypsarrhythmia was shown in EEG monitoring. Routine G-banding revealed a normal female karyotype. A 2.03 Mb deletion in 5q14.3 including MEF2C gene was revealed using SNP array, and the patient's molecular karyotype was arr 5q14.3 (87 538 430-89 565 757) ×1. FISH with locus-specific probe RP11-293L20 from the deleted region on metaphase preparations of the patient and her parents confirmed the de novo occurrence of the deletion. The microdeletion of 5q14.3 was the cause of infantile spasm in the patient. FISH confirmed the de novo occurrence of the microdeletion. SNP array should be chosen as prenatal diagnostic method for the couple with the child."	"Exogenous treatment with eicosapentaenoic acid supports maturation of cardiomyocytes derived from embryonic stem cells. Embryonic stem cells offer multiple advantages over adult stem cells in terms of achieving acceptable number of functional cardiomyocytes to be exploited in cell therapy. However, differentiation efficacy is still a major issue to be solved before moving to regenerative medicine. Although a vast number of chemical compounds have been tested on efficiency of cardiac differentiation, the effect of fish oil components, such as eicosapentaenoic acid (EPA) on developmental bioenergetics, and hence cardiac differentiation, remained unstudied. EPA has been reported to have several cardioprotective effects, but there is no study addressing its role in cardiac differentiation. After mesoderm induction of embryoid bodies (EBs) derived from mouse embryonic stem cells (mESCs) in hanging drops initiated by ascorbic acid, they were treated with various concentrations of EPA. Gene and protein expression and functional properties of cardiomyocytes derived from ESCs were evaluated following treatment with various concentrations of EPA. Exposure to low concentrations of EPA (10 μM) increased percentage of beating colonies and beating area. This treatment also resulted in up to 3 fold increase in expression of NKX2-5, MEF2C, MYH6, TNNT2 and CX43. FACS analysis confirmed gene expression analysis with increased percentage of MYH6 positive cells in EPA-treated group compared to the control group. In contrast, the expression of genes coding for cardiac differentiation, remained constant or even declined with higher concentrations of EPA. In conclusion, we have demonstrated that treatment of mESCs undergoing cardiac differentiation with low concentration, but not high concentration of EPA up-regulate transcription of genes associated with cardiac development. "	"The role of TORC1 in muscle development in Drosophila. Myogenesis is an important process during both development and muscle repair. Previous studies suggest that mTORC1 plays a role in the formation of mature muscle from immature muscle precursor cells. Here we show that gene expression for several myogenic transcription factors including Myf5, Myog and Mef2c but not MyoD and myosin heavy chain isoforms decrease when C2C12 cells are treated with rapamycin, supporting a role for mTORC1 pathway during muscle development. To investigate the possibility that mTORC1 can regulate muscle in vivo we ablated the essential dTORC1 subunit Raptor in Drosophila melanogaster and found that muscle-specific knockdown of Raptor causes flies to be too weak to emerge from their pupal cases during eclosion. Using a series of GAL4 drivers we also show that muscle-specific Raptor knockdown also causes shortened lifespan, even when eclosure is unaffected. Together these results highlight an important role for TORC1 in muscle development, integrity and function in both Drosophila and mammalian cells. "	"SOCS2 Controls Proliferation and Stemness of Hematopoietic Cells under Stress Conditions and Its Deregulation Marks Unfavorable Acute Leukemias. Hematopoietic stem cells (HSC) promptly adapt hematopoiesis to stress conditions, such as infection and cancer, replenishing bone marrow-derived circulating populations, while preserving the stem cell reservoir. SOCS2, a feedback inhibitor of JAK-STAT pathways, is expressed in most primitive HSC and is upregulated in response to STAT5-inducing cytokines. We demonstrate that Socs2 deficiency unleashes HSC proliferation in vitro, sustaining STAT5 phosphorylation in response to IL3, thrombopoietin, and GM-CSF. In vivo, SOCS2 deficiency leads to unrestricted myelopoietic response to 5-fluorouracil (5-FU) and, in turn, induces exhaustion of long-term HSC function along serial bone marrow transplantations. The emerging role of SOCS2 in HSC under stress conditions prompted the investigation of malignant hematopoiesis. High levels of SOCS2 characterize unfavorable subsets of acute myeloid and lymphoblastic leukemias, such as those with MLL and BCR/ABL abnormalities, and correlate with the enrichment of genes belonging to hematopoietic and leukemic stemness signatures. In this setting, SOCS2 and its correlated genes are part of regulatory networks fronted by IKZF1/Ikaros and MEF2C, two transcriptional regulators involved in normal and leukemic hematopoiesis that have never been linked to SOCS2. Accordingly, a comparison of murine wt and Socs2(-/-) HSC gene expression in response to 5-FU revealed a significant overlap with the molecular programs that correlate with SOCS2 expression in leukemias, particularly with the oncogenic pathways and with the IKZF1/Ikaros and MEF2C-predicted targets. Lentiviral gene transduction of murine hematopoietic precursors with Mef2c, but not with Ikzf1, induces Socs2 upregulation, unveiling a direct control exerted by Mef2c over Socs2 expression."	"[Wnt3a combined with bone morphogenetic protein 9 induce C3H10T1/2 cells differentiation into cardiomyocyte-like cells in vitro]. To investigate the effects of Wnt3a alone and combined with bone morphogenetic protein 9 (BMP9) on the differentiation of C3H10T1/2 cells into cardiomyocyte-like cells. Recombinant adenovirus GFP, BMP9 and Wnt3a were amplified with human embryo kidney 293 cell line (HEK293 cells) and transferred into C3H10T1/2 cells. Three weeks after transfection, the cell morphology and the expression of green fluorescent protein in cells transfected with GFP, BMP9 and Wnt3a were observed by an inverted microscope and a fluorescence microscope. Flow cytometry was performed to detect cell transfection efficiency. The expressions of cardiac-specific proteins connexin 43 (Cx43), cardiac troponin T (cTnT) and genes GATA binding protein 4 (GATA4), myocyte enhancer factor 2C (MEF2C) were analyzed by Western blotting, immunofluorescence and real-time quantitative PCR (qRT-PCR). High-titer recombinant adenovirus was generated with HEK293 cells. The expressions of Cx43, cTnT, GATA4 and MEF2C were similar among Wnt3a group, GFP group and control group, but they significantly increased in cells when co-induced by Wnt3a and BMP9 for 3 weeks. The expressions of Cx43, cTnT, GATA4 and MEF2C showed no significant difference between BMP9 group and Wnt3a and BMP9 co-induction group. Wnt3a can not promote the differentiation of C3H10T1/2 cells into cardiomyocyte-like cells by itself, but co-induction by Wnt3a and BMP9 can promote the differentiation."	"Phenotypic and molecular convergence of 2q23.1 deletion syndrome with other neurodevelopmental syndromes associated with autism spectrum disorder. Roughly 20% of autism spectrum disorders (ASD) are syndromic with a well-established genetic cause. Studying the genes involved can provide insight into the molecular and cellular mechanisms of ASD. 2q23.1 deletion syndrome (causative gene, MBD5) is a recently identified genetic neurodevelopmental disorder associated with ASD. Mutations in MBD5 have been found in ASD cohorts. In this study, we provide a phenotypic update on the prevalent features of 2q23.1 deletion syndrome, which include severe intellectual disability, seizures, significant speech impairment, sleep disturbance, and autistic-like behavioral problems. Next, we examined the phenotypic, molecular, and network/pathway relationships between nine neurodevelopmental disorders associated with ASD: 2q23.1 deletion Rett, Angelman, Pitt-Hopkins, 2q23.1 duplication, 5q14.3 deletion, Kleefstra, Kabuki make-up, and Smith-Magenis syndromes. We show phenotypic overlaps consisting of intellectual disability, speech delay, seizures, sleep disturbance, hypotonia, and autistic-like behaviors. Molecularly, MBD5 possibly regulates the expression of UBE3A, TCF4, MEF2C, EHMT1 and RAI1. Network analysis reveals that there could be indirect protein interactions, further implicating function for these genes in common pathways. Further, we show that when MBD5 and RAI1 are haploinsufficient, they perturb several common pathways that are linked to neuronal and behavioral development. These findings support further investigations into the molecular and pathway relationships among genes linked to neurodevelopmental disorders and ASD, which will hopefully lead to common points of regulation that may be targeted toward therapeutic intervention. "	"Lipoprotein receptor-related protein 6 is required for parathyroid hormone-induced Sost suppression. Parathyroid hormone (PTH) suppresses the expression of the bone formation inhibitor sclerostin (Sost) in osteocytes by inducing nuclear accumulation of histone deacetylases (HDACs) to inhibit the myocyte enhancer factor 2 (MEF2)-dependent Sost bone enhancer. Previous studies revealed that lipoprotein receptor-related protein 6 (LRP6) mediates the intracellular signaling activation and the anabolic bone effect of PTH. Here, we investigated whether LRP6 mediates the inhibitory effect of PTH on Sost using an osteoblast-specific Lrp6-knockout (LRP6-KO) mouse model. An increased level of Sost mRNA expression was detected in femur tissue from LRP6-KO mice, compared to wild-type littermates. The number of osteocytes expressing sclerostin protein was also increased in bone tissue of LRP6-KO littermates, indicating a negative regulatory role of LRP6 on Sost/sclerostin. In wild-type littermates, intermittent PTH treatment significantly suppressed Sost mRNA expression in bone and the number of sclerostin(+) osteocytes, while the effect of PTH was much less significant in LRP6-KO mice. Additionally, PTH-induced downregulation of MEF2C and 2D, as well as HDAC changes in osteocytes, were abrogated in LRP6-KO mice. These data indicate that LRP6 is required for PTH suppression of Sost expression. "	"Peptide-enhanced mRNA transfection in cultured mouse cardiac fibroblasts and direct reprogramming towards cardiomyocyte-like cells. The treatment of myocardial infarction is a major challenge in medicine due to the inability of heart tissue to regenerate. Direct reprogramming of endogenous cardiac fibroblasts into functional cardiomyocytes via the delivery of transcription factor mRNAs has the potential to regenerate cardiac tissue and to treat heart failure. Even though mRNA delivery to cardiac fibroblasts has the therapeutic potential, mRNA transfection in cardiac fibroblasts has been challenging. Herein, we develop an efficient mRNA transfection in cultured mouse cardiac fibroblasts via a polyarginine-fused heart-targeting peptide and lipofectamine complex, termed C-Lipo and demonstrate the partial direct reprogramming of cardiac fibroblasts towards cardiomyocyte cells. C-Lipo enabled the mRNA-induced direct cardiac reprogramming due to its efficient transfection with low toxicity, which allowed for multiple transfections of Gata4, Mef2c, and Tbx5 (GMT) mRNAs for a period of 2 weeks. The induced cardiomyocyte-like cells had α-MHC promoter-driven GFP expression and striated cardiac muscle structure from α-actinin immunohistochemistry. GMT mRNA transfection of cultured mouse cardiac fibroblasts via C-Lipo significantly increased expression of the cardiomyocyte marker genes, Actc1, Actn2, Gja1, Hand2, and Tnnt2, after 2 weeks of transfection. Moreover, this study provides the first direct evidence that the stoichiometry of the GMT reprogramming factors influence the expression of cardiomyocyte marker genes. Our results demonstrate that mRNA delivery is a potential approach for cardiomyocyte generation. "	"RBM4-MEF2C network constitutes a feed-forward circuit that facilitates the differentiation of brown adipocytes. Myocyte enhancer factor 2c (MEF2C) is the MADS-box type transcription factor involved in the differentiation of cardiac and skeletal muscle and synaptic formation. Alternatively spliced transcripts of the MEF2C gene were proven to encode isoforms which exert distinct functions in transcriptional regulation. During the differentiation of brown adipocytes, upregulated RBM4 enhanced skipping of the MEF2Cγ region which functions as a transcriptional repressor. The presence of an overexpressed MEF2Cγ- isoform in turn induced transcriptional activity of the RBM4 promoter, constituting a positive feedback circuit in differentiating brown adipocytes. The RBM4-MEF2Cγ- network induced the expression of &quot;myogenic&quot; miR-1 to a greater extent than did PRDM17, BMP7 C/EBPβ, or UCP1 transcripts in C3H10T1/2 cells. Overexpression of miR-1 independently exerted the same activity as RBM4 and the MEF2Cγ- isoform of upregulating brown adipocyte-specific factors in C3H10T1/2 cells, which suggests a potential effect of miR-1 on brown adipocytes. These results indicated that the RBM4-MEF2C-miR-1 network constitutes a novel mechanism which programs the gene expression profile toward the development of brown adipocytes. "	"Mef2c-F10N enhancer driven β-galactosidase (LacZ) and Cre recombinase mice facilitate analyses of gene function and lineage fate in neural crest cells. Neural crest cells (NCC) comprise a multipotent, migratory stem cell and progenitor population that gives rise to numerous cell and tissue types within a developing embryo, including craniofacial bone and cartilage, neurons and glia of the peripheral nervous system, and melanocytes within the skin. Here we describe two novel stable transgenic mouse lines suitable for lineage tracing and analysis of gene function in NCC. Firstly, using the F10N enhancer of the Mef2c gene (Mef2c-F10N) linked to LacZ, we generated transgenic mice (Mef2c-F10N-LacZ) that express LacZ in the majority, if not all migrating NCC that delaminate from the neural tube. Mef2c-F10N-LacZ then continues to be expressed primarily in neurogenic, gliogenic and melanocytic NCC and their derivatives, but not in ectomesenchymal derivatives. Secondly, we used the same Mef2c-F10N enhancer together with Cre recombinase to generate transgenic mice (Mef2c-F10N-Cre) that can be used to indelibly label, or alter gene function in, migrating NCC and their derivatives. At early stages of development, Mef2c-F10N-LacZ and Mef2c-F10N-Cre label NCC in a pattern similar to Wnt1-Cre mice, with the exception that Mef2c-F10N-LacZ and Mef2c-F10N-Cre specifically label NCC that have delaminated from the neural plate, while premigratory NCC are not labeled. Thus, our Mef2c-F10N-LacZ and Mef2c-F10N-Cre transgenic mice provide new resources for tracing migratory NCC and analyzing gene function in migrating and differentiating NCC independently of NCC formation. "	"Phosphorylation-dependent degradation of MEF2C contributes to regulate G2/M transition. The Myocyte Enhancer Factor 2C (MEF2C) transcription factor plays a critical role in skeletal muscle differentiation, promoting muscle-specific gene transcription. Here we report that in proliferating cells MEF2C is degraded in mitosis by the Anaphase Promoting Complex/Cyclosome (APC/C) and that this downregulation is necessary for an efficient progression of the cell cycle. We show that this mechanism of degradation requires the presence on MEF2C of a D-box (R-X-X-L) and 2 phospho-motifs, pSer98 and pSer110. Both the D-box and pSer110 motifs are encoded by the ubiquitous alternate α1 exon. These two domains mediate the interaction between MEF2C and CDC20, a co-activator of APC/C. We further report that in myoblasts, MEF2C regulates the expression of G2/M checkpoint genes (14-3-3γ, Gadd45b and p21) and the sub-cellular localization of CYCLIN B1. The importance of controlling MEF2C levels during the cell cycle is reinforced by the observation that modulation of its expression affects the proliferation rate of colon cancer cells. Our findings show that beside the well-established role as pro-myogenic transcription factor, MEF2C can also function as a regulator of cell proliferation. "	"Myocyte enhancer factor 2C function in skeletal muscle is required for normal growth and glucose metabolism in mice. Skeletal muscle is the most abundant tissue in the body and is a major source of total energy expenditure in mammals. Skeletal muscle consists of fast and slow fiber types, which differ in their energy usage, contractile speed, and force generation. Although skeletal muscle plays a major role in whole body metabolism, the transcription factors controlling metabolic function in muscle remain incompletely understood. Members of the myocyte enhancer factor 2 (MEF2) family of transcription factors play crucial roles in skeletal muscle development and function. MEF2C is expressed in skeletal muscle during development and postnatally and is known to play roles in sarcomeric gene expression, fiber type control, and regulation of metabolic genes. We generated mice lacking Mef2c exclusively in skeletal muscle using a conditional knockout approach and conducted a detailed phenotypic analysis. Mice lacking Mef2c in skeletal muscle on an outbred background are viable and grow to adulthood, but they are significantly smaller in overall body size compared to control mice and have significantly fewer slow fibers. When exercised in a voluntary wheel running assay, Mef2c skeletal muscle knockout mice aberrantly accumulate glycogen in their muscle, suggesting an impairment in normal glucose homeostasis. Consistent with this notion, Mef2c skeletal muscle knockout mice exhibit accelerated blood glucose clearance compared to control mice. These findings demonstrate that MEF2C function in skeletal muscle is important for metabolic homeostasis and control of overall body size."	"Hydrogen sulfide mitigates homocysteine-mediated pathological remodeling by inducing miR-133a in cardiomyocytes. An elevated level of homocysteine called hyperhomocysteinemia (HHcy) is associated with pathological cardiac remodeling. Hydrogen sulfide (H2S) acts as a cardioprotective gas; however, the mechanism by which H2S mitigates homocysteine-mediated pathological remodeling in cardiomyocytes is unclear. We hypothesized that H2S ameliorates HHcy-mediated hypertrophy by inducing cardioprotective miR-133a in cardiomyocytes. To test the hypothesis, HL1 cardiomyocytes were treated with (1) plain medium (control, CT), (2) 100 µM of homocysteine (Hcy), (3) Hcy with 30 µM of H2S (Hcy + H2S), and (4) H2S for 24 h. The levels of hypertrophy markers: c-fos, atrial natriuretic peptide (ANP), and beta-myosin heavy chain (β-MHC), miR-133a, and its transcriptional inducer myosin enhancer factor-2C (MEF2C) were determined by Western blotting, RT-qPCR, and immunofluorescence. The activity of MEF2C was assessed by co-immunoprecipitation of MEF2C with histone deacetylase-1(HDAC1). Our results show that H2S ameliorates homocysteine-mediated up-regulation of c-fos, ANP, and β-MHC, and down-regulation of MEF2C and miR-133a. HHcy induces the binding of MEF2C with HDAC1, whereas H2S releases MEF2C from MEF2C-HDAC1 complex causing activation of MEF2C. These findings elicit that HHcy induces cardiac hypertrophy by promoting MEF2C-HDAC1 complex formation that inactivates MEF2C causing suppression of anti-hypertrophy miR-133a in cardiomyocytes. H2S mitigates hypertrophy by inducing miR-133a through activation of MEF2C in HHcy cardiomyocytes. To our knowledge, this is a novel mechanism of H2S-mediated activation of MEF2C and induction of miR-133a and inhibition of hypertrophy in HHcy cardiomyocytes."	"The control operated by the cell cycle machinery on MEF2 stability contributes to the downregulation of CDKN1A and entry into S phase. MEF2s are pleiotropic transcription factors (TFs) which supervise multiple cellular activities. During the cell cycle, MEF2s are activated at the G0/G1 transition to orchestrate the expression of the immediate early genes in response to growth factor stimulation. Here we show that, in human and murine fibroblasts, MEF2 activities are downregulated during late G1. MEF2C and MEF2D interact with the E3 ligase F-box protein SKP2, which mediates their subsequent degradation through the ubiquitin-proteasome system. The cyclin-dependent kinase 4 (CDK4)/cyclin D1 complex phosphorylates MEF2D on serine residues 98 and 110, and phosphorylation of these residues is an important determinant for SKP2 binding. Unscheduled MEF2 transcription during the cell cycle reduces cell proliferation, whereas its containment sustains DNA replication. The CDK inhibitor p21/CDKN1A gene is a MEF2 target gene required to exert this antiproliferative influence. MEF2C and MEF2D bind a region within the first intron of CDKN1A, presenting epigenetic markers of open chromatin. Importantly, H3K27 acetylation within this regulative region depends on the presence of MEF2D. We propose that following the initial engagement in the G0/G1 transition, MEF2C and MEF2D must be polyubiquitylated and degraded during G1 progression to diminish the transcription of the CDKN1A gene, thus favoring entry into S phase. "	"Pathway-based analysis of genome-wide siRNA screens reveals the regulatory landscape of APP processing. The progressive aggregation of Amyloid-β (Aβ) in the brain is a major trait of Alzheimer's Disease (AD). Aβ is produced as a result of proteolytic processing of the β-amyloid precursor protein (APP). Processing of APP is mediated by multiple enzymes, resulting in the production of distinct peptide products: the non-amyloidogenic peptide sAPPα and the amyloidogenic peptides sAPPβ, Aβ40, and Aβ42. Using a pathway-based approach, we analyzed a large-scale siRNA screen that measured the production of different APP proteolytic products. Our analysis identified many of the biological processes/pathways that are known to regulate APP processing and have been implicated in AD pathogenesis, as well as revealing novel regulatory mechanisms. Furthermore, we also demonstrate that some of these processes differentially regulate APP processing, with some mechanisms favouring production of certain peptide species over others. For example, synaptic transmission having a bias towards regulating Aβ40 production over Aβ42 as well as processes involved in insulin and pancreatic biology having a bias for sAPPβ production over sAPPα. In addition, some of the pathways identified as regulators of APP processing contain genes (CLU, BIN1, CR1, PICALM, TREM2, SORL1, MEF2C, DSG2, EPH1A) recently implicated with AD through genome wide association studies (GWAS) and associated meta-analysis. In addition, we provide supporting evidence and a deeper mechanistic understanding of the role of diabetes in AD. The identification of these processes/pathways, their differential impact on APP processing, and their relationships to each other, provide a comprehensive systems biology view of the &quot;regulatory landscape&quot; of APP. "	"Analysis of microRNA expression in canine mammary cancer stem-like cells indicates epigenetic regulation of transforming growth factor-beta signaling. Cancer stem cells (CSCs) display both unique self-renewal ability as well as the ability to differentiate into many kinds of cancer cells. They are supposed to be responsible for cancer initiation, recurrence and drug resistance. Despite the fact that a variety of methods are currently employed in order to target CSCs, little is known about the regulation of their phenotype and biology by miRNAs. The aim of our study was to assess miRNA expression in canine mammary cancer stem-like cells (expressing stem cell antigen 1, Sca-1; CD44 and EpCAM) sorted from canine mammary tumour cell lines (CMT-U27, CMT-309 and P114). In order to prove their stem-like phenotype, we conducted a colony formation assay that confirmed their ability to form colonies from a single cell. Profiles of miRNA expression were investigated using Agilent custom-designed microarrays. The results were further validated by real-time rt-PCR analysis of expression of randomly selected miRNAs. Target genes were indicated and analysed using Kioto Encyclopedia of Genes and Genomes (KEGG) and BioCarta databases. The results revealed 24 down-regulated and nine up-regulated miRNAs in cancer stem-like cells compared to differentiated tumour cells. According to KEGG and BioCarta databases, target genes (n=240) of significantly down-regulated miRNAs were involved in transforming growth factor-beta signaling, mitogen-activated protein kinases (MAPK) signaling pathway, anaplastic lymphoma receptor tyrosine kinase (ALK) and peroxisome proliferator-activated receptor gamma, coactivator 1 alpha (PGC1A) pathways. The analysis of single-gene overlapping with different pathways showed that the most important genes were: TGFBR1, TGFBR2, SOS1, CHUK, PDGFRA, SMAD2, MEF2A, MEF2C and MEF2D. All of them are involved in tumor necrosis factor-beta signaling and may indicate its important role in cancer stem cell biology. Increased expression of TGFBR2, SMAD2, MEF2A and MEF2D in canine mammary cancer stem-like cells was further confirmed by real-time-qPCR. The results of our study point at epigenetic differences between cancer stem-like cells and differentiated tumour cells, which may be important not only for veterinary medicine but also for comparative oncology. "	"Effect of desipramine on gene expression in the mouse frontal cortex - microarray study. These studies aimed to identify the genes differentially expressed in the frontal cortex of mice treated repeatedly with either saline or desipramine (DMI). Differences in gene expression in the mouse frontal cortex were studied using a whole-genome microarray approach. The analyses revealed a group of 88 transcripts (18 genes) that were differentially expressed between the mice treated with saline and those treated with DMI. These genes include Spnb2, Mef2c, Ncam1, Hsp90ab1, Kif1b, Ddx6 and Gsk3b, which were connected in the gene relationship network. It appears that one week of DMI administration measurably altered the expression of a small number of genes, including genes connected with neuroplasticity and cytoskeletal changes, the regulation of calcium levels in the cell or translation processes."	NA
+"NRXN1"	"complex neurodevelopmental disorder"	"The Neurodevelopmental Spectrum of Synaptic Vesicle Cycling Disorders. In this review, we describe and discuss neurodevelopmental phenotypes arising from rare, high penetrance genomic variants which directly influence synaptic vesicle cycling (SVC disorders). Pathogenic variants in each SVC disorder gene lead to disturbance of at least one SVC sub-process, namely vesicle trafficking (for example KIF1A and GDI1), clustering (for example TRIO, NRXN1 and SYN1), docking and priming (for example STXBP1), fusion (for example SYT1 and PRRT2) or re-uptake (for example DNM1, AP1S2 and TBC1D24). We observe that SVC disorders share a common set of neurological symptoms (movement disorders, epilepsies), cognitive impairments (developmental delay, intellectual disabilities, cerebral visual impairment) and mental health difficulties (autism, ADHD, psychiatric symptoms). On the other hand, there is notable phenotypic variation between and within disorders, which may reflect selective disruption to SVC sub-processes, spatiotemporal and cell-specific gene expression profiles, mutation-specific effects, or modifying factors. Understanding the common cellular and systems mechanisms underlying neurodevelopmental phenotypes in SVC disorders, and the factors responsible for variation in clinical presentations and outcomes, may translate to personalised clinical management and improved quality of life for patients and families."	"Screening and identification of biomarkers associated with the diagnosis and prognosis of lung adenocarcinoma. In this study, we aimed to identify the pathogenesis and prognostic biomarkers of lung adenocarcinoma (LUAD). Differentially expressed mRNAs (DEmRNAs) and single nucleotide polymorphism (SNP) mutant genes were screened. In addition, enrichment and protein-protein interaction (PPI) network analyses of the SNP-mutated genes were performed. Thereafter, the correlation between gene mutation and expression was analyzed. Finally, the mutated genes associated with LUAD prognosis were validated on the basis of The Cancer Genome Atlas (TCGA) database. A total of 2502 DEmRNAs were initially screened in this study. We identified 756 SNP-mutated genes from more than 30 cases. The Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis revealed that the mutated genes involved in LUAD were mainly associated with the ECM-receptor interaction, focal adhesion, and calcium signaling pathways. Tumor protein p53 (TP53) and neurexin 1 (NRXN1) with the higher degree were chosen as the hub genes in the PPI network. In addition, the correlation analysis revealed six genes, including assembly factor for spindle microtubules (ASPM), centromere protein F (CENPF), contactin 3 (CNTN3), catenin delta 2 (CTNND2), PKHD1 like 1 (PKHD1L1), and semaphorin 6D (SEMA6D), and three SNP mutations at ASPM rs368020495, CENPF rs762653487, and PKHD1L1 rs768349010 sites that were found to be associated with LUAD prognosis. Further validation showed that among the aforementioned six mutated genes, CENPF was upregulated and SEMA6D was downregulated. CENPF, SEMA6D, TP53, and NRXN1 were found to be closely associated with the development of LUAD."	"Dietary phytochemicals modulate experience-dependent changes in Neurexin gene expression and alternative splicing in mice after chronic variable stress exposure. Neurexins (NRXNs) are cell-adhesion molecules important in the formation and remodeling of neural circuits. It has been shown that aversive environmental stimuli can affect the expression pattern of Neurexin genes (Nrxns) impacting the regulation of synaptic strength. Accumulated evidence suggests that, after chronic exposure to psychological stress, the triggered changes in gene expression and splicing patterns of Nrxns may be involved in aversive conditioning. Previously, we have demonstrated that a novel treatment using dietary phytochemicals can modulate the response to chronic variable stress (CVS) in mice. Here, we aimed to further investigate the long-term plasticity changes after CVS by focusing on the regulation of NRXNs at synapses. We found that CVS differentially triggers the region-specific gene expression of Nrxns in mice Nucleus Accumbens (NAc) and Hippocampus (HIPP). The prophylactic treatment with the combination of two phytochemicals dihydrocaffeic acid (DHCA) and Malvidin-3-O-glucoside (Mal-gluc) differentially modulated the stress-induced effects on Nrxn1 and 3 mRNA expression in these brain areas and promoted the alternative splicing of Nrxn3 in HIPP. Overall, our data supports the prophylactic effect of dietary phytochemicals in the restoration of stress-induced plasticity changes in mouse brain. By intervening in activity-dependent plasticity at synapses, these compounds may attenuate the effects of chronic aversive conditioning. We propose that an early therapeutic intervention may help with disorders of negative affect, such as depression or post-traumatic stress disorder. Our future studies will address how DHCA/Mal-gluc might serve as a potential complement for current therapies in depression and other mood disorders."	"Further insight into the neurobehavioral pattern of children carrying the 2p16.3 heterozygous deletion involving NRXN1: report of five new cases. Increasing evidence links heterozygosity for NRXN1 gene deletions to a clinically wide spectrum of neurodevelopmental, psychiatric, and neurological disorders. However, to date, the neurocognitive and social communication features of children carrying this genomic rearrangement have not been assessed in detail. The cognitive and behavioral profiles of five children carrying a heterozygous NRXN1 deletion were investigated through systematic assessment of the cognitive and developmental levels, adaptive profile, and presence of behavioral symptoms and autistic features. Furthermore, four transmitting parents were assessed by means of cognitive, psychopathological and parental stress tests. A below-average cognitive level was documented in all children, and defective adaptive levels were observed in four of them. Three of the five children were diagnosed as having autism spectrum disorder in comorbidity with intellectual disability/global developmental delay, with a major impairment in social communication skills. The remaining two children presented with isolated intellectual disability and an unclassifiable neurodevelopmental disorder, respectively. This study provide data contributing to a more accurate characterization of the neurobehavioral phenotype of individuals carrying heterozygous NRXN1 deletions. This analysis indicates that these structural rearrangements are associated with a variable expression of neuropsychiatric symptoms, and cast some doubts about the incomplete penetrance of the disorder. This article is protected by copyright. All rights reserved."	"Differential Methylation Pattern of Schizophrenia Candidate Genes in Tetrahydrocannabinol-Consuming Treatment-Resistant Schizophrenic Patients Compared to Non-Consumer Patients and Healthy Controls. Patients suffering from schizophrenic psychosis show reduced synaptic connectivity compared to healthy individuals. Furthermore, the use of cannabis often precedes the onset of schizophrenic psychosis. Therefore, we investigated whether consumption of cannabis has an impact on the methylation pattern of schizophrenia candidate genes concerned with the development and preservation of synapses and synaptic function. Fifty blood samples of outpatients affected by treatment-resistant schizophrenic psychosis were collected in the outpatient department of Ch Ste Anne/INSERM (Paris, France). Extracted DNA was sent to the LMN/MHH (Hanover, Germany) where DNA samples were bisulfite converted. The methylation patterns of the promoter region of neuregulin 1 (NRG1), neurexin (NRXN1), disrupted in schizophrenia 1 (DISC1), and microtubule-associated-protein tau (MAPT) were then analysed by sequencing according to Sanger. In NRXN1 the group of non-consumer patients showed a methylation rate slightly lower than controls. In patients with preliminary use of tetrahydrocannabinol (THC) the NRXN1 promoter turned out to be methylated almost two times higher than in non-consumer patients. In MAPT, non-consumer patients showed a significant lower mean methylation rate in comparison to controls. In THC-consuming patients the difference compared with controls became less. NRG1 and DISC1 showed no significant differences between groups, whereas DISC1 appeared to be not methylated at all. In MAPT and NRXN1 mean methylation rates were lower in non-consumer patients compared with controls, which seems to be a compensatory mechanism. With consumption of THC, mean methylation rates were increased: in the case of MAPT compared with controls, and in NRXN1 even significantly beyond that. Methylation of NRG1 and DISC1 seems not to be affected by the psychiatric disorder or by consumption of THC."	"Integrative In Silico Analysis of Genome-Wide DNA Methylation Profiles in Schizophrenia. Schizophrenia (SZ) is a complex and severe psychiatric disorder, which has a global lifetime prevalence of 0.4% and a heritability of around 0.81. A number of epigenome-wide association studies (EWAS) have been carried out for SZ, with discordant results. The main aim of this study was to carry out an integrative in silico analysis of available genome-wide DNA methylation profiles in schizophrenia. In this work, an integration of multiple lines of evidence (top candidate genes from several EWAS and genome-wide expression and association data) was carried out, in order to identify top differentially methylated (DM) genes for SZ. In addition, functional enrichment and protein-protein interaction analyses were carried out. Several top differentially methylated genes, such as APC, CACNB2, and PRKN, were found, and an enrichment of binding sites for brain-expressed transcription factors, such as FOXO1, MYB, and ZIC3, was also observed. Moreover, a protein-protein interaction network showed a central role for DISC1 and ZNF688 genes, and experimentally validated targets of MIR-137, such as and KCNB2, NRXN1, and SYN2, were identified among DM genes. This is the first integrative in silico analysis of available genome-wide DNA methylation profiles in schizophrenia. This work identified novel candidate genes and pathways for SZ and provides the basis to explore their role in the pathogenesis of SZ in future studies."	"Convergent brain microstructure across multiple genetic models of schizophrenia and autism spectrum disorder: A feasibility study. Neuroimaging studies of psychiatric illness have revealed a broad spectrum of structural and functional perturbations that have been attributed in part to the complex genetic heterogeneity underpinning these disorders. These perturbations have been identified in both preclinical genetic models and in patients when compared to control populations, but recent work has also demonstrated strong evidence for genetic, molecular, and structural convergence of several psychiatric diseases. We explored potential similarities in neural microstructure in preclinical genetic models of ASD (Fmr1, Nrxn1, Pten) and schizophrenia (Disc1 svΔ2) and in age- and sex-matched control animals with diffusion tensor imaging (DTI) and neurite orientation dispersion and density imaging (NODDI). Our findings demonstrate a convergence in brain microstructure across these four genetic models with both tract-based and region-of-interest based analyses, which continues to buttress an emerging understanding of converging neural microstructure in psychiatric disease."	"Unraveling Mechanisms of Patient-Specific NRXN1 Mutations in Neuropsychiatric Diseases Using Human Induced Pluripotent Stem Cells. Rare heterozygous deletions in the neurexin 1 (NRXN1) gene robustly increase an individual's risk of developing neurological and psychiatric disorders. However, the molecular bases by which different mutations result in different clinical presentations, with variable penetrance, are unknown. To better understand the molecular and cellular consequences of heterozygous NRXN1 mutations, Flaherty and colleagues studied how patient mutations influence the NRXN1 isoform repertoire and neuronal phenotypes using induced pluripotent stem (iPS) cells. Advancing from disease association to mechanistic insights, the authors provide insight into how patient mutations might impinge on neuronal function. This research highlights the value of iPS cells for elucidating otherwise elusive links between molecular and neuronal function. In addition, they provide further evidence of the importance of alternative splicing in the pathophysiology of neuropsychiatric diseases."	"Genotype Variations of rs13381800 in TCF4 Gene and rs17039988 in NRXN1 Gene among a Sample of Iranian Patients with Schizophrenia. Objective: Schizophrenia is a complicated mental disorder that affects about 1% of the world's population. It is a complex disease and is approximately 80% inherited. One of the candidate genes in schizophrenia is transcription factor 4 (TCF4), which is positioned on chromosome 18 and is a transcription factor that plays a role in the transcription of Neurexin 1(NRXN1) gene, which is one of the candidate genes for developing schizophrenia. This case-control study aimed to investigate the correlation of TCF4 rs13381800 and NRXN1 rs17039988 polymorphisms with the risk of schizophrenia in a sample of Iranian patients with schizophrenia. Method: A total of 200 individuals were included in this study: 100 patients with schizophrenia (65 males and 35 females), with the mean age of 40.80 ± 11.298 years, and 100 as a control group (63 males and 37 females), with the mean age 32.92 ± 7.391 years. Allele specific polymerase chain reaction and restriction fragment length polymorphism (PCR-RFLP) were done, respectively, for genotyping of rs13381800 (T/C) and rs17039988 (A/C) polymorphisms. Results: The results showed that the frequency of C / C genotype in rs13381800 in patients' group was 9%, while it was 13% in the control group. Also, the frequency of C / C genotype in rs17039988 was 9% in patients and 7% in control groups. Statistical analysis of polymorphisms showed no correlation between patients and controls in rs13381800 (OR = 1.51; CI = 95%; P = 0.366) and rs17039988 (OR = 0.76; CI = 95%; P = 0.602). Conclusion: No significant difference was found between rs13381800 and rs17039988 genotypes between patients and control groups in terms of gender, age and education in the patients group. Our study suggests that there was no correlation between desired polymorphisms with schizophrenia in the studied population."	"LRRTMs Organize Synapses through Differential Engagement of Neurexin and PTPσ. Presynaptic neurexins (Nrxs) and type IIa receptor-type protein tyrosine phosphatases (RPTPs) organize synapses through a network of postsynaptic ligands. We show that leucine-rich-repeat transmembrane neuronal proteins (LRRTMs) differentially engage the protein domains of Nrx but require its heparan sulfate (HS) modification to induce presynaptic differentiation. Binding to the HS of Nrx is sufficient for LRRTM3 and LRRTM4 to induce synaptogenesis. We identify mammalian Nrx1γ as a potent synapse organizer and reveal LRRTM4 as its postsynaptic ligand. Mice expressing a mutant form of LRRTM4 that cannot bind to HS show structural and functional deficits at dentate gyrus excitatory synapses. Through the HS of Nrx, LRRTMs also recruit PTPσ to induce presynaptic differentiation but function to varying degrees in its absence. PTPσ forms a robust complex with Nrx, revealing an unexpected interaction between the two presynaptic hubs. These findings underscore the complex interplay of synapse organizers in specifying the molecular logic of a neural circuit."	"The clinical relevance of intragenic NRXN1 deletions. Intragenic NRXN1 deletions are susceptibility variants for neurodevelopmental disorders; however, their clinical interpretation is often unclear. Therefore, a literature study and an analysis of 43 previously unpublished deletions are provided. The literature cohort covered 629 heterozygous NRXN1 deletions: 148 in controls, 341 in probands and 140 in carrier relatives, and was used for clinical hypothesis testing. Exact breakpoint determination was performed for 43 in-house deletions. The prevalence of exonic NRXN1 deletions in controls was ~1/3000 as compared with ~1/800 in patients with neurodevelopmental/neuropsychiatric disorders. The differential distribution of deletions across the gene between controls and probands allowed to distinguish distinct areas within the gene. Exon 6-24 deletions appeared only twice in over 100000 control individuals, had an estimated penetrance for neurodevelopmental disorders of 32.43%, a de novo rate of 50% and segregated mainly with intellectual disability (ID) and schizophrenia. In contrast, exon 1-5 deletions appeared in 20 control individuals, had an estimated penetrance of 12.59%, a de novo rate of 32.5% and were reported with a broad range of neurodevelopmental phenotypes. Exact breakpoint determination revealed six recurrent intron 5 deletions. Exon 6-24 deletions have a high penetrance and are mainly associated with ID and schizophrenia. In contrast, the actual contribution of exon 1-5 deletions to a neurodevelopmental/neuropsychiatric disorder in an individual patient and family remains very difficult to assess. To enhance the clinical interpretation, this study provides practical considerations for counselling and an interactive table for comparing a deletion of interest with the available literature data."	"Increased Ca<sup>2+</sup> signaling in NRXN1α<sup> +/- </sup> neurons derived from ASD induced pluripotent stem cells. Autism spectrum disorder (ASD) is a neurodevelopmental disorder with a high co-morbidity of epilepsy and associated with hundreds of rare risk factors. NRXN1 deletion is among the commonest rare genetic factors shared by ASD, schizophrenia, intellectual disability, epilepsy, and developmental delay. However, how NRXN1 deletions lead to different clinical symptoms is unknown. Patient-derived cells are essential to investigate the functional consequences of NRXN1 lesions to human neurons in different diseases. Skin biopsies were donated by five healthy donors and three ASD patients carrying NRXN1α<sup> +/- </sup> deletions. Seven control and six NRXN1α<sup> +/- </sup> iPSC lines were derived and differentiated into day 100 cortical excitatory neurons using dual SMAD inhibition. Calcium (Ca<sup>2+</sup>) imaging was performed using Fluo4-AM, and the properties of Ca<sup>2+</sup> transients were compared between two groups of neurons. Transcriptome analysis was carried out to undercover molecular pathways associated with NRXN1α<sup> +/- </sup> neurons. NRXN1α<sup> +/- </sup> neurons were found to display altered calcium dynamics, with significantly increased frequency, duration, and amplitude of Ca<sup>2+</sup> transients. Whole genome RNA sequencing also revealed altered ion transport and transporter activity, with upregulated voltage-gated calcium channels as one of the most significant pathways in NRXN1α<sup> +/- </sup> neurons identified by STRING and GSEA analyses. This is the first report to show that human NRXN1α<sup> +/- </sup> neurons derived from ASD patients' iPSCs present novel phenotypes of upregulated VGCCs and increased Ca<sup>2+</sup> transients, which may facilitate the development of drug screening assays for the treatment of ASD."	"Molecular causes of sex-specific deficits in rodent models of neurodevelopmental disorders. Neurodevelopmental disorders (NDDs) such as intellectual disability and autism spectrum disorder consistently show a male bias in prevalence, but it remains unclear why males and females are affected with different frequency. While many behavioral studies of transgenic NDD models have focused only on males, the requirement by the National Institutes of Health to consider sex as a biological variable has promoted the comparison of male and female performance in wild-type and mutant animals. Here, we review examples of rodent models of NDDs in which sex-specific deficits were identified in molecular, physiological, and/or behavioral responses, showing sex differences in susceptibility to disruption of genes mutated in NDDs. Haploinsufficiency in genes involved in mechanisms such as synaptic function (GABRB3 and NRXN1), chromatin remodeling (CHD8, EMHT1, and ADNP), and intracellular signaling (CC2D1A and ERK1) lead to more severe behavioral outcomes in males. However, in the absence of behavioral deficits, females can still present with cellular and electrophysiological changes that could be due to compensatory mechanisms or differential allocation of molecular and cellular functions in the two sexes. By contrasting these findings with mouse models where females are more severely affected (MTHFR and AMBRA1), we propose a framework to approach the study of sex-specific deficits possibly leading to sex bias in NDDs."	"Genome-wide methylation and expression profiling identify methylation-associated genes in colorectal cancer. Aim: To identify methylation-associated genes in the carcinogenesis of colorectal cancer (CRC). Materials &amp; methods: Genome-wide patterns of DNA methylation and gene expression in CRC tissues and adjacent normal tissues were determined and further validated in The Cancer Genome Atlas data and Chinese CRC patients, respectively. Gene overexpression and knockdown cells were constructed to investigate their biological roles in CRC. Results: After validations, hypermethylation of eight genes were found to be correlated with their reduced transcription, and hypomethyaltion of three genes were associated with their upregulation. CADM3, CNRIP1, GRHL2, GRIA4, GSTM2 and NRXN1 were associated with the overall survival of CRC patients. CNRIP1 and GSTM2 were mainly responsible for the proliferation in CRC cells. Conclusion: A total of 11 genes may be promising biomarkers for CRC."	"Ketamine Restores Thalamic-Prefrontal Cortex Functional Connectivity in a Mouse Model of Neurodevelopmental Disorder-Associated 2p16.3 Deletion. 2p16.3 deletions, involving heterozygous NEUREXIN1 (NRXN1) deletion, dramatically increase the risk of developing neurodevelopmental disorders, including autism and schizophrenia. We have little understanding of how NRXN1 heterozygosity increases the risk of developing these disorders, particularly in terms of the impact on brain and neurotransmitter system function and brain network connectivity. Thus, here we characterize cerebral metabolism and functional brain network connectivity in Nrxn1α heterozygous mice (Nrxn1α+/- mice), and assess the impact of ketamine and dextro-amphetamine on cerebral metabolism in these animals. We show that heterozygous Nrxn1α deletion alters cerebral metabolism in neural systems implicated in autism and schizophrenia including the thalamus, mesolimbic system, and select cortical regions. Nrxn1α heterozygosity also reduces the efficiency of functional brain networks, through lost thalamic &quot;rich club&quot; and prefrontal cortex (PFC) hub connectivity and through reduced thalamic-PFC and thalamic &quot;rich club&quot; regional interconnectivity. Subanesthetic ketamine administration normalizes the thalamic hypermetabolism and partially normalizes thalamic disconnectivity present in Nrxn1α+/- mice, while cerebral metabolic responses to dextro-amphetamine are unaltered. The data provide new insight into the systems-level impact of heterozygous Nrxn1α deletion and how this increases the risk of developing neurodevelopmental disorders. The data also suggest that the thalamic dysfunction induced by heterozygous Nrxn1α deletion may be NMDA receptor-dependent."	"A Five-microRNA Signature as Prognostic Biomarker in Colorectal Cancer by Bioinformatics Analysis. Mounting evidence has demonstrated that a lot of miRNAs are overexpressed or downregulated in colorectal cancer (CRC) tissues and play a crucial role in tumorigenesis, invasion, and migration. The aim of our study was to screen new biomarkers related to CRC prognosis by bioinformatics analysis. By using the R language edgeR package for the differential analysis and standardization of miRNA expression profiles from The Cancer Genome Atlas (TCGA), 502 differentially expressed miRNAs (343 up-regulated, 159 down-regulated) were screened based on the cut-off criteria of p &lt; 0.05 and |log2FC|&gt;1, then all the patients (421) with differentially expressed miRNAs and complete survival time, status were then randomly divided into train group (212) and the test group (209). Eight miRNAs with p &lt; 0.005 were revealed in univariate cox regression analysis of train group, then stepwise multivariate cox regression was applied for constituting a five-miRNA (hsa-miR-5091, hsa-miR-10b-3p, hsa-miR-9-5p, hsa-miR-187-3p, hsa-miR-32-5p) signature prognostic biomarkers with obviously different overall survival. Test group and entire group shown the same results utilizing the same prescient miRNA signature. The area under curve (AUC) of receiver operating characteristic (ROC) curve for predicting 5 years survival in train group, test group, and whole cohort were 0.79, 0.679, and 0.744, respectively, which demonstrated better predictive power of prognostic model. Furthermore, Univariate cox regression and multivariate cox regression considering other clinical factors displayed that the five-miRNA signature could serve as an independent prognostic factor. In order to predict the potential biological functions of five-miRNA signature, target genes of these five miRNAs were analyzed by Kyoto Encyclopedia of Genes and Genomes (KEGG) signaling pathway and Gene Ontology (GO) enrichment analysis. The top 10 hub genes (ESR1, ADCY9, MEF2C, NRXN1, ADCY5, FGF2, KITLG, GATA1, GRIA1, KAT2B) of target genes in protein protein interaction (PPI) network were screened by string database and Cytoscape 3.6.1 (plug-in cytoHubba). In addition, 19 of target genes were associated with survival prognosis. Taken together, the current study showed the model of five-miRNA signature could efficiently function as a novel and independent prognosis biomarker and therapeutic target for CRC patients."	"Neuronal impact of patient-specific aberrant NRXN1α splicing. NRXN1 undergoes extensive alternative splicing, and non-recurrent heterozygous deletions in NRXN1 are strongly associated with neuropsychiatric disorders. We establish that human induced pluripotent stem cell (hiPSC)-derived neurons well represent the diversity of NRXN1α alternative splicing observed in the human brain, cataloguing 123 high-confidence in-frame human NRXN1α isoforms. Patient-derived NRXN1<sup>+/-</sup> hiPSC-neurons show a greater than twofold reduction in half of the wild-type NRXN1α isoforms and express dozens of novel isoforms from the mutant allele. Reduced neuronal activity in patient-derived NRXN1<sup>+/-</sup> hiPSC-neurons is ameliorated by overexpression of individual control isoforms in a genotype-dependent manner, whereas individual mutant isoforms decrease neuronal activity levels in control hiPSC-neurons. In a genotype-dependent manner, the phenotypic impact of patient-specific NRXN1<sup>+/-</sup> mutations can occur through a reduction in wild-type NRXN1α isoform levels as well as the presence of mutant NRXN1α isoforms."	"Derivation of familial iPSC lines from three ASD patients carrying NRXN1α<sup>+/-</sup> and two controls (NUIGi022-A, NUIGi022-B; NUIGi023-A, NUIGi023-B; NUIGi025-A, NUIGi025-B; NUIGi024-A, NUIGi024-B; NUIGi026-A, NUIGi026-B). NRXN1 copy number variation is a rare genetic factor commonly shared among autism spectrum disorder (ASD), schizophrenia, intellectual disability, epilepsy and developmental delay. Human induced pluripotent stem cells (iPSCs) are essential for disease modeling and drug discovery, but familial cases are particularly rare. We report here the derivation of familial iPSC lines from two controls and three ASD patients carrying NRXN1α<sup>+/-</sup>, using a non-integrating Sendai viral kit. The genotype and karyotype of the resulting iPSCs were validated by whole genome SNP array. All iPSC lines expressed comparable levels of pluripotency markers and could be differentiated into three germ layers."	"Integrated Transcriptome Analyses Revealed Key Target Genes in Mouse Models of Autism. Genetic mutations are the major pathogenic factor of Autism Spectrum Disorder (ASD). In recent years, more and more ASD risk genes have been revealed, among which there are a group of transcriptional regulators. Considering the similarity of the core clinical phenotypes, it is possible that these different factors may regulate the expression levels of certain key targets. Identification of these targets could facilitate the understanding of the etiology and developing of novel diagnostic and therapeutic methods. Therefore, we performed integrated transcriptome analyses of RNA-Seq and microarray data in multiple ASD mouse models and identified a number of common downstream genes in various brain regions, many of which are related to the structure and function of the synapse components or drug addiction. We then established protein-protein interaction networks of the overlapped targets and isolated the hub genes by 11 algorithms based on the topological structure of the networks, including Sdc4, Vegfa, and Cp in the Cortex-Adult subgroup, Gria1 in the Cortex-Juvenile subgroup, and Kdr, S1pr1, Ubc, Grm2, Grin2b, Nrxn1, Pdyn, Grin3a, Itgam, Grin2a, Gabra2, and Camk4 in the Hippocampus-Adult subgroup, many of which have been associated with ASD in previous studies. Finally, we cross compared our results with human brain transcriptional data sets and verified several key candidates, which may play important role in the pathology process of ASD, including SDC4, CP, S1PR1, UBC, PDYN, GRIN2A, GABRA2, and CAMK4. In summary, by integrated bioinformatics analysis, we have identified a series of potentially important molecules for future ASD research. Autism Res 2020, 13: 352-368. © 2019 International Society for Autism Research, Wiley Periodicals, Inc. LAY SUMMARY: Abnormal transcriptional regulation accounts for a significant portion of Autism Spectrum Disorder. In this study, we performed transcriptome analyses of mouse models to identify common downstream targets of transcriptional regulators involved in ASD. We identified several recurrent target genes that are close related to the common pathological process of ASD, including SDC4, CP, S1PR1, UBC, PDYN, GRM2, NRXN1, GRIN3A, ITGAM, GRIN2A, GABRA2, and CAMK4. These results provide potentially important targets for understanding the molecular mechanism of ASD."	"SorCS1-mediated sorting in dendrites maintains neurexin axonal surface polarization required for synaptic function. The pre- and postsynaptic membranes comprising the synaptic junction differ in protein composition. The membrane trafficking mechanisms by which neurons control surface polarization of synaptic receptors remain poorly understood. The sorting receptor Sortilin-related CNS expressed 1 (SorCS1) is a critical regulator of trafficking of neuronal receptors, including the presynaptic adhesion molecule neurexin (Nrxn), an essential synaptic organizer. Here, we show that SorCS1 maintains a balance between axonal and dendritic Nrxn surface levels in the same neuron. Newly synthesized Nrxn1α traffics to the dendritic surface, where it is endocytosed. Endosomal SorCS1 interacts with the Rab11 GTPase effector Rab11 family-interacting protein 5 (Rab11FIP5)/Rab11 interacting protein (Rip11) to facilitate the transition of internalized Nrxn1α from early to recycling endosomes and bias Nrxn1α surface polarization towards the axon. In the absence of SorCS1, Nrxn1α accumulates in early endosomes and mispolarizes to the dendritic surface, impairing presynaptic differentiation and function. Thus, SorCS1-mediated sorting in dendritic endosomes controls Nrxn axonal surface polarization required for proper synapse development and function."	"Attention-deficit hyperactivity disorder shares copy number variant risk with schizophrenia and autism spectrum disorder. Attention-deficit/hyperactivity disorder (ADHD) is a highly heritable common childhood-onset neurodevelopmental disorder. Some rare copy number variations (CNVs) affect multiple neurodevelopmental disorders such as intellectual disability, autism spectrum disorders (ASD), schizophrenia and ADHD. The aim of this study is to determine to what extent ADHD shares high risk CNV alleles with schizophrenia and ASD. We compiled 19 neuropsychiatric CNVs and test 14, with sufficient power, for association with ADHD in Icelandic and Norwegian samples. Eight associate with ADHD; deletions at 2p16.3 (NRXN1), 15q11.2, 15q13.3 (BP4 &amp; BP4.5-BP5) and 22q11.21, and duplications at 1q21.1 distal, 16p11.2 proximal, 16p13.11 and 22q11.21. Six of the CNVs have not been associated with ADHD before. As a group, the 19 CNVs associate with ADHD (OR = 2.43, P = 1.6 × 10<sup>-21</sup>), even when comorbid ASD and schizophrenia are excluded from the sample. These results highlight the pleiotropic effect of the neuropsychiatric CNVs and add evidence for ADHD, ASD and schizophrenia being related neurodevelopmental disorders rather than distinct entities."	"A large data resource of genomic copy number variation across neurodevelopmental disorders. Copy number variations (CNVs) are implicated across many neurodevelopmental disorders (NDDs) and contribute to their shared genetic etiology. Multiple studies have attempted to identify shared etiology among NDDs, but this is the first genome-wide CNV analysis across autism spectrum disorder (ASD), attention deficit hyperactivity disorder (ADHD), schizophrenia (SCZ), and obsessive-compulsive disorder (OCD) at once. Using microarray (Affymetrix CytoScan HD), we genotyped 2,691 subjects diagnosed with an NDD (204 SCZ, 1,838 ASD, 427 ADHD and 222 OCD) and 1,769 family members, mainly parents. We identified rare CNVs, defined as those found in &lt;0.1% of 10,851 population control samples. We found clinically relevant CNVs (broadly defined) in 284 (10.5%) of total subjects, including 22 (10.8%) among subjects with SCZ, 209 (11.4%) with ASD, 40 (9.4%) with ADHD, and 13 (5.6%) with OCD. Among all NDD subjects, we identified 17 (0.63%) with aneuploidies and 115 (4.3%) with known genomic disorder variants. We searched further for genes impacted by different CNVs in multiple disorders. Examples of NDD-associated genes linked across more than one disorder (listed in order of occurrence frequency) are NRXN1, SEH1L, LDLRAD4, GNAL, GNG13, MKRN1, DCTN2, KNDC1, PCMTD2, KIF5A, SYNM, and long non-coding RNAs: AK127244 and PTCHD1-AS. We demonstrated that CNVs impacting the same genes could potentially contribute to the etiology of multiple NDDs. The CNVs identified will serve as a useful resource for both research and diagnostic laboratories for prioritization of variants."	"Structures of neurexophilin-neurexin complexes reveal a regulatory mechanism of alternative splicing. Neurexins are presynaptic, cell-adhesion molecules that specify the functional properties of synapses via interactions with trans-synaptic ligands. Neurexins are extensively alternatively spliced at six canonical sites that regulate multifarious ligand interactions, but the structural mechanisms underlying alternative splicing-dependent neurexin regulation are largely unknown. Here, we determined high-resolution structures of the complex of neurexophilin-1 and the second laminin/neurexin/sex-hormone-binding globulin domain (LNS2) of neurexin-1 and examined how alternative splicing at splice site #2 (SS2) regulates the complex. Our data reveal a unique, extensive, neurexophilin-neurexin binding interface that extends the jelly-roll β-sandwich of LNS2 of neurexin-1 into neurexophilin-1. The SS2A insert of LNS2 augments this interface, increasing the binding affinity of LNS2 for neurexophilin-1. Taken together, our data reveal an unexpected architecture of neurexophilin-neurexin complexes that accounts for the modulation of binding by alternative splicing, which in turn regulates the competition of neurexophilin for neurexin binding with other ligands."	"NRXN1 is associated with enlargement of the temporal horns of the lateral ventricles in psychosis. Schizophrenia, Schizoaffective, and Bipolar disorders share behavioral and phenomenological traits, intermediate phenotypes, and some associated genetic loci with pleiotropic effects. Volumetric abnormalities in brain structures are among the intermediate phenotypes consistently reported associated with these disorders. In order to examine the genetic underpinnings of these structural brain modifications, we performed genome-wide association analyses (GWAS) on 60 quantitative structural brain MRI phenotypes in a sample of 777 subjects (483 cases and 294 controls pooled together). Genotyping was performed with the Illumina PsychChip microarray, followed by imputation to the 1000 genomes multiethnic reference panel. Enlargement of the Temporal Horns of Lateral Ventricles (THLV) is associated with an intronic SNP of the gene NRXN1 (rs12467877, P = 6.76E-10), which accounts for 4.5% of the variance in size. Enlarged THLV is associated with psychosis in this sample, and with reduction of the hippocampus and enlargement of the choroid plexus and caudate. Eight other suggestively significant associations (P &lt; 5.5E-8) were identified with THLV and 5 other brain structures. Although rare deletions of NRXN1 have been previously associated with psychosis, this is the first report of a common SNP variant of NRXN1 associated with enlargement of the THLV in psychosis."	"[Analysis of NRXN1 gene deletion in an autistic patient]. To explore the genetic basis for a patient with autism. High-throughput sequencing was carried out to detect copy number variations in the patient. DNA sequencing found that the patient has carried a 0.11 Mb deletion in distal 2p16.3 spanning from genomic position 50 820 001 to 50 922 000, which resulted removal of exon 6 and part of intron 7 of the NRXN1 gene. The same deletion was not found his parents and brother. Partial deletion of the NRXN1 gene may underlie the disease in this patient."	"Regenerative Effect of Growth Hormone (GH) in the Retina after Kainic Acid Excitotoxic Damage. In addition to its role as an endocrine messenger, growth hormone (GH) also acts as a neurotrophic factor in the central nervous system (CNS), whose effects are involved in neuroprotection, axonal growth, and synaptogenic modulation. An increasing amount of clinical evidence shows a beneficial effect of GH treatment in patients with brain trauma, stroke, spinal cord injury, impaired cognitive function, and neurodegenerative processes. In response to injury, Müller cells transdifferentiate into neural progenitors and proliferate, which constitutes an early regenerative process in the chicken retina. In this work, we studied the long-term protective effect of GH after causing severe excitotoxic damage in the retina. Thus, an acute neural injury was induced via the intravitreal injection of kainic acid (KA, 20 µg), which was followed by chronic administration of GH (10 injections [300 ng] over 21 days). Damage provoked a severe disruption of several retinal layers. However, in KA-damaged retinas treated with GH, we observed a significant restoration of the inner plexiform layer (IPL, 2.4-fold) and inner nuclear layer (INL, 1.5-fold) thickness and a general improvement of the retinal structure. In addition, we also observed an increase in the expression of several genes involved in important regenerative pathways, including: synaptogenic markers (DLG1, NRXN1, GAP43); glutamate receptor subunits (NR1 and GRIK4); pro-survival factors (BDNF, Bcl-2 and TNF-R2); and Notch signaling proteins (Notch1 and Hes5). Interestingly, Müller cell transdifferentiation markers (Sox2 and FGF2) were upregulated by this long-term chronic GH treatment. These results are consistent with a significant increase in the number of BrdU-positive cells observed in the KA-damaged retina, which was induced by GH administration. Our data suggest that GH is able to facilitate the early proliferative response of the injured retina and enhance the regeneration of neurite interconnections."	"[Screening function enrichment and related signaling pathways bioinformatics analysis of differentially expressed gene in glioma]. Objective: To screen the differentially expressed genes, functional enrichment and related signaling pathways in glioma by bioinformatics analysis. Methods: Microarray data of glioma related gene expression profiles were selected in GEO database, and differentially expressed genes in glioma patients and normal brain tissues were screened by R statistical software of lima package. Functional enrichment of differentially expressed genes (GO and KEGG) was performed. The protein-protein interaction database (STRING) was used to analyze the interaction between the screened differentially expressed genes and the related signaling pathways. Results: Two gene expression profiles, GSE15824 and GSE66354, were selected for analysis, and 158 genes with differential expression more than 2 times and P&lt;0.05 were screened. Molecular function (MF) of 158 differentially expressed genes was integrin binding, cell adhesion molecule binding, calcium binding and AMPA glutamate receptor activity. Cell component localization (CC) was located in cell membrane, neuron cell body, axon of nerve cell and so on, while biological process (BP) was mainly cell adhesion and nervous system. Development, cell proliferation, GTPase activity, apoptosis and angiogenesis; KEGG signaling pathways were mainly cAMP signaling pathway, purine metabolism pathway, MAPK signaling pathway and cGMP-PKG signaling pathway. There were 177 interaction connections in 158 differential expression gene-protein interaction networks, with an average interaction of 2.39 between each node and an aggregation coefficient of 0.37. Cytohubb screened the key genes (hub genes) in the signaling pathway. The results indicated that SLC6A1,SLC1A2,BDNF,GAP43,NRXN1,GAD1,OLIG2, PLP1,S100B and GRIA3 were the key genes in the signaling pathway of the interacting protein network. All the 10 key genes were related to the prognosis of patients (P&lt;0.05). Conclusions: There are differentially expressed genes profile in glioma tissues and normal tissues. SLC6A1, SLC1A2, BDNF, GAP43, NRXN1, GAD1, OLIG2, PLP1, S100B and GRIA3 are key genes for glioma development and are related to the prognosis of patients. 目的: 采用生物信息分析技术探讨胶质瘤(Glioma)差异表达基因筛选、功能富集和相关信号通路。 方法: 在基因表达谱数据库(GEO)中选取胶质瘤中相关基因表达谱芯片数据,采用R软件lima包筛选胶质瘤患者肿瘤组织和正常脑组织中差异表达基因。对筛选出的差异表达基因进行功能富集(GO和KEGG),应用采用蛋白-蛋白相互作用数据库(STRING)分析筛选出的差异表达基因编码蛋白间的相互作用关系,分析相关信号通路。 结果: 选取GSE15824和GSE66354基因表达谱数据集为分析对象,筛选出差异表达超过2倍,且P&lt;0.05的基因158个。158个差异基因主要分子功能(MF)为整合素结合、细胞黏附分子结合、钙离子结合及AMPA谷氨酸受体活性等;细胞组分定位(CC)于细胞膜、神经元细胞体及神经细胞轴突等,而其生物学过程(BP)主要为细胞黏附、神经系统发育、细胞增殖、GTP酶活性、细胞凋亡和血管生成等;KEGG信号通路主要为cAMP信号通路、嘌呤代谢通路、MAPK信号通路及cGMP-PKG信号通路,158个差异表达基因蛋白相互作用网络中相互作用连接共177个,平均每个节点间相互作用为2.39个,聚集系数为0.37。Cytohubb筛选信号通路中的关键基因(hub基因),结果提示,SLC6A1、SLC1A2、BDNF、CAP43、NRXN1、GAD1、OLIG2、PLP1、S100B和GRIA3为相互作用蛋白网络信号通路中的关键基因。10个关键基因均与患者预后有关(P&lt;0.05)。 结论: 胶质瘤患者肿瘤组织和正常组织存在差异表达基因谱,SLC6A1、SLC1A2、BDNF、GAP43、NRXN1、GAD1、OLIG2、PLP1、S100B和GRIA3为胶质瘤发生的关键基因并与患者的预后有关。."	"SALM1 controls synapse development by promoting F-actin/PIP2-dependent Neurexin clustering. Synapse development requires spatiotemporally regulated recruitment of synaptic proteins. In this study, we describe a novel presynaptic mechanism of cis-regulated oligomerization of adhesion molecules that controls synaptogenesis. We identified synaptic adhesion-like molecule 1 (SALM1) as a constituent of the proposed presynaptic Munc18/CASK/Mint1/Lin7b organizer complex. SALM1 preferentially localized to presynaptic compartments of excitatory hippocampal neurons. SALM1 depletion in excitatory hippocampal primary neurons impaired Neurexin1β- and Neuroligin1-mediated excitatory synaptogenesis and reduced synaptic vesicle clustering, synaptic transmission, and synaptic vesicle release. SALM1 promoted Neurexin1β clustering in an F-actin- and PIP2-dependent manner. Two basic residues in SALM1's juxtamembrane polybasic domain are essential for this clustering. Together, these data show that SALM1 is a presynaptic organizer of synapse development by promoting F-actin/PIP2-dependent clustering of Neurexin."	"NRXN1 Deletion and Exposure to Methylmercury Increase Astrocyte Differentiation by Different Notch-Dependent Transcriptional Mechanisms. Controversial evidence points to a possible involvement of methylmercury (MeHg) in the etiopathogenesis of autism spectrum disorders (ASD). In the present study, we used human neuroepithelial stem cells from healthy donors and from an autistic patient bearing a bi-allelic deletion in the gene encoding for NRXN1 to evaluate whether MeHg would induce cellular changes comparable to those seen in cells derived from the ASD patient. In healthy cells, a subcytotoxic concentration of MeHg enhanced astroglial differentiation similarly to what observed in the diseased cells (N1), as shown by the number of GFAP positive cells and immunofluorescence signal intensity. In both healthy MeHg-treated and N1 untreated cells, aberrations in Notch pathway activity seemed to play a critical role in promoting the differentiation toward glia. Accordingly, treatment with the established Notch inhibitor DAPT reversed the altered differentiation. Although our data are not conclusive since only one of the genes involved in ASD is considered, the results provide novel evidence suggesting that developmental exposure to MeHg, even at subcytotoxic concentrations, induces alterations in astroglial differentiation similar to those observed in ASD."	"Single cell analysis of autism patient with bi-allelic NRXN1-alpha deletion reveals skewed fate choice in neural progenitors and impaired neuronal functionality. We generated human iPS derived neural stem cells and differentiated cells from healthy control individuals and an individual with autism spectrum disorder carrying bi-allelic NRXN1-alpha deletion. We investigated the expression of NRXN1-alpha during neural induction and neural differentiation and observed a pivotal role for NRXN1-alpha during early neural induction and neuronal differentiation. Single cell RNA-seq pinpointed neural stem cells carrying NRXN1-alpha deletion shifting towards radial glia-like cell identity and revealed higher proportion of differentiated astroglia. Furthermore, neuronal cells carrying NRXN1-alpha deletion were identified as immature by single cell RNA-seq analysis, displayed significant depression in calcium signaling activity and presented impaired maturation action potential profile in neurons investigated with electrophysiology. Our observations propose NRXN1-alpha plays an important role for the efficient establishment of neural stem cells, in neuronal differentiation and in maturation of functional excitatory neuronal cells."	"Synaptic neurexin-1 assembles into dynamically regulated active zone nanoclusters. Neurexins are well-characterized presynaptic cell adhesion molecules that engage multifarious postsynaptic ligands and organize diverse synapse properties. However, the precise synaptic localization of neurexins remains enigmatic. Using super-resolution microscopy, we demonstrate that neurexin-1 forms discrete nanoclusters at excitatory synapses, revealing a novel organizational feature of synaptic architecture. Synapses generally contain a single nanocluster that comprises more than four neurexin-1 molecules and that also includes neurexin-2 and/or neurexin-3 isoforms. Moreover, we find that neurexin-1 is physiologically cleaved by ADAM10 similar to its ligand neuroligin-1, with ∼4-6% of neurexin-1 and ∼2-3% of neuroligin-1 present in the adult brain as soluble ectodomain proteins. Blocking ADAM10-mediated neurexin-1 cleavage dramatically increased the synaptic neurexin-1 content, thereby elevating the percentage of Homer1(+) excitatory synapses containing neurexin-1 nanoclusters from 40-50% to ∼80%, and doubling the number of neurexin-1 molecules per nanocluster. Taken together, our results reveal an unexpected nanodomain organization of synapses in which neurexin-1 is assembled into discrete presynaptic nanoclusters that are dynamically regulated via ectodomain cleavage."	"Genetic insights and neurobiological implications from NRXN1 in neuropsychiatric disorders. Many neuropsychiatric and neurodevelopmental disorders commonly share genetic risk factors. To date, the mechanisms driving the pathogenesis of these disorders, particularly how genetic variations affect the function of risk genes and contribute to disease symptoms, remain largely unknown. Neurexins are a family of synaptic adhesion molecules, which play important roles in the formation and establishment of synaptic structure, as well as maintenance of synaptic function. Accumulating genomic findings reveal that genetic variations within genes encoding neurexins are associated with a variety of psychiatric conditions such as schizophrenia, autism spectrum disorder, and some developmental abnormalities. In this review, we focus on NRXN1, one of the most compelling psychiatric risk genes of the neurexin family. We performed a comprehensive survey and analysis of current genetic and molecular data including both common and rare alleles within NRXN1 associated with psychiatric illnesses, thus providing insights into the genetic risk conferred by NRXN1. We also summarized the neurobiological evidences, supporting the function of NRXN1 and its protein products in synaptic formation, organization, transmission and plasticity, as well as disease-relevant behaviors, and assessed the mechanistic link between the mutations of NRXN1 and synaptic and behavioral pathology in neuropsychiatric disorders."	"Assessment of Potential Clinical Role for Exome Sequencing in Schizophrenia. There is increasing evidence that certain genetic variants increase the risk of schizophrenia and other neurodevelopmental disorders. Exome sequencing has been shown to have a high diagnostic yield for developmental disability and testing for copy number variants has been advocated for schizophrenia. The diagnostic yield for exome sequencing in schizophrenia is unknown. A sample of 591 exome-sequenced schizophrenia cases and their parents were screened for disruptive and damaging variants in autosomal genes listed in the Genomics England panels for intellectual disability and other neurological disorders. Previously reported disruptive de novo variants were noted in SETD1A, POGZ, SCN2A, and ZMYND11. Although the loss of function of ZMYND11 is a recognized cause of intellectual disability, it has not previously been noted as a risk factor for schizophrenia. A damaging de novo variant of uncertain significance was noted in NRXN1. A previously reported homozygous damaging variant in BLM is predicted to cause Bloom syndrome in 1 case and 1 case was homozygous for a damaging variant in MCPH1, a result of uncertain significance. There were more than 400 disruptive and damaging variants in the target genes in cases but similar numbers were seen among untransmitted parental alleles and none appeared to be clinically significant. The diagnostic yield from exome sequencing in schizophrenia is low. Disruptive and damaging variants seen in known neuropsychiatric genes should not be automatically assumed to have an etiological role if observed in a patient with schizophrenia."	"Data on genotype frequency for SNPs associated to age of smoking onset and successful smoking cessation treatment. This article contains data on the allele and genotype frequency for single nucleotide polymorphisms (SNPs) in candidate genes CHRNA5 (rs16969968, rs17408276, rs680244) CHRNA3 (rs6495307, rs12914385) NRXN1 (rs10865246, rs1882296, rs985919) and HTR2A (rs6311, rs6313) previously evaluated as genetic risk variants for cigarette smoking at an early age and relapse to smoking cessation treatment Pérez-Rubio et al., 2018. These SNPs were selected due to previous associations in other populations, including Mexican Mestizos. Smokers were classified according to the age at onset, cigarettes per day, nicotine dependence, COPD status and therapy received."	"Alternative Splicing of Presynaptic Neurexins Differentially Controls Postsynaptic NMDA and AMPA Receptor Responses. AMPA- and NMDA-type glutamate receptors mediate distinct postsynaptic signals that differ characteristically among synapses. How postsynaptic AMPA- and NMDA-receptor levels are regulated, however, remains unclear. Using newly generated conditional knockin mice that enable genetic control of neurexin alternative splicing, we show that in hippocampal synapses, alternative splicing of presynaptic neurexin-1 at splice site 4 (SS4) dramatically enhanced postsynaptic NMDA-receptor-mediated, but not AMPA-receptor-mediated, synaptic responses without altering synapse density. In contrast, alternative splicing of neurexin-3 at SS4 suppressed AMPA-receptor-mediated, but not NMDA-receptor-mediated, synaptic responses, while alternative splicing of neurexin-2 at SS4 had no effect on NMDA- or AMPA-receptor-mediated responses. Presynaptic overexpression of the neurexin-1β and neurexin-3β SS4+ splice variants, but not of their SS4- splice variants, replicated the respective SS4+ knockin phenotypes. Thus, different neurexins perform distinct nonoverlapping functions at hippocampal synapses that are independently regulated by alternative splicing. These functions transsynaptically control NMDA and AMPA receptors, thereby mediating presynaptic control of postsynaptic responses."	"Sex-differential DNA methylation and associated regulation networks in human brain implicated in the sex-biased risks of psychiatric disorders. Many psychiatric disorders are characterized by a strong sex difference, but the mechanisms behind sex-bias are not fully understood. DNA methylation plays important roles in regulating gene expression, ultimately impacting sexually different characteristics of the human brain. Most previous literature focused on DNA methylation alone without considering the regulatory network and its contribution to sex-bias of psychiatric disorders. Since DNA methylation acts in a complex regulatory network to connect genetic and environmental factors with high-order brain functions, we investigated the regulatory networks associated with different DNA methylation and assessed their contribution to the risks of psychiatric disorders. We compiled data from 1408 postmortem brain samples in 3 collections to identify sex-differentially methylated positions (DMPs) and regions (DMRs). We identified and replicated thousands of DMPs and DMRs. The DMR genes were enriched in neuronal related pathways. We extended the regulatory networks related to sex-differential methylation and psychiatric disorders by integrating methylation quantitative trait loci (meQTLs), gene expression, and protein-protein interaction data. We observed significant enrichment of sex-associated genes in psychiatric disorder-associated gene sets. We prioritized 2080 genes that were sex-biased and associated with psychiatric disorders, such as NRXN1, NRXN2, NRXN3, FDE4A, and SHANK2. These genes are enriched in synapse-related pathways and signaling pathways, suggesting that sex-differential genes of these neuronal pathways may cause the sex-bias of psychiatric disorders."	"Whole genome paired-end sequencing elucidates functional and phenotypic consequences of balanced chromosomal rearrangement in patients with developmental disorders. Balanced chromosomal rearrangements associated with abnormal phenotype are rare events, but may be challenging for genetic counselling, since molecular characterisation of breakpoints is not performed routinely. We used next-generation sequencing to characterise breakpoints of balanced chromosomal rearrangements at the molecular level in patients with intellectual disability and/or congenital anomalies. Breakpoints were characterised by a paired-end low depth whole genome sequencing (WGS) strategy and validated by Sanger sequencing. Expression study of disrupted and neighbouring genes was performed by RT-qPCR from blood or lymphoblastoid cell line RNA. Among the 55 patients included (41 reciprocal translocations, 4 inversions, 2 insertions and 8 complex chromosomal rearrangements), we were able to detect 89% of chromosomal rearrangements (49/55). Molecular signatures at the breakpoints suggested that DNA breaks arose randomly and that there was no major influence of repeated elements. Non-homologous end-joining appeared as the main mechanism of repair (55% of rearrangements). A diagnosis could be established in 22/49 patients (44.8%), 15 by gene disruption (KANSL1, FOXP1, SPRED1, TLK2, MBD5, DMD, AUTS2, MEIS2, MEF2C, NRXN1, NFIX, SYNGAP1, GHR, ZMIZ1) and 7 by position effect (DLX5, MEF2C, BCL11B, SATB2, ZMIZ1). In addition, 16 new candidate genes were identified. Systematic gene expression studies further supported these results. We also showed the contribution of topologically associated domain maps to WGS data interpretation. Paired-end WGS is a valid strategy and may be used for structural variation characterisation in a clinical setting."	"Neurexin 3 transmembrane and soluble isoform expression and splicing haplotype are associated with neuron inflammasome and Alzheimer's disease. Synaptic damage precedes neuron death in Alzheimer's disease (AD). Neurexins, NRXN1, NRXN2, and NRXN3, are presynaptic adhesion molecules that specify neuron synapses and regulate neurotransmitter release. Neurexins and postsynaptic neuroligins interact with amyloid beta oligomer (AβO) deposits in damaged synapses. NRXN3 gene variants have been associated with autism, addiction, and schizophrenia, however, not fully investigated in Alzheimer's disease. In the present study, we investigated an AD association of a 3'-splicing allele of rs8019381 that produces altered expression of transmembrane or soluble NRXN3 isoforms. We carried out RT-PCR (reverse transcription polymerase chain reaction), PCR-RFLP (PCR and restriction fragment length polymorphism), Sanger sequencing, and in situ hybridization (ISH) assays for NRXN3 neuron expression and genotyping. Genetic associations were analyzed by χ<sup>2</sup> tests, and ISH signals were analyzed by FISH v1.0 module of Indica Labs HALO software. We previously identified a functional haplotype in the 3' region of neurexin 3 (NRXN3) gene that alters the expression ratios between NRXN3 transmembrane and soluble isoforms. In this study, we found that expression and ratio of transmembrane and soluble NRXN3 isoforms were reduced in AD postmortem brains and inversely correlated with inflammasome component NLRP3 in AD brain regions. The splicing haplotype related to the transmembrane and soluble NRXN3 expression was associated with AD samples with P = 6.3 × 10<sup>-5</sup> (odds ratio = 2.48) and interacted with APOE genotypes. We found that the SNP rs8019381 of NRXN3 that is located adjacent to splicing site #5 (SS#5) interacts with the APOE ε4 haplotype and alters NRXN3 transmembrane or soluble isoform expression in AD postmortem cortex. Dysregulation of presynaptic NRXN3 expression and splicing might increase neuron inflammation in AD brain."	"Phenotypic spectrum of NRXN1 mono- and bi-allelic deficiency: A systematic review. Neurexins are presynaptic cell adhesion molecules critically involved in synaptogenesis and vesicular neurotransmitter release. They are encoded by three genes (NRXN1-3), each yielding a longer alpha (α) and a shorter beta (β) transcript. Deletions spanning the promoter and the initial exons of the NRXN1 gene, located in chromosome 2p16.3, are associated with a variety of neurodevelopmental, psychiatric, neurological and neuropsychological phenotypes. We have performed a systematic review to define (a) the clinical phenotypes most associated with mono-allelic exonic NRXN1 deletions, and (b) the phenotypic features of NRXN1 bi-allelic deficiency due to compound heterozygous deletions/mutations. Clinically, three major conclusions can be drawn: (a) incomplete penetrance and pleiotropy do not allow reliable predictions of clinical outcome following prenatal detection of mono-allelic exonic NRXN1 deletions. Newborn carriers should undergo periodic neuro-behavioral observations for the timely detection of warning signs and the prescription of early behavioral intervention; (b) the presence of additional independent genetic risk factors should always be sought, as they may influence prognosis; (c) children with exonic NRXN1 deletions displaying early-onset, severe psychomotor delay in the context of a Pitt-Hopkins-like syndrome 2 phenotype, should undergo DNA sequencing of the spared NRXN1 allele in search for mutations or very small insertions/deletions."	"Genetic variants as risk factors for cigarette smoking at an early age and relapse to smoking cessation treatment: A pilot study. Tobacco smoking is a complex and multifactorial disease involving both environmental and genetic factors. In the Mexican mestizo population, single-nucleotide polymorphisms (SNPs) associated with cigarette smoking and a greater degree of nicotine addiction have been identified; however, no possible roles have been explored in regard to the age of onset of smoking or in the success of quitting. In this study, 151 Mexican mestizo, who smoke cigarettes, were included. They were grouped according to the age at which they started smoking: those who started smoking before 18 years of age (early smokers, ES) and those who started smoking ≥18 years of age (late smokers, LS). In addition, relapse in smoking was evaluated at the first month after the end of treatment. Genetic association was evaluated characterizing 10 SNPs in 4 genes (CHRNA5, CHRNA3, NRXN1, and HTR2A). According to the dominant model of genetic inheritance, rs6313 (CT+TT) of the HTR2A gene was associated (p = 0.0201) with cigarette consumption at early ages (OR = 2.68, CI = 1.18-6.07). When the risk of relapse was analyzed one month after the end of treatment, regardless of the age of onset, the T allele (rs6313) of HTR2A appeared to be a risk factor for relapse (OR = 2.92, 95% CI = 1.06-8.11); the T allele was found more frequently in those who relapsed (50.0%) compared with people who maintained abstinence (25.4%) (p = 0.0332). Our findings suggest that in Mexican mestizos who smoke cigarettes, the presence of the T allele in rs6313 of the HTR2A gene increases the risk for the early onset of cigarette smoking as well as the risk for relapsing one month after completing smoking cessation treatment."	"Mutations in NRXN1 and NRXN2 in a patient with early-onset epileptic encephalopathy and respiratory depression. Early infantile epileptic encephalopathy (EIEE) is a severe disorder associated with epilepsy, developmental delay and intellectual disability, and in some cases premature mortality. We report the case of a female infant with EIEE and strikingly suppressed respiratory dysfunction that led to death. Postmortem research evaluation revealed hypoplasia of the arcuate nucleus of the medulla, a candidate region for respiratory regulation. Genetic evaluation revealed heterozygous variants in the related genes NRXN1 (c.2686C&gt;T, p.Arg896Trp) and NRXN2 (c.3176G&gt;A, p.Arg1059Gln), one inherited from the mother with family history of sudden infant death syndrome (SIDS) and one from the father with family history of febrile seizures. Although there are no previous reports with the digenic combination of NRXN1 and NRXN2 variants, patients with biallelic loss of NRXN1 in humans and double neurexin 1α/2α knockout mice have severe breathing abnormalities, corresponding to the respiratory phenotype of our patient. These observations and the known interaction between the NRXN1 and NRXN2 proteins lead us to hypothesize that digenic variants in NRXN1 and NRXN2 contributed to the phenotype of EIEE, arcuate nucleus hypoplasia, respiratory failure, and death."	"Both rare and common genetic variants contribute to autism in the Faroe Islands. The number of genes associated with autism is increasing, but few studies have been performed on epidemiological cohorts and in isolated populations. Here, we investigated 357 individuals from the Faroe Islands including 36 individuals with autism, 136 of their relatives and 185 non-autism controls. Data from SNP array and whole exome sequencing revealed that individuals with autism had a higher burden of rare exonic copy-number variants altering autism associated genes (deletions (p = 0.0352) or duplications (p = 0.0352)), higher inbreeding status (p = 0.023) and a higher load of rare homozygous deleterious variants (p = 0.011) compared to controls. Our analysis supports the role of several genes/loci associated with autism (e.g., NRXN1, ADNP, 22q11 deletion) and identified new truncating (e.g., GRIK2, ROBO1, NINL, and IMMP2L) or recessive deleterious variants (e.g., KIRREL3 and CNTNAP2) affecting autism-associated genes. It also revealed three genes involved in synaptic plasticity, RIMS4, KALRN, and PLA2G4A, carrying de novo deleterious variants in individuals with autism without intellectual disability. In summary, our analysis provides a better understanding of the genetic architecture of autism in isolated populations by highlighting the role of both common and rare gene variants and pointing at new autism-risk genes. It also indicates that more knowledge about how multiple genetic hits affect neuronal function will be necessary to fully understand the genetic architecture of autism."	"Genetic testing in a cohort of patients with potential epilepsy with myoclonic-atonic seizures. Epilepsy with myoclonic-atonic seizures (EMAS) accounts for 1-2% of all childhood-onset epilepsies. EMAS has been shown to have an underlying genetic component, however the genetics of this disorder is not yet well understood. The purpose of this study was to review genetic testing results for a cohort of EMAS patients. A retrospective chart review was conducted for 77 patients evaluated at Children's Hospital Colorado with a potential diagnosis of EMAS. Genetic testing and biochemical testing was reviewed. Family history data was also collected. Seventy-seven percent of the cohort had at least one genetic test performed, and a molecular diagnosis was reached for six patients. Thirty-seven patients had a microarray, six of which identified a copy number variant. Only one was felt to contribute to the phenotype (2p16.3 deletion including NRXN1). Fifty-one patients had an epilepsy panel, two of which were positive (likely pathogenic variant in SCN1A, pathogenic variant in GABRG2). Of the six patients who had whole exome sequencing, two were negative, three were positive or likely positive, and one had multiple variants not felt to explain the phenotype. While EMAS is widely accepted to have a strong genetic component, the diagnostic yield of genetic testing remains low. This may be because several genes now thought to be associated with EMAS are not included on the more commonly ordered epilepsy panels, or have only recently been added to them."	"Convergent microstructural brain changes across genetic models of autism spectrum disorder-A pilot study. Autism spectrum disorder (ASD) is a complex and genetically heterogeneous neuropsychiatric disease affecting as many as 1 in 68 children. Large scale genetic sequencing of individuals along the autism spectrum has uncovered several genetic risk factors for ASD; however, understanding how, and to what extent, individual genes contribute to the overall disease phenotype remains unclear. Neuroimaging studies of ASD have revealed a wide spectrum of structural and functional perturbations that are thought to reflect, in part, the complex genetic heterogeneity underpinning ASD. These perturbations, in both preclinical models and clinical patients, were identified in preclinical genetic models and ASD patients when compared to control populations; however, few studies have directly explored intrinsic differences between the models themselves. To better understand the degree and extent to which individual genes associated with ASD differ in their contribution to global measures of white matter microstructure, diffusion tensor imaging (DTI) was acquired from three novel rat genetic models of ASD (Fmr1, Nrxn1, and Pten) and DTI parameters of fractional anisotropy, mean, axial, and radial diffusivity were measured. Subsequent whole-brain voxel-wise analysis comparing each genetic model to each other (Fmr1:Nrxn1; Fmr1:Pten; Nrxn1:Pten) identified no significant differences in any comparison for all diffusion parameters assessed (FA, AD, MD, RD)."	"Effects of pathogenic CNVs on physical traits in participants of the UK Biobank. Copy number variants (CNVs) have been shown to increase risk for physical anomalies, developmental, psychiatric and medical disorders. Some of them have been associated with changes in weight, height, and other physical traits. As most studies have been performed on children and young people, these effects of CNVs in middle-aged and older people are not well established. The UK Biobank recruited half a million adults who provided a variety of physical measurements. We called all CNVs from the Affymetrix microarrays and selected a set of 54 CNVs implicated as pathogenic (including their reciprocal deletions/duplications) and that were found in five or more persons. Linear regression analysis was used to establish their association with 16 physical traits relevant to human health. 396,725 participants of white British or Irish descent (excluding first-degree relatives) passed our quality control filters. Out of the 864 CNV/trait associations, 214 were significant at a false discovery rate of 0.1, most of them novel. Many of these traits increase risk for adverse health outcomes: e.g. increases in weight, waist-to-hip ratio, pulse rate and body fat composition. Deletions at 16p11.2, 16p12.1, NRXN1 and duplications at 16p13.11 and 22q11.2 produced the highest numbers of significant associations. Five CNVs produced average changes of over one standard deviation for the 16 traits, compared to controls: deletions at 16p11.2 and 22q11.2, and duplications at 3q29, the Williams-Beuren and Potocki-Lupski regions. CNVs at 1q21.1, 2q13, 16p11.2 and 16p11.2 distal, 16p12.1, 17p12 and 17q12 demonstrated one or more mirror image effects of deletions versus duplications. Carriers of many CNVs should be monitored for physical traits that increase morbidity and mortality. Genes within these CNVs can give insights into biological processes and therapeutic interventions."	"Characterization of speech and language phenotype in children with NRXN1 deletions. Neurexin 1 gene (NRXN1) deletions are associated with several neurodevelopmental disorders. Communication difficulties have been reported, yet no study has examined specific speech and language features of individuals with NRXN1 deletions. Here, we characterized speech and language phenotypes in 21 children (14 families), aged 1.8-17 years, with NRXN1 deletions. Deletions ranged from 74 to 702 kb and consisted mostly of either exons 1-3 or 1-5. Speech sound disorders were frequent (69%), although few were severe. The majority (57%) of children had difficulty with receptive and/or expressive language, although no homogeneous profiles of deficit were seen across semantic, morphological, or grammatical systems. Social language difficulties were seen in over half the sample (53%). All but two individuals with language difficulties also had intellectual disability/developmental delay. Overall, while speech and language difficulties were common, there was substantial heterogeneity in the severity and type of difficulties observed and no striking communication phenotype was seen. Rather, the speech and language deficits are likely part of broader concomitant neurodevelopmental profiles (e.g., intellectual disability, social skill deficits). Nevertheless, given the high rate of affectedness, it is important speech/language development is assessed so interventions can be applied during childhood in a targeted and timely manner."	"Thyroid hormone influences brain gene expression programs and behaviors in later generations by altering germ line epigenetic information. Genetic factors do not fully account for the relatively high heritability of neurodevelopmental conditions, suggesting that non-genetic heritable factors contribute to their etiology. To evaluate the potential contribution of aberrant thyroid hormone status to the epigenetic inheritance of neurological phenotypes, we examined genetically normal F2 generation descendants of mice that were developmentally overexposed to thyroid hormone due to a Dio3 mutation. Hypothalamic gene expression profiling in postnatal day 15 F2 descendants on the paternal lineage of ancestral male and female T3-overexposed mice revealed, respectively, 1089 and 1549 differentially expressed genes. A large number of them, 675 genes, were common to both sets, suggesting comparable epigenetic effects of thyroid hormone on both the male and female ancestral germ lines. Oligodendrocyte- and neuron-specific genes were strongly overrepresented among genes showing, respectively, increased and decreased expression. Altered gene expression extended to other brain regions and was associated in adulthood with decreased anxiety-like behavior, increased marble burying and reduced physical activity. The sperm of T3-overexposed male ancestors revealed significant hypomethylation of CpG islands associated with the promoters of genes involved in the early development of the central nervous system. Some of them were candidates for neurodevelopmental disorders in humans including Nrg3, Nrxn1, Gabrb3, Gabra5, Apba2, Grik3, Reln, Nsd1, Pcdh8, En1, and Elavl2. Thus, developmental levels of thyroid hormone influence the epigenetic information of the germ line, disproportionately affecting genes with critical roles in early brain development, and leading in future generations to disease-relevant alterations in postnatal brain gene expression and adult behavior."	"Stage 2 Registered Report: Variation in neurodevelopmental outcomes in children with sex chromosome trisomies: testing the double hit hypothesis. Background: The presence of an extra sex chromosome is associated with an increased rate of neurodevelopmental difficulties involving language. The 'double hit' hypothesis proposes that the adverse impact of the extra sex chromosome is amplified when genes that are expressed from the sex chromosomes interact with autosomal variants that usually have only mild effects. We predicted that the impact of an additional sex chromosome on neurodevelopment would depend on common autosomal variants involved in synaptic functions. Methods: We analysed data from 130 children with sex chromosome trisomies (SCTs: 42 girls with trisomy X, 43 boys with Klinefelter syndrome, and 45 boys with XYY). Two comparison groups were formed from 370 children from a twin study. Three indicators of phenotype were: (i) Standard score on a test of nonword repetition; (ii). A language factor score derived from a test battery; (iii) A general scale of neurodevelopmental challenges based on all available information. Preselected regions of two genes, CNTNAP2 and NRXN1, were tested for association with neurodevelopmental outcomes using Generalised Structural Component Analysis. Results: There was wide phenotypic variation in the SCT group, as well as overall impairment on all three phenotypic measures. There was no association of phenotype with CNTNAP2 or NRXN1 variants in either the SCT group or the comparison groups. Supplementary analyses found no indication of any impact of trisomy type on the results, and exploratory analyses of individual SNPs confirmed the lack of association. Conclusions: We cannot rule out that a double hit may be implicated in the phenotypic variability in children with SCTs, but our analysis does not find any support for the idea that common variants in CNTNAP2 or NRXN1 are associated with the severity of language and neurodevelopmental impairments that often accompany an extra X or Y chromosome. Stage 1 report: http://dx.doi.org/10.12688/wellcomeopenres.13828.2."	"Leveraging genome-wide association and clinical data in revealing schizophrenia subgroups. Schizophrenia (SCZ) has long been recognized as a highly heterogeneous disorder. Patients differed in their clinical manifestations, prognosis, and underlying pathophysiologies. Here we presented and applied a framework for finding subtypes of SCZ utilizing genome-wide association study (GWAS) and clinical data. We postulated that genetic information may help stratify patient into useful subgroups, and incorporation of other clinical information and cognitive profiles will further improve patient subtyping. We conducted cluster analysis in 387 Hong Kong Chinese with SCZ. First we performed 'single-view' clustering using genetic or clinical data alone, then proceeded to 'multi-view' clustering (MVC) accounting for both types of information. We validated clustering results by assessing subgroup differences in various outcomes. We found significant differences in outcomes including treatment response, disease course and symptom severity (Simes overall p-value using MVC = 1.64E-9). Overall speaking, we identified three subgroups with good, intermediate and poor prognosis respectively. MVC generally out-performed single-view methods. The analysis was repeated for different sets of input SNPs, and stratified analysis of male and female patients, and the results remained largely robust. We also found significant enrichment for SCZ loci among the SNPs selected by the cluster algorithm. Numerous selected genes (e.g. NRG1, ERBB4, NRXN1, ANK3) and pathways (e.g. neuregulin-ErbB4 and calcium signaling) were implicated in SCZ or related pathophysiological processes. This is first study to combine both genetic and clinical data for subtyping SCZ, and to employ genome-wide SNP data in cluster analysis of a complex disease. This work points to a new way of GWAS analysis of translational potential."	"Identification of Key Genes and Pathways Associated with RUNX1 Mutations in Acute Myeloid Leukemia Using Bioinformatics Analysis. BACKGROUND RUNXl plays a key regulatory role in the process of hematopoiesis and is a common target for multiple chromosomal translocations in human acute leukemia. Mutations of RUNX1 gene can lead to acute leukemia and affect the prognosis of AML patients. We aimed to identify pivotal genes and pathways involved in RUNX1-mutated patients of with acute myeloid leukemia (AML) and to explore possible molecular markers for novel therapeutic targets of the disease. MATERIAL AND METHODS The RNA sequencing datasets of 151 cases of AML were obtained from the Cancer Genome Atlas database. Differentially expressed genes (DEGs) were identified using edgeR of the R platform. PPI (protein-protein interaction) network clustering modules were analyzed with ClusterONE, and the KEGG (Kyoto Encyclopedia of Genes and Genomes) pathway enrichment analyses for modules were performed. RESULTS A total of 379 genes were identified as DEGs. The KEGG enrichment analysis of DEGs showed significantly enriched pathways in cancer, extracellular matrix (ECM)-receptor interaction pathway, and cyclic adenosine monophosphate (cAMP) signaling pathway. The top 10 genes ranked by degree were PRKACG, ANKRD7, RNFL7, ROPN11, TEX14, PRMT8, OTOA, CFAP99, NRXN1, and DMRT1, which were identified as hub genes from the protein-protein interaction network (PPI). Statistical analysis revealed that RUNX1-mutated patients with AML had a shorter median survival time (MST) with poor clinical outcome and an increased risk of death when compared with those without RUNX1 mutations. CONCLUSIONS DEGs and pathways identified in the present study will help understand the molecular mechanisms underlying RUNX1 mutations in AML and develop effective therapeutic strategies for RUNX1-mutation AML."	"Structural insights into modulation and selectivity of transsynaptic neurexin-LRRTM interaction. Leucine-rich repeat transmembrane neuronal proteins (LRRTMs) function as postsynaptic organizers that induce excitatory synapses. Neurexins (Nrxns) and heparan sulfate proteoglycans have been identified as presynaptic ligands for LRRTMs. Specifically, LRRTM1 and LRRTM2 bind to the Nrxn splice variant lacking an insert at the splice site 4 (S4). Here, we report the crystal structure of the Nrxn1β-LRRTM2 complex at 3.4 Å resolution. The Nrxn1β-LRRTM2 interface involves Ca<sup>2+</sup>-mediated interactions and overlaps with the Nrxn-neuroligin interface. Together with structure-based mutational analyses at the molecular and cellular levels, the present structural analysis unveils the mechanism of selective binding between Nrxn and LRRTM1/2 and its modulation by the S4 insertion of Nrxn."	"Investigation of Copy Number Variation by arrayCGH in Turkish Children and Adolescents Diagnosed with Autism Spectrum Disorders. The development of whole-genome screening methodologies for the detection of copy number variations (CNVs), such as array-based comparative genomic hybridization (aCHG), provides a much higher resolution than karyotyping leading to the identification of novel microdeletion and microduplication syndromes often associated with an autism spectrum disease (ASD) phenotype. The aim of the study was to determine CNVs of patients with ASD by using array-based comparative genomic hybridization. Fifty-three patients diagnosed with ASD between 20.01.2014 and 14.01.2015 were included in the study. Chromosome analysis of the patients was performed from peripheral blood cultures and analysed as normal. All patients were evaluated with P064C1 and P096A2 MLPA probes in terms of 16 mental retardation related syndromes. For aCGH method, SurePrint G3 Human microarrays 8x60K were used with genomic DNA isolated from peripheral blood. According to results of 53 patients who were included in and performed with arrayCGH, 8 (15%) patients had CNVs classified as pathogenic or variant of unknown significance (VOUS) in the study. We detected a pathogenic NRXN1 gene partial CNV deletion (2p16.3) in two patients. Also we identified a 900 kb duplication of 4p15.31 including SLIT2 gene, and a 245 kb duplication of 15q11.2 including PWRN1 gene in one patient. Our other findings are considered to be a variant of unknown significance (VOUS). The results of the study support the literature knowledge, where the copy number variations that cannot be detected with conventional cytogenetics methods in terms of size may happen in patients with ASD."	"Rare variants in the genetic background modulate cognitive and developmental phenotypes in individuals carrying disease-associated variants. To assess the contribution of rare variants in the genetic background toward variability of neurodevelopmental phenotypes in individuals with rare copy-number variants (CNVs) and gene-disruptive variants. We analyzed quantitative clinical information, exome sequencing, and microarray data from 757 probands and 233 parents and siblings who carry disease-associated variants. The number of rare likely deleterious variants in functionally intolerant genes (&quot;other hits&quot;) correlated with expression of neurodevelopmental phenotypes in probands with 16p12.1 deletion (n=23, p=0.004) and in autism probands carrying gene-disruptive variants (n=184, p=0.03) compared with their carrier family members. Probands with 16p12.1 deletion and a strong family history presented more severe clinical features (p=0.04) and higher burden of other hits compared with those with mild/no family history (p=0.001). The number of other hits also correlated with severity of cognitive impairment in probands carrying pathogenic CNVs (n=53) or de novo pathogenic variants in disease genes (n=290), and negatively correlated with head size among 80 probands with 16p11.2 deletion. These co-occurring hits involved known disease-associated genes such as SETD5, AUTS2, and NRXN1, and were enriched for cellular and developmental processes. Accurate genetic diagnosis of complex disorders will require complete evaluation of the genetic background even after a candidate disease-associated variant is identified."	"Can Animal Models of Copy Number Variants That Predispose to Schizophrenia Elucidate Underlying Biology? The diagnosis of schizophrenia rests on clinical criteria that cannot be assessed in animal models. Together with absence of a clear underlying pathology and understanding of what causes schizophrenia, this has hindered development of informative animal models. However, recent large-scale genomic studies have identified copy number variants (CNVs) that confer high risk of schizophrenia and have opened a new avenue for generation of relevant animal models. Eight recurrent CNVs have reproducibly been shown to increase the risk of schizophrenia by severalfold: 22q11.2(del), 15q13.3(del), 1q21(del), 1q21(dup), NRXN1(del), 3q29(del), 7q11.23(dup), and 16p11.2(dup). Five of these CNVs have been modeled in animals, mainly mice, but also rats, flies, and zebrafish, and have been shown to recapitulate behavioral and electrophysiological aspects of schizophrenia. Here, we provide an overview of the schizophrenia-related phenotypes found in animal models of schizophrenia high-risk CNVs. We also discuss strengths and limitations of the CNV models, and how they can advance our biological understanding of mechanisms that can lead to schizophrenia and can be used to develop new and better treatments for schizophrenia."	"The noncoding RNA AK127244 in 2p16.3 locus: A new susceptibility region for neuropsychiatric disorders. The presence of redundant copy number variants (CNVs) in groups of patients with neurological diseases suggests that these variants could have pathogenic effect. We have collected array comparative genomic hybridization (CGH) data of about 2,500 patients affected by neurocognitive disorders and we observed that CNVs in 2p16.3 locus were as frequent as those in 15q11.2, being both the most frequent unbalances in our cohort of patients. Focusing to 2p16.3 region, unbalances involving NRXN1 coding region have been already associated with neuropsychiatric disorders, although with incomplete penetrance, but little is known about CNVs located proximal to the gene, in the long noncoding RNA AK127244. We found that, in our cohort of patients with neuropsychiatric disorders, the frequency of CNVs involving AK127244 was comparable to that of NRXN1 gene. Patients carrying 2p16.3 unbalances shared some common clinical characteristics regardless NRXN1 and AK127244 CNVs localization, suggesting that the AK127244 long noncoding RNA could be involved in neurocognitive disease with the same effect of NRXN1 unbalances. AK127244 as well as NRXN1 unbalances seem to have a particular influence on language development, behavior or mood, according with the topographic correlation between NRXN1 expression and prefrontal cortex functions."	"α-Neurexins Together with α2δ-1 Auxiliary Subunits Regulate Ca<sup>2+</sup> Influx through Cav2.1 Channels. Action potential-evoked neurotransmitter release is impaired in knock-out neurons lacking synaptic cell-adhesion molecules α-neurexins (αNrxns), the extracellularly longer variants of the three vertebrate Nrxn genes. Ca<sup>2+</sup> influx through presynaptic high-voltage gated calcium channels like the ubiquitous P/Q-type (CaV2.1) triggers release of fusion-ready vesicles at many boutons. α2δ Auxiliary subunits regulate trafficking and kinetic properties of CaV2.1 pore-forming subunits but it has remained unclear if this involves αNrxns. Using live cell imaging with Ca<sup>2+</sup> indicators, we report here that the total presynaptic Ca<sup>2+</sup> influx in primary hippocampal neurons of αNrxn triple knock-out mice of both sexes is reduced and involved lower CaV2.1-mediated transients. This defect is accompanied by lower vesicle release, reduced synaptic abundance of CaV2.1 pore-forming subunits, and elevated surface mobility of α2δ-1 on axons. Overexpression of Nrxn1α in αNrxn triple knock-out neurons is sufficient to restore normal presynaptic Ca<sup>2+</sup> influx and synaptic vesicle release. Moreover, coexpression of Nrxn1α together with α2δ-1 subunits facilitates Ca<sup>2+</sup> influx further but causes little augmentation together with a different subunit, α2δ-3, suggesting remarkable specificity. Expression of defined recombinant CaV2.1 channels in heterologous cells validates and extends the findings from neurons. Whole-cell patch-clamp recordings show that Nrxn1α in combination with α2δ-1, but not with α2δ-3, facilitates Ca<sup>2+</sup> currents of recombinant CaV2.1 without altering channel kinetics. These results suggest that presynaptic Nrxn1α acts as a positive regulator of Ca<sup>2+</sup> influx through CaV2.1 channels containing α2δ-1 subunits. We propose that this regulation represents an important way for neurons to adjust synaptic strength.SIGNIFICANCE STATEMENT Synaptic transmission between neurons depends on the fusion of neurotransmitter-filled vesicles with the presynaptic membrane, which subsequently activates postsynaptic receptors. Influx of calcium ions into the presynaptic terminal is the key step to trigger vesicle release and involves different subtypes of voltage-gated calcium channels. We study the regulation of calcium channels by neurexins, a family of synaptic cell-adhesion molecules that are essential for many synapse properties. Using optical measurements of calcium influx in cultured neurons and electrophysiological recordings of calcium currents from recombinant channels, we show that a major neurexin variant facilitates calcium influx through P/Q-type channels by interacting with their α2δ-1 auxiliary subunits. These results propose a novel way how neurons can modulate the strength of distinct synapses."	"Heparan Sulfate Organizes Neuronal Synapses through Neurexin Partnerships. Synapses are fundamental units of communication in the brain. The prototypical synapse-organizing complex neurexin-neuroligin mediates synapse development and function and is central to a shared genetic risk pathway in autism and schizophrenia. Neurexin's role in synapse development is thought to be mediated purely by its protein domains, but we reveal a requirement for a rare glycan modification. Mice lacking heparan sulfate (HS) on neurexin-1 show reduced survival, as well as structural and functional deficits at central synapses. HS directly binds postsynaptic partners neuroligins and LRRTMs, revealing a dual binding mode involving intrinsic glycan and protein domains for canonical synapse-organizing complexes. Neurexin HS chains also bind novel ligands, potentially expanding the neurexin interactome to hundreds of HS-binding proteins. Because HS structure is heterogeneous, our findings indicate an additional dimension to neurexin diversity, provide a molecular basis for fine-tuning synaptic function, and open therapeutic directions targeting glycan-binding motifs critical for brain development."	"A rare exonic NRXN3 deletion segregating with neurodevelopmental and neuropsychiatric conditions in a three-generation Chinese family. Members of the neurexin gene family, neurexin 1 (NRXN1), neurexin 2 (NRXN2), and neurexin 3 (NRXN3) encode important components of synaptic function implicated in autism and other neurodevelopmental/neuropsychiatric disorders. Loss of function variants have been reported predominantly in NRXN1, with fewer such variants detected in NRXN2 and NRXN3. Evidence for segregating NRNX3 variants has particularly been lacking. Here, we report identification by chromosomal microarray analysis of a rare exonic deletion affecting the NRXN3 alpha isoform in a three-generation Chinese family. The proband, a 7-year-old boy, presented with motor and language delay and met the clinical diagnostic criteria for autism. He also presented with moderate intellectual disability, attention-deficit hyperactivity disorder and facial dysmorphic features. The mother and maternal grandfather, both deletion carriers, presented with variable degrees of language and communication difficulties, as well as neuropsychiatric problems such as schizophrenia and temper tantrums. A compilation of sporadic cases with deletions involving part or all of NRXN3 revealed that 9 of 23 individuals (39%) displayed features of autism. The evidence for cosegregation in our family further supports a role for NRXN3 in autism and neurodevelopmental/neuropsychiatric disorders but demonstrates intrafamily variable expressivity due to this NRXN3 deletion, with schizophrenia and facial dysmorphism being potential novel features of NRXN3 haploinsufficiency."	"NRXN1 deletion syndrome; phenotypic and penetrance data from 34 families. The spectrum of phenotypes associated with heterozygous deletions of neurexin-1 (NRXN1) is diverse and includes: autism spectrum disorder, attention deficit hyperactivity disorder, intellectual disability, seizures, schizophrenia, mood disorders and congenital malformations. Reduced penetrance and variable expressivity of deletions in this gene remain a challenge for genetic counselling. We clinically reviewed 67 NRXN1 deletions from 34 families to document the phenotype and determine odds ratio. Thirty-four probands (5 adults, 29 children (&lt;16 years)) were initially identified from a cohort clinically referred for arrayCGH. A further 33 NRXN1 deletions (16 with established phenotype) from the families were identified following cascade screening. Speech and language delay was a consistent clinical presentation. Pedigree analysis of the inherited group revealed numerous untested relatives with a history of mental health and developmental issues, most notably in the NRXN1β isoform patients. Our study highlights the complex nature of the NRXN1 phenotype in this population."	"Mini-review: Update on the genetics of schizophrenia. A number of important findings have recently emerged relevant to identifying genetic risk factors for schizophrenia. Findings using common variants point towards gene sets of interest and also demonstrate an overlap with other psychiatric and nonpsychiatric disorders. Imputation of variants of the gene for complement component 4 (C4) from GWAS data has shown that the predicted expression of the C4A product is associated with schizophrenia risk. Very rare variants disrupting SETD1A, RBM12 or NRXN1 have a large effect on risk. Other rare, damaging variants are enriched in genes that are loss of function intolerant and/or whose products localise to the synapse. These and particular copy number variants can result in increased risk of schizophrenia but also of other neurodevelopmental disorders. The findings for C4 and NRXN1 may be especially helpful for elucidating the biological mechanisms that can lead to disease."	"Postsynaptic δ1 glutamate receptor assembles and maintains hippocampal synapses via Cbln2 and neurexin. The δ1 glutamate receptor (GluD1) was cloned decades ago and is widely expressed in many regions of the brain. However, its functional roles in these brain circuits remain unclear. Here, we find that GluD1 is required for both excitatory synapse formation and maintenance in the hippocampus. The action of GluD1 is absent in the Cbln2 knockout mouse. Furthermore, the GluD1 actions require the presence of presynaptic neurexin 1β carrying the splice site 4 insert (+S4). Together, our findings demonstrate that hippocampal synapse assembly and maintenance require a tripartite molecular complex in which the ligand Cbln2 binds with presynaptic neurexin 1β (+S4) and postsynaptic GluD1. We provide evidence that this mechanism may apply to other forebrain synapses, where GluD1 is widely expressed."	"Stage 1 Registered Report: Variation in neurodevelopmental outcomes in children with sex chromosome trisomies: protocol for a test of the double hit hypothesis. Background: The presence of an extra sex chromosome is associated with an increased rate of neurodevelopmental difficulties involving language. Group averages, however, obscure a wide range of outcomes. Hypothesis: The 'double hit' hypothesis proposes that the adverse impact of the extra sex chromosome is amplified when genes that are expressed from the sex chromosomes interact with autosomal variants that usually have only mild effects. Neuroligin-4 genes are expressed from X and Y chromosomes; they play an important role in synaptic development and have been implicated in neurodevelopment. We predict that the impact of an additional sex chromosome on neurodevelopment will be correlated with common autosomal variants involved in related synaptic functions. We describe here an analysis plan for testing this hypothesis using existing data. The analysis of genotype-phenotype associations will be conducted after this plan is published and peer-reviewed Methods: Neurodevelopmental data and DNA are available for 130 children with sex chromosome trisomies (SCTs: 42 girls with trisomy X, 43 boys with Klinefelter syndrome, and 45 boys with XYY). Children from a twin study using the same phenotype measures will form two comparison groups (Ns = 184 and 186). Three indicators of a neurodevelopment disorder phenotype will be used: (i) Standard score on a test of nonword repetition; (ii). A language factor score derived from a test battery; (iii) A general scale of neurodevelopmental challenges based on all available information. Autosomal genes were identified by literature search on the basis of prior association with (a) speech/language/reading phenotypes and (b) synaptic function. Preselected regions of two genes scoring high on both criteria, CNTNAP2 and NRXN1, will be tested for association with neurodevelopmental outcomes using Generalised Structural Component Analysis. We predict the association with one or both genes will be detectable in children with SCTs and stronger than in the comparison samples."	"Dysregulation of NRXN1 by mutant MIR8485 leads to calcium overload in pre-synapses inducing neurodegeneration in Multiple sclerosis. To identify Damaging mutations in microRNAs (miRNAs) and 3' untranslated regions (UTRs) of target genes to establish Multiple sclerosis (MS) disease pathway. Female aged 16, with Relapsing Remitting Multiple sclerosis (RRMS) was reported with initial symptoms of blurred vision, severe immobility, upper and lower limb numbness and backache. Whole Exome Sequencing (WES) and disease pathway analysis was performed to identify mutations in miRNAs and UTRs. We identified Deleterious/Damaging multibase mutations in MIR8485 and NRXN1. miR-8485 was found carrying frameshift homozygous deletion of bases CA, while NRXN1 was found carrying nonframeshift homozygous substitution of bases CT to TC in exon 8 replacing Serine with Leucine. Mutations in miR-8485 and NRXN1 was found to alter calcium homeostasis and NRXN1/NLGN1 cell adhesion molecule binding affinities. The miR-8485 mutation leads to overexpression of NRXN1 altering pre-synaptic Ca<sup>2+</sup> homeostasis, inducing neurodegeneration."	"An integrative analysis of non-coding regulatory DNA variations associated with autism spectrum disorder. A number of genetic studies have identified rare protein-coding DNA variations associated with autism spectrum disorder (ASD), a neurodevelopmental disorder with significant genetic etiology and heterogeneity. In contrast, the contributions of functional, regulatory genetic variations that occur in the extensive non-protein-coding regions of the genome remain poorly understood. Here we developed a genome-wide analysis to identify the rare single nucleotide variants (SNVs) that occur in non-coding regions and determined the regulatory function and evolutionary conservation of these variants. Using publicly available datasets and computational predictions, we identified SNVs within putative regulatory regions in promoters, transcription factor binding sites, and microRNA genes and their target sites. Overall, we found that the regulatory variants in ASD cases were enriched in ASD-risk genes and genes involved in fetal neurodevelopment. As with previously reported coding mutations, we found an enrichment of the regulatory variants associated with dysregulation of neurodevelopmental and synaptic signaling pathways. Among these were several rare inherited SNVs found in the mature sequence of microRNAs predicted to affect the regulation of ASD-risk genes. We show a paternally inherited miR-873-5p variant with altered binding affinity for several risk-genes including NRXN2 and CNTNAP2 putatively overlay maternally inherited loss-of-function coding variations in NRXN1 and CNTNAP2 to likely increase the genetic liability in an idiopathic ASD case. Our analysis pipeline provides a new resource for identifying loss-of-function regulatory DNA variations that may contribute to the genetic etiology of complex disorders."	"Significance of neurexin and neuroligin polymorphisms in regulating risk of Hirschsprung's disease. By performing a basic case-control study among a Chinese population, the aims of this study were to explore if single nucleotide polymorphisms (SNPs) within neurexin and neuroligin were associated with susceptibility to Hirschsprung's disease (HD). Eleven SNPs within neurexin and neuroligin were selected in this basic case-control study, and this study recruited 210 children with HD and 187 healthy children. The t-test and Χ<sup>2</sup> test were used to find the difference between case and control in their clinical variables. OR and 95% CI were used to assess the association between HD susceptibility and neurexin/neuroligin polymorphisms/haplotypes. Several SNPs were significantly associated with altered risk of HD in the Chinese Han population, including rs1421589 within NRXN1, rs11795613 and rs4844285 within NLGN3, as well as rs5961397, rs7157669 and rs724373 within NLGX4X (all P&lt;0.05). Further studies presented that the effects of rs1421589 within NRXN1, rs4844285 and rs11795613 within NLGN3, as well as rs5961397 within NLGX4X on HD phenotypes were also statistically significant (all P&lt;0.05). Conclusively, the polymorphisms and haplotypes situated within neurexin and neuroligin were markedly associated with the onset of HD, implying that mutations of neurexin and neuroligin might serve as the treatment target for HD for the Chinese children."	"MicroRNA-455-3p as a Potential Biomarker for Alzheimer's Disease: An Update. A non-invasive and early-detectable peripheral biomarker is urgently needed for Alzheimer's disease (AD). The present study is a step forward to verify the biomarker properties of human microRNA-455-3p (Hsa-miR-455-3p) in AD patients. Our previous findings on mild cognitive impaired subjects, AD patients and AD cells and mouse models unveiled the miR-455-3p as a potential peripheral biomarker for AD. In the current study, we verified the differential expression of miR-455-3p in postmortem AD brains obtained from NIH NeuroBioBank, and fibroblasts and B-lymphocytes from both familial and sporadic AD patients from Coriell Cell Repository of National Institutes on Aging. Total RNA was extracted from the fibroblasts, B-lymphocytes and AD postmortem brains, and expression of miR-455-3p was measured by real-time reverse-transcriptase RT-PCR. Our real-time RT-PCR analysis showed a significant (P = 0.0002) upregulation of miR-455-3p expression in AD postmortem brains compared to healthy control samples. Expression of miR-455-3p was also upregulated in the fibroblasts from AD patients, however a significant difference in miR-455-3p level was observed in the cells from sporadic AD patients (P = 0.014) compared to healthy controls. Similarly, in B-lymphocytes, miR-455-3p level was also higher (P = 0.044) especially in sporadic AD cases compared to controls. Receiver operating characteristic (ROC) curve analysis indicated the significant area under ROC curve (AUROC) value of miR-455-3p in AD postmortem brain (AUROC = 0.792; P = 0.001) and AD fibroblasts cells (AUROC = 0.861; P = 0.03), whereas in B-lymphocytes AUROC value of miR-455-3p was not significant. Further, in-silico analysis for miRNA targets predictions showed the binding capacity of miR-455-3p with several AD associated key genes such as APP, NGF, USP25, PDRG1, SMAD4, UBQLN1, SMAD2, TP73, VAMP2, HSPBAP1, and NRXN1. Hence, these observations further revealed that miR-455-3p is a potential biomarker for AD and its possible therapeutic target for AD."	"Treatment of secondary brain injury by perturbing postsynaptic density protein-95-NMDA receptor interaction after intracerebral hemorrhage in rats. Postsynaptic density protein-95 (PSD95) plays important roles in the formation, differentiation, remodeling, and maturation of neuronal synapses. This study is to estimate the potential role of PSD95 in cognitive dysfunction and synaptic injury following intracerebral hemorrhage (ICH). The interaction between PSD95 and NMDA receptor subunit NR2B-neurotransmitter nitric oxide synthase (nNOS) could form a signal protein complex mediating excitatory signaling. Besides NR2B-nNOS, PSD95 also can bind to neurexin-1-neuroligin-1 to form a complex and participates in maintaining synaptic function. In this study, we found that there were an increase in the formation of PSD95-NR2B-nNOS complex and a decrease in the formation of neurexin-1-neuroligin-1-PSD95 complex after ICH, and this was accompanied by increased neuronal death and degeneration, and behavior dysfunction. PSD95 inhibitor Tat-NR2B9c effectively inhibited the interaction between PSD95 and NR2B-nNOS, and promoted the formation of neurexin-1-nueuroligin-1-PSD95 complex. In addition, Tat-NR2B9c treatment significantly reduced neuronal death and degeneration and matrix metalloproteinase 9 activity, alleviated inflammatory response and neurobehavioral disorders, and improved the cognitive and learning ability of ICH rats. Inhibition of the formation of PSD95-NR2B-nNOS complex can rescue secondary brain injury and behavioral cognitive impairment after ICH. PSD95 is expected to be a target for improving the prognosis of patients with ICH."	"Two microcephaly-associated novel missense mutations in CASK specifically disrupt the CASK-neurexin interaction. Deletion and truncation mutations in the X-linked gene CASK are associated with severe intellectual disability (ID), microcephaly and pontine and cerebellar hypoplasia in girls (MICPCH). The molecular origin of CASK-linked MICPCH is presumed to be due to disruption of the CASK-Tbr-1 interaction. This hypothesis, however, has not been directly tested. Missense variants in CASK are typically asymptomatic in girls. We report three severely affected girls with heterozygous CASK missense mutations (M519T (2), G659D (1)) who exhibit ID, microcephaly, and hindbrain hypoplasia. The mutation M519T results in the replacement of an evolutionarily invariant methionine located in the PDZ signaling domain known to be critical for the CASK-neurexin interaction. CASK<sup>M519T</sup> is incapable of binding to neurexin, suggesting a critically important role for the CASK-neurexin interaction. The mutation G659D is in the SH3 (Src homology 3) domain of CASK, replacing a semi-conserved glycine with aspartate. We demonstrate that the CASK<sup>G659D</sup> mutation affects the CASK protein in two independent ways: (1) it increases the protein's propensity to aggregate; and (2) it disrupts the interface between CASK's PDZ (PSD95, Dlg, ZO-1) and SH3 domains, inhibiting the CASK-neurexin interaction despite residing outside of the domain deemed critical for neurexin interaction. Since heterozygosity of other aggregation-inducing mutations (e.g., CASK<sup>W919R</sup>) does not produce MICPCH, we suggest that the G659D mutation produces microcephaly by disrupting the CASK-neurexin interaction. Our results suggest that disruption of the CASK-neurexin interaction, not the CASK-Tbr-1 interaction, produces microcephaly and cerebellar hypoplasia. These findings underscore the importance of functional validation for variant classification."	"A new etiologic model for Alzheimers Disease. This etiologic model proposes that Alzheimers Disease (AD) arises when an unusually rapid increase in ventricle volume triggers axon stretch that culminates in the physical separation of trans-synaptic proteins. As a result, these proteins, such as neurexin, neuroligin, N-Cadherin and Amyloid Precursor Protein (APP), experience a change in the configuration of their cytoplasmic tail, so that instead of transmitting signals to create and maintain synaptic structure they activate enzymes, and generate molecules, that stimulate neurite growth; for example, the transformation of the N-Cadherin tail dissolves its complex with presenilin and β-catenin triggering activation of glycogen synthase kinase 3 beta (GSK3β) and cytoskeletal disruption. This disruption leads to an increase in pro nerve growth factor (proNGF), a molecule that stimulates neurite growth via the p75 neurotrophin receptor (p75). GSK3β contributes to this growth by increasing microtubule instability through the phosphorylation of tau. Separation of trans-synaptic APPs leads to their cis dimerization and this stimulates production of amyloid beta (Aβ), an autocrine growth factor that interacts with both the p75 and alpha 7 nicotinic acetylcholine receptors. Cis dimerization of APPs may also allow the autophosphorylation of Y682 and T668 in the APP cytoplasmic tail, triggering activation of c-Jun N terminal kinase, Abelson kinase and cyclin dependent kinase 5, all of which play a role in neurite growth. ProNGF, Aβ and the kinase cascades work together to transform synapses into growth cones and stimulate sprouting of neuropil threads in an attempt to reconnect axons and dendrites. Neurofibrillary tangles, located in neural cell soma, consist of neurofilaments and microtubules needed to fuel this renewal of neurite growth. The model suggests that the best way to treat AD is to prevent synaptic separation by identifying individuals experiencing unusually high rates of ventricle growth and reducing this to more normal levels by shunting or some other technique."	"Proteolytic Processing of Neurexins by Presenilins Sustains Synaptic Vesicle Release. Proteolytic processing of synaptic adhesion components can accommodate the function of synapses to activity-dependent changes. The adhesion system formed by neurexins (Nrxns) and neuroligins (Nlgns) bidirectionally orchestrate the function of presynaptic and postsynaptic terminals. Previous studies have shown that presenilins (PS), components of the gamma-secretase complex frequently mutated in familial Alzheimer's disease, clear from glutamatergic terminals the accumulation of Nrxn C-terminal fragments (Nrxn-CTF) generated by ectodomain shedding. Here, we characterized the synaptic consequences of the proteolytic processing of Nrxns in cultured hippocampal neurons from mice and rats of both sexes. We show that activation of presynaptic Nrxns with postsynaptic Nlgn1 or inhibition of ectodomain shedding in axonal Nrxn1-β increases presynaptic release at individual terminals, likely reflecting an increase in the number of functional release sites. Importantly, inactivation of PS inhibits presynaptic release downstream of Nrxn activation, leaving synaptic vesicle recruitment unaltered. Glutamate-receptor signaling initiates the activity-dependent generation of Nrxn-CTF, which accumulate at presynaptic terminals lacking PS function. The sole expression of Nrxn-CTF decreases presynaptic release and calcium flux, recapitulating the deficits due to loss of PS function. Our data indicate that inhibition of Nrxn processing by PS is deleterious to glutamatergic function.SIGNIFICANCE STATEMENT To gain insight into the role of presenilins (PS) in excitatory synaptic function, we address the relevance of the proteolytic processing of presynaptic neurexins (Nrxns) in glutamatergic differentiation. Using synaptic fluorescence probes in cultured hippocampal neurons, we report that trans-synaptic activation of Nrxns produces a robust increase in presynaptic calcium levels and neurotransmitter release at individual glutamatergic terminals by a mechanism that depends on normal PS activity. Abnormal accumulation of Nrxn C-terminal fragments resulting from impaired PS activity inhibits presynaptic calcium signal and neurotransmitter release, assigning synaptic defects to Nrxns as a specific PS substrate. These data may provide links into how loss of PS activity inhibits glutamatergic synaptic function in Alzheimer's disease patients."	"Neurexins and neuropsychiatric disorders. Neurexins are a family of presynaptic single-pass transmembrane proteins that act as synaptic organizers in mammals. The neurexins consist of three genes (NRXN1, NRXN2, and NRXN3), each of which produces a longer α- and shorter β-form. Genomic alterations in NRXN genes have been identified in a wide variety of neuropsychiatric disorders, including autism spectrum disorders (ASD), schizophrenia, intellectual disability (ID), and addiction. Remarkably, a bi-allelic deficiency of NRXN1 was recently linked to Pitt-Hopkins syndrome. The fact that some mono-allelic functional variants of NRXNs are also found in healthy controls indicates that other genetic or environmental factors affect the penetrance of NRXN deficiency. In this review, we summarize the common research methods and representative results of human genetic studies that have implicated NRXN variants in various neuropsychiatric disorders. We also summarize studies of rodent models with NRXN deficiencies that complement our knowledge of human genetics."	"Drosophila Syd-1 Has RhoGAP Activity That Is Required for Presynaptic Clustering of Bruchpilot/ELKS but Not Neurexin-1. Syd-1 proteins are required for presynaptic development in worm, fly, and mouse. Syd-1 proteins in all three species contain a Rho GTPase activating protein (GAP)-like domain of unclear significance: invertebrate Syd-1s are thought to lack GAP activity, and mouse mSYD1A has GAP activity that is thought to be dispensable for its function. Here, we show that Drosophila melanogaster Syd-1 can interact with all six fly Rhos and has GAP activity toward Rac1 and Cdc42. During development, fly Syd-1 clusters multiple presynaptic proteins at the neuromuscular junction (NMJ), including the cell adhesion molecule Neurexin (Nrx-1) and the active zone (AZ) component Bruchpilot (Brp), both of which Syd-1 binds directly. We show that a mutant form of Syd-1 that specifically lacks GAP activity localizes normally to presynaptic sites and is sufficient to recruit Nrx-1 but fails to cluster Brp normally. We provide evidence that Syd-1 participates with Rac1 in two separate functions: (1) together with the Rac guanine exchange factor (RacGEF) Trio, GAP-active Syd-1 is required to regulate the nucleotide-bound state of Rac1, thereby promoting Brp clustering; and (2) Syd-1, independent of its GAP activity, is required for the recruitment of Nrx-1 to boutons, including the recruitment of Nrx-1 that is promoted by GTP-bound Rac1. We conclude that, contrary to current models, the GAP domain of fly Syd-1 is active and required for presynaptic development; we suggest that the same may be true of vertebrate Syd-1 proteins. In addition, our data provide new molecular insight into the ability of Rac1 to promote presynaptic development."	"High resolution chromosomal microarray analysis in paediatric obsessive-compulsive disorder. Obsessive-Compulsive Disorder (OCD) is a common and chronic disorder in which a person has uncontrollable, reoccurring thoughts and behaviours. It is a complex genetic condition and, in case of early onset (EO), the patients manifest a more severe phenotype, and an increased heritability. Large (&gt;500 kb) copy number variations (CNVs) previously associated with autism and schizophrenia have been reported in OCD. Recently, rare CNVs smaller than 500 kb overlapping risk loci for other neurodevelopmental conditions have also been reported in OCD, stressing the importance of examining CNVs of any size range. The aim of this study was to further investigate the role of rare and small CNVs in the aetiology of EO-OCD. We performed high-resolution chromosomal microarray analysis in 121 paediatric OCD patients and in 124 random controls to identify rare CNVs (&gt;50 kb) which might contribute to EO-OCD. The frequencies and the size of the observed rare CNVs in the patients did not differ from the controls. However, we observed a significantly higher frequency of rare CNVs affecting brain related genes, especially deletions, in the patients (OR = 1.98, 95% CI 1.02-3.84; OR = 3.61, 95% CI 1.14-11.41, respectively). Similarly, enrichment-analysis of CNVs gene content, performed with three independent methods, confirmed significant clustering of predefined genes involved in synaptic/brain related functional pathways in the patients but not in the controls. In two patients we detected de-novo CNVs encompassing genes previously associated with different neurodevelopmental disorders (NRXN1, ANKS1B, UHRF1BP1). Our results further strengthen the role of small rare CNVs, particularly deletions, as susceptibility factors for paediatric OCD."	"Complex genetics of Tourette's Syndrome: Piecing the puzzle. NA"	"Genetic interaction of DISC1 and Neurexin in the development of fruit fly glutamatergic synapses. Originally identified at the breakpoint of a (1;11)(q42.1; q14.3) chromosomal translocation in a Scottish family with a wide range of mental disorders, the DISC1 gene has been a focus of intensive investigations as an entry point to study the molecular mechanisms of diverse mental dysfunctions. Perturbations of the DISC1 functions lead to behavioral changes in animal models, which are relevant to psychiatric conditions in patients. In this work, we have expressed the human DISC1 gene in the fruit fly (Drosophila melanogaster) and performed a genetic screening for the mutations of psychiatric risk genes that cause modifications of DISC1 synaptic phenotypes at the neuromuscular junction. We found that DISC1 interacts with dnrx1, the Drosophila homolog of the human Neurexin (NRXN1) gene, in the development of glutamatergic synapses. While overexpression of DISC1 suppressed the total bouton area on the target muscles and stimulated active zone density in wild-type background, a partial reduction of the dnrx1 activity negated the DISC1-mediated synaptic alterations. Likewise, overexpression of DISC1 stimulated the expression of a glutamate receptor component, DGLURIIA, in wild-type background but not in the dnrx1 heterozygous background. In addition, DISC1 caused mislocalization of Discs large, the Drosophila PSD-95 homolog, in the dnrx1 heterozygous background. Analyses with a series of domain deletions have revealed the importance of axonal localization of the DISC1 protein for efficient suppression of DNRX1 in synaptic boutons. These results thus suggest an intriguing converging mechanism controlled by the interaction of DISC1 and Neurexin in the developing glutamatergic synapses."	"Neurexin gene family variants as risk factors for autism spectrum disorder. Increasing evidence suggests that abnormal synaptic function leads to neuronal developmental disorders and is an important component of the etiology of autism spectrum disorder (ASD). Neurexins are presynaptic cell-adhesion molecules that affect the function of synapses and mediate the conduction of nerve signals. Thus, neurexins are attractive candidate genes for autism. Since gene families have greater power to reveal genetic association than single genes, we designed this case-control study to investigate six genetic variants in three neurexin genes (NRXN1, NRXN2, and NRXN3) in a Chinese population including 529 ASD patients and 1,923 healthy controls. We found that two SNPs were significantly associated with ASD after false discovery rate (FDR) adjustment for multiple comparisons. The NRXN2 rs12273892 polymorphism T allele and AT genotype were significantly associated with increased risk of ASD (respectively: OR = 1.328, 95% CI = 1.133-1.557, P &lt; 0.001; OR = 1.528; 95% CI = 1.249-1.868, P &lt; 0.001). The dominant model showed the same association (OR = 1.495, 95% CI = 1.231-1.816, P &lt; 0.001). The NRXN3 rs12879016 polymorphism played a significant role in ASD susceptibility under the dominant model (OR = 0.747, 95% CI= 0.615-0.908, P = 0.023), with the same trend detected for the G allele and GT genotype (respectively: OR = 0.811, 95% CI = 0.699-0.941, P = 0.036; OR = 0.755, 95% CI = 0.615-0.928, P = 0.035). In conclusion, this study supports the importance of two genetic variants in the neurexin gene family in ASD susceptibility in China. Autism Res 2018, 11: 37-43. © 2017 International Society for Autism Research, Wiley Periodicals, Inc. Autism spectrum disorder (ASD) is a neurodevelopmental disorder that is highly heritable, and studies have found a number of candidate genes that might contribute to ASD. Neurexins are presynaptic cell-adhesion molecules that affect the function of synapses and mediate the conduction of nerve signals, and they play an important role in normal brain development and become candidate genes for autism. The purpose of our study is to explore the association between variants of the neurexins gene family and ASD in a Chinese population through a case-control study."	"Integrating evolutionary and regulatory information with a multispecies approach implicates genes and pathways in obsessive-compulsive disorder. Obsessive-compulsive disorder is a severe psychiatric disorder linked to abnormalities in glutamate signaling and the cortico-striatal circuit. We sequenced coding and regulatory elements for 608 genes potentially involved in obsessive-compulsive disorder in human, dog, and mouse. Using a new method that prioritizes likely functional variants, we compared 592 cases to 560 controls and found four strongly associated genes, validated in a larger cohort. NRXN1 and HTR2A are enriched for coding variants altering postsynaptic protein-binding domains. CTTNBP2 (synapse maintenance) and REEP3 (vesicle trafficking) are enriched for regulatory variants, of which at least six (35%) alter transcription factor-DNA binding in neuroblastoma cells. NRXN1 achieves genome-wide significance (p = 6.37 × 10<sup>-11</sup>) when we include 33,370 population-matched controls. Our findings suggest synaptic adhesion as a key component in compulsive behaviors, and show that targeted sequencing plus functional annotation can identify potentially causative variants, even when genomic data are limited.Obsessive-compulsive disorder (OCD) is a neuropsychiatric disorder with symptoms including intrusive thoughts and time-consuming repetitive behaviors. Here Noh and colleagues identify genes enriched for functional variants associated with increased risk of OCD."	"Genetic background effects in Neuroligin-3 mutant mice: Minimal behavioral abnormalities on C57 background. Neuroligin-3 (NLGN3) is a postsynaptic cell adhesion protein that interacts with presynaptic ligands including neurexin-1 (NRXN1) [Ichtchenko et al., Journal of Biological Chemistry, 271, 2676-2682, 1996]. Mice harboring a mutation in the NLGN3 gene (NL3R451C) mimicking a mutation found in two brothers with autism spectrum disorder (ASD) were previously generated and behaviorally phenotyped for autism-related behaviors. In these NL3R451C mice generated and tested on a hybrid C57BL6J/129S2/SvPasCrl background, we observed enhanced spatial memory and reduced social interaction [Tabuchi et al., Science, 318, 71-76, 2007]. Curiously, an independently generated second line of mice harboring the same mutation on a C57BL6J background exhibited minimal aberrant behavior, thereby providing apparently discrepant results. To investigate the origin of the discrepancy, we previously replicated the original findings of Tabuchi et al. by studying the same NL3R451C mutation on a pure 129S2/SvPasCrl genetic background. Here we complete the behavioral characterization of the NL3R451C mutation on a pure C57BL6J genetic background to determine if background genetics play a role in the discrepant behavioral outcomes involving NL3R451C mice. NL3R451C mutant mice on a pure C57BL6J background did not display spatial memory enhancements or social interaction deficits. We only observed a decreased startle response and mildly increased locomotor activity in these mice suggesting that background genetics influences behavioral outcomes involving the NL3R451C mutation. Autism Res 2018, 11: 234-244. © 2017 International Society for Autism Research, Wiley Periodicals, Inc. Behavioral symptoms of autism can be highly variable, even in cases that involve identical genetic mutations. Previous studies in mice with a mutation of the Neuroligin-3 gene showed enhanced learning and social deficits. We replicated these findings on the same and different genetic backgrounds. In this study, however, the same mutation in mice on a different genetic background did not reproduce our previous findings. Our results suggest that genetic background influences behavioral symptoms of this autism-associated mutation."	"A Parallel Reaction Monitoring Mass Spectrometric Method for Analysis of Potential CSF Biomarkers for Alzheimer's Disease. The aim of this study was to develop and evaluate a parallel reaction monitoring mass spectrometry (PRM-MS) assay consisting of a panel of potential protein biomarkers in cerebrospinal fluid (CSF). Thirteen proteins were selected based on their association with neurodegenerative diseases and involvement in synaptic function, secretory vesicle function, or innate immune system. CSF samples were digested and two to three peptides per protein were quantified using stable isotope-labeled peptide standards. Coefficients of variation were generally below 15%. Clinical evaluation was performed on a cohort of 10 patients with Alzheimer's disease (AD) and 15 healthy subjects. Investigated proteins of the granin family exhibited the largest difference between the patient groups. Secretogranin-2 (p&lt;0.005) and neurosecretory protein VGF (p&lt;0.001) concentrations were lowered in AD. For chromogranin A, two of three peptides had significantly lowered AD concentrations (p&lt;0.01). The concentrations of the synaptic proteins neurexin-1 and neuronal pentraxin-1, as well as neurofascin were also significantly lowered in AD (p&lt;0.05). The other investigated proteins, β2-microglobulin, cystatin C, amyloid precursor protein, lysozyme C, neurexin-2, neurexin-3, and neurocan core protein, were not significantly altered. PRM-MS of protein panels is a valuable tool to evaluate biomarker candidates for neurodegenerative disorders."	"Not all neuroligin 3 and 4X missense variants lead to significant functional inactivation. Neuroligins are postsynaptic cell adhesion molecules that interact with neurexins to regulate the fine balance between excitation and inhibition of synapses. Recently, accumulating evidence, involving mutation analysis, cellular assays, and mouse models, has suggested that neuroligin (NLGN) mutations affect synapse maturation and function. Previously, four missense variations [p.G426S (NLGN3), p.G84R (NLGN4X), p.Q162K (NLGN4X), and p.A283T (NLGN4X)] in four different unrelated patients have been identified by PCR and direct sequencing. In this study, we analyzed the functional effect of these missense variations by in vitro experiment via the stable HEK293 cells expressing wild-type and mutant neuroligin. We found that the four mutations did not significantly impair the expression of neuroligin 3 and neuroligin 4X, and also did not measurably inhibit the neurexin 1-neuroligin interaction. These variants might play a modest role in the pathogenesis of autism or might simply be unreported infrequent polymorphisms. Our data suggest that these four previously described neuroligin mutations are not primary risk factors for autism."	"Neuroligin-induced presynaptic differentiation through SLM2-mediated splicing modifications of neurexin in cerebellar cultures. Neurexins (NRXs) and neuroligins (NLs) play important roles in synapse specification. The alternatively spliced segment 4 (AS4) of NRX genes (Nrxn) is a critical element in selective trans-synaptic interactions. However, the role of splicing of NRXs and NLs in synapse specification is not fully understood. To investigate the exact role of splice-dependent NRX-NL interaction in the specification of glutamatergic and gamma-aminobutyric acid (GABA)-ergic synapses in the cerebellum, we evaluated the synaptogenic receptor activity of NL1/2/3 isoforms in a neuron-fibroblast co-culture system, in which the Nrxn AS4 segments are manipulated using SLM2, a selective and dominant regulator of AS4 splicing. We show that ectopic SLM2 expression (SLM2 E/E) causes marked skipping of exon 20 of AS4 in cerebellar neuron culture. Whereas NLs can induce VAMP2<sup>+</sup> presynaptic contacts from mainly glutamatergic neurons in both uninfected (control) and SLM2 E/E co-cultures, they induce VGAT<sup>+</sup> GABAergic contacts in the control culture, but not properly in the SLM2 E/E culture. Furthermore, Nrxn3 is responsible for the NL-induced assembly of GABAergic synapses in co-culture. Importantly, lentivirus-based expression of Nrxn3 containing exon 20 restores the reduced NL-induced GABAergic contacts in the SLM2 E/E co-culture. Therefore, our findings may provide further insights into NRX-NL mediated synapse specification."	"Progress in genome-wide association studies of schizophrenia in Han Chinese populations. Since 2006, genome-wide association studies of schizophrenia have led to the identification of numerous novel risk loci for this disease. However, there remains a geographical imbalance in genome-wide association studies, which to date have primarily focused on Western populations. During the last 6 years, genome-wide association studies in Han Chinese populations have identified both the sharing of susceptible loci across ethnicities and genes unique to Han Chinese populations. Here, we review recent progress in genome-wide association studies of schizophrenia in Han Chinese populations. Researchers have identified and replicated the sharing of susceptible genes, such as within the major histocompatibility complex, microRNA 137 (MIR137), zinc finger protein 804A (ZNF804A), vaccinia related kinase 2 (VRK2), and arsenite methyltransferase (AS3MT), across both European and East Asian populations. Several copy number variations identified in European populations have also been validated in the Han Chinese, including duplications at 16p11.2, 15q11.2-13.1, 7q11.23, and VIPR2 and deletions at 22q11.2, 1q21.1-q21.2, and NRXN1. However, these studies have identified some potential confounding factors, such as genetic heterogeneity and the effects of natural selection on tetraspanin 18 (TSPAN18) or zinc finger protein 323 (ZNF323), which may explain the population differences in genome-wide association studies. In the future, genome-wide association studies in Han Chinese populations should include meta-analyzes or mega-analyses with enlarged sample sizes across populations, deep sequencing, precision medicine treatment, and functional exploration of the risk genes for schizophrenia."	"Genetic and epigenetic mechanisms of epilepsy: a review. Epilepsy is a common episodic neurological disorder or condition characterized by recurrent epileptic seizures, and genetics seems to play a key role in its etiology. Early linkage studies have localized multiple loci that may harbor susceptibility genes to epilepsy, and mutational analyses have detected a number of mutations involved in both ion channel and nonion channel genes in patients with idiopathic epilepsy. Genome-wide studies of epilepsy have found copy number variants at 2q24.2-q24.3, 7q11.22, 15q11.2-q13.3, and 16p13.11-p13.2, some of which disrupt multiple genes, such as NRXN1, AUTS2, NLGN1, CNTNAP2, GRIN2A, PRRT2, NIPA2, and BMP5, implicated for neurodevelopmental disorders, including intellectual disability and autism. Unfortunately, only a few common genetic variants have been associated with epilepsy. Recent exome-sequencing studies have found some genetic mutations, most of which are located in nonion channel genes such as the LGI1, PRRT2, EFHC1, PRICKLE, RBFOX1, and DEPDC5 and in probands with rare forms of familial epilepsy, and some of these genes are involved with the neurodevelopment. Since epigenetics plays a role in neuronal function from embryogenesis and early brain development to tissue-specific gene expression, epigenetic regulation may contribute to the genetic mechanism of neurodevelopment through which a gene and the environment interacting with each other affect the development of epilepsy. This review focused on the analytic tools used to identify epilepsy and then provided a summary of recent linkage and association findings, indicating the existence of novel genes on several chromosomes for further understanding of the biology of epilepsy."	"Heterogeneous contribution of microdeletions in the development of common generalised and focal epilepsies. Microdeletions are known to confer risk to epilepsy, particularly at genomic rearrangement 'hotspot' loci. However, microdeletion burden not overlapping these regions or within different epilepsy subtypes has not been ascertained. To decipher the role of microdeletions outside hotspots loci and risk assessment by epilepsy subtype. We assessed the burden, frequency and genomic content of rare, large microdeletions found in a previously published cohort of 1366 patients with genetic generalised epilepsy (GGE) in addition to two sets of additional unpublished genome-wide microdeletions found in 281 patients with rolandic epilepsy (RE) and 807 patients with adult focal epilepsy (AFE), totalling 2454 cases. Microdeletions were assessed in a combined and subtype-specific approaches against 6746 controls. When hotspots are considered, we detected an enrichment of microdeletions in the combined epilepsy analysis (adjusted p=1.06×10<sup>-6</sup>,OR 1.89, 95% CI 1.51 to 2.35). Epilepsy subtype-specific analyses showed that hotspot microdeletions in the GGE subgroup contribute most of the overall signal (adjusted p=9.79×10<sup>-12</sup>, OR 7.45, 95% CI 4.20-13.5). Outside hotspots , microdeletions were enriched in the GGE cohort for neurodevelopmental genes (adjusted p=9.13×10<sup>-3</sup>,OR 2.85, 95% CI 1.62-4.94). No additional signal was observed for RE and AFE. Still, gene-content analysis identified known (NRXN1, RBFOX1 and PCDH7) and novel (LOC102723362) candidate genes across epilepsy subtypes that were not deleted in controls. Our results show a heterogeneous effect of recurrent and non-recurrent microdeletions as part of the genetic architecture of GGE and a minor contribution in the aetiology of RE and AFE."	"Comparison of gene expression profiles between dental pulp and periodontal ligament tissues in humans. There are anatomical and functional differences between human dental pulp (DP) and periodontal ligament (PDL). However, the molecular biological differences and function of these tissues are poorly understood. In the present study, we employed a cDNA microarray array to screen for differentially expressed genes (DEGs) between human DP and PDL tissues, and used the online software WebGestalt to perform the functional analysis of the DEGs. In addition, the STRING database and KEGG pathway analysis were applied for interaction network and pathway analysis of the DEGs. DP and PDL samples were obtained from permanent premolars (n=16) extracted for orthodontic purposes. The results of the microarray assay were confirmed by RT-qPCR. The DEGs were found to be significantly associated with the extracellular matrix and focal adhesion. A total of 10 genes were selected to confirm the results. The mRNA levels of integrin alpha 4 (ITGA4), integrin alpha 8 (ITGA8), neurexin 1 (NRXN1) and contactin 1 (CNTN1) were significantly higher in the DP than in the PDL tissues. However, the levels of collagen type XI alpha 1 (COL11A1), aggrecan (ACAN), collagen type VI alpha 1 (COL6A1), chondroadherin (CHAD), laminin gamma 2 (LAMC2) and laminin alpha 3 (LAMA3) were higher in the PDL than in the DP samples. The gene expression profiles provide novel insight into the characterization of DP and PDL tissues, and contribute to our understanding of the potential molecular mechanisms of dental tissue mineralization and regeneration."	"Somatic mutations in ZFHX4 gene are associated with poor overall survival of Chinese esophageal squamous cell carcinoma patients. Recent genome-sequencing studies have revealed dozens of genes frequently mutated in esophageal squamous cell carcinoma, but few genes are associated with patients' clinical outcomes. Novel prognostic biomarkers are urgently needed in the clinic. We collected both somatic mutations and clinical information of 442 Chinese esophageal squamous cell carcinoma patients from four published studies. Survival analysis was performed to reveal the clinical significance of the mutated genes. Dysregulation of the mutated genes was observed from public gene-expression data sets and its effects on cell migration and invasion were investigated with siRNA-mediated silencing. Our integrated analysis revealed 26 genes significantly and frequently mutated in esophageal squamous cell carcinoma. Importantly, mutations in ZFHX4, SPHKAP, NRXN1, KIAA1109, DNAH5 and KCNH7 were associated with poor survival. In addition, ZFHX4 was overexpressed in tumor tissues compared to normal controls, and knockdown of ZFHX4 in vitro significantly inhibited cell migration and invasion. Mutations in ZFHX4 were strongly associated with poor prognosis and the down-regulation of ZFHX4 inhibits the progression of esophageal squamous cell carcinoma. Further investigation is warranted to confirm the prognostic values of ZFHX4 in a prospective study."	"Variable phenotype expression in a family segregating microdeletions of the NRXN1 and MBD5 autism spectrum disorder susceptibility genes. Autism Spectrum Disorder (ASD) is a developmental condition of early childhood onset, which impacts socio-communicative functioning and is principally genetic in etiology. Currently, more than 50 genomic loci are deemed to be associated with susceptibility to ASD, showing de novo and inherited unbalanced copy number variants (CNVs) and smaller insertions and deletions (indels), more complex structural variants (SVs), as well as single nucleotide variants (SNVs) deemed of pathological significance. However, the phenotypes associated with many of these genes are variable, and penetrance is largely unelaborated in clinical descriptions. This case report describes a family harboring two CNV microdeletions, which affect regions of NRXN1 and MBD5 - each well-established in association with risk of ASD and other neurodevelopmental disorders. Although each CNV would likely be categorized as pathologically significant, both genomic alterations are transmitted in this family from an unaffected father to the proband, and shared by an unaffected sibling. This family case illustrates the importance of recognizing that phenotype can vary among exon overlapping variants of the same gene, and the need to evaluate penetrance of such variants in order to properly inform on risks."	"Molecular Mechanism of MDGA1: Regulation of Neuroligin 2:Neurexin Trans-synaptic Bridges. Neuroligins and neurexins promote synapse development and validation by forming trans-synaptic bridges spanning the synaptic cleft. Select pairs promote excitatory and inhibitory synapses, with neuroligin 2 (NLGN2) limited to inhibitory synapses and neuroligin 1 (NLGN1) dominating at excitatory synapses. The cell-surface molecules, MAM domain-containing glycosylphosphatidylinositol anchor 1 (MDGA1) and 2 (MDGA2), regulate trans-synaptic adhesion between neurexins and neuroligins, impacting NLGN2 and NLGN1, respectively. We have determined the molecular mechanism of MDGA action. MDGA1 Ig1-Ig2 is sufficient to bind NLGN2 with nanomolar affinity; its crystal structure reveals an unusual locked rod-shaped array. In the crystal structure of the complex, two MDGA1 Ig1-Ig2 molecules each span the entire NLGN2 dimer. Site-directed mutagenesis confirms the observed interaction interface. Strikingly, Ig1 from MDGA1 binds to the same region on NLGN2 as neurexins do. Thus, MDGAs regulate the formation of neuroligin-neurexin trans-synaptic bridges by sterically blocking access of neurexins to neuroligins."	"Structural Insights into Modulation of Neurexin-Neuroligin Trans-synaptic Adhesion by MDGA1/Neuroligin-2 Complex. Membrane-associated mucin domain-containing glycosylphosphatidylinositol anchor proteins (MDGAs) bind directly to neuroligin-1 (NL1) and neuroligin-2 (NL2), thereby respectively regulating excitatory and inhibitory synapse development. However, the mechanisms by which MDGAs modulate NL activity to specify development of the two synapse types remain unclear. Here, we determined the crystal structures of human NL2/MDGA1 Ig1-3 complex, revealing their stable 2:2 arrangement with three interaction interfaces. Cell-based assays using structure-guided, site-directed MDGA1 mutants showed that all three contact patches were required for the MDGA's negative regulation of NL2-mediated synaptogenic activity. Furthermore, MDGA1 competed with neurexins for NL2 via its Ig1 domain. The binding affinities of both MDGA1 and MDGA2 for NL1 and NL2 were similar, consistent with the structural prediction of similar binding interfaces. However, MDGA1 selectively associated with NL2, but not NL1, in vivo. These findings collectively provide structural insights into the mechanism by which MDGAs negatively modulate synapse development governed by NLs/neurexins."	"Rare Copy Number Variants in NRXN1 and CNTN6 Increase Risk for Tourette Syndrome. Tourette syndrome (TS) is a model neuropsychiatric disorder thought to arise from abnormal development and/or maintenance of cortico-striato-thalamo-cortical circuits. TS is highly heritable, but its underlying genetic causes are still elusive, and no genome-wide significant loci have been discovered to date. We analyzed a European ancestry sample of 2,434 TS cases and 4,093 ancestry-matched controls for rare (&lt; 1% frequency) copy-number variants (CNVs) using SNP microarray data. We observed an enrichment of global CNV burden that was prominent for large (&gt; 1 Mb), singleton events (OR = 2.28, 95% CI [1.39-3.79], p = 1.2 × 10<sup>-3</sup>) and known, pathogenic CNVs (OR = 3.03 [1.85-5.07], p = 1.5 × 10<sup>-5</sup>). We also identified two individual, genome-wide significant loci, each conferring a substantial increase in TS risk (NRXN1 deletions, OR = 20.3, 95% CI [2.6-156.2]; CNTN6 duplications, OR = 10.1, 95% CI [2.3-45.4]). Approximately 1% of TS cases carry one of these CNVs, indicating that rare structural variation contributes significantly to the genetic architecture of TS."	"Autism spectrum disorder: neuropathology and animal models. Autism spectrum disorder (ASD) has a major impact on the development and social integration of affected individuals and is the most heritable of psychiatric disorders. An increase in the incidence of ASD cases has prompted a surge in research efforts on the underlying neuropathologic processes. We present an overview of current findings in neuropathology studies of ASD using two investigational approaches, postmortem human brains and ASD animal models, and discuss the overlap, limitations, and significance of each. Postmortem examination of ASD brains has revealed global changes including disorganized gray and white matter, increased number of neurons, decreased volume of neuronal soma, and increased neuropil, the last reflecting changes in densities of dendritic spines, cerebral vasculature and glia. Both cortical and non-cortical areas show region-specific abnormalities in neuronal morphology and cytoarchitectural organization, with consistent findings reported from the prefrontal cortex, fusiform gyrus, frontoinsular cortex, cingulate cortex, hippocampus, amygdala, cerebellum and brainstem. The paucity of postmortem human studies linking neuropathology to the underlying etiology has been partly addressed using animal models to explore the impact of genetic and non-genetic factors clinically relevant for the ASD phenotype. Genetically modified models include those based on well-studied monogenic ASD genes (NLGN3, NLGN4, NRXN1, CNTNAP2, SHANK3, MECP2, FMR1, TSC1/2), emerging risk genes (CHD8, SCN2A, SYNGAP1, ARID1B, GRIN2B, DSCAM, TBR1), and copy number variants (15q11-q13 deletion, 15q13.3 microdeletion, 15q11-13 duplication, 16p11.2 deletion and duplication, 22q11.2 deletion). Models of idiopathic ASD include inbred rodent strains that mimic ASD behaviors as well as models developed by environmental interventions such as prenatal exposure to sodium valproate, maternal autoantibodies, and maternal immune activation. In addition to replicating some of the neuropathologic features seen in postmortem studies, a common finding in several animal models of ASD is altered density of dendritic spines, with the direction of the change depending on the specific genetic modification, age and brain region. Overall, postmortem neuropathologic studies with larger sample sizes representative of the various ASD risk genes and diverse clinical phenotypes are warranted to clarify putative etiopathogenic pathways further and to promote the emergence of clinically relevant diagnostic and therapeutic tools. In addition, as genetic alterations may render certain individuals more vulnerable to developing the pathological changes at the synapse underlying the behavioral manifestations of ASD, neuropathologic investigation using genetically modified animal models will help to improve our understanding of the disease mechanisms and enhance the development of targeted treatments."	"Contiguous gene deletion of chromosome 2p16.3-p21 as a cause of Lynch syndrome. Lynch syndrome is an autosomal dominant condition caused by pathogenic mutations in the DNA mismatch repair (MMR) genes. Although commonly associated with clinical features such as intellectual disability and congenital anomalies, contiguous gene deletions may also result in cancer predisposition syndromes. We report on a 52-year-old male with Lynch syndrome caused by deletion of chromosome 2p16.3-p21. The patient had intellectual disability and presented with a prostatic adenocarcinoma with an incidentally identified synchronous sigmoid adenocarcinoma that exhibited deficient MMR with an absence of MSH2 and MSH6 protein expression. Family history was unrevealing. Physical exam revealed short stature, brachycephaly with a narrow forehead and short philtrum, brachydactyly of the hands, palmar transverse crease, broad and small feet with hyperpigmentation of the soles. The patient underwent total colectomy with ileorectal anastomosis for a pT3N1 sigmoid adenocarcinoma. Germline genetic testing of the MSH2, MSH6, and EPCAM genes revealed full gene deletions. SNP-array based DNA copy number analysis identified a deletion of 4.8 Mb at 2p16.3-p21. In addition to the three Lynch syndrome associated genes, the deleted chromosomal section encompassed genes including NRXN1, CRIPT, CALM2, FBXO11, LHCGR, MCFD2, TTC7A, EPAS1, PRKCE, and 15 others. Contiguous gene deletions have been described in other inherited cancer predisposition syndromes, such as Familial Adenomatous Polyposis. Our report and review of the literature suggests that contiguous gene deletion within the 2p16-p21 chromosomal region is a rare cause of Lynch syndrome, but presents with distinct phenotypic features, highlighting the need for recognition and awareness of this syndromic entity."	"Conditional Deletion of All Neurexins Defines Diversity of Essential Synaptic Organizer Functions for Neurexins. Neurexins are recognized as key organizers of synapses that are essential for normal brain function. However, it is unclear whether neurexins are fundamental building blocks of all synapses with similar overall functions or context-dependent specifiers of synapse properties. To address this question, we produced triple cKO (conditional knockout) mice that allow ablating all neurexin expression in mice. Using neuron-specific manipulations combined with immunocytochemistry, paired recordings, and two-photon Ca<sup>2+</sup> imaging, we analyzed excitatory synapses formed by climbing fibers on Purkinje cells in cerebellum and inhibitory synapses formed by parvalbumin- or somatostatin-positive interneurons on pyramidal layer 5 neurons in the medial prefrontal cortex. After pan-neurexin deletions, we observed in these synapses severe but dramatically different synaptic phenotypes that ranged from major impairments in their distribution and function (climbing-fiber synapses) to large decreases in synapse numbers (parvalbumin-positive synapses) and severe alterations in action potential-induced presynaptic Ca<sup>2+</sup> transients (somatostatin-positive synapses). Thus, neurexins function primarily as context-dependent specifiers of synapses."	"Using high-throughput barcode sequencing to efficiently map connectomes. The function of a neural circuit is determined by the details of its synaptic connections. At present, the only available method for determining a neural wiring diagram with single synapse precision-a 'connectome'-is based on imaging methods that are slow, labor-intensive and expensive. Here, we present SYNseq, a method for converting the connectome into a form that can exploit the speed and low cost of modern high-throughput DNA sequencing. In SYNseq, each neuron is labeled with a unique random nucleotide sequence-an RNA 'barcode'-which is targeted to the synapse using engineered proteins. Barcodes in pre- and postsynaptic neurons are then associated through protein-protein crosslinking across the synapse, extracted from the tissue, and joined into a form suitable for sequencing. Although our failure to develop an efficient barcode joining scheme precludes the widespread application of this approach, we expect that with further development SYNseq will enable tracing of complex circuits at high speed and low cost."	"Genetic predictors of antipsychotic response to lurasidone identified in a genome wide association study and by schizophrenia risk genes. Biomarkers which predict response to atypical antipsychotic drugs (AAPDs) increases their benefit/risk ratio. We sought to identify common variants in genes which predict response to lurasidone, an AAPD, by associating genome-wide association study (GWAS) data and changes (Δ) in Positive And Negative Syndrome Scale (PANSS) scores from two 6-week randomized, placebo-controlled trials of lurasidone in schizophrenia (SCZ) patients. We also included SCZ risk SNPs identified by the Psychiatric Genomics Consortium using a polygenic risk analysis. The top genomic loci, with uncorrected p&lt;10<sup>-4</sup>, include: 1) synaptic adhesion (PTPRD, LRRC4C, NRXN1, ILIRAPL1, SLITRK1) and scaffolding (MAGI1, MAGI2, NBEA) genes, both essential for synaptic function; 2) other synaptic plasticity-related genes (NRG1/3 and KALRN); 3) the neuron-specific RNA splicing regulator, RBFOX1; and 4) ion channel genes, e.g. KCNA10, KCNAB1, KCNK9 and CACNA2D3). Some genes predicted response for patients with both European and African Ancestries. We replicated some SNPs reported to predict response to other atypical APDs in other GWAS. Although none of the biomarkers reached genome-wide significance, many of the genes and associated pathways have previously been linked to SCZ. Two polygenic modeling approaches, GCTA-GREML and PLINK-Polygenic Risk Score, demonstrated that some risk genes related to neurodevelopment, synaptic biology, immune response, and histones, also contributed to prediction of response. The top hits predicting response to lurasidone did not predict improvement with placebo. This is the first evidence from clinical trials that SCZ risk SNPs are related to clinical response to an AAPD. These results need to be replicated in an independent sample."	"Whole Genome Expression Analysis in a Mouse Model of Tauopathy Identifies MECP2 as a Possible Regulator of Tau Pathology. Increasing evidence suggests that hyperphosphorylation and aggregation of microtubule-associated protein tau (MAPT or tau) correlates with the development of cognitive impairment in Alzheimer's disease (AD) and related tauopathies. While numerous attempts have been made to model AD-relevant tau pathology in various animal models, there has been very limited success for these models to fully recapitulate the progression of disease as seen in human tauopathies. Here, we performed whole genome gene expression in a genomic mouse model of tauopathy that expressed human MAPT gene under the control of endogenous human MAPT promoter and also were complete knockout for endogenous mouse tau [referred to as 'hTau <sup>MaptKO(Duke)</sup>' mice]. First, whole genome expression analysis revealed 64 genes, which were differentially expressed (32 up-regulated and 32 down-regulated) in the hippocampus of 6-month-old hTau <sup>MaptKO(Duke)</sup> mice compared to age-matched non-transgenic controls. Genes relevant to neuronal function or neurological disease include up-regulated genes: PKC-alpha (Prkca), MECP2 (Mecp2), STRN4 (Strn4), SLC40a1 (Slc40a1), POLD2 (Pold2), PCSK2 (Pcsk2), and down-regulated genes: KRT12 (Krt12), LASS1 (Cers1), PLAT (Plat), and NRXN1 (Nrxn1). Second, network analysis suggested anatomical structure development, cellular metabolic process, cell death, signal transduction, and stress response were significantly altered biological processes in the hTau <sup>MaptKO(Duke)</sup> mice as compared to age-matched non-transgenic controls. Further characterization of a sub-group of significantly altered genes revealed elevated phosphorylation of MECP2 (methyl-CpG-binding protein-2), which binds to methylated CpGs and associates with chromatin, in hTau <sup>MaptKO(Duke)</sup> mice compared to age-matched controls. Third, phoshpho-MECP2 was elevated in autopsy brain samples from human AD compared to healthy controls. Finally, siRNA-mediated knockdown of MECP2 in human tau expressing N2a cells resulted in a significant decrease in total and phosphorylated tau. Together, these results suggest that MECP2 is a potential novel regulator of tau pathology relevant to AD and tauopathies."	"Activity-induced histone modifications govern Neurexin-1 mRNA splicing and memory preservation. Epigenetic mechanisms regulate the formation, consolidation and reconsolidation of memories. However, the signaling path from neuronal activation to epigenetic modifications within the memory-related brain circuit remains unknown. We report that learning induces long-lasting histone modifications in hippocampal memory-activated neurons to regulate memory stability. Neuronal activity triggers a late-onset shift in Nrxn1 splice isoform choice at splicing site 4 by accumulating a repressive histone marker, H3K9me3, to modulate the splicing process. Activity-dependent phosphorylation of p66α via AMP-activated protein kinase recruits HDAC2 and Suv39h1 to establish repressive histone markers and changes the connectivity of the activated neurons. Removal of Suv39h1 abolished the activity-dependent shift in Nrxn1 splice isoform choice and reduced the stability of established memories. We uncover a cell-autonomous process for memory preservation in which memory-related neurons initiate a late-onset reduction of their rewiring capacities through activity-induced histone modifications."	"A new case of Pitt-Hopkins-like syndrome 2? NA"	"Mutation analysis of the NRXN1 gene in autism spectrum disorders. The aim of this study was to identify the sequence mutations in the Neurexin 1 (NRXN1) gene that has been considered as one of the strong candidate genes. A total of 30 children and adolescents (aged 3-18) with non syndromic autism were enrolled this study. Sequencing of the coding exons and the exon-intron boundaries of the NRXN1 gene was performed. Two known mutations were described in two different cases. Heterozygous S14L was determined in one patient and heterozygous L748I was determined in another patient. The S14L and L748I mutations have been described in the patients with autism before. Both of these mutations were inherited from their father. In this study, two of 30 (6.7%) autism spectrum disorder (ASD) patients carrying NRXN1 gene mutations were detected. It indicates that variants in the NRXN1 gene might confer a risk of developing nonsyndromic ASD. However, due to the reduced penetrance in the gene, the causal role of the NRXN1 gene mutations must be evaluated carefully in all cases."	"Netrin-1 receptor antibodies in thymoma-associated neuromyotonia with myasthenia gravis. To identify cell-surface antibodies in patients with neuromyotonia and to describe the main clinical implications. Sera of 3 patients with thymoma-associated neuromyotonia and myasthenia gravis were used to immunoprecipitate and characterize neuronal cell-surface antigens using reported techniques. The clinical significance of antibodies against precipitated proteins was assessed with sera of 98 patients (neuromyotonia 46, myasthenia gravis 52, thymoma 42; 33 of them with overlapping syndromes) and 219 controls (other neurologic diseases, cancer, and healthy volunteers). Immunoprecipitation studies identified 3 targets, including the Netrin-1 receptors DCC (deleted in colorectal carcinoma) and UNC5A (uncoordinated-5A) as well as Caspr2 (contactin-associated protein-like 2). Cell-based assays with these antigens showed that among the indicated patients, 9 had antibodies against Netrin-1 receptors (7 with additional Caspr2 antibodies) and 5 had isolated Caspr2 antibodies. Only one of the 219 controls had isolated Caspr2 antibodies with relapsing myelitis episodes. Among patients with neuromyotonia and/or myasthenia gravis, the presence of Netrin-1 receptor or Caspr2 antibodies predicted thymoma (p &lt; 0.05). Coexisting Caspr2 and Netrin-1 receptor antibodies were associated with concurrent thymoma, myasthenia gravis, and neuromyotonia, often with Morvan syndrome (p = 0.009). Expression of DCC, UNC5A, and Caspr2 proteins was demonstrated in paraffin-embedded thymoma samples (3) and normal thymus. Antibodies against Netrin-1 receptors (DCC and UNC5a) and Caspr2 often coexist and associate with thymoma in patients with neuromyotonia and myasthenia gravis. This study provides Class III evidence that antibodies against Netrin-1 receptors can identify patients with thymoma (sensitivity 21.4%, specificity 100%)."	"Carbonic anhydrase-related protein CA10 is an evolutionarily conserved pan-neurexin ligand. Establishment, specification, and validation of synaptic connections are thought to be mediated by interactions between pre- and postsynaptic cell-adhesion molecules. Arguably, the best-characterized transsynaptic interactions are formed by presynaptic neurexins, which bind to diverse postsynaptic ligands. In a proteomic screen of neurexin-1 (Nrxn1) complexes immunoisolated from mouse brain, we identified carbonic anhydrase-related proteins CA10 and CA11, two homologous, secreted glycoproteins of unknown function that are predominantly expressed in brain. We found that CA10 directly binds in a cis configuration to a conserved membrane-proximal, extracellular sequence of α- and β-neurexins. The CA10-neurexin complex is stable and stoichiometric, and results in formation of intermolecular disulfide bonds between conserved cysteine residues in neurexins and CA10. CA10 promotes surface expression of α- and β-neurexins, suggesting that CA10 may form a complex with neurexins in the secretory pathway that facilitates surface transport of neurexins. Moreover, we observed that the Nrxn1 gene expresses from an internal 3' promoter a third isoform, Nrxn1γ, that lacks all Nrxn1 extracellular domains except for the membrane-proximal sequences and that also tightly binds to CA10. Our data expand the understanding of neurexin-based transsynaptic interaction networks by providing further insight into the interactions nucleated by neurexins at the synapse."	"Early-life stress links 5-hydroxymethylcytosine to anxiety-related behaviors. Environmental stress contributes to the development of psychiatric disorders, including posttraumatic stress disorder and anxiety. While even acute stress alters gene expression, the molecular mechanisms underlying these changes remain largely unknown. 5-hydroxymethylcytosine (5hmC) is a novel environmentally sensitive DNA modification that is highly enriched in the brain and is associated with active transcription of neuronal genes. Here we examined behavioral and molecular alterations in adult mice that experienced an early-life stress before weaning (postnatal day 12 to 18) and found anxiety-like behaviors in adult female mice that were accompanied by correlated disruptions of hypothalamic 5hmC and gene expression in 118 genes, revealing potentially functional 5hmC (i.e., gene regulation). These genes are known and potentially novel stress-related targets, including Nr3c2, Nrxn1, Nfia, and Clip1, that have a significant enrichment for neuronal ontological functions, such as neuronal development and differentiation. Sequence motif predictions indicated that 5hmC may regulate gene expression by mediating transcription factor binding and alternative splicing of many of these transcripts. Together, these findings represent a critical step toward understanding the effects of early environment on the neuromolecular mechanisms that underlie the risk to develop anxiety disorders."	"Whole-Proteome Peptide Microarrays for Profiling Autoantibody Repertoires within Multiple Sclerosis and Narcolepsy. The underlying molecular mechanisms of autoimmune diseases are poorly understood. To unravel the autoimmune processes across diseases, comprehensive and unbiased analyses of proteins targets recognized by the adaptive immune system are needed. Here we present an approach starting from high-density peptide arrays to characterize autoantibody repertoires and to identify new autoantigens. A set of ten plasma and serum samples from subjects with multiple sclerosis, narcolepsy, and without any disease diagnosis were profiled on a peptide array representing the whole proteome, hosting 2.2 million 12-mer peptides with a six amino acid lateral shift. On the basis of the IgG reactivities found on these whole-proteome peptide microarrays, a set of 23 samples was then studied on a targeted array with 174 000 12-mer peptides of single amino acid lateral shift. Finally, verification of IgG reactivities was conducted with a larger sample set (n = 448) using the bead-based peptide microarrays. The presented workflow employed three different peptide microarray formats to discover and resolve the epitopes of human autoantibodies and revealed two potentially new autoantigens: MAP3K7 in multiple sclerosis and NRXN1 in narcolepsy. The presented strategy provides insights into antibody repertoire reactivity at a peptide level and may accelerate the discovery and validation of autoantigens in human diseases."	"Association study between the neurexin-1 gene and tardive dyskinesia. Tardive dyskinesia (TD) is a motor side effect that may develop after long-term antipsychotic treatment. Schizophrenia has recently been associated with the Neurexin-1 (NRXN1) gene that codes for a cell adhesion molecule in synaptic communication. This study examined five NRXN1 single-nucleotide polymorphisms (SNPs) for possible association with the occurrence and severity of TD in 178 schizophrenia patients of European ancestry. We did not find these SNPs to be significantly associated with TD. More research is needed with additional SNPs and in bigger samples before we can completely rule out the role of NRXN1 in TD."	"An intra-amygdala circuit specifically regulates social fear learning. Adaptive social behavior requires transmission and reception of salient social information. Impairment of this reciprocity is a cardinal symptom of autism. The amygdala is a critical mediator of social behavior and is implicated in social symptoms of autism. Here we found that a specific amygdala circuit, from the lateral nucleus to the medial nucleus (LA-MeA), is required for using social cues to learn about environmental cues that signal imminent threats. Disruption of the LA-MeA circuit impaired valuation of these environmental cues and subsequent ability to use a cue to guide behavior. Rats with impaired social guidance of behavior due to knockout of Nrxn1, an analog of autism-associated gene NRXN, exhibited marked LA-MeA deficits. Chemogenetic activation of this circuit reversed these impaired social behaviors. These findings identify an amygdala circuit required to guide emotional responses to socially significant cues and identify an exploratory target for disorders associated with social impairments."	"Neurexins 1-3 Each Have a Distinct Pattern of Expression in the Early Developing Human Cerebral Cortex. Neurexins (NRXNs) are presynaptic terminal proteins and candidate neurodevelopmental disorder susceptibility genes; mutations presumably upset synaptic stabilization and function. However, analysis of human cortical tissue samples by RNAseq and quantitative real-time PCR at 8-12 postconceptional weeks, prior to extensive synapse formation, showed expression of all three NRXNs as well as several potential binding partners. However, the levels of expression were not identical; NRXN1 increased with age and NRXN2 levels were consistently higher than for NRXN3. Immunohistochemistry for each NRXN also revealed different expression patterns at this stage of development. NRXN1 and NRXN3 immunoreactivity was generally strongest in the cortical plate and increased in the ventricular zone with age, but was weak in the synaptogenic presubplate (pSP) and marginal zone. On the other hand, NRXN2 colocalized with synaptophysin in neurites of the pSP, but especially with GAP43 and CASK in growing axons of the intermediate zone. Alternative splicing modifies the role of NRXNs and we found evidence by RNAseq for exon skipping at splice site 4 and concomitant expression of KHDBRS proteins which control this splicing. NRXN2 may play a part in early cortical synaptogenesis, but NRXNs could have diverse roles in development including axon guidance, and intercellular communication between proliferating cells and/or migrating neurons."	"A SLM2 Feedback Pathway Controls Cortical Network Activity and Mouse Behavior. The brain is made up of trillions of synaptic connections that together form neural networks needed for normal brain function and behavior. SLM2 is a member of a conserved family of RNA binding proteins, including Sam68 and SLM1, that control splicing of Neurexin1-3 pre-mRNAs. Whether SLM2 affects neural network activity is unknown. Here, we find that SLM2 levels are maintained by a homeostatic feedback control pathway that predates the divergence of SLM2 and Sam68. SLM2 also controls the splicing of Tomosyn2, LysoPLD/ATX, Dgkb, Kif21a, and Cask, each of which are important for synapse function. Cortical neural network activity dependent on synaptic connections between SLM2-expressing-pyramidal neurons and interneurons is decreased in Slm2-null mice. Additionally, these mice are anxious and have a decreased ability to recognize novel objects. Our data reveal a pathway of SLM2 homeostatic auto-regulation controlling brain network activity and behavior."	"Two De Novo Mutations in an Autistic Child Who Had Previously Undergone Transplantation for Dilated Cardiomyopathy: The Importance of Keeping an Open Mind. We report the finding of 2 de novo mutations in an 8-year-old boy with developmental delay and autism who underwent heart transplantation at 1 year of age for idiopathic dilated cardiomyopathy. We identified a de novo microdeletion at chromosome 2p16.3 involving the neurexin-1 (NRXN1) gene and a de novo pathologic variant (Pro838Leu) in the myosin heavy chain 7 (MYH7) gene. This case emphasizes the importance of comprehensive genetic evaluation in patients with cardiomyopathy, particularly if they have extracardiac abnormalities, and the necessity of interpreting variants with attention to the phenotype. A complete genetic diagnosis may require multiple testing modalities."	"An alternative splicing switch shapes neurexin repertoires in principal neurons versus interneurons in the mouse hippocampus. The unique anatomical and functional features of principal and interneuron populations are critical for the appropriate function of neuronal circuits. Cell type-specific properties are encoded by selective gene expression programs that shape molecular repertoires and synaptic protein complexes. However, the nature of such programs, particularly for post-transcriptional regulation at the level of alternative splicing is only beginning to emerge. We here demonstrate that transcripts encoding the synaptic adhesion molecules neurexin-1,2,3 are commonly expressed in principal cells and interneurons of the mouse hippocampus but undergo highly differential, cell type-specific alternative splicing. Principal cell-specific neurexin splice isoforms depend on the RNA-binding protein Slm2. By contrast, most parvalbumin-positive (PV<sup>+</sup>) interneurons lack Slm2, express a different neurexin splice isoform and co-express the corresponding splice isoform-specific neurexin ligand Cbln4. Conditional ablation of Nrxn alternative splice insertions selectively in PV<sup>+</sup> cells results in elevated hippocampal network activity and impairment in a learning task. Thus, PV-cell-specific alternative splicing of neurexins is critical for neuronal circuit function."	"Conformational Plasticity in the Transsynaptic Neurexin-Cerebellin-Glutamate Receptor Adhesion Complex. Synaptic specificity is a defining property of neural networks. In the cerebellum, synapses between parallel fiber neurons and Purkinje cells are specified by the simultaneous interactions of secreted protein cerebellin with pre-synaptic neurexin and post-synaptic delta-type glutamate receptors (GluD). Here, we determined the crystal structures of the trimeric C1q-like domain of rat cerebellin-1, and the first complete ectodomain of a GluD, rat GluD2. Cerebellin binds to the LNS6 domain of α- and β-neurexin-1 through a high-affinity interaction that involves its highly flexible N-terminal domain. In contrast, we show that the interaction of cerebellin with isolated GluD2 ectodomain is low affinity, which is not simply an outcome of lost avidity when compared with binding with a tetrameric full-length receptor. Rather, high-affinity capture of cerebellin by post-synaptic terminals is likely controlled by long-distance regulation within this transsynaptic complex. Altogether, our results suggest unusual conformational flexibility within all components of the complex."	"Investigation of SNP rs2060546 Immediately Upstream to NTN4 in a Danish Gilles de la Tourette Syndrome Cohort. Gilles de la Tourette syndrome (GTS) is a neuropsychiatric disorder characterized by multiple motor and vocal tics. GTS is a complex disorder, with environmental factors and several genes involved. Although variations within a few genes such as AADAC, NRXN1, SLITRK1, HDC, and IMMP2L have been tentatively associated with GTS (in a small number of patients), the causative genes underlying GTS pathophysiology remain unknown. In a previous genome-wide association study (GWAS) a single nucleotide polymorphism (SNP, rs2060546) near the Netrin-4 (NTN4 - MIM 610401) gene was shown to be associated with GTS [odds ratio (OR) = 1.7; p-value = 5.8 × 10-7] thus warranting further investigations. As NTN4 is one of the axon guidance molecules expressed in the central nervous system and it interacts with the encoded proteins of SLIT and WNT genes guiding the growth cone toward its target, it is an attractive candidate susceptibility gene for GTS. In this study we attempted to replicate the association of rs2060546 with GTS by genotyping a Danish cohort of 240 GTS patients and 1006 healthy controls. Our results did not reveal an association (OR = 1.363; p-value = 0.3329) in the Danish cohort alone, which may be due to the small sample size. However, a meta-analysis including the present cohort and a total of 1316 GTS patients and 5023 controls from the GTS GWAS Replication Initiative (GGRI) and the first GTS-GWAS yielded a significant signal (OR = 3.74; p-value = 0.00018) and same direction of effect in the three cohorts. Thus, our study strengthens the evidence of the possible involvement of NTN4 in GTS etiology, suggesting that further studies in even larger samples and functional studies are warranted to investigate the role of this region in GTS pathogenesis."	"Divergence and rewiring of regulatory networks for neural development between human and other species. Neural and brain development in human and other mammalian species are largely similar, but distinct features exist at the levels of macrostructure and underlying genetic control. Comparative studies of epigenetic regulation and transcription factor (TF) binding in humans, chimpanzees, rodents, and other species have found large differences in gene regulatory networks. A recent analysis of the cistromes of REST/NRSF, a critical transcriptional regulator for the nervous system, demonstrated that REST binding to syntenic genomic regions (i.e., conserved binding) represents only a small percentage of the total binding events in human and mouse embryonic stem cells. While conserved binding is significantly associated with functional features (e.g., co-factor recruitment) and enriched at genes important for neural development and function, &gt;3000 genes, including many related to brain and neural functions, either contain extra REST-bound sites (e.g., NRXN1) or are targeted by REST only (e.g. PSEN2) in humans. Surprisingly, several genes known to have critical roles in learning and memory, or brain disorders (e.g., APP and HTT) exhibit characteristics of human specific REST regulation. These findings indicate that more systematic studies are needed to better understand the divergent wiring of regulatory networks in humans, mice, and other mammals and their functional implications."	"DE NOVO MUTATIONS IN AUTISM IMPLICATE THE SYNAPTIC ELIMINATION NETWORK. Autism has been shown to have a major genetic risk component; the architecture of documented autism in families has been over and again shown to be passed down for generations. While inherited risk plays an important role in the autistic nature of children, de novo (germline) mutations have also been implicated in autism risk. Here we find that autism de novo variants verified and published in the literature are Bonferroni-significantly enriched in a gene set implicated in synaptic elimination. Additionally, several of the genes in this synaptic elimination set that were enriched in protein-protein interactions (CACNA1C, SHANK2, SYNGAP1, NLGN3, NRXN1, and PTEN) have been previously confirmed as genes that confer risk for the disorder. The results demonstrate that autism-associated de novos are linked to proper synaptic pruning and density, hinting at the etiology of autism and suggesting pathophysiology for downstream correction and treatment."	"Enrichment of small pathogenic deletions at chromosome 9p24.3 and 9q34.3 involving DOCK8, KANK1, EHMT1 genes identified by using high-resolution oligonucleotide-single nucleotide polymorphism array analysis. High-resolution oligo-SNP array allowed the identification of extremely small pathogenic deletions at numerous clinically relevant regions. In our clinical practice, we found that small pathogenic deletions were frequently encountered at chromosome 9p and 9q terminal regions. A review of 531 cases with reportable copy number changes on chromosome 9 revealed142 pathogenic copy number variants (CNVs): 104 losses, 31 gains, 7 complex chromosomal rearrangements. Of 104 pathogenic losses, 57 were less than 1 Mb in size, enriched at 9p24.3 and 9q34.3 regions, involving the DOCK8, KANK1, EHMT1 genes. The remaining 47 cases were due to interstitial or terminal deletions larger than 1 Mb or unbalanced translocations. The small pathogenic deletions of DOCK8, KANK1 and EHMT1 genes were more prevalent than small pathogenic deletions of NRXN1, DMD, SHANK3 genes and were only second to the 16p11.2 deletion syndrome, 593-kb (OMIM #611913). This study corroborated comprehensive genotype-phenotype large scale studies at 9p24.3 and 9q24.3 regions for a better understanding of the pathogenicity caused by haploinsufficiency of the DOCK8, KANK1 and EHMT1 genes. None; it is not a clinical trial, and the cases were retrospectively collected and analyzed."	"Contribution of copy number variants to schizophrenia from a genome-wide study of 41,321 subjects. Copy number variants (CNVs) have been strongly implicated in the genetic etiology of schizophrenia (SCZ). However, genome-wide investigation of the contribution of CNV to risk has been hampered by limited sample sizes. We sought to address this obstacle by applying a centralized analysis pipeline to a SCZ cohort of 21,094 cases and 20,227 controls. A global enrichment of CNV burden was observed in cases (odds ratio (OR) = 1.11, P = 5.7 × 10<sup>-15</sup>), which persisted after excluding loci implicated in previous studies (OR = 1.07, P = 1.7 × 10<sup>-6</sup>). CNV burden was enriched for genes associated with synaptic function (OR = 1.68, P = 2.8 × 10<sup>-11</sup>) and neurobehavioral phenotypes in mouse (OR = 1.18, P = 7.3 × 10<sup>-5</sup>). Genome-wide significant evidence was obtained for eight loci, including 1q21.1, 2p16.3 (NRXN1), 3q29, 7q11.2, 15q13.3, distal 16p11.2, proximal 16p11.2 and 22q11.2. Suggestive support was found for eight additional candidate susceptibility and protective loci, which consisted predominantly of CNVs mediated by nonallelic homologous recombination."	"Clinical Relevance and Molecular Phenotypes in Gastric Cancer, of TP53 Mutations and Gene Expressions, in Combination With Other Gene Mutations. While altered TP53 is the most frequent mutation in gastric cancer (GC), its association with molecular or clinical phenotypes (e.g., overall survival, disease-free survival) remains little known. To that end, we can use genome-wide approaches to identify altered genes significantly related to mutated TP53. Here, we identified significant differences in clinical outcomes, as well as in molecular phenotypes, across specific GC tumor subpopulations, when combining TP53 with other signaling networks, including WNT and its related genes NRXN1, CTNNB1, SLITRK5, NCOR2, RYR1, GPR112, MLL3, MTUS2, and MYH6. Moreover, specific GC subpopulations indicated by dual mutation of NRXN1 and TP53 suggest different drug responses, according to the Connectivity Map, a pharmacological drug-gene association tool. Overall, TP53 mutation status in GC is significantly relevant to clinical or molecular categories. Thus, our approach can potentially provide a patient stratification strategy by dissecting previously unknown multiple TP53-mutated patient groups."	"Neuronal Dystroglycan Is Necessary for Formation and Maintenance of Functional CCK-Positive Basket Cell Terminals on Pyramidal Cells. Distinct types of GABAergic interneurons target different subcellular domains of pyramidal cells, thereby shaping pyramidal cell activity patterns. Whether the presynaptic heterogeneity of GABAergic innervation is mirrored by specific postsynaptic factors is largely unexplored. Here we show that dystroglycan, a protein responsible for the majority of congenital muscular dystrophies when dysfunctional, has a function at postsynaptic sites restricted to a subset of GABAergic interneurons. Conditional deletion of Dag1, encoding dystroglycan, in pyramidal cells caused loss of CCK-positive basket cell terminals in hippocampus and neocortex. PV-positive basket cell terminals were unaffected in mutant mice, demonstrating interneuron subtype-specific function of dystroglycan. Loss of dystroglycan in pyramidal cells had little influence on clustering of other GABAergic postsynaptic proteins and of glutamatergic synaptic proteins. CCK-positive terminals were not established at P21 in the absence of dystroglycan and were markedly reduced when dystroglycan was ablated in adult mice, suggesting a role for dystroglycan in both formation and maintenance of CCK-positive terminals. The necessity of neuronal dystroglycan for functional innervation by CCK-positive basket cell axon terminals was confirmed by reduced frequency of inhibitory events in pyramidal cells of dystroglycan-deficient mice and further corroborated by the inefficiency of carbachol to increase IPSC frequency in these cells. Finally, neurexin binding seems dispensable for dystroglycan function because knock-in mice expressing binding-deficient T190M dystroglycan displayed normal CCK-positive terminals. Together, we describe a novel function of dystroglycan in interneuron subtype-specific trans-synaptic signaling, revealing correlation of presynaptic and postsynaptic molecular diversity. Dystroglycan, an extracellular and transmembrane protein of the dystrophin-glycoprotein complex, is at the center of molecular studies of muscular dystrophies. Although its synaptic distribution in cortical brain regions is long established, function of dystroglycan in the synapse remained obscure. Using mice that selectively lack neuronal dystroglycan, we provide evidence that a subset of GABAergic interneurons requires dystroglycan for formation and maintenance of axonal terminals on pyramidal cells. As such, dystroglycan is the first postsynaptic GABAergic protein for which an interneuron terminal-specific function could be shown. Our findings also offer a new perspective on the mechanisms that lead to intellectual disability in muscular dystrophies without associated brain malformations."	"Integrated Genetic, Epigenetic, and Transcriptional Profiling Identifies Molecular Pathways in the Development of Laterally Spreading Tumors. Laterally spreading tumors (LST) are colorectal adenomas that develop into extremely large lesions with predominantly slow progression to cancer, depending on lesion subtype. Comparing and contrasting the molecular profiles of LSTs and colorectal cancers offers an opportunity to delineate key molecular alterations that drive malignant transformation in the colorectum. In a discovery cohort of 11 LSTs and paired normal mucosa, we performed a comprehensive and unbiased screen of the genome, epigenome, and transcriptome followed by bioinformatics integration of these data and validation in an additional 84 large, benign colorectal lesions. Mutation rates in LSTs were comparable with microsatellite-stable colorectal cancers (2.4 vs. 2.6 mutations per megabase); however, copy number alterations were infrequent (averaging only 1.5 per LST). Frequent genetic, epigenetic, and transcriptional alterations were identified in genes not previously implicated in colorectal neoplasia (ANO5, MED12L, EPB41L4A, RGMB, SLITRK1, SLITRK5, NRXN1, ANK2). Alterations to pathways commonly mutated in colorectal cancers, namely, the p53, PI3K, and TGFβ pathways, were rare. Instead, LST-altered genes converged on axonal guidance, Wnt, and actin cytoskeleton signaling. These integrated omics data identify molecular features associated with noncancerous LSTs and highlight that mutation load, which is relatively high in LSTs, is a poor predictor of invasive potential. The novel genetic, epigenetic, and transcriptional changes associated with LST development reveal important insights into why some adenomas do not progress to cancer. The finding that LSTs exhibit a mutational load similar to colorectal carcinomas has implications for the validity of molecular biomarkers for assessing cancer risk. Mol Cancer Res; 14(12); 1217-28. ©2016 AACR."	"Chromosomal microarray testing in adults with intellectual disability presenting with comorbid psychiatric disorders. Chromosomal copy-number variations (CNVs) are a class of genetic variants highly implicated in the aetiology of neurodevelopmental disorders, including intellectual disabilities (ID), schizophrenia and autism spectrum disorders (ASD). Yet the majority of adults with idiopathic ID presenting to psychiatric services have not been tested for CNVs. We undertook genome-wide chromosomal microarray analysis (CMA) of 202 adults with idiopathic ID recruited from community and in-patient ID psychiatry services across England. CNV pathogenicity was assessed using standard clinical diagnostic methods and participants underwent comprehensive medical and psychiatric phenotyping. We found an 11% yield of likely pathogenic CNVs (22/202). CNVs at recurrent loci, including the 15q11-q13 and 16p11.2-p13.11 regions were most frequently observed. We observed an increased frequency of 16p11.2 duplications compared with those reported in single-disorder cohorts. CNVs were also identified in genes known to effect neurodevelopment, namely NRXN1 and GRIN2B. Furthermore deletions at 2q13, 12q21.2-21.31 and 19q13.32, and duplications at 4p16.3, 13q32.3-33.3 and Xq24-25 were observed. Routine CMA in ID psychiatry could uncover ~11% new genetic diagnoses with potential implications for patient management. We advocate greater consideration of CMA in the assessment of adults with idiopathic ID presenting to psychiatry services."	"High Prevalence of Smoking in the Roma Population Seems to Have No Genetic Background. The prevalence of smoking in Romani of both genders is significantly higher than in the general population. Our aim was to determine whether a genetic susceptibility contributes to the high prevalence of smoking among Roma in a study based on data collected from cross-sectional surveys. Twenty single nucleotide polymorphisms known to be closely related to smoking behavior were investigated in DNA samples of Hungarian Roma (N = 1273) and general (N = 2388) populations. Differences in genotype and allele distribution were investigated. Genetic risk scores (GRSs) were generated to estimate the joint effect of single nucleotide polymorphisms in genes COMT, CHRNA3/4/5, CYP2A6, CTNNA3, DRD2, MAOA, KCNJ6, AGPHD1, ANKK1, TRPC7, GABRA4, and NRXN1. The distribution of scores in study populations was compared. Age, gender, and body mass index were considered as confounding factors. Difference in allele frequencies between the study populations remained significant for 16 polymorphisms after multiple test correction (p &lt; .003). Unexpectedly, the susceptible alleles were more common in the general population, although the protective alleles were more prevalent among Roma. The distribution of unweighted GRS in Roma population was left shifted compared to general population (p &lt; .001). Furthermore, the median weighted GRS was lower among the subjects of Roma population compared to the subjects of general population (p &lt; .001) even after adjustment for confounding factors. The harmful smoking behavior of the Roma population could not be accounted for by genetic susceptibility; therefore, interventions aimed at smoking prevention and cessation should focus on cultural and environmental factors. This is the first study designed to determine whether genetic background exists behind the harmful behavior of the smoking of the Roma population. Although the frequencies of susceptible and protective alleles strongly differ between the Hungarian Roma and general populations, it is shown that calculated GRSs being significantly higher in the general population, which do not support the hypothesis on the genetic susceptibility of the Roma population. Interventions aimed at smoking cessation in the Roma population should preferentially target cultural and environmental factors."	"STARs in the CNS. STAR (signal transduction and activation of RNA) proteins regulate splicing of target genes that have roles in neural connectivity, survival and myelination in the vertebrate nervous system. These regulated splicing targets include mRNAs such as the Neurexins (Nrxn), SMN2 (survival of motor neuron) and MAG (myelin-associated glycoprotein). Recent work has made it possible to identify and validate STAR protein splicing targets in vivo by using genetically modified mouse models. In this review, we will discuss the importance of STAR protein splicing targets in the CNS (central nervous system)."	"A targeted sequencing study of glutamatergic candidate genes in suicide attempters with bipolar disorder. Suicidal behavior has been shown to have a heritable component that is partly driven by psychiatric disorders [Brent and Mann, 2005]. However, there is also an independent factor contributing to the heritability of suicidal behavior. We previously conducted a genome-wide association study (GWAS) of bipolar suicide attempters and bipolar non-attempters to assess this independent factor [Willour et al., 2012]. This GWAS implicated glutamatergic neurotransmission in attempted suicide. In the current study, we have conducted a targeted next-generation sequencing study of the glutamatergic N-methyl-D-aspartate (NMDA) receptor, neurexin, and neuroligin gene families in 476 bipolar suicide attempters and 473 bipolar non-attempters. The goal of this study was to gather sequence information from coding and regulatory regions of these glutamatergic genes to identify variants associated with attempted suicide. We identified 186 coding variants and 4,298 regulatory variants predicted to be functional in these genes. No individual variants were overrepresented in cases or controls to a degree that was statistically significant after correction for multiple testing. Additionally, none of the gene-level results were statistically significant following correction. While this study provides no direct support for a role of the examined glutamatergic candidate genes, further sequencing in expanded gene sets and datasets will be required to ultimately determine whether genetic variation in glutamatergic signaling influences suicidal behavior. © 2016 Wiley Periodicals, Inc."	"The First World Congress on Tourette Syndrome and Tic Disorders: Controversies and Hot Topics in Etiology and Treatment. The first World Congress on Tourette Syndrome and Tic Disorders was held in London, June 2016 by the Tourette Association of America, Tourettes Action (UK), and the European Society for the Study of Tourette Syndrome. Presentations arising from large-scale collaborative projects were an important component of the scientific programme. This article focuses on areas raised in the hot topics session and two moderated debates, which covered emerging research in etiology and treatment. The hot topics ranged across genetics, arguably including the first confirmed Tourette Syndrome (TS) susceptibility gene NRXN1, neurocognition, and neurophysiology, including the possibility of a neurocognitive endophenotype for TS and the use of depth and cortical surface electrodes to investigate the neurophysiology of tics on the background of the evolving field of deep brain stimulation (DBS), to novel treatment approaches such as dental orthotics and an online behavioral intervention. The debates aired controversies in treatment; pharmacotherapy vs. behavioral treatment and the place of medical cannabinoids. These sessions demonstrate the vibrancy of a field that has considerably expanded in the last decade, the significant progress that has been made, and the direction that some of the most fruitful next phases of research will take. "	"SNPs in NRXN1 and CHRNA5 are associated to smoking and regulation of GABAergic and glutamatergic pathways. To identify genetic variants associated with greater tobacco consumption in a Mexican population. Daily smokers were classified as light smokers (LS; n = 742), heavy smokers (HS; n = 601) and nonsmokers (NS; n = 606). In the first stage, a genotyping microarray that included 347 SNPs in CHRNA2-CHRNA7/CHRNA10, CHRNB2-CHRNB4 and NRXN1 genes and 37 ancestry-informative markers was used to analyze 707 samples (187 HS, 328 LS and 192 NS). In the second stage, 14 SNPs from stage 1 were validated in the remaining samples (HS, LS and NS; n = 414 in each group) using real-time PCR. To predict the role of the associated SNPs, an in silico analysis was performed. Two SNPs in NRXN1 and two in CHRNA5 were associated with cigarette consumption, while rs10865246/C (NRXN1) was associated with high nicotine addiction. The in silico analysis revealed that rs1882296/T had a high level of homology with Hsa-miR-6740-5p, which encodes a putative miRNA that targets glutamate receptor subunits (GRIA2, GRID2) and GABA receptor subunits (GABRG1, GABRA4, GABRB2), while rs1882296/C had a high level of homology with Hsa-miR-6866-5p, which encodes a different miRNA that targets GRID2 and GABRB2. In a Mexican Mestizo population, greater consumption of cigarettes was influenced by polymorphisms in the NRXN1 and CHRNA5 genes. We proposed new hypotheses regarding the putative roles of miRNAs that influence the GABAergic and glutamatergic pathways in smoking addiction."	"Histone methyltransferase Ash1L mediates activity-dependent repression of neurexin-1α. Activity-dependent transcription is critical for the regulation of long-term synaptic plasticity and plastic rewiring in the brain. Here, we report that the transcription of neurexin1α (nrxn1α), a presynaptic adhesion molecule for synaptic formation, is regulated by transient neuronal activation. We showed that 10 minutes of firing at 50 Hz in neurons repressed the expression of nrxn1α for 24 hours in a primary cortical neuron culture through a transcriptional repression mechanism. By performing a screening assay using a synthetic zinc finger protein (ZFP) to pull down the proteins enriched near the nrxn1α promoter region in vivo, we identified that Ash1L, a histone methyltransferase, is enriched in the nrxn1α promoter. Neuronal activity triggered binding of Ash1L to the promoter and enriched the histone marker H3K36me2 at the nrxn1α promoter region. Knockout of Ash1L in mice completely abolished the activity-dependent repression of nrxn1α. Taken together, our results reveal that a novel process of activity-dependent transcriptional repression exists in neurons and that Ash1L mediates the long-term repression of nrxn1α, thus implicating an important role for epigenetic modification in brain functioning."	"Molecular characterization of NRXN1 deletions from 19,263 clinical microarray cases identifies exons important for neurodevelopmental disease expression. The purpose of the current study was to assess the penetrance of NRXN1 deletions. We compared the prevalence and genomic extent of NRXN1 deletions identified among 19,263 clinically referred cases to that of 15,264 controls. The burden of additional clinically relevant copy-number variations (CNVs) was used as a proxy to estimate the relative penetrance of NRXN1 deletions. We identified 41 (0.21%) previously unreported exonic NRXN1 deletions ascertained for developmental delay/intellectual disability that were significantly greater than in controls (odds ratio (OR) = 8.14; 95% confidence interval (CI): 2.91-22.72; P &lt; 0.0001). Ten (22.7%) of these had a second clinically relevant CNV. Subjects with a deletion near the 3' end of NRXN1 were significantly more likely to have a second rare CNV than subjects with a 5' NRXN1 deletion (OR = 7.47; 95% CI: 2.36-23.61; P = 0.0006). The prevalence of intronic NRXN1 deletions was not statistically different between cases and controls (P = 0.618). The majority (63.2%) of intronic NRXN1 deletion cases had a second rare CNV at a prevalence twice as high as that for exonic NRXN1 deletion cases (P = 0.0035). The results support the importance of exons near the 5' end of NRXN1 in the expression of neurodevelopmental disorders. Intronic NRXN1 deletions do not appear to substantially increase the risk for clinical phenotypes.Genet Med 19 1, 53-61."	"Neonatal inflammatory pain and systemic inflammatory responses as possible environmental factors in the development of autism spectrum disorder of juvenile rats. Autism spectrum disorder (ASD) affects many children and juveniles. The pathogenesis of ASD is not well understood. Environmental factors may play important roles in the development of ASD. We examined a possible relationship of inflammatory pain in neonates and the development of ASD in juveniles. Acute inflammation pain was induced by 5 % formalin (5 μl/day) subcutaneous injection into two hindpaws of postnatal day 3 to 5 (P3-P5) rat pups. Western blot, immunohistochemical, and behavioral examinations were performed at different time points after the insult. Formalin injection caused acute and chronic inflammatory responses including transient local edema, increased levels of inflammatory cytokines, TNF-α, and IL-1β in the blood as well as in the brain, and increased microglia in the brain. One day after the pain insult, there was significant cell death in the cortex and hippocampus. Two weeks later, although the hindpaw local reaction subsided, impaired axonal growth and demyelization were seen in the brain of P21 juvenile rats. The number of bromodeoxyuridine (BrdU) and doublecortin (DCX) double-positive cells in the hippocampal dentate gyrus of P21 rats was significantly lower than that in controls, indicating reduced neurogenesis. In the P21 rat's brain of the formalin group, the expression of autism-related gene neurexin 1 (NRXN1), fragile X mental retardation 1 (FMR1), and oxytocin was significantly downregulated, consistent with the gene alteration in ASD. Juvenile rats in the formalin group showed hyperalgesia, repetitive behaviors, abnormal locomotion, sleep disorder, and distinct deficits in social memory and social activities. These alterations in neuroinflammatory reactions, gene expression, and behaviors were more evident in male than in female rats. Importantly, an anti-inflammation treatment using indomethacin (10 mg/kg, i.p.) at the time of formalin injections suppressed inflammatory responses and neuronal cell death and prevented alterations in ASD-related genes and the development of abnormal behaviors. These novel observations indicate that severe inflammatory pain in neonates and persistent inflammatory reactions may predispose premature infants to development delays and psychiatric disorders including ASD. The prevention of pain stimuli and prompt treatments of inflammation during development appear vitally important in disrupting possible evolution of ASD syndromes."	"Control of neuronal synapse specification by a highly dedicated alternative splicing program. Alternative RNA splicing represents a central mechanism for expanding the coding power of genomes. Individual RNA-binding proteins can control alternative splicing choices in hundreds of RNA transcripts, thereby tuning amounts and functions of large numbers of cellular proteins. We found that the RNA-binding protein SLM2 is essential for functional specification of glutamatergic synapses in the mouse hippocampus. Genome-wide mapping revealed a markedly selective SLM2-dependent splicing program primarily consisting of only a few target messenger RNAs that encode synaptic proteins. Genetic correction of a single SLM2-dependent target exon in the synaptic recognition molecule neurexin-1 was sufficient to rescue synaptic plasticity and behavioral defects in Slm2 knockout mice. These findings uncover a highly selective alternative splicing program that specifies synaptic properties in the central nervous system. "	"Genome-wide association study of serum coenzyme Q10 levels identifies susceptibility loci linked to neuronal diseases. Coenzyme Q10 (CoQ10) is a lipophilic redox molecule that is present in membranes of almost all cells in human tissues. CoQ10 is, amongst other functions, essential for the respiratory transport chain and is a modulator of inflammatory processes and gene expression. Rare monogenetic CoQ10 deficiencies show noticeable symptoms in tissues (e.g. kidney) and cell types (e.g. neurons) with a high energy demand. To identify common genetic variants influencing serum CoQ10 levels, we performed a fixed effects meta-analysis in two independent cross-sectional Northern German cohorts comprising 1300 individuals in total. We identified two genome-wide significant susceptibility loci. The best associated single nucleotide polymorphism (SNP) was rs9952641 (P value = 1.31 × 10 <sup>-</sup><sup>8</sup>, β = 0.063, CI0.95 [0.041, 0.085]) within the COLEC12 gene on chromosome 18. The SNP rs933585 within the NRXN-1 gene on chromosome 2 also showed genome wide significance (P value = 3.64 × 10 <sup>-</sup><sup>8</sup>, β = -0.034, CI0.95 [-0.046, -0.022]). Both genes have been previously linked to neuronal diseases like Alzheimer's disease, autism and schizophrenia. Among our 'top-10' associated variants, four additional loci with known neuronal connections showed suggestive associations with CoQ10 levels. In summary, this study demonstrates that serum CoQ10 levels are associated with common genetic loci that are linked to neuronal diseases."	"Developmental Hypothyroxinemia and Hypothyroidism Reduce Parallel Fiber-Purkinje Cell Synapses in Rat Offspring by Downregulation of Neurexin1/Cbln1/GluD2 Tripartite Complex. Iodine is a significant micronutrient. Iodine deficiency (ID)-induced hypothyroxinemia and hypothyroidism during developmental period can cause cerebellar dysfunction. However, mechanisms are still unclear. Therefore, the present research aims to study effects of developmental hypothyroxinemia caused by mild ID and hypothyroidism caused by severe ID or methimazole (MMZ) on parallel fiber-Purkinje cell (PF-PC) synapses in filial cerebellum. Maternal hypothyroxinemia and hypothyroidism models were established in Wistar rats using ID diet and deionized water supplemented with different concentrations of potassium iodide or MMZ water. Birth weight and cerebellum weight were measured. We also examined PF-PC synapses using immunofluorescence, and western blot analysis was conducted to investigate the activity of Neurexin1/cerebellin1 (Cbln1)/glutamate receptor d2 (GluD2) tripartite complex. Our results showed that hypothyroxinemia and hypothyroidism decreased birth weight and cerebellum weight and reduced the PF-PC synapses on postnatal day (PN) 14 and PN21. Accordingly, the mean intensity of vesicular glutamate transporter (VGluT1) and Calbindin immunofluorescence was reduced in mild ID, severe ID, and MMZ groups. Moreover, maternal hypothyroxinemia and hypothyroidism reduced expression of Neurexin1/Cbln1/GluD2 tripartite complex. Our study supports the hypothesis that developmental hypothyroxinemia and hypothyroidism reduce PF-PC synapses, which may be attributed to the downregulation of Neurexin1/Cbln1/GluD2 tripartite complex. "	"CASK stabilizes neurexin and links it to liprin-α in a neuronal activity-dependent manner. CASK, a MAGUK family protein, is an essential protein present in the presynaptic compartment. CASK's cellular role is unknown, but it interacts with multiple proteins important for synapse formation and function, including neurexin, liprin-α, and Mint1. CASK phosphorylates neurexin in a divalent ion-sensitive manner, although the functional relevance of this activity is unclear. Here we find that liprin-α and Mint1 compete for direct binding to CASK, but neurexin1β eliminates this competition, and all four proteins form a complex. We describe a novel mode of interaction between liprin-α and CASK when CASK is bound to neurexin1β. We show that CASK phosphorylates neurexin, modulating the interaction of liprin-α with the CASK-neurexin1β-Mint1 complex. Thus, CASK creates a regulatory and structural link between the presynaptic adhesion molecule neurexin and active zone organizer, liprin-α. In neuronal culture, CASK appears to regulate the stability of neurexin by linking it with this multi-protein presynaptic active zone complex."	"One CNV Discordance in NRXN1 Observed Upon Genome-wide Screening in 38 Pairs of Adult Healthy Monozygotic Twins. Monozygotic (MZ) twins stem from the same single fertilized egg and therefore share all their inherited genetic variation. This is one of the unequivocal facts on which genetic epidemiology and twin studies are based. To what extent this also implies that MZ twins share genotypes in adult tissues is not precisely established, but a common pragmatic assumption is that MZ twins are 100% genetically identical also in adult tissues. During the past decade, this view has been challenged by several reports, with observations of differences in post-zygotic copy number variations (CNVs) between members of the same MZ pair. In this study, we performed a systematic search for differences of CNVs within 38 adult MZ pairs who had been misclassified as dizygotic (DZ) twins by questionnaire-based assessment. Initial scoring by PennCNV suggested a total of 967 CNV discordances. The within-pair correlation in number of CNVs detected was strongly dependent on confidence score filtering and reached a plateau of r = 0.8 when restricting to CNVs detected with confidence score larger than 50. The top-ranked discordances were subsequently selected for validation by quantitative polymerase chain reaction (qPCR), from which one single ~120kb deletion in NRXN1 on chromosome 2 (bp 51017111-51136802) was validated. Despite involving an exon, no sign of cognitive/mental consequences was apparent in the affected twin pair, potentially reflecting limited or lack of expression of the transcripts containing this exon in nerve/brain. "	"Genome-wide Analysis of the Role of Copy Number Variation in Schizophrenia Risk in Chinese. Compelling evidence suggested the role of copy number variations (CNVs) in schizophrenia susceptibility. Most of the evidence was from studies in populations with European ancestry. We tried to validate the associated CNV loci in a Han Chinese population and identify novel loci conferring risk of schizophrenia. We performed a genome-wide CNV analysis on 6588 patients with schizophrenia and 11,904 control subjects of Han Chinese ancestry. Our data confirmed increased genome-wide CNV (&gt;500 kb and &lt;1%) burden in schizophrenia, and the increasing trend was more significant when only &gt;1 Mb CNVs were considered. We also replicated several associated loci that were previously identified in European populations, including duplications at 16p11.2, 15q11.2-13.1, 7q11.23, and VIPR2 and deletions at 22q11.2, 1q21.1-q21.2, and NRXN1. In addition, we discovered three additional new potential loci (odds ratio &gt;6, p &lt; .05): duplications at 1p36.32, 10p12.1, and 13q13.3, involving many neurodevelopmental and synaptic related genes. Our findings provide further support for the role of CNVs in the etiology of schizophrenia."	"Crystal Structure of an Engineered LRRTM2 Synaptic Adhesion Molecule and a Model for Neurexin Binding. Synaptic adhesion molecules are key components in development of the brain, and in the formation of neuronal circuits, as they are central in the assembly and maturation of chemical synapses. Several families of neuronal adhesion molecules have been identified such as the neuronal cell adhesion molecules, neurexins and neuroligins, and in particular recently several leucine-rich repeat proteins, e.g., Netrin G-ligands, SLITRKs, and LRRTMs. The LRRTMs form a family of four proteins. They have been implicated in excitatory glutamatergic synapse function and were specifically characterized as ligands for neurexins in excitatory synapse formation and maintenance. In addition, LRRTM3 and LRRTM4 have been found to be ligands for heparan sulfate proteoglycans, including glypican. We report here the crystal structure of a thermostabilized mouse LRRTM2, with a Tm 30 °C higher than that of the wild-type protein. We localized the neurexin binding site to the concave surface based on protein engineering, sequence conservation, and prior information about the interaction of the ligand with neurexins, which allowed us to propose a tentative model for the LRRTM-neurexin interaction complex. We also determined affinities of the thermostabilized LRRTM2 and wild-type LRRTM1 and LRRTM2 for neurexin-β1 with and without Ca(2+). Cell culture studies and binding experiments show that the engineered protein is functional and capable of forming synapselike contacts. The structural and functional data presented here provide the first structure of an LRRTM protein and allow us to propose a model for the molecular mechanism of LRRTM function in the synaptic adhesion. "	"Astrocytes Assemble Thalamocortical Synapses by Bridging NRX1α and NL1 via Hevin. Proper establishment of synapses is critical for constructing functional circuits. Interactions between presynaptic neurexins and postsynaptic neuroligins coordinate the formation of synaptic adhesions. An isoform code determines the direct interactions of neurexins and neuroligins across the synapse. However, whether extracellular linker proteins can expand such a code is unknown. Using a combination of in vitro and in vivo approaches, we found that hevin, an astrocyte-secreted synaptogenic protein, assembles glutamatergic synapses by bridging neurexin-1alpha and neuroligin-1B, two isoforms that do not interact with each other. Bridging of neurexin-1alpha and neuroligin-1B via hevin is critical for the formation and plasticity of thalamocortical connections in the developing visual cortex. These results show that astrocytes promote the formation of synapses by modulating neurexin/neuroligin adhesions through hevin secretion. Our findings also provide an important mechanistic insight into how mutations in these genes may lead to circuit dysfunction in diseases such as autism."	"Heterozygous deletion of α-neurexin I or α-neurexin II results in behaviors relevant to autism and schizophrenia. The neurexins are a family of presynaptic cell adhesion molecules. Human genetic studies have found heterozygous deletions affecting NRXN1 and NRXN2, encoding α-neurexin I (Nrxn1α) and α-neurexin II (Nrxn2α), in individuals with autism spectrum disorders and schizophrenia. However, the link between α-neurexin deficiency and the manifestation of psychiatric disorders remain unclear. To assess whether the heterozygous loss of neurexins results in behaviors relevant to autism or schizophrenia, we used mice with heterozygous (HET) deletion of Nrxn1α or Nrxn2α. We found that in a test of social approach, Nrxn1α HET mice show no social memory for familiar versus novel conspecifics. In a passive avoidance test, female Nrxn1α HET mice cross to the conditioned chamber sooner than female wild-type and Nrxn2α HET mice. Nrxn2α HET mice also express a lack of long-term object discrimination, indicating a deficit in cognition. The observed Nrxn1α and Nrxn2α genotypic effects were specific, as neither HET deletion had effects on a wide range of other behavioral measures, including several measures of anxiety. Our findings demonstrate that the heterozygous loss of α-neurexin I and α-neurexin II in mice leads to phenotypes relevant to autism and schizophrenia."	"Dual genetic diagnoses: Atypical hand-foot-genital syndrome and developmental delay due to de novo mutations in HOXA13 and NRXN1. We describe a male patient with dual genetic diagnoses of atypical hand-foot-genital syndrome (HFGS) and developmental delay. The proband had features of HFGS that included bilateral vesicoureteric junction obstruction with ectopic ureters, brachydactyly of various fingers and toes, hypoplastic thenar eminences, and absent nails on both 4th toes and right 5th toe. The atypical features of HFGS present were bilateral hallux valgus malformations and bilateral preaxial polydactyly of the hands. Chromosomal microarray analysis identified a de novo 0.5 Mb deletion at 2p16.3, including the first four exons of the NRXN1 gene. Whole exome sequencing and subsequent Sanger sequencing identified a de novo missense mutation (c.1123G&gt;T, p.Val375Phe) in exon 2 of the HOXA13 gene, predicted to be damaging and located in the homeobox domain. The intragenic NRXN1 deletion is thought to explain his developmental delay via a separate genetic mechanism."	"Two rare deletions upstream of the NRXN1 gene (2p16.3) affecting the non-coding mRNA AK127244 segregate with diverse psychopathological phenotypes in a family. CNVs spanning the 2p16.3 (NRXN1) and the 15q11.2 gene rich region have been associated with severe neuropsychiatric disorders including schizophrenia. Recently, studies have also revealed that CNVs in non-coding regions play an essential role in genomic variability in addition to disease susceptibility. In this study, we describe a family affected by a wide range of psychiatric disorders including early onset schizophrenia, schizophreniform disorder, and affective disorders. Microarray analysis identified two rare deletions immediately upstream of the NRXN1 gene affecting the non-coding mRNA AK127244 in addition to the pathogenic 15q11.2 deletion in distinct family members. The two deletions upstream of the NRXN1 gene were found to segregate with psychiatric disorders in the family and further similar deletions have been observed in patients diagnosed with autism spectrum disorder. Thus, we suggest that non-coding regions upstream of the NRXN1 gene affecting AK127244 might (as NRXN1) contain susceptibility regions for a wide spectrum of neuropsychiatric disorders. "	"A de novo microdeletion in NRXN1 in a Dutch patient with mild intellectual disability, microcephaly and gonadal dysgenesis. This report is regarding a Dutch female with microcephaly, mild intellectual disability (ID), gonadal dysgenesis and dysmorphic facial features with synophrys. Upon genotyping, an ~455 kb de novo deletion encompassing the first exon of NRXN1 was found. Bidirectional sequencing of the coding exons of the NRXN1 alpha isoform was subsequently performed to investigate the possibility of a pathogenic mutation on the other allele, but we could not find any other mutation. Previously, many heterozygous mutations as well as microdeletions in NRXN1 were shown to be associated with ID, autism, schizophrenia, and other psychiatric and psychotic disorders. Our results are in agreement with other reports that show that NRXN1 deletions can lead to ID, microcephaly and mild dysmorphic features. However, this is the first report of gonadal dysgenesis being associated with such deletions. It is not clear whether there is a causal relationship between the NRXN1 deletion and gonadal dysgenesis, but it is of interest that the FSHR gene, which encodes the follicle-stimulating hormone receptor causative correlation that is mutated in ovarian dysgenesis, is located proximal to the NRXN1 gene. Given that most of the females carrying NRXN1 deletions have been diagnosed at a prepubertal age, gynecologic screening of female carriers of a NRXN1 deletion is warranted. "	"Genome-wide disruption of 5-hydroxymethylcytosine in a mouse model of autism. The autism spectrum disorders (ASD) comprise a broad group of behaviorally related neurodevelopmental disorders affecting as many as 1 in 68 children. The hallmarks of ASD consist of impaired social and communication interactions, pronounced repetitive behaviors and restricted patterns of interests. Family, twin and epidemiological studies suggest a polygenetic and epistatic susceptibility model involving the interaction of many genes; however, the etiology of ASD is likely to be complex and include both epigenetic and environmental factors. 5-hydroxymethylcytosine (5hmC) is a novel environmentally sensitive DNA modification that is highly enriched in post-mitotic neurons and is associated with active transcription of neuronal genes. Here, we used an established chemical labeling and affinity purification method coupled with high-throughput sequencing technology to generate a genome-wide profile of striatal 5hmC in an autism mouse model (Cntnap2(-/-) mice) and found that at 9 weeks of age the Cntnap2(-/-) mice have a genome-wide disruption in 5hmC, primarily in genic regions and repetitive elements. Annotation of differentially hydroxymethylated regions (DhMRs) to genes revealed a significant overlap with known ASD genes (e.g. Nrxn1 and Reln) that carried an enrichment of neuronal ontological functions, including axonogenesis and neuron projection morphogenesis. Finally, sequence motif predictions identified associations with transcription factors that have a high correlation with important genes in neuronal developmental and functional pathways. Together, our data implicate a role for 5hmC-mediated epigenetic modulation in the pathogenesis of autism and represent a critical step toward understanding the genome-wide molecular consequence of the Cntnap2 mutation, which results in an autism-like phenotype. "	"[The Role of Neurotrophins and Neurexins Genes in the Risk of Paranoid Schizophrenia in Russians and Tatars]. Schizophrenia affects about 1% of the population. Its etiology is not fully understood. Environmental conditions certainly contribute to the development of schizophrenia, but the determining factor is genetic predisposition: the coefficient of heritability of schizophrenia is about 80%, which is typical for the most highly heritable multifactorial diseases. Polymorphic loci of genes of enzymes and receptors involved in the processes of neuroprotection and neurotrophia play significant role in the development of this disease. In this paper we investigated 48 polymorphic variants of genes of the neurotrophins and neurexins family (BDNF, NTRK2, NTRK3, NGF, NXPH1, and NRXN1) in Russian and Tatar cases and in a control group living in the Republic of Bashkortostan. The results of this study confirm the important role of neurotrophin and neurexin genes in paranoid schizophrenia development."	"Enlisting hESCs to Interrogate Genetic Variants Associated with Neuropsychiatric Disorders. Connecting rare genetic variants to neuropsychiatric disease mechanisms remains a significant challenge. In this issue of Cell Stem Cell, Pak et al. (2015) combine gene targeting and stem cell technologies to identify a significant cellular effect of rare penetrant NRXN1 mutations in human neurons, which was found to cause a defect in neurotransmitter release."	"Structural and functional analyses of the sixth site of neurexin alternative splicing. In this study, we found the sixth site of alternative splicing (SS6) of neurexin 1a from the rat brain. This site is located between the fifth LNS and the third EGF-like domains. The insertion in the SS6 site corresponds to the 9-residue peptide VALMKADLQ, which is conserved among animals. We demonstrated that the SS6 insertion regulates tissue-specific expression of neurexin 1α. "	"Genetics of long-term treatment outcome in bipolar disorder. Bipolar disorder (BD) shows one of the strongest genetic predispositions among psychiatric disorders and the identification of reliable genetic predictors of treatment response could significantly improve the prognosis of the disease. The present study investigated genetic predictors of long-term treatment-outcome in 723 patients with BD type I from the STEP-BD (Systematic Treatment Enhancement Program for Bipolar Disorder) genome-wide dataset. BD I patients with &gt;6months of follow-up and without any treatment restriction (reflecting a natural setting scenario) were included. Phenotypes were the total and depressive episode rates and the occurrence of one or more (hypo)manic/mixed episodes during follow-up. Quality control of genome-wide data was performed according to standard criteria and linear/logistic regression models were used as appropriate under an additive hypothesis. Top genes were further analyzed through a pathway analysis. Genes previously involved in the susceptibility to BD (DFNB31, SORCS2, NRXN1, CNTNAP2, GRIN2A, GRM4, GRIN2B), antidepressant action (DEPTOR, CHRNA7, NRXN1), and mood stabilizer or antipsychotic action (NTRK2, CHRNA7, NRXN1) may affect long-term treatment outcome of BD. Promising findings without previous strong evidence were TRAF3IP2-AS1, NFYC, RNLS, KCNJ2, RASGRF1, NTF3 genes. Pathway analysis supported particularly the involvement of molecules mediating the positive regulation of MAPK cascade and learning/memory processes. Further studies focused on the outlined genes may be helpful to provide validated markers of BD treatment outcome. "	"The Sorting Receptor SorCS1 Regulates Trafficking of Neurexin and AMPA Receptors. The formation, function, and plasticity of synapses require dynamic changes in synaptic receptor composition. Here, we identify the sorting receptor SorCS1 as a key regulator of synaptic receptor trafficking. Four independent proteomic analyses identify the synaptic adhesion molecule neurexin and the AMPA glutamate receptor (AMPAR) as major proteins sorted by SorCS1. SorCS1 localizes to early and recycling endosomes and regulates neurexin and AMPAR surface trafficking. Surface proteome analysis of SorCS1-deficient neurons shows decreased surface levels of these, and additional, receptors. Quantitative in vivo analysis of SorCS1-knockout synaptic proteomes identifies SorCS1 as a global trafficking regulator and reveals decreased levels of receptors regulating adhesion and neurotransmission, including neurexins and AMPARs. Consequently, glutamatergic transmission at SorCS1-deficient synapses is reduced due to impaired AMPAR surface expression. SORCS1 mutations have been associated with autism and Alzheimer disease, suggesting that perturbed receptor trafficking contributes to synaptic-composition and -function defects underlying synaptopathies. "	"Human Neuropsychiatric Disease Modeling using Conditional Deletion Reveals Synaptic Transmission Defects Caused by Heterozygous Mutations in NRXN1. Heterozygous mutations of the NRXN1 gene, which encodes the presynaptic cell-adhesion molecule neurexin-1, were repeatedly associated with autism and schizophrenia. However, diverse clinical presentations of NRXN1 mutations in patients raise the question of whether heterozygous NRXN1 mutations alone directly impair synaptic function. To address this question under conditions that precisely control for genetic background, we generated human ESCs with different heterozygous conditional NRXN1 mutations and analyzed two different types of isogenic control and NRXN1 mutant neurons derived from these ESCs. Both heterozygous NRXN1 mutations selectively impaired neurotransmitter release in human neurons without changing neuronal differentiation or synapse formation. Moreover, both NRXN1 mutations increased the levels of CASK, a critical synaptic scaffolding protein that binds to neurexin-1. Our results show that, unexpectedly, heterozygous inactivation of NRXN1 directly impairs synaptic function in human neurons, and they illustrate the value of this conditional deletion approach for studying the functional effects of disease-associated mutations. "	"[Functional analysis of autism-associated NRXN1β gene promoter]. Neurexins are neuron-specific synaptic proteins, and abnormal structure of Neurexin1β is closely associated with autism. To characterize the minimal promoter of autism-associated NRXN1β gene and identify functional elements regulating its transcription, luciferase reporter plasmids containing different regulatory regions upstream of NRXN1β gene were constructed. After transfecting HEK293 cells with these plasmids, the minimal promoter region of NRXN1β gene was determined by detecting the transcriptional activity of luciferase reporter genes while the corresponding functional elements that significantly enhance or inhibit the activity of reporter genes were further screened out. To identify cis-acting elements, continuous nucleotide mutation within the functional regions and adjacent DNA sequences were generated using site-directed mutagenesis techniques and then transcriptional regulatory elements in corresponding regions were analyzed using transcription factor binding prediction tool. Our results showed for the first time that the minimal promoter region of human NRXN1β gene is located between positions -88 and +156 (-88/+156); two regions -88/-73 and +156/+149 enhance while the region +229/+419 inhibits promoter activity. The region -84/-63 significantly enhances promoter activity as cis-acting elements, suggesting the presence of DBP and ABF1 transcription factor binding sites in this region."	"Developmental expression of the neuroligins and neurexins in fragile X mice. Neuroligins and neurexins are transsynaptic proteins involved in the maturation of glutamatergic and GABAergic synapses. Research has identified synaptic proteins and function as primary contributors to the development of fragile X syndrome. Fragile X mental retardation protein (FMRP), the protein that is lacking in fragile X syndrome, binds neuroligin-1 and -3 mRNA. Using in situ hybridization, we examined temporal and spatial expression patterns of neuroligin (NLGN) and neurexin (NRXN) mRNAs in the somatosensory (S1) cortex and hippocampus in wild-type (WT) and fragile X knockout (FMR1-KO) mice during the first 5 weeks of postnatal life. Genotype-based differences in expression included increased NLGN1 mRNA in CA1 and S1 cortex, decreased NLGN2 mRNA in CA1 and dentate gyrus (DG) regions of the hippocampus, and increased NRXN3 mRNA in CA1, DG, and S1 cortex between female WT and FMR1-KO mice. In male mice, decreased expression of NRXN3 mRNA was observed in CA1 and DG regions of FMR1-KO mice. Sex differences in hippocampal expression of NLGN2, NRXN1, NRXN2, and NRXN3 mRNAs and in S1 cortex expression of NRXN3 mRNAs were observed WT mice, whereas sex differences in NLGN3, NRXN1, NRXN2, and NRXN3 mRNA expression in the hippocampus and in NLGN1, NRXN2 and NRXN3 mRNA expression in S1 cortex were detected in FMR1-KO mice. These results provide a neuroanatomical map of NLGN and NRXN expression patterns over postnatal development in WT and FMR1-KO mice. The differences in developmental trajectory of these synaptic proteins could contribute to long-term differences in CNS wiring and synaptic function."	"Neurexin 1 (NRXN1) splice isoform expression during human neocortical development and aging. Neurexin 1 (NRXN1), a presynaptic cell adhesion molecule, is implicated in several neurodevelopmental disorders characterized by synaptic dysfunction including autism, intellectual disability and schizophrenia. To gain insight into NRXN1's involvement in human cortical development we used quantitative real-time PCR to examine the expression trajectories of NRXN1, and its predominant isoforms, NRXN1-α and NRXN1-β, in prefrontal cortex from fetal stages to aging. In addition, we investigated whether prefrontal cortical expression levels of NRXN1 transcripts are altered in schizophrenia or bipolar disorder in comparison with non-psychiatric control subjects. We observed that all three NRXN1 transcripts were highly expressed during human fetal cortical development, markedly increasing with gestational age. In the postnatal dorsolateral prefrontal cortex, expression levels were negatively correlated with age, peaking at birth until ~3 years of age, after which levels declined markedly to be stable across the lifespan. NRXN1-β expression was modestly but significantly elevated in the brains of patients with schizophrenia compared with non-psychiatric controls, whereas NRXN1-α expression was increased in bipolar disorder. These data provide novel evidence that NRXN1 expression is highest in human dorsolateral prefrontal cortex during critical developmental windows relevant to the onset and diagnosis of a range of neurodevelopmental disorders, and that NRXN1 expression may be differentially altered in neuropsychiatric disorders. "	"β-Neurexins Control Neural Circuits by Regulating Synaptic Endocannabinoid Signaling. α- and β-neurexins are presynaptic cell-adhesion molecules implicated in autism and schizophrenia. We find that, although β-neurexins are expressed at much lower levels than α-neurexins, conditional knockout of β-neurexins with continued expression of α-neurexins dramatically decreased neurotransmitter release at excitatory synapses in cultured cortical neurons. The β-neurexin knockout phenotype was attenuated by CB1-receptor inhibition, which blocks presynaptic endocannabinoid signaling, or by 2-arachidonoylglycerol synthesis inhibition, which impairs postsynaptic endocannabinoid release. In synapses formed by CA1-region pyramidal neurons onto burst-firing subiculum neurons, presynaptic in vivo knockout of β-neurexins aggravated endocannabinoid-mediated inhibition of synaptic transmission and blocked LTP; presynaptic CB1-receptor antagonists or postsynaptic 2-arachidonoylglycerol synthesis inhibition again reversed this block. Moreover, conditional knockout of β-neurexins in CA1-region neurons impaired contextual fear memories. Thus, our data suggest that presynaptic β-neurexins control synaptic strength in excitatory synapses by regulating postsynaptic 2-arachidonoylglycerol synthesis, revealing an unexpected role for β-neurexins in the endocannabinoid-dependent regulation of neural circuits."	"Targeted massively parallel sequencing of autism spectrum disorder-associated genes in a case control cohort reveals rare loss-of-function risk variants. Autism spectrum disorder (ASD) is highly heritable, yet genome-wide association studies (GWAS), copy number variation screens, and candidate gene association studies have found no single factor accounting for a large percentage of genetic risk. ASD trio exome sequencing studies have revealed genes with recurrent de novo loss-of-function variants as strong risk factors, but there are relatively few recurrently affected genes while as many as 1000 genes are predicted to play a role. As such, it is critical to identify the remaining rare and low-frequency variants contributing to ASD. We have utilized an approach of prioritization of genes by GWAS and follow-up with massively parallel sequencing in a case-control cohort. Using a previously reported ASD noise reduction GWAS analyses, we prioritized 837 RefSeq genes for custom targeting and sequencing. We sequenced the coding regions of those genes in 2071 ASD cases and 904 controls of European white ancestry. We applied comprehensive annotation to identify single variants which could confer ASD risk and also gene-based association analysis to identify sets of rare variants associated with ASD. We identified a significant over-representation of rare loss-of-function variants in genes previously associated with ASD, including a de novo premature stop variant in the well-established ASD candidate gene RBFOX1. Furthermore, ASD cases were more likely to have two damaging missense variants in candidate genes than controls. Finally, gene-based rare variant association implicates genes functioning in excitatory neurotransmission and neurite outgrowth and guidance pathways including CACNAD2, KCNH7, and NRXN1. We find suggestive evidence that rare variants in synaptic genes are associated with ASD and that loss-of-function mutations in ASD candidate genes are a major risk factor, and we implicate damaging mutations in glutamate signaling receptors and neuronal adhesion and guidance molecules. Furthermore, the role of de novo mutations in ASD remains to be fully investigated as we identified the first reported protein-truncating variant in RBFOX1 in ASD. Overall, this work, combined with others in the field, suggests a convergence of genes and molecular pathways underlying ASD etiology."	"CNVs in neuropsychiatric disorders. Over the last few years at least 11 copy number variations (CNVs) have been shown convincingly to increase risk to developing schizophrenia: deletions at 1q21.1, NRXN1, 3q29, 15q11.2, 15q13.3 and 22q11.2, and duplications at 1q21.1, 7q11.23, 15q11.2-q13.1, 16p13.1 and proximal 16p11.2. They are very rare, found cumulatively in 2.4% of patients with schizophrenia and in only 0.5% of controls. They all increase risk for other neurodevelopmental disorders, such as developmental delay and autism spectrum disorders, where they are found at higher rates (3.3%). Their involvement in bipolar affective disorder is much less prominent. All of them affect multiple genes (apart from NRXN1) and cause substantial increases in risk to develop schizophrenia (odds ratios of 2 to over 50). Their penetrance for any neurodevelopmental disorder is high, from ∼10% to nearly 100%. Carriers of these CNVs display cognitive deficits, even when free of neuropsychiatric disorders."	"Using Gene Ontology to describe the role of the neurexin-neuroligin-SHANK complex in human, mouse and rat and its relevance to autism. People with an autistic spectrum disorder (ASD) display a variety of characteristic behavioral traits, including impaired social interaction, communication difficulties and repetitive behavior. This complex neurodevelopment disorder is known to be associated with a combination of genetic and environmental factors. Neurexins and neuroligins play a key role in synaptogenesis and neurexin-neuroligin adhesion is one of several processes that have been implicated in autism spectrum disorders. In this report we describe the manual annotation of a selection of gene products known to be associated with autism and/or the neurexin-neuroligin-SHANK complex and demonstrate how a focused annotation approach leads to the creation of more descriptive Gene Ontology (GO) terms, as well as an increase in both the number of gene product annotations and their granularity, thus improving the data available in the GO database. The manual annotations we describe will impact on the functional analysis of a variety of future autism-relevant datasets. Comprehensive gene annotation is an essential aspect of genomic and proteomic studies, as the quality of gene annotations incorporated into statistical analysis tools affects the effective interpretation of data obtained through genome wide association studies, next generation sequencing, proteomic and transcriptomic datasets."	"Burden analysis of rare microdeletions suggests a strong impact of neurodevelopmental genes in genetic generalised epilepsies. Genetic generalised epilepsy (GGE) is the most common form of genetic epilepsy, accounting for 20% of all epilepsies. Genomic copy number variations (CNVs) constitute important genetic risk factors of common GGE syndromes. In our present genome-wide burden analysis, large (≥ 400 kb) and rare (&lt; 1%) autosomal microdeletions with high calling confidence (≥ 200 markers) were assessed by the Affymetrix SNP 6.0 array in European case-control cohorts of 1,366 GGE patients and 5,234 ancestry-matched controls. We aimed to: 1) assess the microdeletion burden in common GGE syndromes, 2) estimate the relative contribution of recurrent microdeletions at genomic rearrangement hotspots and non-recurrent microdeletions, and 3) identify potential candidate genes for GGE. We found a significant excess of microdeletions in 7.3% of GGE patients compared to 4.0% in controls (P = 1.8 x 10-7; OR = 1.9). Recurrent microdeletions at seven known genomic hotspots accounted for 36.9% of all microdeletions identified in the GGE cohort and showed a 7.5-fold increased burden (P = 2.6 x 10-17) relative to controls. Microdeletions affecting either a gene previously implicated in neurodevelopmental disorders (P = 8.0 x 10-18, OR = 4.6) or an evolutionarily conserved brain-expressed gene related to autism spectrum disorder (P = 1.3 x 10-12, OR = 4.1) were significantly enriched in the GGE patients. Microdeletions found only in GGE patients harboured a high proportion of genes previously associated with epilepsy and neuropsychiatric disorders (NRXN1, RBFOX1, PCDH7, KCNA2, EPM2A, RORB, PLCB1). Our results demonstrate that the significantly increased burden of large and rare microdeletions in GGE patients is largely confined to recurrent hotspot microdeletions and microdeletions affecting neurodevelopmental genes, suggesting a strong impact of fundamental neurodevelopmental processes in the pathogenesis of common GGE syndromes. "	"Resequencing and association analysis of coding regions at twenty candidate genes suggest a role for rare risk variation at AKAP9 and protective variation at NRXN1 in schizophrenia susceptibility. A fraction of genetic risk to develop schizophrenia may be due to low-frequency variants. This multistep study attempted to find low-frequency variants of high effect at coding regions of eleven schizophrenia susceptibility genes supported by genome-wide association studies (GWAS) and nine genes for the DISC1 interactome, a susceptibility gene-set. During the discovery step, a total of 125 kb per sample were resequenced in 153 schizophrenia patients and 153 controls from Galicia (NW Spain), and the cumulative role of low-frequency variants at a gene or at the DISC1 gene-set were analyzed by burden and variance-based tests. Relevant results were meta-analyzed when appropriate data were available. In addition, case-only putative damaging variants were genotyped in a further 419 cases and 398 controls. The discovery step revealed a protective effect of rare missense variants at NRXN1, a result supported by meta-analysis (OR = 0.67, 95% CI: 0.47-0.94, P = 0.021, based on 3848 patients and 3896 controls from six studies). The follow-up step based on case-only putative damaging variants revealed a promising risk variant at AKAP9. This variant, K873R, reached nominal significance after inclusion of 240 additional Spanish controls from databases. The variant, located in an ADCY2 binding region, is absent from large public databases. Interestingly, GWAS revealed an association between common ADCY2 variants and bipolar disorder, a disorder with considerable genetic overlap with schizophrenia. These data suggest a role of rare missense variants at NRXN1 and AKAP9 in schizophrenia susceptibility, probably related to alteration of the excitatory/inhibitory synaptic balance, deserving further investigation."	"Genetic targeting of NRXN2 in mice unveils role in excitatory cortical synapse function and social behaviors. Human genetics has identified rare copy number variations and deleterious mutations for all neurexin genes (NRXN1-3) in patients with neurodevelopmental diseases, and electrophysiological recordings in animal brains have shown that Nrxns are important for synaptic transmission. While several mouse models for Nrxn1α inactivation have previously been studied for behavioral changes, very little information is available for other variants. Here, we validate that mice lacking Nrxn2α exhibit behavioral abnormalities, characterized by social interaction deficits and increased anxiety-like behavior, which partially overlap, partially differ from Nrxn1α mutant behaviors. Using patch-clamp recordings in Nrxn2α knockout brains, we observe reduced spontaneous transmitter release at excitatory synapses in the neocortex. We also analyse at this cellular level a novel NRXN2 mouse model that carries a combined deletion of Nrxn2α and Nrxn2β. Electrophysiological analysis of this Nrxn2-mutant mouse shows surprisingly similar defects of excitatory release to Nrxn2α, indicating that the β-variant of Nrxn2 has no strong function in basic transmission at these synapses. Inhibitory transmission as well as synapse densities and ultrastructure remain unchanged in the neocortex of both models. Furthermore, at Nrxn2α and Nrxn2-mutant excitatory synapses we find an altered facilitation and N-methyl-D-aspartate receptor (NMDAR) function because NMDAR-dependent decay time and NMDAR-mediated responses are reduced. As Nrxn can indirectly be linked to NMDAR via neuroligin and PSD-95, the trans-synaptic nature of this complex may help to explain occurrence of presynaptic and postsynaptic effects. Since excitatory/inhibitory imbalances and impairment of NMDAR function are alledged to have a role in autism and schizophrenia, our results support the idea of a related pathomechanism in these disorders. "	"[Intragenic deletions of NRXN1: three new case reports and a review of the phenotype]. To offer data on the phenotype determined by microdeletions of alpha exons in the NRXN1 gene. Three neuropaediatric cases of intragenic microdeletions of NRXN1 alpha are studied. The phenotype of these three cases is unspecific, with mild-moderate mental retardation, behavioural disorders and slight dysmorphic traits or malformations. The phenotype found in the microdeletions of alpha exons of the NRXN1 gene is clearly distinguishable from the one found in the microdeletions of beta exons, with macrocephaly, epilepsy and mental retardation. Deleciones intragenicas NRXN1: aportacion de tres nuevos casos y revision del fenotipo. Objetivo. Aportar datos sobre el fenotipo determinado por las microdeleciones de los exones alfa del gen NRXN1. Casos clinicos. Se estudian tres casos neuropediatricos con microdeleciones intragenicas NRXN1 alfa. El fenotipo en estos tres casos es inespecifico, con retraso mental leve-moderado, trastornos de comportamiento y escasos rasgos dismorficos o malformaciones. Conclusion. El fenotipo encontrado en las microdeleciones de los exones alfa del gen NRXN1 es claramente distinguible del fenotipo encontrado en las microdeleciones de los exones beta, con macrocefalia, epilepsia y retraso mental."	"Age-related expression of Neurexin1 and Neuroligin3 is correlated with presynaptic density in the cerebral cortex and hippocampus of male mice. Neurexin1 (Nrxn1) and Neuroligin3 (Nlgn3) are cell adhesion proteins, which play an important role in synaptic plasticity that declines with advancing age. However, the expression of these proteins during aging has not been analyzed. In the present study, we have examined the age-related changes in the expression of these proteins in cerebral cortex and hippocampus of 10-, 30-, 50-, and 80-week-old male mice. Reverse transcriptase polymerase chain reaction (RT-PCR) analysis indicated that messenger RNA (mRNA) level of Nrxn1 and Nlgn3 significantly increased from 10 to 30 weeks and then decreased at 50 weeks in both the regions. However, in 80-week-old mice, Nrxn1 and Nlgn3 were further downregulated in cerebral cortex while Nrxn1 was downregulated and Nlgn3 was upregulated in hippocampus. These findings were corroborated by immunoblotting and immunofluorescence results. When the expression of Nrxn1 and Nlgn3 was correlated with presynaptic density marker synaptophysin, it was found that synaptophysin protein expression in cerebral cortex was high at 10 weeks and decreased gradually up to 80 weeks, whereas in hippocampus, it decreased until 50 weeks and then increased remarkably at 80 weeks. Furthermore, Pearson's correlation analysis showed that synaptophysin had a strong relation with Nrxn1 and Nlgn3 in cerebral cortex and with Nlgn3 in hippocampus. Thus, these findings showed that Nrxn1 and Nlgn3 are differentially expressed in cerebral cortex and hippocampus which might be responsible for alterations in synaptic plasticity during aging."	"Fetal DNA methylation of autism spectrum disorders candidate genes: association with spontaneous preterm birth. Autism spectrum disorder (ASD) is associated with preterm birth (PTB), although the reason underlying this relationship is still unclear. Our objective was to examine DNA methylation patterns of 4 ASD candidate genes in human fetal membranes from spontaneous PTB and uncomplicated term birth. A literature search for genes that have been implicated in ASD yielded 14 candidate genes (OXTR, SHANK3, BCL2, RORA, EN2, RELN, MECP2, AUTS2, NLGN3, NRXN1, SLC6A4, UBE3A, GABA, AFF2) that were epigenetically modified in relation to ASD. DNA methylation in fetal leukocyte DNA in 4 of these genes (OXTR, SHANK3, BCL2, and RORA) was associated with PTB in a previous study. This study evaluated DNA methylation, transcription (reverse transcription polymerase chain reaction), and translation patterns (immunostaining and Western blot) in fetal membrane from term labor (n = 14), term not in labor (TNIL; n = 29), and spontaneous preterm birth (PTB; n = 27). Statistical analysis was performed with analysis of variance; a probability value of &lt; .05 was significant. Higher methylation of the OXTR promoter was seen in fetal membranes from PTB, compared with term labor or TNIL. No other gene showed any methylation differences among groups. Expression of OXTR was not different among groups, but the 70 kDa OXTR protein was seen only in PTB, and immunostaining was more intense in PTB amniocytes than term labor or TNIL. Among the 4 genes that were studied, fetal membranes from PTB demonstrate differences in OXTR methylation and regulation and expression, which suggest that epigenetic alteration of this gene in fetal membrane may likely be indicating an in utero programing of this gene and serve as a surrogate in a subset of PTB. The usefulness of OXTR hypermethylation as a surrogate for a link to ASD should be further evaluated in longitudinal and in vitro studies."	"A common cognitive, psychiatric, and dysmorphic phenotype in carriers of NRXN1 deletion. Deletions in the 2p16.3 region that includes the neurexin (NRXN1) gene are associated with intellectual disability and various psychiatric disorders, in particular, autism and schizophrenia. We present three unrelated patients, two adults and one child, in whom we identified an intragenic 2p16.3 deletion within the NRXN1 gene using an oligonucleotide comparative genomic hybridization array. The three patients presented dual diagnosis that consisted of mild intellectual disability and autism and bipolar disorder. Also, they all shared a dysmorphic phenotype characterized by a long face, deep set eyes, and prominent premaxilla. Genetic analysis of family members showed two inherited deletions. A comprehensive neuropsychological examination of the 2p16.3 deletion carriers revealed the same phenotype, characterized by anxiety disorder, borderline intelligence, and dysexecutive syndrome. The cognitive pattern of dysexecutive syndrome with poor working memory and reduced attention switching, mental flexibility, and verbal fluency was the same than those of the adult probands. We suggest that in addition to intellectual disability and psychiatric disease, NRXN1 deletion is a risk factor for a characteristic cognitive and dysmorphic profile. The new cognitive phenotype found in the 2p16.3 deletion carriers suggests that 2p16.3 deletions might have a wide variable expressivity instead of incomplete penetrance. "	"Genome-wide methylation analysis in vestibular schwannomas shows putative mechanisms of gene expression modulation and global hypomethylation at the HOX gene cluster. Schwannomas are tumors that develop from Schwann cells in the peripheral nerves and commonly arise from the vestibular nerve. Vestibular schwannomas can present unilaterally and sporadically or bilaterally when the tumor is associated with neurofibromatosis Type 2 (NF2) syndrome. The molecular hallmark of the disease is biallelic inactivation of the NF2 gene. The epigenetic signature of schwannomas remains poorly understood and is mostly limited to DNA methylation of the NF2 gene, whose altered expression due to epigenetic factors in this tumor is controversial. In this study, we tested the genomewide DNA methylation pattern of schwannomas to shed light on this epigenetic alteration in these particular tumors. The methodology used includes Infinium Human Methylation 450K BeadChip microarrays in a series of 36 vestibular schwannomas, 4 nonvestibular schwannomas, and 5 healthy nerves. Our results show a trend toward hypomethylation in schwannomas. Furthermore, homeobox (HOX) genes, located at four clusters in the genome, displayed hypomethylation in several CpG sites in the vestibular schwannomas but not in the nonvestibular schwannomas. Several microRNA (miRNA) and protein-coding genes were also found to be hypomethylated at promoter regions and were confirmed as upregulated by expression analysis; including miRNA-21, Met Proto-Oncogene (MET), and PMEPA1. We also detected methylation patterns that might be involved in alternative transcripts of several genes such as NRXN1 or MBP, which would increase the complexity of the methylation and expression patterns. Overall, our results show specific epigenetic signatures in several coding genes and miRNAs that could potentially be used as therapeutic targets."	"Alternative splicing coupled nonsense-mediated decay generates neuronal cell type-specific expression of SLM proteins. The unique physiological and morphological properties of neuronal populations are crucial for the appropriate functioning of neuronal circuits. Alternative splicing represents an attractive mechanism for generating cell type-specific molecular repertoires that steer neuronal development and function. However, the mechanisms that link neuronal identity to alternative splicing programs are poorly understood. We report that cell type-specific, mutually exclusive expression of two alternative splicing regulators, SLM1 and SLM2, in the mouse hippocampus is achieved by a cross-repression mechanism. Deletion of SLM2 in vivo modifies alternative splicing of its paralog Slm1 and stabilizes its mRNA, resulting in expression of SLM1 in previously SLM2-expressing cells. Despite this ectopic upregulation of SLM1, loss of SLM2 severely disrupts the alternative splicing regulation of Nrxn1, Nrxn2, and Nrxn3, highlighting that the two SLM paralogs have partially divergent functions. Our study uncovers a hierarchical, SLM2-dependent mechanism for establishing cell type-specific expression of neuronal splicing regulators in vivo."	"A boy with dysmorphic features, intellectual disability, and biallelic homozygous deletion in NRXN1. NA"	"The contribution of rare and common variants in 30 genes to risk nicotine dependence. Genetic and functional studies have revealed that both common and rare variants of several nicotinic acetylcholine receptor subunits are associated with nicotine dependence (ND). In this study, we identified variants in 30 candidate genes including nicotinic receptors in 200 sib pairs selected from the Mid-South Tobacco Family population with equal numbers of African Americans (AAs) and European Americans (EAs). We selected 135 of the rare and common variants and genotyped them in the Mid-South Tobacco Case-Control (MSTCC) population, which consists of 3088 AAs and 1430 EAs. None of the genotyped common variants showed significant association with smoking status (smokers vs non-smokers), Fagerström Test for ND scores or indexed cigarettes per day after Bonferroni correction. Rare variants in NRXN1, CHRNA9, CHRNA2, NTRK2, GABBR2, GRIN3A, DNM1, NRXN2, NRXN3 and ARRB2 were significantly associated with smoking status in the MSTCC AA sample, with weighted sum statistic (WSS) P-values ranging from 2.42 × 10(-3) to 1.31 × 10(-4) after 10(6) phenotype rearrangements. We also observed a significant excess of rare nonsynonymous variants exclusive to EA smokers in NRXN1, CHRNA9, TAS2R38, GRIN3A, DBH, ANKK1/DRD2, NRXN3 and CDH13 with WSS P-values between 3.5 × 10(-5) and 1 × 10(-6). Variants rs142807401 (A432T) and rs139982841 (A452V) in CHRNA9 and variants V132L, V389L, rs34755188 (R480H) and rs75981117 (N549S) in GRIN3A are of particular interest because they are found in both the AA and EA samples. A significant aggregate contribution of rare and common coding variants in CHRNA9 to the risk for ND (SKAT-C: P=0.0012) was detected by applying the combined sum test in MSTCC EAs. Together, our results indicate that rare variants alone or combined with common variants in a subset of 30 biological candidate genes contribute substantially to the risk of ND. "	"Phenotypic characterization of nonsocial behavioral impairment in neurexin 1α knockout rats. Neurexins are neuronal presynaptic proteins that play a key role in mediation of synapse formation. Heterozygous partial deletions in the neurexin-1 gene (NRXN1, 2p16.3) have been observed in autism spectrum disorder (ASD) patients. NRXN1-α knockout (KO) mice present behavioral impairments that resemble some of the core ASD symptoms of social impairment and inflexibility/stereotypy. At present, a thorough assessment of cognitive function has yet to be completed. Rats, containing a biallelic deletion of the NRNX1-α gene on a Sprague Dawley background were compared to littermate wild types across a range of tasks designed to test functional domains disrupted in ASD and other neurodevelopmental disorders, including sensory perception (prepulse inhibition), attention (latent inhibition), associative learning (instrumental and Pavlovian conditioning), and memory (rewarded alternation T maze and spatial discrimination). NRXN1α KO rats were found to present with large and persistent nonsocial deficits, including hyperactivity, deficits in simple instrumental learning, latent inhibition, and spatial-dependent learning. No deficit in sensorimotor gating was observed, despite the presence of an exaggerated startle response. Although KO animals were also able to learn a simple Pavlovian conditioning discrimination, they did display impaired latent inhibition. The presence of pronounced impairments in several domains in NRXN1α KO rats clearly suggests that nonsocial cognitive deficits can also be measured in an animal model of ASD. Further exploration of those deficits, both clinically and preclinically, as planned in the Innovative Medicines Initiative's European Autism Interventions: A Multicenter Study for Developing New Medications program, may help to better understand the brain circuitry involved in ASD and therefore open new avenues to advance novel therapies."	"Topoisomerase 1 inhibition reversibly impairs synaptic function. Topotecan is a topoisomerase 1 (TOP1) inhibitor that is used to treat various forms of cancer. We recently found that topotecan reduces the expression of multiple long genes, including many neuronal genes linked to synapses and autism. However, whether topotecan alters synaptic protein levels and synapse function is currently unknown. Here we report that in primary cortical neurons, topotecan depleted synaptic proteins that are encoded by extremely long genes, including Neurexin-1, Neuroligin-1, Cntnap2, and GABA(A)β3. Topotecan also suppressed spontaneous network activity without affecting resting membrane potential, action potential threshold, or neuron health. Topotecan strongly suppressed inhibitory neurotransmission via pre- and postsynaptic mechanisms and reduced excitatory neurotransmission. The effects on synaptic protein levels and inhibitory neurotransmission were fully reversible upon drug washout. Collectively, our findings suggest that TOP1 controls the levels of multiple synaptic proteins and is required for normal excitatory and inhibitory synaptic transmission."	"TGF-β1, Ghrelin, Neurexin, and Neuroligin are predictive biomarkers for postoperative prognosis of laparoscopic surgery in children with Hirschsprung disease. The study was set to analyze the predictive values of transforming growth factor β1 (TGF-β1), Ghrelin, Neurexin, and Neuroligin protein expression on postoperative prognosis of laparoscopic surgery in children with Hirschsprung disease. 281 cases of children with Hirschsprung disease, admitted into Guangdong Women and Children Hospital and Guangzhou women and children's medical center from March 2009 to March 2014, were treated with laparoscopic radical surgery for Hirschsprung disease. They were divided into the good and the poor prognosis groups according to their recuperation and complications. Protein expressions of TGF-β1, Ghrelin, Neurexin, and Neuroligin were prospectively analyzed. The correlations between the expressions of these proteins and the prognosis were analyzed. There were 129 cases of children with poor prognosis, accounting for 45.9 %. There were no significant differences in the expressions of TGF-β1 mRNA and proteins within the group in both the groups (p &gt; 0.05). TGF-β1 mRNA and protein expressions of the poor prognosis group were significantly higher than those of the good prognosis group in each segment of intestine (p &lt; 0.05). Protein detection results manifested that Ghrelin protein expression gradually increased along narrow segment, transitional segment, and expansion segment in both groups. Ghrelin protein expression of the poor prognosis group was significantly lower than that of the good prognosis group in each segment of intestine (p &lt; 0.05). There were significant differences in the protein expressions of Neurexin and Neuroligin within the group. The protein expressions of Neurexin and Neuroligin in expansion segment were the highest. Neurexin and Neuroligin protein expressions of the poor prognosis group were significantly lower than those of the good prognosis group in each segment of intestine (p &lt; 0.05). Increasing expression of TGF-β1 protein, decreasing expressions of Ghrelin, Neurexin, and Neuroligin proteins can induce the loss or dysfunction of ganglion cells in distal intestinal canal, which is closely correlated with the occurrences of adverse prognosis, such as increased intestinal peristalsis recovery time, increased complication rate etc., in children. It has a high value for predicting prognosis of children patients with Hirschsprung disease after surgical intervention."	"PICK1 mediates synaptic recruitment of AMPA receptors at neurexin-induced postsynaptic sites. In the CNS, synapse formation and maturation play crucial roles in the construction and consolidation of neuronal circuits. Neurexin and neuroligin localize on the opposite sides of synaptic membrane and interact with each other to promote the assembly and specialization of synapses. However, the excitatory synapses induced by the neurexin-neuroligin complex are initially immature synapses that lack AMPA receptors. Previously, PICK1 (protein interacting with C kinase 1) was shown to cluster and regulate the synaptic localization of AMPA receptors. Here, we report that during synaptogenesis induced by neurexin in cultured neurons from rat hippocampus, PICK1 recruited AMPA receptors to immature postsynaptic sites. This synaptic recruitment of AMPA receptors depended on the interaction between GluA2 and PICK1, and on the lipid-binding ability of PICK1, but not the interaction between PICK1 and neuroligin. Last, our results demonstrated that the recruitment of GluA2 to synapses could be prevented by ICA69 (islet cell autoantigen 69 kDa), a key binding partner of PICK1. Our study showed that PICK1, being negatively regulated by ICA69, could facilitate synapse maturation. "	"Genome-wide association study for refractive astigmatism reveals genetic co-determination with spherical equivalent refractive error: the CREAM consortium. To identify genetic variants associated with refractive astigmatism in the general population, meta-analyses of genome-wide association studies were performed for: White Europeans aged at least 25 years (20 cohorts, N = 31,968); Asian subjects aged at least 25 years (7 cohorts, N = 9,295); White Europeans aged &lt;25 years (4 cohorts, N = 5,640); and all independent individuals from the above three samples combined with a sample of Chinese subjects aged &lt;25 years (N = 45,931). Participants were classified as cases with refractive astigmatism if the average cylinder power in their two eyes was at least 1.00 diopter and as controls otherwise. Genome-wide association analysis was carried out for each cohort separately using logistic regression. Meta-analysis was conducted using a fixed effects model. In the older European group the most strongly associated marker was downstream of the neurexin-1 (NRXN1) gene (rs1401327, P = 3.92E-8). No other region reached genome-wide significance, and association signals were lower for the younger European group and Asian group. In the meta-analysis of all cohorts, no marker reached genome-wide significance: The most strongly associated regions were, NRXN1 (rs1401327, P = 2.93E-07), TOX (rs7823467, P = 3.47E-07) and LINC00340 (rs12212674, P = 1.49E-06). For 34 markers identified in prior GWAS for spherical equivalent refractive error, the beta coefficients for genotype versus spherical equivalent, and genotype versus refractive astigmatism, were highly correlated (r = -0.59, P = 2.10E-04). This work revealed no consistent or strong genetic signals for refractive astigmatism; however, the TOX gene region previously identified in GWAS for spherical equivalent refractive error was the second most strongly associated region. Analysis of additional markers provided evidence supporting widespread genetic co-susceptibility for spherical and astigmatic refractive errors. "	"Calsyntenin-3 molecular architecture and interaction with neurexin 1α. Calsyntenin 3 (Cstn3 or Clstn3), a recently identified synaptic organizer, promotes the development of synapses. Cstn3 localizes to the postsynaptic membrane and triggers presynaptic differentiation. Calsyntenin members play an evolutionarily conserved role in memory and learning. Cstn3 was recently shown in cell-based assays to interact with neurexin 1α (n1α), a synaptic organizer that is implicated in neuropsychiatric disease. Interaction would permit Cstn3 and n1α to form a trans-synaptic complex and promote synaptic differentiation. However, it is contentious whether Cstn3 binds n1α directly. To understand the structure and function of Cstn3, we determined its architecture by electron microscopy and delineated the interaction between Cstn3 and n1α biochemically and biophysically. We show that Cstn3 ectodomains form monomers as well as tetramers that are stabilized by disulfide bonds and Ca(2+), and both are probably flexible in solution. We show further that the extracellular domains of Cstn3 and n1α interact directly and that both Cstn3 monomers and tetramers bind n1α with nanomolar affinity. The interaction is promoted by Ca(2+) and requires minimally the LNS domain of Cstn3. Furthermore, Cstn3 uses a fundamentally different mechanism to bind n1α compared with other neurexin partners, such as the synaptic organizer neuroligin 2, because Cstn3 does not strictly require the sixth LNS domain of n1α. Our structural data suggest how Cstn3 as a synaptic organizer on the postsynaptic membrane, particularly in tetrameric form, may assemble radially symmetric trans-synaptic bridges with the presynaptic synaptic organizer n1α to recruit and spatially organize proteins into networks essential for synaptic function. "	"Perinatal exposure to bisphenol-A impairs spatial memory through upregulation of neurexin1 and neuroligin3 expression in male mouse brain. Bisphenol-A (BPA), a well known endocrine disruptor, impairs learning and memory in rodents. However, the underlying molecular mechanism of BPA induced impairment in learning and memory is not well known. As synaptic plasticity is the cellular basis of memory, the present study investigated the effect of perinatal exposure to BPA on the expression of synaptic proteins neurexin1 (Nrxn1) and neuroligin3 (Nlgn3), dendritic spine density and spatial memory in postnatal male mice. The pregnant mice were orally administered BPA (50 µg/kgbw/d) from gestation day (GD) 7 to postnatal day (PND) 21 and sesame oil was used as a vehicle control. In Morris water maze (MWM) test, BPA extended the escape latency time to locate the hidden platform in 8 weeks male mice. RT-PCR and Immunoblotting results showed significant upregulation of Nrxn1 and Nlgn3 expression in both cerebral cortex and hippocampus of 3 and 8 weeks male mice. This was further substantiated by in-situ hybridization and immunofluorescence techniques. BPA also significantly increased the density of dendritic spines in both regions, as analyzed by rapid Golgi staining. Thus our data suggest that perinatal exposure to BPA impairs spatial memory through upregulation of expression of synaptic proteins Nrxn1 and Nlgn3 and increased dendritic spine density in cerebral cortex and hippocampus of postnatal male mice. "	"Copy number variations and susceptibility to lateral temporal epilepsy: a study of 21 pedigrees. Autosomal dominant lateral temporal epilepsy (ADLTE) is a focal epileptic syndrome characterized by auditory or aphasic auras. Mutations in the LGI1 gene account for &lt;50% of ADLTE families. To identify copy number variants (CNVs) related to ADLTE, we examined a collection of ADLTE families without LGI1 mutations. Twenty-one families were included based on a history of focal seizures with auditory and/or receptive aphasic symptoms in two or more individuals, absence of brain abnormalities, and negative LGI1 test. DNA suitable for single nucleotide polymorphism-array analysis was genotyped using the high-density HumanOmni1-Quad v1.0 beadchip (Illumina). CNVs were inferred using the PennCNV algorithm. Selected CNVs were validated by real-time quantitative polymerase chain reaction (qPCR). We analyzed 62 affected and 114 unaffected members of our study families and identified a total of 11,214 CNVs, corresponding to 1,890 unique regions with an average size of 67.3 kb. Most CNVs were &lt;50 kb, whereas a small proportion (1.2%) exceeded 500 kb. We identified 12 rare CNVs that segregated with lateral temporal epilepsy in single families. Particularly, we found rare microdeletions within or near two genes, RBFOX1 and NRXN1, previously shown to harbor deletions associated with idiopathic generalized epilepsy, and a microduplication in the proximal region of chromosome 1q21.1, where duplications have been associated with various neurodevelopmental disorders and epilepsy. We also found numerous polymorphic CNVs in the affected members of one or more families, including a deletion of the PCDHA8/10 genes, which was enriched in the patients of our family cohort. Our results provide clues on genes for susceptibility to ADLTE, particularly in those families where the inheritance pattern is less compatible with autosomal dominance. Some of these genes also confer risk for other epilepsy syndromes."	"Common genetic variants associated with cognitive performance identified using the proxy-phenotype method. We identify common genetic variants associated with cognitive performance using a two-stage approach, which we call the proxy-phenotype method. First, we conduct a genome-wide association study of educational attainment in a large sample (n = 106,736), which produces a set of 69 education-associated SNPs. Second, using independent samples (n = 24,189), we measure the association of these education-associated SNPs with cognitive performance. Three SNPs (rs1487441, rs7923609, and rs2721173) are significantly associated with cognitive performance after correction for multiple hypothesis testing. In an independent sample of older Americans (n = 8,652), we also show that a polygenic score derived from the education-associated SNPs is associated with memory and absence of dementia. Convergent evidence from a set of bioinformatics analyses implicates four specific genes (KNCMA1, NRXN1, POU2F3, and SCRT). All of these genes are associated with a particular neurotransmitter pathway involved in synaptic plasticity, the main cellular mechanism for learning and memory. "	"Genome-wide distribution of Auts2 binding localizes with active neurodevelopmental genes. The autism susceptibility candidate 2 gene (AUTS2) has been associated with multiple neurological diseases including autism spectrum disorders (ASDs). Previous studies showed that AUTS2 has an important neurodevelopmental function and is a suspected master regulator of genes implicated in ASD-related pathways. However, the regulatory role and targets of Auts2 are not well known. Here, by using ChIP-seq (chromatin immunoprecipitation followed by deep sequencing) and RNA-seq on mouse embryonic day 16.5 forebrains, we elucidated the gene regulatory networks of Auts2. We find that the majority of promoters bound by Auts2 belong to genes highly expressed in the developing forebrain, suggesting that Auts2 is involved in transcriptional activation. Auts2 non-promoter-bound regions significantly overlap developing brain-associated enhancer marks and are located near genes involved in neurodevelopment. Auts2-marked sequences are enriched for binding site motifs of neurodevelopmental transcription factors, including Pitx3 and TCF3. In addition, we characterized two functional brain enhancers marked by Auts2 near NRXN1 and ATP2B2, both ASD-implicated genes. Our results implicate Auts2 as an active regulator of important neurodevelopmental genes and pathways and identify novel genomic regions that could be associated with ASD and other neurodevelopmental diseases. "	"Editorial comment: Fraternal twins with autism, severe cognitive deficit, and epilepsy: diagnostic role of chromosomal microarray analysis. NA"	"Fraternal twins with autism, severe cognitive deficit, and epilepsy: diagnostic role of chromosomal microarray analysis. A 7-year-old child presented with atypical absence epilepsy. He also had autism and severe cognitive deficit. As part of his diagnostic workup, a chromosomal microarray analysis was performed, which showed novel biallelic deletions in the neurexin 1 gene (NRXN1). His fraternal twin sister, who also had autism and cognitive impairment, was subsequently found to have the same biallelic deletions. Deletions included a 272-282kb loss at band 2p16.3 in one allele and a smaller 135-174-kb loss on the second allele. Neurexin 1 (NRXN1) is a cell adhesion protein, forming a synaptic complex with neuroligin. This signals a pathway that is critical for activity-dependent synaptic transmission. Mutations in this gene have been associated with autism and neurodevelopmental delay. Although there are many reports of heterozygous mutations with variable expressivity, only 3 cases with biallelic NRXN1 mutations have been previously reported, all of which have a more severe phenotype. We report 2 siblings with biallelic deletions, both of which affect the promoter region and exons 1-5 in the α-NRXN1 isoform, which has a role in the Ca(2+)-dependent release of neurotransmitters in the central nervous system. Our cases expand the phenotype of biallelic α NRXN 1 mutations and emphasize the important role of NRXN1 in autism and intellectual disability. Chromosomal microarray analysis should be the clinical standard in all specialties for first-tier genetic testing in autistic spectrum disorders."	"Phenotypic spectrum associated with PTCHD1 deletions and truncating mutations includes intellectual disability and autism spectrum disorder. Studies of genomic copy number variants (CNVs) have identified genes associated with autism spectrum disorder (ASD) and intellectual disability (ID) such as NRXN1, SHANK2, SHANK3 and PTCHD1. Deletions have been reported in PTCHD1 however there has been little information available regarding the clinical presentation of these individuals. Herein we present 23 individuals with PTCHD1 deletions or truncating mutations with detailed phenotypic descriptions. The results suggest that individuals with disruption of the PTCHD1 coding region may have subtle dysmorphic features including a long face, prominent forehead, puffy eyelids and a thin upper lip. They do not have a consistent pattern of associated congenital anomalies or growth abnormalities. They have mild to moderate global developmental delay, variable degrees of ID, and many have prominent behavioral issues. Over 40% of subjects have ASD or ASD-like behaviors. The only consistent neurological findings in our cohort are orofacial hypotonia and mild motor incoordination. Our findings suggest that hemizygous PTCHD1 loss of function causes an X-linked neurodevelopmental disorder with a strong propensity to autistic behaviors. Detailed neuropsychological studies are required to better define the cognitive and behavioral phenotype. "	"Replication of previous genome-wide association studies of psychiatric diseases in a large schizophrenia case-control sample from Spain. Genome wide association studies (GWAS) has allowed the discovery of some interesting risk variants for schizophrenia (SCZ). However, this high-throughput approach presents some limitations, being the most important the necessity of highly restrictive statistical corrections as well as the loss of statistical power inherent to the use of a Single Nucleotide Polymorphism (SNP) analysis approach. These problems can be partially solved through the use of a polygenic approach. We performed a genotyping study in SCZ using 86 previously associated SNPs identified by GWAS of SCZ, bipolar disorder (BPD) and autistic spectrum disorder (ASD) patients. The sample consisted of 3063 independent cases with DSM-IV-TR diagnosis of SCZ and 2847 independent controls of European origin from Spain. A polygenic score analysis was also used to test the overall effect on the SCZ status. One SNP, rs12290811, located in the ODZ4 gene reached statistical significance (p=1.7×10(-4), Allelic odds ratio=1.21), a value very near to those reported in previous GWAS of BPD patients. In addition, 4 SNPs were close to the significant threshold: rs3850333, in the NRXN1 gene; rs6932590, at MHC; rs2314398, located in an intergenic region on chromosome 2; and rs1006737, in the CACNA1C gene. We also found that 74% of the studied SNPs showed the same tendency (risk or protection alleles) previously reported in the original GWAS (p&lt;0.001). Our data strengthen the polygenic component of susceptibility to SCZ. Our findings show ODZ4 as a risk gene for SCZ, emphasizing the existence of common vulnerability in psychosis."	"Neurodevelopmental disorders associated with dosage imbalance of ZBTB20 correlate with the morbidity spectrum of ZBTB20 candidate target genes. Recently, a number of patients have been described with structural rearrangements at 3q13.31, delineating a novel microdeletion syndrome with common clinical features including developmental delay and other neurodevelopmental disorders (NDD). A smallest region of overlapping deletions (SRO) involved five RefSeq genes, including the transcription factor gene ZBTB20 and the dopamine receptor gene DRD3, considered as candidate genes for the syndrome. We used array comparative genomic hybridization and next-generation mate-pair sequencing to identify key structural rearrangements involving ZBTB20 in two patients with NDD. In a patient with developmental delay, attention-deficit hyperactivity disorder, psychosis, Tourette's syndrome and autistic traits, a de novo balanced t(3;18) translocation truncated ZBTB20. The other breakpoint did not disrupt any gene. In a second patient with developmental delay and autism, we detected the first microdeletion at 3q13.31, which truncated ZBTB20 but did not involve DRD3 or the other genes within the previously defined SRO. Zbtb20 directly represses 346 genes in the developing murine brain. Of the 342 human orthologous ZBTB20 candidate target genes, we found 68 associated with NDD. Using chromatin immunoprecipitation and quantitative PCR, we validated the in vivo binding of Zbtb20 in evolutionary conserved regions in six of these genes (Cntn4, Gad1, Nrxn1, Nrxn3, Scn2a, Snap25). Our study links dosage imbalance of ZBTB20 to a range of neurodevelopmental, cognitive and psychiatric disorders, likely mediated by dysregulation of multiple ZBTB20 target genes, and provides new knowledge on the genetic background of the NDD seen in the 3q13.31 microdeletion syndrome."	"Expression profiling of RNA transcripts during neuronal maturation and ischemic injury. Neuronal development is a pro-survival process that involves neurite growth, synaptogenesis, synaptic and neuronal pruning. During development, these processes can be controlled by temporal gene expression that is orchestrated by both long non-coding RNAs and microRNAs. To examine the interplay between these different components of the transcriptome during neuronal differentiation, we carried out mRNA, long non-coding RNA and microRNA expression profiling on maturing primary neurons. Subsequent gene ontology analysis revealed regulation of axonogenesis and dendritogenesis processes by these differentially expressed mRNAs and non-coding RNAs. Temporally regulated mRNAs and their associated long non-coding RNAs were significantly over-represented in proliferation and differentiation associated signalling, cell adhesion and neurotrophin signalling pathways. Verification of expression of the Axin2, Prkcb, Cntn1, Ncam1, Negr1, Nrxn1 and Sh2b3 mRNAs and their respective long non-coding RNAs in an in vitro model of ischemic-reperfusion injury showed an inverse expression profile to the maturation process, thus suggesting their role(s) in maintaining neuronal structure and function. Furthermore, we propose that expression of the cell adhesion molecules, Ncam1 and Negr1 might be tightly regulated by both long non-coding RNAs and microRNAs. "	"Neuronal cell-surface protein neurexin 1 interaction with multi-PDZ domain protein MUPP1. Location of membrane proteins is often stabilized by PDZ domain-containing scaffolding proteins. Using the yeast two-hybrid screening, we found that neurexin 1 interacted with multi-PDZ domain protein 1 (MUPP1) through PDZ domain. Neurexin 2 and 3 also interacted with MUPP1. MUPP1 and neurexin 1 were co-localized in cultured cells. These results suggest a novel mechanism for localizing neurexin 1 to synaptic sites. "	"Neurexin dysfunction in adult neurons results in autistic-like behavior in mice. Autism spectrum disorders (ASDs) comprise a group of clinical phenotypes characterized by repetitive behavior and social and communication deficits. Autism is generally viewed as a neurodevelopmental disorder where insults during embryonic or early postnatal periods result in aberrant wiring and function of neuronal circuits. Neurexins are synaptic proteins associated with autism. Here, we generated transgenic βNrx1ΔC mice in which neurexin function is selectively impaired during late postnatal stages. Whole-cell recordings in cortical neurons show an impairment of glutamatergic synaptic transmission in the βNrx1ΔC mice. Importantly, mutant mice exhibit autism-related symptoms, such as increased self-grooming, deficits in social interactions, and altered interaction for nonsocial olfactory cues. The autistic-like phenotype of βNrx1ΔC mice can be reversed after removing the mutant protein in aged animals. The defects resulting from disruption of neurexin function after the completion of embryonic and early postnatal development suggest that functional impairment of mature circuits can trigger autism-related phenotypes. "	"Teriravone induces neurotoxicity in beagle dogs. NA"	"Transcriptional consequences of 16p11.2 deletion and duplication in mouse cortex and multiplex autism families. Reciprocal copy-number variation (CNV) of a 593 kb region of 16p11.2 is a common genetic cause of autism spectrum disorder (ASD), yet it is not completely penetrant and can manifest in a wide array of phenotypes. To explore its molecular consequences, we performed RNA sequencing of cerebral cortex from mouse models with CNV of the syntenic 7qF3 region and lymphoblast lines from 34 members of 7 multiplex ASD-affected families harboring the 16p11.2 CNV. Expression of all genes in the CNV region correlated well with their DNA copy number, with no evidence of dosage compensation. We observed effects on gene expression outside the CNV region, including apparent positional effects in cis and in trans at genomic segments with evidence of physical interaction in Hi-C chromosome conformation data. One of the most significant positional effects was telomeric to the 16p11.2 CNV and includes the previously described &quot;distal&quot; 16p11.2 microdeletion. Overall, 16p11.2 CNV was associated with altered expression of genes and networks that converge on multiple hypotheses of ASD pathogenesis, including synaptic function (e.g., NRXN1, NRXN3), chromatin modification (e.g., CHD8, EHMT1, MECP2), transcriptional regulation (e.g., TCF4, SATB2), and intellectual disability (e.g., FMR1, CEP290). However, there were differences between tissues and species, with the strongest effects being consistently within the CNV region itself. Our analyses suggest that through a combination of indirect regulatory effects and direct effects on nuclear architecture, alteration of 16p11.2 genes disrupts expression networks that involve other genes and pathways known to contribute to ASD, suggesting an overlap in mechanisms of pathogenesis. "	"Cntnap4 differentially contributes to GABAergic and dopaminergic synaptic transmission. Although considerable evidence suggests that the chemical synapse is a lynchpin underlying affective disorders, how molecular insults differentially affect specific synaptic connections remains poorly understood. For instance, Neurexin 1a and 2 (NRXN1 and NRXN2) and CNTNAP2 (also known as CASPR2), all members of the neurexin superfamily of transmembrane molecules, have been implicated in neuropsychiatric disorders. However, their loss leads to deficits that have been best characterized with regard to their effect on excitatory cells. Notably, other disease-associated genes such as BDNF and ERBB4 implicate specific interneuron synapses in psychiatric disorders. Consistent with this, cortical interneuron dysfunction has been linked to epilepsy, schizophrenia and autism. Using a microarray screen that focused upon synapse-associated molecules, we identified Cntnap4 (contactin associated protein-like 4, also known as Caspr4) as highly enriched in developing murine interneurons. In this study we show that Cntnap4 is localized presynaptically and its loss leads to a reduction in the output of cortical parvalbumin (PV)-positive GABAergic (γ-aminobutyric acid producing) basket cells. Paradoxically, the loss of Cntnap4 augments midbrain dopaminergic release in the nucleus accumbens. In Cntnap4 mutant mice, synaptic defects in these disease-relevant neuronal populations are mirrored by sensory-motor gating and grooming endophenotypes; these symptoms could be pharmacologically reversed, providing promise for therapeutic intervention in psychiatric disorders."	"Mutation screening of the neurexin 1 gene in thai patients with intellectual disability and autism spectrum disorder. Neurexin 1 has two major protein isoforms using alternative promoters, coding for the alpha-neurexin 1 (α-NRXN1) and beta-neurexin 1 (β-NRXN1) genes. This study is to explore the possibility that variants of the NRXN1 gene predispose to intellectual disability (ID) and autism spectrum disorder (ASD). The coding regions in 24 exons and exon-intron boundaries of the NRXN1 gene were investigated in 115 Thai patients with ID and ASD by direct DNA sequencing. Nine novel variants of the NRXN1 gene were identified. Four novel variants were found in the β-NRXN1 gene, one variant of six GGC repeats in exon 1, and three variants at the 5'UTR. Five novel variants were identified in the α-NRXN1 gene, four intronic variants and one missense variant in exon 14 (c.2713T&gt;A or p.F905I). Mutation screening of the NRXN1gene in patients with ID and ASD may be useful to identify potential variants predisposing to ID and ASD. However, further studies utilizing protein functional analysis of the novel variants are required for a more definite conclusion."	"Copy number variant study of bipolar disorder in Canadian and UK populations implicates synaptic genes. Genome-wide single nucleotide polymorphism (SNP) data from 936 bipolar disorder (BD) individuals and 940 psychiatrically healthy comparison individuals of North European descent were analyzed for copy number variation (CNV). Using multiple CNV calling algorithms, and validating using in vitro molecular analyses, we identified CNVs implicating several candidate genes that encode synaptic proteins, such as DLG1, DLG2, DPP6, NRXN1, NRXN2, NRXN3, SHANK2, and EPHA5, as well as the neuronal splicing regulator RBFOX1 (A2BP1), and neuronal cell adhesion molecule CHL1. We have also identified recurrent CNVs on 15q13.3 and 16p11.2-regions previously reported as risk loci for neuropsychiatric disorders. In addition, we performed CNV analysis of individuals from 215 BD trios and identified de novo CNVs involving the NRXN1 and DRD5 genes. Our study provides further evidence of the occasional involvement of genomic mutations in the etiology of BD, however, there is no evidence of an increased burden of CNVs in BD. Further, the identification of CNVs at multiple members of the neurexin gene family in BD individuals, supports the role of synaptic disruption in the etiology of BD."	"Incomplete penetrance of NRXN1 deletions in families with schizophrenia. Neurexin 1 (NRXN1) is a presynaptic neuronal adhesion molecule that interacts with postsynaptic neuroligins in both glutamatergic and GABAergic synapses and is important in synaptic formation and function. NRXN1 deletions increase the risk of schizophrenia, so our aims were to explore this in our family sample, to distinguish de novo from inherited mutations, to examine transmission to affected and unaffected siblings and to estimate penetrance. We performed copy number analyses in NRXN1 using data from Illumina BeadArrays from 635 subjects with schizophrenia (276 in genotyped families), 487 of their unaffected parents and 309 unaffected siblings as well as 635 normal controls, all from the CBDB/NIMH Genetic Study of Schizophrenia. Deletions called by software were confirmed by quantitative PCR and comparative genome hybridization. There were deletions in 15 individuals in 11 families, including de novo exonic deletions in one case and one unaffected sibling. We observed no deletions in controls, 7 deletions in cases (1.10%), and an unexpectedly high deletion frequency in parents (n=5, 1.02%) and siblings (n=3, 0.97%). Three families showed inheritance from an unaffected parent, and in two families an unaffected parent did not transmit to the affected offspring. Thus we have added to the evidence that NRXN1 deletions are more frequent in patients with schizophrenia than in healthy individuals. However, the presence of de novo deletions in unaffected relatives and transmission from and to unaffected family members demonstrated that while the deletions may well have been necessary for some carriers to develop schizophrenia, they were not always sufficient. "	"Systematic prioritization and integrative analysis of copy number variations in schizophrenia reveal key schizophrenia susceptibility genes. Schizophrenia is a common mental disorder with high heritability and strong genetic heterogeneity. Common disease-common variants hypothesis predicts that schizophrenia is attributable in part to common genetic variants. However, recent studies have clearly demonstrated that copy number variations (CNVs) also play pivotal roles in schizophrenia susceptibility and explain a proportion of missing heritability. Though numerous CNVs have been identified, many of the regions affected by CNVs show poor overlapping among different studies, and it is not known whether the genes disrupted by CNVs contribute to the risk of schizophrenia. By using cumulative scoring, we systematically prioritized the genes affected by CNVs in schizophrenia. We identified 8 top genes that are frequently disrupted by CNVs, including NRXN1, CHRNA7, BCL9, CYFIP1, GJA8, NDE1, SNAP29, and GJA5. Integration of genes affected by CNVs with known schizophrenia susceptibility genes (from previous genetic linkage and association studies) reveals that many genes disrupted by CNVs are also associated with schizophrenia. Further protein-protein interaction (PPI) analysis indicates that protein products of genes affected by CNVs frequently interact with known schizophrenia-associated proteins. Finally, systematic integration of CNVs prioritization data with genetic association and PPI data identifies key schizophrenia candidate genes. Our results provide a global overview of genes impacted by CNVs in schizophrenia and reveal a densely interconnected molecular network of de novo CNVs in schizophrenia. Though the prioritized top genes represent promising schizophrenia risk genes, further work with different prioritization methods and independent samples is needed to confirm these findings. Nevertheless, the identified key candidate genes may have important roles in the pathogenesis of schizophrenia, and further functional characterization of these genes may provide pivotal targets for future therapeutics and diagnostics. "	"Identification of candidate single-nucleotide polymorphisms in NRXN1 related to antipsychotic treatment response in patients with schizophrenia. Neurexins are presynaptic neuronal adhesion molecules that interact with postsynaptic neuroligins to form an inter-synaptic complex required for synaptic specification and efficient neurotransmission. Deletions and point mutations in the neurexin 1 (NRXN1) gene are associated with a broad spectrum of neuropsychiatric and neurodevelopmental disorders, including autism, intellectual disability, epilepsy, developmental delay, and schizophrenia. Recently, small nucleotide polymorphisms in NRXN1 have been associated with antipsychotic drug response in patients with schizophrenia. Based on previous suggestive evidence of an impact on clozapine response in patients with schizophrenia, we conducted an association study of NRXN1 polymorphisms (rs12467557 and rs10490162) with antipsychotic treatment response in 54 patients with schizophrenia in a double blind, placebo-controlled NIMH inpatient crossover trial and examined for association with risk for schizophrenia in independent case-control and family-based clinical cohorts. Pharmacogenetic analysis in the placebo controlled trial revealed significant association of rs12467557and rs10490162 with drug response, whereby individuals homozygous for the A allele, at either SNP, showed significant improvement in positive symptoms, general psychopathology, thought disturbance, and negative symptoms, whereas patients carrying the G allele showed no overall response. Although we did not find evidence of the same NRXN1 SNPs being associated with results of the NIMH sponsored CATIE trial, other SNPs showed weakly positive signals. The family and case-control analyses for schizophrenia risk were negative. Our results provide confirmatory evidence of genetically determined differences in drug response in patients with schizophrenia related to NRXN1 variation. Furthermore, these findings potentially implicate NRXN1 in the therapeutic actions of antipsychotic drugs. "	"Etiological yield of SNP microarrays in idiopathic intellectual disability. Intellectual disability (ID) has a prevalence of 3% and is classified according to its severity. An underlying etiology cannot be determined in 75-80% in mild ID, and in 20-50% of severe ID. After it has been shown that copy number variations involving short DNA segments may cause ID, genome-wide SNP microarrays are being used as a tool for detecting submicroscopic copy number changes and uniparental disomy. This study was performed to investigate the presence of copy number changes in patients with ID of unidentified etiology. Affymetrix(®) 6.0 SNP microarray platform was used for analysis of 100 patients and their healthy parents, and data were evaluated using various databases and literature. Etiological diagnoses were made in 12 patients (12%). Homozygous deletion in NRXN1 gene and duplication in IL1RAPL1 gene were detected for the first time. Two separate patients had deletions in FOXP2 and UBE2A genes, respectively, for which only few patients have recently been reported. Interstitial and subtelomeric copy number changes were described in 6 patients, in whom routine cytogenetic tools revealed normal results. In one patient uniparental disomy type of Angelman syndrome was diagnosed. SNP microarrays constitute a screening test able to detect very small genomic changes, with a high etiological yield even in patients already evaluated using traditional cytogenetic tools, offer analysis for uniparental disomy and homozygosity, and thereby are helpful in finding novel disease-causing genes: for these reasons they should be considered as a first-tier genetic screening test in the evaluation of patients with ID and autism. "	"The genome-wide landscape of DNA methylation and hydroxymethylation in response to sleep deprivation impacts on synaptic plasticity genes. Sleep is critical for normal brain function and mental health. However, the molecular mechanisms mediating the impact of sleep loss on both cognition and the sleep electroencephalogram remain mostly unknown. Acute sleep loss impacts brain gene expression broadly. These data contributed to current hypotheses regarding the role for sleep in metabolism, synaptic plasticity and neuroprotection. These changes in gene expression likely underlie increased sleep intensity following sleep deprivation (SD). Here we tested the hypothesis that epigenetic mechanisms coordinate the gene expression response driven by SD. We found that SD altered the cortical genome-wide distribution of two major epigenetic marks: DNA methylation and hydroxymethylation. DNA methylation differences were enriched in gene pathways involved in neuritogenesis and synaptic plasticity, whereas large changes (&gt;4000 sites) in hydroxymethylation where observed in genes linked to cytoskeleton, signaling and neurotransmission, which closely matches SD-dependent changes in the transcriptome. Moreover, this epigenetic remodeling applied to elements previously linked to sleep need (for example, Arc and Egr1) and synaptic partners of Neuroligin-1 (Nlgn1; for example, Dlg4, Nrxn1 and Nlgn3), which we recently identified as a regulator of sleep intensity following SD. We show here that Nlgn1 mutant mice display an enhanced slow-wave slope during non-rapid eye movement sleep following SD but this mutation does not affect SD-dependent changes in gene expression, suggesting that the Nlgn pathway acts downstream to mechanisms triggering gene expression changes in SD. These data reveal that acute SD reprograms the epigenetic landscape, providing a unique molecular route by which sleep can impact brain function and health. "	"Copy number variants and therapeutic response to antidepressant medication in major depressive disorder. It would be beneficial to find genetic predictors of antidepressant response to help personalise treatment of major depressive disorder (MDD). Rare copy number variants (CNVs) have been implicated in several psychiatric disorders, including MDD, but their role in antidepressant response has yet to be investigated. CNV data were available for 1565 individuals with MDD from the NEWMEDS (Novel Methods leading to New Medications in Depression and Schizophrenia) consortium with prospective data on treatment outcome with either a serotonergic or noradrenergic antidepressant. No association was seen between the presence of CNV (rare or common), the overall number of CNVs or genomic CNV 'burden' and antidepressant response. Specific CNVs were nominally associated with antidepressant response, including 15q13.3 duplications and exonic NRXN1 deletions. These were associated with poor response to antidepressants. Overall burden of CNVs is unlikely to contribute to personalising antidepressant treatment. Specific CNVs associated with antidepressant treatment require replication and further study to confirm their role in the therapeutic action of antidepressant. "	"A complex microcephaly syndrome in a Pakistani family associated with a novel missense mutation in RBBP8 and a heterozygous deletion in NRXN1. We report on a consanguineous Pakistani family with a severe congenital microcephaly syndrome resembling the Seckel syndrome and Jawad syndrome. The affected individuals in this family were born to consanguineous parents of whom the mother presented with mild intellectual disability (ID), epilepsy and diabetes mellitus. The two living affected brothers presented with microcephaly, white matter disease of the brain, hyponychia, dysmorphic facial features with synophrys, epilepsy, diabetes mellitus and ID. Genotyping with a 250K SNP array in both affected brothers revealed an 18 MB homozygous region on chromosome 18 p11.21-q12.1 encompassing the SCKL2 locus of the Seckel and Jawad syndromes. Sequencing of the RBBP8 gene, underlying the Seckel and Jawad syndromes, identified the novel mutation c.919A&gt;G, p.Arg307Gly, segregating in a recessive manner in the family. In addition, in the two affected brothers and their mother we have also found a heterozygous 607kb deletion, encompassing exons 13-19 of NRXN1. Bidirectional sequencing of the coding exons of NRXN1 did not reveal any other mutation on the other allele. It thus appears that the phenotype of the mildly affected mother can be explained by the NRXN1 deletion, whereas the more severe and complex microcephalic phenotype of the two affected brothers is due to the simultaneous deletion in NRXN1 and the homozygous missense mutation affecting RBBP8."	"Analysis of changes in transcription start site distribution by a classification approach. Change in transcription start site (TSS) usage is an important mechanism for the control of transcription process, and has a significant effect on the isoforms being transcribed. One of the goals in the study of TSS is the understanding of how and why their usage differs in different tissues or under different conditions. In light of recent efforts in the mapping of transcription start site landscape using high-throughput sequencing approaches, a quantitative and automated method is needed to process all the data that are being produced. In this work we propose a statistical approach that will classify changes in TSS distribution between different samples into several categories of changes that may have biological significance. Genes selected by the classifiers can then be analyzed together with additional supporting data to determine their biological significance. We use a set of time-course TSS data from mouse dendritic cells stimulated with lipopolysaccharide (LPS) to demonstrate the usefulness of our method. "	"Ohnologs are overrepresented in pathogenic copy number mutations. A number of rare copy number variants (CNVs), including both deletions and duplications, have been associated with developmental disorders, including schizophrenia, autism, intellectual disability, and epilepsy. Pathogenicity may derive from dosage sensitivity of one or more genes contained within the CNV locus. To understand pathophysiology, the specific disease-causing gene(s) within each CNV need to be identified. In the present study, we test the hypothesis that ohnologs (genes retained after ancestral whole-genome duplication events, which are frequently dosage sensitive) are overrepresented in pathogenic CNVs. We selected three sets of genes implicated in copy number pathogenicity: (i) genes mapping within rare disease-associated CNVs, (ii) genes within de novo CNVs under negative genetic selection, and (iii) genes identified by clinical array comparative genome hybridization studies as potentially pathogenic. We compared the proportion of ohnologs between these gene sets and control genes, mapping to CNVs not known to be disease associated. We found that ohnologs are significantly overrepresented in genes mapping to pathogenic CNVs, irrespective of how CNVs were identified, with over 90% containing an ohnolog, compared with control CNVs &gt;100 kb, where only about 30% contained an ohnolog. In some CNVs, such as del15p11.2 (CYFIP1) and dup/del16p13.11 (NDE1), the most plausible prior candidate gene was also an ohnolog, as were the genes VIPR2 and NRXN1, each found in short CNVs containing no other genes. Our results support the hypothesis that ohnologs represent critical dosage-sensitive elements of the genome, possibly responsible for some of the deleterious phenotypes observed for pathogenic CNVs and as such are readily identifiable candidate genes for further study. "	"[Genome-wide copy number scan in Chinese patients with premature ovarian failure]. To investigate genetic causes in Chinese women with primary ovarian insufficiency (POI) for Genome-wide copy number variations (CNVs), focusing on novel autosomal microdeletions and microduplications. Genome-wide CNVs analysis using Affymetrix SNP 6.0 array was carried out in 30 Chinese POI subjects. And quantitative PCR (qPCR) was further performed for selected coding regions with microdeletions and microduplications in 30 POI subjects and another 40 POI cases. A total of 101 CNVs were identified by SNP arrays, ranging in size from 0.1 MB to 5.6 MB. These CNVs included 8 novel microduplications and 12 novel microdeletions. Then 4 microdeletions identified in chromosomal regions (10q26.12, 10q26.3, 2p16.3, and 6p26) and 2 microduplications which contained the coding regions (20p12.3 and 7p22.2) were verified by qPCR. We report the high-resolution rare CNV analysis, revealing novel microdeletions/microduplications in Chinese POI patients. In the selected verified coding regions, we find that the five genes including SYCE1, CYP2E1, NRXN1, PARK2 and CARD11 may be involved in reproduction, thus representing potential candidate genes in POI."	"Sequence analysis of 17 NRXN1 deletions. Genome instability plays fundamental roles in human evolution and phenotypic variation within our population. This instability leads to genomic rearrangements that are involved in a wide variety of human disorders, including congenital and neurodevelopmental disorders, and cancers. Insight into the molecular mechanisms governing such genomic rearrangements may increase our understanding of disease pathology and evolutionary processes. Here we analyse 17 carriers of non-recurrent deletions in the NRXN1 gene, which have been associated with neurodevelopmental disorders, e.g. schizophrenia, autism and epilepsies. 17 non-recurrent NRXN1 deletions identified by GWA were sequenced to map the breakpoints of each. Meme … etc. was used to identify shared patterns between the deletions and compare these were previously studies on non-recurrent deletions. We discovered two novel sequence motifs shared between all 17 NRXN1 deletions and a significantly higher AT nucleotide content at the breakpoints, compared to the overall nucleotide content on chromosome 2. We found different alteration of sequence at the breakpoint; small insertions and duplications giving rise to short microhomology sequences. No single mechanism seems to be implicated in the deletion events, but the results suggest that NHEJ, FoSTeS or MMBIR is implicated. The two novel sequence motifs together with a high AT content in all in NRXN1 deletions may lead to increased instability leading to a increase susceptibility to a single stranded structures. This favours potentially repaired by NHEJ mechanism of double strand breaks or may leading to replication errors. © 2013 Wiley Periodicals, Inc."	"Analysis of copy number variations at 15 schizophrenia-associated loci. A number of copy number variants (CNVs) have been suggested as susceptibility factors for schizophrenia. For some of these the data remain equivocal, and the frequency in individuals with schizophrenia is uncertain. To determine the contribution of CNVs at 15 schizophrenia-associated loci (a) using a large new data-set of patients with schizophrenia (n = 6882) and controls (n = 6316), and (b) combining our results with those from previous studies. We used Illumina microarrays to analyse our data. Analyses were restricted to 520 766 probes common to all arrays used in the different data-sets. We found higher rates in participants with schizophrenia than in controls for 13 of the 15 previously implicated CNVs. Six were nominally significantly associated (P&lt;0.05) in this new data-set: deletions at 1q21.1, NRXN1, 15q11.2 and 22q11.2 and duplications at 16p11.2 and the Angelman/Prader-Willi Syndrome (AS/PWS) region. All eight AS/PWS duplications in patients were of maternal origin. When combined with published data, 11 of the 15 loci showed highly significant evidence for association with schizophrenia (P&lt;4.1×10(-4)). We strengthen the support for the majority of the previously implicated CNVs in schizophrenia. About 2.5% of patients with schizophrenia and 0.9% of controls carry a large, detectable CNV at one of these loci. Routine CNV screening may be clinically appropriate given the high rate of known deleterious mutations in the disorder and the comorbidity associated with these heritable mutations."	"New findings in the genetics of schizophrenia. New findings in schizophrenia genetics are based on genome-wide association studies (GWAS), research into DNA copy number variations (CNVs), and endophenotypes. More than 70 genes have recently been suspected to be involved in the genetic background of schizophrenia based on the GWAS´s results. They are typically related to neurodevelopment/neuroplasticity, immunology and neuroendocrinology. Nevertheless, for many detected genes their possible relationship to schizophrenia etiopathogenesis is still unknown. The CNVs at genome loci 1q21.1 (candidate gene e.g., PRKAB2), 2p16.3 (candidate gene e.g., NRXN1), 3q29 (candidate genes e.g., BDH1, DLG1, PAK2 or TFRC), 15q11.2 (candidate gene e.g., CYFIP1), 15q13.3 (candidate gene e.g., CHRNA7), 16p13.1 (candidate genes e.g.,NTAN1 or NDE1) and 22q11.2 (candidate genes e.g., COMT, GSTT2 or PRODH) were associated with schizophrenia most frequently. Genetic research of schizophrenia endophenotypes, usually neurophysiological, neuromotoric, neurocognitive, neuroanatomical, neurological or personality-related, will help us to discover the role of relevant genes in the pathogenesis of schizophrenia. It is also necessary to integrate knowledge from other research platforms in schizophrenia, like epigenetics, studies of gene-environment interactions, transcriptomics, proteomics, metabolomics, neuroimaging and psychopathology. A better knowledge of the genetic background of schizophrenia can lead to changes in the treatment, prevention and genetic counselling. It may also reduce stigma in this severe mental disorder. "	"Single exon-resolution targeted chromosomal microarray analysis of known and candidate intellectual disability genes. Intellectual disability affects about 3% of individuals globally, with∼50% idiopathic. We designed an exonic-resolution array targeting all known submicroscopic chromosomal intellectual disability syndrome loci, causative genes for intellectual disability, and potential candidate genes, all genes encoding glutamate receptors and epigenetic regulators. Using this platform, we performed chromosomal microarray analysis on 165 intellectual disability trios (affected child and both normal parents). We identified and independently validated 36 de novo copy-number changes in 32 trios. In all, 67% of the validated events were intragenic, involving only exon 1 (which includes the promoter sequence according to our design), exon 1 and adjacent exons, or one or more exons excluding exon 1. Seventeen of the 36 copy-number variants involve genes known to cause intellectual disability. Eleven of these, including seven intragenic variants, are clearly pathogenic (involving STXBP1, SHANK3 (3 patients), IL1RAPL1, UBE2A, NRXN1, MEF2C, CHD7, 15q24 and 9p24 microdeletion), two are likely pathogenic (PI4KA, DCX), two are unlikely to be pathogenic (GRIK2, FREM2), and two are unclear (ARID1B, 15q22 microdeletion). Twelve individuals with genomic imbalances identified by our array were tested with a clinical microarray, and six had a normal result. We identified de novo copy-number variants within genes not previously implicated in intellectual disability and uncovered pathogenic variation of known intellectual disability genes below the detection limit of standard clinical diagnostic chromosomal microarray analysis. "	"Impaired hippocampal neuroligin-2 function by chronic stress or synthetic peptide treatment is linked to social deficits and increased aggression. Neuroligins (NLGNs) are cell adhesion molecules that are important for proper synaptic formation and functioning, and are critical regulators of the balance between neural excitation/inhibition (E/I). Mutations in NLGNs have been linked to psychiatric disorders in humans involving social dysfunction and are related to similar abnormalities in animal models. Chronic stress increases the likelihood for affective disorders and has been shown to induce changes in neural structure and function in different brain regions, with the hippocampus being highly vulnerable to stress. Previous studies have shown evidence of chronic stress-induced changes in the neural E/I balance in the hippocampus. Therefore, we hypothesized that chronic restraint stress would lead to reduced hippocampal NLGN-2 levels, in association with alterations in social behavior. We found that rats submitted to chronic restraint stress in adulthood display reduced sociability and increased aggression. This occurs along with a reduction of NLGN-2, but not NLGN-1 expression (as shown with western blot, immunohistochemistry, and electron microscopy analyses), throughout the hippocampus and detectable in different layers of the CA1, CA3, and DG subfields. Furthermore, using synthetic peptides that comprise sequences in either NLGN-1 (neurolide-1) or NLGN-2 (neurolide-2) involved in the interaction with their presynaptic partner neurexin (NRXN)-1, intra-hippocampal administration of neurolide-2 led also to reduced sociability and increased aggression. These results highlight hippocampal NLGN-2 as a key molecular substrate regulating social behaviors and underscore NLGNs as promising targets for the development of novel drugs for the treatment of dysfunctional social behaviors. "	"Role for the neurexin-neuroligin complex in Alzheimer's disease. Synaptic damage is a critical hallmark of Alzheimer's disease, and the best correlate with cognitive impairment ante mortem. Synapses, the loci of communication between neurons, are characterized by signature protein combinations arrayed at tightly apposed pre- and post-synaptic sites. The most widely studied trans-synaptic junctional complexes, which direct synaptogenesis and foster the maintenance and stability of the mature terminal, are conjunctions of presynaptic neurexins and postsynaptic neuroligins. Fluctuations in the levels of neuroligins and neurexins can sway the balance between excitatory and inhibitory neurotransmission in the brain, and could lead to damage of synapses and dendrites. This review summarizes current understanding of the roles of neurexins and neuroligins proteolytic processing in synaptic plasticity in the human brain, and outlines their possible roles in β-amyloid metabolism and function, which are central pathogenic events in Alzheimer's disease progression. "	"A genome-wide survey of transgenerational genetic effects in autism. Effects of parental genotype or parent-offspring genetic interaction are well established in model organisms for a variety of traits. However, these transgenerational genetic models are rarely studied in humans. We have utilized an autism case-control study with 735 mother-child pairs to perform genome-wide screening for maternal genetic effects and maternal-offspring genetic interaction. We used simple models of single locus parent-child interaction and identified suggestive results (P&lt;10(-4)) that cannot be explained by main effects, but no genome-wide significant signals. Some of these maternal and maternal-child associations were in or adjacent to autism candidate genes including: PCDH9, FOXP1, GABRB3, NRXN1, RELN, MACROD2, FHIT, RORA, CNTN4, CNTNAP2, FAM135B, LAMA1, NFIA, NLGN4X, RAPGEF4, and SDK1. We attempted validation of potential autism association under maternal-specific models using maternal-paternal comparison in family-based GWAS datasets. Our results suggest that further study of parental genetic effects and parent-child interaction in autism is warranted. "	"Chromosomal microarray analysis of consecutive individuals with autism spectrum disorders or learning disability presenting for genetic services. Chromosomal microarray analysis is now commonly used in clinical practice to identify copy number variants (CNVs) in the human genome. We report our experience with the use of the 105 K and 180K oligonucleotide microarrays in 215 consecutive patients referred with either autism or autism spectrum disorders (ASD) or developmental delay/learning disability for genetic services at the University of Kansas Medical Center during the past 4 years (2009-2012). Of the 215 patients [140 males and 75 females (male/female ratio=1.87); 65 with ASD and 150 with learning disability], abnormal microarray results were seen in 45 individuals (21%) with a total of 49 CNVs. Of these findings, 32 represented a known diagnostic CNV contributing to the clinical presentation and 17 represented non-diagnostic CNVs (variants of unknown significance). Thirteen patients with ASD had a total of 14 CNVs, 6 CNVs recognized as diagnostic and 8 as non-diagnostic. The most common chromosome involved in the ASD group was chromosome 15. For those with a learning disability, 32 patients had a total of 35 CNVs. Twenty-six of the 35 CNVs were classified as a known diagnostic CNV, usually a deletion (n=20). Nine CNVs were classified as an unknown non-diagnostic CNV, usually a duplication (n=8). For the learning disability subgroup, chromosomes 2 and 22 were most involved. Thirteen out of 65 patients (20%) with ASD had a CNV compared with 32 out of 150 patients (21%) with a learning disability. The frequency of chromosomal microarray abnormalities compared by subject group or gender was not statistically different. A higher percentage of individuals with a learning disability had clinical findings of seizures, dysmorphic features and microcephaly, but not statistically significant. While both groups contained more males than females, a significantly higher percentage of males were present in the ASD group."	"The specific α-neurexin interactor calsyntenin-3 promotes excitatory and inhibitory synapse development. Perturbations of cell surface synapse-organizing proteins, particularly α-neurexins, contribute to neurodevelopmental and psychiatric disorders. From an unbiased screen, we identify calsyntenin-3 (alcadein-β) as a synapse-organizing protein unique in binding and recruiting α-neurexins, but not β-neurexins. Calsyntenin-3 is present in many pyramidal neurons throughout cortex and hippocampus but is most highly expressed in interneurons. The transmembrane form of calsyntenin-3 can trigger excitatory and inhibitory presynapse differentiation in contacting axons. However, calsyntenin-3-shed ectodomain, which represents about half the calsyntenin-3 pool in brain, suppresses the ability of multiple α-neurexin partners including neuroligin 2 and LRRTM2 to induce presynapse differentiation. Clstn3⁻/⁻ mice show reductions in excitatory and inhibitory synapse density by confocal and electron microscopy and corresponding deficits in synaptic transmission. These results identify calsyntenin-3 as an α-neurexin-specific binding partner required for normal functional GABAergic and glutamatergic synapse development."	"Neurexins. The neurexin family of cell adhesion proteins consists of three members in vertebrates and has homologs in several invertebrate species. In mammals, each neurexin gene encodes an α-neurexin in which the extracellular portion is long, and a β-neurexin in which the extracellular portion is short. As a result of alternative splicing, both major isoforms can be transcribed in many variants, contributing to distinct structural domains and variability. Neurexins act predominantly at the presynaptic terminal in neurons and play essential roles in neurotransmission and differentiation of synapses. Some of these functions require the formation of trans-synaptic complexes with postsynaptic proteins such as neuroligins, LRRTM proteins or cerebellin. In addition, rare mutations and copy-number variations of human neurexin genes have been linked to autism and schizophrenia, indicating that impairments of synaptic function sustained by neurexins and their binding partners maybe relevant to the pathomechanism of these debilitating diseases."	"Rare variants analysis of neurexin-1β in autism reveals a novel start codon mutation affecting protein levels at synapses. Neurexins are synaptic plasma membrane proteins encoded by three genes (NRXN1, -2, -3) with alternative promoters. Mutations in neurexin genes have been identified in different neurodevelopmental disorders, including autism. Recently, two point mutations altering the translation initiation site of NRXN1β (c.-3G&gt;T and c.3G&gt;T) have been described in patients with autism and mental retardation. In this study, we analyzed the NRXN1β gene in a sample of 153 patients with autism. We report the identification of a novel mutation, c.3G&gt;A (p.Met1), affecting the translation initiation site. Expression analysis showed that the c.3G&gt;A mutation switches the translation start site of NRXN1β to an in-frame downstream methionine and decreases synaptic levels of the mutant protein in cultured neurons. These data reinforce a role for synaptic defects of NRXN1β in neurodevelopmental disorders. "	"Transforming growth factor-β1 primes proliferating adult neural progenitor cells to electrophysiological functionality. The differentiation of adult neural progenitors (NPCs) into functional neurons is still a limiting factor in the neural stem cell field but mandatory for the potential use of NPCs in therapeutic approaches. Neuronal function requires the appropriate electrophysiological properties. Here, we demonstrate that priming of NPCs using transforming growth factor (TGF)-β1 under conditions that usually favor NPCs' proliferation induces electrophysiological neuronal properties in adult NPCs. Gene chip array analyses revealed upregulation of voltage-dependent ion channel subunits (Kcnd3, Scn1b, Cacng4, and Accn1), neurotransmitters, and synaptic proteins (Cadps, Snap25, Grik4, Gria3, Syngr3, and Gria4) as well as other neuronal proteins (doublecortin [DCX], Nrxn1, Sept8, and Als2cr3). Patch-clamp analysis demonstrated that control-treated cells expressed only voltage-dependent K(+) -channels of the delayed-rectifier type and the A-type channels. TGF-β1-treated cells possessed more negative resting potentials than nontreated cells owing to the presence of delayed-rectifier and inward-rectifier channels. Furthermore, TGF-β1-treated cells expressed voltage-dependent, TTX-sensitive Na(+) channels, which showed increasing current density with TGF-β1 treatment duration and voltage-dependent (+)BayK8644-sensitive L-Type Ca(2+) channels. In contrast to nontreated cells, TGF-β1-treated cells responded to current injections with action-potentials in the current-clamp mode. Furthermore, TGF-β1-treated cells responded to application of GABA with an increase in membrane conductance and showed spontaneous synaptic currents that were blocked by the GABA-receptor antagonist picrotoxine. Only NPCs, which were treated with TGF-β1, showed Na(+) channel currents, action potentials, and GABAergic currents. In summary, stimulation of NPCs by TGF-β1 fosters a functional neuronal phenotype, which will be of relevance for future cell replacement strategies in neurodegenerative diseases or acute CNS lesions."	"Membrane-tethered monomeric neurexin LNS-domain triggers synapse formation. Neurexins are presynaptic cell-adhesion molecules that bind to postsynaptic cell-adhesion molecules such as neuroligins and leucine-rich repeat transmembrane proteins (LRRTMs). When neuroligins or LRRTMs are expressed in a nonneuronal cell, cocultured neurons avidly form heterologous synapses onto that cell. Here we show that knockdown of all neurexins in cultured hippocampal mouse neurons did not impair synapse formation between neurons, but blocked heterologous synapse formation induced by neuroligin-1 or LRRTM2. Rescue experiments demonstrated that all neurexins tested restored heterologous synapse formation in neurexin-deficient neurons. Neurexin-deficient neurons exhibited a decrease in the levels of the PDZ-domain protein CASK (a calcium/calmodulin-activated serine/threonine kinase), which binds to neurexins, and mutation of the PDZ-domain binding sequence of neurexin-3β blocked its transport to the neuronal surface and impaired heterologous synapse formation. However, replacement of the C-terminal neurexin sequence with an unrelated PDZ-domain binding sequence that does not bind to CASK fully restored surface transport and heterologous synapse formation in neurexin-deficient neurons, suggesting that no particular PDZ-domain protein is essential for neurexin surface transport or heterologous synapse formation. Further mutagenesis revealed, moreover, that the entire neurexin cytoplasmic tail was dispensable for heterologous synapse formation in neurexin-deficient neurons, as long as the neurexin protein was transported to the neuronal cell surface. Furthermore, the single LNS-domain (for laminin/neurexin/sex hormone-binding globulin-domain) of neurexin-1β or neurexin-3β, when tethered to the presynaptic plasma membrane by a glycosylinositolphosphate anchor, was sufficient for rescuing heterologous synapse formation in neurexin-deficient neurons. Our data suggest that neurexins mediate heterologous synapse formation via an extracellular interaction with presynaptic and postsynaptic ligands without the need for signal transduction by the neurexin cytoplasmic tail. "	"Identification of candidate intergenic risk loci in autism spectrum disorder. Copy number variations (CNVs) and DNA sequence alterations affecting specific neuronal genes are established risk factors for Autism Spectrum Disorder (ASD). In what is largely considered a genetic condition, so far, these mutations account for ~20% of individuals having an ASD diagnosis. However, non-coding genomic sequence also contains functional elements introducing additional disease risk loci for investigation. We have performed genome-wide analyses and identified rare inherited CNVs affecting non-genic intervals in 41 of 1491 (3%) of ASD cases examined. Examples of such intergenic CNV regions include 16q21 and 2p16.3 near known ASD risk genes CDH8 and NRXN1 respectively, as well as novel loci contiguous with ZHX2, MOCS1, LRRC4C, SEMA3C, and other genes. Rare variants in intergenic regions may implicate new risk loci and genes in ASD and also present useful data for comparison with coming whole genome sequence datasets."	"Promoter-like sequences regulating transcriptional activity in neurexin and neuroligin genes. Synapse function requires the cell-adhesion molecules neurexins (Nrxn) and neuroligins (Nlgn). Although these molecules are essential for neurotransmission and prefer distinct isoform combinations for interaction, little is known about their transcriptional regulation. Here, we started to explore this important aspect because expression of Nrxn1-3 and Nlgn1-3 genes is altered in mice lacking the transcriptional regulator methyl-CpG-binding protein2 (MeCP2). Since MeCP2 can bind to methylated CpG-dinucleotides and Nrxn/Nlgn contain CpG-islands, we tested genomic sequences for transcriptional activity in reporter gene assays. We found that their influence on transcription are differentially activating or inhibiting. As we observed an activity difference between heterologous and neuronal cell lines for distinct Nrxn1 and Nlgn2 sequences, we dissected their putative promoter regions. In both genes, we identify regions in exon1 that can induce transcription, in addition to the alternative transcriptional start points in exon2. While the 5'-regions of Nrxn1 and Nlgn2 contain two CpG-rich elements that show distinct methylation frequency and binding to MeCP2, other regions may act independently of this transcriptional regulator. These data provide first insights into regulatory sequences of Nrxn and Nlgn genes that may represent an important aspect of their function at synapses in health and disease."	"Assembly of synapses: biomimetic assays to control neurexin/neuroligin interactions at the neuronal surface. The role of adhesion molecules in the assembly of synapses in the nervous system is an important issue. To characterize the role of neurexin/neuroligin adhesion complexes in synapse differentiation, various imaging assays can be performed in primary hippocampal cultures. First, to temporally control contact formation, biomimetic assays can be performed using microspheres coated with purified neurexin or with antibody clusters that aggregate neurexin. These models are combined with live fluorescence imaging to study the dynamics of accumulation of post-synaptic components, including scaffolding molecules and glutamate receptors. To demonstrate that AMPA receptors can be recruited to nascent neurexin/neuroligin contacts through lateral diffusion, the mobility of AMPA receptors in the neuronal membrane is monitored by tracking individual quantum dots (QDs) conjugated to antibodies against AMPA receptors. Experiments monitoring the attachment and detachment of Nrx-coated QDs to measure the rates of neurexin/neuroligin interaction can also be performed. Each of these assays is detailed in this unit."	"Detection of clinically relevant genetic variants in autism spectrum disorder by whole-genome sequencing. Autism Spectrum Disorder (ASD) demonstrates high heritability and familial clustering, yet the genetic causes remain only partially understood as a result of extensive clinical and genomic heterogeneity. Whole-genome sequencing (WGS) shows promise as a tool for identifying ASD risk genes as well as unreported mutations in known loci, but an assessment of its full utility in an ASD group has not been performed. We used WGS to examine 32 families with ASD to detect de novo or rare inherited genetic variants predicted to be deleterious (loss-of-function and damaging missense mutations). Among ASD probands, we identified deleterious de novo mutations in six of 32 (19%) families and X-linked or autosomal inherited alterations in ten of 32 (31%) families (some had combinations of mutations). The proportion of families identified with such putative mutations was larger than has been previously reported; this yield was in part due to the comprehensive and uniform coverage afforded by WGS. Deleterious variants were found in four unrecognized, nine known, and eight candidate ASD risk genes. Examples include CAPRIN1 and AFF2 (both linked to FMR1, which is involved in fragile X syndrome), VIP (involved in social-cognitive deficits), and other genes such as SCN2A and KCNQ2 (linked to epilepsy), NRXN1, and CHD7, which causes ASD-associated CHARGE syndrome. Taken together, these results suggest that WGS and thorough bioinformatic analyses for de novo and rare inherited mutations will improve the detection of genetic variants likely to be associated with ASD or its accompanying clinical symptoms. "	"Altered social behaviours in neurexin 1α knockout mice resemble core symptoms in neurodevelopmental disorders. Copy number variants have emerged as an important genomic cause of common, complex neurodevelopmental disorders. These usually change copy number of multiple genes, but deletions at 2p16.3, which have been associated with autism, schizophrenia and mental retardation, affect only the neurexin 1 gene, usually the alpha isoform. Previous analyses of neurexin 1α (Nrxn1α) knockout (KO) mouse as a model of these disorders have revealed impairments in synaptic transmission but failed to reveal defects in social behaviour, one of the core symptoms of autism. We performed a detailed investigation of the behavioural effects of Nrxn1α deletion in mice bred onto a pure genetic background (C57BL/6J) to gain a better understanding of its role in neurodevelopmental disorders. Wildtype, heterozygote and homozygote Nrxn1α KO male and female mice were tested in a battery of behavioural tests (n = 9-16 per genotype, per sex). In homozygous Nrxn1α KO mice, we observed altered social approach, reduced social investigation, and reduced locomotor activity in novel environments. In addition, male Nrxn1α KO mice demonstrated an increase in aggressive behaviours. These are the first experimental data that associate a deletion of Nrxn1α with alterations of social behaviour in mice. Since this represents one of the core symptom domains affected in autism spectrum disorders and schizophrenia in humans, our findings suggest that deletions within NRXN1 found in patients may be responsible for the impairments seen in social behaviours, and that the Nrxn1α KO mice are a useful model of human neurodevelopmental disorder."	"Transcriptome-wide analysis of TDP-43 binding small RNAs identifies miR-NID1 (miR-8485), a novel miRNA that represses NRXN1 expression. The Tar DNA-binding protein 43 (TARDBP, TDP-43) regulates RNA processing and miRNA biogenesis and is known to be involved in neurodegeneration. Messenger RNA (mRNA) targets of TDP-43 have recently been systematically identified, but small RNAs (sRNAs) bound by TDP-43 have not been studied in details. Here, we reexamine cross-linking, immunoprecipitation and sequencing (CLIP-seq) data, and identify pre-miRNAs, miRNAs and piRNAs bound by TDP-43 in human and mouse brains. Subsequent analysis of TDP-43 binding miRNAs suggests that target genes are enriched in functions involving synaptic activities. We further identify a novel miRNA (miR-NID1) processed from the intron 5 of human neurexin 1, NRXN1, and show that miR-NID1 represses NRXN1 expression by binding to TDP-43. Our results are in accordance with previously published data indicating TDP-43 through binding of specific miRNAs to play roles in neurodevelopmental activities and neurological disorders and further our understanding of TDP-43 function. "	"Genome-wide association study of lung cancer in Korean non-smoking women. Lung cancer in never-smokers ranks as the seventh most common cause of cancer death worldwide, and the incidence of lung cancer in non-smoking Korean women appears to be steadily increasing. To identify the effect of genetic polymorphisms on lung cancer risk in non-smoking Korean women, we conducted a genome-wide association study of Korean female non-smokers with lung cancer. We analyzed 440,794 genotype data of 285 cases and 1,455 controls, and nineteen SNPs were associated with lung cancer development (P &lt; 0.001). For external validation, nineteen SNPs were replicated in another sample set composed of 293 cases and 495 controls, and only rs10187911 on 2p16.3 was significantly associated with lung cancer development (dominant model, OR of TG or GG, 1.58, P = 0.025). We confirmed this SNP again in another replication set composed of 546 cases and 744 controls (recessive model, OR of GG, 1.32, P = 0.027). OR and P value in combined set were 1.37 and &lt; 0.001 in additive model, 1.51 and &lt; 0.001 in dominant model, and 1.54 and &lt; 0.001 in recessive model. The effect of this SNP was found to be consistent only in adenocarcinoma patients (1.36 and &lt; 0.001 in additive model, 1.49 and &lt; 0.001 in dominant model, and 1.54 and &lt; 0.001 in recessive model). Furthermore, after imputation with HapMap data, we found regional significance near rs10187911, and five SNPs showed P value less than that of rs10187911 (rs12478012, rs4377361, rs13005521, rs12475464, and rs7564130). Therefore, we concluded that a region on chromosome 2 is significantly associated with lung cancer risk in Korean non-smoking women."	"Human alpha- and beta-NRXN1 isoforms rescue behavioral impairments of Caenorhabditis elegans neurexin-deficient mutants. Neurexins are cell adhesion proteins that interact with neuroligin and other ligands at the synapse. In humans, mutations in neurexin or neuroligin genes have been associated with autism and other mental disorders. The human neurexin and neuroligin genes are orthologous to the Caenorhabditis elegans genes nrx-1 and nlg-1, respectively. Here we show that nrx-1-deficient mutants are defective in exploratory capacity, sinusoidal postural movements and gentle touch response. Interestingly, the exploratory behavioral phenotype observed in nrx-1 mutants was markedly different to nlg-1-deficient mutants; thus, while the former had a 'hyper-reversal' phenotype increasing the number of changes of direction with respect to the wild-type strain, the nlg-1 mutants presented a 'hypo-reversal' phenotype. On the other hand, the nrx-1- and nlg-1-defective mutants showed similar abnormal sinusoidal postural movement phenotypes. The response of these mutant strains to aldicarb (acetylcholinesterase inhibitor), levamisole (ACh agonist) and pentylenetetrazole [gamma-aminobutyric (GABA) receptor antagonist], suggested that the varying behavioral phenotypes were caused by defects in ACh and/or GABA inputs. The defective behavioral phenotypes of nrx-1-deficient mutants were rescued in transgenic strains expressing either human alpha- or beta-NRXN-1 isoforms under the worm nrx-1 promoter. A previous report had shown that human and rat neuroligins were functional in C. elegans. Together, these results suggest that the functional mechanism underpinning both neuroligin and neurexin in the nematode are comparable to human. In this sense the nematode might constitute a simple in vivo model for understanding basic mechanisms involved in neurological diseases for which neuroligin and neurexin are implicated in having a role."	"The tissue-specific RNA binding protein T-STAR controls regional splicing patterns of neurexin pre-mRNAs in the brain. The RNA binding protein T-STAR was created following a gene triplication 520-610 million years ago, which also produced its two parologs Sam68 and SLM-1. Here we have created a T-STAR null mouse to identify the endogenous functions of this RNA binding protein. Mice null for T-STAR developed normally and were fertile, surprisingly, given the high expression of T-STAR in the testis and the brain, and the known infertility and pleiotropic defects of Sam68 null mice. Using a transcriptome-wide search for splicing targets in the adult brain, we identified T-STAR protein as a potent splicing repressor of the alternatively spliced segment 4 (AS4) exons from each of the Neurexin1-3 genes, and exon 23 of the Stxbp5l gene. T-STAR protein was most highly concentrated in forebrain-derived structures like the hippocampus, which also showed maximal Neurexin1-3 AS4 splicing repression. In the absence of endogenous T-STAR protein, Nrxn1-3 AS4 splicing repression dramatically decreased, despite physiological co-expression of Sam68. In transfected cells Neurexin3 AS4 alternative splicing was regulated by either T-STAR or Sam68 proteins. In contrast, Neurexin2 AS4 splicing was only regulated by T-STAR, through a UWAA-rich response element immediately downstream of the regulated exon conserved since the radiation of bony vertebrates. The AS4 exons in the Nrxn1 and Nrxn3 genes were also associated with distinct patterns of conserved UWAA repeats. Consistent with an ancient mechanism of splicing control, human T-STAR protein was able to repress splicing inclusion of the zebrafish Nrxn3 AS4 exon. Although Neurexin1-3 and Stxbp5l encode critical synaptic proteins, T-STAR null mice had no detectable spatial memory deficits, despite an almost complete absence of AS4 splicing repression in the hippocampus. Our work identifies T-STAR as an ancient and potent tissue-specific splicing regulator that uses a concentration-dependent mechanism to co-ordinately regulate regional splicing patterns of the Neurexin1-3 AS4 exons in the mouse brain."	"Functional impacts of NRXN1 knockdown on neurodevelopment in stem cell models. Exonic deletions in NRXN1 have been associated with several neurodevelopmental disorders, including autism, schizophrenia and developmental delay. However, the molecular mechanism by which NRXN1 deletions impact neurodevelopment remains unclear. Here we used human induced pluripotent stem cells (hiPSCs) and human embryonic stem cells (hESCs) as models to investigate the functional impacts of NRXN1 knockdown. We first generated hiPSCs from skin fibroblasts and differentiated them into neural stem cells (NSCs). We reduced NRXN1 expression in NSCs via a controlled shRNAmir-based knockdown system during differentiation, and monitored the transcriptome alteration by RNA-Seq and quantitative PCR at several time points. Interestingly, half reduction of NRXN1 expression resulted in changes of expression levels for the cell adhesion pathway (20 genes, P = 2.8×10(-6)) and neuron differentiation pathway (13 genes, P = 2.1×10(-4)), implicating that single-gene perturbation can impact biological networks important for neurodevelopment. Furthermore, astrocyte marker GFAP was significantly reduced in a time dependent manner that correlated with NRXN1 reduction. This observation was reproduced in both hiPSCs and hESCs. In summary, based on in vitro models, NRXN1 deletions impact several biological processes during neurodevelopment, including synaptic adhesion and neuron differentiation. Our study highlights the utility of stem cell models in understanding the functional roles of copy number variations (CNVs) in conferring susceptibility to neurodevelopmental diseases."	"CNV analysis in Tourette syndrome implicates large genomic rearrangements in COL8A1 and NRXN1. Tourette syndrome (TS) is a neuropsychiatric disorder with a strong genetic component. However, the genetic architecture of TS remains uncertain. Copy number variation (CNV) has been shown to contribute to the genetic make-up of several neurodevelopmental conditions, including schizophrenia and autism. Here we describe CNV calls using SNP chip genotype data from an initial sample of 210 TS cases and 285 controls ascertained in two Latin American populations. After extensive quality control, we found that cases (N = 179) have a significant excess (P = 0.006) of large CNV (&gt;500 kb) calls compared to controls (N = 234). Amongst 24 large CNVs seen only in the cases, we observed four duplications of the COL8A1 gene region. We also found two cases with ∼400 kb deletions involving NRXN1, a gene previously implicated in neurodevelopmental disorders, including TS. Follow-up using multiplex ligation-dependent probe amplification (and including 53 more TS cases) validated the CNV calls and identified additional patients with rearrangements in COL8A1 and NRXN1, but none in controls. Examination of available parents indicates that two out of three NRXN1 deletions detected in the TS cases are de-novo mutations. Our results are consistent with the proposal that rare CNVs play a role in TS aetiology and suggest a possible role for rearrangements in the COL8A1 and NRXN1 gene regions."	"Molecular and clinical characterization of 25 individuals with exonic deletions of NRXN1 and comprehensive review of the literature. This study aimed to elucidate the observed variable phenotypic expressivity associated with NRXN1 (Neurexin 1) haploinsufficiency by analyses of the largest cohort of patients with NRXN1 exonic deletions described to date and by comprehensively reviewing all comparable copy number variants in all disease cohorts that have been published in the peer reviewed literature (30 separate papers in all). Assessment of the clinical details in 25 previously undescribed individuals with NRXN1 exonic deletions demonstrated recurrent phenotypic features consisting of moderate to severe intellectual disability (91%), severe language delay (81%), autism spectrum disorder (65%), seizures (43%), and hypotonia (38%). These showed considerable overlap with previously reported NRXN1-deletion associated phenotypes in terms of both spectrum and frequency. However, we did not find evidence for an association between deletions involving the β-isoform of neurexin-1 and increased head size, as was recently published in four cases with a deletion involving the C-terminus of NRXN1. We identified additional rare copy number variants in 20% of cases. This study supports a pathogenic role for heterozygous exonic deletions of NRXN1 in neurodevelopmental disorders. The additional rare copy number variants identified may act as possible phenotypic modifiers as suggested in a recent digenic model of neurodevelopmental disorders."	"Identification of rare copy number variants in high burden schizophrenia families. Over the last years, genome-wide studies consistently showed an increased burden of rare copy number variants (CNVs) in schizophrenia patients, supporting the &quot;common disease, rare variant&quot; hypothesis in at least a subset of patients. We hypothesize that in families with a high burden of disease, and thus probably a high genetic load influencing disease susceptibility, rare CNVs might be involved in the etiology of schizophrenia. We performed a genome-wide CNV analysis in the index patients of eight families with multiple schizophrenia affected members, and consecutively performed a detailed family analysis for the most relevant CNVs. One index patient showed a DRD5 containing duplication. A second index patient presented with an NRXN1 containing deletion and two adjacent duplications containing MYT1L and SNTG2. Detailed analysis in the subsequent families showed segregation of the identified CNVs. With this study we show the importance of screening high burden families for rare CNVs, which will not only broaden our knowledge concerning the molecular genetic mechanisms involved in schizophrenia but also allow the use of the obtained genetic data to provide better clinical care to these families in general and to non-symptomatic causal CNV carriers in particular."	"Investigation of NRXN1 deletions: clinical and molecular characterization. Deletions at 2p16.3 involving exons of NRXN1 are associated with susceptibility for autism and schizophrenia, and similar deletions have been identified in individuals with developmental delay and dysmorphic features. We have identified 34 probands with exonic NRXN1 deletions following referral for clinical microarray-based comparative genomic hybridization. To more firmly establish the full phenotypic spectrum associated with exonic NRXN1 deletions, we report the clinical features of 27 individuals with NRXN1 deletions, who represent 23 of these 34 families. The frequency of exonic NRXN1 deletions among our postnatally diagnosed patients (0.11%) is significantly higher than the frequency among reported controls (0.02%; P = 6.08 × 10(-7) ), supporting a role for these deletions in the development of abnormal phenotypes. Generally, most individuals with NRXN1 exonic deletions have developmental delay (particularly speech), abnormal behaviors, and mild dysmorphic features. In our cohort, autism spectrum disorders were diagnosed in 43% (10/23), and 16% (4/25) had epilepsy. The presence of NRXN1 deletions in normal parents and siblings suggests reduced penetrance and/or variable expressivity, which may be influenced by genetic, environmental, and/or stochastic factors. The pathogenicity of these deletions may also be affected by the location of the deletion within the gene. Counseling should appropriately represent this spectrum of possibilities when discussing recurrence risks or expectations for a child found to have a deletion in NRXN1."	"Increased genome instability in human DNA segments with self-chains: homology-induced structural variations via replicative mechanisms. Environmental factors including ionizing radiation and chemical agents have been known to be able to induce DNA rearrangements and cause genomic structural variations (SVs); however, the roles of intrinsic characteristics of the human genome, such as regional genome architecture, in SV formation and the potential mechanisms underlying genomic instability remain to be further elucidated. Recently, locus-specific observations showed that 'self-chain' (SC), a group of short low-copy repeats (LCRs) in the human genome, can induce autism-associated SV mutations of the MECP2 and NRXN1 genes. In this study, we conducted a genome-wide analysis to investigate SCs and their potential roles in genomic SV formation. Utilizing a vast amount of human SV data, we observed a significant biased distribution of human germline SV breakpoints to SC regions. Notably, the breakpoint distribution pattern is different between SV types across deletion, duplication, inversion and insertion. Our observations were coincident with a mechanism of SC-induced DNA replicative errors, whereas SC may sporadically be used as substrates of nonallelic homologous recombination (NAHR). This contention was further supported by our consistent findings in somatic SV mutations of cancer genomes, suggesting a general mechanism of SC-induced genome instability in human germ and somatic cells."	"Molecular analysis of a deletion hotspot in the NRXN1 region reveals the involvement of short inverted repeats in deletion CNVs. NRXN1 microdeletions occur at a relatively high frequency and confer increased risk for neurodevelopmental and neurobehavioral abnormalities. The mechanism that makes NRXN1 a deletion hotspot is unknown. Here, we identified deletions of the NRXN1 region in affected cohorts, confirming a strong association with the autism spectrum and other neurodevelopmental disorders. Interestingly, deletions in both affected and control individuals were clustered in the 5' portion of NRXN1 and its immediate upstream region. To explore the mechanism of deletion, we mapped and analyzed the breakpoints of 32 deletions. At the deletion breakpoints, frequent microhomology (68.8%, 2-19 bp) suggested predominant mechanisms of DNA replication error and/or microhomology-mediated end-joining. Long terminal repeat (LTR) elements, unique non-B-DNA structures, and MEME-defined sequence motifs were significantly enriched, but Alu and LINE sequences were not. Importantly, small-size inverted repeats (minus self chains, minus sequence motifs, and partial complementary sequences) were significantly overrepresented in the vicinity of NRXN1 region deletion breakpoints, suggesting that, although they are not interrupted by the deletion process, such inverted repeats can predispose a region to genomic instability by mediating single-strand DNA looping via the annealing of partially reverse complementary strands and the promoting of DNA replication fork stalling and DNA replication error. Our observations highlight the potential importance of inverted repeats of variable sizes in generating a rearrangement hotspot in which individual breakpoints are not recurrent. Mechanisms that involve short inverted repeats in initiating deletion may also apply to other deletion hotspots in the human genome."	"Specific trans-synaptic interaction with inhibitory interneuronal neurexin underlies differential ability of neuroligins to induce functional inhibitory synapses. Synaptic transmission depends on the matching and alignment of presynaptically released transmitters and postsynaptic neurotransmitter receptors. Neuroligin (NL) and Neurexin (Nrxn) proteins are trans-synaptic adhesion molecules that are important in validation and maturation of specific synapses. NL isoforms NL1 and NL2 have specific functional roles in excitatory and inhibitory synapses, respectively, but the molecular basis behind this distinction is still unclear. We show here that the extracellular domain of NL2 confers its unique ability to enhance inhibitory synaptic function when overexpressed in rat hippocampal pyramidal neurons, whereas NL1 normally only promotes excitatory synapses. This specificity is conferred by presynaptic Nrxn isoforms, as NL1 can also induce functional inhibitory synapse connections when the presynaptic interneurons ectopically express an Nrxn isoform that binds to NL1. Our results indicate that trans-synaptic interaction with differentially expressed presynaptic Nrxns underlies the distinct functions of NL1 and NL2, and is sufficient to induce functional inhibitory synapse formation."	"Genetic study of neurexin and neuroligin genes in Alzheimer's disease. The interaction between neurexins and neuroligins promotes the formation of functional synaptic structures. Recently, it has been reported that neurexins and neuroligins are proteolytically processed by presenilins at synapses. Based on this interaction and the role of presenilins in familial Alzheimer's disease (AD), we hypothesized that dysfunction of the neuroligin-neurexin pathway might be associated with AD. To explore this hypothesis, we carried out a meta-analysis of five genome-wide association studies (GWAS) comprising 1, 256 SNPs in the NRXN1, NRXN2, NRXN3, and NLGN1 genes (3,009 cases and 3,006 control individuals). We identified a marker in the NRXN3 gene (rs17757879) that showed a consistent protective effect in all GWAS, however, the statistical significance obtained did not resist multiple testing corrections (OR = 0.851, p = 0.002). Nonetheless, gender analysis revealed that this effect was restricted to males. A combined meta-analysis of the former five GWAS together with a replication Spanish sample consisting of 1,785 cases and 1,634 controls confirmed this observation (rs17757879, OR = 0.742, 95% CI = 0.632-0.872, p = 0.00028, final meta-analysis). We conclude that NRXN3 might have a role in susceptibility to AD in males."	"Rare exonic deletions implicate the synaptic organizer Gephyrin (GPHN) in risk for autism, schizophrenia and seizures. The GPHN gene codes for gephyrin, a key scaffolding protein in the neuronal postsynaptic membrane, responsible for the clustering and localization of glycine and GABA receptors at inhibitory synapses. Gephyrin has well-established functional links with several synaptic proteins that have been implicated in genetic risk for neurodevelopmental disorders such as autism spectrum disorder (ASD), schizophrenia and epilepsy including the neuroligins (NLGN2, NLGN4), the neurexins (NRXN1, NRXN2, NRXN3) and collybistin (ARHGEF9). Moreover, temporal lobe epilepsy has been linked to abnormally spliced GPHN mRNA lacking exons encoding the G-domain of the gephyrin protein, potentially arising due to cellular stress associated with epileptogenesis such as temperature and alkalosis. Here, we present clinical and genomic characterization of six unrelated subjects, with a range of neurodevelopmental diagnoses including ASD, schizophrenia or seizures, who possess rare de novo or inherited hemizygous microdeletions overlapping exons of GPHN at chromosome 14q23.3. The region of common overlap across the deletions encompasses exons 3-5, corresponding to the G-domain of the gephyrin protein. These findings, together with previous reports of homozygous GPHN mutations in connection with autosomal recessive molybdenum cofactor deficiency, will aid in clinical genetic interpretation of the GPHN mutation spectrum. Our data also add to the accumulating evidence implicating neuronal synaptic gene products as key molecular factors underlying the etiologies of a diverse range of neurodevelopmental conditions."	"Refinement and discovery of new hotspots of copy-number variation associated with autism spectrum disorder. Rare copy-number variants (CNVs) have been implicated in autism and intellectual disability. These variants are large and affect many genes but lack clear specificity toward autism as opposed to developmental-delay phenotypes. We exploited the repeat architecture of the genome to target segmental duplication-mediated rearrangement hotspots (n = 120, median size 1.78 Mbp, range 240 kbp to 13 Mbp) and smaller hotspots flanked by repetitive sequence (n = 1,247, median size 79 kbp, range 3-96 kbp) in 2,588 autistic individuals from simplex and multiplex families and in 580 controls. Our analysis identified several recurrent large hotspot events, including association with 1q21 duplications, which are more likely to be identified in individuals with autism than in those with developmental delay (p = 0.01; OR = 2.7). Within larger hotspots, we also identified smaller atypical CNVs that implicated CHD1L and ACACA for the 1q21 and 17q12 deletions, respectively. Our analysis, however, suggested no overall increase in the burden of smaller hotspots in autistic individuals as compared to controls. By focusing on gene-disruptive events, we identified recurrent CNVs, including DPP10, PLCB1, TRPM1, NRXN1, FHIT, and HYDIN, that are enriched in autism. We found that as the size of deletions increases, nonverbal IQ significantly decreases, but there is no impact on autism severity; and as the size of duplications increases, autism severity significantly increases but nonverbal IQ is not affected. The absence of an increased burden of smaller CNVs in individuals with autism and the failure of most large hotspots to refine to single genes is consistent with a model where imbalance of multiple genes contributes to a disease state."	"[Differential diagnosis between the autistic spectrum and the schizophrenic spectrum]. The nosological distinction between the autistic spectrum and the schizophrenic spectrum is clearly defined today, despite scientific evidence of the genetic relationship between the two conditions. The overlap between the negative symptoms of schizophrenia and certain autistic manifestations, and the fact that professionals who are not familiar with autistic spectrum disorders have misguidedly attributed positive symptoms of schizophrenia in autism together highlight the importance of deciphering the keys that make it possible to reach a differential diagnosis or to evaluate the comorbidity and co-occurrence of both spectra when this is the case. The article analyses and unravels the manifestations of autism that could be mistaken for the psychotic dimension and the disorganisation dimension corresponding to the positive symptoms of the schizophrenic spectrum. It also seeks to clarify the psychological explanations justifying the manifestation of certain negative symptoms frequently associated with autism. The keys to determining whether the clinical manifestations belong to the autistic spectrum, the schizophrenic spectrum or result from comorbidity lie in the evaluation of the developmental history of the person, the prodrome and onset of the condition, its course and the presence or absence of positive symptoms of schizophrenia. Determining them will play a crucial role in helping the professional to make decisions concerning both the diagnosis and treatment."	"Exon-disrupting deletions of NRXN1 in idiopathic generalized epilepsy. Neurexins are neuronal adhesion molecules located in the presynaptic terminal, where they interact with postsynaptic neuroligins to form a transsynaptic complex required for efficient neurotransmission in the brain. Recently, deletions and point mutations of the neurexin 1 (NRXN1) gene have been associated with a broad spectrum of neuropsychiatric disorders. This study aimed to investigate if NRXN1 deletions also increase the risk of idiopathic generalized epilepsies (IGEs). We screened for deletions involving the NRXN1 gene in 1,569 patients with IGE and 6,201 controls using high-density oligonucleotide microarrays. We identified exon-disrupting deletions of NRXN1 in 5 of 1,569 patients with IGE and 2 of 6,201 control individuals (p = 0.0049; odds ratio (OR) 9.91, 95% confidence interval (CI) 1.92-51.12). A complex familial segregation pattern in the IGE families was observed, suggesting that heterozygous NRXN1 deletions are susceptibility variants. Intriguingly, we identified a second large copy number variant in three of five index patients, supporting an involvement of heterogeneous susceptibility alleles in the etiology of IGE. We conclude that exon-disrupting deletions of NRXN1 represent a genetic risk factor in the genetically complex predisposition of common IGE syndromes."	"A discovery resource of rare copy number variations in individuals with autism spectrum disorder. The identification of rare inherited and de novo copy number variations (CNVs) in human subjects has proven a productive approach to highlight risk genes for autism spectrum disorder (ASD). A variety of microarrays are available to detect CNVs, including single-nucleotide polymorphism (SNP) arrays and comparative genomic hybridization (CGH) arrays. Here, we examine a cohort of 696 unrelated ASD cases using a high-resolution one-million feature CGH microarray, the majority of which were previously genotyped with SNP arrays. Our objective was to discover new CNVs in ASD cases that were not detected by SNP microarray analysis and to delineate novel ASD risk loci via combined analysis of CGH and SNP array data sets on the ASD cohort and CGH data on an additional 1000 control samples. Of the 615 ASD cases analyzed on both SNP and CGH arrays, we found that 13,572 of 21,346 (64%) of the CNVs were exclusively detected by the CGH array. Several of the CGH-specific CNVs are rare in population frequency and impact previously reported ASD genes (e.g., NRXN1, GRM8, DPYD), as well as novel ASD candidate genes (e.g., CIB2, DAPP1, SAE1), and all were inherited except for a de novo CNV in the GPHN gene. A functional enrichment test of gene-sets in ASD cases over controls revealed nucleotide metabolism as a potential novel pathway involved in ASD, which includes several candidate genes for follow-up (e.g., DPYD, UPB1, UPP1, TYMP). Finally, this extensively phenotyped and genotyped ASD clinical cohort serves as an invaluable resource for the next step of genome sequencing for complete genetic variation detection."	"NRXN1 deletions identified by array comparative genome hybridisation in a clinical case series - further understanding of the relevance of NRXN1 to neurodevelopmental disorders. Microdeletions in the NRXN1 gene have been associated with a range of neurodevelopmental disorders, including autism spectrum disorders, schizophrenia, intellectual disability, speech and language delay, epilepsy and hypotonia. In the present study we performed array CGH analysis on 10,397 individuals referred for diagnostic cytogenetic analysis, using a custom oligonucleotide array, which included 215 NRXN1 probes (median spacing 4.9 kb). We found 34 NRXN1 deletions (0.33% of referrals) ranging from 9 to 942 kb in size, of which 18 were exonic (0.17%). Three deletions affected exons also in the beta isoform of NRXN1. No duplications were found. Patients had a range of phenotypes including developmental delay, learning difficulties, attention deficit hyperactivity disorder (ADHD), autism, speech delay, social communication difficulties, epilepsy, behaviour problems and microcephaly. Five patients who had deletions in NRXN1 had a second CNV implicated in neurodevelopmental disorder: a CNTNAP2 and CSMD3 deletion in patients with exonic NRXN1 deletions, and a Williams-Beuren syndrome deletion and two 22q11.2 duplications in patients with intronic NRXN1 deletions. Exonic deletions in the NRXN1 gene, predominantly affecting the alpha isoform, were found in patients with a range of neurodevelopmental disorders referred for diagnostic cytogenetic analysis. The targeting of dense oligonucleotide probes to the NRXN1 locus on array comparative hybridisation platforms provides detailed characterisation of deletions in this gene, and is likely to add to understanding of the importance of NRXN1 in neural development."	"Expression of neurexin and neuroligin in the enteric nervous system and their down-regulated expression levels in Hirschsprung disease. To investigate the expression levels of neurexins and neuroligins in the enteric nervous system (ENS) in Hirschsprung Disease (HSCR). Longitudinal muscles with adherent mesenteric plexus were obtained by dissection of the fresh gut wall of mice, guinea pigs, and humans. Double labeling of neurexin I and Hu (a neuron marker), neuroligin 1 and Hu, neurexin I and synaptophysin (a presynaptic marker), and neuroligin 1 and PSD95 (a postsynaptic marker) was performed by immunofluorescence staining. Images were merged to determine the relative localizations of the proteins. Expression levels of neurexin and neuroligin in different segments of the ENS in HSCR were investigated by immunohistochemistry. Neurexin and neuroligin were detected in the mesenteric plexus of mice, guinea pigs, and humans with HSCR. Neurexin was located in the presynapse, whereas neuroligin was located in the postsynapse. Expression levels of neurexin and neuroligin were significant in the ganglionic colonic segment of HSCR, moderate in the transitional segment, and negative in the aganglionic colonic segment. The expressions of neurexin and neuroligin in the transitional segments were significantly down-regulated compared with the levels in the normal segments (P &lt; 0.05). Expression levels of neurexin and neuroligin in ENS are significantly down-regulated in HSCR, which may be involved in the pathogenesis of HSCR."	"Recurrent targeted genes of hepatitis B virus in the liver cancer genomes identified by a next-generation sequencing-based approach. Integration of the viral DNA into host chromosomes was found in most of the hepatitis B virus (HBV)-related hepatocellular carcinomas (HCCs). Here we devised a massive anchored parallel sequencing (MAPS) method using next-generation sequencing to isolate and sequence HBV integrants. Applying MAPS to 40 pairs of HBV-related HCC tissues (cancer and adjacent tissues), we identified 296 HBV integration events corresponding to 286 unique integration sites (UISs) with precise HBV-Human DNA junctions. HBV integration favored chromosome 17 and preferentially integrated into human transcript units. HBV targeted genes were enriched in GO terms: cAMP metabolic processes, T cell differentiation and activation, TGF beta receptor pathway, ncRNA catabolic process, and dsRNA fragmentation and cellular response to dsRNA. The HBV targeted genes include 7 genes (PTPRJ, CNTN6, IL12B, MYOM1, FNDC3B, LRFN2, FN1) containing IPR003961 (Fibronectin, type III domain), 7 genes (NRG3, MASP2, NELL1, LRP1B, ADAM21, NRXN1, FN1) containing IPR013032 (EGF-like region, conserved site), and three genes (PDE7A, PDE4B, PDE11A) containing IPR002073 (3', 5'-cyclic-nucleotide phosphodiesterase). Enriched pathways include hsa04512 (ECM-receptor interaction), hsa04510 (Focal adhesion), and hsa04012 (ErbB signaling pathway). Fewer integration events were found in cancers compared to cancer-adjacent tissues, suggesting a clonal expansion model in HCC development. Finally, we identified 8 genes that were recurrent target genes by HBV integration including fibronectin 1 (FN1) and telomerase reverse transcriptase (TERT1), two known recurrent target genes, and additional novel target genes such as SMAD family member 5 (SMAD5), phosphatase and actin regulator 4 (PHACTR4), and RNA binding protein fox-1 homolog (C. elegans) 1 (RBFOX1). Integrating analysis with recently published whole-genome sequencing analysis, we identified 14 additional recurrent HBV target genes, greatly expanding the HBV recurrent target list. This global survey of HBV integration events, together with recently published whole-genome sequencing analyses, furthered our understanding of the HBV-related HCC."	"2p16.3 microdeletion with partial deletion of the neurexin-1 gene in a female with developmental delays, short stature, and a congenital diaphragmatic hernia. NA"	"Exonal elements and factors involved in the depolarization-induced alternative splicing of neurexin 2. The neurexin genes (NRXN1, NRXN2, and NRXN3) encode polymorphic presynaptic proteins that are implicated in synaptic plasticity and memory processing. In rat brain neurons grown in culture, depolarization induces reversible, calcium-dependent, repression of NRXN2α exon 11 (E11) splicing. Using Neuro2a cells as a model, we explored E11 cis elements and trans-acting factors involved in alternative splicing of NRXN2α E11 pre-mRNA under basal and depolarization conditions. E11 mutation studies revealed two motifs, CTGCCTG (enhancer) and GCACCCA (suppressor) regulating NRXN2α E11 alternative splicing. Subsequent E11 RNA affinity pull-down experiments demonstrated heterogeneous nuclear ribonucleoprotein (hnRNP) K and hnRNP L binding to this exon. Under depolarization, the amount of E11-bound hnRNP L (but not of hnRNP K) increased, in parallel to NRXN2α E11 splicing repression. Depletion of hnRNP K or hnRNP L in the Neuro2a cells by specific siRNAs enhanced NRXN2α E11 splicing and ablated the depolarization-induced repression of this exon. In addition, depolarization suppressed whereas hnRNP K depletion enhanced NRXN2α expression. These results indicate a role for hnRNP K in regulation of NRXN2α expression and of hnRNP L in the activity-dependent alternative splicing of neurexins which may potentially govern trans-synaptic signaling required for memory processing."	"Presynaptically released Cbln1 induces dynamic axonal structural changes by interacting with GluD2 during cerebellar synapse formation. Differentiation of pre- and postsynaptic sites is coordinated by reciprocal interaction across synaptic clefts. At parallel fiber (PF)-Purkinje cell (PC) synapses, dendritic spines are autonomously formed without PF influence. However, little is known about how presynaptic structural changes are induced and how they lead to differentiation of mature synapses. Here, we show that Cbln1 released from PFs induces dynamic structural changes in PFs by a mechanism that depends on postsynaptic glutamate receptor delta2 (GluD2) and presynaptic neurexin (Nrx). Time-lapse imaging in organotypic culture and ultrastructural analyses in vivo revealed that Nrx-Cbln1-GluD2 signaling induces PF protrusions that often formed circular structures and encapsulated PC spines. Such structural changes in PFs were associated with the accumulation of synaptic vesicles and GluD2, leading to formation of mature synapses. Thus, PF protrusions triggered by Nrx-Cbln1-GluD2 signaling may promote bidirectional maturation of PF-PC synapses by a positive feedback mechanism."	"Activity-dependent proteolytic cleavage of neuroligin-1. Neuroligin (NLG), a postsynaptic adhesion molecule, is involved in the formation of synapses by binding to a cognate presynaptic ligand, neurexin. Here we report that neuroligin-1 (NLG1) undergoes ectodomain shedding at the juxtamembrane stalk region to generate a secreted form of NLG1 and a membrane-tethered C-terminal fragment (CTF) in adult rat brains in vivo as well as in neuronal cultures. Pharmacological and genetic studies identified ADAM10 as the major protease responsible for NLG1 shedding, the latter being augmented by synaptic NMDA receptor activation or interaction with soluble neurexin ligands. NLG1-CTF was subsequently cleaved by presenilin/γ-secretase. Secretion of soluble NLG1 was significantly upregulated under a prolonged epileptic seizure condition, and inhibition of NLG1 shedding led to an increase in numbers of dendritic spines in neuronal cultures. Collectively, neuronal activity-dependent proteolytic processing of NLG1 may negatively regulate the remodeling of spines at excitatory synapses."	"Transsynaptic signaling by activity-dependent cleavage of neuroligin-1. Adhesive contact between pre- and postsynaptic neurons initiates synapse formation during brain development and provides a natural means of transsynaptic signaling. Numerous adhesion molecules and their role during synapse development have been described in detail. However, once established, the mechanisms of adhesive disassembly and its function in regulating synaptic transmission have been unclear. Here, we report that synaptic activity induces acute proteolytic cleavage of neuroligin-1 (NLG1), a postsynaptic adhesion molecule at glutamatergic synapses. NLG1 cleavage is triggered by NMDA receptor activation, requires Ca2+ /calmodulin-dependent protein kinase, and is mediated by proteolytic activity of matrix metalloprotease 9 (MMP9). Cleavage of NLG1 occurs at single activated spines, is regulated by neural activity in vivo, and causes rapid destabilization of its presynaptic partner neurexin-1β (NRX1β). In turn, NLG1 cleavage depresses synaptic transmission by abruptly reducing presynaptic release probability. Thus, local proteolytic control of synaptic adhesion tunes synaptic transmission during brain development and plasticity."	"Allele-biased expression in differentiating human neurons: implications for neuropsychiatric disorders. Stochastic processes and imprinting, along with genetic factors, lead to monoallelic or allele-biased gene expression. Stochastic monoallelic expression fine-tunes information processing in immune cells and the olfactory system, and imprinting plays an important role in development. Recent studies suggest that both stochastic events and imprinting may be more widespread than previously considered. We are interested in allele-biased gene expression occurring in the brain because parent-of-origin effects suggestive of imprinting appear to play a role in the transmission of schizophrenia (SZ) and autism spectrum disorders (ASD) in some families. In addition, allele-biased expression could help explain monozygotic (MZ) twin discordance and reduced penetrance. The ability to study allele-biased expression in human neurons has been transformed with the advent of induced pluripotent stem cell (iPSC) technology and next generation sequencing. Using transcriptome sequencing (RNA-Seq) we identified 801 genes in differentiating neurons that were expressed in an allele-biased manner. These included a number of putative SZ and ASD candidates, such as A2BP1 (RBFOX1), ERBB4, NLGN4X, NRG1, NRG3, NRXN1, and NLGN1. Overall, there was a modest enrichment for SZ and ASD candidate genes among those that showed evidence for allele-biased expression (chi-square, p = 0.02). In addition to helping explain MZ twin discordance and reduced penetrance, the capacity to group many candidate genes affecting a variety of molecular and cellular pathways under a common regulatory process - allele-biased expression - could have therapeutic implications."	"Pathogenetic model for Tourette syndrome delineates overlap with related neurodevelopmental disorders including Autism. Tourette syndrome (TS) is a highly heritable neuropsychiatric disorder characterised by motor and vocal tics. Despite decades of research, the aetiology of TS has remained elusive. Recent successes in gene discovery backed by rapidly advancing genomic technologies have given us new insights into the genetic basis of the disorder, but the growing collection of rare and disparate findings have added confusion and complexity to the attempts to translate these findings into neurobiological mechanisms resulting in symptom genesis. In this review, we explore a previously unrecognised genetic link between TS and a competing series of trans-synaptic complexes (neurexins (NRXNs), neuroligins (NLGNs), leucine-rich repeat transmembrane proteins (LRRTMs), leucine rich repeat neuronals (LRRNs) and cerebellin precursor 2 (CBLN2)) that links it with autism spectrum disorder through neurodevelopmental pathways. The emergent neuropathogenetic model integrates all five genes so far found to be uniquely disrupted in TS into a single pathogenetic chain of events described in context with clinical and research implications."	"Prevalence of SHANK3 variants in patients with different subtypes of autism spectrum disorders. Autism spectrum disorders (ASDs) include three main conditions: autistic disorder (AD), pervasive developmental disorder, not otherwise specified (PDD-NOS), and Asperger syndrome. It has been shown that many genes associated with ASDs are involved in the neuroligin-neurexin interaction at the glutamate synapse: NLGN3, NLGN4, NRXN1, CNTNAP2, and SHANK3. We screened this last gene in two cohorts of ASD patients (133 patients from US and 88 from Italy). We found 5/221 (2.3%) cases with pathogenic alterations: a 106 kb deletion encompassing the SHANK3 gene, two frameshift mutations leading to premature stop codons, a missense mutation (p.Pro141Ala), and a splicing mutation (c.1820-4 G&gt;A). Additionally, in 17 patients (7.7%) we detected a c.1304+48C&gt;T transition affecting a methylated cytosine in a CpG island. This variant is reported as SNP rs76224556 and was found in both US and Italian controls, but it results significantly more frequent in our cases than in the control cohorts. The variant is also significantly more common among PDD-NOS cases than in AD cases. We also screened this gene in an independent replication cohort of 104 US patients with ASDs, in which we found a missense mutation (p.Ala1468Ser) in 1 patient (0.9%), and in 8 patients (7.7%) we detected the c.1304+48C&gt;T transition. While SHANK3 variants are present in any ASD subtype, the SNP rs76224556 appears to be significantly associated with PDD-NOS cases. This represents the first evidence of a genotype-phenotype correlation in ASDs and highlights the importance of a detailed clinical-neuropsychiatric evaluation for the effective genetic screening of ASD patients."	"Genome-wide association study of multiplex schizophrenia pedigrees. The authors used a genome-wide association study (GWAS) of multiply affected families to investigate the association of schizophrenia to common single-nucleotide polymorphisms (SNPs) and rare copy number variants (CNVs). The family sample included 2,461 individuals from 631 pedigrees (581 in the primary European-ancestry analyses). Association was tested for single SNPs and genetic pathways. Polygenic scores based on family study results were used to predict case-control status in the Schizophrenia Psychiatric GWAS Consortium (PGC) data set, and consistency of direction of effect with the family study was determined for top SNPs in the PGC GWAS analysis. Within-family segregation was examined for schizophrenia-associated rare CNVs. No genome-wide significant associations were observed for single SNPs or for pathways. PGC case and control subjects had significantly different genome-wide polygenic scores (computed by weighting their genotypes by log-odds ratios from the family study) (best p=10(-17), explaining 0.4% of the variance). Family study and PGC analyses had consistent directions for 37 of the 58 independent best PGC SNPs (p=0.024). The overall frequency of CNVs in regions with reported associations with schizophrenia (chromosomes 1q21.1, 15q13.3, 16p11.2, and 22q11.2 and the neurexin-1 gene [NRXN1]) was similar to previous case-control studies. NRXN1 deletions and 16p11.2 duplications (both of which were transmitted from parents) and 22q11.2 deletions (de novo in four cases) did not segregate with schizophrenia in families. Many common SNPs are likely to contribute to schizophrenia risk, with substantial overlap in genetic risk factors between multiply affected families and cases in large case-control studies. Our findings are consistent with a role for specific CNVs in disease pathogenesis, but the partial segregation of some CNVs with schizophrenia suggests that researchers should exercise caution in using them for predictive genetic testing until their effects in diverse populations have been fully studied."	"Analysis of four genes involved in the neurodevelopment shows association of rs4307059 polymorphism in the cadherin 9/10 region with completed suicide. We hypothesized that DNA variants affecting neurodevelopment such as rs4307059 (CDH10/CDH9), rs930752 (NRXN1), rs6265 (BDNF) or rs10868235 (NTRK2) may predispose to completed suicide. We used a case-control two-stage approach based on a discovery cohort (557 cases and ∼550 controls) and replication cohort (159 cases and 186 controls). The suicides were ascertained as consecutive cases autopsied at the Department of Forensic Medicine, Medical University of Warsaw, Poland. In the discovery cohort we found an association between suicide and the CC genotype in the rs4307059 polymorphism (OR 1.64, p = 0.012). The trend for an overrepresentation of the CC homozygotes among suicides was replicated in the second cohort (OR 1.97, p = 0.056). Analysis in the pooled cohorts showed that rs4307059 CC was associated with completed suicide (OR 1.71, p = 0.002) also after Bonferroni correction (p(cor.) = 0.024). In an exploratory search for genotype-phenotype correlation we found that males with the rs4307059 CC genotype committed suicide earlier than those with CT/TT genotypes (p = 0.049). The CC genotype of rs4307059 located in the region between CDH9 and CDH10 is associated with completed suicide in a Polish cohort."	"Higher-order architecture of cell adhesion mediated by polymorphic synaptic adhesion molecules neurexin and neuroligin. Polymorphic adhesion molecules neurexin and neuroligin (NL) mediate asymmetric trans-synaptic adhesion, which is crucial for synapse development and function. It is not known whether or how individual synapse function is controlled by the interactions between variants and isoforms of these molecules with differing ectodomain regions. At a physiological concentration of Ca(2+), the ectodomain complex of neurexin-1 β isoform (Nrx1β) and NL1 spontaneously assembled into crystals of a lateral sheet-like superstructure topologically compatible with transcellular adhesion. Correlative light-electron microscopy confirmed extracellular sheet formation at the junctions between Nrx1β- and NL1-expressing non-neuronal cells, mimicking the close, parallel synaptic membrane apposition. The same NL1-expressing cells, however, did not form this higher-order architecture with cells expressing the much longer neurexin-1 α isoform, suggesting a functional discrimination mechanism between synaptic contacts made by different isoforms of neurexin variants."	"Copy number variations in neurodevelopmental disorders. Common neurodevelopmental disorders (including autism, speech and language delay, schizophrenia, epilepsy and intellectual disability) have complex aetiology, which is predominantly genomic, but also environmental in origin. They share a paradox, in that high heritability is matched by lowered fecundity, placing them under negative genetic selection. This implicates variants of recent origin, such as de novo mutations or common, very low-risk polymorphisms that escape negative selection. High or moderate risk variants have been discovered by chromosome analysis, genome sequencing and copy number variant (CNV) detection, including a 3Mb deletion causing 22q11.2 deletion syndrome (Velo-Cardio-Facial Syndrome) that has penetrance of up to 50% for schizophrenia. More recently, rare, recurrent and often de novo pathogenic CNVs, including deletions at NRXN1, 1q21.2, 15q11.2 and 15q13.3, 16p11.2 and duplications at VIPR2 and 16p13.11, have also been discovered. These have several unique features that differentiate them from Mendelian disease mutations in that they have incomplete penetrance, with moderate-to-high odds ratios for risk, and show diagnostic pleiotropy, increasing risk across the neurodevelopmental disorder spectrum. Some are also syndromic, with characteristic features such as facial dysmorphology, and other specific risks such as aortic dissection or obesity, implying that they might be better classified as distinct diagnoses. The discovery of pathogenic CNVs provide new opportunities for translation leading to patent benefit, including improvements in clinical genetic diagnosis and genetic counselling, the possibility of clinician decision-making tools for risk prediction, and the identification of drug targets and implementation of personalised medicine using stratification by genotype."	"Functional analysis of TCF4 missense mutations that cause Pitt-Hopkins syndrome. Pitt-Hopkins syndrome (PTHS) is a rare developmental disorder associated with severe mental retardation, facial abnormalities, and intermittent hyperventilation. Autosomal dominant PTHS is caused by mutations in the transcription factor 4 (TCF4) gene, whereas NRXN1 and CNTNAP2 mutations are associated with autosomal recessive PTHS. To determine the impact of missense mutations on TCF4 function, we tested a panel of PTHS-associated mutations using a range of quantitative techniques. Mutations in the basic helix-loop-helix (bHLH) domain of TCF4 alter the subnuclear localization of the mutant protein and can attenuate homo- and heterodimer formation in homogenous time-resolved fluorescence (HTRF) assays. By contrast, mutations proximal to the bHLH domain do not alter the location of TCF4 or impair heterodimer formation. In addition, we show that TCF4 can transactivate the NRXN1β and CNTNAP2 promoters in luciferase assays. Here we find variable, context-specific deficits in the ability of the different PTHS-associated TCF4 mutants to transactivate these promoters when coexpressed with different bHLH transcription factors. These data demonstrate that PTHS-associated missense mutations can have multiple effects on the function of the protein, and suggest that TCF4 may modulate the expression of NRXN1 and CNTNAP2 thereby defining a regulatory network in PTHS."	"Neuroligin-1 induces neurite outgrowth through interaction with neurexin-1β and activation of fibroblast growth factor receptor-1. Neurexin-1 (NRXN1) and neuroligin-1 (NLGN1) are synaptic cell adhesion molecules that connect pre- and postsynaptic neurons at synapses and mediate signaling across the synapse, which modulates synaptic activity and determines the properties of neuronal networks. Defects in the genes encoding NLGN1 have been linked to cognitive diseases such as autism. The roles of both NRXN1 and NLGN1 during synaptogenesis have been studied extensively, but little is known about the role of these molecules in neuritogenesis, which eventually results in neuronal circuitry formation. The present study investigated the neuritogenic effect of NLGN1 in cultures of hippocampal neurons. Our results show that NLGN1, both in soluble and membrane-bound forms, induces neurite outgrowth that depends on the interaction with NRXN1β and on activation of fibroblast growth factor receptor-1. In addition, we demonstrate that a synthetic peptide, termed neurolide, which is modeled after a part of the binding interface of NLGN1 for NRXN1β, can bind to NRXN1β and mimic the biological properties of NLGN1 in vitro."	"Severe Intellectual Disability Associated with Recessive Defects in CNTNAP2 and NRXN1. While heterozygous variants in CNTNAP2 and NRXN1 are reported as susceptibility factors for neuropsychiatric disorders, homozygous or compound heterozygous defects in either gene were reported as causative for severe neurodevelopmental disorders. This review provides an overview of the clinical aspects in patients with recessive defects in CNTNAP2 and NRXN1."	"Pitt-Hopkins Syndrome. Pitt-Hopkins syndrome (PTHS, MIM #610954) is characterized by severe intellectual disability, typical facial features and tendency to epilepsy, panting-and-holding breathing anomaly, stereotypic movements, constipation, and high myopia. Growth is normal or only mildly retarded, but half of the patients have postnatal microcephaly. Remarkably, congenital malformations are practically nonexistent. The cause of PTHS is de novo haploinsufficiency of the TCF4 gene (MIM *602272) at 18q21.2. Altogether 78 PTHS patients with abnormalities of the TCF4 gene have been published since 2007 when the etiology of PTHS was revealed. In addition, 27 patients with 18q deletion encompassing the TCF4 gene but without given PTHS diagnosis have been published, and thus, the number of reported patients with a TCF4 abnormality exceeds 100. The mutational spectrum includes large chromosomal deletions encompassing the whole TCF4 gene, partial gene deletions, frameshift (including premature stop codon), nonsense, splice site, and missense mutations. So far, almost all patients have a private mutation and only 2 recurrent mutations are known. There is no evident genotype-phenotype correlation. No familial cases have been reported. Diagnosis of PTHS is based on the molecular confirmation of the characteristic clinical features. Recently, a Pitt-Hopkins-like phenotype has been assigned to autosomal recessive mutations of the CNTNAP2 gene at 7q33q36 and the NRXN1 gene at 2p16.3."	"Diurnal rhythms in neurexins transcripts and inhibitory/excitatory synapse scaffold proteins in the biological clock. The neurexin genes (NRXN1/2/3) encode two families (α and β) of highly polymorphic presynaptic proteins that are involved in excitatory/inhibitory synaptic balance. Recent studies indicate that neuronal activation and memory formation affect NRXN1/2/3α expression and alternative splicing at splice sites 3 and 4 (SS#3/SS#4). Neurons in the biological clock residing in the suprachiasmatic nuclei of the hypothalamus (SCN) act as self-sustained oscillators, generating rhythms in gene expression and electrical activity, to entrain circadian bodily rhythms to the 24 hours day/night cycles. Cell autonomous oscillations in NRXN1/2/3α expression and SS#3/SS#4 exons splicing and their links to rhythms in excitatory/inhibitory synaptic balance in the circadian clock were explored. NRXN1/2/3α expression and SS#3/SS#4 splicing, levels of neurexin-2α and the synaptic scaffolding proteins PSD-95 and gephyrin (representing excitatory and inhibitory synapses, respectively) were studied in mRNA and protein extracts obtained from SCN of C3H/J mice at different times of the 24 hours day/night cycle. Further studies explored the circadian oscillations in these components and causality relationships in immortalized rat SCN2.2 cells. Diurnal rhythms in mNRXN1α and mNRXN2α transcription, SS#3/SS#4 exon-inclusion and PSD-95 gephyrin and neurexin-2α levels were found in the SCN in vivo. No such rhythms were found with mNRXN3α. SCN2.2 cells also exhibited autonomous circadian rhythms in rNRXN1/2 expression SS#3/SS#4 exon inclusion and PSD-95, gephyrin and neurexin-2α levels. rNRXN3α and rNRXN1/2β were not expressed. Causal relationships were demonstrated, by use of specific siRNAs, between rNRXN2α SS#3 exon included transcripts and gephyrin levels in the SCN2.2 cells. These results show for the first time dynamic, cell autonomous, diurnal rhythms in expression and splicing of NRXN1/2 and subsequent effects on the expression of neurexin-2α and postsynaptic scaffolding proteins in SCN across the 24-h cycle. NRXNs gene transcripts may have a role in coupling the circadian clock to diurnal rhythms in excitatory/inhibitory synaptic balance."	"Phenotypic spectrum and genotype-phenotype correlations of NRXN1 exon deletions. Copy number variants (CNVs) and intragenic rearrangements of the NRXN1 (neurexin 1) gene are associated with a wide spectrum of developmental and neuropsychiatric disorders, including intellectual disability, speech delay, autism spectrum disorders (ASDs), hypotonia and schizophrenia. We performed a detailed clinical and molecular characterization of 24 patients who underwent clinical microarray analysis and had intragenic deletions of NRXN1. Seventeen of these deletions involved exons of NRXN1, whereas seven deleted intronic sequences only. The patients with exonic deletions manifested developmental delay/intellectual disability (93%), infantile hypotonia (59%) and ASDs (56%). Congenital malformations and dysmorphic features appeared infrequently and inconsistently among this population of patients with NRXN1 deletions. The more C-terminal deletions, including those affecting the β isoform of neurexin 1, manifested increased head size and a high frequency of seizure disorder (88%) when compared with N-terminal deletions of NRXN1."	"The shock of the new: progress in schizophrenia genomics. A growing list of common and rare genetic risk variants are being implicated in schizophrenia susceptibility. As with other complex genetic disorders most of the variance in genetic risk is still to be attributed. What can be learned from progress to date? The available data challenges how we conceptualize schizophrenia and suggests strong aetiological links with other psychiatric and developmental disorders. With the identification of rare copy number risk variants implicating specific genes (e.g. VIPR2 and NRXN1) it is increasingly possible to investigate molecular aetiology in patient subgroups to establish whether schizophrenia represents one or many different disease processes. This review summarizes recent research progress and suggests how the tools of modern genomics and neuroscience can be applied to best understand this devastating disorder."	"Analysis of copy number variation in Alzheimer's disease: the NIALOAD/ NCRAD Family Study. Copy number variants (CNVs) are DNA regions that have gains (duplications) or losses (deletions) of genetic material. CNVs may encompass a single gene or multiple genes and can affect their function. They are hypothesized to play an important role in certain diseases. We previously examined the role of CNVs in late-onset Alzheimer's disease (AD) and mild cognitive impairment (MCI) using participants from the Alzheimer's Disease Neuroimaging Initiative (ADNI) study and identified gene regions overlapped by CNVs only in cases (AD and/or MCI) but not in controls. Using a similar approach as ADNI, we investigated the role of CNVs using 794 AD and 196 neurologically evaluated control non-Hispanic Caucasian NIA-LOAD/NCRAD Family Study participants with DNA derived from blood/brain tissue. The controls had no family history of AD and were unrelated to AD participants. CNV calls were generated and analyzed after detailed quality review. 711 AD cases and 171 controls who passed all quality thresholds were included in case/control association analyses, focusing on candidate gene and genome-wide approaches. We identified genes overlapped by CNV calls only in AD cases but not controls. A trend for lower CNV call rate was observed for deletions as well as duplications in cases compared to controls. Gene-based association analyses confirmed previous findings in the ADNI study (ATXN1, HLA-DPB1, RELN, DOPEY2, GSTT1, CHRFAM7A, ERBB4, NRXN1) and identified a new gene (IMMP2L) that may play a role in AD susceptibility. Replication in independent samples as well as further analyses of these gene regions is warranted."	"Evidence of novel fine-scale structural variation at autism spectrum disorder candidate loci. Autism spectrum disorders (ASD) represent a group of neurodevelopmental disorders characterized by a core set of social-communicative and behavioral impairments. Gamma-aminobutyric acid (GABA) is the major inhibitory neurotransmitter in the brain, acting primarily via the GABA receptors (GABR). Multiple lines of evidence, including altered GABA and GABA receptor expression in autistic patients, indicate that the GABAergic system may be involved in the etiology of autism. As copy number variations (CNVs), particularly rare and de novo CNVs, have now been implicated in ASD risk, we examined the GABA receptors and genes in related pathways for structural variation that may be associated with autism. We further extended our candidate gene set to include 19 genes and regions that had either been directly implicated in the autism literature or were directly related (via function or ancestry) to these primary candidates. For the high resolution CNV screen we employed custom-designed 244 k comparative genomic hybridization (CGH) arrays. Collectively, our probes spanned a total of 11 Mb of GABA-related and additional candidate regions with a density of approximately one probe every 200 nucleotides, allowing a theoretical resolution for detection of CNVs of approximately 1 kb or greater on average. One hundred and sixty-eight autism cases and 149 control individuals were screened for structural variants. Prioritized CNV events were confirmed using quantitative PCR, and confirmed loci were evaluated on an additional set of 170 cases and 170 control individuals that were not included in the original discovery set. Loci that remained interesting were subsequently screened via quantitative PCR on an additional set of 755 cases and 1,809 unaffected family members. Results include rare deletions in autistic individuals at JAKMIP1, NRXN1, Neuroligin4Y, OXTR, and ABAT. Common insertion/deletion polymorphisms were detected at several loci, including GABBR2 and NRXN3. Overall, statistically significant enrichment in affected vs. unaffected individuals was observed for NRXN1 deletions. These results provide additional support for the role of rare structural variation in ASD."	"Mutation analysis of the NRXN1 gene in a Chinese autism cohort. Autism is a brain developmental disorder characterized by impaired social interaction and communication, as well as restricted and repetitive behaviors. The neurexin-1(NRXN1) gene mapped on chromosome 2p16.3 encodes neurexin, a cell adhesion molecule and receptor in the vertebrate nervous system. Rare de novo alterations and copy number variations (CNVs) suggested neurexin-1 as a candidate gene for the pathogenesis of autism, but data on the gene mutation of neurexin-1 in Chinese Han population with autism are limited. By direct sequencing, we analyzed the entire coding regions and associated splice junctions of neurexin-1 in 313 Chinese autism patients. For exons in which non-synonymous variants were identified, sequencing was performed in 500 healthy controls. We identified 22 variants in the neurexin-1 coding regions, including 7 missense variants, 3 deletions, and 12 synonymous mutations. Among them, 3 missense and 3 synonymous variants were not reported in the dbSNP database and absent in 500 control subjects; whereas 4 missense variants, 3 deletions and 3 synonymous mutations were not reported in the dbSNP database but were identified in the control subjects. However, there is no significant association of these mutations with autism risk. Interestingly, there was a statistically significant association of neurexin-1 SNP P300P (rs2303298) with risk of autism (26.2% vs. 13.8%; χ(2) = 22.487; p = 3.45E-006; OR = 2.152 (1.559-2.970)). Our data suggest a possible association of neurexin-1 with autism risk in Chinese Han population, warranting further large-scale study on this gene."	"Interleukin-1 receptor accessory protein organizes neuronal synaptogenesis as a cell adhesion molecule. Interleukin-1 receptor accessory protein (IL-1RAcP) is the essential component of receptor complexes mediating immune responses to interleukin-1 family cytokines. IL-1RAcP in the brain exists in two isoforms, IL-1RAcP and IL-1RAcPb, differing only in the C-terminal region. Here, we found robust synaptogenic activities of IL-1RAcP in cultured cortical neurons. Knockdown of IL-1RAcP isoforms in cultured cortical neurons suppressed synapse formation as indicated by decreases of active zone protein Bassoon puncta and dendritic protrusions. IL-1RAcP recovered the accumulation of presynaptic Bassoon puncta, while IL-1RAcPb rescued both Bassoon puncta and dendritic protrusions. Consistently, the expression of IL-1RAcP in cortical neurons enhances the accumulation of Bassoon puncta and that of IL-1RAcPb stimulated both Bassoon puncta accumulation and spinogenesis. IL-1RAcP interacted with protein tyrosine phosphatase (PTP) δ through the extracellular domain. Mini-exon peptides in the Ig-like domains of PTPδ splice variants were critical for their efficient binding to IL-1RAcP. The synaptogenic activities of IL-1RAcP isoforms were diminished in cortical neurons from PTPδ knock-out mice. Correspondingly, PTPδ required IL-1RAcPb to induce postsynaptic differentiation. Thus, IL-1RAcPb bidirectionally regulated synapse formation of cortical neurons. Furthermore, the spine densities of cortical and hippocampal pyramidal neurons were reduced in IL-1RAcP knock-out mice lacking both isoforms. These results suggest that IL-1RAcP isoforms function as trans-synaptic cell adhesion molecules in the brain and organize synapse formation. Thus, IL-1RAcP represents an interesting molecular link between immune systems and synapse formation in the brain."	"Sex-dependent novelty response in neurexin-1α mutant mice. Neurexin-1 alpha (NRXN1α) belongs to the family of cell adhesion molecules (CAMs), which are involved in the formation of neuronal networks and synapses. NRXN1α gene mutations have been identified in neuropsychiatric diseases including Schizophrenia (SCZ) and Autism Spectrum Disorder (ASD). In order to get a better understanding of the pleiotropic behavioral manifestations caused by NRXN1α gene mutations, we performed a behavioral study of Nrxn1α heterozygous knock-out (+/-) mice and observed increased responsiveness to novelty and accelerated habituation to novel environments compared to wild type (+/+) litter-mates. However, this effect was mainly observed in male mice, strongly suggesting that gender-specific mechanisms play an important role in Nrxn1α-induced phenotypes."	"Mutations in NRXN1 in a family multiply affected with brain disorders: NRXN1 mutations and brain disorders. Mutation of the neurexin1-gene, NRXN1, interrupting the expression of neurexin1 has been associated with schizophrenia, autism, and intellectual disability. We have identified a family multiply affected with psychiatric, neurological, and somatic disorders along with an intricate co-segregation of NRXN1 mutations. The proband suffered from autism, mental retardation, and epilepsy and on genotyping it was revealed that he carried a compound heterozygous mutation in the NRXN1 consisting of a 451 kb deletion, affecting the promoter and first introns in addition to a point mutation, predicted to be deleterious to NRXN1. The deletion was passed on from the patient's mother who was clinically characterized by sub-diagnostic autistic traits in addition to type 1 diabetes mellitus. The point mutation was subsequently found in the patient's brother, suffering from a psychotic disorder, which implies that the point mutation was inherited from the deceased father, who was diagnosed with schizophrenia. The observations suggest a possible gene-dose effect of NRXN1 mutations on type and severity of mental illness and support the notion that the penetrance and pleiotropy of pathogenic CNVs in general are determined by additional genetic variants in the genome. Finally the findings also propose a linkage of NRXN1 neurobiology to epilepsy and possibly to type 1 diabetes."	"High affinity neurexin binding to cell adhesion G-protein-coupled receptor CIRL1/latrophilin-1 produces an intercellular adhesion complex. The G-protein-coupled receptor CIRL1/latrophilin-1 (CL1) and the type-1 membrane proteins neurexins represent distinct neuronal cell adhesion molecules that exhibit no similarities except for one common function: both proteins are receptors for α-latrotoxin, a component of black widow spider venom that induces massive neurotransmitter release at synapses. Unexpectedly, we have now identified a direct binding interaction between the extracellular domains of CL1 and neurexins that is regulated by alternative splicing of neurexins at splice site 4 (SS4). Using saturation binding assays, we showed that neurexins lacking an insert at SS4 bind to CL1 with nanomolar affinity, whereas neurexins containing an insert at SS4 are unable to bind. CL1 competed for neurexin binding with neuroligin-1, a well characterized neurexin ligand. The extracellular sequences of CL1 contain five domains (lectin, olfactomedin-like, serine/threonine-rich, hormone-binding, and G-protein-coupled receptor autoproteolysis-inducing (GAIN) domains). Of these domains, the olfactomedin-like domain mediates neurexin binding as shown by deletion mapping. Cell adhesion assays using cells expressing neurexins and CL1 revealed that their interaction produces a stable intercellular adhesion complex, indicating that their interaction can be trans-cellular. Thus, our data suggest that CL1 constitutes a novel ligand for neurexins that may be localized postsynaptically based on its well characterized interaction with intracellular SH3 and multiple ankyrin repeats adaptor proteins (SHANK) and could form a trans-synaptic complex with presynaptic neurexins."	"Detection and characterization of copy number variation in autism spectrum disorder. There now exist multiple lines of evidence pointing to a significant genetic component underlying the aetiology of autism spectrum disorders (ASDs). The advent of methodologies for scanning the human genome at high resolution, coupled with the recognition of copy number variation (CNV) as a prevalent source of genomic variation, has led to new strategies in the identification of clinically relevant loci. Balanced genomic changes, such as translocations and inversions, also contribute to ASD, but current studies have shown that screening with microarrays has up to fivefold increase in diagnostic yield. Recent work by our group and others has shown unbalanced genomic alterations that are likely pathogenic in upwards of 10% of cases, highlighting an important role for CNVs in the genetic aetiology of ASD. A trend in our empirical data has shifted focus for discovery of candidate loci towards individually rare but highly penetrant CNVs instead of looking for common variants of low penetrance. This strategy has proven largely successful in identifying ASD-susceptibility candidate loci, including gains and losses at 16p11.2, SHANK2, NRXN1, and PTCHD1. Another emerging and intriguing trend is the identification of the same genes implicated by rare CNVs across neurodevelopmental disorders, including schizophrenia, attention deficit hyperactivity disorder, and intellectual disability. These observations indicate that similar pathways may be involved in phenotypically distinct outcomes. Although interrogation of the genome at high resolution has led to these novel discoveries, it has also made cataloguing, characterization, and clinical interpretation of the increasing amount of CNV data difficult. Herein, we describe the history of genomic structural variation in ASD and how CNV discovery has been used to pinpoint novel ASD-susceptibility loci. We also discuss the overlap of CNVs across neurodevelopmental disorders and comment on the current challenges of understanding the relationship between CNVs and associated phenotypes in a clinical context."	"Rare deletions at the neurexin 3 locus in autism spectrum disorder. The three members of the human neurexin gene family, neurexin 1 (NRXN1), neurexin 2 (NRXN2), and neurexin 3 (NRXN3), encode neuronal adhesion proteins that have important roles in synapse development and function. In autism spectrum disorder (ASD), as well as in other neurodevelopmental conditions, rare exonic copy-number variants and/or point mutations have been identified in the NRXN1 and NRXN2 loci. We present clinical characterization of four index cases who have been diagnosed with ASD and who possess rare inherited or de novo microdeletions at 14q24.3-31.1, a region that overlaps exons of the alpha and/or beta isoforms of NRXN3. NRXN3 deletions were found in one father with subclinical autism and in a carrier mother and father without formal ASD diagnoses, indicating issues of penetrance and expressivity at this locus. Notwithstanding these clinical complexities, this report on ASD-affected individuals who harbor NRXN3 exonic deletions advances the understanding of the genetic etiology of autism, further enabling molecular diagnoses."	"SAM68 regulates neuronal activity-dependent alternative splicing of neurexin-1. The assembly of synapses and neuronal circuits relies on an array of molecular recognition events and their modification by neuronal activity. Neurexins are a highly polymorphic family of synaptic receptors diversified by extensive alternative splicing. Neurexin variants exhibit distinct isoform-specific biochemical interactions and synapse assembly functions, but the mechanisms governing splice isoform choice are not understood. We demonstrate that Nrxn1 alternative splicing is temporally and spatially controlled in the mouse brain. Neuronal activity triggers a shift in Nrxn1 splice isoform choice via calcium/calmodulin-dependent kinase IV signaling. Activity-dependent alternative splicing of Nrxn1 requires the KH-domain RNA-binding protein SAM68 that associates with RNA response elements in the Nrxn1 pre-mRNA. Our findings uncover SAM68 as a key regulator of dynamic control of Nrxn1 molecular diversity and activity-dependent alternative splicing in the central nervous system."	"High frequency of known copy number abnormalities and maternal duplication 15q11-q13 in patients with combined schizophrenia and epilepsy. Many copy number variants (CNVs) are documented to be associated with neuropsychiatric disorders, including intellectual disability, autism, epilepsy, schizophrenia, and bipolar disorder. Chromosomal deletions of 1q21.1, 3q29, 15q13.3, 22q11.2, and NRXN1 and duplications of 15q11-q13 (maternal), 16p11, and 16p13.3 have the strongest association with schizophrenia. We hypothesized that cases with both schizophrenia and epilepsy would have a higher frequency of disease-associated CNVs and would represent an enriched sample for detection of other mutations associated with schizophrenia. We used array comparative genomic hybridization (CGH) to analyze 235 individuals with both schizophrenia and epilepsy, 80 with bipolar disorder and epilepsy, and 191 controls. We detected 10 schizophrenia plus epilepsy cases in 235 (4.3%) with the above mentioned CNVs compared to 0 in 191 controls (p = 0.003). Other likely pathological findings in schizophrenia plus epilepsy cases included 1 deletion 16p13 and 1 duplication 7q11.23 for a total of 12/235 (5.1%) while a possibly pathogenic duplication of 22q11.2 was found in one control for a total of 1 in 191 (0.5%) controls (p = 0.008). The rate of abnormality in the schizophrenia plus epilepsy of 10/235 for the more definite CNVs compares to a rate of 75/7336 for these same CNVs in a series of unselected schizophrenia cases (p = 0.0004). We found a statistically significant increase in the frequency of CNVs known or likely to be associated with schizophrenia in individuals with both schizophrenia and epilepsy compared to controls. We found an overall 5.1% detection rate of likely pathological findings which is the highest frequency of such findings in a series of schizophrenia patients to date. This evidence suggests that the frequency of disease-associated CNVs in patients with both schizophrenia and epilepsy is significantly higher than for unselected schizophrenia."	"Chromosomal loss of 3q26.3-3q26.32, involving a partial neuroligin 1 deletion, identified by genomic microarray in a child with microcephaly, seizure disorder, and severe intellectual disability. Neuroligin 1 (NLGN1) is one of five members of the neuroligin gene family and may represent a candidate gene for neurological disorders, as members of this family are involved in formation and remodeling of central nervous system synapses. NLGN1 is expressed predominantly in the central nervous system, where it dimerizes and then binds with β-neurexin to form a functional synapse. Mutations in neurexin 1 (NRXN1) as well as two other members of the neuroligin family, NLGN3 and NLGN4, have been associated with autism and mutations in NLGN4 have also been associated with intellectual disability, seizures, and EEG abnormalities. Genomic microarray is recommended for the detection of chromosomal gains or losses in patients with intellectual disability and multiple congenital anomalies. Results of uncertain significance are not uncommon. Parental studies can provide additional information by demonstrating that the imbalance is either de novo or inherited, and therefore is more or less likely to be causative of the clinical phenotype. However, the possibility that even inherited deletions and duplications may play a role in the phenotype of the proband cannot be excluded as many copy number variants associated with neurodevelopmental conditions show incomplete penetrance and may be inherited from an unaffected parent. Here, we report on a patient with a 2.2 Mb deletion at 3q26.3-3q26.32-encompassing the terminal end of NLGN1 and the entire NAALADL2 gene-detected by genomic microarray, and confirmed by FISH and real-time quantitative PCR. The same size deletion was subsequently found in her healthy, asymptomatic, adult mother."	"Neurexins and neuroligins: recent insights from invertebrates. During brain development, each neuron must find and synapse with the correct pre- and postsynaptic partners. The complexity of these connections and the relatively large distances some neurons must send their axons to find the correct partners makes studying brain development one of the most challenging, and yet fascinating disciplines in biology. Furthermore, once the initial connections have been made, the neurons constantly remodel their dendritic and axonal arbours in response to changing demands. Neurexin and neuroligin are two cell adhesion molecules identified as important regulators of this process. The importance of these genes in the development and modulation of synaptic connectivity is emphasised by the observation that mutations in these genes in humans have been associated with cognitive disorders such as Autism spectrum disorders, Tourette syndrome and Schizophrenia. The present review will discuss recent advances in our understanding of the role of these genes in synaptic development and modulation, and in particular, we will focus on recent work in invertebrate models, and how these results relate to studies in mammals."	"Compound heterozygous deletion of NRXN1 causing severe developmental delay with early onset epilepsy in two sisters. Neurexin 1 (NRXN1) is a cell adhesion protein, the normal function of which is critical for effective neurotransmission. It forms a trans-synaptic complex in the central nervous system with neuroligin. There has been one case in the literature of a patient with a heterozygous deletion in NRXN1 on one allele and a nonsense mutation on the other allele, reported to have a Pitt Hopkins-like phenotype. We report on two daughters of healthy, nonconsanguineous, Caucasian parents with biallelic NRXN1 deletions identified by array CGH. The children presented with severe early onset epilepsy, profound developmental delay, gastroesophageal reflux disease, constipation, and early onset puberty. Our report confirms that biallelic NRXN1 mutations result in a severe recessive mental retardation syndrome and broadens the range of phenotypes associated with this gene."	"Forebrain CRF₁ modulates early-life stress-programmed cognitive deficits. Childhood traumatic events hamper the development of the hippocampus and impair declarative memory in susceptible individuals. Persistent elevations of hippocampal corticotropin-releasing factor (CRF), acting through CRF receptor 1 (CRF₁), in experimental models of early-life stress have suggested a role for this endogenous stress hormone in the resulting structural modifications and cognitive dysfunction. However, direct testing of this possibility has been difficult. In the current study, we subjected conditional forebrain CRF₁ knock-out (CRF₁-CKO) mice to an impoverished postnatal environment and examined the role of forebrain CRF₁ in the long-lasting effects of early-life stress on learning and memory. Early-life stress impaired spatial learning and memory in wild-type mice, and postnatal forebrain CRF overexpression reproduced these deleterious effects. Cognitive deficits in stressed wild-type mice were associated with disrupted long-term potentiation (LTP) and a reduced number of dendritic spines in area CA3 but not in CA1. Forebrain CRF₁ deficiency restored cognitive function, LTP and spine density in area CA3, and augmented CA1 LTP and spine density in stressed mice. In addition, early-life stress differentially regulated the amount of hippocampal excitatory and inhibitory synapses in wild-type and CRF₁-CKO mice, accompanied by alterations in the neurexin-neuroligin complex. These data suggest that the functional, structural and molecular changes evoked by early-life stress are at least partly dependent on persistent forebrain CRF₁ signaling, providing a molecular target for the prevention of cognitive deficits in adults with a history of early-life adversity."	"Neurexin-neuroligin adhesions capture surface-diffusing AMPA receptors through PSD-95 scaffolds. The mechanisms governing the recruitment of functional glutamate receptors at nascent excitatory postsynapses following initial axon-dendrite contact remain unclear. We examined here the ability of neurexin/neuroligin adhesions to mobilize AMPA-type glutamate receptors (AMPARs) at postsynapses through a diffusion/trap process involving the scaffold molecule PSD-95. Using single nanoparticle tracking in primary rat and mouse hippocampal neurons overexpressing or lacking neuroligin-1 (Nlg1), a striking inverse correlation was found between AMPAR diffusion and Nlg1 expression level. The use of Nlg1 mutants and inhibitory RNAs against PSD-95 demonstrated that this effect depended on intact Nlg1/PSD-95 interactions. Furthermore, functional AMPARs were recruited within 1 h at nascent Nlg1/PSD-95 clusters assembled by neurexin-1β multimers, a process requiring AMPAR membrane diffusion. Triggering novel neurexin/neuroligin adhesions also caused a depletion of PSD-95 from native synapses and a drop in AMPAR miniature EPSCs, indicating a competitive mechanism. Finally, both AMPAR level at synapses and AMPAR-dependent synaptic transmission were diminished in hippocampal slices from newborn Nlg1 knock-out mice, confirming an important role of Nlg1 in driving AMPARs to nascent synapses. Together, these data reveal a mechanism by which membrane-diffusing AMPARs can be rapidly trapped at PSD-95 scaffolds assembled at nascent neurexin/neuroligin adhesions, in competition with existing synapses."	"RNA-Seq of human neurons derived from iPS cells reveals candidate long non-coding RNAs involved in neurogenesis and neuropsychiatric disorders. Genome-wide expression analysis using next generation sequencing (RNA-Seq) provides an opportunity for in-depth molecular profiling of fundamental biological processes, such as cellular differentiation and malignant transformation. Differentiating human neurons derived from induced pluripotent stem cells (iPSCs) provide an ideal system for RNA-Seq since defective neurogenesis caused by abnormalities in transcription factors, DNA methylation, and chromatin modifiers lie at the heart of some neuropsychiatric disorders. As a preliminary step towards applying next generation sequencing using neurons derived from patient-specific iPSCs, we have carried out an RNA-Seq analysis on control human neurons. Dramatic changes in the expression of coding genes, long non-coding RNAs (lncRNAs), pseudogenes, and splice isoforms were seen during the transition from pluripotent stem cells to early differentiating neurons. A number of genes that undergo radical changes in expression during this transition include candidates for schizophrenia (SZ), bipolar disorder (BD) and autism spectrum disorders (ASD) that function as transcription factors and chromatin modifiers, such as POU3F2 and ZNF804A, and genes coding for cell adhesion proteins implicated in these conditions including NRXN1 and NLGN1. In addition, a number of novel lncRNAs were found to undergo dramatic changes in expression, one of which is HOTAIRM1, a regulator of several HOXA genes during myelopoiesis. The increase we observed in differentiating neurons suggests a role in neurogenesis as well. Finally, several lncRNAs that map near SNPs associated with SZ in genome wide association studies also increase during neuronal differentiation, suggesting that these novel transcripts may be abnormally regulated in a subgroup of patients."	"Recent genomic advances in schizophrenia. Recent studies have supported the hypothesis based upon expectations from population genetics that the high heritability of schizophrenia reflects a combination of relatively common alleles of small effect and rare alleles some with relatively large effects. Genome-wide association studies have identified a number of risk loci at genome-wide levels of significance as well as evidence for a substantial burden of common risk loci. Moreover these recent findings suggest genetic overlap with bipolar disorder which has traditionally been assumed to be genetically distinct from schizophrenia. Genome-wide studies of at least one class of relatively uncommon variant, submicroscopic chromosomal abnormalities often referred to as copy number variations (CNVs), suggest that these confer high risk of schizophrenia. There is evidence both for an increased burden of large, rare CNVs in schizophrenia and that risk is conferred by a number of specific large CNVs as well as by deletions of NRXN1 which encodes the synaptic scaffolding protein neurexin 1. Many of these CNVs have been implicated in autism, mental retardation, epilepsy and other neurodevelopment disorders. These findings have implications for pathogenesis and nosology of schizophrenia and related disorders, and for future genetic studies."	"The putative functional rs1045881 marker of neurexin-1 in schizophrenia and clozapine response. Neurexin-1 (NRXN1) modulates recruitment of NMDA receptors. Furthermore, clozapine reduces hyperactivity of NMDA receptors. Thus, regulation of the NRXN1 gene may mediate the efficacy of clozapine at reducing cortical hyperactivity. We examined the putative functional SNP, rs1045881, for association with schizophrenia, and the potential role of this SNP in clozapine response. The rs1045881 variant was not significantly associated with schizophrenia (N=302 case-control pairs), but with clozapine response (N=163; p=0.030). Baseline and BPRS scores after six months revealed a trend for rs1045881 genotype by treatment interaction (p=0.079). In the post hoc analysis, a significant association between BPRS negative symptoms score and genotype was observed (p=0.033). These results suggest that the rs1045881 NRXN1 polymorphism may influence clozapine response."	"Expanding the clinical spectrum associated with defects in CNTNAP2 and NRXN1. Heterozygous copy-number and missense variants in CNTNAP2 and NRXN1 have repeatedly been associated with a wide spectrum of neuropsychiatric disorders such as developmental language and autism spectrum disorders, epilepsy and schizophrenia. Recently, homozygous or compound heterozygous defects in either gene were reported as causative for severe intellectual disability. 99 patients with severe intellectual disability and resemblance to Pitt-Hopkins syndrome and/or suspected recessive inheritance were screened for mutations in CNTNAP2 and NRXN1. Molecular karyotyping was performed in 45 patients. In 8 further patients with variable intellectual disability and heterozygous deletions in either CNTNAP2 or NRXN1, the remaining allele was sequenced. By molecular karyotyping and mutational screening of CNTNAP2 and NRXN1 in a group of severely intellectually disabled patients we identified a heterozygous deletion in NRXN1 in one patient and heterozygous splice-site, frameshift and stop mutations in CNTNAP2 in four patients, respectively. Neither in these patients nor in eight further patients with heterozygous deletions within NRXN1 or CNTNAP2 we could identify a defect on the second allele. One deletion in NRXN1 and one deletion in CNTNAP2 occurred de novo, in another family the deletion was also identified in the mother who had learning difficulties, and in all other tested families one parent was shown to be healthy carrier of the respective deletion or mutation. We report on patients with heterozygous defects in CNTNAP2 or NRXN1 associated with severe intellectual disability, which has only been reported for recessive defects before. These results expand the spectrum of phenotypic severity in patients with heterozygous defects in either gene. The large variability between severely affected patients and mildly affected or asymptomatic carrier parents might suggest the presence of a second hit, not necessarily located in the same gene."	"Development of patient-specific neurons in schizophrenia using induced pluripotent stem cells. Induced pluripotent stem cell (iPSC) technology has the potential to transform regenerative medicine. It also offers a powerful tool for establishing in vitro models of disease, in particular, for neuropsychiatric disorders where live human neurons are essentially impossible to procure. Using iPSCs derived from three schizophrenia (SZ) patients, one of whom has 22q11.2del (velocardiofacial syndrome; VCFS), the authors developed a culture system to study SZ on a molecular and cellular level. SZ iPSCs were differentiated into functional, primarily glutamatergic neurons that were able to fire action potentials after ∼8 weeks in culture. Early differentiating neurons expressed a number of transcription factors/chromatin remodeling proteins and synaptic proteins relevant to SZ pathogenesis, including ZNF804A, RELN, CNTNAP2, CTNNA2, SMARCA2, and NRXN1. Although a small number of lines were developed in this preliminary study, the SZ line containing 22q11.2del showed a significant delay in the reduction of endogenous OCT4 and NANOG expression that normally occurs during differentiation. Constitutive expression of OCT4 has been observed in Dgcr8-deficient mouse embryonic stem cells (mESCs); DGCR8 maps to the 22q11.2-deleted region. These findings demonstrate that the method of inducing neural differentiation employed is useful for disease modeling in SZ and that the transition of iPSCs with 22q11.2 deletions towards a differentiated state may be marked by subtle changes in expression of pluripotency-associated genes."	"Complex chromosomal rearrangement in a girl with psychomotor-retardation and a de novo inversion: inv(2)(p15;q24.2). Cytogenetic analysis of DNA from a girl with severe psychomotor retardation revealed a de novo pericentric inversion of chromosome 2: 46,XX,inv(2)(p15q24.2). In order to elucidate the possible role of the inversion in the girl's abnormal phenotype, we analyzed the inversion breakpoints. FISH analysis revealed BAC clones spanning the breakpoints at 2p and 2q of the inversion. Southern blot hybridization with DNA probes from the BAC regions was used to refine the localization of the breakpoints, followed by inverse-PCR which enabled us to sequence the inversion breakpoints. We found a complex chromosomal rearrangement, including five breakpoints, four at 2q and one at 2p joined with minor insertions/deletions of a few bases. The breakpoint at 2p was within the NRXN1 gene that has previously been associated with autism, intellectual disabilities, and psychiatric disorders. In 2q, the breakpoints disrupted two genes, TANC1 and RBMS1; the phenotypic effect of these genes is not currently known."	"Neurexin-1 and frontal lobe white matter: an overlapping intermediate phenotype for schizophrenia and autism spectrum disorders. Structural variation in the neurexin-1 (NRXN1) gene increases risk for both autism spectrum disorders (ASD) and schizophrenia. However, the manner in which NRXN1 gene variation may be related to brain morphology to confer risk for ASD or schizophrenia is unknown. 53 healthy individuals between 18-59 years of age were genotyped at 11 single nucleotide polymorphisms of the NRXN1 gene. All subjects received structural MRI scans, which were processed to determine cortical gray and white matter lobar volumes, and volumes of striatal and thalamic structures. Each subject's sensorimotor function was also assessed. The general linear model was used to calculate the influence of genetic variation on neural and cognitive phenotypes. Finally, in silico analysis was conducted to assess potential functional relevance of any polymorphisms associated with brain measures. A polymorphism located in the 3' untranslated region of NRXN1 significantly influenced white matter volumes in whole brain and frontal lobes after correcting for total brain volume, age and multiple comparisons. Follow-up in silico analysis revealed that this SNP is a putative microRNA binding site that may be of functional significance in regulating NRXN1 expression. This variant also influenced sensorimotor performance, a neurocognitive function impaired in both ASD and schizophrenia. Our findings demonstrate that the NRXN1 gene, a vulnerability gene for SCZ and ASD, influences brain structure and cognitive function susceptible in both disorders. In conjunction with our in silico results, our findings provide evidence for a neural and cognitive susceptibility mechanism by which the NRXN1 gene confers risk for both schizophrenia and ASD."	"Genomic Copy Number Analysis in Alzheimer's Disease and Mild Cognitive Impairment: An ADNI Study. Copy number variants (CNVs) are DNA sequence alterations, resulting in gains (duplications) and losses (deletions) of genomic segments. They often overlap genes and may play important roles in disease. Only one published study has examined CNVs in late-onset Alzheimer's disease (AD), and none have examined mild cognitive impairment (MCI). CNV calls were generated in 288 AD, 183 MCI, and 184 healthy control (HC) non-Hispanic Caucasian Alzheimer's Disease Neuroimaging Initiative participants. After quality control, 222 AD, 136 MCI, and 143 HC participants were entered into case/control association analyses, including candidate gene and whole genome approaches. Although no excess CNV burden was observed in cases (AD and/or MCI) relative to controls (HC), gene-based analyses revealed CNVs overlapping the candidate gene CHRFAM7A, as well as CSMD1, SLC35F2, HNRNPCL1, NRXN1, and ERBB4 regions, only in cases. Replication in larger samples is important, after which regions detected here may be promising targets for resequencing."	"Multiple recurrent de novo CNVs, including duplications of the 7q11.23 Williams syndrome region, are strongly associated with autism. We have undertaken a genome-wide analysis of rare copy-number variation (CNV) in 1124 autism spectrum disorder (ASD) families, each comprised of a single proband, unaffected parents, and, in most kindreds, an unaffected sibling. We find significant association of ASD with de novo duplications of 7q11.23, where the reciprocal deletion causes Williams-Beuren syndrome, characterized by a highly social personality. We identify rare recurrent de novo CNVs at five additional regions, including 16p13.2 (encompassing genes USP7 and C16orf72) and Cadherin 13, and implement a rigorous approach to evaluating the statistical significance of these observations. Overall, large de novo CNVs, particularly those encompassing multiple genes, confer substantial risks (OR = 5.6; CI = 2.6-12.0, p = 2.4 × 10(-7)). We estimate there are 130-234 ASD-related CNV regions in the human genome and present compelling evidence, based on cumulative data, for association of rare de novo events at 7q11.23, 15q11.2-13.1, 16p11.2, and Neurexin 1."	"Neurexophilin 1 suppresses the proliferation of hematopoietic progenitor cells. Neurexin I α (NRXN1α) and Dystroglycan (DAG1) are membrane receptors which serve as mutual ligands in the neuronal system. Neurexophilins (NXPHs) bind NRXN1α. NRXN1α was expressed in primitive populations in human CB (huCB) and murine BM (muBM). DAG1 is ubiquitously expressed in hematopoietic tissue; however, osteoblasts appear to be sites of very high expression within muBM. High concentrations of NXPH were found in huCB plasma and murine lineage-positive splenocytes. We evaluated effects of these molecules on huCB and muBM hematopoietic progenitor cells (HPCs) and HSCs. At both a single and population cell level in vitro, we found that NXPH1 was a potent inhibitor of HPC proliferation acting through NRXN1α an effect down-modulated by DAG1. Injection of recombinant NXPH1 in vivo resulted in myelo- and lymphosuppression in the BM, with absolute numbers and cycling status of functional and phenotypically defined HPCs dose- and time-dependently decreased. Competitive HSC transplantations showed no change in the long-term repopulating activity of HSCs from mice exposed to recombinant NXPH1. These results demonstrate the presence and function of a regulated signaling axis in hematopoiesis centered on NRXN1α and its modulation by DAG1 and NXPH1."	"A 10.46 Mb 12p11.1-12.1 interstitial deletion coincident with a 0.19 Mb NRXN1 deletion detected by array CGH in a girl with scoliosis and autism. We present a 12-year-old girl with de novo karyotype 46,XX,del(12)(p11.1p12.1). Array CGH revealed in addition to a 10.466 Mb interstitial deletion on 12p11.1→12p12.1 a 0.191 Mb deletion on 2p16.3. The girl presented with mild facial dysmorphism consisting of microcephaly, hypertelorism, downslanting palpebral fissures, strabismus, broad nasal base, bulbous nose, short philtrum, micro/retrognathia, irregular tooth arrangement, phalangeal deformity in distal phalanges of hands, 5th finger camptodactyly, brachydactyly in feet, history of joint hypermobility, and scoliosis. She was considered to have mild to moderate mental retardation and ascertained for an autism spectrum disorder(ASD). Short arm of chromosome 12 interstitial deletions are rarely reported whereas point mutations and deletions of NRXN1, which is located on chromosome 2p16.3, are associated with ASDs. In this article we present and discuss the phenotypic consequences of a patient who was affected by deletions of two different chromosomal regions."	"Gene expression analysis in lymphoblasts derived from patients with autism spectrum disorder. The autism spectrum disorders (ASDs) are complex neurodevelopmental disorders that result in severe and pervasive impairment in the development of reciprocal social interaction and verbal and nonverbal communication skills. In addition, individuals with ASD have stereotypical behavior, interests and activities. Rare mutations of some genes, such as neuroligin (NLGN) 3/4, neurexin (NRXN) 1, SHANK3, MeCP2 and NHE9, have been reported to be associated with ASD. In the present study, we investigated whether alterations in mRNA expression levels of these genes could be found in lymphoblastoid cell lines derived from patients with ASD. We measured mRNA expression levels of NLGN3/4, NRXN1, SHANK3, MeCP2, NHE9 and AKT1 in lymphoblastoid cells from 35 patients with ASD and 35 healthy controls, as well as from 45 patients with schizophrenia and 45 healthy controls, using real-time quantitative reverse transcriptase polymerase chain reaction assays. The mRNA expression levels of NLGN3 and SHANK3 normalized by β-actin or TBP were significantly decreased in the individuals with ASD compared to controls, whereas no difference was found in the mRNA expression level of MeCP2, NHE9 or AKT1. However, normalized NLGN3 and SHANK3 gene expression levels were not altered in patients with schizophrenia, and expression levels of NLGN4 and NRXN1 mRNA were not quantitatively measurable in lymphoblastoid cells. Our results provide evidence that the NLGN3 and SHANK3 genes may be differentially expressed in lymphoblastoid cell lines from individuals with ASD compared to those from controls. These findings suggest the possibility that decreased mRNA expression levels of these genes might be involved in the pathophysiology of ASD in a substantial population of ASD patients."	"Presenilin/γ-secretase regulates neurexin processing at synapses. Neurexins are a large family of neuronal plasma membrane proteins, which function as trans-synaptic receptors during synaptic differentiation. The binding of presynaptic neurexins to postsynaptic partners, such as neuroligins, has been proposed to participate in a signaling pathway that regulates synapse formation/stabilization. The identification of mutations in neurexin genes associated with autism and mental retardation suggests that dysfunction of neurexins may underlie synaptic defects associated with brain disorders. However, the mechanisms that regulate neurexin function at synapses are still unclear. Here, we show that neurexins are proteolytically processed by presenilins (PS), the catalytic components of the γ-secretase complex that mediates the intramembraneous cleavage of several type I membrane proteins. Inhibition of PS/γ-secretase by using pharmacological and genetic approaches induces a drastic accumulation of neurexin C-terminal fragments (CTFs) in cultured rat hippocampal neurons and mouse brain. Neurexin-CTFs accumulate mainly at the presynaptic terminals of PS conditional double knockout (PS cDKO) mice lacking both PS genes in glutamatergic neurons of the forebrain. The fact that loss of PS function enhances neurexin accumulation at glutamatergic terminals mediated by neuroligin-1 suggests that PS regulate the processing of neurexins at glutamatergic synapses. Interestingly, presenilin 1 (PS1) is recruited to glutamatergic terminals mediated by neuroligin-1, thus concentrating PS1 at terminals containing β-neurexins. Furthermore, familial Alzheimer's disease (FAD)-linked PS1 mutations differentially affect β-neurexin-1 processing. Expression of PS1 M146L and PS1 H163R mutants in PS-/- cells rescues the processing of β-neurexin-1, whereas PS1 C410Y and PS1 ΔE9 fail to rescue the processing defect. These results suggest that PS regulate the synaptic function and processing of neurexins at glutamatergic synapses, and that impaired neurexin processing by PS may play a role in FAD."	"Neurexin-neuroligin transsynaptic interaction mediates learning-related synaptic remodeling and long-term facilitation in aplysia. Neurexin and neuroligin, which undergo heterophilic interactions with each other at the synapse, are mutated in some patients with autism spectrum disorder, a set of disorders characterized by deficits in social and emotional learning. We have explored the role of neurexin and neuroligin at sensory-to-motor neuron synapses of the gill-withdrawal reflex in Aplysia, which undergoes sensitization, a simple form of learned fear. We find that depleting neurexin in the presynaptic sensory neuron or neuroligin in the postsynaptic motor neuron abolishes both long-term facilitation and the associated presynaptic growth induced by repeated pulses of serotonin. Moreover, introduction into the motor neuron of the R451C mutation of neuroligin-3 linked to autism spectrum disorder blocks both intermediate-term and long-term facilitation. Our results suggest that activity-dependent regulation of the neurexin-neuroligin interaction may govern transsynaptic signaling required for the storage of long-term memory, including emotional memory that may be impaired in autism spectrum disorder."	"Dynamic changes in neurexins' alternative splicing: role of Rho-associated protein kinases and relevance to memory formation. The three neurexins genes (NRXN1/2/3) encode polymorphic synaptic membrane proteins that are involved in cognitive functioning. Neurexins' selectivity of function is presumably conferred through differential use of 2 promoters and 5 alternative splicing sites (SS#1/2/3/4/5). In day-old rat brain neurons grown in culture, activation (depolarization) induces reversible, calcium dependent, repression of NRXN2α SS#3 insert. The effects of depolarization on NRXN1/2/3α splicing and biochemical pathways mediating them were further studied in these neurons. NRXN1/2/3α splicing in the course of memory formation in vivo was also explored, using fear conditioning paradigm in rats in which the animals were trained to associate an aversive stimulus (electrical shock) with a neutral context (a tone), resulting in the expression of fear responses to the neutral context.In the cultured neurons depolarization induced, beside NRXN2α SS#3, repression of SS#3 and SS#4 exons in NRXN3α but not NRXN1α. The repressions were mediated by the calcium/protein kinase C/Rho-associated protein kinase (ROCK) pathway. Fear conditioning induced significant and transient repressions of the NRXN1/2/3α SS#4 exons in the rat hippocampus. ROCK inhibition prior to training attenuated the behavioral fear response, the NRXN1/2/3α splicing repressions and subsequent recovery and the levels of excitatory (PSD95) and inhibitory (gephyrin) synaptic proteins in the hippocampus. No such effects were observed in the prefrontal cortex. Significant correlations existed between the fear response and hippocampal NRXN3α and NRXN2α SS#4 inserts as well as PSD95 protein levels. Hippocampal NRXN1α SS#4 insert and gephyrin levels did not correlate with the behavioral response but were negatively correlated with each other.These results show for the first time dynamic, experience related changes in NRXN1/2/3α alternative splicing in the rat brain and a role for ROCK in them. Specific neurexins' transcripts may be involved in synaptic remodeling occurring at an intermediate (hours) time scale in the course of memory formation."	"A case-control association study of NRXN1 polymorphisms with schizophrenia in Chinese Han population. Recent research has implicated that mutations in the neurexin-1 (NRXN1) gene on chromosome 2p16.3 might play a role in schizophrenia, autism, and nicotine dependence. In order to explore the association of NRXN1 polymorphisms with schizophrenia, we made a case-control association study in Chinese Han population. We examined six tag single nucleotide polymorphisms (SNPs) spanning 116.7 kb of NRXN1 in 768 schizophrenic patients and 738 healthy control subjects. The association of NRXN1 polymorphisms with schizophrenia and the age-at-onset of this disease were explored. Our results showed that four SNPs of NRXN1 gene were significantly associated with schizophrenia (rs10490168: G &gt; A, p = 0.017; rs2024513: A &gt; G, p = 0.006; rs13382584: T &gt; C, p = 0.009; and rs1558852: G &gt; A, p = 0.031). Furthermore, the association of SNP rs2024513 with schizophrenia remained significance after the Bonferroni correction. Haplotypes consisting of above six SNPs also showed significantly associated with schizophrenia (global chi-square = 14.725, p = 0.022). A protective haplotype AGTGCA remained associated with schizophrenia, even after 10,000 permutation tests (empirical p-value = 0.043). However, we did not find any association with age-at-onset of schizophrenia with NRXN1 polymorphisms. Our findings suggest that NRXN1 might represent a major susceptibility gene for schizophrenia in Chinese Han population."	"Truncating mutations in NRXN2 and NRXN1 in autism spectrum disorders and schizophrenia. Growing genetic evidence is converging in favor of common pathogenic mechanisms for autism spectrum disorders (ASD), intellectual disability (ID or mental retardation) and schizophrenia (SCZ), three neurodevelopmental disorders affecting cognition and behavior. Copy number variations and deleterious mutations in synaptic organizing proteins including NRXN1 have been associated with these neurodevelopmental disorders, but no such associations have been reported for NRXN2 or NRXN3. From resequencing the three neurexin genes in individuals affected by ASD (n = 142), SCZ (n = 143) or non-syndromic ID (n = 94), we identified a truncating mutation in NRXN2 in a patient with ASD inherited from a father with severe language delay and family history of SCZ. We also identified a de novo truncating mutation in NRXN1 in a patient with SCZ, and other potential pathogenic ASD mutations. These truncating mutations result in proteins that fail to promote synaptic differentiation in neuron coculture and fail to bind either of the established postsynaptic binding partners LRRTM2 or NLGN2 in cell binding assays. Our findings link NRXN2 disruption to the pathogenesis of ASD for the first time and further strengthen the involvement of NRXN1 in SCZ, supporting the notion of a common genetic mechanism in these disorders."	"Neurexins and neuroligins: synapses look out of the nervous system. The scientific interest in the family of the so-called nervous vascular parallels has been growing steadily for the past 15 years, either by addition of new members to the group or, lately, by deepening the analysis of established concepts and mediators. Proteins governing both neurons and vascular cells are known to be involved in events such as cell fate determination and migration/guidance but not in the last and apparently most complex step of nervous system development, the formation and maturation of synapses. Hence, the recent addition to this family of the specific synaptic proteins, Neurexin and Neuroligin, is a double innovation. The two proteins, which were thought to be &quot;simple&quot; adhesive links between the pre- and post-synaptic sides of chemical synapses, are in fact extremely complex and modulate the most subtle synaptic activities. We will discuss the relevant data and the intriguing challenge of transferring synaptic activities to vascular functions."	"Synaptic modulators Nrxn1 and Nrxn3 are disregulated in a Disc1 mouse model of schizophrenia. NA"	"Resequencing and follow-up of neurexin 1 (NRXN1) in schizophrenia patients. Large rare deletions in NRXN1 increase the risk for schizophrenia. The aim of the present study was to determine whether small rare sequence changes in exons and splice sites contribute to the development of schizophrenia in a high-penetrance manner. Complete coding regions and splice sites were resequenced in 94 patients and 94 controls. Among the 16 rare sequence variants, two missense substitutions (E201G and I1068V) were observed in single patients but not in controls. Investigation of DNA samples from family members and in silico analysis of possible effects on protein function produced no evidence of high-penetrance genetic effects. Follow-up genotyping of the most promising findings (E201G and I1068V) in an independent sample of &gt;1400 patients and &gt;1100 controls revealed no overrepresentation in patients compared to controls (E201G: 0/1 and I1068V: 0/0). Since I1068V was observed in a single patient, it is impossible to exclude the possibility that I1068V makes a minor contribution to schizophrenia susceptibility. Overall, however, the results do not suggest the existence of rare, highly penetrant NRXN1 mutations in patients with schizophrenia."	"Copy number variants in schizophrenia: confirmation of five previous findings and new evidence for 3q29 microdeletions and VIPR2 duplications. To evaluate previously reported associations of copy number variants (CNVs) with schizophrenia and to identify additional associations, the authors analyzed CNVs in the Molecular Genetics of Schizophrenia study (MGS) and additional available data. After quality control, MGS data for 3,945 subjects with schizophrenia or schizoaffective disorder and 3,611 screened comparison subjects were available for analysis of rare CNVs (&lt;1% frequency). CNV detection thresholds were chosen that maximized concordance in 151 duplicate assays. Pointwise and genewise analyses were carried out, as well as analyses of previously reported regions. Selected regions were visually inspected and confirmed with quantitative polymerase chain reaction. In analyses of MGS data combined with other available data sets, odds ratios of 7.5 or greater were observed for previously reported deletions in chromosomes 1q21.1, 15q13.3, and 22q11.21, duplications in 16p11.2, and exon-disrupting deletions in NRXN1. The most consistently supported candidate associations across data sets included a 1.6-Mb deletion in chromosome 3q29 (21 genes, TFRC to BDH1) that was previously described in a mild-moderate mental retardation syndrome, exonic duplications in the gene for vasoactive intestinal peptide receptor 2 (VIPR2), and exonic duplications in C16orf72. The case subjects had a modestly higher genome-wide number of gene-containing deletions (&gt;100 kb and &gt;1 Mb) but not duplications. The data strongly confirm the association of schizophrenia with 1q21.1, 15q13.3, and 22q11.21 deletions, 16p11.2 duplications, and exonic NRXN1 deletions. These CNVs, as well as 3q29 deletions, are also associated with mental retardation, autism spectrum disorders, and epilepsy. Additional candidate genes and regions, including VIPR2, were identified. Study of the mechanisms underlying these associations should shed light on the pathophysiology of schizophrenia."	"The role of neurexins in schizophrenia and autistic spectrum disorder. Schizophrenia and autistic spectrum disorder (ASD) are common, chronic mental conditions with both genetic and environmental components to their aetiology. The identification of genes influencing susceptibility to these disorders offers a rational route towards a clearer understanding of the neurobiology, and with this the prospect of treatment and prevention strategies tailored towards the remediation of the altered pathways. Copy number variants (CNVs) underlie many serious illnesses, including neurological and neurodevelopmental syndromes. Recent studies assessing copy number variation in ASD and schizophrenia have repeatedly observed heterozygous deletions eliminating exons of the neurexin-1α gene (but not the neurexin-1β gene) in patients with ASD and schizophrenia. The neurexins are synaptic adhesion proteins that are known to play a key role in synaptic formation and maintenance. The functional significance of the recurrent deletion is poorly understood, but the availability of mice with deletion of the promoter and first exon of neurexin-1α provides direct access to the biological effects of neurexin-1α disruption on phenotypes relevant to ASD and schizophrenia. We review the evidence for the role of neurexin-1α in schizophrenia and ASD, and consider how genetic disruption of neurexin-1α may underpin the neuropathology contributing to these distinct neurodevelopmental disorders."	"Genetic regulation of Nrxn1 [corrected] expression: an integrative cross-species analysis of schizophrenia candidate genes. Neurexin 1 (NRXN1) is a large presynaptic transmembrane protein that has complex and variable patterns of expression in the brain. Sequence variants in NRXN1 are associated with differences in cognition, and with schizophrenia and autism. The murine Nrxn1 gene is also highly polymorphic and is associated with significant variation in expression that is under strong genetic control. Here, we use co-expression analysis, high coverage genomic sequence, and expression quantitative trait locus (eQTL) mapping to study the regulation of this gene in the brain. We profiled a family of 72 isogenic progeny strains of a cross between C57BL/6J and DBA/2J (the BXD family) using exon arrays and massively parallel RNA sequencing. Expression of most Nrxn1 exons have high genetic correlation (r&gt;0.6) because of the segregation of a common trans eQTL on chromosome (Chr) 8 and a common cis eQTL on Chr 17. These two loci are also linked to murine phenotypes relevant to schizophrenia and to a novel human schizophrenia candidate gene with high neuronal expression (Pleckstrin and Sec7 domain containing 3). In both human and mice, NRXN1 is co-expressed with numerous synaptic and cell signaling genes, and known schizophrenia candidates. Cross-species co-expression and protein interaction network analyses identified glycogen synthase kinase 3 beta (GSK3B) as one of the most consistent and conserved covariates of NRXN1. By using the Molecular Genetics of Schizophrenia data set, we were able to test and confirm that markers in NRXN1 and GSK3B have epistatic interactions in human populations that can jointly modulate risk of schizophrenia."	"Neurexin-1, a presynaptic adhesion molecule, localizes at the slit diaphragm of the glomerular podocytes in kidneys. The slit diaphragm connecting the adjacent foot processes of glomerular epithelial cells (podocytes) is the final barrier of the glomerular capillary wall and serves to prevent proteinuria. Podocytes are understood to be terminally differentiated cells and share some common features with neurons. Neurexin is a presynaptic adhesion molecule that plays a role in synaptic differentiation. Although neurexin has been understood to be specifically expressed in neuronal tissues, we found that neurexin was expressed in several organs. Several forms of splice variants of neurexin-1α were detected in the cerebrum, but only one form of neurexin-1α was detected in glomeruli. Immunohistochemical study showed that neurexin restrictedly expressed in the podocytes in kidneys. Dual-labeling analyses showed that neurexin was colocalized with CD2AP, an intracellular component of the slit diaphragm. Immunoprecipitation assay using glomerular lysate showed that neurexin interacted with CD2AP and CASK. These observations indicated that neurexin localized at the slit diaphragm area. The staining intensity of neurexin in podocytes was clearly lowered, and their staining pattern shifted to a more discontinuous patchy pattern in the disease models showing severe proteinuria. The expression and localization of neurexin in these models altered more clearly and rapidly than that of other slit diaphragm components. We propose that neurexin is available as an early diagnostic marker to detect podocyte injury. Neurexin coincided with nephrin, a key molecule of the slit diaphragm detected in a presumptive podocyte of the developing glomeruli and in the glomeruli for which the slit diaphragm is repairing injury. These observations suggest that neurexin is involved in the formation of the slit diaphragm and the maintenance of its function."	"Stimulatory effect of Echinacea purpurea extract on the trafficking activity of mouse dendritic cells: revealed by genomic and proteomic analyses. Several Echinacea species have been used as nutraceuticals or botanical drugs for &quot;immunostimulation&quot;, but scientific evidence supporting their therapeutic use is still controversial. In this study, a phytocompound mixture extracted from the butanol fraction (BF) of a stem and leaf (S+L) extract of E. purpurea ([BF/S+L/Ep]) containing stringently defined bioactive phytocompounds was obtained using standardized and published procedures. The transcriptomic and proteomic effects of this phytoextract on mouse bone marrow-derived dendritic cells (BMDCs) were analyzed using primary cultures. Treatment of BMDCs with [BF/S+L/Ep] did not significantly influence the phenotypic maturation activity of dendritic cells (DCs). Affymetrix DNA microarray and bioinformatics analyses of genes differentially expressed in DCs treated with [BF/S+L/Ep] for 4 or 12 h revealed that the majority of responsive genes were related to cell adhesion or motility (Cdh10, Itga6, Cdh1, Gja1 and Mmp8), or were chemokines (Cxcl2, Cxcl7) or signaling molecules (Nrxn1, Pkce and Acss1). TRANSPATH database analyses of gene expression and related signaling pathways in treated-DCs predicted the JNK, PP2C-α, AKT, ERK1/2 or MAPKAPK pathways as the putative targets of [BF/S+L/Ep]. In parallel, proteomic analysis showed that the expressions of metabolic-, cytoskeleton- or NF-κB signaling-related proteins were regulated by treatment with [BF/S+L/Ep]. In vitro flow cytometry analysis of chemotaxis-related receptors and in vivo cell trafficking assay further showed that DCs treated with [BF/S+L/Ep] were able to migrate more effectively to peripheral lymph node and spleen tissues than DCs treated as control groups. Results from this study suggest that [BF/S+L/Ep] modulates DC mobility and related cellular physiology in the mouse immune system. Moreover, the signaling networks and molecules highlighted here are potential targets for nutritional or clinical application of Echinacea or other candidate medicinal plants."	"New copy number variations in schizophrenia. Genome-wide screenings for copy number variations (CNVs) in patients with schizophrenia have demonstrated the presence of several CNVs that increase the risk of developing the disease and a growing number of large rare CNVs; the contribution of these rare CNVs to schizophrenia remains unknown. Using Affymetrix 6.0 arrays, we undertook a systematic search for CNVs in 172 patients with schizophrenia and 160 healthy controls, all of Italian origin, with the aim of confirming previously identified loci and identifying novel schizophrenia susceptibility genes. We found five patients with a CNV occurring in one of the regions most convincingly implicated as risk factors for schizophrenia: NRXN1 and the 16p13.1 regions were found to be deleted in single patients and 15q11.2 in 2 patients, whereas the 15q13.3 region was duplicated in one patient. Furthermore, we found three distinct patients with CNVs in 2q12.2, 3q29 and 17p12 loci, respectively. These loci were previously reported to be deleted or duplicated in patients with schizophrenia but were never formally associated with the disease. We found 5 large CNVs (&gt;900 kb) in 4q32, 5q14.3, 8q23.3, 11q25 and 17q12 in five different patients that could include some new candidate schizophrenia susceptibility genes. In conclusion, the identification of previously reported CNVs and of new, rare, large CNVs further supports a model of schizophrenia that includes the effect of multiple, rare, highly penetrant variants."	"Differential expression of presynaptic genes in a rat model of postnatal hypoxia: relevance to schizophrenia. Obstetric complications play a role in the pathophysiology of schizophrenia. However, the biological consequences during neurodevelopment until adulthood are unknown. Microarrays have been used for expression profiling in four brain regions of a rat model of neonatal hypoxia as a common factor of obstetric complications. Animals were repeatedly exposed to chronic hypoxia from postnatal (PD) day 4 through day 8 and killed at the age of 150 days. Additional groups of rats were treated with clozapine from PD 120-150. Self-spotted chips containing 340 cDNAs related to the glutamate system (&quot;glutamate chips&quot;) were used. The data show differential (up and down) regulations of numerous genes in frontal (FR), temporal (TE) and parietal cortex (PAR), and in caudate putamen (CPU), but evidently many more genes are upregulated in frontal and temporal cortex, whereas in parietal cortex the majority of genes are downregulated. Because of their primary presynaptic occurrence, five differentially expressed genes (CPX1, NPY, NRXN1, SNAP-25, and STX1A) have been selected for comparisons with clozapine-treated animals by qRT-PCR. Complexin 1 is upregulated in FR and TE cortex but unchanged in PAR by hypoxic treatment. Clozapine downregulates it in FR but upregulates it in PAR cortex. Similarly, syntaxin 1A was upregulated in FR, but downregulated in TE and unchanged in PAR cortex, whereas clozapine downregulated it in FR but upregulated it in PAR cortex. Hence, hypoxia alters gene expression regionally specific, which is in agreement with reports on differentially expressed presynaptic genes in schizophrenia. Chronic clozapine treatment may contribute to normalize synaptic connectivity."	"The neurobiology of schizophrenia: new leads and avenues for treatment. Recent large-scale genetic studies have provided robust evidence implicating several novel susceptibility genes for schizophrenia. These include ZNF804A, TCF4 and NRGN, which contain common variants that weakly increase schizophrenia susceptibility, and NRXN1, in which rare copy number variants have a greater impact on schizophrenia risk. Investigation of these and other substantiated susceptibility genes are providing valuable insight into the primary neurobiological mechanisms underlying schizophrenia, which may lead to novel therapeutic interventions for the disorder. In the meantime, several novel pharmacological strategies, including activation of mGluRs, elevation of synaptic glycine and inhibition of phosphodiesterase 10A, have recently shown promise for the treatment of schizophrenia in clinical trials."	"Axon growth and guidance genes identify nascent, immature, and mature olfactory sensory neurons. Neurogenesis of projection neurons requires that axons be initiated, extended, and connected. Differences in the expression of axon growth and guidance genes must drive these events, but comprehensively characterizing these differences in a single neuronal type has not been accomplished. Guided by a catalog of gene expression in olfactory sensory neurons (OSNs), in situ hybridization and immunohistochemistry revealed that Cxcr4 and Dbn1, two axon initiation genes, marked the developmental transition from basal progenitor cells to immature OSNs in the olfactory epithelium. The CXCR4 immunoreactivity of these nascent OSNs overlapped partially with markers of proliferation of basal progenitor cells and partially with immunoreactivity for GAP43, the canonical marker of immature OSNs. Intracellular guidance cue signaling transcripts Ablim1, Crmp1, Dypsl2, Dpysl3, Dpysl5, Gap43, Marcskl1, and Stmn1-4 were specific to, or much more abundant in, the immature OSN layer. Receptors that mediate axonal inhibition or repulsion tended to be expressed in both immature and mature OSNs (Plxna1, Plxna4, Nrp2, Efna5) or specifically in mature OSNs (Plxna3, Unc5b, Efna3, Epha5, Epha7), although some were specific to immature OSNs (Plxnb1, Plxnb2, Plxdc2, Nrp1). Cell adhesion molecules were expressed either by both immature and mature OSNs (Dscam, Ncam1, Ncam2, Nrxn1) or solely by immature OSNs (Chl1, Nfasc1, Dscaml1). Given the loss of intracellular signaling protein expression, the continued expression of guidance cue receptors in mature OSNs is consistent with a change in the role of these receptors, perhaps to sending signals back to the cell body and nucleus."	"Gene and miRNA expression profiles in autism spectrum disorders. Accumulating data indicate that there is significant genetic heterogeneity underlying the etiology in individuals diagnosed with autism spectrum disorder (ASD). Some rare and highly-penetrant gene variants and copy number variation (CNV) regions including NLGN3, NLGN4, NRXN1, SHANK2, SHANK3, PTCHD1, 1q21.1, maternally-inherited duplication of 15q11-q13, 16p11.2, amongst others, have been identified to be involved in ASD. Genome-wide association studies have identified other apparently low risk loci and in some other cases, ASD arises as a co-morbid phenotype with other medical genetic conditions (e.g. fragile X). The progress studying the genetics of ASD has largely been accomplished using genomic analyses of germline-derived DNA. Here, we used gene and miRNA expression profiling using cell-line derived total RNA to evaluate possible transcripts and networks of molecules involved in ASD. Our analysis identified several novel dysregulated genes and miRNAs in ASD compared with controls, including HEY1, SOX9, miR-486 and miR-181b. All of these are involved in nervous system development and function and some others, for example, are involved in NOTCH signaling networks (e.g. HEY1). Further, we found significant enrichment in molecules associated with neurological disorders such as Rett syndrome and those associated with nervous system development and function including long-term potentiation. Our data will provide a valuable resource for discovery purposes and for comparison to other gene expression-based, genome-wide DNA studies and other functional data."	"Influence of neurexin 1 (NRXN1) polymorphisms in clozapine response. Schizophrenia patients show alterations in the synaptic connectivity. However, it remains unknown whether antipsychotic response may be altered depending on the synaptic connectivity. We tested this association using polymorphisms in the neurexin 1 gene (NRXN1). Large NRXN1 deletions have also been associated with schizophrenia. We genotyped four variants in 140 schizophrenia patients assessed prospectively for clozapine response after 6 months. We observed a trend toward association of clozapine response with the rs12467557 (permuted p = 0.051). These results should be read with caution before independent replication."	"The macromolecular architecture of extracellular domain of alphaNRXN1: domain organization, flexibility, and insights into trans-synaptic disposition. Neurexins are multidomain synaptic cell-adhesion proteins that associate with multiple partnering proteins. Genetic evidence indicates that neurexins may contribute to autism, schizophrenia, and nicotine dependence. Using analytical ultracentrifugation, single-particle electron microscopy, and solution X-ray scattering, we obtained a three-dimensional structural model of the entire extracellular domain of neurexin-1alpha. This protein adopts a dimensionally asymmetric conformation that is monomeric in solution, with a maximum dimension of approximately 170 A. The extracellular domain of alpha-neurexin maintains a characteristic &quot;Y&quot; shape, whereby LNS domains 1-4 form an extended base of the &quot;Y&quot; and LNS5-6 the shorter arms. Moreover, two major regions of flexibility are present: one between EGF1 and LNS2, corresponding to splice site 1, another between LNS5 and 6. We thus provide the first structural insights into the architecture of the extracellular region of neurexin-1alpha, show how the protein may fit in the synaptic cleft, and how partnering proteins could bind simultaneously."	"Neuronal cell adhesion genes: Key players in risk for schizophrenia, bipolar disorder and other neurodevelopmental brain disorders? The major mental disorders, schizophrenia and bipolar disorder are substantially heritable. Recent genomic studies have identified a small number of common and rare risk genes contributing to both disorders and support epidemiological evidence that genetic susceptibility overlaps between them. Prompted by the question of whether risk genes cluster in specific molecular pathways or implicate discrete mechanisms we and others have developed hypothesis-free methods of investigating genome-wide association datasets at a pathway-level. The application of our method to the 212 experimentally-derived pathways in the Kyoto Encycolpaedia of Genes and Genomes (KEGG) database identified significant association between the cell adhesion molecule (CAM) pathway and both schizophrenia and bipolar disorder susceptibility across three GWAS datasets. Interestingly, a similar approach applied to an autistic spectrum disorders (ASDs) sample identified a similar pathway and involved many of the same genes. Disruption of a number of these genes (including NRXN1, CNTNAP2 and CASK) are known to cause diverse neurodevelopmental brain disorder phenotypes including schizophenia, autism, learning disability and specific language disorder. Taken together these studies bring the CAM pathway sharply into focus for more comprehensive DNA sequencing to identify the critical genes, and investigate their relationships and interaction with environmental risk factors in the expression of many seemingly different neurodevelopmental disorders."	"Trans-synaptic interaction of GluRdelta2 and Neurexin through Cbln1 mediates synapse formation in the cerebellum. Elucidation of molecular mechanisms that regulate synapse formation is required for the understanding of neural wiring, higher brain functions, and mental disorders. Despite the wealth of in vitro information, fundamental questions about how glutamatergic synapses are formed in the mammalian brain remain unanswered. Glutamate receptor (GluR) delta2 is essential for cerebellar synapse formation in vivo. Here, we show that the N-terminal domain (NTD) of GluRdelta2 interacts with presynaptic neurexins (NRXNs) through cerebellin 1 precursor protein (Cbln1). The synaptogenic activity of GluRdelta2 is abolished in cerebellar primary cultures from Cbln1 knockout mice and is restored by recombinant Cbln1. Knockdown of NRXNs in cerebellar granule cells also hinders the synaptogenic activity of GluRdelta2. Both the NTD of GluRdelta2 and the extracellular domain of NRXN1beta suppressed the synaptogenic activity of Cbln1 in cerebellar primary cultures and in vivo. These results suggest that GluRdelta2 mediates cerebellar synapse formation by interacting with presynaptic NRXNs through Cbln1."	"Another piece of the autism puzzle. A new study has identified rare de novo mutations in SHANK2 in individuals with autism and/or mental retardation. SHANK2 encodes a scaffolding protein present in excitatory synapses. This finding sheds some light on the pathophysiology of social and cognitive disability."	"Deletions of NRXN1 (neurexin-1) predispose to a wide spectrum of developmental disorders. Research has implicated mutations in the gene for neurexin-1 (NRXN1) in a variety of conditions including autism, schizophrenia, and nicotine dependence. To our knowledge, there have been no published reports describing the breadth of the phenotype associated with mutations in NRXN1. We present a medical record review of subjects with deletions involving exonic sequences of NRXN1. We ascertained cases from 3,540 individuals referred clinically for comparative genomic hybridization testing from March 2007 to January 2009. Twelve subjects were identified with exonic deletions. The phenotype of individuals with NRXN1 deletion is variable and includes autism spectrum disorders, mental retardation, language delays, and hypotonia. There was a statistically significant increase in NRXN1 deletion in our clinical sample compared to control populations described in the literature (P = 8.9 x 10(-7)). Three additional subjects with NRXN1 deletions and autism were identified through the Homozygosity Mapping Collaborative for Autism, and this deletion segregated with the phenotype. Our study indicates that deletions of NRXN1 predispose to a wide spectrum of developmental disorders."	"TCF4, schizophrenia, and Pitt-Hopkins Syndrome. Genome-wide association studies allied with the identification of rare copy number variants have provided important insights into the genetic risk factors for schizophrenia. Recently, a meta-analysis of several genome-wide association studies found, in addition to several other markers, a single nucleotide polymorphism in intron 4 of the TCF4 gene that was associated with schizophrenia. TCF4 encodes a basic helix-loop-helix transcription factor that interacts with other transcription factors to activate or repress gene expression. TCF4 mutations also cause Pitt-Hopkins Syndrome, an autosomal-dominant neurodevelopmental disorder associated with severe mental retardation. Variants in the TCF4 gene may therefore be associated with a range of neuropsychiatric phenotypes, including schizophrenia. Recessive forms of Pitt-Hopkins syndrome are caused by mutations in NRXN1 and CNTNAP2. Interestingly, NRXN1 deletions have been reported in schizophrenia, whereas CNTNAP2 variants are associated with several neuropsychiatric phenotypes. These data suggest that TCF4, NRXN1, and CNTNAP2 may participate in a biological pathway that is altered in patients with schizophrenia and other neuropsychiatric disorders."	"Association between neurexin 1 (NRXN1) polymorphisms and the smoking behavior of elderly Japanese. NA"	"Rare NRXN1 promoter variants in patients with schizophrenia. Copy number variants (CNVs) affecting the neurexin 1 (NRXN1) gene have been found in a subgroup of patients with schizophrenia (SZ). NRXN1 expression is complex, with multiple alternative splice forms generated from two major transcripts; NRXN1alpha and NRXN1beta. The majority of CNVs in SZ are deletions affecting the proximal NRXN1alpha exons and promoter region. Rare chromosomal events are useful in understanding the genetic basis of complex psychiatric disorders since affected genes become feasible targets to analyze for more subtle genetic alterations. As a first step towards this goal, we resequenced the NRXN1alpha promoter region in 170 patients with SZ and a similar number of controls. Two rare mutations were identified in the patient population. One previously unknown single nucleotide polymorphism (SNP) was found in controls. Bioinformatics analysis suggests that binding to several transcription factors may be affected by the minor alleles. The findings suggest that in addition to chromosomal alterations disrupting the NRXN1alpha promoter, rare point mutations in the region may also be involved in SZ pathogenesis."	"A short primer on the functional analysis of copy number variation for biomedical scientists. Recent studies have highlighted the potential prevalence of copy number variation (CNV) in mammalian genomes, including the human genome. These studies suggest that CNVs may play a potentially important role in human phenotypic diversity and disease susceptibility. Here, we consider some of the in silico challenges of characterizing genomic structural variants. While the phenotypic impact of the vast majority of CNVs is likely to be neutral, some CNVs will clearly impact phenotype. Here, we review some of the key databases hosting CNV data and discuss some of the caveats in the analysis of CNV data. The task is now to translate some of the initial associations between CNVs and disease into causal variants."	"Hotspots of large rare deletions in the human genome. We have examined the genomic distribution of large rare autosomal deletions in a sample of 440 parent-parent-child trios from the Quebec founder population (QFP) which was recruited for a study of Attention Deficit Hyperactivity Disorder. DNA isolated from blood was genotyped on Illumina Hap300 arrays. PennCNV combined with visual evaluation of images generated by the Beadstudio program was used to determine deletion boundary definition of sufficient precision to discern independent events, with near-perfect concordance between parent and child in about 98% of the 399 events detected in the offspring; the remaining 7 deletions were considered de novo. We defined several genomic regions of very high deletion frequency ('hotspots'), usually of 0.4-0.6 Mb in length where independent rare deletions were found at frequencies of up to 100 fold higher than the average for the genome as a whole. Five of the 7 de novo deletions were in these hotspots. The same hotspots were also observed in three other studies on members of the QFP, those with schizophrenia, with endometriosis and those from a longevity cohort. Nine of the 13 hotspots carry one gene (7 of which are very long), while the rest contain no known genes. All nine genes have been implicated in disease. The patterns of exon deletions support the proposed roles for some of these genes in human disease, such as NRXN1 and PARKIN, and suggest limited roles or no role at all, for others, including MACROD2 and CTNNA3. Our results also offer an alternative interpretation for the observations of deletions in tumors which have been proposed as reflecting tumor-suppressive activity of genes in these hotspots."	"Intragenic rearrangements in NRXN1 in three families with autism spectrum disorder, developmental delay, and speech delay. NRXN1 is highly expressed in brain and has been shown recently to be associated with ASD, schizophrenia, cognitive and behavioral abnormalities, and alcohol and nicotine dependence. We present three families, in whom we identified intragenic rearrangements within NRXN1 using a clinical targeted oligonucleotide array CGH. An approximately 380 kb deletion was identified in a woman with Asperger syndrome, anxiety, and depression and in all four of her children affected with autism, anxiety, developmental delay, and speech delay but not in an unaffected child. An approximately 180 kb tandem duplication was found in a patient with autistic disorder and cognitive delays, and in his mother and younger brother who have speech delay. An approximately 330 kb tandem duplication was identified in a patient with autistic features. As predicted by conceptual translation, all three genomic rearrangements led to the premature truncation of NRXN1. Our data support previous observations that NRXN1 may be pathogenic in a wide variety of psychiatric diseases, including autism spectrum disorder, global developmental delay, anxiety, and depression."	"Molecular pathways involved in neuronal cell adhesion and membrane scaffolding contribute to schizophrenia and bipolar disorder susceptibility. Susceptibility to schizophrenia and bipolar disorder may involve a substantial, shared contribution from thousands of common genetic variants, each of small effect. Identifying whether risk variants map to specific molecular pathways is potentially biologically informative. We report a molecular pathway analysis using the single-nucleotide polymorphism (SNP) ratio test, which compares the ratio of nominally significant (P&lt;0.05) to nonsignificant SNPs in a given pathway to identify the 'enrichment' for association signals. We applied this approach to the discovery (the International Schizophrenia Consortium (n=6909)) and validation (Genetic Association Information Network (n=2729)) of schizophrenia genome-wide association study (GWAS) data sets. We investigated each of the 212 experimentally validated pathways described in the Kyoto Encyclopaedia of Genes and Genomes in the discovery sample. Nominally significant pathways were tested in the validation sample, and five pathways were found to be significant (P=0.03-0.001); only the cell adhesion molecule (CAM) pathway withstood conservative correction for multiple testing. Interestingly, this pathway was also significantly associated with bipolar disorder (Wellcome Trust Case Control Consortium (n=4847)) (P=0.01). At a gene level, CAM genes associated in all three samples (NRXN1 and CNTNAP2), which were previously implicated in specific language disorder, autism and schizophrenia. The CAM pathway functions in neuronal cell adhesion, which is critical for synaptic formation and normal cell signaling. Similar pathways have also emerged from a pathway analysis of autism, suggesting that mechanisms involved in neuronal cell adhesion may contribute broadly to neurodevelopmental psychiatric phenotypes."	"Neuroligin-1 deletion results in impaired spatial memory and increased repetitive behavior. Neuroligins (NLs) are a family of neural cell-adhesion molecules that are involved in excitatory/inhibitory synapse specification. Multiple members of the NL family (including NL1) and their binding partners have been linked to cases of human autism and mental retardation. We have now characterized NL1-deficient mice in autism- and mental retardation-relevant behavioral tasks. NL1 knock-out (KO) mice display deficits in spatial learning and memory that correlate with impaired hippocampal long-term potentiation. In addition, NL1 KO mice exhibit a dramatic increase in repetitive, stereotyped grooming behavior, a potential autism-relevant abnormality. This repetitive grooming abnormality in NL1 KO mice is associated with a reduced NMDA/AMPA ratio at corticostriatal synapses. Interestingly, we further demonstrate that the increased repetitive grooming phenotype can be rescued in adult mice by administration of the NMDA receptor partial coagonist d-cycloserine. Broadly, these data are consistent with a role of synaptic cell-adhesion molecules in general, and NL1 in particular, in autism and implicate reduced excitatory synaptic transmission as a potential mechanism and treatment target for repetitive behavioral abnormalities."	"Three-way translocation involving MLL, MLLT1, and a novel third partner, NRXN1, in a patient with acute lymphoblastic leukemia and t(2;19;11) (p12;p13.3;q23). Translocations involving mixed lineage leukemia (MLL) gene at 11q23 are associated with de novo acute leukemia as well as therapy-related acute leukemia. More than 100 different translocations involving MLL have been described in acute leukemia, with more than 60 translocation partner genes characterized on the molecular level. In addition to various simple translocations affecting MLL, there are also complex forms involving three or more chromosomes. Here, we describe a novel three-way translocation of t(2;19;11)(p12;p13.3;q23) in a patient with acute lymphoblastic leukemia (ALL). In this translocation, the distal 19p13.3 joins the proximal 11q23 on der(11), whereas the distal 11q23 is translocated to 2p12. Three-way translocations involving 11q23 are often difficult to detect with cytogenetic means alone. In the present case, however, the chromosomes involved in the three-way translocation were readily identifiable by GTG banding. The MLL-MLLT1 fusion products from the derivative chromosome 11 were detected by reverse transcriptase-polymerase chain reaction (RT-PCR), and two splicing variant forms were confirmed by cloning and sequencing. Furthermore, the novel third partner gene, NRXN1, was detected by systematic breakpoint analysis using long-distance inverse-PCR methods (LDI-PCR). The apparent three-way translocation thus identified is noteworthy because few studies have reported complex rearrangements involving 11q23 and 19p13.3 in acute leukemias."	"LRRTM2 interacts with Neurexin1 and regulates excitatory synapse formation. We identify the leucine-rich repeat transmembrane protein LRRTM2 as a key regulator of excitatory synapse development and function. LRRTM2 localizes to excitatory synapses in transfected hippocampal neurons, and shRNA-mediated knockdown of LRRTM2 leads to a decrease in excitatory synapses without affecting inhibitory synapses. LRRTM2 interacts with PSD-95 and regulates surface expression of AMPA receptors, and lentivirus-mediated knockdown of LRRTM2 in vivo decreases the strength of evoked excitatory synaptic currents. Structure-function studies indicate that LRRTM2 induces presynaptic differentiation via the extracellular LRR domain. We identify Neurexin1 as a receptor for LRRTM2 based on affinity chromatography. LRRTM2 binds to both Neurexin 1alpha and Neurexin 1beta, and shRNA-mediated knockdown of Neurexin1 abrogates LRRTM2-induced presynaptic differentiation. These observations indicate that an LRRTM2-Neurexin1 interaction plays a critical role in regulating excitatory synapse development."	"LRRTM2 functions as a neurexin ligand in promoting excitatory synapse formation. Recently, leucine-rich repeat transmembrane proteins (LRRTMs) were found to be synaptic cell-adhesion molecules that, when expressed in nonneuronal cells, induce presynaptic differentiation in contacting axons. We now demonstrate that LRRTM2 induces only excitatory synapses, and that it also acts to induce synapses in transfected neurons similarly to neuroligin-1. Using affinity chromatography, we identified alpha- and beta-neurexins as LRRTM2 ligands, again rendering LRRTM2 similar to neuroligin-1. However, whereas neuroligins bind neurexins containing or lacking an insert in splice site #4, LRRTM2 only binds neurexins lacking an insert in splice site #4. Binding of neurexins to LRRTM2 can produce cell-adhesion junctions, consistent with a trans-interaction regulated by neurexin alternative splicing, and recombinant neurexin-1beta blocks LRRTM2's ability to promote presynaptic differentiation. Thus, our data suggest that two unrelated postsynaptic cell-adhesion molecules, LRRTMs and neuroligins, unexpectedly bind to neurexins as the same presynaptic receptor, but that their binding is subject to distinct regulatory mechanisms."	"Copy number and sequence variants implicate APBA2 as an autism candidate gene. We recently reported an autistic proband and affected sibling with maternally inherited microduplications within the 15q13.1 and 15q13.3 regions that contain a total of 4 genes. The amyloid precursor protein-binding protein A2 (APBA2) gene is located within the 15q13.1 duplication and encodes a neuronal adaptor protein essential to synaptic transmission that interacts directly with NRXN1 at the presynaptic membrane. We interpreted this as evidence for a putative role of APBA2 in autism as larger maternal duplications of 15q11-q13 are the most common known cause of autism. We therefore resequenced 512 subjects with autism spectrum disorder (ASD) and 463 controls, and identified 7 novel nonsynonymous coding variants in ASD subjects compared with 4 in controls. Five of the seven variants in the ASD group were predicted to affect protein function, alter residues conserved across 18 species, or both. All of the variants for which parental DNA was available were inherited. We also found two different nonsynonymous variants in two siblings with autism: (1) a paternally inherited heterozygous 6 bp deletion and (2) a maternally inherited heterozygous missense mutation, the latter also found in a single control. These results indicate compound heterozygous mutations of APBA2 in this autism sibship. The co-occurrence of two nonsynonymous mutations in both affected siblings in a single family, each transmitted from a different unaffected parent, suggest a role for APBA2 mutations in rare individuals with ASD."	"Osmotic avoidance in Caenorhabditis elegans: synaptic function of two genes, orthologues of human NRXN1 and NLGN1, as candidates for autism. Neurexins and neuroligins are cell adhesion molecules present in excitatory and inhibitory synapses, and they are required for correct neuron network function. These proteins are found at the presynaptic and postsynaptic membranes. Studies in mice indicate that neurexins and neurologins have an essential role in synaptic transmission. Recent reports have shown that altered neuronal connections during the development of the human nervous system could constitute the basis of the etiology of numerous cases of autism spectrum disorders. Caenorhabditis elegans could be used as an experimental tool to facilitate the study of the functioning of synaptic components, because of its simplicity for laboratory experimentation, and given that its nervous system and synaptic wiring has been fully characterized. In C. elegans nrx-1 and nlg-1 genes are orthologous to human NRXN1 and NLGN1 genes which encode alpha-neurexin-1 and neuroligin-1 proteins, respectively. In humans and nematodes, the organization of neurexins and neuroligins is similar in respect to functional domains. The head of the nematode contains the amphid, a sensory organ of the nematode, which mediates responses to different stimuli, including osmotic strength. The amphid is made of 12 sensory bipolar neurons with ciliated dendrites and one presynaptic terminal axon. Two of these neurons, named ASHR and ASHL are particularly important in osmotic sensory function, detecting water-soluble repellents with high osmotic strength. The dendrites of these two neurons lengthen to the tip of the mouth and the axons extend to the nerve ring, where they make synaptic connections with other neurons determining the behavioral response. To evaluate the implications of neurexin and neuroligin in high osmotic strength avoidance, we show the different response of C. elegans mutants defective in nrx-1 and nlg-1 genes, using a method based on a 4M fructose ring. The behavioral phenotypes were confirmed using specific RNAi clones. In C. elegans, the dsRNA required to trigger RNAi can be administered by feeding. The delivery of dsRNA through food induces the RNAi interference of the gene of interest thus allowing the identification of genetic components and network pathways."	"ChIP-chip analysis of neurexins and other candidate genes for addiction and neuropsychiatric disorders. Several addiction susceptibility genes have been mapped by linkage and genomewide association. However, functional alleles associated with disease risk have not been identified, with a few possible exceptions. In addition, little is known about the cis- and trans-acting factors involved in regulating their expression. To address these issues, we used a ChIP-chip approach to identify regulatory elements in fetal-brain- targeting genes implicated in addiction and other neuropsychiatric conditions. Our data point to a number of putative regulatory elements, several of which, we show, are functionally significant. Many established or putative regulatory elements map near-disease-associated SNPs. These regions would be of interest to survey for patient-specific functional variants involved in disease susceptibility."	"CNTNAP2 and NRXN1 are mutated in autosomal-recessive Pitt-Hopkins-like mental retardation and determine the level of a common synaptic protein in Drosophila. Heterozygous copy-number variants and SNPs of CNTNAP2 and NRXN1, two distantly related members of the neurexin superfamily, have been repeatedly associated with a wide spectrum of neuropsychiatric disorders, such as developmental language disorders, autism spectrum disorders, epilepsy, and schizophrenia. We now identified homozygous and compound-heterozygous deletions and mutations via molecular karyotyping and mutational screening in CNTNAP2 and NRXN1 in four patients with severe mental retardation (MR) and variable features, such as autistic behavior, epilepsy, and breathing anomalies, phenotypically overlapping with Pitt-Hopkins syndrome. With a frequency of at least 1% in our cohort of 179 patients, recessive defects in CNTNAP2 appear to significantly contribute to severe MR. Whereas the established synaptic role of NRXN1 suggests that synaptic defects contribute to the associated neuropsychiatric disorders and to severe MR as reported here, evidence for a synaptic role of the CNTNAP2-encoded protein CASPR2 has so far been lacking. Using Drosophila as a model, we now show that, as known for fly Nrx-I, the CASPR2 ortholog Nrx-IV might also localize to synapses. Overexpression of either protein can reorganize synaptic morphology and induce increased density of active zones, the synaptic domains of neurotransmitter release. Moreover, both Nrx-I and Nrx-IV determine the level of the presynaptic active-zone protein bruchpilot, indicating a possible common molecular mechanism in Nrx-I and Nrx-IV mutant conditions. We therefore propose that an analogous shared synaptic mechanism contributes to the similar clinical phenotypes resulting from defects in human NRXN1 and CNTNAP2."	"Copy number variation in schizophrenia in the Japanese population. Copy number variants (CNVs) have been shown to increase the risk to develop schizophrenia. The best supported findings are at 1q21.1, 15q11.2, 15q13.3, and 22q11.2 and deletions at the gene neurexin 1 (NRXN1). In this study, we used Affymetrix 5.0 arrays to investigate the role of rare CNVs in 575 patients with schizophrenia and 564 control subjects from Japan. There was a nonsignificant trend for excess of rare CNVs in schizophrenia (p = .087); however, we did not confirm the previously implicated association for very large CNVs (&gt;500 kilobase [kb]) in this population. We provide support for three previous findings in schizophrenia, as we identified one deletion in a case at 1q21.1, one deletion within NRXN1, and four duplications in cases and one in a control subject at 16p13.1, a locus first implicated in autism and later in schizophrenia. In this population, we support some of the previous findings in schizophrenia but could not find an increased burden of very large (&gt;500 kb) CNVs, which was proposed recently. However, we provide support for the role of CNVs at 16p13.1, 1q21.1, and NRXN1."	"Mouse neurexin-1alpha deletion causes correlated electrophysiological and behavioral changes consistent with cognitive impairments. Deletions in the neurexin-1alpha gene were identified in large-scale unbiased screens for copy-number variations in patients with autism or schizophrenia. To explore the underlying biology, we studied the electrophysiological and behavioral phenotype of mice lacking neurexin-1alpha. Hippocampal slice physiology uncovered a defect in excitatory synaptic strength in neurexin-1alpha deficient mice, as revealed by a decrease in miniature excitatory postsynaptic current (EPSC) frequency and in the input-output relation of evoked postsynaptic potentials. This defect was specific for excitatory synaptic transmission, because no change in inhibitory synaptic transmission was observed in the hippocampus. Behavioral studies revealed that, compared with littermate control mice, neurexin-1alpha deficient mice displayed a decrease in prepulse inhibition, an increase in grooming behaviors, an impairment in nest-building activity, and an improvement in motor learning. However, neurexin-1alpha deficient mice did not exhibit any obvious changes in social behaviors or in spatial learning. Together, these data indicate that the neurexin-1alpha deficiency induces a discrete neural phenotype whose extent correlates, at least in part, with impairments observed in human patients."	"What have the genomics ever done for the psychoses? Despite the substantial heritability of the psychoses and their genuine public health burden, the applicability of the genomic approach in psychiatry has been strongly questioned or prematurely dismissed. selective review of the recent literature on molecular genetic and genomic approaches to the psychoses including the early output from genome-wide association studies and the genomic analysis of DNA structural variation. Susceptibility variants at strong candidate genes have been identified including neuregulin, dysbindin, DISC1 and neurexin 1. Rare but highly penetrant copy number variants and new mutations affecting genes involved in neurodevelopment, cell signalling and synaptic function have been described showing some overlapping genetic architecture with other developmental disorders including autism. The de-novo mutations described offer an explanation for the familial sporadic divide and the persistence of schizophrenia in the population. The functional effects of risk variants at the level of cognition and connectivity has been described and recently, ZNF804A has been identified, and the MHC re-identified as risk loci, and it has been shown that at least a third of the variation in liability is due to multiple common risk variants of small effect with a substantial shared genetic liability between schizophrenia and bipolar affective disorder. The genomics have done much for the psychoses to date and more is anticipated."	"Disparate diseases due to copycat copy number variations. NA"	"A genome-wide study of common SNPs and CNVs in cognitive performance in the CANTAB. Psychiatric disorders such as schizophrenia are commonly accompanied by cognitive impairments that are treatment resistant and crucial to functional outcome. There has been great interest in studying cognitive measures as endophenotypes for psychiatric disorders, with the hope that their genetic basis will be clearer. To investigate this, we performed a genome-wide association study involving 11 cognitive phenotypes from the Cambridge Neuropsychological Test Automated Battery. We showed these measures to be heritable by comparing the correlation in 100 monozygotic and 100 dizygotic twin pairs. The full battery was tested in approximately 750 subjects, and for spatial and verbal recognition memory, we investigated a further 500 individuals to search for smaller genetic effects. We were unable to find any genome-wide significant associations with either SNPs or common copy number variants. Nor could we formally replicate any polymorphism that has been previously associated with cognition, although we found a weak signal of lower than expected P-values for variants in a set of 10 candidate genes. We additionally investigated SNPs in genomic loci that have been shown to harbor rare variants that associate with neuropsychiatric disorders, to see if they showed any suggestion of association when considered as a separate set. Only NRXN1 showed evidence of significant association with cognition. These results suggest that common genetic variation does not strongly influence cognition in healthy subjects and that cognitive measures do not represent a more tractable genetic trait than clinical endpoints such as schizophrenia. We discuss a possible role for rare variation in cognitive genomics."	"Neurexin 1 (NRXN1) deletions in schizophrenia. NA"	"Association of a polymorphism in the NRXN3 gene with the degree of smoking in schizophrenia: a preliminary study. Whole genome scan studies have recently identified the NRXN1 and NRXN3 genes as potential contributing factors in the risk for nicotine addiction. We have genotyped 15 single nucleotide polymorphisms (SNPs) spanning the NRXN1 and NRXN3 genes in 195 unrelated patients with schizophrenia for whom information about their smoking status and number of cigarettes smoked per day (CPD) was obtained. The NRXN3 marker rs1004212 was significantly associated with quantity of tobacco smoked. Individuals homozygous for the C allele of rs1004212 smoked more cigarettes per day than heterozygous individuals. We found no significant association of markers within the NRXN1 gene with the risk of smoking or the quantity of tobacco smoked. Because of the relatively small sample size, this is a preliminary study. However, this candidate gene study supports the observations of molecular studies implicating the NRXN genes in drug addiction and suggests that variants in the NRXN3 gene could contribute to the degree of nicotine dependence in patients with schizophrenia."	"Prenatal exposure to valproic acid leads to reduced expression of synaptic adhesion molecule neuroligin 3 in mice. In rodents, a single administration of valproic acid (VPA) in utero leads to developmental delays and lifelong deficits in motor performance, social behavior, and anxiety-like behavior in the offspring. Recently, we have demonstrated that VPA mice show alterations in postnatal growth and development, and deficits in olfactory discrimination and social behavior early in development. Based on behavioral and molecular parallels between VPA rodents and individuals with autism, maternal challenge with VPA has been suggested to be a good animal model of autism. Neuroligins (NLGN) are a family of postsynaptic cell-adhesion molecules that play a role in synaptic maturation through association with their presynaptic partners, the neurexins (NRXN). Both NLGNs and NRXN members have been implicated in genetic studies of autism. In the present study, we examined changes at the level of expression of NLGN and NRXN mRNAs in the adult brain from mice exposed in utero to VPA. Mouse brain tissue was processed using in situ hybridization and analyzed with densitometry to examine expression of three NLGN genes (NLGN1, NLGN2, and NLGN3) and three NRXN genes (NRXN1, NRXN2, and NRXN3). Expression levels of NLGN1, NLGN2, NRXN1, NRXN2, and NRXN3 were observed to be similar in VPA and control mice. NLGN3 mRNA expression was found to be significantly lower in the VPA mice relative to control animals in hippocampal subregions, cornu ammonis (CA1) and dentate gyrus, and somatosensory cortex. This lowered expression may be linked to autistic-like behavioral phenotype observed in the VPA mice."	"Genome-wide analyses of exonic copy number variants in a family-based study point to novel autism susceptibility genes. The genetics underlying the autism spectrum disorders (ASDs) is complex and remains poorly understood. Previous work has demonstrated an important role for structural variation in a subset of cases, but has lacked the resolution necessary to move beyond detection of large regions of potential interest to identification of individual genes. To pinpoint genes likely to contribute to ASD etiology, we performed high density genotyping in 912 multiplex families from the Autism Genetics Resource Exchange (AGRE) collection and contrasted results to those obtained for 1,488 healthy controls. Through prioritization of exonic deletions (eDels), exonic duplications (eDups), and whole gene duplication events (gDups), we identified more than 150 loci harboring rare variants in multiple unrelated probands, but no controls. Importantly, 27 of these were confirmed on examination of an independent replication cohort comprised of 859 cases and an additional 1,051 controls. Rare variants at known loci, including exonic deletions at NRXN1 and whole gene duplications encompassing UBE3A and several other genes in the 15q11-q13 region, were observed in the course of these analyses. Strong support was likewise observed for previously unreported genes such as BZRAP1, an adaptor molecule known to regulate synaptic transmission, with eDels or eDups observed in twelve unrelated cases but no controls (p = 2.3x10(-5)). Less is known about MDGA2, likewise observed to be case-specific (p = 1.3x10(-4)). But, it is notable that the encoded protein shows an unexpectedly high similarity to Contactin 4 (BLAST E-value = 3x10(-39)), which has also been linked to disease. That hundreds of distinct rare variants were each seen only once further highlights complexity in the ASDs and points to the continued need for larger cohorts."	"A synaptic trek to autism. Autism spectrum disorders (ASD) are diagnosed on the basis of three behavioral features namely deficits in social communication, absence or delay in language, and stereotypy. The susceptibility genes to ASD remain largely unknown, but two major pathways are emerging. Mutations in TSC1/TSC2, NF1, or PTEN activate the mTOR/PI3K pathway and lead to syndromic ASD with tuberous sclerosis, neurofibromatosis, or macrocephaly. Mutations in NLGN3/4, SHANK3, or NRXN1 alter synaptic function and lead to mental retardation, typical autism, or Asperger syndrome. The mTOR/PI3K pathway is associated with abnormal cellular/synaptic growth rate, whereas the NRXN-NLGN-SHANK pathway is associated with synaptogenesis and imbalance between excitatory and inhibitory currents. Taken together, these data strongly suggest that abnormal synaptic homeostasis represent a risk factor to ASD."	"Autism genome-wide copy number variation reveals ubiquitin and neuronal genes. Autism spectrum disorders (ASDs) are childhood neurodevelopmental disorders with complex genetic origins. Previous studies focusing on candidate genes or genomic regions have identified several copy number variations (CNVs) that are associated with an increased risk of ASDs. Here we present the results from a whole-genome CNV study on a cohort of 859 ASD cases and 1,409 healthy children of European ancestry who were genotyped with approximately 550,000 single nucleotide polymorphism markers, in an attempt to comprehensively identify CNVs conferring susceptibility to ASDs. Positive findings were evaluated in an independent cohort of 1,336 ASD cases and 1,110 controls of European ancestry. Besides previously reported ASD candidate genes, such as NRXN1 (ref. 10) and CNTN4 (refs 11, 12), several new susceptibility genes encoding neuronal cell-adhesion molecules, including NLGN1 and ASTN2, were enriched with CNVs in ASD cases compared to controls (P = 9.5 x 10(-3)). Furthermore, CNVs within or surrounding genes involved in the ubiquitin pathways, including UBE3A, PARK2, RFWD2 and FBXO40, were affected by CNVs not observed in controls (P = 3.3 x 10(-3)). We also identified duplications 55 kilobases upstream of complementary DNA AK123120 (P = 3.6 x 10(-6)). Although these variants may be individually rare, they target genes involved in neuronal cell-adhesion or ubiquitin degradation, indicating that these two important gene networks expressed within the central nervous system may contribute to the genetic susceptibility of ASD."	"Genetics of autism spectrum disorders. Autism spectrum disorders (ASDs) are a clinically complex group of childhood disorders that have firm evidence of an underlying genetic etiology. Many techniques have been used to characterize the genetic bases of ASDs. Linkage studies have identified several replicated susceptibility loci, including 2q24-2q31, 7q, and 17q11-17q21. Association studies and mutation analysis of candidate genes have implicated the synaptic genes NRXN1, NLGN3, NLGN4, SHANK3, and CNTNAP2 in ASDs. Traditional cytogenetic approaches highlight the high frequency of large chromosomal abnormalities (3%-7% of patients), including the most frequently observed maternal 15q11-13 duplications (1%-3% of patients). Newly developed techniques include high-resolution DNA microarray technologies, which have discovered formerly undetectable submicroscopic copy number variants, and genomewide association studies, which allow simultaneous detection of multiple genes associated with ASDs. Although great progress has been made in autism genetics, the molecular bases of most ASDs remains enigmatic."	"Schizophrenia genetics: advancing on two fronts. Recent studies have supported the hypothesis that the high heritability of schizophrenia reflects a combination of relatively common alleles of small effect and some rare alleles with relatively large effects. Genome-wide association studies have identified at least one common allele of small effect at ZNF804a, which encodes a putative zinc finger binding protein, as well as possible roles for other loci. The genome-wide studies of at least one class of relatively uncommon variant, submicroscopic chromosomal abnormalities often referred to as copy number variations (CNVs), suggest that these confer high risk of schizophrenia. There is evidence both for an increased burden of CNVs in schizophrenia and that risk is conferred by specific large deletions at 1q21.1 and at 15q13.2 and by deletions of NRXN1 which encodes the synaptic scaffolding protein neurexin 1."	"A genome-wide investigation of SNPs and CNVs in schizophrenia. We report a genome-wide assessment of single nucleotide polymorphisms (SNPs) and copy number variants (CNVs) in schizophrenia. We investigated SNPs using 871 patients and 863 controls, following up the top hits in four independent cohorts comprising 1,460 patients and 12,995 controls, all of European origin. We found no genome-wide significant associations, nor could we provide support for any previously reported candidate gene or genome-wide associations. We went on to examine CNVs using a subset of 1,013 cases and 1,084 controls of European ancestry, and a further set of 60 cases and 64 controls of African ancestry. We found that eight cases and zero controls carried deletions greater than 2 Mb, of which two, at 8p22 and 16p13.11-p12.4, are newly reported here. A further evaluation of 1,378 controls identified no deletions greater than 2 Mb, suggesting a high prior probability of disease involvement when such deletions are observed in cases. We also provide further evidence for some smaller, previously reported, schizophrenia-associated CNVs, such as those in NRXN1 and APBA2. We could not provide strong support for the hypothesis that schizophrenia patients have a significantly greater &quot;load&quot; of large (&gt;100 kb), rare CNVs, nor could we find common CNVs that associate with schizophrenia. Finally, we did not provide support for the suggestion that schizophrenia-associated CNVs may preferentially disrupt genes in neurodevelopmental pathways. Collectively, these analyses provide the first integrated study of SNPs and CNVs in schizophrenia and support the emerging view that rare deleterious variants may be more important in schizophrenia predisposition than common polymorphisms. While our analyses do not suggest that implicated CNVs impinge on particular key pathways, we do support the contribution of specific genomic regions in schizophrenia, presumably due to recurrent mutation. On balance, these data suggest that very few schizophrenia patients share identical genomic causation, potentially complicating efforts to personalize treatment regimens."	"Polarized targeting of neurexins to synapses is regulated by their C-terminal sequences. Two families of cell-adhesion molecules, predominantly presynaptic neurexins and postsynaptic neuroligins, are important for the formation and functioning of synapses in the brain, and mutations in several genes encoding these transmembrane proteins have been found in autism patients. However, very little is known about how neurexins are targeted to synapses and which mechanisms regulate this process. Using various epitope-tagged neurexins in primary hippocampal neurons of wild-type and knock-out mice in vitro and in transgenic animals in vivo, we show that neurexins are trafficked throughout neurons via transport vesicles and the plasma membrane insertion of neurexins occurs preferentially in the axonal/synaptic compartment. We also observed that exit of neurexins from the ER/Golgi and correct targeting require their PDZ-binding motif at the C terminus, whereas two presumptive ER retention signals are inactive. The ubiquitous presence of neurexin-positive transport vesicles and absence of bassoon colabeling demonstrate that these carriers are not active zone precursor vesicles, but colocalization with CASK, RIM1alpha, and calcium channels suggests that they may carry additional components of the exocytotic machinery. Our data indicate that neurexins are delivered to synapses by a polarized and regulated targeting process that involves PDZ-domain mediated interactions, suggesting a novel pathway for the distribution of neurexins and other synaptic proteins."	"Disruption of the neurexin 1 gene is associated with schizophrenia. Deletions within the neurexin 1 gene (NRXN1; 2p16.3) are associated with autism and have also been reported in two families with schizophrenia. We examined NRXN1, and the closely related NRXN2 and NRXN3 genes, for copy number variants (CNVs) in 2977 schizophrenia patients and 33 746 controls from seven European populations (Iceland, Finland, Norway, Germany, The Netherlands, Italy and UK) using microarray data. We found 66 deletions and 5 duplications in NRXN1, including a de novo deletion: 12 deletions and 2 duplications occurred in schizophrenia cases (0.47%) compared to 49 and 3 (0.15%) in controls. There was no common breakpoint and the CNVs varied from 18 to 420 kb. No CNVs were found in NRXN2 or NRXN3. We performed a Cochran-Mantel-Haenszel exact test to estimate association between all CNVs and schizophrenia (P = 0.13; OR = 1.73; 95% CI 0.81-3.50). Because the penetrance of NRXN1 CNVs may vary according to the level of functional impact on the gene, we next restricted the association analysis to CNVs that disrupt exons (0.24% of cases and 0.015% of controls). These were significantly associated with a high odds ratio (P = 0.0027; OR 8.97, 95% CI 1.8-51.9). We conclude that NRXN1 deletions affecting exons confer risk of schizophrenia."	"Recurrent CNVs disrupt three candidate genes in schizophrenia patients. Schizophrenia is a severe psychiatric disease with complex etiology, affecting approximately 1% of the general population. Most genetics studies so far have focused on disease association with common genetic variation, such as single-nucleotide polymorphisms (SNPs), but it has recently become apparent that large-scale genomic copy-number variants (CNVs) are involved in disease development as well. To assess the role of rare CNVs in schizophrenia, we screened 54 patients with deficit schizophrenia using Affymetrix's GeneChip 250K SNP arrays. We identified 90 CNVs in total, 77 of which have been reported previously in unaffected control cohorts. Among the genes disrupted by the remaining rare CNVs are MYT1L, CTNND2, NRXN1, and ASTN2, genes that play an important role in neuronal functioning but--except for NRXN1--have not been associated with schizophrenia before. We studied the occurrence of CNVs at these four loci in an additional cohort of 752 patients and 706 normal controls from The Netherlands. We identified eight additional CNVs, of which the four that affect coding sequences were found only in the patient cohort. Our study supports a role for rare CNVs in schizophrenia susceptibility and identifies at least three candidate genes for this complex disorder."	"The possible interplay of synaptic and clock genes in autism spectrum disorders. Autism spectrum disorders (ASD) are complex neurodevelopmental conditions characterized by deficits in social communication, absence or delay in language, and stereotyped and repetitive behaviors. Results from genetic studies reveal one pathway associated with susceptibility to ASD, which includes the synaptic cell adhesion molecules NLGN3, NLGN4, and NRXN1 and a postsynaptic scaffolding protein SHANK3. This protein complex is crucial for the maintenance of functional synapses as well as the adequate balance between neuronal excitation and inhibition. Among the factors that could modulate this pathway are the genes controlling circadian rhythms. Indeed, sleep disorders and low melatonin levels are frequently observed in ASD. In this context, an alteration of both this synaptic pathway and the setting of the clock would greatly increase the risk of ASD. In this chapter, I report genetic and neurobiological findings that highlight the major role of synaptic and clock genes in the susceptibility to ASD. On the basis of these lines of evidence, I propose that future studies of ASD should investigate the circadian modulation of synaptic function as a focus for functional analyses and the development of new therapeutic strategies."	"Significant association of the neurexin-1 gene (NRXN1) with nicotine dependence in European- and African-American smokers. The neurexin-1 gene (NRXN1) has been shown to play a fundamental role in synaptogenesis and synaptic maintenance, as well as Ca(2+) channel and NMDA receptor recruitment. A recent study reported that NRXN1 is associated with nicotine dependence (ND); this, together with the intriguing physiological functions of the gene, motivated us to investigate the involvement of NRXN1 with ND in independent samples. In this study, we analyzed 21 single nucleotide polymorphisms (SNPs) within NRXN1 for association with ND, which was assessed by smoking quantity (SQ), the heaviness of smoking index (HSI) and the Fagerström test for ND (FTND). Individual SNP and haplotype association tests were carried out in a sample consisting of 2037 individuals from 602 nuclear families of African-American (AA) or European-American (EA) origin. Individual SNP analysis revealed significant associations of rs2193225 with SQ, HSI and FTND (P = 0.00014-0.0010) in the EA sample and with SQ (P = 0.0019) in the pooled sample under the dominant model and rs6721498 with SQ, HSI and FTND in the AA (P = 0.000090-0.0000086) and pooled (P = 0.0010-0.00099) samples under the additive model, following correction for multiple testing. Haplotype analysis revealed six major haplotypes in the AA sample (minimum P-value = 0.000079), one major haplotype in the EA sample (P = 0.0062) and five major haplotypes in the pooled sample (minimum P-value = 0.00083), which showed significant association with all three ND measures; all of these contained one specific allele from one of the two aforementioned SNPs. Based on our findings that NRXN1 has significant association with ND in two independent samples, recent findings that NRXN1 plays an important role in synaptic development, and the previous report of association, we conclude that this gene represents a strong candidate for involvement in the etiology of ND."	"Structural variation of chromosomes in autism spectrum disorder. Structural variation (copy number variation [CNV] including deletion and duplication, translocation, inversion) of chromosomes has been identified in some individuals with autism spectrum disorder (ASD), but the full etiologic role is unknown. We performed genome-wide assessment for structural abnormalities in 427 unrelated ASD cases via single-nucleotide polymorphism microarrays and karyotyping. With microarrays, we discovered 277 unbalanced CNVs in 44% of ASD families not present in 500 controls (and re-examined in another 1152 controls). Karyotyping detected additional balanced changes. Although most variants were inherited, we found a total of 27 cases with de novo alterations, and in three (11%) of these individuals, two or more new variants were observed. De novo CNVs were found in approximately 7% and approximately 2% of idiopathic families having one child, or two or more ASD siblings, respectively. We also detected 13 loci with recurrent/overlapping CNV in unrelated cases, and at these sites, deletions and duplications affecting the same gene(s) in different individuals and sometimes in asymptomatic carriers were also found. Notwithstanding complexities, our results further implicate the SHANK3-NLGN4-NRXN1 postsynaptic density genes and also identify novel loci at DPP6-DPP10-PCDH9 (synapse complex), ANKRD11, DPYD, PTCHD1, 15q24, among others, for a role in ASD susceptibility. Our most compelling result discovered CNV at 16p11.2 (p = 0.002) (with characteristics of a genomic disorder) at approximately 1% frequency. Some of the ASD regions were also common to mental retardation loci. Structural variants were found in sufficiently high frequency influencing ASD to suggest that cytogenetic and microarray analyses be considered in routine clinical workup."	"Disruption of neurexin 1 associated with autism spectrum disorder. Autism is a neurodevelopmental disorder of complex etiology in which genetic factors play a major role. We have implicated the neurexin 1 (NRXN1) gene in two independent subjects who display an autism spectrum disorder (ASD) in association with a balanced chromosomal abnormality involving 2p16.3. In the first, with karyotype 46,XX,ins(16;2)(q22.1;p16.1p16.3)pat, NRXN1 is directly disrupted within intron 5. Importantly, the father possesses the same chromosomal abnormality in the absence of ASD, indicating that the interruption of alpha-NRXN1 is not fully penetrant and must interact with other factors to produce ASD. The breakpoint in the second subject, with 46,XY,t(1;2)(q31.3;p16.3)dn, occurs approximately 750 kb 5' to NRXN1 within a 2.6 Mb genomic segment that harbors no currently annotated genes. A scan of the NRXN1 coding sequence in a cohort of ASD subjects, relative to non-ASD controls, revealed that amino acid alterations in neurexin 1 are not present at high frequency in ASD. However, a number of rare sequence variants in the coding region, including two missense changes in conserved residues of the alpha-neurexin 1 leader sequence and of an epidermal growth factor (EGF)-like domain, respectively, suggest that even subtle changes in NRXN1 might contribute to susceptibility to ASD."	"Structural basis for synaptic adhesion mediated by neuroligin-neurexin interactions. The heterophilic synaptic adhesion molecules neuroligins and neurexins are essential for establishing and maintaining neuronal circuits by modulating the formation and maturation of synapses. The neuroligin-neurexin adhesion is Ca2+-dependent and regulated by alternative splicing. We report a structure of the complex at a resolution of 2.4 A between the mouse neuroligin-1 (NL1) cholinesterase-like domain and the mouse neurexin-1beta (NX1beta) LNS (laminin, neurexin and sex hormone-binding globulin-like) domain. The structure revealed a delicate neuroligin-neurexin assembly mediated by a hydrophilic, Ca2+-mediated and solvent-supplemented interface, rendering it capable of being modulated by alternative splicing and other regulatory factors. Thermodynamic data supported a mechanism wherein splicing site B of NL1 acts by modulating a salt bridge at the edge of the NL1-NX1beta interface. Mapping neuroligin mutations implicated in autism indicated that most such mutations are structurally destabilizing, supporting deficient neuroligin biosynthesis and processing as a common cause for this brain disorder."	"A patient with vertebral, cognitive and behavioural abnormalities and a de novo deletion of NRXN1alpha. The authors report a patient with mild mental retardation, autistic features, multiple vertebral malformations, and an unusual facial appearance who carries a de novo submicroscopic deletion of chromosome 2p16.3. The patient's deletion is approximately 320 kb in size and includes only the part of the NRXN1 gene that codes for the neurexin1alpha promoter and initial coding exons. The more downstream neurexin1beta promoter and the region surrounding it are intact. Neurexin1beta has been associated with autism in several recent studies, but this is the first reported patient with loss of only neurexin1alpha and not of neurexin1beta. These findings suggest that neurexin1alpha function in correct dosage is necessary for normal neurological development."	"Comparative genome hybridization suggests a role for NRXN1 and APBA2 in schizophrenia. Copy number variations (CNVs) account for a substantial proportion of human genomic variation, and have been shown to cause neurodevelopmental disorders. We sought to determine the relevance of CNVs to the aetiology of schizophrenia (SZ). Whole-genome, high-resolution, tiling path BAC array comparative genomic hybridization (array CGH) was employed to test DNA from 93 individuals with DSM-IV SZ. Common DNA copy number changes that are unlikely to be directly pathogenic in SZ were filtered out by comparison to a reference dataset of 372 control individuals analyzed in our laboratory, and a screen against the Database of Genomic Variants. The remaining aberrations were validated with Affymetrix 250K SNP arrays or 244K Agilent oligo-arrays and tested for inheritance from the parents. A total of 13 aberrations satisfied our criteria. Two of them are very likely to be pathogenic. The first one is a deletion at 2p16.3 that was present in an affected sibling and disrupts NRXN1. The second one is a de novo duplication at 15q13.1 spanning APBA2. The proteins of these two genes interact directly and play a role in synaptic development and function. Both genes have been affected by CNVs in patients with autism and mental retardation, but neither has been previously implicated in SZ."	"Novel genes identified in a high-density genome wide association study for nicotine dependence. Tobacco use is a leading contributor to disability and death worldwide, and genetic factors contribute in part to the development of nicotine dependence. To identify novel genes for which natural variation contributes to the development of nicotine dependence, we performed a comprehensive genome wide association study using nicotine dependent smokers as cases and non-dependent smokers as controls. To allow the efficient, rapid, and cost effective screen of the genome, the study was carried out using a two-stage design. In the first stage, genotyping of over 2.4 million single nucleotide polymorphisms (SNPs) was completed in case and control pools. In the second stage, we selected SNPs for individual genotyping based on the most significant allele frequency differences between cases and controls from the pooled results. Individual genotyping was performed in 1050 cases and 879 controls using 31 960 selected SNPs. The primary analysis, a logistic regression model with covariates of age, gender, genotype and gender by genotype interaction, identified 35 SNPs with P-values less than 10(-4) (minimum P-value 1.53 x 10(-6)). Although none of the individual findings is statistically significant after correcting for multiple tests, additional statistical analyses support the existence of true findings in this group. Our study nominates several novel genes, such as Neurexin 1 (NRXN1), in the development of nicotine dependence while also identifying a known candidate gene, the beta3 nicotinic cholinergic receptor. This work anticipates the future directions of large-scale genome wide association studies with state-of-the-art methodological approaches and sharing of data with the scientific community."	"Ca2+ -dependent splicing of neurexin IIalpha. Neurexins are synaptic adhesion proteins encoded by 3 genes (NRXN1, NRXN2, and NRXN3) each transcribed from 2 promoters to yield longer (alpha) and shorter (beta) forms. The primary gene transcripts undergo extensive alternative splicing leading to products that may differ in synaptic coupling properties. Here we show that depolarization of neurons modulates splicing of NRXN2alpha, particularly at splice sites 1 and 3. Furthermore, we demonstrate that exclusion of exon 11 at splice site 3 is calcium-dependent. These data indicate neuronal activity-dependent splicing of NRXN2alpha. This dynamic process may be important for maintenance of mature neuronal circuits."	"A genome-wide scanning and fine mapping study of COGA data. A thorough genetic mapping study was performed to identify predisposing genes for alcoholism dependence using the Collaborative Study on the Genetics of Alcoholism (COGA) data. The procedure comprised whole-genome linkage and confirmation analyses, single locus and haplotype fine mapping analyses, and gene x environment haplotype regression. Stratified analysis was considered to reduce the ethnic heterogeneity and simultaneously family-based and case-control study designs were applied to detect potential genetic signals. By using different methods and markers, we found high linkage signals at D1S225 (253.7 cM), D1S547 (279.2 cM), D2S1356 (64.6 cM), and D7S2846 (56.8 cM) with nonparametric linkage scores of 3.92, 4.10, 4.44, and 3.55, respectively. We also conducted haplotype and odds ratio analyses, where the response was the dichotomous status of alcohol dependence, explanatory variables were the inferred individual haplotypes and the three statistically significant covariates were age, gender, and max drink (the maximum number of drinks consumed in a 24-hr period). The final model identified important AD-related haplotypes within a candidate region of NRXN1 at 2p21 and a few others in the inter-gene regions. The relative magnitude of risks to the identified risky/protective haplotypes was elucidated."	"Analysis of the human neurexin genes: alternative splicing and the generation of protein diversity. The neurexins are neuronal proteins that function as cell adhesion molecules during synaptogenesis and in intercellular signaling. Although mammalian genomes contain only three neurexin genes, thousands of neurexin isoforms may be expressed through the use of two alternative promoters and alternative splicing at up to five different positions in the pre-mRNA. To begin understanding how the expression of the neurexin genes is regulated, we have determined the complete nucleotide sequence of all three human neurexin genes: NRXN1, NRXN2, and NRXN3. Unexpectedly, two of these, NRXN1 ( approximately 1.1 Mb) and NRXN3 ( approximately 1.7 Mb), are among the largest known human genes. In addition, we have identified several conserved intronic sequence elements that may participate in the regulation of alternative splicing. The sequences of these genes provide insight into the mechanisms used to generate the diversity of neurexin protein isoforms and raise several interesting questions regarding the expression mechanism of large genes."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PURA"	"complex neurodevelopmental disorder"	"The role of caspase-dependent and caspase-independent pathways of apoptosis in the premature rupture of the membranes: A case-control study. Premature rupture of membrane (PROM) remains a problem in obstetrics, the mechanisms of PROM have not been clearly defined. Apoptosis is thought to play a key role in the mechanism, via caspase-dependent and caspase-independent pathways. Caspase-3, Apoptosis-inducing factor (AIF), and anti-apoptosis B-cell lymphoma 2 (Bcl-2) are hypothesized to be involved in PROM. To determine the role of caspase-dependent and caspase-independent pathways in the mechanism of PROM. This was a case-control study involving 42 pregnant women with gestational age between 20-42 wk. Participants were divided into the case group (with PROM) and control group (without PROM). Amniotic membranes were collected immediately after the delivery, and samples were taken from the site of membrane rupture. Immunohistochemical examination was done to determine the expression of Caspase-3, AIF, and Bcl-2. The expressions of Caspase-3 (OR = 9.75; 95% CI = 2.16-43.95; p = 0.001) and AIF (OR = 6.60; 95% CI = 1.48-29.36; p = 0.009) were significantly increased, whereas, Bcl-2 expressions (OR = 8.00; 95% CI = 1.79-35.74; p = 0.004) were significantly decreased in the case group. High Caspase-3, AIF, and low Bcl-2 expression were the risk factors for PROM. Thus, it is evident that caspase-dependent and caspase-independent pathways are involved in the mechanism of PROM."	"Roles of nitrate recycling ratio in the A<sup>2</sup>/O - MBBR denitrifying phosphorus removal system for high-efficient wastewater treatment: Performance comparison, nutrient mechanism and potential evaluation. The long-term effect of nitrate recycling ratios (R = 100%-500%) on the denitrifying phosphorus removal (DPR) characteristics was studied in a novel two-sludge system, which coupled Anaerobic Anoxic Oxic (A<sup>2</sup>/O) with Moving Bed Biofilm Reactor (MBBR) for simultaneous nitrogen (N) and phosphorus (P) removals. During the 220 days' operation, effluent COD (30.87-45.15 mg/L) can meet the discharge standard completely, but N and P removals were significantly affected by the R-value, including CODintra removal efficiency (CODintra-Re: 56.09-85.98%), TN removal (TN-Re: 52.06-80.50%), anaerobic PO4<sup>3-</sup> release (PO4<sup>3-</sup>-An: 10.66-29.02 mg/L) and oxic PO4<sup>3-</sup> absorption (PO4<sup>3-</sup>-O: 2.22-6.26 mg/L). Meanwhile, N and P displayed close correlation with the ΔPO4<sup>3-</sup>/ΔNO3<sup>-</sup> ratio of 4.20-4.41 at R = 300%-400%, resulting in the high-efficient anoxic poly-β-hydroxyalkanoates (PHA) utilization (ΔPHAA: 64.88 mgCOD/gVSS). Based on the stoichiometry methodology, at R of 300%-400%, the percentages of phosphorus accumulation organisms (PAOs) and glycogen accumulating organisms (GAOs) contributed to ΔPHAAn (ΔGlyAn) were 71.7%, 28.3% (61.3%, 38.7%) in the anaerobic stage, respectively, while N denitrification rate (NDRA: 3.91-3.93 mg N/(gVSS·h)) and P uptake rate (PURA: 3.76-3.90 mg P/(gVSS·h)) reached the peak, suggesting superior DPR performance with higher contribution of denitrifying PAOs (DPAOs) (70%) than denitrifying GAOs (DGAOs) (30%) in the anoxic stage. Microbial community analysis showed that Accumulibacter (27.66-30.01%) was more enriched than Competibacter (13.41-14.34%) and was responsible for the improved C, N, P removals and DPR characteristics. For optimizing operation, the combined effect of nitrate recycling ratio with other process parameters especially economic evaluation should be considered."	"We Have Seen the Mutants-and They Are Us: Gifts and Burdens of a Genetic Diagnosis. In this essay, I recount and examine my response to a genetic diagnosis of my disabled daughter. My daughter was forty-nine before the diagnosis came. All her disabilities were traceable to a de novo single gene variant on the PURA gene that was discovered only in 2014. I speak of the jolt and the recalibration that this discovery engendered, concluding that, while it seemed that everything had changed, nothing had changed. But my family did discover a community in which Sesha joins other PURA-perfect sons and daughters and where we as a family acquire a &quot;horizontal identity&quot; marked by a genetic variant."	"Hollow Gold Nanoparticles Produced by Femtosecond Laser Irradiation. Metallic hollow nanoparticles exhibit interesting optical properties that can be controlled by geometrical parameters. Irradiation with femtosecond laser pulses has emerged recently as a valuable tool for reshaping and size modification of plasmonic metal nanoparticles, thereby enabling the synthesis of nanostructures with unique morphologies. In this Letter, we use classical molecular dynamics simulations to investigate the solid-to-hollow conversion of gold nanoparticles upon femtosecond laser irradiation. Here, we suggest an efficient method for producing hollow nanoparticles under certain specific conditions, namely that the particles should be heated to a maximum temperature between 2500 and 3500 K, followed by a fast quenching to room temperature, with cooling rates lower than 120 ps. Therefore, we describe the experimental conditions for efficiently producing hollow nanoparticles, opening a broad range of possibilities for applications in key areas, such as energy storage and catalysis."	"The large family of PC4-like domains - similar folds and functions throughout all kingdoms of life. RNA- and DNA-binding domains are essential building blocks for specific regulation of gene expression. While a number of canonical nucleic acid binding domains share sequence and structural conservation, others are less obviously linked by evolutionary traits. In this review, we describe a protein fold of about 150 aa in length, bearing a conserved β-β-β-β-α-linker-β-β-β-β-α topology and similar nucleic acid binding properties but no apparent sequence conservation. The same overall fold can also be achieved by dimerization of two proteins, each bearing a β-β-β-β-α topology. These proteins include but are not limited to the transcription factors PC4 and P24 from humans and plants, respectively, the human RNA-transport factor Pur-α (also termed PURA), as well as the ssDNA-binding SP_0782 protein from Streptococcus pneumonia and the bacteriophage coat proteins PP7 and MS2. Besides their common overall topology, these proteins share common nucleic acids binding surfaces and thus functional similarity. We conclude that these PC4-like domains include proteins from all kingdoms of life and are much more abundant than previously known."	"Post-mortem CT with macroscopic and microscopic correlation in a case of sudden death due to systemic sarcoidosis. We report a case of sudden death due to systemic sarcoidosis in a fifty-four year old male who was reportedly healthy. A computerized tomography (CT) scan was performed before the autopsy. It showed cardiomegaly with hilar and abdominal lymphadenopathy. The autopsy showed pale yellow plaque deposition on the heart surface which was infiltrating the myocardium. Histological examination of the heart, lungs, liver, and spleen showed extensive sarcoid granulomata which helped in establishing the cause of death."	"Fluctuations in measured radioactive decay rates inside a modified Faraday cage: Correlations with space weather. For several years, reports have been published about fluctuations in measured radioactive decay time-series and in some instances linked to astrophysical as well as classical environmental influences. Anomalous behaviors of radioactive decay measurement and measurement of capacitance inside and outside a modified Faraday cage were documented by our group in previous work. In the present report, we present an in-depth analysis of our measurement with regard to possible correlations with space weather, i.e. the geomagnetic activity (GMA) and cosmic-ray activity (CRA). Our analysis revealed that the decay and capacitance time-series are statistically significantly correlated with GMA and CRA when specific conditions are met. The conditions are explained in detail and an outlook is given on how to further investigate this important finding. Our discovery is relevant for all researchers investigating radioactive decay measurements since they point out that the space weather condition during the measurement is relevant for partially explaining the observed variability."	"Shiga-toxigenic Escherichia coli from animal food sources in Mauritius: Prevalence, serogroup diversity and virulence profiles. Shiga-toxigenic Escherichia coli (STEC) are important human pathogens associated with diarrhea and in some cases haemorrhagic colitis. Contaminated food derived from cattle and wildlife species are often associated with disease outbreaks. In this study, we report the prevalence, serogroup diversity and virulence profiles of STEC strains derived from cattle, rusa deer and pig. Of the 422 samples analyzed, STEC were detected in 40% (80/200) of cattle, 27.0% (33/122) of deer and 13.0% (13/100) of pigs. STEC isolates belonged to 38 O-serogroups whereby 5.2% (24/462) of the isolates belonged to clinically important EHEC-7 serogroups: O26 (n = 2), O103 (n = 1), O145 (n = 3) and O157 (n = 18). Fourteen serogroups (O26, O51, O84, O91, O100, O104, O110, O117, O145, O146, O156, O157, O177 and ONT) displayed multiple virulence profiles. We also identified two serovars (O117 and O119) in deer which are not well-documented in epidemiological surveys. 73.7% (28/38) of recovered O-serogroups are known to be associated with serious human illnesses including haemolytic uremic syndrome (HUS) and bloody diarrhea. STEC isolates harboring single genotypes stx1, stx2, eae and hlyA accounted for 3.0% (14/462), 9.1% (42/462), 47.6% (220/462) and 1.7% (8/462) of all STEC isolates screened, respectively. Virulence combinations stx1 and stx2 were harboured by 1.3% of isolates while strains with genetic profiles eae/hlyA were the second most prevalent amongst STEC isolates. The full known virulent genotypes (stx2/eae, stx1/stx2/eae, stx1/stx2/hlyA and stx2/eae/hlyA) were present in 22 of the 462 STEC strains. A total of 10 different virulence patterns were recovered amongst animal species. Phylogeny of the gnd gene showed that amongst STEC strains, serovar O100 outlined the main cluster. Fourteen (n = 14) different sequence types (STs) were identified from a panel of twenty (n = 20) STEC isolates. One of the isolate (PG007B) possessed a unique ST (adk 10, fumC 693, gyrB 4, icd 1, mdh 8, purA 8, recA 2) that could not be assigned using MLST databases. None of the ST's recovered in deer were observed in domestic species. Our findings shows that food associated animals found on the tropical island of Mauritius carry a diversity of STEC strains with many serovars known to be associated with human disease. This report indicates that increased awareness, surveillance and hygienic attention at critical stages of the human food chain are warranted."	"The phenotype-driven computational analysis yields clinical diagnosis for patients with atypical manifestations of known intellectual disability syndromes. Due to extensive clinical and genetic heterogeneity of intellectual disability (ID) syndromes, the process of diagnosis is very challenging even for expert clinicians. Despite recent advancements in molecular diagnostics methodologies, a significant fraction of ID patients remains without a clinical diagnosis. Here, in a prospective study on a cohort of 21 families (trios) with a child presenting with ID of unknown etiology, we executed phenotype-driven bioinformatic analysis method, PhenIX, utilizing targeted next-generation sequencing (NGS) data and Human Phenotype Ontology (HPO)-encoded phenotype data. This approach resulted in clinical diagnosis for eight individuals presenting with atypical manifestations of Rubinstein-Taybi syndrome 2 (MIM 613684), Spastic Paraplegia 50 (MIM 612936), Wiedemann-Steiner syndrome (MIM 605130), Cornelia de Lange syndrome 2 (MIM 300590), Cerebral creatine deficiency syndrome 1 (MIM 300352), Glass Syndrome (MIM 612313), Mental retardation, autosomal dominant 31 (MIM 616158), and Bosch-Boonstra-Schaaf optic atrophy syndrome (MIM 615722)."	"Muscle stem cell aging: identifying ways to induce tissue rejuvenation. Aging is characterized by the functional and regenerative decline of tissues and organs. This regenerative decline is a consequence of the numerical and functional loss of adult stem cells, which are the corner stone of tissue homeostasis and repair. A palpable example of this decline is provided by skeletal muscle, a specialized tissue composed of postmitotic myofibers that contract to generate force. Skeletal muscle stem cells (satellite cells) are long-lived and support muscle regeneration throughout life, but at advanced age they fail for largely undefined reasons. Here, we discuss recent advances in the understanding of how satellite cells integrate diverse intrinsic and extrinsic processes to ensure optimal homeostatic function and how this integration is perturbed during aging, causing regenerative failure. With this increased understanding, it is now feasible to design and test interventions that delay satellite cell aging. We discuss the exciting new therapeutic potential of integrating and combining distinct anti-aging strategies for regenerative medicine."	"Maximum contaminant level of arsenic in drinking water potentiates quinalphos-induced renal damage on co-administration of both arsenic and quinalphos in Wistar rats. This study was designed to determine alterations in renal biomarkers, antioxidant profile, and histomorphology of renal tissue following subacute exposure to quinalphos alone or in conjunction with arsenic in rats. A total of 54 adult Wistar rats were randomly divided into nine groups of six rats each and were administered sub-lethal concentrations of quinalphos (1/100<sup>th</sup> and 1/10<sup>th</sup> of LD50) orally daily and arsenic (50 and 100 ppb) in drinking water for 28 days. Significantly (p &lt; 0.05) decreased levels of antioxidant biomarkers in renal tissue, viz., total thiols, catalase, superoxide dismutase, glutathione peroxidase, glutathione-s-transferase, and glutathione reductase along with increased (p &lt; 0.05) thiobarbituric acid reacting substance (TBRAS) levels indicated that significant oxidative damage to renal tissue occurred following repeated administrations of quinalphos at either dose levels or arsenic at the concentration of 100 ppb when compared with the control rats. The alterations in the antioxidant parameters were observed to be more pronounced in co-administered groups as compared with either toxicant administered group. Similarly, activity of renal acetylcholinesterase was decreased after repeated exposure to quinalphos or arsenic, but inhibition was higher (up to 48%) in rat renal tissue co-exposed with quinalphos and arsenic at the higher concentration. These findings corroborated with the histopathological alterations in renal tissue of toxicant exposed rats. The altered plasma and tissue antioxidant biomarkers along with histopathological changes in the kidney at higher dose level of either toxicant indicate that renal tissue is significantly impacted by these toxicants, and these effects become more pronounced after their co-administration."	"Elucidating sludge characteristic, substrate transformation and microbial evolution in a two-sludge denitrifying phosphorus removal system under the impact of HRT. Granule formation has been recognized as a promising biotechnology in denitrifying phosphorus removal (DPR) systems by facilitating phosphorus accumulation organisms (PAOs) especially denitrifying PAOs (DPAOs), and hydraulic selection made this a more difficult task in continuous operation. This study aimed at exploring the microscopic mechanism and putting forward an effective strategy for DPR granulation under the impact of hydraulic retention time (HRT) (12 h, 10 h, 8 h) in a novel Anaerobic Anoxic Oxic - Moving Bed Biofilm Reactor (A<sup>2</sup>/O - MBBR) system. With the reduction of intracellular carbon storage (CODintra) efficiency (88.58%-78.53%), nitrogen (N) (85.45%-79.11%) and phosphorus (P) (96.55%-92.47%) removals both dropped, but it exhibited a growth of anoxic phosphorus uptake rate (PURA) (3.79-5.68 mg P/(gMLVSS·h)). The batch tests associating with substrate transformation of poly-β-hydroxyalkanoates (PHA), glycogen (Gly) agreed well with the corresponding stoichiometry of phosphorus release rate (PRR) (4.83-7.53 mg P/(gMLVSS·h)), PURA (3.55-5.43 mg P/(gMLVSS·h)), oxic phosphorus uptake rate (PURO) (6.08-6.21 mg P/(gMLVSS·h)), and DPAOs/PAOs ratios (57.17%-89.31%), indicating a shift of microbial community. DPR granules gradually stabilized with low sludge volume index (SVI5/SVI30 ratio = 1.1-1.2), dense and compact structure, higher P content (11.63%), more extracted extracellular polymeric substances (EPS) (111.40-160.31 mg/gMLVSS) as proteins/polysaccharides (PN/PS) ratios (1.70-3.47) increased, leading to better sludge settleability and cell hydrophobicity. Fluorescence in situ hybridization (FISH) results showed that PAOs (mainly Cluster I: 20.20%) were the dominant bacteria in the A<sup>2</sup>/O reactor although a small amount of Defluviicoccus (3.18-3.48%) was responsible for nitrite accumulation, while ammonium-oxidizing bacteria (AOB) (mainly Nitrosomonas: 10.75%) and nitrite-oxidizing bacteria (NOB) (mainly Nitrospira: 15.06%) were enriched in the MBBR."	"Effect of thermal lensing and the micrometric degraded regions on the catastrophic optical damage process of high-power laser diodes. Catastrophic optical damage (COD) is one of the processes limiting the lifetime of high-power laser diodes. The understanding of this degradation phenomenon is critical to improve the laser power and lifetime for practical applications. In this Letter, we analyze the defect propagation inside the cavity of quantum well (QW) high-power laser diodes presenting COD. For this, we studied the effect of highly localized thermal gradients and degraded regions on the laser field distribution. Finite element method (FEM) simulations are compared to experimental cathodoluminescence (CL) measurements. The presence of micrometric hot spots inside the QW induces the thermal lensing of the laser field. The laser self-focusing inside the cavity eventually generates a new hot spot, and, in a repetitive way, a sequence of hot spots would be created. This would account for the propagation of the dark line defects (DLDs) that are characteristic of this degradation mode."	"Evaluating Native Bee Communities and Nutrition in Managed Grasslands. Native pollinators are important for providing vital services in agroecosystems; however, their numbers are declining globally. Bees are the most efficient and diverse members of the pollinator community; therefore, it is imperative that management strategies be implemented that positively affect bee community composition and health. Here, we test responses of the bee and flowering plant communities to land management treatments in the context of grasslands in the upper Midwestern United States, a critical area with respect to bee declines. Twelve sites were selected to examine floral resources and wild bee communities based on three different types of grasslands: tallgrass prairie remnants, ungrazed restorations, and grazed restorations. Total bee abundance was significantly higher in ungrazed restorations than remnants, but there were no significant differences among grasslands in community composition or Shannon diversity. Across the three grassland types we also examined mass and lipid stores as nutritional health indicators in three sweat bees (Halictidae), Augochlora pura, Agapostemon virescens, and Halictus ligatus. Although there were no differences in lipid content, total average bee mass was significantly higher in Ag. virescens collected from ungrazed restorations as compared to remnants. Floral abundance of native and non-native species combined was significantly higher in grazed restorations compared to remnants and ungrazed restorations. However, ungrazed restorations had higher abundance and richness of native flowering ramets. These data suggest that bee abundance and nutrition are driven by high abundance of native flowering plant species, rather than total flowering plants."	"Bioaugmentation of low C/N ratio wastewater: Effect of acetate and propionate on nutrient removal, substrate transformation, and microbial community behavior. The effect of various acetate/propionate ratios (1:0, 2:1, 1:1, 1:2, and 0:1) in a two-sludge A<sup>2</sup>/O - MBBR process was investigated. Results showed that the increased propionic/acetic ratios exerted indistinctive impact on COD (91.21-93.44%) and P (92.23-93.87%) removals, but high P content (7.42%) accelerated sludge granulation proved by SEM and EDS. Acetate favored N removal (79.52%-82.92%) with higher PURA (3.53-4.06 mgP/(gVSS·h)), while the removal declined (75.14%) due to lower PHB/PHA ratio (52.3-57.8%) with propionate as sole carbon source. Based on the stoichiometry-based quantifications, PAOs were the major contributors to nutrient removal although certain GAOs and OHO participated. The mixture ratio of 1:1 facilitated microbial diversity (995 OTUs), Rhodobacteraceae (25.63%) was responsible for high-efficient denitrifying phosphorus removal, while Defluviicoccus (15.23%) contributed to nitrite accumulation was the main competitiveness with PAOs. Nitrospira, Nitrosomonas, and Nitrosomonadaceae responsible for nitrification accounted for 7.73%, 27.11%, and 38.76% in MBBR, but the biodiversity decreased owing to the enrichment and purification."	"Graphs based methods for simultaneous smoothing and sharpening. We present two new methods for simultaneous smoothing and sharpening of color images: the GMS<sup>3</sup> (Graph Method for Simultaneous Smoothing and Sharpening) and the NGMS<sup>3</sup>(Normalized Graph-Method for Simultaneous Smoothing and Sharpening). They are based on analyzing the structure of local graphs computed at every pixel using their respective neighbors. On the one hand, we define a kernel-based filter for smoothing each pixel with the pixels associated to nodes in its same connected component. On the other hand, we modify each pixel by increasing their differences with respect to the pixels in the other connected components of those local graphs. Our approach is shown to be competitive with respect to other state-of-the-art methods that simultaneously manage both processes.•We provide two methods that carry out the process of smoothing and sharpening simultaneously.•The methods are based on the analysis of the structure of a local graph defined from the differences in the RGB space among the pixels in a 3 × 3 window.•The parameters of the method are adjusted using both observers opinion and the well-known reference image quality assessment BRISQUE (Blind/Referenceless images spatial quality Evaluator) score."	"In vitro evidence of root colonization suggests ecological versatility in the genus Mycena. The root-associated habit has evolved on numerous occasions in different fungal lineages, suggesting a strong evolutionary pressure for saprotrophic fungi to switch to symbiotic associations with plants. Species within the ubiquitous, saprotrophic genus Mycena are frequently major components in molecular studies of root-associated fungal communities, suggesting that an evaluation of their trophic status is warranted. Here, we report on interactions between a range of Mycena species and the plant Betula pendula. In all, 17 Mycena species were inoculated onto B. pendula seedlings. Physical interactions between hyphae and fine roots were examined using differential staining and fluorescence microscopy. Physiological interactions were investigated using <sup>14</sup> C and <sup>32</sup> P to show potential transfer between symbionts. All Mycena species associated closely with fine roots, showing hyphal penetration into the roots, which in some cases were intracellular. Seven species formed mantle-like structures around root tips, but none formed a Hartig net. Mycena pura and Mycena galopus both enhanced seedling growth, with M. pura showing significant transfer of <sup>32</sup> P to the seedlings. Our results support the view that several Mycena species can associate closely with plant roots and some may potentially occupy a transitional state between saprotrophy and biotrophy."	"Species Diversity of Dickeya and Pectobacterium Causing Potato Blackleg Disease in Pakistan. Potato blackleg is caused by a diverse species of pectinolytic bacteria. In Pakistan, approximately 90% of the pathogens involved belong to Pectobacterium atrosepticum. Survey (2014 to 2017), sampling, and isolation from different potato growing areas of Punjab, Pakistan depicted an overall disease incidence of approximately 15%. Thirty-six pectinolytic strains confirmed through biochemical and pathogenicity testing were characterized via gapA gene to identify them at the species level. To further validate the identification, one strain from each species SS26 (P. atrosepticum), SS28 (Pectobacterium polaris), SS70 (Dickeya dianthicola), SS90 (Pectobacterium parmentieri), SS95 (Pectobacterium punjabense), and SS96 (Pectobacterium versatile) were selected for draft genome sequencing and multilocus sequence analysis of 13 housekeeping genes (fusA, rpoD, acnA, purA, gyrB, recA, mdh, mtlD, groEL, secY, glyA, gapA, and rplB). Phylogenetic analysis revealed considerable genetic diversity in the genus Pectobacterium. In silico DNA-DNA hybridization and average nucleotide identity values of the strains selected for genome sequencing were determined with other reference Pectobacterium and Dickeya strains. Moreover, all six representative strains were also phenotypically characterized on the basis of metabolism of different carbon sources. Overall, on the basis of genotypic and phenotypic characteristics, these 36 isolates were grouped into six species: P. atrosepticum, P. versatile, P. parmentieri, P. polaris, P. punjabense, and D. dianthicola."	"Prevalence and correlates of Attention Deficit Hyperactive Disorder (ADHD) risk factors among school children in a rural area of North India. Attention-deficit hyperactive disorder (ADHD) is one of the most common neurodevelopmental disorders of childhood and has the potential for continuity into adolescence and adulthood. Its presence increases difficulties in academic performance and social interactions besides leading to low self-esteem. The present study aimed to determine the prevalence of ADHD among children of age 6-12 years in Government schools of a rural area in Jammu district of J and K. The present study was conducted in R.S. Pura block of Jammu district. Miran Sahib zone of R.S Pura block was chosen randomly and all the government primary schools in this zone were included in the survey. The presence of ADHD was assessed using Vanderbilt ADHD diagnostic teacher rating scale. The children positive for ADHD were visited at their residential places and a personal information questionnaire (PIQ) was administered to their parents-preferably the mother. The data thus collected was presented as proportions. ADHD prevalence was found to be 6.34% (13/205). Majority (69.3%) of the ADHD-positive children were living in a joint family and belonged to lower/lower middle class. Family history of ADHD was absent in all the ADHD-positive children. The current study conducted in a rural area among 6- to 12-year-old children of Government schools has shown a reasonably high ADHD prevalence of 6.34%."	"A novel de novo mutation in the PURA gene associated with a new clinical finding: large brainstem. We report the case of a Caucasian Spanish boy, who showed profound neonatal hypotonia, feeding difficulties, apnea, severe developmental delay, epilepsy, bilateral convergent strabismus, poor verbal language development and a large brainstem. Whole-exome sequence uncovered a novel de novo mutation in the purine-rich element binding protein A gene (PURA; NM_005859.4:c.72del:p.(-Gly25AlafsTer53)) that encodes the transcriptional activator protein Pur-alpha (PURA). Mutations in this gene have been identified in patients with PURA syndrome, a rare disorder characterized by an early hypotonia, developmental delay, severe intellectual disability with or without epilepsy, and disability in expressive language development. Although, up to 75 cases have been identified worldwide, to the best of our knowledge, this is the first patient described with a brainstem larger than normal. In conclusion, our data expand both geneticand phenotypic spectrum associated with PURA gene mutations."	"Ventral prostate and mammary gland phenotype in mice with complete deletion of the ERβ gene. Disagreements about the phenotype of estrogen receptor β (ERβ) knockout mouse, created by removing the DNA-binding domain of the ERβ gene or interruption of the gene with a neocassette (Oliver Smithies ERβ knockout mice [ERβ<sup>OS-/-</sup>]), prompted us to create an ERβ knockout mouse by deleting the ERβ gene with the use of CRISPR/Cas9 technology. We confirmed that the ERβ gene was eliminated from the mouse genome and that no ERβ mRNA or protein was detectable in tissues of this mouse. Overall the phenotype of the ventral prostate (VP) and mammary gland (MG) in ERβ<sup>crispr-/-</sup> mice was similar to, but more severe than, that in the ERβ<sup>OS-/-</sup>mice. In the VP of 6-mo-old ERβ<sup>crispr-/-</sup> mice there was epithelial hyperplasia, fibroplasia, inflammation, stromal overgrowth, and intraductal cancer-like lesions. This was accompanied by an increase in Ki67 and P63 and loss in DACH1 and PURα, two androgen receptor (AR) repressors. In the MG there was overexpression of estrogen receptor α and progesterone receptor, loss of collagen, increase in proliferation and expression of metalloproteases, and invasive epithelium. Surprisingly, by 18 mo of age, the number of hyperplastic foci was reduced, the ducts of the VP and MG became atrophic, and, in the VP, there was massive immune infiltration and massive desquamation of the luminal epithelial cells. These changes were coincident with reduced levels of androgens in males and estrogens in females. We conclude that ERβ is a tumor suppressor gene in the VP and MG where its loss increases the activity AR and ERα, respectively."	"Information Management in Healthcare and Environment: Towards an Automatic System for Fake News Detection. Comments and information appearing on the internet and on different social media sway opinion concerning potential remedies for diagnosing and curing diseases. In many cases, this has an impact on citizens' health and affects medical professionals, who find themselves having to defend their diagnoses as well as the treatments they propose against ill-informed patients. The propagation of these opinions follows the same pattern as the dissemination of fake news about other important topics, such as the environment, via social media networks, which we use as a testing ground for checking our procedure. In this article, we present an algorithm to analyse the behaviour of users of Twitter, the most important social network with respect to this issue, as well as a dynamic knowledge graph construction method based on information gathered from Twitter and other open data sources such as web pages. To show our methodology, we present a concrete example of how the associated graph structure of the tweets related to World Environment Day 2019 is used to develop a heuristic analysis of the validity of the information. The proposed analytical scheme is based on the interaction between the computer tool-a database implemented with Neo4j-and the analyst, who must ask the right questions to the tool, allowing to follow the line of any doubtful data. We also show how this method can be used. We also present some methodological guidelines on how our system could allow, in the future, an automation of the procedures for the construction of an autonomous algorithm for the detection of false news on the internet related to health."	"The Cardiac Genome Clinic: implementing genome sequencing in pediatric heart disease. This study investigated the diagnostic utility of nontargeted genomic testing in patients with pediatric heart disease. We analyzed genome sequencing data of 111 families with cardiac lesions for rare, disease-associated variation. In 14 families (12.6%), we identified causative variants: seven were de novo (ANKRD11, KMT2D, NR2F2, POGZ, PTPN11, PURA, SALL1) and six were inherited from parents with no or subclinical heart phenotypes (FLT4, DNAH9, MYH11, NEXMIF, NIPBL, PTPN11). Outcome of the testing was associated with the presence of extracardiac features (p = 0.02), but not a positive family history for cardiac lesions (p = 0.67). We also report novel plausible gene-disease associations for tetralogy of Fallot/pulmonary stenosis (CDC42BPA, FGD5), hypoplastic left or right heart (SMARCC1, TLN2, TRPM4, VASP), congenitally corrected transposition of the great arteries (UBXN10), and early-onset cardiomyopathy (TPCN1). The identified candidate genes have critical functions in heart development, such as angiogenesis, mechanotransduction, regulation of heart size, chromatin remodeling, or ciliogenesis. This data set demonstrates the diagnostic and scientific value of genome sequencing in pediatric heart disease, anticipating its role as a first-tier diagnostic test. The genetic heterogeneity will necessitate large-scale genomic initiatives for delineating novel gene-disease associations."	"A synthetic Pur-based peptide binds and alters G-quadruplex secondary structure present in the expanded RNA repeat of C9orf72 ALS/FTD. Increased Pur-alpha (Pura) protein levels in animal models alleviate certain cellular symptoms of the disease spectrum amyotrophic lateral sclerosis/frontotemporal dementia (ALS/FTD). Pura is a member of the Pur family of evolutionarily conserved guanine-rich polynucleotide binding proteins containing a repeated signature PUR domain of 60-80 amino acids. Here we have employed a synthetic peptide, TZIP, similar to a Pur domain, but with sequence alterations based on a consensus of evolutionarily conserved Pur family binding domains and having an added transporter sequence. A major familial form of ALS/FTD, C9orf72 (C9), is due to a hexanucleotide repeat expansion (HRE) of (GGGGCC), a Pur binding element. We show by circular dichroism that RNA oligonucleotides containing this purine-rich sequence consist largely of parallel G-quadruplexes. TZIP peptide binds this repeat sequence in both DNA and RNA. It binds the RNA element, including the G-quadruplexes, with a high degree of specificity versus a random oligonucleotide. In addition, TZIP binds both linear and G-quadruplex repeat RNA to form higher order G-quadruplex secondary structures. This change in conformational form by Pur-based peptide represents a new mechanism for regulating G quadruplex secondary structure within the C9 repeat. TZIP modulation of C9 RNA structural configuration may alter interaction of the complex with other proteins. This Pur-based mechanism provides new targets for therapy, and it may help to explain Pura alleviation of certain cellular pathological aspects of ALS/FTD."	"circSamd4 represses myogenic transcriptional activity of PUR proteins. By interacting with proteins and nucleic acids, the vast family of mammalian circRNAs is proposed to influence many biological processes. Here, RNA sequencing analysis of circRNAs differentially expressed during myogenesis revealed that circSamd4 expression increased robustly in mouse C2C12 myoblasts differentiating into myotubes. Moreover, silencing circSamd4, which is conserved between human and mouse, delayed myogenesis and lowered the expression of myogenic markers in cultured myoblasts from both species. Affinity pulldown followed by mass spectrometry revealed that circSamd4 associated with PURA and PURB, two repressors of myogenesis that inhibit transcription of the myosin heavy chain (MHC) protein family. Supporting the hypothesis that circSamd4 might complex with PUR proteins and thereby prevent their interaction with DNA, silencing circSamd4 enhanced the association of PUR proteins with the Mhc promoter, while overexpressing circSamd4 interfered with the binding of PUR proteins to the Mhc promoter. These effects were abrogated when using a mutant circSamd4 lacking the PUR binding site. Our results indicate that the association of PUR proteins with circSamd4 enhances myogenesis by contributing to the derepression of MHC transcription."	"Sestrin prevents atrophy of disused and aging muscles by integrating anabolic and catabolic signals. A unique property of skeletal muscle is its ability to adapt its mass to changes in activity. Inactivity, as in disuse or aging, causes atrophy, the loss of muscle mass and strength, leading to physical incapacity and poor quality of life. Here, through a combination of transcriptomics and transgenesis, we identify sestrins, a family of stress-inducible metabolic regulators, as protective factors against muscle wasting. Sestrin expression decreases during inactivity and its genetic deficiency exacerbates muscle wasting; conversely, sestrin overexpression suffices to prevent atrophy. This protection occurs through mTORC1 inhibition, which upregulates autophagy, and AKT activation, which in turn inhibits FoxO-regulated ubiquitin-proteasome-mediated proteolysis. This study reveals sestrin as a central integrator of anabolic and degradative pathways preventing muscle wasting. Since sestrin also protected muscles against aging-induced atrophy, our findings have implications for sarcopenia."	"PURA Syndrome and Myotonia. NA"	"Digital image-based tracing of geographic origin, winemaker, and grape type for red wine authentication. This work proposes the development of a simple, fast, and inexpensive methodology based on color histograms (obtained from digital images), and supervised pattern recognition techniques to classify red wines produced in the São Francisco Valley (SFV) region to trace geographic origin, winemaker, and grape variety. PCA-LDA coupled with HSI histograms correctly differentiated all of the SFV samples from the other geographic regions in the test set; SPA-LDA selecting just 10 variables in the Grayscale + HSI histogram achieved 100% accuracy in the test set when classifying three different SFV winemakers. Regarding the three grape varieties, SPA-LDA selected 15 variables in the RGB histogram to obtain the best result, misclassifying only 2 samples in the test set. Pairwise grape variety classification was also performed with only 1 misclassification. Besides following the principles of Green Chemistry, the proposed methodology is a suitable analytical tool; for tracing origins, grape type, and even (SFV) winemakers."	"Tinea Confined to Tattoo Sites - An Example of Ruocco's Immunocompromised District. NA"	"A Game-Theory Method to Design Job Rotation Schedules to Prevent Musculoskeletal Disorders Based on Workers' Preferences and Competencies. Job rotation is an organizational strategy based on the systematic exchange of workers between jobs in a planned manner according to specific criteria. This study presents the GS-Rot method, a method based on Game Theory, in order to design job rotation schedules by considering not only workers' job preferences, but also the competencies required for different jobs. With this approach, we promote workers' active participation in the design of the rotation plan. It also let us deal with restrictions in assigning workers to job positions according to their disabilities (temporal or permanent). The GS-Rot method has been implemented online and applied to a case in a work environment characterized by the presence of a high repetition of movements, which is a significant risk factor associated with work-related musculoskeletal disorders (WMSDs). A total of 17 workstations and 17 workers were involved in the rotation, four of them with physical/psychological limitations. Feasible job rotation schedules were obtained in a short time (average time 27.4 milliseconds). The results indicate that in the rotations driven by preference priorities, almost all the workers (94.11%) were assigned to one of their top five preferences. Likewise, 48.52% of job positions were assigned to workers in their top five of their competence lists. When jobs were assigned according to competence, 58.82% of workers got an assignment among their top five competence lists. Furthermore, 55.87% of the workers achieved jobs in their top five preferences. In both rotation scenarios, the workers varied performed jobs, and fatigue accumulation was balanced among them. The GS-Rot method achieved feasible and uniform solutions regarding the workers' exposure to job repetitiveness."	"Phase transition in time-reversible Navier-Stokes equations. We present a comprehensive study of the statistical features of a three-dimensional (3D) time-reversible truncated Navier-Stokes (RNS) system, wherein the standard viscosity ν is replaced by a fluctuating thermostat that dynamically compensates for fluctuations in the total energy. We analyze the statistical features of the RNS steady states in terms of a non-negative dimensionless control parameter R_{r}, which quantifies the balance between the fluctuations of kinetic energy at the forcing length scale ℓ_{f} and the total energy E_{0}. For small R_{r}, the RNS equations are found to produce &quot;warm&quot; stationary statistics, e.g., characterized by the partial thermalization of the small scales. For large R_{r}, the stationary solutions have features akin to standard hydrodynamic ones: they have compact energy support in k space and are essentially insensitive to the truncation scale k_{max}. The transition between the two statistical regimes is observed to be smooth but rather sharp. Using insights from a diffusion model of turbulence (Leith model), we argue that the transition is in fact akin to a continuous second-order phase transition, where R_{r} indeed behaves as a thermodynamic control parameter, e.g., a temperature. A relevant order parameter can be suitably defined in terms of a (normalized) enstrophy, while the symmetry-breaking parameter h is identified as (one over) the truncation scale k_{max}. We find that the signatures of the phase transition close to the critical point R_{r}^{★} can essentially be deduced from a heuristic mean-field Landau free energy. This point of view allows us to reinterpret the relevant asymptotics in which the dynamical ensemble equivalence conjectured by Gallavotti [Phys. Lett. A 223, 91 (1996)PYLAAG0375-960110.1016/S0375-9601(96)00729-3] could hold true. We argue that Gallavotti's limit is precisely the joint limit R_{r}→[over &gt;]R_{r}^{★} and h→[over &gt;]0, with the overset symbol &quot;&gt;&quot; indicating that those limits are approached from above. The limit therefore relates to the statistical features at the critical point. In this regime, our numerics indicate that the low-order statistics of the 3D RNS are indeed qualitatively similar to those observed in direct numerical simulations of the standard Navier-Stokes equations with viscosity chosen so as to match the average value of the reversible thermostat. This result suggests that Gallavotti's equivalence conjecture could indeed be of relevance to model 3D turbulent statistics, and provides a clear guideline for further numerical investigations involving higher resolutions."	"Identification, Classification and Screening for γ-Amino-butyric Acid Production in Lactic Acid Bacteria from Cambodian Fermented Foods. Screening for various types of lactic acid bacteria (LAB) that form the biological agent γ-amino-butyric acid (GABA) is important to produce different kinds of GABA-containing fermented foods. So far, no GABA-producing LAB have been reported from Cambodian fermented foods. Most small-scale fermentations and even some industrial processes in this country still rely on indigenous LAB. The application of GABA-producing autochthonous starters would allow the production of Cambodian fermented foods with an additional nutritional value that meet the population's dietary habits and that are also more attractive for the international food market. Matrix-assisted laser desorption/ionizing time-of-flight mass spectrometry (MALDI-TOF MS) and partial 16S rDNA sequencing were used to identify 68 LAB isolates from Cambodian fermented foods. These isolates were classified and grouped with (GTG)5 rep-PCR, resulting in 50 strains. Subsequently, all strains were investigated for their ability to produce GABA by thin layer chromatography. GABA-positive strains were further analyzed by the GABase assay. Of the six GABA-positive LAB strains-one Lactobacillus futsaii, two Lactobacillus namurensis, and three Lactobacillus plantarum strains-two Lactobacillus plantarum strains produced high amounts of GABA (20.34 mM, 16.47 mM). These strains should be further investigated for their potential application as GABA-producing starter cultures in the food applications."	"Short communication: Whole-genome sequence analysis of 4 fecal blaCMY-2-producing Escherichia coli isolates from Holstein dairy calves. This study was carried out to determine the antimicrobial resistance (AMR) genes and mobile genetic elements of 4 fecal blaCMY-2-producing Escherichia coli isolated from Holstein dairy calves on the same farm using whole-genome sequencing. Genomic analysis revealed that 3 of the 4 isolates shared similar genetic features, including sequence type (ST), serotype, plasmid characteristics, insertion ST, and virulence genes. In addition to genes encoding for complex multidrug resistance efflux systems, all 4 isolates were carriers of genes conferring resistance to β-lactams (blaCMY-2, blaTEM-1B), tetracyclines (tetA, tetB, tetD), aminoglycosides [aadA1, aph(3&quot;)-lb, aph(6)-ld], sulfonamides (sul2), and trimethoprim (dfrA1). We also detected 4 incompatibility plasmid groups: Inc.F, Inc.N, Inc.I, and Inc.Q. A novel ST showing a new purA and mdh allelic combination was found. The 4 isolates were likely enterotoxigenic pathotypes of E. coli, based on serotype and presence of the plasmid Inc.FII(pCoo). This study provides information for comparative genomic analysis of AMR genes and mobile genetic elements. This analysis could give some explanation to the multidrug resistance characteristics of bacteria colonizing the intestinal tract of dairy calves in the first few weeks of life."	"Alcohol drinking exacerbates neural and behavioral pathology in the 3xTg-AD mouse model of Alzheimer's disease. Alzheimer's disease (AD) is a progressive neurodegenerative disorder that represents the most common cause of dementia in the United States. Although the link between alcohol use and AD has been studied, preclinical research has potential to elucidate neurobiological mechanisms that underlie this interaction. This study was designed to test the hypothesis that nondependent alcohol drinking exacerbates the onset and magnitude of AD-like neural and behavioral pathology. We first evaluated the impact of voluntary 24-h, two-bottle choice home-cage alcohol drinking on the prefrontal cortex and amygdala neuroproteome in C57BL/6J mice and found a striking association between alcohol drinking and AD-like pathology. Bioinformatics identified the AD-associated proteins MAPT (Tau), amyloid beta precursor protein (APP), and presenilin-1 (PSEN-1) as the main modulators of alcohol-sensitive protein networks that included AD-related proteins that regulate energy metabolism (ATP5D, HK1, AK1, PGAM1, CKB), cytoskeletal development (BASP1, CAP1, DPYSL2 [CRMP2], ALDOA, TUBA1A, CFL2, ACTG1), cellular/oxidative stress (HSPA5, HSPA8, ENO1, ENO2), and DNA regulation (PURA, YWHAZ). To address the impact of alcohol drinking on AD, studies were conducted using 3xTg-AD mice that express human MAPT, APP, and PSEN-1 transgenes and develop AD-like brain and behavioral pathology. 3xTg-AD and wild-type mice consumed alcohol or saccharin for 4 months. Behavioral tests were administered during a 1-month alcohol-free period. Alcohol intake induced AD-like behavioral pathologies in 3xTg-AD mice including impaired spatial memory in the Morris Water Maze, diminished sensorimotor gating as measured by prepulse inhibition, and exacerbated conditioned fear. Multiplex immunoassay conducted on brain lysates showed that alcohol drinking upregulated primary markers of AD pathology in 3xTg-AD mice: Aβ 42/40 ratio in the lateral entorhinal and prefrontal cortex and total Tau expression in the lateral entorhinal cortex, medial prefrontal cortex, and amygdala at 1-month post alcohol exposure. Immunocytochemistry showed that alcohol use upregulated expression of pTau (Ser199/Ser202) in the hippocampus, which is consistent with late-stage AD. According to the NIA-AA Research Framework, these results suggest that alcohol use is associated with Alzheimer's pathology. Results also showed that alcohol use was associated with a general reduction in Akt/mTOR signaling via several phosphoproteins (IR, IRS1, IGF1R, PTEN, ERK, mTOR, p70S6K, RPS6) in multiple brain regions including hippocampus and entorhinal cortex. Dysregulation of Akt/mTOR phosphoproteins suggests alcohol may target this pathway in AD progression. These results suggest that nondependent alcohol drinking increases the onset and magnitude of AD-like neural and behavioral pathology in 3xTg-AD mice."	"Robust Ultrashort Light Bullets in Strongly Twisted Waveguide Arrays. We introduce a new class of stable light bullets that form in twisted waveguide arrays pumped with ultrashort pulses, where twisting offers a powerful knob to tune the properties of localized states. We find that, above a critical twist, three-dimensional wave packets are unambiguously stabilized, with no minimum energy threshold. As a consequence, when the higher-order perturbations that accompany ultrashort pulse propagation are at play, the bullets dynamically adjust and sweep along stable branches. Therefore, they are predicted to feature an unprecedented experimental robustness."	"Subgrouping Factors Influencing Migraine Intensity in Women: A Semi-automatic Methodology Based on Machine Learning and Information Geometry. Migraine is a heterogeneous condition with multiple clinical manifestations. Machine learning algorithms permit the identification of population groups, providing analytical advantages over other modeling techniques. The aim of this study was to analyze critical features that permit the differentiation of subgroups of patients with migraine according to the intensity and frequency of attacks by using machine learning algorithms. Sixty-seven women with migraine participated. Clinical features of migraine, related disability (Migraine Disability Assessment Scale), anxiety/depressive levels (Hospital Anxiety and Depression Scale), anxiety state/trait levels (State-Trait Anxiety Inventory), and pressure pain thresholds (PPTs) over the temporalis, neck, second metacarpal, and tibialis anterior were collected. Physical examination included the flexion-rotation test, cervical range of cervical motion, forward head position while sitting and standing, passive accessory intervertebral movements (PAIVMs) with headache reproduction, and joint positioning sense error. Subgrouping was based on machine learning algorithms by using the nearest neighbors algorithm, multisource variability assessment, and random forest model. For migraine intensity, group 2 (women with a regular migraine headache intensity score of 7 on an 11-point Numeric Pain Rating Scale [where 0 = no pain and 10 = maximum pain]) were younger and had lower joint positioning sense error in cervical rotation, greater cervical mobility in rotation and flexion, lower flexion-rotation test scores, positive PAIVMs reproducing migraine, normal PPTs over the tibialis anterior, shorter migraine history, and lower cranio-vertebral angles while standing than the remaining migraine intensity subgroups. The most discriminative variable was the flexion-rotation test score of the symptomatic side. For migraine frequency, no model was able to identify differences between groups (ie, patients with episodic or chronic migraine). A subgroup of women with migraine who had common migraine intensity was identified with machine learning algorithms."	"Spectral measure of color variation of black-orange-black (BOB) pattern in small parasitoid wasps (Hymenoptera: Scelionidae), a statistical approach. Small parasitoid wasps are abundant and extremely diverse, yet their colors have not been analyzed. One of the more common color patterns observed in these wasps is a black-orange-black pattern, which is especially common among neotropical species of Scelionidae ranging in size from 2 to 10 mm. Due to the methodological challenges involved in extracting and analyzing pigments from small-sized insects, other methods for examining colors need to be explored. In this work, we propose the use of microspectrophotometry in combination with statistical analysis methods in order to 8 study the spectral properties in such cases. We examined 8 scelionid genera and 1 genus from a distantly related family (Evaniidae), all showing the black-orange-black pattern. Functional Data Analysis and statistical analysis of Euclidean distances for color components were applied to study color differences both between and within genera. The Functional Data Analysis proved to be a better method for treating the reflectance data because it gave a better representation of the physical information. Also, the reflectance spectra were separated into spectral color component contributions and each component was labeled according to its own dominant wavelength at the maximum of the spectrum: Red, Green and Blue. When comparing spectral components curves, the spectral blue components of the orange and black colors, independent of the genera being compared, result almost identical, suggesting that there is a common compound for the pigments. The results also suggest that cuticle from different genera, but with the same color might have a similar chemical composition. This is the first time that the black and orange colors in small parasitoid wasps has been analyzed and our results provide a basis for future research on the color patterns of an abundant but neglected group of insects."	"Long-term Persistence of an Extensively Drug Resistant Subclade of Globally Distributed Pseudomonas aeruginosa Clonal Complex 446 in an Academic Medical Center. Antimicrobial resistance (AMR) is a major challenge in the treatment of infections caused by Pseudomonas aeruginosa. Highly drug-resistant infections are disproportionally caused by a small subset of globally distributed P. aeruginosa sequence types (STs), termed &quot;high-risk clones.&quot; We noted that clonal complex (CC) 446 (which includes STs 298 and 446) isolates were repeatedly cultured at one medical center and asked whether this lineage might constitute an emerging high-risk clone. We searched P. aeruginosa genomes from collections available from several institutions and from a public database for the presence of CC446 isolates. We determined antibacterial susceptibility using microbroth dilution and examined genome sequences to characterize the population structure of CC446 and investigate the genetic basis of AMR. CC446 was globally distributed over 5 continents. CC446 isolates demonstrated high rates of AMR with 51.9% (28/54) being multi-drug resistant (MDR) and 53.6% of these (15/28) being extensively drug resistant (XDR). Phylogenetic analysis revealed that most MDR/XDR isolates belonged to a subclade of ST298 (designated ST298*) of which 100% (21/21) were MDR and 61.9% (13/21) were XDR. XDR ST298* was identified repeatedly and consistently at a single academic medical center from 2001-2017. These isolates harbored a large plasmid that carries a novel antibiotic resistance integron. CC446 isolates are globally distributed with multiple occurrences of high AMR. The subclade ST298* is responsible for a prolonged epidemic (≥16 years) of XDR infections at an academic medical center. These findings indicate that CC446 is an emerging high-risk clone deserving further surveillance."	"Potential of Juniperus communis L as a nutraceutical in human and veterinary medicine. Plants have been used for thousands of years as medicine for treating variety of diseases and medical complaints by most of the civilizations. Juniperus communis L. is an evergreen aromatic shrub with high therapeutic potential for the treatment of diseases in human and animals. The plant is rich in aromatic oils, invert sugars, resins, catechin, organic acid, terpenic acids, leucoanthocyanidin, alkaloids, flavonoids, tannins, gums, lignins, wax, etc. Juniper berries or extract of the plant has traditionally been used as diuretic, anti-arthritis, anti-diabetes, antiseptic as well as for the treatment of gastrointestinal and autoimmune disorders. The essential oil and extracts of juniper have been experimentally documented to have antioxidant, antibacterial, antiviral and antifungal activities. Recent studies have also found anti-inflammatory, cytotoxic, hypoglycemic and hypolipidemic effects of berries in experimental models. Further, the essential oil incorporation retarded lipid peroxidation in preserved meat due to its high antioxidant effect which not only improved meat product quality but also improved shelf life of the product. Thus natural antioxidant such as juniper can be used in place synthetic antioxidant for the preservation and improving self-life of meat products. New well designed clinical trials in human and animals using well-characterized J. communis extract or oil need to be conducted so that additional information is generated which can support the use of this natural product as a nutraceutical."	"The role of self-loops and link removal in evolutionary games on networks. Recently, a new mathematical formulation of evolutionary game dynamics [1] has been introduced accounting for a finite number of players organized over a network, where the players are located at the nodes of a graph and edges represent connections between them. Internal steady states are particularly interesting in control and consensus problems, especially in a networked context where they are related to the coexistence of different strategies. In this paper we consider this model including self-loops. Existence of internal steady states is studied for different graph topologies in two-strategy games. Results on the effect of removing links from central players are also presented."	"Large scale evaluation of differences between network-based and pairwise sequence-alignment-based methods of dendrogram reconstruction. Dendrograms are a way to represent relationships between organisms. Nowadays, these are inferred based on the comparison of genes or protein sequences by taking into account their differences and similarities. The genetic material of choice for the sequence alignments (all the genes or sets of genes) results in distinct inferred dendrograms. In this work, we evaluate differences between dendrograms reconstructed with different methodologies and for different sets of organisms chosen at random from a much larger set. A statistical analysis is performed to estimate fluctuations between the results obtained from the different methodologies that allows us to validate a systematic approach, based on the comparison of the organisms' metabolic networks for inferring dendrograms. This has the advantage that it allows the comparison of organisms very far away in the evolutionary tree even if they have no known ortholog gene in common. Our results show that dendrograms built using information from metabolic networks are similar to the standard sequence-based dendrograms and can be a complement to them."	"Bacteriophage delivering hydrogels reduce biofilm formation in vitro and infection in vivo. Implanted orthopedic devices become infected more frequently than any other implanted surgical device. These infections can be extremely costly and result in significant patient morbidity. Current treatment options typically involve the long term, systemic administration of a combination of antibiotics, often followed by implant removal. Here we engineered an injectable hydrogel capable of encapsulating Pseudomonas aeruginosa bacteriophage and delivering active phage to the site of bone infections. Bacteriophage retain their bacteriolytic activity after encapsulation and release from the hydrogel, and their rate of release from the hydrogel can be controlled by gel formulation. Bacteriophage-encapsulating hydrogels effectively kill their host bacteria in both planktonic and biofilm phenotypes in vitro without influencing the metabolic activity of human mesenchymal stromal cells. Bacteriophage-encapsulating hydrogels were used to treat murine radial segmental defects infected with P. aeruginosa. The hydrogels achieved a 4.7-fold reduction in live P. aeruginosa counts at the infection site compared to bacteriophage-free hydrogels at 7 days postimplantation. These results support the development of bacteriophage-delivering hydrogels to treat local bone infections."	"Fourier transform study of the complex electric field induced on axially heterostructured nanowires. We present in this work a study of the effect of Raman enhancement on axially heterostructured semiconductor nanowires (NWs). The investigation is motivated by the recent detection of a Raman signal enhancement effect at the heterojunction (HJ) of axially heterostructured NWs. Semiconductor NWs offer very interesting properties as compared to their bulk counterparts, making them the building blocks of future optoelectronic nanodevices. The use of HJs turns out to be essential for a great variety of devices. As a result, understanding the optical properties of heterostructured NWs is a fundamental step for their possible application on future technologies. In order to unveil the underlying physics of the light/NW interaction, the complex-valued electromagnetic (EM) field distribution induced inside heterostructured NWs under light exposure is studied. The use of the Fourier transform is presented as a key tool in order to ascertain the different components of the EM field generated inside the NW. The results show the presence of two components: one associated with the incident light beam and a second one which appears as a consequence of the presence of the axial HJ. This second component explains the emergence of the Raman enhancement effect as a result of the interaction of the incident beam with the dielectric discontinuity associated with the HJ."	"Further characterization of a novel EP2 and EP3 receptor dual agonist, ONO-8055, on lower urinary tract function in normal and lumbar canal stenosis rats. To further explore the effects of a novel EP2 and EP3 dual agonist, ONO-8055, on detrusor contractility, we investigated the responses of bladder strips from sham and lumbar canal stenosis (LCS) rats to this agonist, its effects on lower urinary tract function in normal rats, and mRNA expression of EP2 and EP3 receptors in the sham and LCS rats. The responses of bladder strips from sham and LCS rats to ONO-8055 were measured. The effects of ONO-8055 on LUT function of normal rats were investigated with awake cystometry and intraurethral perfusion pressure (Pura) measurements. The relative mRNA of bladder and urethral tissue of the sham and LCS rats was quantified using specific probes for EP1, EP2, EP3, and EP4 genes. Compared with the vehicle, the muscle tensions of both the sham and LCS rats were significantly increased after adding this agonist. On awake cystometry of normal rats, bladder capacity and Pura were decreased in the ONO-8055 groups, but a statistically significant difference in mean changes was demonstrated only between the vehicle group and the group receiving the highest dose. Compared with the sham rats, mRNA expressions of the four EP receptors in the lower urinary tract of the LCS rats did not show a statistically significant difference. This agonist did not augment bladder contractility or urethral relaxation in normal rats."	"Rubicon-Dependent Lc3 Recruitment to Salmonella-Containing Phagosomes Is a Host Defense Mechanism Triggered Independently From Major Bacterial Virulence Factors. Intracellular pathogens such as Salmonella depend on their molecular virulence factors to evade host defense responses like autophagy. Using a zebrafish systemic infection model, we have previously shown that phagocytes, predominantly macrophages, target Salmonella Typhimurium by an autophagy-related pathway known as Lc3-associated phagocytosis (LAP), which is dependent on the host protein Rubicon. Here, we explore the influence of Salmonella virulence factors on pathogenicity in the zebrafish model and induction of LAP as a defense response. We investigated five mutant strains that all could trigger GFP-Lc3 recruitment as puncta or rings around single bacteria or bacterial clusters, in a Rubicon-dependent manner. We found that S. Typhimurium strains carrying mutations in PhoP or PurA, responsible for adaptation to the intracellular environment and efficient metabolism of purines, respectively, are attenuated in the zebrafish model. However, both strains show increased virulence when LAP is inhibited by knockdown of Rubicon. Mutations in type III secretion systems 1 and 2, SipB and SsrB, which are important for invading and replicating in non-phagocytic cells, did not affect the ability to establish successful infection in the zebrafish model. This observation is in line with our previous characterization of this infection model revealing that macrophages actively phagocytose the majority of S. Typhimurium. In contrast to SipB mutants, SsrB mutants were unable to become more virulent in Rubicon-deficient hosts, suggesting that type III system 2 effectors are important for intracellular replication of Salmonella in the absence of LAP. Finally, we found that mutation of FlhD, required for production of flagella, renders S. Typhimurium hypervirulent both in wild type zebrafish embryos and in Rubicon-deficient hosts. FlhD mutation also led to lower levels of GFP-Lc3 recruitment compared with the wild type strain, indicating that recognition of flagellin by the host innate immune system promotes the LAP response. Together, our results provide new evidence that the Rubicon-dependent LAP process is an important defense mechanism against S. Typhimurium."	"Temporal variability analysis reveals biases in electronic health records due to hospital process reengineering interventions over seven years. To evaluate the effects of Process-Reengineering interventions on the Electronic Health Records (EHR) of a hospital over 7 years. Temporal Variability Assessment (TVA) based on probabilistic data quality assessment was applied to the historic monthly-batched admission data of Hospital La Fe Valencia, Spain from 2010 to 2016. Routine healthcare data with a complete EHR was expanded by processed variables such as the Charlson Comorbidity Index. Four Process-Reengineering interventions were detected by quantifiable effects on the EHR: (1) the hospital relocation in 2011 involved progressive reduction of admissions during the next four months, (2) the hospital services re-configuration incremented the number of inter-services transfers, (3) the care-services re-distribution led to transfers between facilities (4) the assignment to the hospital of a new area with 80,000 patients in 2015 inspired the discharge to home for follow up and the update of the pre-surgery planned admissions protocol that produced a significant decrease of the patient length of stay. TVA provides an indicator of the effect of process re-engineering interventions on healthcare practice. Evaluating the effect of facilities' relocation and increment of citizens (findings 1, 3-4), the impact of strategies (findings 2-3), and gradual changes in protocols (finding 4) may help on the hospital management by optimizing interventions based on their effect on EHRs or on data reuse. The effects on hospitals EHR due to process re-engineering interventions can be evaluated using the TVA methodology. Being aware of conditioned variations in EHR is of the utmost importance for the reliable reuse of routine hospitalization data."	"Nineteenth-Century Homeopathic Repertories Predict Increased Urinary Excretion of Bile in Cholestasis but Not in Non-Cholestatic Infant Jaundice. There are two types of bilirubin: conjugated bilirubin, prevalent in cholestatic jaundice, and unconjugated bilirubin, prevalent in hematologic jaundice. Conjugated bilirubin is water soluble and is excreted in urine, whereas unconjugated bilirubin is neither water soluble nor excreted in urine. Homeopathic repertories published prior to the discovery of the two types of bilirubin in 1913 present an opportunity to test the reliability of homeopathic repertories and associated materia medica. If procedures involved in the collecting of homeopathic observations are reliable, then in repertories published prior to 1913, medicines listed for cholestatic jaundice should exhibit a stronger association with urine bile than medicines listed for hematologic jaundice. In three repertories published prior to 1913, medicines associated with jaundice were further classified into groups labeled &quot;Cholestatic&quot; or &quot;Infant, mostly hematologic&quot;. Medicines were identified as &quot;Cholestatic&quot; if associated with both white/clay-colored stool and liver/gallbladder symptoms. Medicines were identified as &quot;Infant, mostly hematologic&quot; if associated with infant jaundice without meeting criteria for the &quot;Cholestatic&quot; group. Controls were medicines appearing in Hahnemann's Materia Medica Pura. Each category was assessed for green urine-usually reflective of bile in urine. In Knerr's repertory, the &quot;Cholestatic&quot; group demonstrated a significantly greater association with green urine than controls (p &lt; 0.05, Fisher's exact test), whereas the &quot;Infant, mostly hematologic&quot; group did not differ significantly from controls. For Lippe's and Boenninghausen's repertories, statistical significance was not demonstrated. Across repertories, the overall weighted pooled odds ratio (OR) demonstrated significance in the association between the &quot;Cholestatic&quot; group and green urine (OR, 2.384; 95% confidence interval, 1.234 to 4.607), whereas the &quot;Infant, mostly hematologic&quot; group was similar to that of controls (OR, 0.754; 95% confidence interval, 0.226 to 2.514). Based on the presence or absence of bile in the urine, homeopathic repertories from the 19th century can distinguish between disease processes involving conjugated bilirubin and disease processes involving unconjugated bilirubin."	"Clinical utility of multigene panel testing in adults with epilepsy and intellectual disability. To determine the diagnostic yield of a commercial epilepsy gene panel in adults with chronic epilepsy and accompanying intellectual disability, given that genetic evaluation is often overlooked in this group of patients. This is a cross-sectional study analyzing the results of epilepsy gene panels including up to 185 genes in adult epilepsy patients with intellectual disability, according to Diagnostic and Statistical Manual of Mental Disorders, fifth edition. Patients with acquired structural brain abnormalities or known chromosomal abnormalities were excluded. From approximately 600 patients seen from January 2017 to June 2018 at a single academic epilepsy center, 64 probands and two affected relatives (32 males, mean age = 31 years ± 10) were selected and clinically tested. Fourteen probands (14/64 = 22%; four males, mean age = 32 years ± 10) were found to have pathogenic or likely pathogenic variants in the following genes: SCN1A, GABRB3, UBE3A, KANSL1, SLC2A1, KCNQ2, SLC6A1, HNRNPU, STX1B, SCN2A, PURA, and CHD2. Six variants arose de novo, and the inheritance was not determined in eight. Nine probands (64%) had severe or profound intellectual disability, and five (35%) had autistic features. Eight patients (57%) had a diagnostic change from presumptive clinical diagnosis prior to genetic testing. We were able to demonstrate that a commercial epilepsy gene panel can be an important resource in clinical practice, identifying the etiology in 22% of adults with epilepsy and intellectual disability. The diagnostic yield is similar to previously reported pediatric cohorts. Larger samples would be required to evaluate the more prevalent genotypes among adult epilepsy patients."	"Vida PURA: results from a pilot randomized trial of a culturally adapted screening and brief intervention to reduce unhealthy alcohol use among Latino day laborers. Latino immigrant men are at increased risk for unhealthy alcohol use. Vida PURA is a culturally adapted evidence-based intervention that consists of promotores providing screening and brief intervention to reduce unhealthy alcohol use among Latino immigrant men. The purpose was to assess the efficacy of Vida PURA in a pilot randomized control trial. Participants were screened for eligibility at a day labor worker center using the Alcohol Use Disorders Identification Test (AUDIT). Those with an AUDIT score ≥ 6 (N = 121) were randomized into an intervention (N = 77) or control group (N = 44). Participants in the intervention group received a brief intervention from a promotor including personalized feedback, motivational interviewing to assess their readiness to change, and referral to services. Participants in the control group received information about local substance use treatment services. We assessed changes in AUDIT scores, drinks per drinking day, drinking days, and frequency of heavy episodic drinking at 2 and 8 weeks following the baseline survey using a mixed-effects regression model. Many men had high AUDIT scores, indicating dependence. Both the intervention and control groups reduced their alcohol-related behaviors over time, but there were no significant differences between the groups. A culturally adapted brief intervention may not be enough to significantly reduce alcohol use among Latino day laborers, especially among those that are dependent. We discuss lessons learned from this trial, including the value of community-based approaches to reaching high-risk and underserved populations."	"Occurrence and phylogenetic analysis of avipoxvirus isolated from birds around Jammu. Domesticated fowls, pigeons and turkey birds were screened for avipoxvirus infection from different areas in Jammu region. Based on typical pox lesions the overall occurrence in fowl was found to be 18.52%, 17.03% in pigeons and 57.14% in turkeys. Mortality recorded in chicks was 41.96%, 45.36% in squabs, 100% in poults, and 20.00% in adult turkeys. Both cutaneous and diphtheritic forms of the disease was observed of which the latter was particularly prevalent in young birds. One sample of putative fowlpox virus (FWPV) from skin lesions of a fowl, and two samples of putative pigeonpox virus (PGPV) from skin and diphtheritic lesions each were inoculated on chorio-allantoic membrane (CAM) of 10-12 days old chicken embryonated eggs. A confirmatory diagnosis was made by PCR amplification of a highly conserved P4b gene locus detected in tissue samples from skin, diphtheritic membrane and virus inoculated CAM yielding a predicted 578 bp product. Phylogenetic analysis based on the same P4b gene locus revealed FWPV and turkeypox virus (TKPV) to be 99% related and belonging to clade 1, while PGPV was found to belong to clade 2. All three isolates illustrate considerable heterogeneity within the conserved P4b gene locus. The study indicates that the closely related FWPV and TKPV isolates may have the potential of cross infection between fowls and turkeys and therefore cross transmission studies are suggested."	"Dickeya undicola sp. nov., a novel species for pectinolytic isolates from surface waters in Europe and Asia. Strains 2B12<sup>T</sup>, FVG1-MFV-O17 and FVG10-MFV-A16 were isolated from fresh water samples collected in Asia and Europe. The nucleotide sequences of the gapA barcodes revealed that all three strains belonged to the same cluster within the genus Dickeya. Using 13 housekeeping genes (fusA, rpoD, rpoS, glyA, purA, groEL, gapA, rplB, leuS, recA, gyrB, infB and secY), multilocus sequence analysis confirmed the existence of a new clade. When the genome sequences of these three isolates and other Dickeya species were compared, the in silico DNA-DNA hybridization and average nucleotide identity values were found to be no more than 45.50 and 91.22 %, respectively. The closest relative species was Dickeya fangzhongdai. Genome comparisons also highlighted genetic traits differentiating the new strains from D. fangzhongdai strains DSM 101947<sup>T</sup> (=CFBP 8607<sup>T</sup>) and B16. Phenotypical tests were performed to distinguish the three strains from D. fangzhongdai and other Dickeya species. The name Dickeya undicola sp. nov. is proposed with strain 2B12<sup>T</sup> (=CFBP 8650<sup>T</sup>=LMG 30903<sup>T</sup>) as the type strain."	"Parasitic affections of domesticated pigeons (Columba livia) in Jammu, India The parasitic fauna of domesticated pigeons in Jammu region were not recorded and so a survey was undertaken amongst a population of approximately 4000 birds in twelve areas around Jammu. Ectoparasites and haemoprotozoa from live birds, and endoparasites from dead birds were recorded. Ova shed in feces were also screened in four different seasons. Ectoparasites recovered include Columbicola columbae, Campanulotes bidentatus, Pseudolynchia canariensis, Ctenocephalides sp., Psoroptes sp. A total of 22 (36.67%) out 60 gastrointestinal tracts (GIT) of pigeons were positive for helminthic endoparasites including Raillietina sp. (25%; 15/60); Ascaridia sp. (5%; 3/60) and the hairworm Capillaria sp. (6.67%; 4/60). coccidian (58.3%; 35/60), cryptosporidian parasites (50.0%; 5/10), Trichomonas gallinae (40%; 12/30) and haemoprotozoal schizogony tissue stages (45.0%; 27/60) were observed in cloacal, oro-pharyngeal and tissue samples from post-mortem materials. Prevalence of cestodes was relatively morethan nematodes perhaps due to the pigeon’s access to intermediate hosts of the cestodes. Blood smears showed the presence of Haemoproteus columbae gametocytes (26.6%; 8/30). Twenty-four pooled fecal samples examined from six select villages revealed presence of different parasitic ova. A higher prevalence of parasitic eggs was noted in the winters. Ascarid eggs were particularly prevalent during monsoon and post monsoon. Raillietina sp. was the most common cestode with lowered prevalence in the peak summers. It is speculated that close confinement of the domesticated birds are responsible for increased parasitic load and their dissemination. The parasitic data generated in the study may be helpful in estimating the faunistic prevalence of different parasites for strategic management of such parasitism during various seasons."	"Increased fermentative adenosine production by gene-targeted Bacillus subtilis mutation. Adenosine, which is produced mainly by microbial fermentation, plays an important role in the therapy of cardiovascular disease and has been widely used as an antiarrhythmic agent. In this study, guanosine 5'-monophosphate (GMP) synthetase gene (guaA) was inactivated by gene-target manipulation to increase the metabolic flux from inosine 5'-monophosphate (IMP) to adenosine in B. subtilis A509. The resulted mutant M3-3 showed an increased adenosine production from 7.40 to 10.45 g/L, which was further enhanced to a maximum of 14.39 g/L by central composite design. As the synthesis of succinyladenosine monophosphate (sAMP) from IMP catalysed by adenylosuccinate synthetase (encoded by purA gene) is the rate-limiting step in adenosine synthesis, the up-regulated transcription level of purA was the potential underlying mechanism for the increased adenosine production. This work demonstrated a practical strategy for breeding B. subtilis strains for industrial nucleoside production."	"Practicing Pura Vida: Radiation Therapy in Costa Rica. NA"	"Simultaneous Isolation of Stem and Niche Cells of Skeletal Muscle: Applicability for Aging Studies. The maintenance of adult stem cells in their normal quiescent state depends on intrinsic factors and extrinsic signals originating from their microenvironment (also known as the stem cell niche). In skeletal muscle, its stem cells (satellite cells) lose their regenerative potential with aging, and this has been attributed, at least in part, to both age-associated changes in the satellite cells as in the niche cells, which include resident fibro-adipogenic progenitors (FAPs), macrophages, and endothelial cells, among others. To understand the regenerative decline of skeletal muscle with aging, there is a need for methods to specifically isolate stem and niche cells from resting muscle. Here we describe a fluorescence-activated cell sorting (FACS) protocol to simultaneously isolate discrete populations of satellite cells and niche cells from skeletal muscle of aging mice."	"Smartphone Sensors for Monitoring Cancer-Related Quality of Life: App Design, EORTC QLQ-C30 Mapping and Feasibility Study in Healthy Subjects. Quality of life (QoL) indicators are now being adopted as clinical outcomes in clinical trials on cancer treatments. Technology-free daily monitoring of patients is complicated, time-consuming and expensive due to the need for vast amounts of resources and personnel. The alternative method of using the patients' own phones could reduce the burden of continuous monitoring of cancer patients in clinical trials. This paper proposes monitoring the patients' QoL by gathering data from their own phones. We considered that the continuous multiparametric acquisition of movement, location, phone calls, conversations and data use could be employed to simultaneously monitor their physical, psychological, social and environmental aspects. An open access phone app was developed (Human Dynamics Reporting Service (HDRS)) to implement this approach. We here propose a novel mapping between the standardized QoL items for these patients, the European Organization for the Research and Treatment of Cancer Quality of Life Questionnaire (EORTC QLQ-C30) and define HDRS monitoring indicators. A pilot study with university volunteers verified the plausibility of detecting human activity indicators directly related to QoL."	"Synthesis and evaluation of the antiproliferative efficacy of BRM270 phytocomposite nanoparticles against human hepatoma cancer cell lines. BRM270 is the most leading phytochemical extract that possesses potent anticancer properties. A major challenge associated with this drug is its low bioavailability and thus requires high dosages for cancer treatment. Here, we report the novel nano-synthesis of phyto-composite, BRM270 for the first time by mechanical milling method with specific modifications for enhanced cytotoxicity against HepG2 human hepatoma cancer cells. Unlike free BRM270 and other phytomedicines, BRM270 nanoparticles (BRM270 NPs) are well-dispersed and small sized (23 to 70 nm) which is believed to greatly enhanced cellular uptake. Furthermore, the acidic tumor microenvironment attracts BRM270 NPs enhancing targeted therapy while leaving normal cells less affected. The comparative cytotoxicity analysis using MTT assay among the three treatment groups, such as free BRM270, BRM270 NPs, and doxorubicin demonstrated that BRM270 NPs induced greater cytotoxicity against HepG2 cells with an effective drug concentration of 12 μg/ml. From FACS analysis, we observed an apoptotic cell death of 44.4% at BRM270 NPs treated cells while only 12.5% found in the free BRM270 treated cells. Further, the comparative relative expression profiling of the candidate genes were showed significant (p &lt; 0.05) down-regulation of IL6, BCL2, p53, and MMP9 in the BRM270 NPs treated cells, compared to the free BRM270 and doxorubicin. Indeed, the genes, CASPASE 9 and BAX have shown significant (p &lt; 0.05) upregulation in cells treated with BRM270 NPs as compared to counter treatment groups. The investigation of the signal pathways and protein-protein network associations were also carried out to elucidate the functional insights underlying anti-cancer potential of BRM270 NPs in HepG2 cells. Taken together, our findings demonstrated that these uniquely engineered BRM270 NPs effectively enter into the cancer cells due to its acidic microenvironment thereby inducing apoptosis and regulate the cell-proliferation in-vitro at extremely low dosages."	"Synthetic pyrethroid resistance in Rhipicephalus (Boophilus) microplus ticks from north-western Himalayas, India. In the present study, adult immersion test (AIT) was used for evaluation of resistance against synthetic pyrethroids (deltamethrin and cypermethrin) in Rhipicephalus (Boophilus) microplus ticks collected from nine districts of three agro-climatic zones of north-western Himalayan region of India. Resistance factors (RFs) were calculated between 0.94 to 50.71 for deltamethrin and 0.32 to 13.18 for cypermethrin. Resistance to deltamethrin was detected at level I in two, level II in four, level III and level IV in one isolate each while one isolate was susceptible. Against cypermethrin, resistance at levels I and II was detected in three isolates each while three isolates were found susceptible. The low altitude sub-tropical zone revealed higher density of resistant ticks where intensive animal husbandry practices were followed and the synthetic pyrethroid usage was common. Data generated on pyrethroid resistance status of ticks in north-western Himalayan region will provide new insights in acaricidal resistance particularly from remote areas of this region and will help in formulating suitable control measures."	"Determination of prevalence, serological diversity, and virulence of Dichelobacter nodosus in ovine footrot with identification of its predominant serotype as a potential vaccine candidate in J&amp;K, India. The aim of this study was to determine the prevalence, serological diversity, and virulence of Dichelobacter nodosus in footrot lesions of sheep and identification of its predominant serotype as a potential vaccine candidate. The overall prevalence of footrot in sheep was 16.19%, and ranged from 13.69 to 19.71%, respectively. A total of 759 flocks with 22,698 sheep were investigated for footrot and 2374 clinical samples were collected from naturally infected sheep exhibiting footrot lesions. Of the 2374 samples collected, 1446 (60.90%) were positive for D. nodosus by polymerase chain reaction (PCR). These positive samples when subjected to serogroup-specific multiplex PCR, 1337 (92.46%) samples carried serogroup B, 247 (17.08%) possessed serogroup E, 86 (5.94%) serogroup I, and one (0.069%) serogroup G of D. nodosus. While mixed infection of serogroups B and E was detected in 127 (8.78%), B and I in 46 (3.18%) and B, E, and I in 26 (1.79%) samples, respectively. The serogroup B of D. nodosus was the predominant (92.47%) serogroup affecting sheep population with footrot followed by serogroup E (19.91%) and serogroup I (4.57%), respectively. Virulent status of D. nodosus strains were confirmed by presence of virulence-specific integrase A (intA) gene and the production of thermostable proteases. The intA gene was detected in 709 (72.79%) samples while gelatin gel test carried out on 246 representative isolates all positive for intA gene produced thermostable proteases, confirming their virulence nature. The PCR-restriction fragment length polymorphism (PCR-RFLP) of whole fimA gene of serogroup B revealed the predominance of serotype B5 (82.97%) of serogroup B. This information suggests that serotype B5 is the predominant serotype of D. nodosus associated with severe footrot lesions in sheep in Jammu &amp; Kashmir (J&amp;K), India. Hence, this serotype can be a potential vaccine candidate for the effective control and treatment of ovine footrot."	"Genetic and environmental risk factors for vitiligo and melanoma in Pura Raza Español horses. Vitiligo and melanoma are relatively common disorders in grey Pura Raza Español horses and other horse breeds with grey-coloured coats. To determine the breed prevalence, environmental risks factors and estimate the genetic parameters for vitiligo and melanoma in Pura Raza Español horses. Retrospective cohort study. We analysed data from a large worldwide population of Pura Raza Español horses. The database included the vitiligo and melanoma scores, on either a four- or six-point linear scale, of 11,436 horses. Genetic parameters were estimated using a Bayesian genetic animal model including the four associated environmental risk factors as systematic effects. Inbreeding was used as a covariate, and animal and residual effects were included as random effects. Of the horses included in the study, 2.8 and 20.5% showed some traces of vitiligo around the eyes and mouth, respectively, while 1.6% showed varying degrees of melanoma. Age, coat colour and inbreeding were significantly associated with the three outcomes studied. The estimated heritability for the whole population was 0.09 (s.d. +0.019), 0.44 (s.d. +0.031) and 0.13 (s.d. +0.037), for eye vitiligo score, nostril vitiligo score and melanoma scores respectively. The genetic correlations ranged from 0.42 (s.d. +0.084) between eye and nostril vitiligo score to 0.15 (s.d. +0.096) between nostril vitiligo and melanoma. Vitiligo scores for the perianal regions were not collected. The veterinarian responsible for each assessment was not recorded. Vitiligo and melanoma are prevalent in this population and those environmental risk factors and genetics both have an effect on the clinical expression of the diseases. These findings may help to reduce prevalence through breeding programmes."	"Transfer of the waterfall source isolate Pectobacterium carotovorum M022 to Pectobacterium fontis sp. nov., a deep-branching species within the genus Pectobacterium. Pectobacterium carotovorum M022<sup>T</sup> has been isolated from a waterfall source in Selangor district (Malaysia). Using genomic and phenotypic tests, we re-examined the taxonomical position of this strain. Based on 14 concatenated housekeeping genes (fusA, rpoD, rpoS, acnA, purA, gyrB, recA, mdh, mtlD, groEL, secY, glyA, gapA and rplB), multi-locus sequence analysis revealed that strain M022<sup>T</sup> falls into a novel clade separated from the other Pectobacterium species. The in silico DNA-DNA hybridization and average nucleotide identity values were lower than the 70 and 95 % threshold values, respectively. In addition, by combining genomic and phenotypic tests, strain M022<sup>T</sup> may be distinguished from the other Pectobacterium isolates by its incapacity to grow on d(+)-xylose, l-rhamnose, cellobiose and lactose. Strain M022<sup>T</sup> (=CFBP 8629<sup>T</sup>=LMG 30744<sup>T</sup>) is proposed as the type strain of the Pectobacteriumfontis sp. nov."	"The role of E3 ubiquitin ligase seven in absentia homolog in the innate immune system: An overview. The innate immune system has been considered as an ancient system and less important than the adaptive immune system. However, the interest in innate immunity has grown significantly in the past few years marked by the identification of Toll-like receptors, a member of pattern recognition receptors (PRRs). The PRRs are crucial for the identification of self- and non-self-antigen and play a role in the initiation of signaling events that activate the effective immune response. These sensor signals through interweaving signaling cascades which result in the production of interferons and cytokines as the effector of immune system. Ubiquitin and ubiquitin-like modifiers (UBLs) actively mediate the rapid and versatile regulatory processes that initiate the activation of the innate immune system cascade. The seven in absentia homolog (SIAH) is a potent RING finger E3 ubiquitin ligase that is known to involve in several stress responses, including hypoxia, oxidative stress, DNA damage stress, and inflammation. In this review, the role of SIAH will be discussed as an E3 ubiquitin ligase on the regulation of innate immune."	"Feature Extraction and Similarity of Movement Detection during Sleep, Based on Higher Order Spectra and Entropy of the Actigraphy Signal: Results of the Hispanic Community Health Study/Study of Latinos. The aim of this work was to develop a new unsupervised exploratory method of characterizing feature extraction and detecting similarity of movement during sleep through actigraphy signals. We here propose some algorithms, based on signal bispectrum and bispectral entropy, to determine the unique features of independent actigraphy signals. Experiments were carried out on 20 randomly chosen actigraphy samples of the Hispanic Community Health Study/Study of Latinos (HCHS/SOL) database, with no information other than their aperiodicity. The Pearson correlation coefficient matrix and the histogram correlation matrix were computed to study the similarity of movements during sleep. The results obtained allowed us to explore the connections between certain sleep actigraphy patterns and certain pathologies."	"Protein 53 (P53) Expressions and Apoptotic Index of Amniotic Membrane Cells in the Premature Rupture of Membranes. The premature rupture of membranes (PROM) represents an obstetric issue causing significant maternal and neonatal morbidity and mortality. Although protein 53 (p53), one of the proapoptotic proteins suspected of causing PROM at the molecular level is closely correlated with the occurrence of PROM, the exact mechanism remains still unclear. This study aims to investigate the hypothesis that p53 expression and the apoptotic index play a role in the PROM mechanism. Placentas from 20 pregnancies (37-42 weeks gestation) and 20 pregnancies complicated by PROM were collected at delivery. The independent variable is represented by pregnant mothers with a single live fetus experiencing PROM (followed by labour and birth) while without PROM mothers represent the control. The research material was taken from the amnion tissue in the placenta. Also, p53 and apoptotic index (TUNEL) immunohistochemical examination were conducted at the Integrated Biomedical Laboratory, Medical Faculty of Udayana University, Bali. The correlation between the apoptotic index and p53 expression of the PROM group was tested using a McNemar Test. No statistically significant differences were found between the two groups (p &gt; 0.05). There was a significant difference in p53 expression in PROM cases compared to those without PROM (11.15 + 5.59% vs. 0.95 + 2.52%) with χ<sup>2</sup> = 19.538 and p = 0.001. The apoptotic index in PROM cases was higher than in those without PROM (19.10 + 5.63% vs. 1.15 + 2.46%) with χ<sup>2</sup> = 32.40 and p = 0.001. There was a strong correlation between p53 expression and PROM with PR = 3.449 (95% CI = 1.801-6.605; p = 0.001). There was a strong correlation between the apoptotic index and PROM with PR = 19 (95% CI = 2.81-128.69; p = 0.001). p53 expression and the apoptotic index of amniotic membrane cells in cases of PROM was higher than in those without PROM, there was a strong correlation between p53 expression and apoptotic index with the occurrence of PROM."	"The Role of Caspase-3, Apoptosis-Inducing Factor, and B-cell Lymphoma-2 Expressions in Term Premature Rupture of Membrane.  To determine the role of caspase-3, apoptosis-inducing factor (AIF), and B-cell lymphoma-2 (Bcl-2) expressions in term premature rupture of membrane (PROM).  An analytic observational study with case-control design was conducted, involving 52 subjects (37-42 weeks of gestation) who were divided into 2 groups: 26 cases of term delivery with PROM, and 26 controls of term delivery without PROM. The expressions of caspase-3, AIF, and Bcl-2 in the amniotic membrane were determined by immunohistochemistry. Data were analyzed using the chi-squared test. The risk of PROM was expressed by odds ratio (OR).  There were no significant differences in age, parity and body mass index between the two groups (p &gt; 0.05). High caspase-3 and AIF expressions increased the risk of PROM 17.64 times (OR = 17.64; 95% CI = 4.44-70.07; p = 0.001) and 9.45 times (OR = 9.45; 95% CI= 2.62-34.07; p = 0.001), respectively, while low Bcl-2 expression increased 10.39 times (OR = 10.39; 95% CI = 2.73-39.56; p = 0.001)the risk of PROM .  High caspase-3 and AIF expressions and low Bcl-2 expression were risk factors for term PROM. Caspase-dependent and independent pathways of apoptosis were involved in the mechanism of PROM in term pregnancy."	"The first comprehensive description of the expression profile of genes involved in differential body growth and the immune system of the Jeju Native Pig and miniature pig. Sus scrofa provides a major source of animal protein for humans as well as being an excellent biomedical model. This study was carried out to understand, in detail, the genetic and functional variants of Jeju Native Pigs and miniature pigs through differential expression profiling of the genes controlling their immune response, growth performance, and meat quality. The Illumina HiSeq 2000 platform was used for generating 1.3 billion 90 bp paired-end reads, which were mapped to the S. scrofa genome using TopHat2. A total of 2481 and 2768 genes were differentially expressed with 8-log changes in muscle and liver samples, respectively. Five hundred forty-eight genes in muscle and 642 genes in liver samples had BLAST matches within the non-redundant database. GO process and pathway analyses showed enhanced biological processes related to the extracellular structural organization and skeletal muscle cell differentiation in muscle tissue, whereas the liver tissue shares functions related to the inflammatory response. Herein, we identify inflammatory regulatory genes in miniature pigs and growth response genes in Jeju Native Pigs, information which can provide a stronger base for the selection of breeding stock and facilitate further in vitro and in vivo studies for therapeutic purposes."	"Morphological and genetic diversity of Pura Raza Español horse with regard to the coat colour. Gene mutations influencing melanocytes also impact on physiological and behavioural functions. In this study, we investigated their association with four different coat colours in the Pura Raza Español (PRE) horse using morphological traits and molecular datasets. Four different subpopulations were identified according to individual coat colour: grey, bay, chestnut and black. Coat colour significantly associated with morphological measurements. Observed and expected heterozygosity values were low in grey compared with the other three subpopulations, suggesting the presence of unique ancestral alleles probably arisen by genetic drift and selection mechanism effects. Nei's distance demonstrated a clear division among subpopulations, the grey being the most divergent group. Gene flow estimates were similar, showing the lowest values in grey. Divergence times among subpopulations assessed with the average square distance suggested that grey was the original PRE population which diverged from bay, chestnut and black. Our results also demonstrated a clear morphological differentiation according to coat colour. The close genetic structure of bay and chestnut PRE subpopulations and the clear differences in most morphological traits of grey and chestnut PRE mares would suggest the pleiotropic effect of genomic regions determining coat colour in horses. However, further analysis including genomic information would be necessary to elucidate the mechanisms involved."	"Genetic suppression of cryoprotectant toxicity. We report here a new, unbiased forward genetic method that uses transposon-mediated mutagenesis to enable the identification of mutations that confer cryoprotectant toxicity resistance (CTR). Our method is to select for resistance to the toxic effects of M22, a much-studied whole-organ vitrification solution. We report finding and characterizing six mutants that are resistant to M22. These mutants fall into six independent biochemical pathways not previously linked to cryoprotectant toxicity (CT). The genes associated with the mutations were Gm14005, Myh9, Nrg2, Pura, Fgd2, Pim1, Opa1, Hes1, Hsbp1, and Ywhag. The mechanisms of action of the mutations remain unknown, but two of the mutants involve MYC signaling, which was previously implicated in CT. Several of the mutants may up-regulate cellular stress defense pathways. Several of the M22-resistant mutants were also resistant to dimethyl sulfoxide (Me2SO), and many of the mutants showed significantly improved survival after freezing and thawing in 10% (v/v) Me2SO. This new approach to overcoming CT has many advantages over alternative methods such as transcriptomic profiling. Our method directly identifies specific genetic loci that unequivocally affect CT. More generally, our results provide the first direct evidence that CT can be reduced in mammalian cells by specific molecular interventions. Thus, this approach introduces remarkable new opportunities for pharmacological blockade of CT."	"Alteration in thiols homeostasis, protein and lipid peroxidation in renal tissue following subacute oral exposure of imidacloprid and arsenic in Wistar rats. The aim of present study was to assess whether No Observed Effect Level (NOEL) of imidacloprid (IMI) potentiates the arsenic induced renal toxicity at its maximum contaminant level in drinking water in Wistar rats. Significant elevation of lipid and protein oxidation with reduced level of total thiols and antioxidant enzymes (catalase, superoxide dismutase, glutathione reductase, glutathione peroxidase and glutathione-s-transferase) in renal tissue may have contributed to increased renal plasma biomarkers (creatinine and blood urea nitrogen) following repeated exposure of IMI and arsenic alone and in-combination. The altered renal biomarkers in co-exposed groups corroborated with histopathological alterations in renal tissue. The observations indicated that altered thiol homeostasis in renal tissue may be associated with increased lipid and protein oxidation in IMI and arsenic administered rats. It is concluded that administration of IMI potentiate the arsenic induced renal damage in Wistar rats."	"[A protocol for evaluating the probability of the recreational use of rivers and its application in risk analysis]. Contaminated waters constitute health risks not only due to direct consumption, but also in recreational use. Risk analysis strategies aim to reduce the instances of contaminations and must include the population's perceptions and willingness to assume risks. A rapid and simple method was developed to evaluate the probability of use of recreational waters. Interviews were conducted in municipalities with different ecological conditions, in order to define the factors used by people to decide to use, or otherwise, river waters. After analyzing the results, the &quot;Índice de Probabilidade de Uso Recreativo de Águas (I-PURA)&quot; was elaborated and tested. The index was then employed at 26 river locations representing five of the nine hydrographic regions of Rio de Janeiro state. The frequency of use, water contamination and a Habitat Assessment Visual Index (IAH) was also measured. The I-PURA was correlated with the frequency of use. Furthermore, the I-PURA was not correlated with IAH, showing that user perceptions are different from purely ecological aspects. This tool offers useful information for risk assessment and environmental management. Sites with a high probability of use, or observed use, that are highly contaminated should be prioritized for interventions. Águas contaminadas representam um risco à saúde não somente pelo consumo direto, mas também pelo uso recreativo. Estratégias de análise de risco visam à redução dos casos de contaminação e devem incorporar as percepções e aceitação das pessoas em assumir riscos. Um método rápido e simplificado foi desenvolvido para avaliar a probabilidade do uso de águas recreativas. Foram realizadas entrevistas em municípios com condições ecológicas distintas, para elencar fatores que embasam a decisão das pessoas pelo uso dos rios. Em seguida, foi elaborado e realizado pré-teste do Índice de Probabilidade de Uso Recreativo de Águas (I-PURA) que, após ajuste, foi aplicado em 26 balneários de 5 das 9 regiões hidrográficas do estado do Rio de Janeiro. Foram medidas, ainda, a frequência de uso, a contaminação bacteriana da água e um índice de avaliação do habitat (IAH). O I-PURA foi correlacionado à frequência de uso, mas não com o IAH, evidenciando que a percepção dos usuários é diferente de aspectos puramente ecológicos. Este método contribui com a análise de risco e manejo dos recursos hídricos. Locais em que há alta probabilidade de uso, ou uso observado, e alta contaminação são estratégicos para intervenção."	"Pectobacterium punjabense sp. nov., isolated from blackleg symptoms of potato plants in Pakistan. Pectobacterium isolates SS95<sup>T</sup>, SS54 and SS56 were collected from a potato field in the Chiniot district in the plains of the Punjab province, Pakistan. Sequencing of the gapA barcode revealed that these strains belong to a novel phylogenetic group separated from P.ectobacterium wasabiae and Pectobacterium parmentieri species. Furthermore, multilocus sequence analyses of 13 housekeeping genes (fusA, rpoD, acnA, purA, gyrB, recA, mdh, mtlD, groEL, secY, glyA, gapA and rplB) clearly distinguished the type strain, SS95<sup>T</sup>, from its closest relatives, i.e. P. parmentieri RNS 08-42-1A<sup>T</sup> and P. wasabiae CFBP3304<sup>T</sup>, as well as from all the other known Pectobacteriumspecies. In silico DNA-DNA hybridization (&lt;44.1 %) and average nucleotide identity (&lt;90.75 %) values of strain SS95<sup>T</sup> compared with other Pectobacterium type strains supported the delineation of a new species. Genomic and phenotypic comparisons permitted the identification of additional traits that distinguished the Pakistani isolates from all other known Pectobacterium type strains. The name Pectobacterium punjabense sp. nov. is proposed for this taxon with the type strain SS95<sup>T</sup> (=CFBP 8604<sup>T</sup>=LMG 30622<sup>T</sup>)."	"Incidence of congenital anomalies in a rural population of Jammu - A prospective study. Congenital anomalies (CAs) are a major cause of stillbirths and neonatal mortality in India. Its magnitude and pattern reportedly vary over time and across geographical locations. The objective of the study is to estimate the incidence of CAs in community development block RS Pura of District Jammu. The present study is a community-based prospective study. The field workers were trained with the help of &quot;Birth Defect Surveillance&quot; Atlas issued by WHO and ICBDMS (International Clearinghouse for Birth Defects Monitoring Systems) 2014. Pregnant women (registered or unregistered) with all health institutions in RS Pura Block on or after April 1, 2014, were followed till September 2015 for the ascertainment of CAs. All CAs detected during antenatal period (by ultrasonography), after delivery and abortion at any site were counted as events and classified by organ system according to the 10<sup>th</sup> version of the WHO International Classification of Diseases-10. A total of 1670 mothers were followed till their pregnancy outcome was recorded. Among 1600 live births recorded, 54 babies had CAs resulting in the incidence rate of 33.7/1000 live births. The incidence rate was comparatively higher among women aged &lt;20 years (71.4/1000 live births) and with Para 4 (43.5/1000 live births) as compared to other women. Digestive system was the most common system involved (35%) followed by the Central nervous system (26.6%). The U-shaped pattern in the incidence of CAs with regards to parity and maternal age was observed. The study demonstrated that the CAs continue to occur in Jammu at a similar magnitude as reported from other parts of the country."	"Vertex collisions in 3-periodic nets of genus 4. Unstable nets, by definition, display vertex collisions in any barycentric representation, among which are approximate models for the associated crystal structures. This means that different vertex lattices happen to superimpose when every vertex of a periodic net is located at the centre of gravity of its first neighbours. Non-crystallographic nets are known to be unstable, but crystallographic nets can also be unstable and general conditions for instability are not known. Moreover, examples of unstable nets are still scarce. This article presents a systematic analysis of unstable 3-periodic nets of genus 4, satisfying the restrictions that, in a suitable basis, (i) their labelled quotient graph contains a spanning tree with zero voltage and (ii) voltage coordinates belong to the set {-1, 0, 1}. These nets have been defined by a unique circuit of null voltage in the quotient graph. They have been characterized through a shortest path between colliding vertices. The quotient graph and the nature of the net obtained after identification of colliding vertices, if known, are also provided. The complete list of the respective unstable nets, with a detailed description of the results, can be found in the supporting information."	"[The value of «feeling at home» in nursing homes. Small is beautiful]. NA"	"Effect of Dextroamphetamine on Poststroke Motor Recovery: A Randomized Clinical Trial. Data from animal models show that the administration of dextroamphetamine combined with task-relevant training facilitates recovery after focal brain injury. Results of clinical trials in patients with stroke have been inconsistent. To collect data important for future studies evaluating the effect of dextroamphetamine combined with physiotherapy for improving poststroke motor recovery and to test the efficacy of the approach. This pilot, double-blind, block-randomized clinical trial included patients with cortical or subcortical ischemic stroke and moderate or severe motor deficits from 5 rehabilitation hospitals or units. Participants were screened and enrolled from March 2001 through March 2003. The primary outcome was assessed 3 months after stroke. Study analysis was completed December 31, 2015. A total of 1665 potential participants were screened and 64 were randomized. Participants had to begin treatment 10 to 30 days after ischemic stroke. Data analysis was based on intention to treat. Participants were allocated to a regimen of 10 mg of dextroamphetamine (n = 32) or placebo (n = 32) combined with a 1-hour physical therapy session beginning 1 hour after drug or placebo administration every 4 days for 6 sessions in addition to standard rehabilitation. The primary outcome was the difference between groups in change in Fugl-Meyer motor scores from baseline to 3 months after stroke (intention to treat with dextroamphetamine). Secondary exploratory measures included the National Institutes of Health Stroke Scale, Canadian Neurological Scale, Action Research Arm Test, modified Rankin Scale score, Functional Independence Measure, Ambulation Speed and Distance, Mini-Mental State Examination, Beck Depression Inventory, and Stroke Impact Scale. Among the 64 patients randomized to dextroamphetamine vs placebo (55% men; median age, 66 years; age range, 27-91 years), no overall treatment-associated difference in the mean (SEM) change in Fugl-Meyer motor scores from baseline to 3 months after stroke was noted (-18.65 [2.27] points with dextroamphetamine vs -20.83 [2.94] points with placebo; P = .58). No overall treatment-associated differences in any of the study's secondary measures and no differences in subgroups based on stroke location or baseline severity were found. No adverse events were attributed to study treatments. Treatment with dextroamphetamine combined with physical therapy did not improve recovery of motor function compared with placebo combined with physical therapy as assessed 3 months after hemispheric ischemic stroke. The studied treatment regimen was safe. ClinicalTrials.gov identifier: NCT01905371."	"Uropathogenic Escherichia coli preferentially utilize metabolites in urine for nucleotide biosynthesis through salvage pathways. Growth in urinary tract depends on the ability of uropathogenic E. coli to adjust metabolism in response to available nutrients, especially to synthesize metabolites that are present in urinary tract with limited concentrations. In this study, a genome-wide assay was applied and identified five nucleotide biosynthetic genes purA, guaAB and carAB that are required for optimal growth of UPEC in human urine and colonization in vivo. Subsequent functional analyses revealed that either interruption of de novo nucleotide biosynthesis or blocking of salvage pathways alone could not decrease UPEC's growth, while only simultaneous interruption of both two pathways significantly reduced UPEC's growth in urine. Evidences showed that uracil, xanthine, and hypoxanthine in human urine could support nucleotide biosynthesis through salvage pathways when the de novo pathways were interrupted. Moreover, the expression of genes involved in salvage pathways of nucleotide biosynthesis were significantly upregulated when UPEC are cultured in human urine and artificial urine medium with uracil, xanthine or hypoxanthine. Finally, animal tests showed that further deletion of genes involved in salvage nucleotide biosynthesis from mutants with defects in de novo pathways significantly reduced UPEC's colonization in host bladders and kidneys. These results indicated that UPEC preferentially utilize abundant metabolites in urine for nucleotide biosynthesis through salvage pathways, which is not like in serum, where the limiting amounts of substrates for salvage biosynthesis force invading pathogens to rely on de novo nucleotide biosynthesis. Taken together, our study implied the importance of salvage pathways of nucleotides biosynthesis for UPEC's fitness during urinary tract infection."	"Quantitative and Qualitative Pathogenetic Indices for Review of Data Derived from Homeopathic Pathogenetic Trials.  Analysis of data derived from homeopathic pathogenetic trials (HPTs, homeopathic drug provings) has been a challenge. Most parts of the homeopathic pharmacopeia were sourced from Hahnemann's Materia Medica Pura (1825-1833), TF Allen's Encyclopedia (1874) and Constantine Hering's Materia Medica (1879-1891), well before randomised controlled trials were in use. As a result, such studies and their outcomes harbour a large risk of inclusion of unreliable symptoms. The main purpose of this article is to introduce Quantitative and Qualitative Pathogenetic Indices to improve the method of analysis of symptoms.  The data from HPTs for human immunodeficiency virus nosode, hepatitis C nosode, capsaicin alkaloids (capsaicin and dihydrocapsaicin) and hydroquinone (HQ) were extracted and analysed in terms of novel Qualitative and Quantitative Pathogenetic Indices. Taken into the consideration were the qualitative aspect of a symptom (i.e. its intensity), and the quantitative aspect by calculating the number of symptoms per volunteer per day. The pathogenetic effects and data evaluation indices were calculated for each HPT. A comparison was made of symptoms of verum versus placebo provers in terms of their quantity and quality.  Four HPTs involving 81 volunteers (56 on verum and 25 on placebo) generated 555 symptoms or pathogenetic effects (excluding run-in phase symptoms), of which 448 (81%) were reported by volunteers who were in the verum arm, and 107 (19%) were reported by volunteers on placebo. The overall mean incidence of pathogenetic effects for the four HPTs was thus 8 per verum prover and 4.28 per placebo prover. The corresponding mean Quantitative Pathogenetic Index was 0.23 symptoms per volunteer per day for the verum arm and 0.12 symptoms per volunteer per day for the placebo arm. The overall mean incidence of pathogenetic effects in the run-in phase was less. The overall mean Qualitative Pathogenetic Index (number of symptoms, of a given intensity, per volunteer per day) for the verum arm was 0.09 versus 0.05 for the placebo arm.  The symptoms exhibited by volunteers in the verum arm were more numerous and more intense than those in the placebo arm. An innovative and logical method of reporting of symptoms and analysis has been introduced by the use of these pathogenetic indices, which can be used in future as measurement tools for analysis of data from HPTs."	"Chaotic Blowup in the 3D Incompressible Euler Equations on a Logarithmic Lattice. The dispute on whether the three-dimensional (3D) incompressible Euler equations develop an infinitely large vorticity in a finite time (blowup) keeps increasing due to ambiguous results from state-of-the-art direct numerical simulations (DNS), while the available simplified models fail to explain the intrinsic complexity and variety of observed structures. Here, we propose a new model formally identical to the Euler equations, by imitating the calculus on a 3D logarithmic lattice. This model clarifies the present controversy at the scales of existing DNS and provides the unambiguous evidence of the following transition to the blowup, explained as a chaotic attractor in a renormalized system. The chaotic attractor spans over the anomalously large six-decade interval of spatial scales. For the original Euler system, our results suggest that the existing DNS strategies at the resolution accessible now (and presumably rather long into the future) are unsuitable, by far, for the blowup analysis, and establish new fundamental requirements for the approach to this long-standing problem."	"Invasive Fungal Infection with Absidia Corymbifera in Immunocompetent Patient with Electrical Scalp Burn. Invasive fungal infection in burn injury is caused by inoculation of fungal spore from patient skin, respiratory tract or from care giver. The risk factors for acquiring fungal infection in burns include age of burns, total burn size, full thickness burns, inhalational injury, prolonged hospital stay, late surgical excision, open dressing, central venous catheters, antibiotics, steroid treatment, long-term artificial ventilation, fungal wound colonization, hyperglycemic episodes and other immunosuppressive disorders. Invasive fungal infection with Absidia corymbifera is rare opportunistic infection encountered in patient with burn injury. The key for treatment is early clinical diagnosis, wide and repeated debridement and systemic and local antifungal treatment. We describe a case of invasive fungal infection with A. corymbifera in a patient with post-electrical scalp burn with late presentation after 10 days of injury in an immunocompetent patient."	"An author keyword analysis for mapping Sport Sciences. Scientific production has increased exponentially in recent years. It is necessary to find methodological strategies for understanding holistic or macro views of the major research trends developed in specific fields. Data mining is a useful technique to address this task. In particular, our study presents a global analysis of the information generated during last decades in the Sport Sciences Category (SSC) included in the Web of Science database. An analysis of the frequency of appearance and the dynamics of the Author Keywords (AKs) has been made for the last thirty years. Likewise, the network of co-occurrences established between words and the survival time of new words that have appeared since 2001 has also been analysed. One of the main findings of our research is the identification of six large thematic clusters in the SSC. There are also two major terms that coexist ('REHABILITATION' and 'EXERCISE') and show a high frequency of appearance, as well as a key behaviour in the calculated co-occurrence networks. Another significant finding is that AKs are mostly accepted in the SSC since there has been high percentage of new terms during 2001-2006, although they have a low survival period. These results support a multidisciplinary perspective within the Sport Sciences field of study and a colonization of the field by rehabilitation according to our AK analysis."	"Potentiating effect of imidacloprid on arsenic-induced testicular toxicity in Wistar rats. It is an established fact that humans and animals are exposed to more than one chemical concurrently from various sources such as food, air and water. In the past, much emphasis was laid on evaluating the toxic effects of a single chemical. Nowadays an increased attention is being paid to the interaction of xenobiotics with one another. Therefore, a study was aimed to evaluate the potentiating effect of imidacloprid (IMI) on arsenic-induced testicular toxicity in rats. Adult male Wistar rats randomly divided into eight groups with six in each were subjected to daily oral administrations for 28 days. Group I served as control, group II received IMI at the dose rate of 16.9 mg/kg body weight, group III, IV and V received arsenic at the dose rate of 50, 100 and 150 ppb in drinking water whereas group VI, VII and VIII received both arsenic and IMI. Repeated oral administrations of IMI or arsenic (150 ppb) alone resulted in a significant (P &lt; 0.05) elevation in the levels of malondialdehyde (MDA) and advanced oxidation protein product (AOPP) along with significant (P &lt; 0.05) decline in total thiols and antioxidant enzymatic activities indicating reduced antioxidant defense in testicular tissue of exposed rats. These findings were further corroborated with histological alterations in testes like fluid accumulation in interstitial spaces in IMI administered rats. Similarly, rats provided access exclusively to arsenic-containing drinking water induced degenerative changes in seminiferous tubules in a concentration-dependent manner. Concurrent administration of IMI and arsenic produced more severe antioxidant and histopathological alterations of testes as compared to exposure to either toxicant. Reduced antioxidant activities, increased MDA and AOPP levels with severe histopathological alterations in testes of rats on concurrent exposure indicated that IMI potentiated the arsenic-induced testicular toxicity in Wistar rats."	"Genetic structure and connectivity analysis in a large domestic livestock meta-population: The case of the Pura Raza Español horses. The Pura Raza Español (PRE) is an autochthonous Spanish horse population distributed in 65 countries and managed by a single association. Since 1960s, breeding animals have been steadily exported to other countries to establish local subpopulations. We analysed the genetic structure of a PRE horse meta-population (MP) of 215,500 animals from countries with at least 80 active animals (27 countries comprising 77% of the total animals in the complete pedigree). Genotypes from active animals (59% of the total animals in the complete pedigree) were also studied. Genetic analysis of the MP was performed using classical parameters such as inbreeding (F), coancestry, founder contribution, effective number of founders/ancestors (fe/fa) and gene flow between countries. Results showed that the MPF coefficient decreased in the last two decades (1990-2013), indicating an explicit management against F. Founder contribution to genetic variability across countries mainly came from females (73.6%). In general, unbalanced contributions of founders reflected the high loss of genetic diversity along generations (fe/fa as low as 32/19 for the whole MP). Despite this differential contribution, the proportional contribution to the global diversity of each country was similar. The highest within-country coancestry value corresponded to Cuba (0.1509), being the only country with highly inbred individuals (over 12%), and the lowest value corresponded to Spain (0.0574). These results should help to avoid further declines in genetic variability and increases in F levels, especially in small countries like Cuba. In parallel, only nine countries presented descendants in a single population, suggesting a common origin for all countries and/or a substantial exchange of genetic material between populations. Spain and the US showed the highest gene flow rates. These results support the need of a coordinated management strategy, especially promoting the exchange of genetic material to increase the effective population size and maintain the levels of genetic diversity in the PRE horse population."	"In vitro acaricidal activity of Piper nigrum and Piper longum fruit extracts and their active components against Rhipicephalus (Boophilus) microplus ticks. In vitro acaricidal activity of Piper nigrum and P. longum fruit extracts and their active components (piperine for P. nigrum and piperine and piperlonguminine for P. longum) was evaluated against adults engorged females of Rhipicephalus (Boophilus) microplus using adult immersion test. Three concentrations of each extract with four replications were used in the bioassay. Extracts significantly affected mortality rates of ticks in dose-dependent manner ranged 12.5-95.8% for P. nigrum and 29.2-87.5% for P. longum, with an additional effect on the reproductive physiology of ticks by inhibiting oviposition (28.1-96.9% by P. nigrum and 36.1-89.3% by P. longum). However, the acaricidal and oviposition limiting properties were decreased significantly when the active component(s) of each extract was tested separately. However, the combination of piperine and piperlonguminine (obtained from P. longum extract) caused 79.2% mortality of ticks which is equivalent to the corresponding concentration (~ 5%) of the extract. It can be concluded that the fruit extracts of P. nigrum and P. longum had both acaricidal and oviposition limiting actions against the adults of R. (B.) microplus which could make it a valuable component of developing sustainable strategy for integrated tick management."	"Exact Hydrodynamic Description of Active Lattice Gases. We introduce lattice gas models of active matter systems whose coarse-grained &quot;hydrodynamic&quot; description can be derived exactly. We illustrate our approach by considering two systems exhibiting two of the most studied collective behaviors in active matter: the motility-induced phase separation and the transition to collective motion. In both cases, we derive coupled partial differential equations describing the dynamics of the local density and polarization fields and show how they quantitatively predict the emerging properties of the macroscopic lattice gases."	"Corrigendum: ExGUtils: A Python Package for Statistical Analysis With the ex-Gaussian Probability Density. [This corrects the article on p. 612 in vol. 9, PMID: 29765345.]."	"miR-144 functions as an oncomiR in KYSE-410 human esophageal carcinoma cell line in vitro and targets PURA. Esophageal cancer (EC) is a highly complex disease with high incidence and mortality rates. Recent studies have shown that miRNAs play critical roles in diverse biological processes including oncogenesis, and we previously reported significantly increased expression of tissue and circulating miR-144 in EC. This study evaluates the functional significance of miR-144 in esophageal squamous cell carcinoma. Herein, we analysed the role of miR-144 in ESCC by silencing it in KYSE-410 cells, and followed this with cell cycle analysis and the following assays; MTT, annexin, colony formation, scratch and matrigel invasion assay. The miR-144 knockdown significantly suppressed ESCC cell proliferation at 72 hours post transfection (p=0.029). Silencing of miR-144 significantly decreased the migration, invasion and colony formation potential of KYSE-410 cells compared to cells treated with negative control (NC). Potential targets of miR-144 were predicted by the in silico approach followed by in vitro validation in real time PCR and luciferase reporter assay. The PURA and Spred1 in silico predicted miR-144 targets were validated by qRT-PCR and luciferase reporter assay. Over-expression of miR-144 significantly decreased PURA mRNA expression by 58.85% at 24 hours post transfection (p=0.009). Further validation by dual-luciferase reporter assay confirmed it is a direct targets of miR-144. Our overall study suggests the oncogenic role of miR-144 in EC by promoting proliferation and migration of ESCC cells. To the best of our knowledge, this is the first report showing PURA as a direct miR-144 downstream target and suggests its potential as a novel therapeutic target for this disease."	"Exome sequencing identified a de novo mutation of PURA gene in a patient with familial Xp22.31 microduplication. The clinical significance of Xp22.31 microduplication is controversial as it is reported in subjects with developmental delay (DD), their unaffected relatives and unrelated controls. We performed multifaceted studies in a family of a boy with hypotonia, dysmorphic features and DD who carried a 600 Kb Xp22.31 microduplication (7515787-8123310bp, hg19) containing two genes, VCX and PNPLA4. The duplication was transmitted from his cognitively normal maternal grandfather. We found no evidence of the duplication causing the proband's DD and congenital anomalies based on unaltered expression of PNPLA4 in the proband and his mother in comparison to controls and preferential activation of the paternal chromosome X with Xp22.31 duplication in proband's mother. However, a de novo, previously reported deleterious, missense mutation in Pur-alpha gene (PURA) (5q31.2), with a role in neuronal differentiation was detected in the proband by exome sequencing. We propose that the variability in the phenotype in carriers of Xp22.31 microduplication can be due to a second and more deleterious genetic mutation in more severely affected carriers. Widespread use of whole genome next generation sequencing in families with Xp22.31 CNV could help identify such cases."	"River landscapes and optimal channel networks. We study tree structures termed optimal channel networks (OCNs) that minimize the total gravitational energy loss in the system, an exact property of steady-state landscape configurations that prove dynamically accessible and strikingly similar to natural forms. Here, we show that every OCN is a so-called natural river tree, in the sense that there exists a height function such that the flow directions are always directed along steepest descent. We also study the natural river trees in an arbitrary graph in terms of forbidden substructures, which we call k-path obstacles, and OCNs on a d-dimensional lattice, improving earlier results by determining the minimum energy up to a constant factor for every [Formula: see text] Results extend our capabilities in environmental statistical mechanics."	"Growth dynamics of SiGe nanowires by the vapour-liquid-solid method and its impact on SiGe/Si axial heterojunction abruptness. The vapour-liquid-solid (VLS) method is by far the most extended procedure for bottom-up nanowire growth. This method also allows for the manufacture of nanowire axial heterojunctions in a straightforward way. To do this, during the growth process, precursor gases are switched on/off to obtain the desired change in the nanowire composition. Using this technique, axially heterostructured nanowires can be grown, which are crucial for the fabrication of electronic and optoelectronic devices. SiGe/Si nanowires are compatible with complementary metal oxide semiconductor (CMOS) technology, which improves their versatility and the possibility of integration with current electronic technologies. Abrupt heterointerfaces are fundamental for the development and correct operation of electronic and optoelectronic devices. Unfortunately, the VLS growth of SiGe/Si heterojunctions does not provide abrupt transitions because of the high solubility of group IV semiconductors in Au, with the corresponding reservoir effect that precludes the growth of sharp interfaces. In this work, we studied the growth dynamics of SiGe/Si heterojunctions based on already developed models for VLS growth. A composition map of the Si-Ge-Au liquid alloy is proposed to better understand the impact of the growing conditions on the nanowire growth process and the heterojunction formation. The solution of our model provides heterojunction profiles that are in good agreement with the experimental measurements. Finally, an in-depth study of the composition map provides a practical approach to the drastic reduction of heterojunction abruptness by reducing the Si and Ge concentrations in the catalyst droplet. This converges with previous approaches, which use catalysts aiming to reduce the solubility of the atomic species. This analysis opens new paths to the reduction of heterojunction abruptness using Au catalysts, but the model can be naturally extended to other catalysts and semiconductors."	"Integrated whole-genome and transcriptome sequence analysis reveals the genetic characteristics of a riboflavin-overproducing Bacillus subtilis. Commercial riboflavin production with Bacillus subtilis has been developed by combining rational and classical strain development for almost two decades, but how an improved riboflavin producer can be created rationally is still not completely understood. In this study, we demonstrate the combined use of integrated genomic and transcriptomic analysis of the genetic basis for riboflavin over-production in B. subtilis. This methodology succeeded in discerning the positive mutations in the mutagenesis derived riboflavin producer B. subtilis 24/pMX45 through whole-genome sequencing and transcriptome sequencing. These included RibC (G199D), ribD<sup>+</sup>(G+39A), PurA (P242L), CcpN(A44S), YvrH (R222Q) and two nonsense mutations YhcF (R90*) and YwaA (Q68*). Reintroducing these specific mutations into the wild-type strain recovered the riboflavin overproduction phenotype and subsequent metabolic engineering greatly improved riboflavin production, achieving an up to 3.4-fold increase of the riboflavin titer over the sequenced producer. A novel mutation, YvrH (R222Q), involved in a typical two-component regulatory system deregulated the purine de novo synthesis pathway and increased the pool of intracellular purine metabolites, which in turn increased riboflavin production. Taken together, we present a case study of combining genome and transcriptome analysis to elucidate the genetic underpinnings of a complex cellular property, which enabled the transfer of beneficial mutations to engineer a reference strain into an overproducer."	"Boricua de pura cepa: Ethnic identity, cultural stress and self-concept in Puerto Rican youth. The available literature on ethnic identity among Puerto Ricans has focused on those living in the United States, with little to no attention placed on examining ethnic identity and psychological constructs among youth living in Puerto Rico. Using a colonial mentality framework, the current study examined the associations between ethnic identity, cultural stress, and self-concept among adolescent boys and girls living in Puerto Rico. The current cross-sectional study surveyed participants (N = 187) recruited from several junior high schools in the metropolitan area in Puerto Rico. Relations between ethnic identity, cultural stress, and self-concept differed by gender. First, cultural stress was associated with self-concept for boys, such that higher cultural stress predicted lower self-concept. Second, among girls, cultural stress moderated the relation between ethnic identity and self-concept. Specifically, for girls experiencing high cultural stress, exploration and resolution of their ethnic identity was associated with higher ratings of self-concept. Although cultural stress has been widely understood as a phenomena associated with immigrants, our study indicated that cultural stress is important in understanding self-concept of youth living in Puerto Rico. For boys, cultural stress, but not ethnic identity, is particularly important to their self-concept. Among girls experiencing high cultural stress, exploration and resolution of ethnic identity was associated with higher self-concept. Results suggested that the cultural stress associated with the colonial context of Puerto Rico is salient in ethnic identity and self-concept development, even though Puerto Rican youth are the ethnic majority in the island. (PsycINFO Database Record (c) 2018 APA, all rights reserved)."	"ExGUtils: A Python Package for Statistical Analysis With the ex-Gaussian Probability Density. The study of reaction times and their underlying cognitive processes is an important field in Psychology. Reaction times are often modeled through the ex-Gaussian distribution, because it provides a good fit to multiple empirical data. The complexity of this distribution makes the use of computational tools an essential element. Therefore, there is a strong need for efficient and versatile computational tools for the research in this area. In this manuscript we discuss some mathematical details of the ex-Gaussian distribution and apply the ExGUtils package, a set of functions and numerical tools, programmed for python, developed for numerical analysis of data involving the ex-Gaussian probability density. In order to validate the package, we present an extensive analysis of fits obtained with it, discuss advantages and differences between the least squares and maximum likelihood methods and quantitatively evaluate the goodness of the obtained fits (which is usually an overlooked point in most literature in the area). The analysis done allows one to identify outliers in the empirical datasets and criteriously determine if there is a need for data trimming and at which points it should be done."	"Environmental reservoirs for exoS+ and exoU+ strains of Pseudomonas aeruginosa. Pseudomonas aeruginosa uses its type III secretion system to inject the effector proteins ExoS and ExoU into eukaryotic cells, which subverts these cells to the bacterium's advantage and contributes to severe infections. We studied the environmental reservoirs of exoS+ and exoU+ strains of P. aeruginosa by collecting water, soil, moist substrates and plant samples from environments in the Chicago region and neighbouring states. Whole-genome sequencing was used to determine the phylogeny and type III secretion system genotypes of 120 environmental isolates. No correlation existed between geographic separation of isolates and their genetic relatedness, which confirmed previous findings of both high genetic diversity within a single site and the widespread distribution of P. aeruginosa clonal complexes. After excluding clonal isolates cultured from the same samples, 74 exoS+ isolates and 16 exoU+ isolates remained. Of the exoS+ isolates, 41 (55%) were from natural environmental sites and 33 (45%) were from man-made sites. Of the exoU+ isolates, only 3 (19%) were from natural environmental sites and 13 (81%) were from man-made sites (p &lt; 0.05). These findings suggest that man-made water systems may be a reservoir from which patients acquire exoU+ P. aeruginosa strains."	"Prevalence of twin foaling and blood chimaerism in purebred Spanish horses. Twin foaling is associated with chimaerism in several domestic species and is recognised in horses. In this study, 21,097 purebred Spanish (Pura Raza Español) horse births from the 2015 to 2016 breeding season were investigated for chimaerism. Twin foaled and chimaeric individuals were assessed on the basis of foaling records, short-tandem repeat (STR) parentage test results and a sex-linked STR-based technique. Fourteen twin pregnancies with 23 twin foals born alive were identified (0.066% twin foaling prevalence), including five blood chimaeric cases (21.7%; overall prevalence 0.011%), suggesting that this genetic condition is extremely low in horses. Furthermore, no true chimaeras were detected. This is the first large scale study analysing the occurrence of chimaerism in a horse population and the first assessment of twin foaling in purebred Spanish horses."	"Transformation of animal genomics by next-generation sequencing technologies: a decade of challenges and their impact on genetic architecture. For more than a quarter of a century, sequencing technologies from Sanger's method to next-generation high-throughput techniques have provided fascinating opportunities in the life sciences. The continuing upward trajectory of sequencing technologies will improve livestock research and expedite the development of various new genomic and technological studies with farm animals. The use of high-throughput technologies in livestock research has increased interest in metagenomics, epigenetics, genome-wide association studies, and identification of single nucleotide polymorphisms and copy number variations. Such studies are beginning to provide revolutionary insights into biological and evolutionary processes. Farm animals, such as cattle, swine, and horses, have played a dual role as economically and agriculturally important animals as well as biomedical research models. The first part of this study explores the current state of sequencing methods, many of which are already used in animal genomic studies, and the second part summarizes the state of cattle, swine, horse, and chicken genome sequencing and illustrates its achievements during the last few years. Finally, we describe several high-throughput sequencing approaches for the improved detection of known, unknown, and emerging infectious agents, leading to better diagnosis of infectious diseases. The insights from viral metagenomics and the advancement of next-generation sequencing will strongly support specific and efficient vaccine development and provide strategies for controlling infectious disease transmission among animal populations and/or between animals and humans. However, prospective sequencing technologies will require further research and in-field testing before reaching the marketplace."	"Infantile spasms related to a 5q31.2-q31.3 microdeletion including PURA. Recently, haploinsufficiency of PURA has been identified as an essential cause of 5q31.3 microdeletion syndrome, which is characterized by severe psychomotor developmental delay, epilepsy, distinctive features, and delayed myelination. A new 5q31.2-q31.3 microdeletion that included PURA was identified in a patient with infantile spasms. Approximately 50% of patients with PURA-related neurodevelopmental disorders exhibited epilepsy regardless of whether they harbor a 5q31.3 deletion or PURA mutation. Patients with the 5q31.3 deletion or a PURA mutation should be carefully monitored for epileptic seizures."	"Insights into phytase-containing transgenic Lemna minor (L.) as a novel feed additive. This study assessed the effect of supplementation of novel transgenic phytase on growth performance and bone mineralization in Korean native broiler chickens. The experiment was designed using four dietary groups: those with a diet supplemented with (A) recombinant phytase, (B) transgenic phytase from the plant Lemna minor, (C) or wild-type L. minor as well as (D) a control group that was supplemented with commercially available feed. Three hundred 1-day-old Korean native broiler chicks were used and divided into these four dietary treatment groups having three replicates of 25 birds each (n = 75). The results showed increases in growth performance and bone mineralization in Groups B and C; compared with Groups A and D. Hematological analyses revealed notable contrasts in erythrocyte sedimentation rate, red blood cell count, and hemoglobin levels among the experimental groups, whereas no impacts of dietary treatment were observed on total eosinophil, lymphocyte, heterophil, monocyte, and basophil levels. The relative expression profiling of candidate genes showed that the genes involved in growth response, meat quality, and P-Ca metabolism were significantly highly expressed in the phytase-supplemented groups. Hence, it is suggested that dietary supplementation with transgenic phytase plant L. minor for enhancing growth performance is a promising new approach in the broiler feed industry. To the best of our knowledge, we report here the most comprehensive analysis using a broiler model that provides a workable platform for further research on the cost-effective production of feed with different compositions that might be beneficial in the livestock feed industry."	"Specific features of L-histidine production by Escherichia coli concerned with feedback control of AICAR formation and inorganic phosphate/metal transport. In the L-histidine (His) biosynthetic pathway of Escherichia coli, the first key enzyme, ATP-phosphoribosyltransferase (ATP-PRT, HisG), is subject to different types of inhibition. Eliminating the feedback inhibition of HisG by the His end product is an important step that enables the oversynthesis of His in breeding strains. However, the previously reported feedback inhibition-resistant mutant enzyme from E. coli, HisG<sup>E271K</sup>, is inhibited by purine nucleotides, particularly ADP and AMP, via competitive inhibition with its ATP substrate. 5-Aminoimidazole-4-carboxamide ribonucleotide (AICAR), which is formed not only during His biosynthesis but also during de novo purine biosynthesis, acts as a natural analog of AMP and substitutes for it in some enzymatic reactions. We hypothesized that AICAR could control its own formation, particularly through the His biosynthetic pathway, by negatively influencing HisG enzymatic activity, which would make preventing ATP-PRT transferase inhibition by AICAR crucial for His overproduction. For the first time, both the native E. coli HisG and the previously described feedback-resistant mutant HisG<sup>E271K</sup> enzymes were shown to be sensitive to inhibition by AICAR, a structural analog of AMP. To circumvent the negative effect that AICAR has on His synthesis, we constructed the new His-producing strain EA83 and demonstrated its improved histidine production. This increased production was particularly associated with the improved conversion of AICAR to ATP due to purH and purA gene overexpression; additionally, the PitA-dependent phosphate/metal (Me<sup>2+</sup>-Pi) transport system was modified by a pitA gene deletion. This His-producing strain unexpectedly exhibited decreased alkaline phosphatase activity at low Pi concentrations. AICAR was consequently hypothesized inhibit the two-component PhoBR system, which controls Pho regulon gene expression. Inhibition of a key enzyme in the His biosynthetic pathway, HisG, by AICAR, which is formed in this pathway, generates a serious bottleneck during His production. The constructed His-producing strain demonstrated the enhanced expression of genes that encode enzymes involved in the metabolism of AICAR to ATP, which is a substrate of HisG, and thus led to improved His accumulation."	"Quantitative Proteomics Identify the Possible Tumor Suppressive Role of Protease-Activated Receptor-4 in Esophageal Squamous Cell Carcinoma Cells. Exposure to carcinogens of tobacco smoke may result in methylation of protease-activated receptors-4 (PAR4) gene and further induces the loss of PAR4 expression, which is considered to be involved in carcinogenesis of esophageal squamous cell carcinoma (ESCC). Here we employed a TMT-based quantitative proteomic approach to identify PAR4-regulated changes of proteomic profiles in ESCC cells and to identify potentially therapeutic value. A total of 33 proteins were found significantly changed with 15 up-regulated and 18 down-regulated in PAR4-activating peptide (PAR4-AP) treated ESCC cells compared with controls. Bioinformatics analysis showed that key higher expressed proteins included those associated with apoptosis and tumor suppressor (e.g. CASP9), and lower expressed proteins included those associated with anti-apoptosis, autophagy and promoting cell proliferation (e.g. CHMP1B, PURA, PARG and HIST1H2AH). Western blot verified changes in five representative proteins including CASP9, CHMP1B, PURA, PARG and HIST1H2AH. Immunohistochemistry analysis showed that CHMP1B, PURA, PARG and HIST1H2AH expression in ESCC tissues were significantly higher than those in adjacent nontumorous tissues. Our findings will be helpful in further investigations into the functions and molecular mechanisms of PAR4 in ESCC."	"The effects of bioactive edible film containing Terminalia arjuna on the stability of some quality attributes of chevon sausages. The aim of this study was to assess the effectiveness of calcium alginate edible films incorporated with Terminalia arjuna on the lipid oxidative stability and storage quality of chevon sausages. Chevon sausages were aerobically packaged in the edible films containing different concentrations of T. arjuna viz. T1 (0.0%), T2 (0.50%) and T3 (1.0%) and were stored under refrigerated (4±1 °C) conditions. A significant improvement was observed in the lipid oxidative stability and microbial quality of the products. Products packaged in T2 and T3 films exhibited significantly (P &lt; 0.05) lower values for TBARS (mg malonaldehyde/kg), microbial counts (log cfu/g) and FFA (% oleic acid). Higher (P &lt; 0.05) sensory scores were also observed for the products packaged in T2 and T3 films. This study shows that application of a bioactive edible film incorporated with T. arjuna is an effective strategy in retarding the lipid oxidation and storage changes in meat products."	"Preservative effect of Asparagus racemosus: A novel additive for bioactive edible films for improved lipid oxidative stability and storage quality of meat products. Asparagus racemosus was used as a bioactive ingredient for the development of a novel calcium alginate edible film with preservative potential for improved lipid oxidative stability and storage quality of meat products. Chevon sausages were used as a model system and were aerobically packaged in the edible films incorporated with A. racemosus viz. T0 (0.0%), T1 (1.0%) and T2 (2.0%) and were stored under refrigerated (4 ± 1 °C) conditions. Products packaged in T1 and T2 edible films exhibited significantly (P &lt; 0.05) lower values for TBARS (mg malonaldehyde/kg), microbial counts (cfu/g) and FFA (% oleic acid) indicating the bioactive properties of the developed films. Significantly (P &lt; 0.05) higher sensory scores were recorded for the products packaged in T1 and T2 films. A. racemosus added antioxidant and antimicrobial properties to the developed films which improved the lipid oxidative stability and storage quality of the model meat product."	"Light Stops at Exceptional Points. Almost twenty years ago, light was slowed down to less than 10^{-7} of its vacuum speed in a cloud of ultracold atoms of sodium. Upon a sudden turn-off of the coupling laser, a slow light pulse can be imprinted on cold atoms such that it can be read out and converted into a photon again. In this process, the light is stopped by absorbing it and storing its shape within the atomic ensemble. Alternatively, the light can be stopped at the band edge in photonic-crystal waveguides, where the group speed vanishes. Here, we extend the phenomenon of stopped light to the new field of parity-time (PT) symmetric systems. We show that zero group speed in PT symmetric optical waveguides can be achieved if the system is prepared at an exceptional point, where two optical modes coalesce. This effect can be tuned for optical pulses in a wide range of frequencies and bandwidths, as we demonstrate in a system of coupled waveguides with gain and loss."	"Nonlinear dispersive waves in repulsive lattices. The propagation of nonlinear waves in a lattice of repelling particles is studied theoretically and experimentally. A simple experimental setup is proposed, consisting of an array of coupled magnetic dipoles. By driving harmonically the lattice at one boundary, we excite propagating waves and demonstrate different regimes of mode conversion into higher harmonics, strongly influenced by dispersion and discreteness. The phenomenon of acoustic dilatation of the chain is also predicted and discussed. The results are compared with the theoretical predictions of the α-Fermi-Pasta-Ulam equation, describing a chain of masses connected by nonlinear quadratic springs and numerical simulations. The results can be extrapolated to other systems described by this equation."	"A frame-shift deletion in the PURA gene associates with a new clinical finding: Hypoglycorrhachia. Is GLUT1 a new PURA target? PURA is a DNA/RNA-binding protein known to have an important role as a transcriptional and translational regulator. Mutations in the PURA gene have been documented to cause mainly a neurologic phenotype including hypotonia, epilepsy, development delay and respiratory alterations. We report here a patient with a frame-shift deletion in the PURA gene that apart from the classical PURA deficiency phenotype had marked hypoglycorrhachia, overlapping the clinical findings with a GLUT1 deficiency syndrome. SLC2A1 (GLUT1) mutations were discarded, so we hypothesized that GLUT1 could be downregulated in this PURA deficient scenario. We confirmed reduced GLUT1 expression in the patient's peripheral blood cells compared to controls predicting that this could also be happening in the blood-brain barrier and in this way explain the hypoglycorrhachia. Based on PURA's known functions as a transcriptional and translational regulator, we propose GLUT1 as a new PURA target. Further in vitro and in vivo studies are needed to confirm this and to uncover the underlying molecular mechanisms."	"PURA, the gene encoding Pur-alpha, member of an ancient nucleic acid-binding protein family with mammalian neurological functions. The PURA gene encodes Pur-alpha, a 322 amino acid protein with repeated nucleic acid binding domains that are highly conserved from bacteria through humans. PUR genes with a single copy of this domain have been detected so far in spirochetes and bacteroides. Lower eukaryotes possess one copy of the PUR gene, whereas chordates possess 1 to 4 PUR family members. Human PUR genes encode Pur-alpha (Pura), Pur-beta (Purb) and two forms of Pur-gamma (Purg). Pur-alpha is a protein that binds specific DNA and RNA sequence elements. Human PURA, located at chromosome band 5q31, is under complex control of three promoters. The entire protein coding sequence of PURA is contiguous within a single exon. Several studies have found that overexpression or microinjection of Pura inhibits anchorage-independent growth of oncogenically transformed cells and blocks proliferation at either G1-S or G2-M checkpoints. Effects on the cell cycle may be mediated by interaction of Pura with cellular proteins including Cyclin/Cdk complexes and the Rb tumor suppressor protein. PURA knockout mice die shortly after birth with effects on brain and hematopoietic development. In humans environmentally induced heterozygous deletions of PURA have been implicated in forms of myelodysplastic syndrome and progression to acute myelogenous leukemia. Pura plays a role in AIDS through association with the HIV-1 protein, Tat. In the brain Tat and Pura association in glial cells activates transcription and replication of JC polyomavirus, the agent causing the demyelination disease, progressive multifocal leukoencephalopathy. Tat and Pura also act to stimulate replication of the HIV-1 RNA genome. In neurons Pura accompanies mRNA transcripts to sites of translation in dendrites. Microdeletions in the PURA locus have been implicated in several neurological disorders. De novo PURA mutations have been related to a spectrum of phenotypes indicating a potential PURA syndrome. The nucleic acid, G-rich Pura binding element is amplified as expanded polynucleotide repeats in several brain diseases including fragile X syndrome and a familial form of amyotrophic lateral sclerosis/fronto-temporal dementia. Throughout evolution the Pura protein plays a critical role in survival, based on conservation of its nucleic acid binding properties. These Pura properties have been adapted in higher organisms to the as yet unfathomable development of the human brain."	"Intraoperative calcitonin stimulation testing in the surgical treatment of C-cell disease. The prognosis of medullary thyroid carcinoma (MTC), derived from parafollicular C-cells, depends on the completeness of the initial surgical excision. The C-cells produce calcitonin, a peptide hormone used as a biochemical and immunohistochemical tumor marker. The aim of the study was to evaluate an individualized approach to patients with C-cell disease, i.e. MTC and C-cell hyperplasia (CCH), using the intraoperative calcitonin testing-assisted surgical strategy as a predictor of the final outcome. A unicentre cross-sectional study. From June 2009 to May 2015, thirty one patients with MTC/CCH were surgically treated primarily (n=24) or reoperated for persistence of the disease (n=7). Depending on the result of intraoperative calcitonin stimulation testing (iCST), patients underwent total thyroidectomy with or without lymph node dissection. All patients were tested repeatedly in the postoperative period (range 1 to 48 months). The iCST was true negative in all CCH, and ten out of eleven N0 MTC primarily operated patients, and true positive in one N0 patient and six of the seven reoperated patients. The test was false negative in two patients preoperatively evaluated as N+, one primarily operated and one reoperated, respectively. The results encourage the use of an individualised approach on patients with MTC/CCH, e.g. to be less radical surgically in cases of negative iCST, and to be more radical in those patients with persistent increase of serum calcitonin. The absence of post-stimulation calcitonin elevation in iCST seems to be a good prognosis indicator in patients with an early-stage C-cell disease, but longer follow-up is needed."	"Prevalence and genetic diversity of human diarrheagenic Escherichia coli isolates by multilocus sequence typing. The population structure of human diarrheagenic Escherichia coli (DEC) isolates derived from worldwide collections remains undefined. A total of 1196 clinical isolates were obtained from a multilocus sequence typing (MLST) database. Genetic diversity analysis, MLST analysis, and phylogenetic analysis combined with different pathotypes were performed through a variety of calculation software applications. All isolates were categorized as one of 579 different sequence types (STs). The eBURST algorithm resolved these 579 STs into 27 clonal complexes (CCs), 37 concatemers, and 210 singletons, revealing a high level of genetic diversity in the population structure of DEC. CC10 was the most prevalent CC, comprising 276 (23.08%, 276/1196) isolates with 85 (14.68%, 85/579) STs widely distributed in 20 countries. The population structure of five common pathotypes was highly diversified, and isolates with the same ST or CC were heterogeneous for different pathotypes. Sequence variations were more abundant in fumC and gyrB than in the other five genes, and these exhibited the highest degree of nucleotide diversity (0.03886 and 0.03075, respectively) and the greatest number of polymorphic nucleotide sites (137 and 139, respectively). The dN/dS ratios of seven analyzed loci varied from 0.0083 (recA) to 0.0434 (purA), and the ratio for the concatenated sequence was 0.2518, revealing the effects of purifying selection on housekeeping genes during the evolutionary process. Significant allele linkage disequilibrium was detected when the standardized index of association (I<sup>S</sup>A) was calculated both for the entire collection of isolates (0.3174, p&lt;0.001) and for the 579 STs (0.1475, p&lt;0.001). This study facilitated a comprehensive understanding of the genetic diversity of human DEC distributed across the global population. The results provide genetic evidence that will allow us to uncover the microevolutionary relationships among different pathogenic isolates of DEC."	"A happiness degree predictor using the conceptual data structure for deep learning architectures. Happiness is a universal fundamental human goal. Since the emergence of Positive Psychology, a major focus in psychological research has been to study the role of certain factors in the prediction of happiness. The conventional methodologies are based on linear relationships, such as the commonly used Multivariate Linear Regression (MLR), which may suffer from the lack of representative capacity to the varied psychological features. Using Deep Neural Networks (DNN), we define a Happiness Degree Predictor (H-DP) based on the answers to five psychometric standardized questionnaires. A Data-Structure driven architecture for DNNs (D-SDNN) is proposed for defining a HDP in which the network architecture enables the conceptual interpretation of psychological factors associated to happiness. Four different neural network configurations have been tested, varying the number of neurons and the presence or absence of bias in the hidden layers. Two metrics for evaluating the influence of conceptual dimensions have been defined and computed: one quantifies the influence weight of the conceptual dimension in absolute terms and the other one pinpoints the direction (positive or negative) of the influence. A cross-sectional survey targeting non-institutionalized adult population residing in Spain was completed by 823 cases. The total of 111 elements of the survey are grouped by socio-demographic data and by five psychometric scales (Brief COPE Inventory, EPQR-A, GHQ-28, MOS-SSS and SDHS) measuring several psychological factors acting one as the outcome (SDHS) and the four others as predictors. Our D-SDNN approach provided a better outcome (MSE: 1.46·10<sup>-2</sup>) than MLR (MSE: 2.30·10<sup>-2</sup>), hence improving by 37% the predictive accuracy, and allowing to simulate the conceptual structure. We observe a better performance of Deep Neural Networks (DNN) with respect to traditional methodologies. This demonstrates its capability to capture the conceptual structure for predicting happiness degree through psychological variables assessed by standardized questionnaires. It also permits to estimate the influence of each factor on the outcome without assuming a linear relationship."	"Cumulus cell expansion and ultrastructural changes in in vitro matured bovine oocytes under heat stress. Cumulus-oocyte complexes (COCs) from cows were matured under normal (38.5°C) and elevated temperatures (41°C) simulating heat stress and their maturation was assessed based on measurement of cumulus expansion in both groups. There was a significant reduction (P&lt;0.01) in maturation rate in the heat stressed oocytes. The ultrastructural events associated with in vitro oocyte maturation and changes associated with elevated temperature were also studied by transmission electron microscopy (TEM). Normal maturation cellular events were marked by migration of Golgi and mitochondria from the cortical regions, and conversely by a migration of cortical granules from the inner regions to a sub-perivitelline zone. Heat stressed oocytes (41°C) were not only marked by a reduction in rate and less cumulus cell expansion, but also by a reduction in cortical granule migration. The mitochondria appeared swollen with cristolysis. Ribosomal disruption and an abundance of free ribosomes were also seen. Changes in the cumulus cells include nuclear chromatin margination, condensation and karyolysis, formation of nuclear and cell membrane blebs, and typical membrane bound vesicles enclosing cell fragments indistinguishable from apoptosis. Evidently, heat stress can be associated with reduced cytoplasmic events of oocyte maturation, thereby decreasing the oocyte competence and can be associated with apoptosis of the cumulus cells and therefore compromise the survival of the oocyte itself."	"Nuclear Magnetic Resonance characterization of traditional homeopathically manufactured copper (Cuprum metallicum) and plant (Gelsemium sempervirens) medicines and controls. NMR proton relaxation is sensitive to the dynamics of the water molecule H2O, through the interaction of the spin of the proton (<sup>1</sup>H) with external magnetic and electromagnetic fields. We measured dilution and potentization processes through measurements of <sup>1</sup>H spin-lattice T1 and spin-spin T2 relaxation times. In order to interpret the recorded fluctuations in T1- or T2-values, experimental data were linearized by investigating how the area under a fluctuating time = f(dilution) curve (dilution integral or DI) changes with dilution. Two kinds of fitting procedures were considered: chi-square fitting with a goodness-of-fit probability, and least absolute deviations criterion with Pearson's linear correlation coefficient. We showed that fluctuations are not attributable to random noise and/or experimental errors, evidencing a memory effect quantifiable by the slope of the DI = f(dilution) straight line. For all experiments, correlation coefficients were found to lie above 0.9999, against 0.999 for random noise. The discrimination between experimental slopes and slopes associated with random noise data was very good at a five-sigma level of confidence (i.e. probability 3 × 10<sup>-7</sup>). Discrimination between experimental slopes at a five-sigma level was possible in most cases, with three exceptions: gelsemium aqua pura v gelsemium dilution (four-sigma); copper aqua pura v gelsemium aqua pura (four-sigma) and copper simple dilution v gelsemium simple dilution (three-sigma). All potentized samples show very good discrimination (at least nine-sigma level) against aqua pura, lactose or simple dilution. It was possible to transform the associated relaxation times into a molecular rotational correlation time τc and an average spin-spin distance d. Our experiments thus point to a considerable slowing down of molecular movements (τc &gt; 1300 ps or T = 224-225 K) around water molecules up to a distance of 3.7 Å, values. It was also possible to rule out other possible mechanisms of relaxation (diffusive motion, <sup>17</sup>O-<sup>1</sup>H relaxation or coupling with the electronic spin, S = 1, of dissolved dioxygen molecules). There is clear evidence that homeopathic solutions cannot be considered as pure water as commonly assumed. Instead, we have evidenced a clear memory effect upon dilution/potentization of a substance (water, lactose, copper, gelsemium) reflected by different rotational correlation times and average H⋯H distances. A possible explanation for such a memory effect may lie in the formation of mesoscopic water structures around nanoparticles and/or nanobubbles mediated by zero-point fluctuations of the vacuum electromagnetic field as suggested by quantum field theories. The existence of an Avogadro's 'wall' for homeopathically-prepared medicines is not supported by our data. Rather it appears that all dilutions have a specific material configuration determined by the potentized substance, also by the chemical nature of the containers, and dissolved gases and the electromagnetic environment. This sensitivity of homeopathically-prepared medicines to electromagnetic fields may be amplified by the highly non-linear processing routinely applied in the preparation of homeopathic medicines. Future work is needed in such directions. The time is now ripe for a demystification of the preparation of homeopathic remedies."	"Expanding the neurodevelopmental phenotype of PURA syndrome. PURA syndrome is a recently described developmental encephalopathy presenting with neonatal hypotonia, feeding difficulties, global developmental delay, severe intellectual disability, and frequent apnea and epilepsy. We describe 18 new individuals with heterozygous sequence variations in PURA. A neuromotor disorder starting with neonatal hyptonia, but ultimately allowing delayed progression to walking, was present in nearly all individuals. Congenital apnea was present in 56% during infancy, but all cases in this cohort resolved during the first year of life. Feeding difficulties were frequently reported, with gastrostomy tube placement required in 28%. Epilepsy was present in 50% of the subjects, including infantile spasms and Lennox-Gastaut syndrome. Skeletal complications were found in 39%. Disorders of gastrointestinal motility and nystagmus were also recurrent features. Autism was diagnosed in one individual, potentially expanding the neurodevelopmental phenotype associated with this syndrome. However, we did not find additional PURA sequence variations in a cohort of 120 subjects with autism. We also present the first neuropathologic studies of PURA syndrome, and describe chronic inflammatory changes around the arterioles within the deep white matter. We did not find significant correlations between mutational class and severity, nor between location of the sequence variation in PUR repeat domains. Further studies are required in larger cohorts of subjects with PURA syndrome to clarify these genotype-phenotype associations."	"PURA syndrome: clinical delineation and genotype-phenotype study in 32 individuals with review of published literature. De novo mutations in PURA have recently been described to cause PURA syndrome, a neurodevelopmental disorder characterised by severe intellectual disability (ID), epilepsy, feeding difficulties and neonatal hypotonia. To delineate the clinical spectrum of PURA syndrome and study genotype-phenotype correlations. Diagnostic or research-based exome or Sanger sequencing was performed in individuals with ID. We systematically collected clinical and mutation data on newly ascertained PURA syndrome individuals, evaluated data of previously reported individuals and performed a computational analysis of photographs. We classified mutations based on predicted effect using 3D in silico models of crystal structures of Drosophila-derived Pur-alpha homologues. Finally, we explored genotype-phenotype correlations by analysis of both recurrent mutations as well as mutation classes. We report mutations in PURA (purine-rich element binding protein A) in 32 individuals, the largest cohort described so far. Evaluation of clinical data, including 22 previously published cases, revealed that all have moderate to severe ID and neonatal-onset symptoms, including hypotonia (96%), respiratory problems (57%), feeding difficulties (77%), exaggerated startle response (44%), hypersomnolence (66%) and hypothermia (35%). Epilepsy (54%) and gastrointestinal (69%), ophthalmological (51%) and endocrine problems (42%) were observed frequently. Computational analysis of facial photographs showed subtle facial dysmorphism. No strong genotype-phenotype correlation was identified by subgrouping mutations into functional classes. We delineate the clinical spectrum of PURA syndrome with the identification of 32 additional individuals. The identification of one individual through targeted Sanger sequencing points towards the clinical recognisability of the syndrome. Genotype-phenotype analysis showed no significant correlation between mutation classes and disease severity."	"Nanoformulations of curcumin: an emerging paradigm for improved remedial application. Curcumin is a natural polyphenol and essential curcuminoid derived from the rhizome of the medicinal plant Curcuma longa (L.) is universally acknowledged as &quot;Wonder drug of life&quot;. It is a vital consumable and restorative herb, commonly keened for several ailments such as cancer, arthritis, pain, bruises, gastrointestinal quandaries, swelling and much more. Despite its enormous curative potential, the poor aqueous solubility and consequently, minimal systemic bioavailability with rapid degradation are some of the major factors which restrict the utilization of curcumin at medical perspective. However, to improve its clinically relevant parameters, nanoformulation of curcumin is emerging as a novel substitute for their superior therapeutic modality. It enhances its aqueous solubility and targeted delivery to the tissue of interest that prompts to enhance the bioavailability, better drug conveyance, and more expeditious treatment. Subsequent investigations are endeavored to enhance the bio-distribution of native curcumin by modifying with felicitous nano-carriers for encapsulation. In this review, we specifically focus on the recent nanotechnology based implementations applied for overcoming the innate constraints of native curcumin and additionally the associated challenges which restrict its potential therapeutic applications both in vivo and in-vitro studies, as well as their detailed mechanism of action, have additionally been discussed."	"The roles of intrinsic disorder-based liquid-liquid phase transitions in the &quot;Dr. Jekyll-Mr. Hyde&quot; behavior of proteins involved in amyotrophic lateral sclerosis and frontotemporal lobar degeneration. Pathological developments leading to amyotrophic lateral sclerosis (ALS) and frontotemporal lobar degeneration (FTLD) are associated with misbehavior of several key proteins, such as SOD1 (superoxide dismutase 1), TARDBP/TDP-43, FUS, C9orf72, and dipeptide repeat proteins generated as a result of the translation of the intronic hexanucleotide expansions in the C9orf72 gene, PFN1 (profilin 1), GLE1 (GLE1, RNA export mediator), PURA (purine rich element binding protein A), FLCN (folliculin), RBM45 (RNA binding motif protein 45), SS18L1/CREST, HNRNPA1 (heterogeneous nuclear ribonucleoprotein A1), HNRNPA2B1 (heterogeneous nuclear ribonucleoprotein A2/B1), ATXN2 (ataxin 2), MAPT (microtubule associated protein tau), and TIA1 (TIA1 cytotoxic granule associated RNA binding protein). Although these proteins are structurally and functionally different and have rather different pathological functions, they all possess some levels of intrinsic disorder and are either directly engaged in or are at least related to the physiological liquid-liquid phase transitions (LLPTs) leading to the formation of various proteinaceous membrane-less organelles (PMLOs), both normal and pathological. This review describes the normal and pathological functions of these ALS- and FTLD-related proteins, describes their major structural properties, glances at their intrinsic disorder status, and analyzes the involvement of these proteins in the formation of normal and pathological PMLOs, with the ultimate goal of better understanding the roles of LLPTs and intrinsic disorder in the &quot;Dr. Jekyll-Mr. Hyde&quot; behavior of those proteins."	"Purα Repaired Expanded Hexanucleotide GGGGCC Repeat Noncoding RNA-Caused Neuronal Toxicity in Neuro-2a Cells. Expanded hexanucleotide GGGGCC repeat in a noncoding region of C9ORF72 is the most common cause of frontotemporal dementia (FTD) and amyotrophic lateral sclerosis (ALS). However, its molecular pathogenesis remains unclear. In our previous study, the expanded GGGGCC repeats have been shown to be sufficient to cause neurodegeneration. In order to investigate the further role of expanded GGGGCC repeats in the neuron, the normal r(GGGGCC)3 and mutant-type expanded r(GGGGCC)30 expression vectors were transfected into Neuro-2a cells. Cell proliferation, dendrite development, and the proteins' levels of microtubule-associated protein-2 (MAP2) and cyclin-dependent kinase-5 (CDK5) were used to evaluate the cell toxicity of GGGGCC repeats on Neuro-2a cells. The results were shown that expression of expanded GGGGCC repeats caused neuronal cell toxicity in Neuro-2a cells, enhanced the expression of pMAP2 and pCDK5. Moreover, overexpression of Purα repaired expanded GGGGCC repeat-inducing neuronal toxicity in Neuro-2a cells and reduced the expression of pMAP2 and pCDK5. In all, our findings suggested that the expanded GGGGCC repeats might cause neurodegeneration through destroyed neuron cells. And the GGGGCC repeat-induced neuronal cell toxicity was inhibited by upregulation of Purα. We inferred that Purα inhibits expanded GGGGCC repeat-inducing neurodegeneration, which might reveal a novel mechanism of neurodegenerative diseases ALS and FTD."	"Primary Ewing's Sarcoma of the Temporal Bone: A Rare Case Report and Literature Review. Ewing's sarcoma is a malignant, round cell tumor arising from the bones and primarily affecting children and adolescent, accounting for 3 % of all childhood malignancies. Although the long bones and the trunk are typically affected, rare cases of it involving isolated bones throughout the body have been reported. Involvement of the skull bones is rare, constituting 1-6 % of the total Ewing's sarcoma cases but those affecting the cranial bones are rarer still, constituting only 1 %. We describe an 8 months old infant having Ewing sarcoma, of the petrous and mastoid parts of temporal bone along with the occipital bone, whose clinical presentation mimicked mastoiditis with facial nerve palsy. We discuss the clinical and therapeutic course of an extensive primary Ewing sarcoma of the temporal bone, which was treated without performing surgery and review this entity's literature in detail."	"Proposed anti-HSV compounds isolated from Simira species. Secondary metabolites isolated from Simira eleiezeriana and Simira glaziovii were evaluated against herpes simplex virus (HSV-1) and (HSV-2). The 50% effective concentrations values (EC50) were calculated from the dose-response curve and the selectivity index (SI) against the virus. The physicochemical data LogP, (PSA), (NRB), (HBA) and (HBD) were obtained using Marvin Sketch. Among the tested compounds, conipheraldeyde, harman and simirane A showed better results with EC50 6.39; 4.90; 4.61 µg/mL and SI 78.3; 11.8; 7.01, respectively, for HSV-1, and EC50 41.2; 71.8; 3.73 µg/mL and SI 12.1; 24.7; 8.7, respectively, for HSV-2. The percentage of inhibition (PI) obtained for HSV-1 were higher than 60%, and for HSV-2 these compounds showed PI &gt; 90%. The physical chemical data showed that the most active compounds satisfy the attributes for drugs with good oral bioavailability."	"Incidence of bovine clinical mastitis in Jammu region and antibiogram of isolated pathogens. This study was conducted to evaluate the incidence of clinical mastitis in bovines of Jammu region, to identify the infectious organisms responsible for it, and the antimicrobial sensitivity of isolated pathogens. The study was conducted on cases that were presented to the Medicine Division of Teaching Veterinary Clinical Complex, Faculty of Veterinary Sciences and Animal Husbandry, R.S. Pura, Jammu, Jammu and Kashmir. A total of 260 cases of bovines were presented from June 30, 2012, to July 01, 2013, out of which 30 cases were of clinical mastitis. The diagnosis of clinical mastitis was made on the basis of history and clinical examination of affected animals. Animal and quarter-wise incidence of clinical mastitis were found to be 11.5% and 5.76%, respectively. Of the 23 isolates obtained, Staphylococcus aureus (60.87%) was the most frequently isolated organism, followed by coagulase negative Staphylococci (13.04%), Streptococcus uberis (4.35%), Streptococcus dysgalactiae (8.69%), and Escherichia coli (13.04%). The antimicrobial sensitivity of isolates revealed maximum sensitivity to enrofloxacin, gentamicin, amoxicillin/sulbactam, ceftriaxone/tazobactam, ceftizoxime, ampicillin/sulbactam and least sensitivity for oxytetracycline and penicillin. Staphylococcus spp. is the major causative agent of clinical mastitis in bovines of Jammu region. The causative agents of the clinical mastitis were most sensitive to enrofloxacin and gentamicin."	"Uropathogenic Escherichia coli ST131 in urinary tract infections in children. Escherichia coli sequence type (ST) 131, a multidrug-resistant clone causing extraintestinal infections, has rapidly become prevalent worldwide. However, the epidemiological and clinical features of pediatric infections are poorly understood. We aimed to explore the characteristics of ST131 Escherichia coli isolated from Korean children with urinary tract infections. We examined 114 uropathogenic E. coli (UPEC) isolates from children hospitalized at Chung-Ang University Hospital between 2011 and 2014. Bacterial strains were classified into STs by partial sequencing of seven housekeeping genes (adk, fumC, gyrB, icd, mdh, purA, and recA). Clinical characteristics and antimicrobial susceptibility were compared between ST131 and non-ST131 UPEC isolates. Sixteen UPEC isolates (14.0%) were extended-spectrum β-lactamase (ESBL)-producers; 50.0% of ESBL-producers were ST131 isolates. Of all the isolates tested, 13.2% (15 of 114) were classified as ST131. There were no statistically significant associations between ST131 and age, sex, or clinical characteristics, including fever, white blood cell counts in urine and serum, C-reactive protein, radiologic abnormalities, and clinical outcome. However, ST131 isolates showed significantly lower rates of susceptibility to cefazolin (26.7%), cefotaxime (40.0%), cefepime (40.0%), and ciprofloxacin (53.3%) than non-ST131 isolates (65.7%, 91.9%, 92.9%, and 87.9%, respectively; P&lt;0.001 for all). ESBL was more frequently produced in ST131 (53.3%) than in non-ST131 (8.1%) isolates (P&lt;0.01). ST131 E. coli isolates were prevalent uropathogens in children at a single medical center in Korea between 2011 and 2014. Although ST131 isolates showed higher rates of antimicrobial resistance, clinical presentation and outcomes of patients were similar to those of patients infected with non-ST131 isolates."	"Alterations in oxidative stress parameters and its associated correlation with clinical disease on experimental Cryptosporidium parvum infection in Swiss albino mice. The present study was conducted to evaluate the changes in oxidative stress parameters on experimental infection with Cryptosporidium parvum in Swiss albino mice. The mice were divided into four groups viz., group I-IV, each group comprising of 15 mice. Group I mice served as healthy control. In Group II mice, C. parvum oocysts @ 10<sup>4</sup>/os were administered, mice of group III were given dexamethasone @ 30 µg/ml in drinking water whereas group IV mice were given dexamethasone @ 30 µg/ml along with C. parvum oocysts @ 10<sup>4</sup>/os. Significant changes were seen in oxidative stress parameters which included significant increase in LPO and decrease in levels of SOD, CAT and GSH in liver and intestine in group IV mice at 10th DPI when compared to others indicating an important role played by free radical induced oxidative stress in the development of C. parvum infection in mice which was clinically characterized by loss of body condition, profuse bloody diarrhoea and peak oocyst shedding intensity occurring at 10th DPI."	"Early prediction of cardiac resynchronization therapy response by non-invasive electrocardiogram markers. Cardiac resynchronization therapy (CRT) is an effective treatment for those patients with severe heart failure. Regrettably, there are about one third of CRT &quot;non-responders&quot;, i.e. patients who have undergone this form of device therapy but do not respond to it, which adversely affects the utility and cost-effectiveness of CRT. In this paper, we assess the ability of a novel surface ECG marker to predict CRT response. We performed a retrospective exploratory study of the ECG previous to CRT implantation in 43 consecutive patients with ischemic (17) or non-ischemic (26) cardiomyopathy. We extracted the QRST complexes (consisting of the QRS complex, the S-T segment, and the T wave) and obtained a measure of their energy by means of spectral analysis. This ECG marker showed statistically significant lower values for non-responder patients and, joint with the duration of QRS complexes (the current gold-standard to predict CRT response), the following performances: 86% accuracy, 88% sensitivity, and 80% specificity. In this manner, the proposed ECG marker may help clinicians to predict positive response to CRT in a non-invasive way, in order to minimize unsuccessful procedures."	"Determination of fat content in chicken hamburgers using NIR spectroscopy and the Successive Projections Algorithm for interval selection in PLS regression (iSPA-PLS). Determining fat content in hamburgers is very important to minimize or control the negative effects of fat on human health, effects such as cardiovascular diseases and obesity, which are caused by the high consumption of saturated fatty acids and cholesterol. This study proposed an alternative analytical method based on Near Infrared Spectroscopy (NIR) and Successive Projections Algorithm for interval selection in Partial Least Squares regression (iSPA-PLS) for fat content determination in commercial chicken hamburgers. For this, 70 hamburger samples with a fat content ranging from 14.27 to 32.12mgkg<sup>-1</sup> were prepared based on the upper limit recommended by the Argentinean Food Codex, which is 20% (ww<sup>-1</sup>). NIR spectra were then recorded and then preprocessed by applying different approaches: base line correction, SNV, MSC, and Savitzky-Golay smoothing. For comparison, full-spectrum PLS and the Interval PLS are also used. The best performance for the prediction set was obtained for the first derivative Savitzky-Golay smoothing with a second-order polynomial and window size of 19 points, achieving a coefficient of correlation of 0.94, RMSEP of 1.59mgkg<sup>-1</sup>, REP of 7.69% and RPD of 3.02. The proposed methodology represents an excellent alternative to the conventional Soxhlet extraction method, since waste generation is avoided, yet without the use of either chemical reagents or solvents, which follows the primary principles of Green Chemistry. The new method was successfully applied to chicken hamburger analysis, and the results agreed with those with reference values at a 95% confidence level, making it very attractive for routine analysis."	"Characterization of purine-rich element binding protein B as a novel biomarker in acute myelogenous leukemia prognostication. Acute myelogenous leukemia (AML) is an aggressive hematologic cancer characterized by infiltration of proliferative, clonal, abnormally differentiated cells of myeloid lineage in the bone marrow and blood. Malignant cells in AML often exhibit chromosomal and other genetic or epigenetic abnormalities that are useful in prognostic risk assessment. In this study, the relative expression and novel single-stranded DNA (ssDNA) binding function of purine-rich element binding proteins A and B (Purα and Purβ) were systematically evaluated in established leukemia cell lines and in lineage committed myeloid cells isolated from patients diagnosed with a hematologic malignancy. Western blotting revealed that Purα and Purβ are markedly elevated in CD33<sup>+</sup> /CD66b<sup>+</sup> cells from AML patients compared to healthy subjects and to patients with other types of myeloid cell disorders. Results of in silico database analysis of PURA and PURB mRNA expression during hematopoiesis in conjunction with the quantitative immunoassay of the ssDNA-binding activities of Purα and Purβ in transformed leukocyte cell lines pointed to Purβ as the more distinguishing biomarker of myeloid cell differentiation status. Purβ ssDNA-binding activity was significantly increased in myeloid cells from AML patients but not from individuals with other myeloid-related diseases. The highest levels of Purβ activity were detected in myeloid cells from primary AML patients and from AML patients displaying other risk factors forecasting a poor prognosis. Collectively, these findings suggest that the enhanced ssDNA-binding activity of Purβ in transformed myeloid cells may serve as a unique and measurable phenotypic trait for improving prognostic risk stratification in AML."	"Identification of Staphylococcus aureus Factors Required for Pathogenicity and Growth in Human Blood. Staphylococcus aureus is a human commensal but also has devastating potential as an opportunistic pathogen. S. aureus bacteremia is often associated with an adverse outcome. To identify potential targets for novel control approaches, we have identified S. aureus components that are required for growth in human blood. An ordered transposon mutant library was screened, and 9 genes involved specifically in hemolysis or growth on human blood agar were identified by comparing the mutants to the parental strain. Three genes (purA, purB, and pabA) were subsequently found to be required for pathogenesis in the zebrafish embryo infection model. The pabA growth defect was specific to the red blood cell component of human blood, showing no difference from the parental strain in growth in human serum, human plasma, or sheep or horse blood. PabA is required in the tetrahydrofolate (THF) biosynthesis pathway. The pabA growth defect was found to be due to a combination of loss of THF-dependent dTMP production by the ThyA enzyme and increased demand for pyrimidines in human blood. Our work highlights pabA and the pyrimidine salvage pathway as potential targets for novel therapeutics and suggests a previously undefined role for a human blood factor in the activity of sulfonamide antibiotics."	"Myiasis of domestic and wild ruminants caused by Hypodermatinae in the Mediterranean and Indian subcontinent. Myiasis caused by Hypodermatinae flies is an economically important disease affecting domesticated and wild ruminants in countries of the Mediterranean and Indian subcontinent. The adult flies have a short life span of 1 week, and they spread disease by laying their eggs on the coat of animals. Hypoderma spp. primarily lay their eggs on cattle, buffalo, roe deer, red deer and reindeer, while Przhevalskiana spp. lay eggs on the coat of goats. The larvae live as tissue parasites, inducing myiasis in the host, and have a major impact on the productivity and welfare of infested animals. Diagnosis of myiasis is mainly based on clinical examination of the animal and immunodiagnosis using serum and milk samples. Chemical control of this pest is considered the best treatment option. Treatment with microdoses of ivermectin (2μg/kg body weight) combined with immunosurveillance strategies has led to the eradication of bovine hypodermosis in a few countries; however, these flies are still prevalent throughout the northern hemisphere. This paper reviews the current status, diagnosis and control measures for Hypodermatinae myiasis of domestic and wild ruminants in the Indian subcontinent and Mediterranean region."	"Aged Stem Cells Reprogram Their Daily Rhythmic Functions to Adapt to Stress. Normal homeostatic functions of adult stem cells have rhythmic daily oscillations that are believed to become arrhythmic during aging. Unexpectedly, we find that aged mice remain behaviorally circadian and that their epidermal and muscle stem cells retain a robustly rhythmic core circadian machinery. However, the oscillating transcriptome is extensively reprogrammed in aged stem cells, switching from genes involved in homeostasis to those involved in tissue-specific stresses, such as DNA damage or inefficient autophagy. Importantly, deletion of circadian clock components did not reproduce the hallmarks of this reprogramming, underscoring that rewiring, rather than arrhythmia, is associated with physiological aging. While age-associated rewiring of the oscillatory diurnal transcriptome is not recapitulated by a high-fat diet in young adult mice, it is significantly prevented by long-term caloric restriction in aged mice. Thus, stem cells rewire their diurnal timed functions to adapt to metabolic cues and to tissue-specific age-related traits."	"Cilia Control Fat Deposition during Tissue Repair. Fibro/adipogenic progenitors (FAPs) are emerging as crucial regulators of fibrous and fat deposits during skeletal muscle regeneration. In a recent issue of Cell, Kopinke et al. (2017) report that primary cilia induce the adipogenic fate of FAPs in injured and diseased muscle by restraining Hedgehog signaling."	"Effect of condensed tannins from Ficus infectoria and Psidium guajava leaf meal mixture on nutrient metabolism, methane emission and performance of lambs. The study examined the effect of condensed tannins (CT) containing Ficus infectoria and Psidium guajava leaf meal mixture (LMM) supplementation on nutrient metabolism, methane emission and performance of lambs. Twenty four lambs of ~6 months age (average body weight 10.1±0.60 kg) were randomly divided into 4 dietary treatments (CT-0, CT-1, CT-1.5, and CT-2 containing 0, 1.0, 1.5, and 2.0 percent CT through LMM, respectively) consisting of 6 lambs each in a completely randomized design. All the lambs were offered a basal diet of wheat straw ad libitum, oat hay (100 g/d) along with required amount of concentrate mixture to meet their nutrient requirements for a period of 6 months. After 3 months of experimental feeding, a metabolism trial of 6 days duration was conducted on all 24 lambs to determine nutrient digestibility and nitrogen balance. Urinary excretion of purine derivatives and microbial protein synthesis were determined using high performance liquid chromatography. Respiration chamber study was started at the mid of 5th month of experimental feeding trial. Whole energy balance trials were conducted on individual lamb one after the other, in an open circuit respiration calorimeter. Intake of dry matter and organic matter (g/d) was significantly (p&lt;0.05) higher in CT-1.5 than control. Digestibility of various nutrients did not differ irrespective of treatments. Nitrogen retention and microbial nitrogen synthesis (g/d) was significantly (p&lt;0.01) higher in CT-1.5 and CT-2 groups relative to CT-0. Total body weight gain (kg) and average daily gain (g) were significantly (linear, p&lt;0.01) higher in CT-1.5 followed by CT-1 and CT-0, respectively. Feed conversion ratio (FCR) by lambs was significantly (linear, p&lt;0.01) better in CT-1.5 followed by CT-2 and CT-0, respectively. Total wool yield (g; g/d) was linearly (p&lt;0.05) higher for CT-1.5 than CT-0. Methane emission was linearly decreased (p&lt;0.05) in CT groups and reduction was highest (p&lt;0.01) in CT-2 followed by CT-1.5 and CT-1. Methane energy (kcal/d) was linearly decreased (p&lt;0.05) in CT groups. The CT supplementation at 1% to 2% of the diet through Ficus infectoria and Psidium guajava LMM significantly improved nitrogen metabolism, growth performance, wool yield, FCR and reduced methane emission by lambs."	"Age slowing down in detection and visual discrimination under varying presentation times. The reaction time has been described as a measure of perception, decision making, and other cognitive processes. The aim of this work is to examine age-related changes in executive functions in terms of demand load under varying presentation times. Two tasks were employed where a signal detection and a discrimination task were performed by young and older university students. Furthermore, a characterization of the response time distribution by an ex-Gaussian fit was carried out. The results indicated that the older participants were slower than the younger ones in signal detection and discrimination. Moreover, the differences between both processes for the older participants were higher, and they also showed a higher distribution average except for the lower and higher presentation time. The results suggest a general slowdown in both tasks for age under different presentation times, except for the cases where presentation times were lower and higher. Moreover, if these parameters are understood to be a reflection of executive functions, these findings are consistent with the common view that age-related cognitive deficits show a decline in this function."	"Taxonomic changes of some neotropical species of Arctiini Leach (Lepidoptera: Erebidae: Arctiinae). Arctiini (Lepidoptera, Erebidae, Arctiinae) is the most speciose tribe of tiger moths. In this study, the taxonomy of some Neotropical species of this tribe is reviewed based on habitus and, in some cases, genitalia of type specimens. Lectotypes are designated for two names. Four new combinations are proposed: Agaraea sericeum (Zerny, 1931) comb. n., Biturix nigrostriata (Rothschild, 1909) comb. n., Carales fasciatus (Rothschild, 1909) comb. n. and Opharus pallida (Dognin, 1910) comb. n. Six new synonymies are proposed: Agaraea nigrotuberculata Bryk, 1953 (=Agaraea klagesi (Rothschild, 1909)), Opharus ochracea Joicey &amp; Talbot, 1918 and Pelochyta fergusoni Watson &amp; Goodger, 1986 (=Opharus pallida (Dognin, 1910)), Melese flavescens Joicey &amp; Talbot, 1918 (=Melese paranensis Dognin, 1911), Leucanopsis infucata (Berg, 1882) (=Pareuchaetes aurata aurata (Butler, 1875)) and Tessellota pura Breyer, 1957 (=Tessellota cancellata (Burmeister, 1878)). Moreover, Opharus ochracea Joicey &amp; Talbot, 1918 comb. rev. is returned to the original genus. For each rearrangement, both remarks and information about type specimens are provided."	"Wogonin suppresses stem cell-like traits of CD133 positive osteosarcoma cell via inhibiting matrix metallopeptidase-9 expression. Several efforts have been deployed to cure osteosarcoma, a high-grade malignant bone tumour in children and adolescents. However, some challenges such as drug resistance, relapse, and tumour metastasis remain owing to the existence of cancer stem cells (CSC). There is an urgent need to develop cost-effective and safe therapies. Wogonin, an extract from the root of Scutellaria baicalensis, has long been considered as a promising natural and safe compound for anti-tumourigenesis, particularly to inhibit tumour invasion and metastasis. Hoechst 33,342 staining, wound healing assay, sphere formation assay, western blotting, and gelatin zymography assays were performed in CD133 positive osteosarcoma cell. In this study, we examined the effect of Wogonin on the mobility of human osteosarcoma CSC. Wogonin induces apoptosis of human osteosarcoma CSC, inhibits its mobility in vitro via downregulation of MMP-9 expression, and represses its renewal ability. We demonstrated that Wogonin decreases the renewal capacity of CSC. By inhibiting the formation of and reducing the size of spheres, Wogonin at a concentration of 40-80 μM effectively minimizes potential risk from CSC. Taken together, we have demonstrated a new approach for developing a potential therapy for osteosarcoma."	"Optimal subgrid scheme for shell models of turbulence. We discuss a theoretical framework to define an optimal subgrid closure for shell models of turbulence. The closure is based on the ansatz that consecutive shell multipliers are short-range correlated, following the third hypothesis of Kolmogorov formulated for similar quantities for the original three-dimensional Navier-Stokes turbulence. We also propose a series of systematic approximations to the optimal model by assuming different degrees of correlations across scales among amplitudes and phases of consecutive multipliers. We show numerically that such low-order closures work well, reproducing all known properties of the large-scale dynamics including anomalous scaling. We found small but systematic discrepancies only for a range of scales close to the subgrid threshold, which do not tend to disappear by increasing the order of the approximation. We speculate that the lack of convergence might be due to a structural instability, at least for the evolution of very fast degrees of freedom at small scales. Connections with similar problems for large eddy simulations of the three-dimensional Navier-Stokes equations are also discussed."	"Premature Thelarche and the PURA Syndrome. Premature thelarche is a self-limited condition characterized by Tanner stage II-III breast development in girls younger than 8 years of age with no evidence of advancing puberty. Evaluation concentrates on excluding central or peripheral causes of precocious puberty. A girl aged 2 years 4 months with profound hypotonia and delayed developmental milestones presented with Tanner II breast development, elevated follicle-stimulating hormone levels, suppressed luteinizing hormone level, normal growth and skeletal development, and prepubertal uterine length and ovarian volume. Monitoring until 8 years of age revealed no pubertal progression. Whole exome sequencing at 8 years revealed an autosomal-dominant mutation in the purine-rich element-binding protein A (PURA) gene. Previous patients with PURA syndrome have had pituitary dysfunction and precocious puberty. Purine-rich element-binding protein A syndrome can be associated with premature thelarche."	"Proteostatic and Metabolic Control of Stemness. Adult stem cells, particularly those resident in tissues with little turnover, are largely quiescent and only activate in response to regenerative demands, while embryonic stem cells continuously replicate, suggesting profoundly different regulatory mechanisms within distinct stem cell types. In recent years, evidence linking metabolism, mitochondrial dynamics, and protein homeostasis (proteostasis) as fundamental regulators of stem cell function has emerged. Here, we discuss new insights into how these networks control potency, self-renewal, differentiation, and aging of highly proliferative embryonic stem cells and quiescent adult stem cells, with a focus on hematopoietic and muscle stem cells and implications for anti-aging research."	"Ontogenetic shifts of heart position in snakes. Heart position relative to total body length (TL) varies among snakes, with anterior hearts in arboreal species and more centrally located hearts in aquatic or ground-dwelling species. Anterior hearts decrease the cardiac work associated with cranial blood flow and minimize drops in cranial pressure and flow during head-up climbing. Here, we investigate whether heart position shifts intraspecifically during ontogenetic increases in TL. Insular Florida cottonmouth snakes, Agkistrodon conanti, are entirely ground-dwelling and have a mean heart position that is 33.32% TL from the head. In contrast, arboreal rat snakes, Pantherophis obsoleta, of similar lengths have a mean heart position that is 17.35% TL from the head. In both species, relative heart position shifts craniad during ontogeny, with negative slopes = -.035 and -.021% TL/cm TL in Agkistrodon and Pantherophis, respectively. Using a large morphometric data set available for Agkistrodon (N = 192 individuals, 23-140 cm TL), we demonstrate there is an anterior ontogenetic shift of the heart position within the trunk (= 4.56% trunk length from base of head to cloacal vent), independent of head and tail allometry which are both negative. However, in longer snakes &gt; 100 cm, the heart position reverses and shifts caudally in longer Agkistrodon but continues toward the head in longer individuals of Pantherophis. Examination of data sets for two independent lineages of fully marine snakes (Acrochordus granulatus and Hydrophis platurus), which do not naturally experience postural gravity stress, demonstrate both ontogenetic patterns for heart position that are seen in the terrestrial snakes. The anterior migration of the heart is greater in the terrestrial species, even if TL is standardized to that of the longer P. obsoleta, and compensates for about 5 mmHg gravitational pressure head if they are fully upright."	"Components of RNA granules affect their localization and dynamics in neuronal dendrites. In neurons, RNA transport is important for local protein synthesis. mRNAs are transported along dendrites as large RNA granules. The localization and dynamics of Puralpha and Staufen1 (Stau1), major components of RNA transport granules, were investigated in cultured hippocampal neurons. Puralpha-positive granules were localized in both the shafts and spines of dendrites. In contrast, Stau1-positive granules tended to be localized mainly in dendritic shafts. More than 90% of Puralpha-positive granules were positive for Stau1 in immature dendrites, while only half were positive in mature dendrites. Stau1-negative Puralpha granules tended to be stationary with fewer anterograde and retrograde movements than Stau1-positive Puralpha granules. After metabotropic glutamate receptor 5 activation, Stau1-positive granules remained in the dendritic shafts, while Puralpha granules translocated from the shaft to the spine. The translocation of Puralpha granules was dependent on myosin Va, an actin-based molecular motor protein. Collectively our findings suggest the possibility that the loss of Stau1 in Puralpha-positive RNA granules might promote their activity-dependent translocation into dendritic spines, which could underlie the regulation of protein synthesis in synapses."	"Evidence for Contemporary Switching of the O-Antigen Gene Cluster between Shiga Toxin-Producing Escherichia coli Strains Colonizing Cattle. Shiga toxin-producing Escherichia coli (STEC) comprise a group of zoonotic enteric pathogens with ruminants, especially cattle, as the main reservoir. O-antigens are instrumental for host colonization and bacterial niche adaptation. They are highly immunogenic and, therefore, targeted by the adaptive immune system. The O-antigen is one of the most diverse bacterial cell constituents and variation not only exists between different bacterial species, but also between individual isolates/strains within a single species. We recently identified STEC persistently infecting cattle and belonging to the different serotypes O156:H25 (n = 21) and O182:H25 (n = 15) that were of the MLST sequence types ST300 or ST688. These STs differ by a single nucleotide in purA only. Fitness-, virulence-associated genome regions, and CRISPR/CAS (clustered regularly interspaced short palindromic repeats/CRISPR associated sequence) arrays of these STEC O156:H25 and O182:H25 isolates were highly similar, and identical genomic integration sites for the stx converting bacteriophages and the core LEE, identical Shiga toxin converting bacteriophage genes for stx1a, identical complete LEE loci, and identical sets of chemotaxis and flagellar genes were identified. In contrast to this genomic similarity, the nucleotide sequences of the O-antigen gene cluster (O-AGC) regions between galF and gnd and very few flanking genes differed fundamentally and were specific for the respective serotype. Sporadic aEPEC O156:H8 isolates (n = 5) were isolated in temporal and spatial proximity. While the O-AGC and the corresponding 5' and 3' flanking regions of these aEPEC isolates were identical to the respective region in the STEC O156:H25 isolates, the core genome, the virulence associated genome regions and the CRISPR/CAS elements differed profoundly. Our cumulative epidemiological and molecular data suggests a recent switch of the O-AGC between isolates with O156:H8 strains having served as DNA donors. Such O-antigen switches can affect the evaluation of a strain's pathogenic and virulence potential, suggesting that NGS methods might lead to a more reliable risk assessment."	"Vida PURA: An assessment of the fidelity of promotor-delivered screening and brief intervention to reduce unhealthy alcohol use among Latino day laborers. We assessed the fidelity of promotores conducting screening and brief intervention (SBI) to reduce unhealthy alcohol use among Latino immigrant day laborers in the Vida PURA study. We reviewed 32 audio-recorded brief interventions to assess promotor adherence to the intervention protocol and to evaluate their motivational interviewing (MI) technique with the Motivational Interviewing Treatment Integrity (MITI) 4.2.1 tool. Promotores delivered three core intervention steps in 78% of recordings and achieved basic MI competence across all domains and proficiency in 50% of measures. Our results suggest that promotores can be trained to deliver SBI in community settings with fidelity."	"Lessons learned from additional research analyses of unsolved clinical exome cases. Given the rarity of most single-gene Mendelian disorders, concerted efforts of data exchange between clinical and scientific communities are critical to optimize molecular diagnosis and novel disease gene discovery. We designed and implemented protocols for the study of cases for which a plausible molecular diagnosis was not achieved in a clinical genomics diagnostic laboratory (i.e. unsolved clinical exomes). Such cases were recruited to a research laboratory for further analyses, in order to potentially: (1) accelerate novel disease gene discovery; (2) increase the molecular diagnostic yield of whole exome sequencing (WES); and (3) gain insight into the genetic mechanisms of disease. Pilot project data included 74 families, consisting mostly of parent-offspring trios. Analyses performed on a research basis employed both WES from additional family members and complementary bioinformatics approaches and protocols. Analysis of all possible modes of Mendelian inheritance, focusing on both single nucleotide variants (SNV) and copy number variant (CNV) alleles, yielded a likely contributory variant in 36% (27/74) of cases. If one includes candidate genes with variants identified within a single family, a potential contributory variant was identified in a total of ~51% (38/74) of cases enrolled in this pilot study. The molecular diagnosis was achieved in 30/63 trios (47.6%). Besides this, the analysis workflow yielded evidence for pathogenic variants in disease-associated genes in 4/6 singleton cases (66.6%), 1/1 multiplex family involving three affected siblings, and 3/4 (75%) quartet families. Both the analytical pipeline and the collaborative efforts between the diagnostic and research laboratories provided insights that allowed recent disease gene discoveries (PURA, TANGO2, EMC1, GNB5, ATAD3A, and MIPEP) and increased the number of novel genes, defined in this study as genes identified in more than one family (DHX30 and EBF3). An efficient genomics pipeline in which clinical sequencing in a diagnostic laboratory is followed by the detailed reanalysis of unsolved cases in a research environment, supplemented with WES data from additional family members, and subject to adjuvant bioinformatics analyses including relaxed variant filtering parameters in informatics pipelines, can enhance the molecular diagnostic yield and provide mechanistic insights into Mendelian disorders. Implementing these approaches requires collaborative clinical molecular diagnostic and research efforts."	"Anti-tumor activity of wogonin, an extract from Scutellaria baicalensis, through regulating different signaling pathways. Wogonin is a plant flavonoid compound extracted from Scutellaria baicalensis (Huang-Qin or Chinese skullcap) and has been studied thoroughly by many researchers till date for its anti-viral, anti-oxidant, anti-cancerous and neuro-protective properties. Numerous experiments conducted in vitro and in vivo have demonstrated wogonin's excellent tumor inhibitory properties. The anti-cancer mechanism of wogonin has been ascribed to modulation of various cell signaling pathways, including serine-threonine kinase Akt (also known as protein kinase B) and AMP-activated protein kinase (AMPK) pathways, p53-dependent/independent apoptosis, and inhibition of telomerase activity. Furthermore, wogonin also decreases DNA adduct formation with a carcinogenic compound 2-Aminofluorene and inhibits growth of drug resistant malignant cells and their migration and metastasis, without any side effects. Recently, newly synthesized wogonin derivatives have been developed with impressive anti-tumor activity. This review is the succinct appraisal of the pertinent articles on the mechanisms of anti-tumor properties of wogonin. We also summarize the potential of wogonin and its derivatives used alone or as an adjunct therapy for cancer treatment. Furthermore, pharmacokinetics and side effects of wogonin and its analogues have also been discussed."	"Detection of amitraz and malathion resistance in field populations of Rhipicephalus (Boophilus) microplus (Acari: Ixodidae) in Jammu region of India. Detection of resistance levels against amitraz and malathion in Rhipicephalus (Boophilus) microplus collected from four districts of Jammu region (India) was carried out using the adult immersion test. The regression graphs of probit mortality of ticks plotted against log values of concentration of drugs were utilised for the determination of slope of mortality, lethal concentration for 50% (LC50), 95% (LC95) and resistance factor (RF). On the basis of the data generated on variables (mortality, egg mass weight, reproductive index and percentage inhibition of oviposition) the resistance level was categorised as I, II, III and IV. Out of these four districts, resistance to amitraz was detected at level I in Udhampur (RF = 2.81), Jammu (RF = 2.53) and Samba isolates (RF = 2.24) whereas Rajouri isolate was found susceptible (RF = 1.0). Resistance to malathion was detected at level I in Udhampur (RF = 4.01) and Jammu isolates (RF = 1.76) whereas Rajouri (RF = 0.472) and Samba (RF = 0.199) isolates were found susceptible. The data generated on amitraz and malathion resistance status will help in formulating a tick control strategy in the region."	"Molecular characterization of Rhodococcus equi isolates in equines. The aim was to determine the occurrence of Rhodococcus equi in equines and their environment in Jammu (R.S. Pura, Katra), molecular characterization and to determine the antibiotic resistance pattern of R. equi. A total of 96 nasopharyngeal swab samples were collected from equines. The organism was isolated on Columbia nalidixic acid agar containing 5% sheep blood as well as on sheep blood agar and was later confirmed by cultural characteristics and biochemical tests. Molecular detection of R. equi isolates was done by 16S rRNA gene amplification followed by virulence associated protein A (Vap A) gene amplification. Antibiogram was performed against five antibiotics, viz., amoxicillin, penicillin G, streptomycin, rifampicin, and methicillin. During the study, 9 R. equi isolates were identified on the basis of cultural and biochemical tests. In the polymerase chain reaction based detection, 3 among the 9 rhodococcal isolates were positive for species-specific 16S rRNA gene and revealed amplicon of 450 bp for confirmation of 16S rRNA gene. None of the sample was found positive for Vap A gene. In antibiogram, R. equi isolates were found sensitive for amoxicillin, while some isolates were also found resistant to the most conventional antibiotic penicillin G. From this study, it was concluded that R. equi infection is prevalent in equines in Jammu region of India and the indiscriminate use of the antibiotics is leading toward the development of resistant strains of R. equi."	"Identification and Characterization of Enzymes Catalyzing Pyrazolopyrimidine Formation in the Biosynthesis of Formycin A. Genome scanning of Streptomyces kaniharaensis, the producer of formycin A, reveals two sets of purA, purB, purC, and purH genes. The Pur enzymes catalyze pyrimidine assembly of purine nucleobases. To test whether enzymes encoded by the second set of pur genes catalyze analogous transformations in formycin biosynthesis, formycin B 5'-phosphate was synthesized and shown to be converted by ForA and ForB to formycin A 5'-phosphate. These results support that For enzymes are responsible for formycin formation."	"Patient with a novel purine-rich element binding protein A mutation. There have been several reports on 5q31.3 microdeletion syndrome. The overlapping deleted region includes purine-rich element binding protein A (PURA), which encodes transcriptional activator protein Pur-α. Patients with PURA mutations show moderate to severe neurodevelopmental delay and learning disability. Neonatal hypotonia, respiratory insufficiency, feeding difficulties, and seizures are often seen. Dysmorphic features including myopathic faces are helpful as clinical signs of the diagnosis. We report a patient with a novel PURA mutation detected by whole-exome sequencing. We suggest that PURA abnormality is a recognizable syndrome."	"How coagulation zone size is underestimated in computer modeling of RF ablation by ignoring the cooling phase just after RF power is switched off. All the numerical models developed for radiofrequency ablation so far have ignored the possible effect of the cooling phase (just after radiofrequency power is switched off) on the dimensions of the coagulation zone. Our objective was thus to quantify the differences in the minor radius of the coagulation zone computed by including and ignoring the cooling phase. We built models of RF tumor ablation with 2 needle-like electrodes: a dry electrode (5 mm long and 17G in diameter) with a constant temperature protocol (70°C) and a cooled electrode (30 mm long and 17G in diameter) with a protocol of impedance control. We observed that the computed coagulation zone dimensions were always underestimated when the cooling phase was ignored. The mean values of the differences computed along the electrode axis were always lower than 0.15 mm for the dry electrode and 1.5 mm for the cooled electrode, which implied a value lower than 5% of the minor radius of the coagulation zone (which was 3 mm for the dry electrode and 30 mm for the cooled electrode). The underestimation was found to be dependent on the tissue characteristics: being more marked for higher values of specific heat and blood perfusion and less marked for higher values of thermal conductivity."	"Novel phyto-derivative BRM270 inhibits hepatocellular carcinoma cells proliferation by inducing G2/M phase cell cycle arrest and apoptosis in xenograft mice model. Hepatocellular carcinoma (HCC) is a major threat to human health worldwide and development of novel antineoplastic drug is demanding task. BRM270 is a proprietary combination of traditional medicinal herbs, has been shown to be effective against a wide range of stem-like cancer initiating cells (SLCICs). However, the underlying mechanism and antitumor efficacy of BRM270 in human hepatocellular carcinoma (HCC) cells have not been well elucidated till date. Here we studied the tumoricidal effect of BRM270 on human-CD133<sup>+</sup> expressing stem-like HepG-2 and SNU-398 cells. Gene expression profiling by qPCR and specific cellular protein expressions was measured using immunocytochemistry/western blot analysis. In vivo efficacy of BRM270 has been elucidated in the SLCICs induced xenograft model. In addition, 2DG-(2-Deoxy-d-Glucose) optical-probe guided tumor monitoring was performed to delineate the size and extent of metastasized tumor. Significant (P&lt;0.05) induction of Annexin-V positive cell population and dose-dependent upregulation of caspase-3 confirmed apoptotic cell death by pre/late apoptosis. In addition, bright field and fluorescence microscopy of treated cells revealed apoptotic morphology and DNA fragmentation in Hoechst33342 staining. Levels of c-Myc, Bcl-2 and c-Jun as invasive potential apoptotic marker were detected using qPCR/Western blot. Moreover, BRM270 significantly (P&lt;0.05) increased survival rate that observed by Kaplan-Meier log rank test. In conclusion, these results indicate that BRM270 can effectively inhibit proliferation and induce apoptosis in hepatoma cells by down-regulating CyclinD1/Bcl2 mediated c-Jun apoptotic pathway."	"Could We Really Use Aloe vera Food Supplements to Treat Diabetes? Quality Control Issues. Diabetes UK has recently listed a number of herbs and spices that have been clinically shown to improve blood glucose control in type-2 diabetes patients and the diabetes high-risk group. With Aloe vera being top in this list, its health benefit along with health and beauty/food retailers supplying it was illustrated in detail. Previous article from this laboratory scrutinised the merit of using A. vera as an alternative therapy to prescription antidiabetic drugs and the risk of using food supplements in the market which do not qualify as drug preparations. In continuation of this discussion, the present study assesses three Aloe Pura brands and one Holland and Barret brand of A. vera juice supplements in the UK market through chromatographic and spectroscopic analysis. While the polysaccharide active ingredient, acemannan, appears to be within the recommended limit, it was found that Aloe Pura (one of the best-selling brands for A. vera supplement) products have benzoate additive that does not appear in the supplement levels. Moreover, two of the Aloe Pura brand juices contain methanol, suggesting that the International Aloe Science Council (IASC) certification does not guarantee the medicinal quality of these products. The therapeutic fitness of such supplements is discussed."	"Gabor frames for classification of paroxysmal and persistent atrial fibrillation episodes. In this study, we propose a new classification method for early differentiation of paroxysmal and persistent atrial fibrillation episodes, i.e. those which spontaneously or with external intervention will return to sinus rhythm within 7 days of onset from the ones where the arrhythmia is sustained for more than 7 days. Today, clinicians provide patients classification once the course of the arrhythmia has been disclosed. This classification problem is dealt with in this study. We study a sparse representation of surface electrocardiogram signals by means of Gabor frames and afterwards we apply a linear discriminant analysis. Thus, we provide an early discrimination, obtaining promising performances on a heterogeneous cohort of patients in terms of pharmacological treatment and state of progression of the arrhythmia: 95% sensitivity, 82% specificity, 89% accuracy. In this manner, the proposed method can help clinicians to choose the most appropriate treatment using the electrocardiogram, which is a widely available and non-invasive technique. This early differentiation is clinically highly significant in order to choose optimal patients who may undergo catheter ablation with higher success rates."	"Designing an early selection morphological linear traits index for dressage in the Pura Raza Español horse. Making a morphological pre-selection of Pura Raza Español horses (PRE) for dressage is a challenging task within its current breeding program. The aim of our research was to design an early genetic selection morphological linear traits index to improve dressage performance, using 26 morphological linear traits and six dressage traits (walk, trot, canter, submission, general impression - partial scores - and total score) as selection criteria. The data set included morphological linear traits of 10 127 PRE (4159 males and 5968 females) collected between 2008 and 2013 (one record per horse) and 19 095 dressage traits of 1545 PRE (1476 males and 69 females; 12.4 records of average) collected between 2004 and 2014. A univariate animal model was applied to predict the breeding values (PBV). A partial least squares regression analysis was used to select the most predictive morphological linear traits PBV on the dressage traits PBV. According to the Wold Criterion, the 13 morphological linear traits (width of head, head-neck junction, upper neck line, neck-body junction, width of chest, angle of shoulder, lateral angle of knee, frontal angle of knee, cannon bone perimeter, length of croup, angle of croup, ischium-stifle distance and lateral hock angle) most closely related to total score PBV, partial scores PBV and gait scores PBV (walk, trot and canter) were selected. A multivariate genetic analysis was performed among the 13 morphological linear traits selected and the six dressage traits to estimate the genetic parameters. After it, the selection index theory was used to compute the expected genetic response using different strategies. The expected genetic response of total score PBV (0.76), partial scores PBV (0.04) and gait scores PBV (0.03) as selection objectives using morphological linear traits PBV as criteria selection were positive, but lower than that obtained using dressage traits PBV (1.80, 0.16 and 0.14 for total score PBV, partial scores PBV and gait scores PBV) or dressage traits PBV and morphological linear traits PBV (2.97, 0.16 and 0.15 for total score PBV, partial scores PBV and gait scores PBV), as selection criteria. This suggests that it is possible to preselect the PRE without dressage traits PBV using as selection criteria the morphological linear traits PBV, but the expected genetic response will be lower."	"An evaluation of aversive memory and hippocampal oxidative status in streptozotocin-induced diabetic rats treated with resveratrol. The present study evaluated the effects of streptozotocin (STZ)-induced diabetes on aversive memory, free radical content and enzymatic antioxidant activity in the hippocampus of adult Wistar rats submitted to oral treatment with resveratrol. Animals were divided into eight groups: non-diabetic rats treated with saline (ND SAL), non-diabetic rats treated with resveratrol at a dose 5mg/kg (ND RSV 5), non-diabetic rats treated with resveratrol at a dose 10mg/kg (ND RSV 10), non-diabetic rats treated with resveratrol at a dose 20mg/kg (ND RSV 20), diabetic rats treated with saline (D SAL), diabetic rats treated with resveratrol at a dose 5mg/kg (D RSV 5), diabetic rats treated with resveratrol at a dose 10mg/kg (D RSV 10) and diabetic rats treated with resveratrol at a dose 20mg/kg (D RSV 20). The animals received oral gavage for 35days. The contextual fear conditioning task was performed to evaluate aversive-based learning and memory. The oxidative status was evaluated in the hippocampus, by measuring the free radical content - using a 2',7'-dichlorofluorescein diacetate probe - and enzymatic antioxidant activities, such as superoxide dismutase and glutathione peroxidase. Our main behavioral results demonstrated that rats from the D RSV 10 and D RSV 20 groups showed an increase in freezing behavior when compared, respectively, to the ND RSV 10 (p&lt;0.01) and ND RSV 20 (p&lt;0.05). Oxidative stress parameters remained unchanged in the hippocampus of all the experimental groups. In contrast to previous experimental findings, our study was unable to detect either cognitive impairments or oxidative stress in the hippocampus of the diabetic rats. We suggest additional long-term investigations be conducted into the temporal pattern of STZ-induced diabetic disruption in memory and hippocampal oxidative status, as well as the effects of resveratrol on these parameters, in a time and dose-dependent manner."	"Feeding horses with industrially manufactured pellets with fungal spores to promote nematode integrated control. The usefulness of pellets industrially manufactured with spores of parasiticide fungi as a contribution to integrated nematode control was assessed in grazing horses throughout sixteen months. Two groups of 7 Pura Raza Galega autochthonous horses (G-T and G-P) were dewormed pour-on (1mg Ivermectin/kg bw) at the beginning of the trial, and other group (G-C) remained untreated. The G-P was provided daily with commercial pellets to which was added a mixture of fungal spores during the industrial manufacturing (2×10<sup>6</sup> spores of Mucor circinelloides and same dose of Duddingtonia flagrans/kg), and G-T and G-C received pellets without spores. The efficacy of the parasiticidal strategy was assessed by estimating the reduction in the faecal egg counts (FECR) and in the number of horses shedding eggs in the faeces (PHR), and also the egg reappearance periods (ERP). Blood analyses were performed to identify the changes in the red and white cell patterns. To ascertain if horses developed an IgG humoral response against the fungi, antigenic products collected from M. circinelloides and D. flagrans were exposed to the horse sera by using an ELISA. The faecal elimination of eggs of Parascaris equorum and strongyles ceased 2 weeks after treatment in G-T and G-P, thus the values of FECR and PHR were 100%. No P. equorum-eggs were detected later, and the strongyle egg reappearance period was 28 weeks in G-P, and 8 weeks in G-T. Strongyle egg-output values remained lower than 300 eggs per gram of faeces in the G-P, whereas numbers between 330 and 772 in G-C and G-T were recorded. Normal values for the erythrocytes, haemoglobin and haematocrit in horses consuming pellets with spores were recorded, and lower than normal in the other groups. Sensitization of horses to the fungal species was disproven. It is concluded that feeding horses with pellets industrially manufactured with fungal spores represents a very useful tool to implement an integrated control of helminths affecting horses. This strategy allows a decrease in their risk of infection, aids in reducing the frequency of anthelmintic treatment."	"Antihypertensive peptides of animal origin: A review. Many bioactive peptides trigger certain useful antihypertensive activities in the living body system and there is a mounting worldwide interest in the therapeutic potential of these bioactive peptides for exploitation in vivo against the hypertension. Studies suggest the antihypertensive properties for many bioactive peptides of animal origin with underlying mechanisms ranging from inhibition of angiotensin-converting enzyme to additional mechanisms to lower blood pressure such as opioid-like activities and mineral-binding and antithrombotic properties. Antihypertensive peptides are the most extensively studied of all the bioactivities induced by food protein hydrolysates, highlighting their importance in human health and disease prevention and treatment. There exist enormous opportunities for the production of novel peptide-based products in biopharmaceutical manufacturing industries for the treatment, prevention, and mitigation of hypertension. Numerous products have already struck on the global market and many more are in process. This article focuses on antihypertensive peptides identified in the meat, fish, blood, milk, dairy products, and egg and their probable application as novel ingredients in the development of functional food products as dietary treatment of hypertension."	"Memory deficits, gait ataxia and neuronal loss in the hippocampus and cerebellum in mice that are heterozygous for Pur-alpha. Pur-alpha is a highly conserved sequence-specific DNA and RNA binding protein with established roles in DNA replication, RNA translation, cell cycle regulation, and maintenance of neuronal differentiation. Prior studies have shown that mice lacking Pur-alpha (-/-) display decreased neurogenesis and impaired neuronal differentiation. We sought to examine for the first time, the behavioral phenotype and brain histopathology of mice that are heterozygous (+/-) for Pur-alpha. Standardized behavioral phenotyping revealed a decreased escape response to touch, limb and abdominal hypotonia, and gait abnormalities in heterozygous Pur-alpha (+/-) mice, compared to wild-type (+/+) littermates. Footprint pattern analyses showed wider-based steps, increased missteps and more outwardly rotated hindpaws in heterozygous Pur-alpha (+/-) mice, suggestive of cerebellar pathology. The Barnes maze and novel object location testing revealed significant memory deficits in heterozygous Pur-alpha mice, suggestive of hippocampal pathology. Quantitative immunohistochemical assays of the vermal region of the cerebellum and CA1-3 regions of the hippocampus revealed reduced numbers of neurons in general, as well as reduced numbers of Pur-alpha+-immunopositive neurons and dendrites in heterozygous Pur-alpha mice, compared to wild-type littermates. Past studies have implicated mutations in Pur-alpha in several diseases of brain development and neurodegeneration. When combined with these new findings, the Pur-alpha heterozygous knockout mice may provide an animal model to study mechanisms of and treatments for Pur-alpha-related cognitive deficiencies and neuropathology."	"Potential diagnostic implications of miR-144 overexpression in human oesophageal cancer. Insidious symptomatology, late clinical presentation and poor prognosis of oesophageal cancer (EC) highlight the pressing need for novel non-invasive biomarkers for early tumour diagnosis and better prognosis. The present study was carried out to evaluate the clinical significance of circulating and tissue miR-144 expression in oesophageal cancer. Clinical significance of miR-144 expression was evaluated in preneoplastic (12) and neoplastic (35) oesophageal cancer tissues as well as matched distant non-malignant tissues using real-time PCR (qPCR). Circulating levels of miR-144 were also analyzed in serum samples of EC patients as well as normal individuals to determine the diagnostic potential of miR-144. Further, targets of miR-144 were predicted using bioinformatic tools and their gene ontology (GO) terms were assigned. Real-time PCR analysis revealed significant upregulation of miR-144 in 29 of 35 (83%) EC tissues as compared to matched distant non-malignant tissues (P=0.010). a0 ll the dysplastic tissues showed upregulation of miR-144 as compared to their matched distant non-malignant tissues. Relative levels of circulating miR-144 in serum significantly distinguished EC patients from normal controls (P=0.015; AUC = 0.731) with high sensitivity of 94.7 per cent. Bioinformatically predicted target, PUR-aplha (PURA) was found to be significantly (P=0.018) downregulated in 81 per cent (26/32) EC patients and its expression was found to be significantly and negatively correlated with miR-144 expression at mRNA level. Our findings showed significant upregulation of miR-144 in serum samples of EC patients indicating its potential as minimally invasive marker. Further studies need to be done to understand the role of miR-144 in the pathogenesis of EC."	"[The endocannabinoid system and bone]. Recent studies suggest an important role for the skeletal endocannabinoid system in the regulation of bone mass in both physiological and pathological conditions. Both major endocannabinoids (anandamid and 2-arachidonoylglycerol), endocannabinoid receptors - CB1-receptor (CB1R) a CB2-receptor (CB2R) and the endocannabinoid metabolizing enzymes are present or expressed in osteoblasts and osteoclasts. Previous studies identified multiple risk and protective variants of CNR2 gene dealing with the relationship to bone density and/or osteoporosis. Selective CB1R/ CB2R-inverse agonists/antagonists and CB2R-inverse agonists/antagonists are candidates for prevention of bone mass loss and combined antiresorptive and anabolic therapy for osteoporosis.Key words: cannabinoid receptors - endocannabinoids - marijuana - osteoporosis."	"Protective and ameliorative effect of sea buckthorn leaf extract supplementation on lead induced hemato-biochemical alterations in Wistar rats. To evaluate the protective and ameliorative effect of aqueous sea buckthorn leaf extract (SLE) on hemato-biochemical profile in lead intoxicated Wistar rats. An experiment was conducted for 60 days. 36 adult male Wistar rats with a mean body weight of 177.8±12.6 g were divided into five groups and were subjected to various daily oral treatment regimens. Group I served as a negative control receiving only feed and water, Group II (positive control for lead) received lead acetate at 250 ppm in drinking water, and Group III (positive control for SLE) received SLE at 100 mg/kg b.wt. Animals in Group IV received a combination of lead acetate at 250 ppm in drinking water for the first 45 days and SLE at 100 mg/kg b.wt. throughout the experimental period of 60-day, and in Group V for the last 15 days of the trial after the administration of lead acetate until the first 45 days of the trial to study the protective and ameliorating effects of SLE, respectively. Blood samples were collected from retro-orbital fossa of each rat on 0<sup>th</sup>, 45<sup>th</sup>, and 60<sup>th</sup> day of the experiment for hemato-biochemical analysis including hemoglobin (Hb), packed cell volume (PCV), serum total protein, albumin, globulin, albumin:globulin ratio, cholesterol, urea, and creatinine. Significantly (p&lt;0.01) lower levels of serum total proteins and albumin, and a significantly (p&lt;0.01) higher serum cholesterol, urea and creatinine levels were observed in Group II (lead intoxicated group) in comparison to Group I (negative control). Administration of SLE at 100 mg/kg body wt. to lead intoxicated Wistar rats resulted in normalization of almost all the biochemical parameters studied in both the treatment Groups, i.e., IV and V (protective and ameliorative). However, the effects were more pronounced in the protective group. No effects of SLE supplementation were observed on Hb levels. PCV levels improved in protective groups, but no effect was observed in ameliorative group in comparison to lead intoxicated groups. SLE administration at 100 mg/kg b.wt. to lead intoxicated Wistar rats may be used to protect/ameliorate lead induced biochemical alterations in Wistar rats."	"Local electric field enhancement at the heterojunction of Si/SiGe axially heterostructured nanowires under laser illumination. We present a phenomenon concerning electromagnetic enhancement at the heterojunction region of axially heterostructured Si/SiGe nanowires when the nanowire is illuminated by a focused laser beam. The local electric field is sensed by micro Raman spectroscopy, which allows the enhancement of the Raman signal arising from the heterojunction region to be revealed; the Raman signal per unit volume increases at least ten times with respect to the homogeneous Si and SiGe nanowire segments. In order to explore the physical meaning of this phenomenon, a three-dimensional solution of the Maxwell equations of the interaction between the focused laser beam and the nanowire was carried out by finite element methods. A local enhancement of the electric field at the heterojunction was deduced. However, the magnitude of the electromagnetic field enhancement only approaches the experimental one when the free carriers are considered, showing enhanced absorption at the carrier depleted heterojunction region. The existence of this effect promises a way of improving photon harvesting using axially heterostructured semiconductor nanowires."	"Fibrosis development in early-onset muscular dystrophies: Mechanisms and translational implications. Duchenne muscular dystrophy (DMD) is one of the most devastating neuromuscular genetic diseases caused by the absence of dystrophin. The continuous episodes of muscle degeneration and regeneration in dystrophic muscle are accompanied by chronic inflammation and fibrosis deposition, which exacerbate disease progression. Thus, in addition of investigating strategies to cure the primary defect by gene/cell therapeutic strategies, increasing efforts are being placed on identifying the causes of the substitution of muscle by non-functional fibrotic tissue in DMD, aiming to attenuate its severity. Congenital muscular dystrophies (CMDs) are early-onset diseases in which muscle fibrosis is also present. Here we review the emerging findings on the mechanisms that underlie fibrogenesis in muscular dystrophies, and potential anti-fibrotic treatments."	"Molecular characterization of virulence genes of Streptococcus equi subsp. equi and Streptococcus equi subsp. zooepidemicus in equines. The aim was to determine the occurrence of streptococci in equines in Jammu (R. S. Pura, Katra), characterization of Streptococci equi subsp. equi and Streptococcus equi subsp. zooepidemicus with respect to their virulence traits and to determine antibiotic sensitivity pattern of virulent Streptococcus isolates. A total of 96 samples were collected from both clinically affected animals (exhibiting signs of respiratory tract disease) and apparently healthy animals and were sent to laboratory. The organisms were isolated on Columbia nalidixic acid agar containing 5% sheep blood as well as on sheep blood agar and confirmed by cultural characteristics and biochemical tests. Molecular detection of Streptococcus was done directly from cultures using sodA and seM gene-based polymerase chain reaction (PCR). Antibiogram was performed against five antibiotics such as amoxicillin, penicillin G, streptomycin, rifampicin, and methicillin. During this study, a total 40 streptococcal isolates were obtained out of which 2 isolates were of S. equi subsp. equi, 12 isolates were from S. equi subsp. zooepidemicus. In the PCR-based detection, we revealed amplicons of 235 bp and 679 bp for confirmation of sodA and seM gene, respectively. In antibiogram, two isolates of S. equi subsp. equi were found resistant to penicillin G, and all other isolates were found sensitive to amoxicillin and streptomycin. The majority of streptococcal infections was due to S. equi subsp. Zooepidemicus, and thus was recognized as a potential pathogen of diseases of equines besides S. equi subsp. equi."	"Differential effects of contractile potentiators on action potential-induced Ca<sup>2+</sup> transients of frog and mouse skeletal muscle fibres. Muscle fibres, isolated from frog tibialis anterior and mouse flexor digitorum brevis (FDB) were loaded with the fast dye MagFluo-4 to study the effects of potentiators caffeine, nitrate, Zn<sup>2+</sup> and perchlorate on Ca<sup>2+</sup> transients elicited by single action potentials. Overall, the potentiators doubled the transients amplitude and prolonged by about 1.5-fold their decay time. In contrast, as shown here for the first time, nitrate and Zn<sup>2+</sup>, but not caffeine, activated a late, secondary component of the transient rising phase of frog but not mouse, fibres. The rise time was increased from 1.9 ms in normal solution (NR) to 3.3 ms (nitrate) and 4.4 ms (Zn<sup>2+</sup>). In NR, a single exponential, fitted the rising phase of calcium transients of frog (τ1 = 0.47 ms) and mouse (τ1 = 0.28 ms). In nitrate and Zn<sup>2+</sup> only frog transients showed a secondary exponential component, τ2 = 0.72 ms (nitrate) and 0.94 ms, (Zn<sup>2+)</sup>. We suggest that nitrate and Zn<sup>2+</sup> activate a late slower component of the ΔF/F signals of frog but not of mouse fibres, possibly promoting Ca<sup>2+</sup> induced Ca<sup>2+</sup> release at level of the RyR3, that in frog muscle fibres are localized in the para-junctional region of the triads and are absent in mouse FDB muscle fibres."	"Aging, metabolism and stem cells: Spotlight on muscle stem cells. All tissues and organs undergo a progressive regenerative decline as they age. This decline has been mainly attributed to loss of stem cell number and/or function, and both stem cell-intrinsic changes and alterations in local niches and/or systemic environment over time are known to contribute to the stem cell aging phenotype. Advancing in the molecular understanding of the deterioration of stem cell cells with aging is key for targeting the specific causes of tissue regenerative dysfunction at advanced stages of life. Here, we revise exciting recent findings on why stem cells age and the consequences on tissue regeneration, with a special focus on regeneration of skeletal muscle. We also highlight newly identified common molecular pathways affecting diverse types of aging stem cells, such as altered proteostasis, metabolism, or senescence entry, and discuss the questions raised by these findings. Finally, we comment on emerging stem cell rejuvenation strategies, principally emanating from studies on muscle stem cells, which will surely burst tissue regeneration research for future benefit of the increasing human aging population."	"Sarcoptic mange in dogs: Its effect on liver, oxidative stress, trace minerals and vitamins. The present study was aimed to determine the effect on liver, associated oxidative stress, trace element and vitamin alteration in dogs with sarcoptic mange. A total of 24 dogs with clinically established diagnosis of sarcoptic mange, divided into two groups, severely infested group (n=9) and mild/moderately infested group (n=15), according to the extent of skin lesions caused by sarcoptic mange and 6 dogs as control group were included in the present study. In comparison to healthy control hemoglobin, PCV, and TEC were significantly (P&lt;0.05) decreased in dogs with sarcoptic mange however, significant increase in TLC along with neutrophilia and lymphopenia was observed only in severely infested dogs. The albumin, glucose and cholesterol were significantly (P&lt;0.05) decreased and globulin, ALT, AST and bilirubin were significantly (P&lt;0.05) increased in severely infested dogs when compared to other two groups. Malondialdehyde (MDA) levels were significantly (P&lt;0.01) higher in dogs with sarcoptic mange, with levels highest in severely infested groups. Activity of superoxide dismutase (SOD) (P&lt;0.05) and catalase were significantly (P&lt;0.01) lower in sarcoptic infested dogs when compared with the healthy control group. Zinc and copper levels in dogs with sarcoptic mange were significantly (P&lt;0.05) lower when compared with healthy control group with the levels lowest in severely infested group. Vitamin A and vitamin C levels were significantly (P&lt;0.05) lower in sarcoptic infested dogs when compared to healthy control. From the present study, it was concluded that sarcoptic mange in dogs affects the liver and the infestation is associated with oxidant/anti-oxidant imbalance, significant alteration in trace elements and vitamins. "	"Free radical-induced nephrotoxicity following repeated oral exposureto chlorpyrifos alone and in conjunction with fluoride in rats. Chronic renal disorder is becoming a major health problem worldwide. The purpose of the present study was to investigate alterations in the renal antioxidant system in rats induced by repeated exposure to chlorpyrifos (CPF) alone and in conjunction with fluoride. Wistar rats were randomly allocated to seven groups, each consisting of six rats, and were subjected to different treatment regiments for 28 days. Significant increases (P &lt; 0.05) in plasma protein, blood urea nitrogen, and creatinine levels indicated alterations in renal functions on repeated exposure to CPF or fluoride; moreover, these changes were more pronounced in animals exposed to both toxicants concurrently. A significant increase (P &lt; 0.05) in malondialdehyde levels and decreases in superoxide dismutase, catalase, and glutathione peroxidase activities in renal tissue were noted, indicating renal damage on exposure to CPF, fluoride, or the combination of those. Our observations suggested that the concurrent exposure to CPF and fluoride increased the extent of renal damage. These findings indicate that this damage is due to increased free radical formation and a reduced function of the antioxidant system in renal tissue. Thus, the application of CPF as an insecticide should be reduced in areas where the fluoride levels in ground waters are high in order to minimize renal damage in exposed populations."	"Unusual Presentation of Chordoma in Nose. Chordomas are uncommon tumors of the bone representing 1-4 % of all primary bone tumors. These typically involve axial skeleton. Primary nasal presentation of chordoma is a rare occurrence and is usually misdiagnosed till the histopathological confirmation. We present a case of chordoma in nasal cavity treated by wide local resection and also present a review of literature discussing various facets in its presentation and management. "	"Methods for Mitochondria and Mitophagy Flux Analyses in Stem Cells of Resting and Regenerating Skeletal Muscle. Mitochondria generate most of the cell's supply of ATP as a source of energy. They are also implicated in the control of cell's growth and death. Because of these critical functions, mitochondrial fitness is key for cellular homeostasis. Often, however, mitochondria become defective following damage or stress. To prevent accumulation of damaged mitochondria, the cells clear them through mitophagy, which is defined as the selective degradation of mitochondria by autophagy (the process for degradation of long-lived proteins and damaged organelles in lysosomes). Recently, constitutive mitophagic activity has been reported in quiescent muscle stem cells (satellite cells), which sustain regeneration of skeletal muscle. In response to muscle damage, these cells activate, expand, and differentiate to repair damaged myofibers. Mitophagy was shown to be required for maintenance of satellite cells in their healthy quiescent state. Conversely, damaged mitochondria accumulated in satellite cells with aging and this was attributed to defective mitophagy. This caused increased levels of reactive oxygen species (ROS) and loss of muscle stem cell regenerative capacity at old age. In this chapter, we describe different experimental strategies to evaluate mitochondria status and mitophagy in muscle stem cells from mice. They should improve our ability to study muscle stem homeostasis in adult life, and their loss of function in aging and disease."	"Fibrosis-Inducing Strategies in Regenerating Dystrophic and Normal Skeletal Muscle. The excessive accumulation of collagens (fibrosis) impairs the function of vital tissues and organs. Fibrosis is a hallmark of severe muscular dystrophies, such as the incurable Duchenne Muscular Dystrophy (DMD), where skeletal muscle is substituted by scar (fibrotic) tissue as disease advances. One of the major obstacles in increasing our ability to combat fibrosis-driven muscular dystrophy progression is that no optimal in vivo models of muscle fibrosis are currently available, limiting fibrosis research and the development of novel therapies. In this chapter we describe different experimental strategies to accelerate and enhance muscle fibrosis in vivo in the widely used animal model for DMD, the mdx mouse. Since excessive tissue scarring also hampers the normal regeneration process after muscle injury, we have extended these fibrogenic strategies to the muscle of normal (non-diseased) mice. These strategies will allow fibrosis induction and assessment in a wide array of genetically modified mouse lines in physiological and pathological conditions of muscle regeneration. They should eventually improve our ability to combat fibrosis and foster muscle regeneration in DMD."	"Dynamically encircling an exceptional point for asymmetric mode switching. Physical systems with loss or gain have resonant modes that decay or grow exponentially with time. Whenever two such modes coalesce both in their resonant frequency and their rate of decay or growth, an 'exceptional point' occurs, giving rise to fascinating phenomena that defy our physical intuition. Particularly intriguing behaviour is predicted to appear when an exceptional point is encircled sufficiently slowly, such as a state-flip or the accumulation of a geometric phase. The topological structure of exceptional points has been experimentally explored, but a full dynamical encircling of such a point and the associated breakdown of adiabaticity have remained out of reach of measurement. Here we demonstrate that a dynamical encircling of an exceptional point is analogous to the scattering through a two-mode waveguide with suitably designed boundaries and losses. We present experimental results from a corresponding waveguide structure that steers incoming waves around an exceptional point during the transmission process. In this way, mode transitions are induced that transform this device into a robust and asymmetric switch between different waveguide modes. This work will enable the exploration of exceptional point physics in system control and state transfer schemes at the crossroads between fundamental research and practical applications."	"A household survey to assess community knowledge, attitude and practices on malaria in a rural population of Northern India. An extensive search on PubMed reveals very little in terms of evidence regarding the current knowledge, attitude, and practices (KAP) of the population in general and rural population, in particular, in this part of the country. Therefore, a study was conducted with the aim to assess the communities' knowledge of malaria transmission, recognition of signs and symptoms, treatment seeking. A stratified two-stage design was used to conduct a house-to-house survey using a semi-structured questionnaire in RS Pura block of Jammu District of Jammu and Kashmir State in North India. A total of 300 households were included in the study. However, data on 4 households was found to be incomplete at the time of analysis and, therefore, were excluded. Out of 296 study participants interviewed 65.5% were males, while 34.5% females. All of the study participants (100%) had heard of malaria, and the main source of their information was television/newspaper. 92.5% of the study population considered malaria to be a serious health problem, thus reflecting their attitude to the disease. Regarding practices, 71.6% of the study participants preferred going to doctors at government hospitals for malaria treatment, and 56% were willing to seek medical help in &lt;24 h in case of a child has a febrile episode. Results revealed that KAP among respondents were reasonably good and key sociocultural, and related indicators need to be identified as a part of malaria elimination strategy."	"Computer modelling of an impedance-controlled pulsing protocol for RF tumour ablation with a cooled electrode. To develop computer models to mimic the impedance-controlled pulsing protocol implemented in radiofrequency (RF) generators used for clinical practice of radiofrequency ablation (RFA), and to assess the appropriateness of the models by comparing the computer results with those obtained in previous experimental studies. A 12-min RFA was modelled using a cooled electrode (17G, 3 cm tip) inserted in hepatic tissue. The short (transverse) diameter of the coagulation zone was assessed under in vivo (with blood perfusion (BP) and considering clamping) and ex vivo (at 21 °C) conditions. The computer results obtained by programming voltage pulses were compared with current pulses. The differences between voltage and current pulses were noticeable: using current instead of voltage allows larger coagulation zones to be created, due to the higher energy applied by current pulses. If voltage pulses are employed the model can accurately predict the number of roll-offs, although the waveform of the applied power is clearly not realistic. If current voltages are employed, the applied power waveform matches well with those reported experimentally, but there are significantly fewer roll-offs. Our computer results were overall into the ranges of experimental ones. The proposed models reproduce reasonably well the electrical-thermal performance and coagulation zone size obtained during an impedance-controlled pulsing protocol."	"Anthelmintic efficacy of aqueous extract of Zanthoxylum armatum DC. seeds against Haemonchus contortus of small ruminants. Haemonchus contortus infection is the major hurdle in growth and productivity in small ruminants especially in tropical countries. Indiscriminate and long term use of currently available chemotherapeutic agents lead to development of resistance in microorganisms and residual problems in population. Therefore, present study was undertaken to evaluate the anthelmintic efficacy of aqueous extract of Zanthoxylum armatum DC. seeds against adult H. contortus worms of small ruminants. Proximate analysis of seed powder shows high crude protein, Cu, Zn and Ca concentration. Phytochemical ingredients of extract revealed high total phenolic, flavonoids and tannin contents. In vitro experimental trial revealed complete mortality of H. contortus worms at the concentration of 100 mg/ml at the time exposure of 8 h. At 50 mg/ml concentration the mortality at 6 and 8 h were 45.45 ± 4.55 and 63.64 ± 4.54 %. Median lethal concentration (LC50) at 6 and 8 h were 59.90 and 28.92 mg/ml, respectively. Levamisole at concentration of 0.5 mg/ml caused 50 % mortality at 2 h post exposure and 100 % mortality at 4 h post exposure. The results confirm the cidal effect of the aqueous extract of Z. armatum DC. seeds on adult H. contortus worms. "	"Comparative efficacy of pour-on eprinomectin and ivermectin against Sarcoptes scabiei in buffaloes. The efficacy of eprinomectin and ivermectin pour-on was evaluated against Sarcoptes scabiei in naturally infested buffaloes. Eighteen animals were allocated into three groups (A, B and C) of six animals each. Animals in group A were treated with eprinomectin (pour-on) @ 0.5 mg/kg; group B with ivermectin (pour-on) @ 0.2 mg/kg while group C served as untreated controls. Skin scrapings were examined on days 0, 7, 14, 21, 28 and 42 post-treatment (PT). Skin scrapings were found free for mites on day 21 PT, with marked clinical improvement in the lesions after day 28 of treatment. Untreated control group continued to show severe progressive lesions throughout the study period. No clinical side-effects of the tested drugs were observed after treatment. This preliminary report on the efficacy of eprinomectin (pour-on) against S. scabiei in buffaloes is encouraging and results could be of considerable importance. "	"Comparative Genomics Reveals Biomarkers to Identify Lactobacillus Species. Bacteria possessing multiple copies of 16S rRNA (rrs) gene demonstrate high intragenomic heterogeneity. It hinders clear distinction at species level and even leads to overestimation of the bacterial diversity. Fifty completely sequenced genomes belonging to 19 species of Lactobacillus species were found to possess 4-9 copies of rrs each. Multiple sequence alignment of 268 rrs genes from all the 19 species could be classified into 20 groups. Lactobacillus sanfranciscensis TMW 1.1304 was the only species where all the 7 copies of rrs were exactly similar and thus formed a distinct group. In order to circumvent the problem of high heterogeneity arising due to multiple copies of rrs, 19 additional genes (732-3645 nucleotides in size) common to Lactobacillus genomes, were selected and digested with 10 Type II restriction endonucleases (RE), under in silico conditions. The following unique gene-RE combinations: recA (1098 nts)-HpyCH4 V, CviAII, BfuCI and RsaI were found to be useful in identifying 29 strains representing 17 species. Digestion patterns of genes-ruvB (1020 nts), dnaA (1368 nts), purA (1290 nts), dnaJ (1140 nts), and gyrB (1944 nts) in combination with REs-AluI, BfuCI, CviAI, Taq1, and Tru9I allowed clear identification of an additional 14 strains belonging to 8 species. Digestion pattern of genes recA, ruvB, dnaA, purA, dnaJ and gyrB can be used as biomarkers for identifying different species of Lactobacillus. "	"Characterization of genome-reduced Bacillus subtilis strains and their application for the production of guanosine and thymidine. Genome streamlining has emerged as an effective strategy to boost the production efficiency of bio-based products. Many efforts have been made to construct desirable chassis cells by reducing the genome size of microbes. It has been reported that the genome-reduced Bacillus subtilis strain MBG874 showed clear advantages for the production of several heterologous enzymes including alkaline cellulase and protease. In addition to enzymes, B. subtilis is also used for the production of chemicals. To our best knowledge, it is still unknown whether genome reduction could be used to optimize the production of chemicals such as nucleoside products. In this study, we constructed a series of genome-reduced strains by deleting non-essential regions in the chromosome of B. subtilis 168. These strains with genome reductions ranging in size from 581.9 to 814.4 kb displayed markedly decreased growth rates, sporulation ratios, transformation efficiencies and maintenance coefficients, as well as increased cell yields. We re-engineered the genome-reduced strains to produce guanosine and thymidine, respectively. The strain BSK814G2, in which purA was knocked out, and prs, purF and guaB were co-overexpressed, produced 115.2 mg/L of guanosine, which was 4.4-fold higher compared to the control strain constructed by introducing the same gene modifications into the parental strain. We also constructed a thymidine producer by deleting the tdk gene and overexpressing the prs, ushA, thyA, dut, and ndk genes from Escherichia coli in strain BSK756, and the resulting strain BSK756T3 accumulated 151.2 mg/L thymidine, showing a 5.2-fold increase compared to the corresponding control strain. Genome-scale genetic manipulation has a variety of effects on the physiological characteristics and cell metabolism of B. subtilis. By introducing specific gene modifications related to guanosine and thymidine accumulation, respectively, we demonstrated that genome-reduced strains had greatly improved properties compared to the wild-type strain as chassis cells for the production of these two products. These strains also have great potential for the production of other nucleosides and similar derived chemicals."	"Pur-Alpha Induces JCV Gene Expression and Viral Replication by Suppressing SRSF1 in Glial Cells. PML is a rare and fatal demyelinating disease of the CNS caused by the human polyomavirus, JC virus (JCV), which occurs in AIDS patients and those on immunosuppressive monoclonal antibody therapies (mAbs). We sought to identify mechanisms that could stimulate reactivation of JCV in a cell culture model system and targeted pathways which could affect early gene transcription and JCV T-antigen production, which are key steps of the viral life cycle for blocking reactivation of JCV. Two important regulatory partners we have previously identified for T-antigen include Pur-alpha and SRSF1 (SF2/ASF). SRSF1, an alternative splicing factor, is a potential regulator of JCV whose overexpression in glial cells strongly suppresses viral gene expression and replication. Pur-alpha has been most extensively characterized as a sequence-specific DNA- and RNA-binding protein which directs both viral gene transcription and mRNA translation, and is a potent inducer of the JCV early promoter through binding to T-antigen. Pur-alpha and SRSF1 both act directly as transcriptional regulators of the JCV promoter and here we have observed that Pur-alpha is capable of ameliorating SRSF1-mediated suppression of JCV gene expression and viral replication. Interestingly, Pur-alpha exerted its effect by suppressing SRSF1 at both the protein and mRNA levels in glial cells suggesting this effect can occur independent of T-antigen. Pur-alpha and SRSF1 were both localized to oligodendrocyte inclusion bodies by immunohistochemistry in brain sections from patients with HIV-1 associated PML. Interestingly, inclusion bodies were typically positive for either Pur-alpha or SRSF1, though some cells appeared to be positive for both proteins. Taken together, these results indicate the presence of an antagonistic interaction between these two proteins in regulating of JCV gene expression and viral replication and suggests that they play an important role during viral reactivation leading to development of PML."	"Prevalence of Abdominal Aortic Aneurysm in Men Aged 65-74 Years in a Metropolitan Area in North-East Spain. A declining prevalence of AAA and a shift in the distribution towards the older population have been observed during the last decade in Europe. The aim was to estimate the current screening prevalence of AAA in men aged 65-74 years in a metropolitan area in north-east Spain and to identify associated risk factors. A cross sectional prevalence study in men registered in L'Hospitalet Primary Healthcare Services (Barcelona, Spain) was performed. There were 619 randomly selected subjects (expected prevalence of aneurysm, 5%; accuracy of estimation, ±2%; loss to follow up, 30%). Exclusion criteria were life expectancy &lt;1 year, limited quality of life, previous diagnosis of AAA, prior aorto-femoral surgery, and non-Caucasian. The following were measured: internal diameter of the infrarenal abdominal aorta using ultrasound, cardiovascular risk factors, personal (heart disease, stroke, peripheral vascular disease) and family history (AAA), physical examination, and blood tests. We estimated the prevalence and 95% confidence interval of AAA, and used logistic regression analysis to identify risk factors for AAA. Among the 651 individuals included in the analysis the prevalence of aneurysm was 2.30% (95% CI, 1.30-3.77%). In the regression analysis, AAA was associated with smoking (0-10, 11-20, or &gt;20 cigarettes/day), diagnosis of myocardial infarction, and being taller than the median (165 cm). The current screening prevalence of AAA among men aged 65-74 years in a metropolitan area in north-east Spain is similar to that in northern Europe. Smoking, myocardial infarction, and height were associated with the presence of AAA."	"Directed evolution of adenylosuccinate synthetase from Bacillus subtilis and its application in metabolic engineering. Adenylosuccinate synthetase (EC. 6.3.4.4) encoded by purA in Bacillus subtilis, catalyzing the first step of the conversion of IMP to AMP, plays an important role in flux distribution in the purine biosynthetic pathway. In this study, we described the use of site saturation mutagenesis to obtain a desired enzyme activity of adenylosuccinate synthetase and its application in flux regulation. Based on sequence alignment and structural modeling, a library of enzyme variants was created by a semi-rational evolution strategy in position Thr238 and Pro242. Other than purA deletion, the leaky mutation purA(P242N) partially reduced the flux towards AMP derived from IMP and increased the riboflavin synthesis precursor GTP, while also kept the requirement of ATP synthesis for cell growth. PurA(P242N) was introduced into an inosine-producing strain and resulted in an approximately 4.66-fold increase in inosine production, from 0.088±0.009g/L to 0.41±0.051g/L, in minimal medium without hypoxanthine accumulation. These results underline that the directed evolution of adenylosuccinate synthetase could tailor its activities and adjust metabolic flux. This mutation may provide a promising application in purine-based product accumulation, like inosine, guanosine and folate which are directly stemming from purine pathway in B. subtilis. "	"Influence of geometrical parameters on the linear stability of a Bénard-Marangoni problem. A linear stability analysis of a thin liquid film flowing over a plate is performed. The analysis is performed in an annular domain when momentum diffusivity and thermal diffusivity are comparable (relatively low Prandtl number, Pr=1.2). The influence of the aspect ratio (Γ) and gravity, through the Bond number (Bo), in the linear stability of the flow are analyzed together. Two different regions in the Γ-Bo plane have been identified. In the first one the basic state presents a linear regime (in which the temperature gradient does not change sign with r). In the second one, the flow presents a nonlinear regime, also called return flow. A great diversity of bifurcations have been found just by changing the domain depth d. The results obtained in this work are in agreement with some reported experiments, and give a deeper insight into the effect of physical parameters on bifurcations."	"De novo mutations in PURA are associated with hypotonia and developmental delay. PURA is the leading candidate gene responsible for the developmental phenotype in the 5q31.3 microdeletion syndrome. De novo mutations in PURA were recently reported in 15 individuals with developmental features similar to the 5q31.3 microdeletion syndrome. Here we describe six unrelated children who were identified by clinical whole-exome sequencing (WES) to have novel de novo variants in PURA with a similar phenotype of hypotonia and developmental delay and frequently associated with seizures. The protein Purα (encoded by PURA) is involved in neuronal proliferation, dendrite maturation, and the transport of mRNA to translation sites during neuronal development. Mutations in PURA may alter normal brain development and impair neuronal function, leading to developmental delay and the seizures observed in patients with mutations in PURA. "	"Can Fat Deposition After Myocardial Infarction Alter the Performance of RF Catheter Ablation of Scar-Related Ventricular Tachycardia?: Results from a Computer Modeling Study. The outcomes of catheter ablation of scar-mediated ventricular tachycardia (VT) remain far from perfect. The presence of fat as a component of the underlying substrate for scar-mediated VT could be relevant since this entity can seriously impede the passage of RF current due to its low electrical conductivity. Computer models of RF ablation were built in order to investigate the means by which the spatial heterogeneity of different tissues represented within the ventricular infarct zone, including the viable myocardium, fibrous tissue, and fat, could influence temperature distributions during RF ablation. The results demonstrated that spatial distributions of different tissue types significantly alter the density of electrical current largely as a result of fat impeding the passage of current. However, the thermal lesions appear minimally unaffected by this phenomenon, with variations in depth of ∼1 mm. While during RF ablation of scar-related ventricular tachycardia differences in tissue characteristics may affect the density of electrical current on a small-scale, overall this does not appear to significantly impact the size of the created thermal lesions."	"Adenoid Cystic Carcinoma of Trachea: A Diagnostic and Therapeutic Challenge. Primary tumors of the trachea, which may be benign or malignant, account for fewer than 0.1 % of tumors. Adenoid cystic carcinoma is the second most common tracheal tumor. It poses a diagnostic and therapeutic challenge because of its slow growth and tendency for local recurrence and late metastasis. We present a case of adenoid cystic carcinoma of trachea which was misdiagnosed and mistreated as asthma initially because of its inherent indolent progression. It is important to be acquainted with this condition to prevent delay in diagnosis and provide timely treatment. "	"Effect of condensed tannins supplementation through leaf meal mixture on voluntary feed intake, immune response and worm burden in Haemonchus contortus infected sheep. The study was carried out to assess the effect of condensed tannins (CT) supplementation through leaf meal mixture (LMM) on feed intake, humoral [Immunoglobulin G (IgG)], cell mediated immune response (CMI) and faecal egg counts in Haemonchus contortus infected sheep. Eighteen sheep were randomly divided into three groups (negative control-NC, infected control-C and Infected treatment-T) of six animals in each group in a completely randomized block design for a period of 90 days. Twelve H. contortus infected adult sheep were allocated into two equal groups C and T, supplemented with 0 and 1.5 % of CT, respectively. Six non-infected sheep of similar age and body weight of NC group were included in this study to compare their immune response with H. contortus C and CT supplemented T groups. Intake of dry matter and organic matter (g day(-1) and % live weight) was statistically similar (P &lt; 0.05) among the three groups. The anti-Haemonchus IgG and CMI response was higher in T group as compared to C group. The mean faecal egg counts was significantly (P &lt; 0.001) higher in C group as compared to T group. It may be concluded that dietary supplementation of CT (1.5 %) through LMM improved humoral and CMI immune response and decreased worm load in H. contortus infected sheep. "	"Effect of tanniferous leaf meal based multi-nutrient blocks on feed intake, hematological profile, immune response, and body weight changes in Haemonchus contortus infected goats. The aim was to assess the effect of multi nutrient block (MNB) supplementation with and without tanniferous leaf meal mixture on feed intake, hematological profile, immune response, and body weight changes of goats that were experimentally infected with Haemonchus contortus. Total 12 adult male goats of similar age and body weight (26.49±0.87) were allocated in 3 groups in completely randomized design. MNB supplemented in first two groups i.e. in T1 (no infection) and T2 (H. contortus infection @ 1500 L3/goat) group, while, MNB-condensed tannin (CT) supplemented in T3 (H. contortus infection @ 1500 L3/goat + CT source). All goats were fed concentrate mixture @ 100 g/day/goat, ad lib wheat straw and MNB or MNB-CT to meet their requirement for maintenance. Body weights were recorded and blood and fecal samples were collected at 0 day and thereafter at 15 days intervals for a period of 75 days for the assessment of body weight changes, hematological profile and H. contortus loads. Both humoral and cell-mediated immune (CMI) response were assessed at the end of feeding trial. Mean hemoglobin and packed cell volume (PCV) levels were found to be highest (p&lt;0.001, p&lt;0.05) in T1 group followed by T3 group and lowest values were observed in T2 group. However, The PCV values between T1 and T3 groups were found to be statistically non-significant (p&lt;0.05). The humoral and CMI response were significantly (p&lt;0.036) higher in T3 group as compared to T2 group. MNB-CT supplementation significantly (p&lt;0.001) reduced fecal egg counts in T3 group as compared to MNB supplemented T2 group. Supplementation of MNB-CT could be used as an alternative sustainable method to control H. contortus and maintained health status and performance of goats in face of parasitic challenge."	"Dickeyafangzhongdai sp. nov., a plant-pathogenic bacterium isolated from pear trees (Pyrus pyrifolia). Gram-stain-negative, pectinolytic bacteria were repeatedly isolated from pear trees displaying symptoms of bleeding canker in China. Three strains, JS5T, LN1 and QZH3, had identical 16S rRNA gene sequences that shared 99 % similarity to the type strain of Dickeya dadantii. Phylogenetic analysis of strains JS5T, LN1 and QZH3 with isolates representing all species of the genus Dickeya and related Pectobacterium species supported their affiliation to Dickeya. Multi-locus sequence typing employing concatenated sequences encoding recA, fusA, gapA, purA, rplB, dnaX and the intergenic spacer illustrated a phylogeny which placed strains JS5T, LN1 and QZH3 as a distinct clade, separate from all other species of the genus Dickeya. Average nucleotide identity values obtained in comparison with all species of the genus Dickeya supported the distinctiveness of strain JS5T within the genus Dickeya. Additionally, all three strains were phenotypically distinguished from other species of the genus Dickeya by failing to hydrolyse casein, and by producing acids from (-)-d-arabinose, (+)melibiose, (+)raffinose, mannitol and myo-inositol, but not from 5-keto-d-gluconate or β-gentiobiose. The name Dickeya fangzhongdai sp. nov. is proposed to accommodate these strains; the type strain is JS5T (=CGMCC 1.15464T=DSM 101947T). "	"Heart morphology differences induced by intrauterine growth restriction and preterm birth measured on the ECG at preadolescent age. Intrauterine Growth Restriction (IUGR) and premature birth are associated with higher risk of cardiovascular diseases throughout adulthood. The aim of this study was to evaluate the influence of these factors in ventricular electrical remodeling in preadolescents. Electrocardiography was performed in a cohort of 33-IUGR, 32-preterm with appropriate weight and 60 controls. Depolarization and repolarization processes were studied by means of the surface ECG, including loops and angles corresponding to QRS and T-waves. The angles between the dominant vector of QRS and the frontal plane XY were different among the study groups: controls [20.03°(10.11°-28.64°)], preterm [25.48°(19.79°-33.56°)], and IUGR [27.77°(16.59°-33.23°)]. When compared to controls, IUGR subjects also presented wider angles between the difference of QRS and T-wave dominant vectors and the XY-plane [5.28°±12.15° vs 0.49°±14.15°, p&lt;0.05] while preterm ones showed smaller frontal QRS-T angle [4.68°(2.20°-12.89°) vs 6.57°(2.72°-11.31°), p&lt;0.05]. Thus, electrical remodeling is present in IUGR and preterm preadolescents, and might predispose them to cardiovascular diseases in adulthood. Follow-up studies are warranted."	"Evaluation of two multi-locus sequence typing schemes for commensal Escherichia coli from dairy cattle in Washington State. Multi-locus sequence typing (MLST) is a useful system for phylogenetic and epidemiological studies of multidrug-resistant Escherichiacoli. Most studies utilize a seven-locus MLST, but an alternate two-locus typing method (fumC and fimH; CH typing) has been proposed that may offer a similar degree of discrimination at lower cost. Herein, we compare CH typing to the standard seven-locus method for typing commensal E. coli isolates from dairy cattle. In addition, we evaluated alternative combinations of eight loci to identify combinations that maximize discrimination and congruence with standard seven-locus MLST among commensal E. coli while minimizing the cost. We also compared both methods when used for typing uropathogenic E. coli (UPEC). CH typing was less discriminatory for commensal E. coli than the standard seven-locus method (Simpson's Index of Diversity=0.933 [0.902-0.964] and 0.97 [0.96-0.979], respectively). Combining fimH with housekeeping gene loci improved discriminatory power for commensal E. coli from cattle but resulted in poor congruence with MLST. We found that a four-locus typing method including the housekeeping genes adk, purA, gyrB and recA could be used to minimize cost without sacrificing discriminatory power or congruence with Achtman seven-locus MLST when typing commensal E. coli. "	"Regenerative decline of stem cells in sarcopenia. Skeletal muscle mass and function decline with aging, a process known as sarcopenia, which restrains posture maintenance, mobility and quality of life in the elderly. Sarcopenia is also linked to a progressive reduction in the regenerative capacity of the skeletal muscle stem cells (satellite cells), which are critical for myofiber formation in early life stages and for sustaining repair in response to muscle damage or trauma. Here we will review the most recent findings on the causes underlying satellite cell functional decline with aging, and will discuss the prevalent view whereby age-associated extrinsic factor alterations impact negatively on satellite cell-intrinsic mechanisms, resulting in deficient muscle regeneration with aging. Further understanding of the interplay between satellite cell extrinsic and intrinsic factors in sarcopenia will facilitate therapies aimed at improving muscle repair in the increasing aging population."	"Status of industrial fluoride pollution and its diverse adverse health effects in man and domestic animals in India. Hydrofluorosis in humans and domestic animals is a worldwide health problem and caused by a prolonged period of fluoride exposure through drinking of fluoride contaminated water. But in recent years, due to rapid industrialization in India, diverse serious health problems among industrial workers and residents and domestic animals living in the industrial areas due to fluoride pollution are on the rise. A number of coal-burning and industrial activities such as power-generating stations, welding operations and the manufacturing or production of steel, iron, aluminum, zinc, phosphorus, chemical fertilizers, bricks, glass, plastic, cement, and hydrofluoric acid are generally discharging fluoride in both gaseous and particulate/dust forms into surrounding environments which create a industrial fluoride pollution and are an important cause of occupational exposure to fluoride in several countries including India. An industrial emitted fluoride contaminates not only surrounding soil, air, and water but also vegetation, crops and many other biotic communities on which man and animals are generally dependants for food. Long- time of inhalation or ingestion of industrial fluoride also causes serious health problems in the forms of industrial and neighborhood fluorosis. In India, whatever research works conducted so far on the chronic industrial fluoride intoxication or poisoning (industrial and neighborhood fluorosis) in man and various species of domestic animals due to a prolonged period of industrial fluoride exposure or pollution (contamination) are critically reviewed in the present communication. Simultaneously, we are also focused the various bio-indicators and bio-markers for chronic industrial fluoride intoxication or pollution. "	"Critical Fragmentation Properties of Random Drilling: How Many Holes Need to Be Drilled to Collapse a Wooden Cube? A solid wooden cube fragments into pieces as we sequentially drill holes through it randomly. This seemingly straightforward observation encompasses deep and nontrivial geometrical and probabilistic behavior that is discussed here. Combining numerical simulations and rigorous results, we find off-critical scale-free behavior and a continuous transition at a critical density of holes that significantly differs from classical percolation. "	"Prevalence, risk factors and genetic parameters of cresty neck in Pura Raza Español horses. Cresty neck is a relatively common morphological defect in Pura Raza Español horses and other Baroque type horse breeds, which adversely affects the breeding industry. To establish the within-breed prevalence, possible associated factors and heritability of cresty neck in Pura Raza Español horses. Cross-sectional analysis of a large worldwide database of Pura Raza Español horses. The database included evaluations of 10,929 Pura Raza Español horses from 24 countries. Cresty neck score, on a 9 point scale, girth-to-height ratio, height at the withers, length of neck, head-neck junction and neck-body junction were recorded. A Bayesian genetic animal model included the following systematic effects: girth-to-height ratio, age, sex, coat colour and geographical area of the stud. Animal and residual effects were included as random effects. Within this Pura Raza Español population, 8.91% had a cresty neck score ≥5, which is the threshold for penalty or disqualification in the studbook of the breed. The age, sex, coat colour and stud geographical area were significantly associated with cresty neck score. The estimated heritability coefficient for cresty neck score was 0.37 (s.d. = 0.034) and genetic correlation between cresty neck score and other conformational traits ranged from -0.06 (height-at-withers) to -0.21 (neck-body junction). Cresty neck is a prevalent defect in Pura Raza Español horses, associated with age, sex, coat colour and other conformational traits, with a moderate level of heritability. Breeding to select against this condition may therefore be beneficial in this breed."	"Computer modelling of RF ablation in cortical osteoid osteoma: Assessment of the insulating effect of the reactive zone. The aim was to study by computer simulations the insulating role of the reactive zone surrounding a cortical osteoid osteoma (OO) in terms of electrical and thermal performance during radiofrequency ablation (RFA). We modelled a cortical OO consisting of a nidus (10 mm diameter) enclosed by a reactive zone. The OO was near a layer of cortical bone 1.5 mm thick. Trabecular bone partially surrounds the OO and there was muscle around the cortical bone layer. We modelled RF ablations with a non-cooled-tip 17-gauge needle electrode (300 s duration and 90 °C target temperature). Sensitivity analyses were conducted assuming a reactive zone electrical conductivity value (σrz) within the limits of the cortical and trabecular bone, i.e. 0.02 S/m and 0.087 S/m, respectively. In this way we were really modelling the different degrees of osteosclerosis associated with the reactive zone. The presence of the reactive zone drastically reduced the maximum temperature reached outside it. The temperature drop was proportional to the thickness of the reactive zone: from 68 °C when it was absent to 44 °C when it is 7.5 mm thick. Higher nidus conductivity values (σn) implied higher temperatures, while lower temperatures meant higher σrz values. Changing σrz from 0.02 S/m to 0.087 S/m reduced lesion diameters from 2.4 cm to 1.8 cm. The computer results suggest that the reactive zone plays the role of insulator in terms of reducing the temperature in the surrounding area."	"Emerging importance of dietary phytochemicals in fight against cancer: Role in targeting cancer stem cells. Recent years have seen an unpretending increase in research using dietary phytochemicals for targeting cancer and cancer stem cells (CSCs) due to the limited efficacy of conventional chemotherapy and radiotherapy and numerous associated side effects. A large number of dietary phytochemicals using traditional recommendation and experimental approaches have been demonstrated to have anti-proliferative, anti-metastatic, reactive oxygen species (ROS) inducing, anti-angiogenic, pro-apoptotic effects and efficacy in targeting cellular molecules and pathways implicated in malignancy. Researchers have shown the knack of phytochemicals in interfering with the CSCs self-renewal process. Thus, dietary phytochemicals can play a significant role in the cancer therapy owing to the plethora of targets without toxicity. In this review, we have discussed about the basic knowledge of CSCs, their identification, characterization, mechanism of self-renewal pathways (Wnt/β-catenin, Hedgehog, and Notch), features that help in the survival of CSCs and use of phytochemicals to replace chemotherapy. Applications of phytochemicals including curcumin, epigallocatechin-3-gallate (EGCG), resveratrol, lycopene, and sulforaphane for their effect on targeting cancer and in particular CSCs along with their molecular mechanisms responsible for pharmacological action are also discussed."	"An integrated in silico approach for functional and structural impact of non- synonymous SNPs in the MYH1 gene in Jeju Native Pigs. This study was performed to identify the non- synonymous polymorphisms in the myosin heavy chain 1 gene (MYH1) association with skeletal muscle development in economically important Jeju Native Pig (JNP) and Berkshire breeds. Herein, we present an in silico analysis, with a focus on (a) in silico approaches to predict the functional effect of non-synonymous SNP (nsSNP) in MYH1 on growth, and (b) molecular docking and dynamic simulation of MYH1 to predict the effects of those nsSNP on protein-protein association. The NextGENe (V 2.3.4.) tool was used to identify the variants in MYH1 from JNP and Berkshire using RNA seq. Gene ontology analysis of MYH1 revealed significant association with muscle contraction and muscle organ development. The 95 % confidence intervals clearly indicate that the mRNA expression of MYH1 is significantly higher in the Berkshire longissimus dorsi muscle samples than JNP breed. Concordant in silico analysis of MYH1, the open-source software tools identified 4 potential nsSNP (L884T, K972C, N981G, and Q1285C) in JNP and 1 nsSNP (H973G) in Berkshire pigs. Moreover, protein-protein interactions were studied to investigate the effect of MYH1 mutations on association with hub proteins, and MYH1 was found to be closely associated with the protein myosin light chain, phosphorylatable, fast skeletal muscle MYLPF. The results of molecular docking studies on MYH1 (native and 4 mutants) and MYLFP demonstrated that the native complex showed higher electrostatic energy (-466.5 Kcal mol(-1)), van der Walls energy (-87.3 Kcal mol(-1)), and interaction energy (-835.7 Kcal mol(-1)) than the mutant complexes. Furthermore, the molecular dynamic simulation revealed that the native complex yielded a higher root-mean-square deviation (0.2-0.55 nm) and lower root-mean-square fluctuation (approximately 0.08-0.3 nm) as compared to the mutant complexes. The results suggest that the variants at L884T, K972C, N981G, and Q1285C in MYH1 in JNP might represent a cause for the poor growth performance for this breed. This study is a pioneering in-depth in silico analysis of polymorphic MYH1 and will serve as a valuable resource for further targeted molecular diagnosis and population-based studies conducted for improving the growth performance of JNP."	"Implant-delivered Alendronate Causes a Dose-dependent Response on Net Bone Formation Around Porous Titanium Implants in Canines. Bony fixation of cementless orthopaedic implants is not always achieved, particularly in challenging scenarios such as revision surgery, trauma, and tumor reconstruction. An adjunct therapy for improving porous implant fixation could improve the reliability and durability of these reconstructive procedures. In this study, we asked whether there is a positive and dose-dependent effect of the local release of the bisphosphonate alendronate from (1) alendronate/hydroxyapatite (HA) porous-coated titanium implants compared with bare metal porous controls; and (2) alendronate/HA on porous-coated titanium implants compared with HA-coated porous controls with respect to extent of bone ingrowth, bone apposition, and periimplant bone formation in a canine model? Three-dimensional printed porous-coated cylindrical implants coated with three different doses (0.02, 0.06, and 0.18 mg/cm(2)) of alendronate were inserted bilaterally in the intramedullary canal of the proximal femora of 15 adult mongrel dogs (age range, 3-9 years; mean, 5 years) weighing between 36 kg and 60 kg (mean, 43 kg). In each dog, an implant coated with HA and one of three different doses of alendronate was inserted on one side while the contralateral femur had a bare metal porous control implant and an identical control implant with a coating of HA. The dose effect of locally released alendronate on the extent of bone ingrowth, bone apposition, and periimplant bone was assessed by backscattered electron microscopy of three pairs of cross-sections taken from each implant at 12 weeks after surgery. A linear mixed model was used to perform the statistical analyses to account for the correlation in the data resulting from the multiple measures performed on each dog. Compared with paired bare metal controls, periimplant bone increased by 92% (p = 0.007), and 114% (p &lt; 0.001) in the femora with the alendronate implants with a dose of 0.06 mg/cm(2), or 0.18 mg/cm(2), respectively. At a dose of 0.02 mg/cm(2), there was no difference (46% change; p = 0.184, with the numbers available). The comparison of the alendronate-dosed implants with their HA-coated controls showed that the intermediate dose of 0.06 mg/cm(2) alendronate had the greatest effect on net bone formation. Bone apposition was enhanced with the 0.06-mg/cm(2) alendronate femoral implants (82%; p = 0.008), although there was no change in bone ingrowth (37% change; p = 0.902, with the numbers available). When compared with the HA-coated control implants, the greatest effect of the alendronate-dosed implants was the increased amount of periimplant bone at the intermediate dose of 0.06-mg/cm(2) (108%, p = 0.009). There was no effect of the low (0.02-mg/cm(2)) and high (0.18-mg/cm(2)) alendronate-dosed implants (4%, and 6%, respectively; p = 0.321, p = 0.502). Overall, all three alendronate-dosed implants revealed little to no effect on bone ingrowth compared with the HA-coated control implants. The local release of alendronate from a three-dimensional printed porous-coated implant from the three doses studied showed an overall improvement in bone apposition and periimplant bone at the intermediate dose compared with bare metal or with HA-coated controls, although the effect was more pronounced compared with bare metal. Long-term studies to show the effects of localized alendronate delivery and mechanical fixation would be the next step for future studies. Local release of alendronate from a three-dimensional printed porous-coated implant may improve the reliability of cementless fixation of currently available porous-coated bare metal implants."	"Diagnostic exome sequencing provides a molecular diagnosis for a significant proportion of patients with epilepsy. To assess the yield of diagnostic exome sequencing (DES) and to characterize the molecular findings in characterized and novel disease genes in patients with epilepsy. In an unselected sample of 1,131 patients referred for DES, overall results were compared between patients with and without epilepsy. DES results were examined based on age of onset and epilepsy diagnosis. Positive/likely positive results were identified in 112/293 (38.2%) epilepsy patients compared with 210/732 (28.7%) patients without epilepsy (P = 0.004). The diagnostic yield in characterized disease genes among patients with epilepsy was 33.4% (105/314). KCNQ2, MECP2, FOXG1, IQSEC2, KMT2A, and STXBP1 were most commonly affected by de novo alterations. Patients with epileptic encephalopathies had the highest rate of positive findings (43.4%). A likely positive novel genetic etiology was proposed in 14/200 (7%) patients with epilepsy; this frequency was highest in patients with epileptic encephalopathies (17%). Three genes (COQ4, DNM1, and PURA) were initially reported as likely positive novel disease genes and were subsequently corroborated in independent peer-reviewed publications. DES with analysis and interpretation of both characterized and novel genetic etiologies is a useful diagnostic tool in epilepsy, particularly in severe early-onset epilepsy. The reporting on novel genetic etiologies may further increase the diagnostic yield.Genet Med 18 9, 898-905."	"Pur-alpha regulates cytoplasmic stress granule dynamics and ameliorates FUS toxicity. Amyotrophic lateral sclerosis is characterized by progressive loss of motor neurons in the brain and spinal cord. Mutations in several genes, including FUS, TDP43, Matrin 3, hnRNPA2 and other RNA-binding proteins, have been linked to ALS pathology. Recently, Pur-alpha, a DNA/RNA-binding protein was found to bind to C9orf72 repeat expansions and could possibly play a role in the pathogenesis of ALS. When overexpressed, Pur-alpha mitigates toxicities associated with Fragile X tumor ataxia syndrome (FXTAS) and C9orf72 repeat expansion diseases in Drosophila and mammalian cell culture models. However, the function of Pur-alpha in regulating ALS pathogenesis has not been fully understood. We identified Pur-alpha as a novel component of cytoplasmic stress granules (SGs) in ALS patient cells carrying disease-causing mutations in FUS. When cells were challenged with stress, we observed that Pur-alpha co-localized with mutant FUS in ALS patient cells and became trapped in constitutive SGs. We also found that FUS physically interacted with Pur-alpha in mammalian neuronal cells. Interestingly, shRNA-mediated knock down of endogenous Pur-alpha significantly reduced formation of cytoplasmic stress granules in mammalian cells suggesting that Pur-alpha is essential for the formation of SGs. Furthermore, ectopic expression of Pur-alpha blocked cytoplasmic mislocalization of mutant FUS and strongly suppressed toxicity associated with mutant FUS expression in primary motor neurons. Our data emphasizes the importance of stress granules in ALS pathogenesis and identifies Pur-alpha as a novel regulator of SG dynamics."	"[Toxic demyelinating neuropathy and leukoencephalopathy in patients who take the slimming products Thermatrim ® and Pura Alegria ®]. NA"	"Long-term follow-up of a patient with 5q31.3 microdeletion syndrome and the smallest de novo 5q31.2q31.3 deletion involving PURA. Purine-rich element binding protein A (PURA, MIM 600473), is considered the crucial phenocritical gene for an emerging 5q31.3 microdeletion syndrome. To date, at least seven affected individuals with overlapping 5q31.2q31.3 deletions, varying in size from 2.6 to 5 Mb, have been reported sharing neurologic features such as severe developmental delay, neonatal hypotonia, early feeding difficulties, respiratory distress and EEG abnormalities. The recent finding that de novo PURA point mutations are indeed sufficient to cause the severe neurological symptoms also observed in patients with 5q31.2q31.3 deletion further reinforces the gene's causative role in 5q31.3 microdeletion syndrome. The present patient, aged 26 years, is the oldest reported individual and carries the smallest de novo 5q31.2q31.3 microdeletion encompassing PURA (360 kb). Her clinical history summarizes the mainly neurodevelopmental phenotype described in children with 5q31.3 microdeletion syndrome. In addition, our patient exhibited a remarkable deterioration of clinical symptoms, starting at the beginning of adolescence, pubertal delay and primary amenorrhea. While epileptic seizures were successfully treated during her life, feeding problems showed a poor outcome, her respiratory problems increased and eventually became severe enough to cause her death. The clinical and molecular findings reported here provide further evidence that 5q31.3 microdeletion syndrome is a clinically discernible PURA-related disorder and describe the previously unreported natural evolution of the disease in a 26 years old patient."	"Epigenetic induction of epithelial to mesenchymal transition by LCN2 mediates metastasis and tumorigenesis, which is abrogated by NF-κB inhibitor BRM270 in a xenograft model of lung adenocarcinoma. Tumor initiating cancer stem-like cells (TICSCs) have recently become the object of intensive study. Human-Lipocalin-2 (hLCN2) acts as a biomarker for cancers. The aim of the present study was to explore new insights regarding the potential role of LCN2 in inducing epithelial to mesenchymal transition (EMT) by transfecting LCN2 into CD133+-A549-TICSCs and its cross-talk with the NF-κB signaling pathway in adenocarcinoma of the lung. Furthermore, EMT was confirmed by transcriptomic analysis, immunoblotting and immunocyto/histochemical analyses. Tumorigenesis and metastasis were confirmed by molecular therapeutics tracer 2DG infrared optical probe in BALB/cSIc-nude mice. It was observed that the CD133+-expressing-LCN2-A549 TICSCs population increased in adenocarcinoma of the lung compared to the normal lung tissue. The expressions of genes involved in stemness, adhesion, motility and drug efflux was higher in these cells than in their non-LCN2 expressing counterparts. The present study revealed that elevated expression of LCN2 significantly induced metastasis via EMT. Overexpression of LCN2 significantly increased stemness and tumor metastasis by modulating NF-κB cellular signaling. BRM270, a novel inhibitor of NF-κB plays a significant role in the EMT reversal. BRM270, a naturaceutical induces cell shrinkage, karyorrhexis and programmed cell death (PCD) which were observed by Hoechst 33342 staining while flow cytometry analysis showed significant (P&lt;0.05) decrease in cell population from G0-G1 phases. Also, 2DG guided in vivo model revealed that BRRM270 significantly (P&lt;0.0003) reduced tumor metastasis and increased percent survival in real-time with complete resection. An elaborate study on the novel concept with respect to linking of naturaceutics as selective and potential anticancer agent that eliminates the elevated LCN2 induced EMT and tumor dissemination through cooperation with the NF-κB signaling as the baseline data for the planning of new therapeutic strategies was conducted for the first time. Our results also illustrate a molecular mechanistic approach for 2DG-guided molecular imaging-based cancer therapy using BRM270 as a novel cancer therapeutic drug to enhance the effect of doxorubicin (Dox)-resistant LCN2 induced metastasis of solid tumors in nude mice. "	"A novel approach for honey pollen profile assessment using an electronic tongue and chemometric tools. Nowadays the main honey producing countries require accurate labeling of honey before commercialization, including floral classification. Traditionally, this classification is made by melissopalynology analysis, an accurate but time-consuming task requiring laborious sample pre-treatment and high-skilled technicians. In this work the potential use of a potentiometric electronic tongue for pollinic assessment is evaluated, using monofloral and polyfloral honeys. The results showed that after splitting honeys according to color (white, amber and dark), the novel methodology enabled quantifying the relative percentage of the main pollens (Castanea sp., Echium sp., Erica sp., Eucaliptus sp., Lavandula sp., Prunus sp., Rubus sp. and Trifolium sp.). Multiple linear regression models were established for each type of pollen, based on the best sensors' sub-sets selected using the simulated annealing algorithm. To minimize the overfitting risk, a repeated K-fold cross-validation procedure was implemented, ensuring that at least 10-20% of the honeys were used for internal validation. With this approach, a minimum average determination coefficient of 0.91 ± 0.15 was obtained. Also, the proposed technique enabled the correct classification of 92% and 100% of monofloral and polyfloral honeys, respectively. The quite satisfactory performance of the novel procedure for quantifying the relative pollen frequency may envisage its applicability for honey labeling and geographical origin identification. Nevertheless, this approach is not a full alternative to the traditional melissopalynologic analysis; it may be seen as a practical complementary tool for preliminary honey floral classification, leaving only problematic cases for pollinic evaluation."	"Italian biophysics and SIBPA speed-up the pace towards the long and winding road of the interdisciplinary science. This Special Issue of Biophysical Chemistry presents a selection of the contributions presented at the XXII National Congress of the Italian Society of Pure and Applied Biophysics (i.e., SIBPA, Società Italiana di Biofisica Pura ed Applicata) held on September 2014 in Palermo, Italy. Topics cover all biophysical disciplines, from molecular to cellular, to integrative biophysics giving a comprehensive view of the inter- and multi-disciplinary approach of modern biophysics. SIBPA, which turned 40 in 2013, continues to grow and attract interest."	"Inverse energy cascade in nonlocal helical shell models of turbulence. Following the exact decomposition in eigenstates of helicity for the Navier-Stokes equations in Fourier space [F. Waleffe, Phys. Fluids A 4, 350 (1992)], we introduce a modified version of helical shell models for turbulence with nonlocal triadic interactions. By using both an analytical argument and numerical simulation, we show that there exists a class of models, with a specific helical structure, that exhibits a statistically stable inverse energy cascade, in close analogy with that predicted for the Navier-Stokes equations restricted to the same helical interactions. We further support the idea that turbulent energy transfer is the result of a strong entanglement among triads possessing different transfer properties."	"High-strength porous biomaterials for bone replacement: A strategy to assess the interplay between cell morphology, mechanical properties, bone ingrowth and manufacturing constraints. High-strength fully porous biomaterials built with additive manufacturing provide an exciting opportunity for load-bearing orthopedic applications. While factors controlling their mechanical and biological response have recently been the subject of intense research, the interplay between mechanical properties, bone ingrowth requirements, and manufacturing constraints, is still unclear. In this paper, we present two high-strength stretch-dominated topologies, the Tetrahedron and the Octet truss, as well as an intuitive visualization method to understand the relationship of cell topology, pore size, porosity with constraints imposed by bone ingrowth requirements and additive manufacturing. 40 samples of selected porosities are fabricated using Selective Laser Melting (SLM), and their morphological deviations resulting from SLM are assessed via micro-CT. Mechanical compression testing is used to obtain stiffness and strength properties, whereas bone ingrowth is assessed in a canine in vivo model at four and eight weeks. The results show that the maximum strength and stiffness ranged from 227.86±10.15 to 31.37±2.19MPa and 4.58±0.18 to 1.23±0.40GPa respectively, and the maximum 0.2% offset strength is almost 5 times stronger than that of tantalum foam. For Tetrahedron samples, bone ingrowth after four and eight weeks is 28.6%±11.6%, and 41.3%±4.3%, while for the Octet truss 35.5%±1.9% and 56.9%±4.0% respectively. This research is the first to demonstrate the occurrence of bone ingrowth into high-strength porous biomaterials which have higher structural efficiency than current porous biomaterials in the market. We present two stretch-dominated cell topologies for porous biomaterials that can be used for load-bearing orthopaedic applications, and prove that they encourage bone ingrowth in a canine model. We also introduce an intuitive method to visualize and understand the relationship of cell topology, pore size, porosity with constraints imposed by bone ingrowth requirements and additive manufacturing. We show this strategy helps to gain insight into the interaction of exogenous implant factors and endogenous system factors that can affect the success of load-bearing orthopaedic devices."	"Total antioxidant and oxidant status of plasma and renal tissue of cisplatin-induced nephrotoxic rats: protection by floral extracts of Calendula officinalis Linn. The present study was aimed to determine the total antioxidant status (TAS), total oxidant status (TOS) and oxidative stress index (OSI) of plasma and renal tissue in cisplatin (cDDP) induced nephrotoxic rats and its protection by treatments with floral extracts of Calendula officinalis Linn. Treatment with cDDP elevated (p &lt; 0.05) the levels of blood urea nitrogen, creatinine (CR), TOS, OSI and malondialdehyde (MDA) but lowered (p &lt; 0.05) total plasma proteins, TAS, total thiols (TTH), blood glutathione (GSH) and antioxidant enzymes compared to the control group. Pre- and post-treatments of ethanolic floral extract of C. officinalis along with cDDP restored (p &gt; 0.05) CR, albumin, TOS, GSH and activities of antioxidant enzymes in blood and renal tissue. Ethanolic extract treatments reduced (p &lt; 0.05) MDA level in renal tissue without restoring the erythrocyte MDA level following cDDP treatment. These observations were further supported by the histopathological findings in renal tissue. Observations of the present study have shown that treatments with ethanolic floral extract of C. officinalis protect cDDP induced nephrotoxicity by restoring antioxidant system of the renal tissue."	"Drotaverine for Recurrent Abdominal Pain in Children. NA"	"Pur-alpha functionally interacts with FUS carrying ALS-associated mutations. Amyotrophic lateral sclerosis (ALS) is a fatal neurodegenerative disorder due to motor neuron loss. Fused in sarcoma (FUS) protein carrying ALS-associated mutations localizes to stress granules and causes their coalescence into larger aggregates. Here we show that Pur-alpha physically interacts with mutated FUS in an RNA-dependent manner. Pur-alpha colocalizes with FUS carrying mutations in stress granules of motoneuronal cells differentiated from induced pluripotent stem cells and that are derived from ALS patients. We observe that both Pur-alpha and mutated FUS upregulate phosphorylation of the translation initiation factor eukaryotic translation initiation factor 2 alpha and consistently inhibit global protein synthesis. In vivo expression of Pur-alpha in different Drosophila tissues significatively exacerbates the neurodegeneration caused by mutated FUS. Conversely, the downregulation of Pur-alpha in neurons expressing mutated FUS significatively improves fly climbing activity. All these findings suggest that Pur-alpha, through the control of mRNA translation, might be involved in the pathogenesis of ALS associated with the mutation of FUS, and that an alteration of protein synthesis may be directly implicated in the disease. Finally, in vivo RNAi-mediated ablation of Pur-alpha produced locomotion defects in Drosophila, indicating a pivotal role for this protein in the motoneuronal function. "	"Improving a Synechocystis-based photoautotrophic chassis through systematic genome mapping and validation of neutral sites. The use of microorganisms as cell factories frequently requires extensive molecular manipulation. Therefore, the identification of genomic neutral sites for the stable integration of ectopic DNA is required to ensure a successful outcome. Here we describe the genome mapping and validation of five neutral sites in the chromosome of Synechocystis sp. PCC 6803, foreseeing the use of this cyanobacterium as a photoautotrophic chassis. To evaluate the neutrality of these loci, insertion/deletion mutants were produced, and to assess their functionality, a synthetic green fluorescent reporter module was introduced. The constructed integrative vectors include a BioBrick-compatible multiple cloning site insulated by transcription terminators, constituting robust cloning interfaces for synthetic biology approaches. Moreover, Synechocystis mutants (chassis) ready to receive purpose-built synthetic modules/circuits are also available. This work presents a systematic approach to map and validate chromosomal neutral sites in cyanobacteria, and that can be extended to other organisms. "	"Quality, functionality, and shelf life of fermented meat and meat products: A review. Fermentation of meat is a traditional preservation method used widely for improving quality and shelf life of fermented meat products. Fermentation of meat causes a number of physical, biochemical, and microbial changes, which eventually impart functional properties, sensory characteristics, and nutritional aspects to these products and inhibit the growth of various pathogenic and spoilage microorganisms. These changes include acidification (carbohydrate catabolism), solubilization and gelation of myofibrillar and sarcoplasmic proteins of muscle, degradation of proteins and lipids, reduction of nitrate into nitrite, formation of nitrosomyoglobin, and dehydration. Dry-fermented sausages are increasingly being used as carrier of probiotics. The production of biogenic amines during fermentation can be controlled by selecting proper starter cultures and other preventive measures such as quality of raw materials, hygienic measures, temperature, etc."	"Occurrence of Setaria digitata in a cow. The present investigation reports the occurrence of filarial worm, Setaria digitata, recovered during the surgery of a cow suffering from intussusception. The worms were thread like, milky white, long with tapering ends especially towards the hind end with an average size of 62.8 ± 9.89 mm in length. On examination of anterior end, the cuticular rings surrounding the mouth region with dorsal, ventral and lateral prominences were observed. The posterior end had few spines along with a pair of appendages near the tip of the tail. On the basis of morphological characteristics the worms were identified as female S. digitata. "	"Incidence of Buxtonella sulcata in bovines in R.S. Pura, Jammu. Incidence of Buxtonella sulcata was recorded as 20.9 % in bovines (n = 374) of R.S. Pura, Jammu with cattle showing higher infection rate (23.6 %) than the buffaloes (18.5 %). The infection was significantly (p &lt; 0.0001) higher in young animals (33.1 %) than the adults (13.9 %). Animals with diarrhoeic faeces had a significantly higher (p &lt; 0.0001) infection rate (38.5 %) than the animals with normal faeces (9.9 %), suggesting the influence of protozoan on the incidence of diarrhoeal symptoms in bovines. "	"Incidence of Haemoproteus columbae in pigeons of Jammu district. Haemoproteus columbae is the major protozoan infection reported in pigeon and appeared in the erythrocyte of the peripheral circulation. Incidence and parasitaemia of H. columbae in pigeon was studied in different localities of Jammu, India for a period from April to September 2010 using thin blood smear examination. Of the 150 pigeons (wild: 70, domestic: 80), 92 (61.33 %) were found to be infected with H. columbae. Domestic pigeon showed higher incidence rate (74.28 %) than the wild (50 %). Mature and immature gametocyte encircled the erythrocyte nucleus to form a halter shaped appearance were characteristic feature of the parasite. Pseudolynchia canariensis, the vector for H. columbae was also recovered from beneath the feathers of pigeons. No other haemoprotozoan parasite was observed in the blood smear of examined pigeon. Counting of infected erythrocyte revealed higher affection of 1-2 erythrocytes indicative of milder infection in the birds. A long term study within bird population is essential in order to disclose seasonal variation in parasite, vector density and age of infection such as nesting area. "	"Prevalence of ixodid ticks in dairy animals of Jammu region. To determine the prevalence of ticks, 960 bovines (cattle 480, buffaloes 480) were examined from organised and unorganised dairy units of Jammu district during March 2012 to February 2013. The overall infestation rate was found to be 42.18 %. The infestation rate in cattle was found to be 47.08 % while 37.29 % of examined buffaloes were infested with ixodid ticks. Among the ixodid ticks, only one species i.e. Rhipicephalus (Boophilus) microplus was recorded. A significantly (p &lt; 0.05) higher prevalence was recorded in monsoon season as compared to other seasons. Agewise, the animals aged &lt;6 months showed the highest prevalence and the lowest was found in animals &gt;1 year of age. Sexwise, the males had higher infestation rate than the females. "	"Prevalence and analysis of associated risk factors for Cryptosporidium infection in lambs in Jammu district. An epidemiologic study was carried out to investigate the prevalence and analysis of risk of Cryptosporidium infection in lambs in Jammu district. Faecal samples of 120 lambs of different age groups viz., &lt;1 month, 1-3 months and 3-6 months were assessed. Cryptosporidium oocysts were identified by using modified Zeihl Neelsen technique. Statistical analysis showed that infection rates were significantly higher in lambs of &lt;1 month age group (65 %) than other two age groups (p &lt; 0.05). Similarly, cryptosporidial infection rates were significantly higher in diarrhoeic (54.41 %) than in non diarrhoeic lambs (34.61 %). Winter records highest prevalence (73.33 %) which varied significantly. Sex wise higher prevalence was observed in females (51.56 %) as compared to males (39.28 %). The relationship between intensity of infection and various epidemiological factors showed that highest intensity was observed in lambs of 0-1 month age group, having diarrhoea, in winter season. "	"Bioactive peptides of animal origin: a review. Bioactive peptides are specific protein fragments which, above and beyond their nutritional capabilities, have a positive impact on the body's function or condition which may ultimately influence health. Although, inactive within the sequence of the parent proteins, these peptides can be released during proteolysis or fermentation and play an important role in human health by affecting the digestive, endocrine, cardiovascular, immune and nervous systems. Several peptides that are released in vitro or in vivo from animal proteins have been attributed to different health effects, including antimicrobial properties, blood pressure-lowering (ACE inhibitory) effects, cholesterol-lowering ability, antithrombotic and antioxidant activities, opioid activities, enhancement of mineral absorption and/or bioavailability, cytomodulatory and immunomodulatory effects, antiobesity, and anti-genotoxic activity. Several functional foods based on the bioactivities of these peptides with scientifically evidenced health claims are already on the market or under development by food companies. Consumer's increasing interest in these products has given an impetus to the food industry and scientific sector who are continuously exploring the possibilities for the development of new functional products based on these peptides. In this review, we describe above stated properties of bioactive peptides of animal origin. "	"A novel mitosis-associated lncRNA, MA-linc1, is required for cell cycle progression and sensitizes cancer cells to Paclitaxel. Long noncoding RNAs (lncRNAs) are major regulators of many cellular processes including cell cycle progression and tumorigenesis. In this study, we identify a novel lncRNA, MA-linc1, and reveal its effects on cell cycle progression and cancer growth. Inhibition of MA-linc1 expression alters cell cycle distribution, leading to a decrease in the number of G1 cells and a concomitant increase in all other stages of the cell cycle, and in particular G2/M, suggesting its involvement in the regulation of M phase. Accordingly, knock down of MA-linc1 inhibits M phase exit upon release from a mitotic block. We further demonstrate that MA-linc1 predominantly functions in cis to repress expression of its neighboring gene, Purα, which is often deleted in human cancers and whose ectopic expression inhibits cell cycle progression. Knock down of Purα partially rescues the MA-linc1 dependent inhibition of M phase exit. In agreement with its suggested role in M phase, inhibition of MA-linc1 enhances apoptotic cell death induced by the antimitotic drug, Paclitaxel and this enhancement of apoptosis is rescued by Purα knockdown. Furthermore, high levels of MA-linc1 are associated with reduced survival in human breast and lung cancer patients.Taken together, our data identify MA-linc1 as a novel lncRNA regulator of cell cycle and demonstrate its potential role in cancer progression and treatment. "	"A Bedside Risk Calculator to Preoperatively Distinguish Follicular Thyroid Carcinoma from Follicular Variant of Papillary Thyroid Carcinoma. Follicular thyroid carcinoma (FTC) and follicular variant of papillary thyroid carcinoma (FV-PTC) are difficult entities to distinguish based on cytology prior to pathologic evaluation of surgical specimens but may have different treatment algorithms. The current study describes trends in rates of FTC versus FV-PTC in the U.S. and develops a risk assessment tool to aid clinicians in predicting final diagnosis and shaping treatment plans. Relative rates of FTC and FV-PTC in the surveillance, epidemiology, and end results (SEER) database were evaluated for temporal trends from 1988 to 2011. Using multivariable logistic regression, a simplified scoring system was developed to estimate the risk of FTC versus FV-PTC using patient and tumor characteristics. The National Cancer Data Base was used for model validation. Of 115,091 thyroid cancer cases in the SEER database from 1988 to 2011, 23,980 involved FTC (n = 5056; 21 %) or FV-PTC (n = 18,924; 79 %). In 1988, half of follicular cases were FV-PTC; however, FV-PTC accounted for over 85 % of these lesions by 2010. Increasing age &gt;45 years, male gender, black race, increasing tumor size, and distant metastases were strongly associated with increased risk of FTC, while lymph node disease and extrathyroidal extension were associated with FV-PTC. A bedside risk assessment nomogram using these preoperative variables classified patient risk of FTC from 2 to 70 %. FV-PTC has become the dominant malignancy with follicular cytology, accounting for &gt;85 % of these cases. A simple bedside risk assessment tool can risk stratify patients with follicular lesions and inform patient and clinician discussions and decision making."	"Evaluation of Selvester QRS score for use in presence of conduction abnormalities in a broad population. The Selvester QRS score is an electrocardiographic tool designed to quantify myocardial scar. It was updated in 2009 to expand its usefulness in patients with conduction abnormalities such as bundle-branch and fascicular blocks. There is need to further validate the updated score in a broader group of patients with cardiovascular disease and conduction abnormalities. We primarily hypothesized that the updated score could distinguish between presence and absence of scar by cardiac magnetic resonance imaging (CMR) with late gadolinium enhancement in 4 groups of patients with distinct conduction abnormalitites. A total of 193 patients were retrospectively identified that had received an electrocardiogram (ECG) and a CMR scan at Duke University Medical Center between January 2011 and August 2013: 62 with left bundle-branch block, 51 with right bundle-branch block (RBBB), 43 with left anterior fascicular block (LAFB), and 37 with RBBB + LAFB. Scar sizes estimated by ECG and by CMR were compared using scatterplots, modified Bland-Altman plots, and receiver operating characteristics curves. Of 193 patients, 96 (50%) had no scar by CMR. The QRS score generally overestimated CMR scar. The area under the curve ranged between 0.62 and 0.65 for the different conduction types, and 95% confidence intervals included 0.5 for all conduction types. Performance was slightly improved in LAFB and RBBB + LAFB by excluding all points derived from leads V4-V6. The Selvester QRS score for use in conduction abnormalities needs to be improved, primarily its specificity, to enable effective clinical use in a population with a wide range of left ventricular ejection fraction and low pretest probability of myocardial scar."	"Cluster formation in a heterogeneous metapopulation model. A spatially explicit heterogeneous metapopulation model with two different patch types is analyzed. Some network topologies support a partially synchronized dynamics, a state where two different clusters of patches are formed. Within each cluster the dynamics of all patches are synchronized. The linearized asymptotic stability of the partially synchronized attractor is studied. The transversal stability is analyzed and a simple expression for the transversal Lyapunov number of partially synchronized attractors is obtained. "	"Some subgroup embeddings in finite groups: A mini review. In this survey paper several subgroup embedding properties related to some types of permutability are introduced and studied. "	"Deltamethrin resistance in field populations of Rhipicephalus (Boophilus) microplus (Acari: Ixodidae) in Jammu and Kashmir, India. Detection of resistance levels against deltamethrin in Rhipicephalus (Boophilus) microplus collected from six districts of Jammu and Kashmir (India) was carried out using the adult immersion test. The regression graphs of probit mortality of ticks plotted against log values of concentration of drug were utilised for the determination of slope of mortality, lethal concentration for 50% (LC50), 95% (LC95) and resistance factor (RF). On the basis of the data generated on mortality, egg mass weight, reproductive index and percentage inhibition of oviposition, the resistance level was categorised as I, II, III and IV. Out of these six districts, resistance to deltamethrin at level I was detected in one district (RF = 1.9), at level II in two districts (RF = 7.08-10.07) and at level IV in three districts (RF = 96.08-288.72). The data generated on deltamethrin resistance status will help in formulating tick control strategy in the region."	"Macrophages decide between regeneration and fibrosis in muscle. Defective muscle regeneration is usually accompanied by excessive matrix accumulation (fibrosis). A recent study reveals how this fibrotic process is prevented to allow successful regeneration, through a timely interplay between macrophages and fibro/adipogenic progenitor cells. This has biomedical relevance for fibrotic muscular dystrophies. "	"Circadian Rhythms in Rho1 Activity Regulate Neuronal Plasticity and Network Hierarchy. Neuronal plasticity helps animals learn from their environment. However, it is challenging to link specific changes in defined neurons to altered behavior. Here, we focus on circadian rhythms in the structure of the principal s-LNv clock neurons in Drosophila. By quantifying neuronal architecture, we observed that s-LNv structural plasticity changes the amount of axonal material in addition to cycles of fasciculation and defasciculation. We found that this is controlled by rhythmic Rho1 activity that retracts s-LNv axonal termini by increasing myosin phosphorylation and simultaneously changes the balance of pre-synaptic and dendritic markers. This plasticity is required to change clock network hierarchy and allow seasonal adaptation. Rhythms in Rho1 activity are controlled by clock-regulated transcription of Puratrophin-1-like (Pura), a Rho1 GEF. Since spinocerebellar ataxia is associated with mutations in human Puratrophin-1, our data support the idea that defective actin-related plasticity underlies this ataxia. "	"Altered placental DNA methylation patterns associated with maternal smoking: current perspectives. The developmental origins of health and disease hypothesis states that adverse early life exposures can have lasting, detrimental effects on lifelong health. Exposure to maternal cigarette smoking during pregnancy is associated with morbidity and mortality in offspring, including increased risks for miscarriage, stillbirth, low birth weight, preterm birth, asthma, obesity, altered neurobehavior, and other conditions. Maternal cigarette smoking during pregnancy interferes with placental growth and functioning, and it has been proposed that this may occur through the disruption of normal and necessary placental epigenetic patterns. Epigenome-wide association studies have identified a number of differentially methylated placental genes that are associated with maternal smoking during pregnancy, including RUNX3, PURA, GTF2H2, GCA, GPR135, and HKR1. The placental methylation status of RUNX3 and NR3C1 has also been linked to adverse infant outcomes, including preterm birth and low birth weight, respectively. Candidate gene analyses have also found maternal smoking-associated placental methylation differences in the NR3C1, CYP1A1, HTR2A, and HSD11B2 genes, as well as in the repetitive elements LINE-1 and AluYb8. The differential methylation patterns of several genes have been confirmed to also exhibit altered gene expression patterns, including CYP1A1, CYP19A1, NR3C1, and HTR2A. Placental methylation patterns associated with maternal smoking during pregnancy may be largely gene-specific and tissue-specific and, to a lesser degree, involve global changes. It is important for future research to investigate the mechanistic roles that these differentially methylated genes may play in mediating the association between maternal smoking during pregnancy and disease in later life, as well as to elucidate the potential influence of emerging tobacco product use during pregnancy, including the use of electronic cigarettes, on placental epigenetics."	"Pathways to tertiary care adopted by individuals with psychiatric illness. Awareness of mental illness as a cause of morbidity is increasing the world over. Of the top ten causes of disability, five are psychiatric illnesses. Availability and accessibility of psychiatrists as well as treatment facilities is meagre, making pathways to psychiatric care tortuous hence delayed, affecting outcomes negatively. With an attempt to study the pathways to psychiatric care, a cross sectional study was undertaken, on 63 consecutive first contact patients in tertiary care centre in Bangalore, India. Socio demographic details, time taken to reach professional help, and reasons for delay were noted. Pathways to care were recorded using 'WHO pathways to care' proforma. One third of the study population were aged between 31 and 45 years, mostly Hindus. Two thirds of them had received about 10 years of formal education, hailed from urban areas and lived in nuclear families. Majority sought help from trained medical professionals, with almost 40% seeking psychiatric help initially itself. While the choice of consultation was influenced by people in the immediate environment, that of first contact was based on the physician or treating facility. Almost 57% had more than two referrals before reaching the tertiary care centre. Though the urban educated population are well aware of the nature of psychiatric illnesses, need for medical intervention and its availability, there was a delay in seeking help from a tertiary psychiatric centre. There is thus a need to educate medical professionals about timely referral to these centres, as early and appropriate interventions result in a favourable outcome. "	"The geometric semantics of algebraic quantum mechanics. In this paper, we will present an ongoing project that aims to use model theory as a suitable mathematical setting for studying the formalism of quantum mechanics. We argue that this approach provides a geometric semantics for such a formalism by means of establishing a (non-commutative) duality between certain algebraic and geometric objects. "	"Comparison of 2-Year Outcomes of Extended Criteria Cardiac Transplantation Versus Destination Left Ventricular Assist Device Therapy Using Continuous Flow. Alternatives have emerged for patients ineligible for cardiac transplantation under standard criteria. The purpose of our study was to compare outcomes in patients ineligible for cardiac transplantation under standard criteria, treated either with extended criteria cardiac transplantation (ECCT) or a continuous flow destination therapy left ventricular assist device (CF DT-LVAD). From 2005 to 2012, patients treated with either ECCT or CF DT-LVAD at our institution were retrospectively analyzed. In the overall unmatched cohort, we examined mortality and other outcomes, including index hospitalization length of stay, renal function, stroke, and readmission rates. After propensity score (PS) matching, outcomes were compared between ECCT and CF DT-LVAD recipients. Overall, 62 patients underwent ECCT, and 146 patients were treated with CF DT-LVAD. The 2-year mortality estimate for ECCT recipients was 27.3% (95% confidence interval 15.5% to 39.1%) and for CF DT-LVAD recipients was 11.2% (95% confidence interval 4.8% to 17.6%). After PS matching of 39 patients from each treatment group, there was no significant difference in overall survival after 2 years (p = 0.346). In both unmatched and PS-matched analyses, CF DT-LVAD patients compared with ECCT had a significantly higher estimated glomerular filtration rate at 1 year but also had significantly higher hospital readmission rates. Stroke also more commonly occurred after CF DT-LVAD compared with ECCT (17 vs 5, unmatched; and 2 vs 1, PS matched). However, there was no significant difference between PS-matched groups in 2-year stroke-free survival (p = 0.371). In conclusion, ECCT and CF DT-LVAD in select patients are comparable therapies with respect to 2-year survival. "	"[Multilocus sequence typing analysis of enteropathogenic escherichia coli isolates in 8 provinces of China, 2006-2014]. To investigate the molecular typing feature of enteropathogenic Escherichia coli (EPEC) strains isolated from different reservoirs in eight provinces of China from 2006 to 2014. According to the time, place, reservoir, and PFGE pattern of the EPEC strains isolated from stools of humans with diarrhea, animal feces, and foods in eight provinces of China between 2006 and 2014, 149 EPEC strains were selected and characterized by multilocus sequence typing (MLST) using seven housekeeping genes provided by E.coli MLST database. Strain analysis demonstrated 56 different sequence types (STs). SeqMan II, MEGA 5.05, and eBURST V3 were applied to analyze the genetic relationships of domestic and forein existing 392 strains (243 EPEC strains included in the E.coli MLST database and 149 EPEC strains comprised in the present study). Among the 56 different STs, the prevalent ST was ST-40, which included 19 (19/149, 12.8%) isolates. Nineteen new STs were identified. Eleven new alleles were detected in six house-keeping genes (adk, fumC, gyrB, icd, mdh, and purA). Six STs were simultaneously detected among EPEC strains isolated from patients with diarrhea and animals. And these EPEC strains were all aEPEC strains. Two STs were simultaneously identified among EPEC strains isolated from patients with diarrhea and foods. Also, these EPEC strains were all aEPEC strains. 33 out of 173 STs were divided into five major clone complexes by eBURST, STC-29, STC-10, STC-20, STC-28, and STC-517. The remaining EPEC strains included in the other 140 STs were part of the other clone complexes or just were singletons. A high degree of phylogenetic heterogeneity was observed among the EPEC strains isolated in eight provinces of China. The EPEC strains with same STs of human isolates isolated from animal feces and foods were all aEPEC strains."	"Presence and Number of Lymph Node Metastases Are Associated With Compromised Survival for Patients Younger Than Age 45 Years With Papillary Thyroid Cancer. Cervical lymph node metastases are recognized as a prognostic indicator only in patients age 45 years or older with papillary thyroid cancer (PTC); patients younger than age 45 years are perceived to have low-risk disease. The current American Joint Committee on Cancer staging for PTC in patients younger than age 45 years does not include cervical lymph node metastases. Our objective was to test the hypothesis that the presence and number of cervical lymph node metastases have an adverse impact on overall survival (OS) in patients younger than age 45 years with PTC. Adult patients younger than age 45 years undergoing surgery for stage I PTC (no distant metastases) were identified from the National Cancer Data Base (NCDB; 1998-2006) and from SEER 1988-2006 data. Multivariable models were used to examine the association of OS with the presence of lymph node metastases and number of metastatic nodes. In all, 47,902 patients in NCDB (11,740 with and 36,162 without nodal metastases) and 21,855 in the SEER database (5,188 with and 16,667 without nodal metastases) were included. After adjustment, OS was compromised for patients with nodal metastases compared with patients who did not have them (NCDB: hazard ratio (HR), 1.32; 95% CI, 1.04 to 1.67; P = .021; SEER: HR, 1.29; 95% CI, 1.08 to 1.56; P = .006). After adjustment, increasing number of metastatic lymph nodes was associated with decreasing OS up to six metastatic nodes (HR, 1.12; 95% CI, 1.01 to 1.25; P = .03), after which more positive nodes conferred no additional mortality risk (HR, 0.99; 95% CI, 0.99 to 1.05; P = .75). Our results suggest that cervical lymph node metastases are associated with compromised survival in young patients, warranting consideration of revised American Joint Committee on Cancer staging. A change point of six or fewer metastatic lymph nodes seems to carry prognostic significance, thus advocating for rigorous preoperative screening for nodal metastases."	"In vitro acaricidal activity of ethanolic and aqueous floral extracts of Calendula officinalis against synthetic pyrethroid resistant Rhipicephalus (Boophilus) microplus. Detection of resistance levels against deltamethrin and cypermethrin in Rhipicephalus (Boophilus) microplus collected from Jammu (India) was carried out using larval packet test (LPT). The results showed the presence of resistance level II and I against deltamethrin and cypermethrin, respectively. Adult immersion test (AIT) and LPT were used to evaluate the in vitro efficacy of ethanolic and aqueous floral extracts of Calendula officinalis against synthetic pyrethroid resistant adults and larvae of R. (B.) microplus. Four concentrations (1.25, 2.5, 5 and 10 %) of each extract with four replications for each concentration were used in both the bioassays. A concentration dependent mortality was observed and it was more marked with ethanolic extract. In AIT, the LC50 values for ethanolic and aqueous extracts were calculated as 9.9 and 12.9 %, respectively. The egg weight of the live ticks treated with different concentrations of the ethanolic and aqueous extracts was significantly lower than that of control ticks; consequently, the reproductive index and the percent inhibition of oviposition values of the treated ticks were reduced. The complete inhibition of hatching was recorded at 10 % of ethanolic extract. The 10 % extracts caused 100 % mortality of larvae after 24 h. In LPT, the LC50 values for ethanolic and aqueous extracts were determined to be 2.6 and 3.2 %, respectively. It can be concluded that the ethanolic extract of C. officinalis had better acaricidal properties against adults and larvae of R. (B.) microplus than the aqueous extract."	"Anthelmintic efficacy of aqueous extract of Butea monosperma (Lam.) Kuntze against Haemonchus contortus of sheep and goats. Infection with Haemonchus contortus is one of the most important economic problems in small ruminants worldwide. Resistance development by parasites, drug residues in meat, toxicity, non-availability and high cost limit the usefulness of currently used synthetic drugs. Therefore, the present study was undertaken to evaluate in vitro anthelmintic efficacy of aqueous extract of seeds of Butea monosperma (Lam.) Kuntze against H. contortus. Phytochemical analysis of extract showed high concentration of phenolic (11.93 ± 0.64 mg of GAE/g of extract), flavonoids (238.17 ± 19.14 mg of quercetin/g extract) and tannin (10.80 ± 0.70 mg of GAE/g of extract) content. The observations revealed that parasites were sluggish and movement was little at 4 h post exposure of 25, 50 mg/ml and very sluggish in 100 mg/ml concentration. The extract showed complete mortality of the adult H. contortus worms at the concentrations of 100 mg/ml at the time exposure of 6 h and with the concentration of 50 mg/ml at the post exposure of 8 h. At 25 mg/ml concentration 50 % mortality was recorded at 6 h and complete at 8 h post exposure. The LC50 at 6 and 8 h were 45.20 and 17.50 mg/ml respectively. Levamisole at concentration of 0.5 mg/ml caused 50 % mortality at 2 h post exposure and full mortality at 4 h post exposure. These cidal effects may be due to presence of high phenolic, flavonoids and tannin content in the extract. The results confirm the aqueous extract of B. monosperma (Lam.) Kuntze on adult H. contortus worms. "	"Pathomorphological alterations associated with chicken coccidiosis in Jammu division of India. Pathomorphological alterations of chicken coccidiosis in Jammu division were undertaken in both organized and backyard chickens during the year 2010-2011. A total 240 intestines were examined from both organized farms and backyard chickens for histopathological studies. Out of 240 samples processed, 48 samples were found to be positive for coccidiosis with a prevalence of 20 %. Coccidiosis was initially diagnosed on the basis of faecal examination and confirmed by the presence of sporulated oocysts and pathomorphological alterations in intestines. Eimeria species were identified by morphometry. Five Eimeria species identified were Eimeria tenella, E. necatrix, E. maxima, E. acervulina and E. mitis. Histopathological lesions revealed loss of epithelial tissue, congestion of blood vessels which indicate disruption followed by haemorrhage, severe muscular oedema and necrosis of submucosa of intestine and caecum. There was loss of intestinal villi, disruption of caecal mucosa and clusters of oocysts seen. There was massive infiltration by heterophils and mononuclear cells. Several merozoites, schizonts and microgametes were found in the epithelial cells. "	"Fibrogenic Cell Plasticity Blunts Tissue Regeneration and Aggravates Muscular Dystrophy. Preservation of cell identity is necessary for homeostasis of most adult tissues. This process is challenged every time a tissue undergoes regeneration after stress or injury. In the lethal Duchenne muscular dystrophy (DMD), skeletal muscle regenerative capacity declines gradually as fibrosis increases. Using genetically engineered tracing mice, we demonstrate that, in dystrophic muscle, specialized cells of muscular, endothelial, and hematopoietic origins gain plasticity toward a fibrogenic fate via a TGFβ-mediated pathway. This results in loss of cellular identity and normal function, with deleterious consequences for regeneration. Furthermore, this fibrogenic process involves acquisition of a mesenchymal progenitor multipotent status, illustrating a link between fibrogenesis and gain of progenitor cell functions. As this plasticity also was observed in DMD patients, we propose that mesenchymal transitions impair regeneration and worsen diseases with a fibrotic component. "	"A New Paradigm to Mitigate Osteosarcoma by Regulation of MicroRNAs and Suppression of the NF-κB Signaling Cascade. Osteosarcoma (OS) is one of the most common malignant primary bone tumors and NF-κB appears to play a causative role, but the mechanisms are poorly understood. OS is one of the pleomorphic, highly metastasized and invasive neoplasm which is capable to generate osteoid, osteoclast and osteoblast matrix. Its high incidence has been reported in adolescent and childevrepen. Cell signal cascade is the pivotal functional mechanism acquired during the differentiation, proliferation, growth and survival of the cells in neoplasm including OS. The major limitation to the success of chemotherapy in OS is the development of multidevrepug resistance (Mdevrep). Answers to all such queries might come from the knock-in experiments in which the combined approach of miRNAs with NF-κB pathway is put into use. Abnormal miRNAs can modulate several epigenetical switching as a hallmark of number of diseases via different cell signaling. Studies on miRNAs have opened up the new avenues for both the diagnosis and treatment of cancers including OS. Collectively, through the present study an attempt has been made to establish a new systematic approach for the investigation of microRNAs, biophysiological factors and their target pairs with NF-κB to ameliorate oncogenesis with the &quot;bridge between miRNAs and NF-κB&quot;. The application of NF-κB inhibitors in combination with miRNAs is expected to result in a more efficient killing of the cancer stem cells and a slower or less likely recurrence of cancer. "	"No regularity singularities exist at points of general relativistic shock wave interaction between shocks from different characteristic families. We give a constructive proof that coordinate transformations exist which raise the regularity of the gravitational metric tensor from C<sup>0,1</sup> to C<sup>1,1</sup> in a neighbourhood of points of shock wave collision in general relativity. The proof applies to collisions between shock waves coming from different characteristic families, in spherically symmetric spacetimes. Our result here implies that spacetime is locally inertial and corrects an error in our earlier Proc. R. Soc. A publication, which led us to the false conclusion that such coordinate transformations, which smooth the metric to C<sup>1,1</sup>, cannot exist. Thus, our result implies that regularity singularities (a type of mild singularity introduced in our Proc. R. Soc. A paper) do not exist at points of interacting shock waves from different families in spherically symmetric spacetimes. Our result generalizes Israel's celebrated 1966 paper to the case of such shock wave interactions but our proof strategy differs fundamentally from that used by Israel and is an extension of the strategy outlined in our original Proc. R. Soc. A publication. Whether regularity singularities exist in more complicated shock wave solutions of the Einstein-Euler equations remains open."	"In vitro meat: A future animal-free harvest. In vitro meat production is a novel idea of producing meat without involving animals with the help of tissue engineering techniques. This biofabrication of complex living products by using various bioengineering techniques is a potential solution to reduce the ill effects of current meat production systems and can dramatically transform traditional animal-based agriculture by inventing &quot;animal-free&quot; meat and meat products. Nutrition-related diseases, food-borne illnesses, resource use and pollution, and use of farm animals are some serious consequences associated with conventional meat production methods. This new way of animal-free meat production may offer health and environmental advantages by reducing environmental pollution and resource use associated with current meat production systems and will also ensure sustainable production of designer, chemically safe, and disease-free meat as the conditions in an in vitro meat production system are controllable and manipulatable. Theoretically, this system is believed to be efficient enough to supply the global demand for meat; however, establishment of a sustainable in vitro meat production would face considerably greater technical challenges and a great deal of research is still needed to establish this animal-free meat culturing system on an industrial scale."	"Feasibility and barriers of treating clubfeet in four countries. The purpose of this study was to elucidate why neglected clubfeet still exists despite the availability of a highly (cost)-effective treatment-the Ponseti treatment. A qualitative and partly quantitative study with semi-structured interviews was conducted in four countries: the Netherlands, South Africa, Argentina and Indonesia with both caregivers, mostly parents, of children with clubfoot and practitioners treating clubfoot. The topics discussed with the caregivers (n = 51) were the conceptions of the cause of clubfeet, received information, accessibility, financial aspects, and social stigma. With the practitioners (n = 11) the focus of the interviews was the treatment protocol and finance. Several barriers towards the start of the treatment were highlighted. At all places treatment was financed by the government, insurance or charity. Nevertheless, the cost of transport and missed working days formed a barrier, although there is a large difference between and within countries. Poverty, long travel duration, and beliefs of supernatural causes for the clubfoot result in delay in the start of treatment. These are problems we need to address when making effective treatment available for every child to diminish the burden of neglected clubfoot; especially accessible clinics in rural areas can be a good alternative to highly specialized hospitals in large cities. We as a community should try to find and overcome the barriers to treat these patients, because we have a relatively easy and highly cost-effective treatment option which can be given by trained non-physicians supervised by an interested medical doctor."	"The novel inhibitor BRM270 downregulates tumorigenesis by suppression of NF-κB signaling cascade in MDR-induced stem like cancer-initiating cells. The nuclear factor κB (NF-κB) and interleukin-6 (IL-6) contribute to multidrug resistance (MDR) in tumor chemotherapy. The essential phenomenon of oncogenic activation of NF-κB in cancer-initiating cells showing MDR resulting from increased IL-6 expression is still unclear. Cancer stem cells (CSCs) have been the objective of intensive study. The aim of this study was to investigate the selective and potential efficacy of BRM270 against stem-like cancer-initiating cells (SLCICs) via the molecular mechanisms of its anticancer effects. Co-regulation of NF-κB and Cdk6 might be new arena to mitigate tumorigenesis. In the present study phyto-drug based approach provides a new avenue in understanding the amelioration and regulatory mechanisms in CSCs. In the present study, an in vivo tumor metastasis model of osteosarcoma was established by injecting Cal72 and SaOS-2 SLCICs into the right lower flank of nude mice. Later the development of tumor was analyzed by LICOR Biosciences (Pearl image analyzer). Significant suppression of activation of NF-κB and LPS-induced gene expression and apoptosis by BRM270 was confirmed by FACS, western blotting and qPCR. Further, both p65 and Cdk6 were significantly (P&lt;0.05) overexpressed in BRM270 non-treated Cal72 SLCICs compared to treated group. BRM270 directly dephosphorylated RelA and selectively inhibited NF-κB transcriptional activity, resulting in decreased expression of interleukin-6, a cytokine implicated in cancer metastasis. BRM270-mediated cell shrinkage, pyknosis, karyorrhexis and programmed cell death (PCD) were observed by Hoechst 33342 staining while flow cytometry analysis showed significant (P&lt;0.05) decrease in cell population from G0-G1 phases. These findings suggest that activation of the oncogenic Cdk6-NF-κB pathway, resulting from increased IL-6 expression, plays a central role in CD133 expressing SLCICs augmented MDR and neoplasia. This study proposes targeting of NF-κB, and Cdk6 with IL-6 as potential targets for PCD and treatment of chemotherapeutic resistance of CSCs to design novel therapies for their elimination."	"Muscle stem cell aging: regulation and rejuvenation. Aging is characterized by a progressive decline of physiological integrity leading to the loss of tissue function and vulnerability to disease, but its causes remain poorly understood. Skeletal muscle has an outstanding regenerative capacity that relies on its resident stem cells (satellite cells). This capacity declines with aging, and recent discoveries have redefined our view of why this occurs. Here, we discuss how an interconnection of extrinsic changes in the systemic and local environment and cell-intrinsic mechanisms might provoke failure of normal muscle stem cell functions with aging. We focus particularly on the emergent biology of rejuvenation of old satellite cells, including cells of geriatric age, by restoring traits of youthfulness, with the final goal of improving human health during aging. "	"Special issue: epigenetics: introduction. Epigenetic studies focus on changes in genetic information that rely on histone modification, which complements information encoded by the DNA sequence. Research in this rapidly expanding field has greatly contributed to a better understanding of processes such as gene regulation, chromatin structure, and cell differentiation and disease. The most recent advances in this area are reviewed in the collection of papers included in this Special Issue. "	"A singularly perturbed HIV model with treatment and antigenic variation. We study the long term dynamics and the multiscale aspects of a within-host HIV model that takes into account both mutation and treatment with enzyme inhibitors. This model generalizes a number of other models that have been extensively used to describe the HIV dynamics. Since the free virus dynamics occur on a much faster time-scale than cell dynamics, the model has two intrinsic time scales and should be viewed as a singularly perturbed system. Using Tikhonov's theorem we prove that the model can be approximated by a lower dimensional nonlinear model. Furthermore, we show that this reduced system is globally asymptotically stable by using Lyapunov's stability theory. "	"Nuclear accumulation of mRNAs underlies G4C2-repeat-induced translational repression in a cellular model of C9orf72 ALS. A common feature of non-coding repeat expansion disorders is the accumulation of RNA repeats as RNA foci in the nucleus and/or cytoplasm of affected cells. These RNA foci can be toxic because they sequester RNA-binding proteins, thus affecting various steps of post-transcriptional gene regulation. However, the precise step that is affected by C9orf72 GGGGCC (G4C2) repeat expansion, the major genetic cause of amyotrophic lateral sclerosis (ALS), is still poorly defined. In this work, we set out to characterise these mechanisms by identifying proteins that bind to C9orf72 RNA. Sequestration of some of these factors into RNA foci was observed when a (G4C2)31 repeat was expressed in NSC34 and HeLa cells. Most notably, (G4C2)31 repeats widely affected the distribution of Pur-alpha and its binding partner fragile X mental retardation protein 1 (FMRP, also known as FMR1), which accumulate in intra-cytosolic granules that are positive for stress granules markers. Accordingly, translational repression is induced. Interestingly, this effect is associated with a marked accumulation of poly(A) mRNAs in cell nuclei. Thus, defective trafficking of mRNA, as a consequence of impaired nuclear mRNA export, might affect translation efficiency and contribute to the pathogenesis of C9orf72 ALS. "	"Ultradiscrete kinks with supersonic speed in a layered crystal with realistic potentials. In this paper we develop a dynamical model of the propagating nonlinear localized excitations, supersonic kinks, in the cation layer in a silicate mica crystal. We start from purely electrostatic Coulomb interaction and add the Ziegler-Biersack-Littmark short-range repulsive potential and the periodic potential produced by other atoms of the lattice. The proposed approach allows the construction of supersonic kinks which can propagate in the lattice within a large range of energies and velocities. Due to the presence of the short-range repulsive component in the potential, the interparticle distances in the lattice kinks with high energy are limited by physically reasonable values. The introduction of the periodic lattice potential results in the important feature that the kinks propagate with the single velocity and single energy, which are independent on the excitation conditions. The unique average velocity of the supersonic kinks on the periodic substrate potential we relate with the kink amplitude of the relative particle displacements, which is determined by the interatomic distance corresponding to the minimum of the total, interparticle plus substrate, lattice potential. The found kinks are ultradiscrete and can be described with the &quot;magic wave number&quot; q=2π/3a, which was previously revealed in the nonlinear sinusoidal waves and supersonic kinks in the Fermi-Pasta-Ulam lattice. The extreme discreteness of the observed supersonic kinks, with basically two particles moving at the same time, allows the detailed interpretation of their double-kink structure, which is not possible for the multikinks without an account for the lattice discreteness. Analytical calculations of the displacement patterns and energies of the supersonic kinks are confirmed by numerical simulations. The computed energy of the found supersonic kinks in the considered realistic lattice potential is in a good agreement with the experimental evidence for the transport of localized energetic excitations in silicate mica crystals between the points of ^{40}K recoil and subsequent sputtering. "	"Strategy for enhancing adenosine production under the guidance of transcriptional and metabolite pool analysis. To rationally identify targets for enhancing adenosine production, transcription level of genes involved in adenosine synthesis of Bacillus subtilis XGL was detected during the fermentation process, complemented with metabolite pool analysis. PurR-regulated genes (pur operon and purA) and prs were down-regulated and 5-phosphoribosyl 1-pyrophosphate (PRPP) decreased considerably after 24 h when adenosine significantly accumulated. Since PRPP could strongly antagonize the binding of PurR to its targets, it was inferred that down-regulation of pur operon and purA might be due to a low PRPP pool, which was confirmed by metabolite analysis. So desensitized prs responsible for PRPP synthesis was overexpressed, resulting in increased PRPP concentration and pur operon transcription. To further enhance the adenosine production, desensitized purF and prs were co-overexpressed with integrating additional copy of purA to B. subtilis XGL genome, resulting in 24.3 % (1.29 g/g DCW) higher adenosine production than that by B. subtilis XG. Overexpression of prs, purF and purA under the guidance of transcriptional and metabolite pool analysis significantly increased adenosine production. Strategies used in this study have potential applications for rational modification of industrial microorganisms."	"Prevalence of poultry coccidiosis in Jammu region of Jammu &amp; Kashmir State. In this study prevalence of chicken coccidiosis in Jammu division were undertaken in both organized and backyard chickens during the year 2010-2011, with an overall prevalence of 39.58 % on examination of 720 faecal samples. Five Eimeria species were identified viz., E. tenella, E. necatrix, E. maxima, E. acervulina and E. mitis. E. tenella was the predominant species in both organized and unorganized farms. The highest prevalence percentage was found in July, 2011 (68.9 %) and the lowest percentage was found in May, 2011 (12.5 %). Coccidial prevalence was found to be 53.61 % in unorganized (backyard poultry birds) as compared to organized birds (25.55 %). Maximum positive cases of coccidian infection was found in monsoon season (60.55 %) and least in summer season (21.66 %). Birds of age 31-45 days showed more prevalence percentage (58.86 %). Higher oocysts count was recorded from July to September with a peak value (38973.00 ± 3075.6) in July and lowest (12914.00 ± 595.48) in the month of May. "	"Haematobiochemical parameters of goats fed tannin rich Psidium guajava and Carissa spinarum against Haemonchus contortus infection in India. The antihelminthic properties of tannin-rich plants are being explored as an alternative to chemical drugs to minimise the effects of gastro intestinal nematodes (GIN). The present study was, therefore, conducted to investigate the effect of condensed tannins (CT), obtained from regional tanniferous tree leaves, in the Haemonchus contortus infected goats on the heamatobiochemical parameters to assess the goat health. Twelve adult male goats were randomly divided into three equal groups, namely negative control, infected control and treatment. H. contortus infected goats were allocated into infected control and treatment groups and their feeds contained 0 and 1.96 % of CT, respectively. Feeding trial was conducted for the duration of 90 days during which haematological and serum biochemical parameters were monitored on fortnightly basis. The animals ingesting the CT-rich leaf meal mixture had increased levels of haemoglobin, packed cell volume, total protein, globulin, glucose and calcium, and decreased levels of blood urea; indicating a beneficial effect of CT supplementation at the selected level. However, the phosphorus balance, serum albumin levels and serum enzyme activity were not affected significantly. The study revealed that inclusion of CT in the diets of the adult male goats did not pose any threat to the health of the goats. Further, the CT based diet had beneficial impact on the haematological parameters and could therefore be included in small ruminant diets to minimize the impact of GIN. "	"Hepatotoxicity Induced by Subchronic Exposure of Fluoride and Chlorpyrifos in Wistar Rats: Mitigating Effect of Ascorbic Acid. The aim of the study was to investigate the ameliorative properties of ascorbic acid against the subchronic effect of co-exposure of fluoride (F) and chlorpyrifos (CPF) on oxidative damage markers such as lipid peroxidation (MDA) and antioxidant defense system in the liver of adult Wistar rats. The animal groups were provided with either vehicle or ascorbic acid (60 mg/kg, b.w.) or NOAEL dose of fluoride (1 ppm) or CPF (1 mg/kg, b.w.) or ten times of such doses orally alone and in combination or pre-treated with ascorbic acid along with co-exposure of F and CPF every consecutive day for 28 days. Hepatic damage marker analysis in blood revealed that aspartate and alanine aminotransferases, alkaline phosphatase, and lactate dehydrogenase were significantly (P &lt; 0.05) increased with single or combined exposure of F or CPF at either dose levels. Significant increased oxidative damage of hepatocytes as indicated by increased MDA levels with decrease in tissue ascorbate and free radical scavenging enzymes like catalase, superoxide dismutase, and glutathione peroxidase was observed in groups treated with either F or CPF as well as in combinedly treated animals as compared to control animals. Supplementation of ascorbic acid restored the hepatic specific marker enzymes in blood following co-exposure of F and CPF at lower doses which were otherwise increased in the F and CPF co-exposed rats. The results show that ascorbic acid supplementation with F and CPF prevents or diminishes the hepatic damage in rats co-exposed to toxicants and may act as a putative protective agent against toxicant-induced liver tissue injury. "	"Phenotypic Characterization and Multivariate Analysis to Explain Body Conformation in Lesser Known Buffalo (Bubalus bubalis) from North India. Phenotypic characterization and body biometric in 13 traits (height at withers, body length, chest girth, paunch girth, ear length, tail length, length of tail up to switch, face length, face width, horn length, circumference of horn at base, distances between pin bone and hip bone) were recorded in 233 adult Gojri buffaloes from Punjab and Himachal Pradesh states of India. Traits were analysed by using varimax rotated principal component analysis (PCA) with Kaiser Normalization to explain body conformation. PCA revealed four components which explained about 70.9% of the total variation. First component described the general body conformation and explained 31.5% of total variation. It was represented by significant positive high loading of height at wither, body length, heart girth, face length and face width. The communality ranged from 0.83 (hip bone distance) to 0.45 (horn length) and unique factors ranged from 0.16 to 0.55 for all these 13 different biometric traits. Present study suggests that first principal component can be used in the evaluation and comparison of body conformation in buffaloes and thus provides an opportunity to distinguish between early and late maturing to adult, based on a small group of biometric traits to explain body conformation in adult buffaloes. "	"Phase information of time-frequency transforms as a key feature for classification of atrial fibrillation episodes. Patients suffering from atrial fibrillation can be classified into different subtypes, according to the temporal pattern of the arrhythmia and its recurrence. Nowadays, clinicians cannot differentiate a priori between the different subtypes, and patient classification is done afterwards, when its clinical course is available. In this paper we present a comparison of classification performances when differentiating paroxysmal and persistent atrial fibrillation episodes by means of support vector machines. We analyze short surface electrocardiogram recordings by extracting modulus and phase features from several time-frequency transforms: short-time Fourier transform, Wigner-Ville, Choi-Williams, Stockwell transform, and general Fourier-family transform. Overall, accuracy higher than 81% is obtained when classifying phase information features of real test ECGs from a heterogeneous cohort of patients (in terms of progression of the arrhythmia and antiarrhythmic treatment) recorded in a tertiary center. Therefore, phase features can facilitate the clinicians' choice of the most appropriate treatment for each patient by means of a non-invasive technique (the surface ECG). "	"Association Between Serum 25-Hydroxy Vitamin D Levels and Blood Pressure Among Adolescents in Two Resource-Limited Settings in Peru. Serum 25-hydroxyvitamin D (25OHD) deficiency (&lt;50 nmol/l or 20 ng/ml) has been associated with increased blood pressure (BP) in observational studies. A paucity of data on this relationship is available in Latin American or child populations. This study investigates the association between 25OHD levels and BP in adolescents at risk for vitamin D deficiency in 2 Peruvian settings. In a population-based study of 1,441 Peruvian adolescents aged 13-15 years, 1,074 (75%) provided a serum blood sample for 25OHD analysis and BP measurements. Relationships between 25OHD and BP metrics were assessed using multiple linear regressions, adjusted for anthropometrics and sociodemographic factors. 25OHD deficiency was associated with an elevated diastolic BP (DBP) (1.09 mm Hg increase, 95% confidence interval: 0.04 to 2.14; P = 0.04) compared to nondeficient adolescents. Systolic BP (SBP) trended to increase with vitamin D deficiency (1.30 mm Hg increase, 95% confidence interval: -0.13 to 2.72; P = 0.08). Mean arterial pressure (MAP) was also greater in adolescents with 25OHD (1.16 mm Hg increase, 95% confidence interval: 0.10 to 2.22; P = 0.03). SBP was found to demonstrate a U-shaped relationship with 25OHD, while DBP and MAP demonstrated inverse J-shaped relationships with serum 25OHD status. The association between 25OHD deficiency and BP was not different across study sites (all P ≥ 0.19). Adolescents deficient in 25OHD demonstrated increased DBP and MAP and a trend toward increased SBP, when compared to nondeficient subjects. 25OHD deficiency early in life was associated with elevated BP metrics, which may predispose risk of hypertension later in adulthood."	"Evaluation of hematocrit interference with MyStar extra and seven competitive devices. In previous studies, meters employing dynamic electrochemistry (DE), have been shown to correct for hematocrit (HCT) interference. This laboratory investigation assessed the HCT stability of MyStar Extra (Sanofi) in comparison to 7 competitive devices (Accu-Chek Aviva Nano &amp; Accu-Chek Performa, Roche Diagnostics; Contour XT and Contour Link, Bayer; FreeStyle Freedom Lite, Abbott; MyLife Pura, Ypsomed; OneTouch Verio Pro, LifeScan). Venous heparinized blood was freshly drawn, immediately aliquoted, and manipulated to contain 3 different blood glucose concentrations (50-80 mg/dL, 150-180 mg/dL, and 350-400 mg/dL) and 5 different HCT levels (20-25%, 30-35%, 40-45%, 50-55%, and 60-65%). After careful oxygenation to normal blood oxygen pressure, each of the 15 different samples was measured 8 times with 2 devices and 2 strip lots of each meter (32 measurements/meter/sample). YSI Stat 2300 served as laboratory reference method. Next to determination of the mean absolute relative deviation (MARD), stability to HCT influence was assumed, when less than 10% difference occurred between the highest and lowest mean glucose deviations in relation to HCT over all tested glucose ranges (HIF: hematocrit interference factor). Four of the devices showed stable performance: Contour XT (MARD: 1.3%/HIF: 6.1%), MyStar Extra (4.7%/7.1%), OneTouch Verio Pro (4.5%/7.3%), and Contour Link (6.3%/9.3%). The 4 other meters were influenced by HCT (Accu-Chek Performa: 4.7%/20.9%, Accu-Chek Aviva Nano: 4.5%/22.4%, FreeStyle Freedom Lite: 4.8%/24.5%; MyLife Pura: 6.4%/28.7%). In this study, all meters showed a good accuracy, but only 50% of them, including MyStar Extra, were shown to reliably correct for potential hematocrit influence on the meter results. "	"Generation and evaluation of virulence attenuated mutants of Edwardsiella tarda as vaccine candidates to combat edwardsiellosis in flounder (Paralichthys olivaceus). Edwardsiella tarda is an intracellular pathogen that causes edwardsiellosis in fish. The development of a live attenuated vaccine may be an effective approach for preventing this disease in fish. In this study, we introduced deletions of esrB, esaC, evpH, rpoS, and purA into the E. tarda LSE40ΔaroA strain, thereby generating five double-gene mutants (ΔaroAΔesrB, ΔaroAΔesaC, ΔaroAΔrpoS, ΔaroAΔevpH, and ΔaroAΔpurA) and two triple-gene mutants (ΔaroAΔesrBΔevpH and ΔaroAΔesaCΔevpH). When blue gourami (Trichogaster trichopterus) was used as a fish model for the primary screening and evaluation of the vaccine candidates, all mutants were attenuated significantly by more than 2 to 3 logs in terms of the 50% lethal dose (LD(50)). Five double-gene mutants yielded relative percentage survival (RPS) rates of 26.1-82.6% after challenge with wild-type E. tarda. The ΔaroAΔesrB mutant that conferred the highest RPS (82.6%) in blue gourami was also evaluated in flounder (Paralichthys olivaceus). After vaccination via intramuscular (i.m.) injection or immersion, this mutant could persist in the flounder for 14-35 days and it induced higher serum antibody titers than the control fish (P &lt; 0.01). Flounder vaccinated via i.m. injection at doses of 10(3)-10(7) CFU/fish had RPS rates of 14.3-66.7% after i.m. challenge with 10(4) CFU/fish using wild-type E. tarda. Flounder vaccinated via immersion at a dose of 10(7) CFU/ml exhibited 100% RPS against immersion challenge with 10(7) CFU/ml using wild-type E. tarda. These results indicate that the ΔaroAΔesrB mutant could be used as an effective live vaccine to combat edwardsiellosis in flounder."	"Large-scale discovery of novel genetic causes of developmental disorders. Despite three decades of successful, predominantly phenotype-driven discovery of the genetic causes of monogenic disorders, up to half of children with severe developmental disorders of probable genetic origin remain without a genetic diagnosis. Particularly challenging are those disorders rare enough to have eluded recognition as a discrete clinical entity, those with highly variable clinical manifestations, and those that are difficult to distinguish from other, very similar, disorders. Here we demonstrate the power of using an unbiased genotype-driven approach to identify subsets of patients with similar disorders. By studying 1,133 children with severe, undiagnosed developmental disorders, and their parents, using a combination of exome sequencing and array-based detection of chromosomal rearrangements, we discovered 12 novel genes associated with developmental disorders. These newly implicated genes increase by 10% (from 28% to 31%) the proportion of children that could be diagnosed. Clustering of missense mutations in six of these newly implicated genes suggests that normal development is being perturbed by an activating or dominant-negative mechanism. Our findings demonstrate the value of adopting a comprehensive strategy, both genome-wide and nationwide, to elucidate the underlying causes of rare genetic disorders. "	"In vitro evaluation of ethanolic extracts of Ageratum conyzoides and Artemisia absinthium against cattle tick, Rhipicephalus microplus. In vitro efficacy of ethanolic extracts obtained from the aerial parts of Ageratum conyzoides and Artemisia absinthium was assessed on Rhipicephalus microplus using adult immersion test (AIT). Five concentrations of the extract (1.25%, 2.5%, 5%, 10%, and 20%) with three replications for each concentration were used in the bioassay. In AIT, the maximum mortality was recorded as 40% and 66.7% at 20% concentration for A. conyzoides and A. absinthium, respectively. Acaricidal activity was found to be higher in the extract of A. absinthium with LC50 and LC95 values of 11.2% and 61.7%, respectively. Egg mass weight of the live ticks treated with different concentrations of the extracts was significantly (P&lt;0.05) lower than that of control ticks; consequently, the reproductive index and oviposition values of the treated ticks were reduced significantly (P&lt;0.05). The A. conyzoides inhibited 90% hatching of eggs at the 20% concentration, whereas A. absinthium showed 100% inhibition at 5%, 10%, and 20% concentrations. The results show that A. absinthium has better acaricidal properties than A. conyzoides and could be useful in controlling R. microplus."	"In vitro acaricidal activity of Atropa belladonna and its components, scopolamine and atropine, against Rhipicephalus (Boophilus) microplus. In vitro efficacy of methanolic extract of Atropa belladonna and its components scopolamine and atropine was assessed against Rhipicephalus (Boophilus) microplus. Five concentrations of the extract (1.25%, 2.5%, 5%, 10%, and 20%) were used whereas scopolamine and atropine were each tested at 0.1%. In adult immersion test, the extract was lethal to ticks at 20% concentration. The LC50 and LC95 values were determined as 6.875% and 17.306%, respectively. The extract caused a significant reduction (P &lt; 0.05) in egg mass production at 10% concentration. In larval packet test, the extract was lethal to larvae in the concentrations of 10% and 20% after 24 h, with LC50 and LC95 values of 1.321% and 4.935%, respectively. Scopolamine and atropine showed 93.3% and 60.0% mortality of adult ticks, respectively, but they caused complete (100%) blocking of hatching as well as 100% larval mortality. Scopolamine and atropine were observed to be more potent than the crude extract at an equivalent concentration in both the bioassays."	"Dielectric function of dense plasmas, their stopping power, and sum rules. Mathematical, particularly, asymptotic properties of the random-phase approximation, Mermin approximation, and extended Mermin-type approximation of the coupled plasma dielectric function are analyzed within the method of moments. These models are generalized for two-component plasmas. Some drawbacks and advantages of the above models are pointed out. The two-component plasma stopping power is shown to be enhanced with respect to that of the electron fluid."	"Effects of left ventricular assist device support on biomarkers of cardiovascular stress, fibrosis, fluid homeostasis, inflammation, and renal injury. The purpose of this study was to examine changes in a broad panel of biomarkers following left ventricular assist device (LVAD) support in advanced heart failure (HF). LVAD therapy mechanically unloads the failing heart and may result in reversal of certain aspects of the end-stage HF phenotype. Changes in markers of myocardial stress, fibrosis, inflammation, fluid homeostasis, and renal injury in this setting are unknown. Amino-terminal pro-B-type natriuretic peptide (NT-proBNP), galectin-3, ST2, copeptin, growth differentiation factor (GDF)-15, C-reactive protein (CRP), and neutrophil gelatinase associated lipocalin (NGAL) levels were measured in frozen plasma collected from 37 individuals prior to continuous flow LVAD implantation and a median of 136 (interquartile range: 94 to 180) days after implantation. The median age of patients was 68 years old. LVAD therapy was associated with significant decreases in NT-proBNP (3,093 to 2,090 pg/ml; p = 0.02), ST2 (67.5 to 45.2 ng/ml, p &lt;0.01), galectin-3 (24.7 to 22.0 ng/ml; p = 0.04), GDF-15 (3,232 to 2,613 ng/l;p &lt;0.001), hs-CRP (22.4 to 11.9 mg/l; p = 0.01), and copeptin (103 to 94 pmol/l; p = 0.003) but not NGAL (132 to 135 ng/ml; p = 0.06). Despite improvement over time, absolute values of each biomarker remained extremely abnormal. Greater reductions in biomarkers were noted in individuals with &gt;25% decrease in NT-proBNP concentrations but reached statistical significance only in the case of galectin-3 (p = 0.01). The biomarker profile in patients after LVAD placement improves but nonetheless remains significantly abnormal. Our results suggest the need for targeted therapeutic interventions to mitigate such abnormalities and potentially increase rates of myocardial recovery."	"Mutations in PURA cause profound neonatal hypotonia, seizures, and encephalopathy in 5q31.3 microdeletion syndrome. 5q31.3 microdeletion syndrome is characterized by neonatal hypotonia, encephalopathy with or without epilepsy, and severe developmental delay, and the minimal critical deletion interval harbors three genes. We describe 11 individuals with clinical features of 5q31.3 microdeletion syndrome and de novo mutations in PURA, encoding transcriptional activator protein Pur-α, within the critical region. These data implicate causative PURA mutations responsible for the severe neurological phenotypes observed in this syndrome. "	"Malignant struma ovarii: a population-level analysis of a large series of 68 patients. Malignant struma ovarii (MSO) is a germ cell tumor of the ovary histologically identical to differentiated thyroid cancers. There is a paucity of data on this neoplasm, with fewer than 200 reported cases. The primary objective of this study was to examine the survival rate of women diagnosed with MSO using data from the Surveillance, Epidemiology, and End RESULTS (SEER) database. Secondary objectives were to describe the demographic, clinical, pathologic, and treatment characteristics of this population. A retrospective analysis was performed of prospectively collected cancer registry data. A total of 68 patients were identified in the SEER database, 1973-2011. The chi-square test, Student's t-test, and Kaplan-Meier curves were employed for data analyses. All 68 patients were females with a mean age at diagnosis of 43.0 years. Nearly 33% underwent unilateral oophorectomy, 28.6% bilateral oophorectomy, and 28.6% oophorectomy and omentectomy, and 4.8% were treated with debulking surgery. Pelvic radiation was administered to 12.3% of patients. The mean tumor size was 52.8 mm; 80% of malignant struma ovarii were SEER staged as local. Overall survival rates at 5, 10, and 20 years were 96.7%, 94.3%, and 84.9% respectively. Among the patients, there were six deaths recorded; only one was attributed to MSO. Six individuals (8.8%) had a concomitant or subsequent diagnosis of thyroid cancer. Four patients underwent total thyroidectomy, three patients had radioactive iodine, and one patient underwent external beam radiation. Two thirds of thyroid cancers extended outside the thyroid gland. All six patients with thyroid cancer were alive at the end of follow-up. It was observed that patients with malignant struma ovarii had an excellent disease-specific survival rate, regardless of the management strategy employed. However, MSO patients had a high risk for developing aggressive thyroid cancers. Therefore, MSO patients may benefit from routine thyroid imaging once the diagnosis of MSO is established."	"Collective coordinates theory for discrete soliton ratchets in the sine-Gordon model. A collective coordinate theory is developed for soliton ratchets in the damped discrete sine-Gordon model driven by a biharmonic force. An ansatz with two collective coordinates, namely the center and the width of the soliton, is assumed as an approximated solution of the discrete nonlinear equation. The dynamical equations of these two collective coordinates, obtained by means of the generalized travelling wave method, explain the mechanism underlying the soliton ratchet and capture qualitatively all the main features of this phenomenon. The numerical simulation of these equations accounts for the existence of a nonzero depinning threshold, the nonsinusoidal behavior of the average velocity as a function of the relative phase between the harmonics of the driver, the nonmonotonic dependence of the average velocity on the damping, and the existence of nontransporting regimes beyond the depinning threshold. In particular, it provides a good description of the intriguing and complex pattern of subspaces corresponding to different dynamical regimes in parameter space. "	"Whole exome sequencing in family trios reveals de novo mutations in PURA as a cause of severe neurodevelopmental delay and learning disability. De novo mutations are emerging as an important cause of neurocognitive impairment, and whole exome sequencing of case-parent trios is a powerful way of detecting them. Here, we report the findings in four such trios. The Deciphering Developmental Disorders study is using whole exome sequencing in family trios to investigate children with severe, sporadic, undiagnosed developmental delay. Three of our patients were ascertained from the first 1133 children to have been investigated through this large-scale study. Case 4 was a phenotypically isolated case recruited into an undiagnosed rare disorders sequencing study. Protein-altering de novo mutations in PURA were identified in four subjects. They include two different frameshifts, one inframe deletion and one missense mutation. PURA encodes Pur-α, a highly conserved multifunctional protein that has an important role in normal postnatal brain development in animal models. The associated human phenotype of de novo heterozygous mutations in this gene is variable, but moderate to severe neurodevelopmental delay and learning disability are common to all. Neonatal hypotonia, early feeding difficulties and seizures, or 'seizure-like' movements, were also common. Additionally, it is suspected that anterior pituitary dysregulation may be within the spectrum of this disorder. Psychomotor developmental outcomes appear variable between patients, and we propose a possible genotype-phenotype correlation, with disruption of Pur repeat III resulting in a more severe phenotype. These findings provide definitive evidence for the role of PURA in causing a variable syndrome of neurodevelopmental delay, learning disability, neonatal hypotonia, feeding difficulties, abnormal movements and epilepsy in humans, and help clarify the role of PURA in the previously described 5q31.3 microdeletion phenotype."	"Impact of extent of surgery on survival for papillary thyroid cancer patients younger than 45 years. Papillary thyroid cancer (PTC) patients &lt;45 years old are considered to have an excellent prognosis; however, current guidelines recommend total thyroidectomy for PTC tumors &gt;1.0 cm, regardless of age. Our objective was to examine the impact of extent of surgery on overall survival (OS) in patients &lt;45 years old with stage I PTC of 1.1 to 4.0 cm. Adult patients &lt;45 years of age undergoing surgery for stage I PTC were identified from the National Cancer Data Base (NCDB, 1998-2006) and the Surveillance, Epidemiology, and End RESULTS dataset (SEER, 1988-2006). Multivariable modeling was used to compare OS for patients undergoing total thyroidectomy vs lobectomy. In total, 29 522 patients in NCDB (3151 lobectomy, 26 371 total thyroidectomy) and 13 510 in SEER (1379 lobectomy, 12 131 total thyroidectomy) were included. Compared with patients undergoing lobectomy, patients having total thyroidectomy more often had extrathyroidal and lymph node disease. At 14 years, unadjusted OS was equivalent between total thyroidectomy and lobectomy in both databases. After adjustment, OS was similar for total thyroidectomy compared with lobectomy across all patients with tumors of 1.1 to 4.0 cm (NCDB: hazard ratio = 1.45 [confidence interval = 0.88-2.51], P = 0.19; SEER: 0.95 (0.70-1.29), P = 0.75) and when stratified by tumor size: 1.1 to 2.0 cm (NCDB: 1.12 [0.50-2.51], P = 0.78; SEER: 0.95 [0.56-1.62], P = 0.86) and 2.1 to 4.0 cm (NCDB: 1.93 [0.88-4.23], P = 0.10; SEER: 0.94 [0.60-1.49], P = 0.80). After adjusting for patient and clinical characteristics, total thyroidectomy compared with thyroid lobectomy was not associated with improved survival for patients &lt;45 years of age with stage I PTC of 1.1 to 4.0 cm. Additional clinical and pathologic factors should be considered when choosing extent of resection."	"Epidemiology of paramphistomosis in sheep and goats in Jammu, India. Epidemiology of paramphistomosis in sheep and goats was studied using field and abattoir samples at Jammu, India. Abattoir examination revealed that 36.2 % of sheep and 30.9 % of goats were positive for paramphistomosis. The mean worm counts (±SEM) were 23.5 ± 5.7 in sheep and 19.9 ± 3.5 in goats. On coprological examination, 16.3 % of sheep and 13.6 % of goats were found positive for paramphistomosis. The mean egg counts (±SEM) were 4.4 ± 2.6 in sheep and 3.6 ± 2.1 in goats. Season was found to have a significant (p &lt; 0.05) influence on the prevalence of paramphistomosis. A higher percentage of animals were found positive in rainy and post-rainy seasons as compared with summer and winter seasons. The distributions of eggs and adult flukes were significantly (p &lt; 0.01) different among seasons. The prevalences observed according to age and sex of sheep and goats were not significant. The study conclude that the late summer months are major risk period for paramphistomosis in the pasture grazing sheep and goats and the administration of an efficient anthelmintic in May-June and September-October should be strongly recommended to reduce the infection and minimise the perpetuating financial losses to animal owners in the region. "	"Occurrence of Chrysomya bezziana in a buffalo in Jammu. Cutaneous myiasis caused by the Old World screw-worm fly, Chrysomya bezziana, is a commonly occurring infestation of livestock and man in Southeast Asian and African countries. A buffalo, aged five years was presented with traumatic wound in the abnormal growth at the base of tail, housing maggots in it. Based on morphological features, the collected larvae were identified as C. bezziana larvae. The first ever occurrence of C. bezziana in a buffalo from this part of country and its public health significance have been discussed. "	"Sex reversal syndrome in the horse: four new cases of feminization in individuals carrying a 64,XY SRY negative chromosomal complement. Horses are characterized as having a greater rate of chromosomal abnormalities than other species, which are mainly related to the sex chromosome pair and produce a series of different anomalies known as disorders in sexual development (DSD). In the present study, three Pura Raza Española (PRE) and one Menorquín (MEN) horses were studied and an incompatibility in their genetic and phenotypic sex were detected. Animals were karyotyped by conventional and molecular cytogenetic analyses and characterized using genomic techniques. Although all individuals, were totally unrelated, these animals had the same abnormality (64,XY SRY negative DSD) despite having an anatomically normal external mare phenotype. Therefore, this syndrome could remain undiagnosed in a large percentage of cases because the physiological and morphological symptoms are rare. In the present study, a slight gonadal dysgenesis was observed only in older individuals. Interestingly this chromosomal abnormality has been previously reported less than twenty times, and never in the PRE or MEN horses. With the present research, it is demonstrated that the use of genetic and cytogenetic diagnostic tools in veterinary practice could be an important complementary test to determine the origin of unexplained reproductive failures among horses. "	"Extent of surgery for papillary thyroid cancer is not associated with survival: an analysis of 61,775 patients. To examine the association between the extent of surgery and overall survival in a large contemporary cohort of patients with papillary thyroid cancer (PTC). Guidelines recommend total thyroidectomy for PTC tumors &gt;1 cm, based on older data demonstrating an overall survival advantage for total thyroidectomy over lobectomy. Adult patients with PTC tumors 1.0-4.0 cm undergoing thyroidectomy in the National Cancer Database, 1998-2006, were included. Cox proportional hazards models were applied to measure the association between the extent of surgery and overall survival while adjusting for patient demographic and clinical factors, including comorbidities, extrathyroidal extension, multifocality, nodal and distant metastases, and radioactive iodine treatment. Among 61,775 PTC patients, 54,926 underwent total thyroidectomy and 6849 lobectomy. Compared with lobectomy, patients undergoing total thyroidectomy had more nodal (7% vs 27%), extrathyroidal (5% vs 16%), and multifocal disease (29% vs 44%) (all Ps &lt; 0.001). Median follow-up was 82 months (range, 60-179 months). After multivariable adjustment, overall survival was similar in patients undergoing total thyroidectomy versus lobectomy for tumors 1.0-4.0 cm [hazard ratio (HR) = 0.96; 95% confidence interval (CI), 0.84-1.09); P = 0.54] and when stratified by tumor size: 1.0-2.0 cm [HR = 1.05; 95% CI, 0.88-1.26; P = 0.61] and 2.1-4.0 cm [HR = 0.89; 95% CI, 0.73-1.07; P = 0.21]. Older age, male sex, black race, lower income, tumor size, and presence of nodal or distant metastases were independently associated with compromised survival (P &lt; 0.0001). Current guidelines suggest total thyroidectomy for PTC tumors &gt;1 cm. However, we did not observe a survival advantage associated with total thyroidectomy compared with lobectomy. These findings call into question whether tumor size should be an absolute indication for total thyroidectomy."	"Longitudinal prevalence, faecal shedding and molecular characterisation of Campylobacter spp. and Salmonella enterica in sheep. Faecal excretion of Campylobacter spp. and Salmonella enterica in sheep in Australia was determined using a quantitative multiplex PCR (qPCR) targeting the Campylobacter spp. purine biosynthesis gene (PurA) and the S. enterica outer membrane protein (ompF). The mutiplex qPCR was specific and Campylobacter spp. and S. enterica were each detected with a sensitivity of 5 organisms/µL faecal DNA extract. This multiplex qPCR was used to determine the prevalence and concentration of Campylobacter spp. and S. enterica in 3412 faecal samples collected from 1189 lambs on eight farms across South Australia (n = 2 farms), New South Wales (n = 1), Victoria (n = 2) and Western Australia (n = 3) at three sampling periods (weaning, post-weaning and pre-slaughter). The overall prevalences of Campylobacter spp. and S. enterica were 13.3% and 5.0%, respectively, with the highest prevalence for Campylobacter spp. in South Australia and the highest prevalence for S. enterica in New South Wales. Campylobacter jejuni was the only Campylobacter sp. identified from a subset of 120 positive samples sequenced at the 16S locus. S. enterica serovar Typhimurium was the only serovar of S. enterica identified from a subset of 120 positive samples sequenced at the ompF locus. Across all states, Campylobacter spp. had the highest median bacterial concentration in faeces at weaning and post-weaning (medians of 3.4 × 10(6) and 1.1 × 10(5), respectively), whereas S. enterica had the highest median bacterial concentration at pre-slaughter (1.8 × 10(5)/g faeces)."	"Technetium-99m-methylene Diphosphonate Uptake in Hepatic Necrosis Secondary to Respiratory Failure. Tc-99m methylene diphosphonate (MDP) bone scintigraphy has long been used for the evaluation of benign as well as malignant skeletal conditions. However, non-osseous tracer uptake on a bone scan is an unusual finding. On one hand, there is a need for awareness of the pathophysiologic basis underlying such uptake, as it may be of critical clinical relevance in the evaluation of the patient. On the other hand, some alterations in biodistribution may be of little clinical significance, but have deleterious consequences on the quality of the bone study. Recognition of these abnormalities will reduce errors and provide important clinical information. We described a case of 57-year-old male patient with history of carcinoma base of tongue, where a 99mTc-MDP bone Scintigraphy was performed for metastasis survey. It revealed avascular necrosis of head of right femur. In addition incidentally demonstrated diffuse increased pathologic uptake of Tc-99m-MDP in the liver and multiple foci in bilateral lungs. This article reviews several possible reasons for such diffuse hepatic uptake. In the present case diffuse hepatic necrosis secondary to respiratory failure due to bilateral miliary pulmonary metastasis is considered to be the cause of the diffuse liver uptake of 99mTc-MDP. "	"Vida PURA: A Cultural Adaptation of Screening and Brief Intervention to Reduce Unhealthy Drinking Among Latino Day Laborers. Brief intervention is known to reduce drinking in primary care; however, because health care access is limited for Latino immigrants, traditional brief interventions are unlikely to reach this population. Using Barrera and Castro's framework, our study aims to culturally adapt a screening and brief intervention program to reduce unhealthy alcohol use among Latino day laborers, a particularly vulnerable group of Latino immigrant men. We conducted 18 interviews with Latino day laborers and 13 interviews with mental health and substance use providers that serve Latino immigrant men. Interviews were conducted until saturation of themes was reached. Themes from interviews were used to identify sources of mismatch between traditional screening and brief intervention in our target population. Unhealthy alcohol use was common, culturally accepted, and helped relieve immigration-related stressors. Men had limited knowledge about how to change their behavior. Men preferred to receive information from trusted providers in Spanish. Men faced significant barriers to accessing health and social services but were open to receiving brief interventions in community settings. Findings were used to design Vida PURA, a preliminary adaptation design of brief intervention for Latino day laborers. Key adaptations include brief intervention at a day labor worker center provided by promotores trained to incorporate the social and cultural context of drinking for Latino immigrant men. Culturally adapted brief intervention may help reduce unhealthy drinking in this underserved population."	"Generation and Evaluation of a Genome-Scale Metabolic Network Model of Synechococcus elongatus PCC7942. The reconstruction of genome-scale metabolic models and their applications represent a great advantage of systems biology. Through their use as metabolic flux simulation models, production of industrially-interesting metabolites can be predicted. Due to the growing number of studies of metabolic models driven by the increasing genomic sequencing projects, it is important to conceptualize steps of reconstruction and analysis. We have focused our work in the cyanobacterium Synechococcus elongatus PCC7942, for which several analyses and insights are unveiled. A comprehensive approach has been used, which can be of interest to lead the process of manual curation and genome-scale metabolic analysis. The final model, iSyf715 includes 851 reactions and 838 metabolites. A biomass equation, which encompasses elementary building blocks to allow cell growth, is also included. The applicability of the model is finally demonstrated by simulating autotrophic growth conditions of Synechococcus elongatus PCC7942. "	"Cutaneous images of interest of fascioliasis from India. NA"	"[Effects from the Person Centered-Care Model on quality of life of cognitive impaired persons from gerontological centers]. The Model of Person Centered Care has attracted increasing interest for use in gerontology centers. Therefore, the contributions about its impact are scarce in our context. The objective of this paper is to establish the impact that the interventions associated with the Model of Person Centered Care in the «Etxean Ondo» Project have on the quality of life of residents with cognitive impairment. One hundred and ninetten residents with cognitive impairment were selected: 59 in the control group and 60 in the experimental group. Subjects in each group were sorted by cognitive impairment: mild or severe. Changes were implemented in the physical and organizational environments for the promotion of autonomy and wellbeing. Quality of life was assessed before and 6 months after intervention using the Fumat Scales (mild cognitive impairment) and Qualid (severe cognitive impairment). The t-Student test was used for comparison of means. In intergroup comparisons, significant differences in the Fumat Scale for the control group with mild cognitive impairment were initially identified. These differences were not recorded in the post assessment. The experimental group with severe cognitive impairment was significantly improved in the Qualid Scale post assessment. In intragroup comparisons, significant improvements were evident in the quality of life of experimental subjects, both with severe cognitive impairment (Qualid) and mild (Fumat). The findings support the effectiveness of the interventions and identify methodological and conceptual issues that have been considered to analyze the Model of Person Centered Care efects."	"Adipokine zinc-α2-glycoprotein regulated by growth hormone and linked to insulin sensitivity. Hypertrophic obesity is associated with impaired insulin sensitivity and lipid-mobilizing activity of zinc-α2-glycoprotein. Adipose tissue (AT) of growth hormone (GH) -deficient patients is characterized by extreme adipocyte hypertrophy due to defects in AT lipid metabolism. It was hypothesized that zinc-α2-glycoprotein is regulated by GH and mediates some of its beneficial effects in AT. AT from patients with GH deficiency and individuals with obesity-related GH deficit was obtained before and after 5-year and 24-month GH supplementation therapy. GH action was tested in primary human adipocytes. Relationships of GH and zinc-α2-glycoprotein with adipocyte size and insulin sensitivity were evaluated in nondiabetic patients with noncancerous cachexia and hypertrophic obesity. AT in GH-deficient adults displayed a substantial reduction of zinc-α2-glycoprotein. GH therapy normalized AT zinc-α2-glycoprotein. Obesity-related relative GH deficit was associated with almost 80% reduction of zinc-α2-glycoprotein mRNA in AT. GH increased zinc-α2-glycoprotein mRNA in both AT of obese men and primary human adipocytes. Interdependence of GH and zinc-α2-glycoprotein in regulating AT morphology and metabolic phenotype was evident from their relationship with adipocyte size and AT-specific and whole-body insulin sensitivity. The results demonstrate that GH is involved in regulation of AT zinc-α2-glycoprotein; however, the molecular mechanism linking GH and zinc-α2-glycoprotein in AT is yet unknown."	"Could the heat sink effect of blood flow inside large vessels protect the vessel wall from thermal damage during RF-assisted surgical resection? To assess by means of computer simulations whether the heat sink effect inside a large vessel (portal vein) could protect the vessel wall from thermal damage close to an internally cooled electrode during radiofrequency (RF)-assisted resection. First,in vivo experiments were conducted to validate the computational model by comparing the experimental and computational thermal lesion shapes created around the vessels. Computer simulations were then carried out to study the effect of different factors such as device-tissue contact, vessel position, and vessel-device distance on temperature distributions and thermal lesion shapes near a large vessel, specifically the portal vein. The geometries of thermal lesions around the vessels in the in vivo experiments were in agreement with the computer results. The thermal lesion shape created around the portal vein was significantly modified by the heat sink effect in all the cases considered. Thermal damage to the portal vein wall was inversely related to the vessel-device distance. It was also more pronounced when the device-tissue contact surface was reduced or when the vessel was parallel to the device or perpendicular to its distal end (blade zone), the vessel wall being damaged at distances less than 4.25 mm. The computational findings suggest that the heat sink effect could protect the portal vein wall for distances equal to or greater than 5 mm, regardless of its position and distance with respect to the RF-based device."	"Treatment patterns and outcomes for patients with adrenocortical carcinoma associated with hospital case volume in the United States. Adrenocortical carcinoma (ACC) is a rare, aggressive disease with no apparent change in treatment or survival in the United States over the past two decades. Our objective was to determine whether treatment patterns or clinical outcomes vary by hospital case volume. Patients with ACC were identified from the National Cancer Database (1998-2011). High-volume centers (HVCs) were defined by a case load of ≥4 cases of primary adrenal malignancy annually, which corresponded to the 90th percentile. All other facilities were considered low-volume centers (LVCs). A total of 2,765 ACC patients were treated across 1,046 facilities. Compared to patients treated at LVCs, patients treated at HVCs were younger (50 vs. 54 years), with larger tumors (11.2 vs. 10.5 cm), and underwent higher rates of surgery (78.8 vs. 73.4 %), radical resection (17.3 vs. 13.9 %), regional lymph node evaluation (23.2 vs. 18.8 %), and chemotherapy including mitotane (43.8 vs. 31.0 %, all p &lt; 0.05).There were no significant differences in median length of stay (5 vs. 5 days), 30-day readmission rates (4.0 % for HVCs vs. 3.9 % for LVCs), or 30-day postoperative mortality rates (1.9 % for HVCs vs. 3.7 % for LVCs). Median overall survival was 2.0 years for HVCs and 1.9 years for LVCs, p = 0.53. After adjusting for patient and tumor characteristics, overall survival did not differ significantly between patients treated at HVCs versus LVCs [HR = 0.89 (95 % confidence interval 0.70, 1.12)]. Treatment at HVCs was associated with more aggressive surgical resection and chemotherapy use. Prognosis remained poor despite more aggressive treatment."	"Prevalence and risk factors for allergic rhinitis in two resource-limited settings in Peru with disparate degrees of urbanization. Allergic rhinitis is a disease with a high global disease burden, but risk factors that contribute to this condition are not well understood. To assess the prevalence and risk factors of allergic rhinitis in two Peruvian populations with disparate degrees of urbanization. We conducted a population-based, cross-sectional study on 1441 children aged 13-15 years at enrollment (mean age 14.9 years, 51% boys) to investigate the prevalence of allergic disease. We used a standardized, Spanish validated questionnaire to determine the prevalence of allergic rhinitis and asked about sociodemographics and family history of allergies. Children also underwent spirometry, exhaled nitric oxide, allergy skin testing to 10 common household allergens and provided a blood sample for measurement of 25OH vitamin D and total serum IgE. Overall prevalence of allergic rhinitis was 18% (95% CI 16% to 20%). When stratified by site, the prevalence of allergic rhinitis was 23% Lima vs. 13% in Tumbes (P &lt; 0.001); however, this difference was no longer significant after controlling for subject-specific factors (P = 0.95). There was a strong association with other allergic diseases: 53% of children with asthma had allergic rhinitis vs. 15% in those without asthma (P &lt; 0.001) and 42% of children with eczema vs. 17% of those without eczema (P &lt; 0.001). Important risk factors for allergic rhinitis were parental rhinitis (adjusted OR = 3.0, 95% CI 1.9-4.7 for 1 parent and adjusted OR = 4.4, 95% CI 1.5-13.7 for 2 parents); allergic sensitization to common household aeroallergens (1.6, 1.1-2.3); being overweight (1.5, 1.0-2.3); exhaled nitric oxide ≥ 20 ppb (1.9, 1.3-2.7); and total serum IgE ≥ 95th percentile (2.4, 1.2-4.8). Population attributable risk of important factors for allergic rhinitis were 25% for high exhaled nitric oxide, 22% for allergic sensitization to common household aeroallergens, 22% for paternal rhinitis, 10% for being overweight and 7% for an elevated total serum IgE. Allergic rhinitis was prevalent in both settings, and important risk factors include elevated exhaled nitric oxide, allergic sensitization to common household aeroallergens, parental rhinitis, being overweight and high total serum IgE. When considering subject-specific factors, the difference in prevalence between the urban and rural settings became non-important."	"Practical procedure for discriminating monofloral honey with a broad pollen profile variability using an electronic tongue. Colour and floral origin are key parameters that may influence the honey market. Monofloral light honey are more demanded by consumers, mainly due to their flavour, being more valuable for producers due to their higher price when compared to darker honey. The latter usually have a high anti-oxidant content that increases their healthy potential. This work showed that it is possible to correctly classify monofloral honey with a high variability in floral origin with a potentiometric electronic tongue after making a preliminary selection of honey according their colours: white, amber and dark honey. The results showed that the device had a very satisfactory sensitivity towards floral origin (Castanea sp., Echium sp., Erica sp., Lavandula sp., Prunus sp. and Rubus sp.), allowing a leave-one-out cross validation correct classification of 100%. Therefore, the E-tongue shows potential to be used at analytical laboratory level for honey samples classification according to market and quality parameters, as a practical tool for ensuring monofloral honey authenticity. "	"Acaricidal activity of ethanolic extract of Artemisia absinthium against Hyalomma anatolicum ticks. The aim of the study was to evaluate the in vitro efficacy of different concentrations of ethanolic extract obtained from the aerial parts of Artemisia absinthium in comparison to amitraz on adults, eggs and larvae of Hyalomma anatolicum using the adult immersion test (AIT), egg hatchability test and larval packet test (LPT), respectively. Four concentrations of the extract (2.5, 5, 10 and 20%) with three replications for each concentration were used in all the bioassays. In AIT, the mortality rates at 2.5, 5 and 10% were significantly different (p &lt; 0.05) in comparison to the control group; however, at 20%, it was similar to the positive control group. Maximum mortality of 86.7% was recorded at 20%. The LC50 and LC95 values were calculated as 6.51 and 55.43%, respectively. The oviposition was reduced significantly by 36.8 and 59.1% at concentrations of 10 and 20%, respectively. Egg hatchability was reduced significantly at all concentrations (2.5-20%) in comparison to the control. In LPT, the extract caused 100% mortality of larvae at all the concentrations after 24 h. The results show that ethanolic extract obtained from the aerial parts of A. absinthium has acaricidal properties and could be useful in controlling H. anatolicum."	"Occurrence and histopathology of Przhevalskiana silenus larvae infestation in sheep of Jammu, India. Warble fly infestation is primarily a myiasis of cattle and goat. However, a nondescript sheep from an endemic region was observed with nodules under subcutaneous tissue. So, this paper reports infestation of a sheep with Przhevalskiana silenus larvae in Jammu region of North India. The myiasis was confirmed with parasite morphology and specific histopathological changes observed in cutaneous myiasis. "	"Computed tomography correlates with cardiopulmonary hemodynamics in pulmonary hypertension in adults with sickle cell disease. Our objective was to determine whether computed tomography angiography (CTA) measurements of pulmonary artery size can noninvasively assess hemodynamics and diagnose pulmonary hypertension (PH) secondary to sickle cell disease (SCD). Twenty SCD patients with confirmed PH were compared with 20 matched controls. Diameters of the pulmonary artery trunk and branches were measured with CTA and a semiautomatic segmentation algorithm. Measurements were normalized by body size and correlated (Spearman rank) with hemodynamic markers from right-heart catheterization. Receiver operating characteristic (ROC) curves were used to investigate the role of pulmonary artery sizes in diagnosing PH. Analysis of pulmonary artery sizes adjusted for body surface area (BSA) resulted in the most significant discrimination between subjects with PH secondary to SCD and controls (P &lt; 0.001); PH was diagnosed accurately with an area under the ROC curve of 0.99. There was significant correlation between pulmonary artery sizes and body mass index (BMI) and BSA only in controls (r = 0.46-0.68, P &lt; 0.04 for all). The most significant correlations with hemodynamic markers were found between BMI-adjusted pulmonary artery sizes and high systolic pulmonary arterial pressure, high pulmonary vascular resistance, high systemic vascular resistance, and low cardiac output (r = 0.47, 0.62, 0.61, and 0.66, respectively; P &lt; 0.04 for all). BMI-adjusted CTA measures of the pulmonary artery relate to high pulmonary vascular resistance and reduced cardiac output in patients with SCD and PH. CTA with quantitative image analysis is a powerful noninvasive diagnostic tool for PH in SCD and shows promise as estimator of hemodynamic markers. "	"Robotic thyroidectomy for cancer in the US: patterns of use and short-term outcomes. We describe nationally representative patterns of utilization and short-term outcomes from robotic versus open thyroidectomy for thyroid cancer. Descriptive statistics and multivariable analysis were used to analyze patterns of use of robotic thyroidectomy from the National Cancer Database (2010-2011). Short-term outcomes were compared between patients undergoing robotic versus open thyroidectomy, while adjusting for confounders. A total of 68,393 patients with thyroid cancer underwent thyroidectomy; 225 had robotic surgery and 57,729 underwent open surgery. Robotic thyroid surgery use increased by 30 % from 2010 to 2011 (p = 0.08). Robotic cases were reported from 93 centers, with 89 centers performing &lt;10 robotic cases. Compared with the open group, the robotic group was younger (51 vs. 47 years; p &lt; 0.01) and included more Asian patients (4 vs. 8 %; p = 0.006) and privately-insured patients (68 vs. 77 %; p = 0.01). Tumor size was similar between patients undergoing robotic versus open surgery. Total thyroidectomy was performed less frequently in the robotic group (67 vs. 84 % open; p &lt; 0.0001). Patients were relatively more likely to undergo robotic surgery if they were female (odds ratio [OR] 1.6; p = 0.04), younger (OR 0.8/10 years; p &lt; 0.0001), or underwent lobectomy (OR 2.4; p &lt; 0.0001). In adjusted multivariable analysis, there were no differences in the number of lymph nodes removed or length of stay between groups; however, there was a non-significant increase in the incidence of positive margins with robotic thyroidectomy. Use of robotic thyroidectomy for thyroid cancer is limited to a few institutions, with short-term outcomes that are comparable to open surgery. Multi-institutional studies should be undertaken to compare thyroidectomy-specific complications and long-term outcomes."	"Four new bioluminescent taxa of Mycena sect. Calodontes from Peninsular Malaysia. Three new species and one new variety of bioluminescent Mycena collected from Peninsular Malaysia are described herein. All new species belong to Mycena sect. Calodontes in what is known as the Mycena pura complex. Comprehensive descriptions, photographs, illustrations and comparisons with phenetically similar species are provided. Molecular sequences data from the nuclear internal transcribed spacers (ITS-1 and ITS-2, including the 5.8S rRNA) were used to infer relationships within sect. Calodontes. Axenic cultures were obtained to provide data on culture morphology. This is the first published photographic documentation of bioluminescent basidiomes of members of Mycena sect. Calodontes. Also, this addition brings the total known bioluminescent fungi to 77 species. "	"Neural network for estimating energy expenditure in paraplegics from heart rate. The aim of the present study is to obtain models for estimating energy expenditure based on the heart rates of people with spinal cord injury without requiring individual calibration. A cohort of 20 persons with spinal cord injury performed a routine of 10 activities while their breath-by-breath oxygen consumption and heart rates were monitored. The minute-by-minute oxygen consumption collected from minute 4 to minute 7 was used as the dependent variable. A total of 7 features extracted from the heart rate signals were used as independent variables. 2 mathematical models were used to estimate the oxygen consumption using the heart rate: a multiple linear model and artificial neural networks. We determined that the artificial neural network model provided a better estimation (r=0.88, MSE=4.4 ml · kg(-1) · min(-1)) than the multiple linear model (r=0.78; MSE=7.63 ml · kg(-1) · min(-1)).The goodness of fit with the artificial neural network was similar to previous reported linear models involving individual calibration. In conclusion, we have validated the use of the heart rate to estimate oxygen consumption in paraplegic persons without individual calibration and, under this constraint, we have shown that the artificial neural network is the mathematical tool that provides the better estimation. "	"Impact of extent of surgery on survival in patients with small nonfunctional pancreatic neuroendocrine tumors in the United States. Nonfunctional pancreatic neuroendocrine tumors (PNETs) ≤2 cm have uncertain malignant potential, and optimal treatment remains unclear. Objectives of this study were to better understand their malignant potential, determine whether extent of surgery or lymph node dissection is associated with overall survival (OS), and identify other factors associated with OS. Patients with nonfunctional PNETs ≤2 cm were identified from the National Cancer Data Base (1998 to 2011). Descriptive statistics were used for patient characteristics and surgical resection patterns. Five-year OS was estimated using Kaplan-Meier analyses across extent of surgery and compared using the log-rank test. Cox proportional regression modeling was used to test the association between survival and extent of surgery. A total of 1854 patients with nonfunctional PNETs ≤2 cm were included. From 1998 to 2011, these tumors increased three-fold as a proportion of all PNETs. Among tumors ≤0.5 cm, 33 % presented with regional lymph node metastases and 11 % with distant metastases. Five-year OS for patients not undergoing surgery was 27.6 % vs. 83.0 % for partial pancreatectomy, 72.3 % for pancreaticoduodenectomy, and 86.0 % for total pancreatectomy (p &lt; 0.01). Multivariate analysis demonstrated no difference in OS based on type of surgery or the addition of regional lymphadenectomy (p = 0.16). Younger age and later year of diagnosis were independently associated with improved survival. Small nonfunctional PNETs represent an increasing proportion of all PNETs and have a significant risk of malignancy. Survival is improving over time despite older age at diagnosis. Type of surgical resection and the addition of lymph node resection were not associated with OS."	"Identification of a secondary promoter of CASP8 and its related transcription factor PURα. Caspase-8 (CASP8) is an essential initiator of apoptosis and is associated with many diseases in humans including esophageal squamous cell carcinoma. CASP8 produces a variety of transcripts, which might perform distinct functions. However, the cis and trans transcriptional determinants that control CASP8 expression remain poorly defined. Using a series of luciferase reporter assays, we identified a novel secondary promoter of CASP8 within chr2: 202,122,236 to 202,123,227 and 25 kb downstream of the previously described CASP8 promoter. ENCODE ChIP-seq data for this novel promoter region revealed several epigenetic features, including high levels of histone H3 lysine 27 acetylation and lysine 4 methylation, as well as low levels of CpG island methylation. We developed a mass spectrometry based strategy to identify transcription factors that contribute to the function of the secondary promoter. We found that the transcription activator protein PURα is specifically involved in the transcriptional activation of the secondary promoter and may exert its function by forming a complex with E2F-1 and RNA polymerase II. PURα can bind to both DNA and RNA, and functions in the initiation of DNA replication, regulation of transcription. We observed that knockdown of PURα expression decreased the transcriptional activity of the secondary promoter and mRNA expression of CASP8 isoform G. Although the physiologic roles of this secondary promoter remain unclear, our data may help explain the complexity of CASP8 transcription and suggest that the various caspase 8 isoforms may have distinct regulations and functions."	"Non-crystallographic nets: characterization and first steps towards a classification. Non-crystallographic (NC) nets are periodic nets characterized by the existence of non-trivial bounded automorphisms. Such automorphisms cannot be associated with any crystallographic symmetry in realizations of the net by crystal structures. It is shown that bounded automorphisms of finite order form a normal subgroup F(N) of the automorphism group of NC nets (N, T). As a consequence, NC nets are unstable nets (they display vertex collisions in any barycentric representation) and, conversely, stable nets are crystallographic nets. The labelled quotient graphs of NC nets are characterized by the existence of an equivoltage partition (a partition of the vertex set that preserves label vectors over edges between cells). A classification of NC nets is proposed on the basis of (i) their relationship to the crystallographic net with a homeomorphic barycentric representation and (ii) the structure of the subgroup F(N). "	"Dicrocoeliosis in goats in Jammu, India. The prevalence of dicrocoeliosis was estimated by the examination of liver of slaughtered goats (n = 228) brought from two major goat rearing regions (Kandi and R.S. Pura) of Jammu province of India. Dicrocoelium dendriticum was found in 18.9 % of the goats, with mean fluke count (±SEM) of 24.9 ± 4.4 (ranged from 0 to 478). A significant seasonal variation (p &lt; 0.01) was recorded with maximum prevalence in winter (28.9 %), followed by post-rainy (22.2 %) and minimum in rainy season (9.4 %). The highest fluke count was observed in January (47.8 ± 24.6) while none of the examined animals was found positive in May and June. The origin of the goats had a significant association (p &lt; 0.0001) with prevalence rates and the goats from Kandi region (27.3 %) showed higher prevalence rates as compare to R.S. Pura (8.0 %). However, the age and sex had no significant effect on the prevalence of dicrocoeliosis in goats. The histopathological examination of infected livers revealed excessive thickening and proliferation of bile duct glandular epithelium with inflammatory exudates. Also, intense mononuclear cells infiltration with young fibroblasts was observed in the surroundings of bile ducts in portal areas along with atrophy of hepatocytes. "	"Paneer-An Indian soft cheese variant: a review. Paneer, a popular indigenous dairy product of India, is similar to an unripened variety of soft cheese which is used in the preparation of a variety of culinary dishes and snacks. It is obtained by heat and acid coagulation of milk, entrapping almost all the fat, casein complexed with denatured whey proteins and a portion of salts and lactose. Paneer is marble white in appearance, having firm, cohesive and spongy body with a close-knit texture and a sweetish-acidic-nutty flavour. Preparation of paneer using different types of milk and varied techniques results in wide variation in physico-chemical, microbiological and sensory quality of the product. Paneer blocks of required size are packaged in laminated plastic pouches, preferably vacuum packaged, heat sealed and stored under refrigeration. Paneer keeps well for about a day at ambient temperature and for about a week under refrigeration (7 °C). The spoilage of paneer is mainly due to bacterial action. Successful attempts have been made to enhance the shelf life of paneer. This review deals with the history, method of manufacture, factors affecting the quality, physico-chemical changes during manufacture, chemical composition and nutritional profile, packaging and shelf life of paneer. "	"Single-cultivar extra virgin olive oil classification using a potentiometric electronic tongue. Label authentication of monovarietal extra virgin olive oils is of great importance. A novel approach based on a potentiometric electronic tongue is proposed to classify oils obtained from single olive cultivars (Portuguese cvs. Cobrançosa, Madural, Verdeal Transmontana; Spanish cvs. Arbequina, Hojiblanca, Picual). A meta-heuristic simulated annealing algorithm was applied to select the most informative sets of sensors to establish predictive linear discriminant models. Olive oils were correctly classified according to olive cultivar (sensitivities greater than 97%) and each Spanish olive oil was satisfactorily discriminated from the Portuguese ones with the exception of cv. Arbequina (sensitivities from 61% to 98%). Also, the discriminant ability was related to the polar compounds contents of olive oils and so, indirectly, with organoleptic properties like bitterness, astringency or pungency. Therefore the proposed E-tongue can be foreseen as a useful auxiliary tool for trained sensory panels for the classification of monovarietal extra virgin olive oils. "	"The lateralized smell test for detecting Alzheimer's disease: failure to replicate. A widely publicized study by Stamps, Bartoshuk and Heilman (2013) reported that a simple measure of left:right naris differences in the ability to detect the odor of peanut butter is a sensitive marker of Alzheimer's disease (AD). AD patients were said to have abnormal smell function on the left side of the nose and normal function on right side of the nose. In light of its implications for medical practice and the world-wide publicity that it engendered, we sought to replicate and expand this work. Two studies were performed. In the first, 15 AD patients were tested according to the procedures described by Stamps et al. in which the nostril contralateral to the tested side was occluded by the patient using lateral pressure from the index finger. Since this can potentially distort the contralateral naris, we repeated the testing using tape for naris occlusion. In the second, 20 AD patients were administered 20 odors of the University of Pennsylvania Smell Identification Test (UPSIT) to each side of the nose, with the contralateral naris being closed with tape. In both studies, the order of the side of testing was systematically counterbalanced. No evidence of a left:right asymmetry on any test measure was observed. Although hyposmia is well-established in AD, no meaningful asymmetry in smell perception is apparent. If olfactory function on the right side of the nose was normal as claimed, then AD patients should exhibit normal function when tested bilaterally, a phenomenon not seen in dozens of AD-related olfactory studies."	"Synthesis of 5-arylidine amino-1,3,4-thiadiazol-2-[(N-substituted benzyol)]sulphonamides endowed with potent antioxidants and anticancer activity induces growth inhibition in HEK293, BT474 and NCI-H226 cells. A series of imines 5-amino-1,3,4-thiadiazol-2-[(N-substituted benzyol)]sulphonamide derivatives were synthesized from various aromatic aldehydes and substituted with benzoyl acetazolamides under different reaction conditions and were evaluated for their antioxidant and free radical scavenging, antimitotic activity by Allium cepa meristem root model and cytotoxicity activity against HEK 293 (human epidermal kidney cell line), BT474 (breast cancer cell line) and NCI-H226 (lung cancer cell line) by MTT assay. Some of the synthesized compounds showed moderately potent cytotoxicity compared to indisulam. A series of imines 5-amino-1,3,4-thiadiazol-2-[(N-substituted benzyol)]sulphonamide derivatives (9a-j); 5-amino-1,3,4-thiadiazol-2-[N-(substituted benzoyl)]sulphonamide (4a-g); 5-(4-acetamido phenyl sulphonamido)-1,3,4-thiadiazol-2-[N-(substituted benzoyl)]sulphonamide (6a-g); and 5-(4-amino phenyl sulphonamido)-1,3,4-thiadiazol-2-[N-(substituted benzoyl)]sulphonamide (7a-g) were synthesized from acetazolamide and were investigated for the in vitro anticancer by MTT assay, free radical scavenging and antimitotic activity by Allium cepa root meristem model. Experimental observations indicate that synthesized compounds were moderately potent anticancer agents."	"Patterns of recurrence after trimodality therapy for esophageal cancer. Patterns of failure after neoadjuvant chemoradiotherapy and surgery for esophageal cancer are poorly defined. All patients in the current study were treated with trimodality therapy for nonmetastatic esophageal cancer from 1995 to 2009. Locoregional failure included lymph node failure (NF), anastomotic failure, or both. Abdominal paraaortic failure (PAF) was defined as disease recurrence at or below the superior mesenteric artery. Among 155 patients, the primary tumor location was the upper/middle esophagus in 18%, the lower esophagus in 32%, and the gastroesophageal junction in 50% (adenocarcinoma in 79% and squamous cell carcinoma in 21%) of patients. Staging methods included endoscopic ultrasound (73%), computed tomography (46%), and positron emission tomography/computed tomography (54%). Approximately 40% of patients had American Joint Committee on Cancer stage II disease and 60% had stage III disease. The median follow-up was 1.3 years. The 2-year locoregional control, event-free survival, and overall survival rates were 86%, 36%, and 48%, respectively. The 2-year NF rate was 14%, the isolated NF rate was 3%, and the anastomotic failure rate was 6%. The 2-year PAF rate was 9% and the isolated PAF rate was 5%. PAF was found to be increased among patients with gastroesophageal junction tumors (12% vs 6%), especially for the subset with ≥ 2 clinically involved lymph nodes at the time of diagnosis (19% vs 4%). Few patients experience isolated NF or PAF as their first disease recurrence. Therefore, it is unlikely that targeting additional regional lymph node basins with radiotherapy would significantly improve clinical outcomes."	"2013 Annual National Digital Rectal Exam Day: impact on prostate health awareness and disease detection. &quot;Mag-paDRE&quot; is a yearly prostate health public awareness program initiated by the Philippine Urological Association. This study aimed to describe the demographic and clinical data of the participants in the 2013 &quot;Mag-paDRE&quot; program and to identify factors that will further improve prostate health public awareness. A descriptive cross-sectional study undertaken to collect and assess the demographic data, International Prostate Symptom Score (IPSS) and digital rectal examination findings of the participants in the &quot;Mag-paDRE&quot; conducted in the 10 Philippine Board of Urology (PBU) different accredited training institutions. Descriptive statistics was used to report the proportion of Filipino men aged 40 or older who presented for their first prostate health evaluation. Clinical profile were reviewed and summarized. The study protocol was registered in the Clinicaltrial.gov under Identifier NCT01886547. A total of 925 participants from the 10 PBU accredited training institutions were assessed. Among the 10 training institutions the large tertiary government owned medical center had the highest number of participants and target participants recruited; while the private sectors owned tertiary hospitals have the highest proportion of target participants and cases. According to the predetermined definition of this study, 614 (66%) were considered the target population for the &quot;Mag-paDRE&quot; program. The mean age of the target participants was 58.9±9.9. Only 360 of 614 (59%) were new case, 118 (32.7%) had severe lower urinary tract symptoms (LUTS), 223 (62%) had moderate LUTS, 19 (5.3%) were asymptomatic but with hard prostates, palpable prostate nodules or prostate tenderness. The most bothersome symptoms were incomplete bladder emptying (30.2%), and frequency (22.9%). Overall, the 2013 &quot;Mag-paDRE&quot; among the 10 training institutions was effective in promoting prostate health awareness. A need to modify the preactivity information dissemination by these institutions can be done to further increase the attendance of targeted population of the prostate health awareness program."	"Modelling genetic evaluation for dressage in Pura Raza Español horses with focus on the rider effect. The most popular use of the Pura Raza Español horse in sport is for dressage competitions. Tests on young sport horses were first established in 2004 in Spain to collect data for the genetic evaluation of this breed's suitability for dressage. The aim of this study was to compare eight different models to find out the most appropriate way to include the rider in the genetic evaluation of dressage. A progressive removal of systematic effects from model was also analysed. A total of 8867 performance records collected between 2004 and 2011 from 1234 horses aged between 4 and 6 years old were used. The final score in the dressage test was used as the performance trait. The pedigree matrix contained 8487 individuals. A BLUP animal model was applied using a Bayesian approach with TM software. The horse's age, gender, travelling time, training level, stud of birth and event were included as systematic effects in all the models. Apart from the animal and residual effects that were present in all models, different models were compared combining random effects such as the rider, match (i.e. rider-horse interaction) and permanent environmental effects. A cross-validation approach was used to evaluate the models' prediction ability. The best model included the permanent environmental, rider and match random effects. As far as systematic effects are concerned, the event or the stud of birth was essential effects needed to fit the data."	"25-hydroxy vitamin D levels are associated with childhood asthma in a population-based study in Peru. Vitamin D deficiency may be associated with an increased risk of asthma. We studied the association between 25-hydroxy (25-OH) vitamin D deficiency and asthma prevalence in two Peruvian populations close to the equator but with disparate degrees of urbanization. We conducted a population-based study in 1441 children in two communities in Peru, of which 1134 (79%) provided a blood sample for 25-OH vitamin D analysis. In these 1134 children, mean age was 14.8 years; 52% were boys; asthma and atopy prevalence was 12% in Lima vs. 3% in Tumbes (P &lt; 0.001) and 59% in Lima vs. 41% in Tumbes (P &lt; 0.001), respectively; and, mean 25-OH vitamin D level was 20.8 ng/mL in Lima vs. 30.1 ng/mL in Tumbes (P &lt; 0.001). Prevalence of 25-OH vitamin D deficiency (&lt; 20 ng/mL) was 47% in Lima vs. 7% in Tumbes (P &lt; 0.001). In multi-variable logistic regression, we found that lower 25-OH vitamin D levels were associated with an increased odds of asthma (OR = 1.7 per each 10 ng/mL decrease in 25-OH vitamin D levels, 95% CI 1.2-2.6; P &lt; 0.01). In stratified analyses, the association between lower 25-OH vitamin D levels and asthma was limited to children with atopy (OR = 2.2, 95% CI 1.3-3.6) and not in those without atopy (OR = 0.9, 95% CI 0.5-2.0). We did not find associations between 25-OH vitamin D levels and other clinical biomarkers for asthma, including exhaled nitric oxide, total serum IgE and pulmonary function. Both asthma and 25-OH vitamin D deficiency were common among children living in Lima (latitude = 12.0 °S) but not among those in Tumbes (3.6 °S). The relationship between 25-OH vitamin D deficiency and asthma was similar in both sites and was limited among children with atopy. Future supplementation trials may need to consider stratification by atopy at the time of design."	"Effect of ambient storage on the quality characteristics of aerobically packaged fish curls incorporated with different flours. The present study was conducted to evaluate the effect of ambient storage on the quality attributes of aerobically packaged fish curls incorporated with optimum levels of different flours. The curls were developed by extrusion technology using fish meat (Catla catla). The fish curls containing optimum levels of different flours viz. 20 percent corn flour, 10 percent black gram flour and 10 percent peanut flour were compared with the control snacks containing 30 percent rice flour and assessed for storage quality and shelf life at ambient temperature. The curls were aerobically packaged in LDPE (low density polyethylene) pouches and evaluated for various physicochemical, microbiological and sensory parameters. Mean values of pH of all the curls showed significantly (p &lt; 0.05) decreasing trend with increasing days of storage (6.34 ± 0.01 on day 0 and 5.90 ± 0.005 on day 28 for control samples, 6.41 ± 0.009 on day 0 and 6.11 ± 0.02 on day 28 for corn flour incorporated samples, 6.36 ± 0.01 on day 0 and 6.14 ± 0.01 on day 28 for black gram flour incorporated samples, 6.57 ± 0.007 on day 0 and 6.34 ± 0.01 on day 28 for peanut flour incorporated samples). TBARS (mg malonaldehyde/kg), total plate count (log cfu/g) and yeast and mould count (log cfu/g) for the control as well as treatment samples showed significantly (p &lt; 0.05) increasing trend with storage. Coliform counts (log cfu/g) were not detected until day 28 in all the products. The mean scores of sensory parameters i.e. appearance and colour, flavor, crispiness, texture and overall acceptability for control as well as treatment samples showed significantly (p &lt; 0.05) decreasing trend with storage period. The decrease was significantly (p &lt; 0.05) highest on 21(st) and 28(th) day of storage. The mean values for all the quality and storage parameters up to the day 21 of the storage were within the acceptable limits. Thus, based on various physicochemical and sensory parameters, the curls incorporated with optimum level of different flours were acceptable up to 21 days of ambient storage within the LDPE pouches. "	"The Use of Enucleation and Chemical Cauterization (Carnoy's) in the Management of Odontogenic Keratocyst of the Jaws. The purpose of this study was to evaluate the use of enucleation and chemical cauterization in the management of odontogenic keratocyst (OKC) of the jaw. This study involves the retrospective review of 32 patients (20 males and 12 females) with 34 biopsy proven odontogenic keratocysts. All patients received a combination of enucleation and chemical cauterization with every time freshly prepared Carnoy's solution (absolute alcohol 6 mL, chloroform 3 mL, glacial acetic acid 1 mL, ferric chloride 0.1 gm/mL). None of these patients were diagnosed with basal cell nevus syndrome. Four of these patients did not give the follow up and were not included in the study. A total of 30 biopsy proven OKC were resolved with this treatment method. Post-operative follow up consists of clinical and radiographic examination. Follow up time ranged from a minimum of 2 years to a maximum of 5 years. Mean follow up was of 2.8 years. Recurrence rate of 5.8% was observed. Hence, concluded that the combination of enucleation and chemical cauterization may offer patients improved therapy in the management of odontogenic keratocysts of the jaws. "	"Population distribution and synchronized dynamics in a metapopulation model in two geographic scales. In this paper, a metapopulation model composed of patches distributed in two spatial scales is proposed in order to study the stability of synchronous dynamics. Clusters of patches connected by short-range dispersal are assumed to be formed. Long distance dispersal is responsible to link patches that are in different clusters. During each time step, we assume that there are three processes involved in the population dynamics: (a) the local dynamics, which consists of reproduction and survival; (b) short-range dispersal of individuals between the patches of each cluster; and (c) the movement between the clusters. First we present an analytic criterion for regional synchronization, where the clusters evolve with the same dynamics. We then discuss the possibility of a full synchronism, where all patches in the network follow the same time evolution. The existence of such a state is not always ensured, even considering that all patches have the same local dynamics. It depends on how the individuals are distributed among the local patches that compose a cluster after long-range dispersal takes place in the regional scale. An analytic criterion for the stability of synchronized trajectories in this case is obtained. "	"Hydatidosis in goats in Jammu, India. The prevalence of hydatidosis was carried out in slaughtered goats (n = 177) by liver and lung examination at Jammu. The prevalence rate of hydatidosis was 19.8 %. A total of 14.1 % goats had cysts in both the livers and lungs while 2.3 and 3.4 % goats had cysts in the livers or lungs, respectively. A total of 9.1 % goats had fertile cysts. The adult goats (&gt;4 years) had a significantly higher (p = 0.01) prevalence rate as compared to the young goats (&lt;2 years). Sex had no significant effect on the prevalence of hydatidosis in goats. The histopathological section of the affected lungs revealed a thick coat of granulation tissue causing fibrosis. The cysts caused progressive focal pressure atrophic lesions at the sites of predilection, resulting in atelectasis, desquamation of bronchial epithelium and interalveolar haemorrhages. It may be concluded that the slaughter of food animals at an early age would help to reduce the infection prevalence in dogs and subsequently in the food animals. "	"Ultra deep sequencing of Listeria monocytogenes sRNA transcriptome revealed new antisense RNAs. Listeria monocytogenes, a gram-positive pathogen, and causative agent of listeriosis, has become a widely used model organism for intracellular infections. Recent studies have identified small non-coding RNAs (sRNAs) as important factors for regulating gene expression and pathogenicity of L. monocytogenes. Increased speed and reduced costs of high throughput sequencing (HTS) techniques have made RNA sequencing (RNA-Seq) the state-of-the-art method to study bacterial transcriptomes. We created a large transcriptome dataset of L. monocytogenes containing a total of 21 million reads, using the SOLiD sequencing technology. The dataset contained cDNA sequences generated from L. monocytogenes RNA collected under intracellular and extracellular condition and additionally was size fractioned into three different size ranges from &lt;40 nt, 40-150 nt and &gt;150 nt. We report here, the identification of nine new sRNAs candidates of L. monocytogenes and a reevaluation of known sRNAs of L. monocytogenes EGD-e. Automatic comparison to known sRNAs revealed a high recovery rate of 55%, which was increased to 90% by manual revision of the data. Moreover, thorough classification of known sRNAs shed further light on their possible biological functions. Interestingly among the newly identified sRNA candidates are antisense RNAs (asRNAs) associated to the housekeeping genes purA, fumC and pgi and potentially their regulation, emphasizing the significance of sRNAs for metabolic adaptation in L. monocytogenes. "	"Effect of pumpkin on the quality characteristics and storage quality of aerobically packaged chicken sausages. The present study was undertaken to evaluate the effect of different levels of pumpkin on the quality characteristics of chicken sausages. The pumpkin was incorporated at three different levels viz. 6, 12 and 18 percent replacing lean meat in the formulation. The products were analyzed for various physicochemical and sensory attributes. pH, emulsion stability, cooking yield, crude protein, ether extract and ash content of the products showed significantly (p &lt; 0.05) decreasing trend with increasing levels of incorporation of pumpkin however, there was a significant (p &lt; 0.05) increase in the moisture and crude fibre content. Based on various parameters, 12 percent level of incorporation was optimized as best. Chicken sausages with optimum level of pumpkin along with control were aerobically packaged in LDPE pouches and assessed for storage quality under refrigerated (4 ± 1°C) conditions. The mean values of pH and all the sensory parameters showed significantly (p &lt; 0.05) decreasing trend for both control as well as treatment samples whereas TBARS (mg malonaldehyde/kg) value, total plate count (log cfu/g) and yeast and mould count (log cfu/g) showed significantly (p &lt; 0.05) increasing trend with storage. Coliforms (log cfu/g) were not detected throughout the period of storage. Thus, fibre enriched chicken sausages could be successfully stored for a period of 14 days at refrigeration temperature (4 ± 1°C) without any significant loss in quality. "	"The Purα/Purβ single-strand DNA-binding proteins attenuate smooth-muscle actin gene transactivation in myofibroblasts. Expression of smooth muscle alpha-actin (SMαA) is essential for myofibroblast-mediated wound contraction following tissue injury. The Pur α/β and YB-1 transcriptional repressors govern the DNA-binding activity of serum response factor (SRF) and phosphorylated Smad3 (pSmad3) transcriptional activators during induction of SMαA gene expression in human pulmonary myofibroblasts. In quiescent fibroblasts, Pur α exhibited a novel function in enhancing stability of pre-existing SRF complexes with SMαA core promoter DNA, whereas Pur β was more effective in disrupting SRF-DNA interaction. Pur proteins were less efficient competitors of pre-existing, core-promoter complexes containing both SRF and pSmad3 in nuclear extracts from TGFβ1-activated myofibroblasts. TGFβ1 signaling dissociated a SRF/Pur protein complex with concurrent formation of a transient pSmad3/MRTF-A/Pur β complex during early phase myofibroblast differentiation. Pur β was replaced by Pur α in the pSmad3/MRTF-A complex in mature myofibroblasts. Combining all three repressors potently inhibited SRF and pSmad3 binding to promoter DNA in quiescent fibroblasts and TGFβ1-activated myofibroblasts, respectively. The results point to dynamic interplay between transcriptional activators and repressors in regulating SMαA gene output during myofibroblast differentiation. Therapeutic targeting of nucleoprotein complexes regulating the SMαA promoter may prevent excessive myofibroblast accumulation associated with chronic cardiopulmonary fibrosis and dysfunctional tissue remodeling."	"Prevalence of Hypoderma lineatum in cattle of Jammu region. Clinicoparasitological examination of 750 cattle from Jammu region revealed prevalence of Hypoderma lineatum infestation in 9.73 %. Cattle from Jammu (plain irrigated area) district (397) did not reveal any infestation of hypodermosis, but in Samba district (semi hilly arid area) 20.63 % (73/353) animals harbored H. lineatum larvae. The warbles were recorded from October to March and the mean number of warbles per animal was 7.07 ± 0.45. Infestation significantly varied in different age groups and free grazing practice of animals was one of the risk factor for hypodermosis in cattle of Jammu region. "	"Efficacy of eprinomectin pour-on against Rhipicephalus (Boophilus) microplus on buffaloes. A trial was conducted on 12 buffaloes naturally infested with Rhipicephalus (Boophilus) microplus to evaluate the efficacy of eprinomectin pour-on at a dose of 0.5 mg/kg body weight. A reduction in live tick count by 45.94, 63.96, 81.53, 90.54, 98.19 and 100 % was observed on days 3, 5, 7, 10, 14 and 21 post-treatment, respectively. The reinfestation of ticks was not observed up to 42 days of trial period. On the basis of the present trial of eprinomectin pour-on, it can be recommended for use in dairy buffaloes against Rhipicephalus (Boophilus) microplus infestation. "	"Antiparasitic efficacy of Artemisia absinthium, toltrazuril and amprolium against intestinal coccidiosis in goats. Various anti-protozoal dugs have been popularly used in the treatment of goat coccidiosis; however, residual effects are well noticed in host animals. The present study was undertaken with the objective to evaluate the anticoccidial efficacy of Artemisia absinthium, as a safe alternative in comparison to two conventional anticoccidial drugs (toltrazuril and amprolium) in goats (Capra hircus) naturally infected with Eimeria spp. (&gt;5,000 oocyst per gram of faeces). Goat kids (1-3 month old, 10 kg body weight) were randomly allocated into five groups (eight kids each). Group A was negative for coccidiosis and was retained as uninfected and untreated (negative control). Group B was infected and was kept untreated (positive control). Group C was given a single oral dose of toltrazuril (Baycox 5 %) at 20 mg kg(-1) BW (IM). Group D received amprolium soluble powder 20 w/w% at 50 mg kg(-1) BW 5 days daily. Group E was given a single dose of ethanolic extract of Artemisia absinthium at 2 g kg(-1) BW. Clinical signs, body-weight gain (BWG) and number of oocysts per gram faeces (OPG) were monitored daily for 30 days post treatment (DPT). The OPG was highly reduced as early as 7 DPT and there was a marked improvement in body weight gain (7 DPT) and faster clinical recovery (3-6 DPT) in the toltrazuril treated kids compared to amprolium and Artemisia absinthium treated groups (P ≤ 0.05). In Artemisia absinthium treated kids, the oocysts continued to be in faeces up to 28th day post treatment indicating that ethanolic extract of herb was less efficacious against caprine coccidiosis as compared to amprolium and toltrazuril. From the observations of the present study it can be concluded that control of goat coccidiosis through single treatment of toltrazuril was highly effective as compared to the other two treatments. However, integrated control involving pasture management, chemical and herbal control will be a more realistic and sustainable means of controlling coccidiosis in goats. Further studies at different doses and concentrations using different solvent preparations of the plant extract are recommended to arrive at a certain conclusion about the anti-coccidial efficacy of Artemisia absinthium, which has been reported to be highly effective against other parasites in ruminants. "	"Seasonal prevalence of gastrointestinal helminths in sheep and goats of middle agro-climatic zone of Jammu province. A total of 1920 faecal samples of sheep (960) and goats (960) of stationary flocks of the middle agro-climatic zone of Jammu province were examined, out of which 67.24 % animals were positive for helminthic infections. The different nematodes observed were strongyles (50.1 %), trichurids (12.1 %) and Strongyloides spp. (4.2 %). Trematode ova recorded were of amphistomes (8.3 %), Fasciola spp. (8.2 %) and Dicrocoelium spp. (5.4 %). No significant difference was observed between the infection level in sheep (68.54 %) and goats (65.94 %) which could be attributed to mixed grazing and sharing of pastures/sheds. Significantly (p &lt; 0.05) higher infection was observed in monsoon as compared to winter. Strongyles were predominant during all the seasons, but significantly (p &lt; 0.05) higher infection was observed in monsoon as compared to winter. Coproculture studies revealed that Haemonchus contortus (61.18 %) predominated during all the seasons, followed by Trichostrongylus spp. (13.67 %), Ostertagia spp. (12.17 %), Strongyloides spp. (4.14 %), Oesophagostomum spp. (3.84 %) and Bunostomum spp. (3.83 %). Eggs per gram of faeces (EPG) were the highest (sheep 1883.33 ± 117.6 and goats 1800 ± 110.21) during monsoon and the lowest during winter (sheep 640 ± 41.29 and goats 556.67 ± 33.01). Two peaks of EPG (the first in May and the second in August) were recorded during the 1 year study period. Infection was significantly (p &lt; 0.05) higher in young (73.22 %) as compared to adults (61.25 %). Females showed a higher infection (73.33 %) as compared to males (61.14 %). The effect of prevailing agro-climatic conditions on the prevalence of gastrointestinal helminths has been discussed. "	"Effect of refrigerated storage on the quality characteristics of microwave cooked chicken seekh kababs extended with different non-meat proteins. Storage quality of chicken seekh kababs extended with different legumes at optimum level viz. 15% cowpea, 15% green gram and 10% black bean were assessed in terms of physico-chemical, proximate, microbiological and sensory properties under aerobic packaging conditions at refrigeration temperature (4 ± 1°C). The chicken seekh kababs were prepared from spent hens meat by low power microwave method and extended with optimum level of different legume (hydrated 1:1 w/w) pastes replacing lean meat in the formulation. The chicken seekh kababs formulated without any extender served as control and were compared with extended chicken seekh kababs. The kababs were aerobically packaged in low density polyethylene (LDPE) pouches and were analyzed at a regular interval of 0, 7, 14 and 21 days during refrigerated storage at 4 ± 1°C. The results indicated a significant (p &lt; 0.05) decrease in moisture content of the kababs whereas the fat and ash content increased significantly (p &lt; 0.05) over the period of storage. Protein percentage showed a non-significant (p &gt; 0.05) increase and almost all the sensory attributes showed a declining trend with advancement of storage. Total plate count and psychrophillic count also increased significantly (p &lt; 0.05) whereas coliforms were not detected throughout the period of storage. The products were acceptable throughout the storage period. "	"Effect of skin, enrobing and refrigerated storage on the quality characteristics of chicken meat balls. The study was conducted to evaluate the utilization of skin in the preparation of meat balls. The meat balls were prepared by incorporating skin at different levels viz. 25%, 50%, 75% and 100% replacing lean meat in the formulation. The meat balls were further enrobed to see the effect of coating on the quality characteristics of meat balls. Parameters namely emulsion stability, cooking yield, proximate composition and sensory parameters of meat balls decreased significantly (P &lt; 0.05) with the increasing skin level. Based on various sensory parameters, meat balls containing 50% skin were optimized as best among coated as well as non-coated meat balls. Both coated as well as control meat balls were aerobically packaged in low density polyethylene (LDPE) pouches and were analyzed at a regular interval of 0, 7 and 14 days for various quality parameters during refrigerated storage at 4±1°C. TBARS value, total plate count and psychrophilic count increased significantly (P &lt; 0.05) whereas the scores for various sensory attributes decreased significantly (P &lt; 0.05) during storage. Coliforms were not detected throughout the period of storage. Thus, meat balls utilizing chicken skin were stored for a period of 14 days at refrigerated temperature (4±1°C) with changes in the quality parameters under acceptable limits. "	"Longitudinal assessment of high versus low levels of fractional exhaled nitric oxide among children with asthma and atopy. Fractional exhaled nitric oxide (FeNO) has emerged as an important biomarker in asthma. Increasing evidence points to atopy as a confounding factor in the interpretation of elevated FeNO. We conducted a longitudinal study to understand the clinical significance of FeNO as an inflammatory biomarker. We identified 19 children aged 13-15 years at baseline with a significant elevation in FeNO ≥ 80 parts per billion (ppb) and randomly selected a group of children of similar age with a moderate elevation (40-79 ppb) and normal-to-low FeNO (&lt;40 ppb). Between November 2010 and July 2011, three additional study visits were conducted. Ninety-three children participated in the study. There were 16, 24, and 53 participants in the high, mid, and low FeNO groups. During 1.5 years of follow-up, mean FeNO levels were 82.6 ppb (standard deviation [SD] = 65.9) for atopic asthmatics, 50.6 ppb (SD = 42.6) for nonasthmatic atopics, 17.0 ppb (SD = 10.8) for nonatopic asthmatics, and 17.8 ppb (SD = 13.9) for nonatopic nonasthmatics (p &lt; 0.001). FeNO levels remained stable: 63 % of the high FeNO group had a FeNO ≥ 80 across all 4 measurements and 87 % of the normal-to-low FeNO group had a FeNO of &lt;40 across all 4 measurements. The high FeNO group also was found to have an elevation in IL-5 (p = 0.04), IL-6 (p = 0.003), IL-10 (p = 0.002), and total serum IgE (p &lt; 0.001), after adjustment by age, sex, height, body mass index, and atopy and asthma status. An elevation of FeNO appears to indicate an atopic phenotype regardless of an asthma diagnosis, clinical symptoms, or corticosteroid use. An elevation of FeNO also is associated with a systemic elevation in inflammatory cytokines."	"Group A rotavirus and bacterial agents associated with diarrhoea-induced hospitalisations in children below 5 years of age in Jammu. Out of 210 faecal samples collected from children below 5 years attending different hospitals in Jammu and exhibiting clinical signs of diarrhoea, 41.9% samples were found positive for group A rotavirus by RNA-PAGE. Escherichia coli isolated in the study belonged to nine serogroups, out of which O69 was most frequent, being present in 12.38% samples. E. coli serogroups well recognised as enteropathogens viz. O69, O20 and O153 were present in 27.6% samples. Other bacterial pathogens associated with diarrhoea were present in 8.09% samples, out of which Shigella spp. was found in 4.76% samples followed by Salmonella spp. (2.38%) and Pseudomonas spp. (0.95%). "	"Field efficacy of minidosed pour-on ivermectin and eprinomectin against goat warble fly infestation by Przhevalskiana silenus. The efficacy of minidose of pour-on ivermectin and eprinomectin formulations against first instar larvae of Przhevalskiana silenus was observed in naturally infested goats in the Jammu region, North India. The study was performed in mid August 2011. A total of 280 goats were randomly divided in to 7 groups of 40 each. Goats of the first three groups were treated with pour-on ivermectin at dosage of 2, 5, and 200 μg/kg body weight, respectively, whereas animals of the fourth to sixth groups were treated with pour-on eprinomectin at 25, 50, and 500 μg/kg body weight, respectively. Group VII animals were kept as untreated control. The results indicated that no warbles were recorded between December 2011 and March 2012 on back of animals treated with pour-on preparations of ivermectin at dosage of 5 and 200 μg/kg body weight, respectively, and eprinomectin at dosage of 50 and 500 μg/kg body weight, respectively. Thus, it is concluded that administration of minidose of pour-on ivermectin (5 μg/kg body weight) and eprinomectin (50 μg/kg body weight) is cost effective and so can be used for warble fly control campaign in Jammu region. "	"Atrial fibrillation subtypes classification using the General Fourier-family Transform. Atrial fibrillation patients can be classified into paroxysmal, persistent and permanent attending to the temporal pattern of this arrhythmia. The surface electrocardiogram hides this differentiation. A classification method to discriminate between the different subtypes of atrial fibrillation by using short segments of electrocardiograms recordings is presented. We will process the electrocardiograms (ECGs) using time-frequency techniques with a global accuracy of 80%. Real cases are evaluated showing promising results for an implementation in a semiautomated diagnostic system. "	"High levels of genetic diversity in Penaeus monodon populations from the east coast of India. Quality production of the shrimp Penaeus monodon in hatchery operations depends heavily on the evaluation of genetic diversity and population structure of brood stocks. Mitochondrial DNA (mtDNA) sequences have been widely used to study genetic variability and relationships in many crustacean groups, and these same markers may be incorporated into evaluation studies of shrimp broods and populations. For this purpose we looked at variation in mitochondrial D-loop sequences as an indicator of genetic diversity in shrimp populations from a region of India that represents the main sources of new material for brood stocks. In our study of these populations the overall mean genetic diversity was 0.191. The highest level of genetic diversity (0.357) was observed in the Kakinada population, whereas the lowest diversity (0.0171) was observed in the Nellore population. The results also indicate that overall, the populations along the Andhra Pradesh coast are genetically diverse despite the fact that there is considerable gene flow between them. From the results, it is evident that east cost of India shows high genetic diversity among P. monodon broods and no evidence of loss of diversity due to excessive inbreeding. The fact that the genetic variability of these populations has been maintained, despite ten years of dependence on these broods, shows that at the present time there is no indication of over exploitation. "	"Evaluation of the effects of insufficient blood volume samples on the performance of blood glucose self-test meters. Accuracy of blood glucose readings is (among other things) dependent on the test strip being completely filled with sufficient sample volume. The devices are supposed to display an error message in case of incomplete filling. This laboratory study was performed to test the performance of 31 commercially available devices in case of incomplete strip filling. Samples with two different glucose levels (60-90 and 300-350 mg/dl) were used to generate three different sample volumes: 0.20 µl (too low volume for any device), 0.32 µl (borderline volume), and 1.20 µl (low but supposedly sufficient volume for all devices). After a point-of-care capillary reference measurement (StatStrip, NovaBiomedical), the meter strip was filled (6x) with the respective volume, and the response of the meters (two devices) was documented (72 determinations/meter type). Correct response was defined as either an error message indicating incomplete filling or a correct reading (±20% compared with reference reading). Only five meters showed 100% correct responses [BGStar and iBGStar (both Sanofi), ACCU-CHEK Compact+ and ACCU-CHEK Mobile (both Roche Diagnostics), OneTouch Verio (LifeScan)]. The majority of the meters (17) had up to 10% incorrect reactions [predominantly incorrect readings with sufficient volume; Precision Xceed and Xtra, FreeStyle Lite, and Freedom Lite (all Abbott); GlucoCard+ and GlucoMen GM (both Menarini); Contour, Contour USB, and Breeze2 (all Bayer); OneTouch Ultra Easy, Ultra 2, and Ultra Smart (all LifeScan); Wellion Dialog and Premium (both MedTrust); FineTouch (Terumo); ACCU-CHEK Aviva (Roche); and GlucoTalk (Axis-Shield)]. Ten percent to 20% incorrect reactions were seen with OneTouch Vita (LifeScan), ACCU-CHEK Aviva Nano (Roche), OmniTest+ (BBraun), and AlphaChek+ (Berger Med). More than 20% incorrect reactions were obtained with Pura (Ypsomed), GlucoCard Meter and GlucoMen LX (both Menarini), Elite (Bayer), and MediTouch (Medisana). In summary, partial and incomplete blood filling of glucose meter strips is often associated with inaccurate reading. These findings underline the importance of appropriate patient education on this aspect of blood glucose self-monitoring."	"Evaluation of trace elements, oxidant/antioxidant status, vitamin C and β-carotene in dogs with dermatophytosis. The aim of the study was to determine zinc, copper and iron levels, erythrocyte oxidant/antioxidant status, vitamin C and β-carotene in dogs with dermatophytosis. A total of 23 dogs with clinically established diagnosis of dermatophytosis by trichogram and positive fungal culture and six dogs as control were included in this study. On cultural examination 52.17% fungal isolates were found to be Microsporum canis, 30.43% were Trichophyton mentagrophytes and 17.39% were M. gypseum. In comparison to healthy control, the dogs with dermatophytosis had significantly lower levels of zinc (P &lt; 0.01), copper (P &lt; 0.05), β-carotene and vitamin C levels (P &lt; 0.05) and activities of superoxide dismutase (SOD) (P &lt; 0.05) and catalase (P &lt; 0.01), whereas the iron (P &lt; 0.05) and malondialdehyde (MDA) (P &lt; 0.01) levels were significantly increased. On correlation analysis, SOD activity was observed to be positively correlated (P &lt; 0.05) with zinc and copper in both healthy and dermatophytosis affected dogs. In dermatophytosis affected dogs the MDA levels were negatively correlated (P &lt; 0.05) with iron, β-carotene levels and the activities of antioxidant enzymes; SOD and catalase. Our results demonstrated that dermatophytosis in dogs is associated with significant alteration in oxidant/antioxidant balance and trace elements. It might be secondary consequence of dermatophytosis infection or contributing factor in its pathogenesis. "	"De novo mutations of GCK, HNF1A and HNF4A may be more frequent in MODY than previously assumed. MODY is mainly characterised by an early onset of diabetes and a positive family history of diabetes with an autosomal dominant mode of inheritance. However, de novo mutations have been reported anecdotally. The aim of this study was to systematically revisit a large collection of MODY patients to determine the minimum prevalence of de novo mutations in the most prevalent MODY genes (i.e. GCK, HNF1A, HNF4A). Analysis of 922 patients from two national MODY centres (Slovakia and the Czech Republic) identified 150 probands (16%) who came from pedigrees that did not fulfil the criterion of two generations with diabetes but did fulfil the remaining criteria. The GCK, HNF1A and HNF4A genes were analysed by direct sequencing. Mutations in GCK, HNF1A or HNF4A genes were detected in 58 of 150 individuals. Parents of 28 probands were unavailable for further analysis, and in 19 probands the mutation was inherited from an asymptomatic parent. In 11 probands the mutations arose de novo. In our cohort of MODY patients from two national centres the de novo mutations in GCK, HNF1A and HNF4A were present in 7.3% of the 150 families without a history of diabetes and 1.2% of all of the referrals for MODY testing. This is the largest collection of de novo MODY mutations to date, and our findings indicate a much higher frequency of de novo mutations than previously assumed. Therefore, genetic testing of MODY could be considered for carefully selected individuals without a family history of diabetes."	"A three-gene phylogeny of the Mycena pura complex reveals 11 phylogenetic species and shows ITS to be unreliable for species identification. Phylogenetic analyses of Mycena sect. Calodontes using ITS previously suggested ten cryptic monophyletic ITS lineages within the Mycena pura morphospecies. Here, we compare ITS data (645 bp incl. gaps) from 46 different fruit bodies that represent the previously described ITS diversity with partial tEF-1-α (423 bp) and RNA polymerase II (RPB1) (492 bp) sequence data to test the genealogical concordance. While neither of the markers were in complete topological agreement, the branches differing between the tEF and RPB1 trees had a low bootstrap (&lt;50) support, and the partition homogeneity incongruence length difference (ILD) tests were not significant. ILD tests revealed significant discordances between ITS and the tEF and RPB1 markers in several lineages. And our analyses suggested recombination between ITS1 and ITS2, most pronounced in one phylospecies that was identical in tEF and RPB1. Based on the agreement between tEF and RPB1, we defined 11 mutually concordant terminal clades as phylospecies inside the M. pura morphospecies; most of them cryptic. While neither of the markers showed an unequivocal barcoding gap between inter- and intraspecific diversity, the overlap was most pronounced for ITS (intraspecific diversity 0-3.5 %, interspecific diversity 0.4 %-8.8 %). A clustering analysis on tEF separated at a 1.5 % level returned all phylogenetic species as Operational Taxonomic Units (OTUs), while ITS at both a 1.5 % level and at a 3 % threshold level not only underestimated diversity as found by the tEF and RPB1, but also identified an OTU which was not a phylogenetic species. Thus, our investigation does not support the universal suitability of ITS for species recognition in particular, and emphasises the general limitation of single gene analyses combined with single percentage separation values. "	"Acaricidal activity of extract of Artemisia absinthium against Rhipicephalus sanguineus of dogs. The objective of the study was to evaluate the in vitro efficacy of different concentrations of chloroform extract obtained from the aerial parts of Artemisia absinthium in comparison to amitraz on adults, eggs and larvae of the dog tick Rhipicephalus sanguineus using the adult immersion test (AIT), egg hatchability test (EHT) and larval packet test (LPT), respectively. Five concentrations of the extract (1.25, 2.5, 5, 10 and 20 %) with three replications for each concentration were used in all the bioassays. A control group was established (water + dimethylsulphoxide) together with a positive control group (amitraz), with three repetitions each. In AIT, the mortality rates were 0.0, 13.3, 16.7, 33.3 and 93.3 % in concentrations of 1.25, 2.5, 5, 10 and 20 %, respectively, and the variation was significant (p=0.0151). The LC50 (CI) and LC95 (CI) values were calculated as 8.793 % (8.217-9.408) and 34.59 % (29.71-40.26), respectively. The egg production was reduced by 6.6, 6.6, 18.3, 42.5 and 85.1 % in the concentrations of 1.25, 2.5, 5, 10 and 20 %, respectively, and it was statistically significant (p=0.0274). In EHT, hatching was completely inhibited at 5, 10 and 20 % displaying 100 % ovicidal action while at the concentrations of 1.25 and 2.5 %, the inhibition rates were 20 and 60 %, respectively. In LPT, the extract caused 100 % mortality of larvae in the concentrations of 5, 10 and 20 % after 24 h while at the concentrations of 1.25 and 2.5 %, the mortality rates were 54.3 and 96.7 %, respectively. The LC50 (CI) and LC95 (CI) values were determined to be 1.11 % (1.099-1.121) and 2.37 % (2.328-2.423), respectively. The results show that the extract of A. absinthium has acaricidal properties and could be useful in controlling R. sanguineus which is an efficient vector of pathogens both in dogs and humans."	"Dickeya solani sp. nov., a pectinolytic plant-pathogenic bacterium isolated from potato (Solanum tuberosum). Pectinolytic bacteria have been recently isolated from diseased potato plants exhibiting blackleg and slow wilt symptoms found in a number of European countries and Israel. These Gram-reaction-negative, motile, rods were identified as belonging to the genus Dickeya, previously the Pectobacterium chrysanthemi complex (Erwinia chrysanthemi), on the basis of production of a PCR product with the pelADE primers, 16S rRNA gene sequence analysis, fatty acid methyl esterase analysis, the production of phosphatases and the ability to produce indole and acids from α-methylglucoside. Differential physiological assays used previously to differentiate between strains of E. chrysanthemi, showed that these isolates belonged to biovar 3. Eight of the isolates, seven from potato and one from hyacinth, were analysed together with 21 reference strains representing all currently recognized taxa within the genus Dickeya. The novel isolates formed a distinct genetic clade in multilocus sequence analysis (MLSA) using concatenated sequences of the intergenic spacer (IGS), as well as dnaX, recA, dnaN, fusA, gapA, purA, rplB, rpoS and gyrA. Characterization by whole-cell MALDI-TOF mass spectrometry, pulsed field gel electrophoresis after digestion of whole-genome DNA with rare-cutting restriction enzymes, average nucleotide identity analysis and DNA-DNA hybridization studies, showed that although related to Dickeya dadantii, these isolates represent a novel species within the genus Dickeya, for which the name Dickeya solani sp. nov. (type strain IPO 2222(T) = LMG25993(T) = NCPPB4479(T)) is proposed. "	"Raw data extraction from electrocardiograms with Portable Document Format. During the last two decades there has been a thorough research and development of standards and protocols in order to cope with different electrocardiogram formats from heterogeneous acquisition systems. Despite the efforts of public and private consortiums on creating a standardized electrocardiogram (ECG) storage format, there is still not a single one. Indeed, there is also the necessity of access to raw data of the ECGs previously acquired. Most of these documents have been saved as Adobe PDF files, since for medical staff it is an easy format for later visualization. However, this format presents difficulties when trying to access original raw data for subsequent studies and signal analysis. In this manner, this paper presents an application that obtains plain numerical data from ECG files stored with PDF format. Data can also be exported to one of the most common file formats in existence, to be easily accessed thereafter. "	"Synechocystis sp. PCC6803 metabolic models for the enhanced production of hydrogen. In the present economy, difficulties to access energy sources are real drawbacks to maintain our current lifestyle. In fact, increasing interests have been gathered around efficient strategies to use energy sources that do not generate high CO2 titers. Thus, science-funding agencies have invested more resources into research on hydrogen among other biofuels as interesting energy vectors. This article reviews present energy challenges and frames it into the present fuel usage landscape. Different strategies for hydrogen production are explained and evaluated. Focus is on biological hydrogen production; fermentation and photon-fuelled hydrogen production are compared. Mathematical models in biology can be used to assess, explore and design production strategies for industrially relevant metabolites, such as biofuels. We assess the diverse construction and uses of genome-scale metabolic models of cyanobacterium Synechocystis sp. PCC6803 to efficiently obtain biofuels. This organism has been studied as a potential photon-fuelled production platform for its ability to grow from carbon dioxide, water and photons, on simple culture media. Finally, we review studies that propose production strategies to weigh this organism's viability as a biofuel production platform. Overall, the work presented in this review unveils the industrial capabilities of cyanobacterium Synechocystis sp. PCC6803 to evolve interesting metabolites as a clean biofuel production platform. "	"Quality evaluation of mutton Harrisa during one week refrigerated storage. Harrisa is a popular indigenous meat based product of Jammu and Kashmir. An attempt was made to standardize the basic formulation and processing conditions for the preparation of the Harrisa using mutton meat. The product so developed was packed in low density polyethylene pouches (LDPE) and evaluated for a shelf life of 1 week at refrigeration (4 ± 1°C) temperature for various physicochemical, microbiological and sensory attributes. The mean values of pH, protein percent, fat percent and ash percent of the product increased significantly (P &lt; 0.05) whereas the mean moisture percent showed a significantly (P &lt; 0.05) decreasing trend during refrigerated storage. The mean scores of all the sensory parameters decreased significantly (P &lt; 0.05) with storage. Total plate count and psychrophilic count increased significantly (P &lt; 0.05) whereas the coliforms were not detected throughout the period of storage. Thiobarbituric acid reacting substances (TBARS) and free fatty acid (% oleic acid) values also increased significantly (P &lt; 0.05) with storage period. Although storage resulted in significant decrease in almost all the quality attributes and sensory scores but the changes were within the limits of acceptability. The product was acceptable for a period of one week under refrigerated conditions. "	"Molecular studies on diarrhea-associated Escherichia coli isolated from humans and animals in Egypt. The molecular characteristics of Escherichia coli isolates from Egypt and the relationship of E. coli strains from claves, camels and humans are limited. We analyzed the genetic relationships of 48 diarrhea-associated E. coli strains isolated from sporadic diarrheal cases from humans (n=26), calves (n=14) and camels (n=8) using multilocus sequence type (MLST), virulence genes, and pulsed field gel electrophoresis (PFGE). Enterotoxigenic E. coli (ETEC) accounted for 60.4% of all samples and the rest were Enteropathogenic E. coli (EPEC) 10.4%, Diffuse adhering E. coli (DAEC) 8.3%, Enteroaggreagative E. coli (EAEC) 6.3%, Verotoxigenic E. coli (VTEC) 6.3%, Untypable E. coli. 6.3% and Atypical enteropathogenic E. coli (aEPEC) 2.1%. We identified 17 new sequence types (ST) and 12 new alleles. Generally, strains divided into 6 clonal complexes, and clonal complex (CC) 10 was the major one, detected in (15/48; 31.3%) strains from humans, calves and camels. The close relationship among the strains from different hosts was regarding to mdh, purA, and recA genes which presented a minor variation in relation to other housekeeping genes. MLST analysis suggested an endemic prevalence of clonal complex (CC) 10 in Egypt. Same sequencing types (ST) could be detected in human, calf and camel, especially ST10, indicating the ability of E. coli to cross the host barrier. Together with PFGE results and virulence genotypes we conclude that human, calf and camel can be colonized and infected with similar E. coli strains and provide evidence of calves and camels role as a reservoir for similar strains of diarrhea-associated E. coli."	"Regulation of acrAB expression by cellular metabolites in Escherichia coli. Multidrug efflux pumps mediate resistance to antibiotics and other toxic compounds. We studied the role of AcrAB-TolC, the main efflux pump in Escherichia coli, in regulating gene expression. Deletion mutants, an acrABp-lacZ fusion and reverse transcription-real-time quantitative PCR experiments were used to study the role of AcrAB-TolC and metabolism in regulating gene expression of the acrAB operon and its transcriptional regulators. Deletion of the acrB gene increased the expression of the acrAB operon. A similar induction of acrAB was found when acrA or tolC was deleted, and when the pump function was inhibited using phenylalanine-arginine-β-naphthylamide. The induction of acrAB in the ΔacrB strain was totally (AcrR or SoxS) or partially (SoxR or MarA) prevented when the genes for these acrAB regulators were also deleted. The expression of soxS and marA, but not of acrR, was increased in the ΔacrB strain, which also showed altered expression of many other genes related to different cellular processes, including motility. Deletion of the metabolic genes entA and entE (enterobactin biosysnthesis), glpX (gluconeogenesis), cysH (cysteine biosynthesis) and purA (purine biosynthesis) also prevented activation of the acrAB promoter in the ΔacrB strain. Addition of the enterobactin biosynthesis intermediate metabolite 2,3-dihydroxybenzoate induced the expression of acrAB. These results together suggest a model in which the AcrAB-TolC pump effluxes cellular metabolites that are toxic and/or have a signalling role. If the pump is inactivated or inhibited, these metabolites would accumulate, inactivating AcrR and/or up-regulating soxS and marA expression, ultimately triggering the up-regulation of acrAB expression to restore homeostasis."	"Trace minerals status and antioxidative enzyme activity in dogs with generalized demodecosis. The present study was aimed to determine the levels of trace elements zinc, copper, iron, erythrocyte oxidant/anti-oxidant balance, vitamin C and β-carotene in dogs with generalized demodecosis. A total of 24 dogs with clinically established diagnosis of generalized demodecosis and 6 dogs as control were included in the study. In comparison to healthy control, zinc and copper levels were significantly (P&lt;0.01) lower in dogs with generalized demodecosis, whereas iron levels were significantly (P&lt;0.01) higher. Malondialdehyde (MDA) levels were significantly (P&lt;0.01) higher in diseased dogs whereas activity of superoxide dismutase (SOD) and catalase were significantly (P&lt;0.01) lower. β-carotene and vitamin C levels were significantly (P&lt;0.05) lower in diseased dogs when compared to healthy control. SOD activity was positively correlated with zinc (rs=0.65, rs=0.71 and P&lt;0.05) and copper (rs=0.51, rs=0.63 and P&lt;0.05) in both healthy and diseased dogs. MDA levels were negatively correlated with iron (rs=-0.49, rs=-0.78 and P&lt;0.05), β-carotene (rs=-0.26, P&gt;0.05; rs=-0.54, P&lt;0.05, respectively) in both healthy and diseased dogs and with SOD activity in diseased dogs only (rs=-0.68, P&lt;0.05). From the present study, it was concluded that generalized demodecosis in dogs is associated with significant alteration in trace elements and oxidant/anti-oxidant imbalance and this imbalance might be secondary to changes caused by demodectic mange. "	"5q31.3 Microdeletion syndrome: clinical and molecular characterization of two further cases. The 5q31.3 microdeletion syndrome has recently emerged as a distinct clinical entity, and we report two new patients with de novo deletions of this region, bringing the total to seven. Similarly to previously reported cases, the phenotype of our patients is characterized by marked hypotonia, apnea, developmental delay, and feeding difficulties. Both patients had abnormal movements which did not correlate with epileptiform activity on electroencephalogram (EEG). Developmental brain changes on neuroimaging consisted of abnormalities predominantly affecting the white matter and frontal lobes. The 5q31.3 deleted regions overlap those of previously reported cases, and allow further refinement of the shortest region of overlap to 101 kb, including only three genes. Of these, the purine-rich element binding protein A (PURA) gene has an established role in brain development, and we propose that haploinsufficiency for this gene is primarily responsible for the neurodevelopmental features observed."	"Biophysical science in Italy: SIBPA turns 40. This Special Issue of Biophysical Chemistry includes a selection of the papers presented at the XXI Congress of the Italian Society of Pure and Applied Biophysics (i.e., SIBPA, Società Italiana di Biofisica Pura ed Applicata) held on September 2012 at the University of Ferrara, Ferrara, Italy. Topics cover all biophysical disciplines, from molecular to cellular, to integrative biophysics giving an almost comprehensive view of the interdisciplinary and multidisciplinary approaches, proper of the modern biophysics. SIBPA, which celebrates its 40th anniversary in 2013, has steadily grown and appeals to both specialists and a wider general audience. "	"Differentials in colostrum feeding among lactating women of block RS Pura of J and K: A lesson for nursing practice. Breast feeding is universally and traditionally practicised in India. Experts advocate breast feeding as the best method of feeding young infants. To assess the role of various factors in determining colostrum feeding in block R. S. Pura of district Jammu. A stratified two-stage design with villages as the primary sampling unit and lactating mothers as secondary sampling unit. Villages were divided into different clusters on the basis of population and sampling units were selected by a simple random technique. Breastfeeding is almost universal in R. S. Pura. Differentials in discarding the first milk were not found to be important among various socioeconomic groups and the phenomenon appeared more general than specific."	"Review of the mathematical functions used to model the temperature dependence of electrical and thermal conductivities of biological tissue in radiofrequency ablation. Although theoretical modelling is widely used to study different aspects of radiofrequency ablation (RFA), its utility is directly related to its realism. An important factor in this realism is the use of mathematical functions to model the temperature dependence of thermal (k) and electrical (σ) conductivities of tissue. Our aim was to review the piecewise mathematical functions most commonly used for modelling the temperature dependence of k and σ in RFA computational modelling. We built a hepatic RFA theoretical model of a cooled electrode and compared lesion dimensions and impedance evolution with combinations of mathematical functions proposed in previous studies. We employed the thermal damage contour D63 to compute the lesion dimension contour, which corresponds to Ω = 1, Ω being local thermal damage assessed by the Arrhenius damage model. The results were very similar in all cases in terms of impedance evolution and lesion size after 6 min of ablation. Although the relative differences between cases in terms of time to first roll-off (abrupt increase in impedance) were as much as 12%, the maximum relative differences in terms of the short lesion (transverse) diameter were below 3.5%. The findings suggest that the different methods of modelling temperature dependence of k and σ reported in the literature do not significantly affect the computed lesion diameter."	"Local alendronic acid elution increases net periimplant bone formation: a micro-CT analysis. Fixation of cementless orthopaedic implants is not always achieved, particularly in challenging scenarios such as revision surgery, trauma, and tumor reconstruction. An adjunct therapy for improving implant fixation would improve the reliability and durability of certain reconstructive procedures. The purpose of this study was to determine the effect of local elution of the bisphosphonate alendronic acid on bone formation around porous titanium implants in an animal model. Porous-coated cylindrical rods were coated with either 0.2 mg or 1.0 mg alendronic acid before bilateral surgical implantation into the femoral intramedullary canals of 10 experimental dogs. Twelve weeks after surgery, the femora were harvested and scanned with micro-CT to quantify the percentage volume of bone within the immediate periimplant space. Four femora from two dogs were also processed for undecalcified thin-section histology and analysis with backscattered scanning electron microscopy. Three histologic sections from each of these four femora were anatomically matched with transverse micro-CT sections to enable direct comparison of the area fraction of bone within the periimplant space. Compared with paired controls, micro-CT analysis showed that local elution of alendronic acid increased periimplant bone at both doses of 0.2 mg (+52%, p = 0.01) and 1.0 mg (+152%, p = 0.004) with 1.0 mg resulting in a 2.9-fold greater mean relative increase compared with 0.2 mg (p = 0.002). Micro-CT measurements of periimplant bone formation correlated very strongly with the backscattered scanning electron microscopy measurements (R = 0.965, p &lt; 0.001). Local elution of alendronic acid causes a dose-dependent net increase in periimplant bone formation in an animal model. This concept has potential to improve the biologic fixation of porous reconstructive implants."	"Phase 1 trial of neoadjuvant radiation therapy before prostatectomy for high-risk prostate cancer. To evaluate, in a phase 1 study, the safety of neoadjuvant whole-pelvis radiation therapy (RT) administered immediately before radical prostatectomy in men with high-risk prostate cancer. Twelve men enrolled and completed a phase 1 single-institution trial between 2006 and 2010. Eligibility required a previously untreated diagnosis of localized but high-risk prostate cancer. Median follow-up was 46 months (range, 14-74 months). Radiation therapy was dose-escalated in a 3 × 3 design with dose levels of 39.6, 45, 50.4, and 54 Gy. The pelvic lymph nodes were treated up to 45 Gy with any additional dose given to the prostate and seminal vesicles. Radical prostatectomy was performed 4-8 weeks after RT completion. Primary outcome measure was intraoperative and postoperative day-30 morbidity. Secondary measures included late morbidity and oncologic outcomes. No intraoperative morbidity was seen. Chronic urinary grade 2+ toxicity occurred in 42%; 2 patients (17%) developed a symptomatic urethral stricture requiring dilation. Two-year actuarial biochemical recurrence-free survival was 67% (95% confidence interval 34%-86%). Patients with pT3 or positive surgical margin treated with neoadjuvant RT had a trend for improved biochemical recurrence-free survival compared with a historical cohort with similar adverse factors. Neoadjuvant RT is feasible with moderate urinary morbidity. However, oncologic outcomes do not seem to be substantially different from those with selective postoperative RT. If this multimodal approach is further evaluated in a phase 2 setting, 54 Gy should be used in combination with neoadjuvant androgen deprivation therapy to improve biochemical outcomes."	"Giant adrenocortical carcinoma with 27-month disease-free survival by surgical resection alone: a case report. Adrenocortical cancer (ACC) is a rare disease with an estimated incidence of 1-2/million/year. The tumour stage and completeness of surgical resection have the biggest impact on survival. Whereas stage I-II patients survive in 55-64% of cases, only 0-5% of patients with stage IV disease are still alive at 5 years. A median survival of 33 months can be expected after curative surgery. Incomplete surgery leads to a significant drop in survival. We present a 40-year-old man who underwent a technically demanding complete surgical excision of a giant (26 cm, 2372 g) ACC and experienced a 27-month disease-free survival without any systemic treatment. Detailed description of the surgical anatomy in relation to tumour size and patient body constitution is provided. The surgical strategy and exposure pitfalls under such extreme circumstances are discussed. To achieve R0 resection in locally advanced disease, en bloc resection with neighbouring organs is widely recommended. Giant tumours may however pose a technical challenge due to space constraints."	"Blowup as a driving mechanism of turbulence in shell models. Since Kolmogorov proposed his phenomenological theory of hydrodynamic turbulence in 1941, the description of the mechanism leading to the energy cascade and anomalous scaling remains an open problem in fluid mechanics. Soon after, in 1949, Onsager noticed that the scaling properties in the inertial range imply nondifferentiability of the velocity field in the limit of vanishing viscosity. This observation suggests that the turbulence mechanism may be related to a finite-time singularity (blowup) of incompressible Euler equations. However, the existence of such blowup is still an open problem too. In this paper, we show that the blowup indeed represents the driving mechanism of the inertial range for a simplified (shell) model of turbulence. Here, blowups generate coherent structures (instantons), which travel through the inertial range in finite time and are described by universal self-similar statistics. The anomaly (deviation of scaling exponents of velocity moments from the Kolmogorov theory) is related analytically to the process of instanton creation using the large deviation principle. The results are confirmed by numerical simulations."	"Regulatory role of adrenergic neurotransmitters on the spontaneous muscular activity in the ruminant trematode Paramphistomum cervi (Paramphistomatidae). The neuromuscular system of helminths is an important area for target identification and drug development. Many anthelmintics, namely ivermectin, levamisole, piperazine, pyrantel, praziquantel and organophosphates, produce paralysis of helminths by affecting their neuromuscular systems. The neuromuscular system of helminths is also an important area of research to identify some of the important differences between the neuromuscular physiology of helminths and mammals. The identification of differences would help in developing newer target-specific, safe and effective anthelmintics. The present study was carried out to investigate the effects of different adrenergic neurotransmitters (epinephrine, norepinephrine, dopamine, l-dopa) and their antagonists (propranolol and haloperidol) on the spontaneous muscular activity of isometrically mounted Paramphistomum cervi. "	"Minor ailments in pregnancy are not a minor concern for pregnant women: a morbidity assessment survey in rural Sri Lanka. Although maternal mortality has become a major focus on global public health agenda, maternal morbidity is a neglected area of research. The purpose of this paper is to present the burden of acute maternal illness during pregnancy. A cross sectional study was carried out in Anuradhapura district, Sri Lanka. Pregnant women residing in the Anuradhapura district with a gestational age more than 24 weeks through 36 weeks were recruited to the study using a two-stage cluster sampling technique. All pregnant women who consented participated in a detailed interview using a structured questionnaire. Self reported episodes of acute illness during pregnancy were the main outcome measures. Secondary outcomes were utilization of medical services and frequency of hospitalizations. Nausea and vomiting during pregnancy (NVP) was experienced by 325 (69.7%) of the 466 pregnant women studied. Other common symptoms were backache (152, 32.6%), dizziness (112, 24.0%) and heartburn/regurgitation (107, 23.0%). Of the 421 pregnant women who reported ill health conditions 260 (61.8%) women sought medical treatment for these illnesses. Total number of episodes that needed treatment seeking were 373. Hospitalizations were reported by 83 (17.8%) pregnant women and the total number of hospitalizations was 109. The leading cause of hospitalization was NVP which accounted for 43.1% of total admissions and 49.1% of total days spent in hospitals. Minor maternal ill health conditions affecting day-to-day life have a major burden on pregnancy period. Evidence based management guidelines and health promotion strategies are needed to control and prevent these conditions, in order to provide comprehensive, good quality maternal health care."	"Interleukin-6 myokine signaling in skeletal muscle: a double-edged sword? Interleukin (IL)-6 is a cytokine with pleiotropic functions in different tissues and organs. Skeletal muscle produces and releases significant levels of IL-6 after prolonged exercise and is therefore considered as a myokine. Muscle is also an important target of the cytokine. IL-6 signaling has been associated with stimulation of hypertrophic muscle growth and myogenesis through regulation of the proliferative capacity of muscle stem cells. Additional beneficial effects of IL-6 include regulation of energy metabolism, which is related to the capacity of actively contracting muscle to synthesize and release IL-6. Paradoxically, deleterious actions for IL-6 have also been proposed, such as promotion of atrophy and muscle wasting. We review the current evidence for these apparently contradictory effects, the mechanisms involved and discuss their possible biological implications. "	"Role of exhaled nitric oxide as a predictor of atopy. The fractional exhaled nitric oxide (FeNO) is a quantitative, noninvasive and safe measure of airways inflammation that may complement the assessment of asthma. Elevations of FeNO have recently been found to correlate with allergic sensitization. Therefore, FeNO may be a useful predictor of atopy in the general population. We sought to determine the diagnostic accuracy of FeNO in predicting atopy in a population-based study. We conducted a cross-sectional study in an age- and sex- stratified random sample of 13 to 15 year-olds in two communities in Peru. We asked participants about asthma symptoms, environmental exposures and sociodemographics, and underwent spirometry, assessment of FeNO and an allergy skin test. We used multivariable logistic regression to model the odds of atopy as a function of FeNO, and calculated area-under-the-curves (AUC) to determine the diagnostic accuracy of FeNO as a predictor of atopy. Of 1441 recruited participants, 1119 (83%) completed all evaluations. Mean FeNO was 17.6 ppb (SD=0.6) in atopics and 11.6 ppb (SD=0.8) in non-atopics (p&lt;0.001). In multivariable analyses, a FeNO&gt;20 ppb was associated with an increase in the odds of atopy in non-asthmatics (OR=5.3, 95% CI 3.3 to 8.5) and asthmatics (OR=16.2, 95% CI 3.4 to 77.5). A FeNO&gt;20 ppb was the best predictor for atopy with an AUC of 68% (95% CI 64% to 69%). Stratified by asthma, the AUC was 65% (95% CI 61% to 69%) in non-asthmatics and 82% (95% CI 71% to 91%) in asthmatics. FeNO had limited accuracy to identify atopy among the general population; however, it may be a useful indicator of atopic phenotype among asthmatics."	"Can electroporation previous to radiofrequency hepatic ablation enlarge thermal lesion size? A feasibility study based on theoretical modelling and in vivo experiments. The aim of this study was to assess the feasibility of a hybrid ablative technique based on applying electroporation (EP) pulses just before conducting radiofrequency ablation (RFA). The rationale was that the EP-induced reduction in blood perfusion could be sufficient to reduce the thermal sink effect and hence to increase the coagulation volume in comparison to that created exclusively by RFA. A modelling study and in vivo experimental study were used. A Cool-tip RF applicator was used both for EP and RFA. Overall, the results did not show any synergy effect from using the hybrid technique. Applying EP pulses prior to RFA did not increase the coagulation zone obtained and the lesions were almost identical. Additional computer simulations provided an explanation for this; the effect of reducing blood perfusion by thermal damage during RFA completely masks the effect of reducing blood perfusion by EP. This is because both thermal damage and EP affect the same zone, i.e. the tissue around the electrode. Our computer modelling and in vivo experimental findings suggest that the combination of EP and RFA with monopolar applicators does not provide an additional benefit over the use of RFA alone."	"Expanded GGGGCC repeat RNA associated with amyotrophic lateral sclerosis and frontotemporal dementia causes neurodegeneration. Amyotrophic lateral sclerosis (ALS) and frontotemporal dementia (FTD) share phenotypic and pathologic overlap. Recently, an expansion of GGGGCC repeats in the first intron of C9orf72 was found to be a common cause of both illnesses; however, the molecular pathogenesis of this expanded repeat is unknown. Here we developed both Drosophila and mammalian models of this expanded hexanucleotide repeat and showed that expression of the expanded GGGGCC repeat RNA (rGGGGCC) is sufficient to cause neurodegeneration. We further identified Pur α as the RNA-binding protein of rGGGGCC repeats and discovered that Pur α and rGGGGCC repeats interact in vitro and in vivo in a sequence-specific fashion that is conserved between mammals and Drosophila. Furthermore, overexpression of Pur α in mouse neuronal cells and Drosophila mitigates rGGGGCC repeat-mediated neurodegeneration, and Pur α forms inclusions in the fly eye expressing expanded rGGGGCC repeats, as well as in cerebellum of human carriers of expanded GGGGCC repeats. These data suggest that expanded rGGGGCC repeats could sequester specific RNA-binding protein from their normal functions, ultimately leading to cell death. Taken together, these findings suggest that the expanded rGGGGCC repeats could cause neurodegeneration, and that Pur α may play a role in the pathogenesis of amyotrophic lateral sclerosis and frontotemporal dementia."	"Prevalence and impact of gastrointestinal helminths on body weight gain in backyard chickens in subtropical and humid zone of Jammu, India. Necropsy of gastrointestinal tract of 125 free-range chickens from a subtropical and humid zone of northwestern India revealed four nematode spp. (Ascaridia galli, Heterakis gallinarum, Capillaria spp. and Cheilospirura hamulosa) and four cestode spp. (Raillietina cesticillus, Raillietina echinobothrida, Raillietina tetragona and Amoebotaenia cuneata) The overall prevalence of the helminth parasites was 72.0%. Amongst various helminth species encountered in the region, A. galli emerged out as the most prevalent, followed by H. gallinarum, R. cesticillus and R. echinobothrida. The impact of helminthic infections on body weight gain in growing chickens was investigated. One hundred growing chickens, aged 40 days were randomly assigned to two groups (treated and untreated controls) of 50 birds each. The birds in treated group were given fenbendazole at 7.5 mg per kg body weight in drinking water, while the birds in other group served as untreated controls. At the end of the 90 days of the field trial, the mean body weight gain of untreated controls was 1232.2 ± 7.28 g (13.7 g/day) compared with 1617.6 ± 5.43 g (18.0 g/day) in the treated group. It was associated with a significantly (P &lt; 0.05) higher mean worm burden (32.92 ± 6.12) in untreated controls than the treated group (2.46 ± 1.14). The prevalences of helminthic species and their impact on body weight gain in growing backyard chickens have been discussed."	"Non-specificity of primers used for PCR based serogrouping of Dichelobacter nodosus and identification of a novel D. nodosus strain. The present study records the first case of non-specificity of typing primers developed by Dhungyel et al. A strain of Dichelobacter nodosus (JKS-20G) isolated from ovine footrot in Kashmir, India, showed specificity for serogroup C and G primers. The fimA sequence of the strain turned out to be closer to serogroup G than C. The nucleotide sequence showed maximum homology of 92% with that of serotype G1 strain 238 and 95% with partial sequence available for serotype G2 strain VCS 1004. However, the deduced amino acid sequence of the fimbrial subunit gene of JKS-20G differed from strain 238 by 16 amino acids and by four amino acids from that of partial sequence of strain VCS 1004. This variation indicates towards declaring this isolate as a new serotype (G3) but just insufficient to classify this into a new serogroup. Some of the amino acid substitutions were located within three hypervariable regions a characteristic of different serogroups. However, to ascertain whether this isolate deserves a new serotype status, there is a need to go for antigenic characterisation of this isolate using the tube and cross tube agglutination test."	"Development of a three-dimensional tissue construct from dental human ectomesenchymal stem cells: in vitro and in vivo study. Application of regenerative medicine technology provides treatment for patients with several clinical problems, like loss of tissue and its function. The investigation of biological tooth replacement, dental tissue engineering and cell culture, scaffolds and growth factors are considered essential. Currently, studies reported on the making of threedimensional tissue constructs focused on the use of animal cells in the early stages of embryogenesis applied to young biomodels. The purpose of this study was the development and characterization of a three-dimensional tissue construct from human dental cells. The construct was detached, cultured and characterized in mesenchymal and epithelial cells of a human tooth germ of a 12 year old patient. The cells were characterized by specific membrane markers (STRO1, CD44), making a biocomplex using Pura Matrix as a scaffold, and it was incubated for four days and transplanted into 30 adult immunosuppressed male Wistar rats. They were evaluated at 6 days, 10 days and 2 months, obtaining histological sections stained with hematoxylin and eosin. Cell cultures were positive for specific membrane markers, showing evident deviations in morphology under phase contrast microscope. Differentiation and organization were noted at 10 days, while the constructs at 2 months showed a clear difference in morphology, organization and cell type. It was possible to obtain a three-dimensional tissue construct from human dental ectomesenchymal cells achieving a degree of tissue organization that corresponds to the presence of cellular stratification and extracellular matrix."	"Genome-wide identification of genes required for fitness of group A Streptococcus in human blood. The group A streptococcus (GAS) is a strict human pathogen responsible for a wide spectrum of diseases. Although GAS genome sequences are available, functional genomic analyses have been limited. We developed a mariner-based transposon, osKaR, designed to perform Transposon-Site Hybridization (TraSH) in GAS and successfully tested its use in several invasive serotypes. A complex osKaR mutant library in M1T1 GAS strain 5448 was subjected to negative selection in human blood to identify genes important for GAS fitness in this clinically relevant environment. Mutants underrepresented after growth in blood (output pool) compared to growth in rich media (input pool) were identified using DNA microarray hybridization of transposon-specific tags en masse. Using blood from three different donors, we identified 81 genes that met our criteria for reduced fitness in blood from at least two individuals. Genes known to play a role in survival of GAS in blood were found, including those encoding the virulence regulator Mga (mga), the peroxide response regulator PerR (perR), and the RofA-like regulator Ralp-3 (ralp3). We also identified genes previously reported for their contribution to sepsis in other pathogens, such as de novo nucleotide synthesis (purD, purA, pyrB, carA, carB, guaB), sugar metabolism (scrB, fruA), zinc uptake (adcC), and transcriptional regulation (cpsY). To validate our findings, independent mutants with mutations in 10 different genes identified in our screen were confirmed to be defective for survival in blood bactericidal assays. Overall, this work represents the first use of TraSH in GAS to identify potential virulence genes."	"Reaction pathways by quantum Monte Carlo: insight on the torsion barrier of 1,3-butadiene, and the conrotatory ring opening of cyclobutene. Quantum Monte Carlo (QMC) methods are used to investigate the intramolecular reaction pathways of 1,3-butadiene. The ground state geometries of the three conformers s-trans, s-cis, and gauche, as well as the cyclobutene structure are fully optimised at the variational Monte Carlo (VMC) level, obtaining an excellent agreement with the experimental results and other quantum chemistry high level calculations. Transition state geometries are also estimated at the VMC level for the s-trans to gauche torsion barrier of 1,3-butadiene and for the conrotatory ring opening of cyclobutene to the gauche-1,3-butadiene conformer. The energies of the conformers and the reaction barriers are calculated at both variational and diffusional Monte Carlo levels providing a precise picture of the potential energy surface of 1,3-butadiene and supporting one of the two model profiles recently obtained by Raman spectroscopy [Boopalachandran et al., J. Phys. Chem. A 115, 8920 (2011)]. Considering the good scaling of QMC techniques with the system's size, our results also demonstrate how variational Monte Carlo calculations can be applied in the future to properly investigate the reaction pathways of large and correlated molecular systems."	"Effects of Tat proteins and Tat mutants of different human immunodeficiency virus type 1 clades on glial JC virus early and late gene transcription. Polyomavirus JC (JCV) is the aetiological agent of progressive multifocal leukoencephalopathy (PML), a frequently fatal infection of the brain afflicting nearly 4% of AIDS patients in the USA. Human immunodeficiency virus type 1 (HIV-1) Tat, acting together with cellular proteins at the JCV non-coding control region (NCCR), can stimulate JCV DNA transcription and replication. Tat in the brain is secreted by HIV-1-infected cells and incorporated by oligodendroglia, cells capable of infection by JCV. Thus far the effects of Tat on JCV have been studied primarily with protein encoded by the HIV-1 B clade most common in North America. Here, we determine the abilities of Tat from different HIV-1 clades to alter JCV early and late gene transcription and DNA replication initiated at the JCV origin. Tat from all clades tested stimulates both JCV early and late gene promoters, with clade B Tat being significantly most effective. Tat proteins from the HIV-1 clades display parallel patterns of differences in their effects on HIV-1 and JCV transcription, suggesting that Tat effects in both cases are mediated by the same cellular proteins. Clade B Tat is most effective at directing Smad mediators of tumour growth factor beta and cellular partner Purα to the NCCR. Tat proteins from all non-B clades inhibit initiation of JCV DNA replication. The effectiveness of HIV-1 clade B Tat at promoting JCV transcriptional and replicative processes highlights a need for further investigation to determine which molecular aspects of Tat from distinct HIV-1 substrains can contribute to the course of PML development in neuroAIDS."	"Metastasis of dermatofibrosarcoma from the abdominal wall to the thyroid gland: case report. Metastases in the thyroid gland are very rare. Even the rarer are sarcoma metastases. A 52-year-old woman was referred to our department for evaluation of a nodule in the right lobe of the thyroid gland. She had a history dermatosarcoma of the abdominal wall with known metastasis in the lung. Clinically she had neck pain and worsened swallowing. Objective assessment (ultrasound, computed tomography, and magnetic resonance) indicated a voluminous right lobe nodule with mechanical syndrome, and a fine-needle aspiration biopsy revealed a very suspicious malignant finding. After surgery, the diagnosis was metastasis of dermatofibrosarcoma protuberans. Subsequent treatment was radio- and chemotherapy."	"Regional features of the expression of genes involved in neurogenesis and apoptosis in the brain of adult rats. The expression of mRNA of genes involved in neurogenesis and apoptosis (Apaf1, Ascl1, Bax, Bcl2, Casp3, Casp8, Casp9, Dffb, Myh10, Naip2, Napa, Notch2, Numb, Pura, S100a6, Tnf) in the prefrontal cortex, hippocampus, and cerebellum was studied in adult rats. The content of mRNA of these genes (except Apaf1) was several-fold higher in the cerebellum than in the hippocampus and brain cortex. In the hippocampus, the expression of Apaf1 was significantly lower than in the prefrontal cortex, while the expression of Ascl1, Pura, S100b, and Tnf was higher. Regional differences in the direction, strength, and numbers of significant correlations between the expression of the studied genes were detected. Documented differences in gene expression were regarded as validation of the structural and functional cooperation of neurogenesis and apoptosis at the molecular genetic level."	"Lot-to-lot variability of test strips and accuracy assessment of systems for self-monitoring of blood glucose according to ISO 15197. Accurate and reliable blood glucose (BG) measurements require that different test strip lots of the same BG monitoring system provide comparable measurement results. Only a small number of studies addressing this question have been published. In this study, four test strip lots for each of five different BG systems [Accu-Chek® Aviva (system A), FreeStyle Lite® (system B), GlucoCheck XL (system C), Pura™/mylife™ Pura (system D), and OneTouch® Verio™ Pro (system E)] were evaluated with procedures according to DIN EN ISO 15197:2003. The BG system measurement results were compared with the manufacturer's measurement procedure (glucose oxidase or hexokinase method). Relative bias according to Bland and Altman and system accuracy according to ISO 15197 were analyzed. A BG system consists of the BG meter itself and the test strips. The maximum lot-to-lot difference between any two of the four evaluated test strip lots per BG system was 1.0% for system E, 2.1% for system A, 3.1% for system C, 6.9% for system B, and 13.0% for system D. Only two systems (systems A and B) fulfill the criteria of DIN EN ISO 15197:2003 with each test strip lot. Considerable lot-to-lot variability between test strip lots of the same BG system was found. These variations add to other sources of inaccuracy with the specific BG system. Manufacturers should regularly and effectively check the accuracy of their BG meters and test strips even between different test strip lots to minimize risk of false treatment decisions."	"Efficacy of fenbendazole, levamisole and ivermectin against gastrointestinal nematodes in Jamunapari goats. Efficacy of fenbendazole, levamisole and ivermectin was checked in comparison to untreated controls in twenty Jamunapari goats, naturally infected with gastrointestinal nematode parasites. Faecal examination at day 0 revealed an egg per gram of 930 ± 175.1, 1350 ± 421.1, 1060 ± 224.9 and 800 ± 279.7 in group A, B, C and D, respectively having five animals each. The results of larval culture examination revealed the presence of Haemonchus, Trichostrongylus, Oesophagostomum, Bunostomum and Strongyloides spp. in these animals. Faecal egg counts of the animals treated with fenbendazole (group A), levamisole (group B) and ivermectin (group C) were reduced by 23.66, 63.70 and 98.11%, respectively on day 14 post-treatment."	"Computation of anomalous scaling exponents of turbulence from self-similar instanton dynamics. We show that multiscaling properties of developed turbulence in shell models, which lead to anomalous scaling exponents in the inertial range, are determined exclusively by instanton dynamics. Instantons represent correlated extreme events localized in space-time, whose structure is described by self-similar statistics with a single universal scaling exponent. We show that anomalous scaling exponents appear due to the process of instanton creation. A simplified model of instanton creation is suggested, which adequately describes this anomaly."	"Renormalization and universality of blowup in hydrodynamic flows. We consider self-similar solutions describing intermittent bursts in shell models of turbulence and study their relationship with blowup phenomena in continuous hydrodynamic models. First, we show that these solutions are very close to self-similar solution for the Fourier transformed inviscid Burgers equation corresponding to shock formation from smooth initial data. Then, the result is generalized to hyperbolic conservation laws in one space dimension describing compressible flows. It is shown that the renormalized wave profile tends to a universal function, which is independent both of initial conditions and of a specific form of the conservation law. This phenomenon can be viewed as a new manifestation of the renormalization group theory. Finally, we discuss possibilities for application of the developed theory for detecting and describing a blowup in incompressible flows."	"Structural and spectroscopic properties of water around small hydrophobic solutes. We investigated the structural, dynamical and spectroscopic properties of water molecules around a solvated methane by means of Car-Parrinello molecular dynamics simulations. Despite their mobility, in the first shell, water molecules are dynamically displaced in a clathrate-like cage around the hydrophobic solute. No significant differences in water geometrical parameters, in molecular dipole moments or in hydrogen bonding properties, are observed between in-shell and out-shell molecules, indicating that liquid water can accommodate a small hydrophobic solute without altering its structural properties. The calculated contribution of the first-shell water molecules to the infrared spectra does not show significant differences with respect the bulk signal once the effects of the missing polarization of second-shell molecules has been taken into account. Small fingerprints of the clathrate-like structure appear in the vibrational density of states in the libration and OH stretching regions."	"Capture and identification of proteins that bind to a GGA-rich sequence from the ERBB2 gene promoter region. The ERBB2 gene (HER2/neu) is overexpressed in many human breast cancers. It is an important therapeutic target and its product protein is a key biomarker for breast cancer. A 28-bp GGA repeat sequence (Pu28-mer) in the nuclease hypersensitive site of the ERBB2 promoter region may play an important role in the regulation of ERBB2 transcription, possibly involving the formation of a G-quadruplex. In order to investigate this possibility, an affinity MALDI-MS approach was used for in vitro protein capture from nuclear extracts from cultured MCF-7 and BT-474 cancer cells at Pu28-mer and control oligonucleotide-modified surfaces. Captured proteins from MCF-7 cells were analyzed by LC-MS/MS. Based on these results, Western blot was then used to interrogate captured proteins from both MCF-7 and the Her-2/neu-positive BT-474 cells. Results support the formation of a G-quadruplex by Pu28-mer, indicated by circular dichroism spectroscopy, that selectively captures transcription factors including Ku70, Ku80, PURA, nucleolin, and hnRNP K. Chromatin immunoprecipitation confirmed binding of Ku70, Ku80, PURA, and nucleolin to ERBB2 promoter in the live BT-474 cells. These findings may lead to a better understanding of the role of non-duplex DNA structures in gene regulation and provide a more complete picture of the regulation of ErbB2 expression in breast cancer. The results also provide a blueprint for development of &quot;genome-inspired&quot; aptamers based on the Pu28-mer sequence for in vitro and in vivo detection of proteins related to regulation of ERBB2 gene expression and breast cancer."	"Assessment of metabolic stability using the rainbow trout (Oncorhynchus mykiss) liver S9 fraction. Standard protocols are given for assessing metabolic stability in rainbow trout using the liver S9 fraction. These protocols describe the isolation of S9 fractions from trout livers, evaluation of metabolic stability using a substrate depletion approach, and expression of the result as in vivo intrinsic clearance. Additional guidance is provided on the care and handling of test animals, design and interpretation of preliminary studies, and development of analytical methods. Although initially developed to predict metabolism impacts on chemical accumulation by fish, these procedures can be used to support a broad range of scientific and risk assessment activities including evaluation of emerging chemical contaminants and improved interpretation of toxicity testing results. These protocols have been designed for rainbow trout and can be adapted to other species as long as species-specific considerations are modified accordingly (e.g., fish maintenance and incubation mixture temperature). Rainbow trout is a cold-water species. Protocols for other species (e.g., carp, a warm-water species) can be developed based on these procedures as long as the specific considerations are taken into account."	"Translation of Pur-α is targeted by cellular miRNAs to modulate the differentiation-dependent susceptibility of monocytes to HIV-1 infection. The postentry restriction of HIV-1 replication in monocytes can be relieved when they differentiate to dendritic cells (DCs) or macrophages. Multiple mechanisms have been proposed to interpret the differentiation-dependent susceptibility of monocytes to HIV-1 infection, and the absence of host-cell-encoded essential factors for HIV-1 completing the life cycle may provide an explanation. We have analyzed the gene expression profile in monocytes by mRNA microarray and compared it with that of differentiated DCs. We demonstrated that purine-rich element binding protein α (Pur-α), a host-cell-encoded ubiquitous, sequence-specific DNA- and RNA-binding protein, showed inadequate expression in monocytes, and the translation of Pur-α mRNA was repressed by cell-expressed microRNA (miRNA). These Pur-α-targeted miRNAs modulated the differentiation-dependent susceptibility of monocytes/DCs to HIV-1 infection, because rescue of Pur-α expression by transfection of miRNA inhibitors relieved the restriction of HIV-1 infection in monocytes, and ectopic input of miRNA mimics significantly reduced HIV-1 infection of monocyte-derived DCs (MDDCs). Collectively, our data emphasized that inadequate host factors contribute to HIV-1 restriction in monocytes, and cellular miRNAs modulate differentiation-dependent susceptibility of host cells to HIV-1 infection. Elaboration of HIV-1 restriction in host cells facilitates our understanding of viral pathogenesis and the search for a new antiviral strategy."	"Effect of urbanisation on the relationship between total serum IgE and asthma. It is unclear if the relationship of total serum IgE with asthma varies with degree of urbanisation. We hypothesised that the relationship of total serum IgE to asthma is more pronounced in an urban versus a rural environment. We enrolled 1441 children aged 13-15 years in a peri-urban shanty town in Lima, Peru (n=725) and 23 villages in rural Tumbes, Peru (n=716). We asked participants about asthma and allergy symptoms, environmental exposures and sociodemographics; and performed spirometry, and exhaled nitric oxide and allergy skin testing. We obtained blood for total serum IgE in 1143 (79%) participants. Geometric means for total serum IgE were higher in Lima versus Tumbes (262 versus 192 kU·L(-1); p&lt;0.001). The odds of asthma increased by factors of 1.6 (95% CI 1.3-2.0) versus 1.4 (95% CI 0.9-2.1) per log unit increase in total serum IgE in Lima versus Tumbes, respectively. Atopy was an effect modifier of the relationship of total serum IgE on asthma. Among atopics and non-atopics, the odds of asthma increased by a factor of 2.0 (95% CI 1.5-2.7) and 1.0 (95% CI 0.7-1.4) per log unit increase in total serum IgE, respectively. Total serum IgE was associated with atopic asthma but not with non-atopic asthma. Urbanisation did not appear to be an effect modifier of this relationship."	"Evaluation of pesticide residues in farmgate samples of vegetables in Karnataka, India. Fifty Vegetable samples (Beans, Brinjal, Cabbage and Carrot) grown in Kolar district of Karnataka, India were analysed for 20 pesticide residues by gas liquid chromatography equipped with ECD and FTD. Recovery studies were performed at 0.1, 0.5 and 1.0 mg kg(-1) fortification levels of each compound and the recoveries obtained ranged from 73.0% to 96.6% with relative standard deviations lower than 7.5%. The method showed good linearity over the range assessed 0.01-1.0 mg Kg(-1) with correlation coefficient &gt;0.998 and the detection and quantification limits for the pesticides studied varied from 0.0001 to 0.002 mg Kg(-1) and 0.0001-0.001 mg Kg(-1), respectively. All the samples were found to be contaminated, the organo chlorines (97%) dominated followed by organophosphates (83%) and pyrethroids (60%). However, 58% of the samples were found to contain the residues of these insecticides above their respective maximum residue limits (MRL). It is therefore proposed to perform extensive monitoring studies covering all the vegetable crops from different agro-climatic regions of the Karnataka to know the exact status of pesticide contamination."	"Identification of genes important for growth of asymptomatic bacteriuria Escherichia coli in urine. Escherichia coli is the most important etiological agent of urinary tract infections (UTIs). Unlike uropathogenic E. coli, which causes symptomatic infections, asymptomatic bacteriuria (ABU) E. coli strains typically lack essential virulence factors and colonize the bladder in the absence of symptoms. While ABU E. coli can persist in the bladder for long periods of time, little is known about the genetic determinants required for its growth and fitness in urine. To identify such genes, we have employed a transposon mutagenesis approach using the prototypic ABU E. coli strain 83972 and the clinical ABU E. coli strain VR89. Six genes involved in the biosynthesis of various amino acids and nucleobases were identified (carB, argE, argC, purA, metE, and ilvC), and site-specific mutants were subsequently constructed in E. coli 83972 and E. coli VR89 for each of these genes. In all cases, these mutants exhibited reduced growth rates and final cell densities in human urine. The growth defects could be complemented in trans as well as by supplementation with the appropriate amino acid or nucleobase. When assessed in vivo in a mouse model, E. coli 83972carAB and 83972argC showed a significantly reduced competitive advantage in the bladder and/or kidney during coinoculation experiments with the parent strain, whereas 83972metE and 83972ilvC did not. Taken together, our data have identified several biosynthesis pathways as new important fitness factors associated with the growth of ABU E. coli in human urine."	"Clinical phenotype and candidate genes for the 5q31.3 microdeletion syndrome. Array-based technologies have led to the identification of many novel microdeletion and microduplication syndromes demonstrating multiple congenital anomalies and intellectual disability (MCA/ID). We have used chromosomal microarray analysis for the evaluation of patients with MCA/ID and/or neonatal hypotonia. Three overlapping de novo microdeletions at 5q31.3 with the shortest region of overlap (SRO) of 370 kb were detected in three unrelated patients. These patients showed similar clinical features including severe neonatal hypotonia, neonatal feeding difficulties, respiratory distress, characteristic facial features, and severe developmental delay. These features are consistent with the 5q31.3 microdeletion syndrome originally proposed by Shimojima et al., providing further evidence that this syndrome is clinically discernible. The 370 kb SRO encompasses only four RefSeq genes including neuregulin 2 (NRG2) and purine-rich element binding protein A (PURA). NRG2 is one of the members of the neuregulin family related to neuronal and glial cell growth and differentiation, thus making NRG2 a good candidate for the observed phenotype. Moreover, PURA is also a good candidate because Pura-deficient mice demonstrate postnatal neurological manifestations."	"Molecular Electrical Properties from Quantum Monte Carlo Calculations: Application to Ethyne. We used Quantum Monte Carlo (QMC) methods to study the polarizability and the quadrupole moment of the ethyne molecule using the Jastrow-Antisymmetrised Geminal Power (JAGP) wave function, a compact and strongly correlated variational ansatz. The compactness of the functional form and the full optimization of all its variational parameters, including linear and exponential coefficients in atomic orbitals, allow us to observe a fast convergence of the electrical properties with the size of the atomic and Jastrow basis sets. Both variational results on isotropic polarizability and quadrupole moment based on Gaussian type and Slater type basis sets are very close to the Lattice Regularized Diffusion Monte Carlo values and in very good agreement with experimental data and with other quantum chemistry calculations. We also study the electronic density along the C≡C and C-H bonds by introducing a generalization for molecular systems of the small-variance improved estimator of the electronic density proposed by Assaraf et al. (Assaraf, R.; Caffarel, M.; Scemama, A. Phys. Rev. E, 2007, 75, 035701). "	"First Report of Powdery Mildew of Pumpkin Caused by Golovinomyces cichoracearum in Neelum Valley, Azad Kashmir. During July 2011, a severe powdery mildew outbreak was recorded in pumpkin (Cucurbita moschata Duch.) fields in economically poor areas in the Neelum Valley (Leswa, Mir Pura, Jura, Kundal Shahi, and Bela). Disease symptoms included grayish white circular to irregular patches consisting of epiphytic mycelia and conidia on both surfaces of the leaves of infected vines. Fungal mycelia and conidiophores were also visible in white powdery patches on the main stems, leaves, and petioles of affected plants. Leaves became necrotic with age. Powdery mildew symptoms were more severe on pumpkin vines located in the shade, and severely affected vines collapsed. A voucher specimen (IR00027) has been deposited in First Fungal Culture Bank of the Pakistan (FCBP), Institute of Agriculture Sciences, University of the Punjab, Lahore, Pakistan. For morphological observation, a clear tape strip was used to remove fungal tissue from infected leaves. The tape was mounted on microscope slides with water and examined with a light microscope (2). Conidiophores were unbranched, cylindrical, erect and arose singly on hyphal cells, 110 to 200 × 6 to 12 μm, composed of a foot cell and three to eight barrel-shaped conidia formed in chains with a sinuate edge, followed with a basal septum at the branching point or slightly displaced from the mycelium. Foot cells were 50 to 80 × 6 to 12 μm, and slightly swollen with constriction at the base. Conidia were cylindrical to doliiform, 30 to 50 × 14 to 20 μm and produced in chains. The length/breadth ratio of the conidia was 1.8 to 2.6. Fibrosin bodies were absent in both conidiophores and conidia. No cleistothecia were observed. Identification of the causal agent as Golovinomyces cichoracearum (DC.) V.P. Heluta (synonym Erysiphe cichoracearum) was based on morphology (1). Pathogenicity was determined using field-infected plant leaves transported to a greenhouse. Fresh conidia of field isolates of G. cichoracearum were transferred by a sterile brush from the affected leaves to fully expanded four to five healthy leaves of three 40-day-old vines. For the control, three vines were stroked with a clean sterile brush and control plants were placed 100 m away from the inoculated plants. For disease development 20°C and 80% relative humidity was maintained in the greenhouse. A plastic sheet was placed around each vine for a week and removed later. Inoculated vines developed visible white spots of powdery mildew on the leaves after 10 days in the greenhouse, whereas control plants remained asymptomatic. Fungal colony and conidial morphology on the leaves of inoculated plants were as described above. Previously, G. cichoracearum has been reported on other cucurbits (3) in the plains of Pakistan. To our knowledge, this is the first report of occurrence of G. cichoracearum as a causal agent of powdery mildew on pumpkin in Neelum Valley, Azad Kashmir. References: (1) U. Braun. Beih. Nova Hedwigia 89:1, 1987. (2) J. C. Correll et al. Plant Dis. 71:248, 1987. (3) A. Wahid et al. Pak. J. Agric. Res. 9:209, 1988."	"Changes in the Seminiferous Epithelium of the Testes during Postnatal Development in Assam Goat. The present work is conducted to elucidate the postnatal development of the seminiferous epithelium of the testes of the Assam goats from 0 day to 10 months of age. A total of eighteen Assam goats divided into six age groups, namely, group-I (0-day), group-II (2 months), group-III (4 months), group-IV (6 months), group-V (8 months), and group-VI (10 months), consisting of 3 animals in each group were used in this study. The seminiferous tubules did not have lumina up to the age of 2 months, hence called the sex cords, and these contained centrally placed gonocytes and peripherally located sustentacular cells. Initiation of spermatogenesis started in 4-month old kids. Luminization process was completed by 6 months of age with all the seminiferous tubuyes having well-developed lumina at this age. These seminiferous tubules contained all the spermatogenic cells of the adult testis. Onset of puberty was observed to be established at 6 months of age in the Assam goats as evidenced by presence of spermatozoa adhering to the adluminal border of the Sertoli cells as well as in the tubular lumen. The histomorphology of various cells of the seminiferous epithelium has been described."	"Pur-alpha regulates RhoA developmental expression and downstream signaling. Pur-alpha is an essential protein for postnatal brain development which localizes specifically to dendrites where it plays a role in the translation of neuronal RNA. Mice lacking Pur-alpha display decreased neuronogenesis and impaired neuronal differentiation. Here we examined two Rho GTPases, Rac1 and RhoA, which play opposing roles in neurite outgrowth and are critical for dendritic maturation during mouse brain development in the presence and absence of Pur-alpha. Pur-alpha is developmentally regulated in the mouse brain with expression beginning shortly after birth and rapidly increasing to peak during the third week of postnatal development. RhoA levels analyzed by Western blotting rapidly fluctuated in the wild-type mouse brain, however, in the absence of Pur-alpha, a decrease in RhoA levels shortly after birth and a delay in the cycling of RhoA regulation was observed leading to reduced basal levels of RhoA after day 10 postnatal. Immunohistochemistry of brain tissues displayed reduced RhoA levels in the cortex and cerebellum and loss of perinuclear cytoplasmic labeling of RhoA within the cortex in the knockout mouse brain. While Rac1 levels remained relatively stable at all time points during development and were similar in both wild-type and Pur-alpha knockout mice, changes in subcellular localization of Rac1 were seen in the absence of Pur-alpha. These findings suggest that Pur-alpha can regulate RhoA at multiple levels including basal protein levels, subcellular compartmentalization, as well as turnover of active RhoA in order to promote dendritic maturation."	"Activation of -N=CH- bond in a Schiff base by divalent nickel monitored by NMR evidence. The Schiff base, 2-salicylidene-4-aminophenyl benzimidazole in ethanol undergoes activation of -N=CH- bond by Ni(2+) in the presence of ammonia or primary alkyl amine to produce nickel complexes of the formula Ni{o-C(6)H(4)(O)CH NR}(2) . n H(2)O [R = H, Me; n = 0; R = Et, n = 0.5] and 4-aminophenyl benzimidazole. The products have been identified by elemental analysis, magnetic susceptibility measurements and IR, ESR, mass and extensive NMR spectral studies. The possible mechanism for the activation of -N=CH- bond has also been proposed."	"Purine biosynthesis mutants (purA and purB) of serotype 4b Listeria monocytogenes are severely attenuated for systemic infection in intragastrically inoculated A/J Mice. In this study, we demonstrate that purA and purB transposon mutants of serotype 4b Listeria monocytogenes were severely impaired in their ability to colonize the gastrointestinal tract and cause systemic infection of the spleen, liver, and gallbladder following intragastric inoculation of A/J mice. The mutant strains were also impaired in their ability to multiply within Caco-2 human intestinal epithelial cells. Neither mutant was affected in resistance to synthetic gastric fluid (pH 4.5). These findings indicate that purine biosynthesis is critical for gastrointestinal virulence of L. monocytogenes serotype 4b in mice."	"Prevalence of mental retardation among children in RS Pura town of Jammu and Kashmir. To determine the Prevalence of mental retardation in children 3 to 10 years of age. The study was conducted in the framework of a population based, single centre, cross-sectional study at R.S.Pura town, 22 kms south- west of Jammu city. A total of 61 (0.79 percent) of the 7,707 children surveyed had positive screening results on the Ten Questions instrument. 56 (0.72percent) children were diagnosed as suffering from mental retardation. Serious mental retardation was diagnosed in 48 children and mild mental retardation was diagnosed in 8 children. The combined prevalence estimates of mild and serious mental retardation were 7.2/1000. No notable sex differences were observed for either serious or mild retardation. The prevalence rates of mental retardation among children less than 19 years of age in R. S. town compares favorably with studies from developed world."	"Prevalence of neurological disorders in children less than 10 years of age in RS Pura town of Jammu and Kashmir. To determine the prevalence of major neurological disorders in children less than 10 years of age. The study was conducted in the framework of a population based, single centre, cross-sectional study at Ranbir Singh Pura town, 22 km south-west of Jammu city. Eight cases of active epilepsy with a crude prevalence rate of 202 (95% confidence interval [CI] 180-220), five cases of Febrile seizures with a crude prevalence of 126 (95% CI 110-140) and eleven cases of cerebral palsy with a crude prevalence rate of 277 (95% CI 245-309) per 100,000 were found. Very few cases of other major neurological disorders were found. The prevalence rate of these disorders is estimated at same level as for other disorders such as - Post-meningitic sequelae, Infantile hemiparesis, Spinal deformity and Tic disorder is at 25 (95% CI 15-34) per 100,000. On the basis of the data obtained, the present study provides some valuable data on common neurological diseases among children in RS Pura town of Jammu district of Jammu and Kashmir."	"Statistical 4D graphs for multi-organ abdominal segmentation from multiphase CT. The interpretation of medical images benefits from anatomical and physiological priors to optimize computer-aided diagnosis applications. Diagnosis also relies on the comprehensive analysis of multiple organs and quantitative measures of soft tissue. An automated method optimized for medical image data is presented for the simultaneous segmentation of four abdominal organs from 4D CT data using graph cuts. Contrast-enhanced CT scans were obtained at two phases: non-contrast and portal venous. Intra-patient data were spatially normalized by non-linear registration. Then 4D convolution using population training information of contrast-enhanced liver, spleen and kidneys was applied to multiphase data to initialize the 4D graph and adapt to patient-specific data. CT enhancement information and constraints on shape, from Parzen windows, and location, from a probabilistic atlas, were input into a new formulation of a 4D graph. Comparative results demonstrate the effects of appearance, enhancement, shape and location on organ segmentation. All four abdominal organs were segmented robustly and accurately with volume overlaps over 93.6% and average surface distances below 1.1mm."	"The Peru Urban versus Rural Asthma (PURA) Study: methods and baseline quality control data from a cross-sectional investigation into the prevalence, severity, genetics, immunology and environmental factors affecting asthma in adolescence in Peru. According to a large-scale international survey, Peru has one of the highest prevalences of asthma worldwide; however, data from this survey were limited to participants from urban Lima. The authors sought to characterise the epidemiology of asthma in Peru in two regions with disparate degrees of urbanisation. In this manuscript, the authors summarise the study design and implementation. A cross-sectional study. Using census data of 13-15-year-old adolescents from two communities in Peru, the authors invited a random sample of participants in Lima (n=725) and all adolescents in Tumbes (n=716) to participate in our study. The authors asked participants to complete a questionnaire on asthma symptoms, environmental exposures and socio-demographics and to undergo spirometry before and after bronchodilator, skin allergy testing and exhaled nitric oxide testing. The authors obtained blood samples for haematocrit, total IgE levels, vitamin D levels and DNA in all participants and measured indoor particulate matter concentrations for 48 h in a random subset of 70-100 households at each site. Of 1851 eligible participants, 1441 (78%) were enrolled and 1159 (80% of enrolled) completed all physical tests. 1283 (89%) performed spirometry according to standard guidelines, of which 86% of prebronchodilator tests and 92% of postbronchodilator tests were acceptable and reproducible. 92% of allergy skin tests had an adequate negative control. The authors collected blood from 1146 participants (79%) and saliva samples from 148 participants (9%). Overall amounts of DNA obtained from blood or saliva were 25.8 μg, with a 260/280 ratio of 1.86. This study will contribute to the characterisation of a variety of risk factors for asthma, including urbanisation, total IgE levels, vitamin D levels and candidate genes, in a resource-poor setting. The authors present data to support high quality of survey, allergic, spirometric and genetic data collected in our study."	"Defects in purine nucleotide metabolism lead to substantial incorporation of xanthine and hypoxanthine into DNA and RNA. Deamination of nucleobases in DNA and RNA results in the formation of xanthine (X), hypoxanthine (I), oxanine, and uracil, all of which are miscoding and mutagenic in DNA and can interfere with RNA editing and function. Among many forms of nucleic acid damage, deamination arises from several unrelated mechanisms, including hydrolysis, nitrosative chemistry, and deaminase enzymes. Here we present a fourth mechanism contributing to the burden of nucleobase deamination: incorporation of hypoxanthine and xanthine into DNA and RNA caused by defects in purine nucleotide metabolism. Using Escherichia coli and Saccharomyces cerevisiae with defined mutations in purine metabolism in conjunction with analytical methods for quantifying deaminated nucleobases in DNA and RNA, we observed large increases (up to 600-fold) in hypoxanthine in both DNA and RNA in cells unable to convert IMP to XMP or AMP (IMP dehydrogenase, guaB; adenylosuccinate synthetase, purA, and ADE12), and unable to remove dITP/ITP and dXTP/XTP from the nucleotide pool (dITP/XTP pyrophosphohydrolase, rdgB and HAM1). Conversely, modest changes in xanthine levels were observed in RNA (but not DNA) from E. coli lacking purA and rdgB and the enzyme converting XMP to GMP (GMP synthetase, guaA). These observations suggest that disturbances in purine metabolism caused by known genetic polymorphisms could increase the burden of mutagenic deaminated nucleobases in DNA and interfere with gene expression and RNA function, a situation possibly exacerbated by the nitrosative stress of concurrent inflammation. The results also suggest a mechanistic basis for the pathophysiology of human inborn errors of purine nucleotide metabolism."	"Relationship between roll-off occurrence and spatial distribution of dehydrated tissue during RF ablation with cooled electrodes. To study the relationship between roll-off (sudden increase in impedance) and spatial distribution of dehydrated tissue during RF ablation using a cooled electrode (temperatures around 100°C). We used a double approach: (1) theoretical modelling based on the finite element method, and (2) 20 ablations using an experimental study on ex vivo excised bovine liver in which we measured impedance progress and temperature at three points close to the electrode surface: 0.5 (T1), 1.5 (T2) and 2.5 (T3) mm from the tip. T2 was located exactly at the centre of the 30 mm long electrode. Temperatures at T1 and T3 quickly rose to 100°C (at ≈20 and 40 s, respectively), while at the rise at T2 was somewhat slower, stabilized around 50 s and reached a maximum value of 99°C at about 60 s. Impedance reached a minimum of 65 Ω (plateau), began increasing at 50 s and continued rising throughout the procedure, reaching a value equal to the initial value at 70 s. Likewise, computed impedance dropped to ≈73 Ω (plateau), began increasing at 50 s and reached an impedance value equal to the initial value at ≈78 s, which approximately coincided with the time when the entire zone surrounding the electrode was within the 100°C isotherm. There is a close relationship between the moment at which roll-off occurs and the time when the entire electrode is completely encircled by the dehydrated tissue. The mid-electrode zone is the last in which tissue desiccation occurs."	"Predominance of rotavirus genotype G6P[11] in diarrhoeic lambs. Out of 500 faecal samples from lambs with diarrhoea in Jammu and Kashmir, India, 66 (13.2%) were positive for group A rotavirus (GARV) by the latex agglutination test (LAT). Electropherotyping by RNA-polyacrylamide gel electrophoresis revealed the typical GARV 4-2-3-2 migration pattern in 49/66 (74.2%) samples. Fifty-two samples (10.4%) were positive by reverse transcription-PCR. G6 was the predominant G genotype (25/52; 48.07%), followed by G10 (19/52; 36.54%) whereas, the predominant P genotype was P[11] (46/52; 88.46%). G6P[11] is the prevalent strain of group A rotavirus in sheep in Jammu and Kashmir, India."	"The two-stage dynamics in the Fermi-Pasta-Ulam problem: from regular to diffusive behavior. A numerical and analytical study of the relaxation to equilibrium of both the Fermi-Pasta-Ulam (FPU) α-model and the integrable Toda model, when the fundamental mode is initially excited, is reported. We show that the dynamics of both systems is almost identical on the short term, when the energies of the initially unexcited modes grow in geometric progression with time, through a secular avalanche process. At the end of this first stage of the dynamics, the time-averaged modal energy spectrum of the Toda system stabilizes to its final profile, well described, at low energy, by the spectrum of a q-breather. The Toda equilibrium state is clearly shown to describe well the long-living quasi-state of the FPU system. On the long term, the modal energy spectrum of the FPU system slowly detaches from the Toda one by a diffusive-like rising of the tail modes, and eventually reaches the equilibrium flat shape. We find a simple law describing the growth of tail modes, which enables us to estimate the time-scale to equipartition of the FPU system, even when, at small energies, it becomes unobservable."	"Determinants of Prelacteal Feeding Among Infants of RS Pura Block of Jammu and Kashmir, India. To assess the role of various factors in determining prelacteal feeding in block R.S. Pura of district Jammu. A stratified two-stage design with villages as the primary sampling unit and lactating mothers as the secondary sampling unit. Villages were divided into different clusters on the basis of population and sampling units were selected by a simple random technique. Giving prelacteal feed is almost universal with 88% of mothers feeding their children with prelacteal feeds. Income seemed to have significant effect on the preference of prelacteal feeds with low income groups showing lower preference for giving prelacteal feeds. The study showed, interalia, that a poor knowledge regarding infant feeding practice was prevalent among mothers."	"Identification of two new serotypes within serogroup B of Dichelobacter nodosus. The present study records the strain-specific molecular typing system for Dichelobacter nodosus (D. nodosus) based on genetic analysis of fimA locus. Based on the study two new serotypes B5 and B6 are reported within the serogroup B. Out of 200 swab samples collected randomly from foot lesions of footrot affected sheep from all the districts of Kashmir, India, 122 (61.0%) detected positive for D. nodosus. Serogroup B was predominantly prevalent in 83.60% of positive samples. Restriction fragment length polymorphism (RFLP) of polymerase chain reaction (PCR) amplified fimA gene of D. nodosus serogroup B revealed only two fingerprint patterns (FP) designated as FP1 and FP2. The FP1 was most prevalent and depicted by 82.35% of the samples with serogroup B while, FP2 was depicted by rest (17.65%) of the samples. Though the FP1 fimA sequence had the homology of 95% to D. nodosus fimA of serotype B4 isolate VRS 54, but there were 14 nucleotide differences and four nucleotide insertions/deletions in the coding sequence between these two strains resulting in eight amino acid substitutions in the fimbrial subunit. Similarly the FP2 fimA showed the sequence homology of 97% with D. nodosus fimA of serotype B2 isolate 183, with 10 nucleotide differences and three nucleotide insertions/deletions between these two sequences. This resulted in six amino acid substitutions, plus an amino acid length variation in the subunit protein. Thus it was presumed that these FP1 and FP2 strains represented new serotypes (B5 and B6, correspondingly) within the B serogroup as the degree of amino acid sequence difference with their nearest homologous strains was much greater than that within a serotype (0-5 amino acid differences), but comparable to that between serotypes (8-15 amino acid differences). This presumption was confirmed by cross tube agglutination test."	"Applicator for RF thermokeratoplasty: feasibility study using theoretical modeling and ex vivo experiments. Radiofrequency (RF) thermokeratoplasty uses RF currents to alter the curvature of the cornea by means of thermal lesions. An RF applicator which combined a microkeratome suction ring and a circular electrode was designed with the aim of creating circular thermal lesions in a predictable, uniform and safe way. An experimental study was conducted on ex vivo porcine eyes. A theoretical model was also designed. The experimental results showed a lesion depth of 34.2 ± 11.0% of corneal thickness at a constant voltage of 50 V up to roll-off (1000 Ω of impedance). With a voltage of 30 V for 30 s the mean depth was 36.8 ± 8.1%. The progress of electrical impedance throughout heating and lesion dimensions were used to compare the experimental and theoretical results. Both the impedance evolution and lesion dimensions obtained from the theoretical model showed good agreement with the experimental findings. The findings suggest that the new applicator could be a suitable option for creating uniform circular thermal lesions."	"Robustifying vector median filter. This paper describes two methods for impulse noise reduction in colour images that outperform the vector median filter from the noise reduction capability point of view. Both methods work by determining first the vector median in a given filtering window. Then, the use of complimentary information from componentwise analysis allows to build robust outputs from more reliable components. The correlation among the colour channels is taken into account in the processing and, as a result, a more robust filter able to process colour images without introducing colour artifacts is obtained. Experimental results show that the images filtered with the proposed method contain less noisy pixels than those obtained through the vector median filter. Objective measures demonstrate the goodness of the achieved improvement."	"Construction of a chassis for hydrogen production: physiological and molecular characterization of a Synechocystis sp. PCC 6803 mutant lacking a functional bidirectional hydrogenase. Cyanobacteria are photosynthetic prokaryotes that are promising 'low-cost' microbial cell factories due to their simple nutritional requirements and metabolic plasticity, and the availability of tools for their genetic manipulation. The unicellular non-nitrogen-fixing Synechocystis sp. PCC 6803 is the best studied cyanobacterial strain and its genome was the first to be sequenced. The vast amount of physiological and molecular data available, together with a relatively small genome, makes Synechocystis suitable for computational metabolic modelling and to be used as a photoautotrophic chassis in synthetic biology applications. To prepare it for the introduction of a synthetic hydrogen producing device, a Synechocystis sp. PCC 6803 deletion mutant lacking an active bidirectional hydrogenase (ΔhoxYH) was produced and characterized at different levels: physiological, proteomic and transcriptional. The results showed that, under conditions favouring hydrogenase activity, 17 of the 210 identified proteins had significant differential fold changes in comparisons of the mutant with the wild-type. Most of these proteins are related to the redox and energy state of the cell. Transcriptional studies revealed that only six genes encoding those proteins exhibited significant differences in transcript levels. Moreover, the mutant exhibits similar growth behaviour compared with the wild-type, reflecting Synechocystis plasticity and metabolic adaptability. Overall, this study reveals that the Synechocystis ΔhoxYH mutant is robust and can be used as a photoautotrophic chassis for the integration of synthetic constructs, i.e. molecular constructs assembled from well characterized biological and/or synthetic parts (e.g. promoters, regulators, coding regions, terminators) designed for a specific purpose."	"Mixed gonadal dysgenesis: whole life follow-up of a rare case. There are two forms of gonadal dysgenesis - mixed and pure. In the mixed form, some differentiated gonads as well as some either ovarian or testicular rudiments are present. This form results in a number of phenotypes with a possibility of malignant transformation. In the pure form occurring in female gender, also some rudimental gonads are bilaterally present. In the case of simultaneous presence of Y chromosome, also some malignant transformation may appear (Siklar et al. 2007). Chromosomal aberrations are present in 2-7 % adult pairs with fertility disorders and in 0.6 % of newborns. However, only few cases with similar chromosomal aberrations were described so far (Roubin et al. 1977; Alexander et al. 1978; Teyssier et al. 1982; Caglayan et al. 2009). Mixed gonadal dysgenesis presents as a unilateral testis, usually intraabdominal, also with a streak gonad on contralateral side, and persistent mullerian structures. 45X/45XY karyotype is the most frequent in such cases with predominance of 45X cells in both peripheral lymphocytes and gonads. We present a rare case of a left undescended testis, normally descended right testis, with penoscrotal hypospadias, who had a normal karyotype and whose histopathological findings were endometrial tissue and fallopian tube in left testicular biopsy. Gonadal dysgenesis should always be kept in mind because of a possibility of undescended testis and proximal hypospadias. If karyotype reveals a 46XY gonadal dysgenesis, these patients need the careful follow-up to screen for gonadoblastoma in remaining normal testis. Subjecting the patients to prophylactic orchidectomy with hormone replacement can be an additional option in such patients."	"Lack of Pur-alpha alters postnatal brain development and causes megalencephaly. Pur-alpha (Purα) plays an important role in a variety of cellular processes including transcriptional regulation, cell proliferation and oncogenic transformation. To better understand the role of Purα in the developing and mature brain, we generated Purα-deficient mice, which we were able to raise to the age of six months. Purα(-/-) mice were born with no obvious pathological condition. We obtained convincing evidence that lack of Purα prolongs the postnatal proliferation of neuronal precursor cells both in the hippocampus and in the cerebellum, however, without affecting the overall number of postmitotic neurons. Independent of these findings, we observed alterations in the expression and distribution of the dendritic protein MAP2, the translation of which has been proposed previously to be Purα-dependent. At the age of 2 weeks, Purα(-/-) mice generated a continuous tremor which persisted throughout lifetime. Finally, adult Purα(-/-) mice displayed a megalencephaly and histopathological findings including axonal swellings and hyperphosphorylation of neurofilaments. Our studies underline the importance of Purα in the proliferation of neuronal precursor cells during postnatal brain development and suggest a role for Purα in the regulation of the expression and cellular distribution of dendritic and axonal proteins. Since recent studies implicate a link between Purα and the fragile X tremor/ataxia syndrome, our Purα(-/-) mouse model will provide new opportunities for understanding the mechanisms of neurodegeneration."	"First numerical investigation of a conjecture by N. N. Nekhoroshev about stability in quasi-integrable systems. We investigate numerically a conjecture by N. N. Nekhoroshev about the influence of a geometric property, called steepness, on the long term stability of quasi-integrable systems. In a Nekhoroshev's 1977 paper, it is conjectured that, among the steep systems with the same number ν of frequencies, the convex ones are the most stable, and it is suggested to investigate numerically the problem. Following this suggestion, we numerically study and compare the diffusion of the actions in quasi-integrable systems with different steepness properties in a large range of variation of the perturbation parameter ɛ and different dimensions of phase space corresponding to ν = 3 and ν = 4 (ν ≤ 2 is not significant for the conjecture). For six dimensional maps (ν = 4), our numerical experiments perfectly agree with the Nekhoroshev conjecture: for both convex and non convex cases, the numerically computed diffusion coefficient D of the actions is compatible with an exponential fit, and the convex case is definitely more stable than the steep one. For four dimensional maps (ν = 3), since we find that in the steep case D(ɛ) has large oscillations around an exponential behaviour, the agreement of our numerical experiments with the conjecture is not sharp, and it is found by considering a sup over different initial conditions."	"Economic impact of Przhevalskiana silenus infestation in native goats of Northern India. Economic losses incurred by Przhevalskiana silenus in goats of Jammu province of Jammu and Kashmir (North India) were assessed from July 2005 to June 2006. Abattoir studies revealed holes in hides for 112 days (mid-December 2005 to first week of April 2006) and trimming of carcass for 243 days (July 2005 to February 2006) during a lifecycle, leading to annual losses of Rs. 7,391,432 and Rs. 10,510,837, respectively. An effect on production traits (weight gain and milk) was assessed on naturally P. silenus-infested Beetal goats. The mean body weight loss of warbled goats was 2.40 kg (equal to 1.096 kg of meat, assuming 45.7% dressing percentage of goat) leading to an annual loss of Rs. 35,473,265. The mean milk yield loss per warbled goat per day was 101.7 g resulting in losses to the tune of Rs. 19,879,012. It can be concluded that P. silenus infestation resulted in an overall loss of Rs. 73,254,547, i.e. 73.26 million annually (equivalent to US $1.62 million; US $1 = Rs. 45.24), where reduced growth alone contributed 49% of the total losses. A study recommends that a control scheme against P. silenus infestation in goats using an effective insecticide should be followed to prevent huge economic losses in hide, milk and meat production. Economic losses associated with P. silenus infestation in goats were estimated for the first time from India."	"Adaptation of the QoL-AGHDA scale for adults with growth hormone deficiency in four Slavic languages. The Quality of Life in Adult Growth Hormone Deficiency Assessment (QoL-AGHDA) is a disease-specific quality of life measure specific to individuals who are growth hormone deficient. The present study describes the adaptation of the QoL-AGHDA for use in the following four Slavic languages; Czech, Polish, Serbian and Slovakian. The study involved three stages in each language; translation, cognitive debriefing and validation. The validation stage assessed internal consistency (Cronbach's alpha), reproducibility (test-retest reliability using Spearman's rank correlations), convergent and divergent validity (Correlations with the NHP) and known group validity. The QoL-AGHDA was successfully translated into the target languages with minimal problems. Cognitive debriefing interviewees (n = 15-18) found the measures easy to complete and identified few problems with the content. Internal consistency (Czech Republic = 0.91, Poland = 0.91, Serbia = 0.91 and Slovakia = 0.89) and reproducibility (Czech Republic = 0.91, Poland = 0.91, Serbia = 0.88 and Slovakia = 0.93) were good in all adaptations. Convergent and divergent validity and known group validity data were not available for Slovakia. The QoL-AGHDA correlated as expected with the NHP scales most relevant to GHD. The QoL-AGHDA was able to distinguish between participants based on a range of variables. The QoL-AGHDA was successfully adapted for use in the Czech Republic, Poland, Serbia and Slovakia. Further validation of the Slovakian version would be beneficial. The addition of these new language versions will prove valuable to multinational clinical trials and to clinical practice in the respective countries."	"Location of residence or social class, which is the stronger determinant associated with cardiovascular risk factors among Pakistani population? A cross sectional study. The prevalence of cardiovascular disease and associated risk factors are increasing globally, particularly in the developing world. Those in the South Asian region are especially at risk of cardiovascular disease due to an increasing prevalence of its risk factors. This study was undertaken to investigate the association of social class with location of residence in the distribution of cardiovascular risk factors (mainly hypertension and diabetes mellitus) in Pakistan. A cross-sectional study of 2495 subjects aged between 30-75 years was conducted in Punjab Province, which includes urban and rural areas. Subjects completed a detailed questionnaire, and anthropometric measurements and blood samples were taken after a written informed consent. Participants were categorized as urban or rural and assigned a social class according to their occupation. A logistic regression model was used to explore the association between social class and location of residence. The overall prevalence of hypertension and diabetes was 24.2% and 16.6%, respectively. Of the total number of participants, 56.8% (n=1417) were rural residents and 43.2% (n=1078) were urban. Urban individuals were significantly more likely (p&lt;0.001) to be hypertensive (OR=3.03, 95% CI 2.14-4.30) and more likely (p&lt;0.001) to be diabetic (OR=1.77, 95% CI 1.29-2.42) than rural dwellers, after multivariate adjustments for age, sex, BMI and social class. Social class was not significantly associated with the prevalence of either hypertension or diabetes. In the Pakistani population, rural or urban location of residence is a more powerful determinant of cardiovascular risk factors than social class."	"Modulatory effect of resveratrol on SIRT1, SIRT3, SIRT4, PGC1α and NAMPT gene expression profiles in wild-type adult zebrafish liver. Sirtuins (SIRTs) are NAD(+)-dependent deacetylases that catalyze the hydrolysis of acetyl-lysine residues. They play an important role in many physiological and pathophysiological processes, such as the regulation of lifespan and the prevention of metabolic diseases. In this study, we analyzed the effect of resveratrol on the gene expression levels of SIRT1, SIRT3, SIRT4, PGC1α, and NAMPT, as well as its effect on NAD(+) and NADH levels, in the liver of non stressed or non impaired wild-type zebrafish. Semiquantative RT-PCR assays showed that resveratrol did not change the mRNA levels of SIRT1 and PGC1α but decreased the expression levels of the SIRT3, SIRT4, and NAMPT genes. The decrease in NAMPT mRNA levels was accompanied by an increase in NADH levels, thereby decreasing the NAD(+)/H ratio. Taken together, our results suggest that resveratrol plays a modulatory role in the transcription of the NAMPT, SIRT3, and SIRT4 genes. Zebrafish is an interesting tool that can be used to understand the mechanisms of SIRTs and NAMPT metabolism and to help develop therapeutic compounds. However, further investigations using healthy experimental animals are required to study the modulation of the SIRT and NAMPT genes by resveratrol before it is used as a nutraceutical compound in healthy humans."	"Generation of targeted deletions in the genome of Rhodothermus marinus. The aim of this work was to develop an approach for chromosomal engineering of the thermophile Rhodothermus marinus. A selection strategy for R. marinus had previously been developed; this strategy was based on complementing a restriction-negative trpB strain with the R. marinus trpB gene. The current work identified an additional selective marker, purA, which encodes adenylosuccinate synthase and confers adenine prototrophy. In a two-step procedure, the available Trp(+) selection was used during the deletion of purA from the R. marinus chromosome. The alternative Ade(+) selection was in turn used while deleting the endogenous trpB gene. Since both deletions are unmarked, the purA and trpB markers may be reused. Through the double deletant SB-62 (ΔtrpB ΔpurA), the difficulties that are associated with spontaneous revertants and unintended chromosomal integration of marker-containing molecules are circumvented. The selection efficiency in R. marinus strain SB-62 (ΔtrpB ΔpurA) was demonstrated by targeting putative carotenoid biosynthesis genes, crtBI, using a linear molecule containing a marked deletion with 717 and 810 bp of 5' and 3' homologous sequences, respectively. The resulting Trp(+) transformants were colorless rather than orange-red. The correct replacement of an internal crtBI fragment with the trpB marker was confirmed by Southern hybridization analysis of the transformants. Thus, it appears that target genes in the R. marinus chromosome can be readily replaced with linear molecules in a single step by double-crossover recombination."	"[Umbilical endometriosis in women free of abdominal surgical antecedents]. Primary umbilical endometriosis represents a very rare localization of the disease and is represented by blue, papular, nodular or cystic lesions whose symptoms are related to ovarian cycle. We report the management of three women, free of surgical antecedents presenting with primary umbilical endometriosis. In each woman, abdominal laparoscopy revealed peritoneal pelvic endometriosis. The excision of umbilical lesions was performed with satisfactory esthetical outcomes. In our experience, umbilical endometriosis responsible for highly characteristic features appears playing the role of clinical marker for pelvic endometriosis."	"Non-crystallographic nets with freely acting, non-abelian local automorphism groups. Non-crystallographic (NC) nets are defined as periodic nets whose automorphism groups are not isomorphic to any isometry group in Euclidean space. This work focuses on a simple class of NC nets, restricted to nets with non-abelian, freely acting local automorphism groups. A general method is presented to derive such NC nets from crystallographic nets and some non-trivial examples are explored. It is shown that the labelled quotient graph of these nets does not necessarily possess non-trivial automorphisms which exchange cycles having the same net voltage. However, barycentric representations of these nets systematically display vertex collisions."	"ATP requirement for acidic resistance in Escherichia coli. ATP participates in many cellular metabolic processes as a major substrate to supply energy. Many systems for acidic resistance (AR) under extremely acidic conditions have been reported, but the role of ATP has not been examined. To clarify whether or not ATP is necessary for the AR in Escherichia coli, the AR of mutants deficient in genes for ATP biosynthesis was investigated in this study. The deletion of purA or purB, each of which encodes enzymes to produce AMP from inosinate (IMP), markedly decreased the AR. The content of ATP in these mutants decreased rapidly at pH 2.5 compared to that of the wild type. The AR was again decreased significantly by the mutation of adk, which encoded an enzyme to produce ADP from AMP. The DNA damage in the purA and purB mutants was higher than that in the wild type. These results demonstrated that metabolic processes that require ATP participate in survival under extremely acidic conditions, and that one such system is the ATP-dependent DNA repair system."	"Land Donations and the Gift of Water. On Temple Landlordism and Irrigation Agriculture in Pre-Colonial Bali. The Batur Temple (Pura Ulun Danu Batur) in Kintamani is located at the geographic apex of a so-called ritual water hierarchy and has conventionally been described as a purely religious institution responsible for the coordination and distribution of the irrigation water. However, an analysis of historical palm leaf manuscripts reveals that the temple had a firm economic base with corresponding interests and that it was one of the most important land-owners in late pre-colonial Bali. The article therefore explores from a socio-political and economic perspective the implications of this form of temple landlordism and its combination with ritual water control, particularly for the peasants and the portion of their annual surplus that they were obliged to deliver to this temple."	"De novo engineering and metabolic flux analysis of inosine biosynthesis in Bacillus subtilis. Wild-type B. subtilis strain W168 was de novo engineered for inosine biosynthesis. Inactivation of deoD and purA led to 0.15 ± 0.04 and 6.44 ± 0.39 g inosine/l yields, respectively. The deoD purA double mutant accumulated 7.6 ± 0.34 g inosine/l, with a 4.7% (w/w) conversion ratio from glucose to inosine. Comparative metabolic flux analysis revealed that the fluxes from inosine to hypoxanthine and from inosine monophosphate to adenosine monophosphate in the double mutant decreased to 14.0 and 0.61% of those in the wild-type strain. The major role of purA was demonstrated when inactivation of deoD and purA were found to contribute additively to inosine accumulation. This work is expected to contribute to the improvement of the fermentative production of purine nucleosides in the microbial industry."	"Ability of the fungus Duddingtonia flagrans to adapt to the cyathostomin egg-output by spreading chlamydospores. The analysis of the capability of the nematode trapping-fungus Duddingtonia flagrans to adapt to the cyathostomin egg-output in horses was evaluated. Fecal samples from 196 pasturing autochthonous Pura Raza Galega horses were collected from the rectum and then divided according to the egg-output into three groups: ≤ 300, 310-800 and &gt;800 eggs per gram feces. Four doses of chlamydospores (0.1, 0.2, 0.4 and 0.8 × 10(6)/100g feces) were directly spread onto fecal pats on the ground, remaining one without treatment as control. Fecal pats confirmed the presence of gastrointestinal nematode larvae belonging to strongylid cyathostomins (Cyathostomum and Gyalocephalus spp). An overall 94% (95% CI 91, 97) percentage of reduction was obtained, and an increase in the activity of the trapping-fungi simultaneously to the rising in the number of cyathostomin eggs and larvae in the coprocultures was detected. A significantly highest reduction of the cyathostomin L3 in the coprocultures with more than 800 EPG was found, which indicates that Df trapping activity is larvae nematode density-dependant. The present research showed the high biological activity of D. flagrans against nematode larvae can adjust to the cyathostomin egg-output, and underlines its efficacy as a practical method for the control of these parasites in grazing horses."	"Quality-control analytical methods: aqua pura: water purification systems and United States pharmacopeia waters for the compounding pharmacy, part 1. The types of water used most often in a compounding pharmacy are potable water, purified water, and sterile water (water for injection or irrigation). Of those three types, purified water is most frequently used; it is essential as a clean glassware rinse and is used in the compounding and reconstitution of frequently prescribed no sterile compounds, such as antibiotic suspensions. Using the appropriate water is absolutely essential to good compounding practice. Purified water cannot be substituted for sterile water for irrigation or injection, and if the last step in washing glassware and pharmaceutical implements is not a thorough purified-water rinse, the cross-contamination of preparations with drugs or chemicals (the presence of which can be missed even during potency testing) can occur. In this first of a series of three articles, we briefly review the types of United States Pharmacopeia water used most frequently in compounding, discuss the basic types of water purification systems that can be used in a compounding, discuss the basic types of water purification systems that can be used in a compounding pharmacy, and answer questions about water purification systems that are of interest to compounding pharmacists. Part 2 will provide current information from the United States Pharmacopeia about various waters, and part 3 will present testimonials from compounders who are using an in-house water purification system and additional information about water purification systems from manufacturers or vendors of that equipment (a Table comparing various water purification systems will be included for easy reference)."	"Footrot on a sheep breeding farm in the Himalayan state of Jammu and Kashmir. In the present study ovine footrot was detected clinically on a sheep farm in the Himalayan state of Jammu and Kashmir. Dichelobacter nodosus was confirmed by culture and polymerase chain reaction (PCR) using species-specific 16S ribosomal RNA primers. When cultured, the organism appeared as flat colourless colonies having a fine granulated structure with irregular margins, and showing characteristic Gram-negative rods with swollen ends. Detection by PCR from cultured bacteria resulted in amplification of a 783 base pairs (bp) product. Serogrouping by multiplex PCR using group (A-I)-specific primers revealed the presence of serogroup B-specific bands of 283 bp."	"Manipulations of AMP metabolic genes increase growth rate and cold tolerance in Escherichia coli: implications for psychrophilic evolution. Diverse organisms have adapted to thrive at low temperatures (i.e., &lt;20 °C, termed psychrophiles), colonizing the majority of earth's biosphere. In contrast with mesophiles (20-40 °C thermal range), all observed psychrophiles increase intracellular adenosine 5'-triphosphate concentrations as temperatures decline; this phenomenon has been described as an important compensatory mechanism to deal with decreases in thermal energy and molecular motion. We considered purine metabolic pathways in class gammaproteobacteria (n = 115) to investigate metabolic and evolutionary bases of this process. A survey of the KEGG database indicated that psychrophilic purine metabolic pathways tend to be enriched with de novo adenosine 5'-monophosphate (AMP) synthetic enzymes, whereas mesophiles tend to be enriched with AMP degradative enzymes. Function of the observed psychrophilic pathway structure was tested by engineering the mesophilic gammaproteobacterium Escherichia coli to reflect psychrophilic purine metabolism, specifically by expressing adenylosuccinate synthetase (purA) from the psychrophilic gammaproteobacterium, Psychrobacter cryohalolentis, in an AMP nucleosidase (amn)-deficient background. Modified E. coli was capable of growing up to ∼70% faster at low temperatures and became up to ∼10-fold more cold tolerant relative to wild type. These findings highlight potentially important transitional steps in psychrophilic evolution."	"A regularization algorithm for decoding perceptual temporal profiles from fMRI data. In several biomedical fields, researchers are faced with regression problems that can be stated as Statistical Learning problems. One example is given by decoding brain states from functional magnetic resonance imaging (fMRI) data. Recently, it has been shown that the general Statistical Learning problem can be restated as a linear inverse problem. Hence, new algorithms were proposed to solve this inverse problem in the context of Reproducing Kernel Hilbert Spaces. In this paper, we detail one iterative learning algorithm belonging to this class, called ν-method, and test its effectiveness in a between-subjects regression framework. Specifically, our goal was to predict the perceived pain intensity based on fMRI signals, during an experimental model of acute prolonged noxious stimulation. We found that, using a linear kernel, the psychophysical time profile was well reconstructed, while pain intensity was in some cases significantly over/underestimated. No substantial differences in terms of accuracy were found between the proposed approach and one of the state-of-the-art learning methods, the Support Vector Machines. Nonetheless, adopting the ν-method yielded a significant reduction in computational time, an advantage that became more evident when a relevant feature selection procedure was implemented. The ν-method can be easily extended and included in typical approaches for binary or multiple classification problems, and therefore it seems well-suited to build effective brain activity estimators."	"[Genetic background of tumors originating from adrenomedullar and extraadrenal chromaffin tissue--update]. It is anticipated that an inherited/familial forms of pheochromocytomas cause approximately 20% of all pheochromocytomas. Therefore, the classic &quot;rule of 10&quot; axioma used to remember the key features of disorder is invalid. Various mutations in several genes have been identified, which underly syndromes with paragangliomas and/or pheochromocytomas. The more candidate genes, the less numbers of patients with apparently sporadic forms of the disorder. This review has summarized the current knowledge of the genetic background of tumors orginating from adrenomedullar and extra-adrenal chromaffin tissue."	"[Genetic background of adrenal cortex tumours--news]. This review has summarized the current knowledge of the genetic background of tumors originating from adrenocortical tissue, manifested as a part of inherited or familial syndromes, as well as specific forms of sporadic tumors caused by aberrant expression of G-protein coupled receptors."	"[Autoimmune polyendocrine syndrome type 2 associated with autoimmune hypophysitis and coeliac disease]. Autoimmune polyendocrine syndromes (APS) are organ-specific autoimmune disorders affecting multiple endocrine glands; these are gradually destroyed by action of autoantibodies. Similarly to other autoimmune diseases, the presence of certain genetic predisposition is an essential prerequisite to the disease development; polymorphism of the main histocompatible system (HLA in humans) appears to play the most important role. APS are categorized into four types, based on what combination of endocrine glands is affected. APS type 1, characterised by hypoparathyreosis, mucocutaneous candidiasis and Addison's disease, is frequently seen in childhood. For a more common APS type 2 to be diagnosed, Addison's disease together with autoimmune thyroiditis (Schmidt's syndrome) and/or together with diabetes mellitus type I (Carpenter's syndrome) must be present. The third type of autoimmune polyendocrine syndromes (APS type 3) involves the same disorder of endocrine glands as type 2 but usually without any defect of adrenal cortex. If the autoimmune endocrine gland disorder does not fulfil the criteria of APS 1-3, the disease may be categorized as autoimmune polyendocrine syndrome type 4. The authors present a case of 33 years old APS type 2 patient who, over 20 years, developed a wide range of autoimmune endocrinopathies, including endocrinopathies that are less common, such as adenohypophysitis, and are associated with other organ-specific diseases (coeliac disease). The case is presented to demonstrate the fact that APS represent a dynamic process and that it is always important to keep in mind that, over time, a patient may develop other autoimmune diseases. To conclude, the authors emphasise the recommendation to test patients with monoglandular endocrinopathy for the presence of any secondary endocrine disorders."	"Flux coupling and transcriptional regulation within the metabolic network of the photosynthetic bacterium Synechocystis sp. PCC6803. Synechocystis sp. PCC6803 is a model cyanobacterium capable of producing biofuels with CO(2) as carbon source and with its metabolism fueled by light, for which it stands as a potential production platform of socio-economic importance. Compilation and characterization of Synechocystis genome-scale metabolic model is a pre-requisite toward achieving a proficient photosynthetic cell factory. To this end, we report iSyn811, an upgraded genome-scale metabolic model of Synechocystis sp. PCC6803 consisting of 956 reactions and accounting for 811 genes. To gain insights into the interplay between flux activities and metabolic physiology, flux coupling analysis was performed for iSyn811 under four different growth conditions, viz., autotrophy, mixotrophy, heterotrophy, and light-activated heterotrophy (LH). Initial steps of carbon acquisition and catabolism formed the versatile center of the flux coupling networks, surrounded by a stable core of pathways leading to biomass building blocks. This analysis identified potential bottlenecks for hydrogen and ethanol production. Integration of transcriptomic data with the Synechocystis flux coupling networks lead to identification of reporter flux coupling pairs and reporter flux coupling groups - regulatory hot spots during metabolic shifts triggered by the availability of light. Overall, flux coupling analysis provided insight into the structural organization of Synechocystis sp. PCC6803 metabolic network toward designing of a photosynthesis-based production platform."	"Haematolohical profile of subacute oral toxicity of molybdenum and ameliorative efficacy of copper salt in goats. Molybdenum toxicity produces a state of secondary hypocuprosis, resulting into alterations in normal hematological profile. In the present study, ammonium molybdate alone and with copper sulfate (II) pentahydrate (ameliorative agent) was administered orally for 30 consecutive days in healthy goats of group 1 and 2, respectively, to access the effect on the hematological profile on different predetermined days of dosing. Administration of ammonium molybdate alone produced significant decline in the mean values of hemoglobin (Hb), packed cell volume (PCV), total leukocyte count (TLC), total erythrocyte count (TEC), and mean corpuscular hemoglobin concentration (MCHC), with a significant increase in neutrophil level and mean corpuscular volume (MCV). However, values of erythrocyte sedimentation rate, mean corpuscular hemoglobin, and differential leukocyte count were not significantly altered. On comparing observations of ameliorative group with the group 1 goats, it is concluded that the ameliorative copper salt has beneficial effects in alleviating the alterations in the values of Hb, PCV, TLC, TEC, MCV, MCHC, and neutrophils."	"Vaporization of ovarian endometrioma using plasma energy: histologic findings of a pilot study. In ten ovarian endometriomas of diameter exceeding 30 mm, managed by complete vaporization of the inner surface using plasma energy followed by cystectomy, we performed histologic evaluation of the depth of necrosis and the effectiveness of endometrial tissue ablation. We observed that plasma energy allows the ablation of endometrial tissue with minimal damage to the ovarian parenchyma, which suggests that this technique might be of particular interest for women with risk factors of postoperative ovarian reserve impairment, such as recurrent and bilateral endometriomas."	"Transcriptional regulation of Oct4 by a long non-coding RNA antisense to Oct4-pseudogene 5. Long non-coding RNAs (lncRNAs) have been shown to epigenetically regulate certain genes in human cells. Here we report evidence for the involvement of an antisense lncRNA in the transcriptional regulation of the pluripotency-associated factor Oct4. When an lncRNA antisense to Oct4-pseudogene 5 was suppressed, transcription of Oct4 and Oct4 pseudogenes 4 and 5 was observed to increase. This increase correlated with a loss of silent state epigenetic marks and the histone methyltransferase Ezh2 at the Oct4 promoter. We observed this lncRNA to interact with nucleolin and PURA, a 35 kD single-stranded DNA and RNA binding protein, and found that these proteins may act to negatively regulate this antisense transcript."	"Molecular characterization of Borrelia persica, the agent of tick borne relapsing fever in Israel and the Palestinian Authority. The identification of the Tick Borne Relapsing Fever (TBRF) agent in Israel and the Palestinian Authority relies on the morphology and the association of Borrelia persica with its vector Ornithodoros tholozani. Molecular based data on B. persica are very scarce as the organism is still non-cultivable. In this study, we were able to sequence three complete 16S rRNA genes, 12 partial flaB genes, 18 partial glpQ genes, 16 rrs-ileT intergenic spacers (IGS) from nine ticks and ten human blood samples originating from the West Bank and Israel. In one sample we sequenced 7231 contiguous base pairs that covered completely the region from the 5'end of the 16S rRNA gene to the 5'end of the 23S rRNA gene comprising the whole 16S rRNA (rrs), and the following genes: Ala tRNA (alaT), Ile tRNA (ileT), adenylosuccinate lyase (purB), adenylosuccinate synthetase (purA), methylpurine-DNA glycosylase (mag), hypoxanthine-guanine phosphoribosyltransferase (hpt), an hydrolase (HAD superfamily) and a 135 bp 5' fragment of the 23S rRNA (rrlA) genes. Phylogenic sequence analysis defined all the Borrelia isolates from O. tholozani and from human TBRF cases in Israel and the West Bank as B. persica that clustered between the African and the New World TBRF species. Gene organization of the intergenic spacer between the 16S rRNA and the 23S rRNA was similar to that of other TBRF Borrelia species and different from the Lyme disease Borrelia species. Variants of B. persica were found among the different genes of the different isolates even in the same sampling area."	"Analytical validation of COMSOL Multiphysics for theoretical models of Radiofrequency ablation including the Hyperbolic Bioheat transfer equation. In this paper we outline our main findings about the differences between the use of the Bioheat Equation and the Hyperbolic Bioheat Equation in theoretical models for Radiofrequency (RF) ablation. At the moment, we have been working on the analytical approach to solve both equations, but more recently, we have considered numerical models based on the Finite Element Method (FEM). As a first step to use FEM, we conducted a comparative study between the temperature profiles obtained from the analytical solutions and those obtained from FEM. Regarding the differences between both methods, we obtain agreement in less than 5% of relative differences. Then FEM is a good alternative to model heating of biological tissues using BE and HBE in, for example, more complex and realistic geometries."	"[Multilocus sequence typing and pulsed-field gel electrophoresis analysis of Salmonella Paratyphi A isolates from 2000 to 2008, China]. To analyze molecular and evolution characteristics of Salmonella Paratyphi A isolates from 2000 to 2008, China. Using pulsed-field gel electrophoresis (PFGE) method with SpeI restriction enzyme, and multilocus sequence typing (MLST) method based on housekeeping genes (aroC, thrA, hisD, purE, sucA, dnaN, hemD, adk, and purA), the genomic variations of 118 Salmonella Paratyphi A isolates from 10 regions during 2000 to 2008 were analyzed. Using PFGE method, 118 Salmonella Paratyphi A isolates were clustered into 32 PFGE patterns, and 5 patterns were predominant (5 isolates or above). However, only 2 MLST types were identified for all isolates with MLST method. Among all Salmonella Paratyphi A isolates, the sequences of housekeeping genes were highly conservative and showed a high degree of cloning. For Chinese epidemic Salmonella Paratyphi A isolates during 2000 - 2008, MLST method showed low discrimination power and the MLST method should not be applied to outbreak and epidemiological surveillance of Salmonella Paratyphi A. Currently, nationwide paratyphoid fever epidemics is caused by highly clonal isolates in China. As the time changes, these isolates also accumulate sporadic mutations."	"Reconstruction and analysis of genome-scale metabolic model of a photosynthetic bacterium. Synechocystis sp. PCC6803 is a cyanobacterium considered as a candidate photo-biological production platform--an attractive cell factory capable of using CO2 and light as carbon and energy source, respectively. In order to enable efficient use of metabolic potential of Synechocystis sp. PCC6803, it is of importance to develop tools for uncovering stoichiometric and regulatory principles in the Synechocystis metabolic network. We report the most comprehensive metabolic model of Synechocystis sp. PCC6803 available, iSyn669, which includes 882 reactions, associated with 669 genes, and 790 metabolites. The model includes a detailed biomass equation which encompasses elementary building blocks that are needed for cell growth, as well as a detailed stoichiometric representation of photosynthesis. We demonstrate applicability of iSyn669 for stoichiometric analysis by simulating three physiologically relevant growth conditions of Synechocystis sp. PCC6803, and through in silico metabolic engineering simulations that allowed identification of a set of gene knock-out candidates towards enhanced succinate production. Gene essentiality and hydrogen production potential have also been assessed. Furthermore, iSyn669 was used as a transcriptomic data integration scaffold and thereby we found metabolic hot-spots around which gene regulation is dominant during light-shifting growth regimes. iSyn669 provides a platform for facilitating the development of cyanobacteria as microbial cell factories."	"[Psychological functioning and aging. Learning from longitudinal studies]. Population-based longitudinal studies are very useful tools for investigating the characteristics of the aging process among different geographical and socio-cultural contexts. On the other hand, these kind of projects look at a wide range of key issues of aging. In this review, most recent psychological findings in this field are analysed. The increasing interest in longitudinal studies for psychological variables is shown, as well as explicit links with other areas of study. Finally, main areas of improvement are identified according to future analysis of psychological variables, regarding both conceptual and methodological issues."	"Regulation of PURA gene transcription by three promoters generating distinctly spliced 5-prime leaders: a novel means of fine control over tissue specificity and viral signals. Purα is an evolutionarily conserved cellular protein participating in processes of DNA replication, transcription, and RNA transport; all involving binding to nucleic acids and altering conformation and physical positioning. The distinct but related roles of Purα suggest a need for expression regulated differently depending on intracellular and external signals. Here we report that human PURA (hPURA) transcription is regulated from three distinct and widely-separated transcription start sites (TSS). Each of these TSS is strongly homologous to a similar site in mouse chromosomal DNA. Transcripts from TSS I and II are characterized by the presence of large and overlapping 5'-UTR introns terminated at the same splice receptor site. Transfection of lung carcinoma cells with wild-type or mutated hPURA 5' upstream sequences identifies different regulatory elements. TSS III, located within 80 bp of the translational start codon, is upregulated by E2F1, CAAT and NF-Y binding elements. Transcription at TSS II is downregulated through the presence of adjacent consensus binding elements for interferon regulatory factors (IRFs). Chromatin immunoprecipitation reveals that IRF-3 protein binds hPURA promoter sequences at TSS II in vivo. By co-transfecting hPURA reporter plasmids with expression plasmids for IRF proteins we demonstrate that several IRFs, including IRF-3, down-regulate PURA transcription. Infection of NIH 3T3 cells with mouse cytomegalovirus results in a rapid decrease in levels of mPURA mRNA and Purα protein. The viral infection alters the degree of splicing of the 5'-UTR introns of TSS II transcripts. Results provide evidence for a novel mechanism of transcriptional control by multiple promoters used differently in various tissues and cells. Viral infection alters not only the use of PURA promoters but also the generation of different non-coding RNAs from 5'-UTRs of the resulting transcripts."	"Purα and nucleotide excision repair system: Implications in cellular response to ultraviolet C radiation-induced DNA damage and chemoresistance in malignant cells. NA"	"Role of Purα in the cellular response to ultraviolet-C radiation. Purα is a nucleic acid-binding protein with DNA-unwinding activity, which has recently been shown to have a role in the cellular response to DNA damage. We have investigated the function of Purα in Ultraviolet-C (UVC) radiation-induced DNA damage and nucleotide excision repair (NER). Mouse embryo fibroblasts from PURA(-/-) knockout mice, which lack Purα, showed enhanced sensitivity to UVC irradiation as assessed by assays for cell viability and clonogenicity compared to Purα positive control cultures. In reporter plasmid reactivation assays to measure the removal of DNA adducts induced in vitro by UVC, the Purα-negative cells were less efficient in DNA damage repair. Purα-negative cells were also more sensitive to UVC-induced DNA damage measured by Comet assay and showed a decreased ability to remove UVC-induced cyclobutane pyrimidine dimers. In wild-type mouse fibroblasts, expression of Purα is induced following S-phase checkpoint activation by UVC in a similar manner to the NER factor TFIIH. Moreover, co-immunoprecipitation experiments showed that Purα physically associates with TFIIH. Thus, Purα has a role in NER and the repair of UVC-induced DNA damage."	"Prevalence of cerebral palsy in children &lt; 10 years of age in R.S. Pura town of Jammu and Kashmir. To determine the prevalence of cerebral palsy in children aged &lt;10 years. The study was conducted in the framework of a population-based, single-centre, cross-sectional surveillance at R.S. Pura town, 22 km south-west of Jammu city. A total of 11 cases of cerebral palsy were ascertained yielding a crude prevalence rate of 2.27/1000 in the age group of &lt;10 years. The proportion of cerebral palsy occurring in males was higher than that in females. The prevalence rates of cerebral palsy among children &lt;10 years of age in R.S. town compare favorably with studies from developed countries."	"Multi-organ segmentation from multi-phase abdominal CT via 4D graphs using enhancement, shape and location optimization. The interpretation of medical images benefits from anatomical and physiological priors to optimize computer-aided diagnosis (CAD) applications. Diagnosis also relies on the comprehensive analysis of multiple organs and quantitative measures of soft tissue. An automated method optimized for medical image data is presented for the simultaneous segmentation of four abdominal organs from 4D CT data using graph cuts. Contrast-enhanced CT scans were obtained at two phases: non-contrast and portal venous. Intra-patient data were spatially normalized by non-linear registration. Then 4D erosion using population historic information of contrast-enhanced liver, spleen, and kidneys was applied to multi-phase data to initialize the 4D graph and adapt to patient specific data. CT enhancement information and constraints on shape, from Parzen windows, and location, from a probabilistic atlas, were input into a new formulation of a 4D graph. Comparative results demonstrate the effects of appearance and enhancement, and shape and location on organ segmentation."	"Multifractal zone plates. We present multifractal zone plates (MFZPs) as what is to our knowledge a new family of diffractive lenses whose structure is based on the combination of fractal zone plates (FZPs) of different orders. The typical result is a composite of two FZPs with the central one having a first-order focal length f surrounded by outer zones with a third-order focal length f. The focusing properties of different members of this family are examined and compared with conventional composite Fresnel zone plates. It is shown that MFZPs improve the axial resolution and also give better performance under polychromatic illumination."	"A peculiar affection of the scalp. NA"	"Rapid microarray-based genotyping of enterohemorrhagic Escherichia coli serotype O156:H25/H-/Hnt isolates from cattle and clonal relationship analysis. Since enterohemorrhagic Escherichia coli (EHEC) isolates of serogroup O156 have been obtained from human diarrhea patients and asymptomatic carriers, we studied cattle as a potential reservoir for these bacteria. E. coli isolates serotyped by agglutination as O156:H25/H-/Hnt strains (n = 32) were isolated from three cattle farms during a period of 21 months and characterized by rapid microarray-based genotyping. The serotyping by agglutination of the O156 isolates was not confirmed in some cases by the results of DNA-based serotyping as only 25 of the 32 isolates were conclusively identified as O156:H25. In the multilocus sequence typing (MLST) analysis, all EHEC O156:H25 isolates were characterized as sequence type 300 (ST300) and ST688, which differ by a single-nucleotide exchange in the purA gene. Oligonucleotide microarrays allow simultaneous detection of a wider range of EHEC-associated and other E. coli virulence markers than other methods. All O156:H25 isolates showed a wide spectrum of virulence factors typical for EHEC. The stx(1) genes combined with the EHEC hlyA (hlyA(EHEC)) gene, the eae gene of the zeta subtype, as well as numerous other virulence markers were present in all EHEC O156:H25 strains. The behavior of eight different cluster groups, including four that were EHEC O156:H25, was monitored in space and time. Variations in the O156 cluster groups were detected. The results of the cluster analysis suggest that some O156:H25 strains had the genetic potential for a long persistence in the host and on the farm, while other strains did not. As judged by their pattern of virulence markers, E. coli O156:H25 isolates of bovine origin may represent a considerable risk for human infection. Our results showed that the miniaturized E. coli oligonucleotide arrays are an excellent tool for the rapid detection of a large number of virulence markers."	"Plasma pharmacokinetics and milk levels of ceftriaxone following single intravenous administration in healthy and endometritic cows. Pharmacokinetics and milk levels of ceftriaxone were studied in healthy and endometritic cows following single intravenous administration. The drug was detected up to 8 h of dosing in plasma of healthy and endometritic cows and the drug disposition followed three-compartment open model. The values of Vd(area), AUC, t(1/2beta), Cl(B), MRT and P/C ratio were 0.50 +/- 0.19 L.kg(-1), 62.2 +/- 23.3 microg.ml(-1).h, 1.02 +/- 0.07 h, 0.30 +/- 0.09 L.kg(-1).h(-1), 1.55 +/- 0.25 h and 0.52 +/- 0.27, respectively, in healthy and 1.55 +/- 0.52 L.kg(-1), 37.0 +/- 17.1 microg.ml(-1).h, 1.56 +/- 0.25 h, 0.56 +/- 0.14 L.kg(-1).h(-1), 2.14 +/- 0.34 h and 1.44 +/- 0.60, respectively, in endometritic cows. The drug was detected in milk for 36 h after administration. For MIC(90) of 0.5 microg.ml(-1) the most appropriate dosage for ceftriaxone, would be 9.0 mg.kg(-1) repeated at 6 h intervals for the treatment of endometritis in cows."	"M. Pura et al. (Lubochna and Prague) with the title : &quot;the low dose (1 microg) cosyntropin test (LDT) for primary adrenocortical insufficiency: defining the normal cortisol response and report on first patients with Addison disease confirmed with LDT&quot; (ECED 2010; 118: 151-157). NA"	"Accumulation of gene-targeted Bacillus subtilis mutations that enhance fermentative inosine production. In order to test a possible approach to enhance fermentative inosine production by Bacillus subtilis, seven gene-targeted mutations were introduced in the laboratory standard strain168 in a stepwise fashion. The mutations were employed in order to prevent inosine 5'-monophosphate (IMP) from being consumed for AMP and GMP synthesis, to minimize inosine degradation, and to expand the intracellular IMP pool. First, the genes for adenylosuccinate synthase (purA) and IMP dehydrogenase (guaB) were inactivated. Second, two genes for purine nucleoside phosphorylase, punA and deoD, were inactivated. Third, to enhance purine nucleotide biosynthesis, the pur operon repressor PurR and the 5'-UTR of the operon, containing the guanine riboswitch, were disrupted. Finally, the -10 sequence of the pur promoter was optimized to elevate its transcription level. The resulting mutant was capable of producing 6 g/L inosine from 30 g/L glucose in culture broth without the detectable by-production of hypoxanthine. This indicates the validity of this approach for the breeding of the next generation of B. subtilis strains for industrial nucleoside production."	"Evidence that regulatory protein MarA of Escherichia coli represses rob by steric hindrance. The MarA protein of Escherichia coli can both activate and repress the initiation of transcription, depending on the position and orientation of its degenerate 20-bp binding site (&quot;marbox&quot;) at the promoter. For all three known repressed genes, the marbox overlaps the promoter. It has been reported that MarA represses the rob promoter via an RNA polymerase (RNAP)-DNA-MarA ternary complex. Under similar conditions, we found a ternary complex for the repressed purA promoter also. These findings, together with the backwards orientation of repressed marboxes, suggested a unique interaction of MarA with RNAP in repression. However, no repression-specific residues of MarA could be found among 38 single-alanine replacement mutations previously shown to retain activation function or among mutants from random mutagenesis. Mutations Thr12Ala, Arg36Ala, Thr95Ile, and Pro106Ala were more damaging for activation than for repression, some up to 10-fold, so these residues may play a specific role in activation. We found that nonspecific binding of RNAP to promoterless regions of DNA was presumably responsible for the ternary complexes seen previously. When RNAP binding was promoter specific, MarA reduced RNAP access to the rob promoter; there was little or no ternary complex. These findings strongly implicate steric hindrance as the mechanism of repression of rob by MarA."	"Segmentation and quantification of pulmonary artery for noninvasive CT assessment of sickle cell secondary pulmonary hypertension. Pulmonary arterial hypertension (PAH) is a progressive vascular disease that results in high mortality and morbidity in sickle cell disease (SCD) patients. PAH diagnosis is invasive via right heart catheterization, but manual measurements of the main pulmonary artery (PA) diameters from computed tomography (CT) have shown promise as noninvasive surrogate marker of PAH. The authors propose a semiautomated computer-assisted diagnostic (CAD) tool to quantify the main PA size from pulmonary CT angiography (CTA). A follow-up retrospective study investigated the potential of CT and image analysis to quantify the presence of PAH secondary to SCD based on PA size. The authors segmented the main pulmonary arteries using a combination of fast marching level sets and geodesic active contours from smoothed pulmonary CTA images of 20 SCD patients with proven PAH by right heart catheterization and 20 matched negative controls. From the PA segmentation, a Euclidean distance map was calculated and an algorithm based on fast marching methods was used to compute subvoxel precise centerlines of the PA trunk (PT) and main left/right PA (PM). Maximum distentions of PT and PM were automatically quantified using the centerline and validated with manual measurements from two observers. The pulmonary trunk and main were significantly larger (p &lt; 0.001) in PAH/SCD patients (33.73 +/- 3.92 mm for PT and 25.17 +/- 2.90 for PM) than controls (27.03 +/- 2.94 mm for PT and 20.62 +/- 3.06 for PM). The discrepancy was qualitatively improved when vessels' diameters were normalized by body surface area (p &lt; 0.001). The validation of the method showed high correlation (mean R=0.9 for PT and R = 0.91 for PM) and Bland-Altman agreement (0.4 +/- 3.6 mm for PT and 0.5 +/- 2.9 mm for PM) between CAD and manual measurements. Quantification errors were comparable to intraobserver and interobserver variability. CAD measurements between two different users were robust and reproducible with correlations of R = 0.99 for both PT and PM and Bland-Altman agreements of -0.13 +/- 1.33 mm for PT and -0.08 +/- 0.84 mm for PM. Results suggest that the semiautomated quantification of pulmonary artery has sufficient accuracy and reproducibility for clinical use. CT with image processing and extraction of PA biomarkers show great potential as a surrogate indicator for diagnosis or quantification of PAH, and could be an important tool for drug discovery and noninvasive clinical surveillance."	"Direct proportional relationship between endometrioma size and ovarian parenchyma inadvertently removed during cystectomy, and its implication on the management of enlarged endometriomas. The aim of this study was to estimate whether or not the size of an endometrioma is related to the thickness of the ovarian parenchyma inadvertently excised along with the cyst wall. We performed a retrospective study including 35 women who had undergone endometrioma cystectomy, using an ovarian tissue sparing procedure. In total 38 specimens were studied by three pathologists as three women presented bilateral localizations, and all cyst diameters measured at least 30 mm. For each endometrioma, serial sections were performed, and on each section four different sites were randomly chosen to measure the thickness of glandular epithelium and stroma, of subjacent fibrosis, depending on the cyst, and of the ovarian parenchyma removed with the cyst. The diameter of the ovary was measured preoperatively either by MRI or ultrasound, and the area of the internal wall was then calculated. The relationships between the mean thickness of ovarian parenchyma removed and the variables were estimated and a multiple regression model identified independent predictors for ovarian parenchyma thickness. Adjacent ovarian tissue was found in 37 cases (97%). The mean thickness of ovarian tissue removed was 1173 +/- 711 microm and that of the cyst wall was 851 +/- 499 microm. The thickness of the ovarian parenchyma removed presented a direct proportional relationship with cyst diameter (P = 0.015), and consequently with cyst wall area (P = 0.032). This relationship with cyst diameter was independent after adjustment on other variables (P = 0.032). Endometrioma cystectomy even though performed with an accurate surgical technique leads to significant ovarian tissue removal, the thickness of which increases proportionally with cyst diameter."	"Spanning traceroutes over modular networks and general scaling degree distributions. We analyze the class of networks characterized by modular structure where a sequence of l Erdös-Renyi random networks of size Nl with random average degrees is joined by links whose structure must remain immaterial. We find that traceroutes spanning the entire macronetwork exhibit scaling degree distributions P(k) approximately k-gamma, where gamma depends on how the degrees of the joined clusters are distributed. We thus suggest that yet another mechanism for the dynamic origin of arbitrary power-law degree distributions observed in natural and artificial networks, many of which belong to the range 2&lt;or=gamma&lt;or=3 , may be found in random processes on modular networks."	"Chronic mucocutaneous candidiasis in APECED or thymoma patients correlates with autoimmunity to Th17-associated cytokines. Chronic mucocutaneous candidiasis (CMC) is frequently associated with T cell immunodeficiencies. Specifically, the proinflammatory IL-17A-producing Th17 subset is implicated in protection against fungi at epithelial surfaces. In autoimmune polyendocrinopathy candidiasis ectodermal dystrophy (APECED, or autoimmune polyendocrine syndrome 1), CMC is often the first sign, but the underlying immunodeficiency is a long-standing puzzle. In contrast, the subsequent endocrine features are clearly autoimmune, resulting from defects in thymic self-tolerance induction caused by mutations in the autoimmune regulator (AIRE). We report severely reduced IL-17F and IL-22 responses to both Candida albicans antigens and polyclonal stimulation in APECED patients with CMC. Surprisingly, these reductions are strongly associated with neutralizing autoantibodies to IL-17F and IL-22, whereas responses were normal and autoantibodies infrequent in APECED patients without CMC. Our multicenter survey revealed neutralizing autoantibodies against IL-17A (41%), IL-17F (75%), and/ or IL-22 (91%) in &gt;150 APECED patients, especially those with CMC. We independently found autoantibodies against these Th17-produced cytokines in rare thymoma patients with CMC. The autoantibodies preceded the CMC in all informative cases. We conclude that IL-22 and IL-17F are key natural defenders against CMC and that the immunodeficiency underlying CMC in both patient groups has an autoimmune basis."	"Regulation of gonadotropin-releasing hormone-1 gene transcription by members of the purine-rich element-binding protein family. Gonadotropin-releasing hormone-1 (GnRH1) controls reproduction by stimulating the release of gonadotropins from the pituitary. To characterize regulatory factors governing GnRH1 gene expression, we employed biochemical and bioinformatics techniques to identify novel GnRH1 promoter-binding proteins from the brain of the cichlid fish, Astatotilapia burtoni (A. burtoni). Using an in vitro DNA-binding assay followed by mass spectrometric peptide mapping, we identified two members of the purine-rich element-binding (Pur) protein family, Puralpha and Purbeta, as candidates for GnRH1 promoter binding and regulation. We found that transcripts for both Puralpha and Purbeta colocalize in GnRH1-expressing neurons in the preoptic area of the hypothalamus in A. burtoni brain. Furthermore, we confirmed in vivo binding of endogenous Puralpha and Purbeta to the upstream region of the GnRH1 gene in A. burtoni brain and mouse neuronal GT1-7 cells. Consistent with the relative promoter occupancy exhibited by endogenous Pur proteins, overexpression of Purbeta, but not Puralpha, significantly downregulated GnRH1 mRNA levels in transiently transfected GT1-7 cells, suggesting that Purbeta acts as a repressor of GnRH1 gene transcription."	"Clinical trial of efficacy of ivermectin pour-on against gastrointestinal parasitic nematodes in silvopasturing horses. The aim of this study was to assess, by a clinical trial, the efficacy of an ivermectin-based pour-on treatment against gastrointestinal parasitic nematodes in naturally infected horses using 2 groups of mature indigenous Pura Raza Galega grazing mares. Faecal and blood samples were collected individually over a 21 week period. Faeces were analysed by the coprological flotation, sedimentation and migration techniques. Changes in circulating blood cells were monitored over the study period. The administration of the ivermectin suppressed the egg-elimination of ascarids and pinworms throughout the study and no strongyle-eggs were observed in the treatment group between the 3rd and 10th weeks. The numbers of red cells increased significantly after the anthelmintic therapy, and a statistical reduction in circulating leucocytes was recorded. No side effects were observed. The pour-on ivermectin formulation was highly successful against gastrointestinal nematodes and appears to be a useful therapeutic routine for large groups of horses."	"Induction of bicalutamide sensitivity in prostate cancer cells by an epigenetic Puralpha-mediated decrease in androgen receptor levels. Increased androgen receptor (AR) levels support resistance to apoptosis and hormone therapy in advanced prostate cancer (PC). We recently linked the overexpression of AR in androgen-independent LNCaP cells (AI-cells) and tissues from castration-resistant patients to decreased nuclear levels of Pur-alpha (Puralpha) and loss from a protein complex bound to repressor sequences (ARS) in the 5'-UTR of AR. Strategies to regain control of increased AR transcription may overcome resistance of AI-cells and improve treatment outcomes. MTT, real-time PCR, Western blot, ChIP, flow cytometry, and caspase 3/7 activation measured the effect on growth and targets of LBH589/bicalutamide treatment of AI-cells and androgen-dependent LNCaP cells (AD). Within 16 hr of treatment of AI-cells with low concentrations of the histone deacetylase inhibitor LBH589, a shift of cytoplasmic Puralpha restored the nuclear levels and the binding of Puralpha to the ARS. This was followed by a decline in AR-mRNA and protein reaching levels of parental AD-cells. The fraction of AI-cells in G1 increased and the cells in S phase decreased similar to AD-cells, and there was a modest caspase activation. Most notably, treatment of bicalutamide-resistant AI-cells with 10 nM LBH589 combined with 12.5 microM bicalutamide synergistically inhibited cell growth and induced a fivefold higher level of caspase 3/7 activation than observed in AD-cells. Low-dose LBH589 restores Puralpha binding to ARS and down-regulates AR transcription. Biologically, LBH589 reverses the resistance of AI-cells to bicalutamide and to apoptosis. The combination may restore the hormonal response of castration-resistant PC patients."	"A bifunctional intronic element regulates the expression of the arginine/lysine transporter Cat-1 via mechanisms involving the purine-rich element binding protein A (Pur alpha). Expression of the arginine/lysine transporter Cat-1 is highly induced in proliferating and stressed cells via mechanisms that include transcriptional activation. A bifunctional INE (intronic element) within the first intron of the Cat-1 gene was identified and characterized in this study. The INE had high sequence homology to an amino acid response element and was shown to act as a transcriptional enhancer in unstressed cells by binding the transcription factor, purine-rich element binding protein A (Pur alpha). During endoplasmic reticulum stress, binding of Pur alpha to the INE decreased; the element acted as a positive regulator in early stress by binding of the transcription factor ATF4 and as a negative regulator in prolonged stress by binding the stress-induced C/EBP family member, CHOP. We conclude that transcriptional control of the Cat-1 gene is tightly controlled by multiple cis-DNA elements, contributing to regulation of cationic amino acid transport for cell growth and proliferation. In addition, we propose that genes may use stress-response elements such as the INE to support basal expression in the absence of stress."	"Induction of oxidative stress and lipid peroxidation in rats chronically exposed to cypermethrin through dermal application. Present study was undertaken to study the effect of cypermethrin on oxidative stress after chronic dermal application. The insecticide was applied dermally at 50 mg/kg body weight in different groups of Wistar rats of either sex weighing 150-200 g. Significant (p &lt; 0.05) increase in catalase activity was observed after 30 days of exposure. However, the superoxide dismutase activity declined significantly after 60 days of exposure. The activity of glutathione peroxidase and blood glutathione levels declined significantly (p &lt; 0.05) after 30 days of cypermethrin dermal application. However, the activity of glutathione S-transferase increased significantly (p &lt; 0.05) in all groups after 60 days of dermal exposure. Significant increase in lipid peroxidation was observed from 30 days onwards and reached a peak after 120 days of application."	"Lipoatrophy in GH deficient patients treated with a long-acting pegylated GH. Changes observed during adult GH deficiency (GHD) are most often reversed with the administration of recombinant human GH (rhGH). To avoid daily injections, a long-acting GH molecule has been obtained by covalent binding of polyethylene glycol (PEG) with rhGH (PEG-GH), allowing weekly s.c. injections. This study was designed to assess its efficacy and safety, in adult GHD subjects. This was a randomized, double-blind, placebo-controlled, multiple-dose, parallel group study. Subjects were recruited from 34 centers. A total of 105 subjects with GHD were assigned a treatment. They received 6 weekly injections of either PEG-GH or placebo. Subjects were randomized into one out of four treatment groups (Groups A-D) or placebo (Group E). Groups A, B, and C received 1, 3, and 4 mg PEG-GH respectively, for the first 3 weeks followed by 2, 6, and 8 mg PEG-GH respectively, for the remaining 3 weeks. Group D received 4 mg PEG-GH for 6 weeks. Group E received placebo. The study was suspended because of the development of lipoatrophy in certain subjects and restarted with an injection rotation plan, before being terminated due to further subjects developing lipoatrophy. A total of 13 cases of injection-site lipoatrophy were reported, of which ten were in females and three occurred after the first injection; all cases were independent of PEG-GH dose or IGF1 levels, either basal or under treatment. The unpredictable occurrence of injection-site lipoatrophy with weekly long-acting pegylated GH molecules may be a limiting factor for their development."	"Alterations in electrocardiographic parameters after subacute exposure of fluoride and ameliorative action of aluminium sulphate in goats. Fluorosis or crippling disease is one of the existing environmental challenges for animal and human beings in most parts of the globe. In the present study, sodium fluoride alone and with aluminium sulphate (ameliorative agent) was administered orally daily for 30 days in healthy goats of group 1 and 2, respectively, to access the effect on the electrocardiogram. All waves of Lead I, Lead II, Lead III, aVR, aVL and aVF in electrocardiographs were recorded before and after 30 days exposure of fluoride. A significant (P &lt; 0.05) increase in P-R, Q-T and S-T intervals were observed in goats of group 1 as compared to their pre treatment values. The T wave duration was also significantly (P &lt; 0.05) prolonged and as a result, bradycardia was observed after subacute exposure of fluoride for 30 days in group 1. But, in group 2, no such changes were observed. On the basis of results, it may be concluded that subacute toxicity of fluoride produces significant changes in different waves of electrocardiogram and aluminium sulphate has ameliorative efficacy."	"Silvopastoralism and autochthonous equine livestock: analysis of the infection by endoparasites. Two groups of autochthonous Pura Raza Galega (PRG) horses, one comprising 483 animals under a silvopasturing regime, and the other comprising 72 PRG horses managed in farms, were used to analyse the effect of silvopasture on infection by endoparasites. Results were considered according to the age and the sex of the horses. Faecal samples were individually collected from each animal and analysed by the coprological flotation, sedimentation and migration techniques. Coprocultures were also done to identify the main strongylid genera affecting the horses. Eggs from the gastrointestinal nematoda Parascaris equorum, strongyles and Oxyuris equi were the only endoparasites observed in the faeces of the horses. Larvae of Trichonema and Cyalocephalus spp. (small strongyles) and Strongylus and Triodontophorus (large strongyles) were identified in the coprocultures. The silvopasturing horses had the highest prevalence of the helminth parasites. The percentage of horses passing ascarid eggs was significantly higher in pasturing horses younger than 3 years. The prevalence of strongyles was statistically greater in the oldest grazing equines. Mares reached the highest prevalence of helminth egg output. Our results showed that native horses kept under silvopasture had the highest prevalence of the ascarids, strongyles and oxyurids, possibly due to their exposure to contaminated grazing areas, lack of appropriate feeding and control of their health status. We conclude that silvopasture increases the presence of infection by gastrointestinal nematoda in wild horses, especially by strongyles. Suitable measures to control parasitic diseases affecting horses in silvopasture should be considered in those systems."	"Effect of growth hormone replacement therapy on plasma brain natriuretic peptide concentration, cardiac morphology and function in adults with growth hormone deficiency. The impact of growth hormone (GH) replacement on plasma brain natriuretic peptide (BNP) in association with cardiac morphology and function in adults with growth hormone deficiency (GHD) was evaluated. Fifty nine adult patients with GHD (29 men, age 19-59 years) received a starting dose of 0.1-0.2 mg/day recombinant GH, which was subsequently adjusted to the 50th percentile of normal serum insulin-like growth factor (IGF-1) over a 6 month period. Plasma BNP and IGF-I levels before, 3 and 6 months after treatment were determined, as were the echocardiographic data, such as ejection fraction (EF), left ventricular end-diastolic volume (LVEDV), left ventricular end-diastolic diameter (LVEDD), interventricular septal thickness (IVST), posterior wall thickness (PWT), left ventricular mass (LVM), E/A wave and deceleration time (DT). Mean plasma BNP levels (53.1+/-8 pg/ml) and echocardiographic parameters were within the normal range at baseline, although men had higher LVM, IVST, PWT, LVEDV and LVEDD, respectively. A significant decrease in plasma BNP was observed after 6 months (27+/-5.6 pg/ml, P&lt;0.05). No significant changes in echocardiographic parameters were observed except for a mild tendency to increase in LVM, and a borderline decrease in DT (181+/-8.1 vs. 155+/-9 ms, P&lt;0.01). Six months GH replacement therapy induced a significant decrease in plasma BNP levels despite the majority of patients having plasma BNP within the normal range at baseline. A borderline decrease in diastolic deceleration time was observed, the clinical significance of which is unclear."	"NITZSCHIA ALICAE SP. NOV. AND N. PURIFORMIS SP. NOV., NEW DIATOMS FROM EUROPEAN RIVERS AND COMPARISON WITH THE TYPE MATERIAL OF N. SUBLINEARIS AND N. PURA(1). Nitzschia sublinearis Hustedt and N. pura Hustedt are common oligosaprobic freshwater diatom species that frequently occur in diatom inventories, thus being important in water quality studies. Both are considered as species with overlapping diagnostic criteria in several floras, which is typical of the whole genus Nitzschia. The type material of Hustedt of N. sublinearis and N. pura was examined using LM and EM in order to document the range of variation within the type populations and to compare it with populations occurring in different European rivers. Detailed observations allowed recognition of two new freshwater diatom species: N. alicae sp. nov., occurring in mesotrophic up to eutrophic conditions, and N. puriformis sp. nov., mostly occurring in oligotrophic habitats, both in rivers and streams at middle and high altitudes. The most reliable taxonomic features that separate both new species from the most similar taxa are the density of fibulae and striae, valve shape, and valve width as well as the shape of areolae. Morphological examination of different populations indicates that N. puriformis is relatively common in European rivers and has been overlooked to date and confounded with N. pura by several researchers. By contrast, N. alicae has, to date, been collected only in Slovakia and Northern Italy, but with a high frequency of occurrence and sometimes in high abundance at sites. "	"Thermal modeling for pulsed radiofrequency ablation: analytical study based on hyperbolic heat conduction. The objectives of this study were to model the temperature progress of a pulsed radiofrequency (RF) power during RF heating of biological tissue, and to employ the hyperbolic heat transfer equation (HHTE), which takes the thermal wave behavior into account, and compare the results to those obtained using the heat transfer equation based on Fourier theory (FHTE). A theoretical model was built based on an active spherical electrode completely embedded in the biological tissue, after which HHTE and FHTE were analytically solved. We found three typical waveforms for the temperature progress depending on the relations between the dimensionless duration of the RF pulse delta(a) and the expression square root of lambda(rho-1), with lambda as the dimensionless thermal relaxation time of the tissue and rho as the dimensionless position. In the case of a unique RF pulse, the temperature at any location was the result of the overlapping of two different heat sources delayed for a duration delta(a) (each heat source being produced by a RF pulse of limitless duration). The most remarkable feature in the HHTE analytical solution was the presence of temperature peaks traveling through the medium at a finite speed. These peaks not only occurred during the RF power switch-on period but also during switch off. Finally, a physical explanation for these temperature peaks is proposed based on the interaction of forward and reverse thermal waves. All-purpose analytical solutions for FHTE and HHTE were obtained during pulsed RF heating of biological tissues, which could be used for any value of pulsing frequency and duty cycle."	"Phylogenetic analysis of inflammatory bowel disease associated Escherichia coli and the fimH virulence determinant. Evidence supports the role of adherent invasive Escherichia coli (AIEC) in the pathogenesis of inflammatory bowel disease (IBD). However, little is known about the phylogenetic structure and origin of this group of bacteria. Multi-locus sequence typing (MLST), and fimH sequence analysis were performed to elucidate the phylogenetic relationships between E. coli strains isolated from IBD tissue. Thirty-six E. coli isolated from IBD patients and healthy individuals were used. MLST analysis of the adk, fumC, gyrB, icd, mdh, purA, and recA housekeeping genes was performed. The fimH gene was also sequenced and phylogenetically analyzed. Biochemical profiling of strains were performed using the API 20 E system. MLST analysis distinguished 9 new alleles and 11 new sequence types, nearly all of which belonged to IBD isolates. E. coli isolated from IBD patients were more likely to be grouped into separate clonal clusters by eBURST analysis of allelic profiles (P = 0.02). Sequencing of fimH placed putative AIEC strains into the same cluster with the uro-pathogenic E. coli CFT073 and the avian-pathogenic E. coli O1:K1:H7. MLST analysis suggested that E. coli isolated from IBD patients did not evolve from a unique ancestral background. Together with the fimH sequence we conclude that AIEC represent a group of bacteria that have been able to take advantage of an &quot;IBD microenvironment&quot; and likely shares common genes with extraintestinal pathogens like uro-pathogenic CFT073 and avian-pathogenic O1:K1:H7 E. coli. Future research should focus on genes that are unique to AIEC."	"[Septo-optic dysplasia--omitted interdisciplinary clinic entity: report on three patients]. On example of three patients with septo-optic dysplasia the authors present a rare clinical entity involving combined disturbances of endocrine and neurologic systems and variable expressed clinical triad: 1) pituitary aplasia/dysplasia with pituitary hormones deficiency, 2) developmental disturbance of the middle-brain structures (corpus callosum and septum pellucidum), and 3) dysplastic changes of the optic nerve. The knowledge about components belonging to the competence of other specialists and awareness of consequences of untreated hypopituitarism, are imperatives for interdisciplinary cooperation of ophthalmologist, neurologist, radiologist, and endocrinologist. Moreover, they predict early initiation of the adequate and often vital therapy. Molecular-genetic studies in patients with septo-optic dysplasia represent a way to better knowledge about early stages of the pituitary gland and brain development."	"Transcriptome and functional analysis of the eukaryotic-type serine/threonine kinase PknB in Staphylococcus aureus. The function of the Staphylococcus aureus eukaryotic-like serine/threonine protein kinase PknB was investigated by performing transcriptome analysis using DNA microarray technology and biochemical assays. The transcriptional profile revealed a strong regulatory impact of PknB on the expression of genes encoding proteins which are involved in purine and pyrimidine biosynthesis, cell wall metabolism, autolysis, and glutamine synthesis. Functional activity of overexpressed and purified PknB kinase was demonstrated using the myelin basic protein as a surrogate substrate. Phosphorylation occurred in a time-dependent manner with Mn(2+) as a preferred cofactor. Furthermore, biochemical characterization revealed regulation of adenylosuccinate synthase (PurA) activity by phosphorylation. Phosphorylated PurA showed a 1.8-fold decrease in enzymatic activity compared to unphosphorylated PurA. Loss of PknB led to formation of larger cell clusters, and a pknB deletion strain showed 32-fold-higher sensitivity to the cell wall-active antibiotic tunicamycin. The results of this study strongly indicate that PknB has a role in regulation of purine biosynthesis, autolysis, and central metabolic processes in S. aureus."	"The low-dose (1 microg) cosyntropin test (LDT) for primary adrenocortical insufficiency: Defining the normal cortisol response and report on first patients with Addison disease confirmed with LDT. The validity of low-dose 1 microg cosyntropin test (LDT) is reported mainly for the assessment of secondary adrenocortical insufficiency (AI). Likewise the hypothalamic-pituitary disorders, early diagnosis of the initial or partial stages of primary AI has an important role. The aim of study was to: 1) establish the normal cut-off level at which the stimulated plasma cortisol (FP) in LDT excludes primary AI; 2) compare the results in elderly subjects to those in younger ones; 3) compare the results between normal and obese subjects; and 4) verify the established cut-off values on the sample of patients suspected to have primary AI. 110 subjects (99 women and 11 men, aged 19-80 years, mean 46.2+/-16.1 years, without suspicion for impairment of the hypothalamo-pituitary-adrenal axis were recruited to undergo the LDT in standard conditions. Control group consists of 30 patients (22 women and 8 men, aged 7-58 years, mean 38.4+/-10.6 years) evaluated in whom for suspicion of primary AI as suggested by LDT was confirmed by supplemental investigations (elevated ACTH levels, positive autoantibodies against 21-hydroxylase, mutational analysis of corresponding genes). The mean peak FP level at 30 min (FP (30)) of the subjects was 675+/-85 nmol/L (95% CI=659 to 691 nmol/L), thus reference values expressed as mean+/-2 SD were 505-845 nmol/L. There was a significant negative correlation between basal FP values (FP (0)) (434+/-105 nmol/L) and the absolute FP incremental (FP (Delta)) response varying from 52 to 553 nmol/L (median 230 nmol/L) (r=-0.71; P&lt;0.001). FP (30) was higher in elderly subjects (n=27) in comparison to younger subjects (n=25) (689+/-88 nmol/L vs. 642+/-63 nmol/L, u=2.11, P&lt;0.05) due to higher FP (Delta) (274+/-116 nmol/L vs. 175+/-112 nmol/L; u=4.02, P&lt;0.01) ; FP (30) levels in obese subjects (n=27) did not differ from those with normal BMI (n=33) (694+/-100 nmol/L vs. 667+/-65 nmol/L, u=1.31, P&gt;0.05). We did not find any correlation between body weight or body surface area and FP (0), FP (30) or FP (Delta). Post-stimulation FP (30) levels in the control group varied from 0 to 354 nmol/L with median 64 nmol/L (25 (th) percentile 10 nmol/L; 75 (th) percentile 165 nmol/L) and were entirely distinctive from those of the subjects without adrenal impairment ( P&lt;0.001). Taking the mean -2 SD result as a threshold, FP value of 500 nmol/L can be consider as cut-off at 30 min in the LDT for defining the intact adrenocortical function, independently of age and body weight, body surface area."	"Density-dependent dispersal in multiple species metapopulations. A multiple species metapopulations model with density-dependent dispersal is presented. Assuming the network configuration matrix to be diagonizable we obtain a decoupling of the associated perturbed system from the homogeneous state. It was possible to analyze in detail the instability induced by the density-dependent dispersal in two classes of k-species interaction models: a hierarchically organized competitive system and an age-structured model."	"Identification of binding partners for the cytoplasmic loop of connexin43: a novel interaction with β-tubulin. Connexin43 (Cx43), a component of gap junctions, has a relatively large carboxy-terminal region with multiple proteomic interactions. Proteomic interactions with its cytoplasmic loop, however, are poorly defined. The goal of this study is to examine proteomic interactions involving the cytoplasmic loop (CL) of Cx43. The authors utilized various techniques, including glutathione-S-transferase (GST) pull-down, immunoblot analysis, two-dimensional (2D) gel electrophoresis, and mass spectrometry, to elucidate binding partners for Cx43-CL. The authors identified novel interactions with Cx43-CL involving α- and β-tubulin, myelin basic protein, and Purα. Because tubulin interacts with the C-terminus of Cx43 (Cx43-CT), the authors further investigated the nature of the interaction between β-tubulin and Cx43-CL. β-Tubulin binds with the full length of Cx43-CL with approximately one-fifth the affinity of the interaction between Cx43-CT and β-tubulin. This study demonstrates novel proteomic interactions involving Cx43-CL that may lead to a more complete understanding of trafficking and gating of gap junction channels."	"Purine-rich element binding protein (PUR) alpha induces endoplasmic reticulum stress response, and cell differentiation pathways in prostate cancer cells. Following androgen ablation treatment for advanced prostate cancer, almost all men relapse after a period of initial response to therapy, which eventually is life threatening. We have previously found that purine-rich element binding protein, PURalpha, was significantly repressed in androgen-independent prostate cancer cell lines in comparison to an androgen-dependent line. Moreover, over-expressing PURalpha in androgen-independent prostate cancer cells attenuated their cell proliferation. The aim of the studies described here was to uncover some of the mechanisms by which over-expression of PURalpha attenuates cell proliferation. A set of common genes induced by over-expressing PURalpha both in PC3 and LNCaP cells was analyzed by DNA microarray. The results were then validated utilizing quantitative reverse transcription-PCR. Using a 5.3-kb region of the PSA promoter containing androgen response elements, the participation of PURalpha in androgen regulated gene expression was determined. Genes involved in stress response and cell differentiation were induced in cells over-expressing PURalpha. Some of the genes that are targets of androgen regulation are also induced. Most strikingly, ectopic expression of PURalpha induced transcriptional activity of the 5.3-kb PSA promoter containing androgen response elements, without androgen stimulation. Based upon the consideration that some of the genes involved in cell stress and differentiation are also regulated by androgens our data suggest that PURalpha shares some common pathways regulated by the androgen receptor. These findings suggest that regulation of PURalpha expression in prostate cancer cells may serve as a therapeutic target for hormone refractory prostate cancer."	"DNA as an adhesin: Bacillus cereus requires extracellular DNA to form biofilms. The soil saprophyte Bacillus cereus forms biofilms at solid-liquid interfaces. The composition of the extracellular polymeric matrix is not known, but biofilms of other bacteria are encased in polysaccharides, protein, and also extracellular DNA (eDNA). A Tn917 screen for strains impaired in biofilm formation at a solid-liquid interface yielded several mutants. Three mutants deficient in the purine biosynthesis genes purA, purC, and purL were biofilm impaired, but they grew planktonically like the wild type in Luria-Bertani broth. Biofilm populations had higher purA, purC, and purL transcript ratios than planktonic cultures, as measured by real-time PCR. Laser scanning confocal microscopy (LSCM) of BacLight-stained samples indicated that there were nucleic acids in the cell-associated matrix. This eDNA could be mobilized off the biofilm into an agarose gel matrix through electrophoresis, and it was a substrate for DNase. Glass surfaces exposed to exponentially growing populations acquired a DNA-containing conditioning film, as indicated by LSCM. Planktonic exponential-phase cells released DNA into an agarose gel matrix through electrophoresis, while stationary-phase populations did not do this. DNase treatment of planktonic exponential-phase populations rendered cells more susceptible than control populations to the DNA-interacting antibiotic actinomycin D. Exponential-phase purA cells did not contain detectable eDNA, nor did they convey a DNA-containing conditioning film to the glass surface. These results indicate that exponential-phase cells of B. cereus ATCC 14579 are decorated with eDNA and that biofilm formation requires DNA as part of the extracellular polymeric matrix."	"Effects of TRPM8 on the proliferation and motility of prostate cancer PC-3 cells. We investigated the effects of transient receptor potential M8 (TRPM8) channel on the proliferation and motility of androgen-independent prostate cancer PC-3 cells. After being permanently transfected with an empty vector and cDNA encoding the TRPM8 protein, cells were analysed for cell cycle distribution and motility using flow cytometry and scratch assay. Immunocytochemistry and Ca2+ imaging analysis revealed the overexpression of functional TRPM8 channel on both endoplasmic reticulum and plasma membrane of PC-3-TRPM8 cells. Cell cycle distribution and scratch assay analysis revealed that TRPM8 induced cell cycle arrest at the G0/G1 stage (P &lt; 0.05) and facilitated the cell apoptosis induced by starvation (P &lt; 0.05). Furthermore, TRPM8 inhibited the migration of PC-3-TRPM8 cells (P &lt; 0.01) through the inactivation of focal-adhesion kinase. It appears that TRPM8 was not essential for the survival of PC-3 cells; however, the overexpression of TRPM8 had negative effects on the proliferation and migration of PC-3 cells. Thus, TRPM8 and its agonists may serve as important targets for the treatment of prostate cancer."	"TRPM8 and prostate cancer: to overexpress or repress, that is the question-comment on &quot;Effects of TRPM8 on proliferation and motility of prostate cancer PC-3 cells&quot; by Yang ZH et al. in Asian Journal of Andrology. NA"	"Analytical thermal-optic model for laser heating of biological tissue using the hyperbolic heat transfer equation. In this paper, we solve in an analytical way the thermal-optic coupled problem associated with a 1D model of non-perfused homogeneous biological tissue irradiated by a laser beam. We consider a laser pulse duration of 200 micros and study the temperatures of areas very close to the point of laser beam application. We consider that these values of the temporal and spatial variables mean that the problem has to be solved by means of the hyperbolic heat conduction model instead of the classic or parabolic model. We therefore obtain the solution using both models and apply the temperature profiles obtained to a specific biological tissue for comparison. Finally, we theoretically study the effect of the thermal relaxation time on the temperature profiles in the tissue for both heating and cooling phases (i.e. during and after laser application)."	"Multiple roles for Puralpha in cellular and viral regulation. Pur-alpha is a ubiquitous multifunctional protein that is strongly conserved throughout evolution, binds to both DNA and RNA and functions in the initiation of DNA replication, control of transcription and mRNA translation. In addition, it binds to several cellular regulatory proteins including the retinoblastoma protein, E2F-1, Sp1, YB-1, cyclin T1/Cdk9 and cyclin A/Cdk2. These observations and functional studies provide evidence that Puralpha is a major player in the regulation of the cell cycle and oncogenic transformation. Puralpha also binds to viral proteins such as the large T-antigen of JC virus (JCV) and the Tat protein of human immunodeficiency virus-1 (HIV-1) and plays a role in the cross-communication of these viruses in the opportunistic polyomavirus JC (JCV) brain infection, progressive multifocal leukoencephalopathy (PML). The creation of transgenic mice with inactivation of the PURA gene that encodes Puralpha has revealed that Puralpha is critical for postnatal brain development and has unraveled an essential role of Puralpha in the transport of specific mRNAs to the dendrites and the establishment of the postsynaptic compartment in the developing neurons. Finally, the availability of cell cultures from the PURA knockout mice has allowed studies that have unraveled a role for Puralpha in DNA repair."	"A regulatory role of the Bateman domain of IMP dehydrogenase in adenylate nucleotide biosynthesis. The Bateman domain (CBS subdomain) of IMP dehydrogenase (IMPDH), a rate-limiting enzyme of the de novo GMP biosynthesis, is evolutionarily conserved but has no established function. Deletion of the Bateman domain has no effect on the in vitro IMPDH activity. We report that in vivo deletion of the Bateman domain of IMPDH in Escherichia coli (guaB(DeltaCBS)) sensitizes the bacterium to growth arrest by adenosine and inosine. These nucleosides exert their growth inhibitory effect via a dramatic increase in the intracellular adenylate nucleotide pool, which results in the enhanced allosteric inhibition of PRPP synthetase and consequently a PRPP deficit. The ensuing starvation for pyrimidine nucleotides culminates in growth arrest. Thus, deletion of the Bateman domain of IMPDH derepresses the synthesis of AMP from IMP. The growth inhibitory effect of inosine can be rescued by second-site suppressor mutations in the genes responsible for the conversion of inosine to AMP (gsk, purA, and purB) as well as by the prsA1 allele, which encodes a PRPP synthetase that is insensitive to allosteric inhibition by adenylate nucleotides. Importantly, the guaB(DeltaCBS) phenotype can be complemented in trans by a mutant guaB allele, which encodes a catalytically disabled IMPDH(C305A) protein containing an intact Bateman domain. We conclude that the Bateman domain of IMPDH is a negative trans-regulator of adenylate nucleotide synthesis, and that this role is independent of the catalytic function of IMPDH in the de novo GMP biosynthesis."	"Alterations in biochemical parameters during subacute toxicity of fluoride alone and in conjunction with aluminum sulfate in goats. Fluoride toxicity is a serious health problem in many parts of the globe. In present study, sodium fluoride at 20 mg/kg alone and in conjunction with aluminum sulfate at 150 mg/kg was administered orally daily for 30 days in healthy goats of group 1 and 2, respectively, to access the alterations in the various biochemical parameters during subacute toxicity of fluoride alone and in conjunction with aluminum sulfate. In Group 1, significant alterations in plasma glucose, blood urea nitrogen (BUN), creatinine, total protein, albumin, globulin, albumin/globulin ratio, magnesium, and sodium were observed on different days of exposure from their pre-exposure values. However, no significant changes were observed in plasma calcium, phosphorus, and potassium on different days of exposure of sodium fluoride. Similar type of biochemical alterations were noticed in the goats of Group 2 except BUN, total protein magnesium, and sodium. On the basis of results, it could be concluded that sodium fluoride alone and in conjunction with aluminum sulfate produced significant alterations in the various biochemical parameters of the body."	"Atlas-based Automated Segmentation of Spleen and Liver using Adaptive Enhancement Estimation. The paper presents the automated segmentation of spleen and liver from contrast-enhanced CT images of normal and hepato/splenomegaly populations. The method used 4 steps: (i) a mean organ model was registered to the patient CT; (ii) the first estimates of the organs were improved by a geodesic active contour; (iii) the contrast enhancements of liver and spleen were estimated to adjust to patient image characteristics, and an adaptive convolution refined the segmentations; (iv) lastly, a normalized probabilistic atlas corrected for shape and location for the precise computation of each organ's volume and height (mid-hepatic liver height and cephalocaudal spleen height). Results from test data demonstrated the method's ability to accurately segment the spleen (RMS error = 1.09mm; DICE/Tanimoto overlaps = 95.2/91) and liver (RMS error = 2.3mm, and DICE/Tanimoto overlaps = 96.2/92.7). The correlations (R(2)) with clinical/manual height measurements were 0.97 and 0.93 for the spleen and liver respectively."	"Atlas-based automated segmentation of spleen and liver using adaptive enhancement estimation. The paper presents the automated segmentation of spleen and liver from contrast-enhanced CT images of normal and hepato/splenomegaly populations. The method used 4 steps: (i) a mean organ model was registered to the patient CT; (ii) the first estimates of the organs were improved by a geodesic active contour; (iii) the contrast enhancements of liver and spleen were estimated to adjust to patient image characteristics, and an adaptive convolution refined the segmentations; (iv) lastly, a normalized probabilistic atlas corrected for shape and location for the precise computation of each organ's volume and height (mid-hepatic liver height and cephalocaudal spleen height). Results from test data demonstrated the method's ability to accurately segment the spleen (RMS error = 1.09 mm; DICE/Tanimoto overlaps = 95.2/91) and liver (RMS error = 2.3 mm, and DICE/Tanimoto overlaps = 96.2/92.7). The correlations (R2) with clinical/manual height measurements were 0.97 and 0.93 for the spleen and liver respectively."	"Primary B-cell pituitary lymphoma of the Burkitt type: case report of the rare clinic entity with typical clinical presentation. Primary CNS lymphomas (PCNSLs) constitute 3% of all intracranial neoplasms. From these, primary pituitary lymphomas (PPLs) represent extremely rare clinical entity. Nearly all of PCNSLs are non-Hodgkin diffuse large B-cell lymphomas. We present a 60-year-old female with right-sided third cranial nerve palsy, mild bitemporal visual field deficit, severe cephalea, and polyuria-polydipsia. Hypopituitarism with hyperprolactinemia was confirmed; brain imaging revealed a 16 mm-diameter sellar mass with suprasellar extension. A presumptive diagnosis of pituitary adenoma was established. The patient underwent a neurosurgical intervention. Histopathological examination and immunophenotyping (cytokeratin, CD45+, CD79+, bcl-2-) verified high-grade B-cell non-Hodgkin lymphoma of the Burkitt type. Systemic work-up showed no other foci of lymphoma, the patient's HIV status was negative, Epstein-Barr virus status was not disclosed. Although PPL can be undistinguishable from pituitary adenoma at imaging, one should consider lymphoma when evaluating an invasive sellar mass that is iso- to hypointense on T2-weighted magnetic resonance images, particularly when the patient is immunocompromised or old and presents with diabetes insipidus, cranial nerve palsy and fever of unknown origin in addition to the expected finding of hypopituitarism."	"Could Puralpha be a cancer target? NA"	"Protective role of Puralpha to cisplatin. The nucleic acid-binding protein Puralpha is involved at stalled DNA replication forks, in double-strand break (DSB) DNA repair and the cellular response to DNA replication stress. Puralpha also regulates homologous recombination-directed DNA repair (HRR). Cells lacking Puralpha showed enhanced sensitivity to cisplatin as evaluated by assays for cell viability and cell clonogenicity. This was seen both in Puralpha-negative MEFs and in human glioblastoma cells treated with siRNA directed against Puralpha. MEFs lacking Puralpha also showed enhanced H2AX phosphorylation in response to cisplatin. Repair of a reporter plasmid that had been treated with cisplatin was decreased in a reactivation assay using Puralpha-negative MEFs and the capacity of nuclear extracts from Puralpha-negative MEFs to perform non-homologous end-joining in vitro was also impaired. We investigated the effects of the DNA damage-inducing cancer chemotherapeutic agent cisplatin on mouse embryo fibroblasts (MEFs) from PURA(-/-) knockout mice that lack Puralpha. Puralpha has a role in the cellular response to cisplatin-induced DNA damage and may provide new therapeutic modalities for cisplatin-resistant tumors."	"Negative regulation of AbetaPP gene expression by pur-alpha. The nucleic acid binding protein, Pur-alpha, is best characterized as a transcription factor with affinity to single stranded G/C rich regions. Pur-alpha exhibits developmental and tissue-specific regulation and plays a critical role in neuronal development and differentiation. Similar to Pur-alpha, the amyloid-beta protein precursor (AbetaPP) is a developmentally regulated protein which promotes neuronal survival. Both the human and mouse AbetaPP promoters contain multiple G/C rich sequences which regulate AbetaPP at the transcriptional and translational levels. Using an in vitro reporter assay, we confirmed that Pur-alpha consensus binding sites within the human AbetaPP promoter down-regulate AbetaPP transcription. Electrophoretic mobility shift and chromatin immunoprecipitation assays (ChIP) showed direct binding of Pur-alpha to the AbetaPP promoter. Down regulation of AbetaPP went beyond the transcriptional level as overexpression of Pur-alpha in glial and fibroblast cell lines decreased basal levels of AbetaPP while siRNA targeting Pur-alpha increased basal levels of AbetaPP. Similar findings were observed in brain tissue and fibroblasts from mice with targeted deletion of Pur-alpha. These data point to a novel mechanism of controlling AbetaPP levels by the transcriptional regulatory protein, Pur-alpha, and suggest that Pur-alpha may be involved in the dysregulation of AbetaPP in Alzheimer's disease."	"Autoantibodies against type I interferons as an additional diagnostic criterion for autoimmune polyendocrine syndrome type I. In autoimmune polyendocrinopathy syndrome type I (APS-I), mutations in the autoimmune regulator gene (AIRE) impair thymic self-tolerance induction in developing T cells. The ensuing autoimmunity particularly targets ectodermal and endocrine tissues, but chronic candidiasis usually comes first. We recently reported apparently APS-I-specific high-titer neutralizing autoantibodies against type I interferons in 100% of Finnish and Norwegian patients, mainly with two prevalent AIRE truncations. Because variability in clinical features and age at onset in APS-I frequently results in unusual presentations, we prospectively checked the diagnostic potential of anti-interferon antibodies in additional APS-I panels with other truncations or rare missense mutations and in disease controls with chronic mucocutaneous candidiasis (CMC) but without either common AIRE mutation. The study was designed to detect autoantibodies against interferon-alpha2 and interferon-omega in antiviral neutralization assays. Patients included 14 British/Irish, 15 Sardinian, and 10 Southern Italian AIRE-mutant patients with APS-I; also 19 other patients with CMC, including four families with cosegregating thyroid autoimmunity. The diagnostic value of anti-interferon autoantibodies was assessed. We found antibodies against interferon-alpha2 and/or interferon-omega in all 39 APS-I patients vs. zero of 48 unaffected relatives and zero of 19 British/Irish CMC patients. Especially against interferon-omega, titers were nearly always high, regardless of the exact APS-I phenotype/duration or AIRE genotype, including 12 different AIRE length variants or 10 point substitutions overall (n=174 total). Strikingly, in one family with few typical APS-I features, these antibodies cosegregated over three generations with autoimmune hypothyroidism plus a dominant-negative G228W AIRE substitution. Otherwise restricted to patients with thymoma and/or myasthenia gravis, these precocious persistent antibodies show 98% or higher sensitivity and APS-I specificity and are thus a simpler diagnostic option than detecting AIRE mutations."	"Genetic analysis of the Hispano-Breton heavy horse. Hispano-Breton (HB) is a horse breed with a recent mixed ancestry. It was developed in the 1930s by crossing local mares with Breton draught horses imported from France. Nowadays it is considered to be in a vulnerable situation due to census decline. To genetically characterize the breed and to set up the basis for a conservation programme, we have employed two types of molecular markers: a 347-bp D-loop mitochondrial DNA (mtDNA) fragment and 13 microsatellite loci. A representative sample of 53 HB individuals was analysed together with a sample of 40 Pura Raza Española horses for comparison. Both types of markers revealed a high level of genetic diversity in the HB breed, emphasizing the importance of its conservation. The construction of a phylogenetic network with mtDNA sequences including various Iberian breeds and European heavy horses provided an overall picture of the ubiquitous appearance of HB matrilines with respect to other breeds and revealed the singularity of certain HB maternal lineages. Despite the high allelic richness found in HB horses, microsatellite analysis evidenced a certain degree of inbreeding as a consequence of the type of management generally used for local breeds."	"Modelling stereokinetic phenomena by a minimum relative motion assumption: the tilted disk, the ellipsoid and the tilted bar. The stereokinetic phenomena of the tilted disk and of the ellipsoid are visual illusions of depth elicited by a flat figure with elliptic contour rotating at uniform speed in the frontal plane of an observer. Strictly related to the appearance of the ellipsoid is the stereokinetic phenomenon of the tilted bar, elicited by a line segment of constant length rotating at uniform speed in the frontal plane. We present a mathematical model of these phenomena, based on an assumption of minimization by the Visual System of the differences between the lengths of the velocity vectors of the stimulus (minimum relative motion assumption): the &quot;rigidity hypothesis&quot; is able to explain the appearance of the tilted disk but not the appearance of the ellipsoid and of the tilted bar. The theoretical results obtained by our modelling are in good agreement with the experimental observations."	"Role of Puralpha in the modulation of homologous recombination-directed DNA repair by HIV-1 Tat. The nucleic acid-binding protein Puralpha is involved at stalled DNA replication forks, in double-strand break (DSB) DNA repair and the cellular response to DNA replication stress. Puralpha interacts with HIV-1 Tat, which regulates homologous recombination-directed DNA repair (HRR). We investigated Rad51 and HRR regulation in mouse embryo fibroblasts (MEFs) from PURA -/- knockout mice that lack Puralpha. Rad51 was induced in PURA -/- MEFs but was repressed when Puralpha was ectopically expressed in these cells. Similarly Rad51 inversely correlated with the level of Puralpha in normal postnatal mouse brain. HIV-1 Tat stimulated HRR DNA repair of I-SceI induced DNA DSBs and the nuclear appearance of Rad51 foci. In contrast, Puralpha suppressed HRR DNA repair, Rad51 expression, and Rad51 foci formation. Tat stimulates the Rad51 promoter involving both Puralpha-dependent and Puralpha-independent mechanisms. Interaction between Puralpha and Tat may have opposing effects on Rad51 expression. The effects on HRR may contribute to HIV-1 associated pathogenesis."	"[Adrenocortical disorders in pregnancy]. Adrenocortical disorders in pregnancy are rare, but unrecognized of them are associated with higher maternal and fetal morbidity. The diagnosis is more complicated because of physiologic changes hormones and frequently lacking normative datas during pregnancy. Therefore increased attention could allow early diagnosis and treatment, that improve prognosis for both the mother and fetus."	"Autoimmune polyendocrine syndrome type I in Slovakia: relevance of screening patients with autoimmune Addison's disease. Autoimmune polyendocrine syndrome type I (APS I) is a monogenic disease affecting endocrine glands and other organs due to mutations of the autoimmune regulator (AIRE) gene. There is a wide variability in clinical phenotypes in patients with APS I, which makes the diagnosis a challenge. To screen for APS I among Slovakian patients with sporadic Addison's disease and clinical features that raised the suspicion of APS I. All 14 exons and exon-intron boundaries of the AIRE gene were sequenced. In addition, autoantibodies specific for Addison's disease and polyendocrine syndromes were assayed. Using clinical criteria we identified four patients with APS I in three families. Two patients had a novel missense mutation in exon 2 (c.274C&gt;T, p.R92W) and either the Finnish major mutation (c.769C&gt;T) or the common 13 bp deletion (c.967-979del13bp). APS I was diagnosed in a brother of the latter after his death due to an adrenal crisis. A fourth patient had primary adrenal failure and hypoparathyroidism without AIRE mutations or APS-I specific autoantibodies. Four patients with APS I were found in a Slovakian cohort of Addison patients, although the lack of detectable AIRE mutations and APS I-specific autoantibodies raises uncertainty regarding the pathogenesis in one of the patients. This study demonstrates the merits of screening patients with phenotypic features or autoantibody findings that could indicate APS I, even in adult patients. It is necessary to identify APS I patients in order to provide appropriate treatment and follow-up of the various components of APS I."	"Androgen receptor overexpression in prostate cancer linked to Pur alpha loss from a novel repressor complex. Increased androgen receptor (AR) expression and activity are pivotal for androgen-independent (AI) prostate cancer (PC) progression and resistance to androgen-deprivation therapy. We show that a novel transcriptional repressor complex that binds a specific sequence (repressor element) in the AR gene 5'-untranslated region contains Pur alpha and hnRNP-K. Pur alpha expression, its nuclear localization, and its AR promoter association, as determined by chromatin immunoprecipitation analysis, were found to be significantly diminished in AI-LNCaP cells and in hormone-refractory human PCs. Transfection of AI cells with a plasmid that restored Pur alpha expression reduced AR at the transcription and protein levels. Pur alpha knockdown in androgen-dependent cells yielded higher AR and reduced p21, a gene previously shown to be under negative control of AR. These changes were linked to increased proliferation in androgen-depleted conditions. Treatment of AI cells with histone deacetylase and DNA methylation inhibitors restored Pur alpha protein and binding to the AR repressor element. This correlated with decreased AR mRNA and protein levels and inhibition of cell growth. Pur alpha is therefore a key repressor of AR transcription and its loss from the transcriptional repressor complex is a determinant of AR overexpression and AI progression of PC. The success in restoring Pur alpha and the repressor complex function by pharmacologic intervention opens a promising new therapeutic approach for advanced PC."	"C9orf10 protein, a novel protein component of Puralpha-containing mRNA-protein particles (Puralpha-mRNPs): characterization of developmental and regional expressions in the mouse brain. Puralpha has been implicated in mRNA transport and translation in neurons. We previously reported that Puralpha is a component of mRNA/protein complexes (Puralpha-mRNPs) with several other proteins. Among them, we found the C9orf10 (Homo sapiens chromosome 9 open reading frame 10) protein, which was recently characterized as a component of RNA-containing structures. However, C9orf10 itself remains poorly understood. To characterize C9orf10 expression at the protein level, we raised an antibody against C9orf10 and compared the spatial and developmental expressions of this protein and Puralpha in the mouse brain. C9orf10 was expressed as early as embryo stage 12, whereas Puralpha was expressed from 5 days after birth. In adults, C9orf10 expression was most prominent in the hippocampus, caudate putamen, cerebral cortex, and cerebellum, unlike the uniform distribution of Puralpha. C9orf10-positive cells also showed immunoreactivity to Puralpha. C9orf10 expression was restricted to neurons, judging by the immunoreactivity to neuron-specific nuclear protein or CaM kinase II. These observations suggest an accessory role of C9orf10 for Puralpha in a limited brain region in addition to other possible functions that have not yet been determined."	"The potential role of purine-rich element binding protein (PUR) alpha as a novel treatment target for hormone-refractory prostate cancer. Hormonal therapy for advanced prostate cancer is typically effective at first, but almost all men suffer refractory disease which often is life threatening. The nuclear matrix comprises not only of the structural elements of the nucleus, but is associated with many components of the molecular machinery. Our aim is to find novel targets for the treatment of hormone-refractory prostate cancer (HRPC) by focusing on the composition of the nuclear matrix proteins (NMPs). LN96 cells were established at our Institution after long-term culturing of LNCaP cells under androgen deprived conditions. The composition of NMPs of LNCaP cells and LN96 cells were analyzed by two-dimensional (2D) electrophoresis and spots differentially expressed were investigated by mass spectrometry for identification. Among the spots identified, we analyzed the potential functional role of the identified proteins in prostate cancer cells by establishing stable overexpressed cells. We found that purine-rich element binding protein (PUR)alpha was significantly repressed not only in NMPs but also in total protein and mRNA levels of LN96 cells in comparison to LNCaP cells under the same steroid deprived conditions. Moreover, PURalpha was decreased in its expression both at the protein and mRNA levels in the androgen-independent prostate cancer cell lines, PC3 and DU145 in comparison to LNCaP cells. Stably overexpressing PURalpha in PC3 and DU145 cells negatively regulates cell proliferation, resulting in decreases in PCNA expression. Further dissection of the role of PURalpha in cell growth regulation may reveal a novel target for HRPC."	"A study of the Fermi-Pasta-Ulam problem in dimension two. Continuing the previous work on the same subject, we study here different two-dimensional Fermi-Pasta-Ulam (FPU)-like models, namely, planar models with a triangular cell, molecular-type potential and different boundary conditions, and perform on them both traditional FPU-like numerical experiments, i.e., experiments in which energy is initially concentrated on a small subset of normal modes, and other experiments, in which we test the time scale for the decay of a large fluctuation when all modes are excited almost to the same extent. For each experiment, we observe the behavior of the different two-dimensional systems and also make an accurate comparison with the behavior of a one-dimensional model with an identical potential. We assume the thermodynamic point of view and try to understand the behavior of the system for large n (the number of degrees of freedom) at fixed specific energy epsilon=En. As a result, it turns out that: (i) The difference between dimension one and two, if n is large, is substantial. In particular (making reference to FPU-like initial conditions) the &quot;one-dimensional scenario,&quot; in which the dynamics is dominated for a long time scale by a weakly chaotic metastable situation, in dimension two is absent; moreover in dimension two, for large n, the time scale for energy sharing among normal modes is drastically shorter than in dimension one. (ii) The boundary conditions in dimension two play a relevant role. Indeed, models with fixed or open boundary conditions give fast equipartition, on a rather short time scale of order epsilon(-1), while a periodic model gives longer equilibrium times (although much shorter than in dimension one)."	"Serum response factor neutralizes Pur alpha- and Pur beta-mediated repression of the fetal vascular smooth muscle alpha-actin gene in stressed adult cardiomyocytes. Mouse hearts subjected to repeated transplant surgery and ischemia-reperfusion injury develop substantial interstitial and perivascular fibrosis that was spatially associated with dysfunctional activation of fetal smooth muscle alpha-actin (SM alpha A) gene expression in graft ventricular cardiomyocytes. Compared with cardiac fibroblasts in which nuclear levels of the Sp1 and Smad 2/3 transcriptional-activating proteins increased markedly after transplant injury, the most abundant SM alpha A gene-activating protein in cardiomyocyte nuclei was serum response factor (SRF). Additionally, cardiac intercalated discs in heart grafts contained substantial deposits of Pur alpha, an mRNA-binding protein and known negative modulator of SRF-activated SM alpha A gene transcription. Activation of fetal SM alpha A gene expression in perfusion-isolated adult cardiomyocytes was linked to elevated binding of a novel protein complex consisting of SRF and Pur alpha to a purine-rich DNA element in the SM alpha A promoter called SPUR, previously shown to be required for induction of SM alpha A gene transcription in injury-activated myofibroblasts. Increased SRF binding to SPUR DNA plus one of two nearby CArG box consensus elements was observed in SM alpha A-positive cardiomyocytes in parallel with enhanced Pur alpha:SPUR protein:protein interaction. The data suggest that de novo activation of the normally silent SM alpha A gene in reprogrammed adult cardiomyocytes is linked to elevated interaction of SRF with fetal-specific CArG and injury-activated SPUR elements in the SM alpha A promoter as well as the appearance of novel Pur alpha protein complexes in both the nuclear and cytosolic compartments of these cells."	"Adipokine protein expression pattern in growth hormone deficiency predisposes to the increased fat cell size and the whole body metabolic derangements. GH deficiency (GHD) in adults is associated with central adiposity, dyslipidemia, and insulin resistance. The objective of the study was to test the hypothesis that GHD might change the spectrum of adipokines and thus influence the adipose tissue and the whole-body metabolic and inflammatory status leading to development of insulin resistance. This was a single-center observational study with a cross-sectional design. Protein arrays were used to characterize adipokines expressed in the sc adipose tissue obtained from young GHD adults and compared with age-, gender-, and body mass index (BMI)-matched group of healthy individuals. All subjects underwent an oral glucose tolerance test, euglycemic hyperinsulinemic clamp, and magnetic resonance imaging examination. Presence of abdominal obesity, enlarged adipocytes, increased circulating high-sensitivity C-reactive protein, impaired glucose tolerance, and decreased insulin action were found in GHD. Changes in adipokine protein expression due to GHD were highly dependent on the obesity phenotype. Lean GHD individuals (BMI approximately 23 kg/m(2)) had decreased protein levels for stem cell factor and epithelial growth factor, indicating a possible defect in adipocyte differentiation and proliferation. Decrease of vascular endothelial growth factor, stromal cell-derived factor, angiopoietin-2, and brain-derived neurotrophic factor advocated for attenuated angiogenesis and neurogenesis. Presence of obesity (BMI approximately 31 kg/m(2)) eliminated these inhibitory effects. However, adipose tissue expansion in GHD individuals was paralleled by an elevation of adipose tissue proinflammatory cytokines (IL-1beta, interferon-gamma) and chemoattractants (interferon-inducible T cell alpha-chemoattractant, monocyte chemotactic protein-2, monocyte chemotactic protein-3, eotaxin). Our data demonstrate that GHD modulates adipokine and cytokine protein expression pattern, which might influence the adipose tissue growth and differentiation and predispose to tissue hypoxia, inflammation, and a defect in the whole-body insulin action."	"[Prospects for using combined spinal-epidural anesthesia in obstetric care]. NA"	"Effect of the thermal wave in radiofrequency ablation modeling: an analytical study. To date, all radiofrequency heating (RFH) theoretical models have employed Fourier's heat transfer equation (FHTE), which assumes infinite thermal energy propagation speed. Although this equation is probably suitable for modeling most RFH techniques, it may not be so for surgical procedures in which very short heating times are employed. In such cases, a non-Fourier model should be considered by using the hyperbolic heat transfer equation (HHTE). Our aim was to compare the temperature profiles obtained from the FHTE and HHTE for RFH modeling. We built a one-dimensional theoretical model based on a spherical electrode totally embedded and in close contact with biological tissue of infinite dimensions. We solved the electrical-thermal coupled problem analytically by including the power source in both equations. A comparison of the analytical solutions from the HHTE and FHTE showed that (1) for short times and locations close to the electrode surface, the HHTE produced temperatures higher than the FHTE, however, this trend became negligible for longer times, when both equations produced similar temperature profiles (HHTE always being higher than FHTE); (2) for points distant from the electrode surface and for very short times, the HHTE temperature was lower than the FHTE, however, after a delay time, this tendency inverted and the HHTE temperature increased to the maximum; (3) from a mathematical point of view, the HHTE solution showed cuspidal-type singularities, which were materialized as a temperature peak traveling through the medium at a finite speed. This peak rose at the electrode surface, and clearly reflected the wave nature of the thermal problem; (4) the differences between the FHTE and HHTE temperature profiles were smaller for the lower values of thermal relaxation time and locations further from the electrode surface."	"Isolation and characterization of a novel H1.2 complex that acts as a repressor of p53-mediated transcription. Linker histone H1 has been generally viewed as a global repressor of transcription by preventing the access of transcription factors to sites in chromatin. However, recent studies suggest that H1 can interact with other regulatory factors for its action as a negative modulator of specific genes. To investigate these aspects, we established a human cell line expressing H1.2, one of the H1 subtypes, for the purification of H1-interacting proteins. Our results showed that H1.2 can stably associate with sets of cofactors and ribosomal proteins that can significantly repress p53-dependent, p300-mediated chromatin transcription. This repressive action of H1.2 complex involves direct interaction of H1.2 with p53, which in turn blocks p300-mediated acetylation of chromatin. YB1 and PURalpha, two factors present in the H1.2 complex, together with H1.2 can closely recapitulate the repressive action of the entire H1.2 complex in transcription. Chromatin immunoprecipitation and RNA interference analyses further confirmed that the recruitment of YB1, PURalpha, and H1.2 to the p53 target gene Bax is required for repression of p53-induced transcription. Therefore, these results reveal a previously unrecognized function of H1 as a transcriptional repressor as well as the underlying mechanism involving specific sets of factors in this repression process."	"Assessment of hyperbolic heat transfer equation in theoretical modeling for radiofrequency heating techniques. Theoretical modeling is a technique widely used to study the electrical-thermal performance of different surgical procedures based on tissue heating by use of radiofrequency (RF) currents. Most models employ a parabolic heat transfer equation (PHTE) based on Fourier's theory, which assumes an infinite propagation speed of thermal energy. We recently proposed a one-dimensional model in which the electrical-thermal coupled problem was analytically solved by using a hyperbolic heat transfer equation (HHTE), i.e. by considering a non zero thermal relaxation time. In this study, we particularized this solution to three typical examples of RF heating of biological tissues: heating of the cornea for refractive surgery, cardiac ablation for eliminating arrhythmias, and hepatic ablation for destroying tumors. A comparison was made of the PHTE and HHTE solutions. The differences between their temperature profiles were found to be higher for lower times and shorter distances from the electrode surface. Our results therefore suggest that HHTE should be considered for RF heating of the cornea (which requires very small electrodes and a heating time of 0.6 s), and for rapid ablations in cardiac tissue (less than 30 s)."	"Structure-function analysis of mouse Pur beta II. Conformation altering mutations disrupt single-stranded DNA and protein interactions crucial to smooth muscle alpha-actin gene repression. Previous studies from our laboratories have implicated two members of the Pur family of single-stranded DNA/RNA-binding proteins, Pur alpha and Pur beta, in transcriptional repression of the smooth muscle alpha-actin gene in vascular cell types. Although Pur alpha and Pur beta share substantial sequence homology and nucleic acid binding properties, genomic promoter and cis-element occupancy studies reported herein suggest that Pur beta is the dominant factor in gene regulation. To dissect the molecular basis of Pur beta repressor activity, site-directed mutagenesis was used to map amino acids critical to the physical and functional interaction of Pur beta with the smooth muscle alpha-actin promoter. Of all the various acidic, basic, and aromatic residues studied, mutation of positionally conserved arginines in the class I or class II repeat modules significantly attenuated Pur beta repressor activity in transfected vascular smooth muscle cells and fibroblasts. DNA binding and protein-protein interaction assays were conducted with purified recombinant Pur beta and selected mutants to reveal the physical basis for loss-of-function. Mutants R57E, R57E/R96E, and R57A/R96A each exhibited reduced single-stranded DNA binding affinity for an essential promoter element and diminished interaction with corepressor YB-1/MSY1. Structural analyses of the R57A/R96A and R57E/R96E double mutants in comparison to the wild-type Pur beta homodimer revealed aberrant self-association into higher order oligomeric complexes, which correlated with decreased alpha-helical content and defective DNA and protein binding in vitro. These findings point to a previously unrecognized structural role for certain core arginine residues in forming a conformationally stable Pur beta protein capable of physical interactions necessary for smooth muscle alpha-actin gene repression."	"The experimental localization of Aubry-Mather sets using regularization techniques inspired by viscosity theory. We provide a new method for the localization of Aubry-Mather sets in quasi-integrable two-dimensional twist maps. Inspired by viscosity theories, we introduce regularization techniques based on the new concept of &quot;relative viscosity and friction,&quot; which allows one to obtain regularized parametrizations of invariant sets with irrational rotation number. Such regularized parametrizations allow one to compute a curve in the phase-space that passes near the Aubry-Mather set, and an invariant measure whose density allows one to locate the gaps on the curve. We show applications to the &quot;golden&quot; cantorus of the standard map as well as to a more general case."	"Puralpha as a cellular co-factor of Rev/RRE-mediated expression of HIV-1 intron-containing mRNA. To ensure successful replication, HIV-1 has developed a Rev-mediated RNA transport system that promotes the export of unspliced genomic RNA from nuclei to cytoplasm. This process requires the Rev responsive element (RRE) that is positioned in the viral transcript encoding Env protein, as well as in unspliced and singly spliced viral transcripts. We identified Puralpha, a single-stranded nucleic acid binding protein as a cellular partner for Rev that augments the appearance of unspliced viral RNAs in the cytoplasm. A decrease in the level of Puralpha expression by siRNA diminishes the level of Rev-dependent expression of viral RNA. Through its nucleic acid binding domain, Puralpha exhibits the ability to interact with the multimerization and RBD domains of Rev. Similar to Rev, Puralpha associates with RRE and in the presence of Rev forms a complex with slower electrophoretic mobility than those from Rev:RRE and Puralpha:RRE. The interaction of Puralpha with RRE occurs in the cytoplasm where enhanced association of Rev with RRE is observed. Our data indicate that the partnership of Puralpha with Rev is beneficial for Rev-mediated expression of the HIV-1 genome."	"Differential expression of Haemophilus parasuis genes in response to iron restriction and cerebrospinal fluid. Haemophilus parasuis is an important opportunistic pathogen in swine of high health status, but to date no proven virulence factors have been described. As virulence factors are known to be regulated during disease, the objective of this study was to identify genes of a virulent serovar 5 strain with altered expression after iron restriction or in the presence of porcine cerebrospinal fluid (CSF), conditions that reflect in vivo growth conditions. Using differential-display reverse-transcriptase-mediated polymerase chain reaction, we found that homologues of genes encoding fructose bisphosphate aldolase (fba), adenylosuccinate synthetase (purA), 2',3'-cyclic nucleotide phosphodiesterase (cpdB), lipoprotein signal peptidase (lspA), pyrophosphate reductase (lytB), superoxide dismutase (sodC), tyrosyl t-RNA synthetase (tyrS), cysteine synthetase (cysK), an unknown protein, and a homologue of a hydrolase of the haloacid dehydrogenase superfamily were upregulated in response to iron restriction. In addition, the purA, cpdB, lspA, lytB, and sodC homologues, cDNAs homologous with a Na+/alanine symporter, fatty acid ligase (fadD), diadenosine tetraphosphatase (apaH), and an unknown protein were upregulated in response to CSF. In screening for the presence of these differentially expressed genes to assess their usefulness as diagnostic markers of high virulence potential, we detected homologues of all of these genes in all of the reference strains of the 15 established serovars. The hydrolase homologue, however, was expressed only in representative H. parasuis strains associated with a high virulence potential, suggesting that this enzyme may play a role in pathogenesis."	"Identification of Pur alpha as a new hypoxia response factor responsible for coordinated induction of the beta 2 integrin family. Central to the process of inflammation are hypoxic conditions that lead to the binding of circulating leukocytes to the endothelium. We have previously shown that such binding is mediated by monocytes being able to directly sense hypoxic conditions and respond by inducing their surface expression of the beta(2) integrin family of adhesion molecules. In this study, we show that coordinated induction of the beta(2) integrins during direct hypoxia-sensing occurs through transcriptional activation of each of the genes by which they are encoded. Certain of the molecular mechanisms that mediate this activation in transcription are dependent upon hypoxia-inducible factor-1 (HIF-1), whereas others are HIF-1 independent. In search of these HIF-1-independent mechanisms, we identified Pur alpha as a new hypoxia-response factor. Binding of Pur alpha to the HIF-1-independent beta(2) integrin promoters is induced by hypoxia and mutagenesis of these Pur alpha-binding sites almost completely abolishes the ability of the promoters to respond to hypoxic conditions. Additional studies using siRNA directed against Pur alpha also revealed a loss in the hypoxic response of the beta(2) integrin promoters. Taken together, our findings demonstrate that hypoxia induces a coordinated up-regulation in beta(2) integrin expression that is dependent upon transcriptional mechanisms mediated by HIF-1 and Pur alpha."	"Purine salvage pathways among Borrelia species. Genome sequencing projects on two relapsing fever spirochetes, Borrelia hermsii and Borrelia turicatae, revealed differences in genes involved in purine metabolism and salvage compared to those in the Lyme disease spirochete Borrelia burgdorferi. The relapsing fever spirochetes contained six open reading frames that are absent from the B. burgdorferi genome. These genes included those for hypoxanthine-guanine phosphoribosyltransferase (hpt), adenylosuccinate synthase (purA), adenylosuccinate lyase (purB), auxiliary protein (nrdI), the ribonucleotide-diphosphate reductase alpha subunit (nrdE), and the ribonucleotide-diphosphate reductase beta subunit (nrdF). Southern blot assays with multiple Borrelia species and isolates confirmed the presence of these genes in the relapsing fever group of spirochetes but not in B. burgdorferi and related species. TaqMan real-time reverse transcription-PCR demonstrated that the chromosomal genes (hpt, purA, and purB) were transcribed in vitro and in mice. Phosphoribosyltransferase assays revealed that, in general, B. hermsii exhibited significantly higher activity than did the B. burgdorferi cell lysate, and enzymatic activity was observed with adenine, hypoxanthine, and guanine as substrates. B. burgdorferi showed low but detectable phosphoribosyltransferase activity with hypoxanthine even though the genome lacks a discernible ortholog to the hpt gene in the relapsing fever spirochetes. B. hermsii incorporated radiolabeled hypoxanthine into RNA and DNA to a much greater extent than did B. burgdorferi. This complete pathway for purine salvage in the relapsing fever spirochetes may contribute, in part, to these spirochetes achieving high cell densities in blood."	"Computational models of myocardial endomysial collagen arrangement. Collagen extracellular matrix is one of the factors related to high passive stiffness of cardiac muscle. However, the architecture and the mechanical aspects of the cardiac collagen matrix are not completely known. In particular, endomysial collagen contribution to the passive mechanics of cardiac muscle as well as its micro anatomical arrangement is still a matter of debate. In order to investigate mechanical and structural properties of endomysial collagen, we consider two alternative computational models of some specific aspects of the cardiac muscle. These two models represent two different views of endomysial collagen distribution: (1) the traditional view and (2) a new view suggested by the data obtained from scanning electron microscopy (SEM) in NaOH macerated samples (a method for isolating collagen from the other tissue). We model the myocardial tissue as a net of spring elements representing the cardiomyocytes together with the endomysial collagen distribution. Each element is a viscous elastic spring, characterized by an elastic and a viscous constant. We connect these springs to imitate the interconnections between collagen fibers. Then we apply to the net of springs some external forces of suitable magnitude and direction, obtaining an extension of the net itself. In our setting, the ratio forces magnitude /net extension is intended to model the stress /strain ratio of a microscopical portion of the myocardial tissue. To solve the problem of the correct identification of the values of the different parameters involved, we use an artificial neural network approach. In particular, we use this technique to learn, given a distribution of external forces, the elastic constants of the springs needed to obtain a desired extension as an equilibrium position. Our experimental findings show that, in the model of collagen distribution structured according to the new view, a given stress /strain ratio (of the net of springs, in the sense specified above) is obtained with much smaller (w.r.t. the other model, corresponding to the traditional view) elasticity constants of the springs. This seems to indicate that by an appropriate structure, a given stiffness of the myocardial tissue can be obtained with endomysial collagen fibers of much smaller size."	"Lack of association between interleukin-6 promoter polymorphism at position -174 and Henoch-Schönlein pur pura. To assess whether polymorphism of the interleukin (IL)-6 gene at the position -174 was implicated in the incidence of Henoch-Schönlein pur-pura (HSP). A further objective was to determine if any relationship existed with severe systemic complications of HSP, in particular with severe renal and gastrointestinal involvement. Unselected patients from Northwest Spain with primary cutaneous vasculitis classified as HSP according to proposed criteria were studied. All patients included in the present study were required to have had at least 2 year's follow-up. Patients and controls were genotyped for a single biallelic (G/C) nucleotide polymorphism in the promoter region at the position -174 of the IL-6 gene by a polymerase reaction chain-restriction fragment length polymorphism (PCR-RFLP) method. Forty-six Caucasian HSP patients and 124 healthy matched controls were studied. No allele or genotype differences between the whole group of HSP and controls were observed. This was also the case when HSP patients were stratified by the presence of gastrointestinal complications, nephritis, and permanent renal involvement (renal sequelae). The polymorphism in IL-6 gene promoter (-174 G/C) does not appear to be a genetic risk factor for HSP in Northwest Spain."	"On focal stability in dimension two. In Kupka et al. 2006 appears the Focal Stability Conjecture: the focal decomposition of the generic Riemann structure on a manifold M is stable under perturbations of the Riemann structure. In this paper, we prove the conjecture when M has dimension two, and there are no conjugate points."	"Evidence for the involvement of Puralpha in response to DNA replication stress. Puralpha is a sequence-specific nucleic acid binding protein that is involved in multiple cellular functions including regulation of transcription, initiation of DNA replication, cell cycle progression, and neuronal cell differentiation. Its potential role in DNA repair has not been explored. We have now analyzed the role of Puralpha in the cellular response to replication-associated DNA repair of double-strand breaks (DSBs) using Puralpha knockout mouse embryo fibroblasts (MEFs). We found that Puralpha negative cells are hypersensitive to the DNA replication inhibitor, hydroxyurea (HU), and that HU induces excessive DSBs, which delayed the resumption of cell cycle progression after HU treatment. Reintroduction of Pura into Pura null cells reduced the accumulation of DSBs and enhanced DNA end joining. These results suggest a role for Puralpha as a caretaker protein that is involved in the repair of DSBs induced by stalled replication forks."	"[Incidence of thyroid cancer in Slovakia: extensive evidence from one centre in the context of national data]. In this paper the authors summarise the primary malignant thyroid tumors (p.m.t.t.) incidence data from their centre over the period 1984-2005. The results are explained in the context of the p.m.t.t. incidence data from the National Cancer Register (1996 2002). Overall, 6434 thyroid operations were indicated and carried out during the sampling period at the authors' institution, of which 365 cases were histologically confirmed p.m.t.t. (5.7% of all histological findings). Specifically, p.m.t.t. were diagnosed in 295 women (80.8%) and 70 men (19.2%), with the most frequent occurrence in the 5th decade and a higher recent incidence in younger age groups. Whereas follicular thyroid carcinomas predominated in the 1984-1989 period (24 cases or 66.7%), the papillary thyroid carcinoma was the most frequent type in 1990-1997 and 1998-2005: 70 (61.4%) and 160 (74.4%) cases respectively. In the context of the national incidence, the authors' institution increasingly contributes to the diagnosis of p.m.t.t. in Slovakia (8.9% in 1996 vs. 13.9% in 2002). However, neither the progress in diagnostic methods nor the capacity expansion for patient examination can explain the increasing incidence of the p.m.t.t. (3.9/10(6) in 1996 vs. 5.6/10(6) in 2002 in women and 1.3/10(6) in 1996 vs. 1.7/10(6) in 2002 in men, respectively). It remains to be explained why there are significant differences in p.m.t.t. incidence among individual counties. For example, in county Trnava 0.6/10(6) in men in 1996 vs. 1.5/10(6) in 2002; in county Presov 1.2/10(6) in 1996 vs. 2.4/10(6) in 2002. Similarly, in women in county Trnava 3.6/10(6) in 1996 vs. 5.6/10(6) in 2002 and in county Presov 5.4/10(6) in 1996 vs. 8.4/10(6) in 2002. As far as the districts of Slovakia are concerned, data relative to the male population in 2002 indicate zero incidence in 42 out of 79 districts, with the highest incidence (15.9/10(6)) recorded in Svidnik. Likewise, data relative to the female population in 2002 indicate zero incidence in 15 out of 79 districts, with the highest incidence (26.5/10(6)) in Stropkov. These differences call for further (radio)epidemiological, geographical and genetic evaluation."	"A Francisella tularensis subspecies novicida purF mutant, but not a purA mutant, induces protective immunity to tularemia in mice. Francisella tularensis subspecies novicida mutants have been made with deletions introduced into the purA or purF genes. These mutants demonstrated the expected growth requirement for purines and complementation with the wild type genes restored the ability to grow on purine deficient media. The mutants were at least 10,000-fold attenuated by the ip challenge route in Balb/C mice and defective for survival in J774A.1 mouse macrophages. Immunisation with the purA mutant did not provide protection against a subsequent challenge with 100 median lethal doses of F. tularensis subspecies novicida. Immunisation of mice with the purF mutant provided protection against a subsequent challenge with F. tularensis subspecies novicida but not against a subspecies tularensis challenge. These findings suggest that purine auxotrophs of F. tularensis should be further evaluated as live attenuated vaccines against tularemia, but that differential effects are seen depending on which step in the biosynthetic pathway is inactivated."	"Color blindness and interracial interaction: playing the political correctness game. Two experiments explored the ramifications of endorsing color blindness as a strategy for appearing unprejudiced. In Study 1, Whites proved adept at categorizing faces on the basis of race, but understated their ability to do so. In Study 2, Whites playing the Political Correctness Game--a matching task that requires describing other individuals--were less likely to use race as a descriptor when paired with a Black partner than when paired with a White partner, a strategy that impaired communication and performance. In addition, avoidance of race was associated with Whites making less eye contact with and appearing less friendly toward Black partners."	"Puralpha and Purbeta collaborate with Sp3 to negatively regulate beta-myosin heavy chain gene expression during skeletal muscle inactivity. Adult skeletal muscle retains the capability of transcriptional reprogramming. This attribute is readily observable in the non-weight-bearing (NWB) soleus muscle, which undergoes a slow-to-fast fiber type transition concurrent with decreased beta-myosin heavy chain (betaMyHC) gene expression. Our previous work showed that Sp3 contributes to decreased betaMyHC gene expression under NWB conditions. In this study, we demonstrate that physical and functional interactions between Sp3, Puralpha, and Purbeta proteins mediate repression of betaMyHC expression under NWB conditions. Binding of Puralpha or Purbeta to the single-stranded betaMyHC distal negative regulatory element-sense strand (dbetaNRE-S) element is markedly increased under NWB conditions. Ectopic expression of Puralpha and Purbeta decreased betaMyHC reporter gene expression, while mutation of the dbetaNRE-S element increased expression in C2C12 myotubes. The dbetaNRE-S element conferred Pur-dependent decreased expression on a minimal thymidine kinase promoter. Short interfering RNA sequences specific for Sp3 or for Puralpha and Purbeta decreased endogenous Sp3 and Pur protein levels and increased betaMyHC reporter gene expression in C2C12 myotubes. Immunoprecipitation assays revealed an association between endogenous Puralpha, Purbeta, and Sp3, while chromatin immunoprecipitation assays demonstrated Puralpha, Purbeta, and Sp3 binding to the betaMyHC proximal promoter region harboring the dbetaNRE-S and C-rich elements in vivo. These data demonstrate that Pur proteins collaborate with Sp3 to regulate a transcriptional program that enables muscle cells to remodel their phenotype."	"An artificial three-dimensional matrix promotes ramification in the microglial cell-line, BV-2. Three-dimensional (3D) cell culture yields strikingly different cell phenotypes compared to two-dimensional (2D) cell culture. Since microglia, monocyte derived immune cells in the brain, exist in a variety of cell shapes ranging from amoeboid to ramified, we evaluated the impact of 2D versus 3D culture conditions on cell shape. The microglial cell-line, BV-2, was either cultured on poly-D-lysine coated dishes (2D culture conditions) or in a BD Pura Matrix Peptide Hydrogel (3D culture conditions) in the absence or presence of the extracellular matrix proteins, fibronectin and collagen type I, respectively. We identified five distinct morphological phenotypes (amoeboid, bipolar, tripolar, multipolar, ramified) and compared the frequency distribution of these phenotypes under different culture conditions using a chi(2) test. Culture of BV-2 cells in an inert 3D matrix shifted the frequency distribution from an amoeboid dominated population, which is typical for BV-2 cells cultured under conventional 2D conditions, to a population dominated by multipolar phenotypes. Fibronectin or collagen type I significantly suppressed matrix-induced ramification. These cell culture experiments illustrate the dependency of cell shape on spatial distribution of potential adhesion sites."	"[Primary aldosteronism in gravidity]. Endocrinology and obstetrics have one thing in common--diagnosis and treatment endocrine diseases in gravidity. These are modified by physiological changes in gravidity, often missing data and tests in normal condition and the influence of diagnosis and treatment on the pregnant female and fetus have also to be taken into consideration. If diagnosis of primary aldosteronism is suspected, suprimed plasmatic renin activity is determinant indicator (disregarding arterial hypertension, hypokaliaemia, hyperkaliuresis and proteinuria) as well as ultrasound diagnostics or adrenal gland diagnostics means magnetic resonance imaging. Aldosteron produced adenomas may by treated by adrenalectomy in the second trimester, late diagnosed adenoma and hyperplastic forms are treated by the administration of the respective medicaments."	"[Experience with combined spinal and epidural anesthesia at cesarean section]. The paper analyzes some experience gained in using various modes of regional anesthesia as an anesthetic appliance at cesarean sections and comparatively characterizes various types of central segmental blocks. The results of 213 cases of cesarean section performed under spinal or combined spinal and epidural anesthesia (CSEA) were generalized by the following parameters: block onset, maternal and fetal action, the quality of anesthesia and postoperative analgesia, which leads to the conclusion that CSEA is the method of choice."	"Renal diseases: a 27-year renal biopsy study. Data from registries of renal biopsy (RB), currently an important source for diagnosing renal disease, are available for a number of countries, but different patterns seem to exist in different countries. We reviewed the records of all patients who underwent an RB at our institution over a 27-year period (January 1, 1977, to December 31, 2003), in northern Portugal, a European region with a predominantly Caucasian population. We aimed at identifying patterns of glomerular disease frequency, as well as the corresponding changes over time. The patients were grouped for analysis in 9-year intervals: period A (1977 through 1985), period B (1986 through 1994) and period C (1995 through 2003). Nephrotic syndrome was the most common clinical presentation for RB (42.0%), followed by urinary abnormalities (28.5%), acute renal failure (9.7%), chronic renal failure (9.3%) and nephritic syndrome (9.3%). Primary glomerulonephritis (GN) was the most common type of kidney disease in the present study, representing 50.4% of all renal pathology, followed by secondary GN (29.4%) and vascular and tubulointerstitial diseases (14.0%). The relative frequency of secondary GN and vascular and tubulointerstitial diseases increased significantly over time, and so did IgA nephropathy, the most common type of primary glomerular disease in the present study (31.2%). Focal and segmental glomerulosclerosis represented 6.9% of primary glomerular disease, and its frequency did not increase in the time period under study. Regarding secondary glomerular diseases, apparent changes were noted in the incidence of a number of diseases, including vasculitis, thin glomerular basement membrane disease and Henoch-Schönlein pur-pura. A somewhat similar situation was noted with vascular and tubulointerstitial diseases. We conclude that, as occurs in other European and Asiatic populations, and unlike the findings in the American continent, IgA nephropathy is the most frequent glomerular disease in our population."	"Density-dependent migration and synchronism in metapopulations. A spatially explicit metapopulation model with density-dependent dispersal is proposed in order to study the stability of synchronous dynamics. A stability criterion is obtained based on the computation of the transversal Liapunov number of attractors on the synchronous invariant manifold. We examine in detail a special case of density-dependent dispersal rule where migration does not occur if the patch density is below a certain critical density, while the fraction of individuals that migrate to other patches is kept constant if the patch density is above the threshold level. Comparisons with density-independent migration models indicate that this simple density-dependent dispersal mechanism reduces the stability of synchronous dynamics. We were able to quantify exactly this loss of stability through the frequency that synchronous trajectories are above the critical density."	"Nucleotide mutations in purA gene and pur operon promoter discovered in guanosine- and inosine-producing Bacillus subtilis strains. The promoter region of the pur operon, which contains 12 genes for inosine monophosphate biosynthesis from phosphoribosylpyrophosphate, and the purA gene, encoding the adenylosuccinate synthetase, were compared among wild-type and three purine-producing Bacillus subtilis strains. A single nucleotide deletion at position 55 (relative to translation start site) in purA gene was found in a high inosine-producing strain and in a high guanosine-producing strain, which correlates with the absence of adenylosuccinate synthetase activity in these strains. Within the pur operon promoter of high guanosine-producing strain, in addition to a single nucleotide deletion in PurBox1 and a single nucleotide substitution in PurBox2, there were 4 substitutions in the flanking region of the PurBoxes and 32 nucleotide mutations in the 5' untranslated region. These mutations may explain the purine accumulation in purine-producing strains and be helpful to the rational design of high-yield recombinant strains."	"Regulation of the Pur-alpha promoter by E2F-1. Puralpha is a ubiquitously expressed multifunctional nucleic acid-binding protein that is involved in many cellular processes including transcriptional regulation, the cell cycle, oncogenic transformation, and post-natal brain development. Previously, Puralpha protein was found to bind to E2F-1, inhibit E2F-1 transcriptional activity, and reverse the effects of ectopic E2F-1 expression on cell growth. Also Puralpha binds to a GC/GA-rich sequence within its own promoter and inhibits gene expression, that is, Puralpha is autoregulated. We now report that the Puralpha promoter (pPuralpha) is induced by E2F-1 and that this activity maps to a consensus E2F-1 binding motif that is juxtaposed to the Puralpha binding site. Deletion mutants of the E2F-1 protein showed that the region between amino acid residues 88-241 is important for this activity. E2F-1-associated activation of the pPuralpha was inhibited by co-expression of Puralpha, pRb, and an RNA species with specific binding to E2F-1. Chromatin immunoprecipitation (ChIP) assay using primers that flanked the juxtaposed Puralpha and E2F-1 binding sites verified the presence of Puralpha and E2F-1 on the pPuralpha in vivo. In a Tet-inducible cell line, Puralpha delayed cell cycle progression. Thus, E2F-1 and Puralpha interplay appears to be involved in the regulation of Puralpha expression and the cell cycle."	"Genome-wide expression analysis detects eight genes with robust alterations specific to bipolar I disorder: relevance to neuronal network perturbation. The limited number of genome-wide transcriptome analyses using the postmortem brains of bipolar disorder sufferers has not produced a clear consensus on the molecular pathways affected by the disorder. To expand the knowledge in this area, we examined the expression levels of more than 12 000 genes in Brodmann's Area (BA), 46 (dorsolateral prefrontal cortex) from bipolar I disorder and control samples using Affymetrix GeneChips. This analysis detected 108 differentially expressed genes in bipolar brains. Validation studies using quantitative RT-PCR on the two original diagnostic cohorts plus tissue from schizophrenic subjects, confirmed the differential expressions of eight genes (RAP1GA1, SST, HLA-DRA, KATNB1, PURA, NDUFV2, STAR and PAFAH1B3) in a bipolar-specific manner and one gene (CCL3) which was downregulated in both bipolar and schizophrenic brains. Of these, protein levels of RAP1GA1 (RAP1 GTPase activating protein 1) showed a trend of increase in BA46 from bipolar brains, in keeping with mRNA transcript levels. Transmission disequilibrium analysis of the nine genes using 43 single nucleotide polymorphisms (SNPs) in 229 National Institute of Mental Health bipolar trios exposed nominal SNP association and modest empirical haplotypic association (P=0.033) between SST (somatostatin) and disease. Finally, gene network analysis using the currently obtained expression data highlighted cellular growth and nervous system development pathways as potential targets in the molecular pathophysiology of bipolar disorder."	"Role of Pur alpha in targeting mRNA to sites of translation in hippocampal neuronal dendrites. Using genetic inactivation in the mouse, PURA, encoding Pur alpha, is demonstrated to be essential for developmentally-timed dendrite formation in the cerebellum and hippocampus. Comparison of RNA species bound by Pur alpha prompts the hypothesis that Pur alpha functions with non-coding RNA in transport of certain mRNA molecules to sites of translation in dendrites. Pur alpha binds to human BC200 RNA, implicated in dendritic targeting, and this has homologies to 7SL RNA, implicated in compartmentalized translation. Results using hippocampal rat neurons in situ show that Pur alpha binds to BC1 RNA, implicated in dendritic targeting as a mouse counterpart of BC200, and to mRNA molecules translated in dendrites; Pur alpha is specifically located in dendrites, where it is colocalized with Map2, but not in axons, where it fails to colocalize with Ankyrin G. Pur alpha and Staufen are colocalized at dendritic sites of mRNA translation. Microtubule disruptors inhibit Pur alpha dendritic targeting and allow its mislocalization to axons. Using mouse brain, double-RNA immunoprecipitation places Pur alpha together with Staufen or FMRP on BC1 RNA and specific mRNA species in vivo. These results help define a mechanism by which Pur alpha targets specific mRNA molecules to sites of dendritic translation."	"MarA-mediated transcriptional repression of the rob promoter. The Escherichia coli transcriptional regulator MarA affects functions that include antibiotic resistance, persistence, and survival. MarA functions as an activator or repressor of transcription utilizing similar degenerate DNA sequences (marboxes) with three different binding site configurations with respect to the RNA polymerase-binding sites. We demonstrate that MarA down-regulates rob transcripts both in vivo and in vitro via a MarA-binding site within the rob promoter that is positioned between the -10 and -35 hexamers. As for the hdeA and purA promoters, which are repressed by MarA, the rob marbox is also in the &quot;backward&quot; orientation. Protein-DNA interactions show that SoxS and Rob, like MarA, bind the same marbox in the rob promoter. Electrophoretic mobility shift analyses with a MarA-specific antibody demonstrate that MarA and RNA polymerase form a ternary complex with the rob promoter DNA. Transcription experiments in vitro and potassium permanganate footprinting analysis show that MarA affects the RNA polymerase-mediated closed to open complex formation at the rob promoter."	"Differential expression of proteins and genes in the lag phase of Lactococcus lactis subsp. lactis grown in synthetic medium and reconstituted skim milk. We investigated protein and gene expression in the lag phase of Lactococcus lactis subsp. lactis CNRZ 157 and compared it to the exponential and stationary phases. By means of two-dimensional polyacrylamide gel electrophoresis, 28 highly expressed lag-phase proteins, implicated in nucleotide metabolism, glycolysis, stress response, translation, transcription, cell division, amino acid metabolism, and coenzyme synthesis, were identified. Among the identified proteins, &gt;2-fold induction and down-regulation in the lag phase were determined for 12 proteins in respect to the exponential phase and for 18 proteins in respect to the stationary phase. Transcriptional changes of the lag-phase proteins in L. lactis were studied by oligonucleotide microarrays. Good correlation between protein and gene expression studies was demonstrated for several differentially expressed proteins, including nucleotide biosynthetic enzymes, adenylosuccinate synthase (PurA), IMP dehydrogenase (GuaB), and aspartate carbamoyl transferase (PyrB); heat-shock protein DnaK; serine hydroxymethyl transferase (GlyA); carbon catabolite control protein (CcpA); elongation factor G (FusA); and cell division protein (FtsZ)."	"Nucleoprotein interactions governing cell type-dependent repression of the mouse smooth muscle alpha-actin promoter by single-stranded DNA-binding proteins Pur alpha and Pur beta. Pur alpha and Pur beta are structurally related single-stranded DNA/RNA-binding proteins implicated in the control of cell growth and differentiation. The goal of this study was to determine whether Pur alpha and Pur beta function in a redundant, distinct, or collaborative manner to suppress smooth muscle alpha-actin gene expression in cell types relevant to wound repair and vascular remodeling. RNA interference-mediated loss-of-function analyses revealed that, although Pur beta was the dominant repressor, the combined action of endogenous Pur alpha and Pur beta was necessary to fully repress the full-length smooth muscle alpha-actin promoter in cultured fibroblasts but to a lesser extent in vascular smooth muscle cells. The activity of a minimal core enhancer containing a truncated 5' Pur repressor binding site was unaffected by knockdown of Pur alpha and/or Pur beta in fibroblasts. Conversely, gain-of-function studies indicated that Pur alpha or Pur beta could each independently repress core smooth muscle alpha-actin enhancer activity albeit in a cell type-dependent fashion. Biochemical analyses indicated that purified recombinant Pur alpha and Pur beta were essentially identical in terms of their binding affinity and specificity for GGN repeat-containing strands of several cis-elements comprising the core enhancer. However, Pur alpha and Pur beta exhibited more distinctive protein interaction profiles when evaluated for binding to enhancer-associated transcription factors in extracts from fibroblasts and vascular smooth muscle cells. These findings support the hypothesis that Pur alpha and Pur beta repress smooth muscle alpha-actin gene transcription by means of DNA strand-selective cis-element binding and cell type-dependent protein-protein interactions."	"Lawsonia intracellularis proliferative enteropathy in a filly. Proliferative enteropathy (PE) caused by the obligate intracellular bacterium Lawsonia intracellularis is a disease of high economic impact in swine worldwide. In most other species the disease occurs as a sporadic infection. This paper reports a PE caused by L. intracellularis in a 9-month-old Pura Raza Española filly with a history of profuse diarrhoea. Pathological lesions consisted of a severe proliferative enteritis associated with argyrophilic bacteria in the apical cytoplasm of proliferating crypt epithelium. Characteristic PCR products confirmed the presumptive diagnosis of L. intracellularis infection. To our knowledge this is the first report of PE in a horse in Europe caused by L. intracellularis."	"A binding site for Pur alpha and Pur beta is structurally unstable and is required for replication in vivo from the rat aldolase B origin. The rat aldolase B promoter acts as a replication origin in vivo, as well as an autonomously replicating sequence (ARS). Here, we examined roles of a polypurine stretch (site PPu) in this origin, which is indispensable to the ARS activity. Purification of site PPu-binding protein revealed that site PPu binds Puralpha and Purbeta, i.e., single-stranded DNA-binding proteins whose roles in replication have been implicated, but less clear. Biochemical analyses showed that site PPu even in a longer DNA fragment is unstable in terms of double-helix, implying that Puralpha/beta may stabilize single-stranded state. Deletion of site PPu from the origin DNA, which was ectopically positioned in the mouse chromosome, significantly reduced replicator activity. Chromatin immunoprecipitation experiments showed that deletion of site PPu abolishes binding of the Puralpha/beta proteins to the origin. These observations suggest functional roles of site PPu and Puralpha/beta proteins in replication initiation."	"The relationship between the perineal length measurements and the urodynamic stress incontinence. The purpose of this study was to assess the relationship between the length of perineal body, the anal position index, the total fourchette-coccyx distance and the anal-coccyx length and female urodynamic stress urinary incontinence (USUI). The study included 57 women with USUI (group A) and 45 women without USUI as control (group B). All patients underwent a urodynamic evaluation and measurement of the length of perineal body (PB) and the distance between the fourchette and the inferior margin of coccyx (FC). PB is the distance between the fourchette and the center of anal orifice. The ratio PB/FC is the anal position index. Subtracting the PB length from FC distance equals the anal-coccyx (AC) length. The student's t-test showed no significant statistical difference between any of the measured lengths in the two groups. Moreover, in the USUI group, ANOVA did not show any significant relationship between the urodynamic parameters and the measured lengths. Regarding to the investigated urodynamic parameters only the maximum urethral pressure (Pura max) presented a significant statistical difference between the two groups (P = 0.009). Theoretically, a differentiation of perineal distances probably brings to the surface a laxity of the pelvic floor, a factor predisposing to USUI. Furthermore, the anterior position of anus can be a cause of constipation which also contributes to USUI. However, our study did not reveal any relationship between the perineal length measurements and USUI. Further investigation with longer series of patients is needed to show if this simple, inexpensive and non-invasive test could be added in the armamentarium of the diagnostic and prognostic investigation of USUI. Regarding to the urodynamic parameters, our results emphasize the importance of the Pura max parameter in the urodynamic evaluation of USUI."	"PLP-1 binds nematode double-stranded telomeric DNA. The integrity and proper functioning of telomeres require association of telomeric DNA sequences with specific binding proteins. We have characterized PLP-1, a PURa homolog encoded by F45E4.2, which we previously identified as a candidate double stranded telomere binding protein, by affinity chromatography followed by mass spectrometry. PLP-1 bound double-stranded telomeric DNA in vitro as shown by competition assays. Core binding was provided by the third and fourth nucleotides of the TTAGGC telomeric repeat. This is quite different from the binding sequence of CEH-37, another C. elegans telomere binding protein, suggesting that multiple proteins may bind nematode telomeric DNA simultaneously in vivo."	NA
+"SCN2A"	"complex neurodevelopmental disorder"	"Functional and pharmacological evaluation of a novel SCN2A variant linked to early-onset epilepsy. We identified a novel de novo SCN2A variant (M1879T) associated with infantile-onset epilepsy that responded dramatically to sodium channel blocker antiepileptic drugs. We analyzed the functional and pharmacological consequences of this variant to establish pathogenicity, and to correlate genotype with phenotype and clinical drug response. The clinical and genetic features of an infant boy with epilepsy are presented. We investigated the effect of the variant using heterologously expressed recombinant human NaV 1.2 channels. We performed whole-cell patch clamp recording to determine the functional consequences and response to carbamazepine. The M1879T variant caused disturbances in channel inactivation including substantially depolarized voltage dependence of inactivation, slower time course of inactivation, and enhanced resurgent current that collectively represent a gain-of-function. Carbamazepine partially normalized the voltage dependence of inactivation and produced use-dependent block of the variant channel at high pulsing frequencies. Carbamazepine also suppresses resurgent current conducted by M1879T channels, but this effect was explained primarily by reducing the peak transient current. Molecular modeling suggests that the M1879T variant disrupts contacts with nearby residues in the C-terminal domain of the channel. Our study demonstrates the value of conducting functional analyses of SCN2A variants of unknown significance to establish pathogenicity and genotype-phenotype correlations. We also show concordance of in vitro pharmacology using heterologous cells with the drug response observed clinically in a case of SCN2A-associated epilepsy."	"Drug-drug and drug-food interactions in an infant with early-onset SCN2A epilepsy treated with carbamazepine, phenytoin and a ketogenic diet. Sodium channel alpha two subunit (SCN2A) mutations cause difficult-to-treat early-onset epilepsy. Effective treatment includes high-dose phenytoin or carbamazepine ±ketogenic diet (KD). We describe an infant with early-onset SCN2A-epilepsy with sub-therapeutic carbamazepine concentration during transition from phenytoin treatment to avoid long-term neurotoxicity. The transition from high-dose phenytoin (20 mg kg<sup>-1</sup> day<sup>-1</sup> , concentration: ≥20 mg/L) with KD, to carbamazepine (50-75 mg kg<sup>-1</sup> day<sup>-1</sup> , concentration: 9-12 mg/L) lasted 85 days, which we suspected was due to significant drug-drug and/or drug-food interactions. Model-based analysis of carbamazepine-pharmacokinetics quantified significant time- and dose-dependent phenytoin-mediated CYP3A4 induction and carbamazepine-concentration-dependent auto-induction (apparent clearance increased up to 2.5/3-fold). Lower carbamazepine concentrations under KD were modelled as decreased relative bioavailability (44%), potentially related to decreased fraction absorbed (unexpected for this lipophilic drug), increased intestinal/hepatic metabolism, and/or decreased protein-binding with KD. This suggests importance of carbamazepine-concentration monitoring during KD-introduction/removal and necessity of high carbamazepine doses to achieve therapeutic concentrations, especially in infants treated with high-dose phenytoin."	"Molecular diagnosis of epileptic encephalopathy of the first year of life applying a customized gene panel in a group of Argentinean patients. The aim of this study was to perform a molecular characterization of 17 Argentinean pediatric patients with diagnosis of having epileptic encephalopathies (EEs) of the first year of life without known etiology, applying next-generation sequencing (NGS). We included 17 patients with EE with age of onset under 12 months without known etiology after ruling out structural abnormalities, metabolic disorders, and large chromosomal abnormalities. They presented with the following clinical phenotypes: Dravet syndrome (DS; n: 7), epilepsy of infancy with migrating focal seizures (EIMFS; n: 3), West syndrome (WS; n: 2), and undetermined epileptic encephalopathy (UEE; n: 5). Neurologic examinations, seizure semiology, brain magnetic resonance imaging, and standard electroencephalography (EEG) or video-EEG studies were performed in all cases. Using a custom amplicon strategy, we designed an NGS panel to study 47 genes associated with EEs. Pathogenic variants were detected in 8 cases (47%), including seven novel pathogenic variants and one previously reported as being pathogenic. The pathogenic variants were identified in 6 patients with DS (SCN1A gene), one with EIMFS (SCN2A gene), and one with UEE (SLC2A1 gene). Nonrelevant variants were identified in the patients with WS. We demonstrated the feasibility of an NGS-gene panel approach for the analysis of patients with EE in our setting. A genetic diagnosis was achieved in nearly 50% of patients, 87% of them presenting with nonpreviously reported variants. The early identification of the underlying causative genetic alteration will be a valuable tool for providing prognostic information and genetic counselling and also to improve therapeutic decisions in Argentinean patients."	"Neurodevelopmental disorders-the history and future of a diagnostic concept
. This article describes the history of the diagnostic class of neurodevelopmental disorders (NDDs) up to DSM-5. We further analyze how the development of genetics will transform the classification and diagnosis of NDDs. In DSM-5, NDDs include intellectual disability (ID), autism spectrum disorder (ASD), and attention-deficit/hyperactivity disorder (ADHD). Physicians in German-, French- and English-speaking countries (eg, Weikard, Georget, Esquirol, Down, Asperger, and Kanner) contributed to the phenomenological definitions of these disorders throughout the 18th and 20th centuries. These diagnostic categories show considerable comorbidity and phenotypic overlap. NDDs are one of the chapters of psychiatric nosology most likely to benefit from the approach advocated by the National Institute of Mental Health's Research Domain Criteria project. Genetic research supports the hypothesis that ID, ASD, ADHD, schizophrenia, and bipolar disorder lie on a neurodevelopmental continuum. The identification of recurrently observed copy number variants and disruptive gene variants in ASD (eg, CDH8, 16p11.2, SCN2A) led to the adoption of the genotype-first approach to characterize individuals at the etiological level.
. Este artículo describe la historia de la clase diagnóstica de los trastornos del neurodesarrollo (TND) hasta el DSM-5. Además se analiza cómo el desarrollo de la genética transformará la clasificación y el diagnóstico de los TND. En el DSM-5, los TND incluyen la discapacidad intelectual (DI), los trastornos del espectro autista (TEA) y el trastorno por déficit de atención / hiperactividad (TDAH). Los médicos en países de habla alemana, francesa e inglesa (por ejemplo, Weikard, Georget, Esquirol, Down, Asperger y Kanner) contribuyeron a las definiciones fenomenológicas de estos trastornos a lo largo de los siglos XVIII y XX. Estas categorías diagnósticas muestran una importante comorbilidad y superposición fenotípica. Los TND constituyen uno de los capítulos de la nosología psiquiátrica que tienen más probabilidades de beneficiarse con el enfoque recomendado por el proyecto Research Domain Criteria (Criterios de Dominio de Investigación) del Instituto Nacional de Salud Mental. La investigación genética respalda la hipótesis de que la DI, el TEA, el TDAH, la esquizofrenia y el trastorno bipolar se encuentran en un continuo del neurodesarrollo. La identificación y observación repetida de variaciones en el número de copias y variaciones de genes disruptivos en el TEA (p. Ej., CDH8, 16p11.2, SCN2A) condujeron a la adopción de un enfoque primariamente genético para la caracterización etiológica de los sujetos. Dans cet article qui décrit l’histoire de la classe diagnostique des troubles neurodéveloppementaux (TND) jusqu’au DSM-5, nous analyserons comment les progrès de la génétique vont transformer leur classification et leur diagnostic. Dans le DSM-5, les TND comprennent les handicaps intellectuels (HI), les troubles du spectre de l’autisme (TSA) et le déficit de l’attention/hyperactivité (TDAHA). Ce sont des médecins issus de pays germanophones, francophones et anglophones (comme Weikard, Georget, Esquirol, Down, Asperger et Kanner) qui ont participé à la définition phénoménologique de ces troubles, du XVIIIe au XXe siècle. On observe dans ces catégories diagnostiques une comorbidité et un chevauchement des phénotypes très importants. En termes de nosologie psychiatrique, les TND seraient les plus susceptibles de bénéficier de l’approche défendue par le NIMH (National Institute of Mental Health) : le projet Research Domain Criteria (Critères des domaines de recherche). Selon la recherche génétique, le HI, les TSA, le TDAHA, la schizophrénie et les troubles bipolaires appartiendraient à un continuum neurodéveloppemental. L’idée d’une caractérisation étiologique des individus en passant d’abord par la génétique est venue de l’observation répétée au sein des TSA de variations du nombre de copies et de variations génétiques perturbatrices (par exemple CDH8, 16p11.2, SCN2A)."	"Early-onset epileptic encephalopathy related to germline PIGA mutations: A series of 5 cases. The molecular diagnosis of early-onset epileptic encephalopathy (EOEE), an expanding field in child neurology, is becoming increasingly possible thanks to the widespread availability of next-generation sequencing and whole-exome sequencing. In the past 15 years, mutations in STXBP1, KCNQ2, SCN2A, SCN8A and numerous other genes have been reported, giving a more accurate insight for these rare diseases. Among these genes, germline mutations in Phosphatidyl Inositol Glycan A (PIGA) gene were first reported in 2012. Located on Xp22.2, PIGA is involved in the synthesis of GPI (glycosylphosphatidylinositol) which acts as a membrane anchor for different proteins: enzymes, adhesion molecules, regulation of the complement way, and co-receptor in transduction signal. Children suffering from this condition exhibit developmental delay with early-onset epilepsy, severe dysmorphic signs, multi-visceral anomalies and early death in the most severe forms. Here, we report five cases of germline PIGA mutations, with two missense mutations that have not been reported to date. We provide a new insight into the electroclinical phenotype. At the onset, epileptic spasms and focal-onset seizures with upper limbs and ocular involvements were present. Epilepsy proved pharmacoresistant in 4 out of 5 cases. Interictal EEG may be normal at the onset of epilepsy, but abnormalities in electroencephalographic studies were eventually present in all cases. Different types of seizures may be present simultaneously, and epileptic phenotypes evolve with aging."	"Inactivation of Scrapie Prions by the Electrically Charged Disinfectant CAC-717. Previous studies have revealed that the electrically charged disinfectant CAC-717 has strong virucidal and bactericidal effects but is safe for humans and animals. In this study, CAC-717 was further evaluated for its potential effects as a disinfectant against scrapie prions. Western blotting showed that CAC-717 reduced the amount of the abnormal isoform of prion protein (PrP<sup>Sc</sup>) in prion-infected cell (ScN2a) lysates. Furthermore, the reduction of prion transmissibility was confirmed by a mouse bioassay, in which mice injected with scrapie prions pre-treated with CAC-717 survived longer than those injected with untreated scrapie prions. Lastly, to evaluate the seeding activity of ScN2a cell lysates treated with CAC-717, quantitative protein misfolding cyclic amplification (PMCA) was performed directly on ScN2a cell lysates treated with CAC-717, which showed that the median dose of PMCA (PMCA50) dropped from log9.95 to log5.20 after CAC-717 treatment, indicating more than a 4 log reduction. This suggests that the seeding activity of PrP<sup>Sc</sup> is decreased by CAC-717. Collectively, these results suggest that CAC-717 has anti-prion activity, reducing both PrP<sup>Sc</sup> conversion activity and prion transmissibility; thus, CAC-717 will be useful as a novel disinfectant in prion diseases."	"Determining the best candidates for next-generation sequencing-based gene panel for evaluation of early-onset epilepsy. Genetic testing is an emerging diagnostic approach in early-onset epilepsy. Identification of the heterogeneous genetic causes of epilepsy may mitigate unnecessary evaluations and allow more accurate diagnosis and therapy. We aimed to uncover genetic causes of early-onset epilepsy using next-generation sequencing (NGS) to elucidate the diagnostic candidates and evaluate the diagnostic yield of targeted gene panel testing. We evaluated 116 patients with early-onset epilepsy developed before 2 years old and normal brain imaging using a NGS-based targeted gene panel. Variants were classified according to their pathogenicity, and the diagnostic yield of the targeted genes and associated clinical factors were determined. We detected 40 disease-causing variants with diagnostic yield of 34.5% (19 pathogenic, 21 likely pathogenic). Twelve variants were novel. The most commonly detected genes were SCN1A, associated with Dravet syndrome, and PRRT2, associated with benign familial infantile epilepsy. Other variants were identified in ARX, SCN2A, KCNQ2, PCDH19, STXBP1, DEPDC5, and SCN8A. The age of seizure onset and family history were associated with disease-causing variants. Next-generation sequencing-based targeted testing is an effective diagnostic test, with 30%-40% comparable diagnostic yield. Patients with earlier seizure onset and family history of epilepsy were the best candidates for testing. For pediatric patients with early-onset epilepsy, genetic diagnosis is important for accurate prognosis and treatment."	"Neonatal SCN2A encephalopathy: A peculiar recognizable electroclinical sequence. Sodium voltage-gated channel alpha subunit 2 (SCN2A) gene encodes the Nav1.2 subunit of voltage-gated sodium channel in pyramidal neurons. SCN2A gain-of-function mutations are identified more and more often with gene panels and whole exome sequencing. Phenotype ranges from benign neonatal or infantile seizures to severe epileptic encephalopathy. Although large series of patients targeting genetic background point out two main phenotypes with SCN2A encephalopathy, Ohtahara syndrome and malignant migrating partial seizures in infancy (EMPSI), we noticed that in fact, a peculiar clinical and electroencephalogram (EEG) sequence distinct from these syndromes should suggest the diagnosis early. We report three new cases with de novo SCN2A mutations - 166237617C&gt;A p.(Asp1487Glu), c.407T&gt;G p.(Met136Arg), and c.4633A&gt;G p.(Met1545Val) - diagnosed by direct sequencing or genes panel, their follow-up ranging from 4 to 5 years. For all three patients, seizures started at two days of life and consisted of apnea and cyanosis with partial clonic or tonic, alternating on both sides with, up to 100/day, evolving to generalized tonic-clonic seizures (GTCS) and epileptic spasms by three months. First EEG showed a discontinuous pattern, evolving to multifocal spikes, by 3 (two patients) and 6 months (one). Seizure frequency decreased progressively by the middle or end of the first year of life. Only less frequent GTCS persisted during the second year of life for two patients. Improvement was observed in two patients with sodium channel blocker (phenytoin) used at age of 1 month for one patient and at 2 years for another one. All patients remained with severe psychomotor delay. All three infants share a condition different from Ohtahara syndrome in which tonic spasms predominate and suppression-burst pattern is obvious, and from EMPSI, in which partial migrating discharges involve successively the various parts of the brain including occipital regions with oculoclonic seizures, but there is neither discontinuous pattern nor therapeutic response to sodium channel blockers. Neonatal SCN2A encephalopathy has a recognizable phenotype starting soon after birth with alternating partial motor seizures evolving to infantile spasms and a discontinuous EEG pattern. Seizures improve spontaneously in the first year of life. This electroclinical sequence should indicate the search of SCN2A mutation and suggest the administration of sodium channel blockers."	"Early-onset epileptic encephalopathy with migrating focal seizures associated with a FARS2 homozygous nonsense variant. Epilepsy of infancy with migrating focal seizures (EIMFS) is now a well-recognized early-onset syndrome included in the ILAE classification of the epilepsies. KCNT1 gain-of-function variants are identified in about half of patients. In the remaining cases, the underlying genetic component is far more heterogeneous with sporadic mutations occasionally reported in SCN1A, SCN2A, SLC12A5, TBC1D24, PLCB1, SLC25A22, and KCNQ2. Here, we report, for the first time, a homozygous deleterious variant in the FARS2 gene, identified using a 115-gene panel for monogenic epilepsies, in a patient with EIMFS. This boy was the second child born to healthy consanguineous parents. The first seizures occurred at six weeks of age. The patient rapidly developed severe epilepsy with focal discharges on EEG, migrating from one brain region to another, highly suggestive of EIMFS. At five months of age, he had daily multifocal clonic seizures and erratic myoclonic fits, which were not consistently related to spikes or spike-and-wave discharges. Neurological status was severely abnormal from onset and the patient died at 10 months of age from respiratory distress. Using the gene panel, a homozygous missense variant of FARS2 was identified, at Chr6 (GRCh37):g.5404829C&gt;T, c.667C&gt;T (NM_001318872.1), inherited from both parents, leading to an arginine-to-cysteine substitution, p.(Arg223Cys). FARS2 is a member of the mitochondrial aminoacyl tRNA transferase (ARS) enzymes. ARS variants are increasingly recognized causes of early-onset epileptic and neurodevelopmental encephalopathies, however, the associated epileptic phenotype is not completely described. This case shows that FARS2-related seizures can mimic EIMFS in the early stage of the disease. Furthermore, in the setting of migrating focal seizures of infancy, FARS2 should be considered as a further candidate gene, and increased lactate level and occurrence of refractory myoclonic seizures are possible key features to suspect FARS deficiency."	"Genotype-phenotype correlates of infantile-onset developmental &amp; epileptic encephalopathy syndromes in South India: A single centre experience. A paucity of literature exists on genotype- phenotype correlates of 'unknown-etiology' infantile-onset developmental-epileptic encephalopathies (DEE) from India. The primary objective was to explore the yield of genetic testing in identifying potential disease causing variants in electro-clinical phenotypes of DEE METHODS: An observational hospital-based study was undertaken on children with unexplained refractory seizure-onset ≤12 months age and developmental delay, whose families consented and underwent genetic testing during a three year time period (2016-2018) by next-generation sequencing (NGS) or multiplex ligand protein amplification. Yield was considered based on demonstration of pathogenic/likely pathogenic variants only and variants of unknown significance (VUS) were documented. Pathogenic/likely pathogenic variants were identified in 26 (31.7 %) out of 82 children with DEE. These included those variants responsible for primarily DEE- 21(76.7 %); neuro-metabolic disorders- 3(18.6 %) and chromosomal deletions- 2(4.7 %). Of these patients, early-infantile epilepsy onset ≤ 6 months age was noted in 22(84.6 %). The DEE studied included Ohtahara syndrome associated with STXBP1 and SCN8A variants with yield of 50 % (2/4 tested); early myoclonic encephalopathy (no yield in 2); West syndrome with CDKL5, yield of 13.3 % (2/15 tested); epilepsy of infancy with migrating partial seizures due to CACNA1A and KCNT1 variants, yield of 67 % (2/3 tested); DEE-unclassified with KCNQ2, AP3B2, ZEB2, metabolic variants (SUOX, ALDH7A1, GLDC) and chromosome deletions (chr 1p36, chr2q24.3); yield of 32 % (8/25 tested). Patients with Dravet syndrome/Dravet-like phenotypes (N = 33) had variants in SCN1A (N = 10), SCN1B, CHD2; yield of 36.4 % (12/33 tested; 57.1 % from NGS). Eighteen patients with potential variants (SCN1A, SCN2A, SCN8A, KCNQ2, ALDH7A1 which also included VUS) could be offered targeted therapy. Our study confirms a good yield of genetic testing in neonatal and infantile-onset DEE provided robust phenotyping of infants is attempted with prognostic and therapeutic implications, particularly relevant to centres with resource constraints."	"Phenotypic and genetic spectrum of epilepsy with myoclonic atonic seizures. We aimed to describe the extent of neurodevelopmental impairments and identify the genetic etiologies in a large cohort of patients with epilepsy with myoclonic atonic seizures (MAE). We deeply phenotyped MAE patients for epilepsy features, intellectual disability, autism spectrum disorder, and attention-deficit/hyperactivity disorder using standardized neuropsychological instruments. We performed exome analysis (whole exome sequencing) filtered on epilepsy and neuropsychiatric gene sets to identify genetic etiologies. We analyzed 101 patients with MAE (70% male). The median age of seizure onset was 34 months (range = 6-72 months). The main seizure types were myoclonic atonic or atonic in 100%, generalized tonic-clonic in 72%, myoclonic in 69%, absence in 60%, and tonic seizures in 19% of patients. We observed intellectual disability in 62% of patients, with extremely low adaptive behavioral scores in 69%. In addition, 24% exhibited symptoms of autism and 37% exhibited attention-deficit/hyperactivity symptoms. We discovered pathogenic variants in 12 (14%) of 85 patients, including five previously published patients. These were pathogenic genetic variants in SYNGAP1 (n = 3), KIAA2022 (n = 2), and SLC6A1 (n = 2), as well as KCNA2, SCN2A, STX1B, KCNB1, and MECP2 (n = 1 each). We also identified three new candidate genes, ASH1L, CHD4, and SMARCA2 in one patient each. MAE is associated with significant neurodevelopmental impairment. MAE is genetically heterogeneous, and we identified a pathogenic genetic etiology in 14% of this cohort by exome analysis. These findings suggest that MAE is a manifestation of several etiologies rather than a discrete syndromic entity."	"Comprehensive Exonic Sequencing of Known Ataxia Genes in Episodic Ataxia. Episodic Ataxias (EAs) are a small group (EA1-EA8) of complex neurological conditions that manifest as incidents of poor balance and coordination. Diagnostic testing cannot always find causative variants for the phenotype, however, and this along with the recently proposed EA type 9 (EA9), suggest that more EA genes are yet to be discovered. We previously identified disease-causing mutations in the CACNA1A gene in 48% (n = 15) of 31 patients with a suspected clinical diagnosis of EA2, and referred to our laboratory for CACNA1A gene testing, leaving 52% of these cases (n = 16) with no molecular diagnosis. In this study, whole exome sequencing (WES) was performed on 16 patients who tested negative for CACNA1A mutations. Tiered analysis of WES data was performed to first explore (Tier-1) the ataxia and ataxia-associated genes (n = 170) available in the literature and databases for comprehensive EA molecular genetic testing; we then investigated 353 ion channel genes (Tier-2). Known and potential causal variants were identified in n = 8/16 (50%) patients in 8 genes (SCN2A, p.Val1325Phe; ATP1A3, p.Arg756His; PEX7, p.Tyr40Ter; and KCNA1, p.Arg167Met; CLCN1, p.Gly945ArgfsX39; CACNA1E, p.Ile614Val; SCN1B, p.Cys121Trp; and SCN9A, p.Tyr1217Ter). These results suggest that mutations in these genes might cause an ataxia phenotype or that combinations of more than one mutation contribute to ataxia disorders."	"Electrophysiological features: The next precise step for SCN2A developmental epileptic encephalopathy. To investigate the relationships among phenotypes, genotypes, and funotypes of SCN2A-related developmental epileptic encephalopathy (DEE). We enrolled five DEE patients with five de novo variants of the SCN2A. Functional analysis and pharmacological features of Nav1.2 channel protein expressed in HEK293T cells were characterized by whole-cell patch-clamp recording. The phenotypes of c.4712T&gt;C(p. I1571T), c.2995G&gt;A(p.E999K), and c.4015A&gt;G(p. N1339D) variants showed similar characteristics, including early seizure onset with severe to profound intellectual disability. Electrophysiological recordings revealed a hyperpolarizing shift in the voltage dependence of the activation curve and smaller recovery time constants of fast-inactivation than in wild type, indicating a prominent gain of function (GOF). Moreover, pharmacological electrophysiology showed that phenytoin inhibited over a 70% peak current and was more effective than oxcarbazepine and carbamazepine. In contrast, c.4972C&gt;T (p.P1658S) and c.5317G&gt;A (p.A1773T) led to loss of function (LOF) changes, showing reduced current density and enhanced fast inactivation. Both showed seizure onset after 3 months of age with moderate development delay. Interestingly, we discovered that choreoathetosis was a specific phenotype feature. These findings provided the insights into the phenotype-genotype-funotype relationships of SCN2A-related DEE. The preliminary evaluation using the distinct hints of GOF and LOF helped plan the treatment, and the next precise step should be electrophysiological study."	"In silico/in vitro screening and hit evaluation identified new phenothiazine anti-prion derivatives. Prion diseases or transmissible spongiform encephalopathies (TSEs) are a group of rare neurodegenerative disorders. TSEs are characterized by the accumulation of prions (PrP<sup>Sc</sup>) that represent pathological isoforms of the physiological cellular prion protein PrP<sup>C</sup>. Although the conversion of PrP<sup>C</sup> to PrP<sup>Sc</sup> is still not completely understood, blocking this process may lead to develop new therapies. Here, we have generated a pharmacophore model, based on anti-prion molecules reported in literature to be effective in phenotypic assay. The model was used to conduct a virtual screen of commercial compound databases that selected a small library of ten compounds. These molecules were then screened in mouse neuroblastoma cell line chronically infected with prions (ScN2a) after excluding neurotoxicity. 1 has been identified as the therapeutic hit on the basis of the following evidence: chronic treatments of ScN2a cells using 1 eliminate PrP<sup>Sc</sup> loaded in both Western blotting analysis and Real-Time Quaking-Induced Conversion (RT-QuIC) assay. We also proposed the mechanism of action of 1 by which it has the ability to bind PrP<sup>C</sup> and consequentially blocks prion conversion. Herein we describe the results of these efforts."	"The neonatal SCN2A mutant channel mimics adult channel properties. NA"	"SCN2A channelopathies in the autism spectrum of neuropsychiatric disorders: a role for pluripotent stem cells? Efforts to identify the causes of autism spectrum disorders have highlighted the importance of both genetics and environment, but the lack of human models for many of these disorders limits researchers' attempts to understand the mechanisms of disease and to develop new treatments. Induced pluripotent stem cells offer the opportunity to study specific genetic and environmental risk factors, but the heterogeneity of donor genetics may obscure important findings. Diseases associated with unusually high rates of autism, such as SCN2A syndromes, provide an opportunity to study specific mutations with high effect sizes in a human genetic context and may reveal biological insights applicable to more common forms of autism. Loss-of-function mutations in the SCN2A gene, which encodes the voltage-gated sodium channel NaV1.2, are associated with autism rates up to 50%. Here, we review the findings from experimental models of SCN2A syndromes, including mouse and human cell studies, highlighting the potential role for patient-derived induced pluripotent stem cell technology to identify the molecular and cellular substrates of autism."	"Genetic diagnosis and clinical characteristics by etiological classification in early-onset epileptic encephalopathy with burst suppression pattern. Early-onset epileptic encephalopathies with burst suppression (EOEE-BS) are a group of neonatal epileptic syndromes characterized by intractable epilepsy and severe psychomotor delay with structural and metabolic factors accounting for major etiologies. However, recent advances in gene sequencing have identified that genetic factors might also play a significant role in the development of EOEE-BS. Herein, we used various genetic tests to identify pathogenic genetic variants in EOEE-BS irrespective of structural malformations and analyzed the clinical features associated with each different etiology. A total of 48 patients with EOEE-BS were included. Except for patients with severe hypoxic damage, patients with structural malformations were included in our patient cohort. Clinical features of the patients were reviewed, and etiological diagnoses were made based on several genetic tests, metabolic studies, and radiological findings. A genetic diagnosis was made in 31 (64.6 %) patients, with the most commonly diagnosed gene being STXBP1 (n = 13, 27.1 %), followed by KCNQ2 (n = 5, 10.4 %), SCN2A (n = 5, 10.4 %), DEPDC5 (n = 3, 6.3 %), CASK (n = 1, 2.1 %), CDKL5 (n = 1, 2.1 %), GNAO1 (n = 1, 2.1 %), SLC6A8 (n = 1, 2.1 %), and LIS1 deletion (n = 1, 2.1 %). Other than the classification of epilepsy syndrome, no clinical features were associated with the genetically diagnosed group. Among eight patients with structural malformations, genetic diagnosis was achieved in five (62.5 %), and those patients had pathogenic mutations in DEPDC5 and CASK or LIS1 deletion, indicating the significance of gene sequencing irrespective of structural abnormalities. Treatment responses to a variety of medications and the ketogenic diet differed by etiology, and surgical resection proved to be effective in patients with cortical dysplasia. Genetic etiologies are an important factor in EOEE-BS irrespective of structural malformations and the treatment options may differ by etiology."	"Sodium channel epilepsies and neurodevelopmental disorders: from disease mechanisms to clinical application. Genetic variants in brain-expressed voltage-gated sodium channels (SCNs) have emerged as one of the most frequent causes of Mendelian forms of epilepsy and neurodevelopmental disorders (NDDs). This review explores the biological concepts that underlie sodium channel NDDs, explains their phenotypic heterogeneity, and appraises how this knowledge may inform clinical practice. We observe that excitatory/inhibitory neuronal expression ratios of sodium channels are important regulatory mechanisms underlying brain development, homeostasis, and neurological diseases. We hypothesize that a detailed understanding of gene expression, variant tolerance, location, and function, as well as timing of seizure onset can aid the understanding of how variants in SCN1A, SCN2A, SCN3A, and SCN8A contribute to seizure aetiology and inform treatment choice. We propose a model in which variant type, development-specific gene expression, and functions of SCNs explain the heterogeneity of sodium channel associated NDDs. Understanding of basic disease mechanisms and detailed knowledge of variant characteristics have increasing influence on clinical decision making, enabling us to stratify treatment and move closer towards precision medicine in sodium channel epilepsy and NDDs. WHAT THIS PAPER ADDS: Sodium-channel disorder heterogeneity is explained by variant-specific gene expression timing and function. Gene tolerance and location analyses aid sodium channel variant interpretation. Sodium-channel variant characteristics can contribute to clinical decision making."	"Genetic landscape of autism spectrum disorder in Vietnamese children. Autism spectrum disorder (ASD) is a complex disorder with an unclear aetiology and an estimated global prevalence of 1%. However, studies of ASD in the Vietnamese population are limited. Here, we first conducted whole exome sequencing (WES) of 100 children with ASD and their unaffected parents. Our stringent analysis pipeline was able to detect 18 unique variants (8 de novo and 10 ×-linked, all validated), including 12 newly discovered variants. Interestingly, a notable number of X-linked variants were detected (56%), and all of them were found in affected males but not in affected females. We uncovered 17 genes from our ASD cohort in which CHD8, DYRK1A, GRIN2B, SCN2A, OFD1 and MDB5 have been previously identified as ASD risk genes, suggesting the universal aetiology of ASD for these genes. In addition, we identified six genes that have not been previously reported in any autism database: CHM, ENPP1, IGF1, LAS1L, SYP and TBX22. Gene ontology and phenotype-genotype analysis suggested that variants in IGF1, SYP and LAS1L could plausibly confer risk for ASD. Taken together, this study adds to the genetic heterogeneity of ASD and is the first report elucidating the genetic landscape of ASD in Vietnamese children."	"Association of SCN1A, SCN2A, and UGT2B7 Polymorphisms with Responsiveness to Valproic Acid in the Treatment of Epilepsy. The efficacy of valproic acid (VPA) varies widely in clinical treatment of epileptic patients. Our study is aimed at exploring a potential association between polymorphisms of SCN1A, SCN2A, and UGT2B7 genetic factors and VPA responses. In this observational study, a total of 114 epileptic patients only treated with VPA for at least 1 year were included to explore the genetic polymorphisms of drug responses (mean follow-up time: 3.68 ± 1.78 years). Thirty-one single-nucleotide polymorphisms (SNPs) in three candidate genes that related with drug-metabolizing enzymes and receptors were genotyped. Of the 31 SNPs, eight were significantly associated with VPA responses, including rs1381105, rs2162600, rs10197716, rs2119068, rs2119067, rs353116, rs353112 and rs6740895. The interaction between rs10197716 and rs2119068 was the most significantly correlated with VPA responses compared with other combinations (the highest VPA-responsive rate 0.92 versus the lowest VPA-responsive rate 0.33, p = 0.007). The study indicated that eight SNPs and SNP-SNP interaction may be associated with VPA responses in Chinese Han epileptic patients. The SNPs were rs1381105 (SCN1A), rs2162600 (SCN1A), rs10197716 (SCN2A), rs2119068 (SCN2A), rs2119067 (SCN2A), rs353116 (SCN2A), rs353112 (SCN2A) and rs6740895 (SCN2A), respectively. The interaction between the three pairs of rs10197716-rs2119068, rs10197716-rs11889342 and rs7598931-rs12233719 was the most significant for VPA. This implied that these SNPs may play an important role in the pharmacogenomics mechanism of valproic acid."	"Biological concepts in human sodium channel epilepsies and their relevance in clinical practice. Voltage-gated sodium channels (SCNs) share similar amino acid sequence, structure, and function. Genetic variants in the four human brain-expressed SCN genes SCN1A/2A/3A/8A have been associated with heterogeneous epilepsy phenotypes and neurodevelopmental disorders. To better understand the biology of seizure susceptibility in SCN-related epilepsies, our aim was to determine similarities and differences between sodium channel disorders, allowing us to develop a broader perspective on precision treatment than on an individual gene level alone. We analyzed genotype-phenotype correlations in large SCN-patient cohorts and applied variant constraint analysis to identify severe sodium channel disease. We examined temporal patterns of human SCN expression and correlated functional data from in vitro studies with clinical phenotypes across different sodium channel disorders. Comparing 865 epilepsy patients (504 SCN1A, 140 SCN2A, 171 SCN8A, four SCN3A, 46 copy number variation [CNV] cases) and analysis of 114 functional studies allowed us to identify common patterns of presentation. All four epilepsy-associated SCN genes demonstrated significant constraint in both protein truncating and missense variation when compared to other SCN genes. We observed that age at seizure onset is related to SCN gene expression over time. Individuals with gain-of-function SCN2A/3A/8A missense variants or CNV duplications share similar characteristics, most frequently present with early onset epilepsy (&lt;3 months), and demonstrate good response to sodium channel blockers (SCBs). Direct comparison of corresponding SCN variants across different SCN subtypes illustrates that the functional effects of variants in corresponding channel locations are similar; however, their clinical manifestation differs, depending on their role in different types of neurons in which they are expressed. Variant function and location within one channel can serve as a surrogate for variant effects across related sodium channels. Taking a broader view on precision treatment suggests that in those patients with a suspected underlying genetic epilepsy presenting with neonatal or early onset seizures (&lt;3 months), SCBs should be considered."	"Clinical exome sequencing as the first-tier test for diagnosing developmental disorders covering both CNV and SNV: a Chinese cohort. Developmental disorders (DDs) are early onset disorders affecting 5%-10% of children worldwide. Chromosomal microarray analysis detecting CNVs is currently recommended as the first-tier test for DD diagnosis. However, this analysis omits a high percentage of disease-causing single nucleotide variations (SNVs) that warrant further sequencing. Currently, next-generation sequencing can be used in clinical scenarios detecting CNVs, and the use of exome sequencing in the DD cohort ahead of the microarray test has not been evaluated. Clinical exome sequencing (CES) was performed on 1090 unrelated Chinese DD patients who were classified into five phenotype subgroups. CNVs and SNVs were both detected and analysed based on sequencing data. An overall diagnostic rate of 41.38% was achieved with the combinational analysis of CNV and SNV. Over 12.02% of patients were diagnosed based on CNV, which was comparable with the published CMA diagnostic rate, while 0.74% were traditionally elusive cases who had dual diagnosis or apparently homozygous mutations that were clarified. The diagnostic rates among subgroups ranged from 21.82% to 50.32%. The top three recurrent cytobands with diagnostic CNVs were 15q11.2-q13.1, 22q11.21 and 7q11.23. The top three genes with diagnostic SNVs were: MECP2, SCN1A and SCN2A. Both the diagnostic rate and spectrums of CNVs and SNVs showed differences among the phenotype subgroups. With a higher diagnostic rate, more comprehensive observation of variations and lower cost compared with conventional strategies, simultaneous analysis of CNVs and SNVs based on CES showed potential as a new first-tier choice to diagnose DD."	"Alternative splicing potentiates dysfunction of early-onset epileptic encephalopathy SCN2A variants. Epileptic encephalopathies are severe forms of infantile-onset epilepsy often complicated by severe neurodevelopmental impairments. Some forms of early-onset epileptic encephalopathy (EOEE) have been associated with variants in SCN2A, which encodes the brain voltage-gated sodium channel NaV1.2. Many voltage-gated sodium channel genes, including SCN2A, undergo developmentally regulated mRNA splicing. The early onset of these disorders suggests that developmentally regulated alternative splicing of NaV1.2 may be an important consideration when elucidating the pathophysiological consequences of epilepsy-associated variants. We hypothesized that EOEE-associated NaV1.2 variants would exhibit greater dysfunction in a splice isoform that is prominently expressed during early development. We engineered five EOEE-associated NaV1.2 variants (T236S, E999K, S1336Y, T1623N, and R1882Q) into the adult and neonatal splice isoforms of NaV1.2 and performed whole-cell voltage clamp to elucidate their functional properties. All variants exhibited functional defects that could enhance neuronal excitability. Three of the five variants (T236S, E999K, and S1336Y) exhibited greater dysfunction in the neonatal isoform compared with those observed in the adult isoform. Computational modeling of a developing cortical pyramidal neuron indicated that T236S, E999K, S1336Y, and R1882Q showed hyperexcitability preferentially in immature neurons. These results suggest that both splice isoform and neuronal developmental stage influence how EOEE-associated NaV1.2 variants affect neuronal excitability."	"PrP (122-139) is a covert mitochondrial targeting signal of prion protein and it specifically triggers the perinuclear clustering of mitochondria in neuronal culture cells. In many neurodegenerative diseases, mitochondria are actively involved in the onset and/or progression of diseases because the energy depletion of the neuronal cells directly leads to the dysfunction and degeneration of cells. In the case of prion diseases, mitochondrial involvement has been reported recently and evidence that prion protein (PrP) is localized in mitochondria is increasing. Despite these findings, the precise molecular mechanism by which PrP targets mitochondria remains unclear. PrP is a secretory protein and does not have a pre-sequence that targets the mitochondria, therefore, we thought that there was a covert signal in the amino acid sequence of PrP. To find the sequence, we constructed various GFP-fused PrP-truncations and colocalization with mitochondria was verified by live-cell imaging. Consequently, we found that 18 amino acids, PrP (122-139), are indispensable for the mitochondrial targeting of PrP. In addition, fluorescent microscopy observation revealed that PrP-localized mitochondria were accumulated at the perinuclear region in neuronal cells such as mouse neuroblastoma Neuro2a (N2a) and prion persistent infection N2a strain (ScN2a), anterograde movement of the mitochondria toward the cell membrane was completely inhibited because of the stacking of PrP on the outer membrane. The cristae formation of perinuclear accumulated mitochondria was disappeared indicating the reduced mitochondrial activity. Surprisingly, PrP-dependent mitochondrial perinuclear accumulation was specifically occurred on neuronal cells, whereas in epithelial HeLa cells and fibroblast COS-7 cells, no perinuclear accumulation observed even after the mitochondrial targeting of PrP."	"Precision medicine in sodium channelopathies - Moving beyond seizure control towards disease modification. NA"	"Differential excitatory vs inhibitory SCN expression at single cell level regulates brain sodium channel function in neurodevelopmental disorders. The four voltage-gated sodium channels SCN1/2/3/8A have been associated with heterogeneous types of developmental disorders, each presenting with disease specific temporal and cell type specific gene expression. Using single-cell RNA sequencing transcriptomic data from humans and mice, we observe that SCN1A is predominantly expressed in inhibitory neurons. In contrast, SCN2/3/8A are profoundly expressed in excitatory neurons with SCN2/3A starting prenatally, followed by SCN1/8A neonatally. In contrast to previous observations from low resolution RNA screens, we observe that all four genes are expressed in both excitatory and inhibitory neurons, however, exhibit differential expression strength. These findings provide molecular evidence, at single-cell resolution, to support the hypothesis that the excitatory/inhibitory (E/I) neuronal expression ratios of sodium channels are important regulatory mechanisms underlying brain homeostasis and neurological diseases. Modulating the E/I expression balance within cell types of sodium channels could serve as a potential strategy to develop targeted treatment for NaV-associated neuronal developmental disorders."	"The phenotypic spectrum of SCN2A-related epilepsy. Pathogenic variants in SCN2A are reported in a spectrum of neurodevelopmental disorders including developmental and epileptic encephalopathies, benign familial neonatal-infantile seizures, episodic ataxia, and autism spectrum disorder and intellectual disability with and without seizures. To date, more than 300 patients with SCN2A variants have been published, the majority presenting with epilepsy. Large cohort studies and variant-specific electrophysiology, have enabled the delineation of different SCN2A-epilepsy phenotypes, phenotype-genotype correlations, prediction of pharmacosensitivity to sodium channel blockers and long-term prognostication for clinicians and families. Herein, we summarise the core phenotypes of SCN2A-related epilepsy, genotype-phenotype correlations, response to medication and future research."	"Phenotypic spectrum and genetics of SCN2A-related disorders, treatment options, and outcomes in epilepsy and beyond. Pathogenic variants in the SCN2A gene are associated with a variety of neurodevelopmental phenotypes, defined in recent years through multicenter collaboration. Phenotypes include benign (self-limited) neonatal and infantile epilepsy and more severe developmental and epileptic encephalopathies also presenting in early infancy. There is increasing evidence that an important phenotype linked to the gene is autism and intellectual disability without epilepsy or with rare seizures in later childhood. Other associations of SCN2A include the movement disorders chorea and episodic ataxia. It is likely that as genetic testing enters mainstream practice that new phenotypic associations will be identified. Some missense, gain of function variants tend to present in early infancy with epilepsy, whereas other missense or truncating, loss of function variants present with later-onset epilepsies or intellectual disability only. Knowledge of both mutation type and functional consequences can guide precision therapy. Sodium channel blockers may be effective antiepileptic medications in gain of function, neonatal and infantile presentations."	"SCN2A channelopathies: Mechanisms and models. Variants in the SCN2A gene, encoding the voltage-gated sodium channel NaV 1.2, cause a variety of neuropsychiatric syndromes with different severity ranging from self-limiting epilepsies with early onset to developmental and epileptic encephalopathy with early or late onset and intellectual disability (ID), as well as ID or autism without seizures. Functional analysis of channel defects demonstrated a genotype-phenotype correlation and suggested effective treatment options for one group of affected patients carrying gain-of-function variants. Here, we sum up the functional mechanisms underlying different phenotypes of patients with SCN2A channelopathies and present currently available models that can help in understanding SCN2A-related disorders."	"SCN1A-related phenotypes: Epilepsy and beyond. SCN1A, encoding the alpha 1 subunit of the sodium channel, is associated with several epilepsy syndromes and a range of other diseases. SCN1A represents the archetypal channelopathy associated with a wide phenotypic spectrum of epilepsies ranging from genetic epilepsy with febrile seizures plus (GEFS+), to developmental and epileptic encephalopathies (DEEs). SCN1A disorders also result in other diseases such as hemiplegic migraine and autism spectrum disorder (ASD). Dravet syndrome (DS) is the prototypic DEE with an early onset of febrile status epilepticus, hemiclonic or generalized tonic-clonic seizures, and later onset of additional seizure types. Electroencephalography (EEG) and magnetic resonance imaging (MRI) are normal at onset. Development is normal in the first year of life but plateaus rapidly, with most patients ultimately having intellectual disability. Epilepsy is drug-resistant and necessitates polytherapy. Most pathogenic variants occur de novo in the affected child, but they are inherited from mosaic affected or unaffected parents in rare cases. The molecular finding of haploinsufficiency is consistent with a loss-of-function defect in cells and animal models. Although seizures are the most commonly reported symptom in DS, many additional issues critically affect patients' cognitive and behavioral functioning. Hemiplegic migraine (HM) is a rare form of migraine with aura, characterized by the emergence of hemiparesis as part of the aura phase. All SCN1A mutations reported in sporadic/familial HM3 are missense mutations. Most of the experimental results show that they cause a gain of function of NaV 1.1 as opposed to the loss of function of the epileptogenic NaV 1.1 mutations. SCN1A and SCN2A pathogenic variants have been identified in genetic studies of cohorts of patients with ASD. In addition, ASD features are often reported in patients with Dravet syndrome and other DEEs."	"Recent advances in treatment of epilepsy-related sodium channelopathies. Voltage-gated sodium channels (VGSCs) play a crucial role in generation of action potentials. Pathogenic variants in the five human brain expressed VGSC genes, SCN1A, SCN2A, SCN3A, SCN8A and SCN1B have been associated with a spectrum of epilepsy phenotypes and neurodevelopmental disorders. In the last decade, next generation sequencing techniques have revolutionized the way we diagnose these channelopathies, which is paving the way towards precision medicine. Knowing the functional effect (Loss-of-function versus Gain-of-function) of a variant is not only important for understanding the underlying pathophysiology, but it is particularly crucial to orient therapeutic decisions. Here we provide a review of the literature dealing with treatment options in epilepsy-related sodium channelopathies, including the current and emerging medications."	"Epilepsy and developmental disorders: Next generation sequencing in the clinic. The advent of Next Generation Sequencing (NGS) has led to a redefining of the genetic landscape of the epilepsies. Hundreds of single gene epilepsies have been described. Genes associated with epilepsy involve diverse processes. Now a substantial proportion of individuals with epilepsy can receive a high definition molecular genetic diagnosis. In this review we update the current genetic landscape of the epilepsies and categorise the major functional groupings of epilepsy-associated genes. We describe currently available genetic testing approaches. We perform a literature review of NGS studies and review the factors which determine yield in cohorts undergoing testing. We identify factors associated with positive genetic diagnosis and consider the utility of genetic testing in terms of treatment selection as well as more qualitative aspects of care. Epilepsy-associated genes can be grouped into five broad functional categories: ion transport; cell growth and differentiation; regulation of synaptic processes; transport and metabolism of small molecules within and between cells; and regulation of gene transcription and translation. Early onset of seizures, drug-resistance, and developmental comorbidity are associated with higher diagnostic yield. The most commonly implicated genes in NGS studies to date, in order, are SCN1A, KCNQ2, CDKL5, SCN2A, and STXBP1. In unselected infantile cohorts PRRT2, a gene associated with self-limited epilepsy, is frequently implicated. Genetic diagnosis provides utility in terms of treatment choice closing the diagnostic odyssey, avoiding unnecessary further testing, and informing future reproductive decisions. Genetic testing has become a first line test in epilepsy. As techniques improve and understanding advances, its utility is set to increase. Genetic diagnosis, particularly in early onset developmental and epileptic encephalopathies, influences treatment choice in a significant proportion of patients. The realistic prospect of gene therapy is a cause for optimism."	"Metformin reduces prion infection in neuronal cells by enhancing autophagy. Prion diseases are fatal infectious neurodegenerative disorders in human and animals that are caused by misfolding of the cellular prion protein (PrP<sup>C</sup>) into the infectious isoform PrP<sup>Sc</sup>. No effective treatment is available for prion diseases. Metformin is a first-line medication for treatment of type 2 diabetes which is known to activate AMPK and induce autophagy through the inhibition of mammalian target of rapamycin (mTOR1) signaling. Metformin was reported to be beneficial in various protein misfolding and neurodegenerative diseases like Alzheimer's and Huntington's diseases. In this study we investigated the anti-prion effect of metformin in persistently prion-infected neuronal cells. Our data showed that metformin significantly decreased the PrP<sup>Sc</sup> load in the treated cells, as shown by less PK resistant PrP in Western blots and reduced prion conversion activity in Real-Time Quaking-Induced Conversion (RT-QuIC) assay in both 22L-ScN2a and RML-ScCAD5 cells. Additionally, metformin induced autophagy as shown by higher levels of LC3-II in treated cells compared with control cells. On the other hand, our mouse bioassay showed that oral metformin at a dose of 2 mg/ml in drinking water had no effect on the survival of prion-infected mice. In conclusion, our findings describe the anti-prion effect of metformin in two persistently prion-infected neuronal cell lines. This effect can be explained at least partially by the autophagy inducing activity of metformin. This study sheds light on metformin as an anti-prion candidate for the combination therapy of prion diseases."	"Validation of Poly(Propylene Imine) Glycodendrimers Towards Their Anti-prion Conversion Efficiency. Prion diseases, such as the sporadic Creutzfeldt-Jakob disease (sCJD), are a class of fatal neurodegenerative disorders. Currently, there is no efficient treatment or therapy available. Hence, the search for molecules that may inhibit the conversion of the cellular prion protein (PrP<sup>C</sup>) into its pathological counterpart PrPScrapie (PrP<sup>Sc</sup>) is of great urgency. Here, we report the generation- and dose-dependent biological action of dense-shell poly(propylene imine) (PPI) glycodendrimers by using scrapie-infected neuroblastoma (ScN2a) cells and the real-time quaking-induced conversion assay (RT-QuIC) for validation of anti-prion efficiencies. Whereas the 2nd and 3rd generation of PPI glycodendrimers exhibited anti-prion conversion efficiency in ScN2a cells validated by RT-QuIC analysis, we observed that the 4th generation of glycodendrimers had shown no significant effect. Translational RT-QuIC studies conducted with human prions derived from sCJD patients indicated an anti-prion conversion effect (not on PrP<sup>Res</sup> degradation) of PPI glycodendrimers against human prions with the highest inhibitory activity of the 4th generation of PPI glycodendrimers towards prion aggregation compared to the 2nd and 3rd generation. In conclusion, our study highlights the potential of PPI glycodendrimers as therapeutic compounds due to their anti-conversion activity on human prions in a PrP<sup>Sc</sup> strain depending manner."	"Identification of common genetic markers of paroxysmal neurological disorders using a network analysis approach. Emerging data have established links between paroxysmal neurological disorders or psychiatric disorder, such as migraine, ataxia, movement disorders and epilepsy. Common gene signatures such as expression, protein interaction and the associated signalling pathways link genes in these associated disorders, with the object to predict unknown disease or risk genes. In this study, we used gene interaction networks to investigate common gene signatures associated with the above phenotypes. In total, 19 candidate genes were used for making an interaction network which further revealed 39 associated genes (including KCNA1, SCN2A, CACNA1A, KCNM4, KCNO3, SCN1B and CACNB4) implicated in paroxysmal neurological disorders development and progression. The meta-regression analysis showed the strongest association of SCN2A with genes involved in schizophrenia and neurodevelopmental disorders. Importantly, our analysis showed KCNMA1 as a common gene signature with a link to epilepsy, movement disorders and wide paroxysmal neurological presentations-with the greatest potential risk of being a disease gene in a paroxysmal or psychiatric disorder. Further gene interaction analysis is required to identify unidentified gene interactions which may be targets for future drugs development."	"The Identification of Differentially Expressed Genes Showing Aberrant Methylation Patterns in Pheochromocytoma by Integrated Bioinformatics Analysis. Malignant pheochromocytoma (PHEO) can only be fully diagnosed when metastatic foci develop. However, at this point in time, patients gain little benefit from traditional therapeutic methods. Methylation plays an important role in the pathogenesis of PHEO. The aim of this research was to use integrated bioinformatics analysis to identify differentially expressed genes (DEGs) showing aberrant methylation patterns in PHEO and therefore provide further understanding of the molecular mechanisms underlying this condition. Aberrantly methylated DEGs were first identified by using R software (version 3.6) to combine gene expression microarray data (GSE19422) with gene methylation microarray data (GSE43293). An online bioinformatics database (DAVID) was then used to identify all overlapping DEGs showing aberrant methylation; these were annotated and then functional enrichment was ascertained by gene ontology (GO) analysis. The online STRING tool was then used to analyze interactions between all overlapping DEGs showing aberrant methylation; these results were then visualized by Cytoscape (version 3.61). Next, using the cytoHubba plugin within Cytoscape, we identified the top 10 hub genes and found that these were predominantly enriched in pathways related to cancer. Reference to The Cancer Genome Atlas (TCGA) further confirmed our results and further identified an upregulated hypomethylated gene (SCN2A) and a downregulated hypermethylated gene (KCNQ1). Logistic regression analysis and receiver operating characteristic (ROC) curve analysis indicated that KCNQ1 and SCN2A represent promising differential diagnostic biomarkers between benign and malignant PHEO. Finally, clinical data showed that there were significant differences in the concentrations of potassium and sodium when compared between pre-surgery and post-surgery day 1. These suggest that KCNQ1 and SCN2A, genes that encode potassium and sodium channels, respectively, may serve as putative diagnostic targets for the diagnosis and prognosis of PHEO and therefore facilitate the clinical management of PHEO."	"Genotype-phenotype correlation on 45 individuals with West syndrome. West syndrome is an epilepsy syndrome characterized by repetitive epileptic spasms (ES) and hypsarrhythmia, typically leading to developmental delay/intellectual disability (DD/ID). It is considered a classic epileptic encephalopathy (EE). We designed a diagnostic sequencing panel targeting 131 genes associated with epilepsy and/or EE and screened a cohort of 45 individuals with clinical diagnosis of West syndrome. We identified disease-causing single nucleotide variants in 11 out of 45 individuals affecting genes commonly associated with West syndrome (such as CDKL5, ARX) but also in genes predominantly linked to other epileptic disorders (such as DEPDC5, SCN1A, WDR45, AARS). Panel analysis revealed copy number variants in two additional cases, comprising a 6,7 Mb Duplication on chromosome 2 including SCN2A and SCN3A and a supernumerary marker chromosome 15 leading to an overall diagnostic yield of 29% (13/45). In our cohort, individuals with a disease-causing variant had significantly more severe phenotypes with respect to DD/ID, therapy resistant epilepsy and cerebral atrophy compared to genetically unclarified cases. In addition to investigating the genotypic spectrum of West syndrome, we compared the phenotypic spectrum of clarified versus unclarified cases. Our study illustrates that West syndrome is an electroclinical syndrome caused by various genetic disorders. Individuals without detectable genetic cause might have less encephalopathy leading to a less severe course."	"Dysfunction of the corticostriatal pathway in autism spectrum disorders. The corticostriatal pathway that carries sensory, motor, and limbic information to the striatum plays a critical role in motor control, action selection, and reward. Dysfunction of this pathway is associated with many neurological and psychiatric disorders. Corticostriatal synapses have unique features in their cortical origins and striatal targets. In this review, we first describe axonal growth and synaptogenesis in the corticostriatal pathway during development, and then summarize the current understanding of the molecular bases of synaptic transmission and plasticity at mature corticostriatal synapses. Genes associated with autism spectrum disorder (ASD) have been implicated in axonal growth abnormalities, imbalance of the synaptic excitation/inhibition ratio, and altered long-term synaptic plasticity in the corticostriatal pathway. Here, we review a number of ASD-associated high-confidence genes, including FMR1, KMT2A, GRIN2B, SCN2A, NLGN1, NLGN3, MET, CNTNAP2, FOXP2, TSHZ3, SHANK3, PTEN, CHD8, MECP2, DYRK1A, RELN, FOXP1, SYNGAP1, and NRXN, and discuss their relevance to proper corticostriatal function."	"An integrative methodology based on protein-protein interaction networks for identification and functional annotation of disease-relevant genes applied to channelopathies. Biologically data-driven networks have become powerful analytical tools that handle massive, heterogeneous datasets generated from biomedical fields. Protein-protein interaction networks can identify the most relevant structures directly tied to biological functions. Functional enrichments can then be performed based on these structural aspects of gene relationships for the study of channelopathies. Channelopathies refer to a complex group of disorders resulting from dysfunctional ion channels with distinct polygenic manifestations. This study presents a semi-automatic workflow using protein-protein interaction networks that can identify the most relevant genes and their biological processes and pathways in channelopathies to better understand their etiopathogenesis. In addition, the clinical manifestations that are strongly associated with these genes are also identified as the most characteristic in this complex group of diseases. In particular, a set of nine representative disease-related genes was detected, these being the most significant genes in relation to their roles in channelopathies. In this way we attested the implication of some voltage-gated sodium (SCN1A, SCN2A, SCN4A, SCN4B, SCN5A, SCN9A) and potassium (KCNQ2, KCNH2) channels in cardiovascular diseases, epilepsies, febrile seizures, headache disorders, neuromuscular, neurodegenerative diseases or neurobehavioral manifestations. We also revealed the role of Ankyrin-G (ANK3) in the neurodegenerative and neurobehavioral disorders as well as the implication of these genes in other systems, such as the immunological or endocrine systems. This research provides a systems biology approach to extract information from interaction networks of gene expression. We show how large-scale computational integration of heterogeneous datasets, PPI network analyses, functional databases and published literature may support the detection and assessment of possible potential therapeutic targets in the disease. Applying our workflow makes it feasible to spot the most relevant genes and unknown relationships in channelopathies and shows its potential as a first-step approach to identify both genes and functional interactions in clinical-knowledge scenarios of target diseases. An initial gene pool is previously defined by searching general databases under a specific semantic framework. From the resulting interaction network, a subset of genes are identified as the most relevant through the workflow that includes centrality measures and other filtering and enrichment databases."	"Lack of association of SCN2A rs17183814 polymorphism with the efficacy of lamotrigine monotherapy in patients with focal epilepsy from Herzegovina area, Bosnia and Herzegovina. We assessed the influence of the SCN2A gene polymorphism c.56 G &gt; A rs17183814 on the response to lamotrigine monotherapy in patients with focal epilepsy in Herzegovina area, Bosnia and Herzegovina. For SCN2A polymorphism c.56 G &gt; A rs17183814, one hundred patients with epilepsy who were receiving lamotrigine in monotherapy and seventy-one age and sex matched healthy controls were genotyped using TaqMan assay. All patients were Caucasians from the region of Herzegovina, Bosnia and Herzegovina. Genotyping was conducted using a polymerase chain reaction in real time. Patients were divided into two groups: responders and non-responders. Of all patients with epilepsy, 33% were non-responders, and 67% were responders. The mean age of non-responders was 38.8 vs. group of responders in which it was 35.2. Mean age of onset of seizures in epilepsy patients was 26.7 for non-responders and 25.4 for responders. In patients with epilepsy, the mean age of seizure onset was 26.7 for non-responders and 25.4 for responders. For SCN2A c.56 G &gt; A gene polymorphism, we did not observe any significant differences in genotypic or allelic frequency between patients with epilepsy and healthy controls. Genotype or allelic frequencies of SCN2A c.56 G &gt; A gene polymorphism did not significantly differ for AG or GG genotypes in the non-responders vs. responders. There was no significant association in patients with focal epilepsy between studied genotypes and response to lamotrigine monotherapy in Herzegovina patients with focal epilepsy. However, we need studies in a bigger cohort of patients with epilepsy to be assessed in the future."	"Histone demethylase KDM5C is a SAHA-sensitive central hub at the crossroads of transcriptional axes involved in multiple neurodevelopmental disorders. A disproportional large number of neurodevelopmental disorders (NDDs) is caused by variants in genes encoding transcription factors and chromatin modifiers. However, the functional interactions between the corresponding proteins are only partly known. Here, we show that KDM5C, encoding a H3K4 demethylase, is at the intersection of transcriptional axes under the control of three regulatory proteins ARX, ZNF711 and PHF8. Interestingly, mutations in all four genes (KDM5C, ARX, ZNF711 and PHF8) are associated with X-linked NDDs comprising intellectual disability as a core feature. in vitro analysis of the KDM5C promoter revealed that ARX and ZNF711 function as antagonist transcription factors that activate KDM5C expression and compete for the recruitment of PHF8. Functional analysis of mutations in these genes showed a correlation between phenotype severity and the reduction in KDM5C transcriptional activity. The KDM5C decrease was associated with a lack of repression of downstream target genes Scn2a, Syn1 and Bdnf in the embryonic brain of Arx-null mice. Aiming to correct the faulty expression of KDM5C, we studied the effect of the FDA-approved histone deacetylase inhibitor suberanilohydroxamic acid (SAHA). In Arx-KO murine ES-derived neurons, SAHA was able to rescue KDM5C depletion, recover H3K4me3 signalling and improve neuronal differentiation. Indeed, in ARX/alr-1-deficient Caenorhabditis elegans animals, SAHA was shown to counteract the defective KDM5C/rbr-2-H3K4me3 signalling, recover abnormal behavioural phenotype and ameliorate neuronal maturation. Overall, our studies indicate that KDM5C is a conserved and druggable effector molecule across a number of NDDs for whom the use of SAHA may be considered a potential therapeutic strategy."	"Optimization of in silico tools for predicting genetic variants: individualizing for genes with molecular sub-regional stratification. Genes are unique in functional role and differ in their sensitivities to genetic defects, but with difficulties in pathogenicity prediction. This study attempted to improve the performance of existing in silico algorithms and find a common solution based on individualization strategy. We initiated the individualization with the epilepsy-related SCN1A variants by sub-regional stratification. SCN1A missense variants related to epilepsy were retrieved from mutation databases, and benign missense variants were collected from ExAC database. Predictions were performed by using 10 traditional tools with stepwise optimizations. Model predictive ability was evaluated using the five-fold cross-validations on variants of SCN1A, SCN2A, and KCNQ2. Additional validation was performed in SCN1A variants of damage-confirmed/familial epilepsy. The performance of commonly used predictors was less satisfactory for SCN1A with accuracy less than 80% and varied dramatically by functional domains of Nav1.1. Multistep individualized optimizations, including cutoff resetting, domain-based stratification, and combination of predicting algorithms, significantly increased predictive performance. Similar improvements were obtained for variants in SCN2A and KCNQ2. The predictive performance of the recently developed ensemble tools, such as Mendelian clinically applicable pathogenicity, combined annotation-dependent depletion and Eigen, was also improved dramatically by application of the strategy with molecular sub-regional stratification. The prediction scores of SCN1A variants showed linear correlations with the degree of functional defects and the severity of clinical phenotypes. This study highlights the need of individualized optimization with molecular sub-regional stratification for each gene in practice."	"The Genetic Landscape of Epilepsy of Infancy with Migrating Focal Seizures. Epilepsy of infancy with migrating focal seizures (EIMFS) is one of the most severe developmental and epileptic encephalopathies. We delineate the genetic causes and genotype-phenotype correlations of a large EIMFS cohort. Phenotypic and molecular data were analyzed on patients recruited through an international collaborative study. We ascertained 135 patients from 128 unrelated families. Ninety-three of 135 (69%) had causative variants (42/55 previously reported) across 23 genes, including 9 novel EIMFS genes: de novo dominant GABRA1, GABRB1, ATP1A3; X-linked CDKL5, PIGA; and recessive ITPA, AIMP1, KARS, WWOX. The most frequently implicated genes were KCNT1 (36/135, 27%) and SCN2A (10/135, 7%). Mosaicism occurred in 2 probands (SCN2A, GABRB3) and 3 unaffected mothers (KCNT1). Median age at seizure onset was 4 weeks, with earlier onset in the SCN2A, KCNQ2, and BRAT1 groups. Epileptic spasms occurred in 22% patients. A total of 127 patients had severe to profound developmental impairment. All but 7 patients had ongoing seizures. Additional features included microcephaly, movement disorders, spasticity, and scoliosis. Mortality occurred in 33% at median age 2 years 7 months. We identified a genetic cause in 69% of patients with EIMFS. We highlight the genetic heterogeneity of EIMFS with 9 newly implicated genes, bringing the total number to 33. Mosaicism was observed in probands and parents, carrying critical implications for recurrence risk. EIMFS pathophysiology involves diverse molecular processes from gene and protein regulation to ion channel function and solute trafficking. ANN NEUROL 2019;86:821-831."	"Resurgent and Gating Pore Currents Induced by De Novo SCN2A Epilepsy Mutations. Over 150 mutations in the SCN2A gene, which encodes the neuronal Nav1.2 protein, have been implicated in human epilepsy cases. Of these, R1882Q and R853Q are two of the most commonly reported mutations. This study utilized voltage-clamp electrophysiology to characterize the biophysical effects of the R1882Q and R853Q mutations on the hNav1.2 channel, including their effects on resurgent current and gating pore current, which are not typically investigated in the study of Nav1.2 channel mutations. HEK cells transiently transfected with DNA encoding either wild-type (WT) or mutant hNav1.2 revealed that the R1882Q mutation induced a gain-of-function phenotype, including slowed fast inactivation, depolarization of the voltage dependence of inactivation, and increased persistent current. In this model system, the R853Q mutation primarily produced loss-of-function effects, including reduced transient current amplitude and density, hyperpolarization of the voltage dependence of inactivation, and decreased persistent current. The presence of a Navβ4 peptide (KKLITFILKKTREK-OH) in the pipette solution induced resurgent currents, which were increased by the R1882Q mutation and decreased by the R853Q mutation. Further study of the R853Q mutation in Xenopus oocytes indicated a reduced surface expression and revealed a robust gating pore current at negative membrane potentials, a function absent in the WT channel. This not only shows that different epileptogenic point mutations in hNav1.2 have distinct biophysical effects on the channel, but also illustrates that individual mutations can have complex consequences that are difficult to identify using conventional analyses. Distinct mutations may, therefore, require tailored pharmacotherapies in order to eliminate seizures."	"NaV1.2 haploinsufficiency in Scn2a knock-out mice causes an autistic-like phenotype attenuated with age. Mutations of the SCN2A gene, encoding the voltage gated sodium channel NaV1.2, have been associated to a wide spectrum of epileptic disorders ranging from benign familial neonatal-infantile seizures to early onset epileptic encephalopathies such as Ohtahara syndrome. These phenotypes may be caused by either gain-of-function or loss-of-function mutations. More recently, loss-of-function SCN2A mutations have also been identified in patients with autism spectrum disorder (ASD) without overt epileptic phenotypes. Heterozygous Scn2a knock-out mice (Scn2a<sup>+/-</sup>) may be a model of this phenotype. Because ASD develops in childhood, we performed a detailed behavioral characterization of Scn2a<sup>+/-</sup> mice comparing the juvenile/adolescent period of development and adulthood. We used tasks relevant to ASD and the different comorbidities frequently found in this disorder, such as anxiety or intellectual disability. Our data demonstrate that young Scn2a<sup>+/-</sup> mice display autistic-like phenotype associated to impaired memory and reduced reactivity to stressful stimuli. Interestingly, these dysfunctions are attenuated with age since adult mice show only communicative deficits. Considering the clinical data available on patients with loss-of-function SCN2A mutations, our results indicate that Scn2a<sup>+/-</sup> mice constitute an ASD model with construct and face validity during the juvenile/adolescent period of development. However, more information about the clinical features of adult carriers of SCN2A mutations is needed to evaluate comparatively the phenotype of adult Scn2a<sup>+/-</sup> mice."	"Crisponi/cold-induced sweating syndrome: Differential diagnosis, pathogenesis and treatment concepts. Crisponi/cold-induced sweating syndrome (CS/CISS) is an autosomal recessive disease characterized by hyperthermia, camptodactyly, feeding and respiratory difficulties often leading to sudden death in the neonatal period. The affected individuals who survived the first critical years of life, develop cold-induced sweating and scoliosis in early childhood. The disease is caused by variants in the CRLF1 or in the CLCF1 gene. Both proteins form a heterodimeric complex that acts on cells expressing the ciliary neurotrophic factor receptor (CNTFR). CS/CISS belongs to the family of &quot;CNTFR-related disorders&quot; showing a similar clinical phenotype. Recently, variants in other genes, including KLHL7, NALCN, MAGEL2 and SCN2A, previously linked to other diseases, have been associated with a CS/CISS-like phenotype. Therefore, retinitis pigmentosa and Bohring-Optiz syndrome-like (KLHL7), Congenital contractures of the limbs and face, hypotonia, and developmental delay syndrome (NALCN), Chitayat-Hall/Schaaf-Yang syndrome (MAGEL2), and early infantile epileptic encephalopathy-11 syndrome (SCN2A) all share an overlapping phenotype with CS/CISS, especially in the neonatal period. This review aims to summarize the existing literature on CS/CISS, focusing on the current state of differential diagnosis, pathogenesis and treatment concepts in order to achieve an accurate and rapid diagnosis. This will improve patient management and enable specific treatments for the affected individuals."	"Clinical Application of Targeted Next-Generation Sequencing Panels and Whole Exome Sequencing in Childhood Epilepsy. Genetic diagnosis of childhood epilepsy is crucial to provide disease-specific treatments. This report describes the genetic landscape of childhood epilepsy revealed by targeted next-generation sequencing panels for epilepsy (TNGSP-E) and whole exome sequencing (WES). In this retrospective cohort study, TNGSP-E and/or WES were applied to identify underlying genetic diagnoses in children seen in a single Pediatric Epilepsy Genetics Clinic. We reviewed electronic patient charts for phenotypes and biochemical, genetic, and neuroimaging investigations. Forty-four different genetic diagnoses were confirmed in 71 of 197 patients (36%; 95% CI 29.3%-43.2%). The diagnostic yield of WES (37%) was 1.9-fold greater than the diagnostic yield of TNGSP-E (19.0%; P=.0018). The number of genes included in TNGSP-E was not correlated with whether or not the test resulted in a diagnosis (Pearson's R=-0.02, P=.8). Inherited metabolic disorders accounted for 13% of the genetic diagnoses, despite abnormal metabolic investigations being an exclusion criteria. There was a direct treatment implication in 6% of patients with inherited metabolic disorders including pyridoxine dependent epilepsy, glucose transporter 1 deficiency and neuronal ceroid lipofuscinosis type 2. Additionally, there might be some treatment implications in 30% of patients with genetic diagnoses including SCN1A, SCN2A, SCN8A, and KCNQ2 associated epilepsies by application of effective anti-epileptic drugs or the ketogenic diet therapy. The high diagnostic yield of clinical molecular genetic investigations and their disease-specific treatment implications highlight the importance of genetic diagnosis in childhood epilepsy. We recommend a stepwise diagnostic algorithm including metabolic investigations for treatable disorders, chromosomal microarray analysis, TNGSP-E, and WES."	"It's a Storm, It's a Gale: Epilepsy Initiation From the Corticostriatal Circuit. [Box: see text]."	"Clinical exome sequencing identifies two novel mutations of the SCN1A and SCN2A genes in Moroccan patients with epilepsy: a case series. Epilepsy is the most common neurological disorder that causes spontaneous, unprovoked, and recurrent seizures. Epilepsy is clinically and genetically heterogeneous with various modes of inheritance. The complexity of epilepsy presents a challenge and identification of the causal genetic mutation allows diagnosis, genetic counseling, predicting prognosis, and, in some cases, treatment decisions. Clinical exome sequencing is actually becoming a powerful approach for molecular diagnosis of heterogeneous neurological disorders in clinical practice. We report our observations of three unrelated Moroccan patients referred to our genetics department for molecular diagnosis of epilepsy: a 4-year-old Moroccan boy, a 3-year-old Moroccan girl, and a 7-year-old Moroccan boy. Due to the heterogeneity and complexity of epilepsy, we performed clinical exome sequencing followed by targeted analysis of 936 epilepsy genes. A total of three mutations were identified in known epilepsy genes (SCN1A, SCN2A). By clinical exome sequencing, we identified two novel mutations: c.4973C&gt;A (p.Thr1658Lys) in SCN1A gene and c.1283A&gt;G (p.Tyr428Cys) in the SCN2A gene, whereas the third mutation c.3295G&gt;T (p.Glu1099*) was already described in patients with Dravet syndrome. This study demonstrates that clinical exome sequencing is an effective diagnosis tool to investigate this group of diseases with huge diversity and defends its use in clinical routine."	"Loss of NaV1.2-Dependent Backpropagating Action Potentials in Dendrites Contributes to Autism and Intellectual Disability. Mutations in voltage-dependent sodium channels cause severe autism/intellectual disability. In this issue of Neuron, Spratt et al. (2019) show that lowering expression of Nav1.2 channels attenuates backpropagation of action potentials into dendrites of cortical neurons, preventing spike-timing-dependent synaptic plasticity."	"Mapping the knowledge structure and trends of epilepsy genetics over the past decade: A co-word analysis based on medical subject headings terms. Over the past 10 years, epilepsy genetics has made dramatic progress. This study aimed to analyze the knowledge structure and the advancement of epilepsy genetics over the past decade based on co-word analysis of medical subject headings (MeSH) terms. Scientific publications focusing on epilepsy genetics from the PubMed database (January 2009-December 2018) were retrieved. Bibliometric information was analyzed quantitatively using Bibliographic Item Co-Occurrence Matrix Builder (BICOMB) software. A knowledge social network analysis and publication trend based on the high-frequency MeSH terms was built using VOSviewer. According to the search strategy, a total of 5185 papers were included. Among all the extracted MeSH terms, 86 high-frequency MeSH terms were identified. Hot spots were clustered into 5 categories including: &quot;ion channel diseases,&quot; &quot;beyond ion channel diseases,&quot; &quot;experimental research &amp; epigenetics,&quot; &quot;single nucleotide polymorphism &amp; pharmacogenetics,&quot; and &quot;genetic techniques&quot;. &quot;Epilepsy,&quot; &quot;mutation,&quot; and &quot;seizures,&quot; were located at the center of the knowledge network. &quot;Ion channel diseases&quot; are typically in the most prominent position of epilepsy genetics research. &quot;Beyond ion channel diseases&quot; and &quot;genetic techniques,&quot; however, have gradually grown into research cores and trends, such as &quot;intellectual disability,&quot; &quot;infantile spasms,&quot; &quot;phenotype,&quot; &quot;exome,&quot; &quot; deoxyribonucleic acid (DNA) copy number variations,&quot; and &quot;application of next-generation sequencing.&quot; While ion channel genes such as &quot;SCN1A,&quot; &quot;KCNQ2,&quot; &quot;SCN2A,&quot; &quot;SCN8A&quot; accounted for nearly half of epilepsy genes in MeSH terms, a number of additional beyond ion channel genes like &quot;CDKL5,&quot; &quot;STXBP1,&quot; &quot;PCDH19,&quot; &quot;PRRT2,&quot; &quot;LGI1,&quot; &quot;ALDH7A1,&quot; &quot;MECP2,&quot; &quot;EPM2A,&quot; &quot;ARX,&quot; &quot;SLC2A1,&quot; and more were becoming increasingly popular. In contrast, gene therapies, treatment outcome, and genotype-phenotype correlations were still in their early stages of research. This co-word analysis provides an overview of epilepsy genetics research over the past decade. The 5 research categories display publication hot spots and trends in epilepsy genetics research which could consequently supply some direction for geneticists and epileptologists when launching new projects."	"Genetics of neonatal-onset epilepsies. Although the majority of seizures in neonates are related to acute brain injury, a substantial minority are the first symptom of a neonatal-onset epilepsy often linked to a pathogenic genetic variant. Historically, studies on neonatal seizures including treatment response and long-term consequences have lumped all etiologies together. However, etiology has been consistently shown to be the most important determinant of outcome. In the past few years, an increasing number of monogenic disorders have been described and might explain up to a third of neonatal-onset epilepsy syndromes previously included under the umbrella of Ohtahara syndrome and early myoclonic encephalopathy. In this chapter, we define the concept of genetic epilepsy and review the classification. Then, we review the most relevant monogenic neonatal-onset epilepsies, detail their underlying pathophysiologic mechanisms, and present their electroclinical phenotypes. We highlight that, in some cases, such as neonates with KCNQ2 or KCNT1 gene mutations, the early recognition of the electroclinical phenotype can lead to targeted diagnostic testing and precision medicine treatment, enabling the possibility of improved outcome."	"Genomic signatures reveal DNA damage response deficiency in colorectal cancer brain metastases. Brain metastases (BM) of colorectal cancer (CRC) are rare but lethal, and an understanding of their genomic landscape is lacking. We conduct an analysis of whole-exome sequencing (WES) and whole-genome sequencing (WGS) data on 19 trios of patient-matched BMs, primary CRC tumors, and adjacent normal tissue. Compared with primary CRC, BM exhibits elevated mutational signatures of homologous recombination deficiency (HRD) and mismatch repair deficiency (MMRD). Further analysis reveals two DNA damage response (DDR) signatures could emerge early and are enhanced in BM tissues but are eliminated eventually in matched primary CRC tissues. BM-specific mutations in DDR genes and elevated microsatellite instability (MSI) levels support the importance of DDR in the brain metastasis of CRC. We also identify BM-related genes (e.g., SCN7A, SCN5A, SCN2A, IKZF1, and PDZRN4) that carry frequent BM-specific mutations. These results provide a better understanding of the BM mutational landscape and insights into treatment."	"Effects of GRM4, SCN2A and SCN3B polymorphisms on antiepileptic drugs responsiveness and epilepsy susceptibility. Pharmacotherapy of epilepsy including antiepileptic drugs (AEDs) is one of the main treatment approaches. As a biological target, sodium channels (Nav channels) and glutamate receptor genes are playing a major role in the etiology and treatment of epilepsy. This study aims to investigate the genetic associations of certain genetic polymorphisms with increased risk of epilepsy susceptibility and variability in response to AEDs treatment in a Jordanian Arab population. A pharmacogenetics and case-control study on 296 unrelated epileptic Jordanian patients recruited from the pediatric neurology clinic at the Queen Rania Al-Abdullah Hospital (QRAH) in Amman, Jordan and 299 healthy individuals was conducted. Children up to 15 years old which receiving AEDs for at least three months were scanned for genetic association of 7 single nucleotide polymorphisms (SNPs) within three candidate genes (SCN2A, SCN3B and GRM4) with epilepsy susceptibility. SCN2A rs2304016 (P = 0.04) and GRM4 rs2499697 (P = 0.031) were statistically significant with generalized epilepsy. Haplotype of CAACG GRM4 was genetically associated with epilepsy and partial epilepsy (P = 0.036; P = 0.024, respectively). This study also found that TGTAA genetic haplotype formed within GRM4 gene was associated with generalized epilepsy susceptibility (P = 0.006). While, no significant linkage of SCN3B rs3851100 to either disease susceptibility or drug responsiveness was found. This study identified no significant associations of allelic or genotypic SNPs with the susceptibility of epilepsy and medication response with an exception of rs2304016 and rs2499697 SNPs that were associated with the generalized type of epilepsy among Jordanian population. Further studies are required in different populations to confirm our results and identify genetic factors that involved in susceptibility and treatment response."	"Clinical utility of multigene panel testing in adults with epilepsy and intellectual disability. To determine the diagnostic yield of a commercial epilepsy gene panel in adults with chronic epilepsy and accompanying intellectual disability, given that genetic evaluation is often overlooked in this group of patients. This is a cross-sectional study analyzing the results of epilepsy gene panels including up to 185 genes in adult epilepsy patients with intellectual disability, according to Diagnostic and Statistical Manual of Mental Disorders, fifth edition. Patients with acquired structural brain abnormalities or known chromosomal abnormalities were excluded. From approximately 600 patients seen from January 2017 to June 2018 at a single academic epilepsy center, 64 probands and two affected relatives (32 males, mean age = 31 years ± 10) were selected and clinically tested. Fourteen probands (14/64 = 22%; four males, mean age = 32 years ± 10) were found to have pathogenic or likely pathogenic variants in the following genes: SCN1A, GABRB3, UBE3A, KANSL1, SLC2A1, KCNQ2, SLC6A1, HNRNPU, STX1B, SCN2A, PURA, and CHD2. Six variants arose de novo, and the inheritance was not determined in eight. Nine probands (64%) had severe or profound intellectual disability, and five (35%) had autistic features. Eight patients (57%) had a diagnostic change from presumptive clinical diagnosis prior to genetic testing. We were able to demonstrate that a commercial epilepsy gene panel can be an important resource in clinical practice, identifying the etiology in 22% of adults with epilepsy and intellectual disability. The diagnostic yield is similar to previously reported pediatric cohorts. Larger samples would be required to evaluate the more prevalent genotypes among adult epilepsy patients."	"Generation of an induced pluripotent stem cell line from a patient with autism spectrum disorder and SCN2A haploinsufficiency. Autism spectrum disorders (ASDs) are a group of diseases that affect social interaction, communication and behavior. Molecular mechanisms involved in the pathogenesis of ASDs are complex due to genetic heterogeneity. Recently, pathogenic variants of SCN2A have been strongly associated with ASDs. Here, we generated iPSCs from a patient with ASD and a heterozygous nonsense mutation in SCN2A, by reprogramming mesenchymal stromal cells with non-integrating vectors. The generated iPSC line expresses pluripotency markers, presents a normal karyotype and is able to differentiate into the three germ layers. This iPSC line is a useful tool for modeling ASD and drug screening studies."	"Scn2a Haploinsufficiency in Mice Suppresses Hippocampal Neuronal Excitability, Excitatory Synaptic Drive, and Long-Term Potentiation, and Spatial Learning and Memory. Nav1.2, a voltage-gated sodium channel subunit encoded by the Scn2a gene, has been implicated in various brain disorders, including epilepsy, autism spectrum disorder, intellectual disability, and schizophrenia. Nav1.2 is known to regulate the generation of action potentials in the axon initial segment and their propagation along axonal pathways. Nav1.2 also regulates synaptic integration and plasticity by promoting back-propagation of action potentials to dendrites, but whether Nav1.2 deletion in mice affects neuronal excitability, synaptic transmission, synaptic plasticity, and/or disease-related animal behaviors remains largely unclear. Here, we report that mice heterozygous for the Scn2a gene (Scn2a<sup>+/-</sup> mice) show decreased neuronal excitability and suppressed excitatory synaptic transmission in the presence of network activity in the hippocampus. In addition, Scn2a<sup>+/-</sup> mice show suppressed hippocampal long-term potentiation (LTP) in association with impaired spatial learning and memory, but show largely normal locomotor activity, anxiety-like behavior, social interaction, repetitive behavior, and whole-brain excitation. These results suggest that Nav1.2 regulates hippocampal neuronal excitability, excitatory synaptic drive, LTP, and spatial learning and memory in mice."	"The Autism-Associated Gene Scn2a Contributes to Dendritic Excitability and Synaptic Function in the Prefrontal Cortex. Autism spectrum disorder (ASD) is strongly associated with de novo gene mutations. One of the most commonly affected genes is SCN2A. ASD-associated SCN2A mutations impair the encoded protein NaV1.2, a sodium channel important for action potential initiation and propagation in developing excitatory cortical neurons. The link between an axonal sodium channel and ASD, a disorder typically attributed to synaptic or transcriptional dysfunction, is unclear. Here we show that NaV1.2 is unexpectedly critical for dendritic excitability and synaptic function in mature pyramidal neurons in addition to regulating early developmental axonal excitability. NaV1.2 loss reduced action potential backpropagation into dendrites, impairing synaptic plasticity and synaptic strength, even when NaV1.2 expression was disrupted in a cell-autonomous fashion late in development. These results reveal a novel dendritic function for NaV1.2, providing insight into cellular mechanisms probably underlying circuit and behavioral dysfunction in ASD."	"Generation of two induced pluripotent stem cell lines (MUSIi011-A and MUSIi011-B) from peripheral blood T lymphocytes of a healthy individual. Activated T lymphocytes of a healthy individual were reprogrammed to induced pluripotent stem cells (iPSCs) using Sendai viral vectors. Two iPSC lines, MUSIi011-A and MUSIi011-B, were established and characterized for the expression of pluripotent markers. Both iPSC lines were able to differentiate into cells of three embryonic germ layers via embryoid body formation, exhibited normal karyotypes and were free of viral genome and transgenes at passage 15. These T lymphocyte-derived iPSCs (T-iPSCs) represent a useful starting cell source for developing next-generation immune cells such as chimeric antigen receptor (CAR)-engineered iPSC-derived T lymphocytes for the application in adoptive immunotherapy."	"Biallelic SCN2A Gene Mutation Causing Early Infantile Epileptic Encephalopathy: Case Report and Review. The voltage-gated sodium channel neuronal type 2 alpha subunit (Navα1.2) encoded by the SCN2A gene causes early infantile epileptic encephalopathy (EIEE) inherited in an autosomal dominant manner. Clinically, it has variable presentations, ranging from benign familial infantile seizures (BFIS) to severe EIEE. Diagnosis is achieved through molecular DNA testing of the SCN2A gene. Herein, we report on a 30-month-old Saudi girl who presented on the fourth day of life with EIEE, normal brain magnetic resonance imaging (MRI), normal electroencephalography (EEG), and well-controlled seizures. Genetic investigation revealed a novel homozygous missense mutation (c.5242A &gt; G; p.Asn1748Asp) in the SCN2A gene (NM_001040142.1). This is the first reported autosomal recessive inheritance of a disease allele in the SCN2A and therefore expands the molecular and inheritance spectrum of the SCN2A gene defects."	"SCN2A mutation in an infant with Ohtahara syndrome and neuroimaging findings: expanding the phenotype of neuronal migration disorders. Neuronal migration disorders (NMDs) are a heterogeneous group of conditions caused by the abnormal migration of neuroblasts in the developing brain and nervous system, resulting in severe developmental impairment, intractable epilepsy and intellectual disability (Spalice et al. 2009). To date, many genes have been identified as the leading cause of migration defects, i.e. agyria/pachygyria, polymicrogyria, heterotopias, agenesis of the corpus callosum and agenesis of the cranial nerves (Spalice et al. 2009). Here, we present a patient with early infantile epileptic encephalopathy (Ohtahara syndrome) with seizure onset on the first dayof life, severe developmental delay and an abnormal brain MRI with excessive folding of small, fused gyri and bilateral perisylvian polymicrogyria, suggestive of neuronal migration disorder. To clarify the unknown aetiology, we conducted whole-exome sequencing, which detected a de novo missense variant (c.5308A&gt;T; p.(Met1770Leu)) in the SCN2A gene. This is a report of SCN2A gene variant identified in a patient with neuronal migration disorder which could further expand the phenotypic spectrum of these genetic disorders."	"Generalized tonic seizures with autonomic signs are the hallmark of SCN8A developmental and epileptic encephalopathy. Developmental and epileptic encephalopathy (DEE) due to SCN8A gene variants is characterized by drug-resistant early onset epilepsy associated with severe intellectual disability. Different seizure types have been reported, and a sequence of autonomic manifestations such as brady-/tachycardia, irregular breathing, and cyanosis. Nevertheless, an exhaustive video-polygraphic documentation is still lacking. In this study, we reviewed the ictal electroencephalograms (EEGs) of five patients with SCN8A-DEE followed-up at the Neuroscience Department at Bambino Gesù Children's Hospital in Rome. We identified generalized tonic seizure as the major seizure type at epilepsy onset. Seizure severity could vary from subtle to marked clinical manifestations, depending from the extent and groups of muscles involved and association with autonomic modifications. We found autonomic signs in 80% of seizures in our cases, and we were able to identify a stereotyped sequence of ictal events for most of seizures. Autonomic signs occurred in rapid sequence: flushing of the face, sometimes associated with sialorrhea, bradycardia, and hypopnea appeared within the first 1-2 s. Tachycardia, polypnea, perioral cyanosis, and pallor occurred later in the course of the seizure. Generalized tonic seizures are rarely described in other genetic epileptic conditions of early infancy because of ion channel mutations, such as in DEE due to KCNQ2 or SCN2A gene mutations, where seizures are most frequently reported as focal to bilateral tonic. Therefore, generalized symmetric tonic seizures with autonomic signs can be considered a clinical hallmark for diagnosis of SCN8A-related DEE and relevant for therapeutic implications."	"Genomic backgrounds of Japanese patients with undiagnosed neurodevelopmental disorders. Recently, many genes related to neurodevelopmental disorders have been identified by high-throughput genomic analysis; however, a comprehensive understanding of the mechanism underlying neurodevelopmental disorders remains to be established. To further understand these underlying mechanisms, we performed a comprehensive genomic analysis of patients with undiagnosed neurodevelopmental disorders. Genomic analysis using next-generation sequencing with a targeted panel was performed for a total of 133 Japanese patients (male/female, 81/52) with previously undiagnosed neurodevelopmental disorders, including developmental delay (DD), intellectual disability (ID), autism spectrum disorder (ASD), and epilepsy. Genomic copy numbers were also analyzed using the eXome Hidden Markov Model (XHMM). Thirty-nine patients (29.3%) exhibited pathogenic or likely pathogenic findings with single-gene variants or chromosomal aberrations. Among them, 20 patients were presented here. Pathogenic or likely pathogenic variants were identified in 18 genes, including ACTG1, CACNA1A, CHD2, CDKL5, DNMT3A, EHMT1, GABRB3, GABRG2, GRIN2B, KCNQ3, KDM5C, MED13L, SCN2A, SHANK3, SMARCA2, STXBP1, SYNGAP1, and TBL1XR1. A diagnostic yield of 29.3% in this study was nearly the same as that previously reported from other countries. Thus, we suggest that there is no difference in genomic backgrounds in Japanese patients with undiagnosed neurodevelopmental disabilities. Although most of the patients possessed de novo variants, one of the patients showed an X-linked inheritance pattern. As X-linked recessive disorders exhibit the possibility of recurrent occurrence in the family, comprehensive molecular diagnosis is important for genetic counseling."	"The Clinical and Genetic Features of Co-occurring Epilepsy and Autism Spectrum Disorder in Chinese Children. There is still no comprehensive description of the general population regarding clinical features and genetic etiology for co-occurring epilepsy and autism spectrum disorder (ASD) in Chinese children. This study was a retrospective study of children diagnosed with epilepsy and ASD from January 1st, 2015, to May 1st, 2018, at the Children's Hospital of Fudan University. A total of 117 patients met the inclusion criteria, and 103 subjects were eligible. Among them, 88 underwent genetic testing, and 47 children (53.4%) were identified as having pathogenic or likely pathogenic variants: 39 had single gene mutations (83.0%, 39/47), and eight had copy number variants (17.0%, 8/47), with SCN1A (14.9%, 7/47) and MECP2 (10.6%, 5/47) gene mutations being the most common. Mutations in other genes encoding voltage-gated ion channels including SCN2A, CACNA1A, CACNA1H, CACNA1D, and KCNQ2 were also common, but the number of individual cases for each gene was small. Epilepsy syndrome and epilepsy-associated syndrome were more common (P = 0.014), and higher rates of poly-therapy (P = 0.01) were used in the positive genetic test group than in the negative group. There were no statistically significant differences in drug-refractory epilepsy, ASD severity, or intellectual disability between the positive genetic test group and the negative genetic group. These data strongly indicate the need for ASD screening in children with epilepsy with voltage-gated ion channel gene variants for better diagnosis and early intervention."	"A Genetic Locus on Chromosome 2q24 Predicting Peripheral Neuropathy Risk in Type 2 Diabetes: Results From the ACCORD and BARI 2D Studies. Genetic factors have been postulated to be involved in the etiology of diabetic peripheral neuropathy (DPN), but their identity remains mostly unknown. The aim of this study was to conduct a systematic search for genetic variants influencing DPN risk using two well-characterized cohorts. A genome-wide association study (GWAS) testing 6.8 million single nucleotide polymorphisms was conducted among participants of the Action to Control Cardiovascular Risk in Diabetes (ACCORD) clinical trial. Included were 4,384 white case patients with type 2 diabetes (T2D) and prevalent or incident DPN (defined as a Michigan Neuropathy Screening Instrument clinical examination score &gt;2.0) and 784 white control subjects with T2D and no evidence of DPN at baseline or during follow-up. Replication of significant loci was sought among white subjects with T2D (791 DPN-positive case subjects and 158 DPN-negative control subjects) from the Bypass Angioplasty Revascularization Investigation in Type 2 Diabetes (BARI 2D) trial. Association between significant variants and gene expression in peripheral nerves was evaluated in the Genotype-Tissue Expression (GTEx) database. A cluster of 28 SNPs on chromosome 2q24 reached GWAS significance (P &lt; 5 × 10<sup>-8</sup>) in ACCORD. The minor allele of the lead SNP (rs13417783, minor allele frequency = 0.14) decreased DPN odds by 36% (odds ratio [OR] 0.64, 95% CI 0.55-0.74, P = 1.9 × 10<sup>-9</sup>). This effect was not influenced by ACCORD treatment assignments (P for interaction = 0.6) or mediated by an association with known DPN risk factors. This locus was successfully validated in BARI 2D (OR 0.57, 95% CI 0.42-0.80, P = 9 × 10<sup>-4</sup>; summary P = 7.9 × 10<sup>-12</sup>). In GTEx, the minor, protective allele at this locus was associated with higher tibial nerve expression of an adjacent gene (SCN2A) coding for human voltage-gated sodium channel NaV1.2 (P = 9 × 10<sup>-4</sup>). To conclude, we have identified and successfully validated a previously unknown locus with a powerful protective effect on the development of DPN in T2D. These results may provide novel insights into DPN pathogenesis and point to a potential target for novel interventions."	"Assessment of Potential Clinical Role for Exome Sequencing in Schizophrenia. There is increasing evidence that certain genetic variants increase the risk of schizophrenia and other neurodevelopmental disorders. Exome sequencing has been shown to have a high diagnostic yield for developmental disability and testing for copy number variants has been advocated for schizophrenia. The diagnostic yield for exome sequencing in schizophrenia is unknown. A sample of 591 exome-sequenced schizophrenia cases and their parents were screened for disruptive and damaging variants in autosomal genes listed in the Genomics England panels for intellectual disability and other neurological disorders. Previously reported disruptive de novo variants were noted in SETD1A, POGZ, SCN2A, and ZMYND11. Although the loss of function of ZMYND11 is a recognized cause of intellectual disability, it has not previously been noted as a risk factor for schizophrenia. A damaging de novo variant of uncertain significance was noted in NRXN1. A previously reported homozygous damaging variant in BLM is predicted to cause Bloom syndrome in 1 case and 1 case was homozygous for a damaging variant in MCPH1, a result of uncertain significance. There were more than 400 disruptive and damaging variants in the target genes in cases but similar numbers were seen among untransmitted parental alleles and none appeared to be clinically significant. The diagnostic yield from exome sequencing in schizophrenia is low. Disruptive and damaging variants seen in known neuropsychiatric genes should not be automatically assumed to have an etiological role if observed in a patient with schizophrenia."	"The most recurrent monogenic disorders that overlap with the phenotype of Rett syndrome. Rett syndrome (RTT) is an early-onset neurodevelopmental disorder that is caused by mutations in the MECP2 gene; however, defects in other genes (CDKL5 and FOXG1) can lead to presentations that resemble classic RTT, although they are not completely identical. Here, we attempted to identify other monogenic disorders that share features of RTT. A total of 437 patients with a clinical diagnosis of RTT-like were studied; in 242 patients, a custom panel with 17 genes related to an RTT-like phenotype was run via a HaloPlex-Target-Enrichment-System. In the remaining 195 patients, a commercial TruSight-One-Sequencing-Panel was analysed. A total of 40 patients with clinical features of RTT had variants which affect gene function in six genes associated with other monogenic disorders. Twelve patients had variants in STXBP1, nine in TCF4, six in SCN2A, five in KCNQ2, four in MEF2C and four in SYNGAP1. Genetic studies using next generation sequencing (NGS) allowed us to study a larger number of genes associated with RTT-like simultaneously, providing a genetic diagnosis for a wider group of patients. These new findings provide the clinician with more information and clues that could help in the prevention of future symptoms or in pharmacologic therapy."	"Uncommon Treatable Genetic Epileptic Encephalopathies. NA"	"Parental mosaicism in epilepsies due to alleged de novo variants. Severe early onset epilepsies are often caused by de novo pathogenic variants. Few studies have reported the frequency of somatic mosaicism in parents of children with severe epileptic encephalopathies. Here we aim to investigate the frequency of mosaicism in the parents of children with epilepsy caused by alleged de novo variants. We tested parental genomic DNA derived from different tissues for 75 cases using targeted next-generation sequencing. Five parents (6.6%) showed mosaicism at minor allele frequencies of 0.8%-29% for the pathogenic variant detected in their offspring. Parental mosaicism was observed in the following genes: SCN1A, SCN2A, SCN8A, and STXBP1. One of the identified parents had epilepsy himself. Our results show that de novo events can occur already in parental tissue and in some cases can be detected in peripheral blood. Consequently, parents affected by low-grade mosaicism are faced with an increased recurrence risk for transmitting the pathogenic variant, compared to the overall recurrence risk for a second affected child estimated at approximately 1%. However, testing for parental somatic mosaicism will help identifying those parents who truly are at higher risk and will significantly improve genetic counseling in the respective families."	"Targeted gene sequencing in 6994 individuals with neurodevelopmental disorder with epilepsy. We aimed to gain insight into frequencies of genetic variants in genes implicated in neurodevelopmental disorder with epilepsy (NDD+E) by investigating large cohorts of patients in a diagnostic setting. We analyzed variants in NDD+E using epilepsy gene panel sequencing performed between 2013 and 2017 by two large diagnostic companies. We compared variant frequencies in 6994 panels with another 8588 recently published panels as well as exome-wide de novo variants in 1942 individuals with NDD+E and 10,937 controls. Genes with highest frequencies of ultrarare variants in NDD+E comprised SCN1A, KCNQ2, SCN2A, CDKL5, SCN8A, and STXBP1, concordant with the two other epilepsy cohorts we investigated. In only 46% of the analyzed 262 dominant and X-linked panel genes ultrarare variants in patients were reported. Among genes with contradictory evidence of association with epilepsy, CACNB4, CLCN2, EFHC1, GABRD, MAGI2, and SRPX2 showed equal frequencies in cases and controls. We show that improvement of panel design increased diagnostic yield over time, but panels still display genes with low or no diagnostic yield. With our data, we hope to improve current diagnostic NDD+E panel design and provide a resource of ultrarare variants in individuals with NDD+E to the community."	"Whole genome sequencing and variant discovery in the ASPIRE autism spectrum disorder cohort. Autism spectrum disorder (ASD) is a highly heterogeneous genetic disorder with strong evidence of ASD-association currently available only for a small number of genes. This makes it challenging to identify the underlying genetic cause in many cases of ASD, and there is a continuing need for further discovery efforts. We sequenced whole genomes of 119 deeply phenotyped ASD probands in order to identify likely pathogenic variants. We prioritized variants found in each subject by predicted damage, population frequency, literature evidence, and phenotype concordance. We used Sanger sequencing to determine the inheritance status of high-priority variants where possible. We report five novel de novo damaging variants as well as several likely damaging variants of unknown inheritance; these include two novel de novo variants in the well-established ASD gene SCN2A. The availability of rich phenotypic information and its concordance with the literature allowed us to increase our confidence in pathogenicity of discovered variants, especially in probands without parental DNA. Our results contribute to the documentation of potential pathogenic variants and their associated phenotypes in individuals with ASD."	"Impaired cortico-striatal excitatory transmission triggers epilepsy. STXBP1 and SCN2A gene mutations are observed in patients with epilepsies, although the circuit basis remains elusive. Here, we show that mice with haplodeficiency for these genes exhibit absence seizures with spike-and-wave discharges (SWDs) initiated by reduced cortical excitatory transmission into the striatum. Mice deficient for Stxbp1 or Scn2a in cortico-striatal but not cortico-thalamic neurons reproduce SWDs. In Stxbp1 haplodeficient mice, there is a reduction in excitatory transmission from the neocortex to striatal fast-spiking interneurons (FSIs). FSI activity transiently decreases at SWD onset, and pharmacological potentiation of AMPA receptors in the striatum but not in the thalamus suppresses SWDs. Furthermore, in wild-type mice, pharmacological inhibition of cortico-striatal FSI excitatory transmission triggers absence and convulsive seizures in a dose-dependent manner. These findings suggest that impaired cortico-striatal excitatory transmission is a plausible mechanism that triggers epilepsy in Stxbp1 and Scn2a haplodeficient mice."	"Use of a Dynamic Genetic Testing Approach for Childhood-Onset Epilepsy. Although genetic testing is important for bringing precision medicine to children with epilepsy, it is unclear what genetic testing strategy is best in maximizing diagnostic yield. To evaluate the diagnostic yield of an exome-based gene panel for childhood epilepsy and discuss the value of follow-up testing. A case series study was conducted on data from clinical genetic testing at Children's Hospital of Philadelphia was conducted from September 26, 2016, to January 8, 2018. Initial testing targeted 100 curated epilepsy genes for sequence and copy number analysis in 151 children with idiopathic epilepsy referred consecutively by neurologists. Additional genetic testing options were offered afterward. Clinical genetic testing. Molecular diagnostic findings. Of 151 patients (84 boys [55.6%]; median age, 4.2 years [interquartile range, 1.4-8.7 years]), 16 children (10.6%; 95% CI, 6%-16%) received a diagnosis after initial panel analysis. Parental testing for 15 probands with inconclusive results revealed de novo variants in 7 individuals (46.7%), resulting in an overall diagnostic yield of 15.3% (23 of 151; 95% CI, 9%-21%). Twelve probands with nondiagnostic panel findings were reflexed to exome sequencing, and 4 were diagnostic (33.3%; 95% CI, 6%-61%), raising the overall diagnostic yield to 17.9% (27 of 151; 95% CI, 12%-24%). The yield was highest (17 of 44 [38.6%; 95% CI, 24%-53%]) among probands with epilepsy onset in infancy (age, 1-12 months). Panel diagnostic findings involved 16 genes: SCN1A (n = 4), PRRT2 (n = 3), STXBP1 (n = 2), IQSEC2 (n = 2), ATP1A2, ATP1A3, CACNA1A, GABRA1, KCNQ2, KCNT1, SCN2A, SCN8A, DEPDC5, TPP1, PCDH19, and UBE3A (all n = 1). Exome sequencing analysis identified 4 genes: SMC1A, SETBP1, NR2F1, and TRIT1. For the remaining 124 patients, analysis of 13 additional genes implicated in epilepsy since the panel was launched in 2016 revealed promising findings in 6 patients. Exome-based targeted panels appear to enable rapid analysis of a preselected set of genes while retaining flexibility in gene content. Successive genetic workup should include parental testing of select probands with inconclusive results and reflex to whole-exome trio analysis for the remaining nondiagnostic cases. Periodic reanalysis is needed to capture information in newly identified disease genes."	"Scn2a haploinsufficient mice display a spectrum of phenotypes affecting anxiety, sociability, memory flexibility and ampakine CX516 rescues their hyperactivity. Mutations of the SCN2A gene encoding a voltage-gated sodium channel alpha-II subunit Nav1.2 are associated with neurological disorders such as epilepsy, autism spectrum disorders, intellectual disability, and schizophrenia. However, causal relationships and pathogenic mechanisms underlying these neurological defects, especially social and psychiatric features, remain to be elucidated. We investigated the behavior of mice with a conventional or conditional deletion of Scn2a in a comprehensive test battery including open field, elevated plus maze, light-dark box, three chambers, social dominance tube, resident-intruder, ultrasonic vocalization, and fear conditioning tests. We further monitored the effects of the positive allosteric modulator of AMPA receptors CX516 on these model mice. Conventional heterozygous Scn2a knockout mice (Scn2a<sup>KO/+</sup>) displayed novelty-induced exploratory hyperactivity and increased rearing. The increased vertical activity was reproduced by heterozygous inactivation of Scn2a in dorsal-telencephalic excitatory neurons but not in inhibitory neurons. Moreover, these phenotypes were rescued by treating Scn2a<sup>KO/+</sup> mice with CX516. Additionally, Scn2a<sup>KO/+</sup> mice displayed mild social behavior impairment, enhanced fear conditioning, and deficient fear extinction. Neuronal activity was intensified in the medial prefrontal cortex of Scn2a<sup>KO/+</sup> mice, with an increase in the gamma band. Scn2a<sup>KO/+</sup> mice exhibit a spectrum of phenotypes commonly observed in models of schizophrenia and autism spectrum disorder. Treatment with the CX516 ampakine, which ameliorates hyperactivity in these mice, could be a potential therapeutic strategy to rescue some of the disease phenotypes."	"Clinical and genetic spectrum of SCN2A-associated episodic ataxia. Pathogenic variants in SCN2A are associated with various neurological disorders including epilepsy, autism spectrum disorder and intellectual disability. Few reports have recently described SCN2A-associated episodic ataxia (EA). Our study identifies its broader clinical and genetic spectrum, and describes pharmacological approaches. We report 21 patients with SCN2A-associated EA, of which 9 are unpublished cases. The large majority of patients present with epileptic seizures (18/21, 86%), often starting within the first three months of life (12/18, 67%). In contrast, onset of episodic ataxia ranged from 10 months to 14 years of age. The frequency of EA episodes ranged from brief, daily events up to 1-2 episodes per year each lasting several weeks. Potential triggers include minor head traumas and sleep deprivation. Cognitive outcome is favorable in most patients with normal or mildly impaired cognitive development in 17/21 patients (81%). No clear genotype-phenotype correlations were identified in this cohort. However, two mutational hotspots were identified, i.e. 7/21 patients (33%) harbor the identical pathogenic variant p.A263V, whereas 5/21 (24%) carry pathogenic variants that affect the S4 segment and its cytoplasmic loop within the domain IV. In addition, we identified six novel pathogenic variants in SCN2A. While acetazolamide was previously reported as beneficial in SCN2A-associated EA in one case, our data show a conflicting response in 8 additional patients treated with acetazolamide: three of them profited from acetazolamide treatment, while 5/8 did not. Our study describes the heterogeneous clinical spectrum of SCN2A-associated EA, identifies two mutational hotspots and shows positive effects of acetazolamide in about 50%."	"Comparison of oxcarbazepine efficacy and MHD concentrations relative to age and BMI: Associations among ABCB1, ABCC2, UGT2B7, and SCN2A polymorphisms. Genetic polymorphisms are related to the concentration and efficacy of oxcarbazepine (OXC). 10-Hydroxycarbazepine (MHD) is the major pharmacologically active metabolite of OXC, and it exerts an antiepileptic effect. This study aimed to explore the connection between the MHD concentration and genes such as ATP-binding cassette B1 (ABCB1), ATP-binding cassette C2 (ABCC2), UDP-glucuronosyltransferase-2B7 and sodium voltage-gated channel alpha subunit 2 (SCN2A), which participate in the antiepileptic function of OXC.Total 218 Chinese epileptic patients, were stratified into different groups according to their age, body mass index (BMI) and OXC efficacy. The genotypes of 7 single nucleotide polymorphisms in all subjects were determined by polymerase chain reaction-improved multiple ligase detection reaction assay. The MHD plasma concentration was detected by high-performance liquid chromatography and then standardized through dosage and body weight.In general, the ABCC2 rs2273697 mutant (P = .026) required a significantly higher standardized MHD concentration. For age groups, carriers of the ABCC2 rs2273697 mutant showed a significantly higher standardized MHD concentration than noncarriers in the juvenile group (P = .033). In terms of BMI, a significantly higher standardized MHD concentration was found in the ABCB1 rs2032582 mutant of the normal weight group (P = .026). The SCN2A rs17183814 mutant required a significantly higher OXC maintenance (P = .014) in the low-weight group, while lower OXC maintenance dose (P = .044) and higher standardized MHD concentration (P = .007) in the overweight group.The ABCC2 rs2273697 polymorphism was significantly associated with MHD plasma concentration in the whole patient cohort and in patients stratified by different ages, this finding provides potential theoretical guidance for the rational and safe clinical use of OXC."	"MicroRNA-132 regulates total protein of Nav1.1 and Nav1.2 in the hippocampus and cortex of rat with chronic cerebral hypoperfusion. Nav1.1 and Nav1.2 are the voltage-gated sodium channel alpha subunit1 and 2, encoded by the genes of SCN1A and SCN2A. Previous studies have shown that chronic cerebral hypoperfusion (CCH) could induce neuropathological and cognitive impairment and increased total Nav1.1 and Nav1.2protein levels, yet the detailed mechanisms are not fully understood. MicroRNAs (miRNAs) are a class of small, non-coding RNAs that are involved in the regulation of dementia. miR-132 is known to play a key role in neurodegenerative disease. Here, we determined that miR-132 regulates Nav1.1 and Nav1.2 under CCH state. In this study, the expression of miR-132 was decreased in both the hippocampus and cortex of ratsfollowing CCH generated by bilateral common carotid artery occlusion (2VO). Lentiviral-mediated overexpression of miR-132 ameliorated dementia vulnerability induced by 2VO. At the molecular level, miR-132 repressed the increased protein expression of Nav1.1 and Nav1.2 in both the hippocampus and cortex induced by 2VO. MiR-132 suppressed, while AMO-miR-132 enhanced, the level of Nav1.1 and Nav1.2 in primary cultured neonatal rat neurons (NRNs) detected by both western blot analysis and immunofluorescence analysis. Results obtained by dual luciferase assay showed that overexpression of miR-132 inhibited the expression of Nav1.1 and Nav1.2 in human embryonic kidney 293 (HEK293T) cells. Additionally, binding-site mutation failed to influence Nav1.1 and Nav1.2, indicating that Nav1.1 and Nav1.2 are potential targets for miR-132. Taken together, our findings demonstrated that miR-132 protects against CCH-induced learning and memory impairments by down-regulating the expression of Nav1.1 and Nav1.2, and SCN1A and SCN2A are the target genes of miR-132."	"Identifying mutations in epilepsy genes: Impact on treatment selection. The last decade saw impressive advances not only in the discovery of gene mutations causing epilepsy, but also in unraveling the molecular mechanisms underlying the clinical manifestations of the disease. Increasing evidence is emerging that understanding these mechanisms is relevant for selection of the most appropriate treatment in the affected individual(s). The present article discusses the therapeutic implications of epilepsy-causing variants affecting a broad range of targets, from ion channels to genes controlling cellular metabolism and cell signaling pathways. Identification of a precise genetic etiology can direct physicians to (i) prescribe treatments that correct specific metabolic defects (e.g., the ketogenic diet for GLUT1 deficiency, or pyridoxine for pyridoxine-dependent epilepsies); (ii) avoid antiepileptic drugs (AEDs) that can aggravate the pathogenic defect (e.g., sodium channel blocking drugs in SCN1A-related Dravet syndrome), or (iii) select AEDs that counteract the functional disturbance caused by the gene mutation (e.g., sodium channel blockers for epilepsies due to gain-of-function SCN8A mutations). In some instances, different pathogenic variants of the same gene can have opposite functional effects, which determines whether certain treatments can be beneficial or deleterious (e.g., gain-of-function versus loss-of-function variants in SCN2A determine whether sodium channel blockers improve or worsen seizure control). There are also cases where functional disturbances caused by the gene defect may not be corrected by existing AEDs, but can be countered by medications already available in the market for other indications (e.g., memantine has been used to treat the epileptic encephalopathy caused by a specific gain-of-function GRIN2A mutation), thus making 'drug repurposing' a valuable tool for personalized epilepsy therapies. As our understanding of pathogenic mechanisms improve, opportunities arise for development of treatments targeting the specific gene defect or its consequences. Everolimus, an mTOR inhibitor approved for the treatment of focal seizures associated with tuberous sclerosis complex, is an example of a medication targeting the etiological mechanisms of the disease. Several treatments aimed at correcting specific pathogenic defects responsible for rare genetic epilepsies are currently in development, and range from traditional small molecules to novel approaches involving peptides, antisense oligonucleotides, and gene therapy."	"Exome sequencing in Crisponi/cold-induced sweating syndrome-like individuals reveals unpredicted alternative diagnoses. Crisponi/cold-induced sweating syndrome (CS/CISS) is a rare autosomal recessive disorder characterized by a complex phenotype (hyperthermia and feeding difficulties in the neonatal period, followed by scoliosis and paradoxical sweating induced by cold since early childhood) and a high neonatal lethality. CS/CISS is a genetically heterogeneous disorder caused by mutations in CRLF1 (CS/CISS1), CLCF1 (CS/CISS2) and KLHL7 (CS/CISS-like). Here, a whole exome sequencing approach in individuals with CS/CISS-like phenotype with unknown molecular defect revealed unpredicted alternative diagnoses. This approach identified putative pathogenic variations in NALCN, MAGEL2 and SCN2A. They were already found implicated in the pathogenesis of other syndromes, respectively the congenital contractures of the limbs and face, hypotonia, and developmental delay syndrome, the Schaaf-Yang syndrome, and the early infantile epileptic encephalopathy-11 syndrome. These results suggest a high neonatal phenotypic overlap among these disorders and will be very helpful for clinicians. Genetic analysis of these genes should be considered for those cases with a suspected CS/CISS during neonatal period who were tested as mutation negative in the known CS/CISS genes, because an expedited and corrected diagnosis can improve patient management and can provide a specific clinical follow-up."	"Further corroboration of distinct functional features in SCN2A variants causing intellectual disability or epileptic phenotypes. Deleterious variants in the voltage-gated sodium channel type 2 (Nav1.2) lead to a broad spectrum of phenotypes ranging from benign familial neonatal-infantile epilepsy (BFNIE), severe developmental and epileptic encephalopathy (DEE) and intellectual disability (ID) to autism spectrum disorders (ASD). Yet, the underlying mechanisms are still incompletely understood. To further elucidate the genotype-phenotype correlation of SCN2A variants we investigated the functional effects of six variants representing the phenotypic spectrum by whole-cell patch-clamp studies in transfected HEK293T cells and in-silico structural modeling. The two variants p.L1342P and p.E1803G detected in patients with early onset epileptic encephalopathy (EE) showed profound and complex changes in channel gating, whereas the BFNIE variant p.L1563V exhibited only a small gain of channel function. The three variants identified in ID patients without seizures, p.R937C, p.L611Vfs*35 and p.W1716*, did not produce measurable currents. Homology modeling of the missense variants predicted structural impairments consistent with the electrophysiological findings. Our findings support the hypothesis that complete loss-of-function variants lead to ID without seizures, small gain-of-function variants cause BFNIE and EE variants exhibit variable but profound Nav1.2 gating changes. Moreover, structural modeling was able to predict the severity of the variant impact, supporting a potential role of structural modeling as a prognostic tool. Our study on the functional consequences of SCN2A variants causing the distinct phenotypes of EE, BFNIE and ID contributes to the elucidation of mechanisms underlying the broad phenotypic variability reported for SCN2A variants."	"Novel SCN2A mutation in a family associated with juvenile-onset myoclonus: Case report. The phenotypic spectrum caused by SCN2A mutations includes benign neonatal/infantile seizures, Ohtahara syndrome, infantile spasms, West syndrome, and other unclassified epileptic phenotypes. Mutations in SCN2A have been implicated in neonatal seizure cases. Here, we described a Chinese family with 2 members having juvenile-onset myoclonus and identified a novel SCN2A point mutation within this family. The 21-year-old male proband suffered from frequent myoclonus at 11 years old with subsequent progressive ataxia. His elder maternal half-sister also experienced myoclonus. Genomic DNA of the patients was extracted from the peripheral blood cells of the proband, elder maternal half-sister, parents, and uncle of the proband. Targeted next-generation sequencing was used to screen gene mutations in the proband. The potential functional effects of mutations within SCN2A were predicted In silico analyses. Genetic testing revealed a novel SCN2A variant, c.T4820C, which contains a highly conserved amino acid substitution within segment S5 (p.V1607A). This mutation was predicted to produce a dysfunctional Nav1.2 protein by Mutation Taster and Protein Variation Effect Analyzer (PROVEAN). Genotype-phenotype correlation showed an incomplete penetrance of p.V1607A. The proband was treated by multiple antiepileptic drugs. These included carbamazepine, oxcarbazepine, valproate, and topiramate. The duration of follow up was 2 years, and the proband developed drug-resistant epilepsy. The case gives us the lesson that SCN2A mutation can contribute to juvenile-onset myoclonus. Our findings extend the spectrums of SCN2A mutations and the clinical features of patients with SCN2A mutations."	"Understanding the schizophrenia phenotype in the first patient with the full SCN2A phenotypic spectrum. The sodium voltage-gated channel α subunit 2 (SCN2A) gene encodes a subunit of sodium voltage-gated channels expressed primarily in the central nervous system that are responsible for action potential initiation and propagation in excitable cells. SCN2A mutations underlie a spectrum of distinct phenotypes, including seizure disorders, neurodevelopmental disorders, and rarer instances of episodic ataxia and schizophrenia. We report on a 38-year-old patient with adult-onset psychotic symptoms on a background of infantile-onset seizures, autistic features and episodic ataxia. Whole-exome sequencing revealed a de-novo novel SCN2A mutation (c.4966T &gt; C, p.Ser1656Pro). This and other SCN2A mutations associated with the schizophrenia phenotype overlap those seen in neurodevelopmental disorders, suggesting a common underlying mechanism. This is the first report of a patient with the entire known SCN2A phenotypic spectrum. We highlight the importance of recognizing the psychiatric phenotypes associated with SCN2A mutations and that the phenotypic spectrum is more fluid, and less categorical, than previously thought."	"Overexpression of NEUROG2 and NEUROG1 in human embryonic stem cells produces a network of excitatory and inhibitory neurons. Overexpression of mouse neurogenin ( Neurog) 2 alone or in combination with mouse Neurog2/1 in human embryonic stem cells (hESCs) and human induced pluripotent stem cells (hiPSCs) can rapidly produce high-yield excitatory neurons. Here, we report a detailed characterization of human neuronal networks induced by the expression of human NEUROG2 together with human NEUROG2/1 in hESCs using molecular, cellular, and electrophysiological measurements over 60 d after induction. Both excitatory synaptic transmission and network firing activity increased over time. Strikingly, inhibitory synaptic transmission and GABAergic cells were identified from NEUROG2/1 induced neurons (iNs). To illustrate the application of such iNs, we demonstrated that the heterozygous knock out of SCN2A, whose loss-of-function mutation is strongly implicated in autism risk, led to a dramatic reduction in network activity in the NEUROG2/1 iNs. Our findings not only extend our understanding of the NEUROG2/1-induced human neuronal network but also substantiate NEUROG2/1 iNs as an in vitro system for modeling neuronal and functional deficits on a human genetic background.-Lu, C., Shi, X., Allen, A., Baez-Nieto, D., Nikish, A., Sanjana, N. E., Pan, J. Q. Overexpression of NEUROG2 and NEUROG1 in human embryonic stem cells produces a network of excitatory and inhibitory neurons."	"SCN1A and SCN2A polymorphisms are associated with response to valproic acid in Chinese epilepsy patients. There is a large inter-individual variation in the efficacy of valproic acid (VPA) against epilepsy. The genetic polymorphism influence of sodium channels on VPA response remains a matter of debate. The aim of the study was to explore the effect of SCN1A and SCN2A gene polymorphisms on VPA response in the treatment of epilepsy among Chinese patients. A total of 354 epileptic patients with VPA treatment were genotyped for five single nucleotide polymorphisms (SNP), including SCN1A rs10188577 T&gt;C, rs2298771 T&gt;C, rs3812718 G&gt;A, and SCN2A rs2304016 A&gt;G, rs17183814 G&gt;A. A binary logistic regression analysis was performed to evaluate the association of genotype with VPA antiepileptic effects, adjusting the influence of confounding factors. Genotype distributions of all selected SNPs were consistent with the Hardy-Weinberg equilibrium in epilepsy patients. SCN1A rs3812718 and SCN2A rs2304016 were found to be significantly associated with VPA response, both in monotherapy and in VPA-based polytherapy. Patients with the rs3812718 A allele were more frequently seen in the VPA-responsive group (P &lt; 0.05), and the rs2304016 G allele was related to an increased risk of resistance to VPA therapy (P &lt; 0.05). Our study revealed that SCN1A rs3812718 and SCN2A rs2304016 polymorphisms might be markers of VPA response in Chinese epilepsy patients. ChiCTR-1800016477."	"Use of a personalized phenytoin dosing approach to manage difficult to control seizures in an infant with a SCN2A mutation. NA"	"Data on mutations and Clinical features in SCN1A or SCN2A gene. Mutations in SCN1A and SCN2A are associated with a wide spectrum of epilepsy related disorders in human. This dataset presented variants and clinical features of SCN1A and SCN2A genes. A total of 48 cases were presented, including 33 SCN1A mutations and 14 SCN2A mutations. While 22 mutations were novel in SCN1A and 11 were novel in SCN2A. The clinical features were included of gender, birth history, family history, seizure onset age, seizure types, frequency of seizures, initial and follow-up EEGs, brain MRI findings, antiepileptic drugs, prognosis and developmental data. The data can provide insights on novel mutations and different phenotypes of SCN1A and SCN2A."	"Rescue of Transgenic Alzheimer's Pathophysiology by Polymeric Cellular Prion Protein Antagonists. Cellular prion protein (PrP<sup>C</sup>) binds the scrapie conformation of PrP (PrP<sup>Sc</sup>) and oligomeric β-amyloid peptide (Aβo) to mediate transmissible spongiform encephalopathy (TSE) and Alzheimer's disease (AD), respectively. We conducted cellular and biochemical screens for compounds blocking PrP<sup>C</sup> interaction with Aβo. A polymeric degradant of an antibiotic targets Aβo binding sites on PrP<sup>C</sup> with low nanomolar affinity and prevents Aβo-induced pathophysiology. We then identified a range of negatively charged polymers with specific PrP<sup>C</sup> affinity in the low to sub-nanomolar range, from both biological (melanin) and synthetic (poly [4-styrenesulfonic acid-co-maleic acid], PSCMA) origin. Association of PSCMA with PrP<sup>C</sup> prevents Aβo/PrP<sup>C</sup>-hydrogel formation, blocks Aβo binding to neurons, and abrogates PrP<sup>Sc</sup> production by ScN2a cells. We show that oral PSCMA yields effective brain concentrations and rescues APPswe/PS1ΔE9 transgenic mice from AD-related synapse loss and memory deficits. Thus, an orally active PrP<sup>C</sup>-directed polymeric agent provides a potential therapeutic approach to address neurodegeneration in AD and TSE."	"The possible effect of SCN1A and SCN2A genetic variants on carbamazepine response among Khyber Pakhtunkhwa epileptic patients, Pakistan. SCN1A (3184 A&gt;G) and SCN2A (56G&gt;A) gene encodes α subunit of the neuronal voltage-gated sodium channel, which is a target for carbamazepine (CBZ). Recent studies have demonstrated that polymorphism of SCN1A (3184 A&gt;G) and SCN2A (56G&gt;A) was associated with use of CBZ. However, it has not been determined whether the polymorphism affects CBZ or other antiepileptic drug responsiveness. The aim of the study was to establish whether the SCN1A (3184 A&gt;G) and SCN2A (56G&gt;A) polymorphisms of the SCN1A and SCN2A genes affect responsiveness to CBZ. SCN1A (3184 A&gt;G) and SCN2A (56G&gt;A) gene polymorphisms were genotyped in 93 Khyber Pakhtunkhwa epileptic patients treated with CBZ. The association between CBZ responsiveness and the polymorphism was estimated by adjusting for clinical factors affecting the outcome of therapy. The number of seizure episodes was documented at baseline, and the therapy of each of the 93 patients was followed up. The plasma level of CBZ was determined using reverse-phase high-performance liquid chromatography. SCN1A and SCN2A genes were genotyped using RFLP. Data were analyzed using Graph Pad Prism 6. Mean age of the patients was 18.6±9.3 at the 3rd month and 18.7±9.5 at the 6th month. The baseline dose of CBZ was 468±19.8 mg/d and titrated at the rate of 48±1.4 and 4.0±0.2 mg/d. The difference in plasma level of CBZ was significant (P=0.004) between 3rd and 6th month among different genotypes of SCN1A gene in nonresponder and responder patients. At the 3rd month of the therapy, the poor responders were more likely (P=0.003 and P=0.01) to have variants (3184AG and 3184GG) of SCN1A gene. Similarly, poor responsders were more likely (P=0.0007 and P=0.001) to have variant genotypes (56GA, 56AA) of SCN2A gene at the 3rd month of the therapy. This study demonstrated a significant association between the SCN1A (3184 AG and GG) and SCN2A (56GA and AA) genotype with CBZ-nonresponsive epilepsy."	"Replicated associations of FADS1, MAD1L1, and a rare variant at 10q26.13 with bipolar disorder in Chinese population. Genetic analyses of psychiatric illnesses, such as bipolar disorder (BPD), have revealed essential information regarding the underlying pathological mechanisms. While such studies in populations of European ancestry have achieved prominent success, understanding the genetic risk factors of these illnesses (especially BPD) in Chinese population remains an urgent task. Given the lack of genome-wide association study (GWAS) of BPD in Chinese population from Mainland China, replicating the previously reported GWAS hits in distinct populations will provide valuable information for future GWAS analysis in Han Chinese. In the present study, we have recruited 1146 BPD cases and 1956 controls from Mainland China for genetic analyses, as well as 65 Han Chinese brain amygdala tissues for mRNA expression analyses. Using this clinical sample, one of the largest Han Chinese BPD samples till now, we have conducted replication analyses of 21 single nucleotide polymorphisms (SNPs) extracted from previous GWAS of distinct populations. Among the 21 tested SNPs, 16 showed the same direction of allelic effects in our samples compared with previous studies; 6 SNPs achieved nominal significance (p &lt; 0.05) at one-tailed test, and 2 additional SNPs showed marginal significance (p &lt; 0.10). Aside from replicating previously reported BPD risk SNPs, we herein also report several intriguing findings: (1) the SNP rs174576 was associated with BPD in our Chinese sample and in the overall global meta-analysis, and was significantly correlated with FADS1 mRNA in diverse public RNA-seq datasets as well as our in house collected Chinese amygdala samples; (2) two (partially) independent SNPs in MAD1L1 were both significantly associated with BPD in our Chinese sample, which was also supported by haplotype analysis; (3) a rare SNP rs78089757 in 10q26.13 region was a genome-wide significant variant for BPD in East Asians, and this SNP was near monomorphic in Europeans. In sum, these results confirmed several significant BPD risk genes. We hope this Chinese BPD case-control sample and the current brain amygdala tissues (with continuous increasing sample size in the near future) will provide helpful resources in elucidating the genetic and molecular basis of BPD in this major world population."	"Ketogenic diet as a successful early treatment modality for SCN2A mutation. SCN2A mutations have been described in a very broad spectrum of clinical phenotypes including benign (familial) neonatal/infantile seizures and early infantile epileptic encephalopathies (EIEE) as Ohtahara syndrome (OS), Dravet syndrome (DS), epilepsy of infancy with migrating focal seizures and West syndrome (WS). Treatment modalities for epilepsy caused by SCN2A mutations mainly consist of sodium channel blockers but ketogenic diet (KD) is also considered as an option of treatment for intractible seizures caused by SCN2A mutations. Because of the wide nature of the heterogeneity of mutations related to SCN2A gene, the clinical phenotypes vary in severity and treatment response to KD has been reported to be controversial. We present a patient diagnosed with OS associated with a novel SCN2A mutation (c.408G &gt; A, p.Met136lle; OMIM®: 182390) who had a complete resolution of seizures and EEG abnormalities with KD commenced at 39 days of age. As far as we are aware our case is the youngest patient with SCN2A mutation treated with KD with complete resolution of epilepsy at an early age and has been seizure free of antiepileptic medications for a long duration."	"Decrease of Protease-Resistant PrP<sup>Sc</sup> Level in ScN2a Cells by Polyornithine and Polyhistidine. Based on previous studies reporting the anti-prion activity of poly-L-lysine and poly-L-arginine, we investigated cationic poly-L-ornithine (PLO), poly-L-histidine (PLH), anionic poly-L-glutamic acid (PLE) and uncharged poly-L-threonine (PLT) in cultured cells chronically infected by prions to determine their anti-prion efficacy. While PLE and PLT did not alter the level of PrP<sup>Sc</sup>, PLO and PLH exhibited potent PrP<sup>Sc</sup> inhibition in ScN2a cells. These results suggest that the anti-prion activity of poly-basic amino acids is correlated with the cationicity of their functional groups. Comparison of anti-prion activity of PLO and PLH proposes that the anti-prion activity of poly-basic amino acids is associated with their acidic cellular compartments."	"Complete Disruption of Autism-Susceptibility Genes by Gene Editing Predominantly Reduces Functional Connectivity of Isogenic Human Neurons. Autism spectrum disorder (ASD) is phenotypically and genetically heterogeneous. We present a CRISPR gene editing strategy to insert a protein tag and premature termination sites creating an induced pluripotent stem cell (iPSC) knockout resource for functional studies of ten ASD-relevant genes (AFF2/FMR2, ANOS1, ASTN2, ATRX, CACNA1C, CHD8, DLGAP2, KCNQ2, SCN2A, TENM1). Neurogenin 2 (NGN2)-directed induction of iPSCs allowed production of excitatory neurons, and mutant proteins were not detectable. RNA sequencing revealed convergence of several neuronal networks. Using both patch-clamp and multi-electrode array approaches, the electrophysiological deficits measured were distinct for different mutations. However, they culminated in a consistent reduction in synaptic activity, including reduced spontaneous excitatory postsynaptic current frequencies in AFF2/FMR2-, ASTN2-, ATRX-, KCNQ2-, and SCN2A-null neurons. Despite ASD susceptibility genes belonging to different gene ontologies, isogenic stem cell resources can reveal common functional phenotypes, such as reduced functional connectivity."	"Catatonia Associated With a SCN2A-Related Disorder in a 4-Year-Old Child. Catatonia is a rare, underdiagnosed syndrome in children. We report the case of a 4-year-old child admitted for recent social withdrawal alternating with psychomotor excitement, verbigeration, and a loss of toilet readiness. He had a history of neonatal seizures, had been stabilized with vigabatrin, and was seizure free without treatment for several months. The pediatric and psychiatric examination revealed motor stereotypes, mannerism, bilateral mydriasis, and visual hallucinations. Laboratory and brain imaging explorations were initially negative. Catatonic symptoms, as measured with the Pediatric Catatonia Rating Scale, significantly decreased after introducing lorazepam, the first-line recommended treatment of this condition. On the basis of the neonatal seizure history, complementary genetic investigations were performed and revealed a mutation in the SCN2A gene, which encodes the voltage-gated sodium channel Nav1.2. Catatonic symptoms progressively disappeared after reintroducing vigabatrin. At the syndromic level, catatonia in young children appears responsive to high-dose lorazepam and is well monitored by using the Pediatric Catatonia Rating Scale. This case reveals the need for wide-ranging explorations in early-onset catatonia because specific targeted treatments might be available."	"Lacosamide for SCN2A-related intractable neonatal and infantile seizures. Voltage-gated sodium channel alpha subunit 2 (SCN2A) gene mutations are associated with neonatal seizures and a wide range of epilepsy syndromes. Previous reports suggest that traditional sodium channel blockers (SCBs) such as phenytoin, carbamazepine, and lamotrigine have a beneficial effect on SCN2A-related neonatal seizures, as they counteract the gain-of-function effect of mutated Nav1.2 channels. Additionally, SCBs are beneficial against other sodium and potassium channel-related neonatal seizures. There are, however, few reports describing the effect of the new SCB lacosamide against neonatal and infantile epileptic seizures. We report herein two neonates with intractable neonatal seizures with SCN2A pathogenic missense variants. Both infants showed temporary seizure relief following IV administrations of phenytoin, but were resistant to a combination of antiepileptic drugs, while complete seizure control was achieved following lacosamide administration. We suggest that SCBs, e.g. phenytoin, should be introduced early for refractory neonatal seizures of non-lesional and presumably genetic origin. If any beneficial response to a SCB is noted, this should prompt an initiation of additional SCBs. New clinical trials will provide data on the efficacy and safety of the new SCB lacosamide for genetic neonatal seizures and perhaps neonatal seizures in general."	"Whole-Exome Sequencing Implicates SCN2A in Episodic Ataxia, but Multiple Ion Channel Variants May Contribute to Phenotypic Complexity. Although the clinical use of targeted gene sequencing-based diagnostics is valuable, whole-exome sequencing has also emerged as a successful diagnostic tool in molecular genetics laboratories worldwide. Molecular genetic tests for episodic ataxia type 2 (EA2) usually target only the specific calcium channel gene (CACNA1A) that is known to cause EA2. In cases where no mutations are identified in the CACNA1A gene, it is important to identify the causal gene so that more effective treatment can be prioritized for patients. Here we present a case of a proband with a complex episodic ataxias (EA)/seizure phenotype with an EA-affected father; and an unaffected mother, all negative for CACNA1A gene mutations. The trio was studied by whole-exome sequencing to identify candidate genes responsible for causing the complex EA/seizure phenotype. Three rare or novel variants in Sodium channel α2-subunit; SCN2A (c.3973G&gt;T: p.Val1325Phe), Potassium channel, Kv3.2; KCNC2 (c.1006T&gt;C: p.Ser336Pro) and Sodium channel Nav1.6; SCN8A (c.3421C&gt;A: p.Pro1141Thr) genes were found in the proband. While the SCN2A variant is likely to be causal for episodic ataxia, each variant may potentially contribute to the phenotypes observed in this family. This study highlights that a major challenge of using whole-exome/genome sequencing is the identification of the unique causative mutation that is associated with complex disease."	"A Bioluminescent Cell Assay to Quantify Prion Protein Dimerization. The prion protein (PrP) is a cell surface protein that in disease misfolds and becomes infectious causing Creutzfeldt-Jakob disease in humans, scrapie in sheep, and chronic wasting disease in deer and elk. Little is known regarding the dimerization of PrP and its role in disease. We developed a bioluminescent prion assay (BPA) to quantify PrP dimerization by bimolecular complementation of split Gaussia luciferase (GLuc) halves that are each fused to PrP. Fusion constructs between PrP and N- and C-terminal GLuc halves were expressed on the surface of RK13 cells (RK13-DC cells) and dimerized to yield a bioluminescent signal that was decreased in the presence of eight different antibodies to PrP. Dimerization of PrP was independent of divalent cations and was induced under stress. Challenge of RK13-DC cells with seven different prion strains did not lead to detectable infection but was measurable by bioluminescence. Finally, we used BPA to screen a compound library for compounds inhibiting PrP dimerization. One of the most potent compounds to inhibit PrP dimerization was JTC-801, which also inhibited prion replication in RML-infected ScN2a and SMB cells with an EC50 of 370 nM and 220 nM, respectively. We show here that BPA is a versatile tool to study prion biology and to identify anti-prion compounds."	"A simple in vitro assay for assessing the efficacy, mechanisms and kinetics of anti-prion fibril compounds. Prion diseases are caused by the conversion of normal cellular prion proteins (PrP) into lethal prion aggregates. These prion aggregates are composed of proteinase K (PK) resistant fibrils and comparatively PK-sensitive oligomers. Currently there are no anti-prion pharmaceuticals available to treat or prevent prion disease. Methods of discovering anti-prion molecules rely primarily on relatively complex cell-based, tissue slice or animal-model assays that measure the effects of small molecules on the formation of PK-resistant prion fibrils. These assays are difficult to perform and do not detect the compounds that directly inhibit oligomer formation or alter prion conversion kinetics. We have developed a simple cell-free method to characterize the impact of anti-prion fibril compounds on both the oligomer and fibril formation. In particular, this assay uses shaking-induced conversion (ShIC) of recombinant PrP in a 96-well format and resolution enhanced native acidic gel electrophoresis (RENAGE) to generate, assess and detect PrP fibrils in a high throughput fashion. The end-point PrP fibrils from this assay can be further characterized by PK analysis and negative stain transmission electron microscopy (TEM). This cell-free, gel-based assay generates metrics to assess anti-prion fibril efficacy and kinetics. To demonstrate its utility, we characterized the action of seven well-known anti-prion molecules: Congo red, curcumin, GN8, quinacrine, chloropromazine, tetracycline, and TUDCA (taurourspdeoxycholic acid), as well as four suspected anti-prion compounds: trans-resveratrol, rosmarinic acid, myricetin and ferulic acid. These findings suggest that this in vitro assay could be useful in identifying and comprehensively assessing novel anti-prion fibril compounds. Abbreviations: PrP, prion protein; PK, proteinase K; ShIC, shaking-induced conversion; RENAGE, resolution enhanced native acidic gel electrophoresis; TEM, transmission electron microscopy; TUDCA, taurourspdeoxycholic acid; BSE, bovine spongiform encephalopathy; CWD, chronic wasting disease; CJD, Creutzfeldt Jakob disease; GSS, Gerstmann-Sträussler-Scheinker syndrome; FFI, fatal familial insomnia; PrP<sup>c</sup>, cellular prion protein; recPrP<sup>C</sup>, recombinant monomeric prion protein; PrP<sup>Sc</sup>, infectious particle of misfolded prion protein; RT-QuIC, real-time quaking-induced conversion; PMCA, Protein Misfolding Cyclic Amplification; LPS, lipopolysaccharide; EGCG, epigallocatechin gallate; GN8, 2-pyrrolidin-1-yl-N-[4-[4-(2-pyrrolidin-1-yl-acetylamino)-benzyl]-phenyl]-acetamide; DMSO, dimethyl sulfoxide; ScN2A, scrapie infected neuroblastoma cells; IC50, inhibitory concentration for 50% reduction; recMoPrP <sup>23-231</sup>, recombinant full-length mouse prion protein residues 23-231; EDTA; PICUP, photo-induced cross-linking of unmodified protein; BSA, bovine serum albumin;; PMSF, phenylmethanesulfonyl fluoride."	"Successful Adaptation of Targeted Gene Panel Next-Generation Sequencing in Regional Hospital in Hong Kong: Genomic Diagnosis of SCN2A-Related Seizure Disorder. NA"	"Novel and de novo mutations in pediatric refractory epilepsy. Pediatric refractory epilepsy is a broad phenotypic spectrum with great genetic heterogeneity. Next-generation sequencing (NGS) combined with Sanger sequencing could help to understand the genetic diversity and underlying disease mechanisms in pediatric epilepsy. Here, we report sequencing results from a cohort of 172 refractory epilepsy patients aged 0-14 years. The pathogenicity of identified variants was evaluated in accordance with the American College of Medical Genetics and Genomics (ACMG) criteria. We identified 43 pathogenic or likely pathogenic variants in 40 patients (23.3%). Among these variants, 74.4% mutations (32/43) were de novo and 60.5% mutations (26/43) were novel. Patients with onset age of seizures ≤12 months had higher yields of deleterious variants compared to those with onset age of seizures &gt; 12 months (P = 0.006). Variants in ion channel genes accounted for the greatest functional gene category (55.8%), with SCN1A coming first (16/43). 81.25% (13/16) of SCN1A mutations were de novo and 68.8% (11/16) were novel in Dravet syndrome. Pathogenic or likely pathogenic variants were found in the KCNQ2, STXBP1, SCN2A genes in Ohtahara syndrome. Novel deleterious variants were also found in West syndrome, Doose syndrome and glucose transporter type 1 deficiency syndrome patients. One de novo MECP2 mutation were found in a Rett syndrome patient. TSC1/TSC2 variants were found in 60% patients with tuberous sclerosis complex patients. Other novel mutations detected in unclassified epilepsy patients involve the SCN8A, CACNA1A, GABRB3, GABRA1, IQSEC2, TSC1, VRK2, ATP1A2, PCDH19, SLC9A6 and CHD2 genes. Our study provides novel insights into the genetic origins of pediatric epilepsy and represents a starting-point for further investigations into the molecular pathophysiology of pediatric epilepsy that could eventually lead to better treatments."	"Genotype and phenotype analysis using an epilepsy-associated gene panel in Chinese pediatric epilepsy patients. Epilepsy is a common and genetically heterogeneous disorder among children. Advances in next-generation sequencing have revealed that numerous epilepsy genes, helped us improve the understanding of mechanisms underlying epileptogenesis, and guided the development of treatments. We identified 39 candidate variants in 21 genes, including 37 that were pathogenic or likely pathogenic variants according to the American College of Medical Genetics and Genomics scoring system and two variants of uncertain significance that were considered causative after they were associated with clinical characteristics. Thirty were de novo variants (76.9%), and 20 variants had not previously been reported (51.3%). We obtained a diagnosis in 39 of the 141 probands (27.7%). The most frequently mutated gene was SCN1A; KCNQ2, KCNT1, PCDH19, STXBP1, SCN2A, TSC2, and PRRT2 were mutated in more than one individual; ANKRD11, CDKL5, DCX, DEPDC5, GABRB3, GRIN2A, IQSEC2, KCNA2, KCNB1, KCNJ6, TSC1, SCN9A, and SCN1B were mutated in a single individual. In addition, we detected a nonsense variant in a candidate gene KCND1 and considered it as a new candidate epilepsy gene, which needed further functional study. Consequently, large number of unreported variants were detected, diverse phenotypes were associated with known epilepsy genes. Changes in clinical management beyond genetic counseling were suggested."	"Nav1.2 haplodeficiency in excitatory neurons causes absence-like seizures in mice. Mutations in the SCN2A gene encoding a voltage-gated sodium channel Nav1.2 are associated with epilepsies, intellectual disability, and autism. SCN2A gain-of-function mutations cause early-onset severe epilepsies, while loss-of-function mutations cause autism with milder and/or later-onset epilepsies. Here we show that both heterozygous Scn2a-knockout and knock-in mice harboring a patient-derived nonsense mutation exhibit ethosuximide-sensitive absence-like seizures associated with spike-and-wave discharges at adult stages. Unexpectedly, identical seizures are reproduced and even more prominent in mice with heterozygous Scn2a deletion specifically in dorsal-telencephalic (e.g., neocortical and hippocampal) excitatory neurons, but are undetected in mice with selective Scn2a deletion in inhibitory neurons. In adult cerebral cortex of wild-type mice, most Nav1.2 is expressed in excitatory neurons with a steady increase and redistribution from proximal (i.e., axon initial segments) to distal axons. These results indicate a pivotal role of Nav1.2 haplodeficiency in excitatory neurons in epilepsies of patients with SCN2A loss-of-function mutations."	"Dominant SCN2A Mutation Causes Familial Episodic Ataxia and Impairment of Speech Development. Mutations in SCN2A are associated with a heterogeneous clinical spectrum including epilepsy and autism. Here, we have identified a peculiar phenotype associated with vaccination related exacerbations of ataxia. We report the first family with three individuals affected by SCN2A-associated episodic ataxia (EA) with impaired speech development. The index patient manifested his first episode of subacute cerebellar ataxia at the age of 12 months, 3 weeks after vaccinations for measles, mumps, rubella, and varicella. Cranial magnetic resonance imaging showed a lesion of the left cerebellar hemisphere, which was first considered as a potential cause of the ataxia. The patient fully recovered within 3 weeks, but developed three very similar episodes of transient ataxia within the following 24 months. Whole exome sequencing of the index patient revealed a heterozygous autosomal-dominant mutation in SCN2A (NM_021007, c.4949T &gt; C; p.L1650P), which was confirmed in the likewise affected mother, and was then also identified in the younger brother who developed the first episode of ataxia. We hereby extend the recently described spectrum of SCN2A-associated neurologic disorders, emphasizing that SCN2A mutations should also be considered in familial cases of EA. Coincidental imaging findings or other associated events such as immunizations should not protract genetic investigations."	"Relationship of electrophysiological dysfunction and clinical severity in SCN2A-related epilepsies. Variants in the SCN2A gene cause a broad spectrum of epilepsy syndromes of variable severity including benign neonatal-infantile epilepsy (BFNIE), developmental and epileptic encephalopathies (DEE), and other neuropsychiatric disorders. Here, we studied three newly identified variants, which caused distinct phenotypes observed in nine affected individuals of three families, including BFNIE, and DEE with intractable neonatal seizures. Whole cell patch-clamp recordings of transfected tsA201 cells disclosed an increased current density and an increased subthreshold sodium inward current upon an action potential stimulus (p.(Lys908Glu)), a hyperpolarizing shift of the activation curve (p.(Val208Glu) and p.(Thr773Ile)), and an increased persistent current (p.(Thr773Ile)). To evaluate genotype-phenotype correlations, we next developed scoring systems for both the extent of the electrophysiological dysfunction and the severity of the clinical phenotype and applied those to 21 previously and newly functionally characterized SCN2A variants. All inherited variants were associated with a mild clinical phenotype and a lower electrophysiological score compared to those occurring de novo and causing severe phenotypes. Our results thus reveal a nice correlation between the extent of channel dysfunction and the clinical severity."	"Heterozygous deletion of SCN2A and SCN3A in a patient with autism spectrum disorder and Tourette syndrome: a case report. Mutations in voltage-gated sodium channel (SCN) genes are supposed to be of importance in the etiology of psychiatric and neurological diseases, in particular in the etiology of seizures. Previous studies report a potential susceptibility region at the chromosomal locus 2q including SCN1A, SCN2A and SCN3A genes for autism spectrum disorder (ASD). To date, there is no previous description of a patient with comorbid ASD and Tourette syndrome showing a deletion containing SCN2A and SCN3A. We present the unique complex case of a 28-year-old male patient suffering from developmental retardation and exhibiting a range of behavioral traits since birth. He received the diagnoses of ASD (in early childhood) and of Tourette syndrome (in adulthood) according to ICD-10 and DSM-5 criteria. Investigations of underlying genetic factors yielded a heterozygous microdeletion of approximately 719 kb at 2q24.3 leading to a deletion encompassing the five genes SCN2A (exon 1 to intron 14-15), SCN3A, GRB14 (exon 1 to intron 2-3), COBLL1 and SCL38A11. We discuss the association of SCN2A, SCN3A, GRB14, COBLL1 and SCL38A11 deletions with ASD and Tourette syndrome and possible implications for treatment."	"Nonsyndromic intellectual disability with novel heterozygous SCN2A mutation and epilepsy. SCN2A mutations are primarily associated with a variety of epilepsy syndromes. Recently, SCN2A has been reported as a gene responsible for nonsyndromic intellectual disability or autism spectrum disorders. Here, we present a case of a 12-year-old girl with nonsyndromic intellectual disability who exhibited a heterozygous de novo missense mutation in SCN2A. She developed seizures during the course of illness. This case suggests that the phenotype of patients with heterozygous SCN2A mutations can be variable."	"The Efficacy of Ketogenic Diet for Specific Genetic Mutation in Developmental and Epileptic Encephalopathy. Objectives: Pathogenic mutations in developmental and epileptic encephalopathy (DEE) are increasingly being discovered. However, little has been known about effective targeted treatments for this rare disorder. Here, we assessed the efficacy of ketogenic diet (KD) according to the genes responsible for DEE. Methods: We retrospectively evaluated the data from 333 patients who underwent a targeted next-generation sequencing panel for DEE, 155 of whom had tried KD. Patients showing ≥90% seizure reduction from baseline were considered responders. The KD efficacy was examined at 3, 6, and 12 months after initiation. Patients were divided into those with an identified pathogenic mutation (n = 73) and those without (n = 82). The KD efficacy in patients with each identified pathogenic mutation was compared with that in patients without identified genetic mutations. Results: The responder rate to KD in the patients with identified pathogenic mutations (n = 73) was 52.1, 49.3, and 43.8% at 3, 6, and 12 months after initiation, respectively. Patients with mutations in SCN1A (n = 18, responder rate = 77.8%, p = 0.001), KCNQ2 (n = 6, responder rate = 83.3%, p = 0.022), STXBP1 (n = 4, responder rate = 100.0%, p = 0.015), and SCN2A (n = 3, responder rate = 100.0%, p = 0.041) showed significantly better responses to KD than patients without identified genetic mutations. Patients with CDKL5 encephalopathy (n = 10, responder rate = 0.0%, p = 0.031) showed significantly less-favorable responses to KD. Conclusions: The responder rate to KD remained consistent after KD in DEE patients with specific pathogenic mutations. KD is effective in patients with DEE with genetic etiology, especially in patients with SCN1A, KCNQ2, STXBP1, and SCN2A mutations, but is less effective in patients with CDKL5 mutations. Therefore, identifying the causative gene can help predict the efficacy of KD in patients with DEE."	"Effectiveness of whole exome sequencing in unsolved patients with a clinical suspicion of a mitochondrial disorder in Estonia. Reaching a genetic diagnosis of mitochondrial disorders (MDs) is challenging due to their broad phenotypic and genotypic heterogeneity. However, there is growing evidence that the use of whole exome sequencing (WES) for diagnosing patients with a clinical suspicion of an MD is effective (39-60%). We aimed to study the effectiveness of WES in clinical practice in Estonia, in patients with an unsolved, but suspected MD. We also show our first results of mtDNA analysis obtained from standard WES reads. Retrospective cases were selected from a database of 181 patients whose fibroblast cell cultures had been stored from 2003 to 2013. Prospective cases were selected during the period of 2014-2016 from patients referred to a clinical geneticist in whom an MD was suspected. We scored each patient according to the mitochondrial disease criteria (MDC) (Morava et al., 2006) after re-evaluation of their clinical data, and then performed WES analysis. A total of 28 patients were selected to the study group. A disease-causing variant was found in 16 patients (57%) using WES. An MD was diagnosed in four patients (14%), with variants in the SLC25A4, POLG, SPATA5, and NDUFB11 genes. Other variants found were associated with a neuromuscular disease (SMN1, MYH2, and LMNA genes), neurodegenerative disorder (TSPOAP1, CACNA1A, ALS2, and SCN2A genes), multisystemic disease (EPG5, NKX1-2, ATRX, and ABCC6 genes), and one in an isolated cardiomyopathy causing gene (MYBPC3). The mtDNA point mutation was found in the MT-ATP6 gene of one patient upon mtDNA analysis. The diagnostic yield of WES in our cohort was 57%, proving to be a very good effectiveness. However, MDs were found in only 14% of the patients. We suggest WES analysis as a first-tier method in clinical genetic practice for children with any multisystem, neurological, and/or neuromuscular problem, as nuclear DNA variants are more common in children with MDs; a large number of patients harbor disease-causing variants in genes other than the mitochondria-related ones, and the clinical presentation might not always point towards an MD. We have also successfully conducted analysis of mtDNA from standard WES reads, providing further evidence that this method could be routinely used in the future."	"[Phenotype study of SCN2A gene related epilepsy]. Objective: To summarize the phenotype of epileptic children with SCN2A mutations. Methods: Epileptic patients who were treated in the Pediatric Department of Peking University First Hospital from September 2006 to October 2017 and detected with SCN2A mutations by targeted next-generation sequencing were enrolled. Clinical manifestations of all patients were analyzed retrospectively. Results: A total of 21 patients (16 boys and 5 girls) with SCN2A mutations were collected. Twenty-one SCN2A mutations were identified. Ten patients had mutations inherited from one of their parents and 11 patients had de novo mutations. The age of epilepsy onset was from 2 days to 2 years and 6 months: six patients with seizure onset in neonates (29%) , six patients with seizure onset between 1 month and 3 months of age (29%), three patients with seizure onset between 4 months and 6 months of age, two patients with seizure onset between 7 months and one year of age, and four patients with seizure onset beyond one year of age. Multiple seizure types were observed. The focal seizure was the most common seizure type which was observed in 18 patients (86%) . Spasm seizure was observed in 6 patients (29%) . Other seizure types were rare. In 19 patients, seizures manifested in clusters (90%) . In 3 patients, seizures manifested fever-sensitive. Nine of ten patients with inherited SCN2A mutations had normal development. However, all patients with de novo SCN2A mutations had mild or severer development delay. In 21 patients with SCN2A mutations, five were diagnosed with benign familial infantile epilepsy, 3 with benign familial neonatal-infantile epilepsy, 3 with Ohtahara syndrome, 3 with West syndrome, 2 with encephalopathy with early infantile onset epilepsy, one with febrile seizures plus, one with Dravet syndrome, one with encephalopathy with childhood-onset epilepsy, one with autism with epilepsy and one with intellectual disability with epilepsy. Conclusions: The clinical features of patients with SCN2A mutations include that main seizure onset is the neonate and early infancy, and the main seizure type is the focal seizure, manifested in clusters. The large spectrum of SCN2A-related epilepsy, which not only includes epilepsy with a comparatively favorable prognosis, but also epileptic encephalopathy. De novo mutations often lead to severe phenotype with development delay. 目的: 总结SCN2A基因突变导致的癫痫表型谱。 方法: 收集2006年9月至2017年10月在北京大学第一医院儿科诊治的癫痫患儿,且通过靶向捕获二代测序发现SCN2A基因突变阳性者,回顾性总结和分析患儿临床特点。 结果: 共收集21例SCN2A基因突变阳性的患儿,其中男16例、女5例,检测到21种不同的突变类型,其中11例为新生突变,10例为遗传性突变。21例患儿的癫痫发作起病年龄为2日龄~2岁6月龄,其中新生儿期起病6例(29%),1~3月龄起病6例(29%),4~6月龄起病3例,7月龄~1岁起病2例,1岁后起病4例;表现为多种发作类型,其中局灶性发作18例(86%),痉挛发作6例(29%),其他发作类型少见;19例患儿发作有丛集性的特点(90%);3例患儿发作有热敏感。10例携带SCN2A基因遗传性突变的患儿中,9例智力、运动发育正常;11例携带SCN2A基因新生突变的患儿均有不同程度的智力、运动发育落后。21例患儿包括多种癫痫表型,其中良性家族性婴儿癫痫5例,良性家族性新生儿-婴儿癫痫3例,大田原综合征3例,婴儿痉挛症3例,不能分类的早发癫痫性脑病2例,热性惊厥附加症1例,Dravet综合征1例,儿童期起病的癫痫性脑病1例,孤独症共患癫痫1例,发育落后共患癫痫1例。 结论: SCN2A基因突变导致的癫痫多在新生儿期或婴儿早期起病,发作具有丛集性的特点,局灶性发作最常见;癫痫表型谱广,既可表现为良性预后的癫痫,也可表现为癫痫性脑病,新生突变的患儿表型重,常伴智力、运动发育落后。."	"Genetic etiologies of the electrical status epilepticus during slow wave sleep: systematic review. Electrical status epilepticus during slow-wave sleep (ESESS) which is also known as continuous spike-wave of slow sleep (CSWSS) is type of electroencephalographic (EEG) pattern which is seen in ESESS/CSWSS/epilepsy aphasia spectrum. This EEG pattern can occur alone or with other syndromes. Its etiology is not clear, however, brain malformations, immune disorders, and genetic etiologies are suspected to contribute. We aimed to perform a systematic review of all genetic etiologies which have been reported to associate with ESESS/CSWSS/epilepsy-aphasia spectrum. We further aimed to identify the common underlying pathway which can explain it. To our knowledge, there is no available systematic review of genetic etiologies of ESESS/CSWSS/epilepsy-aphasia spectrum. MEDLINE, EMBASE, PubMed and Cochrane review database were searched, using terms specific to electrical status epilepticus during sleep or continuous spike-wave discharges during slow sleep or epilepsy-aphasia spectrum and of studies of genetic etiologies. These included monogenic mutations and copy number variations (CNVs). For each suspected dosage-sensitive gene, further studies were performed through OMIM and PubMed database. Twenty-six studies out of the 136 identified studies satisfied our inclusion criteria. I51 cases were identified among those 26 studies. 16 studies reported 11 monogenic mutations: SCN2A (N = 6), NHE6/SLC9A6 (N = 1), DRPLA/ ATN1 (N = 1), Neuroserpin/SRPX2 (N = 1), OPA3 (N = 1), KCNQ2 (N = 2), KCNA2 (N = 5), GRIN2A (N = 34), CNKSR2 (N = 2), SLC6A1 (N = 2) and KCNB1 (N = 5). 10 studies reported 89 CNVs including 9 recurrent ones: Xp22.12 deletion encompassing CNKSR2 (N = 6), 16p13 deletion encompassing GRIN2A (N = 4), 15q11.2-13.1 duplication (N = 15), 3q29 duplication (N = 11), 11p13 duplication (N = 2), 10q21.3 deletion (N = 2), 3q25 deletion (N = 2), 8p23.3 deletion (N = 2) and 9p24.2 (N = 2). 68 of the reported genetic etiologies including monogenic mutations and CNVs were detected in patients with ESESS/CSWSS/epilepsy aphasia spectrum solely. The most common underlying pathway was channelopathy (N = 56). Our review suggests that genetic etiologies have a role to play in the occurrence of ESESS/CSWSS/epilepsy-aphasia spectrum. The common underlying pathway is channelopathy. Therefore we propose more genetic studies to be done for more discoveries which can pave a way for proper drug identification. We also suggest development of common cut-off value for spike-wave index to ensure common language among clinicians and researchers."	"Effects of Lidocaine and Articaine on Neuronal Survival and Recovery. The local anesthetics lidocaine and articaine are among the most widely used drugs in the dentist's arsenal, relieving pain by blocking voltage-dependent Na<sup>+</sup> channels and thus preventing transmission of the pain signal. Given reports of infrequent but prolonged paresthesias with 4% articaine, we compared its neurotoxicity and functional impairment by screening cultured neural SH-SY5Y cells with formulations used in patients (2% lidocaine + 1:100,000 epinephrine or 4% articaine + 1:100,000 epinephrine) and with pure formulations of the drugs. Voltage-dependent sodium channels Na(v)1.2 and Na(v)1.7 were expressed in SH-SY5Y cells. To test the effects on viability, cells were exposed to drugs for 5 minutes, and after washing, cells were treated with the ratiometric Live/Dead assay. Articaine had no effect on the survival of SH-SY5Y cells, while lidocaine produced a significant reduction only when used as pure powder. To determine reversibility of blockage, wells were exposed to drugs for 5 minutes and returned for medium for 30 minutes, and the calcium elevation induced by depolarizing cells with a high-potassium solution was measured using the calcium indicator Fura-2. High potassium raised calcium in control SH-SY5Y cells and those treated with articaine, but lidocaine treatment significantly reduced the response. In conclusion, articaine does not damage neural cells more than lidocaine in this in vitro model. While this does not question the safety of lidocaine used clinically, it does suggest that articaine is no more neurotoxic, at least in the in vitro setting."	"Disulfide-crosslink scanning reveals prion-induced conformational changes and prion strain-specific structures of the pathological prion protein PrP<sup>Sc</sup>. Prions are composed solely of the pathological isoform (PrP<sup>Sc</sup>) of the normal cellular prion protein (PrP<sup>C</sup>). Identification of different PrP<sup>Sc</sup> structures is crucially important for understanding prion biology because the pathogenic properties of prions are hypothesized to be encoded in the structures of PrP<sup>Sc</sup> However, these structures remain yet to be identified, because of the incompatibility of PrP<sup>Sc</sup> with conventional high-resolution structural analysis methods. Previously, we reported that the region between the first and the second α-helix (H1∼H2) of PrP<sup>C</sup> might cooperate with the more C-terminal side region for efficient interactions with PrP<sup>Sc</sup> From this starting point, we created a series of PrP variants with two cysteine substitutions (C;C-PrP) forming a disulfide-crosslink between H1∼H2 and the distal region of the third helix (Ctrm). We then assessed the conversion capabilities of the C;C-PrP variants in N2a cells infected with mouse-adapted scrapie prions (22L-ScN2a). Specifically, Cys substitutions at residues 165, 166, or 168 in H1∼H2 were combined with cysteine scanning along Ctrm residues 220-229. We found that C;C-PrPs are expressed normally with glycosylation patterns and subcellular localization similar to WT PrP, albeit differing in expression levels. Interestingly, some C;C-PrPs converted to protease-resistant isoforms in the 22L-ScN2a cells, but not in Fukuoka1 prion-infected cells. Crosslink patterns of convertible C;C-PrPs indicated a positional change of H1∼H2 toward Ctrm in PrP<sup>Sc</sup>-induced conformational conversion. Given the properties of the C;C-PrPs reported here, we propose that these PrP variants may be useful tools for investigating prion strain-specific structures and structure-phenotype relationships of PrP<sup>Sc</sup>."	"Deletions of SCN2A and SCN3A genes in a patient with West syndrome and autistic spectrum disorder. SCN2A encodes the alpha-subunit of voltage-gated sodium channel, Nav1.2, which is highly expressed at an early stage of the postnatal brain. Genetic studies revealed that de novo heterozygous mutations of SCN2A caused severe developmental disorders in childhood, such as autism and epileptic encephalopathy. However, few reports have demonstrated the cases carrying segmental deletions at the SCN2A locus for those with epileptic disorders. In this study, we report a 1.8-year-old boy, who presented with West syndrome in infancy and developed the sequelae of psychomotor delay and autism. Since whole-exome sequencing did not detect pathogenic mutations, we extensively searched for microdeletions and duplications by applying the eXome Hidden Markov Model (XHMM) for read depths of sequenced intervals. Using this approach, we identified a de novo deletion spanning the 1.1-Mb region of chromosome 2q24.3. We found that the deleted interval included the SCN2A and SCN3A loci. These data validate the utility of XHMM and support that SCN2A is involved in the pathogenic processes underlying epileptic encephalopathy in childhood."	"Altered hippocampal replay is associated with memory impairment in mice heterozygous for the Scn2a gene. An accumulating body of experimental evidence has implicated hippocampal replay occurring within sharp wave ripples (SPW-Rs) as crucial for learning and memory in healthy subjects. This raises speculation that neurological disorders impairing memory disrupt either SPW-Rs or their underlying neuronal activity. We report that mice heterozygous for the gene Scn2a, a site of frequent de novo mutations in humans with intellectual disability, displayed impaired spatial memory. While we observed no changes during encoding, to either single place cells or cell assemblies, we identified abnormalities restricted to SPW-R episodes that manifest as decreased cell assembly reactivation strengths and truncated hippocampal replay sequences. Our results suggest that alterations to hippocampal replay content may underlie disease-associated memory deficits."	"Diagnostic yield of targeted massively parallel sequencing in children with epileptic encephalopathy. To report our institutional experience of targeted massively parallel sequencing (MPS) testing in children with epilepsy. We retrospectively analysed the yield of targeted epileptic encephalopathy (EE) panel of 71 known EE genes in patients with epilepsy of unknown cause, who underwent clinical triage by a group of neurologists prior to the testing. We compared cost of the EE panel approach compared to traditional evaluation in patients with identified pathogenic variants. The yield of pathogenic variants was 28.5% (n = 30/105), highest in early onset EE &lt;3 months including Ohtahara syndrome (52%, n = 10/19) and lowest in generalized epilepsy (0/17). Patients identified with pathogenic variants had earlier onset of seizures (median 3.6 m vs 1.1y, p &lt; 0.001, OR 0.6/year, P &lt; 0.02) compared to those without pathogenic variants. Pathogenic/likely pathogenic variants were found in ALDH7A1 (2), CACNA1A (1), CDKL5 (3), FOXG1 (2), GABRB3 (1), GRIN2A (1), KCNQ2 (4), KCNQ3 (1), PRRT2 (1), SCN1A (6), SCN2A (2), SCN8A (2), SYNGAP1 (1), UBE3A (2) and WWOX (1) genes. This study expands the inheritance pattern caused by KCNQ3 mutations to include an autosomal recessive severe phenotype with neonatal seizures and severe developmental delay. The average cost of etiological evaluation was less with early use of EE panel compared to the traditional investigation approach ($5990 Australian dollars (AUD) vs $13069 AUD ; p = 0.02) among the patients with identified pathogenic variants. Targeted MPS testing is a comprehensive and economical investigation that enables early genetic diagnosis in children with EE. Careful clinical triage and selection of patients with young onset EE may maximize the yield of EE panel testing."	"Dynamic action potential clamp predicts functional separation in mild familial and severe de novo forms of SCN2A epilepsy. De novo variants in SCN2A developmental and epileptic encephalopathy (DEE) show distinctive genotype-phenotype correlations. The two most recurrent SCN2A variants in DEE, R1882Q and R853Q, are associated with different ages and seizure types at onset. R1882Q presents on day 1 of life with focal seizures, while infantile spasms is the dominant seizure type seen in R853Q cases, presenting at a median age of 8 months. Voltage clamp, which characterizes the functional properties of ion channels, predicted gain-of-function for R1882Q and loss-of-function for R853Q. Dynamic action potential clamp, that we implement here as a method for modeling neurophysiological consequences of a given epilepsy variant, predicted that the R1882Q variant would cause a dramatic increase in firing, whereas the R853Q variant would cause a marked reduction in action potential firing. Dynamic clamp was also able to functionally separate the L1563V variant, seen in benign familial neonatal-infantile seizures from R1882Q, seen in DEE, suggesting a diagnostic potential for this type of analysis. Overall, the study shows a strong correlation between clinical phenotype, SCN2A genotype, and functional modeling. Dynamic clamp is well positioned to impact our understanding of pathomechanisms and for development of disease mechanism-targeted therapies in genetic epilepsy."	"[SCN2A epileptic encephalopathy]. NA"	"Status dystonicus due to missense variant in ARX: Diagnosis and management. Movement disorders are increasingly identified in infantile encephalopathies due to single gene disorders (e.g. SCN2A, CDKL5, ARX). The associated movement disorder can be challenging to recognise and treat. We report a 2 year-old boy with a background history of Ohtahara syndrome due to a missense variant in ARX (the aristaless-related homeobox gene) who subsequently developed status dystonicus. ARX is a transcription factor that plays a critical role in cortical neuronal development and is associated with a range of important neurodevelopmental disorders depending on the site of the pathogenic variant. Cases of status dystonicus are described with variants affecting the polyalanine expansion region of ARX but have not been reported previously with variants affecting the aristaless domain of ARX as in this case. Dystonic episodes posed a challenge in recognition and treatment, including confusion with status epilepticus. We discuss the difficulties in diagnosis and management of status dystonicus, an underreported life-threatening emergency in children."	"Genomic analysis identifies masqueraders of full-term cerebral palsy. Cerebral palsy is a common, heterogeneous neurodevelopmental disorder that causes movement and postural disabilities. Recent studies have suggested genetic diseases can be misdiagnosed as cerebral palsy. We hypothesized that two simple criteria, that is, full-term births and nonspecific brain MRI findings, are keys to extracting masqueraders among cerebral palsy cases due to the following: (1) preterm infants are susceptible to multiple environmental factors and therefore demonstrate an increased risk of cerebral palsy and (2) brain MRI assessment is essential for excluding environmental causes and other particular disorders. A total of 107 patients-all full-term births-without specific findings on brain MRI were identified among 897 patients diagnosed with cerebral palsy who were followed at our center. DNA samples were available for 17 of the 107 cases for trio whole-exome sequencing and array comparative genomic hybridization. We prioritized variants in genes known to be relevant in neurodevelopmental diseases and evaluated their pathogenicity according to the American College of Medical Genetics guidelines. Pathogenic/likely pathogenic candidate variants were identified in 9 of 17 cases (52.9%) within eight genes: CTNNB1,CYP2U1,SPAST,GNAO1,CACNA1A,AMPD2,STXBP1, and SCN2A. Five identified variants had previously been reported. No pathogenic copy number variations were identified. The AMPD2 missense variant and the splice-site variants in CTNNB1 and AMPD2 were validated by in vitro functional experiments. The high rate of detecting causative genetic variants (52.9%) suggests that patients diagnosed with cerebral palsy in full-term births without specific MRI findings may include genetic diseases masquerading as cerebral palsy."	"Incorporating epilepsy genetics into clinical practice: a 360°evaluation. We evaluated a new epilepsy genetic diagnostic and counseling service covering a UK population of 3.5 million. We calculated diagnostic yield, estimated clinical impact, and surveyed referring clinicians and families. We costed alternative investigational pathways for neonatal onset epilepsy. Patients with epilepsy of unknown aetiology onset &lt; 2 years; treatment resistant epilepsy; or familial epilepsy were referred for counseling and testing. We developed NGS panels, performing clinical interpretation with a multidisciplinary team. We held an educational workshop for paediatricians and nurses. We sent questionnaires to referring paediatricians and families. We analysed investigation costs for 16 neonatal epilepsy patients. Of 96 patients, a genetic diagnosis was made in 34% of patients with seizure onset &lt; 2 years, and 4% &gt; 2 years, with turnaround time of 21 days. Pathogenic variants were seen in SCN8A, SCN2A, SCN1A, KCNQ2, HNRNPU, GRIN2A, SYNGAP1, STXBP1, STX1B, CDKL5, CHRNA4, PCDH19 and PIGT. Clinician prediction was poor. Clinicians and families rated the service highly. In neonates, the cost of investigations could be reduced from £9362 to £2838 by performing gene panel earlier and the median diagnostic delay of 3.43 years reduced to 21 days. Panel testing for epilepsy has a high yield among children with onset &lt; 2 years, and an appreciable clinical and financial impact. Parallel gene testing supersedes single gene testing in most early onset cases that do not show a clear genotype-phenotype correlation. Clinical interpretation of laboratory results, and in-depth discussion of implications for patients and their families, necessitate multidisciplinary input and skilled genetic counseling."	"2q24 deletion in a 9-month old girl with anal atresia, hearing impairment, and hypotonia. Deletion of 2q24.2 is a rare cytogenetic aberration in patients, exhibiting heterogeneous clinical features, and common phenotypes included developmental delay, intellectual disability, hypotonia, and mild dysmorphic features. Hearing impairment and anal atresia are rarely described. Here we described a 9-month-old female patient with hypotonia in all four limbs, developmental delay, and intellectual disability. In addition, congenital anal atresia was diagnosed and treated after birth, and hearing impairment was found in right ear. Single nucleotide polymorphisms (SNP) array detected a 5.2 Mb deletion on 2q24.2q24.3, including 19 genes (ITGB6; TBR1; SLC4A10; KCNH7 SCN3A; SCN2A et al.). Among these genes, it is affirmative that TBR1 is a causative gene for intellectual disability; however, the pathogenic genes of other phenotypes remain unclear. We briefly review the knowledge of genes likely involved in these clinical features, including hearing impairment, anal atresia, and developmental delay."	"Progress in Understanding and Treating SCN2A-Mediated Disorders. Advances in gene discovery for neurodevelopmental disorders have identified SCN2A dysfunction as a leading cause of infantile seizures, autism spectrum disorder, and intellectual disability. SCN2A encodes the neuronal sodium channel NaV1.2. Functional assays demonstrate strong correlation between genotype and phenotype. This insight can help guide therapeutic decisions and raises the possibility that ligands that selectively enhance or diminish channel function may improve symptoms. The well-defined function of sodium channels makes SCN2A an important test case for investigating the neurobiology of neurodevelopmental disorders more generally. Here, we discuss the progress made, through the concerted efforts of a diverse group of academic and industry scientists as well as policy advocates, in understanding and treating SCN2A-related disorders."	"Presence of meniscus tear alters gene expression profile of anterior cruciate ligament tears. Anterior cruciate ligament (ACL) tears occur in isolation or in tandem with other intra-articular injuries such as meniscus tears. The impact of injury pattern on the molecular biology of the injured ACL is unknown. Here, we tested the hypothesis that the biological response of the ACL to injury varies based on the presence or absence of concomitant meniscus tear. We performed RNA-seq on 28 ACL tears remnants (12 isolated, 16 combined). In total, 16,654 transcripts were differentially expressed between isolated and combined injury groups at false discovery rate of 0.05. Due to the large number of differentially expressed transcripts, we undertook an Ensembl approach to discover features that acted as hub genes that did not necessarily have large fold changes or high statistical significance, but instead had high biological significance. Our data revealed a negatively correlated module containing 5,960 transcripts (down-regulated in combined injury) and a positively correlated module containing 2,260 transcripts (up-regulated in combined injury). TNS1, MEF2D, NOTCH3, SOGA1, and MLXIP were highly-connected hub genes in the negatively correlated module and SCN2A, CSMD3, LRC44, USH2A, and LRP1B were critical hub genes in the positively correlated module. Transcripts in the negatively correlated module were associated with biological adhesion, actin-filament organization, cell junction assembly, and cell matrix adhesion. The positively correlated module transcripts were enriched for neuron migration and exocytosis regulation. These findings indicate genes and pathways reflective of healing deficiency and gain of neurogenic signaling in combined ACL and meniscus tears, suggesting their diminished repair potential. The biological response of ACL to injury could have implications for healing potential of the ligament and the long term health of the knee. © 2018 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:2612-2621, 2018."	"Diagnostic outcomes for genetic testing of 70 genes in 8565 patients with epilepsy and neurodevelopmental disorders. We evaluated &gt;8500 consecutive, unselected patients with epilepsy and neurodevelopmental disorders who underwent multigene panel testing to determine the average age at molecular diagnosis and diagnostic yield of 70 genes. We reviewed molecular test results for 70 genes known to cause epilepsy and neurodevelopmental disorders using next generation sequencing (NGS) and exon-level array comparative genomic hybridization (aCGH). A positive result was defined as the presence of 1 or 2 pathogenic or likely pathogenic (P/LP) variants in a single gene, depending on the mode of inheritance of the associated disorder. Overall, 22 genes were found to have a high yield of positive findings by genetic testing, with SCN1A and KCNQ2 accounting for the greatest number of positive findings. In contrast, there were no positive findings in 16 genes. Most of the P/LP variants were sequence changes identified by NGS (90.9%), whereas ~9% were gross deletions or duplications detected by exon-level aCGH. The mean age of molecular diagnosis for the cohort was 5 years, 8 months (ranging from 1 week to 47 years). Recurrent P/LP variants were observed in 14 distinct genes, most commonly in MECP2, KCNQ2, SCN1A, SCN2A, STXBP1, and PRRT2. Parental testing was performed in &gt;30% of positive cases. All variants identified in CDKL5, STXBP1, SCN8A, GABRA1, and FOXG1 were de novo, whereas 85.7% of variants in PRRT2 were inherited. Using a combined approach of NGS and exon-level aCGH, testing identified a genetic etiology in 15.4% of patients in this cohort and revealed the age at molecular diagnosis for patients. Our study highlights both high- and low-yield genes associated with epilepsy and neurodevelopmental disorders, indicating which genes may be considered for molecular diagnostic testing."	"Association between SCN1A and SCN2A mutations and clinical/EEG features in Chinese patients from epilepsy or severe seizures. We investigated the association between SCN1A and SCN2A mutations and clinical phenotype and electroencephalography (EEG) features. In this study, 48 patients suffered from epilepsy or severe seizures with SCN1A and SCN2A mutations were recruited. Medical data and molecular diagnosis were analyzed. A total of 47 mutations were identified, including 33 novel mutations. The onset of most epilepsy caused by SCN1A mutations (1-6 m) was later than that of SCN2A mutations (neonatal). SCN1A mutations included truncating mutations and missense mutations occurred in the crucial region were associated with more severe phenotypes and developmental delay (85.7%, P = 0.020). De novo mutations or truncating mutations of SCN2A mutations are mainly associated with severe phenotypes. The proportion of initial abnormal EEG of SCN2A mutation was higher than that of SCN1A mutation (54.2%, 100%). Patients with SCN1A mutations showed more focal epileptiform discharges (69.2%), while patients with SCN2A mutations had more multifocal epileptiform discharges (53.8%). Sodium channel blockers were less effective for patients with SCN1A mutations and SCN2A mutations with early seizures onset. Our study expanded the mutation spectrum of the SCN1A and SCN2A, and led to a better understanding of the similarities and difference in the genetic and clinical features between the two genes."	"The finding of a new heterozygous mutation site of the SCN2A gene in a monozygotic twin family carrying and exhibiting genetic epilepsy with febrile seizures plus (GEFS+) using targeted next-generation sequencing. Generalized epilepsy with febrile seizures plus (GEFS+) is a new epilepsy syndrome named by the International League Against Epilepsy (ILAE) in 2001. The SCN2A gene encoding α2 subunit of the neuronal sodium channel has been reported to be associated with BFNIS, GFES+, Dravet syndrome and some intractable childhood epilepsies. This study aimed to develop an approach based on next-generation sequencing to determine the genetic defects in a monozygotic twin family with GEFS+. We collected a twin family with GEFS+. The DNA of the twin patients was extracted from their peripheral venous whole blood. A total of 308 known genes related to epilepsies were selected for deep exon resequencing. The patients family's DNA was sequenced through Sanger's sequencing for expanded validation. Through systematic data analysis using established bioinformatics pipeline and segregation analysis techniques, a number of genetic variants were released. Through detailed data analysis, we found a new heterozygous mutation c.1399G &gt; A on exon11 of SCN2A (Nav1.2) which has not been reported in the HGMD (Human Gene Mutation Database), in the twin patients. Then we tested and verified the presence of the same mutation site in all individuals of the family. Asymptomatic individuals of this family didn't show this mutation. The methodology provides a reliable strategy for routine gene diagnosis of GEFS+. This observation of a potentially pathogenic mutation of SCN2A (Nav1.2) indicates that this gene should be further evaluated in order to determine possible routes of causation of GEFS+."	"SCN2A mutation in an infant presenting with migrating focal seizures and infantile spasm responsive to a ketogenic diet. SCN2A mutations have been identified in various encephalopathy phenotypes, ranging from benign familial neonatal-infantile seizure (BFNIS) to more severe forms of epileptic encephalopathy such as Ohtahara syndrome or epilepsy of infancy with migrating focal seizure (EIMFS). Thus far, no particularly effective treatment is available for severe epileptic encephalopathy caused by SCN2A mutations in children. We present the case of a boy who developed seizures on the third day of life and received a diagnosis of EIMFS based on his clinical presentations and electroencephalography reports. Antiepileptic drugs, namely oxcarbazepine, phenytoin, valproate, levetiracetam, and clonazepam, as well as adrenocorticotropic hormone therapy failed to reduce the severity of the seizures. Seizure pattern changed to infantile spasm with extensor thrust since 5 months of age. A ketogenic diet consisting of a medium-chain triglyceride recipe was introduced at 8 months of age and the seizures were resolved in the following 10 months. A de novo mutation in SCN2A (c.573G &gt; T; p.W191C) was proven through next-generation sequencing."	"[Spectrum of mutations in benign familial neonatal-infantile epilepsy]. Objective: To investigate the spectrum of mutations in families with benign familial neonatal-infantile epilepsy (BFNIE) . Methods: Clinical data and peripheral blood DNA samples of all BFNIE probands and their family members were collected from Peking University First Hospital between December 2012 and April 2016. Clinical phenotypes of affected members were analyzed. Genomic DNA was extracted from peripheral blood samples with standard protoco1. Mutations in PRRT2 were screened using Sanger sequencing. For families that PRRT2 mutations were not detected by Sanger sequencing, candidate gene mutations were further screened by next-generation sequencing for epilepsy. Results: A total of 7 families were collected. Of the 30 affected members, 15 were male and 15 were female. The age of epilepsy onset was from 2 days to 6 months. Genetic testing led to the identification of gene mutations in all families. One family had the PRRT2 hotspot mutation (c.649dupC). Three families had missense SCN2A mutations (c.2674G&gt;A/p.V892I, c.2872A&gt;G/p.M958V, and c.2627A&gt;G/p.N876S) . Both c.2872A&gt;G/p.M958V and c.2627A&gt;G/p.N876S were novel SCN2A mutations. Three families had KCNQ2 mutations. Two of them had missense mutations (c.958G&gt;A/p.V320I and c.998G&gt;A/p.R333Q) . The KCNQ2 mutation c.958G&gt;A/p.V320I was novel. One family had a gene deletion of KCNQ2, which also extended to the adjacent gene, CHRNA4; and the deletion involved all the exons of KCNQ2 and CHRNA4. Conclusions: Mutations in KCNQ2, SCN2A, and PRRT2 are genetic causes of BFNIE in Chinese families. The detection rate for gene mutations is high in BFNIE families. KCNQ2 and SCN2A mutations are common in BFNIE families. SCN2A mutations (c.2872A&gt;G/p.M958V and c.2627A&gt;G/p.N876S) and KCNQ2 mutation (c.958G&gt;A/p.V320I) are novel mutations. 目的: 分析良性家族性新生儿-婴儿癫痫(BFNIE)家系的致病基因谱。 方法: 收集2012年12月至2016年4月在北京大学第一医院儿科就诊的BFNIE家系的临床资料和外周血DNA,首先采用Sanger测序方法筛查PRRT2基因突变,对于未发现PRRT2基因突变的家系再采用靶向捕获二代测序癫痫基因检测包对BFNIE的候选致病基因进行突变筛查。 结果: 共收集7个BFNIE家系,共有30例受累者,其中男15例、女15例,起病年龄为2日龄~6月龄。7个家系均发现基因突变,PRRT2基因Sanger测序发现一个家系携带PRRT2基因热点突变c.649dupC;二代测序发现3个家系携带SCN2A基因错义突变(c.2674G&gt;A/p.V892I、c.2872A&gt;G/p.M958V和c.2627A&gt;G/p.N876S),其中c.2872A&gt;G/p.M958V和c.2627A&gt;G/p.N876S为未报道的新突变;二代测序发现3个家系携带KCNQ2基因突变,其中错义突变见于2个家系(c.958G&gt;A/p.V320I和c.998G&gt;A/p.R333Q),c.958G&gt;A/p.V320I为未报道的新突变,KCNQ2基因杂合片段缺失见于1个家系,该片段缺失还累及了邻近的CHRNA4基因,缺失范围包括KCNQ2基因和CHRNA4基因的全部外显子。 结论: BFNIE的致病基因谱包括KCNQ2、SCN2A和PRRT2基因,基因突变检出率高,KCNQ2和SCN2A基因突变在BFNIE中常见。SCN2A基因突变c.2872A&gt;G/p.M958V和c.2627A&gt;G/p.N876S及KCNQ2基因突变c.958G&gt;A/p.V320I为新发现的突变。."	"Common terms for rare epilepsies: Synonyms, associated terms, and links to structured vocabularies. Identifying individuals with rare epilepsy syndromes in electronic data sources is difficult, in part because of missing codes in the International Classification of Diseases (ICD) system. Our objectives were the following: (1) to describe the representation of rare epilepsies in other medical vocabularies, to identify gaps; and (2) to compile synonyms and associated terms for rare epilepsies, to facilitate text and natural language processing tools for cohort identification and population-based surveillance. We describe the representation of 33 epilepsies in 3 vocabularies: Orphanet, SNOMED-CT, and UMLS-Metathesaurus. We compiled terms via 2 surveys, correspondence with parent advocates, and review of web resources and standard vocabularies. UMLS-Metathesaurus had entries for all 33 epilepsies, Orphanet 32, and SNOMED-CT 25. The vocabularies had redundancies and missing phenotypes. Emerging epilepsies (SCN2A-, SCN8A-, KCNQ2-, SLC13A5-, and SYNGAP-related epilepsies) were underrepresented. Survey and correspondence respondents included 160 providers, 375 caregivers, and 11 advocacy group leaders. Each epilepsy syndrome had a median of 15 (range 6-28) synonyms. Nineteen had associated terms, with a median of 4 (range 1-41). We conclude that medical vocabularies should fill gaps in representation of rare epilepsies to improve their value for epilepsy research. We encourage epilepsy researchers to use this resource to develop tools to identify individuals with rare epilepsies in electronic data sources."	"Mutations in SCN3A cause early infantile epileptic encephalopathy. Voltage-gated sodium (Na<sup>+</sup> ) channels underlie action potential generation and propagation and hence are central to the regulation of excitability in the nervous system. Mutations in the genes SCN1A, SCN2A, and SCN8A, encoding the Na<sup>+</sup> channel pore-forming (α) subunits Nav1.1, 1.2, and 1.6, respectively, and SCN1B, encoding the accessory subunit β1 , are established causes of genetic epilepsies. SCN3A, encoding Nav1.3, is known to be highly expressed in brain, but has not previously been linked to early infantile epileptic encephalopathy. Here, we describe a cohort of 4 patients with epileptic encephalopathy and heterozygous de novo missense variants in SCN3A (p.Ile875Thr in 2 cases, p.Pro1333Leu, and p.Val1769Ala). All patients presented with treatment-resistant epilepsy in the first year of life, severe to profound intellectual disability, and in 2 cases (both with the variant p.Ile875Thr), diffuse polymicrogyria. Electrophysiological recordings of mutant channels revealed prominent gain of channel function, with a markedly increased amplitude of the slowly inactivating current component, and for 2 of 3 mutants (p.Ile875Thr and p.Pro1333Leu), a leftward shift in the voltage dependence of activation to more hyperpolarized potentials. Gain of function was not observed for Nav1.3 variants known or presumed to be inherited (p.Arg1642Cys and p.Lys1799Gln). The antiseizure medications phenytoin and lacosamide selectively blocked slowly inactivating over transient current in wild-type and mutant Nav1.3 channels. These findings establish SCN3A as a new gene for infantile epileptic encephalopathy and suggest a potential pharmacologic intervention. These findings also reinforce the role of Nav1.3 as an important regulator of neuronal excitability in the developing brain, while providing additional insight into mechanisms of slow inactivation of Nav1.3. Ann Neurol 2018;83:703-717."	"Targeted gene panel and genotype-phenotype correlation in children with developmental and epileptic encephalopathy. We performed targeted gene-panel sequencing for children with developmental and epileptic encephalopathy (DEE) and evaluated the clinical implications of genotype-phenotype correlations. We assessed 278 children with DEE using a customized gene panel that included 172 genes, and extensively reviewed their clinical characteristics, including therapeutic efficacy, according to genotype. In 103 (37.1%) of the 278 patients with DEE, 35 different disease-causing monogenic mutations were identified. The diagnostic yield was higher among patients who were younger at seizure onset, especially those whose seizures started during the neonatal period, and in patients with drug-resistant epilepsy. According to epilepsy syndromes, the diagnostic yield was the highest among patients with West syndrome (WS) with a history of neonatal seizures and mutations in KCNQ2 and STXBP1 were most frequently identified. On the basis of genotypes, we evaluated the clinical progression and seizure outcomes with specific therapeutic regimens; these were similar to those reported previously. In particular, sodium channel blockers were effective in patients with mutations in KCNQ2 and SCN2A in infancy, as well as SCN8A, and interestingly, the ketogenic diet also showed diverse efficacy for patients with SCN1A, CDKL5, KCNQ2, STXBP1, and SCN2A mutations. Unfortunately, quinidine was not effective in 2 patients with migrating focal epilepsy in infancy related to KCNT1 mutations. Targeted gene-panel sequencing is a useful diagnostic tool for DEE in children, and genotype-phenotype correlations are helpful in anticipating the clinical progression and treatment efficacy among these patients."	"Refractory focal epilepsy in a paediatric patient with primary familial brain calcification. Primary familial brain calcification (PFBC), otherwise known as Fahr's disease, is a rare autosomal dominant condition with manifestations of movement disorders, neuropsychiatric symptoms, and epilepsy in a minority of PFBC patients. The clinical presentation of epilepsy in PFBC has not been described in detail. We present a paediatric patient with PFBC and refractory focal epilepsy based on seizure semiology and ictal EEG, but with generalized interictal EEG abnormalities. The patient was found to have a SLC20A2 mutation known to be pathogenic in PFBC, as well as a variant of unknown significance in SCN2A. This case demonstrates that the ictal EEG is important for accurately classifying epilepsy in affected subjects with PFBC. Further, epilepsy in PFBC may be a polygenic disorder."	"Novel mutations and phenotypes of epilepsy-associated genes in epileptic encephalopathies. Epileptic encephalopathies are severe epilepsy disorders with strong genetic bases. We performed targeted next-generation sequencing (NGS) in 70 patients with epileptic encephalopathies. The likely pathogenicity of variants in candidate genes was evaluated by American College of Medical Genetics and Genomics (ACMG) scoring taken together with the accepted clinical presentation. Thirty-three candidate variants were detected after population filtration and computational prediction. According to ACMG, 21 candidate variants, including 18 de novo variants, were assessed to be pathogenic/likely pathogenic with clinical concordance. Twelve variants were initially assessed as uncertain significance by ACMG, among which 3 were considered causative and 3 others were considered possibly causative after analysis of clinical concordance. In total, 24 variants were identified as putatively causative, among which 19 were novel findings. SCN1A mutations were identified in 50% of patients with Dravet syndrome. TSC1/TSC2 mutations were detected in 66.7% of patients with tuberous sclerosis. STXBP1 mutations were the main findings in patients with West syndrome. Mutations in SCN2A, KCNT1, KCNQ2 and CLCN4 were identified in patients with epileptic infantile with migrating focal seizures; among them, KCNQ2 and CLCN4 were first identified as potential causative genes. Only one CHD2 mutation was detected in patients with Lennox-Gastaut syndrome. This study highlighted the utility of targeted NGS in genetic diagnoses of epileptic encephalopathies and a comprehensive evaluation of the pathogenicity of variants based on ACMG scoring and assessment of clinical concordance. Epileptic encephalopathies differ in genetic causes, and the genotype-phenotype correlations would provide insights into the underlying pathogenic mechanisms."	"Integration of biological/pathophysiological contexts to help clarify genotype-phenotype mismatches in monogenetic diseases. Childhood epilepsies associated with SCN2A as a case study. Monogenetic diseases offer clear human validation for launching drug discovery programs in Pharma designed to develop important new medicines for unmet medical needs. However, mismatches in the genotype-phenotype of presenting patients complicate both the preclinical 'research target profile' and the clinical development strategy. Additional biological and pathophysiological data associated with the identified mutations are necessary for more optimal prosecution of these drug discovery programs. This added contextual setting goes beyond identification of modifier genes and needs to encompass microenvironmental factors which can differentially affect the phenotype of patients harboring the same mutation. The Early Infantile Epileptic Encephalopathies (EIEEs) associated with de novo mutations in voltage gated sodium channels are interesting case studies that include examples of genotype-phenotype mismatches. With EIEE11, associated with mutations in SCN2A, incorporation of biological/pathophysiological contexts are helpful in clarifying the apparent genotype-phenotype mismatches which are captured with more reductionist approaches."	"FOXD3 inhibits SCN2A gene transcription in intractable epilepsy cell models. The expression of sodium voltage-gated channel alpha subunit 2 (SCN2A) is closely related to the development of epilepsy. This study investigated regulatory element of the SCN2A gene involved in epilepsy. An intractable epilepsy cell model was constructed using hippocampal primary neurons and the SH-SY5Y cell line. SCN2A protein and gene expression in cells as well as the level of lactic acid dehydrogenase (LDH) in the cell culture supernatants was detected. Potential regulatory factors of SCN2A and its upstream regulatory elements were identified using the dual-luciferase reporter assay. Finally, the role of the hypothetical transcription factor in epilepsy was examined by using its small interfering RNA (siRNA). Results found that levels of LDH and expression of the hypothetical transcription factor, Forkhead box D3 (FOXD3), was both increased in the model cells, whereas that of SCN2A was decreased. The results of dual-luciferase reporter assays revealed that an upstream region of SCN2A gene spanning from nucleotides -1617 to -1470 was a transcription factor binding region and a trans-acting factor role of FOXD3 was identified in the core region (GGCAAAATTAT). Then the FOXD3 binding site was further verified by the chromatin immunoprecipitation (ChIP) assay and electrophoretic mobility shift assay (EMSA). After SH-SY5Y cells were transfected with FOXD3 siRNA, the release of LDH into culture supernatants and the LDH expression levels in cells were significantly decreased. SCN2A expression in model cells was increased by knockdown of FOXD3. Therefore, this study demonstrated that FOXD3 is a trans-acting factor of SCN2A, and this mechanism may play a role in cell injury after epilepsy."	"Genetic analysis of benign familial epilepsies in the first year of life in a Chinese cohort. Benign familial epilepsies that present themselves in the first year of life include benign familial neonatal epilepsy (BFNE), benign familial neonatal-infantile epilepsy (BFNIE) and benign familial infantile epilepsy (BFIE). We used Sanger sequencing and targeted next-generation sequencing to detect gene mutations in a Chinese cohort of patients with these three disorders. A total of 79 families were collected, including 4 BFNE, 7 BFNIE, and 68 BFIE. Genetic testing led to the identification of gene mutations in 60 families (60 out of 79, 75.9%). A total of 42 families had PRRT2 mutations, 9 had KCNQ2 mutations, 8 had SCN2A mutations, and 1 had a GABRA6 mutation. In total three of four BFNE families were detected with KCNQ2 mutations. Mutations were detected in all BFNIE families, including 3 KCNQ2 mutations, 3 SCN2A mutations, and 1 PRRT2 mutation. Gene mutations were identified in 50 out of 68 BFIE families (73.5%), including 41 PRRT2 mutations (41 out of 68, 60.3%), 5 SCN2A mutations, 3 KCNQ2 mutations, and 1 GABRA6 mutation. Our results confirmed that mutations in KCNQ2, SCN2A, and PRRT2 are major genetic causes of benign familial epilepsy in the first year of life in the Chinese population. KCNQ2 is the major gene related to BFNE. PRRT2 is the main gene responsible for BFIE."	"A case-control collapsing analysis identifies epilepsy genes implicated in trio sequencing studies focused on de novo mutations. Trio exome sequencing has been successful in identifying genes with de novo mutations (DNMs) causing epileptic encephalopathy (EE) and other neurodevelopmental disorders. Here, we evaluate how well a case-control collapsing analysis recovers genes causing dominant forms of EE originally implicated by DNM analysis. We performed a genome-wide search for an enrichment of &quot;qualifying variants&quot; in protein-coding genes in 488 unrelated cases compared to 12,151 unrelated controls. These &quot;qualifying variants&quot; were selected to be extremely rare variants predicted to functionally impact the protein to enrich for likely pathogenic variants. Despite modest sample size, three known EE genes (KCNT1, SCN2A, and STXBP1) achieved genome-wide significance (p&lt;2.68×10-6). In addition, six of the 10 most significantly associated genes are known EE genes, and the majority of the known EE genes (17 out of 25) originally implicated in trio sequencing are nominally significant (p&lt;0.05), a proportion significantly higher than the expected (Fisher's exact p = 2.33×10-17). Our results indicate that a case-control collapsing analysis can identify several of the EE genes originally implicated in trio sequencing studies, and clearly show that additional genes would be implicated with larger sample sizes. The case-control analysis not only makes discovery easier and more economical in early onset disorders, particularly when large cohorts are available, but also supports the use of this approach to identify genes in diseases that present later in life when parents are not readily available."	"Neurotransmitters and Sodium Channelopathies; Possible Link? Investigators from the University of British Columbia, Great Ormond Street Hospital for Children, and the National Hospital reported their findings on neurotransmitter deficiencies in two patients with mutations in voltage-gated sodium genes (SCN2A and SCN8A) discovered by whole exome sequencing."	"[Analysis of gene mutation of early onset epileptic spasm with unknown reason]. Objective: To summarize the gene mutation of early onset epileptic spasm with unknown reason. Method: In this prospective study, data of patients with early onset epileptic spasm with unknown reason were collected from neurological department of Children's Hospital of Fudan University between March 2016 and December 2016. Patients with known disorders such as infection, metabolic, structural, immunological problems and known genetic mutations were excluded. Patients with genetic disease that can be diagnosed by clinical manifestations and phenotypic characteristics were also excluded. Genetic research methods included nervous system panel containing 1 427 epilepsy genes, whole exome sequencing (WES), analysis of copy number variation (CNV) and karyotype analysis of chromosome. The basic information, phenotypes, genetic results and the antiepileptic treatment of patients were analyzed. Result: Nine of the 17 cases with early onset epileptic spasm were boys and eight were girls. Patients' age at first seizure onset ranged from 1 day after birth to 8 months (median age of 3 months). The first hospital visit age ranged from 1 month to 2 years (median age of 4.5 months). The time of following-up ranged from 8 months to 3 years and 10 months. All the 17 patients had early onset epileptic spasm. Video electroencephalogram was used to monitor the spasm seizure. Five patients had Ohtahara syndrome, 10 had West syndrome, two had unclear classification. In 17 cases, 10 of them had detected pathogenic genes. Nine cases had point mutations, involving SCN2A, ARX, UNC80, KCNQ2, and GABRB3. Except one case of mutations in GABRB3 gene have been reported, all the other cases had new mutations. One patient had deletion mutation in CDKL5 gene. One CNV case had 6q 22.31 5.5MB repeats. Ten cases out of 17 were using 2-3 antiepileptic drugs (AEDs) and the drugs had no effect. Seven cases used adrenocorticotropic hormone (ACTH) and prednisone besides AEDs (a total course for 8 weeks). Among them, five cases had no effect and two cases were seizure free recently. A case with GABRB3 (C.905A&gt;G) had seizure controlled for 3 mouths. A case with ARX (C.700G&gt;A) had seizure controlled for 6 mouths. Conclusion: The early onset epileptic spasm with unknown reason is highly related to genetic disorders. A variety of genetic mutations, especially new mutations were found. Genetic heterogeneity of epileptic spasm is obvious. 目的: 探究不明病因早发癫痫性痉挛的遗传性病因。 方法: 前瞻性收集2016年3至12月复旦大学附属儿科医院神经科门诊就诊的17例不明病因早发癫痫性痉挛的患儿(男9例,女8例,就诊年龄1~8月龄),排除各种已知的病因(如感染性、代谢性、结构性、免疫性病因),排除临床表型及疾病特征可诊断的遗传相关疾病;进行神经系统Panel(包含1 427个癫痫基因)、全外显子测序、拷贝数变异分析、染色体核型分析。分析病例基本信息、病例表型特征、病例遗传结果以及药物治疗随访。 结果: 17例患儿中,男9例,女8例;发病年龄范围为生后1 d~8月龄(中位年龄为3月龄),首次就诊年龄1~24月龄(中位年龄4.5月龄),随访时间为8~46月龄。17例患儿均为早发癫痫性痉挛;所有患儿视频脑电图检查至少1次监测到癫痫性痉挛发作,其中大田原综合征5例,West综合征10例,综合征分类不确定2例。17例中检出10例致病基因,点突变9例,涉及基因为SCN2A、ARX、UNC80、KCNQ2、GABRB3,除1例GABRB3基因突变位点已报道,8例为未报道的新发突变位点;碱基缺失1例,涉及基因为CDKL5,拷贝数变异(CNV)1例,为6q 22.31 5.5MB重复。17例病例中10例仅使用2~3种抗癫痫药物治疗,均药物治疗无效;7例抗癫痫药物联合促肾上腺皮质激素加泼尼松治疗(总疗程8周),5例治疗无效,2例近期癫痫发作得到控制,1例不发作3个月,患儿为GABRB3(c.905A&gt;G)突变;1例不发作6个月,患儿为ARX(c.700G&gt;A)突变。 结论: 不明病因早发癫痫性痉挛的遗传病因相关性高,遗传变异基因谱广泛,新发突变为主,癫痫性痉挛遗传异质性明显。."	"Diagnostic Yield From 339 Epilepsy Patients Screened on a Clinical Gene Panel. The contribution of genetic factors to epilepsy has long been recognized and has been estimated to play a role in 70% to 80% of cases. Identification of a pathogenic variant can help families to better cope with the disorder, allows for genetic counseling to determine recurrence risk, and in some cases, can directly influence treatment options. In this study, we determined the diagnostic yield of a clinical gene panel applied to an unselected cohort of epilepsy patients. Variant reports from 339 clinically referred epilepsy patients screened using a 110-gene panel were retrospectively reviewed. Variants were classified using the American College of Medical Genetics and Genomics guidelines. Pathogenic or likely pathogenic variants were identified in 62 individuals (18%) and potentially causative variants were identified in an additional 21 individuals (6%). Causative and potentially causative variants were most frequently identified in SCN1A (n = 15) and KCNQ2 (n = 10). Other genes in which disease-causing variants were identified in multiple individuals included CDKL5, SCN2A, SCN8A, SCN1B, STXBP1, TPP1, PCDH19, CACNA1A, GABRA1, GRIN2A, SLC2A1, and TSC2. Sixteen additional genes had variants identified in single individuals. We identified 87 variants in 30 different genes that could explain disease, of which 54% were not previously reported. This study confirms the utility of targeted gene panel analysis in epilepsy and highlights several factors to improve the yield of diagnostic genetic testing, including the critical need for clinical phenotype information and parental samples, microarray analysis for whole exon deletions and duplications, and frequent update of panels to incorporate new disease genes."	"Pumilio2-deficient mice show a predisposition for epilepsy. Epilepsy is a neurological disease that is caused by abnormal hypersynchronous activities of neuronal ensembles leading to recurrent and spontaneous seizures in human patients. Enhanced neuronal excitability and a high level of synchrony between neurons seem to trigger these spontaneous seizures. The molecular mechanisms, however, regarding the development of neuronal hyperexcitability and maintenance of epilepsy are still poorly understood. Here, we show that pumilio RNA-binding family member 2 (Pumilio2; Pum2) plays a role in the regulation of excitability in hippocampal neurons of weaned and 5-month-old male mice. Almost complete deficiency of Pum2 in adult Pum2 gene-trap mice (Pum2 GT) causes misregulation of genes involved in neuronal excitability control. Interestingly, this finding is accompanied by the development of spontaneous epileptic seizures in Pum2 GT mice. Furthermore, we detect an age-dependent increase in Scn1a (Nav1.1) and Scn8a (Nav1.6) mRNA levels together with a decrease in Scn2a (Nav1.2) transcript levels in weaned Pum2 GT that is absent in older mice. Moreover, field recordings of CA1 pyramidal neurons show a tendency towards a reduced paired-pulse inhibition after stimulation of the Schaffer-collateral-commissural pathway in Pum2 GT mice, indicating a predisposition to the development of spontaneous seizures at later stages. With the onset of spontaneous seizures at the age of 5 months, we detect increased protein levels of Nav1.1 and Nav1.2 as well as decreased protein levels of Nav1.6 in those mice. In addition, GABA receptor subunit alpha-2 (Gabra2) mRNA levels are increased in weaned and adult mice. Furthermore, we observe an enhanced GABRA2 protein level in the dendritic field of the CA1 subregion in the Pum2 GT hippocampus. We conclude that altered expression levels of known epileptic risk factors such as Nav1.1, Nav1.2, Nav1.6 and GABRA2 result in enhanced seizure susceptibility and manifestation of epilepsy in the hippocampus. Thus, our results argue for a role of Pum2 in epileptogenesis and the maintenance of epilepsy."	"A distinct microRNA expression profile is associated with α[<sup>11</sup>C]-methyl-L-tryptophan (AMT) PET uptake in epileptogenic cortical tubers resected from patients with tuberous sclerosis complex. Tuberous sclerosis complex (TSC) is characterized by hamartomatous lesions in various organs and arises due to mutations in the TSC1 or TSC2 genes. TSC mutations lead to a range of neurological manifestations including epilepsy, cognitive impairment, autism spectrum disorders (ASD), and brain lesions that include cortical tubers. There is evidence that seizures arise at or near cortical tubers, but it is unknown why some tubers are epileptogenic while others are not. We have previously reported increased tryptophan metabolism measured with α[<sup>11</sup>C]-methyl-l-tryptophan (AMT) positron emission tomography (PET) in epileptogenic tubers in approximately two-thirds of patients with tuberous sclerosis and intractable epilepsy. However, the underlying mechanisms leading to seizure onset in TSC remain poorly characterized. MicroRNAs are enriched in the brain and play important roles in neurodevelopment and brain function. Recent reports have shown aberrant microRNA expression in epilepsy and TSC. In this study, we performed microRNA expression profiling in brain specimens obtained from TSC patients undergoing epilepsy surgery for intractable epilepsy. Typically, in these resections several non-seizure onset tubers are resected together with the seizure-onset tubers because of their proximity. We directly compared seizure onset tubers, with and without increased tryptophan metabolism measured with PET, and non-onset tubers to assess the role of microRNAs in epileptogenesis associated with these lesions. Whether a particular tuber was epileptogenic or non-epileptogenic was determined with intracranial electrocorticography, and tryptophan metabolism was measured with AMT PET. We identified a set of five microRNAs (miR-142-3p, 142-5p, 223-3p, 200b-3p and 32-5p) that collectively distinguish among the three primary groups of tubers: non-onset/AMT-cold (NC), onset/AMT-cold (OC), and onset/AMT-hot (OH). These microRNAs were significantly upregulated in OH tubers compared to the other two groups, and microRNA expression was most significantly associated with AMT-PET uptake. The microRNAs target a group of genes enriched for synaptic signaling and epilepsy risk, including SLC12A5, SYT1, GRIN2A, GRIN2B, KCNB1, SCN2A, TSC1, and MEF2C. We confirmed the interaction between miR-32-5p and SLC12A5 using a luciferase reporter assay. Our findings provide a new avenue for subsequent mechanistic studies of tuber epileptogenesis in TSC."	"De novo SCN2A mutation in a Chinese infant with severe early-onset epileptic encephalopathy, bronchopulmonary dysplasia, and adrenal hypofunction. Early-onset epileptic encephalopathies (EOEEs) are a group of phenotypically and genetically heterogeneous neurodevelopmental disorders. Mutations of SCN2A, the gene encoding the aII subunit of the voltage-gated sodium channel (Nav1.2), have been detected in some EOEE patients. This report describes a 4-month-old female who presented with severe EOEE as well as bronchopulmonary dysplasia and adrenal hypofunction. Whole-exome sequencing revealed a novel missense mutation in SCN2A (c.1261T &gt; G; p.L421V) that was not detected in either her parents or her brother. The mutation was confirmed by Sanger sequencing and characterized as pathogenic by several prediction programs. This finding of a de novo SCN2A mutation in an ethnic Chinese infant with EOEE as well as multi-organ dysfunction expands the phenotypic spectrum of SCN2A mutations."	"The compound (3-{5-[(2,5-dimethoxyphenyl)amino]-1,3,4-thiadiazolidin-2-yl}-5,8-methoxy-2H-chromen-2-one) inhibits the prion protein conversion from PrP<sup>C</sup> to PrP<sup>Sc</sup> with lower IC50 in ScN2a cells. Prion diseases are fatal neurodegenerative disorders of the central nervous system characterized by the accumulation of a protease resistant form (PrP<sup>Sc</sup>) of the cellular prion protein (PrP<sup>C</sup>) in the brain. Two types of cellular prion (PrP<sup>C</sup>) compounds have been identified that appear to affect prion conversion are known as Effective Binders (EBs) and Accelerators (ACCs). Effective binders shift the balance in favour of PrP<sup>C</sup>, whereas Accelerators favour the formation of PrP<sup>Sc</sup>. Molecular docking indicates EBs and ACCs both bind to pocket-D of the SHaPrP<sup>C</sup> molecule. However, EBs and ACCs may have opposing effects on the stability of the salt bridge between Arg<sup>156</sup> and Glu<sup>196</sup>/Glu<sup>200</sup>. Computational docking data indicate that the hydrophobic benzamide group of the EB, GFP23 and the 1-(3,3-dimethylcyclohexylidene)piperidinium group of the ACC, GFP22 play an important role in inhibition and conversion from SHaPrP<sup>C</sup> to SHaPrP<sup>Sc</sup>, respectively. Experimentally, NMR confirmed the amide chemical shift perturbations observed upon the binding of GFP23 to pocket-D of SHaPrP<sup>C</sup>. Consistent with its role as an ACC, titration of GFP22 resulted in widespread chemical shift changes and signal intensity loss due to protein unfolding. Virtual screening of a ligand database using the molecular scaffold developed from the set of EBs identified six of our compounds (previously studied using fluorescence quenching) as being among the top 100 best binders. Among them, compounds 5 and 6 were found to be particularly potent in decreasing the accumulation SHaPrP<sup>Sc</sup> in ScN2a cells with an IC50 of ∼35µM and 20µM."	"Dravet syndrome and its mimics: Beyond SCN1A. Dravet syndrome (DS) is a severe developmental and epileptic encephalopathy characterized by the onset of prolonged febrile and afebrile seizures in infancy, and evolving to drug-resistant epilepsy with accompanying cognitive, behavioral, and motor impairment. Most cases are now known to be caused by pathogenic variants in the sodium channel gene SCN1A, but several other genes have also been implicated. This review examines current understanding of the role of non-SCN1A genes in DS, and what is known about phenotypic similarities and differences. We discuss whether these are best thought of as minority causes of DS, or as similar but distinct conditions. Based on a review of literature, a list of genes linked to DS was compiled and PubMed was searched for reports of DS-like phenotypes arising from variants in each. Online Mendelian Inheritance in Man (OMIM) was used to identify further reports relevant to each gene. Genes that have been reported to cause DS-like phenotypes include SCN2A, SCN8A, SCN9A, SCN1B, PCDH19, GABRA1, GABRG2, STXBP1, HCN1, CHD2, and KCNA2. Many of these genes, however, appear to be associated with their own, different, clinical picture. Other candidate genes for DS have been reported, but there is currently an insufficient body of literature to support their causative role. Although most cases of DS arise from SCN1A variants, numerous other genes cause encephalopathies that are clinically similar. Increasingly, a tendency is noted to define newly described epileptic disorders primarily in genetic terms, with clinical features being linked to genotypes. As genetic diagnosis becomes more readily available, its potential to guide pathophysiologic understanding and therapeutic strategy cannot be ignored. Clinical assessment remains essential; the challenge now is to develop a gene-based taxonomy that complements traditional syndromic classifications, allowing elements of both to inform new approaches to treatment."	"Exonic Mosaic Mutations Contribute Risk for Autism Spectrum Disorder. Genetic risk factors for autism spectrum disorder (ASD) have yet to be fully elucidated. Postzygotic mosaic mutations (PMMs) have been implicated in several neurodevelopmental disorders and overgrowth syndromes. By leveraging whole-exome sequencing data on a large family-based ASD cohort, the Simons Simplex Collection, we systematically evaluated the potential role of PMMs in autism risk. Initial re-evaluation of published single-nucleotide variant (SNV) de novo mutations showed evidence consistent with putative PMMs for 11% of mutations. We developed a robust and sensitive SNV PMM calling approach integrating complementary callers, logistic regression modeling, and additional heuristics. In our high-confidence call set, we identified 470 PMMs in children, increasing the proportion of mosaic SNVs to 22%. Probands have a significant burden of synonymous PMMs and these mutations are enriched for computationally predicted impacts on splicing. Evidence of increased missense PMM burden was not seen in the full cohort. However, missense burden signal increased in subcohorts of families where probands lacked nonsynonymous germline mutations, especially in genes intolerant to mutations. Parental mosaic mutations that were transmitted account for 6.8% of the presumed de novo mutations in the children. PMMs were identified in previously implicated high-confidence neurodevelopmental disorder risk genes, such as CHD2, CTNNB1, SCN2A, and SYNGAP1, as well as candidate risk genes with predicted functions in chromatin remodeling or neurodevelopment, including ACTL6B, BAZ2B, COL5A3, SSRP1, and UNC79. We estimate that PMMs potentially contribute risk to 3%-4% of simplex ASD case subjects and future studies of PMMs in ASD and related disorders are warranted."	"High frequency of mosaic pathogenic variants in genes causing epilepsy-related neurodevelopmental disorders. PurposeMosaicism probably represents an underreported cause of genetic disorders due to detection challenges during routine molecular diagnostics. The purpose of this study was to evaluate the frequency of mosaicism detected by next-generation sequencing in genes associated with epilepsy-related neurodevelopmental disorders.MethodsWe conducted a retrospective analysis of 893 probands with epilepsy who had a multigene epilepsy panel or whole-exome sequencing performed in a clinical diagnostic laboratory and were positive for a pathogenic or likely pathogenic variant in one of nine genes (CDKL5, GABRA1, GABRG2, GRIN2B, KCNQ2, MECP2, PCDH19, SCN1A, or SCN2A). Parental results were available for 395 of these probands.ResultsMosaicism was most common in the CDKL5, PCDH19, SCN2A, and SCN1A genes. Mosaicism was observed in GABRA1, GABRG2, and GRIN2B, which previously have not been reported to have mosaicism, and also in KCNQ2 and MECP2. Parental mosaicism was observed for pathogenic variants in multiple genes including KCNQ2, MECP2, SCN1A, and SCN2A.ConclusionMosaic pathogenic variants were identified frequently in nine genes associated with various neurological conditions. Given the potential clinical ramifications, our findings suggest that next-generation sequencing diagnostic methods may be utilized when testing these genes in a diagnostic laboratory."	"Targeted sequencing and functional analysis reveal brain-size-related genes and their networks in autism spectrum disorders. Autism spectrum disorder (ASD) represents a set of complex neurodevelopmental disorders with large degrees of heritability and heterogeneity. We sequenced 136 microcephaly or macrocephaly (Mic-Mac)-related genes and 158 possible ASD-risk genes in 536 Chinese ASD probands and detected 22 damaging de novo mutations (DNMs) in 20 genes, including CHD8 and SCN2A, with recurrent events. Nine of the 20 genes were previously reported to harbor DNMs in ASD patients from other populations, while 11 of them were first identified in present study. We combined genetic variations of the 294 sequenced genes from publicly available whole-exome or whole-genome sequencing studies (4167 probands plus 1786 controls) with our Chinese population (536 cases plus 1457 controls) to optimize the power of candidate-gene prioritization. As a result, we prioritized 67 ASD-candidate genes that exhibited significantly higher probabilities of haploinsufficiency and genic intolerance, and significantly interacted and co-expressed with each another, as well as other known ASD-risk genes. Probands with DNMs or rare inherited mutations in the 67 candidate genes exhibited significantly lower intelligence quotients, supporting their strong functional impact. In addition, we prioritized 39 ASD-related Mic-Mac-risk genes, and showed their interaction and co-expression in a functional network that converged on chromatin remodeling, synapse transmission and cell cycle progression. Genes within the three functional subnetworks exhibited distinct and recognizable spatiotemporal-expression patterns in human brains and laminar-expression profiles in the developing neocortex, highlighting their important roles in brain development. Our results indicate some of Mic-Mac-risk genes are involved in ASD."	"Prospective cohort study for identification of underlying genetic causes in neonatal encephalopathy using whole-exome sequencing. PurposeNeonatal encephalopathy, which is characterized by a decreased level of consciousness, occurs in 1-7/1,000 live-term births. In more than half of term newborns, there is no identifiable etiological factor. To identify underlying genetic defects, we applied whole-exome sequencing (WES) in term newborns with neonatal encephalopathy as a prospective cohort study.MethodsTerm newborns with neonatal encephalopathy and no history of perinatal asphyxia were included. WES was performed using patient and both parents' DNA.ResultsNineteen patients fulfilling inclusion criteria were enrolled. Five patients were excluded owing to withdrawal of consent, no parental DNA samples, or a genetic diagnosis prior to WES. Fourteen patients underwent WES. We confirmed a genetic diagnosis in five patients (36%): epileptic encephalopathy associated with autosomal dominant de novo variants in SCN2A (p.Met1545Val), KCNQ2 (p.Asp212Tyr), and GNAO1 (p.Gly40Arg); lipoic acid synthetase deficiency due to compound heterozygous variants in LIAS (p.Ala253Pro and p.His236Gln); and encephalopathy associated with an X-linked variant in CUL4B (p.Asn211Ser).ConclusionWES is helpful at arriving genetic diagnoses in neonatal encephalopathy and/or seizures and brain damage. It will increase our understanding and probably enable us to develop targeted neuroprotective treatment strategies."	"Nav1.2 is expressed in caudal ganglionic eminence-derived disinhibitory interneurons: Mutually exclusive distributions of Nav1.1 and Nav1.2. Nav1.1 and Nav1.2 are the voltage-gated sodium channel pore-forming alpha I and II subunits, encoded by the genes SCN1A and SCN2A. Although mutations of both genes have similarly been described in patients with epilepsy, autism and/or intellectual disability, their expression sites in brain are largely distinct. Nav1.1 was shown to be expressed dominantly in parvalbumin (PV)-positive or somatostatin (SST)-positive inhibitory neurons and in a sparsely-distributed subpopulation of excitatory neurons. In contrast, Nav1.2 has been reported to be dominantly expressed in excitatory neurons. Here we show that Nav1.2 is also expressed in caudal ganglionic eminence (CGE)-derived inhibitory neurons, and expressions of Nav1.1 and Nav1.2 are mutually-exclusive in many of brain regions including neocortex, hippocampus, cerebellum, striatum and globus pallidus. In neocortex at postnatal day 15, in addition to the expression in excitatory neurons we show that Nav1.2 is expressed in reelin (RLN)-positive/SST-negative inhibitory neurons that are presumably single-bouquet cells because of their cortical layer I-limited distribution, and vasoactive intestinal peptide (VIP)-positive neurons that would be multipolar cell because of their layer I/II margin and layer VI distribution. Although Nav1.2 has previously been reported to be expressed in SST-positive cells, we here show that Nav1.2 is not expressed in either of PV-positive or SST-positive inhibitory neurons. PV-positive and SST-positive inhibitory neurons derive from medial ganglionic eminence (MGE) and innervate excitatory neurons, while VIP-positive and RLN-positive/SST-negative inhibitory neurons derive from CGE, innervate on inhibitory neurons and play disinhibitory roles in the neural network. Our results therefore indicate that, while Nav1.1 is expressed in MEG-derived inhibitory neurons, Nav1.2 is expressed in CGE-derived disinhibitory interneurons in addition to excitatory neurons. These findings should contribute to understanding of the pathology of neurodevelopmental diseases caused by SCN2A mutations."	"Rates, distribution and implications of postzygotic mosaic mutations in autism spectrum disorder. We systematically analyzed postzygotic mutations (PZMs) in whole-exome sequences from the largest collection of trios (5,947) with autism spectrum disorder (ASD) available, including 282 unpublished trios, and performed resequencing using multiple independent technologies. We identified 7.5% of de novo mutations as PZMs, 83.3% of which were not described in previous studies. Damaging, nonsynonymous PZMs within critical exons of prenatally expressed genes were more common in ASD probands than controls (P &lt; 1 × 10<sup>-6</sup>), and genes carrying these PZMs were enriched for expression in the amygdala (P = 5.4 × 10<sup>-3</sup>). Two genes (KLF16 and MSANTD2) were significantly enriched for PZMs genome-wide, and other PZMs involved genes (SCN2A, HNRNPU and SMARCA4) whose mutation is known to cause ASD or other neurodevelopmental disorders. PZMs constitute a significant proportion of de novo mutations and contribute importantly to ASD risk."	"The therapeutic implication of a novel SCN2A mutation associated early-onset epileptic encephalopathy with Rett-like features. Epileptic encephalopathies are highly heterogeneous and phenotypical disorders with different underlying genetic defects. Mutations in the SCN2A gene cause different epilepsy syndromes, including epilepsy of infancy with migrating focal seizures, Ohtahara syndrome, and West syndrome. We utilized a targeted next generation sequencing (NGS) approach on a girl with early-onset seizures and Rett-like features, including autistic behavior, limited hand function with chorea, and profound intellectual disability, to identify novel missense mutation (c.1270G&gt;A; p.V424M) in the SCN2A gene, which encodes the αII-subunit of the voltage-gated Na<sup>+</sup> channel (Nav1.2). The identified SCN2A mutation responsible for the development of the disease is confirmed to be de novo for the proband. Our findings broaden the clinical spectrum of SCN2A mutations, which resembles clinical phenotypes of SCN1A mutations by manifesting as fever sensitive seizures, and highlights that SCN2A mutations are an important cause of early-onset epileptic encephalopathies with movement disorders. In addition, the use of levetiracetam to treat SCN2A epileptic encephalopathy, when Na<sup>+</sup> channel-blocking anticonvulsants are ineffective, is also recommended."	"Autism spectrum disorder: neuropathology and animal models. Autism spectrum disorder (ASD) has a major impact on the development and social integration of affected individuals and is the most heritable of psychiatric disorders. An increase in the incidence of ASD cases has prompted a surge in research efforts on the underlying neuropathologic processes. We present an overview of current findings in neuropathology studies of ASD using two investigational approaches, postmortem human brains and ASD animal models, and discuss the overlap, limitations, and significance of each. Postmortem examination of ASD brains has revealed global changes including disorganized gray and white matter, increased number of neurons, decreased volume of neuronal soma, and increased neuropil, the last reflecting changes in densities of dendritic spines, cerebral vasculature and glia. Both cortical and non-cortical areas show region-specific abnormalities in neuronal morphology and cytoarchitectural organization, with consistent findings reported from the prefrontal cortex, fusiform gyrus, frontoinsular cortex, cingulate cortex, hippocampus, amygdala, cerebellum and brainstem. The paucity of postmortem human studies linking neuropathology to the underlying etiology has been partly addressed using animal models to explore the impact of genetic and non-genetic factors clinically relevant for the ASD phenotype. Genetically modified models include those based on well-studied monogenic ASD genes (NLGN3, NLGN4, NRXN1, CNTNAP2, SHANK3, MECP2, FMR1, TSC1/2), emerging risk genes (CHD8, SCN2A, SYNGAP1, ARID1B, GRIN2B, DSCAM, TBR1), and copy number variants (15q11-q13 deletion, 15q13.3 microdeletion, 15q11-13 duplication, 16p11.2 deletion and duplication, 22q11.2 deletion). Models of idiopathic ASD include inbred rodent strains that mimic ASD behaviors as well as models developed by environmental interventions such as prenatal exposure to sodium valproate, maternal autoantibodies, and maternal immune activation. In addition to replicating some of the neuropathologic features seen in postmortem studies, a common finding in several animal models of ASD is altered density of dendritic spines, with the direction of the change depending on the specific genetic modification, age and brain region. Overall, postmortem neuropathologic studies with larger sample sizes representative of the various ASD risk genes and diverse clinical phenotypes are warranted to clarify putative etiopathogenic pathways further and to promote the emergence of clinically relevant diagnostic and therapeutic tools. In addition, as genetic alterations may render certain individuals more vulnerable to developing the pathological changes at the synapse underlying the behavioral manifestations of ASD, neuropathologic investigation using genetically modified animal models will help to improve our understanding of the disease mechanisms and enhance the development of targeted treatments."	"Cacna1g is a genetic modifier of epilepsy in a mouse model of Dravet syndrome. Dravet syndrome, an early onset epileptic encephalopathy, is most often caused by de novo mutation of the neuronal voltage-gated sodium channel gene SCN1A. Mouse models with deletion of Scn1a recapitulate Dravet syndrome phenotypes, including spontaneous generalized tonic-clonic seizures, susceptibility to seizures induced by elevated body temperature, and elevated risk of sudden unexpected death in epilepsy. Importantly, the epilepsy phenotype of Dravet mouse models is highly strain-dependent, suggesting a strong influence of genetic modifiers. We previously identified Cacna1g, encoding the Cav3.1 subunit of the T-type calcium channel family, as an epilepsy modifier in the Scn2a<sup>Q54</sup> transgenic epilepsy mouse model. In this study, we asked whether transgenic alteration of Cacna1g expression modifies severity of the Scn1a<sup>+/-</sup> Dravet phenotype. Scn1a<sup>+/-</sup> mice with decreased Cacna1g expression showed partial amelioration of disease phenotypes with improved survival and reduced spontaneous seizure frequency. However, reduced Cacna1g expression did not alter susceptibility to hyperthermia-induced seizures. Transgenic elevation of Cacna1g expression had no effect on the Scn1a<sup>+/-</sup> epilepsy phenotype. These results provide support for Cacna1g as a genetic modifier in a mouse model of Dravet syndrome and suggest that Cav3.1 may be a potential molecular target for therapeutic intervention in patients."	"A mutation in GABRB3 associated with Dravet syndrome. Dravet syndrome is a rare and severe type of epilepsy in infants. Approximately, 70-80% of patients with Dravet syndrome have mutations in SCN1A, the gene encoding the alpha-1 subunit of the sodium channel, while some simplex patients have variants in one of several other genes, including but not limited to GABRA1, SCN2A, STXBP1, GABRG2, and SCN1B. In this study, we performed exome sequencing in six patients with SCN1A-negative Dravet syndrome to identify other genes related to this disorder. In one affected individual, we detected a novel de novo heterozygous missense variant, c.695G&gt;A, p.(Arg232Gln), in GABRB3, the gene encoding the β3-subunit of the gamma-aminobutyric acid type A (GABAA) receptor, which mediates inhibitory signaling within the central nervous system. In summary, the data in this study identify GABRB3 as a candidate gene for Dravet syndrome."	"Comparison and optimization of in silico algorithms for predicting the pathogenicity of sodium channel variants in epilepsy. Variants in neuronal voltage-gated sodium channel α-subunits genes SCN1A, SCN2A, and SCN8A are common in early onset epileptic encephalopathies and other autosomal dominant childhood epilepsy syndromes. However, in clinical practice, missense variants are often classified as variants of uncertain significance when missense variants are identified but heritability cannot be determined. Genetic testing reports often include results of computational tests to estimate pathogenicity and the frequency of that variant in population-based databases. The objective of this work was to enhance clinicians' understanding of results by (1) determining how effectively computational algorithms predict epileptogenicity of sodium channel (SCN) missense variants; (2) optimizing their predictive capabilities; and (3) determining if epilepsy-associated SCN variants are present in population-based databases. This will help clinicians better understand the results of indeterminate SCN test results in people with epilepsy. Pathogenic, likely pathogenic, and benign variants in SCNs were identified using databases of sodium channel variants. Benign variants were also identified from population-based databases. Eight algorithms commonly used to predict pathogenicity were compared. In addition, logistic regression was used to determine if a combination of algorithms could better predict pathogenicity. Based on American College of Medical Genetic Criteria, 440 variants were classified as pathogenic or likely pathogenic and 84 were classified as benign or likely benign. Twenty-eight variants previously associated with epilepsy were present in population-based gene databases. The output provided by most computational algorithms had a high sensitivity but low specificity with an accuracy of 0.52-0.77. Accuracy could be improved by adjusting the threshold for pathogenicity. Using this adjustment, the Mendelian Clinically Applicable Pathogenicity (M-CAP) algorithm had an accuracy of 0.90 and a combination of algorithms increased the accuracy to 0.92. Potentially pathogenic variants are present in population-based sources. Most computational algorithms overestimate pathogenicity; however, a weighted combination of several algorithms increased classification accuracy to &gt;0.90."	"In utero seizures revealing dentato-olivary dysplasia caused by SCN2A mutation. NA"	"Assessment of the ExAC data set for the presence of individuals with pathogenic genotypes implicated in severe Mendelian pediatric disorders. PurposeWe analyzed the Exome Aggregation Consortium (ExAC) data set for the presence of individuals with pathogenic genotypes implicated in Mendelian pediatric disorders.MethodsClinVar likely/pathogenic variants supported by at least one peer-reviewed publication were assessed within the ExAC database to identify individuals expected to exhibit a childhood disorder based on concordance with disease inheritance modes: heterozygous (for dominant), homozygous (for recessive) or hemizygous (for X-linked recessive conditions). Variants from 924 genes reported to cause Mendelian childhood disorders were considered.ResultsWe identified ExAC individuals with candidate pathogenic genotypes for 190 previously published likely/pathogenic variants in 128 genes. After curation, we determined that 113 of the variants have sufficient support for pathogenicity and identified 1,717 ExAC individuals (~2.8% of the ExAC population) with corresponding possible/disease-associated genotypes implicated in rare Mendelian disorders, ranging from mild (e.g., due to SCN2A deficiency) to severe pediatric conditions (e.g., due to FGFR1 deficiency).ConclusionLarge-scale sequencing projects and data aggregation consortia provide unprecedented opportunities to determine the prevalence of pathogenic genotypes in unselected populations. This knowledge is crucial for understanding the penetrance of disease-associated variants, phenotypic variability, somatic mosaicism, as well as published literature curation for variant classification procedures and predicted clinical outcomes."	"Genetic and phenotypic heterogeneity suggest therapeutic implications in SCN2A-related disorders. Mutations in SCN2A, a gene encoding the voltage-gated sodium channel Nav1.2, have been associated with a spectrum of epilepsies and neurodevelopmental disorders. Here, we report the phenotypes of 71 patients and review 130 previously reported patients. We found that (i) encephalopathies with infantile/childhood onset epilepsies (≥3 months of age) occur almost as often as those with an early infantile onset (&lt;3 months), and are thus more frequent than previously reported; (ii) distinct phenotypes can be seen within the late onset group, including myoclonic-atonic epilepsy (two patients), Lennox-Gastaut not emerging from West syndrome (two patients), and focal epilepsies with an electrical status epilepticus during slow sleep-like EEG pattern (six patients); and (iii) West syndrome constitutes a common phenotype with a major recurring mutation (p.Arg853Gln: two new and four previously reported children). Other known phenotypes include Ohtahara syndrome, epilepsy of infancy with migrating focal seizures, and intellectual disability or autism without epilepsy. To assess the response to antiepileptic therapy, we retrospectively reviewed the treatment regimen and the course of the epilepsy in 66 patients for which well-documented medical information was available. We find that the use of sodium channel blockers was often associated with clinically relevant seizure reduction or seizure freedom in children with early infantile epilepsies (&lt;3 months), whereas other antiepileptic drugs were less effective. In contrast, sodium channel blockers were rarely effective in epilepsies with later onset (≥3 months) and sometimes induced seizure worsening. Regarding the genetic findings, truncating mutations were exclusively seen in patients with late onset epilepsies and lack of response to sodium channel blockers. Functional characterization of four selected missense mutations using whole cell patch-clamping in tsA201 cells-together with data from the literature-suggest that mutations associated with early infantile epilepsy result in increased sodium channel activity with gain-of-function, characterized by slowing of fast inactivation, acceleration of its recovery or increased persistent sodium current. Further, a good response to sodium channel blockers clinically was found to be associated with a relatively small gain-of-function. In contrast, mutations in patients with late-onset forms and an insufficient response to sodium channel blockers were associated with loss-of-function effects, including a depolarizing shift of voltage-dependent activation or a hyperpolarizing shift of channel availability (steady-state inactivation). Our clinical and experimental data suggest a correlation between age at disease onset, response to sodium channel blockers and the functional properties of mutations in children with SCN2A-related epilepsy."	"Scn2a deletion improves survival and brain-heart dynamics in the Kcna1-null mouse model of sudden unexpected death in epilepsy (SUDEP). People with epilepsy have greatly increased probability of premature mortality due to sudden unexpected death in epilepsy (SUDEP). Identifying which patients are most at risk of SUDEP is hindered by a complex genetic etiology, incomplete understanding of the underlying pathophysiology and lack of prognostic biomarkers. Here we evaluated heterozygous Scn2a gene deletion (Scn2a+/-) as a protective genetic modifier in the Kcna1 knockout mouse (Kcna1-/-) model of SUDEP, while searching for biomarkers of SUDEP risk embedded in electroencephalography (EEG) and electrocardiography (ECG) recordings. The human epilepsy gene Kcna1 encodes voltage-gated Kv1.1 potassium channels that act to dampen neuronal excitability whereas Scn2a encodes voltage-gated Nav1.2 sodium channels important for action potential initiation and conduction. SUDEP-prone Kcna1-/- mice with partial genetic ablation of Nav1.2 channels (i.e. Scn2a+/-; Kcna1-/-) exhibited a two-fold increase in survival. Classical analysis of EEG and ECG recordings separately showed significantly decreased seizure durations in Scn2a+/-; Kcna1-/- mice compared with Kcna1-/- mice, without substantial modification of cardiac abnormalities. Novel analysis of the EEG and ECG together revealed a significant reduction in EEG-ECG association in Kcna1-/- mice compared with wild types, which was partially restored in Scn2a+/-; Kcna1-/- mice. The degree of EEG-ECG association was also proportional to the survival rate of mice across genotypes. These results show that Scn2a gene deletion acts as protective genetic modifier of SUDEP and suggest measures of brain-heart association as potential indices of SUDEP susceptibility."	"Opposing Effects on NaV1.2 Function Underlie Differences Between SCN2A Variants Observed in Individuals With Autism Spectrum Disorder or Infantile Seizures. Variants in the SCN2A gene that disrupt the encoded neuronal sodium channel NaV1.2 are important risk factors for autism spectrum disorder (ASD), developmental delay, and infantile seizures. Variants observed in infantile seizures are predominantly missense, leading to a gain of function and increased neuronal excitability. How variants associated with ASD affect NaV1.2 function and neuronal excitability are unclear. We examined the properties of 11 ASD-associated SCN2A variants in heterologous expression systems using whole-cell voltage-clamp electrophysiology and immunohistochemistry. Resultant data were incorporated into computational models of developing and mature cortical pyramidal cells that express NaV1.2. In contrast to gain of function variants that contribute to seizure, we found that all ASD-associated variants dampened or eliminated channel function. Incorporating these electrophysiological results into a compartmental model of developing excitatory neurons demonstrated that all ASD variants, regardless of their mechanism of action, resulted in deficits in neuronal excitability. Corresponding analysis of mature neurons predicted minimal change in neuronal excitability. This functional characterization thus identifies SCN2A mutation and NaV1.2 dysfunction as the most frequently observed ASD risk factor detectable by exome sequencing and suggests that associated changes in neuronal excitability, particularly in developing neurons, may contribute to ASD etiology."	"Unusual association of SCN2A epileptic encephalopathy with severe cortical dysplasia detected by prenatal MRI. We present an atypical association of SCN2A epileptic encephalopathy with severe cortical dysplasia. SCN2A mutations are associated with epileptic syndromes from benign to extremely severe in absence of such macroscopic brain findings. Prenatal MRI (Magnetic Resonance Imaging) in a 32 weeks fetus, with US (Ultrasonography) diagnosis of isolated ventriculomegaly showed CNS (Central Nervous System) dysplasia characterized by lack of differentiation between cortical and subcortical layers, pachygyria and corpus callosum dysgenesis. Postnatal MRI confirmed the prenatal findings. On day 6 the baby presented a focal status epilepticus, partially controlled by phenobarbital, phenytoin, and levetiracetam. After three weeks a moderate improvement in seizure control has been achieved with carbamazepine. Exome sequencing detected a de novo heterozygous mutation in the SCN2A gene, encoding the αII-subunit of a sodium channel. The patient findings expand the phenotype spectrum of SCN2A mutations to epileptic encephalopathies with macroscopic brain developmental features."	"[A case of West syndrome with a deletion at chromosome 2q24.3-q31.3]. A male infant suffered from partial seizures at four months of age, and developed West syndrome at eight months of age. ACTH therapy was effective for the West syndrome. However, partial seizures recurred at 14 months of age, which could not be sufficiently controlled with an anti-epileptic drug. A characteristic facial appearance, great toe abnormalities, and developmental retardation were noted. An interstitial deletion of 2q was detected by chromosomal G-banding and array comparative genomic hybridization (CGH) confirmed the deletion as arr 2q24.3q31.3 (166,303,447-180,982.972) ×1 (build19). He presented with clinical findings similar to those of the recently defined 2q31.1 deletion syndrome. The deletion extended to the SCN1A gene, a gene responsible for Dravet syndrome, mapped to the 2q24.3 region. No deletion was noted in the adjacent SCN2A gene. Thus, for interstitial deletions, detailed breakpoints should be identified by array CGH. The frequency of epilepsy varies with deletion ranges in the 2q24-q31 region, suggesting that deletions in the SCN1A gene deletion, as well as in the 2q31.1 region, are involved in the development of West syndrome."	"SCN3A deficiency associated with increased seizure susceptibility. Mutations in voltage-gated sodium channels expressed highly in the brain (SCN1A, SCN2A, SCN3A, and SCN8A) are responsible for an increasing number of epilepsy syndromes. In particular, mutations in the SCN3A gene, encoding the pore-forming Nav1.3 α subunit, have been identified in patients with focal epilepsy. Biophysical characterization of epilepsy-associated SCN3A variants suggests that both gain- and loss-of-function SCN3A mutations may lead to increased seizure susceptibility. In this report, we identified a novel SCN3A variant (L247P) by whole exome sequencing of a child with focal epilepsy, developmental delay, and autonomic nervous system dysfunction. Voltage clamp analysis showed no detectable sodium current in a heterologous expression system expressing the SCN3A-L247P variant. Furthermore, cell surface biotinylation demonstrated a reduction in the amount of SCN3A-L247P at the cell surface, suggesting the SCN3A-L247P variant is a trafficking-deficient mutant. To further explore the possible clinical consequences of reduced SCN3A activity, we investigated the effect of a hypomorphic Scn3a allele (Scn3a<sup>Hyp</sup>) on seizure susceptibility and behavior using a gene trap mouse line. Heterozygous Scn3a mutant mice (Scn3a<sup>+/Hyp</sup>) did not exhibit spontaneous seizures nor were they susceptible to hyperthermia-induced seizures. However, they displayed increased susceptibility to electroconvulsive (6Hz) and chemiconvulsive (flurothyl and kainic acid) induced seizures. Scn3a<sup>+/Hyp</sup> mice also exhibited deficits in locomotor activity and motor learning. Taken together, these results provide evidence that loss-of-function of SCN3A caused by reduced protein expression or deficient trafficking to the plasma membrane may contribute to increased seizure susceptibility."	"CaMKII modulates sodium current in neurons from epileptic Scn2a mutant mice. Monogenic epilepsies with wide-ranging clinical severity have been associated with mutations in voltage-gated sodium channel genes. In the Scn2a<sup>Q54</sup> mouse model of epilepsy, a focal epilepsy phenotype is caused by transgenic expression of an engineered NaV1.2 mutation displaying enhanced persistent sodium current. Seizure frequency and other phenotypic features in Scn2a<sup>Q54</sup> mice depend on genetic background. We investigated the neurophysiological and molecular correlates of strain-dependent epilepsy severity in this model. Scn2a<sup>Q54</sup> mice on the C57BL/6J background (B6.Q54) exhibit a mild disorder, whereas animals intercrossed with SJL/J mice (F1.Q54) have a severe phenotype. Whole-cell recording revealed that hippocampal pyramidal neurons from B6.Q54 and F1.Q54 animals exhibit spontaneous action potentials, but F1.Q54 neurons exhibited higher firing frequency and greater evoked activity compared with B6.Q54 neurons. These findings correlated with larger persistent sodium current and depolarized inactivation in neurons from F1.Q54 animals. Because calcium/calmodulin protein kinase II (CaMKII) is known to modify persistent current and channel inactivation in the heart, we investigated CaMKII as a plausible modulator of neuronal sodium channels. CaMKII activity in hippocampal protein lysates exhibited a strain-dependence in Scn2a<sup>Q54</sup> mice with higher activity in F1.Q54 animals. Heterologously expressed NaV1.2 channels exposed to activated CaMKII had enhanced persistent current and depolarized channel inactivation resembling the properties of F1.Q54 neuronal sodium channels. By contrast, inhibition of CaMKII attenuated persistent current, evoked a hyperpolarized channel inactivation, and suppressed neuronal excitability. We conclude that CaMKII-mediated modulation of neuronal sodium current impacts neuronal excitability in Scn2a<sup>Q54</sup> mice and may represent a therapeutic target for the treatment of epilepsy."	"Genetics and genotype-phenotype correlations in early onset epileptic encephalopathy with burst suppression. We sought to identify genetic causes of early onset epileptic encephalopathies with burst suppression (Ohtahara syndrome and early myoclonic encephalopathy) and evaluate genotype-phenotype correlations. We enrolled 33 patients with a referral diagnosis of Ohtahara syndrome or early myoclonic encephalopathy without malformations of cortical development. We performed detailed phenotypic assessment including seizure presentation, electroencephalography, and magnetic resonance imaging. We confirmed burst suppression in 28 of 33 patients. Research-based exome sequencing was performed for patients without a previously identified molecular diagnosis from clinical evaluation or a research-based epilepsy gene panel. In 17 of 28 (61%) patients with confirmed early burst suppression, we identified variants predicted to be pathogenic in KCNQ2 (n = 10), STXBP1 (n = 2), SCN2A (n = 2), PNPO (n = 1), PIGA (n = 1), and SEPSECS (n = 1). In 3 of 5 (60%) patients without confirmed early burst suppression, we identified variants predicted to be pathogenic in STXBP1 (n = 2) and SCN2A (n = 1). The patient with the homozygous PNPO variant had a low cerebrospinal fluid pyridoxal-5-phosphate level. Otherwise, no early laboratory or clinical features distinguished the cases associated with pathogenic variants in specific genes from each other or from those with no prior genetic cause identified. We characterize the genetic landscape of epileptic encephalopathy with burst suppression, without brain malformations, and demonstrate feasibility of genetic diagnosis with clinically available testing in &gt;60% of our cohort, with KCNQ2 implicated in one-third. This electroclinical syndrome is associated with pathogenic variation in SEPSECS. Ann Neurol 2017;81:419-429."	"SCN2A p.Ala263Val Variant a Phenotype of Neonatal Seizures Followed by Paroxysmal Ataxia in Toddlers. NA"	"SUMOylation of NaV1.2 channels mediates the early response to acute hypoxia in central neurons. The mechanism for the earliest response of central neurons to hypoxia-an increase in voltage-gated sodium current (INa)-has been unknown. Here, we show that hypoxia activates the Small Ubiquitin-like Modifier (SUMO) pathway in rat cerebellar granule neurons (CGN) and that SUMOylation of NaV1.2 channels increases INa. The time-course for SUMOylation of single NaV1.2 channels at the cell surface and changes in INa coincide, and both are prevented by mutation of NaV1.2-Lys38 or application of a deSUMOylating enzyme. Within 40 s, hypoxia-induced linkage of SUMO1 to the channels is complete, shifting the voltage-dependence of channel activation so that depolarizing steps evoke larger sodium currents. Given the recognized role of INa in hypoxic brain damage, the SUMO pathway and NaV1.2 are identified as potential targets for neuroprotective interventions."	"[The diagnosis of idiopathic epilepsy in children based on the algorithm of molecular-genetic studies]. To study mutations and polymorphisms in the sodium channels genes, determining the development of idiopathic epilepsy (IE). The study of SCN1A gene by direct Sanger sequencing in 53 patients and targeted resequencing of the regions of 34 genes in 40 patients with different clinical forms of IE was performed. Seven mutations (c.3022G&gt;T, c.3637C&gt;T, c.1144G&gt;T, c.80G&gt;C, c.1603C&gt;T, c.2427G&gt;A and c.1131A&gt;C) were detected among 53 patients by direct Sanger sequencing of SCN1A gene. The mutations of SCN1A gene (2 - nonsense mutation, 5 - missense mutation) were identified in 7/40 (17.5%) patients with epilepsy using high-performance sequencing, Mutations in sodium channel genes encoding other subunits: SCN1B, SCN2A, SCN9A were identified in 6 patients. As epileptic encephalopathy is polygenic, it is important to conduct genetic testing of more genes (primarily sodium channel genes - SCN1B, SCN2A, SCN9A etc.) using special gene panels to find the molecular defect in DNA. Цель исследования. Изучение мутаций и полиморфизмов в генах натриевых каналов, детерминирующих развитие идиопатических форм эпилепсии (ИЭ). Материал и методы. Исследовали ген SCN1A методом прямого секвенирования по Сэнгеру у 53 пациентов и провели таргетное ресеквенирование областей 34 генов у 40 пациентов с различными клиническими формами ИЭ. Результаты. Методом прямого секвенирования по Сэнгеру гена SCN1А у 53 пациентов выявлено 7 мутаций: с.3022G&gt;T, c.3637C&gt;T, c.1144G&gt;T, c.80G&gt;C, c.1603C&gt;T, c.2427G&gt;A и с.1131A&gt;C. При обследовании детей с эпилепсией с использованием панели генов методом высокопроизводительного секвенирования у 7 (17,5%) из 40 пациентов были выявлены мутации в гене SCN1A (2 нонсенс-мутации, 5 миссенс-мутаций), у 6 пациентов - мутации в генах натриевых каналов, кодирующих другие субъединицы: SCN1B, SCN2A, SCN9A. Заключение. Ввиду того что эпилептические энцефалопатии полигенны, важно проведение генетического тестирования большего количества генов (в первую очередь генов натриевых каналов - SCN1B, SCN2A, SCN9A и т.д.) с использованием специальных панелей для поиска молекулярного дефекта в ДНК. Цель исследования. Изучение мутаций и полиморфизмов в генах натриевых каналов, детерминирующих развитие идиопатических форм эпилепсии (ИЭ). Материал и методы. Исследовали ген SCN1A методом прямого секвенирования по Сэнгеру у 53 пациентов и провели таргетное ресеквенирование областей 34 генов у 40 пациентов с различными клиническими формами ИЭ. Результаты. Методом прямого секвенирования по Сэнгеру гена SCN1А у 53 пациентов выявлено 7 мутаций: с.3022G&gt;T, c.3637C&gt;T, c.1144G&gt;T, c.80G&gt;C, c.1603C&gt;T, c.2427G&gt;A и с.1131A&gt;C. При обследовании детей с эпилепсией с использованием панели генов методом высокопроизводительного секвенирования у 7 (17,5%) из 40 пациентов были выявлены мутации в гене SCN1A (2 нонсенс-мутации, 5 миссенс-мутаций), у 6 пациентов — мутации в генах натриевых каналов, кодирующих другие субъединицы: SCN1B, SCN2A, SCN9A. Заключение. Ввиду того что эпилептические энцефалопатии полигенны, важно проведение генетического тестирования большего количества генов (в первую очередь генов натриевых каналов — SCN1B, SCN2A, SCN9A и т.д.) с использованием специальных панелей для поиска молекулярного дефекта в ДНК."	"Quiescin-sulfhydryl oxidase inhibits prion formation in vitro. Prions are infectious proteins that cause a group of fatal transmissible diseases in animals and humans. The scrapie isoform (PrP<sup>Sc</sup>) of the cellular prion protein (PrP<sup>C</sup>) is the only known component of the prion. Several lines of evidence have suggested that the formation and molecular features of PrP<sup>Sc</sup> are associated with an abnormal unfolding/refolding process. Quiescin-sulfhydryl oxidase (QSOX) plays a role in protein folding by introducing disulfides into unfolded reduced proteins. Here we report that QSOX inhibits human prion propagation in protein misfolding cyclic amplification reactions and murine prion propagation in scrapie-infected neuroblastoma cells. Moreover, QSOX preferentially binds PrP<sup>Sc</sup> from prion-infected human or animal brains, but not PrP<sup>C</sup> from uninfected brains. Surface plasmon resonance of the recombinant mouse PrP (moPrP) demonstrates that the affinity of QSOX for monomer is significantly lower than that for octamer (312 nM vs 1.7 nM). QSOX exhibits much lower affinity for N-terminally truncated moPrP (PrP89-230) than for the full-length moPrP (PrP23-231) (312 nM vs 2 nM), suggesting that the N-terminal region of PrP is critical for the interaction of PrP with QSOX. Our study indicates that QSOX may play a role in prion formation, which may open new therapeutic avenues for treating prion diseases."	"Association of rare missense variants in the second intracellular loop of NaV1.7 sodium channels with familial autism. Autism spectrum disorder (ASD) is a complex neurodevelopmental disorder often accompanied by intellectual disability, language impairment and medical co-morbidities. The heritability of autism is high and multiple genes have been implicated as causal. However, most of these genes have been identified in de novo cases. To further the understanding of familial autism, we performed whole-exome sequencing on five families in which second- and third-degree relatives were affected. By focusing on novel and protein-altering variants, we identified a small set of candidate genes. Among these, a novel private missense C1143F variant in the second intracellular loop of the voltage-gated sodium channel NaV1.7, encoded by the SCN9A gene, was identified in one family. Through electrophysiological analysis, we show that NaV1.7<sup>C1143F</sup> exhibits partial loss-of-function effects, resulting in slower recovery from inactivation and decreased excitability in cultured cortical neurons. Furthermore, for the same intracellular loop of NaV1.7, we found an excess of rare variants in a case-control variant-burden study. Functional analysis of one of these variants, M932L/V991L, also demonstrated reduced firing in cortical neurons. However, although this variant is rare in Caucasians, it is frequent in Latino population, suggesting that genetic background can alter its effects on phenotype. Although the involvement of the SCN1A and SCN2A genes encoding NaV1.1 and NaV1.2 channels in de novo ASD has previously been demonstrated, our study indicates the involvement of inherited SCN9A variants and partial loss-of-function of NaV1.7 channels in the etiology of rare familial ASD."	"Polymorphisms of ABAT, SCN2A and ALDH5A1 may affect valproic acid responses in the treatment of epilepsy in Chinese. The clinical efficacy of valproic acid (VPA) varies greatly among epileptic patients. To find the potential genetic factors related to VPA responses, the pharmacogenetics study was conducted. Two hundred and one Chinese Han epileptic patients who were treated by VPA for at least 1 year were recruited. Up to 24 SNPs in 11 candidate genes that correlate with the metabolism, transport or target of VPA were genotyped. Three SNPs, rs1731017 (ABAT), rs2304016 (SCN2A) and rs1054899 (ALDH5A1) were found associated with VPA responses with the p-values of 0.003, 0.007 and 0.048, respectively. Further interaction analysis showed that the interaction between rs17183814 (ABAT) and rs1641022 (SCN2A) was also correlated with the response of VPA (p = 0.006). This study found three SNPs and one interaction among ABAT, SCN2A and ALDH5A1 were significantly associated with VPA response, which indicated that these genes may play important roles in the pharmacological mechanism of VPA."	"Rapid and safe response to low-dose carbamazepine in neonatal epilepsy. To evaluate treatment responses in benign familial neonatal epilepsy (BFNE). We recruited patients with BFNE through a multicenter international collaboration and reviewed electroclinical and genetic details, and treatment response. All patients were tested at minimum for mutations/deletions in the KCNQ2, KCNQ3, and SCN2A genes. Nineteen patients were included in this study. A family history of neonatal seizures was positive in 16 patients, and one additional patient had a family history of infantile seizures. Mutations or deletions of KCNQ2 were found in 14, and of KCNQ3 in 2, of the 19 patients. In all patients, seizures began at 2-5 days of life and occurred multiple times per day. Four patients developed status epilepticus. Seizures were focal, alternating between hemispheres, and characterized by asymmetric tonic posturing associated with apnea and desaturation, followed by unilateral or bilateral asynchronous clonic jerking. Twelve of 19 patients were treated with multiple medications prior to seizure cessation. Seventeen of (88%) 19 patients were seizure-free within hours of receiving oral carbamazepine (CBZ) or oxcarbazepine (OXC). Earlier initiation of CBZ was associated with shorter hospitalization (p &lt; 0.01). No side effects of CBZ were reported. All patients had normal development and remain seizure-free at a mean follow-up period of 7.8 years (6 months-16 years). This study provides evidence that CBZ is safe and rapidly effective in neonates with BFNE, even in status epilepticus. We propose that CBZ should be the drug of choice in benign familial neonatal seizures."	"Activity of NaV1.2 promotes neurodegeneration in an animal model of multiple sclerosis. Counteracting the progressive neurological disability caused by neuronal and axonal loss is the major unmet clinical need in multiple sclerosis therapy. However, the mechanisms underlying irreversible neuroaxonal degeneration in multiple sclerosis and its animal model experimental autoimmune encephalomyelitis (EAE) are not well understood. A long-standing hypothesis holds that the distribution of voltage-gated sodium channels along demyelinated axons contributes to neurodegeneration by increasing neuroaxonal sodium influx and energy demand during CNS inflammation. Here, we tested this hypothesis in vivo by inserting a human gain-of-function mutation in the mouse NaV1.2-encoding gene Scn2a that is known to increase NaV1.2-mediated persistent sodium currents. In mutant mice, CNS inflammation during EAE leads to elevated neuroaxonal degeneration and increased disability and lethality compared with wild-type littermate controls. Importantly, immune cell infiltrates were not different between mutant EAE mice and wild-type EAE mice. Thus, this study shows that increased neuronal NaV1.2 activity exacerbates inflammation-induced neurodegeneration irrespective of immune cell alterations and identifies NaV1.2 as a promising neuroprotective drug target in multiple sclerosis."	"Efficacy of sodium channel blockers in SCN2A early infantile epileptic encephalopathy. Recent clinical evidence supports a targeted therapeutic approach for genetic epileptic encephalopathies based on the molecular dysfunction. A 2-day-old male infant presented with epileptic encephalopathy characterized by burst-suppression EEG background and tonic-clonic migrating partial seizures. The condition was refractory to phenobarbital, pyridoxine, pyridoxal phosphate and levetiracetam, but a dramatic response to an intravenous loading dose of phenytoin was documented by video-EEG monitoring. Over weeks phenytoin was successfully switched to carbamazepine to prevent seizure relapses associated with difficulty in maintaining proper blood levels of phenytoin. Genetic analysis identified a novel de novo heterozygous mutation (c.[4633A&gt;G]p.[Met1545Val]) in SCN2A. At two years and three months of age the patient is still seizure-free on carbamazepine, although a developmental delay is evident. Sodium channel blockers represent the first-line treatment for confirmed or suspected SCN2A-related epileptic encephalopathies. In severe cases with compatible electro-clinical features we propose a treatment algorithm based on a test trial with high dose intravenous phenytoin followed in case of a positive response by carbamazepine, more suitable for long-term maintenance treatment. Because of their rarity, collaborative studies are needed to delineate shared therapeutic protocols for EIEE based on the electro-clinical features and the presumed underlying genetic substrate."	"Infantile Epileptic Encephalopathy Associated With SCN2A Mutation Responsive to Oral Mexiletine. Genetic alterations are significant causes of epilepsy syndromes; especially early-onset epileptic encephalopathies and voltage-gated sodium channelopathies are among the best described. Mutations in the SCN2A subunit of voltage-gated sodium channels have been associated with benign familial neonatal-infantile seizures, generalized epilepsy febrile seizures plus, and an early-onset infantile epileptic encephalopathy. We describe two infants with medically refractory seizures due to a de novo SCN2A mutation. The first child responded to intravenous lidocaine with significant reduction in seizure frequency and was successfully transitioned to enteral mexiletine. Mexiletine was subsequently used in a second infant with reduction in seizure frequency. Class 1b antiarrhythmic agents, lidocaine and mexiletine, may be useful in infants with medically refractory early infantile epileptic encephalopathy secondary to mutations in SCN2A."	"Diagnostic Targeted Resequencing in 349 Patients with Drug-Resistant Pediatric Epilepsies Identifies Causative Mutations in 30 Different Genes. Targeted resequencing gene panels are used in the diagnostic setting to identify gene defects in epilepsy. We performed targeted resequencing using a 30-genes panel and a 95-genes panel in 349 patients with drug-resistant epilepsies beginning in the first years of life. We identified 71 pathogenic variants, 42 of which novel, in 30 genes, corresponding to 20.3% of the probands. In 66% of mutation positive patients, epilepsy onset occurred before the age of 6 months. The 95-genes panel allowed a genetic diagnosis in 22 (6.3%) patients that would have otherwise been missed using the 30-gene panel. About 50% of mutations were identified in genes coding for sodium and potassium channel components. SCN2A was the most frequently mutated gene followed by SCN1A, KCNQ2, STXBP1, SCN8A, CDKL5, and MECP2. Twenty-nine mutations were identified in 23 additional genes, most of them recently associated with epilepsy. Our data show that panels targeting about 100 genes represent the best cost-effective diagnostic option in pediatric drug-resistant epilepsies. They enable molecular diagnosis of atypical phenotypes, allowing to broaden phenotype-genotype correlations. Molecular diagnosis might influence patients' management and translate into better and specific treatment recommendations in some conditions."	"Identification of novel fluorescent probes preventing PrP<sup>Sc</sup> replication in prion diseases. Prion diseases are serious, not curable neurodegenerative disorders caused by the accumulation of the misfolded protein PrP<sup>Sc</sup> that represents the pathological variant of the normally folded cellular protein PrP<sup>C</sup>. Molecules that bind the cellular isoform PrP<sup>C</sup> preventing its misfolding, could arrest the progression of pathological conditions related to the abnormal PrP protein. In this context, by combining 3D-QSAR model, derived from pharmacophore-based alignment, with molecular docking procedures and physico-chemical properties prediction we have developed a virtual screening protocol to find novel chemicals able to prevent PrP<sup>C</sup> misfolding. We identified different hits characterized by low toxicity and able to inhibit PrP<sup>Sc</sup> accumulation in vitro in prion-infected neuroblastoma cell lines (ScN2a). In this assay, the pyrroloquinoxaline hydrazone 96 showed the higest potency with an IC50 value of 1.6 μM. Pyrroloquinoxaline 96 was demonstrated also to bind PrP<sup>Sc</sup> aggregates in infected ScN2a cells with a fluorescence pattern comparable to that found for Thioflavin-T. In consideration of its satisfactory physico-chemical properties, including predicted blood brain barrier permeability, 96 could represent an interesting prototypic hit for the development of diagnostic and therapeutic probes for prion diseases."	"FHF1 (FGF12) epileptic encephalopathy. Voltage-gated sodium channels (Navs) are mainstays of neuronal function, and mutations in the genes encoding CNS Navs (Nav1.1 [SCN1A], Nav1.2 [SCN2A], Nav1.3 [SCN3A], and Nav1.6 [SCN8A]) are causes of some of the most common and severe genetic epilepsies and epileptic encephalopathies (EE).<sup>1</sup> Fibroblast-growth-factor homologous factors (FHFs) compose a family of 4 proteins that interact with the C-terminal tails of Navs to modulate the channels' fast, and long-term, inactivations.<sup>2</sup>FHF2 mutation is a rare cause of generalized epilepsy with febrile seizures plus (GEFS+).<sup>3</sup> Recently, a de novo FHF1 mutation (p.R52H) was reported in early-onset EE in 2 siblings.<sup>4</sup> We report 3 patients from unrelated families with the same FHF1 p.R52H mutation. The 5 cases together frame the FHF1 R52H EE from infancy to adulthood. As discussed below, this gain-of-function disease may be amenable to personalized therapy."	"De novo genic mutations among a Chinese autism spectrum disorder cohort. Recurrent de novo (DN) and likely gene-disruptive (LGD) mutations contribute significantly to autism spectrum disorders (ASDs) but have been primarily investigated in European cohorts. Here, we sequence 189 risk genes in 1,543 Chinese ASD probands (1,045 from trios). We report an 11-fold increase in the odds of DN LGD mutations compared with expectation under an exome-wide neutral model of mutation. In aggregate, ∼4% of ASD patients carry a DN mutation in one of just 29 autism risk genes. The most prevalent gene for recurrent DN mutations is SCN2A (1.1% of patients) followed by CHD8, DSCAM, MECP2, POGZ, WDFY3 and ASH1L. We identify novel DN LGD recurrences (GIGYF2, MYT1L, CUL3, DOCK8 and ZNF292) and DN mutations in previous ASD candidates (ARHGAP32, NCOR1, PHIP, STXBP1, CDKL5 and SHANK1). Phenotypic follow-up confirms potential subtypes and highlights how large global cohorts might be leveraged to prove the pathogenic significance of individually rare mutations."	"Identification of crucial miRNAs and the targets in renal cortex of hypertensive patients by expression profiles. Defect in kidney is one major reason of hypertension. The study aimed ao uncovering the regulatory mechanisms of miRNAs and the targets in hypertensive kidney. Gene expression profile of GSE28345 and miRNA expression profile of GSE28283 were downloaded from GEO database. After data preprocessing, differently expressed genes (DEGs) and miRNAs (DE-miRs) were identified using limma package. Then targets of miRNAs were predicted according to information in relevant databases. Function and pathway enrichment analyses were performed for DEGs using DAVID software. Furthermore, protein-protein interaction (PPI) networks were constructed for up- and down-regulated genes, respectively, using the Cytoscape. Additionally, for down-regulated DEGs, the integrated regulatory network was established combining PPI network with the miRNA-mRNA interactions. As a result, 285 DEGs were identified, including 177 up-regulated and 108 down-regulated genes. Combined with the predicted targets of miRNAs, 22 up-regulated DE-miRs were identified. In the integrated network for down-regulated DEGs, three crucial nodes were identified as ASPN, COL12A1, and SCN2A. ASPN was predicted as target of miR-21 and miR-374b, and COL12A1 was the target of miR-30e, miR-21, and miR-195, while SCN2A was the target of miR-30e, miR-374b, and miR-195. Notably, COL12A1 and ASPN were linked with each other in the network. Three crucial genes were identified in hypertensive kidney, such as COL12A1, ASPN, and SCN2A. ASPN might co-function with COL12A1, and they both might be the targets of miR-21. SCN2A might be a novel target of miR-30e and miR-374b. However, more experiments are needed to validate these results."	"Allele and genotype frequencies of genes relevant to anti-epileptic drug therapy in Mexican-Mestizo healthy volunteers. To determine allele and genotype frequencies of genes influencing anti-epileptic drug therapy in Mexican-Mestizo (MM) healthy volunteers, and to evaluate whether these are different from those reported for other populations. Thirty-nine variants of CYP3A5, EPHX1, NR1I2, HNF4A, UGT1A1, UGT2B7, ABCC2, RALBP1, SCN1A, SCN2A and GABRA1 were genotyped in 300 MM healthy volunteers. All studied alleles were presented in MM, except for seven UGT1A1 variants (*6-8, 14, 15, 27 and 29). Allele and genotype frequencies showed interethnic variations when compared with European, Asian and African populations. Allele frequencies of greater than 30% were observed in ten genes. The results presented regarding the frequencies and interethnic differences of these polymorphisms should be taken into account for future pharmacogenetic studies of anti-epileptic drugs in MM patients with epilepsy."	"Precision medicine in genetic epilepsies: break of dawn? Therapy with current antiepileptic drugs aims at reducing the likelihood of seizure occurrence rather than influencing the underlying disease process. Therefore, antiepileptic drugs have an anticonvulsant rather than antiepileptic property. Areas covered: The increasing identification of genetic causes for epilepsy over the recent years improves the understanding of the underlying epileptogenic process and allows for the possibility of directed therapeutic approaches. An ideal antiepileptic therapy consists of a drug which is able to influence the functional changes caused by a specific pathogenic variant. In this review we will describe the current precision medicine approaches in genetic epilepsies in reference to the identified genetic etiologies. References for this review were identified through searches of PubMed and the authors' own files. Expert commentary: Currently established or investigated precision medicine treatments include the ketogenic diet in patients with GLUT1 deficiency, sodium channel blockers in patients with KCNQ2, SCN2A and SCN8A mutations as well as mTOR-inhibitors in mTORopathies. These predominantly represent already available treatments that were repurposed for use in epilepsy. The development of new therapeutic agents aiming at targets identified in genetic epilepsies will advance epilepsy treatment considerably."	"Gene Panel Testing in Epileptic Encephalopathies and Familial Epilepsies. In recent years, several genes have been causally associated with epilepsy. However, making a genetic diagnosis in a patient can still be difficult, since extensive phenotypic and genetic heterogeneity has been observed in many monogenic epilepsies. This study aimed to analyze the genetic basis of a wide spectrum of epilepsies with age of onset spanning from the neonatal period to adulthood. A gene panel targeting 46 epilepsy genes was used on a cohort of 216 patients consecutively referred for panel testing. The patients had a range of different epilepsies from benign neonatal seizures to epileptic encephalopathies (EEs). Potentially causative variants were evaluated by literature and database searches, submitted to bioinformatic prediction algorithms, and validated by Sanger sequencing. If possible, parents were included for segregation analysis. We identified a presumed disease-causing variant in 49 (23%) of the 216 patients. The variants were found in 19 different genes including SCN1A, STXBP1, CDKL5, SCN2A, SCN8A, GABRA1, KCNA2, and STX1B. Patients with neonatal-onset epilepsies had the highest rate of positive findings (57%). The overall yield for patients with EEs was 32%, compared to 17% among patients with generalized epilepsies and 16% in patients with focal or multifocal epilepsies. By the use of a gene panel consisting of 46 epilepsy genes, we were able to find a disease-causing genetic variation in 23% of the analyzed patients. The highest yield was found among patients with neonatal-onset epilepsies and EEs."	"Phenotypic Variability from Benign Infantile Epilepsy to Ohtahara Syndrome Associated with a Novel Mutation in SCN2A. Mutations in SCN2A have been associated with benign familial neonatal-infantile seizures (BFNIS) as well as infantile-onset epileptic encephalopathy, such as Ohtahara syndrome (OS). We describe a family with 3 affected individuals carrying the novel SCN2A missense variant c.1147C&gt;G, p.Q383E affecting a residue proximal to the highly conserved selectivity filter in the P-loop of the voltage-gated sodium channel (Nav1.2). All 3 individuals presented with seizures in early infancy. However, there were striking differences in the spectrum of clinical presentations, ranging from BFNIS to OS. A change of ion selectivity of Nav1.2 is considered to be the potential pathomechanism underlying this Nav1.2 channel dysfunction. The observation of benign and severe phenotypes due to an identical mutation within one family contradicts the hypothesis of different modes of inheritance as a mandatory feature discriminating BFNIS from SCN2A encephalopathy."	"Targeted next generation sequencing: the diagnostic value in early-onset epileptic encephalopathy. We investigated the genetic background of early-onset epileptic encephalopathy (EE) using targeted next generation sequencing analysis. Thirty sporadic or familial cases associated with early-onset EE were included. An early-onset EE gene panel including sixteen genes (ARX, CDKL5, CNTNAP2, FOLR1, FOXG1, LAMC3, MBD5, MECP2, NTNG1, PCDH19, PNKP, SCN1A, SCN1B, SCN2A, STXBP1, KCNQ2) was constituted. Nine definite and three potential causal mutations in 30 cases (40 %) were identified. All mutations presented heterozygously except one. Five mutations had been previously detected (SCN1A c.842C &gt; T (p.P281L), SCN1A c.4907G &gt; C (p.A1636P), PCDH19 c.1091dupC (p.Y366LfsX10), CNTNAP2 c.416A &gt; G (p.N139S), MBD5 c.3595G &gt; A(p.Y1199R) while other seven were novel (SCN1A c.4907G &gt; C (p.A1636P), SCN2A c.4633A &gt; G (p.M1545 V), CDKL5 c.197_198delCT (p.L67QfsX23), FOXG1 c.*6C &gt; T, KCNQ2 c.560c &gt; A (p.S187Y), KCNQ2 c.835G &gt; A (p.G279S), STXBP1 c.1105G &gt; T (p.E369X)). Eight of 12 mutations were de novo. While the overall mutation detection rate was found 40 %, this ratio was 55.5 % (10 out of 18) and 16.6 % (2 out of 12) in patients born to nonconsanguineous parents and consanguineous parents, respectively. In conclusion, a selected gene panel approach including mainly de novo and channel-encoding genes will result in the detection of variants in isolated patients and support the channelopathy theory underlying epilepsy, while consanguineous families will remain less diagnosed. Targeted next generation sequencing approach is an efficient diagnostic tool in the detection of the genetic basis of early-onset EE."	"Dominant KCNA2 mutation causes episodic ataxia and pharmacoresponsive epilepsy. To identify the genetic basis of a family segregating episodic ataxia, infantile seizures, and heterogeneous epilepsies and to study the phenotypic spectrum of KCNA2 mutations. A family with 7 affected individuals over 3 generations underwent detailed phenotyping. Whole genome sequencing was performed on a mildly affected grandmother and her grandson with epileptic encephalopathy (EE). Segregating variants were filtered and prioritized based on functional annotations. The effects of the mutation on channel function were analyzed in vitro by voltage clamp assay and in silico by molecular modeling. KCNA2 was sequenced in 35 probands with heterogeneous phenotypes. The 7 family members had episodic ataxia (5), self-limited infantile seizures (5), evolving to genetic generalized epilepsy (4), focal seizures (2), and EE (1). They had a segregating novel mutation in the shaker type voltage-gated potassium channel KCNA2 (CCDS_827.1: c.765_773del; p.255_257del). A rare missense SCN2A (rs200884216) variant was also found in 2 affected siblings and their unaffected mother. The p.255_257del mutation caused dominant negative loss of channel function. Molecular modeling predicted repositioning of critical arginine residues in the voltage-sensing domain. KCNA2 sequencing revealed 1 de novo mutation (CCDS_827.1: c.890G&gt;A; p.Arg297Gln) in a girl with EE, ataxia, and tremor. A KCNA2 mutation caused dominantly inherited episodic ataxia, mild infantile-onset seizures, and later generalized and focal epilepsies in the setting of normal intellect. This observation expands the KCNA2 phenotypic spectrum from EE often associated with chronic ataxia, reflecting the marked variation in severity observed in many ion channel disorders."	"SCN2A-Related Early-Onset Epileptic Encephalopathy Responsive to Phenobarbital. Voltage-gated sodium channels (Nav) are critical regulators of neuronal excitability. Genes for the α-subunits of three sodium channel subtypes-SCN1A, SCN2A, and SCN3A-are all located on chromosome 2q24. A full-term boy with an unremarkable birth history presented at 1 month of age with unusual movements that had started on day of life 2. Exam was notable for lack of visual attention, hypotonia, and hyperreflexia. Electroencephalogram (EEG) showed an invariant burst suppression with multifocal spikes, ictal episodes with bicycling movements associated with buildups of rhythmic activity, and epileptic spasms. Work-up revealed a 1.77-Mb duplication at locus 2q24.3, encompassing the entirety of SCN2A and SCN3A, but not SCN1A. Phenobarbital led to rapid resolution of the clinical seizures and EEG background normalized other than rare sharp waves. Early-onset epileptic encephalopathy (EOEE), with neonatal seizures, burst suppression, and reversibility with phenobarbital, is part of the enlarging spectrum of Nav channelopathies. The delayed diagnosis provided an unusual opportunity to view the early natural history of this disorder and its remarkable responsiveness to barbiturate therapy. The clinical and EEG response to phenobarbital implicates seizures as the cause of the encephalopathy."	"Incidence and outcome of epilepsy syndromes with onset in the first year of life: A retrospective population-based study. Population-based studies on infantile epilepsy syndromes are scarce. Our aim was to provide syndrome-specific data on the incidence and outcome of epilepsy in a population-based cohort of infants with epilepsy onset in the first year. Included were all infants born in 1997 through 2006 whose epileptic seizures started before 12 months of age and who were residents of the Helsinki University Hospital district at the time of seizure onset. Patients were ascertained from hospital statistics, and all patient charts were reviewed. A reevaluation of the epilepsy syndromes, age at onset, etiology, and outcome at 24 months of age was based on data abstracted from the patient files. Inclusion criteria were fulfilled by 158 infants, of whom 92% were followed until age 24 months or death. The incidence of epilepsy in the first year was 124 of 100,000. An epilepsy syndrome recognized by the revised organization of epilepsies by ILAE was identified in 58% of the patients. The most common syndromes were West syndrome (41/100,000) and benign familial or nonfamilial infantile epilepsy (22/100,000). Etiology was structural-metabolic in 35%, genetic in 17%, and unknown in 48%. Early age at onset was associated with structural-metabolic etiology. Seven infants (4.4%) died before age 2 years. One infant with an SCN2A mutation died of sudden unexplained death in epilepsy (SUDEP). At 24 months, 58% of all children included in the cohort were seizure-free, and 46% had both seizure freedom and age-appropriate cognitive development. Age at onset was not associated with outcome when etiology was controlled for. Benign familial and nonfamilial infantile epilepsy appears to be more common than previously suggested, second only to West syndrome. Early age at onset is not an independent risk factor for poor outcome."	"Cytokine-related and sodium channel polymorphism as candidate predisposing factors for childhood encephalopathy FIRES/AERRPS. Febrile infection-related epilepsy syndrome (FIRES), or acute encephalitis with refractory, repetitive partial seizures (AERRPS), is an epileptic encephalopathy beginning with fever-mediated seizures. The etiology remains unclear. To elucidate the genetic background of FIRES/AERRPS (hereafter FIRES), we recruited 19 Japanese patients, genotyped polymorphisms of the IL1B, IL6, IL10, TNFA, IL1RN, SCN1A and SCN2A genes, and compared their frequency between the patients and controls. For IL1RN, the frequency of a variable number of tandem repeat (VNTR) allele, RN2, was significantly higher in the patients than in controls (p=0.0067), and A allele at rs4251981 in 5' upstream of IL1RN with borderline significance (p=0.015). Haplotype containing RN2 was associated with an increased risk of FIRES (OR 3.88, 95%CI 1.40-10.8, p=0.0057). For SCN1A, no polymorphisms showed a significant association, whereas a missense mutation, R1575C, was found in two patients. For SCN2A, the minor allele frequency of G allele at rs1864885 was higher in patients with borderline significance (p=0.011). We demonstrated the association of IL1RN haplotype containing RN2 with FIRES, and showed a possible association of IL1RN rs4251981 G&gt;A and SCN2A rs1864885 A&gt;G, in Japanese patients. These preliminary findings suggest the involvement of multiple genetic factors in FIRES, which needs to be confirmed by future studies in a larger number of FIRES cases. "	"The scorpion toxin Bot IX is a potent member of the α-like family and has a unique N-terminal sequence extension. We report the detailed chemical, immunological and pharmacological characterization of the α-toxin Bot IX from the Moroccan scorpion Buthus occitanus tunetanus venom. Bot IX, which consists of 70 amino acids, is a highly atypical toxin. It carries a unique N-terminal sequence extension and is highly lethal in mice. Voltage clamp recordings on oocytes expressing rat Nav1.2 or insect BgNav1 reveal that, similar to other α-like toxins, Bot IX inhibits fast inactivation of both variants. Moreover, Bot IX belongs to the same structural/immunological group as the α-like toxin Bot I. Remarkably, radioiodinated Bot IX competes efficiently with the classical α-toxin AaH II from Androctonus australis, and displays one of the highest affinities for Nav channels."	"Autism spectrum disorders and epilepsy. NA"	"Genomic Integration of High-Risk HPV Alters Gene Expression in Oropharyngeal Squamous Cell Carcinoma. High-risk HPV (hrHPV) is the leading etiologic factor in oropharyngeal cancer. HPV-positive oropharyngeal tumors generally respond well to therapy, with complete recovery in approximately 80% of patients. However, it remains unclear why some patients are nonresponsive to treatment, with 20% of patients recurring within 5 years. In this study, viral factors were examined for possible clues to differences in tumor behavior. Oropharynx tumors that responded well to therapy were compared with those that persisted and recurred. Viral oncogene alternate transcripts were assessed, and cellular sites of viral integration were mapped and sequenced. Effects of integration on gene expression were assessed by transcript analysis at the integration sites. All of the tumors demonstrated active viral oncogenesis, indicated by expression of HPV E6 and E7 oncogenes and alternate E6 splicing. In the responsive tumors, HPV integration occurred exclusively in intergenic chromosome regions, except for one tumor with viral integration into TP63. Each recurrent tumor exhibited complex HPV integration patterns into cancer-associated genes, including TNFRSF13B, SCN2A, SH2B1, UBE2V2, SMOC1, NFIA, and SEMA6D Disrupted cellular transcripts were identified in the region of integration in four of the seven affected genes. Integration of transcriptionally active hrHPV into cellular intergenic regions associates with tumor behavior by altering gene expression. Mol Cancer Res; 14(10); 941-52. ©2016 AACR."	"Episodic ataxia associated with a de novo SCN2A mutation. Episodic ataxia (EA) is characterized by paroxysmal attacks of ataxia interspersed by asymptomatic periods. Dominant mutations or copy number variants in CACNA1A are a well-known cause of EA. This boy presented with clinical features of episodic ataxia, and also showed cerebellar atrophy, hypotonia, autism and global developmental delay at age 4 years. Acetazolamide prevented further episodes of ataxia, dystonia and encephalopathy. Extensive biochemical and genetic tests were unrevealing; whole exome sequencing found a previously unreported variant in SCN2A, proven to be de novo and predicted to be protein-damaging. Considered alongside previous reports of episodic ataxia in SCN2A mutation-positive patients, our case further illustrates the genetic heterogeneity of episodic ataxia. In addition, this case suggests that acetazolamide may be an effective treatment for some aspects of the phenotype in a broader range of channelopathy-related conditions."	"New perspective in diagnostics of mitochondrial disorders: two years' experience with whole-exome sequencing at a national paediatric centre. Whole-exome sequencing (WES) has led to an exponential increase in identification of causative variants in mitochondrial disorders (MD). We performed WES in 113 MD suspected patients from Polish paediatric reference centre, in whom routine testing failed to identify a molecular defect. WES was performed using TruSeqExome enrichment, followed by variant prioritization, validation by Sanger sequencing, and segregation with the disease phenotype in the family. Likely causative mutations were identified in 67 (59.3 %) patients; these included variants in mtDNA (6 patients) and nDNA: X-linked (9 patients), autosomal dominant (5 patients), and autosomal recessive (47 patients, 11 homozygotes). Novel variants accounted for 50.5 % (50/99) of all detected changes. In 47 patients, changes in 31 MD-related genes (ACAD9, ADCK3, AIFM1, CLPB, COX10, DLD, EARS2, FBXL4, MTATP6, MTFMT, MTND1, MTND3, MTND5, NAXE, NDUFS6, NDUFS7, NDUFV1, OPA1, PARS2, PC, PDHA1, POLG, RARS2, RRM2B, SCO2, SERAC1, SLC19A3, SLC25A12, TAZ, TMEM126B, VARS2) were identified. The ACAD9, CLPB, FBXL4, PDHA1 genes recurred more than twice suggesting higher general/ethnic prevalence. In 19 cases, variants in 18 non-MD related genes (ADAR, CACNA1A, CDKL5, CLN3, CPS1, DMD, DYSF, GBE1, GFAP, HSD17B4, MECP2, MYBPC3, PEX5, PGAP2, PIGN, PRF1, SBDS, SCN2A) were found. The percentage of positive WES results rose gradually with increasing probability of MD according to the Mitochondrial Disease Criteria (MDC) scale (from 36 to 90 % for low and high probability, respectively). The percentage of detected MD-related genes compared with non MD-related genes also grew with the increasing MD likelihood (from 20 to 97 %). Molecular diagnosis was established in 30/47 (63.8 %) neonates and in 17/28 (60.7 %) patients with basal ganglia involvement. Mutations in CLPB, SERAC1, TAZ genes were identified in neonates with 3-methylglutaconic aciduria (3-MGA) as a discriminative feature. New MD-related candidate gene (NDUFB8) is under verification. We suggest WES rather than targeted NGS as the method of choice in diagnostics of MD in children, including neonates with 3-MGA aciduria, who died without determination of disease cause and with limited availability of laboratory data. There is a strong correlation between the degree of MD diagnosis by WES and MD likelihood expressed by the MDC scale."	"Mutant cycle analysis with modified saxitoxins reveals specific interactions critical to attaining high-affinity inhibition of hNaV1.7. Improper function of voltage-gated sodium channels (NaVs), obligatory membrane proteins for bioelectrical signaling, has been linked to a number of human pathologies. Small-molecule agents that target NaVs hold considerable promise for treatment of chronic disease. Absent a comprehensive understanding of channel structure, the challenge of designing selective agents to modulate the activity of NaV subtypes is formidable. We have endeavored to gain insight into the 3D architecture of the outer vestibule of NaV through a systematic structure-activity relationship (SAR) study involving the bis-guanidinium toxin saxitoxin (STX), modified saxitoxins, and protein mutagenesis. Mutant cycle analysis has led to the identification of an acetylated variant of STX with unprecedented, low-nanomolar affinity for human NaV1.7 (hNaV1.7), a channel subtype that has been implicated in pain perception. A revised toxin-receptor binding model is presented, which is consistent with the large body of SAR data that we have obtained. This new model is expected to facilitate subsequent efforts to design isoform-selective NaV inhibitors."	"Letter to the editor: confirming neonatal seizure and late onset ataxia in SCN2A Ala263Val. NA"	"Whole gene duplication of SCN2A and SCN3A is associated with neonatal seizures and a normal intellectual development. Duplications at 2q24.3 encompassing the voltage-gated sodium channel gene cluster are associated with early onset epilepsy. All cases described in the literature have presented in addition with different degrees of intellectual disability, and have involved neighbouring genes in addition to the sodium channel gene cluster. Here, we report eight new cases with overlapping duplications at 2q24 ranging from 0.05 to 7.63 Mb in size. Taken together with the previously reported cases, our study suggests that having an extra copy of SCN2A has an effect on epilepsy pathogenesis, causing benign familial infantile seizures which eventually disappear at the age of 1-2 years. However, the number of copies of SCN2A does not appear to have an effect on cognitive outcome."	"Cacna1g is a genetic modifier of epilepsy caused by mutation of voltage-gated sodium channel Scn2a. More than 1,200 mutations in neuronal voltage-gated sodium channel (VGSC) genes have been identified in patients with several epilepsy syndromes. A common feature of genetic epilepsies is variable expressivity among individuals with the same mutation. The Scn2a(Q54) transgenic mouse model has a mutation in Scn2a that results in spontaneous epilepsy. Scn2a(Q54) phenotype severity varies depending on the genetic strain background, making it a useful model for identifying and characterizing epilepsy modifier genes. Scn2a(Q54) mice on the [C57BL/6JxSJL/J]F1 background exhibit earlier seizure onset, elevated spontaneous seizure frequency, and decreased survival compared to Scn2a(Q54) mice congenic on the C57BL/6J strain. Genetic mapping and RNA-Seq analysis identified Cacna1g as a candidate modifier gene at the Moe1 locus, which influences Scn2a(Q54) phenotype severity. In this study, we evaluated the modifier potential of Cacna1g, encoding the Cav3.1 voltage-gated calcium channel, by testing whether transgenic alteration of Cacna1g expression modifies severity of the Scn2a(Q54) seizure phenotype. Scn2a(Q54) mice exhibited increased spontaneous seizure frequency with elevated Cacna1g expression and decreased seizure frequency with decreased Cacna1g expression. These results provide support for Cacna1g as an epilepsy modifier gene and suggest that modulation of Cav3.1 may be an effective therapeutic strategy."	"Improving diagnosis and broadening the phenotypes in early-onset seizure and severe developmental delay disorders through gene panel analysis. We sought to investigate the diagnostic yield and mutation spectrum in previously reported genes for early-onset epilepsy and disorders of severe developmental delay. In 400 patients with these disorders with no known underlying aetiology and no major structural brain anomaly, we analysed 46 genes using a combination of targeted sequencing on an Illumina MiSeq platform and targeted, exon-level microarray copy number analysis. We identified causative mutations in 71/400 patients (18%). The diagnostic rate was highest among those with seizure onset within the first two months of life (39%), although overall it was similar in those with and without seizures. The most frequently mutated gene was SCN2A (11 patients, 3%). Other recurrently mutated genes included CDKL5, KCNQ2, SCN8A (six patients each), FOXG1, MECP2, SCN1A, STXBP1 (five patients each), KCNT1, PCDH19, TCF4 (three patients each) and ATP1A3, PRRT2 and SLC9A6 (two patients each). Mutations in EHMT1, GABRB3, LGI1, MBD5, PIGA, UBE3A and ZEB2 were each found in single patients. We found mutations in a number of genes in patients where either the electroclinical features or dysmorphic phenotypes were atypical for the identified gene. In only 11 cases (15%) had the clinician sufficient certainty to specify the mutated gene as the likely cause before testing. Our data demonstrate the considerable utility of a gene panel approach in the diagnosis of patients with early-onset epilepsy and severe developmental delay disorders., They provide further insights into the phenotypic spectrum and genotype-phenotype correlations for a number of the causative genes and emphasise the value of exon-level copy number testing in their analysis."	"Genome Sequencing of Autism-Affected Families Reveals Disruption of Putative Noncoding Regulatory DNA. We performed whole-genome sequencing (WGS) of 208 genomes from 53 families affected by simplex autism. For the majority of these families, no copy-number variant (CNV) or candidate de novo gene-disruptive single-nucleotide variant (SNV) had been detected by microarray or whole-exome sequencing (WES). We integrated multiple CNV and SNV analyses and extensive experimental validation to identify additional candidate mutations in eight families. We report that compared to control individuals, probands showed a significant (p = 0.03) enrichment of de novo and private disruptive mutations within fetal CNS DNase I hypersensitive sites (i.e., putative regulatory regions). This effect was only observed within 50 kb of genes that have been previously associated with autism risk, including genes where dosage sensitivity has already been established by recurrent disruptive de novo protein-coding mutations (ARID1B, SCN2A, NR3C2, PRKCA, and DSCAM). In addition, we provide evidence of gene-disruptive CNVs (in DISC1, WNT7A, RBFOX1, and MBD5), as well as smaller de novo CNVs and exon-specific SNVs missed by exome sequencing in neurodevelopmental genes (e.g., CANX, SAE1, and PIK3CA). Our results suggest that the detection of smaller, often multiple CNVs affecting putative regulatory elements might help explain additional risk of simplex autism. "	"Regulation of SCN3B/scn3b by Interleukin 2 (IL-2): IL-2 modulates SCN3B/scn3b transcript expression and increases sodium current in myocardial cells. In the initiation and maintenance of arrhythmia, inflammatory processes play an important role. IL-2 is a pro-inflammatory factor which is associated with the morbidity of arrhythmias, however, how IL-2 affects the cardiac electrophysiology is still unknown. In the present study, we observed the effect of IL-2 by qRT-PCR on the transcription of ion channel genes including SCN2A, SCN3A, SCN4A, SCN5A, SCN9A, SCN10A, SCN1B, SCN2B, SCN3B, KCNN1, KCNJ5, KCNE1, KCNE2, KCNE3, KCND3, KCNQ1, KCNA5, KCNH2 and CACNA1C. Western blot assays and electrophysiological studies were performed to demonstrate the effect of IL-2 on the translation of SCN3B/scn3b and sodium currents. The results showed that transcriptional level of SCN3B was up-regulated significantly in Hela cells (3.28-fold, p = 0.022 compared with the control group). Consistent results were verified in HL-1 cells (3.73-fold, p = 0.012 compared with the control group). The result of electrophysiological studies showed that sodium current density increased significantly in cells which treated by IL-2 and the effect of IL-2 on sodium currents was independent of SCN3B (1.4 folds, p = 0.023). Western blot analysis showed IL-2 lead to the significantly increasing of p53 and scn3b (2.1 folds, p = 0.021 for p53; 3.1 folds, p = 0.023 for scn3b) in HL-1 cells. Consistent results were showed in HEK293 cells using qRT-PCR analysis (1.43 folds for P53, p = 0.022; 1.57 folds for SCN3B, p = 0.05). The present study suggested that IL-2, may play role in the arrhythmia by regulating the expression of SCN3B and sodium current density."	"Hlf is a genetic modifier of epilepsy caused by voltage-gated sodium channel mutations. Mutations in voltage-gated sodium channel genes cause several types of human epilepsies. Often, individuals with the same sodium channel mutation exhibit diverse phenotypes. This suggests that factors beyond the primary mutation influence disease severity, including genetic modifiers. Mouse epilepsy models with voltage-gated sodium channel mutations exhibit strain-dependent phenotype variability, supporting a contribution of genetic modifiers in epilepsy. The Scn2a(Q54) (Q54) mouse model has a strain-dependent epilepsy phenotype. Q54 mice on the C57BL/6J (B6) strain exhibit delayed seizure onset and improved survival compared to [B6xSJL/J]F1.Q54 mice. We previously mapped two dominant modifier loci that influence Q54 seizure susceptibility and identified Hlf (hepatic leukemia factor) as a candidate modifier gene at one locus. Hlf and other PAR bZIP transcription factors had previously been associated with spontaneous seizures in mice thought to be caused by down-regulation of the pyridoxine pathway. An Hlf targeted knockout mouse model was used to evaluate the effect of Hlf deletion on Q54 phenotype severity. Hlf(KO/KO);Q54 double mutant mice exhibited elevated frequency and reduced survival compared to Q54 controls. To determine if direct modulation of the pyridoxine pathway could alter the Q54 phenotype, mice were maintained on a pyridoxine-deficient diet for 6 weeks. Dietary pyridoxine deficiency resulted in elevated seizure frequency and decreased survival in Q54 mice compared to control diet. To determine if Hlf could modify other epilepsies, Hlf(KO/+) mice were crossed with the Scn1a(KO/+) Dravet syndrome mouse model to examine the effect on premature lethality. Hlf(KO/+);Scn1a(KO/+) offspring exhibited decreased survival compared to Scn1a(KO/+) controls. Together these results demonstrate that Hlf is a genetic modifier of epilepsy caused by voltage-gated sodium channel mutations and that modulation of the pyridoxine pathway can also influence phenotype severity. "	"Unexplained early onset epileptic encephalopathy: Exome screening and phenotype expansion. Early onset epileptic encephalopathies (EOEEs) represent a significant diagnostic challenge. Newer genomic approaches have begun to elucidate an increasing number of responsible single genes as well as emerging diagnostic strategies. In this single-center study, we aimed to investigate a cohort of children with unexplained EOEE. We performed whole-exome sequencing (WES), targeting a list of 137 epilepsy-associated genes on 50 children with unexplained EOEE. We characterized all phenotypes in detail and classified children according to known electroclinical syndromes where possible. Infants with previous genetic diagnoses, causative brain malformations, or inborn errors of metabolism were excluded. We identified disease-causing variants in 11 children (22%) in the following genes: STXBP1 (n = 3), KCNB1 (n = 2), KCNT1, SCN1A, SCN2A, GRIN2A, DNM1, and KCNA2. We also identified two further variants (in GRIA3 and CPA6) in two children requiring further investigation. Eleven variants were de novo, and in one paternal testing was not possible. Phenotypes were broadened for some variants identified. This study demonstrates that WES is a clinically useful screening tool for previously investigated unexplained EOEE and allows for reanalysis of data as new genes are being discovered. Detailed phenotyping allows for expansion of specific gene disorders leading to epileptic encephalopathy and emerging sub-phenotypes."	"Secondary neurotransmitter deficiencies in epilepsy caused by voltage-gated sodium channelopathies: A potential treatment target? We describe neurotransmitter abnormalities in two patients with drug-resistant epilepsy resulting from deleterious de novo mutations in sodium channel genes. Whole exome sequencing identified a de novo SCN2A splice-site mutation (c.2379+1G&gt;A, p.Glu717Gly.fs*30) resulting in deletion of exon 14, in a 10-year old male with early onset global developmental delay, intermittent ataxia, autism, hypotonia, epileptic encephalopathy and cerebral/cerebellar atrophy. In the cerebrospinal fluid both homovanillic acid and 5-hydroxyindoleacetic acid were significantly decreased; extensive biochemical and genetic investigations ruled out primary neurotransmitter deficiencies and other known inborn errors of metabolism. In an 8-year old female with an early onset intractable epileptic encephalopathy, developmental regression, and progressive cerebellar atrophy, a previously unreported de novo missense mutation was identified in SCN8A (c.5615G&gt;A; p.Arg1872Gln), affecting a highly conserved residue located in the C-terminal of the Nav1.6 protein. Aside from decreased homovanillic acid and 5-hydroxyindoleacetic acid, 5-methyltetrahydrofolate was also found to be low. We hypothesize that these channelopathies cause abnormal synaptic mono-amine metabolite secretion/uptake via impaired vesicular release and imbalance in electrochemical ion gradients, which in turn aggravate the seizures. Treatment with oral 5-hydroxytryptophan, l-Dopa/Carbidopa, and a dopa agonist resulted in mild improvement of seizure control in the male case, most likely via dopamine and serotonin receptor activated signal transduction and modulation of glutamatergic, GABA-ergic and glycinergic neurotransmission. Neurotransmitter analysis in other sodium channelopathy patients will help validate our findings, potentially yielding novel treatment opportunities. "	"Mutations in the sodium channel gene SCN2A cause neonatal epilepsy with late-onset episodic ataxia. Mutations in SCN2A cause epilepsy syndromes of variable severity including neonatal-infantile seizures. In one case, we previously described additional childhood-onset episodic ataxia. Here, we corroborate and detail the latter phenotype in three further cases. We describe the clinical characteristics, identify the causative SCN2A mutations and determine their functional consequences using whole-cell patch-clamping in mammalian cells. In total, four probands presented with neonatal-onset seizures remitting after five to 13 months. In early childhood, they started to experience repeated episodes of ataxia, accompanied in part by headache or back pain lasting minutes to several hours. In two of the new cases, we detected the novel mutation p.Arg1882Gly. While this mutation occurred de novo in both patients, one of them carries an additional known variant on the same SCN2A allele, inherited from the unaffected father (p.Gly1522Ala). Whereas p.Arg1882Gly alone shifted the activation curve by -4 mV, the combination of both variants did not affect activation, but caused a depolarizing shift of voltage-dependent inactivation, and a significant increase in Na(+) current density and protein production. p.Gly1522Ala alone did not change channel gating. The third new proband carries the same de novo SCN2A gain-of-function mutation as our first published case (p.Ala263Val). Our findings broaden the clinical spectrum observed with SCN2A gain-of-function mutations, showing that fairly different biophysical mechanisms can cause a convergent clinical phenotype of neonatal seizures and later onset episodic ataxia."	"Targeted DNA Sequencing from Autism Spectrum Disorder Brains Implicates Multiple Genetic Mechanisms. Single nucleotide variants (SNVs), particularly loss-of-function mutations, are significant contributors to autism spectrum disorder (ASD) risk. Here we report the first systematic deep sequencing study of 55 postmortem ASD brains for SNVs in 78 known ASD candidate genes. Remarkably, even without parental samples, we find more ASD brains with mutations that are protein-altering (26/55 cases versus 12/50 controls, p = 0.015), deleterious (16/55 versus 5/50, p = 0.016), or loss-of-function (6/55 versus 0/50, p = 0.028) compared to controls, with recurrent deleterious mutations in ARID1B, SCN1A, SCN2A, and SETD2, suggesting these mutations contribute to ASD risk. In several cases, the identified mutations and medical records suggest syndromic ASD diagnoses. Two ASD and one Fragile X premutation case showed deleterious somatic mutations, providing evidence that somatic mutations occur in ASD cases, and supporting a model in which a combination of germline and/or somatic mutations may contribute to ASD risk on a case-by-case basis."	"Mutation screening of SCN2A in schizophrenia and identification of a novel loss-of-function mutation. There is a growing body of evidence suggesting a shared genetic susceptibility between many neuropsychiatric disorders, including schizophrenia, autism, intellectual disability (ID) and epilepsy. The sodium channel, voltage-gated type II α subunit gene SCN2A has been shown to exhibit loss-of-function (LoF) mutations in individuals with seizure disorders, ID, autism and schizophrenia. The role of LoF mutations in schizophrenia is still uncertain with only one such mutation identified to date. To seek additional evidence for a role for LoF mutations at SCN2A in schizophrenia we performed mutation screening of the entire coding sequence in 980 schizophrenia cases. Given an absence of LoF mutations in a public exome cohort (ESP6500, N=6503), we did not additionally sequence controls. We identified a novel, nonsense (i.e. stop codon) mutation in one case (E169X) that is absent in 4300 European-American and 2203 African-American individuals from the NHLBI Exome Sequencing Project. This is the second LoF allele identified in a schizophrenia case to date. We also show a novel, missense variant, V1282F, that occurs in two cases and is absent in the control dataset. We argue that very rare, LoF mutations at SCN2A act in a moderately penetrant manner to increase the risk of developing several neuropsychiatric disorders including seizure disorders, ID, autism and schizophrenia."	"Sialic Acid on the Glycosylphosphatidylinositol Anchor Regulates PrP-mediated Cell Signaling and Prion Formation. The prion diseases occur following the conversion of the cellular prion protein (PrP(C)) into disease-related isoforms (PrP(Sc)). In this study, the role of the glycosylphosphatidylinositol (GPI) anchor attached to PrP(C) in prion formation was examined using a cell painting technique. PrP(Sc) formation in two prion-infected neuronal cell lines (ScGT1 and ScN2a cells) and in scrapie-infected primary cortical neurons was increased following the introduction of PrP(C). In contrast, PrP(C) containing a GPI anchor from which the sialic acid had been removed (desialylated PrP(C)) was not converted to PrP(Sc). Furthermore, the presence of desialylated PrP(C) inhibited the production of PrP(Sc) within prion-infected cortical neurons and ScGT1 and ScN2a cells. The membrane rafts surrounding desialylated PrP(C) contained greater amounts of sialylated gangliosides and cholesterol than membrane rafts surrounding PrP(C). Desialylated PrP(C) was less sensitive to cholesterol depletion than PrP(C) and was not released from cells by treatment with glimepiride. The presence of desialylated PrP(C) in neurons caused the dissociation of cytoplasmic phospholipase A2 from PrP-containing membrane rafts and reduced the activation of cytoplasmic phospholipase A2. These findings show that the sialic acid moiety of the GPI attached to PrP(C) modifies local membrane microenvironments that are important in PrP-mediated cell signaling and PrP(Sc) formation. These results suggest that pharmacological modification of GPI glycosylation might constitute a novel therapeutic approach to prion diseases. "	"Novel Cadmium Responsive MicroRNAs in Daphnia pulex. Daphnia pulex is a widely used toxicological model and is known for its sensitivity to cadmium (Cd). Recent research suggests that microRNAs (miRNAs) play a critical role in animal responses to heavy metals. To investigate the functions of D. pulex miRNAs under Cd exposure, we analyzed the miRNA profiles of D. pulex after 48 h using miRNA microarrays and validated our findings by q-PCR. miRNA dpu-let-7 was identified as a stably expressed gene and used as a reference. We identified 22 and 21 differentially expressed miRNAs under low (20 μg/L CdCl2) and high-exposure (40 μg/L CdCl2) concentrations compared to controls, respectively. Cellular functions of predicted miRNA target Cd-responsive genes included oxidative stress, ion transport, mitochondrial damage, and DNA repair. An insulin-related network was also identified in relation to several Cd-responsive miRNAs. The expression of three predicted target genes for miR-71 and miR-210 were evaluated, and expression of two of them (SCN2A and SLC31A1) was negatively correlated with the expression of their regulator miRNAs. We show miR-210 is hypoxia-responsive in D. pulex and propose Cd and hypoxia induce miR-210 via a same HIF1α modulated pathway. Collectively, this research advances our understanding on the role of miRNAs in response to heavy-metal exposure. "	"An update on transcriptional and post-translational regulation of brain voltage-gated sodium channels. Voltage-gated sodium channels are essential proteins in brain physiology, as they generate the sodium currents that initiate neuronal action potentials. Voltage-gated sodium channels expression, localisation and function are regulated by a range of transcriptional and post-translational mechanisms. Here, we review our understanding of regulation of brain voltage-gated sodium channels, in particular SCN1A (NaV1.1), SCN2A (NaV1.2), SCN3A (NaV1.3) and SCN8A (NaV1.6), by transcription factors, by alternative splicing, and by post-translational modifications. Our focus is strongly centred on recent research lines, and newly generated knowledge."	"High prevalence of genetic alterations in early-onset epileptic encephalopathies associated with infantile movement disorders. Recent studies have elucidated causative roles for genetic abnormalities in early-onset epileptic encephalopathies (EOEE). Accompanying characteristic features, in addition to seizures, have also been suggested to provide important clues for an early and accurate genetic diagnosis of affected patients. In this study, we investigated the underlying genetic causes in patients with EOEE associated with infantile movement disorders. We examined 11 patients with EOEE and involuntary movements (nine with West syndrome and two with nonsyndromic epileptic encephalopathy). All showed severe developmental delay, cognitive impairment, and involuntary movements such as chorea, ballism, dyskinesia or myoclonus, and hand stereotypies. We performed whole-exome sequencing of 10 patients, while the other patient underwent high-resolution melting analysis of candidate EOEE genes. We identified mutations in CDKL5, SCN2A, SETD5, ALG13, and TBL1XR1 in seven patients with West syndrome, and in SCN1A and GRIN1 in the two patients with unclassified epileptic encephalopathy. All mutations were validated as de novo events. The genetic cause was undetermined in the remaining two patients. We found pathogenic mutations in seven genes, in nine of 11 patients with EOEE and involuntary movements. Although the results of our study are preliminary because of the small number of patients, they nevertheless suggest that specific accompanying phenotypes such as hyperkinetic movements or hand stereotypies could be important in narrowing the disease spectrum and identifying causative genetic abnormalities."	"Missense mutations in sodium channel SCN1A and SCN2A predispose children to encephalopathy with severe febrile seizures. Acute encephalopathy with biphasic seizures and late reduced diffusion (AESD) is a childhood encephalopathy following severe febrile seizures. The pathogenesis of AESD is considered to be fever-induced seizure susceptibility and excitotoxicity, which may be caused by sodium channel dysfunction in some cases. Here we studied whether mutations in genes encoding sodium channels, SCN1A and SCN2A, predispose children to AESD. We recruited 92 AESD patients in a nationwide survey of acute encephalopathy in Japan from 2008 to 2011. We collected their genomic DNA samples, and sequenced the entire coding region of SCN1A and SCN2A. Five out of 92 patients (5.4%) had missense mutations either in SCN1A or SCN2A. After a preceding infection with fever, all the patients showed status epilepticus at the onset. Hemiconvulsion-hemiplegia was recognized in three patients during the acute/subacute phase. One patient had taken theophylline for the treatment of bronchial asthma just before the onset of AESD. Familial history was not remarkable except one patient with a SCN1A mutation (G1647S) whose mother had a similar episode of AESD in her childhood. A different substitution (G1674R) at the same amino acid position, as well as two other SCN1A mutations found in this study, had previously been reported in Dravet syndrome. Another SCN1A mutation (R1575C) had been detected in other types of acute encephahlitis/encephalopathy. One patient had SCN2A mutation, F328V, which had previously been reported in Dravet syndrome. Another SCN2A mutation, I172V, was novel. None of the patients were diagnosed with Dravet syndrome or genetic (generalized) epilepsy with febrile seizure plus in the following-up period. Mutations in SCN1A and SCN2A are a predisposing factor of AESD. Altered channel activity caused by these mutations may provoke seizures and excitotoxic brain damage."	"SCN2A encephalopathy: A major cause of epilepsy of infancy with migrating focal seizures. De novo SCN2A mutations have recently been associated with severe infantile-onset epilepsies. Herein, we define the phenotypic spectrum of SCN2A encephalopathy. Twelve patients with an SCN2A epileptic encephalopathy underwent electroclinical phenotyping. Patients were aged 0.7 to 22 years; 3 were deceased. Seizures commenced on day 1-4 in 8, week 2-6 in 2, and after 1 year in 2. Characteristic features included clusters of brief focal seizures with multiple hourly (9 patients), multiple daily (2), or multiple weekly (1) seizures, peaking at maximal frequency within 3 months of onset. Multifocal interictal epileptiform discharges were seen in all. Three of 12 patients had infantile spasms. The epileptic syndrome at presentation was epilepsy of infancy with migrating focal seizures (EIMFS) in 7 and Ohtahara syndrome in 2. Nine patients had improved seizure control with sodium channel blockers including supratherapeutic or high therapeutic phenytoin levels in 5. Eight had severe to profound developmental impairment. Other features included movement disorders (10), axial hypotonia (11) with intermittent or persistent appendicular spasticity, early handedness, and severe gastrointestinal symptoms. Mutations arose de novo in 11 patients; paternal DNA was unavailable in one. Review of our 12 and 34 other reported cases of SCN2A encephalopathy suggests 3 phenotypes: neonatal-infantile-onset groups with severe and intermediate outcomes, and a childhood-onset group. Here, we show that SCN2A is the second most common cause of EIMFS and, importantly, does not always have a poor developmental outcome. Sodium channel blockers, particularly phenytoin, may improve seizure control."	"De Novo Heterogeneous Mutations in SCN2A and GRIN2A Genes and Seizures With Ictal Vocalizations. NA"	"Calmodulin and Ca(2+) control of voltage gated Na(+) channels. The structures of the cytosolic portion of voltage activated sodium channels (CTNav) in complexes with calmodulin and other effectors in the presence and the absence of calcium provide information about the mechanisms by which these effectors regulate channel activity. The most studied of these complexes, those of Nav1.2 and Nav1.5, show details of the conformations and the specific contacts that are involved in channel regulation. Another voltage activated sodium channel, Nav1.4, shows significant calcium dependent inactivation, while its homolog Nav1.5 does not. The available structures shed light on the possible localization of the elements responsible for this effect. Mutations in the genes of these 3 Nav channels are associated with several disease conditions: Nav1.2, neurological conditions; Nav1.4, syndromes involving skeletal muscle; and Nav1.5, cardiac arrhythmias. Many of these disease-specific mutations are located at the interfaces involving CTNav and its effectors. "	"[Drug resistant epilepsy. Clinical and neurobiological concepts]. Drug-resistant epilepsy, is a condition defined by the International League Against Epilepsy as persistent seizures despite having used at least two appropriate and adequate antiepileptic drug treatments. Approximately 20-30% of patients with epilepsy are going to be resistant to antiepileptic drugs, with different patterns of clinical presentation, which are related to the biological basis of this disease (de novo resistance, relapsing-remitting and progressive). Drug resistant epilepsy, impacts negatively the quality of life and significantly increases the risk of premature death. From the neurobiological point of view, this medical condition is the result of the interaction of multiple variables related to the underlying disease, drug interactions and proper genetic aspects of each patient. Thanks to advances in pharmacogenetics and molecular biology research, currently some hypotheses may explain the cause of this condition and promote the study of new therapeutic options. Currently, overexpression of membrane transporters such as P-glycoprotein, appears to be one of the most important mechanisms in the development of drug resistant epilepsy. The objective of this review is to deepen the general aspects of this clinical condition, addressing the definition, epidemiology, differential diagnosis and the pathophysiological bases.  Farmacorresistencia en epilepsia. Conceptos clinicos y neurobiologicos. La epilepsia farmacorresistente es una condicion definida por la Liga Internacional contra la Epilepsia como la persistencia de crisis epilepticas a pesar de haber utilizado al menos dos tratamientos con farmacos antiepilepticos apropiados y adecuados. Cerca de un 20-30% de los pacientes con epilepsia van a ser resistentes a los farmacos antiepilepticos, con diferentes patrones de presentacion clinica, los cuales estan en relacion con las bases biologicas de esta enfermedad (resistencia de novo, recaida-remision y progresiva). La farmacorresistencia en epilepsia impacta negativamente en la calidad de vida y aumenta significativamente el riesgo de muerte prematura. Desde el punto de vista neurobiologico, esta condicion clinica es el resultado de la interaccion de multiples variables relacionadas con la enfermedad de base, las interacciones medicamentosas y los aspectos geneticos propios de cada paciente. Gracias a los avances en la investigacion farmacogenetica y de biologia molecular, actualmente se plantean algunas hipotesis que podrian explicar la causa de esta condicion y que promueven el estudio de nuevas opciones terapeuticas. En la actualidad, la sobreexpresion de transportadores de membrana, como la glucoproteina P, parece ser uno de los mecanismos mas importantes en el desarrollo de la farmacorresistencia en epilepsia. El objetivo de esta revision es profundizar en los aspectos generales de esta condicion clinica, abordando la definicion, los aspectos epidemiologicos, los diagnosticos diferenciales y las bases fisiopatologicas."	"Analysis of exome sequence in 604 trios for recessive genotypes in schizophrenia. Genetic associations involving both rare and common alleles have been reported for schizophrenia but there have been no systematic scans for rare recessive genotypes using fully phased trio data. Here, we use exome sequencing in 604 schizophrenia proband-parent trios to investigate the role of recessive (homozygous or compound heterozygous) nonsynonymous genotypes in the disorder. The burden of recessive genotypes was not significantly increased in probands at either a genome-wide level or in any individual gene after adjustment for multiple testing. At a system level, probands had an excess of nonsynonymous compound heterozygous genotypes (minor allele frequency, MAF ⩽ 1%) in voltage-gated sodium channels (VGSCs; eight in probands and none in parents, P = 1.5 × 10(-)(4)). Previous findings of multiple de novo loss-of-function mutations in this gene family, particularly SCN2A, in autism and intellectual disability provide biological and genetic plausibility for this finding. Pointing further to the involvement of VGSCs in schizophrenia, we found that these genes were enriched for nonsynonymous mutations (MAF ⩽ 0.1%) in cases genotyped using an exome array, (5585 schizophrenia cases and 8103 controls), and that in the trios data, synaptic proteins interacting with VGSCs were also enriched for both compound heterozygosity (P = 0.018) and de novo mutations (P = 0.04). However, we were unable to replicate the specific association with compound heterozygosity at VGSCs in an independent sample of Taiwanese schizophrenia trios (N = 614). We conclude that recessive genotypes do not appear to make a substantial contribution to schizophrenia at a genome-wide level. Although multiple lines of evidence, including several from this study, suggest that rare mutations in VGSCs contribute to the disorder, in the absence of replication of the original findings regarding compound heterozygosity, this conclusion requires evaluation in a larger sample of trios."	"Investigation of genes important in neurodevelopment disorders in adult human brain. Several neurodevelopmental disorders (NDDs) are caused by mutations in genes expressed in fetal brain, but little is known about these same genes in adult human brain. Here, we test the hypothesis that genes associated with NDDs continue to have a role in adult human brain to explore the idea that NDD symptoms may be partially a result of their adult function rather than just their neurodevelopmental function. To demonstrate adult brain function, we performed expression analyses and ChIPseq in human neural stem cell(NSC) lines at different developmental stages and adult human brain, targeting two genes associated with NDDs, SATB2 and EHMT1, and the WNT signaling gene TCF7L2, which has not been associated with NDDs. Analysis of DNA interaction sites in neural stem cells reveals high (40-50 %) overlap between proliferating and differentiating cells for each gene in temporal space. Studies in adult brain demonstrate that consensus sites are similar to NSCs but occur at different genomic locations. We also performed expression analyses using BrainSpan data for NDD-associated genes SATB2, EHMT1, FMR1, MECP2, MBD5, CTNND2, RAI1, CHD8, GRIN2A, GRIN2B, TCF4, SCN2A, and DYRK1A and find high expression of these genes in adult brain, at least comparable to developing human brain, confirming that genes associated with NDDs likely have a role in adult tissue. Adult function of genes associated with NDDs might be important in clinical disease presentation and may be suitable targets for therapeutic intervention."	"ABCB1, ABCC2, SCN1A, SCN2A, GABRA1 gene polymorphisms and drug resistant epilepsy in the Chinese Han population. Drug resistance is common in epilepsy despite multiple available medications. Single nucleotide polymorphisms (SNP) may influence drug efficacy in epilepsy. We therefore aimed to clarify the association between polymorphisms of several controversial SNP loci and drug resistance in Chinese Han epilepsy patients from central China. Among all the 391 recruited subjects, 235 and 156 patients were classified into a drug responsive and resistant group, respectively, according to the definition of drug resistance proposed by the International League Against Epilepsy. The candidate SNP loci, including ATP-binding cassette (ABC) subfamily gene ABCB1 rs2032582 and rs1045642; ABC subfamily gene ABCC2 rs717620 and rs2273697; sodium channel subunit gene SCN1A rs3812718, SCN2A rs2304016; γ-amino butyric acid type A (GABAA) receptor subunit subtype gene GABRA1 rs2279020 were genotyped following the Illumina protocols. There were no significant differences in allelic or genotypic frequencies between the drug responsive and resistant patients. The polymorphisms of the above SNP loci may not be associated with drug resistance of epilepsy in the Chinese Han population."	"Whole-exome sequencing improves the diagnosis yield in sporadic infantile spasm syndrome. Infantile spasms syndrome (ISs) is characterized by clinical spasms with ictal electrodecrement, usually occurring before the age of 1 year and frequently associated with cognitive impairment. Etiology is widely heterogeneous, the cause remaining elusive in 40% of patients. We searched for de novo mutations in 10 probands with ISs and their parents using whole-exome sequencing (WES). Patients had neither consanguinity nor family history of epilepsy. Common causes of ISs were excluded by brain magnetic resonance imaging (MRI), metabolic screening, array-comparative genomic hybridization (CGH) and testing for mutations in CDKL5, STXBP1, and for ARX duplications. We found a probably pathogenic mutation in four patients. Missense mutations in SCN2A (p.Leu1342Pro) and KCNQ2 (p.Ala306Thr) were found in two patients with no history of epilepsy before the onset of ISs. The p.Asn107Ser missense mutation of ALG13 had been previously reported in four females with ISs. The fourth mutation was an in-frame deletion (p.Phe110del) in NR2F1, a gene whose mutations cause intellectual disability, epilepsy, and optic atrophy. In addition, we found a possibly pathogenic variant in KIF3C that encodes a kinesin expressed during neural development. Our results confirm that WES improves significantly the diagnosis yield in patients with sporadic ISs. "	"Probing the Redox States of Sodium Channel Cysteines at the Binding Site of μO§-Conotoxin GVIIJ. μO§-Conotoxin GVIIJ is a 35-amino acid peptide that readily blocks six of eight tested NaV1 subunit isoforms of voltage-gated sodium channels. μO§-GVIIJ is unusual in having an S-cysteinylated cysteine (at residue 24). A proposed reaction scheme involves the peptide-channel complex stabilized by a disulfide bond formed via thiol-disulfide exchange between Cys24 of the peptide and a Cys residue at neurotoxin receptor site 8 in the pore module of the channel (specifically, Cys910 of rat NaV1.2). To examine this model, we synthesized seven derivatives of μO§-GVIIJ in which Cys24 was disulfide-bonded to various thiols (or SR groups) and tested them on voltage-clamped Xenopus laevis oocytes expressing NaV1.2. In the proposed model, the SR moiety is a leaving group that is no longer present in the final peptide-channel complex; thus, the same koff value should be obtained regardless of the SR group. We observed that all seven derivatives, whose kon values varied over a 30-fold range, had the same koff value. Concordant results were observed with NaV1.6, for which the koff was 17-fold larger. Additionally, we tested two μO§-GVIIJ derivatives (where SR was glutathione or a free thiol) on two NaV1.2 Cys replacement mutants (NaV1.2[C912A] and NaV1.2[C918A]) without and with reduction of channel disulfides by dithiothreitol. The results indicate that Cys910 in wild-type NaV1.2 has a free thiol and conversely suggest that in NaV1.2[C912A] and NaV1.2[C918A], Cys910 is disulfide-bonded to Cys918 and Cys912, respectively. Redox states of extracellular cysteines of sodium channels have hitherto received scant attention, and further experiments with GVIIJ may help fill this void. "	"Familial neonatal seizures in 36 families: Clinical and genetic features correlate with outcome. We evaluated seizure outcome in a large cohort of familial neonatal seizures (FNS), and examined phenotypic overlap with different molecular lesions. Detailed clinical data were collected from 36 families comprising two or more individuals with neonatal seizures. The seizure course and occurrence of seizures later in life were analyzed. Families were screened for KCNQ2, KCNQ3, SCN2A, and PRRT2 mutations, and linkage studies were performed in mutation-negative families to exclude known loci. Thirty-three families fulfilled clinical criteria for benign familial neonatal epilepsy (BFNE); 27 of these families had KCNQ2 mutations, one had a KCNQ3 mutation, and two had SCN2A mutations. Seizures persisting after age 6 months were reported in 31% of individuals with KCNQ2 mutations; later seizures were associated with frequent neonatal seizures. Linkage mapping in two mutation-negative BFNE families excluded linkage to KCNQ2, KCNQ3, and SCN2A, but linkage to KCNQ2 could not be excluded in the third mutation-negative BFNE family. The three remaining families did not fulfill criteria of BFNE due to developmental delay or intellectual disability; a molecular lesion was identified in two; the other family remains unsolved. Most families in our cohort of familial neonatal seizures fulfill criteria for BFNE; the molecular cause was identified in 91%. Most had KCNQ2 mutations, but two families had SCN2A mutations, which are normally associated with a mixed picture of neonatal and infantile onset seizures. Seizures later in life are more common in BFNE than previously reported and are associated with a greater number of seizures in the neonatal period. Linkage studies in two families excluded known loci, suggesting a further gene is involved in BFNE."	"Integrated analysis of whole-exome sequencing and transcriptome profiling in males with autism spectrum disorders. Autism spectrum disorders (ASD) are a group of neurodevelopmental disorders with high heritability. Recent findings support a highly heterogeneous and complex genetic etiology including rare de novo and inherited mutations or chromosomal rearrangements as well as double or multiple hits. We performed whole-exome sequencing (WES) and blood cell transcriptome by RNAseq in a subset of male patients with idiopathic ASD (n = 36) in order to identify causative genes, transcriptomic alterations, and susceptibility variants. We detected likely monogenic causes in seven cases: five de novo (SCN2A, MED13L, KCNV1, CUL3, and PTEN) and two inherited X-linked variants (MAOA and CDKL5). Transcriptomic analyses allowed the identification of intronic causative mutations missed by the usual filtering of WES and revealed functional consequences of some rare mutations. These included aberrant transcripts (PTEN, POLR3C), deregulated expression in 1.7% of mutated genes (that is, SEMA6B, MECP2, ANK3, CREBBP), allele-specific expression (FUS, MTOR, TAF1C), and non-sense-mediated decay (RIT1, ALG9). The analysis of rare inherited variants showed enrichment in relevant pathways such as the PI3K-Akt signaling and the axon guidance. Integrative analysis of WES and blood RNAseq data has proven to be an efficient strategy to identify likely monogenic forms of ASD (19% in our cohort), as well as additional rare inherited mutations that can contribute to ASD risk in a multifactorial manner. Blood transcriptomic data, besides validating 88% of expressed variants, allowed the identification of missed intronic mutations and revealed functional correlations of genetic variants, including changes in splicing, expression levels, and allelic expression."	"A Common Polymorphism in SCN2A Predicts General Cognitive Ability through Effects on PFC Physiology. Here we provide novel convergent evidence across three independent cohorts of healthy adults (n = 531), demonstrating that a common polymorphism in the gene encoding the α2 subunit of neuronal voltage-gated type II sodium channels (SCN2A) predicts human general cognitive ability or &quot;g.&quot; Using meta-analysis, we demonstrate that the minor T allele of a common polymorphism (rs10174400) in SCN2A is associated with significantly higher &quot;g&quot; independent of gender and age. We further demonstrate using resting-state fMRI data from our discovery cohort (n = 236) that this genetic advantage may be mediated by increased capacity for information processing between the dorsolateral PFC and dorsal ACC, which support higher cognitive functions. Collectively, these findings fill a gap in our understanding of the genetics of general cognitive ability and highlight a specific neural mechanism through which a common polymorphism shapes interindividual variation in &quot;g.&quot; "	"A Disulfide Stabilized β-Sandwich Defines the Structure of a New Cysteine Framework M-Superfamily Conotoxin. The structure of a new cysteine framework (-C-CC-C-C-C-) &quot;M&quot;-superfamily conotoxin, Mo3964, shows it to have a β-sandwich structure that is stabilized by inter-sheet cross disulfide bonds. Mo3964 decreases outward K(+) currents in rat dorsal root ganglion neurons and increases the reversal potential of the NaV1.2 channels. The structure of Mo3964 (PDB ID: 2MW7 ) is constructed from the disulfide connectivity pattern, i.e., 1-3, 2-5, and 4-6, that is hitherto undescribed for the &quot;M&quot;-superfamily conotoxins. The tertiary structural fold has not been described for any of the known conus peptides. NOE (549), dihedral angle (84), and hydrogen bond (28) restraints, obtained by measurement of (h3)JNC' scalar couplings, were used as input for structure calculation. The ensemble of structures showed a backbone root mean square deviation of 0.68 ± 0.18 Å, with 87% and 13% of the backbone dihedral (ϕ, ψ) angles lying in the most favored and additional allowed regions of the Ramachandran map. The conotoxin Mo3964 represents a new bioactive peptide fold that is stabilized by disulfide bonds and adds to the existing repertoire of scaffolds that can be used to design stable bioactive peptide molecules. "	"Analysis of mutations in 7 genes associated with neuronal excitability and synaptic transmission in a cohort of children with non-syndromic infantile epileptic encephalopathy. Epileptic Encephalopathy (EE) is a heterogeneous condition in which cognitive, sensory and/or motor functions deteriorate as a consequence of epileptic activity, which consists of frequent seizures and/or major interictal paroxysmal activity. There are various causes of EE and they may occur at any age in early childhood. Genetic mutations have been identified to contribute to an increasing number of children with early onset EE which had been previously considered as cryptogenic. We identified 26 patients with Infantile Epileptic Encephalopathy (IEE) of unknown etiology despite extensive workup and without any specific epilepsy syndromic phenotypes. We performed genetic analysis on a panel of 7 genes (ARX, CDKL5, KCNQ2, PCDH19, SCN1A, SCN2A, STXBP1) and identified 10 point mutations [ARX (1), CDKL5 (3), KCNQ2 (2), PCDH19 (1), SCN1A (1), STXBP1 (2)] as well as one microdeletion involving both SCN1A and SCN2A. The high rate (42%) of mutations suggested that genetic testing of this IEE panel of genes is recommended for cryptogenic IEE with no etiology identified. These 7 genes are associated with channelopathies or synaptic transmission and we recommend early genetic testing if possible to guide the treatment strategy. "	"Genes with de novo mutations are shared by four neuropsychiatric disorders discovered from NPdenovo database. Currently, many studies on neuropsychiatric disorders have utilized massive trio-based whole-exome sequencing (WES) and whole-genome sequencing (WGS) to identify numerous de novo mutations (DNMs). Here, we retrieved 17,104 DNMs from 3555 trios across four neuropsychiatric disorders: autism spectrum disorder, epileptic encephalopathy, intellectual disability and schizophrenia, in addition to unaffected siblings (control), from 36 studies by WES/WGS. After eliminating non-exonic variants, we focused on 3334 exonic DNMs for evaluation of their association with these diseases. Our results revealed a higher prevalence of DNMs in the probands of all four disorders compared with the one in the controls (P&lt;1.3 × 10(-7)). The elevated DNM frequency is dominated by loss-of-function/deleterious single-nucleotide variants and frameshift indels (that is, extreme mutations, P&lt;4.5 × 10(-5)). With extensive annotation of these 'extreme' mutations, we prioritized 764 candidate genes in these four disorders. A combined analysis of Gene Ontology, microRNA targets and transcription factor targets revealed shared biological process and non-coding regulatory elements of candidate genes in the pathology of neuropsychiatric disorders. In addition, weighted gene co-expression network analysis of human laminar-specific neocortical expression data showed that candidate genes are convergent on eight shared modules with specific layer enrichment and biological process features. Furthermore, we identified that 53 candidate genes are associated with more than one disorder (P&lt;0.000001), suggesting a possibly shared genetic etiology underlying these disorders. Particularly, DNMs of the SCN2A gene are frequently occurred across all four disorders. Finally, we constructed a freely available NPdenovo database, which provides a comprehensive catalog of the DNMs identified in neuropsychiatric disorders."	"Three patients manifesting early infantile epileptic spasms associated with 2q24.3 microduplications. Recent development of genetic analyses enabled us to reveal underlying genetic causes of the patients with epileptic encephalopathy in infancy. Mutations of voltage-gated sodium channel type I alpha subunit gene (SCN1A) are to be causally related with several phenotypes of epilepsy, generalized epilepsy with febrile seizure plus (GEFS+), Dravet syndrome, and other infantile epileptic encephalopathies. In addition to SCN1A, contiguous genes such as SCN2A and SCN3A in 2q24.3 are also reported to have contribution to epileptic seizures. Therefore, gene abnormality involving this region is reasonable to contribute to epilepsy manifestation. We encountered three patients with 2q24.3 microduplication diagnosed by Array comparative genomic hybridization array (aCGH). They developed partial seizures and epileptic spasms in their early infantile periods and showed remarkable developmental delay, although their seizures disappeared from 11 to 14 months of age. One of three patients had 2q24.3 microduplication which excludes SCN1A. Therefore, characteristics of epilepsy with 2q24.3 microduplication do not necessarily need duplication of SCN1A. This study suggested that 2q24.3 microduplication is one of the causes for early infantile epileptic spasms. Epileptic spasms associated with 2q24.3 microduplications may have better seizure outcome comparing with other etiologies."	"SCN1A, ABCC2 and UGT2B7 gene polymorphisms in association with individualized oxcarbazepine therapy. Associations between the effects of SCN1A, SCN2A, ABCC2 and UGT2B7 genetic polymorphisms and oxcarbazepine (OXC) maintenance doses in Han Chinese epileptic patients were investigated. Genetic polymorphisms were detected in 184 epileptic patients receiving OXC monotherapy by high-resolution melting curve and TaqMan method. Carriers of the SCN1A IVS5-91G&gt;A, UGT2B7 c.802T&gt;C and ABCC2 c.1249G&gt;A variant alleles required significantly higher OXC maintenance doses than noncarriers (p &lt; 0.05). Corresponding relative ln (concentration-dose ratios) values for SCN1A IVS5-91 variants differed by the genotypic order GG &gt; GA &gt; AA. SCN1A, UGT2B7 and ABCC2 genetic polymorphisms are associated with OXC maintenance doses and may be useful for the personalization of OXC therapy in epileptic patients. Further studies are needed. Original submitted 6 June 2014; Revision submitted 5 September 2014."	"Diagnostic yield of genetic testing in epileptic encephalopathy in childhood. Epilepsy is a common neurologic disorder of childhood. To determine the genetic diagnostic yield in epileptic encephalopathy, we performed a retrospective cohort study in a single epilepsy genetics clinic. We included all patients with intractable epilepsy, global developmental delay, and cognitive dysfunction seen between January 2012 and June 2014 in the Epilepsy Genetics Clinic. Electronic patient charts were reviewed for clinical features, neuroimaging, biochemical investigations, and molecular genetic investigations including targeted next-generation sequencing of epileptic encephalopathy genes. Genetic causes were identified in 28% of the 110 patients: 7% had inherited metabolic disorders including pyridoxine dependent epilepsy caused by ALDH7A1 mutation, Menkes disease, pyridox(am)ine-5-phosphate oxidase deficiency, cobalamin G deficiency, methylenetetrahydrofolate reductase deficiency, glucose transporter 1 deficiency, glycine encephalopathy, and pyruvate dehydrogenase complex deficiency; 21% had other genetic causes including genetic syndromes, pathogenic copy number variants on array comparative genomic hybridization, and epileptic encephalopathy related to mutations in the SCN1A, SCN2A, SCN8A, KCNQ2, STXBP1, PCDH19, and SLC9A6 genes. Forty-five percent of patients obtained a genetic diagnosis by targeted next-generation sequencing epileptic encephalopathy panels. It is notable that 4.5% of patients had a treatable inherited metabolic disease. To the best of our knowledge, this is the first study to combine inherited metabolic disorders and other genetic causes of epileptic encephalopathy. Targeted next-generation sequencing panels increased the genetic diagnostic yield from &lt;10% to &gt;25% in patients with epileptic encephalopathy."	"De novo R853Q mutation of SCN2A gene and West syndrome. NA"	"A surface plasmon resonance approach to monitor toxin interactions with an isolated voltage-gated sodium channel paddle motif. Animal toxins that inhibit voltage-gated sodium (Na(v)) channel fast inactivation can do so through an interaction with the S3b-S4 helix-turn-helix region, or paddle motif, located in the domain IV voltage sensor. Here, we used surface plasmon resonance (SPR), an optical approach that uses polarized light to measure the refractive index near a sensor surface to which a molecule of interest is attached, to analyze interactions between the isolated domain IV paddle and Na(v) channel-selective α-scorpion toxins. Our SPR analyses showed that the domain IV paddle can be removed from the Na(v) channel and immobilized on sensor chips, and suggest that the isolated motif remains susceptible to animal toxins that target the domain IV voltage sensor. As such, our results uncover the inherent pharmacological sensitivities of the isolated domain IV paddle motif, which may be exploited to develop a label-free SPR approach for discovering ligands that target this region."	"Maternal care differentially affects neuronal excitability and synaptic plasticity in the dorsal and ventral hippocampus. Variations in early life maternal care modulate hippocampal development to program distinct emotional-cognitive phenotypes that persist into adulthood. Adult rat offspring that received low compared with high levels of maternal licking and grooming (low LG offspring) in early postnatal life show reduced long term potentiation (LTP) and impaired hippocampal-dependent memory, suggesting a 'detrimental' maternal effect on neural development. However, these studies focused uniquely on the dorsal hippocampus. Emerging evidence suggests a distinct role of the ventral hippocampus in mediating aggression, anxiety, and fear-memory formation, which are enhanced in low LG offspring. We report that variations in maternal care in the rat associate with opposing effects on hippocampal function in the dorsal and ventral hippocampus. Reduced pup licking associated with suppressed LTP formation in the dorsal hippocampus, but enhanced ventral hippocampal LTP. Ventral hippocampal neurons in low LG offspring fired action potentials at lower threshold voltages that were of larger amplitude and faster rise rate in comparison with those in high LG offspring. Furthermore, recordings of excitatory postsynaptic potential-to-spike coupling (E-S coupling) revealed an increase in excitability of ventral hippocampal CA1 neurons in low LG offspring. These effects do not associate with changes in miniature excitatory postsynaptic currents or paired-pulse facilitation, suggesting a specific effect of maternal care on intrinsic excitability. These findings suggest region-specific influences of maternal care in shaping neural development and synaptic plasticity. "	"Epilepsy phenotype associated with a chromosome 2q24.3 deletion involving SCN1A: Migrating partial seizures of infancy or atypical Dravet syndrome? The deletion of a sodium channel gene cluster located on chromosome 2q24.3 is associated with variable epilepsy phenotypes, including Dravet syndrome and migrating partial seizures of infancy. Although SCN1A is considered as the major contributor to the epilepsy phenotype, the role of other sodium channel genes that map within this cluster has not been delineated. We presented five new cases with a chromosome 2q24.3 deletion involving SCN1A and investigated their epilepsy phenotype in relation to the extent of the deletion. Three cases with deletion of the whole sodium channel gene cluster (SCN3A, SCN2A, SCN1A, SCN9A, and SCN7A) exhibited a complex epilepsy phenotype that was atypical for Dravet syndrome and suggestive of migrating partial seizures of infancy: early seizure onset (before 2 months of age), severe developmental delay from seizure onset, multifocal interictal spikes, polymorphous focal seizures, and acquired microcephaly. Two cases with partial deletion of SCN1A and SCN9A and whole SCN1A deletion had an epilepsy phenotype of Dravet syndrome. A literature review of cases with chromosome 2q24.3 deletion revealed that, in most Dravet syndrome cases, it does not involve SCN2A and SCN3A, whereas a complex epilepsy phenotype that is shared with migrating partial seizures of infancy was associated with cases of deletion of the whole sodium channel gene cluster. "	"Molecular characterization of a cohort of 73 patients with infantile spasms syndrome. Infantile Spasms syndrome (ISs) is a characterized by epileptic spasms occurring in clusters with an onset in the first year of life. West syndrome represents a subset of ISs that associates spasms in clusters, a hypsarrhythmia EEG pattern and a developmental arrest or regression. Aetiology of ISs is widely heterogeneous including many genetic causes. Many patients, however, remain without etiological diagnosis, which is critical for prognostic purpose and genetic counselling. In the present study, we performed genetic screening of 73 patients with different types of ISs by array-CGH and molecular analysis of 5 genes: CDKL5, STXBP1, KCNQ2, and GRIN2A, whose mutations cause different types of epileptic encephalopathies, including ISs, as well as MAGI2, which was suggested to be related to a subset of ISs. In total, we found a disease-causing mutation or CNV (Copy Number Variation) in 15% of the patients. These included 6 point mutations found in CDKL5 (n = 3) and STXBP1 (n = 3), 3 microdeletions (10 Mb in 2q24.3, 3.2 Mb in 5q14.3 including the region upstream to MEF2C, and 256 kb in 9q34 disrupting EHMT1), and 2 microduplications (671 kb in 2q24.3 encompassing SCN2A, and 11.93 Mb in Xq28). In addition, we discuss 3 CNVs as potential risk factors, including one 16p12.1 deletion, one intronic deletion of the NEDD4 gene, and one intronic deletion of CALN1 gene. The present findings highlight the efficacy of combined cytogenetic and targeted mutation screening to improve the diagnostic yield in patient with ISs. "	"SCN2A mutation in a Chinese boy with infantile spasm - response to Modified Atkins Diet. Mutation of SCN2A, encoding for voltage-gated sodium channel type II alpha subunit, has been demonstrated in various epilepsy phenotypes, ranging from benign to severe epileptic disorders and recently this had been reported for cases with infantile spasm (IS). We study a 6 years-old Chinese boy with severe developmental delay who had infantile spasm since 15 months. He later had severe intellectual disability and autistic features. He failed to respond to most anticonvulsants. Modified Atkins Diet was introduced at 4 years of age and he showed a seizure remission for 12 months with only 1 anticonvulsants. To clarify the unknown etiology, mutations were screened for genes associated with brain development or synaptic function. A heterozygous mutation (c.3631G&gt;A; p.E1211K) was identified in exon 21 of SCN2A gene. This mutation has been reported previously only in a Japanese patient with IS. This is the first case of SCN2A mutation identified in Chinese. Similarity of our case and one Japanese case of infantile spasm indicated that this E1211K mutation is important as possible etiology of IS. Trial of Modified Atkins Diet for other cases of infantile spasm with similar SCN2A mutations is worthwhile pursuing."	"A case of recurrent encephalopathy with SCN2A missense mutation. Voltage-gated sodium channels regulate neuronal excitability, as well as survival and the patterning of neuronal connectivity during development. Mutations in SCN2A, which encodes the Na(+) channel Nav1.2, cause epilepsy syndromes and predispose children to acute encephalopathy. Here, we report the case of a young male with recurrent acute encephalopathy who carried a novel missense mutation in the SCN2A gene. He was born by normal delivery and developed repetitive apneic episodes at 2days of age. Diffusion-weighted imaging revealed high-intensity areas in diffuse subcortical white matter, bilateral thalami, and basal nuclei. His symptoms improved gradually without any specific treatment, but he exhibited a motor milestone delay after the episode. At the age of 10months, he developed acute cerebellopathy associated with a respiratory syncytial viral infection. He received high-dose intravenous gammaglobulin and methylprednisolone pulse therapy and seemed to have no obvious sequelae after the episode. He then developed severe diffuse encephalopathy associated with gastroenteritis at the age of 14months. He received high-dose intravenous gammaglobulin and methylprednisolone pulse therapy but was left with severe neurological sequelae. PCR-based analysis revealed a novel de novo missense mutation, c.4979T&gt;G (p.Leu1660Trp), in the SCN2A gene. This case suggests that SCN2A mutations might predispose children to repetitive encephalopathy with variable clinical and imaging findings. "	"'Neonatal' Nav1.2 reduces neuronal excitability and affects seizure susceptibility and behaviour. Developmentally regulated alternative splicing produces 'neonatal' and 'adult' isoforms of four Na(+) channels in human brain, NaV1.1, NaV1.2, NaV1.3 and NaV1.6. Heterologously expressed 'neonatal' NaV1.2 channels are less excitable than 'adult' channels; however, functional importance of this difference is unknown. We hypothesized that the 'neonatal' NaV1.2 may reduce neuronal excitability and have a seizure-protective role during early brain development. To test this hypothesis, we generated NaV1.2(adult) mice expressing only the 'adult' NaV1.2, and compared the firing properties of pyramidal cortical neurons, as well as seizure susceptibility, between the NaV1.2(adult) and wild-type (WT) mice at postnatal day 3 (P3), when the 'neonatal' isoform represents 65% of the WT NaV1.2. We show significant increases in action potential firing in NaV1.2(adult) neurons and in seizure susceptibility of NaV1.2(adult) mice, supporting our hypothesis. At postnatal day 15 (P15), when 17% of the WT NaV1.2 is 'neonatal', the firing properties of NaV1.2(adult) and WT neurons converged. However, inhibitory postsynaptic currents in NaV1.2(adult) neurons were larger and the expression level of Scn2a mRNA was 24% lower compared with the WT. The enhanced seizure susceptibility of the NaV1.2(adult) mice persisted into adult age. The adult NaV1.2(adult) mice also exhibited greater risk-taking behaviour. Overall, our data reveal a significant impact of 'neonatal' NaV1.2 on neuronal excitability, seizure susceptibility and behaviour and may contribute to our understanding of NaV1.2 roles in health and diseases such as epilepsy and autism. "	"Genotype &amp; Phenotype of Ohtahara Syndrome-What's SCN2A Got to Do With It? A Clinician's Read. NA"	"Common variants associated with general and MMR vaccine-related febrile seizures. Febrile seizures represent a serious adverse event following measles, mumps and rubella (MMR) vaccination. We conducted a series of genome-wide association scans comparing children with MMR-related febrile seizures, children with febrile seizures unrelated to vaccination and controls with no history of febrile seizures. Two loci were distinctly associated with MMR-related febrile seizures, harboring the interferon-stimulated gene IFI44L (rs273259: P = 5.9 × 10(-12) versus controls, P = 1.2 × 10(-9) versus MMR-unrelated febrile seizures) and the measles virus receptor CD46 (rs1318653: P = 9.6 × 10(-11) versus controls, P = 1.6 × 10(-9) versus MMR-unrelated febrile seizures). Furthermore, four loci were associated with febrile seizures in general, implicating the sodium channel genes SCN1A (rs6432860: P = 2.2 × 10(-16)) and SCN2A (rs3769955: P = 3.1 × 10(-10)), a TMEM16 family gene (ANO3; rs114444506: P = 3.7 × 10(-20)) and a region associated with magnesium levels (12q21.33; rs11105468: P = 3.4 × 10(-11)). Finally, we show the functional relevance of ANO3 (TMEM16C) with electrophysiological experiments in wild-type and knockout rats. "	"Genotype phenotype associations across the voltage-gated sodium channel family. Mutations in genes encoding voltage-gated sodium channels have emerged as the most clinically relevant genes associated with epilepsy, cardiac conduction defects, skeletal muscle channelopathies and peripheral pain disorders. Geneticists in partnership with neurologists and cardiologists are often asked to comment on the clinical significance of specific mutations. We have reviewed the evidence relating to genotype phenotype associations among the best known voltage-gated sodium channel related disorders. Comparing over 1300 sodium channel mutations in central and peripheral nervous system, heart and muscle, we have identified many similarities in the genetic and clinical characteristics across the voltage-gated sodium channel family. There is evidence, that the level of impairment a specific mutation causes can be anticipated by the underlying physico-chemical property change of that mutation. Across missense mutations those with higher Grantham scores are associated with more severe phenotypes and truncating mutations underlie the most severe phenotypes. Missense mutations are clustered in specific areas and are associated with distinct phenotypes according to their position in the protein. Inherited mutations tend to be less severe than de novo mutations which are usually associated with greater physico-chemical difference. These findings should lead to a better understanding of the clinical significance of specific voltage-gated sodium channel mutations, aiding geneticists and physicians in the interpretation of genetic variants and counselling individuals and their families. "	"Clinical and genetic features of acute encephalopathy in children taking theophylline. Theophylline has recently been suspected as a risk factor of acute encephalopathy with biphasic seizures and late reduced diffusion (AESD), although there has been no systematic study on the relationship between acute encephalopathy in children taking theophylline (AET) and AESD. We recruited 16 Japanese patients (11 male and 5 female, median age of 2 years and 7 months) with AET from 2008 to 2013. We evaluated their clinical features, such as the duration of first seizure, biphasic clinical course and cranial CT/MRI imaging and compared them with those of AESD. We analyzed the polymorphisms or mutations of genes which are associated with AESD. Clinically, 12 patients had neurological and/or radiological features of AESD. Only one patient died, whereas all 15 surviving patients were left with motor and/or intellectual deficits. Genetically, 14 patients had at least one of the following polymorphisms or mutations associated with AESD: thermolabile variation of the carnitine palmitoyltransferase 2 (CPT2) gene, polymorphism causing high expression of the adenosine receptor A2A (ADORA2A) gene, and heterozygous missense mutation of the voltage gated sodium channel 1A (SCN1A) and 2A (SCN2A) gene. Our results demonstrate that AET overlaps with AESD, and that AET is a multifactorial disorder sharing a genetic background with AESD."	"Association of SCN1A, SCN2A and ABCC2 gene polymorphisms with the response to antiepileptic drugs in Chinese Han patients with epilepsy. The purpose of this study was to investigate the potential impact of SCN1A, SCN2A and ABCC2 gene polymorphisms on the response to antiepileptic drugs in Chinese Han patients with epilepsy. Genetic polymorphisms in the candidate genes were detected in 453 Chinese epileptic patients by high-resolution melting curve and TaqMan methods. The SCN1A IVS5-91G&gt;A AA genotype and the ABCC2 c.1249G&gt;A GA genotype were significantly associated with carbamazepine/oxcarbamazepine (CBZ/OXC)-resistant epilepsy (p =0.002 and p = 0.036, respectively). The frequencies of haplotypes AA (SCN1A gene) and AC (ABCC2 gene) in drug-resistant patients were significantly higher than those in responsive patients (p = 0.002 and p = 0.005, respectively). This study suggested that SCN1A and ABCC2 polymorphisms may be associated with the response to CBZ/OXC in the Chinese Han population, indicating that they could serve as predictors of drug response. Original submitted 29 January 2014; Revision submitted 30 May 2014."	"Neurodevelopmental disorders associated with dosage imbalance of ZBTB20 correlate with the morbidity spectrum of ZBTB20 candidate target genes. Recently, a number of patients have been described with structural rearrangements at 3q13.31, delineating a novel microdeletion syndrome with common clinical features including developmental delay and other neurodevelopmental disorders (NDD). A smallest region of overlapping deletions (SRO) involved five RefSeq genes, including the transcription factor gene ZBTB20 and the dopamine receptor gene DRD3, considered as candidate genes for the syndrome. We used array comparative genomic hybridization and next-generation mate-pair sequencing to identify key structural rearrangements involving ZBTB20 in two patients with NDD. In a patient with developmental delay, attention-deficit hyperactivity disorder, psychosis, Tourette's syndrome and autistic traits, a de novo balanced t(3;18) translocation truncated ZBTB20. The other breakpoint did not disrupt any gene. In a second patient with developmental delay and autism, we detected the first microdeletion at 3q13.31, which truncated ZBTB20 but did not involve DRD3 or the other genes within the previously defined SRO. Zbtb20 directly represses 346 genes in the developing murine brain. Of the 342 human orthologous ZBTB20 candidate target genes, we found 68 associated with NDD. Using chromatin immunoprecipitation and quantitative PCR, we validated the in vivo binding of Zbtb20 in evolutionary conserved regions in six of these genes (Cntn4, Gad1, Nrxn1, Nrxn3, Scn2a, Snap25). Our study links dosage imbalance of ZBTB20 to a range of neurodevelopmental, cognitive and psychiatric disorders, likely mediated by dysregulation of multiple ZBTB20 target genes, and provides new knowledge on the genetic background of the NDD seen in the 3q13.31 microdeletion syndrome."	"[Strategy of advanced research in the field of acute encephalopathy in childhood]. NA"	"[Molecular genetics of intractable epilepsies]. NA"	"Antiepileptic activity of preferential inhibitors of persistent sodium current. Evidence from basic neurophysiology and molecular genetics has implicated persistent sodium current conducted by voltage-gated sodium (NaV ) channels as a contributor to the pathogenesis of epilepsy. Many antiepileptic drugs target NaV channels and modulate neuronal excitability, mainly by a use-dependent block of transient sodium current, although suppression of persistent current may also contribute to the efficacy of these drugs. We hypothesized that a drug or compound capable of preferential inhibition of persistent sodium current would have antiepileptic activity. We examined the antiepileptic activity of two selective persistent sodium current blockers ranolazine, a U.S. Food and Drug Administration (FDA)-approved drug for treatment of angina pectoris, and GS967, a novel compound with more potent effects on persistent current, in the epileptic Scn2a(Q54) mouse model. We also examined the effect of GS967 in the maximal electroshock model and evaluated effects of the compound on neuronal excitability, propensity for hilar neuron loss, development of mossy fiber sprouting, and survival of Scn2a(Q54) mice. We found that ranolazine was capable of reducing seizure frequency by approximately 50% in Scn2a(Q54) mice. The more potent persistent current blocker GS967 reduced seizure frequency by &gt;90% in Scn2a(Q54) mice and protected against induced seizures in the maximal electroshock model. GS967 greatly attenuated abnormal spontaneous action potential firing in pyramidal neurons acutely isolated from Scn2a(Q54) mice. In addition to seizure suppression in vivo, GS967 treatment greatly improved the survival of Scn2a(Q54) mice, prevented hilar neuron loss, and suppressed the development of hippocampal mossy fiber sprouting. Our findings indicate that the selective persistent sodium current blocker GS967 has potent antiepileptic activity and that this compound could inform development of new agents."	"Paternal germline mosaicism of a SCN2A mutation results in Ohtahara syndrome in half siblings. Ohtahara syndrome is a devastating early infantile epileptic encephalopathy caused by mutations in different genes. We describe a patient with Ohtahara syndrome who presented on the first day of life with refractory tonic seizures and a suppression-burst pattern on EEG. The patient developed severe microcephaly, and never achieved any developmental milestones. He died at the age of 5 years. A de novo missense mutation (c. 4007C&gt;A, p.S1336Y) in SCN2A was found. Interestingly, the father has another son with Ohtahara syndrome from a different mother. The half brother carries the same SCN2A mutation, strongly suggesting paternal gonadal mosaicism of the mutation. The broad clinical spectrum of SCN2A mutations now includes Ohtahara syndrome. This is the first report of familial Ohtahara syndrome due to a germline mosaic SCN2A mutation. Somatic mosaicism, including germline, has been described in several epileptic encephalopathies such as Dravet syndrome, KCNQ2 neonatal epileptic encephalopathy, SCN8A epileptic encephalopathy and STXBP1 related Ohtahara syndrome. Mosaicism should be considered as one of the important inheritance patterns when counseling parents with a child with these devastating diseases. "	"Reciprocal changes in phosphorylation and methylation of mammalian brain sodium channels in response to seizures. Voltage-gated sodium (Nav) channels initiate action potentials in brain neurons and are primary therapeutic targets for anti-epileptic drugs controlling neuronal hyperexcitability in epilepsy. The molecular mechanisms underlying abnormal Nav channel expression, localization, and function during development of epilepsy are poorly understood but can potentially result from altered posttranslational modifications (PTMs). For example, phosphorylation regulates Nav channel gating, and has been proposed to contribute to acquired insensitivity to anti-epileptic drugs exhibited by Nav channels in epileptic neurons. However, whether changes in specific brain Nav channel PTMs occur acutely in response to seizures has not been established. Here, we show changes in PTMs of the major brain Nav channel, Nav1.2, after acute kainate-induced seizures. Mass spectrometry-based proteomic analyses of Nav1.2 purified from the brains of control and seizure animals revealed a significant down-regulation of phosphorylation at nine sites, primarily located in the interdomain I-II linker, the region of Nav1.2 crucial for phosphorylation-dependent regulation of activity. Interestingly, Nav1.2 in the seizure samples contained methylated arginine (MeArg) at three sites. These MeArgs were adjacent to down-regulated sites of phosphorylation, and Nav1.2 methylation increased after seizure. Phosphorylation and MeArg were not found together on the same tryptic peptide, suggesting reciprocal regulation of these two PTMs. Coexpression of Nav1.2 with the primary brain arginine methyltransferase PRMT8 led to a surprising 3-fold increase in Nav1.2 current. Reciprocal regulation of phosphorylation and MeArg of Nav1.2 may underlie changes in neuronal Nav channel function in response to seizures and also contribute to physiological modulation of neuronal excitability. "	"Differential effects of common variants in SCN2A on general cognitive ability, brain physiology, and messenger RNA expression in schizophrenia cases and control individuals. One approach to understanding the genetic complexity of schizophrenia is to study associated behavioral and biological phenotypes that may be more directly linked to genetic variation. To identify single-nucleotide polymorphisms associated with general cognitive ability (g) in people with schizophrenia and control individuals. Genomewide association study, followed by analyses in unaffected siblings and independent schizophrenia samples, functional magnetic resonance imaging studies of brain physiology in vivo, and RNA sequencing in postmortem brain samples. The discovery cohort and unaffected siblings were participants in the National Institute of Mental Health Clinical Brain Disorders Branch schizophrenia genetics studies. Additional schizophrenia cohorts were from psychiatric treatment settings in the United States, Japan, and Germany. The discovery cohort comprised 339 with schizophrenia and 363 community control participants. Follow-up analyses studied 147 unaffected siblings of the schizophrenia cases and independent schizophrenia samples including a total of an additional 668 participants. Imaging analyses included 87 schizophrenia cases and 397 control individuals. Brain tissue samples were available for 64 cases and 61 control individuals. We studied genomewide association with g, by group, in the discovery cohort. We used selected genotypes to test specific associations in unaffected siblings and independent schizophrenia samples. Imaging analyses focused on activation in the prefrontal cortex during working memory. Brain tissue studies yielded messenger RNA expression levels for RefSeq transcripts. The schizophrenia discovery cohort showed genomewide-significant association of g with polymorphisms in sodium channel gene SCN2A, accounting for 10.4% of g variance (rs10174400, P = 9.27 × 10(-10)). Control individuals showed a trend for g/genotype association with reversed allelic directionality. The genotype-by-group interaction was also genomewide significant (P = 1.75 × 10(-9)). Siblings showed a genotype association with g parallel to the schizophrenia group and the same interaction pattern. Parallel, but weaker, associations with cognition were found in independent schizophrenia samples. Imaging analyses showed a similar pattern of genotype associations by group and genotype-by-group interaction. Sequencing of RNA in brain revealed reduced expression in 2 of 3 SCN2A alternative transcripts in the patient group, with genotype-by-group interaction, that again paralleled the cognition effects. The findings implicate SCN2A and sodium channel biology in cognitive impairment in schizophrenia cases and unaffected relatives and may facilitate development of cognition-enhancing treatments."	"Infantile epileptic encephalopathy, transient choreoathetotic movements, and hypersomnia due to a De Novo missense mutation in the SCN2A gene. Mutations of the SCN2A gene have originally been described in association with benign familial neonatal-infantile seizures (BFNIS). Recently, single patients with more severe phenotypes and persisting epileptic encephalopathies have been recognized. We report the case of a girl with severe infantile onset epileptic encephalopathy and a de novo missense mutation in the SCN2A gene (c.4025T &gt; C/ = ; p.L1342P/ = ), who presented with a transient choreatic movement disorder, hypersomnia, and progressive brain atrophy. Whole exome sequencing did not reveal any other disease causing mutation. Our patient contributes to the expanding phenotypic spectrum of SCN2A-related disorders and underlines the importance of genetic workup in epileptic encephalopathies. "	"Role of the hippocampus in Nav1.6 (Scn8a) mediated seizure resistance. SCN1A mutations are the main cause of the epilepsy disorders Dravet syndrome (DS) and genetic epilepsy with febrile seizures plus (GEFS+). Mutations that reduce the activity of the mouse Scn8a gene, in contrast, are found to confer seizure resistance and extend the lifespan of mouse models of DS and GEFS+. To investigate the mechanism by which reduced Scn8a expression confers seizure resistance, we induced interictal-like burst discharges in hippocampal slices of heterozygous Scn8a null mice (Scn8a(med/+)) with elevated extracellular potassium. Scn8a(med/+) mutants exhibited reduced epileptiform burst discharge activity after P20, indicating an age-dependent increased threshold for induction of epileptiform discharges. Scn8a deficiency also reduced the occurrence of burst discharges in a GEFS+ mouse model (Scn1a(R1648H/+)). There was no detectable change in the expression levels of Scn1a (Nav1.1) or Scn2a (Nav1.2) in the hippocampus of adult Scn8a(med/+) mutants. To determine whether the increased seizure resistance associated with reduced Scn8a expression was due to alterations that occurred during development, we examined the effect of deleting Scn8a in adult mice. Global Cre-mediated deletion of a heterozygous floxed Scn8a allele in adult mice was found to increase thresholds to chemically and electrically induced seizures. Finally, knockdown of Scn8a gene expression in the adult hippocampus via lentiviral Cre injection resulted in a reduction in the number of EEG-confirmed seizures following the administration of picrotoxin. Our results identify the hippocampus as an important structure in the mediation of Scn8a-dependent seizure protection and suggest that selective targeting of Scn8a activity might be efficacious in patients with epilepsy. "	"Confirming an expanded spectrum of SCN2A mutations: a case series. Mutations in sodium channel genes are highly associated with epilepsy. Mutation of SCN1A, the gene encoding the voltage gated sodium channel (VGSC) alpha subunit type 1 (Nav1.1), causes Dravet syndrome spectrum disorders. Mutations in SCN2A have been identified in patients with benign familial neonatal-infantile epilepsy (BFNIE), generalised epilepsy with febrile seizures plus (GEFS+), and a small number of reported cases of other infantile-onset severe intractable epilepsy. Here, we report three patients with infantile-onset severe intractable epilepsy found to have de novo mutations in SCN2A. While a causal role for these mutations cannot be directly established, these findings contribute to growing evidence that mutation of SCN2A is associated with a range of epilepsy phenotypes including severe infantile-onset epilepsy. "	"Physiological and genetic analysis of multiple sodium channel variants in a model of genetic absence epilepsy. In excitatory neurons, SCN2A (NaV1.2) and SCN8A (NaV1.6) sodium channels are enriched at the axon initial segment. NaV1.6 is implicated in several mouse models of absence epilepsy, including a missense mutation identified in a chemical mutagenesis screen (Scn8a(V929F)). Here, we confirmed the prior suggestion that Scn8a(V929F) exhibits a striking genetic background-dependent difference in phenotypic severity, observing that spike-wave discharge (SWD) incidence and severity are significantly diminished when Scn8a(V929F) is fully placed onto the C57BL/6J strain compared with C3H. Examination of sequence differences in NaV subunits between these two inbred strains suggested NaV1.2(V752F) as a potential source of this modifier effect. Recognising that the spatial co-localisation of the NaV channels at the axon initial segment (AIS) provides a plausible mechanism for functional interaction, we tested this idea by undertaking biophysical characterisation of the variant NaV channels and by computer modelling. NaV1.2(V752F) functional analysis revealed an overall gain-of-function and for NaV1.6(V929F) revealed an overall loss-of-function. A biophysically realistic computer model was used to test the idea that interaction between these variant channels at the AIS contributes to the strain background effect. Surprisingly this modelling showed that neuronal excitability is dominated by the properties of NaV1.2(V752F) due to &quot;functional silencing&quot; of NaV1.6(V929F) suggesting that these variants do not directly interact. Consequent genetic mapping of the major strain modifier to Chr 7, and not Chr 2 where Scn2a maps, supported this biophysical prediction. While a NaV1.6(V929F) loss of function clearly underlies absence seizures in this mouse model, the strain background effect is apparently not due to an otherwise tempting Scn2a variant, highlighting the value of combining physiology and genetics to inform and direct each other when interrogating genetic complex traits such as absence epilepsy."	"De novo SCN2A splice site mutation in a boy with Autism spectrum disorder. SCN2A is a gene that codes for the alpha subunit of voltage-gated, type II sodium channels, and is highly expressed in the brain. Sodium channel disruptions, such as mutations in SCN2A, may play an important role in psychiatric disorders. Recently, de novo SCN2A mutations in autism spectrum disorder (ASD) have been identified. The current study characterizes a de novo splice site mutation in SCN2A that alters mRNA and protein products. We describe results from clinical and genetic characterizations of a seven-year-old boy with ASD. Psychiatric interview and gold standard autism diagnostic instruments (ADOS and ADI-R) were used to confirm ASD diagnosis, in addition to performing standardized cognitive and adaptive functioning assessments (Leiter-R and Vineland Adaptive Behavior Scale), and sensory reactivity assessments (Sensory Profile and Sensory Processing Scales). Genetic testing by whole exome sequencing revealed four de novo events, including a splice site mutation c.476 + 1G &gt; A in SCN2A, a missense mutation (c.2263G &gt; A) causing a p.V755I change in the TLE1 gene, and two synonymous mutations (c.2943A &gt; G in the BUB1 gene, and c.1254 T &gt; A in C10orf68 gene). The de novo SCN2A splice site mutation produced a stop codon 10 amino acids downstream, possibly resulting in a truncated protein and/or a nonsense-mediated mRNA decay. The participant met new DSM-5 criteria for ASD, presenting with social and communication impairment, repetitive behaviors, and sensory reactivity issues. The participant's adaptive and cognitive skills fell in the low range of functioning. This report indicates that a splice site mutation in SCN2A might be contributing to the risk of ASD. Describing the specific phenotype associated with SCN2A mutations might help to reduce heterogeneity seen in ASD."	"Recent challenges to the psychiatric diagnostic nosology: a focus on the genetics and genomics of neurodevelopmental disorders. Recent advances in the genetics of neurodevelopmental disorder (NDD) have demonstrated that rare mutations play a role not only in Mendelian syndromes, but in complex, common forms of NDDs as well. Strikingly, both common polymorphisms and rare variations in a single gene or genetic locus have been found to carry risk for conditions previously considered to be clinically and aetiologically distinct. Recent developments in the methods and tools available for studying complex NDDs have led to systematic and reliable genome-wide variant discovery. Both common as well as rare, and structural as well as sequence, genetic variations have been identified as contributing to NDDs. There are multiple examples in which the identical variant had been found to contribute to a wide range of formerly distinct diagnoses, including autism, schizophrenia, epilepsy, intellectual disability and language disorders. These include variations in chromosomal structure at 16p11.2, rare de novo point mutations at the gene SCN2A, and common single nucleotide polymorphisms (SNPs) mapping near loci encoding the genes ITIH3, AS3MT, CACNA1C and CACNB2. These selected examples point to the challenges to current diagnostic approaches. Widely used categorical schema have been adequate to provide an entré into molecular mechanisms of NDDs, but there is a need to develop an alternative, more biologically-relevant nosology. Thus recent advances in gene discovery in the area of NDDs are leading to a re-conceptualization of diagnostic boundaries. Findings suggest that epidemiological samples may provide important new insights into the genetics and diagnosis of NDDs and that other areas of medicine may provide useful models for developing a new diagnostic nosology, one that simultaneously integrates categorical diagnoses, biomarkers and dimensional variables. "	"Exome sequencing identifies a de novo SCN2A mutation in a patient with intractable seizures, severe intellectual disability, optic atrophy, muscular hypotonia, and brain abnormalities. Epilepsy is a phenotypically and genetically highly heterogeneous disorder with &gt;200 genes linked to inherited forms of the disease. To identify the underlying genetic cause in a patient with intractable seizures, optic atrophy, severe intellectual disability (ID), brain abnormalities, and muscular hypotonia, we performed exome sequencing in a 5-year-old girl and her unaffected parents. In the patient, we detected a novel, de novo missense mutation in the SCN2A (c.5645G&gt;T; p.R1882L) gene encoding the αII -subunit of the voltage-gated sodium channel Nav 1.2. A literature review revealed 33 different SCN2A mutations in 14 families with benign forms of epilepsy and in 21 cases with severe phenotypes. Although almost all benign mutations were inherited, the majority of severe mutations occurred de novo. Of interest, de novo SCN2A mutations have also been reported in five patients without seizures but with ID (n = 3) and/or autism (n = 3). In the present study, we successfully used exome sequencing to detect a de novo mutation in a genetically heterogeneous disorder with epilepsy and ID. Using this approach, we expand the phenotypic spectrum of SCN2A mutations. Our own and literature data indicate that SCN2A-linked severe phenotypes are more likely to be caused by de novo mutations. A PowerPoint slide summarizing this article is available for download in the Supporting Information section here. "	"Clinical whole-genome sequencing in severe early-onset epilepsy reveals new genes and improves molecular diagnosis. In severe early-onset epilepsy, precise clinical and molecular genetic diagnosis is complex, as many metabolic and electro-physiological processes have been implicated in disease causation. The clinical phenotypes share many features such as complex seizure types and developmental delay. Molecular diagnosis has historically been confined to sequential testing of candidate genes known to be associated with specific sub-phenotypes, but the diagnostic yield of this approach can be low. We conducted whole-genome sequencing (WGS) on six patients with severe early-onset epilepsy who had previously been refractory to molecular diagnosis, and their parents. Four of these patients had a clinical diagnosis of Ohtahara Syndrome (OS) and two patients had severe non-syndromic early-onset epilepsy (NSEOE). In two OS cases, we found de novo non-synonymous mutations in the genes KCNQ2 and SCN2A. In a third OS case, WGS revealed paternal isodisomy for chromosome 9, leading to identification of the causal homozygous missense variant in KCNT1, which produced a substantial increase in potassium channel current. The fourth OS patient had a recessive mutation in PIGQ that led to exon skipping and defective glycophosphatidyl inositol biosynthesis. The two patients with NSEOE had likely pathogenic de novo mutations in CBL and CSNK1G1, respectively. Mutations in these genes were not found among 500 additional individuals with epilepsy. This work reveals two novel genes for OS, KCNT1 and PIGQ. It also uncovers unexpected genetic mechanisms and emphasizes the power of WGS as a clinical tool for making molecular diagnoses, particularly for highly heterogeneous disorders."	"Anti-prion activity of a panel of aromatic chemical compounds: in vitro and in silico approaches. The prion protein (PrP) is implicated in the Transmissible Spongiform Encephalopathies (TSEs), which comprise a group of fatal neurodegenerative diseases affecting humans and other mammals. Conversion of cellular PrP (PrP(C)) into the scrapie form (PrP(Sc)) is the hallmark of TSEs. Once formed, PrP(Sc) aggregates and catalyzes PrP(C) misfolding into new PrP(Sc) molecules. Although many compounds have been shown to inhibit the conversion process, so far there is no effective therapy for TSEs. Besides, most of the previously evaluated compounds failed in vivo due to poor pharmacokinetic profiles. In this work we propose a combined in vitro/in silico approach to screen for active anti-prion compounds presenting acceptable drugability and pharmacokinetic parameters. A diverse panel of aromatic compounds was screened in neuroblastoma cells persistently infected with PrP(Sc) (ScN2a) for their ability to inhibit PK-resistant PrP (PrP(Res)) accumulation. From ∼200 compounds, 47 were effective in decreasing the accumulation of PrP(Res) in ScN2a cells. Pharmacokinetic and physicochemical properties were predicted in silico, allowing us to obtain estimates of relative blood brain barrier permeation and mutagenicity. MTT reduction assays showed that most of the active compounds were non cytotoxic. Compounds that cleared PrP(Res) from ScN2a cells, were non-toxic in the MTT assay, and presented a good pharmacokinetic profile were investigated for their ability to inhibit aggregation of an amyloidogenic PrP peptide fragment (PrP(109-149)). Molecular docking results provided structural models and binding affinities for the interaction between PrP and the most promising compounds. In summary, using this combined in vitro/in silico approach we have identified new small organic anti-scrapie compounds that decrease the accumulation of PrP(Res) in ScN2a cells, inhibit the aggregation of a PrP peptide, and possess pharmacokinetic characteristics that support their drugability. These compounds are attractive candidates for prion disease therapy. "	"A de novo convergence of autism genetics and molecular neuroscience. Autism spectrum disorder (ASD) and intellectual disability (ID) are neurodevelopmental disorders with large genetic components, but identification of pathogenic genes has proceeded slowly because hundreds of loci are involved. New exome sequencing technology has identified novel rare variants and has found that sporadic cases of ASD/ID are enriched for disruptive de novo mutations. Targeted large-scale resequencing studies have confirmed the significance of specific loci, including chromodomain helicase DNA binding protein 8 (CHD8), sodium channel, voltage-gated, type II, alpha subunit (SCN2A), dual specificity tyrosine-phosphorylation-regulated kinase 1A (DYRK1A), and catenin (cadherin-associated protein), beta 1, 88 kDa (CTNNB1, beta-catenin). We review recent studies and suggest that they have led to a convergence on three functional pathways: (i) chromatin remodeling; (ii) wnt signaling during development; and (iii) synaptic function. These pathways and genes significantly expand the neurobiological targets for study, and suggest a path for future genetic and functional studies."	"The Nav channel bench series: Plasmid preparation. Research involving recombinant voltage-gated sodium (Nav) channels has unique challenges. Multiple factors contribute, but undoubtedly at the top of the list is these channels' DNA instability. Once introduced into bacterial hosts, Nav channel plasmid DNA will almost invariably emerge mutagenized and unusable, unless special conditions are adopted. This is particularly true for Nav1.1 (gene name SCN1A), Nav1.2 (SCN2A), and Nav1.6 (SCN8A), but less so for Nav1.4 (SCN4A) and Nav1.5 (SCN5A) while other Nav channel isoforms such as Nav1.7 (SCN9A) lie in between. The following recommendations for Nav plasmid DNA amplification and preparation address this problem. Three points are essential:•Bacterial propagation using Stbl2 cells at or below 30 °C.•Bias toward slow-growing, small bacterial colonies.•Comprehensive sequencing of the entire Nav channel coding region. "	"Case-control association study of polymorphisms in the voltage-gated sodium channel genes SCN1A, SCN2A, SCN3A, SCN1B, and SCN2B and epilepsy. High-frequency action potentials are mediated by voltage-gated sodium channels, composed of one large α subunit and two small β subunits, encoded mainly by SCN1A, SCN2A, SCN3A, SCN1B, and SCN2B genes in the brain. These play a key role in epilepsy, with the most commonly mutated gene in epilepsy being SCN1A. We examined whether polymorphisms in the above genes affect epilepsy risk in 1,529 epilepsy patients and 1,935 controls from four ethnicities or locations: Malay, Indian, and Chinese, all from Malaysia, and Chinese from Hong Kong. Of patients, 19 % were idiopathic, 42 % symptomatic, and 40 % cryptogenic. We genotyped 43 polymorphisms: 27 in Hong Kong, 28 in Malaysia, and 12 in both locations. The strongest association with epilepsy was rs3812718, or SCN1A IVS5N+5G&gt;A: odds ratio (OR) = 0.85 for allele G (p = 0.0009) and 0.73 for genotype GG versus AA (p = 0.003). The OR was between 0.76 and 0.87 for all ethnicities. Meta-analysis confirmed the association (OR = 0.81 and p = 0.002 for G, and OR = 0.67 and p = 0.007 for GG versus AA), which appeared particularly strong for Indians and for febrile seizures. Allele G affects splicing and speeds recovery from inactivation. Since SCN1A is preferentially expressed in inhibitory neurons, G may decrease epilepsy risk. SCN1A rs10188577 displayed OR = 1.20 for allele C (p = 0.003); SCN2A rs12467383 had OR = 1.16 for allele A (p = 0.01), and displayed linkage disequilibrium with rs2082366 (r (2) = 0.67), whose genotypes tended toward association with SCN2A brain expression (p = 0.10). SCN1A rs2298771 was associated in Indians (OR = 0.56, p = 0.005) and SCN2B rs602594 with idiopathic epilepsy (OR = 0.62, p = 0.002). Therefore, sodium channel polymorphisms are associated with epilepsy. "	"Regulation of Cu-Zn superoxide dismutase on SCN2A in SH-SY5Y cells as a potential therapy for temporal lobe epilepsy. In order to evaluate SCN2A as a candidate gene for epileptic susceptibility and the use of a Cu-Zn superoxide dismutase (SOD) supplement as a potential therapy for epilepsy, SCN2A expression in the cortex and the correlation between SCN2A and Cu-Zn SOD in SH-SY5Y cells were examined. SCN2A expression and the concentration of Cu-Zn SOD in the cerebral cortexes of patients with primary and secondary temporal lobe epilepsy and normal brain cortex tissues were detected. By transfecting SH-SY5Y cells, the expression of SCN2A and the concentration of Cu-Zn SOD was analyzed and the single-cell patch clamp technique was employed in order to investigate the changes in sodium ion levels following SCN2A knockdown. SCN2A level restoration was also investigated with a Cu-Zn SOD supplement using an expression study and evaluated the changes in sodium ion levels following SCN2A knockdown. SCN2A expression and Cu-Zn SOD concentration decreased in the epileptic cerebral cortex. Following SCN2A knockdown, the concentration of Cu-Zn SOD declined and the si-SCN2A vector group showed a repeated discharge. Furthermore, the Cu-Zn SOD concentration was capable of restoring the expression of SCN2A following SCN2A knockdown in SH-SY5Y cells and the overexpression of Cu-Zn SOD prevented the repeated discharge caused by si-SCN2A. The results indicated that there is a low expression of SCN2A and Cu-Zn SOD in the epileptic cerebral cortex and provided novel insights into potential therapies for temporal lobe epilepsy. "	"Antiprion compounds that reduce PrP(Sc) levels in dividing and stationary-phase cells. During prion diseases, a normally benign, host protein, denoted PrP(C), undergoes alternative folding into the aberrant isoform, PrP(Sc). We used ELISA to identify and confirm hits in order to develop leads that reduce PrP(Sc) in prion-infected dividing and stationary-phase mouse neuroblastoma (ScN2a-cl3) cells. We tested 52,830 diverse small molecules in dividing cells and 49,430 in stationary-phase cells. This led to 3100 HTS and 970 single point confirmed (SPC) hits in dividing cells, 331 HTS and 55 confirmed SPC hits in stationary-phase cells as well as 36 confirmed SPC hits active in both. Fourteen chemical leads were identified from confirmed SPC hits in dividing cells and three in stationary-phase cells. From more than 682 compounds tested in concentration-effect relationships in dividing cells to determine potency (EC50), 102 had EC50 values between 1 and 10 μM and 50 had EC50 values of &lt;1 μM; none affected cell viability. We observed an excellent correlation between EC50 values determined by ELISA and Western immunoblotting for 28 representative compounds in dividing cells (R(2)=0.75; p &lt;0.0001). Of the 55 confirmed SPC hits in stationary-phase cells, 23 were piperazine, indole, or urea leads. The EC50 values of one indole in stationary-phase and dividing ScN2a-cl3 cells were 7.5 and 1.6 μM, respectively. Unexpectedly, the number of hits in stationary-phase cells was ~10% of that in dividing cells. The explanation for this difference remains to be determined."	"Novel SCN3A variants associated with focal epilepsy in children. Voltage-gated sodium (NaV) channels are essential for initiating and propagating action potentials in the brain. More than 800 mutations in genes encoding neuronal NaV channels including SCN1A and SCN2A have been associated with human epilepsy. Only one epilepsy-associated mutation has been identified in SCN3A encoding the NaV1.3 neuronal sodium channel. We performed a genetic screen of pediatric patients with focal epilepsy of unknown cause and identified four novel SCN3A missense variants: R357Q, D766N, E1111K and M1323V. We determined the functional consequences of these variants along with the previously reported K354Q mutation using heterologously expressed human NaV1.3. Functional defects were heterogeneous among the variants. The most severely affected was R357Q, which had a significantly smaller current density and slower activation than the wild-type (WT) channel as well as depolarized voltage dependences of activation and inactivation. Also notable was E1111K, which evoked a significantly greater level of persistent sodium current than WT channels. Interestingly, a common feature shared by all variant channels was increased current activation in response to depolarizing voltage ramps revealing a functional property consistent with conferring neuronal hyper-excitability. Discovery of a common biophysical defect among variants identified in unrelated pediatric epilepsy patients suggests that SCN3A may contribute to neuronal hyperexcitability and epilepsy. "	"Interstitial 2q24.3 deletion including SCN2A and SCN3A genes in a patient with autistic features, psychomotor delay, microcephaly and no history of seizures. Mutations in neuronal voltage-gated sodium channel genes SCN1A, SCN2A, and SCN3A may play an important role in the etiology of neurological diseases and psychiatric disorders, besides various types of epilepsy. Here we describe a 3-year-old boy with autistic features, language delay, microcephaly and no history of seizures. Array-CGH analysis revealed an interstitial deletion of ~291.9kB at band 2q24.3 disrupting the entire SCN2A gene and part of SCN3A. We discuss the effects of haploinsufficiency of SCN2A and SCN3A on the genetic basis of neurodevelopmental and neurobehavioral disorders and we propose that this haploinsufficiency may be associated not only with epilepsy, but also with autistic features."	"Novel de novo SCN2A mutation in a child with migrating focal seizures of infancy. Migrating focal seizures of infancy are characterized by seizure onset within 7 months of age, migrating focal motor seizures with multifocal ictal electroencephalography discharges intractable to conventional antiepileptic drugs, and poor prognosis. Reported genetic etiologies include SCN1A and KCNT1 mutations and homozygous deletion of the PLCB1 gene. Here we report a novel SCN2A mutation in a child with this syndrome. A 7-week-old girl was admitted to our hospital for management of status epilepticus. She was the product of a full-term unremarkable pregnancy. Seizures started around 5 weeks of age and remained medically refractory. Electroencephalography showed multifocal epileptiform discharges as well as seizures arising from multifocal regions in both cerebral hemispheres. Based on her phenotype, a diagnosis of migrating focal seizures of infancy was made. A novel de novo missense mutation was identified in the SCN2A gene, exon 22 (coding for voltage-gated sodium channel type II): c.3977T&gt;A (p.V1326D). This mutation affects a highly evolutionarily conserved area of the gene and replaces hydrophobic nonpolar valine with polar aspartic acid; thus, it is predicted to affect protein function and is presumed pathogenic. This report expands our knowledge of the genetic basis of migrating focal seizures of infancy to include mutations in SCN2A gene."	"Optimization of Arylamides as Novel, Potent and Brain-penetrant Antiprion Lead Compounds. The prion diseases caused by PrP<sup>Sc</sup>, an alternatively folded form of the cellular prion protein (PrP<sup>C</sup>), are rapidly progressive, fatal, and untreatable neurodegenerative syndromes. We employed HTS ELISA assays to identify compounds that lower the level of PrP<sup>Sc</sup> in prion-infected mouse neuroblastoma (ScN2a-cl3) cells and identified a series of arylamides. SAR studies indicated that small amides with one aromatic, or heteroaromatic ring, on each side of the amide bond are of modest potency. Of note, benzamide (7), with an EC50 of 2200 nM, was one of only a few arylamide hits with a piperazine group on its aniline moiety. The basic piperazine nitrogen can be protonated at physiologic pH, improving solubility, and therefore we wanted to exploit this feature in our search for a drug candidate. An SAR campaign resulted in several key analogs, including a set with biaryl groups introduced on the carbonyl side for improved potency. Several of these biaryl analogs have submicromolar potency, with the most potent analog 17 having an EC50 = 22 nM. More importantly, 17 and several biarylamides (20, 24, 26, 27) were able to traverse the BBB and displayed excellent drug levels in the brains of mice following oral dosing. These biarylamides may represent good starting points for further lead optimization for the identification of potential drug candidates for the treatment of prion diseases."	"Clinical spectrum of SCN2A mutations expanding to Ohtahara syndrome. We aimed to investigate the possible association between SCN2A mutations and early-onset epileptic encephalopathies (EOEEs). We recruited a total of 328 patients with EOEE, including 67 patients with Ohtahara syndrome (OS) and 150 with West syndrome. SCN2A mutations were examined using high resolution melt analysis or whole exome sequencing. We found 14 novel SCN2A missense mutations in 15 patients: 9 of 67 OS cases (13.4%), 1 of 150 West syndrome cases (0.67%), and 5 of 111 with unclassified EOEEs (4.5%). Twelve of the 14 mutations were confirmed as de novo, and all mutations were absent in 212 control exomes. A de novo mosaic mutation (c.3976G&gt;C) with a mutant allele frequency of 18% was detected in one patient. One mutation (c.634A&gt;G) was found in transcript variant 3, which is a neonatal isoform. All 9 mutations in patients with OS were located in linker regions between 2 transmembrane segments. In 7 of the 9 patients with OS, EEG findings transitioned from suppression-burst pattern to hypsarrhythmia. All 15 of the patients with novel SCN2A missense mutations had intractable seizures; 3 of them were seizure-free at the last medical examination. All patients showed severe developmental delay. Our study confirmed that SCN2A mutations are an important genetic cause of OS. Given the wide clinical spectrum associated with SCN2A mutations, genetic testing for SCN2A should be considered for children with different epileptic conditions."	"Expression of sodium channel α subunits 1.1, 1.2 and 1.6 in rat hippocampus after kainic acid-induced epilepsy. Voltage-gated Na(+) channels control neuronal excitability and are the primary target for the majority of anti-epileptic drugs. This study investigates the (sub)cellular expression patterns of three important brain-associated Na(+) channel α subunits: NaV1.1, NaV1.2 and NaV1.6 during epileptogenesis (induced by kainic acid) using time points that cover the period from induction to the chronic phase of epilepsy. NaV1.1 immunoreactivity was persistently reduced at 1 day, 3 weeks and 2 months after SE in CA1 and CA3. About 50% of the NaV1.1-positive interneurons was lost at one day after SE in all regions investigated. In the hilus a similar reduction in NeuN-positive neurons was found, while in the CA1 and CA3 region the loss in NeuN-positive neurons only reached 15% in the chronic phase of epilepsy. This implies a stronger shift in the balance between excitation and inhibition toward excitation in the CA1 and CA3 region than in the hilus. NaV1.2 immunoreactivity in the inner molecular layer of the dentate gyrus was lower than control at 1 day after SE. It increased at 3 weeks and 2 months after SE in the inner molecular layer and overlapped with sprouted mossy fibers. NaV1.6 immunoreactivity in the dendritic region of CA1 and CA3 was persistently reduced at all time-points during epileptogenesis. Some astrocytes expressed NaV1.1 and NaV1.6 at 3 weeks after SE. Expression data alone are not sufficient to explain changes in network stability, or infer causality in epileptogenesis. These results demonstrate that hippocampal sub-regional expression of NaV1.1, NaV1.2 and NaV1.6 Na(+) channel α subunits is altered during epileptogenesis in a time and location specific way. This implies that understanding epileptogenesis has to take into account several distinct and type-specific changes in sodium channel expression."	"SCN1A, SCN2A and SCN3A gene polymorphisms and responsiveness to antiepileptic drugs: a multicenter cohort study and meta-analysis. Approximately a third of newly diagnosed epilepsy patients do not respond to antiepileptic drugs (AEDs). Evidence suggests that low penetrance variants in the genes of drug targets such as voltage-gated sodium channels may be involved in drug responsiveness. To examine this hypothesis, we compared data from two epilepsy cohorts from Malaysia and Hong Kong, as well as a meta-analysis from published data. Genotype analysis of 39 polymorphisms located in the SCN1A, SCN2A and SCN3A genes was performed on 1504 epilepsy patients from Malaysia and Hong Kong who were receiving AEDs. Meta-analysis was performed for pooled data of SCN1A rs3812718 and rs2298771, and SCN2A rs17183814 polymorphisms. Our data from the Hong Kong and Malaysia cohorts showed no significant allele, genotype and haplotype association of polymorphisms in the SCN1A, SCN2A, and SCN3A genes with drug responsiveness in epilepsy. This finding was supported by a meta-analysis for SCN1A rs3812718 and rs2298771, and for SCN2A rs17183814 polymorphisms. Our comprehensive study suggests that common polymorphisms in SCN1A, SCN2A and SCN3A do not play major roles in influencing response to AEDs. Original submitted 11 March 2013; Revision submitted 31 May 2013."	"Detection of clinically relevant genetic variants in autism spectrum disorder by whole-genome sequencing. Autism Spectrum Disorder (ASD) demonstrates high heritability and familial clustering, yet the genetic causes remain only partially understood as a result of extensive clinical and genomic heterogeneity. Whole-genome sequencing (WGS) shows promise as a tool for identifying ASD risk genes as well as unreported mutations in known loci, but an assessment of its full utility in an ASD group has not been performed. We used WGS to examine 32 families with ASD to detect de novo or rare inherited genetic variants predicted to be deleterious (loss-of-function and damaging missense mutations). Among ASD probands, we identified deleterious de novo mutations in six of 32 (19%) families and X-linked or autosomal inherited alterations in ten of 32 (31%) families (some had combinations of mutations). The proportion of families identified with such putative mutations was larger than has been previously reported; this yield was in part due to the comprehensive and uniform coverage afforded by WGS. Deleterious variants were found in four unrecognized, nine known, and eight candidate ASD risk genes. Examples include CAPRIN1 and AFF2 (both linked to FMR1, which is involved in fragile X syndrome), VIP (involved in social-cognitive deficits), and other genes such as SCN2A and KCNQ2 (linked to epilepsy), NRXN1, and CHD7, which causes ASD-associated CHARGE syndrome. Taken together, these results suggest that WGS and thorough bioinformatic analyses for de novo and rare inherited mutations will improve the detection of genetic variants likely to be associated with ASD or its accompanying clinical symptoms. "	"Discovery and Preliminary SAR of Arylpiperazines as Novel, Brainpenetrant Antiprion Compounds. Prion diseases are a group of fatal neurodegenerative disorders that include Creutzfeldt-Jakob disease (CJD) and kuru in humans, BSE in cattle, and scrapie in sheep. Such illnesses are caused by the conversion and accumulation of a misfolded pathogenic isoform (termed PrP<sup>Sc</sup>) of a normally benign, host cellular protein, denoted PrP<sup>C</sup>. We employed high-throughput screening (HTS) ELISAs to evaluate compounds for their ability to reduce the level of PrP<sup>Sc</sup> in Rocky Mountain Laboratory (RML) prion-infected mouse neuroblastoma cells (ScN2a-cl3). Arylpiperazines were among the active compounds identified but the initial hits suffered from low potency and poor drug-likeness. The best of those hits, such as 1, 7, 13, and 19, displayed moderate antiprion activity with EC50 values in the micromolar range. Key analogs were designed and synthesized based on the SAR, with analogs 41, 44, 46, and 47 found to have sub-micromolar potency. Analogs 41 and 44 were able to penetrate the blood-brain barrier (BBB) and achieved excellent drug concentrations in the brains of mice after oral dosing. These compounds represent good starting points for further lead optimization in our pursuit of potential drug candidates for the treatment of prion diseases."	"SCN2A mutation is associated with infantile spasms and bitemporal glucose hypometabolism. Genetic mutations play a crucial role in the etiology of cryptogenic infantile spasms, but the cause is still unknown in a significant proportion of patients. Whole exome sequencing technology shows great promise in identifying genetic causes of infantile spasms. In this study whole exome sequencing was performed with 2-deoxy-2-((18)F)fluoro-d-glucose positron emission tomography scan of an infant boy with infantile spasms. Exome sequencing was also performed in the parents to identify any de novo mutations. The positron emission tomography scan showed a pattern of bilateral symmetric temporal lobe glucose hypometabolism. A total of 8171 nonsynonymous variants were identified in the child. Despite the large number of nonsynonymous variants, there was only a single de novo missense mutation in SCN2A in the child (NCBI hg19 assembly, position: Chr2:166234116, K1422E). Subsequent Sanger sequencing confirmed the de novo status of this variant. This mutation has never been reported in 6500 individuals of the exome variant server database. Similarly, this variant is not reported in the Online Mendelian Inheritance in Man Database or the Human Gene Mutation Database. It has previously been shown that SCN2A mutations are associated with hippocampal hyperexcitability. Therefore, this study indicates that infantile spasms and bitemporal hypometabolism in this patient might have been caused by hippocampal hyperexcitability due to SCN2A mutation. The simultaneous presence of an SCN2A mutation and bitemporal hypometabolism in this patient with infantile spasms suggests a plausible hippocampal origin. However, additional mechanistic and clinical studies are required to validate this link."	"An SCN2A mutation in a family with infantile seizures from Madagascar reveals an increased subthreshold Na(+) current. Missense mutations in SCN2A, encoding the brain sodium channel NaV 1.2, have been described in benign familial neonatal-infantile seizures (BFNIS), a self-limiting disorder, whereas several SCN2A de novo nonsense mutations have been found in patients with more severe phenotypes including epileptic encephalopathy. We report a family with BFNIS originating from Madagascar. Onset extended from 3 to 9 months of age. Interictal EEGs were normal. In two patients, ictal electroencephalography (EEG) studies showed partial seizure patterns with secondary generalization in one. Seizures remitted before 18 months of age, with or without medication. Intellectual development was normal. A novel missense mutation of SCN2A, c.4766A&gt;G/p.Tyr1589Cys, was found in a highly conserved region of NaV 1.2 (D4/S2-S3). Functional studies using heterologous expression in tsA201 cells and whole-cell patch clamping revealed a depolarizing shift of steady-state inactivation, increased persistent Na(+) current, a slowing of fast inactivation and an acceleration of its recovery, thus a gain-of-function. Using an action potential waveform in a voltage-clamp experiment we indicated an increased inward Na(+) current at subthreshold voltages, which can explain a neuronal hyperexcitability. Our results suggest that this mutation induces neuronal hyperexcitability, resulting in infantile epilepsy with favorable outcome."	"Targeted resequencing in epileptic encephalopathies identifies de novo mutations in CHD2 and SYNGAP1. Epileptic encephalopathies are a devastating group of epilepsies with poor prognosis, of which the majority are of unknown etiology. We perform targeted massively parallel resequencing of 19 known and 46 candidate genes for epileptic encephalopathy in 500 affected individuals (cases) to identify new genes involved and to investigate the phenotypic spectrum associated with mutations in known genes. Overall, we identified pathogenic mutations in 10% of our cohort. Six of the 46 candidate genes had 1 or more pathogenic variants, collectively accounting for 3% of our cohort. We show that de novo CHD2 and SYNGAP1 mutations are new causes of epileptic encephalopathies, accounting for 1.2% and 1% of cases, respectively. We also expand the phenotypic spectra explained by SCN1A, SCN2A and SCN8A mutations. To our knowledge, this is the largest cohort of cases with epileptic encephalopathies to undergo targeted resequencing. Implementation of this rapid and efficient method will change diagnosis and understanding of the molecular etiologies of these disorders. "	"Targeted capture and sequencing for detection of mutations causing early onset epileptic encephalopathy. Early onset epileptic encephalopathies (EOEEs) are heterogeneous epileptic disorders caused by various abnormalities in causative genes including point mutations and copy number variations (CNVs). In this study, we performed targeted capture and sequencing of a subset of genes to detect point mutations and CNVs simultaneously. We designed complementary RNA oligonucleotide probes against the coding exons of 35 known and potential candidate genes. We tested 68 unrelated patients, including 15 patients with previously detected mutations as positive controls. In addition to mutation detection by the Genome Analysis Toolkit, CNVs were detected by the relative depth of coverage ratio. All detected events were confirmed by Sanger sequencing or genomic microarray analysis. We detected all positive control mutations. In addition, in 53 patients with EOEEs, we detected 12 pathogenic mutations, including 9 point mutations (2 nonsense, 3 splice-site, and 4 missense mutations), 2 frameshift mutations, and one 3.7-Mb microdeletion. Ten of the 12 mutations occurred de novo; the other two had been previously reported as pathogenic. The entire process of targeted capture, sequencing, and analysis required 1 week for the testing of up to 24 patients. Targeted capture and sequencing enables the identification of mutations of all classes causing EOEEs, highlighting its usefulness for rapid and comprehensive genetic testing."	"Idiopathic focal epilepsies. In this chapter we include a series of epilepsies with onset in pediatric age characterized by focal seizures, idiopathic etiology, normal psychomotor development, and a benign course related to the spontaneous remission of seizures without sequelae. These entities are age-dependent and seizures tend to disappear spontaneously. For these reasons often the drug treatment is not necessary. On the basis of genetic assessment idiopathic focal epilepsies can be divided into two groups: nonautosomal dominant and autosomal dominant. In the group of nonautosomal entities we include benign epilepsy with centro-temporal spikes, Panayiotopoulos syndrome, idiopathic childhood occipital epilepsy described by Gastaut, and benign idiopathic midline spikes epilepsy. Seizures are rare, sometimes prolonged, as autonomic status in Panayiotopoulos syndrome. A common feature is the presence of peculiar EEG interictal paroxysmal abnormalities. In the group with an autosomal dominant mode of inheritance we include benign familial infantile seizures and benign familial neonatal-infantile seizures. These entities are characterized by partial seizures in cluster, self-limited in a brief period during the first months of life. There are no typical interictal EEG abnormalities. In some families a mutation in SCN2A, the gene coding for the 2α subunit of the voltage-gated sodium channel, has been described."	"Mutations in PRRT2 are not a common cause of infantile epileptic encephalopathies. Heterozygous mutations in PRRT2 have recently been identified as the major cause of autosomal dominant benign familial infantile epilepsy (BFIE), infantile convulsions with choreoathetosis syndrome (ICCA), and paroxysmal kinesigenic dyskinesia (PKD). Homozygous mutations in PRRT2 have also been reported in two families with intellectual disability (ID) and seizures. Heterozygous mutations in the genes KCNQ2 and SCN2A cause the two other autosomal dominant seizure disorders of infancy: benign familial neonatal epilepsy and benign familial neonatal-infantile epilepsy. Mutations in KCNQ2 and SCN2A also contribute to severe infantile epileptic encephalopathies (IEEs) in which seizures and intellectual disability co-occur. We therefore hypothesized that PRRT2 mutations may also underlie cases of IEE. We examined PRRT2 for heterozygous, compound heterozygous or homozygous mutations to determine their frequency in causing epileptic encephalopathies (EEs). Two hundred twenty patients with EEs with onset by 2 years were phenotyped. An assay for the common PRRT2 c.649-650insC mutation and high resolution-melt analysis for mutations in the remaining exons of PRRT2 were performed. Neither the common mutation nor any other pathogenic variants in PRRT2 were detected in the 220 patients. Our findings suggest that mutations in PRRT2 are not a common cause of IEEs."	"Whole genome sequencing identifies SCN2A mutation in monozygotic twins with Ohtahara syndrome and unique neuropathologic findings. Mutations in SCN2A gene cause a variety of epilepsy syndromes. We report a novel SCN2A-associated epilepsy phenotype in monozygotic twins with tonic seizures soon after birth and a suppression-burst electroencephalography (EEG) pattern. We reviewed the medical records, EEG tracings, magnetic resonance imaging (MRI), and neuropathologic findings, and performed whole genome sequencing (WGS) on Twin B's DNA and Sanger sequencing (SS) on candidate gene mutations. Extensive neurometabolic evaluation and early neuroimaging studies were normal. Twin A died of an iatrogenic cause at 2 weeks of life. His neuropathologic examination was remarkable for dentate-olivary dysplasia and granule cell dispersion of the dentate gyrus. Twin B became seizure free at 8 months and was off antiepileptic drugs by 2 years. His brain MRI, normal at 2 months, revealed evolving brainstem and basal ganglia abnormalities at 8 and 15 months that resolved by 20 months. At 2.5 years, Twin B demonstrated significant developmental delay. Twin B's WGS revealed a heterozygous variant c.788C&gt;T predicted to cause p.Ala263Val change in SCN2A and confirmed to be de novo in both twins by SS. In conclusion, we have identified a de novo SCN2A mutation as the etiology for Ohtahara syndrome in monozygotic twins associated with a unique dentate-olivary dysplasia in the deceased twin."	"2-Aminothiazoles with improved pharmacotherapeutic properties for treatment of prion disease. Recently, we described the aminothiazole lead (4-biphenyl-4-ylthiazol-2-yl)-(6-methylpyridin-2-yl)-amine (1), which exhibits many desirable properties, including excellent stability in liver microsomes, oral bioavailability of ∼40 %, and high exposure in the brains of mice. Despite its good pharmacokinetic properties, compound 1 exhibited only modest potency in mouse neuroblastoma cells overexpressing the disease-causing prion protein PrP(Sc) . Accordingly, we sought to identify analogues of 1 with improved antiprion potency in ScN2a-cl3 cells while retaining similar or superior properties. Herein we report the discovery of improved lead compounds such as (6-methylpyridin-2-yl)-[4-(4-pyridin-3-yl-phenyl)thiazol-2-yl]amine and cyclopropanecarboxylic acid (4-biphenylthiazol-2-yl)amide, which exhibit brain exposure/EC50 ratios at least tenfold greater than that of compound 1."	"Molecular aspects of Dravet syndrome patients in Taiwan. Dravet syndrome (DS) is a rare form of intractable epilepsy. Children with DS often start having seizures in infancy, and gradually develop other seizure types. Several studies have demonstrated that certain gene mutations and submicroscopic copy number variations (CNV) in DS patients are strongly associated with intractable epilepsy. In this study, directed DNA sequencing and microarray technology were used to investigate genomic variations in DS patients. A total of nine DS patients were enrolled in this genetic study. A detailed medical history was obtained from each participant, and appropriate neurological examinations performed. Seizure types and epilepsy syndromes were classified according to ILAE criteria. The complete coding regions of SCN1A, SCN1B, SCN2A, GABRG2, and GABRD, including the intron/exon boundaries, were sequenced using DNA samples drawn from participants. In addition, whole genome CNV analysis was conducted via SNP microarray analysis. DNA sequencing revealed a mutation in the SCN1A gene in five (55.6%) of the DS patients, within which three missense mutations, c.719T&gt;C (p.Leu240Pro), c.2807A&gt;T (p.Asp936Val), c.4349A&gt;C (p.Gln1450Pro), and two frameshift mutations, c.2277insAACA (p.His759fsX772) and c.3972insT (p.Leu1324fsX1331) were observed. Upon CNV analysis, a novel duplication region, 4q13.1-q13.2, was detected in one DS patient; this variant region contained a gene, EPHA5, related to cerebral neuron development. This study extended the spectrum of SCN1A mutations in Taiwanese DS patients and confirms the high sensitivity of SCN1A for the DS phenotype. In addition, a novel duplication region identified within EPHA5 should be considered in future screening procedures for DS."	"Effects of the antianginal drug, ranolazine, on the brain sodium channel Na(V)1.2 and its modulation by extracellular protons. Ranolazine is an antianginal drug currently approved for treatment of angina pectoris in the United States. Recent studies have focused on its effects on neuronal channels and its possible therapeutic uses in the nervous system. We characterized how ranolazine affects the brain sodium channel, Na(V)1.2, and how its actions are modulated by low pH. In this way, we further explore ranolazine's potential as an anticonvulsant and its efficacy in conditions like those during an ischaemic stroke. We performed whole-cell patch-clamp experiments on the voltage-gated sodium channel, Na(V)1.2. Experiments were performed with extracellular solution titrated to either pH 7.4 or pH 6.0 before and after ranolazine perfusion. Ranolazine accelerates onset and slows recovery of fast and slow inactivation. Ranolazine increases the maximum probability of use-dependent inactivation and reduces macroscopic and ramp sodium currents at pH 7.4. pH 6.0 reduced the slowing of fast inactivation recovery and inhibited use-dependent block by ranolazine. In the presence of ranolazine, the time constants of slow inactivation recovery and onset were significantly increased at pH 6.0 relative to pH 7.4 with 100 μM ranolazine. Our work provides novel insights into the modulation of brain sodium channel, Na(V)1.2, by ranolazine. We demonstrate that ranolazine binds Na(V)1.2 in a state-dependent manner, and that the effects of ranolazine are slowed but not abolished by protons. Our results suggest that further research performed on channels with epilepsy-causing mutations may prove ranolazine to be an efficacious therapy."	"Genetic testing in benign familial epilepsies of the first year of life: clinical and diagnostic significance. To dissect the genetics of benign familial epilepsies of the first year of life and to assess the extent of the genetic overlap between benign familial neonatal seizures (BFNS), benign familial neonatal-infantile seizures (BFNIS), and benign familial infantile seizures (BFIS). Families with at least two first-degree relatives affected by focal seizures starting within the first year of life and normal development before seizure onset were included. Families were classified as BFNS when all family members experienced neonatal seizures, BFNIS when the onset of seizures in family members was between 1 and 4 months of age or showed both neonatal and infantile seizures, and BFIS when the onset of seizures was after 4 months of age in all family members. SCN2A, KCNQ2, KCNQ3, PPRT2 point mutations were analyzed by direct sequencing of amplified genomic DNA. Genomic deletions involving KCNQ2 and KCNQ3 were analyzed by multiple-dependent probe amplification method. A total of 46 families including 165 affected members were collected. Eight families were classified as BFNS, 9 as BFNIS, and 29 as BFIS. Genetic analysis led to the identification of 41 mutations, 14 affecting KCNQ2, 1 affecting KCNQ3, 5 affecting SCN2A, and 21 affecting PRRT2. The detection rate of mutations in the entire cohort was 89%. In BFNS, mutations specifically involve KCNQ2. In BFNIS two genes are involved (KCNQ2, six families; SCN2A, two families). BFIS families are the most genetically heterogeneous, with all four genes involved, although about 70% of them carry a PRRT2 mutation. Our data highlight the important role of KCNQ2 in the entire spectrum of disorders, although progressively decreasing as the age of onset advances. The occurrence of afebrile seizures during follow-up is associated with KCNQ2 mutations and may represent a predictive factor. In addition, we showed that KCNQ3 mutations might be also involved in families with infantile seizures. Taken together our data indicate an important role of K-channel genes beyond the typical neonatal epilepsies. The identification of a novel SCN2A mutation in a family with infantile seizures with onset between 6 and 8 months provides further confirmation that this gene is not specifically associated with BFNIS and is also involved in families with a delayed age of onset. Our data indicate that PRRT2 mutations are clustered in families with BFIS. Paroxysmal kinesigenic dyskinesia emerges as a distinctive feature of PRRT2 families, although uncommon in our series. We showed that the age of onset of seizures is significantly correlated with underlying genetics, as about 90% of the typical BFNS families are linked to KCNQ2 compared to only 3% of the BFIS families, for which PRRT2 represents the major gene."	"Intracerebral Infusion of Antisense Oligonucleotides Into Prion-infected Mice. Mice deficient for the cellular prion protein (PrP(C)) do not develop prion disease; accordingly, gene-based strategies to diminish PrP(C) expression are of interest. We synthesized a series of chemically modified antisense oligonucleotides (ASOs) targeted against mouse Prnp messenger RNA (mRNA) and identified those that were most effective in decreasing PrP(C) expression. Those ASOs were also evaluated in scrapie-infected cultured cells (ScN2a) for their efficacy in diminishing the levels of the disease-causing prion protein (PrP(Sc)). When the optimal ASO was infused intracerebrally into FVB mice over a 14-day period beginning 1 day after infection with the Rocky Mountain Laboratory (RML) strain of mouse prions, a prolongation of the incubation period of almost 2 months was observed. Whether ASOs can be used to develop an effective therapy for patients dying of Creutzfeldt-Jakob disease remains to be established."	"Prevalence of SCN1A mutations in children with suspected Dravet syndrome and intractable childhood epilepsy. Mutations of the gene encoding the α1 subunit of neuronal sodium channel, SCN1A, are reported to cause Dravet syndrome (DS). The prevalence of mutations reported in such studies (mainly in clinically confirmed DS) seems high enough to make genetic diagnosis feasible. In fact, commercially operating genetic diagnostic laboratories offering genetic analyses of SCN1A are available. Still, the exact prevalence of mutations of SCN1A remains elusive. Fukuoka University has been serving as a genetic diagnostic laboratory for DS for the last 10 years. In this study, we determined the prevalence of SCN1A mutations (SCN1A, SCN2A, SCN1B and SCN2B) in 448 patients with suspected DS and intractable childhood epilepsy. A total of 192 SCN1A mutations were identified in 188 of 448 patients (42.0%). The frequencies of SCN1A mutations in suspected severe myoclonic epilepsy of infancy (SMEI), its borderline phenotype (SMEB) and intractable epilepsy were 56.2%, 41.9% and 28.9% respectively. In addition, four SCN2A mutations were identified in 4 of 325 patients. No mutations of SCN1B and SCN2B were identified. These results are potentially helpful for the diagnosis of DS at early stage."	"A homozygous mutation of voltage-gated sodium channel β(I) gene SCN1B in a patient with Dravet syndrome. Dravet syndrome is a severe form of epileptic encephalopathy characterized by early onset epileptic seizures followed by ataxia and cognitive decline. Approximately 80% of patients with Dravet syndrome have been associated with heterozygous mutations in SCN1A gene encoding voltage-gated sodium channel (VGSC) α(I) subunit, whereas a homozygous mutation (p.Arg125Cys) of SCN1B gene encoding VGSC β(I) subunit was recently described in a patient with Dravet syndrome. To further examine the involvement of homozygous SCN1B mutations in the etiology of Dravet syndrome, we performed mutational analyses on SCN1B in 286 patients with epileptic disorders, including 67 patients with Dravet syndrome who have been negative for SCN1A and SCN2A mutations. In the cohort, we found one additional homozygous mutation (p.Ile106Phe) in a patient with Dravet syndrome. The identified homozygous SCN1B mutations indicate that SCN1B is an etiologic candidate underlying Dravet syndrome."	"Sigma-1 receptor agonists directly inhibit Nav1.2/1.4 channels. (+)-SKF 10047 (N-allyl-normetazocine) is a prototypic and specific sigma-1 receptor agonist that has been used extensively to study the function of sigma-1 receptors. (+)-SKF 10047 inhibits K(+), Na(+) and Ca2+ channels via sigma-1 receptor activation. We found that (+)-SKF 10047 inhibited Na(V)1.2 and Na(V)1.4 channels independently of sigma-1 receptor activation. (+)-SKF 10047 equally inhibited Na(V)1.2/1.4 channel currents in HEK293T cells with abundant sigma-1 receptor expression and in COS-7 cells, which barely express sigma-1 receptors. The sigma-1 receptor antagonists BD 1063,BD 1047 and NE-100 did not block the inhibitory effects of (+)-SKF-10047. Blocking of the PKA, PKC and G-protein pathways did not affect (+)-SKF 10047 inhibition of Na(V)1.2 channel currents. The sigma-1 receptor agonists Dextromethorphan (DM) and 1,3-di-o-tolyl-guanidine (DTG) also inhibited Na(V)1.2 currents through a sigma-1 receptor-independent pathway. The (+)-SKF 10047 inhibition of Na(V)1.2 currents was use- and frequency-dependent. Point mutations demonstrated the importance of Phe(1764) and Tyr(1771) in the IV-segment 6 domain of the Na(V)1.2 channel and Phe(1579) in the Na(V)1.4 channel for (+)-SKF 10047 inhibition. In conclusion, our results suggest that sigma-1 receptor agonists directly inhibit Na(V)1.2/1.4 channels and that these interactions should be given special attention for future sigma-1 receptor function studies."	"Range of genetic mutations associated with severe non-syndromic sporadic intellectual disability: an exome sequencing study. The genetic cause of intellectual disability in most patients is unclear because of the absence of morphological clues, information about the position of such genes, and suitable screening methods. Our aim was to identify de-novo variants in individuals with sporadic non-syndromic intellectual disability. In this study, we enrolled children with intellectual disability and their parents from ten centres in Germany and Switzerland. We compared exome sequences between patients and their parents to identify de-novo variants. 20 children and their parents from the KORA Augsburg Diabetes Family Study were investigated as controls. We enrolled 51 participants from the German Mental Retardation Network. 45 (88%) participants in the case group and 14 (70%) in the control group had de-novo variants. We identified 87 de-novo variants in the case group, with an exomic mutation rate of 1·71 per individual per generation. In the control group we identified 24 de-novo variants, which is 1·2 events per individual per generation. More participants in the case group had loss-of-function variants than in the control group (20/51 vs 2/20; p=0·022), suggesting their contribution to disease development. 16 patients carried de-novo variants in known intellectual disability genes with three recurrently mutated genes (STXBP1, SYNGAP1, and SCN2A). We deemed at least six loss-of-function mutations in six novel genes to be disease causing. We also identified several missense alterations with potential pathogenicity. After exclusion of copy-number variants, de-novo point mutations and small indels are associated with severe, sporadic non-syndromic intellectual disability, accounting for 45-55% of patients with high locus heterogeneity. Autosomal recessive inheritance seems to contribute little in the outbred population investigated. The large number of de-novo variants in known intellectual disability genes is only partially attributable to known non-specific phenotypes. Several patients did not meet the expected syndromic manifestation, suggesting a strong bias in present clinical syndrome descriptions. German Ministry of Education and Research, European Commission 7th Framework Program, and Swiss National Science Foundation."	"Duplication of the sodium channel gene cluster on 2q24 in children with early onset epilepsy. Sodium channel gene aberrations are associated with a wide range of seizure disorders, particularly Dravet syndrome. They usually consist of missense or truncating gene mutations or deletions. Duplications involving multiple genes encoding for different sodium channels are not widely known. This article summarizes the clinical, radiologic, and genetic features of patients with 2q24 duplication involving the sodium channel gene cluster. A systematic review of the literature and report of two cases. Nine individuals with 2q24 duplication involving the sodium channel gene cluster are described (seven female, two male). All presented with severe seizures refractory to anticonvulsant drugs. Seizure onset was in the neonatal period in eight patients with SCN1A-involvement, in infancy in one patient with SCN2A and SCN3A, but no SCN1A involvement. Seizure activity decreased and eventually stopped at 5-20 months of age. Seizures recurred at the age of 3 years in the patient with SCN2A and SCN3A, but no SCN1A involvement. Eight patients had a poor neurodevelopmental outcome despite seizure freedom. This article describes a distinct seizure disorder associated with a duplication of the sodium gene cluster on 2q24 described in otherwise healthy neonates and infants with severe, anticonvulsant refractory seizures and poor developmental outcome despite seizure freedom occurring at the age of 5-20 months."	"Cytochalasin D enhances the accumulation of a protease-resistant form of prion protein in ScN2a cells: involvement of PI3 kinase/Akt signalling pathway. The conversion of a host-encoded PrPsen (protease-sensitive cellular prion protein) into a PrPres (protease-resistant pathogenic form) is a key process in the pathogenesis of prion diseases, but the intracellular mechanisms underlying PrPres amplification in prion-infected cells remain elusive. To assess the role of cytoskeletal proteins in the regulation of PrPres amplification, the effects of cytoskeletal disruptors on PrPres accumulation in ScN2a cells that were persistently infected with the scrapie Chandler strain have been examined. Actin microfilament disruption with cytochalasin D enhanced PrPres accumulation in ScN2a cells. In contrast, the microtubule-disrupting agents, colchicine, nocodazole and paclitaxel, had no effect on PrPres accumulation. In addition, a PI3K (phosphoinositide 3-kinase) inhibitor, wortmannin and an Akt kinase inhibitor prevented the cytochalasin D-induced enhancement of PrPres accumulation. Cytochalasin D-induced extension of neurite-like processes might correlate with enhanced accumulation of PrPres. The results suggest that the actin cytoskeleton and PI3K/Akt pathway are involved in the regulation of PrPres accumulation in prion-infected cells."	"Binding modes and functional surface of anti-mammalian scorpion α-toxins to sodium channels. Scorpion α-toxins bind to the voltage-sensing domains of voltage-gated sodium (Na(V)) channels and interfere with the inactivation mechanisms. The functional surface of α-toxins has been shown to contain an NC-domain consisting of the five-residue turn (positions 8-12) and the C-terminus (positions 56-64) and a core-domain centered on the residue 18. The NC- and core-domains are interconnected by the linker-domain (positions 8-18). Here with atomistic molecular dynamics simulations, we examine the binding modes between two α-toxins, the anti-mammalian AahII and the anti-insect LqhαIT, and the voltage-sensing domain of rat Na(V)1.2, a subtype of Na(V) channels expressed in nerve cells. Both toxins are docked to the extracellular side of the voltage-sensing domain of Na(V)1.2 using molecular dynamics simulations, with the linker-domain assumed to wedge into the binding pocket. Several salt bridges and hydrophobic clusters are observed to form between the NC- and core-domains of the toxins and Na(V)1.2 and stabilize the toxin-channel complexes. The binding modes predicted are consistent with available mutagenesis data and can readily explain the relative affinities of AahII and LqhαIT for Na(V)1.2. The dissociation constants for the two toxin-channel complexes are derived, which compare favorably with experiment. Our models demonstrate that the functional surface of anti-mammalian scorpion α-toxins is centered on the linker-domain, similar to that of β-toxins."	"Sodium channels and the neurobiology of epilepsy. Voltage-gated sodium channels (VGSCs) are integral membrane proteins. They are essential for normal neurologic function and are, currently, the most common recognized cause of genetic epilepsy. This review summarizes the neurobiology of VGSCs, their association with different epilepsy syndromes, and the ways in which we can experimentally interrogate their function. The most important sodium channel subunit of relevance to epilepsy is SCN1A, in which over 650 genetic variants have been discovered. SCN1A mutations are associated with a variety of epilepsy syndromes; the more severe syndromes are associated with truncation or complete loss of function of the protein. SCN2A is another important subtype associated with epilepsy syndromes, across a range of severe and less severe epilepsies. This subtype is localized primarily to excitatory neurons, and mutations have a range of functional effects on the channel. SCN8A is the other main adult subtype found in the brain and has recently emerged as an epilepsy gene, with the first human mutation discovered in a severe epilepsy syndrome. Mutations in the accessory β subunits, thought to modulate trafficking and function of the α subunits, have also been associated with epilepsy. Genome sequencing is continuing to become more affordable, and as such, the amount of incoming genetic data is continuing to increase. Current experimental approaches have struggled to keep pace with functional analysis of these mutations, and it has proved difficult to build associations between disease severity and the precise effect on channel function. These mutations have been interrogated with a range of experimental approaches, from in vitro, in vivo, to in silico. In vitro techniques will prove useful to scan mutations on a larger scale, particularly with the advance of high-throughput automated patch-clamp techniques. In vivo models enable investigation of mutation in the context of whole brains with connected networks and more closely model the human condition. In silico models can help us incorporate the impact of multiple genetic factors and investigate epistatic interactions and beyond."	"Synthesis of benzamide derivatives and their evaluation as antiprion agents. A new set of 5-(2-(pyrrolidin-1-yl)acetamido)-N-butyl-2-(substituted)benzamide and 5-(2-(piperidin-1-yl)acetamido)-N-butyl-2-(substituted) benzamide derivatives were synthesized in which as structural features the 2-(1-pyrrolidinyl)- or 2-(1-piperidyl)acetylamino group or a diphenylether moiety are associated to a benzamide scaffold. Their binding affinity for human PrP(C) and inhibition of its conversion into PrP(Sc) were determined in vitro; moreover, the antiprion activity was assayed by inhibition of PrP(Sc) accumulation in scrapie-infected mouse neuroblastoma cells (ScN2a) and scrapie mouse brain (SMB) cells. The results clearly indicate the benzamide derivatives as attractive lead compounds for the development of potential therapeutic agents against prion disease."	"Mapping the interaction site for a β-scorpion toxin in the pore module of domain III of voltage-gated Na(+) channels. Activation of voltage-gated sodium (Na(v)) channels initiates and propagates action potentials in electrically excitable cells. β-Scorpion toxins, including toxin IV from Centruroides suffusus suffusus (CssIV), enhance activation of Na(V) channels. CssIV stabilizes the voltage sensor in domain II in its activated state via a voltage-sensor trapping mechanism. Amino acid residues required for the action of CssIV have been identified in the S1-S2 and S3-S4 extracellular loops of domain II. The extracellular loops of domain III are also involved in toxin action, but individual amino acid residues have not been identified. We used site-directed mutagenesis and voltage clamp recording to investigate amino acid residues of domain III that are involved in CssIV action. In the IIISS2-S6 loop, five substitutions at four positions altered voltage-sensor trapping by CssIV(E15A). Three substitutions (E1438A, D1445A, and D1445Y) markedly decreased voltage-sensor trapping, whereas the other two substitutions (N1436G and L1439A) increased voltage-sensor trapping. These bidirectional effects suggest that residues in IIISS2-S6 make both positive and negative interactions with CssIV. N1436G enhanced voltage-sensor trapping via increased binding affinity to the resting state, whereas L1439A increased voltage-sensor trapping efficacy. Based on these results, a three-dimensional model of the toxin-channel interaction was developed using the Rosetta modeling method. These data provide additional molecular insight into the voltage-sensor trapping mechanism of toxin action and define a three-point interaction site for β-scorpion toxins on Na(V) channels. Binding of α- and β-scorpion toxins to two distinct, pseudo-symmetrically organized receptor sites on Na(V) channels acts synergistically to modify channel gating and paralyze prey."	"Compromised function in the Na(v)1.2 Dravet syndrome mutation R1312T. Ion channels, specifically voltage-gated sodium channels (Na(v)s), are common culprits in inheritable seizure disorders. Some Na(v) isoforms are particularly susceptible, while others are only weakly associated with neuronal hyperexcitability. Representative of the latter group is Na(v)1.2 (gene name SCN2A): despite its abundance in the brain, Na(v)1.2-related epilepsy is rare and only few studies have been conducted as to the pathophysiological basis of Na(v)1.2 in neuronal hyperexcitability. We here present a detailed functional analysis of Na(v)1.2 mutant, R1312T, which was originally found in a child with Dravet syndrome (formerly known as severe myoclonic epilepsy of infancy or SMEI). Whole-cell voltage clamp analysis revealed clearly compromised function: the mutant channels fast- and slow-inactivated at markedly more negative potentials and recovered from fast inactivation more slowly, which resulted in a use-dependent current reduction to less than 50% of wildtype levels. We also noted a small hyperpolarizing shift in the voltage dependence of activation. Our findings expand the spectrum of abnormal Na(v) channel behavior in epilepsy and raise the question as to how loss-of-function in a sodium channel predominantly expressed in excitatory neurons can lead to hyperexcitability."	"Targeted next generation sequencing as a diagnostic tool in epileptic disorders. Epilepsies have a highly heterogeneous background with a strong genetic contribution. The variety of unspecific and overlapping syndromic and nonsyndromic phenotypes often hampers a clear clinical diagnosis and prevents straightforward genetic testing. Knowing the genetic basis of a patient's epilepsy can be valuable not only for diagnosis but also for guiding treatment and estimating recurrence risks. To overcome these diagnostic restrictions, we composed a panel of genes for Next Generation Sequencing containing the most relevant epilepsy genes and covering the most relevant epilepsy phenotypes known so far. With this method, 265 genes were analyzed per patient in a single step. We evaluated this panel on a pilot cohort of 33 index patients with concise epilepsy phenotypes or with a severe but unspecific seizure disorder covering both sporadic and familial cases. We identified presumed disease-causing mutations in 16 of 33 patients comprising sequence alterations in frequently as well as in less commonly affected genes. The detected aberrations encompassed known and unknown point mutations (SCN1A p.R222X, p. E289V, p.379R, p.R393H; SCN2A p.V208E; STXBP1 p.R122X; KCNJ10 p.L68P, p.I129V; KCTD7 p.L108M; KCNQ3 p.P574S; ARHGEF9 p.R290H; SMS p.F58L; TPP1 p.Q278R, p.Q422H; MFSD8 p.T294K), a putative splice site mutation (SCN1A c.693A&gt; p.T/P231P) and small deletions (SCN1A p.F1330Lfs3X [1 bp]; MFSD8 p.A138Dfs10X [7 bp]). All mutations have been confirmed by conventional Sanger sequencing and, where possible, validated by parental testing and segregation analysis. In three patients with either Dravet syndrome or myoclonic epilepsy, we detected SCN1A mutations (p.R222X, p.P231P, p.R393H), even though other laboratories had previously excluded aberrations of this gene by Sanger sequencing or high-resolution melting analysis. We have developed a fast and cost-efficient diagnostic screening method to analyze the genetic basis of epilepsies. We were able to detect mutations in patients with clear and with unspecific epilepsy phenotypes, to uncover the genetic basis of many so far unresolved cases with epilepsy including mutation detection in cases in which previous conventional methods yielded falsely negative results. Our approach thus proved to be a powerful diagnostic tool that may contribute to collecting information on both common and unknown epileptic disorders and in delineating associated phenotypes of less frequently mutated genes."	"Discovery of epilepsy susceptibility genes: implications for therapy development and pharmacogenomics. NA"	"Acute encephalopathy with a novel point mutation in the SCN2A gene. Mutations of the neuronal voltage-gated sodium channel alpha subunit type II (SCN2A) cause various epileptic syndromes, but have never been reported in association with acute encephalopathy. To validate the involvement of SCN2A mutations in acute encephalopathy, we screened 25 patients and found a novel missense mutation (Met1128Thr) in a patient with acute encephalitis with refractory, repetitive partial seizures (AERRPS). This finding suggests that SCN2A mutation is a predisposing factor for acute encephalopathy."	"Clinical application of exome sequencing in undiagnosed genetic conditions. There is considerable interest in the use of next-generation sequencing to help diagnose unidentified genetic conditions, but it is difficult to predict the success rate in a clinical setting that includes patients with a broad range of phenotypic presentations. The authors present a pilot programme of whole-exome sequencing on 12 patients with unexplained and apparent genetic conditions, along with their unaffected parents. Unlike many previous studies, the authors did not seek patients with similar phenotypes, but rather enrolled any undiagnosed proband with an apparent genetic condition when predetermined criteria were met. This undertaking resulted in a likely genetic diagnosis in 6 of the 12 probands, including the identification of apparently causal mutations in four genes known to cause Mendelian disease (TCF4, EFTUD2, SCN2A and SMAD4) and one gene related to known Mendelian disease genes (NGLY1). Of particular interest is that at the time of this study, EFTUD2 was not yet known as a Mendelian disease gene but was nominated as a likely cause based on the observation of de novo mutations in two unrelated probands. In a seventh case with multiple disparate clinical features, the authors were able to identify homozygous mutations in EFEMP1 as a likely cause for macular degeneration (though likely not for other features). This study provides evidence that next-generation sequencing can have high success rates in a clinical setting, but also highlights key challenges. It further suggests that the presentation of known Mendelian conditions may be considerably broader than currently recognised."	"Interaction of alfaxalone with the neuronal and the skeletal muscle sodium channel. The neurosteroid alfaxalone exerts potent anesthetic activity in humans and animals. In former studies on myelinated axons, alfaxalone was assumed to produce a local anesthetic-like effect on the peripheral nervous system. Therefore,the present in vitro study aimed to characterize possible modulatory actions of alfaxalone on voltage-gated sodium channels. -Subunits of voltage-gated neuronal (Nav1.2)and skeletal muscle (Nav1.4) sodium channels were stably expressed in human embryonic kidney cells, and in vitro effects of alfaxalone were compared with lidocaine by means of the patch clamp technique. Alfaxalone preferentially blocked slow inactivated channels and therefore could provide membrane-stabilizing effects in ischemic/hypoxic tissues where slow inactivation is regarded to play a crucial role."	"De novo mutations revealed by whole-exome sequencing are strongly associated with autism. Multiple studies have confirmed the contribution of rare de novo copy number variations to the risk for autism spectrum disorders. But whereas de novo single nucleotide variants have been identified in affected individuals, their contribution to risk has yet to be clarified. Specifically, the frequency and distribution of these mutations have not been well characterized in matched unaffected controls, and such data are vital to the interpretation of de novo coding mutations observed in probands. Here we show, using whole-exome sequencing of 928 individuals, including 200 phenotypically discordant sibling pairs, that highly disruptive (nonsense and splice-site) de novo mutations in brain-expressed genes are associated with autism spectrum disorders and carry large effects. On the basis of mutation rates in unaffected individuals, we demonstrate that multiple independent de novo single nucleotide variants in the same gene among unrelated probands reliably identifies risk alleles, providing a clear path forward for gene discovery. Among a total of 279 identified de novo coding mutations, there is a single instance in probands, and none in siblings, in which two independent nonsense variants disrupt the same gene, SCN2A (sodium channel, voltage-gated, type II, α subunit), a result that is highly unlikely by chance."	"Confirmation of an epilepsy modifier locus on mouse chromosome 11 and candidate gene analysis by RNA-Seq. Epilepsy is a neurological disorder affecting approximately 1% of the worldwide population. Mutations in voltage-gated sodium channels have been identified in several monogenic epilepsy syndromes. Over 800 mutations have been identified in the voltage-gated sodium channel genes SCN1A and SCN2A in human epilepsies, including genetic epilepsy with febrile seizures plus (GEFS+) and Dravet syndrome. In GEFS+ families, affected members with the same mutation often display variability in clinical severity of the disease. This suggests that additional genes modify the effect of the primary mutation, resulting in the variable clinical presentation. The Scn2a(Q54) transgenic mouse model has an epilepsy phenotype that varies depending on the genetic strain background. Scn2a(Q54) mice congenic on the C57BL/6J strain exhibit delayed seizure onset and improved survival compared to (C57BL/6J × SJL/J)F1.Q54 mice. Two modifier loci of Scn2a(Q54) seizure susceptibility were mapped and designated Moe1 (modifier of epilepsy) on chromosome (chr) 11 and Moe2 on chr 19. To confirm Moe1 and refine its position, we generated interval-specific congenic lines carrying C57BL/6J-derived chr 11 alleles on the SJL/J strain and refined the map position to 89-104 Mb. We then used RNA-Seq for candidate analysis in the modifier region. C57BL/6J and SJL/J male and female brain RNAs were sequenced, revealing numerous significant transcriptome differences and coding single-nucleotide polymorphisms. Additional consideration of gene function and expression suggested several strong candidate modifier genes, including two voltage-gated calcium channel subunits, Cacna1g and Cacnb1, and the proline and acidic amino acid-rich basic leucine zipper transcription factor, Hlf."	"Mutations in PRRT2 responsible for paroxysmal kinesigenic dyskinesias also cause benign familial infantile convulsions. Paroxysmal kinesigenic dyskinesia (PKD (MIM128000)) is a neurological disorder characterized by recurrent attacks of involuntary movements. Benign familial infantile convulsion (BFIC) is also one of a neurological disorder characterized by clusters of epileptic seizures. The BFIC1 (MIM601764), BFIC2 (MIM605751) and BFIC4 (MIM612627) loci have been mapped to chromosome 19q, 16p and 1p, respectively, while BFIC3 (MIM607745) is caused by mutations in SCN2A on chromosome 2q24. Furthermore, patients with BFIC have been observed in a family concurrently with PKD. Both PKD and BFIC2 are heritable paroxysmal disorders and map to the same region on chromosome 16. Recently, the causative gene of PKD, the protein-rich transmembrane protein 2 (PRRT2), has been detected using whole-exome sequencing. We performed mutation analysis of PRRT2 by direct sequencing in 81 members of 17 families containing 15 PKD families and two BFIC families. Direct sequencing revealed that two mutations, c.649dupC and c.748C&gt;T, were detected in all members of the PKD and BFIC families. Our results suggest that BFIC2 is caused by a truncated mutation that also causes PKD. Thus, PKD and BFIC2 are genetically identical and may cause convulsions and involuntary movements via a similar mechanism."	"Mouse prion protein (PrP) segment 100 to 104 regulates conversion of PrP(C) to PrP(Sc) in prion-infected neuroblastoma cells. Prion diseases are characterized by the replicative propagation of disease-associated forms of prion protein (PrP(Sc); PrP refers to prion protein). The propagation is believed to proceed via two steps; the initial binding of the normal form of PrP (PrP(C)) to PrP(Sc) and the subsequent conversion of PrP(C) to PrP(Sc). We have explored the two-step model in prion-infected mouse neuroblastoma (ScN2a) cells by focusing on the mouse PrP (MoPrP) segment 92-GGTHNQWNKPSKPKTN-107, which is within a region previously suggested to be part of the binding interface or shown to differ in its accessibility to anti-PrP antibodies between PrP(C) and PrP(Sc). Exchanging the MoPrP segment with the corresponding chicken PrP segment (106-GGSYHNQKPWKPPKTN-121) revealed the necessity of MoPrP residues 99 to 104 for the chimeras to achieve the PrP(Sc) state, while segment 95 to 98 was replaceable with the chicken sequence. An alanine substitution at position 100, 102, 103, or 104 of MoPrP gave rise to nonconvertible mutants that associated with MoPrP(Sc) and interfered with the conversion of endogenous MoPrP(C). The interference was not evoked by a chimera (designated MCM2) in which MoPrP segment 95 to 104 was changed to the chicken sequence, though MCM2 associated with MoPrP(Sc). Incubation of the cells with a synthetic peptide composed of MoPrP residues 93 to 107 or alanine-substituted cognates did not inhibit the conversion, whereas an anti-P8 antibody recognizing the above sequence in PrP(C) reduced the accumulation of PrP(Sc) after 10 days of incubation of the cells. These results suggest the segment 100 to 104 of MoPrP(C) plays a key role in conversion after binding to MoPrP(Sc)."	"Direct evidence of generation and accumulation of β-sheet-rich prion protein in scrapie-infected neuroblastoma cells with human IgG1 antibody specific for β-form prion protein. We prepared β-sheet-rich recombinant full-length prion protein (β-form PrP) (Jackson, G. S., Hosszu, L. L., Power, A., Hill, A. F., Kenney, J., Saibil, H., Craven, C. J., Waltho, J. P., Clarke, A. R., and Collinge, J. (1999) Science 283, 1935-1937). Using this β-form PrP and a human single chain Fv-displaying phage library, we have established a human IgG1 antibody specific to β-form but not α-form PrP, PRB7 IgG. When prion-infected ScN2a cells were cultured with PRB7 IgG, they generated and accumulated PRB7-binding granules in the cytoplasm with time, consequently becoming apoptotic cells bearing very large PRB7-bound aggregates. The SAF32 antibody recognizing the N-terminal octarepeat region of full-length PrP stained distinct granules in these cells as determined by confocal laser microscopy observation. When the accumulation of proteinase K-resistant PrP was examined in prion-infected ScN2a cells cultured in the presence of PRB7 IgG or SAF32, it was strongly inhibited by SAF32 but not at all by PRB7 IgG. Thus, we demonstrated direct evidence of the generation and accumulation of β-sheet-rich PrP in ScN2a cells de novo. These results suggest first that PRB7-bound PrP is not responsible for the accumulation of β-form PrP aggregates, which are rather an end product resulting in the triggering of apoptotic cell death, and second that SAF32-bound PrP lacking the PRB7-recognizing β-form may represent so-called PrP(Sc) with prion propagation activity. PRB7 is the first human antibody specific to β-form PrP and has become a powerful tool for the characterization of the biochemical nature of prion and its pathology."	"A thermoprotective role of the sodium channel β1 subunit is lost with the β1 (C121W) mutation. A mutation in the β(1) subunit of the voltage-gated sodium (Na(V)) channel, β(1) (C121W), causes genetic epilepsy with febrile seizures plus (GEFS+), a pediatric syndrome in which febrile seizures are the predominant phenotype. Previous studies of molecular mechanisms underlying neuronal hyperexcitability caused by this mutation were conducted at room temperature. The prevalence of seizures during febrile states in patients with GEFS+, however, suggests that the phenotypic consequence of β(1) (C121W) may be exacerbated by elevated temperature. We investigated the putative mechanism underlying seizure generation by the β(1) (C121W) mutation with elevated temperature. Whole-cell voltage clamp experiments were performed at 22 and 34°C using Chinese Hamster Ovary (CHO) cells expressing the α subunit of neuronal Na(V) channel isoform, Na(V) 1.2. Voltage-dependent properties were recorded from CHO cells expressing either Na(V) 1.2 alone, Na(V) 1.2 plus wild-type (WT) β(1) subunit, or Na(V) 1.2 plus β(1) (C121W). Our results suggest WT β(1) is protective against increased channel excitability induced by elevated temperature; protection is lost in the absence of WT β(1) or with expression of β(1) (C121W). At 34°C, Na(V) 1.2 + β(1) (C121W) channel excitability increased compared to NaV1.2 + WT β(1) by the following mechanisms: decreased use-dependent inactivation, increased persistent current and window current, and delayed onset of, and accelerated recovery from, fast inactivation. Temperature-dependent changes found in our study are consistent with increased neuronal excitability of GEFS+ patients harboring C121W. These results suggest a novel seizure-causing mechanism for β(1) (C121W): increased channel excitability at elevated temperature."	"Association of polymorphisms in EPHX1, UGT2B7, ABCB1, ABCC2, SCN1A and SCN2A genes with carbamazepine therapy optimization. Carbamazepine (CBZ) is one of the most widely used antiepileptic drugs. The aim of the present study is to investigate the impacts of polymorphisms in genes related to pharmacokinetic and pharmacodynamic pathways of CBZ on the large interindividual variability in dosages and concentrations. Genetic polymorphisms in the candidate genes were detected in 234 epileptic patients under maintenance CBZ monotherapy by real-time PCR and PCR-RFLP. Results of statistical analysis demonstrated that carriers of the variant SCN1A IVS5-91G&gt;A and EPHX1 c.337T&gt;C allele tended to require higher CBZ dosages and lower ln(concentration-dose ratios) than noncarriers (p &lt; 0.0001) and the homozygous carriers also seemed to require higher CBZ dosages and lower ln(concentration-dose ratios) (p &lt; 0.0001). In addition, the multiple regression model of concentration-dose ratio of CBZ also revealed that genetic variants in SCN1A, EPHX1 and UGT2B7 genes interactively affect the concentration-dose ratio of CBZ (adjusted r(2) = 55%). The present study identified genetic factors associated with CBZ therapy optimization and provided useful information for individualized CBZ therapy in epileptic patients. Further studies in larger populations are needed to confirm our results."	"Palmitoylation influences the function and pharmacology of sodium channels. Palmitoylation is a common lipid modification known to regulate the functional properties of various proteins and is a vital step in the biosynthesis of voltage-activated sodium (Nav) channels. We discovered a mutation in an intracellular loop of rNav1.2a (G1079C), which results in a higher apparent affinity for externally applied PaurTx3 and ProTx-II, two voltage sensor toxins isolated from tarantula venom. To explore whether palmitoylation of the introduced cysteine underlies this observation, we compared channel susceptibility to a range of animal toxins in the absence and presence of 2-Br-palmitate, a palmitate analog that prevents palmitate incorporation into proteins, and found that palmitoylation contributes to the increased affinity of PaurTx3 and ProTx-II for G1079C. Further investigations with 2-Br-palmitate revealed that palmitoylation can regulate the gating and pharmacology of wild-type (wt) rNav1.2a. To identify rNav1.2a palmitoylation sites contributing to these phenomena, we substituted three endogenous cysteines predicted to be palmitoylated and found that the gating behavior of this triple cysteine mutant is similar to wt rNav1.2a treated with 2-Br-palmitate. As with chemically depalmitoylated rNav1.2a channels, this mutant also exhibits an increased susceptibility for PaurTx3. Additional mutagenesis experiments showed that palmitoylation of one cysteine in particular (C1182) primarily influences PaurTx3 sensitivity and may enhance the inactivation process of wt rNav1.2a. Overall, our results demonstrate that lipid modifications are capable of altering the gating and pharmacological properties of rNav1.2a."	"Clinical spectrum of SCN2A mutations. Mutations in SCN2A, the gene encoding α2 subunit of the neuronal sodium channel, are associated with a variety of epilepsies: benign familial neonatal-infantile seizures (BFNIS); genetic epilepsy with febrile seizures plus (GEFS+); Dravet syndrome (DS); and some intractable childhood epilepsies. More than 10 new mutations have been identified in BFNIS, all of them are missense. To date, only one nonsense mutation has been found in a patient with intractable childhood epilepsy and severe mental decline. Recently, microduplication of chromosome 2q24.3 (containing eight genes including SCN2A, SCN3A, and the 3' end of SCN1A) was reported in a family with dominantly inherited neonatal seizures and intellectual disability. Functional studies of SCN2A mutations show that they can cause divergent biophysical defects in Na(V)1.2 and impair cell surface expressions. There is no consistent relationship between genotype and phenotype."	"Infantile epilepsy associated with mosaic 2q24 duplication including SCN2A and SCN3A. Epilepsies can be caused by specific genetic anomalies or by non-genetic factors, but in many cases the underlying cause is unknown. Mutations in the SCN1A and SCN2A genes are reported in childhood epilepsies; in particular SCN1A was found mutated in patients with Dravet syndrome and with generalized epilepsy with febrile seizures plus (GEFS+). In this paper we report a patient presenting with an atypical epileptic syndrome whose phenotype partially overlaps both Dravet syndrome and benign familial neonatal-infantile seizures (BFNIS). Array-CGH analysis suggested the presence of a mosaic duplication (about 12Mb) at the level of chromosome 2q23.3q24.3 involving SCN2A and SCN3A genes. Additional analyses (radiolabeled RFLP and quantitative PCR) confirmed the mosaicism of the duplication. We suggest that the array-CGH analysis is mandatory for children presenting with epilepsy and psycho-motor retardation even without dysmorphisms or other clinical features suggesting a specific genetic/epileptic syndrome. The analysis must nevertheless be performed taking into account the possibility of a mosaicism."	"Accumulation and aberrant composition of cholesteryl esters in Scrapie-infected N2a cells and C57BL/6 mouse brains. Cholesterol changes have been described in prion-cell models and in experimental rodent scrapie; yet, the pattern of this association is still controversial. To shed light on the matter, we analysed and compared cholesterol variations in ScN2a cells and in brains of Scrapie-infected C57Bl/6 mice, using two different methods: a fluorimetric-enzymatic cholesterol assay, and high performance liquid chromatography-mass spectroscopy (HPLC-MS). Compared to uninfected controls, similar cholesterol metabolism anomalies were observed in infected cells and brains by both methods; however, only HPLC-MS revealed statistically significant cholesterol variations, particularly in the cholesteryl esters (CE) fraction. HPLC-MS analyses also revealed different fatty acid composition of the CE fraction in cells and brains. In N2a cells, their profile reflected that of serum, while in normal brains cholesteryl-linoleate only was found at detectable levels. Following prion infection, most CE species were increased in the CE pool of ScN2a cells, whereas a conspicuous amount of cholesteryl-arachidonate only was found to contribute to the cerebral increase of CE. Of interest, oral pravastatin administration to Scrapie-infected mice, was associated with a significant reduction of cerebral free cholesterol (FC) along with a concomitant further increase of the CE pool, which included increased amounts of both cholesteryl-linoleate and cholesteryl-arachidonate. Although mechanistic studies are needed to establish the pathophysiological relevance of changes in cerebral CE concentrations, to the best of our knowledge this is the first report to provide evidence of increased cholesterol esterification in brains of prion-infected mice, untreated and treated with pravastatin."	"Structure-function map of the receptor site for β-scorpion toxins in domain II of voltage-gated sodium channels. Voltage-gated sodium (Na(v)) channels are the molecular targets of β-scorpion toxins, which shift the voltage dependence of activation to more negative membrane potentials by a voltage sensor-trapping mechanism. Molecular determinants of β-scorpion toxin (CssIV) binding and action on rat brain sodium channels are located in the S1-S2 (IIS1-S2) and S3-S4 (IIS3-S4) extracellular linkers of the voltage-sensing module in domain II. In IIS1-S2, mutations of two amino acid residues (Glu(779) and Pro(782)) significantly altered the toxin effect by reducing binding affinity. In IIS3-S4, six positions surrounding the key binding determinant, Gly(845), define a hot spot of high-impact residues. Two of these substitutions (A841N and L846A) reduced voltage sensor trapping. The other three substitutions (N842R, V843A, and E844N) increased voltage sensor trapping. These bidirectional effects suggest that the IIS3-S4 loop plays a primary role in determining both toxin affinity and efficacy. A high resolution molecular model constructed with the Rosetta-Membrane modeling system reveals interactions of amino acid residues in sodium channels that are crucial for toxin action with residues in CssIV that are required for its effects. In this model, the wedge-shaped CssIV inserts between the IIS1-S2 and IIS3-S4 loops of the voltage sensor, placing key amino acid residues in position to interact with binding partners in these extracellular loops. These results provide new molecular insights into the voltage sensor-trapping model of toxin action and further define the molecular requirements for the development of antagonists that can prevent or reverse toxicity of scorpion toxins."	"Environmental enrichment reduces spontaneous seizures in the Q54 transgenic mouse model of temporal lobe epilepsy. Temporal lobe epilepsy (TLE) is one of the most common forms of human epilepsy and is characterized by spontaneous recurrent seizures and cognitive deficits, often accompanied by hippocampal damage. Mutations in genes encoding for voltage-gated sodium channels have been shown to result in seizure disorders in humans. As a genetic model of TLE, we studied transgenic mice harboring a missense mutation of the sodium channel Scn2a (Nav1.2). In these mice, called Q54, spontaneous recurrent limbic motor seizures began at around 2 months of age and were accompanied by hippocampal sclerosis. We tested whether an enriched sensorimotor experience from birth (environmental enrichment) is effective in counteracting development of hyperexcitability and histopathologic changes in Q54 mice. We found that enriched Q54 animals displayed a dampened frequency of epileptic discharges and reduced hippocampal damage. Therefore, environmental enrichment from birth reduces spontaneous seizures and neuronal damage in the Q54 model of TLE."	"Pharmacogenomic association study on the role of drug metabolizing, drug transporters and drug target gene polymorphisms in drug-resistant epilepsy in a north Indian population. In epilepsy, in spite of the best possible medications and treatment protocols, approximately one-third of the patients do not respond adequately to anti-epileptic drugs. Such interindividual variations in drug response are believed to result from genetic variations in candidate genes belonging to multiple pathways. In the present pharmacogenetic analysis, a total of 402 epilepsy patients were enrolled. Of them, 128 were diagnosed as multiple drug-resistant epilepsy and 274 patients were diagnosed as having drug-responsive epilepsy. We selected a total of 10 candidate gene polymorphisms belonging to three major classes, namely drug transporters, drug metabolizers and drug targets. These genetic polymorphism included CYP2C9 c.430C&gt;T (*2 variant), CYP2C9 c.1075 A&gt;C (*3 variant), ABCB1 c.3435C&gt;T, ABCB1c.1236C&gt;T, ABCB1c.2677G&gt;T/A, SCN1A c.3184 A&gt; G, SCN2A c.56G&gt;A (p.R19K), GABRA1c.IVS11 + 15 A&gt;G and GABRG2 c.588C&gt;T. Genotyping was performed using polymerase chain reaction-restriction fragment length polymorphism (PCR-RFLP) methods, and each genotype was confirmed via direct DNA sequencing. The relationship between various genetic polymorphisms and responsiveness was examined using binary logistic regression by SPSS statistical analysis software. CYP2C9 c.1075 A&gt;C polymorphism showed a marginal significant difference between drug resistance and drug-responsive patients for the AC genotype (Odds ratio [OR] = 0.57, 95% confidence interval [CI] = 0.32-1.00; P = 0.05). In drug transporter, ABCB1c.2677G&gt;T/A polymorphism, allele A was associated with drug-resistant phenotype in epilepsy patients (P = 0.03, OR = 0.31, 95% CI = 0.10-0.93). Similarly, the variant allele frequency of SCN2A c.56 G&gt;A single nucleotide polymorphism was significantly higher in drug-resistant patients (P = 0.03; OR = 1.62, 95% CI = 1.03, 2.56). We also observed a significant difference at the genotype as well as allele frequencies of GABRA1c.IVS11 + 15 A &gt; G polymorphism in drug-resistant patients for homozygous GG genotype (P = 0.03, OR = 1.84, 95% CI = 1.05-3.23) and G allele (P = 0.02, OR = 1.43, 95% CI = 1.05-1.95). Our results showed that pharmacogenetic variants have important roles in epilepsy at different levels. It may be noted that multi-factorial diseases like epilepsy are also regulated by various other factors that may also be considered in the future."	"Mutation screening of three Chinese families with genetic epilepsy with febrile seizures plus. Genetic epilepsy with febrile seizures plus (GEFS+) is a familial autosomal dominant condition characterized by genetic heterogeneity. Five genes for GEFS+ identified in large families account for only a small proportion of families. Mutation in the majority of families with GEFS+ has not identified yet. The aim of our study is to search for the gene responsible for GEFS+ in three Chinese families by linkage analyses and a sequencing approach and to investigate the importance of coding and noncoding regions variations of four known GEFS+ genes (SCN1A, SCN1B, GABRG2 and SCN2A) in Chinese families. Results showed that a 6-cM candidate interval at 5q33-34 with a maximum LOD scores of 2.043 was identified in families B. Sequencing candidate gene GABRG2 and GABRA1 in this region did not identify a causative mutation. Moreover, no mutation was found in coding and noncoding regions of the four genes in three Chinese families. Besides excluding coding regions of four known GEFS+ genes, we also excluded the possibility of a mutation in the promoter, exon-intron boundaries, 5' untranslated regions (5' UTRs), and 3' UTRs of four known GEFS+ genes in three Chinese families. In conclusion, the present study demonstrates the heterogeneity of the etiologies of GEFS+. There are as yet undiscovered mechanisms underlying GEFS+."	"Refractory neonatal epilepsy with a de novo duplication of chromosome 2q24.2q24.3. There are only two reports on epileptic patients associated with microduplication of 2q. We found a de novo duplication of chromosome 2q24.2q24.3 in another infant with neonatal epilepsy. The patient had refractory focal seizures since the third day of life. Her seizures were refractory against phenobarbital and levetiracetam, but were controlled by valproate. Array comparative genomic hybridization revealed a 5.3-Mb duplication of 2q24.2q24.3, where at least 22 genes including a cluster of voltage-gated sodium channel genes (SCN1A, SCN2A, SCN3A, SCN7A, and SCN9A) and one noncoding RNA are located."	"Validation of a patch clamp screening protocol that simultaneously measures compound activity in multiple states of the voltage-gated sodium channel Nav1.2. Hyperactivity of voltage-gated sodium channels underlies, at least in part, a range of pathological states, including pain and epilepsy. Selective blockers of these channels may offer effective treatment of such disorders. Currently employed methods to screen for sodium channel blockers, however, are inadequate to rationally identify mechanistically diverse blockers, limiting the potential range of indications that may be treated by such agents. Here, we describe an improved patch clamp screening assay that increases the mechanistic diversity of sodium channel blockers being identified. Using QPatch HT, a medium-throughput, automated patch clamp system, we tested three common sodium channel blockers (phenytoin, lidocaine, and tetrodotoxin) with distinct mechanistic profiles at Nav1.2. The single-voltage protocol employed in this assay simultaneously measured the compound activity in multiple states, including the slow inactivated state, of the channel. A long compound incubation period (10 s) was introduced during channel inactivation to increase the probability of identifying &quot;slow binders.&quot; As such, phenytoin, which preferentially binds with slow kinetics to the fast inactivated state, exhibited significantly higher potency than that obtained from a brief exposure (100 ms) used in typical assays. This assay also successfully detected the use-dependent block of tetrodotoxin, a well-documented property of this molecule yet unobserved in typical patch clamp protocols. These results indicate that the assay described here can increase the likelihood of identification and mechanistic diversity of sodium channel blockers from a primary screen. It can also be used to efficiently guide the in vitro optimization of leads that retain the desired mechanistic properties."	"Structural and energetic determinants of apo calmodulin binding to the IQ motif of the Na(V)1.2 voltage-dependent sodium channel. The neuronal voltage-dependent sodium channel (Na(v)1.2), essential for generation and propagation of action potentials, is regulated by calmodulin (CaM) binding to the IQ motif in its α subunit. A peptide (Na(v)1.2(IQp), KRKQEEVSAIVIQRAYRRYLLKQKVKK) representing the IQ motif had higher affinity for apo CaM than (Ca(2+))(4)-CaM. Association was mediated solely by the C-domain of CaM. A solution structure (2KXW.pdb) of apo (13)C,(15)N-CaM C-domain bound to Na(v)1.2(IQp) was determined with NMR. The region of Na(v)1.2(IQp) bound to CaM was helical; R1902, an Na(v)1.2 residue implicated in familial autism, did not contact CaM. The apo C-domain of CaM in this complex shares features of the same domain bound to myosin V IQ motifs (2IX7) and bound to an SK channel peptide (1G4Y) that does not contain an IQ motif. Thermodynamic and structural studies of CaM-Na(v)1.2(IQp) interactions show that apo and (Ca(2+))(4)-CaM adopt distinct conformations that both permit tight association with Na(v)1.2(IQp) during gating."	"An interstitial duplication at 2q24.3 involving the SCN1A, SCN2A, SCN3A genes associated with infantile epilepsy. NA"	"Voltage-gated potassium channel KCNV2 (Kv8.2) contributes to epilepsy susceptibility. Mutations in voltage-gated ion channels are responsible for several types of epilepsy. Genetic epilepsies often exhibit variable severity in individuals with the same mutation, which may be due to variation in genetic modifiers. The Scn2a(Q54) transgenic mouse model has a sodium channel mutation and exhibits epilepsy with strain-dependent severity. We previously mapped modifier loci that influence Scn2a(Q54) phenotype severity and identified Kcnv2, encoding the voltage-gated potassium channel subunit Kv8.2, as a candidate modifier. In this study, we demonstrate a threefold increase in hippocampal Kcnv2 expression associated with more severe epilepsy. In vivo exacerbation of the phenotype by Kcnv2 transgenes supports its identification as an epilepsy modifier. The contribution of KCNV2 to human epilepsy susceptibility is supported by identification of two nonsynonymous variants in epilepsy patients that alter function of Kv2.1/Kv8.2 heterotetrameric potassium channels. Our results demonstrate that altered potassium subunit function influences epilepsy susceptibility and implicate Kcnv2 as an epilepsy gene."	"Proposed genetic classification of the &quot;benign&quot; familial neonatal and infantile epilepsies. NA"	"The developmental changes of Na(v)1.1 and Na(v)1.2 expression in the human hippocampus and temporal lobe. Alterations of the genes encoding α1 and α2 subunits of voltage-gated sodium channels (SCN1A, SCN2A) have been reported as causes of various types of epilepsy, most of which occur during the first year of life; as yet, however, the detailed mechanisms are unclear. We suppose that developmental changes of SCN1A and SCN2A in the human brain, which are unknown yet, may play an important role. So here, we studied the developmental changes of their corresponding proteins (Na(v)1.1 and Na(v)1.2) in the human hippocampus and temporal lobe in 28 autopsy cases, which age from 13weeks of gestation (GW) to 63years of age (Y). Using comparative microscopic immunohistochemical (IHC) analysis, we found that Na(v)1.1 and Na(v)1.2 immunoreactivity first appeared at 19GW, simultaneously in the hippocampus and the white matter of temporal lobe. In nearly all age groups, Na(v)1.1 immunoreactivity was weak and relatively homogeneous. In general, Na(v)1.1 immunoreactive (IR) neurons and neurites increased during the late fetal and postnatal periods, reached their peaks 7-9months after birth (M), then decreased and remained stable at a relatively low level during childhood and adulthood. On the other hand, Na(v)1.2 immunoreactivity was strong and heterogeneous. In the hippocampus, Na(v)1.2 IR neurons increased gradually during the late fetal period, reached their peaks at 7-9M, sustained this high level during childhood, and then decreased slightly at adulthood. In the temporal lobe, Na(v)1.2 IR neurons reached a high level during the late fetal period, and maintained that level during subsequent developmental stages; Na(v)1.2 IR neurites also increased to a relatively high level during the late fetal period and continued to increase up to and during adulthood. Using double-staining IHC, we found that Na(v)1.1 and Na(v)1.2 had a relatively high colocalization rate with parvalbumin and showed distinct developmental changes. These findings extend our previous understanding of sodium channels and may help us discover the pathomechanisms of sodium channel-related age-dependent epilepsy."	"Biological effects and use of PrPSc- and PrP-specific antibodies generated by immunization with purified full-length native mouse prions. The prion agent is the infectious particle causing spongiform encephalopathies in animals and humans and is thought to consist of an altered conformation (PrP(Sc)) of the normal and ubiquitous prion protein PrP(C). The interaction of the prion agent with the immune system, particularly the humoral immune response, has remained unresolved. Here we investigated the immunogenicity of full-length native and infectious prions, as well as the specific biological effects of the resulting monoclonal antibodies (MAbs) on the binding and clearance of prions in cell culture and in in vivo therapy. Immunization of prion knockout (Prnp(0/0)) mice with phosphotungstic acid-purified mouse prions resulted in PrP-specific monoclonal antibodies with binding specificities selective for PrP(Sc) or for both PrP(C) and PrP(Sc). PrP(Sc)-specific MAb W261, of the IgG1 isotype, reacted with prions from mice, sheep with scrapie, deer with chronic wasting disease (CWD), and humans with sporadic and variant Creutzfeldt-Jakob disease (CJD) in assays including a capture enzyme-linked immunosorbent assay (ELISA) system. This PrP(Sc)-specific antibody was unable to clear prions from mouse neuroblastoma cells (ScN2a) permanently infected with scrapie, whereas the high-affinity MAb W226, recognizing both isoforms, PrP(Sc) and PrP(C), did clear prions from ScN2a cells, as determined by a bioassay. However, an attempt to treat intraperitoneally prion infected mice with full-length W226 or with a recombinant variable-chain fragment (scFv) from W226 could only slightly delay the incubation time. We conclude that (i) native, full-length PrP(Sc) elicits a prion-specific antibody response in PrP knockout mice, (ii) a PrP(Sc)-specific antibody had no prion-clearing effect, and (iii) even a high-affinity MAb that clears prions in vitro (W226) may not necessarily protect against prion infection, contrary to previous reports using different antibodies."	"2-Aminothiazoles as therapeutic leads for prion diseases. 2-Aminothiazoles are a new class of small molecules with antiprion activity in prion-infected neuroblastoma cell lines (J. Virol. 2010, 84, 3408). We report here structure-activity studies undertaken to improve the potency and physiochemical properties of 2-aminothiazoles, with a particular emphasis on achieving and sustaining high drug concentrations in the brain. The results of this effort include the generation of informative structure-activity relationships (SAR) and the identification of lead compounds that are orally absorbed and achieve high brain concentrations in animals. The new aminothiazole analogue (5-methylpyridin-2-yl)-[4-(3-phenylisoxazol-5-yl)-thiazol-2-yl]-amine (27), for example, exhibited an EC(50) of 0.94 μM in prion-infected neuroblastoma cells (ScN2a-cl3) and reached a concentration of ∼25 μM in the brains of mice following three days of oral administration in a rodent liquid diet. The studies described herein suggest 2-aminothiazoles as promising new leads in the search for effective therapeutics for prion diseases."	"Monoacylated cellular prion protein modifies cell membranes, inhibits cell signaling, and reduces prion formation. Prion diseases occur following the conversion of the cellular prion protein (PrP(C)) into a disease related, protease-resistant isoform (PrP(Sc)). In these studies, a cell painting technique was used to introduce PrP(C) to prion-infected neuronal cell lines (ScGT1, ScN2a, or SMB cells). The addition of PrP(C) resulted in increased PrP(Sc) formation that was preceded by an increase in the cholesterol content of cell membranes and increased activation of cytoplasmic phospholipase A(2) (cPLA(2)). In contrast, although PrP(C) lacking one of the two acyl chains from its glycosylphosphatidylinositol (GPI) anchor (PrP(C)-G-lyso-PI) bound readily to cells, it did not alter the amount of cholesterol in cell membranes, was not found within detergent-resistant membranes (lipid rafts), and did not activate cPLA(2). It remained within cells for longer than PrP(C) with a conventional GPI anchor and was not converted to PrP(Sc). Moreover, the addition of high amounts of PrP(C)-G-lyso-PI displaced cPLA(2) from PrP(Sc)-containing lipid rafts, reduced the activation of cPLA(2), and reduced PrP(Sc) formation in all three cell lines. In addition, ScGT1 cells treated with PrP(C)-G-lyso-PI did not transmit infection following intracerebral injection to mice. We propose that that the chemical composition of the GPI anchor attached to PrP(C) modified the local membrane microenvironments that control cell signaling, the fate of PrP(C), and hence PrP(Sc) formation. In addition, our observations raise the possibility that pharmacological modification of GPI anchors might constitute a novel therapeutic approach to prion diseases."	"Contexts for dopamine specification by calcium spike activity in the CNS. Calcium-dependent electrical activity plays a significant role in neurotransmitter specification at early stages of development. To test the hypothesis that activity-dependent differentiation depends on molecular context, we investigated the development of dopaminergic neurons in the CNS of larval Xenopus laevis. We find that different dopaminergic nuclei respond to manipulation of this early electrical activity by ion channel misexpression with different increases and decreases in numbers of dopaminergic neurons. Focusing on the ventral suprachiasmatic nucleus and the spinal cord to gain insight into these differences, we identify distinct subpopulations of neurons that express characteristic combinations of GABA and neuropeptide Y as cotransmitters and Lim1,2 and Nurr1 transcription factors. We demonstrate that the developmental state of neurons identified by their spatial location and expression of these molecular markers is correlated with characteristic spontaneous calcium spike activity. Different subpopulations of dopaminergic neurons respond differently to manipulation of this early electrical activity. Moreover, retinohypothalamic circuit activation of the ventral suprachiasmatic nucleus recruits expression of dopamine selectively in reserve pool neurons that already express GABA and neuropeptide Y. The results are consistent with the hypothesis that spontaneously active neurons expressing GABA are most susceptible to activity-dependent expression of dopamine in both the spinal cord and brain. Because loss of dopaminergic neurons plays a role in neurological disorders such as Parkinson's disease, understanding how subpopulations of neurons become dopaminergic may lead to protocols for differentiation of neurons in vitro to replace those that have been lost in vivo."	"Two distinct regions in 2q24.2-q24.3 associated with idiopathic epilepsy. Approximately 50% of all carriers of 2q21-q31 deletions present epileptic seizures. The band 2q24 constitutes the smallest commonly deleted segment in these patients, and contains the voltage-gated sodium channel genes SCN1A and SCN2A, associated with Dravet syndrome and benign familial neonatal-infantile seizures, respectively. A further putative locus involving epilepsy in the region was previously identified through disruption of the SLC4A10 gene by translocation. In the course of performing high-resolution DNA copy number analyses on syndromic mentally impaired individuals, we encountered three patients with overlapping deletions in chromosome region 2q24. Two of these patients exhibited epileptic seizures in addition to mental deficiency. The deletion in one of the epileptic patients did not include the SCN cluster, demonstrating that a less severe form of epilepsy maps to an adjacent genomic region. This second region comprises about 3 Mb and contains the candidate gene SLC4A10, providing further support for the potential role of this gene in epilepsy."	"Epilepsy genetics--an optimistic overview. NA"	"Neuronal voltage-gated ion channels are genetic modifiers of generalized epilepsy with febrile seizures plus. Mutations in the neuronal voltage-gated sodium channel genes SCN1A and SCN2A are associated with inherited epilepsies, including genetic epilepsy with febrile seizures plus (GEFS+) and Dravet syndrome (severe myoclonic epilepsy of infancy). The clinical presentation and severity of these epilepsies vary widely, even in people with the same mutation, suggesting the action of environmental or genetic modifiers. To gain support for the hypothesis that genetic modifiers can influence clinical presentation in patients with SCN1A-derived GEFS+, we used mouse models to study the effect of combining the human GEFS+ mutation SCN1A-R1648H with SCN2A, KCNQ2, and SCN8A mutations. Knock-in mice heterozygous for the R1648H mutation (Scn1a(RH/+)) have decreased thresholds to induced seizures and infrequent spontaneous seizures, whereas homozygotes display spontaneous seizures and premature lethality. Scn2a(Q54) transgenic mice have a mutation in Scn2a that results in spontaneous, adult-onset partial motor seizures, and mice carrying the Kcnq2-V182M mutation exhibit increased susceptibility to induced seizures, and rare spontaneous seizures as adults. Combining the Scn1a-R1648H allele with either Scn2a(Q54) or Kcnq2(V182M/+) results in early-onset, generalized tonic-clonic seizures and juvenile lethality in double heterozygous mice. In contrast, Scn8a mutants exhibit increased resistance to induced seizures. Combining the Scn1a-R1648H and Scn8a-med-jo alleles restores normal thresholds to flurothyl-induced seizures in Scn1a(RH/+) heterozygotes and improved survival of Scn1a(RH/RH) homozygotes. Our results demonstrate that variants in Scn2a, Kcnq2, and Scn8a can dramatically influence the phenotype of mice carrying the Scn1a-R1648H mutation and suggest that ion channel variants may contribute to the clinical variation seen in patients with monogenic epilepsy."	"Antillatoxin is a sodium channel activator that displays unique efficacy in heterologously expressed rNav1.2, rNav1.4 and rNav1.5 α subunits. Antillatoxin (ATX) is a structurally unique lipopeptide produced by the marine cyanobacterium Lyngbya majuscula. ATX activates voltage-gated sodium channel α-subunits at an undefined recognition site and stimulates sodium influx in neurons. However, the pharmacological properties and selectivity of ATX on the sodium channel α-subunits were not fully characterized. In this study, we characterized the pharmacological properties and selectivity of ATX in cells heterologously expressing rNa(v)1.2, rNa(v)1.4 or rNa(v)1.5 α-subunits by using the Na(+) selective fluorescent dye, sodium-binding benzofuran isophthalate. ATX produced sodium influx in cells expressing each sodium channel α-subunit, whereas two other sodium channel activators, veratridine and brevetoxin-2, were without effect. The ATX potency at rNa(v)1.2, rNa(v)1.4 and rNa(v)1.5 did not differ significantly. Similarly, there were no significant differences in the efficacy for ATX-induced sodium influx between rNa(v)1.2, rNa(v)1.4 and rNa(v)1.5 α-subunits. ATX also produced robust Ca²(+) influx relative to other sodium channel activators in the calcium-permeable DEAA mutant of rNa(v)1.4 α-subunit. Finally, we demonstrated that the 8-demethyl-8,9-dihydro-antillatoxin analog was less efficacious and less potent in stimulating sodium influx. ATX displayed a unique efficacy with respect to stimulation of sodium influx in cells expressing rNa(v)1.2, rNa(v)1.4 and rNa(v)1.5 α-subunits. The efficacy of ATX was distinctive inasmuch as it was not shared by activators of neurotoxin sites 2 and 5 on VGSC α-subunits. Given the unique pharmacological properties of ATX interaction with sodium channel α-subunits, decoding the molecular determinants and mechanism of action of antillatoxin may provide further insight into sodium channel gating mechanisms."	"SCN2A mutation associated with neonatal epilepsy, late-onset episodic ataxia, myoclonus, and pain. Inherited and de novo mutations in sodium channel genes underlie a variety of channelopathies. Mutations in SCN2A, encoding the brain sodium channel Na(V)1.2, have previously been reported to be associated with benign familial neonatal infantile seizures, febrile seizures plus, and intractable epilepsy of infancy. We evaluated the clinical characteristics in a patient with a neonatal-onset complex episodic neurologic phenotype. We screened SCN2A for mutations and carried out in vitro electrophysiologic analyses to study the consequences of the identified mutation. We studied the developmental expression of Na(V)1.2 in cerebellum by immunohistochemical analysis. The patient presented with neonatal-onset seizures and variable episodes of ataxia, myoclonia, headache, and back pain after 18 months of age. The patient carries a de novo missense mutation (p.Ala263Val) in SCN2A, which leads to a pronounced gain-of-function, in particular an increased persistent Na(+) current. Immunohistochemical studies suggest a developmentally increasing expression of Na(V)1.2 in granule cell axons projecting to Purkinje neurons. These results can explain a neuronal hyperexcitability resulting in seizures and other episodic symptoms extending the spectrum of SCN2A-associated phenotypes. The developmentally increasing expression of Na(V)1.2 in cerebellum may be responsible for the later onset of episodic ataxia."	"A novel class of potential prion drugs: preliminary in vitro and in vivo data for multilayer coated gold nanoparticles. Gold nanoparticles coated with oppositely charged polyelectrolytes, such as polyallylamine hydrochloride and polystyrenesulfonate, were examined for potential inhibition of prion protein aggregation and prion (PrPSc) conversion and replication. Different coatings, finishing with a positive or negative layer, were tested, and different numbers of layers were investigated for their ability to interact and reduce the accumulation of PrPSc in scrapie prion infected ScGT1 and ScN2a cells. The particles efficiently hampered the accumulation of PrPSc in ScN2a cells and showed curing effects on ScGT1 cells with a nanoparticle concentration in the picomolar range. Finally, incubation periods of prion-infected mice treated with nanomolar concentrations of gold nanoparticles were significantly longer compared to untreated controls."	"Differential evolution of voltage-gated sodium channels in tetrapods and teleost fishes. The voltage-gated sodium channel (SCN) alpha subunits are large proteins with central roles in the generation of action potentials. They consist of approximately 2,000 amino acids encoded by 24-27 exons. Previous evolutionary studies have been unable to reconcile the proposed gene duplication schemes with the species distribution and molecular phylogeny of the genes. We have carefully annotated the complete SCN gene sequences, correcting numerous database errors, for a broad range of vertebrate species and analyzed their phylogenetic relationships. We have also compared the chromosomal positions of the SCN genes relative to adjacent gene families. Our studies show that the ancestor of the vertebrates probably had a single sodium channel gene with two characteristic AT-AC introns, the second of which is unique to vertebrate SCN genes. This ancestral gene, located close to a HOX gene cluster, was quadrupled along with HOX in the two rounds of basal vertebrate tetraploidizations to generate the ancestors of the four channels SCN1A, SCN4A, SCN5A, and SCN8A. The third tetraploidization in the teleost fish ancestor doubled this set of genes and all eight are still present in at least three of four investigated teleost fish genomes. In tetrapods, the gene family expanded by local duplications before the radiation of amniotes, generating the cluster SCN5A, SCN10A, and SCN11A on one chromosome and the cluster SCN1A, SCN2A, SCN3A, and SCN9A on a different chromosome. In eutherian mammals, a tenth gene, SCN7A, arose in a local duplication in the SCN1A gene cluster. The SCN7A gene has undergone rapid evolution and has lost the ability to cause action potentials-instead, it functions as a sodium sensor. The three genes in the SCN5A cluster were translocated from the HOX-bearing chromosome in a mammalian ancestor along with several adjacent genes. This evolutionary scenario is supported by the adjacent TGF-β receptor superfamily (comprised of five distinct families) and the cysteine-serine-rich nuclear protein gene family as well as the HOX clusters. The independent expansions of the SCN repertoires in tetrapods and teleosts suggest that the functional diversification may differ between the two lineages."	"Advances on the genetics of Mendelian idiopathic epilepsies. Genetic factors play an increasingly recognized role in idiopathic epilepsies. Since 1995, positional cloning strategies in multigenerational families with autosomal dominant transmission have revealed 11 genes (KCNQ2, KCNQ3, CHRNA4, CHRNA2, CHRNB2, SCN1B, SCN1A, SCN2A, GABRG2, GABRA1, and LGI1) and numerous loci for febrile seizures and epilepsies. To date, all genes with the exception of LGI1, encode neuronal ion channel or neurotransmitter receptor subunits. Molecular approaches have revealed great genetic heterogeneity, with most genes remaining to be identified. One of the major challenges is now to understand phenotype-genotype correlations. This review focuses on the current knowledge on the molecular basis of these rare mendelian autosomal dominant forms of idiopathic epilepsies."	"Disruption of the SCN2A and SCN3A genes in a patient with mental retardation, neurobehavioral and psychiatric abnormalities, and a history of infantile seizures. Mutations in genes encoding voltage-gated sodium channels are significant factors in the etiology of neurological diseases and psychiatric disorders, including various types of idiopathic epilepsy. Using a clinical exon-targeted oligonucleotide array comparative genomic hybridization (aCGH), we have identified a de novo ~110-kb deletion involving exons 1-2 of SCN2A and non-coding exon 1a of SCN3A in a 25-year-old female with mental retardation, neurobehavioral and psychiatric abnormalities, and a history of infantile seizures with abnormal EEG. We propose that haploinsufficiency of SCN2A may play an important role in the genetic basis of neurodevelopmental and neurobehavioral disorders and emphasize the efficacy of detecting exonic copy-number variation (CNV) by exon-targeted oligo aCGH."	"Plasminogen stimulates propagation of protease-resistant prion protein in vitro. To clarify the role of plasminogen as a cofactor for prion propagation, we conducted functional assays using a cell-free prion protein (PrP) conversion assay termed protein misfolding cyclic amplification (PMCA) and prion-infected cell lines. Here, we report that plasminogen stimulates propagation of the protease-resistant scrapie PrP (PrP(Sc)). Compared to control PMCA conducted without plasminogen, addition of plasminogen in PMCA using wild-type brain material significantly increased PrP conversion, with an EC(50) = ∼56 nM. PrP conversion in PMCA was substantially less efficient with plasminogen-deficient brain material than with wild-type material. The activity stimulating PrP conversion was specific for plasminogen and conserved in its kringle domains. Such activity was abrogated by modification of plasminogen structure and interference of PrP-plasminogen interaction. Kinetic analysis of PrP(Sc) generation demonstrated that the presence of plasminogen in PMCA enhanced the PrP(Sc) production rate to ∼0.97 U/μl/h and reduced turnover time to ∼1 h compared to those (∼0.4 U/μl/h and ∼2.5 h) obtained without supplementation. Furthermore, as observed in PMCA, plasminogen and kringles promoted PrP(Sc) propagation in ScN2a and Elk 21(+) cells. Our results demonstrate that plasminogen functions in stimulating conversion processes and represents the first cellular protein cofactor that enhances the hypothetical mechanism of prion propagation."	"Low frequency stimulation decreases seizure activity in a mutation model of epilepsy. To investigate brain electrical activity in Q54 mice that display spontaneous seizures because of a gain-of-function mutation of the Scn2a sodium channel gene, and to evaluate the efficacy of low frequency deep brain stimulation (DBS) for seizure frequency reduction. Electroencephalography (EEG), electromyography (EMG), and hippocampal deep electrodes were implanted into Q54 mice expressing an epileptic phenotype (n = 6). Chronic six channel recordings (wideband, 0.1-300 Hz) were stored 24 h a day for more than 12 days. Low frequency stimulation (LFS) (3 Hz, square wave, biphasic, 100 μs, 400 μA) was applied to the ventral hippocampal commissure (VHC) in alternating 5 min cycles (on or off) 24 h a day for a period of 4 days. LFS (3 Hz) resulted in a significant reduction in seizure frequency and duration (21% and 35%, p &lt; 0.05), when applied to the VHC of epileptic Q54 mice (n = 6). Seizure frequency was not directly affected by stimulation state (&quot;on&quot; vs. &quot;off&quot;). LFS applied at a frequency of 3 Hz significantly reduced seizure frequency and duration in the Q54 model. Furthermore, the reduction of seizure frequency and duration by LFS was not immediate but had a delayed and lasting effect, supporting complex, indirect mechanisms of action."	"Partial epilepsy with antecedent febrile seizures and seizure aggravation by antiepileptic drugs: associated with loss of function of Na(v) 1.1. Generalized epilepsy with febrile seizures plus (GEFS+) and severe myoclonic epilepsy in infancy (SMEI) are associated with sodium channel α-subunit type-1 gene (SCN1A) mutations. Febrile seizures and partial seizures occur in both GEFS+ and SMEI; sporadic onset and seizure aggravation by antiepileptic drugs (AEDs) are features of SMEI. We thus searched gene mutations in isolated cases of partial epilepsy with antecedent FS (PEFS+) that showed seizure aggravations by AEDs. Genomic DNA from four patients was screened for mutations in SCN1A, SCN2A, SCN1B, and GABRG2 using denaturing high-performance liquid chromatography (dHPLC) and sequencing. Whole-cell patch clamp analysis was used to characterize biophysical properties of two newly defined mutants of Na(v) 1.1 in tsA201 cells. Two heterozygous de novo mutations of SCN1A (R946H and F1765L) were detected, which were proven to cause loss of function of Na(v) 1.1. When the functional defects of mutants reported previously are compared, it is found that all mutants from PEFS+ have features of loss of function, whereas GEFS+ shows mild dysfunction excluding loss of function, coincident with mild clinical manifestations. PEFS+ is similar to SMEI clinically with possible AED-induced seizure aggravation and biophysiologically with features of loss of function, and different from SMEI by missense mutation without changes in hydrophobicity or polarity of the residues. Isolated milder PEFS+ may associate with SCN1A mutations and loss of function of Na(v) 1.1, which may be the basis of seizure aggravation by sodium channel-blocking AEDs. This study characterized phenotypes biologically, which may be helpful in understanding the pathophysiologic basis, and further in management of the disease."	"An improved method for cell-to-cell transmission of infectious prion. Prion diseases are characterized by the accumulation of a pathological form of prion protein (PrP(Sc)), which behaves as an infectious agent. Here we developed an in vitro co-culture system to analyze the PrP(Sc) transmission from ScN2a cell, which persistently retains PrP(Sc), to naïve N2a cell. In this cell-to-cell transmission system, PrP(Sc) transmitted to recipient N2a cell was able to be detected within 5-7days. Further characterization showed that higher cell density greatly facilitated the transmission of PrP(Sc). This improved in vitro transmission method may become a useful tool for unveiling the molecular mechanism of PrP(Sc) transmission."	"μ-conotoxin KIIIA derivatives with divergent affinities versus efficacies in blocking voltage-gated sodium channels. The possibility of independently manipulating the affinity and efficacy of pore-blocking ligands of sodium channels is of interest for the development of new drugs for the treatment of pain. The analgesic mu-conotoxin KIIIA (KIIIA), a 16-residue peptide with three disulfide bridges, is a pore blocker of voltage-gated sodium channels, including neuronal subtype Na(V)1.2 (K(d) = 5 nM). At saturating concentrations, KIIIA incompletely blocks the sodium current of Na(V)1.2, leaving a 5% residual current (rI(Na)). Lys7 is an important residue: the K7A mutation decreases both the efficacy (i.e., increases rI(Na) to 23%) and the affinity of the peptide (K(d) = 115 nM). In this report, various replacements of residue 7 were examined to determine whether affinity and efficacy were inexorably linked. Because of their facile chemical synthesis, KIIIA analogues that had as a core structure the disulfide-depleted KIIIA[C1A,C2U,C9A,C15U] (where U is selenocysteine) or ddKIIIA were used. Analogues ddKIIIA and ddKIIIA[K7X], where X represents one of nine different amino acids, were tested on voltage-clamped Xenopus oocytes expressing rat Na(V)1.2 or Na(V)1.4. Their affinities ranged from 0.01 to 36 muM and rI(Na) values from 2 to 42%, and these two variables appeared to be uncorrelated. Instead, rI(Na) varied inversely with side chain size, and remarkably charge and hydrophobicity appeared to be inconsequential. The ability to manipulate a mu-conopeptide's affinity and efficacy, as well as its capacity to interfere with subsequent tetrodotoxin binding, greatly expands its scope as a reagent for probing sodium channel structure and function and may also lead to the development of mu-conotoxins as safe analgesics."	"Glycosylphosphatidylinositol anchor analogues sequester cholesterol and reduce prion formation. A hallmark of prion diseases is the conversion of the host-encoded prion protein (PrP(C) where C is cellular) into an alternatively folded, disease-related isoform (PrP(Sc), where Sc is scrapie), the accumulation of which is associated with synapse degeneration and ultimately neuronal death. The formation of PrP(Sc) is dependent upon the presence of PrP(C) in specific, cholesterol-sensitive membrane microdomains, commonly called lipid rafts. PrP(C) is targeted to these lipid rafts because it is attached to membranes via a glycosylphosphatidylinositol anchor. Here, we show that treatment of prion-infected neuronal cell lines (ScN2a, ScGT1, or SMB cells) with synthetic glycosylphosphatidylinositol analogues, glucosamine-phosphatidylinositol (glucosamine-PI) or glucosamine 2-O-methyl inositol octadecyl phosphate, reduced the PrP(Sc) content of these cells in a dose-dependent manner. In addition, ScGT1 cells treated with glucosamine-PI did not transmit infection following intracerebral injection to mice. Treatment with glucosamine-PI increased the cholesterol content of ScGT1 cell membranes and reduced activation of cytoplasmic phospholipase A(2) (PLA(2)), consistent with the hypothesis that the composition of cell membranes affects key PLA(2)-dependent signaling pathways involved in PrP(Sc) formation. The effect of glucosamine-PI on PrP(Sc) formation was also reversed by the addition of platelet-activating factor. Glucosamine-PI caused the displacement of PrP(C) from lipid rafts and reduced expression of PrP(C) at the cell surface, putative sites for PrP(Sc) formation. We propose that treatment with glucosamine-PI modifies local micro-environments that control PrP(C) expression and activation of PLA(2) and subsequently inhibits PrP(Sc) formation."	"A sodium channel mutation linked to epilepsy increases ramp and persistent current of Nav1.3 and induces hyperexcitability in hippocampal neurons. Voltage-gated sodium channelopathies underlie many excitability disorders. Genes SCN1A, SCN2A and SCN9A, which encode pore-forming alpha-subunits Na(V)1.1, Na(V)1.2 and Na(V)1.7, are clustered on human chromosome 2, and mutations in these genes have been shown to underlie epilepsy, migraine, and somatic pain disorders. SCN3A, the gene which encodes Na(V)1.3, is part of this cluster, but until recently was not associated with any mutation. A charge-neutralizing mutation, K345Q, in the Na(V)1.3 DI/S5-6 linker has recently been identified in a patient with cryptogenic partial epilepsy. Pathogenicity of the Na(V)1.3/K354Q mutation has been inferred from the conservation of this residue in all sodium channels and its absence from control alleles, but functional analysis has been limited to the corresponding substitution in the cardiac muscle sodium channel Na(V)1.5. Since identical mutations may produce different effects within different sodium channel isoforms, we assessed the K354Q mutation within its native Na(V)1.3 channel and studied the effect of the mutant Na(V)1.3/K354Q channels on hippocampal neuron excitability. We show here that the K354Q mutation enhances the persistent and ramp currents of Na(V)1.3, reduces current threshold and produces spontaneous firing and paroxysmal depolarizing shift-like complexes in hippocampal neurons. Our data provide a pathophysiological basis for the pathogenicity of the first epilepsy-linked mutation within Na(V)1.3 channels and hippocampal neurons."	"Cooccupancy of the outer vestibule of voltage-gated sodium channels by micro-conotoxin KIIIA and saxitoxin or tetrodotoxin. The guanidinium alkaloids tetrodotoxin (TTX) and saxitoxin (STX) are classic ligands of voltage-gated sodium channels (VGSCs). Like TTX and STX, micro-conotoxin peptides are pore blockers but with greater VGSC subtype selectivity. micro-Conotoxin KIIIA blocks the neuronal subtype Na(V)1.2 with nanomolar affinity and we recently discovered that KIIIA and its mutant with one fewer positive charge, KIIIA[K7A], could act synergistically with TTX in a ternary peptide x TTX x Na(V) complex. In the complex, the peptide appeared to trap TTX in its normal binding site such that TTX could not readily dissociate from the channel until the peptide had done so; in turn, the presence of TTX accelerated the rate at which peptide dissociated from the channel. In the present study we examined the inhibition of Na(V)1.2, exogenously expressed in Xenopus oocytes, by STX (a divalent cation) and its sulfated congener GTX2/3 (with a net +1 charge). Each could form a ternary complex with KIIIA and Na(V)1.2, as previously found with TTX (a monovalent cation), but only when STX or GTX2/3 was added before KIIIA. The KIIIA x alkaloid x Na(V) complex was considerably less stable with STX than with either GTX2/3 or TTX. In contrast, ternary KIIIA[K7A] x alkaloid x Na(V) complexes could be formed with either order of ligand addition and were about equally stable with STX, GTX2/3, or TTX. The most parsimonious interpretation of the overall results is that the alkaloid and peptide are closely apposed in the ternary complex. The demonstration that two interacting ligands (&quot;syntoxins&quot;) occupy adjacent sites raises the possibility of evolving a much more sophisticated neuropharmacology of VGSCs."	"Influence of surface functionality of poly(propylene imine) dendrimers on protease resistance and propagation of the scrapie prion protein. Accumulation of PrP(Sc), an insoluble and protease-resistant pathogenic isoform of the cellular prion protein (PrP(C)), is a hallmark in prion diseases. Branched polyamines, including PPI (poly(propylene imine)) dendrimers, are able to remove protease resistant PrP(Sc) and abolish infectivity, offering possible applications for therapy. These dendrimer types are thought to act through their positively charged amino surface groups. In the present study, the molecular basis of the antiprion activity of dendrimers was further investigated, employing modified PPI dendrimers in which the positively charged amino surface groups were substituted with neutral carbohydrate units of maltose (mPPI) or maltotriose (m3PPI). Modification of surface groups greatly reduced the toxicity associated with unmodified PPI but did not abolish its antiprion activity, suggesting that the presence of cationic surface groups is not essential for dendrimer action. PPI and mPPI dendrimers of generation 5 were equally effective in reducing levels of protease-resistant PrP(Sc) (PrP(res)) in a dose- and time-dependent manner in ScN2a cells and in pre-existing aggregates in homogenates from infected brain. Solubility assays revealed that total levels of PrP(Sc) in scrapie-infected mouse neuroblastoma (ScN2a) cells were reduced by mPPI. Coupled with the known ability of polyamino dendrimers to render protease-resistant PrP(Sc) in pre-existing aggregates of PrP(Sc) susceptible to proteolysis, these findings strongly suggest that within infected cells dendrimers reduce total amounts of PrP(Sc) by mediating its denaturation and subsequent elimination."	"Familial neonatal seizures with intellectual disability caused by a microduplication of chromosome 2q24.3. A family with dominantly inherited neonatal seizures and intellectual disability was atypical for neonatal and infantile seizure syndromes associated with potassium (KCNQ2 and KCNQ3) and sodium (SCN2A) channel mutations. Microsatellite markers linked to KCNQ2, KCNQ3, and SCN2A were examined to exclude candidate locations, but instead revealed a duplication detected by observation of three alleles for two markers flanking SCN2A. Characterization revealed a 1.57 Mb duplication at 2q24.3 containing eight genes including SCN2A, SCN3A, and the 3¢ end of SCN1A. The duplication was partially inverted and inserted within or near SCN1A, probably affecting the expression levels of associated genes, including sodium channels. Rare or unique microchromosomal copy number mutations might underlie familial epilepsies that do not fit within the clinical criteria for the established syndromes."	"A novel anti-prion protein monoclonal antibody and its single-chain fragment variable derivative with ability to inhibit abnormal prion protein accumulation in cultured cells. mAbs T1 and T2 were established by immunizing PrP gene ablated mice with recombinant MoPrP of residues 121-231. Both mAbs were cross-reactive with PrP from hamster, sheep, cattle and deer. A linear epitope of mAb T1 was identified at residues 137-143 of MoPrP and buried in PrP(C) expressed on the cell surface. mAb T1 showed no inhibitory effect on accumulation of PrP(Sc) in cultured scrapie-infected neuroblastoma (ScN2a) cells. In contrast, mAb T2 recognized a discontinuous epitope ranged on, or structured by, residues 132-217 and this epitope was exposed on the cell surface PrP(C). mAb T2 showed an excellent inhibitory effect on PrP(Sc) accumulation in vitro at a 50% inhibitory concentration of 0.02 microg/ml (0.14 nM). The scFv form of mAb T2 (scFv T2) was secreted in neuroblastoma (N2a58) cell cultures by transfection through eukaryotic secretion vector. Coculturing of ScN2a cells with scFv T2-producing N2a58 cells induced a clear inhibitory effect on PrP(Sc) accumulation, suggesting that scFv T2 could potentially be an immunotherapeutic tool for prion diseases by inhibition of PrP(Sc) accumulation."	"Molecular correlates of age-dependent seizures in an inherited neonatal-infantile epilepsy. Many idiopathic epilepsy syndromes have a characteristic age dependence, the underlying molecular mechanisms of which are largely unknown. Here we propose a mechanism that can explain that epileptic spells in benign familial neonatal-infantile seizures occur almost exclusively during the first days to months of life. Benign familial neonatal-infantile seizures are caused by mutations in the gene SCN2A encoding the voltage-gated Na(+) channel Na(V)1.2. We identified two novel SCN2A mutations causing benign familial neonatal-infantile seizures and analysed the functional consequences of these mutations in a neonatal and an adult splice variant of the human Na(+) channel Na(V)1.2 expressed heterologously in tsA201 cells together with beta1 and beta2 subunits. We found significant gating changes leading to a gain-of-function, such as an increased persistent Na(+) current, accelerated recovery from fast inactivation or altered voltage-dependence of steady-state activation. Those were restricted to the neonatal splice variant for one mutation, but more pronounced for the adult form for the other, suggesting that a differential developmental splicing does not provide a general explanation for seizure remission. We therefore analysed the developmental expression of Na(V)1.2 and of another voltage-gated Na(+) channel, Na(V)1.6, using immunohistochemistry and real-time reverse transcription-polymerase chain reaction in mouse brain slices. We found that Na(V)1.2 channels are expressed early in development at axon initial segments of principal neurons in the hippocampus and cortex, but their expression is diminished and they are gradually replaced as the dominant channel type by Na(V)1.6 during maturation. This finding provides a plausible explanation for the transient expression of seizures that occur due to a gain-of-function of mutant Na(V)1.2 channels."	"Severe pulmonary emphysema in a girl with interstitial deletion of 2q24.2q24.3 including ITGB6. Owing to the large size of chromosome 2, partial monosomy of the long arm of this chromosome gives rise to many specific phenotypes. We report on a 2-month-old girl with an interstitial deletion of 2q24.2q24.3, which was confirmed by microarray-based comparative genomic hybridization analysis. The patient showed delayed growth and mental retardation, early myoclonic seizures, and characteristic dysmorphic features including thick arched eyebrows, upslanting palpebral fissures, long eyelashes, depressed nasal bridge, short nose, long philtrum, small mouth, micrognathia, and low set ears. Her early myoclonic seizures were likely due to haploinsufficiency of SCN1A and SCN2A, which are included in the deletion region. When she experienced acute bronchopneumonia, she showed severe pulmonary emphysema. The deletion region of 2q24.2 includes the integrin beta6 gene (ITGB6), which may prevent acute lung injury and pulmonary emphysema. Many previously reported patients with deletions of 2q24.2 showed poor outcomes because of respiratory failure. These observations suggest the possibility of a strong relationship between haploinsufficiency of ITGB6 and pulmonary dysfunction."	"Sodium channel gene family: epilepsy mutations, gene interactions and modifier effects. The human sodium channel family includes seven neuronal channels that are essential for the initiation and propagation of action potentials in the CNS and PNS. In view of their critical role in neuronal firing and their strong sequence conservation during evolution, it is not surprising that mutations in the sodium channel genes are responsible for a growing spectrum of channelopathies. Nearly 700 mutations of the SCN1A gene have been identified in patients with Dravet's syndrome (severe myoclonic epilepsy of infancy), making this the most commonly mutated gene in human epilepsy. A small number of mutations have been found in SCN2A, SCN3A and SCN9A, and studies in the mouse suggest that SCN8A may also contribute to seizure disorders. Interactions between genetic variants of SCN2A and KCNQ2 in the mouse and variants of SCN1A and SCN9A in patients provide models of potential genetic modifier effects in the more common human polygenic epilepsies. New methods for generating induced pluripotent stem cells and neurons from patients will facilitate functional analysis of amino acid substitutions in channel proteins. Whole genome sequencing and exome sequencing in patients with epilepsy will soon make it possible to detect multiple variants and their interactions in the genomes of patients with seizure disorders."	"Array-CGH detection of a de novo 2.8 Mb deletion in 2q24.2--&gt;q24.3 in a girl with autistic features and developmental delay. We report a 3 years and 4 months old girl with autistic features, developmental delay, mental retardation, language impairment and dysmorphic features, carrying a 2.8 Mb de novo deletion of chromosome 2q24.2--&gt;q24.3 detected by array-CGH. This region contains two neuronal voltage-gated sodium channel genes SCN2A and SCN3A."	"De novo nonsense mutations in the sodium channel gene, SCN2A, in sporadic intractable epilepsy. NA"	"Two recombinant depressant scorpion neurotoxins differentially affecting mammalian sodium channels. The scorpion depressant toxins are a group of evolutionarily conserved polypeptides targeting sodium channels, which show preferential ability to induce flaccid paralysis in insects, making them attractive candidates for the construction of transgenic plants or viral vectors to control pests. In this study, two new depressant toxin-like peptides (BmKITc and BmKITc2) differing only at position 52 (Lys for Thr) were produced in Escherichia coli. Circular dichroism analysis indicated that these two recombinant peptides display a typical structural feature similar to native scorpion toxins. They both cause a maintained current component at the last phase of inactivation of the insect sodium channel DmNav1/tipE expressed in Xenopus oocytes and interestingly, they do not produce a beta effect despite of their primary structure as beta-toxins. Furthermore, an inhibitory effect with BmKITc but not with BmKITc2 was observed on TTX-R sodium currents in rat DRG neurons. We hypothesize that such differential potency highlights a crucial role of lysine 52 in channel selectivity. Our results therefore indicate that, in spite of the general idea, not all scorpion depressant toxins interact with mammalian and/or insect sodium channels in the same manner."	"Astrocytes within multiple sclerosis lesions upregulate sodium channel Nav1.5. Astrocytes are prominent participants in the response of the central nervous system to injury, including neuroinflammatory insults. Rodent astrocytes in vitro have been shown to express voltage-gated sodium channels in a dynamic manner, with a switch in expression of tetrodotoxin-sensitive to tetrodotoxin-resistant channels in reactive astrocytes. However, the expression of sodium channels in human astrocytes has not been studied, and it is not known whether there are changes in the expression of sodium channels in reactive astrocytes of the human central nervous system. Here, we demonstrate a focal and robust upregulation of sodium channel Nav1.5 in reactive astrocytes at the borders of, and within, active and chronic multiple sclerosis lesions. Nav1.5 was only detectable at very low levels in astrocytes within multiple sclerosis macroscopically normal-appearing white matter or in normal control brain. Nav1.1, Nav1.2, Nav1.3 and Nav1.6 showed little or no expression in astrocytes within normal control tissue and limited upregulation in active multiple sclerosis lesions. Nav1.5 was also expressed at high levels in astrocytes in tissue surrounding new and old cerebrovascular accidents and brain tumours. These results demonstrate the expression of Nav1.5 in human astrocytes and show that Nav1.5 expression is dynamic in these cells. Our observations suggest that the upregulated expression of Nav1.5 in astrocytes may provide a compensatory mechanism, which supports sodium/potassium pump-dependent ionic homoeostasis in areas of central nervous system injury."	"Sodium channel carboxyl-terminal residue regulates fast inactivation. The Na(v)1.2 and Na(v)1.3 voltage-gated sodium channel isoforms demonstrate distinct differences in their kinetics and voltage dependence of fast inactivation when expressed in Xenopus oocytes. Co-expression of the auxiliary beta1 subunit accelerated inactivation of both the Na(v)1.2 and Na(v)1.3 isoforms, but it did not eliminate the differences, demonstrating that this property is inherent in the alpha subunit. By constructing chimeric channels between Na(v)1.2 and Na(v)1.3, we demonstrate that the carboxyl terminus is responsible for the differences. The Na(v)1.2 carboxyl terminus caused faster inactivation in the Na(v)1.3 backbone, and the Na(v)1.3 carboxyl terminus caused slower inactivation in the Na(v)1.2 channel. Through analysis of truncated channels, we identified a homologous 60-amino acid region within the carboxyl terminus of the Na(v)1.2 and the Na(v)1.3 channels that is responsible for this modulation of fast inactivation. Site-directed replacement of Na(v)1.3 lysine 1826 in this region to its Na(v)1.2 analogue glutamic acid 1880 (K1826E) shifted the voltage dependence of inactivation toward that of Na(v)1.2. The K1826E mutation also accelerated the inactivation kinetics to a level comparable with that of Na(v)1.2. The reverse Na(v)1.2 E1880K mutation exhibited much slower inactivation kinetics and depolarized inactivation voltage dependence. A complementary mutation located within the inactivation linker of Na(v)1.3 (K1453E) caused inactivation changes mirroring those caused by the K1826E mutation in Na(v)1.3. Therefore, we have identified a homologous carboxyl-terminal residue that regulates the kinetics and voltage dependence of fast inactivation in sodium channels, possibly via a charge-dependent interaction with the inactivation linker."	"Human positive coactivator 4 controls heterochromatinization and silencing of neural gene expression by interacting with REST/NRSF and CoREST. The highly abundant, multifunctional transcriptional positive coactivator 4 (PC4) plays important roles in transcription, replication and DNA repair. Our recent work showed that PC4 is a bona fide non-histone component of chromatin. Here, we report that knockdown of PC4 dramatically alters heterochromatin organization of the genome, accompanied by increased H3K9 (histone H3 at lysine residue 9)/14 acetylation, H3K4 trimethylation and reduction in the level of H3K9 dimethylation. These posttranslational modifications of histone H3 result in overexpression of normally silenced genes (e.g., neural genes) located in heterochromatin. The results of ChIP (chromatin immunoprecipitation) and re-ChIP assays showed that overexpression of a neuronal-specific gene is accompanied by histone hyperacetylation. We further show that PC4 interacts with heterochromatin protein 1alpha, REST/NRSF (RE1-silencing transcription factor/neuron-restrictive silencer factor) and CoREST to establish the repressed state of neural genes in nonneuronal cells. Thus, PC4 plays a crucial role in maintaining a dynamic chromatin state and heterochromatin gene silencing."	"High-density SNP screen of sodium channel genes by haplotype tagging and DNA pooling for association with idiopathic generalized epilepsy. We have investigated seven voltage-gated sodium channel genes for association with idiopathic generalized epilepsy (IGE). Probands and control DNA were grouped into pools and used to screen 85 single-nucleotide polymorphisms (SNPs), mostly HapMap SNPs tagging the common variation in these genes. Twelve SNPs exhibiting an allele frequency difference between pools were genotyped individually in our sample of 232 probands, 313 controls, and 95 parent-proband trios. Two SNPs, in SCN1A and SCN8A, were associated by allele and genotype at nominal level of significance, but were not significant after Bonferroni correction. Two SCN2A SNPs (rs3943809 and rs16850331) were associated by case-control with a subgroup with IGE and history of febrile seizures and also by transmission disequilibrium test (TDT) in parent-proband trios. Both SNPs are part of a linkage disequilibrium (LD) cluster of 38 SNPs, but none are obvious functional variants. The association of rs3943809 with the febrile seizure subgroup (p = 0.0004) remains significant after the conservative Bonferroni correction for multiple testing."	"Propranolol blocks cardiac and neuronal voltage-gated sodium channels. Propranolol is a widely used, non-selective β-adrenergic receptor antagonist with proven efficacy in treating cardiovascular disorders and in the prevention of migraine headaches. At plasma concentrations exceeding those required for β-adrenergic receptor inhibition, propranolol also exhibits anti-arrhythmic (&quot;membrane stabilizing&quot;) effects that are not fully explained by β-blockade. Previous in vitro studies suggested that propranolol may have local anesthetic effects. We directly tested the effects of propranolol on heterologously expressed recombinant human cardiac (NaV1.5) and brain (NaV1.1, NaV1.2, NaV1.3) sodium channels using whole-cell patch-clamp recording. We found that block was not stereospecific as we observed approximately equal IC50 values for tonic and use-dependent block by R-(+) and S-(-) propranolol (tonic block: R: 21.4 μM vs S: 23.6 μM; use-dependent block: R: 2.7 μM vs S: 2.6 μM). Metoprolol and nadolol did not block NaV1.5 indicating that sodium channel block is not a class effect of β-blockers. The biophysical effects of R-(+)-propranolol on NaV1.5 and NaV1.1 resembled that of the prototypical local anesthetic lidocaine including the requirement for a critical phenylalanine residue (F1760 in NaV1.5) in the domain 4 S6 segment. Finally, we observed that brain sodium channels exhibited less sensitivity to R-(+)-propranolol than NaV1.5 channels. Our findings establish sodium channels as targets for propranolol and may help explain some beneficial effects of the drug in treating cardiac arrhythmias, and may explain certain adverse central nervous system effects."	"Discovery of 2-aminothiazoles as potent antiprion compounds. Prion diseases are fatal, untreatable neurodegenerative diseases caused by the accumulation of the misfolded, infectious isoform of the prion protein (PrP), termed PrP(Sc). In an effort to identify novel inhibitors of prion formation, we utilized a high-throughput enzyme-linked immunosorbent assay (ELISA) to evaluate PrP(Sc) reduction in prion-infected neuroblastoma cell lines (ScN2a). We screened a library of approximately 10,000 diverse small molecules in 96-well format and identified 121 compounds that reduced PrP(Sc) levels at a concentration of 5 microM. Four chemical scaffolds were identified as potential candidates for chemical optimization based on the presence of preliminary structure-activity relationships (SAR) derived from the primary screening data. A follow-up analysis of a group of commercially available 2-aminothiazoles showed this class as generally active in ScN2a cells. Our results establish 2-aminothiazoles as promising candidates for efficacy studies of animals and validate our drug discovery platform as a viable strategy for the identification of novel lead compounds with antiprion properties."	"Glimepiride reduces the expression of PrPc, prevents PrPSc formation and protects against prion mediated neurotoxicity in cell lines. A hallmark of the prion diseases is the conversion of the host-encoded cellular prion protein (PrP(C)) into a disease related, alternatively folded isoform (PrP(Sc)). The accumulation of PrP(Sc) within the brain is associated with synapse loss and ultimately neuronal death. Novel therapeutics are desperately required to treat neurodegenerative diseases including the prion diseases. Treatment with glimepiride, a sulphonylurea approved for the treatment of diabetes mellitus, induced the release of PrP(C) from the surface of prion-infected neuronal cells. The cell surface is a site where PrP(C) molecules may be converted to PrP(Sc) and glimepiride treatment reduced PrP(Sc) formation in three prion infected neuronal cell lines (ScN2a, SMB and ScGT1 cells). Glimepiride also protected cortical and hippocampal neurones against the toxic effects of the prion-derived peptide PrP82-146. Glimepiride treatment significantly reduce both the amount of PrP82-146 that bound to neurones and PrP82-146 induced activation of cytoplasmic phospholipase A(2) (cPLA(2)) and the production of prostaglandin E(2) that is associated with neuronal injury in prion diseases. Our results are consistent with reports that glimepiride activates an endogenous glycosylphosphatidylinositol (GPI)-phospholipase C which reduced PrP(C) expression at the surface of neuronal cells. The effects of glimepiride were reproduced by treatment of cells with phosphatidylinositol-phospholipase C (PI-PLC) and were reversed by co-incubation with p-chloromercuriphenylsulphonate, an inhibitor of endogenous GPI-PLC. Collectively, these results indicate that glimepiride may be a novel treatment to reduce PrP(Sc) formation and neuronal damage in prion diseases."	"Differential expression of exon 5 splice variants of sodium channel alpha subunit mRNAs in the developing mouse brain. Sodium channel alpha subunit genes expressed in the human brain, SCN1A, SCN2A, SCN3A and SCN8A, are subject to alternative splicing of coding exons 5N and 5A. In this study we examined expression of alpha subunit mRNA and exon 5 splicing in the developing mouse brain. Expression levels of Scn1a, Scn2a and Scn8a mRNAs increase postnatally, whereas Scn3a mRNA expression levels decrease. Scn1a mRNA contains only exon 5A, due to the absence of exon 5N in the mouse Scn1a gene. At birth, Scn2a is the only sodium channel alpha subunit mRNA that contains higher or equal amounts of the 5N isoform compared to the 5A isoform in most brain regions. In contrast, the predominant isoform of Scn3a and Scn8a mRNAs in the newborn mouse brain is 5A. 5N/5A ratios for each of the three mRNAs vary across brain regions, with cortex &gt;or= hippocampus&gt;thalamus&gt;cerebellum. In all brain regions and for all three alpha subunits, 5N/5A ratios gradually decrease with age, levelling at a value between 0.1 and 0.2. These findings suggest potential involvement of common factors in the alternative splicing of exon 5 for all three transcripts, and that expression of these factors varies between brain regions and changes during development. Differences in the strength of exon 5N and/or exon 5A splice sites in Scn2a pre-mRNA as compared to Scn1a and Scn8a may underlie the observed differences in 5N/5A ratios in the three alpha subunit mRNAs."	"U-shaped dose-dependent effects of BmK AS, a unique scorpion polypeptide toxin, on voltage-gated sodium channels. Buthus martensi Karsch (BmK) AS is a scorpion polypeptide toxin, said to target the voltage-gated sodium channels (VGSCs). However, the mechanism of action of BmK AS on the VGSCs has yet to be defined. We examined the electrophysiological effects of BmK AS in a wide dose range on the rat brain-type VGSC alpha-subunit, rNav1.2a, heterologously expressed in Xenopus oocytes and on the VGSCs endogenously expressed in the dorsal root ganglion neuroblastoma ND7-23 cell line. In the oocytes, BmK AS depolarized the voltage dependence of activation and inactivation of rNav1.2a at 0.1 and 500 nM whereas these parameters were hyperpolarized at 1 nM. In ND7-23 cells, BmK AS hyperpolarized the voltage dependence of activation and inactivation at 0.1, 1 and 100 nM but not 10 nM. BmK AS also hyperpolarized the voltage dependence of recovery from inactivation at 0.1 and 100 nM and slowed the recovery kinetics at all concentrations, but the effects of 1 and 10 nM were relatively smaller than those at 0.1 and 100 nM. Moreover, the inactivation of VGSCs was potentiated by 10 nM BmK AS in both systems, whereas it was inhibited by 0.1 or 100 nM BmK AS in the oocytes or ND7-23 cells respectively. BmK AS modulated the VGSCs in a unique U-shaped dose-dependent manner, which could be due to the opposing effects of binding to two distinct receptor sites on the VGSCs."	"Advances on the genetics of mendelian idiopathic epilepsies. Genetic factors play an increasingly recognized role in idiopathic epilepsies. Since 1995, positional cloning strategies in multi-generational families with autosomal dominant transmission have revealed 11 genes (KCNQ2, KCNQ3, CHRNA4, CHRNA2, CHRNB2, SCN1B, SCN1A, SCN2A, GABRG2, GABRA1, and LGI1) and numerous loci for febrile seizures and epilepsies. To date, all genes with the exception of LGI1 (leucine-rich glioma inactivated 1), encode neuronal ion channel or neurotransmitter receptor subunits. Molecular approaches have revealed great genetic heterogeneity, with the vast majority of genes remaining to be identified. One of the major challenges is now to understand phenotype-genotype correlations. This review focuses on the current knowledge on the molecular basis of these rare Mendelian autosomal dominant forms of idiopathic epilepsies."	"New insights in the contribution of voltage-gated Na(v) channels to rat aorta contraction. Despite increasing evidence for the presence of voltage-gated Na(+) channels (Na(v)) isoforms and measurements of Na(v) channel currents with the patch-clamp technique in arterial myocytes, no information is available to date as to whether or not Na(v) channels play a functional role in arteries. The aim of the present work was to look for a physiological role of Na(v) channels in the control of rat aortic contraction. Na(v) channels were detected in the aortic media by Western blot analysis and double immunofluorescence labeling for Na(v) channels and smooth muscle alpha-actin using specific antibodies. In parallel, using real time RT-PCR, we identified three Na(v) transcripts: Na(v)1.2, Na(v)1.3, and Na(v)1.5. Only the Na(v)1.2 isoform was found in the intact media and in freshly isolated myocytes excluding contamination by other cell types. Using the specific Na(v) channel agonist veratridine and antagonist tetrodotoxin (TTX), we unmasked a contribution of these channels in the response to the depolarizing agent KCl on rat aortic isometric tension recorded from endothelium-denuded aortic rings. Experimental conditions excluded a contribution of Na(v) channels from the perivascular sympathetic nerve terminals. Addition of low concentrations of KCl (2-10 mM), which induced moderate membrane depolarization (e.g., from -55.9+/-1.4 mV to -45.9+/-1.2 mV at 10 mmol/L as measured with microelectrodes), triggered a contraction potentiated by veratridine (100 microM) and blocked by TTX (1 microM). KB-R7943, an inhibitor of the reverse mode of the Na(+)/Ca(2+) exchanger, mimicked the effect of TTX and had no additive effect in presence of TTX. These results define a new role for Na(v) channels in arterial physiology, and suggest that the TTX-sensitive Na(v)1.2 isoform, together with the Na(+)/Ca(2+) exchanger, contributes to the contractile response of aortic myocytes at physiological range of membrane depolarization."	"De novo mutations of voltage-gated sodium channel alphaII gene SCN2A in intractable epilepsies. Mutations of voltage-gated sodium channel alpha(II) gene, SCN2A, have been described in a wide spectrum of epilepsies. While inherited SCN2A mutations have been identified in multiple mild epilepsy cases, a de novo SCN2A-R102X mutation, which we previously reported in a patient with sporadic intractable childhood localization-related epilepsy, remains unique. To validate the involvement of de novo SCN2A mutations in the etiology of intractable epilepsies, we sought to identify additional instances. We performed mutational analyses on SCN2A in 116 patients with severe myoclonic epilepsy in infancy, infantile spasms, and other types of intractable childhood partial and generalized epilepsies and did whole-cell patch-clamp recordings on Na(v)1.2 channels containing identified mutations. We discovered 2 additional de novo SCN2A mutations. One mutation, SCN2A-E1211K, was identified in a patient with sporadic infantile spasms. SCN2A-E1211K produced channels with altered electrophysiologic properties compatible with both augmented (an approximately 18-mV hyperpolarizing shift in the voltage dependence of activation) and reduced (an approximately 22-mV hyperpolarizing shift in the voltage dependence of steady-state inactivation and a slowed recovery from inactivation) channel activities. The other de novo mutation, SCN2A-I1473M, was identified in a patient with sporadic neonatal epileptic encephalopathy. SCN2A-I1473M caused an approximately 14-mV hyperpolarizing shift in the voltage dependence of activation. The identified de novo mutations SCN2A-E1211K, -I1473M, and -R102X indicate that SCN2A is an etiologic candidate underlying a variety of intractable childhood epilepsies. The phenotypic variations among patients might be due to the different electrophysiologic properties of mutant channels."	"Missense mutation of the sodium channel gene SCN2A causes Dravet syndrome. Mutations of the gene encoding the alpha2 subunit of the neuronal sodium channel, SCN2A, have been found in benign familial neonatal-infantile seizures (BFNIS). In Dravet syndrome, only one nonsense mutation of SCN2A was identified, while hundreds of mutations were found in the paralogue gene, SCN1A, which encodes the alpha1 subunit. This study examines whether SCN2A mutations are associated with Dravet syndrome. We screened for mutations of SCN1A, SCN2A and GABRG2 (the gene encoding gamma2 subunit of the GABA(A) receptor) in 59 patients with Dravet syndrome and found 29 SCN1A mutations and three missense SCN2A mutations. Among the three, one de novo SCN2A mutation (c.3935G&gt;C: R1312T) identified in a patient was thought to affect an arginine residue in a voltage sensor of the channel and hence, to be pathogenic. This finding suggests that both nonsense mutations and missense SCN2A mutations cause Dravet syndrome."	"Heat opens axon initial segment sodium channels: a febrile seizure mechanism? A number of hypotheses have been put forward as to why humans respond to fever by seizing. The current leading hypotheses are that respiratory alkalosis produces an as yet unidentified change in neural excitability or that inflammatory mediators potentiate excitatory synaptic transmission. However, it is well known that ion channel gating rates increase with increased temperature. Furthermore, skeletal and cardiac sodium channel activation can be temperature sensitive in some situations. We measured the temperature sensitivity of the brain sodium channel, Na(V)1.2, to determine whether febrile temperatures might produce a direct increase in neuronal excitability. The effect of temperature on Na(V)1.2 electrophysiological properties was measured in a transfected mammalian cell line. The subcellular location of Na(V)1.2 in the mouse brain was ascertained using antibodies against Na(V)1.2 and ankyrin-G. Computer simulation of a hippocampal granule cell model was used to predict the effect of temperature on action potential firing. As well as the expected increase in gating rates, the voltage dependence of activation became 7.6 mV more negative when the temperature was increased from 37 degrees C to 41 degrees C. Na(V)1.2 was localized to the axon initial segment in hippocampal and cortical neurons. Computer simulation showed that increased gating rates and the more negative activation dramatically increase neuronal excitability. The direct effect of heat on ion channels localized to the site of action potential initiation potentially causes a profound increase in neuronal excitability. This is likely to contribute to febrile seizure genesis."	"Liability of the voltage-gated sodium channel gene SCN2A R19K polymorphism to oxaliplatin-induced peripheral neuropathy. It was the aim of this study to test the hypothesis that the voltage-gated sodium channel gene SCN2A R19K polymorphism confers liability to oxaliplatin-induced peripheral neuropathy (OXLIPN). Sixty-two patients with advanced colorectal cancer were genotyped, using allele-specific primers and SYBR green in real-time polymerase chain reaction. All patients had received adjuvant oxalipla-tin-based chemotherapy. The severity of OXLIPN was defined by means of the clinical total neuropathy score. Following the discontinuation of treatment, 36/62 patients (58.1%) developed OXLIPN. Grade I neurotoxicity was revealed in 14 (38.9%) patients and grade II neurotoxicity in 22 (61.1%) patients. From patients without OXLIPN (n = 26), 80.8% (n = 21) were homozygous for G, 19.2% (n = 5) were heterozygous (AG) and none was homozygous for A. The corresponding percentages for patients developing any grade of OXLIPN (n = 36) were similar. Likewise, among patients experiencing OXLIPN, insignificant differences in R19K genotypes were revealed between those with grade I versus grade II neurotoxicity. Our study failed to provide evidence to support a causal relationship between the SCN2A R19K polymorphism and OXLIPN."	"Differential role of sodium channels SCN1A and SCN2A gene polymorphisms with epilepsy and multiple drug resistance in the north Indian population. To evaluate sodium channel genes as candidates for epilepsy susceptibility and their role in therapeutic efficacy, we screened coding single-nucleotide polymorphism of SCN1A p. Thr 1067 Ala or c.3184 A--&gt;G (rs2298771) and SCN2A p.Arg19Lys or c.56 G--&gt;A (rs17183814) in north Indian epilepsy patients. The genotyping was performed in 160 control subjects and 336 patients with epilepsy, of whom 117 were drug resistant and 219 were drug responsive. Therapeutic drug monitoring for phenytoin, carbamazepine, phenobarbital and valproate was also performed in 20% of the patients to confirm compliance. AG genotype of SCN1A 3184 A--&gt;G polymorphism was significantly higher and associated in epilepsy patients [P= 0.005; odds ratio (OR) 1.76, 95% confidence interval (CI) 1.19, 2.61], whereas A variant of SCN2A c.56 G--&gt;A was associated with multiple drug resistance in north Indian patients with epilepsy (P= 0.03; OR 1.62, 95% CI 1.03, 2.56). Overall, results indicate a differential role of genetic polymorphisms of sodium channels SCN1A and SCN2A in epilepsy susceptibility and drug response."	"Calpain mediates proteolysis of the voltage-gated sodium channel alpha-subunit. Alterations in the expression, molecular composition, and localization of voltage-gated sodium channels play major roles in a broad range of neurological disorders. Recent evidence identifies sodium channel proteolysis as a key early event after ischemia and traumatic brain injury, further expanding the role of the sodium channel in neurological diseases. In this study, we investigate the protease responsible for proteolytic cleavage of voltage-gated sodium channels (NaChs). NaCh proteolysis occurs after protease activation in rat brain homogenates, pharmacological disruption of ionic homeostasis in cortical cultures, and mechanical injury using an in vitro model of traumatic brain injury. Proteolysis requires Ca(2+) and calpain activation but is not influenced by caspase-3 or cathepsin inhibition. Proteolysis results in loss of the full-length alpha-subunits, and the creation of fragments comprising all domains of the channel that retain interaction even after proteolysis. Cell surface biotinylation after mechanical injury indicates that proteolyzed NaChs remain in the membrane before noticeable evidence of neuronal death, providing a mechanism for altered action potential initiation, propagation, and downstream signaling events after Ca(2+) elevation."	"Who let the spikes out? NA"	"Distinct contributions of Na(v)1.6 and Na(v)1.2 in action potential initiation and backpropagation. The distal end of the axon initial segment (AIS) is the preferred site for action potential initiation in cortical pyramidal neurons because of its high Na(+) channel density. However, it is not clear why action potentials are not initiated at the proximal AIS, which has a similarly high Na(+) channel density. We found that low-threshold Na(v)1.6 and high-threshold Na(v)1.2 channels preferentially accumulate at the distal and proximal AIS, respectively, and have distinct functions in action potential initiation and backpropagation. Patch-clamp recording from the axon cut end of pyramidal neurons in the rat prefrontal cortex revealed a high density of Na(+) current and a progressive reduction in the half-activation voltage (up to 14 mV) with increasing distance from the soma at the AIS. Further modeling studies and simultaneous somatic and axonal recordings showed that distal Na(v)1.6 promotes action potential initiation, whereas proximal Na(v)1.2 promotes its backpropagation to the soma."	"Genetic variants in microsomal epoxide hydrolase influence carbamazepine dosing. The dose of carbamazepine required to achieve optimal seizure control varies widely from patient to patient. We investigated polymorphic variants in various genes involved in the pharmacokinetics and pharmacodynamics of carbamazepine in an effort to identify predictors of maintenance dose. : A total of 70 patients with epilepsy (49% were males; median age, 34 years; range, 14-72 years) who had benefited (&gt;50% reduction in seizure frequency for at least 12 months) from treatment with carbamazepine monotherapy were included in the analysis. Known variants in drug-metabolizing enzyme genes, including those encoding cytochrome P450s, uridine 5'-diphosphate-glycosyltransferase, and microsomal epoxide hydrolase, together with a sodium channel polymorphism in SCN2A, were screened using polymerase chain reaction-restriction fragment length polymorphism or direct sequencing. Associations between demographic and genetic variables and carbamazepine dose were identified by univariate and multivariate regression analyses. All genotype frequencies were consistent with Hardy-Weinberg equilibrium (P &gt; 0.05). No single demographic or genetic variable was of sufficient strength to independently influence carbamazepine dosing requirements. However, a multivariate model, incorporating patient age and specific genotypes (c.337T&gt;C, c.416A&gt;G) of the EPHX1 gene encoding microsomal epoxide hydrolase, revealed a significant association with the maintenance dose of carbamazepine (r(2) = 0.362, P= 0.002). This proof-of-principle study suggests that genetic variants in EPHX1 can be used to predict maintenance doses of carbamazepine. A large-scale prospective investigation of genetic influences on drug dosing strategies in epilepsy, with specific focus on whole gene variability for those proteins involved in the pharmacokinetics and pharmacodynamics of antiepileptic agents, is warranted."	"Fine mapping of an epilepsy modifier gene on mouse Chromosome 19. Mutations in voltage-gated sodium channels are associated with several types of human epilepsy. Variable expressivity and penetrance are common features of inherited epilepsy caused by sodium channel mutations, suggesting that genetic modifiers may influence clinical severity. The mouse model Scn2a(Q54) has an epilepsy phenotype due to a mutation in Scn2a that results in elevated persistent sodium current. Phenotype severity in Scn2a(Q54) mice is dependent on the genetic background. Congenic C57BL/6J.Q54 mice have delayed onset and low seizure frequency compared to (C57BL/6J x SJL/J)F1.Q54 mice. Previously, we identified two modifier loci that influence the Scn2a(Q54) epilepsy phenotype: Moe1 (modifier of epilepsy 1) on Chromosome 11 and Moe2 on Chromosome 19. We have constructed interval-specific congenic strains to further refine the position of Moe2 on Chromosome 19 to a 5-Mb region. Sequencing and expression analyses of genes in the critical interval suggested two potential modifier candidates: (1) voltage-gated potassium channel subunit subfamily V, member 2 (Kcnv2), and (2) SWI/SNF-related, matrix-associated, actin-dependent regulator of chromatin, subfamily a, member 2 (Smarca2). Based on its biological role in regulating membrane excitability and the association between ion channel variants and seizures, Kcnv2 is a strong functional candidate for Moe2. Modifier genes affecting the epilepsy phenotype of Scn2a(Q54) mice may contribute to variable expressivity and penetrance in human epilepsy patients with sodium channel mutations."	"FGF14 N-terminal splice variants differentially modulate Nav1.2 and Nav1.6-encoded sodium channels. The Intracellular Fibroblast Growth Factor (iFGF) subfamily includes four members (FGFs 11-14) of the structurally related FGF superfamily. Previous studies showed that the iFGFs interact directly with the pore-forming (alpha) subunits of voltage-gated sodium (Nav) channels and regulate the functional properties of sodium channel currents. Sequence heterogeneity among the iFGFs is thought to confer specificity to this regulation. Here, we demonstrate that the two N-terminal alternatively spliced FGF14 variants, FGF14-1a and FGF14-1b, differentially regulate currents produced by Nav1.2 and Nav1.6 channels. FGF14-1b, but not FGF14-1a, attenuates both Nav1.2 and Nav1.6 current densities. In contrast, co-expression of an FGF14 mutant, lacking the N-terminus, increased Nav1.6 current densities. In neurons, both FGF14-1a and FGF14-1b localized at the axonal initial segment, and deletion of the N-terminus abolished this localization. Thus, the FGF14 N-terminus is required for targeting and functional regulation of Nav channels, suggesting an important function for FGF14 alternative splicing in regulating neuronal excitability."	"Single channel study of deltamethrin interactions with wild-type and mutated rat Na(V)1.2 sodium channels expressed in Xenopus oocytes. Single channel analysis was used to compare the electrophysiological properties of wild-type (WT) and I874M mutant (M874) rat Na(V)1.2 channels expressed in Xenopus oocytes and their modulation by the pyrethroid deltamethrin. In the absence of pyrethroid, histograms of channel open times were best-fit by single exponentials. The open time constants at -40 mV for WT (0.53+/-0.05 ms) and M874 (0.65+/-0.08 ms) channels were significantly different and both decreased with depolarisation. At &gt; or =100 nM deltamethrin, WT open time histograms at -40 mV were best-fit by two exponentials (time constants, 0.49+/-0.03 ms (tau(o,fast,WT)) and 5.2+/-0.5 ms (tau(o,slow,WT)). The population of long-duration openings and tau(o,slow,WT) increased when the concentration of deltamethrin was raised, but tau(o,fast,WT) was unaffected. Qualitatively similar results were obtained for the M874 channel, but with &gt; or =10 nM deltamethrin. Deltamethrin also caused a negative shift in the relationships between channel opening probability (P(op)) and membrane potential and first latency and membrane potential, suggesting that the pyrethroid binds to the closed channel. Selectivity for Na was increased by the pyrethroid (10 microM, WT; 1 microM, mutant)."	"Topical antiseptics for the treatment of sore throat block voltage-gated neuronal sodium channels in a local anaesthetic-like manner. Lozenges for the treatment of sore throat provide relief of discomfort in cases of oral inflammation. This effect has not been fully explained so far. Here, we have examined the proposition that key components of pharmaceutical preparations for the treatment of sore throat which are routinely regarded antiseptics might have sodium channel-blocking, i.e. local anaesthetic-like effects. We investigated the effects of hexylresorcinol, amylmetacresol and dichloro-benzylalcohol on voltage-operated neuronal (Na(V)1.2) sodium channels heterologously expressed in HEK 293 cells in vitro. Hexylresorcinol, amylmetacresol and dichloro-benzylalcohol reversibly blocked depolarisation-induced whole-cell sodium inward currents. The half-maximum blocking concentrations (EC(50)) at -150 mV were 23.1, 53.6 and 661.6 microM, respectively. Block induced by hexylresorcinol and amylmetacresol was increased at depolarised potentials and use-dependent during trains of depolarisations applied at high frequency (100 Hz) indicating that both drugs bind more tightly to inactivated conformations of the channel. Estimates for the inactivated state affinity were 1.88 and 35 microM for hexylresorcinol and amylmetacresol, respectively. Hexylresorcinol and amylmetacresol are 10-20 fold more potent than the local anaesthetic lidocaine in blocking sodium inward current. Both drugs show an increased effect at depolarised membrane potentials or in conditions of high-frequency discharges."	"Voltage-gated sodium channels in taste bud cells. Taste bud cells transmit information regarding the contents of food from taste receptors embedded in apical microvilli to gustatory nerve fibers innervating basolateral membranes. In particular, taste cells depolarize, activate voltage-gated sodium channels, and fire action potentials in response to tastants. Initial cell depolarization is attributable to sodium influx through TRPM5 in sweet, bitter, and umami cells and an undetermined cation influx through an ion channel in sour cells expressing PKD2L1, a candidate sour taste receptor. The molecular identity of the voltage-gated sodium channels that sense depolarizing signals and subsequently initiate action potentials coding taste information to gustatory nerve fibers is unknown. We describe the molecular and histological expression profiles of cation channels involved in electrical signal transmission from apical to basolateral membrane domains. TRPM5 was positioned immediately beneath tight junctions to receive calcium signals originating from sweet, bitter, and umami receptor activation, while PKD2L1 was positioned at the taste pore. Using mouse taste bud and lingual epithelial cells collected by laser capture microdissection, SCN2A, SCN3A, and SCN9A voltage-gated sodium channel transcripts were expressed in taste tissue. SCN2A, SCN3A, and SCN9A were expressed beneath tight junctions in subsets of taste cells. SCN3A and SCN9A were expressed in TRPM5 cells, while SCN2A was expressed in TRPM5 and PKD2L1 cells. HCN4, a gene previously implicated in sour taste, was expressed in PKD2L1 cells and localized to cell processes beneath the taste pore. SCN2A, SCN3A and SCN9A voltage-gated sodium channels are positioned to sense initial depolarizing signals stemming from taste receptor activation and initiate taste cell action potentials. SCN2A, SCN3A and SCN9A gene products likely account for the tetrodotoxin-sensitive sodium currents in taste receptor cells."	"Gene-to-gene interaction between sodium channel-related genes in determining the risk of antiepileptic drug resistance. The pathogenesis of antiepileptic drug (AED) resistance is multifactorial. However, most candidate gene association studies typically assess the effects of candidate genes independently of each other, which is partly because of the limitations of the parametric-statistical methods for detecting the gene-to-gene interactions. A total of 200 patients with drug-resistant epilepsy and 200 patients with drug-responsive epilepsy were genotyped for 3 representative the single nucleotide polymorphisms (SNPs) of the voltage-gated sodium channel genes (SCN1A, SCN1B, and SCN2A) by polymerase chain reaction and direct sequencing analysis. Besides the typical parametric statistical method, a new statistical method (multifactor dimensionality reduction [MDR]) was used to determine whether gene-to-gene interactions increase the risk of AED resistance. None of the individual genotypes or alleles tested in the present study showed a significant association with AED resistance, regardless of their theoretical functional value. With the MDR method, of three possible 2-locus genotype combinations, the combination of SCN2A-PM with SCN1B-PM was the best model for predicting susceptibility to AED resistance, with a p value of 0.0547. MDR, as an analysis paradigm for investigating multi-locus effects in complex disorders, may be a useful statistical method for determining the role of gene-to-gene interactions in the pathogenesis of AED resistance."	"Synergistic and antagonistic interactions between tetrodotoxin and mu-conotoxin in blocking voltage-gated sodium channels. Tetrodotoxin (TTX) is the quintessential ligand of voltage-gated sodium channels (NaVs). Like TTX, mu-conotoxin peptides are pore blockers, and both toxins have helped to define the properties of neurotoxin receptor Site 1 of NaVs. Here, we report unexpected results showing that the recently discovered mu-conotoxin KIIIA and TTX can simultaneously bind to Site 1 and act in concert. Results with saturating concentrations of peptide applied to voltage-clamped Xenopus oocytes expressing brain NaV1.2, and single-channel recordings from brain channels in lipid bilayers, show that KIIIA or its analog, KIIIA[K7A], block partially, with a residual current that can be completely blocked by TTX. In addition, the kinetics of block by TTX and peptide are each affected by the prior presence of the other toxin. For example, bound peptide slows subsequent binding of TTX (an antagonistic interaction) and slows TTX dissociation when both toxins are bound (a synergistic effect on block). The overall functional consequence resulting from the combined action of the toxins depends on the quantitative balance between these opposing actions. The results lead us to postulate that in the bi-liganded NaV complex, TTX is bound between the peptide and the selectivity filter. These observations refine our view of Site 1 and open new possibilities in NaV pharmacology."	"Progress in searching for the febrile seizure susceptibility genes. Febrile seizures (FS) represent the most common form of childhood seizures. They affect 2-5% of infants in the Caucasian population and are even more common in the Japanese population, affecting 6-9% of infants. Some familial FS are associated with a wide variety of afebrile seizures. Generalized epilepsy with febrile seizures plus (GEFS+) is a familial epilepsy syndrome with a spectrum of phenotypes including FS, atypical FS (FS+) and afebrile seizures. A significant genetic component exists for susceptibility to FS and GEFS+: extensive genetic studies have shown that at least nine loci are responsible for FS. Furthermore, mutations in the voltage-gated sodium channel subunit genes (SCN1A, SCN2A and SCN1B) and the GABA(A) receptor subunit genes (GABRG2 and GABRD) have been identified in GEFS+. However, the causative genes have not been identified in most patients with FS or GEFS+. Common forms of FS are genetically complex disorders believed to be influenced by variations in several susceptibility genes. Recently, several association studies on FS have been reported, but the results vary among different groups and no consistent or convincing FS susceptibility gene has emerged. Herein, we review the genetic data reported in FS, including the linkage analysis, association studies, and genetic abnormalities found in the FS-related disorders such as GEFS+ and severe myoclonic epilepsy in infancy."	"Inhibition of prion amplification by expression of dominant inhibitory mutants--a systematic insertion mutagenesis study. Until now it is still not clear which structural elements of the prion protein (PrP) are involved in its conversion process. Characterisation of these essential regions would help to understand the conversion process itself and might help to develop specific therapeutic approaches to inhibit PrP(res) formation by dominant inhibitory mutations. To address this important question 33 evenly spaced insertion mutants were generated spanning the entire sequence of the murine 3F4-tagged PrP. The mutants were expressed by retroviral transduction in three different scrapie infected cell lines (ScN2a; SMB[RC040]; SMB[22F]). The convertibility was affected not only by introducing the insertion in the putatively refolded region (aa100-170), but also in the C-terminus of PrP (up to aa214). Moreover, dominant inhibitory effects on conversion were observed for PrP-mutants at four distinguished regions (aa100-112; aa130-154; aa166-172, aa196-200). Computer based structural analysis revealed that these segments were organized in two structurally clearly separated regions supporting the idea that they could function as protein-protein interaction sites which are necessary during seed formation."	"[Linkage location and mutation analysis of generalized epilepsy with febrile seizures plus]. To study the etiologic genes of generalized epilepsy with febrile seizure plus (GEFS+). Peripheral blood samples were collected from 25 persons of 2 families, including 2 probands. DNA was extracted from the peripheral blood leukocytes using phenol-chloroform method. Ten microsatellite markers spanning the critical regions of SCN1B, SCN1A, SCN2A, and GABRG2 genes were genotyped for linkage analysis by the software LINKAGE v5.1. The two-point linkage relation was determined by LOD score defining the approximate position of etiologic genes of the 2 GEFS+ families. Mutation analysis of the candidate etiologic genes in all members of these 2 families was performed. Results No sharing allele was discovered among the several microsatellite markers flanking SCN1A, SCN2A, and SCN1B genes, and the involvement of these genes in these 2 families could be excluded. In the family named Tian, sharing alleles were discovered among the markers D5S820, D5S422, and D5S1403 flanking GABRG2 gene. The two-point LOD scores at theta = 0 were 0.67, 1.0, and 0.79 for the marker D5S820, D5S422, and D5S1403, thus indicating possible linkage. In the family named Di, sharing allele was discovered only in the marker D5S1403 flanking the GABRG2 gene. Sequence analysis was performed for nine exons of the GABRG2 gene in these 2 families. Three single nucleotide variations were discovered on the exon 5 (c.588 C &gt; T), exon 3 (c.604 C &gt; T), and noncoding region of the exon 7. No mutation change of the GABRG2 gene was observed in these 2 families. No evidence supports the causal relation between the SCN1B, SCN1A, SCN2A, and GABRG2 mutation and the etiologic genes in the two families with GEFS+. It is still not clear what is the common etiologic genes of GEFS+."	"The alpha-like scorpion toxin BmK I enhances membrane excitability via persistent sodium current by preventing slow inactivation and deactivation of rNav1.2a expressed in Xenopus Oocytes. BmK I is classified as alpha-like scorpion toxin that specifically binds the voltage-gated sodium channels via receptor site-3. Previous results showed BmK I induced epileptiform responses in rats via intra-hippocampal injection, but the mechanism has yet to be clarified. In this study, using two-electrode voltage/current clamp technique, we determined the effects of BmK I on rNav1.2a expressed in Xenopus oocytes. The results showed that BmK I prevented the development of slow inactivation of rNav1.2a from the open-state and enhanced the persistent sodium current (I(NaP)) at suprathreshold potentials in concentration-dependence, whereas it hardly affected the fast inactivation. BmK I was also able to augment the subthreshold I(NaP) at high concentrations (&gt;100nM) with disruption of the open-state deactivation. The increased I(NaP) accelerated the firing frequency in the oocytes that fired repetitively after electrode punctures, as well as raised the baseline potential and induced bursting of spikes in the quiescent oocytes. These results demonstrated that BmK I could target rNav1.2a and induce the I(NaP) by preventing the development of slow inactivation and deactivation from the open-state, leading to the enhancement of membrane excitability, which may be involved in the BmK I-induced epilepsy."	"Solution structure of the NaV1.2 C-terminal EF-hand domain. Voltage-gated sodium channels initiate the rapid upstroke of action potentials in many excitable tissues. Mutations within intracellular C-terminal sequences of specific channels underlie a diverse set of channelopathies, including cardiac arrhythmias and epilepsy syndromes. The three-dimensional structure of the C-terminal residues 1777-1882 of the human NaV1.2 voltage-gated sodium channel has been determined in solution by NMR spectroscopy at pH 7.4 and 290.5 K. The ordered structure extends from residues Leu-1790 to Glu-1868 and is composed of four alpha-helices separated by two short anti-parallel beta-strands; a less well defined helical region extends from residue Ser-1869 to Arg-1882, and a disordered N-terminal region encompasses residues 1777-1789. Although the structure has the overall architecture of a paired EF-hand domain, the NaV1.2 C-terminal domain does not bind Ca2+ through the canonical EF-hand loops, as evidenced by monitoring 1H,15N chemical shifts during aCa2+ titration. Backbone chemical shift resonance assignments and Ca2+ titration also were performed for the NaV1.5 (1773-1878) isoform, demonstrating similar secondary structure architecture and the absence of Ca2+ binding by the EF-hand loops. Clinically significant mutations identified in the C-terminal region of NaV1 sodium channels cluster in the helix I-IV interface and the helix II-III interhelical segment or in helices III and IV of the NaV1.2 (1777-1882) structure."	"Non-proteolytic effect of beta-site APP-cleaving enzyme 1 (BACE1) on sodium channel function. The beta-site APP-cleaving enzyme 1 (BACE1) is widely known for its pivotal role in the amyloidogenic pathway leading to Alzheimer's disease. Here, we elaborate on the recent finding that auxiliary subunits of voltage-gated sodium channels (beta2 and beta4) are BACE substrates. BACE1 produced complex effects on sodium channel gating that could be only partially explained by beta2/beta4 cleavage. To characterize the unexpected non-proteolytic effect of BACE1, we examined HEK cells co-transfected with only Nav1.2 and either normal or catalytically inactive BACE1. Both BACE1 variants produced virtually identical effects on sodium channel gating, which would lead to enhanced cellular excitability. The non-proteolytic BACE1 effect on Nav1.2 current was confirmed in murine neuroblastoma cells, which express sodium channels endogenously, but lack beta2 and beta4. Our study reveals an important facet of BACE1 function that should help to decipher the role of BACE1 in normal and demented brain."	"Complementarity determining regions of an anti-prion protein scFv fragment orchestrate conformation specificity and antiprion activity. The prion protein, PrP, exists in several stable conformations, with the presence of one conformation, PrP(Sc), associated with transmissible neurodegenerative diseases. Targeting PrP by high-affinity ligands has been proven to be an effective way of preventing peripheral prion infections. Here, we have generated bacterially expressed single chain fragments of the variable domains (scFv) of a monoclonal antibody in Escherichia coli, originally raised against purified PrP(Sc) that recognizes both PrP(C) and PrP(Sc). This scFv fragment had a dissociation constant (K(D)) with recombinant PrP of 2 nM and cleared prions in ScN2a cells at 4 nM, as demonstrated by a mouse prion bioassay. A peptide corresponding to the complementarity determining region 3 of the heavy chain (CDR3H) selectively bound PrP(Sc) but had lost antiprion activity. However, synthesis and application of an improved peptide mimicking side chain topology of CDR3H while exhibiting increased protease resistance, a retro-inverso d-peptide of CDR3H, still bound PrP(Sc) and reinstated antiprion activity. We conclude that (1) scFvW226 is so far the smallest polypeptide with bioassay confirmed antiprion activity, and (2) differential conformation specificity and bioactivity can be regulated by orchestrating the participation of different CDRs."	"Immunolocalisation of PrPSc in scrapie-infected N2a mouse neuroblastoma cells by light and electron microscopy. The causative agent of transmissible spongiform encephalopathies (TSE) is PrPSc, an infectious, misfolded isoform of the cellular prion protein (PrPC). The localisation and trafficking of PrPSc and sites of conversion from PrPC to PrPSc are under debate, particularly since most published work did not discriminate between PrPC and PrPSc. Here we describe the localisation of PrPC and PrPSc in a scrapie-infected neuroblastoma cell line, ScN2a, by light and electron microscopic immunolocalisation. After eliminating PrPC with proteinase K, PrPSc was detected at the plasma membrane, endocytosed via clathrin-coated pits and delivered to early endosomes. Finally, PrPSc was detected in late endosomes/lysosomes. As we detected PrPSc at the cell surface, in early endosomes and in late endosomes/lysosomes, i.e. locations where PrPC is also present, our data imply that the conversion process could take place at the plasma membrane and/or along the endocytic pathway. Finally, we observed the release of PrPC/PrPSc via exocytotic pathways, i.e. via exosomes and as an opaque electron-dense mass which may represent a mechanism of intercellular spreading of infectious prions."	"Identifying key components of the PrPC-PrPSc replicative interface. In prion disease, direct interaction between the cellular prion protein (PrP(C)) and its misfolded disease-associated conformer PrP(Sc) is a crucial, although poorly understood step promoting the formation of nascent PrP(Sc) and prion infectivity. Recently, we hypothesized that three regions of PrP (corresponding to amino acid residues 23-33, 98-110, and 136-158) interacting specifically and robustly with PrP(Sc), likely represent peptidic components of one flank of the prion replicative interface. In this study, we created epitope-tagged mouse PrP(C) molecules in which the PrP sequences 23-33, 98-110, and 136-158 were modified. These novel PrP molecules were individually expressed in the prion-infected neuroblastoma cell line (ScN2a) and the conversion of each mutated mouse PrP(C) substrate to PrP(Sc) compared with that of the epitope-tagged wild-type mouse PrP(C). Mutations within PrP 98-110, substituting all 4 wild-type lysine residues with alanine residues, prevented conversion to PrP(Sc). Furthermore, when residues within PrP 136-140 were collectively scrambled, changed to alanines, or amino acids at positions 136, 137, and 139 individually replaced by alanine, conversion to PrP(Sc) was similarly halted. However, other PrP molecules containing mutations within regions 23-33 and 101-104 were able to readily convert to PrP(Sc). These results suggest that PrP sequence comprising residues 98-110 and 136-140 not only participates in the specific binding interaction between PrP(C) and PrP(Sc), but also in the process leading to conversion of PrP(Sc)-sequestered PrP(C) into its disease-associated form."	"2,4(5)-Diarylimidazoles: synthesis and biological evaluation of a new class of sodium channel blockers against hNa(v)1.2. A small family of novel 2,4(5)-diarylimidazoles were prepared through a simple and efficient synthesis and evaluated as potential inhibitors of hNa(v)1.2 sodium channel currents. One member of this series (4) exhibited profound inhibition of Na(v)1.2 currents, emerging as a promising lead compound for further structure-activity relationship studies for the development of novel sodium channel blockers."	"Docosahexaenoic and eicosapentaenoic acids increase prion formation in neuronal cells. The transmissible spongiform encephalopathies, otherwise known as prion diseases, occur following the conversion of the cellular prion protein (PrPC) to an alternatively folded, disease-associated isoform (PrPSc). Recent studies suggest that this conversion occurs via a cholesterol-sensitive process, as cholesterol synthesis inhibitors reduced the formation of PrPSc and delayed the clinical phase of scrapie infection. Since polyunsaturated fatty acids also reduced cellular cholesterol levels we tested their effects on PrPSc formation in three prion-infected neuronal cell lines (ScGT1, ScN2a and SMB cells). We report that treatment with docosahexaenoic acid (DHA), eicosapentaenoic acid (EPA) or the cholesterol synthesis inhibitor simvastatin reduced the amounts of free cholesterol in membrane extracts from prion-infected neuronal cells. Simvastatin reduced cholesterol production while DHA and EPA promoted the conversion of free cholesterol to cholesterol esters. Crucially, while simvastatin reduced PrPSc formation, both DHA and EPA significantly increased the amounts of PrPSc in these cells. Unlike simvastatin, the effects of DHA and EPA on PrPSc content were not reversed by stimulation of cholesterol synthesis with mevalonate. Treatment of ScGT1 cells with DHA and EPA also increased activation of cytoplasmic phospholipase A2 and prostaglandin E2 production. Finally, treatment of neuronal cells with DHA and EPA increased the amounts of PrPC expressed at the cell surface and significantly increased the half-life of biotinylated PrPC. We report that although treatment with DHA or EPA significantly reduced the free cholesterol content of prion-infected cells they significantly increased PrPSc formation in three neuronal cell lines. DHA or EPA treatment of infected cells increased activation of phospholipase A2, a key enzyme in PrPSc formation, and altered the trafficking of PrPC. PrPC expression at the cell surface, a putative site for the PrPSc formation, was significantly increased, and the rate at which PrPC was degraded was reduced. Cholesterol depletion is seen as a potential therapeutic strategy for prion diseases. However, these results indicate that a greater understanding of the precise relationship between membrane cholesterol distribution, PrPC trafficking, cell activation and PrPSc formation is required before cholesterol manipulation can be considered as a prion therapeutic."	"Multidrug resistance in epilepsy and polymorphisms in the voltage-gated sodium channel genes SCN1A, SCN2A, and SCN3A: correlation among phenotype, genotype, and mRNA expression. Many antiepileptic drugs (AEDs) prevent seizures by blocking voltage-gated brain sodium channels. However, treatment is ineffective in 30% of epilepsy patients, which might, at least in part, result from polymorphisms of the sodium channel genes. We investigated the association of AED responsiveness with genetic polymorphisms and correlated any association with mRNA expression of the neuronal sodium channels. We performed genotyping of tagging and candidate single nucleotide polymorphisms (SNPs) of SCN1A, 2A, and 3A in 471 Chinese epilepsy patients (272 drug responsive and 199 drug resistant). A total of 27 SNPs were selected based on the HapMap database. Genotype distributions in drug-responsive and drug-resistant patients were compared. SCN2A mRNA was quantified by real-time PCR in 24 brain and 57 blood samples. Its level was compared between patients with different genotypes of an SCN2A SNP found to be associated with drug responsiveness. SCN2A IVS7-32A&gt;G (rs2304016) A alleles were associated with drug resistance (odds ratio = 2.1, 95% confidence interval: 1.2-3.7, P=0.007). Haplotypes containing the IVS7-32A&gt;G allele A were also associated with drug resistance. IVS7-32A&gt;G is located within the putative splicing branch site for splicing exons 7 and 9. PCR of reverse-transcribed RNA from blood or brain of patients with different IVS7-32A&gt;G genotypes using primers in exons 7 and 9 showed no skipping of exon 8, and real-time PCR showed no difference in SCN2A mRNA levels among genotypes. Results of this study suggest an association between SCN2A IVS7-32A&gt;G and AED responsiveness, without evidence of an effect on splicing or mRNA expression."	"Synthetic fibril peptide promotes clearance of scrapie prion protein by lysosomal degradation. Transmissible spongiform encephalopathies are infectious and neurodegenerative disorders that cause neural deposition of aggregates of the disease-associated form of PrP(Sc). PrP(Sc) reproduces by recruiting and converting the cellular PrP(C), and ScN2a cells support PrP(Sc) propagation. We found that incubation of ScN2a cells with a fibril peptide named P9, which comprises an intrinsic sequence of residues 167-184 of mouse PrP(C), significantly reduced the amount of PrP(Sc) in 24 hr. P9 did not affect the rates of synthesis and degradation of PrP(C). Interestingly, immunofluorescence analysis showed that the incubation of ScN2a cells with P9 induced colocalization of the accumulation of PrP with cathepsin D-positive compartments, whereas the accumulation of PrP in the cells without P9 colocalized mainly with lysosomal associated membrane proteins (LAMP)-1-positive compartments but rarely with cathepsin D-positive compartments in perinuclear regions. Lysosomal enzyme inhibitors attenuated the anti-PrP(Sc) activity; however, a proteasome inhibitor did not impair P9 activity. In addition, P9 neither promoted the ubiquitination of cellular proteins nor caused the accumulation of LC3-II, a biochemical marker of autophagy. These results indicate that P9 promotes PrP(Sc) redistribution from late endosomes to lysosomes, thereby attaining PrP(Sc) degradation."	"A de novo KCNQ2 mutation detected in non-familial benign neonatal convulsions. The underlying genetic abnormalities of rare familial idiopathic epilepsy have been identified, such as mutation in KCNQ2, a K(+) channel gene. Yet, few genetic abnormalities have been reported for commoner epilepsy, i.e., sporadic idiopathic epilepsy, which share a phenotype similar to those of familial epilepsy. To search for the genetic cause of seizures in a girl with the diagnosis of non-familial benign neonatal convulsions, and define the consequence of the genetic abnormality identified. Genetic abnormality was explored within candidate genes for benign familial neonatal and infantile convulsions, such as KCNQ2, 3, 5, KCNE2, SCN1A and SCN2A. The electrophysiological properties of the channels harboring the identified mutation were examined. Western blotting and immunostaining were employed to characterize the expression and intracellular localization of the mutant channel molecules. A novel heterozygous mutation (c.910-2delTTC or TTT, Phe304del) of KCNQ2 was identified in the patient. The mutation was de novo verified by parentage analysis. The mutation was associated with impaired functions of KCNQ K(+) channel. The mutant channels were expressed on the cell surface. The mutant Phe304del of KCNQ2 leads to null function of the KCNQ K(+) channel but the mutation does not alter proper channel sorting onto the cell membrane. Our findings indicate that the genes responsible for rare inherited forms of idiopathic epilepsy could be also involved in sporadic forms of idiopathic epilepsy and expand our notion of the involvement of molecular mechanisms in the more common forms of idiopathic epilepsy."	"SCN1A, SCN1B, and GABRG2 gene mutation analysis in Chinese families with generalized epilepsy with febrile seizures plus. Generalized epilepsy with febrile seizures plus (GEFS+; MIM#604233) is a familial epilepsy syndrome characterized by phenotypic and genetic heterogeneity. It was associated with mutations in the neuronal voltage-gated sodium channel subunit gene (SCN1A, SCN2A, SCN1B) and ligand-gated gamma aminobutyric acid receptors genes (GABRG2, GABRD). We investigated the roles of SCN1A, SCN1B, and GABRG2 mutations in the etiology of Chinese GEFS+ families. Genomic deoxyribonucleic acid (DNA) was extracted from peripheral blood lymphocytes of 23 probands and their family members. The sequences of SCN1A, SCN1B, and GABRG2 genes were analyzed by polymerase chain reaction (PCR) and direct sequencing. The major phenotypes of affected members in the 23 GEFS+ families exhibited FS and FS+, whereas rare phenotypes afebrile generalized tonic-clonic seizures (AGTCS), myoclonic-astatic epilepsy (MAE), and partial seizures were also observed. A novel SCN1A mutation, p.N935H, was identified in one family and another novel mutation in GABRG2, p.W390X, in another family. However, no SCN1B mutation was identified. The combined frequency of SCN1A, SCN1B, and GABRG2 mutations was 8.7% (2/23), extending the distribution of SCN1A and GABRG2 mutations to Chinese GEFS+ families. There were still unidentified genes contributing to the pathogenesis of GEFS+."	"Role of the amino and carboxy termini in isoform-specific sodium channel variation. Na(v)1.2 and Na(v)1.6 are two voltage-gated sodium channel isoforms found in adult CNS neurons. These isoforms differ in their electrophysiological properties, even though the major regions that are known to be involved in channel activation and inactivation are conserved between them. To determine if the terminal domains of these channels contributed to their activation and fast inactivation differences, we constructed chimeras between the two isoforms and characterized their electrophysiological properties. Exchanging the N-terminal 205 amino acids of Na(v)1.6 and the corresponding 202 amino acids of Na(v)1.2 completely swapped the V_(1)/(2) of steady-state activation between the Na(v)1.2 and Na(v)1.6 channels in an isoform-specific manner. Exchanging the C-terminal 436 amino acids of Na(v)1.6 and the corresponding region of Na(v)1.2 altered the voltage dependence and kinetics of steady-state inactivation, but the changes did not reflect a direct transfer of inactivation properties between the two isoforms. Finally, the N- and C-terminal domains from Na(v)1.6 demonstrated functional cooperation. These results suggest that the terminal sequences of the sodium channel are important for isoform-specific differences between the channels."	"Antiprion activity of functionalized 9-aminoacridines related to quinacrine. A library of functionalized 6-chloro-2-methoxy-(N(9)-substituted)acridin-9-amines structurally related to quinacrine were synthesized and evaluated for antiprion activity on four different cell models persistently infected with scrapie prion strains (ScN2a, N167, Ch2) or a human disease prion strain (F3). Most of the compounds were distinguished by the side chain attached to 9-amino of the acridine ring. These were dialkylaminoalkyl and phenyl with basic groups on the phenyl ring. The most promising compound was 6-chloro-2-methoxy-N-(4-(4-methylpiperazin-1-yl)phenyl)acridin-9-amine (15) which had submicromolar EC(50) values (0.1-0.7microM) on all cell models, was able to clear PrP(Sc) at non-toxic concentrations of 1.2-2.5microM, and was more active than quinacrine in terms of EC(50) values. Other promising compounds were 14 (a regioisomer of 15) and 17 which had a 1-benzylpiperidin-4-yl substituent attached to the 9-amino function. Activity was strongly dependent on the presence of a substituted acridine ring, which in this library comprised 6-chloro-2-methoxy substituents on the acridine ring. The side chains of 14, 15, and 17 have not been previously associated with antiprion activity and are interesting leads for further optimization of antiprion activity."	"High threshold, proximal initiation, and slow conduction velocity of action potentials in dentate granule neuron mossy fibers. Dentate granule neurons give rise to some of the smallest unmyelinated fibers in the mammalian CNS, the hippocampal mossy fibers. These neurons are also key regulators of physiological and pathophysiological information flow through the hippocampus. We took a comparative approach to studying mossy fiber action potential initiation and propagation in hippocampal slices from juvenile rats. Dentate granule neurons exhibited axonal action potential initiation significantly more proximal than CA3 pyramidal neurons. This conclusion was suggested by phase plot analysis of somatic action potentials and by local tetrodotoxin application to the axon and somatodendritic compartments. This conclusion was also verified by immunostaining for voltage-gated sodium channel alpha subunits and by direct dual soma/axonal recordings. Dentate neurons exhibited a significantly higher action potential threshold and slower axonal conduction velocity than CA3 neurons. We conclude that while the electrotonically proximal axon location of action potential initiation allows granule neurons to sensitively detect and integrate synaptic inputs, the neurons are sluggish to initiate and propagate an action potential."	"Impaired NaV1.2 function and reduced cell surface expression in benign familial neonatal-infantile seizures. Mutations in SCN2A, the gene encoding the brain voltage-gated sodium channel alpha-subunit Na(V)1.2, are associated with inherited epilepsies including benign familial neonatal-infantile seizures (BFNIS). Functional characterization of three BFNIS mutations was performed to identify defects in channel function that underlie this disease. We examined three BFNIS mutations (R1319Q, L1330F, and L1563V) using whole-cell patch-clamp recording of heterologously expressed human Na(V)1.2. Membrane biotinylation was employed to examine the cell surface protein expression of the four Na(V)1.2 alleles. R1319Q displayed mixed effects on activation and fast inactivation gating, consistent with a net loss of channel function. L1563V exhibited impaired fast inactivation predicting a net gain of channel function. The L1330F mutation significantly decreased overall channel availability during repetitive stimulation. Patch-clamp analysis also revealed that cells expressing BFNIS mutants exhibited lower levels of sodium current compared to wild type (WT) Na(V)1.2. Biochemical experiments demonstrated that all three BFNIS mutations exhibited a significant reduction in cell surface expression compared to WT. Our findings indicate that BFNIS is associated with a range of biophysical defects accompanied by reduced levels of channel protein at the plasma membrane."	"Cholesterol transporter ATP-binding cassette A1 (ABCA1) is elevated in prion disease and affects PrPC and PrPSc concentrations in cultured cells. Prion diseases are transmissible neurodegenerative disorders of prion protein (PrP) conformation. Prion replication by conversion of benign PrPC isoforms into disease-specific PrPSc isoforms is intimately involved in prion disease pathogenesis and may be initiated in cholesterol-rich caveolae-like domains (CLD). Concentrations of the cholesterol transporter ATP-binding cassette A1 protein (ABCA1) are elevated in pre-clinical scrapie prion-infected mice and in prion-infected cells in vitro. Elevation of ABCA1 in prion-infected brain is not a direct consequence of local PrPSc accumulation, indeed levels of ABCA1 are comparable in brain regions that differ dramatically in the amount of PrPSc. Similarly, ABCA1 concentrations are identical in normal mice, transgenic mice overexpressing PrP and PrP knockout mice. In contrast, PrPC and PrPSc levels, but not Prnp mRNA, were increased by overexpression of ABCA1 in N2a neuroblastoma cells and scrapie prion-infected N2a cells (ScN2a). Conversely, RNAi-mediated knock down of Abca1 expression decreased the concentrations of PrPC in N2a cells and of PrPSc in ScN2a cells. These results suggest that ABCA1's effects on PrPC levels are post-translational and may reflect an increase in of PrPC stability, mediated either indirectly by increasing membrane cholesterol and CLD formation or by other functions of ABCA1. The increased supply of PrPC available for conversion would lead to increased PrPSc formation."	"[Progress in molecular genetics of generalized epilepsy with febrile seizures plus]. Generalized epilepsy with febrile seizures plus (GEFS+) is a familial inherited epileptic syndrome characterized by phenotypic heterogeneity from the milder febrile seizures to the severest epileptic encephalopathy such as severe myoclonic epilepsy in infancy (SMEI). GEFS+ is a disorder with a genetic heterogeneity. Molecular genetics have revealed that four genes are associated with the pathogenesis of GEFS+. These include mutations in genes encoding subunits of neuronal voltage-gated sodium channels (SCN1A, SCN1B, SCN2A) and gamma(2) subunit of the gamma amino-butyric acid (GABA)(A) receptor (GABRG2). These genes have been confirmed as having a role in autosomal dominant GEFS+ families. In addition, the phenotypes of the affected members may depend on the types and locations of these gene mutations. This review states the molecular genetic progress of GEFS+ in brief."	"Cholesterol esterification reduces the neurotoxicity of prions. The transmissible spongiform encephalopathies develop following the conversion of a host-encoded protein (PrP(C)) into abnormally folded, disease-related isoforms (PrP(Sc)). Here we report that three acyl-coenzyme A:cholesterol acyltransferase (ACAT) inhibitors, TMP-153, FR179254 or YIC-C8-434, were more toxic to prion-infected neuronal cell lines (ScGT1 and ScN2a cells) than to their uninfected equivalents (GT1 and N2a cells). The toxicity of ACAT inhibitors for ScGT1 cells was not reversed by the addition of cholesterol esters, rather it was increased by the addition of free cholesterol indicating that the toxicity of ACAT inhibitors was related to the increased free cholesterol content of cells rather than reduced amounts of cholesterol esters. This hypothesis was strengthened by the observation that the addition of free cholesterol killed ScGT1, but not GT1 cells. Treatment with ACAT inhibitors increased caspase-3 activity and prostaglandin E(2) production in ScGT1 cells but not in GT1 cells. The addition of the phospholipase A(2) (PLA(2)) inhibitors (AACOCF(3) or MAFP) reduced prostaglandin E(2) production and protected ScGT1 cells against the toxicity of ACAT inhibitors. These results indicate that cholesterol esterification is an important cellular response that reduces PrP(Sc)-induced activation of PLA(2) and protects against cell death in ScGT1 cells."	"Four-mode gating model of fast inactivation of sodium channel Nav1.2a. Basic principles of the gating mechanisms of neuronal sodium channels, especially the fast inactivation process, were revealed by a quantitative analysis of the effects of the chemically irreversible modifying agent chloramine T. The compound is known to enhance the open probability of sodium channels by interfering with the inactivation process. The key for the deduction of structure-function relationships was obtained from the analysis of single-channel patch-clamp data, especially the finding that chloramine T-induced modification of inactivation occurred in four steps. These steps were termed modes 1-4 (four-mode gating model), and their temporal sequence was always the same. The kinetic analysis of single-channel traces with an improved two-dimensional dwell-time fit revealed the possible mechanism related to each mode. Similarities to the kinetics of the sodium channel mutant F1489Q led to the assignment of modes 1 and 2 to transient defects in the locking of the inactivation particle (hinged lid). In the third mode, the hinged lid was unable to lock permanently. Finally, in mode 4, the apparent single-channel current was reduced, which could be explained by fast gating, presumably related to the selectivity filter."	"[Autism, epilepsy and genetics]. The rate of epilepsy in autism is higher than in other developmental disorders and estimates point to a frequency range of between 7% and 42%. Between 40% and 47% of autistic children suffer from clinical epilepsy. Onset of epilepsy may occur at any age. During the ontogenesis of the nervous system, if the maturing process is upset by some epileptogenic phenomenon, the consequences on the consolidation of the emerging cognitive functions can be severe. Epileptiform discharges can occur although clinical seizures are absent, but nevertheless they still have an effect on the maturing process. Between 10% and 50% of autistic children undergo a regression of acquired behaviour following a period of normal development. The absence of clinical seizures during regression does not rule out the epileptogenic origin of the regressive process. The relation between pervasive developmental disorders and epilepsy, epileptiform activity and subclinical seizures can be explained from a neurobiological point of view, on the one hand, by an imbalance between the excitatory system -glutamate- and the inhibitory system -gamma-aminobutyric acid (GABA)- in key points in the cerebral cortex and, on the other, by means of molecular genetic studies and studies of candidate genes (FOXP2, WNT2, subunits of GABA receptors, neuroligins, ARX, SCN1A, SCN2A, MECP2, CDKL5 and DLX5)."	"Involvement of batrachotoxin binding sites in ginsenoside-mediated voltage-gated Na+ channel regulation. Recently, we showed that the 20(S)-ginsenoside Rg3 (Rg3), an active ingredient of Panax ginseng, inhibits rat brain NaV1.2 channel peak currents (INa). Batrachotoxin (BTX) is a steroidal alkaloid neurotoxin and activates NaV channels through interacting with transmembrane domain-I-segment 6 (IS6) of channels. Recent report shows that ginsenoside inhibits BTX binding in rat brain membrane fractions. However, it needs to be confirmed whether biochemical mechanism is relevant physiologically and which residues of the BTX binding sites are important for ginsenoside regulations. Here, we demonstrate that mutations of BTX binding sites such as N418K and L421K of rat brain NaV1.2 and L437K of mouse skeletal muscle NaV1.4 channel reduce or abolish Rg3 inhibition of I(Na) and attenuate Rg3-mediated depolarizing shift of the activation voltage and use-dependent inhibition. These results indicate that BTX binding sites play an important role in modifying Rg3-mediated Na+ channel properties."	"Modifications of aliphatic side chain of 20(S)-ginsenoside RG3 cause an enhancement or loss of brain Na+ channel current inhibitions. A line of evidence has shown that ginsenoside Rg3 (Rg3) could be one of bioactive ligands in brain Na+ channel regulations. Rg3 exists as stereoisomer of 20(R)- or 20(S)-form. Rg3 consists of three different parts; steroid- like backbone structure, carbohydrate portion, and aliphatic side chain [-CH2CH2CH=C(CH3)2], which is coupled to the carbon-20 of backbone structure. In the previous report, we demonstrated that 20(S)- but not 20(R)-Rg3 and carbohydrate portion of Rg3 play important roles in rat brain NaV1.2 channel regulations. However, little is known about the role of aliphatic side chain coupled to the carbon-20 in brain Na+ channel regulations. In the present study, we prepared Rg3 derivatives by modifying the aliphatic side chain of Rg3, remaining with backbone structure and carbohydrate portion intact, and examined the effects of Rg3 derivatives on Na+ channel activity. We found that reduction of double bond in aliphatic side chain of Rg3 exhibited agonistic actions in Na+ channel current inhibitions by shifting concentration-response curve to leftward by three-fold, whereas deletion, hydroxylation, or oxygenation of aliphatic side chain caused an attenuation or loss of Na+ channel current inhibitions. These results provide evidences that the aliphatic side chain of Rg3 is also involved in Na+ channel regulations and further show a possibility that the aliphatic side chain of Rg3 could be the target of chemical modifications for abolishment or potentiation of Rg3 actions in Na+ channel regulations."	"Sequestration of free cholesterol in cell membranes by prions correlates with cytoplasmic phospholipase A2 activation. The transmissible spongiform encephalopathies (TSEs), otherwise known as the prion diseases, occur following the conversion of the normal cellular prion protein (PrPC) to an alternatively folded isoform (PrPSc). The accumulation of PrPSc within the brain leads to neurodegeneration through an unidentified mechanism. Since many neurodegenerative disorders including prion, Parkinson's and Alzheimer's diseases may be modified by cholesterol synthesis inhibitors, the effects of prion infection on the cholesterol balance within neuronal cells were examined. We report the novel observation that prion infection altered the membrane composition and significantly increased total cholesterol levels in two neuronal cell lines (ScGT1 and ScN2a cells). There was a significant correlation between the concentration of free cholesterol in ScGT1 cells and the amounts of PrPSc. This increase was entirely a result of increased amounts of free cholesterol, as prion infection reduced the amounts of cholesterol esters in cells. These effects were reproduced in primary cortical neurons by the addition of partially purified PrPSc, but not by PrPC. Crucially, the effects of prion infection were not a result of increased cholesterol synthesis. Stimulating cholesterol synthesis via the addition of mevalonate, or adding exogenous cholesterol, had the opposite effect to prion infection on the cholesterol balance. It did not affect the amounts of free cholesterol within neurons; rather, it significantly increased the amounts of cholesterol esters. Immunoprecipitation studies have shown that cytoplasmic phospholipase A2 (cPLA2) co-precipitated with PrPSc in ScGT1 cells. Furthermore, prion infection greatly increased both the phosphorylation of cPLA2 and prostaglandin E2 production. Prion infection, or the addition of PrPSc, increased the free cholesterol content of cells, a process that could not be replicated by the stimulation of cholesterol synthesis. The presence of PrPSc increased solubilisation of free cholesterol in cell membranes and affected their function. It increased activation of the PLA2 pathway, previously implicated in PrPSc formation and in PrPSc-mediated neurotoxicity. These observations suggest that the neuropathogenesis of prion diseases results from PrPSc altering cholesterol-sensitive processes. Furthermore, they raise the possibility that disturbances in membrane cholesterol are major triggering events in neurodegenerative diseases."	"Mutation of sodium channel SCN3A in a patient with cryptogenic pediatric partial epilepsy. Mutations in the sodium channel genes SCN1A and SCN2A have been identified in monogenic childhood epilepsies, but SCN3A has not previously been investigated as a candidate gene for epilepsy. We screened a consecutive cohort of 18 children with cryptogenic partial epilepsy that was classified as pharmacoresistant because of nonresponse to carbamazepine or oxcarbazepine, antiepileptic drugs that bind sodium channels. The novel coding variant SCN3A-K354Q was identified in one patient and was not present in 295 neurological normal controls. Twelve novel SNPs were also detected. K354Q substitutes glutamine for an evolutionarily conserved lysine residue in the pore domain of SCN3A. Functional analysis of this mutation in the backbone of the closely related gene SCN5A demonstrated an increase in persistent current that is similar in magnitude to epileptogenic mutations of SCN1A and SCN2A. This observation of a potentially pathogenic mutation of SCN3A (Nav1.3) indicates that this gene should be further evaluated for its contribution to childhood epilepsy."	"Vaccine approaches to prevent and treat prion infection : progress and challenges. Prion diseases are transmissible neurodegenerative diseases of humans and animals. The prion agent consists of a misfolded protein, PrPSc (prion protein, scrapie form), of a glycosylphosphatidylinositol-anchored host protein, PrPC (PrP cellular form) of unknown function. During prion replication, PrPSc induces host PrPC to adopt its pathogenic conformation. Some PrPSc may aggregate to microscopically visible, extracellular prion plaques that stain for amyloid. The development of antiprion vaccines presents some challenges. While there is strong self-tolerance to an endogenous antibody response to PrPC and PrPSc, highly potent monoclonal antibodies (mAbs) have been raised in mice in which the prion protein gene has been deleted by gene targeting. These mAbs have been demonstrated to be antiprion-active in permanently scrapie-infected neuroblastoma (ScN2a) cells, primarily when bound to one of four epitopes (the octarepeat region, the region around codons 90-110, helix 1 region codons 145-160, and the extreme C-terminal codons 210-220). The mAbs directed against codon regions 90-110 or 145-160 are also antiprion-active in vivo, but only after intraperitoneal infection with prions, not intracerebral infection, suggesting their blood-brain barrier (BBB) impermeability. The challenge will be to make antibodies, or recombinant derivatives thereof, BBB permeable; this is preferably achieved by monovalent antibody fragments since divalent ones were found to be neurotoxic. Self-tolerance of wild-type animals to PrP immunizations was found to be of extrathymic origin. Even though antibodies raised in wild-type mice were found to display antiprion activity in ScN2a cells, these mice did not have significant extensions of incubation times when challenged intraperitoneally with prions. A general low affinity of these antibody responses to native surface-bound PrPC may account for this. Since wild-type mice were found to develop sufficient T-cell responses to codon regions 145-160 and 210-220, we believe that there is a theoretical chance of a successful vaccination therapy. The influence of the way the immunogen is presented has already been shown to be of major importance for the ensuing immune response, in that presentation of PrP with CpG oligodeoxynucleotides as adjuvant or viral packaging improved antibody responses. Major progress for active immunizations may therefore be expected in this field. Eradication programs will be one of the most important uses of active immunization protocols. For this purpose, vaccines will have to be inexpensive, easy to handle, and effective. In the short term, passive immunizations will likely be most promising for therapy of prion disease, including for human medical interventions. Active immunization protocols are less likely to succeed quickly, and will take years if not decades to be validated for domestic or free-ranging animals."	"A novel mutation in JARID1C/SMCX in a patient with autism spectrum disorder (ASD). We describe a nondysmorphic patient with developmental delay and autism spectrum disorder who has a missense mutation in the Jumonji AT-rich interactive domain 1C (JARID1C) gene. This child first presented at 30 months of age with stereotyped and repetitive behaviors, impairment in social reciprocity and in the use of multiple nonverbal behaviors, and developmental delay primarily in the language domain. A diagnosis of autism was made and subsequently confirmed at the current age of 47 months. Cytogenetic and fragile X studies were normal. Mutational analysis revealed a novel missense mutation in exon 16 of the JARID1C gene that results in an arginine to tryptophan substitution at amino acid 766 (R766W). Sequence alignment analysis with multiple available eukaryotic sequences including the homologous proteins of mouse and zebrafish demonstrated that the affected amino acid is conserved. JARID1C has not previously been implicated in autism susceptibility. Recent novel molecular evidence suggests that it is a histone demethylase specific for di- and trimethylated histone 3 lysine 4 (H3K4) and functions as a transcriptional repressor by fostering REST-mediated neuronal gene regulation. The JARID1C-regulated genes SCN2A, CACNA1H, BDNF, and SLC18A1 have previously been associated with autism and cognitive dysfunction. This patient brings the total number of reported JARID1C mutations to 14. This presentation both extends the range of neurocognitive phenotypes attributable to mutations in this gene and illustrates the importance of molecular studies and DNA sequence analysis for accurate diagnosis of monogenic causes of autism."	"Observing fibrillar assemblies on scrapie-infected cells. The infectious agent in prion diseases is an aberrant-folded isoform of the cellular prion protein (PrPC). This scrapie-related prion protein (PrPSc) has an increased beta-sheet content, is detergent insoluble and proteinase K resistant, and accumulates in prion-infected organisms and cells. In vitro, PrPSc self-aggregates into amyloid fibrils. However, there is no direct experimental proof for the occurrence of PrPSc-containing fibrils in vivo or in cell cultures. Applying atomic force microscopy (AFM) to scrapie-infected mouse neuroblastoma (ScN2a) cells, we discovered growing patch-like assemblies of amyloid-like fibrillar structures on the cell surfaces. Immunofluorescence and AFM images showed heterogeneous accumulation and aggregation of PrPSc in ScN2a cell cultures. The percentage of cells having characteristic fibrils on their surface increased with time after scrapie infection. These endogeneous fibrils had lengths from 0.5 to 3 microm and protruded from the cell surface by 108 +/- 30 nm, and thus resembled the heterogeneous shapes and networks of in vitro prepared amyloid fibrils."	"Voltage-gated sodium channel alpha-subunits Na(v)1.1, Na(v)1.2, and Na(v)1.6 in the distal mammalian retina. Recent studies indicate the presence of functional voltage-gated sodium channels (Na(v) channels) in the distal retina in several species. This study examined the distribution of Na(v) channels in the outer plexiform layer (OPL) of rat, mouse, and rabbit retinas. Immunohistochemical and electroretinographic approaches were used. Antibodies specific for Na(v)1 alpha-subunits appropriately labeled retinal ganglion cells, their axons, and amacrine cells that are known to have tetrodotoxin (TTX)-sensitive Na(v) channels. Pan-Na(v), Na(v)1.2, and Na(v)1.6 labeling was found in horizontal cells and processes in all three species. Weaker Na(v)1.1 labeling was observed in rodent horizontal cells, but some rabbit horizontal cells and processes were prominently labeled. Additional labeling for Na(v)1.1, Na(v)1.2, and Na(v)1.6 that was not attributable to horizontal cells was also present in the OPL. Much of this labeling was diffusely distributed. Some of the additional Na(v)1.1 labeling was associated with photoreceptor terminals. By exclusion using photoreceptor and horizontal cell markers, some of this labeling could have been associated with bipolar cell dendrites, although colocalization was not directly established due to the diffuse nature of the labeling and limits on anatomical resolution. No Na(v)1 alpha-subunit labeling was observed in bipolar cell bodies. Testing for functional Na(v) channels was performed by recording full field flash electroretinograms from dark-adapted rats before and after intravitreal injections of TTX, 6-cyano-7-nitroquinoxaline-2,3-dione (CNQX), or TTX+CNQX. TTX and CNQX+TTX, but not CNQX alone, greatly attenuated the dark-adapted cone-driven b-waves. Horizontal cells from three different mammalian retinas showed prominent labeling for Na(v)1 alpha-subunits. Some additional diffuse Na(v)1 alpha-subunit labeling in the OPL was associated with photoreceptor terminals. Na(v)1 alpha-subunit labeling also may have been present on bipolar cell dendrites, although it was not possible to establish this localization unequivocally by immunostaining. However, cone-driven b-waves in rats were reduced in maximum amplitude by TTX in the presence of CNQX which blocks synaptic input to horizontal, amacrine, and ganglion cells. This finding is consistent with TTX effects on the b-wave being due to blockade of Na(v) channels in cone bipolar cell dendrites in the OPL. The role of Na(v) channels in horizontal cells remains to be determined."	"Scn2a sodium channel mutation results in hyperexcitability in the hippocampus in vitro. To investigate in vitro, the cellular network activity of the hippocampus in Q54 mice that display spontaneous seizures because of a gain-of-function mutation of the Scn2a sodium channel gene. Extacellular recordings were obtained from CA1 and CA3 pyramidal neurons in hippocampal slices prepared from Q54 transgenic and nontransgenic littermates (WT) under physiologic conditions as well as during periods of orthodromic stimulation of the Schaffer collaterals. Cerebral spinal fluid samples were analyzed and cresyl violet histology of the hippocampus was conducted. Increased spontaneous extracellular activity was found in both CA1 and CA3 regions of Q54 hippocampal slices. Q54 slices also demonstrated significantly greater spontaneous and afterdischarge activity as well as population spike amplitude and duration following tetanic stimulus in comparison to WT slices. Frequency analysis of tetanically stimulated recordings indicated high-frequency components (100 and 200 Hz) unique to Q45 slices. Analysis of cresyl violet histology supports healthy Q54 slices up to 10 weeks, while Q54 cerebral spinal fluid shows elevated osmolarity. Evidence for hyperexcitability and increased synaptic efficacy in Q54 mice was found by observing spontaneous activity as well as evoked activity. Response to tetanic stimulation included unique high-frequency oscillations, and resulted in an increased population spike amplitude and duration. Histological assessment shows equivalent neuronal development in both experimental groups. The data support the hypothesis that modified Scn2a channels in Q54 mice result in network hyperexcitability of the hippocampus necessary for the development and maintenance of temporal lobe seizures."	"Genetic etiology of new forms of familial epilepsy. Epilepsy is a common neurological disorder with an incidence of approximately 0.5%. In order to develop better strategies for treatment of epilepsy, more insight on the etiology and pathogenesis of epilepsy is required. In 2001, based on the diagnostic scheme of the International League Against Epilepsy, three new forms of familial epilepsy were identified. These include familial temporal lobe epilepsy, familial focal epilepsy with variable foci, and generalized epilepsy with febrile seizure plus. Mutation of a distinct set of genes has been reported in several forms of epilepsy. Mutation of LGI1 gene has been identified in familial lateral temporal lobe epilepsy while mutations of genes which encode sodium channels and GABAA receptors have been reported in generalized epilepsy with febrile seizure plus. However, no disease-causing gene has yet been found in families with familial mesial temporal lobe epilepsy or those with familial focal epilepsy with variable foci. Here, we review the genetic background of these three familial epilepsy syndromes, and provide a better insight on their genetic etiology."	"Sites and molecular mechanisms of modulation of Na(v)1.2 channels by Fyn tyrosine kinase. Voltage-gated sodium channels are important targets for modulation of electrical excitability by neurotransmitters and neurotrophins acting through protein phosphorylation. Fast inactivation of Na(V)1.2 channels is regulated via tyrosine phosphorylation by Fyn kinase and dephosphorylation by receptor phosphoprotein tyrosine phosphatase-beta, which are associated in a signaling complex. Here we have identified the amino acid residues on Na(V)1.2 channels that coordinate binding of Fyn kinase and mediate inhibition of sodium currents by enhancing fast inactivation. Fyn kinase binds to a Src homology 3 (SH3)-binding motif in the second half of the intracellular loop connecting domains I and II (L(I-II)) of Na(V)1.2, and mutation of that SH3-binding motif prevents Fyn binding and Fyn enhancement of fast inactivation of sodium currents. Analysis of tyrosine phosphorylation sites by mutagenesis and functional expression revealed a multisite regulatory mechanism. Y66 and Y1893, which are in consensus sequences appropriate for binding to the Fyn SH2 domain after phosphorylation, are both required for optimal binding and regulation by Fyn. Y730, which is located near the SH3-binding motif in L(I-II), and Y1497 and Y1498 in the inactivation gate in L(III-IV), are also required for optimal regulation. Phosphorylation of these sites likely promotes fast inactivation. Fast inactivation of the closely related Na(V)1.1 channels is not modulated by Fyn, and these channels do not contain an SH3-binding motif in L(I-II). Subtype-selective modulation by tyrosine phosphorylation/dephosphorylation provides a mechanism for differential regulation of sodium channels by neurotrophins and tyrosine phosphorylation in unmyelinated axons and dendrites, where Na(V)1.2 channels are expressed in brain neurons."	"Regulation of Na(v)1.2 channels by brain-derived neurotrophic factor, TrkB, and associated Fyn kinase. Voltage-gated sodium channels are responsible for action potential initiation and propagation in neurons, and modulation of their function has an important impact on neuronal excitability. Sodium channels are regulated by a Src-family tyrosine kinase pathway, and this modulation can be reversed by specifically bound receptor phosphoprotein tyrosine phosphatase-beta. However, the specific tyrosine kinase and signaling pathway are unknown. We found that the sodium channels in rat brain interact with Fyn, one of four Src-family tyrosine kinases expressed in the brain. Na(V)1.2 channels and Fyn are localized together in the axons of cultured hippocampal neurons, the mossy fibers of the hippocampus, and cell bodies, dendrites, and axons of neurons in many other brain areas, and they coimmunoprecipitate with Fyn from cotransfected tsA-201 cells. Coexpression of Fyn with Na(V)1.2 channels decreases sodium currents by increasing the rate of inactivation and causing a negative shift in the voltage dependence of inactivation. Reconstitution of a signaling pathway from brain-derived neurotrophic factor (BDNF) to sodium channels via the tyrosine receptor kinase B (TrkB)/p75 neurotrophin receptor and Fyn kinase in transfected cells resulted in an increased rate of inactivation of sodium channels and a negative shift in the voltage dependence of inactivation after treatment with BDNF. These results indicate that Fyn kinase is associated with sodium channels in brain neurons and can modulate Na(V)1.2 channels by tyrosine phosphorylation after activation of TrkB/p75 signaling by BDNF."	"The voltage-gated sodium channel Scn8a is a genetic modifier of severe myoclonic epilepsy of infancy. The mammalian genome contains four voltage-gated sodium channel genes that are primarily expressed in the central nervous system: SCN1A, SCN2A, SCN3A and SCN8A. Mutations in SCN1A and SCN2A are responsible for several dominant idiopathic epilepsy disorders, including generalized epilepsy with febrile seizures plus (GEFS+) and severe myoclonic epilepsy of infancy (SMEI). Mutations in SCN8A are associated with cognitive deficits and neuropsychiatric illness in humans and movement disorders in mice; however, a role for SCN8A (Na(v)1.6) in epilepsy has not been investigated. To determine the relationship between Na(v)1.6 dysfunction and seizure susceptibility, we examined the thresholds of two Scn8a mouse mutants, Scn8a(med) and Scn8a(med-jo), to flurothyl- and kainic acid (KA)-induced seizures. Both mutants were more seizure resistant than wild-type littermates, suggesting that altered Na(v)1.6 function reduces neuronal excitability. To determine whether impaired Na(v)1.6 function could ameliorate seizure severity in a mouse model of SMEI, we generated Scn1a(+/-); Scn8a(med-jo/+) double heterozygous mice. Unlike Scn1a(+/-) mice that are more susceptible to flurothyl-induced seizures, Scn1a(+/-); Scn8a(med-jo/+) mice displayed thresholds that were comparable to wild-type littermates. The Scn8a(med-jo) allele was also able to rescue the premature lethality of Scn1a(+/-) mice and extend the lifespan of Scn1a(-/-) mutants. These results demonstrate that genetic interactions can alter seizure severity and support the hypothesis that genetic modifiers contribute to the clinical variability observed in SMEI and GEFS+."	"Analysis and mapping of CACNB4, CHRNA1, KCNJ3, SCN2A and SPG4, physiological candidate genes for porcine congenital progressive ataxia and spastic paresis. The cause of porcine congenital progressive ataxia and spastic paresis (CPA) is unknown. This severe neuropathy manifests shortly after birth and is lethal. The disease is inherited as a single autosomal recessive allele, designated cpa. In a previous study, we demonstrated close linkage of cpa to microsatellite SW902 on porcine chromosome 3 (SSC3), which corresponds syntenically to human chromosome 2. This latter chromosome contains ion channel genes (Ca(2+), K(+) and Na(+)), a cholinergic receptor gene and the spastin (SPG4) gene, which cause human epilepsy and ataxia when mutated. We mapped porcine CACNB4, KCNJ3, SCN2A and CHRNA1 to SSC15 and SPG4 to SSC3 with the INRA-Minnesota porcine radiation hybrid panel (IMpRH) and we sequenced the entire open reading frames of CACNB4 and SPG4 without finding any differences between healthy and affected piglets. An anti-epileptic drug treatment with ethosuximide did not change the severity of the disease, and pigs with CPA did not exhibit the corticospinal tract axonal degeneration found in humans suffering from hereditary spastic paraplegia, which is associated with mutations in SPG4. For all these reasons, the hypothesis that CACNB4, CHRNA1, KCNJ3, SCN2A or SPG4 are identical with the CPA gene was rejected."	"New series of antiprion compounds: pyrazolone derivatives have the potent activity of inhibiting protease-resistant prion protein accumulation. To find effective antiprion compounds, we synthesized and evaluated various pyrazolone derivatives. Seven of 19 compounds showed inhibition of PrP-res accumulation and the remarkably active compound 13 showed an IC50 value of 3 nM in both ScN2a and F3 cell lines. Findings from studies on physicochemical and biochemical properties suggest that the action mechanism of these compounds does not correlate with any antioxidant activities, any of hydroxyl radical scavenging activities, or any SOD-like activities."	"The tyrosine kinase inhibitor imatinib mesylate delays prion neuroinvasion by inhibiting prion propagation in the periphery. Prion diseases are fatal neurodegenerative disorders with no effective therapy. A hallmark of prion disease is the conversion of the normal cellular form of prion protein PrP(C) into a disease-associated isoform PrP(Sc). The authors recently have shown that a tyrosine kinase inhibitor, imatinib mesylate, induces clearance of PrP(Sc) via specific inhibition of c-Abl in prion-infected cell culture models. In this study, the authors assessed the in vivo effects of imatinib mesylate on prion disease using a scrapie-infected mouse model and further investigated prion infectivity of the drug-treated scrapie-infected neuroblastoma (ScN2a) cells. The authors found that imatinib mesylate abolished prion infectivity to almost undetectable level in ScN2a cells and the level of PrP(Sc) was significantly decreased by the drug in scrapie-infected mouse spleens as well as in ScN2a cells. Moreover, the drug treatment at an early phase of peripheral scrapie infection delayed the appearance of PrP(Sc) in the central nervous system (CNS) and onset of clinical disease in mice. However, neither intraperitoneal nor intracerebroventricular delivery of the drug exerted any PrP(Sc) clearance effect in the CNS."	"Sodium channel expression within chronic multiple sclerosis plaques. Multiple sclerosis (MS) is characterized by focal destruction of myelin sheaths, gliotic scars, and axonal damage that contributes to the accumulation of nonremitting clinical deficits. Previous studies have demonstrated coexpression of sodium channel Nav1.6 and the sodium-calcium exchanger (NCX), together with beta-amyloid precursor protein (beta-APP), a marker of axonal damage, in degenerating axons within acute MS lesions. Axonal degeneration is less frequent within chronic MS lesions than in acute plaques, although current evidence suggests that axonal loss in chronic lesions (&quot;slow burn&quot;) is a major contributor to accumulating disability. It is not known, however, whether axonal degenerations in chronic and acute lesions share common mechanisms, despite radically differing extracellular milieus. In this study, the expression of sodium channels Nav1.2 and Nav1.6 and of NCX was examined in chronic MS plaques within the spinal cord. Nav1.2 immunostaining was not observed along demyelinated axons in chronic lesions but was expressed by scar and reactive astrocytes within the plaque. Nav1.6 immunoreactivity, which was intense at nodes of Ranvier in normal appearing white matter in the same sections, was present in approximately one-third of the demyelinated axons within these plaques in a patchy rather than continuous distribution. NCX was not detected in demyelinated axons within chronic lesions, although it was clearly present within the scar astrocytes surrounding the demyelinated axons. beta-APP accumulation occurred in a small percentage of axons within chronic lesions within the spinal cord, but beta-APP was not preferentially present in axons that expressed Nav1.6. These observations suggest that different mechanisms underlie axonal degeneration in acute and chronic MS lesions, with axonal injury occurring at sites of coexpression of Nav1.6 and NCX in acute lesions but independent of coexpression of these 2 molecules in chronic lesions."	"Time-dependent molecular memory in single voltage-gated sodium channel. Excitability in neurons is associated with firing of action potentials and requires the opening of voltage-gated sodium channels with membrane depolarization. Sustained membrane depolarization, as seen in pathophysiological conditions like epilepsy, can have profound implications on the biophysical properties of voltage-gated ion channels. Therefore, we sought to characterize the effect of sustained membrane depolarization on single voltage-gated Na+ channels. Single-channel activity was recorded in the cell-attached patch-clamp mode from the rNa(v)1.2 alpha channels expressed in CHO cells. Classical statistical analysis revealed complex nonlinear changes in channel dwell times and unitary conductance of single Na+ channels as a function of conditioning membrane depolarization. Signal processing tools like weighted wavelet Z (WWZ) and discrete Fourier transform analyses attributed a &quot;pseudo-oscillatory&quot; nature to the observed nonlinear variation in the kinetic parameters. Modeling studies using the hidden Markov model (HMM) illustrated significant changes in kinetic states and underlying state transition rate constants upon conditioning depolarization. Our results suggest that sustained membrane depolarization induces novel nonlinear properties in voltage-gated Na+ channels. Prolonged membrane depolarization also induced a &quot;molecular memory&quot; phenomenon, characterized by clusters of dwell time events and strong autocorrelation in the dwell time series similar to that reported recently for single enzyme molecules. The persistence of such molecular memory was found to be dependent on the duration of depolarization. Voltage-gated Na+ channel with the observed time-dependent nonlinear properties and the molecular memory phenomenon may determine the functional state of the channel and, in turn, the excitability of a neuron."	"Lack of evidence for association between D2S124 and D2S111 polymorphisms of the SCN2A gene and idiopathic generalized epilepsy with generalized tonic clonic seizures. Idiopathic generalized epilepsy syndromes are generally considered as brain channelopathies due to alteration of several genes. The aim of our study was to compare the distribution of D2S124 and D2S111 genetic polymorphisms of the SCN2A gene between cases with a specific idiopathic generalized epilepsy subtype (with generalized tonic-clonic seizures) and healthy controls. Allele frequencies of both the D2S111 and the D2S124 polymorphisms were not significantly different between cases and control. Further studies are needed to investigate if possible polymorphic variants of SCN2A gene may influence seizures susceptibility of idiopathic generalized epilepsy with tonic-clonic seizures."	"Cellular prion protein protects against reactive-oxygen-species-induced DNA damage. Although the cellular form of the prion protein (PrPC) is critical for the development of prion disease through its conformational conversion into the infectious form (PrPSc), the physiological role of PrPC is less clear. Using alkaline single-cell gel electrophoresis (the Comet assay), we show that expression of PrPC protects human neuroblastoma SH-SY5Y cells against DNA damage under basal conditions and following exposure to reactive oxygen species, either hydroxyl radicals following exposure to Cu2+ or Fe2+ or singlet oxygen following exposure to the photosensitizer methylene blue and white light. Cells expressing either PrPDeltaoct which lacks the octapeptide repeats or the prion-disease-associated mutants A116V or PG14 had increased levels of DNA damage compared to cells expressing PrPC. In PrPSc-infected mouse ScN2a cells there was a significant increase in DNA damage over noninfected N2a cells (median tail DNA 2.87 and 7.33%, respectively). Together, these data indicate that PrPC has a critical role to play in protecting cells against reactive-oxygen-species-mediated DNA damage; a function which requires the octapeptide repeats in the protein, is lost in disease-associated mutants of the protein or upon conversion to PrPSc, and thus provide further support for the neuroprotective role for PrPC."	"Effects of BmK AS on Nav1.2 expressed in Xenopus laevis oocytes. In the present study, the pharmacological effects of BmK AS, a beta-like scorpion toxin on rNav1.2 alpha-subunit expressed in Xenopus laevis oocytes were investigated using a two-electrode voltage-clamp recording. It was found that the voltage dependence of rNav1.2 inactivation was significantly shifted towards positive membrane potential by 500 nM BmK AS, whereas the activation curves of rNav1.2 were unruffled at the same dosage. The inactivation curves of both slow and fast inactivation currents were positively moved about 12.8 and 9.7 mV, respectively. In addition, the persistent currents of rNav1.2 were invariable. The effects of BmK AS on the rNav1.2 inactivation were opposite to the previous results found in the peripheral sensory neurons. The results suggested that Nav1.2 might be the target of BmK AS in the central nervous system, and BmK AS might have an excitatory effect on the central neuron through enhancing Nav1.2."	"Association analysis of gamma2 subunit of gamma-aminobutyric acid (GABA) type A receptor and voltage-gated sodium channel type II alpha-polypeptide gene mutation in southern Chinese children with febrile seizures. We attempted to identify the prevalence of the R188W mutation of the SCN2A gene and the K289M mutation and single-nucleotide polymorphism rs211014 of the GABRG2 gene in children of southern China who have febrile seizures. Neither mutation was found in our subjects. The single-nucleotide polymorphism rs211014 AA genotype was overrepresented in the febrile-seizures group compared with controls (62.4% vs 29.0%). The single-nucleotide polymorphism rs211014 A allele was higher in the febrile-seizures group (P &lt; .005). Compared with the single-nucleotide polymorphism rs211014 CC genotype, the odds ratio for developing febrile seizures in individuals with the single-nucleotide polymorphism rs211014 AA genotype was 4.05 (P &lt; .005). A new mutation of C-to-T transition was found at nucleotide 81719 of the GABRG2 gene in a 5-year-old boy, suggesting that the above mutations may not be the main disease mutations. The single-nucleotide polymorphism rs211014 A allele may predict susceptibility to febrile seizures."	"Regulation of tryptophan hydroxylase-2 gene expression by a bipartite RE-1 silencer of transcription/neuron restrictive silencing factor (REST/NRSF) binding motif. Tryptophan hydroxylase-2 (TPH2) is the rate-limiting enzyme in raphe serotonin biosynthesis, and polymorphisms of TPH2 are implicated in vulnerability to psychiatric disorders. Dynamic transcription regulation of TPH2 may underlie differences in vulnerability. We identified a transcription element in the TPH2 promoter that resembles the binding motif for RE-1 silencer of transcription (REST; also known as NRSF) transcription factor. REST limits tissue expression of non-neuronal genes through a canonical 21-bp motif called the NRSE (neuron-restrictive silencing element). The NRSE in TPH2 is a novel bipartite variant interrupted by a 6-base insertion. We confirmed that this bipartite NRSE permits transcriptional repression by REST identical to canonical NRSE in rat C6-glioma cells. Synthetic permutations of the motif revealed considerable flexibility in the juxtaposition of the two halves of bipartite NRSE. Computational analysis revealed many bipartite NRSE variants conserved between mouse and human genomes. A subgroup of these was found to bind REST by chromatin immunoprecipitation. Messenger RNAs for TPH2 and potassium channel H6, another gene with a bipartite NRSE, were up-regulated by dominant-negative REST in C6-glioma cells. These findings, which indicate that TPH2 expression is part of the developmental program regulated by REST and suggest that many previously unrecognized genes may be regulated by REST through the novel motif, have implications for the mechanism of REST action."	"Phosphorothioate oligonucleotides reduce PrP levels and prion infectivity in cultured cells. Prions are composed solely of the disease-causing prion protein (PrPSc) that is formed from the cellular isoform PrPC by a posttranslational process. Here we report that short phosphorothioate DNA (PS-DNA) oligonucleotides diminished the levels of both PrPC and PrPSc in prion-infected neuroblastoma (ScN2a) cells. The effect of PS-DNA on PrP levels was independent of the nucleotide sequence. The effective concentration (EC50) of PS-DNA required to achieve half-maximal diminution of PrPSc was approximately 70 nM, whereas the EC50 of PS-DNA for PrPC was more than 50-fold greater. This finding indicated that diminished levels of PrPSc after exposure to PS-DNA are unlikely to be due to decreased PrPC levels. Bioassays in transgenic mice demonstrated a substantial diminution in the prion infectivity after ScN2a cells were exposed to PS-DNAs. Whether PS-DNA will be useful in the treatment of prion disease in people or livestock remains to be established."	"Characterization of 5' untranslated regions of the voltage-gated sodium channels SCN1A, SCN2A, and SCN3A and identification of cis-conserved noncoding sequences. The human voltage-gated sodium channel gene cluster on chromosome 2q24 contains three paralogs, SCN1A, SCN2A, and SCN3A, which are expressed in the central nervous system. Mutations in SCN1A and SCN2A cause several subtypes of idiopathic epilepsy. Furthermore, many SCN1A mutations are predicted to reduce protein levels, emphasizing the importance of precise sodium channel gene regulation. To investigate the genetic factors that regulate the expression of SCN1A, SCN2A, and SCN3A, we characterized the 5' untranslated region of each gene. We identified multiple noncoding exons and observed brain region differences in the expression levels of noncoding exons. Comparative sequence analysis revealed 33 conserved noncoding sequences (CNSs) between the orthologous mammalian genes and 6 CNSs between the three human paralogs. Seven CNSs corresponded to noncoding exons. Twelve CNSs were evaluated for their ability to alter the transcription of a luciferase reporter gene, and 3 resulted in a modest, but statistically significant change."	"The TTX metabolite 4,9-anhydro-TTX is a highly specific blocker of the Na(v1.6) voltage-dependent sodium channel. The blocking efficacy of 4,9-anhydro-TTX (4,9-ah-TTX) and TTX on several isoforms of voltage-dependent sodium channels, expressed in Xenopus laevis oocytes, was tested (Na(v1.2), Na(v1.3), Na(v1.4), Na(v1.5), Na(v1.6), Na(v1.7), and Na(v1.8)). Generally, TTX was 40-231 times more effective, when compared with 4,9-ah-TTX, on a given isoform. An exception was Na(v1.6), where 4,9-ah-TTX in nanomole per liter concentrations sufficed to result in substantial block, indicating that 4,9-ah-TTX acts specifically at this peculiar isoform. The IC(50) values for TTX/4,9-ah-TTX were as follows (in nmol/l): 7.8 +/- 1.3/1,260 +/- 121 (Na(v1.2)), 2.8 +/- 2.3/341 +/- 36 (Na(v1.3)), 4.5 +/- 1.0/988 +/- 62 (Na(v1.4)), 1,970 +/- 565/78,500 +/- 11,600 (Na(v1.5)), 3.8 +/- 1.5/7.8 +/- 2.3 (Na(v1.6)), 5.5 +/- 1.4/1,270 +/- 251 (Na(v1.7)), and 1,330 +/- 459/&gt;30,000 (Na(v1.8)). Analysis of approximal half-maximal doses of both compounds revealed minor effects on voltage-dependent activation only, whereas steady-state inactivation was shifted to more negative potentials by both TTX and 4,9-ah-TTX in the case of the Na(v1.6) subunit, but not in the case of other TTX-sensitive ones. TTX shifted steady-state inactivation also to more negative potentials in case of the TTX-insensitive Na(v1.5) subunit, where it also exerted profound effects on the time course of recovery from inactivation. Isoform-specific interaction of toxins with ion channels is frequently observed in the case of proteinaceous toxins. Although the sensitivity of Na(v1.1) to 4,9-ah-TTX is not known, here we report evidence on a highly isoform-specific TTX analog that may well turn out to be an invaluable tool in research for the identification of Na(v1.6)-mediated function, but also for therapeutic intervention."	"The histone H3K4 demethylase SMCX links REST target genes to X-linked mental retardation. Gene transcription is critically influenced by chromatin structure and the modification status of histone tails. Methylation of lysine residues in histone tails is dynamically regulated by the opposing activities of histone methyltransferases and histone demethylases. Here we show that JARID1C/SMCX, a JmjC-domain-containing protein implicated in X-linked mental retardation and epilepsy, possesses H3K4 tri-demethylase activity and functions as a transcriptional repressor. An SMCX complex isolated from HeLa cells contains additional chromatin modifiers (the histone deacetylases HDAC1 and HDAC2, and the histone H3K9 methyltransferase G9a) and the transcriptional repressor REST, suggesting a direct role for SMCX in chromatin dynamics and REST-mediated repression. Chromatin immunoprecipitation reveals that SMCX and REST co-occupy the neuron-restrictive silencing elements in the promoters of a subset of REST target genes. RNA-interference-mediated depletion of SMCX derepresses several of these targets and simultaneously increases H3K4 trimethylation at the sodium channel type 2A (SCN2A) and synapsin I (SYN1) promoters. We propose that loss of SMCX activity impairs REST-mediated neuronal gene regulation, thereby contributing to SMCX-associated X-linked mental retardation."	"A childhood epilepsy mutation reveals a role for developmentally regulated splicing of a sodium channel. Seizure susceptibility is high in human infants compared to adults, presumably because of developmentally regulated changes in neural excitability. Benign familial neonatal-infantile seizures (BFNIS), characterized by both early onset and remission, are caused by mutations in the gene encoding a human sodium channel (NaV1.2). We analyzed neonatal and adult splice forms of NaV1.2 with a BFNIS mutation (L1563V) in human embryonic kidney cells. Computer modeling revealed that neonatal channels are less excitable than adult channels. Introduction of the mutation increased excitability in the neonatal channels to a level similar to adult channels. By contrast, the mutation did not affect the adult channel variant. This &quot;adult-like&quot; increased excitability is likely to be the mechanism underlying BFNIS in infants with this mutation. More generally, developmentally regulated NaV1.2 splicing may be one mechanism that counters the normally high excitability of neonatal neurons and helps to reduce seizure susceptibility in normal human infants."	"Prevention of prion propagation by dehydrocholesterol reductase inhibitors in cultured cells and a therapeutic trial in mice. In prion diseases, the normal cellular form of prion protein (PrP(C)) is converted into the disease-associated isoforms (PrP(Sc)) which accumulate in the infected tissues. Although the precise mechanism of this conversion remains unsolved, drugs of various categories have been reported to reduce the accumulation of PrP(Sc) in prion-infected cultured cells. We here show that AY-9944 (a 7-dehydrocholesterol reductase inhibitor) and U18666A (a 24-dehydrocholesterol reductase inhibitor) prevent PrP(Sc) from accumulating in prion-infected mouse neuroblastoma cells (ScN2a), with an ED50 of about 0.5 microM and 10 nM, respectively. In order to evaluate the efficacy of these two inhibitors in vivo, C57BL/6J mice inoculated with mouse-adapted scrapie-prion received repetitive intraperitoneal injections of U18666A (10 mg/kg) or a mixture of U18666A (10 mg/kg) and AY-9944 (12 mg/kg). By contrast to the potent anti-prion effects observed in ScN2a cells, the in vivo trial was abortive with neither drug halting the progression of the disease."	"SCN2A mutations and benign familial neonatal-infantile seizures: the phenotypic spectrum. Mutations of the sodium channel subunit gene SCN2A have been described in families with benign familial neonatal-infantile seizure (BFNIS). We describe two large families with BFNIS and novel SCN2A mutations. The families had 12 and 9 affected individuals, respectively, with phenotypes consistent with BFNIS. Two mutations were discovered in SCN2A (E430Q; I1596S). Both families had individuals with neonatal onset but the typical age of onset was in the early infantile period (mean 3.0 months). One mutation positive individual, with an otherwise typical clinical pattern, had seizures beginning at 13 months. Two individuals with SCN2A mutations were identified with seizures in later life. In each family a single individual with infantile seizures was mutation negative and thus represented phenocopies. This study extends the age range of presentation of BFNIS, confirms that neonatal and early infantile onsets are characteristic, and emphasizes the role of molecular diagnosis to confirm the etiology."	"Dopamine modulation of neuronal Na(+) channels requires binding of A kinase-anchoring protein 15 and PKA by a modified leucine zipper motif. In hippocampal pyramidal cells, dopamine acts at D1 receptors to reduce peak Na(+) currents by activation of phosphorylation by PKA anchored via an A kinase-anchoring protein (AKAP15). However, the mechanism by which AKAP15 anchors PKA to neuronal Na(+) channels is not known. By using a strategy of coimmunoprecipitation from transfected tsA-201 cells, we have found that AKAP15 directly interacts with Na(v)1.2a channels via the intracellular loop between domains I and II. This loop contains key functional phosphorylation sites. Mutagenesis indicated that this interaction occurs through a modified leucine zipper motif near the N terminus of the loop. Whole-cell patch clamp recordings of acutely dissociated hippocampal pyramidal cells revealed that the D1 dopamine receptor agonist SKF 81297 reduces peak Na(+) current amplitude by 20.5%, as reported previously. Disruption of the leucine zipper interaction between Na(v)1.2a and AKAP15 through the inclusion of a small competing peptide in the patch pipette inhibited the SKF 81297-induced reduction in peak Na(+) current, whereas a control peptide with mutations in amino acids important for the leucine zipper interaction did not. Our results define the molecular mechanism by which G protein-coupled signaling pathways can rapidly and efficiently modulate neuronal excitability through local protein phosphorylation of Na(+) channels by specifically anchored PKA."	"Emerging epilepsy models: insights from mice, flies, worms and fish. Animal models provide a means to investigate fundamental mechanisms of abnormal electrical discharge (i.e., seizures). Understanding the pathogenesis of epilepsy and therapy development have greatly benefited from these models. Here we review recent mouse mutants featuring spontaneous seizures and simpler organisms. New genetically engineered mice provide additional insights to cellular mechanisms underlying seizure generation (BK calcium-activated potassium channels and interneuron-expressed sodium channels), genetic interactions that exacerbate seizure phenotype (Scn2a, Kcnq2 and background) and neurodevelopmental influences (Dlx transcription factors). Mutants for neuronal nicotinic acetylcholine receptors, Glut-1 deficiency and aquaporin channels highlight additional seizure phenotypes in mice. Additional models in Caenorhabditis elegans (Lis-1) and Danio rerio (pentylenetetrazole) highlight a reductionist approach. Taking further advantage of 'simple' organisms, antiepileptic drugs and genetic modifiers of seizure activity are being uncovered in Drosophila. Studies of epilepsy in mutant mice provide a framework for understanding critical features of the brain that regulate excitability. These, and as yet undiscovered, mouse mutants will continue to serve as the foundation for basic epilepsy research. Interestingly, an even greater potential for analyzing epileptic phenotypes may lie in the more widespread use of genetically tractable organisms such as worms, flies and zebrafish."	"Differential effects of five 'classical' scorpion beta-toxins on rNav1.2a and DmNav1 provide clues on species-selectivity. In general, scorpion beta-toxins have been well examined. However, few in-depth studies have been devoted to species selectivity and affinity comparisons on the different voltage-activated Na(+) channels since they have become available as cloned channels that can be studied in heterologous expression systems. As a result, their classification is largely historical and dates from early in vivo experiments on mice and cockroach and fly larvae. In this study, we aimed to provide an updated overview of selectivity and affinity of scorpion beta-toxins towards voltage-activated Na(+) channels of vertebrates or invertebrates. As pharmacological tools, we used the classic beta-toxins AaHIT, Css II, Css IV, Css VI and Ts VII and tested them on the neuronal vertebrate voltage-activated Na(+) channel, rNa(v)1.2a. For comparison, its invertebrate counterpart, DmNav1, was also tested. Both these channels were expressed in Xenopus laevis oocytes and the currents measured with the two-electrode voltage-clamp technique. We supplemented this data with several binding displacement studies on rat brain synaptosomes. The results lead us to propose a general classification and a novel nomenclature of scorpion beta-toxins based on pharmacological activity."	"Molecular genetics of infantile nervous system channelopathies. Inherited or de novo mutations in at least a dozen genes encoding ion channels may present as paroxysmal disorders during the neonatal period or first year of life. These channelopathies include genes encoding voltage-gated channels specific for sodium (SCN1A, SCN2A, SCN1B, SCN9A) and potassium (KCNQ2, KCNQ3) which account for a variety of epilepsy phenotypes ranging from mild, such as Benign familial neonatal seizures (BFNS) to severe, such as Dravet syndrome (severe myoclonic epilepsy of infancy, SMEI) and the rare and unusual syndrome paroxysmal extreme pain disorder (PEPD). Ligand-gated channels involved include the GABA(A) receptor in a variety of epilepsy phenotypes and the human glycine receptor. Mutations in five genes encoding subunits of this receptor and accessory molecules underlie hyperekplexia or stiff-baby syndrome. All these conditions are rare but correct diagnosis is of value not only for genetic counselling but to allow the specific treatment which is available."	"Discovery of diphenyl amine based sodium channel blockers, effective against hNav1.2. The development of new therapies for chronic pain is an area of unmet medical need. Central to pathways of chronic pain is the upregulation of voltage-gated sodium channels. The use of tricyclic antidepressants, which also have sodium channel activity, in chronic pain therapy prompted us to develop novel compounds from this scaffold. Herein, we show that the tricyclic moiety is not needed for effective inhibition of the [(3)H]-BTX binding site and sodium currents of hNa(v)1.2. Our lead compound 6, containing a diphenyl amine motif, demonstrated a 53% inhibitory block of Na(v)1.2 currents at 10microM, which is greater than 50% increase in current block in comparison to the amitriptyline standard. Altogether our study establishes that the tricyclic motif is unnecessary for hNa(v)1.2 activity and modification of the amine portion is detrimental to sodium channel block."	"Effects in neocortical neurons of mutations of the Na(v)1.2 Na+ channel causing benign familial neonatal-infantile seizures. Mutations of voltage-gated Na+ channels are the most common cause of familial epilepsy. Benign familial neonatal-infantile seizures (BFNIS) is an epileptic trait of the early infancy, and it is the only well characterized epileptic syndrome caused exclusively by mutations of Na(V)1.2 Na+ channels, but no functional studies of BFNIS mutations have been done. The comparative study of the functional effects and the elucidation of the pathogenic mechanisms of epileptogenic mutations is essential for designing targeted and effective therapies. However, the functional properties of Na+ channels and the effects of their mutations are very sensitive to the cell background and thus to the expression system used. We investigated the functional effects of four of the six BFNIS mutations identified (L1330F, L1563V, R223Q, and R1319Q) using as expression system transfected pyramidal and bipolar neocortical neurons in short primary cultures, which have small endogenous Na+ current and thus permit the selective study of transfected channels. The mutation L1330F caused a positive shift of the inactivation curve, and the mutation L1563V caused a negative shift of the activation curve, effects that are consistent with neuronal hyperexcitability. The mutations R223Q and R1319Q mainly caused positive shifts of both activation and inactivation curves, effects that cannot be directly associated with a specific modification of excitability. Using physiological stimuli in voltage-clamp experiments, we showed that these mutations increase both subthreshold and action Na+ currents, consistently with hyperexcitability. Thus, the pathogenic mechanism of BFNIS mutations is neuronal hyperexcitability caused by increased Na+ current."	"Localization of Na+ channel isoforms at the atrioventricular junction and atrioventricular node in the rat. The electrical activity of the atrioventricular node (AVN) is functionally heterogeneous, but how this relates to distinct cell types and the 3-dimensional structure of the AVN is unknown. To address this, we have studied the expression of Na(V)1.5 and other Na+ channel isoforms in the AVN. The rat AVN was identified by Masson's trichrome staining together with immunolabeling of marker proteins: connexin40, connexin43, desmoplakin, atrial natriuretic peptide, and hyperpolarization-activated and cyclic nucleotide-gated channel 4. Na+ channel expression was investigated with immunohistochemistry with isoform-specific Na+ channel antibodies. Na(V)1.1 was distributed in a similar manner to Na(V)1.5. Na(V)1.2 was not detected. Na(V)1.3 labeling was present in nerve fibers and cell bodies (but not myocytes) and was abundant in the penetrating atrioventricular (AV) bundle and the common bundle but was much less abundant in other regions. Na(V)1.5 labeling was abundant in the atrial and ventricular myocardium and the left bundle branch. Na(V)1.5 labeling was absent in the open node, penetrating AV bundle, AV ring bundle, and common bundle but present at a reduced level in the inferior nodal extension and transitional zone. Na(V)1.6 was not detected. Our findings provide molecular evidence of multiple electrophysiological cell types at the AV junction. Impaired AV conduction as a result of mutations in or loss of Na(V)1.5 must be the result of impaired conduction in the AVN inputs (inferior nodal extension and transitional zone) or output (bundle branches) rather than the AVN itself (open node and penetrating AV bundle)."	"Tramadol, fentanyl and sufentanil but not morphine block voltage-operated sodium channels. Lidocaine-like sodium channel blocking drugs provide pain relief either by interrupting impulse conduction in neurons when applied locally in high concentrations or, when given systemically, by suppressing high-frequency ectopic discharges due to preferential drug binding to inactivated channel states. Lidocaine-like actions of opioids have frequently been demonstrated clinically. However, drug binding to resting and inactivated channel conformations has been studied systematically only in the case of meperidine. The aim of this in vitro study was to investigate the effects of four currently used opioids on heterologously expressed neuronal (NaV(1.2)) voltage-gated sodium channels. Block of sodium currents was studied at hyperpolarized holding potentials and at depolarized potentials inducing either fast- or slow-inactivation. Sufentanil, fentanyl and tramadol but not morphine reversibly suppressed sodium inward currents at high concentrations (half-maximum blocking concentrations (IC50) 49+/-4, 141+/-6 and 103+/-8 microM) when depolarizations were started from hyperpolarized holding potentials. Short depolarizations inducing fast-inactivation and long prepulses inducing slow-inactivation significantly (*p &lt; or = 0.001) increased the blocking potency for these opioids. 15% slow inactivated channels reduced the respective IC50 values to 5+/-3, 12+/-2 and 21+/-2 microM. These results show that: (1) Sufentanil, fentanyl and tramadol block voltage-gated sodium channels with half-maximum inhibitory concentrations similar to the IC50 reported for meperidine. (2) Slow inactivation--a physiological mechanism to suppress ectopic activity in response to slow shifts in membrane potential--increases binding affinity for sufentanil, fentanyl and tramadol. (3) Morphine has no such effects."	"THE SCN2A gene is not a likely candidate for familial mesial temporal lobe epilepsy. A transgenic mouse model carrying a mutation in the Scn2a gene showed chronic focal seizures associated with extensive cell loss and gliosis in the hippocampus, a similar phenotype found in familial mesial temporal lobe epilepsy (FMTLE). Our objective was to test whether the human homolog of the Scn2a gene is responsible for hippocampal abnormalities in FMTLE by linkage analysis. We conclusively ruled out the SCN2A gene as candidate in FMTLE."	"Similar structure-activity relationships of quinoline derivatives for antiprion and antimalarial effects. Prion diseases are invariably fatal neurodegenerative diseases, in which the infectious agent consists of PrP(Sc), a pathogenic misfolded isoform of the normal cellular prion protein (PrP(C)). Until now, no pharmacological options exist for these novel pathogens. Here we describe the screening of a series of polyquinolines and quinolines linked to a large variety of terminal groups for their ability to cure a persistently prion infected cell line (ScN2a). Several compounds showed antiprion activity in the nanomolar range. The most active molecule, named 42, had a half-effective concentration (EC50) for antiprion activity of 50 nM. In a library of quinoline derivatives we were able to identify several structure-activity relationships (SAR). Remarkably, antiprion SAR in ScN2a cells were similar to antimalarial SAR in a cell model of malaria, particularly for the sulfonamide quinoline derivatives, suggesting that some molecular targets of antiprion and antimalarial substances overlap."	"The charge structure of helix 1 in the prion protein regulates conversion to pathogenic PrPSc. The prion diseases are transmissible neurodegenerative disorders linked to a pathogenic conformer (PrP(Sc)) of the normal prion protein (PrP(C)). Accumulation of PrP(Sc) occurs via a poorly defined process in which PrP(Sc) complexes with and converts endogenous PrP(C) to nascent PrP(Sc). Recent experiments have focused on the highly charged first alpha helix (H1) of PrP. It has been proposed that two putative asparagine-to-arginine intrahelical salt bridges stabilize H1 in PrP(C) yet form intermolecular ionic bonds with adjacent PrP molecules during conversion of PrP(C) to PrP(Sc) (M. P. Morrissey and E. I. Shakhnovich, Proc. Natl. Acad. Sci. USA 96:11293-11298, 1999). Subsequent work (J. O. Speare et al., J. Biol. Chem. 278:12522-12529, 2003 using a cell-free assay of PrP(Sc) conversion suggested that rather than promoting conversion, the salt bridges stabilize PrP(C) against it. However, the role of individual H1 charges in PrP(Sc) generation has not yet been investigated. To approach this question, we systematically reversed or neutralized each charged residue in H1 and tested the effect on conversion to PrP(Sc) in scrapie-infected murine neuroblastoma (ScN2a) cells. We find that replacements of charged H1 residues with like charges permit conversion, while charge reversals hinder it. Neutralization of charges in the N-terminal (amino acids 143 to 146) but not the C-terminal (amino acids 147 to 151) half of H1 permits conversion, while complete reversal of charge orientation of the putative salt bridges produces a nonconvertible PrP. Circular dichroism spectroscopy studies and confocal microscopy immunofluorescence localization studies indicated that charge substitutions did not alter the secondary structure or cell surface expression of PrP(C). These data support the necessity of specific charge orientations in H1 for a productive PrP(Sc)-PrP(C) complex."	"Molecular genetics of febrile seizures. Febrile seizures (FSs) represent the most common form of childhood seizures, occurring in 2-5% of infants in Europe and North America and in 6-9% in Japan. It has been recognized that there is a significant genetic component for susceptibility to this type of seizure. Six susceptibility FS loci have been identified on chromosomes 8q13-q21 (FEB1), 19p (FEB2), 2q23-q24 (FEB3), 5q14-q15 (FEB4), 6q22-q24 (FEB5), and 18p11 (FEB6). Furthermore, mutations in the voltage-gated sodium channel alpha-1, alpha-2 and beta-1 subunit genes (SCN1A, SCN2A and SCN1B) and the GABA(A) receptor gamma-2 subunit gene (GABRG2) have been identified in families with a clinical subset of seizures termed &quot;generalized epilepsy with febrile seizure plus (GEFS+)&quot;. However, the causative genes have not been identified in most patients with FSs or GEFS+. Common forms of FSs are genetically complex disorders believed to be influenced by variations in several susceptibility genes. Recently, several association studies in FSs have been reported, but the results vary among different groups and no consistent or convincing FS susceptibility genes have emerged. To find a true association, larger sample size and newer methodologic refinements are recommended."	"Phenotypes and genotypes in epilepsy with febrile seizures plus. In the last several years, mutations of sodium channel genes, SCN1A, SCN2A, and SCN1B, and GABA(A) receptor gene, GABRG2 were identified as causes of some febrile seizures related epilepsies. In 19 unrelated Japanese families whose probands had febrile seizures plus or epilepsy following febrile seizures plus, we identified 2 missense mutations of SCN1A to be responsible for the seizure phenotypes in two FS+ families and another mutation of SCN2A in one family. The combined frequency of SCN1A, SCN2A, SCN1B, SCN2B, and GABRG2 mutations in Japanese patients with FS+ was 15.8%. One family, which had R188W mutation in SCN2A, showed digenic inheritance, and another modifier gene was thought to take part in the seizure phenotype. The phenotypes of probands were FS+ in 5, FS+ and partial epilepsy in 10, FS+ and generalized epilepsy in 3, and FS+ and unclassified epilepsy in 1. We proposed the term epilepsy with febrile seizures plus (EFS+), because autosomal-dominant inheritance in EFS+ might be rare, and most of EFS+ display a complex pattern of inheritance, even when it appears to be an autosomal-dominant inheritance. There is a possibility of simultaneous involvement of multiple genes for seizure phenotypes."	"Isoform-specific effects of the beta2 subunit on voltage-gated sodium channel gating. Voltage-gated sodium channels (Nav) are complex glycoproteins comprised of an alpha subunit and often one to several beta subunits. We have shown that sialic acid residues linked to Nav alpha and beta1 subunits alter channel gating. To determine whether beta2-linked sialic acids similarly impact Nav gating, we co-expressed beta2 with Nav1.5 or Nav1.2 in Pro5 (complete sialylation) and in Lec2 (essentially no sialylation) cells. Beta2 sialic acids caused a significant hyperpolarizing shift in Nav1.5 voltage-dependent gating, thus describing for the first time an effect of beta2 on Nav1.5 gating. In contrast, beta2 caused a sialic acid-independent depolarizing shift in Nav1.2 gating. A deglycosylated mutant, beta(2-DeltaN), had no effect on Nav1.5 gating, indicating further the impact of beta2 N-linked sialic acids on Nav1.5 gating. Conversely, beta(2-DeltaN) modulated Nav1.2 gating virtually identically to beta2, confirming that beta2 N-linked sugars have no impact on Nav1.2 gating. Thus, beta2 modulates Nav gating through multiple mechanisms possibly determined by the associated alpha subunit. Beta1 and beta2 were expressed together with Nav1.5 or Nav1.2 in Pro5 and Lec2 cells. Together beta1 and beta2 produced a significantly larger sialic acid-dependent hyperpolarizing shift in Nav1.5 gating. Under fully sialylating conditions, the Nav1.2.beta1.beta2 complex behaved like Nav1.2 alone. When sialylation was reduced, only the sialic acid-independent depolarizing effects of beta2 on Nav1.2 gating were apparent. Thus, the varied effects of beta1 and beta2 on Nav1.5 and Nav1.2 gating are apparently synergistic and highlight the complex manner, through subunit- and sugar-dependent mechanisms, by which Nav activity is modulated."	"G-protein activation modulates pseudo-periodic oscillation of Na channel. We have shown before that the duration and amplitude of both prolonged (1-160 s) and short (100-1000 ms) depolarizing prepulse altered all the steady-state and kinetic parameters of rNav1.2a voltage-gated sodium channel in a pseudo-oscillatory fashion with variable time period and amplitude, often superimposed on a linear trend. In this study, we have examined the effect of G-protein activation on pseudo-oscillatory properties of the rNav1.2a sodium channel alpha subunit, heterologously expressed in Chinese hamster ovary cells. G-protein modification caused insignificant changes in the slow pseudo-periodic oscillation of the activation properties of sodium channel; only the time period of the oscillation was altered from approximately 30 to 21s. In contrast, G-protein activation abolished the faster component of pseudo-periodic oscillation in steady-state inactivation properties of sodium channel; the conditioning duration dependence of steady-state inactivation becomes monotonic in nature."	"Impaired firing and cell-specific compensation in neurons lacking nav1.6 sodium channels. The ability of neurons to fire precise patterns of action potentials is critical for encoding inputs and efficiently driving target neurons. At the axon initial segment and nodes of Ranvier, where nerve impulses are generated and propagated, a high density of Na(v)1.2 sodium channels is developmentally replaced by Na(v)1.6 channels. In retinal ganglion cells (GCs), this isoform switch coincides with the developmental transition from single spikes to repetitive firing. Also, Na(v)1.6 channels are required for repetitive spiking in cerebellar Purkinje neurons. These previous observations suggest that the developmental appearance of Na(v)1.6 underlies the transition to repetitive spiking in GCs. To test this possibility, we recorded from GCs of med (Na(v)1.6-null) and wild-type mice during postnatal development. By postnatal day 18, when the switch to Na(v)1.6 at GC initial segments is normally complete, the maximal sustained and instantaneous firing rates were lower in med than in wild-type GCs, demonstrating that Na(v)1.6 channels are necessary to attain physiologically relevant firing frequencies in GCs. However, the firing impairment was milder than that reported previously in med Purkinje neurons, which prompted us to look for differences in compensatory sodium channel expression. Both Na(v)1.2 and Na(v)1.1 channels accumulated at initial segments and nodes of med GCs, sites normally occupied by Na(v)1.6. In med Purkinje cells, only Na(v)1.1 channels were found at initial segments, whereas in other brain regions, only Na(v)1.2 was detected at med initial segments and nodes. Thus, compensatory mechanisms in channel isoform distribution are cell specific, which likely results in different firing properties."	"Linkage analysis and disease models in benign familial infantile seizures: a study of 16 families. Benign familial infantile seizures (BFIS) is a genetically heterogeneous condition characterized by partial seizures, onset age from 3 to 9 months, and favorable outcome. BFIS loci were identified on chromosomes 19q12-13.1 and 16p12-q12, allelic to infantile convulsions and choreathetosis. The identification of SCN2A mutations in families with only infantile seizures indicated that BFNIS and BFIS may show overlapping clinical features. Infantile seizures also were in a family with familial hemiplegic migraine and mutations in the ATP1A2 gene. We have examined the heterogeneous genetics of BFIS by means of linkage analysis. Sixteen families were examined. Probands underwent neurologic examination, at least one EEG recording, and, when possible, brain CT and MRI. Clinical information about relatives was collected. Families with SCN2A or ATP1A2 mutations were excluded from the study. Chromosome 16p and 19q loci were examined by linkage analysis using two models that differed in penetrance rate. Genetic heterogeneity was evaluated with both models. Clinical information was available for 124 members of affected families. BFIS was diagnosed in 69 subjects. One patient without BFIS had a single febrile seizure, and another had rare episodes of paroxysmal dystonia. Evidence of linkage was obtained only for chromosome 16. Moreover, the high penetrance allowed the identification of genetic heterogeneity. Our data confirm the relevance of the chromosome 16 locus in BFIS and suggest the presence of an additional locus. This study shows that the genetic model used affects the outcome of linkage analysis."	"Immunolocalization of NaV1.2 channel subtypes in rat and cat brain and spinal cord with high affinity antibodies. High titer polyclonal antibodies were produced in rabbit against a peptide unique to NaV1.2 sodium channels. NaV1.2 antibodies displayed 500,000-fold greater affinity for the NaV1.2 peptide compared with NaV1.1 or NaV1.3 peptides from the same region. These antibodies, when coupled to Sepharose beads, retained saxitoxin binding sites from solubilized rat brain membranes. Eluted protein from this antibody-affinity column was recognized by antibodies directed against neuronal voltage-gated sodium channels. Rabbit antibodies, which had been partially purified, were used in immunocytochemical localization of the NaV1.2 channel in 50 microm rat brain slices at dilutions of 1:1000 or 1:2000. NaV1.2 channels were predominately localized in unmyelinated fibers in the cortex, hippocampus, spinal cord and hypothalamus. Varicosities were seen in fiber staining which may reflect true varicosities in the fiber or simply varying densities of sodium channels along the fiber. Cell body staining with the NaV1.2 antibody was primarily observed in the hypothalamus. Antibody staining in the cerebellum was complex, with staining observed primarily in posterior lobes and considerably lower amounts of staining observed in anterior lobes. Specific staining was limited to fibers located in the granule and molecular layer, in an orientation consistent with granule cell unmyelinated axon labeling."	"Na channel gene mutations in epilepsy--the functional consequences. Mutations of voltage-gated sodium channel genes SCN1A, SCN2A, and SCN1B have been identified in several types of epilepsies including generalized epilepsy with febrile seizures plus (GEFS+) and severe myoclonic epilepsy in infancy (SMEI). In both SCN1A and SCN2A, missense mutations tend to result in benign idiopathic epilepsy, whereas truncation mutations lead to severe and intractable epilepsy. However, the results obtained by the biophysical analyses using cultured cell systems still remain elusive. Now studies in animal models harboring sodium channel gene mutations should be eagerly pursued."	"Chinese-scorpion (Buthus martensi Karsch) toxin BmK alphaIV, a novel modulator of sodium channels: from genomic organization to functional analysis. In the present study, BmK alphaIV, a novel modulator of sodium channels, was cloned from venomous glands of the Chinese scorpion (Buthus martensi Karsch) and expressed successfully in Escherichia coli. The BmK alphaIV gene is composed of two exons separated by a 503 bp intron. The mature polypeptide contains 66 amino acids. BmK alphaIV has potent toxicity in mice and cockroaches. Surface-plasmon-resonance analysis found that BmK alphaIV could bind to both rat cerebrocortical synaptosomes and cockroach neuronal membranes, and shared similar binding sites on sodium channels with classical AaH II (alpha-mammal neurotoxin from the scorpion Androctonus australis Hector), BmK AS (beta-like neurotoxin), BmK IT2 (the depressant insect-selective neurotoxin) and BmK abT (transitional neurotoxin), but not with BmK I (alpha-like neurotoxin). Two-electrode voltage clamp recordings on rNav1.2 channels expressed in Xenopus laevis oocytes revealed that BmK alphaIV increased the peak amplitude and prolonged the inactivation phase of Na+ currents. The structural and pharmacological properties compared with those of other scorpion alpha-toxins suggests that BmK alphaIV represents a novel subgroup or functional hybrid of alpha-toxins and might be an evolutionary intermediate neurotoxin for alpha-toxins."	"Expression of sodium channels Nav1.2 and Nav1.6 during postnatal development of the retina. During the second and third postnatal weeks, there is a developmental switch from sodium channel isoform Na(v)1.2 to isoform Na(v)1.6 at initial segments and nodes of Ranvier in rat retinal ganglion cells. We used quantitative, real-time PCR to determine if the developmental appearance of Na(v)1.6 channels is accompanied by an increase in steady-state level of Na(v)1.6 mRNA in the retina. Between postnatal day 2 (P2) and P10, Na(v)1.6 levels did not change, but between P10 and P19, there was an approximately three-fold increase in Na(v)1.6 transcript levels. This coincides with the appearance of Na(v)1.6 channels in the retina and optic nerve. The steady-state level of Na(v)1.2 mRNA also increased during this same period, which suggests that the rise in Na(v)1.6 may be part of a general increase in sodium channel transcripts at about the time of eye opening at P14. The results are consistent with a developmental increase in steady-state transcripts giving rise to a corresponding increase in sodium channel protein expression."	"Tricyclic antidepressants, quinacrine and a novel, synthetic chimera thereof clear prions by destabilizing detergent-resistant membrane compartments. Prion diseases are invariably fatal, neurodegenerative diseases transmitted by an infectious agent, PrPSc, a pathogenic, conformational isoform of the normal prion protein (PrPC). Heterocyclic compounds such as acridine derivatives like quinacrine abolish prion infectivity in a cell culture model of prion disease. Here, we report that these compounds execute their antiprion activity by redistributing cholesterol from the plasma membrane to intracellular compartments, thereby destabilizing membrane domains. Our findings are supported by the fact that structurally unrelated compounds with known cholesterol-redistributing effects - U18666A, amiodarone, and progesterone - also possessed high antiprion potency. We show that tricyclic antidepressants (e.g. desipramine), another class of heterocyclic compounds, displayed structure-dependent antiprion effects and enhanced the antiprion effects of quinacrine, allowing lower doses of both drugs to be used in combination. Treatment of ScN2a cells with quinacrine or desipramine induced different ultrastructural and morphological changes in endosomal compartments. We synthesized a novel drug from quinacrine and desipramine, termed quinpramine, that led to a fivefold increase in antiprion activity compared to quinacrine with an EC50 of 85 nm. Furthermore, simvastatin, an inhibitor of cholesterol biosynthesis, acted synergistically with both heterocyclic compounds to clear PrPSc. Our data suggest that a cocktail of drugs targeting the lipid metabolism that controls PrP conversion may be the most efficient in treating Creutzfeldt-Jakob disease."	"Increased Src kinase level results in increased protein tyrosine phosphorylation in scrapie-infected neuronal cell lines. We have studied how prion infection may affect the Src kinase activity in three different neuronal cell lines, ScGT1 and ScN2a, where ScGT1 were generated in our laboratory. By immunoblotting, using clone 28 - a monoclonal antibody recognizing active Src, we have found a 32+/-6.3% and 75+/-7.7% elevation in Src activity in ScGT1 and ScN2a cells, respectively, compared to uninfected cells. Immunocomplex in vitro kinase assay confirmed the increased Src activity. The increased Src kinase activity in scrapie-infected cells was further shown to correlate to an increased level of Src protein. In addition, an important increase in the protein tyrosine phosphorylation signal was observed in ScGT1 and ScN2a cells, which was further shown to be Src-dependent, as treatment with PP2 - a Src family kinase specific inhibitor, reversed the protein tyrosine phosphorylation profile. Abnormal Src-kinase activation and subsequent protein tyrosine phosphorylation may be key elements in the neuropathology of the prion diseases."	"Inhibition of the rat brain sodium channel Nav1.2 after prolonged exposure to gabapentin. Prolonged exposure of neurons to gabapentin inhibits repetitive firing of Na(+)-dependent action potentials. Here, we studied the effect of such prolonged exposure to gabapentin on a rat sodium channel, Nav1.2. After 3 days of continuous incubation with gabapentin (10-1000 microM), Nav1.2 current density was decreased dose-dependently relative to untreated cells. The reduction was 57% at 30 microM gabapentin, while higher concentrations (100-1000 microM) did not result in greater effects. Prolonged treatment with gabapentin also caused the channel to inactivate at more hyperpolarized potentials. These effects provide a mechanistic basis for the inhibition of Na(+)-dependent repetitive firing upon prolonged exposure to gabapentin and may contribute to its anticonvulsant activity."	"Fast pseudo-periodic oscillation in the rat brain voltage-gated sodium channel alpha subunit. In the work reported here, we have investigated the changes in the activation and fast inactivation properties of the rat brain voltage-gated sodium channel (rNa(v) 1.2a) alpha subunit, expressed heterologously in the Chinese Hamster Ovary (CHO) cells, by short depolarizing prepulses (10-1000 ms). The time constant of recovery from fast inactivation (tau(fast)) and steady-state parameters for activation and inactivation varied in a pseudo-oscillatory fashion with the duration and amplitude of a sustained prepulse. A consistent oscillation was observed in most of the steady-state and non-inactivating current parameters with a time period close to 225 ms, although a faster oscillation of time period 125 ms was observed in the tau(fast). The studies on the non-inactivating current and steady-state activation indicate that the phase of oscillation varies from cell to cell. Co-expression of the beta1 subunit with the alpha subunit channel suppressed the oscillation in the charge movement per single channel and free energy of steady-state inactivation, although the oscillation in the half steady-state inactivation potential remained unaltered. Incidentally, the frequencies of oscillation in the sodium channel parameters (4-8 Hz) correspond to the theta component of network oscillation. This fast pseudo-oscillatory mechanism, together with the slow pseudo-oscillatory mechanism found in these channels earlier, may contribute to the oscillations in the firing properties observed in various neuronal subtypes and many pathological conditions."	"Genes and loci involved in febrile seizures and related epilepsy syndromes. Epilepsy is a paroxysmal disorder with a cumulative incidence of about 3%. About 13% of patients with epilepsy have a history of febrile seizures (FS). Generalized epilepsy with FS plus (GEFS+) is a familial epilepsy syndrome in which patients can have classic FS, FS that persist beyond the age of 5 years (i.e., FS+), and/or epilepsy. Both genetic and environmental factors have been shown to contribute to the pathogenesis of FS and GEFS+. During the past 10 years, molecular genetic studies have contributed a great deal to the identification of genetic factors involved in FS and GEFS+. In this study we aimed to provide a comprehensive review of currently known genes for FS and GEFS+, and the methods and approaches used to identify them. We also discuss the knowledge we currently have and hypotheses regarding the effect of the mutations on their respective protein functions."	"An epilepsy mutation in the sodium channel SCN1A that decreases channel excitability. Mutations in three voltage-gated sodium channel genes, SCN1A, SCN2A, and SCN1B, and two GABAA receptor subunit genes, GABRG2 and GABRD, have been identified in families with generalized epilepsy with febrile seizures plus (GEFS+). A novel mutation, R859C, in the Nav1.1 sodium channel was identified in a four-generation, 33-member Caucasian family with a clinical presentation consistent with GEFS+. The mutation neutralizes a positively charged arginine in the domain 2 S4 voltage sensor of the Nav1.1 channel alpha subunit. This residue is conserved in mammalian sodium channels as well as in sodium channels from lower organisms. When the mutation was placed in the rat Nav1.1 channel and expressed in Xenopus oocytes, the mutant channel displayed a positive shift in the voltage dependence of sodium channel activation, slower recovery from slow inactivation, and lower levels of current compared with the wild-type channel. Computational analysis suggests that neurons expressing the mutant channel have higher thresholds for firing a single action potential and for firing multiple action potentials, along with decreased repetitive firing. Therefore, this mutation should lead to decreased neuronal excitability, in contrast to most previous GEFS+ sodium channel mutations, which have changes predicted to increase neuronal firing."	"Phoneutria nigriventer toxin 1: a novel, state-dependent inhibitor of neuronal sodium channels that interacts with micro conotoxin binding sites. A toxin was purified to homogeneity from the venom of the South American armed spider Phoneutria nigriventer and found to have a molecular mass of 8600 Da and a C-terminally amidated glycine residue. It appears to be identical to Toxin 1 (Tx1) isolated previously from this venom. Tx1 reversibly inhibited sodium currents in Chinese hamster ovary cells expressing recombinant sodium (Na(v)1.2) channels without affecting their fast biophysical properties. The kinetics of inhibition of peak sodium current varied with membrane potential, with on-rates increasing and off-rates decreasing with more depolarized holding potentials in the -100 to -50 mV range. Thus, the apparent affinity of Tx1 for the channel increases as the membrane is depolarized. A mono[(125)I]iodo-Tx1 derivative displayed high-affinity binding to a single class of sites (K(D) = 80 pM, B(max) = 0.43 pmol/mg protein) in rat brain membranes. Solubilized binding sites were immunoprecipitated by antibodies directed against a conserved motif in sodium channel alpha subunits. (125)I-Tx1 binding was competitively displaced by mu conotoxin GIIIB (IC(50) = 0.5 microM) but not by 1 microM tetrodotoxin. However, the inhibition of (125)I-Tx1 binding by mu conotoxin GIIIB was abrogated in the presence of tetrodotoxin (1 microM). Patch-clamp and binding data indicate that P. nigriventer Tx1 is a novel, state-dependent sodium-channel blocker that binds to a site in proximity to pharmacological site 1, overlapping mu conotoxin but not tetrodotoxin binding sites."	"Severe epilepsy resulting from genetic interaction between Scn2a and Kcnq2. A mutation in the voltage-gated sodium-channel Scn2a results in moderate epilepsy in transgenic Scn2a(Q54) mice maintained on a C57BL/6J strain background. The onset of progressive epilepsy begins in adults with short-duration partial seizures that originate in the hippocampus. The underlying abnormality is an increase in persistent sodium current in hippocampal neurons. The voltage-gated potassium channel Kcnq2 is responsible for generating M current (I(KM)) that is thought to control excitability and limit repetitive firing of hippocampal neurons. To determine whether impaired M current would exacerbate the seizure phenotype of Scn2a(Q54) mice, we carried out genetic crosses with two mutant alleles of Kcnq2. Szt1 mice carry a spontaneous deletion that removes the C-terminal domain of Kcnq2. A novel Kcnq2 missense mutation V182M was identified by screening the offspring of ENU-treated males for reduced threshold to electrically evoked minimal clonic seizures. Double mutant mice carrying the Scn2a(Q54) transgene together with either of the Kcnq2 mutations exhibited severe epilepsy with early onset, generalized tonic-clonic seizures and juvenile lethality by 3 weeks of age. This dramatic exacerbation of the sodium-channel mutant phenotype indicates that M current plays a critical role in preventing seizure initiation and spreading in this animal model. The genetic interaction between Scn2a and Kcnq2 demonstrates that combinations of mild alleles of monogenic epilepsy genes can result in severe disease and provides a model for complex inheritance of human epilepsy. The data suggest that interaction between these genes might contribute to the variable expressivity observed in human families with sodium-channel mutations. In a screen of 23 SMEI patients with missense mutations of SCN1A, no second-site mutations in KCNQ2 were identified."	"The muO-conotoxin MrVIA inhibits voltage-gated sodium channels by associating with domain-3. Several families of peptide toxins from cone snails affect voltage-gated sodium (Na(V)) channels: mu-conotoxins block the pore, delta-conotoxins inhibit channel inactivation, and muO-conotoxins inhibit Na(V) channels by an unknown mechanism. The only currently known muO-conotoxins MrVIA and MrVIB from Conus marmoreus were applied to cloned rat skeletal muscle (Na(V)1.4) and brain (Na(V)1.2) sodium channels in mammalian cells. A systematic domain-swapping strategy identified the C-terminal pore loop of domain-3 as the major determinant for Na(V)1.4 being more potently blocked than Na(V)1.2 channels. muO-conotoxins therefore show an interaction pattern with Na(V) channels that is clearly different from the related mu- and delta-conotoxins, indicative of a distinct molecular mechanism of channel inhibition."	"Neuromodulation of Na+ channel slow inactivation via cAMP-dependent protein kinase and protein kinase C. Neurotransmitters modulate sodium channel availability through activation of G protein-coupled receptors, cAMP-dependent protein kinase (PKA), and protein kinase C (PKC). Voltage-dependent slow inactivation also controls sodium channel availability, synaptic integration, and neuronal firing. Here we show by analysis of sodium channel mutants that neuromodulation via PKA and PKC enhances intrinsic slow inactivation of sodium channels, making them unavailable for activation. Mutations in the S6 segment in domain III (N1466A,D) either enhance or block slow inactivation, implicating S6 segments in the molecular pathway for slow inactivation. Modulation of N1466A channels by PKC or PKA is increased, whereas modulation of N1466D is nearly completely blocked. These results demonstrate that neuromodulation by PKA and PKC is caused by their enhancement of intrinsic slow inactivation gating. Modulation of slow inactivation by neurotransmitters acting through G protein-coupled receptors, PKA, and PKC is a flexible mechanism of cellular plasticity controlling the firing behavior of central neurons."	"A novel SCN2A mutation in family with benign familial infantile seizures. Benign familial infantile seizures (BFIS) is a clinical entity characterized by focal seizures with or without secondary generalization, occurring mostly in clusters, and usually first seen between 4 and 8 months of life. Psychomotor development is normal, and seizures usually resolve within the first year of life. BFIS is a genetically heterogenous condition with loci mapped to chromosomes 19 and 16. Mutations in the voltage-gated sodium channel alpha2 subunit (SCN2A) gene on chromosome 2 were recently identified in families affected by neonatal and infantile seizures (benign familial neonatal-infantile seizures, BFNIS) with typical onset before 4 months of life. The identification of SCN2A mutations in families with only infantile seizures indicated that BFNIS and BFIS show overlapping clinical features. We report a pedigree showing three affected individuals over three generations. All subjects experienced clusters of focal seizures with or without secondary generalization and onset between 4 and 12 months of life. Response to antiepileptic drugs and the outcome were good. No subjects had other forms of epilepsy later in the life. Neonatal or febrile seizures did not occur in the family. Genetic study in this family revealed a novel heterozygous mutation c.3003 T&gt;A in the SCN2A gene. Comparative analysis of different sodium channel alpha subunits indicates that the mutated residue is highly conserved throughout the evolution, suggesting an important functional role for this domain. Additional families with the infantile form of benign familial seizures should be investigated to corroborate that BFIS and BFNIS may share the same genetic abnormality."	"Neonatal epilepsy syndromes and GEFS+: mechanistic considerations. Genetic analyses of familial epilepsies over the past decade have identified mutations in several different ion channel genes that result in neonatal or early-onset seizure disorders, including benign familial neonatal convulsions (BFNC), generalized epilepsy with febrile seizures plus (GEFS+), and severe myoclonic epilepsy of infancy (SMEI). These genes encode voltage-gated Na+ channel subunits (SCN1A, SCN2A, SCN1B), voltage-gated K+ channel subunits (KCNQ2, KCNQ3), and a ligand-gated neurotransmitter receptor subunit (GABRG2). While the opportunity to genotype patients for mutations in these genes can have an immediate and significant impact on our ability to diagnose and provide genetic counseling to patients, the ultimate goal is to use this molecular knowledge to develop effective treatments and cures for each disorder. This will necessitate elucidation of the molecular, cellular, and network mechanisms that translate ion channel defects into specific epilepsy phenotypes. The functional analysis of epileptogenic channel mutations in vitro and in vivo has already provided a vast amount of raw biophysical data, but attempts to interpret these data to explain clinical phenotypes so far appear to raise as many questions as they answer. Nevertheless, patterns are beginning to emerge from these early studies that will help define the full scope of the challenges ahead while simultaneously providing the foundation of future efforts to overcome them. Here, I discuss some of the potential mechanisms that have been uncovered recently linking mutant ion channel genes to neonatal epilepsy syndromes and GEFS+."	"The polysaccharide scaffold of PrP 27-30 is a common compound of natural prions and consists of alpha-linked polyglucose. An inert polysaccharide scaffold identified as a 5-15% component of prion rods (PrP 27-30) is unambiguously distinguishable from the N-glycosyl groups and the GPI anchor of PrP, and consists predominantly of 1,4-linked glucose with some branching via 1,4,6-linked glucose. We show that this polysaccharide scaffold is a common secondary component of prions found in hamster full-length PrP(Sc), prion rods and in mouse ScN2a prions from cell culture. The preparation from prion rods was improved, resulting in a polysaccharide scaffold free of remaining infectivity. Furthermore, we determined the stereochemistry of the glycoside linkages as pre-dominantly if not entirely alpha-glycosidic. The origin of the polysaccharide, its interaction with PrP and its potential relation to glycogen and corpora amylacea are discussed."	"Seizures of idiopathic generalized epilepsies. Idiopathic generalized epilepsies (IGEs) comprise at least 40% of epilepsies in the United States, 20% in Mexico, and 8% in Central America. Here, we review seizure phenotypes across IGE syndromes, their response to treatment and advances in molecular genetics that influence nosology. Our review included the Medline database from 1945 to 2005 and our prospectively collected Genetic Epilepsy Studies (GENESS) Consortium database. Generalized seizures occur with different and similar semiologies, frequencies, and patterns, ages at onset, and outcomes in different IGEs, suggesting common neuroanatomical pathways for seizure phenotypes. However, the same seizure phenotypes respond differently to the same treatments in different IGEs, suggesting different molecular defects across syndromes. De novo mutations in SCN1A in sporadic Dravet syndrome and germline mutations in SCN1A, SCN1B, and SCN2A in generalized epilepsies with febrile seizures plus have unraveled the heterogenous myoclonic epilepsies of infancy and early childhood. Mutations in GABRA1, GABRG2, and GABRB3 are associated with absence seizures, while mutations in CLCN2 and myoclonin/EFHC1 substantiate juvenile myoclonic epilepsy as a clinical entity. Refined understanding of seizure phenotypes, their semiology, frequencies, and patterns together with the identification of molecular lesions in IGEs continue to accelerate the development of molecular epileptology."	"Genetics of idiopathic generalized epilepsies. The idiopathic generalized epilepsies (IGEs) are considered to be primarily genetic in origin. They encompass a number of rare mendelian or monogenic epilepsies and more common forms which are familial but manifest as complex, non-mendelian traits. Recent advances have demonstrated that many monogenic IGEs are ion channelopathies. These include benign familial neonatal convulsions due to mutations in KCNQ2 or KCNQ3, generalized epilepsy with febrile seizures plus due to mutations in SCN1A, SCN2A, SCN1B, and GABRG2, autosomal-dominant juvenile myoclonic epilepsy (JME) due to a mutation in GABRA1 and mutations in CLCN2 associated with several IGE sub-types. There has also been progress in understanding the non-mendelian IGEs. A haplotype in the Malic Enzyme 2 gene, ME2, increases the risk for IGE in the homozygous state. Five missense mutations have been identified in EFHC1 in 6 of 44 families with JME. Rare sequence variants have been identified in CACNA1H in sporadic patients with childhood absence epilepsy in the Chinese Han population. These advances should lead to new approaches to diagnosis and treatment."	"Comparison of the effects of four Na+ channel analgesics on TTX-resistant Na+ currents in rat sensory neurons and recombinant Nav1.2 channels. Na(+) channel blockers are highly effective analgesics. Among the neuronal Na(+) channel subtypes, Nav1.8 is discussed to be of importance for certain pain states, and Nav1.8-preferring Na(+) channel blockers should be able to relief pain without causing severe effects (due to the restricted expression of this channel type). In this study, the effects of four Na(+) channel blockers on rat tetrodotoxin-resistant (TTX-r) Na(+) channels (representing mostly Nav1.8) in sensory neurons were investigated using the patch-clamp technique in the voltage-clamp configuration, and compared with those on cells heterologously expressing Nav1.2 alpha subunits. The compounds were lidocaine, mexiletine, benzocaine, and ambroxol, which are clinically used to treat pain after local or systemic administration. The four compounds inhibited resting TTX-r channels concentration-dependently, with ambroxol being the most effective (IC(50) value: 34.3 microM), and benzocaine being the weakest (IC(50) value: 1,901 microM). All compounds shifted steady-state inactivation curves to more negative values. Ambroxol blocked resting TTX-r channels more potently than Nav1.2, the opposite was the case for lidocaine, mexiletine and benzocaine. Based on the drugs' potencies found in this study, and the published information on clinically achievable plasma levels, the amount of Na(+) channel block to induce analgesia after systemic administration was estimated."	"Genetic modifiers affecting severity of epilepsy caused by mutation of sodium channel Scn2a. Mutations in the voltage-gated sodium channels SCN 1 A and SCN 2 A are responsible for several types of human epilepsy. Variable expressivity among family members is a common feature of these inherited epilepsies, suggesting that genetic modifiers may influence the clinical manifestation of epilepsy. The transgenic mouse model Scn 2 a(Q 54) has an epilepsy phenotype as a result of a mutation in Scn 2 a that slows channel inactivation. The mice display progressive epilepsy that begins with short-duration partial seizures that appear to originate in the hippocampus. The partial seizures become more frequent and of longer duration with age and often induce secondary generalized seizures. Clinical severity of the Scn 2 a(Q 54) phenotype is influenced by genetic background. Congenic C57BL/6J.Q 54 mice exhibit decreased incidence of spontaneous seizures, delayed seizure onset, and longer survival in comparison with [C57BL/6J x SJL/J]F(1).Q 54 mice. This observation indicates that strain SJL/J carries dominant modifier alleles at one or more loci that determine the severity of the epilepsy phenotype. Genome-wide interval mapping in an N(2) backcross revealed two modifier loci on Chromosomes 11 and 19 that influence the clinical severity of of this sodium channel-induced epilepsy. Modifier genes affecting clinical severity in the Scn 2 a(Q 54) mouse model may contribute to the variable expressivity seen in epilepsy patients with sodium channel mutations."	"State-dependent compound inhibition of Nav1.2 sodium channels using the FLIPR Vm dye: on-target and off-target effects of diverse pharmacological agents. Voltage-gated sodium channels (NaChs) are relevant targets for pain, epilepsy, and a variety of neurological and cardiac disorders. Traditionally, it has been difficult to develop structure-activity relationships for NaCh inhibitors due to rapid channel kinetics and state-dependent compound interactions. Membrane potential (Vm) dyes in conjunction with a high-throughput fluorescence imaging plate reader (FLIPR) offer a satisfactory 1st-tier solution. Thus, the authors have developed a FLIPR Vm assay of rat Nav1.2 NaCh. Channels were opened by addition of veratridine, and Vm dye responses were measured. The IC50 values from various structural classes of compounds were compared to the resting state binding constant (Kr)and inactivated state binding constant (Ki)obtained using patch-clamp electrophysiology (EP). The FLIPR values correlated with Ki but not Kr. FLIPRIC50 values fell within 0.1-to 1.5-fold of EP Ki values, indicating that the assay generally reports use-dependent inhibition rather than resting state block. The Library of Pharmacologically Active Compounds (LOPAC, Sigma) was screened. Confirmed hits arose from diverse classes such as dopamine receptor antagonists, serotonin transport inhibitors, and kinase inhibitors. These data suggest that NaCh inhibition is inherent in a diverse set of biologically active molecules and may warrant counterscreening NaChs to avoid unwanted secondary pharmacology."	"Differential targeting and functional specialization of sodium channels in cultured cerebellar granule cells. The ion channel dynamics that underlie the complex firing patterns of cerebellar granule (CG) cells are still largely unknown. Here, we have characterized the subcellular localization and functional properties of Na+ channels that regulate the excitability of CG cells in culture. As evidenced by RT-PCR and immunocytochemical analysis, morphologically differentiated CG cells expressed Nav1.2 and Nav1.6, though both subunits appeared to be differentially regulated. Nav1.2 was localized at most axon initial segments (AIS) of CG cells from 8 days in vitro DIV 8 to DIV 15. At DIV 8, Nav1.6 was found uniformly throughout somata, dendrites and axons with occasional clustering in a subset of AIS. Accumulation of Nav1.6 at most AIS was evident by DIV 13-14, suggesting it is developmentally regulated at AIS. The specific contribution of these differentially distributed Na+ channels has been assessed using a combination of methods that allowed discrimination between functionally compartmentalized Na+ currents. In agreement with immunolocalization, we found that fast activating-fully inactivating Na+ currents predominate at the AIS membrane and in the somatic plasma membrane."	"Structural basis for the voltage-gated Na+ channel selectivity of the scorpion alpha-like toxin BmK M1. Scorpion alpha-like toxins are proteins that act on mammalian and insect voltage-gated Na+ channels. Therefore, these toxins constitute an excellent target for examining the foundations that underlie their target specificity. With this motive we dissected the role of six critical amino acids located in the five-residue reverse turn (RT) and C-tail (CT) of the scorpion alpha-like toxin BmK M1. These residues were individually substituted resulting in 11 mutants and were subjected to a bioassay on mice, an electrophysiological characterization on three cloned voltage-gated Na+ channels (Nav1.2, Nav1.5 and para), a CD analysis and X-ray crystallography. The results reveal two molecular sites, a couplet of residues (8-9) in the RT and a hydrophobic surface consisting of residues 57 and 59-61 in the CT, where the substitution with specific residues can redirect the alpha-like characteristics of BmK M1 to either total insect or much higher mammal specificity. Crystal structures reveal that the pharmacological ramification of these mutants is accompanied by the reshaping of the 3D structure surrounding position 8. Furthermore, our results also reveal that residues 57 and 59-61, located at the CT, enclose the critical residue 58 in order to form a hydrophobic &quot;gasket&quot;. Mutants of BmK M1 that interrupt this hydrophobic surface significantly gain insect selectivity."	"Prion clearance in bigenic mice. The clearance of prions from the brain was investigated in bigenic mice designated Tg(tTA : PrP(+/0))3, in which expression of the cellular prion protein (PrP(C)) was regulated by oral doxycycline administration. With suppression of PrP(C) expression, the incubation time for RML prions was prolonged almost threefold from approximately 150 to approximately 430 days. To determine the clearance rate of disease-causing PrP(Sc), bigenic mice were given oral doxycycline beginning 98 days after inoculation with RML prions and sacrificed at various time points over the subsequent 56 days. The half-life (t1/2) for PrP(Sc) was approximately 1.5 days in mouse brain, in reasonable agreement with the apparent t1/2 of 30 h that was determined in a separate study for scrapie-infected mouse neuroblastoma (ScN2a) cells in culture. Both protease-sensitive and -resistant conformers of PrP(Sc) were cleared at the same rate. The t1/2 value for PrP(C) clearance from brain was approximately 18 h, which was considerably longer than the t1/2 of 5 h found in ScN2a cells. The capability of the brain to clear prions raises the possibility that PrP(Sc) is normally made at low levels and continually cleared, and that PrP(Sc) may have a function in cellular metabolism. Moreover, these bigenic mice make it possible to determine both components of PrP(Sc) accumulation, i.e. the rates of formation and clearance, for various strains of prions exhibiting different incubation times."	"Mutational scanning of potassium, sodium and chloride ion channels in malignant migrating partial seizures in infancy. The mutational analysis of potassium (KCNQ2, KCNQ3), sodium (SCN1A, SCN2A), and chloride (CLCN2) ion channels was performed in three children with typical features of the recently described syndrome of migrating partial seizures in infancy. Mutational analysis was performed by PCR and automatic sequencing. The coding regions, including the exon-intron boundaries, were amplified in the patients using appropriate primers sets. No mutations associated to migrating partial seizures have been found. Mutational screening of CLCN2 gene, revealed a homozygous mutation G2003C (exon 17), leading to a Ser/Thr substitution at the codon 668, in two of the three patients. The same variation has been found in 38 out of 100 control alleles. The identification of the genetic basis of this new epileptic encephalopathy requires further studies that might be enforced by familial cases."	"Expression of Nav1.6 sodium channels by Schwann cells at neuromuscular junctions: role in the motor endplate disease phenotype. In addition to their role in action potential generation and fast synaptic transmission in neurons, voltage-dependent sodium channels can also be active in glia. Terminal Schwann cells (TSCs) wrap around the nerve terminal arborization at the neuromuscular junction, which they contribute to shape during development and in the postdenervation processes. Using fluorescent in situ hybridization (FISH), immunofluorescence, and confocal microscopy, we detected the neuronal Nav1.6 sodium channel transcripts and proteins in TSCs in normal adult rats and mice. Nav1.6 protein co-localized with the Schwann cell marker S-100 but was not detected in the SV2-positive nerve terminals. The med phenotype in mice is due to a mutation in the SCN8A gene resulting in loss of Nav1.6 expression. It leads to early onset in postnatal life of defects in neuromuscular transmission with minimal alteration of axonal conduction. Strikingly, in mutant mice, the nonmyelinated pre-terminal region of axons showed abundant sprouting at neuromuscular junctions, and most of the alpha-bungarotoxin-labeled endplates were devoid of S-100- or GFAP-positive TSCs. Using specific antibodies against the Nav1.2 and Nav1.6 sodium channels, ankyrin G and Caspr 1, and a pan sodium channel antibody, we found that a similar proportion of ankyrin G-positive nodes of Ranvier express sodium channels in mutant and wild-type animals and that nodal expression of Nav1.2 persists in med mice. Our data supports the hypothesis that the lack of expression of Nav1.6 in Schwann cells at neuromuscular junctions might play a role in the med phenotype."	"Sodium channel mutations in epilepsy and other neurological disorders. Since the first mutations of the neuronal sodium channel SCN1A were identified 5 years ago, more than 150 mutations have been described in patients with epilepsy. Many are sporadic mutations and cause loss of function, which demonstrates haploinsufficiency of SCN1A. Mutations resulting in persistent sodium current are also common. Coding variants of SCN2A, SCN8A, and SCN9A have also been identified in patients with seizures, ataxia, and sensitivity to pain, respectively. The rapid pace of discoveries suggests that sodium channel mutations are significant factors in the etiology of neurological disease and may contribute to psychiatric disorders as well."	"Identification of functional voltage-gated Na(+) channels in cultured human pulmonary artery smooth muscle cells. Electrical excitability, which plays an important role in excitation-contraction coupling in the pulmonary vasculature, is regulated by transmembrane ion flux in pulmonary artery smooth muscle cells (PASMC). This study aimed to characterize the electrophysiological properties and molecular identities of voltage-gated Na(+) channels in cultured human PASMC. We recorded tetrodotoxin (TTX) sensitive and rapidly inactivating Na(+) currents with properties similar to those described in cardiac myocytes. Using RT-PCR, we detected transcripts of seven Na(+) channel alpha genes (SCN2A, 3A, 4A, 7A, 8A, 9A, and 11A), and two beta subunit genes (SCN1B and 2B). Our results demonstrate that human PASMC express TTX-sensitive voltage-gated Na(+) channels. Their physiological functions remain unresolved, although our data suggest that Na(+) channel activity does not directly influence membrane potential, intracellular Ca(2+) release, or proliferation in normal human PASMC. Whether their expression and/or activity are heightened in the pathological state is discussed."	"[Advances in the studies on the molecular and genetic aspects of epilepsy]. Epilepsy is one of the most common and debilitating neurological diseases that affects more than 40 million people worldwide. Genetic factors contribute to the pathogenesis of epilepsy. Molecular genetic studies have identified 15 disease-causing genes for epilepsy. The majority of the genes encode ion channels, including voltage-gated potassium channels KCNQ2 and KCNQ3, sodium channels SCN1A, SCN2A, and SCN1B, chloride channels CLCN2, and ligand-gated ion channels CHRNA4, CHRNB2, GABRG2, and GABRA1. Interestingly, non-ion channel genes have also been identified as epilepsy genes, and these genes include G-protein-coupled receptor MASS1/VLGR1, GM3 synthase, and proteins with unknown functions such as LGI1, NHLRC1, and EFHC1. These studies make genetic testing possible in some patients, and further characterization of the identified epilepsy genes may lead to the development of new drugs and new treatments for patients with epilepsy."	"Where is the spike generator of the cochlear nerve? Voltage-gated sodium channels in the mouse cochlea. The origin of the action potential in the cochlea has been a long-standing puzzle. Because voltage-dependent Na+ (Nav) channels are essential for action potential generation, we investigated the detailed distribution of Nav1.6 and Nav1.2 in the cochlear ganglion, cochlear nerve, and organ of Corti, including the type I and type II ganglion cells. In most type I ganglion cells, Nav1.6 was present at the first nodes flanking the myelinated bipolar cell body and at subsequent nodes of Ranvier. In the other ganglion cells, including type II, Nav1.6 clustered in the initial segments of both of the axons that flank the unmyelinated bipolar ganglion cell bodies. In the organ of Corti, Nav1.6 was localized in the short segments of the afferent axons and their sensory endings beneath each inner hair cell. Surprisingly, the outer spiral fibers and their sensory endings were well labeled beneath the outer hair cells over their entire trajectory. In contrast, Nav1.2 in the organ of Corti was localized to the unmyelinated efferent axons and their endings on the inner and outer hair cells. We present a computational model illustrating the potential role of the Nav channel distribution described here. In the deaf mutant quivering mouse, the localization of Nav1.6 was disrupted in the sensory epithelium and ganglion. Together, these results suggest that distinct Nav channels generate and regenerate action potentials at multiple sites along the cochlear ganglion cells and nerve fibers, including the afferent endings, ganglionic initial segments, and nodes of Ranvier."	"No evidence of ATP1A2 involvement in 12 multiplex Italian families with benign familial infantile seizures. A missense mutation in the gene encoding the alpha(2) subunit of the Na(+),K(+) ATPase pump (ATP1A2) was found in a family with both familial hemiplegic migraine (FHM) and Benign Familial Infantile Seizures (BFIC). As it is still unclear whether ATP1A2 is responsible for pure BFIC syndromes, we checked mutations of the ATP1A2 gene in probands of 12 Italian multiplex families with pure BFIC, who were negative for mutations in the SCN2A gene. We screened the ATP1A2 gene by denaturing high performance liquid chromatography (D-HPLC) and direct sequencing of DNA fragments showing an aberrant elution pattern. We found one exonic variant and five intronic variants, none leading to significant amino acid changes or causing a modification of the physiological mRNA maturation. The ATP1A2 gene does not appear to be involved in the ethiopathogenesis of pure BFIC syndromes, at least in the explored Italian multiplex families. It could be either responsible of a minority of cases, or of complex syndromes where BFIC and FHM co-occur."	"Beta-scorpion toxin effects suggest electrostatic interactions in domain II of voltage-dependent sodium channels. Beta-scorpion toxins specifically modulate the voltage dependence of sodium channel activation by acting through a voltage-sensor trapping model. We used mutagenesis, functional analysis and the action of beta-toxin as tools to investigate the existence and role in channel activation of molecular interactions between the charged residues of the S2, S3 and S4 segments in domain II of sodium channels. Mutating to arginine the acidic residues of the S2 and S3 transmembrane segments in domain II, or making charge-reversal mutation of the two outermost gating charges of the IIS4 voltage sensor, shifts the voltage dependence of channel activation to more positive potentials and enhances the effect of beta-scorpion toxin. Thus, mutations of acidic residues in IIS2 and IIS3 segments are able to promote voltage-sensor trapping in a way that is similar to the mutations of the arginines in the IIS4 segment. In order to disclose the network of interactions among acidic and basic residues we performed functional analysis of charge-inversion double mutants: our data suggest that the first arginine of the voltage sensor S4 in domain II (R850) interacts specifically with E805, D814 and E821 in the S2 and S3 segments, whereas the second arginine (R853) only interacts with D827 in the S3 segment. Our results suggest that the S2, S3 and S4 segments in domain II form a voltage-sensing structure, and that molecular interactions between the charged residues of this structure modulate the availability of the IIS4 voltage sensor for trapping by beta-toxins. They also provide unique insights into the molecular events that occur during channel activation, as well as into the structure of the channel."	"Characteristics of ginsenoside Rg3-mediated brain Na+ current inhibition. We demonstrated previously that ginsenoside Rg(3) (Rg(3)), an active ingredient of Panax ginseng, inhibits brain-type Na(+) channel activity. In this study, we sought to elucidate the molecular mechanisms underlying Rg(3)-induced Na(+) channel inhibition. We used the two-microelectrode voltage-clamp technique to investigate the effect of Rg(3) on Na(+) currents (I(Na)) in Xenopus laevis oocytes expressing wild-type rat brain Na(V)1.2 alpha and beta1 subunits, or mutants in the channel entrance, the pore region, the lidocaine/tetrodotoxin (TTX) binding sites, the S4 voltage sensor segments of domains I to IV, and the Ile-Phe-Met inactivation cluster. In oocytes expressing wild-type Na(+) channels, Rg(3) induced tonic and use-dependent inhibitions of peak I(Na). The Rg(3)-induced tonic inhibition of I(Na) was voltage-dependent, dose-dependent, and reversible, with an IC(50) value of 32 +/- 6 microM. Rg(3) treatment produced a 11.2 +/- 3.5 mV depolarizing shift in the activation voltage but did not alter the steady-state inactivation voltage. Mutations in the channel entrance, pore region, lidocaine/TTX binding sites, or voltage sensor segments did not affect Rg(3)-induced tonic blockade of peak I(Na). However, Rg(3) treatment inhibited the peak and plateau I(Na) in the IFMQ3 mutant, indicating that Rg(3) inhibits both the resting and open states of Na(+) channel. Neutralization of the positive charge at position 859 of voltage sensor segment domain II abolished the Rg(3)-induced activation voltage shift and use-dependent inhibition. These results reveal that Rg(3) is a novel Na(+) channel inhibitor capable of acting on the resting and open states of Na(+) channel via interactions with the S4 voltage-sensor segment of domain II."	"Increased iron-induced oxidative stress and toxicity in scrapie-infected neuroblastoma cells. The mechanisms behind the pathology of prion diseases are still unknown, but accumulating evidence suggests oxidative impairment along with metal imbalances in scrapie-infected brains. In this study, we have investigated iron-induced oxidative stress in scrapie-infected mouse neuroblastoma N2a (ScN2a) cells. Uninfected N2a and ScN2a cells were treated with ferric ammonium citrate (FAC) for 1-16 h, and the levels of labile iron pool (LIP), the formation of reactive oxygen species (ROS), cell viability and ferritin protein levels were measured. The increase in LIP in N2a cells was transient with a quick recovery to normal levels within 4h accompanied by a moderate increase of formation of ROS after 3h followed by the decrease to the basal level. In ScN2a cells, the increase in LIP was lower, but the process of recovery was prolonged and accompanied by high ROS formation and decreased cell viability. Ferritin protein levels were significantly lower in ScN2a cells than in wild-type cells in all iron treatments. These results suggest that ScN2a cells are more sensitive to iron treatment as compared to wild-type cells with respect to ROS formation and cell viability, and that ferritin deficiency in infected cells may contribute to iron-induced oxidative stress in scrapie-infected cells."	"Sodium currents in medullary neurons isolated from the pre-Bötzinger complex region. The pre-Bötzinger complex (preBötC) in the ventrolateral medulla contains interneurons important for respiratory rhythm generation. Voltage-dependent sodium channels mediate transient current (I(NaT)), underlying action potentials, and persistent current (I(NaP)), contributing to repetitive firing, pacemaker properties, and the amplification of synaptic inputs. Voltage-clamp studies of the biophysical properties of these sodium currents were conducted on acutely dissociated preBötC region neurons. Reverse transcription-PCR demonstrated the presence of mRNA for Nav1.1, Nav1.2, and Nav1.6 alpha-subunits in individual neurons. A TTX-sensitive I(NaP) was evoked in all tested neurons by ramp depolarization from -80 to 0 mV. Including a constant in the Boltzmann equation for inactivation by estimating the steady-state fraction of Na+ channels available for inactivation allowed prediction of a window current that did not decay to 0 at voltages positive to -20 mV and closely matched the measured I(NaP). Riluzole (3 microM), a putative I(NaP) antagonist, reduced both I(NaP) and I(NaT) and produced a hyperpolarizing shift in the voltage dependence of steady-state inactivation. The latter decreased the predicted window current by an amount equivalent to the decrease in I(NaP). Riluzole also decreased the inactivation time constant at potentials in which the peak window/persistent currents are generated. Together, these findings imply that I(NaP) and I(NaT) arise from the same channels and that a simple modification of the Hodgkin-Huxley model can satisfactorily account for both currents. In the rostral ventral respiratory group (immediately caudal to preBötC), I(NaP) was also detected, but peak conductance, current density, and input resistance were smaller than in preBötC region cells."	"The AGAAAAGA palindrome in PrP is required to generate a productive PrPSc-PrPC complex that leads to prion propagation. The molecular hallmark of prion disease is the conversion of normal prion protein (PrPC) to an insoluble, proteinase K-resistant, pathogenic isoform (PrPSc). Once generated, PrPSc propagates by complexing with, and transferring its pathogenic conformation onto, PrPC. Defining the specific nature of this PrPSc-PrPC interaction is critical to understanding prion genesis. To begin to approach this question, we employed a prion-infected neuroblastoma cell line (ScN2a) combined with a heterologous yeast expression system to independently model PrPSc generation and propagation. We additionally applied fluorescence resonance energy transfer analysis to the latter to specifically study PrP-PrP interactions. In this report we focus on an N-terminal hydrophobic palindrome of PrP (112-AGAAAAGA-119) thought to feature intimately in prion generation via an unclear mechanism. We found that, in contrast to wild type (wt) PrP, PrP lacking the palindrome (PrPDelta112-119) neither converted to PrPSc when expressed in ScN2a cells nor generated proteinase K-resistant PrP when expressed in yeast. Furthermore, PrPDelta112-119 was a dominant-negative inhibitor of wtPrP in ScN2a cells. Both wtPrP and PrPDelta112-119 were highly insoluble when expressed in yeast and produced distinct cytosolic aggregates when expressed as fluorescent fusion proteins (PrP::YFP). Although self-aggregation was evident, fluorescence resonance energy transfer studies in live yeast co-expressing PrPSc-like protein and PrPDelta112-119 indicated altered interaction properties. These results suggest that the palindrome is required, not only for the attainment of the PrPSc conformation but also to facilitate the proper association of PrPSc with PrPC to effect prion propagation."	"Cell line dependent RNA expression profiles of prion-infected mouse neuronal cells. The overall impact of prion disease on gene expression is not well characterized. We have carried out a large-scale expression analysis of specific cell types commonly employed in studies of prion disease. Neuroblastoma cells (N2a) and hypothalamic neuronal cells (GT1) can be persistently infected with mouse-adapted scrapie prions, the latter demonstrating cytopathologic effects associated with prion neuropathology. Exploiting a mouse DNA microarray containing approximately 21,000 spotted cDNAs, we have identified several hundred differentially expressed sequences in the two cell lines when infected with prion strain RML. ScN2a and ScGT1 cells demonstrate unique changes in RNA profiles and both differ from the reported changes in human microglia and prion-infected brain studies albeit with some overlap. In addition, several of the identified changes are shared in common with other neurodegenerative diseases such as Alzheimer's disease. The results illustrate that prion infection differs in effect depending on cell type, which could be exploited for diagnostic or therapeutic intervention."	"SCN1A mutations and epilepsy. SCN1A is part of the SCN1A-SCN2A-SCN3A gene cluster on chromosome 2q24 that encodes for alpha pore forming subunits of sodium channels. The 26 exons of SCN1A are spread over 100 kb of genomic DNA. Genetic defects in the coding sequence lead to generalized epilepsy with febrile seizures plus (GEFS+) and a range of childhood epileptic encephalopathies of varied severity (e.g., SMEI). All published mutations are collated. More than 100 novel mutations are spread throughout the gene with the more debilitating usually de novo. Some clustering of mutations is observed in the C-terminus and the loops between segments 5 and 6 of the first three domains of the protein. Functional studies so far show no consistent relationship between changes to channel properties and clinical phenotype. Of all the known epilepsy genes SCN1A is currently the most clinically relevant, with the largest number of epilepsy related mutations so far characterized."	"Expression and distribution of TTX-sensitive sodium channel alpha subunits in the enteric nervous system. The expression and distribution of TTX-sensitive voltage-gated sodium channel (VGSC) alpha subunits in the enteric nervous system (ENS) has not been described. Using RT-PCR, expression of Na(v)1.2, Na(v)1.3, Na(v)1.6, and Na(v)1.7 mRNA was detected in small and large intestinal preparations from guinea pigs. Expression of Na(v)1.1 mRNA as well as Na(v)1.1-like immunoreactivity (-li) were not observed in any intestinal region investigated. Na(v)1.2-li was primarily observed within the soma of the majority of myenteric and submucosal neurons, although faint immunoreactivity was occasionally observed in ganglionic and internodal fibers. Na(v)1.3-li was observed in dendrites, soma, and axons in a small group of myenteric neurons, as well as in numerous myenteric internodal fibers; immunoreactivity was rarely observed in the submucosal plexus. Na(v)1.6-li was primarily observed in the initial axonal segment of colonic myenteric neurons. Na(v)1.7-li was observed in dorsal root ganglia neurons but not in the myenteric plexus of the small and large intestine. In the ileum, 37% of Na(v)1.2-li cell bodies colocalized with calbindin-li while colocalization with calretinin-li was rare. In contrast, 22% of Na(v)1.3-li cell bodies colocalized with calretinin-li but colocalization with calbindin-li was not observed. In the colon, both Na(v)1.2-li and Na(v)1.3-li cell bodies frequently colocalized with either calretinin-li or calbindin-li. Na(v)1.2-li cell bodies also colocalized with the majority of NeuN-li cells in the small and large intestine. These data suggest that Na(v)1.1 may not be highly expressed in the ENS, but that Na(v)1.2, Na(v)1.3, and Na(v)1.6, and possibly Na(v)1.7, have broadly important and distinct functions in the ENS."	"Molecular determinants for modulation of persistent sodium current by G-protein betagamma subunits. Voltage-gated sodium channels are responsible for the upstroke of the action potential in most excitable cells, and their fast inactivation is essential for controlling electrical signaling. In addition, a noninactivating, persistent component of sodium current, I(NaP), has been implicated in integrative functions of neurons including threshold for firing, neuronal bursting, and signal integration. G-protein betagamma subunits increase I(NaP), but the sodium channel subtypes that conduct I(NaP) and the target site(s) on the sodium channel molecule required for modulation by Gbetagamma are poorly defined. Here, we show that I(NaP) conducted by Na(v)1.1 and Na(v)1.2 channels (Na(v)1.1 &gt; Na(v)1.2) is modulated by Gbetagamma; Na(v)1.4 and Na(v)1.5 channels produce smaller I(NaP) that is not regulated by Gbetagamma. These qualitative differences in modulation by Gbetagamma are determined by the transmembrane body of the sodium channels rather than their cytoplasmic C-terminal domains, which have been implicated previously in modulation by Gbetagamma. However, the C-terminal domains determine the quantitative extent of modulation of Na(v)1.2 channels by Gbetagamma. Studies of chimeric and truncated Na(v)1.2 channels identify molecular determinants that affect modulation of I(NaP) located between amino acid residue 1890 and the C terminus at residue 2005. The last 28 amino acid residues of the C terminus are sufficient to support modulation by Gbetagamma when attached to the proximal C-terminal domain. Our results further define the sodium channel subtypes that generate I(NaP) and identify crucial molecular determinants in the C-terminal domain required for modulation by Gbetagamma when attached to the transmembrane body of a responsive sodium channel."	"Electrophysiological properties of two axonal sodium channels, Nav1.2 and Nav1.6, expressed in mouse spinal sensory neurones. Sodium channels Na(v)1.2 and Na(v)1.6 are both normally expressed along premyelinated and myelinated axons at different stages of maturation and are also expressed in a subset of demyelinated axons, where coexpression of Na(v)1.6 together with the Na(+)/Ca(2+) exchanger is associated with axonal injury. It has been difficult to distinguish the currents produced by Na(v)1.2 and Na(v)1.6 in native neurones, and previous studies have not compared these channels within neuronal expression systems. In this study, we have characterized and directly compared Na(v)1.2 and Na(v)1.6 in a mammalian neuronal cell background and demonstrate differences in their properties that may affect neuronal behaviour. The Na(v)1.2 channel displays more depolarized activation and availability properties that may permit conduction of action potentials, even with depolarization. However, Na(v)1.2 channels show a greater accumulation of inactivation at higher frequencies of stimulation (20-100 Hz) than Na(v)1.6 and thus are likely to generate lower frequencies of firing. Na(v)1.6 channels produce a larger persistent current that may play a role in triggering reverse Na(+)/Ca(2+) exchange, which can injure demyelinated axons where Na(v)1.6 and the Na(+)/Ca(2+) exchanger are colocalized, while selective expression of Na(v)1.2 may support action potential electrogenesis, at least at lower frequencies, while producing a smaller persistent current."	"A role for the carbohydrate portion of ginsenoside Rg3 in Na+ channel inhibition. We showed recently that ginsenosides inhibit the activity of various types of ion channel. Here we have investigated the role of the carbohydrate component of ginsenoside Rg3 in the inhibition of Na+ channels. The channels were expressed in Xenopus oocytes by injecting cRNAs encoding rat brain Nav1.2 alpha and beta1 subunits, and analyzed by the two-electrode voltage clamp technique. Treatment with Rg3 reversibly inhibited the inward Na+ peak current (INa) with an IC50 of 32.2 +/- 4.5 microM, and the inhibition was voltage-dependent. To examine the role of the sugar moiety, we prepared a straight chain form of the second glucose and a conjugate of this glucose with 3-(4-hydroxyphenyl) propionic acid hydrazide (HPPH). Neither derivative inhibited INa. Treatment with the carbohydrate portion of ginsenoside Rg3, sophorose [beta-D-glucopyranosyl (1--&gt;2)- beta-glucopyranoside], or the aglycone (protopanaxadiol), on their own or in combination had no effect on INa. These observations indicate that the carbohydrate portion of ginsenoside Rg3 plays an important role in its effect on the Na+ channel."	"Cationic polysaccharides as antiprion agents. Cationic polysaccharides were synthesized by conjugation of various oligoamines to oxidized polysaccharides by reductive amination and tested for antiprion activity. Polycations of dextran, pullulan and arabinogalactan grafted with oligoamines of 2 to 4 amino groups were investigated for their ability to eliminate PrP(Sc), the protease-resistant isoform of the prion protein, from chronically infected neuroblastoma cells, ScN2a-M. The proteinase K (PK)-resistant PrP elimination depends on both the concentration of the reagent and the duration of exposure. The most potent compound was found to be dextran-spermine that caused depletion of PrP(Sc) to undetectable levels at concentration of 31 ng/mL after 4 days of exposure. Activity analysis revealed that grafted oligoamine indentity of the polycation plays a significant role in elimination of PK-resistant PrP from chronically infected N2a-M cells, regardless of the polysaccharide used. Dextran-spermine conjugates were modified with oleic acid and with methoxypoly(ethylene glycol) (MPEG) at various degrees of substitution for further studies and their antiprion activity was examined. Substitution of dextran-spermine with MPEG or oleic acid slightly decreases its activity as a function of MPEG/oleic acid content. These findings confirm previous reports that polycations are effective in eliminating PrP(Sc) in vitro."	"The depressant scorpion neurotoxin LqqIT2 selectively modulates the insect voltage-gated sodium channel. LqqIT2 is a depressant neurotoxin present in the venom of the Leiurus quinquestriatus quinquestriatus scorpion, one of the world's most dangerous scorpions endemic to dry habitats in Africa and Asia. In order to determine its efficacy, potency and selectivity, LqqIT2 was subjected for the first time to an electrophysiological and pharmacological comparison between two different cloned sodium channels expressed in Xenopus laevis oocytes. Aside from typical beta-toxin effects, LqqIT2 also affected the inactivation process and ion selectivity of the insect voltage-gated sodium channel. The most interesting feature of LqqIT2 is its total insect-selectivity. At a concentration of 1 microM, the insect-voltage-gated sodium channel, para, was profoundly modulated while its mammalian counterpart, the rat brain Na(v)1.2 channel, was not affected. This trait offers excellent prospects for the development of novel insecticides."	"Changed iron regulation in scrapie-infected neuroblastoma cells. Prion diseases are characterized by the conversion of the normal cellular prion protein PrP(C) into a pathogenic isoform, PrP(Sc). The mechanisms involved in neuronal cell death in prion diseases are largely unknown, but accumulating evidence has demonstrated oxidative impairment along with metal imbalances in scrapie-infected brains. In this study, we report changes in cellular iron metabolism in scrapie-infected mouse neuroblastoma N2a cells (ScN2a). We detected twofold lower total cellular iron and calcein-chelatable cytosolic labile iron pool (LIP) in ScN2a cells as compared to the N2a cells. We also measured in ScN2a cells significantly lower activities of iron regulatory proteins 1 and 2 (IRP1 and IRP2, respectively), regulators of cellular iron by sensing cytosolic free iron levels and controlling posttranscriptionally the expression of the major iron transport protein transferrin receptor 1 (TfR1) and the iron sequestration protein ferritin. IRP1 and IRP2 protein levels were decreased by 40% and 50%, respectively, in ScN2a cells. TfR1 protein levels were fourfold reduced and ferritin levels were threefold reduced in ScN2a cells. TfR1 and ferritin mRNA levels were significantly reduced in ScN2a cells. ScN2a cells responded normally to iron and iron chelator treatment with respect to the activities of IRP1 and IRP2, and biosynthesis of TfR1 and ferritin. However, the activities of IRP1 and IRP2, and protein levels of TfR1 and ferritin, were still significantly lower in iron-depleted ScN2a cells as compared to the N2a cells, suggesting lower need for iron in ScN2a cells. Our results demonstrate that scrapie infection leads to changes in cellular iron metabolism, affecting both total cellular and cytosolic free iron, and the activities and expression of major regulators of cellular iron homeostasis."	"[Molecular genetics of epilepsy]. Recent identifications of genes responsible for epilepsies are now contributing to diagnosis and treatment. Mutations of voltage-gated sodium channel genes SCN1A and SCN2A have been reported in epilepsies with a variety of phenotypes including generalized epilepsy with febrile seizures plus (GEFS +), severe myoclonic epilepsy in infancy (SMEI), intractable childhood epilepsy with generalized tonic-clonic seizures (ICEGTC), and benign familial neonatal-infantile seizures (BFNIS). We also identified a sporadic nonsense mutation of SCN2A in a patient with intractable epilepsy with severe mental decline. Lafora's disease (LD) is a fatal autosomal recessive epilepsy characterized by stimuli sensitive myoclonus, grand mal seizures, and progressive intellectual and neurological deterioration. The EPM2A gene has been reported to be responsible for LD. We found multiple disease mutations of EPM2A in LD patients, and also identified a subclass of LD who shows an early onset cognitive defect and correlated with EPM2A exon 1 mutations. We reported that the laforin protein encoded by the EPM2A gene has a dual-specificity phosphatase activity, associates with polyribosome, and interacts with the HIRIP5 protein with NifU-like domain. We recently generated and reported the EPM2A KO mice those develop neurodegeneration and other features similar to those of LD patients."	"Notch-1 activation and dendritic atrophy in prion disease. In addition to neuronal vacuolation and astrocytic hypertrophy, dendritic atrophy is a prominent feature of prion disease. Because increased Notch-1 expression and cleavage releasing its intracellular domain (NICD) inhibit both dendrite growth and maturation, we measured their levels in brains from mice inoculated with Rocky Mountain Laboratory (RML) prions. The level of NICD was elevated in the neocortex, whereas the level of beta-catenin, which stimulates dendritic growth, was unchanged. During the incubation period, levels of the disease-causing prion protein isoform, PrPSc, and NICD increased concomitantly in the neocortex. Additionally, increased levels of Notch-1 mRNA and translocation of NICD to the nucleus correlated well with regressive dendritic changes. In scrapie-infected neuroblastoma (ScN2a) cells, the level of NICD was elevated compared with uninfected control (N2a) cells. Long neurofilament protein-containing processes extended from the surface of N2a cells, whereas ScN2a cells had substantially shorter processes. Transfection of ScN2a cells with a Notch-1 small interfering RNA decreased Notch-1 mRNA levels, diminished NICD concentrations, and rescued the long process phenotype. These results suggest that PrPSc in neurons and in ScN2a cells activates Notch-1 cleavage, resulting in atrophy of dendrites in the CNS and shrinkage of processes on the surface of cultured cells. Whether diminishing Notch-1 activation in vivo can prevent or even reverse neurodegeneration in prion disease remains to be established."	"Epilepsy and sodium channel gene mutations: gain or loss of function? Mutations in voltage-gated sodium channel genes (SCN1A, SCN2A, SCN1B) have been reported to be responsible for some epilepsies. Although studying such mutations to elucidate the disease mechanisms would be indispensable for the development of effective therapies, the functional consequences of these mutations remain controversial. Here, I propose a novel hypothesis for an epileptic disease mechanism which could drive the design of further studies to understand the molecular pathology of these diseases."
+"SCN8A"	"complex neurodevelopmental disorder"	"Early-onset epileptic encephalopathy related to germline PIGA mutations: A series of 5 cases. The molecular diagnosis of early-onset epileptic encephalopathy (EOEE), an expanding field in child neurology, is becoming increasingly possible thanks to the widespread availability of next-generation sequencing and whole-exome sequencing. In the past 15 years, mutations in STXBP1, KCNQ2, SCN2A, SCN8A and numerous other genes have been reported, giving a more accurate insight for these rare diseases. Among these genes, germline mutations in Phosphatidyl Inositol Glycan A (PIGA) gene were first reported in 2012. Located on Xp22.2, PIGA is involved in the synthesis of GPI (glycosylphosphatidylinositol) which acts as a membrane anchor for different proteins: enzymes, adhesion molecules, regulation of the complement way, and co-receptor in transduction signal. Children suffering from this condition exhibit developmental delay with early-onset epilepsy, severe dysmorphic signs, multi-visceral anomalies and early death in the most severe forms. Here, we report five cases of germline PIGA mutations, with two missense mutations that have not been reported to date. We provide a new insight into the electroclinical phenotype. At the onset, epileptic spasms and focal-onset seizures with upper limbs and ocular involvements were present. Epilepsy proved pharmacoresistant in 4 out of 5 cases. Interictal EEG may be normal at the onset of epilepsy, but abnormalities in electroencephalographic studies were eventually present in all cases. Different types of seizures may be present simultaneously, and epileptic phenotypes evolve with aging."	"The plasma peptides of sepsis. A practical strategy to discover sepsis specific proteins may be to compare the plasma peptides and proteins from patients in the intensive care unit with and without sepsis. The aim was to discover proteins and/or peptides that show greater observation frequency and/or precursor intensity in sepsis. The endogenous tryptic peptides of ICU-Sepsis were compared to ICU Control, ovarian cancer, breast cancer, female normal, sepsis, heart attack, Alzheimer's and multiple sclerosis along with their institution-matched controls, female normals and normal samples collected directly onto ice. Endogenous tryptic peptides were extracted from individual sepsis and control EDTA plasma samples in a step gradient of acetonitrile for random and independent sampling by LC-ESI-MS/MS with a set of robust and sensitive linear quadrupole ion traps. The MS/MS spectra were fit to fully tryptic peptides within proteins using the X!TANDEM algorithm. The protein observation frequency was counted using the SEQUEST algorithm after selecting the single best charge state and peptide sequence for each MS/MS spectra. The protein observation frequency of ICU-sepsis versus ICU Control was subsequently tested by Chi square analysis. The average protein or peptide log10 precursor intensity was compared across disease and control treatments by ANOVA in the R statistical system. Peptides and/or phosphopeptides of common plasma proteins such as ITIH3, SAA2, SAA1, and FN1 showed increased observation frequency by Chi square (χ<sup>2</sup> &gt; 9, p &lt; 0.003) and/or precursor intensity in sepsis. Cellular gene symbols with large Chi square values from tryptic peptides included POTEB, CTNNA1, U2SURP, KIF24, NLGN2, KSR1, GTF2H1, KIT, RPS6KL1, VAV2, HSPA7, SMC2, TCEB3B, ZNF300, SUPV3L1, ADAMTS20, LAMB4, MCCC1, SUPT6H, SCN9A, SBNO1, EPHA1, ABLIM2, cB5E3.2, EPHA10, GRIN2B, HIVEP2, CCL16, TKT, LRP2 and TMF1 amongst others showed increased observation frequency. Similarly, increased frequency of tryptic phosphopeptides were observed from POM121C, SCN8A, TMED8, NSUN7, SLX4, MADD, DNLZ, PDE3B, UTY, DEPDC7, MTX1, MYO1E, RXRB, SYDE1, FN1, PUS7L, FYCO1, USP26, ACAP2, AHI1, KSR2, LMAN1, ZNF280D and SLC8A2 amongst others. Increases in mean precursor intensity in peptides from common plasma proteins such as ITIH3, SAA2, SAA1, and FN1 as well as cellular proteins such as COL24A1, POTEB, KANK1, SDCBP2, DNAH11, ADAMTS7, MLLT1, TTC21A, TSHR, SLX4, MTCH1, and PUS7L among others were associated with sepsis. The processing of SAA1 included the cleavage of the terminal peptide D/PNHFRPAGLPEKY from the most hydrophilic point of SAA1 on the COOH side of the cystatin C binding that was most apparent in ICU-Sepsis patients compared to all other diseases and controls. Additional cleavage of SAA1 on the NH2 terminus side of the cystatin binding site were observed in ICU-Sepsis. Thus there was disease associated variation in the processing of SAA1 in ICU-Sepsis versus ICU controls or other diseases and controls. Specific proteins and peptides that vary between diseases might be discovered by the random and independent sampling of multiple disease and control plasma from different hospital and clinics by LC-ESI-MS/MS for storage in a relational SQL Server database and analysis with the R statistical system that will be a powerful tool for clinical research. The processing of SAA1 may play an unappreciated role in the inflammatory response to Sepsis."	"Effects of Sesamin, the Major Furofuran Lignan of Sesame Oil, on the Amplitude and Gating of Voltage-Gated Na<sup>+</sup> and K<sup>+</sup> Currents. Sesamin (SSM) and sesamolin (SesA) are the two major furofuran lignans of sesame oil and they have been previously noticed to exert various biological actions. However, their modulatory actions on different types of ionic currents in electrically excitable cells remain largely unresolved. The present experiments were undertaken to explore the possible perturbations of SSM and SesA on different types of ionic currents, e.g., voltage-gated Na<sup>+</sup> currents (INa), erg-mediated K<sup>+</sup> currents (IK(erg)), M-type K<sup>+</sup> currents (IK(M)), delayed-rectifier K<sup>+</sup> currents (IK(DR)) and hyperpolarization-activated cation currents (Ih) identified from pituitary tumor (GH3) cells. The exposure to SSM or SesA depressed the transient and late components of INa with different potencies. The IC50 value of SSM needed to lessen the peak or sustained INa was calculated to be 7.2 or 0.6 μM, while that of SesA was 9.8 or 2.5 μM, respectively. The dissociation constant of SSM-perturbed inhibition on INa, based on the first-order reaction scheme, was measured to be 0.93 μM, a value very similar to the IC50 for its depressant action on sustained INa. The addition of SSM was also effective at suppressing the amplitude of resurgent INa. The addition of SSM could concentration-dependently inhibit the IK(M) amplitude with an IC50 value of 4.8 μM. SSM at a concentration of 30 μM could suppress the amplitude of IK(erg), while at 10 μM, it mildly decreased the IK(DR) amplitude. However, the addition of neither SSM (10 μM) nor SesA (10 μM) altered the amplitude or kinetics of Ih in response to long-lasting hyperpolarization. Additionally, in this study, a modified Markovian model designed for SCN8A-encoded (or NaV1.6) channels was implemented to evaluate the plausible modifications of SSM on the gating kinetics of NaV channels. The model demonstrated herein was well suited to predict that the SSM-mediated decrease in peak INa, followed by increased current inactivation, which could largely account for its favorable decrease in the probability of the open-blocked over open state of NaV channels. Collectively, our study provides evidence that highlights the notion that SSM or SesA could block multiple ion currents, such as INa and IK(M), and suggests that these actions are potentially important and may participate in the functional activities of various electrically excitable cells in vivo."	"Determining the best candidates for next-generation sequencing-based gene panel for evaluation of early-onset epilepsy. Genetic testing is an emerging diagnostic approach in early-onset epilepsy. Identification of the heterogeneous genetic causes of epilepsy may mitigate unnecessary evaluations and allow more accurate diagnosis and therapy. We aimed to uncover genetic causes of early-onset epilepsy using next-generation sequencing (NGS) to elucidate the diagnostic candidates and evaluate the diagnostic yield of targeted gene panel testing. We evaluated 116 patients with early-onset epilepsy developed before 2 years old and normal brain imaging using a NGS-based targeted gene panel. Variants were classified according to their pathogenicity, and the diagnostic yield of the targeted genes and associated clinical factors were determined. We detected 40 disease-causing variants with diagnostic yield of 34.5% (19 pathogenic, 21 likely pathogenic). Twelve variants were novel. The most commonly detected genes were SCN1A, associated with Dravet syndrome, and PRRT2, associated with benign familial infantile epilepsy. Other variants were identified in ARX, SCN2A, KCNQ2, PCDH19, STXBP1, DEPDC5, and SCN8A. The age of seizure onset and family history were associated with disease-causing variants. Next-generation sequencing-based targeted testing is an effective diagnostic test, with 30%-40% comparable diagnostic yield. Patients with earlier seizure onset and family history of epilepsy were the best candidates for testing. For pediatric patients with early-onset epilepsy, genetic diagnosis is important for accurate prognosis and treatment."	"Genotype-phenotype correlates of infantile-onset developmental &amp; epileptic encephalopathy syndromes in South India: A single centre experience. A paucity of literature exists on genotype- phenotype correlates of 'unknown-etiology' infantile-onset developmental-epileptic encephalopathies (DEE) from India. The primary objective was to explore the yield of genetic testing in identifying potential disease causing variants in electro-clinical phenotypes of DEE METHODS: An observational hospital-based study was undertaken on children with unexplained refractory seizure-onset ≤12 months age and developmental delay, whose families consented and underwent genetic testing during a three year time period (2016-2018) by next-generation sequencing (NGS) or multiplex ligand protein amplification. Yield was considered based on demonstration of pathogenic/likely pathogenic variants only and variants of unknown significance (VUS) were documented. Pathogenic/likely pathogenic variants were identified in 26 (31.7 %) out of 82 children with DEE. These included those variants responsible for primarily DEE- 21(76.7 %); neuro-metabolic disorders- 3(18.6 %) and chromosomal deletions- 2(4.7 %). Of these patients, early-infantile epilepsy onset ≤ 6 months age was noted in 22(84.6 %). The DEE studied included Ohtahara syndrome associated with STXBP1 and SCN8A variants with yield of 50 % (2/4 tested); early myoclonic encephalopathy (no yield in 2); West syndrome with CDKL5, yield of 13.3 % (2/15 tested); epilepsy of infancy with migrating partial seizures due to CACNA1A and KCNT1 variants, yield of 67 % (2/3 tested); DEE-unclassified with KCNQ2, AP3B2, ZEB2, metabolic variants (SUOX, ALDH7A1, GLDC) and chromosome deletions (chr 1p36, chr2q24.3); yield of 32 % (8/25 tested). Patients with Dravet syndrome/Dravet-like phenotypes (N = 33) had variants in SCN1A (N = 10), SCN1B, CHD2; yield of 36.4 % (12/33 tested; 57.1 % from NGS). Eighteen patients with potential variants (SCN1A, SCN2A, SCN8A, KCNQ2, ALDH7A1 which also included VUS) could be offered targeted therapy. Our study confirms a good yield of genetic testing in neonatal and infantile-onset DEE provided robust phenotyping of infants is attempted with prognostic and therapeutic implications, particularly relevant to centres with resource constraints."	"SCN8A Mutation in Infantile Epileptic Encephalopathy: Report of Two Cases. Early infantile epileptic encephalopathy type 13 is a severe form of epilepsy caused by mutations in the sodium channel 8 alpha (SCN8A) gene. This gene encodes the neuronal voltage-gated sodium channel which plays vital role in neuronal excitability. Here we present two cases with SCN8A encephalopathy. Both cases had mutation in p.Arg1872Gin the SCN8A gene, which was detected by targeted next generation sequencing. Case 1 was a 14-month old boy, who had a normal birth history with normal development up to 6 months and then developed repeated generalized seizure, which was nonresponsive to multiple antiepileptic drugs. He also had neuroregression and dystonia. His electroencephalogram (EEG) showed progressive background abnormality with burst suppression pattern. His metabolic panel was normal and had partial response to carbamazepine. The second case was for an 11-month old boy with the onset of seizure at the age of 7 months. Seizure was generalized, resistant to multiple antiepileptic drugs. He had developmental delay from beginning, no movement disorder. EEG showed focal discharge from left temporal and occipital region. He showed partial response to oxcarbazepine. Our cases had similarities with the previously reported cases. The detailed discussion of our cases would contribute to early detection and targeted treatment of SCN8A encephalopathy. This also gives special emphasis on a genetic test in infants with intractable epilepsy, movement disorder and developmental delay."	"Sodium channel epilepsies and neurodevelopmental disorders: from disease mechanisms to clinical application. Genetic variants in brain-expressed voltage-gated sodium channels (SCNs) have emerged as one of the most frequent causes of Mendelian forms of epilepsy and neurodevelopmental disorders (NDDs). This review explores the biological concepts that underlie sodium channel NDDs, explains their phenotypic heterogeneity, and appraises how this knowledge may inform clinical practice. We observe that excitatory/inhibitory neuronal expression ratios of sodium channels are important regulatory mechanisms underlying brain development, homeostasis, and neurological diseases. We hypothesize that a detailed understanding of gene expression, variant tolerance, location, and function, as well as timing of seizure onset can aid the understanding of how variants in SCN1A, SCN2A, SCN3A, and SCN8A contribute to seizure aetiology and inform treatment choice. We propose a model in which variant type, development-specific gene expression, and functions of SCNs explain the heterogeneity of sodium channel associated NDDs. Understanding of basic disease mechanisms and detailed knowledge of variant characteristics have increasing influence on clinical decision making, enabling us to stratify treatment and move closer towards precision medicine in sodium channel epilepsy and NDDs. WHAT THIS PAPER ADDS: Sodium-channel disorder heterogeneity is explained by variant-specific gene expression timing and function. Gene tolerance and location analyses aid sodium channel variant interpretation. Sodium-channel variant characteristics can contribute to clinical decision making."	"NaV1.1 and NaV1.6 selective compounds reduce the behavior phenotype and epileptiform activity in a novel zebrafish model for Dravet Syndrome. Dravet syndrome is caused by dominant loss-of-function mutations in SCN1A which cause reduced activity of Nav1.1 leading to lack of neuronal inhibition. On the other hand, gain-of-function mutations in SCN8A can lead to a severe epileptic encephalopathy subtype by over activating NaV1.6 channels. These observations suggest that Nav1.1 and Nav1.6 represent two opposing sides of the neuronal balance between inhibition and activation. Here, we hypothesize that Dravet syndrome may be treated by either enhancing Nav1.1 or reducing Nav1.6 activity. To test this hypothesis we generated and characterized a novel DS zebrafish model and tested new compounds that selectively activate or inhibit the human NaV1.1 or NaV1.6 channel respectively. We used CRISPR/Cas9 to generate two separate Scn1Lab knockout lines as an alternative to previous zebrafish models generated by random mutagenesis or morpholino oligomers. Using an optimized locomotor assay, spontaneous burst movements were detected that were unique to Scn1Lab knockouts and disappear when introducing human SCN1A mRNA. Besides the behavioral phenotype, Scn1Lab knockouts show sudden, electrical discharges in the brain that indicate epileptic seizures in zebrafish. Scn1Lab knockouts showed increased sensitivity to the GABA antagonist pentylenetetrazole and a reduction in whole organism GABA levels. Drug screenings further validated a Dravet syndrome phenotype. We tested the NaV1.1 activator AA43279 and two novel NaV1.6 inhibitors MV1369 and MV1312 in the Scn1Lab knockouts. Both type of compounds significantly reduced the number of spontaneous burst movements and seizure activity. Our results show that selective inhibition of NaV1.6 could be just as efficient as selective activation of NaV1.1 and these approaches could prove to be novel potential treatment strategies for Dravet syndrome and other (genetic) epilepsies. Compounds tested in zebrafish however, should always be further validated in other model systems for efficacy in mammals and to screen for potential side effects."	"Biological concepts in human sodium channel epilepsies and their relevance in clinical practice. Voltage-gated sodium channels (SCNs) share similar amino acid sequence, structure, and function. Genetic variants in the four human brain-expressed SCN genes SCN1A/2A/3A/8A have been associated with heterogeneous epilepsy phenotypes and neurodevelopmental disorders. To better understand the biology of seizure susceptibility in SCN-related epilepsies, our aim was to determine similarities and differences between sodium channel disorders, allowing us to develop a broader perspective on precision treatment than on an individual gene level alone. We analyzed genotype-phenotype correlations in large SCN-patient cohorts and applied variant constraint analysis to identify severe sodium channel disease. We examined temporal patterns of human SCN expression and correlated functional data from in vitro studies with clinical phenotypes across different sodium channel disorders. Comparing 865 epilepsy patients (504 SCN1A, 140 SCN2A, 171 SCN8A, four SCN3A, 46 copy number variation [CNV] cases) and analysis of 114 functional studies allowed us to identify common patterns of presentation. All four epilepsy-associated SCN genes demonstrated significant constraint in both protein truncating and missense variation when compared to other SCN genes. We observed that age at seizure onset is related to SCN gene expression over time. Individuals with gain-of-function SCN2A/3A/8A missense variants or CNV duplications share similar characteristics, most frequently present with early onset epilepsy (&lt;3 months), and demonstrate good response to sodium channel blockers (SCBs). Direct comparison of corresponding SCN variants across different SCN subtypes illustrates that the functional effects of variants in corresponding channel locations are similar; however, their clinical manifestation differs, depending on their role in different types of neurons in which they are expressed. Variant function and location within one channel can serve as a surrogate for variant effects across related sodium channels. Taking a broader view on precision treatment suggests that in those patients with a suspected underlying genetic epilepsy presenting with neonatal or early onset seizures (&lt;3 months), SCBs should be considered."	"SCN8A heterozygous variants are associated with anoxic-epileptic seizures. Anoxic-epileptic seizures (AES) are rare outcomes of common childhood reflex anoxic syncope that trigger a true epileptic seizure. The term AES was coined by Stephenson in 1983, to differentiate these events from convulsive syncopes and the more common reflex anoxic syncopes. A genetic susceptibility for AES has been postulated; but, its molecular basis has up to now been elusive. We report here two illustrative cases and show the association of de novo SCN8A variants and AES. One of them had focal or generalized seizures and autonomic symptoms triggered by orthostatism; the second had breath-holding spells triggered by pain or exercise leading to tonic-clonic seizures; both had repeatedly normal EEGs and a family history of reflex syncope. The data of three additional AES patients further suggest, for the first time, a link between SCN8A pathogenic variants and AES. The neurodevelopment of four patients was abnormal. Four of the five SCN8A mutations observed here were previously described in patients with seizure disorders. Seizures responded particularly well to sodium channel blockers. Our observation enriches the spectrum of seizures linked with SCN8A pathogenic variants."	"Gene Therapy Repairs for the Epileptic Brain: Potential for Treatment and Future Directions. Epilepsy is a syndrome specified by frequent seizures and is one of the most prevalent neurological conditions, and that one-third of people of epilepsy are resistant to available drugs. Surgery is supposed to be the main treatment for the remedy of multiple drug-resistant epilepsy, but it is a drastic procedure. Advancement in genomic technologies indicates that gene therapy can make such surgery unnecessary. The considerable number of new studies show the significance of mutation in mammalian target of rapamycin pathway, NMDA receptors, GABA receptors, potassium channels and G-protein coupled receptors. Illustration of the meticulous drug in epilepsy targeting new expression of mutations in SCN8A, GRIN2A, GRIN2D and KCNT1 are conferred. Various methods are utilized to express a gene in a precise area of the brain; Transplantation of cells in an ex vivo approach (fetal cells, fibroblasts, immortalized cells), nonviral vector delivery and viral vector delivery like retrovirus, herpes simplex virus adenovirus and adeno-related virus. Gene therapy has thus been explored to generate anti-epileptogenic, anti-seizure and disease-modifying effects. Specific targeting of the epileptogenic region is facilitated by gene therapy, hence sparing the adjacent healthy tissue and decreasing the adverse effects that frequently go hand in hand with antiepileptic medication."	"Precision medicine in sodium channelopathies - Moving beyond seizure control towards disease modification. NA"	"Scn8a Antisense Oligonucleotide Is Protective in Mouse Models of SCN8A Encephalopathy and Dravet Syndrome. SCN8A encephalopathy is a developmental and epileptic encephalopathy (DEE) caused by de novo gain-of-function mutations of sodium channel Nav 1.6 that result in neuronal hyperactivity. Affected individuals exhibit early onset drug-resistant seizures, developmental delay, and cognitive impairment. This study was carried out to determine whether reducing the abundance of the Scn8a transcript with an antisense oligonucleotide (ASO) would delay seizure onset and prolong survival in a mouse model of SCN8A encephalopathy. ASO treatment was tested in a conditional mouse model with Cre-dependent expression of the pathogenic patient SCN8A mutation p.Arg1872Trp (R1872W). This model exhibits early onset of seizures, rapid progression, and 100% penetrance. An Scn1a <sup>+/-</sup> haploinsufficient mouse model of Dravet syndrome was also treated. ASO was administered by intracerebroventricular injection at postnatal day 2, followed in some cases by stereotactic injection at postnatal day 30. We observed a dose-dependent increase in length of survival from 15 to 65 days in the Scn8a-R1872W/+ mice treated with ASO. Electroencephalographic recordings were normal prior to seizure onset. Weight gain and activity in an open field were unaffected, but treated mice were less active in a wheel running assay. A single treatment with Scn8a ASO extended survival of Dravet syndrome mice from 3 weeks to &gt;5 months. Reduction of Scn8a transcript by 25 to 50% delayed seizure onset and lethality in mouse models of SCN8A encephalopathy and Dravet syndrome. Reduction of SCN8A transcript is a promising approach to treatment of intractable childhood epilepsies. Ann Neurol 2020;87:339-346."	"Differential excitatory vs inhibitory SCN expression at single cell level regulates brain sodium channel function in neurodevelopmental disorders. The four voltage-gated sodium channels SCN1/2/3/8A have been associated with heterogeneous types of developmental disorders, each presenting with disease specific temporal and cell type specific gene expression. Using single-cell RNA sequencing transcriptomic data from humans and mice, we observe that SCN1A is predominantly expressed in inhibitory neurons. In contrast, SCN2/3/8A are profoundly expressed in excitatory neurons with SCN2/3A starting prenatally, followed by SCN1/8A neonatally. In contrast to previous observations from low resolution RNA screens, we observe that all four genes are expressed in both excitatory and inhibitory neurons, however, exhibit differential expression strength. These findings provide molecular evidence, at single-cell resolution, to support the hypothesis that the excitatory/inhibitory (E/I) neuronal expression ratios of sodium channels are important regulatory mechanisms underlying brain homeostasis and neurological diseases. Modulating the E/I expression balance within cell types of sodium channels could serve as a potential strategy to develop targeted treatment for NaV-associated neuronal developmental disorders."	"Phenotypic and genetic spectrum of SCN8A-related disorders, treatment options, and outcomes. Pathogenic variants in SCN8A have originally been described in patients with developmental and epileptic encephalopathy (DEE). However, recent studies have shown that SCN8A variants can be associated with a broader phenotypic spectrum, including the following: (1) Patients with early onset, severe DEE, developing severe cognitive and motor regression, pyramidal/extrapyramidal signs, and cortical blindness. Severe SCN8A-DEE is characterized by intractable seizures beginning in the first months of life. The seizures are often prolonged focal hypomotor and occur in clusters, with prominent vegetative symptoms (apnea, cyanosis, mydriasis), evolving to clonic or bilateral tonic-clonic manifestations. Spasm-like episodes, cortical myoclonus, and recurrent episodes of status epilepticus are also common. Electroencephalograms (EEGs) show progressive background deterioration and multifocal abnormalities, predominant in the posterior regions. (2) Sporadic and familial patients with mild-to-moderate intellectual disability, discrete neurological signs, and treatable epilepsy. EEG is abnormal in half of the cases, showing multifocal or diffuse epileptiform abnormalities. (3) Familial cases with benign infantile seizures, sometimes associated with paroxysmal dyskinesia later in life, with no other neurological deficits, normal cognition, and usually normal interictal EEG. (4) Patients without epilepsy but with cognitive and/or behavioral disturbances, or with movement disorders. Extrapyramidal features, such as dyskinesia, ataxia, and choreoathetosis are common in all groups. Early death has been reported in about 5% of the patients, most often in the subgroup of severe DEE. Premature death occurs during early childhood and often for causes other than sudden unexpected death in epilepsy. All epilepsy subgroups exhibit better seizure control with sodium channel blockers, usually at supratherapeutic doses in the severe cases. In severe SCN8A-DEE, ketogenic diet often has a good effect, whereas levetiracetam has a negative effect, if any. The familial SCN8A-related epilepsies show an autosomal dominant pattern of inheritance, whereas the vast majority of SCN8A-DEEs occur de novo."	"SCN8A encephalopathy: Mechanisms and models. De novo mutations of the neuronal sodium channel SCN8A have been identified in approximately 2% of individuals with epileptic encephalopathy. These missense mutations alter the biophysical properties of sodium channel Nav1.6 in ways that lead to neuronal hyperexcitability. We generated two mouse models carrying patient mutations N1768D and R1872W to examine the effects on neuronal function in vivo. The conditional R1872W mutation is activated by expression of CRE recombinase, permitting characterization of the effects of the mutation on different classes of neurons and at different points in postnatal development. Preclinical drug testing in these mouse models provides support for several new therapies for this devastating disorder. In contrast with the gain-of-function mutations in epilepsy, mutations of SCN8A that result in partial or complete loss of function are associated with intellectual disability and other disorders."	"Recent advances in treatment of epilepsy-related sodium channelopathies. Voltage-gated sodium channels (VGSCs) play a crucial role in generation of action potentials. Pathogenic variants in the five human brain expressed VGSC genes, SCN1A, SCN2A, SCN3A, SCN8A and SCN1B have been associated with a spectrum of epilepsy phenotypes and neurodevelopmental disorders. In the last decade, next generation sequencing techniques have revolutionized the way we diagnose these channelopathies, which is paving the way towards precision medicine. Knowing the functional effect (Loss-of-function versus Gain-of-function) of a variant is not only important for understanding the underlying pathophysiology, but it is particularly crucial to orient therapeutic decisions. Here we provide a review of the literature dealing with treatment options in epilepsy-related sodium channelopathies, including the current and emerging medications."	"A multi-disciplinary clinic for SCN8A-related epilepsy. We endeavored to evaluate a cohort of patients diagnosed with SCN8A-related epilepsy in a multi-disciplinary clinic and to create a bio-repository. We recruited patients with epilepsy due to SCN8A variants at Children's National Medical Center, through family organizations, or SCN8A.net. Study procedures included medical record review, review of EEG and MRI data, clinical evaluation, the Vineland Adaptive Behavior Scales, Third Edition (VABS-3), DNA extraction, and preparation of peripheral blood mononuclear cells. Seventeen patients (9 months - 19 years) completed the study. Age at seizure onset was 1 day to 4 years old (median age 4 months). Epilepsy phenotype ranged from mild epilepsy to severe developmental and epileptic encephalopathy. Medications targeting the voltage-gated sodium channel were most often effective, while levetiracetam resulted in worsening seizures and/or developmental regression in 7/16 (p &lt; 0.05). VABS-3 scores were below age expectations for most children; older children had lower scores. Neurological examination revealed hypotonia (13), spastic quadriparesis (1), ataxia (9), dyskinesia (2)/ dystonia (7), and four non-ambulatory. This is the first report of a large series of patients with epilepsy due to SCN8A variants evaluated in a single multi-disciplinary clinic. By utilizing a more comprehensive and consistent evaluation, we clarify specific seizure and epilepsy types, describe a distinct epilepsy phenotype in a patient with a nonsense variant, delineate patterns of developmental delay, language, and swallow function (specifically anomic aphasia and flaccid dysarthria), identify and characterize movement disorders, report common findings on physical exam, and demonstrate clinical worsening with levetiracetam."	"Nav1.6 promotes inflammation and neuronal degeneration in a mouse model of multiple sclerosis. In multiple sclerosis (MS) and in the experimental autoimmune encephalomyelitis (EAE) model of MS, the Nav1.6 voltage-gated sodium (Nav) channel isoform has been implicated as a primary contributor to axonal degeneration. Following demyelination Nav1.6, which is normally co-localized with the Na<sup>+</sup>/Ca<sup>2+</sup> exchanger (NCX) at the nodes of Ranvier, associates with β-APP, a marker of neural injury. The persistent influx of sodium through Nav1.6 is believed to reverse the function of NCX, resulting in an increased influx of damaging Ca<sup>2+</sup> ions. However, direct evidence for the role of Nav1.6 in axonal degeneration is lacking. In mice floxed for Scn8a, the gene that encodes the α subunit of Nav1.6, subjected to EAE we examined the effect of eliminating Nav1.6 from retinal ganglion cells (RGC) in one eye using an AAV vector harboring Cre and GFP, while using the contralateral either injected with AAV vector harboring GFP alone or non-targeted eye as control. In retinas, the expression of Rbpms, a marker for retinal ganglion cells, was found to be inversely correlated to the expression of Scn8a. Furthermore, the gene expression of the pro-inflammatory cytokines Il6 (IL-6) and Ifng (IFN-γ), and of the reactive gliosis marker Gfap (GFAP) were found to be reduced in targeted retinas. Optic nerves from targeted eyes were shown to have reduced macrophage infiltration and improved axonal health. Taken together, our results are consistent with Nav1.6 promoting inflammation and contributing to axonal degeneration following demyelination."	"Distinct functional alterations in SCN8A epilepsy mutant channels. Mutations in the SCN8A gene cause early infantile epileptic encephalopathy. We characterize a new epilepsy-related SCN8A mutation, R850Q, in the human SCN8A channel and present gain-of-function properties of the mutant channel. Systematic comparison of R850Q with three other SCN8A epilepsy mutations, T761I, R1617Q and R1872Q, identifies one common dysfunction in resurgent current, although these mutations alter distinct properties of the channel. Computational simulations in two different neuron models predict an increased excitability of neurons carrying these mutations, which explains the over-excitation that underlies seizure activities in patients. These data provide further insight into the mechanism of SCN8A-related epilepsy and reveal subtle but potentially important distinction of functional characterization performed in the human vs. rodent channels. SCN8A is a novel causal gene for early infantile epileptic encephalopathy. It is well accepted that gain-of-function mutations in SCN8A underlie the disorder, although the remarkable heterogeneity of its clinical presentation and poor treatment response demand a better understanding of the disease mechanisms. Here, we characterize a new epilepsy-related SCN8A mutation, R850Q, in human Nav1.6. We show that it is a gain-of-function mutation, with a hyperpolarizing shift in voltage dependence of activation, a two-fold increase of persistent current and a slowed decay of resurgent current. We systematically compare its biophysics with three other SCN8A epilepsy mutations, T767I, R1617Q and R1872Q, in the human Nav1.6 channel. Although all of these mutations are gain-of-function, the mutations affect different aspects of channel properties. One commonality that we discovered is an alteration of resurgent current kinetics, although the mechanisms by which resurgent currents are augmented remain unclear for all of the mutations. Computational simulations predict an increased excitability of neurons carrying these mutations with differential enhancement by open channel blockade."	"The genomic and clinical landscape of fetal akinesia. Fetal akinesia has multiple clinical subtypes with over 160 gene associations, but the genetic etiology is not yet completely understood. In this study, 51 patients from 47 unrelated families were analyzed using next-generation sequencing (NGS) techniques aiming to decipher the genomic landscape of fetal akinesia (FA). We have identified likely pathogenic gene variants in 37 cases and report 41 novel variants. Additionally, we report putative pathogenic variants in eight cases including nine novel variants. Our work identified 14 novel disease-gene associations for fetal akinesia: ADSSL1, ASAH1, ASPM, ATP2B3, EARS2, FBLN1, PRG4, PRICKLE1, ROR2, SETBP1, SCN5A, SCN8A, and ZEB2. Furthermore, a sibling pair harbored a homozygous copy-number variant in TNNT1, an ultrarare congenital myopathy gene that has been linked to arthrogryposis via Gene Ontology analysis. Our analysis indicates that genetic defects leading to primary skeletal muscle diseases might have been underdiagnosed, especially pathogenic variants in RYR1. We discuss three novel putative fetal akinesia genes: GCN1, IQSEC3 and RYR3. Of those, IQSEC3, and RYR3 had been proposed as neuromuscular disease-associated genes recently, and our findings endorse them as FA candidate genes. By combining NGS with deep clinical phenotyping, we achieved a 73% success rate of solved cases."	"Genetic and clinical features of SCN8A developmental and epileptic encephalopathy. We aim to delineate the genetic and clinical features of SCN8A developmental and epileptic encephalopathy. Nine patients with SCN8A developmental and epileptic encephalopathy were included in this study. Genetic and clinical features and effectiveness of sodium channel blockers were assessed in patients who were confirmed with SCN8A mutations. The onset of seizures ranged from the neonatal period to 18 months of age. Seizure types were diverse and predominantly involved focal seizures or spasms. The most common initial epilepsy syndrome was West syndrome in four patients, followed by neonatal-onset focal seizures in three patients and unclassified focal epilepsy in two patients. Electroencephalograms (EEGs) showed slow and disorganized background and epileptiform abnormalities with occipital predominance. Six patients presented intractable seizures including one patient with recurrent nonconvulsive status epilepticus. Sodium channel blockers were effective in seven patients among eight patients given them. All patients showed developmental delay or regression. Severe hypotonia or ataxia was also presented in some patients. Microcephaly was also characteristic. De novo missense mutations in SCN8A were found in the inactivation gate, C-terminal, loop 2, and transmembrane segments (S1, 4, 5, and 6). There was no correlation between the location of the mutation in the protein and phenotype or response to sodium channel blockers. SCN8A developmental and epileptic encephalopathy presents intractable seizures including spasms, focal seizures, neonatal status epilepticus, and nonconvulsive status epilepticus. Sodium channel blockers were effective irrelevant to the location of the mutation in the protein."	"Over-expression of Nav1.6 channels is associated with lymph node metastases in colorectal cancer. Lymph node metastasis is a key factor in predicting and determining the prognosis of patients with colorectal cancer (CRC). Sodium channels are highly expressed in a variety of tumors and are closely related to tumor development, metastasis, and invasion. We investigated the relationship between the expressions of different subtypes of Nav channels and lymph node metastasis of CRC. Real-time PCR (RT-qPCR) was carried out to measure the expressions of different sodium channel subtypes, chemokine receptors (CCR2, CCR4, CCR7), and lymphocyte infiltration-related biomarkers (CD3e, CD8a, IL-2RA) in CRC tissues from 97 patients. The expressions of Nav1.5 and Nav1.6 in surgically isolated lymph nodes were detected by immunohistochemistry. Correlation analysis between expressions of different genes and lymph node metastasis was performed by two-tailed t test. Nav1.1 and Nav1.6 were highly expressed in CRC tissues and positively correlated with CRC lymph node metastasis. Nav1.6 was also highly expressed in metastatic lymph nodes. Further analysis showed that the high expression of Nav1.6 was closely related to the one of CCR2\CCR4 in tumor lymph node metastasis. These results suggested that Nav1.6 might be a novel marker for CRC lymph node metastasis."	"A de novo SCN8A heterozygous mutation in a child with epileptic encephalopathy: a case report. Epilepsy is a complex disorder caused by various factors, including genetic aberrance. Recent studies have identified an essential role of the sodium channel Nav1.6, encoded by the gene SCN8A, in epileptic encephalopathy. Using parent-offspring trio targeted-exome sequencing, we identified a de novo heterozygous missense mutation c.3953A &gt; G (p.N1318S) in SCN8A in a 3-year-and-9-month Chinese female patient with early infantile epileptic encephalopathy and a normal magnetic resonance imaging of the brain. This de novo mutation was only detected in the patient but not in her parents. Bioinformatic analysis indicates the pathogenicity of this mutation. Administration of the sodium channel blocker well controlled seizures in the patient. Therefore, we recommend trio targeted-exome sequencing as a routine method for pathogenic variant screening in patients with intractable epilepsy and a normal MRI."	"Biallelic inherited SCN8A variants, a rare cause of SCN8A-related developmental and epileptic encephalopathy. Monoallelic de novo gain-of-function variants in the voltage-gated sodium channel SCN8A are one of the recurrent causes of severe developmental and epileptic encephalopathy (DEE). In addition, a small number of de novo or inherited monoallelic loss-of-function variants have been found in patients with intellectual disability, autism spectrum disorder, or movement disorders. Inherited monoallelic variants causing either gain or loss-of-function are also associated with less severe conditions such as benign familial infantile seizures and isolated movement disorders. In all three categories, the affected individuals are heterozygous for a SCN8A variant in combination with a wild-type allele. In the present study, we describe two unusual families with severely affected individuals who inherited biallelic variants of SCN8A. We identified two families with biallelic SCN8A variants by diagnostic gene panel sequencing. Functional analysis of the variants was performed using voltage clamp recordings from transfected ND7/23 cells. We identified three probands from two unrelated families with DEE due to biallelic SCN8A variants. Each parent of an affected individual carried a single heterozygous SCN8A variant and exhibited mild cognitive impairment without seizures. In both families, functional analysis demonstrated segregation of one allele with complete loss-of-function, and one allele with altered biophysical properties consistent with partial loss-of-function. These studies demonstrate that SCN8A DEE may, in rare cases, result from inheritance of two variants, both of which exhibit reduced channel activity. In these families, heterozygosity for the dominant variants results in less severe disease than biallelic inheritance of two variant alleles. The clinical consequences of variants with partial and complete loss of SCN8A function are variable and likely to be influenced by genetic background."	"Mutations in the Scn8a DIIS4 voltage sensor reveal new distinctions among hypomorphic and null Nav 1.6 sodium channels. Mutations in the voltage-gated sodium channel gene SCN8A cause a broad range of human diseases, including epilepsy, intellectual disability, and ataxia. Here we describe three mouse lines on the C57BL/6J background with novel, overlapping mutations in the Scn8a DIIS4 voltage sensor: an in-frame 9 bp deletion (Δ9), an in-frame 3 bp insertion (∇3) and a 35 bp deletion that results in a frameshift and the generation of a null allele (Δ35). Scn8a <sup>Δ9/+</sup> and Scn8a <sup>∇3/+</sup> heterozygous mutants display subtle motor deficits, reduced acoustic startle response, and are resistant to induced seizures, suggesting that these mutations reduce activity of the Scn8a channel protein, Nav 1.6. Heterozygous Scn8a <sup>Δ35/+</sup> mutants show no alterations in motor function or acoustic startle response, but are resistant to induced seizures. Homozygous mutants from each line exhibit premature lethality and severe motor impairments, ranging from uncoordinated gait with tremor (Δ9 and ∇3) to loss of hindlimb control (Δ35). Scn8a <sup>Δ9/Δ9</sup> and Scn8a <sup>∇3/∇3</sup> homozygous mutants also exhibit impaired nerve conduction velocity, while normal nerve conduction was observed in Scn8a <sup>Δ35/Δ35</sup> homozygous mice. Our results suggest that hypomorphic mutations that reduce Nav 1.6 activity will likely result in different clinical phenotypes compared to null alleles. These three mouse lines represent a valuable opportunity to examine the phenotypic impacts of hypomorphic and null Scn8a mutations without the confound of strain-specific differences."	"Rufinamide efficacy and association with phenotype and genotype in children with intractable epilepsy: A retrospective single center study. To assess long-term efficacy and tolerability of rufinamide in children with epilepsy and a broad spectrum of underlying epileptic etiologies. Patients with epilepsy treated with rufinamide between 1/1/2009 and 1/1/2018 at Seattle Children's Hospital were included. Data were collected via retrospective chart review. Rufinamide efficacy was defined as seizure reduction from baseline including seizure free, &gt;50% reduction, any reduction, no reduction, or worsening seizures. Pearson's chi-square test was used for statistical analysis. 183 patients (70 females and 113 males) with a broad spectrum of epileptic aetiologies (genetic/metabolic, hypoxic-ischemic, structural and others) were included. 45.9% of the patients had Lennox Gastaut syndrome. Rate of any seizure reduction was at 47.5%, seizure reduction &gt;50% at 35%, and seizure free at 3.3%. Mean rufinamide dosage was 33.9 mg/kg/d (SD = 14.12). Mean duration of treatment was 44.48 months (SD 32.33). Suspected adverse effects occurred at 10.9%, most often as fatigue. Rufinamide achieved better seizure reduction in girls compared to boys [OR = 0.52, 95% CI (0.28, 0.97), p = 0.038]. Seizures were activated in a patient with a SCN1A mutation, fully controlled in a patient with a SCN8A mutation. Patients with certain genetic abnormalities such as DEPDC5, KCNQ2, SPATA5, and 47XYY achieved significant seizure reduction. Rufinamide is an effective and well-tolerated drug for long-term treatment in pediatric patients with intractable epilepsy. Certain genotypes such as SCN8A showed good response to rufinamide. Girls seemed to respond better than boys."	"Diagnostic Yield of Epilepsy Panel Testing in Patients With Seizure Onset Within the First Year of Life. Purpose: We aimed to evaluate the diagnostic yield of epilepsy gene panel testing in epilepsy patients whose seizures began within the first year after birth. We included 112 patients with seizure onset before 12 months and no known etiology. Methods: Deep targeted sequencing with a custom-designed capture probe was performed to ensure the detection of germline or mosaic sequence variants and copy number variations (CNVs). Results: We identified pathogenic or likely pathogenic variants in 53 patients (47.3%, 53/112), including five with pathogenic CNVs. Two putative pathogenic mosaic variants in SCN8A and KCNQ2 were also detected and validated. Those with neonatal onset (61.5%, 16/26) or early infantile onset (50.0%, 29/58) showed higher diagnostic rates than those with late infantile onset (28.5%, 8/28). The diagnostic rate was similar between patients with a specific syndrome (51.9%, 27/52) and those with no recognizable syndrome (43.3%, 26/60). Conclusion: Epilepsy gene panel testing identified a genetic cause in nearly half of the infantile onset epilepsy patients. Since the phenotypic spectrum is expanding and characterizing it at seizure onset is difficult, this group should be prioritized for epilepsy gene panel testing."	"Identification of CNS-Penetrant Aryl Sulfonamides as Isoform-Selective NaV1.6 Inhibitors with Efficacy in Mouse Models of Epilepsy. Nonselective antagonists of voltage-gated sodium (NaV) channels have been long used for the treatment of epilepsies. The efficacy of these drugs is thought to be due to the block of sodium channels on excitatory neurons, primarily NaV1.6 and NaV1.2. However, these currently marketed drugs require high drug exposure and suffer from narrow therapeutic indices. Selective inhibition of NaV1.6, while sparing NaV1.1, is anticipated to provide a more effective and better tolerated treatment for epilepsies. In addition, block of NaV1.2 may complement the anticonvulsant activity of NaV1.6 inhibition. We discovered a novel series of aryl sulfonamides as CNS-penetrant, isoform-selective NaV1.6 inhibitors, which also displayed potent block of NaV1.2. Optimization focused on increasing selectivity over NaV1.1, improving metabolic stability, reducing active efflux, and addressing a pregnane X-receptor liability. We obtained compounds 30-32, which produced potent anticonvulsant activity in mouse seizure models, including a direct current maximal electroshock seizure assay."	"Clinical Application of Targeted Next-Generation Sequencing Panels and Whole Exome Sequencing in Childhood Epilepsy. Genetic diagnosis of childhood epilepsy is crucial to provide disease-specific treatments. This report describes the genetic landscape of childhood epilepsy revealed by targeted next-generation sequencing panels for epilepsy (TNGSP-E) and whole exome sequencing (WES). In this retrospective cohort study, TNGSP-E and/or WES were applied to identify underlying genetic diagnoses in children seen in a single Pediatric Epilepsy Genetics Clinic. We reviewed electronic patient charts for phenotypes and biochemical, genetic, and neuroimaging investigations. Forty-four different genetic diagnoses were confirmed in 71 of 197 patients (36%; 95% CI 29.3%-43.2%). The diagnostic yield of WES (37%) was 1.9-fold greater than the diagnostic yield of TNGSP-E (19.0%; P=.0018). The number of genes included in TNGSP-E was not correlated with whether or not the test resulted in a diagnosis (Pearson's R=-0.02, P=.8). Inherited metabolic disorders accounted for 13% of the genetic diagnoses, despite abnormal metabolic investigations being an exclusion criteria. There was a direct treatment implication in 6% of patients with inherited metabolic disorders including pyridoxine dependent epilepsy, glucose transporter 1 deficiency and neuronal ceroid lipofuscinosis type 2. Additionally, there might be some treatment implications in 30% of patients with genetic diagnoses including SCN1A, SCN2A, SCN8A, and KCNQ2 associated epilepsies by application of effective anti-epileptic drugs or the ketogenic diet therapy. The high diagnostic yield of clinical molecular genetic investigations and their disease-specific treatment implications highlight the importance of genetic diagnosis in childhood epilepsy. We recommend a stepwise diagnostic algorithm including metabolic investigations for treatable disorders, chromosomal microarray analysis, TNGSP-E, and WES."	"Non-mosaic partial duplication 12p in a patient with dysmorphic characteristics and developmental delay. Duplication of the short arm of chromosome 12 is a rare chromosomal abnormality that may arise de novo or result from malsegregation of a balanced parental translocation. This study comprises the clinical description, cytogenetic and cytogenomic analyses and genotype-phenotype correlation in a patient with facial dysmorphism, developmental delay and intellectual impairment caused by non-mosaic partial duplication and a paracentric inversion 12p. The patient's GTG-banded karyotype was 46,XX,invdup(12)(pter → p13.32::p11.1 → p13.31::p13.31 → qter). A genetic gain of approximately 28 Mb was detected in the chromosomal region arr[GRCh37]12p13.31-p11.1(6914072_34756209)x3. The chromosomal alteration seen in our patient is described as &quot;pure&quot; partial duplication 12p. In most cases, duplication 12p phenotype is characterized by dysmorphic features, multiple congenital anomalies and intellectual disability. A small number of cases in literature have described genes associated with neurodevelopmental disease, such as ING4, CHD4, MFAP5, GRIN2B, SOX5, SCN8A and PIANP. In our patient the duplication 12p was de novo. This study should contribute to the genotype-phenotype correlation in partial duplication 12p cases."	"A single-center SCN8A-related epilepsy cohort: clinical, genetic, and physiologic characterization. Pathogenic variants in SCN8A, encoding the voltage-gated sodium (Na+) channel α subunit Nav1.6, is a known cause of epilepsy. Here, we describe clinical and genetic features of all patients with SCN8A epilepsy evaluated at a single-tertiary care center, with biophysical data on identified Nav1.6 variants and pharmacological response to selected Na+ channel blockers. SCN8A variants were identified via an exome-based panel of epilepsy-associated genes for next generation sequencing (NGS), or via exome sequencing. Biophysical characterization was performed using voltage-clamp recordings of ionic currents in heterologous cells. We observed a range in age of onset and severity of epilepsy and associated developmental delay/intellectual disability. Na+ channel blockers were highly or partially effective in most patients. Nav1.6 variants exhibited one or more biophysical defects largely consistent with gain of channel function. We found that clinical severity was correlated with the presence of multiple observed biophysical defects and the extent to which pathological Na+ channel activity could be normalized pharmacologically. For variants not previously reported, functional studies enhanced the evidence of pathogenicity. We present a comprehensive single-center dataset for SCN8A epilepsy that includes clinical, genetic, electrophysiologic, and pharmacologic data. We confirm a spectrum of severity and a variety of biophysical defects of Nav1.6 variants consistent with gain of channel function. Na+ channel blockers in the treatment of SCN8A epilepsy may correlate with the effect of such agents on pathological Na+ current observed in heterologous systems."	"Mapping the knowledge structure and trends of epilepsy genetics over the past decade: A co-word analysis based on medical subject headings terms. Over the past 10 years, epilepsy genetics has made dramatic progress. This study aimed to analyze the knowledge structure and the advancement of epilepsy genetics over the past decade based on co-word analysis of medical subject headings (MeSH) terms. Scientific publications focusing on epilepsy genetics from the PubMed database (January 2009-December 2018) were retrieved. Bibliometric information was analyzed quantitatively using Bibliographic Item Co-Occurrence Matrix Builder (BICOMB) software. A knowledge social network analysis and publication trend based on the high-frequency MeSH terms was built using VOSviewer. According to the search strategy, a total of 5185 papers were included. Among all the extracted MeSH terms, 86 high-frequency MeSH terms were identified. Hot spots were clustered into 5 categories including: &quot;ion channel diseases,&quot; &quot;beyond ion channel diseases,&quot; &quot;experimental research &amp; epigenetics,&quot; &quot;single nucleotide polymorphism &amp; pharmacogenetics,&quot; and &quot;genetic techniques&quot;. &quot;Epilepsy,&quot; &quot;mutation,&quot; and &quot;seizures,&quot; were located at the center of the knowledge network. &quot;Ion channel diseases&quot; are typically in the most prominent position of epilepsy genetics research. &quot;Beyond ion channel diseases&quot; and &quot;genetic techniques,&quot; however, have gradually grown into research cores and trends, such as &quot;intellectual disability,&quot; &quot;infantile spasms,&quot; &quot;phenotype,&quot; &quot;exome,&quot; &quot; deoxyribonucleic acid (DNA) copy number variations,&quot; and &quot;application of next-generation sequencing.&quot; While ion channel genes such as &quot;SCN1A,&quot; &quot;KCNQ2,&quot; &quot;SCN2A,&quot; &quot;SCN8A&quot; accounted for nearly half of epilepsy genes in MeSH terms, a number of additional beyond ion channel genes like &quot;CDKL5,&quot; &quot;STXBP1,&quot; &quot;PCDH19,&quot; &quot;PRRT2,&quot; &quot;LGI1,&quot; &quot;ALDH7A1,&quot; &quot;MECP2,&quot; &quot;EPM2A,&quot; &quot;ARX,&quot; &quot;SLC2A1,&quot; and more were becoming increasingly popular. In contrast, gene therapies, treatment outcome, and genotype-phenotype correlations were still in their early stages of research. This co-word analysis provides an overview of epilepsy genetics research over the past decade. The 5 research categories display publication hot spots and trends in epilepsy genetics research which could consequently supply some direction for geneticists and epileptologists when launching new projects."	"Exploring the molecular basis of neuronal excitability in a vocal learner. Vocal learning, the ability to learn to produce vocalizations through imitation, relies on specialized brain circuitry known in songbirds as the song system. While the connectivity and various physiological properties of this system have been characterized, the molecular genetic basis of neuronal excitability in song nuclei remains understudied. We have focused our efforts on examining voltage-gated ion channels to gain insight into electrophysiological and functional features of vocal nuclei. A previous investigation of potassium channel genes in zebra finches (Taeniopygia guttata) revealed evolutionary modifications unique to songbirds, as well as transcriptional specializations in the song system [Lovell PV, Carleton JB, Mello CV. BMC Genomics 14:470 2013]. Here, we expand this approach to sodium, calcium, and chloride channels along with their modulatory subunits using comparative genomics and gene expression analysis encompassing microarrays and in situ hybridization. We found 23 sodium, 38 calcium, and 33 chloride channel genes (HGNC-based classification) in the zebra finch genome, several of which were previously unannotated. We determined 15 genes are missing relative to mammals, including several genes (CLCAs, BEST2) linked to olfactory transduction. The majority of sodium and calcium but few chloride channels showed differential expression in the song system, among them SCN8A and CACNA1E in the direct motor pathway, and CACNG4 and RYR2 in the anterior forebrain pathway. In several cases, we noted a seemingly coordinated pattern across multiple nuclei (SCN1B, SCN3B, SCN4B, CACNB4) or sparse expression (SCN1A, CACNG5, CACNA1B). The gene families examined are highly conserved between avian and mammalian lineages. Several cases of differential expression likely support high-frequency and burst firing in specific song nuclei, whereas cases of sparse patterns of expression may contribute to the unique electrophysiological signatures of distinct cell populations. These observations lay the groundwork for manipulations to determine how ion channels contribute to the neuronal excitability properties of vocal learning systems."	"Influence of age at seizure onset on the acquisition of neurodevelopmental skills in an SCN8A cohort. To characterize a cohort of patients with SCN8A-related epilepsy and to perform analyses to identify correlations involving the acquisition of neurodevelopmental skills. We analyzed patient data (n = 91) submitted to an online registry tailored to characteristics of children with SCN8A variants. Participants provided information on the history of their child's seizures, medications, comorbidities, and developmental skills based on the Denver II items. Spearman rank tests were utilized to test for correlations among a variety of aspects of seizures, medications, and neurodevelopmental progression. The 91 participants carried 71 missense variants (41 newly reported) and three truncating variants. Ages at seizure onset ranged from birth to &gt;12 months of age (mean ± SD = 5 months 21 days ± 7 months 14 days). Multiple seizure types with multimodal onset times and developmental delay were observed as general features of this cohort. We found a positive correlation between a developmental score based upon percentage of acquired skills and the age at seizure onset, current seizure freedom, and initial febrile seizures. Analyses of cohort subgroups revealed clear distinctions between patients who had a single reported variant in SCN8A and those with an additional variant reported in a gene other than SCN8A, as well as between patients with different patterns of regression before and at seizure onset. This is the first study of an SCN8A patient cohort of this size and for which correlations between age at seizure onset and neurodevelopment were investigated. Our correlation studies suggest that variants of uncertain significance should be considered in assessing children with SCN8A-related disorders. This study substantially improves the characterization of this patient population and our understanding of the neurodevelopmental effects associated with seizures for SCN8A patients, and provides a clinical context at initial presentation that may be prognostic for developmental outcome."	"Modified age-dependent expression of NaV1.6 in an ALS model correlates with motor cortex excitability alterations. Cortical hyperexcitability is an early and intrinsic feature of Amyotrophic Lateral Sclerosis (ALS), but the mechanisms underlying this critical neuronal dysfunction are poorly understood. Recently, we have demonstrated that layer V pyramidal neurons (PNs) in the primary motor cortex (M1) of one-month old (P30) G93A ALS mice display an early hyperexcitability status compared to Control mice. In order to investigate the time-dependent evolution of the cortical excitability in the G93A ALS model, here we have performed an electrophysiological and immunohistochemical study at three different mouse ages. M1 PNs from 14-days old (P14) G93A mice have shown no excitability alterations, while M1 PNs from 3-months old (P90) G93A mice have shown a hypoexcitability status, compared to Control mice. These age-dependent cortical excitability dysfunctions correlate with a similar time-dependent trend of the persistent sodium current (INaP) amplitude alterations, suggesting that INaP may play a crucial role in the G93A cortical excitability aberrations. Specifically, immunohistochemistry experiments have indicated that the expression level of the NaV1.6 channel, one of the voltage-gated Na<sup>+</sup> channels mainly distributed within the central nervous system, varies in G93A primary motor cortex during disease progression, according to the excitability and INaP alterations, but not in other cortical areas. Microfluorometry experiments, combined with electrophysiological recordings, have verified that P30 G93A PNs hyperexcitability is associated to a greater accumulation of intracellular calcium ([Ca<sup>2+</sup>]i) compared to Control PNs, and that this difference is still present when G93A and Control PNs fire action potentials at the same frequency. These results suggest that [Ca<sup>2+</sup>]i de-regulation in G93A PNs may contribute to neuronal demise and that the NaV1.6 channels could be a potential therapeutic target to ameliorate ALS disease progression."	"SCN8A: When Neurons Are So Excited, They Just Can't Hide It. Prominent role of forebrain excitatory neurons in SCN8A encephalopathy. Bunton-Stasyshyn RKA, Wagnon JL, Wengert ER, Barker BS, Faulkner A, Wagley PK, Bhatia K, Jones JM, Maniaci MR, Parent JM, Goodkin HP, Patel MK, Meisler MH. Brain. 2019;142(2):362-375. doi:10.1093/brain/awy324. De novo mutations of the sodium channel gene SCN8A result in an epileptic encephalopathy with refractory seizures, developmental delay, and elevated risk of sudden death. p.Arg1872Trp is a recurrent de novo SCN8A mutation reported in 14 unrelated individuals with epileptic encephalopathy that included seizure onset in the prenatal or infantile period and severe verbal and ambulatory comorbidities. The major biophysical effect of the mutation was previously shown to be impaired channel inactivation accompanied by increased current density. We have generated a conditional mouse mutation in which expression of this severe gain-of-function mutation is dependent upon Cre recombinase. Global activation of p.Arg1872Trp by EIIa-Cre resulted in convulsive seizures and lethality at 2 weeks of age. Neural activation of the p.Arg1872Trp mutation by Nestin-Cre also resulted in early-onset seizures and death. Restriction of p.Arg1872Trp expression to excitatory neurons using Emx1-Cre recapitulated seizures and juvenile lethality between 1 and 2 months of age. In contrast, activation of p.Arg1872Trp in inhibitory neurons by Gad2-Cre or Dlx5/6-Cre did not induce seizures or overt neurological dysfunction. The sodium channel modulator GS967/Prax330 prolonged survival of mice with global expression of R1872W and also modulated the activity of the mutant channel in transfected cells. Activation of the p.Arg1872Trp mutation in adult mice was sufficient to generate seizures and death, indicating that successful therapy will require lifelong treatment. These findings provide insight into the pathogenic mechanism of this gain-of-function mutation of SCN8A and identify excitatory neurons as critical targets for therapeutic intervention."	"Prax330 reduces persistent and resurgent sodium channel currents and neuronal hyperexcitability of subiculum neurons in a mouse model of SCN8A epileptic encephalopathy. SCN8A epileptic encephalopathy is a severe genetic epilepsy syndrome caused by de novo gain-of-function mutations of SCN8A encoding the voltage-gated sodium (Na) channel (VGSC) NaV1.6. Therapeutic management is difficult in many patients, leading to uncontrolled seizures and risk of sudden unexpected death in epilepsy (SUDEP). There is a need to develop novel anticonvulsants that can specifically target aberrant VGSC activity associated with SCN8A gain-of-function mutations. In this study, we investigate the effects of Prax330, a novel VGSC inhibitor, on the biophysical properties of wild-type (WT) NaV1.6 and the patient mutation p.Asn1768Asp (N1768D) in ND7/23 cells. The effects of Prax330 on persistent (INaP) and resurgent (INaR) Na currents and neuronal excitability in subiculum neurons from a knock-in mouse model of the Scn8a-N1768D mutation (Scn8a<sup>D/+</sup>) were also examined. In ND7/23 cells, Prax330 reduced INaP currents recorded from cells expressing Scn8a-N1768D and hyperpolarized steady-state inactivation curves. Recordings from brain slices demonstrated elevated INaP and INaR in subiculum neurons from Scn8a<sup>D/+</sup> mutant mice and abnormally large action potential (AP) burst-firing events in a subset of neurons. Prax330 (1 μM) reduced both INaP and INaR and suppressed AP bursts, with a smaller effect on AP waveforms that had similar morphology to WT neurons. Prax330 (1 μM) also reduced synaptically-evoked APs in Scn8a<sup>D/+</sup> subiculum neurons but not in WT neurons. Our results highlight the efficacy of targeting INaP and INaR and inactivation parameters in controlling subiculum excitability and suggest Prax330 as a promising novel therapy for SCN8A epileptic encephalopathy."	"Deletion of Class II ADP-Ribosylation Factors in Mice Causes Tremor by the Nav1.6 Loss in Cerebellar Purkinje Cell Axon Initial Segments. ADP-ribosylation factors (ARFs) are a family of small monomeric GTPases comprising six members categorized into three classes: class I (ARF1, 2, and 3), class II (ARF4 and 5), and class III (ARF6). In contrast to class I and III ARFs, which are the key regulators in vesicular membrane trafficking, the cellular function of class II ARFs remains unclear. In the present study, we generated class II ARF-deficient mice and found that ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice exhibited essential tremor (ET)-like behaviors. In vivo electrophysiological recordings revealed that ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice of both sexes exhibited abnormal brain activity when moving, raising the possibility of abnormal cerebellar excitability. Slice patch-clamp experiments demonstrated the reduced excitability of the cerebellar Purkinje cells (PCs) in ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice. Immunohistochemical and electrophysiological analyses revealed a severe and selective decrease of pore-forming voltage-dependent Na<sup>+</sup> channel subunit Nav1.6, important for maintaining repetitive action potential firing, in the axon initial segment (AIS) of PCs. Importantly, this decrease in Nav1.6 protein localized in the AIS and the consequent tremors in ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice could be alleviated by the PC-specific expression of ARF5 using adeno-associated virus vectors. Together, our data demonstrate that the decreased expression of the class II ARF proteins in ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice, leading to a haploinsufficiency of ARF4 in the absence of ARF5, impairs the localization of Nav1.6 to the AIS and hence reduces the membrane excitability in PCs, resulting in the ET-like movement disorder. We suggest that class II ARFs function in localizing specific proteins, such as Nav1.6, to the AIS.SIGNIFICANCE STATEMENT We found that decreasing the expression of class II ARF proteins, through the generation of ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice, impairs Nav1.6 distribution to the axon initial segment (AIS) of cerebellar Purkinje cells (PCs), thereby resulting in the impairment of action potential firing of PCs. The ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mutant mice exhibited movement-associated essential tremor (ET)-like behavior with pharmacological profiles similar to those in ET patients. The exogenous expression of ARF5 reduced the tremor phenotype and restored the localization of Nav1.6 immunoreactivity to the AIS in ARF4<sup>+/-</sup>/ARF5<sup>-/-</sup> mice. Thus, our results suggest that class II ARFs are involved in the localization of Nav1.6 to the AISs in cerebellar PCs and that the reduction of class II ARF activity leads to ET-like movement disorder."	"Somatic Mutations Profile of a Young Patient With Metastatic Urothelial Carcinoma Reveals Mutations in Genes Involved in Ion Channels. Background: Urothelial carcinoma is the most common malignancy of the bladder and is primarily considered as a disease of the elderly. Studies that address bladder tumor occurrence in young age groups are rare. Case Presentation: A 19-year-old male presented with a gross total painless hematuria. A histology after biopsy revealed a high-grade transitional cell carcinoma with lymph node metastasis. The patient succumbed to the disease on day 72 of the treatment. Here, we used whole-exome sequencing of a paired tumor-normal sample to identify the somatic mutations and the possible targets of treatment. Result: We predicted eight potential driver mutations (TP53 p.V157L, RB1 c.1498+1G&gt;T, MED23 p.L1127P, CTNND1 p.S713C, NSD1 p.P2212A, MED17 p.G556V, DPYD p.Q814K, and SPEN p.S1078<sup>*</sup>). In addition, we predicted deleterious mutations in genes involved in the ion channels (CACNA1S p.E1581K, CACNG1 p.P71T, CACNG8 p.G404W, GRIN2B p.A1096T, KCNC1 p.G16V, KCNH4 p.E874K, KCNK9 p.R131S, P2RX7 p.A296D, and SCN8A p.R558H). Conclusions: Most likely, mutations in genes involved in ion channels may be responsible for the aggressive behavior of a tumor. Ion channels are the second largest class of drug targets, and may thus serve as a putative potential therapeutic target in advanced stage urothelial carcinoma."	"Generalized tonic seizures with autonomic signs are the hallmark of SCN8A developmental and epileptic encephalopathy. Developmental and epileptic encephalopathy (DEE) due to SCN8A gene variants is characterized by drug-resistant early onset epilepsy associated with severe intellectual disability. Different seizure types have been reported, and a sequence of autonomic manifestations such as brady-/tachycardia, irregular breathing, and cyanosis. Nevertheless, an exhaustive video-polygraphic documentation is still lacking. In this study, we reviewed the ictal electroencephalograms (EEGs) of five patients with SCN8A-DEE followed-up at the Neuroscience Department at Bambino Gesù Children's Hospital in Rome. We identified generalized tonic seizure as the major seizure type at epilepsy onset. Seizure severity could vary from subtle to marked clinical manifestations, depending from the extent and groups of muscles involved and association with autonomic modifications. We found autonomic signs in 80% of seizures in our cases, and we were able to identify a stereotyped sequence of ictal events for most of seizures. Autonomic signs occurred in rapid sequence: flushing of the face, sometimes associated with sialorrhea, bradycardia, and hypopnea appeared within the first 1-2 s. Tachycardia, polypnea, perioral cyanosis, and pallor occurred later in the course of the seizure. Generalized tonic seizures are rarely described in other genetic epileptic conditions of early infancy because of ion channel mutations, such as in DEE due to KCNQ2 or SCN2A gene mutations, where seizures are most frequently reported as focal to bilateral tonic. Therefore, generalized symmetric tonic seizures with autonomic signs can be considered a clinical hallmark for diagnosis of SCN8A-related DEE and relevant for therapeutic implications."	"Structural adaption of axons during de- and remyelination in the Cuprizone mouse model. Multiple Sclerosis is an autoimmune disorder causing neurodegeneration mostly in young adults. Thereby, myelin is lost in the inflammatory lesions leaving unmyelinated axons at a high risk to degenerate. Oligodendrocyte precursor cells maintain their regenerative capacity into adulthood and are able to remyelinate axons if they are properly activated and differentiate. Neuronal activity influences the success of myelination indicating a close interplay between neurons and oligodendroglia. The myelination profile determines the distribution of voltage-gated ion channels along the axon. Here, we analyze the distribution of the sodium channel subunit Nav1.6 and the ultrastructure of axons after cuprizone-induced demyelination in transgenic mice expressing GFP in oligodendroglial cells. Using this mouse model, we found an increased number of GFP-expressing oligodendroglial cells compared to untreated mice. Analyzing the axons, we found an increase in the number of nodes of Ranvier in mice that had received cuprizone. Furthermore, we found an enhanced portion of unmyelinated axons showing vesicles in the cytoplasm. These vesicles were labeled with VGlut1, indicating that they are involved in axonal signaling. Our results highlight the flexibility of axons towards changes in the glial compartment and depict the structural changes they undergo upon myelin removal. These findings might be considered if searching for new neuroprotective therapies that aim at blocking neuronal activity in order to avoid interfering with the process of remyelination."	"A Missense Variant in SCN8A in Alpine Dachsbracke Dogs Affected by Spinocerebellar Ataxia. Spinocerebellar ataxias is an umbrella term for clinically- and neuropathologically-heterogeneous early-onset hereditary neurodegenerative diseases affecting several dog breeds. The purpose of this study is to identify the causative genetic variant associated with ataxia, tremor, and loss of balance in Alpine Dachsbracke dogs. We investigated two related litters in which four cases were reported. Neuropathology of two dogs revealed spongy degeneration associated with axonal degeneration. Combined genetic linkage and autozygosity analyses in four cases and eight related controls showed one critical disease-associated interval on chromosomes 27. Private whole-genome sequence variants of one ataxia case against 600 unrelated controls revealed one protein-changing variant within the critical interval in the SCN8A gene (c.4898G&gt;T; p.Gly1633Val). Perfect segregation with the phenotype was confirmed by genotyping &gt;200 Alpine Dachsbracke dogs. SCN8A encodes a voltage-gated sodium channel and the missense variant was predicted deleterious by three different in silico prediction tools. Pathogenic variants in SCN8A were previously reported in humans with ataxia, pancerebellar atrophy, and cognitive disability. Furthermore, cerebellar ataxia syndrome in the 'jolting' mutant mice is caused by a missense variant in Scn8a. Therefore, we considered the SCN8A:c.4898G&gt;T variant to be the most likely cause for recessively inherited spinocerebellar ataxia in Alpine Dachsbracke dogs."	"Parental mosaicism in epilepsies due to alleged de novo variants. Severe early onset epilepsies are often caused by de novo pathogenic variants. Few studies have reported the frequency of somatic mosaicism in parents of children with severe epileptic encephalopathies. Here we aim to investigate the frequency of mosaicism in the parents of children with epilepsy caused by alleged de novo variants. We tested parental genomic DNA derived from different tissues for 75 cases using targeted next-generation sequencing. Five parents (6.6%) showed mosaicism at minor allele frequencies of 0.8%-29% for the pathogenic variant detected in their offspring. Parental mosaicism was observed in the following genes: SCN1A, SCN2A, SCN8A, and STXBP1. One of the identified parents had epilepsy himself. Our results show that de novo events can occur already in parental tissue and in some cases can be detected in peripheral blood. Consequently, parents affected by low-grade mosaicism are faced with an increased recurrence risk for transmitting the pathogenic variant, compared to the overall recurrence risk for a second affected child estimated at approximately 1%. However, testing for parental somatic mosaicism will help identifying those parents who truly are at higher risk and will significantly improve genetic counseling in the respective families."	"Targeted gene sequencing in 6994 individuals with neurodevelopmental disorder with epilepsy. We aimed to gain insight into frequencies of genetic variants in genes implicated in neurodevelopmental disorder with epilepsy (NDD+E) by investigating large cohorts of patients in a diagnostic setting. We analyzed variants in NDD+E using epilepsy gene panel sequencing performed between 2013 and 2017 by two large diagnostic companies. We compared variant frequencies in 6994 panels with another 8588 recently published panels as well as exome-wide de novo variants in 1942 individuals with NDD+E and 10,937 controls. Genes with highest frequencies of ultrarare variants in NDD+E comprised SCN1A, KCNQ2, SCN2A, CDKL5, SCN8A, and STXBP1, concordant with the two other epilepsy cohorts we investigated. In only 46% of the analyzed 262 dominant and X-linked panel genes ultrarare variants in patients were reported. Among genes with contradictory evidence of association with epilepsy, CACNB4, CLCN2, EFHC1, GABRD, MAGI2, and SRPX2 showed equal frequencies in cases and controls. We show that improvement of panel design increased diagnostic yield over time, but panels still display genes with low or no diagnostic yield. With our data, we hope to improve current diagnostic NDD+E panel design and provide a resource of ultrarare variants in individuals with NDD+E to the community."	"MiR-30b-5p attenuates oxaliplatin-induced peripheral neuropathic pain through the voltage-gated sodium channel Nav1.6 in rats. Oxaliplatin is a third-generation derivative of platinum that is effective in the treatment of multiple solid tumors. However, it can cause peripheral neuropathic pain, and the molecular mechanisms of this effect remain unknown. We induced a model of peripheral neuropathic pain in rats by intraperitoneally injecting them with oxaliplatin twice a week for 4.5 weeks. We found that both the mRNA and protein expression levels of Nav1.6 (encoded by the gene Scn8a) increased while the miR-30b-5p (shorthand for miR-30b) expression decreased in the dorsal root ganglion (DRG) of treated rats. Using TargetScan and miRanda predictive software, we discovered that Scn8a was a major target of miR-30b. Moreover, we found that miR-30b negatively regulated Scn8a by binding to the Scn8a 3'UTR in PC12 cells. In addition, Nav1.6 and miR-30b were colocalized in the DRG neurons of naive rats. Overexpression of miR-30b using an miR-30b agomir attenuated neuropathic pain induced by oxaliplatin and inhibited both the mRNA and protein expression levels of Nav1.6 both in vitro and in vivo. Conversely, the inhibition of miR-30b with an miR-30b antagomir resulted in neuropathic pain and an increase in the expression of Nav1.6. More importantly, overexpression of miR-30b inhibited the proliferation of LS-174t cells (Colorectal cancer cells). These data suggest that miR-30b contributes to oxaliplatin-induced chronic neuropathic pain through Nav1.6 downregulation and could be a novel therapeutic target for the treatment of oxaliplatin-induced neuropathic pain as a side effect of chemotherapy in cancer patients."	"De novo SCN1A, SCN8A, and CLCN2 mutations in childhood absence epilepsy. This study aimed to identify monogenic mutations from Chinese patients with childhood absence epilepsy (CAE) and summarize their characteristics. A total of 100 patients with CAE were recruited in Peking University First Hospital from 2005 to 2016 and underwent telephone and outpatient follow-up review. We used targeted disease-specific gene capture sequencing (involving 300 genes) to identify pathogenic variations for these patients. We identified three de novo epilepsy-related gene mutations, including missense mutations of SCN1A (c. 5399 T &gt; A; p. Val1800Asp), SCN8A (c. 2371 G &gt; T; p. Val791Phe), and CLCN2 (c. 481 G &gt; A; p. Gly161Ser), from three patients, separately. All recruited patients presented typical CAE features and good prognosis. To date, CAE has been considered a complex disease caused by multiple susceptibility genes. In this study, we observed that 3% of typical CAE patients had a de novo mutation of a known monogenic epilepsy-related gene. Our study suggests that a significant proportion of typical CAE cases may be monogenic forms of epilepsy. For genetic generalized epilepsies, such as CAE, further studies are needed to clarify the contributions of de novo or inherited rare monogenic coding, noncoding and copy number variants."	"Clinical study of 19 patients with SCN8A-related epilepsy: Two modes of onset regarding EEG and seizures. To describe the mode of onset of SCN8A-related severe epilepsy in order to facilitate early recognition, and eventually early treatment with sodium channel blockers. We reviewed the phenotype of patients carrying a mutation in the SCN8A gene, among a multicentric cohort of 638 patients prospectively followed by several pediatric neurologists. We focused on the way clinicians made the diagnosis of epileptic encephalopathy, the very first symptoms, electroencephalography (EEG) findings, and seizure types. We made genotypic/phenotypic correlation based on epilepsy-associated missense variant localization over the protein. We found 19 patients carrying a de novo mutation of SCN8A, representing 3% of our cohort, with 9 mutations being novel. Age at onset of epilepsy was 1 day to 16 months. We found two modes of onset: 12 patients had slowly emerging onset with rare and/or subtle seizures and normal interictal EEG (group 1). The first event was either acute generalized tonic-clonic seizure (GTCS; Group 1a, n = 6) or episodes of myoclonic jerks that were often mistaken for sleep-related movements or other movement disorders (Group 1b, n = 6). Seven patients had a sudden onset of frequent tonic seizures or epileptic spasms with abnormal interictal EEG leading to rapid diagnosis of epileptic encephalopathy. Sodium channel blockers were effective or nonaggravating in most cases. SCN8A is the third most prevalent early onset epileptic encephalopathy gene and is associated with two modes of onset of epilepsy."	"Pharmacotherapy and electroencephalographic evolution in SCN8A encephalopathy: A case report. NA"	"Use of a Dynamic Genetic Testing Approach for Childhood-Onset Epilepsy. Although genetic testing is important for bringing precision medicine to children with epilepsy, it is unclear what genetic testing strategy is best in maximizing diagnostic yield. To evaluate the diagnostic yield of an exome-based gene panel for childhood epilepsy and discuss the value of follow-up testing. A case series study was conducted on data from clinical genetic testing at Children's Hospital of Philadelphia was conducted from September 26, 2016, to January 8, 2018. Initial testing targeted 100 curated epilepsy genes for sequence and copy number analysis in 151 children with idiopathic epilepsy referred consecutively by neurologists. Additional genetic testing options were offered afterward. Clinical genetic testing. Molecular diagnostic findings. Of 151 patients (84 boys [55.6%]; median age, 4.2 years [interquartile range, 1.4-8.7 years]), 16 children (10.6%; 95% CI, 6%-16%) received a diagnosis after initial panel analysis. Parental testing for 15 probands with inconclusive results revealed de novo variants in 7 individuals (46.7%), resulting in an overall diagnostic yield of 15.3% (23 of 151; 95% CI, 9%-21%). Twelve probands with nondiagnostic panel findings were reflexed to exome sequencing, and 4 were diagnostic (33.3%; 95% CI, 6%-61%), raising the overall diagnostic yield to 17.9% (27 of 151; 95% CI, 12%-24%). The yield was highest (17 of 44 [38.6%; 95% CI, 24%-53%]) among probands with epilepsy onset in infancy (age, 1-12 months). Panel diagnostic findings involved 16 genes: SCN1A (n = 4), PRRT2 (n = 3), STXBP1 (n = 2), IQSEC2 (n = 2), ATP1A2, ATP1A3, CACNA1A, GABRA1, KCNQ2, KCNT1, SCN2A, SCN8A, DEPDC5, TPP1, PCDH19, and UBE3A (all n = 1). Exome sequencing analysis identified 4 genes: SMC1A, SETBP1, NR2F1, and TRIT1. For the remaining 124 patients, analysis of 13 additional genes implicated in epilepsy since the panel was launched in 2016 revealed promising findings in 6 patients. Exome-based targeted panels appear to enable rapid analysis of a preselected set of genes while retaining flexibility in gene content. Successive genetic workup should include parental testing of select probands with inconclusive results and reflex to whole-exome trio analysis for the remaining nondiagnostic cases. Periodic reanalysis is needed to capture information in newly identified disease genes."	"The spectrum of intermediate SCN8A-related epilepsy. Pathogenic variants in SCN8A have been associated with a wide spectrum of epilepsy phenotypes, ranging from benign familial infantile seizures (BFIS) to epileptic encephalopathies with variable severity. Furthermore, a few patients with intellectual disability (ID) or movement disorders without epilepsy have been reported. The vast majority of the published SCN8A patients suffer from severe developmental and epileptic encephalopathy (DEE). In this study, we aimed to provide further insight on the spectrum of milder SCN8A-related epilepsies. A cohort of 1095 patients were screened using a next generation sequencing panel. Further patients were ascertained from a network of epilepsy genetics clinics. Patients with severe DEE and BFIS were excluded from the study. We found 36 probands who presented with an SCN8A-related epilepsy and normal intellect (33%) or mild (61%) to moderate ID (6%). All patients presented with epilepsy between age 1.5 months and 7 years (mean = 13.6 months), and 58% of these became seizure-free, two-thirds on monotherapy. Neurological disturbances included ataxia (28%) and hypotonia (19%) as the most prominent features. Interictal electroencephalogram was normal in 41%. Several recurrent variants were observed, including Ile763Val, Val891Met, Gly1475Arg, Gly1483Lys, Phe1588Leu, Arg1617Gln, Ala1650Val/Thr, Arg1872Gln, and Asn1877Ser. With this study, we explore the electroclinical features of an intermediate SCN8A-related epilepsy with mild cognitive impairment, which is for the majority a treatable epilepsy."	"The MAP1B Binding Domain of Nav1.6 Is Required for Stable Expression at the Axon Initial Segment. Nav1.6 (SCN8A) is a major voltage-gated sodium channel in the mammalian CNS, and is highly concentrated at the axon initial segment (AIS). As previously demonstrated, the microtubule associated protein MAP1B binds the cytoplasmic N terminus of Nav1.6, and this interaction is disrupted by the mutation p.VAVP(77-80)AAAA. We now demonstrate that this mutation results in WT expression levels on the somatic surface but reduced surface expression at the AIS of cultured rat embryonic hippocampal neurons from both sexes. The mutation of the MAP1B binding domain did not impair vesicular trafficking and preferential delivery of Nav1.6 to the AIS; nor was the diffusion of AIS inserted channels altered relative to WT. However, the reduced AIS surface expression of the MAP1B mutant was restored to WT levels by inhibiting endocytosis with Dynasore, indicating that compartment-specific endocytosis was responsible for the lack of AIS accumulation. Interestingly, the lack of AIS targeting resulted in an elevated percentage of persistent current, suggesting that this late current originates predominantly in the soma. No differences in the voltage dependence of activation or inactivation were detected in the MAP1B binding mutant relative to WT channel. We hypothesize that MAP1B binding to the WT Nav1.6 masks an endocytic motif, thus allowing long-term stability on the AIS surface. This work identifies a critical and important new role for MAP1B in the regulation of neuronal excitability and adds to our understanding of AIS maintenance and plasticity, in addition to identifying new target residues for pathogenic mutations of SCN8ASIGNIFICANCE STATEMENT Nav1.6 is a major voltage-gated sodium channel in human brain, where it regulates neuronal activity due to its localization at the axon initial segment (AIS). Nav1.6 mutations cause epilepsy, intellectual disability, and movement disorders. In the present work, we show that loss of interaction with MAP1B within the Nav1.6 N terminus reduces the steady-state abundance of Nav1.6 at the AIS. The effect is due to increased Nav1.6 endocytosis at this neuronal compartment rather than a failure of forward trafficking to the AIS. This work confirms a new biological role of MAP1B in the regulation of sodium channel localization and will contribute to future analysis of patient mutations in the cytoplasmic N terminus of Nav1.6."	"Identifying mutations in epilepsy genes: Impact on treatment selection. The last decade saw impressive advances not only in the discovery of gene mutations causing epilepsy, but also in unraveling the molecular mechanisms underlying the clinical manifestations of the disease. Increasing evidence is emerging that understanding these mechanisms is relevant for selection of the most appropriate treatment in the affected individual(s). The present article discusses the therapeutic implications of epilepsy-causing variants affecting a broad range of targets, from ion channels to genes controlling cellular metabolism and cell signaling pathways. Identification of a precise genetic etiology can direct physicians to (i) prescribe treatments that correct specific metabolic defects (e.g., the ketogenic diet for GLUT1 deficiency, or pyridoxine for pyridoxine-dependent epilepsies); (ii) avoid antiepileptic drugs (AEDs) that can aggravate the pathogenic defect (e.g., sodium channel blocking drugs in SCN1A-related Dravet syndrome), or (iii) select AEDs that counteract the functional disturbance caused by the gene mutation (e.g., sodium channel blockers for epilepsies due to gain-of-function SCN8A mutations). In some instances, different pathogenic variants of the same gene can have opposite functional effects, which determines whether certain treatments can be beneficial or deleterious (e.g., gain-of-function versus loss-of-function variants in SCN2A determine whether sodium channel blockers improve or worsen seizure control). There are also cases where functional disturbances caused by the gene defect may not be corrected by existing AEDs, but can be countered by medications already available in the market for other indications (e.g., memantine has been used to treat the epileptic encephalopathy caused by a specific gain-of-function GRIN2A mutation), thus making 'drug repurposing' a valuable tool for personalized epilepsy therapies. As our understanding of pathogenic mechanisms improve, opportunities arise for development of treatments targeting the specific gene defect or its consequences. Everolimus, an mTOR inhibitor approved for the treatment of focal seizures associated with tuberous sclerosis complex, is an example of a medication targeting the etiological mechanisms of the disease. Several treatments aimed at correcting specific pathogenic defects responsible for rare genetic epilepsies are currently in development, and range from traditional small molecules to novel approaches involving peptides, antisense oligonucleotides, and gene therapy."	"Exome sequencing identifies molecular diagnosis in children with drug-resistant epilepsy. Early onset drug-resistant epilepsy is a neurologic disorder in which 2 antiepileptic drugs fail to maintain the seizure-free status of the patient. Heterogeneous clinical presentations make the diagnosis challenging. We aim to identify the underlying genetic causes of a pediatric cohort with drug-resistant epilepsy and evaluate whether the findings can provide information on patient management. We include patients with drug-resistant epilepsy onset before 18 years of age. Singleton clinical chromosomal microarray (CMA) followed by whole exome sequencing (WES) was performed using genomic DNA. In the first-tier analysis of the exome data, we aimed to identify disease-causing mutations in 546 genes known to cause, or to be associated with, epilepsy. For negative cases, we proceeded to exome-wide analysis. Rare coding variants were interrogated for pathogenicity based on the American College of Medical Genetics and Genomics (ACMG) guidelines. We recruited 50 patients. We identified 6 pathogenic or likely pathogenic mutations, giving a diagnostic yield of 12%. Mutations were found in 6 different genes: SCN8A, SCN1A, MECP2, CDKL5, DEPDC5, and CHD2. The CDKL5 variant was found to be mosaic. One variant of unknown significance (VUS) in KCNT1 was found in a patient with compatible clinical features. Of note, a reported pathogenic SCN5A mutation known to contribute to Brugada syndrome, was also found in the patient with an SCN1A mutation. Our study suggests that singleton WES is an effective diagnostic tool for drug-resistant epilepsy. Genetic diagnosis can help to consolidate the clinical diagnosis, to facilitate phenotypic expansion, and to influence treatment and management options for seizure control in our patients. In our study, a significant portion of the genetic findings are known to be associated with an increased risk of sudden unexpected death in epilepsy (SUDEP). These findings could assist with more appropriate management in patients with epilepsy."	"Novel epilepsy phenotype associated to a known SCN8A mutation. NA"	"TNF-α/STAT3 pathway epigenetically upregulates Nav1.6 expression in DRG and contributes to neuropathic pain induced by L5-VRT. Studies showed that upregulation of Nav1.6 increased the neuronal excitability and participated in neuropathic pain in the dorsal root ganglion (DRG). However, the molecular mechanisms underlying Nav1.6 upregulation were not reported yet. The paw withdrawal threshold was measured in the rodents following lumbar 5 ventral root transection (L5-VRT). Then qPCR, western blotting, immunoprecipitation, immunohistochemistry, and chromatin immunoprecipitation assays were performed to explore the molecular mechanisms in vivo and in vitro. We found that the levels of Nav1.6 and phosphorylated STAT3 were significantly increased in DRG neurons following L5-VRT, and TNF-α incubation also upregulated the Nav1.6 expression in cultured DRG neurons. Furthermore, immunoprecipitation and chromatin immunoprecipitation assays demonstrated that L5-VRT increased the binding of STAT3 to the Scn8a (encoding Nav1.6) promoter and the interaction between STAT3 and p300, which contributed to the enhanced transcription of Scn8a by increasing histone H4 acetylation in Scn8a promoter in DRG. Importantly, intraperitoneal injection of the TNF-α inhibitor thalidomide reduced the phosphorylation of STAT3 and decreased the recruitment of STAT3 and histone H4 hyperacetylation in the Scn8a promoter, thus subsequently attenuating Nav1.6 upregulation in DRG neurons and mechanical allodynia induced by L5-VRT. These results suggested a new mechanism for Nav1.6 upregulation involving TNF-α/STAT3 pathway activation and subsequent STAT3-mediated histone H4 hyperacetylation in the Scn8a promoter region in DRG, which contributed to L5-VRT-induced neuropathic pain."	"On the feasibility of quantifying sodium channel Nav 1.6 protein in mouse brain using targeted ultra-high-performance/electrospray ionization multiple reaction monitoring mass spectrometry. Nav 1.6 is a transmembrane voltage gated sodium channel implicated in various forms of epilepsy. Modulation of its activity in epilepsy animal models can be accomplished using inhibitors which may result in changes in its expression. There is a need to generate reliable quantitative measurements of Nav 1.6 expression in animal models. This research explores the feasibility of quantifying Nav 1.6 expression in mouse brains using targeted multiple reaction monitoring (MRM) mass spectrometry. A combination of in silico tryptic Nav 1.6 peptides and MRM transitions were used to select target peptides. This was followed by a simple proteomic work-up including plasma membrane isolation, trypsin-based proteolysis and ultra-high-performance/electrospray ionization tandem mass spectrometry (UHPLC/ESI-MS/MS) to detect the presence of Nav 1.6 in induced HEK293 cells. The unique Nav 1.6 peptide, DSLFIPR, was selected as probe for quantifying Nav 1.6 levels in brains from C57BL/6J wild-type mice as well as two kinds of mutants including Scn8a<sup>N1768D/+</sup> and heterozygous null Scn8a<sup>+/-</sup> mice using isotope dilution targeted mass spectrometry. The feasibility of using targeted MRM for quantifying Nav 1.6 expression in mice brains was demonstrated. Expression of Nav 1.6 in brains (hippocampi) from wild-type and mutant Scn8a<sup>N1768D/+</sup> mice were found to be around 0.40 fmol/μg. Mutant null Scn8a<sup>+/-</sup> heterozygous mice, on the other hand, showed levels of 0.22 fmol/μg as expected based on this particular mutation which only generates 50% of the expression in wild-type mice. Nav 1.6-overexpressed HEK293 cells showed 3.7 fmol/μg of Nav 1.6 expression, suitable for screening new compounds for Nav 1.6 blocking activity. The results of the present feasibility study support the use of DSLFIPIR for quantification of Nav1.6 in brain tissues using UHPL/ESI-MS/MS."	"Role of NaV1.6 and NaVβ4 Sodium Channel Subunits in a Rat Model of Low Back Pain Induced by Compression of the Dorsal Root Ganglia. Low back pain is a common cause of chronic pain and disability. It is modeled in rodents by chronically compressing the lumbar dorsal root ganglia (DRG) with small metal rods, resulting in ipsilateral mechanical and cold hypersensitivity, and hyperexcitability of sensory neurons. Sodium channels are implicated in this hyperexcitability, but the responsible isoforms are unknown. In this study, we used siRNA-mediated knockdown of the pore-forming NaV1.6 and regulatory NaVβ4 sodium channel isoforms that have been previously implicated in a different model of low back pain caused by locally inflaming the L5 DRG. Knockdown of either subunit markedly reduced spontaneous pain and mechanical and cold hypersensitivity induced by DRG compression, and reduced spontaneous activity and hyperexcitability of sensory neurons with action potentials &lt;1.5 msec (predominately cells with myelinated axons, based on conduction velocities measured in a subset of cells) 4 days after DRG compression. These results were similar to those previously obtained in the DRG inflammation model and some neuropathic pain models, in which sensory neurons other than nociceptors seem to play key roles. The cytokine profiles induced by DRG compression and DRG inflammation were also very similar, with upregulation of several type 1 pro-inflammatory cytokines and downregulation of type 2 anti-inflammatory cytokines. Surprisingly, the cytokine profile was largely unaffected by NaVβ4 knockdown in either model. The NaV1.6 channel, and the NaVβ4 subunit that can regulate NaV1.6 to enhance repetitive firing, play key roles in both models of low back pain; targeting the abnormal spontaneous activity they generate may have therapeutic value."	"&quot;Breath holding spells&quot; in a child with SCN8A-related epilepsy: Expanding the clinical spectrum. NA"	"Normal audiogram but poor sensitivity to brief sounds in mice with compromised voltage-gated sodium channels (Scn8a<sup>medJ</sup>). The Scn8a<sup>medJ</sup> mutation of the gene for sodium channels at the nodes of Ranvier slows nerve conduction, resulting in motor abnormalities. This mutation is also associated with loss of spontaneous bursting activity in the dorsal cochlear nucleus. However initial tests of auditory sensitivity in mice homozygous for this mutation, using standard 400-ms tones, demonstrated normal hearing sensitivity. Further testing, reported here, revealed a severely compromised sensitivity to short-duration tones of 10 and 2 ms durations. Such a deficit might be expected to interfere with auditory functions that depend on rapid processing of auditory signals."	"Neuronal mechanisms of mutations in SCN8A causing epilepsy or intellectual disability. Ion channel mutations can cause distinct neuropsychiatric diseases. We first studied the biophysical and neurophysiological consequences of four mutations in the human Na+ channel gene SCN8A causing either mild (E1483K) or severe epilepsy (R1872W), or intellectual disability and autism without epilepsy (R1620L, A1622D). Only combined electrophysiological recordings of transfected wild-type or mutant channels in both neuroblastoma cells and primary cultured neurons revealed clear genotype-phenotype correlations. The E1483K mutation causing mild epilepsy showed no significant biophysical changes, whereas the R1872W mutation causing severe epilepsy induced clear gain-of-function biophysical changes in neuroblastoma cells. However, both mutations increased neuronal firing in primary neuronal cultures. In contrast, the R1620L mutation associated with intellectual disability and autism-but not epilepsy-reduced Na+ current density in neuroblastoma cells and expectedly decreased neuronal firing. Interestingly, for the fourth mutation, A1622D, causing severe intellectual disability and autism without epilepsy, we observed a dramatic slowing of fast inactivation in neuroblastoma cells, which induced a depolarization block in neurons with a reduction of neuronal firing. This latter finding was corroborated by computational modelling. In a second series of experiments, we recorded three more mutations (G1475R, M1760I, G964R, causing intermediate or severe epilepsy, or intellectual disability without epilepsy, respectively) that revealed similar results confirming clear genotype-phenotype relationships. We found intermediate or severe gain-of-function biophysical changes and increases in neuronal firing for the two epilepsy-causing mutations and decreased firing for the loss-of-function mutation causing intellectual disability. We conclude that studies in neurons are crucial to understand disease mechanisms, which here indicate that increased or decreased neuronal firing is responsible for distinct clinical phenotypes."	"Curcumin's antiepileptic effect, and alterations in Nav1.1 and Nav1.6 expression in iron-induced epilepsy. The present study was carried out to evaluate: the antiepileptic effect of dietary curcumin, and the effect of epileptic state and curcumin on the molecular expression of voltage-activated Na<sup>+</sup> channel subtypes Nav1.1 and Nav1.6 in the iron-induced experimental epilepsy in the rat. Rats were divided into four groups; Group I (control rats), Group II (epileptic rats), Group III (curcumin-fed epileptic rats), and Group IV (curcumin-fed rats). Curcumin was fed chronically to rats approximately at the dose of 100 mg/kg body wt. The animals were made epileptic by intracortical injection of FeCl3. The mRNA and protein expressions of Nav1.1 and Nav1.6 were examined by RT-PCR analysis and immuno-histochemistry. Results showed a significant increase (upregulation) in the expression of both Nav1.1 and Nav1.6 with seizure activity in the cortex and hippocampus of epileptic rats. Epileptic rats fed with curcumin showed a marked decrease in epileptiform activity, and reduced mRNA and protein levels of Nav1.1. It appears that the antiepileptic action of curcumin may be associated with the downregulation of Nav1.1 in the cortex."	"Prominent role of forebrain excitatory neurons in SCN8A encephalopathy. De novo mutations of the sodium channel gene SCN8A result in an epileptic encephalopathy with refractory seizures, developmental delay, and elevated risk of sudden death. p.Arg1872Trp is a recurrent de novo SCN8A mutation reported in 14 unrelated individuals with epileptic encephalopathy that included seizure onset in the prenatal or infantile period and severe verbal and ambulatory comorbidities. The major biophysical effect of the mutation was previously shown to be impaired channel inactivation accompanied by increased current density. We have generated a conditional mouse mutation in which expression of this severe gain-of-function mutation is dependent upon Cre recombinase. Global activation of p.Arg1872Trp by EIIa-Cre resulted in convulsive seizures and lethality at 2 weeks of age. Neural activation of the p.Arg1872Trp mutation by Nestin-Cre also resulted in early onset seizures and death. Restriction of p.Arg1872Trp expression to excitatory neurons using Emx1-Cre recapitulated seizures and juvenile lethality between 1 and 2 months of age. In contrast, activation of p.Arg1872Trp in inhibitory neurons by Gad2-Cre or Dlx5/6-Cre did not induce seizures or overt neurological dysfunction. The sodium channel modulator GS967/Prax330 prolonged survival of mice with global expression of R1872W and also modulated the activity of the mutant channel in transfected cells. Activation of the p.Arg1872Trp mutation in adult mice was sufficient to generate seizures and death, indicating that successful therapy will require lifelong treatment. These findings provide insight into the pathogenic mechanism of this gain-of-function mutation of SCN8A and identify excitatory neurons as critical targets for therapeutic intervention."	"Identification of peptidomimetics as novel chemical probes modulating fibroblast growth factor 14 (FGF14) and voltage-gated sodium channel 1.6 (Nav1.6) protein-protein interactions. The voltage-gated sodium (Nav) channel is the molecular determinant of action potential in neurons. Protein-protein interactions (PPI) between the intracellular Nav1.6 C-tail and its regulatory protein fibroblast growth factor 14 (FGF14) provide an ideal and largely untapped opportunity for development of neurochemical probes. Based on a previously identified peptide FLPK, mapped to the FGF14:FGF14 PPI interface, we have designed and synthesized a series of peptidomimetics with the intent of increasing clogP values and improving cell permeability relative to the parental lead peptide. In-cell screening using the split-luciferase complementation (LCA) assay identified ZL0177 (13) as the most potent inhibitor of the FGF14:Nav1.6 channel complex assembly with an apparent IC50 of 11 μM. Whole-cell patch-clamp recordings demonstrated that ZL0177 significantly reduced Nav1.6-mediated transient current density and induced a depolarizing shift of the channel voltage-dependence of activation. Docking studies revealed strong interactions between ZL0177 and Nav1.6, mediated by hydrogen bonds, cation-π interactions and hydrophobic contacts. All together these results suggest that ZL0177 retains some key features of FGF14-dependent modulation of Nav1.6 currents. Overall, ZL0177 provides a chemical scaffold for developing Nav channel modulators as pharmacological probes with therapeutic potential of interest for a broad range of CNS and PNS disorders."	"Electrophysiological characterization of Tityus obscurus β toxin 1 (To1) on Na<sup>+</sup>-channel isoforms. To1, previously named Tc49b, is a peptide neurotoxin isolated from venom of the scorpion Tityus obscurus that is responsible for lethal human poisoning cases in the Brazilian Amazonian region. Previously, To1 was shown to be lethal to mice and to change Na<sup>+</sup> permeation in cerebellum granular neurons from rat brain. In addition, To1 did not affect Shaker B K<sup>+</sup> channels. Based on sequence similarities, To1 was described as a β-toxin. In the present work, To1 was purified from T. obscurus venom and submitted to an electrophysiological characterization in human and invertebrate NaV channels. The analysis of the electrophysiological experiments reveal that To1 enhances the open probability at more negative potentials of human NaV 1.3 and 1.6, of the insect channel BgNaV1 and of arachnid VdNaV1 channel. In addition, To1 reduces the peak of Na<sup>+</sup> currents in some of the NaVs tested. These results support the classification of the To1 as a β-toxin. A structure and functional comparison to other β-toxins that share sequence similarity to To1 is also presented."	"12q13.12q13.13 microdeletion encompassing ACVRL1 and SCN8A genes: Clinical report of a new contiguous gene syndrome. Hereditary hemorrhagic telangiectasia is usually linked to the presence of a pathogenic mutation ACVRL1 or ENG. Thus, apparently there is no benefit to perform an array CGH in case of HHT. However, ENG has been involved in a contiguous gene syndrome due to a de novo 9q33.3q34.11 microdeletion. We describe here a new contiguous gene syndrome involving ACVRL1 gene. A 50-year-old female patient had a typical clinical presentation of hereditary hemorrhagic telangiectasia (HHT) with epistaxis, cutaneous-mucous telangiectases, arteriovenous malformation. She also presented a cognitive disability. Cognitive assessment showed a heterogeneous cognitive disorder predominating in the executive sphere without intellectual deficiency. She had no peculiar morphological feature. Neurological examination disclosed the presence of contralateral mirror movements during voluntary movement of each hand. A heterozygous deletion of the whole ACVRL1 gene (exons 1 to 10) was found to be responsible for the HHT features. To investigate further the dysexecutive syndrome and the mirror movements, we performed oligonucleotide array comparative genomic hybridization (array CGH) study (180K, Agilent, Santa-Clara, CA, USA). This study revealed a de novo 1.58 Mb deletion on chromosome 12q13.12q13.13 encompassing the ACVRL1 and SCN8A genes. To our knowledge, this deletion has not been previously reported and defines a new contiguous gene syndrome. The loss of one ACVRL1 allele is likely to be responsible for the HHT phenotype, while the deletion of the SCN8A gene is likely to be the cause of the mild cognitive disorder. SCN8A haploinsufficiency might also be involved in the occurrence of mirror movements. This report highlights the benefit of searching for large rearrangements in cases including unusual symptoms in association with HHT. On the other hand, an early diagnosis of 12q13.12q13.13 microdeletion based on the presence of a dysexecutive syndrome and/or mirror movement may allow to prevent HHT complications."	"Axon initial segment plasticity accompanies enhanced excitation of visual cortical neurons in aged rats. Recent studies have indicated that the structure of the axon initial segment (AIS) of neurons is highly plastic in response to changes in neuronal activity. Whether an age-related enhancement of neuronal responses in the visual cortex is coupled with plasticity of AISs is unknown. Here, we compare the AIS length and the distribution of Nav1.6, a key Na ion channel in action potential (AP) initiation, along the AIS of layer II/III neurons in the primary visual cortex (V1) of young adult and aged rats, which were examined previously in a single-unit recording study. In that study, we found that V1 neurons in aged rats showed a significantly higher spontaneous activity and stronger visually evoked responses than did neurons in young rats. Our present study shows that the mean AIS length of layer II/III neurons in the V1 area of aged rats was significantly shorter than that of young adult rats. Further, the proportion of AIS with the Nav1.6 distribution was also reduced significantly in aged rats relative to young rats, as indicated by a decrease in the mean Nav1.6 immunofluorescence optical density within AISs and a specific decrease in Nav1.6 immunofluorescence optical density near the proximal region of the AIS. Our results indicate that aging results in both shortening of AISs and reduction of Nav1.6 Na ion channel distribution along AISs, which accompanies enhanced neuronal activity. This age-related morphological plasticity may lower the AP amplitude by reducing Na ion entry during AP initiation, spare ATPs consumed by Na ion pumps during membrane potential restoration, and thus balance the energy expenditure caused by an increased firing rate of cortical neurons during the aging process."	"Whole-Exome Sequencing Implicates SCN2A in Episodic Ataxia, but Multiple Ion Channel Variants May Contribute to Phenotypic Complexity. Although the clinical use of targeted gene sequencing-based diagnostics is valuable, whole-exome sequencing has also emerged as a successful diagnostic tool in molecular genetics laboratories worldwide. Molecular genetic tests for episodic ataxia type 2 (EA2) usually target only the specific calcium channel gene (CACNA1A) that is known to cause EA2. In cases where no mutations are identified in the CACNA1A gene, it is important to identify the causal gene so that more effective treatment can be prioritized for patients. Here we present a case of a proband with a complex episodic ataxias (EA)/seizure phenotype with an EA-affected father; and an unaffected mother, all negative for CACNA1A gene mutations. The trio was studied by whole-exome sequencing to identify candidate genes responsible for causing the complex EA/seizure phenotype. Three rare or novel variants in Sodium channel α2-subunit; SCN2A (c.3973G&gt;T: p.Val1325Phe), Potassium channel, Kv3.2; KCNC2 (c.1006T&gt;C: p.Ser336Pro) and Sodium channel Nav1.6; SCN8A (c.3421C&gt;A: p.Pro1141Thr) genes were found in the proband. While the SCN2A variant is likely to be causal for episodic ataxia, each variant may potentially contribute to the phenotypes observed in this family. This study highlights that a major challenge of using whole-exome/genome sequencing is the identification of the unique causative mutation that is associated with complex disease."	"Upregulation of Nav1.6 expression in the rostral ventrolateral medulla of stress-induced hypertensive rats. The rostral ventrolateral medulla (RVLM) plays a key role in mediating the development of stress-induced hypertension (SIH) by excitation and/or inhibition of sympathetic preganglionic neurons. The voltage-gated sodium channel Nav1.6 has been found to contribute to neuronal hyperexcitability. To examine the expression of Nav1.6 in the RVLM during SIH, a rat model was established by administering electric foot-shocks and noises. We found that Nav1.6 protein expression in the RVLM of SIH rats was higher than that of control rats, peaking at the tenth day of stress. Furthermore, we observed changes in blood pressure correlating with days of stress, with systolic blood pressure (SBP) found to reach a similarly timed peak at the tenth day of stress. Percentages of cells exhibiting colocalization of Nav1.6 with NeuN, a molecular marker of neurons, indicated a strong correlation between upregulation of Nav1.6 expression in NeuN-positive cells and SBP. The level of RSNA was significantly increased after 10 days of stress induction than control group. Compared with the SIHR, knockdown of Nav1.6 in RVLM of the SIHR decreased the level of SBP, heart rate (HR) and renal sympathetic nerve activity (RSNA). These results suggest that upregulated Nav1.6 expression within neurons in the RVLM of SIH rats may contribute to overactivation of the sympathetic system in response to SIH development."	"Molecular basis of trigeminal nerve disorders and healing. This review aims to describe trigeminal neuralgia and the molecular basis contributing to the pathophysiology of this condition by focusing on the state of the art. An electronic search of PubMed was performed using the following keywords: &quot;trigeminal neuralgia&quot; AND &quot;classification&quot;, &quot;pathophysiology,&quot; &quot;molecular basis&quot; and &quot;mitochondrial role.&quot; Mitochondrial abnormality, whether functional or morphological, can contribute to neurological disorders. Additionally, one recent finding showed that gain-of-function mutation in the voltage-gated sodium channel NaV1.6 contributes to the pathophysiology of trigeminal neuralgia by increasing the excitability of trigeminal nerve ganglion neurons. It also exacerbates the pathophysiology of vascular compression. Healing of the trigeminal nerve is controlled by many molecular signaling pathways, including extracellular-signal-regulated kinase, c-Jun, p38, Notch, and mitogen-activated protein kinases. More investigations regarding the gain-of-function mutation of NaV1.6 sodium channels are essential for the diagnosis and treatment of trigeminal nerve disorders, regardless of whether these are associated with vascular compression or not."	"Inhibitory effects of cannabidiol on voltage-dependent sodium currents. Cannabis sativa contains many related compounds known as phytocannabinoids. The main psychoactive and nonpsychoactive compounds are Δ9-tetrahydrocannabinol (THC) and cannabidiol (CBD), respectively. Much of the evidence for clinical efficacy of CBD-mediated antiepileptic effects has been from case reports or smaller surveys. The mechanisms for CBD's anticonvulsant effects are unclear and likely involve noncannabinoid receptor pathways. CBD is reported to modulate several ion channels, including sodium channels (Nav). Evaluating the therapeutic mechanisms and safety of CBD demands a richer understanding of its interactions with central nervous system targets. Here, we used voltage-clamp electrophysiology of HEK-293 cells and iPSC neurons to characterize the effects of CBD on Nav channels. Our results show that CBD inhibits hNav1.1-1.7 currents, with an IC50 of 1.9-3.8 μm, suggesting that this inhibition could occur at therapeutically relevant concentrations. A steep Hill slope of ∼3 suggested multiple interactions of CBD with Nav channels. CBD exhibited resting-state blockade, became more potent at depolarized potentials, and also slowed recovery from inactivation, supporting the idea that CBD binding preferentially stabilizes inactivated Nav channel states. We also found that CBD inhibits other voltage-dependent currents from diverse channels, including bacterial homomeric Nav channel (NaChBac) and voltage-gated potassium channel subunit Kv2.1. Lastly, the CBD block of Nav was temperature-dependent, with potency increasing at lower temperatures. We conclude that CBD's mode of action likely involves 1) compound partitioning in lipid membranes, which alters membrane fluidity affecting gating, and 2) undetermined direct interactions with sodium and potassium channels, whose combined effects are loss of channel excitability."	"Novel and de novo mutations in pediatric refractory epilepsy. Pediatric refractory epilepsy is a broad phenotypic spectrum with great genetic heterogeneity. Next-generation sequencing (NGS) combined with Sanger sequencing could help to understand the genetic diversity and underlying disease mechanisms in pediatric epilepsy. Here, we report sequencing results from a cohort of 172 refractory epilepsy patients aged 0-14 years. The pathogenicity of identified variants was evaluated in accordance with the American College of Medical Genetics and Genomics (ACMG) criteria. We identified 43 pathogenic or likely pathogenic variants in 40 patients (23.3%). Among these variants, 74.4% mutations (32/43) were de novo and 60.5% mutations (26/43) were novel. Patients with onset age of seizures ≤12 months had higher yields of deleterious variants compared to those with onset age of seizures &gt; 12 months (P = 0.006). Variants in ion channel genes accounted for the greatest functional gene category (55.8%), with SCN1A coming first (16/43). 81.25% (13/16) of SCN1A mutations were de novo and 68.8% (11/16) were novel in Dravet syndrome. Pathogenic or likely pathogenic variants were found in the KCNQ2, STXBP1, SCN2A genes in Ohtahara syndrome. Novel deleterious variants were also found in West syndrome, Doose syndrome and glucose transporter type 1 deficiency syndrome patients. One de novo MECP2 mutation were found in a Rett syndrome patient. TSC1/TSC2 variants were found in 60% patients with tuberous sclerosis complex patients. Other novel mutations detected in unclassified epilepsy patients involve the SCN8A, CACNA1A, GABRB3, GABRA1, IQSEC2, TSC1, VRK2, ATP1A2, PCDH19, SLC9A6 and CHD2 genes. Our study provides novel insights into the genetic origins of pediatric epilepsy and represents a starting-point for further investigations into the molecular pathophysiology of pediatric epilepsy that could eventually lead to better treatments."	"The phenotype of SCN8A developmental and epileptic encephalopathy. To delineate the electroclinical features of SCN8A infantile developmental and epileptic encephalopathy (EIEE13, OMIM #614558). Twenty-two patients, aged 19 months to 22 years, underwent electroclinical assessment. Sixteen of 22 patients had mildly delayed development since birth. Drug-resistant epilepsy started at a median age of 4 months, followed by developmental slowing, pyramidal/extrapyramidal signs (22/22), movement disorders (12/22), cortical blindness (17/22), sialorrhea, and severe gastrointestinal symptoms (15/22), worsening during early childhood and plateauing at age 5 to 9 years. Death occurred in 4 children, following extreme neurologic deterioration, at 22 months to 5.5 years. Nonconvulsive status epilepticus recurred in 14 of 22 patients. The most effective antiepileptic drugs were oxcarbazepine, carbamazepine, phenytoin, and benzodiazepines. EEG showed background deterioration, epileptiform abnormalities with a temporo-occipital predominance, and posterior delta/beta activity correlating with visual impairment. Video-EEG documented focal seizures (FS) (22/22), spasm-like episodes (8/22), cortical myoclonus (8/22), and myoclonic absences (1/22). FS typically clustered and were prolonged (&lt;20 minutes) with (1) cyanosis, hypomotor, and vegetative semiology, sometimes unnoticed, followed by (2) tonic-vibratory and (3) (hemi)-clonic manifestations ± evolution to a bilateral tonic-clonic seizure. FS had posterior-temporal/occipital onset, slowly spreading and sometimes migrating between hemispheres. Brain MRI showed progressive parenchymal atrophy and restriction of the optic radiations. SCN8A developmental and epileptic encephalopathy has strikingly consistent electroclinical features, suggesting a global progressive brain dysfunction primarily affecting the temporo-occipital regions. Both uncontrolled epilepsy and developmental compromise contribute to the profound impairment (increasing risk of death) during early childhood, but stabilization occurs in late childhood."	"The invasiveness of human cervical cancer associated to the function of NaV1.6 channels is mediated by MMP-2 activity. Voltage-gated sodium (NaV) channels have been related with cell migration and invasiveness in human cancers. We previously reported the contribution of NaV1.6 channels activity with the invasion capacity of cervical cancer (CeCa) positive to Human Papilloma Virus type 16 (HPV16), which accounts for 50% of all CeCa cases. Here, we show that NaV1.6 gene (SCN8A) overexpression is a general characteristic of CeCa, regardless of the HPV type. In contrast, no differences were observed in NaV1.6 channel expression between samples of non-cancerous and cervical intraepithelial neoplasia. Additionally, we found that CeCa cell lines, C33A, SiHa, CaSki and HeLa, express mainly the splice variant of SCN8A that lacks exon 18, shown to encode for an intracellularly localized NaV1.6 channel, whereas the full-length adult form was present in CeCa biopsies. Correlatively, patch-clamp experiments showed no evidence of whole-cell sodium currents (INa) in CeCa cell lines. Heterologous expression of full-length NaV1.6 isoform in C33A cells produced INa, which were sufficient to significantly increase invasion capacity and matrix metalloproteinase type 2 (MMP-2) activity. These data suggest that upregulation of NaV1.6 channel expression occurs when cervical epithelium have been transformed into cancer cells, and that NaV1.6-mediated invasiveness of CeCa cells involves MMP-2 activity. Thus, our findings support the notion about using NaV channels as therapeutic targets against cancer metastasis."	"Mapt deletion fails to rescue premature lethality in two models of sodium channel epilepsy. Deletion of Mapt, encoding the microtubule-binding protein Tau, prevents disease in multiple genetic models of hyperexcitability. To investigate whether the effect of Tau depletion is generalizable across multiple sodium channel gene-linked models of epilepsy, we examined the Scn1b<sup> -/- </sup> mouse model of Dravet syndrome, and the Scn8a<sup> N1768D/+ </sup> model of Early Infantile Epileptic Encephalopathy. Both models display severe seizures and early mortality. We found no prolongation of survival between Scn1b<sup> -/- </sup>,Mapt<sup> +/+ </sup> , Scn1b<sup> -/- </sup>,Mapt<sup> +/-, </sup> or Scn1b<sup> -/- </sup>,Mapt<sup> -/- </sup> mice or between Scn8a<sup> N1768D/+ </sup>,Mapt<sup> +/+ </sup> , Scn8a<sup> N1768D/+ </sup>,Mapt<sup> +/- </sup> , or Scn8a<sup> N1768D/+ </sup>,Mapt<sup> -/- </sup> mice. Thus, the effect of Mapt deletion on mortality in epileptic encephalopathy models is gene specific and provides further mechanistic insight."	"Time-shifted co-administration of sub-analgesic doses of ambroxol and pregabalin attenuates oxaliplatin-induced cold allodynia in mice. Oxaliplatin-induced cold allodynia is a frequent complication appearing in patients treated with this anti-tumor drug. Since, there are no clear algorithms to overcome this painful condition effectively, it is important to establish novel strategies for its treatment. In this study, the ability of pregabalin and ambroxol, used as single drugs or in combinations administered in a time-shifted manner to attenuate cold allodynia was assessed in the mouse cold plate test. The hot plate test was additionally used to assess antinociceptive properties of ambroxol in the acute, thermally-induced pain model. Locomotor activity and motor coordination of mice were also evaluated. In silico studies were undertaken to predict potential binding of ambroxol to sodium channel (Nav) subtypes whose overexpression is implicated in the development of oxaliplatin-induced neuropathic pain. A hyperadditive antiallodynic effect of combined sub-analgesic ambroxol and pregabalin was demonstrated in oxaliplatin-treated mice. This effect was particularly strong when these drugs were given 4 h apart. Both drugs used in combination reduced animals' locomotor activity, but they did not impair motor coordination in the rotarod test. Ambroxol did not show antinociceptive properties in the hot plate test. The molecular docking studies predicted that in mice ambroxol might bind to Nav1.6 and Nav1.9 rather than Nav1.7 and Nav1.8. Time-shifted co-administration of sub-analgesic doses of ambroxol and pregabalin effectively attenuates oxaliplatin-induced cold allodynia. Molecular docking model predicts preferential binding of ambroxol to mouse Nav1.6, Nav1.9 channels. This mechanism, if confirmed in vitro, might explain pharmacological activities observed in vivo."	"Weighted single-step GWAS and gene network analysis reveal new candidate genes for semen traits in pigs. In recent years, there has been increased interest in the study of the molecular processes that affect semen traits. In this study, our aim was to identify quantitative trait loci (QTL) regions associated with four semen traits (motility, progressive motility, number of sperm cells per ejaculate and total morphological defects) in two commercial pig lines (L1: Large White type and L2: Landrace type). Since the number of animals with both phenotypes and genotypes was relatively small in our dataset, we conducted a weighted single-step genome-wide association study, which also allows unequal variances for single nucleotide polymorphisms. In addition, our aim was also to identify candidate genes within QTL regions that explained the highest proportions of genetic variance. Subsequently, we performed gene network analyses to investigate the biological processes shared by genes that were identified for the same semen traits across lines. We identified QTL regions that explained up to 10.8% of the genetic variance of the semen traits on 12 chromosomes in L1 and 11 chromosomes in L2. Sixteen QTL regions in L1 and six QTL regions in L2 were associated with two or more traits within the population. Candidate genes SCN8A, PTGS2, PLA2G4A, DNAI2, IQCG and LOC102167830 were identified in L1 and NME5, AZIN2, SPATA7, METTL3 and HPGDS in L2. No regions overlapped between these two lines. However, the gene network analysis for progressive motility revealed two genes in L1 (PLA2G4A and PTGS2) and one gene in L2 (HPGDS) that were involved in two biological processes i.e. eicosanoid biosynthesis and arachidonic acid metabolism. PTGS2 and HPGDS were also involved in the cyclooxygenase pathway. We identified several QTL regions associated with semen traits in two pig lines, which confirms the assumption of a complex genetic determinism for these traits. A large part of the genetic variance of the semen traits under study was explained by different genes in the two evaluated lines. Nevertheless, the gene network analysis revealed candidate genes that are involved in shared biological pathways that occur in mammalian testes, in both lines."	"Neonatal tremor episodes and hyperekplexia-like presentation at onset in a child with SCN8A developmental and epileptic encephalopathy. SCN8A encephalopathy is a newly defined epileptic encephalopathy caused by de novo mutations of the SCN8A gene. We report herein a four-year-old boy presenting with severe non-epileptic abnormal movements, of possibly antenatal onset, progressively associated with pharmacoresistant epilepsy and regression, associated with a de novo heterozygous missense mutation of SCN8A. This case shows that paroxysmal non-epileptic episodes of severe tremor and hyperekplexia-like startles and a striking vegetative component can be the first early symptoms of severe SCN8A developmental and epileptic encephalopathy. Clinicians should be aware of these symptoms in order to avoid misdiagnosis and ensure early appropriate therapeutic management. [Published with video sequences on www.epilepticdisorders.com]."	"Role of sodium channel subtype in action potential generation by neocortical pyramidal neurons. Neocortical pyramidal neurons express several distinct subtypes of voltage-gated Na<sup>+</sup> channels. In mature cells, Nav1.6 is the dominant channel subtype in the axon initial segment (AIS) as well as in the nodes of Ranvier. Action potentials (APs) are initiated in the AIS, and it has been proposed that the high excitability of this region is related to the unique characteristics of the Nav1.6 channel. Knockout or loss-of-function mutation of the Scn8a gene is generally lethal early in life because of the importance of this subtype in noncortical regions of the nervous system. Using the Cre/loxP system, we selectively deleted Nav1.6 in excitatory neurons of the forebrain and characterized the excitability of Nav1.6-deficient layer 5 pyramidal neurons by patch-clamp and Na<sup>+</sup> and Ca<sup>2+</sup> imaging recordings. We now report that, in the absence of Nav1.6 expression, the AIS is occupied by Nav1.2 channels. However, APs are generated in the AIS, and differences in AP propagation to soma and dendrites are minimal. Moreover, the channels that are expressed in the AIS still show a clear hyperpolarizing shift in voltage dependence of activation, compared with somatic channels. The only major difference between Nav1.6-null and wild-type neurons was a strong reduction in persistent sodium current. We propose that the molecular environment of the AIS confers properties on whatever Na channel subtype is present and that some other benefit must be conferred by the selective axonal presence of the Nav1.6 channel."	"Nonmuscle myosin II isoforms interact with sodium channel alpha subunits. Sodium channels play pivotal roles in health and diseases due to their ability to control cellular excitability. The pore-forming α-subunits (sodium channel alpha subunits) of the voltage-sensitive channels (i.e., Nav1.1-1.9) and the nonvoltage-dependent channel (i.e., Nax) share a common structural motif and selectivity for sodium ions. We hypothesized that the actin-based nonmuscle myosin II motor proteins, nonmuscle myosin heavy chain-IIA/myh9, and nonmuscle myosin heavy chain-IIB/myh10 might interact with sodium channel alpha subunits to play an important role in their transport, trafficking, and/or function. Immunochemical and electrophysiological assays were conducted using rodent nervous (brain and dorsal root ganglia) tissues and ND7/23 cells coexpressing Nav subunits and recombinant myosins. Immunoprecipitation of myh9 and myh10 from rodent brain tissues led to the coimmunoprecipitation of Nax, Nav1.2, and Nav1.3 subunits, but not Nav1.1 and Nav1.6 subunits, expressed there. Similarly, immunoprecipitation of myh9 and myh10 from rodent dorsal root ganglia tissues led to the coimmunoprecipitation of Nav1.7 and Nav1.8 subunits, but not Nav1.9 subunits, expressed there. The functional implication of one of these interactions was assessed by coexpressing myh10 along with Nav1.8 subunits in ND7/23 cells. Myh10 overexpression led to three-fold increase ( P &lt; 0.01) in the current density of Nav1.8 channels expressed in ND7/23 cells. Myh10 coexpression also hyperpolarized voltage-dependent activation and steady-state fast inactivation of Nav1.8 channels. In addition, coexpression of myh10 reduced ( P &lt; 0.01) the offset of fast inactivation and the amplitude of the ramp currents of Nav1.8 channels. These results indicate that nonmuscle myosin heavy chain-IIs interact with sodium channel alpha subunits subunits in an isoform-dependent manner and influence their functional properties."	"mGluR5-dependent modulation of dendritic excitability in CA1 pyramidal neurons mediated by enhancement of persistent Na<sup>+</sup> currents. High-frequency stimulation (HFS) of the Schaffer collateral pathway activates metabotropic glutamate receptor 5 (mGluR5) signalling in the proximal apical dendrites of CA1 pyramidal neurons. The synaptic activation of mGluR5-mediated calcium signalling causes a significant increase in persistent sodium current (INa,P ) in the dendrites. Increased INa,P by HFS underlies potentiation of synaptic inputs at both the proximal and distal dendrite, leading to an enhanced probability of action potential firing associated with decreased action potential thresholds. Therefore, HFS-induced activation of intracellular mGluR5 serves an important role as an instructive signal for potentiation of upcoming inputs by increasing dendritic excitability. Dendritic Na<sup>+</sup> channels in pyramidal neurons are known to amplify synaptic signals, thereby facilitating action potential (AP) generation. However, the mechanisms that modulate dendritic Na<sup>+</sup> channels have remained largely uncharacterized. Here, we report a new form of short-term plasticity in which proximal excitatory synaptic inputs to hippocampal CA1 pyramidal neurons transiently elevate dendritic excitability. High-frequency stimulations (HFS) to the Schaffer collateral (SC) pathway activate mGluR5-dependent Ca<sup>2+</sup> signalling in the apical dendrites, which, with calmodulin, upregulates specifically Nav1.6 channel-mediated persistent Na<sup>+</sup> currents (INa,P ) in the dendrites. This HFS-induced increase in dendritic INa,P results in transient increases in the amplitude of excitatory postsynaptic potentials induced by both proximal SC and distal perforant path stimulation, leading to the enhanced probability of AP firing associated with decreased AP thresholds. Taken together, our study identifies dendritic INa,P as a novel target for mediating activity-dependent modulation of dendritic integration and neuronal output."	"Diagnostic yield of targeted massively parallel sequencing in children with epileptic encephalopathy. To report our institutional experience of targeted massively parallel sequencing (MPS) testing in children with epilepsy. We retrospectively analysed the yield of targeted epileptic encephalopathy (EE) panel of 71 known EE genes in patients with epilepsy of unknown cause, who underwent clinical triage by a group of neurologists prior to the testing. We compared cost of the EE panel approach compared to traditional evaluation in patients with identified pathogenic variants. The yield of pathogenic variants was 28.5% (n = 30/105), highest in early onset EE &lt;3 months including Ohtahara syndrome (52%, n = 10/19) and lowest in generalized epilepsy (0/17). Patients identified with pathogenic variants had earlier onset of seizures (median 3.6 m vs 1.1y, p &lt; 0.001, OR 0.6/year, P &lt; 0.02) compared to those without pathogenic variants. Pathogenic/likely pathogenic variants were found in ALDH7A1 (2), CACNA1A (1), CDKL5 (3), FOXG1 (2), GABRB3 (1), GRIN2A (1), KCNQ2 (4), KCNQ3 (1), PRRT2 (1), SCN1A (6), SCN2A (2), SCN8A (2), SYNGAP1 (1), UBE3A (2) and WWOX (1) genes. This study expands the inheritance pattern caused by KCNQ3 mutations to include an autosomal recessive severe phenotype with neonatal seizures and severe developmental delay. The average cost of etiological evaluation was less with early use of EE panel compared to the traditional investigation approach ($5990 Australian dollars (AUD) vs $13069 AUD ; p = 0.02) among the patients with identified pathogenic variants. Targeted MPS testing is a comprehensive and economical investigation that enables early genetic diagnosis in children with EE. Careful clinical triage and selection of patients with young onset EE may maximize the yield of EE panel testing."	"The novel sodium channel modulator GS-458967 (GS967) is an effective treatment in a mouse model of SCN8A encephalopathy. De novo mutations of SCN8A, encoding the voltage-gated sodium channel NaV 1.6, have been associated with a severe infant onset epileptic encephalopathy. Individuals with SCN8A encephalopathy have a mean age of seizure onset of 4-5 months, with multiple seizure types that are often refractory to treatment with available drugs. Anecdotal reports suggest that high-dose phenytoin is effective for some patients, but there are associated adverse effects and potential for toxicity. Functional characterization of several SCN8A encephalopathy variants has shown that elevated persistent sodium current is one of several common biophysical defects. Therefore, specifically targeting elevated persistent current may be a useful therapeutic strategy in some cases. The novel sodium channel modulator GS967 has greater preference for persistent as opposed to peak current and nearly 10-fold greater potency than phenytoin. We evaluated the therapeutic effect of GS967 in the Scn8a<sup>N1768D/+</sup> mouse model carrying an SCN8A patient mutation that results in elevated persistent sodium current. We also performed patch clamp recordings to assess the effect of GS967 on peak and persistent sodium current and excitability in hippocampal neurons from Scn8a<sup>N1768D/+</sup> mice. GS967 potently blocked persistent sodium current without affecting peak current, normalized action potential morphology, and attenuated excitability in neurons from heterozygous Scn8a<sup>N1768D/+</sup> mice. Acute treatment with GS967 provided dose-dependent protection against maximal electroshock-induced seizures in Scn8a<sup>N1768D/+</sup> and wild-type mice. Chronic treatment of Scn8a<sup>N1768D/+</sup> mice with GS967 resulted in lower seizure burden and complete protection from seizure-associated lethality observed in untreated Scn8a<sup>N1768D/+</sup> mice. Protection was achieved at a chronic dose that did not cause overt behavioral toxicity or sedation. Persistent sodium current modulators like GS967 may be an effective precision targeting strategy for SCN8A encephalopathy and other functionally similar channelopathies when elevated persistent sodium current is the primary dysfunction."	"Incorporating epilepsy genetics into clinical practice: a 360°evaluation. We evaluated a new epilepsy genetic diagnostic and counseling service covering a UK population of 3.5 million. We calculated diagnostic yield, estimated clinical impact, and surveyed referring clinicians and families. We costed alternative investigational pathways for neonatal onset epilepsy. Patients with epilepsy of unknown aetiology onset &lt; 2 years; treatment resistant epilepsy; or familial epilepsy were referred for counseling and testing. We developed NGS panels, performing clinical interpretation with a multidisciplinary team. We held an educational workshop for paediatricians and nurses. We sent questionnaires to referring paediatricians and families. We analysed investigation costs for 16 neonatal epilepsy patients. Of 96 patients, a genetic diagnosis was made in 34% of patients with seizure onset &lt; 2 years, and 4% &gt; 2 years, with turnaround time of 21 days. Pathogenic variants were seen in SCN8A, SCN2A, SCN1A, KCNQ2, HNRNPU, GRIN2A, SYNGAP1, STXBP1, STX1B, CDKL5, CHRNA4, PCDH19 and PIGT. Clinician prediction was poor. Clinicians and families rated the service highly. In neonates, the cost of investigations could be reduced from £9362 to £2838 by performing gene panel earlier and the median diagnostic delay of 3.43 years reduced to 21 days. Panel testing for epilepsy has a high yield among children with onset &lt; 2 years, and an appreciable clinical and financial impact. Parallel gene testing supersedes single gene testing in most early onset cases that do not show a clear genotype-phenotype correlation. Clinical interpretation of laboratory results, and in-depth discussion of implications for patients and their families, necessitate multidisciplinary input and skilled genetic counseling."	"Partial loss-of-function of sodium channel SCN8A in familial isolated myoclonus. Variants in the neuronal sodium channel gene SCN8A have been implicated in several neurological disorders. Early infantile epileptic encephalopathy type 13 results from de novo gain-of-function mutations that alter the biophysical properties of the channel. Complete loss-of-function variants of SCN8A have been identified in cases of isolated intellectual disability. We now report a novel heterozygous SCN8A variant, p.Pro1719Arg, in a small pedigree with five family members affected with autosomal dominant upper limb isolated myoclonus without seizures or cognitive impairment. Functional analysis of the p.Pro1719Arg variant in transfected neuron-derived cells demonstrated greatly reduced Nav 1.6 channel activity without altered gating properties. Hypomorphic alleles of Scn8a in the mouse are known to result in similar movement disorders. This study expands the phenotypic and functional spectrum of SCN8A variants to include inherited nonepileptic isolated myoclonus. SCN8A can be considered as a candidate gene for isolated movement disorders without seizures."	"Early mortality in SCN8A-related epilepsies. SCN8A-related epilepsies are often severe developmental and epileptic encephalopathies. Seizures can be treatment resistant, and patients suffer from severe intellectual disability. Reports have suggested that SCN8A-related epilepsies have a high mortality with SUDEP as the major underlying cause. SUDEP is a catastrophic event, and the risk of occurrence should be correctly and carefully discussed with patients and families. We tested the hypothesis of SUDEP as the main cause of death in SCN8A-related epilepsies by reviewing all the currently reported patients with SCN8A. In addition, we collected unpublished patients through an international network. In total, we reviewed the data of 190 patients. In our cohort, 10 patients were deceased, and the overall mortality was 5.3%. Within the ten deceased patients, age at death ranged from 16 months to 17 years; the majority (7/10) of them died in early childhood. Three patients died of probable or definite SUDEP. Thus, our data do not indicate an increased risk when compared to other DEEs. Indeed, death in SCN8A-related epilepsies seems to occur most often in children experiencing a relentless worsening of their epilepsy and neurological condition, rendering them susceptible to pulmonary infections and respiratory distress that ultimately can be fatal."	"Diagnostic outcomes for genetic testing of 70 genes in 8565 patients with epilepsy and neurodevelopmental disorders. We evaluated &gt;8500 consecutive, unselected patients with epilepsy and neurodevelopmental disorders who underwent multigene panel testing to determine the average age at molecular diagnosis and diagnostic yield of 70 genes. We reviewed molecular test results for 70 genes known to cause epilepsy and neurodevelopmental disorders using next generation sequencing (NGS) and exon-level array comparative genomic hybridization (aCGH). A positive result was defined as the presence of 1 or 2 pathogenic or likely pathogenic (P/LP) variants in a single gene, depending on the mode of inheritance of the associated disorder. Overall, 22 genes were found to have a high yield of positive findings by genetic testing, with SCN1A and KCNQ2 accounting for the greatest number of positive findings. In contrast, there were no positive findings in 16 genes. Most of the P/LP variants were sequence changes identified by NGS (90.9%), whereas ~9% were gross deletions or duplications detected by exon-level aCGH. The mean age of molecular diagnosis for the cohort was 5 years, 8 months (ranging from 1 week to 47 years). Recurrent P/LP variants were observed in 14 distinct genes, most commonly in MECP2, KCNQ2, SCN1A, SCN2A, STXBP1, and PRRT2. Parental testing was performed in &gt;30% of positive cases. All variants identified in CDKL5, STXBP1, SCN8A, GABRA1, and FOXG1 were de novo, whereas 85.7% of variants in PRRT2 were inherited. Using a combined approach of NGS and exon-level aCGH, testing identified a genetic etiology in 15.4% of patients in this cohort and revealed the age at molecular diagnosis for patients. Our study highlights both high- and low-yield genes associated with epilepsy and neurodevelopmental disorders, indicating which genes may be considered for molecular diagnostic testing."	"Environmental Enrichment and Social Isolation Mediate Neuroplasticity of Medium Spiny Neurons through the GSK3 Pathway. Resilience and vulnerability to neuropsychiatric disorders are linked to molecular changes underlying excitability that are still poorly understood. Here, we identify glycogen-synthase kinase 3β (GSK3β) and voltage-gated Na<sup>+</sup> channel Nav1.6 as regulators of neuroplasticity induced by environmentally enriched (EC) or isolated (IC) conditions-models for resilience and vulnerability. Transcriptomic studies in the nucleus accumbens from EC and IC rats predicted low levels of GSK3β and SCN8A mRNA as a protective phenotype associated with reduced excitability in medium spiny neurons (MSNs). In vivo genetic manipulations demonstrate that GSK3β and Nav1.6 are molecular determinants of MSN excitability and that silencing of GSK3β prevents maladaptive plasticity of IC MSNs. In vitro studies reveal direct interaction of GSK3β with Nav1.6 and phosphorylation at Nav1.6<sup>T1936</sup> by GSK3β. A GSK3β-Nav1.6<sup>T1936</sup> competing peptide reduces MSNs excitability in IC, but not EC rats. These results identify GSK3β regulation of Nav1.6 as a biosignature of MSNs maladaptive plasticity."	"Common terms for rare epilepsies: Synonyms, associated terms, and links to structured vocabularies. Identifying individuals with rare epilepsy syndromes in electronic data sources is difficult, in part because of missing codes in the International Classification of Diseases (ICD) system. Our objectives were the following: (1) to describe the representation of rare epilepsies in other medical vocabularies, to identify gaps; and (2) to compile synonyms and associated terms for rare epilepsies, to facilitate text and natural language processing tools for cohort identification and population-based surveillance. We describe the representation of 33 epilepsies in 3 vocabularies: Orphanet, SNOMED-CT, and UMLS-Metathesaurus. We compiled terms via 2 surveys, correspondence with parent advocates, and review of web resources and standard vocabularies. UMLS-Metathesaurus had entries for all 33 epilepsies, Orphanet 32, and SNOMED-CT 25. The vocabularies had redundancies and missing phenotypes. Emerging epilepsies (SCN2A-, SCN8A-, KCNQ2-, SLC13A5-, and SYNGAP-related epilepsies) were underrepresented. Survey and correspondence respondents included 160 providers, 375 caregivers, and 11 advocacy group leaders. Each epilepsy syndrome had a median of 15 (range 6-28) synonyms. Nineteen had associated terms, with a median of 4 (range 1-41). We conclude that medical vocabularies should fill gaps in representation of rare epilepsies to improve their value for epilepsy research. We encourage epilepsy researchers to use this resource to develop tools to identify individuals with rare epilepsies in electronic data sources."	"Phenytoin as a last-resort treatment in SCN8A encephalopathy. SCN8A encodes Nav1.6, one of the main voltage-gated sodium channel subunits in the brain, and SCN8A mutations lead to epileptic encephalopathy. Particular mutations render the mutant channel more susceptible to inhibition by phenytoin. Yet, the potentially severe side effects of phenytoin maintenance therapy, especially cognitive impairment, are undesirable in these already cognitively impaired patients. We describe a 5-year-old patient with SCN8A encephalopathy in whom phenytoin proved successful as emergency treatment to prevent clustering of seizures and status epilepticus, thus hospital stays. The ketogenic diet, levetiracetam, zonisamide, topiramate, and phenytoin maintenance therapy resulted in adverse reactions not previously documented in SCN8A encephalopathy."	"Gene panel analysis for nonsyndromic cryptogenic neonatal/infantile epileptic encephalopathy. Epileptic encephalopathy (EE) is a heterogeneous condition associated with deteriorations of cognitive, sensory and/or motor functions as a consequence of epileptic activity. The phenomenon is the most common and severe in infancy and early childhood. Genetic-based diagnosis in EE patients is challenging owing to genetic and phenotypic heterogeneity of numerous monogenic disorders and the fact that thousands of genes are involved in neurodevelopment. Therefore, high-throughput next-generation sequencing (NGS) was used to investigate the genetic causes of non-syndromic cryptogenic neonatal/infantile EE (NIEE). We have selected a cohort of 31 patients with seizure cryptogenic NIEE and seizure onset before 24 months. All investigations including metabolic work-up, were negative. Using NGS, we distinguished a panel of 430 epilepsy-associated genes by NGS was utilized to identify possible pathogenic variants in the patients. Segregation analysis and multiple silico analysis prediction tools were used for pathogenicity assessment. The identified variants were classified as &quot;pathogenic,&quot; &quot;likely pathogenic&quot; and &quot;uncertain significance,&quot; according to the American College of Medical Genetics (ACMG) guidelines. Pathogenic or likely pathogenic variants were identified in six genes (ALG13 [1], CDKL5 [2], KCNQ2 [2], PNPO [1], SCN8A [1], SLC9A6 [2]) in 9 NIEE patients (9/31; 29%). Variants of uncertain significance (VUS) were found in DNM1 and TUBA8 in 2 NIEE patients (2/31; 6%). Most phenotypes in our cohort matched with those reported cases. The diagnostic rate (29%) of pathogenic and likely pathogenic variants was comparable to the recent studies of early-onset epileptic encephalopathy, indicating that gene panel analysis through NGS is a powerful tool to investigate cryptogenic NIEE in patients. Six percent of patients had neurometabolic disorders. Some of our diagnosed cases illustrated that successful molecular investigation may allow a better treatment strategy and avoid unnecessary and even invasive investigations. Functional analysis could be performed to further study the pathogenicity of the VUS identified in DNM1 and TUBA8."	"Palmitoylation of δ-catenin promotes kinesin-mediated membrane trafficking of Nav1.6 in sensory neurons to promote neuropathic pain. Palmitoylation of δ-catenin is critical to synapse plasticity and memory formation. We found that δ-catenin palmitoylation is also instrumental in the development of neuropathic pain. The abundances of palmitoylated δ-catenin and the palmitoyl acyltransferase DHHC3 were increased in dorsal root ganglion (DRG) sensory neurons in rat models of neuropathic pain. Inhibiting palmitoyl acyltransferases or decreasing δ-catenin abundance in the DRG by intrathecal injection of 2-bromopalmitate or shRNA, respectively, alleviated oxaliplatin or nerve injury-induced neuropathic pain in the rats. The palmitoylation of δ-catenin, which was induced by the inflammatory cytokine TNF-α, facilitated its interaction with the voltage-gated sodium channel Nav1.6 and the kinesin motor protein KIF3A, which promoted the trafficking of Nav1.6 to the plasma membrane in DRG neurons and contributed to mechanical hypersensitivity and allodynia in rats. These findings suggest that a palmitoylation-mediated KIF3A/δ-catenin/Nav1.6 complex enhances the transmission of mechanical and nociceptive signals; thus, blocking this mechanism may be therapeutic in patients with neuropathic pain."	"Abnormal changes in voltage-gated sodium channels subtypes NaV1.1, NaV1.2, NaV1.3, NaV1.6 and CaM/CaMKII pathway in low-grade astrocytoma. Epileptic seizures are the main clinical manifestation of low-grade astrocytoma. Voltage-gated sodium channels (VGSCs) play a crucial role in epilepsy. Until now, the role of VGSCs and the relationships between calmodulin (CaM)/CaM-dependent protein kinase II (CaMKII) and VGSCs in low-grade astrocytoma have not been demonstrated. In our study, the protein expression of NaV1.3, NaV1.6 and CaM was significantly increased in the tumor compared to control tissue, while the level of p-CaMKII/CaMKII was significantly decreased in the tumor group as determined by Western Blotting and immunohistochemistry. Furthermore, double-labeling immunofluorescence results showed that NaV1.3/NaV1.6 and CaM co-localization was significantly increased in the tumor group compared to control tissue. This study represents the first evidence of the abnormal changes in VGSCs subtypes and CaM/CaMKII pathway in human brain low-grade astrocytoma, providing new potential targets for molecular therapies of this disease."	"A comprehensive approach to identifying repurposed drugs to treat SCN8A epilepsy. Many previous studies of drug repurposing have relied on literature review followed by evaluation of a limited number of candidate compounds. Here, we demonstrate the feasibility of a more comprehensive approach using high-throughput screening to identify inhibitors of a gain-of-function mutation in the SCN8A gene associated with severe pediatric epilepsy. We developed cellular models expressing wild-type or an R1872Q mutation in the Nav 1.6 sodium channel encoded by SCN8A. Voltage clamp experiments in HEK-293 cells expressing the SCN8A R1872Q mutation demonstrated a leftward shift in sodium channel activation as well as delayed inactivation; both changes are consistent with a gain-of-function mutation. We next developed a fluorescence-based, sodium flux assay and used it to assess an extensive library of approved drugs, including a panel of antiepileptic drugs, for inhibitory activity in the mutated cell line. Lead candidates were evaluated in follow-on studies to generate concentration-response curves for inhibiting sodium influx. Select compounds of clinical interest were evaluated by electrophysiology to further characterize drug effects on wild-type and mutant sodium channel functions. The screen identified 90 drugs that significantly inhibited sodium influx in the R1872Q cell line. Four drugs of potential clinical interest-amitriptyline, carvedilol, nilvadipine, and carbamazepine-were further investigated and demonstrated concentration-dependent inhibition of sodium channel currents. A comprehensive drug repurposing screen identified potential new candidates for the treatment of epilepsy caused by the R1872Q mutation in the SCN8A gene."	"PRRT2 controls neuronal excitability by negatively modulating Na+ channel 1.2/1.6 activity. See Lerche (doi:10.1093/brain/awy073) for a scientific commentary on this article.Proline-rich transmembrane protein 2 (PRRT2) is the causative gene for a heterogeneous group of familial paroxysmal neurological disorders that include seizures with onset in the first year of life (benign familial infantile seizures), paroxysmal kinesigenic dyskinesia or a combination of both. Most of the PRRT2 mutations are loss-of-function leading to haploinsufficiency and 80% of the patients carry the same frameshift mutation (c.649dupC; p.Arg217Profs*8), which leads to a premature stop codon. To model the disease and dissect the physiological role of PRRT2, we studied the phenotype of neurons differentiated from induced pluripotent stem cells from previously described heterozygous and homozygous siblings carrying the c.649dupC mutation. Single-cell patch-clamp experiments on induced pluripotent stem cell-derived neurons from homozygous patients showed increased Na+ currents that were fully rescued by expression of wild-type PRRT2. Closely similar electrophysiological features were observed in primary neurons obtained from the recently characterized PRRT2 knockout mouse. This phenotype was associated with an increased length of the axon initial segment and with markedly augmented spontaneous and evoked firing and bursting activities evaluated, at the network level, by multi-electrode array electrophysiology. Using HEK-293 cells stably expressing Nav channel subtypes, we demonstrated that the expression of PRRT2 decreases the membrane exposure and Na+ current of Nav1.2/Nav1.6, but not Nav1.1, channels. Moreover, PRRT2 directly interacted with Nav1.2/Nav1.6 channels and induced a negative shift in the voltage-dependence of inactivation and a slow-down in the recovery from inactivation. In addition, by co-immunoprecipitation assays, we showed that the PRRT2-Nav interaction also occurs in brain tissue. The study demonstrates that the lack of PRRT2 leads to a hyperactivity of voltage-dependent Na+ channels in homozygous PRRT2 knockout human and mouse neurons and that, in addition to the reported synaptic functions, PRRT2 is an important negative modulator of Nav1.2 and Nav1.6 channels. Given the predominant paroxysmal character of PRRT2-linked diseases, the disturbance in cellular excitability by lack of negative modulation of Na+ channels appears as the key pathogenetic mechanism."	"Conditional knockout of NaV1.6 in adult mice ameliorates neuropathic pain. Voltage-gated sodium channels NaV1.7, NaV1.8 and NaV1.9 have been the focus for pain studies because their mutations are associated with human pain disorders, but the role of NaV1.6 in pain is less understood. In this study, we selectively knocked out NaV1.6 in dorsal root ganglion (DRG) neurons, using NaV1.8-Cre directed or adeno-associated virus (AAV)-Cre mediated approaches, and examined the specific contribution of NaV1.6 to the tetrodotoxin-sensitive (TTX-S) current in these neurons and its role in neuropathic pain. We report here that NaV1.6 contributes up to 60% of the TTX-S current in large, and 34% in small DRG neurons. We also show NaV1.6 accumulates at nodes of Ranvier within the neuroma following spared nerve injury (SNI). Although NaV1.8-Cre driven NaV1.6 knockout does not alter acute, inflammatory or neuropathic pain behaviors, AAV-Cre mediated NaV1.6 knockout in adult mice partially attenuates SNI-induced mechanical allodynia. Additionally, AAV-Cre mediated NaV1.6 knockout, mostly in large DRG neurons, significantly attenuates excitability of these neurons after SNI and reduces NaV1.6 accumulation at nodes of Ranvier at the neuroma. Together, NaV1.6 in NaV1.8-positive neurons does not influence pain thresholds under normal or pathological conditions, but NaV1.6 in large NaV1.8-negative DRG neurons plays an important role in neuropathic pain."	"Direct evidence for high affinity blockade of NaV1.6 channel subtype by huwentoxin-IV spider peptide, using multiscale functional approaches. The Chinese bird spider huwentoxin-IV (HwTx-IV) is well-known to be a highly potent blocker of NaV1.7 subtype of voltage-gated sodium (NaV) channels, a genetically validated analgesic target, and thus promising as a potential lead molecule for the development of novel pain therapeutics. In the present study, the interaction between HwTx-IV and NaV1.6 channel subtype was investigated using multiscale (from in vivo to individual cell) functional approaches. HwTx-IV was approximatively 2 times more efficient than tetrodotoxin (TTX) to inhibit the compound muscle action potential recorded from the mouse skeletal neuromuscular system in vivo, and 30 times more effective to inhibit nerve-evoked than directly-elicited muscle contractile force of isolated mouse hemidiaphragms. These results strongly suggest that the inhibition of nerve-evoked skeletal muscle functioning, produced by HwTx-IV, resulted from a toxin-induced preferential blockade of NaV1.6, compared to NaV1.4, channel subtype. This was confirmed by whole-cell automated patch-clamp experiments performed on human embryonic kidney (HEK)-293 cells overexpressing hNaV1.1-1.8 channel subtypes. HwTx-IV was also approximatively 850 times more efficient to inhibit TTX-sensitive than TTX-resistant sodium currents recorded from mouse dorsal root ganglia neurons. Finally, based on our data, we predict that blockade of the NaV1.6 channel subtype was involved in the in vivo toxicity of HwTx-IV, although this toxicity was more than 2 times lower than that of TTX. In conclusion, our results provide detailed information regarding the effects of HwTx-IV and allow a better understanding of the side-effect mechanisms involved in vivo and of channel subtype interactions resulting from the toxin activity."	"Mutations in SCN3A cause early infantile epileptic encephalopathy. Voltage-gated sodium (Na<sup>+</sup> ) channels underlie action potential generation and propagation and hence are central to the regulation of excitability in the nervous system. Mutations in the genes SCN1A, SCN2A, and SCN8A, encoding the Na<sup>+</sup> channel pore-forming (α) subunits Nav1.1, 1.2, and 1.6, respectively, and SCN1B, encoding the accessory subunit β1 , are established causes of genetic epilepsies. SCN3A, encoding Nav1.3, is known to be highly expressed in brain, but has not previously been linked to early infantile epileptic encephalopathy. Here, we describe a cohort of 4 patients with epileptic encephalopathy and heterozygous de novo missense variants in SCN3A (p.Ile875Thr in 2 cases, p.Pro1333Leu, and p.Val1769Ala). All patients presented with treatment-resistant epilepsy in the first year of life, severe to profound intellectual disability, and in 2 cases (both with the variant p.Ile875Thr), diffuse polymicrogyria. Electrophysiological recordings of mutant channels revealed prominent gain of channel function, with a markedly increased amplitude of the slowly inactivating current component, and for 2 of 3 mutants (p.Ile875Thr and p.Pro1333Leu), a leftward shift in the voltage dependence of activation to more hyperpolarized potentials. Gain of function was not observed for Nav1.3 variants known or presumed to be inherited (p.Arg1642Cys and p.Lys1799Gln). The antiseizure medications phenytoin and lacosamide selectively blocked slowly inactivating over transient current in wild-type and mutant Nav1.3 channels. These findings establish SCN3A as a new gene for infantile epileptic encephalopathy and suggest a potential pharmacologic intervention. These findings also reinforce the role of Nav1.3 as an important regulator of neuronal excitability in the developing brain, while providing additional insight into mechanisms of slow inactivation of Nav1.3. Ann Neurol 2018;83:703-717."	"Targeted gene panel and genotype-phenotype correlation in children with developmental and epileptic encephalopathy. We performed targeted gene-panel sequencing for children with developmental and epileptic encephalopathy (DEE) and evaluated the clinical implications of genotype-phenotype correlations. We assessed 278 children with DEE using a customized gene panel that included 172 genes, and extensively reviewed their clinical characteristics, including therapeutic efficacy, according to genotype. In 103 (37.1%) of the 278 patients with DEE, 35 different disease-causing monogenic mutations were identified. The diagnostic yield was higher among patients who were younger at seizure onset, especially those whose seizures started during the neonatal period, and in patients with drug-resistant epilepsy. According to epilepsy syndromes, the diagnostic yield was the highest among patients with West syndrome (WS) with a history of neonatal seizures and mutations in KCNQ2 and STXBP1 were most frequently identified. On the basis of genotypes, we evaluated the clinical progression and seizure outcomes with specific therapeutic regimens; these were similar to those reported previously. In particular, sodium channel blockers were effective in patients with mutations in KCNQ2 and SCN2A in infancy, as well as SCN8A, and interestingly, the ketogenic diet also showed diverse efficacy for patients with SCN1A, CDKL5, KCNQ2, STXBP1, and SCN2A mutations. Unfortunately, quinidine was not effective in 2 patients with migrating focal epilepsy in infancy related to KCNT1 mutations. Targeted gene-panel sequencing is a useful diagnostic tool for DEE in children, and genotype-phenotype correlations are helpful in anticipating the clinical progression and treatment efficacy among these patients."	"A relatively mild phenotype associated with mutation of SCN8A. Mutations in SCN8A gene have been described in relation to infantile onset epilepsy with movement disorders and developmental delay. Recently various authors have reported patients carrying autosomal dominant heterozygous SCN8A mutations and a milder phenotype expression. We discuss the case of a 6-year-old girl with a positive family history for epilepsy, early benign focal epilepsy, well controlled by Carbamazepine, upper limb tremor since birth, ataxia, slight motor delay and normal cognitive development. Neuroradiological study is normal, waking EEGs are normal, while epileptiform abnormalities on the vertex appear during sleep. The girl carries a de novo mutation of the SCN8A gene with nucleotide substitution of c.3943G &gt; A (p.Val 1315 Met), located in the domain III S4/S5 intracellular linker. In literature two other cases with the same mutation have been reported, both patients have an epileptic encephalopathy. Our patient's milder phenotype could be caused by a modifier effect, possibly a mutation in another gene or a mosaicism. The detailed description of our case should contribute to enlarging the description of the clinical features of SCN8A mutations and to recommending the deepening of genetic investigations to."	"Efficient strategy for the molecular diagnosis of intractable early-onset epilepsy using targeted gene sequencing. We intended to evaluate diagnostic utility of a targeted gene sequencing by using next generation sequencing (NGS) panel in patients with intractable early-onset epilepsy (EOE) and find the efficient analytical step for increasing the diagnosis rate. We assessed 74 patients with EOE whose seizures started before 3 years of age using a customized NGS panel that included 172 genes. Single nucleotide variants (SNVs) and exonic and chromosomal copy number variations (CNVs) were intensively examined with our customized pipeline and crosschecked with commercial or pre-built software. Variants were filtered and prioritized by in-depth clinical review, and finally classified according to the American College of Medical Genetics and Genomics guidelines. Each case was further discussed in a monthly consensus meeting that included the participation of all laboratory personnel, bioinformaticians, geneticists, and clinicians. The NGS panel identified 28 patients (37.8%) with genetic abnormalities; 25 patients had pathogenic or likely pathogenic SNVs in 17 genes including SXTBP1 (n = 3), CDKL5 (n = 2), KCNQ2 (n = 2), SCN1A (n = 2), SYNGAP1 (n = 2), GNAO1 (n = 2), KCNT1 (n = 2), BRAT1, WWOX, ZEB2, CHD2, PRICKLE2, COL4A1, DNM1, SCN8A, MECP2, SLC9A6 (n = 1). The other 3 patients had pathogenic CNVs (2 duplications and 1 deletion) with varying sizes (from 2.5 Mb to 12 Mb). The overall diagnostic yield was 37.8% after following our step-by-step approach for clinical consensus. NGS is a useful diagnostic tool with great utility for patients with EOE. Diagnostic yields can be maximized with a standardized and team-based approach."	"The E15R Point Mutation in Scorpion Toxin Cn2 Uncouples Its Depressant and Excitatory Activities on Human NaV1.6. We report the chemical synthesis of scorpion toxin Cn2, a potent and highly selective activator of the human voltage-gated sodium channel NaV1.6. In an attempt to decouple channel activation from channel binding, we also synthesized the first analogue of this toxin, Cn2[E15R]. This mutation caused uncoupling of the toxin's excitatory and depressant activities, effectively resulting in a NaV1.6 inhibitor. In agreement with the in vitro observations, Cn2[E15R] is antinociceptive in mouse models of NaV1.6-mediated pain."	"Elucidating distinct ion channel populations on the surface of hippocampal neurons via single-particle tracking recurrence analysis. Protein and lipid nanodomains are prevalent on the surface of mammalian cells. In particular, it has been recently recognized that ion channels assemble into surface nanoclusters in the soma of cultured neurons. However, the interactions of these molecules with surface nanodomains display a considerable degree of heterogeneity. Here, we investigate this heterogeneity and develop statistical tools based on the recurrence of individual trajectories to identify subpopulations within ion channels in the neuronal surface. We specifically study the dynamics of the K^{+} channel Kv1.4 and the Na^{+} channel Nav1.6 on the surface of cultured hippocampal neurons at the single-molecule level. We find that both these molecules are expressed in two different forms with distinct kinetics with regards to surface interactions, emphasizing the complex proteomic landscape of the neuronal surface. Further, the tools presented in this work provide new methods for the analysis of membrane nanodomains, transient confinement, and identification of populations within single-particle trajectories."	"Differential roles of NaV1.2 and NaV1.6 in regulating neuronal excitability at febrile temperature and distinct contributions to febrile seizures. Dysregulation of voltage-gated sodium channels (VGSCs) is associated with multiple clinical disorders, including febrile seizures (FS). The contribution of different sodium channel subtypes to environmentally triggered seizures is not well understood. Here we demonstrate that somatic and axonal sodium channels primarily mediated through NaV1.2 and NaV1.6 subtypes, respectively, behave differentially at FT, and might play distinct roles in FS generation. In contrast to sodium channels on the main axonal trunk, somatic ones are more resistant to inactivation and display significantly augmented currents, faster gating rates and kinetics of recovery from inactivation at FT, features that promote neuronal excitabilities. Pharmacological inhibition of NaV1.2 by Phrixotoxin-3 (PTx3) suppressed FT-induced neuronal hyperexcitability in brain slice, while up-regulation of NaV1.2 as in NaV1.6 knockout mice showed an opposite effect. Consistently, NaV1.6 knockout mice were more susceptible to FS, exhibiting much lower temperature threshold and shorter onset latency than wildtype mice. Neuron modeling further suggests that NaV1.2 is the major subtype mediating FT-induced neuronal hyperexcitability, and predicts potential outcomes of alterations in sodium channel subtype composition. Together, these data reveal a role of native NaV1.2 on neuronal excitability at FT and its important contribution to FS pathogenesis."	"Selective targeting of Scn8a prevents seizure development in a mouse model of mesial temporal lobe epilepsy. We previously found that genetic mutants with reduced expression or activity of Scn8a are resistant to induced seizures and that co-segregation of a mutant Scn8a allele can increase survival and seizure resistance of Scn1a mutant mice. In contrast, Scn8a expression is increased in the hippocampus following status epilepticus and amygdala kindling. These findings point to Scn8a as a promising therapeutic target for epilepsy and raise the possibility that aberrant overexpression of Scn8a in limbic structures may contribute to some epilepsies, including temporal lobe epilepsy. Using a small-hairpin-interfering RNA directed against the Scn8a gene, we selectively reduced Scn8a expression in the hippocampus of the intrahippocampal kainic acid (KA) mouse model of mesial temporal lobe epilepsy. We found that Scn8a knockdown prevented the development of spontaneous seizures in 9/10 mice, ameliorated KA-induced hyperactivity, and reduced reactive gliosis. These results support the potential of selectively targeting Scn8a for the treatment of refractory epilepsy."	"A Novel Inherited Mutation of SCN8A in a Korean Family with Benign Familial Infantile Epilepsy Using Diagnostic Exome Sequencing. Mutations in SCN8A, which codes for the voltage-gated sodium channel NaV1.6, have been described in relation to infantile onset epilepsy with developmental delay and cognitive impairment. Here, we report the case of an infant and her father with early onset benign familial infantile epilepsy, but without cognitive or neurological impairment. In this patient, diagnostic exome sequencing (DES) identified a heterozygous mutation (c.4427G&gt;A; p.Gly1476Asp) in the SCN8A gene. This mutation, confirmed by Sanger sequencing, effects a highly conserved amino acid. In-silico analysis predicts that this mutation may be pathogenic. To our knowledge, this is the first clinical report on Korean benign familial infantile epilepsy with a SCN8A mutation. We were able to achieve good seizure control in our patients with sodium channel blockers. This result suggests the application of DES will be valuable for the diagnosis of patients with infantile epilepsy but no cognitive impairment."	"Intraspecific variation of Centruroides sculpturatus scorpion venom from two regions of Arizona. This study investigated geographic variability in the venom of Centruroides sculpturatus scorpions from different biotopes. Venom from scorpions collected from two different regions in Arizona; Santa Rita Foothills (SR) and Yarnell (Yar) were analyzed. We found differences between venoms, mainly in the two most abundant peptides; SR (CsEv2e and CsEv1f) and Yar (CsEv2 and CsEv1c) identified as natural variants of CsEv1 and CsEv2. Sequence analyses of these peptides revealed conservative amino acid changes between variants, which may underlie biological activity against arthropods. A third peptide (CsEv6) was highly abundant in the Yar venom compared to the SR venom. CsEv6 is a 67 amino acid peptide with 8 cysteines. CsEv6 did not exhibit toxicity to the three animal models tested. However, both venoms shared similarities in peptides that are predicted to deter predators. For example, both venoms expressed CsEI (lethal to chick) in similar abundance, while CsEd and CsEM1a (toxic to mammals) displayed only moderate variation in their abundance. Electrophysiological evaluation of CsEd and CsEM1a showed that both toxins act on the human sodium-channel subtype 1.6 (hNav 1.6). Complete sequencing revealed that both toxins are structurally similar to beta-toxins isolated from different Centruroides species that also target hNav 1.6."	"[Early onset epileptic encephalopathy in a patient with mutation in &lt;i&gt;SCN8A&lt;/i&gt;]. Encefalopatia epileptica de inicio precoz en un paciente con mutacion en &lt;i&gt;SCN8A&lt;/i&gt;."	"Neurotransmitters and Sodium Channelopathies; Possible Link? Investigators from the University of British Columbia, Great Ormond Street Hospital for Children, and the National Hospital reported their findings on neurotransmitter deficiencies in two patients with mutations in voltage-gated sodium genes (SCN2A and SCN8A) discovered by whole exome sequencing."	"Prevalence of Genetic Disorders and GLUT1 Deficiency in a Ketogenic Diet Clinic. Between July of 2012 and December of 2014, 39 patients were enrolled prospectively to investigate the prevalence of glucose transporter 1 (GLUT1) deficiency in a ketogenic diet clinic. None of them had GLUT1 deficiency. All patients seen in the same clinic within the same period were reviewed retrospectively. A total of 18 of these 85 patients had a genetic diagnosis, including GLUT1 deficiency, pathogenic copy number variants, congenital disorder of glycosylation, neuronal ceroid lipofuscinosis type II, mitochondrial disorders, tuberous sclerosis, lissencephaly, and SCN1A-, SCN8A-, and STXBP1-associated epileptic encephalopathies. The prevalence of genetic diagnoses was 21% and prevalence of GLUT1 deficiency was 2.4% in our retrospective cohort study."	"Early-onset epileptic encephalopathy with de novo SCN8A mutation. Early-onset epileptic encephalopathies (EOEEs) are clinically and genetically heterogeneous disorders characterized by intractable seizures and unremitting interictal paroxysmal epileptiform activity. Consequently, these syndromes impair neurodevelopment during the first year of life. Currently, the etiology of these disorders is largely unknown. In this study, Childhood-Onset Epilepsy Gene Panel Testing (containing 511 epilepsy-related genes) was performed in a parent-offspring trio. In this family, the son had refractory seizures, intellectual disability, and motor abnormalities, and he was diagnosed with EOEE. The boy later died from a sudden unexpected death in epilepsy (SUDEP) at the age of 26 months. In this case, we identified a de novo mutation (c.4423G &gt; A; glycine [Gly]1475 arginine [Arg]) classified as heterozygous missense located in the inactivation gate section of the SCN8A (voltage-gated sodium-channel type VIII alpha subunit) gene. This result strengthens the association between the SCN8A gene and EOEE, and more attention should be given to its high rate of SUDEP. Further studies to determine the pathogenic mechanisms of SCN8A mutations should be warranted at the inactivation gate section of this sodium channel in both neurons and cardiac muscles."	"De novo variants in the alternative exon 5 of SCN8A cause epileptic encephalopathy. PurposeAs part of the Epilepsy Genetics Initiative, we re-evaluated clinically generated exome sequence data from 54 epilepsy patients and their unaffected parents to identify molecular diagnoses not provided in the initial diagnostic interpretation.MethodsWe compiled and analyzed exome sequence data from 54 genetically undiagnosed trios using a validated analysis pipeline. We evaluated the significance of the genetic findings by reanalyzing sequence data generated at Ambry Genetics, and from a number of additional case and control cohorts.ResultsIn 54 previously undiagnosed trios, we identified two de novo missense variants in SCN8A in the highly expressed alternative exon 5 A-an exon only recently added to the Consensus Coding Sequence database. One additional undiagnosed epilepsy patient harboring a de novo variant in exon 5 A was found in the Ambry Genetics cohort. Missense variants in SCN8A exon 5 A are extremely rare in the population, further supporting the pathogenicity of the de novo alterations identified.ConclusionThese results expand the range of SCN8A variants in epileptic encephalopathy patients and illustrate the necessity of ongoing reanalysis of negative exome sequences, as advances in the knowledge of disease genes and their annotations will permit new diagnoses to be made."	"Diagnostic Yield From 339 Epilepsy Patients Screened on a Clinical Gene Panel. The contribution of genetic factors to epilepsy has long been recognized and has been estimated to play a role in 70% to 80% of cases. Identification of a pathogenic variant can help families to better cope with the disorder, allows for genetic counseling to determine recurrence risk, and in some cases, can directly influence treatment options. In this study, we determined the diagnostic yield of a clinical gene panel applied to an unselected cohort of epilepsy patients. Variant reports from 339 clinically referred epilepsy patients screened using a 110-gene panel were retrospectively reviewed. Variants were classified using the American College of Medical Genetics and Genomics guidelines. Pathogenic or likely pathogenic variants were identified in 62 individuals (18%) and potentially causative variants were identified in an additional 21 individuals (6%). Causative and potentially causative variants were most frequently identified in SCN1A (n = 15) and KCNQ2 (n = 10). Other genes in which disease-causing variants were identified in multiple individuals included CDKL5, SCN2A, SCN8A, SCN1B, STXBP1, TPP1, PCDH19, CACNA1A, GABRA1, GRIN2A, SLC2A1, and TSC2. Sixteen additional genes had variants identified in single individuals. We identified 87 variants in 30 different genes that could explain disease, of which 54% were not previously reported. This study confirms the utility of targeted gene panel analysis in epilepsy and highlights several factors to improve the yield of diagnostic genetic testing, including the critical need for clinical phenotype information and parental samples, microarray analysis for whole exon deletions and duplications, and frequent update of panels to incorporate new disease genes."	"Pumilio2-deficient mice show a predisposition for epilepsy. Epilepsy is a neurological disease that is caused by abnormal hypersynchronous activities of neuronal ensembles leading to recurrent and spontaneous seizures in human patients. Enhanced neuronal excitability and a high level of synchrony between neurons seem to trigger these spontaneous seizures. The molecular mechanisms, however, regarding the development of neuronal hyperexcitability and maintenance of epilepsy are still poorly understood. Here, we show that pumilio RNA-binding family member 2 (Pumilio2; Pum2) plays a role in the regulation of excitability in hippocampal neurons of weaned and 5-month-old male mice. Almost complete deficiency of Pum2 in adult Pum2 gene-trap mice (Pum2 GT) causes misregulation of genes involved in neuronal excitability control. Interestingly, this finding is accompanied by the development of spontaneous epileptic seizures in Pum2 GT mice. Furthermore, we detect an age-dependent increase in Scn1a (Nav1.1) and Scn8a (Nav1.6) mRNA levels together with a decrease in Scn2a (Nav1.2) transcript levels in weaned Pum2 GT that is absent in older mice. Moreover, field recordings of CA1 pyramidal neurons show a tendency towards a reduced paired-pulse inhibition after stimulation of the Schaffer-collateral-commissural pathway in Pum2 GT mice, indicating a predisposition to the development of spontaneous seizures at later stages. With the onset of spontaneous seizures at the age of 5 months, we detect increased protein levels of Nav1.1 and Nav1.2 as well as decreased protein levels of Nav1.6 in those mice. In addition, GABA receptor subunit alpha-2 (Gabra2) mRNA levels are increased in weaned and adult mice. Furthermore, we observe an enhanced GABRA2 protein level in the dendritic field of the CA1 subregion in the Pum2 GT hippocampus. We conclude that altered expression levels of known epileptic risk factors such as Nav1.1, Nav1.2, Nav1.6 and GABRA2 result in enhanced seizure susceptibility and manifestation of epilepsy in the hippocampus. Thus, our results argue for a role of Pum2 in epileptogenesis and the maintenance of epilepsy."	"Thermal A-δ Nociceptors, Identified by Transcriptomics, Express Higher Levels of Anesthesia-Sensitive Receptors Than Thermal C-Fibers and Are More Suppressible by Low-Dose Isoflurane. We investigated the effect of isoflurane on 2 main types of thermal nociceptors: A-δ and C-fibers. Surprisingly, 1% inhaled isoflurane led to a hyperalgesic response to C-fiber thermal stimulation, whereas responses to A-δ thermal stimulation were blunted. We explored the hypothesis that differences in withdrawal behavior are mediated by differential expression of isoflurane-sensitive proteins between these types of thermal nociceptors. Multiple transcriptomic databases of peripheral neurons were integrated to reveal that isoflurane-susceptible proteins Htr3a, Kcna2, and Scn8a were enriched in thermosensitive A-δ neurons. This exploratory analysis highlights the differing role that volatile anesthetics might have on nociceptors in the peripheral nervous system."	"SCN8A mutations in Chinese patients with early onset epileptic encephalopathy and benign infantile seizures. SCN8A mutations have recently been associated with epilepsy and neurodevelopmental disorders. This study aimed to broaden the phenotypic-spectrum of disease related with SCN8A mutations. To identify the pathogenic gene of a Chinese family, in which six members suffered from epilepsy, whole-exome sequencing was performed. In addition, target next-generation sequencing (NGS) was performed on 178 sporadic patients, who had epilepsy of unknown etiology within 6 months after birth. A detailed clinical history was obtained. A heterozygous missense mutation of SCN8A was identified in the Chinese family. Six de novo mutations of SCN8A were detected in 6 sporadic patients with epilepsy. In the family, six members developed seizures within a few years after birth. Five of them had milder clinical performance, that they had normal cognition and developmental milestones, and seizure-free was achieved by mono-therapy. The other one affected member presented with refractory epilepsy and developmental regression. She died from sudden unexpected death in epilepsy (SUDEP) at 17-year-old. Clinical features of six sporadic patients with SCN8A mutations were diverse, ranging from severe epileptic encephalopathy to benign epilepsy with normal cognition. Seizures started at the mean age of 3.9 months (from 2 months to 6 months). Seizure-free was achieved in four of them by mono- or multi-antiepileptic drugs. Five of them demonstrated mild or severe psychomotor retardation, whereas the other one was normal in development and intelligence. Our findings extend the spectrum of SCN8A mutations and the clinical features of patients with SCN8A mutations. The majority of SCN8A mutations were de novo, inherited mutations from the heterozygous parents can also occur. The phenotypic spectrum of SCN8A mutation varied largely. Most affected patients manifested as refractory epilepsy and severe intellectual disability, only a small number of patients presented with milder clinical patterns. Additionally, our study confirmed that the same mutation can lead to different phenotypes."	"Antidepressants inhibit Nav1.3, Nav1.7, and Nav1.8 neuronal voltage-gated sodium channels more potently than Nav1.2 and Nav1.6 channels expressed in Xenopus oocytes. Tricyclic antidepressants (TCAs) and duloxetine are used to treat neuropathic pain. However, the mechanisms underlying their analgesic effects remain unclear. Although many investigators have shown inhibitory effects of antidepressants on voltage-gated sodium channels (Nav) as a possible mechanism of analgesia, to our knowledge, no one has compared effects on the diverse variety of sodium channel α subunits. We investigated the effects of antidepressants on sodium currents in Xenopus oocytes expressing Nav1.2, Nav1.3, Nav1.6, Nav1.7, and Nav1.8 with a β1 subunit by using whole-cell, two-electrode, voltage clamp techniques. We also studied the role of the β3 subunit on the effect of antidepressants on Nav1.3. All antidepressants inhibited sodium currents in an inactivated state induced by all five α subunits with β1. The inhibitory effects were more potent for Nav1.3, Nav1.7, and Nav1.8, which are distributed in dorsal root ganglia, than Nav1.2 and Nav1.6, which are distributed primarily in the central nervous system. The effect of amitriptyline on Nav1.7 with β1 was most potent with a half-maximal inhibitory concentration (IC50) 4.6 μmol/L. IC50 for amitriptyline on Nav1.3 coexpressed with β1 was lowered from 8.4 to 4.5 μmol/L by coexpression with β3. Antidepressants predominantly inhibited the sodium channels expressed in dorsal root ganglia, and amitriptyline has the most potent inhibitory effect. This is the first evidence, to our knowledge, showing the diverse effects of antidepressants on various α subunits. Moreover, the β3 subunit appears important for inhibition of Nav1.3. These findings may aid better understanding of the mechanisms underlying the pain relieving effects of antidepressants."	"Dravet syndrome and its mimics: Beyond SCN1A. Dravet syndrome (DS) is a severe developmental and epileptic encephalopathy characterized by the onset of prolonged febrile and afebrile seizures in infancy, and evolving to drug-resistant epilepsy with accompanying cognitive, behavioral, and motor impairment. Most cases are now known to be caused by pathogenic variants in the sodium channel gene SCN1A, but several other genes have also been implicated. This review examines current understanding of the role of non-SCN1A genes in DS, and what is known about phenotypic similarities and differences. We discuss whether these are best thought of as minority causes of DS, or as similar but distinct conditions. Based on a review of literature, a list of genes linked to DS was compiled and PubMed was searched for reports of DS-like phenotypes arising from variants in each. Online Mendelian Inheritance in Man (OMIM) was used to identify further reports relevant to each gene. Genes that have been reported to cause DS-like phenotypes include SCN2A, SCN8A, SCN9A, SCN1B, PCDH19, GABRA1, GABRG2, STXBP1, HCN1, CHD2, and KCNA2. Many of these genes, however, appear to be associated with their own, different, clinical picture. Other candidate genes for DS have been reported, but there is currently an insufficient body of literature to support their causative role. Although most cases of DS arise from SCN1A variants, numerous other genes cause encephalopathies that are clinically similar. Increasingly, a tendency is noted to define newly described epileptic disorders primarily in genetic terms, with clinical features being linked to genotypes. As genetic diagnosis becomes more readily available, its potential to guide pathophysiologic understanding and therapeutic strategy cannot be ignored. Clinical assessment remains essential; the challenge now is to develop a gene-based taxonomy that complements traditional syndromic classifications, allowing elements of both to inform new approaches to treatment."	"Bioinformatics analyses of pathways and gene predictions in IL-1α and IL-1β knockout mice with spinal cord injury. This study aimed to explore the potential genes and pathways regulated in spinal cord injury (SCI) model mice with IL-1α and IL-1β knockout (KO). Gene expression profile GSE70302, which includes data from injured spinal cord of 4 IL-1α-KO mice, 4 IL-1β-KO mice and 4 C57BL with 6 mice as controls was downloaded from the Gene Expression Omnibus database. The differentially expressed genes (DEGs) of the IL-1α-KO or IL-1β-KO vs. control, and IL-1α-KO vs. IL-1β-KO groups were screened, followed by function enrichment and protein-protein interaction (PPI) analyses. Finally, miRNAs associated with SCI that may target the DEGs were predicted. A total of 579 and 992 DEGs were selected from the IL-1α-KO vs. control group and the IL-1β-KO vs. control group, respectively, and 208 genes common between the 2 comparison groups were identified. Additionally, 526 DEGs were identified from the IL-1α-KO vs. IL-1β-KO groups. These DEGs were significantly enriched in functions and pathways associated with ion transport, neuron apoptotic processes and inflammatory responses. The common genes were enriched in the pathways for cytokine-cytokine receptor interaction. DEGs of IL-1α-KO vs. IL-1β-KO were significantly enriched in the immune system, hematopoietic cell lineage and PI3K-Akt signalling pathway-associated biological processes and pathways. The PPI network consisted of 76 nodes, such as Saa2, Kcna1, Scn8a, Ccl5, Ccl28 and Pink1. A total of 94 miRNAs, including mir-17-5P and mir-30a-5p were predicted that could target the DEGs. IL-1α and IL-1β may play important roles in SCI by regulating ion transport, inflammation and neuron apoptotic processes and their associated genes or miRNAs. Compared with IL-1β-KO, IL-1α-KO may improve the outcome of SCI via the alteration of hematopoietic cell lineage and PI3K-Akt signalling pathways."	"Partnering to support the next generation of epilepsy researchers. NA"	"CDYL suppresses epileptogenesis in mice through repression of axonal Nav1.6 sodium channel expression. Impairment of intrinsic plasticity is involved in a range of neurological disorders such as epilepsy. However, how intrinsic excitability is regulated is still not fully understood. Here we report that the epigenetic factor Chromodomain Y-like (CDYL) protein is a critical regulator of the initiation and maintenance of intrinsic neuroplasticity by regulating voltage-gated ion channels in mouse brains. CDYL binds to a regulatory element in the intron region of SCN8A and mainly recruits H3K27me3 activity for transcriptional repression of the gene. Knockdown of CDYL in hippocampal neurons results in augmented Nav1.6 currents, lower neuronal threshold, and increased seizure susceptibility, whereas transgenic mice over-expressing CDYL exhibit higher neuronal threshold and are less prone to epileptogenesis. Finally, examination of human brain tissues reveals decreased CDYL and increased SCN8A in the temporal lobe epilepsy group. Together, our findings indicate CDYL is a critical player for experience-dependent gene regulation in controlling intrinsic excitability.Alterations in intrinsic plasticity are important in epilepsy. Here the authors show that the epigenetic factor CDYL regulates the gene expression of the voltage gated sodium channel, Nav1.6, which contributes to seizures in a rat model of epilepsy."	"Sodium channel subtypes are differentially localized to pre- and post-synaptic sites in rat hippocampus. Voltage-gated Na<sup>+</sup> channels (Nav ) modulate neuronal excitability, but the roles of the various Nav subtypes in specific neuronal functions such as synaptic transmission are unclear. We investigated expression of the three major brain Nav subtypes (Nav 1.1, Nav 1.2, Nav 1.6) in area CA1 and dentate gyrus of rat hippocampus. Using light and electron microscopy, we found labeling for all three Nav subtypes on dendrites, dendritic spines, and axon terminals, but the proportion of pre- and post-synaptic labeling for each subtype varied within and between subregions of CA1 and dentate gyrus. In the central hilus (CH) of the dentate gyrus, Nav 1.1 immunoreactivity was selectively expressed in presynaptic profiles, while Nav 1.2 and Nav 1.6 were expressed both pre- and post-synaptically. In contrast, in the stratum radiatum (SR) of CA1, Nav 1.1, Nav 1.2, and Nav 1.6 were selectively expressed in postsynaptic profiles. We next compared differences in Nav subtype expression between CH and SR axon terminals and between CH and SR dendrites and spines. Nav 1.1 and Nav 1.2 immunoreactivity was preferentially localized to CH axon terminals compared to SR, and in SR dendrites and spines compared to CH. No differences in Nav 1.6 immunoreactivity were found between axon terminals of CH and SR or between dendrites and spines of CH and SR. All Nav subtypes in both CH and SR were preferentially associated with asymmetric synapses rather than symmetric synapses. These findings indicate selective presynaptic and postsynaptic Nav expression in glutamatergic synapses of CH and SR supporting neurotransmitter release and synaptic plasticity."	"Characterization of the axon initial segment of mice substantia nigra dopaminergic neurons. The axon initial segment (AIS) is the site of initiation of action potentials and influences action potential waveform, firing pattern, and rate. In view of the fundamental aspects of motor function and behavior that depend on the firing of substantia nigra pars compacta (SNc) dopaminergic neurons, we identified and characterized their AIS in the mouse. Immunostaining for tyrosine hydroxylase (TH), sodium channels (Nav ) and ankyrin-G (Ank-G) was used to visualize the AIS of dopaminergic neurons. Reconstructions of sampled AIS of dopaminergic neurons revealed variable lengths (12-60 μm) and diameters (0.2-0.8 μm), and an average of 50% reduction in diameter between their widest and thinnest parts. Ultrastructural analysis revealed submembranous localization of Ank-G at nodes of Ranvier and AIS. Serial ultrathin section analysis and 3D reconstructions revealed that Ank-G colocalized with TH only at the AIS. Few cases of synaptic innervation of the AIS of dopaminergic neurons were observed. mRNA in situ hybridization of brain-specific Nav subunits revealed the expression of Nav 1.2 by most SNc neurons and a small proportion expressing Nav 1.6. The presence of sodium channels, along with the submembranous location of Ank-G is consistent with the role of AIS in action potential generation. Differences in the size of the AIS likely underlie differences in firing pattern, while the tapering diameter of AIS may define a trigger zone for action potentials. Finally, the conspicuous expression of Nav 1.2 by the majority of dopaminergic neurons may explain their high threshold for firing and their low discharge rate."	"Ergodicity breaking on the neuronal surface emerges from random switching between diffusive states. Stochastic motion on the surface of living cells is critical to promote molecular encounters that are necessary for multiple cellular processes. Often the complexity of the cell membranes leads to anomalous diffusion, which under certain conditions it is accompanied by non-ergodic dynamics. Here, we unravel two manifestations of ergodicity breaking in the dynamics of membrane proteins in the somatic surface of hippocampal neurons. Three different tagged molecules are studied on the surface of the soma: the voltage-gated potassium and sodium channels Kv1.4 and Nav1.6 and the glycoprotein CD4. In these three molecules ergodicity breaking is unveiled by the confidence interval of the mean square displacement and by the dynamical functional estimator. Ergodicity breaking is found to take place due to transient confinement effects since the molecules alternate between free diffusion and confined motion."	"Loss-of-function variants of SCN8A in intellectual disability without seizures. To determine the functional effect of SCN8A missense mutations in 2 children with intellectual disability and developmental delay but no seizures. Genomic DNA was analyzed by next-generation sequencing. SCN8A variants were introduced into the Nav1.6 complementary DNA by site-directed mutagenesis. Channel activity was measured electrophysiologically in transfected ND7/23 cells. The stability of the mutant channels was assessed by Western blot. Both children were heterozygous for novel missense variants that altered conserved residues in transmembrane segments of Nav1.6, p.Gly964Arg in D2S6 and p.Glu1218Lys in D3S1. Both altered amino acids are evolutionarily conserved in vertebrate and invertebrate channels and are predicted to be deleterious. Neither was observed in the general population. Both variants completely prevented the generation of sodium currents in transfected cells. The abundance of Nav1.6 protein was reduced by the Glu1218Lys substitution. Haploinsufficiency of SCN8A is associated with cognitive impairment. These observations extend the phenotypic spectrum of SCN8A mutations beyond their established role in epileptic encephalopathy (OMIM#614558) and other seizure disorders. SCN8A should be considered as a candidate gene for intellectual disability, regardless of seizure status."	"High-throughput electrophysiological assays for voltage gated ion channels using SyncroPatch 768PE. Ion channels regulate a variety of physiological processes and represent an important class of drug target. Among the many methods of studying ion channel function, patch clamp electrophysiology is considered the gold standard by providing the ultimate precision and flexibility. However, its utility in ion channel drug discovery is impeded by low throughput. Additionally, characterization of endogenous ion channels in primary cells remains technical challenging. In recent years, many automated patch clamp (APC) platforms have been developed to overcome these challenges, albeit with varying throughput, data quality and success rate. In this study, we utilized SyncroPatch 768PE, one of the latest generation APC platforms which conducts parallel recording from two-384 modules with giga-seal data quality, to push these 2 boundaries. By optimizing various cell patching parameters and a two-step voltage protocol, we developed a high throughput APC assay for the voltage-gated sodium channel Nav1.7. By testing a group of Nav1.7 reference compounds' IC50, this assay was proved to be highly consistent with manual patch clamp (R &gt; 0.9). In a pilot screening of 10,000 compounds, the success rate, defined by &gt; 500 MΩ seal resistance and &gt;500 pA peak current, was 79%. The assay was robust with daily throughput ~ 6,000 data points and Z' factor 0.72. Using the same platform, we also successfully recorded endogenous voltage-gated potassium channel Kv1.3 in primary T cells. Together, our data suggest that SyncroPatch 768PE provides a powerful platform for ion channel research and drug discovery."	"Aberrant Sodium Channel Currents and Hyperexcitability of Medial Entorhinal Cortex Neurons in a Mouse Model of SCN8A Encephalopathy. SCN8A encephalopathy, or early infantile epileptic encephalopathy 13 (EIEE13), is caused predominantly by de novo gain-of-function mutations in the voltage-gated Na channel Nav1.6. Affected individuals suffer from refractory seizures, developmental delay, cognitive disability, and elevated risk of sudden unexpected death in epilepsy (SUDEP). A knock-in mouse model carrying the patient mutation p.Asn1768Asp (N1768D) reproduces many features of the disorder, including spontaneous seizures and SUDEP. We used the mouse model to examine the effects of the mutation on layer II stellate neurons of the medial entorhinal cortex (mEC), which transmit excitatory input to the hippocampus. Heterozygous (Scn8a<sup>D/+</sup>), homozygous (Scn8a<sup>D/D)</sup>), and WT (Scn8a<sup>+/+</sup>) littermates were compared at 3 weeks of age, the time of seizure onset for homozygous mice. Heterozygotes remain seizure free for another month. mEC layer II neurons of heterozygous and homozygous mice were hyperexcitable and generated long-lasting depolarizing potentials with bursts of action potentials after synaptic stimulation. Recording of Na currents revealed proexcitatory increases in persistent and resurgent currents and rightward shifts in inactivation parameters, leading to significant increases in the magnitude of window currents. The proexcitatory changes were more pronounced in homozygous mice than in heterozygotes, consistent with the earlier age of seizure onset in homozygotes. These studies demonstrate that the N1768D mutation increases the excitability of mEC layer II neurons by increasing persistent and resurgent Na currents and disrupting channel inactivation. The aberrant activities of mEC layer II neurons would provide excessive excitatory input to the hippocampus and contribute to hyperexcitability of hippocampal neurons in this model of SCN8A encephalopathy.SIGNIFICANCE STATEMENTSCN8A encephalopathy is a devastating neurological disorder that results from de novo mutations in the Na channel Nav1.6. In addition to seizures, patients suffer from cognitive and developmental delays and are at high risk for sudden unexpected death in epilepsy (SUDEP). A mouse knock-in model expressing the patient mutation N1768D reproduces several pathological phenotypes, including spontaneous seizures and sudden death. We demonstrate that medial entorhinal cortex (mEC) neurons from the mouse model exhibit proexcitatory alterations in Na channel activity, some of which were not seen in hippocampal or cortical neurons, and resulting in neuronal hyperexcitability. Because mEC neurons regulate the activity of the hippocampus, which plays an important role in seizure onset, we propose that these profound changes in mEC neuron excitability associated with the gain-of-function mutation of Nav1.6 may increase excitatory drive into the hippocampus, culminating in seizure activity and SUDEP."	"Severe bone loss and multiple fractures in SCN8A-related epileptic encephalopathy. Mutations in the SCN8A gene encoding the neuronal voltage-gated sodium channel Nav1.6 are known to be associated with epileptic encephalopathy type 13. We identified a novel de novo SCN8A mutation (p.Phe360Ala, c.1078_1079delTTinsGC, Exon 9) in a 6-year-old girl with epileptic encephalopathy accompanied by severe juvenile osteoporosis and multiple skeletal fractures, similar to three previous case reports. Skeletal assessment using dual energy X-ray absorptiometry (DXA), high-resolution peripheral quantitative computed tomography (HR-pQCT) and serum analyses revealed a combined trabecular and cortical bone loss syndrome with elevated bone resorption. Likewise, when we analyzed the skeletal phenotype of 2week-old Scn8a-deficient mice we observed reduced trabecular and cortical bone mass, as well as increased osteoclast indices by histomorphometric quantification. Based on this cumulative evidence the patient was treated with neridronate (2mg/kg body weight administered every 3months), which fully prevented additional skeletal fractures for the next 25months. Taken together, our data provide evidence for a negative impact of SCN8A mutations on bone mass, which can be positively influenced by anti-resorptive treatment."	"Local knockdown of Nav1.6 relieves pain behaviors induced by BmK I. Voltage-gated sodium channels (VGSCs) in peripheral nociceptive sensory neurons are critical to transmit pain signals. BmK I purified from the venom of scorpion Buthus martensi Karsch (BmK) has been demonstrated to be the primary contributor of envenomation-associated pain. However, the role of distinct VGSCs such as Nav1.6 in the induction and maintenance of pain behaviors induced by BmK I was ambiguous. Herein, using molecular and behavioral approaches we investigated the mRNA and protein expression profiles of Nav1.6 in rat DRG after intraplantar injection of BmK I and tested the pain behaviors after knockdown of Nav1.6 in BmK I-treated rats. It was shown that during induction and maintenance of pain responses induced by BmK I, the expression of Nav1.6 in DRG was found to be significantly increased at both mRNA and protein levels. The percentage of co-localization of Nav1.6 and Isolectin B4, a molecular marker of small diameter non-peptidergic DRG neurons, was increased at the maintenance phase of pain responses. Furthermore, spontaneous pain and mechanical allodynia, but not thermal hyperalgesia induced by BmK I, were significantly alleviated after knockdown of Nav1.6. These data strongly suggest that Nav1.6 plays an indispensable role in the peripheral pain hypersensitivity induced by BmK I."	"mTOR-mediated Na<sup>+</sup>/Ca<sup>2+</sup> exchange affects cell proliferation and metastasis of melanoma cells. Melanoma is a common malignant tumor, which is associated with high mortality rate. The multiple-drug resistance of tumor cells often results in failure of chemotherapy. The aim of our study is to investigate the expression of Nav 1.6 in human melanoma cells and human epidermal melanocytes. Additionally, the effect of Na+channels on Ca+ current and mTOR activity in melanoma cells were also analyzed. The protein expression levels of Nav1.6 in human melanocyte PIG1, WM266 and WM115 cells were investigated by western blot. After treatment of Na<sup>+</sup> channel inhibitor Tetroadotoxin (TTX) or mTOR inhibitor rapamycin (RAPA), the electrophysiological activity (Na+ current and Ca2+ current) in WM266 and WM115 cells was detected by patch clamp technique. The expression of mTORC1 phosphorylates S6 kinase (p-S6), cell invasion and migration, cell proliferation and cell apoptosis were also performed. Results shown that Nav 1.6 was overexpressed in WM266 and WM115 cells, and the inhibition of Na<sup>+</sup> channel by TTX reduced Na<sup>+</sup> current. Both TTX and RAPA suppressed Ca<sup>2+</sup> current and the expression of p-S6, thus inducing Na<sup>+</sup> channel which activates the mTOR-Ca2+ signaling pathway. Both TTX and RAPA suppressed cell invasion, migration and proliferation, and promoted cell apoptosis of WM266 cells. Thus, the Nav1.6 sodium channel promotes cell proliferation and invasion through mTOR-mediated Na+/Ca2+ exchange in melanoma. The observations will provide a new perspective for understanding the malignant biological behavior of melanoma cells, and potentially provide a new drug target."	"PPARgamma agonists rescue increased phosphorylation of FGF14 at S226 in the Tg2576 mouse model of Alzheimer's disease. Cognitive impairment in humans with Alzheimer's disease (AD) and in animal models of Aβ-pathology can be ameliorated by treatments with the nuclear receptor peroxisome proliferator-activated receptor-gamma (PPARγ) agonists, such as rosiglitazone (RSG). Previously, we demonstrated that in the Tg2576 animal model of AD, RSG treatment rescued cognitive deficits and reduced aberrant activity of granule neurons in the dentate gyrus (DG), an area critical for memory formation. We used a combination of mass spectrometry, confocal imaging, electrophysiology and split-luciferase assay and in vitro phosphorylation and Ingenuity Pathway Analysis. Using an unbiased, quantitative nano-LC-MS/MS screening, we searched for potential molecular targets of the RSG-dependent rescue of DG granule neurons. We found that S226 phosphorylation of fibroblast growth factor 14 (FGF14), an accessory protein of the voltage-gated Na<sup>+</sup> (Nav) channels required for neuronal firing, was reduced in Tg2576 mice upon treatment with RSG. Using confocal microscopy, we confirmed that the Tg2576 condition decreased PanNav channels at the AIS of the DG, and that RSG treatment of Tg2576 mice reversed the reduction in PanNav channels. Analysis from previously published data sets identified correlative changes in action potential kinetics in RSG-treated T2576 compared to untreated and wildtype controls. In vitro phosphorylation and mass spectrometry confirmed that the multifunctional kinase GSK-3β, a downstream target of insulin signaling highly implicated in AD, phosphorylated FGF14 at S226. Assembly of the FGF14:Nav1.6 channel complex and functional regulation of Nav1.6-mediated currents by FGF14 was impaired by a phosphosilent S226A mutation. Bioinformatics pathway analysis of mass spectrometry and biochemistry data revealed a highly interconnected network encompassing PPARγ, FGF14, SCN8A (Nav 1.6), and the kinases GSK-3 β, casein kinase 2β, and ERK1/2. These results identify FGF14 as a potential PPARγ-sensitive target controlling Aβ-induced dysfunctions of neuronal activity in the DG underlying memory loss in early AD."	"Comparison and optimization of in silico algorithms for predicting the pathogenicity of sodium channel variants in epilepsy. Variants in neuronal voltage-gated sodium channel α-subunits genes SCN1A, SCN2A, and SCN8A are common in early onset epileptic encephalopathies and other autosomal dominant childhood epilepsy syndromes. However, in clinical practice, missense variants are often classified as variants of uncertain significance when missense variants are identified but heritability cannot be determined. Genetic testing reports often include results of computational tests to estimate pathogenicity and the frequency of that variant in population-based databases. The objective of this work was to enhance clinicians' understanding of results by (1) determining how effectively computational algorithms predict epileptogenicity of sodium channel (SCN) missense variants; (2) optimizing their predictive capabilities; and (3) determining if epilepsy-associated SCN variants are present in population-based databases. This will help clinicians better understand the results of indeterminate SCN test results in people with epilepsy. Pathogenic, likely pathogenic, and benign variants in SCNs were identified using databases of sodium channel variants. Benign variants were also identified from population-based databases. Eight algorithms commonly used to predict pathogenicity were compared. In addition, logistic regression was used to determine if a combination of algorithms could better predict pathogenicity. Based on American College of Medical Genetic Criteria, 440 variants were classified as pathogenic or likely pathogenic and 84 were classified as benign or likely benign. Twenty-eight variants previously associated with epilepsy were present in population-based gene databases. The output provided by most computational algorithms had a high sensitivity but low specificity with an accuracy of 0.52-0.77. Accuracy could be improved by adjusting the threshold for pathogenicity. Using this adjustment, the Mendelian Clinically Applicable Pathogenicity (M-CAP) algorithm had an accuracy of 0.90 and a combination of algorithms increased the accuracy to 0.92. Potentially pathogenic variants are present in population-based sources. Most computational algorithms overestimate pathogenicity; however, a weighted combination of several algorithms increased classification accuracy to &gt;0.90."	"Transient upregulation of Nav1.6 expression in the genu of corpus callosum following middle cerebral artery occlusion in the rats. Focal ischemic stroke can lead to brain damage and cause human disability and death. Increased excitatory transmission and reduced neuronal inhibition are important pathological alterations in the cerebral ischemia, which can induce abnormal brain excitability. Nav1.6 is a key determinant of neuronal excitability in the nervous system. Here we investigate the expression of Nav1.6 at protein and mRNA levels in the rats subjected to middle cerebral artery occlusion (MCAO). Nav1.6 expression at mRNA levels in the ischemic and contralateral hemispheres of MCAO rats were persistently decreased at 6h, 12h and 24h after reperfusion compared to the sham-operated rats. However, a prominent, dynamic increase of Nav1.6 immunoreactivity in reactive astrocytes was observed in the genu of corpus callosum (GCC) of MCAO rats in the acute phase, reaching the peak at 6h after reperfusion, rapidly dropping at 12h and 24h after reperfusion. Furthermore, the upregulation of Nav1.6 expression was strongly correlated with the severity of reactive astrogliosis. Collectively, these findings suggest that this upregulated astrocytic sodium channel expression in the GCC of MCAO rats may contribute to the functional roles of reactive astrocytes in response to brain ischemia."	"Unexplained Early Infantile Epileptic Encephalopathy in Han Chinese Children: Next-Generation Sequencing and Phenotype Enriching. Early Infantile Epileptic Encephalopathy (EIEE) presents shortly after birth with frequent, severe seizures and progressive disturbance of cerebral function. This study was to investigate a cohort of Chinese children with unexplained EIEE, infants with previous genetic diagnoses, causative brain malformations, or inborn errors of metabolism were excluded. We used targeted next-generation sequencing to identify potential pathogenic variants of 308 genes in 68 Han Chinese patients with unexplained EIEE. A filter process was performed to prioritize rare variants of potential functional significance. In all cases where parental testing was accessible, Sanger sequencing confirmed the variants and determined the parental origin. In 15% of patients (n = 10/68), we identified nine de novo pathogenic variants, and one assumed de novo pathogenic variant in the following genes: CDKL5 (n = 2), STXBP1 (n = 2), SCN1A (n = 3), KCNQ2 (n = 2), SCN8A (n = 1), four of the variants are novel variants. In 4% patients (n = 3/68), we identified three likely pathogenic variants; two assumed de novo and one X-linked in the following genes: SCN1A (n = 2) and ARX (n = 1), two of these variants are novel. Variants were assumed de novo when parental testing was not available. Our findings were first reported in Han Chinese patients with unexplained EIEE, enriching the EIEE mutation spectrum bank."	"Severity of Demyelinating and Axonal Neuropathy Mouse Models Is Modified by Genes Affecting Structure and Function of Peripheral Nodes. Charcot-Marie-Tooth (CMT) disease is a clinically and genetically heterogeneous group of inherited polyneuropathies. Mutations in 80 genetic loci can cause forms of CMT, resulting in demyelination and axonal dysfunction. The clinical presentation, including sensory deficits, distal muscle weakness, and atrophy, can vary greatly in severity and progression. Here, we used mouse models of CMT to demonstrate genetic interactions that result in a more severe neuropathy phenotype. The cell adhesion molecule Nrcam and the Na<sup>+</sup> channel Scn8a (NaV1.6) are important components of nodes. Homozygous Nrcam and heterozygous Scn8a mutations synergized with both an Sh3tc2 mutation, modeling recessive demyelinating Charcot-Marie-Tooth type 4C, and mutations in Gars, modeling dominant axonal Charcot-Marie-Tooth type 2D. We conclude that genetic variants perturbing the structure and function of nodes interact with mutations affecting the cable properties of axons by thinning myelin or reducing axon diameter. Therefore, genes integral to peripheral nodes are candidate modifiers of peripheral neuropathy."	"Lennox-Gastaut Syndrome: A State of the Art Review. Lennox-Gastaut syndrome (LGS) is a severe age-dependent epileptic encephalopathy usually with onset between 1 and 8 years of age. Functional neuroimaging studies recently introduced the concept of Lennox-Gastaut as &quot;secondary network epilepsy&quot; resulting from dysfunctions of a complex system involving both cortical and subcortical structures (default-mode network, corticoreticular connections, and thalamus). These dysfunctions are produced by different disorders including hypoxic-ischemic encephalopathies, meningoencephalitis, cortical malformations, neurocutaneous disorders, or tumors. The list of etiologies was expanded to pathogenic copy number variants at whole-genome array comparative genomic hybridization associated with late-onset cases or pathogenic mutations involving genes, such as GABRB3, ALG13, SCN8A, STXBP1, DNM1, FOXG1, or CHD2. Various clinical trials demonstrated the usefulness of different drugs (including rufinamide, clobazam, lamotrigine, topiramate, or felbamate), ketogenic diet, resective surgery, corpus callosotomy, and vagus nerve stimulation in the treatment of epileptic manifestations. The outcome of LGS often remains disappointing regarding seizure control or cognitive functioning. The realization of animal models, which are still lacking, and the full comprehension of molecular mechanisms involved in epileptogenesis and cognitive impairment would give a relevant support to further improvements in therapeutic strategies for LGS patients."	"Regulation of Thalamic and Cortical Network Synchrony by Scn8a. Voltage-gated sodium channel (VGSC) mutations cause severe epilepsies marked by intermittent, pathological hypersynchronous brain states. Here we present two mechanisms that help to explain how mutations in one VGSC gene, Scn8a, contribute to two distinct seizure phenotypes: (1) hypoexcitation of cortical circuits leading to convulsive seizure resistance, and (2) hyperexcitation of thalamocortical circuits leading to non-convulsive absence epilepsy. We found that loss of Scn8a leads to altered RT cell intrinsic excitability and a failure in recurrent RT synaptic inhibition. We propose that these deficits cooperate to enhance thalamocortical network synchrony and generate pathological oscillations. To our knowledge, this finding is the first clear demonstration of a pathological state tied to disruption of the RT-RT synapse. Our observation that loss of a single gene in the thalamus of an adult wild-type animal is sufficient to cause spike-wave discharges is striking and represents an example of absence epilepsy of thalamic origin."	"SCN3A deficiency associated with increased seizure susceptibility. Mutations in voltage-gated sodium channels expressed highly in the brain (SCN1A, SCN2A, SCN3A, and SCN8A) are responsible for an increasing number of epilepsy syndromes. In particular, mutations in the SCN3A gene, encoding the pore-forming Nav1.3 α subunit, have been identified in patients with focal epilepsy. Biophysical characterization of epilepsy-associated SCN3A variants suggests that both gain- and loss-of-function SCN3A mutations may lead to increased seizure susceptibility. In this report, we identified a novel SCN3A variant (L247P) by whole exome sequencing of a child with focal epilepsy, developmental delay, and autonomic nervous system dysfunction. Voltage clamp analysis showed no detectable sodium current in a heterologous expression system expressing the SCN3A-L247P variant. Furthermore, cell surface biotinylation demonstrated a reduction in the amount of SCN3A-L247P at the cell surface, suggesting the SCN3A-L247P variant is a trafficking-deficient mutant. To further explore the possible clinical consequences of reduced SCN3A activity, we investigated the effect of a hypomorphic Scn3a allele (Scn3a<sup>Hyp</sup>) on seizure susceptibility and behavior using a gene trap mouse line. Heterozygous Scn3a mutant mice (Scn3a<sup>+/Hyp</sup>) did not exhibit spontaneous seizures nor were they susceptible to hyperthermia-induced seizures. However, they displayed increased susceptibility to electroconvulsive (6Hz) and chemiconvulsive (flurothyl and kainic acid) induced seizures. Scn3a<sup>+/Hyp</sup> mice also exhibited deficits in locomotor activity and motor learning. Taken together, these results provide evidence that loss-of-function of SCN3A caused by reduced protein expression or deficient trafficking to the plasma membrane may contribute to increased seizure susceptibility."	"Advances in epilepsy gene discovery and implications for epilepsy diagnosis and treatment. Epilepsy genetics is shifting from the academic pursuit of gene discovery to a clinical discipline based on molecular diagnosis and stratified medicine. We consider the latest developments in epilepsy genetics and review how gene discovery in epilepsy is influencing the clinical classification of epilepsy and informing new therapeutic approaches and drug discovery. Recent studies highlighting the importance of mutation in GABA receptors, NMDA receptors, potassium channels, G-protein coupled receptors, mammalian target of rapamycin pathway and chromatin remodeling are discussed. Examples of precision medicine in epilepsy targeting gain-of-function mutations in KCNT1, GRIN2A, GRIN2D and SCN8A are presented. Potential reasons for the paucity of examples of precision medicine for loss-of-function mutations or in non-ion channel epilepsy genes are explored. We highlight how systems genetics and gene network analyses have suggested that pathways disrupted in epilepsy overlap with those of other neurodevelopmental traits including human cognition. We review how network-based computational approaches are now being applied to epilepsy drug discovery. We are living in an unparalleled era of epilepsy gene discovery. Advances in clinical care from this progress are already materializing through improved clinical diagnosis and stratified medicine. The application of targeted drug repurposing based on single gene defects has shown promise for epilepsy arising from gain-of-function mutations in ion-channel subunit genes, but important barriers remain to translating these approaches to non-ion channel epilepsy genes and loss-of-function mutations. Gene network analysis offers opportunities to discover new pathways for epilepsy, to decipher epilepsy's relationship to other neurodevelopmental traits and to frame a new approach to epilepsy drug discovery."	"Neuronal hyperexcitability in a mouse model of SCN8A epileptic encephalopathy. Patients with early infantile epileptic encephalopathy (EIEE) experience severe seizures and cognitive impairment and are at increased risk for sudden unexpected death in epilepsy (SUDEP). EIEE13 [Online Mendelian Inheritance in Man (OMIM) # 614558] is caused by de novo missense mutations in the voltage-gated sodium channel gene SCN8A Here, we investigated the neuronal phenotype of a mouse model expressing the gain-of-function SCN8A patient mutation, p.Asn1768Asp (Nav1.6-N1768D). Our results revealed regional and neuronal subtype specificity in the effects of the N1768D mutation. Acutely dissociated hippocampal neurons from Scn8a<sup> N1768D/+ </sup> mice showed increases in persistent sodium current (INa) density in CA1 pyramidal but not bipolar neurons. In CA3, INa,P was increased in both bipolar and pyramidal neurons. Measurement of action potential (AP) firing in Scn8a<sup> N1768D/+ </sup> pyramidal neurons in brain slices revealed early afterdepolarization (EAD)-like AP waveforms in CA1 but not in CA3 hippocampal or layer II/III neocortical neurons. The maximum spike frequency evoked by depolarizing current injections in Scn8a<sup> N1768D/+ </sup> CA1, but not CA3 or neocortical, pyramidal cells was significantly reduced compared with WT. Spontaneous firing was observed in subsets of neurons in CA1 and CA3, but not in the neocortex. The EAD-like waveforms of Scn8a<sup> N1768D/+ </sup> CA1 hippocampal neurons were blocked by tetrodotoxin, riluzole, and SN-6, implicating elevated persistent INa and reverse mode Na/Ca exchange in the mechanism of hyperexcitability. Our results demonstrate that Scn8a plays a vital role in neuronal excitability and provide insight into the mechanism and future treatment of epileptogenesis in EIEE13."	"Novel SCN8A mutation in a girl with refractory seizures and autistic features. NA"	"Pathogenesis of abdominal pain in bowel obstruction: role of mechanical stress-induced upregulation of nerve growth factor in gut smooth muscle cells. Abdominal pain is one of the major symptoms in bowel obstruction (BO); its cellular mechanisms remain incompletely understood. We tested the hypothesis that mechanical stress in obstruction upregulates expression of nociception mediator nerve growth factor (NGF) in gut smooth muscle cells (SMCs), and NGF sensitizes primary sensory nerve to contribute to pain in BO. Partial colon obstruction was induced with a silicon band implanted in the distal bowel of Sprague-Dawley rats. Colon-projecting sensory neurons in the dorsal root ganglia (T13 to L2) were identified for patch-clamp and gene expression studies. Referred visceral sensitivity was assessed by measuring withdrawal response to stimulation by von Frey filaments in the lower abdomen. Membrane excitability of colon-projecting dorsal root ganglia neurons was significantly enhanced, and the withdrawal response to von Frey filament stimulation markedly increased in BO rats. The expression of NGF mRNA and protein was increased in a time-dependent manner (day 1-day 7) in colonic SMC but not in mucosa/submucosa of the obstructed colon. Mechanical stretch in vitro caused robust NGF mRNA and protein expression in colonic SMC. Treatment with anti-NGF antibody attenuated colon neuron hyperexcitability and referred hypersensitivity in BO rats. Obstruction led to significant increases of tetrodotoxin-resistant Na currents and mRNA expression of Nav1.8 but not Nav1.6 and Nav1.7 in colon neurons; these changes were abolished by anti-NGF treatment. In conclusion, mechanical stress-induced upregulation of NGF in colon SMC underlies the visceral hypersensitivity in BO through increased gene expression and activity of tetrodotoxin-resistant Na channels in sensory neurons."	"Amyloid precursor protein modulates Nav1.6 sodium channel currents through a Go-coupled JNK pathway. Amyloid precursor protein (APP), commonly associated with Alzheimer's disease, also marks axonal degeneration. In the recent studies, we demonstrated that APP aggregated at nodes of Ranvier (NORs) in myelinated central nervous system (CNS) axons and interacted with Nav1.6. However, the physiological function of APP remains unknown. In this study, we described reduced sodium current densities in APP knockout hippocampal neurons. Coexpression of APP or its intracellular domains containing a VTPEER motif with Nav1.6 sodium channels in Xenopus oocytes resulted in an increase in peak sodium currents, which was enhanced by constitutively active Go mutant and blocked by a dominant negative mutant. JNK and CDK5 inhibitor attenuated increases in Nav1.6 sodium currents induced by overexpression of APP. Nav1.6 sodium currents were increased by APPT668E (mutant Thr to Glu) and decreased by T668A (mutant Thr to ALa) mutant, respectively. The cell surface expression of Nav1.6 sodium channels in the white matter of spinal cord and the spinal conduction velocity is decreased in APP, p35 and JNK3 knockout mice. Therefore, APP modulates Nav1.6 sodium channels through a Go-coupled JNK pathway, which is dependent on phosphorylation of APP at Thr668."	"Consequences of acute Nav1.1 exposure to deltamethrin. Pyrethroid insecticides are the most popular class of insecticides in the world, despite their near-ubiquity, their effects of delaying the onset of inactivation of voltage-gated sodium (Nav) channels have not been well-evaluated in all the mammalian Nav isoforms. Here we compare the well-studied Nav1.6 isoforms to the less-understood Nav1.1 in their responses to acute deltamethrin exposure. We used patch-clamp electrophysiology to record sodium currents encoded by either Nav1.1 or Nav1.6 channels stably expressed in HEK293 cells. Protocols evaluating both resting and use-dependent modification were employed. We found that exposure of both isoforms to 10μM deltamethrin significantly potentiated persistent and tail current densities without affecting peak transient current densities, and only Nav1.1 maintained these significant effects at 1μM deltamethrin. Window currents increased for both as well, and while only Nav1.6 displayed changes in activation slope and V1/2 of steady-state inactivation for peak currents, V1/2 of persistent current activation was hyperpolarized of ∼10mV by deltamethrin in Nav1.1 cells. Evaluating use-dependence, we found that deltamethrin again potentiated persistent and tail current densities in both isoforms, but only Nav1.6 demonstrated use-dependent enhancement, indicating the primary deltamethrin-induced effects on Nav1.1 channels are not use-dependent. Collectively, these data provide evidence that Nav1.1 is indeed vulnerable to deltamethrin modification at lower concentrations than Nav1.6, and this effect is primarily mediated during the resting state. These findings identify Nav1.1 as a novel target of pyrethroid exposure, which has major implications for the etiology of neuropsychiatric disorders associated with loss of Nav1.1-expressing inhibitory neurons."	"[Genetics and treatment of early infantile epileptic encephalopathies]. Epileptic encephalopathies (EE) are the group of progressive conditions with various etiologies that can produce neurocognitive deficit both per se and due to constant epileptiform discharges. Epileptic encephalopathies constitute about 15% of epilepsy in childhood and 40% of all seizures occurring in the first 3 years of life. Ten syndrome forms of EE are identified. Genetic factors contribute to 70-80% of all epileptic diseases and approximately 40% of idiopathic epilepsies have a monogenic mode of inheritance. Thirty-five genes of EE have been identified and the search is still continuing. The marked genetic heterogeneity of early EE, including 16 with autosomal-dominant-, 13 with autosomal-recessive-, 4 with X-linked recessive- and 2 with X-linked autosomal inheritance, was shown. The article describes differentiated approaches to the treatment of certain EE syndromes. Recent publications record the effectiveness of targeted therapy for certain forms of monogenic early EE (stiripentol in SCN1A mutations, diphenine in SCN8A mutations, levetiracetam in STXBP1 mutations). These results indicate the necessity for accurate diagnosis of genetic variants in early infantile EE for preventive actions in burdened families and for increasing the effectiveness of treatment. Эпилептические энцефалопатии (ЭЭ) - группа прогрессирующих заболеваний различной этиологии, которые проявляются нейрокогнитивным дефицитом и эпилептиформной активностью на электроэнцефалограмме. ЭЭ составляют около 15% от всех форм эпилепсии детского возраста и до 40% от всех эпилептических приступов, возникающих в первые 3 года жизни. Выделяют 10 синдромальных форм ЭЭ. Генетические факторы играют определенную роль в развитии патологии примерно у 70-80% пациентов, и не менее 40% всех идиопатических эпилепсий имеют моногенную природу. Идентифицировано 35 генов, ответственных за возникновение ЭЭ, и их поиск продолжается. Показана выраженная генетическая гетерогенность ранних ЭЭ, 16 из которых наследуются аутосомно-доминантно, 13 - аутосомно-рецессивно, 4 - Х-сцепленно рецессивно и 2 - Х-сцепленно доминантно. Приведены дифференцированные подходы к лечению отдельных синдромов ЭЭ. В публикациях последних лет показана эффективность таргетной терапии при некоторых моногенных формах ранних ЭЭ (стирипентола при мутациях в гене SCN1A, дифенина при мутациях в гене SCN8A, леветирацетама при мутациях в гене STXBP1). Полученные результаты исследований свидетельствуют о необходимости проведения точной диагностики генетического варианта ранних ЭЭ, что позволит не только осуществить профилактические мероприятия в отягощенной семье, но и повысить эффективность лечения. Эпилептические энцефалопатии (ЭЭ) — группа прогрессирующих заболеваний различной этиологии, которые проявляются нейрокогнитивным дефицитом и эпилептиформной активностью на электроэнцефалограмме. ЭЭ составляют около 15% от всех форм эпилепсии детского возраста и до 40% от всех эпилептических приступов, возникающих в первые 3 года жизни. Выделяют 10 синдромальных форм ЭЭ. Генетические факторы играют определенную роль в развитии патологии примерно у 70—80% пациентов, и не менее 40% всех идиопатических эпилепсий имеют моногенную природу. Идентифицировано 35 генов, ответственных за возникновение ЭЭ, и их поиск продолжается. Показана выраженная генетическая гетерогенность ранних ЭЭ, 16 из которых наследуются аутосомно-доминантно, 13 — аутосомно-рецессивно, 4 — Х-сцепленно рецессивно и 2 — Х-сцепленно доминантно. Приведены дифференцированные подходы к лечению отдельных синдромов ЭЭ. В публикациях последних лет показана эффективность таргетной терапии при некоторых моногенных формах ранних ЭЭ (стирипентола при мутациях в гене SCN1A, дифенина при мутациях в гене SCN8A, леветирацетама при мутациях в гене STXBP1). Полученные результаты исследований свидетельствуют о необходимости проведения точной диагностики генетического варианта ранних ЭЭ, что позволит не только осуществить профилактические мероприятия в отягощенной семье, но и повысить эффективность лечения."	"FGF14 is a regulator of KCNQ2/3 channels. KCNQ2/3 (Kv7.2/7.3) channels and voltage-gated sodium channels (VGSCs) are enriched in the axon initial segment (AIS) where they bind to ankyrin-G and coregulate membrane potential in central nervous system neurons. The molecular mechanisms supporting coordinated regulation of KCNQ and VGSCs and the cellular mechanisms governing KCNQ trafficking to the AIS are incompletely understood. Here, we show that fibroblast growth factor 14 (FGF14), previously described as a VGSC regulator, also affects KCNQ function and localization. FGF14 knockdown leads to a reduction of KCNQ2 in the AIS and a reduction in whole-cell KCNQ currents. FGF14 positively regulates KCNQ2/3 channels in a simplified expression system. FGF14 interacts with KCNQ2 at a site distinct from the FGF14-VGSC interaction surface, thus enabling the bridging of NaV1.6 and KCNQ2. These data implicate FGF14 as an organizer of channel localization in the AIS and provide insight into the coordination of KCNQ and VGSC conductances in the regulation of membrane potential."	"Remarkable alterations of Nav1.6 in reactive astrogliosis during epileptogenesis. Voltage-gated sodium channels (VGSCs) play a vital role in controlling neuronal excitability. Nav1.6 is the most abundantly expressed VGSCs subtype in the adult central nervous system and has been found to contribute to facilitate the hyperexcitability of neurons after electrical induction of status epilepticus (SE). To clarify the exact expression patterns of Nav1.6 during epileptogenesis, we examined the expression of Nav1.6 at protein and mRNA levels in two distinct animal models of temporal lobe epilepsy (TLE) including a post-SE model induced by kainic acid (KA) intrahippocampal injection and a kindling model evoked by pentylenetetrazole (PTZ). A prominent, seizure intensity-dependent increase of Nav1.6 expression in reactive astrocytes was observed in ipsilateral hippocampus of post-SE rats, reaching the peak at 21 days after SE, a time point during the latent stage of epileptogenesis. However, Nav1.6 with low expression level was selectively expressed in the hippocampal neurons rather than astrocytes in PTZ-kindled animals. This seizure-related increase of a VGSCs subtype in reactive astrocytes after SE may represent a new mechanism for signal communication between neuron and glia in the course of epileptogenesis, facilitating the neuronal hyperexcitability."	"SCN8A mutation in a child presenting with seizures and developmental delays. The SCN8A gene encodes the sodium voltage-gated channel alpha subunit 8. Mutations in this gene have been associated with early infantile epileptic encephalopathy type 13. With the use of whole-exome sequencing, a de novo missense mutation in SCN8A was identified in a 4-yr-old female who initially exhibited symptoms of epilepsy at the age of 5 mo that progressed to a severe condition with very little movement, including being unable to sit or walk on her own."	"De novo and inherited SCN8A epilepsy mutations detected by gene panel analysis. To determine the incidence of pathogenic SCN8A variants in a cohort of epilepsy patients referred for clinical genetic testing. We also investigated the contribution of SCN8A to autism spectrum disorder, intellectual disability, and neuromuscular disorders in individuals referred for clinical genetic testing at the same testing laboratory. Sequence data from 275 epilepsy panels screened by Emory Genetics Laboratory were reviewed for variants in SCN8A. Two additional cases with variants in SCN8A were ascertained from other testing laboratories. Parental samples were tested for variant segregation and clinical histories were examined. SCN8A variants detected from gene panel analyses for autism spectrum disorder, intellectual disability, and neuromuscular disorders were also examined. Five variants in SCN8A were identified in five individuals with epilepsy. Three variants were de novo, one was inherited from an affected parent, and one was inherited from an unaffected parent. Four of the individuals have epilepsy and developmental delay/intellectual disability. The remaining individual has a milder epilepsy presentation without cognitive impairment. We also identified an amino acid substitution at an evolutionarily conserved SCN8A residue in a patient who was screened on the autism spectrum disorder panel. Additionally, we examined the distribution of pathogenic SCN8A variants across the Nav1.6 channel and identified four distinct clusters of variants. These clusters are primarily located in regions of the channel that are important for the kinetics of channel inactivation. Variants in SCN8A may be responsible for a spectrum of epilepsies as well as other neurodevelopmental disorders without seizures. The predominant pathogenic mechanism appears to involve disruption of channel inactivation, leading to gain-of-function effects."	"Diagnostic Targeted Resequencing in 349 Patients with Drug-Resistant Pediatric Epilepsies Identifies Causative Mutations in 30 Different Genes. Targeted resequencing gene panels are used in the diagnostic setting to identify gene defects in epilepsy. We performed targeted resequencing using a 30-genes panel and a 95-genes panel in 349 patients with drug-resistant epilepsies beginning in the first years of life. We identified 71 pathogenic variants, 42 of which novel, in 30 genes, corresponding to 20.3% of the probands. In 66% of mutation positive patients, epilepsy onset occurred before the age of 6 months. The 95-genes panel allowed a genetic diagnosis in 22 (6.3%) patients that would have otherwise been missed using the 30-gene panel. About 50% of mutations were identified in genes coding for sodium and potassium channel components. SCN2A was the most frequently mutated gene followed by SCN1A, KCNQ2, STXBP1, SCN8A, CDKL5, and MECP2. Twenty-nine mutations were identified in 23 additional genes, most of them recently associated with epilepsy. Our data show that panels targeting about 100 genes represent the best cost-effective diagnostic option in pediatric drug-resistant epilepsies. They enable molecular diagnosis of atypical phenotypes, allowing to broaden phenotype-genotype correlations. Molecular diagnosis might influence patients' management and translate into better and specific treatment recommendations in some conditions."	"Altered gene expression profile in a mouse model of SCN8A encephalopathy. SCN8A encephalopathy is a severe, early-onset epilepsy disorder resulting from de novo gain-of-function mutations in the voltage-gated sodium channel Nav1.6. To identify the effects of this disorder on mRNA expression, RNA-seq was performed on brain tissue from a knock-in mouse expressing the patient mutation p.Asn1768Asp (N1768D). RNA was isolated from forebrain, cerebellum, and brainstem both before and after seizure onset, and from age-matched wildtype littermates. Altered transcript profiles were observed only in forebrain and only after seizures. The abundance of 50 transcripts increased more than 3-fold and 15 transcripts decreased more than 3-fold after seizures. The elevated transcripts included two anti-convulsant neuropeptides and more than a dozen genes involved in reactive astrocytosis and response to neuronal damage. There was no change in the level of transcripts encoding other voltage-gated sodium, potassium or calcium channels. Reactive astrocytosis was observed in the hippocampus of mutant mice after seizures. There is considerable overlap between the genes affected in this genetic model of epilepsy and those altered by chemically induced seizures, traumatic brain injury, ischemia, and inflammation. The data support the view that gain-of-function mutations of SCN8A lead to pathogenic alterations in brain function contributing to encephalopathy."	"FHF1 (FGF12) epileptic encephalopathy. Voltage-gated sodium channels (Navs) are mainstays of neuronal function, and mutations in the genes encoding CNS Navs (Nav1.1 [SCN1A], Nav1.2 [SCN2A], Nav1.3 [SCN3A], and Nav1.6 [SCN8A]) are causes of some of the most common and severe genetic epilepsies and epileptic encephalopathies (EE).<sup>1</sup> Fibroblast-growth-factor homologous factors (FHFs) compose a family of 4 proteins that interact with the C-terminal tails of Navs to modulate the channels' fast, and long-term, inactivations.<sup>2</sup>FHF2 mutation is a rare cause of generalized epilepsy with febrile seizures plus (GEFS+).<sup>3</sup> Recently, a de novo FHF1 mutation (p.R52H) was reported in early-onset EE in 2 siblings.<sup>4</sup> We report 3 patients from unrelated families with the same FHF1 p.R52H mutation. The 5 cases together frame the FHF1 R52H EE from infancy to adulthood. As discussed below, this gain-of-function disease may be amenable to personalized therapy."	"Cardiac arrhythmia in a mouse model of sodium channel SCN8A epileptic encephalopathy. Patients with early infantile epileptic encephalopathy (EIEE) are at increased risk for sudden unexpected death in epilepsy (SUDEP). De novo mutations of the sodium channel gene SCN8A, encoding the sodium channel Nav1.6, result in EIEE13 (OMIM 614558), which has a 10% risk of SUDEP. Here, we investigated the cardiac phenotype of a mouse model expressing the gain of function EIEE13 patient mutation p.Asn1768Asp in Scn8a (Nav1.6-N1768D). We tested Scn8a<sup> N1768D/+ </sup> mice for alterations in cardiac excitability. We observed prolongation of the early stages of action potential (AP) repolarization in mutant myocytes vs. controls. Scn8a<sup> N1768D/+ </sup> myocytes were hyperexcitable, with a lowered threshold for AP firing, increased incidence of delayed afterdepolarizations, increased calcium transient duration, increased incidence of diastolic calcium release, and ectopic contractility. Calcium transient duration and diastolic calcium release in the mutant myocytes were tetrodotoxin-sensitive. A selective inhibitor of reverse mode Na/Ca exchange blocked the increased incidence of diastolic calcium release in mutant cells. Scn8a<sup> N1768D/+ </sup> mice exhibited bradycardia compared with controls. This difference in heart rate dissipated after administration of norepinephrine, and there were no differences in heart rate in denervated ex vivo hearts, implicating parasympathetic hyperexcitability in the Scn8a<sup> N1768D/+ </sup> animals. When challenged with norepinephrine and caffeine to simulate a catecholaminergic surge, Scn8a<sup> N1768D/+ </sup> mice showed ventricular arrhythmias. Two of three mutant mice under continuous ECG telemetry recording experienced death, with severe bradycardia preceding asystole. Thus, in addition to central neuron hyperexcitability, Scn8a<sup> N1768D/+ </sup> mice have cardiac myoycte and parasympathetic neuron hyperexcitability. Simultaneous dysfunction in these systems may contribute to SUDEP associated with mutations of Scn8a."	"Precision medicine in genetic epilepsies: break of dawn? Therapy with current antiepileptic drugs aims at reducing the likelihood of seizure occurrence rather than influencing the underlying disease process. Therefore, antiepileptic drugs have an anticonvulsant rather than antiepileptic property. Areas covered: The increasing identification of genetic causes for epilepsy over the recent years improves the understanding of the underlying epileptogenic process and allows for the possibility of directed therapeutic approaches. An ideal antiepileptic therapy consists of a drug which is able to influence the functional changes caused by a specific pathogenic variant. In this review we will describe the current precision medicine approaches in genetic epilepsies in reference to the identified genetic etiologies. References for this review were identified through searches of PubMed and the authors' own files. Expert commentary: Currently established or investigated precision medicine treatments include the ketogenic diet in patients with GLUT1 deficiency, sodium channel blockers in patients with KCNQ2, SCN2A and SCN8A mutations as well as mTOR-inhibitors in mTORopathies. These predominantly represent already available treatments that were repurposed for use in epilepsy. The development of new therapeutic agents aiming at targets identified in genetic epilepsies will advance epilepsy treatment considerably."	"Gene Panel Testing in Epileptic Encephalopathies and Familial Epilepsies. In recent years, several genes have been causally associated with epilepsy. However, making a genetic diagnosis in a patient can still be difficult, since extensive phenotypic and genetic heterogeneity has been observed in many monogenic epilepsies. This study aimed to analyze the genetic basis of a wide spectrum of epilepsies with age of onset spanning from the neonatal period to adulthood. A gene panel targeting 46 epilepsy genes was used on a cohort of 216 patients consecutively referred for panel testing. The patients had a range of different epilepsies from benign neonatal seizures to epileptic encephalopathies (EEs). Potentially causative variants were evaluated by literature and database searches, submitted to bioinformatic prediction algorithms, and validated by Sanger sequencing. If possible, parents were included for segregation analysis. We identified a presumed disease-causing variant in 49 (23%) of the 216 patients. The variants were found in 19 different genes including SCN1A, STXBP1, CDKL5, SCN2A, SCN8A, GABRA1, KCNA2, and STX1B. Patients with neonatal-onset epilepsies had the highest rate of positive findings (57%). The overall yield for patients with EEs was 32%, compared to 17% among patients with generalized epilepsies and 16% in patients with focal or multifocal epilepsies. By the use of a gene panel consisting of 46 epilepsy genes, we were able to find a disease-causing genetic variation in 23% of the analyzed patients. The highest yield was found among patients with neonatal-onset epilepsies and EEs."	"Understanding Genotypes and Phenotypes in Epileptic Encephalopathies. Epileptic encephalopathies are severe often intractable seizure disorders where epileptiform abnormalities contribute to a progressive disturbance in brain function. Often, epileptic encephalopathies start in childhood and are accompanied by developmental delay and various neurological and non-neurological comorbidities. In recent years, this concept has become virtually synonymous with a group of severe childhood epilepsies including West syndrome, Lennox-Gastaut syndrome, Dravet syndrome, and several other severe childhood epilepsies for which genetic factors are increasingly recognized. In the last 5 years, the field has seen a virtual explosion of gene discovery, raising the number of bona fide genes and possible candidate genes for epileptic encephalopathies to more than 70 genes, explaining 20-25% of all cases with severe early-onset epilepsies that had otherwise no identifiable causes. This review will focus on the phenotypic variability as a characteristic aspect of genetic epilepsies. For many genetic epilepsies, the phenotypic presentation can be broad, even in patients with identical genetic alterations. Furthermore, patients with different genetic etiologies can have seemingly similar clinical presentations, such as in Dravet syndrome. While most patients carry mutations in SCN1A, similar phenotypes can be seen in patients with mutations in PCDH19, CHD2, SCN8A, or in rare cases GABRA1 and STXBP1. In addition to the genotypic and phenotypic heterogeneity, both benign phenotypes and severe encephalopathies have been recognized in an increasing number of genetic epilepsies, raising the question whether these conditions represent a fluid continuum or distinct entities."	"Gastrodin Reduces the Severity of Status Epilepticus in the Rat Pilocarpine Model of Temporal Lobe Epilepsy by Inhibiting Nav1.6 Sodium Currents. Temporal lobe epilepsy (TLE) is one of the most refractory types of adult epilepsy, and treatment options remain unsatisfactory. Gastrodin (GAS), a phenolic glucoside used in Chinese herbal medicine and derived from Gastrodia elata Blume, has been shown to have remarkable anticonvulsant effects on various models of epilepsy in vivo. However, the mechanisms of GAS as an anticonvulsant drug remain to be established. By utilizing a combination of behavioral surveys, immunofluorescence and electrophysiological recordings, the present study characterized the anticonvulsant effect of GAS in a pilocarpine-induced status epilepticus (SE) rat model of TLE and explored the underlying cellular mechanisms. We found that GAS pretreatment effectively reduced the severity of SE in the acute phase of TLE. Moreover, GAS protected medial entorhinal cortex (mEC) layer III neurons from neuronal death and terminated the SE-induced bursting discharge of mEC layer II neurons from SE-experienced rats. Furthermore, the current study revealed that GAS prevented the pilocarpine-induced enhancement of Nav1.6 currents (persistent (INaP) and resurgent (INaR) currents), which were reported to play a critical role in the generation of bursting spikes. Consistent with this result, GAS treatment reversed the expression of Nav1.6 protein in SE-experienced EC neurons. These results suggest that the inhibition of Nav1.6 sodium currents may be the underlying mechanism of GAS's anticonvulsant properties."	"SCN8A Epileptic Encephalopathy: Detection of Fetal Seizures Guides Multidisciplinary Approach to Diagnosis and Treatment. SCN8A mutations are rare and cause a phenotypically heterogeneous early onset epilepsy known as early infantile epileptic encephalopathy type 13 (EIEE13, OMIM #614558). There are currently no clear genotype-phenotype correlations to help guide patient counseling and management. We describe a patient with EIEE13 (de novo heterozygous pathogenic mutation in SCN8A - p.Ile240Val (ATT&gt;GTT)) who presented prenatally with maternally reported intermittent, rhythmic movements that, when observed on ultrasound, were concerning for fetal seizures. Ultrasound also revealed abnormal developmental states. With maternal administration of levetiracetam, the rhythmic fetal movements stopped. After birth, the patient developed treatment-refractory multi-focal epilepsy confirmed by electroencephalogram. Neuroimaging revealed restricted diffusion in the superior cerebellar peduncles, a finding not reported previously in EIEE13. This is the first report of EIEE13 associated with clinical prenatal-onset seizures. Ultrasonography can be useful for identifying fetal seizures, which may be treatable in utero. Ideally, the clinical approach to fetal seizures should involve a multidisciplinary team spanning the pre- and postnatal course to expedite early diagnosis and optimize management, as illustrated by this patient."	"Single-Molecule Imaging of Nav1.6 on the Surface of Hippocampal Neurons Reveals Somatic Nanoclusters. Voltage-gated sodium (Nav) channels are responsible for the depolarizing phase of the action potential in most nerve cells, and Nav channel localization to the axon initial segment is vital to action potential initiation. Nav channels in the soma play a role in the transfer of axonal output information to the rest of the neuron and in synaptic plasticity, although little is known about Nav channel localization and dynamics within this neuronal compartment. This study uses single-particle tracking and photoactivation localization microscopy to analyze cell-surface Nav1.6 within the soma of cultured hippocampal neurons. Mean-square displacement analysis of individual trajectories indicated that half of the somatic Nav1.6 channels localized to stable nanoclusters ∼230 nm in diameter. Strikingly, these domains were stabilized at specific sites on the cell membrane for &gt;30 min, notably via an ankyrin-independent mechanism, indicating that the means by which Nav1.6 nanoclusters are maintained in the soma is biologically different from axonal localization. Nonclustered Nav1.6 channels showed anomalous diffusion, as determined by mean-square-displacement analysis. High-density single-particle tracking of Nav channels labeled with photoactivatable fluorophores in combination with Bayesian inference analysis was employed to characterize the surface nanoclusters. A subpopulation of mobile Nav1.6 was observed to be transiently trapped in the nanoclusters. Somatic Nav1.6 nanoclusters represent a new, to our knowledge, type of Nav channel localization, and are hypothesized to be sites of localized channel regulation. "	"Reassembly of Excitable Domains after CNS Axon Regeneration. Action potential initiation and propagation in myelinated axons require ion channel clustering at axon initial segments (AIS) and nodes of Ranvier. Disruption of these domains after injury impairs nervous system function. Traditionally, injured CNS axons are considered refractory to regeneration, but some recent approaches challenge this view by showing robust long-distance regeneration. However, whether these approaches allow remyelination and promote the reestablishment of AIS and nodes of Ranvier is unknown. Using mouse optic nerve crush as a model for CNS traumatic injury, we performed a detailed analysis of AIS and node disruption after nerve crush. We found significant disruption of AIS and loss of nodes within days of the crush, and complete loss of nodes 1 week after injury. Genetic deletion of the tumor suppressor phosphatase and tensin homolog (Pten) in retinal ganglion cells (RGCs), coupled with stimulation of RGCs by inflammation and cAMP, dramatically enhanced regeneration. With this treatment, we found significant reestablishment of RGC AIS, remyelination, and even reassembly of nodes in regions proximal, within, and distal to the crush site. Remyelination began near the retina, progressed distally, and was confirmed by electron microscopy. Although axons grew rapidly, remyelination and nodal ion channel clustering was much slower. Finally, genetic deletion of ankyrinG from RGCs to block AIS reassembly did not affect axon regeneration, indicating that preservation of neuronal polarity is not required for axon regeneration. Together, our results demonstrate, for the first time, that regenerating CNS axons can be remyelinated and reassemble new AIS and nodes of Ranvier. We show, for the first time, that regenerated CNS axons have the capacity to both remyelinate and reassemble the axon initial segments and nodes of Ranvier necessary for rapid and efficient action potential propagation."	"The SCN8A encephalopathy mutation p.Ile1327Val displays elevated sensitivity to the anticonvulsant phenytoin. SCN8A encephalopathy (early infantile epileptic encephalopathy; EIEE13) is caused by gain-of-function mutations resulting in hyperactivity of the voltage-gated sodium channel Nav 1.6. The channel is concentrated at the axon initial segment (AIS) and is involved in establishing neuronal excitability. Clinical features of SCN8A encephalopathy include seizure onset between 0 and 18 months of age, intellectual disability, and developmental delay. Seizures are often refractory to treatment with standard antiepileptic drugs, and sudden unexpected death in epilepsy (SUDEP) has been reported in approximately 10% of patients. In a recent study, high doses of phenytoin were effective in four patients with SCN8A encephalopathy. In view of this observation, we have investigated the relationship between the functional effect of the SCN8A mutation p.Ile1327Val and its response to phenytoin. The mutation was introduced into the Scn8a cDNA by site-directed mutagenesis. Channel activity was characterized in transfected ND7/23 cells. The effects of phenytoin (100 μm) on mutant and wild-type (WT) channels were compared. Channel activation parameters were shifted in a hyperpolarizing direction in the mutant channel, whereas inactivation parameters were shifted in a depolarizing direction, increasing Na channel window current. Macroscopic current decay was slowed in I1327V channels, indicating an impairment in the transition from open state to inactivated state. Channel deactivation was also delayed, allowing more channels to remain in the open state. Phenytoin (100 μm) resulted in hyperpolarized activation and inactivation curves as well as greater tonic block and use-dependent block of I1327V mutant channels relative to WT. SCN8A - I1327V is a gain-of-function mutation with altered features that are predicted to increase neuronal excitability and seizure susceptibility. Phenytoin is an effective inhibitor of the mutant channel and may be of use in treating patients with gain-of-function mutations of SCN8A."	"RING1B contributes to Ewing sarcoma development by repressing the NaV1.6 sodium channel and the NF-κB pathway, independently of the fusion oncoprotein. Ewing sarcoma (ES) is an aggressive tumor defined by EWSR1 gene fusions that behave as an oncogene. Here we demonstrate that RING1B is highly expressed in primary ES tumors, and its expression is independent of the fusion oncogene. RING1B-depleted ES cells display an expression profile enriched in genes functionally involved in hematological development but RING1B depletion does not induce cellular differentiation. In ES cells, RING1B directly binds the SCN8A sodium channel promoter and its depletion results in enhanced Nav1.6 expression and function. The signaling pathway most significantly modulated by RING1B is NF-κB. RING1B depletion results in enhanced p105/p50 expression, which sensitizes ES cells to apoptosis by FGFR/SHP2/STAT3 blockade. Reduced NaV1.6 function protects ES cells from apoptotic cell death by maintaining low NF-κB levels. Our findings identify RING1B as a trait of the cell-of-origin and provide a potential targetable vulnerability."	"SCN8A encephalopathy: Research progress and prospects. On April 21, 2015, the first SCN8A Encephalopathy Research Group convened in Washington, DC, to assess current research into clinical and pathogenic features of the disorder and prepare an agenda for future research collaborations. The group comprised clinical and basic scientists and representatives of patient advocacy groups. SCN8A encephalopathy is a rare disorder caused by de novo missense mutations of the sodium channel gene SCN8A, which encodes the neuronal sodium channel Nav 1.6. Since the initial description in 2012, approximately 140 affected individuals have been reported in publications or by SCN8A family groups. As a result, an understanding of the severe impact of SCN8A mutations is beginning to emerge. Defining a genetic epilepsy syndrome goes beyond identification of molecular etiology. Topics discussed at this meeting included (1) comparison between mutations of SCN8A and the SCN1A mutations in Dravet syndrome, (2) biophysical properties of the Nav 1.6 channel, (3) electrophysiologic effects of patient mutations on channel properties, (4) cell and animal models of SCN8A encephalopathy, (5) drug screening strategies, (6) the phenotypic spectrum of SCN8A encephalopathy, and (7) efforts to develop a bioregistry. A panel discussion of gaps in bioregistry, biobanking, and clinical outcomes data was followed by a planning session for improved integration of clinical and basic science research. Although SCN8A encephalopathy was identified only recently, there has been rapid progress in functional analysis and phenotypic classification. The focus is now shifting from identification of the underlying molecular cause to the development of strategies for drug screening and prioritized patient care."	"Aberrant epilepsy-associated mutant Nav1.6 sodium channel activity can be targeted with cannabidiol. Mutations in brain isoforms of voltage-gated sodium channels have been identified in patients with distinct epileptic phenotypes. Clinically, these patients often do not respond well to classic anti-epileptics and many remain refractory to treatment. Exogenous as well as endogenous cannabinoids have been shown to target voltage-gated sodium channels and cannabidiol has recently received attention for its potential efficacy in the treatment of childhood epilepsies. In this study, we further investigated the ability of cannabinoids to modulate sodium currents from wild-type and epilepsy-associated mutant voltage-gated sodium channels. We first determined the biophysical consequences of epilepsy-associated missense mutations in both Nav1.1 (arginine 1648 to histidine and asparagine 1788 to lysine) and Nav1.6 (asparagine 1768 to aspartic acid and leucine 1331 to valine) by obtaining whole-cell patch clamp recordings in human embryonic kidney 293T cells with 200 μM Navβ4 peptide in the pipette solution to induce resurgent sodium currents. Resurgent sodium current is an atypical near threshold current predicted to increase neuronal excitability and has been implicated in multiple disorders of excitability. We found that both mutations in Nav1.6 dramatically increased resurgent currents while mutations in Nav1.1 did not. We then examined the effects of anandamide and cannabidiol on peak transient and resurgent currents from wild-type and mutant channels. Interestingly, we found that cannabidiol can preferentially target resurgent sodium currents over peak transient currents generated by wild-type Nav1.6 as well as the aberrant resurgent and persistent current generated by Nav1.6 mutant channels. To further validate our findings, we examined the effects of cannabidiol on endogenous sodium currents from striatal neurons, and similarly we found an inhibition of resurgent and persistent current by cannabidiol. Moreover, current clamp recordings show that cannabidiol reduces overall action potential firing of striatal neurons. These findings suggest that cannabidiol could be exerting its anticonvulsant effects, at least in part, through its actions on voltage-gated sodium channels, and resurgent current may be a promising therapeutic target for the treatment of epilepsy syndromes."	"Autosomal dominant SCN8A mutation with an unusually mild phenotype. Mutations in SCN8A, coding for the voltage-gated sodium channel Nav 1.6, have been described in relation to infantile onset epilepsy with developmental delay and cognitive impairment, in particular early onset epileptic encephalopathy (EIEE) type 13. Here we report an infant and his father with early onset focal epileptic seizures but without cognitive or neurological impairment in whom next generation sequence analysis identified a heterozygous mutation (c.5630A &gt; G, p. (Asn1877Ser)) in the SCN8A gene. This mutation, confirmed by Sanger sequence analysis, affects a highly conserved amino acid and in silico tools predicts that it may be pathogenic. The reported infant has a normal developmental profile at 16-month follow-up. His father also had normal development and has no cognitive impairment at 42 years. This is the second known SCN8A mutation associated with a phenotype of benign familial infantile epilepsy. Good seizure control was achieved in our patients with sodium channel blockers. Based on our proband and a recently described group of families with benign familial infantile epilepsy and SCN8A variant we suggest expanding testing to patients with infantile epilepsy and no cognitive impairment. In addition, the same SCN8A variant (c.5630A &gt; G, p. (Asn1877Ser)) is also found in patients with epilepsy and developmental delay highlighting the phenotypic variability and the possible role of other protective genetic factors."	"Sodium channel slow inactivation interferes with open channel block. Mutations in the voltage-gated sodium channel Nav1.7 are linked to inherited pain syndromes such as erythromelalgia (IEM) and paroxysmal extreme pain disorder (PEPD). PEPD mutations impair Nav1.7 fast inactivation and increase persistent currents. PEPD mutations also increase resurgent currents, which involve the voltage-dependent release of an open channel blocker. In contrast, IEM mutations, whenever tested, leave resurgent currents unchanged. Accordingly, the IEM deletion mutation L955 (ΔL955) fails to produce resurgent currents despite enhanced persistent currents, which have hitherto been considered a prerequisite for resurgent currents. Additionally, ΔL955 exhibits a prominent enhancement of slow inactivation (SI). We introduced mutations into Nav1.7 and Nav1.6 that either enhance or impair SI in order to investigate their effects on resurgent currents. Our results show that enhanced SI is accompanied by impaired resurgent currents, which suggests that SI may interfere with open-channel block."	"Gain-of-function FHF1 mutation causes early-onset epileptic encephalopathy with cerebellar atrophy. Voltage-gated sodium channel (Nav)-encoding genes are among early-onset epileptic encephalopathies (EOEE) targets, suggesting that other genes encoding Nav-binding proteins, such as fibroblast growth factor homologous factors (FHFs), may also play roles in these disorders. To identify additional genes for EOEE, we performed whole-exome sequencing in a family quintet with 2 siblings with a lethal disease characterized by EOEE and cerebellar atrophy. The pathogenic nature and functional consequences of the identified sequence alteration were determined by electrophysiologic studies in vitro and in vivo. A de novo heterozygous missense mutation was identified in the FHF1 gene (FHF1AR114H, FHF1BR52H) in the 2 affected siblings. The mutant FHF1 proteins had a strong gain-of-function phenotype in transfected Neuro2A cells, enhancing the depolarizing shifts in Nav1.6 voltage-dependent fast inactivation, predicting increased neuronal excitability. Surprisingly, the gain-of-function effect is predicted to result from weaker interaction of mutant FHF1 with the Nav cytoplasmic tail. Transgenic overexpression of mutant FHF1B in zebrafish larvae enhanced epileptiform discharges, demonstrating the epileptic potential of this FHF1 mutation in the affected children. Our data demonstrate that gain-of-function FHF mutations can cause neurologic disorder, and expand the repertoire of genetic causes (FHF1) and mechanisms (altered Nav gating) underlying EOEE and cerebellar atrophy."	"Functional reconstitution of rat Nav1.6 sodium channels in vitro for studies of pyrethroid action. The ability to reconstitute sodium channel function and pharmacology in vitro using cloned subunits of known structure has greatly enhanced our understanding of the action of pyrethroid insecticides at this target and the structural determinants of resistance and interspecies selectivity. However, the use of reconstituted channels raises three critical questions: (1) Which subunits and subunit combinations should be used? (2) Which heterologous expression system is preferred? (3) Which combination of subunits and expression system best represents the function of native neuronal channels in the organism of interest? This review considers these questions from the perspective of recent research in this laboratory on the action of pyrethroid insecticides on rat Nav1.6 sodium channels by comparing the effects of heteroligomeric complex composition on channel function and insecticide response when channels are expressed in either Xenopus oocytes or stably-transformed HEK293 cells. These comparisons provide new insight into the influence of cellular context on the functional and pharmacological properties of expressed channels, the modulatory effects of sodium channel auxiliary subunits on the action of pyrethroids, and the relative fidelity of the Xenopus oocyte and HEK293 cell expression systems as model systems for studying of channel function and pyrethroid action."	"β1-Adrenergic blocker bisoprolol reverses down-regulated ion channels in sinoatrial node of heart failure rats. Bisoprolol, an antagonist of β1-adrenergic receptors, is effective in reducing the morbidity and mortality in patients with heart failure (HF). It has been found that HF is accompanied with dysfunction of the sinoatrial node (SAN). However, whether bisoprolol reverses the decreased SAN function in HF and how the relevant ion channels in SAN change were relatively less studied. SAN function and messenger RNA (mRNA) expression of sodium channels and hyperpolarization-activated cyclic nucleotide-gated (HCN) channel subunits were assessed in sham-operated rats, abdominal arterio-venous shunt (volume overload)-induced HF rats, and bisoprolol- treated HF rats. SAN cells of rats were isolated by laser capture microdissection. Quantitative real-time PCR analysis was used to quantify mRNA expression of sodium channels and HCN channel subunits in SAN. Intrinsic heart rate declined and sinus node recovery time prolonged in HF rats, indicating the suppressed SAN function, which could be improved by bisoprolol treatment. Nav1.1, Nav1.6, and HCN4 mRNA expressions were reduced in SAN in HF rats compared with that in control rats. Treatment with bisoprolol could reverse both the SAN function and the Nav1.1, Nav1.6, and HCN4 mRNA expression partially. These data indicated that bisoprolol is effective in HF treatment partially due to improved SAN function by reversing the down-regulation of sodium channels (Nav1.1 and Nav1.6) and HCN channel (HCN4) subunits in SAN in failing hearts. "	"Identification of Amino Acid Residues in Fibroblast Growth Factor 14 (FGF14) Required for Structure-Function Interactions with Voltage-gated Sodium Channel Nav1.6. The voltage-gated Na(+) (Nav) channel provides the basis for electrical excitability in the brain. This channel is regulated by a number of accessory proteins including fibroblast growth factor 14 (FGF14), a member of the intracellular FGF family. In addition to forming homodimers, FGF14 binds directly to the Nav1.6 channel C-tail, regulating channel gating and expression, properties that are required for intrinsic excitability in neurons. Seeking amino acid residues with unique roles at the protein-protein interaction interface (PPI) of FGF14·Nav1.6, we engineered model-guided mutations of FGF14 and validated their impact on the FGF14·Nav1.6 complex and the FGF14:FGF14 dimer formation using a luciferase assay. Divergence was found in the β-9 sheet of FGF14 where an alanine (Ala) mutation of Val-160 impaired binding to Nav1.6 but had no effect on FGF14:FGF14 dimer formation. Additional analysis revealed also a key role of residues Lys-74/Ile-76 at the N-terminal of FGF14 in the FGF14·Nav1.6 complex and FGF14:FGF14 dimer formation. Using whole-cell patch clamp electrophysiology, we demonstrated that either the FGF14(V160A) or the FGF14(K74A/I76A) mutation was sufficient to abolish the FGF14-dependent regulation of peak transient Na(+) currents and the voltage-dependent activation and steady-state inactivation of Nav1.6; but only V160A with a concomitant alanine mutation at Tyr-158 could impede FGF14-dependent modulation of the channel fast inactivation. Intrinsic fluorescence spectroscopy of purified proteins confirmed a stronger binding reduction of FGF14(V160A) to the Nav1.6 C-tail compared with FGF14(K74A/I76A) Altogether these studies indicate that the β-9 sheet and the N terminus of FGF14 are well positioned targets for drug development of PPI-based allosteric modulators of Nav channels. "	"Improving diagnosis and broadening the phenotypes in early-onset seizure and severe developmental delay disorders through gene panel analysis. We sought to investigate the diagnostic yield and mutation spectrum in previously reported genes for early-onset epilepsy and disorders of severe developmental delay. In 400 patients with these disorders with no known underlying aetiology and no major structural brain anomaly, we analysed 46 genes using a combination of targeted sequencing on an Illumina MiSeq platform and targeted, exon-level microarray copy number analysis. We identified causative mutations in 71/400 patients (18%). The diagnostic rate was highest among those with seizure onset within the first two months of life (39%), although overall it was similar in those with and without seizures. The most frequently mutated gene was SCN2A (11 patients, 3%). Other recurrently mutated genes included CDKL5, KCNQ2, SCN8A (six patients each), FOXG1, MECP2, SCN1A, STXBP1 (five patients each), KCNT1, PCDH19, TCF4 (three patients each) and ATP1A3, PRRT2 and SLC9A6 (two patients each). Mutations in EHMT1, GABRB3, LGI1, MBD5, PIGA, UBE3A and ZEB2 were each found in single patients. We found mutations in a number of genes in patients where either the electroclinical features or dysmorphic phenotypes were atypical for the identified gene. In only 11 cases (15%) had the clinician sufficient certainty to specify the mutated gene as the likely cause before testing. Our data demonstrate the considerable utility of a gene panel approach in the diagnosis of patients with early-onset epilepsy and severe developmental delay disorders., They provide further insights into the phenotypic spectrum and genotype-phenotype correlations for a number of the causative genes and emphasise the value of exon-level copy number testing in their analysis."	"Cleavage of Na(+) channels by calpain increases persistent Na(+) current and promotes spasticity after spinal cord injury. Upregulation of the persistent sodium current (I(NaP)) in motoneurons contributes to the development of spasticity after spinal cord injury (SCI). We investigated the mechanisms that regulate I(NaP) and observed elevated expression of voltage-gated sodium (Nav) 1.6 channels in spinal lumbar motoneurons of adult rats with SCI. Furthermore, immunoblots revealed a proteolysis of Nav channels, and biochemical assays identified calpain as the main proteolytic factor. Calpain-dependent cleavage of Nav channels after neonatal SCI was associated with an upregulation of I(NaP) in motoneurons. Similarly, the calpain-dependent cleavage of Nav1.6 channels expressed in human embryonic kidney (HEK) 293 cells caused the upregulation of I(NaP). The pharmacological inhibition of calpain activity by MDL28170 reduced the cleavage of Nav channels, I(NaP) in motoneurons and spasticity in rats with SCI. Similarly, the blockade of I(NaP) by riluzole alleviated spasticity. This study demonstrates that Nav channel expression in lumbar motoneurons is altered after SCI, and it shows a tight relationship between the calpain-dependent proteolysis of Nav1.6 channels, the upregulation of I(NaP) and spasticity."	"Spectrum of SCN8A-Related Epilepsy. Investigators from the EuroEPINOMICS European research consortium studied 17 patients with epileptic encephalopathy due to SCN8A mutations and reported the specific genetic and phenotypic features. "	"Pathogenic mechanism of recurrent mutations of SCN8A in epileptic encephalopathy. The early infantile epileptic encephalopathy type 13 (EIEE13, OMIM #614558) results from de novo missense mutations of SCN8A encoding the voltage-gated sodium channel Nav1.6. More than 20% of patients have recurrent mutations in residues Arg1617 or Arg1872. Our goal was to determine the functional effects of these mutations on channel properties. Clinical exome sequencing was carried out on patients with early-onset seizures, developmental delay, and cognitive impairment. Two mutations identified here, p.Arg1872Leu and p.Arg1872Gln, and two previously identified mutations, p.Arg1872Trp and p.Arg1617Gln, were introduced into Nav1.6 cDNA, and effects on electrophysiological properties were characterized in transfected ND7/23 cells. Interactions with FGF14, G-protein subunit Gβγ, and sodium channel subunit β1 were assessed by coimmunoprecipitation. We identified two patients with the novel mutation p.Arg1872Leu and one patient with the recurrent mutation p.Arg1872Gln. The three mutations of Arg1872 and the mutation of Arg1617 all impaired the sodium channel transition from open state to inactivated state, resulting in channel hyperactivity. Other observed abnormalities contributing to elevated channel activity were increased persistent current, increased peak current density, hyperpolarizing shift in voltage dependence of activation, and depolarizing shift in steady-state inactivation. Protein interactions were not affected. Recurrent mutations at Arg1617 and Arg1872 lead to elevated Nav1.6 channel activity by impairing channel inactivation. Channel hyperactivity is the major pathogenic mechanism for gain-of-function mutations of SCN8A. EIEE13 differs mechanistically from Dravet syndrome, which is caused by loss-of-function mutations of SCN1A. This distinction has important consequences for selection of antiepileptic drugs and the development of gene- and mutation-specific treatments."	"Single amino acid deletion in transmembrane segment D4S6 of sodium channel Scn8a (Nav1.6) in a mouse mutant with a chronic movement disorder. Mutations of the neuronal sodium channel gene SCN8A are associated with lethal movement disorders in the mouse and with human epileptic encephalopathy. We describe a spontaneous mouse mutation, Scn8a(9J), that is associated with a chronic movement disorder with early onset tremor and adult onset dystonia. Scn8a(9J) homozygotes have a shortened lifespan, with only 50% of mutants surviving beyond 6 months of age. The 3 bp in-frame deletion removes 1 of the 3 adjacent isoleucine residues in transmembrane segment DIVS6 of Nav1.6 (p.Ile1750del). The altered helical orientation of the transmembrane segment displaces pore-lining amino acids with important roles in channel activation and inactivation. The predicted impact on channel activity was confirmed by analysis of cerebellar Purkinje neurons from mutant mice, which lack spontaneous and induced repetitive firing. In a heterologous expression system, the activity of the mutant channel was below the threshold for detection. Observations of decreased nerve conduction velocity and impaired behavior in an open field are also consistent with reduced activity of Nav1.6. The Nav1.6Δ1750 protein is only partially glycosylated. The abundance of mutant Nav1.6 is reduced at nodes of Ranvier and is not detectable at the axon initial segment. Despite a severe reduction in channel activity, the lifespan and motor function of Scn8a(9J/9J) mice are significantly better than null mutants lacking channel protein. The clinical phenotype of this severe hypomorphic mutant expands the spectrum of Scn8a disease to include a recessively inherited, chronic and progressive movement disorder."	"Effects of the β1 auxiliary subunit on modification of Rat Na(v)1.6 sodium channels expressed in HEK293 cells by the pyrethroid insecticides tefluthrin and deltamethrin. We expressed rat Nav1.6 sodium channels with or without the rat β1 subunit in human embryonic kidney (HEK293) cells and evaluated the effects of the pyrethroid insecticides tefluthrin and deltamethrin on whole-cell sodium currents. In assays with the Nav1.6 α subunit alone, both pyrethroids prolonged channel inactivation and deactivation and shifted the voltage dependence of channel activation and steady-state inactivation toward hyperpolarization. Maximal shifts in activation were ~18 mV for tefluthrin and ~24 mV for deltamethrin. These compounds also caused hyperpolarizing shifts of ~10-14 mV in the voltage dependence of steady-state inactivation and increased in the fraction of sodium current that was resistant to inactivation. The effects of pyrethroids on the voltage-dependent gating greatly increased the size of sodium window currents compared to unmodified channels; modified channels exhibited increased probability of spontaneous opening at membrane potentials more negative than the normal threshold for channel activation and incomplete channel inactivation. Coexpression of Nav1.6 with the β1 subunit had no effect on the kinetic behavior of pyrethroid-modified channels but had divergent effects on the voltage-dependent gating of tefluthrin- or deltamethrin-modified channels, increasing the size of tefluthrin-induced window currents but decreasing the size of corresponding deltamethrin-induced currents. Unexpectedly, the β1 subunit did not confer sensitivity to use-dependent channel modification by either tefluthrin or deltamethrin. We conclude from these results that functional reconstitution of channels in vitro requires careful attention to the subunit composition of channel complexes to ensure that channels in vitro are faithful functional and pharmacological models of channels in neurons."	"Benign infantile seizures and paroxysmal dyskinesia caused by an SCN8A mutation. Benign familial infantile seizures (BFIS), paroxysmal kinesigenic dyskinesia (PKD), and their combination-known as infantile convulsions and paroxysmal choreoathetosis (ICCA)-are related autosomal dominant diseases. PRRT2 (proline-rich transmembrane protein 2 gene) has been identified as the major gene in all 3 conditions, found to be mutated in 80 to 90% of familial and 30 to 35% of sporadic cases. We searched for the genetic defect in PRRT2-negative, unrelated families with BFIS or ICCA using whole exome or targeted gene panel sequencing, and performed a detailed cliniconeurophysiological workup. In 3 families with a total of 16 affected members, we identified the same, cosegregating heterozygous missense mutation (c.4447G&gt;A; p.E1483K) in SCN8A, encoding a voltage-gated sodium channel. A founder effect was excluded by linkage analysis. All individuals except 1 had normal cognitive and motor milestones, neuroimaging, and interictal neurological status. Fifteen affected members presented with afebrile focal or generalized tonic-clonic seizures during the first to second year of life; 5 of them experienced single unprovoked seizures later on. One patient had seizures only at school age. All patients stayed otherwise seizure-free, most without medication. Interictal electroencephalogram (EEG) was normal in all cases but 2. Five of 16 patients developed additional brief paroxysmal episodes in puberty, either dystonic/dyskinetic or &quot;shivering&quot; attacks, triggered by stretching, motor initiation, or emotional stimuli. In 1 case, we recorded typical PKD spells by video-EEG-polygraphy, documenting a cortical involvement. Our study establishes SCN8A as a novel gene in which a recurrent mutation causes BFIS/ICCA, expanding the clinical-genetic spectrum of combined epileptic and dyskinetic syndromes."	"Secondary neurotransmitter deficiencies in epilepsy caused by voltage-gated sodium channelopathies: A potential treatment target? We describe neurotransmitter abnormalities in two patients with drug-resistant epilepsy resulting from deleterious de novo mutations in sodium channel genes. Whole exome sequencing identified a de novo SCN2A splice-site mutation (c.2379+1G&gt;A, p.Glu717Gly.fs*30) resulting in deletion of exon 14, in a 10-year old male with early onset global developmental delay, intermittent ataxia, autism, hypotonia, epileptic encephalopathy and cerebral/cerebellar atrophy. In the cerebrospinal fluid both homovanillic acid and 5-hydroxyindoleacetic acid were significantly decreased; extensive biochemical and genetic investigations ruled out primary neurotransmitter deficiencies and other known inborn errors of metabolism. In an 8-year old female with an early onset intractable epileptic encephalopathy, developmental regression, and progressive cerebellar atrophy, a previously unreported de novo missense mutation was identified in SCN8A (c.5615G&gt;A; p.Arg1872Gln), affecting a highly conserved residue located in the C-terminal of the Nav1.6 protein. Aside from decreased homovanillic acid and 5-hydroxyindoleacetic acid, 5-methyltetrahydrofolate was also found to be low. We hypothesize that these channelopathies cause abnormal synaptic mono-amine metabolite secretion/uptake via impaired vesicular release and imbalance in electrochemical ion gradients, which in turn aggravate the seizures. Treatment with oral 5-hydroxytryptophan, l-Dopa/Carbidopa, and a dopa agonist resulted in mild improvement of seizure control in the male case, most likely via dopamine and serotonin receptor activated signal transduction and modulation of glutamatergic, GABA-ergic and glycinergic neurotransmission. Neurotransmitter analysis in other sodium channelopathy patients will help validate our findings, potentially yielding novel treatment opportunities. "	"The Expanding SCN8A-Related Epilepsy Phenotype. NA"	"Downregulation of the sodium channel Nav1.6 by potential transcriptomic deregulation may explain sensory deficits in critical illness neuropathy. Sepsis patients and other patients in the critical care settings are at very high risk of mortality due to the primary illness. However, a fraction of patients, even after showing initial clinical improvement, deteriorates relentlessly at later stages. Increasingly, it is being identified that this is mostly due to dysfunction of the neurological system. We obtained peripheral nerve biopsies from the sural nerve from ICU patients. Nav1.6 expression was significantly diminished. The expression of cellular membrane anchoring protein for Nav1.6, ankyrin, remained unaffected, suggesting that genomic repression may be responsible for the diminished expression of the sodium channels. We examined the expression of two regulatory transcription factors: (a) a positive regulator YY1 that binds to the promoter region of sodium channels and (b) an upstream negative neuronal regulator REST. REST expression was significantly elevated, while YY1 expression was diminished. Finally, we also observed that the cholinergic synthetic enzyme acyltransferase was also significantly diminished in sensory nerve lysates. Finally, circulating antibodies was detected in the peripheral blood against all the major sodium channels Nav1.6, 1.8 and 1.9, which contribute to the development and propagation of action potentials. This may potentially explain why its dysfunction affects neurological functions across all systems of the body during critical illness. The underlying mechanism of why the expression of the REST transcriptional factor is affected in critical illnesses remains our future goals of investigation."	"Precision Medicine: SCN8A Encephalopathy Treated with Sodium Channel Blockers. NA"	"Characterization of maturation of neuronal voltage-gated sodium channels SCN1A and SCN8A in rat myocardium. Sodium channels predominantly expressed in brain are expressed in myocardial tissue and play an important role in cardiac physiology. Alterations of sodium channels are known to result in neurological disease in infancy and childhood. It will be of interest to study the expression of brain-type sodium channels in the developing myocardium. The expression of neuronal sodium channels (SCN1A, SCN8A) and the cardiac isoform SCN5A in the developing rat myocardium was studied by rtPCR, Western blot, and immunohistochemistry at different stages of antenatal and postnatal development. Significant changes of sodium channel expression during development were detected. Whereas SCN5A RNA increased to maximum levels on day 21 after birth, the highest SCN1A RNA levels were detected on day 1 to 7 after birth. SCN8A RNA was maximally expressed during embryonic development. At the protein level, the amount of SCN5A protein increased along with the RNA level. SCN1A protein level decreased after birth in contrast to RNA expression. Western blot could not detect SCN8A protein in the myocardium at any stage of development. Immunohistochemistry however proved the presence of SCN8A protein in the developing rat myocardium. Heart- and brain-type sodium channels are differentially expressed during ontogenesis. The high expression level of SCN1A in the perinatal period and early infancy indicates its importance in preserving a regular cardiac rhythm in this early phase of life. Altered regulation of sodium channels might result in severe cardiac rhythm disturbances."	"An update on transcriptional and post-translational regulation of brain voltage-gated sodium channels. Voltage-gated sodium channels are essential proteins in brain physiology, as they generate the sodium currents that initiate neuronal action potentials. Voltage-gated sodium channels expression, localisation and function are regulated by a range of transcriptional and post-translational mechanisms. Here, we review our understanding of regulation of brain voltage-gated sodium channels, in particular SCN1A (NaV1.1), SCN2A (NaV1.2), SCN3A (NaV1.3) and SCN8A (NaV1.6), by transcription factors, by alternative splicing, and by post-translational modifications. Our focus is strongly centred on recent research lines, and newly generated knowledge."	"An Scn1a epilepsy mutation in Scn8a alters seizure susceptibility and behavior. Understanding the role of SCN8A in epilepsy and behavior is critical in light of recently identified human SCN8A epilepsy mutations. We have previously demonstrated that Scn8a(med) and Scn8a(med-jo) mice carrying mutations in the Scn8a gene display increased resistance to flurothyl and kainic acid-induced seizures; however, they also exhibit spontaneous absence seizures. To further investigate the relationship between altered SCN8A function and epilepsy, we introduced the SCN1A-R1648H mutation, identified in a family with generalized epilepsy with febrile seizures plus (GEFS+), into the corresponding position (R1627H) of the mouse Scn8a gene. Heterozygous R1627H mice exhibited increased resistance to some forms of pharmacologically and electrically induced seizures and the mutant Scn8a allele ameliorated the phenotype of Scn1a-R1648H mutants. Hippocampal slices from heterozygous R1627H mice displayed decreased bursting behavior compared to wild-type littermates. Paradoxically, at the homozygous level, R1627H mice did not display increased seizure resistance and were susceptible to audiogenic seizures. We furthermore observed increased hippocampal pyramidal cell excitability in heterozygous and homozygous Scn8a-R1627H mutants, and decreased interneuron excitability in heterozygous Scn8a-R1627H mutants. These results expand the phenotypes associated with disruption of the Scn8a gene and demonstrate that an Scn8a mutation can both confer seizure protection and increase seizure susceptibility. "	"Navβ4 regulates fast resurgent sodium currents and excitability in sensory neurons. Increased electrical activity in peripheral sensory neurons including dorsal root ganglia (DRG) and trigeminal ganglia neurons is an important mechanism underlying pain. Voltage gated sodium channels (VGSC) contribute to the excitability of sensory neurons and are essential for the upstroke of action potentials. A unique type of VGSC current, resurgent current (INaR), generates an inward current at repolarizing voltages through an alternate mechanism of inactivation referred to as open-channel block. INaRs are proposed to enable high frequency firing and increased INaRs in sensory neurons are associated with pain pathologies. While Nav1.6 has been identified as the main carrier of fast INaR, our understanding of the mechanisms that contribute to INaR generation is limited. Specifically, the open-channel blocker in sensory neurons has not been identified. Previous studies suggest Navβ4 subunit mediates INaR in central nervous system neurons. The goal of this study was to determine whether Navβ4 regulates INaR in DRG sensory neurons. Our immunocytochemistry studies show that Navβ4 expression is highly correlated with Nav1.6 expression predominantly in medium-large diameter rat DRG neurons. Navβ4 knockdown decreased endogenous fast INaR in medium-large diameter neurons as measured with whole-cell voltage clamp. Using a reduced expression system in DRG neurons, we isolated recombinant human Nav1.6 sodium currents in rat DRG neurons and found that overexpression of Navβ4 enhanced Nav1.6 INaR generation. By contrast neither overexpression of Navβ2 nor overexpression of a Navβ4-mutant, predicted to be an inactive form of Navβ4, enhanced Nav1.6 INaR generation. DRG neurons transfected with wild-type Navβ4 exhibited increased excitability with increases in both spontaneous activity and evoked activity. Thus, Navβ4 overexpression enhanced INaR and excitability, whereas knockdown or expression of mutant Navβ4 decreased INaR generation. INaRs are associated with inherited and acquired pain disorders. However, our ability to selectively target and study this current has been hindered due to limited understanding of how it is generated in sensory neurons. This study identified Navβ4 as an important regulator of INaR and excitability in sensory neurons. As such, Navβ4 is a potential target for the manipulation of pain sensations."	"Erratum to: Remarkable Phenytoin Sensitivity in 4 Children with SCN8A-related Epilepsy: A Molecular Neuropharmacological Approach. NA"	"Remarkable Phenytoin Sensitivity in 4 Children with SCN8A-related Epilepsy: A Molecular Neuropharmacological Approach. Mutations in SCN8A are associated with epilepsy and intellectual disability. SCN8A encodes for sodium channel Nav1.6, which is located in the brain. Gain-of-function missense mutations in SCN8A are thought to lead to increased firing of excitatory neurons containing Nav1.6, and therefore to lead to increased seizure susceptibility. We hypothesized that sodium channel blockers could have a beneficial effect in patients with SCN8A-related epilepsy by blocking the overactive Nav1.6 and thereby counteracting the effect of the mutation. Herein, we describe 4 patients with a missense SCN8A mutation and epilepsy who all show a remarkably good response on high doses of phenytoin and loss of seizure control when phenytoin medication was reduced, while side effects were relatively mild. In 2 patients, repeated withdrawal of phenytoin led to the reoccurrence of seizures. Based on the findings in these patients and the underlying molecular mechanism we consider treatment with (high-dose) phenytoin as a possible treatment option in patients with difficult-to-control seizures due to an SCN8A mutation. "	"TALE of an SCN8A-Associated Epileptic Encephalopathy Mouse Model. NA"	"In response: SCN8A mutations in Chinese children with early onset epilepsy and intellectual disability. NA"	"SCN8A mutations in Chinese children with early onset epilepsy and intellectual disability. NA"	"Complex SCN8A DNA-abnormalities in an individual with therapy resistant absence epilepsy. De novo SCN8A missense mutations have been identified as a rare dominant cause of epileptic encephalopathy. We described a person with epileptic encephalopathy associated with a mosaic deletion of the SCN8A gene. Array comparative genome hybridization was used to identify chromosomal abnormalities. Next Generation Sequencing was used to screen for variants in known and candidate epilepsy genes. A single nucleotide polymorphism array was used to test whether the SCN8A variants were in cis or in trans. We identified a de novo mosaic deletion of exons 2-14 of SCN8A, and a rare maternally inherited missense variant on the other allele in a woman presenting with absence seizures, challenging behavior, intellectual disability and QRS-fragmentation on the ECG. We also found a variant in SCN5A. The combination of a rare missense variant with a de novo mosaic deletion of a large part of the SCN8A gene suggests that other possible mechanisms for SCN8A mutations may cause epilepsy; loss of function, genetic modifiers and cellular interference may play a role. This case expands the phenotype associated with SCN8A mutations, with absence epilepsy and regression in language and memory skills."	"Human Nav1.6 Channels Generate Larger Resurgent Currents than Human Nav1.1 Channels, but the Navβ4 Peptide Does Not Protect Either Isoform from Use-Dependent Reduction. Voltage-gated sodium channels are responsible for the initiation and propagation of action potentials (APs). Two brain isoforms, Nav1.1 and Nav1.6, have very distinct cellular and subcellular expression. Specifically, Nav1.1 is predominantly expressed in the soma and proximal axon initial segment of fast-spiking GABAergic neurons, while Nav1.6 is found at the distal axon initial segment and nodes of Ranvier of both fast-spiking GABAergic and excitatory neurons. Interestingly, an auxiliary voltage-gated sodium channel subunit, Navβ4, is also enriched in the axon initial segment of fast-spiking GABAergic neurons. The C-terminal tail of Navβ4 is thought to mediate resurgent sodium current, an atypical current that occurs immediately following the action potential and is predicted to enhance excitability. To better understand the contribution of Nav1.1, Nav1.6 and Navβ4 to high frequency firing, we compared the properties of these two channel isoforms in the presence and absence of a peptide corresponding to part of the C-terminal tail of Navβ4. We used whole-cell patch clamp recordings to examine the biophysical properties of these two channel isoforms in HEK293T cells and found several differences between human Nav1.1 and Nav1.6 currents. Nav1.1 channels exhibited slower closed-state inactivation but faster open-state inactivation than Nav1.6 channels. We also observed a greater propensity of Nav1.6 to generate resurgent currents, most likely due to its slower kinetics of open-state inactivation, compared to Nav1.1. These two isoforms also showed differential responses to slow and fast AP waveforms, which were altered by the Navβ4 peptide. Although the Navβ4 peptide substantially increased the rate of recovery from apparent inactivation, Navβ4 peptide did not protect either channel isoform from undergoing use-dependent reduction with 10 Hz step-pulse stimulation or trains of slow or fast AP waveforms. Overall, these two channels have distinct biophysical properties that may differentially contribute to regulating neuronal excitability. "	"Late Sodium Current in Human Atrial Cardiomyocytes from Patients in Sinus Rhythm and Atrial Fibrillation. Slowly inactivating Na+ channels conducting &quot;late&quot; Na+ current (INa,late) contribute to ventricular arrhythmogenesis under pathological conditions. INa,late was also reported to play a role in chronic atrial fibrillation (AF). The objective of this study was to investigate INa,late in human right atrial cardiomyocytes as a putative drug target for treatment of AF. To activate Na+ channels, cardiomyocytes from transgenic mice which exhibit INa,late (ΔKPQ), and right atrial cardiomyocytes from patients in sinus rhythm (SR) and AF were voltage clamped at room temperature by 250-ms long test pulses to -30 mV from a holding potential of -80 mV with a 100-ms pre-pulse to -110 mV (protocol I). INa,late at -30 mV was not discernible as deviation from the extrapolated straight line IV-curve between -110 mV and -80 mV in human atrial cells. Therefore, tetrodotoxin (TTX, 10 μM) was used to define persistent inward current after 250 ms at -30 mV as INa,late. TTX-sensitive current was 0.27±0.06 pA/pF in ventricular cardiomyocytes from ΔKPQ mice, and amounted to 0.04±0.01 pA/pF and 0.09±0.02 pA/pF in SR and AF human atrial cardiomyocytes, respectively. With protocol II (holding potential -120 mV, pre-pulse to -80 mV) TTX-sensitive INa,late was always larger than with protocol I. Ranolazine (30 μM) reduced INa,late by 0.02±0.02 pA/pF in SR and 0.09±0.02 pA/pF in AF cells. At physiological temperature (37°C), however, INa,late became insignificant. Plateau phase and upstroke velocity of action potentials (APs) recorded with sharp microelectrodes in intact human trabeculae were more sensitive to ranolazine in AF than in SR preparations. Sodium channel subunits expression measured with qPCR was high for SCN5A with no difference between SR and AF. Expression of SCN8A and SCN10A was low in general, and lower in AF than in SR. In conclusion, We confirm for the first time a TTX-sensitive current (INa,late) in right atrial cardiomyocytes from SR and AF patients at room temperature, but not at physiological temperature. While our study provides evidence for the presence of INa,late in human atria, the potential of such current as a target for the treatment of AF remains to be demonstrated. "	"Recurrent and Non-Recurrent Mutations of SCN8A in Epileptic Encephalopathy. Mutations of the voltage-gated sodium channel SCN8A have been identified in approximately 1% of nearly 1,500 children with early-infantile epileptic encephalopathies (EIEE) who have been tested by DNA sequencing. EIEE caused by mutation of SCN8A is designated EIEE13 (OMIM #614558). Affected children have seizure onset before 18 months of age as well as developmental and cognitive disabilities, movement disorders, and a high incidence of sudden death (SUDEP). EIEE13 is caused by de novo missense mutations of evolutionarily conserved residues in the Nav1.6 channel protein. One-third of the mutations are recurrent, and many occur at CpG dinucleotides. In this review, we discuss the effect of pathogenic mutations on the structure of the channel protein, the rate of recurrent mutation, and changes in channel function underlying this devastating disorder. "	"Electroclinical features of epileptic encephalopathy caused by SCN8A mutation. Voltage-gated sodium channel Nav 1.6, encoded by the gene SCN8A, plays a crucial role in controlling neuronal excitability. SCN8A mutations that cause increased channel activity are associated with seizures. We describe a patient with epileptic encephalopathy caused by de novo SCN8A mutation (c.5614C&gt;T, p.Arg1872Trp). Seizures began 10 days after birth at which time brain magnetic resonance imaging (MRI) and electroencephalography (EEG) were normal. Seizure recurrence increased with age, leading to the development of frequent status epilepticus from 1 year of age. Seizure type included generalized tonic seizures and focal motor seizures. EEG first showed focal epileptic activity at the age of 4 months, and thereafter showed multifocal spikes. Serial MRI demonstrated brain atrophy, which appeared to progress with seizure aggravation. Clinical features that may give a clue to the diagnosis include normal EEG despite frequent seizures in early infancy and an increase in epileptic activity that occurs with aging. "	"Mutations in epilepsy and intellectual disability genes in patients with features of Rett syndrome. Rett syndrome and neurodevelopmental disorders with features overlapping this syndrome frequently remain unexplained in patients without clinically identified MECP2 mutations. We recruited a cohort of 11 patients with features of Rett syndrome and negative initial clinical testing for mutations in MECP2. We analyzed their phenotypes to determine whether patients met formal criteria for Rett syndrome, reviewed repeat clinical genetic testing, and performed exome sequencing of the probands. Using 2010 diagnostic criteria, three patients had classical Rett syndrome, including two for whom repeat MECP2 gene testing had identified mutations. In a patient with neonatal onset epilepsy with atypical Rett syndrome, we identified a frameshift deletion in STXBP1. Among seven patients with features of Rett syndrome not fulfilling formal diagnostic criteria, four had suspected pathogenic mutations, one each in MECP2, FOXG1, SCN8A, and IQSEC2. MECP2 mutations are highly correlated with classical Rett syndrome. Genes associated with atypical Rett syndrome, epilepsy, or intellectual disability should be considered in patients with features overlapping with Rett syndrome and negative MECP2 testing. While most of the identified mutations were apparently de novo, the SCN8A variant was inherited from an unaffected parent mosaic for the mutation, which is important to note for counseling regarding recurrence risks."	"[Dynamic expressions of Nav1.2 and Nav1.6 in hippocampal CA3 region of epileptic rats]. To observe the expressions of Nav1.2 and Nav1.6 in the hippocampal CA3 region of lithium chloride-pilocarpine epileptic rats to explore their potential roles in epileptogenesis. A total of 90 healthy male SD rats were randomly divided into normal control group (physiological saline) and epilepstic group (lithium chloride-pilocarpine). According to different timepoints, the control and epilepstic groups were randomly divided into 3 subgroups of 24-hour, 7-day and 60-day. Then immunohistochemistry, Western blot and reverse transcription-polymerase chain reaction (RT-PCR) were employed to detect the expressions of Nav1.2 and Nav1.6 in hippocampal CA3 region of rats. Immunohistochemisty showed that, at 24 hours, the expression of Nav1.2 had no significant difference (P = 0.492) while Nav1.6 significantly increased as compared with controls (0.398 ± 0.019 vs 0.313 ± 0.017, P = 0.034). At Day 7, both Nav1.2 and Nav1.6 had no significant change (P = 0.157, 0.109). Nav1.2 significantly decreased at Day 60 (0.117 ± 0.009 vs 0.155 ± 0.010, P = 0.002). But Nav1.6 significantly increased(0.400 ± 0.009 vs 0.318 ± 0.010, P = 0.018). Western blot showed that Nav1.2 protein had no significant difference at 24 hours (P = 0.472) while Nav1.6 significantly increased (0.419 ± 0.027 vs 0.290 ± 0.007, P = 0.001). At Day 7, Nav1.2 and Nav1.6 proteins had no significant change (P = 0.517, 0.514). At Day 60, Nav1.2 protein significantly decreased (0.209 ± 0.077 vs 0.339 ± 0.080, P = 0.024) while Nav1.6 significantly increased (0.772 ± 0.029 vs 0.489 ± 0.014, P = 0.001). RT-PCR showed the same results as Western blot and immunohistochemisty. Nav1.2 mRNA had no significantly difference at 24 hours (P = 0.453) while Nav1.6 mRNA significantly increased (2.250 ± 0.117 vs 0.998 ± 0.139, P = 0.001); at Day 7, both Nav1.2 mRNA and Nav1.6 mRNA had no significant change (P = 0.493, 0.624). Nav1.2 mRNA significantly decreased at Day 60(0.718 ± 0.056 vs 1.000 ± 0.026, P = 0.027). But Nav1.6 mRNA significantly increased (2.445 ± 0.167 vs 1.003 ± 0.060, P = 0.001). Both Nav1.2 and Nav1.6 are involved in the formation of chronic spontaneous recurrent seizures. And Nav1.6 also plays an important role in acute phase of seizures."	"Preferential targeting of Nav1.6 voltage-gated Na+ Channels to the axon initial segment during development. During axonal maturation, voltage-gated sodium (Nav) channels accumulate at the axon initial segment (AIS) at high concentrations. This localization is necessary for the efficient initiation of action potentials. The mechanisms underlying channel trafficking to the AIS during axonal development have remained elusive due to a lack of Nav reagents suitable for high resolution imaging of channels located specifically on the cell surface. Using an optical pulse-chase approach in combination with a novel Nav1.6 construct containing an extracellular biotinylation domain we demonstrate that Nav1.6 channels are preferentially inserted into the AIS membrane during neuronal development via direct vesicular trafficking. Single-molecule tracking illustrates that axonal channels are immediately immobilized following delivery, while channels delivered to the soma are often mobile. Neither a Nav1.6 channel lacking the ankyrin-binding motif nor a chimeric Kv2.1 channel containing the Nav ankyrinG-binding domain show preferential AIS insertion. Together these data support a model where ankyrinG-binding is required for preferential Nav1.6 insertion into the AIS plasma membrane. In contrast, ankyrinG-binding alone does not confer the preferential delivery of proteins to the AIS. "	"Diagnostic yield of genetic testing in epileptic encephalopathy in childhood. Epilepsy is a common neurologic disorder of childhood. To determine the genetic diagnostic yield in epileptic encephalopathy, we performed a retrospective cohort study in a single epilepsy genetics clinic. We included all patients with intractable epilepsy, global developmental delay, and cognitive dysfunction seen between January 2012 and June 2014 in the Epilepsy Genetics Clinic. Electronic patient charts were reviewed for clinical features, neuroimaging, biochemical investigations, and molecular genetic investigations including targeted next-generation sequencing of epileptic encephalopathy genes. Genetic causes were identified in 28% of the 110 patients: 7% had inherited metabolic disorders including pyridoxine dependent epilepsy caused by ALDH7A1 mutation, Menkes disease, pyridox(am)ine-5-phosphate oxidase deficiency, cobalamin G deficiency, methylenetetrahydrofolate reductase deficiency, glucose transporter 1 deficiency, glycine encephalopathy, and pyruvate dehydrogenase complex deficiency; 21% had other genetic causes including genetic syndromes, pathogenic copy number variants on array comparative genomic hybridization, and epileptic encephalopathy related to mutations in the SCN1A, SCN2A, SCN8A, KCNQ2, STXBP1, PCDH19, and SLC9A6 genes. Forty-five percent of patients obtained a genetic diagnosis by targeted next-generation sequencing epileptic encephalopathy panels. It is notable that 4.5% of patients had a treatable inherited metabolic disease. To the best of our knowledge, this is the first study to combine inherited metabolic disorders and other genetic causes of epileptic encephalopathy. Targeted next-generation sequencing panels increased the genetic diagnostic yield from &lt;10% to &gt;25% in patients with epileptic encephalopathy."	"Expression profiling of SCN8A and NDUFC2 genes in colorectal carcinoma. The expression differences of SCN8A (which encodes type VIII alpha subunit of voltage gated sodium channel) and NDUFC2 (which encodes C2 subunit of Complex I enzyme in oxidative phosphorylation) genes were evaluated in paired colorectal cancer (CRC) tissues which was relied on our partial transcriptome analysis data in cancer cell lines. A total of 62 paired tissues of CRC patients (34 male, 28 female) were included in the study. The mRNA levels of SCN8A and NDUFC2 genes were determined by using real-time PCR (qRT-PCR and semiquantitative PCR). SCN8A gene expression level was significantly lower in tumor tissues (p = 0.0128) and in the patients with the age below 45 years (p = 0.0049). There were also meaningful relationships between the gender, grade of CRC, tumor location, histopathological classification, and SCN8A expression. There was no NDUFC2 differential expression. However, the tumors taken from right colon had significantly lower NDUFC2 expression. Although the voltage gated sodium channels (VGSCs) and Complex I (CI) were associated to a number of diseases including different types of cancers, the different subunits of CI and individual members of VGSCs seem to be cancer type-specific in varying proportions."	"Early-onset movement disorder and epileptic encephalopathy due to de novo dominant SCN8A mutation. NA"	"SCN8A mutations in Chinese children with early onset epilepsy and intellectual disability. Mutations in SCN8A, a voltage-gated sodium-channel type VIII alpha subunit gene, have recently been recognized as one of the pathogenic mechanisms leading to epilepsy and intellectual/developmental disabilities (IDDs). The aim of this study was to detect SCN8A mutations in Chinese patients with epilepsy of unknown etiology and ID/DD. We used targeted next-generation sequencing to identify SCN8A mutations in Chinese patients with epilepsy of unknown etiology and IDDs. A filter process was performed to prioritize rare variants of potential functional significance. Sanger sequencing confirmed the variants and determined the parental origin. We followed all patients with SCN8A mutations in our cohort and analyzed their clinical data. Five de novo SCN8A mutations were identified, including four novel mutations (p.Ala890Thr, p.Leu407Phe, p.Arg850Gln, and p.Ser1596Cys) and one reported (p.Arg1617Gln). Polyphen2 and SIFT software predicted that all five mutations probably damaged Nav1.6 protein function; Mutation Taster indicated that all mutations were disease-causing. Three of these five patients were controlled well by sodium channel blockers (SCBs). Two of these three patients remained seizure free for 6 and 1.5 months, respectively. One patient had sudden unexpected death in epilepsy (SUDEP) at the age of 1 year and 4 months. Five SCN8A mutations were first reported in Chinese patients with epilepsy and ID/DD, expanding the phenotype and mutation spectrum of SCN8A mutations. Although three of these patients were controlled well by SCBs in our study, the effectiveness of SCBs should be validated in more patients with epilepsy caused by SCN8A mutations in the future. One of our five patients had sudden unexpected death in epilepsy SUDEP, suggesting that we should pay more attention to SUDEP in epileptic patients with SCN8A mutations."	"Amyloid precursor protein enhances Nav1.6 sodium channel cell surface expression. Amyloid precursor protein (APP) is commonly associated with Alzheimer disease, but its physiological function remains unknown. Nav1.6 is a key determinant of neuronal excitability in vivo. Because mouse models of gain of function and loss of function of APP and Nav1.6 share some similar phenotypes, we hypothesized that APP might be a candidate molecule for sodium channel modulation. Here we report that APP colocalized and interacted with Nav1.6 in mouse cortical neurons. Knocking down APP decreased Nav1.6 sodium channel currents and cell surface expression. APP-induced increases in Nav1.6 cell surface expression were Go protein-dependent, enhanced by a constitutively active Go protein mutant, and blocked by a dominant negative Go protein mutant. APP also regulated JNK activity in a Go protein-dependent manner. JNK inhibition attenuated increases in cell surface expression of Nav1.6 sodium channels induced by overexpression of APP. JNK, in turn, phosphorylated APP. Nav1.6 sodium channel surface expression was increased by T668E and decreased by T668A, mutations of APP695 mimicking and preventing Thr-668 phosphorylation, respectively. Phosphorylation of APP695 at Thr-668 enhanced its interaction with Nav1.6. Therefore, we show that APP enhances Nav1.6 sodium channel cell surface expression through a Go-coupled JNK pathway. "	"De novo gain-of-function and loss-of-function mutations of SCN8A in patients with intellectual disabilities and epilepsy. Mutations of SCN8A encoding the neuronal voltage-gated sodium channel NaV1.6 are associated with early-infantile epileptic encephalopathy type 13 (EIEE13) and intellectual disability. Using clinical exome sequencing, we have detected three novel de novo SCN8A mutations in patients with intellectual disabilities, and variable clinical features including seizures in two patients. To determine the causality of these SCN8A mutations in the disease of those three patients, we aimed to study the (dys)function of the mutant sodium channels. The functional consequences of the three SCN8A mutations were assessed using electrophysiological analyses in transfected cells. Genotype-phenotype correlations of these and other cases were related to the functional analyses. The first mutant displayed a 10 mV hyperpolarising shift in voltage dependence of activation (gain of function), the second did not form functional channels (loss of function), while the third mutation was functionally indistinguishable from the wildtype channel. Comparison of the clinical features of these patients with those in the literature suggests that gain-of-function mutations are associated with severe EIEE, while heterozygous loss-of-function mutations cause intellectual disability with or without seizures. These data demonstrate that functional analysis of missense mutations detected by clinical exome sequencing, both inherited and de novo, is valuable for clinical interpretation in the age of massive parallel sequencing."	"Generation of resonance-dependent oscillation by mGluR-I activation switches single spiking to bursting in mesencephalic trigeminal sensory neurons. The primary sensory neurons supplying muscle spindles of jaw-closing muscles are unique in that they have their somata in the mesencephalic trigeminal nucleus (MTN) in the brainstem, thereby receiving various synaptic inputs. MTN neurons display bursting upon activation of glutamatergic synaptic inputs while they faithfully relay respective impulses arising from peripheral sensory organs. The persistent sodium current (IN aP ) is reported to be responsible for both the generation of bursts and the relay of impulses. We addressed how IN aP is controlled either to trigger bursts or to relay respective impulses as single spikes in MTN neurons. Protein kinase C (PKC) activation enhanced IN aP only at low voltages. Spike generation was facilitated by PKC activation at membrane potentials more depolarized than the resting potential. By injection of a ramp current pulse, a burst of spikes was triggered from a depolarized membrane potential whereas its instantaneous spike frequency remained almost constant despite the ramp increases in the current intensity beyond the threshold. A puff application of glutamate preceding the ramp pulse lowered the threshold for evoking bursts by ramp pulses while chelerythrine abolished such effects of glutamate. Dihydroxyphenylglycine, an agonist of mGluR1/5, also caused similar effects, and increased both the frequency and impedance of membrane resonance. Immunohistochemistry revealed that glutamatergic synapses are made onto the stem axons, and that mGluR1/5 and Nav1.6 are co-localized in the stem axon. Taken together, glutamatergic synaptic inputs onto the stem axon may be able to switch the relaying to the bursting mode. "	"Local knockdown of the NaV1.6 sodium channel reduces pain behaviors, sensory neuron excitability, and sympathetic sprouting in rat models of neuropathic pain. In the spinal nerve ligation (SNL) model of neuropathic pain, as in other pain models, abnormal spontaneous activity of myelinated sensory neurons occurs early and is essential for establishing pain behaviors and other pathologies. Sympathetic sprouting into the dorsal root ganglion (DRG) is observed after SNL, and sympathectomy reduces pain behavior. Sprouting and spontaneous activity may be mutually reinforcing: blocking neuronal activity reduces sympathetic sprouting, and sympathetic spouts functionally increase spontaneous activity in vitro. However, most studies in this field have used nonspecific methods to block spontaneous activity, methods that also block evoked and normal activity. In this study, we injected small inhibitory (si) RNA directed against the NaV1.6 sodium channel isoform into the DRG before SNL. This isoform can mediate high-frequency repetitive firing, like that seen in spontaneously active neurons. Local knockdown of NaV1.6 markedly reduced mechanical pain behaviors induced by SNL, reduced sympathetic sprouting into the ligated sensory ganglion, and blocked abnormal spontaneous activity and other measures of hyperexcitability in myelinated neurons in the ligated sensory ganglion. Immunohistochemical experiments showed that sympathetic sprouting preferentially targeted NaV1.6-positive neurons. Under these experimental conditions, NaV1.6 knockdown did not prevent or strongly alter single evoked action potentials, unlike previous less specific methods used to block spontaneous activity. NaV1.6 knockdown also reduced pain behaviors in another pain model, chronic constriction of the sciatic nerve, provided the model was modified so that the lesion site was relatively close to the siRNA-injected lumbar DRGs. The results highlight the relative importance of abnormal spontaneous activity in establishing both pain behaviors and sympathetic sprouting, and suggest that the NaV1.6 isoform may have value as a therapeutic target. "	"Selective blocking effects of 4,9-anhydrotetrodotoxin, purified from a crude mixture of tetrodotoxin analogues, on NaV1.6 channels and its chemical aspects. Tetrodotoxin (TTX) is a potent neurotoxin found in a number of marine creatures including the pufferfish, where it is synthesized by bacteria and accumulated through the food chain. It is a potent and selective blocker of some types of voltage-gated Na+ channel (NaV channel). 4,9-Anhydrotetrodotoxin (4,9-anhydroTTX) was purified from a crude mixture of TTX analogues (such as TTX, 4-epiTTX, 6-epiTTX, 11-oxoTTX and 11-deoxyTTX) by the use of liquid chromatography-fluorescence detection (LC-FLD) techniques. Recently, it has been reported that 4,9-anhydroTTX selectively blocks the activity of NaV1.6 channels with a blocking efficacy 40-160 times higher than that for other TTX-sensitive NaV1.x channel isoforms. However, little attention has been paid to the molecular properties of the α-subunit in NaV1.6 channels and the characteristics of binding of 4,9-anhydroTTX. From a functional point of view, it is important to determine the relative expression of NaV1.6 channels in a wide variety of tissues. The aim of this review is to discuss briefly current knowledge about the pharmacology of 4,9-anhydroTTX, and provide an analysis of the molecular structure of native NaV1.6 channels. In addition, chemical aspects of 4,9-anhydroTTX are briefly covered. "	"Whole-exome sequencing points to considerable genetic heterogeneity of cerebral palsy. Cerebral palsy (CP) is a common, clinically heterogeneous group of disorders affecting movement and posture. Its prevalence has changed little in 50 years and the causes remain largely unknown. The genetic contribution to CP causation has been predicted to be ~2%. We performed whole-exome sequencing of 183 cases with CP including both parents (98 cases) or one parent (67 cases) and 18 singleton cases (no parental DNA). We identified and validated 61 de novo protein-altering variants in 43 out of 98 (44%) case-parent trios. Initial prioritization of variants for causality was by mutation type, whether they were known or predicted to be deleterious and whether they occurred in known disease genes whose clinical spectrum overlaps CP. Further, prioritization used two multidimensional frameworks-the Residual Variation Intolerance Score and the Combined Annotation-dependent Depletion score. Ten de novo mutations in three previously identified disease genes (TUBA1A (n=2), SCN8A (n=1) and KDM5C (n=1)) and in six novel candidate CP genes (AGAP1, JHDM1D, MAST1, NAA35, RFX2 and WIPI2) were predicted to be potentially pathogenic for CP. In addition, we identified four predicted pathogenic, hemizygous variants on chromosome X in two known disease genes, L1CAM and PAK3, and in two novel candidate CP genes, CD99L2 and TENM1. In total, 14% of CP cases, by strict criteria, had a potentially disease-causing gene variant. Half were in novel genes. The genetic heterogeneity highlights the complexity of the genetic contribution to CP. Function and pathway studies are required to establish the causative role of these putative pathogenic CP genes. "	"Identifying a kinase network regulating FGF14:Nav1.6 complex assembly using split-luciferase complementation. Kinases play fundamental roles in the brain. Through complex signaling pathways, kinases regulate the strength of protein:protein interactions (PPI) influencing cell cycle, signal transduction, and electrical activity of neurons. Changes induced by kinases on neuronal excitability, synaptic plasticity and brain connectivity are linked to complex brain disorders, but the molecular mechanisms underlying these cellular events remain for the most part elusive. To further our understanding of brain disease, new methods for rapidly surveying kinase pathways in the cellular context are needed. The bioluminescence-based luciferase complementation assay (LCA) is a powerful, versatile toolkit for the exploration of PPI. LCA relies on the complementation of two firefly luciferase protein fragments that are functionally reconstituted into the full luciferase enzyme by two interacting binding partners. Here, we applied LCA in live cells to assay 12 kinase pathways as regulators of the PPI complex formed by the voltage-gated sodium channel, Nav1.6, a transmembrane ion channel that elicits the action potential in neurons and mediates synaptic transmission, and its multivalent accessory protein, the fibroblast growth factor 14 (FGF14). Through extensive dose-dependent validations of structurally-diverse kinase inhibitors and hierarchical clustering, we identified the PI3K/Akt pathway, the cell-cycle regulator Wee1 kinase, and protein kinase C (PKC) as prospective regulatory nodes of neuronal excitability through modulation of the FGF14:Nav1.6 complex. Ingenuity Pathway Analysis shows convergence of these pathways on glycogen synthase kinase 3 (GSK3) and functional assays demonstrate that inhibition of GSK3 impairs excitability of hippocampal neurons. This combined approach provides a versatile toolkit for rapidly surveying PPI signaling, allowing the discovery of new modular pathways centered on GSK3 that might be the basis for functional alterations between the normal and diseased brain. "	"Experimental and computational evidence for an essential role of NaV1.6 in spike initiation at stretch-sensitive colorectal afferent endings. Stretch-sensitive afferents comprise ∼33% of the pelvic nerve innervation of mouse colorectum, which are activated by colorectal distension and encode visceral nociception. Stretch-sensitive colorectal afferent endings respond tonically to stepped or ramped colorectal stretch, whereas dissociated colorectal dorsal root ganglion neurons generally fail to spike repetitively upon stepped current stimulation. The present study investigated this difference in the neural encoding characteristics between the soma and afferent ending using pharmacological approaches in an in vitro mouse colon-nerve preparation and complementary computational simulations. Immunohistological staining and Western blots revealed the presence of voltage-gated sodium channel (NaV) 1.6 and NaV1.7 at sensory neuronal endings in mouse colorectal tissue. Responses of stretch-sensitive colorectal afferent endings were significantly reduced by targeting NaV1.6 using selective antagonists (μ-conotoxin GIIIa and μ-conotoxin PIIIa) or tetrodotoxin. In contrast, neither selective NaV1.8 (A803467) nor NaV1.7 (ProTX-II) antagonists attenuated afferent responses to stretch. Computational simulation of a colorectal afferent ending that incorporated independent Markov models for NaV1.6 and NaV1.7, respectively, recapitulated the experimental findings, suggesting a necessary role for NaV1.6 in encoding tonic spiking by stretch-sensitive afferents. In addition, computational simulation of a dorsal root ganglion soma showed that, by adding a NaV1.6 conductance, a single-spiking neuron was converted into a tonic spiking one. These results suggest a mechanism/channel to explain the difference in neural encoding characteristics between afferent somata and sensory endings, likely caused by differential expression of ion channels (e.g., NaV1.6) at different parts of the neuron."	"Novel phenotype associated with a mutation in the KCNA1(Kv1.1) gene. Episodic ataxia type 1 (EA1) is an autosomal dominant K(+) channelopathy which manifests with short attacks of cerebellar ataxia and dysarthria, and may also show interictal myokymia. Episodes can be triggered by emotional or physical stress, startle response, sudden postural change or fever. Here we describe a 31-year-old man displaying markedly atypical symptoms, including long-lasting attacks of jerking muscle contractions associated with hyperthermia, severe migraine, and a relatively short-sleep phenotype. A single nucleotide change in KCNA1 (c.555C&gt;G) was identified that changes a highly conserved residue (p.C185W) in the first transmembrane segment of the voltage-gated K(+) channel Kv1.1. The patient is heterozygous and the mutation was inherited from his asymptomatic mother. Next generation sequencing revealed no variations in the CACNA1A, CACNB4, KCNC3, KCNJ10, PRRT2 or SCN8A genes of either the patient or mother, except for a benign variant in SLC1A3. Functional analysis of the p.C185W mutation in KCNA1 demonstrated a deleterious dominant-negative phenotype where the remaining current displayed slower activation kinetics, subtle changes in voltage-dependence and faster recovery from slow inactivation. Structural modeling also predicts the C185W mutation to be functionally deleterious. This description of novel clinical features, associated with a Kv1.1 mutation highlights a possibly unrecognized relationship between K(+) channel dysfunction, hyperthermia and migraine in EA1, and suggests that thorough assessments for these symptoms should be carefully considered for all patients affected by EA1. "	"Upregulation of RBFOX1 in the malformed cortex of patients with intractable epilepsy and in cultured rat neurons. Mutations in RNA‑binding Fox 1 (RBFOX1) are known to be associated with neurodevelopmental disorders including epilepsy, mental retardation and autism spectrum disorder. The deletion of the Rbfox1 gene in mice has been shown to result in heightened susceptibility to seizures. However, other studies have revealed mutations or the downregulation of RBFOX1 in specimens obtained from patients with epilepsy or malformations of cortical development (MCD). Generally, the expression of RBFOX1 varies according to tissue type. In this study, we demonstrated the upregulation of RBFOX1 protein in the cortex of patients with MCD and intractable epilepsy. Electrophysiological recordings of cultured rat cortical neurons with increased Rbfox1 expression also revealed a significantly increased amplitude of action potential (AP) and Na+ current density. Some of these neurons (26.32%) even displayed spontaneous, recurrent, epileptiform discharges (SREDs). Additionally, certain Rbfox1 target transcripts associated with epilepsy, including glutamate receptor, ionotropic, N-methyl D-aspartate 1 [Grin1, also known as N-methyl-D-aspartate receptor subunit NR1 (NMDAR1)], synaptosomal-associated protein, 25 kDa (SNAP‑25 or Snap25) and sodium channel, voltage gated, type VIII, alpha subunit (Scn8a, also known as Nav1.6) were identified to be upregulated in these cultured cortical neurons with an upregulated Rbfox1 expression. These data suggest that the upregulation of RBFOX1 contributes to neuronal hyperexcitation and seizures. The upregulation of NMDAR1 (Grin1), SNAP‑25 (Snap25) and Scn8a may thus be involved in Rbfox1‑related neuronal hyperexcitation."	"The phenotypic spectrum of SCN8A encephalopathy. SCN8A encodes the sodium channel voltage-gated α8-subunit (Nav1.6). SCN8A mutations have recently been associated with epilepsy and neurodevelopmental disorders. We aimed to delineate the phenotype associated with SCN8A mutations. We used high-throughput sequence analysis of the SCN8A gene in 683 patients with a range of epileptic encephalopathies. In addition, we ascertained cases with SCN8A mutations from other centers. A detailed clinical history was obtained together with a review of EEG and imaging data. Seventeen patients with de novo heterozygous mutations of SCN8A were studied. Seizure onset occurred at a mean age of 5 months (range: 1 day to 18 months); in general, seizures were not triggered by fever. Fifteen of 17 patients had multiple seizure types including focal, tonic, clonic, myoclonic and absence seizures, and epileptic spasms; seizures were refractory to antiepileptic therapy. Development was normal in 12 patients and slowed after seizure onset, often with regression; 5 patients had delayed development from birth. All patients developed intellectual disability, ranging from mild to severe. Motor manifestations were prominent including hypotonia, dystonia, hyperreflexia, and ataxia. EEG findings comprised moderate to severe background slowing with focal or multifocal epileptiform discharges. SCN8A encephalopathy presents in infancy with multiple seizure types including focal seizures and spasms in some cases. Outcome is often poor and includes hypotonia and movement disorders. The majority of mutations arise de novo, although we observed a single case of somatic mosaicism in an unaffected parent."	"Chipping away at the channels: Can we fashion a syndrome? NA"	"SWDreader: a wavelet-based algorithm using spectral phase to characterize spike-wave morphological variation in genetic models of absence epilepsy. Spike-wave discharges (SWD) found in neuroelectrical recordings are pathognomonic to absence epilepsy. The characteristic spike-wave morphology of the spike-wave complex (SWC) constituents of SWDs can be mathematically described by a subset of possible spectral power and phase values. Morlet wavelet transform (MWT) generates time-frequency representations well-suited to identifying this SWC-associated subset. MWT decompositions of SWDs reveal spectral power concentrated at harmonic frequencies. The phase relationships underlying SWC morphology were identified by calculating the differences between phase values at SWD fundamental frequency from the 2nd, 3rd, and 4th harmonics, then using the three phase differences as coordinates to generate a density distribution in a {360°×360°×360°} phase difference space. Strain-specific density distributions were generated from SWDs of mice carrying the Gria4, Gabrg2, or Scn8a mutations to determine whether SWC morphological variants reliably mapped to the same regions of the distribution, and if distribution values could be used to detect SWD. To the best of our knowledge, this algorithm is the first to employ spectral phase to quantify SWC morphology, making it possible to computationally distinguish SWC morphological subtypes and detect SWDs. Proof-of-concept testing of the SWDfinder algorithm shows: (1) a major pattern of variation in SWC morphology maps to one axis of the phase difference distribution, (2) variability between the strain-specific distributions reflects differences in the proportions of SWC subtypes generated during SWD, and (3) regularities in the spectral power and phase profiles of SWCs can be used to detect waveforms possessing SWC-like morphology."	"De novo expression of Nav1.7 in injured putative proprioceptive afferents: Multiple tetrodotoxin-sensitive sodium channels are retained in the rat dorsal root after spinal nerve ligation. Tetrodotoxin-sensitive (TTX-s) spontaneous activity is recorded from the dorsal roots after peripheral nerve injury. Primary sensory neurons in the dorsal root ganglion (DRG) express multiple TTX-s voltage-gated sodium channel α-subunits (Navs). Since Nav1.3 increases, whereas all other Navs decrease, in the DRG neurons after peripheral nerve lesion, Nav1.3 is proposed to be critical for the generation of these spontaneous discharges and the contributions of other Navs have been ignored. Here, we re-evaluate the changes in expression of three other TTX-s Navs, Nav1.1, Nav1.6 and Nav1.7, in the injured 5th lumbar (L5) primary afferent components following L5 spinal nerve ligation (SNL) using in situ hybridization histochemistry and immunohistochemistry. While the overall signal intensities for these Nav mRNAs decreased, many injured DRG neurons still expressed these transcripts at clearly detectable levels. All these Nav proteins accumulated at the proximal stump of the ligated L5 spinal nerve. The immunostaining patterns of Nav1.6 and Nav1.7 associated with the nodes of Ranvier were maintained in the ipsilateral L5 dorsal root. Interestingly, putative proprioceptive neurons characterized by α3 Na+/K+ ATPase-immunostaining specifically lacked Nav1.7 mRNA in naïve DRG but displayed de novo expression of this transcript following SNL. Nav1.7-immunoreactive fibers were significantly increased in the ipsilateral gracile nucleus where central axonal branches of the injured A-fiber afferents terminated. These data indicate that multiple TTX-s channel subunits could contribute to the generation and propagation of the spontaneous discharges in the injured primary afferents. Specifically, Nav1.7 may cause some functional changes in sensory processing in the gracile nucleus after peripheral nerve injury."	"Glial reaction in the spinal cord of the degenerating muscle mouse (Scn8a (dmu)). The glial reaction was investigated in the spinal cord of the degenerating muscle (dmu) mouse, which harbours a null mutation in the voltage-gated sodium channel gene Scn8a and does not produce functional Nav1.6 channel. Glial fibrillary acidic protein (GFAP)- and Iba1-immunoreactivity were detected in numerous cells throughout the spinal cord of wild type mice. These cells had small cell bodies and ramified processes. The dmu mutation increased the number of GFAP-immunoreactive (-IR) cells and the length of their processes in the ventral horn but not in the dorsal horn of the lumbar spinal cord. The number of Iba1-IR cells was similar in cervical and lumbar spinal cords of wild type and dmu mice. However, Iba1-IR processes and their branches became thinner and showed a fine varinose appearance in dmu mice. The length of Iba1-IR processes was significantly reduced in dorsal and ventral horns of dmu mice. Double immunofluorescence also demonstrated the relationship between glial cells and motor neurons containing calcitonin gene-related peptide (CGRP), a marker for their degeneration. The dmu mutation caused increase in the length of GFAP-IR processes surrounding CGRP-IR motor neurons in the ventral horn. However, the thickness and length of Iba1-IR processes around CGRP-IR motor neurons were reduced by the mutation. The present study suggests that the dmu mutation causes astrocytic activation and microglial inactivation in the spinal cord. These changes may be associated with degeneration and activity of motor and sensory neuron in dmu mice."	"Characterization of a de novo SCN8A mutation in a patient with epileptic encephalopathy. Recently, de novo SCN8A missense mutations have been identified as a rare dominant cause of epileptic encephalopathies (EIEE13). Functional studies on the first described case demonstrated gain-of-function effects of the mutation. We describe a novel de novo mutation of SCN8A in a patient with epileptic encephalopathy, and functional characterization of the mutant protein. Whole exome sequencing was used to discover the variant. We generated a mutant cDNA, transfected HEK293 cells, and performed Western blotting to assess protein stability. To study channel functional properties, patch-clamp experiments were carried out in transfected neuronal ND7/23 cells. The proband exhibited seizure onset at 6 months of age, diffuse brain atrophy, and more profound developmental impairment than the original case. The mutation p.Arg233Gly in the voltage sensing transmembrane segment D1S4 was present in the proband and absent in both parents. This mutation results in a temperature-sensitive reduction in protein expression as well as reduced sodium current amplitude and density and a relative increased response to a slow ramp stimulus, though this did not result in an absolute increased current at physiological temperatures. The new de novo SCN8A mutation is clearly deleterious, resulting in an unstable protein with reduced channel activity. This differs from the gain-of-function attributes of the first SCN8A mutation in epileptic encephalopathy, pointing to heterogeneity of mechanisms. Since Nav1.6 is expressed in both excitatory and inhibitory neurons, a differential effect of a loss-of-function of Nav1.6 Arg223Gly on inhibitory interneurons may underlie the epilepsy phenotype in this patient."	"Convulsive seizures and SUDEP in a mouse model of SCN8A epileptic encephalopathy. De novo mutations of the voltage-gated sodium channel gene SCN8A have recently been recognized as a cause of epileptic encephalopathy, which is characterized by refractory seizures with developmental delay and cognitive disability. We previously described the heterozygous SCN8A missense mutation p.Asn1768Asp in a child with epileptic encephalopathy that included seizures, ataxia, and sudden unexpected death in epilepsy (SUDEP). The mutation results in increased persistent sodium current and hyperactivity of transfected neurons. We have characterized a knock-in mouse model expressing this dominant gain-of-function mutation to investigate the pathology of the altered channel in vivo. The mutant channel protein is stable in vivo. Heterozygous Scn8a(N1768D/+) mice exhibit seizures and SUDEP, confirming the causality of the de novo mutation in the proband. Using video/EEG analysis, we detect ictal discharges that coincide with convulsive seizures and myoclonic jerks. Prior to seizure onset, heterozygous mutants are not defective in motor learning or fear conditioning, but do exhibit mild impairment of motor coordination and social discrimination. Homozygous mutant mice exhibit earlier seizure onset than heterozygotes and more rapid progression to death. Analysis of the intermediate phenotype of functionally hemizygous Scn8a(N1768D/-) mice indicates that severity is increased by a double dose of mutant protein and reduced by the presence of wild-type protein. Scn8a(N1768D) mutant mice provide a model of epileptic encephalopathy that will be valuable for studying the in vivo effects of hyperactive Nav1.6 and the response to therapeutic interventions. "	"The sodium channel isoform transition at developing nodes of Ranvier in the peripheral nervous system: dependence on a Genetic program and myelination-induced cluster formation. Among sodium channel isoforms, Nav 1.6 is selectively expressed at nodes of Ranvier in both the CNS and the PNS. However, non-Nav 1.6 isoforms such as Nav 1.2 are also present at the CNS nodes in early development but gradually diminish later. It has been proposed that myelination is part of a glia-neuron signaling mechanism that produces this change in nodal isoform expression. The present study used isoform-specific antibodies to demonstrate that, in the PNS, four other neuronal sodium channel isoforms were also clustered at nodes in early development but eventually disappeared during maturation. To study possible roles of myelination in such transitions, we investigated the nodal expression of selected isoforms in the sciatic nerve of the transgenic mouse Oct6(ΔSCE/βgeo) , whose PNS myelination is delayed in the first postnatal week but eventually resumes. We found that delayed myelination retarded the formation of nodal channel clusters and altered the expression-elimination patterns of sodium channel isoforms, resulting in significantly reduced expression levels of non-Nav 1.6 isoforms in such delayed nodes. However, delayed myelination did not significantly affect the gene expression, protein synthesis, or axonal trafficking of any isoform studied. Rather, we found evidence for a developmentally programmed increase in neuronal Nav 1.6 expression with constant or decreasing neuronal expression of other isoforms that were unaffected by delayed myelination. Thus our results suggest that, in the developmental isoform switch of the PNS, myelination does not play a signaling role as that proposed for the CNS but rather serves only to form nodal clusters from existing isoform pools."	"Whole-exome sequencing broadens the phenotypic spectrum of rare pediatric epilepsy: a retrospective study. Whole-exome sequencing (WES) has transformed our ability to detect mutations causing rare diseases. FORGE (Finding Of Rare disease GEnes) and Care4Rare Canada are nation-wide projects focused on identifying disease genes using WES and translating this technology to patient care. Rare forms of epilepsy are well-suited for WES and we retrospectively selected FORGE and Care4Rare families with clinical descriptions that included childhood-onset epilepsy or seizures not part of a recognizable syndrome or an early-onset encephalopathy where standard-of-care investigations were unrevealing. Nine families met these criteria and a diagnosis was made in seven, and potentially eight, of the families. In the eight families we identified mutations in genes associated with known neurological and epilepsy disorders: ASAH1, FOLR1, GRIN2A (two families), SCN8A, SYNGAP1 and SYNJ1. A novel and rare mutation was identified in KCNQ2 and was likely responsible for the benign seizures segregating in the family though additional evidence would be required to be definitive. In retrospect, the clinical presentation of four of the patients was considered atypical, thereby broadening the phenotypic spectrum of these conditions. Given the extensive clinical and genetic heterogeneity associated with epilepsy, our findings suggest that WES may be considered when a specific gene is not immediately suspected as causal. "	"Contribution of sodium channels to lamellipodial protrusion and Rac1 and ERK1/2 activation in ATP-stimulated microglia. Microglia are motile resident immune cells of the central nervous system (CNS) that continuously explore their territories for threats to tissue homeostasis. Following CNS insult (e.g., cellular injury, infection, or ischemia), microglia respond to signals such as ATP, transform into an activated state, and migrate towards the threat. Directed migration is a complex and highly-coordinated process involving multiple intersecting cellular pathways, including signal transduction, membrane adhesion and retraction, cellular polarization, and rearrangement of cytoskeletal elements. We previously demonstrated that the activity of sodium channels contributes to ATP-induced migration of microglia. Here we show that TTX-sensitive sodium channels, specifically NaV 1.6, participate in an initial event in the migratory process, i.e., the formation in ATP-stimulated microglia of polymerized actin-rich membrane protrusions, lamellipodia, containing accumulations of Rac1 and phosphorylated ERK1/2. We also examined Ca(2+) transients in microglia and found that blockade of sodium channels with TTX produced a downward shift in the level of [Ca(2+) ]i during the delayed, slower recovery of [Ca(2+) ]i following ATP stimulation. These observations demonstrate a modulatory role of sodium channels on Ca(2+) transients in microglia that are likely to affect down-stream signaling cascades. Consistent with these observations, we demonstrate that ATP-induced microglial migration is mediated via Rac1 and ERK1/2, but not p38α/β and JNK, dependent pathways, and that activation of both Rac1 and ERK1/2 is modulated by sodium channel activity. Our results provide evidence for a direct link between sodium channel activity and modulation of Rac1 and ERK1/2 activation in ATP-stimulated microglia, possibly by regulating Ca(2+) transients."	"Early onset epileptic encephalopathy caused by de novo SCN8A mutations. De novo SCN8A mutations have been reported in patients with epileptic encephalopathy. Herein we report seven patients with de novo heterozygous SCN8A mutations, which were found in our comprehensive genetic analysis (target capture or whole-exome sequencing) for early onset epileptic encephalopathies (EOEEs). A total of 163 patients with EOEEs without mutations in known genes, including 6 with malignant migrating partial seizures in infancy (MMPSI), and 60 with unclassified EOEEs, were analyzed by target capture (28 samples) or whole-exome sequencing (135 samples). We identified de novo SCN8A mutations in 7 patients: 6 of 60 unclassified EOEEs (10.0%), and one of 6 MMPSI cases (16.7%). The mutations were scattered through the entire gene: four mutations were located in linker regions, two in the fourth transmembrane segments, and one in the C-terminal domain. The type of the initial seizures was variable including generalized tonic-clonic, atypical absence, partial, apneic attack, febrile convulsion, and loss of tone and consciousness. Onset of seizures was during the neonatal period in two patients, and between 3 and 7 months of age in five patients. Brain magnetic resonance imaging (MRI) showed cerebellar and cerebral atrophy in one and six patients, respectively. All patients with SCN8A missense mutations showed initially uncontrollable seizures by any drugs, but eventually one was seizure-free and three were controlled at the last examination. All patients showed developmental delay or regression in infancy, resulting in severe intellectual disability. Our data reveal that SCN8A mutations can cause variable phenotypes, most of which can be diagnosed as unclassified EOEEs, and rarely as MMPSI. Together with previous reports, our study further indicates that genetic testing of SCN8A should be considered in children with unclassified severe epilepsy."	"A novel de novo mutation of SCN8A (Nav1.6) with enhanced channel activation in a child with epileptic encephalopathy. Rare de novo mutations of sodium channels are thought to be an important cause of sporadic epilepsy. The well established role of de novo mutations of sodium channel SCN1A in Dravet Syndrome supports this view, but the etiology of many cases of epileptic encephalopathy remains unknown. We sought to identify the genetic cause in a patient with early onset epileptic encephalopathy by whole exome sequencing of genomic DNA. The heterozygous mutation c. 2003C&gt;T in SCN8A, the gene encoding sodium channel Nav1.6, was detected in the patient but was not present in either parent. The resulting missense substitution, p.Thr767Ile, alters an evolutionarily conserved residue in the first transmembrane segment of channel domain II. The electrophysiological effects of this mutation were assessed in neuronal cells transfected with mutant or wildtype cDNA. The mutation causes enhanced channel activation, with a 10mV depolarizing shift in voltage dependence of activation as well as increased ramp current. In addition, pyramidal hippocampal neurons expressing the mutant channel exhibit increased spontaneous firing with PDS-like complexes as well as increased frequency of evoked action potentials. The identification of this new gain-of-function mutation of Nav1.6 supports the inclusion of SCN8A as a causative gene in infantile epilepsy, demonstrates a novel mechanism for hyperactivity of Nav1.6, and further expands the role of de novo mutations in severe epilepsy. "	"Paternal germline mosaicism of a SCN2A mutation results in Ohtahara syndrome in half siblings. Ohtahara syndrome is a devastating early infantile epileptic encephalopathy caused by mutations in different genes. We describe a patient with Ohtahara syndrome who presented on the first day of life with refractory tonic seizures and a suppression-burst pattern on EEG. The patient developed severe microcephaly, and never achieved any developmental milestones. He died at the age of 5 years. A de novo missense mutation (c. 4007C&gt;A, p.S1336Y) in SCN2A was found. Interestingly, the father has another son with Ohtahara syndrome from a different mother. The half brother carries the same SCN2A mutation, strongly suggesting paternal gonadal mosaicism of the mutation. The broad clinical spectrum of SCN2A mutations now includes Ohtahara syndrome. This is the first report of familial Ohtahara syndrome due to a germline mosaic SCN2A mutation. Somatic mosaicism, including germline, has been described in several epileptic encephalopathies such as Dravet syndrome, KCNQ2 neonatal epileptic encephalopathy, SCN8A epileptic encephalopathy and STXBP1 related Ohtahara syndrome. Mosaicism should be considered as one of the important inheritance patterns when counseling parents with a child with these devastating diseases. "	"[Localization and expression pattern of MDM2 in axon initial segments of neuron in rodent brain]. To investigate the murine double minute 2 (MDM2) localization and expression pattern in brain, immunohistochemistry, immunofluorescent staining and immunoblotting methods were used to analyze it in brains of Kunming mice during postnatal development, in brains of adult SD rats and in primarily cultured neurons. The distribution of MDM2 and markers of axon initial segment (AIS) was analyzed by double immunolabeling. In addition, Nutlin-3, a MDM2 antagonist, was injected into hippocampus to analyze the effect on the distribution of MDM2 and AIS protein Nav1.6 in AIS. The results showed that the dynamic expression patterns of MDM2 protein in cerebral cortex and hippocampus of Kunming mice after birth were different. However, it was similar that MDM2 was gradually enriched to AIS during postnatal development, especially after postnatal day 7. The MDM2 in AIS was also observed in different brain regions of adult SD rat brain and in primarily cultured neurons, where MDM2 was colocalized with AIS markers such as AnkG and Nav1.6. In addition, hippocampal injection of Nutlin-3 could induce the loss of the characteristic distribution of MDM2 in AIS. Moreover, Nutlin-3 not only caused a decrease of Nav1.6 distributing in AIS, but also disrupted the polarized distribution of MAP2 in neurons. These results indicate that MDM2 can be enriched at the AIS of adult rodent brain, which might play a role in regulation of the maintenance of AIS function and neuronal polarity. "	"Analgesic effects of clinically used compounds in novel mouse models of polyneuropathy induced by oxaliplatin and cisplatin. Peripheral neuropathy is the major dose-limiting side effect of cisplatin and oxaliplatin, and there are currently no effective treatments available. The aim of this study was to assess the pharmacological mechanisms underlying chemotherapy-induced neuropathy in novel animal models based on intraplantar administration of cisplatin and oxaliplatin and to systematically evaluate the analgesic efficacy of a range of therapeutics. Neuropathy was induced by a single intraplantar injection of cisplatin or oxaliplatin in C57BL/6J mice and assessed by quantification of mechanical and thermal allodynia. The pharmacological basis of cisplatin-induced neuropathy was characterized using a range of selective pharmacological inhibitors. The analgesic effects of phenytoin, amitriptyline, oxcarbazepine, mexiletine, topiramate, retigabine, gabapentin, fentanyl, and Ca(2+/)Mg(2+) were assessed 24 hours after induction of neuropathy. Intraplantar administration of cisplatin led to the development of mechanical allodynia, mediated through Nav1.6-expressing sensory neurons. Unlike intraplantar injection of oxaliplatin, cold allodynia was not observed with cisplatin, consistent with clinical observations. Surprisingly, only fentanyl was effective at alleviating cisplatin-induced mechanical allodynia despite a lack of efficacy in oxaliplatin-induced cold allodynia. Conversely, lamotrigine, phenytoin, retigabine, and gabapentin were effective at reversing oxaliplatin-induced cold allodynia but had no effect on cisplatin-induced mechanical allodynia. Oxcarbazepine, amitriptyline, mexiletine, and topiramate lacked efficacy in both models of acute chemotherapy-induced neuropathy. This study established a novel animal model of cisplatin-induced mechanical allodynia consistent with the A-fiber neuropathy seen clinically. Systematic assessment of a range of therapeutics identified several candidates that warrant further clinical investigation."	"Role of the hippocampus in Nav1.6 (Scn8a) mediated seizure resistance. SCN1A mutations are the main cause of the epilepsy disorders Dravet syndrome (DS) and genetic epilepsy with febrile seizures plus (GEFS+). Mutations that reduce the activity of the mouse Scn8a gene, in contrast, are found to confer seizure resistance and extend the lifespan of mouse models of DS and GEFS+. To investigate the mechanism by which reduced Scn8a expression confers seizure resistance, we induced interictal-like burst discharges in hippocampal slices of heterozygous Scn8a null mice (Scn8a(med/+)) with elevated extracellular potassium. Scn8a(med/+) mutants exhibited reduced epileptiform burst discharge activity after P20, indicating an age-dependent increased threshold for induction of epileptiform discharges. Scn8a deficiency also reduced the occurrence of burst discharges in a GEFS+ mouse model (Scn1a(R1648H/+)). There was no detectable change in the expression levels of Scn1a (Nav1.1) or Scn2a (Nav1.2) in the hippocampus of adult Scn8a(med/+) mutants. To determine whether the increased seizure resistance associated with reduced Scn8a expression was due to alterations that occurred during development, we examined the effect of deleting Scn8a in adult mice. Global Cre-mediated deletion of a heterozygous floxed Scn8a allele in adult mice was found to increase thresholds to chemically and electrically induced seizures. Finally, knockdown of Scn8a gene expression in the adult hippocampus via lentiviral Cre injection resulted in a reduction in the number of EEG-confirmed seizures following the administration of picrotoxin. Our results identify the hippocampus as an important structure in the mediation of Scn8a-dependent seizure protection and suggest that selective targeting of Scn8a activity might be efficacious in patients with epilepsy. "	"Physiological and genetic analysis of multiple sodium channel variants in a model of genetic absence epilepsy. In excitatory neurons, SCN2A (NaV1.2) and SCN8A (NaV1.6) sodium channels are enriched at the axon initial segment. NaV1.6 is implicated in several mouse models of absence epilepsy, including a missense mutation identified in a chemical mutagenesis screen (Scn8a(V929F)). Here, we confirmed the prior suggestion that Scn8a(V929F) exhibits a striking genetic background-dependent difference in phenotypic severity, observing that spike-wave discharge (SWD) incidence and severity are significantly diminished when Scn8a(V929F) is fully placed onto the C57BL/6J strain compared with C3H. Examination of sequence differences in NaV subunits between these two inbred strains suggested NaV1.2(V752F) as a potential source of this modifier effect. Recognising that the spatial co-localisation of the NaV channels at the axon initial segment (AIS) provides a plausible mechanism for functional interaction, we tested this idea by undertaking biophysical characterisation of the variant NaV channels and by computer modelling. NaV1.2(V752F) functional analysis revealed an overall gain-of-function and for NaV1.6(V929F) revealed an overall loss-of-function. A biophysically realistic computer model was used to test the idea that interaction between these variant channels at the AIS contributes to the strain background effect. Surprisingly this modelling showed that neuronal excitability is dominated by the properties of NaV1.2(V752F) due to &quot;functional silencing&quot; of NaV1.6(V929F) suggesting that these variants do not directly interact. Consequent genetic mapping of the major strain modifier to Chr 7, and not Chr 2 where Scn2a maps, supported this biophysical prediction. While a NaV1.6(V929F) loss of function clearly underlies absence seizures in this mouse model, the strain background effect is apparently not due to an otherwise tempting Scn2a variant, highlighting the value of combining physiology and genetics to inform and direct each other when interrogating genetic complex traits such as absence epilepsy."	"The endocannabinoid anandamide inhibits voltage-gated sodium channels Nav1.2, Nav1.6, Nav1.7, and Nav1.8 in Xenopus oocytes. Anandamide is an endocannabinoid that regulates multiple physiological functions by pharmacological actions, in a manner similar to marijuana. Recently, much attention has been paid to the analgesic effect of endocannabinoids in terms of identifying new pharmacotherapies for refractory pain management, but the mechanisms of the analgesic effects of anandamide are still obscure. Voltage-gated sodium channels are believed to play important roles in inflammatory and neuropathic pain. We investigated the effects of anandamide on 4 neuronal sodium channel α subunits, Nav1.2, Nav1.6, Nav1.7, and Nav1.8, to explore the mechanisms underlying the antinociceptive effects of anandamide. We studied the effects of anandamide on Nav1.2, Nav1.6, Nav1.7, and Nav1.8 α subunits with β1 subunits by using whole-cell, 2-electrode, voltage-clamp techniques in Xenopus oocytes. Anandamide inhibited sodium currents of all subunits at a holding potential causing half-maximal current (V1/2) in a concentration-dependent manner. The half-maximal inhibitory concentration values for Nav1.2, Nav1.6, Nav1.7, and Nav1.8 were 17, 12, 27, and 40 μmol/L, respectively, indicating an inhibitory effect on Nav1.6, which showed the highest potency. Anandamide raised the depolarizing shift of the activation curve as well as the hyperpolarizing shift of the inactivation curve in all α subunits, suggesting that sodium current inhibition was due to decreased activation and increased inactivation. Moreover, anandamide showed a use-dependent block in Nav1.2, Nav1.6, and Nav1.7 but not Nav1.8. Anandamide inhibited the function of α subunits in neuronal sodium channels Nav1.2, Nav1.6, Nav1.7, and Nav1.8. These results help clarify the mechanisms of the analgesic effects of anandamide."	"Risperidone inhibits voltage-gated sodium channels. In contrast to several other antipsychotic drugs, the effects of the atypical antipsychotic risperidone on voltage-gated sodium channels have not been characterized yet, despite its wide clinical use. Here we performed whole-cell voltage-clamp recordings to analyze the effects of risperidone on voltage-dependent sodium currents of N1E-115 mouse neuroblastoma cells carried by either endogenous sodium channels or transfected NaV1.6 channels. Risperidone inhibited both endogenous and NaV1.6-mediated sodium currents at concentrations that are expected around active synaptic release sites owing to its strong accumulation in synaptic vesicles. When determined for pharmacologically isolated NaV1.6, risperidone inhibited peak inward currents with an IC50 of 49 µM. Channel block occurred in a state-dependent fashion with risperidone displaying a fourfold higher affinity for the inactivated state than for the resting state. As a consequence of the low state dependence, risperidone produced only a small, but significant leftward shift of the steady-state inactivation curve and it required concentrations ≥ 30 µM to significantly slow the time course of recovery from inactivation. Risperidone (10 µM) gave rise to a pronounced use-dependent block when sodium currents were elicited by trains of brief voltage pulses at higher frequencies. Our data suggest that, compared to other antipsychotic drugs as well as to local anesthetics and sodium channel-targeting anticonvulsants, risperidone displays an unusual blocking profile where a rather low degree of state dependence is associated with a prominent use-dependent block."	"Whole-genome sequencing identifies genomic heterogeneity at a nucleotide and chromosomal level in bladder cancer. Using complete genome analysis, we sequenced five bladder tumors accrued from patients with muscle-invasive transitional cell carcinoma of the urinary bladder (TCC-UB) and identified a spectrum of genomic aberrations. In three tumors, complex genotype changes were noted. All three had tumor protein p53 mutations and a relatively large number of single-nucleotide variants (SNVs; average of 11.2 per megabase), structural variants (SVs; average of 46), or both. This group was best characterized by chromothripsis and the presence of subclonal populations of neoplastic cells or intratumoral mutational heterogeneity. Here, we provide evidence that the process of chromothripsis in TCC-UB is mediated by nonhomologous end-joining using kilobase, rather than megabase, fragments of DNA, which we refer to as &quot;stitchers,&quot; to repair this process. We postulate that a potential unifying theme among tumors with the more complex genotype group is a defective replication-licensing complex. A second group (two bladder tumors) had no chromothripsis, and a simpler genotype, WT tumor protein p53, had relatively few SNVs (average of 5.9 per megabase) and only a single SV. There was no evidence of a subclonal population of neoplastic cells. In this group, we used a preclinical model of bladder carcinoma cell lines to study a unique SV (translocation and amplification) of the gene glutamate receptor ionotropic N-methyl D-aspertate as a potential new therapeutic target in bladder cancer. "	"The Nav channel bench series: Plasmid preparation. Research involving recombinant voltage-gated sodium (Nav) channels has unique challenges. Multiple factors contribute, but undoubtedly at the top of the list is these channels' DNA instability. Once introduced into bacterial hosts, Nav channel plasmid DNA will almost invariably emerge mutagenized and unusable, unless special conditions are adopted. This is particularly true for Nav1.1 (gene name SCN1A), Nav1.2 (SCN2A), and Nav1.6 (SCN8A), but less so for Nav1.4 (SCN4A) and Nav1.5 (SCN5A) while other Nav channel isoforms such as Nav1.7 (SCN9A) lie in between. The following recommendations for Nav plasmid DNA amplification and preparation address this problem. Three points are essential:•Bacterial propagation using Stbl2 cells at or below 30 °C.•Bias toward slow-growing, small bacterial colonies.•Comprehensive sequencing of the entire Nav channel coding region. "	"De novo SCN8A mutation identified by whole-exome sequencing in a boy with neonatal epileptic encephalopathy, multiple congenital anomalies, and movement disorders. Epileptic encephalopathies represent a clinically and genetically heterogeneous group of disorders, majority of which are of unknown etiology. We used whole-exome sequencing of a parent-offspring trio to identify the cause of early infantile epileptic encephalopathy in a boy with neonatal seizures, movement disorders, and multiple congenital anomalies who died at the age of 17 months because of respiratory illness and identified a de novo heterozygous missense mutation (c.3979A&gt;G; p.Ile1327Val) in SCN8A (voltage-gated sodium-channel type VIII alpha subunit) gene. The variant was confirmed in the proband with Sanger sequencing. Because the clinical phenotype associated with SCN8A mutations has previously been identified only in a few patients with or without epileptic seizures, these data together with our results suggest that mutations in SCN8A can lead to early infantile epileptic encephalopathy with a broad phenotypic spectrum. Additional investigations will be worthwhile to determine the prevalence and contribution of SCN8A mutations to epileptic encephalopathies. "	"Introducing treatment strategy for cerebellar ataxia in mutant med mice: combination of acetazolamide and 4-aminopyridine. Purkinje neurons are the sole output neuron of the cerebellar cortex, and they generate high-frequency action potentials. Electrophysiological dysfunction of Purkinje neurons causes cerebellar ataxia. Mutant med mice have the lack of expression of the Scn8a gene. This gene encodes the NaV1.6 protein. In med Purkinje neurons, regular high-frequency firing is slowed, and med mice are ataxic. The aim of this study was to propose the neuroprotective drugs which could be useful for ataxia treatment in med mice, and to investigate the neuroprotective effects of these drugs by simulation. Simulation results showed that Kv4 channel inhibitors and BK channel activators restored the normal electrophysiological properties of the med Purkinje neurons. 4-Aminopyridine (4-AP) and acetazolamide (ACTZ) were proposed as neuroprotective drugs for Kv4 channel inhibitor and BK channel activator, respectively. "	"Modeling human epilepsy by TALEN targeting of mouse sodium channel Scn8a. To evaluate the efficiency of TALEN technology for introducing mutations into the mouse genome we targeted Scn8a, a member of a multigene family with nine closely related paralogs. Our goal was to generate a model of early onset epileptic encephalopathy by introduction of the Scn8a missense mutation p.Asn1768Asp. We used a pair of TALENs that were highly active in transfected cells. The targeting template for homologous recombination contained a 4 kb genomic fragment. Microinjection of TALENs with the targeting construct into the pronucleus of 350 fertilized mouse eggs generated 67 live-born potential founders, of which 5 were heterozygous for the pathogenic mutation, a yield of 7% correctly targeted mice. Twenty-four mice carried one or two Scn8a indels, including 12 frameshift mutations and the novel amino acid deletion p.Asn1759del. Nine off-site mutations in the paralogs sodium channel genes Scn5a and Scn4a were identified. The data demonstrate the feasibility and efficiency of targeting members of multigene families using TALENs. The Scn8a(tm) (1768DMm) mouse model will be useful for investigation of the pathogenesis and therapy of early onset seizure disorders."	"Skin-derived precursor Schwann cell myelination capacity in focal tibial demyelination. Skin-derived precursor cells (SKPs) are neural crest progenitor cells that can attain a Schwann cell-like phenotype through in vitro techniques (SKP-SCs). We hypothesized that SKP-SCs could produce mature myelin and, in doing so, facilitate the recovery of a focal demyelination injury. We unilaterally injected DiI-labeled, green fluorescent protein (GFP)-producing SKP-SCs into the tibial nerves of 10 adult Lewis rats (with contralateral media control), 9 days after bilateral doxorubicin injury (0.38 μg). Tibial compound motor action potentials (CMAPs) were followed for 57 days. A separate morphometric cohort also included a Schwann cell injection group. SKP-injected nerves recovered fastest in terms of electrophysiology and morphometry. SKP-SCs formed morphologically mature myelin, accounting for 15.3 ± 5.3% of the total myelin in SKP-SC-injected nerves. SKP-SCs are robustly capable of myelination. They improve the recovery of a focal tibial nerve demyelination model by myelinating a measured percentage of axons."	"Combination of BK channel opener and Kv4 channel inhibitor for treatment of cerebellar ataxia in mutant med mice. NA"	"Sodium channel SCN8A (Nav1.6): properties and de novo mutations in epileptic encephalopathy and intellectual disability. The sodium channel Nav1.6, encoded by the gene SCN8A, is one of the major voltage-gated channels in human brain. The sequences of sodium channels have been highly conserved during evolution, and minor changes in biophysical properties can have a major impact in vivo. Insight into the role of Nav1.6 has come from analysis of spontaneous and induced mutations of mouse Scn8a during the past 18 years. Only within the past year has the role of SCN8A in human disease become apparent from whole exome and genome sequences of patients with sporadic disease. Unique features of Nav1.6 include its contribution to persistent current, resurgent current, repetitive neuronal firing, and subcellular localization at the axon initial segment (AIS) and nodes of Ranvier. Loss of Nav1.6 activity results in reduced neuronal excitability, while gain-of-function mutations can increase neuronal excitability. Mouse Scn8a (med) mutants exhibit movement disorders including ataxia, tremor and dystonia. Thus far, more than ten human de novo mutations have been identified in patients with two types of disorders, epileptic encephalopathy and intellectual disability. We review these human mutations as well as the unique features of Nav1.6 that contribute to its role in determining neuronal excitability in vivo. A supplemental figure illustrating the positions of amino acid residues within the four domains and 24 transmembrane segments of Nav1.6 is provided to facilitate the location of novel mutations within the channel protein. "	"Scn8a voltage-gated sodium channel mutation alters seizure and anxiety responses to acute stress. Stress is known to trigger seizures in patients with epilepsy, highlighting the physiological stress response as a possible therapeutic target for epilepsy treatment. Nevertheless, little is currently known about how a genetic predisposition to epilepsy interacts with the stress response to influence seizure outcome. To address this question, we examined the effect of acute stress on seizure outcome in mice with mutations in the voltage-gated sodium channel (VGSC) gene Scn8a. Scn8a mutants display spontaneous spike-wave discharges (SWDs) characteristic of absence epilepsy. We saw that the baseline frequency of SWDs in Scn8a mutants correlates closely with the diurnal activity of the hypothalamic-pituitary-adrenal (HPA) axis, with a peak in seizure activity occurring at around the same time as the peak in corticosterone (1700-1900h). A 20-min acute restraint stress administered in the morning increases the frequency of spontaneous SWDs immediately following the stressor. Seizure frequency then returns to baseline levels within 3h after stressor exposure, but the subsequent evening peak in seizure frequency is delayed and broadened, changes that persist into the next evening and are accompanied by long-lasting changes in HPA axis activity. Scn8a mutants also show increased anxiety-like behavior in mildly stressful situations. A 20-min acute restraint stress can also increase the severity and duration of chemically induced seizures in Scn8a mutants, changes that differ from wild-type littermates. Overall, our data show that a voltage-gated sodium channel mutation can alter the behavioral response to stress and can interact with the stress response to alter seizure outcome. "	"Plasticity at axon initial segment of hippocampal CA3 neurons in rat after status epilepticus induced by lithium-pilocarpine. The axon initial segment (AIS) is a specialized membrane region in the axon of neurons wherein numerous specific voltage-gated sodium channels (VGSCs) are clustered and action potentials are initiated. The AIS is currently considered as a new plastic hotspot. We investigated the alterations in Nav1.6 (SCN8A) and its adapter protein ankyrin G in the AIS of the hippocampal cornu ammonis 3 (CA3) pyramidal cells of rat after status epilepticus induced by lithium-pilocarpine (PISE). Nav1.6 and ankyrin G were colocalized in the AIS of hippocampal CA3 pyramidal neurons. Compared with the control group, the protein and mRNA expression of Nav1.6 increased within 24 h and 60 days after PISE. By contrast, ankyrin G protein expression decreased slightly within 24 h but increased within 60 days, whereas ankyrin G mRNA increased within 24 h and 60 days after PISE. However, the protein and mRNA expression levels of Nav1.6 and ankyrin G within 7 days after PISE did not differ significantly with those of the control. Nav1.6 and ankyrin G may participate in the plastic changes in the AIS of hippocampus CA3 neurons after PISE and play potential roles in epileptogenesis by regulating neuronal excitability."	"FUS-regulated region- and cell-type-specific transcriptome is associated with cell selectivity in ALS/FTLD. FUS is genetically and pathologically linked to amyotrophic lateral sclerosis (ALS) and frontotemporal lobar degeneration (FTLD). To clarify the RNA metabolism cascade regulated by FUS in ALS/FTLD, we compared the FUS-regulated transcriptome profiles in different lineages of primary cells from the central nervous system. The profiles of FUS-mediated gene expression and alternative splicing in motor neurons were similar to those of cortical neurons, but not to those in cerebellar neurons despite the similarity of innate transcriptome signature. The gene expression profiles in glial cells were similar to those in motor and cortical neurons. We identified certain neurological diseases-associated genes, including Mapt, Stx1a, and Scn8a, among the profiles of gene expression and alternative splicing events regulated by FUS. Thus, FUS-regulated transcriptome profiles in each cell-type may determine cellular fate in association with FUS-mediated ALS/FTLD, and identified RNA targets for FUS could be therapeutic targets for ALS/FTLD. "	"NaV1.7: stress-induced changes in immunoreactivity within magnocellular neurosecretory neurons of the supraoptic nucleus. NaV1.7 is preferentially expressed, at relatively high levels, in peripheral neurons, and is often referred to as a &quot;peripheral&quot; sodium channel, and NaV1.7-specific blockers are under study as potential pain therapeutics which might be expected to have minimal CNS side effects. However, occasional reports of patients with NaV1.7 gain-of-function mutations and apparent hypothalamic dysfunction have appeared. The two sodium channels previously studied within the rat hypothalamic supraoptic nucleus, NaV1.2 and NaV1.6, display up-regulated expression in response to osmotic stress. Here we show that NaV1.7 is present within vasopressin-producing neurons and oxytocin-producing neurons within the rat hypothalamus, and demonstrate that the level of Nav1.7 immunoreactivity is increased in these cells in response to osmotic stress. NaV1.7 is present within neurosecretory neurons of rat supraoptic nucleus, where the level of immunoreactivity is dynamic, increasing in response to osmotic stress. Whether NaV1.7 levels are up-regulated within the human hypothalamus in response to environmental factors or stress, and whether NaV1.7 plays a functional role in human hypothalamus, is not yet known. Until these questions are resolved, the present findings suggest the need for careful assessment of hypothalamic function in patients with NaV1.7 mutations, especially when subjected to stress, and for monitoring of hypothalamic function as NaV1.7 blocking agents are studied."	"FGF14 localization and organization of the axon initial segment. The axon initial segment (AIS) is highly enriched in the structural proteins ankyrin G and βIV-spectrin, the pore-forming (α) subunits of voltage-gated sodium (Nav) channels, and functional Nav channels, and is critical for the initiation of action potentials. We previously reported that FGF14, a member of the intracellular FGF (iFGF) sub-family, is expressed in cerebellar Purkinje neurons and that the targeted inactivation of Fgf14 in mice (Fgf14(-/-)) results in markedly reduced Purkinje neuron excitability. Here, we demonstrate that FGF14 immunoreactivity is high in the AIS of Purkinje neurons and is distributed in a decreasing, proximal to distal, gradient. This pattern is evident early in the postnatal development of Purkinje neurons and is also observed in many other types of central neurons. In (Scn8a(med)) mice, which are deficient in expression of the Nav1.6 α subunit, FGF14 immunoreactivity is markedly increased and expanded in the Purkinje neuron AIS, in parallel with increased expression of the Nav1.1 (Scn1a) α subunit and expanded expression of βIV-spectrin. Although Nav1.1, FGF14, and βIV-spectrin are affected, ankyrin G immunoreactivity at the AIS of Scn8a(med) and wild type (WT) Purkinje neurons was not significantly different. In Fgf14(-/-) Purkinje neurons, βIV-spectrin and ankyrin G immunoreactivity at the AIS were also similar to WT Purkinje neurons, although both the Nav1.1 and Nav1.6 α subunits are modestly, but significantly (p&lt;0.005), reduced within sub-domains of the AIS, changes that may contribute to the reduced excitability of Fgf14(-/-) Purkinje neurons."	"Expression of sodium channel α subunits 1.1, 1.2 and 1.6 in rat hippocampus after kainic acid-induced epilepsy. Voltage-gated Na(+) channels control neuronal excitability and are the primary target for the majority of anti-epileptic drugs. This study investigates the (sub)cellular expression patterns of three important brain-associated Na(+) channel α subunits: NaV1.1, NaV1.2 and NaV1.6 during epileptogenesis (induced by kainic acid) using time points that cover the period from induction to the chronic phase of epilepsy. NaV1.1 immunoreactivity was persistently reduced at 1 day, 3 weeks and 2 months after SE in CA1 and CA3. About 50% of the NaV1.1-positive interneurons was lost at one day after SE in all regions investigated. In the hilus a similar reduction in NeuN-positive neurons was found, while in the CA1 and CA3 region the loss in NeuN-positive neurons only reached 15% in the chronic phase of epilepsy. This implies a stronger shift in the balance between excitation and inhibition toward excitation in the CA1 and CA3 region than in the hilus. NaV1.2 immunoreactivity in the inner molecular layer of the dentate gyrus was lower than control at 1 day after SE. It increased at 3 weeks and 2 months after SE in the inner molecular layer and overlapped with sprouted mossy fibers. NaV1.6 immunoreactivity in the dendritic region of CA1 and CA3 was persistently reduced at all time-points during epileptogenesis. Some astrocytes expressed NaV1.1 and NaV1.6 at 3 weeks after SE. Expression data alone are not sufficient to explain changes in network stability, or infer causality in epileptogenesis. These results demonstrate that hippocampal sub-regional expression of NaV1.1, NaV1.2 and NaV1.6 Na(+) channel α subunits is altered during epileptogenesis in a time and location specific way. This implies that understanding epileptogenesis has to take into account several distinct and type-specific changes in sodium channel expression."	"Whole genome SNP genotyping and exome sequencing reveal novel genetic variants and putative causative genes in congenital hyperinsulinism. Congenital hyperinsulinism of infancy (CHI) is a rare disorder characterized by severe hypoglycemia due to inappropriate insulin secretion. The genetic causes of CHI have been found in genes regulating insulin secretion from pancreatic β-cells; recessive inactivating mutations in the ABCC8 and KCNJ11 genes represent the most common events. Despite the advances in understanding the molecular pathogenesis of CHI, specific genetic determinants in about 50 % of the CHI patients remain unknown, suggesting additional locus heterogeneity. In order to search for novel loci contributing to the pathogenesis of CHI, we combined a family-based association study, using the transmission disequilibrium test on 17 CHI patients lacking mutations in ABCC8/KCNJ11, with a whole-exome sequencing analysis performed on 10 probands. This strategy allowed the identification of the potential causative mutations in genes implicated in the regulation of insulin secretion such as transmembrane proteins (CACNA1A, KCNH6, KCNJ10, NOTCH2, RYR3, SCN8A, TRPV3, TRPC5), cytosolic (ACACB, CAMK2D, CDKAL1, GNAS, NOS2, PDE4C, PIK3R3) and mitochondrial enzymes (PC, SLC24A6), and in four genes (CSMD1, SLC37A3, SULF1, TLL1) suggested by TDT family-based association study. Moreover, the exome-sequencing approach resulted to be an efficient diagnostic tool for CHI, allowing the identification of mutations in three causative CHI genes (ABCC8, GLUD1, and HNF1A) in four out of 10 patients. Overall, the present study should be considered as a starting point to design further investigations: our results might indeed contribute to meta-analysis studies, aimed at the identification/confirmation of novel causative or modifier genes. "	"[To the mechanisms of antiarrhythmic action of Allapinine]. Allapinine (lappaconitine hydrobromide) is a drug for the treatment of cardiac arrhythmias, it shows IC class antiarrhythmics properties. Its action mechanism is associated with blockade of Na(+)-channels with subsequent inhibition of the depolarization rate and, consequently, of the slowing and reducing the excitability of the cardiac conduction system. At the moment, it is not established, what factors are associated with side effects of Allapinine, and therefore it seems important to study the molecular mechanisms of its action. The target genes were identified in a rat model of aconitine-induced arrhythmia using a commercial kit &quot;Rat Neuroscience Ion Channels &amp; Transporters RT2 Profiler PCR Array&quot; (SABioscienses). Comparison of the expression of 84 genes in the experimental (aconitine arrhythmias/Allapinine) and control (aconitine arrhythmias/saline) animals revealed changes in the mRNA level of 18 genes. It has been shown an increase in mRNA levels of genes encoding various types of K(+)-channels (kcna6, kcnj1, kcnj4, kcnq2, kcnq4), Ca(2+)-channel (cacna 1g), vesicular acetylcholine transporter (slc 18a3). Decrease in the mRNA level was observed for genes encoding the Na(+)-channel (scn8a), K(+)-channels (kcne 1, kcns 1), membrane transporters (atp4a, slc6a9). Taken together, it appears that the effect of Allapinine on aconitine--induced arrhythmias is due to modulation of genes encoding Na(+)-, K(+)-, Ca(2+)-channels, conducting ionic currents (I(Na), I(to), I(Ks), I(K1), I(CaT)), which are involved in the formation of different phases of the action potential. The effect of the drug on the mRNA levels of genes encoding the acetylcholine and glycine transporters, suggesting the participation of these neurotransmitters in the mechanisms of anti-arrhythmic properties of the Allapinine."	"Pumilio-2 regulates translation of Nav1.6 to mediate homeostasis of membrane excitability. The ability to regulate intrinsic membrane excitability, to maintain consistency of action potential firing, is critical for stable neural circuit activity. Without such mechanisms, Hebbian-based synaptic plasticity could push circuits toward activity saturation or, alternatively, quiescence. Although now well documented, the underlying molecular components of these homeostatic mechanisms remain poorly understood. Recent work in the fruit fly, Drosophila melanogaster, has identified Pumilio (Pum), a translational repressor, as an essential component of one such mechanism. In response to changing synaptic excitation, Pum regulates the translation of the voltage-gated sodium conductance, leading to a concomitant adjustment in action potential firing. Although similar homeostatic mechanisms are operational in mammalian neurons, it is unknown whether Pum is similarly involved. In this study, we report that Pum2 is indeed central to the homeostatic mechanism regulating membrane excitability in rat visual cortical pyramidal neurons. Using RNA interference, we observed that loss of Pum2 leads to increased sodium current (I(Na)) and action potential firing, mimicking the response by these neurons to being deprived of synaptic depolarization. In contrast, increased synaptic depolarization results in increased Pum2 expression and subsequent reduction in INa and membrane excitability. We further show that Pum2 is able to directly bind the predominant voltage-gated sodium channel transcript (NaV1.6) expressed in these neurons and, through doing so, regulates translation of this key determinant of membrane excitability. Together, our results show that Pum2 forms part of a homeostatic mechanism that matches membrane excitability to synaptic depolarization in mammalian neurons."	"Block of a subset of sodium channels exacerbates experimental autoimmune encephalomyelitis. Voltage-gated sodium channels (Navs) are involved in several aspects of the pathogenesis of multiple sclerosis (MS). Within acute MS plaques, they are expressed along demyelinated axons. Studies in experimental autoimmune encephalomyelitis (EAE) demonstrated a neuroprotective effect of non-specific Nav blockers. Further, block of specific Navs involved in MS is suggested to have an advantage over non-specific blockers. We investigated the effects of the synthetic Midi peptide in EAE, as it potently and specifically blocks Nav1.2, Nav1.4 and Nav1.6. Administration of this Midi peptide worsens the clinical disease pattern and Nav1.2 and Nav1.6 expression levels were elevated in brain but not in spinal cord of Midi-treated mice, implicating that Navs play a complex role in the pathogenesis of EAE."	"An animal model of oxaliplatin-induced cold allodynia reveals a crucial role for Nav1.6 in peripheral pain pathways. Cold allodynia, pain in response to cooling, occurs during or within hours of oxaliplatin infusion and is thought to arise from a direct effect of oxaliplatin on peripheral sensory neurons. To characterize the pathophysiological mechanisms underlying acute oxaliplatin-induced cold allodynia, we established a new intraplantar oxaliplatin mouse model that rapidly developed long-lasting cold allodynia mediated entirely through tetrodotoxin-sensitive Nav pathways. Using selective inhibitors and knockout animals, we found that Nav1.6 was the key isoform involved, while thermosensitive transient receptor potential channels were not involved. Consistent with a crucial role for delayed-rectifier potassium channels in excitability in response to cold, intraplantar administration of the K(+)-channel blocker 4-aminopyridine mimicked oxaliplatin-induced cold allodynia and was also inhibited by Nav1.6 blockers. Intraplantar injection of the Nav1.6 activator Cn2 elicited spontaneous pain, mechanical allodynia, and enhanced 4-aminopyridine-induced cold allodynia. These findings provide behavioural evidence for a crucial role of Nav1.6 in multiple peripheral pain pathways including cold allodynia. "	"Targeted resequencing in epileptic encephalopathies identifies de novo mutations in CHD2 and SYNGAP1. Epileptic encephalopathies are a devastating group of epilepsies with poor prognosis, of which the majority are of unknown etiology. We perform targeted massively parallel resequencing of 19 known and 46 candidate genes for epileptic encephalopathy in 500 affected individuals (cases) to identify new genes involved and to investigate the phenotypic spectrum associated with mutations in known genes. Overall, we identified pathogenic mutations in 10% of our cohort. Six of the 46 candidate genes had 1 or more pathogenic variants, collectively accounting for 3% of our cohort. We show that de novo CHD2 and SYNGAP1 mutations are new causes of epileptic encephalopathies, accounting for 1.2% and 1% of cases, respectively. We also expand the phenotypic spectra explained by SCN1A, SCN2A and SCN8A mutations. To our knowledge, this is the largest cohort of cases with epileptic encephalopathies to undergo targeted resequencing. Implementation of this rapid and efficient method will change diagnosis and understanding of the molecular etiologies of these disorders. "	"Neonatal hyperoxia exposure disrupts axon-oligodendrocyte integrity in the subcortical white matter. The pathological mechanisms underlying neurological deficits observed in individuals born prematurely are not completely understood. A common form of injury in the preterm population is periventricular white matter injury (PWMI), a pathology associated with impaired brain development. To mitigate or eliminate PWMI, there is an urgent need to understand the pathological mechanism(s) involved on a neurobiological, structural, and functional level. Recent clinical data suggest that a percentage of premature infants experience relative hyperoxia. Using a hyperoxic model of premature brain injury, we have previously demonstrated that neonatal hyperoxia exposure in the mouse disrupts development of the white matter (WM) by delaying the maturation of the oligodendroglial lineage. In the present study, we address the question of how hyperoxia-induced alterations in WM development affect overall WM integrity and axonal function. We show that neonatal hyperoxia causes ultrastructural changes, including: myelination abnormalities (i.e., reduced myelin thickness and abnormal extramyelin loops) and axonopathy (i.e., altered neurofilament phosphorylation, paranodal defects, and changes in node of Ranvier number and structure). This disruption of axon-oligodendrocyte integrity results in the lasting impairment of conduction properties in the adult WM. Understanding the pathology of premature PWMI injury will allow for the development of interventional strategies to preserve WM integrity and function."	"The fibroblast growth factor 14·voltage-gated sodium channel complex is a new target of glycogen synthase kinase 3 (GSK3). The FGF14 protein controls biophysical properties and subcellular distribution of neuronal voltage-gated Na(+) (Nav) channels through direct binding to the channel C terminus. To gain insights into the dynamic regulation of this protein/protein interaction complex, we employed the split luciferase complementation assay to screen a small molecule library of kinase inhibitors against the FGF14·Nav1.6 channel complex and identified inhibitors of GSK3 as hits. Through a combination of a luminescence-based counter-screening, co-immunoprecipitation, patch clamp electrophysiology, and quantitative confocal immunofluorescence, we demonstrate that inhibition of GSK3 reduces the assembly of the FGF14·Nav channel complex, modifies FGF14-dependent regulation of Na(+) currents, and induces dissociation and subcellular redistribution of the native FGF14·Nav channel complex in hippocampal neurons. These results further emphasize the role of FGF14 as a critical component of the Nav channel macromolecular complex, providing evidence for a novel GSK3-dependent signaling pathway that might control excitability through specific protein/protein interactions. "	"Knockdown of sodium channel NaV1.6 blocks mechanical pain and abnormal bursting activity of afferent neurons in inflamed sensory ganglia. Inflammatory processes in the sensory ganglia contribute to many forms of chronic pain. We previously showed that local inflammation of the lumbar sensory ganglia rapidly leads to prolonged mechanical pain behaviors and high levels of spontaneous bursting activity in myelinated cells. Abnormal spontaneous activity of sensory neurons occurs early in many preclinical pain models and initiates many other pathological changes, but its molecular basis is not well understood. The sodium channel isoform NaV1.6 can underlie repetitive firing and excitatory persistent and resurgent currents. We used in vivo knockdown of this channel via local injection of siRNA to examine its role in chronic pain after local inflammation of the rat lumbar sensory ganglia. In normal dorsal root ganglion (DRG), quantitative polymerase chain reaction showed that cells capable of firing repetitively had significantly higher relative expression of NaV1.6. In inflamed DRG, spontaneously active bursting cells expressed high levels of NaV1.6 immunoreactivity. In vivo knockdown of NaV1.6 locally in the lumbar DRG at the time of DRG inflammation completely blocked development of pain behaviors and abnormal spontaneous activity, while having only minor effects on unmyelinated C cells. Current research on isoform-specific sodium channel blockers for chronic pain is largely focused on NaV1.8 because it is present primarily in unmyelinated C fiber nociceptors, or on NaV1.7 because lack of this channel causes congenital indifference to pain. However, the results suggest that NaV1.6 may be a useful therapeutic target for chronic pain and that some pain conditions may be mediated primarily by myelinated A fiber sensory neurons."	"A role for Schwann cell-derived neuregulin-1 in remyelination. After peripheral nerve injury, axons regenerate and become remyelinated by resident Schwann cells. However, myelin repair never results in the original myelin thickness, suggesting insufficient stimulation by neuronal growth factors. Upon testing this hypothesis, we found that axonal neuregulin-1 (NRG1) type III and, unexpectedly, also NRG1 type I restored normal myelination when overexpressed in transgenic mice. This led to the observation that Wallerian degeneration induced de novo NRG1 type I expression in Schwann cells themselves. Mutant mice lacking a functional Nrg1 gene in Schwann cells are fully myelinated but exhibit impaired remyelination in adult life. We suggest a model in which loss of axonal contact triggers denervated Schwann cells to transiently express NRG1 as an autocrine/paracrine signal that promotes Schwann cell differentiation and remyelination."	"Heterologous expression of a glial Kir channel (KCNJ10) in a neuroblastoma spinal cord (NSC-34) cell line. Heterologous expression of Kir channels offers a tool to modulate excitability of neurons which provide insight into Kir channel functions in general. Inwardly-rectifying K+ channels (Kir channels) are potential candidate proteins to hyperpolarize neuronal cell membranes. However, heterologous expression of inwardly-rectifying K+ channels has previously proven to be difficult. This was mainly due to a high toxicity of the respective Kir channel expression. We investigated the putative role of a predominantly glial-expressed, weakly rectifying Kir channel (Kir4.1 channel subunit; KCNJ10) in modulating electrophysiological properties of a motoneuron-like cell culture (NSC-34). Transfection procedures using an EGFP-tagged Kir4.1 protein in this study proved to have no toxic effects on NSC-34 cells. Using whole cell-voltage clamp, a substantial increase of inward rectifying K+ currents as well as hyperpolarization of the cell membrane was observed in Kir4.1-transfected cells. Na+ inward currents, observed in NSC-34 controls, were absent in Kir4.1/EGFP motoneuronal cells. The Kir4.1-transfection did not influence the NaV1.6 sodium channel expression. This study demonstrates the general feasibility of a heterologous expression of a weakly inward-rectifying K+ channel (Kir4.1 subunit) and shows that in vitro overexpression of Kir4.1 shifts electrophysiological properties of neuronal cells to a more glial-like phenotype and may therefore be a candidate tool to dampen excitability of neurons in experimental paradigms."	"Aberrant sodium channel activity in the complex seizure disorder of Celf4 mutant mice. Mice deficient for CELF4, a neuronal RNA-binding protein, have a complex seizure disorder that includes both convulsive and non-convulsive seizures, and is dependent upon Celf4 gene dosage and mouse strain background. It was previously shown that Celf4 is expressed predominantly in excitatory neurons, and that deficiency results in abnormal excitatory synaptic neurotransmission. To examine the physiological and molecular basis of this, we studied Celf4-deficient neurons in brain slices. Assessment of intrinsic properties of layer V cortical pyramidal neurons showed that neurons from mutant heterozygotes and homozygotes have a lower action potential (AP) initiation threshold and a larger AP gain when compared with wild-type neurons. Celf4 mutant neurons also demonstrate an increase in persistent sodium current (I(NaP)) and a hyperpolarizing shift in the voltage dependence of activation. As part of a related study, we find that CELF4 directly binds Scn8a mRNA, encoding sodium channel Na(v)1.6, the primary instigator of AP at the axon initial segment (AIS) and the main carrier of I(NaP). In the present study we find that CELF4 deficiency results in a dramatic elevation in the expression of Na(v)1.6 protein at the AIS in both null and heterozygous neurons. Together these results suggest that activation of Na(v)1.6 plays a crucial role in seizure generation in this complex model of neurological disease."	"Resurgent-like currents in mouse vas deferens myocytes are mediated by NaV1.6 voltage-gated sodium channels. Patch-clamp experiments were performed to investigate the molecular properties of resurgent-like currents in single smooth muscle cells dispersed from mouse vas deferens, utilizing both Na(V)1.6-null mice (Na(V)1.6(-/-)), lacking the expression of the Scn8a Na(+) channel gene, and their wild-type littermates (Na(V)1.6(+/+)). Na(V)1.6 immunoreactivity was clearly visible in dispersed smooth muscle cells obtained from Na(V)1.6(+/+), but not Na(V)1.6(-/-), vas deferens. Following a depolarization to +30 mV from a holding potential of -70 mV (to produce maximal inactivation of the Na(+) current), repolarization to voltages between -60 and +20 mV elicited a tetrodotoxin (TTX)-sensitive inward current in Na(V)1.6(+/+), but not Na(V)1.6(-/-), vas deferens myocytes. The resurgent-like current in Na(V)1.6(+/+) vas deferens myocytes peaked at approximately -20 mV in the current-voltage relationship. The peak amplitude of the resurgent-like current remained at a constant level when the membrane potential was repolarized to -20 mV following the application of depolarizing rectangular pulses to more positive potentials than +20 mV. 4,9-Anhydrotetrodotoxin (4,9-anhydroTTX), a selective Na(V)1.6 blocking toxin, purified from a crude mixture of TTX analogues by LC-FLD techniques, reversibly suppressed the resurgent-like currents. β-Pompilidotoxin, a voltage-gated Na(+) channel activator, evoked sustained resurgent-like currents in Na(V)1.6(+/+) but not Na(V)1.6(-/-) murine vas deferens myocytes. These results strongly indicate that, primarily, resurgent-like currents are generated as a result of Na(V)1.6 channel activity."	"Inhibition of NaV1.6 sodium channel currents by a novel series of 1,4-disubstituted-triazole derivatives obtained via copper-catalyzed click chemistry. We have synthesized and evaluated a series of 1,4-disubstituted-triazole derivatives for inhibition of the rat Na(V)1.6 sodium channel isoform, an isoform thought to play an important role in controlling neuronal firing. Starting from a series of 2,4(1H)-diarylimidazoles previously published, we decided to extend the SAR study by replacing the imidazole with a different heterocyclic scaffold and by varying the aryl substituents on the central aromatic ring. The 1,4-disubstituted 1,2,3-triazoles were prepared employing the copper-catalyzed azide-alkyne cycloaddition (CuAAC). Many of the new molecules were able to block the rNa(v)1.6 currents at 10 μM by over 20%, displaying IC(50) values ranging in the low micromolar, thus indicating that triazole can efficiently replace the central heterocyclic core. Moreover, the introduction of a long chain at C4 of the central triazole seems beneficial for increased rNa(v)1.6 current block, whereas the length of N1 substituent seems less crucial for inhibition, as long as a phenyl ring is not direcly connected to the triazole. These results provide additional information on the structural features necessary for block of the voltage-gated sodium channels. These new data will be exploited in the preparation of new compounds and could result in potentially useful AEDs."	"Sodium channels and the neurobiology of epilepsy. Voltage-gated sodium channels (VGSCs) are integral membrane proteins. They are essential for normal neurologic function and are, currently, the most common recognized cause of genetic epilepsy. This review summarizes the neurobiology of VGSCs, their association with different epilepsy syndromes, and the ways in which we can experimentally interrogate their function. The most important sodium channel subunit of relevance to epilepsy is SCN1A, in which over 650 genetic variants have been discovered. SCN1A mutations are associated with a variety of epilepsy syndromes; the more severe syndromes are associated with truncation or complete loss of function of the protein. SCN2A is another important subtype associated with epilepsy syndromes, across a range of severe and less severe epilepsies. This subtype is localized primarily to excitatory neurons, and mutations have a range of functional effects on the channel. SCN8A is the other main adult subtype found in the brain and has recently emerged as an epilepsy gene, with the first human mutation discovered in a severe epilepsy syndrome. Mutations in the accessory β subunits, thought to modulate trafficking and function of the α subunits, have also been associated with epilepsy. Genome sequencing is continuing to become more affordable, and as such, the amount of incoming genetic data is continuing to increase. Current experimental approaches have struggled to keep pace with functional analysis of these mutations, and it has proved difficult to build associations between disease severity and the precise effect on channel function. These mutations have been interrogated with a range of experimental approaches, from in vitro, in vivo, to in silico. In vitro techniques will prove useful to scan mutations on a larger scale, particularly with the advance of high-throughput automated patch-clamp techniques. In vivo models enable investigation of mutation in the context of whole brains with connected networks and more closely model the human condition. In silico models can help us incorporate the impact of multiple genetic factors and investigate epistatic interactions and beyond."	"Motor endplate disease affects neuromuscular junction maturation. Postnatal formation of the neuromuscular synapse requires complex interactions among nerve terminal, muscle fibres and terminal Schwann cells. In motor endplate disease (med) mice, neuromuscular transmission is severely impaired without alteration of axonal conduction and a lethal paralytic phenotype occurs during the postnatal period. The med phenotype appears at a crucial stage of the neuromuscular junction development, corresponding to the increase in terminal Schwann cell number, the elimination of the multiple innervations and the pre- and postsynaptic maturation. Here we investigated the early cellular and molecular consequences of the med mutation on neuromuscular junction development. We observed that cellular defects preceded overt clinical phenotype. The first detectable cellular effect of the mutation at the onset of the clinical phenotype was a drastic reduction in the number of terminal Schwann cells, in part due to an increase in glial apoptosis, and a delayed maturation of motor endplates. We also showed that, in terminally ill animals, mono-innervation was not achieved, synaptic vesicles had accumulated in the presynaptic compartment and, finally, the size of motor endplates was reduced. All together, our findings suggested that the clinical weakness in these mutant mice was likely to be related to postnatal structural abnormalities of the neuromuscular junction maturation."	"Anticancer drug oxaliplatin induces acute cooling-aggravated neuropathy via sodium channel subtype Na(V)1.6-resurgent and persistent current. Infusion of the chemotherapeutic agent oxaliplatin leads to an acute and a chronic form of peripheral neuropathy. Acute oxaliplatin neuropathy is characterized by sensory paresthesias and muscle cramps that are notably exacerbated by cooling. Painful dysesthesias are rarely reported for acute oxaliplatin neuropathy, whereas a common symptom of chronic oxaliplatin neuropathy is pain. Here we examine the role of the sodium channel isoform Na(V)1.6 in mediating the symptoms of acute oxaliplatin neuropathy. Compound and single-action potential recordings from human and mouse peripheral axons showed that cooling in the presence of oxaliplatin (30-100 μM; 90 min) induced bursts of action potentials in myelinated A, but not unmyelinated C-fibers. Whole-cell patch-clamp recordings from dissociated dorsal root ganglion (DRG) neurons revealed enhanced tetrodotoxin-sensitive resurgent and persistent current amplitudes in large, but not small, diameter DRG neurons when cooled (22 °C) in the presence of oxaliplatin. In DRG neurons and peripheral myelinated axons from Scn8a(med/med) mice, which lack functional Na(V)1.6, no effect of oxaliplatin and cooling was observed. Oxaliplatin significantly slows the rate of fast inactivation at negative potentials in heterologously expressed mNa(V)1.6r in ND7 cells, an effect consistent with prolonged Na(V) open times and increased resurgent and persistent current in native DRG neurons. This finding suggests that Na(V)1.6 plays a central role in mediating acute cooling-exacerbated symptoms following oxaliplatin, and that enhanced resurgent and persistent sodium currents may provide a general mechanistic basis for cold-aggravated symptoms of neuropathy."	"Interaction of voltage-gated sodium channel Nav1.6 (SCN8A) with microtubule-associated protein Map1b. The mechanism by which voltage-gated sodium channels are trafficked to the surface of neurons is not well understood. Our previous work implicated the cytoplasmic N terminus of the sodium channel Na(v)1.6 in this process. We report that the N terminus plus the first transmembrane segment (residues 1-153) is sufficient to direct a reporter to the cell surface. To identify proteins that interact with the 117-residue N-terminal domain, we carried out a yeast two-hybrid screen of a mouse brain cDNA library. Three clones containing overlapping portions of the light chain of microtubule-associated protein Map1b (Mtap1b) were recovered from the screen. Interaction between endogenous Na(v)1.6 channels and Map1b in mouse brain was confirmed by co-immunoprecipitation. Map1b did not interact with the N terminus of the related channel Na(v)1.1. Alanine-scanning mutagenesis of the Na(v)1.6 N terminus demonstrated that residues 77-80 (VAVP) contribute to interaction with Map1b. Co-expression of Na(v)1.6 with Map1b in neuronal cell line ND7/23 resulted in a 50% increase in current density, demonstrating a functional role for this interaction. Mutation of the Map1b binding site of Na(v)1.6 prevented generation of sodium current in transfected cells. The data indicate that Map1b facilitates trafficking of Na(v)1.6 to the neuronal cell surface."	"Differential state-dependent modification of inactivation-deficient Nav1.6 sodium channels by the pyrethroid insecticides S-bioallethrin, tefluthrin and deltamethrin. Pyrethroid insecticides disrupt nerve function by modifying the gating kinetics of transitions between the conducting and nonconducting states of voltage-gated sodium channels. Pyrethroids modify rat Na(v)1.6+β1+β2 channels expressed in Xenopus oocytes in both the resting state and in one or more states that require channel activation by repeated depolarization. The state dependence of modification depends on the pyrethroid examined: deltamethrin modification requires repeated channel activation, tefluthrin modification is significantly enhanced by repeated channel activation, and S-bioallethrin modification is unaffected by repeated activation. Use-dependent modification by deltamethrin and tefluthrin implies that these compounds bind preferentially to open channels. We constructed the rat Na(v)1.6Q3 cDNA, which contained the IFM/QQQ mutation in the inactivation gate domain that prevents fast inactivation and results in a persistently open channel. We expressed Na(v)1.6Q3+β1+β2 sodium channels in Xenopus oocytes and assessed the modification of open channels by pyrethroids by determining the effect of depolarizing pulse length on the normalized conductance of the pyrethroid-induced sodium tail current. Deltamethrin caused little modification of Na(v)1.6Q3 following short (10ms) depolarizations, but prolonged depolarizations (up to 150ms) caused a progressive increase in channel modification measured as an increase in the conductance of the pyrethroid-induced sodium tail current. Modification by tefluthrin was clearly detectable following short depolarizations and was increased by long depolarizations. By contrast modification by S-bioallethrin following short depolarizations was not altered by prolonged depolarization. These studies provide direct evidence for the preferential binding of deltamethrin and tefluthrin (but not S-bioallethrin) to Na(v)1.6Q3 channels in the open state and imply that the pyrethroid receptor of resting and open channels occupies different conformations that exhibit distinct structure-activity relationships."	"Mutually exclusive splicing regulates the Nav 1.6 sodium channel function through a combinatorial mechanism that involves three distinct splicing regulatory elements and their ligands. Mutually exclusive splicing is a form of alternative pre-mRNA processing that consists in the use of only one of a set of two or more exons. We have investigated the mechanisms involved in this process for exon 18 of the Na(v) 1.6 sodium channel transcript and its significance regarding gene-expression regulation. The 18N exon (neonatal form) has a stop codon in phase and although the mRNA can be detected by amplification methods, the truncated protein has not been observed. The switch from 18N to 18A (adult form) occurs only in a restricted set of neural tissues producing the functional channel while other tissues display the mRNA with the 18N exon also in adulthood. We demonstrate that the mRNA species carrying the stop codon is subjected to Nonsense-Mediated Decay, providing a control mechanism of channel expression. We also map a string of cis-elements within the mutually exclusive exons and in the flanking introns responsible for their strict tissue and temporal specificity. These elements bind a series of positive (RbFox-1, SRSF1, SRSF2) and negative (hnRNPA1, PTB, hnRNPA2/B1, hnRNPD-like JKTBP) splicing regulatory proteins. These splicing factors, with the exception of RbFox-1, are ubiquitous but their levels vary during development and differentiation, ensuing unique sets of tissue and temporal levels of splicing factors. The combinatorial nature of these elements is highlighted by the dominance of the elements that bind the ubiquitous factors over the tissue specific RbFox-1."	"CREB critically regulates action potential shape and duration in the adult mouse ventricle. The cAMP response element binding protein (CREB) belongs to the CREB/cAMP response element binding modulator/activating transcription factor 1 family of cAMP-dependent transcription factors mediating a regulation of gene transcription in response to cAMP. Chronic stimulation of β-adrenergic receptors and the cAMP-dependent signal transduction pathway by elevated plasma catecholamines play a central role in the pathogenesis of heart failure. Ion channel remodeling, particularly a decreased transient outward current (I(to)), and subsequent action potential (AP) prolongation are hallmarks of the failing heart. Here, we studied the role of CREB for ion channel regulation in mice with a cardiomyocyte-specific knockout of CREB (CREB KO). APs of CREB KO cardiomyocytes were prolonged with increased AP duration at 50 and 70% repolarization and accompanied by a by 51% reduction of I(to) peak amplitude as detected in voltage-clamp measurements. We observed a 29% reduction of Kcnd2/Kv4.2 mRNA in CREB KO cardiomyocytes mice while the other I(to)-related channel subunits Kv4.3 and KChIP2 were not different between groups. Accordingly, Kv4.2 protein was reduced by 37% in CREB KO. However, we were not able to detect a direct regulation of Kv4.2 by CREB. The I(to)-dependent AP prolongation went along with an increase of I(Na) and a decrease of I(Ca,L) associated with an upregulation of Scn8a/Nav1.6 and downregulation of Cacna1c/Cav1.2 mRNA in CREB KO cardiomyocytes. Our results from mice with cardiomyocyte-specific inactivation of CREB definitively indicate that CREB critically regulates the AP shape and duration in the mouse ventricle, which might have an impact on ion channel remodeling in situations of altered cAMP-dependent signaling like heart failure."	"De novo pathogenic SCN8A mutation identified by whole-genome sequencing of a family quartet affected by infantile epileptic encephalopathy and SUDEP. Individuals with severe, sporadic disorders of infantile onset represent an important class of disease for which discovery of the underlying genetic architecture is not amenable to traditional genetic analysis. Full-genome sequencing of affected individuals and their parents provides a powerful alternative strategy for gene discovery. We performed whole-genome sequencing (WGS) on a family quartet containing an affected proband and her unaffected parents and sibling. The 15-year-old female proband had a severe epileptic encephalopathy consisting of early-onset seizures, features of autism, intellectual disability, ataxia, and sudden unexplained death in epilepsy. We discovered a de novo heterozygous missense mutation (c.5302A&gt;G [p.Asn1768Asp]) in the voltage-gated sodium-channel gene SCN8A in the proband. This mutation alters an evolutionarily conserved residue in Nav1.6, one of the most abundant sodium channels in the brain. Analysis of the biophysical properties of the mutant channel demonstrated a dramatic increase in persistent sodium current, incomplete channel inactivation, and a depolarizing shift in the voltage dependence of steady-state fast inactivation. Current-clamp analysis in hippocampal neurons transfected with p.Asn1768Asp channels revealed increased spontaneous firing, paroxysmal-depolarizing-shift-like complexes, and an increased firing frequency, consistent with a dominant gain-of-function phenotype in the heterozygous proband. This work identifies SCN8A as the fifth sodium-channel gene to be mutated in epilepsy and demonstrates the value of WGS for the identification of pathogenic mutations causing severe, sporadic neurological disorders."	"Bioluminescence methodology for the detection of protein-protein interactions within the voltage-gated sodium channel macromolecular complex. Protein-protein interactions are critical molecular determinants of ion channel function and emerging targets for pharmacological interventions. Yet, current methodologies for the rapid detection of ion channel macromolecular complexes are still lacking. In this study we have adapted a split-luciferase complementation assay (LCA) for detecting the assembly of the voltage-gated Na+ (Nav) channel C-tail and the intracellular fibroblast growth factor 14 (FGF14), a functionally relevant component of the Nav channelosome that controls gating and targeting of Nav channels through direct interaction with the channel C-tail. In the LCA, two complementary N-terminus and C-terminus fragments of the firefly luciferase were fused, respectively, to a chimera of the CD4 transmembrane segment and the C-tail of Nav1.6 channel (CD4-Nav1.6-NLuc) or FGF14 (CLuc-FGF14). Co-expression of CLuc-FGF14 and CD4-Nav1.6-NLuc in live cells led to a robust assembly of the FGF14:Nav1.6 C-tail complex, which was attenuated by introducing single-point mutations at the predicted FGF14:Nav channel interface. To evaluate the dynamic regulation of the FGF14:Nav1.6 C-tail complex by signaling pathways, we investigated the effect of kinase inhibitors on the complex formation. Through a platform of counter screenings, we show that the p38/MAPK inhibitor, PD169316, and the IκB kinase inhibitor, BAY 11-7082, reduce the FGF14:Nav1.6 C-tail complementation, highlighting a potential role of the p38MAPK and the IκB/NFκB pathways in controlling neuronal excitability through protein-protein interactions. We envision the methodology presented here as a new valuable tool to allow functional evaluations of protein-channel complexes toward probe development and drug discovery targeting ion channels implicated in human disorders."	"The splicing regulator Rbfox2 is required for both cerebellar development and mature motor function. The Rbfox proteins (Rbfox1, Rbfox2, and Rbfox3) regulate the alternative splicing of many important neuronal transcripts and have been implicated in a variety of neurological disorders. However, their roles in brain development and function are not well understood, in part due to redundancy in their activities. Here we show that, unlike Rbfox1 deletion, the CNS-specific deletion of Rbfox2 disrupts cerebellar development. Genome-wide analysis of Rbfox2(-/-) brain RNA identifies numerous splicing changes altering proteins important both for brain development and mature neuronal function. To separate developmental defects from alterations in the physiology of mature cells, Rbfox1 and Rbfox2 were deleted from mature Purkinje cells, resulting in highly irregular firing. Notably, the Scn8a mRNA encoding the Na(v)1.6 sodium channel, a key mediator of Purkinje cell pacemaking, is improperly spliced in RbFox2 and Rbfox1 mutant brains, leading to highly reduced protein expression. Thus, Rbfox2 protein controls a post-transcriptional program required for proper brain development. Rbfox2 is subsequently required with Rbfox1 to maintain mature neuronal physiology, specifically Purkinje cell pacemaking, through their shared control of sodium channel transcript splicing."	"Reduced Retinal Function in the Absence of Na(v)1.6. Mice with a function-blocking mutation in the Scn8a gene that encodes Na(v)1.6, a voltage-gated sodium channel (VGSC) isoform normally found in several types of retinal neurons, have previously been found to display a profoundly abnormal dark adapted flash electroretinogram. However the retinal function of these mice in light adapted conditions has not been studied. In the present report we reveal that during light adaptation these animals are shown to have electroretinograms with significant decreases in the amplitude of the a- and b-waves. The percent decrease in the a- and b-waves substantially exceeds the acute effect of VGSC block by tetrodotoxin in control littermates. Intravitreal injection of CoCl(2) or CNQX to isolate the a-wave contributions of the photoreceptors in littermates revealed that at high background luminance the cone-isolated component of the a-wave is of the same amplitude as the a-wave of mutants. Our results indicate that Scn8a mutant mice have reduced function in both rod and the cone retinal pathways. The extent of the reduction in the cone pathway, as quantified using the ERG b-wave, exceeds the reduction seen in control littermates after application of TTX, suggesting that a defect in cone photoreceptors contributes to the reduction. Unless the postreceptoral component of the a-wave is increased in Scn8a mutant mice, the reduction in the b-wave is larger than can be accounted for by reduced photoreceptor function alone. Our data suggests that the reduction in the light adapted ERG of Scn8a mutant mice is caused by a combination of reduced cone photoreceptor function and reduced depolarization of cone ON bipolar cells. This raises the possibility that Na(v)1.6 augments signaling in cone bipolar cells."	"Rapid disruption of axon-glial integrity in response to mild cerebral hypoperfusion. Myelinated axons have a distinct protein architecture essential for action potential propagation, neuronal communication, and maintaining cognitive function. Damage to myelinated axons, associated with cerebral hypoperfusion, contributes to age-related cognitive decline. We sought to determine early alterations in the protein architecture of myelinated axons and potential mechanisms after hypoperfusion. Using a mouse model of hypoperfusion, we assessed changes in proteins critical to the maintenance of paranodes, nodes of Ranvier, axon-glial integrity, axons, and myelin by confocal laser scanning microscopy. As early as 3 d after hypoperfusion, the paranodal septate-like junctions were damaged. This was marked by a progressive reduction of paranodal Neurofascin signal and a loss of septate-like junctions. Concurrent with paranodal disruption, there was a significant increase in nodal length, identified by Nav1.6 staining, with hypoperfusion. Disruption of axon-glial integrity was also determined after hypoperfusion by changes in the spatial distribution of myelin-associated glycoprotein staining. These nodal/paranodal changes were more pronounced after 1 month of hypoperfusion. In contrast, the nodal anchoring proteins AnkyrinG and Neurofascin 186 were unchanged and there were no overt changes in axonal and myelin integrity with hypoperfusion. A microarray analysis of white matter samples indicated that there were significant alterations in 129 genes. Subsequent analysis indicated alterations in biological pathways, including inflammatory responses, cytokine-cytokine receptor interactions, blood vessel development, and cell proliferation processes. Our results demonstrate that hypoperfusion leads to a rapid disruption of key proteins critical to the stability of the axon-glial connection that is mediated by a diversity of molecular events."	"β-III spectrin is critical for development of purkinje cell dendritic tree and spine morphogenesis. Mutations in the gene encoding β-III spectrin give rise to spinocerebellar ataxia type 5, a neurodegenerative disease characterized by progressive thinning of the molecular layer, loss of Purkinje cells and increasing motor deficits. A mouse lacking full-length β-III spectrin (β-III⁻/⁻) displays a similar phenotype. In vitro and in vivo analyses of Purkinje cells lacking β-III spectrin, reveal a critical role for β-III spectrin in Purkinje cell morphological development. Disruption of the normally well ordered dendritic arborization occurs in Purkinje cells from β-III⁻/⁻ mice, specifically showing a loss of monoplanar organization, smaller average dendritic diameter and reduced densities of Purkinje cell spines and synapses. Early morphological defects appear to affect distribution of dendritic, but not axonal, proteins. This study confirms that thinning of the molecular layer associated with disease pathogenesis is a consequence of Purkinje cell dendritic degeneration, as Purkinje cells from 8-month-old β-III⁻/⁻ mice have drastically reduced dendritic volumes, surface areas and total dendritic lengths compared with 5- to 6-week-old β-III⁻/⁻ mice. These findings highlight a critical role of β-III spectrin in dendritic biology and are consistent with an early developmental defect in β-III⁻/⁻ mice, with abnormal Purkinje cell dendritic morphology potentially underlying disease pathogenesis."	"Sodium channel Nav1.6 is up-regulated in the dorsal root ganglia in a mouse model of type 2 diabetes. Neuropathic pain is one of the most common chronic complications of diabetes, of which the underlying mechanisms are unclear. Expression changes of voltage-gated sodium channels in dorsal root ganglia (DRG) are involved in the production of ectopic spontaneous activity. In the present study, we examined the changes of DRG Nav1.6 expression in a mouse model of type 2 diabetes (db/db mice). Db/db mice developed significant and persistent mechanical allodynia from postnatal 2 months compared to the heterozygous littermates (db/+) and C57 mice. Immunofluorescent staining showed that Nav1.6 was highly expressed in the normal DRG (approximately 31.3±5.2% of total DRG neurons), especially in the large-diameter neurons. In postnatal 5 months in db/db mice, percentage of Nav1.6 positive cells (62.9±5.5%) was significantly higher than that in C57 and db/+ mice. Western blot showed that from 2 to 5 months, Nav1.6 was increased by 1.67±0.16, 2.12±0.23, 1.89±0.32, and 2.01±0.35 folds of C57 mice, which were significantly higher than that of the C57 and db/+ mice. Real-time PCR showed that in postnatal 1 month of db/db mice, mRNA level of Nav1.6 was increased by 1.72±0.22 fold, which was significantly higher than that of C57 and db/+ mice. Nav1.6 mRNA was increased thereafter and maintained at high levels throughout the observed period. Our results provide direct evidence that type 2 diabetes induces significant and persistent increase of Nav1.6 expression in the DRG, which may participate in the diabetic neuropathic pain."	"Rbfox proteins regulate alternative splicing of neuronal sodium channel SCN8A. The SCN8A gene encodes the voltage-gated sodium channel Na(v)1.6, a major channel in neurons of the CNS and PNS. SCN8A contains two alternative exons,18N and 18A, that exhibit tissue specific splicing. In brain, the major SCN8A transcript contains exon 18A and encodes the full-length sodium channel. In other tissues, the major transcript contains exon 18N and encodes a truncated protein, due to the presence of an in-frame stop codon. Selection of exon 18A is therefore essential for generation of a functional channel protein, but the proteins involved in this selection have not been identified. Using a 2.6 kb Scn8a minigene containing exons 18N and 18A, we demonstrate that co-transfection with Fox-1 or Fox-2 initiates inclusion of exon 18A. This effect is dependent on the consensus Fox binding site located 28 bp downstream of exon 18A. We examined the alternative splicing of human SCN8A and found that the postnatal switch to exon 18A is completed later than 10 months of age. In purified cell populations, transcripts containing exon 18A predominate in neurons but are not present in oligodendrocytes or astrocytes. Transcripts containing exon 18N appear to be degraded by nonsense-mediated decay in HEK cells. Our data indicate that RBFOX proteins contribute to the cell-specific expression of Na(v)1.6 channels in mature neurons."	"Differential state-dependent modification of rat Na(v)1.6 sodium channels expressed in human embryonic kidney (HEK293) cells by the pyrethroid insecticides tefluthrin and deltamethrin. We expressed rat Na(v)1.6 sodium channels in combination with the rat β1 and β2 auxiliary subunits in human embryonic kidney (HEK293) cells and evaluated the effects of the pyrethroid insecticides tefluthrin and deltamethrin on expressed sodium currents using the whole-cell patch clamp technique. Both pyrethroids produced concentration-dependent, resting modification of Na(v)1.6 channels, prolonging the kinetics of channel inactivation and deactivation to produce persistent &quot;late&quot; currents during depolarization and tail currents following repolarization. Both pyrethroids also produced concentration dependent hyperpolarizing shifts in the voltage dependence of channel activation and steady-state inactivation. Maximal shifts in activation, determined from the voltage dependence of the pyrethroid-induced late and tail currents, were ~25mV for tefluthrin and ~20mV for deltamethrin. The highest attainable concentrations of these compounds also caused shifts of ~5-10mV in the voltage dependence of steady-state inactivation. In addition to their effects on the voltage dependence of inactivation, both compounds caused concentration-dependent increases in the fraction of sodium current that was resistant to inactivation following strong depolarizing prepulses. We assessed the use-dependent effects of tefluthrin and deltamethrin on Na(v)1.6 channels by determining the effect of trains of 1 to 100 5-ms depolarizing prepulses at frequencies of 20 or 66.7Hz on the extent of channel modification. Repetitive depolarization at either frequency increased modification by deltamethrin by ~2.3-fold but had no effect on modification by tefluthrin. Tefluthrin and deltamethrin were equally potent as modifiers of Na(v)1.6 channels in HEK293 cells using the conditions producing maximal modification as the basis for comparison. These findings show that the actions of tefluthrin and deltamethrin of Na(v)1.6 channels in HEK293 cells differ from the effects of these compounds on Na(v)1.6 channels in Xenopus oocytes and more closely reflect the actions of pyrethroids on channels in their native neuronal environment."	"A null mutation of the neuronal sodium channel NaV1.6 disrupts action potential propagation and excitation-contraction coupling in the mouse heart. Evidence supports the expression of brain-type sodium channels in the heart. Their functional role, however, remains controversial. We used global Na(V)1.6-null mice to test the hypothesis that Na(V)1.6 contributes to the maintenance of propagation in the myocardium and to excitation-contraction (EC) coupling. We demonstrated expression of transcripts encoding full-length Na(V)1.6 in isolated ventricular myocytes and confirmed the striated pattern of Na(V)1.6 fluorescence in myocytes. On the ECG, the PR and QRS intervals were prolonged in the null mice, and the Ca(2+) transients were longer in the null cells. Under patch clamping, at holding potential (HP) = -120 mV, the peak I(Na) was similar in both phenotypes. However, at HP = -70 mV, the peak I(Na) was smaller in the nulls. In optical mapping, at 4 mM [K(+)](o), 17 null hearts showed slight (7%) reduction of ventricular conduction velocity (CV) compared to 16 wild-type hearts. At 12 mM [K(+)](o), CV was 25% slower in a subset of 9 null vs. 9 wild-type hearts. These results highlight the importance of neuronal sodium channels in the heart, whereby Na(V)1.6 participates in EC coupling, and represents an intrinsic depolarizing reserve that contributes to excitation."	"Ototrauma induces sodium channel plasticity in auditory afferent neurons. Exposure to intense sound can cause damage to the delicate sensory and neuronal components of the cochlea leading to hearing loss. Such damage often causes the dendrites of the spiral ganglion neurons (SGN), the neurons that provide the afferent innervation of the hair cells, to swell and degenerate thus damaging the synapse. In models of neuropathic pain, axotomy, another form of afferent nerve damage, is accompanied by altered voltage-gated sodium channel (VGSC) expression, leading to neuronal hyperactivity. In this study, adult Wistar rats were exposed to noise which produced a mild, 20 dB hearing threshold elevation and their VGSC expression was investigated. Quantitative PCR showed decreased Na(V)1.1 and Na(V)1.6 mRNA expression in the SGN following noise exposure (29% and 56% decrease respectively) while Na(V)1.7 mRNA expression increased by approximately 20% when compared to control rats. Immunohistochemistry extended these findings, revealing increased staining for Na(V)1.1 along the SGN dendrites and Na(V)1.7 in the cell bodies after noise. These results provide the first evidence for selective changes in VGSC expression following moderate noise-induced hearing loss and could contribute to elevated hearing thresholds and to the generation of perceptual anomalies commonly associated with cochlear damage, such as tinnitus and hyperacusis."	"Resurgent Na+ current: a new avenue to neuronal excitability control. Integrative and firing properties are important characteristics of neuronal circuits and these responses are determined in large part by the repertoire of ion channels they express, which can vary considerably between cell types. Recently, a new mode of operation of voltage dependent sodium channels has been described that generates a so-called resurgent Na+ current. Accumulating evidence suggests resurgent Na current participates in the generation of sub-threshold inward Na+ current causing membrane depolarization which provides the necessary drive to fire high-frequency action potentials. Recent studies indicate that resurgent Na+ current could be a more widespread feature than previously thought."	"Overexpression of NaV 1.6 channels is associated with the invasion capacity of human cervical cancer. Functional activity of voltage-gated sodium channels (VGSC) has been associated to the invasion and metastasis behaviors of prostate, breast and some other types of cancer. We previously reported the functional expression of VGSC in primary cultures and biopsies derived from cervical cancer (CaC). Here, we investigate the relative expression levels of VGSC subunits and its possible role in CaC. Quantitative real-time PCR revealed that mRNA levels of Na(V) 1.6 α-subunit in CaC samples were ∼40-fold higher than in noncancerous cervical (NCC) biopsies. A Na(V) 1.7 α-subunit variant also showed increased mRNA levels in CaC (∼20-fold). All four Na(V) β subunits were also detected in CaC samples, being Na(V) β1 the most abundant. Proteins of Na(V) 1.6 and Na(V) 1.7 α-subunits were immunolocalized in both NCC and CaC biopsies and in CaC primary cultures as well; however, although in NCC sections proteins were mainly relegated to the plasma membrane, in CaC biopsies and primary cultures the respective signal was stronger and widely distributed in both cytoplasm and plasma membrane. Functional activity of Na(V) 1.6 channels in the plasma membrane of CaC cells was confirmed by whole-cell patch-clamp experiments using Cn2, a Na(V) 1.6-specific toxin, which blocked ∼30% of the total sodium current. Blocking of sodium channels VGSC with tetrodotoxin and Cn2 did not affect proliferation neither migration, but reduced by ∼20% the invasiveness of CaC primary culture cells in vitro assays. We conclude that Na(V) 1.6 is upregulated in CaC and could serve as a novel molecular marker for the metastatic behavior of this carcinoma."	"Nav1.7 is the predominant sodium channel in rodent olfactory sensory neurons. Voltage-gated sodium channel Nav1.7 is preferentially expressed in dorsal root ganglion (DRG) and sympathetic neurons within the peripheral nervous system. Homozygous or compound heterozygous loss-of-function mutations in SCN9A, the gene which encodes Nav1.7, cause congenital insensitivity to pain (CIP) accompanied by anosmia. Global knock-out of Nav1.7 in mice is neonatal lethal reportedly from starvation, suggesting anosmia. These findings led us to hypothesize that Nav1.7 is the main sodium channel in the peripheral olfactory sensory neurons (OSN, also known as olfactory receptor neurons). We used multiplex PCR-restriction enzyme polymorphism, in situ hybridization and immunohistochemistry to determine the identity of sodium channels in rodent OSNs. We show here that Nav1.7 is the predominant sodium channel transcript, with low abundance of other sodium channel transcripts, in olfactory epithelium from rat and mouse. Our in situ hybridization data show that Nav1.7 transcripts are present in rat OSNs. Immunostaining of Nav1.7 and Nav1.6 channels in rat shows a complementary accumulation pattern with Nav1.7 in peripheral presynaptic OSN axons, and Nav1.6 primarily in postsynaptic cells and their dendrites in the glomeruli of the olfactory bulb within the central nervous system. Our data show that Nav1.7 is the dominant sodium channel in rat and mouse OSN, and may explain anosmia in Nav1.7 null mouse and patients with Nav1.7-related CIP."	"Regulation of Nav1.6 and Nav1.8 peripheral nerve Na+ channels by auxiliary β-subunits. Voltage-gated Na(+) (Na(v)) channels are composed of a pore-forming α-subunit and one or more auxiliary β-subunits. The present study investigated the regulation by the β-subunit of two Na(+) channels (Na(v)1.6 and Na(v)1.8) expressed in dorsal root ganglion (DRG) neurons. Single cell RT-PCR was used to show that Na(v)1.8, Na(v)1.6, and β(1)-β(3) subunits were widely expressed in individually harvested small-diameter DRG neurons. Coexpression experiments were used to assess the regulation of Na(v)1.6 and Na(v)1.8 by β-subunits. The β(1)-subunit induced a 2.3-fold increase in Na(+) current density and hyperpolarizing shifts in the activation (-4 mV) and steady-state inactivation (-4.7 mV) of heterologously expressed Na(v)1.8 channels. The β(4)-subunit caused more pronounced shifts in activation (-16.7 mV) and inactivation (-9.3 mV) but did not alter the current density of cells expressing Na(v)1.8 channels. The β(3)-subunit did not alter Na(v)1.8 gating but significantly reduced the current density by 31%. This contrasted with Na(v)1.6, where the β-subunits were relatively weak regulators of channel function. One notable exception was the β(4)-subunit, which induced a hyperpolarizing shift in activation (-7.6 mV) but no change in the inactivation or current density of Na(v)1.6. The β-subunits differentially regulated the expression and gating of Na(v)1.8 and Na(v)1.6. To further investigate the underlying regulatory mechanism, β-subunit chimeras containing portions of the strongly regulating β(1)-subunit and the weakly regulating β(2)-subunit were generated. Chimeras retaining the COOH-terminal domain of the β(1)-subunit produced hyperpolarizing shifts in gating and increased the current density of Na(v)1.8, similar to that observed for wild-type β(1)-subunits. The intracellular COOH-terminal domain of the β(1)-subunit appeared to play an essential role in the regulation of Na(v)1.8 expression and gating."	"Increased expression of the beta3 subunit of voltage-gated Na+ channels in the spinal cord of the SOD1G93A mouse. Amyotrophic lateral sclerosis (ALS) is an adult-onset disease characterized by the progressive degeneration of motoneurons (MNs). Altered electrical properties have been described in familial and sporadic ALS patients. Cortical and spinal neurons cultured from the mutant Cu,Zn superoxide dismutase 1 (SOD1G93A) mouse, a murine model of ALS, exhibit a marked increase in the persistent Na+ currents. Here, we investigated the effects of the SOD1G93A mutation on the expression of the voltage-gated Na+ channel alpha subunit SCN8A (Nav1.6) and the beta subunits SCN1B (beta1), SCN2B (beta2), and SCN3B (beta3) in MNs of the spinal cord in presymptomatic (P75) and symptomatic (P120) mice. We observed a significant increase, within lamina IX, of the beta3 transcript and protein expression. On the other hand, the beta1 transcript was significantly decreased, in the same area, at the symptomatic stage, while the beta2 transcript levels were unaltered. The SCN8A transcript was significantly decreased at P120 in the whole spinal cord. These data suggest that the SOD1G93A mutation alters voltage-gated Na+ channel subunit expression. Moreover, the increased expression of the beta3 subunit support the hypothesis that altered persistent Na+ currents contribute to the hyperexcitability observed in the ALS-affected MNs."	"Independent and joint modulation of rat Nav1.6 voltage-gated sodium channels by coexpression with the auxiliary β1 and β2 subunits. The Na(v)1.6 voltage-gated sodium channel α subunit isoform is the most abundant isoform in the brain and is implicated in the transmission of high frequency action potentials. Purification and immunocytochemical studies imply that Na(v)1.6 exist predominantly as Na(v)1.6+β1+β2 heterotrimeric complexes. We assessed the independent and joint effects of the rat β1 and β2 subunits on the gating and kinetic properties of rat Na(v)1.6 channels by recording whole-cell currents in the two-electrode voltage clamp configuration following transient expression in Xenopus oocytes. The β1 subunit accelerated fast inactivation of sodium currents but had no effect on the voltage dependence of their activation and steady-state inactivation and also prevented the decline of currents following trains of high-frequency depolarizing prepulses. The β2 subunit selectively retarded the fast phase of fast inactivation and shifted the voltage dependence of activation towards depolarization without affecting other gating properties and had no effect on the decline of currents following repeated depolarization. The β1 and β2 subunits expressed together accelerated both kinetic phases of fast inactivation, shifted the voltage dependence of activation towards hyperpolarization, and gave currents with a persistent component typical of those recorded from neurons expressing Na(v)1.6 sodium channels. These results identify unique effects of the β1 and β2 subunits and demonstrate that joint modulation by both auxiliary subunits gives channel properties that are not predicted by the effects of individual subunits."	"Comparative study of voltage-gated sodium channel α-subunits in non-overlapping four neuronal populations in the rat dorsal root ganglion. Voltage-gated sodium channel α-subunit (Nav) is the major determinant of neuronal electrophysiological characters. In order to compare the composition of Navs among neurochemically different neurons in the rat dorsal root ganglion (DRG), we examined the expression of Nav transcripts in four non-overlapping neuronal populations, with (+) or without (-) N52 immunoreactivity, a marker of neurons with myelinated axons, and TrkA mRNA identified by in situ hybridization histochemistry. Both N52-/TrkA+ and N52-/TrkA- populations had high levels of signals for Nav1.7, Nav1.8, and Nav1.9 mRNAs, but rarely expressed Nav1.1 or Nav1.6. There was no significant difference in these signals, suggesting that C-fiber peptidergic and non-peptidergic neurons have similar electrophysiological characters with regard to sodium currents. N52+/TrkA+ neurons (putative A-fiber nociceptors) had similar high levels of signals for Nav1.7 and Nav1.8, but a significantly lower level of Nav1.9 signals, as compared to N52- neurons. Although, almost no N52+/TrkA- neurons had Nav1.8 or Nav1.9, half of this population expressed Nav1.7 at similar levels to other three populations and the other half completely lacked this channel. These data suggest that Nav1.8 is a common channel for both C- and A-fiber nociceptors, and Nav1.9 is rather selective for C-fiber nociceptors. Nav1.7 is the most universal channel while some functionally unknown N52+/TrkA- subpopulation selectively lacks it."	"Sustained increase in the excitability of myelinated peripheral axons to depolarizing current is mediated by Nav1.6. Changes in the excitability of peripheral myelinated axons in response to long-lasting subthreshold depolarizing or hyperpolarizing currents (threshold electrotonus) are used as a complementary electrophysiological parameter in the study of peripheral nerve diseases in people. However, the contribution made by various axonal ion channels to specific components of threshold electrotonus remains incompletely understood. In this study, we have recorded threshold electrotonus responses from isolated nerve segments of sural nerve from control and Scn8amed mice, which lack functional Nav1.6 voltage-gated sodium channel. In med mice, the increase in axonal excitability produced by application of subthreshold depolarizing currents for 100-200ms was not sustained. In contrast, there was no difference in threshold electrotonus responses to subthreshold hyperpolarizing current application between Scn8amed and control mice. These data reveal the specific functional role of an identified subtype of voltage-gated sodium channel (Nav1.6) in mediating the depolarizing threshold electrotonus response of peripheral myelinated nerve fibers."	"Reduced sodium channel Na(v)1.1 levels in BACE1-null mice. The Alzheimer BACE1 enzyme cleaves numerous substrates, with largely unknown physiological consequences. We have previously identified the contribution of elevated BACE1 activity to voltage-gated sodium channel Na(v)1.1 density and neuronal function. Here, we analyzed physiological changes in sodium channel metabolism in BACE1-null mice. Mechanistically, we first confirmed that endogenous BACE1 requires its substrate, the β-subunit Na(v)β(2), to regulate levels of the pore-forming α-subunit Na(v)1.1 in cultured primary neurons. Next, we analyzed sodium channel α-subunit levels in brains of BACE1-null mice at 1 and 3 months of age. At both ages, we found that Na(v)1.1 protein levels were significantly decreased in BACE1-null versus wild-type mouse brains, remaining unchanged in BACE1-heterozygous mouse brains. Interestingly, levels of Na(v)1.2 and Na(v)1.6 α-subunits also decreased in 1-month-old BACE1-null mice. In the hippocampus of BACE1-null mice, we found a robust 57% decrease of Na(v)1.1 levels. Next, we performed surface biotinylation studies in acutely dissociated hippocampal slices from BACE1-null mice. Hippocampal surface Na(v)1.1 levels were significantly decreased, but Na(v)1.2 surface levels were increased in BACE1-null mice perhaps as a compensatory mechanism for reduced surface Na(v)1.1. We also found that Na(v)β(2) processing and Na(v)1.1 mRNA levels were significantly decreased in brains of BACE1-null mice. This suggests a mechanism consistent with BACE1 activity regulating mRNA levels of the α-subunit Na(v)1.1 via cleavage of cell-surface Na(v)β(2). Together, our data show that endogenous BACE1 activity regulates total and surface levels of voltage-gated sodium channels in mouse brains. Both decreased Na(v)1.1 and elevated surface Na(v)1.2 may result in a seizure phenotype. Our data caution that therapeutic BACE1 activity inhibition in Alzheimer disease patients may affect Na(v)1 metabolism and alter neuronal membrane excitability in Alzheimer disease patients."	"Alterations of action potentials and the localization of Nav1.6 sodium channels in spared axons after hemisection injury of the spinal cord in adult rats. Previously, we reported a pronounced reduction in transmission through surviving axons contralateral to chronic hemisection (HX) of adult rat spinal cord. To examine the cellular and molecular mechanisms responsible for this diminished transmission, we recorded intracellularly from lumbar lateral white matter axons in deeply anesthetized adult rats in vivo and measured the propagation of action potentials (APs) through rubrospinal/reticulospinal tract (RST/RtST) axons contralateral to chronic HX at T10. We found decreased excitability in these axons, manifested by an increased rheobase to trigger APs and longer latency for AP propagation passing the injury level, without significant differences in axonal resting membrane potential and input resistance. These electrophysiological changes were associated with altered spatial localization of Nav1.6 sodium channels along axons: a subset of axons contralateral to the injury exhibited a diffuse localization (&gt;10 μm spread) of Nav1.6 channels, a pattern characteristic of demyelinated axons (Craner MJ, Newcombe J, Black JA, Hartle C, Cuzner ML, Waxman SG. Proc Natl Acad Sci USA 101: 8168-8173, 2004b). This result was substantiated by ultrastructural changes seen with electron microscopy, in which an increased number of large-caliber, demyelinated RST axons were found contralateral to the chronic HX. Therefore, an increased rheobase, pathological changes in the distribution of Nav1.6 sodium channels, and the demyelination of contralateral RST axons are likely responsible for their decreased conduction chronically after HX and thus may provide novel targets for strategies to improve function following incomplete spinal cord injury."	"Neuronal voltage-gated ion channels are genetic modifiers of generalized epilepsy with febrile seizures plus. Mutations in the neuronal voltage-gated sodium channel genes SCN1A and SCN2A are associated with inherited epilepsies, including genetic epilepsy with febrile seizures plus (GEFS+) and Dravet syndrome (severe myoclonic epilepsy of infancy). The clinical presentation and severity of these epilepsies vary widely, even in people with the same mutation, suggesting the action of environmental or genetic modifiers. To gain support for the hypothesis that genetic modifiers can influence clinical presentation in patients with SCN1A-derived GEFS+, we used mouse models to study the effect of combining the human GEFS+ mutation SCN1A-R1648H with SCN2A, KCNQ2, and SCN8A mutations. Knock-in mice heterozygous for the R1648H mutation (Scn1a(RH/+)) have decreased thresholds to induced seizures and infrequent spontaneous seizures, whereas homozygotes display spontaneous seizures and premature lethality. Scn2a(Q54) transgenic mice have a mutation in Scn2a that results in spontaneous, adult-onset partial motor seizures, and mice carrying the Kcnq2-V182M mutation exhibit increased susceptibility to induced seizures, and rare spontaneous seizures as adults. Combining the Scn1a-R1648H allele with either Scn2a(Q54) or Kcnq2(V182M/+) results in early-onset, generalized tonic-clonic seizures and juvenile lethality in double heterozygous mice. In contrast, Scn8a mutants exhibit increased resistance to induced seizures. Combining the Scn1a-R1648H and Scn8a-med-jo alleles restores normal thresholds to flurothyl-induced seizures in Scn1a(RH/+) heterozygotes and improved survival of Scn1a(RH/RH) homozygotes. Our results demonstrate that variants in Scn2a, Kcnq2, and Scn8a can dramatically influence the phenotype of mice carrying the Scn1a-R1648H mutation and suggest that ion channel variants may contribute to the clinical variation seen in patients with monogenic epilepsy."	"Addition of positive charges at the C-terminal peptide region of CssII, a mammalian scorpion peptide toxin, improves its affinity for sodium channels Nav1.6. CssII is a β-scorpion peptide that modifies preferentially sodium currents of the voltage-dependent Na(+) channel (Nav) sub-type 1.6. Previously, we have found that the C-terminal amidation of CssII increases its affinity for Nav, which opens at more negative potentials in the presence of CssII. Although C-terminal amidation in vitro conditions is possible, five CssII peptide toxin variants with C-terminal residues modified were heterologously expressed (rN66S, rN66H, rN66R, r[T64R/N66S] and r[T64R/N66R], in which r stands for recombinant, the capital letters to the amino acid residues and the numbers indicate the position of the given residue into the primary sequence of the toxin) and correctly folded. A secondary structure prediction of CssII agrees with the experimental secondary structure obtained by circular dichroism; so all bacterial expressed neurotoxin variants maintained the typical α/β secondary structure motif of most Na(+) channel scorpion toxins. The electrophysiological properties of all recombinant variants were examined, and it was found that substitutions of threonine (T) and asparagine (N) at the C-terminal region for arginine (R) (r[T64R/N66R]) increase their affinity for Nav1.6. Although, the molecular interactions involved in this mechanism are still not clearly determined, there is experimental evidence supporting the suspicion that incorporation of basic charged amino acid residues at the C-terminal tail of a group of α-scorpion toxin was favored by natural selection."	"Increase of CGRP expression in motor endplates within fore and hind limb muscles of the degenerating muscle mouse (Scn8a(dmu)). The distribution of calcitonin gene-related peptide (CGRP) was examined in skeletal muscles of fore and hind limb as well as in oral and cranio-facial regions of the degenerating muscle (dmu) mouse, which harbours a null mutation in the voltage-gated sodium channel gene Scn8a. In limb, oral and cranio-facial muscles of wild type mice, only a few motor endplates contained CGRP-immunoreactivity. However, many CGRP-immunoreactive motor endplates appeared in the triceps brachii muscle, the biceps brachii muscle, the brachialis muscle, and the gastrocnemius muscle of dmu mice. CGRP-immunoreactive density of motor endplates in the skeletal muscles was also elevated by the mutation. In these muscles, the atrophy of muscle fibers could be detected and the density of cell nuclei in the musculature increased. In the flexor digitorum profundus muscle, the flexor digitorum superficialis muscle, and the soleus muscle as well as in oral and craniofacial muscles, however, the distribution of CGRP-immunoreactivity was barely affected by the mutation. The morphology of muscle fibers and the distribution of cell nuclei within them were also similar in wild type and dmu mice. In the lumbar spinal cord of dmu mice, CGRP-immunoreactive density of spinal motoneurons increased. These findings suggest that the atrophic degeneration in some fore and hind limb muscles of dmu mice may increase CGRP expression in their motoneurons."	"Differential evolution of voltage-gated sodium channels in tetrapods and teleost fishes. The voltage-gated sodium channel (SCN) alpha subunits are large proteins with central roles in the generation of action potentials. They consist of approximately 2,000 amino acids encoded by 24-27 exons. Previous evolutionary studies have been unable to reconcile the proposed gene duplication schemes with the species distribution and molecular phylogeny of the genes. We have carefully annotated the complete SCN gene sequences, correcting numerous database errors, for a broad range of vertebrate species and analyzed their phylogenetic relationships. We have also compared the chromosomal positions of the SCN genes relative to adjacent gene families. Our studies show that the ancestor of the vertebrates probably had a single sodium channel gene with two characteristic AT-AC introns, the second of which is unique to vertebrate SCN genes. This ancestral gene, located close to a HOX gene cluster, was quadrupled along with HOX in the two rounds of basal vertebrate tetraploidizations to generate the ancestors of the four channels SCN1A, SCN4A, SCN5A, and SCN8A. The third tetraploidization in the teleost fish ancestor doubled this set of genes and all eight are still present in at least three of four investigated teleost fish genomes. In tetrapods, the gene family expanded by local duplications before the radiation of amniotes, generating the cluster SCN5A, SCN10A, and SCN11A on one chromosome and the cluster SCN1A, SCN2A, SCN3A, and SCN9A on a different chromosome. In eutherian mammals, a tenth gene, SCN7A, arose in a local duplication in the SCN1A gene cluster. The SCN7A gene has undergone rapid evolution and has lost the ability to cause action potentials-instead, it functions as a sodium sensor. The three genes in the SCN5A cluster were translocated from the HOX-bearing chromosome in a mammalian ancestor along with several adjacent genes. This evolutionary scenario is supported by the adjacent TGF-β receptor superfamily (comprised of five distinct families) and the cysteine-serine-rich nuclear protein gene family as well as the HOX clusters. The independent expansions of the SCN repertoires in tetrapods and teleosts suggest that the functional diversification may differ between the two lineages."	"Activated microglia mediate axoglial disruption that contributes to axonal injury in multiple sclerosis. The complex manifestations of chronic multiple sclerosis (MS)are due in part to widespread axonal abnormalities that affect lesional and nonlesional areas in the central nervous system. We describe an association between microglial activation and axon/oligodendrocyte pathology at nodal and paranodal domains in normal-appearing white matter (NAWM) of MS cases and in experimental autoimmune encephalomyelitis (EAE). The extent of paranodal axoglial (neurofascin-155(+)/Caspr1(+)) disruption correlated with local microglial inflammation and axonal injury (expression of nonphosphorylated neurofilaments) in MS NAWM. These changes were independent of demyelinating lesions and did not correlate with the density of infiltrating lymphocytes. Similar axoglial alterations were seen in the subcortical white matter of Parkinson disease cases and in preclinical EAE, at a time point when there is microglial activation before the infiltration of immune cells. Disruption of the axoglial unit in adjuvant-immunized animals was reversible and coincided with the resolution of microglial inflammation; paranodal damage and microglial inflammation persisted in chronic EAE. Axoglial integrity could be preserved by the administration of minocycline, which inhibited microglial activation, in actively immunized animals. These data indicate that, in MS NAWM, permanent disruption to axoglial domains in an environment of microglial inflammation is an early indicator of axonal injury that likely affects nerve conduction and may contribute to physiologic dysfunction."	"Dendritic spikes amplify the synaptic signal to enhance detection of motion in a simulation of the direction-selective ganglion cell. The On-Off direction-selective ganglion cell (DSGC) in mammalian retinas responds most strongly to a stimulus moving in a specific direction. The DSGC initiates spikes in its dendritic tree, which are thought to propagate to the soma with high probability. Both dendritic and somatic spikes in the DSGC display strong directional tuning, whereas somatic PSPs (postsynaptic potentials) are only weakly directional, indicating that spike generation includes marked enhancement of the directional signal. We used a realistic computational model based on anatomical and physiological measurements to determine the source of the enhancement. Our results indicate that the DSGC dendritic tree is partitioned into separate electrotonic regions, each summing its local excitatory and inhibitory synaptic inputs to initiate spikes. Within each local region the local spike threshold nonlinearly amplifies the preferred response over the null response on the basis of PSP amplitude. Using inhibitory conductances previously measured in DSGCs, the simulation results showed that inhibition is only sufficient to prevent spike initiation and cannot affect spike propagation. Therefore, inhibition will only act locally within the dendritic arbor. We identified the role of three mechanisms that generate directional selectivity (DS) in the local dendritic regions. First, a mechanism for DS intrinsic to the dendritic structure of the DSGC enhances DS on the null side of the cell's dendritic tree and weakens it on the preferred side. Second, spatially offset postsynaptic inhibition generates robust DS in the isolated dendritic tips but weak DS near the soma. Third, presynaptic DS is apparently necessary because it is more robust across the dendritic tree. The pre- and postsynaptic mechanisms together can overcome the local intrinsic DS. These local dendritic mechanisms can perform independent nonlinear computations to make a decision, and there could be analogous mechanisms within cortical circuitry."	"Long-term inactivation particle for voltage-gated sodium channels. Action potential generation is governed by the opening, inactivation, and recovery of voltage-gated sodium channels. A channel's voltage-sensing and pore-forming α subunit bears an intrinsic fast inactivation particle that mediates both onset of inactivation upon membrane depolarization and rapid recovery upon repolarization. We describe here a novel inactivation particle housed within an accessory channel subunit (A-type FHF protein) that mediates rapid-onset, long-term inactivation of several sodium channels. The channel-intrinsic and tethered FHF-derived particles, both situated at the cytoplasmic face of the plasma membrane, compete for induction of inactivation, causing channels to progressively accumulate into the long-term refractory state during multiple cycles of membrane depolarization. Intracellular injection of a short peptide corresponding to the FHF particle can reproduce channel long-term inactivation in a dose-dependent manner and can inhibit repetitive firing of cerebellar granule neurons. We discuss potential structural mechanisms of long-term inactivation and potential roles of A-type FHFs in the modulation of action potential generation and conduction."	"Molecular determination of selectivity of the site 3 modulator (BmK I) to sodium channels in the CNS: a clue to the importance of Nav1.6 in BmK I-induced neuronal hyperexcitability. BmK I, a site-3-specific modulator of VGSCs (voltage-gated sodium channels) from the Chinese scorpion Buthus martensi Karsch, can induce spontaneous nociception and hyperalgesia and generate epileptiform responses in rats, which is attributed to the modulation of VGSCs in the neural system. However, which VGSC subtype is targeted by BmK I remains to be identified. Using two-electrode voltage-clamp recording, we studied the efficacy and selectivity of BmK I to three neuronal VGSCs co-expressed with the auxiliary β1 subunit in Xenopus oocytes. Results revealed that BmK I induced a large increase in both transient and persistent currents in mNav1.6α/β1 (where m indicates mouse), which correlated with a prominent reduction in the fast component of inactivating current. In comparison, BmK I-increased currents of rNav1.2α/β1 (where r indicates rat) and rNav1.3α/β1 were much smaller. The EC50 values of BmK I for rNav1.2α/β1 (252±60 nM) and mNav1.6α/β1 (214±30 nM) were similar and roughly half of that for rNav1.3α/β1 (565±16 nM). Moreover, BmK I only accelerated the slow inactivation development and delay recovery of mNav1.6α/β1 through binding to the channel in the open state. Residue-swap analysis verified that an acidic residue (e.g. Asp1602 in mNav1.6) within the domain IV S3-S4 extracellular loop of VGSCs was crucial for the selectivity and modulation pattern of BmK I. Our findings thus provide the molecular determinant explaining the divergent and intriguing behaviour of neuronal VGSCs in response to site-3-specific modulators, indicating that these subtypes play different roles in BmK I-induced hyperexcitablity in rat models."	"Genetic polymorphisms in the SCN8A gene are associated with suicidal behavior in psychiatric disorders in the Chinese population. Suicidal behavior is a serious public health problem which is partly heritable. Identifying the genes and the neurobiologic pathways relevant to suicidal behavior is important for preventative strategies. One family-based study reported an association between sodium channel voltage gated type VIII alpha (SCN8A) and suicidal behavior. In the present study, we aimed to search for SCN8A polymorphisms conferring genetic susceptibility to suicide in the Chinese population. A total of 626 subjects was recruited for the study, including 297 suicide attempters and 329 non-attempters from Shanghai, China. We conducted a case-control association analysis of five SNPs (rs10506302, rs1601012, rs4762004, rs12581041, rs17126078) within the region of SCN8A gene. we found that two genetic polymorphisms showed statistically significant differences between cases and controls (rs1601012, P=0.004; rs12581041, P=0.01). Moreover, no haplotypes were significantly associated with suicidal behavior in psychiatric disorders after the false discovery rate (FDR) correction. In the analysis of schizophrenia subgroup, three genetic polymorphisms showed statistically significant differences between cases and controls (rs10506302, P=0.024; rs1601012, P=0.004; rs12581041, P=0.004). Our findings suggest that the SCN8A gene may be involved in the susceptibility to suicidal behavior among psychiatric disorder patients in the Han Chinese population."	"Divergent actions of the pyrethroid insecticides S-bioallethrin, tefluthrin, and deltamethrin on rat Na(v)1.6 sodium channels. We expressed rat Na(v)1.6 sodium channels in combination with the rat beta(1) and beta(2) auxiliary subunits in Xenopus laevis oocytes and evaluated the effects of the pyrethroid insecticides S-bioallethrin, deltamethrin, and tefluthrin on expressed sodium currents using the two-electrode voltage clamp technique. S-Bioallethrin, a type I structure, produced transient modification evident in the induction of rapidly decaying sodium tail currents, weak resting modification (5.7% modification at 100 microM), and no further enhancement of modification upon repetitive activation by high-frequency trains of depolarizing pulses. By contrast deltamethrin, a type II structure, produced sodium tail currents that were ~9-fold more persistent than those caused by S-bioallethrin, barely detectable resting modification (2.5% modification at 100 microM), and 3.7-fold enhancement of modification upon repetitive activation. Tefluthrin, a type I structure with high mammalian toxicity, exhibited properties intermediate between S-bioallethrin and deltamethrin: intermediate tail current decay kinetics, much greater resting modification (14.1% at 100 microM), and 2.8-fold enhancement of resting modification upon repetitive activation. Comparison of concentration-effect data showed that repetitive depolarization increased the potency of tefluthrin approximately 15-fold and that tefluthrin was approximately 10-fold more potent than deltamethrin as a use-dependent modifier of Na(v)1.6 sodium channels. Concentration-effect data from parallel experiments with the rat Na(v)1.2 sodium channel coexpressed with the rat beta(1) and beta(2) subunits in oocytes showed that the Na(v)1.6 isoform was at least 15-fold more sensitive to tefluthrin and deltamethrin than the Na(v)1.2 isoform. These results implicate sodium channels containing the Na(v)1.6 isoform as potential targets for the central neurotoxic effects of pyrethroids."	"Pulpitis increases the proportion of atypical nodes of Ranvier in human dental pulp axons without a change in Nav1.6 sodium channel expression. Studies show a change in sodium channel (NaCh) expression after inflammatory lesions, and this change is implicated in the generation of pain states. We are using the extracted human tooth to study NaCh expression and here examine the expression of the major NaCh isoform located at nodes of Ranvier, Na(v)1.6, in normal and painful samples. Pulpal sections were double-labeled with human-specific Na(v)1.6 antibody and caspr antibody (paranodal protein to identify nodes). Confocal microscopy was used to obtain a z-series of optically-sectioned images of axon bundles surrounded by inflammatory cells in painful samples and of similar regions within the coronal pulp of normal samples. Nodes contained within these images were classified as typical or atypical as based on caspr staining relationships, and NIH ImageJ software was used to quantify the size and immunofluorescence staining intensity of Na(v)1.6 accumulations at these nodal sites. Results show no significant difference in the size or immunofluorescence staining intensity of Na(v)1.6 nodal accumulations located at either typical or atypical nodal sites (heminodes and split nodes) within axons in normal samples when compared to painful samples (n=9/each group). In contrast, there was a highly significant decrease in the proportion of typical nodal sites and an increase in atypical nodal sites in painful samples when compared to normal samples. The unchanged expression of Na(v)1.6 contrasts to our previous finding that showed an increased expression of Na(v)1.7 at both typical and atypical nodal sites within painful samples. Together, these findings suggest there is not a simple replacement of one isoform with another, but rather an increased co-expression of multiple isoforms at both intact and remodeling/demyelinating (atypical) nodal sites within the painful dental pulp. The resultant heterogeneous population of isoforms may produce unique axonal excitability properties that could contribute to spontaneous pain sensations that are common in toothache."	"Serotonin controls the maturation of the GABA phenotype in the ventral spinal cord via 5-HT1b receptors. Serotonin (5-hydroxytryptamine or 5-HT) is a pleiotropic neurotransmitter known to play a crucial modulating role during the construction of brain circuits. Descending bulbo-spinal 5-HT fibers, coming from the caudal medullary cell groups of the raphe nuclei, progressively invade the mouse spinal cord and arrive at lumbar segments at E15.5 when the number of ventral GABA immunoreactive (GABA-ir) interneurons reaches its maximum. We thus raised the question of a possible interaction between these two neurotransmitter systems and investigated the effect of 5-HT descending inputs on the maturation of the GABA phenotype in ventral spinal interneurons. Using a quantitative anatomical study performed on acute and cultured embryonic mouse spinal cord, we found that the GABAergic neuronal population matured according to a similar rostro-caudal gradient both in utero and in organotypic culture. We showed that 5-HT delayed the maturation of the GABA phenotype in lumbar but not brachial interneurons. Using pharmacological treatments and mice lacking 5-HT(1B) or 5-HT(1A), we demonstrated that the 5-HT repressing effect on the GABAergic phenotype was specifically attributed to 5-HT(1B) receptors."	"Two Nedd4-binding motifs underlie modulation of sodium channel Nav1.6 by p38 MAPK. Sodium channel Na(v)1.6 is essential for neuronal excitability in central and peripheral nervous systems. Loss-of-function mutations in Na(v)1.6 underlie motor disorders, with homozygous-null mutations causing juvenile lethality. Phosphorylation of Na(v)1.6 by the stress-induced p38 MAPK at a Pro-Gly-Ser(553)-Pro motif in its intracellular loop L1 reduces Na(v)1.6 current density in a dorsal root ganglion-derived cell line, without changing its gating properties. Phosphorylated Pro-Gly-Ser(553)-Pro motif is a putative binding site to Nedd4 ubiquitin ligases, and we hypothesized that Nedd4-like ubiquitin ligases may contribute to channel ubiquitination and internalization. We report here that p38 activation in hippocampal neurons from wild-type mice, but not from Scn8a(medtg) mice that lack Na(v)1.6, reduces tetrodotoxin-S sodium currents, suggesting isoform-specific modulation of Na(v)1.6 by p38 in these neurons. Pharmacological block of endocytosis completely abolishes p38-mediated Na(v)1.6 current reduction, supporting our hypothesis that channel internalization underlies current reduction. We also report that the ubiquitin ligase Nedd4-2 interacts with Na(v)1.6 via a Pro-Ser-Tyr(1945) motif in the C terminus of the channel and reduces Na(v)1.6 current density, and we show that this regulation requires both the Pro-Gly-Ser-Pro motif in L1 and the Pro-Ser-Tyr motif in the C terminus. Similarly, both motifs are necessary for p38-mediated reduction of Na(v)1.6 current, whereas abrogating binding of the ubiquitin ligase Nedd4-2 to the Pro-Ser-Tyr motif results in stress-mediated increase in Na(v)1.6 current density. Thus, phosphorylation of the Pro-Gly-Ser-Pro motif within L1 of Na(v)1.6 is necessary for stress-induced current modulation, with positive or negative regulation depending upon the availability of the C-terminal Pro-Ser-Tyr motif to bind Nedd4-2."	"Effect of electroacupuncture therapy on the expression of Na(v)1.1 and Na(v)1.6 in rat after acute cerebral ischemia. To observe the expression of Na(v)1.1 and Na(v)1.6 after the electroacupuncture therapy (ET) on acute cerebral ischemia, and discuss the mechanism of function of ET. Focal acute cerebral ischemia model was established by the occlusion of right middle cerebral artery. Rats were randomly divided into sham operation control (SC), ischemia control (IC) and ET groups. Four acupoints, 'NEIGUAN', 'WAIGUAN', 'SANYINJIAO', and 'ZUSANLI', were selected to be acupunctured. Immunofluorescence and real-time PCR methods were used to detect Na(v)1.1 and Na(v)1.6 expression, and 2,3,5-triphenyl tetra-zolium chloride staining was used to detect infarct volume at 6 hours, 1, 2, 3, and 7 days after ischemia. There is no change in the expression of Na(v)1.1 and Na(v)1.6 in SC group. After ischemia the expression of Na(v)1.1 and Na(v)1.6 was up-regulated compared with that of SC group. The Na(v)1.1 expression was down-regulated from 6 hours to 2 days, then up-regulated from 3 to 7 days. The Na(v)1.6 expression was up-regulated from 6 hours to 1 day, then down-regulated from 2 to 7 days after ischemia. In ET group the neurological deficit behavior, the change in Na(v)1.1 and Na(v)1.6 expression, and the infarct volume were more dramatic than those in IC group at the same time point, and the difference had a statistic value (P&lt;0.05). Na(v)1.1 and Na(v)1.6 play a role in the injury of cerebral ischemia, ET could regulate the expression of Na(v)1.1 and Na(v)1.6 after ischemia, reduce the infarction volume and decrease cerebral ischemic damage. ET had a cerebral protective function, and one of its important mechanism may be it could regulate the expression of Na(v)1.1 and Na(v)1.6 after ischemia."	"Molecular identity of dendritic voltage-gated sodium channels. Active invasion of the dendritic tree by action potentials (APs) generated in the axon is essential for associative synaptic plasticity and neuronal ensemble formation. In cortical pyramidal cells (PCs), this AP back-propagation is supported by dendritic voltage-gated Na+ (Nav) channels, whose molecular identity is unknown. Using a highly sensitive electron microscopic immunogold technique, we revealed the presence of the Nav1.6 subunit in hippocampal CA1 PC proximal and distal dendrites. Here, the subunit density is lower by a factor of 35 to 80 than that found in axon initial segments. A gradual decrease in Nav1.6 density along the proximodistal axis of the dendritic tree was also detected without any labeling in dendritic spines. Our results reveal the characteristic subcellular distribution of the Nav1.6 subunit, identifying this molecule as a key substrate enabling dendritic excitability."	"The up-regulation of voltage-gated sodium channel Nav1.6 expression following fluid percussion traumatic brain injury in rats. The influx of Na and the depolarization mediated by voltage-gated sodium channels (VGSCs) is an early event in traumatic brain injury (TBI) induced cellular abnormalities and is therefore well positioned as an upstream target for pharmacologic modulation of the pathological responses to TBI. Alteration in the expression of the VGSC alpha-subunit has occurred in a variety of neuropathological states including focal cerebral ischemia, spinal injury, and epilepsy. In this study, changes in Nav1.6 mRNA and protein expression were investigated in rat hippocampus after TBI. Forty-eight adult male Sprague Dawley rats were randomly assigned to control or TBI groups. TBI was induced with a lateral fluid percussion device. Expression of mRNA and protein for Nav1.6 in the bilateral hippocampus was examined at 2, 12, 24, and 72 hours after injury by real-time quantitative polymerase chain reaction and Western blot. Immunofluorescence was performed to localize the expression of Nav1.6 protein in the hippocampus. Expression of &gt;Nav1.6 mRNA was significantly up-regulated in the bilateral hippocampus at 2 and 12 hours post-TBI. Significant up-regulation of Nav1.6 protein was identified in the ipsilateral hippocampus from 2 to 72 hours post-TBI and in the contralateral hippocampus from 2 to 24 hours post-TBI. Expression of Nav1.6 occurred predominantly in neurons in the hippocampus. Results of the study showed significant up-regulation of mRNA and protein for Nav1.6 in rat hippocampal neurons after TBI."	"Molecular correlates of age-dependent seizures in an inherited neonatal-infantile epilepsy. Many idiopathic epilepsy syndromes have a characteristic age dependence, the underlying molecular mechanisms of which are largely unknown. Here we propose a mechanism that can explain that epileptic spells in benign familial neonatal-infantile seizures occur almost exclusively during the first days to months of life. Benign familial neonatal-infantile seizures are caused by mutations in the gene SCN2A encoding the voltage-gated Na(+) channel Na(V)1.2. We identified two novel SCN2A mutations causing benign familial neonatal-infantile seizures and analysed the functional consequences of these mutations in a neonatal and an adult splice variant of the human Na(+) channel Na(V)1.2 expressed heterologously in tsA201 cells together with beta1 and beta2 subunits. We found significant gating changes leading to a gain-of-function, such as an increased persistent Na(+) current, accelerated recovery from fast inactivation or altered voltage-dependence of steady-state activation. Those were restricted to the neonatal splice variant for one mutation, but more pronounced for the adult form for the other, suggesting that a differential developmental splicing does not provide a general explanation for seizure remission. We therefore analysed the developmental expression of Na(V)1.2 and of another voltage-gated Na(+) channel, Na(V)1.6, using immunohistochemistry and real-time reverse transcription-polymerase chain reaction in mouse brain slices. We found that Na(V)1.2 channels are expressed early in development at axon initial segments of principal neurons in the hippocampus and cortex, but their expression is diminished and they are gradually replaced as the dominant channel type by Na(V)1.6 during maturation. This finding provides a plausible explanation for the transient expression of seizures that occur due to a gain-of-function of mutant Na(V)1.2 channels."	"Dysfunction of the Scn8a voltage-gated sodium channel alters sleep architecture, reduces diurnal corticosterone levels, and enhances spatial memory. Voltage-gated sodium channels (VGSCs) are responsible for the initiation and propagation of transient depolarizing currents and play a critical role in the electrical signaling between neurons. A null mutation in the VGSC gene SCN8A, which encodes the transmembrane protein Na(v)1.6, was identified previously in a human family. Heterozygous mutation carriers displayed a range of phenotypes, including ataxia, cognitive deficits, and emotional instability. A possible role for SCN8A was also proposed in studies examining the genetic basis of attempted suicide and bipolar disorder. In addition, mice with a Scn8a loss-of-function mutation (Scn8a(med-Tg/+)) show altered anxiety and depression-like phenotypes. Because psychiatric abnormalities are often associated with altered sleep and hormonal patterns, we evaluated heterozygous Scn8a(med-jo/+) mutants for alterations in sleep-wake architecture, diurnal corticosterone levels, and behavior. Compared with their wild-type littermates, Scn8a(med-jo/+) mutants experience more non-rapid eye movement (non-REM) sleep, a chronic impairment of REM sleep generation and quantity, and a lowered and flattened diurnal rhythm of corticosterone levels. No robust differences were observed between mutants and wild-type littermates in locomotor activity or in behavioral paradigms that evaluate anxiety or depression-like phenotypes; however, Scn8a(med-jo/+) mutants did show enhanced spatial memory. This study extends the spectrum of phenotypes associated with mutations in Scn8a and suggests a novel role for altered sodium channel function in human sleep disorders."	"Sodium channel gene family: epilepsy mutations, gene interactions and modifier effects. The human sodium channel family includes seven neuronal channels that are essential for the initiation and propagation of action potentials in the CNS and PNS. In view of their critical role in neuronal firing and their strong sequence conservation during evolution, it is not surprising that mutations in the sodium channel genes are responsible for a growing spectrum of channelopathies. Nearly 700 mutations of the SCN1A gene have been identified in patients with Dravet's syndrome (severe myoclonic epilepsy of infancy), making this the most commonly mutated gene in human epilepsy. A small number of mutations have been found in SCN2A, SCN3A and SCN9A, and studies in the mouse suggest that SCN8A may also contribute to seizure disorders. Interactions between genetic variants of SCN2A and KCNQ2 in the mouse and variants of SCN1A and SCN9A in patients provide models of potential genetic modifier effects in the more common human polygenic epilepsies. New methods for generating induced pluripotent stem cells and neurons from patients will facilitate functional analysis of amino acid substitutions in channel proteins. Whole genome sequencing and exome sequencing in patients with epilepsy will soon make it possible to detect multiple variants and their interactions in the genomes of patients with seizure disorders."	"Biophysical characterisation of the persistent sodium current of the Nav1.6 neuronal sodium channel: a single-channel analysis. Na(v)1.6 is the major voltage-gated sodium channel at nodes of Ranvier. This channel has been shown to produce a robust persistent inward current in whole-cell experiments. Na(v)1.6 plays an important role in axonal conduction and may significantly contribute to the pathophysiology of the injured nervous system through this persistent current. However, the underlying molecular mechanisms and regulation of the persistent current are not well understood. Using the whole-cell configuration of the patch-clamp technique, we investigated the Na(v)1.6 transient and persistent currents in HEK-293. Previous studies have shown that the persistent current depended on the content of the patch electrode. Therefore, we characterised the single-channel properties of the persistent current with an intact intracellular medium using the cell-attached configuration of the patch-clamp technique. In HEK-293 cells, the Na(v)1.6 persistent current recorded in the whole-cell configuration was 3-5% of the peak transient current. In single-channel recording, the ratio between peak and persistent open probability confirmed the magnitude of the persistent current observed in the whole-cell configuration. The cell-attached configuration revealed that the molecular mechanism of the whole-cell persistent current is a consequence of single Na(v)1.6 channels reopening."	"Persistent Nav1.6 current at axon initial segments tunes spike timing of cerebellar granule cells. Cerebellar granule (CG) cells generate high-frequency action potentials that have been proposed to depend on the unique properties of their voltage-gated ion channels. To address the in vivo function of Nav1.6 channels in developing and mature CG cells, we combined the study of the developmental expression of Nav subunits with recording of acute cerebellar slices from young and adult granule-specific Scn8a KO mice. Nav1.2 accumulated rapidly at early-formed axon initial segments (AISs). In contrast, Nav1.6 was absent at early postnatal stages but accumulated at AISs of CG cells from P21 to P40. By P40-P65, both Nav1.6 and Nav1.2 co-localized at CG cell AISs. By comparing Na(+) currents in mature CG cells (P66-P74) from wild-type and CG-specific Scn8a KO mice, we found that transient and resurgent Na(+) currents were not modified in the absence of Nav1.6 whereas persistent Na(+) current was strongly reduced. Action potentials in conditional Scn8a KO CG cells showed no alteration in threshold and overshoot, but had a faster repolarization phase and larger post-spike hyperpolarization. In addition, although Scn8a KO CG cells kept their ability to fire action potentials at very high frequency, they displayed increased interspike-interval variability and firing irregularity in response to sustained depolarization. We conclude that Nav1.6 channels at axon initial segments contribute to persistent Na(+) current and ensure a high degree of temporal precision in repetitive firing of CG cells."	"Astrocytes within multiple sclerosis lesions upregulate sodium channel Nav1.5. Astrocytes are prominent participants in the response of the central nervous system to injury, including neuroinflammatory insults. Rodent astrocytes in vitro have been shown to express voltage-gated sodium channels in a dynamic manner, with a switch in expression of tetrodotoxin-sensitive to tetrodotoxin-resistant channels in reactive astrocytes. However, the expression of sodium channels in human astrocytes has not been studied, and it is not known whether there are changes in the expression of sodium channels in reactive astrocytes of the human central nervous system. Here, we demonstrate a focal and robust upregulation of sodium channel Nav1.5 in reactive astrocytes at the borders of, and within, active and chronic multiple sclerosis lesions. Nav1.5 was only detectable at very low levels in astrocytes within multiple sclerosis macroscopically normal-appearing white matter or in normal control brain. Nav1.1, Nav1.2, Nav1.3 and Nav1.6 showed little or no expression in astrocytes within normal control tissue and limited upregulation in active multiple sclerosis lesions. Nav1.5 was also expressed at high levels in astrocytes in tissue surrounding new and old cerebrovascular accidents and brain tumours. These results demonstrate the expression of Nav1.5 in human astrocytes and show that Nav1.5 expression is dynamic in these cells. Our observations suggest that the upregulated expression of Nav1.5 in astrocytes may provide a compensatory mechanism, which supports sodium/potassium pump-dependent ionic homoeostasis in areas of central nervous system injury."	"Functional reciprocity between Na+ channel Nav1.6 and beta1 subunits in the coordinated regulation of excitability and neurite outgrowth. Voltage-gated Na(+) channel (VGSC) beta1 subunits regulate cell-cell adhesion and channel activity in vitro. We previously showed that beta1 promotes neurite outgrowth in cerebellar granule neurons (CGNs) via homophilic cell adhesion, fyn kinase, and contactin. Here we demonstrate that beta1-mediated neurite outgrowth requires Na(+) current (I(Na)) mediated by Na(v)1.6. In addition, beta1 is required for high-frequency action potential firing. Transient I(Na) is unchanged in Scn1b (beta1) null CGNs; however, the resurgent I(Na), thought to underlie high-frequency firing in Na(v)1.6-expressing cerebellar neurons, is reduced. The proportion of axon initial segments (AIS) expressing Na(v)1.6 is reduced in Scn1b null cerebellar neurons. In place of Na(v)1.6 at the AIS, we observed an increase in Na(v)1.1, whereas Na(v)1.2 was unchanged. This indicates that beta1 is required for normal localization of Na(v)1.6 at the AIS during the postnatal developmental switch to Na(v)1.6-mediated high-frequency firing. In agreement with this, beta1 is normally expressed with alpha subunits at the AIS of P14 CGNs. We propose reciprocity of function between beta1 and Na(v)1.6 such that beta1-mediated neurite outgrowth requires Na(v)1.6-mediated I(Na), and Na(v)1.6 localization and consequent high-frequency firing require beta1. We conclude that VGSC subunits function in macromolecular signaling complexes regulating both neuronal excitability and migration during cerebellar development."	"Increase of c-Fos and c-Jun expression in spinal and cranial motoneurons of the degenerating muscle mouse (Scn8a(dmu)). The degenerating muscle (dmu) mouse harbors a loss-of-function mutation in the Scn8a gene, which encodes the alpha subunit of the voltage-gated sodium channel (VGSC) Na(V)1.6. The distribution of c-Fos and c-Jun was examined in spinal and cranial motoneurons of the dmu mouse. In the cervical spinal cord, trigeminal motor nucleus (Vm), facial nucleus (VII), dorsal motor nucleus of the vagus (X), and hypoglossal nucleus (XII) of wild-type mice, motoneurons expressed c-Fos and c-Jun-immunoreactivity. The immunoreactivity in wild-type mice was mostly weak and localized to the nucleus of these neurons whereas in the spinal cord and brain stem of dmu mice motoneurons showed intense c-Fos and c-Jun-immunoreactivity. The number of c-Fos-immunoreactive motoneurons was dramatically elevated in the cervical spinal cord (wild type, 4.8 +/- 1.0; dmu, 17.3 +/- 1.6), Vm (wild type, 76.2 +/- 21.6; dmu, 216.9 +/- 30.9), VII (wild type, 162.4 +/- 43.3; dmu, 533.3 +/- 41.2), and XII (wild type, 58.2 +/- 43.3; dmu, 150.9 +/- 25.7). The mutation also increased the number of c-Jun-immunoreactive motoneurons in the cervical spinal cord (wild type, 1.6 +/- 0.8; dmu, 12.1 +/- 2.1), Vm (wild type, 41.4 +/- 18.0; dmu, 123.1 +/- 11.7), and X (wild type, 39.1 +/- 10.7; dmu, 92.8 +/- 17.8). The increase of these transcription factors may be associated with the uncoordinated and excessive movement of forelimbs and degeneration of cardiac muscles in dmu mice."	"Characterization of NaV1.6-mediated Na+ currents in smooth muscle cells isolated from mouse vas deferens. Patch-clamp experiments were performed to investigate the behavior of voltage-activated inward currents in vas deferens myocytes from Na(V)1.6-null mice (Na(V)1.6(-/-)) lacking the expression of the Na(+) channel gene, Scn8a, and their wild-type littermates (Na(V)1.6(+/+)). Immunohistochemistry confirmed expression of Na(V)1.6 in the muscle of Na(V)1.6(+/+), but not Na(V)1.6(-/-), vas deferens. PCR analysis revealed that the only beta(1)-subunit gene expressed in Na(V)1.6(+/+) vas deferens was Scn1b. In Na(V)1.6(+/+) myocytes, the threshold for membrane currents evoked by 20 msec voltage ramps (-100 mV to 60 mV) was -38.5 +/- 4.6 mV and this was shifted to a more positive potential (-31.2 +/- 4.9 mV) by tetrodotoxin (TTX). In Na(V)1.6(-/-) myocytes, the threshold was -30.4 +/- 3.4 mV and there was no TTX-sensitive current. The Na(+) current (I(Na)) in Na(V)1.6(+/+) myocytes had a bell-shaped current-voltage relationship that peaked at approximately -10 mV. Increasing the duration of the voltage ramps beyond 20 msec reduced the peak amplitude of I(Na). I(Na) displayed both fast (tau approximately 10 msec) and slow (tau approximately 1 sec) recovery from inactivation, the magnitude of the slow component increasing with the duration of the conditioning pulse (5-40 msec). During repetitive activation (5-40 msec pulses), I(Na) declined at stimulation frequencies &gt; 0.5 Hz and at 10 Hz &lt;or= 50% of the current remained. These findings indicate that I(Na) is due solely to Na(V)1.6 in Na(V)1.6(+/+) myocytes. The gating properties of these channels suggest they play a major role in regulating smooth muscle excitability, particularly in response to rapid depolarizing stimuli."	"High-density SNP screen of sodium channel genes by haplotype tagging and DNA pooling for association with idiopathic generalized epilepsy. We have investigated seven voltage-gated sodium channel genes for association with idiopathic generalized epilepsy (IGE). Probands and control DNA were grouped into pools and used to screen 85 single-nucleotide polymorphisms (SNPs), mostly HapMap SNPs tagging the common variation in these genes. Twelve SNPs exhibiting an allele frequency difference between pools were genotyped individually in our sample of 232 probands, 313 controls, and 95 parent-proband trios. Two SNPs, in SCN1A and SCN8A, were associated by allele and genotype at nominal level of significance, but were not significant after Bonferroni correction. Two SCN2A SNPs (rs3943809 and rs16850331) were associated by case-control with a subgroup with IGE and history of febrile seizures and also by transmission disequilibrium test (TDT) in parent-proband trios. Both SNPs are part of a linkage disequilibrium (LD) cluster of 38 SNPs, but none are obvious functional variants. The association of rs3943809 with the febrile seizure subgroup (p = 0.0004) remains significant after the conservative Bonferroni correction for multiple testing."	"Human voltage-gated sodium channel mutations that cause inherited neuronal and muscle channelopathies increase resurgent sodium currents. Inherited mutations in voltage-gated sodium channels (VGSCs; or Nav) cause many disorders of excitability, including epilepsy, chronic pain, myotonia, and cardiac arrhythmias. Understanding the functional consequences of the disease-causing mutations is likely to provide invaluable insight into the roles that VGSCs play in normal and abnormal excitability. Here, we sought to test the hypothesis that disease-causing mutations lead to increased resurgent currents, unusual sodium currents that have not previously been implicated in disorders of excitability. We demonstrated that a paroxysmal extreme pain disorder (PEPD) mutation in the human peripheral neuronal sodium channel Nav1.7, a paramyotonia congenita (PMC) mutation in the human skeletal muscle sodium channel Nav1.4, and a long-QT3/SIDS mutation in the human cardiac sodium channel Nav1.5 all substantially increased the amplitude of resurgent sodium currents in an optimized adult rat-derived dorsal root ganglion neuronal expression system. Computer simulations indicated that resurgent currents associated with the Nav1.7 mutation could induce high-frequency action potential firing in nociceptive neurons and that resurgent currents associated with the Nav1.5 mutation could broaden the action potential in cardiac myocytes. These effects are consistent with the pathophysiology associated with the respective channelopathies. Our results indicate that resurgent currents are associated with multiple channelopathies and are likely to be important contributors to neuronal and muscle disorders of excitability."	"Differential expression of exon 5 splice variants of sodium channel alpha subunit mRNAs in the developing mouse brain. Sodium channel alpha subunit genes expressed in the human brain, SCN1A, SCN2A, SCN3A and SCN8A, are subject to alternative splicing of coding exons 5N and 5A. In this study we examined expression of alpha subunit mRNA and exon 5 splicing in the developing mouse brain. Expression levels of Scn1a, Scn2a and Scn8a mRNAs increase postnatally, whereas Scn3a mRNA expression levels decrease. Scn1a mRNA contains only exon 5A, due to the absence of exon 5N in the mouse Scn1a gene. At birth, Scn2a is the only sodium channel alpha subunit mRNA that contains higher or equal amounts of the 5N isoform compared to the 5A isoform in most brain regions. In contrast, the predominant isoform of Scn3a and Scn8a mRNAs in the newborn mouse brain is 5A. 5N/5A ratios for each of the three mRNAs vary across brain regions, with cortex &gt;or= hippocampus&gt;thalamus&gt;cerebellum. In all brain regions and for all three alpha subunits, 5N/5A ratios gradually decrease with age, levelling at a value between 0.1 and 0.2. These findings suggest potential involvement of common factors in the alternative splicing of exon 5 for all three transcripts, and that expression of these factors varies between brain regions and changes during development. Differences in the strength of exon 5N and/or exon 5A splice sites in Scn2a pre-mRNA as compared to Scn1a and Scn8a may underlie the observed differences in 5N/5A ratios in the three alpha subunit mRNAs."	"Functional recovery of callosal axons following demyelination: a critical window. Axonal dysfunction as a result of persistent demyelination has been increasingly appreciated as a cause of functional deficit in demyelinating diseases such as multiple sclerosis. Therefore, it is crucial to understand the ultimate causes of ongoing axonal dysfunction and find effective measures to prevent axon loss. Our findings related to functional deficit and functional recovery of axons from a demyelinating insult are important preliminary steps towards understanding this issue. Cuprizone diet for 3-6 wks triggered extensive corpus callosum (CC) demyelination, reduced axon conduction, and resulted in loss of axon structural integrity including nodes of Ranvier. Replacing cuprizone diet with normal diet led to regeneration of myelin, but did not fully reverse the conduction and structural deficits. A shorter 1.5 wk cuprizone diet also caused demyelination of the CC, with minimal loss of axon structure and nodal organization. Switching to normal diet led to remyelination and restored callosal axon conduction to normal levels. Our findings suggest the existence of a critical window of time for remyelination, beyond which demyelinated axons become damaged beyond the point of repair and permanent functional loss follows. Moreover, initiating remyelination early within the critical period, before prolonged demyelination-induced axon damage ensues, will improve functional axon recovery and inhibit disease progression."	"Voltage-gated sodium channel expression in rat spiral ganglion neurons. The spiral ganglion neurons (SGN) provide the afferent innervation of the hair cells in the organ of Corti and relay auditory information from the inner ear to the brain. Voltage-gated sodium channels (Na(V)) initiate and propagate action potentials that encode this sensory information but little is known regarding the subtypes expressed in these cells. We have used RT-PCR and immunohistochemistry to study the compliment and anatomical distribution of Na(V) channels in rodent SGN. Na(V)1.1, Na(V)1.6 and Na(V)1.7 were all detected at the mRNA level. Fluorescence or streptavidin-horseradish peroxidase immunohistochemistry extended these findings, demonstrating predominant localisation of Na(V)1.6 and Na(V)1.7 on SGN cell bodies and Na(V)1.1 on axonal processes. Dual labelling with peripherin demonstrated higher Na(V)1.6 and Na(V)1.7 expression on Type I rather than Type II neurons. These results provide evidence for selective expression and variations in the distribution of VGSC in the rodent SGN, which may guide further studies into afferent function in the auditory pathway and therapeutic approaches for diseases such as hearing loss and tinnitus."	"Dexamethasone effects on Na(v)1.6 in tooth pulp, dental nerves, and alveolar osteoclasts of adult rats. Dexamethasone causes extensive physiologic reactions including the reduction of inflammation and pain. Here, we asked whether it also affected dental or periodontal cells or dental innervation by altering voltage-gated sodium channel Na(v)1.6 immunoreactivity (IR) or neural synaptophysin. Daily dexamethasone (0.2 mg/kg) given for 1 week to rats caused 12-fold increased intensity of Na(v)1.6-IR in dendritic pulpal cells of normal molars and incisors compared with vehicle treatment. These cells also co-localized monocyte (ED-1) or dendritic cell (CD11b/Ox42) markers, and their location in molars expanded during dexamethasone treatment to include deeper pulp. Furthermore, dexamethasone caused a 10-fold decrease in the number of Na(v)1.6-immunoreactive multinucleate osteoclasts along the alveolar bone of molar root sockets. No changes occurred for neural Na(v)1.6 at axonal nodes of Ranvier, even though IR for calcitonin gene-related peptide was greatly decreased, as expected, and neural synaptophysin-IR was decreased 59% by dexamethasone. At 4 days after tooth injury, pulpal vasodilation and increased Na(v)1.6-immunoreactive pulp cells were similar for all groups. Thus, dexamethasone changes dental pulp cell and alveolar osteoclast Na(v)1.6-IR in normal teeth, but different mechanisms occur after tooth injury when tissue reactions were similar for dexamethasone- and vehicle-treated rats. Steroid-induced alterations of dental pain and inflammation coincide with altered exocytic capability in dental nerve fibers as shown by synaptophysin-IR and with altered pulp cell Na(v)1.6-IR and osteoclast number, but not with any changes in Na(v)1.6-IR for nodes of Ranvier in myelinated dental axons."	"Analysis of the mouse mutant Cloth-ears shows a role for the voltage-gated sodium channel Scn8a in peripheral neural hearing loss. Deafness is the most common sensory disorder in humans and the aetiology of genetic deafness is complex. Mouse mutants have been crucial in identifying genes involved in hearing. However, many deafness genes remain unidentified. Using N-ethyl N-nitrosourea (ENU) mutagenesis to generate new mouse models of deafness, we identified a novel semi-dominant mouse mutant, Cloth-ears (Clth). Cloth-ears mice show reduced acoustic startle response and mild hearing loss from approximately 30 days old. Auditory-evoked brainstem response (ABR) and distortion product otoacoustic emission (DPOAE) analyses indicate that the peripheral neural auditory pathway is impaired in Cloth-ears mice, but that cochlear function is normal. In addition, both Clth/Clth and Clth/+ mice display paroxysmal tremor episodes with behavioural arrest. Clth/Clth mice also show a milder continuous tremor during movement and rest. Longitudinal phenotypic analysis showed that Clth/+ and Clth/Clth mice also have complex defects in behaviour, growth, neurological and motor function. Positional cloning of Cloth-ears identified a point mutation in the neuronal voltage-gated sodium channel alpha-subunit gene, Scn8a, causing an aspartic acid to valine (D981V) change six amino acids downstream of the sixth transmembrane segment of the second domain (D2S6). Complementation testing with a known Scn8a mouse mutant confirmed that this mutation is responsible for the Cloth-ears phenotype. Our findings suggest a novel role for Scn8a in peripheral neural hearing loss and paroxysmal motor dysfunction."	"Membrane trauma and Na+ leak from Nav1.6 channels. During brain trauma, white matter experiences shear and stretch forces that, without severing axons, nevertheless trigger their secondary degeneration. In central nervous system (CNS) trauma models, voltage-gated sodium channel (Nav) blockers are neuroprotective. This, plus the rapid tetrodotoxin-sensitive Ca2+ overload of stretch-traumatized axons, points to &quot;leaky&quot; Nav channels as a pivotal early lesion in brain trauma. Direct effects of mechanical trauma on neuronal Nav channels have not, however, been tested. Here, we monitor immediate responses of recombinant neuronal Nav channels to stretch, using patch-clamp and Na+-dye approaches. Trauma constituted either bleb-inducing aspiration of cell-attached oocyte patches or abrupt uniaxial stretch of cells on an extensible substrate. Nav1.6 channel transient current displayed irreversible hyperpolarizing shifts of steady-state inactivation [availability(V)] and of activation [g(V)] and, thus, of window current. Left shift increased progressively with trauma intensity. For moderately intense patch trauma, a approximately 20-mV hyperpolarizing shift was registered. Nav1.6 voltage sensors evidently see lower energy barriers posttrauma, probably because of the different bilayer mechanics of blebbed versus intact membrane. Na+ dye-loaded human embryonic kidney (HEK) cells stably transfected with alphaNav1.6 were subjected to traumatic brain injury-like stretch. Cytoplasmic Na+ levels abruptly increased and the trauma-induced influx had a significant tetrodotoxin-sensitive component. Nav1.6 channel responses to cell and membrane trauma are therefore consistent with the hypothesis that mechanically induced Nav channel leak is a primary lesion in traumatic brain injury. Nav1.6 is the CNS node of Ranvier Nav isoform. When, during head trauma, nodes experienced bleb-inducing membrane damage of varying intensities, nodal Nav1.6 channels should immediately &quot;leak&quot; over a broadly left-smeared window current range."	"Who let the spikes out? NA"	"Distinct contributions of Na(v)1.6 and Na(v)1.2 in action potential initiation and backpropagation. The distal end of the axon initial segment (AIS) is the preferred site for action potential initiation in cortical pyramidal neurons because of its high Na(+) channel density. However, it is not clear why action potentials are not initiated at the proximal AIS, which has a similarly high Na(+) channel density. We found that low-threshold Na(v)1.6 and high-threshold Na(v)1.2 channels preferentially accumulate at the distal and proximal AIS, respectively, and have distinct functions in action potential initiation and backpropagation. Patch-clamp recording from the axon cut end of pyramidal neurons in the rat prefrontal cortex revealed a high density of Na(+) current and a progressive reduction in the half-activation voltage (up to 14 mV) with increasing distance from the soma at the AIS. Further modeling studies and simultaneous somatic and axonal recordings showed that distal Na(v)1.6 promotes action potential initiation, whereas proximal Na(v)1.2 promotes its backpropagation to the soma."	"Synthesis, solution structure, and phylum selectivity of a spider delta-toxin that slows inactivation of specific voltage-gated sodium channel subtypes. Magi 4, now renamed delta-hexatoxin-Mg1a, is a 43-residue neurotoxic peptide from the venom of the hexathelid Japanese funnel-web spider (Macrothele gigas) with homology to delta-hexatoxins from Australian funnel-web spiders. It binds with high affinity to receptor site 3 on insect voltage-gated sodium (Na(V)) channels but, unlike delta-hexatoxins, does not compete for the related site 3 in rat brain despite being previously shown to be lethal by intracranial injection. To elucidate differences in Na(V) channel selectivity, we have undertaken the first characterization of a peptide toxin on a broad range of mammalian and insect Na(V) channel subtypes showing that delta-hexatoxin-Mg1a selectively slows channel inactivation of mammalian Na(V)1.1, Na(V)1.3, and Na(V)1.6 but more importantly shows higher affinity for insect Na(V)1 (para) channels. Consequently, delta-hexatoxin-Mg1a induces tonic repetitive firing of nerve impulses in insect neurons accompanied by plateau potentials. In addition, we have chemically synthesized and folded delta-hexatoxin-Mg1a, ascertained the bonding pattern of the four disulfides, and determined its three-dimensional solution structure using NMR spectroscopy. Despite modest sequence homology, we show that key residues important for the activity of scorpion alpha-toxins and delta-hexatoxins are distributed in a topologically similar manner in delta-hexatoxin-Mg1a. However, subtle differences in the toxin surfaces are important for the novel selectivity of delta-hexatoxin-Mg1a for certain mammalian and insect Na(V) channel subtypes. As such, delta-hexatoxin-Mg1a provides us with a specific tool with which to study channel structure and function and determinants for phylum- and tissue-specific activity."	"Increased late sodium currents are related to transcription of neuronal isoforms in a pressure-overload model. The late and persistent sodium current (I(Na)) has been identified as a target for anti-arrhythmia drugs in patients with heart failure (HF). However, the underlying mechanism of late I(Na) (I(NaL)) production remains uncertain. We hypothesized that transcriptional alteration among sodium channel (NaCh) isoforms may contribute to I(NaL) in failing cardiomyocytes. Pressure-overload rat models were created by 16-week constriction of the ascending aorta (HF). Haemodynamic and electrocardiographic variables were studied in sham operation and HF rats. Action potential (AP) and I(Na) were recorded using whole-cell patch-clamp techniques. The expression of various NaCh isoforms was evaluated by immunocytochemistry, RT-PCR, and western blot. The HF group exhibited left ventricular enlargement, systolic dysfunction, and prolongation of QTc intervals (P &lt; 0.05). Current-clamp recording indicated that AP durations (APDs) were more sensitive to tetrodotoxin. Voltage-clamp recordings showed that I(NaL) was increased (-1.54 +/- 0.43 vs. -1.08 +/- 0.38 pA/pF, P &lt; 0.01) in HF, but transient I(Na) (I(NaT)) density was decreased (-14.61 +/- 2.30 vs. -26.15 +/- 5.17 pA/pF, P &lt; 0.01). Correspondingly, the relative mRNA levels of the neuronal isoforms SCN1a and SCN8a increased 2.5- and 2.7-fold, respectively; SCN3a did not change, whereas SCN5a decreased by approximately 60% in HF. Protein levels paralleled their mRNA expression. The up-regulated expression of the neuronal NaCh isoforms SCN1a and SCN8a could be one mechanism of I(NaL) production, which may contribute to prolongation of APD in the failing heart."	"Actions of veratridine on tetrodotoxin-sensitive voltage-gated Na currents, Na1.6, in murine vas deferens myocytes. The effects of veratridine, an alkaloid found in Liliaceae plants, on tetrodotoxin (TTX)-sensitive voltage-gated Na(+) channels were investigated in mouse vas deferens. Effects of veratridine on TTX-sensitive Na(+) currents (I(Na)) in vas deferens myocytes dispersed from BALB/c mice, homozygous mice with a null allele of Na(V)1.6 (Na(V)1.6(-/-)) and wild-type mice (Na(V)1.6(+/+)) were studied using patch-clamp techniques. Tension measurements were also performed to compare the effects of veratridine on phasic contractions in intact tissues. In whole-cell configuration, veratridine had a concentration-dependent dual action on the peak amplitude of I(Na): I(Na) was enhanced by veratridine (1-10 microM), while higher concentrations (&gt; or =30 microM) inhibited I(Na). Additionally, two membrane current components were evoked by veratridine, namely a sustained inward current during the duration of the depolarizing rectangular pulse and a tail current at the repolarization. Although veratridine caused little shift of the voltage dependence of the steady-state inactivation curve and the activation curve for I(Na), veratridine enhanced a non-inactivating component of I(Na). Veratridine caused no detectable contractions in vas deferens from Na(V)1.6(-/-) mice, although in tissues from Na(V)1.6(+/+) mice, veratridine (&gt; or =3 microM) induced TTX-sensitive contractions. Similarly, no detectable inward currents were evoked by veratridine in Na(V)1.6(-/-) vas deferens myocytes, while veratridine elicited both the sustained and tail currents in cells taken from Na(V)1.6(+/+) mice. These results suggest that veratridine possesses a dual action on I(Na) and that the veratridine-induced activation of contraction is induced by the activation of Na(V)1.6 channels."	"Role of the terminal domains in sodium channel localization. Voltage-gated sodium channels are membrane proteins that initiate action potentials in neurons following membrane depolarization. Members of this family show differential distribution at the subcellular level. The mechanisms underlying the targeting of these isoforms are not understood. However, their specificity is important because the isoforms can change the excitability of the membrane due to differences in their electrophysiological properties. In this study, chimeras generated between Na(V)1.2 and Na(V)1.6 were used to test channel domains for sequence that would allow Na(V)1.2 to localize to unmyelinated axons when Na(V)1.6 could not. We show that the N-terminal 202 amino acids of the Na(V)1.2 channel can mediate membrane domain-specific sorting in polarized epithelial cells and are necessary but not sufficient for localizing the isoform to the axons of cultured neurons. The domain-sorting signal is in the region between amino acids 110-202 of the Na(V)1.2 channel. The C-terminal 451 amino acids of Na(V)1.2 likely contain determinants that interact with neuron-specific factors to direct Na(V)1.2 to the axon."	"Versican V2 assembles the extracellular matrix surrounding the nodes of ranvier in the CNS. The CNS-restricted versican splice-variant V2 is a large chondroitin sulfate proteoglycan incorporated in the extracellular matrix surrounding myelinated fibers and particularly accumulating at nodes of Ranvier. In vitro, it is a potent inhibitor of axonal growth and therefore considered to participate in the reduction of structural plasticity connected to myelination. To study the role of versican V2 during postnatal development, we designed a novel isoform-specific gene inactivation approach circumventing early embryonic lethality of the complete knock-out and preventing compensation by the remaining versican splice variants. These mice are viable and fertile; however, they display major molecular alterations at the nodes of Ranvier. While the clustering of nodal sodium channels and paranodal structures appear in versican V2-deficient mice unaffected, the formation of the extracellular matrix surrounding the nodes is largely impaired. The conjoint loss of tenascin-R and phosphacan from the perinodal matrix provide strong evidence that versican V2, possibly controlled by a nodal receptor, organizes the extracellular matrix assembly in vivo."	"Autotomy behavior correlates with the DRG and spinal expression of sodium channels in inbred mouse strains. Patients who have suffered nerve injury show profound inter-individual variability in neuropathic pain even when the precipitating injury is nearly identical. Variability in pain behavior is also observed across inbred strains of mice where it has been attributed to genetic polymorphisms. Identification of cellular correlates of pain variability across strains can advance the understanding of underlying pain mechanisms. Voltage-gated sodium channels (VGSCs) play a major role in the generation and propagation of action potentials in the primary afferents and are therefore of obvious importance for pain phenotype. Here, we examined the mRNA expression levels of the VGSC alpha-subunits Na(v)1.3, Na(v)1.5, Na(v)1.6, and Na(v)1.7, as well as the auxiliary VGSC-related molecule, Contactin. Dorsal root ganglia (DRG) and spinal cords from 5 inbred mouse strains with contrasting pain phenotype (AKR/J, C3H/HeJ, C57BL/6J, C58/J and CBA/J) were analyzed 7 days following sciatic and saphenous nerve transection. In the DRG, Na(v)1.6, Na(v)1.7 and Contactin were abundantly expressed in control animals. Following nerve injury, the residual mRNA levels of Na(v)1.6 (downregulated in two of the strains) correlated tightly to the extent of autotomy behavior. A suggestive correlation was also seen for the post-injury mRNA levels of Contactin (downregulated in all strains) with autotomy. Thus, our results suggest a contribution by DRG Na(v)1.6, and possibly Contactin to neuropathic pain in the neuroma model in mice."	"FGF14 N-terminal splice variants differentially modulate Nav1.2 and Nav1.6-encoded sodium channels. The Intracellular Fibroblast Growth Factor (iFGF) subfamily includes four members (FGFs 11-14) of the structurally related FGF superfamily. Previous studies showed that the iFGFs interact directly with the pore-forming (alpha) subunits of voltage-gated sodium (Nav) channels and regulate the functional properties of sodium channel currents. Sequence heterogeneity among the iFGFs is thought to confer specificity to this regulation. Here, we demonstrate that the two N-terminal alternatively spliced FGF14 variants, FGF14-1a and FGF14-1b, differentially regulate currents produced by Nav1.2 and Nav1.6 channels. FGF14-1b, but not FGF14-1a, attenuates both Nav1.2 and Nav1.6 current densities. In contrast, co-expression of an FGF14 mutant, lacking the N-terminus, increased Nav1.6 current densities. In neurons, both FGF14-1a and FGF14-1b localized at the axonal initial segment, and deletion of the N-terminus abolished this localization. Thus, the FGF14 N-terminus is required for targeting and functional regulation of Nav channels, suggesting an important function for FGF14 alternative splicing in regulating neuronal excitability."	"Cerebellum-related characteristics of Scn8a-mutant mice. Among ten sodium channel alpha-subunit genes mapped in human and mouse genomes, the SCN8A gene is primarily expressed in neurons and glia. Mice with two types of Scn8a null mutations--Scn8a ( med ) and Scn8a ( medTg )--live for only 21-24 days, but those with incomplete mutations-Scn8a ( medJ ) and Scn8a ( medJo )--and those with knockout of Scn8a only in cerebellar Purkinje cells live to adult age. We review here previous work on cerebellum and related regions of Scn8a mutant mice and include some newer immunohistochemical and microchemical results. The resurgent sodium current that underlies the repeated firing of Purkinje cells is reduced in Scn8a mutant and knockout mice. Purkinje cells of mutant mice have greatly reduced spontaneous activity, as do the analogous cartwheel cells of the dorsal cochlear nucleus. Up-regulation of GABA(A) receptors in regions to which Purkinje cells project may partially compensate for their decreased activity in the mutant mice. The somata of cerebellar Purkinje cells of Scn8a ( medJ ) and Scn8a ( medJo ) mice, as revealed by PEP-19 immunoreaction, are slightly smaller than normal, and their axons, especially in Scn8a ( medJo ) mice, sometimes show enlargements similar to those in other types of mutant mice. Density of GABA-like immunoreactivity is decreased in Purkinje somata and regions of termination in deep cerebellar and vestibular nuclei of Scn8a ( medJ ) mice, but measured GABA concentration is not significantly reduced in microdissected samples of these regions. The concentrations of taurine and glutamine are significantly increased in cerebellar-related regions of Scn8a ( medJ ) mice, possibly suggesting up-regulation of glial amino acid metabolism."	"Long-term increasing co-localization of SCN8A and ankyrin-G in rat hippocampal cornu ammonis 1 after pilocarpine induced status epilepticus. Voltage-gated sodium channels (VGSC) are important determinants of neuronal excitability which are implicated in the pathogenesis of epilepsy. Ankyrin-G contributes to the distribution and regulation of VGSC. Here we investigated the alterations of the two alpha-subunits SCN8A and SCN1A and their adapter ankyrin-G in the hippocampal cornu ammonis 1 (CA1) of rats after pilocarpine induced status epilepticus (PISE), compared to the sham-control group (C1) and blank-control group (C2). Significant increase of SCN8A mRNA (41.08% increase compared to C1, P&lt;0.001; 30.88% increase compared to C2, P=0.011) was detected 60 days after PISE. At D1 SCN8A mRNA reduced but no significant changes were detected when compared to controls (one-way ANOVA, F=1.232, P=0.276). After measuring the optical density of Western blot, we detected significant differences between the levels of SCN8A protein in different groups but no difference between the protein levels of SCN1A at D1 and D60 after pilocarpine treatment compared to the control. At D60 the relative copies of ankyrin-G mRNA on internal control beta-actin in PISE group increased significantly compared to C1 and C2 (one-way ANOVA, F=16.537, P&lt;0.001). Significantly increase of ankyrin-G immunoreactivity in Western blot from the PISE group 1 day and 60 days after PISE was observed, compared to the controls (one-way ANOVA, F=24.255 at D1, P&lt;0.001; F=29.280 at D60, P&lt;0.001). After analyzing the double-stained cells counting, we detected significant differences between the numbers of SCN8A+/ankyrin-G+ immunoreactive cells in different groups in acute and chronic period following PISE (two way-ANOVA, F(group)=37.905, P&lt;0.001; F(day)=45.310, P&lt;0.001). The data revealed that both SCN8A and ankyrin-G increased significantly in the CA1 subfield of the rat hippocampus 60 days following pilocarpine induced status epilepticus and co-localized with each other."	"The ataxia3 mutation in the N-terminal cytoplasmic domain of sodium channel Na(v)1.6 disrupts intracellular trafficking. The ENU-induced neurological mutant ataxia3 was mapped to distal mouse chromosome 15. Sequencing of the positional candidate gene Scn8a encoding the sodium channel Na(v)1.6 identified a T&gt;C transition in exon 1 resulting in the amino acid substitution p.S21P near the N terminus of the channel. The cytoplasmic N-terminal region is evolutionarily conserved but its function has not been well characterized. ataxia3 homozygotes exhibit a severe disorder that includes ataxia, tremor, and juvenile lethality. Unlike Scn8a null mice, they retain partial hindlimb function. The mutant transcript is stable but protein abundance is reduced and the mutant channel is not detected in its usual site of concentration at nodes of Ranvier. In whole-cell patch-clamp studies of transfected ND7/23 cells that were maintained at 37 degrees C, the mutant channel did not produce sodium current, and function was not restored by coexpression of beta1 and beta2 subunits. However, when transfected cells were maintained at 30 degrees C, the mutant channel generated voltage-dependent inward sodium currents with an average peak current density comparable with wild type, demonstrating recovery of channel activity. Immunohistochemistry of primary cerebellar granule cells from ataxia3 mice demonstrated that the mutant protein is retained in the cis-Golgi. This trafficking defect can account for the low level of Na(v)1.6-S21P at nodes of Ranvier in vivo and at the surface of transfected cells. The data demonstrate that the cytoplasmic N-terminal domain of the sodium channel is required for anterograde transport from the Golgi complex to the plasma membrane."	"Heterozygous mutations of the voltage-gated sodium channel SCN8A are associated with spike-wave discharges and absence epilepsy in mice. In a chemical mutagenesis screen, we identified the novel Scn8a(8J) allele of the gene encoding the neuronal voltage-gated sodium channel Na(v)1.6. The missense mutation V929F in this allele alters an evolutionarily conserved residue in the pore loop of domain 2 of Na(v)1.6. Electroencephalography (EEG) revealed well-defined spike-wave discharges (SWD), the hallmark of absence epilepsy, in Scn8a(8J) heterozygotes and in heterozygotes for two classical Scn8a alleles, Scn8a(med) (null) and Scn8a(med-jo) (missense). Mouse strain background had a significant effect on SWD, with mutants on the C3HeB/FeJ strain showing a higher incidence than on C57BL/6J. The abnormal EEG patterns in heterozygous mutant mice and the influence of genetic background on SWD make SCN8A an attractive candidate gene for common human absence epilepsy, a genetically complex disorder."	"Eicosapentaenoic acid inhibits voltage-gated sodium channels and invasiveness in prostate cancer cells. The voltage-gated Na(+) channels (Na(v)) and their corresponding current (I(Na)) are involved in several cellular processes, crucial to metastasis of cancer cells. We investigated the effects of eicosapentaenoic (EPA), an omega-3 polyunsaturated fatty acid, on I(Na) and metastatic functions (cell proliferation, endocytosis and invasion) in human and rat prostate cancer cell lines (PC-3 and Mat-LyLu cells). The whole-cell voltage clamp technique and conventional/quantitative real-time reverse transcriptase polymerase chain reaction analysis were used. The presence of Na(v) proteins was shown by immunohistochemical methods. Alterations in the fatty acid composition of phospholipids after treatment with EPA and metastatic functions were also examined. A transient inward Na(+) current (I(Na)), highly sensitive to tetrodotoxin, and Na(V) proteins were found in these cells. Expression of Na(V)1.6 and Na(V)1.7 transcripts (SCN8A and SCN9A) was predominant in PC-3 cells, while Na(V)1.7 transcript (SCN9A) was the major component in Mat-LyLu cells. Tetrodotoxin or synthetic small interfering RNA targeted for SCN8A and SCN9A inhibited metastatic functions (endocytosis and invasion), but failed to inhibit proliferation in PC-3 cells. Exposure to EPA produced a rapid and concentration-dependent suppression of I(Na). In cells chronically treated (up to 72h) with EPA, the EPA content of cell lipids increased time-dependently, while arachidonic acid content decreased. Treatment of PC-3 cells with EPA decreased levels of mRNA for SCN9A and SCN8A, cell proliferation, invasion and endocytosis. Treatment with EPA inhibited I(Na) directly and also indirectly, by down-regulation of Na(v) mRNA expression in prostate cancer cells, thus inhibiting their metastatic potential."	"Regulation of podosome formation in macrophages by a splice variant of the sodium channel SCN8A. Voltage-gated sodium channels initiate electrical signaling in excitable cells such as muscle and neurons. They also are expressed in non-excitable cells such as macrophages and neoplastic cells. Previously, in macrophages, we demonstrated expression of SCN8A, the gene that encodes the channel NaV1.6, and intracellular localization of NaV1.6 to regions near F-actin bundles, particularly at areas of cell attachment. Here we show that a splice variant of NaV1.6 regulates cellular invasion through its effects on podosome and invadopodia formation in macrophages and melanoma cells. cDNA sequence analysis of SCN8A from THP-1 cells, a human monocyte-macrophage cell line, confirmed the expression of a full-length splice variant that lacks exon 18. Immunoelectron microscopy demonstrated NaV1.6-positive staining within the electron dense podosome rosette structure. Pharmacologic antagonism with tetrodotoxin (TTX) in differentiated THP-1 cells or absence of functional NaV1.6 through a naturally occurring mutation (med) in mouse peritoneal macrophages inhibited podosome formation. Agonist-mediated activation of the channel with veratridine caused release of sodium from cationic vesicular compartments, uptake by mitochondria, and mitochondrial calcium release through the Na/Ca exchanger. Invasion by differentiated THP-1 and HTB-66 cells, an invasive melanoma cell line, through extracellular matrix was inhibited by TTX. THP-1 invasion also was inhibited by small hairpin RNA knockdown of SCN8A. These results demonstrate that a variant of NaV1.6 participates in the control of podosome and invadopodia formation and suggest that intracellular sodium release mediated by NaV1.6 may regulate cellular invasion of macrophages and melanoma cells."	"Actions of kurtoxin on tetrodotoxin-sensitive voltage-gated Na+ currents, NaV1.6, in murine vas deferens myocytes. Kurtoxin is described as a selective inhibitor of Ca(V)3.1. Using patch-clamp techniques, the modulatory effects of kurtoxin on tetrodotoxin-sensitive voltage-gated Na(+) currents (I(Na)) recorded from mouse vas deferens myocytes were investigated. Kurtoxin increased the peak amplitude of I(Na) between -40 and -30 mV, whilst inhibited the peak amplitude at more positive potentials than -10 mV, thereby demonstrating a dual action on the peak amplitude of I(Na). The time to reach the peak amplitude of I(Na) became significantly longer in the presence of kurtoxin in comparison with that of the controls. Kurtoxin also slowed the deactivation of I(Na) at more positive membrane potentials than -30 mV. Kurtoxin enhanced the total amount of electrical charge of I(Na) in a concentration-dependent manner. These results suggest that kurtoxin is a modulator of Na(V)1.6 in native freshly dispersed smooth muscle cells from mouse vas deferens as well as its action on Ca(V)3.1."	"Cell-type-dependent molecular composition of the axon initial segment. The exact site of initiation and shape of action potentials vary among different neuronal types. The reason for this variability is largely unknown, but the subunit composition, density and distribution of voltage-gated sodium (Nav) and potassium (Kv) channels within the axon initial segment (AIS) are likely to play a key role. Here, we asked how heterogeneous are the density and distribution of Nav and Kv channels within the AISs of a variety of excitatory and inhibitory neurons. Most of the studied cell types expressed a high density of Nav1.6, Kv1.1, and Kv1.2 subunits in their AIS, but the Nav1.1 subunit could only be detected in GABAergic interneurons. A proximo-distal gradient in the density of these subunits was observed within the AIS of certain nerve cells but not in others. For example, a gradual increase of the Nav1.6 subunit was observed in cortical layer 2/3 and hippocampal CA1 pyramidal cell (PC) AISs, whereas its density was rather uniform in layer 5 PC AISs. The Nav1.1 subunit was distributed evenly along the AIS of short-axon cells of the main olfactory bulb but was restricted to the proximal part of the AIS in cortical and cerebellar interneurons. Our results reveal a cell type-dependent expression of sodium and potassium channel subunits with varying densities along the proximo-distal axis of the AISs. This precise arrangement is likely to contribute to the diversity of firing properties observed among central neurons."	"Sodium channel activity modulates multiple functions in microglia. Microglia provide surveillance in the central nervous system and become activated following tissue insult. Detailed mechanisms by which microglia detect and respond to their environment are not fully understood, but it is known that microglia express a number of surface receptors and ion channels, including voltage-gated sodium channels, that participate in transduction of external stimuli to intra-cellular responses. To determine whether activated microglia are affected by the activity of sodium channels, we examined the expression of sodium channel isoforms in cultured microglia and the action of sodium channel blockade on multiple functions of activated microglia. Rat microglia in vitro express tetrodotoxin (TTX)-sensitive sodium channels Nav1.1 and Nav1.6 and the TTX-resistant channel Nav1.5, but not detectable levels of Nav1.2, Nav1.3, Nav1.7, Nav1.8, and Nav1.9. Sodium channel blockade with phenytoin (40 microM) and TTX (0.3 microM) significantly reduced by 50-60% the phagocytic activity of microglia activated with lipopolysaccharide (LPS); blockade with 10 microM TTX did not further reduce phagocytic activity. Phenytoin attenuated by approximately 50% the release of IL-1 alpha, IL-1 beta, and TNF-alpha from LPS-stimulated microglia, but had minimal effects on the release of IL-2, IL-4, IL-6, IL-10, MCP-1, and TGF-alpha. TTX (0.3 microM) reduced, but to a smaller extent, the release of IL-1 alpha, IL-1 beta, and TNF-alpha from activated microglia. Phenytoin and TTX also significantly decreased by approximately 50% adenosine triphosphate-induced migration by microglia; studies with microglia cultured from med mice (which lack Nav1.6) indicate that Nav1.6 plays a role in microglial migration. The results demonstrate that the activity of sodium channels contributes to effector roles of activated microglia."	"FGF14 regulates the intrinsic excitability of cerebellar Purkinje neurons. A missense mutation in the fibroblast growth factor 14 (FGF14) gene underlies SCA27, an autosomal dominant spinocerebellar ataxia in humans. Mice with a targeted disruption of the Fgf14 locus (Fgf14(-/-)) develop ataxia resembling human SCA27. We tested the hypothesis that loss of FGF14 affects the firing properties of Purkinje neurons, which play an important role in motor control and coordination. Current clamp recordings from Purkinje neurons in cerebellar slices revealed attenuated spontaneous firing in Fgf14(-/-) neurons. Unlike in the wild type animals, more than 80% of Fgf14(-/-) Purkinje neurons were quiescent and failed to fire repetitively in response to depolarizing current injections. Immunohistochemical examination revealed reduced expression of Nav1.6 protein in Fgf14(-/-) Purkinje neurons. Together, these observations suggest that FGF14 is required for normal Nav1.6 expression in Purkinje neurons, and that the loss of FGF14 impairs spontaneous and repetitive firing in Purkinje neurons by altering the expression of Nav1.6 channels."	"SCN8A as a novel candidate gene associated with bipolar disorder in the Han Chinese population. Bipolar disorder (BPD) is a common, severe and recurrent psychiatric disorder. It has been suggested that BPD patients have a higher risk of suicide than patients with any other psychiatric illnesses. A recent study found that suicide attempt was associated with the SCN8A gene, which has been mapped close to one of the BPD susceptibility loci. Thus, SCN8A is likely to be a candidate gene for BPD. In this study, three SNPs (rs1601012, rs303810, rs60637) were analyzed in 506 bipolar patients and 507 controls of Han origin. We found that two individual SNPs showed statistically significant differences between cases and controls in both allele and genotype distribution, but only rs303810 was still significant in allele distribution (p=0.0164) after correction. No obvious linkage disequilibrium or haplotypes were observed among these SNPs. Our results indicate that SCN8A may be a potential susceptibility gene for bipolar disorder in the Han Chinese population."	"A targeted deleterious allele of the splicing factor SCNM1 in the mouse. The auxiliary spliceosomal protein SCNM1 contributes to recognition of nonconsensus splice donor sites. SCNM1 was first identified as a modifier of the severity of a sodium channelopathy in the mouse. The most severely affected strain, C57BL/6J, carries the variant allele SCNM1R187X, which is defective in splicing the mutated donor site in the Scn8a(medJ) transcript. To further probe the in vivo function of SCNM1, we constructed a floxed allele and generated a mouse with constitutive deletion of exons 3-5. The SCNM1Delta3-5 protein is produced and correctly localized to the nucleus, but is more functionally impaired than the C57BL/6J allele. Deficiency of SCNM1 did not significantly alter other brain transcripts. We characterized an ENU-induced allele of Scnm1 and evaluated the ability of wild-type SCNM1 to rescue lethal mutations of I-mfa and Brunol4. The phenotypes of the Scnm1Delta3-5 mutant confirm the role of this splice factor in processing the Scn8a(medJ) transcript and provide a new allele of greater severity for future studies."	"Multiple regulatory elements mediating neuronal-specific expression of zebrafish sodium channel gene, scn8aa. Zebrafish scn8aa sodium channels mediate the majority of sodium conductance, which is essential for the embryonic locomotor activities. Here, we investigated the transcriptional regulation of scn8aa in developing zebrafish embryos by constructing a GFP reporter driven by a 15-kb fragment of scn8aa gene designed as scn8aa:GFP. GFP expression patterns of scn8aa:GFP temporally and spatially recapitulated the expression of endogenous scn8aa mRNA during zebrafish embryonic development, with one exception in the inner nuclear layer of the retina. Three novel elements, along with an evolutionarily conserved element shared with mouse SCN8A, modulated neuronal-specific expression of scn8aa. The deletion of each positive element reduced the expression levels in neurons without inducing ectopic GFP expression in non-neuronal cells. Our results demonstrate that these four regulatory elements function cooperatively to enhance scn8aa expression in the zebrafish nervous system."	"Prevention of axonal injury using calpain inhibitor in chronic progressive experimental autoimmune encephalomyelitis. Axonal injury is the major correlate of permanent disability in neurodegenerative diseases such as multiple sclerosis (MS), especially in secondary-progressive MS which follows relapsing-remitting disease course. Proteolytic enzyme, calpain, is a potential candidate for causing axonal injury. Most current treatment options only target the inflammatory component of MS. Previous work using calpain inhibitor CYLA in our laboratory showed significant reduction in clinical sign, demyelination and tissue calpain content in acute experimental autoimmune encephalomyelitis (EAE). Here we evaluated markers of axonal injury (amyloid precursor protein, Na(v)1.6 channels), neuronal calpain content and the effect of CYLA on axonal protection using histological methods in chronic EAE [myelin oligodendrocyte glycoprotein (MOG)-induced disease model of MS]. Intraperitoneal application of CYLA (2 mg/mouse/day) significantly reduced the clinical signs, tissue calpain content, demyelination and inflammatory infiltration of EAE. Similarly, markers for axonal injury were barely detectable in the treated mice. Thus, this novel drug, which markedly suppresses the disease course, axonal injury and its progression, is a candidate for the treatment of a neurodegenerative disease such as multiple sclerosis."	"Evaluation of SCN8A as a candidate gene for autosomal dominant essential tremor. Essential tremor (ET) is a common inherited movement disorder whose causes remain unknown. The presence of spontaneous tremor in murine mutants may provide clues into the pathogenesis of ET. SCN8A encodes the neuronal voltage gated sodium channel Na(v)1.6 that is widely expressed in the central nervous system. Several mutations of Scn8a in the mouse result in congenital postural tremor of the extremities and head. We screened SCN8A as a candidate gene in a cohort of 95 Caucasian patients with ET and a positive family history, including 48 patients with early onset in the first two decades of life. Early and adult onset ET subgroups did not differ in disease severity, but early onset patients had longer disease duration. Observed sequence variants were also screened in an ethnically matched control group. We did not detect SCN8A mutations affecting amino acid sequence or splice sites in our cohort of ET patients. Although mutations of Scn8a cause congenital tremor in mice, mutations in the sequence of the exons and splice sites of human SCN8A do not appear to be a common cause of autosomal dominant essential tremor in Caucasian patients."	"Traditional AMPA receptor antagonists partially block Na v1.6-mediated persistent current. Voltage-gated Na channels and AMPA receptors play key roles in neuronal physiology. Moreover, both channels have been implicated in the pathophysiology of both grey and white matter in a variety of conditions. Dissecting out the roles of these channels requires specific pharmacological tools. In this study we examined the potential non-specific effects on Na(v)1.6 channels of five widely used AMPA receptor blockers. Using whole-cell patch clamp electrophysiology, we identified a TTX-sensitive persistent Na channel current in HEK cells stably expressing the Na(v)1.6 channel. From a holding potential of -120 mV, slow ramp depolarization to +75 mV generated an inward current that peaked at approximately -15 mV. Superfusion of purportedly specific AMPA antagonists, 1-naphthylacetyl spermine, SYM2206, CP465022, GYKI52466, blocked Na(v)1.6-mediated persistent currents in a dose-dependent manner. Each of these AMPA receptor blockers significantly inhibited (to approximately 70% of control levels) the persistent Na current at concentrations routinely used to selectively block AMPA receptors. The AMPA/kainate blocker, NBQX, did not significantly affect persistent Na channel currents. Furthermore, peak transient current was insensitive to NBQX, but was reversibly inhibited by SYM2206, CP465022 and GYKI52466. These results indicate that many commonly used AMPA receptor antagonists have modest but significant blocking effects on the persistent components of Na(v)1.6 channel activity; therefore caution should be exercised when ascribing actions to AMPA receptors based on use of these inhibitors."	"Role of axonal NaV1.6 sodium channels in action potential initiation of CA1 pyramidal neurons. In many neuron types, the axon initial segment (AIS) has the lowest threshold for action potential generation. Its active properties are determined by the targeted expression of specific voltage-gated channel subunits. We show that the Na+ channel NaV1.6 displays a striking aggregation at the AIS of cortical neurons. To assess the functional role of this subunit, we used Scn8amed mice that are deficient for NaV1.6 subunits but still display prominent Na+ channel aggregation at the AIS. In CA1 pyramidal cells from Scn8amed mice, we found a depolarizing shift in the voltage dependence of activation of the transient Na+ current (INaT), indicating that NaV1.6 subunits activate at more negative voltages than other NaV subunits. Additionally, persistent and resurgent Na+ currents were significantly reduced. Current-clamp recordings revealed a significant elevation of spike threshold in Scn8amed mice as well as a shortening of the estimated delay between spike initiation at the AIS and its arrival at the soma. In combination with simulations using a realistic computer model of a CA1 pyramidal cell, our results imply that a hyperpolarized voltage dependence of activation of AIS NaV1.6 channels is important both in determining spike threshold and localizing spike initiation to the AIS. In addition to altered spike initiation, Scn8amed mice also showed a strongly reduced spike gain as expected with combined changes in persistent and resurgent currents and spike threshold. These results suggest that NaV1.6 subunits at the AIS contribute significantly to its role as spike trigger zone and shape repetitive discharge properties of CA1 neurons."	"Role of hippocampal sodium channel Nav1.6 in kindling epileptogenesis. Central nervous system plasticity is essential for normal function, but can also reinforce abnormal network behavior, leading to epilepsy and other disorders. The role of altered ion channel expression in abnormal plasticity has not been thoroughly investigated. Nav1.6 is the most abundantly expressed sodium channel in the nervous system. Because of its distribution in the cell body and axon initial segment, Nav1.6 is crucial for action potential generation. The goal of the present study was to investigate the possible role of changes in Nav1.6 expression in abnormal, activity-dependent plasticity of hippocampal circuits. We studied kindling, a form of abnormal activity-dependent facilitation. We investigated: (1) sodium channel protein expression by immunocytochemistry and sodium channel messenger RNA (mRNA) by in situ hybridization, (2) sodium current by patch clamp recordings, and (3) rate of kindling by analysis of seizure behavior. The initiation, development, and expression of kindling in wild-type mice were compared to Nav1.6 +/-med(tg) mice, which have reduced expression of Nav1.6. We found that kindling was associated with increased expression of Nav1.6 protein and mRNA, which occurred selectively in hippocampal CA3 neurons. Hippocampal CA3 neurons also showed increased persistent sodium current in kindled animals compared to sham-kindled controls. Conversely, Nav1.6 +/-med(tg) mice resisted the initiation and development of kindling. These findings suggest an important mechanism for enhanced excitability, in which Nav1.6 may participate in a self-reinforcing cycle of activity-dependent facilitation in the hippocampus. This mechanism could contribute to both normal hippocampal function and to epilepsy and other common nervous system disorders."	"Nav1.1 is predominantly expressed in nodes of Ranvier and axon initial segments. Aggregation of voltage-gated sodium (Nav) channels in the axon initial segment (AIS) and nodes of Ranvier is essential for the generation and propagation of action potentials. From the three Nav channel isoforms (Nav1.1, Nav1.2 and Nav1.6) expressed in the adult CNS, Nav1.1 appears to play an important function since numerous mutations in its coding sequence cause epileptic syndromes. Yet, its distribution is still controversial. Here we demonstrate for the first time that in the adult CNS Nav1.1 is expressed in nodes of Ranvier throughout the mouse spinal cord and in many brain regions. We identified three populations of nodes: expressing Nav1.1, Nav1.6 or both. We also found Nav1.1 expression concentrated in a proximal AIS subcompartment in spinal cord neurons including 80% of motor neurons and in multiple brain areas. This novel distribution suggests that Nav1.1 is involved in the control of action potential generation and propagation."	"Reduced expression of Na(v)1.6 sodium channels and compensation by Na(v)1.2 channels in mice heterozygous for a null mutation in Scn8a. The voltage-gated sodium channel alpha subunit Na(v)1.6, encoded by the Scn8a gene, accumulates at high density at mature nodes of Ranvier of myelinated axons, replacing the Na(v)1.2 channels found at nodes earlier in development. To investigate this preferential expression of Na(v)1.6 at adult nodes, we examined isoform-specific expression of sodium channels in mice heterozygous for a null mutation in Scn8a. Immunoblots from these +/- mice had 50% of the wild-type level of Na(v)1.6 protein, and their optic-nerve nodes of Ranvier had correspondingly less anti-Na(v)1.6 immunofluorescence. Protein level and nodal immunofluorescence of the Na(v)1.2 alpha subunit increased in Scn8a(+/-) mice, keeping total sodium channel expression approximately constant despite partial loss of Na(v)1.6 channels. The results are consistent with a model in which Na(v)1.6 and Na(v)1.2 compete for binding partners at sites of high channel density, such as nodes of Ranvier. We suggest that Na(v)1.6 channels normally occupy most of the molecular machinery responsible for channel clustering because they have higher binding affinity, and not because they are exclusively recognized by mechanisms for transport and insertion of sodium channels in myelinated axons. The reduced amount of Na(v)1.6 protein in Scn8a(+/-) mice is apparently insufficient to saturate the nodal binding sites, allowing Na(v)1.2 channels to compete more successfully."	"Functional properties and differential neuromodulation of Na(v)1.6 channels. The voltage-gated sodium channel Na(v)1.6 plays unique roles in the nervous system, but its functional properties and neuromodulation are not as well established as for Na(V)1.2 channels. We found no significant differences in voltage-dependent activation or fast inactivation between Na(V)1.6 and Na(V)1.2 channels expressed in non-excitable cells. In contrast, the voltage dependence of slow inactivation was more positive for Na(v)1.6 channels, they conducted substantially larger persistent sodium currents than Na(v)1.2 channels, and they were much less sensitive to inhibition by phosphorylation by cAMP-dependent protein kinase and protein kinase C. Resurgent sodium current, a hallmark of Na(v)1.6 channels in neurons, was not observed for Na(V)1.6 expressed alone or with the auxiliary beta(4) subunit. The unique properties of Na(V)1.6 channels, together with the resurgent currents that they conduct in neurons, make these channels well-suited to provide the driving force for sustained repetitive firing, a crucial property of neurons."	"Role of the amino and carboxy termini in isoform-specific sodium channel variation. Na(v)1.2 and Na(v)1.6 are two voltage-gated sodium channel isoforms found in adult CNS neurons. These isoforms differ in their electrophysiological properties, even though the major regions that are known to be involved in channel activation and inactivation are conserved between them. To determine if the terminal domains of these channels contributed to their activation and fast inactivation differences, we constructed chimeras between the two isoforms and characterized their electrophysiological properties. Exchanging the N-terminal 205 amino acids of Na(v)1.6 and the corresponding 202 amino acids of Na(v)1.2 completely swapped the V_(1)/(2) of steady-state activation between the Na(v)1.2 and Na(v)1.6 channels in an isoform-specific manner. Exchanging the C-terminal 436 amino acids of Na(v)1.6 and the corresponding region of Na(v)1.2 altered the voltage dependence and kinetics of steady-state inactivation, but the changes did not reflect a direct transfer of inactivation properties between the two isoforms. Finally, the N- and C-terminal domains from Na(v)1.6 demonstrated functional cooperation. These results suggest that the terminal sequences of the sodium channel are important for isoform-specific differences between the channels."	"Exaggerated emotional behavior in mice heterozygous null for the sodium channel Scn8a (Nav1.6). The Scn8a gene encodes the alpha-subunit of Na(v)1.6, a neuronal voltage-gated sodium channel. Mice homozygous for mutations in the Scn8a gene exhibit motor impairments. Recently, we described a human family with a heterozygous protein truncation mutation in SCN8A. Rather than motor impairment, neuropsychological abnormalities were more common, suggesting a role for Scn8a in a more diverse range of behaviors. Here, we characterize mice heterozygous for a null mutation of Scn8a (Scn8a(+/-)mice) in a number of behavioral paradigms. We show that Scn8a(+/-)mice exhibit greater conditioned freezing in the Pavlovian fear conditioning paradigm but no apparent abnormalities in other learning and memory paradigms including the Morris water maze and conditioned taste avoidance paradigm. Furthermore, we find that Scn8a(+/-)mice exhibit more pronounced avoidance of well-lit, open environments as well as more stress-induced coping behavior. Together, these data suggest that Scn8a plays a critical role in emotional behavior in mice. Although the behavioral phenotype observed in the Scn8a(+/-)mice only partially models the abnormalities in the human family, we anticipate that the Scn8a(+/-)mice will serve as a valuable tool for understanding the biological basis of emotion and the human diseases in which abnormal emotional behavior is a primary component."	"Molecular and biophysical properties of voltage-gated Na+ channels in murine vas deferens. The biological and molecular properties of tetrodotoxin (TTX)-sensitive voltage-gated Na(+) currents (I(Na)) in murine vas deferens myocytes were investigated using patch-clamp techniques and molecular biological analyses. In whole-cell configuration, a fast, transient inward current was evoked in the presence of Cd(2+), and was abolished by TTX (K(d) = 11.2 nM), mibefradil (K(d) = 3.3 microM), and external replacement of Na(+) with monovalent cations (TEA(+), Tris(+), and NMDG(+)). The fast transient inward current was enhanced by veratridine, an activator of voltage-gated Na(+) channels, suggesting that the fast transient inward current was a TTX-sensitive I(Na). The values for half-maximal (V(half)) inactivation and activation of I(Na) were -46.3 mV and -26.0 mV, respectively. RT-PCR analysis revealed the expression of Scn1a, 2a, and 8a transcripts. The Scn8a transcript and the alpha-subunit protein of Na(V)1.6 were detected in smooth muscle layers. Using Na(V)1.6-null mice (Na(V)1.6(-/-)) lacking the expression of the Na(+) channel gene, Scn8a, I(Na) were not detected in dispersed smooth muscle cells from the vas deferens, while TTX-sensitive I(Na) were recorded in their wild-type (Na(V)1.6(+/+)) littermates. This study demonstrates that the molecular identity of the voltage-gated Na(+) channels responsible for the TTX-sensitive I(Na) in murine vas deferens myocytes is primarily Na(V)1.6."	"Voltage-gated sodium channel alpha-subunits Na(v)1.1, Na(v)1.2, and Na(v)1.6 in the distal mammalian retina. Recent studies indicate the presence of functional voltage-gated sodium channels (Na(v) channels) in the distal retina in several species. This study examined the distribution of Na(v) channels in the outer plexiform layer (OPL) of rat, mouse, and rabbit retinas. Immunohistochemical and electroretinographic approaches were used. Antibodies specific for Na(v)1 alpha-subunits appropriately labeled retinal ganglion cells, their axons, and amacrine cells that are known to have tetrodotoxin (TTX)-sensitive Na(v) channels. Pan-Na(v), Na(v)1.2, and Na(v)1.6 labeling was found in horizontal cells and processes in all three species. Weaker Na(v)1.1 labeling was observed in rodent horizontal cells, but some rabbit horizontal cells and processes were prominently labeled. Additional labeling for Na(v)1.1, Na(v)1.2, and Na(v)1.6 that was not attributable to horizontal cells was also present in the OPL. Much of this labeling was diffusely distributed. Some of the additional Na(v)1.1 labeling was associated with photoreceptor terminals. By exclusion using photoreceptor and horizontal cell markers, some of this labeling could have been associated with bipolar cell dendrites, although colocalization was not directly established due to the diffuse nature of the labeling and limits on anatomical resolution. No Na(v)1 alpha-subunit labeling was observed in bipolar cell bodies. Testing for functional Na(v) channels was performed by recording full field flash electroretinograms from dark-adapted rats before and after intravitreal injections of TTX, 6-cyano-7-nitroquinoxaline-2,3-dione (CNQX), or TTX+CNQX. TTX and CNQX+TTX, but not CNQX alone, greatly attenuated the dark-adapted cone-driven b-waves. Horizontal cells from three different mammalian retinas showed prominent labeling for Na(v)1 alpha-subunits. Some additional diffuse Na(v)1 alpha-subunit labeling in the OPL was associated with photoreceptor terminals. Na(v)1 alpha-subunit labeling also may have been present on bipolar cell dendrites, although it was not possible to establish this localization unequivocally by immunostaining. However, cone-driven b-waves in rats were reduced in maximum amplitude by TTX in the presence of CNQX which blocks synaptic input to horizontal, amacrine, and ganglion cells. This finding is consistent with TTX effects on the b-wave being due to blockade of Na(v) channels in cone bipolar cell dendrites in the OPL. The role of Na(v) channels in horizontal cells remains to be determined."	"Early treatment suppresses the development of spike-wave epilepsy in a rat model. Current treatments for epilepsy may control seizures, but have no known effects on the underlying disease. We sought to determine whether early treatment in a model of genetic epilepsy would reduce the severity of the epilepsy phenotype in adulthood. We used Wistar albino Glaxo rats of Rijswijk (WAG/Rij) rats, an established model of human absence epilepsy. Oral ethosuximide was given from age p21 to 5 months, covering the usual period in which seizures develop in this model (age approximately 3 months). Two experiments were performed: (1) cortical expression of ion channels Nav1.1, Nav1.6, and HCN1 (previously shown to be dysregulated in WAG/Rij) measured by immunocytochemistry in adult treated rats; and (2) electroencephalogram (EEG) recordings to measure seizure severity at serial time points after stopping the treatment. Early treatment with ethosuximide blocked changes in the expression of ion channels Nav1.1, Nav1.6, and HCN1 normally associated with epilepsy in this model. In addition, the treatment led to a persistent suppression of seizures, even after therapy was discontinued. Thus, animals treated with ethosuximide from age p21 to 5 months still had a marked suppression of seizures at age 8 months. These findings suggest that early treatment during development may provide a new strategy for preventing epilepsy in susceptible individuals. If confirmed with other drugs and epilepsy paradigms, the availability of a model in which epileptogenesis can be controlled has important implications both for future basic studies, and human therapeutic trials."	"Nav1.6 sodium channels are critical to pacemaking and fast spiking in globus pallidus neurons. Neurons in the external segment of the globus pallidus (GPe) are autonomous pacemakers that are capable of sustained fast spiking. The cellular and molecular determinants of pacemaking and fast spiking in GPe neurons are not fully understood, but voltage-dependent Na+ channels must play an important role. Electrophysiological studies of these neurons revealed that macroscopic activation and inactivation kinetics of their Na+ channels were similar to those found in neurons lacking either autonomous activity or the capacity for fast spiking. What was distinctive about GPe Na+ channels was a prominent resurgent gating mode. This mode was significantly reduced in GPe neurons lacking functional Nav1.6 channels. In these Nav1.6 null neurons, pacemaking and the capacity for fast spiking were impaired, as was the ability to follow stimulation frequencies used to treat Parkinson's disease (PD). Simulations incorporating Na+ channel models with and without prominent resurgent gating suggested that resurgence was critical to fast spiking but not to pacemaking, which appeared to be dependent on the positioning of Na+ channels in spike-initiating regions of the cell. These studies not only shed new light on the mechanisms underlying spiking in GPe neurons but also suggest that electrical stimulation therapies in PD are unlikely to functionally inactivate neurons possessing Nav1.6 Na+ channels with prominent resurgent gating."	"Voltage-dependent Na(v)1.7 sodium channels: multiple roles in adrenal chromaffin cells and peripheral nervous system. Voltage-dependent Na+ channels consist of the principal alpha-subunit (approximately 260 kDa), without or with auxiliary beta-subunit (approximately 38 kDa). Nine alpha-subunit isoforms (Na(v)1.1-Na(v)1.9) are encoded in nine different genes (SCN1A-SCN5A and SCN8A-SCN11A). Besides initiating and propagating action potentials in established neuronal circuit, Na+ channels engrave, maintain and repair neuronal network in the brain throughout the life. Adrenal chromaffin cells express Na(v)1.7 encoded in SCN9A, which is widely distributed among peripheral autonomic and sensory ganglia, neuroendocrine cells, as well as prostate cancer cell lines. In chromaffin cells, Na(v)1.7-specific biophysical properties have been characterized; physiological stimulation by acetylcholine produces muscarinic receptor-mediated hyperpolarization followed by nicotinic receptor-mediated depolarization. In human patients with Na(v)1.7 channelopathies, gain-of-pathological function mutants (i.e. erythermalgia and paroxysmal extreme pain disorder) or loss-of-physiological function mutant (channelopathy-associated insensitivity to pain) proved the causal involvement of mutant Na(v)1.7 in generating intolerable pain syndrome, Na(v)1.7 being the first molecular target convincingly identified for pain treatment. Importantly, aberrant upregulation/hyperactivity of even the native Na(v)1.7 produces pain associated with inflammation, nerve injury and diabetic neuropathy in rodents. Various extra- and intracellular signals, as well as therapeutic drugs modulate the activity of Na(v)1.7, and also cause up- and downregulation of Na(v)1.7. Na(v)1.7 seems to play an increasing number of crucial roles in health, disease and therapeutics."	"Comparison of gamma-aminobutyrate receptors in the medial vestibular nucleus of control and Scn8a mutant mice. The Purkinje cells of the cerebellum provide inhibitory input to vestibular nucleus neurons, with gamma-aminobutyrate (GABA) as neurotransmitter. Using extracellular recordings and bath application of agonists and antagonists, we compared GABA receptors in the medial vestibular nucleus of brain slices from Scn8a mutant mice of med(J) type, in which there is greatly reduced spontaneous and evoked activity of Purkinje cells, to those in slices from control mice. Muscimol, an agonist at GABA(A) receptors, produced a larger reduction of firing rate in neurons of mutant mice than in neurons of control mice, whereas there was no difference for baclofen, an agonist at GABA(B) receptors. In most cases tested, the effects of muscimol and baclofen remained similar when synaptic transmission was blocked, suggesting that the effects were predominantly directly upon GABA receptors of the neurons being recorded from. The up-regulation of GABA(A) receptors was similar in magnitude to that previously found for rats with bilateral transection of the inferior cerebellar peduncle. It may relate in both cases to reduced Purkinje cell input to medial vestibular nucleus neurons. The lack of effect on GABA(B) receptors suggests that the changes found with peduncle transection may have resulted from something more than reduced Purkinje cell activity, such as reduced concentrations of GABA, or that reduction of Purkinje cell activity in Scn8a mutant mice was insufficient to affect GABA(B) receptors. Other possible explanations of the results cannot be excluded since the Scn8a mutation affects other neuron types besides Purkinje cells."	"Identification of evolutionarily conserved, functional noncoding elements in the promoter region of the sodium channel gene SCN8A. SCN8A is a major neuronal sodium channel gene expressed throughout the central and peripheral nervous systems. Mutations of SCN8A result in movement disorders and impaired cognition. To investigate the basis for the tissue-specific expression of SCN8A, we located conserved, potentially regulatory sequences in the human, mouse, chicken, and fish genes by 5' RACE of brain RNA and genomic sequence comparison. A highly conserved 5' noncoding exon, exon 1c, is present in vertebrates from fish to mammals and appears to define the ancestral promoter region. The distance from exon 1c to the first coding exon increased tenfold during vertebrate evolution, largely by insertion of repetitive elements. The mammalian gene acquired three novel, mutually exclusive noncoding exons that are not represented in the lower vertebrates. Within the shared exon 1c, we identified four short sequence elements of 10-20 bp with an unusually high level of evolutionary conservation. The conserved elements are most similar to consensus sites for the transcription factors Pou6f1/Brn5, YY1, and REST/NRSF. Introduction of mutations into the predicted Pou6f1 and REST sites reduced promoter activity in transfected neuronal cells. A 470-bp promoter fragment containing all of the conserved elements directed brain-specific expression of the LacZ reporter in transgenic mice. Transgene expression was highest in hippocampal neurons and cerebellar Purkinje cells, consistent with the expression of the endogenous gene. The compact cluster of conserved regulatory elements in SCN8A provides a useful target for molecular analysis of neuronal gene expression."	"The voltage-gated sodium channel Scn8a is a genetic modifier of severe myoclonic epilepsy of infancy. The mammalian genome contains four voltage-gated sodium channel genes that are primarily expressed in the central nervous system: SCN1A, SCN2A, SCN3A and SCN8A. Mutations in SCN1A and SCN2A are responsible for several dominant idiopathic epilepsy disorders, including generalized epilepsy with febrile seizures plus (GEFS+) and severe myoclonic epilepsy of infancy (SMEI). Mutations in SCN8A are associated with cognitive deficits and neuropsychiatric illness in humans and movement disorders in mice; however, a role for SCN8A (Na(v)1.6) in epilepsy has not been investigated. To determine the relationship between Na(v)1.6 dysfunction and seizure susceptibility, we examined the thresholds of two Scn8a mouse mutants, Scn8a(med) and Scn8a(med-jo), to flurothyl- and kainic acid (KA)-induced seizures. Both mutants were more seizure resistant than wild-type littermates, suggesting that altered Na(v)1.6 function reduces neuronal excitability. To determine whether impaired Na(v)1.6 function could ameliorate seizure severity in a mouse model of SMEI, we generated Scn1a(+/-); Scn8a(med-jo/+) double heterozygous mice. Unlike Scn1a(+/-) mice that are more susceptible to flurothyl-induced seizures, Scn1a(+/-); Scn8a(med-jo/+) mice displayed thresholds that were comparable to wild-type littermates. The Scn8a(med-jo) allele was also able to rescue the premature lethality of Scn1a(+/-) mice and extend the lifespan of Scn1a(-/-) mutants. These results demonstrate that genetic interactions can alter seizure severity and support the hypothesis that genetic modifiers contribute to the clinical variability observed in SMEI and GEFS+."	"Sodium channel expression within chronic multiple sclerosis plaques. Multiple sclerosis (MS) is characterized by focal destruction of myelin sheaths, gliotic scars, and axonal damage that contributes to the accumulation of nonremitting clinical deficits. Previous studies have demonstrated coexpression of sodium channel Nav1.6 and the sodium-calcium exchanger (NCX), together with beta-amyloid precursor protein (beta-APP), a marker of axonal damage, in degenerating axons within acute MS lesions. Axonal degeneration is less frequent within chronic MS lesions than in acute plaques, although current evidence suggests that axonal loss in chronic lesions (&quot;slow burn&quot;) is a major contributor to accumulating disability. It is not known, however, whether axonal degenerations in chronic and acute lesions share common mechanisms, despite radically differing extracellular milieus. In this study, the expression of sodium channels Nav1.2 and Nav1.6 and of NCX was examined in chronic MS plaques within the spinal cord. Nav1.2 immunostaining was not observed along demyelinated axons in chronic lesions but was expressed by scar and reactive astrocytes within the plaque. Nav1.6 immunoreactivity, which was intense at nodes of Ranvier in normal appearing white matter in the same sections, was present in approximately one-third of the demyelinated axons within these plaques in a patchy rather than continuous distribution. NCX was not detected in demyelinated axons within chronic lesions, although it was clearly present within the scar astrocytes surrounding the demyelinated axons. beta-APP accumulation occurred in a small percentage of axons within chronic lesions within the spinal cord, but beta-APP was not preferentially present in axons that expressed Nav1.6. These observations suggest that different mechanisms underlie axonal degeneration in acute and chronic MS lesions, with axonal injury occurring at sites of coexpression of Nav1.6 and NCX in acute lesions but independent of coexpression of these 2 molecules in chronic lesions."	"Functional and molecular characterization of voltage-gated sodium channels in uteri from nonpregnant rats. We investigated the function and expression of voltage-gated Na(+) channels (VGSC) in the uteri of nonpregnant rats using organ bath techniques, intracellular [Ca(2+)] fluorescence measurements, and RT-PCR. In longitudinally arranged whole-tissue uterine strips, veratridine, a VGSC activator, caused the rapid appearance of phasic contractions of irregular frequency and amplitude. After 50-60 min in the continuous presence of veratridine, rhythmic contractions of very regular frequency and slightly increasing amplitude occurred and were sustained for up to 12 h. Both the early and late components of the contractile response to veratridine were inhibited in a concentration-dependent manner by tetrodotoxin (TTX). In small strips dissected from the uterine longitudinal smooth muscle layer and loaded with Fura-2, veratridine also caused rhythmic contractions, accompanied by transient increases in [Ca(2+)](i), which were abolished by treatment with 0.1 microM TTX. Using end-point and real-time quantitative RT-PCR, we detected the presence of the VGSC alpha subunits Scn2a1, Scn3a, Scn5a, and Scn8a in the cDNA from longitudinal muscle. The mRNAs of the auxiliary beta subunits Scbn1b, Scbn2b, Scbn4b, and traces of Scn3b were also present. These data show for the first time that Scn2a1, Scn3a, Scn5a, and Scn8a, as well as all VGSC beta subunits are expressed in the longitudinal smooth muscle layer of the rat myometrium. In addition, our data show that TTX-sensitive VGSC are able to mediate phasic contractions maintained over long periods of time in the uteri of nonpregnant rats."	"Sodium channel Nav1.6 accumulates at the site of infraorbital nerve injury. Sodium channel (NaCh) expressions change following nerve and inflammatory lesions and this change may contribute to the activation of pain pathways. In a previous study we found a dramatic increase in the size and density of NaCh accumulations, and a remodeling of NaChs at intact and altered myelinated sites at a location just proximal to a combined partial axotomy and chromic suture lesion of the rat infraorbital nerve (ION) with the use of an antibody that identifies all NaCh isoforms. Here we evaluate the contribution of the major nodal NaCh isoform, Nav1.6, to this remodeling of NaChs following the same lesion. Sections of the ION from normal and ION lesioned subjects were double-stained with antibodies against Nav1.6 and caspr (contactin-associated protein; a paranodal protein to identify nodes of Ranvier) and then z-series of optically sectioned images were captured with a confocal microscope. ImageJ (NIH) software was used to quantify the average size and density of Nav1.6 accumulations, while additional single fiber analyses measured the axial length of the nodal gap, and the immunofluorescence intensity of Nav1.6 in nodes and of caspr in the paranodal region. The findings showed a significant increase in the average size and density of Nav1.6 accumulations in lesioned IONs when compared to normal IONs. The results of the single fiber analyses in caspr-identified typical nodes showed an increased axial length of the nodal gap, an increased immunofluorescence intensity of nodal Nav1.6 and a decreased immunofluorescence intensity of paranodal caspr in lesioned IONs when compared to normal IONs. In the lesioned IONs, Nav1.6 accumulations were also seen in association with altered caspr-relationships, such as heminodes. The results of the present study identify Nav1.6 as one isoform involved in the augmentation and remodeling of NaChs at nodal sites following a combined partial axotomy and chromic suture ION lesion. The augmentation of Nav1.6 may result from an alteration in axon-Schwann cell signaling mechanisms as suggested by changes in caspr expression. The changes identified in this study suggest that the participation of Nav1.6 should be considered when examining changes in the excitability of myelinated axons in neuropathic pain models."	"Evidence for a direct role of the disease modifier SCNM1 in splicing. We originally isolated Scnm1 as a disease modifier gene that is required for efficient in vivo splicing of a mutant splice donor site in the sodium channel Scn8a. It was previously unclear whether the modifier effect on splicing was direct or indirect. We now report evidence that sodium channel modifier 1 (SCNM1) has a direct role in splicing. SCNM1 protein interacts with the spliceosome protein U1-70K in the yeast two-hybrid system, and is co-localized with U1-70K in nuclear speckles in mammalian cells. SCNM1 is also co-immunoprecipitated with the spliceosomal core Smith (Sm) proteins and demonstrates functional activity in a minigene splicing assay. In a yeast two-hybrid screen, SCNM1 interacted with LUC7L2, a mammalian homolog of a yeast protein involved in recognition of non-consensus splice donor sites. This interaction requires the acidic C-terminal domain of SCNM1 which is truncated by the disease susceptibility variant Scnm1(R187X) in mouse strain C57BL/6J. Luc7L2 transcripts are widely distributed in mammalian tissues, and undergo alternative splicing and polyadenylation. LUC7L2 is also co-localized with U1-70K and may function with SCNM1 in recognition of weak splice donor sites. In summary, Scnm1 is the first example of a modifier gene which influences disease severity through a trans-effect on splicing of the disease gene transcript."	"Exacerbation of experimental autoimmune encephalomyelitis after withdrawal of phenytoin and carbamazepine. In vitro observations and studies in murine experimental autoimmune encephalomyelitis (EAE) have shown protective effects of sodium channel blockers on central nervous system axons and improved clinical status when treatment is continued throughout the period of observation. Several clinical studies of sodium channel blockers are under way in patients with multiple sclerosis. Here we asked whether a protective effect would persist after withdrawal of a sodium channel blocker. We studied a mouse model of myelin oligodendrocyte glycoprotein-induced EAE treated with phenytoin or carbamazepine. Both phenytoin and carbamazepine significantly improved the clinical course of the disease. Withdrawal of phenytoin resulted in acute exacerbation, accompanied by a significantly increased inflammatory infiltrate within the central nervous system and the death of nearly 60% of EAE mice. There were no clinical worsening or deaths in control mice after withdrawal of phenytoin. Withdrawal of carbamazepine led to acute worsening of EAE symptoms, increased inflammatory infiltrate, and was associated with the death of 8% of mice. These results, together with results showing effects of sodium channel blockers in immune cells, raise questions about the long-term effects of sodium channel blockers in neuroinflammatory disorders, and suggest that clinical studies of sodium channel blockers in these disorders should be planned carefully."	"Expression of the voltage-gated sodium channel NaV1.5 in the macrophage late endosome regulates endosomal acidification. Voltage-gated sodium channels expressed on the plasma membrane activate rapidly in response to changes in membrane potential in cells with excitable membranes such as muscle and neurons. Macrophages also require rapid signaling mechanisms as the first line of defense against invasion by microorganisms. In this study, our goal was to examine the role of intracellular voltage-gated sodium channels in macrophage function. We demonstrate that the cardiac voltage-gated sodium channel, NaV1.5, is expressed on the late endosome, but not the plasma membrane, in a human monocytic cell line, THP-1, and primary human monocyte-derived macrophages. Although the neuronal channel, NaV1.6, is also expressed intracellularly, it has a distinct subcellular localization. In primed cells, NaV1.5 regulates phagocytosis and endosomal pH during LPS-mediated endosomal acidification. Activation of the endosomal channel causes sodium efflux and decreased intraendosomal pH. These results demonstrate a functionally relevant intracellular voltage-gated sodium channel and reveal a novel mechanism to regulate macrophage endosomal acidification."	"Sodium currents in mesencephalic trigeminal neurons from Nav1.6 null mice. Previous studies using pharmacological methods suggest that subthreshold sodium currents are critical for rhythmical burst generation in mesencephalic trigeminal neurons (Mes V). In this study, we characterized transient (I(NaT)), persistent (I(N)(aP)), and resurgent (I(res)) sodium currents in Na(v)1.6-null mice (med mouse, Na(v)1.6(-/-)) lacking expression of the sodium channel gene Scn8a. We found that peak transient, persistent, and resurgent sodium currents from med (Na(v)1.6(-/-)) mice were reduced by 18, 39, and 76% relative to their wild-type (Na(v)1.6(+/+)) littermates, respectively. Current clamp recordings indicated that, in response to sinusoidal constant amplitude current (ZAP function), all neurons exhibited membrane resonance. However, Mes V neurons from med mice had reduced peak amplitudes in the impedance-frequency relationship (resonant Q-value) and attenuated subthreshold oscillations despite the similar passive membrane properties compared with wild-type littermates. The spike frequency-current relationship exhibited reduced instantaneous discharge frequencies and spike block at low stimulus currents and seldom showed maintained spike discharge throughout the stimulus in the majority of med neurons compared with wild-type neurons. Importantly, med neurons never exhibited maintained stimulus-induced rhythmical burst discharge unlike those of wild-type littermates. The data showed that subthreshold sodium currents are critical determinants of Mes V electrogenesis and burst generation and suggest a role for resurgent sodium currents in control of spike discharge."	"The TTX metabolite 4,9-anhydro-TTX is a highly specific blocker of the Na(v1.6) voltage-dependent sodium channel. The blocking efficacy of 4,9-anhydro-TTX (4,9-ah-TTX) and TTX on several isoforms of voltage-dependent sodium channels, expressed in Xenopus laevis oocytes, was tested (Na(v1.2), Na(v1.3), Na(v1.4), Na(v1.5), Na(v1.6), Na(v1.7), and Na(v1.8)). Generally, TTX was 40-231 times more effective, when compared with 4,9-ah-TTX, on a given isoform. An exception was Na(v1.6), where 4,9-ah-TTX in nanomole per liter concentrations sufficed to result in substantial block, indicating that 4,9-ah-TTX acts specifically at this peculiar isoform. The IC(50) values for TTX/4,9-ah-TTX were as follows (in nmol/l): 7.8 +/- 1.3/1,260 +/- 121 (Na(v1.2)), 2.8 +/- 2.3/341 +/- 36 (Na(v1.3)), 4.5 +/- 1.0/988 +/- 62 (Na(v1.4)), 1,970 +/- 565/78,500 +/- 11,600 (Na(v1.5)), 3.8 +/- 1.5/7.8 +/- 2.3 (Na(v1.6)), 5.5 +/- 1.4/1,270 +/- 251 (Na(v1.7)), and 1,330 +/- 459/&gt;30,000 (Na(v1.8)). Analysis of approximal half-maximal doses of both compounds revealed minor effects on voltage-dependent activation only, whereas steady-state inactivation was shifted to more negative potentials by both TTX and 4,9-ah-TTX in the case of the Na(v1.6) subunit, but not in the case of other TTX-sensitive ones. TTX shifted steady-state inactivation also to more negative potentials in case of the TTX-insensitive Na(v1.5) subunit, where it also exerted profound effects on the time course of recovery from inactivation. Isoform-specific interaction of toxins with ion channels is frequently observed in the case of proteinaceous toxins. Although the sensitivity of Na(v1.1) to 4,9-ah-TTX is not known, here we report evidence on a highly isoform-specific TTX analog that may well turn out to be an invaluable tool in research for the identification of Na(v1.6)-mediated function, but also for therapeutic intervention."	"Expression of IP3 receptor isoforms at the nodes of Ranvier in rat sciatic nerve. Inositol 1,4,5-trisphosphate receptors (IP3R) are modulated by the second messenger IP3, which induces intracellular calcium release. Using immunohistochemical techniques, we show that the three isoforms are expressed in sciatic nerve. IP3R1 and IP3R2 are mainly present in the nucleus of Schwann cells. IP3R1 is also expressed in Schmidt-Lanterman incisures. IP3R3 is primarily localized at very high levels in nonmyelinating Schwann cells. Interestingly, the three isoforms are expressed at the nodes of Ranvier. IP3R1 is clustered at the node of Ranvier, in a distribution that is similar to the Nav1.6 sodium channels in the sciatic nerve. IP3R3 is present in the paranodal regions of the nodes. IP3R2 is concentrated in the vicinity of the node, and the outer Schwann cell cytoplasm similar to the Kv1.5 potassium channel."	"Gene symbol: SCN8A. Disease: Ataxia. Accession #Hd0520. NA"	"Downregulation of neuronal sodium channel subunits Nav1.1 and Nav1.6 in the sinoatrial node from volume-overloaded heart failure rat. Sodium current I(Na) plays an important role in the pacemaker activity of the sinoatrial node (SAN). However, expression profiles of corresponding sodium channel subunits in normal SAN remain unclear. And little is known about expression alteration of sodium channel in SAN under heart failure (HF) condition. We assessed SAN function and expression of Nav1.1, Nav1.2, Nav1.3, Nav1.5, Nav1.6, and Nav1.7 in sham-operated rats and rats subjected to abdominal arteriovenous shunt (volume overload)-induced HF. Immunohistochemistry, Western blot, and quantitative real-time reverse transcriptase PCR analysis were used to quantify sodium channel subunit protein and mRNA expression in the SAN. Intrinsic heart rate declined and sinus node recovery time was prolonged in HF rats, indicating suppressed SAN pacemaker function. In rat SAN, Nav1.1 and Nav1.6 were the primary subunits, Nav1.5 and Nav1.7 were weakly expressed, and Nav1.2 and Nav1.3 were not found to be present. HF significantly decreased SAN sodium channel expression at both the protein and mRNA levels (Nav1.1 by 61 and 71%, Nav1.6 by 49 and 46%, respectively). In conclusion, Nav1.1 and Nav1.6 are the dominant subunits in rat SAN, and downregulation of Nav1.1 and Nav1.6 expression contributes to HF-induced SAN dysfunction. These findings provide additional information about molecular basis of disease-related impairment of SAN function."	"[Expression and function of voltage-gated Na+ channel isoforms in rat sinoatrial node]. To detect the expression of voltage-gated Na(+) channel (NaCh) isoforms in rat sinoatrial node and explore their functions. Expressions of NaCh isoforms Nav1.1, Nav1.2, Nav1.3, Nav1.5, Nav1.6 and Nav1.7 in the rat sinoatrial node were detected by immunohistochemistry. The functional roles of the NaChs were tested by observing the effect of tetrodotoxin, a specific blocker of NaChs, on the intrinsic heart rate of isolated rat working heart. The tetrodotoxin- sensitive neuronal isoforms Nav1.1, Nav1.6 and Nav1.7 as well as the tetrodotoxin-resistant cardiac isoform Nav1.5 were present in the rat sinoatrial node, and the neuronal isoforms were more abundant than Nav1.5 (P&lt;0.05). The selective blockade of tetrodotoxin-sensitive isoforms (presumably Nav1.1, Nav1.6 and Nav1.7) by 100 nmol/L tetrodotoxin scarcely affected the intrinsic heart rate (0.5-/+2.9%, P&gt;0.05) while blockade of tetrodotoxin-resistant isoform (presumably Nav1.5) by 2 micromol/L tetrodotoxin resulted in an obvious decline in the intrinsic heart rate (22.1-/+2.1%, P&lt;0.001). Nav1.1, Nav1.5, Nav1.6 and Nav1.7 are all present in rat sinoatrial node. Although neuronal isoforms are more abundant, Nav1.5 seems to contribute more to activity of the sinoatrial node."	"Subunit dependence of Na channel slow inactivation and open channel block in cerebellar neurons. Purkinje and cerebellar nuclear neurons both have Na currents with resurgent kinetics. Previous observations, however, suggest that their Na channels differ in their susceptibility to entering long-lived inactivated states. To compare fast inactivation, slow inactivation, and open-channel block, we recorded voltage-clamped, tetrodotoxin-sensitive Na currents in Purkinje and nuclear neurons acutely isolated from mouse cerebellum. In nuclear neurons, recovery from all inactivated states was slower, and open-channel unblock was less voltage-dependent than in Purkinje cells. To test whether specific subunits contributed to this differential stability of inactivation, experiments were repeated in Na(V)1.6-null (med) mice. In med Purkinje cells, recovery times were prolonged and the voltage dependence of open-channel block was reduced relative to control cells, suggesting that availability of Na(V)1.6 is quickly restored at negative potentials. In med nuclear cells, however, currents were unchanged, suggesting that Na(V)1.6 contributes little to wild-type nuclear cells. Extracellular Na(+) prevented slow inactivation more effectively in Purkinje than in nuclear neurons, consistent with a resilience of Na(V)1.6 to slow inactivation. The tendency of nuclear Na channels to inactivate produced a low availability during trains of spike-like depolarization. Hyperpolarizations that approximated synaptic inhibition effectively recovered channels, suggesting that increases in Na channel availability promote rebound firing after inhibition."	"Axonal conduction and injury in multiple sclerosis: the role of sodium channels. Multiple sclerosis (MS) is the most common cause of neurological disability in young adults. Recent studies have implicated specific sodium channel isoforms as having an important role in several aspects of the pathophysiology of MS, including the restoration of impulse conduction after demyelination, axonal degeneration and the mistuning of Purkinje neurons that leads to cerebellar dysfunction. By manipulating the activity of these channels or their expression, it might be possible to develop new therapeutic approaches that will prevent or limit disability in MS."	"Myelination and nodal formation of regenerated peripheral nerve fibers following transplantation of acutely prepared olfactory ensheathing cells. Transplantation of olfactory ensheathing cells (OECs) into injured spinal cord results in improved functional outcome. Mechanisms suggested to account for this functional improvement include axonal regeneration, remyelination and neuroprotection. OECs transplanted into transected peripheral nerve have been shown to modify peripheral axonal regeneration and functional outcome. However, little is known of the detailed integration of OECs at the transplantation site in peripheral nerve. To address this issue, cell populations enriched in OECs were isolated from the olfactory bulbs of adult green fluorescent protein (GFP)-expressing transgenic rats and transplanted into a sciatic nerve crush lesion which transects all axons. Five weeks to 6 months after transplantation, the nerves were studied histologically. GFP-expressing OECs survived in the lesion and distributed longitudinally across the lesion zone. The internodal regions of individual teased fibers distal to the transection site were characterized by GFP expression in the cytoplasmic and nuclear compartments of cells surrounding the axons. Immunoelectron microscopy for GFP indicated that the transplanted OECs formed peripheral type myelin. Immunostaining for sodium channel and Caspr revealed a high density of Na(v)1.6 at the newly formed nodes of Ranvier which were flanked by paranodal Caspr staining. These results indicate that transplanted OECs extensively integrate into transected peripheral nerve and form myelin on regenerated peripheral nerve fibers, and that nodes of Ranvier of these axons display proper sodium channel organization."	"Polarized distribution of ion channels within microdomains of the axon initial segment. Voltage-gated sodium (Na(v)) channels accumulate at the axon initial segment (IS), where their high density supports spike initiation. Maintenance of this high density of Na(v) channels involves a macromolecular complex that includes the cytoskeletal linker protein ankyrin-G, the only protein known to bind Na(v) channels and localize them at the IS. We found previously that Na(v)1.6 is the predominant Na(v) channel isoform at IS of adult rodent retinal ganglion cells. However, here we report that Na(v)1.6 immunostaining is consistently reduced or absent in short regions of the IS proximal to the soma, although both ankyrin-G and pan-Na(v) antibodies stain this region. We show that this proximal IS subregion is a unique axonal microdomain, containing an accumulation of Na(v)1.1 channels that are spatially segregated from the Na(v)1.6 channels of the distal IS. Additionally, we find that axonal K(v)1.2 potassium channels are present within the distal IS, but are also excluded from the Na(v)1.1-enriched proximal IS microdomain. Because ankyrin-G was prominent in both proximal and distal subcompartments of the IS, where it colocalized with either Na(v)1.1 or Na(v)1.6, respectively, mechanisms other than association with ankyrin-G must mediate differential targeting of Na(v) channel subtypes to achieve the spatial precision observed within the IS. This precise arrangement of ion channels within the axon initial segment is likely an important determinant of the firing properties of ganglion cells and other mammalian neurons."	"Functional expression of voltage-gated sodium channels in primary cultures of human cervical cancer. Cervical cancer (CaC) is the third most frequent cause of death from cancer among women in the world and the first in females of developing countries. Several ion channels are upregulated in cancer, actually potassium channels have been suggested as tumor markers and therapeutic targets for CaC. Voltage-gated sodium channels (VGSC) activity is involved in proliferation, motility, and invasion of prostate and breast cancer cells; however, the participation of this type of channels in CaC has not been explored. In the present study, we identified both at the molecular and electrophysiological level VGSC in primary cultures from human cervical carcinoma biopsies. With the whole cell patch clamp technique, we isolated and identified a voltage-gated Na(+) current as the main component of the inward current in all investigated cells. Sodium current was characterized by its kinetics, voltage dependence, sensitivity to tetrodotoxin (TTX) block and dependence to [Na(+)](o). By analyzing the expression of mRNAs encoding TTX-sensitive Na(+) channel alpha subunits with standard RT-PCR and specific primers, we detected Na(v)1.2, Na(v)1.4, Na(v)1.6, and Na(v)1.7 transcripts in total RNA obtained from primary cultures and biopsies of CaC. Restriction enzyme analysis of PCR products was consistent with the molecular nature of the corresponding genes. Notably, only transcripts for Na(v)1.4 sodium channels were detected in biopsies from normal cervix. The results show for the first time the functional expression of VGSC in primary cultures from human CaC, and suggest that these channels might be considered as potential molecular markers for this type of cancer."	"Localization of Na+ channel isoforms at the atrioventricular junction and atrioventricular node in the rat. The electrical activity of the atrioventricular node (AVN) is functionally heterogeneous, but how this relates to distinct cell types and the 3-dimensional structure of the AVN is unknown. To address this, we have studied the expression of Na(V)1.5 and other Na+ channel isoforms in the AVN. The rat AVN was identified by Masson's trichrome staining together with immunolabeling of marker proteins: connexin40, connexin43, desmoplakin, atrial natriuretic peptide, and hyperpolarization-activated and cyclic nucleotide-gated channel 4. Na+ channel expression was investigated with immunohistochemistry with isoform-specific Na+ channel antibodies. Na(V)1.1 was distributed in a similar manner to Na(V)1.5. Na(V)1.2 was not detected. Na(V)1.3 labeling was present in nerve fibers and cell bodies (but not myocytes) and was abundant in the penetrating atrioventricular (AV) bundle and the common bundle but was much less abundant in other regions. Na(V)1.5 labeling was abundant in the atrial and ventricular myocardium and the left bundle branch. Na(V)1.5 labeling was absent in the open node, penetrating AV bundle, AV ring bundle, and common bundle but present at a reduced level in the inferior nodal extension and transitional zone. Na(V)1.6 was not detected. Our findings provide molecular evidence of multiple electrophysiological cell types at the AV junction. Impaired AV conduction as a result of mutations in or loss of Na(V)1.5 must be the result of impaired conduction in the AVN inputs (inferior nodal extension and transitional zone) or output (bundle branches) rather than the AVN itself (open node and penetrating AV bundle)."	"Knockdown of Nav1.6a Na+ channels affects zebrafish motoneuron development. In addition to rapid signaling, electrical activity provides important cues to developing neurons. Electrical activity relies on the function of several different types of voltage-gated ion channels. Whereas voltage-gated Ca2+ channel activity regulates several aspects of neuronal differentiation, much less is known about developmental roles of voltage-gated Na+ channels, essential mediators of electrical signaling. Here, we focus on the zebrafish Na+ channel isotype, Nav1.6a, which is encoded by the scn8a gene. A restricted set of spinal neurons, including dorsal sensory Rohon-Beard cells, two motoneuron subtypes with different axonal trajectories, express scn8a during embryonic development. CaP, an early born primary motoneuron subtype with ventrally projecting axons expresses scn8a, as does a class of secondary motoneurons with axons that project dorsally. To test for developmental roles of scn8a, we knocked down Nav1.6a protein using antisense morpholinos. Na+ channel protein and current amplitudes were reduced in neurons that express scn8a. Furthermore, Nav1.6a knockdown altered axonal morphologies of some but not all motoneurons. Dorsally projecting secondary motoneurons express scn8a and displayed delayed axonal outgrowth. By contrast, CaP axons developed normally, despite expression of the gene. Surprisingly, ventrally projecting secondary motoneurons, a population in which scn8a was not detected, displayed aberrant axonal morphologies. Mosaic analysis indicated that effects on ventrally projecting secondary motoneurons were non cell-autonomous. Thus, voltage-gated Na+ channels play cell-autonomous and non cell-autonomous roles during neuronal development."	"Altered sodium currents in auditory neurons of congenitally deaf mice. Sodium currents are essential for action potential generation and propagation in most excitable cells. Appropriate tuning of these currents can be modulated both developmentally and in response to activity. Here we use a mouse model of congenital deafness (dn/dn- asymptomatic deafness associated with hair cell degeneration) to investigate the effect of lack of activity in the expression of Na(+) currents in neurons from the medial nucleus of the trapezoid body (MNTB). Patch-clamp recordings show that at postnatal day (P) 14, both normal and deaf mice display a significant amount of persistent and resurgent Na(+) currents. However, the persistent current is greater in deaf mice than in normal mice, and resurgent current kinetics are slower in deaf mice. At P7, resurgent currents are not present in either group. MNTB immunohistochemistry demonstrates that Nav1.1 subunits are expressed postsynaptically in both P14 normal and deaf mice, while postsynaptic Nav1.6 staining was only observed in deaf mice. Labelling of Nav1.6 subunits in different age groups revealed that at younger ages (P7), both normal and deaf mice express this protein. Nav1.6 staining was not observed in MNTB neurons of P28 normal mice, whereas it is maintained in deaf mice cells until much later (P28). At P7, none of the groups displayed resurgent currents (despite the detection of Nav1.6 subunits at this age group); this suggests that factors other than alpha subunits are important for modulating these currents in MNTB cells. Our results emphasize the importance of activity during development in regulating Na(+) channels."	"Impaired firing and cell-specific compensation in neurons lacking nav1.6 sodium channels. The ability of neurons to fire precise patterns of action potentials is critical for encoding inputs and efficiently driving target neurons. At the axon initial segment and nodes of Ranvier, where nerve impulses are generated and propagated, a high density of Na(v)1.2 sodium channels is developmentally replaced by Na(v)1.6 channels. In retinal ganglion cells (GCs), this isoform switch coincides with the developmental transition from single spikes to repetitive firing. Also, Na(v)1.6 channels are required for repetitive spiking in cerebellar Purkinje neurons. These previous observations suggest that the developmental appearance of Na(v)1.6 underlies the transition to repetitive spiking in GCs. To test this possibility, we recorded from GCs of med (Na(v)1.6-null) and wild-type mice during postnatal development. By postnatal day 18, when the switch to Na(v)1.6 at GC initial segments is normally complete, the maximal sustained and instantaneous firing rates were lower in med than in wild-type GCs, demonstrating that Na(v)1.6 channels are necessary to attain physiologically relevant firing frequencies in GCs. However, the firing impairment was milder than that reported previously in med Purkinje neurons, which prompted us to look for differences in compensatory sodium channel expression. Both Na(v)1.2 and Na(v)1.1 channels accumulated at initial segments and nodes of med GCs, sites normally occupied by Na(v)1.6. In med Purkinje cells, only Na(v)1.1 channels were found at initial segments, whereas in other brain regions, only Na(v)1.2 was detected at med initial segments and nodes. Thus, compensatory mechanisms in channel isoform distribution are cell specific, which likely results in different firing properties."	"Differential modulation of sodium channel Na(v)1.6 by two members of the fibroblast growth factor homologous factor 2 subfamily. FHF2A and FHF2B are two members of the fibroblast growth factor homologous factor 2 (FHF2) subfamily with distinct N termini. Using a generic antibody and electrophysiological methods, we previously showed that FHF2 is expressed in hippocampus and dorsal root ganglion (DRG) neurons and is colocalized with sodium channel Na(v)1.6 at sensory but not motor nodes of Ranvier, and that FHF2B associates with Na(v)1.6, causing an increase in current density and a small depolarizing shift in availability of channels. Using immunolabeling of adult rat tissue, we demonstrate that FHF2A is present within DRG but not in hippocampal or cerebellar neurons or at nodes of Ranvier in sciatic nerve, and that Na(v)1.6 and FHF2A are colocalized in nonmyelinated fibers. We also show that FHF2A binds directly to Na(v)1.6, and that the two proteins coimmunoprecipitate from transfected HEK293 cells. Because Na(v)1.6 has been associated with rapid firing rates, we examined the possible effects of FHF2B and the sister isoform, FHF2A, on electrophysiological properties of this channel in the DRG-derived ND7/23 cell line. We show that FHF2B inhibits accumulation of inactivation in response to trains of stimulation at high frequencies. In marked contrast, FHF2A causes an accumulation of inactivated channels at all frequencies tested due to a slowing of recovery from inactivation. Thus different FHF2 subfamily members have different functional effects on Na(v)1.6 and are differentially distributed in DRG neurons and their axons. This suggests that FHF2A and FHF2B may selectively alter firing behaviour of specific neuronal compartments via differential modulation of Na(v)1.6."	"Ankyrin-G regulates inactivation gating of the neuronal sodium channel, Nav1.6. Ankyrin-G, a modular protein, plays a critical role in clustering voltage-gated sodium channels (Nav channels) in nodes of Ranvier and initial segments of mammalian neurons. However, direct effects of ankyrin-G on electrophysiological properties of Nav channels remain elusive. In this study, we explored whether ankyrin-G has a role in modifying gating properties of the neuronal Nav1.6 channel that is predominantly localized at nodes of Ranvier and initial segments. TsA201 cells transfected with the human Nav1.6 cDNA alone exhibited significant persistent sodium current (Ina-p). On the other hand, Ina-p was barely detected on co-expression with ankyrin-G. Ankyrin-B, another ankyrin, did not show such an effect. Expression of chimeras between the two isoforms of ankyrin suggests that the membrane-binding domain of ankyrin-G is critical for reducing the Ina-p of Nav1.6. These results suggest that ankyrin-G regulates neuronal excitability not only through clustering Nav channels but also by directly modifying their channel gating."	"Expression of sodium channels Nav1.2 and Nav1.6 during postnatal development of the retina. During the second and third postnatal weeks, there is a developmental switch from sodium channel isoform Na(v)1.2 to isoform Na(v)1.6 at initial segments and nodes of Ranvier in rat retinal ganglion cells. We used quantitative, real-time PCR to determine if the developmental appearance of Na(v)1.6 channels is accompanied by an increase in steady-state level of Na(v)1.6 mRNA in the retina. Between postnatal day 2 (P2) and P10, Na(v)1.6 levels did not change, but between P10 and P19, there was an approximately three-fold increase in Na(v)1.6 transcript levels. This coincides with the appearance of Na(v)1.6 channels in the retina and optic nerve. The steady-state level of Na(v)1.2 mRNA also increased during this same period, which suggests that the rise in Na(v)1.6 may be part of a general increase in sodium channel transcripts at about the time of eye opening at P14. The results are consistent with a developmental increase in steady-state transcripts giving rise to a corresponding increase in sodium channel protein expression."	"Radiation hybrid mapping of 18 positional and physiological candidate genes for arthrogryposis multiplex congenita on porcine chromosome 5. We report the chromosomal assignment of 18 porcine genes to human homologues using the INRA-Minnesota swine radiation hybrid panel (IMpRH). These genes (CACNA1C, COL2A1, CPNE8, C3F, C12ORF4, DDX11, GDF11, HOXC8, KCNA1, MDS028, TMEM106C, NR4A1, PHB2, PRICKLE1, Q6ZUQ4, SCN8A, TUBA8 and USP18) are located on porcine chromosome 5 (SSC5) and represent positional and functional candidates for arthrogryposis multiplex congenita (AMC), which maps to SSC5. CPNE8, PRICKLE1, Q6ZUQ4 and TUBA8 were mapped to the interval for pig AMC between microsatellites SW152 and SW904. Three SNPs in TUBA8 co-segregated with the AMC phenotype in 230 pigs of our research population without recombination and could be used as a genetic marker test for AMC. In addition, we provide evidence that a small chromosomal region of HSA22q11.2 evolutionarily corresponds to SSC5q12-q22 (and contains the human homologues of porcine SW152, Q6ZUQ4, TUBA8 and USP18), while the regions flanking HSA22q11.2 on SSC5 correspond to HSA12p13 and HSA12q12. We identified seven distinct chromosomal blocks, further supporting extensive rearrangements between genes on HSA12 and HSA22 in the AMC region on SSC5."	"Inactivation of sodium channel Scn8A (Na-sub(v)1.6) in Purkinje neurons impairs learning in Morris water maze and delay but not trace eyeblink classical conditioning. To examine the isolated effects of altered currents in cerebellar Purkinje neurons, the authors used Scn8a-super(flox/flox), Purkinje cell protein-CRE (Pcp-CRE) mice in which Exon 1 of Scn8a is deleted only in Purkinje neurons. Twenty male Purkinje Scn8a knockout (PKJ Scn8a KO) mice and 20 male littermates were tested on the Morris water maze (MWM). Subsequently, half were tested in 500-ms delay and half were tested in 500-ms trace eyeblink conditioning. PKJ Scn8a KO mice were impaired in delay conditioning and MWM but not in trace conditioning. These results provide additional support for the necessary participation of cerebellar cortex in normal acquisition of delay eyeblink conditioning and MWM and raise questions about the role, if any, of cerebellar cortex in trace eyeblink conditioning."	"Resurgent current and voltage sensor trapping enhanced activation by a beta-scorpion toxin solely in Nav1.6 channel. Significance in mice Purkinje neurons. Resurgent currents are functionally crucial in sustaining the high frequency firing of cerebellar Purkinje neurons expressing Na(v)1.6 channels. Beta-scorpion toxins, such as CssIV, induce a left shift in the voltage-dependent activation of Na(v)1.2 channels by &quot;trapping&quot; the IIS4 voltage sensor segment. We found that the dangerous Cn2 beta-scorpion peptide induces both the left shift voltage-dependent activation and a transient resurgent current only in human Na(v)1.6 channels (among 1.1-1.7), whereas CssIV did not induce the resurgent current. Cn2 also produced both actions in mouse Purkinje cells. These findings suggest that only distinct beta-toxins produce resurgent currents. We suggest that the novel and unique selectivity of Cn2 could make it a model drug to replace deep brain stimulation of the subthalamic nucleus in patients with Parkinson disease."	"Impaired motor function in mice with cell-specific knockout of sodium channel Scn8a (NaV1.6) in cerebellar purkinje neurons and granule cells. The Scn8a gene encodes the voltage-gated Na channel alpha subunit Na(V)1.6, which is widely expressed throughout the nervous system. Global null mutations that eliminate Scn8a in all cells result in severe motor dysfunction and premature death, precluding analysis of the physiological role of Na(V)1.6 in different neuronal types. To test the effect of cerebellar Na(V)1.6 on motor coordination in mice, we used the Cre-lox system to eliminate Scn8a expression exclusively in Purkinje neurons (Purkinje KO) and/or granule neurons (granule KO). Whereas granule KO mice had only minor behavioral defects, adult Purkinje KO mice exhibited ataxia, tremor, and impaired coordination. These disorders were exacerbated in double mutants lacking Scn8a in both Purkinje and granule cells (double KO). In Purkinje cells isolated from adult Purkinje KO and double KO but not granule KO mice, the ratio of resurgent-to-transient tetrodotoxin- (TTX)-sensitive Na current amplitudes decreased from approximately 15 to approximately 5%. In cerebellar slices, Purkinje cell spontaneous and maximal firing rates were reduced 10-fold and twofold relative to control in Purkinje KO and double KO but not granule KO mice. Additionally, short-term plasticity of high-frequency parallel fiber EPSCs was altered relative to control in Purkinje KO and double KO but not granule KO mice. These data suggest that the specialized kinetics of Purkinje Na channels depend directly on Scn8a expression. The loss of these channels leads to a decrease in Purkinje cell firing rates as well as a modification of the synaptic properties of afferent parallel fibers, with the ultimate consequence of disrupting motor behavior."	"Heterozygous P0 deficiency protects mice from vincristine-induced polyneuropathy. Patients with hereditary neuropathies are more susceptible to vincristine (VIN)-induced neuropathy than patients without this comorbidity. The heterozygous P0(+/-) mouse is an animal model of a distinct form of inherited neuropathies. These mice produce only 50% of the major myelin protein protein zero (P0) and display signs of demyelination in motor nerves at 4 months of age. Here we investigated the development of neuropathic signs in P0(+/-) and wild-type (wt) mice after VIN treatment. Neuropathy was induced by daily intraperitoneal injections of VIN (0.5 mg/kg body weight) over 10 days. Behavioral and electrophysiological tests were performed at regular time points. Wt mice developed significant hypersensitivity to heat and mechanical stimuli between days 7 and 38 after the first VIN injection. Surprisingly, P0(+/-) mice did not show sensory or motor signs of neuropathy over the whole testing period. Immunohistochemical analysis showed an increase in macrophage numbers in sciatic nerve sections of wt mice after VIN, whereas P0(+/-) mice had higher baseline levels of macrophages without changes after VIN treatment. Semithin sections revealed a decrease in the number of small-diameter myelinated fibers in the sciatic nerves of wt mice after VIN application, whereas P0(+/-) mice had higher baseline values of this fiber subtype that did not change under treatment. Dorsal root ganglion neurons of both genotypes showed an up-regulation of voltage-gated sodium channel immunoreactivity after VIN application without differences between the genotypes. Thus, the P0(+/-) phenotype seems to be protected against VIN-induced neuropathy. The mechanism of this neuroprotection remains elusive."	"Remyelination of dorsal column axons by endogenous Schwann cells restores the normal pattern of Nav1.6 and Kv1.2 at nodes of Ranvier. Demyelination of CNS axons occurs in a number of pathological conditions, including multiple sclerosis and contusion-type spinal cord injury. The demyelination can be repaired by remyelination in both humans and rodents, and even within the CNS remyelination can be achieved by endogenous and/or exogenous Schwann cells, the myelinating cells of the PNS. Remyelinated axons can often conduct impulses securely, but the organization of ion channels at long-term remyelinated nodes is not known. In the present study, the expression of voltage-gated sodium (Na(v)) and potassium (K(v)) channels along central axons remyelinated by endogenous Schwann cells has been studied in lesions induced more than 1 year previously by the intraspinal injection of ethidium bromide (EB). The expression of the channels at long-term nodes formed by Schwann cell remyelination has been compared with that present in nascent nodes formed in the adult at 18 and 23 days post-EB injection. Immunohistochemical studies revealed that long-term nodes formed by Schwann cell remyelination exhibit a clustering of Na(v)1.6 sodium channels within the nodal membrane, with the Shaker-type potassium channel K(v)1.2 segregated within the juxtaparanodal region, similar to the arrangement at normal mature CNS nodes. Na(v)1.2 was not detected at nodes formed by Schwann cells at any stage of their development. Moreover, Na(v)1.6, but not Na(v)1.2, was clustered at nascent nodes formed by remyelinating Schwann cells 18 and 23 days following EB injection. These observations show that endogenous Schwann cells can establish and maintain nodes of Ranvier on central axons for over one year, and that the nodes exhibit an apparently normal distribution of sodium and potassium channels, with Na(v)1.6 the predominant subtype of sodium channel present at such nodes at all stages of their development."	"Heterozygosity for a protein truncation mutation of sodium channel SCN8A in a patient with cerebellar atrophy, ataxia, and mental retardation. The SCN8A gene on chromosome 12q13 encodes the voltage gated sodium channel Na(v)1.6, which is widely expressed in neurons of the CNS and PNS. Mutations in the mouse ortholog of SCN8A result in ataxia and other movement disorders. We screened the 26 coding exons of SCN8A in 151 patients with inherited or sporadic ataxia. A 2 bp deletion in exon 24 was identified in a 9 year old boy with mental retardation, pancerebellar atrophy, and ataxia. This mutation, Pro1719ArgfsX6, introduces a translation termination codon into the pore loop of domain 4, resulting in removal of the C-terminal cytoplasmic domain and predicted loss of channel function. Three additional heterozygotes in the family exhibit milder cognitive and behavioural deficits including attention deficit hyperactivity disorder (ADHD). No additional occurrences of this mutation were observed in 625 unrelated DNA samples (1250 chromosomes). The phenotypes of the heterozygous individuals suggest that mutations in SCN8A may result in motor and cognitive deficits of variable expressivity, but the study was limited by lack of segregation in the small pedigree and incomplete information about family members. Identification of additional families will be required to confirm the contribution of the SCN8A mutation to the clinical features in ataxia, cognition and behaviour disorders."	"Integration of engrafted Schwann cells into injured peripheral nerve: axonal association and nodal formation on regenerated axons. Transplantation of myelin-forming cells can remyelinate axons, but little is known of the sodium channel organization of axons myelinated by donor cells. Sciatic nerve axons of female wild type mice were transected by a crush injury and Schwann cells (SCs) from green fluorescence protein (GFP)-expressing male mice were transplanted adjacent to the crush site. The male donor cells were identified by GFP fluorescence and fluorescence in situ hybridization (FISH) for Y chromosome. In nerves of GFP-expressing mice, GFP was observed in the axoplasm and in the cytoplasmic compartments of the Schwann cells, but not in the myelin. Following transplantation of GFP-SCs into crushed nerve of wild type mice, immuno-electron microscopic analysis indicated that GFP was observed in the cytoplasmic compartments of engrafted Schwann cells which formed myelin. Nodal and paranodal regions of the axons myelinated by the GFP-SCs were identified by Na(v)1.6 sodium channel and Caspr immunostaining, respectively. Nuclear identification of the Y chromosome by FISH confirmed the donor origin of the myelin-forming cells. These results indicate that engrafted GFP-SCs participate in myelination of regenerated peripheral nerve fibers and that Na(v)1.6 sodium channel, which is the dominant sodium channel at normal nodes, is reconstituted on the regenerated axons."	"Expression of Nav1.6 sodium channels by Schwann cells at neuromuscular junctions: role in the motor endplate disease phenotype. In addition to their role in action potential generation and fast synaptic transmission in neurons, voltage-dependent sodium channels can also be active in glia. Terminal Schwann cells (TSCs) wrap around the nerve terminal arborization at the neuromuscular junction, which they contribute to shape during development and in the postdenervation processes. Using fluorescent in situ hybridization (FISH), immunofluorescence, and confocal microscopy, we detected the neuronal Nav1.6 sodium channel transcripts and proteins in TSCs in normal adult rats and mice. Nav1.6 protein co-localized with the Schwann cell marker S-100 but was not detected in the SV2-positive nerve terminals. The med phenotype in mice is due to a mutation in the SCN8A gene resulting in loss of Nav1.6 expression. It leads to early onset in postnatal life of defects in neuromuscular transmission with minimal alteration of axonal conduction. Strikingly, in mutant mice, the nonmyelinated pre-terminal region of axons showed abundant sprouting at neuromuscular junctions, and most of the alpha-bungarotoxin-labeled endplates were devoid of S-100- or GFAP-positive TSCs. Using specific antibodies against the Nav1.2 and Nav1.6 sodium channels, ankyrin G and Caspr 1, and a pan sodium channel antibody, we found that a similar proportion of ankyrin G-positive nodes of Ranvier express sodium channels in mutant and wild-type animals and that nodal expression of Nav1.2 persists in med mice. Our data supports the hypothesis that the lack of expression of Nav1.6 in Schwann cells at neuromuscular junctions might play a role in the med phenotype."	"Sodium channel mutations in epilepsy and other neurological disorders. Since the first mutations of the neuronal sodium channel SCN1A were identified 5 years ago, more than 150 mutations have been described in patients with epilepsy. Many are sporadic mutations and cause loss of function, which demonstrates haploinsufficiency of SCN1A. Mutations resulting in persistent sodium current are also common. Coding variants of SCN2A, SCN8A, and SCN9A have also been identified in patients with seizures, ataxia, and sensitivity to pain, respectively. The rapid pace of discoveries suggests that sodium channel mutations are significant factors in the etiology of neurological disease and may contribute to psychiatric disorders as well."	"Identification of functional voltage-gated Na(+) channels in cultured human pulmonary artery smooth muscle cells. Electrical excitability, which plays an important role in excitation-contraction coupling in the pulmonary vasculature, is regulated by transmembrane ion flux in pulmonary artery smooth muscle cells (PASMC). This study aimed to characterize the electrophysiological properties and molecular identities of voltage-gated Na(+) channels in cultured human PASMC. We recorded tetrodotoxin (TTX) sensitive and rapidly inactivating Na(+) currents with properties similar to those described in cardiac myocytes. Using RT-PCR, we detected transcripts of seven Na(+) channel alpha genes (SCN2A, 3A, 4A, 7A, 8A, 9A, and 11A), and two beta subunit genes (SCN1B and 2B). Our results demonstrate that human PASMC express TTX-sensitive voltage-gated Na(+) channels. Their physiological functions remain unresolved, although our data suggest that Na(+) channel activity does not directly influence membrane potential, intracellular Ca(2+) release, or proliferation in normal human PASMC. Whether their expression and/or activity are heightened in the pathological state is discussed."	"Where is the spike generator of the cochlear nerve? Voltage-gated sodium channels in the mouse cochlea. The origin of the action potential in the cochlea has been a long-standing puzzle. Because voltage-dependent Na+ (Nav) channels are essential for action potential generation, we investigated the detailed distribution of Nav1.6 and Nav1.2 in the cochlear ganglion, cochlear nerve, and organ of Corti, including the type I and type II ganglion cells. In most type I ganglion cells, Nav1.6 was present at the first nodes flanking the myelinated bipolar cell body and at subsequent nodes of Ranvier. In the other ganglion cells, including type II, Nav1.6 clustered in the initial segments of both of the axons that flank the unmyelinated bipolar ganglion cell bodies. In the organ of Corti, Nav1.6 was localized in the short segments of the afferent axons and their sensory endings beneath each inner hair cell. Surprisingly, the outer spiral fibers and their sensory endings were well labeled beneath the outer hair cells over their entire trajectory. In contrast, Nav1.2 in the organ of Corti was localized to the unmyelinated efferent axons and their endings on the inner and outer hair cells. We present a computational model illustrating the potential role of the Nav channel distribution described here. In the deaf mutant quivering mouse, the localization of Nav1.6 was disrupted in the sensory epithelium and ganglion. Together, these results suggest that distinct Nav channels generate and regenerate action potentials at multiple sites along the cochlear ganglion cells and nerve fibers, including the afferent endings, ganglionic initial segments, and nodes of Ranvier."	"Electrophysiological and molecular identification of voltage-gated sodium channels in murine vascular myocytes. A voltage-gated Na+ current was characterised in freshly dissociated mouse portal vein (PV) smooth muscle myocytes. The current was found superimposed upon the relatively slow L-type Ca2+ current and was resistant to conventional Ca2+ channel blockers but was abolished by external Na+ replacement and tetrodotoxin (TTX, 1 microM). The molecular identity of the channel responsible for this conductance was determined by RT-PCR where only the transcripts for Na+ channel genes SCN7a, 8a and 9a were detected. The presence of the protein counterparts to the SCN8a and 9a genes (NaV1.6 and NaV1.7, respectively) on the individual smooth muscle myocytes were confirmed in immunocytochemistry, which showed diffuse staining around a predominantly plasmalemmal location. TTX inhibited the action potential in individual myocytes generated in the current clamp mode but isometric tissue tension experiments revealed that TTX (1 and 5 microM) had no effect on the inherent mouse PV rhythmicity. However, the Na+ channel opener veratridine (10 and 50 microM) significantly increased the length of contraction and the interval between contractions. This effect was not influenced by pre-incubation with atropine, prazosin and propranolol, but was reversed by TTX (1 microM) and completely abolished by nicardipine (1 microM). Furthermore, preincubation with the reverse-mode Na+-Ca2+ exchange blocker KB-R7943 (10 microM) also inhibited the veratridine response. We have established for the first time the molecular identity of the voltage-gated Na+ channel in freshly dispersed smooth muscle cells and have shown that these channels can modulate contractility through a novel mechanism of action possibly involving reverse mode Na+-Ca2+ exchange."	"Voltage-gated sodium channel Nav1.6 is modulated by p38 mitogen-activated protein kinase. Nav1.6 is the major sodium channel isoform at nodes of Ranvier in myelinated axons and, additionally, is distributed along unmyelinated C-fibers of sensory neurons. Thus, modulation of the sodium current produced by Nav1.6 might significantly impact axonal conduction. Mitogen-activated protein kinases (MAPKs) are expressed in neurons and are activated after injury, for example, after sciatic nerve transection and hypoxia. Although the role of MAPK in signal transduction and in injury-induced regulation of gene expression is well established, the ability of these kinases to phosphorylate and modulate voltage-gated sodium channels has not been reported. Sequence analysis shows that Nav1.6 contains a putative MAP kinase-recognition module in the cytoplasmic loop (L1), which joins domains 1 and 2. We show in this study that sodium channels and p38 MAP kinase colocalize in rat brain tissue and that activated p38alpha phosphorylates L1 of Nav1.6, specifically at serine 553 (S553), in vitro. None of the other cytoplasmic loops and termini of the channel are phosphorylated by activated p38alpha in these assays. Activation of p38 in the neuronal ND7/23 cell line transfected with Nav1.6 leads to a significant reduction in the peak Nav1.6 current amplitude, without a detectable effect on gating properties. The substitution of S553 with alanine within L1 of the Nav1.6 channel prevents p38-mediated reduction of Nav1.6 current density. This is the first demonstration of MAPK phosphorylation and modulation of a voltage-gated sodium channel, and this modulation may represent an additional role for MAPK in regulating the neuronal response to injury."	"Linkage mapping of the SCN8A gene to chicken linkage group E22C19W28. NA"	"Physiological maturation of photoreceptors depends on the voltage-gated sodium channel NaV1.6 (Scn8a). Voltage-gated sodium channels (VGSCs) ensure the saltatory propagation of action potentials along axons by acting as signal amplifiers at the nodes of Ranvier. In the retina, activity mediated by VGSCs is important for the refinement of the retinotectal map. Here, we conducted a full-field electroretinogram (ERG) study on mice null for the sodium channel NaV1.6. Interestingly, the light-activated hyperpolarization of photoreceptor cells (the a-wave) and the major &quot;downstream&quot; components of the ERG, the b-wave and the oscillatory potentials, are markedly reduced and delayed in these mice. The functional deficit was not associated with any morphological abnormality. We demonstrate that Scn8a is expressed in the ganglion and inner nuclear layers and at low levels in the outer nuclear layer beginning shortly before the observed ERG deficit. Together, our data reveal a previously unappreciated role for VGSCs in the physiological maturation of photoreceptors."	"Expression and distribution of TTX-sensitive sodium channel alpha subunits in the enteric nervous system. The expression and distribution of TTX-sensitive voltage-gated sodium channel (VGSC) alpha subunits in the enteric nervous system (ENS) has not been described. Using RT-PCR, expression of Na(v)1.2, Na(v)1.3, Na(v)1.6, and Na(v)1.7 mRNA was detected in small and large intestinal preparations from guinea pigs. Expression of Na(v)1.1 mRNA as well as Na(v)1.1-like immunoreactivity (-li) were not observed in any intestinal region investigated. Na(v)1.2-li was primarily observed within the soma of the majority of myenteric and submucosal neurons, although faint immunoreactivity was occasionally observed in ganglionic and internodal fibers. Na(v)1.3-li was observed in dendrites, soma, and axons in a small group of myenteric neurons, as well as in numerous myenteric internodal fibers; immunoreactivity was rarely observed in the submucosal plexus. Na(v)1.6-li was primarily observed in the initial axonal segment of colonic myenteric neurons. Na(v)1.7-li was observed in dorsal root ganglia neurons but not in the myenteric plexus of the small and large intestine. In the ileum, 37% of Na(v)1.2-li cell bodies colocalized with calbindin-li while colocalization with calretinin-li was rare. In contrast, 22% of Na(v)1.3-li cell bodies colocalized with calretinin-li but colocalization with calbindin-li was not observed. In the colon, both Na(v)1.2-li and Na(v)1.3-li cell bodies frequently colocalized with either calretinin-li or calbindin-li. Na(v)1.2-li cell bodies also colocalized with the majority of NeuN-li cells in the small and large intestine. These data suggest that Na(v)1.1 may not be highly expressed in the ENS, but that Na(v)1.2, Na(v)1.3, and Na(v)1.6, and possibly Na(v)1.7, have broadly important and distinct functions in the ENS."	"Presynaptic Na+ channels: locus, development, and recovery from inactivation at a high-fidelity synapse. Na+ channel recovery from inactivation limits the maximal rate of neuronal firing. However, the properties of presynaptic Na+ channels are not well established because of the small size of most CNS boutons. Here we study the Na+ currents of the rat calyx of Held terminal and compare them with those of postsynaptic cells. We find that presynaptic Na+ currents recover from inactivation with a fast, single-exponential time constant (24 degrees C, tau of 1.4-1.8 ms; 35 degrees C, tau of 0.5 ms), and their inactivation rate accelerates twofold during development, which may contribute to the shortening of the action potential as the terminal matures. In contrast, recordings from postsynaptic cells in brainstem slices, and acutely dissociated, reveal that their Na+ currents recover from inactivation with a double-exponential time course (tau(fast) of 1.2-1.6 ms; tau(slow) of 80-125 ms; 24 degrees C). Surprisingly, confocal immunofluorescence revealed that Na+ channels are mostly absent from the calyx terminal but are instead highly concentrated in an unusually long (approximately 20-40 microm) unmyelinated axonal heminode. Outside-out patch recordings confirmed this segregation. Expression of Na(v)1.6 alpha-subunit increased during development, whereas the Na(v)1.2alpha-subunit was not present. Serial EM reconstructions also revealed a long pre-calyx heminode, and biophysical modeling showed that exclusion of Na+ channels from the calyx terminal produces an action potential waveform with a shorter half-width. We propose that the high density and polarized locus of Na+ channels on a long heminode are critical design features that allow the mature calyx of Held terminal to fire reliably at frequencies near 1 kHz."	"Robustness of burst firing in dissociated purkinje neurons with acute or long-term reductions in sodium conductance. Cerebellar Purkinje neurons often generate all-or-none burst firing in response to depolarizing stimuli. Voltage-clamp experiments using action potential waveforms show that burst firing depends on small net inward currents that flow after spikes and reflect the net balance between multiple large currents. Given this, burst firing is surprisingly robust in the face of changes in the magnitude of the underlying currents from cell to cell. We explored the basis of this robustness by examining the effects of reducing the sodium current, the major contributor to the postspike inward current. Burst firing persisted in concentrations of tetrodotoxin that produced half-block of sodium current. This robustness of bursting reflects an acute feedback mechanism whereby waveform changes from the reduced sodium current (reduced spike height and a hyperpolarizing shift in postspike voltage) cause compensatory decreases in postspike potassium currents. In particular, reduced spike height reduces calcium entry and subsequent calcium-activated potassium current, and the hyperpolarizing shift in postspike voltage speeds deactivation of Kv3-like potassium channels. Other experiments examined bursting in Na(v)1.6-/- mice, in which sodium current density is reduced in the long term. Under these circumstances, there was upregulation of both T-type and P-type calcium current and a change in the balance of calcium current and calcium-activated potassium current such that their net influence shifted from being inhibitory during bursts in wild-type neurons to excitatory during bursts from Na(v)1.6-/- mutant neurons. Thus, Purkinje neurons have both acute and long-term feedback mechanisms that serve to maintain burst firing when voltage-dependent sodium conductance is reduced."	"Nav1.6 channels generate resurgent sodium currents in spinal sensory neurons. The Na(v)1.6 voltage-gated sodium channel has been implicated in the generation of resurgent currents in cerebellar Purkinje neurons. Our data show that resurgent sodium currents are produced by some large diameter dorsal root ganglion (DRG) neurons from wild-type mice, but not from Na(v)1.6-null mice; small DRG neurons do not produce resurgent currents. Many, but not all, DRG neurons transfected with Na(v)1.6 produce resurgent currents. These results demonstrate for the first time the intrinsic ability of Na(v)1.6 to produce a resurgent current, and also show that cell background is critical in permitting the generation of these currents."	"Electrophysiological properties of two axonal sodium channels, Nav1.2 and Nav1.6, expressed in mouse spinal sensory neurones. Sodium channels Na(v)1.2 and Na(v)1.6 are both normally expressed along premyelinated and myelinated axons at different stages of maturation and are also expressed in a subset of demyelinated axons, where coexpression of Na(v)1.6 together with the Na(+)/Ca(2+) exchanger is associated with axonal injury. It has been difficult to distinguish the currents produced by Na(v)1.2 and Na(v)1.6 in native neurones, and previous studies have not compared these channels within neuronal expression systems. In this study, we have characterized and directly compared Na(v)1.2 and Na(v)1.6 in a mammalian neuronal cell background and demonstrate differences in their properties that may affect neuronal behaviour. The Na(v)1.2 channel displays more depolarized activation and availability properties that may permit conduction of action potentials, even with depolarization. However, Na(v)1.2 channels show a greater accumulation of inactivation at higher frequencies of stimulation (20-100 Hz) than Na(v)1.6 and thus are likely to generate lower frequencies of firing. Na(v)1.6 channels produce a larger persistent current that may play a role in triggering reverse Na(+)/Ca(2+) exchange, which can injure demyelinated axons where Na(v)1.6 and the Na(+)/Ca(2+) exchanger are colocalized, while selective expression of Na(v)1.2 may support action potential electrogenesis, at least at lower frequencies, while producing a smaller persistent current."	"Altered ion channels in an animal model of Charcot-Marie-Tooth disease type IA. How demyelination and remyelination affect the function of myelinated axons is a fundamental aspect of demyelinating diseases. We examined this issue in Trembler-J mice, a genetically authentic model of a dominantly inherited demyelinating neuropathy of humans. The K+ channels Kv1.1 and Kv1.2 channels were often improperly located in the paranodal axon membrane, typically associated with improperly formed paranodes, and in unmyelinated segments between internodes. As in wild-type nerves, Trembler-J nodes contained Nav1.6, ankyrin-G, betaIV-spectrin, and KCNQ2, but, unlike wild-type nerves, they also contained Kv3.1b and Nav1.8. In unmyelinated segments bordered by myelin sheaths, these proteins were clustered in heminodes and did not appear to be diffusely localized in the unmyelinated segments themselves. Nodes and heminodes were contacted by Schwann cells processes that did not have the ultrastructural or molecular characteristics of mature microvilli. Despite the presence of Nav1.8, a tetrodotoxin-resistant sodium channel, sciatic nerve conduction was at least as sensitive to tetrodotoxin in Trembler-J nerves as in wild-type nerves. Thus, the profound reorganization of axonal ion channels and the aberrant expression of novel ion channels likely contribute to the altered conduction in Trembler-J nerves."	"Multiple transcripts of sodium channel SCN8A (Na(V)1.6) with alternative 5'- and 3'-untranslated regions and initial characterization of the SCN8A promoter. To identify the transcriptional start sites of the neuronal channel SCN8A, we carried out 5'-RACE (rapid amplification of cDNA ends) with RNA from human and mouse brain. We recovered four mutually exclusive 5'-untranslated exons (exon 1a to exon 1d) that map to a 1.8-kb region of genomic DNA located approximately 70 kb upstream of the first coding exon. The same 5'-untranslated exons are expressed in central, peripheral and sympathetic nervous system and in embryonic and adult brain. A 4.8-kb genomic fragment containing these 5' exons demonstrated promoter activity in transfected MN-1 cells. In transgenic mice, transcription of the 4.8-kb promoter was restricted to brain and spinal cord. The 4.8-kb promoter contains eight consensus Sp1-binding sites and two Inr sites. A potential NRSE/RE-1 site is located nearby. Two active polyadenylation sites identified by 3'-RACE are conserved in human, mouse, and chicken SCN8A. Sequence comparison of human and mouse SCN8A identified 12 conserved noncoding elements whose effect on transcription was tested in transfected cells."	"Molecular diversity of voltage-gated sodium channel alpha subunits expressed in neuronal and non-neuronal excitable cells. In order to investigate the role of molecular diversity of voltage-activated sodium channel alpha-subunits in excitability of neuronal and non-neuronal cells, we carried out patch-clamp recordings and single-cell RT-PCR on two different types of mammalian excitable cells i.e. hippocampal neurons and non-neuronal utricular epithelial hair cells. In each cell type, multiple different combinations of sodium channel alpha-subunits exist from cell to cell despite similar sodium current properties. The mRNA isoforms, Nav1.2 and Nav1.6, are the most frequently detected by single cell analysis in the two cell types while Nav1.3 and Nav1.7 are also moderately expressed in embryonic hippocampal neurons and in neonatal utricular hair cells respectively. By investigating the particular alternate splice isoforms of Nav1.6 occurring at the exon 18 of the mouse orthologue SCN8A, we revealed that this subunit co-exist in the two cell types under different alternative spliced isoforms. The expression of non-functional isoforms of Nav1.6 in utricular epithelial hair cells excludes the involvement of this subunit in supporting their excitability. Thus, from a functional point of view, the present results suggest that, at the single cell level, both neuronal and non-neuronal excitable cells expressed different and complex patterns of sodium channel gene transcripts but this diversity alone cannot explain the sodium current properties of these cell types."	"The molecular machinery of resurgent sodium current revealed. Some TTX-sensitive sodium channels open transiently during recovery from inactivation, generating a &quot;resurgent&quot; sodium current that flows immediately following action potentials. In this issue of Neuron, Grieco and colleagues present evidence that resurgent sodium current results from a novel form of inactivation in which the cytoplasmic tail of the beta4 subunit acts as a classic open-channel blocker."	"Suicide attempt and basic mechanisms in neural conduction: relationships to the SCN8A and VAMP4 genes. Family and twin studies show that genetic variation influences suicidal behavior, but do not indicate specific genes. We investigated the relationship between genetic variation and suicide attempt by screening 250 genetic markers using transmission disequilibrium test (TDT) analysis. Analysis of 77 triplets (suicide attempters and both their parents), indicated that gene-variants in, or adjacent to, the sodium channel, voltage gated, type VIII, alpha polypeptide (SCN8A) (P = 0.008), vesicle-associated membrane protein 4 (VAMP4) (P = 0.004), and prenylated Rab acceptor 1 (RABAC1) (P = 0.006) genes are over-transmitted in suicide attempt. Replication in a separate sample, consisting of 190 triplets, confirmed the exploratory data for the SCN8A (P = 0.005) and VAMP4 (P = 0.019) genes, but failed to confirm the data for the RABAC1 gene. Our results indicate that genetic variation in the SCN8A and VAMP4 genes may contribute to risk for suicide attempt, possibly through alterations in neural conduction."	"Allelic mutations of the sodium channel SCN8A reveal multiple cellular and physiological functions. Allelic mutations of Scn8a in the mouse have revealed the range of neurological disorders that can result from alternations of one neuronal sodium channel. Null mutations produce the most severe phenotype, with motor neuron failure leading to paralysis and juvenile lethality. Two less severe mutations cause ataxia, tremor, muscle weakness, and dystonia. The electrophysiological effects have been studied at the cellular level by recording from neurons from the mutant mice. The data demonstrate that Scn8a is required for the complex spiking of cerebellar Purkinje cells and for persistent sodium current in several classes of neurons, including some with pacemaker roles. The mouse mutations of Scn8a have also provided insight into the mode of inheritance of channelopathies, and led to the identification of a modifier gene that affects transcript splicing. These mutations demonstrate the value of mouse models to elucidate the pathophysiology of human disease."	"Use-dependent potentiation of the Nav1.6 sodium channel. Nav1.2 and Nav1.6 are two voltage-gated sodium channel isoforms that are abundant in the adult central nervous system. These channels are expressed in different cells and localized in different neuronal regions, which may reflect functional specialization. To examine this possibility, we compared the properties of Nav1.2 and Nav1.6 in response to a rapid series of repetitive depolarizations. Currents through Nav1.6 coexpressed with beta1 demonstrated use-dependent potentiation during a rapid train of depolarizations. This potentiation was in contrast to the use-dependent decrease in current for Nav1.2 with beta1. The voltage dependence of potentiation correlated with the voltage dependence of activation, and it still occurred when fast inactivation was removed by mutation. Rapid stimulation accelerated a slow phase of activation in the Nav1.6 channel that had fast inactivation removed, resulting in faster channel activation. Although the Nav1.2 channel with fast inactivation removed also demonstrated slightly faster activation, that channel showed very pronounced slow inactivation compared to Nav1.6. These results indicate that potentiation of Nav1.6 sodium currents results from faster channel activation, and that this effect is masked by slow inactivation in Nav1.2. The data suggest that Nav1.6 might be more resistant to inactivation, which might be helpful for high-frequency firing at nodes of Ranvier compared to Nav1.2."	"Sodium channels contribute to microglia/macrophage activation and function in EAE and MS. Loss of axons is a major contributor to nonremitting deficits in the inflammatory demyelinating disease multiple sclerosis (MS). Based on biophysical studies showing that activity of axonal sodium channels can trigger axonal degeneration, recent studies have tested sodium channel-blocking drugs in experimental autoimmune encephalomyelitis (EAE), an animal model of MS, and have demonstrated a protective effect on axons. However, it is possible that, in addition to a direct effect on axons, sodium channel blockers may also interfere with inflammatory mechanisms. We therefore examined the novel hypothesis that sodium channels contribute to activation of microglia and macrophages in EAE and acute MS lesions. In this study, we demonstrate a robust increase of sodium channel Nav1.6 expression in activated microglia and macrophages in EAE and MS. We further demonstrate that treatment with the sodium channel blocker phenytoin ameliorates the inflammatory cell infiltrate in EAE by 75%. Supporting a role for sodium channels in microglial activation, we show that tetrodotoxin, a specific sodium channel blocker, reduces the phagocytic function of activated rat microglia by 40%. To further confirm a role of Nav1.6 in microglial activation, we examined the phagocytic capacity of microglia from med mice, which lack Nav1.6 channels, and show a 65% reduction in phagocytic capacity compared with microglia from wildtype mice. Our findings indicate that sodium channels are important for activation and phagocytosis of microglia and macrophages in EAE and MS and suggest that, in addition to a direct neuroprotective effect on axons, sodium channel blockade may ameliorate neuroinflammatory disorders via anti-inflammatory mechanisms."	"Expression of alternatively spliced sodium channel alpha-subunit genes. Unique splicing patterns are observed in dorsal root ganglia. Molecular medicine requires the precise definition of drug targets, and tools are now in place to provide genome-wide information on the expression and alternative splicing patterns of any known gene. DNA microarrays were used to monitor transcript levels of the nine well-characterized alpha-subunit sodium channel genes across a broad range of tissues from cynomolgus monkey, a non-human primate model. Alternative splicing of human transcripts for a subset of the genes that are expressed in dorsal root ganglia, SCN8A (Na(v)1.6), SCN9A (Na(v)1.7), and SCN11A (Na(v)1.9) was characterized in detail. Genomic sequence analysis among gene family paralogs and between cross-species orthologs suggested specific alternative splicing events within transcripts of these genes, all of which were experimentally confirmed in human tissues. Quantitative PCR revealed that certain alternative splice events are uniquely expressed in dorsal root ganglia. In addition to characterization of human transcripts, alternatively spliced sodium channel transcripts were monitored in a rat model for neuropathic pain. Consistent down-regulation of all transcripts was observed, as well as significant changes in the splicing patterns of SCN8A and SCN9A."	"Floxed allele for conditional inactivation of the voltage-gated sodium channel Scn8a (NaV1.6). The sodium channel gene Scn8a encodes the channel NaV1.6, which is widely distributed in the central and peripheral nervous system. NaV1.6 is the major channel at the nodes of Ranvier in myelinated axons. Mutant alleles of mouse Scn8a result in neurological disorders including ataxia, tremor, paralysis, and dystonia. We generated a floxed allele of Scn8a by inserting loxP sites around the first coding exon. The initial targeted allele containing the neo-cassette was a severe hypomorph. In vivo deletion of the neo-cassette by Flp recombinase produced a floxed allele that generates normal expression of NaV1.6 protein. Ubiquitous deletion of the floxed exon by Cre recombinase in ZP3-Cre transgenic mice produced the Scn8a(del) allele. The null phenotype of Scn8a(del) homozygotes confirms the in vivo inactivation of Scn8a. Conditional inactivation of the floxed allele will make it possible to circumvent the lethality that results from complete loss of Scn8a in order to investigate the physiologic role of NaV1.6 in subpopulations of neurons."	"Fibroblast growth factor homologous factor 2B: association with Nav1.6 and selective colocalization at nodes of Ranvier of dorsal root axons. Voltage-gated sodium channels interact with cytosolic proteins that regulate channel trafficking and/or modulate the biophysical properties of the channels. Na(v)1.6 is heavily expressed at the nodes of Ranvier along adult CNS and PNS axons and along unmyelinated fibers in the PNS. In an initial yeast two-hybrid screen using the C terminus of Na(v)1.6 as a bait, we identified FHF2B, a member of the FGF homologous factor (FHF) subfamily, as an interacting partner of Na(v)1.6. Members of the FHF subfamily share approximately 70% sequence identity, and individual members demonstrate a cell- and tissue-specific expression pattern. FHF2 is abundantly expressed in the hippocampus and DRG neurons and colocalizes with Na(v)1.6 at mature nodes of Ranvier in myelinated sensory fibers in the dorsal root of the sciatic nerve. However, retinal ganglion cells and spinal ventral horn motor neurons show very low levels of FHF2 expression, and their axons exhibit no nodal FHF2 staining within the optic nerve and ventral root, respectively. Thus, FHF2 is selectively localized at nodes of dorsal root sensory but not ventral root motor axons. The coexpression of FHF2B and Na(v)1.6 in the DRG-derived cell line ND7/23 significantly increases the peak current amplitude and causes a 4 mV depolarizing shift of voltage-dependent inactivation of the channel. The preferential expression of FHF2B in sensory neurons may provide a basis for physiological differences in sodium currents that have been reported at the nodes of Ranvier in sensory versus motor axons."	"Is resurgent Na+ current an alpha-subunit-specific property? Maybe not. Focus on &quot;Sodium currents in subthalamic nucleus neurons from Nav1.6-null mice&quot;. NA"	"Three ENU-induced neurological mutations in the pore loop of sodium channel Scn8a (Na(v)1.6) and a genetically linked retinal mutation, rd13. The goal of The Jackson Laboratory Neuroscience Mutagenesis Facility is to generate mouse models of human neurological disease. We describe three new models obtained from a three-generation screen for recessive mutations. Homozygous mutant mice from lines nmf2 and nmf5 exhibit hind limb paralysis and juvenile lethality. Homozygous nmf58 mice exhibit a less severe movement disorder that includes sustained dystonic postures. The mutations were mapped to the distal region of mouse Chromosome (Chr) 15. Failure to complement a mutant allele of a positional candidate gene, Scn8a, demonstrated that the mutations are new alleles of Scn8a. Missense mutations of evolutionarily conserved residues of the sodium channel were identified in the three lines, with the predicted amino acid substitutions N1370T, I1392F, and L1404H. These residues are located within the pore loop of domain 3 of sodium channel Na(v)1.6. The lethal phenotypes suggest that the new alleles encode proteins with partial or complete loss of function. Several human disorders are caused by mutation in the pore loop of domain 3 of paralogous sodium channel genes. Line nmf5 contains a second, independent mutation in the rd13 locus that causes a reduction in cell number in the outer nuclear layer of the retina. rd13 was mapped to the distal 4 Mb of Chr 15. No coding or splice site mutations were detected in Pde1b, a candidate gene for rd13. The generation of three independent Scn8a mutations among 1100 tested G3 families demonstrates that the Scn8a locus is highly susceptible to ENU mutagenesis. The new alleles of Scn8a will be valuable for analysis of sodium channel physiology and disease."	"Molecular changes in neurons in multiple sclerosis: altered axonal expression of Nav1.2 and Nav1.6 sodium channels and Na+/Ca2+ exchanger. Although voltage-gated sodium channels are known to be deployed along experimentally demyelinated axons, the molecular identities of the sodium channels expressed along axons in human demyelinating diseases such as multiple sclerosis (MS) have not been determined. Here we demonstrate changes in the expression of sodium channels in demyelinated axons in MS, with Nav1.6 confined to nodes of Ranvier in controls but with diffuse distribution of Nav1.2 and Nav1.6 along extensive regions of demyelinated axons within acute MS plaques. Using triple-labeled fluorescent immunocytochemistry, we also show that Nav1.6, which is known to produce a persistent sodium current, and the Na+/Ca2+ exchanger, which can be driven by persistent sodium current to import damaging levels of calcium into axons, are colocalized with beta-amyloid precursor protein, a marker of axonal injury, in acute MS lesions. Our results demonstrate the molecular identities of the sodium channels expressed along demyelinated and degenerating axons in MS and suggest that coexpression of Nav1.6 and Na+/Ca2+ exchanger is associated with axonal degeneration in MS."	"Mice lacking sodium channel beta1 subunits display defects in neuronal excitability, sodium channel expression, and nodal architecture. Sodium channel beta1 subunits modulate alpha subunit gating and cell surface expression and participate in cell adhesive interactions in vitro. beta1-/- mice appear ataxic and display spontaneous generalized seizures. In the optic nerve, the fastest components of the compound action potential are slowed and the number of mature nodes of Ranvier is reduced, but Na(v)1.6, contactin, caspr 1, and K(v)1 channels are all localized normally at nodes. At the ultrastructural level, the paranodal septate-like junctions immediately adjacent to the node are missing in a subset of axons, suggesting that beta1 may participate in axo-glial communication at the periphery of the nodal gap. Sodium currents in dissociated hippocampal neurons are normal, but Na(v)1.1 expression is reduced and Na(v)1.3 expression is increased in a subset of pyramidal neurons in the CA2/CA3 region, suggesting a basis for the epileptic phenotype. Our results show that beta1 subunits play important roles in the regulation of sodium channel density and localization, are involved in axo-glial communication at nodes of Ranvier, and are required for normal action potential conduction and control of excitability in vivo."	"Sodium currents in subthalamic nucleus neurons from Nav1.6-null mice. In some central neurons, including cerebellar Purkinje neurons and subthalamic nucleus (STN) neurons, TTX-sensitive sodium channels show unusual gating behavior whereby some channels open transiently during recovery from inactivation. This &quot;resurgent&quot; sodium current is effectively activated immediately after action potential-like waveforms. Earlier work using Purkinje neurons suggested that the great majority of resurgent current originates from Na(v)1.6 sodium channels. Here we used a mouse mutant lacking Na(v)1.6 to explore the contribution of these channels to resurgent, transient, and persistent components of TTX-sensitive sodium current in STN neurons. The resurgent current of STN neurons from Na(v)1.6(-/-) mice was reduced by 63% relative to wild-type littermates, a less dramatic reduction than that observed in Purkinje neurons recorded under identical conditions. The transient and persistent currents of Na(v)1.6(-/-) STN neurons were reduced by approximately 40 and 55%, respectively. The resurgent current present in Na(v)1.6(-/-) null STN neurons was similar in voltage dependence to that in wild-type STN and Purkinje neurons, differing only in having somewhat slower decay kinetics. These results show that sodium channels other than Na(v)1.6 can make resurgent sodium current much like that from Na(v)1.6 channels."	"Paranodal axoglial junction is required for the maintenance of the Nav1.6-type sodium channel in the node of Ranvier in the optic nerves but not in peripheral nerve fibers in the sulfatide-deficient mice. In myelinated axons, voltage-gated sodium channels specifically cluster at the nodes of Ranvier, while voltage-gated potassium channels are located at the juxtaparanodes. These characteristic localizations are influenced by myelination. During development, Nav1.2 first appears in the predicted nodes during myelination, and Nav1.6 replaces it in the mature nodes. Such replacements may be important physiologically. We examined the influence of the paranodal junction on switching of sodium channel subunits using the sulfatide-deficient mouse. This mutant displayed disruption of paranodal axoglial junctions and altered nodal lengths and channel distributions. The initial switching of Nav1.2 to Nav1.6 occurred in the mutant optic nerves; however, the number of Nav1.2-positive clusters was significantly higher than in wild-type mice. Although no signs of demyelination were observed at least up to 36 weeks of age, sodium channel clusters decreased markedly with age. Interestingly, Nav1.2 stayed in some of the nodal regions, especially where the nodal lengths were elongated, while Nav1.6 tended to remain in the normal-length nodes. The results in the mutant optic nerves suggested that paranodal junction formation may be necessary for complete replacement of nodal Nav1.2 to Nav1.6 during development as well as maintenance of Nav1.6 clusters at the nodes. Such subtype abnormality was not observed in the sciatic nerve, where paranodal disruption was observed. Thus, the paranodal junction significantly influences the retention of Nav1.6 in the node, which is followed by disorganization of nodal structures. However, its importance may differ between the central and peripheral nervous system."	"Motor disturbances in mice with deficiency of the sodium channel gene Scn8a show features of human dystonia. The med(J) mouse with twisting movements related to deficiency of the sodium channel Scn8a has been proposed as a model of kinesiogenic dystonia. This prompted us to examine the phenotype of these mice in more detail. By cortical electroencephalographic (EEG) recordings, we could not detect any changes, demonstrating that the motor disturbances are not epileptic in nature, an important similarity to human dystonia. The significantly decreased body weight of med(J) mice was related to reduced food intake. Observations in the open field and by video recordings revealed that the mice exhibit sustained abnormal postures and movements of limbs, trunk and tail not only during locomotor activity but also at rest. With the exception of the head tremor, the other motor impairments were persistent rather than paroxysmal. When several neurological reflexes were tested, alterations were restricted to the posture and righting reflexes. Results of the wire hang test confirmed the greatly reduced muscle strength in the med(J) mouse. In agreement with different types of human dystonia, biperiden, haloperidol and diazepam moderately reduced the severity of motor disturbances in med(J) mice. In view of the sodium channel deficiency in med(J) mice, the beneficial effects of the sodium channel blocker phenytoin was an unexpected finding. By immunohistochemical examinations, the density of nigral dopaminergic neurons was found to be unaltered, substantiating the absence of pathomorphological abnormalities within the brain of med(J) mice shown by previous studies. With the exception of muscle weakness, many of the features of the med(J) mouse are similar to human idiopathic dystonia."	"Production of resurgent current in NaV1.6-null Purkinje neurons by slowing sodium channel inactivation with beta-pompilidotoxin. Voltage-gated tetrodotoxin-sensitive sodium channels of Purkinje neurons produce &quot;resurgent&quot; current with repolarization, which results from relief of an open-channel block that terminates current flow at positive potentials. The associated recovery of sodium channels from inactivation is thought to facilitate the rapid firing patterns characteristic of Purkinje neurons. Resurgent current appears to depend primarily on NaV1.6 alpha subunits, because it is greatly reduced in &quot;med&quot; mutant mice that lack NaV1.6. To identify factors that regulate the susceptibility of alpha subunits to open-channel block, we voltage clamped wild-type and med Purkinje neurons before and after slowing conventional inactivation with beta-pompilidotoxin (beta-PMTX). beta-PMTX increased resurgent current in wild-type neurons and induced resurgent current in med neurons. In med cells, the resurgent component of beta-PMTX-modified sodium currents could be selectively abolished by application of intracellular alkaline phosphatase, suggesting that, like in NaV1.6-expressing cells, the open-channel block of NaV1.1 and NaV1.2 subunits is regulated by constitutive phosphorylation. These results indicate that the endogenous blocker exists independently of NaV1.6 expression, and conventional inactivation regulates resurgent current by controlling the extent of open-channel block. In Purkinje cells, therefore, the relatively slow conventional inactivation kinetics of NaV1.6 appear well adapted to carry resurgent current. Nevertheless, NaV1.6 is not unique in its susceptibility to open-channel block, because under appropriate conditions, the non-NaV1.6 subunits can produce robust resurgent currents."	"Co-localization of sodium channel Nav1.6 and the sodium-calcium exchanger at sites of axonal injury in the spinal cord in EAE. Axonal degeneration contributes to the development of non-remitting neurological deficits and disability in multiple sclerosis, but the molecular mechanisms that underlie axonal loss in multiple sclerosis are not clearly understood. Studies of white matter axonal injury have demonstrated that voltage-gated sodium channels can provide a route for sodium influx into axons that triggers reverse operation of the Na(+)/Ca(2+) exchanger (NCX) and subsequent influx of damaging levels of intra-axonal calcium. The molecular identities of the involved sodium channels have, however, not been determined. We have previously demonstrated extensive regions of diffuse expression of Na(v)1.6 and Na(v)1.2 sodium channels along demyelinated axons in experimental allergic encephalomyelitis (EAE). Based on the hypothesis that the co-localization of Na(v)1.6 and NCX along extensive regions of demyelinated axons may predispose these axons to injury, we examined the expression of myelin basic protein, Na(v)1.2, Na(v)1.6, NCX and beta-amyloid precursor protein (beta-APP), a marker of axonal injury, in the spinal cord dorsal columns of mice with EAE. We demonstrate a significant increase in the number of demyelinated axons demonstrating diffuse Na(v)1.6 and Na(v)1.2 sodium channel immunoreactivity in EAE (92.2 +/- 2.1% of beta-APP positive axons were Na(v)1.6-positive). Only 38.0 +/- 2.9% of beta-APP positive axons were Na(v)1.2 positive, and 95% of these co-expressed Na(v)1.6 together with Na(v)1.2. Using triple-labelled fluorescent immunohistochemistry, we demonstrate that 73.5 +/- 4.3% of beta-APP positive axons co-express Na(v)1.6 and NCX, compared with 4.4 +/- 1.0% in beta-APP negative axons. Our results indicate that co-expression of Na(v)1.6 and NCX is associated with axonal injury in the spinal cord in EAE."	"Paranodal transverse bands are required for maintenance but not initiation of Nav1.6 sodium channel clustering in CNS optic nerve axons. The rapid, efficient, and faithful propagation of action potentials in myelinated nerve fibers depends on the appropriate complement and localization of ion channels. Recent work has suggested that specific voltage-dependent sodium (Nav) channel isoforms are differentially regulated both spatially and temporally in a myelin-dependent manner. Since the principal site of axoglial contact occurs at the paranode, we postulated that disrupted paranodal structure might result in altered nodal Nav channel isoform localization and clustering. We have used UDP-galactose/ceramide galactosyl transferase (CGT)-deficient mice, which form compact myelin and paranodal loops but lack the transverse bands normally found at the interface of the axon and overlying glial cell, to determine if this structure contributes to the signaling machinery responsible for clustering and localization of distinct Nav channel isoforms. We find that as in control animals, most mutant nodes of Ranvier had Nav1.6 in high-density clusters in the peripheral and central nervous systems; the localization of Nav1.2 and the protein levels of Nav1.2 and Nav1.6 were also normal in the CGT-deficient mouse. However, with increasing age, in the mutant mouse we observed a decrease in the total number of nodal Nav1.6 clusters, a decrease in the density of Nav1.6 channels at nodes, and an increase in the average size of the Nav1.6 clusters. Thus, transverse bands are not required for Nav1.6 clustering and localization at nodes or for exclusion of Nav1.2 from myelinated nerve fibers, but are required for the maintenance of nodal Nav1.6 cluster size and density."	"High-resolution mapping of the sodium channel modifier Scnm1 on mouse chromosome 3 and identification of a 1.3-kb recombination hot spot. Variation between inbred strains of mice can be used to identify modifier genes affecting the susceptibility to inherited disease. The medJ allele of the sodium channel Scn8a contains a splice site mutation that results in sodium channel deficiency. The severity of the neurological disorder is determined by the modifier locus Scnm1. The wild-type allele of the modifier results in correct splicing of 10% of Scn8amedJ pre-mRNA and a dystonic phenotype. The susceptible allele of the modifier in strain C57BL/6J results in 5% correctly spliced transcripts and a lethal phenotype. A mapping cross with C3H using 26 new markers and 2304 affected F2 animals localized the modifier gene to a 950-kb interval on mouse chromosome 3. Fine mapping of recombination breakpoints revealed a recombination hot spot of 1.3 kb. The ratio of genetic to physical distance in the hot spot is 85 cM/Mb, two orders of magnitude higher than the mouse genome average of 0.5 cM/Mb. The role of the modifier in other disorders in human and mouse can be tested with linked markers described here."	"Calmodulin binds to the C terminus of sodium channels Nav1.4 and Nav1.6 and differentially modulates their functional properties. Modulation of voltage-gated sodium channels (VGSC) can have a major impact on cell excitability. Analysis of calmodulin (CaM) binding to GST-fusion proteins containing the C-terminal domains of Nav1.1-Nav1.9 indicates that some of the tetrodotoxin-sensitive VGSC isoforms, including NaV1.4 and NaV1.6, are able to bind CaM in a calcium-independent manner. Here we demonstrate that association with CaM is important for functional expression of NaV1.4 and NaV1.6 VGSCs. Disrupting the interaction between CaM and the C terminus of NaV1.4 and NaV1.6 channels reduced current amplitude by 99 and 62%, respectively. Overexpression of CaM increased the current generated by Nav1.4 and Nav1.6 C-terminal mutant constructs that exhibited intermediate current densities and intermediate binding affinities for CaM, demonstrating that this effect on current density was directly dependent on the ability of the C terminus to bind CaM. In addition to the effects on current density, calmodulin also was able to modulate the inactivation kinetics of Nav1.6, but not Nav1.4, currents in a calcium-dependent manner. Our data demonstrate that CaM can regulate the properties of VGSCs via calcium-dependent and calcium-independent mechanisms and suggest that modulation of neuronal sodium channels may play a role in calcium-dependent neuronal plasticity."	"SCNM1, a putative RNA splicing factor that modifies disease severity in mice. The severity of many inherited disorders is influenced by genetic background. We describe a modifier interaction in C57BL/6Jmice that converts a chronic movement disorder into a lethal neurological disease. The primary mutation (medJ) changes a splice donor site of the sodium channel gene Scn8a (Nav1.6). The modifier mutation is characteristic of strain C57BL/6Jand introduces a nonsense codon into sodium channel modifier 1 (SCNM1), a zinc finger protein and a putative splice factor. An internally deleted SCNM1 protein is also predicted as a result of exon skipping associated with disruption of a consensus exonic splicing enhancer. The effect of the modifier mutation is to reduce the abundance of correctly spliced sodium channel transcripts below the threshold for survival. Our finding that genetic variation in a putative RNA splicing factor influences disease susceptibility in mice raises the possibility that a similar mechanism modifies the severity of human inherited disorders."	"Genetics. Modifying the message. NA"	"Paranodal interactions regulate expression of sodium channel subtypes and provide a diffusion barrier for the node of Ranvier. The node of Ranvier is a distinct domain of myelinated axons that is highly enriched in sodium channels and is critical for impulse propagation. During development, the channel subtypes expressed at the node undergo a transition from Nav1.2 to Nav1.6. Specialized junctions that form between the paranodal glial membranes and axon flank the nodes and are candidates to regulate their maturation and delineate their boundaries. To investigate these roles, we characterized node development in mice deficient in contactin-associated protein (Caspr), an integral junctional component. Paranodes in these mice lack transverse bands, a hallmark of the mature junction, and exhibit progressive disruption of axon-paranodal loop interactions in the CNS. Caspr mutant mice display significant abnormalities at central nodes; components of the nodes progressively disperse along axons, and many nodes fail to mature properly, persistently expressing Nav1.2 rather than Nav1.6. In contrast, PNS nodes are only modestly longer and, although maturation is delayed, eventually all express Nav1.6. Potassium channels are aberrantly clustered in the paranodes; these clusters are lost over time in the CNS, whereas they persist in the PNS. These findings indicate that interactions of the paranodal loops with the axon promote the transition in sodium channel subtypes at CNS nodes and provide a lateral diffusion barrier that, even in the absence of transverse bands, maintains a high concentration of components at the node and the integrity of voltage-gated channel domains."	"Distinct repriming and closed-state inactivation kinetics of Nav1.6 and Nav1.7 sodium channels in mouse spinal sensory neurons. While large, myelinated dorsal root ganglion (DRG) neurons are capable of firing at high frequencies, small unmyelinated DRG neurons typically display much lower maximum firing frequencies. However, the molecular basis for this difference has not been delineated. Because the sodium currents in large DRG neurons exhibit rapid repriming (recovery from inactivation) kinetics and the sodium currents in small DRG neurons exhibit predominantly slow repriming kinetics, it has been proposed that differences in sodium channels might contribute to the determination of repetitive firing properties in DRG neurons. A recent study demonstrated that Nav1.7 expression is negatively correlated with conduction velocity and DRG cell size, while the Nav1.6 voltage-gated sodium channel has been implicated as the predominant isoform present at nodes of Ranvier of myelinated fibres. Therefore we characterized and compared the functional properties, including repriming, of recombinant Nav1.6 and Nav1.7 channels expressed in mouse DRG neurons. Both Nav1.6 and Nav1.7 channels generated fast-activating and fast-inactivating currents. However recovery from inactivation was significantly faster (approximately 5-fold at -70 mV) for Nav1.6 currents than for Nav1.7 currents. The recovery from inactivation of Nav1.6 channels was also much faster than that of native tetrodotoxin-sensitive sodium currents recorded from small spinal sensory neurons, but similar to that of tetrodotoxin-sensitive sodium currents recorded from large spinal sensory neurons. Development of closed-state inactivation was also much faster for Nav1.6 currents than for Nav1.7 currents. Our results indicate that the firing properties of DRG neurons can be tuned by regulating expression of different sodium channel isoforms that have distinct repriming and closed-state inactivation kinetics."	"The contribution of resurgent sodium current to high-frequency firing in Purkinje neurons: an experimental and modeling study. Purkinje neurons generate high-frequency action potentials and express voltage-gated, tetrodotoxin-sensitive sodium channels with distinctive kinetics. Their sodium currents activate and inactivate during depolarization, as well as reactivate during repolarization from positive potentials, producing a &quot;resurgent&quot; current. This reopening of channels not only generates inward current after each action potential, but also permits rapid recovery from inactivation, leading to the hypothesis that resurgent current may facilitate high-frequency firing. Mutant med mice are ataxic and lack expression of the Scn8a gene, which encodes the NaV1.6 protein. In med Purkinje cells, transient sodium current inactivates more rapidly than in wild-type cells, and resurgent current is nearly abolished. To investigate how NaV1.6-specific kinetics influence firing patterns, we recorded action potentials of Purkinje neurons isolated from wild-type and med mice. We also recorded non-sodium currents from Purkinje cells of both genotypes to test whether the Scn8a mutation induced changes in other ion channels. Last, we modeled action potential firing by simulating eight currents directly recorded from Purkinje cells in both wild-type and med mice. Regular, high-frequency firing was slowed in med Purkinje neurons. In addition to disrupted sodium currents, med neurons had small but significant changes in potassium and leak currents. Simulations indicated that these modified non-sodium currents could not account for the reduced excitability of med cells but instead slightly facilitated spiking. The loss of NaV1.6-specific kinetics, however, slowed simulated spontaneous activity. Together, the data suggest that across a range of conditions, sodium currents with a resurgent component promote and accelerate firing."	"Molecular and pathological effects of a modifier gene on deficiency of the sodium channel Scn8a (Na(v)1.6). Scn8a encodes an abundant, widely distributed voltage-gated sodium channel found throughout the central and peripheral nervous systems. Mice with different mutant alleles of Scn8a provide models of the movement disorders ataxia, dystonia, tremor and progressive paralysis. We previously reported that the phenotype of the hypomorphic allele of Scn8a, medJ, is dependent upon an unlinked modifier locus, Scnm1. Strain C57BL/6J carries a sensitive allele of the modifier locus that results in juvenile lethality. We now provide evidence that the modifier acts on the splicing efficiency of the mutant splice donor site. Mutant mice display either 90% or 95% reduction in the proportion of correctly spliced mRNA, depending on modifier genotype. The abundance of the channel protein, Na(v)1.6, is also reduced by an order of magnitude in medJ mice, resulting in delayed maturation of nodes of Ranvier, slowed nerve conduction velocity, reduced muscle mass and reduction of brain metabolic activity. medJ mice provide a model for the physiological effects of sodium channel deficiency and the molecular mechanism of bigenic disease."	"Behavioral audiograms of homozygous med(J) mutant mice with sodium channel deficiency and unaffected controls. Complete behavioral audiograms were determined for med(J) mice (F1 offspring of C57BL/6JxC3HeB/FeJ) and unaffected controls from the same F1 background. The med(J) mutation results in greatly reduced levels of Scn8a voltage-gated sodium channels, which causes abnormal conduction of action potentials throughout the nervous system and may account for the virtual absence of spontaneous bursting activity in the dorsal cochlear nucleus. The med(J) mice also have tremors, display dystonic postures, and drag their hind legs. The mice were tested using a conditioned suppression/avoidance procedure, with minor modifications of the apparatus made to accommodate the motor-impaired med(J) mice. Thresholds were repeatedly obtained up to the age of 50 weeks to determine if the animals developed a hearing loss with age. The results indicate that med(J) mice have normal thresholds, with the first signs of hearing loss (detectable at 80 kHz) appearing for both the med(J) and normal mice by 48 weeks. Neither the med(J) nor the normal mice could hear below 1 kHz, indicating that house mice fall into the group of mammals with poor low-frequency hearing. The results also demonstrate that the conditioned suppression/avoidance procedure is well suited for assessing hearing in severely impaired, as well as normal, mice and that it can provide for the rapid determination of thresholds necessary to follow changes in hearing that may occur as the result of age, disease, mutation, or drugs."	"Mutations of voltage-gated sodium channels in movement disorders and epilepsy. Spontaneous and induced mutations of neuronal Na+ channels in human patients and mutant mice result in a broad range of neurological-disease. Epilepsy, a disorder of neuronal hyperexcitability, has been associated with delayed inactivation of SCN2A in mice, and with altered kinetics of SCN1A in human patients. Movement disorders including tremor, ataxia, dystonia and paralysis have been observed in mice with mutations of SCN8A. Electrophysiological recordings from neurons isolated from mice with mutations in individual channels reveal the contributions of each channel to in vivo firing patterns. In addition to monogenic disease, Na+ channel mutations are likely to contribute to polygenic disease susceptibility and to normal variation in neuronal function. Advances in molecular methods coupled with genomic sequences from the Human Genome Project will permit identification of many new patient mutations and generation of animal models to dissect their physiological and cellular consequences."	"Pathological and genetic analysis of the degenerating muscle (dmu) mouse: a new allele of Scn8a. Here, we describe a novel spontaneous autosomal recessive mutation in the mouse that is characterized by skeletal and cardiac muscle degeneration. We have named this mutant degenerating muscle (dmu). At birth, mutant mice are indistinguishable from their normal littermates. Thereafter, the disease progresses rapidly and a phenotype is first observed at approximately 11 days after birth; the dmu mice are weak and have great difficulty in moving. The principal cause of the lack of mobility is muscle atrophy and wasting in the hindquarters. Affected mice die at or around the time of weaning of unknown causes. Histopathological observations and ultrastructural analysis revealed muscle degeneration in both skeletal and cardiac muscle, but no abnormalities in sciatic nerves. Using linkage analysis, we have mapped the dmu locus to the distal portion of mouse chromosome 15 in a region syntenic to human chromosome 12q13. Interestingly, scapuloperoneal muscular dystrophy (SPMD) in humans has been linked to this region. SPMD patients with associated cardiomyopathy have also been described in the past. Initial analysis of candidate genes on mouse chromosome 15 reveal that although intact transcripts for Scn8a, the gene encoding the sodium channel 8a subunit, are present in dmu mice, their levels are dramatically reduced. Furthermore, genetic complementation crosses between dmu and med (mutation in Scn8a) mice revealed that they are allelic. Our results suggest that at least a portion of the dmu phenotype is caused by a down-regulation of Scn8a, making dmu a new allele of Scn8a."	"Sodium channels and neurological disease: insights from Scn8a mutations in the mouse. The human genome contains 10 voltage-gated sodium channel genes, 7 of which are expressed in neurons of the CNS and PNS. The availability of human genome sequences and high-throughput mutation screening methods make it likely that many human disease mutations will be identified in these genes in the near future. Mutations of Scn8a in the mouse demonstrate the broad spectrum of neurological disease that can result from different alleles of the same sodium channel gene. Null mutations of Scn8a produce motor neuron failure, loss of neuromuscular transmission, and lethal paralysis. Less severe mutations result in ataxia, tremor, muscle weakness, and dystonia. The effects of Scn8a mutations on channel properties have been studied in the Xenopus oocyte expression system and in neurons isolated from the mutant mice. The Scn8a mutations provide insight into the mode of inheritance, effect on neuronal sodium currents, and role of modifier genes in sodium channel disease, highlighting the ways in which mouse models of human mutations can be used in the future to understand the pathophysiology of human disease."	"The spastic paraplegia SPG10 locus: narrowing of critical region and exclusion of sodium channel gene SCN8A as a candidate. NA"	"Differential distribution of the tetrodotoxin-sensitive rPN4/NaCh6/Scn8a sodium channel in the nervous system. Voltage-gated sodium channels underlie the generation of action potentials in excitable cells. Various sodium channel isoforms have been cloned, functionally expressed and distinguished on the basis of their biophysical properties or differential sensitivity to tetrodotoxin (TTX). In the present study, we have investigated the immunolocalization of the TTX-sensitive sodium channel, rPN4/NaCh6/Scn8a, in discrete areas of the rat nervous system. Thus, in naïve animals, PN4 was abundantly expressed in brain, spinal cord, dorsal root ganglia (DRG) and peripheral nerve. The presence of PN4 at the nodes of Ranvier in the sciatic nerve suggests the importance of this sodium channel in peripheral nerve conduction. In addition, the pattern of PN4 immunolabeling was determined in DRG, spinal cord and sciatic nerve in rats subjected to chronic constriction nerve injury (CCI)."	"The absence of resurgent sodium current in mouse spinal neurons. The Scn8a gene encodes a neuronal, voltage-gated sodium channel, which is highly expressed in both cerebellar Purkinje neurons and spinal motoneurons [D.L. Burgess, D.C. Kohrman, J. Galt, N.W. Plummer, J.M. Jones, B. Spear, M.H. Meisler, Mutation of a new sodium channel gene, Scn8a, in the mouse mutant 'motor endplate disease', Nature Genetics 10 (1995) 461-465; K.L. Schaller, D.M. Krzemien, P.J. Yarowsky, B.K. Krueger, J.H. Caldwell, A novel, abundant sodium channel expressed in neurons and glia, J. Neurosci. 15 (1995) 3231-3242]. Sodium channels in Purkinje cells produce an unusual, &quot;resurgent&quot; current when the cells are repolarized to intermediate potentials (-60 to -20 mV) following a strong depolarization that completely inactivates transient sodium current [I.M. Raman, L.K. Sprunger, M.H. Meisler, B.P. Bean, Altered subthreshold sodium currents and disrupted firing patterns in Purkinje neurons of Scn8a mutant mice, Neuron 19 (1997) 881-891; I.M. Raman, B.P. Bean, Resurgent sodium current and action potential formation in dissociated cerebellar Purkinje neurons, J. Neurosci. 17 (1997) 4517-4526]. Here, we have examined whether large spinal neurons (predominantly motoneurons), isolated from P6-P8 mice and cultured overnight, produce sodium currents resembling those either of Purkinje cells or of Xenopus oocytes after heterologous expression of Scn8a. We found that P10-P14 Purkinje cells exhibited resurgent current (ranging from -3.6 to -15.4 pA/pF in 16 cells at -40 mV), but cultured spinal neurons had little or no such current (&lt;0.5 pA/pF in 13 of 16 cells; -1.2 to -2.3 pA/pF in three of 16 cells). Furthermore, unlike Scn8a channels heterologously expressed in Xenopus oocytes [M.R. Smith, R.D. Smith, N.W. Plummer, M.H. Meisler, A.L. Goldin, Functional analysis of the mouse Scn8a sodium channel. J. Neurosci. 18 (1998) 6093-6102], there was not a prominent component of persistent sodium current in either Purkinje neurons or large spinal neurons. Based on analysis of cells from mice with a Scn8a null mutation, Scn8a channels appear to contribute significantly to total sodium current in both in P10-P14 Purkinje cells (approximately 40%; [21]) and cultured P7-P8 spinal motoneurons (approximately 70% [K.D. García, L.K. Sprunger, M.H. Meisler, K.G. Beam, The sodium channel Scn8a is the major contributor to the postnatal developmental increase of sodium current density in spinal motoneurons, J. Neurosci. 18 (1998) 5234-5239]). Thus, the presence or absence of resurgent current, and of persistent sodium current, appears to depend on cellular factors other than the mere presence of the Scn8a transcript."	"Reduced spontaneous activity in the dorsal cochlear nucleus of Scn8a mutant mice. Spontaneous activity was recorded in the dorsal cochlear nucleus of brain slices from mice homozygous for the med-J and jolting mutations in the neuronal sodium channel alpha-subunit Scn8a. Densities of spontaneously active neurons in slices from both mutants were significantly lower than in control slices. Spontaneous firing patterns with bursts of action potentials were recorded from approximately 50% of the neurons in control slices, but the typical bursting patterns were not observed in neurons of med-J and jolting mouse slices. The results suggest that this voltage-gated sodium channel is essential for the spontaneous bursting firing of cochlear nucleus cartwheel neurons. This mutant animal model may be useful for the study of the functional roles of cochlear nucleus neurons."	"A mutation that causes ataxia shifts the voltage-dependence of the Scn8a sodium channel. A mutation of alanine to threonine in the III S4-S5 linker of the mouse Scn8a sodium channel has previously been identified as causing the ataxia in med(jo) mice. The electrophysiological effects of this mutation in Scn8a sodium channels were characterized in Xenopus oocytes. The med(jo) mutation caused a 10 mV positive shift in the voltage dependence of activation, without any significant changes in the kinetics of either inactivation or recovery from inactivation. The shift in the voltage dependence of activation observed for the mutant channel would reduce the spontaneous activity of Purkinje cells and lead to a decrease in output from the cerebellum, which is consistent with the phenotype of cerebellar ataxia observed in med(jo) mice."	"Shear stress-mediated extracellular signal-regulated kinase activation is regulated by sodium in endothelial cells. Potential role for a voltage-dependent sodium channel. Fluid shear stress is an important regulator of endothelial cell (EC) function. To determine whether mechanosensitive ion channels participate in the EC response to shear stress, we characterized the role of ion transport in shear stress-mediated extracellular signal-regulated kinase (ERK1/2) stimulation. Replacement of all extracellular Na+ with either N-methyl-D-glucamine or choline chloride increased the ERK1/2 stimulation in response to shear stress by 1.89 +/- 0.1-fold. The Na+ effect was concentration-dependent (maximal effect, &lt;/=12.5 mM) and was specific for shear stress-mediated ERK1/2 activation as epidermal growth factor-stimulated ERK1/2 activation was unaffected by removal of extracellular Na+. Shear stress-mediated ERK1/2 activation was potentiated by the voltage-gated sodium channel antagonist, tetrodotoxin (100 nM), to a magnitude similar to that achieved with extracellular Na+ withdrawal. Transfection of Chinese hamster ovary cells with a rat brain type IIa voltage-gated sodium channel completely inhibited shear stress-mediated ERK1/2 activation in these cells. Inhibition was reversed by performing the experiment in sodium-free buffer or by including tetrodotoxin in the buffer. Western blotting of bovine and human EC lysates with SP19 antibody detected a 250-kDa protein consistent with the voltage-gated sodium channel. Degenerate polymerase chain reaction of cDNA from primary human EC yielded transcripts whose sequences were identical to the sodium channel SCN4a and SCN8a alpha subunit genes. These results indicate that shear stress-mediated ERK1/2 activation is regulated by extracellular sodium and demonstrate that ion transport via Na+ channels modulates EC responses to shear stress."	"Dystonia associated with mutation of the neuronal sodium channel Scn8a and identification of the modifier locus Scnm1 on mouse chromosome 3. The mouse mutant medJ contains a splice site mutation in the neuronal sodium channel Scn8a that results in a very low level of expression. On a C57BL/6J genetic background, medJ homozygotes exhibit progressive paralysis and juvenile lethality. The C3H genetic background has an ameliorating effect, producing viable adults with a novel dystonic phenotype. The dystonic mice exhibit movement-induced, sustained abnormal postures of the trunk and limbs. A dominant modifier locus responsible for the difference between strains was mapped to a 4.5 +/- 1.3 cM interval on mouse chromosome 3. Our findings establish a role for ion channels in dystonia and demonstrate the impact of genetic background on its severity and progression. This new model suggests that SCN8A on chromosome 12q13 and SCNM1 on chromosome 1p21-1q21 may contribute to human inherited dystonia."	"Exon organization, coding sequence, physical mapping, and polymorphic intragenic markers for the human neuronal sodium channel gene SCN8A. The voltage-gated sodium channel SCN8A is associated with inherited neurological disorders in the mouse that include ataxia, dystonia, severe muscle weakness, and paralysis. We report the complete coding sequence and exon organization of the human SCN8A gene. The predicted 1980 amino acid residues are distributed among 28 exons, including two pairs of alternatively spliced exons. The SCN8A protein is evolutionarily conserved, with 98.5% amino acid sequence identity between human and mouse. Consensus sites for phosphorylation of serine/threonine and tyrosine residues are present in cyoplasmic loop domains. The polymorphic (CA)n microsatellite marker D12S2211, with PIC = 0.68, was isolated from intron 10C of SCN8A. Single nucleotide polymorphisms in intron 19 and exon 22 were also identified. We localized SCN8A to chromosome band 12q13.1 by physical mapping on a YAC contig. The cDNA clone CSC-1 was reported by others to be a cardiac-specific sodium channel, but sequence comparison demonstrates that it is derived from exon 24 of human SCN8A. The genetic information described here will be useful in evaluating SCN8A as a candidate gene for human neurological disease."	"Functional analysis of the mouse Scn8a sodium channel. The mouse Scn8a sodium channel and its ortholog Na6 in the rat are abundantly expressed in the CNS. Mutations in mouse Scn8a result in neurological disorders, including paralysis, ataxia, and dystonia. In addition, Scn8a has been observed to mediate unique persistent and resurgent currents in cerebellar Purkinje cells (Raman et al., 1997). To examine the functional characteristics of this channel, we constructed a full-length cDNA clone encoding the mouse Scn8a sodium channel and expressed it in Xenopus oocytes. The electrophysiological properties of the Scn8a channels were compared with those of the Rat1 and Rat2 sodium channels. Scn8a channels were sensitive to tetrodotoxin at a level comparable to that of Rat1 or Rat2. Scn8a channels inactivated more rapidly and showed differences in their voltage-dependent properties compared with Rat1 and Rat2 when only the alpha subunits were expressed. Coexpression of the beta1 and beta2 subunits modulated the properties of Scn8a channels, but to a lesser extent than for the Rat1 or Rat2 channels. Therefore, all three channels showed similar voltage dependence and inactivation kinetics in the presence of the beta subunits. Scn8a channels coexpressed with the beta subunits exhibited a persistent current that became larger with increasing depolarization, which was not observed for either Rat1 or Rat2 channels. The unique persistent current observed for Scn8a channels is consistent with the hypothesis that this channel is responsible for distinct sodium conductances underlying repetitive firing of action potentials in Purkinje neurons."	"The sodium channel Scn8a is the major contributor to the postnatal developmental increase of sodium current density in spinal motoneurons. Sodium currents were recorded from motoneurons that were isolated from mice at postnatal days 0-8 (P0-P8) and maintained in culture for 12-24 hr. Motoneurons from normal mice exhibited a more than threefold increase in peak sodium current density from P0 to P8. For mice lacking a functional Scn8a sodium channel gene, motoneuronal sodium current density was comparable at P0 to that of normal mice but failed to increase from P0 to P8. The absence of Scn8a sodium channels is associated with the phenotype &quot;motor end plate disease,&quot; which is characterized by a progressive neuromuscular failure and is fatal by 3-4 postnatal weeks. Thus, it appears that the development and function of mature motoneurons depends on the postnatal induction of Scn8a expression."	"Functional analysis of a voltage-gated sodium channel and its splice variant from rat dorsal root ganglia. Neurons of the dorsal root ganglia (DRG) express a diversity of voltage-gated sodium channels. From rat DRG we have cloned and functionally expressed a tetrodotoxin-sensitive sodium channel alpha subunit, NaCh6/Scn8a/rPN4, and a splice variant, rPN4a. Primary structure analysis shows NaCh6/Scn8a/rPN4 to be highly homologous (99%) to NaCh6 and most likely represents the same transcript. The splice variation in rPN4a is homologous in sequence and location to that of rat brain I. Tissue distribution analyzed by RT-PCR showed NaCh6/Scn8a/rPN4 to be expressed at its highest levels in rat brain, at moderate levels in spinal cord, and at lower levels in DRG, nodose ganglia, and superior cervical ganglia and to be absent from sciatic nerve, heart, and skeletal muscle. In contrast, rPN4a shows no expression in brain and low-level expression in spinal cord, whereas in DRG its expression is comparable to that of NaCh6/Scn8a/rPN4. Functional analysis of these channels expressed in Xenopus oocytes showed that NaCh6/Scn8a/rPN4 and rPN4a exhibited similar properties, with V(1/2) approximately -100 mV for steady-state inactivation and V(1/2) approximately -40 mV for activation. rPN4a recovered from inactivation significantly faster than NaCh6/Scn8a/rPN4. NaCh6/Scn8a/rPN4 was inhibited by tetrodotoxin with an IC50 approximately 1 nM. Coexpression of the beta1 subunit accelerated inactivation kinetics, but the beta2 subunit was without effect."	"Ion channel mutations in mouse models of inherited neurological disease. Analysis of the molecular defects in mouse mutants can identify candidate genes for human neurological disorders. During the past 2 years, mutations in sodium channels, calcium channels and potassium channels have been identified by positional cloning of the spontaneous mouse mutants motor endplate disease, tottering, lethargic and weaver. The phenotypes of four allelic mutations identified in the sodium channel gene Scn8a range from ataxia and muscle weakness through severe dystonia and progressive paralysis, indicating that human mutations in this gene could be associated with a variety of clinical syndromes. Mutations of the calcium channel subunits beta 4 in the lethargic mouse and alpha 1A in the tottering mouse have specific effects on cerebellar function. Targeted mutation of ligand-gated ion channels has also been used to generate new models of neurological disease. We will review these recent achievements and their implications for human neurological disease. The mouse studies indicate that mutations in ion channel genes are likely to be responsible for a broad spectrum of clinical phenotypes in human neurological disorders."	"Altered subthreshold sodium currents and disrupted firing patterns in Purkinje neurons of Scn8a mutant mice. Sodium currents and action potentials were characterized in Purkinje neurons from ataxic mice lacking expression of the sodium channel Scn8a. Peak transient sodium current was approximately 60% of that in normal mice, but subthreshold sodium current was affected much more. Steady-state current elicited by voltage ramps was reduced to approximately 30%, and resurgent sodium current, an unusual transient current elicited on repolarization following strong depolarizations, was reduced to 8%-18%. In jolting mice, with a missense mutation in Scn8a, steady-state and resurgent current were also reduced, with altered voltage dependence and kinetics. Both spontaneous firing and evoked bursts of spikes were diminished in cells from null and jolting mice. Evidently Scn8a channels carry most subthreshold sodium current and are crucial for repetitive firing."	"Alternative splicing of the sodium channel SCN8A predicts a truncated two-domain protein in fetal brain and non-neuronal cells. The voltage-gated sodium channel alpha subunit SCN8A is one of the most abundant sodium channels in neurons from brain and spinal cord. We have identified two alternatively spliced exons, 18N and 18A, that encode transmembrane segments S3 and S4 in domain III. Exon 18N is expressed in fetal brain and non-neuronal tissues. Transcripts with exon 18N have a conserved in-frame stop codon that predicts the synthesis of a truncated, two-domain protein similar to the fetal form of the muscle calcium channel. The proportion of transcripts containing exon 18N is highest in mouse fetal brain between E12.5 and P1.5; at later ages transcripts containing exon 18A predominate. This developmental program is recapitulated in P19 cells during retinoic acid-induced neuronal differentiation. Non-neuronal tissues contain a low level of SCN8A transcripts containing exon 18N. SCN8A thus provides a new model of differentiation specific splicing. Genomic analysis of SCN8A from human, mouse, and fish demonstrated a conserved structure in which exon 18N is located 300-500 bp upstream of exon 18A. Duplication of exon 18 thus preceded the divergence of fish and mammals. The genomic organization, developmental regulation, and coding content of exons 18N and 18A closely resemble the previously described alternate exons 5N and 5A of the neuronal sodium channel genes. Our proposal that the evolutionary origin of exons 18N and 18A was by duplication of exons 5N and 5A is consistent with other evidence that the four-domain cation channels arose by two rounds of duplication from a single-domain ancestral channel."	"Molecular characterization of the sodium channel subunits expressed in mammalian cerebellar Purkinje cells. Inactivating and noninactivating Na+ conductances are known to generate, respectively, the rising phase and the prolonged plateau phase of cerebellar Purkinje cell (PC) action potentials. These conductances have different voltage activation levels, suggesting the possibility that two distinct types of ion channels are involved. Single Purkinje cell reverse transcription-PCR from guinea pig cerebellar slices identified two Na+ channel alpha subunit transcripts, the orthologs of RBI (rat brain I) and Nach6/Scn8a. The latter we shall name CerIII. In situ hybridization histochemistry in rat brain demonstrated broad CerIII expression at high levels in many neuronal groups in the brain and spinal cord, with little if any expression in white matter, or nerve tracts. RBII (rat brain II), the most commonly studied recombinant Na+ channel alpha subunit is not expressed in PCs. As the absence of Scn8a has been correlated with motor endplate disease (med), in which transient sodium currents are spared, RBI appears to be responsible for the transient sodium current in PC. Conversely, jolting mice with a mutated Scn8a message demonstrates PC abnormalities in rapid, simple spike generation, linking CerIII to the persistent sodium current."	"Isolation, characterization and inactivation of the mouse Mgat3 gene: the bisecting N-acetylglucosamine in asparagine-linked oligosaccharides appears dispensable for viability and reproduction. The biosynthesis of complex asparagine (N)-linked oligosaccharides in vertebrates proceeds with the linkage of N-acetylglucosamine (GlcNAc) to the core mannose residues. UDP-N-acetylglucosamine:beta-D-mannoside beta 1-4 N-acetylglucosaminyltransferase III (GlcNAc-TIII, EC2.4.1.144) catalyzes the addition of GlcNAc to the mannose that is itself beta 1-4 linked to underlying N-acetylglucosamine. GlcNAc-TIII thereby produces what is known as a 'bisecting' GlcNAc linkage which is found on various hybrid and complex N-glycans. GlcNAc-TIII can also play a regulatory role in N-glycan biosynthesis as addition of the bisecting GlcNAc eliminates the potential for alpha-mannosidase-II, GlcNAc-TII, GlcNAc-TIV, GlcNAc-TV, and core alpha 1-6-fucosyltransferase to act subsequently. To investigate the physiologic relevance of GlcNAc-TIII function and bisected N-glycans, the mouse gene encoding GlcNAc-TIII (Mgat3) was cloned, characterized, and inactivated using Cre/loxP site-directed recombination. The Mgat3 gene is highly conserved in comparison to the rat and human homologs and is normally expressed at high levels in mammalian brain and kidney tissues. Using fluorescence in situ hybridization (FISH), the Mgat3 gene was regionally mapped to chromosome 15E11, near the Scn8a sodium channel gene at 15F1. Following homologous recombination in embryonic stem cells and Cre mediated gene deletion, Mgat3-deficient mice were produced that lacked GlcNAc-TIII activity and were deficient in E4-PHA visualized GlcNAc-bisected N-linked oligosaccharides. Nevertheless, GlcNAc-TIII deficient mice were found to be viable and reproduced normally. Moreover, such mice exhibited normal cellularity and morphology among organs including brain and kidney. No alterations were apparent in circulating leukocytes, erythrocytes or in serum metabolite levels that reflect kidney function. We thus find that GlcNAc-TIII and the bisecting GlcNAc in N-glycans appear dispensable for normal development, homeostasis and reproduction in the mouse."	"Linkage of the gene for the triple A syndrome to chromosome 12q13 near the type II keratin gene cluster. The triple A or Allgrove's syndrome (MIM*231550) is an autosomal recessive disease characterized by the triad of adrenocorticotropic hormone (ACTH) resistant adrenal insufficiency, achalasia and alacrima. Since its first description by Allgrove et al. (1978) more than 70 cases from all over the world have been reported. The syndrome manifests itself during the first decade of life with severe hypoglycaemic episodes which can cause sudden death. The frequent association with neurological disorders presenting as a mixed pattern of upper and lower motor neuropathy, sensory impairment, autonomic neuropathy and mental retardation may result in a severely disabling disease. As an additional feature some patients have hyperkeratosis of their palms and soles. We have performed a systematic genome linkage scan in eight triple A families of which three were consanguineous [including the large highly inbred kindred described by Moore et al. (1991)]. We obtained conclusive evidence for linkage of the triple A syndrome locus to markers on chromosome 12q13 (D12S368, theta max = 0, Zmax = 10.81) with no indication of genetic heterogeneity. Haplotype and multipoint analyses suggest that the gene is located on a chromosomal segment flanked by the markers D12S1629 and D12S312 which are 6 cM apart. This region harbors the type II keratin gene cluster, and potential candidate genes include SCN8A and HOXC genes."	"A missense mutation in the sodium channel Scn8a is responsible for cerebellar ataxia in the mouse mutant jolting. The voltage-gated sodium channel Scn8a is broadly distributed in brain and spinal cord. We have identified a missense mutation in Scn8a that is associated with cerebellar ataxia in the jolting mutant, a mild allele of the &quot;motor endplate disease&quot; locus. The jolting mutation results in substitution of Thr for an evolutionarily conserved Ala residue in the cytoplasmic S4-S5 linker of domain III. Introduction of the corresponding mutation into the rat brain IIA sodium channel shifted the voltage dependence of activation by 14 mV in the depolarizing direction, without affecting the kinetics of fast inactivation or recovery from inactivation. A shift in the threshold of the Scn8a channel could account for the reduced spontaneous activity of Purkinje cells, reduced inhibitory output from the cerebellum, and loss of motor control observed in jolting mice."	"Mutation detection in the med and medJ alleles of the sodium channel Scn8a. Unusual splicing due to a minor class AT-AC intron. Analysis of a transgene-induced mutation at the mouse med locus led to the identification of the novel voltage-gated sodium channel gene Scn8a (Burgess, D. L., Kohrman, D. C., Galt, J., Plummer, N. W., Jones, J. M., Spear, B., and Meisler, M. H.(1995) Nat. Genet. 10, 461-465). We now report the identification of splicing defects in two spontaneous mutations of Scn8a. The original med mutation was caused by insertion of a truncated LINE element into exon 2 of Scn8a. The med transcript is spliced from exon 1 to a cryptic acceptor site in intron 2. A 4-base pair deletion within the 5' donor site of exon 3 in the medJ allele results in splicing from exon 1 to exon 4. Both mutant transcripts have altered reading frames with premature stop codons close to the N terminus of the protein. Loss of Scn8a expression results in progressive paralysis and early death. Intron 2 of Scn8a is flanked by minor class AT-AC splice sites. The observed splicing patterns of the med and medJ mutant transcripts provide the first evidence for preferential in vivo splicing between donor and acceptor sites of the same class. The apparent functional incompatibility may be a consequence of the different composition of spliceosomes bound to major and minor splice sites."	"The neuronal voltage-gated sodium channel, Scn8a, is essential for postnatal maturation of spinal, but not oculomotor, motor units. Mice with a nontargeted transgene insertion at the motor endplate disease (med) locus (med(tg)) contain a deletion of a novel gene encoding a neuronal voltage-gated sodium channel, designated Scn8a. We characterized severe skeletal muscle atrophy beginning by Postnatal Day 10 (P10) and death by P20 in the med(tg) mouse. Denervation was functional, rather than structural, since the Scn8a mutation was not accompanied by retraction of neuromuscular contacts, motoneuron death, or decreased motoneuron soma diameter. Although pathology consistent with denervation was seen in both hindlimb and forelimb musculature, the postnatal maturation of the extraocular muscles was not altered. The onset of paralysis is likely coincident with the time that the Scn8a sodium channel normally assumes a critical role in the initiation and/or propagation of action potentials in spinal motoneurons. By contrast, the lack of consequences for extraocular muscle suggests that the Scn8a voltage-gated sodium channel may be of relatively minor importance for oculomotor motoneurons."	"Mutation of a new sodium channel gene, Scn8a, in the mouse mutant 'motor endplate disease'. The mouse neurological mutant 'motor endplate disease' (med) is characterized by early onset progressive paralysis of the hind limbs, severe muscle atrophy, degeneration of Purkinje cells and juvenile lethality. We have isolated a voltage-gated sodium channel gene, Scn8a, from the flanking region of a transgene-induced allele of med. Scn8a is expressed in brain and spinal cord but not in skeletal muscle or heart, and encodes a predicted protein of 1,732 amino acids. An intragenic deletion at the transgene insertion site results in loss of expression. Scn8a is closely related to other sodium channel alpha subunits, with greatest similarity to a brain transcript from the pufferfish Fugu rubripes. The human homologue, SCN8A, maps to chromosome 12q13 and is a candidate gene for inherited neurodegenerative disease."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SHANK2"	"complex neurodevelopmental disorder"	"SHANK2 is a frequently amplified oncogene with evolutionarily conserved roles in regulating Hippo signaling. Dysfunction of the Hippo pathway enables cells to evade contact inhibition and provides advantages for cancerous overgrowth. However, for a significant portion of human cancer, how Hippo signaling is perturbed remains unknown. To answer this question, we performed a genome-wide screening for genes that affect the Hippo pathway in Drosophila and cross-referenced the hit genes with human cancer genome. In our screen, Prosap was identified as a novel regulator of the Hippo pathway that potently affects tissue growth. Interestingly, a mammalian homolog of Prosap, SHANK2, is the most frequently amplified gene on 11q13, a major tumor amplicon in human cancer. Gene amplification profile in this 11q13 amplicon clearly indicates selective pressure for SHANK2 amplification. More importantly, across the human cancer genome, SHANK2 is the most frequently amplified gene that is not located within the Myc amplicon. Further studies in multiple human cell lines confirmed that SHANK2 overexpression causes deregulation of Hippo signaling through competitive binding for a LATS1 activator, and as a potential oncogene, SHANK2 promotes cellular transformation and tumor formation in vivo. In cancer cell lines with deregulated Hippo pathway, depletion of SHANK2 restores Hippo signaling and ceases cellular proliferation. Taken together, these results suggest that SHANK2 is an evolutionarily conserved Hippo pathway regulator, commonly amplified in human cancer and potently promotes cancer. Our study for the first time illustrated oncogenic function of SHANK2, one of the most frequently amplified gene in human cancer. Furthermore, given that in normal adult tissues, SHANK2's expression is largely restricted to the nervous system, SHANK2 may represent an interesting target for anticancer therapy."	"Distinct Mechanisms of Over-Representation of Landmarks and Rewards in the Hippocampus. In the hippocampus, locations associated with salient features are represented by a disproportionately large number of neurons, but the cellular and molecular mechanisms underlying this over-representation remain elusive. Using longitudinal calcium imaging in mice learning to navigate in virtual reality, we find that the over-representation of reward and landmark locations are mediated by persistent and separable subsets of neurons, with distinct time courses of emergence and differing underlying molecular mechanisms. Strikingly, we find that in mice lacking Shank2, an autism spectrum disorder (ASD)-linked gene encoding an excitatory postsynaptic scaffold protein, the learning-induced over-representation of landmarks was absent whereas the over-representation of rewards was substantially increased, as was goal-directed behavior. These findings demonstrate that multiple hippocampal coding processes for unique types of salient features are distinguished by a Shank2-dependent mechanism and suggest that abnormally distorted hippocampal salience mapping may underlie cognitive and behavioral abnormalities in a subset of ASDs."	"meQTL and ncRNA functional analyses of 102 GWAS-SNPs associated with depression implicate HACE1 and SHANK2 genes. Little is known about how genetics and epigenetics interplay in depression. Evidence suggests that genetic variants may change vulnerability to depression by modulating DNA methylation (DNAm) and non-coding RNA (ncRNA) levels. Therefore, the aim of the study was to investigate the effect of the genetic variation, previously identified in the largest genome-wide association study for depression, on proximal DNAm and ncRNA levels. We performed DNAm quantitative trait locus (meQTL) analysis in two independent cohorts (total n = 435 healthy individuals), testing associations between 102 single-nucleotide polymorphisms (SNPs) and DNAm levels in whole blood. We identified and replicated 64 SNP-CpG pairs (padj. &lt; 0.05) with meQTL effect. Lower DNAm at cg02098413 located in the HACE1 promoter conferred by the risk allele (C allele) at rs1933802 was associated with higher risk for depression (praw = 0.014, DNAm = 2.3%). In 1202 CD14+ cells sorted from blood, DNAm at cg02088412 positively correlated with HACE1 mRNA expression. Investigation in postmortem brain tissue of adults diagnosed with major depressive disorder (MDD) indicated 1% higher DNAm at cg02098413 in neurons and lower HACE1 mRNA expression in CA1 hippocampus of MDD patients compared with healthy controls (p = 0.008 and 0.012, respectively). Expression QTL analysis in blood of 74 adolescent revealed that hsa-miR-3664-5p was associated with rs7117514 (SHANK2) (padj. = 0.015, mRNA difference = 5.2%). Gene ontology analysis of the miRNA target genes highlighted implication in neuronal processes. Collectively, our findings from a multi-tissue (blood and brain) and multi-layered (genetic, epigenetic, transcriptomic) approach suggest that genetic factors may influence depression by modulating DNAm and miRNA levels. Alterations at HACE1 and SHANK2 loci imply potential mechanisms, such as oxidative stress in the brain, underlying depression. Our results deepened the knowledge of molecular mechanisms in depression and suggest new epigenetic targets that should be further evaluated."	"New insights into the associations among feed efficiency, metabolizable efficiency traits and related QTL regions in broiler chickens. Improving the feed efficiency would increase profitability for producers while also reducing the environmental footprint of livestock production. This study was conducted to investigate the relationships among feed efficiency traits and metabolizable efficiency traits in 180 male broilers. Significant loci and genes affecting the metabolizable efficiency traits were explored with an imputation-based genome-wide association study. The traits measured or calculated comprised three growth traits, five feed efficiency related traits, and nine metabolizable efficiency traits. The residual feed intake (RFI) showed moderate to high and positive phenotypic correlations with eight other traits measured, including average daily feed intake (ADFI), dry excreta weight (DEW), gross energy excretion (GEE), crude protein excretion (CPE), metabolizable dry matter (MDM), nitrogen corrected apparent metabolizable energy (AMEn), abdominal fat weight (AbF), and percentage of abdominal fat (AbP). Greater correlations were observed between growth traits and the feed conversion ratio (FCR) than RFI. In addition, the RFI, FCR, ADFI, DEW, GEE, CPE, MDM, AMEn, AbF, and AbP were lower in low-RFI birds than high-RFI birds (P &lt; 0.01 or P &lt; 0.05), whereas the coefficients of MDM and MCP of low-RFI birds were greater than those of high-RFI birds (P &lt; 0.01). Five narrow QTLs for metabolizable efficiency traits were detected, including one 82.46-kb region for DEW and GEE on Gallus gallus chromosome (GGA) 26, one 120.13-kb region for MDM and AMEn on GGA1, one 691.25-kb region for the coefficients of MDM and AMEn on GGA5, one region for the coefficients of MDM and MCP on GGA2 (103.45-103.53 Mb), and one 690.50-kb region for the coefficient of MCP on GGA14. Linkage disequilibrium (LD) analysis indicated that the five regions contained high LD blocks, as well as the genes chromosome 26 C6orf106 homolog (C26H6orf106), LOC396098, SH3 and multiple ankyrin repeat domains 2 (SHANK2), ETS homologous factor (EHF), and histamine receptor H3-like (HRH3L), which are known to be involved in the regulation of neurodevelopment, cell proliferation and differentiation, and food intake. Selection for low RFI significantly decreased chicken feed intake, excreta output, and abdominal fat deposition, and increased nutrient digestibility without changing the weight gain. Five novel QTL regions involved in the control of metabolizable efficiency in chickens were identified. These results, combined through nutritional and genetic approaches, should facilitate novel insights into improving feed efficiency in poultry and other species."	"Insulin-like growth factor 1 partially rescues early developmental defects caused by SHANK2 knockdown in human neurons. SHANK2 is a scaffold protein that serves as a protein anchor at the postsynaptic density in neurons. Genetic variants of SHANK2 are strongly associated with synaptic dysfunction and the pathophysiology of autism spectrum disorder. Recent studies indicate that early neuronal developmental defects play a role in the pathogenesis of autism spectrum disorder, and that insulin-like growth factor 1 has a positive effect on neurite development. To investigate the effects of SHANK2 knockdown on early neuronal development, we generated a sparse culture system using human induced pluripotent stem cells, which then differentiated into neural progenitor cells after 3-14 days in culture, and which were dissociated into single neurons. Neurons in the experimental group were infected with shSHANK2 lentivirus carrying a red fluorescent protein reporter (shSHANK2 group). Control neurons were infected with scrambled shControl lentivirus carrying a red fluorescent protein reporter (shControl group). Neuronal somata and neurites were reconstructed based on the lentiviral red fluorescent protein signal. Developmental dendritic and motility changes in VGLUT1<sup>+</sup> glutamatergic neurons and TH<sup>+</sup> dopaminergic neurons were then evaluated in both groups. Compared with shControl VGLUT1<sup>+</sup> neurons, the dendritic length and arborizations of shSHANK2 VGLUT1<sup>+</sup> neurons were shorter and fewer, while cell soma speed was higher. Furthermore, dendritic length and arborization were significantly increased after insulin-like growth factor 1 treatment of shSHANK2 neurons, while cell soma speed remained unaffected. These results suggest that insulin-like growth factor 1 can rescue morphological defects, but not the change in neuronal motility. Collectively, our findings demonstrate that SHANK2 deficiency perturbs early neuronal development, and that IGF1 can partially rescue the neuronal defects caused by SHANK2 knockdown. All experimental procedures and protocols were approved by the Laboratory Animal Ethics Committee of Jinan University, China (approval No. 20170228010) on February 28, 2017."	"Dynamic Change of Shanks Gene mRNA Expression and DNA Methylation in Epileptic Rat Model and Human Patients. Synaptic protein shanks (SH3 and multiple ankyrin repeat domains protein, Shank) have emerged as an important mediator of synaptic remodeling. Synaptic remodeling is a common pathogenic process in various neurological disorders including epilepsy. However, the expression and function of shanks gene in epileptogenesis has not been investigated to date. Herein, we investigated the expression of shanks (shank1/2/3) mRNA expression in both epileptic rats and epilepsy patients. Furthermore, methyl target sequencing was applied to explore the relationship between shank mRNA expression and DNA methylation in both rats and human patients. In general rat model, shank1/2/3 mRNA was downregulated at acute stage, upregulated at latent stage, and returned to the basal level at chronic stage. Ten CpG sites of shank1 was found differentially methylated, out of which 6 were hypermethylated. Seventeen CpG sites of shank3 were differentially methylated, out of which 8 were hypermethylated. In human epilepsy patients, decreased shank2 mRNA was detected from the brain tissue, with DNA hypermethylation dominant from both brain (18 out of 30) and blood tissue (58 out of 80), indicating the regulation role of DNA methylation on shank2 expression. In conclusion, our finding suggests the participation of the shanks gene in the pathophysiology of seizure, out of which 2 shank3 CpG sites (Chr7: 130473419, and Chr7: 130473405) may play an important role in shank3 expression at both the acute and latent stages in the SE rat model."	"Identification of differentially expressed methylated genes in melanoma versus nevi using bioinformatics methods. Melanoma is a highly invasive malignant skin tumor. While melanoma may share some similarities with that of melanocytic nevi, there also exist a number of distinct differences between these conditions. An analysis of these differences may provide a means to more effectively evaluate the etiology and pathogenesis of melanoma. In particular, differences in aberrant methylation expression may prove to represent a critical distinction. Data from gene expression datasets (GSE3189 and GSE46517) and gene methylation datasets (GSE86355 and GSE120878) were downloaded from the GEO database. GEO2R was used to obtain differentially expressed genes (DEGs) and differentially methylation genes (DMGs). Function and pathway enrichment of selected genes were performed using the DAVID database. A protein-protein interaction (PPI) network was constructed by STRING while its visualization was achieved with use of cytoscape. Primary melanoma samples from TCGA were used to identify significant survival genes. There was a total of 199 genes in the hypermethylation-low expression group, while 136 genes in the hypomethylation-high expression group were identified. The former were enriched in the biological processes of transcription regulation, RNA metabolism and regulation of cell proliferation. The later were highly involved in cell cycle regulation. 13 genes were screened out after survival analysis and included: ISG20, DTL, TRPV2, PLOD3, KIF3C, DLGAP4, PI4K2A, WIPI1, SHANK2, SLC16A10, GSTA4O, LFML2A and TMEM47. These findings reveal some of the methylated differentially expressed genes and pathways that exist between melonoma and melanocytic nevi. Moreover, we have identified some critical genes that may help to improve the diagnosis and treatment of melanoma."	"Shank2 Binds to aPKC and Controls Tight Junction Formation with Rap1 Signaling during Establishment of Epithelial Cell Polarity. Epithelial cells establish apicobasal polarity by forming tight junctions (TJs) at the apical-lateral boundary, which play fundamental roles in physiological functions. An evolutionarily conserved atypical protein kinase C (aPKC)-partitioning defective (PAR) complex functions as a platform for TJ assembly during cell polarity establishment. However, how this complex converts the spatial cues into a subsequent active unit is unclear. Here, we identify an epithelial isoform of Shank2 as a mediator of the aPKC-PAR complex. Shank2 binds to and colocalizes with aPKC at apical junctional regions of polarized epithelial cells. Shank2 knockdown results in defects in TJ formation. Mechanistically, we find that the N-terminal SPN domain is required for the junctional localization of Shank2 and binds to the active form of Rap1 small GTPase, which is involved in TJ formation. Our findings suggest that a close physical and functional relationship between aPKC and Shank2-active Rap1 signaling serves as the platform for TJ assembly to regulate epithelial cell polarity."	"Identification of a novel Shank2 transcriptional variant in Shank2 knockout mouse model of autism spectrum disorder. Autism spectrum disorder (ASD) is a group of neurodevelopmental disorders that are highly heterogeneous in clinical symptoms as well as etiologies. Mutations in SHANK2 are associated with ASD and accordingly, Shank2 knockout mouse shows ASD-like behavioral phenotypes, including social deficits. Intriguingly, two lines of Shank2 knockout (KO) mouse generated by deleting different exons (exon 6-7 or exon 7) showed distinct cellular phenotypes. Previously, we compared gene expressions between Shank2 KOs lacking exon 6-7 (e6-7 KO) and KOs lacking exon 7 (e7 KO) by performing RNA-seq. In this study, we expanded transcriptomic analyses to identify novel transcriptional variants in the KO mice. We found prominent expression of a novel exon (exon 4' or e4') between the existing exons 4 and 5 in the Shank2 e6-7 KO model. Expression of the transcriptional variant harboring this novel exon was confirmed by RT-PCR and western blotting. These findings suggest that the novel variant may function as a modifier gene, which contributes to the differences between the two Shank2 mutant lines. Furthermore, our result further represents an example of genetic compensation that may lead to phenotypic heterogeneity among ASD patients with mutations in the same gene."	"Landscape of copy number aberrations in esophageal squamous cell carcinoma from a high endemic region of South Africa. Esophageal squamous cell carcinoma (ESCC) is an aggressive cancer with one of the highest world incidences in the Eastern Cape region of South Africa. Several genome wide studies have been performed on ESCC cohorts from Asian countries, North America, Malawi and other parts of the world but none have been conducted on ESCC tumors from South Africa to date, where the molecular pathology and etiology of this disease remains unclear. We report here tumor associated copy number changes observed in 51 ESCC patients' samples from the Eastern Cape province of South Africa. We extracted tumor DNA from 51 archived ESCC specimens and interrogated tumor associated DNA copy number changes using Affymetrix® 500 K SNP array technology. The Genomic Identification of Significant Targets in Cancer (GISTIC 2.0) algorithm was applied to identify significant focal regions of gains and losses. Gains of the top recurrent cancer genes were validated by fluorescence in situ hybridization and their protein expression assessed by immunohistochemistry. Twenty-three significant focal gains were identified across samples. Gains involving the CCND1, MYC, EGFR and JAG1 loci recapitulated those described in studies on Asian and Malawian cohorts. The two most significant gains involved the chromosomal sub-bands 3q28, encompassing the TPRG1 gene and 11q13.3 including the CTTN, PPFIA1and SHANK2 genes. There was no significant homozygous loss and the most recurrent hemizygous deletion involved the B3GAT1 gene on chromosome 11q25. Focal gains on 11q13.3 in 37% of cases (19/51), consistently involved CTTN and SHANK2 genes. Twelve of these cases (23,5%), had a broader region of gain that also included the CCND1, FGF19, FGF4 and FGF3 genes. SHANK2 and CTTN are co-amplified in several cancers, these proteins interact functionally together and are involved in cell motility. Immunohistochemistry confirmed both Shank2 (79%) and cortactin (69%) protein overexpression in samples with gains of these genes. In contrast, cyclin D1 (65%) was moderately expressed in samples with CCND1 DNA gain. This study reports copy number changes in a South African ESCC cohort and highlights similarities and differences with cohorts from Asia and Malawi. Our results strongly suggest a role for CTTN and SHANK2 in the pathogenesis of ESCC in South Africa."	"Differential Scaling of Synaptic Molecules within Functional Zones of an Excitatory Synapse during Homeostatic Plasticity. Homeostatic scaling is a form of synaptic plasticity where individual synapses scale their strengths to compensate for global suppression or elevation of neuronal activity. This process can be studied by measuring miniature EPSP (mEPSP) amplitudes and frequencies following the regulation of activity in neuronal cultures. Here, we demonstrate a quantitative approach to characterize multiplicative synaptic scaling using immunolabelling of hippocampal neuronal cultures treated with tetrodotoxin (TTX) or bicuculline to extract scaling factors for various synaptic proteins. This approach allowed us to directly examine the scaling of presynaptic and postsynaptic scaffolding molecules along with neurotransmitter receptors in primary cultures from mouse and rat hippocampal neurons. We show robust multiplicative scaling of synaptic scaffolding molecules namely, Shank2, PSD95, Bassoon, and AMPA receptor subunits and quantify their scaling factors. We use super-resolution microscopy to calculate scaling factors of surface expressed GluA2 within functional zones of the synapse and show that there is differential and correlated scaling of GluA2 levels within the spine, the postsynaptic density (PSD), and the perisynaptic regions. Our method opens a novel paradigm to quantify relative molecular changes of synaptic proteins within distinct subsynaptic compartments from a large number of synapses in response to alteration of neuronal activity, providing anatomic insights into the intricacies of variability in strength of individual synapses."	"Understanding the Genetic Domestication History of the Jianchang Duck by Genotyping and Sequencing of Genomic Genes Under Selection. The Jianchang duck is mainly distributed in Southwest China, and has the characteristics of fast growth rate and strong abilities in lipid deposition in the liver. In order to investigate the effects of domestication process on formation of the unique characteristics of Jianchang duck, the whole genome of sixteen individuals and three pooling of Jianchang duck were re-sequenced, and genome data of 70 mallards and 83 domestic ducks from thirteen different places in China were obtained from NCBI. The population stratification and evolution analysis showed gene exchanges existed between the Jianchang and other domestic duck populations, as well as Jianchang ducks and mallards. Genomic comparison between mallards and Jianchang ducks showed genes, including CNTN1, CHRNA9, and SHANK2, which is involved in brain and nerve development, experienced strong positive selection in the process of Jianchang duck domestication. The genomic comparison between Jianchang and domestic duck populations showed that HSD17B12 and ESM1, which affect lipid metabolism, experienced strong positive selection during the domestication process. FST analysis among populations of Jianchang duck with different plumage colors indicated that MITF was related to the phenotype of a white feather, while MC1R was related to the phenotype of hemp feather. Our results provided a base for the domestication process of Jianchang duck and the genomic genes for unique traits."	"Impaired actin dynamics and suppression of Shank2-mediated spine enlargement in cortactin knockout mice. Cortactin regulates actin polymerization and stabilizes branched actin network. In neurons, cortactin is enriched in dendritic spines that contain abundant actin polymers. To explore the function of cortactin in dendritic spines, we examined spine morphology and dynamics in cultured neurons taken from cortactin knockout (KO) mice. Histological analysis revealed that the density and morphology of dendritic spines were not significantly different between wild-type (WT) and cortactin KO neurons. Time-lapse imaging of hippocampal slice cultures showed that the extent of spine volume change was similar between WT and cortactin KO neurons. Despite little effect of cortactin deletion on spine morphology and dynamics, actin turnover in dendritic spines was accelerated in cortactin KO neurons. Furthermore, we detected a suppressive effect of cortactin KO on spine head size under the condition of excessive spine enlargement induced by overexpression of a prominent postsynaptic density protein Shank2. These results suggest that cortactin may have a role in maintaining actin organization by stabilizing actin filaments near the postsynaptic density."	"[Analysis of common genetic variants associated with neuro-synapse development among 60 family trios affected with sporadic autism spectrum disorders]. To explore susceptibility genes for autism spectrum disorders (ASD). Whole-exome sequencing was carried out for 60 family trios affected with sporadic ASD. Genetic variants discovered in over 10% of the patients were selected for genotype-phenotype correlation and pathway enrichment analysis using Phenolyzer software and metascape database. Combining gene-phenotypic scores, pathway-related genes associated with neural and neurite triggering were screened for the candidates. A total of 170 common variants were found to be associated with the ASD phenotype. Among these, there was only one high-confidence gene [SHANK2(0.8146)] and four medium-confidence genes [ERBB2(0.1322), LAMC3(0.1117), PPFIA4(0.1059), DISC1(0.1002)]. Twenty-pathways and four biological processes were found to be statistically significant by pathway enrichment analysis, which included neuron projection morphogenesis (GO: 0048812), regulation of neuroblast proliferation (GO: 1902692), modulation of excitatory postsynaptic potential (GO: 0098815), and dendrite morphogenesis (GO: 0048813). Twenty-one genes were found to be closely associated with neurological and neurite triggering, among which only SHANK2, ERBB2, and DISC1 had above-medium confidence correlation scores with the ASD phenotypes. Abnormal neuron projection morphogenesis (GO: 0048812) may be closely related to the occurrence of ASD. SHANK2, ERBB2, and DISC1 are susceptibility genes for ASD."	"Dendritic spine morphology and memory formation depend on postsynaptic Caskin proteins. CASK-interactive proteins, Caskin1 and Caskin2, are multidomain neuronal scaffold proteins. Recent data from Caskin1 knockout animals indicated only a mild role of Caskin1 in anxiety and pain perception. In this work, we show that deletion of both Caskins leads to severe deficits in novelty recognition and spatial memory. Ultrastructural analyses revealed a reduction in synaptic profiles and dendritic spine areas of CA1 hippocampal pyramidal neurons of double knockout mice. Loss of Caskin proteins impaired LTP induction in hippocampal slices, while miniature EPSCs in dissociated hippocampal cultures appeared to be unaffected. In cultured Caskin knockout hippocampal neurons, overexpressed Caskin1 was enriched in dendritic spine heads and increased the amount of mushroom-shaped dendritic spines. Chemically induced LTP (cLTP) mediated enlargement of spine heads was augmented in the knockout mice and was not influenced by Caskin1. Immunocytochemistry and immunoprecipitation confirmed that Shank2, a master scaffold of the postsynaptic density, and Caskin1 co-localized within the same complex. Phosphorylation of AMPA receptors was specifically altered by Caskin deficiency and was not elevated by cLTP treatment further. Taken together, our results prove a previously unnoticed postsynaptic role of Caskin scaffold proteins and indicate that Caskins influence learning abilities via regulating spine morphology and AMPA receptor localisation."	"Bilateral Calcification of Basal Ganglia in a Patient with Duplication of Both 11q13.1q22.1 and 4q35.2 with New Phenotypic Features. We report on a female patient who presented with severe intellectual disability and autistic behavior, dysmorphic features, orodental anomalies, and bilateral calcification of basal ganglia. Using a high-density oligonucleotide microarray, we have identified a de novo duplication of 11q13.1q22.1 involving the dosage sensitive genes FGF3 and FGF4, genes related to autosomal dominant disorders KMT5B, GAL, SPTBN2, and LRP5, susceptibility loci SCZD2, SLEH1, and SHANK2, mitochondrial genes NDUFV1, NDUFS8, and TMEM126B, and many loss of function genes, including PHOX2A, CLPB, MED17, B3GNT1, LIPT2, and CLPB. However, the duplication did not involve Ribonuclease H2, subunit C (RNASEH2C) which is considered to be located in the critical region for Aicardi-Goutières syndrome. In combination with the duplication at 11q13.1, a 1.849-Mb heterozygous duplication at 4q35.2 was also identified. Although this duplicated region does not contain causative genes related to brain calcification, the duplication at 4q35 was reported previously in a patient with basal ganglia calcification, coats' like retinopathy, and glomerulosclerosis. Our patient's presentation and genomic findings indicate that duplication of 4q35.2 could be a novel genetic cause of calcification of basal ganglia. Our report also underscores the clinical significance of rearrangements in 11q13.1q22.1 in the pathogenesis of basal ganglia calcification."	"Bioinformatics analysis revealed hub genes and pathways involved in sorafenib resistance in hepatocellular carcinoma. Hepatocellular carcinoma (HCC) is increasingly known as a serious, worldwide public health concern. Sorafenib resistance is the main challenge faced by many advanced HCC patients. The specific mechanisms of sorafenib resistance remind unclear. In the current study, GEO2R was conducted to identify differentially expressed genes (DEGs) between sorafenib-resistant samples and the control group by using RNA-sequence analysis and analyzing dataset GSE109211. Next, protein-protein interaction (PPI) network was built to explore key targets proteins in sorafenib-resistant HCC. Furthermore, gene ontology (GO) analysis was used to research the underlying roles of key proteins. Moreover, the Kaplan-Meier survival analysis was performed to display the effect of key proteins on overall survival in HCC. Western blotting was performed to detected resistance-related proteins and CCK-8 assay was employed to measured cell viability. In the present research, 164 sorafenib resistance-related DEGs in HCC were identified by using RNA-sequence analysis and analyzing the dataset GSE109211. GO analysis revealed DEGs were involved in regulating multiple biological processes and molecular functions. DYNLL2, H2AFJ, SHANK2, ZWILCH, CDC14A, IFT20, MTA3, SERPINA1 and TCF4 were confirmed as key genes in this process. Moreover, our study showed Akt signaling was aberrantly activated and inhibition of Akt signaling enhanced anti-tumor capacity of sorafenib in sorafenib-resistant HCC cells. Identification of the DEGs in sorafenib resistant HCC cells may further provide the new insights of underlying sorafenib-resistant mechanisms and offer latent targets for early diagnosis and new therapies to improve clinical efficacy for sorafenib-resistant HCC patients."	"Shank Proteins Couple the Endocytic Zone to the Postsynaptic Density to Control Trafficking and Signaling of Metabotropic Glutamate Receptor 5. Activation of postsynaptic metabotropic glutamate receptors (mGluRs) modulates neuronal excitability and synaptic plasticity, while deregulation of mGluR signaling has been implicated in neurodevelopmental disorders. Overstimulation of mGluRs is restricted by the rapid endocytosis of receptors after activation. However, how membrane trafficking of mGluRs at synapses is controlled remains poorly defined. We find that in hippocampal neurons, the agonist-induced receptor internalization of synaptic mGluR5 is significantly reduced in Shank knockdown neurons. This is rescued by the re-expression of wild-type Shanks, but not by mutants unable to bind Homer1b/c, Dynamin2, or Cortactin. These effects are paralleled by a reduction in synapses associated with an endocytic zone. Moreover, a mutation in SHANK2 found in autism spectrum disorders (ASDs) similarly disrupts these processes. On the basis of these findings, we propose that synaptic Shank scaffolds anchor the endocytic machinery to govern the efficient trafficking of mGluR5 and to balance the surface expression of mGluRs to efficiently modulate neuronal functioning."	"Reversal of oxycodone conditioned place preference by oxytocin: Promoting global DNA methylation in the hippocampus. Repeated exposure to the opioid agonist, oxycodone, can lead to addiction. Accumulating evidence has shown that oxytocin (OT), a neurohypophyseal neuropeptide, could reduce the abuse potential of drugs. Recent studies suggest that epigenetic regulation through DNA methylation are involved in neuroadaptations. The current study was conducted to investigate the effects of OT on oxycodone conditioned place preference (CPP) and the epigenetic mechanism of OT in the hippocampus. For induction of CPP, oxycodone (3.0 mg/kg, i. p.) was administrated to male Sprague-Dawley rats once every other day during an eight-day conditioning phase. Global 5-methylcytosine (5-mC) level was determined based on CPP procedure, including acquisition, expression, extinction and reinstatement. We also measured mRNA levels of DNA methyltransferases (Dnmts), ten-eleven translocations (Tets) and synaptic genes (Psd95, Shank2, Gap43, etc.), and determined synaptic density after restraint stress-induced reinstatement of oxycodone CPP. The results showed that OT (2.5 μg, i. c.v.) pretreatment specifically inhibited the CPP acquisition and expression, facilitated the CPP extinction, and abolished restraint stress-induced reinstatement of oxycodone CPP. OT markedly inhibited global 5-mC changes induced by oxycodone CPP in the four phases. Following restraint stress-induced reinstatement of oxycodone CPP, OT significantly increased mRNA levels of Dnmt1, decreased Tet1 mRNA, synaptic proteins and synaptic density in the hippocampus. Our study indicated that reversal of global DNA hypomethylation through OT could significantly attenuate the rewarding effects induced by oxycodone. Our results suggested that OT could be specific manipulation on oxycodone addiction."	"Reproducibility via coordinated standardization: a multi-center study in a Shank2 genetic rat model for Autism Spectrum Disorders. Inconsistent findings between laboratories are hampering scientific progress and are of increasing public concern. Differences in laboratory environment is a known factor contributing to poor reproducibility of findings between research sites, and well-controlled multisite efforts are an important next step to identify the relevant factors needed to reduce variation in study outcome between laboratories. Through harmonization of apparatus, test protocol, and aligned and non-aligned environmental variables, the present study shows that behavioral pharmacological responses in Shank2 knockout (KO) rats, a model of synaptic dysfunction relevant to autism spectrum disorders, were highly replicable across three research centers. All three sites reliably observed a hyperactive and repetitive behavioral phenotype in KO rats compared to their wild-type littermates as well as a dose-dependent phenotype attenuation following acute injections of a selective mGluR1 antagonist. These results show that reproducibility in preclinical studies can be obtained and emphasizes the need for high quality and rigorous methodologies in scientific research. Considering the observed external validity, the present study also suggests mGluR1 as potential target for the treatment of autism spectrum disorders."	"Understanding intellectual disability and autism spectrum disorders from common mouse models: synapses to behaviour. Normal brain development is highly dependent on the timely coordinated actions of genetic and environmental processes, and an aberration can lead to neurodevelopmental disorders (NDDs). Intellectual disability (ID) and autism spectrum disorders (ASDs) are a group of co-occurring NDDs that affect between 3% and 5% of the world population, thus presenting a great challenge to society. This problem calls for the need to understand the pathobiology of these disorders and to design new therapeutic strategies. One approach towards this has been the development of multiple analogous mouse models. This review discusses studies conducted in the mouse models of five major monogenic causes of ID and ASDs: Fmr1, Syngap1, Mecp2, Shank2/3 and Neuroligins/Neurnexins. These studies reveal that, despite having a diverse molecular origin, the effects of these mutations converge onto similar or related aetiological pathways, consequently giving rise to the typical phenotype of cognitive, social and emotional deficits that are characteristic of ID and ASDs. This convergence, therefore, highlights common pathological nodes that can be targeted for therapy. Other than conventional therapeutic strategies such as non-pharmacological corrective methods and symptomatic alleviation, multiple studies in mouse models have successfully proved the possibility of pharmacological and genetic therapy enabling functional recovery."	"Real-time analysis of the behaviour of groups of mice via a depth-sensing camera and machine learning. Preclinical studies of psychiatric disorders use animal models to investigate the impact of environmental factors or genetic mutations on complex traits such as decision-making and social interactions. Here, we introduce a method for the real-time analysis of the behaviour of mice housed in groups of up to four over several days and in enriched environments. The method combines computer vision through a depth-sensing infrared camera, machine learning for animal and posture identification, and radio-frequency identification to monitor the quality of mouse tracking. It tracks multiple mice accurately, extracts a list of behavioural traits of both individuals and the groups of mice, and provides a phenotypic profile for each animal. We used the method to study the impact of Shank2 and Shank3 gene mutations-mutations that are associated with autism-on mouse behaviour. Characterization and integration of data from the behavioural profiles of Shank2 and Shank3 mutant female mice revealed their distinctive activity levels and involvement in complex social interactions."	"Genome-wide copy number variation analysis identified ANO1 as a novel oncogene and prognostic biomarker in esophageal squamous cell cancer. Copy number variations (CNVs) represent one of the most common genomic alterations. This study aimed to evaluate the roles of genes within highly aberrant genome regions in the prognosis of esophageal squamous cell cancer (ESCC). Exome sequencing data from 81 paired ESCC tissues were used to screen aberrant genomic regions. The associations between CNVs and gene expression were evaluated using gene expression data from the same individuals. Then, an RNA expression array profile from 119 ESCC samples was adopted for differential gene expression and prognostic analyses. Two independent ESCC cohorts with 315 subjects were further recruited to validate the prognostic value using immunohistochemistry tests. Finally, we explored the potential mechanism of our identified novel oncogene in ESCC. In total, 2003 genes with CNVs were observed, of which 76 genes showed recurrent CNVs in more than three samples. Among them, 32 genes were aberrantly expressed in ESCC tumor tissues and statistically correlated with CNVs. Strikingly, 4 (CTTN, SHANK2, INPPL1 and ANO1) of the 32 genes were significantly associated with the prognosis of ESCC patients. Patients with a positive expression of ANO1 had a poorer prognosis than ANO1 negative patients (overall survival rate: 42.91% versus 26.22% for ANO1-/+ samples, P &lt; 0.001). Functionally, ANO1 promoted ESCC cell proliferation, migration and invasion by activating transforming growth factor-β pathway. Knockdown of ANO1 significantly inhibited tumor progression in vitro and in vivo. In conclusion, ANO1 is a novel oncogene in ESCC and may serve as a prognostic biomarker for ESCC."	"Sex-differential DNA methylation and associated regulation networks in human brain implicated in the sex-biased risks of psychiatric disorders. Many psychiatric disorders are characterized by a strong sex difference, but the mechanisms behind sex-bias are not fully understood. DNA methylation plays important roles in regulating gene expression, ultimately impacting sexually different characteristics of the human brain. Most previous literature focused on DNA methylation alone without considering the regulatory network and its contribution to sex-bias of psychiatric disorders. Since DNA methylation acts in a complex regulatory network to connect genetic and environmental factors with high-order brain functions, we investigated the regulatory networks associated with different DNA methylation and assessed their contribution to the risks of psychiatric disorders. We compiled data from 1408 postmortem brain samples in 3 collections to identify sex-differentially methylated positions (DMPs) and regions (DMRs). We identified and replicated thousands of DMPs and DMRs. The DMR genes were enriched in neuronal related pathways. We extended the regulatory networks related to sex-differential methylation and psychiatric disorders by integrating methylation quantitative trait loci (meQTLs), gene expression, and protein-protein interaction data. We observed significant enrichment of sex-associated genes in psychiatric disorder-associated gene sets. We prioritized 2080 genes that were sex-biased and associated with psychiatric disorders, such as NRXN1, NRXN2, NRXN3, FDE4A, and SHANK2. These genes are enriched in synapse-related pathways and signaling pathways, suggesting that sex-differential genes of these neuronal pathways may cause the sex-bias of psychiatric disorders."	"Placental imprinted gene expression mediates the effects of maternal psychosocial stress during pregnancy on fetal growth. Imprinted genes uniquely drive and support fetoplacental growth by controlling the allocation of maternal resources to the fetus and affecting the newborn's growth. We previously showed that alterations of the placental imprinted gene expression are associated with suboptimal perinatal growth and respond to environmental stimuli including socio-economic determinants. At the same time, maternal psychosocial stress during pregnancy (MPSP) has been shown to affect fetal growth. Here, we set out to test the hypothesis that placental imprinted gene expression mediates the effects of MPSP on fetal growth in a well-characterized birth cohort, the Stress in Pregnancy (SIP) Study. We observed that mothers experiencing high MPSP deliver infants with lower birthweight (P=0.047). Among the 109 imprinted genes tested, we detected panels of placental imprinted gene expression of 23 imprinted genes associated with MPSP and 26 with birthweight. Among these genes, five imprinted genes (CPXM2, glucosidase alpha acid (GAA), GPR1, SH3 and multiple ankyrin repeat domains 2 (SHANK2) and THSD7A) were common to the two panels. In multivariate analyses, controlling for maternal age and education and gestational age at birth and infant gender, two genes, GAA and SHANK2, each showed a 22% mediation of MPSP on fetal growth. These data provide new insights into the role that imprinted genes play in translating the maternal stress message into a fetoplacental growth pattern."	"Autism mutation produces hyper-connected neurons. NA"	"SHANK2 mutations associated with autism spectrum disorder cause hyperconnectivity of human neurons. Heterozygous loss-of-function mutations in SHANK2 are associated with autism spectrum disorder (ASD). We generated cortical neurons from induced pluripotent stem cells derived from neurotypic and ASD-affected donors. We developed sparse coculture for connectivity assays where SHANK2 and control neurons were differentially labeled and sparsely seeded together on a lawn of unlabeled control neurons. We observed increases in dendrite length, dendrite complexity, synapse number, and frequency of spontaneous excitatory postsynaptic currents. These findings were phenocopied in gene-edited homozygous SHANK2 knockout cells and rescued by gene correction of an ASD SHANK2 mutation. Dendrite length increases were exacerbated by IGF1, TG003, or BDNF, and suppressed by DHPG treatment. The transcriptome in isogenic SHANK2 neurons was perturbed in synapse, plasticity, and neuronal morphogenesis gene sets and ASD gene modules, and activity-dependent dendrite extension was impaired. Our findings provide evidence for hyperconnectivity and altered transcriptome in SHANK2 neurons derived from ASD subjects."	"The Up and Down of the N-Methyl-D-Aspartate Receptor That Causes Autism. NA"	"Airway transcriptomic profiling after bronchial thermoplasty. Bronchial thermoplasty is a nonpharmacological, device-based treatment option for a specific population of severe asthmatic subjects, but the underlying mechanisms are largely unknown. The purpose of this study is to identify potential altered pathways by bronchial thermoplasty using a transcriptomic approach. Patients undergoing bronchial thermoplasty were recruited to the study, and a bronchial brushing sample was obtained before each bronchial thermoplasty session and sent for RNA sequencing. A variance component score test was performed to identify those genes whose expression varied after bronchial thermoplasty sessions. Differential gene expression meta-analysis of severe asthmatic subjects versus controls was performed using public repositories. Overlapping genes were included for downstream pathway and network analyses. 12 patients were enrolled in our study. A total of 133 severe asthma cases and 107 healthy controls from the public repositories were included in the meta-analysis. Comparison of differentially expressed genes from our study patients with the public repositories identified eight overlapping genes: AMIGO2, CBX7, NR3C2, SETBP1, SHANK2, SNTB1, STXBP1 and ZNF853. Network analysis of these overlapping genes identified pathways associated with neurophysiological processes. We have shown that bronchial thermoplasty treatment alters several gene networks that are important in asthma pathogenesis. These results potentially elucidate the disease-modifying mechanisms of bronchial thermoplasty and provide several targets for further investigation."	"Targeted resequencing of 358 candidate genes for autism spectrum disorder in a Chinese cohort reveals diagnostic potential and genotype-phenotype correlations. Autism spectrum disorder (ASD) is a childhood neuropsychiatric disorder with a complex genetic architecture. The diagnostic potential of a targeted panel of ASD genes has only been evaluated in small cohorts to date and is especially understudied in the Chinese population. Here, we designed a capture panel with 358 genes (111 syndromic and 247 nonsyndromic) for ASD and sequenced a Chinese cohort of 539 cases evaluated with the Autism Diagnostic Interview-Revised (ADI-R) and the Autism Diagnostic Observation Schedule (ADOS) as well as 512 controls. ASD cases were found to carry significantly more ultra-rare functional variants than controls. A subset of 78 syndromic and 54 nonsyndromic genes was the most significantly associated and should be given high priority in the future screening of ASD patients. Pathogenic and likely pathogenic variants were detected in 9.5% of cases. Variants in SHANK3 and SHANK2 were the most frequent, especially in females, and occurred in 1.2% of cases. Duplications of 15q11-13 were detected in 0.8% of cases. Variants in CNTNAP2 and MEF2C were correlated with epilepsy/tics in cases. Our findings reveal the diagnostic potential of ASD genetic panel testing and new insights regarding the variant spectrum. Genotype-phenotype correlations may facilitate the diagnosis and management of ASD."	"SHANK1 polymorphisms and SNP-SNP interactions among SHANK family: A possible cue for recognition to autism spectrum disorder in infant age. Autism spectrum disorder (ASD) is a serious lifelong neurodevelopmental disorder. ASD is diagnosed for children at the age of two. ASD diagnosis, as early as possible, lays the foundation for treatment and much better prognosis. Notably, gene-based test is an inherent method to recognize the potential infants with ASD before the age of two. To investigate whether SHANK family contributes to ASD prediction, on the basis of our previous studies of SHANK2 and SHANK3, we further investigated associations between SHANK1 polymorphisms and ASD risk as well as SNP-SNP interactions among SHANK family. We enrolled 470 subjects (229 cases and 241 healthy controls) who were northeast Chinese Han. Four tag SNPs (rs73042561, rs3745521, rs4801846, and rs12461427) of SHANK1 were selected and genotyped. We used the SNPStats online analysis program to assess the associations between the four SNPs and ASD risk. The SNP-SNP interactions among SHANK family were analyzed using multifactor dimensionality reduction method. We found that the four SHANK1 SNPs were not associated with ASD risk in northeast Chinese Han population. There existed a strong synergistic interaction between rs11236697 [SHANK2] and rs74336682 [SHANK2], and moderate synergistic interactions (rs74336682 [SHANK2]-rs73042561 [SHANK1], rs11236697 [SHANK2]-rs77716438 [SHANK2], and rs11236697 [SHANK2]-rs75357229 [SHANK2]). These SHANK1 variants may not affect the susceptibility to ASD in Chinese Han population. SNP-SNP interactions in SHANK family may confer ASD risk. Autism Res 2019, 12: 375-383 © 2019 International Society for Autism Research, Wiley Periodicals, Inc. LAY SUMMARY: ASD is a serious lifelong neurodevelopmental disorder with strong genetic components. We investigated associations between SHANK1 polymorphisms and ASD risk as well as SNP-SNP interactions among SHANK family. Our results indicated that there exists no association between SHANK1 SNPs and ASD, and SNP-SNP interactions in SHANK family may confer ASD risk in the Northeast Han Chinese population. Future studies are needed to test more SHANK family SNPs in a large sample to demonstrate the associations."	"Epigenetic Alternations of MicroRNAs and DNA Methylation Contribute to Liver Metastasis of Colorectal Cancer. Liver metastasis is a major cause of mortality in colorectal cancer (CRC). Epigenetic alternations could serve as biomarkers for cancer diagnosis and prognosis. In this study, we analyzed microarray data in order to identify core genes and pathways which contribute to liver metastasis in CRC under epigenetic regulations. Data of miRNAs (GSE35834, GSE81582), DNA methylation (GSE90709, GSE77955), and mRNA microarrays (GSE68468, GSE81558) were downloaded from GEO database. Differentially expressed genes (DEGs), differentially expressed miRNAs (DEMs), and differentially methylated genes (DMGs) were obtained by GEO2R. The target genes of DEMs were predicted by miRWalk. Functional and enrichment analyses were conducted by DAVID database. Protein-protein interaction (PPI) network was constructed in STRING and visualized using Cytoscape. In liver metastasis, miR-143-3p, miR-10b-5p, miR-21-5p, and miR-518f-5p were down-regulated, while miR-122-5p, miR-885-5p, miR-210-3p, miR-130b-5p, miR-1275, miR-139-5p, miR-139-3p, and miR-1290 were up-regulated compared with primary CRC. DEGs targeted by altered miRNAs were enriched in pathways including complement, PPAR signaling, ECM-receptor interaction, spliceosome, and focal adhesion. In addition, aberrant DNA methylation-regulated genes showed enrichment in pathways of amino acid metabolism, calcium signaling, TGF-beta signaling, cell cycle, spliceosome, and Wnt signaling. Our study identified a series of differentially expressed genes which are associated with epigenetic alternations of miRNAs and DNA methylation in colorectal liver metastasis. Up-regulated genes of SLC10A1, MAPT, SHANK2, PTH1R, and C2, as well as down-regulated genes of CAB39, CFLAR, CTSC, THBS1, and TRAPPC3 were associated with both miRNA and DNA methylation, which might become promising biomarker of colorectal liver metastasis in future."	"Shank and Zinc Mediate an AMPA Receptor Subunit Switch in Developing Neurons. During development, pyramidal neurons undergo dynamic regulation of AMPA receptor (AMPAR) subunit composition and density to help drive synaptic plasticity and maturation. These normal developmental changes in AMPARs are particularly vulnerable to risk factors for Autism Spectrum Disorders (ASDs), which include loss or mutations of synaptic proteins and environmental insults, such as dietary zinc deficiency. Here, we show how Shank2 and Shank3 mediate a zinc-dependent regulation of AMPAR function and subunit switch from GluA2-lacking to GluA2-containing AMPARs. Over development, we found a concomitant increase in Shank2 and Shank3 with GluA2 at synapses, implicating these molecules as potential players in AMPAR maturation. Since Shank activation and function require zinc, we next studied whether neuronal activity regulated postsynaptic zinc at glutamatergic synapses. Zinc was found to increase transiently and reversibly with neuronal depolarization at synapses, which could affect Shank and AMPAR localization and activity. Elevated zinc induced multiple functional changes in AMPAR, indicative of a subunit switch. Specifically, zinc lengthened the decay time of AMPAR-mediated synaptic currents and reduced their inward rectification in young hippocampal neurons. Mechanistically, both Shank2 and Shank3 were necessary for the zinc-sensitive enhancement of AMPAR-mediated synaptic transmission and act in concert to promote removal of GluA1 while enhancing recruitment of GluA2 at pre-existing Shank puncta. These findings highlight a cooperative local dynamic regulation of AMPAR subunit switch controlled by zinc signaling through Shank2 and Shank3 to shape the biophysical properties of developing glutamatergic synapses. Given the zinc sensitivity of young neurons and its dependence on Shank2 and Shank3, genetic mutations and/or environmental insults during early development could impair synaptic maturation and circuit formation that underlie ASD etiology."	"Replicated associations of FADS1, MAD1L1, and a rare variant at 10q26.13 with bipolar disorder in Chinese population. Genetic analyses of psychiatric illnesses, such as bipolar disorder (BPD), have revealed essential information regarding the underlying pathological mechanisms. While such studies in populations of European ancestry have achieved prominent success, understanding the genetic risk factors of these illnesses (especially BPD) in Chinese population remains an urgent task. Given the lack of genome-wide association study (GWAS) of BPD in Chinese population from Mainland China, replicating the previously reported GWAS hits in distinct populations will provide valuable information for future GWAS analysis in Han Chinese. In the present study, we have recruited 1146 BPD cases and 1956 controls from Mainland China for genetic analyses, as well as 65 Han Chinese brain amygdala tissues for mRNA expression analyses. Using this clinical sample, one of the largest Han Chinese BPD samples till now, we have conducted replication analyses of 21 single nucleotide polymorphisms (SNPs) extracted from previous GWAS of distinct populations. Among the 21 tested SNPs, 16 showed the same direction of allelic effects in our samples compared with previous studies; 6 SNPs achieved nominal significance (p &lt; 0.05) at one-tailed test, and 2 additional SNPs showed marginal significance (p &lt; 0.10). Aside from replicating previously reported BPD risk SNPs, we herein also report several intriguing findings: (1) the SNP rs174576 was associated with BPD in our Chinese sample and in the overall global meta-analysis, and was significantly correlated with FADS1 mRNA in diverse public RNA-seq datasets as well as our in house collected Chinese amygdala samples; (2) two (partially) independent SNPs in MAD1L1 were both significantly associated with BPD in our Chinese sample, which was also supported by haplotype analysis; (3) a rare SNP rs78089757 in 10q26.13 region was a genome-wide significant variant for BPD in East Asians, and this SNP was near monomorphic in Europeans. In sum, these results confirmed several significant BPD risk genes. We hope this Chinese BPD case-control sample and the current brain amygdala tissues (with continuous increasing sample size in the near future) will provide helpful resources in elucidating the genetic and molecular basis of BPD in this major world population."	"Reduced Efficacy of d-Amphetamine and 3,4-Methylenedioxymethamphetamine in Inducing Hyperactivity in Mice Lacking the Postsynaptic Scaffolding Protein SHANK1. Genetic defects in the three SH3 and multiple ankyrin repeat domains (SHANK) genes (SHANK1, SHANK2, and SHANK3) are associated with multiple major neuropsychiatric disorders, including autism spectrum disorder (ASD), schizophrenia (SCZ), and bipolar disorder (BPD). Psychostimulant-induced hyperactivity is a commonly applied paradigm to assess behavioral phenotypes related to BPD and considered to be the gold standard for modeling mania-like elevated drive in mouse models. Therefore, the goal of our present study was to test whether Shank1 plays a role in the behavioral effects of psychostimulants and whether this is associated with genotype-dependent neurochemical alterations. To this aim, male and female null mutant Shank1<sup>-/-</sup> mice were treated with d-amphetamine (AMPH; 2.5 mg/kg) and 3,4-methylenedioxymethamphetamine (MDMA, commonly known as ecstasy; 20 mg/kg), and psychostimulant-induced hyperactivity was compared to heterozygous Shank1<sup>+/-</sup> and wildtype Shank1<sup>+/+</sup> littermate controls. Results show that Shank1<sup>-/-</sup> mice display reduced psychostimulant-induced hyperactivity, although psychostimulants robustly stimulated locomotor activity in littermate controls. Shank1 deletion effects emerged throughout development, were particularly prominent in adulthood, and seen in response to both psychostimulants, i.e., AMPH and MDMA. Specifically, while AMPH-induced hyperactivity was reduced but still detectable in Shank1<sup>-/-</sup> mice, MDMA-induced hyperactivity was robustly blocked and completely absent in Shank1<sup>-/-</sup> mice. Reduced efficacy of psychostimulants to stimulate hyperactivity in Shank1<sup>-/-</sup> mice might be associated with alterations in the neurochemical architecture in prefrontal cortex, nucleus accumbens, and hypothalamus. Our observation that psychostimulant-induced hyperactivity is reduced rather than enhanced in Shank1<sup>-/-</sup> mice clearly speaks against a behavioral phenotype with relevance to BPD. Lack of BPD-like phenotype is consistent with currently available human data linking mutations in SHANK2 and SHANK3 but not SHANK1 to BPD."	"Early Exposure to a High-Fat Diet Impacts on Hippocampal Plasticity: Implication of Microglia-Derived Exosome-like Extracellular Vesicles. Adolescence is a transitional period from childhood to adulthood characterized by puberty and brain maturation involving behavioral changes and environmental vulnerability. Diet is one of the factors affecting brain health, potentially leading to long-lasting effects. Hence, we studied the impact of early exposure (P21-60) to a high-fat diet (HFD) on mouse hippocampus, analyzing inflammation, adult neurogenesis, dendritic spine plasticity, and spatial memory. Glycemia and seric pro-inflammatory IL1β were higher in HFD mice without differences on body weight. In the HFD hippocampus, neuroinflammation was evidenced by Iba1+ cells reactivity together with a higher expression of TNFα and IL1β while the neurogenic capability in the dentate gyrus was strongly reduced. We found a predominance of immature Dil-labeled dendritic spines from CA1 neurons along with diminished levels of the scaffold protein Shank2, suggesting a defective connectivity. Moreover, the HFD group exhibited spatial memory alterations. To elucidate whether microglia could be mediating HFD-associated neuronal changes, the lipotoxic context was emulated by incubating primary microglia with palmitate, a saturated fatty acid present in HFD. Palmitate induced a pro-inflammatory profile as shown by secreted cytokine levels. The isolated exosome fraction from palmitate-stimulated microglia induced an immature dendritic spine phenotype in primary GFP+ hippocampal neurons, in line with the in vivo findings. These results provide novel data concerning microglia to neuron communication and highlight that fat excess during a short and early period of life could negatively impact on cognition and synaptic plasticity in a neuroinflammatory context, where microglia-derived exosomes could be implicated. Graphical Abstract ᅟ."	"Early Correction of N-Methyl-D-Aspartate Receptor Function Improves Autistic-like Social Behaviors in Adult Shank2<sup>-/-</sup> Mice. Autism spectrum disorder involves neurodevelopmental dysregulations that lead to visible symptoms at early stages of life. Many autism spectrum disorder-related mechanisms suggested by animal studies are supported by demonstrated improvement in autistic-like phenotypes in adult animals following experimental reversal of dysregulated mechanisms. However, whether such mechanisms also act at earlier stages to cause autistic-like phenotypes is unclear. We used Shank2<sup>-/-</sup> mice carrying a mutation identified in human autism spectrum disorder (exons 6 and 7 deletion) and combined electrophysiological and behavioral analyses to see whether early pathophysiology at pup stages is different from late pathophysiology at juvenile and adult stages and whether correcting early pathophysiology can normalize late pathophysiology and abnormal behaviors in juvenile and adult mice. Early correction of a dysregulated mechanism in young mice prevents manifestation of autistic-like social behaviors in adult mice. Shank2<sup>-/-</sup> mice, known to display N-methyl-D-aspartate receptor (NMDAR) hypofunction and autistic-like behaviors at postweaning stages after postnatal day 21 (P21), show the opposite synaptic phenotype-NMDAR hyperfunction-at an earlier preweaning stage (∼P14). Moreover, this NMDAR hyperfunction at P14 rapidly shifts to NMDAR hypofunction after weaning (∼P24). Chronic suppression of the early NMDAR hyperfunction by the NMDAR antagonist memantine (P7-P21) prevents NMDAR hypofunction and autistic-like social behaviors from manifesting at later stages (∼P28 and P56). Early NMDAR hyperfunction leads to late NMDAR hypofunction and autistic-like social behaviors in Shank2<sup>-/-</sup> mice, and early correction of NMDAR dysfunction has the long-lasting effect of preventing autistic-like social behaviors from developing at later stages."	"Dietary Zinc Supplementation Prevents Autism Related Behaviors and Striatal Synaptic Dysfunction in Shank3 Exon 13-16 Mutant Mice. The SHANK family of synaptic proteins (SHANK1-3) are master regulators of the organizational structure of excitatory synapses in the brain. Mutations in SHANK1-3 are prevalent in patients with autism spectrum disorders (ASD), and loss of one copy of SHANK3 causes Phelan-McDermid Syndrome, a syndrome in which Autism occurs in &gt;80% of cases. The synaptic stability of SHANK3 is highly regulated by zinc, driving the formation of postsynaptic protein complexes and increases in excitatory synaptic strength. As ASD-associated SHANK3 mutations retain responsiveness to zinc, here we investigated how increasing levels of dietary zinc could alter behavioral and synaptic deficits that occur with ASD. We performed behavioral testing together with cortico-striatal slice electrophysiology on a Shank3<sup>-/-</sup> mouse model of ASD (Shank3<sup>ex13-1616-/-</sup>), which displays ASD-related behaviors and structural and functional deficits at striatal synapses. We observed that 6 weeks of dietary zinc supplementation in Shank3<sup>ex13-16-/-</sup> mice prevented ASD-related repetitive and anxiety behaviors and deficits in social novelty recognition. Dietary zinc supplementation also increased the recruitment of zinc sensitive SHANK2 to synapses, reduced synaptic transmission specifically through N-methyl-D-aspartate (NMDA)-type glutamate receptors, reversed the slowed decay tau of NMDA receptor (NMDAR)-mediated currents and occluded long term potentiation (LTP) at cortico-striatal synapses. These data suggest that alterations in NMDAR function underlie the lack of NMDAR-dependent cortico-striatal LTP and contribute to the reversal of ASD-related behaviors such as compulsive grooming. Our data reveal that dietary zinc alters neurological function from synapses to behavior, and identifies dietary zinc as a potential therapeutic agent in ASD."	"Shank2 Mutant Mice Display Hyperactivity Insensitive to Methylphenidate and Reduced Flexibility in Social Motivation, but Normal Social Recognition. Mouse models of autism can be used to study evolutionarily conserved mechanisms underlying behavioral abnormalities in social communication and repetitive behaviors. SHANK genes code for synaptic scaffolding proteins at excitatory synapses and mutations in all SHANK genes have been associated with autism. Here, we present three behavioral aspects of the mutant mice deleted for exon 16 in Shank2. First, we treated Shank2 mutant mice with methylphenidate to rescue the hyperactivity. Our failure to do so suggests that the hyperactivity displayed by Shank2 mutant mice is not related to the one displayed by the typical mouse models of hyperactivity, and might be more closely related to manic-like behaviors. Second, by testing the effect of group housing and social isolation on social interest, we highlighted that Shank2 mutant mice lack the typical flexibility to modulate social interest, in comparison with wild-type littermates. Finally, we established a new protocol to test for social recognition in a social context. We used this protocol to show that Shank2 mutant mice were able to discriminate familiar and unknown conspecifics in free interactions. Altogether, these studies shed some light on specific aspects of the behavioral defects displayed by the Shank2 mouse model. Such information could be used to orient therapeutic strategies and to design more specific tests to characterize the complex behavior of mouse models of autism."	"Sex Hormones Regulate SHANK Expression. Autism spectrum disorders (ASD) have a higher prevalence in male individuals compared to females, with a ratio of affected boys compared to girls of 4:1 for ASD and 11:1 for Asperger syndrome. Mutations in the SHANK genes (comprising SHANK1, SHANK2 and SHANK3) coding for postsynaptic scaffolding proteins have been tightly associated with ASD. As early brain development is strongly influenced by sex hormones, we investigated the effect of dihydrotestosterone (DHT) and 17β-estradiol on SHANK expression in a human neuroblastoma cell model. Both sex hormones had a significant impact on the expression of all three SHANK genes, which could be effectively blocked by androgen and estrogen receptor antagonists. In neuron-specific androgen receptor knock-out mice (Ar<sup>NesCre</sup>), we found a nominal significant reduction of all Shank genes at postnatal day 7.5 in the cortex. In the developing cortex of wild-type (WT) CD1 mice, a sex-differential protein expression was identified for all Shanks at embryonic day 17.5 and postnatal day 7.5 with significantly higher protein levels in male compared to female mice. Together, we could show that SHANK expression is influenced by sex hormones leading to a sex-differential expression, thus providing novel insights into the sex bias in ASD."	"[Role of NRXN-NLGN-SHANK pathway gene variations in the pathogenesis of autism spectrum disorders]. Autism spectrum disorders (ASDs) comprise a group of common neurodevelopmental disorders whose pathogenesis remains unclear. More than 100 genes have been associated with ASDs, some of which have shown to play important roles in the development and function of synapses, a crucial step of information transmission between neurons. Studies have found abnormalities in synaptic transmission, density, and structures in the brains of autistic patients. NRXN-NLGN-SHANK pathway has been associated with synaptic function of the brain, and its primary role is to regulate synaptic formation, elimination, plasticity and maturation. Genes including NRXN, NLGN, SHANK, and PSD95 are involved in the NRXN-NLGN-SHANK pathway. Mutations of such genes may lead to dysfunction of the pathway and ASDs-related phenotypes found in patients and animal models. This paper has provided a review for the research progress made on the mutations of NRXN-NLGN-SHANK pathway related genes and their roles in the pathogenesis of ASDs."	"Identification of differentially expressed genes in synovial tissue of rheumatoid arthritis and osteoarthritis in patients. Rheumatoid arthritis (RA) and osteoarthritis (OA) are the common joints disorder in the world. Although they have showed the analogous clinical manifestation and overlapping cellular and molecular foundation, the pathogenesis of RA and OA were different. The pathophysiologic mechanisms of arthritis in RA and OA have not been investigated thoroughly. Thus, the aim of study is to identify the potential crucial genes and pathways associated with RA and OA and further analyze the molecular mechanisms implicated in genesis. First, we compared gene expression profiles in synovial tissue between RA and OA from the National Center of Biotechnology Information (NCBI) Gene Expression Omnibus (GEO) database. Gene Expression Series (GSE) 1919, GSE55235, and GSE36700 were downloaded from the GEO database, including 20 patients of OA and 21 patients of RA. Differentially expressed genes (DEGs) including &quot;CXCL13,&quot; &quot;CD247,&quot; &quot;CCL5,&quot; &quot;GZMB,&quot; &quot;IGKC,&quot; &quot;IL7R,&quot; &quot;UBD///GABBR1,&quot; &quot;ADAMDEC1,&quot; &quot;BTC,&quot; &quot;AIM2,&quot; &quot;SHANK2,&quot; &quot;CCL18,&quot; &quot;LAMP3,&quot; &quot;CR1,&quot; and &quot;IL32.&quot; Second, Gene Ontology analyses revealed that DEGs were significantly enriched in integral component of extracellular space, extracellular region, and plasma membrane in the molecular function group. Signaling pathway analyses indicated that DEGs had common pathways in chemokine signaling pathway, cytokine-cytokine receptor interaction, and cytosolic DNA-sensing pathway. Third, DEGs showed the complex DEGs protein-protein interaction network with the Coexpression of 83.22%, Shared protein domains of 8.40%, Colocalization of 4.76%, Predicted of 2.87%, and Genetic interactions of 0.75%. In conclusion, the novel DEGs and pathways between RA and OA identified in this study may provide new insight into the underlying molecular mechanisms of RA."	"Effect of the autism-associated lncRNA Shank2-AS on architecture and growth of neurons. The pathogenic mechanism of autism is complex, and current research has shown that long noncoding RNAs (lncRNAs) may play important roles in this process. The antisense lncRNA of SH3 and multiple ankyrin repeat domains 2 (Shank2-AS) is upregulated in patients with autism spectrum disorder (ASD), whereas the expression of its sense strand gene Shank2 is downregulated. In neuronal cells, Shank2-AS and Shank2 can form a double-stranded RNA and inhibit Shank2 expression. Overexpression of Shank2-AS decreases neurite numbers and lengths, thereby inhibiting the proliferation of neuronal cells and promoting their apoptosis. Overexpression of Shank2 inhibits the abovementioned effects of Shank2-AS, and transfection of a vector containing the 10th intron of Shank2 (Shank2-AS is reverse-transcribed from this region) also blocks the function of Shank2-AS. Shank2 small interfering RNA plays a role similar to Shank2-AS. Therefore, Shank2-AS is abnormally expressed in patients with ASD and may affect the structure and growth of neurons by regulating Shank2 expression, thereby facilitating the development of ASD."	"Oncogenic drivers in 11q13 associated with prognosis and response to therapy in advanced oropharyngeal carcinomas. To identify potential molecular drivers associated with prognosis and response to treatment in advanced oropharyngeal squamous cell carcinomas (OPSCC). Thirty-three OPSCC biopsies from untreated Brazilian patients were evaluated for human papilloma virus genotyping, genome wide copy number alterations and gene expression profiling. Data were integrated using CONEXIC algorithm. Validation with TCGA dataset and confirmation by RT-qPCR of candidate genes were performed. High-risk HPV positive cases, detected in 55% of advanced OPSCC, were associated with better outcome. Losses of 8p11.23-p11.22, 14q11.1-q11.2 and 15q11.2, and gains of 11q13.2 and 11q13.2-q13.3 were detected as recurrent alterations. Gains of 3q26.31 and 11q13.2 and losses of 9p21.3 were exclusively detected in HPV-negative tumors. Two clusters of expression profiles were observed, being one composed mostly by HPV positive cases (83%). HPV-positive enriched cluster showed predominantly immune response-related pathways. Integrative analysis identified 10 modulators mapped in 11q13, which were frequently cancer-related. These 10 genes showed copy number gains, overexpression and an association with worse survival, further validated by TCGA database analyses. Overexpression of four genes (ORAOV1, CPT1A, SHANK2 and PPFIA1) evaluated by RT-qPCR confirmed their association with poor survival. Multivariate analysis showed that PPFIA1 overexpression and HPV status are independent prognostic markers. Moreover, SHANK2 overexpression was significantly associated with incomplete response to treatment. The integrative genomic and transcriptomic data revealed potential driver genes mapped in 11q13 associated with worse prognosis and response to treatment, giving fundamentals for the identification of novel therapeutic targets in OPSCC."	"Distinct Phenotypes of Shank2 Mouse Models Reflect Neuropsychiatric Spectrum Disorders of Human Patients With SHANK2 Variants. The SHANK scaffolding proteins are important organizers for signaling proteins in the postsynapse of excitatory neurons. The functional significance of SHANK proteins becomes apparent by the wide spectrum of neurodevelopmental and neuropsychiatric disorders associated with SHANK variants in human patients. A similar diversity of neuropsychiatric-like phenotypes is described for numerous Shank2 and Shank3 knockout (KO) mouse lines. In this review, we will focus on and discuss the experimental results obtained from different, but genetically related and therefore comparable, Shank2 mouse models. First, we will describe the distinct SHANK2 variant-mediated neurodevelopmental and neuropsychiatric disorders in human patients. Then we will discuss the current knowledge of the expressed SHANK2 isoforms in the mouse, and we will describe the genetic strategies used for generating three conventional and seven conditional Shank2 mouse lines. The distinct impairments i.e., autistic-like and mania-like behavior and the alterations on the molecular, electrophysiological and behavioral levels will be compared between the different Shank2 mouse models. We will present our view as to why in these mouse models a spectrum of phenotypes can arise from similar Shank2 gene manipulations and how Shank2 mutant mice can be used and should be analyzed on the behavioral level in future research."	"Solution structures of the SH3 domains from Shank scaffold proteins and their interactions with Cav1.3 calcium channels. Shank proteins are abundant scaffold proteins in the postsynaptic density (PSD) region of brain synapses. Mutations in Shank proteins are associated with autism, schizophrenia, and Alzheimer's disease. To gain insights into Shank protein interactions at the PSD, we determined the solution structures of the src homology 3 (SH3) domains of all three mammalian Shank proteins. Our findings indicate that they have identical and typical SH3 folding motifs, but unusual target-binding pockets. An investigation into the interaction between the Shank SH3 domains and the proline-rich region of the Cav1.3 calcium channel revealed an atypical interaction in which the highly acidic specificity binding pocket of the SH3 domains binds to a Cav1.3 region containing a cluster of three Arg residues. Our study provides insights into Shank SH3-mediated interactions."	"Defective Synapse Maturation and Enhanced Synaptic Plasticity in Shank2 Δex7<sup>-/-</sup> Mice. Autism spectrum disorders (ASDs) are neurodevelopmental disorders with a strong genetic etiology. Since mutations in human SHANK genes have been found in patients with autism, genetic mouse models are used for a mechanistic understanding of ASDs and the development of therapeutic strategies. SHANKs are scaffold proteins in the postsynaptic density of mammalian excitatory synapses with proposed functions in synaptogenesis, regulation of dendritic spine morphology, and instruction of structural synaptic plasticity. In contrast to all studies so far on the function of SHANK proteins, we have previously observed enhanced synaptic plasticity in Shank2 Δex7<sup>-/-</sup> mice. In a series of experiments, we now reproduce these results, further explore the synaptic phenotype, and directly compare our model to the independently generated Shank2 Δex6-7<sup>-/-</sup> mice. Minimal stimulation experiments reveal that Shank2 Δex7<sup>-/-</sup> mice possess an excessive fraction of silent (i.e., α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid, short, AMPA receptor lacking) synapses. The synaptic maturation deficit emerges during the third postnatal week and constitutes a plausible mechanistic explanation for the mutants' increased capacity for long-term potentiation, both in vivo and in vitro. A direct comparison with Shank2 Δex6-7<sup>-/-</sup> mice adds weight to the hypothesis that both mouse models show a different set of synaptic phenotypes, possibly due to differences in their genetic background. These findings add to the diversity of synaptic phenotypes in neurodevelopmental disorders and further support the supposed existence of &quot;modifier genes&quot; in the expression and inheritance of ASDs."	"Eighteen-year-old man with autism, obsessive compulsive disorder and a SHANK2 variant presents with severe anorexia that responds to high-dose fluoxetine. The SHANK2 gene codes for a protein involved in organising the postsynaptic density and disruptions have been associated with autism spectrum disorders (ASDs). ASDs are frequently comorbid with intellectual disability and anxiety disorders and emerging evidence suggests potentially common aetiologies. Here, we report the case of an 18-year-old man with ASD who presented with severe anorexia due to fear of food contamination, food avoidance and stereotypies attributable to underlying obsessive compulsive disorder (OCD). The patient was found to be heterozygous for c.2518C&gt;T (p.Pro840Ser), a likely damaging coding variant in the proline rich region of SHANK2 Interestingly, the patient's disordered eating behaviour began to improve only after high-dose fluoxetine was initiated to target OCD symptoms. Overall, this case highlights the utility of molecular genetic testing in clinical psychiatry and provides an example of how genetic information can inform clinicians in the treatment of complex neuropsychiatric syndromes."	"Heterogeneity of Cell Surface Glutamate and GABA Receptor Expression in Shank and CNTN4 Autism Mouse Models. Autism spectrum disorder (ASD) refers to a large set of neurodevelopmental disorders, which have in common both repetitive behavior and abnormalities in social interactions and communication. Interestingly, most forms of ASD have a strong genetic contribution. However, the molecular underpinnings of this disorder remain elusive. The SHANK3 gene (and to a lesser degree SHANK2) which encode for the postsynaptic density (PSD) proteins SHANK3/SHANK2 and the CONTACTIN 4 gene which encodes for the neuronal glycoprotein CONTACTIN4 (CNTN4) exhibit mutated variants which are associated with ASD. Like many of the other genes associated with ASD, both SHANKs and CNTN4 affect synapse formation and function and are therefore related to the proper development and signaling capability of excitatory and inhibitory neuronal networks in the adult mammal brain. In this study, we used mutant/knock-out mice of Shank2 (Shank2<sup>-/-</sup>), Shank3 (Shank3αβ<sup>-/-</sup>), and Cntn4 (Cntn4<sup>-/-</sup>) as ASD-models to explore whether these mice share a molecular signature in glutamatergic and GABAergic synaptic transmission in ASD-related brain regions. Using a biotinylation assay and subsequent western blotting we focused our analysis on cell surface expression of several ionotropic glutamate and GABA receptor subunits: GluA1, GluA2, and GluN1 were analyzed for excitatory synaptic transmission, and the α1 subunit of the GABAA receptor was analyzed for inhibitory synaptic transmission. We found that both Shank2<sup>-/-</sup> and Shank3αβ<sup>-/-</sup> mice exhibit reduced levels of several cell surface glutamate receptors in the analyzed brain regions-especially in the striatum and thalamus-when compared to wildtype controls. Interestingly, even though Cntn4<sup>-/-</sup> mice also show reduced levels of some cell surface glutamate receptors in the cortex and hippocampus, increased levels of cell surface glutamate receptors were found in the striatum. Moreover, Cntn4<sup>-/-</sup> mice do not only show brain region-specific alterations in cell surface glutamate receptors but also a downregulation of cell surface GABA receptors in several of the analyzed brain regions. The results of this study suggest that even though mutations in defined genes can be associated with ASD this does not necessarily result in a common molecular phenotype in surface expression of glutamatergic and GABAergic receptor subunits in defined brain regions."	"Shank2 Deletion in Parvalbumin Neurons Leads to Moderate Hyperactivity, Enhanced Self-Grooming and Suppressed Seizure Susceptibility in Mice. Shank2 is an abundant postsynaptic scaffolding protein implicated in neurodevelopmental and psychiatric disorders, including autism spectrum disorders (ASD). Deletion of Shank2 in mice has been shown to induce social deficits, repetitive behaviors, and hyperactivity, but the identity of the cell types that contribute to these phenotypes has remained unclear. Here, we report a conditional mouse line with a Shank2 deletion restricted to parvalbumin (PV)-positive neurons (Pv-Cre;Shank2<sup>fl/fl</sup> mice). These mice display moderate hyperactivity in both novel and familiar environments and enhanced self-grooming in novel, but not familiar, environments. In contrast, they showed normal levels of social interaction, anxiety-like behavior, and learning and memory. Basal brain rhythms in Pv-Cre;Shank2<sup>fl/fl</sup> mice, measured by electroencephalography, were normal, but susceptibility to pentylenetetrazole (PTZ)-induced seizures was decreased. These results suggest that Shank2 deletion in PV-positive neurons leads to hyperactivity, enhanced self-grooming and suppressed brain excitation."	"Hyperactivity and Hypermotivation Associated With Increased Striatal mGluR1 Signaling in a Shank2 Rat Model of Autism. Mutations in the SHANK family of genes have been consistently identified in genetic and genomic screens of autism spectrum disorder (ASD). The functional overlap of SHANK with several other ASD-associated genes suggests synaptic dysfunction as a convergent mechanism of pathophysiology in ASD. Although many ASD-related mutations result in alterations to synaptic function, the nature of those dysfunctions and the consequential behavioral manifestations are highly variable when expressed in genetic mouse models. To investigate the phylogenetic conservation of phenotypes resultant of Shank2 loss-of-function in a translationally relevant animal model, we generated and characterized a novel transgenic rat with a targeted mutation of the Shank2 gene, enabling an evaluation of gene-associated phenotypes, the elucidation of complex behavioral phenotypes, and the characterization of potential translational biomarkers. The Shank2 loss-of-function mutation resulted in a notable phenotype of hyperactivity encompassing hypermotivation, increased locomotion, and repetitive behaviors. Mutant rats also expressed deficits in social behavior throughout development and in the acquisition of operant tasks. The hyperactive phenotype was associated with an upregulation of mGluR1 expression, increased dendritic branching, and enhanced long-term depression (LTD) in the striatum but opposing morphological and cellular alterations in the hippocampus (HP). Administration of the mGluR1 antagonist JNJ16259685 selectively normalized the expression of striatally mediated repetitive behaviors and physiology but had no effect on social deficits. Finally, Shank2 mutant animals also exhibited alterations in electroencephalography (EEG) spectral power and event-related potentials, which may serve as translatable EEG biomarkers of synaptopathic alterations. Our results show a novel hypermotivation phenotype that is unique to the rat model of Shank2 dysfunction, in addition to the traditional hyperactive and repetitive behaviors observed in mouse models. The hypermotivated and hyperactive phenotype is associated with striatal dysfunction, which should be explored further as a targetable mechanism for impairment in ASD."	"SHANK3 variant as a cause of nonsyndromal autism in an 11-year-old boy and a review of published literature. Autism spectrum disorder (ASD) encompasses a spectrum of pervasive neuropsychiatric disorders characterized by deficits in social interaction, communication, unusual and repetitive behaviours. The aetiology of ASD is believed to involve complex interactions between genetic and environmental factors; it can be further classified as syndromic or nonsyndromic, according to whether it is the primary diagnosis or secondary to an existing condition where both common and rare genetic variants contribute to the development of ASD or are clearly causal. The prevalence of ASD in children is increasing with higher rates of diagnosis and an estimated one in 100 affected in the UK. Given that heritability is a major contributing factor, we aim to discuss research findings to-date in the context of a high-risk autism candidate gene, SHANK3 (SH3 and multiple ankyrin repeat domain 3), with its loss resulting in synaptic function disruption. We present a 10-year-old patient with a pathogenic de novo heterozygous c.1231delC, p.Arg411Val frameshift variant in SHANK3. He presented with severe autism, attention deficit hyperactivity disorder and pathological demand avoidance, on a background of developmental impairment and language regression. The number of genes associated with autism is ever increasing. It is a heterogeneous group of disorders with no single gene conferring pathogenesis in the majority of cases. Genetic abnormalities can be detected in ~15% of ASD and these range from copy number variants in 16p11.2 and 15q13.2q13.3 to several well-known genetic disorders including tuberous sclerosis and fragile X syndrome. Further, high confidence autism genes include but are not limited to NRXN, NLGN3, NLGN4, SHANK2 and SHANK3."	"Genetic association between SHANK2 polymorphisms and susceptibility to autism spectrum disorder. Autism spectrum disorder (ASD), as one of early-onset neurodevelopmental disorders, is characterized by the following symptoms, including repetitive and stereotyped behaviors, impairments in social interaction, and dysfunctions in communication. ASD afflicts ∼1.5% of children aged 8 years in America and ∼4.5‰ of children aged 0-6 years in China. Existing studies suggest that SH3 and multiple ankyrin repeat domains protein 2 (SHANK2) is implicated in ASD. However, associations between SNPs in SHANK2 introns and ASD risk have been less investigated. In this study, on the basis of case-control study (226 cases and 239 controls), we selected nine SNPs (rs76717360, rs11236697, rs74336682, rs77950809, rs17428526, rs35459123, rs75357229, rs61887413, and rs77716438) in SHANK2 introns to investigate genetic associations between SHANK2 polymorphisms and susceptibility to ASD using improved multiple ligase detection reaction (iMLDR). We identified that the polymorphism of rs76717360 was associated with risk of ASD in Chinese population; the haplotype of rs11236697 C (T) or rs74336682 G (A) increased ASD risk; and haplotypes with ≥ five SNPs containing rs11236697 and rs74336682 were associated with risk of ASD. Our results indicate SHANK2 is a susceptibility gene for ASD in Chinese children. © 2018 IUBMB Life, 70(8):763-776, 2018."	"Prospects of Zinc Supplementation in Autism Spectrum Disorders and Shankopathies Such as Phelan McDermid Syndrome. The loss of one copy of SHANK3 (SH3 and multiple ankyrin repeat domains 3) in humans highly contributes to Phelan McDermid syndrome (PMDS). In addition, SHANK3 was identified as a major autism candidate gene. Interestingly, the protein encoded by the SHANK3 gene is regulated by zinc. While zinc deficiency depletes synaptic pools of Shank3, increased zinc levels were shown to promote synaptic scaffold formation. Therefore, the hypothesis arises that patients with PMDS and Autism caused by Shankopathies, having one intact copy of SHANK3 left, may benefit from zinc supplementation, as elevated zinc may drive remaining Shank3 into the post-synaptic density (PSD) and may additional recruit Shank2, a second zinc-dependent member of the SHANK gene family. Further, elevated synaptic zinc levels may modulate E/I ratios affecting other synaptic components such as NMDARs. However, several factors need to be considered in relation to zinc supplementation such as the role of Shank3 in the gastrointestinal (GI) system-the location of zinc absorption in humans. Therefore, here, we briefly discuss the prospect and impediments of zinc supplementation in disorders affecting Shank3 such as PMDS and propose a model for most efficacious supplementation."	"A direct regulatory link between microRNA-137 and SHANK2: implications for neuropsychiatric disorders. Mutations in the SHANK genes, which encode postsynaptic scaffolding proteins, have been linked to a spectrum of neurodevelopmental disorders. The SHANK genes and the schizophrenia-associated microRNA-137 show convergence on several levels, as they are both expressed at the synapse, influence neuronal development, and have a strong link to neurodevelopmental and neuropsychiatric disorders like intellectual disability, autism, and schizophrenia. This compiled evidence raised the question if the SHANKs might be targets of miR-137. In silico analysis revealed a putative binding site for microRNA-137 (miR-137) in the SHANK2 3'UTR, while this was not the case for SHANK1 and SHANK3. Luciferase reporter assays were performed by overexpressing wild type and mutated SHANK2-3'UTR and miR-137 in human neuroblastoma cells and mouse primary hippocampal neurons. miR-137 was also overexpressed or inhibited in hippocampal neurons, and Shank2 expression was analyzed by quantitative real-time PCR and Western blot. Additionally, expression levels of experimentally validated miR-137 target genes were analyzed in the dorsolateral prefrontal cortex (DLPFC) of schizophrenia and control individuals using the RNA-Seq data from the CommonMind Consortium. miR-137 directly targets the 3'UTR of SHANK2 in a site-specific manner. Overexpression of miR-137 in mouse primary hippocampal neurons significantly lowered endogenous Shank2 protein levels without detectable influence on mRNA levels. Conversely, miR-137 inhibition increased Shank2 protein expression, indicating that miR-137 regulates SHANK2 expression by repressing protein translation rather than inducing mRNA degradation. To find out if the miR-137 signaling network is altered in schizophrenia, we compared miR-137 precursor and miR-137 target gene expression in the DLPFC of schizophrenia and control individuals using the CommonMind Consortium RNA sequencing data. Differential expression of 23% (16/69) of known miR-137 target genes was detected in the DLPFC of schizophrenia individuals compared with controls. We propose that in further targets (e.g., SHANK2, as described in this paper) which are not regulated on RNA level, effects may only be detectable on protein level. Our study provides evidence that a direct regulatory link exists between miR-137 and SHANK2 and supports the finding that miR-137 signaling might be altered in schizophrenia."	"nArgBP2-SAPAP-SHANK, the core postsynaptic triad associated with psychiatric disorders. Despite the complex genetic architecture, a broad spectrum of psychiatric disorders can still be caused by mutation(s) in the same gene. These disorders are interrelated with overlapping causative mechanisms including variations in the interaction among the risk-associated proteins that may give rise to the specific spectrum of each disorder. Additionally, multiple lines of evidence implicate an imbalance between excitatory and inhibitory neuronal activity (E/I imbalance) as the shared key etiology. Thus, understanding the molecular mechanisms underlying E/I imbalance provides essential insight into the etiology of these disorders. One important class of candidate risk genes is the postsynaptic scaffolding proteins, such as nArgBP2, SAPAP, and SHANK that regulate the actin cytoskeleton in dendritic spines of excitatory synapses. This review will cover and discuss recent studies that examined how these proteins, especially nArgBP2, are associated with psychiatric disorders. Next, we propose a possibility that variations in the interaction among these proteins in a specific brain region might contribute to the onset of diverse phenotypes of psychiatric disorders."	"Association between DNA methylation in cord blood and maternal smoking: The Hokkaido Study on Environment and Children's Health. Maternal smoking is reported to cause adverse effects on the health of the unborn child, the underlying mechanism for which is thought to involve alterations in DNA methylation. We examined the effects of maternal smoking on DNA methylation in cord blood, in 247 mother-infant pairs in the Sapporo cohort of the Hokkaido Study, using the Infinium HumanMethylation 450K BeadChip. We first identified differentially methylated CpG sites with a false discovery rate (FDR) of &lt;0.05 and the magnitude of DNA methylation changes (|β| &gt;0.02) from the pairwise comparisons of never-smokers (Ne-S), sustained-smokers (Su-S), and stopped-smokers (St-S). Subsequently, secondary comparisons between St-S and Su-S revealed nine common sites that mapped to ACSM3, AHRR, CYP1A1, GFI1, SHANK2, TRIM36, and the intergenic region between ANKRD9 and RCOR1 in Ne-S vs. Su-S, and one common CpG site mapping to EVC2 in Ne-S vs. St-S. Further, we verified these CpG sites and examined neighbouring sites using bisulfite next-generation sequencing, except for AHRR cg21161138. These changes in DNA methylation implicate the effect of smoking cessation. Our findings add to the current knowledge of the association between DNA methylation and maternal smoking and suggest future studies for clarifying this relationship in disease development."	"Cell-Type-Specific Shank2 Deletion in Mice Leads to Differential Synaptic and Behavioral Phenotypes. Shank2 is an excitatory postsynaptic scaffolding protein implicated in synaptic regulation and psychiatric disorders including autism spectrum disorders. Conventional Shank2-mutant (Shank2<sup>-/-</sup>) mice display several autistic-like behaviors, including social deficits, repetitive behaviors, hyperactivity, and anxiety-like behaviors. However, cell-type-specific contributions to these behaviors have remained largely unclear. Here, we deleted Shank2 in specific cell types and found that male mice lacking Shank2 in excitatory neurons (CaMKII-Cre;Shank2<sup>fl/fl</sup>) show social interaction deficits and mild social communication deficits, hyperactivity, and anxiety-like behaviors. In particular, male mice lacking Shank2 in GABAergic inhibitory neurons (Viaat-Cre;Shank2<sup>fl/fl</sup>) display social communication deficits, repetitive self-grooming, and mild hyperactivity. These behavioral changes were associated with distinct changes in hippocampal and striatal synaptic transmission in the two mouse lines. These results indicate that cell-type-specific deletions of Shank2 in mice lead to differential synaptic and behavioral abnormalities.SIGNIFICANCE STATEMENT Shank2 is an abundant excitatory postsynaptic scaffolding protein implicated in the regulation of excitatory synapses and diverse psychiatric disorders including autism spectrum disorders. Previous studies have reported in vivo functions of Shank2 mainly using global Shank2-null mice, but it remains largely unclear how individual cell types contribute to Shank2-dependent regulation of neuronal synapses and behaviors. Here, we have characterized conditional Shank2-mutant mice carrying the Shank2 deletion in excitatory and inhibitory neurons. These mouse lines display distinct alterations of synaptic transmission in the hippocampus and striatum that are associated with differential behavioral abnormalities in social, repetitive, locomotor, and anxiety-like domains."	"Liver X Receptor Agonist GW3965 Regulates Synaptic Function upon Amyloid Beta Exposure in Hippocampal Neurons. Alzheimer's disease (AD) is a devastating neurodegenerative disease characterized by beta-amyloid (Aβ) accumulation and neurofibrillary tangles formation in the brain which are associated to synaptic deficits and dementia. Liver X receptor (LXR) agonists have been demonstrated to revert of pathologic and cognitive defects in murine models of AD through the regulation of Apolipoprotein E, ATP-Binding Cassette A1 (ABCA1), by dampening neuroinflammation and also by reducing the levels of amyloid-β (Aβ) accumulation in the brain. However, the role of LXR with regard to the regulation of synaptic function remains relatively understudied. In the present paper, we analyzed the in-vitro effect of the LXR agonist GW3965 on synaptic function upon exposure of primary hippocampal cultures to oligomeric amyloid-β (oAβ(1-42)). We showed that oAβ(1-42) exposure significantly decreased the density of mature (mushroom shaped) dendritic spines density and synaptic contacts number. oAβ(1-42) also modulates the expression of pre- (VGlut1, SYT1, SV2A) and post-synaptic (SHANK2, NMDA) proteins, it decreases the expression of PINK1, and increases ROCKII, and activates of caspase-3; these changes were prevented by the pre-treating neuronal cultures with GW3965. These results show further support the role of the LXR agonist GW3965 in synaptic physiology and highlight its potential as an alternative pharmacological strategy for AD."	"Shank Proteins Differentially Regulate Synaptic Transmission. Shank proteins, one of the principal scaffolds in the postsynaptic density (PSD) of the glutamatergic synapses, have been associated with autism spectrum disorders and neuropsychiatric diseases. However, it is not known whether different Shank family proteins have distinct functions in regulating synaptic transmission, and how they differ from other scaffold proteins in this aspect. Here, we investigate the role of Shanks in regulating glutamatergic synaptic transmission at rat hippocampal SC-CA1 synapses, using lentivirus-mediated knockdown and molecular replacement combined with dual whole-cell patch clamp in hippocampal slice culture. In line with previous findings regarding PSD-MAGUK scaffold manipulation, we found that loss of scaffold proteins via knockdown of Shank1 or Shank2, but not Shank3, led to a reduction of the number but not the unitary response of AMPAR-containing synapses. Only when both Shank1 and Shank2 were knocked down, were both the number and the unitary response of active synapses reduced. This reduction was accompanied by a decrease in NMDAR-mediated synaptic response, indicating more profound deficits in synaptic transmission. Molecular replacement with Shank2 and Shank3c rescued the synaptic transmission to the basal level, and the intact sterile α-motif (SAM) of Shank proteins is required for maintaining glutamatergic synaptic transmission. We also found that altered neural activity did not influence the effect of Shank1 or Shank2 knockdown on AMPAR synaptic transmission, in direct contrast to the activity dependence of the effect of PSD-95 knockdown, revealing differential interaction between activity-dependent signaling and scaffold protein families in regulating synaptic AMPAR function."	"SHANK genes in autism: Defining therapeutic targets. NA"	"Abnormalities in interactions of Rho GTPases with scaffolding proteins contribute to neurodevelopmental disorders. Accumulating evidence suggests that Rho GTPases, together with scaffolding SHANK proteins, and associated signaling pathways play a role in the development of autism symptoms in various conditions. Research data have brought information on multiple intracellular signaling pathways, including Rho-associated protein kinases and serine/threonine-protein kinases involved in cytoskeleton rearranging. Alterations in downstream effectors of GTPase signaling pathways are associated with neurodevelopmental disorders. Bioinformatics and experimental data show that complex genetic and molecular defects (GTPases, actin-binding proteins, kinases, neuropeptides) can result in neuronal remodeling, leading to the functional connectivity deficits that manifest as the heterogeneous autism spectrum phenotype. Finally, the known hormone and neuropeptide oxytocin appears to be a factor for consideration in therapeutic intervention."	"A Presynaptic Function of Shank Protein in Drosophila. Human genetic studies support that loss-of-function mutations in the SH3 domain and ankyrin repeat containing family proteins (SHANK1-3), the large synaptic scaffolding proteins enriched at the postsynaptic density of excitatory synapses, are causative for autism spectrum disorder and other neuropsychiatric disorders in humans. To better understand the in vivo functions of Shank and facilitate dissection of neuropathology associated with SHANK mutations in human, we generated multiple mutations in the Shank gene, the only member of the SHANK family in Drosophila melanogaster Both male and female Shank null mutants were fully viable and fertile with no apparent morphological or developmental defects. Expression analysis revealed apparent enrichment of Shank in the neuropils of the CNS. Specifically, Shank coexpressed with another PSD scaffold protein, Homer, in the calyx of mushroom bodies in the brain. Consistent with high expression in mushroom body calyces, Shank mutants show an abnormal calyx structure and reduced olfactory acuity. These morphological and functional phenotypes were fully rescued by pan-neuronal reexpression of Shank, and only partially rescued by presynaptic but no rescue by postsynaptic reexpression of Shank. Our findings thus establish a previously unappreciated presynaptic function of Shank.SIGNIFICANCE STATEMENT Mutations in SHANK family genes are causative for idiopathic autism spectrum disorder. To understand the neural function of Shank, a large scaffolding protein enriched at the postsynaptic densities, we examined the role of Drosophila Shank in synapse development at the peripheral neuromuscular junctions and the central mushroom body calyx. Our results demonstrate that, in addition to its conventional postsynaptic function, Shank also acts presynaptically in synapse development in the brain. This study offers novel insights into the synaptic role of Shank."	"Deficiency of Shank2 causes mania-like behavior that responds to mood stabilizers. Genetic defects in the synaptic scaffolding protein gene, SHANK2, are linked to a variety of neuropsychiatric disorders, including autism spectrum disorders, schizophrenia, intellectual disability, and bipolar disorder, but the molecular mechanisms underlying the pleotropic effects of SHANK2 mutations are poorly understood. We generated and characterized a line of Shank2 mutant mice by deleting exon 24 (Δe24). Shank2Δe24-/- mice engage in significantly increased locomotor activity, display abnormal reward-seeking behavior, are anhedonic, have perturbations in circadian rhythms, and show deficits in social and cognitive behaviors. While these phenotypes recapitulate the pleotropic behaviors associated with human SHANK2-related disorders, major behavioral features in these mice are reminiscent of bipolar disorder. For instance, their hyperactivity was augmented with amphetamine but was normalized with the mood stabilizers lithium and valproate. Shank2 deficiency limited to the forebrain recapitulated the bipolar mania phenotype. The composition and functions of NMDA and AMPA receptors were altered at Shank2-deficient synapses, hinting toward the mechanism underlying these behavioral abnormalities. Human genetic findings support construct validity, and the behavioral features in Shank2 Δe24 mice support face and predictive validities of this model for bipolar mania. Further genetic studies to understand the contribution of SHANK2 deficiencies in bipolar disorder are warranted."	"Behavioral phenotypes and neurobiological mechanisms in the Shank1 mouse model for autism spectrum disorder: A translational perspective. Autism spectrum disorder (ASD) is a heterogeneous group of neurodevelopmental disorders, characterized by early-onset deficits in social behavior and communication across multiple contexts, together with restricted, repetitive patterns of behavior, interests, or activities. ASD is among the most heritable neuropsychiatric conditions with heritability estimates higher than 80%, and while available evidence points to a complex set of genetic factors, the SHANK (also known as ProSAP) gene family has emerged as one of the most promising candidates. Several genetic Shank mouse models for ASD were generated, including Shank1 knockout mice. Behavioral studies focusing on the Shank1 knockout mouse model for ASD included assays for detecting ASD-relevant behavioral phenotypes in the following domains: (I) social behavior, (II) communication, and (III) repetitive and stereotyped patterns of behavior. In addition, assays for detecting behavioral phenotypes with relevance to comorbidities in ASD were performed, including but not limited to (IV) cognitive functioning. Here, we summarize and discuss behavioral and neuronal findings obtained in the Shank1 knockout mouse model for ASD. We identify open research questions by comparing such findings with the symptoms present in humans diagnosed with ASD and carrying SHANK1 deletions. We conclude by discussing the implications of the behavioral and neuronal phenotypes displayed by the Shank1 knockout mouse model for the development of future pharmacological interventions in ASD."	"Genomic characterization of tobacco/nut chewing HPV-negative early stage tongue tumors identify MMP10 asa candidate to predict metastases. Nodal metastases status among early stage tongue squamous cell cancer patients plays a decisive role in the choice of treatment, wherein about 70% patients can be spared from surgery with an accurate prediction of negative pathological lymph node status. This underscores an unmet need for prognostic biomarkers to stratify the patients who are likely to develop metastases. We performed high throughput sequencing of fifty four samples derived from HPV negative early stage tongue cancer patients habitual of chewing betel nuts, areca nuts, lime or tobacco using whole exome (n=47) and transcriptome (n=17) sequencing that were analyzed using in-house computational tools. Additionally, gene expression meta-analyses were carried out for 253 tongue cancer samples. The candidate genes were validated using qPCR and immuno-histochemical analysis in an extended set of 50 early primary tongue cancer samples. Somatic analysis revealed a classical tobacco mutational signature C:G&gt;A:T transversion in 53% patients that were mutated in TP53, NOTCH1, CDKN2A, HRAS, USP6, PIK3CA, CASP8, FAT1, APC, and JAK1. Similarly, significant gains at genomic locus 11q13.3 (CCND1, FGF19, ORAOV1, FADD), 5p15.33 (SHANK2, MMP16, TERT), and 8q24.3 (BOP1); and, losses at 5q22.2 (APC), 6q25.3 (GTF2H2) and 5q13.2 (SMN1) were observed in these samples. Furthermore, an integrated gene-expression analysis of 253 tongue tumors suggested an upregulation of metastases-related pathways and over-expression of MMP10 in 48% tumors that may be crucial to predict nodal metastases in early tongue cancer patients. In overall, we present the first descriptive portrait of somatic alterations underlying the genome of tobacco/nut chewing HPV-negative early tongue cancer, and identify MMP10 asa potential prognostic biomarker to stratify those likely to develop metastases."	"Seven-CpG-based prognostic signature coupled with gene expression predicts survival of oral squamous cell carcinoma. DNA methylation has started a recent revolution in genomics biology by identifying key biomarkers for multiple cancers, including oral squamous cell carcinoma (OSCC), the most common head and neck squamous cell carcinoma. A multi-stage screening strategy was used to identify DNA-methylation-based signatures for OSCC prognosis. We used The Cancer Genome Atlas (TCGA) data as training set which were validated in two independent datasets from Gene Expression Omnibus (GEO). The correlation between DNA methylation and corresponding gene expression and the prognostic value of the gene expression were explored as well. The seven DNA methylation CpG sites were identified which were significantly associated with OSCC overall survival. Prognostic signature, a weighted linear combination of the seven CpG sites, successfully distinguished the overall survival of OSCC patients and had a moderate predictive ability for survival [training set: hazard ratio (HR) = 3.23, P = 5.52 × 10<sup>-10</sup>, area under the curve (AUC) = 0.76; validation set 1: HR = 2.79, P = 0.010, AUC = 0.67; validation set 2: HR = 3.69, P = 0.011, AUC = 0.66]. Stratification analysis by human papillomavirus status, clinical stage, age, gender, smoking status, and grade retained statistical significance. Expression of genes corresponding to candidate CpG sites (AJAP1, SHANK2, FOXA2, MT1A, ZNF570, HOXC4, and HOXB4) was also significantly associated with patient's survival. Signature integrating of DNA methylation, gene expression, and clinical information showed a superior ability for prognostic prediction (AUC = 0.78). Prognostic signature integrated of DNA methylation, gene expression, and clinical information provides a better prognostic prediction value for OSCC patients than that with clinical information only."	"Differential recruitment of E3 ubiquitin ligase complexes regulates RET isoform internalization. The RET receptor tyrosine kinase is implicated in normal development and cancer. RET is expressed as two isoforms, RET9 and RET51, with unique C-terminal tail sequences that recruit distinct protein complexes to mediate signals. Upon activation, RET isoforms are internalized with distinct kinetics, suggesting differences in regulation. Here, we demonstrate that RET9 and RET51 differ in their abilities to recruit E3 ubiquitin ligases to their unique C-termini. RET51, but not RET9, interacts with, and is ubiquitylated by CBL, which is recruited through interactions with the GRB2 adaptor protein. RET51 internalization was not affected by CBL knockout but was delayed in GRB2-depleted cells. In contrast, RET9 ubiquitylation requires phosphorylation-dependent changes in accessibility of key RET9 C-terminal binding motifs that facilitate interactions with multiple adaptor proteins, including GRB10 and SHANK2, to recruit the NEDD4 ubiquitin ligase. We showed that NEDD4-mediated ubiquitylation is required for RET9 localization to clathrin-coated pits and subsequent internalization. Our data establish differences in the mechanisms of RET9 and RET51 ubiquitylation and internalization that may influence the strength and duration of RET isoform signals and cellular outputs.This article has an associated First Person interview with the first authors of the paper."	"Environmental enrichment attenuates behavioral abnormalities in valproic acid-exposed autism model mice. We recently demonstrated that prenatal exposure to valproic acid (VPA) at embryonic day 12.5 causes autism spectrum disorder (ASD)-like phenotypes such as hypolocomotion, anxiety-like behavior, social deficits and cognitive impairment in mice and that it decreases dendritic spine density in the hippocampal CA1 region. Previous studies show that some abnormal behaviors are improved by environmental enrichment in ASD rodent models, but it is not known whether environmental enrichment improves cognitive impairment. In the present study, we examined the effects of early environmental enrichment on behavioral abnormalities and neuromorphological changes in prenatal VPA-treated mice. We also examined the role of dendritic spine formation and synaptic protein expression in the hippocampus. Mice were housed for 4 weeks from 4 weeks of age under either a standard or enriched environment. Enriched housing was found to increase hippocampal brain-derived neurotrophic factor mRNA levels in both control and VPA-exposed mice. Furthermore, in VPA-treated mice, the environmental enrichment improved anxiety-like behavior, social deficits and cognitive impairment, but not hypolocomotion. Prenatal VPA treatment caused loss of dendritic spines in the hippocampal CA1 region and decreases in mRNA levels of postsynaptic density protein-95 and SH3 and multiple ankyrin repeat domains 2 in the hippocampus. These hippocampal changes were improved by the enriched housing. These findings suggest that the environmental enrichment improved most ASD-like behaviors including cognitive impairment in the VPA-treated mice by enhancing dendritic spine function."	"Hippocampus-Dependent Goal Localization by Head-Fixed Mice in Virtual Reality. The demonstration of the ability of rodents to navigate in virtual reality (VR) has made it an important behavioral paradigm for studying spatially modulated neuronal activity in these animals. However, their behavior in such simulated environments remains poorly understood. Here, we show that encoding and retrieval of goal location memory in mice head-fixed in VR depends on the postsynaptic scaffolding protein Shank2 and the dorsal hippocampus. In our newly developed virtual cued goal location task, a head-fixed mouse moves from one end of a virtual linear track to seek rewards given at a target location along the track. The mouse needs to visually recognize the target location and stay there for a short period of time to receive the reward. Transient pharmacological blockade of fast glutamatergic synaptic transmission in the dorsal hippocampus dramatically and reversibly impaired performance of this task. Encoding and updating of virtual cued goal location memory was impaired in mice deficient in the postsynaptic scaffolding protein Shank2, a mouse model of autism that exhibits impaired spatial learning in a real environment. These results highlight the crucial roles of the dorsal hippocampus and postsynaptic protein complexes in spatial learning and navigation in VR."	"Clinical and molecular characterization of a second family with the 12q14 microdeletion syndrome and review of the literature. The 12q14 microdeletion syndrome is a rare condition characterized by low birth weight, failure to thrive, short stature, learning disabilities, and osteopoikilosis. To date, 20 cases of 12q14 deletion have been reported in the literature, displaying both phenotypic than genetic variability. We report on three familial cases, a mother and two brothers, with severe short stature. The mother and elder brother presented with osteopoikilosis while the younger brother had severe short stature and developmental delay. SNP array analysis revealed a 1.9 Mb heterozygous 12q14.2q14.3 deletion in all three patients encompassing 14 genes and 3 miRNAs. In addition, the younger brother carried a paternal 11q13.4 duplication including the SHANK2 gene. This latter patient was investigated for developmental delay and did not show osteopoikilosis, confirming the role of age in the clinical presentation of this condition. To the best of our knowledge, this is the second family described with the syndrome. Comparing the clinical and molecular data of our patients with those previously reported we performed a detailed genotype-phenotype correlation confirming the association between growth retardation and osteopoikilosis when the rearrangement includes both LEMD3 and HMGA2 genes. In addition, we suggest the XPOT, TBK1, WIF1 genes as candidates for the clinical features observed in our patients and discuss for the first time the possible involvement of some microRNAs, when deleted, in the etiology of the phenotypes in 12q14 microdeletion syndrome patients. We expect the interpretation of our findings to be useful both from a molecular point of view and for genetic counseling."	"A critical role of spinal Shank2 proteins in NMDA-induced pain hypersensitivity. Background Self-injurious behaviors (SIBs) are devastating traits in autism spectrum disorder (ASD). Although deficits in pain sensation might be one of the contributing factors underlying the development of SIBs, the mechanisms have yet to be addressed. Recently, the Shank2 synaptic protein has been considered to be a key component in ASD, and mutations of SHANK2 gene induce the dysfunction of N-methyl-D-aspartate (NMDA) receptors, suggesting a link between Shank2 and NMDA receptors in ASD. Given that spinal NMDA receptors play a pivotal role in pain hypersensitivity, we investigated the possible role of Shank2 in nociceptive hypersensitivity by examining changes in spontaneous pain following intrathecal NMDA injection in S hank2-/- ( Shank2 knock-out, KO) mice. Results Intrathecal NMDA injection evoked spontaneous nociceptive behaviors. These NMDA-induced nociceptive responses were significantly reduced in Shank2 KO mice. We also observed a significant decrease of NMDA currents in the spinal dorsal horn of Shank2 KO mice. Subsequently, we examined whether mitogen-activated protein kinase or AKT signaling is involved in this reduced pain behavior in Shank2 KO mice because the NMDA receptor is closely related to these signaling molecules. Western blotting and immunohistochemistry revealed that spinally administered NMDA increased the expression of a phosphorylated form of extracellular signal-regulated kinase (p-ERK) which was significantly reduced in Shank2 KO mice. However, p38, JNK, or AKT were not changed by NMDA administration. The ERK inhibitor, PD98059, decreased NMDA-induced spontaneous pain behaviors in a dose-dependent manner in wild-type mice. Moreover, it was found that the NMDA-induced increase in p-ERK was primarily colocalized with Shank2 proteins in the spinal cord dorsal horn. Conclusion Shank2 protein is involved in spinal NMDA receptor-mediated pain, and mutations of Shank2 may suppress NMDA-ERK signaling in spinal pain transmission. This study provides new clues into the mechanisms underlying pain deficits associated with SIB and deserves further study in patients with ASD."	"De novo 11q deletion including SHANK2 in a patient with global developmental delay. NA"	"SHANK proteins: roles at the synapse and in autism spectrum disorder. Several large-scale genomic studies have supported an association between cases of autism spectrum disorder and mutations in the genes SH3 and multiple ankyrin repeat domains protein 1 (SHANK1), SHANK2 and SHANK3, which encode a family of postsynaptic scaffolding proteins that are present at glutamatergic synapses in the CNS. An evaluation of human genetic data, as well as of in vitro and in vivo animal model data, may allow us to understand how disruption of SHANK scaffolding proteins affects the structure and function of neural circuits and alters behaviour."	"Cerebellar Shank2 Regulates Excitatory Synapse Density, Motor Coordination, and Specific Repetitive and Anxiety-Like Behaviors. Shank2 is a multidomain scaffolding protein implicated in the structural and functional coordination of multiprotein complexes at excitatory postsynaptic sites as well as in psychiatric disorders, including autism spectrum disorders. While Shank2 is strongly expressed in the cerebellum, whether Shank2 regulates cerebellar excitatory synapses, or contributes to the behavioral abnormalities observed in Shank2<sup>-/-</sup> mice, remains unexplored. Here we show that Shank2<sup>-/-</sup> mice show reduced excitatory synapse density in cerebellar Purkinje cells in association with reduced levels of excitatory postsynaptic proteins, including GluD2 and PSD-93, and impaired motor coordination in the Erasmus test. Shank2 deletion restricted to Purkinje cells (Pcp2-Cre;Shank2<sup>fl/fl</sup> mice) leads to similar reductions in excitatory synapse density, synaptic protein levels, and motor coordination. Pcp2-Cre;Shank2<sup>fl/fl</sup> mice do not recapitulate autistic-like behaviors observed in Shank2<sup>-/-</sup> mice, such as social interaction deficits, altered ultrasonic vocalizations, repetitive behaviors, and hyperactivity. However, Pcp2-Cre;Shank2<sup>fl/fl</sup> mice display enhanced repetitive behavior in the hole-board test and anxiety-like behavior in the light-dark test, which are not observed in Shank2<sup>-/-</sup> mice. These results implicate Shank2 in the regulation of cerebellar excitatory synapse density, motor coordination, and specific repetitive and anxiety-like behaviors. The postsynaptic side of excitatory synapses contains multiprotein complexes, termed the postsynaptic density, which contains receptors, scaffolding/adaptor proteins, and signaling molecules. Shank2 is an excitatory postsynaptic scaffolding protein implicated in the formation and functional coordination of the postsynaptic density and has been linked to autism spectrum disorders. Using Shank2-null mice and Shank2-conditional knock-out mice with a gene deletion restricted to cerebellar Purkinje cells, we explored functions of Shank2 in the cerebellum. We found that Shank2 regulates excitatory synapse density, motor coordination, and specific repetitive and anxiety-like behaviors, but is not associated with autistic-like social deficits or repetitive behaviors."	"DE NOVO MUTATIONS IN AUTISM IMPLICATE THE SYNAPTIC ELIMINATION NETWORK. Autism has been shown to have a major genetic risk component; the architecture of documented autism in families has been over and again shown to be passed down for generations. While inherited risk plays an important role in the autistic nature of children, de novo (germline) mutations have also been implicated in autism risk. Here we find that autism de novo variants verified and published in the literature are Bonferroni-significantly enriched in a gene set implicated in synaptic elimination. Additionally, several of the genes in this synaptic elimination set that were enriched in protein-protein interactions (CACNA1C, SHANK2, SYNGAP1, NLGN3, NRXN1, and PTEN) have been previously confirmed as genes that confer risk for the disorder. The results demonstrate that autism-associated de novos are linked to proper synaptic pruning and density, hinting at the etiology of autism and suggesting pathophysiology for downstream correction and treatment."	"Actin-Dependent Alterations of Dendritic Spine Morphology in Shankopathies. Shank proteins (Shank1, Shank2, and Shank3) act as scaffolding molecules in the postsynaptic density of many excitatory neurons. Mutations in SHANK genes, in particular SHANK2 and SHANK3, lead to autism spectrum disorders (ASD) in both human and mouse models. Shank3 proteins are made of several domains-the Shank/ProSAP N-terminal (SPN) domain, ankyrin repeats, SH3 domain, PDZ domain, a proline-rich region, and the sterile alpha motif (SAM) domain. Via various binding partners of these domains, Shank3 is able to bind and interact with a wide range of proteins including modulators of small GTPases such as RICH2, a RhoGAP protein, and βPIX, a RhoGEF protein for Rac1 and Cdc42, actin binding proteins and actin modulators. Dysregulation of all isoforms of Shank proteins, but especially Shank3, leads to alterations in spine morphogenesis, shape, and activity of the synapse via altering actin dynamics. Therefore, here, we highlight the role of Shank proteins as modulators of small GTPases and, ultimately, actin dynamics, as found in multiple in vitro and in vivo models. The failure to mediate this regulatory role might present a shared mechanism in the pathophysiology of autism-associated mutations, which leads to dysregulation of spine morphogenesis and synaptic signaling."	"Enhancing inhibitory synaptic function reverses spatial memory deficits in Shank2 mutant mice. Autism spectrum disorders (ASDs) are a group of developmental disorders that cause variable and heterogeneous phenotypes across three behavioral domains such as atypical social behavior, disrupted communications, and highly restricted and repetitive behaviors. In addition to these core symptoms, other neurological abnormalities are associated with ASD, including intellectual disability (ID). However, the molecular etiology underlying these behavioral heterogeneities in ASD is unclear. Mutations in SHANK2 genes are associated with ASD and ID. Interestingly, two lines of Shank2 knockout mice (e6-7 KO and e7 KO) showed shared and distinct phenotypes. Here, we found that the expression levels of Gabra2, as well as of GABA receptor-mediated inhibitory neurotransmission, are reduced in Shank2 e6-7, but not in e7 KO mice compared with their own wild type littermates. Furthermore, treatment of Shank2 e6-7 KO mice with an allosteric modulator for the GABAA receptor reverses spatial memory deficits, indicating that reduced inhibitory neurotransmission may cause memory deficits in Shank2 e6-7 KO mice. This article is part of the Special Issue entitled 'Ionotropic glutamate receptors'."	"Depletion of SHANK2 inhibited the osteo/dentinogenic differentiation potentials of stem cells from apical papilla. The aim of this study was to investigate the biological function of SHANK2 on the osteo/dentinogenic differentiation potentials of human stem cells from apical papilla (SCAPs). Real-time RT-PCR was used to detect the expression of SHANK2 in human mesenchymal stem cells (MSCs). Small hairpin RNA (shRNA) was used to knockdown the SHANK2 in SCAPs. The knockdown efficiency was determined by real-time RT-PCR and Western Blot. The in vitro osteo/dentinogenic differentiation potentials of SCAPs were investigated using ALP staining, ALP activity, alizarin red staining, quantitative calcium, the expression levels of DSPP, DMP1, RUNX2 and OSX. In vivo transplantation experiments in immunocompromised mice were used to evaluate the capacity of SCAPs to form bone/dentine-like structure. SHANK2 was highly expressed in dental tissue-derived MSCs compared with cells of other origins. Silencing of SHANK2 inhibited the ALP activity, mineralization, and the expressions of DSPP, DMP1, RUNX2 and OSX in SCAPs. Furthermore, in vivo transplantation experiments indicated that knock-down of SHANK2 in SCAPs generated less bone/dentin-like mineralized tissue compared with the control group. The present study demonstrated that depletion of SHANK2 inhibited the osteo/dentinogenic differentiation potentials in SCAPs, explored the new function of SHANK2, and provided useful information to elucidate the molecular mechanism underlying directed differentiation in dental tissue-derived MSCs."	"Dysfunctional cerebellar Purkinje cells contribute to autism-like behaviour in Shank2-deficient mice. Loss-of-function mutations in the gene encoding the postsynaptic scaffolding protein SHANK2 are a highly penetrant cause of autism spectrum disorders (ASD) involving cerebellum-related motor problems. Recent studies have implicated cerebellar pathology in the aetiology of ASD. Here we evaluate the possibility that cerebellar Purkinje cells (PCs) represent a critical locus of ASD-like pathophysiology in mice lacking Shank2. Absence of Shank2 impairs both PC intrinsic plasticity and induction of long-term potentiation at the parallel fibre to PC synapse. Moreover, inhibitory input onto PCs is significantly enhanced, most prominently in the posterior lobe where simple spike (SS) regularity is most affected. Using PC-specific Shank2 knockouts, we replicate alterations of SS regularity in vivo and establish cerebellar dependence of ASD-like behavioural phenotypes in motor learning and social interaction. These data highlight the importance of Shank2 for PC function, and support a model by which cerebellar pathology is prominent in certain forms of ASD."	"Recording Mouse Ultrasonic Vocalizations to Evaluate Social Communication. Mice emit ultrasonic vocalizations in different contexts throughout development and in adulthood. These vocal signals are now currently used as proxies for modeling the genetic bases of vocal communication deficits. Characterizing the vocal behavior of mouse models carrying mutations in genes associated with neuropsychiatric disorders such as autism spectrum disorders will help to understand the mechanisms leading to social communication deficits. We provide here protocols to reliably elicit ultrasonic vocalizations in pups and in adult mice. This standardization will help reduce inter-study variability due to the experimental settings. Pup isolation calls are recorded throughout development from individual pups isolated from dam and littermates. In adulthood, vocalizations are recorded during same-sex interactions (without a sexual component) by exposing socially motivated males or females to an unknown same-sex conspecific. We also provide a protocol to record vocalizations from adult males exposed to an estrus female. In this context, there is a sexual component in the interaction. These protocols are established to elicit a large amount of ultrasonic vocalizations in laboratory mice. However, we point out the important inter-individual variability in the vocal behavior of mice, which should be taken into account by recording a minimal number of individuals (at least 12 in each condition). These recordings of ultrasonic vocalizations are used to evaluate the call rate, the vocal repertoire and the acoustic structure of the calls. Data are combined with the analysis of synchronous video recordings to provide a more complete view on social communication in mice. These protocols are used to characterize the vocal communication deficits in mice lacking ProSAP1/Shank2, a gene associated with autism spectrum disorders. More ultrasonic vocalizations recordings can also be found on the mouseTube database, developed to favor the exchange of such data."	"Activity and circadian rhythm influence synaptic Shank3 protein levels in mice. Various recent studies revealed that the proteins of the Shank family act as major scaffold organizing elements in the post-synaptic density of excitatory synapses and that their expression level is able to influence synapse formation, maturation and ultimately brain plasticity. An imbalance in Shank3 protein levels has been associated with a variety of neuropsychological and neurodegenerative disorders including autism spectrum disorders and Phelan-McDermid syndrome. Given that sleep disorders and low melatonin levels are frequently observed in autism spectrum disorders, and that circadian rhythms may be able to modulate Shank3 signaling and thereby synaptic function, here, we performed in vivo studies on CBA mice using protein biochemistry to investigate the synaptic expression levels of Shank3α during the day in different brain regions. Our results show that synaptic Shank3 protein concentrations exhibit minor oscillations during the day in hippocampal and striatal brain regions that correlate with changes in serum melatonin levels. Furthermore, as circadian rhythms are tightly connected to activity levels in mice, we increased physical activity using running wheels. The expression of Shank3α increases rapidly by induced activity in thalamus and cortex, but decreases in striatum, superimposing the circadian rhythms of different brain regions. We conclude that synaptic Shank3 proteins build highly dynamic platforms that are modulated by the light:dark cycles but even more so driven by activity. Using wild-type CBA mice, we show that Shank3 is a highly dynamic and activity-regulated protein at synapses. In the hippocampus, changes in synaptic Shank3 levels are influenced by circadian rhythm/melatonin concentration, while running activity increases and decreases levels of Shank3 in the cortex and striatum respectively."	"Prenatal Exposure to Histone Deacetylase Inhibitors Affects Gene Expression of Autism-Related Molecules and Delays Neuronal Maturation. Valproic acid (VPA) is a multi-target drug and an inhibitor of histone deacetylase (HDAC). We have previously demonstrated that prenatal exposure to VPA at embryonic day 12.5 (E12.5), but not at E14.5, causes autism-like behavioral abnormalities in male mouse offspring. We have also found that prenatal VPA exposure causes transient histone hyperacetylation in the embryonic brain, followed by decreased neuronal cell numbers in the prefrontal and somatosensory cortices after birth. In the present study, we examined whether prenatal HDAC inhibition affects neuronal maturation in primary mouse cortical neurons. Pregnant mice were injected intraperitoneally with VPA (500 mg/kg) and the more selective HDAC inhibitor trichostatin A (TSA; 500 µg/kg) at E12.5 or E14.5, and primary neuronal cultures were prepared from the cerebral cortices of their embryos. Prenatal exposure to VPA at E12.5, but not at E14.5, decreased total number, total length, and complexity of neuronal dendrites at 14 days in vitro (DIV). The effects of VPA weakened at 21 DIV. Exposure to TSA at E12.5, but not at E14.5, also delayed maturation of cortical neurons. In addition, real-time quantitative PCR revealed that the prenatal exposure to TSA decreased neuroligin-1 (Nlgn1), Shank2, and Shank3 mRNA levels and increased contactin-associated protein-like 2 mRNA level. The delay in neuronal maturation was also observed in Nlgn1-knockdown cells, which were transfected with Nlgn1 siRNA. These findings suggest that prenatal HDAC inhibition causes changes in gene expression of autism-related molecules linked to a delay of neuronal maturation."	"Shank Modulates Postsynaptic Wnt Signaling to Regulate Synaptic Development. Prosap/Shank scaffolding proteins regulate the formation, organization, and plasticity of excitatory synapses. Mutations in SHANK family genes are implicated in autism spectrum disorder and other neuropsychiatric conditions. However, the molecular mechanisms underlying Shank function are not fully understood, and no study to date has examined the consequences of complete loss of all Shank proteins in vivo Here we characterize the single Drosophila Prosap/Shank family homolog. Shank is enriched at the postsynaptic membrane of glutamatergic neuromuscular junctions and controls multiple parameters of synapse biology in a dose-dependent manner. Both loss and overexpression of Shank result in defects in synaptic bouton number and maturation. We find that Shank regulates a noncanonical Wnt signaling pathway in the postsynaptic cell by modulating the internalization of the Wnt receptor Fz2. This study identifies Shank as a key component of synaptic Wnt signaling, defining a novel mechanism for how Shank contributes to synapse maturation during neuronal development. Haploinsufficiency for SHANK3 is one of the most prevalent monogenic causes of autism spectrum disorder, making it imperative to understand how the Shank family regulates neurodevelopment and synapse function. We created the first animal model lacking all Shank proteins and used the Drosophila neuromuscular junction, a model glutamatergic synapse, to characterize the role of Shank at synapses. We identified a novel function of Shank in synapse maturation via regulation of Wnt signaling in the postsynaptic cell."	"Selective Localization of Shanks to VGLUT1-Positive Excitatory Synapses in the Mouse Hippocampus. Members of the Shank family of multidomain proteins (Shank1, Shank2, and Shank3) are core components of the postsynaptic density (PSD) of excitatory synapses. At synaptic sites Shanks serve as scaffolding molecules that cluster neurotransmitter receptors as well as cell adhesion molecules attaching them to the actin cytoskeleton. In this study we investigated the synapse specific localization of Shank1-3 and focused on well-defined synaptic contacts within the hippocampal formation. We found that all three family members are present only at VGLUT1-positive synapses, which is particularly visible at mossy fiber contacts. No costaining was found at VGLUT2-positive contacts indicating that the molecular organization of VGLUT2-associated PSDs diverges from classical VGLUT1-positive excitatory contacts in the hippocampus. In light of SHANK mutations in neuropsychiatric disorders, this study indicates which glutamatergic networks within the hippocampus will be primarily affected by shankopathies. "	"Reduced acute nociception and chronic pain in Shank2-/- mice. Autism spectrum disorder is a debilitating mental illness and social issue. Autism spectrum disorder patients suffer from social isolation, cognitive deficits, compulsive behavior, and sensory deficits, including hyposensitivity to pain. However, recent studies argued that autism spectrum disorder patients show physiological pain response and, in some cases, even extremely intense pain response to harmless stimulation. Recently, Shank gene family was reported as one of the genetic risk factors of autism spectrum disorder. Thus, in this study, we used Shank2(-) (/) (-) (Shank2 knock-out, KO) mice to investigate the controversial pain sensitivity issue and found that Shank2 KO mice showed reduced tactile perception and analgesia to chronic pain. "	"Genomic Characterization of Esophageal Squamous Cell Carcinoma Reveals Critical Genes Underlying Tumorigenesis and Poor Prognosis. The genetic mechanisms underlying the poor prognosis of esophageal squamous cell carcinoma (ESCC) are not well understood. Here, we report somatic mutations found in ESCC from sequencing 10 whole-genome and 57 whole-exome matched tumor-normal sample pairs. Among the identified genes, we characterized mutations in VANGL1 and showed that they accelerated cell growth in vitro. We also found that five other genes, including three coding genes (SHANK2, MYBL2, FADD) and two non-coding genes (miR-4707-5p, PCAT1), were involved in somatic copy-number alterations (SCNAs) or structural variants (SVs). A survival analysis based on the expression profiles of 321 individuals with ESCC indicated that these genes were significantly associated with poorer survival. Subsequently, we performed functional studies, which showed that miR-4707-5p and MYBL2 promoted proliferation and metastasis. Together, our results shed light on somatic mutations and genomic events that contribute to ESCC tumorigenesis and prognosis and might suggest therapeutic targets. "	"Whole-genome sequencing in multiplex families with psychoses reveals mutations in the SHANK2 and SMARCA1 genes segregating with illness. A current focus in psychiatric genetics is detection of multiple common risk alleles through very large genome-wide association study analyses. Yet families do exist, albeit rare, that have multiple affected members who are presumed to have a similar inherited cause to their illnesses. We hypothesized that within some of these families there may be rare highly penetrant mutations that segregate with illness. In this exploratory study, the genomes of 90 individuals across nine families were sequenced. Each family included a minimum of three available relatives affected with a psychotic illness and three available unaffected relatives. Twenty-six variants were identified that are private to a family, alter protein sequence, and are transmitted to all sequenced affected individuals within the family. In one family, seven siblings with schizophrenia spectrum disorders each carry a novel private missense variant within the SHANK2 gene. This variant lies within the consensus SH3 protein-binding motif by which SHANK2 may interact with post-synaptic glutamate receptors. In another family, four affected siblings and their unaffected mother each carry a novel private missense variant in the SMARCA1 gene on the X chromosome. Both variants represent candidates that may be causal for psychotic disorders when considered in the context of their transmission pattern and known gene and disease biology."	"Shank3 is localized in axons and presynaptic specializations of developing hippocampal neurons and involved in the modulation of NMDA receptor levels at axon terminals. Autism-related Shank1, Shank2, and Shank3 are major postsynaptic scaffold proteins of excitatory glutamatergic synapses. A few studies, however, have already indicated that within a neuron, the presence of Shank family members is not limited to the postsynaptic density. By separating axons from dendrites of developing hippocampal neurons in microfluidic chambers, we show that RNA of all three Shank family members is present within axons. Immunostaining confirms these findings as all three Shanks are indeed found within separated axons and further co-localize with well-known proteins of the presynaptic specialization in axon terminals. Therefore, Shank proteins might not only serve as postsynaptic scaffold proteins, but also play a crucial role during axonal outgrowth and presynaptic development and function. This is supported by our findings that shRNA-mediated knockdown of Shank3 results in up-regulation of the NMDA receptor subunit GluN1 in axon terminals. Taken together, our findings will have major implications for the future analysis of neuronal Shank biology in both health and disease. Shank1, Shank2, and Shank3 are major postsynaptic scaffold proteins of excitatory glutamatergic synapses strongly related to several neuropsychiatric disorders. However, a few studies have already implicated a functional role of the Shanks beyond the postsynaptic density (PSD). We here show that all three Shanks are localized in both axons and pre-synaptic specializiations of developing hippocampal neurons in culture. We further provide evidence that Shank3 is involved in the modulation of NMDA receptor levels at axon terminals. Taken together, our study will open up novel avenues for the future analysis of neuronal Shank biology in both health and disease. "	"Mice with Shank3 Mutations Associated with ASD and Schizophrenia Display Both Shared and Distinct Defects. Genetic studies have revealed significant overlaps of risk genes among psychiatric disorders. However, it is not clear how different mutations of the same gene contribute to different disorders. We characterized two lines of mutant mice with Shank3 mutations linked to ASD and schizophrenia. We found both shared and distinct synaptic and behavioral phenotypes. Mice with the ASD-linked InsG3680 mutation manifest striatal synaptic transmission defects before weaning age and impaired juvenile social interaction, coinciding with the early onset of ASD symptoms. On the other hand, adult mice carrying the schizophrenia-linked R1117X mutation show profound synaptic defects in prefrontal cortex and social dominance behavior. Furthermore, we found differential Shank3 mRNA stability and SHANK1/2 upregulation in these two lines. These data demonstrate that different alleles of the same gene may have distinct phenotypes at molecular, synaptic, and circuit levels in mice, which may inform exploration of these relationships in human patients. "	"Shank-cortactin interactions control actin dynamics to maintain flexibility of neuronal spines and synapses. The family of Shank scaffolding molecules (comprising Shank1, 2 and 3) are core components of the postsynaptic density (PSD) in neuronal synapses. Shanks link surface receptors to other scaffolding molecules within the PSD, as well as to the actin cytoskeleton. However, determining the function of Shank proteins in neurons has been complicated because the different Shank isoforms share a very high degree of sequence and domain homology. Therefore, to control Shank content while minimizing potential compensatory effects, a miRNA-based knockdown strategy was developed to reduce the expression of all synaptically targeted Shank isoforms simultaneously in rat hippocampal neurons. Using this approach, a strong (&gt;75%) reduction in total Shank protein levels was achieved at individual dendritic spines, prompting an approximately 40% decrease in mushroom spine density. Furthermore, Shank knockdown reduced spine actin levels and increased sensitivity to the actin depolymerizing agent Latrunculin A. A SHANK2 mutant lacking the proline-rich cortactin-binding motif (SHANK2-ΔPRO) was unable to rescue these defects. Furthermore, Shank knockdown reduced cortactin levels in spines and increased the mobility of spine cortactin as measured by single-molecule tracking photoactivated localization microscopy, suggesting that Shank proteins recruit and stabilize cortactin at the synapse. Furthermore, it was found that Shank knockdown significantly reduced spontaneous remodelling of synapse morphology that could not be rescued by the SHANK2-ΔPRO mutant. It was concluded that Shank proteins are key intermediates between the synapse and the spine interior that, via cortactin, permit the actin cytoskeleton to dynamically regulate synapse morphology and function. "	"Genome-wide differential expression of synaptic long noncoding RNAs in autism spectrum disorder. A genome-wide differential expression of long noncoding RNAs (lncRNAs) was identified in blood specimens of autism spectrum disorder (ASD). A total of 3929 lncRNAs were found to be differentially expressed in ASD peripheral leukocytes, including 2407 that were upregulated and 1522 that were downregulated. Simultaneously, 2591 messenger RNAs (mRNAs), including 1789 upregulated and 821 downregulated, were also identified in ASD leukocytes. Functional pathway analysis of these lncRNAs revealed neurological pathways of the synaptic vesicle cycling, long-term depression and long-term potentiation to be primarily involved. Thirteen synaptic lncRNAs, including nine upregulated and four downregulated, and 19 synaptic mRNAs, including 12 upregulated and seven downregulated, were identified as being differentially expressed in ASD. Our identification of differential expression of synaptic lncRNAs and mRNAs suggested that synaptic vesicle transportation and cycling are important for the delivery of synaptosomal protein(s) between presynaptic and postsynaptic membranes in ASD. Finding of 19 lncRNAs, which are the antisense, bi-directional and intergenic, of HOX genes may lead us to investigate the role of HOX genes involved in the development of ASD. Discovery of the lncRNAs of SHANK2-AS and BDNF-AS, the natural antisense of genes SHANK2 and BDNF, respectively, indicates that in addition to gene mutations, deregulation of lncRNAs on ASD-causing gene loci presents a new approach for exploring possible epigenetic mechanisms underlying ASD. Our study also opened a new avenue for exploring the use of lncRNA(s) as biomarker(s) for the early detection of ASD."	"Shank synaptic scaffold proteins: keys to understanding the pathogenesis of autism and other synaptic disorders. Shank/ProSAP proteins are essential to synaptic formation, development, and function. Mutations in the family of SHANK genes are strongly associated with autism spectrum disorders (ASD) and other neurodevelopmental and neuropsychiatric disorders, such as intellectual disability (ID), and schizophrenia. Thus, the term 'Shankopathies' identifies a number of neuronal diseases caused by alteration of Shank protein expression leading to abnormal synaptic development. With this review we want to summarize the major genetic, molecular, behavior and electrophysiological studies that provide new clues into the function of Shanks and pave the way for the discovery of new therapeutic drugs targeted to treat patients with SHANK mutations and also patients affected by other neurodevelopmental and neuropsychiatric disorders. Shank/ProSAP proteins are essential to synaptic formation, development, and function. Mutations in the family of SHANK genes are strongly associated with autism spectrum disorders (ASD) and other neurodevelopmental and neuropsychiatric disorders, such as intellectual disability (ID), and schizophrenia (SCZ). With this review we want to summarize the major genetic, molecular, behavior and electrophysiological studies that provide new clues into the function of Shanks and pave the way for the discovery of new therapeutic drugs targeted to treat patients with SHANK mutations. "	"Shank2 Regulates Renal Albumin Endocytosis. Albuminuria is a strong and independent predictor of kidney disease progression but the mechanisms of albumin handling by the kidney remain to be fully defined. Previous studies have shown that podocytes endocytose albumin. Here we demonstrate that Shank2, a large scaffolding protein originally identified at the neuronal postsynaptic density, is expressed in podocytes in vivo and in vitro and plays an important role in albumin endocytosis in podocytes. Knockdown of Shank2 in cultured human podocytes decreased albumin uptake, but the decrease was not statistically significant likely due to residual Shank2 still present in the knockdown podocytes. Complete knockout of Shank2 in podocytes significantly diminished albumin uptake in vitro. Shank2 knockout mice develop proteinuria by 8 weeks of age. To examine albumin handling in vivo in wild-type and Shank2 knockout mice we used multiphoton intravital imaging. While FITC-labeled albumin was rapidly seen in the renal tubules of wild-type mice after injection, little albumin was seen in the tubules of Shank2 knockout mice indicating dysregulated renal albumin trafficking in the Shank2 knockouts. We have previously found that caveolin-1 is required for albumin endocytosis in cultured podocytes. Shank2 knockout mice had significantly decreased expression and altered localization of caveolin-1 in podocytes suggesting that disruption of albumin endocytosis in Shank2 knockouts is mediated via caveolin-1. In summary, we have identified Shank2 as another component of the albumin endocytic pathway in podocytes. "	"The role of SHANK2 rare variants in schizophrenia susceptibility. NA"	"Rare SHANK2 variants in schizophrenia. NA"	"Expression of imprinted genes in placenta is associated with infant neurobehavioral development. Genomic imprinting disorders often exhibit delayed neurobehavioral development, suggesting this unique mechanism of epigenetic regulation plays a role in mental and neurological health. While major errors in imprinting have been linked to adverse health outcomes, there has been little research conducted on how moderate variability in imprinted gene expression within a population contributes to differences in neurobehavioral outcomes, particularly at birth. Here, we profiled the expression of 108 known and putative imprinted genes in human placenta samples from 615 infants assessed by the Neonatal Intensive Care Unit (NICU) Network Neurobehavioral Scales (NNNS). Data reduction identified 10 genes (DLX5, DHCR24, VTRNA2-1, PHLDA2, NPAP1, FAM50B, GNAS-AS1, PAX8-AS1, SHANK2, and COPG2IT1) whose expression could distinguish between newborn neurobehavioral profiles derived from the NNNS. Clustering infants based on the expression pattern of these genes identified 2 groups of infants characterized by reduced quality of movement, increased signs of asymmetrical and non-optimal reflexes, and increased odds of demonstrating increased signs of physiologic stress and abstinence. Overall, these results suggest that common variation in placental imprinted gene expression is linked to suboptimal performance on scales of neurological functioning as well as with increased signs of physiologic stress, highlighting the central importance of the control of expression of these genes in the placenta for neurobehavioral development. "	"Dietary glycemic index modulates the behavioral and biochemical abnormalities associated with autism spectrum disorder. Autism spectrum disorder (ASD) is a complex neurodevelopmental disorder of unknown etiology, but very likely resulting from both genetic and environmental factors. There is good evidence for immune system dysregulation in individuals with ASD. However, the contribution of insults such as dietary factors that can also activate the immune system have not been explored in the context of ASD. In this paper, we show that the dietary glycemic index has a significant impact on the ASD phenotype. By using BTBR mice, an inbred strain that displays behavioral traits that reflect the diagnostic symptoms of human ASD, we found that the diet modulates plasma metabolites, neuroinflammation and brain markers of neurogenesis in a manner that is highly reflective of ASD in humans. Overall, the manuscript supports the idea that ASD results from gene-environment interactions and that in the presence of a genetic predisposition to ASD, diet can make a large difference in the expression of the condition. "	"Using Gene Ontology to describe the role of the neurexin-neuroligin-SHANK complex in human, mouse and rat and its relevance to autism. People with an autistic spectrum disorder (ASD) display a variety of characteristic behavioral traits, including impaired social interaction, communication difficulties and repetitive behavior. This complex neurodevelopment disorder is known to be associated with a combination of genetic and environmental factors. Neurexins and neuroligins play a key role in synaptogenesis and neurexin-neuroligin adhesion is one of several processes that have been implicated in autism spectrum disorders. In this report we describe the manual annotation of a selection of gene products known to be associated with autism and/or the neurexin-neuroligin-SHANK complex and demonstrate how a focused annotation approach leads to the creation of more descriptive Gene Ontology (GO) terms, as well as an increase in both the number of gene product annotations and their granularity, thus improving the data available in the GO database. The manual annotations we describe will impact on the functional analysis of a variety of future autism-relevant datasets. Comprehensive gene annotation is an essential aspect of genomic and proteomic studies, as the quality of gene annotations incorporated into statistical analysis tools affects the effective interpretation of data obtained through genome wide association studies, next generation sequencing, proteomic and transcriptomic datasets."	"Array-based DNA methylation analysis in individuals with developmental delay/intellectual disability and normal molecular karyotype. Despite recent progress in molecular karyotyping and clinical sequencing the cause of intellectual disability in a considerable subset of individuals affected by this phenotype remains elusive. As intellectual disability is also a feature of various imprinting disorders and some monogenic forms of intellectual disability are caused by epigenetic modifiers we hypothesized that changes in DNA methylation might be associated with or even causative in some cases of intellectual disability. Therefore, we performed a DNA methylation analysis of peripheral blood samples from 82 patients with intellectual disability and additional features using the HumanMethylation450 BeadChip. The findings were compared to that of 19 normal controls. Differentially methylated loci were validated by bisulfite pyrosequencing. On a global level, we failed to detect a robust DNA methylation signature segregating individuals with intellectual disability from controls. Using an individual approach, we identified 157 regions showing individual DNA methylation changes in at least one patient. These correlated to 107 genes including genes linked to conditions associated with intellectual disability, namely COLEC11, SHANK2, GLI2 and KCNQ2, as well as imprinted genes like FAM50B and MEG3. The latter was suggestive of an undiagnosed Temple syndrome which could be confirmed by diagnostic tests. Subsequent in-depth analysis of imprinted loci revealed DNA methylation changes at additional imprinted loci, i.e. PPIEL, IGF2R, MEG8 and MCTS2/HM13, in up to five patients. Our findings indicate that imprinting disorders are rare but probably under-diagnosed in patients with intellectual disability and moreover point to DNA methylation changes as potential alternative means to identify deregulated genes involved in the pathogenesis of intellectual disability. "	"Trans-synaptic zinc mobilization improves social interaction in two mouse models of autism through NMDAR activation. Genetic aspects of autism spectrum disorders (ASDs) have recently been extensively explored, but environmental influences that affect ASDs have received considerably less attention. Zinc (Zn) is a nutritional factor implicated in ASDs, but evidence for a strong association and linking mechanism is largely lacking. Here we report that trans-synaptic Zn mobilization rapidly rescues social interaction in two independent mouse models of ASD. In mice lacking Shank2, an excitatory postsynaptic scaffolding protein, postsynaptic Zn elevation induced by clioquinol (a Zn chelator and ionophore) improves social interaction. Postsynaptic Zn is mainly derived from presynaptic pools and activates NMDA receptors (NMDARs) through postsynaptic activation of the tyrosine kinase Src. Clioquinol also improves social interaction in mice haploinsufficient for the transcription factor Tbr1, which accompanies NMDAR activation in the amygdala. These results suggest that trans-synaptic Zn mobilization induced by clioquinol rescues social deficits in mouse models of ASD through postsynaptic Src and NMDAR activation. "	"Translational neurobiology in Shank mutant mice--model systems for neuropsychiatric disorders. The Shank family comprises three core postsynaptic scaffold proteins of excitatory synapses in the mammalian brain: Shank1, Shank2 and Shank3. Since mutations in all three human SHANK genes are linked to neuropsychiatric disorders such as autism and schizophrenia, Shank mutant mice serve as corresponding in vivo model systems. Besides intriguing alterations in behavior, dysfunction of glutamatergic synapses has emerged as a pathological hallmark among several Shank mutant lines. However, there is very limited knowledge of the underlying pathomechanisms. Therefore, precise neurobiological evaluation of morphological, molecular and electrophysiological phenotypes in Shank mutants is crucially needed. In this brief review, I will focus on the Shank mutant mouse lines we have generated so far and discuss how they might help us to develop translational treatment studies in the future."	"Genome-wide differentially methylated genes in prostate cancer tissues from African-American and Caucasian men. Increasing evidence suggests that aberrant DNA methylation changes may contribute to prostate cancer (PCa) ethnic disparity. To comprehensively identify DNA methylation alterations in PCa disparity, we used the Illumina 450K methylation platform to interrogate the methylation status of 485,577 CpG sites focusing on gene-associated regions of the human genome. Genomic DNA from African-American (AA; 7 normal and 3 cancers) and Caucasian (Cau; 8 normal and 3 cancers) was used in the analysis. Hierarchical clustering analysis identified probe-sets unique to AA and Cau samples, as well as common to both. We selected 25 promoter-associated novel CpG sites most differentially methylated by race (fold change &gt; 1.5-fold; adjusted P &lt; 0.05) and compared the β-value of these sites provided by the Illumina, Inc. array with quantitative methylation obtained by pyrosequencing in 7 prostate cell lines. We found very good concordance of the methylation levels between β-value and pyrosequencing. Gene expression analysis using qRT-PCR in a subset of 8 genes after treatment with 5-aza-2'-deoxycytidine and/or trichostatin showed up-regulation of gene expression in PCa cells. Quantitative analysis of 4 genes, SNRPN, SHANK2, MST1R, and ABCG5, in matched normal and PCa tissues derived from AA and Cau PCa patients demonstrated differential promoter methylation and concomitant differences in mRNA expression in prostate tissues from AA vs. Cau. Regression analysis in normal and PCa tissues as a function of race showed significantly higher methylation prevalence for SNRPN (P = 0.012), MST1R (P = 0.038), and ABCG5 (P &lt; 0.0002) for AA vs. Cau samples. We selected the ABCG5 and SNRPN genes and verified their biological functions by Western blot analysis and siRNA gene knockout effects on cell proliferation and invasion in 4 PCa cell lines (2 AA and 2 Cau patients-derived lines). Knockdown of either ABCG5 or SNRPN resulted in a significant decrease in both invasion and proliferation in Cau PCa cell lines but we did not observe these remarkable loss-of-function effects in AA PCa cell lines. Our study demonstrates how differential genome-wide DNA methylation levels influence gene expression and biological functions in AA and Cau PCa. "	"PDZ Protein Regulation of G Protein-Coupled Receptor Trafficking and Signaling Pathways. G protein-coupled receptors (GPCRs) contribute to the regulation of every aspect of human physiology and are therapeutic targets for the treatment of numerous diseases. As a consequence, understanding the myriad of mechanisms controlling GPCR signaling and trafficking is essential for the development of new pharmacological strategies for the treatment of human pathologies. Of the many GPCR-interacting proteins, postsynaptic density protein of 95 kilodaltons, disc large, zona occludens-1 (PDZ) domain-containing proteins appear most abundant and have similarly been implicated in disease mechanisms. PDZ proteins play an important role in regulating receptor and channel protein localization within synapses and tight junctions and function to scaffold intracellular signaling protein complexes. In the current study, we review the known functional interactions between PDZ domain-containing proteins and GPCRs and provide insight into the potential mechanisms of action. These PDZ domain-containing proteins include the membrane-associated guanylate-like kinases [postsynaptic density protein of 95 kilodaltons; synapse-associated protein of 97 kilodaltons; postsynaptic density protein of 93 kilodaltons; synapse-associated protein of 102 kilodaltons; discs, large homolog 5; caspase activation and recruitment domain and membrane-associated guanylate-like kinase domain-containing protein 3; membrane protein, palmitoylated 3; calcium/calmodulin-dependent serine protein kinase; membrane-associated guanylate kinase protein (MAGI)-1, MAGI-2, and MAGI-3], Na(+)/H(+) exchanger regulatory factor proteins (NHERFs) (NHERF1, NHERF2, PDZ domain-containing kidney protein 1, and PDZ domain-containing kidney protein 2), Golgi-associated PDZ proteins (Gα-binding protein interacting protein, C-terminus and CFTR-associated ligand), PDZ domain-containing guanine nucleotide exchange factors (GEFs) 1 and 2, regulator of G protein signaling (RGS)-homology-RhoGEFs (PDZ domain-containing RhoGEF and leukemia-associated RhoGEF), RGS3 and RGS12, spinophilin and neurabin-1, SRC homology 3 domain and multiple ankyrin repeat domain (Shank) proteins (Shank1, Shank2, and Shank3), partitioning defective proteins 3 and 6, multiple PDZ protein 1, Tamalin, neuronal nitric oxide synthase, syntrophins, protein interacting with protein kinase C α 1, syntenin-1, and sorting nexin 27. "	"Effects of trace metal profiles characteristic for autism on synapses in cultured neurons. Various recent studies revealed that biometal dyshomeostasis plays a crucial role in the pathogenesis of neurological disorders such as autism spectrum disorders (ASD). Substantial evidence indicates that disrupted neuronal homeostasis of different metal ions such as Fe, Cu, Pb, Hg, Se, and Zn may mediate synaptic dysfunction and impair synapse formation and maturation. Here, we performed in vitro studies investigating the consequences of an imbalance of transition metals on glutamatergic synapses of hippocampal neurons. We analyzed whether an imbalance of any one metal ion alters cell health and synapse numbers. Moreover, we evaluated whether a biometal profile characteristic for ASD patients influences synapse formation, maturation, and composition regarding NMDA receptor subunits and Shank proteins. Our results show that an ASD like biometal profile leads to a reduction of NMDAR (NR/Grin/GluN) subunit 1 and 2a, as well as Shank gene expression along with a reduction of synapse density. Additionally, synaptic protein levels of GluN2a and Shanks are reduced. Although Zn supplementation is able to rescue the aforementioned alterations, Zn deficiency is not solely responsible as causative factor. Thus, we conclude that balancing Zn levels in ASD might be a prime target to normalize synaptic alterations caused by biometal dyshomeostasis. "	"Differential distribution of Shank and GKAP at the postsynaptic density. Shank and GKAP are scaffold proteins and binding partners at the postsynaptic density (PSD). The distribution and dynamics of Shank and GKAP were studied in dissociated hippocampal cultures by pre-embedding immunogold electron microscopy. Antibodies against epitopes containing their respective mutual binding sites were used to verify the expected juxtapositioning of Shank and GKAP. If all Shank and GKAP molecules at the PSD were bound to each other, the distribution of label for the two proteins should coincide. However, labels for the mutual binding sites showed significant differences in distribution, with a narrow distribution for GKAP located close to the postsynaptic membrane, and a wider distribution for Shank extending deeper into the cytoplasm. Upon depolarization with high K+, neither the intensity nor distribution of label for GKAP changed, but labeling intensity for Shank at the PSD increased to ~150% of controls while the median distance of label from postsynaptic membrane increased by 7.5 nm. These results indicate a preferential recruitment of Shank to more distal parts of the PSD complex. Conversely, upon incubation in Ca2+-free medium containing EGTA, the labeling intensity of Shank at the PSD decreased to ~70% of controls and the median distance of label from postsynaptic membrane decreased by 9 nm, indicating a preferential loss of Shank molecules in more distal parts of the PSD complex. These observations identify two pools of Shank at the PSD complex, one relatively stable pool, closer to the postsynaptic membrane that can bind to GKAP, and another more dynamic pool at a location too far away to bind to GKAP. "	"Oxytocin in the regulation of social behaviours in medial amygdala-lesioned mice via the inhibition of the extracellular signal-regulated kinase signalling pathway. The neuropeptide oxytocin (OXT) has been implicated in the pathophysiology of behavioural deficits among patients with autism spectrum disorder (ASD). However, the molecular mechanisms underlying its role in ASD remain unclear. In the present study, a murine model with ASD-like phenotypes was induced by intra-medial amygdala injection of N-methyl-d-aspartate, and it was used to investigate the role of OXT in behaviour regulation. Behavioural tests were performed to verify the ASD-like phenotypes of N-methyl-d-aspartate-treated mice, and the results showed that mice with bilateral medial amygdala lesions presented significant behavioural deficits, including impaired learning and memory and increased anxiety and depression. We also observed a notably decreased level of OXT in both the plasma and the hypothalamus of medial amygdala-lesioned mice, and the extracellular signal-regulated kinase (ERK) was activated. Further studies demonstrated that the administration of OXT alleviated ASD-like symptoms and significantly inhibited phosphorylation of ERK; the inhibitory effect was similar to that of U0126, an ERK signalling inhibitor. In addition, OXT administration modulated the expression of downstream proteins of the ERK signalling pathway, such as cyclic adenosine monophosphate response element binding and c-fos. Taken together, our data indicate that OXT plays an important role in ameliorating behavioural deficits in an ASD-like mouse model, which was mediated by inhibiting the ERK signalling pathway and its downstream proteins. "	"Deletion of Shank1 has minimal effects on the molecular composition and function of glutamatergic afferent postsynapses in the mouse inner ear. Shank proteins (1-3) are considered the master organizers of glutamatergic postsynaptic densities in the central nervous system, and the genetic deletion of either Shank1, 2, or 3 results in altered composition, form, and strength of glutamatergic postsynapses. To investigate the contribution of Shank proteins to glutamatergic afferent synapses of the inner ear and especially cochlea, we used immunofluorescence and quantitative real time PCR to determine the expression of Shank1, 2, and 3 in the cochlea. Because we found evidence for expression of Shank1 but not 2 and 3, we investigated the morphology, composition, and function of afferent postsynaptic densities from defined tonotopic regions in the cochlea of Shank1(-/-) mice. Using immunofluorescence, we identified subtle changes in the morphology and composition (but not number and localization) of cochlear afferent postsynaptic densities at the lower frequency region (8 kHz) in Shank1(-/-) mice compared to Shank1(+/+) littermates. However, we detected no differences in auditory brainstem responses at matching or higher frequencies. We also identified Shank1 in the vestibular afferent postsynaptic densities, but detected no differences in vestibular sensory evoked potentials in Shank1(-/-) mice compared to Shank1(+/+) littermates. This work suggests that Shank proteins play a different role in the development and maintenance of glutamatergic afferent synapses in the inner ear compared to the central nervous system."	"Identification and functional characterization of rare SHANK2 variants in schizophrenia. Recent genetic data on schizophrenia (SCZ) have suggested that proteins of the postsynaptic density of excitatory synapses have a role in its etiology. Mutations in the three SHANK genes encoding for postsynaptic scaffolding proteins have been shown to represent risk factors for autism spectrum disorders and other neurodevelopmental disorders. To address if SHANK2 variants are associated with SCZ, we sequenced SHANK2 in 481 patients and 659 unaffected individuals. We identified a significant increase in the number of rare (minor allele frequency&lt;1%) SHANK2 missense variants in SCZ individuals (6.9%) compared with controls (3.9%, P=0.039). Four out of fifteen non-synonymous variants identified in the SCZ cohort (S610Y, R958S, P1119T and A1731S) were selected for functional analysis. Overexpression and knockdown-rescue experiments were carried out in cultured primary hippocampal neurons with a major focus on the analysis of morphological changes. Furthermore, the effect on actin polymerization in fibroblast cell lines was investigated. All four variants revealed functional impairment to various degrees, as a consequence of alterations in spine volume and clustering at synapses and an overall loss of presynaptic contacts. The A1731S variant was identified in four unrelated SCZ patients (0.83%) but not in any of the sequenced controls and public databases (P=4.6 × 10(-5)). Patients with the A1731S variant share an early prodromal phase with an insidious onset of psychiatric symptoms. A1731S overexpression strongly decreased the SHANK2-Bassoon-positive synapse number and diminished the F/G-actin ratio. Our results strongly suggest a causative role of rare SHANK2 variants in SCZ and underline the contribution of SHANK2 gene mutations in a variety of neuropsychiatric disorders. "	"Reciprocal signaling between translational control pathways and synaptic proteins in autism spectrum disorders. Autism spectrum disorder (ASD) is a heterogeneous group of heritable neurodevelopmental disorders. Symptoms of ASD, which include deficits in social interaction skills, impaired communication ability, and ritualistic-like repetitive behaviors, appear in early childhood and continue throughout life. Genetic studies have revealed at least two clusters of genes frequently associated with ASD and intellectual disability: those encoding proteins involved in translational control and those encoding proteins involved in synaptic function. We hypothesize that mutations occurring in these two clusters of genes interfere with interconnected downstream signaling pathways in neuronal cells to cause ASD symptomatology. In this review, we discuss the monogenic forms of ASD caused by mutations in genes encoding for proteins that regulate translation and synaptic function. Specifically, we describe the function of these proteins, the intracellular signaling pathways that they regulate, and the current mouse models used to characterize the synaptic and behavioral features associated with their mutation. Finally, we summarize recent studies that have established a connection between mRNA translation and synaptic function in models of ASD and propose that dysregulation of one has a detrimental impact on the other."	"Meta-analysis of SHANK Mutations in Autism Spectrum Disorders: a gradient of severity in cognitive impairments. SHANK genes code for scaffold proteins located at the post-synaptic density of glutamatergic synapses. In neurons, SHANK2 and SHANK3 have a positive effect on the induction and maturation of dendritic spines, whereas SHANK1 induces the enlargement of spine heads. Mutations in SHANK genes have been associated with autism spectrum disorders (ASD), but their prevalence and clinical relevance remain to be determined. Here, we performed a new screen and a meta-analysis of SHANK copy-number and coding-sequence variants in ASD. Copy-number variants were analyzed in 5,657 patients and 19,163 controls, coding-sequence variants were ascertained in 760 to 2,147 patients and 492 to 1,090 controls (depending on the gene), and, individuals carrying de novo or truncating SHANK mutations underwent an extensive clinical investigation. Copy-number variants and truncating mutations in SHANK genes were present in ∼1% of patients with ASD: mutations in SHANK1 were rare (0.04%) and present in males with normal IQ and autism; mutations in SHANK2 were present in 0.17% of patients with ASD and mild intellectual disability; mutations in SHANK3 were present in 0.69% of patients with ASD and up to 2.12% of the cases with moderate to profound intellectual disability. In summary, mutations of the SHANK genes were detected in the whole spectrum of autism with a gradient of severity in cognitive impairment. Given the rare frequency of SHANK1 and SHANK2 deleterious mutations, the clinical relevance of these genes remains to be ascertained. In contrast, the frequency and the penetrance of SHANK3 mutations in individuals with ASD and intellectual disability-more than 1 in 50-warrant its consideration for mutation screening in clinical practice. "	"Phenotypic spectrum associated with PTCHD1 deletions and truncating mutations includes intellectual disability and autism spectrum disorder. Studies of genomic copy number variants (CNVs) have identified genes associated with autism spectrum disorder (ASD) and intellectual disability (ID) such as NRXN1, SHANK2, SHANK3 and PTCHD1. Deletions have been reported in PTCHD1 however there has been little information available regarding the clinical presentation of these individuals. Herein we present 23 individuals with PTCHD1 deletions or truncating mutations with detailed phenotypic descriptions. The results suggest that individuals with disruption of the PTCHD1 coding region may have subtle dysmorphic features including a long face, prominent forehead, puffy eyelids and a thin upper lip. They do not have a consistent pattern of associated congenital anomalies or growth abnormalities. They have mild to moderate global developmental delay, variable degrees of ID, and many have prominent behavioral issues. Over 40% of subjects have ASD or ASD-like behaviors. The only consistent neurological findings in our cohort are orofacial hypotonia and mild motor incoordination. Our findings suggest that hemizygous PTCHD1 loss of function causes an X-linked neurodevelopmental disorder with a strong propensity to autistic behaviors. Detailed neuropsychological studies are required to better define the cognitive and behavioral phenotype. "	"Repetitive behaviors in the Shank1 knockout mouse model for autism spectrum disorder: developmental aspects and effects of social context. Autism spectrum disorder (ASD) is characterized by persistent deficits in social behavior and communication, together with restricted and repetitive patterns of behavior. Several ASD candidate genes have been identified, including the SHANK gene family with its three family members SHANK1, SHANK2, and SHANK3. Typically, repetitive behavior in mouse models for ASD is assessed by measuring self-grooming behavior. The first aim of the current study was to assess repetitive behaviors in Shank1(-/-) null mutant, Shank1(+/-) heterozygous, and Shank1(+/+) wildtype littermate control mice by means of a comprehensive approach, including the assessment of self-grooming, digging behavior, and marble burying. The second aim was to establish a test paradigm that allows for assessing the effects of social context on the occurrence of repetitive behaviors in a genotype-dependent manner. To this aim, repetitive behaviors were repeatedly tested on three consecutive days in distinct social contexts, namely in presence or absence of social odors. Shank1(+/-) heterozygous and to a lesser extent Shank1(-/-) null mutant mice displayed slightly elevated levels of self-grooming behavior as adults, but not as juveniles, with genotype differences being most prominent in the social context. In contrast to elevated self-grooming behavior, marble burying was strongly reduced in adult Shank1(+/-) heterozygous and Shank1(-/-) null mutant mice across social contexts, as compared to adult Shank1(+/+) wildtype littermate controls. The opposite effects of the Shank1 deletion on the two types of repetitive behaviors are in line with a number of studies on repetitive behaviors in other genetic Shank models."	"Serum- and glucocorticoid-induced protein kinase 1 (SGK1) increases the cystic fibrosis transmembrane conductance regulator (CFTR) in airway epithelial cells by phosphorylating Shank2E protein. The glucocorticoid dexamethasone increases cystic fibrosis transmembrane conductance regulator (CFTR) abundance in human airway epithelial cells by a mechanism that requires serum- and glucocorticoid-induced protein kinase 1 (SGK1) activity. The goal of this study was to determine whether SGK1 increases CFTR abundance by phosphorylating Shank2E, a PDZ domain protein that contains two SGK1 phosphorylation consensus sites. We found that SGK1 phosphorylates Shank2E as well as a peptide containing the first SGK1 consensus motif of Shank2E. The dexamethasone-induced increase in CFTR abundance was diminished by overexpression of a dominant-negative Shank2E in which the SGK1 phosphorylation sites had been mutated. siRNA-mediated reduction of Shank2E also reduced the dexamethasone-induced increase in CFTR abundance. Taken together, these data demonstrate that the glucocorticoid-induced increase in CFTR abundance requires phosphorylation of Shank2E at an SGK1 consensus site. "	"ProSAP1 and membrane nanodomain-associated syndapin I promote postsynapse formation and function. Insights into mechanisms coordinating membrane remodeling, local actin nucleation, and postsynaptic scaffolding during postsynapse formation are important for understanding vertebrate brain function. Gene knockout and RNAi in individual neurons reveal that the F-BAR protein syndapin I is a crucial postsynaptic coordinator in formation of excitatory synapses. Syndapin I deficiency caused significant reductions of synapse and dendritic spine densities. These syndapin I functions reflected direct, SH3 domain-mediated associations and functional interactions with ProSAP1/Shank2. They furthermore required F-BAR domain-mediated membrane binding. Ultra-high-resolution imaging of specifically membrane-associated, endogenous syndapin I at membranes of freeze-fractured neurons revealed that membrane-bound syndapin I preferentially occurred in spines and formed clusters at distinct postsynaptic membrane subareas. Postsynaptic syndapin I deficiency led to reduced frequencies of miniature excitatory postsynaptic currents, i.e., to defects in synaptic transmission phenocopying ProSAP1/Shank2 knockout, and impairments in proper synaptic ProSAP1/Shank2 distribution. Syndapin I-enriched membrane nanodomains thus seem to be important spatial cues and organizing platforms, shaping dendritic membrane areas into synaptic compartments. "	"Ultrasonic vocalizations in Shank mouse models for autism spectrum disorders: detailed spectrographic analyses and developmental profiles. Autism spectrum disorders (ASD) are a class of neurodevelopmental disorders characterized by persistent deficits in social behavior and communication across multiple contexts, together with repetitive patterns of behavior, interests, or activities. The high concordance rate between monozygotic twins supports a strong genetic component. Among the most promising candidate genes for ASD is the SHANK gene family, including SHANK1, SHANK2 (ProSAP1), and SHANK3 (ProSAP2). SHANK genes are therefore important candidates for modeling ASD in mice and various genetic models were generated within the last few years. As the diagnostic criteria for ASD are purely behaviorally defined, the validity of mouse models for ASD strongly depends on their behavioral phenotype. Behavioral phenotyping is therefore a key component of the current translational approach and requires sensitive behavioral test paradigms with high relevance to each diagnostic symptom category. While behavioral phenotyping assays for social deficits and repetitive patterns of behavior, interests, or activities are well-established, the development of sensitive behavioral test paradigms to assess communication deficits in mice is a daunting challenge. Measuring ultrasonic vocalizations (USV) appears to be a promising strategy. In the first part of the review, an overview on the different types of mouse USV and their communicative functions will be provided. The second part is devoted to studies on the emission of USV in Shank mouse models for ASD. Evidence for communication deficits was obtained in Shank1, Shank2, and Shank3 genetic mouse models for ASD, often paralleled by behavioral phenotypes relevant to social deficits seen in ASD. "	"Copy number variant study of bipolar disorder in Canadian and UK populations implicates synaptic genes. Genome-wide single nucleotide polymorphism (SNP) data from 936 bipolar disorder (BD) individuals and 940 psychiatrically healthy comparison individuals of North European descent were analyzed for copy number variation (CNV). Using multiple CNV calling algorithms, and validating using in vitro molecular analyses, we identified CNVs implicating several candidate genes that encode synaptic proteins, such as DLG1, DLG2, DPP6, NRXN1, NRXN2, NRXN3, SHANK2, and EPHA5, as well as the neuronal splicing regulator RBFOX1 (A2BP1), and neuronal cell adhesion molecule CHL1. We have also identified recurrent CNVs on 15q13.3 and 16p11.2-regions previously reported as risk loci for neuropsychiatric disorders. In addition, we performed CNV analysis of individuals from 215 BD trios and identified de novo CNVs involving the NRXN1 and DRD5 genes. Our study provides further evidence of the occasional involvement of genomic mutations in the etiology of BD, however, there is no evidence of an increased burden of CNVs in BD. Further, the identification of CNVs at multiple members of the neurexin gene family in BD individuals, supports the role of synaptic disruption in the etiology of BD."	"Carbamylated erythropoietin promotes neurite outgrowth and neuronal spine formation in association with CBP/p300. Both erythropoietin (EPO) and carbamylated EPO (cEPO) have been shown to increase the length of neurites and spine density in neurons. However, the molecular mechanism underlying the EPO- and cEPO-induced neuronal differentiation has yet to be investigated. To address this issue, we investigated epigenetic modifications that regulate gene expression in neurons. Neurons treated with EPO or cEPO display an upregulation of E1A-binding protein (p300) and p300-mediated p53 acetylation, possibly increasing the transactivation activity of p53 on growth-associated protein 43 (GAP43). Treatment of cells with cEPO markedly increases spine formation and potentiates p300-mediated transactivation of PSD95, Shank2 and 3 compared to EPO. These results demonstrate that cEPO controls neuronal differentiation via acetylation of transcription factors and subsequent transactivation of target genes. These findings have important medical implications because cEPO is of interest in the development of therapeutic agents against neuropsychiatric disorders. "	"Rat cortex and hippocampus-derived soluble factors for the induction of adipose-derived mesenchymal stem cells into neuron-like cells. To simulate brain microenvironment, adipose-derived mesenchymal stem cells (AMSC) were induced to differentiate to neuronal-like cells in rat cortex and hippocampus medium (Cox + Hip). First, isolated AMSC were characterized by flow cytometer and the capacity of adipogenesis and osteogenesis. After induction in rat cortex and hippocampus conditioned medium, the cell morphological change was examined and neural marker proteins (β-Ш-Tubulin, NSE, Nissl body) expression was detected by immunofluorescence staining. A variety of synaptic marker proteins, including GAP43, SHANK2, SHANK3 and Bassoon body, were detected. ELISA was used to measure brain derived neurotrophic factor (BDNF) and nerve growth factor (NGF) secretion at different time-points. AMSCs positively expressed CD13, CD44 and CD90 and could differentiate into osteoblasts or adipocytes. After induction in Cox + Hip medium for 14 days, cells had a typical neuronal perikaryal appearance, which was suggestive of neuronal differentiation. After 14 days of Cox + Hip treatment, the percentage of cells expressing β-Ⅲ-Tubulin, NSE and Nissl was 53.9 ± 0.8%, 51.3 ± 1.7% and 16.4 ± 2.1%, respectively. Expression of GAP43, SHANK2, SHANK3 and Bassoon body was detected, indicating synapse formation after treatment in Cox + Hip medium. Differentiated AMSCs secreted neurotrophic factors NGF and BDNF. Thus rat cortex and hippocampus-derived soluble factors can induce AMSCs to a neuronal-like phenotype, suggesting that AMSCs have a dual role in supplementing newborn neurons and secreting neurotrophic factors, and therefore could be help as a potential treatment for nervous system diseases. "	"Shank2 mutant mice display a hypersecretory response to cholera toxin. Shank2 is a PDZ (PSD-95/discs large/ZO-1)-based adaptor that has been suggested to regulate membrane transporting proteins in the brain and epithelial tissues. Here, we report that Shank2 mutant (Shank2(-/-)) mice exhibit aberrant fluid and ion transport in the intestine. Molecular characterization using epithelial tissues from Shank2(+/+) and Shank2(-/-) mice revealed that a long spliceoform of Shank2 (Shank2E) is predominantly expressed in the pancreatic, renal and intestinal epithelia. In functional assays, deletion of Shank2 increased the cystic fibrosis transmembrane conductance regulator (CFTR)-dependent short-circuit currents by 84% (P &lt; 0.05) and 101% (P &lt; 0.05) in the mouse colon and rectum, respectively. Disruption of the CFTR-Shank2-phosphodiesterase 4D protein complex appeared to be mostly responsible for the changes in CFTR activities. Notably, Shank2 deletion profoundly increased cholera toxin-induced fluid accumulation in the mouse intestine (∼90%, P &lt; 0.01). Analyses with chemical inhibitors confirmed that the hyperactivation of CFTR channel function is responsible for the increased response to cholera toxin. These results suggest that Shank2 is a key molecule that participates in epithelial homeostasis, in particular to prevent overt secretory responses caused by epithelial pathogens."	"The Potential Role of Insulin on the Shank-Postsynaptic Platform in Neurodegenerative Diseases Involving Cognition. Loss of synaptic function is critical in the pathogenesis of Alzheimer's disease (AD) and other central nervous system (CNS) degenerations. A promising candidate in the regulation of synaptic function is Shank, a protein that serves as a scaffold for excitatory synaptic receptors and proteins. Loss of Shank alters structure and function of the postsynaptic density (PSD). Shank proteins are associated with N-methyl-d-aspartate and α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptor loss at the PSD in AD; mutations in Shank also lead to autism spectrum disorders (ASDs) and schizophrenia, both of which affect cognition, suggesting that Shank may play a common pathologic role in AD, ASD, and schizophrenia. Shank protein directly associates with insulin receptor substrate protein p53 in PSD. Insulin and insulin sensitizers have been used in clinical trials for these diseases; this suggests that insulin signals may alter protein homeostasis at the shank-postsynaptic platform in PSDs; insulin could improve the function of synapses in these diseases. "	"Introduction: Shankopathies and related autism spectrum disorders. NA"	"Shank mutant mice as an animal model of autism. In this review, we focus on the role of the Shank family of proteins in autism. In recent years, autism research has been flourishing. With genetic, molecular, imaging and electrophysiological studies being supported by behavioural studies using animal models, there is real hope that we may soon understand the fundamental pathology of autism. There is also genuine potential to develop a molecular-level pharmacological treatment that may be able to deal with the most severe symptoms of autism, and clinical trials are already underway. The Shank family of proteins has been strongly implicated as a contributing factor in autism in certain individuals and sits at the core of the alleged autistic pathway. Here, we analyse studies that relate Shank to autism and discuss what light this sheds on the possible causes of autism. "	"Alternative polyadenylation and differential expression of Shank mRNAs in the synaptic neuropil. The stability and dynamics of synapses rely on tight regulation of the synaptic proteome. Shank proteins, encoded by the three genes Shank1, Shank2 and Shank3 are scaffold molecules in the postsynaptic density of excitatory neurons that contribute to activity-dependent neuronal signalling. Mutations in the Shank genes are associated with neurological diseases. Using state-of-the-art technologies, we investigated the levels of expression of the Shank family messenger RNAs (mRNAs) within the synaptic neuropil of the rat hippocampus. We detected all three Shank transcripts in the neuropil of CA1 pyramidal neurons. We found Shank1 to be the most abundantly expressed among the three Shank mRNA homologues. We also examined the turnover of Shank mRNAs and predict the half-lives of Shank1, Shank2 and Shank3 mRNAs to be 18-28 h. Using 3'-end sequencing, we identified novel 3' ends for the Shank1 and Shank2 3' untranslated regions (3' UTRs) that may contribute to the diversity of alternative polyadenylation (APA) for the Shank transcripts. Our findings consolidate the view that the Shank molecules play a central role at the postsynaptic density. This study may shed light on synaptopathologies associated with disruption of local protein synthesis, perhaps linked to mutations in mRNA 3' UTRs or inappropriate 3' end processing. "	"Zinc deficiency dysregulates the synaptic ProSAP/Shank scaffold and might contribute to autism spectrum disorders. Proteins of the ProSAP/Shank family act as major organizing scaffolding elements within the postsynaptic density of excitatory synapses. Deletions, mutations or the downregulation of these molecules has been linked to autism spectrum disorders, the related Phelan McDermid Syndrome or Alzheimer's disease. ProSAP/Shank proteins are targeted to synapses depending on binding to zinc, which is a prerequisite for the assembly of the ProSAP/Shank scaffold. To gain insight into whether the previously reported assembly of ProSAP/Shank through zinc ions provides a crossing point between genetic forms of autism spectrum disorder and zinc deficiency as an environmental risk factor for autism spectrum disorder, we examined the interplay between zinc and ProSAP/Shank in vitro and in vivo using neurobiological approaches. Our data show that low postsynaptic zinc availability affects the activity dependent increase in ProSAP1/Shank2 and ProSAP2/Shank3 levels at the synapse in vitro and that a loss of synaptic ProSAP1/Shank2 and ProSAP2/Shank3 occurs in a mouse model for acute and prenatal zinc deficiency. Zinc-deficient animals displayed abnormalities in behaviour such as over-responsivity and hyperactivity-like behaviour (acute zinc deficiency) and autism spectrum disorder-related behaviour such as impairments in vocalization and social behaviour (prenatal zinc deficiency). Most importantly, a low zinc status seems to be associated with an increased incidence rate of seizures, hypotonia, and attention and hyperactivity issues in patients with Phelan-McDermid syndrome, which is caused by haploinsufficiency of ProSAP2/Shank3. We suggest that the molecular underpinning of prenatal zinc deficiency as a risk factor for autism spectrum disorder may unfold through the deregulation of zinc-binding ProSAP/Shank family members. "	"A blueprint for research on Shankopathies: a view from research on autism spectrum disorder. Autism spectrum disorders (ASD) are associated with mutations in a host of genes including a number that function in synaptic transmission. Phelan McDermid syndrome involves mutations in SHANK3 which encodes a protein that forms a scaffold for glutamate receptors at the synapse. SHANK3 is one of the genes that underpins the synaptic hypothesis for ASD. We discuss this hypothesis with a view to the broader context of ASD and with special emphasis on highly penetrant genetic disorders including Shankopathies. We propose a blueprint for near and longer-term goals for fundamental and translational research on Shankopathies."	"The emerging role of SHANK genes in neuropsychiatric disorders. The genetic heterogeneity of neuropsychiatric disorders is high, but some pathways emerged, notably synaptic functioning. A large number of mutations have been described in genes such as neuroligins, neurexins, and SHANK that play a role in the formation and the maintenance of synapses. This review focuses on the disorders associated with mutations in SHANK3 and the other members of its family, SHANK1 and SHANK2. SHANKs are scaffolding proteins of the postsynaptic density of glutamatergic synapses. SHANK3 has been described in the Phelan-McDermid syndrome (PMS), but also in autism spectrum disorders (ASD) and schizophrenia associated to moderate to severe intellectual disability (ID) and poor language. The evolution of patients with PMS includes symptoms of bipolar disorder and regression. SHANK2 has been identified in patients with ASD with mild to severe ID. SHANK1 has been associated with high-functioning autism in male patients, while carrier females only display anxiety and shyness. Finally, based on neuropathological findings in animal models and patients, a possible role of SHANK in Alzheimer's disease is discussed. Altogether, this review describes the clinical trajectories associated with different mutations of the SHANK genes and provides information to further investigate the role of the SHANK genes in neuropsychiatric disorders."	"The Autism ProSAP1/Shank2 mouse model displays quantitative and structural abnormalities in ultrasonic vocalisations. Mouse ultrasonic vocalisations have been often used as a paradigm to extrapolate vocal communication defects observed in patients with autism spectrum disorders (ASD). The role of these vocalisations as well as their development, structure and informational content, however, remain largely unknown. In the present study, we characterised in depth the emission of pup and adult ultrasonic vocalisations of wild-type mice and their ProSAP1/Shank2(-/-) littermates lacking a synaptic scaffold protein mutated in ASD. We hypothesised that the vocal behaviour of ProSAP1/Shank2(-/-) mice not only differs from the vocal behaviour of their wild-type littermates in a quantitative way, but also presents more qualitative abnormalities in temporal organisation and acoustic structure. We first quantified the rate of emission of ultrasonic vocalisations, and analysed the organisation of vocalisations sequences using Markov models. We subsequently measured duration and peak frequency characteristics of each ultrasonic vocalisation, to characterise their acoustic structure. In wild-type mice, we found a high level of organisation in sequences of ultrasonic vocalisations, suggesting a communicative function in this complex system. Very limited significant sex-related variations were detected in their usage and acoustic structure, even in adult mice. In adult ProSAP1/Shank2(-/-) mice, we found abnormalities in the call usage and the structure of ultrasonic vocalisations. Both ProSAP1/Shank2(-/-) male and female mice uttered less vocalisations with a different call distribution and at lower peak frequency in comparison with wild-type littermates. This study provides a comprehensive framework to characterise abnormalities of ultrasonic vocalisations in mice and confirms that ProSAP1/Shank2(-/-) mice represent a relevant model to study communication defects. "	"Towards identification of individual etiologies by resolving genomic and biological conundrums in patients with autism spectrum disorders. Recent genomic research into autism spectrum disorders (ASD) has revealed a remarkably complex genetic architecture. Large numbers of common variants, copy number variations and single nucleotide variants have been identified, yet each of them individually afforded only a small phenotypic impact. A polygenic model in which multiple genes interact either in an additive or a synergistic way appears the most plausible for the majority of ASD patients. Based on recently identified ASD candidate genes, transgenic mouse models for neuroligins/neurorexins and genes such as Cntnap2, Cntn5, Tsc1, Tsc2, Akt3, Cyfip1, Scn1a, En2, Slc6a4, and Bckdk have been generated and studied with respect to behavioral and neuroanatomical phenotypes and sensitivity to drug treatments. From these models, a few clues for potential pharmacologic intervention emerged. The Fmr1, Shank2 and Cntn5 knockout mice exhibited alterations of glutamate receptors, which may become a target for pharmacologic modulation. Some of the phenotypes of Mecp2 knockout mice can be ameliorated by administering IGF1. In the near future, comprehensive genotyping of individual patients and siblings combined with the novel insights generated from the transgenic animal studies may provide us with personalized treatment options. Eventually, autism may indeed turn out to be a phenotypically heterogeneous group of disorders ('autisms') caused by combinations of changes in multiple possible candidate genes, being different in each patient and requiring for each combination of mutations a distinct, individually tailored treatment. "	"A role for synaptic zinc in ProSAP/Shank PSD scaffold malformation in autism spectrum disorders. The establishment and maintenance of synaptic contacts as well as synaptic plasticity are crucial factors for normal brain function. The functional properties of a synapse are largely dependent on the molecular setup of synaptic proteins. Multidomain proteins of the ProSAP/Shank family act as major organizing scaffolding elements of the postsynaptic density (PSD). Interestingly, ProSAP/Shank proteins at glutamatergic synapses have been linked to a variety of Autism Spectrum Disorders (ASDs) including Phelan McDermid Syndrome, and deregulation of ProSAP/Shank has been reported in Alzheimer's disease. Although the precise molecular mechanism of the dysfunction of these proteins remains unclear, an emerging model is that mutations or deletions impair neuronal circuitry by disrupting the formation, plasticity and maturation of glutamatergic synapses. Several PSD proteins associated with ASDs are part of a complex centered around ProSAP/Shank proteins and many ProSAP/Shank interaction partners play a role in signaling within dendritic spines. Interfering with any one of the members of this signaling complex might change the output and drive the system towards synaptic dysfunction. Based on recent data, it is possible that the concerted action of ProSAP/Shank and Zn(2+) is essential for the structural integrity of the PSD. This interplay might regulate postsynaptic receptor composition, but also transsynaptic signaling. It might be possible that environmental factors like nutritional Zn(2+) status or metal ion homeostasis in general intersect with this distinct pathway centered around ProSAP/Shank proteins and the deregulation of any of these two factors may lead to ASDs."	"Modeling autism by SHANK gene mutations in mice. Shank family proteins (Shank1, Shank2, and Shank3) are synaptic scaffolding proteins that organize an extensive protein complex at the postsynaptic density (PSD) of excitatory glutamatergic synapses. Recent human genetic studies indicate that SHANK family genes (SHANK1, SHANK2, and SHANK3) are causative genes for idiopathic autism spectrum disorders (ASD). Neurobiological studies of Shank mutations in mice support a general hypothesis of synaptic dysfunction in the pathophysiology of ASD. However, the molecular diversity of SHANK family gene products, as well as the heterogeneity in human and mouse phenotypes, pose challenges to modeling human SHANK mutations. Here, we review the molecular genetics of SHANK mutations in human ASD and discuss recent findings where such mutations have been modeled in mice. Conserved features of synaptic dysfunction and corresponding behaviors in Shank mouse mutants may help dissect the pathophysiology of ASD, but also highlight divergent phenotypes that arise from different mutations in the same gene."	"Therapeutic approaches for shankopathies. Despite recent advances in understanding the molecular mechanisms of autism spectrum disorders (ASD), the current treatments for these disorders are mostly focused on behavioral and educational approaches. The considerable clinical and molecular heterogeneity of ASD present a significant challenge to the development of an effective treatment targeting underlying molecular defects. Deficiency of SHANK family genes causing ASD represent an exciting opportunity for developing molecular therapies because of strong genetic evidence for SHANK as causative genes in ASD and the availability of a panel of Shank mutant mouse models. In this article, we review the literature suggesting the potential for developing therapies based on molecular characteristics and discuss several exciting themes that are emerging from studying Shank mutant mice at the molecular level and in terms of synaptic function."	"Lack of association between NLGN3, NLGN4, SHANK2 and SHANK3 gene variants and autism spectrum disorder in a Chinese population. Autism spectrum disorder (ASD) is a neurodevelopmental disorder characterized by deficits in social communication, absence or delay in language development, and stereotyped or repetitive behaviors. Genetic studies show that neurexin-neuroligin (NRXN-NLGN) pathway genes contribute susceptibility to ASD, which include cell adhesion molecules NLGN3, NLGN4 and scaffolding proteins SHANK2 and SHANK3. Neuroligin proteins play an important role in synaptic function and trans-synaptic signaling by interacting with presynaptic neurexins. Shank proteins are scaffolding molecules of excitatory synapses, which function as central organizers of the postsynaptic density. Sequence level mutations and structural variations in these genes have been identified in ASD cases, while few studies were performed in Chinese population. In this study, we examined the copy numbers of four genes NLGN4, NLGN3, SHANK2, and SHANK3 in 285 ASD cases using multiplex fluorescence competitive polymerase chain reaction (PCR). We also screened the regulatory region including the promoter region and 5'/3' untranslated regions (UTR) and the entire coding region of NLGN4 in a cohort of 285 ASD patients and 384 controls by direct sequencing of genomic DNA using the Sanger method. DNA copy number calculation in four genes showed no deletion or duplication in our cases. No missense mutations in NLGN4 were identified in our cohort. Association analysis of 6 common SNPs in NLGN4 did not find significant difference between ASD cases and controls. These findings showed that these genes may not be major disease genes in Chinese ASD cases."	"Dysfunction of SHANK2 and CHRNA7 in a patient with intellectual disability and language impairment supports genetic epistasis of the two loci. Synaptopathies constitute a group of neurological diseases including autism spectrum disorders (ASD) and intellectual disability (ID). They have been associated with mutations in genes encoding proteins important for the formation and stabilization of synapses, such as SHANK1-3. Loss-of-function mutations in the SHANK genes have been identified in individuals with ASD and ID suggesting that other factors modify the neurological phenotype. We report a boy with severe ID, behavioral anomalies, and language impairment who carries a balanced de novo triple translocation 46,XY,t(11;17;19)(q13.3;q25.1;q13.42). The 11q13.3 breakpoint was found to disrupt the SHANK2 gene. The patient also carries copy number variations at 15q13.3 and 10q22.11 encompassing ARHGAP11B and two synaptic genes. The CHRNA7 gene encoding α7-nicotinic acetylcholine receptor subunit and the GPRIN2 gene encoding G-protein-regulated inducer of neurite growth 2 were duplicated. Co-occurrence of a de novo SHANK2 mutation and a CHRNA7 duplication in two reported patients with ASD and ID as well as in the patient with t(11;17;19), severe ID and behavior problems suggests convergence of these genes on a common synaptic pathway. Our results strengthen the oligogenic inheritance model and highlight the presence of a large effect mutation and modifier genes collectively determining phenotypic expression of the synaptopathy."	"Shank2 contributes to the apical retention and intracellular redistribution of NaPiIIa in OK cells. In renal proximal tubule (PT) cells, sodium-phosphate cotransporter IIa (NaPiIIa) is normally concentrated within the apical membrane where it reabsorbs ∼70% of luminal phosphate (Pi). NaPiIIa activity is acutely regulated by moderating its abundance within the apical membrane. Under low-Pi conditions, NaPiIIa is retained within the apical membrane. Under high-Pi conditions, NaPiIIa is retrieved from the apical membrane and trafficked to the lysosomes for degradation. The present study investigates the role of Shank2 in regulating the distribution of NaPiIIa. In opossum kidney cells, a PT cell model, knockdown of Shank2 in cells maintained in low-Pi media resulted in a marked decrease in NaPiIIa abundance. After being transferred into high-Pi media, live-cell imaging showed that mRFP-Shank2E and GFP-NaPiIIa underwent endocytosis and trafficked together through the subapical domain. Fluorescence cross-correlation spectroscopy demonstrated that GFP-NaPiIIa and mRFP-Shank2 have indistinguishable diffusion coefficients and migrated through the subapical domain in temporal synchrony. Raster image cross-correlation spectroscopy demonstrated these two proteins course through the subapical domain in temporal-spatial synchrony. In the microvilli of cells under low-Pi conditions and in the subapical domain of cells under high-Pi conditions, fluorescence lifetime imaging microscopy-Forster resonance energy transfer analysis of Cer-NaPiIIa and EYFP-Shank2E found these fluors reside within 10 nm of each other. Demonstrating a complexity of functions, in cells maintained under low-Pi conditions, Shank2 plays an essential role in the apical retention of NaPiIIa while under high-Pi conditions Shank2 remains associated with NaPiIIa and escorts NaPiIIa through the cell interior."	"Breakpoint mapping by next generation sequencing reveals causative gene disruption in patients carrying apparently balanced chromosome rearrangements with intellectual deficiency and/or congenital malformations. Apparently balanced chromosomal rearrangements (ABCR) are associated with an abnormal phenotype in 6% of cases. This may be due to cryptic genomic imbalances or to the disruption of genes at the breakpoint. However, breakpoint cloning using conventional methods (ie, fluorescent in situ hybridisation (FISH), Southern blot) is often laborious and time consuming. In this work, we used next generation sequencing (NGS) to locate breakpoints at the molecular level in four patients with multiple congenital abnormalities and/or intellectual deficiency (MCA/ID) who were carrying ABCR (one translocation, one complex chromosomal rearrangement and two inversions), which corresponded to nine breakpoints. Genomic imbalance was previously excluded by array comparative genomic hybridisation (CGH) in all four patients. Whole genome paired-end protocol was used to identify breakpoints. The results were verified by FISH and by PCR with Sanger sequencing. We were able to map all nine breakpoints. NGS revealed an additional breakpoint due to a cryptic inversion at a breakpoint junction in one patient. Nine of 10 breakpoints occurred in repetitive elements and five genes were disrupted in their intronic sequence (TCF4, SHANK2, PPFIA1, RAB19, KCNQ1). NGS is a powerful tool allowing rapid breakpoint cloning of ABCR at the molecular level. We showed that in three out of four patients, gene disruption could account for the phenotype, allowing adapted genetic counselling and stopping unnecessary investigations. We propose that patients carrying ABCR with an abnormal phenotype should be explored systematically by NGS once a genomic imbalance has been excluded by array CGH."	"The E3 ligase APC/C-Cdh1 is required for associative fear memory and long-term potentiation in the amygdala of adult mice. The anaphase promoting complex/cyclosome (APC/C) is an E3 ligase regulated by Cdh1. Beyond its role in controlling cell cycle progression, APC/C-Cdh1 has been detected in neurons and plays a role in long-lasting synaptic plasticity and long-term memory. Herein, we further examined the role of Cdh1 in synaptic plasticity and memory by generating knockout mice where Cdh1 was conditionally eliminated from the forebrain post-developmentally. Although spatial learning and memory in the Morris water maze (MWM) was normal, the Cdh1 conditional knockout (cKO) mice displayed enhanced reversal learning in the MWM and in a water-based Y maze. In addition, we found that the Cdh1 cKO mice had impaired associative fear memory and exhibited impaired long-term potentiation (LTP) in amygdala slices. Finally, we observed increased expression of Shank1 and NR2A expression in amygdalar slices from the Cdh1 cKO mice following the induction of LTP, suggesting a possible molecular mechanism underlying the behavioral and synaptic plasticity impairments displayed in these mice. Our findings are consistent with a role for the APC/C-Cdh1 in fear memory and synaptic plasticity in the amygdala."	"In vitro analysis of PDZ-dependent CFTR macromolecular signaling complexes. Cystic fibrosis transmembrane conductance regulator (CFTR), a chloride channel located primarily at the apical membranes of epithelial cells, plays a crucial role in transepithelial fluid homeostasis(1-3). CFTR has been implicated in two major diseases: cystic fibrosis (CF)(4) and secretory diarrhea(5). In CF, the synthesis or functional activity of the CFTR Cl- channel is reduced. This disorder affects approximately 1 in 2,500 Caucasians in the United States(6). Excessive CFTR activity has also been implicated in cases of toxin-induced secretory diarrhea (e.g., by cholera toxin and heat stable E. coli enterotoxin) that stimulates cAMP or cGMP production in the gut(7). Accumulating evidence suggest the existence of physical and functional interactions between CFTR and a growing number of other proteins, including transporters, ion channels, receptors, kinases, phosphatases, signaling molecules, and cytoskeletal elements, and these interactions between CFTR and its binding proteins have been shown to be critically involved in regulating CFTR-mediated transepithelial ion transport in vitro and also in vivo(8-19). In this protocol, we focus only on the methods that aid in the study of the interactions between CFTR carboxyl terminal tail, which possesses a protein-binding motif [referred to as PSD95/Dlg1/ZO-1 (PDZ) motif], and a group of scaffold proteins, which contain a specific binding module referred to as PDZ domains. So far, several different PDZ scaffold proteins have been reported to bind to the carboxyl terminal tail of CFTR with various affinities, such as NHERF1, NHERF2, PDZK1, PDZK2, CAL (CFTR-associated ligand), Shank2, and GRASP(20-27). The PDZ motif within CFTR that is recognized by PDZ scaffold proteins is the last four amino acids at the C terminus (i.e., 1477-DTRL-1480 in human CFTR)(20). Interestingly, CFTR can bind more than one PDZ domain of both NHERFs and PDZK1, albeit with varying affinities(22). This multivalency with respect to CFTR binding has been shown to be of functional significance, suggesting that PDZ scaffold proteins may facilitate formation of CFTR macromolecular signaling complexes for specific/selective and efficient signaling in cells(16-18). Multiple biochemical assays have been developed to study CFTR-involving protein interactions, such as co-immunoprecipitation, pull-down assay, pair-wise binding assay, colorimetric pair-wise binding assay, and macromolecular complex assembly assay(16-19,28,29). Here we focus on the detailed procedures of assembling a PDZ motif-dependent CFTR-containing macromolecular complex in vitro, which is used extensively by our laboratory to study protein-protein or domain-domain interactions involving CFTR(16-19,28,29)."	"Genome-wide screening for genetic alterations in esophageal cancer by aCGH identifies 11q13 amplification oncogenes associated with nodal metastasis. Esophageal squamous cell carcinoma (ESCC) is highly prevalent in China and other Asian countries, as a major cause of cancer-related mortality. ESCC displays complex chromosomal abnormalities, including multiple structural and numerical aberrations. Chromosomal abnormalities, such as recurrent amplifications and homozygous deletions, directly contribute to tumorigenesis through altering the expression of key oncogenes and tumor suppressor genes. To understand the role of genetic alterations in ESCC pathogenesis and identify critical amplification/deletion targets, we performed genome-wide 1-Mb array comparative genomic hybridization (aCGH) analysis for 10 commonly used ESCC cell lines. Recurrent chromosomal gains were frequently detected on 3q26-27, 5p15-14, 8p12, 8p22-24, 11q13, 13q21-31, 18p11 and 20q11-13, with frequent losses also found on 8p23-22, 11q22, 14q32 and 18q11-23. Gain of 11q13.3-13.4 was the most frequent alteration in ESCC. Within this region, CCND1 oncogene was identified with high level of amplification and overexpression in ESCC, while FGF19 and SHANK2 was also remarkably over-expressed. Moreover, a high concordance (91.5%) of gene amplification and protein overexpression of CCND1 was observed in primary ESCC tumors. CCND1 amplification/overexpression was also significantly correlated with the lymph node metastasis of ESCC. These findings suggest that genomic gain of 11q13 is the major mechanism contributing to the amplification. Novel oncogenes identified within the 11q13 amplicon including FGF19 and SHANK2 may play important roles in ESCC tumorigenesis."	"Neurodevelopmental disorders: exploring the links between SHANK2 and autism. NA"	"Autistic-like social behaviour in Shank2-mutant mice improved by restoring NMDA receptor function. Autism spectrum disorder (ASD) is a group of conditions characterized by impaired social interaction and communication, and restricted and repetitive behaviours. ASD is a highly heritable disorder involving various genetic determinants. Shank2 (also known as ProSAP1) is a multi-domain scaffolding protein and signalling adaptor enriched at excitatory neuronal synapses, and mutations in the human SHANK2 gene have recently been associated with ASD and intellectual disability. Although ASD-associated genes are being increasingly identified and studied using various approaches, including mouse genetics, further efforts are required to delineate important causal mechanisms with the potential for therapeutic application. Here we show that Shank2-mutant (Shank2(-/-)) mice carrying a mutation identical to the ASD-associated microdeletion in the human SHANK2 gene exhibit ASD-like behaviours including reduced social interaction, reduced social communication by ultrasonic vocalizations, and repetitive jumping. These mice show a marked decrease in NMDA (N-methyl-D-aspartate) glutamate receptor (NMDAR) function. Direct stimulation of NMDARs with D-cycloserine, a partial agonist of NMDARs, normalizes NMDAR function and improves social interaction in Shank2(-/-) mice. Furthermore, treatment of Shank2(-/-) mice with a positive allosteric modulator of metabotropic glutamate receptor 5 (mGluR5), which enhances NMDAR function via mGluR5 activation, also normalizes NMDAR function and markedly enhances social interaction. These results suggest that reduced NMDAR function may contribute to the development of ASD-like phenotypes in Shank2(-/-) mice, and mGluR modulation of NMDARs offers a potential strategy to treat ASD."	"Autistic-like behaviours and hyperactivity in mice lacking ProSAP1/Shank2. Autism spectrum disorders comprise a range of neurodevelopmental disorders characterized by deficits in social interaction and communication, and by repetitive behaviour. Mutations in synaptic proteins such as neuroligins, neurexins, GKAPs/SAPAPs and ProSAPs/Shanks were identified in patients with autism spectrum disorder, but the causative mechanisms remain largely unknown. ProSAPs/Shanks build large homo- and heteromeric protein complexes at excitatory synapses and organize the complex protein machinery of the postsynaptic density in a laminar fashion. Here we demonstrate that genetic deletion of ProSAP1/Shank2 results in an early, brain-region-specific upregulation of ionotropic glutamate receptors at the synapse and increased levels of ProSAP2/Shank3. Moreover, ProSAP1/Shank2(-/-) mutants exhibit fewer dendritic spines and show reduced basal synaptic transmission, a reduced frequency of miniature excitatory postsynaptic currents and enhanced N-methyl-d-aspartate receptor-mediated excitatory currents at the physiological level. Mutants are extremely hyperactive and display profound autistic-like behavioural alterations including repetitive grooming as well as abnormalities in vocal and social behaviours. By comparing the data on ProSAP1/Shank2(-/-) mutants with ProSAP2/Shank3αβ(-/-) mice, we show that different abnormalities in synaptic glutamate receptor expression can cause alterations in social interactions and communication. Accordingly, we propose that appropriate therapies for autism spectrum disorders are to be carefully matched to the underlying synaptopathic phenotype."	"Routine multiplex mutational profiling of melanomas enables enrollment in genotype-driven therapeutic trials. Knowledge of tumor mutation status is becoming increasingly important for the treatment of cancer, as mutation-specific inhibitors are being developed for clinical use that target only sub-populations of patients with particular tumor genotypes. Melanoma provides a recent example of this paradigm. We report here development, validation, and implementation of an assay designed to simultaneously detect 43 common somatic point mutations in 6 genes (BRAF, NRAS, KIT, GNAQ, GNA11, and CTNNB1) potentially relevant to existing and emerging targeted therapies specifically in melanoma. The test utilizes the SNaPshot method (multiplex PCR, multiplex primer extension, and capillary electrophoresis) and can be performed rapidly with high sensitivity (requiring 5-10% mutant allele frequency) and minimal amounts of DNA (10-20 nanograms). The assay was validated using cell lines, fresh-frozen tissue, and formalin-fixed paraffin embedded tissue. Clinical characteristics and the impact on clinical trial enrollment were then assessed for the first 150 melanoma patients whose tumors were genotyped in the Vanderbilt molecular diagnostics lab. Directing this test to a single disease, 90 of 150 (60%) melanomas from sites throughout the body harbored a mutation tested, including 57, 23, 6, 3, and 2 mutations in BRAF, NRAS, GNAQ, KIT, and CTNNB1, respectively. Among BRAF V600 mutations, 79%, 12%, 5%, and 4% were V600E, V600K, V600R, and V600M, respectively. 23 of 54 (43%) patients with mutation harboring metastatic disease were subsequently enrolled in genotype-driven trials. We present development of a simple mutational profiling screen for clinically relevant mutations in melanoma. Adoption of this genetically-informed approach to the treatment of melanoma has already had an impact on clinical trial enrollment and prioritization of therapy for patients with the disease."	"IκB kinase/nuclear factor κB-dependent insulin-like growth factor 2 (Igf2) expression regulates synapse formation and spine maturation via Igf2 receptor signaling. Alterations of learning and memory in mice with deregulated neuron-specific nuclear factor κB (NF-κB) activity support the idea that plastic changes of synaptic contacts may depend at least in part on IκB kinase (IKK)/NF-κB-related synapse-to-nucleus signaling. There is, however, little information on the molecular requirements and mechanisms regulating this IKK/NF-κB-dependent synapse development and remodeling. Here, we report that the NF-κB inducing IKK kinase complex is localized at the postsynaptic density (PSD) and activated under basal conditions in the adult mouse brain. Using different models of conditional genetic inactivation of IKK2 function in mouse principal neurons, we show that IKK/NF-κB signaling is critically involved in synapse formation and spine maturation in the adult brain. IKK/NF-κB blockade in the forebrain of mutant animals is associated with reduced levels of mature spines and postsynaptic proteins PSD95, SAP97, GluA1, AMPAR-mediated basal synaptic transmission and a spatial learning impairment. Synaptic deficits can be restored in adult animals within 1 week by IKK/NF-κB reactivation, indicating a highly dynamic IKK/NF-κB-dependent regulation process. We further identified the insulin-like growth factor 2 gene (Igf2) as a novel IKK/NF-κB target. Exogenous Igf2 was able to restore synapse density and promoted spine maturation in IKK/NF-κB signaling-deficient neurons within 24 h. This process depends on Igf2/Igf2R-mediated MEK/ERK activation. Our findings illustrate a fundamental role of IKK/NF-κB-Igf2-Igf2R signaling in synapse formation and maturation in adult mice, thus providing an intriguing link between the molecular actions of IKK/NF-κB in neurons and the memory enhancement factor Igf2."	"SHANK1 Deletions in Males with Autism Spectrum Disorder. Recent studies have highlighted the involvement of rare (&lt;1% frequency) copy-number variations and point mutations in the genetic etiology of autism spectrum disorder (ASD); these variants particularly affect genes involved in the neuronal synaptic complex. The SHANK gene family consists of three members (SHANK1, SHANK2, and SHANK3), which encode scaffolding proteins required for the proper formation and function of neuronal synapses. Although SHANK2 and SHANK3 mutations have been implicated in ASD and intellectual disability, the involvement of SHANK1 is unknown. Here, we assess microarray data from 1,158 Canadian and 456 European individuals with ASD to discover microdeletions at the SHANK1 locus on chromosome 19. We identify a hemizygous SHANK1 deletion that segregates in a four-generation family in which male carriers--but not female carriers--have ASD with higher functioning. A de novo SHANK1 deletion was also detected in an unrelated male individual with ASD with higher functioning, and no equivalent SHANK1 mutations were found in &gt;15,000 controls (p = 0.009). The discovery of apparent reduced penetrance of ASD in females bearing inherited autosomal SHANK1 deletions provides a possible contributory model for the male gender bias in autism. The data are also informative for clinical-genetics interpretations of both inherited and sporadic forms of ASD involving SHANK1."	"Inhibitory activity of bevacizumab to differentiation of retinoblastoma cells. Vascular endothelial growth factor (VEGF) is a major regulator in retinal and choroidal angiogenesis, which are common causes of blindness in all age groups. Recently anti-VEGF treatment using anti-VEGF antibody has revolutionarily improved the visual outcome in patients with vaso-proliferative retinopathies. Herein, we demonstrated that bevacizumab as an anti-VEGF antibody could inhibit differentiation of retinoblastoma cells without affection to cellular viability, which would be mediated via blockade of extracellular signal-regulated kinase (ERK) 1/2 activation. The retinoblastoma cells expressed VEGFR-2 as well as TrkA which is a neurotrophin receptor associated with differentiation of retinoblastoma cells. TrkA in retinoblastoma cells was activated with VEGF treatment. Interestingly even in the concentration of no cellular death, bevascizumab significantly attenuated the neurite formation of differentiated retinoblastoma cells, which was accompanied by inhibition of neurofilament and shank2 expression. Furthermore, bevacizumab inhibited differentiation of retinoblastoma cells by blockade of ERK 1/2 activation. Therefore, based on that the differentiated retinoblastoma cells are mostly photoreceptors, our results suggest that anti-VEGF therapies would affect to the maintenance or function of photoreceptors in mature retina."	"Genetic and functional analyses of SHANK2 mutations suggest a multiple hit model of autism spectrum disorders. Autism spectrum disorders (ASD) are a heterogeneous group of neurodevelopmental disorders with a complex inheritance pattern. While many rare variants in synaptic proteins have been identified in patients with ASD, little is known about their effects at the synapse and their interactions with other genetic variations. Here, following the discovery of two de novo SHANK2 deletions by the Autism Genome Project, we identified a novel 421 kb de novo SHANK2 deletion in a patient with autism. We then sequenced SHANK2 in 455 patients with ASD and 431 controls and integrated these results with those reported by Berkel et al. 2010 (n = 396 patients and n = 659 controls). We observed a significant enrichment of variants affecting conserved amino acids in 29 of 851 (3.4%) patients and in 16 of 1,090 (1.5%) controls (P = 0.004, OR = 2.37, 95% CI = 1.23-4.70). In neuronal cell cultures, the variants identified in patients were associated with a reduced synaptic density at dendrites compared to the variants only detected in controls (P = 0.0013). Interestingly, the three patients with de novo SHANK2 deletions also carried inherited CNVs at 15q11-q13 previously associated with neuropsychiatric disorders. In two cases, the nicotinic receptor CHRNA7 was duplicated and in one case the synaptic translation repressor CYFIP1 was deleted. These results strengthen the role of synaptic gene dysfunction in ASD but also highlight the presence of putative modifier genes, which is in keeping with the &quot;multiple hit model&quot; for ASD. A better knowledge of these genetic interactions will be necessary to understand the complex inheritance pattern of ASD."	"Detection and characterization of copy number variation in autism spectrum disorder. There now exist multiple lines of evidence pointing to a significant genetic component underlying the aetiology of autism spectrum disorders (ASDs). The advent of methodologies for scanning the human genome at high resolution, coupled with the recognition of copy number variation (CNV) as a prevalent source of genomic variation, has led to new strategies in the identification of clinically relevant loci. Balanced genomic changes, such as translocations and inversions, also contribute to ASD, but current studies have shown that screening with microarrays has up to fivefold increase in diagnostic yield. Recent work by our group and others has shown unbalanced genomic alterations that are likely pathogenic in upwards of 10% of cases, highlighting an important role for CNVs in the genetic aetiology of ASD. A trend in our empirical data has shifted focus for discovery of candidate loci towards individually rare but highly penetrant CNVs instead of looking for common variants of low penetrance. This strategy has proven largely successful in identifying ASD-susceptibility candidate loci, including gains and losses at 16p11.2, SHANK2, NRXN1, and PTCHD1. Another emerging and intriguing trend is the identification of the same genes implicated by rare CNVs across neurodevelopmental disorders, including schizophrenia, attention deficit hyperactivity disorder, and intellectual disability. These observations indicate that similar pathways may be involved in phenotypically distinct outcomes. Although interrogation of the genome at high resolution has led to these novel discoveries, it has also made cataloguing, characterization, and clinical interpretation of the increasing amount of CNV data difficult. Herein, we describe the history of genomic structural variation in ASD and how CNV discovery has been used to pinpoint novel ASD-susceptibility loci. We also discuss the overlap of CNVs across neurodevelopmental disorders and comment on the current challenges of understanding the relationship between CNVs and associated phenotypes in a clinical context."	"Wistar rats subjected to chronic restraint stress display increased hippocampal spine density paralleled by increased expression levels of synaptic scaffolding proteins. The aim of this study was to investigate whether the previously reported effect of chronic restraint stress (CRS) on hippocampal neuron morphology and spine density is paralleled by a similar change in the expression levels of synaptic scaffolding proteins. Adult male Wistar rats were subjected either to CRS (6 h/day) for 21 days or to control conditions. The resulting brains were divided and one hemisphere was impregnated with Golgi-Cox before coronal sectioning and autometallographic development. Neurons from CA1, CA3b, CA3c, and dentate gyrus (DG) area were reconstructed and subjected to Sholl analysis and spine density estimation. The contralateral hippocampus was used for quantitative real-time polymerase chain reaction and protein analysis of genes associated with spine density and morphology (the synaptic scaffolding proteins: Spinophilin, Homer1-3, and Shank1-3). In the CA3c area, CRS decreased the number of apical dendrites and their total length, whereas CA1 and DG spine density were significantly increased. Analysis of the contralateral hippocampal homogenate displayed an increased gene expression of Spinophilin, Homer1, Shank1, and Shank2 and increased protein expression of Spinophilin and Homer1 in the CRS animals. In conclusion, CRS influences hippocampal neuroplasticity by modulation of dendrite branching pattern and spine density paralleled by increased expression levels of synaptic scaffolding proteins."	"Inherited and de novo SHANK2 variants associated with autism spectrum disorder impair neuronal morphogenesis and physiology. Mutations in the postsynaptic scaffolding gene SHANK2 have recently been identified in individuals with autism spectrum disorder (ASD) and intellectual disability. However, the cellular and physiological consequences of these mutations in neurons remain unknown. We have analyzed the functional impact caused by two inherited and one de novo SHANK2 mutations from ASD individuals (L1008_P1009dup, T1127M, R462X). Although all three variants affect spine volume and have smaller SHANK2 cluster sizes, T1127M additionally fails to rescue spine volume in Shank2 knock-down neurons. R462X is not able to rescue spine volume and dendritic branching and lacks postsynaptic clustering, indicating the most severe dysfunction. To demonstrate that R462X when expressed in mouse can be linked to physiological effects, we analyzed synaptic transmission and behavior. Principal neurons of mice expressing rAAV-transduced SHANK2-R462X present a specific, long-lasting reduction in miniature postsynaptic AMPA receptor currents. This dominant negative effect translates into dose-dependent altered cognitive behavior of SHANK2-R462X-expressing mice, with an impact on the penetrance of ASD."	"A promoter variant of SHANK1 affects auditory working memory in schizophrenia patients and in subjects clinically at risk for psychosis. Mutations in postsynaptic scaffolding genes contribute to autism, thus suggesting a role in pathological processes in neurodevelopment. Recently, two de novo mutations in SHANK3 were described in schizophrenia patients. In most cases, abnormal SHANK3 genotype was also accompanied by cognitive disruptions. The present study queries whether common SHANK variants may also contribute to neuropsychological dysfunctions in schizophrenia. We genotyped five common coding or promoter variants located in SHANK1, SHANK2 and SHANK3. A comprehensive test battery was used to assess neuropsychological functions in 199 schizophrenia patients and 206 healthy control subjects. In addition, an independent sample of 77 subjects at risk for psychosis was analyzed for replication of significant findings. We found the T allele of the SHANK1 promoter variant rs3810280 to lead to significantly impaired auditory working memory as assessed with digit span (12.5 ± 3.6 vs. 14.8 ± 4.1, P &lt; .001) in schizophrenia cases, applying strict Bonferroni correction for multiple testing. This finding was replicated for forward digit span in the at-risk sample (7.1 ± 2.0 vs. 8.3 ± 2.0, P = .044). Previously, altered memory functions and reduced dendritic spines and postsynaptic density of excitatory synapses were reported in SHANK1 knock-out mice. Moreover, the atypical neuroleptic clozapine was found to increase SHANK1 density in rats. Our findings suggest a role of SHANK1 in working memory deficits in schizophrenia, which may arise from neurodevelopmental changes to prefrontal cortical areas."	"Postsynaptic ProSAP/Shank scaffolds in the cross-hair of synaptopathies. Intact synaptic homeostasis is a fundamental prerequisite for a healthy brain. Thus, it is not surprising that altered synaptic morphology and function are involved in the molecular pathogenesis of so-called synaptopathies including autism, schizophrenia (SCZ) and Alzheimer's disease (AD). Intriguingly, various recent studies revealed a crucial role of postsynaptic ProSAP/Shank scaffold proteins in all of the aforementioned disorders. Considering these findings, we follow the hypothesis that ProSAP/Shank proteins are key regulators of synaptic development and plasticity with clear-cut isoform-specific roles. We thus propose a model where ProSAP/Shank proteins are in the center of a postsynaptic signaling pathway that is disrupted in several neuropsychiatric disorders."	"Combination effects of distinct cores in 11q13 amplification region on cervical lymph node metastasis of oral squamous cell carcinoma. Lymph node metastasis (LNM) in oral squamous cell carcinoma (OSCC) is known to associate with a significant decrease of 5-year survival. Genetic factors related to the difference of the LNM status in the OSCC have been not fully elucidated. Array-based comparative genomic hybridization (CGH) with individual gene-level resolution and real-time quantitative polymerase chain reaction (QPCR) were conducted using primary tumor materials resected from 54 OSCC patients with (n=22) or without (n=32) cervical LNM. Frequent gain was observed at the 11q13 region exclusively in patients with cervical LNM, which was confirmed by real-time QPCR experiments using 11 genes (TPCN2, MYEOV, CCND1, ORAOV1, FGF4, TMEM16A, FADD, PPFIA1, CTTN, SHANK2 and DHCR7) in this region. It was revealed that two distinct amplification cores existed, which were separated by a breakpoint between MYEOV and CCND1 in the 11q13 region. The combination of copy number amplification at CTTN (core 2) and/or TPCN2/MYEOV (core 1), selected from each core, was most significantly associated with cervical LNM (P=0.0035). Two amplification cores at the 11q13 region may have biological impacts on OSCC cells to spread from the primary site to local lymph nodes. Further study of a larger patient series should be conducted to validate these results."	"Communication impairments in mice lacking Shank1: reduced levels of ultrasonic vocalizations and scent marking behavior. Autism is a neurodevelopmental disorder with a strong genetic component. Core symptoms are abnormal reciprocal social interactions, qualitative impairments in communication, and repetitive and stereotyped patterns of behavior with restricted interests. Candidate genes for autism include the SHANK gene family, as mutations in SHANK2 and SHANK3 have been detected in several autistic individuals. SHANK genes code for a family of scaffolding proteins located in the postsynaptic density of excitatory synapses. To test the hypothesis that a mutation in SHANK1 contributes to the symptoms of autism, we evaluated Shank1(-/-) null mutant mice for behavioral phenotypes with relevance to autism, focusing on social communication. Ultrasonic vocalizations and the deposition of scent marks appear to be two major modes of mouse communication. Our findings revealed evidence for low levels of ultrasonic vocalizations and scent marks in Shank1(-/-) mice as compared to wildtype Shank1(+/+) littermate controls. Shank1(-/-) pups emitted fewer vocalizations than Shank1(+/+) pups when isolated from mother and littermates. In adulthood, genotype affected scent marking behavior in the presence of female urinary pheromones. Adult Shank1(-/-) males deposited fewer scent marks in proximity to female urine than Shank1(+/+) males. Call emission in response to female urinary pheromones also differed between genotypes. Shank1(+/+) mice changed their calling pattern dependent on previous female interactions, while Shank1(-/-) mice were unaffected, indicating a failure of Shank1(-/-) males to learn from a social experience. The reduced levels of ultrasonic vocalizations and scent marking behavior in Shank1(-/-) mice are consistent with a phenotype relevant to social communication deficits in autism."	"Chondroitin sulfate proteoglycans regulate astrocyte-dependent synaptogenesis and modulate synaptic activity in primary embryonic hippocampal neurons. It has been shown that astrocyte-derived extracellular matrix (ECM) is important for formation and maintenance of CNS synapses. In order to study the effects of glial-derived ECM on synaptogenesis, E18 rat hippocampal neurons and primary astrocytes were co-cultivated using a cell-insert system. Under these conditions, neurons differentiated under low density conditions (3500 cells/cm(2) ) in defined, serum-free medium and in the absence of direct, membrane-mediated neuron-astrocyte interactions. Astrocytes promoted the formation of structurally intact synapses, as documented by the co-localisation of bassoon- and ProSAP1/Shank2-positive puncta, markers of the pre- and postsynapse, respectively. The development of synapses was paralleled by the emergence of perineuronal net (PNN)-like structures that contained various ECM components such as hyaluronic acid, brevican and neurocan. In order to assess potential functions for synaptogenesis, the ECM was removed by treatment with hyaluronidase or chondroitinase ABC. Both enzymes significantly enhanced the number of synaptic puncta. Whole-cell voltage-clamp recordings of control and enzyme-treated hippocampal neurons revealed that chondroitinase ABC treatment led to a significant decrease in amplitude and a reduced charge of miniature excitatory postsynaptic currents, whereas inhibitory postsynaptic currents were not affected. When the response to the application of glutamate was measured, a reduced sensitivity could be detected and resulted in decreased currents in response to the excitatory neurotransmitter. These findings are consistent with the interpretation that the ECM partakes in the regulation of the density of glutamate receptors in subsynaptic sites."	"The spatio-temporal expression of ProSAP/shank family members and their interaction partner LAPSER1 during Xenopus laevis development. Members of the ProSAP/Shank family are important scaffolding proteins of the postsynaptic density (PSD). We investigated for the first time the expression of the three family members named Shank1, ProSAP1/Shank2, and ProSAP2/Shank3 during Xenopus laevis development. Shank1 is expressed in the neural tube, the retina, and the cranial ganglions. In contrast, ProSAP1/Shank2 transcripts could be visualized in the otic vesicle, the pronephros, the liver, the neural tube, and the retina. ProSAP2/Shank3 could be detected in the cardiovascular network, the neural tube, the pronephros, and the retina. Furthermore, we showed that LAPSER1 interacts with all three ProSAP/Shank family members in Xenopus embryos and co-localizes with ProSAP/Shank in a cell-based assay. In Xenopus, LAPSER1 is expressed in somites, brain, proctodeum, pronephros, and in some cranial ganglions. Thus, we suggest that members of the ProSAP/Shank family and LAPSER1 not only play a role in PSD formation and plasticity, but also during embryonic development."	"Olfactory Receptor-Related Duplicons Mediate a Microdeletion at 11q13.2q13.4 Associated with a Syndromic Phenotype. By array-CGH, we identified a cryptic deletion of about 3.4 Mb involving the chromosomal region 11q13.2q13.4 in a child with speech and developmental delay. Highly homologous segmental duplications related to the well-known olfactory receptor (OR)-containing clusters at 8p and 4p are located at the breakpoints of the imbalance and may be involved in its occurrence. Although these structural features are known to promote recurrent chromosomal rearrangements and previous studies had included the 11q13.2q13.4 deletion region among those considered potentially more unstable, neither deletions nor duplications of this region had been reported until now. Among the deleted genes, SHANK2 might play a role in the phenotype of the patient since it encodes a postsynaptic scaffolding protein similar to SHANK3, whose haploinsufficiency is a well-known cause of severe speech delay and autistic-like behavior, and recently deletions and mutations of SHANK2 have been described in patients with an autistic spectrum disorder or mental retardation."	"Concerted action of zinc and ProSAP/Shank in synaptogenesis and synapse maturation. Neuronal morphology and number of synapses is not static, but can change in response to a variety of factors, a process called synaptic plasticity. These structural and molecular changes are believed to represent the basis for learning and memory, thereby underling both the developmental and activity-dependent remodelling of excitatory synapses. Here, we report that Zn(2+) ions, which are highly enriched within the postsynaptic density (PSD), are able to influence the recruitment of ProSAP/Shank proteins to PSDs in a family member-specific manner during the course of synaptogenesis and synapse maturation. Through selectively overexpressing each family member at excitatory postsynapses and comparing this to shRNA-mediated knockdown, we could demonstrate that only the overexpression of zinc-sensitive ProSAP1/Shank2 or ProSAP2/Shank3 leads to increased synapse density, although all of them cause a decrease upon knockdown. Furthermore, depletion of synaptic Zn(2+) along with the knockdown of zinc-insensitive Shank1 causes the rapid disintegration of PSDs and the loss of several postsynaptic molecules including Homer1, PSD-95 and NMDA receptors. These findings lead to the model that the concerted action of ProSAP/Shank and Zn(2+) is essential for the structural integrity of PSDs and moreover that it is an important element of synapse formation, maturation and structural plasticity."	"Subtype-specific roles of phospholipase C-β via differential interactions with PDZ domain proteins. Since we first identified the PLC-β isozyme, enormous studies have been conducted to investigate the functional roles of this protein (Min et al., 1993; Suh et al.,1988). It is now well-known that the four PLC-β subtypes are major effector molecules in GPCR-mediated signaling, especially for intracellular Ca2+ signaling. Nonetheless, it is still poorly understood why multiple PLC-β subtype exist. Most cells express multiple subtypes of PLC-β in different combinations, and each subtype is involved in somewhat different signaling pathways. Therefore, studying the differential roles of each PLC-β subtype is a very interesting issue. In this regard, we focus here on PDZ domain proteins which are novel PLC-β interacting proteins. As scaffolders, PDZ domain proteins recruit various target proteins ranging from membrane receptors to cytoskeletal proteins to assemble highly organized signaling complexes; this can give rise to efficiency and diversity in cellular signaling. Because PLC-β subtypes have different PDZ-binding motifs, it is possible that they are engaged with different PDZ domain proteins, and in turn participate in distinct physiological responses. To date, several PDZ domain proteins, such as the NHERF family, Shank2, and Par-3, have been reported to selectively interact with certain PLC-β subtypes and GPCRs. Systematic predictions of potential binding partners also suggests differential binding properties between PLC-β subtypes. Furthermore, we elucidated parallel signaling processes for multiple PLC-β subtypes, which still perform distinct functions resulting from differential interactions with PDZ domain proteins within a single cell. Therefore, these results highlight the novel function of PDZ domain proteins as intermediaries in subtype-specific role of PLC-β in GPCR-mediated signaling. Future studies will focus on the physiological meanings of this signaling complex formation by different PDZ domain proteins and PLC-β subtypes. It has been observed for a long time that the expression of certain PLC-β subtype fluctuates during diverse physiological conditions. For example, the expression of PLC-β1 is selectively increased during myoblast and adipocyte differentiation (Faenza et al., 2004; O'Carroll et al., 2009). Likewise, PLC-β2 is highly up-regulated during breast cancer progression and plays a critical role in cell migration and mitosis (Bertagnolo et al., 2007). Although PLC-β3 is selectively down-regulated in neuroendocrine tumors, the expression of PLC-β1 is increased in small cell lung carcinoma (Stalberg et al., 2003; Strassheim et al., 2000). In our hypothetical model, it is most likely that up- and down regulation of certain PLC-β subtypes are due to their selective coupling with specific GPCR-mediated signaling, implicated in these pathophysiologic conditions. Therefore, better understanding of selective coupling between PLC-β subtypes, PDZ domain proteins, and GPCRs will shed light on new prognosis and therapy of diverse diseases, and provide potential targets for drug development."	"SHANK2 redemption: another synaptic protein for mental retardation and autism. NA"	"Gene and miRNA expression profiles in autism spectrum disorders. Accumulating data indicate that there is significant genetic heterogeneity underlying the etiology in individuals diagnosed with autism spectrum disorder (ASD). Some rare and highly-penetrant gene variants and copy number variation (CNV) regions including NLGN3, NLGN4, NRXN1, SHANK2, SHANK3, PTCHD1, 1q21.1, maternally-inherited duplication of 15q11-q13, 16p11.2, amongst others, have been identified to be involved in ASD. Genome-wide association studies have identified other apparently low risk loci and in some other cases, ASD arises as a co-morbid phenotype with other medical genetic conditions (e.g. fragile X). The progress studying the genetics of ASD has largely been accomplished using genomic analyses of germline-derived DNA. Here, we used gene and miRNA expression profiling using cell-line derived total RNA to evaluate possible transcripts and networks of molecules involved in ASD. Our analysis identified several novel dysregulated genes and miRNAs in ASD compared with controls, including HEY1, SOX9, miR-486 and miR-181b. All of these are involved in nervous system development and function and some others, for example, are involved in NOTCH signaling networks (e.g. HEY1). Further, we found significant enrichment in molecules associated with neurological disorders such as Rett syndrome and those associated with nervous system development and function including long-term potentiation. Our data will provide a valuable resource for discovery purposes and for comparison to other gene expression-based, genome-wide DNA studies and other functional data."	"Shank2 redistributes with NaPilla during regulated endocytosis. Serum phosphate levels are acutely impacted by the abundance of sodium-phosphate cotransporter IIa (NaPiIIa) in the apical membrane of renal proximal tubule cells. PSD-95/Disks Large/Zonula Occludens (PDZ) domain-containing proteins bind NaPiIIa and likely contribute to the delivery, retention, recovery, and trafficking of NaPiIIa. Shank2 is a distinctive PDZ domain protein that binds NaPiIIa. Its role in regulating NaPiIIa activity, distribution, and abundance is unknown. In the present in vivo study, rats were maintained on a low-phosphate diet, and then plasma phosphate levels were acutely elevated by high-phosphate feeding to induce the recovery, endocytosis, and degradation of NaPiIIa. Western blot analysis of renal cortical tissue from rats given high-phosphate feed showed NaPiIIa and Shank2 underwent degradation. Quantitative immunofluorescence analyses, including microvillar versus intracellular intensity ratios and intensity correlation quotients, showed that Shank2 redistributed with NaPiIIa during the time course of NaPiIIa endocytosis. Furthermore, NaPiIIa and Shank2 trafficked through distinct endosomal compartments (clathrin, early endosomes, lysosomes) with the same temporal pattern. These in vivo findings indicate that Shank2 is positioned to coordinate the regulated endocytic retrieval and downregulation of NaPiIIa in rat renal proximal tubule cells."	"Proline-rich synapse-associated protein-1 and 2 (ProSAP1/Shank2 and ProSAP2/Shank3)-scaffolding proteins are also present in postsynaptic specializations of the peripheral nervous system. Proline-rich synapse-associated protein-1 and 2 (ProSAP1/Shank2 and ProSAP2/Shank3) were originally found as synapse-associated protein 90/postsynaptic density protein-95-associated protein (SAPAP)/guanylate-kinase-associated protein (GKAP) interaction partners and also isolated from synaptic junctional protein preparations of rat brain. They are essential components of the postsynaptic density (PSD) and are specifically targeted to excitatory asymmetric type 1 synapses. Functionally, the members of the ProSAP/Shank family are one of the postsynaptic key elements since they link and attach the postsynaptic signaling apparatus, for example N-methyl-d-aspartic acid (NMDA)-receptors via direct and indirect protein interactions to the actin-based cytoskeleton. The functional significance of ProSAP1/2 for synaptic transmission and the paucity of data with respect to the molecular composition of PSDs of the peripheral nervous system (PNS) stimulated us to investigate neuromuscular junctions (NMJs), synapses of the superior cervical ganglion (SCG), and synapses in myenteric ganglia as representative synaptic junctions of the PNS. Confocal imaging revealed ProSAP1/2-immunoreactivity (-iry) in NMJs of rat and mouse sternomastoid and tibialis anterior muscles. In contrast, ProSAP1/2-iry was only negligibly found in motor endplates of striated esophageal muscle probably caused by antigen masking or a different postsynaptic molecular anatomy at these synapses. ProSAP1/2-iry was furthermore detected in cell bodies and dendrites of superior cervical ganglion neurons and myenteric neurons in esophagus and stomach. Ultrastructural analysis of ProSAP1/2 expression in myenteric ganglia demonstrated that ProSAP1 and ProSAP2 antibodies specifically labelled PSDs of myenteric neurons. Thus, scaffolding proteins ProSAP1/2 were found within the postsynaptic specializations of synapses within the PNS, indicating a similar molecular assembly of central and peripheral postsynapses."	"Functional impact of global rare copy number variation in autism spectrum disorders. The autism spectrum disorders (ASDs) are a group of conditions characterized by impairments in reciprocal social interaction and communication, and the presence of restricted and repetitive behaviours. Individuals with an ASD vary greatly in cognitive development, which can range from above average to intellectual disability. Although ASDs are known to be highly heritable ( approximately 90%), the underlying genetic determinants are still largely unknown. Here we analysed the genome-wide characteristics of rare (&lt;1% frequency) copy number variation in ASD using dense genotyping arrays. When comparing 996 ASD individuals of European ancestry to 1,287 matched controls, cases were found to carry a higher global burden of rare, genic copy number variants (CNVs) (1.19 fold, P = 0.012), especially so for loci previously implicated in either ASD and/or intellectual disability (1.69 fold, P = 3.4 x 10(-4)). Among the CNVs there were numerous de novo and inherited events, sometimes in combination in a given family, implicating many novel ASD genes such as SHANK2, SYNGAP1, DLGAP2 and the X-linked DDX53-PTCHD1 locus. We also discovered an enrichment of CNVs disrupting functional gene sets involved in cellular proliferation, projection and motility, and GTPase/Ras signalling. Our results reveal many new genetic and functional targets in ASD that may lead to final connected pathways."	"Astrocytes are crucial for survival and maturation of embryonic hippocampal neurons in a neuron-glia cell-insert coculture assay. Synapses represent specialized cell-cell contact sites between nerve cells. These structures mediate the rapid and efficient transmission of signals between neurons and are surrounded by glial cells. Previous investigations have shown that astrocytes are important for the formation, maintenance, and function of CNS synapses. To study effects of glial-derived molecules on synaptogenesis, we have established an in vitro cell-insert coculture system for E18 rat hippocampal neurons and various glial cell types. Neurons were cultured without direct contact with glial cells for distinct time periods. First, it was confirmed that astrocytes are essential to promote survival of E18 hippocampal neurons. Beginning with 10 days in culture, the concurrent expression of pre- and postsynaptic proteins was observed. Moreover, the colocalization of the presynaptic marker Bassoon and the postsynaptic protein ProSAP1/Shank2 indicated the formation of synapses. A technique was developed that permits the semiautomated quantitative determination of the number of synaptic puncta per neuron. The culture system was used to assess effects of pharmacological treatments on synapse formation by applying blockers and activators of small GTPases. In particular, treatment with lysophosphatidic acid enhanced synaptogenesis in the coculture system."	"Another piece of the autism puzzle. A new study has identified rare de novo mutations in SHANK2 in individuals with autism and/or mental retardation. SHANK2 encodes a scaffolding protein present in excitatory synapses. This finding sheds some light on the pathophysiology of social and cognitive disability."	"Mutations in the SHANK2 synaptic scaffolding gene in autism spectrum disorder and mental retardation. Using microarrays, we identified de novo copy number variations in the SHANK2 synaptic scaffolding gene in two unrelated individuals with autism-spectrum disorder (ASD) and mental retardation. DNA sequencing of SHANK2 in 396 individuals with ASD, 184 individuals with mental retardation and 659 unaffected individuals (controls) revealed additional variants that were specific to ASD and mental retardation cases, including a de novo nonsense mutation and seven rare inherited changes. Our findings further link common genes between ASD and intellectual disability."	"Activity induced changes in the distribution of Shanks at hippocampal synapses. Dendritic spines contain a family of abundant scaffolding proteins known as Shanks, but little is known about how their distributions might change during synaptic activity. Here, pre-embedding immunogold electron microscopy is used to localize Shanks in synapses from cultured hippocampal neurons. We find that Shanks are preferentially located at postsynaptic densities (PSDs) as well as in a filamentous network near the PSD, extending up to 120 nm from the postsynaptic membrane. Application of sub-type specific antibodies shows that Shank2 is typically concentrated at and near PSDs while Shank1 is, in addition, distributed throughout the spine head. Depolarization with high K+ for 2 min causes transient, reversible translocation of Shanks towards the PSD that is dependent on extracellular Ca2+. The amount of activity-induced redistribution and subsequent recovery is pronounced for Shank1 but less so for Shank2. Thus, Shank1 appears to be a dynamic element within the spine, whose translocation could be involved in activity-induced, transient structural changes, while Shank2 appears to be a more stable element positioned at the interface of the PSD with the spine cytoplasm."	"BetaPix up-regulates Na+/H+ exchanger 3 through a Shank2-mediated protein-protein interaction. Na(+)/H(+) exchanger 3 (NHE3) plays an important role in neutral Na(+) transport in mammalian epithelial cells. The Rho family of small GTPases and the PDZ (PSD-95/discs large/ZO-1) domain-based adaptor Shank2 are known to regulate the membrane expression and activity of NHE3. In this study we examined the role of betaPix, a guanine nucleotide exchange factor for the Rho GTPase and a strong binding partner to Shank2, in NHE3 regulation using integrated molecular and physiological approaches. Immunoprecipitation and pulldown assays revealed that NHE3, Shank2, and betaPix form a macromolecular complex when expressed heterologously in mammalian cells as well as endogenously in rat colon, kidney, and pancreas. In addition, these proteins co-segregated at the apical surface of rat colonic epithelial cells, as detected by immunofluorescence staining. When expressed in PS120/NHE3 cells, betaPix increased membrane expression and basal activity of NHE3. Interestingly, the effects of betaPix on NHE3 were abolished by cotransfection with dominant-negative Shank2 mutants and by treatment with Clostridium difficile toxin B, a Rho GTPase inhibitor, indicating that Shank2 and Rho GTPases are involved in betaPix-mediated NHE3 regulation. Knockdown of endogenous betaPix by RNA interference decreased Shank2-induced increase of NHE3 membrane expression in HEK 293T cells. These results indicate that betaPix up-regulates NHE3 membrane expression and activity by Shank2-mediated protein-protein interaction and by activating Rho GTPases in the apical regions of epithelial cells."	"Recognition of lysine-rich peptide ligands by murine cortactin SH3 domain: CD, ITC, and NMR studies. Cortactin is a ubiquitous actin-binding protein that regulates various aspects of cell dynamics and is implicated in the pathogenesis of human neoplasia. The sequence of cortactin contains a number of signaling motifs and an SH3 domain at the C-terminus, which mediates the interaction of the protein with several partners, including Shank2. A recombinant protein, comprising the murine cortactin SH3 domain fused to GST (GST-SH3(m-cort)), was prepared and used to assess the domain-binding affinity of potential peptide-ligands reproducing the proline-rich regions of human HPK1 and Shank2 proteins. The key residues involved in the SH3(m-cort) domain recognition were identified by three different approaches: non-immobilized ligand interaction assay by circular dichroism, isothermal titration calorimetry, and nuclear magnetic resonance. Our results show that the classical PxxPxK class II binding motif is not sufficient to mediate the interaction with GST-SH3(m-cort), an event that depends on the presence of additional basic residues located at either the N- or the C-terminus of the PxxPxK motif. Especially effective in promoting the peptide binding is a Lys residue at the -5 position, a determinant present in both P2 (HPK1 394-403) and S1 (Shank2 1168-1189) peptides. GST-SH3(m-cort) exhibits the highest affinity toward peptide S1, which contains additional Lys residues at the -3, -5, and -7 positions, indicating that the optimal consensus motif may be KPPxPxKxKxK. These results are supported by the in silico models of SH3(m-cort) complexed with P2 or S1, which highlight the domain residues that interact with the recognition determinants of the peptide-ligand and cooperate in binding stabilization."	"Synaptogenesis of hippocampal neurons in primary cell culture. Hippocampal neurons in dissociated cell culture are one of the most extensively used model systems in the field of molecular and cellular neurobiology. Only limited data are however available on the normal time frame of synaptogenesis, synapse number and ultrastructure of excitatory synapses during early development in culture. Therefore, we analyzed the synaptic ultrastructure and morphology and the localization of presynaptic (Bassoon) and postsynaptic (ProSAP1/Shank2) marker proteins in cultures established from rat embryos at embryonic day 19, after 3, 7, 10, 14, and 21 days in culture. First excitatory synapses were identified at day 7 with a clearly defined postsynaptic density and presynaptically localized synaptic vesicles. Mature synapses on dendritic spines were seen from day 10 onward, and the number of synapses steeply increased in the third week. Fenestrated or multiple synapses were found after 14 or 21 days, respectively. So-called dense-core vesicles, responsible for the transport of proteins to the active zone of the presynaptic specialization, were seen on cultivation day 3 and 7 and could be detected in axons and especially in the presynaptic subcompartments. The expression and localization of the presynaptic protein Bassoon and of the postsynaptic molecule ProSAP1/Shank2 was found to correlate nicely with the ultrastructural results. This regular pattern of development and maturation of excitatory synapses in hippocampal culture starting from day 7 in culture should ease the comparison of synapse number and morphology of synaptic contacts in this widely used model system."	"AnkyrinG is required to maintain axo-dendritic polarity in vivo. Neurons are highly polarized cells that extend a single axon and several dendrites. Studies with cultured neurons indicate that the proximal portion of the axon, denoted as the axon initial segment (AIS), maintains neuronal polarity in vitro. The membrane-adaptor protein ankyrinG (ankG) is an essential component of the AIS. To determine the relevance of ankG for neuronal polarity in vivo, we studied mice with a cerebellum-specific ankG deficiency. Strikingly, ankG-depleted axons develop protrusions closely resembling dendritic spines. Such axonal spines are enriched with postsynaptic proteins, including ProSAP1/Shank2 and ionotropic and metabotropic glutamate receptors. In addition, immunofluorescence indicated that axonal spines are contacted by presynaptic glutamatergic boutons. For further analysis, double mutants were obtained by crossbreeding ankG(-/-) mice with L7/Purkinje cell-specific promoter 2 (PCP2) mice expressing enhanced green fluorescent protein (EGFP) in Purkinje cells (PCs). This approach allowed precise confocal microscopic mapping of EGFP-positive spiny axons and their subsequent identification at the electron microscopic level. Ultrastructurally, axonal spines contained a typical postsynaptic density and established asymmetric excitatory synapses with presynaptic boutons containing synaptic vesicles. In the shaft of spiny axons, typical ultrastructural features of the AIS, including the membrane-associated dense undercoating and cytoplasmic bundles of microtubules, were absent. Finally, using time-lapse imaging of organotypic cerebellar slice cultures, we demonstrate that nonspiny PC axons of EGFP-positive/ankG(-/-) mice acquire a spiny phenotype within a time range of only 3 days. Collectively, these findings demonstrate that axons of ankG-deficient mice acquire hallmark features of dendrites. AnkG thus is important for maintaining appropriate axo-dendritic polarity in vivo."	"Disruption of glutamate receptors at Shank-postsynaptic platform in Alzheimer's disease. Synaptic loss underlies the memory deficit of Alzheimer's disease (AD). The molecular mechanism is elusive; however, excitatory synapses organized by the postsynaptic density (PSD) have been used as targets for AD treatment. To identify pathological entities at the synapse in AD, synaptic proteins were screened by quantitative proteomic profiling. The critical proteins were then selected for immunoblot analysis. The glutamate receptors N-methyl-d-aspartate (NMDA) receptor 1 and alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (AMPA) receptor 2 (GluR2) were substantially lost; specifically, the loss of GluR2 was up to 40% at PSD in AD. Shank proteins, the organizers of these glutamate receptors at excitatory synapses, were dramatically altered in AD. The level of Shank2 was increased, whereas the protein level of Shank3 was decreased. Further, the Shank3 protein was modified by ubiquitin, indicating that abnormal activity of the ubiquitin-proteasome system may lead to Shank3 degradation in AD. Our findings suggest that disruption of glutamate receptors at the Shank-postsynaptic platform could contribute to destruction of the PSD which underlies the synaptic dysfunction and loss in AD."	"Efficient targeting of proteins to post-synaptic densities of excitatory synapses using a novel pSDTarget vector system. Pre- and post-synaptic targeting of synaptic molecules is depending upon specific targeting signals that are encoded within defined regions of the respective protein. For the post-synaptic scaffolding proteins of excitatory synapses, ProSAP1/Shank2 and ProSAP2/Shank3 this targeting information is located within about 460aa of the C-terminus. We found the C-terminal targeting signal to be bipartite composed of a 135aa stretch and the SAM (sterile alpha motif) domain embedding a relatively large variable spacer region. Based on this we developed a new GFP vector system called pSDTarget to easily clone proteins of interest as GFP fusion proteins flanked by a bipartite targeting signal for post-synaptic densities (PSDs) of excitatory synapses. The targeting signal has been derived from the PSD scaffolding protein ProSAP1/Shank2. In hippocampal neuron culture we could effectively localize and attach i.e. Glutathion-S-transferase (GST) at PSDs of excitatory synapses already during early synaptogenesis. Moreover, Gephyrin, an important scaffold molecule of inhibitory post-synapses was succesfully targeted to excitatory synapses followed by the subsequent recruitment of GABAergic receptors leading to hybrid synaptic contacts. In light of the role of specific protein domains for plastic changes of the post-synaptic compartment or investigations focusing on synaptogenesis, signalling and/or transsynaptic crosstalk this vector system provides a powerful and innovative tool for the functional analysis of molecular mechanisms and structural changes in a small but well defined neuronal compartment."	"The postsynaptic density proteins Homer and Shank form a polymeric network structure. The postsynaptic density (PSD) is crucial for synaptic functions, but the molecular architecture retaining its structure and components remains elusive. Homer and Shank are among the most abundant scaffolding proteins in the PSD, working synergistically for maturation of dendritic spines. Here, we demonstrate that Homer and Shank, together, form a mesh-like matrix structure. Crystallographic analysis of this region revealed a pair of parallel dimeric coiled coils intercalated in a tail-to-tail fashion to form a tetramer, giving rise to the unique configuration of a pair of N-terminal EVH1 domains at each end of the coiled coil. In neurons, the tetramerization is required for structural integrity of the dendritic spines and recruitment of proteins to synapses. We propose that the Homer-Shank complex serves as a structural framework and as an assembly platform for other PSD proteins."	"Shank 2 expression coincides with neuronal differentiation in the developing retina. The retinal activity for vision requires a precise synaptic connectivity. Shank proteins at postsynaptic sites of excitatory synapses play roles in signal transmission into the postsynaptic neuron. However, the correlation of Shank 2 expression with neuronal differentiation in the developing retina remains to be elucidated regardless of previous evidences of Shank 2 expression in retina. Herein, we demonstrated that with progression of development, Shank 2 is initially detected in the inner plexiform layer at P2, and then intensively detected in inner plexiform layer, outer plexiform layer, and ganglion cell layer at P14, which was closely colocalized to the neurofilament expression. Shank 2 was, however, not colocalized with glial fibrillary acidic protein. Shank 2 expression was increased in the differentiated retinoblastoma cells, which was mediated by ERK 1/2 activation. Moreover, Shank 2 expression was colocalized with neurofilament at the dendritic region of cells. In conclusion, our data suggests that Shank 2 is expressed in the neurons of the developing retina and could play a critical role in the neuronal differentiation of the developing retina."	"Destabilization of the postsynaptic density by PSD-95 serine 73 phosphorylation inhibits spine growth and synaptic plasticity. Long-term potentiation (LTP) is accompanied by dendritic spine growth and changes in the composition of the postsynaptic density (PSD). We find that activity-dependent growth of apical spines of CA1 pyramidal neurons is accompanied by destabilization of the PSD that results in transient loss and rapid replacement of PSD-95 and SHANK2. Signaling through PSD-95 is required for activity-dependent spine growth and trafficking of SHANK2. N-terminal PDZ and C-terminal guanylate kinase domains of PSD-95 are required for both processes, indicating that PSD-95 coordinates multiple signals to regulate morphological plasticity. Activity-dependent trafficking of PSD-95 is triggered by phosphorylation at serine 73, a conserved calcium/calmodulin-dependent protein kinase II (CaMKII) consensus phosphorylation site, which negatively regulates spine growth and potentiation of synaptic currents. We propose that PSD-95 and CaMKII act at multiple steps during plasticity induction to initially trigger and later terminate spine growth by trafficking growth-promoting PSD proteins out of the active spine."	"The actin-binding protein Abp1 controls dendritic spine morphology and is important for spine head and synapse formation. Polymerization and organization of actin into complex superstructures, including those found in dendritic spines, is indispensable for structure and function of neuronal networks. Here we show that the filamentous actin (F-actin)-binding protein 1 (Abp1), which controls Arp2/3 complex-mediated actin nucleation and binds to postsynaptic scaffold proteins of the ProSAP (proline-rich synapse-associated protein 1)/Shank family, has a profound impact on synaptic organization. Overexpression of the two Abp1 F-actin-binding domains increases the length of thin, filopodia-like and mushroom-type spines but dramatically reduces mushroom spine density, attributable to lack of the Abp1 Src homology 3 (SH3) domain. In contrast, overexpression of full-length Abp1 increases mushroom spine and synapse density. The SH3 domain alone has a dominant-negative effect on mushroom spines, whereas the density of filopodia and thin, immature spines remains unchanged. This suggests that both actin-binding and SH3 domain interactions are crucial for the role of Abp1 in spine maturation. Indeed, Abp1 knockdown significantly reduces mushroom spine and synapse density. Abp1 hereby works in close conjunction with ProSAP1/Shank2 and ProSAP2/Shank3, because Abp1 effects were suppressed by ProSAP2 RNA interference and the ProSAP/Shank-induced increase of spine head width is further promoted by Abp1 cooverexpression and reduced on Abp1 knockdown. Also, interfering with the formation of functional Abp1-ProSAP protein complexes prevents ProSAP-mediated spine head extension. Spine head extension furthermore depends on local Arp2/3 complex-mediated actin polymerization, which is controlled by Abp1 via the Arp2/3 complex activator N-WASP (neural Wiskott-Aldrich syndrome protein). Abp1 thus plays an important role in the formation and morphology control of synapses by making a required functional connection between postsynaptic density components and postsynaptic actin dynamics."	"Prognostic impact of array-based genomic profiles in esophageal squamous cell cancer. Esophageal squamous cell carcinoma (ESCC) is a genetically complex tumor type and a major cause of cancer related mortality. Although distinct genetic alterations have been linked to ESCC development and prognosis, the genetic alterations have not gained clinical applicability. We applied array-based comparative genomic hybridization (aCGH) to obtain a whole genome copy number profile relevant for identifying deranged pathways and clinically applicable markers. A 32 k aCGH platform was used for high resolution mapping of copy number changes in 30 stage I-IV ESCC. Potential interdependent alterations and deranged pathways were identified and copy number changes were correlated to stage, differentiation and survival. Copy number alterations affected median 19% of the genome and included recurrent gains of chromosome regions 5p, 7p, 7q, 8q, 10q, 11q, 12p, 14q, 16p, 17p, 19p, 19q, and 20q and losses of 3p, 5q, 8p, 9p and 11q. High-level amplifications were observed in 30 regions and recurrently involved 7p11 (EGFR), 11q13 (MYEOV, CCND1, FGF4, FGF3, PPFIA, FAD, TMEM16A, CTTS and SHANK2) and 11q22 (PDFG). Gain of 7p22.3 predicted nodal metastases and gains of 1p36.32 and 19p13.3 independently predicted poor survival in multivariate analysis. aCGH profiling verified genetic complexity in ESCC and herein identified imbalances of multiple central tumorigenic pathways. Distinct gains correlate with clinicopathological variables and independently predict survival, suggesting clinical applicability of genomic profiling in ESCC."	"Identification of synaptic activity-dependent genes by exposure of cultured cortical neurons to tetrodotoxin followed by its withdrawal. Activity-dependent gene expression is one of the key mechanisms of synaptic plasticity that form the basis of higher order functions such as learning and memory. In the present study, we surveyed for activity-dependent genes by analyzing gene expression changes accompanying reversible inhibition of synaptic activity by tetrodotoxin (TTX) using two types of DNA microarrays; our focused oligo DNA microarray &quot;Synaptoarray&quot; and the commercially available high-density array. Cerebral cortical cells from E18 rat embryos were cultured for 14 days to ensure synaptogenesis, then treated with 1 muM TTX for 48 hr without detectable effect on cell viability. Synaptic density estimated by the amount of Synapsin I and Synaptotagmin I was decreased 21-24% by TTX treatment, but recovered to the control level 48 hr after TTX withdrawal. Comparison of gene expression profiles by competitive hybridization of fluorescently labeled cRNA from TTX-treated and control cells showed an overall downregulation of the genes on the Synaptoarray by TTX-treatment with different recovery rates after TTX withdrawal. With 16 representative genes, microarray data were validated by real-time PCR analysis. Genes most severely downregulated by TTX and upregulated above the control level at 5 hr after TTX withdrawal were munc13-1 (involved in docking and priming of synaptic vesicles) and Shank2 (involved in the postsynaptic scaffold). In addition, comprehensive screening at 5 hr after TTX withdrawal using high density arrays resulted in additional identification of Rgs2, a regulator of trimeric G-protein signaling, as an activity-dependent gene. These three genes are thus likely to be key factors in the regulation of synaptic plasticity. (c) 2007 Wiley-Liss, Inc."	"DNA methylation regulates tissue-specific expression of Shank3. Tissue-specific gene expression can be controlled by epigenetic modifications such as DNA methylation. SHANK3, together with its homologues SHANK1 and SHANK2, has a central functional and structural role in excitatory synapses and is involved in the human chromosome 22q13 deletion syndrome. In this report, we show by DNA methylation analysis in lymphocytes, brain cortex, cerebellum and heart that the three SHANK genes possess several methylated CpG boxes, but only SHANK3 CpG islands are highly methylated in tissues where protein expression is low or absent and unmethylated where expression is present. SHANK3 protein expression is significantly reduced in hippocampal neurons after treatment with methionine, while HeLa cells become able to express SHANK3 after treatment with 5-Aza-2'-deoxycytidine. Altogether, these data suggest the existence of a specific epigenetic control mechanism regulating SHANK3, but not SHANK1 and SHANK2, expression."	"Dynamic regulation of cystic fibrosis transmembrane conductance regulator by competitive interactions of molecular adaptors. Disorganized ion transport caused by hypo- or hyperfunctioning of the cystic fibrosis transmembrane conductance regulator (CFTR) can be detrimental and may result in life-threatening diseases such as cystic fibrosis or secretory diarrhea. Thus, CFTR is controlled by elaborate positive and negative regulations for an efficient homeostasis. It has been shown that expression and activity of CFTR can be regulated either positively or negatively by PDZ (PSD-95/discs large/ZO-1) domain-based adaptors. Although a positive regulation by PDZ domain-based adaptors such as EBP50/NHERF1 is established, the mechanisms for negative regulation of the CFTR by Shank2, as well as the effects of multiple adaptor interactions, are not known. Here we demonstrate a physical and physiological competition between EBP50-CFTR and Shank2-CFTR associations and the dynamic regulation of CFTR activity by these positive and negative interactions using the surface plasmon resonance assays and consecutive patch clamp experiments. Furthermore whereas EBP50 recruits a cAMP-dependent protein kinase (PKA) complex to CFTR, Shank2 was found to be physically and functionally associated with the cyclic nucleotide phosphodiesterase PDE4D that precludes cAMP/PKA signals in epithelial cells and mouse brains. These findings strongly suggest that balanced interactions between the membrane transporter and multiple PDZ-based adaptors play a critical role in the homeostatic regulation of epithelial transport and possibly the membrane transport in other tissues."	"A novel locus for autosomal recessive nonsyndromic hearing impairment, DFNB63, maps to chromosome 11q13.2-q13.4. Hereditary hearing impairment is a genetically heterogeneous disorder. To date, 49 autosomal recessive nonsyndromic hearing impairment (ARNSHI) loci have been described, and there are more than 16 additional loci announced. In 25 of the known loci, causative genes have been identified. A genome scan and fine mapping revealed a novel locus for ARNSHI (DFNB63) on chromosome 11q13.2-q13.4 in a five-generation Turkish family (TR57). The homozygous linkage interval is flanked by the markers D11S1337 and D11S2371 and spans a 5.3-Mb interval. A maximum two-point log of odds score of 6.27 at a recombination fraction of theta = 0.0 was calculated for the marker D11S4139. DFNB63 represents the eighth ARNSHI locus mapped to chromosome 11, and about 3.33 Mb separate the DFNB63 region from MYO7A (DFNB2/DFNB11). Sequencing of coding regions and exon-intron boundaries of 13 candidate genes, namely SHANK2, CTTN, TPCN2, FGF3, FGF4, FGF19, FCHSD2, PHR1, TMEM16A, RAB6A, MYEOV, P2RY2 and KIAA0280, in genomic DNA from an affected individual of family TR57 revealed no disease-causing mutations."	"Localization of a novel autosomal recessive non-syndromic hearing impairment locus DFNB63 to chromosome 11q13.3-q13.4. Hereditary hearing impairment is the most genetically heterogeneous trait known in humans. So far, 50 published autosomal recessive non-syndromic hearing impairment (ARNSHI) loci have been mapped, and 23 ARNSHI genes have been identified. Here, we report the mapping of a novel ARNSHI locus, DFNB63, to chromosome 11q13.3-q13.4 in a large consanguineous Tunisian family. A maximum LOD score of 5.33 was obtained with microsatellite markers D11S916 and D11S4207. Haplotype analysis defined a 5.55 Mb critical region between microsatellite markers D11S4136 and D11S4081. DFNB63 represents the sixth ARNSHI locus mapped to chromosome 11. We positionally excluded MYO7A from being the DFNB63-causative gene. In addition, the screening of two candidate genes, SHANK2 and KCNE3, failed to reveal any disease-causing mutations."	"Secretory granules of hypophyseal and pancreatic endocrine cells contain proteins of the neuronal postsynaptic density. The PDZ domain-containing protein Shank is a master scaffolding protein of the neuronal postsynaptic density and directly or indirectly links neurotransmitter receptors and cell adhesion molecules to the actin-based cytoskeleton. ProSAP/Shank proteins have recently also been detected in several non-neuronal cells in which they are mostly concentrated in the apical subplasmalemmal cytoplasm. In contrast, we have previously reported a more widespread cytoplasmic immunostaining pattern for the ProSAP1/Shank2 protein in endocrine cells at the light-microscopic level. Therefore, in the present study, we have determined the ultrastructural localization of ProSAP1/Shank2 and the ProSAP/Shank-interacting proteins ProSAPiP1 and IRSp53 in pancreatic islet and adenohypophyseal cells by using immunogold staining techniques. Dense immunolabeling of secretory granules including the granule core in cells such as hypophyseal somatotrophs and pancreatic B-cells indicates the unexpected presence of ProSAP/Shank and ProSAP/Shank-interacting proteins in the hormone-storing compartment of endocrine cells. Thus, ProSAP/Shank and certain ProSAP/Shank-interacting proteins exhibit distinct subcellular localizations in the different cell types, raising the possibility that the function of ProSAP/Shank proteins is more diverse than has been envisaged to date."	"Short-term effects of adolescent methylphenidate exposure on brain striatal gene expression and sexual/endocrine parameters in male rats. Exposure to methylphenidate (MPH) during adolescence is the elective therapy for attention deficit/hyperactivity disorder (ADHD) children, but raises major concerns for public health, due to possibly persistent neurobehavioral changes. Rats (30- to 44-days old) were administered MPH (2 mg/kg, i.p once daily) or saline (SAL). At the end of the treatment we collected plasma, testicular, liver, and brain (striatum) samples. The testes and liver were used to evaluate conventional reproductive and metabolic endpoints. Testes of MPH-exposed rats weighed more and contained an increased quantity of sperm, whereas testicular levels of testosterone (TST) were markedly decreased. The MPH treatment exerted an inductive effect on enzymatic activity of TST hydroxylases, resulting in increased hepatic TST catabolism. These findings suggest that subchronic MPH exposure in adolescent rats could have a trophic action on testis growth and a negative impact on TST metabolism. We have analyzed striatal gene expression profiles as a consequence of MPH exposure during adolescence, using microarray technology. More than 700 genes were upregulated in the striatum of MPH-treated rats (foldchange &gt;1.5). A first group of genes were apparently involved in migration of immature neural/glial cells and/or growth of novel axons. These genes include matrix proteases (ADAM-1, MMP14), their inhibitors (TIMP-2, TIMP-3), the hyaluronan-mediated motility receptor (RHAMM), and growth factors (transforming growth factor-beta3 [TGF-beta3] and fibroblast growth factor 14 [FGF14]). A second group of genes were suggestive of active axonal myelination. These genes mediate survival of immature cells after contact with newly produced axonal matrix (laminin B1, collagens, integrin alpha 6) and stabilization of myelinating glia-axon contacts (RAB13, contactins 3 and 4). A third group indicated the appearance and/or upregulation of mature processes. The latter included genes for: K+ channels (TASK-1, TASK-5), intercellular junctions (connexin30), neurotransmitter receptors (adrenergic alpha 1B, kainate 2, serotonin 7, GABA-A), as well as major proteins responsible for their transport and/or anchoring (Homer 1, MAGUK MPP3, Shank2). All these genes were possibly involved in synaptic plasticity, namely the formation, maturation, and stabilization of new neural connections within the striatum. MPH treatment seems to potentiate synaptic plasticity, which is an age-dependent developmental phenomenon that adolescent rats are very likely to show, compared to adults. Our observations suggest that adolescent MPH exposure causes only transient changes in reproductive and hormonal parameters, and a more enduring enhancement of neurobehavioral plasticity."	"Autosomal recessive nonsyndromic deafness locus DFNB63 at chromosome 11q13.2-q13.3. A genome wide linkage analysis of nonsyndromic deafness segregating in a consanguineous Pakistani family (PKDF537) was used to identify DFNB63, a new locus for congenital profound sensorineural hearing loss. A maximum two-point lod score of 6.98 at theta = 0 was obtained for marker D11S1337 (68.55 cM). Genotyping of 550 families revealed three additional families (PKDF295, PKDF702 and PKDF817) segregating hearing loss linked to chromosome 11q13.2-q13.3. Meiotic recombination events in these four families define a critical interval of 4.81 cM bounded by markers D11S4113 (68.01 cM) and D11S4162 (72.82 cM), and SHANK2, FGF-3, TPCN2 and CTTN are among the candidate genes in this interval. Positional identification of this deafness gene should reveal a protein necessary for normal development and/or function of the auditory system."	"Molecular cytogenetic characterization of the 11q13 amplicon in head and neck squamous cell carcinoma. Amplification of 11q13 DNA sequences and overexpression of CCND1 are common findings in head and neck squamous cell carcinoma (HNSCC), identified in about 30% of the cases. However, little is known about initiation of the amplification and the organization of the amplicon. In order to study the structure of the amplicon in more detail and to learn more about the mechanisms involved in its initiation, prometaphase, metaphase, and anaphase fluorescence in situ hybridization (FISH) with 40 BAC clones spanning a 16-Mb region in chromosome bands 11q12.2 to 11q13.5 was performed in nine HNSCC cell lines with homogeneously staining regions. FISH analysis showed that the size of the amplicon varied among the nine cell lines, the smallest being 2.12 Mb and the largest 8.97 Mb. The smallest overlapping region of amplification was approximately 1.61 Mb, covering the region from BAC 729E14 to BAC 102B19. This region contained several genes previously shown to be amplified and overexpressed in HNSCC, including CCDN1, CTTN, SHANK2, and ORAOV1. The cell lines were also used to study the internal structure of the amplicon. Various patterns of amplified DNA sequences within the amplicon were found among the nine cell lines. Even within the same cell line, different amplicon structures could be found in different cell populations, indicating that the mechanisms involved in the development of the amplicons in HNSCC were more complex than previously assumed. The frequent finding of inverted repeats within the amplicons, however, suggests that breakage-fusion-bridge cycles are important in the initiation, but the fact that such repeats constituted only small parts of the amplicons indicate that they are further rearranged during tumor progression."	"Differential control of postsynaptic density scaffolds via actin-dependent and -independent mechanisms. Organization and dynamic remodeling of postsynaptic density (PSD) are thought to be critical in postsynaptic signal transduction, but the underlying molecular mechanisms are not well understood. We show here that four major scaffolding molecules, PSD-95, GKAP, Shank, and PSD-Zip45, show distinct instability in total molecular content per synapse. Fluorescence recovery after photobleaching also confirmed their distinct turnover rates. Among the PSD molecules examined, PSD-95 was most stable, but its elimination did not influence the dynamics of its direct binding partner GKAP. Multiple interactions of scaffolding molecules with the actin cytoskeleton have suggested their importance in both maintenance and remodeling of the PSD. Indeed, acute pharmacological disruption of F-actin rapidly eliminated the dynamic fraction of GKAP, Shank, and PSD-Zip45, without changing synaptic localization of PSD-95. GKAP content in synapses increased after pharmacological enhancement of neuronal activity, whereas Shank and PSD-Zip45 content showed reduction. Inhibition of F-actin dynamics prevented activity-dependent redistribution of all three scaffolds. We also assessed involvement of glutamate receptors in the regulation of PSD dynamics. Genetic manipulations eliminating either NMDA receptors or metabotropic glutamate receptors did not primarily influence mobility of their binding scaffolds. These results collectively indicate a critical role of filamentous actin in determining the extent of dynamic reorganization in PSD molecular composition."	"Expression of postsynaptic density proteins of the ProSAP/Shank family in the thymus. PSD95-DLG-ZO1 domain-containing proteins of the ProSAP/Shank family are major scaffolding proteins of the neuronal postsynaptic density which play a pivotal role in the linkage of membrane receptors to downstream signal effectors and the actin-based cytoskeleton. Recently, ProSAP1/Shank2 has also been localized in various non-neuronal cells where it may fulfill similar functions as in neurons. We now complement these data by the study of ProSAP/Shank expression at the mRNA and protein level in a primary lymphoid organ, i.e., the thymus. Transcripts for ProSAP1/Shank2, the spliceoform Shank2E, and ProSAP2/Shank3 could be clearly detected in the thymus. Western blot and immunocytochemical analyses verified the presence of ProSAP1/Shank2 and ProSAP2/Shank3 proteins in thymic tissue. Immunoreactivity was concentrated in the whole peripheral cytoplasm of thymocytes underneath the plasma membrane. Discrete subplasmalemmal areas of pronounced ProSAP/Shank immunoreactivity could be demonstrated inside several thymocytes by confocal laser scanning microscopy. Our results establish ProSAP/Shank as a constituent of the cell cortex of thymocytes and thus lead to the hypothesis that ProSAP/Shank proteins serve as a platform for the coordination of membrane receptor-dependent signal transduction in immune cells."	"Shank2 associates with and regulates Na+/H+ exchanger 3. Na+/H+ exchanger 3 (NHE3) plays a pivotal role in transepithelial Na+ and HCO3(-) absorption across a wide range of epithelia in the digestive and renal-genitourinary systems. Accumulating evidence suggests that PDZ-based adaptor proteins play an important role in regulating the trafficking and activity of NHE3. A search for NHE3-binding modular proteins using yeast two-hybrid assays led us to the PDZ-based adaptor Shank2. The interaction between Shank2 and NHE3 was further confirmed by immunoprecipitation and surface plasmon resonance studies. When expressed in PS120/NHE3 cells, Shank2 increased the membrane expression and basal activity of NHE3 and attenuated the cAMP-dependent inhibition of NHE3 activity. Furthermore, knock-down of native Shank2 expression in Caco-2 epithelial cells by RNA interference decreased NHE3 protein expression as well as activity but amplified the inhibitory effect of cAMP on NHE3. These results indicate that Shank2 is a novel NHE3 interacting protein that is involved in the fine regulation of transepithelial salt and water transport through affecting NHE3 expression and activity."	"Recurrent coamplification of cytoskeleton-associated genes EMS1 and SHANK2 with CCND1 in oral squamous cell carcinoma. Chromosomal band 11q13 is frequently amplified in oral squamous cell carcinoma (OSCC) and assumed to be critically involved in tumor initiation and progression by proto-oncogene activation. Though cyclin D1 (CCND1) is supposed to be the most relevant oncogene, several additional putative candidate genes are inside this chromosomal region, for which their actual role in tumorigenesis still needs to be elucidated. To characterize the 11q13 amplicon in detail, 40 OSCCs were analyzed by comparative genomic hybridization to DNA microarrays (matrix-CGH) containing BAC clones derived from chromosomal band 11q13. This high-resolution approach revealed a consistent amplicon about 1.7 Mb in size including the CCND1 oncogene. Seven BAC clones covering FGF3, EMS1, and SHANK2 were shown to be frequently coamplified inside the CCND1 amplicon. Subsequent analysis of tissue microarrays by FISH revealed amplification frequencies of 36.8% (88/239) for CCND1, 34.3% (60/175) for FGF3, 37.4% (68/182) for EMS1, and 36.3% (61/168) for SHANK2. Finally, quantitative mRNA expression analysis demonstrated consistent overexpression of CCND1 in all tumors and of EMS1 and SHANK2 in a subset of specimens with 11q13 amplification, but no expression of FGF3 in any of the cases. Our study underlines the critical role of CCND1 in OSCC development and additionally points to the functionally related genes EMS1 and SHANK2, both encoding for cytoskeleton-associated proteins, which are frequently coamplified with CCND1 and therefore could cooperatively contribute to OSCC pathogenesis."	"C-terminal synaptic targeting elements for postsynaptic density proteins ProSAP1/Shank2 and ProSAP2/Shank3. Synapses are specialized contact sites mediating communication between neurons. Synaptogenesis requires the specific assembly of protein clusters at both sides of the synaptic contact by mechanisms that are barely understood. We studied the synaptic targeting of multi-domain proteins of the ProSAP/Shank family thought to serve as master scaffolding molecules of the postsynaptic density. In contrast to Shank1, expression of green-fluorescent protein (GFP)-tagged ProSAP1/Shank2 and ProSAP2/Shank3 deletion constructs in hippocampal neurons revealed that their postsynaptic localization relies on the integrity of the C-termini. The shortest construct that was perfectly targeted to synaptic sites included the last 417 amino acids of ProSAP1/Shank2 and included the C-terminal sterile alpha motif (SAM) domain. Removal of 54 residues from the N-terminus of this construct resulted in a diffuse distribution in the cytoplasm. Altogether, our data delineate a hitherto unknown targeting signal in both ProSAP1/Shank2 and ProSAP2/Shank3 and provide evidence for an implication of these proteins and their close homologue, Shank1, in distinct molecular pathways."	"The interaction of phospholipase C-beta3 with Shank2 regulates mGluR-mediated calcium signal. Phospholipase C-beta isozymes that are activated by G protein-coupled receptors (GPCR) and heterotrimeric G proteins carry a PSD-95/Dlg/ZO-1 (PDZ) domain binding motif at their C terminus. Through interactions with PDZ domains, this motif may endow the PLC-beta isozyme with specific roles in GPCR signaling events that occur in compartmentalized regions of the plasma membrane. In this study, we identified the interaction of PLC-beta3 with Shank2, a PDZ domain-containing multimodular scaffold in the postsynaptic density (PSD). The C terminus of PLC-beta3, but not other PLC-beta isotypes, specifically interacts with the PDZ domain of Shank2. Homer 1b, a Shank-interacting protein that is linked to group I metabotropic glutamate receptors and IP3 receptors, forms a multiple complex with Shank2 and PLC-beta3. Importantly, microinjection of a synthetic peptide specifically mimicking the C terminus of PLC-beta3 markedly reduces the mGluR-mediated intracellular calcium response. These results demonstrate that Shank2 brings PLC-beta3 closer to Homer 1b and constitutes an efficient mGluR-coupled signaling pathway in the PSD region of neuronal synapses."	"The postsynaptic scaffold proteins ProSAP1/Shank2 and Homer1 are associated with glutamate receptor complexes at rat retinal synapses. The postsynaptic density (PSD) at glutamatergic synapses is a macromolecular complex of various molecules that organize the different glutamate receptors spatially and link them to their appropriate downstream signaling pathways and to the cytoskeleton. Recently, a new family of multidomain proteins called Shanks or ProSAPs (proline-rich synapse-associated proteins) has been identified. They are suggested to be central adaptor proteins of the PSD of glutamatergic synapses, bridging different types of glutamate receptor complexes. With immunocytochemistry and light and electron microscopy, we examined the cellular, synaptic, and postnatal developmental expression of ProSAP1/Shank2 at the synapses of rat retina. With double-labeling experiments and confocal microscopy, we analyzed the association of ProSAP1/Shank2 with proteins specific for glutamatergic, glycinergic, and gamma-aminobutyric acid (GABA)ergic synapses and with proteins known to be involved in the structural and functional organization of PSDs containing N-methyl-D-aspartate receptors [95-kDa postsynaptic density protein (PSD-95)], group I metabotropic glutamate receptors (Homer1), and alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionate (AMPA) receptors [glutamate receptor-interacting protein (GRIP)]. ProSAP1/Shank2 was present postsynaptically at the glutamatergic ribbon synapses of photoreceptor and bipolar cells, and it was absent from glycinergic and GABAergic amacrine cell synapses. The double-labeling experiments revealed a high rate of colocalization of ProSAP1/Shank2 with Homer1 and PSD-95, and little colocalization with GRIP. These data suggest that ProSAP1/Shank2 acts as an organizer at PSDs of different glutamatergic retinal synapses."	"Direct interaction of GluRdelta2 with Shank scaffold proteins in cerebellar Purkinje cells. Glutamate receptor (GluR) delta2 selectively expressed in cerebellar Purkinje cells plays a central role in cerebellar long-term depression (LTD), motor learning, and formation of parallel fiber synapses. By yeast two-hybrid screening, we identified members of the Shank family of scaffold proteins as major GluRdelta2-interacting molecules. GluRdelta2 bound directly to the PDZ domain of Shank proteins through an internal motif in the carboxyl-terminal putative cytoplasmic domain. Shank1 and Shank2 proteins as well as GluRdelta2 proteins were localized in the dendritic spines of cultured Purkinje cells. Anti-GluRdelta2 antibodies immunoprecipitated Shank1, Shank2, Homer, and metabotropic GluR1alpha proteins from the synaptosomal membrane fractions of cerebella. Furthermore, Shank2 interacted with GRIP1 in the cerebellum. These results suggest that through Shank1 and Shank2, GluRdelta2 interacts with the metabotropic GluR1alpha, the AMPA-type GluR, and the inositol 1,4,5-trisphosphate receptor (IP3R) that are essential for cerebellar LTD."	"Differential expression and dendritic transcript localization of Shank family members: identification of a dendritic targeting element in the 3' untranslated region of Shank1 mRNA. Shank proteins are scaffolding proteins in the postsynaptic density of excitatory synapses in the mammalian brain. In situ hybridization revealed that Shank1/SSTRIP and Shank2/ProSAP1 mRNAs are widely expressed early in postnatal brain development whereas Shank3/ProSAP2 expression increases during postnatal development especially in the cerebellum and thalamus. Shank1 and Shank3 (but not Shank2) mRNAs are present in the molecular layers of the hippocampus, consistent with a dendritic transcript localization. Shank1 and Shank2 transcripts are detectable in the dendritic fields of Purkinje cells, whereas Shank3 mRNA is restricted to cerebellar granule cells. The appearance of dendritic Shank mRNAs in cerebellar Purkinje cells coincides with the onset of dendrite formation. Expression of reporter transcripts in hippocampal neurons identifies a 200-nucleotide dendritic targeting element (DTE) in the Shank1 mRNA. The widespread presence of Shank mRNAs in dendrites suggests a role for local synthesis of Shanks in response to stimuli that induce alterations in synaptic morphology."	"Linkage of the actin cytoskeleton to the postsynaptic density via direct interactions of Abp1 with the ProSAP/Shank family. Synaptic contacts contain elaborate cytomatrices on both sides of the synaptic cleft, which are believed to organize and link the different synaptic functions in time and space and can respond to different inner and outer cues with massive structural reorganizations. At the PSD (postsynaptic density), activity-dependent reorganizations of the cortical actin cytoskeleton are hypothesized to play a role in synaptic plasticity. Here, we report on interactions of the F-actin binding protein Abp1 with members of the ProSAP/Shank family: multidomain scaffolding PSD proteins interconnecting glutamate receptors with other synaptic components. Affinity-purification experiments demonstrate that the interactions are mediated by the Abp1 (actin-binding protein 1) SH3 (Src homology 3) domain, which associates with a proline-rich motif that is conserved within the C-terminal parts of ProSAP1(proline-rich synapse-associated protein 1)/Shank2 and ProSAP2/Shank3. The distribution of Abp1, ProSAP1, and ProSAP2 overlaps within the brain, and all three proteins are part of the PSD and are particularly enriched in cortex and hippocampus. Coimmunoprecipitation of endogenous Abp1 and ProSAP2 and colocalization studies of Abp1 and ProSAPs in hippocampal neurons indicate the in vivo relevance of the interactions. Intriguingly, in vivo recruitment assays demonstrate that Abp1 can bind to dynamic F-actin structures and ProSAPs simultaneously, suggesting that Abp1 might link different organizing elements in the PSD. Importantly, different paradigms of neuronal stimulation induce a redistribution of Abp1 to ProSAP-containing synapses. Our data suggest that ProSAPs may serve to localize Abp1 to dendritic spines, thus serving as attachment points for the dynamic postsynaptic cortical actin cytoskeleton. This creates a functional connection between synaptic stimulation and cytoskeletal rearrangements."	"Postsynaptic density scaffolding proteins at excitatory synapse and disorders of synaptic plasticity: implications for human behavior pathologies. Excitatory synapses are characterized by an electron-dense thickening at the cytoplasmic surface of the postsynaptic membrane, called the postsynaptic density (PSD). The PSD is a fibrous specialization of the submembrane cytoskeleton approximately 30-40 nm thick and about 100 nm wide. Hundreds of molecules have been identified in the PSD: ion-gated and G-protein-coupled receptors, association, adaptors, and scaffolding proteins, key enzymes involved in phosphorylation-dephosphorylation mechanisms, and cytoskeletal proteins. Each of these proteins may have a pivotal function in setting the molecular scenario for the development of synaptic plasticity. Scaffolding proteins are major players in the organization of the postsynaptic signal transduction machinery,they regulate receptor trafficking and clustering, modulate axon pathfinding,and drive the correct targeting of neuronal proteins to their appropriate cytoplasmic compartment. Emerging findings suggest a relevant involvement of PSD scaffolding/adaptor proteins in behavior modulation in animal models of synaptic plasticity disorders and pharmacological isomorphisms."	"Characterization of an ankyrin repeat-containing Shank2 isoform (Shank2E) in liver epithelial cells. Shank proteins are a family of multidomain scaffolding proteins best known for their role in organizing the postsynaptic density region in neurons. Unlike Shank1 and Shank3, Shank2 [also known as Pro-SAP1 (proline-rich synapse-associated protein 1), CortBP1 (cortactin binding protein 1) or Spank-3] has been described as a truncated family member without an N-terminal ankyrin repeat domain. The present study utilized bioinformatics to demonstrate the presence of exons encoding ankyrin repeats in the region preceding the previously described Shank2 gene. cDNA sequencing of mRNA from epithelial cells revealed a novel spliceoform of Shank2, termed Shank2E, that encodes a predicted 200 kDa protein with six N-terminal ankyrin repeats. Shank2 mRNA from epithelial tissues was larger than transcripts in brain. Likewise, the apparent mass of Shank2 protein was larger in epithelial tissues (230 kDa) when compared with brain (165/180 kDa). Immunofluorescence and membrane fractionation found Shank2E concentrated at the apical membrane of liver epithelial cells. In cultured cholangiocytes, co-immunoprecipitation and detergent solubility studies revealed Shank2E complexed with actin and co-distributed with actin in detergent-insoluble lipid rafts. These findings indicate epithelial cells express an ankyrin repeat-containing Shank2 isoform, termed Shank2E, that is poised to co-ordinate actin-dependent events at the apical membrane."	"Postsynaptic density assembly is fundamentally different from presynaptic active zone assembly. The cellular mechanisms involved in the formation of the glutamatergic postsynaptic density (PSD) are mainly unknown. Previous studies have indicated that PSD assembly may occur in situ by a gradual recruitment of postsynaptic molecules, whereas others have suggested that the PSD may be assembled from modular transport packets assembled elsewhere. Here we used cultured hippocampal neurons and live cell imaging to examine the process by which PSD molecules from different layers of the PSD are recruited to nascent postsynaptic sites. GFP-tagged NR1, the essential subunit of the NMDA receptor, and ProSAP1/Shank2 and ProSAP2/Shank3, scaffolding molecules thought to reside at deeper layers of the PSD, were recruited to new synaptic sites in gradual manner, with no obvious involvement of discernible discrete transport particles. The recruitment kinetics of these three PSD molecules were remarkably similar, which may indicate that PSD assembly rate is governed by a common upstream rate-limiting process. In contrast, the presynaptic active zone (AZ) molecule Bassoon was observed to be recruited to new presynaptic sites by means of a small number of mobile packets, in full agreement with previous studies. These findings indicate that the assembly processes of PSDs and AZs may be fundamentally different."	"Inhibitory regulation of cystic fibrosis transmembrane conductance regulator anion-transporting activities by Shank2. Accumulating evidence suggests that protein-protein interactions play an important role in transepithelial ion transport. In the present study, we report on the biochemical and functional association between cystic fibrosis transmembrane conductance regulator (CFTR) and a PDZ domain-containing protein Shank2. Exploratory reverse transcription-PCR screening revealed mRNAs for several members of PDZ domain-containing proteins in epithelial cells. Shank2, one of these scaffolding proteins, showed a strong interaction with CFTR by yeast two-hybrid assays. Shank2-CFTR interaction was verified by co-immunoprecipitation experiments in mammalian cells. Notably, this interaction was abolished by mutations in the PDZ domain of Shank2. Protein phosphorylation, HCO(3)(-) transport and Cl(-) current by CFTR were measured in NIH 3T3 cells with heterologous expression of Shank2. Of interest, expression of Shank2 suppressed cAMP-induced phosphorylation and activation of CFTR. Importantly, loss of Shank2 by stable transfection of antisense-hShank2 plasmid strongly increased CFTR currents in colonic T84 cells, in which CFTR and Shank2 were natively expressed. Our results indicate that Shank2 negatively regulates CFTR and that this may play a significant role in maintaining epithelial homeostasis under normal and diseased conditions such as those presented by secretory diarrhea."	"The Shank family of postsynaptic density proteins interacts with and promotes synaptic accumulation of the beta PIX guanine nucleotide exchange factor for Rac1 and Cdc42. The Shank/ProSAP family of multidomain proteins is known to play an important role in organizing synaptic multiprotein complexes. Here we report a novel interaction between Shank and beta PIX, a guanine nucleotide exchange factor for the Rac1 and Cdc42 small GTPases. This interaction is mediated by the PDZ domain of Shank and the C-terminal leucine zipper domain and the PDZ domain-binding motif at the extreme C terminus of beta PIX. Shank colocalizes with beta PIX at excitatory synaptic sites in cultured neurons. In brain, Shank forms a complex with beta PIX and beta PIX-associated signaling molecules including p21-associated kinase (PAK), an effector kinase of Rac1/Cdc42. Importantly, overexpression of Shank in cultured neurons promotes synaptic accumulation of beta PIX and PAK. Considering the involvement of Rac1 and PAK in spine dynamics, these results suggest that Shank recruits beta PIX and PAK to spines for the regulation of postsynaptic structure."	"[Cloning and characterization of syap1, a down regulated gene in human hepatocellular carcinoma]. Using a different fragment DE6 obtained from DD-PCR as probe, a full-length cDNA has been cloned from human liver cDNA library and named as syap1 (Synapse-associated protein 1) because its deduced amino acid sequence is homologous to SAP47 of D. melanogaster. Northern blot analysis reveals that two transcripts of syap1 mRNA are expressed in cultured human liver L-02 cells. Moreover, the syap1 mRNA was also detected in most of adult human tissues by RT-PCR analysis. Down-regulated expression of syap1 mRNA was confirmed by semi-quantitative RT-PCR assay in 5 of 10 (50%) cases of human hepatocellular carcinoma (HCC)."	"Interaction of G-protein-coupled receptors with synaptic scaffolding proteins. The calcium-independent receptors for latrotoxin (CIRL1-CIRL3) constitute a family of seven-transmembrane receptors with an unsually large N-terminal extracellular domain which comprises several motifs usually found in cell adhesion molecules. By yeast two-hybrid screening, we have identified the intracellular C-termini of CIRL1 and CIRL2 as interaction partners of the PDZ domain of the proline-rich synapse-associated protein (ProSAP)/somatostatin receptor-interacting protein (SSTRIP) family of postsynaptic proteins (SSTRIP, ProSAP1 and ProSAP2, also known as shank1-shank3 respectively). Overlay assays indicate that the ProSAP1/shank2 PDZ domain in particular interacts strongly with the C-terminus of CIRL1 and CIRL2. Co-immunoprecipitation of ProSAP1 and CIRL1 (but not CIRL2) from rat brain extracts indicates that this interaction also occurs in vivo in rat brain. The known postsynaptic localization of ProSAP1, as well as our observation that CIRL1 (but not CIRL2) is enriched in postsynaptic density preparations from the rat brain, suggests that CIRL1 is localized pre- as well as post-synaptically in the central nervous system."	"ProSAP/Shank proteins - a family of higher order organizing molecules of the postsynaptic density with an emerging role in human neurological disease. The postsynaptic density (PSD) is a specialized electron-dense structure underneath the postsynaptic plasmamembrane of excitatory synapses. It is thought to anchor and cluster glutamate receptors exactly opposite to the presynaptic neurotransmitter release site. Various efforts to study the molecular structure of the PSD identified several new proteins including membrane receptors, cell adhesion molecules, components of signalling cascades, cytoskeletal elements and adaptor proteins with scaffolding functions to interconnect these PSD components. The characterization of a novel adaptor protein family, the ProSAPs or Shanks, sheds new light on the basic structural organization of the PSD. ProSAPs/Shanks are multidomain proteins that interact directly or indirectly with receptors of the postsynaptic membrane including NMDA-type and metabotropic glutamate receptors, and the actin-based cytoskeleton. These interactions suggest that ProSAP/Shanks may be important scaffolding molecules of the PSD with a crucial role in the assembly of the PSD during synaptogenesis, in synaptic plasticity and in the regulation of dendritic spine morphology. Moreover the analysis of a patient with 22q13.3 distal deletion syndrome revealed a balanced translocation with a breakpoint in the human ProSAP2/Shank3 gene. This ProSAP2/Shank3 haploinsufficiency may cause a syndrome that is characterized by severe expressive language delay, mild mental retardation and minor facial dysmorphisms."	"Molecular morphogens for dendritic spines. Three protein components of the postsynaptic density--Shank, Homer and SPAR--have been found to regulate the structural and molecular organization of dendritic spines. These new studies reveal linkages between receptor complexes, the actin cytoskeleton and signaling molecules that help shape spines."	"Dynamin isoform-specific interaction with the shank/ProSAP scaffolding proteins of the postsynaptic density and actin cytoskeleton. Dynamin is a GTPase involved in endocytosis and other aspects of membrane trafficking. A critical function in the presynaptic compartment attributed to the brain-specific dynamin isoform, dynamin-1, is in synaptic vesicle recycling. We report that dynamin-2 specifically interacts with members of the Shank/ProSAP family of postsynaptic density scaffolding proteins and present evidence that dynamin-2 is specifically associated with the postsynaptic density. These data are consistent with a role for this otherwise broadly distributed form of dynamin in glutamate receptor down-regulation and other aspects of postsynaptic membrane turnover."	"Proline-rich synapse-associated protein-1/cortactin binding protein 1 (ProSAP1/CortBP1) is a PDZ-domain protein highly enriched in the postsynaptic density. NA"	"The cortactin-binding postsynaptic density protein proSAP1 in non-neuronal cells. Proline-rich synapse-associated protein-1 (ProSAP1) is a neuronal PDZ domain-containing protein that has recently been identified as an essential element of the postsynaptic density. Via its interaction with the actin-binding protein cortactin and its integrative function in the organization of neurotransmitter receptors, ProSAP1 is believed to be involved in the linkage of the postsynaptic signaling machinery to the actin-based cytoskeleton, and may play a role in the cytoskeletal rearrangements that underlie synaptic plasticity. As a result of our ongoing studies on the distribution and function of this novel PDZ domain protein, we now report that the expression of ProSAP1 is restricted neither to neurons and interneuronal junctions nor to the nervous system. Using immunohistochemical techniques in conjunction with specific antibodies, we found that, in the CNS, ProSAP1 can be detected in certain glial cells, such as ependymal cells, tanycytes, subpial/radial astrocytes, and in the choroid plexus epithelium. Moreover, our immunohistochemical analyses revealed the presence of ProSAP1 in endocrine cells of the adenohypophysis and of the pancreas, as well as in non-neuronal cell types of other organs. In the pancreas, ProSAP1 immunoreactivity was also localized in the duct system of the exocrine parenchyma. Our findings demonstrate that, in addition to neurons, ProSAP1 is present in various non-neuronal cells, in which it may play a crucial role in the dynamics of the actin-based cytoskeleton. (J Histochem Cytochem 49:639-648, 2001)"	"Kainate-induced seizures alter protein composition and N-methyl-D-aspartate receptor function of rat forebrain postsynaptic densities. The postsynaptic density is a highly dynamic structure, which is reorganized in an activity-dependent manner. An animal model for temporal lobe epilepsy, i.e. kainate-induced limbic seizures in rats, was used to study changes in postsynaptic density composition after extensive synaptic activity. Six hours after kainate injection, the protein content of the postsynaptic density fractions from rats that developed strong seizures was increased three-fold compared to saline-treated controls. Immunoblot analysis revealed that the relative amounts of metabotropic glutamate receptor 1alpha, N-ethylmaleimide-sensitive fusion protein, protein kinases C, Fyn and TrkB, as well as the neuronal nitric oxide synthase, were significantly higher in seizure-developing than in control rats. In contrast, the relative contents of the kainate receptor KA2 subunit, beta-actin, alpha-adducin and the membrane-associated guanylate kinase homolog SAP90/PSD-95 were decreased. The relative amounts of additional postsynaptic density proteins, including alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionate and N-methyl-D-aspartate receptor subunits, calcium/calmodulin-dependent kinase type II, casein kinase 2, tubulin, microtubule-associated protein 2B, the membrane-associated guanylate kinase homolog SAP102, and proline-rich synapse-associated protein 1/cortactin binding protein 1/Shank2 remained essentially unchanged. To assess possible changes in postsynaptic performance, postsynaptic densities were isolated from control and epileptic rats, incorporated into giant liposomes and N-methyl-D-aspartate receptor currents were recorded. A significant reduction in the mean conductance was observed in patches containing postsynaptic densities from animals with high seizure activity. This was due to the presence of reduced conductance levels in each membrane patch compared to control postsynaptic density preparations. From these data, we suggest that intense synaptic activity associated with seizures modifies the composition of postsynaptic densities and has profound consequences on the function of the N-methyl-D-aspartate receptors present in them. This rearrangement may accompany impairment of synaptic plasticity."	"Identification of proteins interacting with the rat somatostatin receptor subtype 2. Using the yeast two hybrid system we have identified a novel protein termed somatostatin receptor interacting protein (SSTRIP) from human brain which interacts with the rat somatostatin receptor subtype 2. Interaction with the receptor C-terminus is mediated by a PSD-95/discs large/ZO-1 (PDZ) domain which exhibits high similarity to the PDZ domain of cortactin binding protein 1 (CortBP1). SSTRIP and CortBP1 define a novel family of multidomain proteins containing ankyrin repeats, SH3- and SH3 binding regions and a sterile alpha motif (SAM domain) in addition to the PDZ domain. Both SSTRIP and CortBP1 can be co-immunoprecipitated with the somatostatin receptor when co-expressed in HEK cells. Interestingly, co-localization of SSTR2 and CortBP1 at the plasma membrane is increased when SSTR2 is stimulated by agonists."	"The G protein-coupled receptor CL1 interacts directly with proteins of the Shank family. PDZ domains play a pivotal role in the synaptic localization of ion channels, receptors, signaling enzymes, and cell adhesion molecules. These domains mediate protein-protein interactions via the recognition of a conserved sequence motif at the extreme C terminus of their target proteins. By means of a yeast two-hybrid screen using the C terminus of the G protein-coupled alpha-latrotoxin receptor CL1 as bait, three PDZ domain proteins of the Shank family were identified. These proteins belong to a single protein family characterized by a common domain organization. The PDZ domain is highly conserved among the family members, significantly different from other known PDZ domains, and specifically binds to the C terminus of CL1. Shank1 and CL1 are expressed primarily in brain, and both proteins co-enrich in the postsynaptic density. Furthermore, Shank1 induces a clustering of CL1 in transfected cells, strongly supporting an interaction of both proteins in vivo."	"The Shank family of scaffold proteins. Shank proteins make up a new family of scaffold proteins recently identified through their interaction with a variety of membrane and cytoplasmic proteins. Shank polypeptides contain multiple sites for protein-protein interaction, including ankyrin repeats, an SH3 domain, a PDZ domain, a long proline-rich region, and a SAM domain. Binding partners for most of these domains have been identified: for instance, the PDZ domain of Shank proteins interacts with GKAP (a postsynaptic-density protein) as well as several G-protein-coupled receptors. The specific localization of Shank proteins at postsynaptic sites of brain excitatory synapses suggests a role for this family of proteins in the organization of cytoskeletal/ signaling complexes at specialized cell junctions."	"Synapse structure: glutamate receptors connected by the shanks. A family of proteins has been identified whose members, the Shanks, physically link two major receptor complexes at excitatory synapses - NMDA receptors and metabotropic glutamate receptors."	"Proline-rich synapse-associated proteins ProSAP1 and ProSAP2 interact with synaptic proteins of the SAPAP/GKAP family. We have recently isolated a novel proline-rich synapse-associated protein-1 (ProSAP1) that is highly enriched in postsynaptic density (PSD). A closely related multidomain protein, ProSAP2, shares a highly conserved PDZ (PSD-95/discs-large/ZO-1) domain (80% identity), a ppI domain that mediates the interaction with cortactin, and a C-terminal SAM (sterile alpha-motif) domain. In addition, ProSAP2 codes for five ankyrin repeats and a SH3 (Src homology 3) domain. Transcripts for both proteins are coexpressed in many regions of rat brain, but show a distinct expression pattern in the cerebellum. Using the PDZ domains of ProSAP1 and 2 as bait in the yeast two-hybrid system, we isolated several clones of the SAPAP/GKAP (SAP90/PSD-95-associated protein/guanylate kinase-associated protein) family. The association of the proteins was verified by coimmunoprecipitation and cotransfection in HEK cells. Therefore, proteins of the ProSAP family represent a novel link between SAP90/PSD-95 bound membrane receptors and the cytoskeleton at glutamatergic synapses of the central nervous system."	"Characterization of the Shank family of synaptic proteins. Multiple genes, alternative splicing, and differential expression in brain and development. Shank1, Shank2, and Shank3 constitute a family of proteins that may function as molecular scaffolds in the postsynaptic density (PSD). Shank directly interacts with GKAP and Homer, thus potentially bridging the N-methyl-D-aspartate receptor-PSD-95-GKAP complex and the mGluR-Homer complex in synapses (Naisbitt, S., Kim, E., Tu, J. C. , Xiao, B., Sala, S., Valtschanoff, J., Weinberg, R. J., Worley, P. F., and Sheng, M. (1999) Neuron 23, 569-582; Tu, J. C., Xiao, B., Naisbitt, S., Yuan, J. P., Petralia, R. S., Brakeman, P., Doan, A., Aakalu, V. K., Lanahan, A. A., Sheng, M., and Worley, P. F. (1999) Neuron 23, 583-592). Shank contains multiple domains for protein-protein interaction including ankyrin repeats, an SH3 domain, a PSD-95/Dlg/ZO-1 domain, a sterile alpha motif domain, and a proline-rich region. By characterizing Shank cDNA clones and RT-PCR products, we found that there are four sites for alternative splicing in Shank1 and another four sites in Shank2, some of which result in deletion of specific domains of the Shank protein. In addition, the expression of the splice variants is differentially regulated in different regions of rat brain during development. Immunoblot analysis of Shank proteins in rat brain using five different Shank antibodies reveals marked heterogeneity in size (120-240 kDa) and differential spatiotemporal expression. Shank1 immunoreactivity is concentrated at excitatory synaptic sites in adult brain, and the punctate staining of Shank1 is seen in developing rat brains as early as postnatal day 7. These results suggest that alternative splicing in the Shank family may be a mechanism that regulates the molecular structure of Shank and the spectrum of Shank-interacting proteins in the PSDs of adult and developing brain."	"Proline-rich synapse-associated protein-1/cortactin binding protein 1 (ProSAP1/CortBP1) is a PDZ-domain protein highly enriched in the postsynaptic density. The postsynaptic density (PSD) is crucially involved in the structural and functional organization of the postsynaptic neurotransmitter reception apparatus. Using antisera against rat brain synaptic junctional protein preparations, we isolated cDNAs coding for proline-rich synapse-associated protein-1 (ProSAP1), a PDZ-domain protein. This protein was found to be identical to the recently described cortactin-binding protein-1 (CortBP1). Homology screening identified a related protein, ProSAP2. Specific antisera raised against a C-terminal fusion construct and a central part of ProSAP1 detect a cluster of immunoreactive bands of 180 kDa in the particulate fraction of rat brain homogenates that copurify with the PSD fraction. Transcripts and immunoreactivity are widely distributed in the brain and are upregulated during the period of synapse formation in the brain. In addition, two short N-terminal insertions are detected; they are differentially regulated during brain development. Confocal microscopy of hippocampal neurons showed that ProSAP1 is predominantly localized in synapses, and immunoelectron microscopy in situ revealed a strong association with PSDs of hippocampal excitatory synapses. The accumulation of ProSAP1 at synaptic structures was analyzed in the developing cerebral cortex. During early postnatal development, strong immunoreactivity is detectable in neurites and somata, whereas from postnatal day 10 (P10) onward a punctate staining is observed. At the ultrastructural level, the immunoreactivity accumulates at developing PSDs starting from P8. Both interaction with the actin-binding protein cortactin and early appearance at postsynaptic sites suggest that ProSAP1/CortBP1 may be involved in the assembly of the PSD during neuronal differentiation."	"Agonist-dependent interaction of the rat somatostatin receptor subtype 2 with cortactin-binding protein 1. We report here an interaction between the C terminus of the rat somatostatin receptor subtype 2 (SSTR2) and a protein that has recently been identified as cortactin-binding protein 1 (CortBP1). Interaction is mediated by the PDZ (PSD-95/discs large/ZO-1) domain of CortBP1. As shown by in situ hybridization, SSTR2 and cortactin-binding protein are coexpressed in the rat brain. The association between SSTR2 and the PDZ-domain of CortBP1 was verified by overlay assays and by coprecipitation after transfection in human embryonic kidney (HEK) cells. Analysis by confocal microscopy indicates that CortBP1 is distributed diffusely throughout the cytosol in transfected cells and that it becomes concentrated at the plasma membrane when SSTR2 is present. This process is largely increased when the receptor is stimulated by somatostatin; as CortBP1 interacts with the C terminus of SSTR2, our data suggest that the binding of agonist to the receptor increase the accessibility of the receptor C terminus to the PDZ domain of CortBP1. Our data for the first time establish a link between a G-protein coupled receptor and constituents of the cytoskeleton."	"Identification of a novel cortactin SH3 domain-binding protein and its localization to growth cones of cultured neurons. Cortactin is an actin-binding protein that contains several potential signaling motifs including a Src homology 3 (SH3) domain at the distal C terminus. Translocation of cortactin to specific cortical actin structures and hyperphosphorylation of cortactin on tyrosine have been associated with the cortical cytoskeleton reorganization induced by a variety of cellular stimuli. The function of cortactin in these processes is largely unknown in part due to the lack of information about cellular binding partners for cortactin. Here we report the identification of a novel cortactin-binding protein of approximately 180 kDa by yeast two-hybrid interaction screening. The interaction of cortactin with this 180-kDa protein was confirmed by both in vitro and in vivo methods, and the SH3 domain of cortactin was found to direct this interaction. Since this protein represents the first reported natural ligand for the cortactin SH3 domain, we designated it CortBP1 for cortactin-binding protein 1. CortBP1 contains two recognizable sequence motifs within its C-terminal region, including a consensus sequence for cortactin SH3 domain-binding peptides and a sterile alpha motif. Northern and Western blot analysis indicated that CortBP1 is expressed predominately in brain tissue. Immunofluorescence studies revealed colocalization of CortBP1 with cortactin and cortical actin filaments in lamellipodia and membrane ruffles in fibroblasts expressing CortBP1. Colocalization of endogenous CortBP1 and cortactin was also observed in growth cones of developing hippocampal neurons, implicating CortBP1 and cortactin in cytoskeleton reorganization during neurite outgrowth."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SYNGAP1"	"complex neurodevelopmental disorder"	"SynGAP isoforms differentially regulate synaptic plasticity and dendritic development. SynGAP is a synaptic Ras GTPase-activating protein (GAP) with four C-terminal splice variants: α1, α2, β, and γ. Although studies have implicated SYNGAP1 in several cognitive disorders, it is not clear which SynGAP isoforms contribute to disease. Here, we demonstrate that SynGAP isoforms exhibit unique spatiotemporal expression patterns and play distinct roles in neuronal and synaptic development in mouse neurons. SynGAP-α1, which undergoes liquid-liquid phase separation with PSD-95, is highly enriched in synapses and is required for LTP. In contrast, SynGAP-β, which does not bind PSD-95 PDZ domains, is less synaptically targeted and promotes dendritic arborization. A mutation in SynGAP-α1 that disrupts phase separation and synaptic targeting abolishes its ability to regulate plasticity and instead causes it to drive dendritic development like SynGAP-β. These results demonstrate that distinct intrinsic biochemical properties of SynGAP isoforms determine their function, and individual isoforms may differentially contribute to the pathogenesis of SYNGAP1-related cognitive disorders."	"[A case with autosomal dominant mental retardation type 5 due to de novo SYNGAP1 variant]. To investigate the clinical and genetic features of a Chinese girl featuring mental retardation, intellectual disability, language development delay and epilepsy. G-banded chromosomal karyotyping was carried out for the child. Genomic DNA of the patient and her parents was extracted and subjected to high-throughput sequencing. The results were analyzed with bioinformatic tools and validated by Sanger sequencing. The karyotype of the child was ascertained as 46,XX. Sequencing result showed that she has carried a de novo heterozygous c.1861C&gt;T (p.R621X) variant of the SYNGAP1 gene. The nonsense variant c.1861C&gt;T (p.R621X) of the SYNGAP1 gene probably underlies the disease in this child. Above result has enabled genetic diagnosis and counseling for her family."	"Phenotypic and genetic spectrum of epilepsy with myoclonic atonic seizures. We aimed to describe the extent of neurodevelopmental impairments and identify the genetic etiologies in a large cohort of patients with epilepsy with myoclonic atonic seizures (MAE). We deeply phenotyped MAE patients for epilepsy features, intellectual disability, autism spectrum disorder, and attention-deficit/hyperactivity disorder using standardized neuropsychological instruments. We performed exome analysis (whole exome sequencing) filtered on epilepsy and neuropsychiatric gene sets to identify genetic etiologies. We analyzed 101 patients with MAE (70% male). The median age of seizure onset was 34 months (range = 6-72 months). The main seizure types were myoclonic atonic or atonic in 100%, generalized tonic-clonic in 72%, myoclonic in 69%, absence in 60%, and tonic seizures in 19% of patients. We observed intellectual disability in 62% of patients, with extremely low adaptive behavioral scores in 69%. In addition, 24% exhibited symptoms of autism and 37% exhibited attention-deficit/hyperactivity symptoms. We discovered pathogenic variants in 12 (14%) of 85 patients, including five previously published patients. These were pathogenic genetic variants in SYNGAP1 (n = 3), KIAA2022 (n = 2), and SLC6A1 (n = 2), as well as KCNA2, SCN2A, STX1B, KCNB1, and MECP2 (n = 1 each). We also identified three new candidate genes, ASH1L, CHD4, and SMARCA2 in one patient each. MAE is associated with significant neurodevelopmental impairment. MAE is genetically heterogeneous, and we identified a pathogenic genetic etiology in 14% of this cohort by exome analysis. These findings suggest that MAE is a manifestation of several etiologies rather than a discrete syndromic entity."	"Genetic and clinical variations in a Norwegian sample diagnosed with Rett syndrome. Rett syndrome (RTT) is a neurodevelopmental disorder mainly caused by mutations in MECP2. The diagnostic criteria of RTT are clinical; mutations in MECP2 are neither diagnostic nor necessary, and a mutation in another gene does not exclude RTT. We attempted to correlate genotype and phenotype to see if there are significant clinical associations. All available females diagnosed with RTT in Norway were invited to the study. Parents were interviewed, the girl or woman with RTT examined and medical records reviewed. All diagnoses were revisited according to the current diagnostic criteria and exome-based sequencing analyses were performed in individuals without an identified causative mutation. Participants were categorized according to genotypes and RTT diagnosis. Individuals with RTT with and without mutations in MECP2 were compared. Ninety-one individuals were included. A presumed causative mutation was identified in 86 individuals, of these, mutations in MECP2 in 77 individuals and mutations in SMC1A, SYNGAP1, SCN1A, CDKL5, FOXG1 or chromosome 13q in nine. Seventy-two individuals fulfilled the diagnostic criteria for classic and 12 for atypical RTT. Significant differences in early development, loss of hand use and language, intense eye gaze and the presence of early onset epilepsy were revealed in individuals with RTT according to their MECP2 genotypic status. Using the current diagnostic criteria, genetic and clinical variation in RTT is considerable. Significant differences between individuals with RTT with and without MECP2 mutations indicate that MECP2 is a major determinant for the clinical phenotype in individuals with RTT."	"Low-Dose Perampanel Rescues Cortical Gamma Dysregulation Associated With Parvalbumin Interneuron GluA2 Upregulation in Epileptic Syngap1<sup>+/-</sup> Mice. Loss-of-function SYNGAP1 mutations cause a neurodevelopmental disorder characterized by intellectual disability and epilepsy. SYNGAP1 is a Ras GTPase-activating protein that underlies the formation and experience-dependent regulation of postsynaptic densities. The mechanisms that contribute to this proposed monogenic cause of intellectual disability and epilepsy remain unresolved. We established the phenotype of the epileptogenesis in a Syngap1<sup>+/-</sup> mouse model using 24-hour video electroencephalography (vEEG)/electromyography recordings at advancing ages. We administered an acute low dose of perampanel, a Food and Drug Administration-approved AMPA receptor (AMPAR) antagonist, during a follow-on 24-hour vEEG to investigate the role of AMPARs in Syngap1 haploinsufficiency. Immunohistochemistry was performed to determine the region- and location-specific differences in the expression of the GluA2 AMPAR subunit. A progressive worsening of the epilepsy with emergence of multiple seizure phenotypes, interictal spike frequency, sleep dysfunction, and hyperactivity was identified in Syngap1<sup>+/-</sup> mice. Interictal spikes emerged predominantly during non-rapid eye movement sleep in 24-hour vEEG of Syngap1<sup>+/-</sup> mice. Myoclonic seizures occurred at behavioral-state transitions both in Syngap1<sup>+/-</sup> mice and during an overnight EEG from a child with SYNGAP1 haploinsufficiency. In Syngap1<sup>+/-</sup> mice, EEG spectral power analyses identified a significant loss of gamma power modulation during behavioral-state transitions. A significant region-specific increase of GluA2 AMPAR subunit expression in the somas of parvalbumin-positive interneurons was identified. Acute dosing with perampanel significantly rescued behavioral state-dependent cortical gamma homeostasis, identifying a novel mechanism implicating Ca<sup>2+</sup>-impermeable AMPARs on parvalbumin-positive interneurons underlying circuit dysfunction in SYNGAP1 haploinsufficiency."	"Author response: SYNGAP1 encephalopathy: A distinctive generalized developmental and epileptic encephalopathy. NA"	"Reader response: SYNGAP1 encephalopathy: A distinctive generalized developmental and epileptic encephalopathy. NA"	"Reader response: SYNGAP1 encephalopathy: A distinctive generalized developmental and epileptic encephalopathy. NA"	"Twenty Years of SynGAP Research: From Synapses to Cognition. SynGAP is a potent regulator of biochemical signaling in neurons and plays critical roles in neuronal function. It was first identified in 1998, and has since been extensively characterized as a mediator of synaptic plasticity. Because of its involvement in synaptic plasticity, SynGAP has emerged as a critical protein for normal cognitive function. In recent years, mutations in the SYNGAP1 gene have been shown to cause intellectual disability in humans and have been linked to other neurodevelopmental disorders, such as autism spectrum disorders and schizophrenia. While the structure and biochemical function of SynGAP have been well characterized, a unified understanding of the various roles of SynGAP at the synapse and its contributions to neuronal function remains to be achieved. In this review, we summarize and discuss the current understanding of the multifactorial role of SynGAP in regulating neuronal function gathered over the last two decades."	"A sex difference in the response of the rodent postsynaptic density to synGAP haploinsufficiency. SynGAP is a postsynaptic density (PSD) protein that binds to PDZ domains of the scaffold protein PSD-95. We previously reported that heterozygous deletion of Syngap1 in mice is correlated with increased steady-state levels of other key PSD proteins that bind PSD-95, although the level of PSD-95 remains constant (Walkup et al., 2016). For example, the ratio to PSD-95 of Transmembrane AMPA-Receptor-associated Proteins (TARPs), which mediate binding of AMPA-type glutamate receptors to PSD-95, was increased in young Syngap1<sup>+/-</sup>mice. Here we show that only females and not males show a highly significant correlation between an increase in TARP and a decrease in synGAP in the PSDs of Syngap1<sup>+/-</sup>rodents. The data reveal a sex difference in the adaptation of the PSD scaffold to synGAP haploinsufficiency."	"Rodent genetic models of neurodevelopmental disorders and epilepsy. Neurodevelopmental disorders (NDDs) are characterised by cognitive, social and motor deficits and are highly comorbid with intractable epilepsies. Through advances in genetic sequencing technologies a vast number of genes have been implicated in NDDs. State-of-the-art gene-editing techniques have led to the generation of hundreds of mouse models of NDDs. As an example, rodent models of Rett and Dravet syndromes as well as the syndromes caused by mutations in CDKL5 and Syngap1 display cognitive deficits in conjunction with seizure phenotypes. These models allow researchers to understand the underlying mechanisms as well as develop novel treatment strategies that can potentially be translated to the clinic. Furthermore, it may be possible to gain insights into the contribution of epilepsy to the progression of cognitive, social and motor phenotypes in NDDs."	"Sex-Based Analysis of De Novo Variants in Neurodevelopmental Disorders. While genes with an excess of de novo mutations (DNMs) have been identified in children with neurodevelopmental disorders (NDDs), few studies focus on DNM patterns where the sex of affected children is examined separately. We considered ∼8,825 sequenced parent-child trios (n ∼26,475 individuals) and identify 54 genes with a DNM enrichment in males (n = 18), females (n = 17), or overlapping in both the male and female subsets (n = 19). A replication cohort of 18,778 sequenced parent-child trios (n = 56,334 individuals) confirms 25 genes (n = 3 in males, n = 7 in females, n = 15 in both male and female subsets). As expected, we observe significant enrichment on the X chromosome for females but also find autosomal genes with potential sex bias (females, CDK13, ITPR1; males, CHD8, MBD5, SYNGAP1); 6.5% of females harbor a DNM in a female-enriched gene, whereas 2.7% of males have a DNM in a male-enriched gene. Sex-biased genes are enriched in transcriptional processes and chromatin binding, primarily reside in the nucleus of cells, and have brain expression. By downsampling, we find that DNM gene discovery is greatest when studying affected females. Finally, directly comparing de novo allele counts in NDD-affected males and females identifies one replicated genome-wide significant gene (DDX3X) with locus-specific enrichment in females. Our sex-based DNM enrichment analysis identifies candidate NDD genes differentially affecting males and females and indicates that the study of females with NDDs leads to greater gene discovery consistent with the female-protective effect."	"Effect of Fabomotizole on Brain Gene Expression in MR Rats in the Open Field Test. Selective anxiolytic fabomotizole (Afobazol®) has affinity for the Sigma-1 chaperone receptor site, quinone reductase 2 (NQO2) and MAO-A regulatory sites, and melatonin receptor type 1 (MT1 receptor). The analysis of the effect of fabomotizole on the gene expression profile in the brain of MR (Maudsley Reactive) rats was carried out when modeling emotional stress in the open field test. A change in the expression of 14 genes was found, the results of the functional annotation of which showed that the mechanisms of action of fabomotizole may be associated with the regulation of translation of proteins (Rpl5, Rpl15, Ncl, and Ybx1), synaptic functions (Cplx2, Dlg4, Syngap1, Add1, Rab8b, Klc1, and Chn1), and cellular metabolism (Akr1d1, Bcat1, and Pkm)."	"Dysfunction of the corticostriatal pathway in autism spectrum disorders. The corticostriatal pathway that carries sensory, motor, and limbic information to the striatum plays a critical role in motor control, action selection, and reward. Dysfunction of this pathway is associated with many neurological and psychiatric disorders. Corticostriatal synapses have unique features in their cortical origins and striatal targets. In this review, we first describe axonal growth and synaptogenesis in the corticostriatal pathway during development, and then summarize the current understanding of the molecular bases of synaptic transmission and plasticity at mature corticostriatal synapses. Genes associated with autism spectrum disorder (ASD) have been implicated in axonal growth abnormalities, imbalance of the synaptic excitation/inhibition ratio, and altered long-term synaptic plasticity in the corticostriatal pathway. Here, we review a number of ASD-associated high-confidence genes, including FMR1, KMT2A, GRIN2B, SCN2A, NLGN1, NLGN3, MET, CNTNAP2, FOXP2, TSHZ3, SHANK3, PTEN, CHD8, MECP2, DYRK1A, RELN, FOXP1, SYNGAP1, and NRXN, and discuss their relevance to proper corticostriatal function."	"SYNGAP1 encephalopathy: A distinctive generalized developmental and epileptic encephalopathy. NA"	"Tumor Suppression of Ras GTPase-Activating Protein RASA5 through Antagonizing Ras Signaling Perturbation in Carcinomas. Aberrant RAS signaling activation is common in cancers with even few Ras mutations, indicating alternative dysregulation other than genetic mutations. We identified a Ras GTPase-activating gene RASA5/SYNGAP1, at the common 6p21.3 deletion, methylated/downregulated in multiple carcinomas and different from other RASA family members (RASA1-RASA4), indicating its special functions in tumorigenesis. RASA5 mutations are rare, unlike other RASA members, whereas its promoter CpG methylation is frequent in multiple cancer cell lines and primary carcinomas and associated with patient's poor survival. RASA5 expression inhibited tumor cell migration/invasion and growth in mouse model, functioning as a tumor suppressor. RASA5 suppressed RAS signaling, depending on its Ras GTPase-activating protein catalytic activity, which could be counteracted by oncogenic HRas Q61L mutant. RASA5 knockdown enhanced Ras signaling to promote tumor cell growth. RASA5 also inhibited epithelial-mesenchymal transition (EMT) through regulating actin reorganization. Thus, epigenetic inactivation of RASA5 contributing to hyperactive RAS signaling is involved in Ras-driven human oncogenesis."	"SYNGAP1 mutations: Clinical, genetic, and pathophysiological features. SYNGAP1 is a gene that encodes the cytosolic protein SYNGAP1 (SYNaptic GTPase Activating Protein), an essential component of the postsynaptic density at excitatory glutamatergic neurons. SYNGAP1 plays critical roles in synaptic development, structure, function, and plasticity. Mutations in SYNGAP1 result in a neurodevelopmental disorder termed Mental retardation-type 5 (MRD5, OMIM #612621) with a phenotype consisting of intellectual disability, motor impairments, and epilepsy, attesting to the importance of this protein for normal brain development. Here we review the clinical and pathophysiological aspects of SYNGAP1 mutations with a focus on their effect on synaptogenesis, neural circuit function, and cellular plasticity. We conclude by comparing the molecular pathogenesis of SYNGAP1 mutations with those of another neurodevelopmental disorder that affects dendritic function and cellular plasticity, fragile X syndrome. Insights into the molecular similarities and differences underlying these disorders could lead to rationale therapy development."	"A reappraisal of atypical absence seizures in children and adults: therapeutic implications. Introduction: Atypical absences are generalized epileptic seizures typically affecting children with severe epilepsies and learning difficulties along with other seizure types. Video-EEG is essential for their diagnosis. Recently, atypical absence seizures have been reported as a hallmark of some developmental and epileptic encephalopathies.Areas covered: This is a narrative review of the literature which describes the electroclinical features of atypical seizures, the characteristics of developmental epileptic encephalopathies in which this seizure type can occur, and the evidence supporting the use of individual antiseizure drugs for the treatment of atypical absences.Expert opinion: Treatment of absence seizures typically relies on ethosuximide (ineffective against tonic-clonic seizures), valproate (associated with larger proportion of adverse events), or lamotrigine (less effective than the other two). However, unlike typical absences, atypical absences are usually intractable, persist lifetime, and their prognosis depends on the underlying etiology or associated epilepsy syndrome. Besides efficacy, other relevant factors, such as drug formulation, ease of titration and dosing, and drug interactions, should be considered. Drugs that may worsen epilepsy, cognition and behavior should be avoided. In the vast majority of patients, a polytherapy is required, although usually with limited efficacy. Finally, epilepsy syndromes featuring atypical absences require a multidisciplinary approach."	"Dissecting the phenotypic and genetic spectrum of early childhood-onset generalized epilepsies. Although the genetic and clinical aspects of epilepsy with myoclonic-atonic seizures (MAE) and early onset absence epilepsy (EOAE) have been investigated thoroughly, other early childhood-onset generalized epilepsies that share clinical features with MAE and EOAE have not been characterized. In this study, we aimed to delineate the genetic and phenotypic spectrum of early childhood-onset generalized epilepsies, including MAE and EOAE. We recruited 61 patients diagnosed with MAE, EOAE, genetic epilepsy with febrile seizure plus (GEFS+) and unclassified generalized epilepsies that shared seizure onset age and seizure types. Genetic causes were investigated through targeted gene panel testing, whole exome sequencing, chromosomal microarray, and single-gene Sanger sequencing. We classified 11 patients with MAE, 20 with EOAE, 9 with GEFS + spectrum. Epilepsy syndrome was not specified in the remaining 21 patients. The clinical features were comparable across groups. Nevertheless, patients with EOAE tended to show better developmental and seizure outcomes. A total of 23 pathogenic sequences and copy number variants from 12 genes were identified (23/61, 37.7%). Genetic etiologies were confirmed in 36.4% (4/11) of the MAE group, 45% (9/20) of the EOAE group, 22.2% (2/9) of the GEFS + spectrum, and 38.1% (8/21) of the unclassified group. The most frequently identified genes with pathogenic variants were SLC6A1 (7 patients), SLC2A1 (4 patients), and SYNGAP1 (4 patients). Early childhood-onset generalized epilepsy appeared to be characterized by an overlapping genetic and phenotypic spectrum. SLC6A1 and SLC2A1 appeared to be important genetic causes of early childhood-onset generalized epilepsy."	"Phenotypic characterization of individuals with SYNGAP1 pathogenic variants reveals a potential correlation between posterior dominant rhythm and developmental progression. The SYNGAP1 gene encodes for a small GTPase-regulating protein critical to dendritic spine maturation and synaptic plasticity. Mutations have recently been identified to cause a breadth of neurodevelopmental disorders including autism, intellectual disability, and epilepsy. The purpose of this work is to define the phenotypic spectrum of SYNGAP1 gene mutations and identify potential biomarkers of clinical severity and developmental progression. A retrospective clinical data analysis of individuals with SYNGAP1 mutations was conducted. Data included genetic diagnosis, clinical history and examinations, neurophysiologic data, neuroimaging, and serial neurodevelopmental/behavioral assessments. All patients were seen longitudinally within a 6-year period; data analysis was completed on June 30, 2018. Records for all individuals diagnosed with deleterious SYNGAP1 variants (by clinical sequencing or exome sequencing panels) were reviewed. Fifteen individuals (53% male) with seventeen unique SYNGAP1 mutations are reported. Mean age at genetic diagnosis was 65.9 months (28-174 months). All individuals had epilepsy, with atypical absence seizures being the most common semiology (60%). EEG abnormalities included intermittent rhythmic delta activity (60%), slow or absent posterior dominant rhythm (87%), and epileptiform activity (93%), with generalized discharges being more common than focal. Neuroimaging revealed nonspecific abnormalities (53%). Neurodevelopmental evaluation revealed impairment in all individuals, with gross motor function being the least affected. Autism spectrum disorder was diagnosed in 73% and aggression in 60% of cases. Analysis of biomarkers revealed a trend toward a moderate positive correlation between visual-perceptual/fine motor/adaptive skills and language development, with posterior dominant rhythm on electroencephalogram (EEG), independent of age. No other neurophysiology-development associations or correlations were identified. A broad spectrum of neurologic and neurodevelopmental features are found with pathogenic variants of SYNGAP1. An abnormal posterior dominant rhythm on EEG correlated with abnormal developmental progression, providing a possible prognostic biomarker."	"Disruption of SynGAP-dopamine D1 receptor complexes alters actin and microtubule dynamics and impairs GABAergic interneuron migration. Disruption of γ-aminobutyric acid (GABA)-ergic interneuron migration is implicated in various neurodevelopmental disorders, including autism spectrum disorder and schizophrenia. The dopamine D1 receptor (D1R) promotes GABAergic interneuron migration, which is disrupted in various neurological disorders, some of which are also associated with mutations in the gene encoding synaptic Ras-guanosine triphosphatase-activating protein (SynGAP). Here, we explored the mechanisms underlying these associations and their possible connection. In prenatal mouse brain tissue, we found a previously unknown interaction between the D1R and SynGAP. This D1R-SynGAP interaction facilitated D1R localization to the plasma membrane and promoted D1R-mediated downstream signaling pathways, including phosphorylation of protein kinase A and p38 mitogen-activated protein kinase. These effects were blocked by a peptide (TAT-D1Rpep) that disrupted the D1R-SynGAP interaction. Furthermore, disrupting this complex in mice during embryonic development resulted in pronounced and selective deficits in the tangential migration of GABAergic interneurons, possibly due to altered actin and microtubule dynamics. Our results provide insights into the molecular mechanisms regulating interneuron development and suggest that disruption of the D1R-SynGAP interaction may underlie SYNGAP1 mutation-related neurodevelopmental disorders."	"Comprehensive behavioral analysis of heterozygous Syngap1 knockout mice. Synaptic Ras GTPase-activating protein 1 (SYNGAP1) regulates synaptic plasticity through AMPA receptor trafficking. SYNGAP1 mutations have been found in human patients with intellectual disability (ID) and autism spectrum disorder (ASD). Almost every individual with SYNGAP1-related ID develops epilepsy, and approximately 50% have ASD. SYNGAP1-related ID is estimated to account for at least 1% of ID cases. In mouse models with Syngap1 mutations, strong cognitive and affective dysfunctions have been reported, yet some findings are inconsistent across studies. To further understand the behavioral significance of the SYNGAP1 gene, we assessed various domains of behavior in Syngap1 heterozygous mutant mice using a behavioral test battery. Male mice with a heterozygous mutation in the Syngap1 gene (Syngap1<sup>-/+</sup> mice) created by Seth Grant's group were subjected to a battery of comprehensive behavioral tests, which examined general health, and neurological screens, rotarod, hot plate, open field, light/dark transition, elevated plus maze, social interaction, prepulse inhibition, Porsolt forced swim, tail suspension, gait analysis, T-maze, Y-maze, Barnes maze, contextual and cued fear conditioning, and home cage locomotor activity. To control for type I errors due to multiple-hypothesis testing, P-values below the false discovery rate calculated by the Benjamini-Hochberg method were considered as study-wide statistically significant. Syngap1<sup>-/+</sup> mice showed increased locomotor activity, decreased prepulse inhibition, and impaired working and reference spatial memory, consistent with preceding studies. Impairment of context fear memory and increased startle reflex in Syngap1 mutant mice could not be reproduced. Significant decreases in sensitivity to painful stimuli and impaired motor function were observed in Syngap1<sup>-/+</sup> mice. Decreased anxiety-like behavior and depression-like behavior were noted, although increased locomotor activity is a potential confounding factor of these phenotypes. Increased home cage locomotor activity indicated hyperlocomotor activity not only in specific behavioral test conditions but also in familiar environments. In Syngap1<sup>-/+</sup> mice, we could reproduce most of the previously reported cognitive and emotional deficits. The decreased sensitivity to painful stimuli and impaired motor function that we found in Syngap1<sup>-/+</sup> mice are consistent with the common characteristics of patients with SYNGAP-related ID. We further confirmed that the Syngap1 heterozygote mouse recapitulates the symptoms of ID and ASD patients."	"[Identification of a novel SYNGAP1 mutation in a child with intellectual disability]. To report on a child with mental retardation caused by SYNGAP1 gene mutation. Peripheral blood samples were collected from the proband and her parents. High throughput sequencing (HTS) was employed for screening for potential mutation in the patient. Suspected mutation was validated by Sanger sequencing of the child and her parents. By HTS, a previously unknown mutation [c.1656C&gt;A (p.C552*)] was found in exon 10 of the SYNGAP1 gene in the proband. Sanger sequencing confirmed the heterozygous nature of the mutation and that neither of her parents carried the same mutation. The dysmorphism and developmental delay of the child were probably due to the pathogenic mutation of the SYNGAP1 gene. HTS can facilitate elucidation of the genetic etiology with efficiency, which has great significance in the diagnosis, treatment and prognosis of the child."	"Autism-associated missense genetic variants impact locomotion and neurodevelopment in Caenorhabditis elegans. Autism spectrum disorder (ASD) involves thousands of alleles in over 850 genes, but the current functional inference tools are not sufficient to predict phenotypic changes. As a result, the causal relationship of most of these genetic variants in the pathogenesis of ASD has not yet been demonstrated and an experimental method prioritizing missense alleles for further intensive analysis is crucial. For this purpose, we have designed a pipeline that uses Caenorhabditis elegans as a genetic model to screen for phenotype-changing missense alleles inferred from human ASD studies. We identified highly conserved human ASD-associated missense variants in their C. elegans orthologs, used a CRISPR/Cas9-mediated homology-directed knock-in strategy to generate missense mutants and analyzed their impact on behaviors and development via several broad-spectrum assays. All tested missense alleles were predicted to perturb protein function, but we found only 70% of them showed detectable phenotypic changes in morphology, locomotion or fecundity. Our findings indicate that certain missense variants in the C. elegans orthologs of human CACNA1D, CHD7, CHD8, CUL3, DLG4, GLRA2, NAA15, PTEN, SYNGAP1 and TPH2 impact neurodevelopment and movement functions, elevating these genes as candidates for future study into ASD. Our approach will help prioritize functionally important missense variants for detailed studies in vertebrate models and human cells."	"Understanding intellectual disability and autism spectrum disorders from common mouse models: synapses to behaviour. Normal brain development is highly dependent on the timely coordinated actions of genetic and environmental processes, and an aberration can lead to neurodevelopmental disorders (NDDs). Intellectual disability (ID) and autism spectrum disorders (ASDs) are a group of co-occurring NDDs that affect between 3% and 5% of the world population, thus presenting a great challenge to society. This problem calls for the need to understand the pathobiology of these disorders and to design new therapeutic strategies. One approach towards this has been the development of multiple analogous mouse models. This review discusses studies conducted in the mouse models of five major monogenic causes of ID and ASDs: Fmr1, Syngap1, Mecp2, Shank2/3 and Neuroligins/Neurnexins. These studies reveal that, despite having a diverse molecular origin, the effects of these mutations converge onto similar or related aetiological pathways, consequently giving rise to the typical phenotype of cognitive, social and emotional deficits that are characteristic of ID and ASDs. This convergence, therefore, highlights common pathological nodes that can be targeted for therapy. Other than conventional therapeutic strategies such as non-pharmacological corrective methods and symptomatic alleviation, multiple studies in mouse models have successfully proved the possibility of pharmacological and genetic therapy enabling functional recovery."	"Genomic backgrounds of Japanese patients with undiagnosed neurodevelopmental disorders. Recently, many genes related to neurodevelopmental disorders have been identified by high-throughput genomic analysis; however, a comprehensive understanding of the mechanism underlying neurodevelopmental disorders remains to be established. To further understand these underlying mechanisms, we performed a comprehensive genomic analysis of patients with undiagnosed neurodevelopmental disorders. Genomic analysis using next-generation sequencing with a targeted panel was performed for a total of 133 Japanese patients (male/female, 81/52) with previously undiagnosed neurodevelopmental disorders, including developmental delay (DD), intellectual disability (ID), autism spectrum disorder (ASD), and epilepsy. Genomic copy numbers were also analyzed using the eXome Hidden Markov Model (XHMM). Thirty-nine patients (29.3%) exhibited pathogenic or likely pathogenic findings with single-gene variants or chromosomal aberrations. Among them, 20 patients were presented here. Pathogenic or likely pathogenic variants were identified in 18 genes, including ACTG1, CACNA1A, CHD2, CDKL5, DNMT3A, EHMT1, GABRB3, GABRG2, GRIN2B, KCNQ3, KDM5C, MED13L, SCN2A, SHANK3, SMARCA2, STXBP1, SYNGAP1, and TBL1XR1. A diagnostic yield of 29.3% in this study was nearly the same as that previously reported from other countries. Thus, we suggest that there is no difference in genomic backgrounds in Japanese patients with undiagnosed neurodevelopmental disabilities. Although most of the patients possessed de novo variants, one of the patients showed an X-linked inheritance pattern. As X-linked recessive disorders exhibit the possibility of recurrent occurrence in the family, comprehensive molecular diagnosis is important for genetic counseling."	"Differential Regulation of Syngap1 Translation by FMRP Modulates eEF2 Mediated Response on NMDAR Activity. SYNGAP1, a Synaptic Ras-GTPase activating protein, regulates synapse maturation during a critical developmental window. Heterozygous mutation in SYNGAP1 (SYNGAP1<sup>-/+</sup>) has been shown to cause Intellectual Disability (ID) in children. Recent studies have provided evidence for altered neuronal protein synthesis in a mouse model of Syngap1<sup>-/+</sup>. However, the molecular mechanism behind the same is unclear. Here, we report the reduced expression of a known translation regulator, FMRP, during a specific developmental period in Syngap1<sup>-/+</sup> mice. Our results demonstrate that FMRP interacts with and regulates the translation of Syngap1 mRNA. We further show reduced Fmr1 translation leads to decreased FMRP level during development in Syngap1<sup>-/+</sup> which results in an increase in Syngap1 translation. These developmental changes are reflected in the altered response of eEF2 phosphorylation downstream of NMDA Receptor (NMDAR)-mediated signaling. In this study, we propose a cross-talk between FMRP and SYNGAP1 mediated signaling which can also explain the compensatory effect of impaired signaling observed in Syngap1<sup>-/+</sup> mice."	"The most recurrent monogenic disorders that overlap with the phenotype of Rett syndrome. Rett syndrome (RTT) is an early-onset neurodevelopmental disorder that is caused by mutations in the MECP2 gene; however, defects in other genes (CDKL5 and FOXG1) can lead to presentations that resemble classic RTT, although they are not completely identical. Here, we attempted to identify other monogenic disorders that share features of RTT. A total of 437 patients with a clinical diagnosis of RTT-like were studied; in 242 patients, a custom panel with 17 genes related to an RTT-like phenotype was run via a HaloPlex-Target-Enrichment-System. In the remaining 195 patients, a commercial TruSight-One-Sequencing-Panel was analysed. A total of 40 patients with clinical features of RTT had variants which affect gene function in six genes associated with other monogenic disorders. Twelve patients had variants in STXBP1, nine in TCF4, six in SCN2A, five in KCNQ2, four in MEF2C and four in SYNGAP1. Genetic studies using next generation sequencing (NGS) allowed us to study a larger number of genes associated with RTT-like simultaneously, providing a genetic diagnosis for a wider group of patients. These new findings provide the clinician with more information and clues that could help in the prevention of future symptoms or in pharmacologic therapy."	"Genetic mechanisms of regression in autism spectrum disorder. Developmental regression occurs in approximately one-third of children with autism spectrum disorder (ASD). There is a strong genetic influence in ASD and hundreds of genes have been implicated. Theories suggest that regressive ASD is a neurobiological subtype with potentially different causes. This review examines the evidence of genetic influences in regression and provides a summary of its frequency among ASD-associated single-gene disorders. The few twin- and family studies reporting on the concordance of regressive ASD among twin pairs and siblings provide mixed results, and no conclusions of the variance explained by either genetic or environmental factors can be drawn. Among the 89 genes robustly associated with ASD, 16 have been connected to regression, of which seven showed rates of regression higher than 30% among the mutation carriers. The molecular functions of these genes highlight important roles of transcriptional and synapse regulation for regression. Overall, this review shows our limited understanding of factors influencing regressive ASD and calls for additional studies to answer the open questions."	"Re-expression of SynGAP protein in adulthood improves translatable measures of brain function and behavior. It remains unclear to what extent neurodevelopmental disorder (NDD) risk genes retain functions into adulthood and how they may influence disease phenotypes. SYNGAP1 haploinsufficiency causes a severe NDD defined by autistic traits, cognitive impairment, and epilepsy. To determine if this gene retains therapeutically-relevant biological functions into adulthood, we performed a gene restoration technique in a mouse model for SYNGAP1 haploinsufficiency. Adult restoration of SynGAP protein improved behavioral and electrophysiological measures of memory and seizure. This included the elimination of interictal events that worsened during sleep. These events may be a biomarker for generalized cortical dysfunction in SYNGAP1 disorders because they also worsened during sleep in the human patient population. We conclude that SynGAP protein retains biological functions throughout adulthood and that non-developmental functions may contribute to disease phenotypes. Thus, treatments that target debilitating aspects of severe NDDs, such as medically-refractory seizures and cognitive impairment, may be effective in adult patients."	"Dual diagnosis causing severe phenotype in a patient with Angelman syndrome. NA"	"Whole genome paired-end sequencing elucidates functional and phenotypic consequences of balanced chromosomal rearrangement in patients with developmental disorders. Balanced chromosomal rearrangements associated with abnormal phenotype are rare events, but may be challenging for genetic counselling, since molecular characterisation of breakpoints is not performed routinely. We used next-generation sequencing to characterise breakpoints of balanced chromosomal rearrangements at the molecular level in patients with intellectual disability and/or congenital anomalies. Breakpoints were characterised by a paired-end low depth whole genome sequencing (WGS) strategy and validated by Sanger sequencing. Expression study of disrupted and neighbouring genes was performed by RT-qPCR from blood or lymphoblastoid cell line RNA. Among the 55 patients included (41 reciprocal translocations, 4 inversions, 2 insertions and 8 complex chromosomal rearrangements), we were able to detect 89% of chromosomal rearrangements (49/55). Molecular signatures at the breakpoints suggested that DNA breaks arose randomly and that there was no major influence of repeated elements. Non-homologous end-joining appeared as the main mechanism of repair (55% of rearrangements). A diagnosis could be established in 22/49 patients (44.8%), 15 by gene disruption (KANSL1, FOXP1, SPRED1, TLK2, MBD5, DMD, AUTS2, MEIS2, MEF2C, NRXN1, NFIX, SYNGAP1, GHR, ZMIZ1) and 7 by position effect (DLX5, MEF2C, BCL11B, SATB2, ZMIZ1). In addition, 16 new candidate genes were identified. Systematic gene expression studies further supported these results. We also showed the contribution of topologically associated domain maps to WGS data interpretation. Paired-end WGS is a valid strategy and may be used for structural variation characterisation in a clinical setting."	"First International Conference on RASopathies and Neurofibromatoses in Asia: Identification and advances of new therapeutics. The neurofibromatoses, which include neurofibromatosis type I (NF1), neurofibromatosis type II (NF2), and schwannomatosis, are a group of syndromes characterized by tumor growth in the nervous system. The RASopathies are a group of syndromes caused by germline mutations in genes that encode components of the RAS/mitogen-activated protein kinase (MAPK) pathway. The RASopathies include NF1, Noonan syndrome, Noonan syndrome with multiple lentigines, Costello syndrome, cardio-facio-cutaneous syndrome, Legius syndrome, capillary malformation arterio-venous malformation syndrome, and SYNGAP1 autism. Due to their common underlying pathogenetic etiology, all these syndromes have significant phenotypic overlap of which one common feature include a predisposition to tumors, which may be benign or malignant. Together as a group, they represent one of the most common multiple congenital anomaly syndromes estimating to affect approximately one in 1000 individuals worldwide. The subcontinent of India represents one of the largest populations in the world, yet remains underserved from an aspect of clinical genetics services. In an effort to bridge this gap, the First International Conference on RASopathies and Neurofibromatoses in Asia: Identification and Advances of New Therapeutics was held in Kochi, Kerala, India. These proceedings chronicle this timely and topical international symposium directed at discussing the best practices and therapies for individuals with neurofibromatoses and RASopathies."	"Lovastatin Treatment of a Patient with a De Novo SYNGAP1 Protein Truncating Variant. NA"	"Positive Short-Term Effect of Low-Dose Rosuvastatin in a Patient with SYNGAP1-Associated Epilepsy. NA"	"Comparative Phosphoproteomic Profiling of Type III Adenylyl Cyclase Knockout and Control, Male, and Female Mice. Type III adenylyl cyclase (AC3, ADCY3) is predominantly enriched in neuronal primary cilia throughout the central nervous system (CNS). Genome-wide association studies in humans have associated ADCY3 with major depressive disorder and autistic spectrum disorder, both of which exhibit sexual dimorphism. To date, it is unclear how AC3 affects protein phosphorylation and signal networks in central neurons, and what causes the sexual dimorphism of autism. We employed a mass spectrometry (MS)-based phosphoproteomic approach to quantitatively profile differences in phosphorylation between inducible AC3 knockout (KO) and wild type (WT), male and female mice. In total, we identified 4,655 phosphopeptides from 1,756 proteins, among which 565 phosphopeptides from 322 proteins were repetitively detected in all samples. Over 46% phosphopeptides were identified in at least three out of eight biological replicas. Comparison of AC3 KO and WT datasets revealed that phosphopeptides with motifs matching proline-directed kinases' recognition sites had a lower abundance in the KO dataset than in WTs. We detected 14 phosphopeptides restricted to WT dataset (i.e., Rabl6, Spast and Ppp1r14a) and 35 exclusively in KOs (i.e., Sptan1, Arhgap20, Arhgap44, and Pde1b). Moreover, 95 phosphopeptides (out of 90 proteins) were identified only in female dataset and 26 only in males. Label-free MS spectrum quantification using Skyline further identified phosphopeptides that had higher abundance in each sample group. In total, 204 proteins had sex-biased phosphorylation and 167 of them had increased expression in females relative to males. Interestingly, among the 204 gender-biased phosphoproteins, 31% were found to be associated with autism, including Dlg1, Dlgap2, Syn1, Syngap1, Ctnna1, Ctnnd1, Ctnnd2, Pkp4, and Arvcf. Therefore, this study also provides the first phosphoproteomics evidence suggesting that gender-biased post-translational phosphorylation may be implicated in the sexual dimorphism of autism."	"Clinical Transcriptome Sequencing Confirms Activation of a Cryptic Splice Site in Suspected SYNGAP1-Related Disorder. SYNGAP1 encodes a brain-specific Ras GTPase activating protein (GAP) that regulates synaptic strength in glutamatergic neurons. Pathogenic variants in this gene are associated with a neurodevelopmental disorder characterized by intellectual and developmental disabilities, generalized epilepsy, hypotonia, and autism spectrum disorders. We describe a young male with suspected SYNGAP1-related disorder given clinical overlap and identification of an intronic variant of uncertain significance; clinical transcriptome analysis demonstrated activation of a cryptic acceptor splice site resulting in frameshift and introduction of a stop codon. This report highlights the utility of functional studies newly available to clinical practice in confirming a suspected genetic diagnosis, which can directly impact medical management and preclude the need for additional diagnostic testing."	"Comprehensive functional annotation of susceptibility SNPs prioritized 10 genes for schizophrenia. Nearly 95% of susceptibility SNPs identified by genome-wide association studies (GWASs) are located in non-coding regions, which causes a lot of difficulty in deciphering their biological functions on disease pathogenesis. Here, we aimed to conduct a comprehensive functional annotation for all the schizophrenia susceptibility loci obtained from GWASs. Considering varieties of epigenomic regulatory elements, we annotated all 22,688 acquired susceptibility SNPs according to their genomic positions to obtain functional SNPs. The comprehensive annotation indicated that these functional SNPs are broadly involved in diverse biological processes. Histone modification enrichment showed that H3K27ac, H3K36me3, H3K4me1, and H3K4me3 were related to the development of schizophrenia. Transcription factors (TFs) prediction, methylation quantitative trait loci (meQTL) analyses, expression quantitative trait loci (eQTL) analyses, and proteomic quantitative trait loci analyses (pQTL) identified 447 target protein-coding genes. Subsequently, differential expression analyses between schizophrenia cases and controls, nervous system phenotypes from mouse models, and protein-protein interaction with known schizophrenia-related pathways and genes were carried out with our target genes. We finaly prioritized 10 target genes for schizophrenia (CACNA1C, CLU, CSNK2B, GABBR1, GRIN2A, MAPK3, NOTCH4, SRR, TNF, and SYNGAP1). Our results may serve as an encyclopedia of schizophrenia susceptibility SNPs and offer holistic guides for post-GWAS functional experiments."	"Chewing induced reflex seizures (&quot;eating epilepsy&quot;) and eye closure sensitivity as a common feature in pediatric patients with SYNGAP1 mutations: Review of literature and report of 8 cases. Heterozygous SYNGAP1 gene mutations have been associated with several forms of idiopathic generalized epilepsy, autism spectrum disorders and delay of psychomotor development. We report eight patients with a SYNGAP1 mutation and chewing/eating induced reflex seizures as new phenotype and compare them to other patients with eating epilepsy and genetic mutations. Presentation of clinical and anamnestic features and retrospective analysis of Video-EEG data of a 4 year old index patient with SYNGAP1 mutation and chewing /eating induced seizures. Clinical and anamnestic features and home videos of seven additional patients (4 female; age: 4-14 years) with SYNGAP1 mutation and eating induced reflex seizures were compared. All reflex seizures of the index patient showed similar focal EEG pattern with 1-5 seconds high amplitude, irregular 3/sec spike-wave complexes with initiation from left temporo-occipital, right temporo-occipital or bi- occipital / temporo-occipital regions. Eyelid myoclonia, the most common seizure type in all 8 patients, were typically initiated by eating or other simple orofacial stimuli. In the index patient eye closure preceded eating induced-eyelid myoclonia in 30/38 seizures. The main clinical features of our patient (i.e. intellectual disability, epilepsy, autistic features) are compatible with previous reports on patients with SYNGAP1 mutations. This is the first complete description of eating induced seizures in association with SYNGAP1 mutations. Whether eye closure sensitivity (ECS) represents an independent reflex epileptic trait, as seen in other patients with idiopathic &quot;generalized&quot; epilepsies (IGE), or eye closure is part of a complex trigger mechanism in SYNGAP1 patients' remains to be elucidated."	"Novel Mutation of SYNGAP1 Associated with Autosomal Dominant Mental Retardation 5 in a Chinese Patient. Autosomal dominant de novo mutations in SYNGAP1 are a cause of intellectual disability (ID) and autism spectrum disorder (ASD), including autosomal dominant mental retardation 5 (MRD5). By performing exome sequencing, we discovered a novel heterozygous variant in SYNGAP1 (c.509 + 1G &gt; A) in a 4-year-old ethnic Chinese boy with ID and ASD but without seizures or malformation. The c.509 + 1G &gt; A mutation in the SYNGAP1 gene was present in a patient with MRD5."	"Reanalysis and optimisation of bioinformatic pipelines is critical for mutation detection. Rapid advances in genomic technologies have facilitated the identification pathogenic variants causing human disease. We report siblings with developmental and epileptic encephalopathy due to a novel, shared heterozygous pathogenic 13 bp duplication in SYNGAP1 (c.435_447dup, p.(L150Vfs*6)) that was identified by whole genome sequencing (WGS). The pathogenic variant had escaped earlier detection via two methodologies: whole exome sequencing and high-depth targeted sequencing. Both technologies had produced reads carrying the variant, however, they were either not aligned due to the size of the insertion or aligned to multiple major histocompatibility complex (MHC) regions in the hg19 reference genome, making the critical reads unavailable for variant calling. The WGS pipeline followed different protocols, including alignment of reads to the GRCh37 reference genome, which lacks the additional MHC contigs. Our findings highlight the benefit of using orthogonal clinical bioinformatic pipelines and all relevant inheritance patterns to re-analyze genomic data in undiagnosed patients."	"A synaptic protein defect associated with reflex seizure disorder. NA"	"SYNGAP1 encephalopathy: A distinctive generalized developmental and epileptic encephalopathy. To delineate the epileptology, a key part of the SYNGAP1 phenotypic spectrum, in a large patient cohort. Patients were recruited via investigators' practices or social media. We included patients with (likely) pathogenic SYNGAP1 variants or chromosome 6p21.32 microdeletions incorporating SYNGAP1. We analyzed patients' phenotypes using a standardized epilepsy questionnaire, medical records, EEG, MRI, and seizure videos. We included 57 patients (53% male, median age 8 years) with SYNGAP1 mutations (n = 53) or microdeletions (n = 4). Of the 57 patients, 56 had epilepsy: generalized in 55, with focal seizures in 7 and infantile spasms in 1. Median seizure onset age was 2 years. A novel type of drop attack was identified comprising eyelid myoclonia evolving to a myoclonic-atonic (n = 5) or atonic (n = 8) seizure. Seizure types included eyelid myoclonia with absences (65%), myoclonic seizures (34%), atypical (20%) and typical (18%) absences, and atonic seizures (14%), triggered by eating in 25%. Developmental delay preceded seizure onset in 54 of 56 (96%) patients for whom early developmental history was available. Developmental plateauing or regression occurred with seizures in 56 in the context of a developmental and epileptic encephalopathy (DEE). Fifty-five of 57 patients had intellectual disability, which was moderate to severe in 50. Other common features included behavioral problems (73%); high pain threshold (72%); eating problems, including oral aversion (68%); hypotonia (67%); sleeping problems (62%); autism spectrum disorder (54%); and ataxia or gait abnormalities (51%). SYNGAP1 mutations cause a generalized DEE with a distinctive syndrome combining epilepsy with eyelid myoclonia with absences and myoclonic-atonic seizures, as well as a predilection to seizures triggered by eating."	"Xiao-Xu-Ming decoction extract regulates differentially expressed proteins in the hippocampus after chronic cerebral hypoperfusion. Xiao-Xu-Ming decoction has been widely used to treat stroke and sequelae of stroke. We have previously shown that the active fractions of Xiao-Xu-Ming decoction attenuate cerebral ischemic injury. However, the global protein profile and signaling conduction pathways regulated by Xiao-Xu-Ming decoction are still unclear. This study established a two-vessel occlusion rat model by bilateral common carotid artery occlusion. Rats were intragastrically administered 50 or 150 mg/kg Xiao-Xu-Ming decoction for 4 consecutive weeks. Learning and memory abilities were measured with Morris water maze. Motor ability was detected with prehensile test. Coordination ability was examined using the inclined screen test. Neuronal plasticity was observed by immunofluorescent staining. Differentially expressed proteins of rat hippocampus were analyzed by label-free quantitative proteomics. Real time-polymerase chain reaction and western blot assay were used to identify the changes in proteins. Results showed that Xiao-Xu-Ming decoction dramatically alleviated learning and memory deficits, and motor and coordination dysfunction, and increased the expression of microtubule-associated protein 2. Xiao-Xu-Ming decoction extract remarkably decreased 13 upregulated proteins and increased 39 downregulated proteins. The regulated proteins were mainly involved in oxidation reduction process, intracellular signaling cascade process, and protein catabolic process. The signaling pathways were mainly involved in ubiquitin mediated proteolysis and the phosphatidylinositol signaling system. Furthermore, there was an interaction among Rab2a, Ptpn1, Ppm1e, Cdk18, Gorasp2, Eps15, Capza2, Syngap1 and Mt-nd1. Protein analyses confirmed the changes in expression of MT-ND1. The current findings provide new insights into the molecular mechanisms of Xiao-Xu-Ming decoction extract's effects on chronic cerebral hypoperfusion."	"SYNGAP1 heterozygosity disrupts sensory processing by reducing touch-related activity within somatosensory cortex circuits. In addition to cognitive impairments, neurodevelopmental disorders often result in sensory processing deficits. However, the biological mechanisms that underlie impaired sensory processing associated with neurodevelopmental disorders are generally understudied and poorly understood. We found that SYNGAP1 haploinsufficiency in humans, which causes a sporadic neurodevelopmental disorder defined by cognitive impairment, autistic features, and epilepsy, also leads to deficits in tactile-related sensory processing. In vivo neurophysiological analysis in Syngap1 mouse models revealed that upper-lamina neurons in somatosensory cortex weakly encode information related to touch. This was caused by reduced synaptic connectivity and impaired intrinsic excitability within upper-lamina somatosensory cortex neurons. These results were unexpected, given that Syngap1 heterozygosity is known to cause circuit hyperexcitability in brain areas more directly linked to cognitive functions. Thus, Syngap1 heterozygosity causes a range of circuit-specific pathologies, including reduced activity within cortical neurons required for touch processing, which may contribute to sensory phenotypes observed in patients."	"Sleeping beauty transposon-mediated poly(A)-trapping and insertion mutagenesis in mouse embryonic stem cells. Saturation mutagenesis of all endogenous genes within the mouse genome remains a challenging task, although a plenty of gene-editing approaches are available for this purpose. Here, a poly(A)-trap vector was generated for insertion mutagenesis in mouse embryonic stem (mES) cells. This vector contains an expression cassette of neomycin (Neo)-resistant gene lacking a poly(A) signal and flanked by two inverted terminal repeats of the Sleeping Beauty (SB) transposon. The whole poly(A)-trap cassette can transpose into target TA dinucleotides, properly splice with endogenous genes and effectively interrupt the transcription of trapped genes in mES cells after transient induction of SB expression by doxycycline (DOX)-treatment at 1 μg/ml, leading to the formation of multiple geneticin (G418)-resistant cell clones. In the first round of mutation screening, we identified six transposition events from 23 cell clones, including four inserted into an endogenous gene and two landed between endogenous genes. The abilities of self-renewal, totipotency, genetic stability and differentiation of syngap1<sup>+/-</sup> cells were not affected by DOX-treatment and G418-selection. These findings suggest that this SB transposon-mediated poly(A)-trap vector can be used as an alternative tool for a large-scale screening of mES cells with a gene mutation and for further generation of mutant mouse strains. Environ. Mol. Mutagen. 59:687-697, 2018. © 2018 Wiley Periodicals, Inc."	"Stable transmission of an unbalanced chromosome 21 derived from chromoanasynthesis in a patient with a SYNGAP1 likely pathogenic variant. Complex genomic structural variations, involving chromoanagenesis, have been implicated in multiple congenital anomalies and abnormal neurodevelopment. Familial inheritance of complex chromosomal structural alteration resulting from germline chromoanagenesis-type mechanisms are limited. We report a two-year eleven-month old male presenting with epilepsy, ataxia and dysmorphic features of unknown etiology. Chromosomal microarray identified a complex unbalanced rearrangement involving chromosome 21. G-banding and FISH for targeted regions of chromosome 21 revealed that the copy number imbalances were limited to gains dispersed throughout the long arm of chromosome 21, characteristic of a chromosome derived from chromoanagenesis. Family studies showed that the unbalanced chromosome had been stably inherited, as it was present in both his healthy mother and maternal grandfather. Further molecular testing for non-syndromic intellectual disability genes found a likely pathogenic mutation in SYNGAP1 (NM_006772.2:c.3722_3723del). This study indicates that complex rearrangements involving an unbalanced chromosome derived from chromoanasynthesis can be familial and should be not be presumed pathogenic."	"Chronic treatment with a MEK inhibitor reverses enhanced excitatory field potentials in Syngap1<sup>+/-</sup> mice. Synaptic Ras-GTPase-activating protein 1 (SYNGAP1) is an abundant brain-specific protein localized at the postsynaptic density of mammalian excitatory synapses. SYNGAP1 functions as a crucial regulator of downstream intracellular signaling triggered by N-methyl-d-aspartate receptor activation. One of the most important signaling pathways regulated by SYNGAP1 is the Ras-Raf-MEK-ERK pathway. SYNGAP1 deficiency is associated with hyperphosphorylation of MEK and ERK kinases and with altered synaptic function in Syngap1<sup>+/-</sup> mice. Loss-of-function mutations in the SYNGAP1 gene have been documented in many human cognitive and neurological disorders. However, there are currently no approaches that reverse the phenotypes of SYNGAP1 deficiency. Using electrophysiological recordings of field responses in hippocampal slices, we examined if disturbances of synaptic physiology in the hippocampus of 7-8-month old Syngap1<sup>+/-</sup> mice were sensitive to the effect of the MEK inhibitor PD-0325901 given orally for 6days. We found that in hippocampal slices from vehicle-treated Syngap1<sup>+/-</sup> mice, basal synaptic responses were higher and their long-term potentiation (LTP) was lower than in slices from wild-type littermates. Chronic administration of PD-0325901 normalized basal synaptic responses, but did not reverse LTP deficit. The differential sensitivity of basal synaptic transmission and LTP to MEK inhibition indicates that the effects of SYNGAP1 deficiency on these synaptic parameters are mediated by distinct pathways. Our findings also suggest that at least some physiological phenotypes of the germline Syngap1 mutation can be ameliorated by pharmacological treatment of adult animals."	"Impact of diet-induced obesity on the mouse brain phosphoproteome. Obesity is closely associated to several diseases such as type 2 diabetes, cardiovascular disease, hepatic steatosis, airway disease, neurodegeneration, biliary diseases and certain cancers. It is, therefore, of importance to assess the role of nutrition in disease prevention as well as its effect in the course of such pathologies. In the present study, we addressed the impact of the exposure to different obesogenic diets in the mice brains phosphoproteome. To analyze if the obesity could be able to modify the protein pattern expression of brain neurons, obesity was induced in two different groups of mice. One group of mice was fed with hyperglycemic diet (HGD) and the other one was fed with high-fat diet (HFD), both for 12 weeks. A control group of lean mice was fed with a standard diet (SD). Metabolic parameters were measured before sacrifice, and brains were harvested for label-free phosphoproteomic analysis. Mice brains were analyzed to find differences, if any, in protein phosphorylation. Interestingly, the changes were independent of the obesogenic diet as no changes were detected between the two obese groups. Dephosphorylation of proteins involved in neuronal development (among others SYNGAP1 and PPP1R9B), in vesicle trafficking (for example SNAP91 and AMPH) and in cytoskeletal functions (for example, CLASP2 and GSK3B) was identified, while increased phosphorylation was detected for microtubule proteins (such as MAP2 and MAPT). Phospho site analysis of the mouse brain proteome reveals important changes that point to a connection between diet-induced obesity and impairment of neuronal functions and signaling."	"Diagnostic yield of targeted massively parallel sequencing in children with epileptic encephalopathy. To report our institutional experience of targeted massively parallel sequencing (MPS) testing in children with epilepsy. We retrospectively analysed the yield of targeted epileptic encephalopathy (EE) panel of 71 known EE genes in patients with epilepsy of unknown cause, who underwent clinical triage by a group of neurologists prior to the testing. We compared cost of the EE panel approach compared to traditional evaluation in patients with identified pathogenic variants. The yield of pathogenic variants was 28.5% (n = 30/105), highest in early onset EE &lt;3 months including Ohtahara syndrome (52%, n = 10/19) and lowest in generalized epilepsy (0/17). Patients identified with pathogenic variants had earlier onset of seizures (median 3.6 m vs 1.1y, p &lt; 0.001, OR 0.6/year, P &lt; 0.02) compared to those without pathogenic variants. Pathogenic/likely pathogenic variants were found in ALDH7A1 (2), CACNA1A (1), CDKL5 (3), FOXG1 (2), GABRB3 (1), GRIN2A (1), KCNQ2 (4), KCNQ3 (1), PRRT2 (1), SCN1A (6), SCN2A (2), SCN8A (2), SYNGAP1 (1), UBE3A (2) and WWOX (1) genes. This study expands the inheritance pattern caused by KCNQ3 mutations to include an autosomal recessive severe phenotype with neonatal seizures and severe developmental delay. The average cost of etiological evaluation was less with early use of EE panel compared to the traditional investigation approach ($5990 Australian dollars (AUD) vs $13069 AUD ; p = 0.02) among the patients with identified pathogenic variants. Targeted MPS testing is a comprehensive and economical investigation that enables early genetic diagnosis in children with EE. Careful clinical triage and selection of patients with young onset EE may maximize the yield of EE panel testing."	"Importance of Functional Loss of FUS in FTLD/ALS. Fused in sarcoma (FUS) is an RNA binding protein that regulates RNA metabolism including alternative splicing, transcription, and RNA transportation. FUS is genetically and pathologically involved in frontotemporal lobar degeneration (FTLD)/amyotrophic lateral sclerosis (ALS). Multiple lines of evidence across diverse models suggest that functional loss of FUS can lead to neuronal dysfunction and/or neuronal cell death. Loss of FUS in the nucleus can impair alternative splicing and/or transcription, whereas dysfunction of FUS in the cytoplasm, especially in the dendritic spines of neurons, can cause mRNA destabilization. Alternative splicing of the MAPT gene at exon 10, which generates 4-repeat Tau (4R-Tau) and 3-repeat Tau (3R-Tau), is one of the most impactful targets regulated by FUS. Additionally, loss of FUS function can affect dendritic spine maturations by destabilizing mRNAs such as Glutamate receptor 1 (GluA1), a major AMPA receptor, and Synaptic Ras GTPase-activating protein 1 (SynGAP1). Moreover, FUS is involved in axonal transport and morphological maintenance of neurons. These findings indicate that a biological link between loss of FUS function, Tau isoform alteration, aberrant post-synaptic function, and phenotypic expression might lead to the sequential cascade culminating in FTLD. Thus, to facilitate development of early disease markers and/or therapeutic targets of FTLD/ALS it is critical that the functions of FUS and its downstream pathways are unraveled."	"Incorporating epilepsy genetics into clinical practice: a 360°evaluation. We evaluated a new epilepsy genetic diagnostic and counseling service covering a UK population of 3.5 million. We calculated diagnostic yield, estimated clinical impact, and surveyed referring clinicians and families. We costed alternative investigational pathways for neonatal onset epilepsy. Patients with epilepsy of unknown aetiology onset &lt; 2 years; treatment resistant epilepsy; or familial epilepsy were referred for counseling and testing. We developed NGS panels, performing clinical interpretation with a multidisciplinary team. We held an educational workshop for paediatricians and nurses. We sent questionnaires to referring paediatricians and families. We analysed investigation costs for 16 neonatal epilepsy patients. Of 96 patients, a genetic diagnosis was made in 34% of patients with seizure onset &lt; 2 years, and 4% &gt; 2 years, with turnaround time of 21 days. Pathogenic variants were seen in SCN8A, SCN2A, SCN1A, KCNQ2, HNRNPU, GRIN2A, SYNGAP1, STXBP1, STX1B, CDKL5, CHRNA4, PCDH19 and PIGT. Clinician prediction was poor. Clinicians and families rated the service highly. In neonates, the cost of investigations could be reduced from £9362 to £2838 by performing gene panel earlier and the median diagnostic delay of 3.43 years reduced to 21 days. Panel testing for epilepsy has a high yield among children with onset &lt; 2 years, and an appreciable clinical and financial impact. Parallel gene testing supersedes single gene testing in most early onset cases that do not show a clear genotype-phenotype correlation. Clinical interpretation of laboratory results, and in-depth discussion of implications for patients and their families, necessitate multidisciplinary input and skilled genetic counseling."	"Species-conserved SYNGAP1 phenotypes associated with neurodevelopmental disorders. SYNGAP1 loss-of-function variants are causally associated with intellectual disability, severe epilepsy, autism spectrum disorder and schizophrenia. While there are hundreds of genetic risk factors for neurodevelopmental disorders (NDDs), this gene is somewhat unique because of the frequency and penetrance of loss-of-function variants found in patients combined with the range of brain disorders associated with SYNGAP1 pathogenicity. These clinical findings indicate that SYNGAP1 regulates fundamental neurodevelopmental processes that are necessary for brain development. Here, we describe four phenotypic domains that are controlled by Syngap1 expression across vertebrate species. Two domains, the maturation of cognitive functions and maintenance of excitatory-inhibitory balance, are defined exclusively through a review of the current literature. Two additional domains are defined by integrating the current literature with new data indicating that SYNGAP1/Syngap1 regulates innate survival behaviors and brain structure. These four phenotypic domains are commonly disrupted in NDDs, suggesting that a deeper understanding of developmental Syngap1 functions will be generalizable to other NDDs of known or unknown etiology. Therefore, we discuss the known molecular and cellular functions of Syngap1 and consider how these functions may contribute to the emergence of disease-relevant phenotypes. Finally, we identify major unexplored areas of Syngap1 neurobiology and discuss how a deeper understanding of this gene may uncover general principles of NDD pathobiology."	"The first international conference on SYNGAP1-related brain disorders: a stakeholder meeting of families, researchers, clinicians, and regulators. Pathologic mutations in SYNGAP1 cause a genetically defined form of intellectual disability (ID) with comorbid epilepsy and autistic features. While only recently discovered, pathogenicity of this gene is a relatively frequent genetic cause of classically undefined developmental delay that progresses to ID with commonly occurring comorbidities. A meeting of 150 people was held that included affected individuals and their caregivers, clinicians that treat this and related brain disorders, neuroscientists that study SYNGAP1 biology or the function of related genes, and representatives from government agencies that fund science and approve new medical treatments. The meeting focused on developing a consensus among all stakeholders as to how best to achieve a more fundamental and profound understanding of SYNGAP1 biology and its role in human disease. From all of these proceedings, several areas of consensus emerged. The clinicians and geneticists agreed that the prevalence of epilepsy and sensory processing impairments in SYNGAP1-related brain disorders approached 100%. The neurobiologists agreed that more basic research is needed to better understand the molecular and cellular functions of the Syngap1 gene, which will lead to targets for therapeutic intervention. Finally, everyone agreed that there is a pressing need to form a robust patient registry as an initial step toward a prospective natural history study of patients with pathogenic SYNGAP1 variants."	"Ulk4 regulates GABAergic signaling and anxiety-related behavior. Excitation/inhibition imbalance has been proposed as a fundamental mechanism in the pathogenesis of neuropsychiatric and neurodevelopmental disorders, in which copy number variations of the Unc-51 like kinase 4 (ULK4) gene encoding a putative Serine/Threonine kinase have been reported in approximately 1/1000 of patients suffering pleiotropic clinical conditions of schizophrenia, depression, autistic spectrum disorder (ASD), developmental delay, language delay, intellectual disability, or behavioral disorder. The current study characterized behavior of heterozygous Ulk4 <sup>+/tm1a</sup> mice, demonstrating that Ulk4 <sup>+/tm1a</sup> mice displayed no schizophrenia-like behavior in acoustic startle reactivity and prepulse inhibition tests or depressive-like behavior in the Porsolt swim or tail suspension tests. However, Ulk4 <sup>+/tm1a</sup> mice exhibited an anxiety-like behavioral phenotype in several tests. Previously identified hypo-anxious (Atp1a2, Ptn, and Mdk) and hyper-anxious (Gria1, Syngap1, and Npy2r) genes were found to be dysregulated accordingly in Ulk4 mutants. Ulk4 was found to be expressed in GABAergic neurons and the Gad67<sup>+</sup> interneurons were significantly reduced in the hippocampus and basolateral amygdala of Ulk4 <sup>+/tm1a</sup> mice. Transcriptome analyses revealed a marked reduction of GABAergic neuronal subtypes, including Pvalb, Sst, Cck, Npy, and Nos3, as well as significant upregulation of GABA receptors, including Gabra1, Gabra3, Gabra4, Gabra5, and Gabrb3. This is the first evidence that Ulk4 plays a major role in regulating GABAergic signaling and anxiety-like behavior, which may have implications for the development of novel anxiolytic treatments."	"Efficient strategy for the molecular diagnosis of intractable early-onset epilepsy using targeted gene sequencing. We intended to evaluate diagnostic utility of a targeted gene sequencing by using next generation sequencing (NGS) panel in patients with intractable early-onset epilepsy (EOE) and find the efficient analytical step for increasing the diagnosis rate. We assessed 74 patients with EOE whose seizures started before 3 years of age using a customized NGS panel that included 172 genes. Single nucleotide variants (SNVs) and exonic and chromosomal copy number variations (CNVs) were intensively examined with our customized pipeline and crosschecked with commercial or pre-built software. Variants were filtered and prioritized by in-depth clinical review, and finally classified according to the American College of Medical Genetics and Genomics guidelines. Each case was further discussed in a monthly consensus meeting that included the participation of all laboratory personnel, bioinformaticians, geneticists, and clinicians. The NGS panel identified 28 patients (37.8%) with genetic abnormalities; 25 patients had pathogenic or likely pathogenic SNVs in 17 genes including SXTBP1 (n = 3), CDKL5 (n = 2), KCNQ2 (n = 2), SCN1A (n = 2), SYNGAP1 (n = 2), GNAO1 (n = 2), KCNT1 (n = 2), BRAT1, WWOX, ZEB2, CHD2, PRICKLE2, COL4A1, DNM1, SCN8A, MECP2, SLC9A6 (n = 1). The other 3 patients had pathogenic CNVs (2 duplications and 1 deletion) with varying sizes (from 2.5 Mb to 12 Mb). The overall diagnostic yield was 37.8% after following our step-by-step approach for clinical consensus. NGS is a useful diagnostic tool with great utility for patients with EOE. Diagnostic yields can be maximized with a standardized and team-based approach."	"Novel SYNGAP1 variant in a patient with intellectual disability and distinctive dysmorphisms. We describe a novel de novo heterozygous variant in SYNGAP1 (c.1741C&gt;T, p.R581W), identified through targeted resequencing in an 8-year-old boy with intellectual disability, autism spectrum disorder, distinctive dysmorphic features, and no seizures. Our data strongly suggest that the SYNGAP1 variant is causative of intellectual disability in this patient."	"Molecular diagnosis of patients with epilepsy and developmental delay using a customized panel of epilepsy genes. Pediatric epilepsies are a group of disorders with a broad phenotypic spectrum that are associated with great genetic heterogeneity, thus making sequential single-gene testing an impractical basis for diagnostic strategy. The advent of next-generation sequencing has increased the success rate of epilepsy diagnosis, and targeted resequencing using genetic panels is the a most cost-effective choice. We report the results found in a group of 87 patients with epilepsy and developmental delay using targeted next generation sequencing (custom-designed Haloplex panel). Using this gene panel, we were able to identify disease-causing variants in 17 out of 87 (19.5%) analyzed patients, all found in known epilepsy-associated genes (KCNQ2, CDKL5, STXBP1, SCN1A, PCDH19, POLG, SLC2A1, ARX, ALG13, CHD2, SYNGAP1, and GRIN1). Twelve of 18 variants arose de novo and 6 were novel. The highest yield was found in patients with onset in the first years of life, especially in patients classified as having early-onset epileptic encephalopathy. Knowledge of the underlying genetic cause provides essential information on prognosis and could be used to avoid unnecessary studies, which may result in a greater diagnostic cost-effectiveness."	"3'UTR Length-Dependent Control of SynGAP Isoform α2 mRNA by FUS and ELAV-like Proteins Promotes Dendritic Spine Maturation and Cognitive Function. FUS is an RNA-binding protein associated with frontotemporal lobar degeneration (FTLD) and amyotrophic lateral sclerosis (ALS). Previous reports have demonstrated intrinsic roles of FUS in synaptic function. However, the mechanism underlying FUS's regulation of synaptic morphology has remained unclear. We found that reduced mature spines after FUS depletion were associated with the internalization of PSD-95 within the dendritic shaft. Mass spectrometry of PSD-95-interacting proteins identified SynGAP, whose expression decreased after FUS depletion. Moreover, FUS and the ELAV-like proteins ELAVL4 and ELAVL1 control SynGAP mRNA stability in a 3'UTR length-dependent manner, resulting in the stable expression of the alternatively spliced SynGAP isoform α2. Finally, abnormal spine maturation and FTLD-like behavioral deficits in FUS-knockout mice were ameliorated by SynGAP α2. Our findings establish an important link between FUS and ELAVL proteins for mRNA stability control and indicate that this mechanism is crucial for the maintenance of synaptic morphology and cognitive function."	"Tau exacerbates excitotoxic brain damage in an animal model of stroke. Neuronal excitotoxicity induced by aberrant excitation of glutamatergic receptors contributes to brain damage in stroke. Here we show that tau-deficient (tau<sup>-/-</sup>) mice are profoundly protected from excitotoxic brain damage and neurological deficits following experimental stroke, using a middle cerebral artery occlusion with reperfusion model. Mechanistically, we show that this protection is due to site-specific inhibition of glutamate-induced and Ras/ERK-mediated toxicity by accumulation of Ras-inhibiting SynGAP1, which resides in a post-synaptic complex with tau. Accordingly, reducing SynGAP1 levels in tau<sup>-/-</sup> mice abolished the protection from pharmacologically induced excitotoxicity and middle cerebral artery occlusion-induced brain damage. Conversely, over-expression of SynGAP1 prevented excitotoxic ERK activation in wild-type neurons. Our findings suggest that tau mediates excitotoxic Ras/ERK signaling by controlling post-synaptic compartmentalization of SynGAP1.Excitotoxicity contributes to neuronal injury following stroke. Here the authors show that tau promotes excitotoxicity by a post-synaptic mechanism, involving site-specific control of ERK activation, in a mouse model of stroke."	"Exonic Mosaic Mutations Contribute Risk for Autism Spectrum Disorder. Genetic risk factors for autism spectrum disorder (ASD) have yet to be fully elucidated. Postzygotic mosaic mutations (PMMs) have been implicated in several neurodevelopmental disorders and overgrowth syndromes. By leveraging whole-exome sequencing data on a large family-based ASD cohort, the Simons Simplex Collection, we systematically evaluated the potential role of PMMs in autism risk. Initial re-evaluation of published single-nucleotide variant (SNV) de novo mutations showed evidence consistent with putative PMMs for 11% of mutations. We developed a robust and sensitive SNV PMM calling approach integrating complementary callers, logistic regression modeling, and additional heuristics. In our high-confidence call set, we identified 470 PMMs in children, increasing the proportion of mosaic SNVs to 22%. Probands have a significant burden of synonymous PMMs and these mutations are enriched for computationally predicted impacts on splicing. Evidence of increased missense PMM burden was not seen in the full cohort. However, missense burden signal increased in subcohorts of families where probands lacked nonsynonymous germline mutations, especially in genes intolerant to mutations. Parental mosaic mutations that were transmitted account for 6.8% of the presumed de novo mutations in the children. PMMs were identified in previously implicated high-confidence neurodevelopmental disorder risk genes, such as CHD2, CTNNB1, SCN2A, and SYNGAP1, as well as candidate risk genes with predicted functions in chromatin remodeling or neurodevelopment, including ACTL6B, BAZ2B, COL5A3, SSRP1, and UNC79. We estimate that PMMs potentially contribute risk to 3%-4% of simplex ASD case subjects and future studies of PMMs in ASD and related disorders are warranted."	"Pharmacoresistant epileptic eyelid twitching in a child with a mutation in SYNGAP1. SYNGAP1 gene mutation has been associated with epilepsy which is often drug resistant, with seizure types including eyelid myoclonia. However, detailed descriptions, including ictal video-EEG, have not been reported. We report the case of a 4-year-old boy who developed recurrent epileptic eyelid twitching at 1 year and 5 months of age. Seizures gradually increased in frequency to more than 50 times per day and manifested with upward eye deviation, motion arrest, loss of consciousness, and eyelid twitching lasting for five seconds. Ictal EEG showed rhythmic, generalized slow or spike-and-wave complex activity with posterior predominance. Moderate psychomotor developmental delay and unsteady gait were also noted. Neuroimaging results were normal. Seizures were refractory to carbamazepine and levetiracetam but were reduced in frequency by ethosuximide and lamotrigine administration. Genetic analysis identified a c.3583-6 G&gt;A mutation in the SYNGAP1 gene. SYNGAP1 gene analysis should be considered for intellectually disabled patients with early-onset drug resistant eyelid twitching and photosensitivity. Further clinical research on SYNGAP1 function may be necessary to treat epilepsy of this aetiology. [Published with video sequence on www.epilepticdisorders.com]."	"Synaptic GAP and GEF Complexes Cluster Proteins Essential for GTP Signaling. GTPase-activating proteins (GAPs) and guanine exchange factors (GEFs) play essential roles in regulating the activity of small GTPases. Several GAPs and GEFs have been shown to be present at the postsynaptic density (PSD) within excitatory glutamatergic neurons and regulate the activity of glutamate receptors. However, it is not known how synaptic GAP and GEF proteins are organized within the PSD signaling machinery, if they have overlapping interaction networks, or if they associate with proteins implicated in contributing to psychiatric disease. Here, we determine the interactomes of three interacting GAP/GEF proteins at the PSD, including the RasGAP Syngap1, the ArfGAP Agap2, and the RhoGEF Kalirin, which includes a total of 280 interactions. We describe the functional properties of each interactome and show that these GAP/GEF proteins are highly associated with and cluster other proteins directly involved in GTPase signaling mechanisms. We also utilize Agap2 as an example of GAP/GEFs localized within multiple neuronal compartments and determine an additional 110 interactions involving Agap2 outside of the PSD. Functional analysis of PSD and non-PSD interactomes illustrates both common and unique functions of Agap2 determined by its subcellular location. Furthermore, we also show that these GAPs/GEFs associate with several proteins involved in psychiatric disease."	"Autism spectrum disorder: neuropathology and animal models. Autism spectrum disorder (ASD) has a major impact on the development and social integration of affected individuals and is the most heritable of psychiatric disorders. An increase in the incidence of ASD cases has prompted a surge in research efforts on the underlying neuropathologic processes. We present an overview of current findings in neuropathology studies of ASD using two investigational approaches, postmortem human brains and ASD animal models, and discuss the overlap, limitations, and significance of each. Postmortem examination of ASD brains has revealed global changes including disorganized gray and white matter, increased number of neurons, decreased volume of neuronal soma, and increased neuropil, the last reflecting changes in densities of dendritic spines, cerebral vasculature and glia. Both cortical and non-cortical areas show region-specific abnormalities in neuronal morphology and cytoarchitectural organization, with consistent findings reported from the prefrontal cortex, fusiform gyrus, frontoinsular cortex, cingulate cortex, hippocampus, amygdala, cerebellum and brainstem. The paucity of postmortem human studies linking neuropathology to the underlying etiology has been partly addressed using animal models to explore the impact of genetic and non-genetic factors clinically relevant for the ASD phenotype. Genetically modified models include those based on well-studied monogenic ASD genes (NLGN3, NLGN4, NRXN1, CNTNAP2, SHANK3, MECP2, FMR1, TSC1/2), emerging risk genes (CHD8, SCN2A, SYNGAP1, ARID1B, GRIN2B, DSCAM, TBR1), and copy number variants (15q11-q13 deletion, 15q13.3 microdeletion, 15q11-13 duplication, 16p11.2 deletion and duplication, 22q11.2 deletion). Models of idiopathic ASD include inbred rodent strains that mimic ASD behaviors as well as models developed by environmental interventions such as prenatal exposure to sodium valproate, maternal autoantibodies, and maternal immune activation. In addition to replicating some of the neuropathologic features seen in postmortem studies, a common finding in several animal models of ASD is altered density of dendritic spines, with the direction of the change depending on the specific genetic modification, age and brain region. Overall, postmortem neuropathologic studies with larger sample sizes representative of the various ASD risk genes and diverse clinical phenotypes are warranted to clarify putative etiopathogenic pathways further and to promote the emergence of clinically relevant diagnostic and therapeutic tools. In addition, as genetic alterations may render certain individuals more vulnerable to developing the pathological changes at the synapse underlying the behavioral manifestations of ASD, neuropathologic investigation using genetically modified animal models will help to improve our understanding of the disease mechanisms and enhance the development of targeted treatments."	"Analysis of 31-year-old patient with SYNGAP1 gene defect points to importance of variants in broader splice regions and reveals developmental trajectory of SYNGAP1-associated phenotype: case report. Whole exome sequencing is a powerful tool for the analysis of genetically heterogeneous conditions. The prioritization of variants identified often focuses on nonsense, frameshift and canonical splice site mutations, and highly deleterious missense variants, although other defects can also play a role. The definition of the phenotype range and course of rare genetic conditions requires long-term clinical follow-up of patients. We report an adult female patient with severe intellectual disability, severe speech delay, epilepsy, autistic features, aggressiveness, sleep problems, broad-based clumsy gait and constipation. Whole exome sequencing identified a de novo mutation in the SYNGAP1 gene. The variant was located in the broader splice donor region of intron 10 and replaced G by A at position +5 of the splice site. The variant was predicted in silico and shown experimentally to abolish the regular splice site and to activate a cryptic donor site within exon 10, causing frameshift and premature termination. The overall clinical picture of the patient corresponded well with the characteristic SYNGAP1-associated phenotype observed in previously reported patients. However, our patient was 31 years old which contrasted with most other published SYNGAP1 cases who were much younger. Our patient had a significant growth delay and microcephaly. Both features normalised later, although the head circumference stayed only slightly above the lower limit of the norm. The patient had a delayed puberty. Her cognitive and language performance remained at the level of a one-year-old child even in adulthood and showed a slow decline. Myopathic facial features and facial dysmorphism became more pronounced with age. Although the gait of the patient was unsteady in childhood, more severe gait problems developed in her teens. While the seizures remained well-controlled, her aggressive behaviour worsened with age and required extensive medication. The finding in our patient underscores the notion that the interpretation of variants identified using whole exome sequencing should focus not only on variants in the canonical splice dinucleotides GT and AG, but also on broader splice regions. The long-term clinical follow-up of our patient contributes to the knowledge of the developmental trajectory in individuals with SYNGAP1 gene defects."	"Anchoring high concentrations of SynGAP at postsynaptic densities via liquid-liquid phase separation. SynGAP, encoded by SYNGAP1, is a Ras/Rap GTPase activator specifically expressed in the nervous systems. SynGAP is one of the most abundant proteins in the postsynaptic densities (PSDs) of excitatory synapses and acts as a critical synaptic activity brake by tuning down synaptic GTPase activities. Mutations of SYNGAP1 have been frequently linked to brain disorders including intellectual disability, autisms, and seizure. SynGAP has been shown to undergo fast dispersions from synapses in response to stimulations, a strategy that neurons use to control the specific activities of the enzyme within the tiny, semi-open compartments in dendritic spines. However, the mechanism governing the activity-dependent synaptic localization modulations of SynGAP is poorly understood. It has been shown recently that SynGAP α1, via specifically binding to PSD-95, can undergo liquid-liquid phase separation forming membraneless, condensed protein-rich sub-compartments. This phase transition-mediated, PSD-95-dependent synaptic enrichment of SynGAP α1 not only suggests a dynamic anchoring mechanism of the protein within the PSD, but also implies a new model for the PSD formation in living neurons."	"Identification and validation of seven new loci showing differential DNA methylation related to serum lipid profile: an epigenome-wide approach. The REGICOR study. Lipid traits (total, low-density and high-density lipoprotein cholesterol, and triglycerides) are risk factors for cardiovascular disease. DNA methylation is not only an inherited but also modifiable epigenetic mark that has been related to cardiovascular risk factors. Our aim was to identify loci showing differential DNA methylation related to serum lipid levels. Blood DNA methylation was assessed using the Illumina Human Methylation 450 BeadChip. A two-stage epigenome-wide association study was performed, with a discovery sample in the REGICOR study (n = 645) and validation in the Framingham Offspring Study (n = 2,542). Fourteen CpG sites located in nine genes (SREBF1, SREBF2, PHOSPHO1, SYNGAP1, ABCG1, CPT1A, MYLIP, TXNIP and SLC7A11) and 2 intergenic regions showed differential methylation in association with lipid traits. Six of these genes and 1 intergenic region were new discoveries showing differential methylation related to total cholesterol (SREBF2), HDL-cholesterol (PHOSPHO1, SYNGAP1 and an intergenic region in chromosome 2) and triglycerides (MYLIP, TXNIP and SLC7A11). These CpGs explained 0.7%, 9.5% and 18.9% of the variability of total cholesterol, HDL cholesterol and triglycerides in the Framingham Offspring Study, respectively. The expression of the genes SREBF2 and SREBF1 was inversely associated with methylation of their corresponding CpGs (P-value = 0.0042 and 0.0045, respectively) in participants of the GOLDN study (n = 98). In turn, SREBF1 expression was directly associated with HDL cholesterol (P-value = 0.0429). Genetic variants in SREBF1, PHOSPHO1, ABCG1 and CPT1A were also associated with lipid profile. Further research is warranted to functionally validate these new loci and assess the causality of new and established associations between these differentially methylated loci and lipid metabolism."	"Prevalence and architecture of de novo mutations in developmental disorders. The genomes of individuals with severe, undiagnosed developmental disorders are enriched in damaging de novo mutations (DNMs) in developmentally important genes. Here we have sequenced the exomes of 4,293 families containing individuals with developmental disorders, and meta-analysed these data with data from another 3,287 individuals with similar disorders. We show that the most important factors influencing the diagnostic yield of DNMs are the sex of the affected individual, the relatedness of their parents, whether close relatives are affected and the parental ages. We identified 94 genes enriched in damaging DNMs, including 14 that previously lacked compelling evidence of involvement in developmental disorders. We have also characterized the phenotypic diversity among these disorders. We estimate that 42% of our cohort carry pathogenic DNMs in coding sequences; approximately half of these DNMs disrupt gene function and the remainder result in altered protein function. We estimate that developmental disorders caused by DNMs have an average prevalence of 1 in 213 to 1 in 448 births, depending on parental age. Given current global demographics, this equates to almost 400,000 children born per year."	"Expansion of the RASopathies. The Ras/mitogen activated protein kinase (MAPK) pathway is essential in the regulation of cell cycle, differentiation, growth, cell senescence and apoptosis, all of which are critical to normal development. A class of neurodevelopmental disorders, RASopathies, is caused by germline mutations in genes of the Ras/MAPK pathway. Through the use of whole exome sequencing and targeted sequencing of selected genes in cohorts of panel-negative RASopathy patients, several new genes have been identified. These include: RIT1, SOS2, RASA2, RRAS and SYNGAP1, that likely represent new, albeit rare, causative RASopathy genes. In addition, A2ML1, LZTR1, MYST4, SPRY1 and MAP3K8 may represent new rare genes for RASopathies, but, additional functional studies regarding the mutations are warranted. In addition, recent reports have demonstrated that chromosomal copy number variation in regions encompassing Ras/MAPK pathway genes may be a novel pathogenetic mechanism expanding the RASopathies."	"DE NOVO MUTATIONS IN AUTISM IMPLICATE THE SYNAPTIC ELIMINATION NETWORK. Autism has been shown to have a major genetic risk component; the architecture of documented autism in families has been over and again shown to be passed down for generations. While inherited risk plays an important role in the autistic nature of children, de novo (germline) mutations have also been implicated in autism risk. Here we find that autism de novo variants verified and published in the literature are Bonferroni-significantly enriched in a gene set implicated in synaptic elimination. Additionally, several of the genes in this synaptic elimination set that were enriched in protein-protein interactions (CACNA1C, SHANK2, SYNGAP1, NLGN3, NRXN1, and PTEN) have been previously confirmed as genes that confer risk for the disorder. The results demonstrate that autism-associated de novos are linked to proper synaptic pruning and density, hinting at the etiology of autism and suggesting pathophysiology for downstream correction and treatment."	"Decrease of SYNGAP1 in GABAergic cells impairs inhibitory synapse connectivity, synaptic inhibition and cognitive function. Haploinsufficiency of the SYNGAP1 gene, which codes for a Ras GTPase-activating protein, impairs cognition both in humans and in mice. Decrease of Syngap1 in mice has been previously shown to cause cognitive deficits at least in part by inducing alterations in glutamatergic neurotransmission and premature maturation of excitatory connections. Whether Syngap1 plays a role in the development of cortical GABAergic connectivity and function remains unclear. Here, we show that Syngap1 haploinsufficiency significantly reduces the formation of perisomatic innervations by parvalbumin-positive basket cells, a major population of GABAergic neurons, in a cell-autonomous manner. We further show that Syngap1 haploinsufficiency in GABAergic cells derived from the medial ganglionic eminence impairs their connectivity, reduces inhibitory synaptic activity and cortical gamma oscillation power, and causes cognitive deficits. Our results indicate that Syngap1 plays a critical role in GABAergic circuit function and further suggest that Syngap1 haploinsufficiency in GABAergic circuits may contribute to cognitive deficits."	"DNA Methylation Signatures of Early Childhood Malnutrition Associated With Impairments in Attention and Cognition. Early childhood malnutrition affects 113 million children worldwide, impacting health and increasing vulnerability for cognitive and behavioral disorders later in life. Molecular signatures after childhood malnutrition, including the potential for intergenerational transmission, remain unexplored. We surveyed blood DNA methylomes (~483,000 individual CpG sites) in 168 subjects across two generations, including 50 generation 1 individuals hospitalized during the first year of life for moderate to severe protein-energy malnutrition, then followed up to 48 years in the Barbados Nutrition Study. Attention deficits and cognitive performance were evaluated with the Connors Adult Attention Rating Scale and Wechsler Abbreviated Scale of Intelligence. Expression of nutrition-sensitive genes was explored by quantitative reverse transcriptase polymerase chain reaction in rat prefrontal cortex. We identified 134 nutrition-sensitive, differentially methylated genomic regions, with most (87%) specific for generation 1. Multiple neuropsychiatric risk genes, including COMT, IFNG, MIR200B, SYNGAP1, and VIPR2 showed associations of specific methyl-CpGs with attention and IQ. IFNG expression was decreased in prefrontal cortex of rats showing attention deficits after developmental malnutrition. Early childhood malnutrition entails long-lasting epigenetic signatures associated with liability for attention and cognition, and limited potential for intergenerational transmission."	"A model for regulation by SynGAP-α1 of binding of synaptic proteins to PDZ-domain 'Slots' in the postsynaptic density. SynGAP is a Ras/Rap GTPase-activating protein (GAP) that is a major constituent of postsynaptic densities (PSDs) from mammalian forebrain. Its α1 isoform binds to all three PDZ (PSD-95, Discs-large, ZO-1) domains of PSD-95, the principal PSD scaffold, and can occupy as many as 15% of these PDZ domains. We present evidence that synGAP-α1 regulates the composition of the PSD by restricting binding to the PDZ domains of PSD-95. We show that phosphorylation by Ca<sup>2+</sup>/calmodulin-dependent protein kinase II (CaMKII) and Polo-like kinase-2 (PLK2) decreases its affinity for the PDZ domains by several fold, which would free PDZ domains for occupancy by other proteins. Finally, we show that three critical postsynaptic signaling proteins that bind to the PDZ domains of PSD-95 are present in higher concentration in PSDs isolated from mice with a heterozygous deletion of synGAP."	"Phase Transition in Postsynaptic Densities Underlies Formation of Synaptic Complexes and Synaptic Plasticity. Postsynaptic densities (PSDs) are membrane semi-enclosed, submicron protein-enriched cellular compartments beneath postsynaptic membranes, which constantly exchange their components with bulk aqueous cytoplasm in synaptic spines. Formation and activity-dependent modulation of PSDs is considered as one of the most basic molecular events governing synaptic plasticity in the nervous system. In this study, we discover that SynGAP, one of the most abundant PSD proteins and a Ras/Rap GTPase activator, forms a homo-trimer and binds to multiple copies of PSD-95. Binding of SynGAP to PSD-95 induces phase separation of the complex, forming highly concentrated liquid-like droplets reminiscent of the PSD. The multivalent nature of the SynGAP/PSD-95 complex is critical for the phase separation to occur and for proper activity-dependent SynGAP dispersions from the PSD. In addition to revealing a dynamic anchoring mechanism of SynGAP at the PSD, our results also suggest a model for phase-transition-mediated formation of PSD. "	"Erratum: Genetic and neurodevelopmental spectrum of SYNGAP1-associated intellectual disability and epilepsy. NA"	"Long-term potentiation modulates synaptic phosphorylation networks and reshapes the structure of the postsynaptic interactome. The postsynaptic site of neurons is composed of more than 1500 proteins arranged in protein-protein interaction complexes, the composition of which is modulated by protein phosphorylation through the actions of complex signaling networks. Components of these networks function as key regulators of synaptic plasticity, in particular hippocampal long-term potentiation (LTP). The postsynaptic density (PSD) is a complex multicomponent structure that includes receptors, enzymes, scaffold proteins, and structural proteins. We triggered LTP in the mouse hippocampus CA1 region and then performed large-scale analyses to identify phosphorylation-mediated events in the PSD and changes in the protein-protein interactome of the PSD that were associated with LTP induction. Our data indicated LTP-induced reorganization of the PSD. The dynamic reorganization of the PSD links glutamate receptor signaling to kinases (writers) and phosphatases (erasers), as well as the target proteins that are modulated by protein phosphorylation and the proteins that recognize the phosphorylation status of their binding partners (readers). Protein phosphorylation and protein interaction networks converged at highly connected nodes within the PSD network. Furthermore, the LTP-regulated phosphoproteins, which included the scaffold proteins Shank3, Syngap1, Dlgap1, and Dlg4, represented the &quot;PSD risk&quot; for schizophrenia and autism spectrum disorder, such that without these proteins in the analysis, the association with the PSD and these two psychiatric diseases was not present. These data are a rich resource for future studies of LTP and suggest that the PSD holds the keys to understanding the molecular events that contribute to complex neurological disorders that affect synaptic plasticity."	"MicroRNA-328a regulates water maze performance in PTZ-kindled rats. The down-regulation of microRNA-328a (miR-328a) in pentylenetetrazole (PTZ)-kindled rats with memory impairment was demonstrated in our previous study, while any contribution of miR-328a to cognitive dysfunction of PTZ-kindled rats remains unknown. In this study we have investigated the effect and the underlying mechanism of miR-328a on the cognitive function in PTZ-kindled rats. 48 SD male rats were divided into 4 groups as follows: a PTZ kindled group, a miR-328a antagomir group, an antagomir-control group, and a sham group (n=12 for each). All rats except those from the sham group were treated with PTZ 14 times at intervals of 48h to establish the temporal lobe epilepsy (TLE) models, and miR-328a antagomir was given to the antagomir group as a treatment by lateral-ventricle injection the day after the first injection of PTZ. Morris water maze (MWM) test was performed to assay their learning and memory abilities. The down-regulation of miR-328a in the PTZ group was confirmed using RT-qPCR and the expression of miR-328a was diminished after antagomir treatment (P&lt;0.05). In the probe test of water maze, the time and distance of the PTZ group were both shorter than those of the sham group (P&lt;0.05), and those of the antagomir-control group were both longer than those of the antagomir group (P&lt;0.05). In addition, we found that with the down-regulation of miR-328a, the levels of Beta-site APP-cleaving enzyme (BACE), which is a bioinformatics-predicted target of miR-328a, were up-regulated. These findings suggest that miR-328a may play a role in memory dysfunction in PTZ-kindled rats by regulating the BACE levels and this links the PTZ model with Alzheimer's disease."	"Receptor Tyrosine Kinase MET Interactome and Neurodevelopmental Disorder Partners at the Developing Synapse. Atypical synapse development and plasticity are implicated in many neurodevelopmental disorders (NDDs). NDD-associated, high-confidence risk genes have been identified, yet little is known about functional relationships at the level of protein-protein interactions, which are the dominant molecular bases responsible for mediating circuit development. Proteomics in three independent developing neocortical synaptosomal preparations identified putative interacting proteins of the ligand-activated MET receptor tyrosine kinase, an autism risk gene that mediates synapse development. The candidates were translated into interactome networks and analyzed bioinformatically. Additionally, three independent quantitative proximity ligation assays in cultured neurons and four independent immunoprecipitation analyses of synaptosomes validated protein interactions. Approximately 11% (8/72) of MET-interacting proteins, including SHANK3, SYNGAP1, and GRIN2B, are associated with NDDs. Proteins in the MET interactome were translated into a novel MET interactome network based on human protein-protein interaction databases. High-confidence genes from different NDD datasets that encode synaptosomal proteins were analyzed for being enriched in MET interactome proteins. This was found for autism but not schizophrenia, bipolar disorder, major depressive disorder, or attention-deficit/hyperactivity disorder. There is correlated gene expression between MET and its interactive partners in developing human temporal and visual neocortices but not with highly expressed genes that are not in the interactome. Proximity ligation assays and biochemical analyses demonstrate that MET-protein partner interactions are dynamically regulated by receptor activation. The results provide a novel molecular framework for deciphering the functional relations of key regulators of synaptogenesis that contribute to both typical cortical development and to NDDs."	"Genetic and neurodevelopmental spectrum of SYNGAP1-associated intellectual disability and epilepsy. We aimed to delineate the neurodevelopmental spectrum associated with SYNGAP1 mutations and to investigate genotype-phenotype correlations. We sequenced the exome or screened the exons of SYNGAP1 in a total of 251 patients with neurodevelopmental disorders. Molecular and clinical data from patients with SYNGAP1 mutations from other centres were also collected, focusing on developmental aspects and the associated epilepsy phenotype. A review of SYNGAP1 mutations published in the literature was also performed. We describe 17 unrelated affected individuals carrying 13 different novel loss-of-function SYNGAP1 mutations. Developmental delay was the first manifestation of SYNGAP1-related encephalopathy; intellectual disability became progressively obvious and was associated with autistic behaviours in eight patients. Hypotonia and unstable gait were frequent associated neurological features. With the exception of one patient who experienced a single seizure, all patients had epilepsy, characterised by falls or head drops due to atonic or myoclonic seizures, (myoclonic) absences and/or eyelid myoclonia. Triggers of seizures were frequent (n=7). Seizures were pharmacoresistant in half of the patients. The severity of the epilepsy did not correlate with the presence of autistic features or with the severity of cognitive impairment. Mutations were distributed throughout the gene, but spared spliced 3' and 5' exons. Seizures in patients with mutations in exons 4-5 were more pharmacoresponsive than in patients with mutations in exons 8-15. SYNGAP1 encephalopathy is characterised by early neurodevelopmental delay typically preceding the onset of a relatively recognisable epilepsy comprising generalised seizures (absences, myoclonic jerks) and frequent triggers."	"SYNGAP1: Mind the Gap. A cardinal feature of early stages of human brain development centers on the sensory, cognitive, and emotional experiences that shape neuronal-circuit formation and refinement. Consequently, alterations in these processes account for many psychiatric and neurodevelopmental disorders. Neurodevelopment disorders affect 3-4% of the world population. The impact of these disorders presents a major challenge to clinicians, geneticists, and neuroscientists. Mutations that cause neurodevelopmental disorders are commonly found in genes encoding proteins that regulate synaptic function. Investigation of the underlying mechanisms using gain or loss of function approaches has revealed alterations in dendritic spine structure, function, and plasticity, consequently modulating the neuronal circuit formation and thereby raising the possibility of neurodevelopmental disorders resulting from synaptopathies. One such gene, SYNGAP1 (Synaptic Ras-GTPase-activating protein) has been shown to cause Intellectual Disability (ID) with comorbid Autism Spectrum Disorder (ASD) and epilepsy in children. SYNGAP1 is a negative regulator of Ras, Rap and of AMPA receptor trafficking to the postsynaptic membrane, thereby regulating not only synaptic plasticity, but also neuronal homeostasis. Recent studies on the neurophysiology of SYNGAP1, using Syngap1 mouse models, have provided deeper insights into how downstream signaling proteins and synaptic plasticity are regulated by SYNGAP1. This knowledge has led to a better understanding of the function of SYNGAP1 and suggests a potential target during critical period of development when the brain is more susceptible to therapeutic intervention. "	"Proteomic analysis of PSD-93 knockout mice following the induction of ischemic cerebral injury. Postsynaptic density protein-93 (PSD-93) is enriched in the postsynaptic density and is involved in N-methyl-d-aspartate receptor (NMDAR) triggered neurotoxicity through PSD-93/NMDAR/nNOS signaling pathway. In the present study, we found that PSD-93 deficiency reduced infarcted volume and neurological deficits induced by transient middle cerebral artery occlusion (tMCAO) in the mice. To identify novel targets of PSD-93 related neurotoxicity, we applied isobaric tags for relative and absolute quantitative (iTRAQ) labeling and combined this labeling with on-line two-dimensional LC/MS/MS technology to elucidate the changes in protein expression in PSD-93 knockout mice following tMCAO. The proteomic data set consisted of 1892 proteins. Compared to control group, differences in expression levels in ischemic group &gt;1.5-fold and &lt;0.66-fold were considered as differential expression. A total of 104 unique proteins with differential abundance levels were identified, among which 17 proteins were selected for further validation. Gene ontology analysis using UniProt database revealed that these differentially expressed proteins are involved in diverse function such as synaptic transmission, neuronal neurotransmitter and ion transport, modification of organelle membrane components. Moreover, network analysis revealed that the interacting proteins were involved in the transport of synaptic vesicles, the integrity of synaptic membranes and the activation of the ionotropic glutamate receptors NMDAR1 and NMDAR2B. Finally, RT-PCR and Western blot analysis showed that SynGAP, syntaxin-1A, protein kinase C β, and voltage-dependent L-type calcium channels were inhibited by ischemia-reperfusion. Identification of these proteins provides valuable clues to elucidate the mechanisms underlying the actions of PSD-93 in ischemia-reperfusion induced neurotoxicity. "	"Convergence of Hippocampal Pathophysiology in Syngap+/- and Fmr1-/y Mice. Previous studies have hypothesized that diverse genetic causes of intellectual disability (ID) and autism spectrum disorders (ASDs) converge on common cellular pathways. Testing this hypothesis requires detailed phenotypic analyses of animal models with genetic mutations that accurately reflect those seen in the human condition (i.e., have structural validity) and which produce phenotypes that mirror ID/ASDs (i.e., have face validity). We show that SynGAP haploinsufficiency, which causes ID with co-occurring ASD in humans, mimics and occludes the synaptic pathophysiology associated with deletion of the Fmr1 gene. Syngap(+/-) and Fmr1(-/y) mice show increases in basal protein synthesis and metabotropic glutamate receptor (mGluR)-dependent long-term depression that, unlike in their wild-type controls, is independent of new protein synthesis. Basal levels of phosphorylated ERK1/2 are also elevated in Syngap(+/-) hippocampal slices. Super-resolution microscopy reveals that Syngap(+/-) and Fmr1(-/y) mice show nanoscale alterations in dendritic spine morphology that predict an increase in biochemical compartmentalization. Finally, increased basal protein synthesis is rescued by negative regulators of the mGlu subtype 5 receptor and the Ras-ERK1/2 pathway, indicating that therapeutic interventions for fragile X syndrome may benefit patients with SYNGAP1 haploinsufficiency. As the genetics of intellectual disability (ID) and autism spectrum disorders (ASDs) are unraveled, a key issue is whether genetically divergent forms of these disorders converge on common biochemical/cellular pathways and hence may be amenable to common therapeutic interventions. This study compares the pathophysiology associated with the loss of fragile X mental retardation protein (FMRP) and haploinsufficiency of synaptic GTPase-activating protein (SynGAP), two prevalent monogenic forms of ID. We show that Syngap(+/-) mice phenocopy Fmr1(-/y) mice in the alterations in mGluR-dependent long-term depression, basal protein synthesis, and dendritic spine morphology. Deficits in basal protein synthesis can be rescued by pharmacological interventions that reduce the mGlu5 receptor-ERK1/2 signaling pathway, which also rescues the same deficit in Fmr1(-/y) mice. Our findings support the hypothesis that phenotypes associated with genetically diverse forms of ID/ASDs result from alterations in common cellular/biochemical pathways."	"Prioritizing the development of mouse models for childhood brain disorders. Mutations in hundreds of genes contribute to cognitive and behavioral dysfunction associated with developmental brain disorders (DBDs). Due to the sheer number of risk factors available for study combined with the cost of developing new animal models, it remains an open question how genes should be prioritized for in-depth neurobiological investigations. Recent reviews have argued that priority should be given to frequently mutated genes commonly found in sporadic DBD patients. Intrigued by this idea, we explored to what extent &quot;high priority&quot; risk factors have been studied in animals in an effort to assess their potential for generating valuable preclinical models capable of advancing the neurobiological understanding of DBDs. We found that in-depth whole animal studies are lacking for many high priority genes, with relatively few neurobiological studies performed in construct valid animal models aimed at understanding the pathological substrates associated with disease phenotypes. However, some high priority risk factors have been extensively studied in animal models and they have generated novel insights into DBD patho-neurobiology while also advancing early pre-clinical therapeutic treatment strategies. We suggest that prioritizing model development toward genes frequently mutated in non-specific DBD populations will accelerate the understanding of DBD patho-neurobiology and drive novel therapeutic strategies. This article is part of the Special Issue entitled 'Synaptopathy--from Biology to Therapy'."	"Wnt-related SynGAP1 is a neuroprotective factor of glutamatergic synapses against Aβ oligomers. Wnt-5a is a synaptogenic factor that modulates glutamatergic synapses and generates neuroprotection against Aβ oligomers. It is known that Wnt-5a plays a key role in the adult nervous system and synaptic plasticity. Emerging evidence indicates that miRNAs are actively involved in the regulation of synaptic plasticity. Recently, we showed that Wnt-5a is able to control the expression of several miRNAs including miR-101b, which has been extensively studied in carcinogenesis. However, its role in brain is just beginning to be explored. That is why we aim to study the relationship between Wnt-5a and miRNAs in glutamatergic synapses. We performed in silico analysis which predicted that miR-101b may inhibit the expression of synaptic GTPase-Activating Protein (SynGAP1), a Ras GTPase-activating protein critical for the development of cognition and proper synaptic function. Through overexpression of miR-101b, we showed that miR-101b is able to regulate the expression of SynGAP1 in an hippocampal cell line. Moreover and consistent with a decrease of miR-101b, Wnt-5a enhances SynGAP expression in cultured hippocampal neurons. Additionally, Wnt-5a increases the activity of SynGAP in a time-dependent manner, with a similar kinetic to CaMKII phosphorylation. This also, correlates with a modulation in the SynGAP clusters density. On the other hand, Aβ oligomers permanently decrease the number of SynGAP clusters. Interestingly, when neurons are co-incubated with Wnt-5a and Aβ oligomers, we do not observe the detrimental effect of Aβ oligomers, indicating that, Wnt-5a protects neurons from the synaptic failure triggered by Aβ oligomers. Overall, our findings suggest that SynGAP1 is part of the signaling pathways induced by Wnt-5a. Therefore, possibility exists that SynGAP is involved in the synaptic protection against Aβ oligomers. "	"SYNGAP1 Mutation in Focal and Generalized Epilepsy: A Literature Overview and A Case Report with Special Aspects of the EEG. SYNGAP1, which encodes a RAS-GTPase-activating protein, is located on the short arm of chromosome 6. Heterozygous SYNGAP1 gene mutations have been associated with autism spectrum disorders, delay of psychomotor development, acquired microcephaly, and several forms of idiopathic generalized epilepsy. Here, we report a patient with a new SYNGAP1 stop mutation, and compare the phenotype with published cases with SYNGAP1 mutations and epilepsy. This 15-year-old nondysmorphic girl with intellectual disability developed drop attacks at the age of 2 years, later clonic and clonic-tonic as well as myoclonic seizures predominantly during sleep. The epilepsy was well-controlled by valproic acid (VPA) and later on with levetiracetam. Electroencephalogram (EEG) showed a complete EEG-normalization with eye opening as well as photosensitivity. Magnetic resonance imaging was normal. Genetic analysis revealed a de novo heterozygous stop mutation (c.348C&gt;A, p.Y116*) in exon 4 of the SYNGAP1 gene. The main clinical features of our patient (i.e., intellectual disability and idiopathic epilepsy) are compatible with previous reports on patients with SYNGAP1 mutations. The unusual feature of complete EEG normalization with eye opening has not been reported yet for this genetic abnormality. Furthermore, our case provides further support for efficacy of VPA in patients with SYNGAP1 mutation-related epilepsy."	"De novo, heterozygous, loss-of-function mutations in SYNGAP1 cause a syndromic form of intellectual disability. De novo mutations (DNM) in SYNGAP1, encoding Ras/Rap GTPase-activating protein SynGAP, have been reported in individuals with nonsyndromic intellectual disability (ID). We identified 10 previously unreported individuals with SYNGAP1 DNM; seven via the Deciphering Developmental Disorders (DDD) Study, one through clinical analysis for copy number variation and the remaining two (monozygotic twins) via a research multi-gene panel analysis. Seven of the nine heterozygous mutations are likely to result in loss-of-function (3 nonsense; 3 frameshift; 1 whole gene deletion). The remaining two mutations, one of which affected the monozygotic twins, were missense variants. Each individual carrying a DNM in SYNGAP1 had moderate-to-severe ID and 7/10 had epilepsy; typically myoclonic seizures, absences or drop attacks. 8/10 had hypotonia, 5/10 had significant constipation, 7/10 had wide-based/unsteady gait, 3/10 had strabismus, and 2/10 had significant hip dysplasia. A proportion of the affected individuals had a similar, myopathic facial appearance, with broad nasal bridge, relatively long nose and full lower lip vermilion. A distinctive behavioral phenotype was also observed with aggressive/challenging behavior and significant sleep problems being common. 7/10 individuals had MR imaging of the brain each of which was reported as normal. The clinical features of the individuals reported here show significant overlap with those associated with 6p21.3 microdeletions, confirming that haploinsufficiency for SYNGAP1 is responsible for both disorders. © 2015 Wiley Periodicals, Inc. "	"Dietary glycemic index modulates the behavioral and biochemical abnormalities associated with autism spectrum disorder. Autism spectrum disorder (ASD) is a complex neurodevelopmental disorder of unknown etiology, but very likely resulting from both genetic and environmental factors. There is good evidence for immune system dysregulation in individuals with ASD. However, the contribution of insults such as dietary factors that can also activate the immune system have not been explored in the context of ASD. In this paper, we show that the dietary glycemic index has a significant impact on the ASD phenotype. By using BTBR mice, an inbred strain that displays behavioral traits that reflect the diagnostic symptoms of human ASD, we found that the diet modulates plasma metabolites, neuroinflammation and brain markers of neurogenesis in a manner that is highly reflective of ASD in humans. Overall, the manuscript supports the idea that ASD results from gene-environment interactions and that in the presence of a genetic predisposition to ASD, diet can make a large difference in the expression of the condition. "	"GluN2B-Containing NMDA Receptors Regulate AMPA Receptor Traffic through Anchoring of the Synaptic Proteasome. NMDA receptors play a central role in shaping the strength of synaptic connections throughout development and in mediating synaptic plasticity mechanisms that underlie some forms of learning and memory formation in the CNS. In the hippocampus and the neocortex, GluN1 is combined primarily with GluN2A and GluN2B, which are differentially expressed during development and confer distinct molecular and physiological properties to NMDA receptors. The contribution of each subunit to the synaptic traffic of NMDA receptors and therefore to their role during development and in synaptic plasticity is still controversial. We report a critical role for the GluN2B subunit in regulating NMDA receptor synaptic targeting. In the absence of GluN2B, the synaptic levels of AMPA receptors are increased and accompanied by decreased constitutive endocytosis of GluA1-AMPA receptor. We used quantitative proteomic analysis to identify changes in the composition of postsynaptic densities from GluN2B(-/-) mouse primary neuronal cultures and found altered levels of several ubiquitin proteasome system components, in particular decreased levels of proteasome subunits. Enhancing the proteasome activity with a novel proteasome activator restored the synaptic levels of AMPA receptors in GluN2B(-/-) neurons and their endocytosis, revealing that GluN2B-mediated anchoring of the synaptic proteasome is responsible for fine tuning AMPA receptor synaptic levels under basal conditions. "	"Two knockdown models of the autism genes SYNGAP1 and SHANK3 in zebrafish produce similar behavioral phenotypes associated with embryonic disruptions of brain morphogenesis. Despite significant progress in the genetics of autism spectrum disorder (ASD), how genetic mutations translate to the behavioral changes characteristic of ASD remains largely unknown. ASD affects 1-2% of children and adults, and is characterized by deficits in verbal and non-verbal communication, and social interactions, as well as the presence of repetitive behaviors and/or stereotyped interests. ASD is clinically and etiologically heterogeneous, with a strong genetic component. Here, we present functional data from syngap1 and shank3 zebrafish loss-of-function models of ASD. SYNGAP1, a synaptic Ras GTPase activating protein, and SHANK3, a synaptic scaffolding protein, were chosen because of mounting evidence that haploinsufficiency in these genes is highly penetrant for ASD and intellectual disability (ID). Orthologs of both SYNGAP1 and SHANK3 are duplicated in the zebrafish genome and we find that all four transcripts (syngap1a, syngap1b, shank3a and shank3b) are expressed at the earliest stages of nervous system development with pronounced expression in the larval brain. Consistent with early expression of these genes, knockdown of syngap1b or shank3a cause common embryonic phenotypes including delayed mid- and hindbrain development, disruptions in motor behaviors that manifest as unproductive swim attempts, and spontaneous, seizure-like behaviors. Our findings indicate that both syngap1b and shank3a play novel roles in morphogenesis resulting in common brain and behavioral phenotypes. "	"Characterization of patients referred for non-specific intellectual disability testing: the importance of autosomal genes for diagnosis. Genetic testing for non-specific intellectual disability (ID) presents challenges in daily clinical practice. Historically, the focus of the genetic elucidation of non-specific ID has been on genes on the X chromosome, and recent research has brought attention to the growing contribution of autosomal genes. In addition, next-generation sequencing (NGS) has greatly improved the ability to simultaneously analyze multiple genetic loci, making large panel testing a practical approach to testing for non-specific ID. We performed NGS analysis of a total of 90 genes implicated in non-specific ID. The 90 genes included 56 X-linked genes and 34 autosomal genes. Pathogenic variants were identified in 11 of 52 (21%) patient samples. Nine of the eleven cases harbored mutations in autosomal genes including AP4B1, STXB1, SYNGAP1, TCF4 and UBE3A. Our mutation-positive cases provide further evidence supporting the prevalence of autosomal mutations in patients referred for non-specific ID testing and the utility of their inclusion in multi-gene panel analysis."	"Rapid dispersion of SynGAP from synaptic spines triggers AMPA receptor insertion and spine enlargement during LTP. SynGAP is a Ras-GTPase activating protein highly enriched at excitatory synapses in the brain. Previous studies have shown that CaMKII and the RAS-ERK pathway are critical for several forms of synaptic plasticity including LTP. NMDA receptor-dependent calcium influx has been shown to regulate the RAS-ERK pathway and downstream events that result in AMPA receptor synaptic accumulation, spine enlargement, and synaptic strengthening during LTP. However, the cellular mechanisms whereby calcium influx and CaMKII control Ras activity remain elusive. Using live-imaging techniques, we have found that SynGAP is rapidly dispersed from spines upon LTP induction in hippocampal neurons, and this dispersion depends on phosphorylation of SynGAP by CaMKII. Moreover, the degree of acute dispersion predicts the maintenance of spine enlargement. Thus, the synaptic dispersion of SynGAP by CaMKII phosphorylation during LTP represents a key signaling component that transduces CaMKII activity to small G protein-mediated spine enlargement, AMPA receptor synaptic incorporation, and synaptic potentiation. "	"Phosphorylation of synaptic GTPase-activating protein (synGAP) by Ca2+/calmodulin-dependent protein kinase II (CaMKII) and cyclin-dependent kinase 5 (CDK5) alters the ratio of its GAP activity toward Ras and Rap GTPases. synGAP is a neuron-specific Ras and Rap GTPase-activating protein (GAP) found in high concentrations in the postsynaptic density (PSD) fraction from the mammalian forebrain. We have previously shown that, in situ in the PSD fraction or in recombinant form in Sf9 cell membranes, synGAP is phosphorylated by Ca(2+)/calmodulin-dependent protein kinase II (CaMKII), another prominent component of the PSD. Here, we show that recombinant synGAP (r-synGAP), lacking 102 residues at the N terminus, can be purified in soluble form and is phosphorylated by cyclin-dependent kinase 5 (CDK5) as well as by CaMKII. Phosphorylation of r-synGAP by CaMKII increases its HRas GAP activity by 25% and its Rap1 GAP activity by 76%. Conversely, phosphorylation by CDK5 increases r-synGAP's HRas GAP activity by 98% and its Rap1 GAP activity by 20%. Thus, phosphorylation by both kinases increases synGAP activity; CaMKII shifts the relative GAP activity toward inactivation of Rap1, and CDK5 shifts the relative activity toward inactivation of HRas. GAP activity toward Rap2 is not altered by phosphorylation by either kinase. CDK5 phosphorylates synGAP primarily at two sites, Ser-773 and Ser-802. Phosphorylation at Ser-773 inhibits r-synGAP activity, and phosphorylation at Ser-802 increases it. However, the net effect of concurrent phosphorylation of both sites, Ser-773 and Ser-802, is an increase in GAP activity. synGAP is phosphorylated at Ser-773 and Ser-802 in the PSD fraction, and its phosphorylation by CDK5 and CaMKII is differentially regulated by activation of NMDA-type glutamate receptors in cultured neurons. "	"Syngap1 haploinsufficiency damages a postnatal critical period of pyramidal cell structural maturation linked to cortical circuit assembly. Genetic haploinsufficiency of SYNGAP1/Syngap1 commonly occurs in developmental brain disorders, such as intellectual disability, epilepsy, schizophrenia, and autism spectrum disorder. Thus, studying mouse models of Syngap1 haploinsufficiency may uncover pathologic developmental processes common among distinct brain disorders. A Syngap1 haploinsufficiency model was used to explore the relationship between critical period dendritic spine abnormalities, cortical circuit assembly, and the window for genetic rescue to understand how damaging mutations disrupt key substrates of mouse brain development. Syngap1 mutations broadly disrupted a developmentally sensitive period that corresponded to the period of heightened postnatal cortical synaptogenesis. Pathogenic Syngap1 mutations caused a coordinated acceleration of dendrite elongation and spine morphogenesis and pruning of these structures in neonatal cortical pyramidal neurons. These mutations also prevented a form of developmental structural plasticity associated with experience-dependent reorganization of brain circuits. Consistent with these findings, Syngap1 mutant mice displayed an altered pattern of long-distance synaptic inputs into a cortical area important for cognition. Interestingly, the ability to genetically improve the behavioral endophenotype of Syngap1 mice decreased slowly over postnatal development and mapped onto the developmental period of coordinated dendritic insults. Pathogenic Syngap1 mutations have a profound impact on the dynamics and structural integrity of pyramidal cell postsynaptic structures known to guide the de novo wiring of nascent cortical circuits. These findings support the idea that disrupted critical periods of dendritic growth and spine plasticity may be a common pathologic process in developmental brain disorders."	"Recurrent de novo mutations implicate novel genes underlying simplex autism risk. Autism spectrum disorder (ASD) has a strong but complex genetic component. Here we report on the resequencing of 64 candidate neurodevelopmental disorder risk genes in 5,979 individuals: 3,486 probands and 2,493 unaffected siblings. We find a strong burden of de novo point mutations for these genes and specifically implicate nine genes. These include CHD2 and SYNGAP1, genes previously reported in related disorders, and novel genes TRIP12 and PAX5. We also show that mutation carriers generally have lower IQs and enrichment for seizures. These data begin to distinguish genetically distinct subtypes of autism important for aetiological classification and future therapeutics. "	"Reciprocal signaling between translational control pathways and synaptic proteins in autism spectrum disorders. Autism spectrum disorder (ASD) is a heterogeneous group of heritable neurodevelopmental disorders. Symptoms of ASD, which include deficits in social interaction skills, impaired communication ability, and ritualistic-like repetitive behaviors, appear in early childhood and continue throughout life. Genetic studies have revealed at least two clusters of genes frequently associated with ASD and intellectual disability: those encoding proteins involved in translational control and those encoding proteins involved in synaptic function. We hypothesize that mutations occurring in these two clusters of genes interfere with interconnected downstream signaling pathways in neuronal cells to cause ASD symptomatology. In this review, we discuss the monogenic forms of ASD caused by mutations in genes encoding for proteins that regulate translation and synaptic function. Specifically, we describe the function of these proteins, the intracellular signaling pathways that they regulate, and the current mouse models used to characterize the synaptic and behavioral features associated with their mutation. Finally, we summarize recent studies that have established a connection between mRNA translation and synaptic function in models of ASD and propose that dysregulation of one has a detrimental impact on the other."	"Efficient strategy for the molecular diagnosis of intellectual disability using targeted high-throughput sequencing. Intellectual disability (ID) is characterised by an extreme genetic heterogeneity. Several hundred genes have been associated to monogenic forms of ID, considerably complicating molecular diagnostics. Trio-exome sequencing was recently proposed as a diagnostic approach, yet remains costly for a general implementation. We report the alternative strategy of targeted high-throughput sequencing of 217 genes in which mutations had been reported in patients with ID or autism as the major clinical concern. We analysed 106 patients with ID of unknown aetiology following array-CGH analysis and other genetic investigations. Ninety per cent of these patients were males, and 75% sporadic cases. We identified 26 causative mutations: 16 in X-linked genes (ATRX, CUL4B, DMD, FMR1, HCFC1, IL1RAPL1, IQSEC2, KDM5C, MAOA, MECP2, SLC9A6, SLC16A2, PHF8) and 10 de novo in autosomal-dominant genes (DYRK1A, GRIN1, MED13L, TCF4, RAI1, SHANK3, SLC2A1, SYNGAP1). We also detected four possibly causative mutations (eg, in NLGN3) requiring further investigations. We present detailed reasoning for assigning causality for each mutation, and associated patients' clinical information. Some genes were hit more than once in our cohort, suggesting they correspond to more frequent ID-associated conditions (KDM5C, MECP2, DYRK1A, TCF4). We highlight some unexpected genotype to phenotype correlations, with causative mutations being identified in genes associated to defined syndromes in patients deviating from the classic phenotype (DMD, TCF4, MECP2). We also bring additional supportive (HCFC1, MED13L) or unsupportive (SHROOM4, SRPX2) evidences for the implication of previous candidate genes or mutations in cognitive disorders. With a diagnostic yield of 25% targeted sequencing appears relevant as a first intention test for the diagnosis of ID, but importantly will also contribute to a better understanding regarding the specific contribution of the many genes implicated in ID and autism."	"Whole-exome sequencing broadens the phenotypic spectrum of rare pediatric epilepsy: a retrospective study. Whole-exome sequencing (WES) has transformed our ability to detect mutations causing rare diseases. FORGE (Finding Of Rare disease GEnes) and Care4Rare Canada are nation-wide projects focused on identifying disease genes using WES and translating this technology to patient care. Rare forms of epilepsy are well-suited for WES and we retrospectively selected FORGE and Care4Rare families with clinical descriptions that included childhood-onset epilepsy or seizures not part of a recognizable syndrome or an early-onset encephalopathy where standard-of-care investigations were unrevealing. Nine families met these criteria and a diagnosis was made in seven, and potentially eight, of the families. In the eight families we identified mutations in genes associated with known neurological and epilepsy disorders: ASAH1, FOLR1, GRIN2A (two families), SCN8A, SYNGAP1 and SYNJ1. A novel and rare mutation was identified in KCNQ2 and was likely responsible for the benign seizures segregating in the family though additional evidence would be required to be definitive. In retrospect, the clinical presentation of four of the patients was considered atypical, thereby broadening the phenotypic spectrum of these conditions. Given the extensive clinical and genetic heterogeneity associated with epilepsy, our findings suggest that WES may be considered when a specific gene is not immediately suspected as causal. "	"Copy number variable microRNAs in schizophrenia and their neurodevelopmental gene targets. MicroRNAs (miRNAs) are key regulators of gene expression in the human genome and may contribute to risk for neuropsychiatric disorders. miRNAs play an acknowledged role in the strongest of genetic risk factors for schizophrenia, 22q11.2 deletions. We hypothesized that in schizophrenia there would be an enrichment of other rare copy number variants (CNVs) that overlap miRNAs. Using high-resolution genome-wide microarrays and rigorous methods, we compared the miRNA content of rare CNVs in well-characterized cohorts of schizophrenia cases (n = 420) and comparison subjects, excluding 22q11.2 CNVs. We also performed a gene-set enrichment analysis of the predicted miRNA target genes. The schizophrenia group was enriched for the proportion of individuals with a rare CNV overlapping a miRNA (3.29-fold increase over comparison subjects, p &lt; .0001). The presence of a rare CNV overlapping a miRNA remained a significant predictor of schizophrenia case status (p = .0072) in a multivariate logistic regression model correcting for total CNV size. In contrast, comparable analyses correcting for CNV size showed no enrichment of rare CNVs overlapping protein-coding genes. A gene-set enrichment analysis indicated that predicted target genes of recurrent CNV-overlapped miRNAs in schizophrenia may be functionally enriched for neurodevelopmental processes, including axonogenesis and neuron projection development. Predicted gene targets driving these results included CAPRIN1, NEDD4, NTRK2, PAK2, RHOA, and SYNGAP1. These data are the first to demonstrate a genome-wide role for CNVs overlapping miRNAs in the genetic risk for schizophrenia. The results provide support for an expanded multihit model of causation, with potential implications for miRNA-based therapeutics."	"Reduced cognition in Syngap1 mutants is caused by isolated damage within developing forebrain excitatory neurons. Syngap1 haploinsufficiency is a common cause of sporadic intellectual disability. Syngap1 mutations disrupt developing pyramidal neurons, although it remains unclear if this process contributes to cognitive abnormalities. Here, we found that haploinsufficiency restricted to forebrain glutamatergic neurons was sufficient to disrupt cognition and removing mutations from this population prevented cognitive abnormalities. In contrast, manipulating Syngap1 function in GABAergic neurons had no effect on cognition, excitability, or neurotransmission, highlighting the specificity of Syngap1 mutations within forebrain excitatory neurons. Interestingly, cognitive abnormalities were reliably predicted by the emergence of enhanced excitatory synaptic function in mature superficial cortical pyramidal cells, which was a neurophysiological disruption caused by Syngap1 dysfunction in developing, but not adult, forebrain neurons. We conclude that reduced cognition in Syngap1 mutants is caused by isolated damage to developing forebrain glutamatergic neurons. This damage triggers secondary disruptions to synaptic homeostasis in mature cortical pyramidal cells, which perpetuates brain dysfunction into adulthood."	"Efficacy of lovastatin on learning and memory deficits caused by chronic intermittent hypoxia-hypercapnia: through regulation of NR2B-containing NMDA receptor-ERK pathway. Chronic intermittent hypoxia-hypercapnia (CIHH) exposure leads to learnning and memory deficits in rats. Overactivation of N-methyl-D-aspartate receptors(NMDARs) can lead to the death of neurons through a process termed excitotoxicity, which is involved in CIHH-induced cognitive deficits. Excessively activated NR2B (GluN2B)-containing NMDARs was reported as the main cause of excitotoxicity. The ERK1/2 (extracellular signal-regulated kinase 1/2) signaling cascade acts as a key component in NMDARs-dependent neuronal plasticity and survival. Ca2+/calmodulin-dependent protein kinase II (CaMKII), synapse-associated protein 102 (SAP102) and Ras GTPase-activating protein (SynGAP) have been shown to be involved in the regulation of NMDAR-ERK signalling cascade. Recent studies revealed statins (the HMG-CoA reductase inhibitor) have effect on the expression of NMDARs. The present study intends to explore the potential effect of lovastatin on CIHH-induced cognitive deficits and the NR2B-ERK signaling pathway. Eighty male Sprague Dawley rats were randomly divided into five groups. Except for those in the control group, the rats were exposed to chronic intermittent hypoxia-hypercapnia (CIHH) (9 ∼ 11%O2, 5.5 ∼ 6.5%CO2) for 4 weeks. After lovastatin administration, the rats performed better in the Morris water maze test. Electron microscopy showed alleviated hippocampal neuronal synaptic damage. Further observation suggested that either lovastatin or ifenprodil (a selective NR2B antagonist) administration similarly downregulated NR2B subunit expression leading to a suppression of CaMKII/SAP102/SynGAP signaling cascade, which in turn enhanced the phosphorylation of ERK1/2. The phosphorylated ERK1/2 induced signaling cascade involving cAMP-response element-binding protein (CREB) phosphorylation and brain-derived neurotrophic factor (BDNF) activation, which is responsible for neuroprotection. These findings suggest that the ameliorative cognitive deficits caused by lovastatin are due to the downregulation of excessive NR2B expression accompanied by increased expression of ERK signaling cascade. The effect of NR2B in upregulating pERK1/2 maybe due, at least in part, to inactivation of CaMKII/SAP102/SynGAP signaling cascade."	"SynGAP regulates protein synthesis and homeostatic synaptic plasticity in developing cortical networks. Disrupting the balance between excitatory and inhibitory neurotransmission in the developing brain has been causally linked with intellectual disability (ID) and autism spectrum disorders (ASD). Excitatory synapse strength is regulated in the central nervous system by controlling the number of postsynaptic α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptors (AMPARs). De novo genetic mutations of the synaptic GTPase-activating protein (SynGAP) are associated with ID and ASD. SynGAP is enriched at excitatory synapses and genetic suppression of SynGAP increases excitatory synaptic strength. However, exactly how SynGAP acts to maintain synaptic AMPAR content is unclear. We show here that SynGAP limits excitatory synaptic strength, in part, by suppressing protein synthesis in cortical neurons. The data presented here from in vitro, rat and mouse cortical networks, demonstrate that regulation of translation by SynGAP involves ERK, mTOR, and the small GTP-binding protein Rheb. Furthermore, these data show that GluN2B-containing NMDARs and the cognitive kinase CaMKII act upstream of SynGAP and that this signaling cascade is required for proper translation-dependent homeostatic synaptic plasticity of excitatory synapses in developing cortical networks. "	"Expression of non-protein-coding antisense RNAs in genomic regions related to autism spectrum disorders. Autism spectrum disorders (ASD) manifest with neurodevelopmental phenotypes including communicative, social and behavioral impairments that affect as many as 1 in 88 children. The majority of autism cases have no known genetic cause, suggesting complex genetics of the disorder, but a few genes of large effect have been identified. In order to identify novel ASD genetic correlates, we investigated non-protein coding RNAs (ncRNAs) which are abundantly transcribed from the human genome, enriched in the brain, and have been implicated in neurodevelopmental disorders. Using an algorithm that we developed, we examined a publicly available transcriptomics database, AceView, to identify the natural antisense transcripts (NATs) that overlap with known autism-related genes. We validated the presence and differential expression of NATs in different brain regions of ASD and control brains using qRT-PCR. Additionally, we investigated the subcellular localization of these transcripts in a neuronal cell line using RNA-sequencing (RNA-seq). We found noncoding antisense RNA transcripts at approximately 40% of loci previously implicated in ASD. We confirmed the expression of 10 antisense RNAs in different postmortem human brain tissues. The expression of five antisense transcripts was found to be region-specific, suggesting a role for these ncRNAs in the development and function of specific brain regions. Some antisense RNAs overlapping suspected ASD genes exhibited concordant expression relative to their sense protein-coding genes, while other sense-antisense pairs demonstrate a discordant relationship. Interestingly, the antisense RNA corresponding to the SYNGAP1 locus (SYNGAP1-AS) was found to be differentially expressed in brain regions of patients with ASD compared to control individuals. RNA-seq analysis of subcellular compartments from SH-SY5Y human neuroblastoma cells demonstrated that antisense RNAs to ASD candidate genes are predominantly expressed in the nucleoplasmic or chromatin compartments, implying their involvement in nuclear-associated processes. Our data suggests that NATs are abundantly expressed from ASD-related loci and provide evidence for their roles in target gene regulation, neurodevelopment and autism pathogenesis. This class of RNA should therefore be considered in functional studies aimed at understanding genetic risk factors for ASD."	"Camkii-mediated phosphorylation regulates distributions of Syngap-α1 and -α2 at the postsynaptic density. SynGAP, a protein abundant at the postsynaptic density (PSD) of glutamatergic neurons, is known to modulate synaptic strength by regulating the incorporation of AMPA receptors at the synapse. Two isoforms of SynGAP, α1 and α2, which differ in their C-termini, have opposing effects on synaptic strength. In the present study, antibodies specific for SynGAP-α1 and SynGAP-α2 are used to compare the distribution patterns of the two isoforms at the postsynaptic density (PSD) under basal and excitatory conditions. Western immunoblotting shows enrichment of both isoforms in PSD fractions isolated from adult rat brain. Immunogold electron microscopy of rat hippocampal neuronal cultures shows similar distribution of both isoforms at the PSD, with a high density of immunolabel within the PSD core under basal conditions. Application of NMDA promotes movement of SynGAP-α1 as well as SynGAP-α2 out of the PSD core. In isolated PSDs both isoforms of SynGAP can be phosphorylated upon activation of the endogenous CaMKII. Application of tatCN21, a cell-penetrating inhibitor of CaMKII, to hippocampal neuronal cultures blocks NMDA-induced redistribution of SynGAP-α1 and SynGAP-α2. Thus CaMKII activation promotes the removal of two distinct C-terminal SynGAP variants from the PSD. "	"SYNGAP1 links the maturation rate of excitatory synapses to the duration of critical-period synaptic plasticity. Critical periods of developmental plasticity contribute to the refinement of neural connections that broadly shape brain development. These windows of plasticity are thought to be important for the maturation of perception, language, and cognition. Synaptic properties in cortical regions that underlie critical periods influence the onset and duration of windows, although it remains unclear how mechanisms that shape synapse development alter critical-period properties. In this study, we demonstrate that inactivation of a single copy of syngap1, which causes a surprisingly common form of sporadic, non-syndromic intellectual disability with autism in humans, induced widespread early functional maturation of excitatory connections in the mouse neocortex. This accelerated functional maturation was observed across distinct areas and layers of neocortex and directly influenced the duration of a critical-period synaptic plasticity associated with experience-dependent refinement of cortical maps. These studies support the idea that genetic control over synapse maturation influences the duration of critical-period plasticity windows. These data also suggest that critical-period duration links synapse maturation rates to the development of intellectual ability."	"Epilepsy associated with autism and attention deficit hyperactivity disorder: is there a genetic link? Autism Spectrum Disorders (ASDs) and Attention Deficit and Hyperactivity Disorder (ADHD) are the most common comorbid conditions associated with childhood epilepsy. The co-occurrence of an epilepsy/autism phenotype or an epilepsy/ADHD phenotype has a complex and heterogeneous pathogenesis, resulting from several altered neurobiological mechanisms involved in early brain development, and influencing synaptic plasticity, neurotransmission and functional connectivity. Rare clinically relevant chromosomal aberrations, in addition to environmental factors, may confer an increased risk for ASDs/ADHD comorbid with epilepsy. The majority of the candidate genes are involved in synaptic formation/remodeling/maintenance (NRX1, CNTN4, DCLK2, CNTNAP2, TRIM32, ASTN2, CTNTN5, SYN1), neurotransmission (SYNGAP1, GABRG1, CHRNA7), or DNA methylation/chromatin remodeling (MBD5). Two genetic disorders, such as Tuberous sclerosis and Fragile X syndrome may serve as models for understanding the common pathogenic pathways leading to ASDs and ADHD comorbidities in children with epilepsy, offering the potential for new biologically focused treatment options. "	"Targeted resequencing in epileptic encephalopathies identifies de novo mutations in CHD2 and SYNGAP1. Epileptic encephalopathies are a devastating group of epilepsies with poor prognosis, of which the majority are of unknown etiology. We perform targeted massively parallel resequencing of 19 known and 46 candidate genes for epileptic encephalopathy in 500 affected individuals (cases) to identify new genes involved and to investigate the phenotypic spectrum associated with mutations in known genes. Overall, we identified pathogenic mutations in 10% of our cohort. Six of the 46 candidate genes had 1 or more pathogenic variants, collectively accounting for 3% of our cohort. We show that de novo CHD2 and SYNGAP1 mutations are new causes of epileptic encephalopathies, accounting for 1.2% and 1% of cases, respectively. We also expand the phenotypic spectra explained by SCN1A, SCN2A and SCN8A mutations. To our knowledge, this is the largest cohort of cases with epileptic encephalopathies to undergo targeted resequencing. Implementation of this rapid and efficient method will change diagnosis and understanding of the molecular etiologies of these disorders. "	"6p21.3 microdeletion involving the SYNGAP1 gene in a patient with intellectual disability, seizures, and severe speech impairment. The chromosome 6p21.3 microdeletion phenotype was recently identified through array comparative genomic hybridization. The main features are developmental delay with severe speech impairment, seizures, and behavioral abnormalities. Three patients have been reported with deletion sizes ranging from 100 to 800 kb. We report on a 9-year-old boy with an apparently de novo, 50 kb deletion, and global developmental delay, severe speech impairment, and generalized epilepsy well-controlled by medication. There were four genes identified in this deletion, of which SYNGAP1 is considered to be responsible for speech impairment and epilepsy. We compared the clinical features of this patient with previously reported patients with 6p21.3 and patients with SYNGAP1 mutations. © 2013 Wiley Periodicals, Inc."	"Nonredundant functions for Ras GTPase-activating proteins in tissue homeostasis. Inactivation of the small guanosine triphosphate-binding protein Ras during receptor signal transduction is mediated by Ras guanosine triphosphatase (GTPase)-activating proteins (RasGAPs). Ten different RasGAPs have been identified and have overlapping patterns of tissue distribution. However, genetic analyses are revealing critical nonredundant functions for each RasGAP in tissue homeostasis and as regulators of disease processes in mouse and man. Here, we discuss advances in understanding the role of RasGAPs in the maintenance of tissue integrity."	"In vivo quantitative proteomics of somatosensory cortical synapses shows which protein levels are modulated by sensory deprivation. Postnatal bilateral whisker trimming was used as a model system to test how synaptic proteomes are altered in barrel cortex by sensory deprivation during synaptogenesis. Using quantitative mass spectrometry, we quantified more than 7,000 synaptic proteins and identified 89 significantly reduced and 161 significantly elevated proteins in sensory-deprived synapses, 22 of which were validated by immunoblotting. More than 95% of quantified proteins, including abundant synaptic proteins such as PSD-95 and gephyrin, exhibited no significant difference under high- and low-activity rearing conditions, suggesting no tissue-wide changes in excitatory or inhibitory synaptic density. In contrast, several proteins that promote mature spine morphology and synaptic strength, such as excitatory glutamate receptors and known accessory factors, were reduced significantly in deprived synapses. Immunohistochemistry revealed that the reduction in SynGAP1, a postsynaptic scaffolding protein, was restricted largely to layer I of barrel cortex in sensory-deprived rats. In addition, protein-degradation machinery such as proteasome subunits, E2 ligases, and E3 ligases, accumulated significantly in deprived synapses, suggesting targeted synaptic protein degradation under sensory deprivation. Importantly, this screen identified synaptic proteins whose levels were affected by sensory deprivation but whose synaptic roles have not yet been characterized in mammalian neurons. These data demonstrate the feasibility of defining synaptic proteomes under different sensory rearing conditions and could be applied to elucidate further molecular mechanisms of sensory development."	"Mutations in SYNGAP1 cause intellectual disability, autism, and a specific form of epilepsy by inducing haploinsufficiency. De novo mutations in SYNGAP1, which codes for a RAS/RAP GTP-activating protein, cause nonsyndromic intellectual disability (NSID). All disease-causing point mutations identified until now in SYNGAP1 are truncating, raising the possibility of an association between this type of mutations and NSID. Here, we report the identification of the first pathogenic missense mutations (c.1084T&gt;C [p.W362R], c.1685C&gt;T [p.P562L]) and three novel truncating mutations (c.283dupC [p.H95PfsX5], c.2212_2213del [p.S738X], and (c.2184del [p.N729TfsX31]) in SYNGAP1 in patients with NSID. A subset of these patients also showed ataxia, autism, and a specific form of generalized epilepsy that can be refractory to treatment. All of these mutations occurred de novo, except c.283dupC, which was inherited from a father who is a mosaic. Biolistic transfection of wild-type SYNGAP1 in pyramidal cells from cortical organotypic cultures significantly reduced activity-dependent phosphorylated extracellular signal-regulated kinase (pERK) levels. In contrast, constructs expressing p.W362R, p.P562L, or the previously described p.R579X had no significant effect on pERK levels. These experiments suggest that the de novo missense mutations, p.R579X, and possibly all the other truncating mutations in SYNGAP1 result in a loss of its function. Moreover, our study confirms the involvement of SYNGAP1 in autism while providing novel insight into the epileptic manifestations associated with its disruption."	"Pathogenic SYNGAP1 mutations impair cognitive development by disrupting maturation of dendritic spine synapses. Mutations that cause intellectual disability (ID) and autism spectrum disorder (ASD) are commonly found in genes that encode for synaptic proteins. However, it remains unclear how mutations that disrupt synapse function impact intellectual ability. In the SYNGAP1 mouse model of ID/ASD, we found that dendritic spine synapses develop prematurely during the early postnatal period. Premature spine maturation dramatically enhanced excitability in the developing hippocampus, which corresponded with the emergence of behavioral abnormalities. Inducing SYNGAP1 mutations after critical developmental windows closed had minimal impact on spine synapse function, whereas repairing these pathogenic mutations in adulthood did not improve behavior and cognition. These data demonstrate that SynGAP protein acts as a critical developmental repressor of neural excitability that promotes the development of life-long cognitive abilities. We propose that the pace of dendritic spine synapse maturation in early life is a critical determinant of normal intellectual development."	"Range of genetic mutations associated with severe non-syndromic sporadic intellectual disability: an exome sequencing study. The genetic cause of intellectual disability in most patients is unclear because of the absence of morphological clues, information about the position of such genes, and suitable screening methods. Our aim was to identify de-novo variants in individuals with sporadic non-syndromic intellectual disability. In this study, we enrolled children with intellectual disability and their parents from ten centres in Germany and Switzerland. We compared exome sequences between patients and their parents to identify de-novo variants. 20 children and their parents from the KORA Augsburg Diabetes Family Study were investigated as controls. We enrolled 51 participants from the German Mental Retardation Network. 45 (88%) participants in the case group and 14 (70%) in the control group had de-novo variants. We identified 87 de-novo variants in the case group, with an exomic mutation rate of 1·71 per individual per generation. In the control group we identified 24 de-novo variants, which is 1·2 events per individual per generation. More participants in the case group had loss-of-function variants than in the control group (20/51 vs 2/20; p=0·022), suggesting their contribution to disease development. 16 patients carried de-novo variants in known intellectual disability genes with three recurrently mutated genes (STXBP1, SYNGAP1, and SCN2A). We deemed at least six loss-of-function mutations in six novel genes to be disease causing. We also identified several missense alterations with potential pathogenicity. After exclusion of copy-number variants, de-novo point mutations and small indels are associated with severe, sporadic non-syndromic intellectual disability, accounting for 45-55% of patients with high locus heterogeneity. Autosomal recessive inheritance seems to contribute little in the outbred population investigated. The large number of de-novo variants in known intellectual disability genes is only partially attributable to known non-specific phenotypes. Several patients did not meet the expected syndromic manifestation, suggesting a strong bias in present clinical syndrome descriptions. German Ministry of Education and Research, European Commission 7th Framework Program, and Swiss National Science Foundation."	"Potential opposite roles of the extracellular signal-regulated kinase (ERK) pathway in autism spectrum and bipolar disorders. Signal transduction from the synapse to the nucleus subsequently involves transient increases in synaptic Ca2+, activation of CaM kinases, activation of the GTPase Ras, activation of the ERK mitogen-activated protein kinase pathway, and finally GSK3 inhibition and CREB-activation. Genetic studies in autism have identified mutations and copy number variations in a number of genes involved in this synapse to nucleus signaling path. In particular, a gain of function mutation in the CACNA1C gene, deletions and disruption of the SYNGAP1 gene, a copy number variation encompassing the MAPK3 gene and a duplication of YWHAE indicate that in a subset of autism patients the ERK cascade is inappropriately activated. Predicted functional consequences of this hyperactivation would be an increase in complexity of the dendritic tree, and via inhibition of GSK3, a delayed circadian phase. The latter effect indeed fits the frequent sleep disturbances observed in autistic patients. Interestingly, the sleep disturbances in bipolar disorder patients are frequently characterized as phase advanced. A selective evaluation of genetic mutations in bipolar patients indicates that the activity of the ERK cascade, at least in a subset of patients, presumably is hypoactive. Thus, with respect to the ERK pathway, autism and bipolar disorder seem each other's counter pole."	"Molecular and behavioral changes associated with adult hippocampus-specific SynGAP1 knockout. The synaptic Ras/Rap-GTPase-activating protein (SynGAP1) plays a unique role in regulating specific downstream intracellular events in response to N-methyl-D-aspartate receptor (NMDAR) activation. Constitutive heterozygous loss of SynGAP1 disrupts NMDAR-mediated physiological and behavioral processes, but the disruptions might be of developmental origin. Therefore, the precise role of SynGAP1 in the adult brain, including its relative functional significance within specific brain regions, remains unexplored. The present study constitutes the first attempt in achieving adult hippocampal-specific SynGAP1 knockout using the Cre/loxP approach. Here, we report that this manipulation led to a significant numerical increase in both small and large GluA1 and NR1 immunoreactive clusters, many of which were non-opposed to presynaptic terminals. In parallel, the observed marked decline in the amplitude of spontaneous excitatory currents (sEPSCs) and inter-event intervals supported the impression that SynGAP1 loss might facilitate the accumulation of extrasynaptic glutamatergic receptors. In addition, SynGAP1-mediated signaling appears to be critical for the proper integration and survival of newborn neurons. The manipulation impaired reversal learning in the probe test of the water maze and induced a delay-dependent impairment in spatial recognition memory. It did not significantly affect anxiety or reference memory acquisition but induced a substantial elevation in spontaneous locomotor activity in the open field test. Thus, the present study demonstrates the functional significance of SynGAP1 signaling in the adult brain by capturing several changes that are dependent on NMDAR and hippocampal integrity."	"SynGAP isoforms exert opposing effects on synaptic strength. Alternative promoter usage and alternative splicing enable diversification of the transcriptome. Here we demonstrate that the function of Synaptic GTPase-Activating Protein (SynGAP), a key synaptic protein, is determined by the combination of its amino-terminal sequence with its carboxy-terminal sequence. 5' rapid amplification of cDNA ends and primer extension show that different N-terminal protein sequences arise through alternative promoter usage that are regulated by synaptic activity and postnatal age. Heterogeneity in C-terminal protein sequence arises through alternative splicing. Overexpression of SynGAP α1 versus α2 C-termini-containing proteins in hippocampal neurons has opposing effects on synaptic strength, decreasing and increasing miniature excitatory synaptic currents amplitude/frequency, respectively. The magnitude of this C-terminal-dependent effect is modulated by the N-terminal peptide sequence. This is the first demonstration that activity-dependent alternative promoter usage can change the function of a synaptic protein at excitatory synapses. Furthermore, the direction and degree of synaptic modulation exerted by different protein isoforms from a single gene locus is dependent on the combination of differential promoter usage and alternative splicing."	"Arsenite exposure altered the expression of NMDA receptor and postsynaptic signaling proteins in rat hippocampus. Chronic arsenic exposure has an adverse effect on neurobehavioral function. Our previous study demonstrated an elevated arsenic level, ultra-structure changes and reduced NR2A gene expression in hippocampus, and impaired spatial learning in arsenite-exposed rats. The NMDA receptor and the postsynaptic signaling proteins CaMKII, postsynaptic density protein 95 (PSD-95), synaptic Ras GTPase-activating protein (SynGAP) and nuclear activated extracellular-signal regulated kinase (ERK1/2) play important roles in synaptic plasticity, learning and memory. We hypothesized that the above molecular expression changes may contribute to arsenic neurotoxicity. In present study, the expression of NMDA receptor and postsynaptic signaling proteins in hippocampus were evaluated in rats exposed to 0, 2.72, 13.6 and 68 mg/L sodium arsenite for 3 months. Decreased protein expression of NR2A, PSD-95 and p-CaMKII α in the hippocampus of arsenite-exposed rats was observed, while the expression of SynGAP, a negative regulator of Ras-MAPK activity, was increased when compared with the controls. Additionally, decreased p-ERK1/2 activity was found in the hippocampus of arsenite-exposed rats. These data suggest that altered expression of NMDA receptor complex and postsynaptic signaling proteins may explain arsenic-induced neurotoxicity."	"Haploinsufficiency of ARID1B, a member of the SWI/SNF-a chromatin-remodeling complex, is a frequent cause of intellectual disability. Intellectual disability (ID) is a clinically and genetically heterogeneous common condition that remains etiologically unresolved in the majority of cases. Although several hundred diseased genes have been identified in X-linked, autosomal-recessive, or syndromic types of ID, the establishment of an etiological basis remains a difficult task in unspecific, sporadic cases. Just recently, de novo mutations in SYNGAP1, STXBP1, MEF2C, and GRIN2B were reported as relatively common causes of ID in such individuals. On the basis of a patient with severe ID and a 2.5 Mb microdeletion including ARID1B in chromosomal region 6q25, we performed mutational analysis in 887 unselected patients with unexplained ID. In this cohort, we found eight (0.9%) additional de novo nonsense or frameshift mutations predicted to cause haploinsufficiency. Our findings indicate that haploinsufficiency of ARID1B, a member of the SWI/SNF-A chromatin-remodeling complex, is a common cause of ID, and they add to the growing evidence that chromatin-remodeling defects are an important contributor to neurodevelopmental disorders."	"A balanced translocation disrupts SYNGAP1 in a patient with intellectual disability, speech impairment, and epilepsy with myoclonic absences (EMA). Epilepsy with myoclonic absences (EMA) is a rare form of generalized epilepsy occurring in childhood and is often difficult to treat. The underlying etiology of EMA is unknown in the majority of patients. Herein, we describe a patient with EMA and intellectual disability who carries a de novo balanced translocation: t(6;22)(p21.32;q11.21). We mapped the translocation breakpoints by fluorescence in situ hybridization (FISH), and the breakpoint at 6p21.32 was found to truncate the N-methyl-d-aspartate (NMDA)-receptor associated gene SYNGAP1. The breakpoint at 22q11.21 was within a highly variable region without known protein-coding genes. Mutations of SYNGAP1 are associated with nonsyndromal intellectual disability (NSID). Two-thirds of the patients described so far also have generalized epilepsy. This finding, together with our report, suggests that dysfunction of SYNGAP1 contributes to the development of generalized epilepsy, including EMA."	"SynGAP moves out of the core of the postsynaptic density upon depolarization. SynGAP is a Ras GTPase activating protein present at the postsynaptic density (PSD) in quantities matching those of the core scaffold protein PSD-95. SynGAP is reported to inhibit synaptic accumulation of AMPA receptors. Here, we characterize by immunogold electron microscopy the distribution of SynGAP at the PSD under basal and depolarizing conditions in rat hippocampal neuronal cultures. The PSD core, extending up to 40 nm from the postsynaptic membrane, typically shows label for SynGAP, while half of the synapses exhibit additional labeling in a zone 40-120 nm from the postsynaptic membrane. Upon depolarization with high K(+), labeling for SynGAP significantly decreases at the core of the PSD and concomitantly increases at the 40-120 nm zone. Under the same depolarization conditions, label for PSD-95, the presumed binding partner of SynGAP, does not change its localization at the PSD. Depolarization-induced redistribution of SynGAP is reversible and also occurs upon application of N-methyl-d-aspartic acid (NMDA). Activity-induced movement of SynGAP could vacate sites in the PSD core allowing other elements to bind to these sites, such as transmembrane AMPA receptor regulatory proteins (TARPs), and simultaneously facilitate access of SynGAP to CaMKII and Ras, elements of a regulatory cascade."	"Glutamatergic gene expression is specifically reduced in thalamocortical projecting relay neurons in schizophrenia. Impairment of glutamate neurons that relay sensory and cognitive information from the medial dorsal thalamus to the dorsolateral prefrontal cortex and other cortical regions may contribute to the pathophysiology of schizophrenia. In this study, we have assessed the cell-specific expression of glutamatergic transcripts in the medial dorsal thalamus. We used laser capture microdissection to harvest two populations of medial dorsal thalamic cells, one enriched with glutamatergic relay neurons and the other with gamma-aminobutyric acidergic neurons and astroglia, from postmortem brains of subjects with schizophrenia (n = 14) and a comparison group (n = 20). Quantitative polymerase chain reaction of extracted RNA was used to assay gene expression in the different cell populations. The transcripts encoding the ionotropic glutamate receptor subunits NR2D, GluR3, GluR6, GluR7, and the intracellular proteins GRIP1 and SynGAP1 were significantly decreased in relay neurons but not in the mixed glial and interneuron population in schizophrenia. Our data suggest that reduced ionotropic glutamatergic expression occurs selectively in neurons, which give rise to the cortical projections of the medial dorsal thalamus in schizophrenia, rather than in thalamic cells that function locally. Our findings indicate that glutamatergic innervation is dysfunctional in the circuitry between the medial dorsal thalamus and cortex."	"Reduced expression of SynGAP, a neuronal GTPase-activating protein, enhances capsaicin-induced peripheral sensitization. Synaptic GTPase-activating protein (SynGAP) is a neuronal-specific Ras/Rap-GAP that increases the hydrolysis rate of GTP to GDP, converting Ras/Rap from the active into the inactive form. The Ras protein family modulates a wide range of cellular pathways including those involved in sensitization of sensory neurons. Since GAPs regulate Ras activity, SynGAP might be an important regulator of peripheral sensitization and pain. Therefore, we evaluated excitability, stimulus-evoked release of the neuropeptide calcitonin gene-related peptide (CGRP), and nociception from wild-type (WT) mice and those with a heterozygous mutation of the SynGAP gene (SynGAP(+/-)). Our results demonstrate that SynGAP is expressed in primary afferent sensory neurons and that the capsaicin-stimulated CGRP release from spinal cord slices was two-fold higher from SynGAP(+/-) mice than that observed from WT mouse tissue, consistent with an increase in expression of the capsaicin receptor, transient receptor potential cation channel subfamily V member 1 (TRPV1), in SynGAP(+/-) dorsal root ganglia. However, there was no difference between the two genotypes in potassium-stimulated release of CGRP, the number of action potentials generated by a ramp of depolarizing current, or mechanical hypernociception elicited by intraplantar injection of capsaicin. In contrast, capsaicin-induced thermal hypernociception occurred at lower doses of capsaicin and had a longer duration in SynGAP(+/-) mice than WT mice. These results provide the first evidence that SynGAP is an important regulator of neuropeptide release from primary sensory neurons and can modulate capsaicin-induced hypernociception, demonstrating the importance of GAP regulation in signaling pathways that play a role in peripheral sensitization."	"De novo autosomal dominant mutation in SYNGAP1. NA"	"Excess of de novo deleterious mutations in genes associated with glutamatergic systems in nonsyndromic intellectual disability. Little is known about the genetics of nonsyndromic intellectual disability (NSID). We hypothesized that de novo mutations (DNMs) in synaptic genes explain an important fraction of sporadic NSID cases. In order to investigate this possibility, we sequenced 197 genes encoding glutamate receptors and a large subset of their known interacting proteins in 95 sporadic cases of NSID. We found 11 DNMs, including ten potentially deleterious mutations (three nonsense, two splicing, one frameshift, four missense) and one neutral mutation (silent) in eight different genes. Calculation of point-substitution DNM rates per functional and neutral site showed significant excess of functional DNMs compared to neutral ones. De novo truncating and/or splicing mutations in SYNGAP1, STXBP1, and SHANK3 were found in six patients and are likely to be pathogenic. De novo missense mutations were found in KIF1A, GRIN1, CACNG2, and EPB41L1. Functional studies showed that all these missense mutations affect protein function in cell culture systems, suggesting that they may be pathogenic. Sequencing these four genes in 50 additional sporadic cases of NSID identified a second DNM in GRIN1 (c.1679_1681dup/p.Ser560dup). This mutation also affects protein function, consistent with structural predictions. None of these mutations or any other DNMs were identified in these genes in 285 healthy controls. This study highlights the importance of the glutamate receptor complexes in NSID and further supports the role of DNMs in this disorder."	"De novo SYNGAP1 mutations in nonsyndromic intellectual disability and autism. Little is known about the genetics of nonsyndromic intellectual disability (NSID). Recently, we reported de novo truncating mutations in the SYNGAP1 gene of 3 of 94 NSID cases, suggesting that its disruption represents a common cause of autosomal dominant NSID. To further explore the involvement of SYNGAP1 in NSID, we sequenced its exons and intronic boundaries in 60 additional sporadic cases of NSID, including 30 patients with autism spectrum disorders (ASD) and 9 with epilepsy, and in 380 control individuals. We identified de novo out-of-frame deletions in two patients with NSID and mild generalized epilepsy (c.2677delC/p.Q893RfsX184 and c.321_324delGAAG/p. K108VfsX25) and a de novo splicing mutation (c.2294 + 1G&gt;A), which results in the creation of a premature stop codon, in a patient with NSID and autism. No splicing or truncating mutations were found in control subjects. We provide evidence that truncating mutations in SYNGAP1 are common in NSID and can be also associated with autism."	"Integrated analysis of clinical signs and literature data for the diagnosis and therapy of a previously undescribed 6p21.3 deletion syndrome. A de novo 0.3 Mb deletion on 6p21.3 was detected by array-comparative genomic hybridization in a girl with mental retardation, drug-resistant seizures, facial dysmorphisms, gut malrotation and abnormal pancreas segmentation. Consistent with phenotypic manifestations is haploinsufficiency of SYNGAP1, which was recently demonstrated to cause non-syndromic mental retardation, and of the flanking genes CuTA, a likely modulator of the processing and trafficking of secretory proteins in the human brain, and hPHF1, involved in HOX gene silencing. Mutations of both CuTA and hPHF1 were never reported as causative of human diseases. Similarly, the present syndromic condition was not previously described and it can be regarded as a human model confirming the suggested biological properties of the genes included in the deletion interval. In addition, experimental evidence that SYNGAP1 and CuTA are involved in the secretory pathway in neurons, through glutamate and acetylcholinesterase signalling, prompted us to consider modulation of the glutamate pathway as target of a therapeutic strategy for seizure control."	"Inactivation of Ras GTPase-activating proteins promotes unrestrained activity of wild-type Ras in human liver cancer. Aberrant activation of the RAS pathway is ubiquitous in human hepatocarcinogenesis, but the molecular mechanisms leading to RAS induction in the absence of RAS mutations remain under-investigated. We defined the role of Ras GTPase activating proteins (GAPs) in the constitutive activity of Ras signaling during human hepatocarcinogenesis. The mutation status of RAS genes and RAS effectors was assessed in a collection of human hepatocellular carcinomas (HCC). Levels of RAS GAPs (RASA1-4, RASAL1, nGAP, SYNGAP1, DAB2IP, and NF1) and the RASAL1 upstream inducer PITX1 were determined by real-time RT-PCR and immunoblotting. The promoter and genomic status of RASAL1, DAB2IP, NF1, and PITX1 were assessed by methylation assays and microsatellite analysis. Effects of RASAL1, DAB2IP, and PITX1 on HCC growth were evaluated by transfection and siRNA analyses of HCC cell lines. In the absence of Ras mutations, downregulation of at least one RAS GAP (RASAL1, DAB2IP, or NF1) was found in all HCC samples. Low levels of DAB2IP and PITX1 were detected mostly in a HCC subclass from patients with poor survival, indicating that these proteins control tumor aggressiveness. In HCC cells, reactivation of RASAL1, DAB2IP, and PITX1 inhibited proliferation and induced apoptosis, whereas their silencing increased proliferation and resistance to apoptosis. Selective suppression of RASAL1, DAB2IP, or NF1 RAS GAPs results in unrestrained activation of Ras signaling in the presence of wild-type RAS in HCC."	"Endogenous siRNAs and noncoding RNA-derived small RNAs are expressed in adult mouse hippocampus and are up-regulated in olfactory discrimination training. We previously proposed that endogenous siRNAs may regulate synaptic plasticity and long-term gene expression in the mammalian brain. Here, a hippocampal-dependent task was employed in which adult mice were trained to execute a nose-poke in a port containing one of two simultaneously present odors in order to obtain a reward. Mice demonstrating olfactory discrimination training were compared to pseudo-training and nose-poke control groups; size-selected hippocampal RNA was subjected to Illumina deep sequencing. Sequences that aligned uniquely and exactly to the genome without uncertain nucleotide assignments, within exons or introns of MGI annotated genes, were examined further. The data confirm that small RNAs having features of endogenous siRNAs are expressed in brain; that many of them derive from genes that regulate synaptic plasticity (and have been implicated in neuropsychiatric diseases); and that hairpin-derived endo-siRNAs and the 20- to 23-nt size class of small RNAs show a significant increase during an early stage of training. The most abundant putative siRNAs arose from an intronic inverted repeat within the SynGAP1 locus; this inverted repeat was a substrate for dicer in vitro, and SynGAP1 siRNA was specifically associated with Argonaute proteins in vivo. Unexpectedly, a dramatic increase with training (more than 100-fold) was observed for a class of 25- to 30-nt small RNAs derived from specific sites within snoRNAs and abundant noncoding RNAs (Y1 RNA, RNA component of mitochondrial RNAse P, 28S rRNA, and 18S rRNA). Further studies are warranted to characterize the role(s) played by endogenous siRNAs and noncoding RNA-derived small RNAs in learning and memory."	"A novel de novo microdeletion spanning the SYNGAP1 gene on the short arm of chromosome 6 associated with mental retardation. NA"	"Functional impact of global rare copy number variation in autism spectrum disorders. The autism spectrum disorders (ASDs) are a group of conditions characterized by impairments in reciprocal social interaction and communication, and the presence of restricted and repetitive behaviours. Individuals with an ASD vary greatly in cognitive development, which can range from above average to intellectual disability. Although ASDs are known to be highly heritable ( approximately 90%), the underlying genetic determinants are still largely unknown. Here we analysed the genome-wide characteristics of rare (&lt;1% frequency) copy number variation in ASD using dense genotyping arrays. When comparing 996 ASD individuals of European ancestry to 1,287 matched controls, cases were found to carry a higher global burden of rare, genic copy number variants (CNVs) (1.19 fold, P = 0.012), especially so for loci previously implicated in either ASD and/or intellectual disability (1.69 fold, P = 3.4 x 10(-4)). Among the CNVs there were numerous de novo and inherited events, sometimes in combination in a given family, implicating many novel ASD genes such as SHANK2, SYNGAP1, DLGAP2 and the X-linked DDX53-PTCHD1 locus. We also discovered an enrichment of CNVs disrupting functional gene sets involved in cellular proliferation, projection and motility, and GTPase/Ras signalling. Our results reveal many new genetic and functional targets in ASD that may lead to final connected pathways."	"[De novo mutations in SYNGAP1 associated with non-syndromic mental retardation]. NA"	"Disruption of hippocampus-regulated behavioural and cognitive processes by heterozygous constitutive deletion of SynGAP. The brain-specific Ras/Rap-GTPase activating protein (SynGAP) is a prime candidate linking N-methyl-d-aspartate receptors to the regulation of the ERK/MAP kinase signalling cascade, suggested to be essential for experience-dependent synaptic plasticity. Here, we evaluated the behavioural phenotype of SynGAP heterozygous knockout mice (SG(+/-)), expressing roughly half the normal levels of SynGAP. In the cognitive domain, SG(+/-) mice demonstrated severe working and reference memory deficits in the radial arm maze task, a mild impairment early in the transfer test of the water maze task, and a deficiency in spontaneous alternation in an elevated T-maze. In the non-cognitive domain, SG(+/-) mice were hyperactive in the open field and appeared less anxious in the elevated plus maze test. In contrast, object recognition memory performance was not impaired in SG(+/-) mice. The reduction in SynGAP thus resulted in multiple behavioural traits suggestive of aberrant cognitive and non-cognitive processes normally mediated by the hippocampus. Immunohistochemical evaluation further revealed a significant reduction in calbindin-positive interneurons in the hippocampus and doublecortin-positive neurons in the dentate gyrus of adult SG(+/-) mice. Heterozygous constitutive deletion of SynGAP is therefore associated with notable behavioural as well as morphological phenotypes indicative of hippocampal dysfunction. Any suggestion of a possible causal link between them however remains a matter for further investigation."	"Appetitively motivated instrumental learning in SynGAP heterozygous knockout mice. The synaptic Ras/Rap-GTPase-activating protein (SynGAP) regulates specific intracellular events following N-methyl-d-aspartate receptor (NMDAR) activation. Here, the impact of SynGAP heterozygous knockout (SG+/-) on NMDAR-dependent functions was assessed using different positive reinforcement schedules in instrumental conditioning. The knockout did not affect the temporal control of operant responding under a fixed interval (FI) schedule, but led to a putative enhancement in response vigor and/or disinhibition. When examined on differential reinforcement of low rates of response (DRL) schedules, SG+/- mice showed increased responding under DRL-4s and DRL-8s, without impairing the response efficiency (total rewards/total lever presses) because both rewarded and nonrewarded presses were elevated. Motivation was unaffected as evaluated using a progressive ratio (PR) schedule. Yet, SG+/- mice persisted in responding during extinction at the end of PR training, although an equivalent phenotype was not evident in extinction learning following FI-20s training. This extinction phenotype is therefore schedule-specific and cannot be generalized to Pavlovian conditioning. In conclusion, constitutive SynGAP reduction increases vigor in the execution of learned operant behavior without compromising its temporal control, yielding effects readily distinguishable from NMDAR blockade."	"Decreased expression of NMDA receptor-associated proteins in frontal cortex of elderly patients with schizophrenia. Converging evidence suggests too few activation-ready N-methyl-D-aspartic acid (NMDA) receptor complexes in the postsynaptic density in schizophrenia. Postsynaptic density protein 95 (PSD95), Synaptic GTPase-activating protein (SynGAP), and Multiple PDZ domain protein (MUPP1) are integral components of the NMDA receptor signaling complex, and help facilitate signaling, trafficking, and stabilization. We hypothesized that deficits involving these molecules may contribute to the pathophysiology of schizophrenia. To test our hypothesis, we measured protein expression of PSD95, SynGAP, and MUPP1 in the anterior cingulate cortex and dorsolateral prefrontal cortex. We found decreased PSD95 expression in the anterior cingulate cortex. Antipsychotic medication analyses showed decreased SynGAP expression in the anterior cingulate cortex in patients off medication when analyzed against our comparison group. These data suggest that NMDA receptor complex formation, localization, and downstream signaling may be abnormal in schizophrenia."	"Mutations in SYNGAP1 in autosomal nonsyndromic mental retardation. Although autosomal forms of nonsyndromic mental retardation account for the majority of cases of mental retardation, the genes that are involved remain largely unknown. We sequenced the autosomal gene SYNGAP1, which encodes a ras GTPase-activating protein that is critical for cognition and synapse function, in 94 patients with nonsyndromic mental retardation. We identified de novo truncating mutations (K138X, R579X, and L813RfsX22) in three of these patients. In contrast, we observed no de novo or truncating mutations in SYNGAP1 in samples from 142 subjects with autism spectrum disorders, 143 subjects with schizophrenia, and 190 control subjects. These results indicate that SYNGAP1 disruption is a cause of autosomal dominant nonsyndromic mental retardation."	"Reduced expression of the NMDA receptor-interacting protein SynGAP causes behavioral abnormalities that model symptoms of Schizophrenia. Abnormal function of NMDA receptors is believed to be a contributing factor to the pathophysiology of schizophrenia. NMDAR subunits and postsynaptic-interacting proteins of these channels are abnormally expressed in some patients with this illness. In mice, reduced NMDAR expression leads to behaviors analogous to symptoms of schizophrenia, but reports of animals with mutations in core postsynaptic density proteins having similar a phenotype have yet to be reported. Here we show that reduced expression of the neuronal RasGAP and NMDAR-associated protein, SynGAP, results in abnormal behaviors strikingly similar to that reported in mice with reduced NMDAR function. SynGAP mutant mice exhibited nonhabituating and persistent hyperactivity that was ameliorated by the antipsychotic clozapine. An NMDAR antagonist, MK-801, induced hyperactivity in normal mice but SynGAP mutants were less responsive, suggesting that NMDAR hypofunction contributes to this behavioral abnormality. SynGAP mutants exhibited enhanced startle reactivity and impaired sensory-motor gating. These mice also displayed a complete lack of social memory and a propensity toward social isolation. Finally, SynGAP mutants had deficits in cued fear conditioning and working memory, indicating abnormal function of circuits that control emotion and choice. Our results demonstrate that SynGAP mutant mice have gross neurological deficits similar to other mouse models of schizophrenia. Because SynGAP interacts with NMDARs, and the signaling activity of this protein is regulated by these channels, our data in dicate that SynGAP lies downstream of NMDARs and is a required intermediate for normal neural circuit function and behavior. Taken together, these data support the idea that schizophrenia may arise from abnormal signaling pathways that are mediated by NMDA receptors."	"SynGAP regulates steady-state and activity-dependent phosphorylation of cofilin. SynGAP, a prominent Ras/Rap GTPase-activating protein in the postsynaptic density, regulates the timing of spine formation and trafficking of glutamate receptors in cultured neurons. However, the molecular mechanisms by which it does this are unknown. Here, we show that synGAP is a key regulator of spine morphology in adult mice. Heterozygous deletion of synGAP was sufficient to cause an excess of mushroom spines in adult brains, indicating that synGAP is involved in steady-state regulation of actin in mature spines. Both Ras- and Rac-GTP levels were elevated in forebrains from adult synGAP(+/-) mice. Rac is a well known regulator of actin polymerization and spine morphology. The steady-state level of phosphorylation of cofilin was also elevated in synGAP(+/-) mice. Cofilin, an F-actin severing protein that is inactivated by phosphorylation, is a downstream target of a pathway regulated by Rac. We show that transient regulation of cofilin by treatment with NMDA is also disrupted in synGAP mutant neurons. Treatment of wild-type neurons with 25 mum NMDA triggered transient dephosphorylation and activation of cofilin within 15 s. In contrast, neurons cultured from mice with a homozygous or heterozygous deletion of synGAP lacked the transient regulation by the NMDA receptor. Depression of EPSPs induced by a similar treatment of hippocampal slices with NMDA was disrupted in slices from synGAP(+/-) mice. Our data show that synGAP mediates a rate-limiting step in steady-state regulation of spine morphology and in transient NMDA-receptor-dependent regulation of the spine cytoskeleton."	"Differential distribution of synGAP alpha1 and synGAP beta isoforms in rat neurons. The synaptic Ras-GTPase activating protein synGAP is a brain-specific protein of approximately 130 kDa and is a negative regulator of Ras. We previously reported 5 C-terminal isoforms of synGAP (alpha1, alpha2, beta1/2, beta 3/4 and gamma) [Li et al., 2001, J. Biol. Chem. 276: 21417-21424]. In this study, we investigated the expression profiles of the two major isoforms, synGAP alpha1 and synGAP beta, in the adult rat brain and cultured neurons of the rat hippocampus. Examination of pepsin-pretreated brain sections demonstrated that both isoforms were expressed mainly in the forebrain structures, which suggests their association with postsynaptic density. The distribution of the synGAP alpha1 and beta (beta1-4) isoforms in the adult rat brain was clearly different in cerebellum, hippocampus, cerebral cortex, septum and olfactory bulb. In particular, synGAP alpha1 was specifically localized to the cerebellar glomeruli, dense synaptic sites. From the analysis using cultured neurons, unique expression of synGAP beta was found in a neuron with a sea urchin-like morphology, possibly a star pyramidal neuron, in which the synGAP beta expression was relatively high, in particular, at the distal part of its processes. SynGAP alpha1 was mostly or specifically localized to excitatory postsynaptic sites, whereas synGAP beta was present at both excitatory and inhibitory postsynaptic sites. Finally, there are more non-synaptic clusters in dendrites in the case of synGAP beta than synGAP alpha1. Thus, the two synGAP isoforms, alpha1 and beta, distribute differently in neuronal cells and the brain."	"The MUPP1-SynGAPalpha protein complex does not mediate activity-induced LTP. At excitatory synapses of hippocampal neurons, the multi-PDZ domain scaffolding protein, MUPP1, assembles the NR2B subunit of the NMDA receptor (NMDAR), Ca2+-calmodulin kinase (CamKII), and the alpha1 isoform of the postsynaptic density GTPase activating protein, SynGAP (SynGAPalpha). In order to evaluate the role of this complex in excitatory synaptic neurotransmission we specifically disrupted MUPP1-SynGAPalpha interactions in CA1 neurons of acute hippocampal slices using intracellular perfusion with peptides derived from SynGAPalpha-MUPP1 binding domains. Disruption of the interaction between MUPP1 and SynGAPalpha with two complementary peptides derived from SynGAP and MUPP1 mutual binding sites resulted in enhancement of excitatory postsynaptic currents (EPSCs). This potentiation did not occlude pairing-induced long-term potentiation (LTP); indeed the amplitude of postsynaptic responses of activity-potentiated synapses was further increased. Pre-potentiation of excitatory synapses with theta burst stimulations did not modify the MUPP1-SynGAPalpha-dependent enhancement of EPSCs. Our data suggest that MUPP1-SynGAPalpha complex dissociation triggers a mechanism for AMPAR enhancement that is distinct from activity-induced LTP."	"The C2 domain of SynGAP is essential for stimulation of the Rap GTPase reaction. The brain-specific synaptic guanosine triphosphatase (GTPase)-activating protein (SynGAP) is important in synaptic plasticity. It shows dual specificity for the small guanine nucleotide-binding proteins Rap and Ras. Here, we show that RapGAP activity of SynGAP requires its C2 domain. In contrast to the isolated GAP domain, which does not show any detectable RapGAP activity, a fragment comprising the C2 and GAP domains (C2-GAP) stimulates the intrinsic GTPase reaction of Rap by approximately 1 x 10(4). The C2-GAP crystal structure, complemented by modelling and biochemical analyses, favours a concerted movement of the C2 domain towards the switch II region of Rap to assist in GTPase stimulation. Our data support a catalytic mechanism similar to that of canonical RasGAPs and distinct from the canonical RapGAPs. SynGAP presents the first example, to our knowledge, of a GAP that uses a second domain for catalytic activity, thus pointing to a new function of C2 domains."	"UNC-51-like kinase regulation of fibroblast growth factor receptor substrate 2/3. UNC-51-like kinases (ULK) are members of an evolutionarily conserved sub-family of ubiquitously expressed serine/threonine-specific protein kinases. Here we report that fibroblast growth factor receptor substrate (FRS) 2/3 are novel ULK2 carboxy-terminal domain interacting proteins. FRS2/3 are homologs that function as adaptor proteins to mediate signaling of multiple receptor tyrosine kinases. ULK2 interacts with the phospho-tyrosine binding (PTB) domain of FRS2/3. We demonstrate that siRNA targeting ULK2 in mouse P19 cells results in elevated FGFR1 mediated FRS3 and SHP2 tyrosyl phosphorylation. In addition, RNAi-mediated decrease in ULK2 causes increased interaction between FGFR1 and FRS3. ULK2 phosphorylates FRS2/3 in vitro, suggesting that ULK2 mediated phosphorylation may be a mechanism of FRS2/3 regulation. The data presented support a model in which ULK2, by interaction with FRS2/3 and inhibition of SynGAP, functions to negatively regulate tyrosyl phosphorylation of signaling proteins downstream of FGFR1."	"SynGAP regulates synaptic strength and mitogen-activated protein kinases in cultured neurons. Silent synapses, or excitatory synapses that lack functional alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptors (AMPARs), are thought to be critical for regulation of neuronal circuits and synaptic plasticity. Here, we report that SynGAP, an excitatory synapse-specific RasGAP, regulates AMPAR trafficking, silent synapse number, and excitatory synaptic transmission in hippocampal and cortical cultured neurons. Overexpression of SynGAP in neurons results in a remarkable depression of AMPAR-mediated miniature excitatory postsynaptic currents, a significant reduction in synaptic AMPAR surface expression, and a decrease in the insertion of AMPARs into the plasma membrane. This change is specific for AMPARs because no change is observed in synaptic NMDA receptor expression or total synapse density. In contrast to these results, synaptic transmission is increased in neurons from SynGAP knockout mice as well as in neuronal cultures treated with SynGAP small interfering RNA. In addition, activation of the extracellular signal-regulated kinase, ERK, is significantly decreased in SynGAP-overexpressing neurons, whereas P38 mitogen-activated protein kinase (MAPK) signaling is potentiated. Furthermore, ERK activation is up-regulated in neurons from SynGAP knockout mice, whereas P38 MAPK function is depressed. Taken together, these data suggest that SynGAP plays a critical role in the regulation of neuronal MAPK signaling, AMPAR membrane trafficking, and excitatory synaptic transmission."	"Relative and absolute quantification of postsynaptic density proteome isolated from rat forebrain and cerebellum. The postsynaptic density (PSD) of central excitatory synapses is essential for postsynaptic signaling, and its components are heterogeneous among different neuronal subtypes and brain structures. Here we report large scale relative and absolute quantification of proteins in PSDs purified from adult rat forebrain and cerebellum. PSD protein profiles were determined using the cleavable ICAT strategy and LC-MS/MS. A total of 296 proteins were identified and quantified with 43 proteins exhibiting statistically significant abundance change between forebrain and cerebellum, indicating marked molecular heterogeneity of PSDs between different brain regions. Moreover we utilized absolute quantification strategy, in which synthetic isotope-labeled peptides were used as internal standards, to measure the molar abundance of 32 key PSD proteins in forebrain and cerebellum. These data confirm the abundance of calcium/calmodulin-dependent protein kinase II and PSD-95 and reveal unexpected stoichiometric ratios between glutamate receptors, scaffold proteins, and signaling molecules in the PSD. Our data also demonstrate that the absolute quantification method is well suited for targeted quantitative proteomic analysis. Overall this study delineates a crucial molecular difference between forebrain and cerebellar PSDs and provides a quantitative framework for measuring the molecular stoichiometry of the PSD."	"Activity-dependent regulation of MEF2 transcription factors suppresses excitatory synapse number. In the mammalian nervous system, neuronal activity regulates the strength and number of synapses formed. The genetic program that coordinates this process is poorly understood. We show that myocyte enhancer factor 2 (MEF2) transcription factors suppressed excitatory synapse number in a neuronal activity- and calcineurin-dependent manner as hippocampal neurons formed synapses. In response to increased neuronal activity, calcium influx into neurons induced the activation of the calcium/calmodulin-regulated phosphatase calcineurin, which dephosphorylated and activated MEF2. When activated, MEF2 promoted the transcription of a set of genes, including arc and synGAP, that restrict synapse number. These findings define an activity-dependent transcriptional program that may control synapse number during development."	"Synaptic Ras GTPase activating protein regulates pattern formation in the trigeminal system of mice. The development of ordered connections or &quot;maps&quot; within the nervous system is a common feature of sensory systems and is crucial for their normal function. NMDA receptors are known to play a key role in the formation of these maps; however, the intracellular signaling pathways that mediate the effects of glutamate are poorly understood. Here, we demonstrate that SynGAP, a synaptic Ras GTPase activating protein, is essential for the anatomical development of whisker-related patterns in the developing somatosensory pathways in rodent forebrain. Mice lacking SynGAP show only partial segregation of barreloids in the thalamus, and thalamocortical axons segregate into rows but do not form whisker-related patches. In cortex, layer 4 cells do not aggregate to form barrels. In Syngap(+/-) animals, barreloids develop normally, and thalamocortical afferents segregate in layer 4, but cell segregation is retarded. SynGAP is not necessary for the development of whisker-related patterns in the brainstem. Immunoelectron microscopy for SynGAP from layer 4 revealed a postsynaptic localization with labeling in developing postsynaptic densities (PSDs). Biochemically, SynGAP associates with the PSD in a PSD-95-independent manner, and Psd-95(-/-) animals develop normal barrels. These data demonstrate an essential role for SynGAP signaling in the activity-dependent development of whisker-related maps selectively in forebrain structures indicating that the intracellular pathways by which NMDA receptor activation mediates map formation differ between brain regions and developmental stage."	"Differential mechanisms of glutamate receptor regulation of SynGAP in cortical neurones. One prime candidate linking N-methyl-D-aspartate (NMDA) receptors to the regulation of the MAP kinase cascade is SynGAP, a negative regulator of Ras. In order to assess how a physiological stimulus can alter SynGAP activity, an appropriate whole cell system must be used and SynGAP must be specifically extracted from membranes whilst preserving the catalytic activity of the protein. Here, we have achieved this and studied the effect of NMDA/alpha-amino-3-hydroxy-5-methylisoxazole-4-propionic acid (AMPA) and kainate receptor stimulations on SynGAP activity in cortical neurones. Furthermore, we have examined the role of extracellular Ca2+, CaM kinase II and the PSD-95-NR2B subunit interaction in SynGAP activity regulation and propose a novel convergence of signalling between AMPA, kainate and NMDA receptors."	"Light microscopic identification and immunocytochemical characterization of glutamatergic synapses in brain sections. Presynaptic proteins are readily identified by light microscopic immunocytochemistry, but immunodetection of postsynaptic proteins in brain sections proves difficult. We performed immunofluorescent double labeling for the NR1 subunit of the N-methyl-D-aspartate receptor (NMDAR) and the vesicular glutamate transporter 1 (VGLUT1). In material fixed with 4% paraformaldehyde, NMDAR staining in somatosensory cortex was restricted to the section surface, whereas presynaptic staining extended deeper into the tissue. Staining for postsynaptic proteins was enhanced in weakly fixed material and in tissue treated with pepsin, as previously reported, but tissue quality was impaired. Staining was also markedly enhanced, and without impairment of tissue quality, by treatment during perfusion with a mixture of inhibitors of proteases and the ubiquitin/proteosome system. We performed quantitative analysis of confocal images to study how immunostaining varies with depth into the tissue. Virtually all puncta immunopositive for VGLUT1 colocalized with synaptophysin puncta; these presynaptic puncta were most numerous 1-2 microm beneath the section surface. In contrast, puncta immunopositive for the NR1 subunit were most numerous at the surface, as were puncta immunopositive for the NR2 subunit, SynGAP, and CaMKII. Punctate staining for all postsynaptic proteins, but not presynaptic markers, was substantially enhanced in material pretreated with antiproteolytic agents. The large majority of NR1-positive puncta at the surface associated with VGLUT1 in this material are likely to represent synaptic contacts. Approximately eighty-five percent of VGLUT1-positive puncta in layers II-III of SI are associated with NR1-positive puncta, and approximately 80% are associated with NR2, SynGAP, and CaMKII. This approach may permit systematic analysis of the chemistry of glutamatergic synapses with light microscopic immunocytochemistry."	"Synapse composition and organization following chronic activity blockade in cultured hippocampal neurons. Activity plays multiple roles in the expression of synaptic plasticity, and has been shown to regulate the localization of both neurotransmitter receptors and downstream signaling machinery. However, the role of activity in central synapse formation and organization is incompletely understood. Some studies indicate that synapse formation can occur in the absence of synaptic activity, while others indicate that activity is required for synapse maintenance and receptor recruitment. In addition, the effects of long-term blockade of transmission generally, rather than blockade of specific receptors, on postsynaptic protein complement has been poorly characterized. In order to address the role of activity in synapse formation and postsynaptic specialization, we used tetanus toxin to chronically cleave VAMP2 and inhibit SNARE-mediated neurotransmitter release in cultured hippocampal neurons. Although these neurons are deficient in synaptic release, they are of normal size and morphology. In addition, both excitatory and inhibitory synapses form along their processes with normal density. These synapses have a remarkably similar cellular and molecular organization compared to controls, and are capable of recruiting postsynaptic scaffolding proteins, GABA, and glutamate receptors. Subcellular enrichment of synaptic proteins into specialized domains also appears intact. These data indicate that global activity inhibition is insufficient to disrupt central synapse formation or organization."	"A role for synGAP in regulating neuronal apoptosis. The brain-specific Ras/Rap GTPase-activating protein synGAP is a major component of the postsynaptic density at glutamatergic synapses. It is a target for phosphorylation by Ca(2+)/calmodulin-dependent protein kinase II, which up-regulates its GTPase-activating activity. Thus, SynGAP may play an important role in coupling N-methyl-D-aspartate-type glutamate receptor activation to signaling pathways downstream of Ras or Rap. Homozygous deletion of synGAP is lethal within the first few days after birth. Therefore, to study the functions of synGAP, we used the cre/loxP recombination system to produce conditional mice mutants in which gradual loss of synGAP begins at approximately 1 week, and usually becomes maximal by 3 weeks, after birth. The resulting phenotypes fall into two groups. In a small group, the level of synGAP protein is reduced to 20-25% of wild type, and they die at 2-3 weeks of age. In a larger group, the levels remain higher than approximately 40% of wild type, and they survive and remain healthy. In all mutants, however, an abnormally high number of neurons in the hippocampus and cortex undergo apoptosis, as detected by caspase-3 activation. The effect is cell autonomous, occurring only in neuronal types in which the synGAP gene is eliminated. The level of caspase-3 activation in neurons correlates inversely with the level of synGAP protein measured at 2 and 8 weeks after birth, indicating that neuronal apoptosis is enhanced by reduction of synGAP. These data show that synGAP plays a role in regulation of the onset of apoptotic neuronal death."	"Differential expression of two NMDA receptor interacting proteins, PSD-95 and SynGAP during mouse development. Patterns of neural activity mediated by N-methyl-D-aspartate (NMDA) receptors are known to play important roles in development of the central nervous system. However, the signalling pathways downstream from NMDA receptors that are critical for normal neuronal development are not yet clearly understood. NMDA receptors interact with various signalling proteins via scaffolding proteins, which are important in adult neuronal and behavioural plasticity. For example, the NR2B subunits of the NMDA receptor interact with postsynaptic density 95 (PSD-95), which in turn binds to synaptic ras GTPase-activating protein (SynGAP). Interestingly, the developmental phenotype of mice carrying null mutations in these genes differ. NR2B and SynGAP homozygote mice die within the first week of birth whereas PSD-95 homozygote mice survive to adulthood. We therefore examined the expression patterns of PSD-95 and SynGAP genes from embryonic stages to adult using lacZ (beta-galactosidase) marker gene knock-in mice. Dramatic changes of expression were observed throughout development in brain and other tissues. Although SynGAP binds PSD-95, both genes had distinct, as well as overlapping expression. SynGAP expression peaked at times of synaptogenesis and developmental plasticity in contrast to PSD-95, which was expressed throughout the brain from early embryonic stages. Furthermore, SynGAP showed a more spatially restricted pattern as illustrated by its restriction to forebrain in contrast to PSD-95, which was also found in mid- and hindbrain. These data support the model that synaptic signalling complexes are heterogeneous and individual components show temporal and spatial specificity during development."	"Impaired SynGAP expression and long-term spatial learning and memory in hippocampal CA1 area from rats previously exposed to perinatal hypoxia-induced insults: beneficial effects of A68930. Hypoxic encephalopathy is a common cause of neonatal seizures and long-term neurological cognitive deficits. In rats at postnatal days 10-12 (P10-P12), global hypoxia induced spontaneous seizures and chronic brain injury, mimicking clinical aspects of neonatal hypoxia. Synaptic Ras-GTPase activating protein (SynGAP) has important roles in RAS/MAPK-dependent synaptic plasticity and mammalian learning. We investigated possible alterations of SynGAP expression occurring in memory-impaired animals previously exposed to perinatal hypoxia insults. We also evaluated the therapeutic efficacy of A68930, a selective agonist of dopamine D1/D5 receptors, on perinatal hypoxia insults. In the hippocampal CA1 region, perinatal hypoxia insults (P10) led to a reduction in SynGAP expression associated with impairment in long-term spatial learning and memory performance at P45. The use of A68930 (at a dose of 1, 2, 3mg/kg, P17-P23) effectively attenuated the deleterious effects as described above. Our results may indicate the involvement of SynGAP in certain forms of brain injury, leading to long-term learning and memory deficits. A68930 may have clinical potential as a therapeutic agent for alleviation of long-term cognitive deficits in rats and other animal models."	"SynGAP regulates spine formation. SynGAP is a brain-specific ras GTPase-activating protein that is an abundant component of the signaling complex associated with the NMDA-type glutamate receptor. We generated mutant mice lacking synGAP to study its physiological role. Homozygous mutant mice die in the first few days after birth; however, neurons from mutant embryos can be maintained in culture. Here, we report that spine and synapse formation are accelerated in cultured mutant neurons, and the spines of mature mutant neurons are significantly larger than those of wild type. Clusters of PSD-95 and subunits of AMPA-type and NMDA-type glutamate receptors accumulate in spines of mutant neurons by day 10 in vitro, whereas in wild-type neurons they are still mostly located in dendritic shafts. The frequency and amplitude of miniature EPSCs are larger in mutant neurons at day 10 in vitro, confirming that they have more functional synapses. At day 21 in vitro, the spines of mutant neurons remain significantly larger than those of wild type. The mutant phenotype at day 10 in vitro can be rescued by introduction of recombinant wild-type synGAP on day 9. In contrast, introduction of mutant synGAP with a mutated GAP domain or lacking the terminal domain that binds to PSD-95 does not rescue the mutant phenotype, indicating that both domains play a role in control of spine formation. Thus, the GAP activity of synGAP and its association with PSD-95 are important for normal regulation of spine and synapse formation in hippocampal neurons."	"SynGAP-MUPP1-CaMKII synaptic complexes regulate p38 MAP kinase activity and NMDA receptor-dependent synaptic AMPA receptor potentiation. The synapse contains densely localized and interacting proteins that enable it to adapt to changing inputs. We describe a Ca2+-sensitive protein complex involved in the regulation of AMPA receptor synaptic plasticity. The complex is comprised of MUPPI, a multi-PDZ domain-containing protein; SynGAP, a synaptic GTPase-activating protein; and the Ca2+/calmodulin-dependent kinase CaMKII. In synapses of hippocampal neurons, SynGAP and CaMKII are brought together by direct physical interaction with the PDZ domains of MUPP1, and in this complex, SynGAP is phosphorylated. Ca2+CaM binding to CaMKII dissociates it from the MUPP1 complex, and Ca2+ entering via the NMDAR drives the dephosphorylation of SynGAP. Specific peptide-induced SynGAP dissociation from the MUPP1-CaMKII complex results in SynGAP dephosphorylation accompanied by P38 MAPK inactivation, potentiation of synaptic AMPA responses, and an increase in the number of AMPAR-containing clusters in hippocampal neuron synapses. siRNA-mediated SynGAP knockdown confirmed these results. These data implicate SynGAP in NMDAR- and CaMKII-dependent regulation of AMPAR trafficking."	"PSD-95 promotes CaMKII-catalyzed serine phosphorylation of the synaptic RAS-GTPase activating protein SynGAP after transient brain ischemia in rat hippocampus. Recent studies have indicated that cerebral ischemia induces rapid serine phosphorylation of synaptic RAS-GTPase activating protein (SynGAP) by calcium/Camodulin-dependent protein kinase II (CaMKII) in rat hippocampus. To further illustrate the mechanisms underlying these processes, we examined the effects of transient (15 min) brain ischemia followed by reperfusion (0, 30 min, 6 h, 1, 3 days) on serine phosphorylation of SynGAP and interactions involving SynGAP, postsynaptic density protein 95 (PSD95) and CaMKII in rat hippocampus. Transient brain ischemia was induced by the method of four-vessel occlusion in Sprague-Dawley rats. Serine phosphorylation of SynGAP increased immediately after brain ischemia and peaked at 30-min reperfusion, and the increase was maintained for 3 days. The association among SynGAP, PSD95 and CaMKII had a similar trend as serine phosphorylation of SynGAP. Intracrebroventricular infusion of PSD95 antisense oligodeoxynucleotide not only markedly decreased the protein levels of PSD95 but also attenuated the elevated serine phosphorylation of SynGAP and the associations among SynGAP, PSD95 and CaMKII induced by 30-min reperfusion following 15-min brain ischemia. The results suggest that the serine phosphorylation of SynGAP catalyzed by CaMKII is immediately increased and that PSD95 is critical for promoting SynGAP serine phosphorylation after transient brain ischemia."	"Role of Unc51.1 and its binding partners in CNS axon outgrowth. Previous studies showed that the serine/threonine kinase Unc51.1 is one of the earliest genes in neuronal differentiation and is required for granule cell axon formation. To examine the mechanism of Unc51.1 regulation of axon extension, we have identified two direct binding partners. The first, SynGAP, a negative regulator of Ras, is expressed within axons and growth cones of developing granule cells. Overexpression of SynGAP blocks neurite outgrowth by a mechanism that involves Ras-like GTPase cascade. The second binding partner is a PDZ domain-containing scaffolding protein, Syntenin, that binds Rab5 GTPase, the activity of which is attenuated by SynGAP. Thus, our results demonstrate that the Unc51.1-containing protein complex governs axon formation via Ras-like GTPase signaling and through regulation of the Rab5-mediated endocytic pathways within developing axons."	"Regulation of the neuron-specific Ras GTPase-activating protein, synGAP, by Ca2+/calmodulin-dependent protein kinase II. synGAP is a neuron-specific Ras GTPase-activating protein found in high concentration in the postsynaptic density fraction from mammalian forebrain. Proteins in the postsynaptic density, including synGAP, are part of a signaling complex attached to the cytoplasmic tail of the N-methyl-d-aspartate-type glutamate receptor. synGAP can be phosphorylated by a second prominent component of the complex, Ca(2+)/calmodulin-dependent protein kinase II. Here we show that phosphorylation of synGAP by Ca(2+)/calmodulin-dependent protein kinase II increases its Ras GTPase-activating activity by 70-95%. We identify four major sites of phosphorylation, serines 1123, 1058, 750/751/756, and 764/765. These sites together with other minor phosphorylation sites in the carboxyl tail of synGAP control stimulation of GTPase-activating activity. When three of these sites and four other serines in the carboxyl tail are mutated, stimulation of GAP activity after phosphorylation is reduced to 21 +/- 5% compared with 70-95% for the wild type protein. We used phosphosite-specific antibodies to show that, as predicted, phosphorylation of serines 765 and 1123 is increased in cultured cortical neurons after exposure of the neurons to the agonist N-methyl-d-aspartate."	"Cerebral ischemia immediately increases serine phosphorylation of the synaptic RAS-GTPase activating protein SynGAP by calcium/calmodulin-dependent protein kinase II alpha in hippocampus of rats. The interaction between translocated calcium/calmdulin-dependent protein kinase IIalpha (CaMK IIalpha) and SynGAP during brain ischemia was investigated by Western blotting and immunoprecipitation. Brain ischemia was induced by the four-vessel occlusion method on Sprague-Dawley rats. After 3 min global ischemia, both the binding of CaMK IIalpha to SynGAP and the serine phosphorylation of SynGAP all dramatically increased. Administrating KN-62 through cerebral ventricle (20 min before ischemia) not only remarkably decreased the binding of CaMK IIalpha to SynGAP but also attenuate the elevated serine phosphorylation of SynGAP following 20 min ischemia in hippocampus. These results suggest that CaMK IIalpha is responsible for the serine phosphorylation of SynGAP and a consequent phosphorylation and inhibition of SynGAP may result in activation of mitogen-activated protein kinase pathway which could serve a protective function in brain ischemia."	"Multiprotein complex signaling and the plasticity problem. Synaptic transmission of distinct patterns of spikes, or 'neural code', leads to plastic changes in synapses and other parts of the neuron, as well as learning in animals. Recent findings indicate that specialized multiprotein structures associated with neurotransmitter receptors and cell-adhesion proteins function as molecular devices that both read the neural code and initiate long-term changes in synaptic structure and function."	"Characterization of a novel synGAP isoform, synGAP-beta. We cloned a cDNA encoding a novel synGAP, synGAP-d (GenBank(TM) accession number ), from a rat brain cDNA library. The clone consisted of 4801 nucleotides with a coding sequence of 3501 nucleotides, encoded a protein consisting of 1166 amino acids with &gt;99% homology with 1092 amino acid overlaps to synGAP, and contained a 13-nucleotide insertion to the previously reported synGAP mRNAs, which suggested that the clone was a splice variant of synGAP. We also found that there are at least seven variants in the 3' portion of the synGAP mRNA and that they encoded five different protein isoforms. The coding sequence of these C-terminal variants were classified into alpha1, alpha2, beta1, beta2, beta3, beta4, and gamma, and synGAP-d was classified as the beta1 form. The previously reported synGAPs (synGAP-a, -b, and -c and p135synGAP) can be classified as the alpha1 isoform. All isoforms were expressed specifically in the brain. Unexpectedly, the beta isoform, which lacks a C-terminal PSD-95-binding motif ((S/T)XV), was more restricted to the postsynaptic density fraction than the motif-containing alpha1 isoform. The beta isoform did not interact with PSD-95 but specifically interacted with a nonphosphorylated alpha subunit of Ca(2+)/calmodulin-dependent protein kinase II through its unique C-terminal tail."	"SynGAP: a synaptic RasGAP that associates with the PSD-95/SAP90 protein family. The PSD-95/SAP90 family of proteins has recently been implicated in the organization of synaptic structure. Here, we describe the isolation of a novel Ras-GTPase activating protein, SynGAP, that interacts with the PDZ domains of PSD-95 and SAP102 in vitro and in vivo. SynGAP is selectively expressed in brain and is highly enriched at excitatory synapses, where it is present in a large macromolecular complex with PSD-95 and the NMDA receptor. SynGAP stimulates the GTPase activity of Ras, suggesting that it negatively regulates Ras activity at excitatory synapses. Ras signaling at the postsynaptic membrane may be involved in the modulation of excitatory synaptic transmission by NMDA receptors and neurotrophins. These results indicate that SynGAP may play an important role in the modulation of synaptic plasticity."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CC2D1A"	"complex neurodevelopmental disorder"	"A heritable profile of six miRNAs in autistic patients and mouse models. Autism spectrum disorder (ASD) is a group of developmental pathologies that impair social communication and cause repetitive behaviors. The suggested roles of noncoding RNAs in pathology led us to perform a comparative analysis of the microRNAs expressed in the serum of human ASD patients. The analysis of a cohort of 45 children with ASD revealed that six microRNAs (miR-19a-3p, miR-361-5p, miR-3613-3p, miR-150-5p, miR-126-3p, and miR-499a-5p) were expressed at low to very low levels compared to those in healthy controls. A similar but less pronounced decrease was registered in the clinically unaffected parents of the sick children and in their siblings but never in any genetically unrelated control. Results consistent with these observations were obtained in the blood, hypothalamus and sperm of two of the established mouse models of ASD: valproic acid-treated animals and Cc2d1a<sup>+/-</sup> heterozygotes. In both instances, the same characteristic miRNA profile was evidenced in the affected individuals and inherited together with disease symptoms in the progeny of crosses with healthy animals. The consistent association of these genetic regulatory changes with the disease provides a starting point for evaluating the changes in the activity of the target genes and, thus, the underlying mechanism(s). From the applied societal and medical perspectives, once properly confirmed in large cohorts, these observations provide tools for the very early identification of affected children and progenitors."	"Molecular causes of sex-specific deficits in rodent models of neurodevelopmental disorders. Neurodevelopmental disorders (NDDs) such as intellectual disability and autism spectrum disorder consistently show a male bias in prevalence, but it remains unclear why males and females are affected with different frequency. While many behavioral studies of transgenic NDD models have focused only on males, the requirement by the National Institutes of Health to consider sex as a biological variable has promoted the comparison of male and female performance in wild-type and mutant animals. Here, we review examples of rodent models of NDDs in which sex-specific deficits were identified in molecular, physiological, and/or behavioral responses, showing sex differences in susceptibility to disruption of genes mutated in NDDs. Haploinsufficiency in genes involved in mechanisms such as synaptic function (GABRB3 and NRXN1), chromatin remodeling (CHD8, EMHT1, and ADNP), and intracellular signaling (CC2D1A and ERK1) lead to more severe behavioral outcomes in males. However, in the absence of behavioral deficits, females can still present with cellular and electrophysiological changes that could be due to compensatory mechanisms or differential allocation of molecular and cellular functions in the two sexes. By contrasting these findings with mouse models where females are more severely affected (MTHFR and AMBRA1), we propose a framework to approach the study of sex-specific deficits possibly leading to sex bias in NDDs."	"Disregulation of Autophagy in the Transgenerational Cc2d1a Mouse Model of Autism. Autism spectrum disorder (ASD) is a heterogeneously childhood neurodevelopmental disorder, believed to be under development of various genetic and environmental factors. Autophagy and related pathways have also been implicated in the etiology of ASD. We aimed to investigate autophagic markers by generating the transgenerational inheritance of ASD-like behaviors in the Cc2d1a animal model of ASD. Cc2d1a (+/-) mouse model of ASD was built in two different groups by following three generations. After behavior test, bilateral hippocampus was sliced. Western Blot assay and quantitative real-time polymerase chain reaction (QRT-PCR) were used for measurement of LC3 and Beclin-1 as key regulators of autophagy. All of the animal and laboratory studies were conducted in the Erciyes University Genome and Stem Cell Center (GENKOK). Significant LC3 and Beclin-1 mRNA expression levels were observed in mouse hippocampus between groups and generations. Western blot confirmed the changes of the proteins in the hippocampus. LC3 expressions were increased for females and decreased for males compared to the control group. Beclin-1 expression levels were found to be significantly decreased in males and females compared to controls. This study could help explain a new pathway of autophagy in ASD mouse models. Future animal studies need to investigate sex differences in mouse modeling autism-relevant genes like CC2D1A. We anticipate our results to be a starting point for more comprehensive autophagy studies in this mouse model of ASD."	"Whole Blood Transcriptome Analysis for Lifelong Monitoring in Elite Sniffer Dogs Produced by Somatic Cell Nuclear Transfer. Reproductive cloning by somatic cell nuclear transfer (SCNT) is a valuable method to propagate service dogs with desirable traits because of higher selection rates in cloned dogs. However, incomplete reprogramming is a major barrier to SCNT, and the assessment of reprogramming is limited to preimplantation embryos and tissues from dead and/or adult tissue. Thus, lifelong monitoring in SCNT dogs can be useful to evaluate the SCNT service dogs for propagation. We applied microarray and qRT-PCR to profile of mRNA and miRNA in whole blood samples collected from four cloned dogs (S), three age-matched control dogs (A), and a donor dog (D). In the analysis of differentially expressed genes in S-A, A-D, and S-D pairs, most genomes were completely reprogrammed and rejuvenated in the cloned offspring. However, several RNAs were differentially expressed. Interestingly, the altered genes are associated with aging and senescence. Furthermore, we identified potential biomarkers such as mirR-223 (NFIB; CLIC4), miRN-494 (ARHGEF12), miR-106b (PPP1R3B; CC2D1A), miR-20a (CC2D1A; PPP1R3B), miR-30e (IGJ; HIRA), and miR-19a (TNRC6A) by miRNA-target mRNA pairing for monitoring rejuvenation, aging/senescence, and reprogramming in cloned dogs. The novel comparative transcriptomic information about SCNT and age-matched dogs can be used to assess the lifelong health of cloned dogs and to facilitate the selection of training animals with minimal invasive procedures."	"Coiled-Coil and C2 Domain-Containing Protein 1A (CC2D1A) Promotes Chemotherapy Resistance in Ovarian Cancer. Recurrence within 6 months of the last round of chemotherapy is clinically defined as platinum-resistant ovarian cancer. Gene expression associated with early recurrence may provide insights into platinum resistant recurrence. Prior studies identified a 14-gene model that accurately predicted early or late recurrence in 86% of patients. One of the genes identified was CC2D1A (encoding coiled-coil and C2 domain containing 1A), which showed higher expression in tumors from patients with early recurrence. Here, we show that CC2D1A protein expression was higher in cisplatin-resistant ovarian cancer cell lines compared to cisplatin-sensitive cell lines. In addition, immunohistochemical analysis of patient tumors on a tissue microarray (n = 146) showed that high levels of CC2D1A were associated with a significantly worse overall and progression-free survival (p = 0.0002 and p = 0.006, respectively). To understand the contribution of CC2D1A in chemoresistance, we generated shRNA-mediated knockdown of CC2D1A in SKOV3ip and PEO4 cell lines. Cell death and clonogenic assays of these isogenic clonal lines clearly showed that downregulation of CC2D1A resulted in increased sensitivity to cisplatin and paclitaxel in ovarian cancer cells. Moreover, nude mice bearing SKOV3ip xenografts with stably downregulated CC2D1A were more sensitive to chemotherapy as evidenced by a significantly longer survival time compared to xenografts derived from cells stably transduced with non-targeting shRNA. These results suggest CC2D1A promotes chemotherapy resistance in ovarian cancer."	"Malan syndrome in a patient with 19p13.2p13.12 deletion encompassing NFIX and CACNA1A genes: Case report and review of the literature. Malan syndrome is a recently introduced overgrowth disorder described in a limited number of individuals. Haploinsufficiency and also point mutations of NFIX gene have been proposed as its leading causative mechanism, however, due to the limited number of cases and different deletion sizes, genotype/phenotype correlations are still limited. Here, we report the first Brazilian case of Malan syndrome caused by a 990 kb deletion in 19p13.2p13.12, focusing on clinical and behavioral aspects of the syndrome. The patient presented with macrocephaly, facial dysmorphisms, hypotonia, developmental delay, moderate thoracolumbar scoliosis, and seizures. The intellectual and behavioral assessments showed severe cognitive, language, and adaptive functions impairments. The 19p deleted region of our patient encompasses NFIX, CACNA1A, which seems to be related to a higher frequency of seizures among individuals with microdeletions in 19p13.2, and 15 other coding genes, including CC2D1A and NACC1, both known to be involved in neurobiological process and pathways. Deletions involving NFIX gene should be considered in patients with overgrowth during childhood, macrocephaly, developmental delay, and seizures, as well as severe intellectual disability."	"Conditional Deletion of CC2D1A Reduces Hippocampal Synaptic Plasticity and Impairs Cognitive Function through Rac1 Hyperactivation. Coiled-coil and C2 domain containing 1A (CC2D1A) is an evolutionarily conserved protein, originally identified as a nuclear factor-κB activator through a large-scale screen of human genes. Mutations in the human Cc2d1a gene result in autosomal recessive nonsyndromic intellectual disability. It remains unclear, however, how Cc2d1a mutation leads to alterations in brain function. Here, we have taken advantage of Cre/loxP recombinase-based strategy to conditionally delete Cc2d1a exclusively from excitatory neurons of male mouse forebrain to examine its role in hippocampal synaptic plasticity and cognitive function. We confirmed the expression of CC2D1A protein and mRNA in the mouse hippocampus. Double immunofluorescence staining showed that CC2D1A is expressed in both excitatory and inhibitory neurons of the adult hippocampus. Conditional deletion of Cc2d1a (cKO) from excitatory neurons leads to impaired performance in object location memory test and altered anxiety-like behavior. Consistently, cKO mice displayed a deficit in the maintenance of LTP in the CA1 region of hippocampal slices. Cc2d1a deletion also resulted in decreased complexity of apical and basal dendritic arbors of CA1 pyramidal neurons. An enhanced basal Rac1 activity was observed following Cc2d1a deletion, and this enhancement was mediated by reduced SUMO-specific protease 1 (SENP1) and SENP3 expression, thus increasing the amount of Rac1 SUMOylation. Furthermore, partial blockade of Rac1 activity rescued impairments in LTP and object location memory performance in cKO mice. Together, our results implicate Rac1 hyperactivity in synaptic plasticity and cognitive deficits observed in Cc2d1a cKO mice and reveal a novel role for CC2D1A in regulating hippocampal synaptic function.SIGNIFICANCE STATEMENT CC2D1A is abundantly expressed in the brain, but there is little known about its physiological function. Taking advantage of Cc2d1a cKO mice, the present study highlights the importance of CC2D1A in the maintenance of LTP at Schaffer collateral-CA1 synapses and the formation of hippocampus-dependent long-term object location memory. Our findings establish a critical link between elevated Rac1 activity, structural and synaptic plasticity alterations, and cognitive impairment caused by Cc2d1a deletion. Moreover, partial blockade of Rac1 activity rescues synaptic plasticity and memory deficits in Cc2d1a cKO mice. Such insights may have implications for the utility of Rac1 inhibitors in the treatment of intellectual disability caused by Cc2d1a mutations in human patients."	"Male-Specific cAMP Signaling in the Hippocampus Controls Spatial Memory Deficits in a Mouse Model of Autism and Intellectual Disability. The prevalence of neurodevelopmental disorders is biased toward male individuals, with male-to-female ratios of 2:1 in intellectual disability and 4:1 in autism spectrum disorder. However, the molecular mechanisms of such bias remain unknown. While characterizing a mouse model for loss of the signaling scaffold coiled-coil and C2 domain-containing protein 1A (CC2D1A), which is mutated in intellectual disability and autism spectrum disorder, we identified biochemical and behavioral differences between male and female mice, and explored whether CC2D1A controls male-specific intracellular signaling. CC2D1A is known to regulate phosphodiesterase 4D (PDE4D), which regulates cyclic adenosine monophosphate (cAMP) signaling. We tested for activation of PDE4D and downstream signaling molecules in the hippocampus of Cc2d1a-deficient mice. We then performed behavioral studies in female mice to analyze learning and memory, and then targeted PDE4D activation with a PDE4D inhibitor to define how changes in cAMP levels affect behavior in male and female mice. We found that in Cc2d1a-deficient male mice PDE4D is hyperactive, leading to a reduction in cAMP response element binding protein signaling, but this molecular deficit is not present in female mice. Cc2d1a-deficient male mice show a deficit in spatial memory, which is not present in Cc2d1a-deficient female mice. Restoring PDE4D activity using an inhibitor rescues cognitive deficits in male mice but has no effect on female mice. Our findings show that CC2D1A regulates cAMP intracellular signaling in a male-specific manner in the hippocampus, leading to male-specific cognitive deficits. We propose that male-specific signaling mechanisms are involved in establishing sex bias in neurodevelopmental disorders."	"Identification of candidate gene FAM183A and novel pathogenic variants in known genes: High genetic heterogeneity for autosomal recessive intellectual disability. The etiology of intellectual disability (ID) is heterogeneous including a variety of genetic and environmental causes. Historically, most research has not focused on autosomal recessive ID (ARID), which is a significant cause of ID, particularly in areas where parental consanguinity is common. Identification of genetic causes allows for precision diagnosis and improved genetic counseling. We performed whole exome sequencing to 21 Turkish families, seven multiplex and 14 simplex, with nonsyndromic ID. Based on the presence of multiple affected siblings born to unaffected parents and/or shared ancestry, we consider all families as ARID. We revealed the underlying causative variants in seven families in MCPH1 (c.427dupA, p.T143Nfs*5), WDR62 (c.3406C&gt;T, p.R1136*), ASPM (c.5219_5225delGAGGATA, p.R1740Tfs*7), RARS (c.1588A&gt;G, p.T530A), CC2D1A (c.811delG, p.A271Pfs*30), TUSC3 (c.793C&gt;T, p.Q265*) and ZNF335 (c.808C&gt;T, p.R270C and c.3715C&gt;A, p.Q1239K) previously linked with ARID. Besides ARID genes, in one family, affected male siblings were hemizygous for PQBP1 (c.459_462delAGAG, p.R153Sfs*41) and in one family the proband was female and heterozygous for X-chromosomal SLC9A6 (c.1631+1G&gt;A) variant. Each of these variants, except for those in MCPH1 and PQBP1, have not been previously published. Additionally in one family, two affected children were homozygous for the c.377G&gt;A (p.W126*) variant in the FAM183A, a gene not previously associated with ARID. No causative variants were found in the remaining 11 families. A wide variety of variants explain half of families with ARID. FAM183A is a promising novel candidate gene for ARID."	"Loss of the Intellectual Disability and Autism Gene Cc2d1a and Its Homolog Cc2d1b Differentially Affect Spatial Memory, Anxiety, and Hyperactivity. Hundreds of genes are mutated in non-syndromic intellectual disability (ID) and autism spectrum disorder (ASD), with each gene often involved in only a handful of cases. Such heterogeneity can be daunting, but rare recessive loss of function (LOF) mutations can be a good starting point to provide insight into the mechanisms of neurodevelopmental disease. Biallelic LOF mutations in the signaling scaffold CC2D1A cause a rare form of autosomal recessive ID, sometimes associated with ASD and seizures. In parallel, we recently reported that Cc2d1a-deficient mice present with cognitive and social deficits, hyperactivity and anxiety. In Drosophila, loss of the only ortholog of Cc2d1a, lgd, is embryonically lethal, while in vertebrates, Cc2d1a has a homolog Cc2d1b which appears to be compensating, indicating that Cc2d1a and Cc2d1b have a redundant function in humans and mice. Here, we generate an allelic series of Cc2d1a and Cc2d1b LOF to determine the relative role of these genes during behavioral development. We generated Cc2d1b knockout (KO), Cc2d1a/1b double heterozygous and double KO mice, then performed behavioral studies to analyze learning and memory, social interactions, anxiety, and hyperactivity. We found that Cc2d1a and Cc2d1b have partially overlapping roles. Overall, loss of Cc2d1b is less severe than loss of Cc2d1a, only leading to cognitive deficits, while Cc2d1a/1b double heterozygous animals are similar to Cc2d1a-deficient mice. These results will help us better understand the deficits in individuals with CC2D1A mutations, suggesting that recessive CC2D1B mutations and trans-heterozygous CC2D1A and CC2D1B mutations could also contribute to the genetics of ID."	"Abrogated Freud-1/Cc2d1a Repression of 5-HT1A Autoreceptors Induces Fluoxetine-Resistant Anxiety/Depression-Like Behavior. Freud-1/Cc2d1a represses the gene transcription of serotonin-1A (5-HT1A) autoreceptors, which negatively regulate 5-HT tone. To test the role of Freud-1 in vivo, we generated mice with adulthood conditional knock-out of Freud-1 in 5-HT neurons (cF1ko). In cF1ko mice, 5-HT1A autoreceptor protein, binding and hypothermia response were increased, with reduced 5-HT content and neuronal activity in the dorsal raphe. The cF1ko mice displayed increased anxiety- and depression-like behavior that was resistant to chronic antidepressant (fluoxetine) treatment. Using conditional Freud-1/5-HT1A double knock-out (cF1/1A dko) to disrupt both Freud-1 and 5-HT1A genes in 5-HT neurons, no increase in anxiety- or depression-like behavior was seen upon knock-out of Freud-1 on the 5-HT1A autoreceptor-negative background; rather, a reduction in depression-like behavior emerged. These studies implicate transcriptional dysregulation of 5-HT1A autoreceptors by the repressor Freud-1 in anxiety and depression and provide a clinically relevant genetic model of antidepressant resistance. Targeting specific transcription factors, such as Freud-1, to restore transcriptional balance may augment response to antidepressant treatment.SIGNIFICANCE STATEMENT Altered regulation of the 5-HT1A autoreceptor has been implicated in human anxiety, major depression, suicide, and resistance to antidepressants. This study uniquely identifies a single transcription factor, Freud-1, as crucial for 5-HT1A autoreceptor expression in vivo Disruption of Freud-1 in serotonin neurons in mice links upregulation of 5-HT1A autoreceptors to anxiety/depression-like behavior and provides a new model of antidepressant resistance. Treatment strategies to reestablish transcriptional regulation of 5-HT1A autoreceptors could provide a more robust and sustained antidepressant response."	"Structural Basis for Regulation of ESCRT-III Complexes by Lgd. The ESCRT-III complex induces outward membrane budding and fission through homotypic polymerization of its core component Shrub/CHMP4B. Shrub activity is regulated by its direct interaction with a protein called Lgd in flies, or CC2D1A or B in humans. Here, we report the structural basis for this interaction and propose a mechanism for regulation of polymer assembly. The isolated third DM14 repeat of Lgd binds Shrub, and an Lgd fragment containing only this DM14 repeat and its C-terminal C2 domain is sufficient for in vivo function. The DM14 domain forms a helical hairpin with a conserved, positively charged tip, that, in the structure of a DM14 domain-Shrub complex, occupies a negatively charged surface of Shrub that is otherwise used for homopolymerization. Lgd mutations at this interface disrupt its function in flies, confirming functional importance. Together, these data argue that Lgd regulates ESCRT activity by controlling access to the Shrub self-assembly surface."	"Recruitment by the Repressor Freud-1 of Histone Deacetylase-Brg1 Chromatin Remodeling Complexes to Strengthen HTR1A Gene Repression. Five-prime repressor element under dual repression binding protein-1 (Freud-1)/CC2D1A is genetically linked to intellectual disability and implicated in neuronal development. Freud-1 represses the serotonin-1A (5-HT1A) receptor gene HTR1A by histone deacetylase (HDAC)-dependent or HDAC-independent mechanisms in 5-HT1A-negative (e.g., HEK-293) or 5-HT1A-expressing cells (SK-N-SH), respectively. To identify the underlying mechanisms, Freud-1-associated proteins were affinity-purified from HEK-293 nuclear extracts and members of the Brg1/SMARCCA chromatin remodeling and Sin3A-HDAC corepressor complexes were identified. Pull-down assays using recombinant proteins showed that Freud-1 interacts directly with the Brg1 carboxyl-terminal domain; interaction with Brg1 required the carboxyl-terminal of Freud-1. Freud-1 complexes in HEK-293 and SK-N-SH cells differed, with low levels of BAF170/SMARCC2 and BAF57/SMARCE1 in HEK-293 cells and low-undetectable BAF155/SMARCC1, Sin3A, and HDAC1/2 in SK-N-SH cells. Similarly, by quantitative chromatin immunoprecipitation, Brg1-BAF170/57 and Sin3A-HDAC complexes were observed at the HTR1A promoter in HEK-293 cells, whereas in SK-N-SH cells, Sin3A-HDAC proteins were not detected. Quantifying 5-HT1A receptor mRNA levels in cells treated with siRNA to Freud-1, Brg1, or both RNAs addressed the functional role of the Freud-1-Brg1 complex. In HEK-293 cells, 5-HT1A receptor mRNA levels were increased only when both Freud-1 and Brg1 were depleted, but in SK-N-SH cells, depletion of either protein upregulated 5-HT1A receptor RNA. Thus, recruitment by Freud-1 of Brg1, BAF155, and Sin3A-HDAC complexes appears to strengthen repression of the HTR1A gene to prevent its expression inappropriate cell types, while recruitment of the Brg1-BAF170/57 complex is permissive to 5-HT1A receptor expression. Alterations in Freud-1-Brg1 interactions in mutants associated with intellectual disability could impair gene repression leading to altered neuronal development."	"Coupling an EML4-ALK-centric interactome with RNA interference identifies sensitizers to ALK inhibitors. Patients with lung cancers harboring anaplastic lymphoma kinase (ALK) gene fusions benefit from treatment with ALK inhibitors, but acquired resistance inevitably arises. A better understanding of proximal ALK signaling mechanisms may identify sensitizers to ALK inhibitors that disrupt the balance between prosurvival and proapoptotic effector signals. Using affinity purification coupled with mass spectrometry in an ALK fusion lung cancer cell line (H3122), we generated an ALK signaling network and investigated signaling activity using tyrosine phosphoproteomics. We identified a network of 464 proteins composed of subnetworks with differential response to ALK inhibitors. A small hairpin RNA screen targeting 407 proteins in this network revealed 64 and 9 proteins that when knocked down sensitized cells to crizotinib and alectinib, respectively. Among these, knocking down fibroblast growth factor receptor substrate 2 (FRS2) or coiled-coil and C2 domain-containing protein 1A (CC2D1A), both scaffolding proteins, sensitized multiple ALK fusion cell lines to the ALK inhibitors crizotinib and alectinib. Collectively, our data set provides a resource that enhances our understanding of signaling and drug resistance networks consequent to ALK fusions and identifies potential targets to improve the efficacy of ALK inhibitors in patients."	"CC2D1A and CC2D1B regulate degradation and signaling of EGFR and TLR4. Signaling through many transmembrane receptors is terminated by their sorting to the intraluminal vesicles (ILVs) of multivescular bodies (MVBs) and subsequent lysosomal degradation. ILV formation requires the endosomal sorting complex required for transport (ESCRT) machinery. CC2D1A and CC2D1B interact with the CHMP4 family of proteins, the major subunit of the ESCRT-III complex, however, their roles in receptor degradation and signaling are poorly defined. Here, we report that CC2D1A binds to CHMP4B polymers formed on endosomes to regulate the endosomal sorting pathway. We show that depletion of CC2D1A and B accelerates degradation of EGFR and elicits rapid termination of its downstream signaling through ERK1 and 2. Depletion of CC2D1A and B promotes sorting of EGFR to ILV leading to its rapid lysosomal degradation. In addition, we show that knockdown of CC2D1A and B has similar effects on degradation and downstream signaling of another membrane receptor, TLR4. Thus, these findings suggest that CC2D1A and B may have broad effects on transmembrane receptors by preventing premature ILV sorting and termination of signaling."	"Estimation of relative free energies of binding using pre-computed ensembles based on the single-step free energy perturbation and the site-identification by Ligand competitive saturation approaches. Accurate and rapid estimation of relative binding affinities of ligand-protein complexes is a requirement of computational methods for their effective use in rational ligand design. Of the approaches commonly used, free energy perturbation (FEP) methods are considered one of the most accurate, although they require significant computational resources. Accordingly, it is desirable to have alternative methods of similar accuracy but greater computational efficiency to facilitate ligand design. In the present study relative free energies of binding are estimated for one or two non-hydrogen atom changes in compounds targeting the proteins ACK1 and p38 MAP kinase using three methods. The methods include standard FEP, single-step free energy perturbation (SSFEP) and the site-identification by ligand competitive saturation (SILCS) ligand grid free energy (LGFE) approach. Results show the SSFEP and SILCS LGFE methods to be competitive with or better than the FEP results for the studied systems, with SILCS LGFE giving the best agreement with experimental results. This is supported by additional comparisons with published FEP data on p38 MAP kinase inhibitors. While both the SSFEP and SILCS LGFE approaches require a significant upfront computational investment, they offer a 1000-fold computational savings over FEP for calculating the relative affinities of ligand modifications once those pre-computations are complete. An illustrative example of the potential application of these methods in the context of screening large numbers of transformations is presented. Thus, the SSFEP and SILCS LGFE approaches represent viable alternatives for actively driving ligand design during drug discovery and development. © 2016 Wiley Periodicals, Inc."	"5-HT1A receptor gene silencers Freud-1 and Freud-2 are differently expressed in the brain of rats with genetically determined high level of fear-induced aggression or its absence. Serotonin 5-HT1A receptor is known to play a crucial role in the mechanisms of genetically defined aggression. In its turn, 5-HT1A receptor functional state is under control of multiple factors. Among others, transcriptional factors Freud-1 and Freud-2 are known to be involved in the repression of 5-HT1A receptor gene expression. However, implication of these factors in the regulation of behavior is unclear. Here, we investigated the expression of 5-HT1A receptor and silencers Freud-1 and Freud-2 in the brain of rats selectively bred for 85 generations for either high level of fear-induced aggression or its absence. It was shown that Freud-1 and Freud-2 levels were different in aggressive and nonaggressive animals. Freud-1 protein level was decreased in the hippocampus, whereas Freud-2 protein level was increased in the frontal cortex of highly aggressive rats. There no differences in 5-HT1A receptor gene expression were found in the brains of highly aggressive and nonaggressive rats. However, 5-HT1A receptor protein level was decreased in the midbrain and increased in the hippocampus of highly aggressive rats. These data showed the involvement of Freud-1 and Freud-2 in the regulation of genetically defined fear-induced aggression. However, these silencers do not affect transcription of the 5-HT1A receptor gene in the investigated rats. Our data indicate the implication of posttranscriptional rather than transcriptional regulation of 5-HT1A receptor functional state in the mechanisms of genetically determined aggressive behavior. On the other hand, the implication of other transcriptional regulators for 5-HT1A receptor gene in the mechanisms of genetically defined aggression could be suggested."	"shRNA-Based Screen Identifies Endocytic Recycling Pathway Components That Act as Genetic Modifiers of Alpha-Synuclein Aggregation, Secretion and Toxicity. Alpha-Synuclein (aSyn) misfolding and aggregation is common in several neurodegenerative diseases, including Parkinson's disease and dementia with Lewy bodies, which are known as synucleinopathies. Accumulating evidence suggests that secretion and cell-to-cell trafficking of pathological forms of aSyn may explain the typical patterns of disease progression. However, the molecular mechanisms controlling aSyn aggregation and spreading of pathology are still elusive. In order to obtain unbiased information about the molecular regulators of aSyn oligomerization, we performed a microscopy-based large-scale RNAi screen in living cells. Interestingly, we identified nine Rab GTPase and kinase genes that modulated aSyn aggregation, toxicity and levels. From those, Rab8b, Rab11a, Rab13 and Slp5 were able to promote the clearance of aSyn inclusions and rescue aSyn induced toxicity. Furthermore, we found that endocytic recycling and secretion of aSyn was enhanced upon Rab11a and Rab13 expression in cells accumulating aSyn inclusions. Overall, our study resulted in the identification of new molecular players involved in the aggregation, toxicity, and secretion of aSyn, opening novel avenues for our understanding of the molecular basis of synucleinopathies. "	"Syndromic craniosynostosis associated with microdeletion of chromosome 19p13.12-19p13.2. Craniosynostosis, a condition in which the cranial sutures prematurely fuse, can lead to elevated intracranial pressure and craniofacial abnormalities in young children. Currently surgical intervention is the only therapeutic option for patients with this condition. Craniosynostosis has been associated with a variety of different gene mutations and chromosome anomalies. Here we describe three cases of partial deletion of chromosome 19p. Two of the cases present with syndromic craniosynostosis while one has metopic ridging. A review of the genes involved in the rearrangements between the three cases suggests several gene candidates for craniosynostosis. CALR and DAND5, BMP regulators involved in osteoblast differentiation, and MORG1, a mediator of osteoclast dysregulation may play a role in abnormal cranial vault development. Additionally, CACNA1A, a gene that when mutated is associated with epilepsy and CC2D1A, a gene associated with nonsyndromic mental retardation may contribute to additional phenotypic features seen in the patients we describe. In addition, these findings further support the need for genetic testing in cases of syndromic craniosynostosis."	"Cc2d1a Loss of Function Disrupts Functional and Morphological Development in Forebrain Neurons Leading to Cognitive and Social Deficits. Loss-of-function (LOF) mutations in CC2D1A cause a spectrum of neurodevelopmental disorders, including intellectual disability, autism spectrum disorder, and seizures, identifying a critical role for this gene in cognitive and social development. CC2D1A regulates intracellular signaling processes that are critical for neuronal function, but previous attempts to model the human LOF phenotypes have been prevented by perinatal lethality in Cc2d1a-deficient mice. To overcome this challenge, we generated a floxed Cc2d1a allele for conditional removal of Cc2d1a in the brain using Cre recombinase. While removal of Cc2d1a in neuronal progenitors using Cre expressed from the Nestin promoter still causes death at birth, conditional postnatal removal of Cc2d1a in the forebrain via calcium/calmodulin-dependent protein kinase II-alpha (CamKIIa) promoter-driven Cre generates animals that are viable and fertile with grossly normal anatomy. Analysis of neuronal morphology identified abnormal cortical dendrite organization and a reduction in dendritic spine density. These animals display deficits in neuronal plasticity and in spatial learning and memory that are accompanied by reduced sociability, hyperactivity, anxiety, and excessive grooming. Cc2d1a conditional knockout mice therefore recapitulate features of both cognitive and social impairment caused by human CC2D1A mutation, and represent a model that could provide much needed insights into the developmental mechanisms underlying nonsyndromic neurodevelopmental disorders."	"The roles of CC2D1A and HTR1A gene expressions in autism spectrum disorders. Classical autism belongs to a group of heterogeneous disorders known as autism spectrum disorders (ASD). Autism is defined as a neurodevelopmental disorder, characterized by repetitive stereotypic behaviors or restricted interests, social withdrawal, and communication deficits. Numerous susceptibility genes and chromosomal abnormalities have been reported in association with autism but the etiology of this disorder is unknown in many cases. CC2D1A gene has been linked to mental retardation (MR) in a family with a large deletion before. Intellectual disability (ID) is a common feature of autistic cases. Therefore we aimed to investigate the expressions of CC2D1A and HTR1A genes with the diagnosis of autism in Turkey. Forty-four autistic patients (35 boys, 9 girls) and 27 controls were enrolled and obtained whole blood samples to isolate RNA samples from each participant. CC2D1A and HTR1A gene expressions were assessed by quantitative Real-Time PCR (qRT-PCR) in Genome and Stem Cell Center, Erciyes University. Both expressions of CC2D1A and HTR1A genes studied on ASD cases and controls were significantly different (p &lt; 0.001). The expression of HTR1A was undetectable in the ASD samples. Comparison of ID and CC2D1A gene expression was also found statistically significant (p = 0.028). CC2D1A gene expression may be used as a candidate gene for ASD cases with ID. Further studies are needed to investigate the potential roles of these CC2D1A and HTR1A genes in their related pathways in ASD."	"The Mammalian Orthologs of Drosophila Lgd, CC2D1A and CC2D1B, Function in the Endocytic Pathway, but Their Individual Loss of Function Does Not Affect Notch Signalling. CC2D1A and CC2D1B belong to the evolutionary conserved Lgd protein family with members in all multi-cellular animals. Several functions such as centrosomal cleavage, involvement in signalling pathways, immune response and synapse maturation have been described for CC2D1A. Moreover, the Drosophila melanogaster ortholog Lgd was shown to be involved in the endosomal trafficking of the Notch receptor and other transmembrane receptors and physically interacts with the ESCRT-III component Shrub/CHMP4. To determine if this function is conserved in mammals we generated and characterized Cc2d1a and Cc2d1b conditional knockout mice. While Cc2d1b deficient mice displayed no obvious phenotype, we found that Cc2d1a deficient mice as well as conditional mutants that lack CC2D1A only in the nervous system die shortly after birth due to respiratory distress. This finding confirms the suspicion that the breathing defect is caused by the central nervous system. However, an involvement in centrosomal function could not be confirmed in Cc2d1a deficient MEF cells. To analyse an influence on Notch signalling, we generated intestine specific Cc2d1a mutant mice. These mice did not display any alterations in goblet cell number, proliferating cell number or expression of the Notch reporter Hes1-emGFP, suggesting that CC2D1A is not required for Notch signalling. However, our EM analysis revealed that the average size of endosomes of Cc2d1a mutant cells, but not Cc2d1b mutant cells, is increased, indicating a defect in endosomal morphogenesis. We could show that CC2D1A and its interaction partner CHMP4B are localised on endosomes in MEF cells, when the activity of the endosomal protein VPS4 is reduced. This indicates that CC2D1A cycles between the cytosol and the endosomal membrane. Additionally, in rescue experiments in D. melanogaster, CC2D1A and CC2D1B were able to functionally replace Lgd. Altogether our data suggest a functional conservation of the Lgd protein family in the ESCRT-III mediated process in metazoans. "	"Akt Kinase-Interacting Protein 1 Signals through CREB to Drive Diffuse Malignant Mesothelioma. Diffuse malignant mesothelioma (DMM) is a tumor of serosal membranes with propensity for progressive local disease. Because current treatment options are largely ineffective, novel therapeutic strategies based on molecular mechanisms and the disease characteristics are needed to improve the outcomes of patients with this disease. Akt kinase interacting protein 1 (Aki1; Freud-1/CC2D1A) is a scaffold protein for the PI3K-PDK1-Akt signaling module that helps determine receptor signal selectivity for EGFR. Aki1 has been suggested as a therapeutic target, but its potential has yet to be evaluated in a tumor setting. Here, we report evidence supporting its definition as a therapeutic target in DMM. In cell-based assays, Aki1 silencing decreased cell viability and caused cell-cycle arrest of multiple DMM cell lines via effects on the PKA-CREB1 signaling pathway. Blocking CREB activity phenocopied Aki1 silencing. Clinically, Aki1 was expressed in most human DMM specimens where its expression correlated with phosphorylated CREB1. Notably, Aki1 siRNA potently blocked tumor growth in an orthotopic implantation model of DMM when administered directly into the pleural cavity of tumor-bearing mice. Our findings suggest an important role for the Aki1-CREB axis in DMM pathogenesis and provide a preclinical rationale to target Aki1 by intrathoracic therapy in locally advanced tumors."	"Lgd regulates the activity of the BMP/Dpp signalling pathway during Drosophila oogenesis. The tumour suppressor gene lethal (2) giant discs (lgd) is involved in endosomal trafficking of transmembrane proteins in Drosophila. Loss of function results in the ligand-independent activation of the Notch pathway in all imaginal disc cells and follicle cells. Analysis of lgd loss of function has largely been restricted to imaginal discs and suggests that no other signalling pathway is affected. The devotion of Lgd to the Notch pathway was puzzling given that lgd loss of function also affects trafficking of components of other signalling pathways, such as the Dpp (a Drosophila BMP) pathway. Moreover, Lgd physically interacts with Shrub, a fundamental component of the ESCRT trafficking machinery, whose loss of function results in the activation of several signalling pathways. Here, we show that during oogenesis lgd loss of function causes ectopic activation of the Drosophila BMP signalling pathway. This activation occurs in somatic follicle cells as well as in germline cells. The activation in germline cells causes an extra round of division, producing egg chambers with 32 instead of 16 cells. Moreover, more germline stem cells were formed. The lgd mutant cells are defective in endosomal trafficking, causing an accumulation of the type I Dpp receptor Thickveins in maturing endosomes, which probably causes activation of the pathway. Taken together, these results show that lgd loss of function causes various effects among tissues and can lead to the activation of signalling pathways other than Notch. They further show that there is a role for the endosomal pathway during oogenesis. "	"Sensors at centrosomes reveal determinants of local separase activity. Separase is best known for its function in sister chromatid separation at the metaphase-anaphase transition. It also has a role in centriole disengagement in late mitosis/G1. To gain insight into the activity of separase at centrosomes, we developed two separase activity sensors: mCherry-Scc1(142-467)-ΔNLS-eGFP-PACT and mCherry-kendrin(2059-2398)-eGFP-PACT. Both localize to the centrosomes and enabled us to monitor local separase activity at the centrosome in real time. Both centrosomal sensors were cleaved by separase before anaphase onset, earlier than the corresponding H2B-mCherry-Scc1(142-467)-eGFP sensor at chromosomes. This indicates that substrate cleavage by separase is not synchronous in the cells. Depletion of the proteins astrin or Aki1, which have been described as inhibitors of centrosomal separase, did not led to a significant activation of separase at centrosomes, emphasizing the importance of direct separase activity measurements at the centrosomes. Inhibition of polo-like kinase Plk1, on the other hand, decreased the separase activity towards the Scc1 but not the kendrin reporter. Together these findings indicate that Plk1 regulates separase activity at the level of substrate affinity at centrosomes and may explain in part the role of Plk1 in centriole disengagement. "	"Characterization of the human NEK7 interactome suggests catalytic and regulatory properties distinct from those of NEK6. Human NEK7 is a regulator of cell division and plays an important role in growth and survival of mammalian cells. Human NEK6 and NEK7 are closely related, consisting of a conserved C-terminal catalytic domain and a nonconserved and disordered N-terminal regulatory domain, crucial to mediate the interactions with their respective proteins. Here, in order to better understand NEK7 cellular functions, we characterize the NEK7 interactome by two screening approaches: one using a yeast two-hybrid system and the other based on immunoprecipitation followed by mass spectrometry analysis. These approaches led to the identification of 61 NEK7 interactors that contribute to a variety of biological processes, including cell division. Combining additional interaction and phosphorylation assays from yeast two-hybrid screens, we validated CC2D1A, TUBB2B, MNAT1, and NEK9 proteins as potential NEK7 interactors and substrates. Notably, endogenous RGS2, TUBB, MNAT1, NEK9, and PLEKHA8 localized with NEK7 at key sites throughout the cell cycle, especially during mitosis and cytokinesis. Furthermore, we obtained evidence that the closely related kinases NEK6 and NEK7 do not share common interactors, with the exception of NEK9, and display different modes of protein interaction, depending on their N- and C-terminal regions, in distinct fashions. In summary, our work shows for the first time a comprehensive NEK7 interactome that, combined with functional in vitro and in vivo assays, suggests that NEK7 is a multifunctional kinase acting in different cellular processes in concert with cell division signaling and independently of NEK6."	"CC2D1A regulates human intellectual and social function as well as NF-κB signaling homeostasis. Autism spectrum disorder (ASD) and intellectual disability (ID) are often comorbid, but the extent to which they share common genetic causes remains controversial. Here, we present two autosomal-recessive &quot;founder&quot; mutations in the CC2D1A gene causing fully penetrant cognitive phenotypes, including mild-to-severe ID, ASD, as well as seizures, suggesting shared developmental mechanisms. CC2D1A regulates multiple intracellular signaling pathways, and we found its strongest effect to be on the transcription factor nuclear factor κB (NF-κB). Cc2d1a gain and loss of function both increase activation of NF-κB, revealing a critical role of Cc2d1a in homeostatic control of intracellular signaling. Cc2d1a knockdown in neurons reduces dendritic complexity and increases NF-κB activity, and the effects of Cc2d1a depletion can be rescued by inhibiting NF-κB activity. Homeostatic regulation of neuronal signaling pathways provides a mechanism whereby common founder mutations could manifest diverse symptoms in different patients. "	"Expression of Akt kinase-interacting protein 1, a scaffold protein of the PI3K/PDK1/Akt pathway, in pancreatic cancer. Akt kinase-interacting protein 1 (Aki1) has been reported to be a scaffold protein of the PI3K (phosphoinositide 3-kinase)/PDK1 (3-phosphoinositide-dependent protein kinase)/Akt pathway and to interact with epidermal growth factor receptor signaling. Although Aki1 has been reported to be expressed in lung cancer, the significance of its expression in pancreatic cancer has not been clarified. The expression of Aki1 and its associated proteins was assayed in pancreatic cancer cell lines, and its involvement in cell viability was examined by treatment with Aki1 small interfering RNA. We also assessed the immunohistochemical expression of Aki1 in tissue samples from 60 patients with pancreatic cancer. All of the pancreatic cancer cell lines expressed Aki1 and its associated proteins at various levels. Treatment with Aki1 small interfering RNA or PI3K inhibitor inhibited the viability of Panc1 cells. Silencing of Aki1 in Panc1 cells reduced the phosphorylation of Akt and increased the phosphorylation of cleaved PARP. The Aki1 was expressed in 25 (42%) of the 60 pancreatic cancers, but there was no correlation between Aki1 expression and clinicopathologic parameters. We observed a statistically significant correlation between Aki1 and p-Akt expression (P = 0.016). Inhibition of the Aki1-Akt axis may be a therapeutic target in some patients with pancreatic cancer."	"A new case of de novo 19p13.2p13.12 deletion in a girl with overgrowth and severe developmental delay. We report clinical and molecular cytogenetic characterization of a 2 year-old girl with 19p13.2p13.12 microdeletion and compare her clinical features with those of three other patients reported before. Array comparative genomic hybridization (aCGH) revealed in the present patient a de novo microdeletion of 1.45 Mb within 19p13.2p13.12. The deletion includes seven OMIM genes: MAN2B1, RNASEH2A, KLF1, GCDH, NFIX, CACNA1A and CC2D1A. The present case and three other patients with partially overlapping 19p13 microdeletion share the following features: psychomotor and language delay, intellectual disability, seizures, hypotonia, skeletal anomalies and facial dysmorphism. The smallest region of overlapping between all four reported patients is around 300 kb and spans only two genes: NFIX and CACNA1A. Their haploinsufficincy could be the base for the phenotype -genotype correlation."	"Stress-induced alterations in 5-HT1A receptor transcriptional modulators NUDR and Freud-1. The effect of stress on the mRNA and protein level of the 5-HT1A receptor and two of its key transcriptional modulators, NUDR and Freud-1, was examined in the prefrontal cortex (PFC) and hippocampus (Hp) using rodent models: olfactory bulbectomy (OB) and prenatal stress (PS) in male and female rats; chronic mild stress in male rats (CMS) and pregnancy stress. In PFC, CMS induced the most widespread changes, with significant reduction in both mRNA and protein levels of NUDR, 5-HT1A receptor and in Freud-1 mRNA; while in Hp 5-HT1A receptor and Freud-1 protein levels were also decreased. In male, but not female OB rats PFC Freud-1 and 5-HT1A receptor protein levels were reduced, while in Hp 5-HT1A receptor, Freud-1 and NUDR mRNA's but not protein were reduced. In PS rats PFC 5-HT1A receptor protein was reduced more in females than males; while in Hp Freud-1 protein was increased in females. In pregnancy stress, PFC NUDR, Freud-1 and 5-HT1A protein receptor levels were reduced, and in HP 5-HT1A receptor protein levels were also reduced; in HP only NUDR and Freud-1 mRNA levels were reduced. Overall, CMS and stress during pregnancy produced the most salient changes in 5-HT1A receptor and transcription factor expression, suggesting a primary role for altered transcription factor expression in chronic regulation of 5-HT1A receptor expression. By contrast, OB (in males) and PS (in females) produced gender-specific reductions in PFC 5-HT1A receptor protein levels, suggesting a role for post-transcriptional regulation. These and previous data suggest that chronic stress might be a key regulator of NUDR/Freud-1 gene expression. "	"Serotonin-prefrontal cortical circuitry in anxiety and depression phenotypes: pivotal role of pre- and post-synaptic 5-HT1A receptor expression. Decreased serotonergic activity has been implicated in anxiety and major depression, and antidepressants directly or indirectly increase the long-term activity of the serotonin system. A key component of serotonin circuitry is the 5-HT1A autoreceptor, which functions as the major somatodendritic autoreceptor to negatively regulate the &quot;gain&quot; of the serotonin system. In addition, 5-HT1A heteroreceptors are abundantly expressed post-synaptically in the prefrontal cortex (PFC), amygdala, and hippocampus to mediate serotonin actions on fear, anxiety, stress, and cognition. Importantly, in the PFC 5-HT1A heteroreceptors are expressed on at least two antagonist neuronal populations: excitatory pyramidal neurons and inhibitory interneurons. Rodent models implicate the 5-HT1A receptor in anxiety- and depression-like phenotypes with distinct roles for pre- and post-synaptic 5-HT1A receptors. In this review, we present a model of serotonin-PFC circuitry that integrates evidence from mouse genetic models of anxiety and depression involving knockout, suppression, over-expression, or mutation of genes of the serotonin system including 5-HT1A receptors. The model postulates that behavioral phenotype shifts as serotonin activity increases from none (depressed/aggressive not anxious) to low (anxious/depressed) to high (anxious, not depressed). We identify a set of conserved transcription factors including Deaf1, Freud-1/CC2D1A, Freud-2/CC2D1B and glucocorticoid receptors that may confer deleterious regional changes in 5-HT1A receptors in depression, and how future treatments could target these mechanisms. Further studies to specifically test the roles and regulation of pyramidal vs. interneuronal populations of 5-HT receptors are needed better understand the role of serotonin in anxiety and depression and to devise more effective targeted therapeutic approaches. "	"Computational analysis of TRAPPC9: candidate gene for autosomal recessive non-syndromic mental retardation. Mental retardation (MR)/ intellectual disability (ID) is a neuro-developmental disorder characterized by a low intellectual quotient (IQ) and deficits in adaptive behavior related to everyday life tasks such as delayed language acquisition, social skills or self-help skills with onset before age 18. To date, a few genes (PRSS12, CRBN, CC2D1A, GRIK2, TUSC3, TRAPPC9, TECR, ST3GAL3, MED23, MAN1B1, NSUN1) for autosomal-recessive forms of non syndromic MR (NS-ARMR) have been identified and established in various families with ID. The recently reported candidate gene TRAPPC9 was selected for computational analysis to explore its potentially important role in pathology as it is the only gene for ID reported in more than five different familial cases worldwide. YASARA (12.4.1) was utilized to generate three dimensional structures of the candidate gene TRAPPC9. Hybrid structure prediction was employed. Crystal Structure of a Conserved Metalloprotein From Bacillus Cereus (3D19-C) was selected as best suitable template using position-specific iteration-BLAST. Template (3D19-C) parameters were based on E-value, Z-score and resolution and quality score of 0.32, -1.152, 2.30°A and 0.684 respectively. Model reliability showed 93.1% residues placed in the most favored region with 96.684 quality factor, and overall 0.20 G-factor (dihedrals 0.06 and covalent 0.39 respectively). Protein-Protein docking analysis demonstrated that TRAPPC9 showed strong interactions of the amino acid residues S(253), S(251), Y(256), G(243), D(131) with R(105), Q(425), W(226), N(255), S(233), its functional partner 1KBKB. Protein-protein interacting residues could facilitate the exploration of structural and functional outcomes of wild type and mutated TRAPCC9 protein. Actively involved residues can be used to elucidate the binding properties of the protein, and to develop drug therapy for NS-ARMR patients."	"Phosphodiesterase activity is regulated by CC2D1A that is implicated in non-syndromic intellectual disability. Cyclic adenosine 3',5'-monophosphate (cAMP) is a key regulator of many cellular processes, including in the neuronal system, and its activity is tuned by Phosphodiesterase (PDE) activation. Further, the CC2D1A protein, consisting of N-Terminal containing four DM14 domains and C-terminal containing C2 domain, was shown to regulate the cAMP-PKA pathway. A human deletion mutation lacking the fourth DM14 and the adjacent C2 domain results in Non Syndromic Intellectual Disability (NSID) also referred to as Non Syndromic Mental Retardation (NSMR). Here we demonstrate that in Mouse Embryonic Fibroblasts (MEF) CC2D1A co-localizes with PDE4D in the cytosol before cAMP stimulation and on the periphery after stimulation, and that the movement to the periphery requires the full-length CC2D1A. In CC2D1A mouse mutant cells, the absence of three of the four DM14 domains abolishes migration of the complex to the periphery and causes constitutive phosphorylation of PDE4D Serine 126 (S126) via the cAMP-dependent protein kinase A (PKA) resulting in PDE4D hyperactivity. Suppressing PDE4D activity with Rolipram in turn restores the down-stream phosphorylation of the &quot;cAMP response element-binding protein&quot; (CREB) that is defective in mouse mutant cells. Our findings suggest that CC2D1A is a novel regulator of PDE4D. CC2D1A interacts directly with PDE4D regulating its activity and thereby fine-tuning cAMP-dependent downstream signaling. Based on our in vitro evidence we propose a model which links CC2D1A structure and function to cAMP homeostasis thereby affecting CREB phosphorylation. We speculate that CC2D1A and/or PDE4D may be promising targets for therapeutic interventions in many disorders with impaired PDE4D function such as NSID."	"Akt kinase-interacting protein1, a novel therapeutic target for lung cancer with EGFR-activating and gatekeeper mutations. Despite initial dramatic response, epidermal growth factor receptor (EGFR) mutant lung cancer patients always acquire resistance to EGFR-tyrosine kinase inhibitors (TKIs). Gatekeeper T790M mutation in EGFR is the most prevalent genetic alteration underlying acquired resistance to EGFR-TKI, and EGFR mutant lung cancer cells are reported to be addictive to EGFR/Akt signaling even after acquired T790M mutation. Here, we focused on Akt kinase-interacting protein1 (Aki1), a scaffold protein of PI3K (phosphoinositide 3-kinase)/PDK1 (3-phosphoinositide-dependent protein kinase)/Akt that determines receptor signal selectivity for non-mutated EGFR, and assessed its role in EGFR mutant lung cancer with or without gatekeeper T790M mutation. Cell line-based assays showed that Aki1 constitutively associates with mutant EGFR in lung cancer cells with (H1975) or without (PC-9 and HCC827) T790M gatekeeper mutation. Silencing of Aki1 induced apoptosis of EGFR mutant lung cancer cells. Treatment with Aki1 siRNA dramatically inhibited growth of H1975 cells in a xenograft model. Moreover, silencing of Aki1 further potentiated growth inhibitory effect of new generation EGFR-TKIs against H1975 cells in vitro. Aki1 was frequently expressed in tumor cells of EGFR mutant lung cancer patients (53/56 cases), including those with acquired resistance to EGFR-TKI treatment (7/7 cases). Our data suggest that Aki1 may be a critical mediator of survival signaling from mutant EGFR to Akt, and may therefore be an ideal target for EGFR mutant lung cancer patients, especially those with acquired EGFR-TKI resistance due to EGFR T790M gatekeeper mutation. "	"TBK1-associated protein in endolysosomes (TAPE)/CC2D1A is a key regulator linking RIG-I-like receptors to antiviral immunity. Retinoic acid-inducible gene I (RIG-I)-like receptors (RLRs) are key RNA viral sensors for triggering antiviral immunity. The underlying mechanisms for RLRs to trigger antiviral immunity have yet to be explored. Here we report the identification of TAPE (TBK1-associated protein in endolysosomes) as a novel regulator of the RLR pathways. TAPE functionally and physically interacts with RIG-I, MDA5, and IPS-1 to activate the IFN-β promoter. TAPE knockdown impairs IFN-β activation induced by RLRs but not IPS-1. TAPE-deficient cells are defective in cytokine production upon RLR ligand stimulation. During RNA virus infection, TAPE knockdown or deficiency diminishes cytokine production and antiviral responses. Our data demonstrate a critical role for TAPE in linking RLRs to antiviral immunity."	"Expanding the spectrum of rearrangements involving chromosome 19: a mild phenotype associated with a 19p13.12-p13.13 deletion. We report on a patient with a 1.2 Mb 19p13.12-p13.13 deletion. Compared to previously reported individuals with partially overlapping deletions, the propositus presented with a less severe phenotype, consisting of mild intellectual disability and behavior anomalies, with episodes of simple febrile seizures and without significant physical anomalies or major malformations. The deleted region includes 29 coding genes, some of which have already been demonstrated to be involved in cognitive processes. Mutations in two of them, CC2D1A and TECR, were recently reported to be responsible for non-syndromal, autosomal recessive intellectual disability. The residual alleles of all of these genes were submitted to sequence analysis. No sequence variants were found that could be considered pathogenic. This patient constitutes a further example of the wide phenotypic variability associated with chromosomal rearrangements, likely due to the different size of deleted/duplicated segments."	"CC2D1A is a regulator of ESCRT-III CHMP4B. Endosomal sorting complexes required for transport (ESCRTs) regulate diverse processes ranging from receptor sorting at endosomes to distinct steps in cell division and budding of some enveloped viruses. Common to all processes is the membrane recruitment of ESCRT-III that leads to membrane fission. Here, we show that CC2D1A is a novel regulator of ESCRT-III CHMP4B function. We demonstrate that CHMP4B interacts directly with CC2D1A and CC2D1B with nanomolar affinity by forming a 1:1 complex. Deletion mapping revealed a minimal CC2D1A-CHMP4B binding construct, which includes a short linear sequence within the third DM14 domain of CC2D1A. The CC2D1A binding site on CHMP4B was mapped to the N-terminal helical hairpin. Based on a crystal structure of the CHMP4B helical hairpin, two surface patches were identified that interfere with CC2D1A interaction as determined by surface plasmon resonance. Introducing these mutations into a C-terminal truncation of CHMP4B that exerts a potent dominant negative effect on human immunodeficiency virus type 1 budding revealed that one of the mutants lost this effect completely. This suggests that the identified CC2D1A binding surface might be required for CHMP4B polymerization, which is consistent with the finding that CC2D1A binding to CHMP4B prevents CHMP4B polymerization in vitro. Thus, CC2D1A might act as a negative regulator of CHMP4B function."	"Protein implicated in nonsyndromic mental retardation regulates protein kinase A (PKA) activity. Mutation of the coiled-coil and C2 domain-containing 1A (CC2D1A) gene, which encodes a C2 domain and DM14 domain-containing protein, has been linked to severe autosomal recessive nonsyndromic mental retardation. Using a mouse model that produces a truncated form of CC2D1A that lacks the C2 domain and three of the four DM14 domains, we show that CC2D1A is important for neuronal differentiation and brain development. CC2D1A mutant neurons are hypersensitive to stress and have a reduced capacity to form dendrites and synapses in culture. At the biochemical level, CC2D1A transduces signals to the cyclic adenosine 3',5'-monophosphate (cAMP)-protein kinase A (PKA) pathway during neuronal cell differentiation. PKA activity is compromised, and the translocation of its catalytic subunit to the nucleus is also defective in CC2D1A mutant cells. Consistently, phosphorylation of the PKA target cAMP-responsive element-binding protein, at serine 133, is nearly abolished in CC2D1A mutant cells. The defects in cAMP/PKA signaling were observed in fibroblast, macrophage, and neuronal primary cells derived from the CC2D1A KO mice. CC2D1A associates with the cAMP-PKA complex following forskolin treatment and accumulates in vesicles or on the plasma membrane in wild-type cells, suggesting that CC2D1A may recruit the PKA complex to the membrane to facilitate signal transduction. Together, our data show that CC2D1A is an important regulator of the cAMP/PKA signaling pathway, which may be the underlying cause for impaired mental function in nonsyndromic mental retardation patients with CC2D1A mutation."	"17β-estradiol-induced regulation of the novel 5-HT1A-related transcription factors NUDR and Freud-1 in SH SY5Y cells. Nuclear deformed epidermal autoregulatory factor-1 (NUDR/Deaf-1) and five prime repressor element under dual repression (Freud-1) are novel transcriptional regulators of the 5-HT(1A) receptor, a receptor that has been implicated in the pathophysiology of various psychiatric illnesses. The antidepressant effect of 17β-Estradiol (17βE(2)) is purported to involve the downregulation of this receptor. We investigated the possible role of NUDR and Freud-1 in 17βE(2)-induced downregulation of the 5-HT(1A) receptor in the neuroblastoma cell line SH SY5Y. Cells were treated with 10 nM of 17βE(2) for 3 or 48 h, followed by a 24-h withdrawal period. Proteins were isolated and analyzed by western blotting. 17βE(2) treatment increased NUDR immunoreactivity while Freud-1 and the 5-HT(1A) receptor showed significant decreases. Upon withdrawal of 17βE(2), protein expression returned to control levels, except for NUDR, which remained significantly elevated in the 3-h treatment. Taken together, these data support a non-genomic downregulation of 5-HT(1A) receptor protein by 17βE(2), which does not involve NUDR and Freud-1. Rather, changes in both transcription factors seem to be compensatory/homeostatic responses to changes in 5-HT(1A) receptor induced by 17βE(2). These observations further highlight the importance of NUDR and Freud-1 in regulating 5-HT(1A) receptor expression."	"Regulation of CHMP4/ESCRT-III function in human immunodeficiency virus type 1 budding by CC2D1A. The detachment of human immunodeficiency type 1 (HIV-1) virions depends on CHPM4 family members, which are late-acting components of the ESCRT pathway that mediate the cleavage of bud necks from the cytosolic side. We now show that in human cells, CHMP4 proteins are to a considerable extent bound to two high-molecular-weight proteins that we have identified as CC2D1A and CC2D1B. Both proteins bind to the core domain of CHMP4B, which has a strong propensity to polymerize and to inhibit HIV-1 budding. Further mapping showed that CC2D1A binds to an N-terminal hairpin within the CHMP4 core that has been implicated in polymerization. Consistent with a model in which CC2D1A and CC2D1B regulate CHMP4 polymerization, the overexpression of CC2D1A inhibited both the release of wild-type HIV-1 and the CHMP4-dependent rescue of an HIV-1 L domain mutant by exogenous ALIX. Furthermore, small interfering RNA against CC2D1A or CC2D1B increased HIV-1 budding under certain conditions. CC2D1A and CC2D1B possess four Drosophila melanogaster 14 (DM14) domains, and we demonstrate that these constitute novel CHMP4 binding modules. The DM14 domain that bound most avidly to CHMP4B was by itself sufficient to inhibit the function of ALIX in HIV-1 budding, indicating that the inhibition occurred through CHMP4 sequestration. However, N-terminal fragments of CC2D1A that did not interact with CHMP4B nevertheless retained a significant level of inhibitory activity. Thus, CC2D1A may also affect HIV-1 budding in a CHMP4-independent manner."	"Positive association of CC2D1A and CC2D2A gene haplotypes with mental retardation in a Han Chinese population. The CC2D1A and CC2D2A genes are involved in Ca(2+)-regulated signaling pathways and have recently been implicated in the etiology of mental retardation (MR). The aim of this study was to investigate whether CC2D1A and CC2D2A polymorphisms are associated with susceptibility to MR in a Han Chinese population using a family based association approach. The sample included 172 trios (parents and offspring), and all subjects were genotyped for several single-nucleotide polymorphisms covering CC2D1A and CC2D2A. Linkage disequilibrium (LD) analysis revealed that the rs6511901 and rs10410239 polymorphisms of CC2D1A were in strong LD (D'=0.865), and haplotype analysis showed evidence for over-transmission from parents to MR offspring (p=0.0009). The LD analysis also revealed that CC2D2A single-nucleotide polymorphisms rs10025837, rs13116304, and rs7661102 were in strong LD (D'=0.848), and haplotype analysis showed significant transmission disequilibrium (p=0.0004). The results suggest the involvement of CC2D1A and CC2D2A in MR in the Han Chinese population, and some specific haplotypes may be susceptible or protective."	"Transcriptional dysregulation of 5-HT1A autoreceptors in mental illness. The serotonin-1A (5-HT1A) receptor is among the most abundant and widely distributed 5-HT receptors in the brain, but is also expressed on serotonin neurons as an autoreceptor where it plays a critical role in regulating the activity of the entire serotonin system. Over-expression of the 5-HT1A autoreceptor has been implicated in reducing serotonergic neurotransmission, and is associated with major depression and suicide. Extensive characterization of the transcriptional regulation of the 5-HT1A gene (HTR1A) using cell culture systems has revealed a GC-rich &quot;housekeeping&quot; promoter that non-selectively drives its expression; this is flanked by a series of upstream repressor elements for REST, Freud-1/CC2D1A and Freud-2/CC2D1B factors that not only restrict its expression to neurons, but may also regulate the level of expression of 5-HT1A receptors in various subsets of neurons, including serotonergic neurons. A separate set of allele-specific factors, including Deaf1, Hes1 and Hes5 repress at the HTR1A C(-1019)G (rs6295) polymorphism in serotonergic neurons in culture, as well as in vivo. Pet1, an obligatory enhancer for serotonergic differentiation, has been identified as a potent activator of 5-HT1A autoreceptor expression. Taken together, these results highlight an integrated regulation of 5-HT1A autoreceptors that differs in several aspects from regulation of post-synaptic 5-HT1A receptors, and could be selectively targeted to enhance serotonergic neurotransmission."	"Cc2d1a, a C2 domain containing protein linked to nonsyndromic mental retardation, controls functional maturation of central synapses. Cc2d1a is an evolutionarily conserved protein composed of NH(2)-terminal Drosophila melanogaster 14 domain (DM14) domains and a COOH-terminal C2 domain. Human patients with homozygotic mutation in the gene suffer from nonsyndromic mental retardation, implying that Cc2d1a functions in the central nervous system. To examine the physiological role of the Cc2d1a, we generated and analyzed Cc2d1a knockout (KO) mice. Cc2d1a KO mice die soon after birth, apparently because of their inability to breathe. Histological analysis of Cc2d1a KO animals did not identify any structural defects in the peripheral respiratory apparatus. However, functional analysis of synapses formed between Cc2d1a-deficient cortical neurons revealed a robust increase in the pace of maturation of evoked synaptic responses as well as synaptic vesicle trafficking. This synaptic anomaly was rescued by reintroducing full-length Cc2d1a but not C2-domain-deletion mutant, underscoring the functional importance of C2 domain. Our data suggest that Cc2d1a is required for mouse survival and performs essential function in controlling functional maturation of synapses."	"TBK1-associated protein in endolysosomes (TAPE) is an innate immune regulator modulating the TLR3 and TLR4 signaling pathways. The innate immune system elicits the first wave of immune responses against pathogen infection. Its operational modes are complex and have yet to be defined. Here, we report the identification of an innate immune regulator termed TAPE (TBK1-associated protein in endolysosomes), previously known as CC2D1A/Freud-1/Aki-1, which modulates the TLR3 and TLR4 pathways. We found that TAPE activated the TBK1, NF-κB, and ERK pathways leading to IFN-β and inflammatory cytokine induction. TAPE was shown to colocalize with endosomal marker Rab5 and lysosomal marker LAMP1 in mammalian cells, suggesting that TAPE resided in endolysosomes. Knockdown of TAPE selectively impaired the TLR3 and endocytic TLR4 pathways to IFN-β induction. Furthermore, TAPE interacted and synergized with Trif to activate IFN-β. TAPE knockdown failed to block Trif-mediated IFN-β induction, whereas Trif knockdown impaired the TLR3 and TAPE cooperation on IFN-β induction, suggesting that TAPE acts upstream of Trif. Together, our data demonstrate a central role for TAPE in linking TLR3 and TLR4 to innate immune defenses at an early step."	"Freud-2/CC2D1B mediates dual repression of the serotonin-1A receptor gene. The serotonin-1A (5-HT1A) receptor functions as a pre-synaptic autoreceptor in serotonin neurons that regulates their activity, and is also widely expressed on non-serotonergic neurons as a post-synaptic heteroreceptor to mediate serotonin action. The 5-HT1A receptor gene is strongly repressed by a dual repressor element (DRE), which is recognized by two proteins: Freud-1/CC2D1A and another unknown protein. Here we identify mouse Freud-2/CC2D1B as the second repressor of the 5-HT1A-DRE. Freud-2 shares 50% amino acid identity with Freud-1, and contains conserved structural domains. Mouse Freud-2 bound specifically to the rat 5-HT1A-DRE adjacent to, and partially overlapping, the Freud-1 binding site. By supershift assay using nuclear extracts from L6 myoblasts, Freud-2-DRE complexes were distinguished from Freud-1-DRE complexes. Freud-2 mRNA and protein were detected throughout mouse brain and peripheral tissues. Freud-2 repressed 5-HT1A promoter-reporter constructs in a DRE-dependent manner in non-neuronal (L6) or 5-HT1A-expressing neuronal (NG108-15, RN46A) cell models. In NG108-15 cells, knockdown of Freud-2 using a specific short-interfering RNA reduced endogenous Freud-2 protein levels and decreased Freud-2 bound to the 5-HT1A-DRE as detected by chromatin immunoprecipitation assay, but increased 5-HT1A promoter activity and 5-HT1A protein levels. Taken together, these data show that Freud-2 is the second component that, with Freud-1, mediates dual repression of the 5-HT1A receptor gene at the DRE."	"CC2D1A, a DM14 and C2 domain protein, activates NF-kappaB through the canonical pathway. CC2D1A is an evolutionarily conserved protein that contains four DM14 domains at the N terminus and a C2 domain at the C terminus. Loss-of-function mutations in CC2D1A have been linked to mental retardation in human, but the biochemical function of this protein is largely unknown. Here, we show that CC2D1A is a potent activator of NF-kappaB. The activation of NF-kappaB by CC2D1A requires its C2 domain. CC2D1A activates NF-kappaB in a manner that depends on the ubiquitin-conjugating enzyme Ubc13, TNF receptor-associated factor TRAF2, the protein kinase TAK1, and the IkappaB kinase (IKK) complex. In addition, the deubiquitination enzyme Cylindromatosis (CYLD) negatively regulates the activity of CC2D1A. These results suggest that CC2D1A activates NF-kappaB through the canonical IKK pathway."	"Decreased expression of Freud-1/CC2D1A, a transcriptional repressor of the 5-HT1A receptor, in the prefrontal cortex of subjects with major depression. Serotonin1A (5-HT(1A)) receptors are reported altered in the brain of subjects with major depressive disorder (MDD). Recent studies have identified transcriptional regulators of the 5-HT(1A) receptor and have documented gender-specific alterations in 5-HT(1A) transcription factor and 5-HT(1A) receptors in female MDD subjects. The 5' repressor element under dual repression binding protein-1 (Freud-1) is a calcium-regulated repressor that negatively regulates the 5-HT(1A) receptor gene. This study documented the cellular expression of Freud-1 in the human prefrontal cortex (PFC) and quantified Freud-1 protein in the PFC of MDD and control subjects as well as in the PFC of rhesus monkeys chronically treated with fluoxetine. Freud-1 immunoreactivity was present in neurons and glia and was co-localized with 5-HT(1A) receptors. Freud-1 protein level was significantly decreased in the PFC of male MDD subjects (37%, p=0.02) relative to gender-matched control subjects. Freud-1 protein was also reduced in the PFC of female MDD subjects (36%, p=0.18) but was not statistically significant. When the data was combined across genders and analysed by age, the decrease in Freud-1 protein level was greater in the younger MDD subjects (48%, p=0.01) relative to age-matched controls as opposed to older depressed subjects. Similarly, 5-HT(1A) receptor protein was significantly reduced in the PFC of the younger MDD subjects (48%, p=0.01) relative to age-matched controls. Adult male rhesus monkeys administered fluoxetine daily for 39 wk revealed no significant change in cortical Freud-1 or 5-HT(1A) receptor proteins compared to vehicle-treated control monkeys. Reduced protein expression of Freud-1 in MDD subjects may reflect dysregulation of this transcription factor, which may contribute to the altered regulation of 5-HT(1A) receptors observed in subjects with MDD. These data may also suggest that reductions in Freud-1 protein expression in the PFC may be associated with early onset of MDD."	"Mitotic phosphorylation of Aki1 at Ser208 by cyclin B1-Cdk1 complex. Akt kinase-interacting protein 1 (Aki1)/Freud-1/CC2D1A is localized in the cytosol, nucleus, and centrosome. Aki1 plays distinct roles depending on its localization. In the cytosol, it acts as a scaffold protein in the phosphoinositide 3-kinase (PI3K)/3-phosphoinositide-dependent protein kinase 1 (PDK1)/Akt pathway. In the nucleus, it is a transcriptional repressor of the serotonin-1A (5-HT1A) receptor. In the centrosome, it regulates spindle pole localization of the cohesin subunit Scc1, thereby mediating centriole cohesion during mitosis. Although the function of Aki1 has been well clarified, the regulatory machinery of Aki1 is poorly understood. We previously found that Aki1 in mitotic cells displayed reduced mobility on immunoblot analysis, but the reason for this was unclear. Here we show that the electrophoretic mobility shift of Aki1 is derived from mitotic phosphorylation. The cyclin B1-cyclin-dependent kinase 1 (Cdk1) complex was found to be one of the kinases responsible for Aki1 phosphorylation during mitosis. We identified the Ser(208) residue of Aki1 as a cyclin B1-Cdk1 phosphorylation site. Furthermore, cyclin B1-Cdk1 inhibitor treatment was shown to attenuate the level of Aki1 in complex with Scc1, suggesting that Aki1 phosphorylation by cyclin B1-Cdk1 contributes to Aki1-Scc1 complex formation. Our results indicate that cyclin B1-Cdk1 is a kinase of Aki1 during mitosis and that its phosphorylation of Aki1 may regulate mitotic function."	"Chronic social defeat downregulates the 5-HT1A receptor but not Freud-1 or NUDR in the rat prefrontal cortex. The serotonin 1A receptor (5-HT1A) and its associated transcriptional regulators, five prime repressor element under dual repression (Freud-1) and nuclear-deformed epidermal autoregulatory factor (NUDR/Deaf-1) have been previously found to be the repressors for 5-HT1A in the serotonergic raphe neurons, and are also altered in postmortem brains of individuals with major depressive disorder (MDD) and in rats exposed to chronic restraint stress. We sought to find out if rats exposed to chronic social defeat (CSD) stress also show altered expression of these genes. Adult male Wistar rats were exposed to CSD stress for four consecutive weeks following which they were sacrificed and gene expression assessed in the prefrontal cortex (PFC) by quantitative real-time polymerase chain reaction. While CSD had no significant effects on NUDR and Freud-1 mRNA levels, 5-HT1A mRNA levels were significantly downregulated in defeated animals. The data suggest that regulatory factors other than Freud-1 and NUDR may be involved in the regulation of 5-HT1A expression in PFC during CSD stress. Furthermore, decreased levels of 5-HT1A following social defeat in the PFC are consistent with human postmortem results for this receptor in major depression and demonstrate the possibility that this receptor is involved in the pathophysiology of depression and other stress related disorders."	"Centrosomal Aki1 and cohesin function in separase-regulated centriole disengagement. Sister chromatid separation at anaphase is triggered by cleavage of the cohesin subunit Scc1, which is mediated by separase. Centriole disengagement also requires separase. This dual role of separase permits concurrent control of these events for accurate metaphase to anaphase transition. Although the molecular mechanism underlying sister chromatid cohesion has been clarified, that of centriole cohesion is poorly understood. In this study, we show that Akt kinase-interacting protein 1 (Aki1) localizes to centrosomes and regulates centriole cohesion. Aki1 depletion causes formation of multipolar spindles accompanied by centriole splitting, which is separase dependent. We also show that cohesin subunits localize to centrosomes and that centrosomal Scc1 is cleaved by separase coincidentally with chromatin Scc1, suggesting a role of Scc1 as a connector of centrioles as well as sister chromatids. Interestingly, Scc1 depletion strongly induces centriole splitting. Furthermore, Aki1 interacts with cohesin in centrosomes, and this interaction is required for centriole cohesion. We demonstrate that centrosome-associated Aki1 and cohesin play pivotal roles in preventing premature cleavage in centriole cohesion."	"Differential regulation of the serotonin 1 A transcriptional modulators five prime repressor element under dual repression-1 and nuclear-deformed epidermal autoregulatory factor by chronic stress. Chronic stress is known to affect brain areas involved in learning and emotional responses. These changes, thought to be related to the development of cognitive deficits are evident in major depressive disorder and other stress-related pathophysiologies. The serotonin-related transcription factors (Freud-1/CC2D1A; five prime repressor element under dual repression/coiled-coil C2 domain 1a, and NUDR/Deaf-1; nuclear-deformed epidermal autoregulatory factor) are two important regulators of the 5-HT1A receptor. Using Western blotting and quantitative real-time polymerase chain reaction (qPCR) we examined the expression of mRNA and proteins for Freud-1, NUDR, and the 5-HT1A receptor in the prefrontal cortex (PFC) of male rats exposed to chronic restraint stress (CRS; 6 h/day for 21 days). After 21 days of CRS, significant reductions in both Freud-1 mRNA and protein were observed in the PFC (36.8% and 32%, respectively; P&lt;0.001), while the levels of both NUDR protein and mRNA did not change significantly. Consistent with reduced Freud-1 protein, 5-HT1A receptor mRNA levels were equally upregulated in the PFC, while protein levels actually declined, suggesting post-transcriptional receptor downregulation. The data suggest that CRS produces distinct alterations in the serotonin system specifically altering Freud-1 and the 5-HT1A receptor in the PFC of the male rat while having no effect on NUDR. These results point to the importance of understanding the mechanism for the differential regulation of Freud-1 and NUDR in the PFC as a basis for understanding the related effects of chronic stress on the serotonin system (serotonin-related transcription factors) and stress-related disorders like depression."	"Human Freud-2/CC2D1B: a novel repressor of postsynaptic serotonin-1A receptor expression. Altered expression of serotonin-1A (5-HT1A) receptors, both presynaptic in the raphe nuclei and post-synaptic in limbic and cortical target areas, has been implicated in mood disorders such as major depression and anxiety. Within the 5-HT1A receptor gene, a powerful dual repressor element (DRE) is regulated by two protein complexes: Freud-1/CC2D1A and a second, unknown repressor. Here we identify human Freud-2/CC2D1B, a Freud-1 homologue, as the second repressor. Freud-2 distribution was examined with Northern and Western blot, reverse transcriptase polymerase chain reaction, and immunohistochemistry/immunofluorescence; Freud-2 function was examined by electrophoretic mobility shift, reporter assay, and Western blot. Freud-2 RNA was widely distributed in brain and peripheral tissues. Freud-2 protein was enriched in the nuclear fraction of human prefrontal cortex and hippocampus but was weakly expressed in the dorsal raphe nucleus. Freud-2 immunostaining was co-localized with 5-HT1A receptors, neuronal and glial markers. In prefrontal cortex, Freud-2 was expressed at similar levels in control and depressed male subjects. Recombinant hFreud-2 protein bound specifically to 5' or 3' human DRE adjacent to the Freud-1 site. Human Freud-2 showed strong repressor activity at the human 5-HT1A or heterologous promoter in human HEK-293 5-HT1A-negative cells and neuronal SK-N-SH cells, a model of postsynaptic 5-HT1A receptor-positive cells. Furthermore, small interfering RNA knockdown of endogenous hFreud-2 expression de-repressed 5-HT1A promoter activity and increased levels of 5-HT1A receptor protein in SK-N-SH cells. Human Freud-2 binds to the 5-HT1A DRE and represses the human 5-HT1A receptor gene to regulate its expression in non-serotonergic cells and neurons."	"Freud-1/Aki1, a novel PDK1-interacting protein, functions as a scaffold to activate the PDK1/Akt pathway in epidermal growth factor signaling. The phosphoinositide 3-kinase (PI3K)/3-phosphoinositide-dependent protein kinase 1 (PDK1)/Akt pathway regulates various cellular functions, especially cell survival and cell cycle progression. In contrast to other survival pathways, there have been few reports of scaffold proteins that regulate signaling cascade specificity in this pathway. Here we identify a 5' repressor element under dual-repression binding protein 1 (Freud-1)/Akt kinase-interacting protein 1 (Aki1) as a novel scaffold for the PDK1/Akt pathway. Freud-1/Aki1 (also known as CC2D1A) expression induced formation of a PDK1/Akt complex and regulated Akt activation in a concentration-dependent biphasic manner. Freud-1/Aki1 also associated with epidermal growth factor (EGF) receptor in response to EGF stimulation and was required for Akt activation induced by EGF, but not by insulin-like growth factor 1. Freud-1/Aki1 gene silencing decreased Akt kinase activity, resulting in induction of apoptosis and increased sensitivity toward chemotherapeutic agents. Our results suggest that Freud-1/Aki1 is a novel receptor-selective scaffold protein for the PDK1/Akt pathway and present a new activation mechanism of Akt."	"A defect in the TUSC3 gene is associated with autosomal recessive mental retardation. Recent studies have shown that autosomal recessive mental retardation (ARMR) is extremely heterogeneous, and there is reason to believe that the number of underlying gene defects goes into the thousands. To date, however, only four genes have been implicated in nonsyndromic ARMR (NS-ARMR): PRSS12 (neurotrypsin), CRBN (cereblon), CC2D1A, and GRIK2. As part of an ongoing systematic study aiming to identify ARMR genes, we investigated a large consanguineous family comprising seven patients with nonsyndromic ARMR in four sibships. Genome-wide SNP typing enabled us to map the relevant genetic defect to a 4.6 Mbp interval on chromosome 8. Haplotype analyses and copy-number studies led to the identification of a homozygous deletion partly removing TUSC3 (N33) in all patients. All obligate carriers of this family were heterozygous, but none of 192 unrelated healthy individuals from the same population carried this deletion. We excluded other disease-causing mutations in the coding regions of all genes within the linkage interval by sequencing; moreover, we verified the complete absence of a functional TUSC3 transcript in all patients through RT-PCR. TUSC3 is thought to encode a subunit of the endoplasmic reticulum-bound oligosaccharyltransferase complex that catalyzes a pivotal step in the protein N-glycosylation process. Our data suggest that in contrast to other genetic defects of glycosylation, inactivation of TUSC3 causes nonsyndromic MR, a conclusion that is supported by a separate report in this issue of AJHG. TUSC3 is only the fifth gene implicated in NS-ARMR and the first for which mutations have been reported in more than one family."	"Fine mapping of a locus for nonsyndromic mental retardation on chromosome 19p13. Mental retardation (MR) occurs in approximately 3% of the population and therefore significantly impacts public health. Despite this relatively high prevalence, the specific causes of MR remain unknown in most cases, although both genetic and environmental factors are known to contribute. We describe a consanguineous family with autosomal recessive (AR) nonsyndromic MR (NSMR). Because the consanguinity of this family is complex, we explore alternative approaches for generating accurate estimates of the evidence for linkage in this family, and demonstrate evidence for linkage to chromosome 19p13 (lod score ranging from 1.2 to 3.5, depending on assumptions of allele frequencies). Fine mapping of the linked region defined a critical region of 3.6 Mb, which overlaps with a previously reported gene (CC2D1A) for MR. However, no mutations in the coding region of this gene are present in the family we describe. These results suggest that another gene causing autosomal recessive nonsyndromic MR (ARNSMR) is located within this genomic region."	"CC2D2A, encoding a coiled-coil and C2 domain protein, causes autosomal-recessive mental retardation with retinitis pigmentosa. Autosomal-recessive inheritance is believed to be relatively common in mental retardation (MR), although only four genes for nonsyndromic autosomal-recessive mental retardation (ARMR) have been reported. In this study, we ascertained a consanguineous Pakistani family with ARMR in four living individuals from three branches of the family, plus an additional affected individual later identified as a phenocopy. Retinitis pigmentosa was present in affected individuals, but no other features suggestive of a syndromic form of MR were found. We used Affymetrix 500K microarrays to perform homozygosity mapping and identified a homozygous and haploidentical region of 11.2 Mb on chromosome 4p15.33-p15.2. Linkage analysis across this region produced a maximum two-point LOD score of 3.59. We sequenced genes within the critical region and identified a homozygous splice-site mutation segregating in the family, within a coiled-coil and C2 domain-containing gene, CC2D2A. This mutation leads to the skipping of exon 19, resulting in a frameshift and a truncated protein lacking the C2 domain. Conservation analysis for CC2D2A suggests a functional domain near the C terminus as well as the C2 domain. Preliminary functional studies of CC2D2A suggest a possible role in Ca(2+)-dependent signal transduction. Identifying the function of CC2D2A, and a possible common pathway with CC2D1A, in correct neuronal development and functioning may help identify possible therapeutic targets for MR."	"Genetics of autosomal recessive non-syndromic mental retardation: recent advances. The identification of the genes mutated in autosomal recessive non-syndromic mental retardation (ARNSMR) has been very active recently. This report presents an overview of the current knowledge on clinical data in ARNSMR and progress in research. To date, 12 ARNSMR loci have been mapped, and three genes identified. Mutations in known ARNSMR genes have been detected so far in only a small number of families; their contribution to mental retardation in the general population might be limited. The ARNSMR-causing genes belong to different protein families, including serine proteases, Adenosine 5'-triphosphate-dependent Lon proteases and calcium-regulated transcriptional repressors. All of the mutations in the ARNSMR-causing genes are protein truncating, indicating a putative severe loss-of-function effect. The future objective will be the development of diagnostic kits for molecular diagnosis in mentally retarded individuals in order to offer at-risk families pre-natal diagnosis to detect affected offspring."	"The mental retardation gene CC2D1A/Freud-1 encodes a long isoform that binds conserved DNA elements to repress gene transcription. The CC2D1A/Freud-1 gene has recently been linked to non-syndromic mental retardation and a short isoform of mouse Five prime REpressor Under Dual repression binding protein 1 (Freud-1) can repress the serotonin-1A (5-HT1A) receptor gene in rodent cells. In this study, we addressed the expression, localization and regulation of the human 5-HT1A receptor gene by a long isoform of human Freud-1 protein (Freud-1L). We show that human CC2D1A/Freud-1 RNA is expressed in brain and peripheral tissues and encodes short and long isoforms, which differ by an upstream in-frame translational start site. Whereas previous studies identified the short isoform of Freud-1 as the predominant isoform in rodent cells, we demonstrate that the long isoform is more abundant in human cells, especially in the nuclear fraction. The nuclear localization of Freud-1L was enriched upon inhibition of chromosome region maintenance 1/exportin 1-dependent nuclear export, indicating a dynamic regulation of Freud-1 nuclear localization. Consistent with a functional role in the nucleus, human Freud-1L bound specifically to its dual repressor element in the 5-HT1A receptor gene in vitro and repressed transcription from these sites. Importantly, chromatin immunoprecipitation using antibodies specific for human Freud-1L demonstrated that it is bound to the dual repressor element in chromatin, indicating a functional role in regulating the basal expression of the 5-HT1A receptor gene. Taken together, these results indicate that both the short and long isoforms of Freud-1 are expressed, although Freud-1L is the major isoform that regulates the human 5-HT1A receptor gene. Disruption of transcriptional regulation by mutation of Freud-1 may play a role in abnormal brain function leading to mental retardation."	"Differential repression by freud-1/CC2D1A at a polymorphic site in the dopamine-D2 receptor gene. Freud-1/CC2D1A is a transcriptional repressor of the serotonin-1A receptor gene and was recently genetically linked to non-syndromic mental retardation. To identify new Freud-1 gene targets, data base mining for Freud-1 recognition sequences was done. A highly homologous intronic element (D2-DRE) was identified in the human dopamine-D2 receptor (DRD2) gene, and the role of Freud-1 in regulating the gene at this site was assessed. Recombinant Freud-1 bound specifically to the D2-DRE, and a major protein-D2-DRE complex was identified in nuclear extracts that was supershifted using Freud-1-specific antibodies. Endogenous Freud-1 binding to the D2-DRE in cells was detected using chromatin immunoprecipitation. The D2-DRE conferred strong repressor activity in transcriptional reporter assays that was dependent on the Freud-1 recognition sequence. In three different human cell lines, the level of Freud-1 protein was inversely related to DRD2 expression. Knockdown of endogenous Freud-1 using small interfering RNA resulted in an up-regulation of DRD2 RNA and binding sites, demonstrating a crucial role for Freud-1 in DRD2 regulation. A previously uncharacterized single nucleotide A/G polymorphism (rs2734836) was located adjacent to the D2-DRE and conferred allele-specific Freud-1 binding and repression, with the major G-allele having reduced activity. These studies demonstrate a key role for Freud-1 to regulate DRD2 expression and provide the first mechanistic insights into its transcriptional regulation. Allele-specific regulation of DRD2 expression by Freud-1 may possibly associate with psychiatric disorders or mental retardation."	"The Freud-1/CC2D1A family: transcriptional regulators implicated in mental retardation. The CC2D1A gene family consists of two homologous genes, Freud-1/CC2D1A and Freud-2/CC2D1B, that share conserved domains, including several DM14 domains that are specific to this protein family, a C-terminal helix-loop-helix domain, and a C2 calcium-dependent phospholipid binding domain. Although the function of Freud-2 is unknown, Freud-1 has been shown to function as a transcriptional repressor of the serotonin-1A receptor gene that binds to a novel DNA element (FRE, 5'-repressor element). The DNA binding and repressor activities of Freud-1 are inhibited by calcium-calmodulin-dependent protein kinase. Recently, a deletion in the CC2D1A gene has been linked to nonsyndromic mental retardation. This deletion results in the truncation of the helix-loop-helix DNA binding and the C2 domains, crucial for Freud-1 repressor activity, and hence is predicted to generate an inactive or weakly dominant negative protein. The possible mechanisms by which inactivation of Freud-1 could lead to abnormal cortical development and cognitive impairment and the potential roles of Freud-1 gene targets are discussed."	"Genetic screening for autosomal recessive nonsyndromic mental retardation in an isolated population in Israel. Nonsyndromic mental retardation (NSMR) is the diagnosis of exclusion in mentally retarded individuals without additional abnormalities. We have recently identified a protein-truncating mutation, G408fsX437, in the gene CC2D1A on chromosome 19p13.12 in nine consanguineous Israeli Arab families with severe autosomal recessive NSMR, and have developed a comprehensive prevention program among the at-risk population in the village. The subjects tested were healthy women who were invited to undergo the genetic screening test as a part of their routine pregnancy monitoring. One hundred and seventeen subjects reported a family history positive for mental retardation. We tested 524 pregnant or preconceptional women and found 47 carriers (approximately 1/11), whose spouses were then recommended to undergo testing. We identified eight carrier couples, who were given genetic counseling and offered prenatal diagnosis. Of all the marriages, 28.6% were consanguineous; 16.5% of the total were between first cousins. The high prevalence of the mutation can be explained both by the founder effect owing to the generally high consanguinity rate among the inhabitants of the village, and also because two families with excessive numbers of mentally retarded offspring were unacceptable as marriage partners by the rest of the families. This is the first example of the establishment of a large-scale genetic screening program for autosomal recessive NSMR, which was made possible owing to the high frequency of the specific causative mutation in this isolated population."	"The genetics of mental retardation. Genetic abnormalities frequently give rise to a mental retardation phenotype. Recent advances in resolution of comparative genomic hybridization and genomic sequence annotation has identified new syndromes at chromosome 3q29 and 9q34. The finding of a significant number of copy number polymorphisms in the genome in the normal population, means that assigning pathogenicity to deletions and duplications in patients with mental retardation can be difficult but has been identified for duplications of MECP2 and L1CAM. Novel autosomal genes that cause mental retardation have been identified recently including CC2D1A identified by homozygosity mapping. Several new genes and pathways have been identified in the field of X-linked mental retardation but many more still await identification. Analysis of families where only a single male is affected reveals that the chance of this being due to a single X-linked gene abnormality is significantly less than would be expected if the excess of males in the population is entirely due to X-linked disease. Recent identification of novel X-linked mental retardation genes has identified components of the post-synaptic density and multiple zinc finger transcription factors as disease causing suggesting new mechanisms of disease causation. The first therapeutic treatments of animal models of mental retardation have been reported, a Drosophila model of Fragile X syndrome has been treated with lithium or metabotropic glutamate receptor (mGluR) antagonists and a mouse model of NF1 has been treated with the HMG-CoA reductase inhibitor lavastatin, which improves the learning and memory skills in these models."	"The CC2D1A, a member of a new gene family with C2 domains, is involved in autosomal recessive non-syndromic mental retardation. The molecular basis of autosomal recessive non-syndromic mental retardation (NSMR) is poorly understood, mostly owing to heterogeneity and absence of clinical criteria for grouping families for linkage analysis. Only two autosomal genes, the PRSS12 gene on chromosome 4q26 and the CRBN on chromosome 3p26, have been shown to cause autosomal recessive NSMR, each gene in only one family. To identify the gene causing autosomal recessive NSMR on chromosome 19p13.12. The candidate region established by homozygosity mapping was narrowed down from 2.4 Mb to 0.9 Mb on chromosome 19p13.12. A protein truncating mutation was identified in the gene CC2D1A in nine consanguineous families with severe autosomal recessive NSMR. The absence of the wild type protein in the lymphoblastoid cells of the patients was confirmed. CC2D1A is a member of a previously uncharacterised gene family that carries two conserved motifs, a C2 domain and a DM14 domain. The C2 domain is found in proteins which function in calcium dependent phospholipid binding; the DM14 domain is unique to the CC2D1A protein family and its role is unknown. CC2D1A is a putative signal transducer participating in positive regulation of I-kappaB kinase/NFkappaB cascade. Expression of CC2D1A mRNA was shown in the embryonic ventricular zone and developing cortical plate in staged mouse embryos, persisting into adulthood, with highest expression in the cerebral cortex and hippocampus. A previously unknown signal transduction pathway is important in human cognitive development."	"Freud-1: A neuronal calcium-regulated repressor of the 5-HT1A receptor gene. Altered regulation of 5-HT1A receptors is implicated in mood disorders such as anxiety and major depression. To provide insight into its transcriptional regulation, we previously identified a novel DNA element [14 bp 5'-repressor element (FRE)] of the 5-HT1A receptor gene that mediates repression in neuronal and non-neuronal cells (Ou et al., 2000). We have now cloned a novel DNA binding protein [five' repressor element under dual repression binding protein-1 (Freud-1)] that binds to FRE to mediate repression of the 5-HT1A receptor or heterologous promoters. Freud-1 is evolutionarily conserved and contains two DM-14 basic repeats, a predicted helix-loop-helix DNA binding domain, and a protein kinase C conserved region 2 (C2)/calcium-dependent lipid binding (CalB) calcium/phospholipid binding domain. An intact CalB domain was required for Freud-1-mediated repression. In serotonergic raphe cells, overexpression of Freud-1 repressed the 5-HT1A promoter and decreased 5-HT1A receptor protein levels, whereas transfection of antisense to Freud-1 derepressed the 5-HT1A gene and increased 5-HT1A receptor protein expression. Calcium-dependent signaling blocked Freud-1-FRE binding and derepressed the 5-HT1A promoter. Treatment with inhibitors of calmodulin or CAM-dependent protein kinase reversed calcium-mediated inhibition of Freud-1. Freud-1 RNA and protein were present in raphe nuclei, hippocampus, cortex, and hypothalamus, and Freud-1 protein was colocalized with 5-HT1A receptors, suggesting its importance in regulating 5-HT1A receptors in vivo. Thus, Freud-1 represents a novel calcium-regulated repressor that negatively regulates basal 5-HT1A receptor expression in neurons and may play a role in the altered regulation of 5-HT1A receptors associated with anxiety or major depression."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"HOXA1"	"complex neurodevelopmental disorder"	"Long Noncoding RNA ZFPM2-AS1 Knockdown Restrains the Development of Retinoblastoma by Modulating the MicroRNA-515/HOXA1/Wnt/β-Catenin Axis. The tumor-initiating function of long non-coding RNA (lncRNA), zinc finger protein multitype 2 antisense RNA 1 (ZFPM2-AS1) was reported in lung cancer, yet the relevance of ZFPM2-AS1 in retinoblastoma (RB), a malignancy representing 2.5% to 4% incidence of cancers among children, has not been elucidated. Thus, we attempted to assess the effect of ZFPM2-AS1 and underlying mechanism in RB progression. First, comparing the differentially expressed lncRNAs in normal retinal tissues as well as RB tissues, the target lncRNA ZFPM2-AS1 was screened out. We then assayed the ZFPM2-AS1 expression in three RB cell lines, and carried out methylthiazol tetrazolium (MTT), transwell assays, and flow cytometric analyses to examine the role of si-ZFPM2-AS1 on cell behaviors. Following online database predication, the correlations between ZFPM2-AS1 and microR-515 (miR-515) or homeobox A1 (HOXA1) were corroborated by dual-luciferase reporter gene assays. Quantitative real-time PCR along with Western blot assays was fulfilled to ascertain the expression of relevant genes. ZFPM2-AS1 was significantly overexpressed in RB tissues and cell lines, and ZFPM2-AS1 silencing curtailed the growth and metastasis of RB cells both in vitro and in vivo. Bioinformatic websites and dual-luciferase reporter gene assays disclosed that ZFPM2-AS1 might perform as a competing endogenous RNA for miR-515 and positively correlate with HOXA1 to activate the Wnt/β-catenin signaling pathway. Altogether, these data demonstrated that ZFPM2-AS1 interacted with HOXA1 to promote RB development via mediating miR-515, establishing a promising therapeutic biomarker for RB and prognosis."	"DSG2 expression is correlated with poor prognosis and promotes early-stage cervical cancer. The pathogenesis and developmental mechanism of early-stage (FIGO 2009 IA2-IIA2) cervical cancer (CC) remain unclear. Seeking novel molecular biomarkers based on The Cancer Genome Atlas (TCGA) will facilitate the understanding of CC pathogenesis and help evaluate early-stage CC prognosis. To identify prognosis-related genes in early-stage CC, we analyzed TCGA mRNA-seq data and clinical data by univariate Cox and Kaplan-Meier plotter analyses. Differential expression analysis identified upregulated genes in early-stage CC. Combined with the genes correlated with unfavorable prognosis, we selected desmoglein-2 (DSG2) for further investigation. To detect DSG2 expression in early-stage CC, we used immunohistochemistry (IHC), quantitative real-time PCR (qRT-PCR) and western blotting. The relationship between the expression of DSG2 and clinical features was analyzed by the Chi square test. Cox analysis was applied to assess the relationship between CC overall survival (OS) and risk factors. The correlations between DSG2 expression and CC cell line proliferation and migration were investigated with Cell Counting Kit-8 (CCK-8) and migration assays. There were 416 prognosis-related genes in early-stage CC. DSG2, matrix metallopeptidase 1 (MMP1), carbonic anhydrase IX (CA9), homeobox A1 (HOXA1), and serine protease inhibitor B3 (SERPINB3) were upregulated in early-stage CC compared with adjacent noncancerous tissue (ANT) and correlated with unfavorable prognosis. Among them, DSG2 was most significantly correlated with patient survival. Coexpression analysis indicated that DSG2 was probably involved in cell division, positive regulation of transferase activity, positive regulation of cell migration, EGFR upregulation pathway and regulation of lymphangiogenesis. IHC, qRT-PCR and western blotting showed that DSG2 expression was higher in CC than in normal tissue. Significant correlations were identified between DSG2 expression and several aggressive clinical features, including pelvic lymph node metastasis (PLNM). Multivariate Cox analysis showed that DSG2 and PLNM were independent prognostic factors for OS. DSG2 knockdown inhibited CC cell proliferation and migration. DSG2 is a biomarker that promotes tumor proliferation and metastasis and is correlated with poor prognosis in early-stage CC."	"Long non-coding RNA SNHG1 activates HOXA1 expression via sponging miR-193a-5p in breast cancer progression. Breast cancer is the leading cause of cancer death in women worldwide. Long non-coding RNA small nucleolar RNA host gene 1 (SNHG1) has been reported to be involved in human diseases, including cancer. Here, we found that SNHG1 expression was significantly upregulated in human breast cancer tissues and cell lines. We explored the function of SNHG1 in breast cancer cells using in vitro and in vivo experiments and found that SNHG1 promotes breast cancer metastasis and proliferation. The potential molecular mechanism of SNHG1 in breast cancer cells may involve SNHG1 acting as a sponge of miR-193a-5p to activate the expression of the oncogene HOXA1. In summary, our study reveals a novel SNHG1/miR-193a-5p/HOXA1 competing endogenous RNA regulatory pathway in breast cancer progression and may provide new strategies for breast cancer therapy."	"microRNA-100 functions as a tumor suppressor in non-small cell lung cancer via regulating epithelial-mesenchymal transition and Wnt/β-catenin by targeting HOXA1. Non-small cell lung cancer (NSCLC) is a leading subtype in lung cancer, with high morbidities and mortalities worldwide. microRNA (miRNA) has appeared to play indispensable roles in a variety of solid carcinomas. The current study focused on the functions of miR-100 in NSCLC. qRT-PCR was performed to detect miR-100 and HOXA1 expressions in NSCLC tissues and cells. MTT and transwell assays were used to determine the functions of miR-100 in NSCLC cell proliferation, invasion and migration abilities. Western blot was used to measure related protein expressions. qRT-PCR results showed that miR-100 expressions were dramatically decreased in NSCLC tissues. MTT assays indicated that miR-100 restoration inhibited NSCLC cell proliferation. Furthermore, transwell assay was performed to determine the impacts of miR-100 on NSCLC invasion and migration abilities. As expected, the invasion and migration capacities were significantly repressed. Direct interactions between HOXA1 and miR-100 were also verified via dual-luciferase reporter assays. Western blot analysis demonstrated that miR-100 exerted suppressive functions via regulating EMT and Wnt/β-catenin in NSCLC cells. Our results showed that miR-100 served antitumor roles in NSCLC, providing new evidence of miR-100 as a promising therapeutic biomarker in NSCLC."	"lncRNA HOTAIRM1 promotes osteogenesis of hDFSCs by epigenetically regulating HOXA2 via DNMT1 in vitro. Dental follicle (DF) can develop into periodontal tissues including periodontal ligament, cementum, and alveolar bone. Possessing superior pluripotency and osteogenic capacity, dental follicle stem cells (DFSCs) have become a promising stem cell source for bone regeneration and periodontal engineering. However, the mechanisms underlying DFSCs-mediated osteogenesis remain elusive. Our previous long noncoding RNA (lncRNA) microarray revealed that lncRNA HOTAIRM1 was significantly higher expressed in human DFSCs (hDFSCs) compared with human periodontal ligament stem cells (hPDLSCs). lncRNA HOTAIRM1, an antisense transcript of the HOXA1/2 intergenic region, can epigenetically regulate proximal and distant HOXA genes through histone and DNA methylation. HOXA2, a target of HOTAIRM1, is crucial for cranial neural crest morphogenesis, branchial arches development, and osteogenesis. However, the roles of both HOTAIRM1 and HOXA2 in odontogenic stem cells remain unknown. Here, we investigated the functions and regulatory mechanisms of these two genes in hDFSCs. Both genes were confirmed highly expressed in hDFSCs compared with hPDLSCs, and they displayed similar expression patterns in the DF and surrounding periodontium during mice tooth morphogenesis. Knockdown of either HOTAIRM1 or HOXA2 inhibited osteogenic differentiation of hDFSCs, while overexpressed HOTAIRM1 inhibited hDFSCs proliferation and promoted osteogenesis. Furthermore, HOTAIRM1 inhibited both overall DNMT1 expression and DNMT1 enrichment on HOXA2 promoter, mechanically binding to the CpG islands of the HOXA2 promoter region, leading to hypomethylation and HOXA2 induction. These findings suggested that HOTAIRM1 promoted the osteogenesis of hDFSCs by epigenetically regulating HOXA2 via DNMT1. Taken together, HOTARIM1 and HOXA2 exerted pivotal functions in hDFSCs, and the regulatory mechanism of HOTARIM1 within the HOXA cluster was uncovered."	"The LncRNA HOTAIRM1 Promotes Tamoxifen Resistance by Mediating HOXA1 Expression in ER+ Breast Cancer Cells. Breast cancer is one of the most commonly diagnosed cancers in women worldwide. Approximately 40% of patients with breast cancer acquire endocrine resistance following therapy with tamoxifen. Many explanations for the development of endocrine resistance have been put forward, one of them being the dysregulation of long non-coding RNAs (lncRNAs). The lncRNA HOTAIRM1, known to be involved in myelopoiesis as well as transcriptional regulation of the HOXA genes in embryonic stem cells, is also expressed in breast cancer cells. This study explored the molecular mechanisms of HOTAIRM1 involved in acquired tamoxifen resistance. We showed that HOTAIRM1 and HOXA1 are concurrently up-regulated in tamoxifen-resistant MCF7 (TAMR) cells. Knockdown of HOTAIRM1 down-regulated HOXA1 expression and restored sensitivity to tamoxifen. In addition, the knockdown of HOXA1 showed similar effects, suggesting that the HOTAIRM1/HOXA1 axis regulates tamoxifen resistance. Furthermore, we showed that HOTAIRM1 directly interacts with EZH2 and prevents the PRC2 complex from binding and depositing H3K27me3 on the putative promoter of HOXA1. Together, our findings suggest that HOXA1 and its neighboring lncRNA, HOTAIRM1, might serve as potential therapeutic targets for ER+ breast cancer patients who have acquired tamoxifen resistance."	"lncRNA NEAT1 Binds to MiR-339-5p to Increase HOXA1 and Alleviate Ischemic Brain Damage in Neonatal Mice. Hypoxic-ischemic brain damage (HIBD) is a major cause of fatality and morbidity in neonates. However, current treatment approaches to alleviate HIBD are not effective. Various studies have highlighted the role of microRNAs (miRNAs) in various biological functions in multiple diseases. This study investigated the role of miR-339-5p in HIBD progression. Neonatal HIBD mouse model was induced by ligation of the right common carotid artery. Neuronal cell model exposed to oxygen-glucose deprivation (OGD) was also established. The miR-339-5p expression in mouse brain tissues and neuronal cells was quantified, and the effects of miR-339-5p on neuronal cell activity and apoptosis induced by hypoxia-ischemia were explored. The overexpression or knockdown of long non-coding RNA (lncRNA) nuclear-enriched abundant transcript 1 (NEAT1) in hippocampal neurons was used to determine the effect of lncRNA NEAT1 on the expression of miR-339-5p and homeobox A1 (HOXA1) and apoptosis. Short hairpin RNA targeting lncRNA NEAT1 and miR-339-5p antagomir were used in neonatal HIBD mice to identify their roles in HIBD. Our results revealed that miR-339-5p was downregulated in neonatal HIBD mice and neuronal cells exposed to OGD. Downregulated miR-339-5p promoted neuronal cell viability and suppressed apoptosis during hypoxia-ischemia. Moreover, lncRNA NEAT1 competitively bound to miR-339-5p to increase HOXA1 expression and inhibited neuronal cell apoptosis under hypoxic-ischemic conditions. The key observations of the current study present evidence demonstrating that lncRNA NEAT1 upregulated HOXA1 to alleviate HIBD in mice by binding to miR-339-5p."	"lncRNA CCAT1 Acts as a MicroRNA-218 Sponge to Increase Gefitinib Resistance in NSCLC by Targeting HOXA1. Long non-coding RNA (lncRNA) colon cancer-associated transcript-1 (CCAT1) has been reported to play important roles in the development and progression of multiple human malignancies. However, the functional role and molecular mechanism of CCAT1 on gefitinib resistance in non-small cell lung cancer (NSCLC) are largely unclear. The aim of this study is to explore the roles of CCAT1 on gefitinib resistance in NSCLC and to explore the underlying mechanisms. The quantitative real-time PCR (qRT-PCR) analysis was to investigate the expression pattern of CCAT1 in gefitinib-resistant NSCLC patient tissues and cell lines, and then the effects of CCAT1 on gefitinib resistance of NSCLC in vitro and in vivo. Furthermore, bioinformatics online program predictions and luciferase reporter assay were used to validate the association of CCAT1 and miR-218 in NSCLC cells. In this study, CCAT1 was observed to be upregulated in gefitinib-resistant patient tissues and cell lines. In vitro and in vivo experiments demonstrated that CCAT1 knockdown impaired cell proliferation and promoted the gefitinib-induced cell apoptosis. Furthermore, we demonstrated that CCAT1 acts as a sponge for miR-218, and verified that HOXA1 is a novel target of miR-218. These results suggest that CCAT1 may serve as a promising therapeutic target for the treatment of epidermal growth factor receptor (EGFR) plus NSCLC patients."	"Corrigendum: Long Non-Coding RNA HOXA Transcript Antisense RNA Myeloid-Specific 1-HOXA1 Axis Downregulates the Immunosuppressive Activity of Myeloid-Derived Suppressor Cells in Lung Cancer. [This corrects the article DOI: 10.3389/fimmu.2018.00473.]."	"miR-100 Inhibits Cell Growth and Proliferation by Targeting HOXA1 in Nasopharyngeal Carcinoma. Increasing evidence indicates that the dysregulation of miRNAs plays a vital role in tumorigenesis and progression of nasopharyngeal carcinoma (NPC). Thus, it is necessary to further investigate the function and mechanism of miRNAs in NPC. miR-100 expression was analyzed using publicly available databases and then tested using quantitative RT-PCR in NPC tissues and cell lines. MTT and colony formation assays and xenograft tumor model were used to test the NPC cell growth and proliferation abilities while modulating miR-100 expression. The target of miR-100 was predicted with TargetScan and validated with luciferase reporter assay, quantitative RT-PCR, and Western blot. The expression of miR-100 was significantly reduced in NPC tissues and cell lines. Overexpression of miR-100 obviously suppressed NPC cell growth and proliferation, whereas silencing miR-100 promoted NPC cell growth and proliferation in vitro. HOXA1 (homeobox A1) was validated as a direct target of miR-100, and restoring HOXA1 expression could reverse the inhibitive effect of miR-100 on NPC cell growth and proliferation. The mRNA and protein expression of HOXA1 was increased in NPC cell lines. Furthermore, ectopic expression of miR-100 inhibited xenograft tumor growth in vivo. Taken together, our findings suggest that miR-100 could suppress NPC growth and proliferation through targeting HOXA1, providing a novel target for the miRNA-mediated therapy for patients with NPC in the future."	"miR-18a-3p encourages apoptosis of chondrocyte in Osteoarthritis via HOXA1 pathway. Osteoarthritis is disorder of joints featuring inflammation and degeneration of articular cartilage. Recently, miRs have been found to be associated in regulation of chondrocytes and there apoptosis. miR-18a-3p has been found to be associated in the pathogenesis of rheumatoid arthritis, however its role in articular cartilage tissues remains unclear. C57BL/6 strain of mice and human cartilage tissue were used for the study. Histological analysis was done on isolated cartilage samples followed by TUNEL assay and immunohistochemical analysis. The chondrocytes were isolated from mouse and human cartilage tissues, RNA were isolated and subjected for qRT-PCR analysis. The chondrocytes were transfected with miR-18a-3p agomir, antagomir and siHOXA-1. Luciferase assay was done in 293T cells. Flow cytometry analysis was done and western blot analysis for studying expression of proteins. The expression of miR-18a-3p was upregulated in chondrocytes after exposing them to interlukin-1β (IL-1β) in vitro. The transfection of miR-18a-3p antagomir halted the IL-1β mediated apoptosis. The luciferase assay suggested that miR-18a-3p targets the 3'UTR region of HOXA1 gene thus blocking its expression. The treatment of HOXA1 siRNA demonstrated rescuing effect of miR-18a-3p antagomir on the apoptosis of chondrocytes. Treatment of miR-18a-3p antagomir attenuated the surface of cartilage in osteoarthritis mice and the agomir worsened it. TUNEL assay suggested decreased apoptosis and over-expression of HOAX1 in osteoarthritis mice post miR-18a-3p knockdown. The findings confirmed involvement of miR-18a-3p/HOXA1 pathway as a potential mechanism in regulation of Osteoarthritis."	"[Effects of HOXA1 Gene Antisense Oligonucleotides on Growth of Esophageal Cancer Cells]. To investigate the effect of antisense oligodeoxynucleotides (ASODN) of Homeobox A1 gene ( HOXA1) on proliferation, apoptosis, invasion and migration of esophageal carcinoma cells. The expression of HOXA1 protein in normal esophageal epithelial cells Het-1A and esophageal cancer TE-1, EC9706 and Eca109 cells was detected by Western blot. Screening of highly expressed of HOXA1 protein esophageal squamous cell carcinoma cells for follow-up experiments. HOXA1 antisense oligonucleotide (ASODN) chains, sense oligodeoxynucleotides (SODN) chain, and nonsense oligodeoxy nucleotides (N-ODN) chain were designed. The screened esophageal squamous cell carcinoma cells with high expression were divided into HOXA1 ASODN group (5, 10, 15 μmol/L HOXA1 ASODN transfected Eca109 cells), control group (conventional culture medium, no cell transfection), SODN group (cells transfected with 15 μmol/L of SODN) and N-ODN group (cells transfected with 15 μmol/L N-ODN). Cell viability, apoptosis rate and invasion and migration ability were detected by methylthiazolyldiphenyl-tetrazolium bromide (MTT) method, flow cytometry, transwell chamber respectively; The expression of HOXA1, phosphorylation serine/threonine kinase (p-AKT), proliferating cell nuclear antigen (PCNA), matrix metalloproteinase 2 (MMP-2) and B-cell lymphoma2 (Bcl-2) associated X protein (Bax) protein was detected by Western blot. Compared with normal esophageal epithelial cells Het-1A, the expression of HOXA1 protein in human esophageal squamous cell carcinoma cells TE-1, EC9706 and Eca109 was significantly higher ( P&lt;0.05). The expression of HOXA1 protein was the highest in Eca109 cells, therefore, Eca109 cells were selected for follow-up experiments. The expression of HOXA1 protein in Eca109 cells transfected with HOXA1 ASODN was significantly decreased ( P&lt;0.05). After transfection of Eca109 cells with HOXA1 ASODN, the viability of Eca109 cells decreased with the increase of concentration and time, the difference was significant compared with the control, SODN and N-ODN groups ( P&lt;0.05). 15 μmol/L HOXA1 ASODN significantly inhibited cell viability. After 15 μmol/L HOXA1 ASODN was transfected into Eca109 cells, the invasion and migration abilities of cells were significantly decreased, the apoptosis rate was increased, the expressions of p-AKT, PCNA and MMP-2 were significantly decreased, and the expression of Bax was significantly increased ( P&lt;0.05). Antisense oligodeoxynucleotides of HOXA1 gene can inhibit the proliferation, invasion and migration of esophageal cancer cells, and induce apoptosis. The mechanism is related to the inhibition of PI3K/AKT signaling pathway."	"HOTAIR contributes to chemoresistance by activating NF-κB signaling in small-cell lung cancer. Our previous study showed that lncRNA HOTAIR affects the chemoresistance of SCLC by regulating HOXA1 methylation. However, the downstream regulatory mechanism remains unknown. The article aimed to further explore the potential downstream mechanism. In this study, we demonstrate that the knockdown of HOTAIR inhibits the NF-κB pathway in SCLC cells. The overexpression of HOXA1, the downstream gene of HOTAIR, also suppresses the NF-κB pathway, but the downregulation of HOXA1 shows the opposite results. Notably, the knockdown of HOXA1 in HOTAIR downregulated cells can rescue the inhibition of the NF-κB pathway mediated by HOTAIR downregulation. Meanwhile, we found that the NF-κB pathway is activated in multidrug-resistant SCLC cells (H69AR, H446AR) compared with the parental cells (H69, H446). The inhibition of the NF-κB pathway with celastrol increases cell sensitivity to anticancer drugs, cell apoptosis, and cell cycle arrest. Collectively, these results revealed that the NF-κB pathway may be involved in the chemoresistance of SCLC caused by HOTAIR methylating HOXA1."	"LncRNA HOTAIRM1/HOXA1 Axis Promotes Cell Proliferation, Migration And Invasion In Endometrial Cancer. Long non-coding RNA (lncRNA) microarray screening previously identified that HOXA transcript antisense RNA myeloid-specific 1 (HOTAIRM1) was significantly upregulated in type I endometrial cancer (EC). The present study aimed to determine the potential role of HOTAIRM1 and its sense transcript HOXA1 in the development and progression of type I EC. We detected the expression levels of HOTAIRM1 and HOXA1 in type I EC tissues by quantitative real-time polymerase chain reaction (qRT-PCR) and Western blotting and analyzed associated clinical data. Gain- or loss-of-function experiments were used to investigate the biological function of HOTAIRM1 and HOXA1 in type I EC, both in vitro and in vivo. The expression levels of HOTAIRM1 and HOXA1 were significantly upregulated in type I EC tissues. Furthermore, the expression of HOTAIRM1 and HOXA1 were both significantly correlated with International Federation of Gynecology and Obstetrics (FIGO) stage and lymph node metastasis. The expression of HOTAIRM1 was significantly correlated with that of HOXA1. Knockdown of HOTAIRM1 significantly inhibited cell proliferation, migration, invasion and epithelial-mesenchymal transition (EMT) in vitro, while the over-expression of HOTAIRM1 led to the opposite effects. Moreover, we identified that HOTAIRM1 acts as a regulator for the expression of the HOXA1 gene in type I EC cells. As an oncogene, HOXA1 silencing also caused suppressive effects on tumors by inhibiting cell proliferation, migration and invasion. In addition, we also confirmed the role of HOTAIRM1 and HOXA1 in promoting tumor growth in vivo. Our findings are the first to identify that HOTAIRM1 functions as an oncogene to promote cell proliferation, migration and invasion by regulating HOXA1 in type I EC. Therefore, the HOTAIRM1/HOXA1 axis is a novel potential prognostic biomarker and new potential therapeutic target for type I EC."	"Glutamylation of deubiquitinase BAP1 controls self-renewal of hematopoietic stem cells and hematopoiesis. All hematopoietic lineages are derived from a limited pool of hematopoietic stem cells (HSCs). Although the mechanisms underlying HSC self-renewal have been extensively studied, little is known about the role of protein glutamylation and deglutamylation in hematopoiesis. Here, we show that carboxypeptidase CCP3 is most highly expressed in BM cells among CCP members. CCP3 deficiency impairs HSC self-renewal and hematopoiesis. Deubiquitinase BAP1 is a substrate for CCP3 in HSCs. BAP1 is glutamylated at Glu651 by TTLL5 and TTLL7, and BAP1-E651A mutation abrogates BAP1 glutamylation. BAP1 glutamylation accelerates its ubiquitination to trigger its degradation. CCP3 can remove glutamylation of BAP1 to promote its stability, which enhances Hoxa1 expression, leading to HSC self-renewal. Bap1E651A mice produce higher numbers of LT-HSCs and peripheral blood cells. Moreover, TTLL5 and TTLL7 deficiencies sustain BAP1 stability to promote HSC self-renewal and hematopoiesis. Therefore, glutamylation and deglutamylation of BAP1 modulate HSC self-renewal and hematopoiesis."	"Long Noncoding RNA HOTAIRM1 Maintains Tumorigenicity of Glioblastoma Stem-Like Cells Through Regulation of HOX Gene Expression. Noncoding RNAs regulate transcription of gene expression and play an important role in the pathogenesis of glioblastomas. These tumors are heterogeneous with some glioma stem cells (GSCs) that are highly tumorigenic subpopulations of cells contributing to recurrence and treatment resistance. In this study, GSCs were established by neurosphere cultures of primary glioblastoma cells and validated by the expression of GSC marker CD133. The expression of the long noncoding RNA HOTAIRM1 was detected using real-time quantitative reverse transcription PCR (qRT-PCR). The role of HOTAIRM1 in the proliferation, apoptosis, stemness, and tumorigenicity of GSCs was investigated by soft agar colony formation, flow cytometry, TUNEL analysis, sphere formation, and in vivo xenograft models through silencing of HOTAIRM1. The expression of HOTAIRM1 and the neighboring HOX genes were analyzed by qRT-PCR in different grades of gliomas and nontumor tissues. We found that HOTAIRM1 is significantly elevated in GSCs. The silencing of HOTAIRM1 significantly impairs the proliferation, apoptosis, self-renewal, tumorigenesis of GSCs. In addition, HOTAIRM1 is significantly upregulated in gliomas and associated with tumor grade and patient survival. HOTAIRM1 neighboring genes, HOXA1, HOXA2, and HOXA3, are also significantly upregulated in gliomas and correlate with the expression of HOTAIRM1. Among them, HOXA2 and HOXA3 were identified as being upregulated in GSCs and contributed to the self-renewal of these stem cells. Taken together, our results demonstrate that HOTAIRM1 plays a critical role in the self-renewal of GSCs. These data also suggest that overexpression of HOTAIRM1 can be a negative prognostic factor for patient survival in malignant glioma and may be a promising potential therapeutic target."	"Galectin-13/placental protein 13: redox-active disulfides as switches for regulating structure, function and cellular distribution. Galectin-13 (Gal-13) plays numerous roles in regulating the relationship between maternal and fetal tissues. Low expression levels or mutations of the lectin can result in pre-eclampsia. The previous crystal structure and gel filtration data show that Gal-13 dimerizes via formation of two disulfide bonds formed by Cys136 and Cys138. In the present study, we mutated them to serine (C136S, C138S and C136S/C138S), crystalized the variants and solved their crystal structures. All variants crystallized as monomers. In the C136S structure, Cys138 formed a disulfide bond with Cys19, indicating that Cys19 is important for regulation of reversible disulfide bond formation in this lectin. Hemagglutination assays demonstrated that all variants are inactive at inducing erythrocyte agglutination, even though gel filtration profiles indicate that C136S and C138S could still form dimers, suggesting that these dimers do not exhibit the same activity as wild-type (WT) Gal-13. In HeLa cells, the three variants were found to be distributed the same as with WT Gal-13. However, a Gal-13 variant (delT221) truncated at T221 could not be transported into the nucleus, possibly explaining why women having this variant get pre-eclampsia. Considering the normally high concentration of glutathione in cells, WT Gal-13 should exist mostly as a monomer in cytoplasm, consistent with the monomeric variant C136S/C138S, which has a similar ability to interact with HOXA1 as WT Gal-13."	"Bta-miR-10b Secreted by Bovine Embryos Negatively Impacts Preimplantation Embryo Quality. In a previous study, we found miR-10b to be more abundant in a conditioned culture medium of degenerate embryos compared to that of blastocysts. Here, we show that miR-10b mimics added to the culture medium can be taken up by embryos. This uptake results in an increase in embryonic cell apoptosis and aberrant expression of DNA methyltransferases (DNMTs). Using several algorithms, Homeobox A1 (HOXA1) was identified as one of the potential miR-10b target genes and dual-luciferase assay confirmed HOXA1 as a direct target of miR-10b. Microinjection of si-HOXA1 into embryos also resulted in an increase in embryonic cell apoptosis and downregulation of DNMTs. Cell progression analysis using Madin-Darby bovine kidney cells (MDBKs) showed that miR-10b overexpression and HOXA1 knockdown results in suppressed cell cycle progression and decreased cell viability. Overall, this work demonstrates that miR-10b negatively influences embryo quality and might do this through targeting HOXA1 and/or influencing DNA methylation."	"The Role of the HOXA Gene Family in Acute Myeloid Leukemia. The HOXA gene family is associated with various cancer types. However, the role of HOXA genes in acute myeloid leukemia (AML) have not been comprehensively studied. We compared the transcriptional expression, survival data, and network analysis of HOXA-associated signaling pathways in patients with AML using the ONCOMINE, GEPIA, LinkedOmics, cBioPortal, and Metascape databases. We observed that HOXA2-10 mRNA expression levels were significantly upregulated in AML and that high HOXA1-10 expression was associated with poor AML patient prognosis. The HOXA genes were altered in ~18% of the AML samples, either in terms of amplification, deep deletion, or elevated mRNA expression. The following pathways were modulated by HOXA gene upregulation: GO:0048706: embryonic skeletal system development; R-HSA-5617472: activation of HOX genes in anterior hindbrain development during early embryogenesis; GO:0060216: definitive hemopoiesis; hsa05202: transcriptional mis-regulation in cancer; and GO:0045638: negative regulation of myeloid cell differentiation, and they were significantly regulated due to alterations affecting the HOXA genes. This study identified HOXA3-10 genes as potential AML therapeutic targets and prognostic markers."	"MicroRNA-99a-5p alleviates atherosclerosis via regulating Homeobox A1. MicroRNAs have been demonstrated to be involved in the development of atherosclerosis. The present study aimed to evaluate the effect of miR-99a-5p and its target gene Homeobox A1 (HOXA1) in atherosclerosis. The biological functions of miR-99a-5p on human aortic smooth muscle cells (ASMCs) were assessed by MTT, wound healing and transwell assays. The target genes of microRNAs were predicted by TargetScan and miRDB. The binding of miR-99a-5p and HOXA1 was confirmed by luciferase reporter assay. In the in vivo study, high-fat diet-induced atherosclerosis model was established in Apolipoprotein E knockout mice. Hematoxylin-eosin (H&amp;E), oil Red O and Masson trichrome staining were performed for determination of atherosclerotic lesion. The levels of miR-99a-5p and HOXA1 mRNA were detected by real-time PCR. HOXA1 and migration-associated protein levels were detected by western blot or immunohistochemistry analysis. MiR-99a-5p inhibited HOXA1 expression by targeting 3'UTR of HOXA1 mRNA. Enforced HOXA1 significantly promoted the proliferation, migration, and invasion of ASMCs. Furthermore, miR-99a-5p overexpression inhibited the proliferation, migration, and invasion of ASMCs stimulated by HOXA1, whereas miR-99a-5p inhibition reversed the effects of HOXA1 knockdown on these behaviours of ASMCs. In vivo, the specific overexpression of miR-99a-5p significantly abated atherosclerotic lesions formatted, accompanied with a significant down-regulation of HOXA1 mRNA and protein expression levels. We demonstrate for first time that miR-99a-5p may serve as a potential inhibitor of the atherosclerosis, and miR-99a-5p plays its role partially through targeting HOXA1."	"Different Effects of Knockouts in ALDH2 and ACSS2 on Embryonic Stem Cell Differentiation. Ethanol (EtOH) is a teratogen that causes severe birth defects, but the mechanisms by which EtOH affects stem cell differentiation are unclear. Our goal here is to examine the effects of EtOH and its metabolites, acetaldehyde (AcH) and acetate, on embryonic stem cell (ESC) differentiation. We designed ESC lines in which aldehyde dehydrogenase (ALDH2, NCBI#11669) and acyl-CoA synthetase short-chain family member 2 (ACSS2, NCBI#60525) were knocked out by CRISPR-Cas9 technology. We selected these genes because of their key roles in EtOH oxidation in order to dissect the effects of EtOH metabolism on differentiation. By using kinetic assays, we confirmed that AcH is primarily oxidized by ALDH2 rather than ALDH1A2. We found increases in mRNAs of differentiation-associated genes (Hoxa1, Cyp26a1, and RARβ2) upon EtOH treatment of WT and Acss2<sup>-/-</sup> ESCs, but not Aldh2<sup>-/-</sup> ESCs. The absence of ALDH2 reduced mRNAs of some pluripotency factors (Nanog, Sox2, and Klf4). Treatment of WT ESCs with AcH or 4-hydroxynonenal (4-HNE), another substrate of ALDH2, increased differentiation-associated transcripts compared to levels in untreated cells. mRNAs of genes involved in retinoic acid (RA) synthesis (Stra6 and Rdh10) were also increased by EtOH, AcH, and 4-HNE treatment. Retinoic acid receptor-γ (RARγ) is required for both EtOH- and AcH-mediated increases in Hoxa1 and Stra6, demonstrating the critical role of RA:RARγ signaling in AcH-induced ESC differentiation. ACSS2 knockouts showed no changes in differentiation phenotype, while pluripotency-related transcripts were decreased in ALDH2 knockout ESCs. We demonstrate that AcH increases differentiation-associated mRNAs in ESCs via RARγ."	"MiR-99a suppressed cell proliferation and invasion by directly targeting HOXA1 through regulation of the AKT/mTOR signaling pathway and EMT in ovarian cancer. Ovarian cancer (OC) is the third frequently tumor worldwide. MicroRNA-99a (miR-99a), acting as a tumor suppressor, has been reported to be downregulated in multiple tumors. We aimed at exploring the significant roles of miR-99a in ovarian cancer. Quantitative Real-time polymerase chain reaction (qRT-PCR) and Western blotting were applied to calculate the mRNA and protein levels of miR-99a and its target genes. Kaplan-Meier method was conducted to evaluate the overall survival of ovarian cancer patients. CCK8 and transwell assays were performed to measure the proliferative and invasive abilities. miR-99a, acting as a prognosis predictor, was downregulated in ovarian cancer tissues and cell lines. miR-99a mediated the expression of homeobox A1 (HOXA1) through directly targeting to the 3'-untranslated region (3'-UTR) of its mRNA in ovarian cancer cell lines. miR-99a inhibited the proliferation of ovarian cancer by AKT/mTOR pathway in vitro and in vivo, and it suppressed the invasion-mediated epithelial-mesenchymal transition (EMT) through direct targeting to the 3'-UTR of HOXA1 mRNA. miR-99a suppressed the proliferation through AKT/mTOR signaling pathway and the invasion-mediated EMT in ovarian cancer. The newly identified miR-99a/HOXA1/AKT/mTOR axis provides novel insight into the pathogenesis of ovarian cancer."	"Identification of an acute myeloid leukaemia associated noncoding somatic mutation at 3' end of HOXA cluster. Noncoding somatic mutations have been demonstrated to play important role in tumourigenesis. Here we show that there exists an acute myeloid leukaemia associated noncoding somatic mutation at 3' terminal of conserved HOXA cluster. The mutation was identified in the bone marrow blasts but not peripheral blood mononuclear cells or buccal cells of two M3 (acute promyelocytic leukaemia, APL) type patients from 45 acute myeloid leukaemia patients. The mutation also existed in a pair of twins one of them developed acute myeloid leukaemia M4 (acute myelomonocytic leukaemia) type. The mutation resides in about 2-kb downstream of HOXA1 gene where a functional retinoic acid response element is located and also bound by histone demethylase KDM3B. Reporter assay showed that the mutation results in the upregulation of transcriptional activity and unresponsiveness to retinoic acid receptor. To sum up, we identified a new acute myeloid leukaemia associated noncoding somatic mutation."	"miRNA-99a inhibits cell invasion and migration in liver cancer by directly targeting HOXA1. Liver cancer is a malignant tumor that threatens human health worldwide. It has poor prognosis rates and ineffective therapeutic options. Recently, various miRNAs have been proven to exert promoting or inhibiting functions in different malignancies. However, the definitive mechanisms of miR-99a in liver cancer remain unclear. In the current study, we explored the relationships between the expression of miR-99a and HOXA1 in liver cancer tissues and cells to explore their combined effects on the occurrence and metastasis of liver cancer. The expression of miR-99a and HOXA1 in liver cancer tissue samples and cells was measured by RT-qPCR. Following transfection, transwell assays were conducted to assess the invasion and migration capacities of liver cancer cells. Subsequently, western blots and luciferase reporter assays were performed in liver cancer cells to identify the target of miR-99a. The data indicated that miRNA-99a expression was significantly reduced in both liver cancer tissue samples and cells compared with normal tissues and normal liver cells respectively. By contrast, the HOXA1 expression levels in liver cancer tissues and cells were significantly increased in contrast to the control group. The findings also revealed that the miR-99a expression was negatively correlated with HOXA1 expression in liver cancer tissue samples and miR-99a could suppress cell invasion and migration by targeting HOXA1 in liver cancer."	"A distal enhancer maintaining Hoxa1 expression orchestrates retinoic acid-induced early ESCs differentiation. Retinoic acid (RA) induces rapid differentiation of embryonic stem cells (ESCs), partly by activating expression of the transcription factor Hoxa1, which regulates downstream target genes that promote ESCs differentiation. However, mechanisms of RA-induced Hoxa1 expression and ESCs early differentiation remain largely unknown. Here, we identify a distal enhancer interacting with the Hoxa1 locus through a long-range chromatin loop. Enhancer deletion significantly inhibited expression of RA-induced Hoxa1 and endoderm master control genes such as Gata4 and Gata6. Transcriptome analysis revealed that RA-induced early ESCs differentiation was blocked in Hoxa1 enhancer knockout cells, suggesting a requirement for the enhancer. Restoration of Hoxa1 expression partly rescued expression levels of ∼40% of genes whose expression changed following enhancer deletion, and ∼18% of promoters of those rescued genes were directly bound by Hoxa1. Our data show that a distal enhancer maintains Hoxa1 expression through long-range chromatin loop and that Hoxa1 directly regulates downstream target genes expression and then orchestrates RA-induced early differentiation of ESCs. This discovery reveals mechanisms of a novel enhancer regulating RA-induced Hoxa genes expression and early ESCs differentiation."	"Elevated microRNA-145 inhibits the development of oral squamous cell carcinoma through inactivating ERK/MAPK signaling pathway by down-regulating HOXA1. Background: Oral cancer is one of the most frequent solid cancers worldwide, and oral squamous cell carcinoma (OSCC) constitutes approximately 90% of oral cancers. The discovery of reliable prognostic indicators would be a potential strategy for OSCC treatment. In the present study, we aim to explore the underlying mechanism by which microRNA-145 (miR-145) affected OSCC. Methods: Forty-eight patients diagnosed with OSCC were enrolled to obtain the OSCC tissues and adjacent normal tissues. The targeting relationship between miR-145 and Homeobox A1 (HOXA1) was verified. In order to assess the effects of miR-145 in OSCC and the detailed regulatory mechanism, the SCC-9 cell line was adopted, in which expression of miR-145 and HOXA1 were altered by transfection. Then, a series of in vitro and in vivo experiments were performed to evaluate the cell viability, migration, invasion, and tumor growth. Results: miR-145 was poorly expressed and HOXA1 was highly expressed in OSCC. HOXA1 was verified as a target of miR-145 to mediate the activation of the extracellular signal-regulated kinase/mitogen activated protein kinase (ERK/MAPK) signaling pathway. In the circumstance of miR-145 elevation or HOXA1 depletion, the SCC-9 cell line manifested with inhibited cell viability, invasion, and migration in vitro, coupled with reduced tumor growth in vivo, with a decreased expression of ERK/MAPK signaling pathway-related genes/proteins. Conclusion: These findings suggested that miR-145 can inhibit HOXA1 to inactivate the ERK/MAPK signaling pathway, thereby suppressing OSCC cell proliferation, migration, and invasion to further inhibit the development of OSCC, highlighting a novel therapeutic target for the OSCC treatment."	"Long non-coding RNA 00152 promotes cell proliferation in cervical cancer via regulating miR-216b-5p/HOXA1 axis. Several studies demonstrated that aberrant lncRNA expression contributes to cervical cancer (CC) development and progression. LINC00152, a novel lncRNA, has been identified as an oncogene involved in various cancers. In the present study, we aim to investigate the expression pattern, clinical significance, potential functional roles, and regulatory mechanism of LINC00152 in CC. The transcription levels of LINC00152, miR-216b-5p, and HOXA1 in CC tissues and cell lines were detected by quantitative Real Time-Polymerase Chain Reaction (qRT-PCR). LINC00152 knockdown in CC cells was conducted by transfecting the LINC00152-specific siRNA. The cell proliferation ability was evaluated by the Cell Counting Kit-8 (CCK-8) assay. Cell cycle and apoptosis analysis were assessed by flow cytometry. The target relation among LINC00152, miR-216b-5p, and HOXA1 were measured using the dual-luciferase reporter assay. The protein levels of HOXA1 in CC cells were determined by Western blot. LINC00152 was up-regulated in CC tissues and cell lines. The high expression level of LINC00152 was positively correlated with poor prognosis and histologic grade in CC. The silence of LINC00152 could inhibit the proliferation of CC cells through inducing the cell cycle arrest at G0/G1 phase and promote apoptosis in vitro. Mechanically, we demonstrated that LINC00152 could modulate the proliferation of CC cells through elevating HOXA1 expression level via sponging miR-216b-5p based on bioinformatics analysis and experimental validation. Our findings revealed a novel molecular mechanism underlying LINC00152 modulating CC progression through the miR-216b-5p/HOXA1 pathway, suggesting that LINC00152 might potentially act as an effective diagnostic marker and therapeutic target for cervical cancer."	"circEIF4G2 modulates the malignant features of cervical cancer via the miR‑218/HOXA1 pathway. Circular RNAs (circRNAs) serve important roles in tumorigenesis and may be used as novel molecular biomarkers for clinical diagnosis. However, the role and molecular mechanisms of circRNAs in cervical cancer (CC) remain unknown. In the present study, circRNA isoform of eukaryotic translation initiation factor 4γ2 (circEIF4G2) was revealed to be significantly upregulated in CC tissues and cell lines. Furthermore, increased expression of circEIF4G2 was associated with poor prognosis in patients with CC. circEIF4G2 knockdown suppressed the malignant features of CC cells, including cell proliferation, colony formation, migration and invasion. Additionally, circEIF4G2 was identified to serve as a sponge for microRNA‑218 (miR‑218), which targeted homeobox A1 (HOXA1). Furthermore, circEIF4G2 may increase the expression levels of HOXA1 by sponging miR‑218. Rescue experiments suggested that transfection with a miR‑218 inhibitor attenuated the inhibitory effects of circEIF4G2 knockdown on cell proliferation, migration and invasion. Furthermore, silencing HOXA1 reversed the effects of the miR‑218 inhibitor on CC cells. Collectively, the present findings suggested that circEIF4G2 promoted cell proliferation and migration via the miR‑218/HOXA1 pathway."	"Comprehensive Profiling of the Circulatory miRNAome Response to a High Protein Diet in Elderly Men: A Potential Role in Inflammatory Response Modulation. MicroRNA are critical to the coordinated post-transcriptional regulation of gene expression, yet few studies have addressed the influence of habitual diet on microRNA expression. High protein diets impact cardiometabolic health and body composition in the elderly suggesting the possibility of a complex systems response. Therefore, high-throughput small RNA sequencing technology is applied in response to doubling the protein recommended dietary allowance (RDA) over 10 weeks in older men to examine alterations in circulating miRNAome. Older men (n = 31; 74.1 ± 0.6 y) are randomized to consume either RDA (0.8 g kg<sup>-1</sup> day<sup>-1</sup> ) or 2RDA (1.6 g kg<sup>-1</sup> day<sup>-1</sup> ) of protein for 10 weeks. Downregulation of five microRNAs (miR-125b-5p, -100-5p, -99a-5p, -23b-3p, and -203a) is observed following 2RDA with no changes in the RDA. In silico functional analysis highlights target gene enrichment in inflammation-related pathways. qPCR quantification of predicted inflammatory genes (TNFα, IL-8, IL-6, pTEN, PPP1CB, and HOXA1) in peripheral blood mononuclear cells shows increased expression following 2RDA diet (p ≤ 0.05). The study findings suggest a possible selective alteration in the post-transcriptional regulation of the immune system following a high protein diet. However, very few microRNAs are altered despite a large change in the dietary protein."	"HOXA1 upregulation is associated with poor prognosis and tumor progression in breast cancer. Breast cancer (BC) is the most commonly diagnosed cancer and the second leading cause of cancer-associated mortality among females worldwide. As a member of the homeobox (HOX) gene family, HOXA1 is involved in tumor progression and prognosis in several types of human cancer. However, the clinical significance and biological functions of HOXA1 in BC remains unknown. The current study assessed the expression of HOXA1 in BC tissues and cells via western blotting and reverse transcription-quantitative polymerase chain reaction. The association between HOXA1 expression and the clinicopathological features of patients with BC was analyzed using the Chi-square test. The overall survival of patients was calculated using the Kaplan-Meier method and examined using the log-rank test. Cell proliferation was examined via an MTT assay. Cell cycle distribution and cell apoptosis were analyzed using flow cytometry. The current study demonstrated that HOXA1 mRNA and protein expression was upregulated in BC. In addition, HOXA1 overexpression was associated with poor prognosis and advanced clinicopathological features in patients with BC. Furthermore, knockdown of HOXA1 significantly inhibited cell proliferation by enhancing cell apoptosis and cell cycle arrest in BC cells, which was accompanied with aberrant expression of cell cycle and apoptosis-associated proteins, cyclin D1, B-cell lymphoma 2 (Bcl-2) and Bcl-2-like protein 4. Taken together, the results suggested that HOXA1 may serve as a novel prognostic marker and therapeutic target in BC."	"Ethanol promotes differentiation of embryonic stem cells through retinoic acid receptor-γ. Ethanol (EtOH) is a teratogen, but its teratogenic mechanisms are not fully understood. The alcohol form of vitamin A (retinol/ROL) can be oxidized to all-trans-retinoic acid (RA), which plays a critical role in stem cell differentiation and development. Using an embryonic stem cell (ESC) model to analyze EtOH's effects on differentiation, we show here that EtOH and acetaldehyde, but not acetate, increase differentiation-associated mRNA levels, and that EtOH decreases pluripotency-related mRNAs. Using reporter assays, ChIP assays, and retinoic acid receptor-γ (RARγ) knockout ESC lines generated by CRISPR/Cas9 and homologous recombination, we demonstrate that EtOH signals via RARγ binding to RA response elements (RAREs) in differentiation-associated gene promoters or enhancers. We also report that EtOH-mediated increases in homeobox A1 (Hoxa1) and cytochrome P450 family 26 subfamily A member 1 (Cyp26a1) transcripts, direct RA target genes, require the expression of the RA-synthesizing enzyme, aldehyde dehydrogenase 1 family member A2 (Aldh1a2), suggesting that EtOH-mediated induction of Hoxa1 and Cyp26a1 requires ROL from the serum. As shown with CRISPR/Cas9 knockout lines, the retinol dehydrogenase gene Rdh10 and a functional RARE in the ROL transporter stimulated by retinoic acid 6 (Stra6) gene are required for EtOH induction of Hoxa1 and Cyp26a1 We conclude that EtOH stimulates stem cell differentiation by increasing the influx and metabolism of ROL for downstream RARγ-dependent transcription. In stem cells, EtOH may shift cell fate decisions to alter developmental outcomes by increasing endogenous ROL/RA signaling via increased Stra6 expression and ROL oxidation."	"miR-10a-5p Promotes Chondrocyte Apoptosis in Osteoarthritis by Targeting HOXA1. Osteoarthritis (OA) is a common joint disease characterized by degradation of the articular cartilage and joint inflammation. Studies have revealed the importance of microRNAs in the regulation of chondrocyte apoptosis. MicroRNA deep sequencing of control and osteoarthritic cartilage has revealed that miR-10a-5p is significantly upregulated in osteoarthritic tissues. However, its role in these tissues remains unknown. The present study was conducted to investigate the effect of miR-10a-5p in promoting OA. miR-10a-5p expression was increased in chondrocytes after interleukin-1β treatment in vitro. Transfection with a miR-10a-5p inhibitor abrogated interleukin-1β-induced apoptosis. A luciferase activity assay showed that miR-10a-5p targeted the 3' UTR of the homeobox gene HOXA1, inhibiting its expression. Treatment with HOXA1 siRNA reversed the rescuing effect of the miR-10a-5p inhibitor on chondrocyte apoptosis. Additionally, an OA model was established in mice by anterior cruciate ligament transection. AntagomiR-10a-5p improved the cartilage surfaces of osteoarthritic mice, whereas agomiR-10a-5p worsened them. A terminal deoxynucleotidyl transferase dUTP nick-end labeling assay indicated reduced apoptosis and increased HOXA1 expression in osteoarthritic mice after miR-10a-5p knockdown. These findings reveal a novel mechanism regulating OA progression and demonstrate the potential of miR-10a-5p and homeobox protein HOXA1 as therapeutic targets."	"Altered expression of 3´paralogus HOX A-D clusters in endometriosis disease: A case-control study. Endometriosis is a prevalent gynecological disease, with limited known etiology and more researches are required to identify its etiology. In this manner, there is no evidence for expression and function of 3´HOX genes in 4 clusters in the limb and pelvic organs such as the uterus and its disorders (Genes in the HOXA-D clusters are subdivided into 13 paralogous groups). This study designed to investigate the expression profile of 5 paralogous (1-5) in four clusters of HOX genes (A, B, C, and D) in ectopic and eutopic tissues of women with endometriosis compared to the normal endometrium. Samples were obtained from thirty patients (15 with and 15 without endometriosis) of reproductive age with normal menstrual cycles. The same patient provided both eutopic and ectopic tissues and control women were laparoscopically checked for the absence of endometriosis. The expression profile of these HOX genes was investigated by quantitative real-time polymerase chain reaction technique. We observed significant up-regulation of some members of HOXC and D clusters (HOXD1, HOXD3, HOXC4 and HOXC5) in ectopic and eutopic tissues vs. control. Also, our data showed significant down-regulation of all of HOXA and HOXB paralogous except HOXA1 in ectopic tissues versus control. Our data showed specific cluster dependent modulation of the HOX genes expression in endometriosis (over-expression of some HOX genes in cluster C and D and down-regulation of HOX genes in cluster A and B) in ectopic and eutopic tissues compare to control group. Therefore, it is possible that change of expression level of these genes in endometrium plays a role in the pathogenesis of endometriosis."	"Cancer Stem Cell based molecular predictors of tumor recurrence in Oral squamous cell carcinoma. This study aimed to identify the cancer stem cell specific biomarkers that can be effective candidate prognosticators of oral squamous cell carcinoma. Microarray-based meta-analysis derived transcriptional profile of head and neck cancers was compared with the Cancer Stem Cell database to arrive at a subset of markers. This subset was further co-related with clinico-pathological parameters, recurrence and survival of oral cancer patients (n = 313) in The Cancer Genome Atlas database and in oral cancer (n = 28) patients. Meta-analysis in combination with database comparison identified a panel of 221 genes specific to head and neck cancers. Correlation of expression levels of these markers in the oral cancer cohort of The Cancer Genome Atlas (n = 313) with treatment outcome identified 54 genes (p &lt; 0.05 or fold change &gt;2) associated with disease recurrence, 8 genes (NQO1, UBE2C, EDNRB, FKBP4, STAT3, HOXA1, RIT1, AURKA) being significant with high fold change. Assessment of the efficacy of the subset (n = 54) as survival predictors identified an additional 4 genes (CDK1, GINS2, PHF5 A, ERBB2) that co-related with poor disease-free survival (p &lt; 0.05). CDK1 showed a significant association with the clinical stage, margin status and with advanced pathological parameters. Initial patient validation indicated that CDK1 and NQO1 significantly co-related with the poor disease-free and overall survival (p &lt; 0.05). This panel of oral cancer specific, cancer stem cell associated markers identified in this study, a subset of which was validated, will be of clinical benefit subject to large scale validation studies."	"microRNA‑577 inhibits cell proliferation and invasion in non‑small cell lung cancer by directly targeting homeobox A1. An increasing number of studies have indicated that the dysregulation of microRNAs (miRNAs/miR) is closely associated with non‑small cell lung cancer (NSCLC) development and progression by acting as tumor suppressors or oncogenes. Therefore, an in‑depth understanding of the biological roles of miRNAs in NSCLC may provide novel therapeutic methods for the treatment of patients with this disease. In the present study, reverse transcription‑quantitative polymerase chain reaction was used to detect miR‑577 expression in NSCLC tissues and cell lines. Cell Counting Kit‑8 and Transwell invasion assays were performed to determine the effects of miR‑577 on NSCLC cell proliferation and invasion. Luciferase reporter assays were used to demonstrate the relationship between miR‑577 and homeobox A1 (HOXA1) in NSCLC cells. The results revealed that miR‑577 was markedly downregulated in NSCLC tissues and cell lines. Additionally, restoration of miR‑577 expression significantly decreased the proliferation and invasion of NSCLC cells. Furthermore, miR‑577 negatively regulated HOXA1 expression in NSCLC cells by directly binding to its 3'‑untranslated region. HOXA1 was significantly upregulated in NSCLC tissues, and its upregulation was inversely correlated with miR‑577. Notably, restored HOXA1 expression abrogated the reduced proliferation and invasion of NSCLC cells caused by miR‑577 overexpression. Taken together, these results indicated that miR‑577 may have served tumor suppressive roles in NSCLC by directly targeting HOXA1. Therefore, this miRNA may be developed as a potential therapeutic target for the therapy of patients with NSCLC."	"H3K27me3 induces multidrug resistance in small cell lung cancer by affecting HOXA1 DNA methylation via regulation of the lncRNA HOTAIR. The long non-coding RNA (lncRNA) HOX transcript antisense RNA (HOTAIR) serves as a powerful predictor of tumor progression and overall survival in patients. Our previous studies showed that HOTAIR modulated HOXA1 DNA methylation by reducing DNMT1 and DNMT3b expression in drug-resistant small cell lung cancer (SCLC). Moreover, H3 lysine 27 trimethylation (H3K27me3) is catalyzed by enhancer of zeste homolog 2 (EZH2) and plays a critical role in SCLC chemoresistance. However, it is not completely clear whether H3K27me3 affects HOXA1 DNA methylation or whether this effect is mediated by HOTAIR. The levels of EZH2 and H3K27me3 were identified in SCLC tissues by immunohistochemical (IHC) staining and in SCLC multidrug-resistant cells by Western blotting. Cell counting kit-8 (CCK-8) and flow cytometry were used to detect and analyze the biological function of H3K27me3. Then, we assessed the role of HOTAIR in the regulation of EZH2 and H3K27me3 by using lentivirus and small interfering RNA. Further, bisulfite sequencing PCR was conducted to detect the methylation levels of HOXA1 DNA. Finally, Western blotting was performed to examine the regulatory role of H3K27me3 in controlling HOTAIR expression in SCLC. In this study, we found that EZH2 and H3K27me3 levels were markedly higher in SCLC tissues and multidrug-resistant SCLC cells. The results indicated that H3K27me3 was related to multidrug resistance. HOTAIR overexpression and knockdown showed that EZH2 and H3K27me3 were regulated by HOTAIR. Moreover, H3K27me3 affected HOXA1 DNA methylation levels. Strikingly, we found that H3K27me3 acted as a negative feedback regulator of HOTAIR. Our study showed that H3K27me3 affects HOXA1 DNA methylation via HOTAIR regulation, indicating that H3K27me3 may be a potential therapy target for SCLC chemoresistance."	"iDEP: an integrated web application for differential expression and pathway analysis of RNA-Seq data. RNA-seq is widely used for transcriptomic profiling, but the bioinformatics analysis of resultant data can be time-consuming and challenging, especially for biologists. We aim to streamline the bioinformatic analyses of gene-level data by developing a user-friendly, interactive web application for exploratory data analysis, differential expression, and pathway analysis. iDEP (integrated Differential Expression and Pathway analysis) seamlessly connects 63 R/Bioconductor packages, 2 web services, and comprehensive annotation and pathway databases for 220 plant and animal species. The workflow can be reproduced by downloading customized R code and related pathway files. As an example, we analyzed an RNA-Seq dataset of lung fibroblasts with Hoxa1 knockdown and revealed the possible roles of SP1 and E2F1 and their target genes, including microRNAs, in blocking G1/S transition. In another example, our analysis shows that in mouse B cells without functional p53, ionizing radiation activates the MYC pathway and its downstream genes involved in cell proliferation, ribosome biogenesis, and non-coding RNA metabolism. In wildtype B cells, radiation induces p53-mediated apoptosis and DNA repair while suppressing the target genes of MYC and E2F1, and leads to growth and cell cycle arrest. iDEP helps unveil the multifaceted functions of p53 and the possible involvement of several microRNAs such as miR-92a, miR-504, and miR-30a. In both examples, we validated known molecular pathways and generated novel, testable hypotheses. Combining comprehensive analytic functionalities with massive annotation databases, iDEP ( http://ge-lab.org/idep/ ) enables biologists to easily translate transcriptomic and proteomic data into actionable insights."	"Over-expressed lncRNA HOTAIRM1 promotes tumor growth and invasion through up-regulating HOXA1 and sequestering G9a/EZH2/Dnmts away from the HOXA1 gene in glioblastoma multiforme. Glioblastoma multiforme (GBM) is the common primary brain tumor classified the most malignant glioma. Long non-coding RNAs (LncRNAs) are important epigenetic regulators with critical roles in cancer initiation and progression. LncRNA HOTAIRM1 transcribes from the antisense strand of HOXA gene cluster which locus in chromosome 7p15.2. Recent studies have shown that HOTAIRM1 is involved in acute myeloid leukemia and colorectal cancer. Here we sought to investigate the role of HOTAIRM1 in GBM and explore its mechanisms of action. The expressions of HOTAIRM1 and HOXA1 in GBM tissues and cells were determined by qRT-PCR, and the association between HOTAIRM1, HOXA1 transcription and tumor grade were analyzed. The biological function of HOTAIRM1 in GBM was evaluated both in vitro and in vivo. Chromatin immunoprecipitation (ChIP) assay and quantitative Sequenom MassARRAY methylation analysis were performed to explore whether HOTAIRM1 could regulate histone and DNA modification status of the HOXA1 gene transcription start sites (TSS) and activate its transcription. ChIP and RNA-ChIP were further performed to determine the molecular mechanism of HOTAIRM1 in epigenetic regulation of the HOXA1 gene. HOTAIRM1 was abnormally up-regulated in GBM tissues and cells, and this up-regulation was correlated with grade malignancy in glioma patients. HOTAIRM1 silencing caused tumor suppressive effects via inhibiting cell proliferation, migration and invasion, and inducing cell apoptosis. In vivo experiments showed knockdown of HOTAIRM1 lessened the tumor growth. Additionally, HOTAIRM1 action as regulating the expression of the HOXA1 gene. HOXA1, as an oncogene, it's expression levels were markedly elevated in GBM tissues and cell lines. Mechanistically, HOTAIRM1 mediated demethylation of histone H3K9 and H3K27 and reduced DNA methylation levels by sequester epigenetic modifiers G9a and EZH2, which are H3K9me<sup>2</sup> and H3K27me<sup>3</sup> specific histone methyltransferases, and DNA methyltransferases (DnmTs) away from the TSS of HOXA1 gene. We investigated the potential role of HOTAIRM1 to promote GBM cell proliferation, migration, invasion and inhibit cell apoptosis by epigenetic regulation of HOXA1 gene that can be targeted simultaneously to effectively treat GBM, thus putting forward a promising strategy for GBM treatment. Meanwhile, this finding provides an example of transcriptional control over the chromatin state of gene and may help explain the role of lncRNAs within the HOXA gene cluster."	"Downregulation of microRNA-1469 promotes the development of breast cancer via targeting HOXA1 and activating PTEN/PI3K/AKT and Wnt/β-catenin pathways. Breast cancer (BC) is a common malignancy which is the most frequently diagnosed cancer in women all over the worldwide. This study aimed to investigate the roles of miR-1469 in the development of BC, as well as its regulatory mechanism. The expression levels of miR-1469 in BC tissues, serum, and cell lines were determined. Effects of overexpression of miR-1469 on MCF7 cell viability, colony-forming ability, apoptosis, migration, and invasion were then investigated. Furthermore, the potential target of miR-1469 in MCF7 cells was explored. Besides, the association between miR-1469, PTEN/PI3K/AKT, and Wnt/β-catenin pathways was elucidated. Notably, confirmatory experiments by downregulation of miR-1469 in SK-BR-3 cells were further performed. The miR-1469 expression was significantly downregulated in BC tissues, serum, and cell lines. The overexpression of miR-1469 significantly inhibited the proliferation, arrested cell-cycle at G2/M phase, increased apoptosis, suppressed migration, and invasion of MCF-7 cells. In addition, HOXA1 was verified as a direct target of miR-1469, and the effects of overexpression of miR-1469 on the malignant behaviors of MCF7 cells were significantly counteracted by overexpression of HOXA1 concurrently. Furthermore, the overexpression of miR-1469 suppressed the activation of PTEN/PI3K/AKT and Wnt/β-catenin pathways, which was reversed overexpression of HOXA1 concurrently. Besides, confirmatory experiments showed that the inhibition of miR-1469 promoted the malignant behaviors of SK-BR-3 cells, which was inversed after miR-1469 inhibition and HOXA1 knockdown at the same time. Our findings reveal that downregulation of miR-1469 may promote the development of BC by targeting HOXA1 and activating PTEN/PI3K/AKT and Wnt/β-catenin pathways. MiR-1469 may serve as a promising target for BC therapy."	"MicroRNA Profiling of Salivary Duct Carcinoma Versus Her2/Neu Overexpressing Breast Carcinoma Identify miR-10a as a Putative Breast Related Oncogene. Salivary duct carcinomas (SDC) and Her2/Neu3-overexpressing invasive breast carcinomas (HNPIBC/IBC) are histologically indistinguishable. We investigated whether common histopathologic and immunophenotypic features of SDC and IBC are mirrored by a similar microRNA (miRNA) profile. MiRNA profiling of 5 SDCs, 6 IBCs Her2/Neu3+, and 5 high-grade ductal breast carcinoma in situ (DCIS) was performed by NanoString platform. Selected miRNAs and HOXA1 gene were validated by RT-PCR. We observed similar miRNA expression profiles between IBC and SDC with the exception of 2 miRNAs, miR-10a and miR-142-3p, which were higher in IBC tumors. DCIS tumors displayed increased expression of miR-10a, miR-99a, miR-331-3p and miR-335, and decreased expression of miR-15a, miR-16 and miR-19b compared to SDC. The normal salivary gland and breast tissues also showed similar expression profiles. Interestingly, miR-10a was selectively increased in both IBC and normal breast tissue compared to SDC and normal salivary gland tissue. Moreover, our NanoString and RT-PCR data confirmed that miR-10a was upregulated in IBC and DCIS compared to SDC. Finally, we show downregulation of HOXA1, a miR-10 target, in IBC tumors compared to normal breast tissue. Taken together, our data demonstrates that, based on miRNA profiling, SDC is closely related to HNPIBC. Our results also suggest that miR-10a is differentially expressed in IBC compared to SDC and may have potential utility as a diagnostic biomarker in synchronous or metachronous malignant epithelial malignancies involving both organs. In addition, miR-10a could be playing an important role as a mammary-specific oncogene, involved in breast cancer initiation (DCIS) and progression (IBC), through mechanisms that include modulation of HOXA1 gene expression."	"Ophthalmoplegia and Congenital Cranial Dysinnervation Disorders. Some forms of ophthalmoplegia are congenital and fall into the category of Congenital Cranial Dysinnervation Disorders (CCDDs). These disorders arise from a primary defect of cranial nucleus/nerve development or guidance. Many have substantial limitations of ocular motility with or without other associated features. The type and degree of ophthalmoplegia can be similar between CCDD subtypes as well as with non-congenital forms of ophthalmoplegia. Therefore diagnostic confirmation often requires neuro-imaging and/or genetic investigations. The clinician should consider this category in cases of ophthalmoplegia that are congenital and nonprogressive in nature."	"Hepatocellular Carcinoma Detection by Plasma Methylated DNA: Discovery, Phase I Pilot, and Phase II Clinical Validation. Early detection improves hepatocellular carcinoma (HCC) outcomes, but better noninvasive surveillance tools are needed. We aimed to identify and validate methylated DNA markers (MDMs) for HCC detection. Reduced representation bisulfite sequencing was performed on DNA extracted from 18 HCC and 35 control tissues. Candidate MDMs were confirmed by quantitative methylation-specific PCR in DNA from independent tissues (74 HCC, 29 controls). A phase I plasma pilot incorporated quantitative allele-specific real-time target and signal amplification assays on independent plasma-extracted DNA from 21 HCC cases and 30 controls with cirrhosis. A phase II plasma study was then performed in 95 HCC cases, 51 controls with cirrhosis, and 98 healthy controls using target enrichment long-probe quantitative amplified signal (TELQAS) assays. Recursive partitioning identified best MDM combinations. The entire MDM panel was statistically cross-validated by randomly splitting the data 2:1 for training and testing. Random forest (rForest) regression models performed on the training set predicted disease status in the testing set; median areas under the receiver operating characteristics curve (AUCs; and 95% confidence interval [CI]) were reported after 500 iterations. In phase II, a six-marker MDM panel (homeobox A1 [HOXA1], empty spiracles homeobox 1 [EMX1], AK055957, endothelin-converting enzyme 1 [ECE1], phosphofructokinase [PFKP], and C-type lectin domain containing 11A [CLEC11A]) normalized by beta-1,3-galactosyltransferase 6 (B3GALT6) level yielded a best-fit AUC of 0.96 (95% CI, 0.93-0.99) with HCC sensitivity of 95% (88%-98%) at specificity of 92% (86%-96%). The panel detected 3 of 4 (75%) stage 0, 39 of 42 (93%) stage A, 13 of 14 (93%) stage B, 28 of 28 (100%) stage C, and 7 of 7 (100%) stage D HCCs. The AUC value for alpha-fetoprotein (AFP) was 0.80 (0.74-0.87) compared to 0.94 (0.9-0.97) for the cross-validated MDM panel (P &lt; 0.0001). Conclusion: MDMs identified in this study proved to accurately detect HCC by plasma testing. Further optimization and clinical testing of this promising approach are indicated."	"MicroRNA‑577 inhibits the migration and invasion of hepatocellular carcinoma cells by targeting homeobox A1. Research has confirmed that abnormally expressed miRNAs are involved in the occurrence and development of hepatocellular carcinoma (HCC). In the present study, we confirmed that miR‑577 expression both in HCC tissues and cell lines was markedly downregulated. Clinically, downregulated expression of miR‑577 is notably related to malignant clinicopathological features, such as venous invasion and advanced TNM stage. Additionally, miR‑577 may act as a valuable tumor marker to predict the prognosis of HCC patients. Through knockdown and overexpression of miR‑577, miR‑577 was identified as an inhibitor of cell metastatic ability and EMT progress in HCC. Furthermore, miR‑577 was able to directly bind to the 3'‑UTR of homeobox A1 (HOXA1) to regulate the expression of HOXA1. In addition, there existed a negative correlation between the expression of miR‑577 and HOXA1 in HCC specimens. Rescue experiments revealed that the influence of miR‑577 on the migration, invasion and EMT of HCC cells was reversed by HOXA1. Taken together, our findings demonstrated that miR‑577 functions as an anti‑oncogene to suppress the migration, invasion and EMT of HCC cells through direct interaction with HOXA1. miR‑577 may act as a valuable target for the molecular‑targeted therapy of HCC."	"Long Non-Coding RNA HOXA Transcript Antisense RNA Myeloid-Specific 1-HOXA1 Axis Downregulates the Immunosuppressive Activity of Myeloid-Derived Suppressor Cells in Lung Cancer. HOXA transcript antisense RNA myeloid-specific 1 (HOTAIRM1) is a long non-coding RNA that has been shown to be a key regulator of myeloid cell development by targeting HOXA1. Myeloid-derived suppressor cells (MDSCs) are a heterogeneous population of immature myeloid cells that possess immunosuppressive function. However, the impact of HOTAIRM1 on the development of MDSCs remains unknown. In this study, we demonstrated that HOTAIRM1 was expressed in MDSCs and that overexpression of HOTAIRM1 could downregulate the expression of suppressive molecules in MDSCs. In addition, HOTAIRM1 levels were observed to be decreased in the peripheral blood cells of lung cancer patients compared with those of healthy controls. By analyzing HOTAIRM1 expression levels in different types of lung cancer, we found that HOTAIRM1 was mainly expressed in lung adenocarcinoma. Finally, it was confirmed that HOTAIRM1 could enhance the expression of HOXA1 in MDSCs and that high levels of HOXA1, the target gene of HOTAIRM1, could delay tumor progression and enhance the antitumor immune response by downregulating the immunosuppression of MDSCs. Taken together, this study illustrates that HOTAIRM1/HOXA1 downregulates the immunosuppressive function of MDSCs and may be a potential therapeutic target in lung cancer."	"Upregulation of HOXA1 promotes tumorigenesis and development of non‑small cell lung cancer: A comprehensive investigation based on reverse transcription-quantitative polymerase chain reaction and bioinformatics analysis. Homeobox A1 (HOXA1) serves an oncogenic role in multiple cancer types. However, the role of HOXA1 in non‑small cell lung cancer (NSCLC) remains unclear. In the present study, use of reverse transcription-quantitative polymerase chain reaction and the databases of The Cancer Genome Atlas (TCGA), Oncomine, Gene Expression Profiling Interactive Analysis and the Multi Experiment Matrix were combined to assess the expression of HOXA1 and its co-expressed genes in NSCLC. Bioinformatic analyses, such as Gene Ontology (GO), Kyoto Encyclopedia of Genes and Genomes (KEGG), and network and protein-protein interaction analyses, were used to investigate the underlying molecular mechanism effected by the co-expressed genes. Additionally, the potential miRNAs targeting HOXA1 were investigated. The results showed that HOXA1 was upregulated in NSCLC. The area under the curve of HOXA1 indicated a moderate diagnostic value of the HOXA1 level in NSCLC. According to GO and KEGG analyses, the co-expressed genes may be involved in 'dGTP metabolic processes', 'network-forming collagen trimers', 'centromeric DNA binding' and 'the p53 signaling pathway'. Three miRNAs (miR‑181b‑5p, miR‑28‑5p and miR‑181d‑5p) targeting HOXA1 were each predicted by 10 algorithms; miR‑181b and miR‑181d levels were downregulated in LUSC tissues compared with those in normal lung tissues based on data from the TCGA database, and inverse correlations were found between HOXA1 and miR‑181b (r=-0.205, P&lt;0.001) and miR‑181d (r=-0.106, P=0.020). We speculate that HOXA1 may be the direct target of miR‑181b‑5p or miR‑181d‑5p in LUSC, and HOXA1 may serve a significant role in NSCLC by regulating various pathways, particularly the p53 signaling pathway. However, the detailed mechanism should be verified by functional experiments."	"DNA Methylation Markers Improve the Sensitivity of Endoscopic Retrograde Cholangiopancreatography-Based Brushing Cytology in Extrahepatic Cholangiocarcinoma. Endoscopic retrograde cholangiopancreatography with brushed cytology is still the standard method for the diagnosis of extrahepatic cholangiocarcinoma in obstructive jaundice; however, the diagnostic yield is limited. To improve the diagnostic sensitivity, DNA methylation analysis is an attractive candidate, since this may constitute a stable marker in brushed specimens. Therefore, this study aims to evaluate the importance of such epigenetic markers in brushed biliary cells from patients with obstructive jaundice for the diagnosis of extrahepatic cholangiocarcinoma. The cells examined were those that were left over from brushed cytology done during routine endoscopic retrograde cholangiopancreatography of patients with extrahepatic cholangiocarcinoma. The methylation states of HOXA1, RASSF1A, P16, and NEUROG1 genes in extrahepatic cholangiocarcinoma were measured by quantitative methylation-specific polymerase chain reaction and compared between brushed biliary cells and normal gall bladder epithelial cells. The results showed that the sensitivity of the methylation index measurements of HOXA1 and NEUROG1 genes from brushed samples was markedly superior to that of standard cytology. In conclusion, measurement of the DNA methylation status of HOXA1 and NEUROG1 genes in leftover brushed biliary cells might serve as a useful supplement in the detection of malignant biliary obstruction by increasing the sensitivity of diagnosis by routine cytology."	"PRDM14, a putative histone methyl-transferase, interacts with and decreases the stability and activity of the HOXA1 transcription factor. Understanding how the activity of transcription factors like HOX proteins is regulated remains a widely open question. In a recent screen for proteins interacting with HOXA1, we identified a PRDM protein family member, PRDM14, which is known to be transiently co-expressed with HOXA1 in epiblast cells before their specification towards somatic versus germ cell fate. Here, we confirm PRDM14 is an interactor of HOXA1 and we identify the homeodomain of HOXA1 as well as the PR domain and Zinc fingers of PRDM14 to be required for the interaction. An 11-His repeat of HOXA1 previously highlighted to contribute to HOXA1-mediated protein-protein interactions is also involved. At a functional level, we provide evidence that HOXA1 displays an unexpectedly long half-life and demonstrate that PRDM14 can reduce the stability and affect the transcriptional activity of HOXA1."	"The O-GlcNAc transferase OGT interacts with and post-translationally modifies the transcription factor HOXA1. HOXA1 belongs to the HOX family of transcription factors which are key regulators of animal development. Little is known about the molecular pathways controlling HOXA1. Recent data from our group revealed distinct partner proteins interacting with HOXA1. Among them, OGT is an O-linked N-acetylglucosamine (O-GlcNAc) transferase modifying a variety of proteins involved in different cellular processes including transcription. Here, we confirm OGT as a HOXA1 interactor, we characterise which domains of HOXA1 and OGT are required for the interaction, and we provide evidence that OGT post-translationally modifies HOXA1. Mass spectrometry experiments indeed reveal that HOXA1 can be phosphorylated on the AGGTVGSPQYIHHSY peptide and that upon OGT expression, the phosphate adduct is replaced by an O-GlcNAc group."	"Oxidative stress promotes exit from the stem cell state and spontaneous neuronal differentiation. Reactive oxygen species (ROS) play important roles in fundamental cellular processes such as proliferation and survival. Here we investigated the effect of oxidative stress on stem cell maintenance and neuronal differentiation in a human embryonic stem cell (hESC) model, Ntera2 (NT2). CM-H2DCFDA and DHE assays confirmed that the oxidizing agent paraquat could induce a high level of ROS in NT2 cells. Quantitative PCR, Western blotting and immunocytochemistry showed that paraquat-induced oxidative stress suppressed the expression of stemness markers, including NANOG, OCT4 and TDGF1, whereas it enhanced the spontaneous expression of neuronal differentiation markers such as PAX6, NEUROD1, HOXA1, NCAM, GFRA1 and TUJ1. The treated cells even exhibited a strikingly different morphology from control cells, extending out long neurite-like processes. The neurogenic effect of ROS on stem cell behaviour was confirmed by the observations that the expression of neuronal markers in the paraquat-treated cells was suppressed by an antioxidant while further enhanced by knocking down Nrf2, a key transcription factor associated with antioxidant signaling. Lastly, paraquat dose-dependently activated the neurogenic MAPK-ERK1/2, which can be reversed by the MEK1/2 inhibitor SL327. Our study suggests that excessive intracellular ROS can trigger the exit from stem cell state and promote the neuronal differentiation of hESCs, and that MAPK-ERK1/2 signaling may play a proactive role in the ROS-induced neuronal differentiation of hESCs."	"Copper induces expression and methylation changes of early development genes in Crassostrea gigas embryos. Copper contamination is widespread along coastal areas and exerts adverse effects on marine organisms such as mollusks. In the Pacific oyster, copper induces severe developmental abnormalities during early life stages; however, the underlying molecular mechanisms are largely unknown. This study aims to better understand whether the embryotoxic effects of copper in Crassostrea gigas could be mediated by alterations in gene expression, and the putative role of DNA methylation, which is known to contribute to gene regulation in early embryo development. For that purpose, oyster embryos were exposed to 4 nominal copper concentrations (0.1, 1, 10 and 20 μg L<sup>-1</sup> Cu<sup>2+</sup>) during early development assays. Embryotoxicity was monitored through the oyster embryo-larval bioassay at the D-larva stage 24 h post fertilization (hpf) and genotoxicity at gastrulation 7 hpf. In parallel, the relative expression of 15 genes encoding putative homeotic, biomineralization and DNA methylation proteins was measured at three developmental stages (3 hpf morula stage, 7 hpf gastrula stage, 24 hpf D-larvae stage) using RT-qPCR. Global DNA content in methylcytosine and hydroxymethylcytosine were measured by HPLC and gene-specific DNA methylation levels were monitored using MeDIP-qPCR. A significant increase in larval abnormalities was observed from copper concentrations of 10 μg L<sup>-1</sup>, while significant genotoxic effects were detected at 1 μg L<sup>-1</sup> and above. All the selected genes presented a stage-dependent expression pattern, which was impaired for some homeobox and DNA methylation genes (Notochord, HOXA1, HOX2, Lox5, DNMT3b and CXXC-1) after copper exposure. While global DNA methylation (5-methylcytosine) at gastrula stage didn't show significant changes between experimental conditions, 5-hydroxymethylcytosine, its degradation product, decreased upon copper treatment. The DNA methylation of exons and the transcript levels were correlated in control samples for HOXA1 but such a correlation was diminished following copper exposure. The methylation level of some specific gene regions (HoxA1, Hox2, Engrailed2 and Notochord) displayed changes upon copper exposure. Such changes were gene and exon-specific and no obvious global trends could be identified. Our study suggests that the embryotoxic effects of copper in oysters could involve homeotic gene expression impairment possibly by changing DNA methylation levels."	"Long non-coding RNA CCAT1 promotes multiple myeloma progression by acting as a molecular sponge of miR-181a-5p to modulate HOXA1 expression. Multiple myeloma (MM) is the second most common hematological cancer all over the world. Long non-coding RNA (lncRNA) colon cancer associated transcript-1 (CCAT1) has been reported to play important roles in the development and progression of multiple human malignancies. However, little is known about its functional role and molecular mechanism in MM. The aim of this study was to investigate the clinical and biological significance of CCAT1 in MM. Our data showed that the relative expression levels of CCAT1 were significantly upregulated in MM tissues and cell lines compared with healthy donors and normal plasma cells (nPCs). High expression of CCAT1 was correlated shorter overall survival of MM patients. CCAT1 knockdown significantly inhibited cell proliferation, induced cell cycle arrest at G0/G1 phase and promoted cell apoptosis in vitro, and suppressed tumor growth in vivo. MiR-181a-5p was a direct target of CCAT1, and repression of miR-181a-5p could rescue the inhibition of CCAT1 knockdown on MM progression. In addition, CCAT1 positively regulated HOXA1 expression through sponging miR-181a-5p in MM cells.taken together, lncRNA CCAT1 exerted an oncogenic role in MM by acting as a ceRNA of miR-181a-5p. These results suggest that CCAT1 may serve as a novel diagnostic marker and therapeutic target for MM."	"MicroRNA-30c suppressed giant-cell tumor of bone cell metastasis and growth via targeting HOXA1. To dissect the functioning mode of miR-30c on giant cell tumor of bone cell metastasis and growth and provide therapeutic targets for giant cell tumor of bone. By quantitative Real-time polymerase chain reaction (qRT-PCR), miR-30c expression level in 62 pairs of giant cell tumor of bone cells tissue samples and five breast cancer-derived cell lines. Using miR-30c mimics and inhibitors, we analyzed the effects of miR-30c over-expression and knockdown on cell proliferation, invasion, and migration. Dual-luciferase activity assay was recruited to examine the potential target gene HOXA1, which predicted by several databases. Protein level was studied using Western blot. MiR-30c expressed significantly lower in giant cell tumor of bone tissue samples and cell lines. Over-expression miR-30c in giant cell tumor of bone cells decreased the cell proliferation, invasion, and migration abilities while down-regulation miR-30c in giant cell tumor of bone cells increased these abilities oppositely. Dual-luciferase and Western blot confirmed HOXA1 as a target gene of miR-30c. Furthermore, up-regulation of HOXA1 reserved the suppressive effect of miR-30c over-expression on cell growth and progression. miR-30c could suppress giant cell tumor of bone cell proliferation and progression via HOXA1, which might provide a new target for giant cell tumor of bone diagnosis and therapy."	"RARβ2-dependent signaling represses neuronal differentiation in mouse ES cells. Embryonic Stem (ES) cells are pluripotent cells that can be induced to differentiate into cells of all three lineages: mesoderm, endoderm, and ectoderm. In culture, ES cells can be differentiated into mature neurons by treatment with Retinoic Acid (RA) and this effect is mediated mainly through the activation of the RA nuclear receptors (RAR α, β, and γ), and their isoforms. However, little is known about the role played by specific RAR types on ES cell differentiation. Here, we found that treatment of ES cells with AC55649, an RARβ2 agonist, increased endodermal marker gene expression. On the other hand, we found that the inhibition of RARβ with 5μM LE135, together with RA treatment, increased the efficiency of mouse ES cell differentiation into neurons by more than 4-fold as compared to cells treated with RA only. Finally, we performed proteomic analyses on ES cells treated with RA vs RA plus AC55649 in order to identify the signaling pathways activated by the RARβ agonist. Our proteomic analyses using antibody microarrays indicated that proteins such as p38 and AKT were upregulated in cells treated with RA plus the agonist, as compared to cells treated with RA alone. Our results indicate that RARβ may function as a repressor of neuronal differentiation through the activation of major cell signaling pathways, and that the pharmacological inhibition of this nuclear receptor may constitute a novel method to increase the efficiency of ES to neuronal differentiation in culture."	"MicroRNA-433 Represses Proliferation and Invasion of Colon Cancer Cells by Targeting Homeobox A1. The aberrant expression of miR-433 has been validated in some types of cancers. However, the expression profile and the biological function of miR-433 on colon cancer are still elusive. This study was designed to investigate the function of miR-433 on the proliferation and invasion of colon cancer cells. We detected the expression of miR-433 in colon cancer tissues, adjacent normal tissues, and cell lines. CCK8 and Transwell assays were performed to explore the impact of miR-433 on colon cancer cell proliferation and invasion. The luciferase reporter assay was applied to identify the direct target of miR-433. The results demonstrated that miR-433 was downregulated in colon cancer tissues and cell lines when compared with the control. Overexpression of miR-433 significantly suppressed the ability of colon cancer cell proliferation and invasion, whereas knockdown of miR-433 remarkably enhanced cell proliferation and invasion. Homeobox A1 (HOXA1) was identified as a target of miR-433, and it mediated the functions of miR-433 on colon cancer cells. To conclude, we revealed that miR-433 was downregulated in colon cancer, and it inhibited colon cancer cell proliferation and invasion by directly targeting HOXA1."	"Upregulation of homeobox gene is correlated with poor survival outcomes in cervical cancer. HOX family members encode transcription factors crucial for embryogenesis and may be associated with carcinogenesis. Here, we evaluated the expression of 39 HOX genes in cervical cancer by using clinicopathological information and gene expression data of 308 patients from The Cancer Genome Atlas (TCGA) database. Correlations between mRNA expression of HOX family members and clinicopathological variables were explored. Seventy-three (23.7%) patients died during the follow-up period (median, 22.0 months). Overall mortality was significantly associated with advanced FIGO stage, lymph node metastasis, lymphovascular invasion, and increased HOXA1, HOXA5, HOXA6, and HOXC11 mRNA expression. Kaplan-Meier survival analysis revealed that overall survival was significantly shorter in patients with high HOXA rather than low HOXA expression (HOXA1, P = 0.012; HOXA5, P = 0.008; and HOXA6, P = 0.006). Upregulated HOXA1, HOXA5, and HOXA6 expression are significantly correlated with unfavorable overall survival and increased mortality in cervical cancer patients. Therefore, HOXA expression is a potential cervical cancer prognostic indicator."	"A microdeletion in the GRHL2 Gene in two unrelated patients with congenital fibrosis of the extra ocular muscles. Congenital fibrosis of the extraocular muscles type 1 (CFEOM1) is known to be caused by mutations in KIF21A or TUBB3 or other known genes (SALL4, CHN1, HOXA1). However, affected children may harbor other genetic defects. Therefore, a candidate gene analysis (KIF21A, TUBB3 SALL4, CHN1, HOXA1) and a high-resolution array comparative genomic hybridization (arrayCGH) was performed in two unrelated children with sporadic CFEOM1. Two unrelated Saudi patients did not have any mutation(s) after sequencing the full coding regions of SALL4, CHN1, HOXA1, and TUBB3 genes; and exons 8, 20, and 21 of the KIF21A gene. However, arrayCGH revealed a 3.17 Kb deletion at chromosome 8p22 with copy number state equal to 1, indicating a heterozygous deletion. This deletion was absent in proband's mother or father or 220 unrelated healthy individuals of similar ethnicity. The deletion encompassed only one functional gene, GRHL2, which encodes a transcription factor. In humans, defects in this gene are a cause of non-syndromic sensorineural deafness, autosomal dominant type 28 (DFNA28). We speculate that GRHL2 gene may have a role in orbital innervations and the defect in this gene (deletion) may be related to the CFEOM1 phenotype in these two children."	"Dysregulated expression of homeobox family genes may influence survival outcomes of patients with epithelial ovarian cancer: analysis of data from The Cancer Genome Atlas. Homeobox (HOX) family genes encode key transcription factors for embryogenesis and may be correlated with carcinogenesis. The aim of this study was to elucidate whether aberrant expression of HOX genes influences outcomes in epithelial ovarian cancer (EOC). Gene expression data and clinicopathologic information from 630 patients with EOC were downloaded from The Cancer Genome Atlas database. We explored correlations between expression levels of HOX gene family members and clinicopathological variables. Higher expression of HOXA1, A4, A5, A7, A10, A11, B13, C13, D1, and D3 was associated with advanced FIGO stage. Suboptimal residual disease after debulking surgery was significantly correlated with higher expression of HOXB9, B13, and C13. Additionally, patients with high expression of HOXC6 and C11 were significantly more likely to have poor performance status. Overall survival was significantly shorter in patients with high, rather than low, expression of two HOX genes (HOXA10 and B3), and significantly longer in patients with high rather than low HOXC5 expression. Dysregulated expression of the HOXA10, B3, and C5 was significantly correlated with overall survival in EOC patients. HOX gene expression levels are potentially useful as a prognostic indicator in EOC, and HOX genes may represent a novel and promising target for anticancer therapeutics."	"Hoxa1 targets signaling pathways during neural differentiation of ES cells and mouse embryogenesis. Hoxa1 has important functional roles in neural crest specification, hindbrain patterning and heart and ear development, yet the enhancers and genes that are targeted by Hoxa1 are largely unknown. In this study, we performed a comprehensive analysis of Hoxa1 target genes using genome-wide Hoxa1 binding data in mouse ES cells differentiated with retinoic acid (RA) into neural fates in combination with differential gene expression analysis in Hoxa1 gain- and loss-of-function mouse and zebrafish embryos. Our analyses reveal that Hoxa1-bound regions show epigenetic marks of enhancers, occupancy of Hox cofactors and differential expression of nearby genes, suggesting that these regions are enriched for enhancers. In support of this, 80 of them mapped to regions with known reporter activity in transgenic mouse embryos based on the Vista enhancer database. Two additional enhancers in Dok5 and Wls1 were shown to mediate neural expression in developing mouse and zebrafish. Overall, our analysis of the putative target genes indicate that Hoxa1 has input to components of major signaling pathways, including Wnt, TGF-β, Hedgehog and Hippo, and frequently does so by targeting multiple components of a pathway such as secreted inhibitors, ligands, receptors and down-stream components. We also identified genes implicated in heart and ear development, neural crest migration and neuronal patterning and differentiation, which may underlie major Hoxa1 mutant phenotypes. Finally, we found evidence for a high degree of evolutionary conservation of many binding regions and downstream targets of Hoxa1 between mouse and zebrafish. Our genome-wide analyses in ES cells suggests that we have enriched for in vivo relevant target genes and pathways associated with functional roles of Hoxa1 in mouse development."	"Distinct molecular subtypes of uterine leiomyosarcoma respond differently to chemotherapy treatment. Uterine leiomyosarcoma (ULMS) is an aggressive form of soft tissue tumors. The molecular heterogeneity and pathogenesis of ULMS are not well understood. Expression profiling data were used to determine the possibility and optimal number of ULMS molecular subtypes. Next, clinicopathological characters and molecular pathways were analyzed in each subtype to prospect the clinical applications and progression mechanisms of ULMS. Two distinct molecular subtypes of ULMS were defined based on different gene expression signatures. Subtype I ULMS recapitulated low-grade ULMS, the gene expression pattern of which resembled normal smooth muscle cells, characterized by overexpression of smooth muscle function genes such as LMOD1, SLMAP, MYLK, MYH11. In contrast, subtype II ULMS recapitulated high-grade ULMS with higher tumor weight and invasion rate, and was characterized by overexpression of genes involved in the pathway of epithelial to mesenchymal transition and tumorigenesis, such as CDK6, MAPK13 and HOXA1. We identified two distinct molecular subtypes of ULMS responding differently to chemotherapy treatment. Our findings provide a better understanding of ULMS intrinsic molecular subtypes, and will potentially facilitate the development of subtype-specific diagnosis biomarkers and therapy strategies for these tumors."	"HOXA1 and TALE proteins display cross-regulatory interactions and form a combinatorial binding code on HOXA1 targets. Hoxa1 has diverse functional roles in differentiation and development. We identify and characterize properties of regions bound by HOXA1 on a genome-wide basis in differentiating mouse ES cells. HOXA1-bound regions are enriched for clusters of consensus binding motifs for HOX, PBX, and MEIS, and many display co-occupancy of PBX and MEIS. PBX and MEIS are members of the TALE family and genome-wide analysis of multiple TALE members (PBX, MEIS, TGIF, PREP1, and PREP2) shows that nearly all HOXA1 targets display occupancy of one or more TALE members. The combinatorial binding patterns of TALE proteins define distinct classes of HOXA1 targets, which may create functional diversity. Transgenic reporter assays in zebrafish confirm enhancer activities for many HOXA1-bound regions and the importance of HOX-PBX and TGIF motifs for their regulation. Proteomic analyses show that HOXA1 physically interacts on chromatin with PBX, MEIS, and PREP family members, but not with TGIF, suggesting that TGIF may have an independent input into HOXA1-bound regions. Therefore, TALE proteins appear to represent a wide repertoire of HOX cofactors, which may coregulate enhancers through distinct mechanisms. We also discover extensive auto- and cross-regulatory interactions among the Hoxa1 and TALE genes, indicating that the specificity of HOXA1 during development may be regulated though a complex cross-regulatory network of HOXA1 and TALE proteins. This study provides new insight into a regulatory network involving combinatorial interactions between HOXA1 and TALE proteins."	"miR-99 regulates normal and malignant hematopoietic stem cell self-renewal. The microRNA-99 (miR-99) family comprises a group of broadly conserved microRNAs that are highly expressed in hematopoietic stem cells (HSCs) and acute myeloid leukemia stem cells (LSCs) compared with their differentiated progeny. Herein, we show that miR-99 regulates self-renewal in both HSCs and LSCs. miR-99 maintains HSC long-term reconstitution activity by inhibiting differentiation and cell cycle entry. Moreover, miR-99 inhibition induced LSC differentiation and depletion in an MLL-AF9-driven mouse model of AML, leading to reduction in leukemia-initiating activity and improved survival in secondary transplants. Confirming miR-99's role in established AML, miR-99 inhibition induced primary AML patient blasts to undergo differentiation. A forward genetic shRNA library screen revealed Hoxa1 as a critical mediator of miR-99 function in HSC maintenance, and this observation was independently confirmed in both HSCs and LSCs. Together, these studies demonstrate the importance of noncoding RNAs in the regulation of HSC and LSC function and identify miR-99 as a critical regulator of stem cell self-renewal."	"The genomic landscape of pediatric and young adult T-lineage acute lymphoblastic leukemia. Genetic alterations that activate NOTCH1 signaling and T cell transcription factors, coupled with inactivation of the INK4/ARF tumor suppressors, are hallmarks of T-lineage acute lymphoblastic leukemia (T-ALL), but detailed genome-wide sequencing of large T-ALL cohorts has not been carried out. Using integrated genomic analysis of 264 T-ALL cases, we identified 106 putative driver genes, half of which had not previously been described in childhood T-ALL (for example, CCND3, CTCF, MYB, SMARCA4, ZFP36L2 and MYCN). We describe new mechanisms of coding and noncoding alteration and identify ten recurrently altered pathways, with associations between mutated genes and pathways, and stage or subtype of T-ALL. For example, NRAS/FLT3 mutations were associated with immature T-ALL, JAK3/STAT5B mutations in HOXA1 deregulated ALL, PTPN2 mutations in TLX1 deregulated T-ALL, and PIK3R1/PTEN mutations in TAL1 deregulated ALL, which suggests that different signaling pathways have distinct roles according to maturational stage. This genomic landscape provides a logical framework for the development of faithful genetic models and new therapeutic approaches."	"Differential UBE2C and HOXA1 expression in melanocytic nevi and melanoma. Recent molecular advances suggest that Spitz nevi and other spitzoid neoplasms are biologically distinct from melanoma and conventional nevi. The ubiquitin ligase UBE2C and the homeobox transcription factor HOXA1 are candidate oncogenes in melanoma. Using RNA expression analysis and immunohistochemistry, we evaluated these biomarkers in Spitz nevi (n = 20), melanoma (n = 20), and by immunohistochemistry in conventional nevi (n = 20). RNA analysis with branched DNA multiplex assay identified upregulation of UBE2C in melanomas vs Spitz nevi (P = .003), whereas HOXA1 was downregulated in melanoma (P &lt; .0001). Immunohistochemical analysis confirmed increased nuclear expression of UBE2C in melanoma (mean = 18% of cells; range 3%-44%) when compared with Spitz nevi (mean = 9%; range 2%-28%; P = .001) and conventional nevi (mean = 1.5%; range 0-9%; P &lt; .0001). Strong UBE2C staining was identified in cells undergoing mitosis. UBE2C RNA and protein detection correlated with mitotic rate (P &lt; .0001). On the other hand, HOXA1 nuclear staining was low in melanoma (mean = 69%; range 5%-100%) when compared with Spitz nevi (mean = 94%; range 66%-100%; P = .0024) and conventional nevi (mean = 94%; range 83%-99%; P = .009). UBE2C and HOXA1 RNA and protein are differentially expressed in conventional and Spitz nevi and melanoma."	"Dynamic regulation of Nanog and stem cell-signaling pathways by Hoxa1 during early neuro-ectodermal differentiation of ES cells. Homeobox a1 (Hoxa1) is one of the most rapidly induced genes in ES cell differentiation and it is the earliest expressed Hox gene in the mouse embryo. In this study, we used genomic approaches to identify Hoxa1-bound regions during early stages of ES cell differentiation into the neuro-ectoderm. Within 2 h of retinoic acid treatment, Hoxa1 is rapidly recruited to target sites that are associated with genes involved in regulation of pluripotency, and these genes display early changes in expression. The pattern of occupancy of Hoxa1 is dynamic and changes over time. At 12 h of differentiation, many sites bound at 2 h are lost and a new cohort of bound regions appears. At both time points the genome-wide mapping reveals that there is significant co-occupancy of Nanog (Nanog homeobox) and Hoxa1 on many common target sites, and these are linked to genes in the pluripotential regulatory network. In addition to shared target genes, Hoxa1 binds to regulatory regions of Nanog, and conversely Nanog binds to a 3' enhancer of Hoxa1 This finding provides evidence for direct cross-regulatory feedback between Hoxa1 and Nanog through a mechanism of mutual repression. Hoxa1 also binds to regulatory regions of Sox2 (sex-determining region Y box 2), Esrrb (estrogen-related receptor beta), and Myc, which underscores its key input into core components of the pluripotential regulatory network. We propose a model whereby direct inputs of Nanog and Hoxa1 on shared targets and mutual repression between Hoxa1 and the core pluripotency network provides a molecular mechanism that modulates the fine balance between the alternate states of pluripotency and differentiation."	"KDM3B shows tumor-suppressive activity and transcriptionally regulates HOXA1 through retinoic acid response elements in acute myeloid leukemia. KDM3B reportedly shows both tumor-suppressive and tumor-promoting activities in leukemia. The function of KDM3B is likely cell-type dependent and its seeming functional discordance may reflect its phenotypic dependence on downstream targets. Here, we first showed the underexpression of KDM3B in acute myeloid leukemia (AML) patients and AML cell lines with MLL-AF6/9 or PML-RARA translocations. Overexpression of KDM3B repressed colony formation of AML cell line with 5q deletion. We then performed global microarray profiling to identify potential downstream targets of KDM3B, notably HOXA1, which was verified by real time PCR and Western blotting. We further showed KDM3B binding at retinoic acid response elements (RARE) but not at the promoter region of HOXA1 gene. KDM3B knockdown resulted in increased mono-methylation but decreased di-methylation of H3K9 at RARE while eschewing the promoter region of HOXA1. Collectively, we found that KDM3B exhibits potential tumor-suppressive activity and transcriptionally modulates HOXA1 expression via RARE in AML."	"Loss of H2B monoubiquitination is associated with poor-differentiation and enhanced malignancy of lung adenocarcinoma. Deregulated monoubiquitination of histone H2B (H2Bub1), mainly catalyzed by E3 ubiquitin-protein ligase RNF20/RNF40 complex, may play an important role in cancer. Here we investigate potential roles of H2Bub1 and the underlying mechanisms through which it contributes to cancer development and progression in lung adenocarcinoma. We show that downregulation of H2Bub1 through RNF20 knockdown dramatically decreases H3K79 and H3K4 trimethylation in both normal and malignant lung epithelial cell lines. Concurrently, global transcriptional profiling analysis reveals that multiple tumor-associated genes such as CCND3, E2F1/2, HOXA1, Bcl2 modifying factor (BMF), Met, and Myc; and signaling pathways of cellular dedifferentiation, proliferation, adhesion, survival including p53, cadherin, Myc, and anti-apoptotic pathways are differentially expressed or significantly altered in these lung epithelial cells upon downregulation of H2Bub1. Moreover, RNF20 knockdown dramatically suppresses terminal squamous differentiation of cultured bronchial epithelial cells, and significantly enhances proliferation, migration, invasion, and cisplatin resistance of lung cancer cells. Furthermore, immunohistochemistry analysis shows that H2Bub1 is extremely low or undetectable in &gt;70% of 170 lung adenocarcinoma samples. Notably, statistical analysis demonstrates that loss of H2Bub1 is significantly correlated with poor differentiation in lung adenocarcinoma (p = 0.0134). In addition, patients with H2Bub1-negative cancers had a trend towards shorter survival compared with patients with H2Bub1-positive cancers. Taken together, our findings suggest that loss of H2Bub1 may enhance malignancy and promote disease progression in lung adenocarcinoma probably through modulating multiple cancer signaling pathways."	"Mouse fitness measures reveal incomplete functional redundancy of Hox paralogous group 1 proteins. Here we assess the fitness consequences of the replacement of the Hoxa1 coding region with its paralog Hoxb1 in mice (Mus musculus) residing in semi-natural enclosures. Previously, this Hoxa1B1 swap was reported as resulting in no discernible embryonic or physiological phenotype (i.e., functionally redundant), despite the 51% amino acid sequence differences between these two Hox proteins. Within heterozygous breeding cages no differences in litter size nor deviations from Mendelian genotypic expectations were observed in the outbred progeny; however, within semi-natural population enclosures mice homozygous for the Hoxa1B1 swap were out-reproduced by controls resulting in the mutant allele being only 87.5% as frequent as the control in offspring born within enclosures. Specifically, Hoxa1B1 founders produced only 77.9% as many offspring relative to controls, as measured by homozygous pups, and a 22.1% deficiency of heterozygous offspring was also observed. These data suggest that Hoxa1 and Hoxb1 have diverged in function through either sub- or neo-functionalization and that the HoxA1 and HoxB1 proteins are not mutually interchangeable when expressed from the Hoxa1 locus. The fitness assays conducted under naturalistic conditions in this study have provided an ultimate-level assessment of the postulated equivalence of competing alleles. Characterization of these differences has provided greater understanding of the forces shaping the maintenance and diversifications of Hox genes as well as other paralogous genes. This fitness assay approach can be applied to any genetic manipulation and often provides the most sensitive way to detect functional differences."	"Downregulation of long noncoding RNA HOTAIRM1 promotes monocyte/dendritic cell differentiation through competitively binding to endogenous miR-3960. Myeloid differentiation is controlled by a multilayered regulatory circuitry consisting of various elements, including histone modifications, transcription factors, and posttranscriptional regulators such as miRNAs, long noncoding RNAs, and circular RNAs. However, the molecular mechanism underlying this biological process remains unclear. In this study, through epigenetic profiling analysis using chromatin immunoprecipitation (ChIP) followed by sequencing (ChIP-seq), we identified an lncRNA, HOTAIRM1, with a critical role in myeloid development. Further ChIP-chip analysis showed obvious H3K4me3 and H3K27me3 histone modification peak changes in the promoter region of HOTAIRM1 during the process of monocyte to dendritic cell (DC) differentiation. In line with this observation, HOTAIRM1 RNA expression was downregulated when monocytes differentiated into DCs. Moreover, we found that HOTAIRM1 RNA was regulated by epigenetic factors such as RBBP4 and RBBP7. Mechanistically, we found that the silencing of HOTAIRM1 caused changes in the expression of several monocyte differentiation markers such as CD14 and B7H2. In addition, based on the &quot;competing endogenous RNA&quot; hypothesis, we discovered miR-3960 targeting both HOTAIRM1 and the DC differentiation repression gene, HOXA1, by most possibly constructing a potential competing endogenous RNA network. Increased miR-3960 expression could downregulate both of these two long RNAs and finally lead peripheral blood cells to differentiate into DCs. In summary, our study demonstrates that HOTAIRM1 competitively binds to miR-3960 and finally regulates the process of hematopoiesis, which reveals a novel regulatory mechanism of lncRNA function."	"MiR-99a suppresses cell invasion and metastasis in nasopharyngeal carcinoma through targeting HOXA1. Recent studies reported that miRNAs play important roles in the carcinogenesis and progression of nasopharyngeal carcinoma (NPC). Therefore, further studies are warranted to better elucidate the function and mechanism of miRNAs in NPC. Quantitative reverse transcription-polymerase chain reaction (RT-PCR) was used to detect the miR-99a expression in NPC cell lines and tissue samples. Wound healing, transwell migration and invasion, and lung metastatic colonization assays were performed to determine NPC cell migratory, invasive and metastatic abilities of NPC cells. Luciferase reporter assays, quantitative RT-PCR and Western blotting were used to validate the target of miR-99a. We found that miR-99a was significantly downregulated in NPC cell lines and tissue samples. Ectopic overexpression of miR-99a significantly inhibited NPC cell migration and invasion in vitro, and suppressed lung macroscopic and microscopic metastatic colonization in vivo. Conversely, silencing of miR-99a significantly promoted the migratory and invasive abilities of NPC cells. Furthermore, HOXA1 was validated as a direct target of miR-99a, and ectopic expression of HOXA1 could rescue the suppressive effect of miR-99a overexpression on NPC cell migration and invasion. Together, these results indicated that miR-99a could inhibit NPC invasion and metastasis by targeting HOXA1, thus providing a novel potential target for miRNA-based treatment for NPC patients in the future."	"miR-30b inhibits cancer cell growth, migration, and invasion by targeting homeobox A1 in esophageal cancer. Emerging evidence has shown that microRNAs (miRNAs) play important roles in tumor development and progression. In particular, miR-30b is thought to be closely related to the migration, invasion, proliferation, communication, and drug resistance of tumor cells. However, the potential value of miR-30b in human esophageal cancer (EC) remains unclear. In this study, we investigated the biological functions of miR-30b and its potential role in EC. The results indicated that the expression levels of miR-30b were decreased in EC tissues and were correlated with invasion classification (P &lt; 0.01), lymph node metastasis (P &lt; 0.01), and pathological stage (P &lt; 0.05). Log-rank tests demonstrated that low expression of miR-30bwas strongly correlated with poor overall survival in patients with EC (P &lt; 0.05). Moreover, overexpression of miR-30b markedly inhibited the growth, migration, and invasion of ECA109 and TE-1 cells by directly downregulating homeobox A1 (HOXA1). When HOXA1 was reintroduced into miR-30b-transfected ECA109 or TE-1 cells, the inhibitory effects of miR-30b on EC cell growth, migration, and invasion were markedly reversed. In conclusion, our findings demonstrated that miR-30b could inhibit tumor cell growth, migration, and invasion by directly targeting HOXA1 in EC cells."	"Axons get ahead: Insights into axon guidance and congenital cranial dysinnervation disorders. Cranial nerves innervate head muscles in a well-characterized and highly conserved pattern. Identification of genes responsible for human congenital disorders of these nerves, combined with the analysis of their role in axonal development in animal models, has advanced understanding of how neuromuscular connectivity is established. Here, we focus on the ocular motor system, as an instructive example of the success of this approach in unravelling the aetiology of human strabismus. The discovery that ocular motility disorders can arise from mutations in transcription factors, including HoxA1, HoxB1, MafB, Phox2A, and Sall4, has revealed gene regulatory networks that pattern the brainstem and/or govern the differentiation of cranial motor neurons. Mutations in genes involved in axon growth and guidance disrupt specific stages of the extension and pathfinding of ocular motor nerves, and have been implicated in human strabismus. These genes encompass varied classes of molecule, from receptor complexes to dynamic effectors to cytoskeletal components, including Robo3/Rig1, Alpha2-chimaerin, Kif21A, TUBB2, and TUBB3. A current challenge is to understand the protein regulatory networks that link the cell surface to the cytoskeleton and to dissect the co-ordinated signalling cascades and motile responses that underpin axonal navigation. Here we review recent insights derived from basic and clinical science approaches, to show how, by capitalising on the strengths of each, a more complete picture of the aetiology of human congenital cranial dysinnervation disorders can be achieved. This elucidation of these principles illustrates the success of clinical genetic studies working in tandem with molecular and cellular models to enhance our understanding of human disease. © 2016 Wiley Periodicals, Inc. Develop Neurobiol 77: 861-875, 2017."	"MicroRNA-30e reduces cell growth and enhances drug sensitivity to gefitinib in lung carcinoma. MicroRNAs (miRNAs) play critical roles in variousbiological processes,including malignancy. Here, we demonstrated that miR-30e levels were markedly reduced in human lung carcinoma specimens in comparisonwith adjacent normal tissues.In addition, miR-30eamounts were starkly lower in the resistant PC9/gefitinib (PC9G) cancer cells compared with PC9 cells. Meanwhile, miR-30eoverexpression inPC9G cells resulted in reduced cell proliferation and migration,reversing drug resistance to gefitinib.Conversely,miR-30e silencing in PC9 cells increased proliferation as well as migration, and conferred resistance to gefitinib.Moreover, HOXA1, which was identified asa new miR-30etarget, plays important roles in regulating cell fate, early developmental patterns and organogenesis.Importantly, miR-30ealso inhibited PC9G growth in vivo. Taken together, these findings demonstrated that miR-30eshould be considered a tumor suppressor miRNA, which could be used in treatinghuman lung cancer."	"HOXA repression is mediated by nucleoporin Nup93 assisted by its interactors Nup188 and Nup205. The nuclear pore complex (NPC) mediates nuclear transport of RNA and proteins into and out of the nucleus. Certain nucleoporins have additional functions in chromatin organization and transcription regulation. Nup93 is a scaffold nucleoporin at the nuclear pore complex which is associated with human chromosomes 5, 7 and 16 and with the promoters of the HOXA gene as revealed by ChIP-on-chip studies using tiling microarrays for these chromosomes. However, the functional consequences of the association of Nup93 with HOXA is unknown. Here, we examined the association of Nup93 with the HOXA gene cluster and its consequences on HOXA gene expression in diploid colorectal cancer cells (DLD1). Nup93 showed a specific enrichment ~1 Kb upstream of the transcription start site of each of the HOXA1, HOXA3 and HOXA5 promoters, respectively. Furthermore, the association of Nup93 with HOXA was assisted by its interacting partners Nup188 and Nup205. The depletion of the Nup93 sub-complex significantly upregulated HOXA gene expression levels. However, expression levels of a control gene locus (GLCCI1) on human chromosome 7 were unaffected. Three-dimensional fluorescence in situ hybridization (3D-FISH) analyses revealed that the depletion of the Nup93 sub-complex (but not Nup98) disengages the HOXA gene locus from the nuclear periphery, suggesting a potential role for Nup93 in tethering and repressing the HOXA gene cluster. Consistently, Nup93 knockdown increased active histone marks (H3K9ac), decreased repressive histone marks (H3K27me3) on the HOXA1 promoter and increased transcription elongation marks (H3K36me3) within the HOXA1 gene. Moreover, the combined depletion of Nup93 and CTCF (a known organizer of HOXA gene cluster) but not Nup93 alone, significantly increased GLCCI1 gene expression levels. Taken together, this suggests a novel role for Nup93 and its interactors in repressing the HOXA gene cluster. This study reveals that the nucleoporin Nup93 assisted by its interactors Nup188 and Nup205 mediates the repression of HOXA gene expression."	"Hoxa1 and Hoxb1 are required for pharyngeal arch artery development. Hox transcription factors play critical roles during early vertebrate development. Previous studies have revealed an overlapping function of Hoxa1 and Hoxb1 during specification of the rhombomeres from which neural crest cells emerge. A recent study on Hoxa1 mutant mice documented its function during cardiovascular development, however, the role of Hoxb1 is still unclear. Here we show using single and compound Hoxa1;Hoxb1 mutant embryos that reduction of Hoxa1 gene dosage in Hoxb1-null genetic background is sufficient to result in abnormal pharyngeal aortic arch (PAA) development and subsequently in great artery defects. Endothelial cells in the 4th PAAs of compound mutant differentiate normally whereas vascular smooth muscle cells of the vessels are absent in the defective PAAs. The importance of Hoxa1 and Hoxb1, and their interaction during specification of cardiac NCCs is demonstrated. Together, our data reveal a critical role for anterior Hox genes during PAA development, providing new mechanistic insights into the etiology of congenital heart defects."	"Establishment of a miRNA-mRNA regulatory network in metastatic renal cell carcinoma and screening of potential therapeutic targets. This study aimed to screen effective diagnosis or treatment biomarkers for renal cell carcinoma, especially for metastatic renal cell carcinoma (mRCC) based on microRNA (miRNA) and messenger RNA (mRNA) genechip, and their regulatory network. The differential expressions of miRNAs and mRNAs were examined by miRNA and mRNA gene-chip analyses, respectively, in patients with either localized renal cell carcinoma (lRCC) or mRCC, and a miRNA-mRNA regulatory network was established. Subsequently, the regulation of selected mRNAs by miRNAs was validated by reverse transcription-quantitative polymerase chain reaction (RT-qPCR) and dual-luciferase reporter gene assay. Thirty-one up-regulated miRNAs, 196 down-regulated miRNAs, 214 up-regulated mRNAs, and 156 down-regulated mRNAs were identified in patients with mRCC. In total, 1315 miRNA-mRNA pairs, involving 34 miRNAs and 225 mRNAs, were established. The expression profiles of four up-regulated miRNAs, hsa-miR-139-5p, hsa-miR-140-3p, hsa-miR-151a-3p, and hsa-miR-204-5p, and four down-regulated miRNAs, hsa-miR-409-3p, hsa-miR-671-3p, hsa-miR-1203, and hsa-miR-1290, were consistent with the results from the miRNA gene-chip analysis. The expression profiles of NEU2, MASP1, MCL1, ARHGAP11A, HOXA1, and CLDN8 were consistent with the results from the mRNA gene-chip analysis. In vitro, hsa-miR-140-3p bound to the 3' untranslated region (3'-UTR) of the MASP1 mRNA and down-regulated its expression. Similarly, hsa-miR-151a-3p, hsa-miR-671-3p, and hsa-miR-1290 bound to the 3'-UTRs of the MCL1, HOXA1, and HOXA1 mRNAs, respectively, and down-regulated their expressions. However, binding by hsa-miR-140-3p, hsa-miR-671-3p, or hsa-miR-1290 did not down-regulate the expressions of NEU2, ARHGAP11A, and CLDN8, respectively. This study provides a significant reference of investigating the pathogenesis of mRCC and the subsequent screening of potential therapeutic targets."	"Adverse effect of valproic acid on an in vitro gastrulation model entails activation of retinoic acid signaling. Valproic acid (VPA), an antiepileptic drug, is a teratogen that causes neural tube and axial skeletal defects, although the mechanisms are not fully understood. We previously established a gastrulation model using mouse P19C5 stem cell embryoid bodies (EBs), which exhibits axial patterning and elongation morphogenesis in vitro. Here, we investigated the effects of VPA on the EB axial morphogenesis to gain insights into its teratogenic mechanisms. Axial elongation and patterning of EBs were inhibited by VPA at therapeutic concentrations. VPA elevated expression levels of various developmental regulators, including Cdx1 and Hoxa1, known transcriptional targets of retinoic acid (RA) signaling. Co-treatment of EBs with VPA and BMS493, an RA receptor antagonist, partially rescued axial elongation as well as gene expression profiles. These results suggest that VPA requires active RA signaling to interfere with EB morphogenesis."	"The genetics of nonsyndromic bilateral Duane retraction syndrome. To assess the importance of monogenic mutations and chromosomal copy number variants (CNVs) in the occurrence of nonsyndromic bilateral Duane retraction syndrome (bilateral nsDRS). The medical records of 12 patients with bilateral nsDRS were reviewed. Genes associated with DRS and associated congenital cranial dysinnervation disorders (SALL4, CHN1, HOXA1, TUBB3, and KIF21A) were sequenced in the standard fashion in each patient. Array comparative genomic hybridization (array CGH) was performed using Affymetrix Cytogenetics Whole-Genome 2.7M array, and the results were analyzed using Affymetrix Chromosome Analysis Suite v1.2. CNVs were assessed as unlikely to be pathologic if they were also present in the Database of Genomic Variants (DGV) or our local database of array CGH results in 150 normal individuals of Middle Eastern ethnicity. No patient had a sequence mutation in SALL4, CHN1, HOXA1, TUBB3, or KIF21A. These 12 patients each had 36-42 chromosomal deletions and/or duplications (mean with standard deviation, 26.25 ± 6.77), but all of these CNVs were present either in the DGV or in our local database of normal individuals of similar ethnicity and, therefore, are considered nonpathogenic. The results reported here suggest that bilateral nsDRS is not usually associated with mutations in these genes or with chromosomal CNVs. Current evidence suggests other factors such as epigenetic and/or teratogenic abnormalities may be a potential cause of bilateral nsDRS."	"Corexit-EC9527A Disrupts Retinol Signaling and Neuronal Differentiation in P19 Embryonal Pluripotent Cells. Corexit-EC9500A and Corexit-EC9527A are two chemical dispersants that have been used to remediate the impact of the 2010 Deepwater Horizon oil spill. Both dispersants are composed primarily of organic solvents and surfactants and act by emulsifying the crude oil to facilitate biodegradation. The potential adverse effect of the Corexit chemicals on mammalian embryonic development remains largely unknown. Retinol (vitamin A) signaling, mediated by all-trans retinoic acid (RA), is essential for neural tube formation and the development of many organs in the embryo. The physiological levels of RA in cells and tissues are maintained by the retinol signaling pathway (RSP), which controls the biosynthesis of RA from dietary retinol and the catabolism of RA to polar metabolites for removal. RA is a potent activating ligand for the RAR/RXR nuclear receptors. Through RA and the receptors, the RSP modulates the expression of many developmental genes; interference with the RSP is potentially teratogenic. In this study the mouse P19 embryonal pluripotent cell, which contains a functional RSP, was used to evaluate the effects of the Corexit dispersants on retinol signaling and associated neuronal differentiation. The results showed that Corexit-EC9500A was more cytotoxic than Corexit-EC9527A to P19 cells. At non-cytotoxic doses, Corexit-EC9527A inhibited retinol-induced expression of the Hoxa1 gene, which encodes a transcription factor for the regulation of body patterning in the embryo. Such inhibition was seen in the retinol- and retinal- induced, but not RA-induced, Hoxa1 up-regulation, indicating that the Corexit chemicals primarily inhibit RA biosynthesis from retinal. In addition, Corexit-EC9527A suppressed retinol-induced P19 cell differentiation into neuronal cells, indicating potential neurotoxic effect of the chemicals under the tested conditions. The surfactant ingredient, dioctyl sodium sulfosuccinate (DOSS), may be a major contributor to the observed effect of Corexit-EC9527A in the cell."	"Microarray analysis of microRNA expression in mouse fetus at 13.5 and 14.5 days post-coitum in ear and back skin tissues. There is no information regarding the role of microRNAs in the development of the external ear in mammals. The purpose of this study was to determine the stage-specific expression of microRNA during external ear development in mice under normal conditions. GeneChip miRNA 3.0 arrays by Affymetrix were used to obtain miRNA expression profiles from mice fetal pinnae and back skin tissues at 13.5 days-post-coitum (dpc) and 14.5 dpc. Biological triplicates for each tissue were analyzed; one litter represents one biological replica, each litter had 16 fetuses on average. The results were analyzed with Affymetrix's Transcriptome Analysis Console software to identify differentially expressed miRNAs. The inquiry showed significant differential expression of 25 miRNAs at 13.5 dpc and 31 at 14.5 dpc, some of these miRNAs were predicted to target genes implicated in external ear development. One example is mmu-miR-10a whose low expression in pinnae is known to impact ear development by modulating Hoxa1 mRNA levels Garzon et al. (2006), Gavalas et al. (1998) [1], [2]. Other findings like the upregulation of mmu-miR-200c and mmu-miR-205 in the pinnae tissues of healthy mice are in agreement with what has been reported in human patients with microtia, in which down regulation of both miRNAs has been found Li et al. (2013) [3]. This study uncovered a spatiotemporal pattern of miRNA expression in the external ear, which results from continuous transcriptional changes during normal development of body structures. All microarray data are available at the Gene Expression Omnibus (GEO) at NCBI under accession number GSE64945. "	"Whole-transcriptome analysis of chordoma of the skull base. Fourteen skull base chordoma specimens and three normal specimens were microdissected from paraffin-embedded tissue. Pools of RNA from highly enriched preparations of these cell types were subjected to expression profiling using whole-transcriptome shotgun sequencing. Using strict criteria, 294 differentially expressed transcripts were found, with 28 % upregulated and 72 % downregulated. The transcripts were annotated using NCBI Entrez Gene and computationally analyzed with the Ingenuity Pathway Analysis program. From these significantly changed expressions, the analysis identified 222 cancer-related transcripts. These 294 differentially expressed genes and non-coding RNA transcripts provide here a set to specifically define skull base chordomas and to identify novel and potentially important targets for diagnosis, prognosis, and therapy of this cancer. Significance Genomic profiling to subtype skull base chordoma reveals potential candidates for specific biomarkers, with validation by IHC for selected candidates. The highly expressed developmental genes T, LMX1A, ZIC4, LHX4, and HOXA1 may be potential drivers of this disease. "	"HOXA1 binds RBCK1/HOIL-1 and TRAF2 and modulates the TNF/NF-κB pathway in a transcription-independent manner. HOX proteins define a family of key transcription factors regulating animal embryogenesis. HOX genes have also been linked to oncogenesis and HOXA1 has been described to be active in several cancers, including breast cancer. Through a proteome-wide interaction screening, we previously identified the TNFR-associated proteins RBCK1/HOIL-1 and TRAF2 as HOXA1 interactors suggesting that HOXA1 is functionally linked to the TNF/NF-κB signaling pathway. Here, we reveal a strong positive correlation between expression of HOXA1 and of members of the TNF/NF-κB pathway in breast tumor datasets. Functionally, we demonstrate that HOXA1 can activate NF-κB and operates upstream of the NF-κB inhibitor IκB. Consistently, we next demonstrate that the HOXA1-mediated activation of NF-κB is non-transcriptional and that RBCK1 and TRAF2 influences on NF-κB are epistatic to HOXA1. We also identify an 11 Histidine repeat and the homeodomain of HOXA1 to be required both for RBCK1 and TRAF2 interaction and NF-κB stimulation. Finally, we highlight that activation of NF-κB is crucial for HOXA1 oncogenic activity."	"The Downregulation of MicroRNA-10b and its Role in Cervical Cancer. It has been demonstrated that microRNAs (miRNAs) act as oncogenes or tumor suppressors in a variety of cancers. Our previous work suggested that miR-10a/b functioned as a tumor suppressor in gastric cancer, and miR-10b was also reported to be significantly downregulated in advanced stage cervical cancer tissues. However, the aberrant expression of miR-10b in cervical cancer and its possible role in cervical carcinogenesis was largely unknown. In this study, we investigated the expression of miR-10b in cervical cancer tissues, carcinoma in situ tissues, mild dysplasia, moderate dysplasia, severe dysplasia tissues, and normal controls. We found that miR-10b was significantly downregulated during cervical cancer progression, and the lower level of miR-10b in cervical cancer was significantly associated with a more aggressive tumor phenotype. Moreover, overexpression of miR-10b in cervical cancer cells could inhibit the cell proliferation and invasion, and the further mechanism study suggested that its role was possibly through directly targeting HOXA1. These results suggested that the downregulation of miR-10b and the resulting elevated HOXA1 level in cervical cancer tissues might play critical roles in cervical cancer progression. "	"Hox Genes in Cardiovascular Development and Diseases. Congenital heart defects (CHD) are the leading cause of death in the first year of life. Over the past 20 years, much effort has been focused on unraveling the genetic bases of CHD. In particular, studies in human genetics coupled with those of model organisms have provided valuable insights into the gene regulatory networks underlying CHD pathogenesis. Hox genes encode transcription factors that are required for the patterning of the anterior-posterior axis in the embryo. In this review, we focus on the emerging role of anteriorly expressed Hox genes (Hoxa1, Hoxb1, and Hoxa3) in cardiac development, specifically their contribution to patterning of cardiac progenitor cells and formation of the great arteries. Recent evidence regarding the cooperative regulation of heart development by Hox proteins with members of the TALE-class of homeodomain proteins such as Pbx and Meis transcription factors is also discussed. These findings are highly relevant to human pathologies as they pinpoint new genes that increase susceptibility to cardiac anomalies and provide novel mechanistic insights into CHD."	"External ear microRNA expression profiles during mouse development. MicroRNAs (miRNAs) comprise a class of approximately 22 nucleotide regulatory non-coding RNAs that play several roles in diverse biological processes. Recent reports suggest that embryonic development in mammals is accompanied by dynamic changes in miRNA expression; however, there is no information regarding the role of miRNAs in the development of the external ear. The aim of this study was to determine the stage-specific expression of miRNAs during mouse external ear development in order to identify potentially implicated miRNAs along with their possible targets. miRNA expression profiles from fetal mice pinnae and back skin tissues at 13.5 dpc and 14.5 dpc were obtained using an Affymetrix GeneChip miRNA 3.0 array. Biological triplicates for both tissues, each collected from a litter averaging 16 fetuses, were analyzed. The results were analyzed with Affymetrix's Transcriptome Analysis Console software to identify differentially expressed miRNAs. We observed differential expression of 40 miRNAs including some predicted to target genes implicated in external ear development, such as mmu-miR-10a, an miRNA known to modulate Hoxa1 mRNA levels, and mmu-miR-200c and mmu-miR-205. To our knowledge, this is the first miRNA expression profiling study of external ear development in mammals. These data could set the basis to understand the implications of miRNAs in normal external ear development. "	"Fat accumulation in differentiated brown adipocytes is linked with expression of Hox genes. Homeobox (Hox) genes are involved in body plan of embryo along the anterior-posterior axis. Presence of several Hox genes in white adipose tissue (WAT) and brown adipose tissue (BAT) is indicative of involvement of Hox genes in adipogenesis. We propose that differentiation inducing agents viz. isobutyl-methyl-xanthine (IBMX), indomethacin, dexamethasone (DEX), triiodothyronine (T3) and insulin may regulate differentiation in brown adipose tissue through Hox genes. In vitro culture of brown fat stromalvascular fraction (SVF) in presence or absence of differentiation inducing agents was used for establishing relationship between fat accumulation in differentiated adipocytes and expression of Hox genes. Relative expression of Pref1, UCP1 and Hox genes was determined in different stages of adipogenesis. Presence or absence of IBMX, indomethacin and DEX during differentiation of proliferated pre-adipocytes resulted in marked differences in expression of Hox genes and lipid accumulation. In presence of these inducing agents, lipid accumulation as well as expression of HoxA1, HoxA5, HoxC4 &amp;HoxC8 markedly enhanced. Irrespective of presence or absence of T3, insulin down regulates HoxA10. T3 results in over expression of HoxA5, HoxC4 and HoxC8 genes, whereas insulin up regulates expression of only HoxC8. Findings suggest that accumulation of fat in differentiated adipocytes is linked with expression of Hox genes."	"Identification of compounds that modulate retinol signaling using a cell-based qHTS assay. In vertebrates, the retinol (vitamin A) signaling pathway (RSP) controls the biosynthesis and catabolism of all-trans retinoic acid (atRA), which regulates transcription of genes essential for embryonic development. Chemicals that interfere with the RSP to cause abnormal intracellular levels of atRA are potential developmental toxicants. To assess chemicals for the ability to interfere with retinol signaling, we have developed a cell-based RARE (Retinoic Acid Response Element) reporter gene assay to identify RSP disruptors. To validate this assay in a quantitative high-throughput screening (qHTS) platform, we screened the Library of Pharmacologically Active Compounds (LOPAC) in both agonist and antagonist modes. The screens detected known RSP agonists, demonstrating assay reliability, and also identified novel RSP agonists including kenpaullone, niclosamide, PD98059 and SU4312, and RSP antagonists including Bay 11-7085, LY294002, 3,4-Methylenedioxy-β-nitrostyrene, and topoisomerase inhibitors (camptothecin, topotecan, amsacrine hydrochloride, and idarubicin). When evaluated in the P19 pluripotent cell, these compounds were found to affect the expression of the Hoxa1 gene that is essential for embryo body patterning. These results show that the RARE assay is an effective qHTS approach for screening large compound libraries to identify chemicals that have the potential to adversely affect embryonic development through interference with retinol signaling. "	"Elevated HOXA1 expression correlates with accelerated tumor cell proliferation and poor prognosis in gastric cancer partly via cyclin D1. HOXA1 is a member of the Homeobox gene family, which encodes a group of highly conserved transcription factors that are important in embryonic development. However, it has been reported that HOXA1 exhibits oncogenic properties in many malignancies. This study focused on the expression and clinical significance of HOXA1 in gastric cancer (GC). To assess the mRNA and protein expression of HOXA1 and cyclin D1 in GC tissues, we utilized qRT-PCR and western blotting, respectively. The effects of HOXA1 on GC cell proliferation, migration, and invasion, as well as xenograft tumor formation and the cell cycle were investigated in our established stable HOXA1 knockdown GC cell lines. The protein expression of HOXA1 and cyclin D1 was examined by immunohistochemistry using GC tissue microarrays (TMA) to analyze their relationship on a histological level. The Kaplan-Meier method and cox proportional hazards model were used to analyze the relationship of HOXA1 and cyclin D1 expression with GC clinical outcomes. HOXA1 mRNA and protein expression were upregulated in GC tissues. Knockdown of HOXA1 in GC cells not only inhibited cell proliferation, migration, and invasion in vitro but also suppressed xenograft tumor formation in vivo. Moreover, HOXA1 knockdown induced changes in the cell cycle, and HOXA1 knockdown cells were arrested at the G1 phase, the number of cells in S phase was reduced, and the expression of cyclin D1 was decreased. In GC tissues, high cyclin D1 mRNA and protein expression were detected, and a significant correlation was found between the expression of HOXA1 and cyclin D1. Survival analysis indicated that HOXA1 and cyclin D1 expression were significantly associated with disease-free survival (DFS) and overall survival (OS). Interestingly, patients with tumors that were positive for HOXA1 and cyclin D1 expression showed worse prognosis. Multivariate analysis confirmed that the combination of HOXA1 and cyclin D1 was an independent prognostic indicator for OS and DFS. Our data show that HOXA1 plays a crucial role in GC development and clinical prognosis. HOXA1, alone or combination with cyclin D1, may serve as a novel prognostic biomarker for GC."	"Long noncoding RNA-HOTAIR affects chemoresistance by regulating HOXA1 methylation in small cell lung cancer cells. Homeobox (HOX) transcript antisense RNA (HOTAIR), a long intergenic noncoding RNA (lincRNA), has been reported to play an oncogenic role in various cancers including small cell lung cancer (SCLC). However, it is not known whether HOTAIR can modulate chemoresistance in SCLC. The aim of this study is to investigate the roles of HOTAIR in chemoresistance of SCLC and its possible molecular mechanism. Knockdown of HOTAIR was carried out in SCLC multidrug-resistant cell lines (H69AR and H446AR) and the parental cell lines (H69 and H446) to assess its influence on chemoresistance. The results showed that downregulation of HOTAIR increased cell sensitivity to anticancer drugs through increasing cell apoptosis and cell cycle arrest, and suppressed tumor growth in vivo. Moreover, HOXA1 methylation increased in the resistant cells using bisulfite sequencing PCR. Depletion of HOTAIR reduced HOXA1 methylation by decreasing DNMT1 and DNMT3b expression. The interaction between HOTAIR and HOXA1 was validated by RNA immunoprecipitation. Taken together, our study suggested that HOTAIR mediates chemoresistance of SCLC by regulating HOXA1 methylation and could be utilized as a potential target for new adjuvant therapies against chemoresistance. "	"Transcriptomic profiling comparison of YAP over-expression and conditional knockout mouse tooth germs. To identify the downstream target genes of YAP, we used RNA-Seq technology to compare the transcriptomic profilings of Yap conditional knockout (Yap CKO) and YAP over-expression mouse tooth germs. Our results showed that some Hox, Wnt and Laminin family genes had concurrent changes with YAP transcripts, indicating that the expression of these genes may be regulated by YAP. Here, we provide the detailed experimental procedure for the transcriptomic profiling results (NCBI GEO accession number GSE65524). The associated study on the regulation of Hoxa1 and Hoxc13 genes by YAP was published in Molecular Cellular Biology in 2015 [Liu et al., 2015]. "	"[The role of developmental HOX genes in cervical cancer]. Cervical cancer (CC) is a multifactorial disease associated to genetic, environmental and epigenetic factors, being the infection by human papillomavirus the main etiologic agent. Additionally, the alteration in the expression of transcription factors has been considered of importance for the development of this tumor. HOX genes encode a group of transcription factors involved in cellular proliferation and differentiation processes during the development of embryonic structures in vertebrates; their aberrant expression is associated with tumorigenesis and metastasis. A range of evidence suggests a role for HOX genes in the development of cervical neoplastic cell. Studies in CC cell lines, primary tumors and premalignant lesions have suggested the involvement of HOXA1, HOXC5, C6, C8 and C10, HOXD9 and HOXD13 in the process of cervical carcinogenesis. Also, the de novo expression of genes HOXB2, B4, B13 and HOXC11-C13 appears to be involved in the process of malignant transformation of cervical epithelial cell. These data would allow to open a field in search of new molecular markers in cervical cancer and the development of new therapeutic strategies for this malignancy. El cáncer cervicouterino (CaCU) es una enfermedad multifactorial que se asocia a factores genéticos, ambientales y epigenéticos, y cuyo principal agente etiológico es la infección por el virus del papiloma humano. Además, la alteración en la expresión de factores de transcripción ha sido considerada de importancia para el desarrollo de esta neoplasia. Los genes HOX codifican un grupo de factores de transcripción que participan en los procesos de proliferación y diferenciación celular durante el desarrollo de las estructuras embrionarias en los vertebrados; y su expresión aberrante ha sido asociada con oncogénesis y metástasis. Una serie de evidencias sugiere un papel importante para los genes HOX en el desarrollo neoplásico de la célula cervical. Estudios realizados en líneas celulares de CaCU, lesiones premalignas y tumores primarios han sugerido el involucramiento de HOXA1, HOXC5, C6, C8 y C10, HOXD9 y HOXD13 en el proceso de carcinogénesis cervical. Asimismo, la expresión de novo de los genes HOXB2, B4, B13 y HOXC11-C13 parece estar involucrada en el proceso de transformación maligna de la célula del epitelio cervical. Estos datos permitirían abrir un campo en la búsqueda de nuevos marcadores moleculares en cáncer cervical y en el desarrollo de nuevas estrategias terapéuticas para atender esta neoplasia."	"Fitness Assays Reveal Incomplete Functional Redundancy of the HoxA1 and HoxB1 Paralogs of Mice. Gene targeting techniques have led to the phenotypic characterization of numerous genes; however, many genes show minimal to no phenotypic consequences when disrupted, despite many having highly conserved sequences. The standard explanation for these findings is functional redundancy. A competing hypothesis is that these genes have important ecological functions in natural environments that are not needed under laboratory settings. Here we discriminate between these hypotheses by competing mice (Mus musculus) whose Hoxb1 gene has been replaced by Hoxa1, its highly conserved paralog, against matched wild-type controls in seminatural enclosures. This Hoxb1(A1) swap was reported as a genetic manipulation resulting in no discernible embryonic or physiological phenotype under standard laboratory tests. We observed a transient decline in first litter size for Hoxb1(A1) homozygous mice in breeding cages, but their fitness was consistently and more dramatically reduced when competing against controls within seminatural populations. Specifically, males homozygous for the Hoxb1(A1) swap acquired 10.6% fewer territories and the frequency of the Hoxb1(A1) allele decreased from 0.500 in population founders to 0.419 in their offspring. The decrease in Hoxb1(A1) frequency corresponded with a deficiency of both Hoxb1(A1) homozygous and heterozygous offspring. These data suggest that Hoxb1 and Hoxa1 are more phenotypically divergent than previously reported and support that sub- and/or neofunctionalization has occurred in these paralogous genes leading to a divergence of gene function and incomplete redundancy. Furthermore, this study highlights the importance of obtaining fitness measures of mutants in ecologically relevant conditions to better understand gene function and evolution. "	"MicroRNA-99a inhibits tumor aggressive phenotypes through regulating HOXA1 in breast cancer cells. MicroRNAs (miRNAs) are key regulators of tumor progression. Based on microarray data, we identified miR-99a as a potential tumor suppressor in breast cancer. Expression of miR-99a is frequently down-regulated in breast cancer tissues relative to normal breast tissues. Reduced miR-99a expression was highly associated with lymph node metastasis and shorter overall survival of patients with breast cancer. Gain- and loss-of-function studies revealed that, miR-99a significantly inhibits breast cancer cell proliferation, migration, and invasion. An integrated bioinformatics analysis identified HOXA1 mRNA as the direct functional target of miR-99a, and this regulation was confirmed by luciferase reporter assay. Furthermore, we showed for the first time that HOXA1 expression is elevated in breast cancer tissues. Knockdown of HOXA1 significantly inhibited breast cancer cell proliferation, migration and invasion, and restoration of HOXA1 partially rescued the inhibitory effect of miR-99a in breast cancer cells. Collectively, our data indicate that miR-99a plays a tumor-suppressor role in the development of breast cancer, and could serve as a potential therapeutic target for breast cancer treatment. "	"Hoxb1 regulates proliferation and differentiation of second heart field progenitors in pharyngeal mesoderm and genetically interacts with Hoxa1 during cardiac outflow tract development. Outflow tract (OFT) anomalies are among the most common congenital heart defects found at birth. The embryonic OFT grows by the progressive addition of cardiac progenitors, termed the second heart field (SHF), which originate from splanchnic pharyngeal mesoderm. Development of the SHF is controlled by multiple intercellular signals and transcription factors; however the relationship between different SHF regulators remains unclear. We have recently shown that Hoxa1 and Hoxb1 are expressed in a sub-population of the SHF contributing to the OFT. Here, we report that Hoxb1 deficiency results in a shorter OFT and ventricular septal defects (VSD). Mechanistically, we show that both FGF/ERK and BMP/SMAD signaling, which regulate proliferation and differentiation of cardiac progenitor cells and OFT morphogenesis, are enhanced in the pharyngeal region in Hoxb1 mutants. Absence of Hoxb1 also perturbed SHF development through premature myocardial differentiation. Hence, the positioning and remodeling of the mutant OFT is disrupted. Hoxa1(-/-) embryos, in contrast, have low percentage of VSD and normal SHF development. However, compound Hoxa1(-/-); Hoxb1(+/-) embryos display OFT defects associated with premature SHF differentiation, demonstrating redundant roles of these factors during OFT development. Our findings provide new insights into the gene regulatory network controlling SHF and OFT formation."	"HOXA1 enhances the cell proliferation, invasion and metastasis of prostate cancer cells. HOXA1, a member of the HOX gene family, has been implicated in tumor progression. However, the role of HOXA1 in prostate cancer is not well-established. In the present study, we found that HOXA1 was highly expressed in prostate cancer cells. We then repressed the expression of HOXA1 by short hairpin RNA (shRNA) to investigate the function of HOXA1 in prostate cancer cells. Our in vitro data showed that knockdown of HOXA1 attenuated the growth, invasion and migration of prostate cancer DU-145 and PC-3 cells. Furthermore, knockdown of HOXA1 resulted in an increased E-cadherin level and decreased Snail and MMP-3 levels in the DU-145 cells. In addition, knockdown of HOXA1 inhibited activation of ERK1/2 and AKT in the DU-145 cells. Our in vivo data revealed that knockdown of HOXA1 suppressed the growth and metastasis of prostate cancer cells. Collectively, our findings suggest that HOXA1 is involved in the regulation of prostate cancer progression, including cell growth, migration, invasion and metastasis. Thus, downregulation of HOXA1 may be a novel approach for the treatment of prostate cancer. "	"Microarray and ChIP-seq data analysis revealed changes in p53-mediated transcriptional regulation in Nutlin-3-treated U2OS cells. Integrative analysis of chromatin immunoprecipitation-sequencing (ChIP-seq) data and microarray data was performed to illustrate the effect of Nutlin‑3 on promoter selectivity and transcriptional regulation by the tumor suppressor p53 in U2OS human osteosarcoma cells. Raw data (accession number, GSE46642) were downloaded from Gene Expression Omnibus. Differential analyses were performed using package limma of R software. Gene ontology enrichment and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analyses were performed for the differentially expressed genes (DEGs) using the Database for Annotation, Visualization and Integration Discovery. Integrative analysis of ChIP‑seq data and microarray data were confirmed with ChIP‑Array. A total of 565 DEGs were identified, including 373 upregulated genes and 192 downregulated genes. Genes involved in the p53 signaling pathway, cell cycle, DNA replication, cytokine‑cytokine receptor interaction and melanoma were markedly over‑represented in the DEGs. A total of 39 DEGs were directly regulated by p53 and two were the transcription factors (TFs), E2F2 and HOXA1. E2F2 regulated 25 DEGs, while HOXA1 regulated one DEG. The cell cycle, p53 signaling pathway, melanoma and pathways involved in cancer were enriched in the direct and indirect target genes. Changes in the p53‑binding pattern induced by Nutlin‑3 were described in the present study, which may advance the understanding of the regulatory network of p53 in osteosarcoma and aid in the development of novel therapies."	"Understanding the molecular mechanisms of human microtia via a pig model of HOXA1 syndrome. Microtia is a congenital malformation of the outer ears. Although both genetic and environmental components have been implicated in microtia, the genetic causes of this innate disorder are poorly understood. Pigs have naturally occurring diseases comparable to those in humans, providing exceptional opportunity to dissect the molecular mechanism of human inherited diseases. Here we first demonstrated that a truncating mutation in HOXA1 causes a monogenic disorder of microtia in pigs. We further performed RNA sequencing (RNA-Seq) analysis on affected and healthy pig embryos (day 14.25). We identified a list of 337 differentially expressed genes (DEGs) between the normal and mutant samples, shedding light on the transcriptional network involving HOXA1. The DEGs are enriched in biological processes related to cardiovascular system and embryonic development, and neurological, renal and urological diseases. Aberrant expressions of many DEGs have been implicated in human innate deformities corresponding to microtia-associated syndromes. After applying three prioritizing algorithms, we highlighted appealing candidate genes for human microtia from the 337 DEGs. We searched for coding variants of functional significance within six candidate genes in 147 microtia-affected individuals. Of note, we identified one EVC2 non-synonymous mutation (p.Asp1174Asn) as a potential disease-implicating variant for a human microtia-associated syndrome. The findings advance our understanding of the molecular mechanisms underlying human microtia, and provide an interesting example of the characterization of human disease-predisposing variants using pig models. "	"DNA methylation analysis for the diagnosis of thyroid nodules - a pilot study with reference to BRAF(V) (600E) mutation and cytopathology results. Promoter hypermethylation and the BRAF(V) (600E) mutation are both involved in thyroid tumorigenesis. We conducted a pilot study on the diagnosis of thyroid nodules by analysis of promoter hypermethylation status with reference to BRAF(V) (600E) mutation and cytopathology results using formalin-fixed, paraffin-embedded (FFPE) tissues and liquid-based preparation (LBP) thyroid fine needle aspiration (FNA) samples to predict more reliably the possibility of papillary carcinoma. We initially performed MethyLight analysis for 30 genes that are known to be hypermethylated in malignancies using 164 papillary carcinomas and 77 benign tissue samples. Five genes selected from the tissue analysis were subsequently analysed in 75 surgically proven benign and 66 surgically proven papillary carcinoma LBP FNA samples. Samples that showed two or more positive results among the five genes were classified as methylation positive. We also analysed the BRAF(V) (600E) mutation status of the FNA samples. We identified five genes that were significantly hypermethylated in malignant tissues: PTGS2, HOXA1, TMEFF2, p16 and PTEN. With respect to diagnostic potential, results obtained using the BRAF(V) (600E) mutation test combined with cytological examination were not significantly different from those obtained with cytological examination only. Combining methylation analyses with cytological examination or performing all three tests for diagnoses did not improve significantly the negative predictive values and sensitivity, but a significant decrease in positive predictive value and specificity was observed. Further studies are needed on larger samples to assess the potential value of methylation analysis of thyroid FNA."	"The long non-coding RNA HOTTIP enhances pancreatic cancer cell proliferation, survival and migration. HOTTIP is a long non-coding RNA (lncRNA) transcribed from the 5' tip of the HOXA locus and is associated with the polycomb repressor complex 2 (PRC2) and WD repeat containing protein 5 (WDR5)/mixed lineage leukemia 1 (MLL1) chromatin modifying complexes. HOTTIP is expressed in pancreatic cancer cell lines and knockdown of HOTTIP by RNA interference (siHOTTIP) in Panc1 pancreatic cancer cells decreased proliferation, induced apoptosis and decreased migration. In Panc1 cells transfected with siHOTTIP, there was a decrease in expression of 757 genes and increased expression of 514 genes, and a limited gene analysis indicated that HOTTIP regulation of genes is complex. For example, Aurora kinase A, an important regulator of cell growth, is coregulated by MLL and not WDR5 and, in contrast to previous studies in liver cancer cells, HOTTIP does not regulate HOXA13 but plays a role in regulation of several other HOX genes including HOXA10, HOXB2, HOXA11, HOXA9 and HOXA1. Although HOTTIP and the HOX-associated lncRNA HOTAIR have similar pro-oncogenic functions, they regulate strikingly different sets of genes in Panc1 cells and in pancreatic tumors. "	"Transcriptome analysis reveals the potential contribution of long noncoding RNAs to brown adipocyte differentiation. Brown adipose tissue (BAT) functions to dissipate energy in response to cold exposure or overfeeding. Counteracting obesity has been extensively considered as a promising target. Long noncoding RNAs (lncRNAs) are an important class of pervasive genes involved in a variety of biological functions. However, the potential biological functions of lncRNAs during mouse brown fat cell differentiation have not been fully understood. Here, we performed lncRNA and mRNA expression profile analysis using microarray technology and identified 1064 lncRNAs with differential expression (fold change| ≥4, p ≤ 0.01) on day 0 and day 8 during differentiation. Furthermore, candidate lncRNAs were characterized by comprehensive examination of their genomic context, gene ontology (GO) enrichment of their associated protein-coding genes and pathway analysis. We identified three lncRNAs (Gm15051, Tmem189 and Cebpd) associated with their flanking coding genes (Hoxa1, C/EBPβ and C/EBPδ), which participated in adipose commitment. Collectively, our findings indicated lncRNAs are involved in mouse BAT development and provide potential targets for obesity therapy. "	"YAP regulates the expression of Hoxa1 and Hoxc13 in mouse and human oral and skin epithelial tissues. Yes-associated protein (YAP) is a Hippo signaling transcriptional coactivator that plays pivotal roles in stem cell proliferation, organ size control, and tumor development. The downstream targets of YAP have been shown to be highly context dependent. In this study, we used the embryonic mouse tooth germ as a tool to search for the downstream targets of YAP in ectoderm-derived tissues. Yap deficiency in the dental epithelium resulted in a small tooth germ with reduced epithelial cell proliferation. We compared the gene expression profiles of embryonic day 14.5 (E14.5) Yap conditional knockout and YAP transgenic mouse tooth germs using transcriptome sequencing (RNA-Seq) and further confirmed the differentially expressed genes using real-time PCR and in situ hybridization. We found that YAP regulates the expression of Hoxa1 and Hoxc13 in oral and dental epithelial tissues as well as in the epidermis of skin during embryonic and adult stages. Sphere formation assay suggested that Hoxa1 and Hoxc13 are functionally involved in YAP-regulated epithelial progenitor cell proliferation, and chromatin immunoprecipitation (ChIP) assay implies that YAP may regulate Hoxa1 and Hoxc13 expression through TEAD transcription factors. These results provide mechanistic insights into abnormal YAP activities in mice and humans. "	"ACK1/TNK2 tyrosine kinase: molecular signaling and evolving role in cancers. Deregulated tyrosine kinase signaling alters cellular homeostasis to drive cancer progression. The emergence of a non-receptor tyrosine kinase (non-RTK), ACK1 (also known as activated Cdc42-associated kinase 1 or TNK2) as an oncogenic kinase, has uncovered novel mechanisms by which tyrosine kinase signaling promotes cancer progression. Although early studies focused on ACK1 as a cytosolic effector of activated transmembrane RTKs, wherein it shuttles between the cytosol and the nucleus to rapidly transduce extracellular signals from the RTKs to the intracellular effectors, recent data unfold a new aspect of its functionality as an epigenetic regulator. ACK1 interacts with the estrogen receptor (ER)/histone demethylase KDM3A (JHDM2a) complex, which modifies KDM3A by tyrosine phosphorylation to regulate the transcriptional outcome at HOXA1 locus to promote the growth of tamoxifen-resistant breast cancer. It is also well established that ACK1 regulates the activity of androgen receptor (AR) by tyrosine phosphorylation to fuel the growth of hormone-refractory prostate cancers. Further, recent explosion in genomic sequencing has revealed recurrent ACK1 gene amplification and somatic mutations in a variety of human malignancies, providing a molecular basis for its role in neoplastic transformation. In this review, we will discuss the various facets of ACK1 signaling, including its newly uncovered epigenetic regulator function, which enables cells to bypass the blockade to major survival pathways to promote resistance to standard cancer treatments. Not surprisingly, cancer cells appear to acquire an 'addiction' to ACK1-mediated survival, particularly under stress conditions, such as growth factor deprivation or genotoxic insults or hormone deprivation. With the accelerated development of potent and selective ACK1 inhibitors, targeted treatment for cancers harboring aberrant ACK1 activity may soon become a clinical reality. "	"Clinicopathological and immunohistochemical evaluation of oral and oropharyngeal squamous cell carcinoma in Chilean population. In oral and oropharyngeal squamous cell carcinoma (OCSCC and OPSCC) exist an association between clinical and histopathological parameters with cell proliferation, basal lamina, connective tissue degradation and surrounding stroma markers. We evaluated these associations in Chilean patients. A convenience sample of 37 cases of OCSCC (n=16) and OPSCC (n=21) was analyzed clinically (TNM, clinical stage) and histologically (WHO grade of differentiation, pattern of tumor invasion). We assessed the expression of p53, Ki67, HOXA1, HOXB7, type IV collagen (ColIV) and carcinoma-associated fibroblast (α-SMA-positive cells). Additionally we conducted a univariate/bivariate analysis to assess the relationship of these variables with survival rates. Males were mostly affected (56.2% OCSCC, 76.2% OPSCC). Patients were mainly diagnosed at III/IV clinical stages (68.8% OCSCC, 90.5% OPSCC) with a predominantly infiltrative pattern invasion (62.9% OCSCC, 57.1% OPSCC). Significant association between regional lymph nodes (N) and clinical stage with OCSCC-HOXB7 expression (Chi-Square test P &lt; 0.05) was observed. In OPSCC a statistically significant association exists between p53, Ki67 with gender (Chi-Square test P &lt; 0.05). In OCSCC and OPSCC was statistically significant association between ki67 with HOXA1, HOXB7, and between these last two antigens (Pearson's Correlation test P &lt; 0.05). Furthermore OPSCC-p53 showed significant correlation when it was compared with α-SMA (Kendall's Tau-c test P &lt; 0.05). Only OCSCC-pattern invasion and OPSCC-primary tumor (T) pattern resulted associated with survival at the end of the follow up period (Chi-Square Likelihood Ratio, P &lt; 0.05). Clinical, histological and immunohistochemical features are similar to seen in other countries. Cancer proliferation markers were associated strongly from each other. Our sample highlights prognostic value of T and pattern of invasion, but the conclusions may be limited and should be considered with caution (small sample). Many cases were diagnosed in the advanced stages of the disease, which suggests that the diagnosis of OCSCC and OPSCC is made late. "	"Sall4 is essential for mouse primordial germ cell specification by suppressing somatic cell program genes. The Spalt-like 4 (Sall4) zinc finger protein is a critical transcription factor for pluripotency in embryonic stem cells (ESCs). It is also involved in the formation of a variety of organs, in mice, and humans. We report the essential roles of Sall4 in mouse primordial germ cell (PGC) specification. PGC specification is accompanied by the activation of the stem cell program and repression of the somatic cell program in progenitor cells. Conditional inactivation of Sall4 during PGC specification led to a reduction in the number of PGCs in embryonic gonads. Sall4(del/del) PGCs failed to translocate from the mesoderm to the endoderm and underwent apoptosis. In Sall4(del/del) PGC progenitors, somatic cell program genes (Hoxa1 and Hoxb1) were derepressed, while activation of the stem cell program was not impaired. We demonstrated that in differentiated ESCs, Sall4 bound to these somatic cell program gene loci, which are reportedly occupied by Prdm1 in embryonic carcinoma cells. Given that Sall4 and Prdm1 are known to associate with the histone deacetylase repressor complex, our findings suggest that Sall4 suppresses the somatic cell program possibly by recruiting the repressor complex in conjunction with Prdm1; therefore, it is essential for PGC specification."	"Insulin-like growth factor 1 is a direct HOXA9 target important for hematopoietic transformation. HOX homeobox proteins are key oncogenic drivers in hematopoietic malignancies. Here we demonstrate that HOXA1, HOXA6 and predominantly HOXA9 are able to induce the production of insulin-like growth factor 1 (Igf1). In chromatin immunoprecipitations, HOXA9 bound directly to the putative promoter and a DNase-hypersensitive region in the first intron of the Igf1 gene. Transcription rates of the Igf1 gene paralleled HOXA9 activity. Primary cells transformed by HOXA9 expressed functional Igf1 receptors and activated the protein kinase Akt in response to Igf1 stimulation, suggesting the existence of an autocrine signaling loop. Genomic deletion of the Igf1 gene by Cre-mediated recombination increased sensitivity toward apoptosis after serum starvation. In addition, the leukemogenic potential of Igf1-negative, HOXA9-transformed cells was impaired, leading to a significant delay in disease development on transplantation into recipient animals."	"The ECEL1-related strabismus phenotype is consistent with congenital cranial dysinnervation disorder. Congenital cranial dysinnervation disorders (CCDDs) are phenotypes of congenital incomitant strabismus and/or ptosis related to orbital dysinnervation. CCDDs have been associated with dominant or recessive monogenic mutations in at least 7 different genes (CHN1, SALL4, HOXA1, KIF21A, PHOX2A, TUBB3, ROBO3) that cause phenotypes such as Duane retraction syndrome, congenital fibrosis of the extraocular muscles, and horizontal gaze palsy with progressive scoliosis. Recently, arthrogryposis with or without strabismus has been shown to be caused by recessive mutations in ECEL1, a gene likely involved in neuromuscular junction formation. The strabismus phenotype in ECEL1-related cases has not always been detailed but may be a form of CCDD. To better define the ECEL1-related ophthalmic phenotype, we detail ophthalmic findings in 4 affected siblings from a consanguineous family and review documented ophthalmic findings for other reported mutation-positive cases. Affected family members were prospectively examined and the relevant literature was reviewed. Ophthalmic findings were present in 3 of the 4 siblings with ECEL1-related distal arthrogryposis: bilateral ptosis with bilateral congenital fibrosis of the extraocular muscles, right ptosis with ipsilateral Y exotropia (exotropia increasing in upgaze), and right ptosis with ipsilateral Duane retraction syndrome. The fourth affected sibling, who had the mildest arthrogryposis, had no ophthalmic abnormalities. Of 26 other reported recessive ECEL1 mutation cases (14 families), all had arthrogryposis, 19 had documented ptosis, and 4 had documented complex strabismus. One of these cases had both documented ptosis and complex strabismus. Our clinical findings are consistent with recessive ECEL1 mutations causing variably penetrant orbital dysinnervation phenotypes (ptosis and/or complex strabismus with abnormal synkinesis) in the context of arthrogryposisis, that is, with the ECEL1-related ophthalmic phenotype being a form of CCDD."	"The OSR1 rs12329305 polymorphism contributes to the development of congenital malformations in cases of stillborn/neonatal death. Involvement of development-related gene polymorphisms in multifactorial/polygenic etiology of stillborn/neonatal deaths due to malformations has been insufficiently tested. Since these genes showed evolutional stability and their mutations are very rare, we can assume that their polymorphic variants may be a risk factor associated with the occurrence of developmental disorders of unknown etiology or can enhance the phenotypic variability of known genetic disorders. To determine the association of 3 polymorphisms involved in the regulation of the early embryonic development of different organs, we conducted an association study of their relation to the particular malformation. We selected 140 samples of archived paraffin tissue samples from deceased patients in which fetal/neonatal autopsy examination had shown congenital abnormalities as the most likely cause of death. The polymorphisms of OSR1 rs12329305, rs9936833 near FOXF1, and HOXA1 rs10951154 were genotyped using the TaqMan allelic discrimination assay. After Bonferroni correction for multiple testing, significant allelic association with stillborn/neonatal deaths was observed for rs12329305 (p=7×10-4). In addition, association analysis for the same polymorphism was shown in the subgroup with isolated anomalies (1.25×10^-5), particularly in the subgroup of cases with kidney and heart anomalies (p=4.18×10^-5, p=5.12×10^-8, respectively). The findings of the present study showed, for the first time, the role of the OSR1 rs12329305 polymorphism in the development of congenital malformations in cases of stillborn/neonatal death, particularly in those with congenital kidney and heart developmental defects."	"Genetic lineage tracing analysis of anterior Hox expressing cells. Cell lineage studies have been widely used in developmental biology to establish which cells, and how many cells, in the early embryo will give rise to a specific structure and its derivatives. Several methods have been developed to label progenitor cells in the early embryo. Here, we describe the genetic tracing approach that relies on the use of the recombinase to genetically and permanently label progenitor cells as well as their progeny through specific activation of a conditional reporter gene, the ROSA26 reporter mouse. Labeling of progenitor cells is spatially controlled by the use of a tissue-specific promoter driving Cre, the Hoxb1 (IRES-Cre/+) and the Hoxa1-enhIII-cre. ROSA26R mice and Hoxb1 (IRES-Cre/+) or Hoxa1-enhIII-cremice are crossed together to generate embryos at different stages of development. Embryos are collected and dissected at a specific stage of development and fixed in paraformaldehyde. To follow Hoxb1 (+) and Hoxa1 (+) progeny, X-gal staining is performed to detect β-galactosidase activity in embryos or developing organ such as the heart. Finally, X-gal-positive cells are observed on whole-mount embryos or dissected organ to determine the lineage contribution of Hoxa1 and Hoxb1 during development."	"ACK1 tyrosine kinase interacts with histone demethylase KDM3A to regulate the mammary tumor oncogene HOXA1. Hormone therapy with the selective estrogen-receptor modulator tamoxifen provides a temporary relief for patients with estrogen receptor α (ER)-positive breast cancers. However, a subset of patients exhibiting overexpression of the HER2 receptor tyrosine kinase displays intrinsic resistance to tamoxifen therapy. Therefore, elucidating the mechanisms promoting the estrogen (E2)-independent ER-regulated gene transcription in tamoxifen-resistant breast tumors is essential to identify new therapeutic avenues to overcome drug resistance and ameliorate poor prognosis. The non-receptor tyrosine kinase, ACK1 (also known as TNK2), has emerged as a major integrator of signaling from various receptor tyrosine kinases including HER2. We have uncovered that heregulin-mediated ACK1 activation promoted ER activity in the presence of tamoxifen, which was significantly down-regulated upon ACK1 knockdown or inhibition of ACK1 by small molecule inhibitors, AIM-100 or Dasatinib. We report that ACK1 phosphorylates the ER co-activator, KDM3A, a H3K9 demethylase, at an evolutionary conserved tyrosine 1114 site in a heregulin-dependent manner, even in the presence of tamoxifen. Consistent with this finding, ACK1 activation resulted in a significant decrease in the deposition of dimethyl H3K9 epigenetic marks. Conversely, inhibition of ACK1 by AIM-100 or Dasatinib restored dimethyl H3K9 methylation marks and caused transcriptional suppression of the ER-regulated gene HOXA1. Thus, by its ability to regulate the epigenetic activity of an ER co-activator KDM3A, ACK1 modulates HOXA1 expression in the absence of E2, conferring tamoxifen resistance. These data reveal a novel therapeutic option, suppression of ACK1 signaling by AIM-100 or Dasatinib, to mitigate HOXA1 up-regulation in breast cancer patients displaying tamoxifen resistance. "	"Aldehyde dehydrogenase 1A3 influences breast cancer progression via differential retinoic acid signaling. Aldehyde dehydrogenase (ALDH) 1A enzymes produce retinoic acid (RA), a transcription induction molecule. To investigate if ALDH1A1 or ALDH1A3-mediated RA signaling has an active role in breast cancer tumorigenesis, we performed gene expression and tumor xenograft studies. Analysis of breast patient tumors revealed that high levels of ALDH1A3 correlated with expression of RA-inducible genes with retinoic acid response elements (RAREs), poorer patient survival and triple-negative breast cancers. This suggests a potential link between ALDH1A3 expression and RA signaling especially in aggressive and/or triple-negative breast cancers. In MDA-MB-231, MDA-MB-468 and MDA-MB-435 cells, ALDH1A3 and RA increased expression of RA-inducible genes. Interestingly, ALDH1A3 had opposing effects in tumor xenografts, increasing tumor growth and metastasis of MDA-MB-231 and MDA-MB-435 cells, but decreasing tumor growth of MDA-MB-468 cells. Exogenous RA replaced ALDH1A3 in inducing the same opposing tumor growth and metastasis effects, suggesting that ALDH1A3 mediates these effects by promoting RA signaling. Genome expression analysis revealed that ALDH1A3 induced largely divergent gene expression in MDA-MB-231 and MDA-MB-468 cells which likely resulted in the opposing tumor growth effects. Treatment with DNA methylation inhibitor 5-aza-2'deoxycytidine restored uniform RA-inducibility of RARE-containing HOXA1 and MUC4 in MDA-MB-231 and MDA-MB-468 cells, suggesting that differences in epigenetic modifications contribute to differential ALDH1A3/RA-induced gene expression in breast cancer. In summary, ALDH1A3 induces differential RA signaling in breast cancer cells which affects the rate of breast cancer progression. "	"Identification of critical microRNA gene targets in cervical cancer using network properties. miRNAs are short non-coding RNAs which function as oncogenes or tumour suppressor gene and regulate gene expression by controlling targets that play role in cancer development and progression. Numerous recent studies have established an association of abnormal expression of miRNA with cervical cancer progression. Although the number of reported deregulated miRNA in cervical cancer is increasing, only a few associations between miRNA and their targets have been studied in cervical cancer. Therefore, we performed a systematic analysis of known dysregulated miRNAs involved in cervical cancer so as to identify critical miRNA targets that could pave way for therapeutic solutions. In this study, miRNAs reported to be dysregulated in cervical cancer were collected and their targets predicted using TargetScan, PicTar and miRanda. These targets were subsequently compared with previously curated gene dataset involved in cervical cancer to derive the putative target dataset. We then compared network properties (composed of degree, betweenness centrality, closeness centrality and clustering coefficient) of the putative, validated and human protein-protein interaction network. Based on the topological properties genes were ranked and observed that the gene targets BIRC5 (survivin), HOXA1 and RARB presenting with high Novoseek score of Genecards were enriched in cervical cancer. BIRC5 is an anti- apoptotic protein while HOXA1 and RARB are transcription factors which play critical role in altering the level of cell cycle and apoptosis associated proteins. Also, miRNA-mRNA network was constructed and it was found that miR-203 and miR-30b could target these genes. The analysis indicates that the genes BIRC5, HOXA1 and RARB are critical targets that play an important regulatory role in cervical cancer pathogenesis. "	"Targeted germ line disruptions reveal general and species-specific roles for paralog group 1 hox genes in zebrafish. The developing vertebrate hindbrain is transiently segmented into rhombomeres by a process requiring Hox activity. Hox genes control specification of rhombomere fates, as well as the stereotypic differentiation of rhombomere-specific neuronal populations. Accordingly, germ line disruption of the paralog group 1 (PG1) Hox genes Hoxa1 and Hoxb1 causes defects in hindbrain segmentation and neuron formation in mice. However, antisense-mediated interference with zebrafish hoxb1a and hoxb1b (analogous to murine Hoxb1 and Hoxa1, respectively) produces phenotypes that are qualitatively and quantitatively distinct from those observed in the mouse. This suggests that PG1 Hox genes may have species-specific functions, or that anti-sense mediated interference may not completely inactivate Hox function in zebrafish. Using zinc finger and TALEN technologies, we disrupted hoxb1a and hoxb1b in the zebrafish germ line to establish mutant lines for each gene. We find that zebrafish hoxb1a germ line mutants have a more severe phenotype than reported for Hoxb1a antisense treatment. This phenotype is similar to that observed in Hoxb1 knock out mice, suggesting that Hoxb1/hoxb1a have the same function in both species. Zebrafish hoxb1b germ line mutants also have a more severe phenotype than reported for hoxb1b antisense treatment (e.g. in the effect on Mauthner neuron differentiation), but this phenotype differs from that observed in Hoxa1 knock out mice (e.g. in the specification of rhombomere 5 (r5) and r6), suggesting that Hoxa1/hoxb1b have species-specific activities. We also demonstrate that Hoxb1b regulates nucleosome organization at the hoxb1a promoter and that retinoic acid acts independently of hoxb1b to activate hoxb1a expression. We generated several novel germ line mutants for zebrafish hoxb1a and hoxb1b. Our analyses indicate that Hoxb1 and hoxb1a have comparable functions in zebrafish and mouse, suggesting a conserved function for these genes. In contrast, while Hoxa1 and hoxb1b share functions in the formation of r3 and r4, they differ with regards to r5 and r6, where Hoxa1 appears to control formation of r5, but not r6, in the mouse, whereas hoxb1b regulates formation of r6, but not r5, in zebrafish. Lastly, our data reveal independent regulation of hoxb1a expression by retinoic acid and Hoxb1b in zebrafish."	"HOXA1 Mutations are Not Commonly Associated with Non-Syndromic Deafness. Homozygous homeobox A1 (HOXA1) mutations cause a spectrum of abnormalities in humans including bilateral profound deafness. This study evaluates the possible role of HOXA1 mutations in familial, non-syndromic sensorineural deafness. Forty-eight unrelated Middle Eastern families with either consanguinity or familial deafness were identified in a large deafness clinic, and the proband from each family was evaluated by chart review, audiogram, neuroimaging, and HOXA1 sequencing. All 48 probands had normal neuro-ophthalmologic and general medical examinations except for refractive errors. All had congenital non-syndromic sensorineural hearing loss that was symmetric bilaterally and profound (&gt;90 dBHL) in 33 individuals and varied from 40 to 90 dBHL in the remainder. Thirty-nine of these individuals had neuroimaging studies, all documenting normal internal carotid arteries and normal 6th, 7th, and 8th cranial nerves bilaterally. Of these, 27 had normal internal ear structures with the remaining 12 having mild to modest developmental abnormalities of the cochlea, semicircular canals, and/or vestibular aqueduct. No patient had homozygous HOXA1 mutations. None of these patients with non-syndromic deafness had HOXA1 mutations. None had major inner ear anomalies, obvious cerebrovascular defects, or recognized congenital heart disease. HOXA1 is likely not a common cause of non-syndromic deafness in this Middle Eastern population."	"Microdeletions involving chromosomes 12 and 22 associated with syndromic Duane retraction syndrome. Duane retraction syndrome (DRS) is the most common of the congenital cranial dysinnervation disorders (CCDDs). CCDDs can be monogenic or chromosomal in origin. Identification of the genetic cause(s) in patients and families with DRS facilitates definitive diagnosis and provides insights into these developmental errors. This study described a young girl with DRS on the left and several additional developmental abnormalities. Clinical examination including neuroimaging, sequencing of candidate genes associated with DRS, and array comparative genomic hybridization (array CGH) were performed. The proband had unilateral DRS type 3 on the left with somewhat low-set ears, mild motor delay with normal intelligence, and an asymmetric neck without a palpable right sternocleidomastoid muscle. Spine X-rays revealed a Klippel-Feil syndrome (KFS) and an MRI showed a webbed neck. She also had spina bifida at C8-T1 and a submucosal cleft palate. The parents of the proband were related with no other family member affected similarly. Sequencing of SALL4, CHN1, HOXA1, and TUBB3 did not show any mutation. Array CGH revealed de novo deletions of 21 Kb on chromosome 12q24.31 and 11 Kb on chromosome 22q13.31, each encompassing only one gene, ring finger protein 34, E3 ubiquitin protein ligase (RNF34) and peroxisome proliferator-activated receptor alpha (PPARA) respectively. This patient presents an unusual phenotype associated with a unique combination of two chromosomal microdeletions."	"Retinoic acid and histone deacetylases regulate epigenetic changes in embryonic stem cells. All-trans-retinoic acid (RA) is a vitamin A metabolite that plays major roles in regulating stem cell differentiation and development. RA is the ligand of the retinoic acid receptor (RAR) family of transcription factors, which interact with retinoic acid response elements (RAREs) within target gene proximal promoters and enhancers. Although RA-mediated gene activation is well understood, less is known about the mechanisms for repression at RA-regulated genes. Using chromatin immunoprecipitation experiments, we show that in embryonic stem cells in the absence of RA, histone deacetylases (HDACs) differentially bind to various RAREs in proximal promoters or enhancer regions of RA-regulated genes; HDAC1, HDAC2, and HDAC3 bind at RAREs in the Hoxa1 and Cyp26a1 gene regulatory regions, whereas only HDAC1 binds at the RARβ2 RARE. shRNA knockdown of HDAC1, HDAC2, or HDAC3 differentially increases the deposition of the histone 3 lysine 27 acetylation (H3K27ac) epigenetic mark associated with increases in these three transcripts. Importantly, RA treatment differentially mediates the removal of HDACs from the Hoxa1, Cyp26a1, and RARβ2 genes and promotes the deposition of the H3K27ac mark at these genes. Overall, we show that HDACs differentially bind to RA-regulated genes to control key epigenetic marks involved in stem cell differentiation. "	"Transcriptional suppression of miR-181c by hepatitis C virus enhances homeobox A1 expression. Hepatitis C virus (HCV)-induced chronic liver disease is one of the leading causes of hepatocellular carcinoma (HCC). The molecular events leading to HCC following chronic HCV infection remain poorly defined. MicroRNAs (miRNAs) have been implicated in the control of many biological processes, and their deregulation is associated with different viral infections. In this study, we observed that HCV infection of hepatocytes transcriptionally downregulates miR-181c expression by modulating CCAAT/enhancer binding protein β (C/EBP-β). Reduced expression of the pri-miR-181c transcript was noted following HCV infection. In silico prediction suggests that homeobox A1 (HOXA1) is a direct target of miR-181c. HOXA1 is a member of the homeodomain-containing transcription factor family and possesses pivotal roles in normal growth, development, and differentiation of mammalian tissues. Our results demonstrated that HOXA1 expression is enhanced in HCV-infected hepatocytes. Exogenous expression of the miR-181c mimic inhibits HOXA1 and its downstream molecules STAT3 and STAT5, which are involved in cell growth regulation. Interestingly, overexpression of miR-181c inhibited HCV replication by direct binding with E1 and NS5A sequences. Furthermore, accumulation of HCV genotype 2a RNA with miR-181c was observed in an RNA-induced silencing complex in Huh7.5 cells. Our results provide new mechanistic insights into the role of miR-181c in HCV-hepatocyte interactions, and miR-181c may act as a target for therapeutic intervention. Importance: Chronic HCV infection is one of the major causes of end-stage liver disease, including hepatocellular carcinoma. An understanding of the molecular mechanisms of HCV-mediated hepatocyte growth promotion is necessary for therapeutic intervention against HCC. In this study, we have provided evidence of HCV-mediated transcriptional downregulation of miR-181c. HCV-infected liver biopsy specimens also displayed lower expression levels of miR-181c. We have further demonstrated that inhibition of miR-181c upregulates homeobox A1 (HOXA1), which is important for hepatocyte growth promotion. Exogenous expression of miR-181c inhibited HCV replication by directly binding with HCV E1 and NS5A sequences. Taken together, our results provided new mechanistic insights for an understanding of the role of miR-181c in HCV-hepatocyte interactions and revealed miR-181c as a potential target for therapeutic intervention."	"Diagnostic distinctions and genetic analysis of patients diagnosed with moebius syndrome. To improve diagnostic assessment in Moebius syndrome by (1) creating more selective diagnostic subgroups and (2) conducting genetic evaluation in a large patient cohort. Prospective, observational study. Attendees of 3 consecutive Moebius syndrome conferences held in the United States, with a prior diagnosis of Moebius syndrome, were invited to participate. Participants underwent standardized ophthalmologic examination for Moebius syndrome minimum diagnostic criteria (MDC) (congenital, nonprogressive facial palsy, and abduction deficit) and genetic testing for HOXA1, HOXB1, and TUBB3 mutations. The number of patients meeting MDC and the number of patients with confirmed genetic mutation. A total of 112 participants from 107 families enrolled. Nineteen percent of participants (21/112) did not meet accepted MDC for Moebius syndrome because they had abduction deficits without facial palsy or facial palsy with full ocular motility. All 5 families with 2 affected individuals had at least 1 family member in this category, including 2 siblings with comitant strabismus who harbored a HOXB1 mutation. Four unrelated participants, also not meeting MDC, had large-angle exotropia, vertical gaze deficiency, and ptosis consistent with congenital fibrosis of the extraocular muscles type 3 (CFEOM3); 1 patient harbored a novel TUBB3 mutation, and 3 patients harbored previously reported de novo TUBB3 mutations. Three percent of participants (3/112) met MDC but also had restricted vertical gaze. The remaining 88 participants (79%) met MDC and had full vertical gaze. This group had relatively homogeneous findings, and none had a family history of Moebius syndrome. Two previously undescribed phenomena were observed in this category: (1) volitional Bell's phenomenon and (2) intorsion with fixation. Although the genetic contributors to classic Moebius syndrome remain elusive, accuracy in clinical evaluation will properly subdivide patients to facilitate genetic testing as new candidate genes are identified. Failure to test ocular motility may lead to misdiagnosis of Moebius syndrome, especially in patients who have facial palsy with full ductions. Patients with exotropia, vertical gaze limitation, and ptosis do not have classic Moebius syndrome and may have TUBB3 mutations associated with CFEOM3. To optimize genetic analysis, we propose adding &quot;full vertical motility&quot; to the MDC for Moebius syndrome."	"miR-100 induces epithelial-mesenchymal transition but suppresses tumorigenesis, migration and invasion. Whether epithelial-mesenchymal transition (EMT) is always linked to increased tumorigenicity is controversial. Through microRNA (miRNA) expression profiling of mammary epithelial cells overexpressing Twist, Snail or ZEB1, we identified miR-100 as a novel EMT inducer. Surprisingly, miR-100 inhibits the tumorigenicity, motility and invasiveness of mammary tumor cells, and is commonly downregulated in human breast cancer due to hypermethylation of its host gene MIR100HG. The EMT-inducing and tumor-suppressing effects of miR-100 are mediated by distinct targets. While miR-100 downregulates E-cadherin by targeting SMARCA5, a regulator of CDH1 promoter methylation, this miRNA suppresses tumorigenesis, cell movement and invasion in vitro and in vivo through direct targeting of HOXA1, a gene that is both oncogenic and pro-invasive, leading to repression of multiple HOXA1 downstream targets involved in oncogenesis and invasiveness. These findings provide a proof-of-principle that EMT and tumorigenicity are not always associated and that certain EMT inducers can inhibit tumorigenesis, migration and invasion. "	"Downregulation of HOXA1 gene affects small cell lung cancer cell survival and chemoresistance under the regulation of miR-100. Chemoresistance is often developed in small cell lung cancer (SCLC) patients and leads to poor prognosis. Hox genes, a highly conserved family, play a crucial role in apoptosis, receptor signalling and differentiation. MicroRNAs (miRNAs) have also been shown to play a crucial role in these biological processes by regulating the target genes. Several studies reported that both Hox genes and miRNAs are involved in chemoresistance. The aim of our study is to characterise the clinical significance and functional roles of HOXA1 in SCLC. Expression of HOXA1 was examined in 63 cases of SCLC tissues and 29 cases of blood by immunohistochemistry and quantitative reverse transcription-polymerase chain reaction (qRT-PCR) methods. Multivariate analysis confirmed the prognostic significance of HOXA1 in SCLC patients. Restoration of HOXA1 expression was carried out in SCLC multidrug resistant cell line H69AR and its parental cell line H69 to assess its influence on chemoresistance. Luciferase reporter assay was used to assess HOXA1 as a target of miR-100. The results showed that HOXA1 was expressed in 46% (29/63) of SCLC. Low HOXA1 expression was associated with the poor prognosis of SCLC (P&lt;0.05 by the Fisher's Exact Test) and the shorter survival rate (P&lt;0.001 by the Kaplan-Meier method). HOXA1 expression on both mRNA and protein levels significantly correlated with chemotherapy response. Enforced expression of HOXA1 in resistant H69AR cells led to increased chemosensitivity through increasing cell apoptosis and cell-cycle arrest. Inhibition of HOXA1 expression using HOXA1 siRNA in H69 cells resulted in cell resistance to therapeutic drugs through reducing drug-induced cell apoptosis accompanied with cell cycle arrest. Expression of endogenous miR-100 was significantly elevated in resistant H69AR cells and negatively related with HOXA1 expression. The expression of HOXA1 in SCLC tissues correlated inversely with the expression levels of miR-100. Reporter assays confirmed that miR-100 targeted predicted sites in 3'-untranslated region (3'-UTR) of HOXA1 gene. Our data suggested that HOXA1-mediated SCLC chemoresistance is under the regulation of miR-100. HOXA1 may be a prognostic predictor and potential therapeutic target in human SCLC. "	"MicroRNA-10a is down-regulated by DNA methylation and functions as a tumor suppressor in gastric cancer cells. MicroRNAs act as posttranscriptional regulators of gene expression in many biological processes. Their deregulations occur commonly in gastric cancer (GC). Although DNA methylation constitutes an important mechanism for microRNA deregulation in cancer, this field largely remains unexplored. Total RNA was extracted from the tissues of 100 patients with GC and four gastric cancer cell lines. The expression levels of miR-10a were determined by real-time PCR with specific TaqMan probes. Moreover, a functional analysis of miR-10a in regulating cell proliferation, migration and invasion was performed. Subsequently, quantitative methylation-specific PCR (qMSP) was used to detect the DNA methylation status in the CpG islands upstream of miR-10a. In this study, we found that the expression of miR-10a in GC cells was lower than that in normal cells, which was due to the hypermethylation of the CpG islands upstream of miR-10a. We also validated the slightly lower expression of miR-10a in GC tissues than their adjacent non-neoplastic tissues in 100 GC patients and confirmed the hypermethylation of CpG islands upstream of miR-10a in some patients. Furthermore, re-introduction of miR-10a into GC cells was able to inhibit cell proliferation, migration and invasion. Bioinformatic and immunoblot analysis indicated that the tumor suppressor roles of miR-10a in GC cells were possibly through targeting HOXA1. Our data indicate that miR-10a acts as a tumor suppressor in GC cells and is partially silenced by DNA hypermethylation in GC, suggesting that miR-10a may serve as a potential diagnostic or therapeutic target of GC."	"CCDD Phenotype Associated with a Small Chromosome 2 Deletion. Some individuals are born with congenital limitation of ocular motility, often associated with ptosis and retraction of the globe. Many of these disorders are now known as the congenital cranial dysinnervation disorders (CCDDs). While several genes have been associated with CCDD phenotypes, there are still patients for whom the genetic basis has not been identified. Clinical evaluation and neuroimaging, sequencing of candidate genes, and array comparative genomic hybridization (array CGH). The patient was a four-year-old girl with mild dysmorphism; bilateral mild ptosis; substantial limitation of abduction OS with milder limitations of abduction OD, adduction OS, and vertical gaze OS; and retraction OS &gt; OD on attempted adduction. No mutations were detected in the HOXA1, KIF21A, SALL4, TUBB3, and CHN1 genes. Array CGH revealed a 8 Kb de novo deletion on chromosome 2 (2q24.3) that encompassed a portion of only one gene, the Xin Actin-binding Repeat containing 2 (Gene Symbol XIRP2; NM_001079810). This gene encodes a protein that is involved in muscle development and protecting actin filaments from depolymerization. It interacts functionally with 10 other proteins playing a similar role in muscle development. This patient's chromosomal abnormality affected only one gene that currently seems involved only in muscle development. All other genes currently associated with the CCDDs affect neurologic development. Genetic information from this patient implies that genes involved in development and maintenance of extraocular muscles can cause congenital ocular motility disorders as well."	"Hoxb1b controls oriented cell division, cell shape and microtubule dynamics in neural tube morphogenesis. Hox genes are classically ascribed to function in patterning the anterior-posterior axis of bilaterian animals; however, their role in directing molecular mechanisms underlying morphogenesis at the cellular level remains largely unstudied. We unveil a non-classical role for the zebrafish hoxb1b gene, which shares ancestral functions with mammalian Hoxa1, in controlling progenitor cell shape and oriented cell division during zebrafish anterior hindbrain neural tube morphogenesis. This is likely distinct from its role in cell fate acquisition and segment boundary formation. We show that, without affecting major components of apico-basal or planar cell polarity, Hoxb1b regulates mitotic spindle rotation during the oriented neural keel symmetric mitoses that are required for normal neural tube lumen formation in the zebrafish. This function correlates with a non-cell-autonomous requirement for Hoxb1b in regulating microtubule plus-end dynamics in progenitor cells in interphase. We propose that Hox genes can influence global tissue morphogenesis by control of microtubule dynamics in individual cells in vivo. "	"Silencing HoxA1 by intraductal injection of siRNA lipidoid nanoparticles prevents mammary tumor progression in mice. With advances in screening, the incidence of detection of premalignant breast lesions has increased in recent decades; however, treatment options remain limited to surveillance or surgical removal by lumpectomy or mastectomy. We hypothesized that disease progression could be blocked by RNA interference (RNAi) therapy and set out to develop a targeted therapeutic delivery strategy. Using computational gene network modeling, we identified HoxA1 as a putative driver of early mammary cancer progression in transgenic C3(1)-SV40TAg mice. Silencing this gene in cultured mouse or human mammary tumor spheroids resulted in increased acinar lumen formation, reduced tumor cell proliferation, and restoration of normal epithelial polarization. When the HoxA1 gene was silenced in vivo via intraductal delivery of nanoparticle-formulated small interfering RNA (siRNA) through the nipple of transgenic mice with early-stage disease, mammary epithelial cell proliferation rates were suppressed, loss of estrogen and progesterone receptor expression was prevented, and tumor incidence was reduced by 75%. This approach that leverages new advances in systems biology and nanotechnology offers a novel noninvasive strategy to block breast cancer progression through targeted silencing of critical genes directly within the mammary epithelium. "	"Combining the strength of genomics, nanoparticle technology, and direct intraductal delivery for breast cancer treatment. A large number of genes are altered in cancer cells. Often, reversal or inhibition of just one of these alterations leads to death of the cancer cells. Technological advances in multiple areas are necessary to potentiate clinical translation of these findings. In a recent article, Brock and colleagues reported that overexpressed HOXA1 is a critical event in tumor progression in a mouse mammary tumor model. They developed HOXA1-small interfering RNA nanoparticles and achieved effective therapeutic doses by delivering them intraductally through the nipple to the site of the tumor and at the same time circumvented the systemic immune response. This study strengthens the concept of targeting overexpressed genes by using small interfering RNA and bypassing systemic immunity through local intraductal delivery. "	"MicroRNA-99 family members suppress Homeobox A1 expression in epithelial cells. The miR-99 family is one of the evolutionarily most ancient microRNA families, and it plays a critical role in developmental timing and the maintenance of tissue identity. Recent studies, including reports from our group, suggested that the miR-99 family regulates various physiological processes in adult tissues, such as dermal wound healing, and a number of disease processes, including cancer. By combining 5 independent genome-wide expression profiling experiments, we identified a panel of 266 unique transcripts that were down-regulated in epithelial cells transfected with miR-99 family members. A comprehensive bioinformatics analysis using 12 different sequence-based microRNA target prediction algorithms revealed that 81 out of these 266 down-regulated transcripts are potential direct targets for the miR-99 family. Confirmation experiments and functional analyses were performed to further assess 6 selected miR-99 target genes, including mammalian Target of rapamycin (mTOR), Homeobox A1 (HOXA1), CTD small phosphatase-like (CTDSPL), N-myristoyltransferase 1 (NMT1), Transmembrane protein 30A (TMEM30A), and SWI/SNF-related matrix-associated actin-dependent regulator of chromatin subfamily A member 5 (SMARCA5). HOXA1 is a known proto-oncogene, and it also plays an important role in embryonic development. The direct targeting of the miR-99 family to two candidate binding sequences located in the HOXA1 mRNA was confirmed using a luciferase reporter gene assay and a ribonucleoprotein-immunoprecipitation (RIP-IP) assay. Ectopic transfection of miR-99 family reduced the expression of HOXA1, which, in consequence, down-regulated the expression of its downstream gene (i.e., Bcl-2) and led to reduced proliferation and cell migration, as well as enhanced apoptosis. In summary, we identified a number of high-confidence miR-99 family target genes, including proto-oncogene HOXA1, which may play an important role in regulating epithelial cell proliferation and migration during physiological disease processes, such as dermal wound healing and tumorigenesis. "	"The genetic basis of incomitant strabismus: consolidation of the current knowledge of the genetic foundations of disease. In recent years, our understanding of the genetic foundations of incomitant strabismus has grown significantly. Much new understanding has been gleaned since the concept of congenital cranial dysinnervation disorders (CCDDs) was introduced in 2002, and the genetic basis of CCDDs continues to be elucidated. In this review, we aim to provide an update of the genetic and clinical presentation of these disorders. Disorders reviewed include Duane syndrome (DS), HOXA1 and HOXB1 syndromes, Moebius syndrome, congenital fibrosis of the extraocular muscles (CFEOM), and horizontal gaze palsy with progressive scoliosis (HGPPS)."	"[MicroRNA-10a accelerates endodermal lineage differentiation of mesenchymal stem cells from human placenta]. To improve the potential of endodermal differentiation of human placenta-derived mesenchymal stem cells (PMSCs) by microRNA-10a (miR-10a)-mediated post-transcriptional regulation of its mRNA targets. Lentiviral vectors were used to stably and specifically over-express miR-10a and inhibited the miR-10a function by its antagomir. In addition, the relationship between miR-10a and Hoxa1 expression was analyzed. Real-time quantitative PCR (qRT-PCR) and immunofluorescent cytochemical staining were utilized to test the mRNA and protein expression variation and assess the ability of PMSCs to differentiate into endodermal cells. Results Over-expression of miR-10a led to the suppression of endogenous Hoxa1 expression, and inhibition of miR-10a relieved the repression of Hoxa1. Over-expression of miR-10a in PMSCs resulted in the up-regulation of endoderm-specific genes (FoxA2, Sox-17, Pdx-1 and Cdx2) and the increased proportions of FOXA2, SOX-17 and PDX-1 positive events as compared with the control treated cells. miR-10a was up-regulated during endodermal differentiation of PMSCs and involved in its differentiation partially via the suppression of the Hoxa1 gene. Furthermore, the miR-10a accelerates endodermal differentiation, likely mediated by the up-reguation of endoderm-specific down-stream genes."	"Transcription profiles of endothelial cells in the rat ductus arteriosus during a perinatal period. Endothelial cells (ECs) lining the blood vessels serve a variety of functions and play a central role in the homeostasis of the circulatory system. Since the ductus arteriosus (DA) has different arterial characteristics from its connecting vessels, we hypothesized that ECs of the DA exhibited a unique gene profile involved in the regulation of DA-specific morphology and function. Using a fluorescence-activated cell sorter, we isolated ECs from pooled tissues from the DA or the descending aorta of Wistar rat fetuses at full-term of gestation (F group) or neonates 30 minutes after birth (N group). Using anti-CD31 and anti-CD45 antibodies as cell surface markers for ECs and hematopoietic derived cells, respectively, cDNAs from the CD31-positive and CD45-negative cells were hybridized to the Affymetrix GeneChip® Rat Gene 1.0 ST Array. Among 26,469 gene-level probe sets, 82 genes in the F group and 81 genes in the N group were expressed at higher levels in DA ECs than in aortic ECs (p&lt;0.05, fold change&gt;2.0). In addition to well-known endothelium-enriched genes such as Tgfb2 and Vegfa, novel DA endothelium-dominant genes including Slc38a1, Capn6, and Lrat were discovered. Enrichment analysis using GeneGo MetaCore software showed that DA endothelium-related biological processes were involved in morphogenesis and development. We identified many overlapping genes in each process including neural crest-related genes (Hoxa1, Hoxa4, and Hand2, etc) and the second heart field-related genes (Tbx1, Isl1, and Fgf10, etc). Moreover, we found that regulation of epithelial-to-mesenchymal transition, cell adhesion, and retinol metabolism are the active pathways involved in the network via potential interactions with many of the identified genes to form DA-specific endothelia. In conclusion, the present study uncovered several significant differences of the transcriptional profile between the DA and aortic ECs. Newly identified DA endothelium-dominant genes may play an important role in DA-specific functional and morphologic characteristics. "	"Chromatin changes in dicer-deficient mouse embryonic stem cells in response to retinoic acid induced differentiation. Loss of Dicer, an enzyme critical for microRNA biogenesis, results in lethality due to a block in mouse embryonic stem cell (mES) differentiation. Using ChIP-Seq we found increased H3K9me2 at over 900 CpG islands in the Dicer(-/-)ES epigenome. Gene ontology analysis revealed that promoters of chromatin regulators to be among the most impacted by increased CpG island H3K9me2 in ES (Dicer(-/-)). We therefore, extended the study to include H3K4me3 and H3K27me3 marks for selected genes. We found that the ES (Dicer(-/-)) mutant epigenome was characterized by a shift in the overall balance between transcriptionally favorable (H3K4me3) and unfavorable (H3K27me3) marks at key genes regulating ES cell differentiation. Pluripotency genes Oct4, Sox2 and Nanog were not impacted in relation to patterns of H3K27me3 and H3K4me3 and showed no changes in the rates of transcript down-regulation in response to RA. The most striking changes were observed in regards to genes regulating differentiation and the transition from self-renewal to differentiation. An increase in H3K4me3 at the promoter of Lin28b was associated with the down-regulation of this gene at a lower rate in Dicer(-/-)ES as compared to wild type ES. An increase in H3K27me3 in the promoters of differentiation genes Hoxa1 and Cdx2 in Dicer(-/-)ES cells was coincident with an inability to up-regulate these genes at the same rate as ES upon retinoic acid (RA)-induced differentiation. We found that siRNAs Ezh2 and post-transcriptional silencing of Ezh2 by let-7 g rescued this effect suggesting that Ezh2 up-regulation is in part responsible for increased H3K27me3 and decreased rates of up-regulation of differentiation genes in Dicer(-/-)ES."	"Characterization of HOX gene expression in canine mammary tumour cell lines from spontaneous tumours. Spatial/temporal controls of development are regulated by the homeotic (HOX) gene complex and require integration with oncogenes and tumour suppressors regulating cell cycle exit. Spontaneously derived neoplastic canine mammary carcinoma cell models were investigated to determine if HOX expression profiles were associated with neoplasia as HOX genes promote neoplastic potential in human cancers. Comparative assessment of human and canine breast cancer expression profiles revealed remarkable similarity for all four paralogous HOX gene clusters and several unlinked HOX genes. Five canine HOX genes were overexpressed with expression profiles consistent with oncogene-like character (HOXA1, HOXA13, HOXD4, HOXD9 and SIX1) and three HOX genes with underexpressed profiles (HOXA11, HOXC8 and HOXC9) were also identified as was an apparent nonsense mutation in HOXC6. This data, as well as a comparative analysis of similar data from human breast cancers suggested expression of selected HOX genes in canine mammary carcinoma could be contributing to the neoplastic phenotype. "	"Nonsyndromic brachydactyly type D and type E mapped to 7p15 in healthy children and adults from the Jirel ethnic group in eastern Nepal. There is phenotypic overlap between Brachydactyly Type D (BDD) and Brachydactyly Type E (BDE) that suggests a possible common underlying etiology. We seek to understand the genetic underpinnings of, and relationship between, these skeletal anomalies. The Jirel ethnic group of eastern Nepal participates in various genetic epidemiologic studies, including those in which hand-wrist radiographs have been taken to examine skeletal development. Nearly 2,130 individuals (969 males; 1,161 females) were phenotyped for BDD/BDE. Of these, 1,722 individuals (773 males; 949 females) were genotyped for 371 STR markers spanning the autosomal genome. Variance components-based linkage analysis was used to conduct a genome-wide linkage scan for QTL influencing the BDD/BDE phenotype. BDD was present in 3.55%, and BDE was present in 0.39%, of the study sample. Because of the phenotypic overlap between two traits, affecteds of either type were considered as affected by a single combined phenotype (BDD/BDE) having a prevalence of 3.94%. The additive genetic heritability of BDD/BDE was highly significant (h(2) ± SE = 0.89 ± 0.13; P = 1.7 × 10(-11) ). Significant linkage of BDD/BDE was found to markers on chromosome 7p21-7p14 (peak LOD score = 3.74 at 7p15 between markers D7S493 and D7S516). Possible positional candidate genes in the one-lod support interval of this QTL include TWIST and the HOXA1-A13 cluster. This is the first study to report significant linkage results for BDD/BDE using a large extended pedigree, and the first to suggest that mutations in TWIST and/or the HOXA1-A13 cluster may contribute to these specific skeletal anomalies."	"Nicotinic Receptor Mutation in a Mildly Dysmorphic Girl with Duane Retraction Syndrome. To evaluate possible monogenic and chromosomal anomalies in a patient with unilateral Duane retraction syndrome and modest dysmorphism. Clinical evaluation, sequencing of candidate genes, and array comparative genomic hybridization (array CGH). The proband had unilateral Duane retraction syndrome (DRS) with low-set ears bilaterally, a high arched palate, and clinodactyly. Motor development and cognitive function were normal. Parents were first cousins, but no other family member was similarly affected. No mutations were detected in the HOXA1. KIF21A. SALL4, TUBB3, and CHN1 genes. Array CGH revealed a 16 Kb de novo deletion at chromosome 8p11.2 that encompassed a portion of only one gene, the Cholinergic Receptor, Nicotinic, Beta-3 (CHRNB3, Neuronal). This gene encodes a protein that is involved in the nicotinic acetylcholine receptor on neurons. It interacts functionally with other genes that code components of the acetylcholine receptor. This patient's chromosomal abnormality affected only one gene that is highly expressed in the brainstem and brain, involved in neurotransmission, and could be related to her Duane retraction syndrome."	"Partial duplication of chromosome 19 associated with syndromic duane retraction syndrome. To evaluate possible monogenic and chromosomal anomalies in a patient with unilateral Duane retraction syndrome, modest dysmorphism, cerebral white matter abnormalities, and normal cognitive function. Performing high-resolution array comparative genomic hybridization (array CGH) and sequencing of HOXA1, KIF21A, SALL4, and CHN1 genes. The proband had unilateral Duane retraction syndrome (DRS) type III on the right with low-set ears, prominent forehead, clinodactyly, and a history of frequent infections during early childhood. Motor development and cognitive function were normal. Parents were not related, and no other family member was similarly affected. MRI revealed multiple small areas of high signal on T2 weighted images in cerebral white matter oriented along white matter tracts. Sequencing of HOXA1, KIF21A, SALL4, and CHN1 did not reveal any mutation(s). Array CGH showed a 95 Kb de novo duplication on chromosome 19q13.4 encompassing four killer cell immunoglobulin-like receptor (KIR) genes. Conclusions. KIR genes have not previously been linked to a developmental syndrome, although they are known to be expressed in the human brain and brainstem and to be associated with certain infections and autoimmune diseases, including some affecting the nervous system. DRS and brain neuroimaging abnormalities may imply a central and peripheral oligodendrocyte abnormality related in some fashion to an immunomodulatory disturbance."	"IMAC fractionation in combination with LC-MS reveals H2B and NIF-1 peptides as potential bladder cancer biomarkers. Improvement in bladder cancer (BC) management requires more effective diagnosis and prognosis of disease recurrence and progression. Urinary biomarkers attract special interest because of the noninvasive means of urine collection. Proteomic analysis of urine entails the adoption of a fractionation methodology to reduce sample complexity. In this study, we applied immobilized metal affinity chromatography in combination with high-resolution LC-MS/MS for the discovery of native urinary peptides potentially associated with BC aggressiveness. This approach was employed toward urine samples from patients with invasive BC, noninvasive BC, and benign urogenital diseases. A total of 1845 peptides were identified, corresponding to a total of 638 precursor proteins. Specific enrichment for proteins involved in nucleosome assembly and for zinc-finger transcription factors was observed. The differential expression of two candidate biomarkers, histone H2B and NIF-1 (zinc finger 335) in BC, was verified in independent sets of urine samples by ELISA and by immunohistochemical analysis of BC tissue. The results collectively support changes in the expression of both of these proteins with tumor progression, suggesting their potential role as markers for discriminating BC stages. In addition, the data indicate a possible involvement of NIF-1 in BC progression, likely as a suppressor and through interactions with Sox9 and HoxA1. "	"linc-HOXA1 is a noncoding RNA that represses Hoxa1 transcription in cis. Recently, researchers have uncovered the presence of many long noncoding RNAs (lncRNAs) in embryonic stem cells and believe they are important regulators of the differentiation process. However, there are only a few examples explicitly linking lncRNA activity to transcriptional regulation. Here, we used transcript counting and spatial localization to characterize a lncRNA (dubbed linc-HOXA1) located ∼50 kb from the Hoxa gene cluster in mouse embryonic stem cells. Single-cell transcript counting revealed that linc-HOXA1 and Hoxa1 RNA are highly variable at the single-cell level and that whenever linc-HOXA1 RNA abundance was high, Hoxa1 mRNA abundance was low and vice versa. Knockdown analysis revealed that depletion of linc-HOXA1 RNA at its site of transcription increased transcription of the Hoxa1 gene cis to the chromosome and that exposure of cells to retinoic acid can disrupt this interaction. We further showed that linc-HOXA1 RNA represses Hoxa1 by recruiting the protein PURB as a transcriptional cofactor. Our results highlight the power of transcript visualization to characterize lncRNA function and also suggest that PURB can facilitate lncRNA-mediated transcriptional regulation."	"A screen for disruptors of the retinol (vitamin A) signaling pathway. The pathway through which retinol (vitamin A) is converted to its active metabolite, all-trans-retinoic acid (atRA), and subsequent receptor-mediated regulation of gene transcription by atRA is essential for all mammal life stages. This pathway is required for normal embryonic development and maintenance of cellular phenotype in adult organisms; chemicals that cause even minor interference with its normal function are potential developmental and adult toxicants. A short-term (24 h) in vitro mode-of-action screen for detecting chemicals that disrupt this essential pathway is described. It uses the mouse pluripotent P19 stem cell in a 96-well format, RT-qPCR gene-expression assay that does not require RNA purification to detect chemicals that interfere with retinol-induced Hoxa1 gene expression, a target of retinol signaling in mammals. A total of 21 chemicals were screened at a single 45 μM concentration. Four chemicals known to disrupt the pathway in the rodent embryo (citral, disulfiram, and two rodent teratogens, nitrofen and bisdiamine) all significantly inhibited Hoxa1 upregulation by retinol. An additional four of seven chemicals with varying degrees of structural similarity to known disruptors or to the retinoid side chain, but not previously known to disrupt the pathway, were positive in the screen. The xenoestrogens, diethylstilbestrol, bisphenol A, 4-n-nonylphenol, and genistein and the phthalate esters, dibutyl phthalate and dipentyl phthalate, but not diethylhexyl phthalate, also significantly disrupted the pathway. Of the 21 chemicals tested, diethylstilbestrol was the only chemical that showed evidence in the MTT assay that cytotoxicity may have contributed to disruption of the pathway."	"Gene methylation in gastric cancer. Gastric cancer is one of the most common malignancies and remains the second leading cause of cancer-related death worldwide. Over 70% of new cases and deaths occur in developing countries. In the early years of the molecular biology revolution, cancer research mainly focuses on genetic alterations, including gastric cancer. Epigenetic mechanisms are essential for normal development and maintenance of tissue-specific gene expression patterns in mammals. Disruption of epigenetic processes can lead to altered gene function and malignant cellular transformation. Recent advancements in the rapidly evolving field of cancer epigenetics have shown extensive reprogramming of every component of the epigenetic machinery in cancer, including DNA methylation, histone modifications, nucleosome positioning, noncoding RNAs, and microRNAs. Aberrant DNA methylation in the promoter regions of gene, which leads to inactivation of tumor suppressor and other cancer-related genes in cancer cells, is the most well-defined epigenetic hallmark in gastric cancer. The advantages of gene methylation as a target for detection and diagnosis of cancer in biopsy specimens and non-invasive body fluids such as serum and gastric washes have led to many studies of application in gastric cancer. This review focuses on the most common and important phenomenon of epigenetics, DNA methylation, in gastric cancer and illustrates the impact epigenetics has had on this field. "	"Polycomb recruitment attenuates retinoic acid-induced transcription of the bivalent NR2F1 gene. Polycomb proteins play key roles in mediating epigenetic modifications that occur during cell differentiation. The Polycomb repressive complex 2 (PRC2) mediates the tri-methylation of histone H3 lysine 27 (H3K27me3). In this study, we identify a distinguishing feature of two classes of PRC2 target genes, represented by the Nr2F1 (Coup-TF1) and the Hoxa5 gene, respectively. Both genes are transcriptionally activated by all-trans retinoic acid (RA) and display increased levels of the permissive H3K9/K14ac and tri-methylated histone H3 lysine 4 epigenetic marks in response to RA. However, while in response to RA the PRC2 and H3K27me3 marks are greatly decreased at the Hoxa5 promoter, these marks are initially increased at the Nr2F1 promoter. Functional depletion of the essential PRC2 protein Suz12 by short hairpin RNA (shRNA) technology enhanced the RA-associated transcription of Nr2F1, Nr2F2, Meis1, Sox9 and BMP2, but had no effect on the Hoxa5, Hoxa1, Cyp26a1, Cyp26b1 and RARβ2 transcript levels in wild-type embryonic stem cells. We propose that PRC2 recruitment attenuates the RA-associated transcriptional activation of a subset of genes. Such a mechanism would permit the fine-tuning of transcriptional networks during differentiation. "	"Transcriptomic analysis of murine embryos lacking endogenous retinoic acid signaling. Retinoic acid (RA), an active derivative of the liposoluble vitamin A (retinol), acts as an important signaling molecule during embryonic development, regulating phenomenons as diverse as anterior-posterior axial patterning, forebrain and optic vesicle development, specification of hindbrain rhombomeres, pharyngeal arches and second heart field, somitogenesis, and differentiation of spinal cord neurons. This small molecule directly triggers gene activation by binding to nuclear receptors (RARs), switching them from potential repressors to transcriptional activators. The repertoire of RA-regulated genes in embryonic tissues is poorly characterized. We performed a comparative analysis of the transcriptomes of murine wild-type and Retinaldehyde Dehydrogenase 2 null-mutant (Raldh2 (-/-)) embryos - unable to synthesize RA from maternally-derived retinol - using Affymetrix DNA microarrays. Transcriptomic changes were analyzed in two embryonic regions: anterior tissues including forebrain and optic vesicle, and posterior (trunk) tissues, at early stages preceding the appearance of overt phenotypic abnormalities. Several genes expected to be downregulated under RA deficiency appeared in the transcriptome data (e.g. Emx2, Foxg1 anteriorly, Cdx1, Hoxa1, Rarb posteriorly), whereas reverse-transcriptase-PCR and in situ hybridization performed for additional selected genes validated the changes identified through microarray analysis. Altogether, the affected genes belonged to numerous molecular pathways and cellular/organismal functions, demonstrating the pleiotropic nature of RA-dependent events. In both tissue samples, genes upregulated were more numerous than those downregulated, probably due to feedback regulatory loops. Bioinformatic analyses highlighted groups (clusters) of genes displaying similar behaviors in mutant tissues, and biological functions most significantly affected (e.g. mTOR, VEGF, ILK signaling in forebrain tissues; pyrimidine and purine metabolism, calcium signaling, one carbon metabolism in posterior tissues). Overall, these data give an overview of the gene expression changes resulting from embryonic RA deficiency, and provide new candidate genes and pathways that may help understanding retinoid-dependent molecular events."	"Let-7c inhibits NSCLC cell proliferation by targeting HOXA1. The aim of the present study was to explore mechanisms by which let-7c suppresses NSCLC cell proliferation. The expression level of let-7c was quantified by qRT-PCR. A549 and H1299 cells were transfected with let-7c mimics to restore the expression of let-7c. The effects of let-7c were then assessed by cell proliferation, colony formation and cell cycle assay. Mouse experiments were used to confirm the effect of let-7c on tumorigenicity in vivo. Luciferase reporter assays and Western blotting were performed to identify target genes for let-7c. HOXA1 was identified as a novel target of let-7c. MTS, colony formation and flow cytometry assays demonstrated that forced expression of let-7c inhibited NSCLC cell proliferation by inducing G1 arrest in vitro, consistent with inhibitory effects induced by knockdown of HOXA1. Mouse experiments demonstrated that let-7c expression suppressed tumorigenesis. Furthermore, we found that let-7c could regulate the expression of HOXA1 downstream effectors CCND1, CDC25A and CDK2. Collectively, these results demonstrate let-7c inhibits NSCLC cell proliferation and tumorigenesis by partial direct targeting of the HOXA1 pathway, which suggests that restoration of let-7c expression may thus offer a potential therapeutic intervention strategy for NSCLC."	"HOXA1 drives melanoma tumor growth and metastasis and elicits an invasion gene expression signature that prognosticates clinical outcome. Melanoma is a highly lethal malignancy notorious for its aggressive clinical course and eventual resistance to existing therapies. Currently, we possess a limited understanding of the genetic events driving melanoma progression, and much effort is focused on identifying pro-metastatic aberrations or perturbed signaling networks that constitute new therapeutic targets. In this study, we validate and assess the mechanism by which homeobox transcription factor A1 (HOXA1), a pro-invasion oncogene previously identified in a metastasis screen by our group, contributes to melanoma progression. Transcriptome and pathway profiling analyses of cells expressing HOXA1 reveals upregulation of factors involved in diverse cytokine pathways that include the transforming growth factor beta (TGFβ) signaling axis, which we further demonstrate to be required for HOXA1-mediated cell invasion in melanoma cells. Transcriptome profiling also shows HOXA1's ability to potently downregulate expression of microphthalmia-associated transcription factor (MITF) and other genes required for melanocyte differentiation, suggesting a mechanism by which HOXA1 expression de-differentiates cells into a pro-invasive cell state concomitant with TGFβ activation. Our analysis of publicly available data sets indicate that the HOXA1-induced gene signature successfully categorizes melanoma specimens based on their metastatic potential and, importantly, is capable of stratifying melanoma patient risk for metastasis based on expression in primary tumors. Together, these validation data and mechanistic insights suggest that patients whose primary tumors express HOXA1 are among a high-risk metastasis subgroup that should be considered for anti-TGFβ therapy in adjuvant settings. Moreover, further analysis of HOXA1 target genes in melanoma may reveal new pathways or targets amenable to therapeutic intervention. "	"Xq26.3 microdeletion in a male with Wildervanck Syndrome. Wildervanck Syndrome (WS; cervico-oculo-acoustic syndrome) consists of Duane retraction syndrome (DRS), the Klippel-Feil anomaly, and congenital deafness. It is much more common in females than males and could be due to an X-linked mutation that is lethal to hemizygous males. We present the genetic evaluation of a male with WS and his family. Clinical evaluation and neuroimaging, sequencing of candidate genes, and array comparative genomic hybridization. The patient had bilateral type 1 DRS, fusion of almost the entire cervical spine, and bilateral severe sensorineural hearing loss due to bilateral cochlear dysplasia; he also had congenital heart disease requiring surgery. His parents were unrelated, and he had eight unaffected siblings. The patient had no mutation found by Sanger sequencing of HOXA1, KIF21A, SALL4, and CHN1. He had a 3kB deletion in the X-chromosome at Xq26.3 that was not found in his mother, one unaffected sibling, or 56 healthy controls of matching ethnicity. This deletion encompassed only one gene, Fibroblast Growth Factor Homologous Factor 13 (FGF13), which encodes a 216-amino acid protein that acts intracellularly in neurons throughout brain development. Analysis of this patient's phenotype and genotype open the possibility that X-chromosome deletions may be a cause of WS with larger deletions being lethal to males and that FGF13 mutations may be a cause of WS."	"Megakaryocytic differentiation of CD133+ hematopoietic stem cells by down-regulation of microRNA-10a. MicroRNAs (miRNA), as a class of non-coding RNAs, play a crucial role in normal hematopoiesis. Recent studies on miRNA profiling during hematopoiesis showed miR-10a down-regulation in megakaryocytic differentiation. Here we investigated whether decrease in miR-10a can differentiate umbilical cord blood CD133+ cells to megakaryocytic series. We ectopically induced miR-10a down-regulation by locked nucleic acid anti-miR-10a transfection of CD133+ cells. The megakaryocytic differentiation was evaluated by CD42/CD61 and CD41 surface expression and colonogenic capacity in Megacult media. In addition, real-time polymerase chain reaction was done for detection of miR-10a and its target HoxA1 mRNA. HOXA1 protein expression was detected by flow cytometry as mean fluorescent intensity that shows the antibody reaction proteins. Our findings showed megakaryocytic differentiation of about 28% of umbilical cord blood CD133+ stem cells with bright expression of CD42/CD61 and CD41 in parallel with increase in HoxA1 mRNA and protein level. Colony forming of CD61+ cells in Megacult demonstrated the colonogenic capacity of differentiated progenitor cells. In conclusion, MiR-10a has a role in megakaryocyte differentiation of stem cells via HOXA1 transcription factor targeting."	"Differential analysis of gene regulation at transcript resolution with RNA-seq. Differential analysis of gene and transcript expression using high-throughput RNA sequencing (RNA-seq) is complicated by several sources of measurement variability and poses numerous statistical challenges. We present Cuffdiff 2, an algorithm that estimates expression at transcript-level resolution and controls for variability evident across replicate libraries. Cuffdiff 2 robustly identifies differentially expressed transcripts and genes and reveals differential splicing and promoter-preference changes. We demonstrate the accuracy of our approach through differential analysis of lung fibroblasts in response to loss of the developmental transcription factor HOXA1, which we show is required for lung fibroblast and HeLa cell cycle progression. Loss of HOXA1 results in significant expression level changes in thousands of individual transcripts, along with isoform switching events in key regulators of the cell cycle. Cuffdiff 2 performs robust differential analysis in RNA-seq experiments at transcript resolution, revealing a layer of regulation not readily observable with other high-throughput technologies."	"Protein interactions of the transcription factor Hoxa1. Hox proteins are transcription factors involved in crucial processes during animal development. Their mode of action remains scantily documented. While other families of transcription factors, like Smad or Stat, are known cell signaling transducers, such a function has never been squarely addressed for Hox proteins. To investigate the mode of action of mammalian Hoxa1, we characterized its interactome by a systematic yeast two-hybrid screening against ~12,200 ORF-derived polypeptides. Fifty nine interactors were identified of which 45 could be confirmed by affinity co-purification in animal cell lines. Many Hoxa1 interactors are proteins involved in cell-signaling transduction, cell adhesion and vesicular trafficking. Forty-one interactions were detectable in live cells by Bimolecular Fluorescence Complementation which revealed distinctive intracellular patterns for these interactions consistent with the selective recruitment of Hoxa1 by subgroups of partner proteins at vesicular, cytoplasmic or nuclear compartments. The characterization of the Hoxa1 interactome presented here suggests unexplored roles for Hox proteins in cell-to-cell communication and cell physiology."	"The prolactin receptor mediates HOXA1-stimulated oncogenicity in mammary carcinoma cells. The HOX genes are a highly conserved subgroup of homeodomain-containing transcription factors that are crucial to normal development. Forced expression of HOXA1 results in oncogenic transformation of immortalized human mammary cells with aggressive tumour formation in vivo. Microarray analysis identified that the prolactin receptor (PRLR) was significantly upregulated by forced expression of HOXA1 in mammary carcinoma cells. To determine prolactin (PRL) involvement in HOXA1‑induced oncogenicity in mammary carcinoma cells (MCF-7), we examined the effect of human prolactin (hPRL)-initiated PRLR signal transduction on changes in cellular behaviour mediated by HOXA1. Forced expression of HOXA1 in MCF-7 cells increased PRLR mRNA and protein expression. Forced expression of HOXA1 also enhanced hPRL-stimulated phosphorylation of both STAT5A/B and p44/42 MAPK, and increased subsequent transcriptional activity of STAT5A and STAT5B, and Elk-1 and Sap1a, respectively. Moreover, forced expression of HOXA1 in MCF-7 cells enhanced the hPRL‑stimulated increase in total cell number as a consequence of enhanced cell proliferation and cell survival, and also enhanced hPRL-stimulated anchorage-independent growth in soft agar. Increased anchorage-independent growth was attenuated by the PRLR antagonist ∆1-9-G129R‑hPRL. In conclusion, we have demonstrated that HOXA1 increases expression of the cell surface receptor PRLR and enhances PRLR-mediated signal transduction. Thus, the PRLR is one mediator of HOXA1‑stimulated oncogenicity in mammary carcinoma cells."	"HOX gene methylation status analysis in patients with hereditary breast cancer. Cancer development is related not only to genetic alterations but also to aberrant epigenetic changes that could lead to heritable gene patterns critical for neoplastic initiation and progression. Knowledge of epigenetic regulation in cancer cells is useful for both the understanding of carcinogenesis and for the possibility of using epigenetic drugs. HOX genes deregulation have a crucial role in oncogenesis process and tumor suppression. In this report, the methylation of HOXA1, HOXA9, HOXA10, HOXB13, HNF1B, OTX1, TLX1 genes have been analyzed in patients with hereditary breast cancer. This is the first study analyzing BRCA mutational status of patients with respect to methylation of HOX genes. HOXA10 has been found to be methylated in all patients analyzed but never in healthy subjects. With respect to clinical pathological information, hypermethylation of all studied genes, with the exception of OTX1, was significantly associated with absence of HER2 neu expression (P&lt;0.05). Moreover, hypermethylation of HOXB13, HOXA10 and HOXA1 was associated with a high proliferation index (Mib1≥10%, P&lt;0.05) and hypermethylation of HOXB13 and HOXA10 also with high expression of estrogen and progesterone receptors. These preliminary data suggest a possible involvement of HOX genes in familial breast cancer as marker helpful to identify high-risk patients."	"Implication of DNA demethylation and bivalent histone modification for selective gene regulation in mouse primordial germ cells. Primordial germ cells (PGCs) sequentially induce specific genes required for their development. We focused on epigenetic changes that regulate PGC-specific gene expression. mil-1, Blimp1, and Stella are preferentially expressed in PGCs, and their expression is upregulated during PGC differentiation. Here, we first determined DNA methylation status of mil-1, Blimp1, and Stella regulatory regions in epiblast and in PGCs, and found that they were hypomethylated in differentiating PGCs after E9.0, in which those genes were highly expressed. We used siRNA to inhibit a maintenance DNA methyltransferase, Dnmt1, in embryonic stem (ES) cells and found that the flanking regions of all three genes became hypomethylated and that expression of each gene increased 1.5- to 3-fold. In addition, we also found 1.5- to 5-fold increase of the PGC genes in the PGCLCs (PGC-like cells) induced form ES cells by knockdown of Dnmt1. We also obtained evidence showing that methylation of the regulatory region of mil-1 resulted in 2.5-fold decrease in expression in a reporter assay. Together, these results suggested that DNA demethylation does not play a major role on initial activation of the PGC genes in the nascent PGCs but contributed to enhancement of their expression in PGCs after E9.0. However, we also found that repression of representative somatic genes, Hoxa1 and Hoxb1, and a tissue-specific gene, Gfap, in PGCs was not dependent on DNA methylation; their flanking regions were hypomethylated, but their expression was not observed in PGCs at E13.5. Their promoter regions showed the bivalent histone modification in PGCs, that may be involved in repression of their expression. Our results indicated that epigenetic status of PGC genes and of somatic genes in PGCs were distinct, and suggested contribution of epigenetic mechanisms in regulation of the expression of a specific gene set in PGCs."	"Role of COUP-TFI during retinoic acid-induced differentiation of P19 cells to endodermal cells. Retinoic acid (RA) is a positive regulator of P19 cell differentiation. Silencing of pre-B cell leukemia transcription factors (PBXs) expression in P19 cells (AS cells) results in a failure of these cells to differentiate to endodermal cells upon RA treatment. Chicken Ovalbumin Upstream Promoter Transcription Factor I (COUP-TFI) is an orphan member of the steroid-thyroid hormone superfamily. RA treatment of wild type P19 cells results in a dramatic increase in the expression of COUP-TFI; however, COUP-TFI mRNA levels fail to be elevated upon RA treatment of AS cells indicating that PBX expression is required for elevation in COUP-TFI expression. To study the role of COUP-TFI during RA-dependent differentiation of P19 cells, AS cells that inducibly express various levels of COUP-TFI were prepared. Exogenous expression of COUP-TFI in AS cells, in a dose-dependent fashion, leads to growth inhibition, modest cell cycle disruption, and early apoptosis. Furthermore, AS cells can overcome the blockage in RA-dependent differentiation to endodermal cells when either pharmacological levels of COUP-TFI are expressed or a combination of both the expression of physiological levels of COUP-TFI and RA treatment. Additionally, the mRNA level of several pluripotency associated genes including OCT-4, DAX-1, and SF-1 in the COUP-TFI expressing AS cells are reduced. Moreover, analysis of the expression of primary RA response genes indicates that COUP-TFI is involved in the regulatory modulation of the expression of at least two genes, CYP26A1 and HoxA1. These studies demonstrate that COUP-TFI functions as a physiologically relevant regulator during RA-mediated endodermal differentiation of P19 cells."	"The homeodomain region controls the phenotype of HOX-induced murine leukemia. HOX proteins are widely involved in hematopoietic development. These transcription factors combine a conserved DNA-binding homeobox with a divergent N-terminus that mediates interaction with variable cofactors. The resulting combinatorial diversity is thought to be responsible for mammalian HOX specificity. Contrasting this proposed mechanism for normal HOX function, here we demonstrate that, in the context of hematopoietic immortalization and leukemogenesis, individual HOX properties are governed almost exclusively by the homeodomain. Swap experiments between HOXA1 and HOXA9, 2 members of nonrelated paralog groups, revealed that gene expression patterns of HOX transformed cells in vitro are determined by the nature of the homeodomain. Similar results were seen in vivo during HOX-mediated leukemogenesis. An exchange of the homeodomains was sufficient to convert the slow, low-penetrance phenotype of HOXA1-induced leukemia to the aggressive fast-acting disease elicited by HOXA9 and vice versa. Mutation and deletion studies identified several subregions within the DNA binding domain responsible for paralog specificity. Previously defined binding sites for PBX cofactors within the exchangeable, nonhomeobox segment were dispensable for in vitro oncogenic HOX activity but affected in vivo disease development. The transcriptional activator domain shared by HOXA1 and HOXA9 at the very N-terminus proved essential for all transformation."	"Hypoxia-inducible miR-210 regulates the susceptibility of tumor cells to lysis by cytotoxic T cells. Hypoxia in the tumor microenvironment plays a central role in the evolution of immune escape mechanisms by tumor cells. In this study, we report the definition of miR-210 as a miRNA regulated by hypoxia in lung cancer and melanoma, documenting its involvement in blunting the susceptibility of tumor cells to lysis by antigen-specific cytotoxic T lymphocytes (CTL). miR-210 was induced in hypoxic zones of human tumor tissues. Its attenuation in hypoxic cells significantly restored susceptibility to autologous CTL-mediated lysis, independent of tumor cell recognition and CTL reactivity. A comprehensive approach using transcriptome analysis, argonaute protein immunoprecipitation, and luciferase reporter assay revealed that the genes PTPN1, HOXA1, and TP53I11 were miR-210 target genes regulated in hypoxic cells. In support of their primary importance in mediating the immunosuppressive effects of miR-210, coordinate silencing of PTPN1, HOXA1, and TP53I11 dramatically decreased tumor cell susceptibility to CTL-mediated lysis. Our findings show how miR-210 induction links hypoxia to immune escape from CTL-mediated lysis, by providing a mechanistic understanding of how this miRNA mediates immunosuppression in oxygen-deprived regions of tumors where cancer stem-like cells and metastatic cellular behaviors are known to evolve."	"Partial chromosome 7 duplication with a phenotype mimicking the HOXA1 spectrum disorder. To evaluate possible monogenic and chromosomal anomalies in a patient with bilateral Duane retraction syndrome and hearing impairment resulting in a phenotype resembling the HOXA1 spectrum disorder. Sequencing HOXA1 and performing high resolution array comparative genomic hybridization (arrayCGH). The proband had bilateral Duane retraction syndrome (DRS) with severe hearing loss bilaterally and an absent right vertebral artery, mimicking the major features of the Bosley-Salih-Alorainy variant of the HOXA1 spectrum. However, he also had developmental delay, mild mental retardation, and seizures. His parents were not related, but his father had milder sensorineural hearing loss bilaterally, and two paternal uncles and a paternal cousin had seizures. Neuroimaging revealed moderate maldevelopment of inner ear bony anatomy bilaterally. HOXA1 sequencing was normal, but arrayCGH revealed a small partial duplication of chromosome 7 encompassing only the PTPRN2 gene (protein tyrosine phosphatase, receptor type, N polypeptide 2) that was not present in his parents, an unaffected brother, or 53 normal ethnically-matched individuals. PTPRN2 is not yet linked to a genetic syndrome, although its expression has been identified in the adult human brain, in certain tumors, and in association with type 1 diabetes mellitus. The phenotype of this patient is strikingly similar to, but not identical to, that of the HOXA1 spectrum disorder. The findings in this patient raise the possibility that PTPRN2 may be active during early development of the human brainstem and that its overexpression may cause bilateral DRS with hearing loss as occurs in patients with homozygous HOXA1 mutations."	"Overexpression of HOXA1 correlates with poor prognosis in patients with hepatocellular carcinoma. HOXA1 overexpression is sufficient for malignant transformation of nontumorigenic epithelial cells. It is known that HOXA1, which was upregulated in squamous cell carcinomas, affects both cell growth and death. The forced expression of HOXA1 in human breast cancer cells results in increased cell growth activity. However, it has not been reported in hepatocellular carcinoma (HCC). In this study, we used immunohistochemistry to compare HOXA1 protein expression in HCC and normal liver tissues and further analyzed HOXA1 protein expression in 156 clinicopathologically characterized HCC cases. We stably knocked down the endogenous expression level of HOXA1 in HepG2 cells with specific shRNA-expressing lentiviral vector. Following the successful establishment of stable cells, we examined in vitro cell growth by the MTT assay, anchorage-independent growth through a soft agar colony formation assay and cell migration/invasion by transwell and Boyden chamber assay. In addition, we also investigated in vivo tumor growth by xenograft transplantation of HepG2 cells into nude mice. Our results showed that the protein expression level of HOXA1 was markedly higher in HCC tissues than that in normal liver tissue (P = 0.019). In addition, a high expression level of HOXA1 protein was positively correlated with the T classification (P &lt; 0.001), the N classification (P &lt; 0.001), distant metastasis (P = 0.004), and the clinical stage (P &lt; 0.001) of HCC patients. Patients with higher HOXA1 expression showed a significantly shorter overall survival time compared with patients with low HOXA1 expression. Multivariate analysis suggested that HOXA1 expression might be an independent prognostic indicator (P &lt; 0.001) for the survival of patients with HCC. HOXA1-specific shRNA (shHOXA1) successfully knocked down HOXA1 endogenous expression in HepG2 cells. Compared to the parental and control shRNA-transfected (shCtrl) HepG2 cells, the shHOXA1 cells exhibited significantly reduced in vitro cell growth, anchorage-independent growth, and cell migration and invasion (P &lt; 0.05). In vivo, the xenograft transplants from shHOXA1 cells gave rise to much smaller tumors compared with those from shCtrl cells. Collectively, high HOXA1 expression is associated with poor overall survival in patients with HCC. The downregulation of HOXA1 inhibits growth, anchorage-independent growth, and migration and invasion of HepG2 cells."	"HOXA1 gene is not potentially related to ventricular septal defect in Chinese children. The HOXA1 gene plays a fundamental role in embryonic morphogenesis. Recent studies in humans and mice have indicated that HOXA1 plays a previously unrecognized role in cardiovascular system development. Congenital heart disease (CHD), particularly ventricular septal defect (VSD), might be a clinically isolated manifestation of HOXA1 mutations. The purpose of the present study was to identify potential pathological mutations in the HOXA1 gene in Chinese children with VSD and to gain insight into the etiology of CHD. A total of 340 nonsyndromic VSD patients and 200 normal subjects were sampled. Two exons and the nearby introns of the human HOXA1 gene were amplified using polymerase chain reaction (PCR). The PCR products were purified and directly sequenced. However, no nonsynonymous mutations in the coding regions of the HOXA1 gene were observed: Only two novel synonymous mutations (c.C210T p.His70His, and c.T861A p.Arg287Arg) were found in two patients. Two previously reported single and multiple histidine-deletion variants were identified in both normal and VSD patients. To our knowledge, this is the first study to investigate the role of the HOXA1 gene in CHD. Although our results did not show any pathogenic HOXA1 mutation, our results suggest that VSD might not be a clinically isolated manifestation of HOXA1 mutations."	"Dynamic network of transcription and pathway crosstalk to reveal molecular mechanism of MGd-treated human lung cancer cells. Recent research has revealed various molecular markers in lung cancer. However, the organizational principles underlying their genetic regulatory networks still await investigation. Here we performed Network Component Analysis (NCA) and Pathway Crosstalk Analysis (PCA) to construct a regulatory network in human lung cancer (A549) cells which were treated with 50 uM motexafin gadolinium (MGd), a metal cation-containing chemotherapeutic drug for 4, 12, and 24 hours. We identified a set of key TFs, known target genes for these TFs, and signaling pathways involved in regulatory networks. Our work showed that putative interactions between these TFs (such as ESR1/Sp1, E2F1/Sp1, c-MYC-ESR, Smad3/c-Myc, and NFKB1/RELA), between TFs and their target genes (such as BMP41/Est1, TSC2/Myc, APE1/Sp1/p53, RARA/HOXA1, and SP1/USF2), and between signaling pathways (such as PPAR signaling pathway and Adipocytokines signaling pathway). These results will provide insights into the regulatory mechanism of MGd-treated human lung cancer cells."	"Retinoic acid-dependent control of MAP kinase phosphatase-3 is necessary for early kidney development in Xenopus. In Xenopus, the functional kidney of the tadpole, the pronephros, forms from the kidney field, which is specified at completion of gastrulation. Specification of the kidney field requires retinoic acid (RA) signalling during gastrulation, while fibroblast growth factor (FGF) signals inhibit should be inhibit this process. We have analysed the functional interactions taking place during gastrulation between RA and FGF signals in the lateral marginal zone (LMZ), that is in the environment of unspecified pronephric mesoderm precursors. Inhibition of FGF receptor (FGFR) signalling with SU5402 does not significantly affect expression of genes encoding RA metabolism enzymes and RA receptor-α in LMZ explants. Furthermore, SU5402 has no effect on the expression of hoxa1, a major RA target in the LMZ, showing that FGF is not antagonising RA in the LMZ. Disruption of RA signalling affects FGF ligand production to some extent, especially FGF8b, but the strongest effect is the down-regulation of the mitogen-activated protein kinase phosphatase-3 (MKP3)-encoding gene, mkp3. A strong up-regulation of mkp3 occurs in response to exogenous RA. This effect is reduced in a context of FGFR inhibition, suggesting that RA and FGF signals are co-operating upstream of mkp3. Mkp3 knockdown results in an inhibition of the kidney field markers pax8 and lhx1 and in a defective development of the pronephros. FGF is not negatively influencing pronephric specification by antagonising RA signalling. Functional interactions between RA and FGF rather take place at the level of the transcriptional regulation of mkp3, indicating that RA may antagonise FGF signalling at the level of the extracellular signal-regulated kinase (Erk) pathway. A fine tuning of Erk signalling by MKP3 is important for the proper establishment of the kidney field."	"HOXA1 is overexpressed in oral squamous cell carcinomas and its expression is correlated with poor prognosis. HOX genes encode homeodomain-containing transcription factors involved in the regulation of cellular proliferation and differentiation during embryogenesis. However, members of this family demonstrated oncogenic properties in some malignancies. The present study investigated whether genes of the HOXA cluster play a role in oral cancer. In order to identify differentially expressed HOXA genes, duplex RT-PCR in oral samples from healthy mucosa and squamous cell carcinoma was used. The effects of HOXA1 on proliferation, apoptosis, adhesion, invasion, epithelial-mesenchymal transition (EMT) and anchorage-independent growth were assessed in cells with up- and down-regulation of HOXA1. Immunohistochemical analysis using a tissue microarray (TMA) containing 127 oral squamous cell carcinomas (OSCC) was performed to determine the prognostic role of HOXA1 expression. We showed that transcripts of HOXA genes are more abundant in OSCC than in healthy oral mucosa. In particular, HOXA1, which has been described as one of the HOX members that plays an important role in tumorigenesis, was significantly more expressed in OSCCs compared to healthy oral mucosas. Further analysis demonstrated that overexpression of HOXA1 in HaCAT human epithelial cells promotes proliferation, whereas downregulation of HOXA1 in human OSCC cells (SCC9 cells) decreases it. Enforced HOXA1 expression in HaCAT cells was not capable of modulating other events related to tumorigenesis, including apoptosis, adhesion, invasion, EMT and anchorage-independent growth. A high number of HOXA1-positive cells was significantly associated with T stage, N stage, tumor differentiation and proliferative potential of the tumors, and was predictive of poor survival. In multivariate analysis, HOXA1 was an independent prognostic factor for OSCC patients (HR: 2.68; 95% CI: 1.59-2.97; p = 0.026). Our findings indicate that HOXA1 may contribute to oral carcinogenesis by increasing tumor cell proliferation, and suggest that HOXA1 expression might be helpful as a prognostic marker for patients with OSCC."	"Characterization of miR-10a mediated gene regulation in avian splenocytes. It is well established that microRNAs (miRNAs) are an important class of post-transcriptional regulators of gene expression. Although numerous miRNA expression profiles have been generated for many eukaryotic organisms, little is known about the specific functions of individual miRNAs in regulating gene expression. We previously reported that the miRNA, miR-10a, is highly expressed during spleen development in embryonic chicks. In this current study we have identified genes and potential pathways that are both directly and indirectly influenced by miR-10a expression. To achieve this goal, miRNA Real-Time (RT) PCR analysis was first utilized to examine miR-10a expression across tissues during both embryonic and post-hatch chick development. Next, microarray analysis was employed to determine alterations in global gene expression associated with miR-10a in embryonic chick splenocytes subjected to an in vitro miR-10a inhibitor treatment. Finally the miRNA target prediction algorithm miRanda was used to predict potential chicken genes directly targeted by miR-10a. A select group of potential miR-10a target genes was validated using an RCAS-miRNA expression based luciferase assay. Our results indicate that miR-10a is highly expressed in the avian spleen, lung, kidneys, and fat tissues. Functional analysis suggests that miR-10a is involved in regulating gene expression in pathways associated with Ras signaling, intracellular trafficking, and development of immune functions. Additionally, we confirmed that chicken HOXA1 is a miR-10a target gene, suggesting a conserved role for miR-10a in the regulation of hematopoiesis across vertebrates."	"MicroRNA-10a is overexpressed in human pancreatic cancer and involved in its invasiveness partially via suppression of the HOXA1 gene. There is increasing evidence that microRNAs are differentially expressed in many types of cancers. Despite progress in analyses of microRNAs in several types of cancers, the functional contributions of microRNAs to pancreatic cancer remain unclear. In the present study, the expression levels of specific microRNAs identified by microarray analyses were examined in a panel of 15 pancreatic cancer cell lines. We then investigated the functional roles of these microRNAs in the proliferation and invasion of pancreatic cancer cells. Based on the microarray data, we found frequent and marked overexpression of miR-10a, miR-92, and miR-17-5p in pancreatic cancer cell lines. Microdissection analyses revealed that miR-10a was overexpressed in pancreatic cancer cells isolated from a subset of primary tumors (12 of 20, 60%) compared with precursor lesions and normal ducts (P&lt;.01). In vitro experiments revealed that miR-10a inhibitors decreased the invasiveness of pancreatic cancer cells (P&lt;.01), but had no effect on their proliferation. Inhibition of HOXA1, a target of miR-10a, promoted the invasiveness of pancreatic cancer cells (P&lt;.01). The present data suggest that miR-10a is overexpressed in a subset of pancreatic cancers and is involved in the invasive potential of pancreatic cancer cells partially via suppression of HOXA1."	"Allelic variation within the putative autism spectrum disorder risk gene homeobox A1 and cerebellar maturation in typically developing children and adolescents. Homeobox A1 (HOXA1) has been proposed as a candidate gene for autism spectrum disorder (ASD) as it regulates embryological patterning of hind-brain structures implicated in autism neurobiology. In line with this notion, a nonsynonymous single nucleotide polymorphism within a highly conserved domain of HOXA1--A218G (rs10951154)--has been linked to both ASD risk, and cross-sectional differences in superior posterior lobar cerebellar anatomy in late adulthood. Despite evidence for early onset and developmentally dynamic cerebellar involvement in ASD, little is known of the relationship between A218G genotype and maturation of the cerebellum over early development. We addressed this issue using 296 longitudinally acquired structural magnetic resonance imaging brain scans from 116 healthy individuals between 5 and 23 years of age. Mixed models were used to compare the relationship between age and semi-automated measures of cerebellar volume in A-homozygotes (AA) and carriers of the G allele (Gcar). Total cerebellar volume increased between ages of 5 and 23 years in both groups. However, this was accelerated in the Gcar relative to the AA group (Genotype-by-age interaction term, P = 0.03), and driven by genotype-dependent differences in the rate of bilateral superior posterior lobar volume change with age (P = 0.002). Resultantly, although superior posterior lobar volume did not differ significantly between genotype groups at age 5 (P = 0.9), by age 23 it was 12% greater in Gcar than AA (P = 0.002). Our results suggest that common genetic variation within this putative ASD risk gene has the capacity to modify the development of cerebellar systems implicated in ASD neurobiology."	"Distinct patterns of promoter CpG island methylation of breast cancer subtypes are associated with stem cell phenotypes. Although DNA methylation profiles in breast cancer have been connected to breast cancer molecular subtype, there have been no studies of the association of DNA methylation with stem cell phenotype. This study was designed to evaluate the promoter CpG island methylation of 15 genes in relation to breast cancer subtype, and to investigate whether the patterns of CpG island methylation in each subtype are associated with their cancer stem cell phenotype represented by CD44+/CD24- and ALDH1 expression. We performed MethyLight analysis of the methylation status of 15 promoter CpG island loci involved in breast cancer progression (APC, DLEC1, GRIN2B, GSTP1, HOXA1, HOXA10, IGF2, MT1G, RARB, RASSF1A, RUNX3, SCGB3A1, SFRP1, SFRP4, and TMEFF2) and determined cancer stem cell phenotype by CD44/CD24 and ALDH1 immunohistochemistry in 36 luminal A, 33 luminal B, 30 luminal-HER2, 40 HER2 enriched, and 40 basal-like subtypes of breast cancer. The number of CpG island loci methylated differed significantly between subtypes, and was highest in the luminal-HER2 subtype and lowest in the basal-like subtype. Methylation frequencies and levels in 12 of the 15 genes differed significantly between subtypes, and the basal-like subtype had significantly lower methylation frequencies and levels in nine of the genes than the other subtypes. CD44+/CD24- and ALDH1+ putative stem cell populations were most enriched in the basal-like subtype. Methylation of promoter CpG islands was significantly lower in CD44+/CD24-cell (+) tumors than in CD44+/CD24-cell (-) tumors, even within the basal-like subtype. ALDH1 (+) tumors were also less methylated than ALDH1 (-) tumors. Our findings showed that promoter CpG island methylation was different in relation to breast cancer subtype and stem cell phenotype of tumor, suggesting that breast cancers have distinct patterns of CpG island methylation according to molecular subtypes and these are associated with different stem cell phenotypes of the tumor."	"The JmjC domain-containing histone demethylase KDM3A is a positive regulator of the G1/S transition in cancer cells via transcriptional regulation of the HOXA1 gene. A number of histone demethylases have been identified and biochemically characterized, yet their biological functions largely remain uncharacterized, particularly in the context of human diseases such as cancer. In this study, we describe important roles for the histone demethylase KDM3A, also known as JMJD1A, in human carcinogenesis. Expression levels of KDM3A were significantly elevated in human bladder carcinomas compared with nonneoplastic bladder tissues (p &lt; 0.0001), when assessed by real-time PCR. We confirmed that some other cancers including lung cancer also overexpressed KDM3A, using cDNA microarray analysis. Treatment of cancer cell lines with small interfering RNA targeting KDM3A significantly knocked down its expression and resulted in the suppression of proliferation. Importantly, we found that KDM3A activates transcription of the HOXA1 gene through demethylating histone H3 at lysine 9 di-methylation by binding to its promoter region. Indeed, expression levels of KDM3A and HOXA1 in several types of cancer cell lines and bladder cancer samples were statistically correlated. We observed the down-regulation of HOXA1 as well as CCND1 after treatment with KDM3A siRNA, indicating G(1) arrest of cancer cells. Together, our results suggest that elevated expression of KDM3A plays a critical role in the growth of cancer cells, and further studies may reveal a cancer therapeutic potential in KDM3A inhibition."	"An integrated meta-analysis of two variants in HOXA1/HOXB1 and their effect on the risk of autism spectrum disorders. HOXA1 and HOXB1 have been strongly posed as candidate genes for autism spectrum disorders (ASD) given their important role in the development of hindbrain. The A218G (rs10951154) in HOXA1 and the insertion variant in HOXB1 (nINS/INS, rs72338773) were of special interest for ASD but with inconclusive results. Thus, we conducted a meta-analysis integrating case-control and transmission/disequilibrium test (TDT) studies to clearly discern the effect of these two variants in ASD. Multiple electronic databases were searched to identify studies assessing the A218G and/or nINS/INS variant in ASD. Data from case-control and TDT studies were analyzed in an allelic model using the Catmap software. A total of 10 and 7 reports were found to be eligible for meta-analyses of A218G and nINS/INS variant, respectively. In overall meta-analysis, the pooled OR for the 218G allele and the INS allele was 0.97 (95% CI = 0.76-1.25, P(heterogeneity) = 0.029) and 1.14 (95% CI = 0.97-1.33, P(heterogeneity) = 0.269), respectively. No significant association was also identified between these two variants and ASD risk in stratified analysis. Further, cumulative meta-analysis in chronologic order showed the inclination toward null-significant association for both variants with continual adding studies. Additionally, although the between-study heterogeneity regarding the A218G is not explained by study design, ethnicity, and sample size, the sensitive analysis indicated the stability of the result. This meta-analysis suggests the HOXA1 A218G and HOXB1 nINS/INS variants may not contribute significantly to ASD risk."	"The Pbx interaction motif of Hoxa1 is essential for its oncogenic activity. Hoxa1 belongs to the Hox family of homeodomain transcription factors involved in patterning embryonic territories and governing organogenetic processes. In addition to its developmental functions, Hoxa1 has been shown to be an oncogene and to be overexpressed in the mammary gland in response to a deregulation of the autocrine growth hormone. It has therefore been suggested that Hoxa1 plays a pivotal role in the process linking autocrine growth hormone misregulation and mammary carcinogenesis. Like most Hox proteins, Hoxa1 can interact with Pbx proteins. This interaction relies on a Hox hexapeptidic sequence centred on conserved Tryptophan and Methionine residues. To address the importance of the Hox-Pbx interaction for the oncogenic activity of Hoxa1, we characterized here the properties of a Hoxa1 variant with substituted residues in the hexapeptide and demonstrate that the Hoxa1 mutant lost its ability to stimulate cell proliferation, anchorage-independent cell growth, and loss of contact inhibition. Therefore, the hexapeptide motif of Hoxa1 is required to confer its oncogenic activity, supporting the view that this activity relies on the ability of Hoxa1 to interact with Pbx."	"Cardiovascular defects in a mouse model of HOXA1 syndrome. Congenital heart disease is one of the most common human birth defects, yet many genes and pathways regulating heart development remain unknown. A recent study in humans revealed that mutations in a single Hox gene, HOXA1 (Athabascan Brainstem Dysgenesis Syndrome, Bosley-Salih-Alorainy Syndrome), can cause severe cardiovascular malformations, some of which are lethal without surgical intervention. Since the discovery of the human syndromes, there have been no reports of any Hox mouse mutants with cardiac defects, hampering studies to explore the developmental causes of the human disease. In this study, we identify severe cardiovascular malformations in a Hox mouse model, which mimic the congenital heart defects in HOXA1 syndrome patients. Hoxa1 null mice show defects such as interrupted aortic arch, aberrant subclavian artery and Tetralogy of Fallot, demonstrating that Hoxa1 is required for patterning of the great arteries and outflow tract of the heart. We show that during early embryogenesis, Hoxa1 is expressed in precursors of cardiac neural crest cells (NCCs), which populate the heart. We further demonstrate that Hoxa1 acts upstream of several genes, important for neural crest specification. Thus, our data allow us to suggest a model in which Hoxa1 regulates heart development through its influence on cardiac NCCs, providing insight into the mechanisms underlying the human disease."	"Development of a neural teratogenicity test based on human embryonic stem cells: response to retinoic acid exposure. The aim of this study was the development of an alternative testing method based on human embryonic stem cells for prenatal developmental toxicity with particular emphasis on early neural development. To this purpose, we designed an in vitro protocol based on the generation of neural rosettes, representing the in vitro counterpart of the developing neural plate and neural tube, and we challenged this complex cell model with retinoic acid (RA), a well-known teratogenic agent. The cells were exposed to different concentrations of RA during the process of rosettes formation. Morphological and molecular parameters were evaluated in treated as compared with untreated cells to detect both cytotoxicity and specific neural toxicity. Transcriptomic analysis was performed with microarray Affymetrix platform and validated by quantitative real-time PCR for genes relevant to early neural development such as HoxA1, HoxA3, HoxB1, HoxB4, FoxA2, FoxC1, Otx2, and Pax7. The results obtained demonstrated that neural rosette forming cells respond to RA with clear concentration-dependent morphological, and gene expression changes remarkably similar to those induced in vivo, in the developing neural tube, by RA exposure. This strict correspondence indicates that the neural rosette protocol described is capable of detecting specific teratogenic mechanisms causing perturbations of early neural development and therefore represents a promising alternative test for human prenatal developmental toxicity."	"Identification of novel Hoxa1 downstream targets regulating hindbrain, neural crest and inner ear development. Hox genes play a crucial role during embryonic patterning and organogenesis. Of the 39 Hox genes, Hoxa1 is the first to be expressed during embryogenesis and the only anterior Hox gene linked to a human syndrome. Hoxa1 is necessary for the proper development of the brainstem, inner ear and heart in humans and mice; however, almost nothing is known about the molecular downstream targets through which it exerts its function. To gain insight into the transcriptional network regulated by this protein, we performed microarray analysis on tissue microdissected from the prospective rhombomere 3-5 region of Hoxa1 null and wild type embryos. Due to the very early and transient expression of this gene, dissections were performed on early somite stage embryos during an eight-hour time window of development. Our array yielded a list of around 300 genes differentially expressed between the two samples. Many of the identified genes play a role in a specific developmental or cellular process. Some of the validated targets regulate early neural crest induction and specification. Interestingly, three of these genes, Zic1, Hnf1b and Foxd3, were down-regulated in the posterior hindbrain, where cardiac neural crest cells arise, which pattern the outflow tract of the heart. Other targets are necessary for early inner ear development, e.g. Pax8 and Fgfr3 or are expressed in specific hindbrain neurons regulating respiration, e.g. Lhx5. These findings allow us to propose a model where Hoxa1 acts in a genetic cascade upstream of genes controlling specific aspects of embryonic development, thereby providing insight into possible mechanisms underlying the human HoxA1-syndrome."	"DNA methylation changes in atypical adenomatous hyperplasia, adenocarcinoma in situ, and lung adenocarcinoma. Aberrant DNA methylation is common in lung adenocarcinoma, but its timing in the phases of tumor development is largely unknown. Delineating when abnormal DNA methylation arises may provide insight into the natural history of lung adenocarcinoma and the role that DNA methylation alterations play in tumor formation. We used MethyLight, a sensitive real-time PCR-based quantitative method, to analyze DNA methylation levels at 15 CpG islands that are frequently methylated in lung adenocarcinoma and that we had flagged as potential markers for non-invasive detection. We also used two repeat probes as indicators of global DNA hypomethylation. We examined DNA methylation in 249 tissue samples from 93 subjects, spanning the putative spectrum of peripheral lung adenocarcinoma development: histologically normal adjacent non-tumor lung, atypical adenomatous hyperplasia (AAH), adenocarcinoma in situ (AIS, formerly known as bronchioloalveolar carcinoma), and invasive lung adenocarcinoma. Comparison of DNA methylation levels between the lesion types suggests that DNA hypermethylation of distinct loci occurs at different time points during the development of lung adenocarcinoma. DNA methylation at CDKN2A ex2 and PTPRN2 is already significantly elevated in AAH, while CpG islands at 2C35, EYA4, HOXA1, HOXA11, NEUROD1, NEUROD2 and TMEFF2 are significantly hypermethylated in AIS. In contrast, hypermethylation at CDH13, CDX2, OPCML, RASSF1, SFRP1 and TWIST1 and global DNA hypomethylation appear to be present predominantly in invasive cancer. The gradual increase in DNA methylation seen for numerous loci in progressively more transformed lesions supports the model in which AAH and AIS are sequential stages in the development of lung adenocarcinoma. The demarcation of DNA methylation changes characteristic for AAH, AIS and adenocarcinoma begins to lay out a possible roadmap for aberrant DNA methylation events in tumor development. In addition, it identifies which DNA methylation changes might be used as molecular markers for the detection of preinvasive lesions."	"Plasticity of neural crest-placode interaction in the developing visceral nervous system. The reciprocal relationship between rhombomere (r)-derived cranial neural crest (NC) and epibranchial placodal cells derived from the adjacent branchial arch is critical for visceral motor and sensory gangliogenesis, respectively. However, it is unknown whether the positional match between these neurogenic precursors is hard-wired along the anterior-posterior (A/P) axis. Here, we use the interaction between r4-derived NC and epibranchial placode-derived geniculate ganglion as a model to address this issue. In Hoxa1(-/-) b1(-/-) embryos, r2 NC compensates for the loss of r4 NC. Specifically, a population of r2 NC cells is redirected toward the geniculate ganglion, where they differentiate into postganglionic (motor) neurons. Reciprocally, the inward migration of the geniculate ganglion is associated with r2 NC. The ability of NC and placodal cells to, respectively, differentiate and migrate despite a positional mismatch along the A/P axis reflects the plasticity in the relationship between the two neurogenic precursors of the vertebrate head."	"Oligogenic heterozygosity in individuals with high-functioning autism spectrum disorders. Autism spectrum disorders (ASDs) are a heterogeneous group of neuro-developmental disorders. While significant progress has been made in the identification of genes and copy number variants associated with syndromic autism, little is known to date about the etiology of idiopathic non-syndromic autism. Sanger sequencing of 21 known autism susceptibility genes in 339 individuals with high-functioning, idiopathic ASD revealed de novo mutations in at least one of these genes in 6 of 339 probands (1.8%). Additionally, multiple events of oligogenic heterozygosity were seen, affecting 23 of 339 probands (6.8%). Screening of a control population for novel coding variants in CACNA1C, CDKL5, HOXA1, SHANK3, TSC1, TSC2 and UBE3A by the same sequencing technology revealed that controls were carriers of oligogenic heterozygous events at significantly (P &lt; 0.01) lower rate, suggesting oligogenic heterozygosity as a new potential mechanism in the pathogenesis of ASDs."	"The retinol signaling pathway in mouse pluripotent P19 cells. atRA (all-trans-retinoic acid), the active metabolite of retinol (vitamin A), is essential for embryogenesis and maintenance of cellular phenotype in adults. Chemicals that interfere with the metabolism of retinol to atRA, therefore, are a human health concern. During development of a screen for disruptors of this signaling pathway, we investigated whether the mouse pluripotent P19 cell metabolizes retinol to atRA and thus can be used in a cell-based screen for disruptors of the pathway. We found that retinol induced the identical pattern of homeobox gene expression as atRA and its precursor, retinal. Retinol was 160-fold less potent than atRA as an inducer, however. In spite of its lower potency, increased Hoxa1 gene expression was detected 30 min after retinol exposure and increased 40-fold by 2 h. Rdh10 and Aldh1a2/Raldh2, which together convert retinol to atRA in the embryo, were the predominant alcohol and aldehyde dehydrogenases expressed in P19 cells. The cell expressed high mRNA levels of retinol binding proteins, Rbp1 and Rbp4, and the 13,14-dihydroretinol saturase, Retsat. It also expressed all Rar and Rxr isotypes, Crabp1&amp;2, the three Cyp26 genes, and both β-carotene-cleaving genes, Bcmo1 and Bco2. The basal expression levels and retinol responsiveness of 25 pathway-related genes were quantitated by RT-qPCR. A test of the Aldh1a2 inhibitor, citral, showed that the disruption of the pathway was easily detected and quantitated showing that the P19 cell provides an in vitro model system for identifying and exploring the mechanism of action of chemicals that interfere with this critical cellular pathway."	"Prenatal development of central rhythm generation. Foetal breathing in mice results from prenatal activity of the two coupled hindbrain oscillators considered to be responsible for respiratory rhythm generation after birth: the pre-Bötzinger complex (preBötC) is active shortly before the onset of foetal breathing; the parafacial respiratory group (e-pF in embryo) starts activity one day earlier. Transcription factors have been identified that are essential to specify neural progenitors and lineages forming each of these oscillators during early development of the neural tube: Hoxa1, Egr2 (Krox20), Phox2b, Lbx1 and Atoh1 for the e-pF; Dbx1 and Evx1 for the preBötC which eventually grow contralateral axons requiring expression of Robo3. Inactivation of the genes encoding these factors leads to mis-specification of these neurons and distinct breathing abnormalities: apneic patterns and loss of central chemosensitivity for the e-pF (central congenital hypoventilation syndrome, CCHS, in humans), complete loss of breathing for the preBötC, right-left desynchronized breathing in Robo3 mutants. Mutations affecting development in more rostral (pontine) respiratory territories change the shape of the inspiratory drive without affecting the rhythm. Other (primordial) embryonic oscillators start in the mouse three days before the e-pF, to generate low frequency (LF) rhythms that are probably required for activity-dependent development of neurones at embryonic stages; in the foetus, however, they are actively silenced to avoid detrimental interaction with the on-going respiratory rhythm. Altogether, these observations provide a strong support to the previously proposed hypothesis that the functional organization of the respiratory generator is specified at early stages of development and is dual in nature, comprising two serially non-homologous oscillators."	"Horizontal gaze palsy and progressive scoliosis without ROBO3 mutations. To describe clinical and genetic observations in a patient with horizontal gaze palsy and progressive scoliosis (HGPPS) without identified mutations in the ROBO3 gene. Neurologic and orthopedic evaluation of the proband; sequencing all exons, exon-intron boundaries, and promoter region of ROBO3 in the proband and his mother. Array CGH was also carried out in the proband and his mother to evaluate possible chromosomal deletion(s) and/or duplication(s). The proband had complete horizontal gaze restriction with full vertical gaze and small amplitude horizontal pendular nystagmus. He also had severe scoliosis and brainstem hypoplasia pathognomonic of HGPPS. However, complete sequencing of ROBO3 twice in both forward and reverse directions did not reveal any mutations. Array CGH investigation revealed no chromosomal abnormalities. This patient had clinical and neuroimaging characteristics considered pathognomonic of HGPPS and yet did not have ROBO3 mutations. A clinical misdiagnosis is unlikely in the absence of facial weakness (typical of Moebius syndrome), deafness (typical of the HOXA1 spectrum), or mental retardation (typical of other central decussation abnormalities). It is perhaps more likely that a phenotype identical to HGPPS can be caused by abnormalities in ROBO3 splice variant expression, by mutations of a gene other than ROBO3, or by some environmental or epigenetic factor(s) inhibiting the action of ROBO3 or its protein product in the developing brainstem."	"Hox and Pbx factors control retinoic acid synthesis during hindbrain segmentation. In vertebrate embryos, retinoic acid (RA) synthesized in the mesoderm by Raldh2 emanates to the hindbrain neuroepithelium, where it induces anteroposterior (AP)-restricted Hox expression patterns and rhombomere segmentation. However, how appropriate spatiotemporal RA activity is generated in the hindbrain is poorly understood. By analyzing Pbx1/Pbx2 and Hoxa1/Pbx1 null mice, we found that Raldh2 is itself under the transcriptional control of these factors and that the resulting RA-deficient phenotypes can be partially rescued by exogenous RA. Hoxa1-Pbx1/2-Meis2 directly binds a specific regulatory element that is required to maintain normal Raldh2 expression levels in vivo. Mesoderm-specific Xhoxa1 and Xpbx1b knockdowns in Xenopus embryos also result in Xraldh2 downregulation and hindbrain defects similar to mouse mutants, demonstrating conservation of this Hox-Pbx-dependent regulatory pathway. These findings reveal a feed-forward mechanism linking Hox-Pbx-dependent RA synthesis during early axial patterning with the establishment of spatially restricted Hox-Pbx activity in the developing hindbrain."	"DNA methylation profile during multistage progression of pulmonary adenocarcinomas. Multiple genetic and epigenetic alterations are known to be involved in the carcinogenesis of peripheral pulmonary adenocarcinoma (ADC). However, epigenetic abnormalities have not been extensively investigated in the following multistage progression sequence: atypical adenomatous hyperplasia (AAH) to adenocarcinoma in situ (AIS), to invasive ADC. To determine the potential role of promoter methylation during ADC development of the lung, we examined methylation status in 20 normal, 20 AAH, 30 AIS, and 60 ADC lung tissues and compared methylation status among the lesions. The MethyLight assay was used to determine the methylation status of 18 CpG island loci, which were hypermethylated in ADC compared to noncancerous lung tissues. The mean number of methylated CpG island loci was significantly higher in ADC than in AAH and AIS, (p &lt; 0.003 between ADC and AAH, p &lt; 0.005 between ADC and AIS). Aberrant methylation of HOXA1, TMEFF2, and RARB was frequently observed in preinvasive lesions, including AAH and AIS. Furthermore, methylation of PENK, BCL2, RUNX3, DLEC1, MT1G, GRIN2B, CDH13, CCND2, and HOXA10 was significantly more frequent in invasive ADC than AAH or AIS. Our results indicate that epigenetic alterations are involved in the multistep progression of pulmonary ADC development, and aberrant CpG island methylation accumulates during multistep carcinogenesis. In addition, aberrant methylation of HOXA1, TMEFF2, and RARB occurred in preinvasive lesions, which indicates that epigenetic alterations of these genes are involved in the early stages of pulmonary ADC development. In contrast, hypermethylation of PENK, BCL2, RUNX3, DLEC1, MT1G, GRIN2B, CDH13, CCND2, and HOXA10 was more frequent in invasive ADC than in preinvasive lesions, which indicates that methylation of these genes occurs later during tumor invasion in the AAH-AIS-ADC sequence."	"Anterior Hox genes interact with components of the neural crest specification network to induce neural crest fates. Hox genes play a central role in neural crest (NC) patterning particularly in the cranial region of the body. Despite evidence that simultaneous loss of Hoxa1 and Hoxb1 function resulted in NC specification defects, the role of Hox genes in NC specification has remained unclear due to extended genetic redundancy among Hox genes. To circumvent this problem, we expressed anterior Hox genes in the trunk neural tube of the developing chick embryo. This demonstrated that anterior Hox genes play a central role in NC cell specification by rapidly inducing the key transcription factors Snail2 and Msx1/2 and a neural progenitor to NC cell fate switch characterized by cell adhesion changes and an epithelial-to-mesenchymal transition (EMT). Cells delaminated from dorsal and medial neural tube levels and generated ectopic neurons, glia progenitors, and melanocytes. The mobilization of the NC genetic cascade was dependent upon bone morphogenetic protein signaling and optimal levels of Notch signaling. Therefore, anterior Hox patterning genes participate in NC specification and EMT by interacting with NC-inducing signaling pathways and regulating the expression of key genes involved in these processes."	"Hox genes define distinct progenitor sub-domains within the second heart field. Much of the heart, including the atria, right ventricle and outflow tract (OFT) is derived from a progenitor cell population termed the second heart field (SHF) that contributes progressively to the embryonic heart during cardiac looping. Several studies have revealed anterior-posterior patterning of the SHF, since the anterior region (anterior heart field) contributes to right ventricular and OFT myocardium whereas the posterior region gives rise to the atria. We have previously shown that Retinoic Acid (RA) signal participates to this patterning. We now show that Hoxb1, Hoxa1, and Hoxa3, as downstream RA targets, are expressed in distinct sub-domains within the SHF. Our genetic lineage tracing analysis revealed that Hoxb1, Hoxa1 and Hoxa3-expressing cardiac progenitor cells contribute to both atria and the inferior wall of the OFT, which subsequently gives rise to myocardium at the base of pulmonary trunk. By contrast to Hoxb1(Cre), the contribution of Hoxa1-enhIII-Cre and Hoxa3(Cre)-labeled cells is restricted to the distal regions of the OFT suggesting that proximo-distal patterning of the OFT is related to SHF sub-domains characterized by combinatorial Hox genes expression. Manipulation of RA signaling pathways showed that RA is required for the correct deployment of Hox-expressing SHF cells. This report provides new insights into the regulatory gene network in SHF cells contributing to the atria and sub-pulmonary myocardium."	"Promoter CpG island hypermethylation during breast cancer progression. This study was designed to evaluate the changes in promoter CpG islands hypermethylation during breast cancer progression from pre-invasive lesions [flat epithelial atypia (FEA), atypical ductal hyperplasia (ADH), and ductal carcinoma in situ (DCIS)] to invasive ductal carcinoma (IDC). We performed MethyLight analysis for the methylation status of 57 promoter CpG island loci in 20 IDCs and their paired normal breast tissues. After selecting 15 CpG island loci showing breast cancer-specific DNA methylation, another set of normal breast tissue (n = 10), ADH/FEA (n = 30), DCIS (n = 35), and IDC (n = 30) of the breast were analyzed for these loci. We found six new methylation markers of breast cancer, namely DLEC1, GRIN2B, HOXA1, MT1G, SFRP4, and TMEFF2, in addition to APC, GSTP1, HOXA10, IGF2, RARB, RASSF1A, RUNX3, SCGB3A1 (HIN-1), and SFRP1. The number of methylated genes increased stepwise from normal breast to ADH/FEA and DCIS, while IDC did not differ from DCIS. Methylation levels and frequencies of APC, DLEC1, HOXA1, and RASSF1A promoter CpG islands were significantly higher in ADH/FEA than in normal breast tissue. GRIN2B, GSTP1, HOXA1, RARB, RUNX3, SFRP1, and TMEFF2 showed higher methylation levels and frequencies in DCIS than in ADH/FEA. DICS and IDC did not differ in the methylation levels or frequencies for most CpG island loci except SFRP1 and HOXA10. Our findings showed that promoter CpG island methylation changed significantly in pre-invasive lesions, and was similar in IDC and DCIS, suggesting that CpG island methylation of tumor-related genes is an early event in breast cancer progression."	"Epigenomic reorganization of the clustered Hox genes in embryonic stem cells induced by retinoic acid. Retinoic acid (RA) regulates clustered Hox gene expression during embryogenesis and is required to establish the anterior-posterior body plan. Using mutant embryonic stem cell lines deficient in the RA receptor γ (RARγ) or Hoxa1 3'-RA-responsive element, we studied the kinetics of transcriptional and epigenomic patterning responses to RA. RARγ is essential for RA-induced Hox transcriptional activation, and deletion of its binding site in the Hoxa1 enhancer attenuates transcriptional and epigenomic activation of both Hoxa and Hoxb gene clusters. The kinetics of epigenomic reorganization demonstrate that complete erasure of the polycomb repressive mark H3K27me3 is not necessary to initiate Hox transcription. RARγ is not required to establish the bivalent character of Hox clusters, but RA/RARγ signaling is necessary to erase H3K27me3 from activated Hox genes during embryonic stem cell differentiation. Highly coordinated, long range epigenetic Hox cluster reorganization is closely linked to transcriptional activation and is triggered by RARγ located at the Hoxa1 3'-RA-responsive element."	"Digital gene expression tag profiling of bat digits provides robust candidates contributing to wing formation. As the only truly flying mammals, bats use their unique wing - consisting of four elongated digits (digits II-V) connected by membranes - to power their flight. In addition to the elongated digits II-V, the forelimb contains one shorter digit (digit I) that is morphologically similar to the hindlimb digits. Here, we capitalized on the morphological variation among the bat forelimb digits to investigate the molecular mechanisms underlying digit elongation and wing formation. Using next generation sequencing technology, we performed digital gene expression tag profiling (DGE-tag profiling) of developing digits in a pooled sample of two Myotis ricketti and validated our sequencing results using real-time quantitative PCR (RT-qPCR) of gene expression in the developing digits of two Hipposideros armiger. Among hundreds of genes exhibiting significant differences in expression between the short and long digits, we highlight 14 genes most related to digit elongation. These genes include two Tbx genes (Tbx3 and Tbx15), five BMP pathway genes (Bmp3, RGMB, Smad1, Smad4 and Nog), four Homeobox genes (Hoxd8, Hoxd9, Hoxa1 and Satb1), and three other genes (Twist1, Tmeff2 and Enpp2) related to digit malformations or cell proliferation. In addition, our results suggest that Tbx4 and Pitx2 contribute to the morphological similarity and five genes (Acta1, Tnnc2, Atp2a1, Hrc and Myoz1) contribute to the functional similarity between the thumb and hindlimb digits. Results of this study not only implicate many developmental genes as robust candidates underlying digit elongation and wing formation in bats, but also provide a better understanding of the genes involved in autopodial development in general."	"Retinoic acid-dependent establishment of positional information in the hindbrain was conserved during vertebrate evolution. Zebrafish hoxb1b is expressed during epiboly in the posterior neural plate, with its anterior boundary at the prospective r4 region providing a positional cue for hindbrain formation. A similar function and expression is known for Hoxa1 in mice, suggesting a shared regulatory mechanism for hindbrain patterning in vertebrate embryos. To understand the evolution of the regulatory mechanisms of key genes in patterning of the central nervous system, we examined how hoxb1b transcription is regulated in zebrafish embryos and compared the regulatory mechanisms between mammals and teleosts that have undergone an additional genome duplication. By promoter analysis, we found that the expression of the reporter gene recapitulated hoxb1b expression when driven in transgenic embryos by a combination of the upstream 8.0-kb DNA and downstream 4.6-kb DNA. Furthermore, reporter expression expanded anteriorly when transgenic embryos were exposed to retinoic acid (RA) or LiCl, or injected with fgf3/8 mRNA, implicating the flanking DNA examined here in the responsiveness of hoxb1b to posteriorizing signals. We further identified at least two functional RA responsive elements in the downstream DNA that were shown to be major regulators of early hoxb1b expression during gastrulation, while the upstream DNA, which harbors repetitive sequences with apparent similarity to the autoregulatory sequence of mouse Hoxb1, contributed only to later hoxb1b expression, during somitogenesis. Possible implications in vertebrate evolution are discussed based on these findings."	"Retinoids regulate stem cell differentiation. Retinoids are ubiquitous signaling molecules that influence nearly every cell type, exert profound effects on development, and complement cancer chemotherapeutic regimens. All-trans retinoic acid (RA) and other active retinoids are generated from vitamin A (retinol), but key aspects of the signaling pathways required to produce active retinoids remain unclear. Retinoids generated by one cell type can affect nearby cells, so retinoids also function in intercellular communication. RA induces differentiation primarily by binding to RARs, transcription factors that associate with RXRs and bind RAREs in the nucleus. Binding of RA: (1) initiates changes in interactions of RAR/RXRs with co-repressor and co-activator proteins, activating transcription of primary target genes; (2) alters interactions with proteins that induce epigenetic changes; (3) induces transcription of genes encoding transcription factors and signaling proteins that further modify gene expression (e.g., FOX03A, Hoxa1, Sox9, TRAIL, UBE2D3); and (4) results in alterations in estrogen receptor α signaling. Proteins that bind at or near RAREs include Sin3a, N-CoR1, PRAME, Trim24, NRIP1, Ajuba, Zfp423, and MN1/TEL. Interactions among retinoids, RARs/RXRs, and these proteins explain in part the powerful effects of retinoids on stem cell differentiation. Studies of this retinol signaling cascade enhance our ability to understand and regulate stem cell differentiation for therapeutic and scientific purposes. In cancer chemotherapeutic regimens retinoids can promote tumor cell differentiation and/or induce proteins that sensitize tumors to drug combinations. Mechanistic studies of retinoid signaling continue to suggest novel drug targets and will improve therapeutic strategies for cancer and other diseases, such as immune-mediated inflammatory diseases."	"Candidate gene study of HOXB1 in autism spectrum disorder. HOXB1 plays a major role in brainstem morphogenesis and could partly determine the cranial circumference in conjunction with HOXA1. In our sample, HOXA1 alleles significantly influence head growth rates both in autistic patients and in population controls. An initial report, suggesting that HOXB1 could confer autism vulnerability in interaction with HOXA1, was not confirmed by five small association studies. Our sample includes 269 autistic individuals, belonging to 219 simplex and 28 multiplex families. A mutational analysis of the two exons and flanking intronic sequences of the HOXB1 gene was carried out in 84 autistic patients by denaturing high performance liquid chromatography, followed by DNA sequencing. Identified rare variants were then searched by a restriction analysis in 236 autistic patients and 325-345 controls. Case-control and family-based association studies were performed on two common variants in 169 Italian patients versus 184 Italian controls and in 247 trios. We identified three common polymorphisms, rs72338773 [c.82insACAGCGCCC (INS/nINS)], rs12939811 [c.309A&gt;T (Q103H)], and rs7207109 [c.450G&gt;A (A150A)] and three rare variants, namely IVS1+63G&gt;A, rs35115415 [c.702G&gt;A (V234V)] and c.872_873delinsAA (S291N). SNPs rs72338773 and rs12939811 were not associated with autism, using either a case-control (alleles, exact P = 0.13) or a family-based design [transmission/disequilibrium test (TDT)chi2 = 1.774, P = 0.183]. The rare variants, all inherited from one of the parents, were present in two Italian and in two Caucasian-American families. Autistic probands in two families surprisingly inherited a distinct rare variant from each parent. The IVS1+63A allele was present in 3/690 control chromosomes, whereas rare alleles at rs35115415 and c.872_873delinsAA (S291N) were not found in 662 and 650 control chromosomes, respectively. The INS-T309 allele influenced head size, but its effect appears more modest and shows no interaction with HOXA1 alleles. The INS-T309 allele is also associated with more severe stereotypic behaviours, according to ADI-R scores (N = 60 patients, P &lt; 0.01). HOXB1 mutations do not represent a common cause of autism, nor do HOXB1 common variants play important roles in autism vulnerability. HOXB1 provides minor, albeit detectable contributions to head circumference in autistic patients, with HOXA1 displaying more prominent effects. HOXB1 variants may modulate the clinical phenotype, especially in the area of stereotypic behaviours."	"MicroRNA-10a regulation of proinflammatory phenotype in athero-susceptible endothelium in vivo and in vitro. A chronic proinflammatory state precedes pathological change in arterial endothelial cells located within regions of susceptibility to atherosclerosis. The potential contributions of regulatory microRNAs to this disequilibrium were investigated by artery site-specific profiling in normal adult swine. Expression of endothelial microRNA10a (miR-10a) was lower in the athero-susceptible regions of the inner aortic arch and aorto-renal branches than elsewhere. Expression of Homeobox A1 (HOXA1), a known miR-10a target, was up-regulated in the same locations. Endothelial transcriptome microarray analysis of miR-10a knockdown in cultured human aortic endothelial cells (HAEC) identified IkappaB/NF-kappaB-mediated inflammation as the top category of up-regulated biological processes. Phosphorylation of IkappaBalpha, a prerequisite for IkappaBalpha proteolysis and NF-kappaB activation, was significantly up-regulated in miR-10a knockdown HAEC and was accompanied by increased nuclear expression of NF-kappaB p65. The inflammatory biomarkers monocyte chemotactic protein 1 (MCP-1), IL-6, IL-8, vascular cell adhesion molecule 1 (VCAM-1), and E-selectin were elevated following miR-10a knockdown. Conversely, knockin of miR-10a (a conservative 25-fold increase) inhibited the basal expression of VCAM-1 and E-selectin in HAEC. Two key regulators of IkappaBalpha degradation--mitogen-activated kinase kinase kinase 7 (MAP3K7; TAK1) and beta-transducin repeat-containing gene (betaTRC)--contain a highly conserved miR-10a binding site in the 3' UTR. Both molecules were up-regulated by miR-10a knockdown and suppressed by miR-10a knockin, and evidence of direct miR-10a binding to the 3' UTR was demonstrated by luciferase assay. Comparative expression studies of endothelium located in athero-susceptible aortic arch and athero-protected descending thoracic aorta identified significantly up-regulated MAP3K7, betaTRC, phopho-IkappaBalpha, and nuclear p65 expression suggesting that the differential expression of miR-10a contributes to the regulation of proinflammatory endothelial phenotypes in athero-susceptible regions in vivo."	"Conservation of the TGFbeta/Labial homeobox signaling loop in endoderm-derived cells between Drosophila and mammals. Midgut formation in Drosophila melanogaster is dependent upon the integrity of a signaling loop in the endoderm which requires the TGFbeta-related peptide, Decapentaplegic, and the Hox transcription factor, Labial. Interestingly, although Labial-like homeobox genes are present in mammals, their participation in endoderm morphogenesis is not clearly understood. We report the cloning, expression, localization, TGFbeta inducibility, and biochemical properties of the mammalian Labial-like homeobox, HoxA1, in exocrine pancreatic cells that are embryologically derived from the gut endoderm. HoxA1 is expressed in pancreatic cell populations as two alternatively spliced messages, encoding proteins that share their N-terminal domain, but either lack or include the homeobox at the C-terminus. Transcriptional regulatory assays demonstrate that the shared N-terminal domain behaves as a strong transcriptional activator in exocrine pancreatic cells. HoxA1 is an early response gene for TGFbeta(1) in pancreatic epithelial cell populations and HoxA1 protein co-localizes with TGFbeta(1) receptors in the embryonic pancreatic epithelium at a time when exocrine pancreatic morphogenesis occurs (days E16 and E17). These results report a role for HoxA1 in linking TGFbeta-mediated signaling to gene expression in pancreatic epithelial cell populations, thus suggesting a high degree of conservation for a TGFbeta/labial signaling loop in endoderm-derived cells between Drosophila and mammals. and IAP."	"Pentapeptide insertion mutagenesis of the Hoxa1 protein: mapping of transcription activation and DNA-binding regulatory domains. The mode of action of Hoxa1, like that of most Hox proteins, remains poorly characterized. In an effort to identify functional determinants contributing to the activity of Hoxa1 as a transcription factor, we generated 18 pentapeptide insertion mutants of the Hoxa1 protein and we assayed them in transfected cells for their activity on target enhancers from the EphA2 and Hoxb1 genes known to respond to Hoxa1 in the developing hindbrain. Only four mutants displayed a complete loss-of-function. Three of them contained an insertion in the homeodomain of Hoxa1, whereas the fourth loss-of-function mutant harbored an insertion in the very N-terminal end of the protein. Transcription activation assays in yeast further revealed that the integrity of both the N-terminal end and homeodomain is required for Hoxa1-mediated transcriptional activation. Furthermore, an insertion in the serine-threonine-proline rich C-terminal extremity of Hoxa1 induced an increase in activity in mammalian cells as well as in the yeast assay. The C-terminal extremity thus modulates the transcriptional activation capacity of the protein. Finally, electrophoretic mobility shift assays revealed that the N-terminal extremity of the protein also exerts a modulatory influence on DNA binding by Hoxa1-Pbx1a heterodimers."	"Epigenetic regulatory mechanisms distinguish retinoic acid-mediated transcriptional responses in stem cells and fibroblasts. Retinoic acid (RA), a vitamin A metabolite, regulates transcription by binding to RA receptor (RAR) and retinoid X receptor (RXR) heterodimers. This transcriptional response is determined by receptor interactions with transcriptional regulators and chromatin modifying proteins. We compared transcriptional responses of three RA target genes (Hoxa1, Cyp26a1, RARbeta(2)) in primary embryo fibroblasts (mouse embryonic fibroblasts), immortalized fibroblasts (Balb/c3T3), and F9 teratocarcinoma stem cells. Hoxa1 and Cyp26a1 transcripts are not expressed, but RARbeta(2) transcripts are induced by RA in mouse embryonic fibroblasts and Balb/c3T3 cells. Retinoid receptors (RARgamma, RXRalpha), coactivators (pCIP (NCOA3, SRC3)), and p300 and RNA polymerase II are recruited only to the RARbeta(2) RA response element (RARE) in Balb/c3T3, whereas these proteins are recruited to RAREs of all three genes by RA in F9 cells. In F9, RA reduces polycomb (PcG) protein Suz12 and the associated H3K27me3 repressive epigenetic modification at the RAREs of all three genes. In contrast, in Balb/c3T3 cells cultured in the +/-RA, Suz12 is not associated with the Hoxa1, RARbeta(2), and Cyp26a1 RAREs, whereas slow levels of the H3K27me3 mark are seen at these RAREs. Thus, Suz12 is not required for gene repression in the absence of RA. Even though the Hoxa1 RARE and proximal promoter show high levels of H3K9,K14 acetylation in Balb/c3T3, the Hoxa1 gene is not transcriptionally activated by RA. In Balb/c3T3, CpG islands are methylated in the Cyp26a1 promoter region but not in the Hoxa1 promoter or in these promoters in F9 cells. We have delineated the complex mechanisms that control RA-mediated transcription in fibroblasts versus stem cells."	"HOXA1 mutations are not a common cause of Möbius syndrome. The HOXA1-related syndromes result from autosomal-recessive truncating mutations in the homeobox transcription factor, HOXA1. Limited horizontal gaze and sensorineural deafness are the most common features; affected individuals can also have facial weakness, mental retardation, autism, motor disabilities, central hypoventilation, carotid artery, and/or conotruncal heart defects. Möbius syndrome is also phenotypically heterogeneous, with minimal diagnostic criteria of nonprogressive facial weakness and impaired ocular abduction; mental retardation, autism, motor disabilities, additional eye movements restrictions, hearing loss, hypoventilation, and craniofacial, lingual, and limb abnormalities also occur. We asked, given the phenotypic overlap between these syndromes and the variable expressivity of both disorders, whether individuals with Möbius syndrome might harbor mutations in HOXA1. Our results suggest that HOXA1 mutations are not a common cause of sporadic Möbius syndrome in the general population."	"Hoxa1 lineage tracing indicates a direct role for Hoxa1 in the development of the inner ear, the heart, and the third rhombomere. Loss of Hoxa1 function results in severe defects of the brainstem, inner ear, and cranial ganglia in humans and mice as well as cardiovascular abnormalities in humans. Because Hoxa1 is expressed very transiently during an early embryonic stage, it has been difficult to determine whether Hoxa1 plays a direct role in the precursors of the affected organs or if all defects result from indirect effects due to mispatterning of the hindbrain. In this study we use a Hoxa1-IRES-Cre mouse to genetically label the early Hoxa1-expressing cells and determine their contribution to each of the affected organs, allowing us to conclude in which precursor tissue Hoxa1 is expressed. We found Hoxa1 lineage-labeled cells in all tissues expected to be derived from the Hoxa1 domain, such as the facial and abducens nuclei and nerves as well as r4 neural crest cells. In addition, we detected the lineage in derivatives that were not thought to have expressed Hoxa1 during development. In the brainstem, the anterior border of the lineage was found to be in r3, which is more anterior than previously reported. We also observed an interesting pattern of the lineage in the inner ear, namely a strong contribution to the otic epithelium with the exception of sensory patches. Moreover, lineage-labeled cells were detected in the atria and outflow tract of the developing heart. In conclusion, Hoxa1 lineage tracing uncovered new domains of Hoxa1 expression in rhombomere 3, the otic epithelium, and cardiac precursors, suggesting a more direct role for Hoxa1 in development of these tissues than previously believed."	"Integrated gene networks in breast cancer development. Breast cancer is a complex and heterogenous disease. Classical molecular medical approaches cannot fully understand and comprehend its pathogenesis. In this review, the development of new biological markers for the early detection and creation of guided and specific therapy of breast cancer are discussed in light of the rapid advances in the &quot;omics&quot;. Results of cancer research in combination with large-scale methods that examine the expression status of genes and proteins have identified a large number of new biomarkers as well as confirmed the human growth hormone as an important player in the pathogenesis of this disease through its autocrine regulation where it influences the activation of Pax5 and HOXA1 gene networks."	"Leukemogenic transformation by HOXA cluster genes. HOX homeobox genes are important regulators of normal and malignant hematopoiesis. Abdominal-type HOXA genes like HOXA9 are highly leukemogenic. However, little is known about transformation by anterior HOXA genes. Here we performed a comprehensive assessment of the oncogenic potential of every HOXA gene in primary hematopoietic cells. With exception of HOXA2 and HOXA5, all HOXA genes caused a block or delay of hematopoietic differentiation and cooperated with Meis1. No evidence for the alleged tumor-suppressor function of HOXA5 could be found. Whereas all active HOXA genes immortalized mixed granulocytic/monocytic populations, HOXA13 preferentially specified monocytoid development. The anterior HOXA genes HOXA1, HOXA4, and HOXA6 transformed cells, generating permanent cell lines, although they did so less potently than HOXA9. Upon transplantation these lines induced myeloproliferation and acute myeloid leukemia in recipient animals. Kinetic studies with inducible HOX derivatives demonstrated that anterior HOXA genes autonomously contributed to cellular transformation. This function was not mediated by endogenous Hoxa9, which was persistently expressed in cells transformed by anterior HOX genes. In summary our results demonstrate a hitherto unexpected role of anterior HOXA genes in hematopoietic malignancy."	"Bilateral complete labyrinthine aplasia with bilateral internal carotid artery aplasia, developmental delay, and gaze abnormalities: a presumptive case of a rare HOXA1 mutation syndrome. The human HOXA1 mutation syndromes commonly present with abnormalities of the inner ear and ICAs. Previous cases describe varying degrees of hypoplasia or aplasia of the affected structures, often with asymmetric involvement. We present imaging findings documenting complete absence of the ICAs bilaterally with bilateral CLA, which, to our knowledge, has not been previously reported."	"Critical function of AP-2 gamma/TCFAP2C in mouse embryonic germ cell maintenance. Formation of the germ cell lineage involves multiple processes, including repression of somatic differentiation and reacquisition of pluripotency as well as a unique epigenetic constitution. The transcriptional regulator Prdm1 has been identified as a main coordinator of this process, controlling epigenetic modification and gene expression. Here we report on the expression pattern of the transcription factor Tcfap2c, a putative downstream target of Prdm1, during normal mouse embryogenesis and the consequences of its specific loss in primordial germ cells (PGCs) and their derivatives. Tcfap2c is expressed in PGCs from Embryonic Day 7.25 (E 7.25) up to E 12.5, and targeted disruption resulted in sterile animals, both male and female. In the mutant animals, PGCs were specified but were lost around E 8.0. PGCs generated in vitro from embryonic stem cells lacking TCFAP2C displayed induction of Prdm1 and Dppa3. Upregulation of Hoxa1, Hoxb1, and T together with lack of expression of germ cell markers such Nanos3, Dazl, and Mutyh suggested that the somatic gene program is induced in TCFAP2C-deficient PGCs. Repression of TCFAP2C in TCam-2, a human PGC-resembling seminoma cell line, resulted in specific upregulation of HOXA1, HOXB1, MYOD1, and HAND1, indicative of mesodermal differentiation. Expression of genes indicative of ectodermal, endodermal, or extraembryonic differentiation, as well as the finding of no change to epigenetic modifications, suggested control by other factors. Our results implicate Tcfap2c as an important effector of Prdm1 activity that is required for PGC maintenance, most likely mediating Prdm1-induced suppression of mesodermal differentiation."	"CpG island hypermethylation and repetitive DNA hypomethylation in premalignant lesion of extrahepatic cholangiocarcinoma. Biliary intraepithelial neoplasia (BilIN) is the premalignant lesion of extrahepatic cholangiocarcinoma (EHC), and there are no published data regarding epigenetic changes throughout disease progression from normal biliary epithelia to BilIN to EHC. The objective of this study was to identify the occurrence of CpG island hypermethylation and repetitive DNA hypomethylation in BilIN. A total of 50 EHCs, 31 BilINs, and 31 normal cystic duct samples were analyzed for their methylation status in seven genes and two repetitive DNA elements. The number of methylated genes increased with disease progression (normal bile duct, 0.6; BilIN, 2.0; EHC, 3.6; P &lt; 0.001). The methylation level of examined genes was significantly higher in BilIN than in normal samples (TMEFF2, HOXA1, NEUROG1, and RUNX3, P &lt; 0.05) and in EHC than in BilIN samples (TMEFF2, HOXA1, NEUROG1, RUNX3, RASSF1A, and APC, P &lt; 0.05). Long interspersed nucleotide element-1 (LINE-1) and juxtacentromeric satellite 2 (SAT2) methylation levels were markedly lower in EHC than in normal duct and BilIN samples, and BilIN samples showed a decrease of SAT2 methylation levels but no decrease of LINE-1 methylation levels compared to normal samples. These findings suggest that most of cancer-specific CpG island hypermethylation occur in the stage of BilIN and that CpG island hypermethylation seems to occur earlier than repetitive DNA element hypomethylation."	"Genes related to sex steroids, neural growth, and social-emotional behavior are associated with autistic traits, empathy, and Asperger syndrome. Genetic studies of autism spectrum conditions (ASC) have mostly focused on the &quot;low functioning&quot; severe clinical subgroup, treating it as a rare disorder. However, ASC is now thought to be relatively common ( approximately 1%), and representing one end of a quasi-normal distribution of autistic traits in the general population. Here we report a study of common genetic variation in candidate genes associated with autistic traits and Asperger syndrome (AS). We tested single nucleotide polymorphisms in 68 candidate genes in three functional groups (sex steroid synthesis/transport, neural connectivity, and social-emotional responsivity) in two experiments. These were (a) an association study of relevant behavioral traits (the Empathy Quotient (EQ), the Autism Spectrum Quotient (AQ)) in a population sample (n=349); and (b) a case-control association study on a sample of people with AS, a &quot;high-functioning&quot; subgroup of ASC (n=174). 27 genes showed a nominally significant association with autistic traits and/or ASC diagnosis. Of these, 19 genes showed nominally significant association with AQ/EQ. In the sex steroid group, this included ESR2 and CYP11B1. In the neural connectivity group, this included HOXA1, NTRK1, and NLGN4X. In the socio-responsivity behavior group, this included MAOB, AVPR1B, and WFS1. Fourteen genes showed nominally significant association with AS. In the sex steroid group, this included CYP17A1 and CYP19A1. In the socio-emotional behavior group, this included OXT. Six genes were nominally associated in both experiments, providing a partial replication. Eleven genes survived family wise error rate (FWER) correction using permutations across both experiments, which is greater than would be expected by chance. CYP11B1 and NTRK1 emerged as significantly associated genes in both experiments, after FWER correction (P&lt;0.05). This is the first candidate-gene association study of AS and of autistic traits. The most promising candidate genes require independent replication and fine mapping."	"Synergistic divergence: a distinct ocular motility dysinnervation pattern. To summarize the clinical, neuroradiologic, and genetic observations in a group of patients with unilateral synergistic divergence (SD). Five unrelated patients with unilateral SD underwent ophthalmic and orthoptic examinations; three of them also had magnetic resonance imaging of the brain and orbits. Three patients underwent genetic evaluation of genes known to affect ocular motility: KIF21A, PHOX2A, HOXA1, and ROBO3. The patients did not meet the clinical criteria for CFEOM types 1, 2, or 3. Each patient had severe adduction weakness on the affected side and large-angle exotropia in primary gaze that increased on attempted contralateral gaze because of anomalous abduction. Magnetic resonance imaging revealed a much smaller medial rectus muscle in the involved SD orbit. Oculomotor cranial nerves were present in the one patient imaged appropriately. Genetic sequencing in three patients revealed no mutations in KIF21A, PHOX2A, HOXA1, or ROBO3. SD should be classified as a distinct congenital ocular motility pattern within congenital cranial dysinnervation disorders. It may be caused by denervation of the medial rectus with dysinnervation of the ipsilateral lateral rectus by the oculomotor nerve precipitated by genetic abnormalities (some currently identified) or by local environmental, teratogenic, or epigenetic disturbances."	"MicroRNA expression profiles and miR-10a target in anti-benzo[a] pyrene-7, 8-diol-9, 10-epoxide-transformed human 16HBE cells. To screen miRNA profiles of malignantly transformed human bronchial epithelial cells, 16HBE-T, induced by anti-benzo[a]pyrene-trans-7,8-diol-9,10-epoxide (anti-BPDE), and to analyze putative miR-10a targets in 16HBE-T. A novel microarray platform was employed to screen miRNA profiles of 16HBE-T cells transformed by anti-BPDE. Microarray data for miR-10a and miR-320 were validated using quantitative real time polymerase chain reaction (QRT-PCR). The expression of a putative target for miR-10a, HOXA1, was analyzed by reverse transcription polymerase chain reaction (RT-PCR) and QRT-PCR. In comparison with the vehicle-treated cells (16HBE-N), 16HBE-T exhibited differential expression of 54 miRNAs, in which, 45 were over-expressed and 9 were down-regulated. The five most highly expressed miRNAs were miR-494, miR-320, miR-498, miR-129, and miR-106a. The lowest expressed miRNAs were miR-10a, miR-493-5p, and miR-363*. Three members of miR-17-92 cluster, miR-17-5p, miR-20a, and miR-92, showed significantly higher abundance in 16BHE-T as miR-21, miR-141, miR-27a, miR-27b, miR-16 and miRNAs of the let-7 family. The putative target for miR-10a, HOXA1 mRNA was up-regulated 3-9-fold in 16HBE-T, as compared with 16HBE-N. The findings of the study provide information on differentially expressed miRNA in malignant 16HBE-T, and also suggest a potential role of these miRNAs in cell transformation induced by anti-BPDE. HOXA1 is similarly up-regulated, suggesting that miR-10a is associated with the process of HOXA 1-mediated transformation."	"Thrombin and interleukin-1beta decrease HOX gene expression in human first trimester decidual cells: implications for pregnancy loss. Bleeding or inflammation in early pregnancy may result in pregnancy loss or defective implantation. Their effect on HOX gene expression in first trimester decidua is unknown. Bleeding results in thrombin generation, although infection or inflammation results in production of cytokines typified by Interleukin-1beta (IL-1beta). First trimester decidual cells were pretreated with 17beta estradiol (E(2)), medroxyprogesterone acetate (MPA) or both and subsequently treated with thrombin or IL-1beta. Affymetrix microarray analysis was used to assess the expression of all HOX genes and confirmed using real-time RT-PCR. E(2) or MPA treatment resulted in significant increases in HOXA10 and HOXA11. Subsequent treatment with thrombin resulted in diminished expression of HOXA10 and HOXA9. Treatment with IL-1beta resulted in decreased expression of HOXA1, 3, 9, 10 and 11. HOXA10 expression was reduced by 70% after thrombin treatment (P = 0.018) and by 90% after IL-1beta treatment (P = 0.004). HOXA11 mRNA expression was decreased by 88% after IL-1beta treatment (P &lt; 0.001), but not by thrombin treatment. Decidua was collected at the time of elective termination of pregnancy (n = 10) or surgical treatment of spontaneous pregnancy loss (n = 10). Real-time PCR and western analysis demonstrated decreased HOXA10 and HOXA11 RNA and protein expression in the decidua of spontaneous pregnancy loss compared with that of viable pregnancies. In conclusion, multiple HOX genes are expressed in decidual cells and inhibited by thrombin and IL-1beta. Since HOXA10 and HOXA11 are known to be necessary for successful pregnancy, these findings suggest a molecular mechanism by which bleeding or inflammation may affect pregnancy outcome."	"A myelopoiesis-associated regulatory intergenic noncoding RNA transcript within the human HOXA cluster. We have identified an intergenic transcriptional activity that is located between the human HOXA1 and HOXA2 genes, shows myeloid-specific expression, and is up-regulated during granulocytic differentiation. The novel gene, termed HOTAIRM1 (HOX antisense intergenic RNA myeloid 1), is transcribed antisense to the HOXA genes and originates from the same CpG island that embeds the start site of HOXA1. The transcript appears to be a noncoding RNA containing no long open-reading frame; sucrose gradient analysis shows no association with polyribosomal fractions. HOTAIRM1 is the most prominent intergenic transcript expressed and up-regulated during induced granulocytic differentiation of NB4 promyelocytic leukemia and normal human hematopoietic cells; its expression is specific to the myeloid lineage. Its induction during retinoic acid (RA)-driven granulocytic differentiation is through RA receptor and may depend on the expression of myeloid cell development factors targeted by RA signaling. Knockdown of HOTAIRM1 quantitatively blunted RA-induced expression of HOXA1 and HOXA4 during the myeloid differentiation of NB4 cells, and selectively attenuated induction of transcripts for the myeloid differentiation genes CD11b and CD18, but did not noticeably impact the more distal HOXA genes. These findings suggest that HOTAIRM1 plays a role in the myelopoiesis through modulation of gene expression in the HOXA cluster."	"Identification and characterization of a novel nuclear protein complex involved in nuclear hormone receptor-mediated gene regulation. NRC/NCoA6 plays an important role in mediating the effects of ligand-bound nuclear hormone receptors as well as other transcription factors. NRC interacting factor 1 (NIF-1) was cloned as a novel factor that interacts in vivo with NRC. Although NIF-1 does not directly interact with nuclear hormone receptors, it enhances activation by nuclear hormone receptors presumably through its interaction with NRC. To further understand the cellular and biological function of NIF-1, we identified NIF-1-associated proteins by in-solution proteolysis followed by mass spectrometry. The identified components revealed factors involved in histone methylation and cell cycle control and include Ash2L, RbBP5, WDR5, HCF-1, DBC-1, and EMSY. Although the NIF-1 complex contains Ash2L, RbBP5, and WDR5, suggesting that the complex might methylate histone H3-Lys-4, we found that the complex contains a H3 methyltransferase activity that modifies a residue other than H3-Lys-4. The identified components form at least two distinctly sized NIF-1 complexes. DBC-1 and EMSY were identified as integral components of an NIF-1 complex of approximately 1.5 MDa and were found to play an important role in the regulation of nuclear receptor-mediated transcription. Stimulation of the Sox9 and HoxA1 genes by retinoic acid receptor-alpha was found to require both DBC-1 and EMSY in addition to NIF-1 for maximal transcriptional activation. Interestingly, NRC was not identified as a component of the NIF-1 complex, suggesting that NIF-1 and NRC do not exist as stable in vitro purified complexes, although the separate NIF-1 and NRC complexes appear to functionally interact in the cell."	"The truncated Hoxa1 protein interacts with Hoxa1 and Pbx1 in stem cells. Hox genes contain a homeobox encoding a 60-amino acid DNA binding sequence. The Hoxa1 gene (Hox1.6, ERA1) encodes two alternatively spliced mRNAs that encode distinct proteins, one with the homeodomain (Hoxa1-993), and another protein lacking this domain (Hoxa1-399). The functions of Hoxa1-399 are unknown. We detected Hoxa1-993 and Hoxa1-399 by immunoprecipitation using Hoxa1 antibodies. To assess whether Hoxa1-399 functions in cellular differentiation, we analyzed Hoxb1, a Hoxa1 target gene. Hoxa1-993 and its cofactor, Pbx1, bind to the Hoxb1 SOct-R3 promoter to transcriptionally activate a luciferase reporter. Results from F9 stem cells that stably express ectopic Hoxa1-399 (the F9-399 line) show that Hoxa1-399 reduces this transcriptional activation. Gel shift assays demonstrate that Hoxa1-399 reduces Hoxa1-993/Pbx1 binding to the Hoxb1 SOct-R3 region. GST pull-down experiments suggest that Hoxa1-399, Hoxa1-993, and Pbx1 form a trimer. However, the F9-399 line exhibits no differences in RA-induced proliferation arrest or endogenous Hoxb1, Pbx1, Hoxa5, Cyp26a1, GATA4, or Meis mRNA levels when compared to F9 wild-type."	"Ethanol exposure induces differential microRNA and target gene expression and teratogenic effects which can be suppressed by folic acid supplementation. microRNAs (miRNAs) play an important role in development and are associated with birth defects. Data are scant on the role of miRNAs in birth defects arising from exposure to environmental factors such as alcohol. In this study, we determined the expression levels of 509 mature miRNAs in fetal mouse brains with or without prenatal ethanol exposure using a miRNA microarray technique, verified by northern blot and PCR. Mouse embryos in culture were used to examine the effect of ethanol treatment on expression of the putative target genes of miR-10a (Hoxa1 and other Hox members) at mRNA and protein level. Open field and Morris water maze tests were also performed at post-natal day 35. Ethanol treatment induced major fetal teratogenesis in mice and caused mental retardation in their offspring, namely lower locomotor activity (P &lt; 0.01) and impaired task acquisition. Of the screened miRNAs, miR-10a, miR-10b, miR-9, miR-145, miR-30a-3p and miR-152 were up-regulated (fold change &gt;1.5) in fetal brains with prenatal ethanol exposure, whereas miR-200a, miR-496, miR-296, miR-30e-5p, miR-362, miR-339, miR-29c and miR-154 were down-regulated (fold change &lt;0.67). Both miR-10a and miR-10b were significantly up-regulated (P &lt; 0.01) in brain after prenatal ethanol exposure. Ethanol treatment also caused major obstruction in the development of cultured embryos, with down-regulated Hoxa1. Co-incubation with folic acid blocked ethanol-induced teratogenesis, with up-regulated Hoxa1 and down-regulated miR-10a (P &lt; 0.01). The study provided new insights into the role of miRNAs and their target genes in the pathogenesis of fetal alcohol syndrome."	"HOXA1 A218G polymorphism is associated with smaller cerebellar volume in healthy humans. The Homeobox A1 (HOXA1) gene plays a critical role during development of the hindbrain in mice. Little is currently known about the relation between this gene and human brain development. The HOXA1 A218G polymorphism has been found to be associated with autism and larger head circumference in autistic patients. Similar effects were revealed also in healthy children but not in adult controls. The aim of this study was to investigate the role of the A218G polymorphism on the hindbrain structure of healthy adults. Healthy persons from two independent groups underwent 3-dimensional high resolution magnetic resonance (MR) exam. Group A was made of 80 persons (27 G allele carriers and 53 non-carriers) and Group B of 72 (26 carriers and 46 non-carriers). Statistical parametric mapping 2 (SPM2) were used to perform voxel-based analysis of the gray matter (GM) of the hindbrain in carriers and non. Significance threshold was set at .05 with small volume correction using a cerebellar mask. In Group A, G carriers exhibited decreased GM volume in the superior posterior and anterior lobe of the cerebellum bilaterally. In Group B, decreased GM volume were found across the entire left cerebellar cortex. These data suggest that the HOXA1 A218G polymorphism may affect cerebellar development in humans."	"Polymorphisms of coding trinucleotide repeats of homeogenes in neurodevelopmental psychiatric disorders. Autism (MIM#209850) and schizophrenia (MIM#181500) are both neurodevelopmental psychiatric disorders characterized by a highly genetic component. Homeogenes and forkhead genes encode transcription factors, which have been involved in brain development and cell differentiation. Thus, they are relevant candidate genes for psychiatric disorders. Genetic studies have reported an association between autism and DLX2, HOXA1, EN2, ARX, and FOXP2 genes whereas only three studies of EN2, OTX2, and FOXP2 were performed on schizophrenia. Interestingly, most of these candidate genes contain trinucleotide repeats coding for polyamino acid stretch in which instability can be the cause of neurodevelopmental disorders. Our goal was to identify variations of coding trinucleotide repeats in schizophrenia, autism, and idiopathic mental retardation. We screened the coding trinucleotide repeats of OTX1, EN1, DLX2, HOXA1, and FOXP2 genes in populations suffering from schizophrenia (247 patients), autism (98 patients), and idiopathic mental retardation (56 patients), and compared them with control populations (112 super controls and 202 healthy controls). Novel deletions and insertions of coding trinucleotide repeats were found in the DLX2, HOXA1, and FOXP2 genes. Most of these variations were detected in controls and no difference in their distribution was observed between patient and control groups. Two different polymorphisms in FOXP2 were, however, found only in autistic patients and the functional consequences of these variations of repeats have to be characterized and correlated to particular clinical features. This study did not identify specific disease risk variants of trinucleotide repeats in OTX1, EN1, DLX2, HOXA1, and FOXP2 candidate genes in neurodevelopmental psychiatric disorders."	"Megakaryocytic expression of miRNA 10a, 17-5p, 20a and 126 in Philadelphia chromosome-negative myeloproliferative neoplasm. Micro RNA (miRNA) are small non-coding RNA molecules which have a post-transcriptional inhibitory regulation function, e.g. in megakaryopoiesis. A characteristic of Philadelphia chromosome-negative myeloproliferative neoplasm (Ph(-) MPN) is the abundance of morphologically aberrant megakaryocytes. Based on previously published in vitro megakaryocytic differentiation assay data, we selected miRNA 10a, 17-5p, 20a and 126 and potential target proteins (HOXA1, RUNX1) for analysis of laser-microdissected bone marrow megakaryocytes from Ph(-) MPN and controls (n=66). Furthermore, we tested a potential influence of cytoreductive treatment on miRNA expression in bone marrow cells during the course of Ph(-) MPN (n=18). In summary, miRNA 17-5p, 20a and 126 are constitutively expressed in Ph(-) MPN megakaryopoiesis while low or absent miRNA 10a appeared to correlate with strong megakaryocytic HOXA1 protein expression. No association to thrombocytosis, JAK2(V617F) mutations or cytoreductive treatment (bone marrow cells) were observed."	"Hoxa1 is required for the retinoic acid-induced differentiation of embryonic stem cells into neurons. The ability of embryonic stem (ES) cells to differentiate into different cell fates has been extensively evaluated, and several protocols exist for the generation of various types of cells from mouse and human ES cells. We used a differentiation protocol that involves embryoid body formation and all-trans-retinoic acid (RA, 5 microM) treatment (EB/5 microM RA) to test the ability of Hoxa1 null ES cells to adopt a neuronal fate. Hoxa1(-/-) ES cells, when treated in this EB/5 microM RA protocol, failed to differentiate along a neural lineage; Hoxa1(-/-) ES cells express severalfold lower levels of many neuronal differentiation markers, including nestin, beta-tubulin III, and MAP2, and conversely, higher levels of endodermal differentiation markers (i.e., Sox17, Col4a1) than wild type (Wt) cells. Reintroduction of exogenous Hoxa1, under the control of the metallothionein I promoter, into Hoxa1(-/-) ES cells restored their capacity to generate neurons. Moreover, overexpression of Sox17, a gene that regulates endodermal differentiation, in Wt ES cells resulted in endodermal differentiation and in a complete abolition of beta-tubulin III expression. Thus, Hoxa1 activity is essential for the neuronal differentiation of ES cells in the presence of all-trans-RA, and Hoxa1 may promote neural differentiation by inhibiting Sox17 expression. Pharmacological manipulation of Hoxa1 levels may provide a method for promoting neuronal differentiation for therapeutic uses. Furthermore, because mutations in the Hoxa1 gene can cause autism spectrum disorder in humans, these data also provide important mechanistic insights into the early developmental processes that may result in this disorder."	"Protein microarray analysis identifies human cellular prion protein interactors. To obtain an insight into the function of cellular prion protein (PrPC), we studied PrPC-interacting proteins (PrPIPs) by analysing a protein microarray. We identified 47 novel PrPIPs by probing an array of 5000 human proteins with recombinant human PrPC spanning amino acid residues 23-231 named PR209. The great majority of 47 PrPIPs were annotated as proteins involved in the recognition of nucleic acids. Coimmunoprecipitation and cell imaging in a transient expression system validated the interaction of PR209 with neuronal PrPIPs, such as FAM64A, HOXA1, PLK3 and MPG. However, the interaction did not generate proteinase K-resistant proteins. KeyMolnet, a bioinformatics tool for analysing molecular interaction on the curated knowledge database, revealed that the complex molecular network of PrPC and PrPIPs has a significant relationship with AKT, JNK and MAPK signalling pathways. Protein microarray is a useful tool for systematic screening and comprehensive profiling of the human PrPC interactome. Because the network of PrPC and interactors involves signalling pathways essential for regulation of cell survival, differentiation, proliferation and apoptosis, these observations suggest a logical hypothesis that dysregulation of the PrPC interactome might induce extensive neurodegeneration in prion diseases."	"The clinical spectrum of homozygous HOXA1 mutations. We describe nine previously unreported individuals from six families who have homozygous mutations of HOXA1 and either the Bosley-Salih-Alorainy syndrome (BSAS) or the Athabascan brainstem dysgenesis syndrome (ABDS). Congenital heart disease was present in four BSAS patients, two of whom had neither deafness nor horizontal gaze restriction, thus raising the possibility that cardiovascular malformations might be a clinically isolated, or relatively isolated, manifestation of homozygous HOXA1 mutations. Two ABDS probands had relatively mild mental retardation. These individuals blur the clinical distinctions between the BSAS and ABDS HOXA1 variants and broaden the phenotype and genotype of the homozygous HOXA1 mutation clinical spectrum."	"A mutation in HOXA2 is responsible for autosomal-recessive microtia in an Iranian family. Microtia, a congenital deformity manifesting as an abnormally shaped or absent external ear, occurs in one out of 8,000-10,000 births. We ascertained a consanguineous Iranian family segregating with autosomal-recessive bilateral microtia, mixed symmetrical severe to profound hearing impairment, and partial cleft palate. Genome-wide linkage analysis localized the responsible gene to chromosome 7p14.3-p15.3 with a maximum multi-point LOD score of 4.17. In this region, homeobox genes from the HOXA cluster were the most interesting candidates. Subsequent DNA sequence analysis of the HOXA1 and HOXA2 homeobox genes from the candidate region identified an interesting HOXA2 homeodomain variant: a change in a highly conserved amino acid (p.Q186K). The variant was not found in 231 Iranian and 109 Belgian control samples. The critical contribution of HoxA2 for auditory-system development has already been shown in mouse models. We built a homology model to predict the effect of this mutation on the structure and DNA-binding activity of the homeodomain by using the program Modeler 8v2. In the model of the mutant homeodomain, the position of the mutant lysine side chain is consistently farther away from a nearby phosphate group; this altered position results in the loss of a hydrogen bond and affects the DNA-binding activity."	"Transcriptional activation of signal transducer and activator of transcription (STAT) 3 and STAT5B partially mediate homeobox A1-stimulated oncogenic transformation of the immortalized human mammary epithelial cell. We have previously demonstrated that the p44/42 MAPK pathway is one pathway involved in homeobox (HOX) A1-stimulated oncogenesis. However, inhibition of MAPK kinase 1 does not completely prevent HOXA1-stimulated oncogenic transformation, suggesting the involvement of additional signal transduction pathways. Here, we report that forced expression of HOXA1 in immortalized human mammary epithelial cells significantly increased levels of signal transducer and activator of transcription (STAT) 3, 5A, and 5B mRNA by transcriptional up-regulation. The protein levels of STAT3 and 5B, but not STAT5A, and protein phosphorylation levels of STAT3 and 5B were significantly increased by forced expression of HOXA1. Forced expression of STAT3 or STAT5B was sufficient to transform oncogenically an immortalized human mammary epithelial cell line. Accordingly, inhibition of STAT3 or STAT5B activity with dominant negative STAT3 or STAT5B abrogated the ability of HOXA1 to stimulate cell proliferation, survival, oncogenic transformation, and generation of large disorganized multiacinar structures in three-dimensional culture. These results suggest that HOXA1 partially mediates oncogenic transformation of the immortalized human mammary epithelial cell through modulation of the STAT3 and STAT5B pathways."	"CYP26A1 knockout embryonic stem cells exhibit reduced differentiation and growth arrest in response to retinoic acid. CYP26A1, a cytochrome P450 enzyme, metabolizes all-trans-retinoic acid (RA) into polar metabolites, e.g. 4-oxo-RA and 4-OH-RA. To determine if altering RA metabolism affects embryonic stem (ES) cell differentiation, we disrupted both alleles of Cyp26a1 by homologous recombination. CYP26a1(-/-) ES cells had a 11.0+/-3.2-fold higher intracellular RA concentration than Wt ES cells after RA treatment for 48 h. RA-treated CYP26A1(-/-) ES cells exhibited 2-3 fold higher mRNA levels of Hoxa1, a primary RA target gene, than Wt ES cells. Despite increased intracellular RA levels, CYP26a1(-/-) ES cells were more resistant than Wt ES cells to RA-induced proliferation arrest. Transcripts for parietal endodermal differentiation markers, including laminin, J6(Hsp 47), and J31(SPARC, osteonectin) were expressed at lower levels in RA-treated CYP26a1(-/-) ES cells, indicating that the lack of CYP26A1 activity inhibits RA-associated differentiation. Microarray analyses revealed that RA-treated CYP26A1(-/-) ES cells exhibited lower mRNA levels than Wt ES cells for genes involved in differentiation, particularly in neural (Epha4, Pmp22, Nrp1, Gap43, Ndn) and smooth muscle differentiation (Madh3, Nrp1, Tagln Calponin, Caldesmon1). In contrast, genes involved in the stress response (e.g. Tlr2, Stk2, Fcgr2b, Bnip3, Pdk1) were expressed at higher levels in CYP26A1(-/-) than in Wt ES cells without RA. Collectively, our results show that CYP26A1 activity regulates intracellular RA levels, cell proliferation, transcriptional regulation of primary RA target genes, and ES cell differentiation to parietal endoderm."	"Components of the CCR4-NOT complex function as nuclear hormone receptor coactivators via association with the NRC-interacting Factor NIF-1. CCR4-NOT is an evolutionarily conserved, multicomponent complex known to be involved in transcription as well as mRNA degradation. Various subunits (e.g. CNOT1 and CNOT7/CAF1) have been reported to be involved in influencing nuclear hormone receptor activities. Here, we show that CCR4/CNOT6 and RCD1/CNOT9, members of the CCR4-NOT complex, potentiate nuclear receptor activity. RCD1 interacts in vivo and in vitro with NIF-1 (NRC-interacting factor), a previously characterized nuclear receptor cotransducer that activates nuclear receptors via its interaction with NRC. As with NIF-1, RCD1 and CCR4 do not directly associate with nuclear receptors; however, they enhance ligand-dependent transcriptional activation by nuclear hormone receptors. CCR4 mediates its effect through the ligand binding domain of nuclear receptors and small interference RNA-mediated silencing of endogenous CCR4 results in a marked decrease in nuclear receptor activation. Furthermore, knockdown of CCR4 results in an attenuated stimulation of RARalpha target genes (e.g. Sox9 and HoxA1) as shown by quantitative PCR assays. The silencing of endogenous NIF-1 also resulted in a comparable decrease in the RAR-mediated induction of both Sox9 and HoxA1. Furthermore, CCR4 associates in vivo with NIF-1. In addition, the CCR4-enhanced transcriptional activation by nuclear receptors is dependent on NIF-1. The small interference RNA-mediated knockdown of NIF-1 blocks the ligand-dependent potentiating effect of CCR4. Our results suggest that CCR4 plays a role in the regulation of certain endogenous RARalpha target genes and that RCD1 and CCR4 might mediate their function through their interaction with NIF-1."	"DNA methylation profiles of gastric carcinoma characterized by quantitative DNA methylation analysis. Transcriptional silencing by CpG island hypermethylation is a potential mechanism for the inactivation of tumor-related genes. Virtually, all types of human cancers show CpG island hypermethylation, and gastric carcinoma (GC) is one of the tumors with a high frequency of aberrant CpG island hypermethylation. In this study, we prescreened DNA methylation of 170 CpG island loci in a training set of 8 paired GC and GC-associated non-neoplastic mucosae (GCN) using MethyLight technology and selected 27 DNA methylation markers showing higher methylation frequency or level in GC than in GCN. These markers were then analyzed in a tester set of 25 paired GC and GCN and 27 chronic gastritis (CG) from non-cancer patients to generate their DNA methylation profiles. We identified 17 novel methylation markers in GC, including SFRP4, SEZ6L, TWIST1, BCL2, KL, TERT, SCGB3A1, IGF2, GRIN2B, SFRP5, DLEC1, HOXA1, CYP1B1, SMAD9, MT1G, NR3C1, and HOXA10. Of the 27 selected CpG island loci, 23 were methylated in GC, GCN, and CG and the remainder four loci (DLEC1, CHFR, CYP1B1, and NR3C1) were only methylated in GC. We found that the number of methylated loci was significantly higher in GC than in GCN or CG and that Helicobacter pylori infection was strongly associated with aberrant CpG island hypermethylation in CG. Hypermethylation was more prevalent in Epstein-Barr virus (EBV)-positive GC than in EBV-negative GC and in diffuse-type GC than in intestinal-type GC. Through our large-scale screening of 170 CpG island loci, we found 17 new DNA methylation markers of GC, which may serve as useful markers that may identify a distinct subset of GC."	"Identification of a panel of sensitive and specific DNA methylation markers for lung adenocarcinoma. Lung cancer is the number one cancer killer of both men and women in the United States. Three quarters of lung cancer patients are diagnosed with regionally or distantly disseminated disease; their 5-year survival is only 15%. DNA hypermethylation at promoter CpG islands shows great promise as a cancer-specific marker that would complement visual lung cancer screening tools such as spiral CT, improving early detection. In lung cancer patients, such hypermethylation is detectable in a variety of samples ranging from tumor material to blood and sputum. To date the penetrance of DNA methylation at any single locus has been too low to provide great clinical sensitivity. We used the real-time PCR-based method MethyLight to examine DNA methylation quantitatively at twenty-eight loci in 51 primary human lung adenocarcinomas, 38 adjacent non-tumor lung samples, and 11 lung samples from non-lung cancer patients. We identified thirteen loci showing significant differential DNA methylation levels between tumor and non-tumor lung; eight of these show highly significant hypermethylation in adenocarcinoma: CDH13, CDKN2A EX2, CDX2, HOXA1, OPCML, RASSF1, SFPR1, and TWIST1 (p-value &lt; 0.0001). Using the current tissue collection and 5-fold cross validation, the four most significant loci (CDKN2A EX2, CDX2, HOXA1 and OPCML) individually distinguish lung adenocarcinoma from non-cancer lung with a sensitivity of 67-86% and specificity of 74-82%. DNA methylation of these loci did not differ significantly based on gender, race, age or tumor stage, indicating their wide applicability as potential lung adenocarcinoma markers. We applied random forests to determine a good classifier based on a subset of our loci and determined that combined use of the same four top markers allows identification of lung cancer tissue from non-lung cancer tissue with 94% sensitivity and 90% specificity. The identification of eight CpG island loci showing highly significant hypermethylation in lung adenocarcinoma provides strong candidates for evaluation in patient remote media such as plasma and sputum. The four most highly ranked loci, CDKN2A EX2, CDX2, HOXA1 and OPCML, which show significant DNA methylation even in stage IA tumor samples, merit further investigation as some of the most promising lung adenocarcinoma markers identified to date."	"DNA methylation in the human cerebral cortex is dynamically regulated throughout the life span and involves differentiated neurons. The role of DNA cytosine methylation, an epigenetic regulator of chromatin structure and function, during normal and pathological brain development and aging remains unclear. Here, we examined by MethyLight PCR the DNA methylation status at 50 loci, encompassing primarily 5' CpG islands of genes related to CNS growth and development, in temporal neocortex of 125 subjects ranging in age from 17 weeks of gestation to 104 years old. Two psychiatric disease cohorts--defined by chronic neurodegeneration (Alzheimer's) or lack thereof (schizophrenia)--were included. A robust and progressive rise in DNA methylation levels across the lifespan was observed for 8/50 loci (GABRA2, GAD1, HOXA1, NEUROD1, NEUROD2, PGR, STK11, SYK) typically in conjunction with declining levels of the corresponding mRNAs. Another 16 loci were defined by a sharp rise in DNA methylation levels within the first few months or years after birth. Disease-associated changes were limited to 2/50 loci in the Alzheimer's cohort, which appeared to reflect an acceleration of the age-related change in normal brain. Additionally, methylation studies on sorted nuclei provided evidence for bidirectional methylation events in cortical neurons during the transition from childhood to advanced age, as reflected by significant increases at 3, and a decrease at 1 of 10 loci. Furthermore, the DNMT3a de novo DNA methyl-transferase was expressed across all ages, including a subset of neurons residing in layers III and V of the mature cortex. Therefore, DNA methylation is dynamically regulated in the human cerebral cortex throughout the lifespan, involves differentiated neurons, and affects a substantial portion of genes predominantly by an age-related increase."	"Clinical characterization of the HOXA1 syndrome BSAS variant. The Bosley-Salih-Alorainy syndrome (BSAS) variant of the congenital human HOXA1 syndrome results from autosomal recessive truncating HOXA1 mutations. We describe the currently recognized spectrum of ocular motility, inner ear malformations, cerebrovascular anomalies, and cognitive function. We examined nine affected individuals from five consanguineous Saudi Arabian families, all of whom harbored the same I75-I76insG homozygous mutation in the HOXA1 gene. Patients underwent complete neurologic, neuro-ophthalmologic, orthoptic, and neuropsychological examinations. Six individuals had CT, and six had MRI of the head. All nine individuals had bilateral Duane retraction syndrome (DRS) type 3, but extent of abduction and adduction varied between eyes and individuals. Eight patients were deaf with the common cavity deformity of the inner ear, while one patient had normal hearing and skull base development. Six had delayed motor milestones, and two had cognitive and behavioral abnormalities meeting Diagnostic and Statistical Manual of Mental Disorders-IV criteria for autism spectrum disorder. MRI of the orbits, extraocular muscles, brainstem, and supratentorial brain appeared normal. All six appropriately studied patients had cerebrovascular malformations ranging from unilateral internal carotid artery hypoplasia to bilateral agenesis. This report extends the Bosley-Salih-Alorainy syndrome phenotype and documents the clinical variability resulting from identical HOXA1 mutations within an isolated ethnic population. Similarities between this syndrome and thalidomide embryopathy suggest that the teratogenic effects of early thalidomide exposure in humans may be due to interaction with the HOX cascade."	"Retinoic acid receptor isotype specificity in F9 teratocarcinoma stem cells results from the differential recruitment of coregulators to retinoic response elements. The retinoic acid receptor (RAR) alpha, beta(2), and gamma isotypes each regulate specific subsets of target genes in F9 teratocarcinoma stem cells. We used chromatin immunoprecipitation assays to monitor the association of RARgamma, retinoic X receptor (RXR) alpha, and coregulators with the RARbeta(2), Hoxa1, and Cyp26A1 retinoic acid response elements (RAREs) in F9 wild type and RARalpha, -beta(2), and -gamma null cells. Additionally we quantitatively monitored expression of the corresponding mRNAs. We demonstrated that the association of RARgamma and/or RXRalpha with a RARE was not sufficient for retinoic acid (RA)-mediated transcription of the corresponding target gene. However, the ability of RARgamma and/or RXRalpha to recruit pCIP (AIB1/ACTR/RAC-3/TRAM-1/SRC-3) and p300 to a RARE did correlate with RA-associated transcription of target mRNAs. Therefore, the specific functions of the RAR isotypes do not manifest at the level of their DNA binding but rather from a differential ability to recruit specific components of the transcriptional machinery. We also demonstrated that RA-mediated displacement of the polycomb group protein SUZ12 from a RARE was inhibited in the absence of RARgamma. Thus, transcriptional components of the RAR signaling pathway are specifically required for displacement of SUZ12 from RAREs during RA-mediated differentiation of F9 cells."	"Fgf3 is required for dorsal patterning and morphogenesis of the inner ear epithelium. The inner ear, which contains sensory organs specialized for hearing and balance, develops from an ectodermal placode that invaginates lateral to hindbrain rhombomeres (r) 5-6 to form the otic vesicle. Under the influence of signals from intra- and extraotic sources, the vesicle is molecularly patterned and undergoes morphogenesis and cell-type differentiation to acquire its distinct functional compartments. We show in mouse that Fgf3, which is expressed in the hindbrain from otic induction through endolymphatic duct outgrowth, and in the prospective neurosensory domain of the otic epithelium as morphogenesis initiates, is required for both auditory and vestibular function. We provide new morphologic data on otic dysmorphogenesis in Fgf3 mutants, which show a range of malformations similar to those of Mafb (Kreisler), Hoxa1 and Gbx2 mutants, the most common phenotype being failure of endolymphatic duct and common crus formation, accompanied by epithelial dilatation and reduced cochlear coiling. The malformations have close parallels with those seen in hearing-impaired patients. The morphologic data, together with an analysis of changes in the molecular patterning of Fgf3 mutant otic vesicles, and comparisons with other mutations affecting otic morphogenesis, allow placement of Fgf3 between hindbrain-expressed Hoxa1 and Mafb, and otic vesicle-expressed Gbx2, in the genetic cascade initiated by WNT signaling that leads to dorsal otic patterning and endolymphatic duct formation. Finally, we show that Fgf3 prevents ventral expansion of r5-6 neurectodermal Wnt3a, serving to focus inductive WNT signals on the dorsal otic vesicle and highlighting a new example of cross-talk between the two signaling systems."	"Retinoid regulated association of transcriptional co-regulators and the polycomb group protein SUZ12 with the retinoic acid response elements of Hoxa1, RARbeta(2), and Cyp26A1 in F9 embryonal carcinoma cells. Hox gene expression is activated by all-trans retinoic acid (RA), through binding to retinoic acid receptor-retinoid X receptor (RAR-RXR) heterodimers bound at RA response elements (RAREs) of target genes. The RARs and RXRs each have three isotypes (alpha, beta, and gamma), which are encoded by distinct genes. Hox genes are also repressed by polycomb group proteins (PcG), though how these proteins are targeted is unclear. We used chromatin immunoprecipitation assays to investigate the association of RXRalpha, RARgamma, cofactors, and the PcG protein SUZ12 with the Hoxa1, RARbeta2, and Cyp26A1 RAREs in F9 embryonal carcinoma cells (teratocarcinoma stem cells) during RA treatment. We demonstrate that RARgamma and RXRalpha are associated with RAREs prior to and during RA treatment. pCIP, p300, and RNA polymerase II levels increased at target RAREs upon exposure to RA. Conversely, SUZ12 was found associated with all RAREs studied and these associations were attenuated by treatment with RA. Upon RA removal, SUZ12 re-associated with RAREs. H3ac, H3K4me2, and H3K27me3 marks were simultaneously detected at target loci, indicative of a bivalent domain chromatin structure. During RA mediated differentiation, H3K27me3 levels decreased at target RAREs whereas H3ac and H3K4me2 levels remained constant. These studies provide insight into the dynamics of association of co-regulators with RAREs and demonstrate a novel link between RA signaling and PcG repression."	"Methylation profiles of multiple CpG island loci in extrahepatic cholangiocarcinoma versus those of intrahepatic cholangiocarcinomas. CpG island hypermethylation is attracting attention because of its importance as a tumor marker and its potential mechanism for the development of human cancers. Extrahepatic cholangiocarcinoma has been poorly investigated with respect to CpG island hypermethylation, and the number of genes known to be methylated in extrahepatic cholangiocarcinomas is fewer than 20. To generate methylation profiles of 24 CpG island loci in extrahepatic cholangiocarcinomas, to correlate methylation findings with clinicopathologic findings, and to compare these findings with those of intrahepatic cholangiocarcinomas. Sixty-three extrahepatic cholangiocarcinomas and 48 intrahepatic cholangiocarcinomas were investigated for hypermethylation in 24 CpG island loci by using methylation-specific polymerase chain reaction. A total of 61 (96.8%) of 63 extrahepatic cholangiocarcinomas showed hypermethylation in at least one of the examined loci, and a high methylation frequency was seen in HOXA1 (95.2%), HPP1 (69.8%), and NEUROG1 (61.9%). The number of methylated CpG island loci was greater in extrahepatic cholangiocarcinomas with nodal metastasis than in those without nodal metastasis (P = .047), and hypermethylation of TIG1 was closely associated with nodal metastasis of extrahepatic cholangiocarcinomas (P = .007). CDH1 and NEUROG1 were more frequently methylated in extrahepatic cholangiocarcinoma than in intrahepatic cholangiocarcinoma, whereas CHFR, GSTP1, IGF2, MGMT, MINT31, p14, and RBP1 were more frequently methylated in intrahepatic cholangiocarcinoma: the differences was statistically significant (P &lt; .05). A close relationship exists between CpG island hypermethylation and nodal metastasis of extrahepatic cholangiocarcinomas. Methylation profiles of extrahepatic cholangiocarcinomas are somewhat similar to but distinct from those of intrahepatic cholangiocarcinomas."	"High histone acetylation and decreased polycomb repressive complex 2 member levels regulate gene specific transcriptional changes during early embryonic stem cell differentiation induced by retinoic acid. Histone modifications play a crucial role during embryonic stem (ES) cell differentiation. During differentiation, binding of polycomb repressive complex 2 (PRC2), which mediates trimethylation of lysine 27 on histone H3 (K27me3), is lost on developmental genes that are transcriptionally induced. We observed a global decrease in K27me3 in as little as 3 days after differentiation of mouse ES cells induced by retinoic acid (RA) treatment. The global levels of the histone K27 methyltransferase EZH2 also decreased with RA treatment. A loss of EZH2 binding and K27me3 was observed locally on PRC2 target genes induced after 3 days of RA, including Nestin. In contrast, direct RA-responsive genes that are rapidly induced, such as Hoxa1, showed a loss of EZH2 binding and K27me3 after only a few hours of RA treatment. Following differentiation induced by leukemia inhibitor factor (LIF) withdrawal without RA, Hoxa1 was not transcriptionally activated. Small interfering RNA-mediated knockdown of EZH2 resulted in loss of K27me3 during LIF withdrawal, but the Hoxa1 gene remained transcriptionally silent after loss of this repressive mark. Induction of histone hyperacetylation overrode the repressive K27me3 modification and resulted in Hoxa1 gene expression. Together, these data show that there are multiple temporal phases of derepression of PRC2 target genes during ES cell differentiation and that other epigenetic marks (specifically, increased acetylation of histones H3 and H4), in addition to derepression, are important for gene-specific transcriptional activation. This report demonstrates the temporal interplay of various epigenetic changes in regulating gene expression during early ES cell differentiation."	"Oculomotility disorders arising from disruptions in brainstem motor neuron development. The identification and analysis of pedigrees with rare congenital oculomotility syndromes has led to the definition of the congenital cranial dysinnervation disorders. These disorders appear to result from mutations in genes that are essential to the normal development and/or connectivity of cranial motoneurons. This review highlights the clinical features and genetic etiology of 3 congenital cranial dysinnervation disorders: the human homeobox A1 (HOXA1) syndromes, in which early motoneuron development is disrupted; horizontal gaze palsy with progressive scoliosis, in which there is aberrant axonal targeting onto abducens motoneurons; and congenital fibrosis of the extraocular muscles type 1, in which there is aberrant axonal targeting onto the extraocular muscles."	"Aberrant expression of HOX genes in oral dysplasia and squamous cell carcinoma tissues. Human HOX genes consist of 39 genes and encode transcription factors that function as master developmental regulators. We hypothesized that the misexpression of HOX genes was associated with carcinogenesis and malignant progression. The expression levels of 39 HOX genes in 31 human oral squamous cell carcinoma (SCC), 11 dysplasia, and 10 normal mucosa tissues were quantified by the real-time RT-PCR method. The expression levels of 18 HOX genes in the SCC tissues were significantly higher than those in the normal mucosa tissues. The dysplasia tissues showed higher expression of HOXA2, A3, B3, and D10 than normal mucosa tissues whereas they showed lower expression of HOXA1, B7, B9, and C8 than SCC. The SCC with lymph node metastasis showed high expression of HOXC6 compared to the SCC without it. These results suggest that misexpressions of particular HOX genes are implicated in the development of oral dysplasia and SCC."	"HOXA1-stimulated oncogenicity is mediated by selective upregulation of components of the p44/42 MAP kinase pathway in human mammary carcinoma cells. Expression of homeobox A1 (HOXA1) results in oncogenic transformation of immortalized human mammary epithelial cells with aggressive tumor formation in vivo. However, the mechanisms by which HOXA1 mediates oncogenic transformation is not well defined. To identify molecules that could potentially be involved in HOXA1-mediated oncogenic transformation, microarray analysis was utilized to characterize and compare the gene expression pattern in response to forced expression or depletion of HOXA1 in human mammary carcinoma cells. Gene expression profiling identified that genes involved in the p44/42 mitogen-activated protein (MAP) kinase activation pathway (GRB2, MAP kinase kinase (MEK1) and SDFR1) or p44/42 MAP kinase-regulated genes (IER3, EPAS1, PCNA and catalase) are downstream expression targets of HOXA1. Forced expression of HOXA1 increased GRB2 and MEK1 mRNA and protein expression and increased p44/42 MAP kinase phosphorylation, activity and Elk-1-mediated transcription. Use of a MEK1 inhibitor demonstrated that increased p44/42 MAP kinase activity is required for the HOXA1-mediated increase in cell proliferation, survival, oncogenicity and oncogenic transformation. Thus, modulation of the p44/42 MAP kinase pathway is one mechanism by which HOXA1 mediates oncogenic transformation of the human mammary epithelial cell."	"Two pedigrees segregating Duane's retraction syndrome as a dominant trait map to the DURS2 genetic locus. The genetic bases of Duane's retraction syndrome (DRS) were investigated to determine its molecular etiologies. In prior studies, the transcription factors SALL4 and HOXA1 were identified as the genes mutated in DRS with radial anomalies, and in DRS with deafness, vascular anomalies, and cognitive deficits, respectively. Less is known, however, about the genetic etiology of DRS when it occurs in isolation, and only one genetic locus for isolated DRS, the DURS2 locus on chromosome 2, has been mapped to date. Toward the goal of identifying the DURS2 gene, two pedigrees have been ascertained that segregate DRS as a dominant trait. Members of two large dominant DRS pedigrees were enrolled in an ongoing study of the genetic basis of the congenital cranial dysinnervation disorders, and linkage analysis was conducted to determine whether their DRS phenotype maps to the DURS2 locus. By haplotype analysis, the DRS phenotype in each family cosegregates with markers spanning the DURS2 region. Linkage analysis reveals maximum lod scores &gt;2, establishing that the DRS phenotype in these two pedigrees maps to the DURS2 locus. These two pedigrees double the published pedigrees known to map to the DURS2 locus and can thus contribute toward the search for the DURS2 gene. The affected members represent a genetically defined population of DURS2-linked DRS individuals, and hence studies of their clinical and structural features can enhance understanding of the DURS2 phenotype, as described in the companion paper."	"HOXA1 gene variants influence head growth rates in humans. We previously described a significant association between the HOXA1 G218 allele and increased head circumference in autism [Conciatori et al. (2004); Biol Psychiatry 55:413-419]. The present study reveals identical effects also in normal children. HOXA1 A218G alleles and sex explain as much as 10.9 and 6.8% of the variance in head circumference in 142 pediatric controls and in 191 autistic children, aged 3-16 years (F = 6.777, 3 and 141 df, P &lt; 0.001 and F = 5.588, 3 and 190 df, P &lt; 0.01, respectively). Instead, no association is found in 183 adult controls and in 35 pediatric fragile-X patients. Therefore HOXA1 A218G alleles significantly influence head growth rates, but not final head size, in normal human development. This influence does not differ between normal and autistic children, whereas the lack of FMRP seemingly overwhelms HOXA1 effects in fragile-X patients."	"Lack of association of HOXA1 and HOXB1 variants with autism in the Indian population. NA"	"Enhanced autophagic cell death in expanded polyhistidine variants of HOXA1 reduces PBX1-coupled transcriptional activity and inhibits neuronal differentiation. HOXA1 is a member of the homeobox gene family and is involved in early brain development. In our previous study, we identified novel variants of polyhistidine repeat tract in HOXA1 gene and showed that ectopic expression of expanded variants led to enhanced intranuclear aggregation and accelerated cell death in a time-dependent manner. Here, we further investigate the implications of polyhistidine variants on HOXA1 function. Aside from intranuclear aggregation, we observed cytosolic aggregates during the early stages of expression. Rapamycin, an autophagy inducer, resulted in decreased protein aggregation and cell death. Here, we also show an interaction between variants of HOXA1 and one of the HOX protein known cofactors, PBX1. Expanded HOXA1 variants exhibited reduced PBX1-coupled transcriptional activity through a regulatory enhancer of HOXB1. Moreover, we demonstrate that both deleted and expanded variants inhibited neurite outgrowth in retinoic acid-induced neuronal differentiation in neuroblastoma cells. These results provide further evidence that expanded polyhistidine repeats in HOXA1 enhance aggregation and cell death, resulting in impaired neuronal differentiation and cooperative binding with PBX1."	"Expression of Hoxa2 in rhombomere 4 is regulated by a conserved cross-regulatory mechanism dependent upon Hoxb1. The Hoxa2 gene is an important component of regulatory events during hindbrain segmentation and head development in vertebrates. In this study we have used sequenced comparisons of the Hoxa2 locus from 12 vertebrate species in combination with detailed regulatory analyses in mouse and chicken embryos to characterize the mechanistic basis for the regulation of Hoxa2 in rhombomere (r) 4. A highly conserved region in the Hoxa2 intron functions as an r4 enhancer. In vitro binding studies demonstrate that within the conserved region three bipartite Hox/Pbx binding sites (PH1-PH3) in combination with a single binding site for Pbx-Prep/Meis (PM) heterodimers co-operate to regulate enhancer activity in r4. Mutational analysis reveals that these sites are required for activity of the enhancer, suggesting that the r4 enhancer from Hoxa2 functions in vivo as a Hox-response module in combination with the Hox cofactors, Pbx and Prep/Meis. Furthermore, this r4 enhancer is capable of mediating a response to ectopic HOXB1 expression in the hindbrain. These findings reveal that Hoxa2 is a target gene of Hoxb1 and permit us to develop a gene regulatory network for r4, whereby Hoxa2, along with Hoxb1, Hoxb2 and Hoxa1, is integrated into a series of auto- and cross-regulatory loops between Hox genes. These data highlight the important role played by direct cross-talk between Hox genes in regulating hindbrain patterning."	"Induction of the homeotic gene Hoxa1 through valproic acid's teratogenic mechanism of action. Valproic acid (VPA) exposure in utero has been associated with an increased risk of both neural tube defects and autism spectrum disorders (ASDs). The terata induced by VPA suggest interference with pattern formation. Retinoic acid produces similar terata and is known to act in part by increasing the expression of Hoxa1. We tested the hypotheses that exposure to VPA would alter the expression of Hoxa1 in rat embryos during times of normal Hoxa1 expression (d10.5-13.5) and that exposure at earlier and later stages would induce inappropriate expression. Hoxa1 expression levels were determined by real-time PCR in individual embryos 1 h after exposure on gestational d10, 12, 13, 14, or 15. Additionally, teratogenic (4-yn-VPA) and nonteratogenic analogs of VPA (IE-VPA), retinoic acid (RA), and saline were compared for effects on Hoxa1 expression on d12. Embryos were allowed to develop for 1, 2, 4, 6, or 24 h, to follow the time course of effects. In utero exposure to VPA on gestational d10 and on d12-14 significantly increased the level of Hoxa1 expression compared to saline-exposed embryos at developmental ages prior to, during and after the normal expression period for this gene. On gestational d12, exposures to VPA and 4-yn-VPA significantly increased Hoxa1 expression at all sacrifice times, compared to saline-exposed embryos. RA significantly elevated Hoxa1 expression at all time points except 24-h post-treatment. The nonteratogenic VPA analog, IE-VPA, did not affect Hoxa1 expression. VPA and 4-yn-VPA exposures elevated Hoxa1 mRNA during its normal expression period and induced expression outside of the normal period. This may explain, in part, how VPA disrupts development."	"Reversal of Hox1 gene subfunctionalization in the mouse. In vertebrates, paralogous Hox genes play diverse biological roles. We examined the interchangeability of Hoxa1 and Hoxb1 in mouse development by swapping their protein-coding regions. Remarkably, the mice expressing the Hox-B1 protein from the Hoxa1 locus, and vice versa, are essentially normal. We noted, nonetheless, a specific facial nerve hypomorphism in hemizygous Hoxb1(A1/-) mice and decreased viability in homozygous Hoxa1(B1/B1) embryos. Further, we established a mouse line in which we have inserted the 107 bp Hoxb1 autoregulatory enhancer into the Hoxa1 promoter. Strikingly, the newly generated autoregulatory Hoxa1 gene can deliver the functionality of both paralogs in these mice, providing normal viability as well as proper facial nerve formation even in the Hoxb1 mutant background. This study affirms that subfunctionalization of the transcriptional regulatory elements has a principal role in the diversification of paralogous Hox genes. Moreover, we show that the ancestral vertebrate Hox1 gene can still be experimentally reconstructed."	"cDNA cloning and expression of the human NOBOX gene in oocytes and ovarian follicles. Nobox is a homeobox gene that is preferentially expressed in the oocytes and is essential for folliculogenesis and the regulation of oocyte-specific gene expression in the mouse. The likely human homologue has been identified in silico but has not as yet been confirmed experimentally. Here, we present the first cDNA cloning and transcript expression analysis of the human NOBOX gene. Using RT-PCR, we reveal that expression within adult human tissues is limited to the ovary, testis and pancreas. Expression within the ovary is oocyte specific, with expression observed from the primordial stage ovarian follicle through to the metaphase II (MII) oocyte. In complementary studies, we reveal dynamic expression profiles of 14 additional homeobox genes throughout human oogenesis and early development. The expression of HOXA10 is restricted to primordial and early primary follicles. HOXB7 is expressed from primordial and early primary stage follicles through to germinal vesicle (GV) oocytes. Gastrulation brain homeobox 1 (GBX1) and HOXA7 genes are homeobox markers preferentially expressed by GV oocytes. HOXA1 and HEX are homeobox markers preferentially expressed by MII oocytes. In summary, the homeobox gene transcripts that are detected in ovarian follicles and oocytes are distinct from those expressed in human blastocysts (HOXB4, CDX2 and HOXC9) and granulosa cells (HOXC9, HOXC8, HOXC6, HOXA7, HOXA5 and HOXA4)."	"MicroRNA fingerprints during human megakaryocytopoiesis. microRNAs are a highly conserved class of noncoding RNAs with important regulatory functions in proliferation, apoptosis, development, and differentiation. To discover novel regulatory pathways during megakaryocytic differentiation, we performed microRNA expression profiling of in vitro-differentiated megakaryocytes derived from CD34(+) hematopoietic progenitors. The main finding was down-regulation of miR-10a, miR-126, miR-106, miR-10b, miR-17 and miR-20. Hypothetically, the down-regulation of microRNAs unblocks target genes involved in differentiation. We confirmed in vitro and in vivo that miR-130a targets the transcription factor MAFB, which is involved in the activation of the GPIIB promoter, a key protein for platelet physiology. In addition, we found that miR-10a expression in differentiated megakaryocytes is inverse to that of HOXA1, and we showed that HOXA1 is a direct target of miR-10a. Finally, we compared the microRNA expression of megakaryoblastic leukemic cell lines with that of in vitro differentiated megakaryocytes and CD34(+) progenitors. This analysis revealed up-regulation of miR-101, miR-126, miR-99a, miR-135, and miR-20. Our data delineate the expression of microRNAs during megakaryocytopoiesis and suggest a regulatory role of microRNAs in this process by targeting megakaryocytic transcription factors."	"Ontogeny of central rhythm generation in chicks and rodents. Recent studies help in understanding how the basic organization of brainstem neuronal circuits along the anterior-posterior (AP) axis is set by the Hox-dependent segmentation of the neural tube in vertebrate embryos. Neonatal respiratory abnormalities in Krox20(-/-), Hoxa1(-/-) and kreisler mutant mice indicate the vital role of a para-facial (Krox20-dependent, rhombomere 4-derived) respiratory group, that is distinct from the more caudal rhythm generator called Pre-Bötzinger complex. Embryological studies in the chick suggest homology and conservation of this Krox20-dependent induction of parafacial rhythms in birds and mammals. Calcium imaging in embryo indicate that rhythm generators may derive from different cell lineages within rhombomeres. In mice, the Pre-Bötzinger complex is found to be distinct from oscillators producing the earliest neuronal activity, a primordial low-frequency rhythm. In contrast, in chicks, maturation of the parafacial generator is tightly linked to the evolution of this primordial rhythm. It seems therefore that ontogeny of brainstem rhythm generation involves conserved processes specifying distinct AP domains in the neural tube, followed by diverse, lineage-specific regulations allowing the emergence of organized rhythm generators at a given AP level."	"HOXA1 mutations are not a common cause of Duane anomaly. NA"	"Disordered expression of HOX genes in human non-small cell lung cancer. We hypothesized that the disordered tissue architecture in cancer results from the cells executing the program designed during ontogeny in a spatio-temporally inappropriate manner. HOX genes are known as master regulators of embryonic morphogenesis, and encode transcription factors which regulate the transcription of the downstream genes to realize the program of body plan. In this study, we quantified the expression levels of 39 HOX genes in 41 human non-small cell lung cancer (non-SCLC) and non-cancerous lung tissues by a comprehensive analysis system based on the real-time RT-PCR method. We found that the expression levels of HOXA1, A5, A10 and C6 in squamous cell carcinoma tissues (and HOXA5 and A10 in adenocarcinoma tissues) were significantly higher than those in the non-cancerous tissues. Comparison of HOX gene expressions between adenocarcinoma and squamous cell carcinoma tissues showed higher expressions of HOXA1, D9, D10 and D11 in squamous cell carcinoma tissues than in adenocarcinoma tissues. Immunohistochemical analysis revealed that HOXA5 and A10 proteins were localized in the cytoplasm of tumor cells in both adenocarcinoma and squamous cell carcinoma tissues. These results suggest that the disordered patterns of HOX gene expressions were involved not only in the development of non-SCLC but also in the histologically aberrant diversity such as adenocarcinoma and squamous cell carcinoma."	"The genetic basis of complex strabismus. Members of my research laboratory combine clinical, genetic, and molecular biologic approaches to the study of congenital strabismus. Strabismus, which is misalignment of the eyes, affects 2-4% of the population and causes loss of binocular vision and amblyopia (vision loss in a structurally normal eye). The cause of strabismus when it occurs in the absence of structural brain abnormalities is generally unknown. In the last decade, we have focused our research studies on understanding the genetic etiology of a series of complex strabismus syndromes in which eye movement in at least one direction is limited or paralyzed. We are discovering that these disorders result from mutations in genes necessary for the normal development and connectivity of brainstem ocular motoneurons, including PHOX2A, SALL4, KIF21A, ROBO3, and HOXA1, and we now refer to these syndromes as the &quot;congenital cranial dysinnervation disorders,&quot; or CCDD."	"HOXA1 is required for E-cadherin-dependent anchorage-independent survival of human mammary carcinoma cells. Forced expression of HOXA1 is sufficient to stimulate oncogenic transformation of immortalized human mammary epithelial cells and subsequent tumor formation. We report here that the expression and transcriptional activity of HOXA1 are increased in mammary carcinoma cells at full confluence. This confluence-dependent expression of HOXA1 was abrogated by incubation of cells with EGTA to produce loss of intercellular contact and rescued by extracellular addition of Ca2+. Increased HOXA1 expression at full confluence was prevented by an E-cadherin function-blocking antibody and attachment of non-confluent cells to a substrate by homophilic ligation of E-cadherin increased HOXA1 expression. E-cadherin-directed signaling increased HOXA1 expression through Rac1. Increased HOXA1 expression consequent to E-cadherin-activated signaling decreased apoptotic cell death and was required for E-cadherin-dependent anchorage-independent proliferation of human mammary carcinoma cells. HOXA1 is therefore a downstream effector of E-cadherin-directed signaling required for anchorage-independent proliferation of mammary carcinoma cells."	"Polyhistidine tract expansions in HOXA1 result in intranuclear aggregation and increased cell death. HOXA1 gene is part of a cluster of homeotic selector genes that regulates the anteroposterior patterning of mammals during embryonic development. HOXA1 encodes two alternatively spliced mRNAs with two isoforms, A and B, the former contains the homeodomain and expressed in early embryonic development. HOXA1 contains a string of 10 histidine repeats. However, individuals heterozygous for 7, 9, 11, and 12 histidine repeat variants were present among the Japanese population, notably in some autism cases. To determine the biological implications of the different polyhistidine repeat lengths, we expressed these variants in COS-7 and a human neuroblastoma cell line (SK-N-SH). Expression of expanded variants of HOXA1 isoform A, containing 11 and 12 polyhistidine, resulted in early and great degree of protein aggregation in the nucleus. This aggregation resulted in accelerated cell death in cells expressing 11 and 12 expanded variants compared to those transfected with 7 and 10 polyhistidine variants. Furthermore, we showed that these aggregates were ubiquitinated and were inhibited by a histidine-modifying compound, DEPC. These data suggest that HOXA1 protein with polyhistidine tract expansions misfold, aggregate, and have a toxic effect on cell."	"Homozygous HOXA1 mutations disrupt human brainstem, inner ear, cardiovascular and cognitive development. We identified homozygous truncating mutations in HOXA1 in three genetically isolated human populations. The resulting phenotype includes horizontal gaze abnormalities, deafness, facial weakness, hypoventilation, vascular malformations of the internal carotid arteries and cardiac outflow tract, mental retardation and autism spectrum disorder. This is the first report to our knowledge of viable homozygous truncating mutations in any human HOX gene and of a mendelian disorder resulting from mutations in a human HOX gene critical for development of the central nervous system."	"Knockdown of the complete Hox paralogous group 1 leads to dramatic hindbrain and neural crest defects. The Hox paralogous group 1 (PG1) genes are the first and initially most anterior Hox genes expressed in the embryo. In Xenopus, the three PG1 genes, Hoxa1, Hoxb1 and Hoxd1, are expressed in a widely overlapping domain, which includes the region of the future hindbrain and its associated neural crest. We used morpholinos to achieve a complete knockdown of PG1 function. When Hoxa1, Hoxb1 and Hoxd1 are knocked down in combination, the hindbrain patterning phenotype is more severe than in the single or double knockdowns, indicating a degree of redundancy for these genes. In the triple PG1 knockdown embryos the hindbrain is reduced and lacks segmentation. The patterning of rhombomeres 2 to 7 is lost, with a concurrent posterior expansion of the rhombomere 1 marker, Gbx2. This effect could be via the downregulation of other Hox genes, as we show that PG1 function is necessary for the hindbrain expression of Hox genes from paralogous groups 2 to 4. Furthermore, in the absence of PG1 function, the cranial neural crest is correctly specified but does not migrate into the pharyngeal arches. Embryos with no active PG1 genes have defects in derivatives of the pharyngeal arches and, most strikingly, the gill cartilages are completely missing. These results show that the complete abrogation of PG1 function in Xenopus has a much wider scope of effect than would be predicted from the single and double PG1 knockouts in other organisms."	"Aberrant expression of HOX genes in human invasive breast carcinoma. HOX genes are known not only as master genes that control the morphogenesis, but also as regulator genes that maintain tissue or organ specificity in the adult body. We hypothesized that dysregulated expression of HOX genes was associated with tumor development and malignant progression such as invasion and metastasis. In this study, we analyzed the expression patterns of 39 HOX genes in human invasive ductal breast cancer tissues and normal tissues by the real-time RT-PCR method. We found 11 HOX genes (HOXA1, A2, A3, A5, A9, C11, D3, D4, D8, D9 and D10) expression levels of which were significantly different between cancerous and normal tissues. All 10 genes except HOXC11 were expressed at lower levels in cancerous tissues than normal tissues. Comparing expression levels of each HOX gene among the different types of cancer tissues, the expression level of HOXB7 was lower in lymph node metastasis-positive cancer tissues than negative cancer tissues; those of HOXD12 and D13 were higher in progesterone receptor-positive cancer tissues than negative cancer tissues; and the expression level of HOXC5 was lower in cancerous tissues with mutated-type p53 than in normal and cancerous tissues with wild-type p53. These results suggest that the aberrant expression of HOX genes is related to the development of breast cancer and malignant behavior of cancer cells."	"Differences in gene expression between wild type and Hoxa1 knockout embryonic stem cells after retinoic acid treatment or leukemia inhibitory factor (LIF) removal. Homeobox (Hox) genes encode a family of transcription factors that regulate embryonic patterning and organogenesis. In embryos, alterations of the normal pattern of Hox gene expression result in homeotic transformations and malformations. Disruption of the Hoxa1 gene, the most 3' member of the Hoxa cluster and a retinoic acid (RA) direct target gene, results in abnormal ossification of the skull, hindbrain, and inner ear deficiencies, and neonatal death. We have generated Hoxa1(-/-) embryonic stem (ES) cells (named Hoxa1-15) from Hoxa1(-/-) mutant blastocysts to study the Hoxa1 signaling pathway. We have characterized in detail these Hoxa1(-/-) ES cells by performing microarray analyses, and by this technique we have identified a number of putative Hoxa-1 target genes, including genes involved in bone development (e.g. Col1a1, Postn/Osf2, and the bone sialoprotein gene or BSP), genes that are expressed in the developing brain (e.g. Nnat, Wnt3a, BDNF, RhoB, and Gbx2), and genes involved in various cellular processes (e.g. M-RAS, Sox17, Cdkn2b, LamA1, Col4a1, Foxa2, Foxq1, Klf5, and Igf2). Cell proliferation assays and Northern blot analyses of a number of ES cell markers (e.g. Rex1, Oct3/4, Fgf4, and Bmp4) suggest that the Hoxa1 protein plays a role in the inhibition of cell proliferation by RA in ES cells. Additionally, Hoxa1(-/-) ES cells express high levels of various endodermal markers, including Gata4 and Dab2, and express much less Fgf5 after leukemia inhibitory factor (LIF) withdrawal. Finally, we propose a model in which the Hoxa1 protein mediates repression of endodermal differentiation while promoting expression of ectodermal and mesodermal characteristics."	"MEIS C termini harbor transcriptional activation domains that respond to cell signaling. MEIS proteins form heteromeric DNA-binding complexes with PBX monomers and PBX.HOX heterodimers. We have shown previously that transcriptional activation by PBX.HOX is augmented by either protein kinase A (PKA) or the histone deacetylase inhibitor trichostatin A (TSA). To examine the contribution of MEIS proteins to this response, we used the chromatin immunoprecipitation assay to show that MEIS1 in addition to PBX1, HOXA1, and HOXB1 was recruited to a known PBX.HOX target, the Hoxb1 autoregulatory element following Hoxb1 transcriptional activation in P19 cells. Subsequent to TSA treatment, MEIS1 recruitment lagged behind that of HOX and PBX partners. MEIS1A also enhanced the transcriptional activation of a reporter construct bearing the Hoxb1 autoregulatory element after treatment with TSA. The MEIS1 homeodomain and protein-protein interaction with PBX contributed to this activity. We further mapped TSA-responsive and CREB-binding protein-dependent PKA-responsive transactivation domains to the MEIS1A and MEIS1B C termini. Fine mutation of the 56-residue MEIS1A C terminus revealed four discrete regions required for transcriptional activation function. All of the mutations impairing the response to TSA likewise reduced activation by PKA, implying a common mechanistic basis. C-terminal deletion of MEIS1 impaired transactivation without disrupting DNA binding or complex formation with HOX and PBX. Despite sequence similarity to MEIS and a shared ability to form heteromeric complexes with PBX and HOX partners, the PREP1 C terminus does not respond to TSA or PKA. Thus, MEIS C termini possess transcriptional regulatory domains that respond to cell signaling and confer functional differences between MEIS and PREP proteins."	"Molecular dynamics of the compensatory response to myocardial infarct. Myocardial infarct via occlusion of the left anterior descending coronary in rats caused overriding depression in transcription, signal transduction, inflammation and extracellular matrix pathways in the infarct zone within 24 h. In contrast, remote zone gene expression was reciprocally activated during the immediate post-infarct period. Infarct zone signal transduction occurred primarily through TGFbeta1 induction while the remote zone exhibited elevated WNT, NOTCH, GPCR and transmembrane signaling. A minimal day 1 acute phase, inflammatory response was detected in the infarct zone while interleukins (IL1alpha, IL1beta, IL6, IL12alpha, IL18) and the TNFalpha superfamily were activated in the remote zone. Different cytochrome subsets were activated in each left ventricular region on day 1 while anti-oxidant genes were elevated only in the remote zone. The infarct zone exhibited mixed early transcription factor activation across all binding domains with a balance favoring constitutive gene activation and differentiation pathways as opposed to cell proliferation. In contrast, the remote zone exhibited activation of extensive developmental transcription factors involved in specification of cell phenotype, tissue-specific interactions and position-specific cell proliferation on day 1. The day 28 infarct zone response mirrored the day 1 remote zone response including activation of genes associated with matrix remodeling (metallothionein and metalloproteinase 9, 12, 23), as well as genes associated with cell proliferation and phenotype specification (MYC, EGR2, ATF3, HOXA1) recapitulating developmental histogenesis programs."	"Abnormalities of caudal pharyngeal pouch development in Pbx1 knockout mice mimic loss of Hox3 paralogs. Pbx1 is a TALE-class homeodomain protein that functions in part as a cofactor for Hox class homeodomain proteins. Previous analysis of the in vivo functions of Pbx1 by targeted mutagenesis in mice has revealed roles for this gene in skeletal patterning and development and in the organogenesis of multiple systems. Both RNA expression and protein localization studies have suggested a possible role for Pbx1 in pharyngeal region development. As several Hox mutants have distinct phenotypes in this region, we investigated the potential requirement for Pbx1 in the development of the pharyngeal arches and pouches and their organ derivatives. Pbx1 homozygous mutants exhibited delayed or absent formation of the caudal pharyngeal pouches, and disorganized patterning of the third pharyngeal pouch. Formation of the third pouch-derived thymus/parathyroid primordia was also affected, with absent or hypoplastic primordia, delayed expression of organ-specific differentiation markers, and reduced proliferation of thymic epithelium. The fourth pouch and the fourth pouch-derived ultimobranchial bodies were usually absent. These phenotypes are similar to those previously reported in Hoxa3(-/-) single mutants and Hoxa1(-/-);Hoxb1(-/-) or Hoxa3(+/-);Hoxb3(-/-);Hoxd3(-/-) compound mutants, suggesting that Pbx1 acts together with multiple Hox proteins in the development of the caudal pharyngeal region. However, some aspects of the Pbx1 mutant phenotype included specific defects that were less severe than those found in known Hox mutant mice, suggesting that some functions of Hox proteins in this region are Pbx1-independent."	"Altered expressions of HOX genes in human cutaneous malignant melanoma. HOX genes act as master genes to control morphogenesis. In human, HOX genes form 4 clusters composing 9 to 11 HOX genes (39 genes in total) on different chromosomes. We hypothesized that aberrant expression of HOX genes was associated with development and subsequent progression of melanoma and that the 39 HOX gene expression pattern determined the sites where melanoma grew. The expression levels of 39 HOX genes in 15 human cutaneous melanoma specimens and 7 nevus pigmentosus specimens were quantified by a comprehensive analysis system based on the real-time RT-PCR method. We found that the expression levels of HOXA11, A13, B9, D12 and D13 in melanoma were higher than those in nevus pigmentosus and that the expression levels of HOXA11, B2 and C13 were significantly different between pT4 melanoma and pT1 to pT3 melanoma. It was most notable that the expression levels of HOXA1, A2, C4 and B13 in melanoma with distant metastasis were higher than those in melanoma without it. On the other hand, we found no relationship between HOX genes expression patterns and the growing sites of melanoma. These results indicated that the misexpressions of some specific HOX genes were implicated in melanoma genesis and metastasis but had no linkage with melanoma sites."	"Induction of a parafacial rhythm generator by rhombomere 3 in the chick embryo. Observations of knock-out mice suggest that breathing at birth requires correct development of a specific hindbrain territory corresponding to rhombomeres (r) 3 and 4. Focusing on this territory, we examined the development of a neuronal rhythm generator in the chick embryo. We show that rhythmic activity in r4 is inducible after developmental stage 10 through interaction with r3. Although the nature of this interaction remains obscure, we find that the expression of Krox20, a segmentation gene responsible for specifying r3 and r5, is sufficient to endow other rhombomeres with the capacity to induce rhythmic activity in r4. Induction is robust, because it can be reproduced with r2 and r6 instead of r4 and with any hindbrain territory that normally expresses Krox20 (r3, r5) or can be forced to do so (r1, r4). Interestingly, the interaction between r4 and r3/r5 that results in rhythm production can only take place through the anterior border of r4, revealing a heretofore unsuspected polarity in individual rhombomeres. The r4 rhythm generator appears to be homologous to a murine respiratory parafacial neuronal system developing in r4 under the control of Krox20 and Hoxa1. These results identify a late role for Krox20 at the onset of neurogenesis."	"Hox/Pbx and Brn binding sites mediate Pax3 expression in vitro and in vivo. Pax3 is a paired-homeodomain class transcription factor that serves a role in dorsal-ventral and medial-lateral patterning during vertebrate embryogenesis. Its expression is localized to dorsal domains within the developing neural tube and lateral domains within the developing somite. Additionally, modulation of its expression occurs along the rostral-caudal axis. Previous studies [Development 124 (1997) 617] have localized sequence elements required for expression of Pax3 in the neural tube and neural crest to a 1.6 kbp promoter fragment. In the present study, four discrete DNA elements within the 1.6 kbp promoter fragment are shown by electrophoretic mobility shift assays (EMSA) to exhibit sequence specific interactions with proteins present in nuclear extracts from P19 EC cells induced to express Pax3 by treatment with retinoic acid (RA). Proteins interacting at each of these elements are identified based on biochemical purification using DNA affinity chromatography or a candidate approach. These identifications were confirmed by the ability of specific antibodies to super-shift DNA-protein complexes in EMSA. Two of the four DNA sequence elements are shown to interact with the neural specific Pou-domain class III transcription factors Brn1 and Brn2. The remaining sites contain either consensus binding elements for heterodimers of Pbx and an anterior set of Hox family members, from paralogous groups 1-5, or monomeric Meis and are shown to interact with members of the Pbx and Meis families. Ectopic expression of Brn2 plus HoxA1 but not either factor alone, is sufficient to induce efficient expression from the endogenous Pax3 promoter in P19 EC stem cells under conditions where they would not otherwise express Pax3. Finally, in transgenic mice, mutation of either of the Pou-domain protein binding sites results in reduced expression throughout the neural tube while mutation of the Pbx/Hox binding site results in loss of expression in the anterior domain in which Hox family members from paralogous groups 1-5 are expressed. These observations demonstrate that binding elements for both neural and anterior-posterior position specific transcription factors mediate domains of Pax3 expression."	"Loss of function but no gain of function caused by amino acid substitutions in the hexapeptide of Hoxa1 in vivo. Homeodomain containing transcription factors of the Hox family play critical roles in patterning the anteroposterior embryonic body axis, as well as in controlling several steps of organogenesis. Several Hox proteins have been shown to cooperate with members of the Pbx family for the recognition and activation of identified target enhancers. Hox proteins contact Pbx via a conserved hexapeptide motif. Previous biochemical studies provided evidence that critical amino acid substitutions in the hexapeptide sequence of Hoxa1 abolish its interaction with Pbx. As a result, these substitutions also abolish Hoxa1 activity on known target enhancers in cellular models, suggesting that Hoxa1 activity relies on its capacity to interact with Pbx. Here, we show that mice with mutations in the Hoxa1 hexapeptide display hindbrain, cranial nerve, and skeletal defects highly reminiscent of those reported for the Hoxa1 loss of function. Since similar hexapeptide mutations in the mouse Hoxb8 and the Drosophila AbdA proteins result in activity modulation and gain of function, our data demonstrate that the functional importance of the hexapeptide in vivo differs according to the Hox proteins."	"Epigenomic changes during leukemia cell differentiation: analysis of histone acetylation and cytosine methylation using CpG island microarrays. Dysregulation of epigenetic control is an important participant in carcinogenesis. The PML/RAR alpha translocation in acute promyelocytic leukemia (APL) is an example where the resultant fusion protein recruits histone deacetylase complexes to target genes resulting in their inappropriate transcriptional repression. All-trans-retinoic acid (ATRA) acts as a ligand that relieves this repression and produces an epigenetic transcriptional reprogramming of the cancer cell. CpG island microarrays were used to analyze the DNA methylation and histone acetylation state of the human APL cell line NB4 before and after differentiation with ATRA as well as normal peripheral blood mononuclear cells (PBMC). Over 70 CpG islands within 1 kb of transcription start of a known gene are aberrantly methylated in NB4 cells compared with PBMC; however, no changes in cytosine methylation were detected following ATRA-induced differentiation. With respect to histone H4 acetylation, over 100 single-copy CpG islands within 1 kb of transcription start of a known human gene became hyperacetylated following ATRA-induced differentiation. One CpG island was aberrantly methylated in NB4 cells, but became hyperacetylated and was induced following ATRA treatment and was associated with the HoxA1 gene, suggesting it may be a target gene of ATRA in APL. In addition to single-copy sequences, a selective increase in acetylation was detected in satellite DNA when compared with other high-copy sequences, such as Alu or rDNA. In summary, ATRA stimulates complex epigenomic changes during leukemic cell differentiation, and monitoring these changes may help to identify new targets of epigenetic dysfunction."	"The molecular basis for the evolution of the metazoan bodyplan: extracellular matrix-mediated morphogenesis in marine demosponges. Molecular data on development/differentiation and on comparative genomics allow insights into the genetic basis of the evolution of a bodyplan. Sponges (phylum Porifera) are animals that are the (still extant) stem group with the hypothetical Urmetazoa as the earliest common ancestor of all metazoans; they possess the basic features of the characteristic metazoan bodyplan also valid for the animals of the crown taxa. Here we describe three homeobox genes from the demosponge Suberites domuncula whose deduced proteins (HOXa1_SUBDO, HOXb1_SUBDO, HOXc1_SUBDO) are to be grouped with the Antennapedia class of homeoproteins (subclasses TIx-Hox11 and NK-2). In addition, a cDNA encoding a LIM/homeobox protein has been isolated which comprises high sequence similarity to the related LIM homeodomain (HD) proteins in its LIM as well as in its HD domains. To elucidate the potential function of these proteins in the sponge a new in vitro system was developed. Primmorphs which are formed from dissociated cells were grown on a homologous galectin matrix. This galectin cDNA was cloned and the recombinant protein was used for the preparation of the matrix. The galectin/polylysine matrix induced in primmorphs the formation of channels, one major morphogenetic process in sponges. Under such conditions the expression of the gene encoding the LIM/homeobox protein is strongly upregulated, while the expression of the other homeobox genes remains unchanged or is even downregulated. Competition experiments with galactosylceramides isolated from S. domuncula were performed. They revealed that a beta-galactosylceramide, named Sdgal-1, prevented the expression of the LIM gene on the galectin matrix, while Sdgal-2, a diglycosylceramide having a terminal alpha-glycosidically linked galactose, caused no effect on the formation of channels in primmorphs or on LIM expression. This study demonstrates for the first time that an extracellular matrix molecule, galectin, induces a morphogenetic process in sponges which is very likely caused by a LIM/homeobox protein. Furthermore, a new model is introduced (galectin-caused channel formation in sponge primmorphs) to investigate basic pathways, thus allowing new insights into the functional molecular evolution of Metazoa."	"Association between the HOXA1 A218G polymorphism and increased head circumference in patients with autism. The HOXA1 gene plays a major role in brainstem and cranial morphogenesis. The G allele of the HOXA1 A218G polymorphism has been previously found associated with autism. We performed case-control and family-based association analyses, contrasting 127 autistic patients with 174 ethnically matched controls, and assessing for allelic transmission disequilibrium in 189 complete trios. A, and not G, alleles were associated with autism using both case-control (chi(2) = 8.96 and 5.71, 1 df, p &lt;.005 and &lt;.025 for genotypes and alleles, respectively), and family-based (transmission/disequilibrium test chi(2) = 8.80, 1 df, p &lt;.005) association analyses. The head circumference of 31 patients carrying one or two copies of the G allele displayed significantly larger median values (95.0th vs. 82.5th percentile, p &lt;.05) and dramatically reduced interindividual variability (p &lt;.0001), compared with 166 patients carrying the A/A genotype. The HOXA1 A218G polymorphism explains approximately 5% of the variance in the head circumference of autistic patients and represents to our knowledge the first known gene variant providing sizable contributions to cranial morphology. The disease specificity of this finding is currently being investigated. Nonreplications in genetic linkage/association studies could partly stem from the dyshomogeneous distribution of an endophenotype morphologically defined by cranial circumference."	"No association between allelic variants of HOXA1/HOXB1 and autism. Two recent studies have reported conflicting findings of association of a variant in the HOXA1 gene and autism. To try to resolve the conflict in findings, we conducted an association study in 78 Irish families of the reported DNA variants. We did not find statistically significant association between the variants and autism. Similarly there was no evidence of preferential transmission of variants from parent of either sex to affected offspring. We also report negative findings for HOXB1 variants. We conclude that the HOXA1/B1 are unlikely to be the susceptibility genes for autism in our sample."	"Neuronal defects in the hindbrain of Hoxa1, Hoxb1 and Hoxb2 mutants reflect regulatory interactions among these Hox genes. Hox genes are instrumental in assigning segmental identity in the developing hindbrain. Auto-, cross- and para-regulatory interactions help establish and maintain their expression. To understand to what extent such regulatory interactions shape neuronal patterning in the hindbrain, we analysed neurogenesis, neuronal differentiation and motoneuron migration in Hoxa1, Hoxb1 and Hoxb2 mutant mice. This comparison revealed that neurogenesis and differentiation of specific neuronal subpopulations in r4 was impaired in a similar fashion in all three mutants, but with different degrees of severity. In the Hoxb1 mutants, neurons derived from the presumptive r4 territory were re-specified towards an r2-like identity. Motoneurons derived from that territory resembled trigeminal motoneurons in both their migration patterns and the expression of molecular markers. Both migrating motoneurons and the resident territory underwent changes consistent with a switch from an r4 to r2 identity. Abnormally migrating motoneurons initially formed ectopic nuclei that were subsequently cleared. Their survival could be prolonged through the introduction of a block in the apoptotic pathway. The Hoxa1 mutant phenotype is consistent with a partial misspecification of the presumptive r4 territory that results from partial Hoxb1 activation. The Hoxb2 mutant phenotype is a hypomorph of the Hoxb1 mutant phenotype, consistent with the overlapping roles of these genes in facial motoneuron specification. Therefore, we have delineated the functional requirements in hindbrain neuronal patterning that follow the establishment of the genetic regulatory hierarchy between Hoxa1, Hoxb1 and Hoxb2."	"The HOXA1 A218G polymorphism and autism: lack of association in white and black patients from the South Carolina Autism Project. A recent study has suggested that the A218G polymorphism in the homeobox A1 (HOXA1) gene may influence susceptibility to autism. We have determined the frequencies of the A and G alleles of the HOXA1 A218G polymorphism in both white and black patients from the South Carolina Autism Project (SCAP) and controls. Marked differences were found in allele frequencies between the races, but no deviations from Hardy-Weinberg equilibrium were seen in either white or black SCAP family members. More direct tests, comparing genotype frequencies between probands and controls and tracking transmission of the A versus G alleles to affected offspring, did not support the contention that allele status for the HOXA1 A218G polymorphism influences one's susceptibility to autism."	"Comparative analysis of genes regulated by PML/RAR alpha and PLZF/RAR alpha in response to retinoic acid using oligonucleotide arrays. Acute promyelocytic leukemia (APL) is associated with chromosomal translocations involving retinoic acid receptor alpha (RAR alpha) and its fusion partners including promyelocytic leukemia (PML) and promyelocytic leukemia zinc finger (PLZF). Using oligonucleotide arrays, we examined changes in global gene expression mediated by the ectopic expression of either PML/RAR alpha (retinoid-sensitive) or PLZF/RAR alpha (retinoid-resistant) in U937 cells. Of more than 5000 genes analyzed, 16 genes were commonly up-regulated, and 57 genes were down-regulated by both fusion proteins suggesting their role in the APL phenotype. In our APL model, for example, TNFAIP2, TNFR2, ELF4, RAR gamma, and HoxA1 were down-regulated by both fusion proteins in the absence of retinoic acid (RA). RA strongly up-regulated these genes in PML/RAR alpha, but not in PLZF/RAR alpha expressing U937 cells. Expression studies in NB4, retinoid-resistant NB4-R2, normal human CD34+ cells, and APL patient samples strongly suggest their role in the regulation of granulocytic differentiation. Furthermore, combined treatment with tumor necrosis factor alpha (TNF alpha) and RA synergistically enhanced granulocytic differentiation in NB4 cells but not in NB4-R2 cells. Our data indicate that APL pathogenesis and retinoid-induced granulocytic differentiation of APL cells involve genes in the cell death pathway, and that cooperation between the RA and TNFalpha signaling pathways exists. Targeting both the retinoid-dependent differentiation and the cell death pathways may improve leukemic therapy, especially in retinoid-resistant acute myeloid leukemia."	"Lack of association of HOXA1 and HOXB1 mutations and autism in Sicilian (Italian) patients. NA"	"Homeobox gene expression and mutation in cervical carcinoma cells. An association between deregulation of homeobox (HOX) gene expression and oncogenic transformation has been recently reported in human tumors. In this study, we investigated HOX gene expression and mutation in cervical carcinoma cells. Using reverse transcription-PCR, 11 human cervical carcinoma cell lines and 14 normal cervical tissue samples were examined for mRNA expression of the 39 class I HOX genes. DNA samples from 11 cell lines were tested for mutations in exons 1 and 2 of the HOXA10 and A13 genes using overlapping primer pairs which also cover intron 1 of these genes. HOXA1, B2, B4, C5, C10 and D13 genes were expressed in 8, 7, 9, 9, 9 and 11 of 11 cervical carcinoma cell lines, respectively, but not in any of the normal cervical tissues. HOXA9, A11, A13, B5, C4, D3 and D9 genes were expressed in all cell lines and normal tissues. In contrast, 13 of 39 HOX genes were silent in all materials examined. Single-strand conformational polymorphism and sequence analysis revealed a C insertion after base 1042 and/or a G to C substitution at base 1113 in intron 1 of the HOXA13 gene in 4 of 11 cell lines, however, neither deletions nor mutations were detected in exons 1 and 2 of the HOX A10 and A13 genes. Our data suggest that the expression of HOXA1, B2, B4, C5, C10 and D13 genes might be involved in the process leading to the transformation of normal cervical cells."	"Conserved expression of Hoxa1 in neurons at the ventral forebrain/midbrain boundary of vertebrates. The previously described expression patterns of zebrafish and mouse Hoxa1 genes are seemingly very disparate, with mouse Hoxa1 expressed in the gastrula stage hindbrain and the orthologous zebrafish hoxa1a gene expressed in cell clusters within the ventral forebrain and midbrain. To investigate the evolution of Hox gene deployment within the vertebrate CNS, we have performed a comparative expression analysis of Hoxa1 orthologs in a range of vertebrate species, comprising representatives from the two major lineages of vertebrates (actinopterygians and sarcopterygians). We find that fore/midbrain expression of hoxa1a is conserved within the teleosts, as it is shared by the ostariophysan teleost zebrafish (Danio rerio) and the distantly related acanthopterygian teleost medaka (Oryzias latipes). Furthermore, we find that in addition to the described gastrula stage hindbrain expression of mouse Hoxa1, there is a previously unreported neurula stage expression domain, again located more anteriorly at the ventral fore/midbrain boundary. A two-phase expression profile in early hindbrain and later fore/midbrain is shared by the other tetrapod model organisms chick and Xenopus. We show that the anterior Hoxa1 expression domain is localized to the anterior terminus of the medial longitudinal fasciculus (MLF) in mouse, chick, and zebrafish. These findings suggest that anterior expression of Hoxa1 is a primitive characteristic that is shared by the two major vertebrate lineages. We conclude that Hox gene expression within the vertebrate CNS is not confined exclusively to the segmented hindbrain and spinal cord, but rather that a presumptive fore/midbrain expression domain arose early in vertebrate origins and has been conserved for at least 400 million years."	"The regional pattern of retinoic acid synthesis by RALDH2 is essential for the development of posterior pharyngeal arches and the enteric nervous system. Targeted inactivation of the mouse retinaldehyde dehydrogenase 2 (RALDH2/ALDH1a2), the enzyme responsible for early embryonic retinoic acid synthesis, is embryonic lethal because of defects in early heart morphogenesis. Transient maternal RA supplementation from E7.5 to (at least) E8.5 rescues most of these defects, but the supplemented Raldh2(-/-) mutants die prenatally, from a lack of septation of the heart outflow tract (Niederreither, K., Vermot, J., Messaddeq, N., Schuhbaur, B., Chambon, P. and Dollé, P. (2001). Development 128, 1019-1031). We have investigated the developmental basis for this defect, and found that the RA-supplemented Raldh2(-/-) embryos exhibit impaired development of their posterior (3rd-6th) branchial arch region. While the development of the first and second arches and their derivatives, as well as the formation of the first branchial pouch, appear to proceed normally, more posterior pharyngeal pouches fail to form and the pharyngeal endoderm develops a rudimentary, pouch-like structure. All derivatives of the posterior branchial arches are affected. These include the aortic arches, pouch-derived organs (thymus, parathyroid gland) and post-otic neural crest cells, which fail to establish segmental migratory pathways and are misrouted caudally. Patterning and axonal outgrowth of the posterior (9th-12th) cranial nerves is also altered. Vagal crest deficiency in Raldh2(-/-) mutants leads to agenesis of the enteric ganglia, a condition reminiscent of human Hirschprung's disease. In addition, we provide evidence that: (i) wildtype Raldh2 expression is restricted to the posteriormost pharyngeal mesoderm; (ii) endogenous RA response occurs in both the pharyngeal endoderm and mesoderm, and extends more rostrally than Raldh2 expression up to the 2nd arch; (iii) RA target genes (Hoxa1, Hoxb1) are downregulated in both the pharyngeal endoderm and mesoderm of mutant embryos. Thus, RALDH2 plays a crucial role in producing RA required for pharyngeal development, and RA is one of the diffusible mesodermal signals that pattern the pharyngeal endoderm."	"Facial dysgenesis: a novel facial syndrome with chromosome 7 deletion p15.1-21.1. We describe a female neonate with a unique constellation of features including anophthalmia and cryptophthalmos, temporal remnant &quot;eye tags,&quot; bilateral cleft lip, unilateral cleft palate, a proboscis with absent nasal septum, choanal atresia, micrognathia, square stoma, and bilateral external auditory canal atresia. Gross brain structure, pituitary function, limbs, trunk, and genitalia were normal. Skeletal survey, echocardiogram and abdominal viscera were unremarkable except for a split central sinus of the right kidney. BAER exam indicated she could hear and temporal CT confirmed the presence of cochlea and possible ossicles. Cytogenetic evaluation revealed an interstitial deletion at chromosome 7p15.1-21.1. TWIST, a gene encoding a transcription factor involved in craniofacial development, is deleted by FISH analysis. The absence of a mutation on the non-deleted allele of TWIST as determined by sequencing virtually eliminates complete loss of the TWIST gene as the cause of this patient's severe phenotype. The HOXA gene cluster also encodes transcription factors that are crucial for directing cephalad to caudad somatic fetal development. HOXA1, the most telomeric of the 13 members of the HOXA gene cluster, is located at the centromeric boundary of the patient's chromosome 7 deletion. By FISH analysis, neither allele of HOXA1 is deleted and sequencing reveals no mutations. Haploinsufficiency or complete loss of the HOXA1 gene also does not appear to cause this patient's severe phenotype. Previous reports of chromosome 7p15-21 deletions do not have phenotypes similar to this patient."	"Human growth hormone-regulated HOXA1 is a human mammary epithelial oncogene. Increased mammary epithelial expression of the human growth hormone (hGH) gene is associated with the acquisition of pathological proliferation. We report here that autocrine hGH production by human mammary carcinoma cells increased the expression and transcriptional activity of the homeobox domain containing protein HOXA1. Forced expression of HOXA1 in human mammary carcinoma cells resulted in increased total cell number primarily by the promotion of cell survival mediated by the transcriptional up-regulation of Bcl-2. HOXA1 also abrogated the apoptotic response of mammary carcinoma cells to doxorubicin. Forced expression of HOXA1 in mammary carcinoma cells, in a Bcl-2-dependent manner, resulted in dramatic enhancement of anchorage-independent proliferation and colony formation in soft agar. Finally, forced expression of HOXA1 was sufficient to result in the oncogenic transformation of immortalized human mammary epithelial cells with aggressive in vivo tumor formation. Herein, we have therefore provided a molecular mechanism by which autocrine hGH stimulation of human mammary epithelial cells may result in oncogenic transformation."	"No association between HOXA1 and HOXB1 genes and autism spectrum disorders (ASD). NA"	"Targeted insertion results in a rhombomere 2-specific Hoxa2 knockdown and ectopic activation of Hoxa1 expression. Recent studies indicated that retention of selectable marker cassettes in targeted Hox loci may cause unexpected phenotypes in mutant mice, due to neighborhood effects. However, the molecular mechanisms have been poorly investigated. Here, we analysed the effects of the targeted insertion of a PGK-neo cassette in the 3' untranslated region of Hoxa2. Even at this 3' position, the insertion resulted in homozygous mutants that unexpectedly did not survive beyond 3 weeks of age. Molecular analysis of the targeted allele revealed a selective &quot;knockdown&quot; of Hoxa2 expression in rhombomere 2 and associated patterning abnormalities. Moreover, Hoxa1 was ectopically expressed in the hindbrain and branchial arches of mutant embryos. Of interest, we demonstrated that the ectopic expression was due to the generation of neo-Hoxa1 fusion transcripts, resulting from aberrant alternative splicing. These defects could be rescued after removal of the PGK-neo cassette by Flp-mediated recombination. These results underscore the complexity of transcriptional regulation at Hox loci and provide insights into the in vivo regulation of Hoxa2 segmental expression. They also provide a molecular basis for the interpretation of unexpected Hox knockout phenotypes in which the targeted selectable marker is retained in the locus."	"[Genetic study of 20 patients with autism disorders]. Many observations indicate that genetic factors play an important role in the aetiology of autism. Up to now, however, no genetic markers have been convincingly identified which influence the predisposition to this disorder. Complex genetic analysis of autistic patients and their families may therefore lead to the identification of features which could help to direct further search for the predisposing genes. We have analysed a sample of 20 patients with autism spectrum disorders. The patients have been subjected to clinical genetic examination, cytogenetic analysis and DNA analysis of the FMR1 gene. In the sample studied we have observed more boys (15/20), various degree of mental retardation (18/20), high frequency of complications during pregnancy (10/20) and delivery (10/20), increased incidence of psychiatric disorders, behavioural abnormalities and suicides among the relatives, and increased head circumference and unusually formed ears in the probands. Three patients had different chromosomal aberrations or variants (t(21;22), inv(9) and inv(10)). One patient harboured expansion of the trinucleotide repeat sequence in the FMR1 gene on the full mutation level which is characteristic for the fragile X syndrome, and one patient is suspected to suffer from the Rett syndrome. Our observations confirm and extend the results reported in the literature. Most interesting are mainly the macrocephaly which may be associated with the recently described increased neonatal levels of neural growth factors in autistic individuals, ear malformations which may indicate aberrations in the HOXA1 gene pathway, the occurrence of chromosomal inversions recurrent in autism, and peculiarities in the pedigrees of the patients."	"No evidence for linkage of liability to autism to HOXA1 in a sample from the CPEA network. A recent study by Ingram et al. [2000b: Teratology 62:393-405] suggests a (His)73(Arg) polymorphism (A:G) in HOXA1 contributes substantially to a liability for autism. Using 68 individuals diagnosed with Autism Spectrum Disorders, they found a significant dearth of G homozygotes and biased transmission of G alleles from parents to affected offspring, especially from mothers. Because the connection between HOXA1 and liability to autism is compelling, we attempted to replicate their finding using a larger, independent sample from the Collaborative Programs of Excellence in Autism (CPEA) network. In our data, genotype frequencies conform to Hardy-Weinberg equilibrium; allele transmissions meet Mendelian expectations; and there is no obvious sex-biased allele transmission. Based on our sample size, calculations suggest that we would have at least 95% power to detect linkage and association even if the A:G polymorphism were to account for only 1% of the heritability of autism. Therefore, although we cannot exclude the possibility that the samples in the two studies are intrinsically different, our data from our sample argue against a major role for HOXA1 (His)73(Arg) in liability to autism."	"Early development of respiratory rhythm generation in mouse and chick. We are investigating neuronal circuits resulting from conservative developmental mechanisms orchestrating the segmentation of the vertebrates hindbrain into compartments called rhombomeres (r). Segmentation transcription factors Hoxa1, Krox20 and kreisler are expressed in the future rhombomeres r4-r5, r3 and r5, r5-r6, respectively. In mice, the in vivo and in vitro analysis of neuronal groups after inactivation of these three genes revealed distinct postnatal respiratory phenotypes associated with defects of central respiratory controls resulting from deletion, neoformation or reconfiguration of modular circuits. In chick and mice, we have found neuronal rhythm generators that conform to the rhombomeric anatomical pattern as early as at the end of the segmentation. By isolating chick hindbrain segments in vitro, we have also identified rhombomeric motifs allowing the formation or deletion of a specific (GABAergic) rhythm-promoting module. Therefore, primordial rhombomeric organization of the hindbrain seems to determine a modular organization of the rhythmogenic network, thereby influencing later function of brainstem respiratory control networks."	"Changing homeodomain residues 2 and 3 of Hoxa1 alters its activity in a cell-type and enhancer dependent manner. The second and third amino acid residues of the N-terminal arm of most Hox protein homeodomains are basic (lysine or arginine), whereas they are asparagine and alanine, respectively, in the Hoxa1 homeodomain. Previous reports pinpointed these residues as specificity determinants in the function of Hoxa1 when it is acting as a monomer. However, in vitro data supported that these residues do not influence the target specificity of Hoxa1 in Pbx1a-Hoxa1 heterodimers. Here, we have analysed the transcriptional activity of a Hoxa1(NA-KR) mutant for which the asparagine and alanine residues of the homeodomain have been replaced by lysine and arginine, respectively. Comparison between the wild-type and mutant Hoxa1 reveals that they show distinct activity on the TSEII enhancer of the somatostatin gene, but that they are equally active in the presence of Pbx and Prep cofactors. This therefore corroborates the biochemical evidence having shown that the second and third residues of the homeodomain do not contribute to the DNA binding of Hoxa1-Pbx dimers. However, on the hoxb1 autoregulatory enhancer, Hoxa1 and Hoxa1(NA-KR) may display distinct activity despite the presence of Pbx, in a cell-type dependent manner. Therefore, our data suggest that, depending on the enhancer, these residues may contribute to the functional specificity of Hoxa1 and that this contribution may not be abrogated by the interaction with Pbx."	"Minor form of trigonocephaly is an autistic skull shape? A suggestion based on homeobox gene variants and MECP2 mutations. A possible role for Hoxa1 genotype in susceptibility to autism spectrum disorders was recently proposed. Furthermore, it has been demonstrated that Rett syndrome, which is categorized into pervasive developmental disorders the same as the autism spectrum disorders are, is associated with mutations in MECP2 gene. These findings suggest that the genetic backgrounds of these behavioral conditions may involve genes which also have an important role in the development of skull, because Hoxa1 is a key gene for skull development as well as for brain development and one of the clinical characteristics of Rett syndrome is deceleration in head growth. Together with this evolving knowledge, a series of ethical arguments concerning the indication of surgical treatment in patients with minor forms of trigonocephaly with autistic behaviors and/or hyperactivity leads us to hypothesize the presence of an autism subtype which may frequently be accompanied by specific morphological skull characteristics (autistic skull shape)."	"Knockdown of duplicated zebrafish hoxb1 genes reveals distinct roles in hindbrain patterning and a novel mechanism of duplicate gene retention. We have used a morpholino-based knockdown approach to investigate the functions of a pair of zebrafish Hox gene duplicates, hoxb1a and hoxb1b, which are expressed during development of the hindbrain. We find that the zebrafish hoxb1 duplicates have equivalent functions to mouse Hoxb1 and its paralogue Hoxa1. Thus, we have revealed a 'function shuffling' among genes of paralogue group 1 during the evolution of vertebrates. Like mouse Hoxb1, zebrafish hoxb1a is required for migration of the VIIth cranial nerve branchiomotor neurons from their point of origin in hindbrain rhombomere 4 towards the posterior. By contrast, zebrafish hoxb1b, like mouse Hoxa1, is required for proper segmental organization of rhombomere 4 and the posterior hindbrain. Double knockdown experiments demonstrate that the zebrafish hoxb1 duplicates have partially redundant functions. However, using an RNA rescue approach, we reveal that these duplicated genes do not have interchangeable biochemical functions: only hoxb1a can properly pattern the VIIth cranial nerve. Despite this difference in protein function, we provide evidence that the hoxb1 duplicate genes were initially maintained in the genome because of complementary degenerative mutations in defined cis-regulatory elements."	"Alternately spliced luteinizing hormone/human chorionic gonadotropin receptor mRNA in human breast epithelial cells. Luteinizing hormone (LH)/human chorionic gonadotropin (hCG) bind to a common transmembrane glycoprotein receptor, which is a member of the G protein-coupled receptor family. In human, the LH/hCG receptor gene is composed of 11 exons and 10 introns and its coding region is over 60 kb long. Human chorionic gonadotropin is a glycoprotein hormone containing a cystine-knot folding motif that is found in peptide growth factors known to activate the expression of homeogenes. In the present work we present evidence that hCG down-regulates all the three transcripts of HOXA1 at early stages of hCG treatment in the immortalized human breast epithelial cells (MCF-10F), whereas HOXA1-S1, the largest transcript, as well as HOXA1-S3, the smallest transcript, were up-regulated in the cancer cell lines MDA-MB-231 and MCF-7, respectively. This divergent reaction of hCG was associated with the pattern of LH/hCG receptors and splicing forms expression in human breast epithelial cells. MCF-10F cells expressed the full-length (1191 bp) compared with the cancer-derived cells MCF-7 and MDA-MB-231 that was weakly or not expressed. Isoform 1 (1117 bp) was silent in MCF-10F and expressed weakly in the cancer cells. The isoforms 2 (1006 bp) and 3 (932 bp) of LH/hCG gene receptor were silent in all the cell lines, whereas isoforms 4 (892 bp), 6 (626 bp) and 7 (441 bp) were silent in MCF-10F cells and expressed in the cancer cell lines. Instead isoform 5 (707 bp) showed in the three cell lines the strongest expression in MCF-10F cells. This difference in the expression of alternate splicing of LH/hCG receptor mRNA among the MCF-10F, MCF-7 and MDA-MB-231 cells, may explain the divergent response of these cells to HOXA1 activation by hCG."	"Lack of association between HoxA1 and HoxB1 gene variants and autism in 110 multiplex families. A recent report suggested that the HoxA1 and/or HoxB1 genes play a role in susceptibility to autism. To determine whether these findings could be confirmed, we screened these genes for DNA polymorphisms by sequencing all exons in 24 individuals with autism. We identified the same sequence variants in the genes that appeared in this report, which include one single-base substitution variant in HoxA1 and a common haplotype in HoxB1. We performed an association study by applying the transmission disequilibrium test to detect possible association of these variants to autism in 110 multiplex families. Our results demonstrated no deviation from the null hypothesis of no association. We have also separately examined transmissions within individual mating types, for paternal versus maternal alleles, to affected versus unaffected children, and for transmission to affected boys versus girls. None of these subsets revealed significant deviation from the null expectation. Our interpretation of these findings is that it is unlikely that HoxA1 and HoxB1 play a significant role in the genetic predisposition to autism."	"Expression of homeobox-containing genes in cDNA libraries derived from cattle oocytes and preimplantation stage embryo. The homeobox-containing gene family plays a pivotal role in regulating, patterning, and axial morphogenesis in the developing embryo. But there is still very little known about the expression and function of these genes in mammalian oocytes and preimplantation stage embryos. In this study we have used degenerate primers corresponding to the highly conserved regions of Antennapedia class homeodomains as a rapid and an efficient method to survey bovine cDNA libraries derived from unfertilised oocytes, single 2-cell, 4-cell, 8-cell, morula, and blastocyst stage embryos for the presence of homeobox sequences. Our results provide, for the first time, evidence for the transcription of Hoxa3 and Hoxd1 in oocytes; Cdx1 and Cdx2 in the 2-cell; Cdx1, Hoxa1, Hoxd1, and Hoxd4 in the 4-cell; Cdx1, Hoxa1, and Hoxc9 in the 8-cell; Cdx2, Hoxb9, and Hoxc9 in the morula; Cdx2, Hoxb7, Hoxb9, and Hoxc9 in blastocyst stage cattle embryos. These are candidate genes for the developmental capacity of in vivo and in vitro produced bovine embryos."	"Synergy between Hoxa1 and Hoxb1: the relationship between arch patterning and the generation of cranial neural crest. Hoxa1 and Hoxb1 have overlapping synergistic roles in patterning the hindbrain and cranial neural crest cells. The combination of an ectoderm-specific regulatory mutation in the Hoxb1 locus and the Hoxa1 mutant genetic background results in an ectoderm-specific double mutation, leaving the other germ layers impaired only in Hoxa1 function. This has allowed us to examine neural crest and arch patterning defects that originate exclusively from the neuroepithelium as a result of the simultaneous loss of Hoxa1 and Hoxb1 in this tissue. Using molecular and lineage analysis in this double mutant background we demonstrate that presumptive rhombomere 4, the major site of origin of the second pharyngeal arch neural crest, is reduced in size and has lost the ability to generate neural crest cells. Grafting experiments using wild-type cells in cultured normal or double mutant mouse embryos demonstrate that this is a cell-autonomous defect, suggesting that the formation or generation of cranial neural crest has been uncoupled from segmental identity in these mutants. Furthermore, we show that loss of the second arch neural crest population does not have any adverse consequences on early patterning of the second arch. Signalling molecules are expressed correctly and pharyngeal pouch and epibranchial placode formation are unaffected. There are no signs of excessive cell death or loss of proliferation in the epithelium of the second arch, suggesting that the neural crest cells are not the source of any indispensable mitogenic or survival signals. These results illustrate that Hox genes are not only necessary for proper axial specification of the neural crest but that they also play a vital role in the generation of this population itself. Furthermore, they demonstrate that early patterning of the separate components of the pharyngeal arches can proceed independently of neural crest cell migration."	"Retinoic acid rescues inner ear defects in Hoxa1 deficient mice. Little is known about the genetic pathways involved in the early steps of inner ear morphogenesis. Hoxa1 is transiently expressed in the developing hindbrain; its targeted inactivation in mice results in severe abnormalities of the otic capsule and membranous labyrinth. Here we show that a single maternal administration of a low dose of the vitamin A metabolite retinoic acid is sufficient to compensate the requirement for Hoxa1 function. It rescues cochlear and vestibular defects in mutant fetuses without affecting the development of the wildtype fetuses. These results identify a temporal window of susceptibility to retinoids that is critical for mammalian inner ear specification, and provide the first evidence that a subteratogenic dose of vitamin A derivative can be effective in rescuing a congenital defect in the mammalian embryo."	"Consequences of Hox gene duplication in the vertebrates: an investigation of the zebrafish Hox paralogue group 1 genes. As a result of a whole genome duplication event in the lineage leading to teleosts, the zebrafish has seven clusters of Hox patterning genes, rather than four, as described for tetrapod vertebrates. To investigate the consequences of this genome duplication, we have carried out a detailed comparison of genes from a single Hox paralogue group, paralogue group (PG) 1. We have analyzed the sequences, expression patterns and potential functions of all four of the zebrafish PG1 Hox genes, and compared our data with that available for the three mouse genes. As the basic functions of Hox genes appear to be tightly constrained, comparison with mouse data has allowed us to identify specific changes in the developmental roles of Hox genes that have occurred during vertebrate evolution. We have found variation in expression patterns, amino acid sequences within functional domains, and potential gene functions both within the PG1 genes of zebrafish, and in comparison to mouse PG1 genes. We observed novel expression patterns in the midbrain, such that zebrafish hoxa1a and hoxc1a are expressed anterior to the domain traditionally thought to be under Hox patterning control. The hoxc1a gene shows significant coding sequence changes in known functional domains, which correlate with a reduced capacity to cause posteriorizing transformations. Moreover, the hoxb1 duplicate genes have differing functional capacities, suggesting divergence after duplication. We also find that an intriguing function 'shuffling' between paralogues has occurred, such that one of the zebrafish hoxb1 duplicates, hoxb1b, performs the role in hindbrain patterning played in mouse by the non-orthologous Hoxa1 gene."	"Generation of a novel functional neuronal circuit in Hoxa1 mutant mice. Early organization of the vertebrate brainstem is characterized by cellular segmentation into compartments, the rhombomeres, which follow a metameric pattern of neuronal development. Expression of the homeobox genes of the Hox family precedes rhombomere formation, and analysis of mouse Hox mutations revealed that they play an important role in the establishment of rhombomere-specific neuronal patterns. However, segmentation is a transient feature, and a dramatic reconfiguration of neurons and synapses takes place during fetal and postnatal stages. Thus, it is not clear whether the early rhombomeric pattern of Hox expression has any influence on the establishment of the neuronal circuitry of the mature brainstem. The Hoxa1 gene is the earliest Hox gene expressed in the developing hindbrain. Moreover, it is rapidly downregulated. Previous analysis of mouse Hoxa1(-/-) mutants has focused on early alterations of hindbrain segmentation and patterning. Here, we show that ectopic neuronal groups in the hindbrain of Hoxa1(-/-) mice establish a supernumerary neuronal circuit that escapes apoptosis and becomes functional postnatally. This system develops from mutant rhombomere 3 (r3)-r4 levels, includes an ectopic group of progenitors with r2 identity, and integrates the rhythm-generating network controlling respiration at birth. This is the first demonstration that changes in Hox expression patterns allow the selection of novel neuronal circuits regulating vital adaptive behaviors. The implications for the evolution of brainstem neural networks are discussed."	"The recruitment of SOX/OCT complexes and the differential activity of HOXA1 and HOXB1 modulate the Hoxb1 auto-regulatory enhancer function. Regionally restricted expression patterns of Hox genes in developing embryos rely on auto-, cross-, and para-regulatory transcriptional elements. One example is the Hoxb1 auto-regulatory element (b1-ARE), which drives expression of Hoxb1 in the fourth rhombomere of the hindbrain. We previously showed that HOXB1 and PBX1 activate transcription from the b1-ARE by binding to sequences required for the expression of a reporter gene in rhombomere 4 in vivo. We now report that in embryonal carcinoma cells, which retain characteristics of primitive neuroectodermal cells, the b1-ARE displays higher basal and HOX/PBX-induced activities than in other cell backgrounds. We have identified a bipartite-binding site for SOX/OCT heterodimers within the b1-ARE that accounts for its cell context-specific activity and is required for maximal transcriptional activity of HOX/PBX complexes in embryonal carcinoma cells. Furthermore, we found that in an embryonal carcinoma cell background, HOXB1 has a significantly higher transcriptional activity than its paralog HOXA1. We map the determinants for this differential activity within the HOXB1 N-terminal transcriptional activation domain. By using analysis in transgenic and HOXA1 mutant mice, we extended these findings on the differential activities of HOXA1 and HOXB1 in vivo, and we demonstrated that they are important for regulating aspects of HOXB1 expression in the hindbrain. We found that mutation of the SOX/OCT site and targeted inactivation of Hoxa1 both impair the response of the b1-ARE to retinoic acid in transgenic mice. Our results show that Hoxa1 is the primary mediator of the response of b1-ARE to retinoic acid in vivo and that this function is dependent on the binding of SOX/OCT heterodimers to the b1-ARE. These results uncover novel functional differences between Hox paralogs and their modulators."	"Formation of the middle ear: recent progress on the developmental and molecular mechanisms. The middle ear allows animals to hear while moving in an aerial medium. It is composed of a cavity harbouring a chain of three ossicles that transmit vibrations produced by airborne sound in the tympanic membrane into the inner ear, where they are converted into neural impulses. The middle ear develops in the branchial arches, and this requires sequential interactions between the epithelia and the underlying mesenchyme. Gene-inactivation experiments have identified genes required for the formation of different middle ear components. Some encode for signalling molecules, including Endothelin1 and Fgf8, probable mediators of epithelial-mesenchymal interactions. Other genes, including Eya1, Prx1, Hoxa1, Hoxa2, Dlx1, Dlx2, Dlx5, and Gsc, are most likely involved in patterning and morphogenetic processes in the neural crest-derived mesenchyme. Mechanisms controlling formation of a functional tympanic membrane are also discussed. Basically, the tympanic ring, which serves as support for the tympanic membrane, directs invagination of the first pharyngeal cleft ectoderm to form the external acoustic meatus (EAM), which provides the outer layer of the membrane. Gsc and Prx1 are essential for tympanic ring development. While invaginating, the EAM controls skeletogenesis in the underlying mesenchyme to form the manubrium of the malleus, the link between the membrane and the middle ear ossicles."	"Discovery of allelic variants of HOXA1 and HOXB1: genetic susceptibility to autism spectrum disorders. Family studies have demonstrated that the autism spectrum disorders (ASDs) have a major genetic etiologic component, but expression and penetrance of the phenotype are variable. Mice with null mutations of Hoxa1 or Hoxb1, two genes critical to hindbrain development, have phenotypic features frequently observed in autism, but no naturally occurring variants of either gene have been identified in mammals. By sequencing regions of genomic DNA of patients with autism spectrum disorders, we detected a substitution variant at HOXA1 and an insertion variant at HOXB1, both in coding regions of the genes. Fifty-seven individuals ascertained for a diagnosis of an ASD, along with 166 of their relatives, were typed for these variants. Two non-ASD populations were typed, and the frequency of the newly identified alleles was determined in all groups. The genotypes of the ASD families were tested for conformation to Hardy-Weinberg proportions and Mendelian expectations for gene transmission. The frequency of the variants was 10-25% in persons of European or African origin. In the ASD families, there was a significant deviation from the HOXA1 genotype ratios expected from Hardy-Weinberg proportions (P = 0.005). Among affected offspring, a significant deviation from Mendelian expectation in gene transmission (P = 0.011) was observed. No statistically significant effects were detected when the same analyses were applied to the HOXB1 locus, but there was evidence of an interaction between HOXA1, HOXB1, and gender in susceptibility to ASDs. The results support a role for HOXA1 in susceptibility to autism, and add to the existing body of evidence implicating early brain stem injury in the etiology of ASDs."	"Altered HOX and WNT7A expression in human lung cancer. HOX genes encode transcription factors that control patterning and cell fates. Alterations in HOX expression have been clearly implicated in leukemia, but their role in most other malignant diseases remains unknown. By using degenerate reverse transcription-PCR and subsequent real-time quantitative assays, we examined HOX expression in lung cancer cell lines, direct tumor-control pairs, and bronchial epithelial cultures. As in leukemia, genes of the HOX9 paralogous group and HOXA10 were frequently overexpressed. For HOXB9, we confirmed that elevated RNA was associated with protein overexpression. In some cases, marked HOX overexpression was associated with elevated FGF10 and FGF17. During development, the WNT pathway affects cell fate, polarity, and proliferation, and WNT7a has been implicated in the maintenance of HOX expression. In contrast to normal lung and mortal short-term bronchial epithelial cultures, WNT7a was frequently reduced or absent in lung cancers. In immortalized bronchial epithelial cells, WNT7a was lost concomitantly with HOXA1, and a statistically significant correlation between the expression of both genes was observed in lung cancer cell lines. Furthermore, we identified a homozygous deletion of beta-catenin in the mesothelioma, NCI-H28, associated with reduced WNT7a and the lowest overall cell line expression of HOXA1, HOXA7, HOXA9, and HOXA10, whereas HOXB9 levels were unaffected. Of note, both WNT7a and beta-catenin are encoded on chromosome 3p, which undergoes frequent loss of heterozygosity in these tumors. Our results suggest that alterations in regulatory circuits involving HOX, WNT, and possibly fibroblast growth factor pathways occur frequently in lung cancer."	"Molecular cloning and analysis of a group of genes differentially expressed in cells which overexpress the Hoxa-1 homeobox gene. The homeobox gene Hoxa-1 is transcriptionally regulated by retinoic acid (RA) and encodes a transcription factor which has been shown to play important roles in cell differentiation and embryogenesis. In order to clone and characterize target genes of Hoxa-1, we utilized differential hybridization screening and cDNA subtractive hybridization methods to identify genes which are differentially expressed in F9-10, a murine F9 teratocarcinoma stem cell line which expresses high levels of exogenous Hoxa-1, compared to F9 wild-type stem cells, which do not express endogenous Hoxa-1 mRNA in the absence of RA. Twenty-eight candidate genes were identified; these genes encode very diverse proteins, including signaling molecules such as BMP-4, the enzyme superoxide dismutase, the cell adhesion molecule cadherin-6, proteins involved in gene transcription such as HMG-1 and SAP18, homeodomain-containing proteins Gbx-2 and Evx-2, and cell cycle regulatory proteins such as the retinoblastoma binding protein-2. Clone 104 encodes a novel protein; the expression of the clone 104 mRNA is also regulated in a fashion very similar to that of the exogenous Hoxa-1 gene in another F9 cell line, called F9-tet-Hoxa1-8, in which the exogenous Hoxa-1 mRNA expression is tightly regulated by a Tet-off gene expression system. These data strongly suggest that clone 104 is a direct downstream target of the transcription factor Hoxa-1. The cDNA sequence of clone 104 is related to that of human ubiquitin carboxyl-terminal hydrolase T. Further characterization of these putative Hoxa-1 target genes will aid in delineating the functions of the Hoxa-1 protein in the differentiation processes which occur during embryogenesis."	"Retinoid signaling is essential for patterning the endoderm of the third and fourth pharyngeal arches. The requirement of retinoic acid (RA) in the initial formation of the pharyngeal arches was investigated by treating headfold-stage mouse embryos with a pan-RAR antagonist in vitro and in vivo. This results in a complete absence of mesenchyme, arteries, nerves and epibranchial placodes of the 3rd and 4th pharyngeal arches, complete agenesis of the 3rd and 4th pouches and consistent lack of the 6th arch artery. Mesodermally derived endothelial cells are absent from the 3rd and 4th pharyngeal arch region and the distribution domain of EphA2 transcripts in mesodermal cells is shifted caudally. In situ hybridization with CRABPI, kreisler and EphA4 probes and the pattern of expression of a Wnt1-lacZ transgene show that neural crest cells (NCC) normally destined to the 3rd and 4th arches migrate ectopically. Most interestingly, the appearance of the 3rd and 4th arches is prevented by the antagonist only during a very narrow window of time, which does not correspond to the period of post-otic NCC migration. Both the timing of appearance and the nature of the defects in RAR antagonist-treated embryos indicate that migrating NCC and mesodermal cells destined to the caudal pharyngeal arches do not represent primary targets of RA action. Alterations in the endodermal expression pattern of Hoxa1, Hoxb1, Pax1, Pax9, Fgf3 and Fgf8 in response to the antagonist-induced block in RA signal transduction demonstrate for the first time that RA signaling is indispensable for the specification of the pharyngeal endoderm and suggest that this signaling is necessary to provide a permissive environment locally for the migration of NCC and mesodermal cells. Our study also indicates that the formation of the 2nd pharyngeal arch and that of the 3rd and 4th pharyngeal arches probably involve distinct RA-dependent developmental processes."	"Molecular cloning of a novel retinoic acid-responsive gene, HA1R-62, which is also up-regulated in Hoxa-1-overexpressing cells. Using a PCR-based cDNA subtractive hybridization method (L. Diatchenko et al., Proc. Natl. Acad. Sci. USA, 93: 6025-6030, 1996), we cloned a cDNA fragment of a novel gene that is highly expressed in F9-10; F9-10 is an F9 teratocarcinoma stem cell line that expresses high levels of exogenous Hoxa-1 mRNA and protein in comparison to F9 wild-type stem cells, which do not express endogenous Hoxa-1 mRNA in the absence of retinoic acid (RA). Rapid amplification of cDNA ends was used to clone the full-length cDNA of this gene, designated HA1R-62 (Hoxa1 regulated-62). We have shown that HA1R-62 is also a RA-responsive gene and that it is expressed (mRNA size, approximately 4.3 kb) in adult mouse thymus, lung, kidney, and ovary as well as in 12.5-day mouse embryos. DNA sequence analysis and in vitro translation experiments have shown that HA1R-62 encodes a protein with a molecular mass of approximately 26 kDa. Elucidation of the function of the HA1R-62 gene product will provide new insights into the functions of RA and homeobox genes."	"Roles of Hoxa1 and Hoxa2 in patterning the early hindbrain of the mouse. Early in its development, the vertebrate hindbrain is transiently subdivided into a series of compartments called rhombomeres. Genes have been identified whose expression patterns distinguish these cellular compartments. Two of these genes, Hoxa1 and Hoxa2, have been shown to be required for proper patterning of the early mouse hindbrain and the associated neural crest. To determine the extent to which these two genes function together to pattern the hindbrain, we generated mice simultaneously mutant at both loci. The hindbrain patterning defects were analyzed in embryos individually mutant for Hoxa1 and Hoxa2 in greater detail and extended to embryos mutant for both genes. From these data a model is proposed to describe how Hoxa1, Hoxa2, Hoxb1, Krox20 (Egr2) and kreisler function together to pattern the early mouse hindbrain. Critical to the model is the demonstration that Hoxa1 activity is required to set the anterior limit of Hoxb1 expression at the presumptive r3/4 rhombomere boundary. Failure to express Hoxb1 to this boundary in Hoxa1 mutant embryos initiates a cascade of gene misexpressions that result in misspecification of the hindbrain compartments from r2 through r5. Subsequent to misspecification of the hindbrain compartments, ectopic induction of apoptosis appears to be used to regulate the aberrant size of the misspecified rhombomeres."	"Mice mutant for both Hoxa1 and Hoxb1 show extensive remodeling of the hindbrain and defects in craniofacial development. The analysis of mice mutant for both Hoxa1 and Hoxb1 suggests that these two genes function together to pattern the hindbrain. Separately, mutations in Hoxa1 and Hoxb1 have profoundly different effects on hindbrain development. Hoxa1 mutations disrupt the rhombomeric organization of the hindbrain, whereas Hoxb1 mutations do not alter the rhombomeric pattern, but instead influence the fate of cells originating in rhombomere 4. We suggest that these differences are not the consequences of different functional roles for these gene products, but rather reflect differences in the kinetics of Hoxa1 and Hoxb1 gene expression. In strong support of the idea that Hoxa1 and Hoxb1 have overlapping functions, Hoxa1/Hoxb1 double mutant homozygotes exhibit a plethora of defects either not seen, or seen only in a very mild form, in mice mutant for only Hoxa1 or Hoxb1. Examples include: the loss of both rhombomeres 4 and 5, the selective loss of the 2(nd) branchial arch, and the loss of most, but not all, 2(nd) branchial arch-derived tissues. We suggest that the early role for both of these genes in hindbrain development is specification of rhombomere identities and that the aberrant development of the hindbrain in Hoxa1/Hoxb1 double mutants proceeds through two phases, the misspecification of rhombomeres within the hindbrain, followed subsequently by size regulation of the misspecified hindbrain through induction of apoptosis."	"Compensatory defects associated with mutations in Hoxa1 restore normal palatogenesis to Hoxa2 mutants. The rhombencephalic neural crest play several roles in craniofacial development. They give rise to the cranial sensory ganglia and much of the craniofacial skeleton, and are vital for patterning of the craniofacial muscles. The loss of Hoxa1 or Hoxa2 function affects the development of multiple neural crest-derived structures. To understand how these two genes function together in craniofacial development, an allele was generated that disrupts both of these linked genes. Some of the craniofacial defects observed in the double mutants were additive combinations of those that exist in each of the single mutants, indicating that each gene functions independently in the formation of these structures. Other defects were found only in the double mutants demonstrating overlapping or synergistic functions. We also uncovered multiple defects in the attachments and trajectories of the extrinsic tongue and hyoid muscles in Hoxa2 mutants. Interestingly, the abnormal trajectory of two of these muscles, the styloglossus and the stylohyoideus, blocked the attachment of the hyoglossus to the greater horn of the hyoid, which in turn correlated exactly with the presence of cleft palate in Hoxa2 mutants. We suggest that the hyoglossus, whose function is to depress the lateral edges of the tongue, when unable to make its proper attachment to the greater horn of the hyoid, forces the tongue to adopt an abnormal posture which blocks closure of the palatal shelves. Unexpectedly, in Hoxa1/Hoxa2 double mutants, the penetrance of cleft palate is dramatically reduced. We show that two compensatory defects, associated with the loss of Hoxa1 function, restore normal attachment of the hyoglossus to the greater horn thereby allowing the palatal shelves to lift and fuse above the flattened tongue."	"Overexpression of thyroid hormone receptor alpha 1 during zebrafish embryogenesis disrupts hindbrain patterning and implicates retinoic acid receptors in the control of hox gene expression. Nuclear receptors play key roles in anterior/posterior (A/P) axis formation during vertebrate embryogenesis. Within this gene family, retinoic acid receptors and retinoic acid itself have profound influences on the establishment of the A/P axis. Thyroid hormone receptors are expressed during early periods of development, long before the establishment of the thyroid gland, and are able to interact with retinoic acid receptors. Here we examined the ability of the thyroid hormone receptor alpha 1 to affect early embryonic development by mRNA injection of either repressor or activator forms of the thyroid hormone receptor. Overexpression of either the thyroid hormone receptor alpha 1 or a constitutive repressor form, v-erbA, caused a swelling in the rostral hindbrain. These defects were associated with disorganization and loss of rhombomere borders as well as an increase in the number of acetylcholine esterase positive cells. This phenotype correlated with a reduction in hoxa1 expression during gastrulation. Furthermore, injection of either thyroid hormone receptor alpha 1 or v-erbA mRNA repressed a reporter gene that contained a retinoic acid response element, demonstrating the ability of the thyroid hormone receptor alpha 1 to repress retinoic acid signaling during gastrulation. In contrast, embryos treated with retinoic acid alone or embryos injected with thyroid hormone receptor alpha 1 and treated with the thyroid hormone analog TRIAC displayed a similar set of defects, including loss of the midbrain-hindbrain border and severe disruption of the rostral hindbrain. These studies support the involvement of retinoic acid and its receptors in the direct control of Hox gene expression and the early patterning of the zebrafish central nervous system."	"PAC and cosmid contig spanning the HOXA cluster on human chromosome 7p15. To construct the PAC and cosmid contig map spanning the HOXA cluster on human chromosome 7, we used 9 DNA markers (D7S2243, D7S3010, HOXA1, EVX1, 750, pBH8, p60, p8.0, and HOXA11), among which the final 4 were generated in this study by shotgun cloning strategy. From the libraries, 5 PAC and 35 cosmid clones were screened and as a result, an overlapping continuous array of cosmid and PAC clones covering the genomic region (about 200 kb) spanning the entire cluster were constructed. The isolated cosmids contained several consecutive HOX genes of regional group, probably sharing the regulatory processes such as alternative splicing or polyadenylation, and thus could be used as useful materials for elucidating the molecular mechanism of HOX gene expression in the future."	"1 + 1 = r4 and much much more. Expression and mutational analysis has shown that the vertebrate Hox genes are instrumental in patterning of the developing embryo. However, the combined effects of functional redundancy, compensation, and synergy often obscure the precise roles of these genes. By combining gene targeting strategies with the analysis of regulatory sequences from the Hoxa1 and Hoff1 genes, it has been possible to bypass some of these complications and demonstrate their genetic and functional interactions during the development of the hindbrain and branchial arches."	"The murine Hoxb1 3' RAIDR5 enhancer contains multiple regulatory elements. Homeobox genes play key roles in specifying body part identity during vertebrate embryonic development. Retinoids are signaling molecules involved in the regulation of expression of homeobox genes. We have previously identified an retinoic acid (RA)-inducible enhancer (RAIDR5) located approximately 6.5 kb 3' of the coding region of the murine Hoxb1 gene. This 3' enhancer contains three sequences that are highly conserved in similar RA-inducible enhancers identified in the murine and human Hoxa1 genes and in the chicken Hoxb1 gene. One element, a DR5 RA response element, contributes to the RA inducibility of a Hoxb1 reporter gene construct in F9 cells. In this report, further analysis of the other two elements of the Hoxb1 3' enhancer is reported. The two other sequences, conserved element (CE) 1 and CE2, act as negative elements in cultured F9 cells; when either is mutated, an increase in the beta-galactosidase activity of a Hoxb1 reporter gene construct results. A single Hoxb1 CE2 DNA element:protein binding complex was detected in F9 stem cells, and experiments suggest that this is the same binding protein that recognizes the CE2 element of Hoxa1. In a variant F9 cell line in which both allelic copies of the RA receptor gamma (RARgamma) gene are disrupted, the CE2 binding complex is absent, and this absence correlates with the inability of the CE2 element to function as a repressor of Hoxb1 reporter gene expression in these cells. A single Hoxb1 CE1 binding complex is also detected by gel shift assays in nuclear extracts prepared from both stem and RA-treated F9 cells. This complex contains an Mr approximately 200,000 protein as shown by UV cross-linking. Although the sequences of the CE1 elements of Hoxb1 and Hoxa1 are highly conserved, they differ by two nucleotides. Gel shift analysis shows that either of these nucleotide changes prevents binding of F9 cell protein extracts. When gel shift assays were performed using nuclear extracts prepared from mouse embryos at a time when Hoxb1 mRNA is expressed, i.e., day 9.0, CE1 and CE2 binding complexes identical in mobility to those detected in F9 cells were observed. This suggests roles for both the CE1 and CE2 elements in regulating Hoxb1 gene expression during development."	"Hoxa1 and Krox-20 synergize to control the development of rhombomere 3. The transcription factor genes Hoxa1 and Krox-20 have been shown to play important roles in vertebrate hindbrain segmentation. In this report, we present evidence for novel functions of these genes which co-operate in specifying cellular identity in rhombomere (r) 3. Although Hoxa1 has not been observed to be expressed rostrally to the prospective r3/r4 boundary, its inactivation results in (i) the appearance of patches of cells presenting an r2-like molecular identity within r3, (ii) early neuronal differentiation in r3, normally characteristic of even-numbered rhombomeres, and (iii) abnormal navigation of r3 motor axons, similar to that observed in even-numbered rhombomeres. These phenotypic manifestations become more severe in the context of the additional inactivation of one allele of the Krox-20 gene, demonstrating that Hoxa1 and Krox-20 synergize in a dosage-dependent manner to specify r3 identity and odd- versus even-numbered rhombomere characters. In addition, these data suggest that the control of the development of r3 may not be autonomous but dependent on interactions with Hoxa1-expressing cells."	"Detection of targeted GFP-Hox gene fusions during mouse embryogenesis. The ability to use a vital cell marker to study mouse embryogenesis will open new avenues of experimental research. Recently, the use of transgenic mice, containing multiple copies of the jellyfish gene encoding the green fluorescent protein (GFP), has begun to realize this potential. Here, we show that the fluorescent signals produced by single-copy, targeted GFP in-frame fusions with two different murine Hox genes, Hoxa1 and Hoxc13, are readily detectable by using confocal microscopy. Since Hoxa1 is expressed early and Hoxc13 is expressed late in mouse embryogenesis, this study shows that single-copy GFP gene fusions can be used through most of mouse embryogenesis. Previously, targeted lacZ gene fusions have been very useful for analyzing mouse mutants. Use of GFP gene fusions extends the benefits of targeted lacZ gene fusions by providing the additional utility of a vital marker. Our analysis of the Hoxc13(GFPneo) embryos reveals GFP expression in each of the sites expected from analysis of Hoxc13(lacZneo) embryos. Similarly, Hoxa1(GFPneo) expression was detected in all of the sites predicted from RNA in situ analysis. GFP expression in the foregut pocket of Hoxa1(GFPneo) embryos suggests a role for Hoxa1 in foregut-mediated differentiation of the cardiogenic mesoderm."	"An enhancer element in the EphA2 (Eck) gene sufficient for rhombomere-specific expression is activated by HOXA1 and HOXB1 homeobox proteins. In the hindbrain of the mouse embryo, there is often coincident rhombomere-restricted expression of Eph receptor tyrosine kinases and Hox homeobox genes, raising the possibility of regulatory interactions. In this paper, we have identified cis-acting regulatory sequences of the EphA2 (Eck) gene, which direct node and hindbrain-specific expression in transgenic embryos. An 8-kilobase region of mouse genomic DNA element was sufficient to drive rhombomere 4 (r4)-specific expression while conferring patchy expression in the node. Further analysis localized the rhombomere-specific enhancer to a 0.9-kilobase sequence. This element contains multiple Hox-Pbx consensus binding sites that bind to both HOXA1/Pbx1 and HOXB1/Pbx1 proteins in vitro. Co-expression of either HOXA1 or HOXB1 with Pbx1 transactivated EphA2 enhancer-dependent reporter gene expression. These results, together with observations of reduced EphA2 expression in hoxa1 and hoxb1 double mutant mice, suggest that expression of EphA2 gene in rhombomere 4 is directly regulated by Hoxa1 and Hoxb1 homeobox transcription factors."	"The coding region of the Bloom syndrome BLM gene and of the CBL proto-oncogene is mutated in genetically unstable sporadic gastrointestinal tumors. Microsatellite instability (MSI) characterizes the hereditary nonpolyposis colorectal cancer syndrome but is also found in sporadic tumors. Frameshifts in microsatellites found in the coding regions (CDRs) of the TGFbeta1-RII, IGFIIR, hMSH3, hMSH6, and BAX genes indicate that MSI is involved in tumorigenesis by targeting genes that are directly implicated in the tumorigenic process. To identify additional genes targeted for MSI, we performed an analysis of the GenBank database that revealed 21 microsatellite repeats located in the CDR of 18 genes (12% of the analyzed sequences) whose function could be potentially associated with the tumorigenic process. Mutational studies of 57 sporadic gastrointestinal tumor DNAs revealed the presence of length variations in three of them: (a) BLM; (b) CBL; and (c) HOXA1. In the BLM gene, we found a frameshift mutation in a polyadenine repeat, whereas in the CBL proto-oncogene, an expansion of a trinucleotide repeat was detected with no translation shift. These alterations were present in 18 and 9%, respectively, of the genetically unstable sporadic gastrointestinal tumors analyzed, but in none of the cancers without the mutator phenotype. These changes were present in the DNA from the tumor but not in that from normal cells of the same patient. The HOXA1 retraction of a trinucleotide repeat was as frequent in both types of cancers and was also found in some normal paired tissues, therefore behaving as a neutral polymorphism. Our data extend the spectrum of unstable microsatellites located in gene CDRs and suggest that BLM and possibly CBL are involved in gastrointestinal tumorigenesis. Based on its proposed function, the BLM gene could represent a link between MSI and chromosomal instability pathways, because MSI targeting of the BLM gene could generate hypermutability and/or chromosomal instability."	"The development of the vertebrate inner ear. The inner ear is a complex sensory organ responsible for balance and sound detection in vertebrates. It originates from a transient embryonic structure, the otic vesicle, that contains all of the information to develop autonomously into the mature inner ear. We review here the development of the otic vesicle, bringing together classical embryological experiments and recent genetic and molecular data. The specification of the prospective ectoderm and its commitment to the otic fate are very early events and can be related to the expression of genes with restricted expression domains. A combinatorial gene expression model for placode specification and diversification, based on classical embryological evidence and gene expression patterns, is discussed. The formation of the otic vesicle is dependent on inducing signals from endoderm, mesoderm and neuroectoderm. Ear induction consists of a sequence of discrete instructions from those tissues that confer its final identity on the otic field, rather than a single all-or-none process. The important role of the neural tube in otic development is highlighted by the abnormalities observed in mouse mutants for the Hoxa1, kreisler and fgf3 genes and those reported in retinoic acid-deficient quails. Still, the nature of the relation between the neural tube and otic development remains unclear. Gene targeting experiments in the mouse have provided evidence for genes potentially involved in regional and cell-fate specification in the inner ear. The disruption of the mouse Brn3.1 gene identifies the first mutation affecting sensory hair-cell specification, and mutants for Pax2 and Nkx5.1 genes show their requirement for the development of specific regions of the otic vesicle. Several growth-factors contribute to the patterned cell proliferation of the otic vesicle. Among these, IGF-I and FGF-2 are expressed in the otic vesicle and may act in an autocrine manner. Finally, little is known about early mechanisms involved in guiding ear innervation. However, targeted disruption of genes coding for neurotrophins and Trk receptors have shown that once synaptic contacts are established, they depend on specific trophic interactions that involve these two gene families. The accessibility of new cellular and molecular approaches are opening new perspectives in vertebrate development and are also starting to be applied to ear development. This will allow this classical and attractive model system to see a rapid progress in the near future."	"A conserved C-terminal domain in PBX increases DNA binding by the PBX homeodomain and is not a primary site of contact for the YPWM motif of HOXA1. HOX proteins are dependent upon cofactors of the PBX family for specificity of DNA binding. Two regions that have been implicated in HOX/PBX cooperative interactions are the YPWM motif, found N-terminal to the HOX homeodomain, and the GKFQ domain (also known as the Hox cooperativity motif) immediately C-terminal to the PBX homeodomain. Using derivatives of the E2A-PBX oncoprotein, we find that the GKFQ domain is not essential for cooperative interaction with HOXA1 but contributes to the stability of the complex. By contrast, the YPWM motif is strictly required for cooperative interactions in vitro and in vivo, even with mutants of E2A-PBX lacking the GKFQ domain. Using truncated PBX proteins, we show that the YPWM motif contacts the PBX homeodomain. The presence of the GKFQ domain increases monomer binding by the PBX homeodomain 5-fold, and the stability of the HOXA1.E2A-PBX complex 2-fold. These data suggest that the GKFQ domain acts mainly to increase DNA binding by PBX, rather than providing a primary contact site for the YPWM motif of HOXA1. We have identified 2 residues, Glu-301 and Tyr-305, required for GKFQ function and suggest that this is dependent on alpha-helical character."	"Hoxa1 and Hoxb1 synergize in patterning the hindbrain, cranial nerves and second pharyngeal arch. The analysis of Hoxa1 and Hoxb1 null mutants suggested that these genes are involved in distinct aspects of hindbrain segmentation and specification. Here we investigate the possible functional synergy of the two genes. The generation of Hoxa1(3'RARE)/Hoxb1(3'RARE) compound mutants resulted in mild facial motor nerve defects reminiscent of those present in the Hoxb1 null mutants. Strong genetic interactions between Hoxa1 and Hoxb1 were uncovered by introducing the Hoxb1(3'RARE) and Hoxb1 null mutations into the Hoxa1 null genetic background. Hoxa1(null)/Hoxb1(3'RARE) and Hoxa1(null)/Hoxb1(null )double homozygous embryos showed additional patterning defects in the r4-r6 region but maintained a molecularly distinct r4-like territory. Neurofilament staining and retrograde labelling of motor neurons indicated that Hoxa1 and Hoxb1 synergise in patterning the VIIth through XIth cranial nerves. The second arch expression of neural crest cell markers was abolished or dramatically reduced, suggesting a defect in this cell population. Strikingly, the second arch of the double mutant embryos involuted by 10.5 dpc and this resulted in loss of all second arch-derived elements and complete disruption of external and middle ear development. Additional defects, most notably the lack of tympanic ring, were found in first arch-derived elements, suggesting that interactions between first and second arch take place during development. Taken together, our results unveil an extensive functional synergy between Hoxa1 and Hoxb1 that was not anticipated from the phenotypes of the simple null mutants."	"Genetic interactions between Hoxa1 and Hoxb1 reveal new roles in regulation of early hindbrain patterning. In the developing vertebrate hindbrain Hoxa1 and Hoxb1 play important roles in patterning segmental units (rhombomeres). In this study, genetic analysis of double mutants demonstrates that both Hoxa1 and Hoxb1 participate in the establishment and maintenance of Hoxb1 expression in rhombomere 4 through auto- and para-regulatory interactions. The generation of a targeted mutation in a Hoxb1 3' retinoic acid response element (RARE) shows that it is required for establishing early high levels of Hoxb1 expression in neural ectoderm. Double mutant analysis with this Hoxb1(3'RARE) allele and other targeted loss-of-function alleles from both Hoxa1 and Hoxb1 reveals synergy between these genes. In the absence of both genes, a territory appears in the region of r4, but the earliest r4 marker, the Eph tyrosine kinase receptor EphA2, fails to be activated. This suggests a failure to initiate rather than maintain the specification of r4 identity and defines new roles for both Hoxb1 and Hoxa1 in early patterning events in r4. Our genetic analysis shows that individual members of the vertebrate labial-related genes have multiple roles in different steps governing segmental processes in the developing hindbrain."	"Refined mapping of a gene for autosomal dominant progressive sensorineural hearing loss (DFNA5) to a 2-cM region, and exclusion of a candidate gene that is expressed in the cochlea. A gene for an autosomal dominant form of progressive sensorineural hearing loss (DFNA5) was previously assigned by us to a 15-cM region on chromosome 7p15. In this study, the DFNA5 candidate region was refined to less than 2 cM, and completely cloned in a YAC contig. The HOXA1 gene located in 7p15 was considered to be a good candidate gene for DFNA5 as it harbours mutations leading to developmental defects of the inner ear in mice. However, the refinement of the candidate region of DFNA5 excludes the HOXA1 gene as a candidate for DFNA5. We cloned a novel candidate gene (CG1, candidate gene 1), which is expressed in human fetal cochlea, from the DFNA5 candidate region. The complete cDNA sequence of CG1, encoding a 423 amino acid protein of unknown function, was determined. Mutation analysis of the CG1 gene in DFNA5 patients, however, could not reveal a disease-causing mutation."	"An evolutionary conserved element is essential for somite and adjacent mesenchymal expression of the Hoxa1 gene. The murine Hoxa1 gene is a member of the vertebrate Hox complex and plays a role in defining the body plan during development. At day 8.0-9.0 post coitus, Hoxa1 transcripts are detected extensively throughout the embryo in the neural tube, adjacent mesenchyme, paraxial mesoderm, somites and gut epithelium; expression extends from the most caudal region of the embryo to the rhombomere 3/4 border. This spatiotemporal expression of Hoxa1 mRNA is critical for normal embryonic development. We have previously identified a 10 bp element, called CE2, which is located approximately 3 kilobases 3' of the Hoxa1 coding region in the RAIDR5 enhancer, and which binds to an approximately 170 kd protein in retinoic acid treated P19 embryonal carcinoma cells. CE2 elements were also identified 3' of the murine Hoxb1 gene, the chicken Hoxb1 gene and the human Hoxa1 gene. To examine the role of this CE2 element in regulating Hoxa1 expression in vivo, transgenic mice were generated which express a Hoxa1 beta-galactosidase reporter gene that contains a mutation in the CE2 element. Relative to transgenic mice bearing a wild type CE2 element, the mutant CE2 construct recapitulated rhombomeric, neural, and gut epithelium expression but failed to show beta-galactosidase expression in somites and adjacent mesenchymal tissue. Gel shift analysis showed that binding activity similar to that detected in extracts prepared from retinoic acid treated P19 cells was present in nuclear extracts prepared from day 9.0 embryos. However, an additional binding complex not detected in P19 cells was also observed. These results indicate that in transgenic animals, the evolutionary conserved CE2 element is a somite and adjacent mesenchymal enhancer of Hoxa1 expression."	"Cross-regulation in the mouse HoxB complex: the expression of Hoxb2 in rhombomere 4 is regulated by Hoxb1. Correct regulation of the segment-restricted patterns of Hox gene expression is essential for proper patterning of the vertebrate hindbrain. We have examined the molecular basis of restricted expression of Hoxb2 in rhombomere 4 (r4), by using deletion analysis in transgenic mice to identify an r4 enhancer from the mouse gene. A bipartite Hox/Pbx binding motif is located within this enhancer, and in vitro DNA binding experiments showed that the vertebrate labial-related protein Hoxb1 will cooperatively bind to this site in a Pbx/Exd-dependent manner. The Hoxb2 r4 enhancer can be transactivated in vivo by the ectopic expression of Hoxb1, Hoxa1, and Drosophila labial in transgenic mice. In contrast, ectopic Hoxb2 and Hoxb4 are unable to induce expression, indicating that in vivo this enhancer preferentially responds to labial family members. Mutational analysis demonstrated that the bipartite Hox/Pbx motif is required for r4 enhancer activity and the responses to retinoids and ectopic Hox expression. Furthermore, three copies of the Hoxb2 motif are sufficient to mediate r4 expression in transgenic mouse embryos and a labial pattern in Drosophila embryos. This reporter expression in Drosophila embryos is dependent upon endogenous labial and exd, suggesting that the ability of this Hox/Pbx site to interact with labial-related proteins has been evolutionarily conserved. The endogenous Hoxb2 gene is no longer upregulated in r4 in Hoxb1 homozygous mutant embryos. On the basis of these experiments we conclude that the r4-restricted domain of Hoxb2 in the hindbrain is the result of a direct cross-regulatory interaction by Hoxb1 involving vertebrate Pbx proteins as cofactors. This suggests that part of the functional role of Hoxb1 in maintaining r4 identity may be mediated by the Hoxb2 gene."	"Functional dissection of a transcriptionally active, target-specific Hox-Pbx complex. Hox genes control cell fates and specify regional identities in vertebrate development. Hox proteins show a relaxed DNA-binding selectivity in vitro, suggesting that functional specificity is achieved in vivo through the action of transcriptional co-factors. Pbx proteins are good candidates for such a role, on the basis of both genetic and biochemical evidence. We report that the human Pbx1 and HOXB1 proteins can cooperatively activate transcription through a genetically characterized Hox target, i.e. an autoregulatory element directing spatially restricted expression of the murine Hoxb-1 gene (b1-ARE) in the developing hindbrain. On the b1-ARE, only a restricted subset of HOX proteins (HOXA1, HOXB1, HOXA2) are able to bind cooperatively with Pbx1 and activate transcription. Selective recognition of the b1-ARE is mediated by the N-terminal region of the HOX homeodomain. The DNA-binding and protein-protein interaction functions of HOXB1 and Pbx1 are all necessary for the assembly of a transcriptionally active complex on the b1-ARE. Functional dissection of the complex allowed the localization of the main activation domain in the HOXB1 N-terminal region, and of an additional one in the C-terminal region of Pbx1 contained in the Pbx1a but not in the alternatively spliced Pbx1b isoform. Our results indicate that Pbx1 acts as a transcriptional co-factor of Hox proteins, allowing selective recognition and cooperative activation of regulatory target sequences."	"Physical mapping of the HOXA1 gene and the hnRPA2B1 gene in a YAC contig from human chromosome 7p14-p15. A cluster of homeobox-containing genes (HOXA) and a heterogeneous nuclear ribonucleoprotein (hnRPA2B1) have both previously been assigned to chromosome 7p15 by in situ hybridization. In this report, we constructed a YAC contig from chromosome 7p14-p15, between markers D7S2496 and D7S1838, and determined the position of the HOXA1 gene and the hnRPA2B1 gene in this YAC contig."	"Distinct HOX N-terminal arm residues are responsible for specificity of DNA recognition by HOX monomers and HOX.PBX heterodimers. Dimerization with extradenticle or PBX homeoproteins dramatically improves DNA binding by HOX transcription factors, indicating that recognition by such complexes is important for HOX specificity. For HOX monomeric binding, a major determinant of specificity is the flexible N-terminal arm. It makes base-specific contacts via the minor groove, including one to the 1st position of a 5'-TNAT-3' core by a conserved arginine (Arg-5). Here we show that Arg-5 also contributes to the stability of HOX.PBX complexes, apparently by forming the same DNA contact. We further show that heterodimers of PBX with HOXA1 or HOXD4 proteins have different specificities at another position recognized by the N-terminal arm (the 2nd position in the TNAT core). Importantly, N-terminal arm residues 2 and 3, which distinguish the binding of HOXA1 and HOXD4 monomers, play no role in the specificity of their complexes with PBX. In addition, HOXD9 and HOXD10, which are capable of binding both TTAT and TAAT sites as monomers, can cooperate with PBX1A only on a TTAT site. These data suggest that some DNA contacts made by the N-terminal arm are altered by interaction with PBX."	"Detection of HOXA1 expression in human breast cancer. Homeodomain-containing proteins are transcription factors that regulate the coordinated expression of multiple genes involved in development, differentiation and malignant transformation. To better understand the role played by these proteins in breast cancer cells, we demonstrate, using semi-quantitative RT-PCR experiments, that progestin induces HOXA1 mRNAs in MCF7 cells. This is the first evidence of regulation of a HOX gene by steroids. Moreover, we detected HOXA1 expression in a variety of human breast cancer lesions, suggesting that HOXA1 may be required for the establishment of breast cancer cells phenotype. We propose that HOXA1 gene could be one of the orchestrators that regulate breast epithelial cell differentiation and that alteration of HOXA1 expression could play a role in breast cancer progression."	"Retinoid X receptor-selective ligands produce malformations in Xenopus embryos. Retinoids exert pleiotropic effects on the development of vertebrates through the action of retinoic acid receptors (RAR) and retinoid X receptors (RXR). We have investigated the effect of synthetic retinoids selective for RXR and RAR on the development of Xenopus and zebrafish embryos. In Xenopus, both ligands selective for RAR and RXR caused striking malformations along the anterior-posterior axis, whereas in zebrafish only ligands specific for RAR caused embryonic malformations. In Xenopus, RAR- and RXR-selective ligands regulated the expression of the Xlim-1, gsc, and HoxA1 genes similarly as all-trans-retinoic acid. Nevertheless, RXR-selective ligands activated only an RXR responsive reporter but not an RAR responsive reporter introduced by microinjection into the Xenopus embryo, consistent with our failure to detect conversion of an RXR-selective ligand to different derivatives in the embryo. These results suggest that Xenopus embryos possess a unique response pathway in which liganded RXR can control gene expression. Our observations further illustrate the divergence in retinoid responsiveness between different vertebrate species."	"Retinoic acid induces three newly cloned HOXA1 transcripts in MCF7 breast cancer cells. Coordinated expression of genes involved in development, differentiation and malignant transformation is regulated by transcription factors including homeodomain-containing proteins. However, most of their cDNA sequences are still unknown. We report here the molecular characterization of three newly cloned HOXA1 transcripts from human breast cancer cells. In addition, we provide evidence that these alternatively spliced transcripts encode one homeodomain-containing protein and two products lacking the conserved DNA-binding domain. Moreover, we demonstrate that all three HOXA1 transcripts are induced by retinoic acid in MCF7 cells. Taken together, our results suggest that HOXA1 gene may be a key element in the establishment of the breast cancer cell phenotype."	"Regulation of the Xenopus labial homeodomain genes, HoxA1 and HoxD1: activation by retinoids and peptide growth factors. Vertebrate homologues of Drosophila labial are likely to play key roles in anteroposterior axis formation. However, little is known about the regulation of these genes during vertebrate development. Here we examine the expression and regulation of the Xenopus labial homeodomain genes, HoxA1 and HoxD1. HoxA1 was expressed around the dorsoventral circumference of the trunk in neurula embryos, with later expression in spinal cord, midbrain, hindbrain, and endolymphatic duct. By mid gastrula, HoxD1 was predominantly expressed in dorsolateral and ventral ectoderm, with a gap in expression at the dorsal midline. By neurula, ventral expression had declined with most expression restricted to dorsolateral mesoderm and ectoderm. Retinoic acid strongly induced HoxA1 and HoxD1 throughout the ectoderm and mesendoderm of gastrula stages, while in older embryos retinoids induced ectopic expression of these genes in more limited regions. Induction by retinoids was independent of protein synthesis. Surprisingly, HoxA1 was expressed at high levels in isolated animal caps in the absence of retinoic acid. The peptide growth factors bFGF and activin A strongly induced expression of HoxD1, but not HoxA1, in animal caps; however, RNA accumulated only many hours after the application of these factors. Overexpression of thyroid hormone receptor (c-erbA) prevented induction of HoxD1 by retinoic acid in animal caps. c-erbA also ablated expression of HoxD1 in whole embryos, suggesting a role for endogenous retinoids in the regulation of HoxD1 expression. Dominant interfering activin and FGF receptors prevented expression of HoxD1 in vivo, implicating these factors in the normal induction of HoxD1. Our data indicate that induction of labial-like homeodomain genes is complex and may require many factors."	"Inhibition of proliferation and induction of differentiation of pluripotent human embryonal carcinoma cells by osteogenic protein-1 (or bone morphogenetic protein-7). Osteogenic protein-1 (OP-1) is a member of the transforming growth factor-beta super family closely related to the bone morphogenetic proteins and also known as bone morphogenetic protein-7. Other members of this family of growth factors influence cell differentiation as well as cell growth in a number of systems. The Drosophila homolog encoded by the decapentaplegic locus is involved in dorsal-ventral pattern formation during embryogenesis, whereas the expression of several bone morphogenetic proteins including OP-1 is developmentally regulated in mammalian embryos. The effect of recombinant human OP-1 on the proliferation and differentiation of an established pluripotent human embryonal carcinoma (EC) cell line, NTERA2, and three nullipotent human EC cell lines, 2102Ep, 833KE and TERA-1, was investigated. These cells were grown under reduced serum conditions, and differentiation was monitored by morphology and expression of marker antigens. OP-1 inhibited proliferation of NTERA2 and induced their differentiation, marked by changes in cellular morphology, the loss of EC cell antigens (SSEA3, SSEA4, the liver isozyme of alkaline phosphatase), and the appearance of new antigens, notably SSEA1 and class 1 major histocompatibility complex antigens. These changes were irreversible and did not involve significant cell degeneration or cell death. The OP-1-induced differentiation of NTERA2 appeared distinct from that induced by either retinoic acid or hexamethylene bisacetamide. Nevertheless, OP-1 did induce the homeobox gene, HOXA1. By contrast, OP-1 elicited only a limited and partial response from the nullipotent EC cell lines. Our results suggest that pluripotent human EC cells differentiate in response to OP-1 and that this factor can modulate the differentiation induced by retinoic acid. Like other members of the transforming growth factor-beta super family, OP-1 might play an inductive role in the early embryo. The results also suggest a possible therapeutic value for OP-1 in the treatment of some germ cell tumors."	"Homeobox genes: potential candidates for the transcriptional control of the transformed and invasive phenotype. The transformation of a cell and the acquisition of the invasive and metastatic phenotype result from the activation of a group of complex cellular processes rather than from the effect of a single gene product. It is likely that the coordination of the multiple genes involved in malignancy is under the control of a few genes that act as master genes or orchestrator genes. The latter probably code for transcription factors that control the genetic program for tumor invasion and metastasis. Homeobox genes are a family of transcription factors that contain a 183 bp highly conserved nucleotide sequence coding for a 61 amino acid domain that binds specifically to DNA. First discovered in Drosophila as genes controlling segmentation and segment identity, homeobox genes have since been identified in many other species including nematodes, frog, mouse and human. There is strong support for the suggestion that homeobox genes play a key role in development and differentiation. In humans, there are 38 homeobox genes organized in four clusters that are localized on chromosomes 2, 7, 12 and 17. The specific functions of each of these genes are generally unknown. Alterations in expression of several homeobox genes have been reported in a variety of malignant lesions, suggesting that they could play a role in the development of cancer. Using reverse transcriptase reaction coupled with polymerase chain reaction and degenerate oligonucleotides corresponding to the 5' and 3' ends of the highly conserved homeodomain, we amplified 130 bp cDNA fragments from the human breast cancer cell line MCF7 that were subsequently cloned into pBluescript vector. Sequencing of the clones, resulted in the identification of the homeodomains of four different human homeobox genes: HOXB6, HOXA1, HOXA10 and HOXC6. Further studies should determine the specific role of these four homeobox genes in the development and progression of human breast cancer and potentially determine if they might be good targets for gene therapy."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"IQSEC2"	"complex neurodevelopmental disorder"	"Novel familial IQSEC2 pathogenic sequence variant associated with neurodevelopmental disorders and epilepsy. Pathogenic sequence variants in the IQ motif- and Sec7 domain-containing protein 2 (IQSEC2) gene have been confirmed as causative in the aetiopathogenesis of neurodevelopmental disorders (intellectual disability, autism) and epilepsy. We report on a case of a family with three sons; two of them manifest delayed psychomotor development and epilepsy. Initially proband A was examined using a multistep molecular diagnostics algorithm, including karyotype and array-comparative genomic hybridization analysis, both with negative results. Therefore, probands A and B and their unaffected parents were enrolled for an analysis using targeted &quot;next-generation&quot; sequencing (NGS) with a gene panel ClearSeq Inherited Disease<sup>XT</sup> (Agilent Technologies) and verification analysis by Sanger sequencing. A novel frameshift variant in the X-linked IQSEC2 gene NM_001111125.2:c.1813_1814del, p.(Asp605Profs*3) on protein level, was identified in both affected probands and their asymptomatic mother, having skewed X chromosome inactivation (XCI) (100:0). As the IQSEC2 gene is a known gene escaping from XCI in humans, we expect the existence of mechanisms maintaining the normal or enough level of the IQSEC2 protein in the asymptomatic mother. Further analyses may help to the characterization of the presented novel frameshift variant in the IQSEC2 gene as well as to elucidate the mechanisms leading to the rare asymptomatic phenotypes in females."	"Psychiatric features and variable neurodevelopment outcome in four females with IQSEC2 spectrum disorder. IQSEC2 is an X-linked gene highly expressed at the excitatory synapses where it plays a crucial role in α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid receptor trafficking and synaptic plasticity. To date, several males and females with severe to profound intellectual disability have been reported harbouring frameshift and nonsense variants in this gene, whereas a milder phenotype has been recognized in females carrying missense pathogenic variants. Here, we report two novel IQSEC2 variants in four females with psychiatric features and otherwise variable cognitive impairment. A female (case 1) with severe verbal language learning disorder and a psychotic episode (precipitated by exposure to anti-contraceptive pill) harboured a de novo pathogenic frameshift variant (c.1170dupG,p.Gln391Alafs*5), whereas the female proband of family 2, displaying severe psychomotor regression and complex psychiatric features carried a missense variant of uncertain significance (c.770G[A,p.Ser257Asn) that was maternally inherited. Skewed X-inactivation was noted in the carrier mother. The maternal aunt, affected by schizophrenia, was found to bear the same IQSEC2 variant. We discuss the variable clinical presentation of IQSEC2 spectrum disorders and the challenging genotype-phenotype correlation, including the possible role of environmental factors as triggers for decompensation. Our report highlights how psychiatric features may be the main clinical presentation in subtle IQSEC2 phenotype, suggesting that the prevalence of IQSEC2 mutations in patients with psychiatric disorders may be underestimated."	"Glycine Receptor Complex Analysis Using Immunoprecipitation-Blue Native Gel Electrophoresis-Mass Spectrometry. The pentameric glycine receptor (GlyR), comprising the α1 and β subunits, is a major inhibitory ionotropic receptor in brainstem and spinal cord. GlyRs interact with gephyrin (GPHN), a scaffold protein that anchors the GlyR in the plasma membrane and enables it to form clusters in glycinergic postsynapses. Using an interaction proteomics approach, evidence of the ArfGEFs IQ motif and Sec7 domain 3 (IQSEC3) and IQ motif and Sec7 domain 2 (IQSEC2) as two novel synaptic proteins interacting with GlyR complexes is provided. When the affinity-isolated GlyR complexes are fractionated by blue native gel electrophoresis and characterized by mass spectrometry, GlyR α1β-GPHN appears as the most abundant complex with a molecular weight of ≈1 MDa, and GlyR α1β-GPHN-IQSEC3 as a minor protein complex of ≈1.2 MDa. A third GlyR α1β-GPHN-IQSEC2 complex exists at the lowest amount with a mass similar to the IQSEC3 containing complex. Using yeast two-hybrid it is demonstrated that IQSEC3 interacts with the GlyR complex by binding to the GPHN G domain at the N-terminal of the IQSEC3 IQ-like domain. The data provide direct evidence of the interaction of IQSEC3 with GlyR-GPHN complexes, underscoring a potential role of these ArfGEFs in the function of glycinergic synapses."	"Altered excitatory transmission onto hippocampal interneurons in the IQSEC2 mouse model of X-linked neurodevelopmental disease. Mutations in the X-linked gene IQSEC2 are associated with multiple cases of epilepsy, epileptic encephalopathy, intellectual disability and autism spectrum disorder, the mechanistic understanding and successful treatment of which remain a significant challenge in IQSEC2 and related neurodevelopmental genetic diseases. To investigate disease etiology, we studied behaviors and synaptic function in IQSEC2 deficient mice. Hemizygous Iqsec2 null males exhibit growth deficits, hyperambulation and hyperanxiety phenotypes. Adult hemizygotes experience lethal spontaneous seizures, but paradoxically have a significantly increased threshold to electrically induced limbic seizures and relative resistance to chemically induced seizures. Although there are no gross defects in brain morphology, hemizygotes exhibit stark hippocampal reactive astrogliosis. Electrophysiological recordings of hippocampal neurons reveal increased excitatory drive specifically onto interneurons, and significant alterations in intrinsic electrical properties specific to the interneuron population. As they age, hemizygotes also develop an increased abundance of parvalbumin-positive interneurons in the hippocampus, neurons in which IQSEC2 is expressed in addition to the excitatory neurons. These findings point to a novel role of IQSEC2 in hippocampal interneuron synaptic function and development with implications for a class of intractable neurodevelopmental diseases."	"Targeted Next-Generation Sequencing in Patients with Suggestive X-Linked Intellectual Disability. X-linked intellectual disability (XLID) is known to contribute up to 10% of intellectual disability (ID) in males and could explain the increased ratio of affected males observed in patients with ID. Over the past decade, next-generation sequencing has clearly stimulated the gene discovery process and has become part of the diagnostic procedure. We have performed targeted next-generation sequencing of 82 XLID genes on 61 non-related male patients with suggestive non-syndromic XLID. These patients were initially referred to the molecular genetics laboratory to exclude Fragile X Syndrome. The cohort includes 47 male patients with suggestive X-linked family history of ID meaning that they had half-brothers or maternal cousins or uncles affected; and 14 male patients with ID and affected brothers whose mothers show skewed X-inactivation. Sequencing data analysis identified 17 candidate variants in 16 patients. Seven families could be re-contacted and variant segregation analysis of the respective eight candidate variants was performed: HUWE1, IQSEC2, MAOA, MED12, PHF8, SLC6A8, SLC9A6, and SYN1. Our results show the utility of targeted next-generation sequencing in unravelling the genetic origin of XLID, especially in retrospective cases. Variant segregation and additional studies like RNA sequencing and biochemical assays also helped in re-evaluating and further classifying the genetic variants found."	"A Novel X-Linked Variant of IQSEC2 is Associated with Lennox-Gastaut Syndrome and Mild Intellectual Disability in Three Generations of a Korean Family.  Aim:  Lennox-Gastaut syndrome (LGS) is a severe type of childhood-onset epilepsy with multiple types of seizures, specific discharges on electroencephalography, and intellectual disability. However, LGS-related genes are largely unknown. To identify causative genes related to LGS, we collected and analyzed data from a three-generation Korean family in which one member had LGS and two had intellectual disability.  Methods:  Genomic DNAs were extracted from blood samples of all participants and used in whole-exome sequencing (WES). Genetic variants were detected by the Genome Analysis Toolkit and confirmed by Sanger sequencing. Variant pathogenicity was evaluated by prediction programs and the American College of Medical Genetics criteria. The LGS patient had generalized slow spike-and-wave discharges, multiple types of seizures, and developmental delay.  Results:  Analyses of the WES data from the family revealed a novel variant (c.1048G&gt;A, p.Ala350Thr) in the IQ motif and Sec7 domain 2 (IQSEC2). This variant is within a highly evolutionarily conserved IQ-like motif, indicating a decrease in the calmodulin-binding capacity or α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid transmission. The hemizygous variant in the male with LGS was a maternally inherited X-linked variant from the heterozygous maternal grandmother and mother, both of whom had intellectual disability.  Conclusion:  These findings indicate that the variant of IQSEC2 triggered both LGS and intellectual disability dependent on sex in this family. We report a novel X-linked inherited IQSEC2 variant for LGS and intellectual disability, which enhances the spectrum of variants in the IQ-like motif of IQSEC2."	"Rett and Rett-like syndrome: Expanding the genetic spectrum to KIF1A and GRIN1 gene. This study aimed to investigate the new genetic etiologies of Rett syndrome (RTT) or Rett-like phenotypes. Targeted next-generation sequencing (NGS) was performed on 44 Chinese patients with RTT or Rett-like phenotypes, in whom genetic analysis of MECP2, CDKL5, and FOXG1 was negative. The detection rate was 31.8% (14/44). A de novo pathogenic variant (c.275_276ins AA, p. Cys92*) of KIF1A was identified in a girl with all core features of typical RTT. A patient with atypical RTT was detected having de novo GRIN1 pathogenic variant (c.2337C &gt; A, p. Val793Phe). Additionally, compound heterozygous pathogenic variants of PPT1 gene were detected in a girl, who initially displayed typical RTT features, but progressed into neuronal ceroid lipofuscinoses (NCL) afterwards. Pathogenic variants in KCNQ2, MEF2C, WDR45, TCF4, IQSEC2, and SDHA were also found in our cohort. It is the first time that pathogenic variants of GRIN1 and KIF1A were linked to RTT and Rett-like profiles. Our findings expanded the genetic heterogeneity of Chinese RTT or Rett-like patients, and also suggest that some patients with genetic metabolic disease such as NCL, might displayed Rett features initially, and clinical follow-up is essential for the diagnosis."	"A case of intellectual disability reveals a novel mutation in IQSEC2 gene by whole exome sequencing. Intellectual disability refers to significantly subaverage intellectual function (intelligence quotient &lt; 70) with impairment of adaptive function. The IQSEC2 gene is one of the pathogenic genes located on chromosome Xp11.22. IQSEC2 is an X-linked gene correlated with intellectual disability and epilepsy. In this study, we reported a 2-year-old male patient presented with reacting sluggishly with people and surroungdings. Active electroencephalogram showed the background of epileptic activity. Brain MRI revealed patchy hyperintensity of bilateral parietal lobe white matter on fluid-attenuated inversion recovery image and widened ventricle, cistern and sulci on T2-weighted image. Delayed myelination was considered. The diagnosis of intellectual disability and epilepsy was made. Whole exome-sequencing was conducted and identified a novel frameshift mutation in exon 15 of IQSEC2 (NM_001111125.2: c.4164dupC: p.Ile1389 Hisfs*218). The variant resulted in the deletion of termination codon, and the protein was extended to termination after stretch of 218 amino acids.This study expands the mutation spectrum of IQSEC2. It supports the published data suggesting that IQSEC2 plays a significant part in patients with intellectual disability and epilepsy. IQSEC2 should be detected in patients with intellectual disability and epilepsy."	"Heterozygous loss of function of IQSEC2/Iqsec2 leads to increased activated Arf6 and severe neurocognitive seizure phenotype in females. Clinical presentations of mutations in the IQSEC2 gene on the X-chromosome initially implicated to cause non-syndromic intellectual disability (ID) in males have expanded to include early onset seizures in males as well as in females. The molecular pathogenesis is not well understood, nor the mechanisms driving disease expression in heterozygous females. Using a CRISPR/Cas9-edited Iqsec2 KO mouse model, we confirm the loss of Iqsec2 mRNA expression and lack of Iqsec2 protein within the brain of both founder and progeny mice. Both male (52%) and female (46%) Iqsec2 KO mice present with frequent and recurrent seizures. Focusing on Iqsec2 KO heterozygous female mice, we demonstrate increased hyperactivity, altered anxiety and fear responses, decreased social interactions, delayed learning capacity and decreased memory retention/novel recognition, recapitulating psychiatric issues, autistic-like features, and cognitive deficits present in female patients with loss-of-function IQSEC2 variants. Despite Iqsec2 normally acting to activate Arf6 substrate, we demonstrate that mice modelling the loss of Iqsec2 function present with increased levels of activated Arf6. We contend that loss of Iqsec2 function leads to altered regulation of activated Arf6-mediated responses to synaptic signalling and immature synaptic networks. We highlight the importance of IQSEC2 function for females by reporting a novel nonsense variant c.566C &gt; A, p.(S189*) in an elderly female patient with profound intellectual disability, generalised seizures, and behavioural disturbances. Our human and mouse data reaffirm IQSEC2 as another disease gene with an unexpected X-chromosome heterozygous female phenotype. Our Iqsec2 mouse model recapitulates the phenotypes observed in human patients despite the differences in the IQSEC2/Iqsec2 gene X-chromosome inactivation between the species."	"Genotype-phenotype correlation: Inheritance and variant-type infer pathogenicity in IQSEC2 gene. Pathogenic variants in the IQSEC2 gene including nonsense, frameshift, splice-alterations, deletions, and missense changes have been identified in individuals with X-linked mental retardation. Although highly variable, clinical features may include hypotonia, moderate to severe delayed psychomotor development, intellectual disability, speech deficits, refractory seizures, autistic features, and stereotypical movements. Females with de novo variants have been described with classical features. In contrast, the phenotype in carrier females identified through an affected male may range from asymptomatic to mild intellectual disability. We present male (N = 2) and female (N = 3) probands ascertained via diagnostic exome sequencing with distinct variant types in the IQSEC2 gene encompassing a spectrum of phenotypic severity with patient sex, variant type and inheritance hypothesized to drive disease penetrance and expressivity. All of these patients demonstrated epilepsy, global developmental delays, intellectual disability, and constipation. Our data support that de novo, truncating variants correlate with severe disease in both female and male patients harboring an IQSEC2 alteration. Missense variants in male and female patients may account for a milder disease overall, with more severe symptoms in males than females. We also present the first confirmed case of parental mosaicism, which has implications regarding counseling for recurrence risk. These data further delineate a genotype-phenotype correlation of IQSEC2 variation."	"Rs2262251 in lncRNA RP11-462G12.2 is associated with nonsyndromic cleft lip with/without cleft palate. Nonsyndromic cleft lip with/without cleft palate (NSCL/P) is one of the most common human congenital defects. Rs2262251 (G&gt;C) in long noncoding RNA (lncRNA) RP11-462G12.2 is in high linkage disequilibrium with rs8049367, which was identified in our previous genome-wide association study on NSCL/P, and is a potential causative single-nucleotide polymorphism (SNP) for NSCL/P. To test these hypotheses, rs2262251 was evaluated in another cohort of 1,314 cases and 1,259 controls. Rs2262251 was associated with NSCL/P risk (p = .003). However, no association was detected for cleft palate only. SNP rs2262251 affected the structure and expression of lncRNA RP11-462G12.2 in HEK293 and HEPM cells and in lip tissues from patients with NSCL/P. Overexpression of the rs2262251 G allele contributed to reducing the number of cells in the G0/G1 phase, inhibiting cell apoptosis, and promoting cell proliferation in vitro. The rs2262251 C allele regulated the expression of miR-744-5p and its target gene IQSEC2, both of which were expressed in human lip tissues, and showed reverse correlation during mouse lip development. Taken together, these findings suggest that rs2262251 is associated with the risk of NSCL/P and participates in a lncRNA-miRNA-mRNA regulatory axis in which miR-744-5p and IQSEC2 combine to control NSCL/P development."	"IQSEC2-Associated Intellectual Disability and Autism. Mutations in IQSEC2 cause intellectual disability (ID), which is often accompanied by seizures and autism. A number of studies have shown that IQSEC2 is an abundant protein in excitatory synapses and plays an important role in neuronal development as well as synaptic plasticity. Here, we review neuronal IQSEC2 signaling with emphasis on those aspects likely to be involved in autism. IQSEC2 is normally bound to N-methyl-D-aspartate (NMDA)-type glutamate receptors via post synaptic density protein 95 (PSD-95). Activation of NMDA receptors results in calcium ion influx and binding to calmodulin present on the IQSEC2 IQ domain. Calcium/calmodulin induces a conformational change in IQSEC2 leading to activation of the SEC7 catalytic domain. GTP is exchanged for GDP on ADP ribosylation factor 6 (ARF6). Activated ARF6 promotes downregulation of surface α-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (AMPA)-type glutamate receptors through a c-jun N terminal kinase (JNK)-mediated pathway. NMDA receptors, AMPA receptors, and PSD-95 are all known to be adversely affected in autism. An IQSEC2 transgenic mouse carrying a constitutively active mutation (A350V) shows autistic features and reduced levels of surface AMPA receptor subunit GluA2. Sec7 activity and AMPA receptor recycling are presented as two targets, which may respond to drug treatment in IQSEC2-associated ID and autism."	"Use of a Dynamic Genetic Testing Approach for Childhood-Onset Epilepsy. Although genetic testing is important for bringing precision medicine to children with epilepsy, it is unclear what genetic testing strategy is best in maximizing diagnostic yield. To evaluate the diagnostic yield of an exome-based gene panel for childhood epilepsy and discuss the value of follow-up testing. A case series study was conducted on data from clinical genetic testing at Children's Hospital of Philadelphia was conducted from September 26, 2016, to January 8, 2018. Initial testing targeted 100 curated epilepsy genes for sequence and copy number analysis in 151 children with idiopathic epilepsy referred consecutively by neurologists. Additional genetic testing options were offered afterward. Clinical genetic testing. Molecular diagnostic findings. Of 151 patients (84 boys [55.6%]; median age, 4.2 years [interquartile range, 1.4-8.7 years]), 16 children (10.6%; 95% CI, 6%-16%) received a diagnosis after initial panel analysis. Parental testing for 15 probands with inconclusive results revealed de novo variants in 7 individuals (46.7%), resulting in an overall diagnostic yield of 15.3% (23 of 151; 95% CI, 9%-21%). Twelve probands with nondiagnostic panel findings were reflexed to exome sequencing, and 4 were diagnostic (33.3%; 95% CI, 6%-61%), raising the overall diagnostic yield to 17.9% (27 of 151; 95% CI, 12%-24%). The yield was highest (17 of 44 [38.6%; 95% CI, 24%-53%]) among probands with epilepsy onset in infancy (age, 1-12 months). Panel diagnostic findings involved 16 genes: SCN1A (n = 4), PRRT2 (n = 3), STXBP1 (n = 2), IQSEC2 (n = 2), ATP1A2, ATP1A3, CACNA1A, GABRA1, KCNQ2, KCNT1, SCN2A, SCN8A, DEPDC5, TPP1, PCDH19, and UBE3A (all n = 1). Exome sequencing analysis identified 4 genes: SMC1A, SETBP1, NR2F1, and TRIT1. For the remaining 124 patients, analysis of 13 additional genes implicated in epilepsy since the panel was launched in 2016 revealed promising findings in 6 patients. Exome-based targeted panels appear to enable rapid analysis of a preselected set of genes while retaining flexibility in gene content. Successive genetic workup should include parental testing of select probands with inconclusive results and reflex to whole-exome trio analysis for the remaining nondiagnostic cases. Periodic reanalysis is needed to capture information in newly identified disease genes."	"An IQSEC2 Mutation Associated With Intellectual Disability and Autism Results in Decreased Surface AMPA Receptors. We have recently described an A350V mutation in IQSEC2 associated with intellectual disability, autism and epilepsy. We sought to understand the molecular pathophysiology of this mutation with the goal of developing targets for drug intervention. We demonstrate here that the A350V mutation results in interference with the binding of apocalmodulin to the IQ domain of IQSEC2. We further demonstrate that this mutation results in constitutive activation of the guanine nucleotide exchange factor (GEF) activity of IQSEC2 resulting in increased production of the active form of Arf6. In a CRISPR generated mouse model of the A350V IQSEC2 mutation, we demonstrate that the surface expression of GluA2 AMPA receptors in mouse hippocampal tissue was significantly reduced in A350V IQSEC2 mutant mice compared to wild type IQSEC2 mice and that there is a significant reduction in basal synaptic transmission in the hippocampus of A350V IQSEC2 mice compared to wild type IQSEC2 mice. Finally, the A350V IQSEC2 mice demonstrated increased activity, abnormal social behavior and learning as compared to wild type IQSEC2 mice. These findings suggest a model of how the A350V mutation in IQSEC2 may mediate disease with implications for targets for drug therapy. These studies provide a paradigm for a personalized approach to precision therapy for a disease that heretofore has no therapy."	"Deep phenotyping of 14 new patients with IQSEC2 variants, including monozygotic twins of discordant phenotype. Whole-exome sequencing has established IQSEC2 as a neurodevelopmental disability gene. The IQSEC2 variant phenotype includes developmental delay, intellectual disability, epilepsy, hypotonia, autism, developmental regression, microcephaly and stereotypies but is yet to be fully described. Presented here are 14 new patients with IQSEC2 variants. In addition to the established features, we observed: gait ataxia in 7 of 9 (77.8%), drooling in 9 of 14 (64.2%), early feeding difficulties in 7 of 14 (50%), structural brain abnormalities in 6 of 13 (46.2%), brachycephaly in 5 of 14 (35.7%), and scoliosis and paroxysms of laughter each in 4 of 14 (28.6%). We suggest that these are features of the IQSEC2-related disorder. Gastrostomy requirement, plagiocephaly, strabismus and cortical blindness, each seen in 2 of 14 (14.3%), may also be associated. Shared facial features were noted in 8 of 14 patients, and shared hair patterning was identified in 5 of 14 patients. This study further delineates the IQSEC2 phenotypic spectrum and supports the notion of an emerging IQSEC2 syndrome. We draw parallels between the IQSEC2-related disorder and the Angelman-/Rett-/Pitt-Hopkins syndrome group of conditions and recommend the addition of IQSEC2 to epilepsy and developmental delay gene panels. We observed discordant phenotypes in monozygotic twins and apparent gonadal mosaicism, which has implications for recurrence risk counselling in the IQSEC2-related disorder."	"IQSEC2 mutation update and review of the female-specific phenotype spectrum including intellectual disability and epilepsy. The IQSEC2- related disorders represent a spectrum of X-chromosome phenotypes with intellectual disability (ID) as the cardinal feature. Here, we review the increasing number of reported families and isolated cases have been reported with a variety of different pathogenic variants. The spectrum of clinical features is expanding with early-onset seizures as a frequent comorbidity in both affected male and female patients. There is a growing number of female patients with de novo loss-of-function variants in IQSEC2 have a more severe phenotype than the heterozygous state would predict, particularly if IQSEC2 is thought to escape X-inactivation. Interestingly, these findings highlight that the classical understanding of X-linked inheritance does not readily explain the emergence of these affected females, warranting further investigations into the underlying mechanisms."	"Correction: IQSEC2-related encephalopathy in males and females: a comparative study including 37 novel patients. This Article was originally published under Nature Research's License to Publish, but has now been made available under a CC BY 4.0 license. The PDF and HTML versions of the Article have been modified accordingly."	"Variants p.Q1236H and p.E1143G in mitochondrial DNA polymerase gamma POLG1 are not associated with increased risk for valproate-induced hepatotoxicity or pancreatic toxicity: A retrospective cohort study of patients with epilepsy. Previous studies have suggested that heterozygous variants p.Q1236H and p.E1143G in mitochondrial DNA polymerase gamma (POLG1) increase the risk for liver injury for patients on valproate (VPA) therapy. We assessed the prevalence of these common variants and seven other pathogenic mutations in POLG1 and determined the occurrence of VPA-induced hepatotoxicity (VHT) or pancreatic toxicity in a cohort of patients with epilepsy. Patients with epilepsy (N = 367) were retrospectively identified from medical record files and screened for mutations in POLG1. Patients who had received VPA monotherapy and carried either of the two variants, p.Q1236H or p.E1143G, without other pathogenic mutations in POLG1 (n = 33, variant group) and patients without these variants (n = 28, nonvariant group) were included in the study. Clinical data on epilepsy, characteristics of VPA treatment, risk factors for VHT, laboratory data on liver and pancreas functions, and adverse effects were collected. A total of 122 patients had either the POLG1 p.Q1236H (n = 99) or p.E1143G (n = 24) variant in the heterozygous or homozygous state. Transient liver dysfunction was identified in three (n = 33, 9.1%) variant group patients and in one (n = 28, 3.6%) nonvariant group patient (P = 0.62). Mild to moderate elevations in liver enzymes were encountered in both groups. Furthermore, two patients on VPA polytherapy developed acute pancreatitis, and two pediatric patients with heterozygous p.Q1236H variants and mutations in IQSEC2 and GLDC, respectively, had elevated levels of VPA metabolites in urine, elevated plasma glycine, and/or increased acylglycine excretion. POLG1 p.Q1236H and p.E1143G variants could not be identified as statistically significant risk factors for VHT or pancreatic toxicity. We suggest that VPA treatment could be suitable for patients who harbor these common variants in the absence of other pathogenic mutations in POLG1."	"IQSEC2-related encephalopathy in males and females: a comparative study including 37 novel patients. Variants in IQSEC2, escaping X inactivation, cause X-linked intellectual disability with frequent epilepsy in males and females. We aimed to investigate sex-specific differences. We collected the data of 37 unpublished patients (18 males and 19 females) with IQSEC2 pathogenic variants and 5 individuals with variants of unknown significance and reviewed published variants. We compared variant types and phenotypes in males and females and performed an analysis of IQSEC2 isoforms. IQSEC2 pathogenic variants mainly led to premature truncation and were scattered throughout the longest brain-specific isoform, encoding the synaptic IQSEC2/BRAG1 protein. Variants occurred de novo in females but were either de novo (2/3) or inherited (1/3) in males, with missense variants being predominantly inherited. Developmental delay and intellectual disability were overall more severe in males than in females. Likewise, seizures were more frequently observed and intractable, and started earlier in males than in females. No correlation was observed between the age at seizure onset and severity of intellectual disability or resistance to antiepileptic treatments. This study provides a comprehensive overview of IQSEC2-related encephalopathy in males and females, and suggests that an accurate dosage of IQSEC2 at the synapse is crucial during normal brain development."	"Novel and de novo mutations in pediatric refractory epilepsy. Pediatric refractory epilepsy is a broad phenotypic spectrum with great genetic heterogeneity. Next-generation sequencing (NGS) combined with Sanger sequencing could help to understand the genetic diversity and underlying disease mechanisms in pediatric epilepsy. Here, we report sequencing results from a cohort of 172 refractory epilepsy patients aged 0-14 years. The pathogenicity of identified variants was evaluated in accordance with the American College of Medical Genetics and Genomics (ACMG) criteria. We identified 43 pathogenic or likely pathogenic variants in 40 patients (23.3%). Among these variants, 74.4% mutations (32/43) were de novo and 60.5% mutations (26/43) were novel. Patients with onset age of seizures ≤12 months had higher yields of deleterious variants compared to those with onset age of seizures &gt; 12 months (P = 0.006). Variants in ion channel genes accounted for the greatest functional gene category (55.8%), with SCN1A coming first (16/43). 81.25% (13/16) of SCN1A mutations were de novo and 68.8% (11/16) were novel in Dravet syndrome. Pathogenic or likely pathogenic variants were found in the KCNQ2, STXBP1, SCN2A genes in Ohtahara syndrome. Novel deleterious variants were also found in West syndrome, Doose syndrome and glucose transporter type 1 deficiency syndrome patients. One de novo MECP2 mutation were found in a Rett syndrome patient. TSC1/TSC2 variants were found in 60% patients with tuberous sclerosis complex patients. Other novel mutations detected in unclassified epilepsy patients involve the SCN8A, CACNA1A, GABRB3, GABRA1, IQSEC2, TSC1, VRK2, ATP1A2, PCDH19, SLC9A6 and CHD2 genes. Our study provides novel insights into the genetic origins of pediatric epilepsy and represents a starting-point for further investigations into the molecular pathophysiology of pediatric epilepsy that could eventually lead to better treatments."	"Genotype and phenotype analysis using an epilepsy-associated gene panel in Chinese pediatric epilepsy patients. Epilepsy is a common and genetically heterogeneous disorder among children. Advances in next-generation sequencing have revealed that numerous epilepsy genes, helped us improve the understanding of mechanisms underlying epileptogenesis, and guided the development of treatments. We identified 39 candidate variants in 21 genes, including 37 that were pathogenic or likely pathogenic variants according to the American College of Medical Genetics and Genomics scoring system and two variants of uncertain significance that were considered causative after they were associated with clinical characteristics. Thirty were de novo variants (76.9%), and 20 variants had not previously been reported (51.3%). We obtained a diagnosis in 39 of the 141 probands (27.7%). The most frequently mutated gene was SCN1A; KCNQ2, KCNT1, PCDH19, STXBP1, SCN2A, TSC2, and PRRT2 were mutated in more than one individual; ANKRD11, CDKL5, DCX, DEPDC5, GABRB3, GRIN2A, IQSEC2, KCNA2, KCNB1, KCNJ6, TSC1, SCN9A, and SCN1B were mutated in a single individual. In addition, we detected a nonsense variant in a candidate gene KCND1 and considered it as a new candidate epilepsy gene, which needed further functional study. Consequently, large number of unreported variants were detected, diverse phenotypes were associated with known epilepsy genes. Changes in clinical management beyond genetic counseling were suggested."	"BRAG1/IQSEC2 as a regulator of small GTPase-dependent trafficking. Precise trafficking events, such as those that underlie synaptic transmission and plasticity, require complex regulation. G-protein signaling plays an essential role in the regulation of membrane and protein trafficking. However, it is not well understood how small GTPases and their regulatory proteins coordinate such specific events. Our recent publication focused on a highly abundant synaptic GEF, BRAG1, whose physiologic relevance was unknown. We find that BRAG1s GEF activity is required for activity-dependent trafficking of AMPARs. Moreover, BRAG1 bidirectionally regulates synaptic transmission in a manner independent of this activity. In addition to the GEF domain, BRAG1 contains several functional domains whose roles are not yet understood but may mediate protein-protein interactions and regulatory effects necessary for its role in regulation of AMPAR trafficking. In this commentary, we explore the potential for BRAG1 to provide specificity of small GTPase signaling, coordinating activity-dependent activation of small GTPase activity with signaling and scaffolding molecules involved in trafficking through its GEF activity and other functional domains."	"Monogenic disorders that mimic the phenotype of Rett syndrome. Rett syndrome (RTT) is caused by mutations in methyl-CpG-binding protein 2 (MECP2), but defects in a handful of other genes (e.g., CDKL5, FOXG1, MEF2C) can lead to presentations that resemble, but do not completely mirror, classical RTT. In this study, we attempted to identify other monogenic disorders that share features with RTT. We performed a retrospective chart review on n = 319 patients who had undergone clinical whole exome sequencing (WES) for further etiological evaluation of neurodevelopmental diagnoses that remained unexplained despite extensive prior workup. From this group, we characterized those who (1) possessed features that were compatible with RTT based on clinical judgment, (2) subsequently underwent MECP2 sequencing and/or MECP2 deletion/duplication analysis with negative results, and (3) ultimately arrived at a diagnosis other than RTT with WES. n = 7 patients had clinical features overlapping RTT with negative MECP2 analysis but positive WES providing a diagnosis. These seven patients collectively possessed pathogenic variants in six different genes: two in KCNB1 and one each in FOXG1, IQSEC2, MEIS2, TCF4, and WDR45. n = 2 (both with KCNB1 variants) fulfilled criteria for atypical RTT. RTT-associated features included the following: loss of hand or language skills (n = 3; IQSEC2, KCNB1 x 2); disrupted sleep (n = 4; KNCB1, MEIS2, TCF4, WDR45); stereotyped hand movements (n = 5; FOXG1, KNCB1 x 2, MEIS2, TCF4); bruxism (n = 3; KCNB1 x 2; TCF4); and hypotonia (n = 7). Clinically based diagnoses can be misleading, evident by the increasing number of genetic conditions associated with features of RTT with negative MECP2 mutations."	"Developmental progression of intellectual disability, autism, and epilepsy in a child with an IQSEC2 gene mutation. The neurodevelopmental progression of a school-aged child with a spontaneous IQSEC2 mutation has demonstrated apparent regression of milestones and language. Seizures associated with the disorder have been refractory to medical treatment. Late treatment of autism in this child has led to improved social skills."	"The role of IQSEC2 in syndromic intellectual disability: Narrowing the diagnostic odyssey. While X-linked intellectual disability (XLID) syndromes pose a diagnostic challenge for clinicians, an increasing number of recognized disorders and their genetic etiologies are providing answers for patients and their families. The availability of clinical exome sequencing is broadening the ability to identify mutations in genes previously unrecognized as causing XLID. In recent years, the IQSEC2 gene, located at Xp11.22, has emerged as the cause of multiple cases of both nonsyndromic and syndromic XLID. Herein we present a case series of six individuals (five males, one female) with intellectual disability and seizures found to have alterations in IQSEC2. In all cases, the diagnostic odyssey was extensive and expensive, often including invasive testing such as muscle biopsies, before ultimately reaching the diagnosis. We report these cases to demonstrate the exhaustive work-up prior to finding the changes in IQSEC2 gene, recommend that this gene be considered earlier in the diagnostic evaluation of individuals with global developmental delay, microcephaly, and severe, intractable epilepsy, and support the use of intellectual disability panels including IQSEC2 in the first-line evaluation of these patients."	"Incorrect dosage of IQSEC2, a known intellectual disability and epilepsy gene, disrupts dendritic spine morphogenesis. There is considerable genetic and phenotypic heterogeneity associated with intellectual disability (ID), specific learning disabilities, attention-deficit hyperactivity disorder, autism and epilepsy. The intelligence quotient (IQ) motif and SEC7 domain containing protein 2 gene (IQSEC2) is located on the X-chromosome and harbors mutations that contribute to non-syndromic ID with and without early-onset seizure phenotypes in both sexes. Although IQ and Sec7 domain mutations lead to partial loss of IQSEC2 enzymatic activity, the in vivo pathogenesis resulting from these mutations is not known. Here we reveal that IQSEC2 has a key role in dendritic spine morphology. Partial loss-of-function mutations were modeled using a lentiviral short hairpin RNA (shRNA) approach, which achieved a 57% knockdown of Iqsec2 expression in primary hippocampal cell cultures from mice. Investigating gross morphological parameters after 8 days of in vitro culture (8DIV) identified a 32% reduction in primary axon length, in contrast to a 27% and 31% increase in the number and complexity of dendrites protruding from the cell body, respectively. This increase in dendritic complexity and spread was carried through dendritic spine development, with a 34% increase in the number of protrusions per dendritic segment compared with controls at 15DIV. Although the number of dendritic spines had normalized by 21DIV, a reduction was noted in the number of immature spines. In contrast, when modeling increased dosage, overexpression of wild-type IQSEC2 led to neurons with shorter axons that were more compact and displayed simpler dendritic branching. Disturbances to dendritic morphology due to knockdown of Iqsec2 were recapitulated in neurons from Iqsec2 knockout mice generated in our laboratory using CRISPR/Cas9 technology. These observations provide evidence of dosage sensitivity for IQSEC2, which normally escapes X-inactivation in females, and links these disturbances in expression to alterations in the morphology of developing neurons."	"Hierarchical organization and genetically separable subfamilies of PSD95 postsynaptic supercomplexes. PSD95 is an abundant postsynaptic scaffold protein in glutamatergic synapses that assembles into supercomplexes composed of over 80 proteins including neurotransmitter receptors, ion channels and adhesion proteins. How these diverse constituents are organized into PSD95 supercomplexes in vivo is poorly understood. Here, we dissected the supercomplexes in mice combining endogenous gene-tagging, targeted mutations and quantitative biochemical assays. Generating compound heterozygous mice with two different gene-tags, one on each Psd95 allele, showed that each ~1.5 MDa PSD95-containing supercomplex contains on average two PSD95 molecules. Gene-tagging the endogenous GluN1 and PSD95 with identical Flag tags revealed N-methyl D-aspartic acid receptors (NMDARs) containing supercomplexes that represent only 3% of the total population of PSD95 supercomplexes, suggesting there are many other subtypes. To determine whether this extended population of different PSD95 supercomplexes use genetically defined mechanisms to specify their assembly, we tested the effect of five targeted mouse mutations on the assembly of known PSD95 interactors, Kir2.3, Arc, IQsec2/BRAG1 and Adam22. Unexpectedly, some mutations were highly selective, whereas others caused widespread disruption, indicating that PSD95 interacting proteins are organized hierarchically into distinct subfamilies of ~1.5 MDa supercomplexes, including a subpopulation of Kir2.3-NMDAR ion channel-channel supercomplexes. Kir2.3-NMDAR ion channel-channel supercomplexes were found to be anatomically restricted to particular brain regions. These data provide new insight into the mechanisms that govern the constituents of postsynaptic supercomplexes and the diversity of synapse types. Read the Editorial Highlight for this article on page 500. Cover Image for this issue: doi. 10.1111/jnc.13811."	"Gonadal mosaicism of a novel IQSEC2 variant causing female limited intellectual disability and epilepsy. We report a family with four girls with moderate to severe intellectual disability and epilepsy. Two girls showed regression in adolescence and died of presumed sudden unexpected death in epilepsy at 16 and 22 years. Whole exome sequencing identified a truncating pathogenic variant in IQSEC2 at NM_001111125.2: c.2679_2680insA, p.(D894fs*10), a recently identified cause of epileptic encephalopathy in females (MIM 300522). The IQSEC2 variant was identified in both surviving affected sisters but in neither parent. We describe the phenotypic spectrum associated with IQSEC2 variants, highlighting how IQSEC2 is adding to a growing list of X-linked genes that have a female-specific phenotype typically associated with de novo mutations. This report illustrates the need for careful review of all whole exome data, incorporating all possible modes of inheritance including that suggested by the family history."	"Exome analysis of Smith-Magenis-like syndrome cohort identifies de novo likely pathogenic variants. Smith-Magenis syndrome (SMS), a neurodevelopmental disorder characterized by dysmorphic features, intellectual disability (ID), and sleep disturbances, results from a 17p11.2 microdeletion or a mutation in the RAI1 gene. We performed exome sequencing on 6 patients with SMS-like phenotypes but without chromosomal abnormalities or RAI1 variants. We identified pathogenic de novo variants in two cases, a nonsense variant in IQSEC2 and a missense variant in the SAND domain of DEAF1, and candidate de novo missense variants in an additional two cases. One candidate variant was located in an alpha helix of Necdin (NDN), phased to the paternally inherited allele. NDN is maternally imprinted within the 15q11.2 Prader-Willi Syndrome (PWS) region. This can help clarify NDN's role in the PWS phenotype. No definitive pathogenic gene variants were detected in the remaining SMS-like cases, but we report our findings for future comparison. This study provides information about the inheritance pattern and recurrence risk for patients with identified variants and demonstrates clinical and genetic overlap of neurodevelopmental disorders. Identification and characterization of ID-related genes that assist in development of common developmental pathways and/or gene-networks, may inform disease mechanism and treatment strategies."	"The molecular and phenotypic spectrum of IQSEC2-related epilepsy. IQSEC2 is an X-linked gene associated with intellectual disability (ID) and epilepsy. Herein we characterize the epilepsy/epileptic encephalopathy of patients with IQSEC2 pathogenic variants. Forty-eight patients with IQSEC2 variants were identified worldwide through Medline search. Two patients were recruited from our early onset epileptic encephalopathy cohort and one patient from personal communication. The 18 patients who have epilepsy in addition to ID are the subject of this study. Information regarding the 18 patients was ascertained by questionnaire provided to the treating clinicians. Six affected individuals had an inherited IQSEC2 variant and 12 had a de novo one (male-to-female ratio, 12:6). The pathogenic variant types were as follows: missense (8), nonsense (5), frameshift (1), intragenic duplications (2), translocation (1), and insertion (1). An epileptic encephalopathy was diagnosed in 9 (50%) of 18 patients. Seizure onset ranged from 8 months to 4 years; seizure types included spasms, atonic, myoclonic, tonic, absence, focal seizures, and generalized tonic-clonic (GTC) seizures. The electroclinical syndromes could be defined in five patients: late-onset epileptic spasms (three) and Lennox-Gastaut or Lennox-Gastaut-like syndrome (two). Seizures were pharmacoresistant in all affected individuals with epileptic encephalopathy. The epilepsy in the other nine patients had a variable age at onset from infancy to 18 years; seizure types included GTC and absence seizures in the hereditary cases and GTC and focal seizures in de novo cases. Seizures were responsive to medical treatment in most cases. All 18 patients had moderate to profound intellectual disability. Developmental regression, autistic features, hypotonia, strabismus, and white matter changes on brain magnetic resonance imaging (MRI) were prominent features. The phenotypic spectrum of IQSEC2 disorders includes epilepsy and epileptic encephalopathy. Epileptic encephalopathy is a main clinical feature in sporadic cases. IQSEC2 should be evaluated in both male and female patients with an epileptic encephalopathy."	"Targeted sequencing of 351 candidate genes for epileptic encephalopathy in a large cohort of patients. Many genes are candidates for involvement in epileptic encephalopathy (EE) because one or a few possibly pathogenic variants have been found in patients, but insufficient genetic or functional evidence exists for a definite annotation. To increase the number of validated EE genes, we sequenced 26 known and 351 candidate genes for EE in 360 patients. Variants in 25 genes known to be involved in EE or related phenotypes were followed up in 41 patients. We prioritized the candidate genes, and followed up 31 variants in this prioritized subset of candidate genes. Twenty-nine genotypes in known genes for EE (19) or related diseases (10), dominant as well as recessive or X-linked, were classified as likely pathogenic variants. Among those, likely pathogenic de novo variants were found in EE genes that act dominantly, including the recently identified genes EEF1A2, KCNB1 and the X-linked gene IQSEC2. A de novo frameshift variant in candidate gene HNRNPU was the only de novo variant found among the followed-up candidate genes, and the patient's phenotype was similar to a few recent publications. Mutations in genes described in OMIM as, for example, intellectual disability gene can lead to phenotypes that get classified as EE in the clinic. We confirmed existing literature reports that de novo loss-of-function HNRNPUmutations lead to severe developmental delay and febrile seizures in the first year of life."	"De Novo Mutations in SLC1A2 and CACNA1A Are Important Causes of Epileptic Encephalopathies. Epileptic encephalopathies (EEs) are the most clinically important group of severe early-onset epilepsies. Next-generation sequencing has highlighted the crucial contribution of de novo mutations to the genetic architecture of EEs as well as to their underlying genetic heterogeneity. Our previous whole-exome sequencing study of 264 parent-child trios revealed more than 290 candidate genes in which only a single individual had a de novo variant. We sought to identify additional pathogenic variants in a subset (n = 27) of these genes via targeted sequencing in an unsolved cohort of 531 individuals with a diverse range of EEs. We report 17 individuals with pathogenic variants in seven of the 27 genes, defining a genetic etiology in 3.2% of this unsolved cohort. Our results provide definitive evidence that de novo mutations in SLC1A2 and CACNA1A cause specific EEs and expand the compendium of clinically relevant genotypes for GABRB3. We also identified EEs caused by genetic variants in ALG13, DNM1, and GNAO1 and report a mutation in IQSEC2. Notably, recurrent mutations accounted for 7/17 of the pathogenic variants identified. As a result of high-depth coverage, parental mosaicism was identified in two out of 14 cases tested with mutant allelic fractions of 5%-6% in the unaffected parents, carrying significant reproductive counseling implications. These results confirm that dysregulation in diverse cellular neuronal pathways causes EEs, and they will inform the diagnosis and management of individuals with these devastating disorders."	"Synaptic functions of the IQSEC family of ADP-ribosylation factor guanine nucleotide exchange factors. Postsynaptic scaffolding proteins interact with numerous synaptic proteins to ensure the organization and specialization of functional excitatory and inhibitory synapses. IQSECs (IQ motif and SEC7 domain-containing proteins) are a class of ADP ribosylation factor-guanine nucleotide exchange factors (ARF-GEFs), whose functions are beginning to be understood as both scaffolding and signaling proteins. Specifically, IQSEC1 binds to PSD-95, and IQSEC2 functions as a regulator of AMPA receptor trafficking at excitatory synapses, whereas IQSEC3 interacts with gephyrin to promote inhibitory synapse development. Here, I review the currently known findings on IQSECs and discuss the possible relations between dysfunctions of IQSECs and the pathophysiology of brain disorders."	"Rett-like phenotypes: expanding the genetic heterogeneity to the KCNA2 gene and first familial case of CDKL5-related disease. Several genes have been implicated in Rett syndrome (RTT) in its typical and variant forms. We applied next-generation sequencing (NGS) to evaluate for mutations in known or new candidate genes in patients with variant forms of Rett or Rett-like phenotypes of unknown molecular aetiology. In the first step, we used NGS with a custom panel including MECP2, CDKL5, FOXG1, MEF2C and IQSEC2. In addition to a FOXG1 mutation in a patient with all core features of the congenital variant of RTT, we identified a missense (p.Ser240Thr) in CDKL5 in a patient who appeared to be seizure free. This missense was maternally inherited with opposite allele expression ratios in the proband and her mother. In the asymptomatic mother, the mutated copy of the CDKL5 gene was inactivated in 90% of blood cells. We also identified a premature stop codon (p.Arg926*) in IQSEC2 in a patient with a Rett-like phenotype. Finally, exome sequencing enabled us to characterize a heterozygous de novo missense (p.Val408Ala) in KCNA2 encoding the potassium channel Kv 1.2 in a girl with infantile-onset seizures variant of RTT. Our study expands the genetic heterogeneity of RTT and RTT-like phenotypes. Moreover, we report the first familial case of CDKL5-related disease."	"IQSEC2 and X-linked syndromal intellectual disability. Despite the recent acceleration in the discovery of genetic risk factors for intellectual disability (ID), the genetic etiology of ID is unknown in approximately half of cases and remains a major frontier of genetics in medicine and psychiatry. The distinction between syndromal and nonsyndromal forms of ID is of great clinical importance, but the boundary between these clinical entities is difficult to ascertain for many genes of interest. ID is more common in men than in women, but the genetic explanation of this sex asymmetry is incompletely understood. This Review systematically examines the reported cases of X-linked ID caused by de novo loss-of-function mutations in the gene IQSEC2. This gene is largely known as a cause of X-linked nonsyndromal ID in male patients. However, depending on the severity of the mutation, the phenotypic spectrum of IQSEC2-related ID can range from the classic X-linked nonsyndromal form of the disease to a severe syndrome that has been reported in the context of de novo mutations only, in both male and female patients. Bioinformatics analysis suggests that truncation of the longer of the two protein isoforms of the gene can be sufficient to lead to the syndrome, which may be caused by the disruption of cell signaling and signal transduction pathways. The clinical features of the syndrome converge on a pattern of global developmental delay, deficits in social communication, stereotypical hand movements, and hypotonia. In addition, many if not all of these patients have seizures, microcephaly, and language regression in addition to delay. We argue that it is clinically appropriate to test for IQSEC2 mutations in male and female patients with this symptom profile but without a known genetic mutation."	"Bidirectional regulation of synaptic transmission by BRAG1/IQSEC2 and its requirement in long-term depression. Dysfunction of the proteins regulating synaptic function can cause synaptic plasticity imbalance that underlies neurological disorders such as intellectual disability. A study found that four distinct mutations within BRAG1, an Arf-GEF synaptic protein, each led to X-chromosome-linked intellectual disability (XLID). Although the physiological functions of BRAG1 are poorly understood, each of these mutations reduces BRAG1's Arf-GEF activity. Here we show that BRAG1 is required for the activity-dependent removal of AMPA receptors in rat hippocampal pyramidal neurons. Moreover, we show that BRAG1 bidirectionally regulates synaptic transmission. On one hand, BRAG1 is required for the maintenance of synaptic transmission. On the other hand, BRAG1 expression enhances synaptic transmission, independently of BRAG1 Arf-GEF activity or neuronal activity, but dependently on its C-terminus interactions. This study demonstrates a dual role of BRAG1 in synaptic function and highlights the functional relevance of reduced BRAG1 Arf-GEF activity as seen in the XLID-associated human mutations. "	"Subunit-selective N-Methyl-d-aspartate (NMDA) Receptor Signaling through Brefeldin A-resistant Arf Guanine Nucleotide Exchange Factors BRAG1 and BRAG2 during Synapse Maturation. The maturation of glutamatergic synapses in the CNS is regulated by NMDA receptors (NMDARs) that gradually change from a GluN2B- to a GluN2A-dominated subunit composition during postnatal development. Here we show that NMDARs control the activity of the small GTPase ADP-ribosylation factor 6 (Arf6) by consecutively recruiting two related brefeldin A-resistant Arf guanine nucleotide exchange factors, BRAG1 and BRAG2, in a GluN2 subunit-dependent manner. In young cortical cultures, GluN2B and BRAG1 tonically activated Arf6. In mature cultures, Arf6 was activated through GluN2A and BRAG2 upon NMDA treatment, whereas the tonic Arf6 activation was not detectable any longer. This shift in Arf6 regulation and the associated drop in Arf6 activity were reversed by a knockdown of BRAG2. Given their sequential recruitment during development, we examined whether BRAG1 and BRAG2 influence synaptic currents in hippocampal CA1 pyramidal neurons using patch clamp recordings in acute slices from mice at different ages. The number of AMPA receptor (AMPAR) miniature events was reduced by depletion of BRAG1 but not by depletion of BRAG2 during the first 2 weeks after birth. In contrast, depletion of BRAG2 during postnatal weeks 4 and 5 reduced the number of AMPAR miniature events and compromised the quantal sizes of both AMPAR and NMDAR currents evoked at Schaffer collateral synapses. We conclude that both Arf6 activation through GluN2B-BRAG1 during early development and the transition from BRAG1- to BRAG2-dependent Arf6 signaling induced by the GluN2 subunit switch are critical for the development of mature glutamatergic synapses. "	"Diagnostic exome sequencing provides a molecular diagnosis for a significant proportion of patients with epilepsy. To assess the yield of diagnostic exome sequencing (DES) and to characterize the molecular findings in characterized and novel disease genes in patients with epilepsy. In an unselected sample of 1,131 patients referred for DES, overall results were compared between patients with and without epilepsy. DES results were examined based on age of onset and epilepsy diagnosis. Positive/likely positive results were identified in 112/293 (38.2%) epilepsy patients compared with 210/732 (28.7%) patients without epilepsy (P = 0.004). The diagnostic yield in characterized disease genes among patients with epilepsy was 33.4% (105/314). KCNQ2, MECP2, FOXG1, IQSEC2, KMT2A, and STXBP1 were most commonly affected by de novo alterations. Patients with epileptic encephalopathies had the highest rate of positive findings (43.4%). A likely positive novel genetic etiology was proposed in 14/200 (7%) patients with epilepsy; this frequency was highest in patients with epileptic encephalopathies (17%). Three genes (COQ4, DNM1, and PURA) were initially reported as likely positive novel disease genes and were subsequently corroborated in independent peer-reviewed publications. DES with analysis and interpretation of both characterized and novel genetic etiologies is a useful diagnostic tool in epilepsy, particularly in severe early-onset epilepsy. The reporting on novel genetic etiologies may further increase the diagnostic yield.Genet Med 18 9, 898-905."	"Novel Missense Mutation A789V in IQSEC2 Underlies X-Linked Intellectual Disability in the MRX78 Family. Disease gene discovery in neurodevelopmental disorders, including X-linked intellectual disability (XLID) has recently been accelerated by next-generation DNA sequencing approaches. To date, more than 100 human X chromosome genes involved in neuronal signaling pathways and networks implicated in cognitive function have been identified. Despite these advances, the mutations underlying disease in a large number of XLID families remained unresolved. We report the resolution of MRX78, a large family with six affected males and seven affected females, showing X-linked inheritance. Although a previous linkage study had mapped the locus to the short arm of chromosome X (Xp11.4-p11.23), this region contained too many candidate genes to be analyzed using conventional approaches. However, our X-chromosome exome resequencing, bioinformatics analysis and inheritance testing revealed a missense mutation (c.C2366T, p.A789V) in IQSEC2, encoding a neuronal GDP-GTP exchange factor for Arf family GTPases (ArfGEF) previously implicated in XLID. Molecular modeling of IQSEC2 revealed that the A789V substitution results in the insertion of a larger side-chain into a hydrophobic pocket in the catalytic Sec7 domain of IQSEC2. The A789V change is predicted to result in numerous clashes with adjacent amino acids and disruption of local folding of the Sec7 domain. Consistent with this finding, functional assays revealed that recombinant IQSEC2(A789V) was not able to catalyze GDP-GTP exchange on Arf6 as efficiently as wild-type IQSEC2. Taken together, these results strongly suggest that the A789V mutation in IQSEC2 is the underlying cause of XLID in the MRX78 family. "	"A novel splicing mutation in the IQSEC2 gene that modulates the phenotype severity in a family with intellectual disability. The IQSEC2 gene is located on chromosome Xp11.22 and encodes a guanine nucleotide exchange factor for the ADP-ribosylation factor family of small GTPases. This gene is known to have a significant role in cytoskeletal organization, dendritic spine morphology and synaptic organization. Variants in IQSEC2 cause moderate to severe intellectual disability in males and a variable phenotype in females because this gene escapes from X-chromosome inactivation. Here we report on the first splicing variant in IQSEC2 (g.88032_88033del; NG_021296.1) that co-segregates in a family diagnosed with an X-linked form of ID. In a percentage of the cells, the variant activates an intraexonic splice acceptor site that abolishes 26 amino acids from the highly conserved PH domain of IQSEC2 and creates a premature stop codon 36 amino acids later in exon 13. Interestingly, the percentage of aberrant splicing seems to correlate with the severity of the disease in each patient. The impact of this variant in the target tissue is unknown, but we can hypothesize that these differences may be related to the amount of abnormal IQSEC2 transcript. To our knowledge, we are reporting a novel mechanism of IQSEC2 involvement in ID. Variants that affect splicing are related to many genetic diseases and the understanding of their role in disease expands potential opportunities for gene therapy. Modulation of aberrant splicing transcripts can become a potent therapeutic approach for many of these diseases."	"Xp11.2 microduplications including IQSEC2, TSPYL2 and KDM5C genes in patients with neurodevelopmental disorders. Copy number variations are a common cause of intellectual disability (ID). Determining the contribution of copy number variants (CNVs), particularly gains, to disease remains challenging. Here, we report four males with ID with sub-microscopic duplications at Xp11.2 and review the few cases with overlapping duplications reported to date. We established the extent of the duplicated regions in each case encompassing a minimum of three known disease genes TSPYL2, KDM5C and IQSEC2 with one case also duplicating the known disease gene HUWE1. Patients with a duplication encompassing TSPYL2, KDM5C and IQSEC2 without gains of nearby SMC1A and HUWE1 genes have not been reported thus far. All cases presented with ID and significant deficits of speech development. Some patients also manifested behavioral disturbances such as hyperactivity and attention-deficit/hyperactivity disorder. Lymphoblastic cell lines from patients show markedly elevated levels of TSPYL2, KDM5C and SMC1A, transcripts consistent with the extent of their CNVs. The duplicated region in our patients contains several genes known to escape X-inactivation, including KDM5C, IQSEC2 and SMC1A. In silico analysis of expression data in selected gene expression omnibus series indicates that dosage of these genes, especially IQSEC2, is similar in males and females despite the fact they escape from X-inactivation in females. Taken together, the data suggest that gains in Xp11.22 including IQSEC2 cause ID and are associated with hyperactivity and attention-deficit/hyperactivity disorder, and are likely to be dosage-sensitive in males. "	"Mutations in epilepsy and intellectual disability genes in patients with features of Rett syndrome. Rett syndrome and neurodevelopmental disorders with features overlapping this syndrome frequently remain unexplained in patients without clinically identified MECP2 mutations. We recruited a cohort of 11 patients with features of Rett syndrome and negative initial clinical testing for mutations in MECP2. We analyzed their phenotypes to determine whether patients met formal criteria for Rett syndrome, reviewed repeat clinical genetic testing, and performed exome sequencing of the probands. Using 2010 diagnostic criteria, three patients had classical Rett syndrome, including two for whom repeat MECP2 gene testing had identified mutations. In a patient with neonatal onset epilepsy with atypical Rett syndrome, we identified a frameshift deletion in STXBP1. Among seven patients with features of Rett syndrome not fulfilling formal diagnostic criteria, four had suspected pathogenic mutations, one each in MECP2, FOXG1, SCN8A, and IQSEC2. MECP2 mutations are highly correlated with classical Rett syndrome. Genes associated with atypical Rett syndrome, epilepsy, or intellectual disability should be considered in patients with features overlapping with Rett syndrome and negative MECP2 testing. While most of the identified mutations were apparently de novo, the SCN8A variant was inherited from an unaffected parent mosaic for the mutation, which is important to note for counseling regarding recurrence risks."	"Microdeletion of the escape genes KDM5C and IQSEC2 in a girl with severe intellectual disability and autistic features. Intellectual disability (ID) is a very heterogeneous disorder with over 100 ID genes located on the X chromosome alone. Of these, KDM5C and IQSEC2 are located adjacent to each other at the Xp11.22 locus. While mutations in either of these genes are associated with severe ID in males, female carriers are mostly unaffected. Here, we report on a female patient with severe ID and autistic features carrying a de novo 0.4 Mb deletion containing six coding genes including KDM5C and IQSEC2. X-inactivation analysis revealed skewing in a lymphocyte-derived cell line from this patient with preferential inactivation of the mutant X chromosome. As the brain-expressed KDM5C and IQSEC2 genes escape X-inactivation, deletion of these alleles could still be detrimental despite skewing of X-inactivation. Indeed, mutations in either of both genes have been reported in a few female ID patients. Expression analysis in the patients' cell line revealed decreased KDM5C mRNA levels compared to female controls. IQSEC2 levels could not be compared due to very low expression in blood. Overall, our data suggest that heterozygous loss-of-function of the escape genes KDM5C and/or IQSEC2 can contribute to severe ID in female patients and should be taken into account in diagnostics. "	"Next-generation sequencing in X-linked intellectual disability. X-linked intellectual disability (XLID) is a genetically heterogeneous disorder with more than 100 genes known to date. Most genes are responsible for a small proportion of patients only, which has hitherto hampered the systematic screening of large patient cohorts. We performed targeted enrichment and next-generation sequencing of 107 XLID genes in a cohort of 150 male patients. Hundred patients had sporadic intellectual disability, and 50 patients had a family history suggestive of XLID. We also analysed a sporadic female patient with severe ID and epilepsy because she had strongly skewed X-inactivation. Target enrichment and high parallel sequencing allowed a diagnostic coverage of &gt;10 reads for ~96% of all coding bases of the XLID genes at a mean coverage of 124 reads. We found 18 pathogenic variants in 13 XLID genes (AP1S2, ATRX, CUL4B, DLG3, IQSEC2, KDM5C, MED12, OPHN1, SLC9A6, SMC1A, UBE2A, UPF3B and ZDHHC9) among the 150 male patients. Thirteen pathogenic variants were present in the group of 50 familial patients (26%), and 5 pathogenic variants among the 100 sporadic patients (5%). Systematic gene dosage analysis for low coverage exons detected one pathogenic hemizygous deletion. An IQSEC2 nonsense variant was detected in the female ID patient, providing further evidence for a role of this gene in encephalopathy in females. Skewed X-inactivation was more frequently observed in mothers with pathogenic variants compared with those without known X-linked defects. The mutation rate in the cohort of sporadic patients corroborates previous estimates of 5-10% for X-chromosomal defects in male ID patients. "	"Efficient strategy for the molecular diagnosis of intellectual disability using targeted high-throughput sequencing. Intellectual disability (ID) is characterised by an extreme genetic heterogeneity. Several hundred genes have been associated to monogenic forms of ID, considerably complicating molecular diagnostics. Trio-exome sequencing was recently proposed as a diagnostic approach, yet remains costly for a general implementation. We report the alternative strategy of targeted high-throughput sequencing of 217 genes in which mutations had been reported in patients with ID or autism as the major clinical concern. We analysed 106 patients with ID of unknown aetiology following array-CGH analysis and other genetic investigations. Ninety per cent of these patients were males, and 75% sporadic cases. We identified 26 causative mutations: 16 in X-linked genes (ATRX, CUL4B, DMD, FMR1, HCFC1, IL1RAPL1, IQSEC2, KDM5C, MAOA, MECP2, SLC9A6, SLC16A2, PHF8) and 10 de novo in autosomal-dominant genes (DYRK1A, GRIN1, MED13L, TCF4, RAI1, SHANK3, SLC2A1, SYNGAP1). We also detected four possibly causative mutations (eg, in NLGN3) requiring further investigations. We present detailed reasoning for assigning causality for each mutation, and associated patients' clinical information. Some genes were hit more than once in our cohort, suggesting they correspond to more frequent ID-associated conditions (KDM5C, MECP2, DYRK1A, TCF4). We highlight some unexpected genotype to phenotype correlations, with causative mutations being identified in genes associated to defined syndromes in patients deviating from the classic phenotype (DMD, TCF4, MECP2). We also bring additional supportive (HCFC1, MED13L) or unsupportive (SHROOM4, SRPX2) evidences for the implication of previous candidate genes or mutations in cognitive disorders. With a diagnostic yield of 25% targeted sequencing appears relevant as a first intention test for the diagnosis of ID, but importantly will also contribute to a better understanding regarding the specific contribution of the many genes implicated in ID and autism."	"Genome sequencing identifies major causes of severe intellectual disability. Severe intellectual disability (ID) occurs in 0.5% of newborns and is thought to be largely genetic in origin. The extensive genetic heterogeneity of this disorder requires a genome-wide detection of all types of genetic variation. Microarray studies and, more recently, exome sequencing have demonstrated the importance of de novo copy number variations (CNVs) and single-nucleotide variations (SNVs) in ID, but the majority of cases remain undiagnosed. Here we applied whole-genome sequencing to 50 patients with severe ID and their unaffected parents. All patients included had not received a molecular diagnosis after extensive genetic prescreening, including microarray-based CNV studies and exome sequencing. Notwithstanding this prescreening, 84 de novo SNVs affecting the coding region were identified, which showed a statistically significant enrichment of loss-of-function mutations as well as an enrichment for genes previously implicated in ID-related disorders. In addition, we identified eight de novo CNVs, including single-exon and intra-exonic deletions, as well as interchromosomal duplications. These CNVs affected known ID genes more frequently than expected. On the basis of diagnostic interpretation of all de novo variants, a conclusive genetic diagnosis was reached in 20 patients. Together with one compound heterozygous CNV causing disease in a recessive mode, this results in a diagnostic yield of 42% in this extensively studied cohort, and 62% as a cumulative estimate in an unselected cohort. These results suggest that de novo SNVs and CNVs affecting the coding region are a major cause of severe ID. Genome sequencing can be applied as a single genetic test to reliably identify and characterize the comprehensive spectrum of genetic variation, providing a genetic diagnosis in the majority of patients with severe ID. "	"Diagnostic exome sequencing identifies two novel IQSEC2 mutations associated with X-linked intellectual disability with seizures: implications for genetic counseling and clinical diagnosis. Intellectual disability is a heterogeneous disorder with a wide phenotypic spectrum. Over 1,700 OMIM genes have been associated with this condition, many of which reside on the X-chromosome. The IQSEC2 gene is located on chromosome Xp11.22 and is known to play a significant role in the maintenance and homeostasis of the brain. Mutations in IQSEC2 have been historically associated with nonsyndromic X-linked intellectual disability. Case reports of affected probands show phenotypic overlap with conditions associated with pathogenic MECP2, FOXG1, CDKL5, and MEF2C gene mutations. Affected individuals, however, have also been identified as presenting with additional clinical features including seizures, autistic-behavior, psychiatric problems, and delayed language skills. To our knowledge, only 5 deleterious mutations and 2 intragenic duplications have been previously reported in IQSEC2. Here we report two novel IQSEC2 de novo truncating mutations identified through diagnostic exome sequencing in two severely affected unrelated male probands manifesting developmental delay, seizures, hypotonia, plagiocephaly, and abnormal MRI findings. Overall, diagnostic exome sequencing established a molecular diagnosis for two patients in whom traditional testing methods were uninformative while expanding on the mutational and phenotypic spectrum. In addition, our data suggests that IQSEC2 may be more common than previously appreciated, accounting for approximately 9 % (2/22) of positive findings among patients with seizures referred for diagnostic exome sequencing. Further, these data supports recently published data suggesting that IQSEC2 plays a more significant role in the development of X-linked intellectual disability with seizures than previously anticipated. "	"De novo mutations in epileptic encephalopathies. Epileptic encephalopathies are a devastating group of severe childhood epilepsy disorders for which the cause is often unknown. Here we report a screen for de novo mutations in patients with two classical epileptic encephalopathies: infantile spasms (n = 149) and Lennox-Gastaut syndrome (n = 115). We sequenced the exomes of 264 probands, and their parents, and confirmed 329 de novo mutations. A likelihood analysis showed a significant excess of de novo mutations in the ∼4,000 genes that are the most intolerant to functional genetic variation in the human population (P = 2.9 × 10(-3)). Among these are GABRB3, with de novo mutations in four patients, and ALG13, with the same de novo mutation in two patients; both genes show clear statistical evidence of association with epileptic encephalopathy. Given the relevant site-specific mutation rates, the probabilities of these outcomes occurring by chance are P = 4.1 × 10(-10) and P = 7.8 × 10(-12), respectively. Other genes with de novo mutations in this cohort include CACNA1A, CHD2, FLNA, GABRA1, GRIN1, GRIN2B, HNRNPU, IQSEC2, MTOR and NEDD4L. Finally, we show that the de novo mutations observed are enriched in specific gene sets including genes regulated by the fragile X protein (P &lt; 10(-8)), as has been reported previously for autism spectrum disorders. "	"Expanding the phenotype of IQSEC2 mutations: truncating mutations in severe intellectual disability. Intellectual disability (ID) is frequent in the general population, with 1 in 50 individuals directly affected worldwide. The multiple etiologies include X-linked ID (XLID). Among syndromic XLID, few syndromes present severe ID associated with postnatal microcephaly and midline stereotypic hand movements. We report on three male patients with ID, midline stereotypic hand movements, hypotonia, hyperkinesia, strabismus, as well as seizures (2/3), and non-inherited and postnatal onset microcephaly (2/3). Using array CGH and exome sequencing we characterised two truncating mutations in IQSEC2, namely two de novo intragenic duplication mapped to the Xp11.22 region and a nonsense mutation in exon 7. We propose that truncating mutations in IQSEC2 are responsible for syndromic severe ID in male patients and should be screened in patients without mutations in MECP2, FOXG1, CDKL5 and MEF2C. "	"Distinct synaptic localization patterns of brefeldin A-resistant guanine nucleotide exchange factors BRAG2 and BRAG3 in the mouse retina. The BRAG/IQSEC is a family of guanine nucleotide exchange factors for ADP ribosylation factors, small GTPases that regulate membrane trafficking and actin cytoskeleton, and comprises three structurally related members (BRAG1-3) generated from different genes. In the mouse retina, BRAG1 (also known as IQSEC2) was previously shown to localize at synaptic ribbons of photoreceptor terminals and to form a protein complex with RIBEYE. In this study, we examined the immunohistochemical localization of BRAG2 (IQSEC1) and BRAG3 (IQSEC3) in the adult mouse retina at the light and electron microscopic levels. In the outer plexiform layer, BRAG2 showed a punctate distribution in intimate association with dystrophin and β-dystroglycan. Immunoelectron microscopic analysis revealed that BRAG2 localized at specific subcompartments of photoreceptor terminals in both rod spherules and cone pedicles. In the inner plexiform layer, immunolabeling for both BRAG2 and BRAG3 had a punctate appearance, suggestive of synaptic labeling. Double immunostaining demonstrated that BRAG2 colocalized preferentially with PSD-95 and α-amino-3-hydroxy-5-methyl-4-isoxazolepropionate-type glutamate receptors (AMPARs). By contrast, BRAG3 colocalized with gephyrin and a subpopulation of inhibitory synapses expressing glycine receptors or γ-aminobutyric acid type A receptors (GABA(A) Rs). Immunoelectron microscopic analysis revealed that BRAG2 localized to postsynaptic processes at bipolar dyads, while BRAG3 localized to postsynaptic components at conventional synapses. These findings suggest that BRAG/IQSEC family members have key roles in the function and organization of distinct excitatory and inhibitory synapses in the retina."	"Subtle functional defects in the Arf-specific guanine nucleotide exchange factor IQSEC2 cause non-syndromic X-linked intellectual disability. Mutations in IQSEC2, a guanine nucleotide exchange factor for the ADP-ribosylation factor (Arf) family of small GTPases have recently been shown to cause non-syndromic X-linked intellectual disability (ID), characterised by substantial limitations in intellectual functioning and adaptive behaviour. This discovery was revealed by a combination of large-scale resequencing of the X chromosome, and key functional assays that revealed a reduction, but not elimination, of IQSEC2 GEF activity for mutations affecting conserved amino acids in the IQ-like and Sec7 domains. Compromised GTP binding activity of IQSEC2 leading to reduced activation of selected Arf substrates (Arf1, Arf6) is expected to impact on cytoskeletal organization, dendritic spine morphology and synaptic organisation. This study highlights the need for further investigation of the IQSEC gene family and Arf GTPases in neuronal morphology and synaptic function, and suggests that the genes encoding the ArfGEFs IQSEC1 and IQSEC3 should be considered as candidates for screening in autosomal ID."	"AMPA receptor signaling through BRAG2 and Arf6 critical for long-term synaptic depression. Central nervous system synapses undergo activity-dependent alterations to support learning and memory. Long-term depression (LTD) reflects a sustained reduction of the synaptic AMPA receptor content based on targeted clathrin-mediated endocytosis. Here we report a current-independent form of AMPA receptor signaling, fundamental for LTD. We found that AMPA receptors directly interact via the GluA2 subunit with the synaptic protein BRAG2, which functions as a guanine-nucleotide exchange factor (GEF) for the coat-recruitment GTPase Arf6. BRAG2-mediated catalysis, controlled by ligand-binding and tyrosine phosphorylation of GluA2, activates Arf6 to internalize synaptic AMPA receptors upon LTD induction. Furthermore, acute blockade of the GluA2-BRAG2 interaction and targeted deletion of BRAG2 in mature hippocampal CA1 pyramidal neurons prevents LTD in CA3-to-CA1 cell synapses, irrespective of the induction pathway. We conclude that BRAG2-mediated Arf6 activation triggered by AMPA receptors is the convergent step of different forms of LTD, thus providing an essential mechanism for the control of vesicle formation by endocytic cargo."	"Mutations in the guanine nucleotide exchange factor gene IQSEC2 cause nonsyndromic intellectual disability. The first family identified as having a nonsyndromic intellectual disability was mapped in 1988. Here we show that a mutation of IQSEC2, encoding a guanine nucleotide exchange factor for the ADP-ribosylation factor family of small GTPases, caused this disorder. In addition to MRX1, IQSEC2 mutations were identified in three other families with X-linked intellectual disability. This discovery was made possible by systematic and unbiased X chromosome exome resequencing."	"IQ-ArfGEF/BRAG1 is associated with synaptic ribbons in the mouse retina. IQ-ArfGEF/BRAG1 is a guanine nucleotide exchange factor for ADP ribosylation factors (Arfs), which are implicated in membrane trafficking and actin cytoskeleton dynamics. In this study, we examined the immunohistochemical localization of IQ-ArfGEF/BRAG1 in the adult mouse retina using light and electron microscopy. IQ-ArfGEF/BRAG1 was distributed in a punctate manner and colocalized well with RIBEYE in both the outer and inner plexiform layers. Immunoelectron microscopic analysis showed that IQ-ArfGEF/BRAG1 was localized at the synaptic ribbons of photoreceptors. When heterologously expressed in HeLa cells, IQ-ArfGEF/BRAG1 was recruited to RIBEYE-containing clusters and formed an immunoprecipitable complex with RIBEYE. Furthermore, immunoprecipitation analysis showed that anti-IQ-ArfGEF/BRAG1 antibody efficiently pulled down RIBEYE from retinal lysates. These findings indicate that IQ-ArfGEF/BRAG1 is a novel component of retinal synaptic ribbons and forms a protein complex with RIBEYE."	"The postsynaptic density protein, IQ-ArfGEF/BRAG1, can interact with IRSp53 through its proline-rich sequence. IQ-ArfGEF/BRAG1, a guanine nucleotide exchange factor for Arf1 and Arf6, is localized at the postsynaptic density (PSD) and interacts with PSD-95. In this study, we identified a novel interaction of IQ-ArfGEF/BRAG1 with insulin receptor tyrosine kinase substrate of 53 kDa (IRSp53), also known as brain-specific angiogenesis inhibitor 1-associated protein 2. The interaction was mediated by the binding of the C-terminal proline-rich sequence of IQ-ArfGEF/BRAG1 to the SH3 domain of IRSp53. IQ-ArfGEF/BRAG1 and IRSp53 were colocalized at the PSD of excitatory synapses of certain neuronal populations. Our present findings suggest that IQ-ArfGEF/BRAG1 may play roles downstream of NMDA receptors through the interaction with multivalent PSD proteins such as IRSp53 and PSD-95."	"Escape from X chromosome inactivation is an intrinsic property of the Jarid1c locus. Although most genes on one X chromosome in mammalian females are silenced by X inactivation, some &quot;escape&quot; X inactivation and are expressed from both active and inactive Xs. How these escape genes are transcribed from a largely inactivated chromosome is not fully understood, but underlying genomic sequences are likely involved. We developed a transgene approach to ask whether an escape locus is autonomous or is instead influenced by X chromosome location. Two BACs carrying the mouse Jarid1c gene and adjacent X-inactivated transcripts were randomly integrated into mouse XX embryonic stem cells. Four lines with single-copy, X-linked transgenes were identified, and each was inserted into regions that are normally X-inactivated. As expected for genes that are normally subject to X inactivation, transgene transcripts Tspyl2 and Iqsec2 were X-inactivated. However, allelic expression and RNA/DNA FISH indicate that transgenic Jarid1c escapes X inactivation. Therefore, transgenes at 4 different X locations recapitulate endogenous inactive X expression patterns. We conclude that escape from X inactivation is an intrinsic feature of the Jarid1c locus and functionally delimit this escape domain to the 112-kb maximum overlap of the BACs tested. Additionally, although extensive chromatin differences normally distinguish active and inactive loci, unmodified BACs direct proper inactive X expression patterns, establishing that primary DNA sequence alone, in a chromosome position-independent manner, is sufficient to determine X chromosome inactivation status. This transgene approach will enable further dissection of key elements of escape domains and allow rigorous testing of specific genomic sequences on inactive X expression."	"Disruption of the IQSEC2 transcript in a female with X;autosome translocation t(X;20)(p11.2;q11.2) and a phenotype resembling X-linked infantile spasms (ISSX) syndrome. We report on a female patient with severe infantile spasms, profound global developmental arrest, hypsarrhythmia and severe mental retardation, associated with a de novo apparently balanced X;autosome translocation. Her neurological phenotype resembles that of X-linked infantile spasms (ISSX). Molecular study showed that the translocation disrupts a transcript involved in GTPases signalling, IQSEC2, mapped to the Xp11.22 region. Several genes involved in intracellular signalling pathways via Ras-homologous small GTPase have been implicated in X-linked neurological disorders. Expression studies revealed that the murine homolog of this transcript, Iqsec2, is highly expressed in the nervous system from the early stages of development. These data suggest that IQSEC2 could be considered a candidate gene for X-linked neurological disorders."	"BRAG1, a Sec7 domain-containing protein, is a component of the postsynaptic density of excitatory synapses. The postsynaptic density (PSD) at excitatory synapses is a dynamic complex of glutamatergic receptors and associated proteins that governs synaptic structure and coordinates signal transduction. In this study, we report that BRAG1, a putative guanine nucleotide exchange factor for the Arf family of GTP-binding proteins, is a major component of the PSD. BRAG1 was identified in a 190 kDa band in the PSD fraction with the use of mass spectrometry coupled to searching of a protein sequence database. BRAG1 expression is abundant in the adult rat forebrain, and it is strongly enriched in the PSD fraction compared to forebrain homogenate and synaptosomes. Immunocytochemical localization of BRAG1 in dissociated hippocampal neurons shows that it forms discrete clusters that colocalize with the postsynaptic marker PSD-95 at sites along dendrites. BRAG1 contains a Sec7 domain, a domain that catalyzes exchange of GDP for GTP on the Arf family of small GTP-binding proteins. In their GTP-bound active state, Arfs regulate trafficking of vesicles and cytoskeletal structure. We demonstrate that the Sec7 domain of BRAG1 promotes binding of GTP to Arf in vitro. These data suggest that BRAG1 may modulate the functions of Arfs at synaptic sites."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NLGN4X"	"complex neurodevelopmental disorder"	"Novel Microdeletion in the X Chromosome Leads to Kallmann Syndrome, Ichthyosis, Obesity, and Strabismus. A large deletion in Xp22.3 can result in contiguous gene syndromes, including X-linked ichthyosis (XLI) and Kallmann syndrome (KS), presenting with short stature, chondrodysplasia punctata, intellectual disability, and strabismus. XLI and KS are caused by the deletion of STS and ANOS1, respectively. Two KS patients with XLI were screened to identify possible pathogenic mutations using whole exome sequencing. The clinical characteristics, molecular genetics, treatment outcomes, and genotype-phenotype association for each patient were analyzed. We identified a novel 3,923 kb deletion within the Xp22.31 region (chrX: 5810838-9733877) containing STS, ANOS1, GPR143, NLGN4X, VCX-A, PUDP, and PNPLA4 in patient 1, who presented with KS, XLI, obesity, hyperlipidemia, and strabismus. We identified a novel 5,807 kb deletion within the Xp22.31-p22.33 regions (chrX: 2700083-8507807) containing STS, ANOS1, and other 24 genes in patient 2, who presented with KS, XLI, obesity, and strabismus. No developmental delay, abnormal speech development, or autistic behavior were noticed in either patient. We identified two novel microdeletions in the X chromosome leading to KS and XLI. These findings contribute to the understanding of the molecular mechanisms that drive contiguous gene syndromes. Our research confirmed that the Kallmann-Ichthyosis phenotype is caused by microdeletions at the chromosome level."	"Understanding the Landscape of X-linked Variants Causing Intellectual Disability in Females Through Extreme X Chromosome Inactivation Skewing. Intellectual disability (ID) affects 30% more males than females. This sex bias can be attributed to the enrichment of genes on the X chromosome playing essential roles in the central nervous system and their hemizygous state on males. Moreover, as a result of X chromosome inactivation (XCI), most genes on one of the X chromosomes in female somatic cells are epigenetically silenced, so that females carrying X-linked variants are not expected to be so severely affected as males. Consequently, the knowledge about X-linked ID (XLID) in females is still scarce. Herein, we used extreme XCI skewing (≥ 90%) to predict X-linked variants in females with idiopathic ID. XCI profiles from 53 probands were estimated from blood and buccal mucosa through a methylation-sensitive AR/RP2 assay. DNA samples with extreme XCI skewing were then submitted to array-comparative genomic hybridization and whole-exome sequencing. Seven females (13.2%) exhibited extreme XCI skewing, a percentage significantly higher than expected for healthy females in our population. XLID-potentially related variants were identified in five patients with extreme XCI skewing, including one pathogenic rstructural rearrangement [der(X) chromosome from a t(X;2)] and four single nucleotide variants in NLGN4X, HDAC8, TAF1, and USP9X genes, two of which affecting XCI escape genes. XCI skewing showed to be an outstanding approach for the characterization of molecular mechanisms underlying XLID in females. Beyond expanding the spectrum of variants/phenotypes associated with ID, our results pointed to compensatory biological pathways underlying XCI and uncover new insights into the involvement of escape genes on XLID, impacting genetic counseling."	"A Cluster of Autism-Associated Variants on X-Linked NLGN4X Functionally Resemble NLGN4Y. Autism spectrum disorder (ASD) is more prevalent in males; however, the etiology for this sex bias is not well understood. Many mutations on X-linked cell adhesion molecule NLGN4X result in ASD or intellectual disability. NLGN4X is part of an X-Y pair, with NLGN4Y sharing ∼97% sequence homology. Using biochemistry, electrophysiology, and imaging, we show that NLGN4Y displays severe deficits in maturation, surface expression, and synaptogenesis regulated by one amino acid difference with NLGN4X. Furthermore, we identify a cluster of ASD-associated mutations surrounding the critical amino acid in NLGN4X, and these mutations phenocopy NLGN4Y. We show that NLGN4Y cannot compensate for the functional deficits observed in ASD-associated NLGN4X mutations. Altogether, our data reveal a potential pathogenic mechanism for male bias in NLGN4X-associated ASD."	"Prostaglandin E2 in a TLR3- and 7/8-agonist-based DC maturation cocktail generates mature, cytokine-producing, migratory DCs but impairs antigen cross-presentation to CD8<sup>+</sup> T cells. Mature dendritic cells (DCs) represent cellular adjuvants for optimal antigen presentation in cancer vaccines. Recently, a combination of prostaglandin E2 (PGE2) with Toll-like receptor agonists (TLR-P) was proposed as a new standard to generate superior cytokine-producing DCs with high migratory capacity. Here, we compare TLR-P DCs with conventional DCs matured only with the proinflammatory cytokines TNFα and IL-1ß (CDCs), focussing on the interaction of resulting DCs with CD8<sup>+</sup> T-cells. TLR-P matured DCs showed elevated expression of activation markers such as CD80 and CD83 compared to CDCs, together with a significantly higher migration capacity. Secretion of IL-6, IL-8, IL-10, and IL-12 was highest after 16 h in TLR-P DCs, and only TLR-P DCs secreted active IL-12p70. TLR-P DCs as well as CDCs successfully primed multifunctional CD8<sup>+</sup> T-cells from naïve precursors specific for the peptide antigens Melan-A, NLGN4X, and PTP with comparable priming efficacy and T-cell receptor avidity. CD8<sup>+</sup> T-cells primed by TLR-P DCs showed significantly elevated expression of the integrin VLA-4 and a trend for higher T-cell numbers after expansion. In contrast, TLR-P DCs displayed a substantially reduced capability to cross-present CMVpp65 protein antigen to pp65-specific T cells, an effect that was dose-dependent on PGE2 during DC maturation and reproducible with several responder T-cell lines. In conclusion, TLR-P matured DCs might be optimal presenters of antigens not requiring processing such as short peptides. However, PGE2 seems less favorable for maturation of DCs intended to process and cross-present more complex vaccine antigens such as lysates, proteins or long peptides."	"Evolution of the Autism-Associated Neuroligin-4 Gene Reveals Broad Erosion of Pseudoautosomal Regions in Rodents. Variants in genes encoding synaptic adhesion proteins of the neuroligin family, most notably neuroligin-4, are a significant cause of autism spectrum disorders in humans. Although human neuroligin-4 is encoded by two genes, NLGN4X and NLGN4Y, that are localized on the X-specific and male-specific regions of the two sex chromosomes, the chromosomal localization and full genomic sequence of the mouse Nlgn4 gene remain elusive. Here, we analyzed the neuroligin-4 genes of numerous rodent species by direct sequencing and bioinformatics, generated complete drafts of multiple rodent neuroligin-4 genes, and examined their evolution. Surprisingly, we find that the murine Nlgn4 gene is localized to the pseudoautosomal region (PAR) of the sex chromosomes, different from its human orthologs. We show that the sequence differences between various neuroligin-4 proteins are restricted to hotspots in which rodent neuroligin-4 proteins contain short repetitive sequence insertions compared with neuroligin-4 proteins from other species, whereas all other protein sequences are highly conserved. Evolutionarily, these sequence insertions initiate in the clade eumuroidea of the infraorder myomorpha and are additionally associated with dramatic changes in noncoding sequences and gene size. Importantly, these changes are not exclusively restricted to neuroligin-4 genes but reflect major evolutionary changes that substantially altered or even deleted genes from the PARs of both sex chromosomes. Our results show that despite the fact that the PAR in rodents and the neuroligin-4 genes within the rodent PAR underwent massive evolutionary changes, neuroligin-4 proteins maintained a highly conserved core structure, consistent with a substantial evolutionary pressure preserving its physiological function."	"Novel human sex-typing strategies based on the autism candidate gene NLGN4X and its male-specific gametologue NLGN4Y. Since the early days of PCR techniques, sex identification, &quot;sex-typing,&quot; of genomic DNA samples has been a fundamental part of human forensic analysis but also in animal genetics aiming at strategic livestock breeding. Most analyses are employing the AMELX/AMELY gene loci on the X and Y chromosomes present in most mammals. We hypothesize that sex-typing in humans is also possible based on the genes NLGN4X and NLGN4Y, which represent X and Y chromosome-specific copies of a common ancestral neuroligin-4 orthologue. Genomic DNA was isolated from human blood and buccal cell samples (total n = 111) and submitted to two different strategies: (a) a traditional two-primer PCR approach detecting an insertion/deletion (indel) polymorphism immediately upstream of the translational start on exon 1 and (b) detection of a single nucleotide polymorphism, SNP, on the translational stop carrying exon 7. The SNP detection was based on a quantitative PCR approach (rhAMP genotyping) employing DNA/RNA hybrid oligonucleotides that were blocked and which could only be activated upon perfect annealing to the target DNA sequence. All indel PCR-tested human DNA samples showed two bands for males representing X- and Y-specific copies of NLGN4 and a single band for female samples, i.e., homozygosity of NLGN4X and absence of NLGN4Y, in accordance with the self-reported sex of the donors. These results were in perfect agreement with the results of the rhAMP-based SNP-detection method: all males were consequently positive for both alleles, representing either SNP variant, and females were interpreted as homozygous regarding the SNP variant found in NLGN4X. Both methods have shown reliable and consistent results that enabled us to infer the sex of donor DNA samples across different ethnicities. These results indicate that the detection of human NLGN4X/Y is a suitable alternative to previously reported methods employing gene loci such as AMELX/Y. Furthermore, this is the first report applying successfully the rhAMP-genotyping strategy as a means for SNP-based sex-typing, which consequently will be applicable to other gene loci or different species as well."	"Sex identification in horses (Equus caballus) based on the gene pair NLGN4X/NLGN4Y. NA"	"Neuroligin-4 Regulates Excitatory Synaptic Transmission in Human Neurons. The autism-associated synaptic-adhesion gene Neuroligin-4 (NLGN4) is poorly conserved evolutionarily, limiting conclusions from Nlgn4 mouse models for human cells. Here, we show that the cellular and subcellular expression of human and murine Neuroligin-4 differ, with human Neuroligin-4 primarily expressed in cerebral cortex and localized to excitatory synapses. Overexpression of NLGN4 in human embryonic stem cell-derived neurons resulted in an increase in excitatory synapse numbers but a remarkable decrease in synaptic strength. Human neurons carrying the syndromic autism mutation NLGN4-R704C also formed more excitatory synapses but with increased functional synaptic transmission due to a postsynaptic mechanism, while genetic loss of NLGN4 did not significantly affect synapses in the human neurons analyzed. Thus, the NLGN4-R704C mutation represents a change-of-function mutation. Our work reveals contrasting roles of NLGN4 in human and mouse neurons, suggesting that human evolution has impacted even fundamental cell biological processes generally assumed to be highly conserved."	"Y chromosome gene copy number and lack of autism phenotype in a male with an isodicentric Y chromosome and absent NLGN4Y expression. We describe a unique male with a dicentric Y chromosome whose phenotype was compared to that of males with 47,XYY (XYY). The male Y-chromosome aneuploidy XYY is associated with physical, behavioral/cognitive phenotypes, and autism spectrum disorders. We hypothesize that increased risk for these phenotypes is caused by increased copy number/overexpression of Y-encoded genes. Specifically, an extra copy of the neuroligin gene NLGN4Y might elevate the risk of autism in boys with XYY. We present a unique male with the karyotype 46,X,idic(Y)(q11.22), which includes duplication of the Y short arm and proximal long arm and deletion of the distal long arm, evaluated his physical, behavioral/cognitive, and neuroimaging/magnetoencephalography (MEG) phenotypes, and measured blood RNA expression of Y genes. The proband had tall stature and cognitive function within the typical range, without autism features. His blood RNA showed twofold increase in expression of Yp genes versus XY controls, and absent expression of deleted Yq genes, including NLGN4Y. The M100 latencies were similar to findings in typically developing males. In summary, the proband had overexpression of a subset of Yp genes, absent NLGN4Y expression, without ASD findings or XYY-MEG latency findings. These results are consistent with a role for NLGN4Y overexpression in the etiology of behavioral phenotypes associated with XYY. Further investigation of NLGN4Y as an ASD risk gene in XYY is warranted. The genotype and phenotype(s) of this subject may also provide insight into how Y chromosome genes contribute to normal male development and the male predominance in ASD."	"Analysis of the SNP rs3747333 and rs3747334 in NLGN4X gene in autism spectrum disorder: a meta-analysis. The SNP rs3747333 and rs3747334 in Neuroligin 4X (NLGN4X) gene have been demonstrated to be associated with the susceptibility to Autism spectrum disorder (ASDs; MIM 209850), but the results are inconsistent. Therefore, a meta-analysis of eligible studies reporting the association between rs3747333 and rs3747334 and ASD was carried out to enhance the reliability of published results. A systematic literature search was performed using PubMed, Web of Science, Cochrane Library to search English articles concerning the relation between rs3747333, rs3747334 and ASD up to Sep. 21th, 2017. Summary odds ratios (OR) and 95% confidence interval (CI) were used to evaluate the risk of rs3747333, rs3747334 in the ASD. The heterogeneity and publication bias of the eligible studies were also evaluated. Six eligible studies involving 1284 subjects (735 patients and 549 healthy controls) were included in this meta-analysis. Overall, the results indicated that there was no significant risk elevation between rs3747333, rs3747334 variants and ASD (OR = 0.39, 95% CI 0.10-1.60). Furthermore, sensitivity analysis and publication bias analysis confirmed this result. In conclusion, our meta-analysis suggests that the rs3747333, rs3747334 in NLGN4X gene are not frequent causes of ASD."	"Significance of neurexin and neuroligin polymorphisms in regulating risk of Hirschsprung's disease. By performing a basic case-control study among a Chinese population, the aims of this study were to explore if single nucleotide polymorphisms (SNPs) within neurexin and neuroligin were associated with susceptibility to Hirschsprung's disease (HD). Eleven SNPs within neurexin and neuroligin were selected in this basic case-control study, and this study recruited 210 children with HD and 187 healthy children. The t-test and Χ<sup>2</sup> test were used to find the difference between case and control in their clinical variables. OR and 95% CI were used to assess the association between HD susceptibility and neurexin/neuroligin polymorphisms/haplotypes. Several SNPs were significantly associated with altered risk of HD in the Chinese Han population, including rs1421589 within NRXN1, rs11795613 and rs4844285 within NLGN3, as well as rs5961397, rs7157669 and rs724373 within NLGX4X (all P&lt;0.05). Further studies presented that the effects of rs1421589 within NRXN1, rs4844285 and rs11795613 within NLGN3, as well as rs5961397 within NLGX4X on HD phenotypes were also statistically significant (all P&lt;0.05). Conclusively, the polymorphisms and haplotypes situated within neurexin and neuroligin were markedly associated with the onset of HD, implying that mutations of neurexin and neuroligin might serve as the treatment target for HD for the Chinese children."	"Diagnostic efficacy and new variants in isolated and complex autism spectrum disorder using molecular karyotyping. Autism spectrum disorder (ASD) is a group of the neurodevelopment disorders presenting as an isolated ASD or more complex forms, where a broader clinical phenotype comprised of developmental delay and intellectual disability is present. Both the isolated and complex forms have a significant causal genetic component and submicroscopic genomic copy number variations (CNV) are the most common identifiable genetic factor in these patients. The data on microarray testing in ASD cohorts are still accumulating and novel loci are often identified; therefore, we aimed to evaluate the diagnostic efficacy of the method and the relevance of implementing it into routine genetic testing in ASD patients. A genome-wide CNV analysis using the Agilent microarrays was performed in a group of 150 individuals with an isolated or complex ASD. Altogether, 11 (7.3%) pathogenic CNVs and 15 (10.0%) variants of unknown significance (VOUS) were identified, with the highest proportion of pathogenic CNVs in the subgroup of the complex ASD patients (14.3%). An interesting case of previously unreported partial UPF3B gene deletion was identified among the pathogenic CNVs. Among the CNVs with unknown significance, four VOUS involved genes with possible correlation to ASD, namely genes SNTG2, PARK2, CADPS2 and NLGN4X. The diagnostic efficacy of aCGH in our cohort was comparable with those of the previously reported and identified an important proportion of genetic ASD cases. Despite the continuum of published studies on the CNV testing in ASD cohorts, a considerable number of VOUS CNVs is still being identified, namely 10.0% in our study."	"Genes and Pathways Regulated by Androgens in Human Neural Cells, Potential Candidates for the Male Excess in Autism Spectrum Disorder. Prenatal exposure to androgens during brain development in male individuals may participate to increase their susceptibility to develop neurodevelopmental disorders such as autism spectrum disorder (ASD) and intellectual disability. However, little is known about the action of androgens in human neural cells. We used human neural stem cells differentiated from embryonic stem cells to investigate targets of androgens. RNA sequencing revealed that treatment with dihydrotestosterone (DHT) leads to subtle but significant changes in the expression of about 200 genes, encoding proteins of extracellular matrix or involved in signal transduction of growth factors (e.g., insulin/insulin growth factor 1). We showed that the most differentially expressed genes (DEGs), RGCC, RNF144B, NRCAM, TRIM22, FAM107A, IGFBP5, and LAMA2, are reproducibly regulated by different androgens in different genetic backgrounds. We showed, by overexpressing the androgen receptor in neuroblastoma cells SH-SY5Y or knocking it down in human neural stem cells, that this regulation involves the androgen receptor. A chromatin immunoprecipitation combined with direct sequencing analysis identified androgen receptor-bound sequences in nearly half of the DHT-DEGs and in numerous other genes. DHT-DEGs appear enriched in genes involved in ASD (ASXL3, NLGN4X, etc.), associated with ASD (NRCAM), or differentially expressed in patients with ASD (FAM107A, IGFBP5). Androgens increase human neural stem cell proliferation and survival in nutrient-deprived culture conditions, with no detectable effect on regulation of neurite outgrowth. We characterized androgen action in neural progenitor cells, identifying DHT-DEGs that appear to be enriched in genes related to ASD. We also showed that androgens increase proliferation of neuronal precursors and protect them from death during their differentiation in nutrient-deprived conditions."	"Neuroligin 4X overexpression in human breast cancer is associated with poor relapse-free survival. The molecular mechanisms involved in breast cancer progression and metastasis still remain unclear to date. It is a heterogeneous disease featuring several different phenotypes with consistently different biological characteristics. Neuroligins are neural cell adhesion molecules that have been implicated in heterotopic cell adhesion. In humans, alterations in neuroligin genes are implicated in autism and other cognitive diseases. Until recently, neuroligins have been shown to be abundantly expressed in blood vessels and also play a role implicated in the growth of glioma cells. Here we report increased expression of neuroligin 4X (NLGN4X) in breast cancer. We found NLGN4X was abundantly expressed in breast cancer tissues. NLGN4X expression data for all breast cancer cell lines in the Cancer Cell Line Encyclopedia (CCLE) was analyzed. Correlation between NLGN4X levels and clinicopathologic parameters were analyzed within Oncomine datasets. Evaluation of these bioinfomatic datasets results revealed that NLGN4X expression was higher in triple negative breast cancer cells, particularly the basal subtype and tissues versus non-triple-negative sets. Its level was also observed to be higher in metastatic tissues. RT-PCR, flow cytometry and immunofluorescence study of MDA-MB-231 and MCF-7 breast cancer cells validated that NLGN4X was increased in MDA-MB-231. Knockdown of NLGN4X expression by siRNA decreased cell proliferation and migration significantly in MDA-MB-231 breast cancer cells. NLGN4X knockdown in MDA-MB-231 cells resulted in induction of apoptosis as determined by annexin staining, elevated caspase 3/7 and cleaved PARP by flow cytometry. High NLGN4X expression highly correlated with decrease in relapse free-survival in TNBC. NLGN4X might represent novel biomarkers and therapeutic targets for breast cancer. Inhibition of NLGN4X may be a new target for the prevention and treatment of breast cancer."	"Male homosexuality and maternal immune responsivity to the Y-linked protein NLGN4Y. We conducted a direct test of an immunological explanation of the finding that gay men have a greater number of older brothers than do heterosexual men. This explanation posits that some mothers develop antibodies against a Y-linked protein important in male brain development, and that this effect becomes increasingly likely with each male gestation, altering brain structures underlying sexual orientation in their later-born sons. Immune assays targeting two Y-linked proteins important in brain development-protocadherin 11 Y-linked (PCDH11Y) and neuroligin 4 Y-linked (NLGN4Y; isoforms 1 and 2)-were developed. Plasma from mothers of sons, about half of whom had a gay son, along with additional controls (women with no sons, men) was analyzed for male protein-specific antibodies. Results indicated women had significantly higher anti-NLGN4Y levels than men. In addition, after statistically controlling for number of pregnancies, mothers of gay sons, particularly those with older brothers, had significantly higher anti-NLGN4Y levels than did the control samples of women, including mothers of heterosexual sons. The results suggest an association between a maternal immune response to NLGN4Y and subsequent sexual orientation in male offspring."	"Cell surface markers for the identification and study of human naive pluripotent stem cells. Characterisation of mouse pluripotent stem cells has revealed two distinct pluripotent states, naive and primed, that maintain characteristics of the pre and post implanted epiblast respectively. Recent studies have developed several culture systems that seek to recapitulate the naive phenomenon in human pluripotent stem cells. Therefore, robust methods to isolate these cells will be fundamental to assess their potential in modelling human development and disease. Here we review current methods for human naive pluripotent culture and collate a list of cell surface antigens that have been identified as markers to differentiate naive from primed human pluripotent stem cells. While these culture systems do display marker variability, and not all antigens mentioned were assessed in all methods, this review provides a resource for researchers of the human naive pluripotent stem cell state. SSEA-4, SSEA-3, CD24, CD75, CD7, CD77, CD130/GP130, CD57, CD90 and NLGN4X were all found to have a +/- expression profile in at least 2 methods, while +/- expression of Tra-1-81, CDH3, CD172a, CD107b, CD229 was reported in one method. Often it was reported that naive and primed cells could be defined using a low/medium/high expression of the following antigens TRA-1-60, PCDH1, GPR64, MHC Class I, however these markers were more likely to display expression pattern differences between methods. Studies using mouse naive cells indicate that they may have benefits over primed cells in modelling development and disease, and while it is yet to be determined if the same can be said about a human naive state, tools to identify this population should greatly further the field."	"Binding of mycotoxins to proteins involved in neuronal plasticity: a combined in silico/wet investigation. We have applied a combined computational procedure based on inverse and direct docking in order to identify putative protein targets of a panel of mycotoxins and xenobiotic compounds that can contaminate food and that are known to have several detrimental effects on human health. This procedure allowed us to identify a panel of human proteins as possible targets for aflatoxins, gliotoxin, ochratoxin A and deoxynivalenol. Steady-state fluorescence and microscale thermophoresis experiments allowed us to confirm the binding of some of these mycotoxins to acetylcholinesterase and X-linked neuroligin 4, two proteins involved in synapse activity and, particularly for the second protein, neuronal plasticity and development. Considering the possible involvement of X-linked neuroligin 4 in the etiopathogenesis of autism spectrum syndrome, this finding opens up a new avenue to explore the hypothetical role of these xenobiotic compounds in the onset of this pathology."	"Not all neuroligin 3 and 4X missense variants lead to significant functional inactivation. Neuroligins are postsynaptic cell adhesion molecules that interact with neurexins to regulate the fine balance between excitation and inhibition of synapses. Recently, accumulating evidence, involving mutation analysis, cellular assays, and mouse models, has suggested that neuroligin (NLGN) mutations affect synapse maturation and function. Previously, four missense variations [p.G426S (NLGN3), p.G84R (NLGN4X), p.Q162K (NLGN4X), and p.A283T (NLGN4X)] in four different unrelated patients have been identified by PCR and direct sequencing. In this study, we analyzed the functional effect of these missense variations by in vitro experiment via the stable HEK293 cells expressing wild-type and mutant neuroligin. We found that the four mutations did not significantly impair the expression of neuroligin 3 and neuroligin 4X, and also did not measurably inhibit the neurexin 1-neuroligin interaction. These variants might play a modest role in the pathogenesis of autism or might simply be unreported infrequent polymorphisms. Our data suggest that these four previously described neuroligin mutations are not primary risk factors for autism."	"Expanding the genetic spectrum of ANOS1 mutations in patients with congenital hypogonadotropic hypogonadism. What is the prevalence and functional consequence of ANOS1 (KAL1) mutations in a group of men with congenital hypogonadotropic hypogonadism (CHH)? Three of forty-two (7.1%) patients presented ANOS1 mutations, including a novel splice site mutation leading to exon skipping and a novel contiguous gene deletion associated with ichthyosis. CHH is characterized by lack of pubertal development and infertility, due to deficient production, secretion or action of GnRH, and can be associated with anosmia/hyposmia (Kallmann syndrome, KS) or with a normal sense of smell (normosmic CHH). Mutations in the anosmin-1 (ANOS1) gene are responsible for the X-linked recessive form of KS. This cross-sectional study included 42 unrelated men with CHH (20 with KS and 22 with normosmic CHH). Patients were screened for mutations in the ANOS1 gene by DNA sequencing. Identified mutations were further investigated by RT-PCR analysis and multiplex ligation-dependent probe amplification (MLPA) analysis. Hemizygous mutations were identified in three (7.1%) KS cases: a novel splice acceptor site mutation (c.542-1G&gt;C), leading to skipping of exon 5 in the ANOS1 transcript in a patient with self-reported normosmia (but hyposmic upon testing); a recurrent nonsense mutation (c.571C&gt;T, p.Arg191*); and a novel 4.8 Mb deletion involving ANOS1 and eight other genes (VCX3B, VCX2, PNPLA4, VCX, STS, HDHD1, VCX3A and NLGN4X) in KS associated with ichthyosis. Objective olfactory testing was not performed in all cases of self-reported normosmia and this may have underestimated the olfactory deficits. This study further expands the spectrum of known genetic defects associated with CHH and suggests that patients with self-reported normal olfactory function should not be excluded from ANOS1 genetic testing. This study was funded by the Portuguese Foundation for Science and Technology. The authors have no conflicts of interest. N/A."	"Association Analysis of Noncoding Variants in Neuroligins 3 and 4X Genes with Autism Spectrum Disorder in an Italian Cohort. Since involved in synaptic transmission and located on X-chromosome, neuroligins 3 and 4X have been studied as good positional and functional candidate genes for autism spectrum disorder pathogenesis, although contradictory results have been reported. Here, we performed a case-control study to assess the association between noncoding genetic variants in NLGN3 and NLGN4X genes and autism, in an Italian cohort of 202 autistic children analyzed by high-resolution melting. The results were first compared with data from 379 European healthy controls (1000 Genomes Project) and then with those from 1061 Italian controls genotyped by Illumina single nucleotide polymorphism (SNP) array 1M-duo. Statistical evaluations were performed using Plink v1.07, with the Omnibus multiple loci approach. According to both the European and the Italian control groups, a 6-marker haplotype on NLGN4X (rs6638575(G), rs3810688(T), rs3810687(G), rs3810686(C), rs5916269(G), rs1882260(T)) was associated with autism (odd ratio = 3.58, p-value = 2.58 × 10<sup>-6</sup> for the European controls; odds ratio = 2.42, p-value = 6.33 × 10<sup>-3</sup> for the Italian controls). Furthermore, several haplotype blocks at 5-, 4-, 3-, and 2-, including the first 5, 4, 3, and 2 SNPs, respectively, showed a similar association with autism. We provide evidence that noncoding polymorphisms on NLGN4X may be associated to autism, suggesting the key role of NLGN4X in autism pathophysiology and in its male prevalence."	"Constructing Bayesian networks by integrating gene expression and copy number data identifies NLGN4Y as a novel regulator of prostate cancer progression. To understand the heterogeneity of prostate cancer (PCa) and identify novel underlying drivers, we constructed integrative molecular Bayesian networks (IMBNs) for PCa by integrating gene expression and copy number alteration data from published datasets. After demonstrating such IMBNs with superior network accuracy, we identified multiple sub-networks within IMBNs related to biochemical recurrence (BCR) of PCa and inferred the corresponding key drivers. The key drivers regulated a set of common effectors including genes preferentially expressed in neuronal cells. NLGN4Y-a protein involved in synaptic adhesion in neurons-was ranked as the top gene closely linked to key drivers of myogenesis subnetworks. Lower expression of NLGN4Y was associated with higher grade PCa and an increased risk of BCR. We show that restoration of the protein expression of NLGN4Y in PC-3 cells leads to decreased cell proliferation, migration and inflammatory cytokine expression. Our results suggest that NLGN4Y is an important negative regulator in prostate cancer progression. More importantly, it highlights the value of IMBNs in generating biologically and clinically relevant hypotheses about prostate cancer that can be validated by independent studies."	"Complex genomic variants contribute toward the genetic architecture of autism spectrum disorder. Genetic factor plays a critical role in the etiology of autism spectrum disorder (ASD). Both common variants with a small effect and rare mutations with a large effect contribute toward the genetic basis of ASD, showing the high genetic heterogeneity of ASD. Genomic rearrangements account for around 10-15% of its genetic landscape. However, they are highly individualized and each of them has a very rare frequency."	"Spatial sexual dimorphism of X and Y homolog gene expression in the human central nervous system during early male development. Renewed attention has been directed to the functions of the Y chromosome in the central nervous system during early human male development, due to the recent proposed involvement in neurodevelopmental diseases. PCDH11Y and NLGN4Y are of special interest because they belong to gene families involved in cell fate determination and formation of dendrites and axon. We used RNA sequencing, immunocytochemistry and a padlock probing and rolling circle amplification strategy, to distinguish the expression of X and Y homologs in situ in the human brain for the first time. To minimize influence of androgens on the sex differences in the brain, we focused our investigation to human embryos at 8-11 weeks post-gestation. We found that the X- and Y-encoded genes are expressed in specific and heterogeneous cellular sub-populations of both glial and neuronal origins. More importantly, we found differential distribution patterns of X and Y homologs in the male developing central nervous system. This study has visualized the spatial distribution of PCDH11X/Y and NLGN4X/Y in human developing nervous tissue. The observed spatial distribution patterns suggest the existence of an additional layer of complexity in the development of the male CNS."	"GABA/Glutamate synaptic pathways targeted by integrative genomic and electrophysiological explorations distinguish autism from intellectual disability. Phenotypic and genetic heterogeneity is predominant in autism spectrum disorders (ASD), for which the molecular and pathophysiological bases are still unclear. Significant comorbidity and genetic overlap between ASD and other neurodevelopmental disorders are also well established. However, little is understood regarding the frequent observation of a wide phenotypic spectrum associated with deleterious mutations affecting a single gene even within multiplex families. We performed a clinical, neurophysiological (in vivo electroencephalography-auditory-evoked related potentials) and genetic (whole-exome sequencing) follow-up analysis of two families with known deleterious NLGN4X gene mutations (either truncating or overexpressing) present in individuals with ASD and/or with intellectual disability (ID). Complete phenotypic evaluation of the pedigrees in the ASD individuals showed common specific autistic behavioural features and neurophysiological patterns (abnormal MisMatch Negativity in response to auditory change) that were absent in healthy parents as well as in family members with isolated ID. Whole-exome sequencing in ASD patients from each family identified a second rare inherited genetic variant, affecting either the GLRB or the ANK3 genes encoding NLGN4X interacting proteins expressed in inhibitory or in excitatory synapses, respectively. The GRLB and ANK3 mutations were absent in relatives with ID as well as in control databases. In summary, our findings provide evidence of a double-hit genetic model focused on excitatory/inhibitory synapses in ASD, that is not found in isolated ID, associated with an atypical in vivo neurophysiological pattern linked to predictive coding. "	"Pathogenic mechanism of an autism-associated neuroligin mutation involves altered AMPA-receptor trafficking. Neuroligins are postsynaptic cell-adhesion molecules that bind to presynaptic neurexins. Although the general synaptic role of neuroligins is undisputed, their specific functions at a synapse remain unclear, even controversial. Moreover, many neuroligin gene mutations were associated with autism, but the pathophysiological relevance of these mutations is often unknown, and their mechanisms of action uninvestigated. Here, we examine the synaptic effects of an autism-associated neuroligin-4 substitution (called R704C), which mutates a cytoplasmic arginine residue that is conserved in all neuroligins. We show that the R704C mutation, when introduced into neuroligin-3, enhances the interaction between neuroligin-3 and AMPA receptors, increases AMPA-receptor internalization and decreases postsynaptic AMPA-receptor levels. When introduced into neuroligin-4, conversely, the R704C mutation unexpectedly elevated AMPA-receptor-mediated synaptic responses. These results suggest a general functional link between neuroligins and AMPA receptors, indicate that both neuroligin-3 and -4 act at excitatory synapses but perform surprisingly distinct functions, and demonstrate that the R704C mutation significantly impairs the normal function of neuroligin-4, thereby validating its pathogenicity. "	"Autism-associated mutation inhibits protein kinase C-mediated neuroligin-4X enhancement of excitatory synapses. Autism spectrum disorders (ASDs) comprise a highly heritable, multifarious group of neurodevelopmental disorders, which are characterized by repetitive behaviors and impairments in social interactions. Point mutations have been identified in X-linked Neuroligin (NLGN) 3 and 4X genes in patients with ASDs and all of these reside in their extracellular domains except for a single point mutation in the cytoplasmic domain of NLGN4X in which an arginine is mutated to a cysteine (R704C). Here we show that endogenous NLGN4X is robustly phosphorylated by protein kinase C (PKC) at T707, and R704C completely eliminates T707 phosphorylation. Endogenous NLGN4X is intensely phosphorylated on T707 upon PKC stimulation in human neurons. Furthermore, a phospho-mimetic mutation at T707 has a profound effect on NLGN4X-mediated excitatory potentiation. Our results now establish an important interplay between a genetic mutation, a key posttranslational modification, and robust synaptic changes, which can provide insights into the synaptic dysfunction of ASDs. "	"Ochratoxin A as possible factor trigging autism and its male prevalence via epigenetic mechanism. The role of dysbiosis causing leaky gut with xenobiotic production and absorption is increasingly demonstrated in autism spectrum disorder (ASD) pathogenesis. Among xenobiotics, we focused on ochratoxin A (one of the major food contaminating mycotoxin), that in vitro and in vivo exerts a male-specific neurotoxicity probably via microRNA modulation of a specific target gene. Among possible targets, we focused on neuroligin4X. Interestingly, this gene carries some single nucleotide polymorphisms (SNPs) already correlated with the disease and with illegitimate microRNA binding sites and, being located on X-chromosome, could explain the male prevalence. In conclusion, we propose a possible gene-environment interaction triggering ASD explaining the epigenetic neurotoxic mechanism activated by ochratoxin A in genetically predisposed children. This mechanism offers a clue for male prevalence of the disease and may have an important impact on prevention and cure of ASD."	"Behavioral phenotypes in males with XYY and possible role of increased NLGN4Y expression in autism features. The male sex chromosome disorder, 47,XYY syndrome (XYY), is associated with increased risk for social-emotional difficulties, attention-deficit hyperactivity disorder (ADHD) and autism spectrum disorder (ASD). We hypothesize that increased Y chromosome gene copy number in XYY leads to overexpression of Y-linked genes related to brain development and function, thereby increasing risk for these phenotypes. We measured expression in blood of two Y genes NLGN4Y and RPS4Y in 26 boys with XYY and 11 male controls and evaluated whether NLGN4Y expression correlates with anxiety, ADHD, depression and autistic behaviors (from questionnaires) in boys with XYY. The XYY cohort had increased risk of ASD behaviors on the social responsiveness scale (SRS) and increased attention deficits on the Conners' DSM-IV inattention and hyperactive scales. In contrast, there was no increase in reported symptoms of anxiety or depression by the XYY group. Peripheral expression of two Y genes in boys with XYY vs. typically developing controls was increased twofold in the XYY group. Results from the SRS total and autistic mannerisms scales, but not from the attention, anxiety or depression measures, correlated with peripheral expression of NLGN4Y in boys with XYY. Males with XYY have social phenotypes that include increased risk for autism-related behaviors and ADHD. Expression of NLGN4Y, a gene that may be involved in synaptic function, is increased in boys with XYY, and the level of expression correlates with overall social responsiveness and autism symptoms. Thus, further investigation of NLGN4Y as a plausible ASD risk gene in XYY is warranted. "	"Variations analysis of NLGN3 and NLGN4X gene in Chinese autism patients. Autism is a neurodevelopmental disorder clinically characterized by impairment of social interaction, deficits in verbal communication, as well as stereotypic and repetitive behaviors. Several studies have implicated that abnormal synaptogenesis was involved in the incidence of autism. Neuroligins are postsynaptic cell adhesion molecules and interacted with neurexins to regulate the fine balance between excitation and inhibition of synapses. Recently, mutation analysis, cellular and mice models hinted neuroligin mutations probably affected synapse maturation and function. In this study, four missense variations [p.G426S (NLGN3), p.G84R (NLGN4X), p.Q162 K (NLGN4X) and p.A283T (NLGN4X)] in four different unrelated patients have been identified by PCR and direct sequencing. These four missense variations were absent in the 453 controls and have not been reported in 1000 Genomes Project. Bioinformatic analysis of the four missense variations revealed that p.G84R and p.A283T were &quot;Probably Damaging&quot;. The variations may cause abnormal synaptic homeostasis and therefore trigger the patients more predisposed to autism. By case-control analysis, we identified the common SNPs (rs3747333 and rs3747334) in the NLGN4X gene significantly associated with risk for autism [p = 5.09E-005; OR 4.685 (95% CI 2.073-10.592)]. Our data provided a further evidence for the involvement of NLGN3 and NLGN4X gene in the pathogenesis of autism in Chinese population."	"Gene expression signatures of primary and metastatic uterine leiomyosarcoma. Leiomyosarcoma (LMS) is the most common uterine sarcoma. Although the disease is relatively rare, it is responsible for considerable mortality due to frequent metastasis and chemoresistance. The molecular events related to LMS metastasis are unknown to date. The present study compared the global gene expression patterns of primary uterine LMSs and LMS metastases. Gene expression profiles of 13 primary and 15 metastatic uterine LMSs were analyzed using the HumanRef-8 BeadChip from Illumina. Differentially expressed candidate genes were validated using quantitative real-time polymerase chain reaction (PCR) and immunohistochemistry. To identify differently expressed genes between primary and metastatic tumors, we performed one-way analysis of variance with Benjamini-Hochberg correction. This led to identification of 203 unique probes that were significantly differentially expressed in the 2 tumor groups by greater than 1.58-fold with P &lt; .01, of which 94 and 109 were overexpressed in primary and metastatic LMSs, respectively. Genes overexpressed in primary uterine LMSs included OSTN, NLGN4X, NLGN1, SLITRK4, MASP1, XRN2, ASS1, RORB, HRASLS, and TSPAN7. Genes overexpressed in LMS metastases included TNNT1, FOLR3, TDO2, CRYM, GJA1, TSPAN10, THBS1, SGK1, SHMT1, EGR2, and AGT. Quantitative real-time PCR confirmed significant anatomical site-related differences in FOLR3, OSTN, and NLGN4X levels; and immunohistochemistry showed significant differences in TDO2 expression. Gene expression profiling differentiates primary uterine LMSs from LMS metastases. The molecular signatures unique to primary and metastatic LMSs may aid in understanding tumor progression in this cancer and in providing a molecular basis for prognostic studies and therapeutic target discovery. "	"Screening of NLGN3 and NLGN4X genes in Thai children with autism spectrum disorder. NA"	"A genome-wide survey of transgenerational genetic effects in autism. Effects of parental genotype or parent-offspring genetic interaction are well established in model organisms for a variety of traits. However, these transgenerational genetic models are rarely studied in humans. We have utilized an autism case-control study with 735 mother-child pairs to perform genome-wide screening for maternal genetic effects and maternal-offspring genetic interaction. We used simple models of single locus parent-child interaction and identified suggestive results (P&lt;10(-4)) that cannot be explained by main effects, but no genome-wide significant signals. Some of these maternal and maternal-child associations were in or adjacent to autism candidate genes including: PCDH9, FOXP1, GABRB3, NRXN1, RELN, MACROD2, FHIT, RORA, CNTN4, CNTNAP2, FAM135B, LAMA1, NFIA, NLGN4X, RAPGEF4, and SDK1. We attempted validation of potential autism association under maternal-specific models using maternal-paternal comparison in family-based GWAS datasets. Our results suggest that further study of parental genetic effects and parent-child interaction in autism is warranted. "	"Sex chromosome-wide association analysis suggested male-specific risk genes for alcohol dependence. Alcohol dependence is more common among men than among women. Potential explanations for this include the role of genes in sex chromosomes (X and Y). In the present study, we scanned the entire Y chromosome and its homologs on the X chromosome in men to identify male-specific risk genes for alcohol dependence. Two thousand nine hundred and twenty-seven individuals in two independent cohorts were analyzed. The European-American male cohort (883 cases with alcohol dependence and 445 controls) served as the discovery cohort and the European-American female cohort (526 cases and 1073 controls) served as a contrast group. All individuals were genotyped on the Illumina Human 1M beadchip. Two thousand two hundred and twenty-four single nucleotide polymorphisms (SNPs) on the Y chromosome or in the homologs on the X chromosome were analyzed. The allele frequencies were compared between cases and controls within each cohort using logistic regression analysis. We found that, after experiment-wide correction, two SNPs on the X chromosome were associated significantly with alcohol dependence in European-American men (P = 1.0 × 10 for rs5916144 and P = 5.5 × 10 for rs5961794 at 3' UTR of NLGN4X), but not in the women. A total of 26 SNPs at 3'UTR of or within NLGN4X were nominally associated with alcohol dependence in men (5.5 × 10 ≤ P ≤ 0.05), all of which were not statistically significant in women. We conclude that NLGN4X was a significant male-specific risk gene for alcohol dependence in European-Americans. NLGN4X might harbor a causal variant(s) for alcohol dependence. A defect of synaptogenesis in neuronal circuitry caused by NLGN4X mutations is believed to play a role in alcohol dependence."	"Mutation screening in the Greek population and evaluation of NLGN3 and NLGN4X genes causal factors for autism. Molecular and neurobiological evidence for the involvement of neuroligins (particularly NLGN3 and NLGN4X genes) in autistic disorder is accumulating. However, previous mutation screening studies on these two genes have yielded controversial results. The present study explores, for the first time, the contribution of NLGN3 and NLGN4X genetic variants in Greek patients with autistic disorder. We analyzed the full exonic sequence of NLGN3 and NLGN4X genes in 40 patients strictly fulfilling the Diagnostic and Statistical Manual of Mental Disorders, 4th ed. criteria for autistic disorder. We identified nine nucleotide changes in NLGN4X--one probable causative mutation (p.K378R) previously reported by our research group, one novel variant (c.-206G&gt;C), one nonvalidated single nucleotide polymorphism (SNP, rs111953947), and six known human SNPs reported in the SNP database--and one known human SNP in NLGN3 also reported in the SNP database. The variants identified are expected to be benign. However, they should be investigated in the context of variants in interacting cellular pathways to assess their contribution to the etiology of autism."	"Expression and significance of neuroligins in myenteric cells of Cajal in Hirschsprung's disease. The aim of this study was to investigate the expression and significance of neuroligins in myenteric cells of Cajal (ICC-MY) in Hirschsprung's disease (HSCR). Longitudinal muscle with adherent myenteric plexus (LMMP) from surgical excision waste colon of HSCR children were prepared by peeling off the mucous layer, sub-mucosal layer and circular muscle. Neuroligins, c-Kit (c-Kit-immunoreactivity representing ICC) and their relationship were assessed by double labeling immunofluorescence staining. ICC-MY were dissociated and cultured from LMMP by enzymolysis method, and were purified and analyzed using a combination of magnetic-activated cell sorting (MACS) and flow cytometry (FCM). Western-blot analysis was applied to compare and evaluate the expression levels of neuroligins in ICC-MY which were dissociated from different segments of HSCR (ganglionic colonic segment, transitional colonic segment and aganglionic colonic segment). Neuroligins and c-Kit were expressed on the same cells (ICC-MY); ICC-MY were dissociated, cultured and purified. For HSCR, neuroligins were expressed significantly in ICC-MY from ganglionic colonic segments, moderately in those from transitional colonic segments and down-regulated significantly in those from aganglionic colonic segments. Neuroligins were expressed in ICC-MY of human beings, and the expression varies from different segments of HSCR. This abnormal expression might play an important role in the pathogenesis of this disease through affecting the synaptic function of ICC-MY."	"Xp22.3 interstitial deletion: a recognizable chromosomal abnormality encompassing VCX3A and STS genes in a patient with X-linked ichthyosis and mental retardation. X-linked ichthyosis is a genetic disorder affecting the skin and caused by a deficit in the steroid sulfatase enzyme (STS), often associated with a recurrent microdeletion at Xp22.31. Most of the STS deleted patients have X-linked ichthyosis as the only clinical feature and it is believed that patients with more complex disorders including mental retardation could be present as a result of contiguous gene deletion. In fact, VCX3A gene, a member of the VCX (variable charge, X chromosome) gene family, was previously proposed as the candidate gene for X-linked non-specific mental retardation in patients with X-linked ichthyosis. We report on a boy with familial ichthyosis, dysmorphic features and moderate mental retardation with approximately 2 Mb interstitial deletion on Xp22.3 involving VCX3A and STS genes."	"The functional genetic link of NLGN4X knockdown and neurodevelopment in neural stem cells. Genetic mutations in NLGN4X (neuroligin 4), including point mutations and copy number variants (CNVs), have been associated with susceptibility to autism spectrum disorders (ASDs). However, it is unclear how mutations in NLGN4X result in neurodevelopmental defects. Here, we used neural stem cells (NSCs) as in vitro models to explore the impacts of NLGN4X knockdown on neurodevelopment. Using two shRNAmir-based vectors targeting NLGN4X and one control shRNAmir vector, we modulated NLGN4X expression and differentiated these NSCs into mature neurons. We monitored the neurodevelopmental process at Weeks 0, 0.5, 1, 2, 4 and 6, based on morphological analysis and whole-genome gene expression profiling. At the cellular level, in NSCs with NLGN4X knockdown, we observed increasingly delayed neuronal development and compromised neurite formation, starting from Week 2 through Week 6 post differentiation. At the molecular level, we identified multiple pathways, such as neurogenesis, neuron differentiation and muscle development, which are increasingly disturbed in cells with NLGN4X knockdown. Notably, several postsynaptic genes, including DLG4, NLGN1 and NLGN3, also have decreased expression. Based on in vitro models, NLGN4X knockdown directly impacts neurodevelopmental process during the formation of neurons and their connections. Our functional genomics study highlights the utility of NSCs models in understanding the functional roles of CNVs in affecting neurodevelopment and conferring susceptibility to neurodevelopmental diseases. "	"Lack of association between NLGN3, NLGN4, SHANK2 and SHANK3 gene variants and autism spectrum disorder in a Chinese population. Autism spectrum disorder (ASD) is a neurodevelopmental disorder characterized by deficits in social communication, absence or delay in language development, and stereotyped or repetitive behaviors. Genetic studies show that neurexin-neuroligin (NRXN-NLGN) pathway genes contribute susceptibility to ASD, which include cell adhesion molecules NLGN3, NLGN4 and scaffolding proteins SHANK2 and SHANK3. Neuroligin proteins play an important role in synaptic function and trans-synaptic signaling by interacting with presynaptic neurexins. Shank proteins are scaffolding molecules of excitatory synapses, which function as central organizers of the postsynaptic density. Sequence level mutations and structural variations in these genes have been identified in ASD cases, while few studies were performed in Chinese population. In this study, we examined the copy numbers of four genes NLGN4, NLGN3, SHANK2, and SHANK3 in 285 ASD cases using multiplex fluorescence competitive polymerase chain reaction (PCR). We also screened the regulatory region including the promoter region and 5'/3' untranslated regions (UTR) and the entire coding region of NLGN4 in a cohort of 285 ASD patients and 384 controls by direct sequencing of genomic DNA using the Sanger method. DNA copy number calculation in four genes showed no deletion or duplication in our cases. No missense mutations in NLGN4 were identified in our cohort. Association analysis of 6 common SNPs in NLGN4 did not find significant difference between ASD cases and controls. These findings showed that these genes may not be major disease genes in Chinese ASD cases."	"Analysis of the genes encoding neuroligins NLGN3 and NLGN4 in Bulgarian patients with autism. Many studies have supported a genetic aetiology for autism. Neuroligins are postsynaptically located cell-adhesion molecules. Mutations in two X-linked neuroligin genes, NLGN3 and NLGN4, have been implicated in pathogenesis of autism. In order to confirm these causative mutations in our autistic population and to determine their frequency we screened 20 individuals affected with autism. We identified one patient with a point mutation in NLGN4 gene that substituted a Met for Thr 787 - c.2360C &gt; T, p.(Thr787Met) and three patients with identical polymorphisms in the same gene: c.933C &gt; T, p.(Thr311Thr) in combination with c.[1777C &gt; T+1779C &gt; G, p.(Leu593Leu)]. All patients tested for NLGN3 mutations were negative. These results indicate that mutations in these genes are responsible for at most a small fraction of autism cases."	"Rare exonic deletions implicate the synaptic organizer Gephyrin (GPHN) in risk for autism, schizophrenia and seizures. The GPHN gene codes for gephyrin, a key scaffolding protein in the neuronal postsynaptic membrane, responsible for the clustering and localization of glycine and GABA receptors at inhibitory synapses. Gephyrin has well-established functional links with several synaptic proteins that have been implicated in genetic risk for neurodevelopmental disorders such as autism spectrum disorder (ASD), schizophrenia and epilepsy including the neuroligins (NLGN2, NLGN4), the neurexins (NRXN1, NRXN2, NRXN3) and collybistin (ARHGEF9). Moreover, temporal lobe epilepsy has been linked to abnormally spliced GPHN mRNA lacking exons encoding the G-domain of the gephyrin protein, potentially arising due to cellular stress associated with epileptogenesis such as temperature and alkalosis. Here, we present clinical and genomic characterization of six unrelated subjects, with a range of neurodevelopmental diagnoses including ASD, schizophrenia or seizures, who possess rare de novo or inherited hemizygous microdeletions overlapping exons of GPHN at chromosome 14q23.3. The region of common overlap across the deletions encompasses exons 3-5, corresponding to the G-domain of the gephyrin protein. These findings, together with previous reports of homozygous GPHN mutations in connection with autosomal recessive molybdenum cofactor deficiency, will aid in clinical genetic interpretation of the GPHN mutation spectrum. Our data also add to the accumulating evidence implicating neuronal synaptic gene products as key molecular factors underlying the etiologies of a diverse range of neurodevelopmental conditions."	"Development of an autism severity score for mice using Nlgn4 null mutants as a construct-valid model of heritable monogenic autism. Autism is the short name of a complex and heterogeneous group of disorders (autism spectrum disorders, ASD) with several lead symptoms required for classification, including compromised social interaction, reduced verbal communication and stereotyped repetitive behaviors/restricted interests. The etiology of ASD is still unknown in most cases but monogenic heritable forms exist that have provided insights into ASD pathogenesis and have led to the notion of autism as a 'synapse disorder'. Among the most frequent monogenic causes of autism are loss-of-function mutations of the NLGN4X gene which encodes the synaptic cell adhesion protein neuroligin-4X (NLGN4X). We previously described autism-like behaviors in male Nlgn4 null mutant mice, including reduced social interaction and ultrasonic communication. Here, we extend the phenotypical characterization of Nlgn4 null mutant mice to both genders and add a series of additional autism-relevant behavioral readouts. We now report similar social interaction and ultrasonic communication deficits in females as in males. Furthermore, aggression, nest-building parameters, as well as self-grooming and circling as indicators of repetitive behaviors/stereotypies were explored in both genders. The construction of a gender-specific autism severity composite score for Nlgn4 mutant mice markedly diminishes population/sample heterogeneity typically obtained for single tests, resulting in p values of &lt;0.00001 and a genotype predictability of 100% for male and of &gt;83% for female mice. Taken together, these data underscore the similarity of phenotypical consequences of Nlgn4/NLGN4X loss-of-function in mouse and man, and emphasize the high relevance of Nlgn4 null mutant mice as an ASD model with both construct and face validity. "	"Identification of rare X-linked neuroligin variants by massively parallel sequencing in males with autism spectrum disorder.  <AbstractText Label=\"BACKGROUND\" NlmCategory=\"BACKGROUND\">Autism spectrum disorder (ASD) is highly heritable, but the genetic risk factors for it remain largely unknown. Although structural variants with large effect sizes may explain up to 15% ASD, genome-wide association studies have failed to uncover common single nucleotide variants with large effects on phenotype. The focus within ASD genetics is now shifting to the examination of rare sequence variants of modest effect, which is most often achieved via exome selection and sequencing. This strategy has indeed identified some rare candidate variants; however, the approach does not capture the full spectrum of genetic variation that might contribute to the phenotype. We surveyed two loci with known rare variants that contribute to ASD, the X-linked neuroligin genes by performing massively parallel Illumina sequencing of the coding and noncoding regions from these genes in males from families with multiplex autism. We annotated all variant sites and functionally tested a subset to identify other rare mutations contributing to ASD susceptibility. We found seven rare variants at evolutionary conserved sites in our study population. Functional analyses of the three 3' UTR variants did not show statistically significant effects on the expression of NLGN3 and NLGN4X. In addition, we identified two NLGN3 intronic variants located within conserved transcription factor binding sites that could potentially affect gene regulation. These data demonstrate the power of massively parallel, targeted sequencing studies of affected individuals for identifying rare, potentially disease-contributing variation. However, they also point out the challenges and limitations of current methods of direct functional testing of rare variants and the difficulties of identifying alleles with modest effects."	"Absence of deficits in social behaviors and ultrasonic vocalizations in later generations of mice lacking neuroligin4. Mutations in NLGN4X have been identified in individuals with autism spectrum disorders and other neurodevelopmental disorders. A previous study reported that adult male mice lacking neuroligin4 (Nlgn4) displayed social approach deficits in the three-chambered test, altered aggressive behaviors and reduced ultrasonic vocalizations. To replicate and extend these findings, independent comprehensive analyses of autism-relevant behavioral phenotypes were conducted in later generations of the same line of Nlgn4 mutant mice at the National Institute of Mental Health in Bethesda, MD, USA and at the Institut Pasteur in Paris, France. Adult social approach was normal in all three genotypes of Nlgn4 mice tested at both sites. Reciprocal social interactions in juveniles were similarly normal across genotypes. No genotype differences were detected in ultrasonic vocalizations in pups separated from the nest or in adults during reciprocal social interactions. Anxiety-like behaviors, self-grooming, rotarod and open field exploration did not differ across genotypes, and measures of developmental milestones and general health were normal. Our findings indicate an absence of autism-relevant behavioral phenotypes in subsequent generations of Nlgn4 mice tested at two locations. Testing environment and methods differed from the original study in some aspects, although the presence of normal sociability was seen in all genotypes when methods taken from Jamain et al. (2008) were used. The divergent results obtained from this study indicate that phenotypes may not be replicable across breeding generations, and highlight the significant roles of environmental, generational and/or procedural factors on behavioral phenotypes. "	"Allele-biased expression in differentiating human neurons: implications for neuropsychiatric disorders. Stochastic processes and imprinting, along with genetic factors, lead to monoallelic or allele-biased gene expression. Stochastic monoallelic expression fine-tunes information processing in immune cells and the olfactory system, and imprinting plays an important role in development. Recent studies suggest that both stochastic events and imprinting may be more widespread than previously considered. We are interested in allele-biased gene expression occurring in the brain because parent-of-origin effects suggestive of imprinting appear to play a role in the transmission of schizophrenia (SZ) and autism spectrum disorders (ASD) in some families. In addition, allele-biased expression could help explain monozygotic (MZ) twin discordance and reduced penetrance. The ability to study allele-biased expression in human neurons has been transformed with the advent of induced pluripotent stem cell (iPSC) technology and next generation sequencing. Using transcriptome sequencing (RNA-Seq) we identified 801 genes in differentiating neurons that were expressed in an allele-biased manner. These included a number of putative SZ and ASD candidates, such as A2BP1 (RBFOX1), ERBB4, NLGN4X, NRG1, NRG3, NRXN1, and NLGN1. Overall, there was a modest enrichment for SZ and ASD candidate genes among those that showed evidence for allele-biased expression (chi-square, p = 0.02). In addition to helping explain MZ twin discordance and reduced penetrance, the capacity to group many candidate genes affecting a variety of molecular and cellular pathways under a common regulatory process - allele-biased expression - could have therapeutic implications."	"Pathogenetic model for Tourette syndrome delineates overlap with related neurodevelopmental disorders including Autism. Tourette syndrome (TS) is a highly heritable neuropsychiatric disorder characterised by motor and vocal tics. Despite decades of research, the aetiology of TS has remained elusive. Recent successes in gene discovery backed by rapidly advancing genomic technologies have given us new insights into the genetic basis of the disorder, but the growing collection of rare and disparate findings have added confusion and complexity to the attempts to translate these findings into neurobiological mechanisms resulting in symptom genesis. In this review, we explore a previously unrecognised genetic link between TS and a competing series of trans-synaptic complexes (neurexins (NRXNs), neuroligins (NLGNs), leucine-rich repeat transmembrane proteins (LRRTMs), leucine rich repeat neuronals (LRRNs) and cerebellin precursor 2 (CBLN2)) that links it with autism spectrum disorder through neurodevelopmental pathways. The emergent neuropathogenetic model integrates all five genes so far found to be uniquely disrupted in TS into a single pathogenetic chain of events described in context with clinical and research implications."	"Identification of Four Novel Synonymous Substitutions in the X-Linked Genes Neuroligin 3 and Neuroligin 4X in Japanese Patients with Autistic Spectrum Disorder. Mutations in the X-linked genes neuroligin 3 (NLGN3) and neuroligin 4X (NLGN4X) were first implicated in the pathogenesis of X-linked autism in Swedish families. However, reports of mutations in these genes in autism spectrum disorder (ASD) patients from various ethnic backgrounds present conflicting results regarding the etiology of ASD, possibly because of genetic heterogeneity and/or differences in their ethnic background. Additional mutation screening study on another ethnic background could help to clarify the relevance of the genes to ASD. We scanned the entire coding regions of NLGN3 and NLGN4X in 62 Japanese patients with ASD by polymerase chain reaction-high-resolution melting curve and direct sequencing analyses. Four synonymous substitutions, one in NLGN3 and three in NLGN4X, were identified in four of the 62 patients. These substitutions were not present in 278 control X-chromosomes from unrelated Japanese individuals and were not registered in the database of Single Nucleotide Polymorphisms build 132 or in the Japanese Single Nucleotide Polymorphisms database, indicating that they were novel and specific to ASD. Though further analysis is necessary to determine the physiological and clinical importance of such substitutions, the possibility of the relevance of both synonymous and nonsynonymous substitutions with the etiology of ASD should be considered."	"Genes associated with autism spectrum disorder. Autism spectrum disorder (ASD) is a heterogeneous grouping of neurodevelopmental disorders characterized by impairment in social interaction, verbal communication and repetitive/stereotypic behaviors. Much evidence suggests that ASD is multifactorial with a strong genetic basis, but the underlying mechanisms are far from clear. Recent advances in genetic technologies are beginning to shed light on possible etiologies of ASD. This review discusses current evidence for several widely studied candidate ASD genes, as well as various rare genes that supports their relationship to the etiology of ASD. The majority of the data are based on molecular, cytogenetic, linkage and association studies of autistic subjects, but newer methods, including whole-exome sequencing, are also beginning to make significant contributions to our understanding of autism."	"Gene expression profile of adult human olfactory bulb and embryonic neural stem cell suggests distinct signaling pathways and epigenetic control. Global gene expression profiling was performed using RNA from human embryonic neural stem cells (hENSC), and adult human olfactory bulb-derived neural stem cells (OBNSCs), to define a gene expression pattern and signaling pathways that are specific for each cell lineage. We have demonstrated large differences in the gene expression profile of human embryonic NSC, and adult human OBNSCs, but less variability between parallel cultures. Transcripts of genes involved in neural tube development and patterning (ALDH1A2, FOXA2), progenitor marker genes (LMX1a, ALDH1A1, SOX10), proliferation of neural progenitors (WNT1 and WNT3a), neuroplastin (NPTN), POU3F1 (OCT6), neuroligin (NLGN4X), MEIS2, and NPAS1 were up-regulated in both cell populations. By Gene Ontology, 325 out of 3875 investigated gene sets were scientifically different. 41 out of the 307 investigated Cellular Component (CC) categories, 45 out of the 620 investigated Molecular Function (MF) categories, and 239 out of the 2948 investigated Biological Process (BP) categories were significant. KEGG Pathway Class Comparison had revealed that 75 out of 171 investigated gene sets passed the 0.005 significance threshold. Levels of gene expression were explored in three signaling pathways, Notch, Wnt, and mTOR that are known to be involved in NS cell fates determination. The transcriptional signature also deciphers the role of genes involved in epigenetic modifications. SWI/SNF DNA chromatin remodeling complex family, including SMARCC1 and SMARCE1, were found specifically up-regulated in our OBNSC but not in hENSC. Differences in gene expression profile of transcripts controlling epigenetic modifications, and signaling pathways might indicate differences in the therapeutic potential of our examined two cell populations in relation to in cell survival, proliferation, migration, and differentiation following engraftments in different CNS insults."	"An autism-associated point mutation in the neuroligin cytoplasmic tail selectively impairs AMPA receptor-mediated synaptic transmission in hippocampus. Neuroligins are evolutionarily conserved postsynaptic cell-adhesion molecules that function, at least in part, by forming trans-synaptic complexes with presynaptic neurexins. Different neuroligin isoforms perform diverse functions and exhibit distinct intracellular localizations, but contain similar cytoplasmic sequences whose role remains largely unknown. Here, we analysed the effect of a single amino-acid substitution (R704C) that targets a conserved arginine residue in the cytoplasmic sequence of all neuroligins, and that was associated with autism in neuroligin-4. We introduced the R704C mutation into mouse neuroligin-3 by homologous recombination, and examined its effect on synapses in vitro and in vivo. Electrophysiological and morphological studies revealed that the neuroligin-3 R704C mutation did not significantly alter synapse formation, but dramatically impaired synapse function. Specifically, the R704C mutation caused a major and selective decrease in AMPA receptor-mediated synaptic transmission in pyramidal neurons of the hippocampus, without similarly changing NMDA or GABA receptor-mediated synaptic transmission, and without detectably altering presynaptic neurotransmitter release. Our results suggest that the cytoplasmic tail of neuroligin-3 has a central role in synaptic transmission by modulating the recruitment of AMPA receptors to postsynaptic sites at excitatory synapses."	"A sex-specific association of common variants of neuroligin genes (NLGN3 and NLGN4X) with autism spectrum disorders in a Chinese Han cohort. Synaptic genes, NLGN3 and NLGN4X, two homologous members of the neuroligin family, have been supposed as predisposition loci for autism spectrum disorders (ASDs), and defects of these two genes have been identified in a small fraction of individuals with ASDs. But no such rare variant in these two genes has as yet been adequately replicated in Chinese population and no common variant has been further investigated to be associated with ASDs. 7 known ASDs-related rare variants in NLGN3 and NLGN4X genes were screened for replication of the initial findings and 12 intronic tagging single nucleotide polymorphisms (SNPs) were genotyped for case-control association analysis in a total of 229 ASDs cases and 184 control individuals in a Chinese Han cohort, using matrix-assisted laser desorption/ionization time-of-flight (MALDI-TOF) mass spectrometry. We found that a common intronic variant, SNP rs4844285 in NLGN3 gene, and a specific 3-marker haplotype XA-XG-XT (rs11795613-rs4844285-rs4844286) containing this individual SNP were associated with ASDs and showed a male bias, even after correction for multiple testing (SNP allele: P = 0.048, haplotype:P = 0.032). Simultaneously, none of these 7 known rare mutation of NLGN3 and NLGN4X genes was identified, neither in our patients with ASDs nor controls, giving further evidence that these known rare variants might be not enriched in Chinese Han cohort. The present study provides initial evidence that a common variant in NLGN3 gene may play a role in the etiology of ASDs among affected males in Chinese Han population, and further supports the hypothesis that defect of synapse might involvement in the pathophysiology of ASDs."	"Investigating synapse formation and function using human pluripotent stem cell-derived neurons. A major goal of stem-cell research is to identify conditions that reliably regulate their differentiation into specific cell types. This goal is particularly important for human stem cells if they are to be used for in vivo transplantation or as a platform for drug development. Here we describe the establishment of procedures to direct the differentiation of human embryonic stem cells and human induced pluripotent stem cells into forebrain neurons that are capable of forming synaptic connections. In addition, HEK293T cells expressing Neuroligin (NLGN) 3 and NLGN4, but not those containing autism-associated mutations, are able to induce presynaptic differentiation in human induced pluripotent stem cell-derived neurons. We show that a mutant NLGN4 containing an in-frame deletion is unable to localize correctly to the cell surface when overexpressed and fails to enhance synapse formation in human induced pluripotent stem cell-derived neurons. These findings establish human pluripotent stem cell-derived neurons as a viable model for the study of synaptic differentiation and function under normal and disorder-associated conditions."	"Gender differences in cognitive ability associated with genetic variants of NLGN4. Neuroligin-4 (NL4), encoded by the NLGN4 gene on the X chromosome, is a neuronal-specific brain membrane protein which plays an important role in the formation of functional presynaptic elements and axon specialization. The genetic variants of NLGN4 affect the biological function of NL4, resulting in the manifestation of different psychiatric disorders. The present study investigates the influence of these genetic variants on cognitive performance. The cognitive abilities of 351 subjects were evaluated using the Chinese Wechsler Intelligence Scale Children. The haplotypes were assigned with the PHASE program. The ANOVA method was applied to investigate the relationship between single SNP, the identified target haplotypes and cognitive performance in a random sample. We observed that the X(C) allele of rs5916271 and X(A) allele of the re6638575 carriers had significantly higher cognitive ability performances than the noncarrier boys (p &lt; 0.05). The target haplotype composed of 2 allele (X(CA+)) carriers also displayed a higher cognitive performance than that of the noncarriers boys. The genetic polymorphism of NLGN4 also had a significant effect on the boys' cognitive ability and other intelligence factors. Future research will involve determining the relationship between NLGN4 and personal cognitive ability."	"Structural insights into the exquisite selectivity of neurexin/neuroligin synaptic interactions. The extracellular domains of neuroligins and neurexins interact through Ca(2+) to form flexible trans-synaptic associations characterized by selectivity for neuroligin or neurexin subtypes. This heterophilic interaction, essential for synaptic maturation and differentiation, is regulated by gene selection, alternative mRNA splicing and post-translational modifications. A new, 2.6 A-resolution crystal structure of a soluble neurexin-1beta-neuroligin-4 (Nrx1beta-NL4) complex permits a detailed description of the Ca(2+)-coordinated interface and unveils concerted positional rearrangements of several residues of NL4, not observed in neuroligin-1, associated with Nrx1beta binding. Surface plasmon resonance analysis of the binding of structure-guided Nrx1beta mutants towards NL4 and neuroligin-1 shows that flexibility of the Nrx1beta-binding site in NL4 is reflected in a greater dissociation constant of the complex and higher sensitivity to ionic strength and pH variations. Analysis of neuroligin mutants points to critical functions for two respective residues in neuroligin-1 and neuroligin-2 in governing the affinity of the complexes. Although neuroligin-1 and neuroligin-2 have pre-determined conformations that respectively promote and prevent Nrx1beta association, unique conformational reshaping of the NL4 surface is required to permit Nrx1beta association."	"Polymorphisms of candidate genes in Slovak autistic patients. Autism is one of the most genetically influenced neuropsychiatric disorders. However, its detailed genetic basis is far from being clear. Genome-wide association studies have revealed a number of candidate genes, mostly related to synaptogenesis and various neuroendocrine pathways. In our study we have focused on oxytocin (OT), oxytocin receptor (OXTR), GABA receptor gamma 3 (GABRG3), neuroligin (NLGN4X), and reelin (RELN). After signed consent, 90 autistic boys and 85 healthy controls were enrolled in the study. Polymorphisms of OT (rs2740204), OXTR (rs2228485), GABRG3 (rs28431127), and NLGN4X (rs5916338) were analyzed using restriction fragment length polymorphism. (GGC)n STR polymorphism in the 5' UTR of the RELN gene was genotyped using fragment analysis. The only significant association in autistic boys in Slovakia was found with higher number of GGC repeats in the RELN gene (P=0.001) potentially explaining lower RELN levels in blood and brain of autistic patients."	"[Autism, genetics and synaptic function alterations]. Autism is a neurodevelopmental disorder characterized by a deficit of language and communication both associated with a restricted repertoire of activities and interests. The current prevalence of autistic disorder stricto sensu is estimated at 1/500 whereas autism spectrum disorders (ASD) increases up to 1/150 to 1/200. Mental deficiency (MD) and epilepsy are present in numerous autistic individuals. Consequently, autism is as a major public health issue. Autism was first considered as a non biological disease; however various rational approaches for analysing epidemiological data suggested the possibility of the influence of genetic factors. In 2003, this hypothesis was clearly illustrated by the characterization of genetic mutations transmitted through a mendelian manner. Subsequently, the glutamate synapse appeared as a preferential causal target in autism because the identified genes encoded proteins present in this structure. Strikingly, the findings that an identical genetic dysfunction of the synapse might also explain some MD suggested the possibility of a genetic comorbidity between these neurodevelopmental conditions. To date, various identified genes are considered indifferently as &quot;autism&quot; or &quot;MD&quot; genes. The characterization of mutations in the NLGN4X gene in patients with Asperger syndrome, autism without MD, or MD without autism, was the first example. It appears that a genetic continuum between ASD on one hand, and between autism and MD on the other hand, is present. Consequently, it is likely that genes already involved in MD will be found mutated in autistic patients and will represent future target for finding new factors in autism."	"Differential expression of neuroligin genes in the nervous system of zebrafish. The establishment and maturation of appropriate synaptic connections is crucial in the development of neuronal circuits. Cellular adhesion is believed to play a central role in this process. Neuroligins are neuronal cell adhesion molecules that are hypothesized to act in the initial formation and maturation of synaptic connections. In order to establish the zebrafish as a model to investigate the in vivo role of Neuroligin proteins in nervous system development, we identified the zebrafish orthologs of neuroligin family members and characterized their expression. Zebrafish possess seven neuroligin genes. Synteny analysis and sequence comparisons show that NLGN2, NLGN3, and NLGN4X are duplicated in zebrafish, but NLGN1 has a single zebrafish ortholog. All seven zebrafish neuroligins are expressed in complex patterns in the developing nervous system and in the adult brain. The spatial and temporal expression patterns of these genes suggest that they occupy a role in nervous system development and maintenance."	"Autism: the ups and downs of neuroligin. NA"	"A neuroligin-4 missense mutation associated with autism impairs neuroligin-4 folding and endoplasmic reticulum export. Neuroligins (NLs) are postsynaptic cell-adhesion molecules essential for normal synapse function. Mutations in neuroligin-4 (NL4) (gene symbol: NLGN4) have been reported in some patients with autism spectrum disorder (ASD) and other neurodevelopmental impairments. However, the low frequency of NL4 mutations and the limited information about the affected patients and the functional consequences of their mutations cast doubt on the causal role of NL4 mutations in these disorders. Here, we describe two brothers with classical ASD who carry a single amino-acid substitution in NL4 (R87W). This substitution was absent from the brothers' asymptomatic parents, suggesting that it arose in the maternal germ line. R87 is conserved in all NL isoforms, and the R87W substitution is not observed in control individuals. At the protein level, the R87W substitution impaired glycosylation processing of NL4 expressed in HEK293 and COS cells, destabilized NL4, caused NL4 retention in the endoplasmic reticulum in non-neuronal cells and neurons, and blocked NL4 transport to the cell surface. As a result, the R87W substitution inactivated the synapse-formation activity of NL4 and abolished the functional effect of NL4 on synapse strength. Viewed together, these observations suggest that a point mutation in NL4 can cause ASD by a loss-of-function mechanism."	"A substitution involving the NLGN4 gene associated with autistic behavior in the Greek population. Autism is a neurodevelopmental disorder characterized by clinical, etiologic, and genetic heterogeneity. During the last decade, predisposing genes and genetic loci were under investigation. Recently, mutations in two X-linked neuroligin genes, neuroligin 3 (NLGN3) and neuroligin 4 (NLGN4), have been implicated in the pathogenesis of autism. In our ongoing survey, we screened 169 patients with autism for mutations linked with autism. In the preliminary study of specific exons of NLGN3 and NLGN4 genes, we identified the p.K378R substitution (c.1597 A &gt; G) in exon 5 of the NLGN4 gene in a patient who was found to have mild autism and normal IQ at 3 years of age. The same mutation has previously been found in a patient with autism. It is important that, for the first time, a specific mutation in neuroligins is confirmed in a molecular screen in another homogeneous ethnic population. This finding further contributes to consideration of neuroligins as probable candidate genes for future molecular genetic studies, suggesting that a defect of synaptogenesis may predispose to autism."	"Association of Y chromosome haplotypes with autism. There is significant male excess in autism. In this study, we investigated a possible Y chromosome effect by haplotype analysis. We investigated 12 single-nucleotide polymorphisms in Y-linked neuroligin 4, transducin beta-like 1, and eukaryotic translation initiation factor 1a genes in 146 autistic participants and 102 control participants of European American origin. The set of 12 single-nucleotide polymorphisms defined 9 Y chromosome haplotypes in autistic and control participants. Although the 2 most frequent haplotypes were equally distributed in the autistic and control participants, some haplotypes were overrepresented or underrepresented in autistic participants. The distribution of haplotypes between the autistic and control groups, as determined by Monte Carlo tests with Clump software, was significantly different (P = .0001 with 100,000 simulations). Our results are suggestive of a Y chromosome effect in autism."	"Genes related to sex steroids, neural growth, and social-emotional behavior are associated with autistic traits, empathy, and Asperger syndrome. Genetic studies of autism spectrum conditions (ASC) have mostly focused on the &quot;low functioning&quot; severe clinical subgroup, treating it as a rare disorder. However, ASC is now thought to be relatively common ( approximately 1%), and representing one end of a quasi-normal distribution of autistic traits in the general population. Here we report a study of common genetic variation in candidate genes associated with autistic traits and Asperger syndrome (AS). We tested single nucleotide polymorphisms in 68 candidate genes in three functional groups (sex steroid synthesis/transport, neural connectivity, and social-emotional responsivity) in two experiments. These were (a) an association study of relevant behavioral traits (the Empathy Quotient (EQ), the Autism Spectrum Quotient (AQ)) in a population sample (n=349); and (b) a case-control association study on a sample of people with AS, a &quot;high-functioning&quot; subgroup of ASC (n=174). 27 genes showed a nominally significant association with autistic traits and/or ASC diagnosis. Of these, 19 genes showed nominally significant association with AQ/EQ. In the sex steroid group, this included ESR2 and CYP11B1. In the neural connectivity group, this included HOXA1, NTRK1, and NLGN4X. In the socio-responsivity behavior group, this included MAOB, AVPR1B, and WFS1. Fourteen genes showed nominally significant association with AS. In the sex steroid group, this included CYP17A1 and CYP19A1. In the socio-emotional behavior group, this included OXT. Six genes were nominally associated in both experiments, providing a partial replication. Eleven genes survived family wise error rate (FWER) correction using permutations across both experiments, which is greater than would be expected by chance. CYP11B1 and NTRK1 emerged as significantly associated genes in both experiments, after FWER correction (P&lt;0.05). This is the first candidate-gene association study of AS and of autistic traits. The most promising candidate genes require independent replication and fine mapping."	"Autism and nonsyndromic mental retardation associated with a de novo mutation in the NLGN4X gene promoter causing an increased expression level. Pathogenic mutations in the X-linked Neuroligin 4 gene (NLGN4X) in autism spectrum disorders (ASDs) and/or mental retardation (MR) are rare. However, nothing is known regarding a possible altered expression level of NLGN4X that would be caused by mutations in regulatory sequences. We investigated this issue by analyzing these regions in patients with ASDs and no mutation in the NLGN4X coding sequence. We studied 96 patients who met all DSM-IV criteria for autism. The entire coding sequence and the regulatory sequences of the NLGN4X gene were analyzed by polymerase chain reaction and direct sequencing. We identified a de novo 1 base pair (-335G&gt;A) substitution located in the promoter region in a patient with autism and nonsyndromic profound MR. Interestingly, this variation is associated with an increased level of the NLGN4X transcript in the patient compared with male control subjects as well as his father. Further in vitro luciferase reporter and electrophoretic mobility shift assays confirmed, respectively, that this mutation increases gene expression and is probably caused by altered binding of transcription factors in the mutated promoter sequence. This result brings further insight about the phenotypic spectrum of NLGN4X mutations and suggests that the analysis of the expression level of NLGN4X might detect new cases."	"Inhibition of p66ShcA longevity gene rescues podocytes from HIV-1-induced oxidative stress and apoptosis. Glomerular visceral epithelial cells (podocytes) play a critical role in the pathogenesis of human immunodeficiency virus (HIV)-associated nephropathy. A key question concerns the mechanism(s) by which the HIV-1 genome alters the phenotype of the highly specialized, terminally differentiated podocytes. Here, using an in vitro system of conditionally immortalized differentiated human podocytes (CIDHPs), we document a pivotal role for the p66ShcA protein in HIV-1-induced reactive oxygen species generation and CIDHP apoptosis. CIDHP transfected with truncated HIV-1 construct (NL4-3) exhibit increased reactive oxygen species metabolism, DNA strand breaks, and a 5-fold increase in apoptosis, whereas the opposite was true for NL4-3/CIDHP co-transfected with mu-36p66ShcA (micro-36) dominant negative expression vector or isoform-specific p66-small interfering RNA. Phosphorylation at Ser-36 of the wild type p66ShcA protein, required for p66ShcA redox function and inhibition of the potent stress response regulator Foxo3a, was unchanged in micro-36/NL4-3/CIDHP but increased in NL4-3/CIDHP. Acute knockdown of Foxo3a by small interfering RNA induced a 50% increase in micro-36/NL4-3/CIDHP apoptosis, indicating that Foxo3a-dependent responses promote the survival phenotype in micro-36 cells. We conclude that inhibition of p66ShcA redox activity prevents generation of HIV-1 stress signals and activation of the CIDHP apoptosis program."	"Positive association of neuroligin-4 gene with nonspecific mental retardation in the Qinba Mountains Region of China. Neuroligin-4 is essential for proper brain function. Some studies indicate a close relationship between neuroligin-4 and several human psychiatric conditions. The case-control method was used to study the association between nonspecific mental retardation (NSMR) and genetic variants of neuroligin-4 gene (NLGN4). Five single nucleotide polymorphisms (SNPs: rs5916271, rs7049300, rs6638575, rs3810686, and rs1882260) were genotyped by PCR-RFLP/SSCP method in the NLGN4. Individual SNP analysis shows significant differences at SNPs rs3810686 and rs1882260 for allele frequency when NSMR cases and controls [odds ratio (OR)=1.589, 95% confidence interval (CI)=1.035-2.438, chi2=4.53, df=1, P=0.033; OR=2.050, 95% CI=1.211-3.470, chi2=7.38, df=1, P=0.007, respectively] were compared. Further haplotype analysis indicates that there are two haplotype sets, rs3810686-rs1882260 and rs6638575-rs3810686-rs1882260, which show statistical differences between NSMR cases and controls (chi2=6.79, df=2, global P=0.034; chi2=9.29, df=2, global P=0.0096, respectively). The results suggest a positive association between the genetic variants of the NLGN4 and NSMR in the Chinese children from Qinba Mountains Region."	"Expression of neurexin, neuroligin, and their cytoplasmic binding partners in the pancreatic beta-cells and the involvement of neuroligin in insulin secretion. The composition of the beta-cell exocytic machinery is very similar to that of neuronal synapses, and the developmental pathway of beta-cells and neurons substantially overlap. beta-Cells secrete gamma-aminobutyric acid and express proteins that, in the brain, are specific markers of inhibitory synapses. Recently, neuronal coculture experiments have identified three families of synaptic cell-surface molecules (neurexins, neuroligins, and SynCAM) that drive synapse formation in vitro and that control the differentiation of nascent synapses into either excitatory or inhibitory fully mature nerve terminals. The inhibitory synapse-like character of the beta-cells led us to hypothesize that members of these families of synapse-inducing adhesion molecules would be expressed in beta-cells and that the pattern of expression would resemble that associated with neuronal inhibitory synaptogenesis. Here, we describe beta-cell expression of the neuroligins, neurexins, and SynCAM, and show that neuroligin expression affects insulin secretion in INS-1 beta-cells and rat islet cells. Our findings demonstrate that neuroligins and neurexins are expressed outside the central nervous system and help confer an inhibitory synaptic-like phenotype onto the beta-cell surface. Analogous to their role in synaptic neurotransmission, neurexin-neuroligin interactions may play a role in the formation of the submembrane insulin secretory apparatus."	"Analysis of the neuroligin 4Y gene in patients with autism. Frameshift and missense mutations in the X-linked neuroligin 4 (NLGN4, MIM# 300427) and neuroligin 3 (NLGN3, MIM# 300336) genes have been identified in patients with autism, Asperger syndrome and mental retardation. We hypothesize that sequence variants in NLGN4Y are associated with autism or mental retardation. The coding sequences and splice junctions of the NLGN4Y gene were analyzed in 335 male samples (290 with autism and 45 with mental retardation). A total of 1.1 Mb of genomic DNA was sequenced. One missense variant, p.I679V, was identified in a patient with autism, as well as his father with learning disabilities. The I679 residue is highly conserved in three members of the neuroligin family. The absence of p.I679V in 2986 control Y chromosomes and the high similarity of NLGN4 and NLGN4Y are consistent with the hypothesis that p.I679V contributes to the etiology of autism. The presence of only one structural variant in our population of 335 males with autism/mental retardation, the unavailability of significant family cosegregation and an absence of functional assays are, however, important limitations of this study."	"[Neurodevelopmental disturbance in the pathogenesis of major mental disorders]. Neurodevelopmental disturbance may underlie the pathogenesis of major mental disorders, including autism and schizophrenia, based on evidence in epidemiology, clinical psychiatry, brain imaging, and neuropathology. This notion is further supported by the fact that many of genetic susceptibility factors for these disorders have key roles in neurodevelopment. Majority of these genetic factors, such as Neuroligins, SHANK3, Neureglin-1, Dysbindin, and Disrupted-in-Schizophrenia-1 (DISC1) are associated with &quot;synapse.&quot; Therefore, &quot;synapse&quot; is one of the most promising sites of convergence in regard to molecular pathways for these mental conditions. In this review, we will summarize the updates of schizophrenia and autism research, with an emphasis on neurodevelopmental disturbances."	"The possible interplay of synaptic and clock genes in autism spectrum disorders. Autism spectrum disorders (ASD) are complex neurodevelopmental conditions characterized by deficits in social communication, absence or delay in language, and stereotyped and repetitive behaviors. Results from genetic studies reveal one pathway associated with susceptibility to ASD, which includes the synaptic cell adhesion molecules NLGN3, NLGN4, and NRXN1 and a postsynaptic scaffolding protein SHANK3. This protein complex is crucial for the maintenance of functional synapses as well as the adequate balance between neuronal excitation and inhibition. Among the factors that could modulate this pathway are the genes controlling circadian rhythms. Indeed, sleep disorders and low melatonin levels are frequently observed in ASD. In this context, an alteration of both this synaptic pathway and the setting of the clock would greatly increase the risk of ASD. In this chapter, I report genetic and neurobiological findings that highlight the major role of synaptic and clock genes in the susceptibility to ASD. On the basis of these lines of evidence, I propose that future studies of ASD should investigate the circadian modulation of synaptic function as a focus for functional analyses and the development of new therapeutic strategies."	"Familial deletion within NLGN4 associated with autism and Tourette syndrome. Neuroligin 4 (NLGN4) is a member of a cell adhesion protein family that appears to play a role in the maturation and function of neuronal synapses. Mutations in the X-linked NLGN4 gene are a potential cause of autistic spectrum disorders, and mutations have been reported in several patients with autism, Asperger syndrome, and mental retardation. We describe here a family with a wide variation in neuropsychiatric illness associated with a deletion of exons 4, 5, and 6 of NLGN4. The proband is an autistic boy with a motor tic. His brother has Tourette syndrome and attention deficit hyperactivity disorder. Their mother, a carrier, has a learning disorder, anxiety, and depression. This family demonstrates that NLGN4 mutations can be associated with a wide spectrum of neuropsychiatric conditions and that carriers may be affected with milder symptoms."	"Normal intelligence and social interactions in a male patient despite the deletion of NLGN4X and the VCX genes. Xp22.3 deletion in males can be associated with short stature (SHOX), chondrodysplasia punctata (ARSE), mental retardation (MRX49 locus), ichthyosis (STS), Kallmann syndrome (KAL1) and ocular albinism (OA1), according to the size of the deletion. Studies of terminal and interstitial deletions in male patients with a partial nullisomy of the X chromosome have led to the identification of the VCX-3A gene at the MRX49 locus on Xp22.3. The NLGN4X gene has then been identified less than 350 kb away from VCX-3A. Nonsense mutations in NLGN4X have been associated with autism and/or moderate mental retardation in males. We report a 17-year old male patient presenting with severe ichthyosis and Kallmann syndrome related to a 3.7 Mb interstitial Xp22.3 deletion, encompassing STS and KAL1 genes, respectively. However, despite the deletion of NLGN4X and all VCX genes, including VCX-3A, our patient did not manifest any learning disabilities or behavioural problems. Therefore, our case argues against a major role of NLGN4X and the VCX genes alone in cognitive development and/or communication processes."	"No evidence for involvement of genetic variants in the X-linked neuroligin genes NLGN3 and NLGN4X in probands with autism spectrum disorder on high functioning level. Several lines of evidence indicate a role of mutations in the two X-linked genes neuroligin 3 (NLGN3) and neuroligin 4 (NLGN4X) in the etiology of autistic spectrum disorders. To analyze whether genetic variants in the NLGN3 and NLGN4X genes occurs in patients with autistic disorders on high functioning level, we performed a mutation screen of both genes using SSCP in 107 probands with Asperger syndrome, high-functioning autism and atypical autism. We identified four polymorphisms (rs2290488, rs7049300, rs3747333, rs3747334) and one novel synonymous variant (A558) in the NLGN4X. The polymorphisms rs7049300, rs3747333, and rs3747334 did not cause any amino acid substitutions in the total of the eight detected carriers. A family-based association study for rs2290488 in 101 trios did not reveal association of this polymorphism with autistic disorders on high functioning level. We conclude that there is no evidence for an involvement of NLGN3 and NLGN4X genetic variants with autism spectrum disorder on high functioning level in our study group."	"A Turner syndrome neurocognitive phenotype maps to Xp22.3. Turner syndrome (TS) is associated with a neurocognitive phenotype that includes selective nonverbal deficits, e.g., impaired visual-spatial abilities. We previously reported evidence that this phenotype results from haploinsufficiency of one or more genes on distal Xp. This inference was based on genotype/phenotype comparisons of individual girls and women with partial Xp deletions, with the neurocognitive phenotype considered a dichotomous trait. We sought to confirm our findings in a large cohort (n = 47) of adult women with partial deletions of Xp or Xq, enriched for subjects with distal Xp deletions. Subjects were recruited from North American genetics and endocrinology clinics. Phenotype assessment included measures of stature, ovarian function, and detailed neurocognitive testing. The neurocognitive phenotype was measured as a quantitative trait, the Turner Syndrome Cognitive Summary (TSCS) score, derived from discriminant function analysis. Genetic analysis included karyotyping, X inactivation studies, fluorescent in situ hybridization, microsatellite marker genotyping, and array comparative genomic hybridization. We report statistical evidence that deletion of Xp22.3, an interval containing 31 annotated genes, is sufficient to cause the neurocognitive phenotype described by the TSCS score. Two other cardinal TS features, ovarian failure and short stature, as well as X chromosome inactivation pattern and subject's age, were unrelated to the TSCS score. Detailed mapping suggests that haploinsufficiency of one or more genes in Xp22.3, the distal 8.3 megabases (Mb) of the X chromosome, is responsible for a TS neurocognitive phenotype. This interval includes the 2.6 Mb Xp-Yp pseudoautosomal region (PAR1). Haploinsufficiency of the short stature gene SHOX in PAR1 probably does not cause this TS neurocognitive phenotype. Two genes proximal to PAR1 within the 8.3 Mb critical region, STS and NLGN4X, are attractive candidates for this neurocognitive phenotype."	"Deletions of VCX-A and NLGN4: a variable phenotype including normal intellect. Patients with Xp22.3 interstitial and terminal deletions have been shown to be affected by intellectual disability (ID) or autism. Previously, VCX-A (variably charged protein X-A), located at Xp22.3, was introduced as a gene for ID and its presence was suggested to be sufficient to maintain normal mental development. Recent reports suggest that mutations in NLGN4 (neuroligin 4), located at that same region, are involved in autistic disorders and ID. In the current case study, we clinically and molecularly describe a pedigree of three generations affected by contiguous gene syndrome that includes features of X-linked ichthyosis and Kallmann syndrome. Molecular analysis revealed the presence of an interstitial deletion spanning approximately 4.5Mb at Xp22.3. The centromeric breakpoint was localized between markers DXS1467 and DXS8051, proximal to KAL-1. The telomeric breakpoint was localized between markers DXS89 and DXS1060, distal to NLGN4. The deletion of VCX-A and NLGN4 in this family prompted us to examine the cognitive functions of our two adult patients using comprehensive intellectual and neurocognitive assessment. Normal intellectual function was found in one patient and mild ID was revealed in the other. Neither patient met any Diagnostic and Statistical Manual of Mental Disorder, Fourth Edition criteria for a pervasive developmental disorder such as autism. These findings suggest that deletion of VCX-A and NLGN4 can result in variable phenotypic features and that normal mental development can be achieved despite this deletion, emphasizing the importance of environmental factors and possible modifier genes."	"Neuroligins 3 and 4X interact with syntrophin-gamma2, and the interactions are affected by autism-related mutations. Recently, neuroligins (NLs)3 and 4X have received much attention as autism-related genes. Here, we identified syntrophin-gamma2 (SNTG2) as a de novo binding partner of NL3. SNTG2 also bound to NL4X and NL4Y. Interestingly, the binding was influenced by autism-related mutations, implying that the impaired interaction between NLs and SNTG2 contributes to the etiology of autism."	"[Genetics and epigenetics in autism]. Autism is a behaviorally defined syndrome characterized by impaired social interaction and communication, and restricted, stereotyped interests and behaviors. Several lines of evidence support the contention that genetic factors are a large component to autism etiology. However, in spite of vigorous genetic studies, no single causative or susceptibility gene common in autism has been identified. Thus multiple susceptibility genes in interaction are considered to account for the disorder. Furthermore, environmental risk factors can accelerate the autism development of. Recent advances in understanding the epigenetic regulation may shed light on the interaction among multiple genetic factors and environmental factors."	"Novel splice isoforms for NLGN3 and NLGN4 with possible implications in autism. To screen cDNA for NLGN3 and NLGN4 from lymphoblastoid cells from autistic subjects. 10 young autistic females and 30 non-autistic subjects were studied for alterations in two X linked genes, NLGN3 and NLGN4. A novel NLGN4 isoform lacking exon 4, which occurred de novo on the paternal allele, was identified in one of the autistic females. Monoallelic expression of NLGN4 was seen in this subject and in 11 of 14 informative autistic and non-autistic females using a single nucleotide polymorphism found at 3' UTR. Additionally, the NLGN3 transcript was present in two isoforms (with and without exon 7) in nine of 10 autistic females and in 30 non-autistic subjects, including parents of the autistic female having only the complete transcript with exon 7, and from the whole brain of a control. The novel truncated NLGN3 product may have a regulatory role, as reported in other proteins (for example, vasopressin receptor) by attenuating the function of the full length isoform, resulting in a reduction of the mature protein. Three dimensional protein structures were characterised using comparative modelling, and significant changes were suggested in the protein cores for these two neuroligin isoforms. Splice variants may lead to potentially abnormal neuroligins in the causation of autism spectrum disorders."	"Absence of coding mutations in the X-linked genes neuroligin 3 and neuroligin 4 in individuals with autism from the IMGSAC collection. Neuroligin abnormalities have been recently implicated in the aetiology of autism spectrum disorders (ASD), given the finding of point mutations in the two X-linked genes NLGN3 and NLGN4X and the important role of neuroligins in synaptogenesis. To enquire on the relevance and frequency of neuroligin mutations in ASD, we performed a mutation screening of NLGN3 and NLGN4X in a sample of 124 autism probands from the International Molecular Genetic Study of Autism Consortium (IMGSAC). We identified a new non-synonymous variant in NLGN3 (Thr632Ala), which is likely to be a rare polymorphism. Our data indicate that coding mutations in these genes are very rarely associated to ASD."	"[Non-specific X-linked mental retardation]. Non-specific mental retardation is defined by the absence of somatic, neurological, biochemical or behavioural features that characterise a particular clinical variant and accounts for a large percentage of cases of X-linked mental retardation (XLMR). Genetic linkage studies showed it to have a high rate of genetic heterogeneity. To date, genetic linkage studies or the characterisation of chromosomal rearrangement in patients have allowed 22 different genes to be identified. Some of the most notable of these are the genes responsible for syndromic forms, such as RPS6KA3, ARX, JARID1C, XNP or MeCP2, in which the mildest mutations, with a certain amount of functional activity, cause non-specific retardation. The proteins these genes code for are directly or indirectly involved in regulating the expression of other genes. Moreover, genes such as OPHN1, PAK3, ARHGEF6, FGD1 or TM4SF2 code for proteins that interact with rho GTPases, and play a role in the transmission of signals that regulate the development of axons and dendrites. Other types of functions of the known genes include establishing and modulating synapses (DLG3, IL1RAPL, NLGN4X, GDI1), regulating transcription (ZNF41, ZNF81, PQBP1) translation (FTSJ1), and fatty acid metabolism (FACL4), etc. Each gene that has been identified only accounts for a minor fraction of the total amount of XLMR, and even if taken together they still do not explain half the cases of non-specific XLMR. The number of XLMR genes is expected to rise in coming years with the development of new techniques that will facilitate diagnosis and genetic counselling in the relatively near future."	"Screening for Neuroligin 4 (NLGN4) truncating and transmembrane domain mutations in schizophrenia. NA"	"Analysis of four neuroligin genes as candidates for autism. Neuroligins are cell-adhesion molecules located at the postsynaptic side of the synapse. Neuroligins interact with beta-neurexins and this interaction is involved in the formation of functional synapses. Mutations in two X-linked neuroligin genes, NLGN3 and NLGN4, have recently been implicated in pathogenesis of autism. The neuroligin gene family consists of five members (NLGN1 at 3q26, NLGN2 at 17p13, NLGN3 at Xq13, NLGN4 at Xp22, and NLGN4Y at Yq11), of which NLGN1 and NLGN3 are located within the best loci observed in our previous genome-wide scan for autism in the Finnish sample. Here, we report a detailed molecular genetic analysis of NLGN1, NLGN3, NLGN4, and NLNG4Y in the Finnish autism sample. Mutation analysis of 30 probands selected from families producing linkage evidence for Xq13 and/or 3q26 loci revealed several polymorphisms, but none of these seemed to be functional. Family-based association analysis in 100 families with autism spectrum disorders yielded only modest associations at NLGN1 (rs1488545, P=0.002), NLGN3 (DXS7132, P=0.014), and NLGN4 (DXS996, P=0.031). We conclude that neuroligin mutations most probably represent rare causes of autism and that it is unlikely that the allelic variants in these genes would be major risk factors for autism."	"Do known mutations in neuroligin genes (NLGN3 and NLGN4) cause autism? NA"	"Analysis of the neuroligin 3 and 4 genes in autism and other neuropsychiatric patients. NA"	"NLGN3/NLGN4 gene mutations are not responsible for autism in the Quebec population. Jamain [2003: Nat Genet 34:27-29] recently reported mutations in two neuroligin genes in sib-pairs affected with autism. In order to confirm these causative mutations in our autistic population and to determine their frequency we screened 96 individuals affected with autism. We found no mutations in these X-linked genes. These results indicate that mutations in NLGN3 and NLGN4 genes are responsible for at most a small fraction of autism cases and additional screenings in other autistic populations are needed to better determine the frequency with which mutations in NLGN3 and NLGN4 occur in autism."	"Mutation screening of X-chromosomal neuroligin genes: no mutations in 196 autism probands. Autism, a childhood neuropsychiatric disorder with a strong genetic component, is currently the focus of considerable attention within the field of human genetics as well many other medical-related disciplines. A recent study has implicated two X-chromosomal neuroligin genes, NLGN3 and NLGN4, as having an etiological role in autism, having identified a frameshift mutation in one gene and a substitution mutation in the other, segregating in multiplex autism spectrum families (Jamain et al. [2003: Nat Genet 34:27-29]). The function of neuroligin as a trigger for synapse formation would suggest that such mutations would likely result in some form of pathological manifestation. Our own study, screening a larger sample of 196 autism probands, failed to identify any mutations that would affect the coding regions of these genes. Our findings suggest that mutations in these two genes are infrequent in autism."	"Disorder-associated mutations lead to functional inactivation of neuroligins. Autism is a neuro-developmental syndrome that affects 0.1-0.5% of the population. It has been proposed that alterations in neuronal circuitry and/or neuronal signaling are responsible for the behavioral and cognitive aberrations in autism patients. However, the cellular basis of such alterations is unknown. Recently, point mutations in a family of neuronal cell adhesion molecules called neuroligins have been linked to autism-spectrum disorders and mental retardation. We investigated the consequences of these disease-associated mutations on neuroligin function. We demonstrate that the point mutation at arginine 451 and a nonsense mutation at aspartate 396 of neuroligin-3 and -4 (NL3 and NL4), respectively, result in intracellular retention of the mutant proteins. Over-expression of wild-type NL3 and NL4 proteins in hippocampal neurons stimulates the formation of presynaptic terminals, whereas the disease-associated mutations result in a loss of this synaptic function. Our findings suggest that the previously identified mutations in neuroligin genes are likely to be relevant for the neuro-developmental defects in autism-spectrum disorders and mental retardation since they impair the function of a synaptic cell adhesion molecule."	"X-linked mental retardation and autism are associated with a mutation in the NLGN4 gene, a member of the neuroligin family. A large French family including members affected by nonspecific X-linked mental retardation, with or without autism or pervasive developmental disorder in affected male patients, has been found to have a 2-base-pair deletion in the Neuroligin 4 gene (NLGN4) located at Xp22.33. This mutation leads to a premature stop codon in the middle of the sequence of the normal protein and is thought to suppress the transmembrane domain and sequences important for the dimerization of neuroligins that are required for proper cell-cell interaction through binding to beta-neurexins. As the neuroligins are mostly enriched at excitatory synapses, these results suggest that a defect in synaptogenesis may lead to deficits in cognitive development and communication processes. The fact that the deletion was present in both autistic and nonautistic mentally retarded males suggests that the NLGN4 gene is not only involved in autism, as previously described, but also in mental retardation, indicating that some types of autistic disorder and mental retardation may have common genetic origins."	"POCUS: mining genomic sequence annotation to predict disease genes. Here we present POCUS (prioritization of candidate genes using statistics), a novel computational approach to prioritize candidate disease genes that is based on over-representation of functional annotation between loci for the same disease. We show that POCUS can provide high (up to 81-fold) enrichment of real disease genes in the candidate-gene shortlists it produces compared with the original large sets of positional candidates. In contrast to existing methods, POCUS can also suggest counterintuitive candidates."	"Mutations of the X-linked genes encoding neuroligins NLGN3 and NLGN4 are associated with autism. Many studies have supported a genetic etiology for autism. Here we report mutations in two X-linked genes encoding neuroligins NLGN3 and NLGN4 in siblings with autism-spectrum disorders. These mutations affect cell-adhesion molecules localized at the synapse and suggest that a defect of synaptogenesis may predispose to autism."	"Identification of a novel neuroligin in humans which binds to PSD-95 and has a widespread expression. Neuroligins, first discovered in rat brain, form a family of three synaptically enriched membrane proteins. Using reverse transcription-PCR of human brain polyadenylated RNA and extensive database searches, we identified the human homologues of the three rat neuroligins and a cDNA encoding a fourth member, which we named neuroligin 4. Neuroligin 4 has 63-73% amino acid identity with the other members of the human neuroligin family, and the same predicted domain structure. DNA database analyses, furthermore, indicated that a possible fifth neuroligin gene may be present in the human genome. Northern-blot analysis revealed expression of neuroligin 4 in heart, liver, skeletal muscle and pancreas, but barely at all in brain. Overexpression of neuroligin 4 cDNA in COS-7 cells led to the production of a 110 kDa protein. Immunofluorescence analysis demonstrated that the protein was integrated into the plasma membrane. Overexpression of cDNAs encoding neuroligin 4 and the PDZ-domain protein, PSD-95, in COS-7 cells resulted in the formation of detergent-resistant complexes. Neuroligin 4 did not bind to ZO-1, another PDZ-domain protein. Together, our data show that the human neuroligin family is composed of at least one additional member, and suggest that neuroligin 4 may also be produced outside the central nervous system."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SMC1A"	"complex neurodevelopmental disorder"	"Cohesin subunit RAD21: From biology to disease. RAD21 (also known as KIAA0078, NXP1, HR21, Mcd1, Scc1, and hereafter called RAD21), an essential gene, encodes a DNA double-strand break (DSB) repair protein that is evolutionarily conserved in all eukaryotes from budding yeast to humans. RAD21 protein is a structural component of the highly conserved cohesin complex consisting of RAD21, SMC1a, SMC3, and SCC3 [STAG1 (SA1) and STAG2 (SA2) in metazoans] proteins, involved in sister chromatid cohesion. This function is essential for proper chromosome segregation, post-replicative DNA repair, and prevention of inappropriate recombination between repetitive regions. In interphase, cohesin also functions in the control of gene expression by binding to numerous sites within the genome. In addition to playing roles in the normal cell cycle and DNA DSB repair, RAD21 is also linked to the apoptotic pathways. Germline heterozygous or homozygous missense mutations in RAD21 have been associated with human genetic disorders, including developmental diseases such as Cornelia de Lange syndrome (CdLS) and chronic intestinal pseudo-obstruction (CIPO) called Mungan syndrome, respectively, and collectively termed as cohesinopathies. Somatic mutations and amplification of the RAD21 have also been widely reported in both human solid and hematopoietic tumors. Considering the role of RAD21 in a broad range of cellular processes that are hot spots in neoplasm, it is not surprising that the deregulation of RAD21 has been increasingly evident in human cancers. Herein, we review the biology of RAD21 and the cellular processes that this important protein regulates and discuss the significance of RAD21 deregulation in cancer and cohesinopathies."	"A de novo mutation in SMC1A gene identified in a Chinese infant with nonclassical Cornelia de Lange syndrome and drug-resistant epilepsy. NA"	"A novel mosaic variant on SMC1A reported in buccal mucosa cells, albeit not in blood, of a patient with Cornelia de Lange-like presentation. Mosaicism in Cornelia de Lange syndrome (CdLS) has been reported in clinically diagnosed CdLS patients with negative molecular testing using blood as the specimen, particularly in the NIPBL gene. Here we report a novel mosaic variant in SMC1A identified in the buccal swab DNA of a patient with a mild CdLS phenotype. Our patient presented with global developmental delay, dysmorphic features, microcephaly, and short stature, with no limb defect. Face2Gene, a digital tool that analyzes facial morphology, demonstrated a 97% match between our patient and the CdLS gestalt. An initial next-generation sequencing (NGS)-based CdLS panel test, including NIPBL, HDAC8, RAD21, SMC1A, and SMC3, completed using DNA isolated from leukocytes, was negative, and subsequent trio exome sequencing was nondiagnostic. The exome identified biallelic variants of uncertain significance in a candidate gene, NSMCE2 In the pursuit of a molecular diagnosis, a second NGS-based CdLS panel test was ordered on a buccal swab specimen and a novel variant, c.793_795delGAG (p.Glu265del) in SMC1A, was detected at 60% mosaicism. Retrospective analysis of the former panel and exome data revealed the SMC1A variant at 4% and 2%, respectively, both far below standard reporting thresholds. Given that mosaicism has been frequently reported in CdLS, we suggest selecting a different tissue for testing in clinically suspected CdLS cases, even after negative molecular results via blood specimen."	"Pathogenic variants in EP300 and ANKRD11 in patients with phenotypes overlapping Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS), Rubinstein-Taybi syndrome (RSTS), and KBG syndrome are three distinct developmental human disorders. Variants in seven genes belonging to the cohesin pathway, NIPBL, SMC1A, SMC3, HDAC8, RAD21, ANKRD11, and BRD4, were identified in about 80% of patients with CdLS, suggesting that additional causative genes remain to be discovered. Two genes, CREBBP and EP300, have been associated with RSTS, whereas KBG results from variants in ANKRD11. By exome sequencing, a genetic cause was elucidated in two patients with clinical diagnosis of CdLS but without variants in known CdLS genes. In particular, genetic variants in EP300 and ANKRD11 were identified in the two patients with CdLS. EP300 and ANKRD11 pathogenic variants caused the reduction of the respective proteins suggesting that their low levels contribute to CdLS-like phenotype. These findings highlight the clinical overlap between CdLS, RSTS, and KBG and support the notion that these rare disorders are linked to abnormal chromatin remodeling, which in turn affects the transcriptional machinery."	"The phenotype-driven computational analysis yields clinical diagnosis for patients with atypical manifestations of known intellectual disability syndromes. Due to extensive clinical and genetic heterogeneity of intellectual disability (ID) syndromes, the process of diagnosis is very challenging even for expert clinicians. Despite recent advancements in molecular diagnostics methodologies, a significant fraction of ID patients remains without a clinical diagnosis. Here, in a prospective study on a cohort of 21 families (trios) with a child presenting with ID of unknown etiology, we executed phenotype-driven bioinformatic analysis method, PhenIX, utilizing targeted next-generation sequencing (NGS) data and Human Phenotype Ontology (HPO)-encoded phenotype data. This approach resulted in clinical diagnosis for eight individuals presenting with atypical manifestations of Rubinstein-Taybi syndrome 2 (MIM 613684), Spastic Paraplegia 50 (MIM 612936), Wiedemann-Steiner syndrome (MIM 605130), Cornelia de Lange syndrome 2 (MIM 300590), Cerebral creatine deficiency syndrome 1 (MIM 300352), Glass Syndrome (MIM 612313), Mental retardation, autosomal dominant 31 (MIM 616158), and Bosch-Boonstra-Schaaf optic atrophy syndrome (MIM 615722)."	"Genetic and clinical variations in a Norwegian sample diagnosed with Rett syndrome. Rett syndrome (RTT) is a neurodevelopmental disorder mainly caused by mutations in MECP2. The diagnostic criteria of RTT are clinical; mutations in MECP2 are neither diagnostic nor necessary, and a mutation in another gene does not exclude RTT. We attempted to correlate genotype and phenotype to see if there are significant clinical associations. All available females diagnosed with RTT in Norway were invited to the study. Parents were interviewed, the girl or woman with RTT examined and medical records reviewed. All diagnoses were revisited according to the current diagnostic criteria and exome-based sequencing analyses were performed in individuals without an identified causative mutation. Participants were categorized according to genotypes and RTT diagnosis. Individuals with RTT with and without mutations in MECP2 were compared. Ninety-one individuals were included. A presumed causative mutation was identified in 86 individuals, of these, mutations in MECP2 in 77 individuals and mutations in SMC1A, SYNGAP1, SCN1A, CDKL5, FOXG1 or chromosome 13q in nine. Seventy-two individuals fulfilled the diagnostic criteria for classic and 12 for atypical RTT. Significant differences in early development, loss of hand use and language, intense eye gaze and the presence of early onset epilepsy were revealed in individuals with RTT according to their MECP2 genotypic status. Using the current diagnostic criteria, genetic and clinical variation in RTT is considerable. Significant differences between individuals with RTT with and without MECP2 mutations indicate that MECP2 is a major determinant for the clinical phenotype in individuals with RTT."	"Heterogeneous nuclear ribonucleoprotein A3 controls mitotic progression of neural progenitors via interaction with cohesin. Cortex development is controlled by temporal patterning of neural progenitor (NP) competence with sequential generation of deep and superficial layer neurons, but underlying mechanisms remain elusive. Here, we report a role for heterogeneous nuclear ribonucleoprotein A3 (HNRNPA3) in regulating the division of early cortical NPs that mainly give rise to deep-layer neurons via direct neurogenesis. HNRNPA3 is expressed at high levels in NPs of mouse and human cortex at early stages, with a unique peri-chromosome pattern. Intriguingly, downregulation of HNRNPA3 caused chromosome disarrangement, which hindered normal separation of chromosomes during NP division, leading to mitotic delay. Furthermore, HNRNPA3 is associated with the cohesin-core subunit SMC1A and controls its association with chromosomes, implicating a mechanism for the role of HNRNPA3 in regulating chromosome segregation in dividing NPs. Hnrnpa3-deficient mice exhibited reduced cortical thickness, especially of deep layers. Moreover, downregulation of HNRNPA3 in cultured human cerebral organoids led to marked reduction in NPs and deep-layer neurons. Thus, this study has identified a crucial role for HNRNPA3 in NP division and highlighted the relationship between mitosis progression and early neurogenesis."	"Knockdown of lncRNA TUG1 Enhances Radiosensitivity of Prostate Cancer via the TUG1/miR-139-5p/SMC1A Axis. Prostate cancer (PCa) is a common malignant tumor of the urinary system in males. LncRNA taurine-upregulated gene 1 (TUG1) has been verified to play a crucial role in progression and prognosis of PCa. However, the functional mechanism of TUG1 remains unclear with radiosensitivity of PCa. Quantitative real-time PCR (qRT-PCR) was conducted to measure the transcription levels of genes. 3-(4, 5-dimethylthiazol-2-yl)-2, 5-diphenyltetrazolium bromide (MTT) assay and flow cytometry analysis were employed to assess cell proliferation and apoptosis, respectively. Moreover, colony formation assay was used to measure colony survival. Western blot was performed to detect the relative proteins expression. The interaction among variables was predicted by online tool starbase, and then confirmed using the dual luciferase reporter assay. A xenograft mouse model was constructed to investigate the effect of TUG1 on tumor growth in vivo. The levels of lncRNA TUG1 and SMC1A were remarkably increased, while miR-139-5p was downregulated in PCa. Patients with high expression of TUG1 showed a lower survival rate and poor prognosis. Knockdown of TUG1 inhibited PCa cell proliferation and colony survival fraction, and promoted apoptosis. Downregulation of miR-139-5p reversed the effects of TUG1 deletion on proliferation, apoptosis and colony survival fraction in PCa cells treated with 4 Gy of X-ray radiation. Moreover, TUG1 sponged miR-139-5p to regulate SMC1A expression. SMC1A deletion blocked the effects of TUG1 on the progression of PCa cells treated with 4 Gy of X-ray radiation. The tumor volume and weight were illustriously reduced with radiation and TUG1 silencing in xenograft model. Knockdown of lncRNA TUG1 enhanced radiosensitivity in PCa via the TUG1/miR-139-5p/SMC1A axis. It may become a promising target for PCa treatment."	"Redundant and specific roles of cohesin STAG subunits in chromatin looping and transcriptional control. Cohesin is a ring-shaped multiprotein complex that is crucial for 3D genome organization and transcriptional regulation during differentiation and development. It also confers sister chromatid cohesion and facilitates DNA damage repair. Besides its core subunits SMC3, SMC1A, and RAD21, cohesin in somatic cells contains one of two orthologous STAG subunits, STAG1 or STAG2. How these variable subunits affect the function of the cohesin complex is still unclear. STAG1- and STAG2-cohesin were initially proposed to organize cohesion at telomeres and centromeres, respectively. Here, we uncover redundant and specific roles of STAG1 and STAG2 in gene regulation and chromatin looping using HCT116 cells with an auxin-inducible degron (AID) tag fused to either STAG1 or STAG2. Following rapid depletion of either subunit, we perform high-resolution Hi-C, gene expression, and sequential ChIP studies to show that STAG1 and STAG2 do not co-occupy individual binding sites and have distinct ways by which they affect looping and gene expression. These findings are further supported by single-molecule localizations via direct stochastic optical reconstruction microscopy (dSTORM) super-resolution imaging. Since somatic and congenital mutations of the STAG subunits are associated with cancer (STAG2) and intellectual disability syndromes with congenital abnormalities (STAG1 and STAG2), we verified STAG1-/STAG2-dependencies using human neural stem cells, hence highlighting their importance in particular disease contexts."	"The multiple facets of the SMC1A gene. Structural Maintenance of Chromosomes (SMCs) are part of a large family of ring complexes that participates in a number of DNA transactions. Among SMCs, SMC1A gene is unique. It encodes a subunit of the cohesin-core complex that tethers sister chromatids together to ensure correct chromosome segregation in both mitosis and meiosis. As a member of the cohesin ring, SMC1A takes part in gene transcription regulation and genome organization; and it participates in the DNA Damage Repair (DDR) pathway, being phosphorylated by Ataxia Telangiectasia Mutated (ATM) and Ataxia Telangiectasia and Rad3 Related (ATR) threonine/serine kinases. It is also a component of the Recombination protein complex (RC-1) involved in DNA repair by recombination. SMC1A pathogenic variants have been described in Cornelia de Lange syndrome (CdLS), a human rare disease, and recently SMC1A variants have been associated with epilepsy or resembling Rett syndrome phenotype. Finally, SMC1A variants have been identified in several human cancers. In this review, our current knowledge of the SMC1A gene has been summarized."	"[Genetic variant analysis of a neonate with Cornelia de Lange syndrome]. To detect pathogenic variant in a neonate suspected for Cornelia de Lange syndrome (CdLS). Potential mutations of CdLS-related genes (NIPBL, SMC1A, SMC3, RAD21 and HDAC8) were detected by high-throughput target region capture and next-generation sequencing. Suspected variants was verified by Sanger sequencing. The child was found to harbor a heterozygous splice site variant, c.6109-1G&gt;A, of the NIPBL gene. Sanger sequencing suggested that neither parent has carried the same variant, suggesting that it was de novo. The variant was unreported by HGMD and ExAC database, and was predicted to alter an acceptor splicing site. No pathogenic variants of SMC1A, SMC3, RAD21 and HDAC8 genes were detected. The heterozygous c.6109-1G&gt;A splicing variant of the NIPBL gene may underlie the disease in this child. Above finding has expanded the variant spectrum of the NIPBL gene."	"Delineation of phenotypes and genotypes related to cohesin structural protein RAD21. RAD21 encodes a key component of the cohesin complex, and variants in RAD21 have been associated with Cornelia de Lange Syndrome (CdLS). Limited information on phenotypes attributable to RAD21 variants and genotype-phenotype relationships is currently published. We gathered a series of 49 individuals from 33 families with RAD21 alterations [24 different intragenic sequence variants (2 recurrent), 7 unique microdeletions], including 24 hitherto unpublished cases. We evaluated consequences of 12 intragenic variants by protein modelling and molecular dynamic studies. Full clinical information was available for 29 individuals. Their phenotype is an attenuated CdLS phenotype compared to that caused by variants in NIPBL or SMC1A for facial morphology, limb anomalies, and especially for cognition and behavior. In the 20 individuals with limited clinical information, additional phenotypes include Mungan syndrome (in patients with biallelic variants) and holoprosencephaly, with or without CdLS characteristics. We describe several additional cases with phenotypes including sclerocornea, in which involvement of the RAD21 variant is uncertain. Variants were frequently familial, and genotype-phenotype analyses demonstrated striking interfamilial and intrafamilial variability. Careful phenotyping is essential in interpreting consequences of RAD21 variants, and protein modeling and dynamics can be helpful in determining pathogenicity. The current study should be helpful when counseling families with a RAD21 variation."	"miRNA-mRNA Profiling Reveals Prognostic Impact of SMC1A Expression in Acute Myeloid Leukemia. Acute myeloid leukemia (AML) with NPM1 mutation is a disease driving genetic alteration with good prognosis. Although it has been suggested that NPM1 mutation induces chemosensitivity in leukemic cells, the underlying cause for the better survival of NPM1 mutated patients is still not clear. Mutant NPM1 AML has a unique microRNA and their target gene (mRNA) signature compared to wild-type NPM1. Dynamic regulation of miRNA-mRNA has been reported to influence the prognostic outcome. In the present study, in silico expression data of miRNA and mRNA in AML patients was retrieved from genome data commons, and differentially expressed miRNA and mRNA among NPM1 mutated (n = 21) and NPM1 wild-type (n = 162) cases were identified to establish a dynamic association at the molecular level. In vitro experiments using high-throughput RNA sequencing were performed on human AML cells carrying NPM1 mutated and wild-type allele. The comparison of in vitro transcriptomics data with in silico miRNA-mRNA expression network data revealed downregulation of SMC1A. On establishing miRNA-mRNA interactive pairs, it has been observed that hsa-mir-215-5p (logFC: 0.957; p = 0.0189) is involved in the downregulation of SMC1A (logFC: -0.481; p = 0.0464) in NPM1 mutated AML. We demonstrated that transient expression of NPM1 mutation upregulates miR-215-5p, which results in downregulation of SMC1A. We have also shown using a rescue experiment that neutralizing miR-215-5p reverses the effect of NPM1 mutation on SMC1A. Using the leukemic blasts from AML patients, we observed higher expression of miR-215-5p and lower expression of SMC1A in NPM1 mutated patients compared to wild-type cases. The overall survival of AML patients was significantly inferior in SMC1A high expressers compared to low expressers (20.3% vs. 58.5%, p = 0.018). The data suggest that dynamic miR-215-SMC1A regulation is potentially modulated by NPM1 mutation, which might serve as an explanation for the better outcome in NPM1 mutated AML."	"An Automated, Single Cell Quantitative Imaging Microscopy Approach to Assess Micronucleus Formation, Genotoxicity and Chromosome Instability. Micronuclei are small, extranuclear bodies that are distinct from the primary cell nucleus. Micronucleus formation is an aberrant event that suggests a history of genotoxic stress or chromosome mis-segregation events. Accordingly, assays evaluating micronucleus formation serve as useful tools within the fields of toxicology and oncology. Here, we describe a novel micronucleus formation assay that utilizes a high-throughput imaging platform and automated image analysis software for accurate detection and rapid quantification of micronuclei at the single cell level. We show that our image analysis parameters are capable of identifying dose-dependent increases in micronucleus formation within three distinct cell lines following treatment with two established genotoxic agents, etoposide or bleomycin. We further show that this assay detects micronuclei induced through silencing of the established chromosome instability gene, SMC1A. Thus, the micronucleus formation assay described here is a versatile and efficient alternative to more laborious cytological approaches, and greatly increases throughput, which will be particularly beneficial for large-scale chemical or genetic screens."	"[Cornelia de Lange syndrome caused by SMC1A gene variation in a child]. 患儿 女,5月龄,因&quot;10 d内抽搐5次&quot;住院。特殊面容,浓眉、弓形眉、连心眉,睫毛长且弯曲,小下颌,肌张力略增高,大运动和精神发育落后。头颅磁共振成像示胼胝体变薄;视频脑电图示双侧前头部异常放电;家系全外显子组检测提示患儿存在SMC1A基因NM_006306:exon4:c.607A&gt;G(p.K203E)杂合变异所致Cornelia de Lange综合征Ⅱ型。患儿SMC1A基因检测到的杂合变异c.607A&gt;G是新发变异,在国内未见报道,扩大了SMC1A基因变异谱。."	"The clinical mutatome of core binding factor leukemia. The fusion genes CBFB/MYH11 and RUNX1/RUNX1T1 block differentiation through disruption of the core binding factor (CBF) complex and are found in 10-15% of adult de novo acute myeloid leukemia (AML) cases. This AML subtype is associated with a favorable prognosis; however, nearly half of CBF-rearranged patients cannot be cured with chemotherapy. This divergent outcome might be due to additional mutations, whose spectrum and prognostic relevance remains hardly defined. Here, we identify nonsilent mutations, which may collaborate with CBF-rearrangements during leukemogenesis by targeted sequencing of 129 genes in 292 adult CBF leukemia patients, and thus provide a comprehensive overview of the mutational spectrum ('mutatome') in CBF leukemia. Thereby, we detected fundamental differences between CBFB/MYH11- and RUNX1/RUNX1T1-rearranged patients with ASXL2, JAK2, JAK3, RAD21, TET2, and ZBTB7A being strongly correlated with the latter subgroup. We found prognostic relevance of mutations in genes previously known to be AML-associated such as KIT, SMC1A, and DHX15 and identified novel, recurrent mutations in NFE2 (3%), MN1 (4%), HERC1 (3%), and ZFHX4 (5%). Furthermore, age &gt;60 years, nonprimary AML and loss of the Y-chromosomes are important predictors of survival. These findings are important for refinement of treatment stratification and development of targeted therapy approaches in CBF leukemia."	"In-Frame Variants in STAG3 Gene Cause Premature Ovarian Insufficiency. Premature ovarian insufficiency (POI) is a severe clinical syndrome defined by ovarian dysfunction in women less than 40 years old who generally manifest with infertility, menstrual disturbance, elevated gonadotrophins, and low estradiol levels. STAG3 is considered a genetic aetiology of POI, which facilitates entry of REC8 into the nucleus of a cell and plays an essential role in gametogenesis. At present, only six truncated variants associated with POI have been reported; there have been no reports of an in-frame variant of STAG3 causing POI. In this study, two novel homozygous in-frame variants (c.877_885del, p.293_295del; c.891_893dupTGA, p.297_298insAsp) in STAG3 were identified in two sisters with POI from a five-generation consanguineous Han Chinese family. To evaluate the effects of these two variants, we performed fluorescence localization and co-immunoprecipitation analyses using in vitro cell model. The two variants were shown to be pathogenic, as neither STAG3 nor REC8 entered nuclei, and interactions between mutant STAG3 and REC8 or SMC1A were absent. To the best of our knowledge, this is the first report on in-frame variants of STAG3 that cause POI. This finding extends the spectrum of variants in STAG3 and sheds new light on the genetic origins of POI."	"Cornelia de Lange syndrome: from molecular diagnosis to therapeutic approach. Cornelia de Lange syndrome (CdLS) is a severe genetic disorder characterised by multisystemic malformations. CdLS is due to pathogenetic variants in NIPBL, SMC1A, SMC3, RAD21 and HDAC8 genes which belong to the cohesin pathway. Cohesin plays a pivotal role in chromatid cohesion, gene expression, and DNA repair. In this review, we will discuss how perturbations in those biological processes contribute to CdLS phenotype and will emphasise the state-of-art of CdLS therapeutic approaches."	"[Proliferation, migration and apoptosis of acute myeloid leukemia cells regulated by mir-23a-3p targeting SMC1A and the mechanism]. Objective: To investigate the effects of miR-23a-3p on proliferation, migration and apoptosis on human acute myeloid leukemia (AML) cells by targeting SMC1A. Methods: Microarray analysis was used to screen differentially expressed microRNAs and mRNAs in human AML cells. Real-time fluorescence quantitative PCR (RT-qRCR) was used to detect the expressions of miR-23a-3p and SMCA in human AML cell line U937. TargetScan database was used to analyze the correlation between miR-23a-3p and SMC1A. Double luciferase reporter gene was used to detect the interaction between miR-23a-3p and SMC1A. The effect of miR-23a-3p expression on the proliferation of U937 cells was detected by clonal assay. The migration, apoptosis, cell cycle and caspase-3 activity of U937 cells regulated by miR-23a-3p were detected by cell scratch assay and flow cytometry, respectively. Western blot was used to detect the expressions of Bax and Bcl-2 in U937 cells. Results: Compared with human normal monocyte SC group (1.00), the expression of miR-23a-3p in U937 cells was up-regulated (2.56±0.78) (P&lt;0.01), while the expression of SMC1A was down-regulated (0.48±0.56, P&lt;0.01). miR-23a-3p specifically bond to SMC1A 3'UTR and regulated the expression activity of SMC1A. Overexpression of miR-23a-3p promoted the proliferation and migration of U937 cells and inhibited the apoptosis of U937 cells, while up-regulation of SMC1A inhibited the proliferation and migration of U937 cells and promoted the apoptosis of U937 cells. The percentages of G(0)/G1 phase, G(2)/M phase and S phase cells in the negative control group were (37.48±0.21)%, (16.78±0.18)% and (45.74±0.15)% respectively, and those in the miR-23a-3p mimics group were (19.96±0.11)%, (41.69±0.24)% and (38.24±0.34)%, respectively. The difference was statistically significant (all P&lt;0.05). The proportions of G(0)/G(1) phase, G(2)/M phase and S phase cells in the group of miR-23a-3p mimics+ pcDNA3.1-SMC1A were (36.88±0.21)%, (30.44±0.33)% and (32.88±0.16)%, respectively, without significant difference when compared with those of the miR-23a-3p mimics group (P&gt;0.05). The relative expression levels of Bax and Bcl-2 protein in the negative control group were 0.55±0.45 and 0.31±0.54, respectively. Overexpression of miR-23a-3p inhibited the expression of Bax protein in U937 cells (0.23±0.13, P&lt;0.001), promoted the expression of Bcl-2 protein (0.50±0.23, P&lt;0.01), while SMC1A increased the expression of Bax protein in U937 cells (0.40±0.11, P&lt;0.01), and inhibited the expression of Bcl-2 protein (0.37±0.15). In the negative control group, caspase-3 activity was (25.82±0.89)%. Overexpression of miR-23a-3p inhibited caspase-3 activity in U937 cells (3.64±0.56)%, P&lt;0.01, while up-regulation of SMC1A promoted caspase-3 activity in U937 cells (15.29±0.85)%, P&lt;0.01. Conclusion: miR-23a-3p can inhibit the proliferation and migration and promote apoptosis of human AML cells by targeting SMC1A. 目的: 探讨miR-23a-3p靶向SMC1A调控人急性髓系白血病(AML)细胞的增殖、迁移和凋亡及其作用机制。 方法: 微阵列分析筛选人AML细胞U937中差异表达的微小RNA和信使RNA,实时荧光定量PCR法检测miR-23a-3p和SMC1A在人AML细胞U937中的表达,TargetScan数据库分析miR-23a-3p与SMC1A的相关性,双荧光素酶报告基因检测miR-23a-3p与SMC1A的相互作用,克隆形成实验检测miR-23a-3p的表达对U937细胞增殖能力的影响,细胞划痕实验检测miR-23a-3p的表达对U937细胞迁移能力的影响,流式细胞术检测miR-23a-3p的表达对U937细胞的凋亡能力、凋亡周期和caspase-3活性的影响,Western blot法检测miR-23a-3p的表达对U937细胞中Bax和Bcl-2蛋白表达的影响。 结果: 与人正常单核细胞SC(1.00)比较,U937细胞中miR-23a-3p的表达(2.56±0.78)上调 (P&lt;0.01),SMC1A的表达(0.48±0.56)下调(P&lt;0.01);miR-23a-3p与SMC1A 3′UTR特异性结合,调控SMC1A的表达活性。miR-23a-3p过表达促进U937细胞增殖和迁移,抑制U937细胞的凋亡;而SMC1A上调抑制U937细胞的增殖和迁移,促进了U937细胞的凋亡。阴性对照组中G(0)/G(1)期、G(2)/M期和S期细胞比例分别为(37.48±0.21)%、(16.78±0.18)%和(45.74±0.15)%,miR-23a-3p mimics组分别为(19.96±0.11)%、(41.69±0.24)%和 (38.24±0.34)%,差异均有统计学意义(均P&lt;0.05)。miR-23a-3p mimics+pcDNA3.1-SMC1A组中G(0)/G(1)期、G(2)/M期和S期细胞比例分别为(36.88±0.21)%、(30.44±0.33)%和(32.88±0.16)%,与miR-23a-3p mimics组比较,差异均无统计学意义(均P&gt;0.05)。阴性对照组中Bax和Bcl-2蛋白的相对表达水平分别为0.55±0.45和0.31±0.54,miR-23a-3p过表达抑制U937细胞中Bax蛋白的表达(0.23±0.13,P&lt;0.001),促进Bcl-2蛋白的表达(0.50±0.23,P&lt;0.01),而SMC1A上调促进U937细胞中Bax蛋白的表达(0.40±0.11,P&lt;0.01),抑制Bcl-2蛋白的表达(0.37±0.15)。阴性对照组中caspase-3的活性为(25.82±0.89)%,miR-23a-3p过表达抑制U937细胞中caspase-3的活性[(3.64±0.56)%,P&lt;0.01],而SMC1A上调促进U937细胞中caspase-3的活性[(15.29±0.85)%,P&lt;0.01]。 结论: miR-23a-3p通过靶向SMC1A抑制人AML细胞的增殖和迁移,促进其凋亡。."	"Interactome of the Autoimmune Risk Protein ANKRD55. The ankyrin repeat domain-55 (ANKRD55) gene contains intronic single nucleotide polymorphisms (SNPs) associated with risk to contract multiple sclerosis, rheumatoid arthritis or other autoimmune disorders. Risk alleles of these SNPs are associated with higher levels of ANKRD55 in CD4<sup>+</sup> T cells. The biological function of ANKRD55 is unknown, but given that ankyrin repeat domains constitute one of the most common protein-protein interaction platforms in nature, it is likely to function in complex with other proteins. Thus, identification of its protein interactomes may provide clues. We identified ANKRD55 interactomes via recombinant overexpression in HEK293 or HeLa cells and mass spectrometry. One hundred forty-eight specifically interacting proteins were found in total protein extracts and 22 in extracts of sucrose gradient-purified nuclei. Bioinformatic analysis suggested that the ANKRD55-protein partners from total protein extracts were related to nucleotide and ATP binding, enriched in nuclear transport terms and associated with cell cycle and RNA, lipid and amino acid metabolism. The enrichment analysis of the ANKRD55-protein partners from nuclear extracts is related to sumoylation, RNA binding, processes associated with cell cycle, RNA transport, nucleotide and ATP binding. The interaction between overexpressed ANKRD55 isoform 001 and endogenous RPS3, the cohesins SMC1A and SMC3, CLTC, PRKDC, VIM, β-tubulin isoforms, and 14-3-3 isoforms were validated by western blot, reverse immunoprecipitaton and/or confocal microscopy. We also identified three phosphorylation sites in ANKRD55, with S436 exhibiting the highest score as likely 14-3-3 binding phosphosite. Our study suggests that ANKRD55 may exert function(s) in the formation or architecture of multiple protein complexes, and is regulated by (de)phosphorylation reactions. Based on interactome and subcellular localization analysis, ANKRD55 is likely transported into the nucleus by the classical nuclear import pathway and is involved in mitosis, probably via effects associated with mitotic spindle dynamics."	"The expanding phenotypes of cohesinopathies: one ring to rule them all! Preservation and development of life depend on the adequate segregation of sister chromatids during mitosis and meiosis. This process is ensured by the cohesin multi-subunit complex. Mutations in this complex have been associated with an increasing number of diseases, termed cohesinopathies. The best characterized cohesinopathy is Cornelia de Lange syndrome (CdLS), in which intellectual and growth retardations are the main phenotypic manifestations. Despite some overlap, the clinical manifestations of cohesinopathies vary considerably. Novel roles of the cohesin complex have emerged during the past decades, suggesting that important cell cycle regulators exert important biological effects through non-cohesion-related functions and broadening the potential pathomechanisms involved in cohesinopathies. This review focuses on non-cohesion-related functions of the cohesin complex, gene dosage effect, epigenetic regulation and TGF-β in cohesinopathy context, especially in comparison to  <u>C</u> hronic  <u>A</u> trial and  <u>I</u> ntestinal  <u>D</u> ysrhythmia (CAID) syndrome, a very distinct cohesinopathy caused by a homozygous Shugoshin-1 (SGO1) mutation (K23E) and characterized by pacemaker failure in both heart (sick sinus syndrome followed by atrial flutter) and gut (chronic intestinal pseudo-obstruction) with no intellectual or growth delay. We discuss the possible impact of SGO1 alterations in human pathologies and the potential impact of the SGO1 K23E mutation in the sinus node and gut development and functions. We suggest that the human phenotypes observed in CdLS, CAID syndrome and other cohesinopathies can inform future studies into the less well-known non-cohesion-related functions of cohesin complex genes. Abbreviations: AD: Alzheimer Disease; AFF4: AF4/FMR2 Family Member 4; ANKRD11: Ankyrin Repeat Domain 11; APC: Anaphase Promoter Complex; ASD: Atrial Septal Defect; ATRX: ATRX Chromatin Remodeler; ATRX: Alpha Thalassemia X-linked intellectual disability syndrome; BIRC5: Baculoviral IAP Repeat Containing 5; BMP: Bone Morphogenetic Protein; BRD4: Bromodomain Containing 4; BUB1: BUB1 Mitotic Checkpoint Serine/Threonine Kinase; CAID: Chronic Atrial and Intestinal Dysrhythmia; CDK1: Cyclin Dependent Kinase 1; CdLS: Cornelia de Lange Syndrome; CHD: Congenital Heart Disease; CHOPS: Cognitive impairment, coarse facies, Heart defects, Obesity, Pulmonary involvement, Short stature, and skeletal dysplasia; CIPO: Chronic Intestinal Pseudo-Obstruction; c-kit: KIT Proto-Oncogene Receptor Tyrosine Kinase; CoATs: Cohesin Acetyltransferases; CTCF: CCCTC-Binding Factor; DDX11: DEAD/H-Box Helicase 11; ERG: Transcriptional Regulator ERG; ESCO2: Establishment of Sister Chromatid Cohesion N-Acetyltransferase 2; GJC1: Gap Junction Protein Gamma 1; H2A: Histone H2A; H3K4: Histone H3 Lysine 4; H3K9: Histone H3 Lysine 9; HCN4: Hyperpolarization Activated Cyclic Nucleotide Gated Potassium and Sodium Channel 4;p HDAC8: Histone deacetylases 8; HP1: Heterochromatin Protein 1; ICC: Interstitial Cells of Cajal; ICC-MP: Myenteric Plexus Interstitial cells of Cajal; ICC-DMP: Deep Muscular Plexus Interstitial cells of Cajal; If: Pacemaker Funny Current; IP3: Inositol trisphosphate; JNK: C-Jun N-Terminal Kinase; LDS: Loeys-Dietz Syndrome; LOAD: Late-Onset Alzheimer Disease; MAPK: Mitogen-Activated Protein Kinase; MAU: MAU Sister Chromatid Cohesion Factor; MFS: Marfan Syndrome; NIPBL: NIPBL, Cohesin Loading Factor; OCT4: Octamer-Binding Protein 4; P38: P38 MAP Kinase; PDA: Patent Ductus Arteriosus; PDS5: PDS5 Cohesin Associated Factor; P-H3: Phospho Histone H3; PLK1: Polo Like Kinase 1; POPDC1: Popeye Domain Containing 1; POPDC2: Popeye Domain Containing 2; PP2A: Protein Phosphatase 2; RAD21: RAD21 Cohesin Complex Component; RBS: Roberts Syndrome; REC8: REC8 Meiotic Recombination Protein; RNAP2: RNA polymerase II; SAN: Sinoatrial node; SCN5A: Sodium Voltage-Gated Channel Alpha Subunit 5; SEC: Super Elongation Complex; SGO1: Shogoshin-1; SMAD: SMAD Family Member; SMC1A: Structural Maintenance of Chromosomes 1A; SMC3: Structural Maintenance of Chromosomes 3; SNV: Single Nucleotide Variant; SOX2: SRY-Box 2; SOX17: SRY-Box 17; SSS: Sick Sinus Syndrome; STAG2: Cohesin Subunit SA-2; TADs: Topology Associated Domains; TBX: T-box transcription factors; TGF-β: Transforming Growth Factor β; TGFBR: Transforming Growth Factor β receptor; TOF: Tetralogy of Fallot; TREK1: TREK-1 K(+) Channel Subunit; VSD: Ventricular Septal Defect; WABS: Warsaw Breakage Syndrome; WAPL: WAPL Cohesin Release Factor."	"XPO1 is a critical player for bortezomib resistance in multiple myeloma: A quantitative proteomic approach. Among the blood cancers, 13% mortality is caused by Multiple myeloma (MM) type of hematological malignancy. In spite of therapeutic advances in chemotherapy treatment, still MM remains an incurable disease is mainly due to emergence of chemoresistance. At present time, FDA approved bortezomib is the first line drug for MM treatment. However, like other chemotherapy, MM patients are acquiring resistance against bortezomib. The present study aims to identify and validate bortezomib resistant protein targets in MM using iTRAQ and label free quantitative proteomic approaches. 112 differentially expressed proteins were commonly found in both approaches with similar differential expression pattern. Exportin-1 (XPO1) protein was selected for further validation as its significant high expression was observed in both iTRAQ and label free analysis. Bioinformatic analysis of these common differentially expressed proteins showed a clear cluster of proteins such as SMC1A, RCC2, CSE1, NUP88, NUP50, TPR, HSPA14, DYNLL1, RAD21 and RANBP2 being associated with XPO1. Functional studies like cell count assay, flow cytometry assay and soft agar assay proved that XPO1 knock down in RPMI 8226R cell line results in re-sensitization to bortezomib drug. The mass spectrometry data are available via ProteomeXchange with identifier PXD013859. BIOLOGICAL SIGNIFICANCE: Multiple myeloma (MM) is a type of hematological malignancy which constitutes about 13% of all blood cell related malignancies. Chemoresistance is one of the major obstacles for the successful treatment for MM. Bortezomib is a first proteasome inhibitor drug, widely used in MM treatment. The present study aims to identify and validate bortezomib resistant protein targets in MM. Here, we identified 112 candidate proteins to be associated with bortezomib resistance using global quantitative proteomic analysis. Among these candidate proteins, we show that XPO1 plays crucial role in emerging bortezomib resistance using functional studies like cell count assay, flow cytometry assay and soft agar assay. XPO1 could be a potential therapeutic target for MM and development of inhibitors of XPO1 might help to cure MM."	"Chronic myelomonocytic leukemia with ETV6-ABL1 rearrangement and SMC1A mutation. Chronic myelomonocytic leukemia (CMML) is a rare malignant neoplasm of the blood-forming cells in bone marrow characterized by persistent monocytosis. Although most patients with CMML show clonal genetic aberrations, there is no known cytogenetic or molecular genetic finding that is specific to CMML. We report a patient who had a clinical and morphological presentation consistent with CMML. The genetic work-up showed an ETV6-ABL1 fusion consequent to a 9;12 translocation, and a missense mutation in SMC1A (c.1757G&gt;A, p.Arg586Gln). The SMC1A mutations are recurrent, albeit rare, in myeloid malignancies, without an established clinical significance in CMML. ETV6-ABL1 fusion is a rare but recurrent genetic aberration found in various hematologic malignancies involving both the lymphoid and myeloid lineage, but to the best of our knowledge, CMML is an exceptionally rare presentation of ETV6-ABL1 rearranged neoplasm. ETV6-ABL1 fusion is often formed through complex rearrangements, and usually cryptic by routine G-banded chromosome analysis. The diseases associated with this rearrangement generally have an aggressive course, hence detecting or excluding this rearrangement during diagnostic work-up is critical for treatment planning."	"Comprehensive genetic analysis of 57 families with clinically suspected Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a rare multisystem disorder with specific dysmorphic features. Pathogenic genetic variants encoding cohesion complex subunits and interacting proteins (e.g., NIPBL, SMC1A, SMC3, HDAC8, and RAD21) are the major causes of CdLS. However, there are many clinically diagnosed cases of CdLS without pathogenic variants in these genes. To identify further genetic causes of CdLS, we performed whole-exome sequencing in 57 CdLS families, systematically evaluating both single nucleotides variants (SNVs) and copy number variations (CNVs). We identified pathogenic genetic changes in 36 out of 57 (63.2 %) families, including 32 SNVs and four CNVs. Two known CdLS genes, NIPBL and SMC1A, were mutated in 23 and two cases, respectively. Among the remaining 32 individuals, four genes (ANKRD11, EP300, KMT2A, and SETD5) each harbored a pathogenic variant in a single individual. These variants are known to be involved in CdLS-like. Furthermore, pathogenic CNVs were detected in NIPBL, MED13L, and EHMT1, along with pathogenic SNVs in ZMYND11, MED13L, and PHIP. These three latter genes were involved in diseases other than CdLS and CdLS-like. Systematic clinical evaluation of all patients using a recently proposed clinical scoring system showed that ZMYND11, MED13L, and PHIP abnormality may cause CdLS or CdLS-like."	"Cohesin complex-associated holoprosencephaly. Marked by incomplete division of the embryonic forebrain, holoprosencephaly is one of the most common human developmental disorders. Despite decades of phenotype-driven research, 80-90% of aneuploidy-negative holoprosencephaly individuals with a probable genetic aetiology do not have a genetic diagnosis. Here we report holoprosencephaly associated with variants in the two X-linked cohesin complex genes, STAG2 and SMC1A, with loss-of-function variants in 10 individuals and a missense variant in one. Additionally, we report four individuals with variants in the cohesin complex genes that are not X-linked, SMC3 and RAD21. Using whole mount in situ hybridization, we show that STAG2 and SMC1A are expressed in the prosencephalic neural folds during primary neurulation in the mouse, consistent with forebrain morphogenesis and holoprosencephaly pathogenesis. Finally, we found that shRNA knockdown of STAG2 and SMC1A causes aberrant expression of HPE-associated genes ZIC2, GLI2, SMAD3 and FGFR1 in human neural stem cells. These findings show the cohesin complex as an important regulator of median forebrain development and X-linked inheritance patterns in holoprosencephaly."	"A missense variant of SMC1A causes periodic pharmaco-resistant cluster seizures similar to PCDH19-related epilepsy. SMC1A variants causing Cornelia de Lange syndrome (CdLS) produce another phenotype characterized by moderate to severe neurological impairment and severe early-onset epilepsy without morphological characteristics of CdLS. The patients are all female and have truncation mutations in SMC1A. The epilepsy also follows a characteristic clinical course with pharmaco-resistant cluster seizures since infancy, mimicking that of PCDH19-related epilepsy. We report here that a missense variant of the SMC1A gene affecting a daughter (proband) and her mother caused similar phenotypes of early-onset (2 years and 1 month of age) and late-onset (12 years of age) epilepsy, respectively. Both patients lacked the morphological characteristics of CdLS, and had severe and moderate intellectual disability, respectively. The cluster seizures were characteristic, occurring approximately every 2-4 weeks (interval; mean ± SD: 20.2 ± 8.3 days) at the peak of the clinical course, especially in the proband. Thus, SMC1A-related encephalopathy is caused not only by truncation mutations but also by missense variants of the SMC1A gene. The periodicity of cluster seizures mimicking that of PCDH19-related epilepsy may characterize SMC1A-related encephalopathy."	"Genetic Mosaicism in a Group of Patients With Cornelia de Lange Syndrome. Background: Cornelia de Lange Syndrome (CdLS) is a heterogeneous disorder. Diverse expression of clinical symptoms can be caused by a variety of pathogenic variants located within the sequence of different genes correlated with the cohesin complex. Methods: Sixty-nine patients with confirmed clinical diagnosis of CdLS were enrolled in the study. Blood and buccal swab samples were collected for molecular studies. Mutational analysis was performed using the Next Generation (deep) Sequencing (NGS) covering 24 genes. In addition, the MLPA technique was applied to detect large rearrangements of NIPBL. Results: MLPA and NGS analysis were performed in 66 (95,7%) and 67 (97,1%) patients, respectively. Large rearrangements of NIPBL were not identified in the studied group. Germline pathogenic variants were detected in 18 (26,1%) patients. Fourteen variants (20,3%) were identified in NIPBL, two (2,9%) in SMC1A, and two (2,9%) in HDAC8. In total, 13 (18,8%) buccal swabs were suitable for deep sequencing. Mosaic variants were found in four (30,8%; 4/13) patients negative for germline alterations. Three mosaic substitutions were detected in NIPBL while one in KMT2A gene. Conclusions: Comprehensive and sensitive molecular techniques allow detecting novel pathogenic variants responsible for the molecular basis of CdLS. In addition, molecular testing of different tissues should be applied since such an approach allows detect mosaic variants specific for a subgroup of CdLS patients. Finally, to test possible pathogenicity of intronic variants, RNA analysis should be conducted."	"A novel nonsense SMC1A mutation in a patient with intractable epilepsy and cardiac malformation. Cornelia de Lange syndrome (CdLS) is a cohesinopathy caused by genetic variations. We present a female with SMC1A-associated CdLS with a novel SMC1A truncation mutation (p. Arg499Ter), transposition of the great arteries, and periodic intractable seizures from 40 months of age. A review of the literature revealed that a seizure-free period after birth of at least 15 months is required for these patients to be able to walk, irrespective of the epileptic course."	"Use of a Dynamic Genetic Testing Approach for Childhood-Onset Epilepsy. Although genetic testing is important for bringing precision medicine to children with epilepsy, it is unclear what genetic testing strategy is best in maximizing diagnostic yield. To evaluate the diagnostic yield of an exome-based gene panel for childhood epilepsy and discuss the value of follow-up testing. A case series study was conducted on data from clinical genetic testing at Children's Hospital of Philadelphia was conducted from September 26, 2016, to January 8, 2018. Initial testing targeted 100 curated epilepsy genes for sequence and copy number analysis in 151 children with idiopathic epilepsy referred consecutively by neurologists. Additional genetic testing options were offered afterward. Clinical genetic testing. Molecular diagnostic findings. Of 151 patients (84 boys [55.6%]; median age, 4.2 years [interquartile range, 1.4-8.7 years]), 16 children (10.6%; 95% CI, 6%-16%) received a diagnosis after initial panel analysis. Parental testing for 15 probands with inconclusive results revealed de novo variants in 7 individuals (46.7%), resulting in an overall diagnostic yield of 15.3% (23 of 151; 95% CI, 9%-21%). Twelve probands with nondiagnostic panel findings were reflexed to exome sequencing, and 4 were diagnostic (33.3%; 95% CI, 6%-61%), raising the overall diagnostic yield to 17.9% (27 of 151; 95% CI, 12%-24%). The yield was highest (17 of 44 [38.6%; 95% CI, 24%-53%]) among probands with epilepsy onset in infancy (age, 1-12 months). Panel diagnostic findings involved 16 genes: SCN1A (n = 4), PRRT2 (n = 3), STXBP1 (n = 2), IQSEC2 (n = 2), ATP1A2, ATP1A3, CACNA1A, GABRA1, KCNQ2, KCNT1, SCN2A, SCN8A, DEPDC5, TPP1, PCDH19, and UBE3A (all n = 1). Exome sequencing analysis identified 4 genes: SMC1A, SETBP1, NR2F1, and TRIT1. For the remaining 124 patients, analysis of 13 additional genes implicated in epilepsy since the panel was launched in 2016 revealed promising findings in 6 patients. Exome-based targeted panels appear to enable rapid analysis of a preselected set of genes while retaining flexibility in gene content. Successive genetic workup should include parental testing of select probands with inconclusive results and reflex to whole-exome trio analysis for the remaining nondiagnostic cases. Periodic reanalysis is needed to capture information in newly identified disease genes."	"First evidence of a paediatric patient with Cornelia de Lange syndrome with acute lymphoblastic leukaemia. Cornelia de Lange syndrome (CdLS) is a rare autosomal-dominant genetic disorder characterised by prenatal and postnatal growth and mental retardation, facial dysmorphism and upper limb abnormalities. Germline mutations of cohesin complex genes SMC1A, SMC3, RAD21 or their regulators NIPBL and HDAC8 have been identified in CdLS as well as somatic mutations in myeloid disorders. We describe the first case of a paediatric patient with CdLS with B-cell precursor Acute Lymphoblastic Leukaemia (ALL). The patient did not show any unusual cytogenetic abnormality, and he was enrolled into the high risk arm of AIEOP-BFM ALL2009 protocol because of slow early response, but 3 years after discontinuation, he experienced an ALL relapse. We identified a heterozygous mutation in exon 46 of NIPBL, causing frameshift and a premature stop codon (RNA-Targeted Next generation Sequencing Analysis). The analysis of the family indicated a de novo origin of this previously not reported deleterious variant. As for somatic cohesin mutations in acute myeloid leukaemia, also this ALL case was not affected by aneuploidy, thus suggesting a major impact of the non-canonical role of NIPBL in gene regulation. A potential biological role of NIPBL in leukaemia has still to be dissected."	"Overexpression of the cohesin-core subunit SMC1A contributes to colorectal cancer development. Cancer cells are characterized by chromosomal instability (CIN) and it is thought that errors in pathways involved in faithful chromosome segregation play a pivotal role in the genesis of CIN. Cohesin forms a large protein ring that binds DNA strands by encircling them. In addition to this central role in chromosome segregation, cohesin is also needed for DNA repair, gene transcription regulation and chromatin architecture. Though mutations in both cohesin and cohesin-regulator genes have been identified in many human cancers, the contribution of cohesin to cancer development is still under debate. Normal mucosa, early adenoma, and carcinoma samples deriving from 16 subjects affected by colorectal cancer (CRC) were analyzed by OncoScan for scoring both chromosome gains and losses (CNVs) and loss of heterozygosity (LOH). Then the expression of SMC1A was analyzed by immunochemistry in 66 subjects affected by CRC. The effects of SMC1A overexpression and mutated SMC1A were analyzed in vivo using immunocompromised mouse models. Finally, we measured global gene expression profiles in induced-tumors by RNA-seq. Here we showed that SMC1A cohesin core gene was present as extra-copies, mutated, and overexpressed in human colorectal carcinomas. We then demonstrated that cohesin overexpression led to the development of aggressive cancers in immunocompromised mice through gene expression dysregulation. Collectively, these results support a role of defective cohesin in the development of human colorectal cancer."	"A De novo HDAC2 variant in a patient with features consistent with Cornelia de Lange syndrome phenotype. Cornelia de Lange syndrome (CdLS) is an autosomal dominant genetic disorder caused by pathogenic variants in NIPBL, RAD21, SMC3, HDAC8, or SMC1A; all of which code for proteins that are components of, or interact with, the cohesin complex. Despite the identification of multiple genes associated with CdLS, over 25% of individuals strongly suspected to have CdLS have negative genetic testing, indicating that there are additional genes associated with the condition. HDAC2 codes for histone deacetylase 2 (HDAC2) and, like HDAC8, is a Class 1 histone deacetylase. We present a patient with a novel de novo variant in HDAC2 with many clinical features consistent with CdLS including severe developmental delay, limb abnormalities, congenital heart defect, cryptorchidism and hypoplastic genitalia, growth retardation, and characteristic craniofacial features. Although variants in HDAC2 are not currently associated with human disease, the variant identified in this patient is within a highly conserved amino acid residue and has not been observed in healthy populations. This information, along with the patient's clinical presentation and the functional similarity between the HDAC2 and HDAC8 proteins, suggests that HDAC2 should be further investigated as a candidate gene for CdLS or a CdLS-like syndrome."	"NIPBL: a new player in myeloid cell differentiation. The nucleophosmin 1 gene (NPM1) is the most frequently mutated gene in acute myeloid leukemia. Notably, NPM1 mutations are always accompanied by additional mutations such as those in cohesin genes RAD21, SMC1A, SMC3, and STAG2 but not in the cohesin regulator, nipped B-like (NIPBL). In this work, we analyzed a cohort of adult patients with acute myeloid leukemia and NPM1 mutation and observed a specific reduction in the expression of NIPBL but not in other cohesin genes. In our zebrafish model, overexpression of the mutated form of NPM1 also induced downregulation of nipblb, the zebrafish ortholog of human NIPBL To investigate the hematopoietic phenotype and the interaction between mutated NPM1 and nipblb, we generated a zebrafish model with nipblb downregulation which showed an increased number of myeloid progenitors. This phenotype was due to hyper-activation of the canonical Wnt pathway: myeloid cells blocked in an undifferentiated state could be rescued when the Wnt pathway was inhibited by dkk1b mRNA injection or indomethacin administration. Our results reveal, for the first time, a role for NIPBL during zebrafish hematopoiesis and suggest that an interplay between NIPBL/NPM1 may regulate myeloid differentiation in zebrafish and humans through the canonical Wnt pathway and that dysregulation of these interactions may drive leukemic transformation."	"Cornelia de Lange syndrome in diverse populations. Cornelia de Lange syndrome (CdLS) is a dominant multisystemic malformation syndrome due to mutations in five genes-NIPBL, SMC1A, HDAC8, SMC3, and RAD21. The characteristic facial dysmorphisms include microcephaly, arched eyebrows, synophrys, short nose with depressed bridge and anteverted nares, long philtrum, thin lips, micrognathia, and hypertrichosis. Most affected individuals have intellectual disability, growth deficiency, and upper limb anomalies. This study looked at individuals from diverse populations with both clinical and molecularly confirmed diagnoses of CdLS by facial analysis technology. Clinical data and images from 246 individuals with CdLS were obtained from 15 countries. This cohort included 49% female patients and ages ranged from infancy to 37 years. Individuals were grouped into ancestry categories of African descent, Asian, Latin American, Middle Eastern, and Caucasian. Across these populations, 14 features showed a statistically significant difference. The most common facial features found in all ancestry groups included synophrys, short nose with anteverted nares, and a long philtrum with thin vermillion of the upper lip. Using facial analysis technology we compared 246 individuals with CdLS to 246 gender/age matched controls and found that sensitivity was equal or greater than 95% for all groups. Specificity was equal or greater than 91%. In conclusion, we present consistent clinical findings from global populations with CdLS while demonstrating how facial analysis technology can be a tool to support accurate diagnoses in the clinical setting. This work, along with prior studies in this arena, will assist in earlier detection, recognition, and treatment of CdLS worldwide."	"Molecular characterization of two novel intronic variants of NIPBL gene detected in unrelated Cornelia de Lange syndrome patients. Cornelia de Lange syndrome (CdLS), a rare, multisystemic disorder, has been linked to genetic alterations in NIPBL, SMC1A, SMC3, HDAC8, and RAD21 genes. Approximately 60% of CdLS patients harbor various NIPBL variants. Genetic changes predicted to affect NIPBL gene splicing represent 15% of all NIPBL genetic abnormalities. Yet, only a few studies have investigated the molecular consequences of such variants. This study reports two novel, intronic NIPBL genetic variants in unrelated CdLS patients with the characteristic phenotype. A c.6954 + 3A &gt; C substitution and a c.5862 + 1delG deletion were identified, one of each, in a 6 year-old boy and 39 month-old girl. Further studies confirmed that both variants introduce premature termination codons, resulting in the formation of truncated proteins p.(Ser2255LeufsTer20) and p.(Leu1955Ter), respectively. Single nucleotide alterations located within the conserved splice-donor site of intronic regions of the NIPBL gene can give rise to a premature termination of the translation and cause significant changes in the sequence of mRNA transcripts and NIPBL protein structure and function. The latter underline development of Cornelia de Lange syndrome phenotype."	"Cornelia De Lange Syndrome In A 4-Year-Old Child From India: Phenotype Description And Role Of Genetic Counseling. Cornelia de Lange syndrome (CdLS) is a congenital disorder marked by distinctive facial features, severe growth restriction, cognitive disability, global developmental delay, and anomalies involving multiple body organs. Majority cases of CdLS are caused due to sporadic mutations in the NIPBL, SMC1A, SMC3, RAD21, or HDAC8 genes, which form/regulate a multiprotein complex called cohesin. Cohesin is required for the separation of sister chromatids during cell division. We present a rare case of a 4-year-old child from India depicting classical features of CdLS. The patient was managed symptomatically by a multidisciplinary team and was requested regular follow-ups. Phenotype description according to ethnicity may help in diagnosing CdLS. A multipronged approach by a team of physicians from various faculties is required for providing comprehensive medical care to patients with CdLS."	"Mutations in STAG2 cause an X-linked cohesinopathy associated with undergrowth, developmental delay, and dysmorphia: Expanding the phenotype in males. The cohesin complex is a multi-subunit protein complex which regulates sister chromatid cohesion and separation during cellular division. In addition, this evolutionarily conserved protein complex plays an integral role in DNA replication, DNA repair, and the regulation of transcription. The core complex is composed of four subunits: RAD21, SMC1A, SMC3, and STAG1/2. Mutations in these proteins have been implicated in human developmental disorders collectively termed &quot;cohesinopathies.&quot; Using clinical exome sequencing, we have previously identified three female cases with heterozygous STAG2 mutations and overlapping syndromic phenotypes. Subsequently, a familial missense variant was identified in five male family members. We now present the case of a 4-year-old male with developmental delay, failure to thrive, short stature, and polydactyly with a likely pathogenic STAG2 de novo missense hemizygous variant, c.3027A&gt;T, p.Lys1009Asn. Furthermore, we compare the phenotypes of the four previously reported STAG2 variants with our case. We conclude that mutations in STAG2 cause a novel constellation of sex-specific cohesinopathy-related phenotypes and are furthermore, essential for neurodevelopment, human growth, and behavioral development."	"Development, behaviour and autism in individuals with SMC1A variants. Development and behaviour in Cornelia de Lange Syndrome (CdLS), including autism characteristics, have been described infrequently stratified to genetic cause and only a few studies have considered behavioural characteristics in relation to developmental level. Here, we describe the behavioural phenotype in individuals with CdLS with SMC1A variants. We performed an international, interdisciplinary study on 51 individuals with SMC1A variants. Results of questionnaire studies are compared to those in individuals with Down Syndrome and with Autism Spectrum Disorder. Results on cognition and self-injurious behaviour (SIB) are compared to those in individuals with CdLS caused by NIPBL variants. For Dutch participants with SMC1A variants we performed direct in-person assessments of cognition, autism, and added an interview and questionnaire on adaptive behaviour and sensory processing. Individuals with SMC1A variants show a higher cognitive level and less SIB than individuals with NIPBL variants. Individuals with SMC1A variants without classic CdLS phenotype but with a Rett-like phenotype show more severe intellectual disability and more SIB compared to those with a CdLS phenotype. Autism is less present if outcomes in direct in-person assessments are evaluated taking developmental level into account compared to results based on a questionnaire. Behaviour in individuals with CdLS should be evaluated taking genetic cause into account. Detailed interdisciplinary approaches are of clinical importance to inform tailored care and may eventually improve quality of life of patients and families."	"Long noncoding RNA NEAT1 modulates cell proliferation and apoptosis by regulating miR-23a-3p/SMC1A in acute myeloid leukemia. The aim of this study was to determine the function of the NEAT1/miR-23a-3p/SMC1A axis in cell proliferation and apoptosis in acute myeloid leukemia (AML). Microarray analysis was used to screen differentially expressed lncRNAs/miRNAs/mRNAs in primary AML cells. The expression of nuclear paraspeckle assembly transcript 1 (NEAT1), miR-23a-3p, and structural maintenance of chromosome 1 alpha (SMC1A) in primary AML cells and THP-1 cells were measured by quantitative real-time polymerase chain reaction (qRT-PCR). A Cell Counting Kit-8 (CCK-8) assay was used to analyze proliferation. Cell cycle progression and apoptosis were examined by flow cytometry. RNA immunoprecipitation (RIP) and dual-luciferase assays were performed to determine the correlation between miR-23a-3p and NEAT1 or SMC1A. The qRT-PCR illustrated that NEAT1 and SMC1A expression was decreased but that miR-23a-3p expression was increased in primary AML cells and THP-1 cells compared with that in normal cells. The RIP assay and dual-luciferase assay revealed the targeting relationship between miR-23a-3p and NEAT1 or SMC1A. The CCK-8 assay showed that the overexpression of NEAT1 and SMC1A or repression of miR-23a-3p inhibited cell proliferation. Flow cytometry showed that the upregulation of NEAT1 and SMC1A or repression of miR-23a-3p promoted apoptosis and affected the cell cycle. NEAT1 repressed the expression of miR-23a-3p, and therefore promoted SMC1A, which in turn suppressed myeloid leukemia cell proliferation and enhanced apoptosis."	"SMC1A is associated with radioresistance in prostate cancer and acts by regulating epithelial-mesenchymal transition and cancer stem-like properties. Prostate cancer is one of the most commonly diagnosed cancers and a pressing health challenge in men worldwide. Radiation therapy (RT) is widely considered a standard therapy for advanced as well as localized prostate cancer. Although this primary therapy is associated with high cancer control rates, up to one-third of patients undergoing radiation therapy becomes radio-resistant and/or has tumor-relapse/recurrence. Therefore, focus on new molecular targets and pathways is essential to develop novel radio-sensitizing agents for the effective and safe treatment of prostate cancer. Here, we describe functional studies that were performed to investigate the role of structural maintenance of chromosome-1 (SMC1A) in radioresistance of metastatic prostate cancer cells. Short hairpin RNA (shRNA) was used to suppress SMC1A in metastatic castration-resistant prostate cancer cells, DU145 and PC3. Clonogenic survival assays, Western blot, RT-PCR, and γ-H2AX staining were used to assess the effect of SMC1A knockdown on radiation sensitivity of these prostate cancer cells. We demonstrate that SMC1A is overexpressed in human prostate tumors compared to the normal adjacent tissue. SMC1A knockdown limits the clonogenic potential, epithelial-mesenchymal transition (EMT), and cancer stem-like cell (CSC) properties of DU145 and PC3 cells and enhanced efficacy of RT in these cells. Targeted inhibition of SMC1A not only plays a critical role in overcoming radio-resistance in prostate cancer cells, but also suppresses self-renewal and the tumor-propagating potential of x-irradiated cancer cells. We propose that SMC1A could be a potential molecular target for the development of novel radio-sensitizing therapeutic agents for management of radio-resistant metastatic prostate cancer."	"Clinical exome sequencing reveals locus heterogeneity and phenotypic variability of cohesinopathies. Defects in the cohesin pathway are associated with cohesinopathies, notably Cornelia de Lange syndrome (CdLS). We aimed to delineate pathogenic variants in known and candidate cohesinopathy genes from a clinical exome perspective. We retrospectively studied patients referred for clinical exome sequencing (CES, N = 10,698). Patients with causative variants in novel or recently described cohesinopathy genes were enrolled for phenotypic characterization. Pathogenic or likely pathogenic single-nucleotide and insertion/deletion variants (SNVs/indels) were identified in established disease genes including NIPBL (N = 5), SMC1A (N = 14), SMC3 (N = 4), RAD21 (N = 2), and HDAC8 (N = 8). The phenotypes in this genetically defined cohort skew towards the mild end of CdLS spectrum as compared with phenotype-driven cohorts. Candidate or recently reported cohesinopathy genes were supported by de novo SNVs/indels in STAG1 (N = 3), STAG2 (N = 5), PDS5A (N = 1), and WAPL (N = 1), and one inherited SNV in PDS5A. We also identified copy-number deletions affecting STAG1 (two de novo, one of unknown inheritance) and STAG2 (one of unknown inheritance). Patients with STAG1 and STAG2 variants presented with overlapping features yet without characteristic facial features of CdLS. CES effectively identified disease-causing alleles at the mild end of the cohensinopathy spectrum and enabled characterization of candidate disease genes."	"A novel RAD21 p.(Gln592del) variant expands the clinical description of Cornelia de Lange syndrome type 4 - Review of the literature. Cornelia de Lange syndrome (CdLS) is a heterogeneous developmental disorder where 70% of clinically diagnosed patients harbor a variant in one of five CdLS associated cohesin proteins. Around 500 variants have been identified to cause CdLS, however only eight different alterations have been identified in the RAD21 gene, encoding the RAD21 cohesin complex component protein that constitute the link between SMC1A and SMC3 within the cohesin ring. We report a 15-month-old boy presenting with developmental delay, distinct CdLS-like facial features, gastrointestinal reflux in early infancy, testis retention, prominent digit pads and diaphragmatic hernia. Exome sequencing revealed a novel RAD21 variant, c.1774_1776del, p.(Gln592del), suggestive of CdLS type 4. Segregation analysis of the two healthy parents confirmed the variant as de novo and bioinformatic analysis predicted the variant as disease-causing. Assessment by in silico structural model predicted that the p.Gln592del variant results in a discontinued contact between RAD21-Lys591 and the SMC1A residues Glu1191 and Glu1192, causing changes in the RAD21-SMC1A interface. In conclusion, we report a patient that expands the clinical description of CdLS type 4 and presents with a novel RAD21 p.(Glu592del) variant that causes a disturbed RAD21-SMC1A interface according to in silco structural modeling."	"[Analysis of NIPBL gene mutation in a patient with Cornelia de Lange syndrome]. To analyze the genotype-phenotype correlation in a case with Cornelia de Lange syndrome (CdLS). Genetic testing was carried out for a baby girl born by Cesarean section. The patient had clinical features including peculiar face, long bushy eyebrows, hypertelorism, wide sagittal suture, low-set ears, retrognathia, polydactyly and polysyndactyly of first toes, weak cry, poor suck and slow response, and was suspected as CdLS. Sequencing of CdLS-related genes including NIPBL, SMC1A, SMC3, RAD21 and HDAC8A has identified a novel heterozygous deletional mutation of the NIPBL gene. The deletion region has encompassed exon 46 and part of exon 47. The frameshift caused by the mutation has led to significant alteration of its protein sequence. A novel deletional mutation of the NIPBL gene has been identified, which has enriched its mutational spectrum and may facilitate further research into the genotype-phenotype correlation of CdLS."	"[Analysis of clinical manifestation and genetic mutations in two patients with Cornelia de Lange syndrome]. To detect potential mutations in two neonates suspected for Cornelia de Lange syndrome (CdLS). Peripheral blood samples from the neonates and their parents were collected and analyzed for CdLS-related genes using targeted sequence capture and next-generation sequencing. Suspected mutations were confirmed by direct Sanger sequencing. The neonates were found to respectively carry mutations c.7219C to T and p.D2339Lfs*4 of the NIPBL gene, among which the p.D2339Lfs*4 mutation has not been reported previously. No pathogenic mutation was found in other CdLS-related genes including NIPBL, SMC1A, SMC3, RAD21 and HDAC8. The c.7219C to T and p.D2339Lfs*4 mutations of the NIPBL gene probably account for the disease in both patients."	"Phosphorylation of SMC1A promotes hepatocellular carcinoma cell proliferation and migration. Structural maintenance of chromosomes protein 1A (SMC1A) has been implicated in the development of a variety of cancer types. However, its role in hepatocellular carcinoma remains unknown. In this study, we found that phosphorylated SMC1A was highly expressed in HepG2 and Bel7402 cells when compared with other cancer cell lines. Furthermore, SMC1A knockdown dramatically reduced HepG2 and Bel7402 cell proliferation and migration. Re-expressing phosphomimetic mutants S957DS966D significantly enhanced the proliferation and migration of SMC1A knockdown HepG2 and Bel7402 cells. In addition, phosphorylated SMC1A promotes hepatocellular carcinoma cells growth in vivo. Importantly, the expression of phosphorylated SMC1A was significantly higher in human hepatocellular carcinomacells when compared to peri-tumor benign hepatocytes, and its overexpression was significantly associated with worse prognostic outcomes. These observations suggest that phosphorylation of SMC1A is a vital event in tumorigenesis and disease progression in hepatocellular carcinoma thus necessitating further investigation."	"The suppression of DUSP5 expression correlates with paclitaxel resistance and poor prognosis in basal-like breast cancer. Basal-like breast cancer (BLBC) is resistant to endocrinotherapy and targeted therapy and new molecular therapies are needed for BLBC. In this study, we evaluated the role of DUSP1 and DUSP5, negative regulators of mitogen-activated protein kinase pathway, in the aggressiveness of BLBC. MDA-MB-231 cells were given paclitaxel (PTX) treatment and subsequently PTX resistant cell clones were established. Microarray analysis, real-time quantitative reverse transcription PCR (qRT-PCR), and online analysis of large cohorts of breast cancer patients were performed. The PTX resistant cells showed stronger cell proliferation ability by exhibiting the upregulation of CENPF, CDC6, MCM3, CLSPN and SMC1A expression. Furthermore, DUSP1 and DUSP5 expression was significantly downregulated in PTX resistant cells. In addition, in large breast cancer patients' database, both DUSP1 and DUSP5 correlated negatively with higher histological grade. DUSP1 low expression was obvious in HER2 positive and basal like while DUSP5 low expression was peculiar for basal like compared with other subtypes. Remarkably, low expression of DUSP5, but not DUSP1, was significantly correlated with poor survival of BLBC patients. In conclusion, our data suggest that loss of DUSP5 expression results in PTX resistance and tumor progression, providing a rationale for a therapeutic agent that restores DUSP5 in BLBC."	"Antioxidant treatment ameliorates phenotypic features of SMC1A-mutated Cornelia de Lange syndrome in vitro and in vivo. Cornelia de Lange syndrome (CdLS) is a rare disease characterized by cognitive impairment, multisystemic alterations and premature aging. Furthermore, CdLS cells display gene expression dysregulation and genomic instability. Here, we demonstrated that treatment with antioxidant drugs, such as ascorbic acid and riboceine, reduced the level of genomic instability and extended the in vitro lifespan of CdLS cell lines. We also found that antioxidant treatment partially rescued the phenotype of a zebrafish model of CdLS. Gene expression profiling showed that antioxidant drugs caused dysregulation of gene transcription; notably, a number of genes coding for the zinc finger (ZNF)-containing Krueppel-associated box (KRAB) protein domain (KRAB-ZNF) were found to be downregulated. Taken together, these data suggest that antioxidant drugs have the potential to ameliorate the developmental phenotype of CdLS."	"[NIPBL gene mutations in two children with Cornelia de Lange syndrome]. Both children (one boy and one girl) experienced disease onset in infancy and visited the hospital due to growth retardation. They had unusual facies including thick hair, arched and confluent eyebrows, long and curly eyelashes, short nose, and micrognathia. Patient 1 had congenital heart disease (atrial septal defect and pulmonary stenosis) and special dermatoglyph (a single palmar crease). Patient 2 had cleft palate and moderate-to-severe deafness. Clinical features suggested Cornelia de Lange syndrome in both children. High-throughput sequencing was used to detect the seven known pathogenic genes of Cornelia de Lange syndrome, i.e., the NIPBL, SMC1A, SMC3, HDAC8, RAD21, EP300, and ANKRD11 genes. Sanger sequencing was used to analyze and verify gene mutations. Both patients were found to have novel mutations in the NIPBL gene. One patient had a frameshift mutation in exon 45, c.7834dupA, which caused early termination of translation and produced truncated protein p.R2612fsX20. The other patient had a nonsense mutation, c.505C&gt;T, which caused a premature stop codon and produced truncated protein Q169X. Such mutations were not found in their parents or 50 unrelated healthy individuals."	"CRL7<sup>SMU1</sup> E3 ligase complex-driven H2B ubiquitylation functions in sister chromatid cohesion by regulating SMC1 expression. Cullin-RING-type E3 ligases (CRLs) control a broad range of biological processes by ubiquitylating numerous cellular substrates. However, the role of CRL E3 ligases in chromatid cohesion is unknown. In this study, we identified a new CRL-type E3 ligase (designated as CRL7<sup>SMU1</sup> complex) that has an essential role in the maintenance of chromatid cohesion. We demonstrate that SMU1, DDB1, CUL7 and RNF40 are integral components of this complex. SMU1, by acting as a substrate recognition module, binds to H2B and mediates monoubiquitylation at the lysine (K) residue K120 through CRL7<sup>SMU1</sup> E3 ligase complex. Depletion of CRL7<sup>SMU1</sup> leads to loss of H2B ubiquitylation at the SMC1a locus and, thus, subsequently compromised SMC1a expression in cells. Knockdown of CRL7<sup>SMU1</sup> components or loss of H2B ubiquitylation leads to defective sister chromatid cohesion, which is rescued by restoration of SMC1a expression. Together, our results unveil an important role of CRL7<sup>SMU1</sup> E3 ligase in promoting H2B ubiquitylation for maintenance of sister chromatid cohesion during mitosis.This article has an associated First Person interview with the first author of the paper."	"Clinical and genetic study of 20 patients from China with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a rare congenital syndrome with no racial difference. The objective of this study is to report the clinical characteristics and genetic study of 20 CdLS cases from China. This is an observational study. Suspected patients were referred for further confirmation, clinical treatment, and genetic testing under voluntary condition. Demographic data and family history, data of clinical manifestations including facial dysmorphism and developmental delay of each patient were collected. Chromosomal analysis and NIPBL/SMC1A/SMC3 gene mutational analysis were carried out by PCR, reverse transcription PCR direct sequencing in the probands, and SNP array to detect the genome-wide copy number variations. Twenty CdLS cases from China were included in this study. Facial dysmorphisms, feeding difficulties, and developmental delay were the major clinical manifestations. Seven patients underwent gene mutation tests. Both the SMC1A and SMC3 gene mutation tests were negative in all. A heterozygous mutation in exon 20 of the NIPBL gene in proband 2, and a heterozygous mutation in intron 38 of the NIPBL gene in proband 3 were found in 1 patient, and RT-PCR revealed a splicing mutation in exon 38, generating both normal transcript and an aberrant alternatively spliced transcript with exon 38 deletion. Clinical manifestations of CdLS patients from China are similar to those in the other countries. Heterozygous mutations of NIPBL gene were found."	"Molecular characterization of HDAC8 deletions in individuals with atypical Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a rare neurodevelopmental syndrome for which mutations in five causative genes that encode (SMC1A, SMC3, RAD21) or regulate (NIPBL, HDAC8) the cohesin complex, account for ~70% of cases. Herein we report on four female Subjects who were found to carry novel intragenic deletions in HDAC8. In one case, the deletion was found in mosaic state and it was determined to be present in ~38% of blood lymphocytes and in nearly all cells of a buccal sample. All deletions, for which parental blood samples were available, were shown to have arisen de novo. X-chromosome inactivation studies demonstrated marked skewing, suggesting strong selection against the mutated HDAC8 allele. Based on an investigation of the deletion breakpoints, we hypothesize that microhomology-mediated replicative mechanisms may be implicated in the formation of some of these rearrangements. This study broadens the mutational spectrum of HDAC8, provides the first description of a causative HDAC8 somatic mutation and increases the knowledge on possible mutational mechanisms underlying copy number variations in HDAC8. Moreover our findings highlight the clinical utility of considering copy number analysis in HDAC8 as well as the analysis on DNA from more than one tissue as an indispensable part of the routine molecular diagnosis of individuals with CdLS or CdLS-overlapping features."	"Regulation of the cohesin-loading factor NIPBL: Role of the lncRNA NIPBL-AS1 and identification of a distal enhancer element. Cohesin is crucial for genome stability, cell division, transcription and chromatin organization. Its functions critically depend on NIPBL, the cohesin-loader protein that is found to be mutated in &gt;60% of the cases of Cornelia de Lange syndrome (CdLS). Other mutations are described in the cohesin subunits SMC1A, RAD21, SMC3 and the HDAC8 protein. In 25-30% of CdLS cases no mutation in the known CdLS genes is detected. Until now, functional elements in the noncoding genome were not characterized in the molecular etiology of CdLS and therefore are excluded from mutation screening, although the impact of such mutations has now been recognized for a wide range of diseases. We have identified different elements of the noncoding genome involved in regulation of the NIPBL gene. NIPBL-AS1 is a long non-coding RNA transcribed upstream and antisense to NIPBL. By knockdown and transcription blocking experiments, we could show that not the NIPBL-AS1 gene product, but its actual transcription is important to regulate NIPBL expression levels. This reveals a possibility to boost the transcriptional activity of the NIPBL gene by interfering with the NIPBL-AS1 lncRNA. Further, we have identified a novel distal enhancer regulating both NIPBL and NIPBL-AS1. Deletion of the enhancer using CRISPR genome editing in HEK293T cells reduces expression of NIPBL, NIPBL-AS1 as well as genes found to be dysregulated in CdLS."	"Novel mosaic variants in two patients with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a dominantly inherited developmental disorder caused by mutations in genes that encode for either structural (SMC1A, SMC3, RAD21) or regulatory (NIPBL, HDAC8) subunits of the cohesin complex. NIPBL represents the major gene of the syndrome and heterozygous mutations can be identified in more than 65% of patients. Interestingly, large portions of these variants were described as somatic mosaicism and often escape standard molecular diagnostics using lymphocyte DNA. Here we discuss the role of somatic mosaicism in CdLS and describe two additional patients with NIPBL mosaicism detected by targeted gene panel or exome sequencing. In order to verify the next generation sequencing data, Sanger sequencing or pyrosequencing on DNA extracted from different tissues were applied. None of the pathogenic variants was originally detected by Sanger sequencing on blood DNA. Patient 1 displays an unusual combination of clinical features: he is cognitively only mildly affected, but shows severe limb reduction defects. Patient 2 presents with a moderate phenotype. Interestingly, Sanger sequencing analysis on fibroblast DNA of this patient did not detect the disease-causing variant previously observed on the same DNA sample by exome sequencing. Subsequent analyses could confirm the variants by Sanger sequencing on buccal mucosa DNA. Notably, this is the first report of a higher mutational load in buccal mucosa than in fibroblast cells of a CdLS patient. Detection of low-level mosaicism is of utmost importance for an accurate molecular diagnosis and a proper genetic counseling of patients with a clinical diagnosis of CdLS. Next-generation sequencing technologies greatly facilitate the detection of low-level mosaicism, which might otherwise remain undetected by conventional sequencing approaches."	"Cohesin mediates Esco2-dependent transcriptional regulation in a zebrafish regenerating fin model of Roberts Syndrome. Robert syndrome (RBS) and Cornelia de Lange syndrome (CdLS) are human developmental disorders characterized by craniofacial deformities, limb malformation and mental retardation. These birth defects are collectively termed cohesinopathies as both arise from mutations in cohesion genes. CdLS arises due to autosomal dominant mutations or haploinsufficiencies in cohesin subunits (SMC1A, SMC3 and RAD21) or cohesin auxiliary factors (NIPBL and HDAC8) that result in transcriptional dysregulation of developmental programs. RBS arises due to autosomal recessive mutations in cohesin auxiliary factor ESCO2, the gene that encodes an N-acetyltransferase which targets the SMC3 subunit of the cohesin complex. The mechanism that underlies RBS, however, remains unknown. A popular model states that RBS arises due to mitotic failure and loss of progenitor stem cells through apoptosis. Previous findings in the zebrafish regenerating fin, however, suggest that Esco2-knockdown results in transcription dysregulation, independent of apoptosis, similar to that observed in CdLS patients. Previously, we used the clinically relevant CX43 to demonstrate a transcriptional role for Esco2. CX43 is a gap junction gene conserved among all vertebrates that is required for direct cell-cell communication between adjacent cells such that cx43 mutations result in oculodentodigital dysplasia. Here, we show that morpholino-mediated knockdown of smc3 reduces cx43 expression and perturbs zebrafish bone and tissue regeneration similar to those previously reported for esco2 knockdown. Also similar to Esco2-dependent phenotypes, Smc3-dependent bone and tissue regeneration defects are rescued by transgenic Cx43 overexpression, suggesting that Smc3 and Esco2 cooperatively act to regulate cx43 transcription. In support of this model, chromatin immunoprecipitation assays reveal that Smc3 binds to a discrete region of the cx43 promoter, suggesting that Esco2 exerts transcriptional regulation of cx43 through modification of Smc3 bound to the cx43 promoter. These findings have the potential to unify RBS and CdLS as transcription-based mechanisms."	"Identification and analysis of the genetic causes in nine unrelated probands with syndromic craniosynostosis. Syndromic craniosynostosis is a group of multiple conditions with high heterogeneity, and many rare syndromes still remain to be characterized. To identify and analyze causative genetic variants in nine unrelated probands mainly manifested as syndromic craniosynostosis, we reviewed the relevant medical information of the patients and performed the whole exome sequencing, further verified with Sanger sequencing and parental background. Bioinformatics analysis was used to evaluate the potential deleterious or benign effect of each genetic variant through evolutionary conservation alignment, multi-lines of computer predication and the allele frequency in population dataset (control and patient). The Standards and guidelines from American College of Medical Genetics and Genomics was used to classify and interpret the pathogenicity for each genetic variant. All the nine probands were found to carry the possibly causative variants, among which three variants including two missense mutations (c.3385C&gt;T in IFT122 gene, c.3581A&gt;G in SMC1A gene) and a frameshift mutation (c.434dupA in TWIST1 gene) have never been reported in patients before. We suggested Cornelia de Lange syndrome caused by SMC1A variant is a neglected syndromic craniosynostosis. Our study not only expanded genotypic and phenotypic spectrum of the rare syndromes, but also confirmed that there existed an underlying genetic mechanism. We emphasized that deliberate selection of both the potential candidates and comprehensive detection methods for genetic analysis is important to increase the genetic diagnosis yield of syndromic craninosynostosis."	"Clinician's guide to genes associated with Rett-like phenotypes-Investigation of a Danish cohort and review of the literature. The differential diagnostics in Rett syndrome has evolved with the development of next generation sequencing-based techniques and many patients have been diagnosed with other syndromes or variants in newly described genes where the associated phenotype(s) is yet to be fully explored. The term Rett-like refers to phenotypes with distinct overlapping features of Rett syndrome where the clinical criteria are not completely fulfilled. In this study we have combined a review of Rett-like disorders with data from a Danish cohort of 35 patients with Rett-like phenotypes emphasizing the diagnostic overlap with Pitt-Hopkins syndrome, Cornelia de Lange syndrome with SMC1A variants, and epileptic encephalopathies, for example, due to STXBP1 variants. We also found a patient with a pathogenic variant in KCNB1, which has not been previously linked to a Rett-like phenotype. This study underlines the clinical and genetic heterogeneity of a Rett syndrome spectrum, and provides an overview of the Rett syndrome-related genes described to date, and hence serves as a guide for diagnosing patients with Rett-like phenotypes."	"The Cohesin Complex Is Necessary for Epidermal Progenitor Cell Function through Maintenance of Self-Renewal Genes. Adult stem and progenitor cells are critical for replenishing lost tissue due to injury or normal turnover. How these cells maintain self-renewal and sustain the tissue they populate are areas of active investigation. Here, we show that the cohesin complex, which has previously been implicated in regulating chromosome segregation and gene expression, is necessary to promote epidermal stem and progenitor cell self-renewal through cell-autonomous mechanisms. Cohesin binds to genomic sites associated with open chromatin, including DNase-I-hypersensitive sites, RNA polymerase II, and histone marks such as H3K27ac and H3K4me3. Reduced cohesin expression results in spontaneous epidermal differentiation due to loss of open chromatin structure and expression of key self-renewal genes. Our results demonstrate a prominent role for cohesin in modulating chromatin structure to allow for enforcement of a stem and progenitor cell gene expression program."	"Identification of potential key genes associated with diffuse large B-cell lymphoma based on microarray gene expression profiling. The study aimed to screen potential key genes, and their targeted miRNAs and transcription factors (TFs) that were related to diffuse large B-cell lymphoma (DLBCL), and explore potential therapeutic targets for the progression of DLBCL. Dataset GSE56315 extracted from human tonsils was downloaded from Gene Expression Omnibus. Limma package was used to identify differential expression genes (DEG) between DLBCL and normal human tonsils samples, and the function and pathway enrichment analyses were performed. Then, functional interaction (FI) networks analyses of DEGs were implemented, and modules were extracted. Additionally, DLBCL-related miRNAs were predicted based on miR2disease database. Thereafter, TF-target DEGs and miRNAs targeted genes were respectively obtained. Finally, the integrated network of TF-target-miRNA was constructed. A total of 4,495 DEGs were identified between DLBCL and NHT samples. Among them, 114 up-regulated DEGs were contained in 8 modules of FI network, while 189 down-regulated DEGs were contained in 12 sub-modules. In addition, most DEGs were enriched in the function of &quot;DNA binding&quot; and pathways of &quot;chemokine signaling pathway&quot;, &quot;phosphatidylinositol signaling system&quot; and &quot;RNA degradation&quot;. Moreover, 19 miRNAs related with DLBCL were downloaded from Mirwalk2. Furthermore, miRNAs of miR-21-5p, miR-155 and miR-17-5p, the TF of STAT1, and DEGs such as NUF2, CCR1, PIK3R1, SMC1A, FOXK1 and CNOT6L had high degrees in the integrated networks of TF-target-miRNA. DEGs like NUF2, CCR1, PIK3R1, SMC1A, FOXK1 and CNOT6L might be closely associated with the pathogenesis of DLBCL."	"MiR-9 Promotes Apoptosis Via Suppressing SMC1A Expression in GBM Cell Lines. Glioblastomas multiforme (GBM) is the most malignant brain cancer, which presented vast genomic variation with complicated pathologic mechanism. MicroRNA is a delicate post-transcriptional tuner of gene expression in the organisms by targeting and regulating protein coding genes. MiR-9 was reported as a significant biomarker for GBM patient prognosis and a key factor in regulation of GBM cancer stem cells. To explore the effect of miR-9 on GBM cell growth, we over expressed miR-9 in U87 and U251 cells. The cell viability decreased and apoptosis increased after miR-9 overexpression in these cells. To identify the target of miR-9, we scanned miR-9 binding site in the 3'UTRs region of expression SMC1A (structural maintenance of chromosomes 1A) genes and designed a fluorescent reporter assay to measure miR-9 binding to this region. Our results revealed that miR-9 binds to the 3'sUTR region of SMC1A and down-regulated SMC1A expression. Our results indicated that miR-9 was a potential therapeutic target for GBM through triggering apoptosis of cancer cells."	"Rare form of autosomal dominant familial Cornelia de Lange syndrome due to a novel duplication in SMC3. Clinical features are variable in patients with Cornelia de Lange syndrome (CdLS). Milder forms exist with structural maintenance of chromosomes 3 (SMC3) mutations. Inherited milder forms of CdLS are uncommon and may be missed if genetic testing is limited to Nipped-B-like protein (NIPBL) and SMC1A. Parental studies should be pursued if there is a history of learning disabilities and/or dysmorphic features."	"Impairment of Retinoic Acid Signaling in Cornelia de Lange Syndrome Fibroblasts. Cornelia de Lange syndrome (CdLS) is a rare genetic disorder affecting the neurodevelopment, gastrointestinal, musculoskeletal systems. CdLS is caused by mutations within NIPBL, SMC1A, SMC3, RAD21, and HDAC8 genes. These genes codify for the &quot;cohesin complex&quot; playing a role in chromatid adhesion, DNA repair and gene expression regulation. The aim of this study was to investigate retinoic acid (RA) signaling pathway, a master developmental regulator, in CdLS cells. Skin biopsies from CdLS patients and healthy controls were cultured and derived primary fibroblast cells were treated with RA or dimethyl sulfoxide (vehicle). After RA treatment, cells were harvested and RNA was isolated for quantitative real-time polymerase chain reaction experiments. We analyzed several components of RA metabolism in a human cell line of kidney fibroblasts (293T), in addition to fibroblasts collected from both NIPBL-mutated patients and healthy donors, with or without RA treatment. In all cases, ADH and RALDH1 gene expression was not affected by RA treatment, while CRABP1 was induced. CRABP2 was dramatically upregulated upon RA treatment in healthy donors but not in CdLS patients cells. We investigated if CdLS alterations are associated to perturbation of RA signaling. Cells derived from CdLS patients do not respond to RA signaling as efficiently as healthy controls. RA pathway alterations suggest a possible underlying mechanism for several cellular and developmental abnormalities associated with cohesin function. Birth Defects Research 109:1268-1276, 2017. © 2017 Wiley Periodicals, Inc."	"Connected Gene Communities Underlie Transcriptional Changes in Cornelia de Lange Syndrome. Cornelia de Lange syndrome (CdLS) is a complex multisystem developmental disorder caused by mutations in cohesin subunits and regulators. While its precise molecular mechanisms are not well defined, they point toward a global deregulation of the transcriptional gene expression program. Cohesin is associated with the boundaries of chromosome domains and with enhancer and promoter regions connecting the three-dimensional genome organization with transcriptional regulation. Here, we show that connected gene communities, structures emerging from the interactions of noncoding regulatory elements and genes in the three-dimensional chromosomal space, provide a molecular explanation for the pathoetiology of CdLS associated with mutations in the cohesin-loading factor NIPBL and the cohesin subunit SMC1A NIPBL and cohesin are important constituents of connected gene communities that are centrally positioned at noncoding regulatory elements. Accordingly, genes deregulated in CdLS are positioned within reach of NIPBL- and cohesin-occupied regions through promoter-promoter interactions. Our findings suggest a dynamic model where NIPBL loads cohesin to connect genes in communities, offering an explanation for the gene expression deregulation in the CdLS."	"Novel SMC1A variant and epilepsy of infancy with migrating focal seizures: Expansion of the phenotype. NA"	"Cornelia de Lange syndrome: Congenital heart disease in 149 patients. Cornelia de Lange syndrome (CdLS) is produced by mutations in genes that encode regulatory or structural proteins of the cohesin complex. Congenital heart disease (CHD) is not a major criterion of the disease, but it affects many individuals. The objective of this study was to study the incidence and type of CHD in patients with CdLS. Cardiological findings were evaluated in 149 patients with CdLS and their possible relationship with clinical and genetic variables. A percentage of 34.9 had CHD (septal defects 50%, pulmonary stenosis 27%, aortic coarctation 9.6%). The presence of CHD was related with neonatal hospitalisation (P=.04), hearing loss (P=.002), mortality (P=.09) and lower hyperactivity (P=.02), it being more frequent in HDAC8+ patients (60%), followed by NIPBL+ (33%) and SMC1A+ (28.5%). While septal defects predominate in NIPBL+, pulmonary stenosis is more common in HDAC8+. Patients with CdLS have a high incidence of CHD, which varies according to the affected gene, the most frequent findings being septal defects and pulmonary stenosis. Perform a cardiologic study in all these patients is suggested."	"Two-step ATP-driven opening of cohesin head. The cohesin ring is a protein complex composed of four core subunits: Smc1A, Smc3, Rad21 and Stag1/2. It is involved in chromosome segregation, DNA repair, chromatin organization and transcription regulation. Opening of the ring occurs at the &quot;head&quot; structure, formed of the ATPase domains of Smc1A and Smc3 and Rad21. We investigate the mechanisms of the cohesin ring opening using techniques of free molecular dynamics (MD), steered MD and quantum mechanics/molecular mechanics MD (QM/MM MD). The study allows the thorough analysis of the opening events at the atomic scale: i) ATP hydrolysis at the Smc1A site, evaluating the role of the carboxy-terminal domain of Rad21 in the process; ii) the activation of the Smc3 site potentially mediated by the movement of specific amino acids; and iii) opening of the head domains after the two ATP hydrolysis events. Our study suggests that the cohesin ring opening is triggered by a sequential activation of the ATP sites in which ATP hydrolysis at the Smc1A site induces ATPase activity at the Smc3 site. Our analysis also provides an explanation for the effect of pathogenic variants related to cohesinopathies and cancer."	"Successful Growth Hormone Therapy in Cornelia de Lange Syndrome. Cornelia de Lange syndrome (CdLS) is a both clinically and genetically heterogeneous syndrome. In its classical form, it is characterised by distinctive facial features, intra-uterine growth retardation, short stature, developmental delay, and anomalies in multiple organ systems. NIPBL, SMC1A, SMC3, RAD21 and HDAC8, all involved in the cohesin pathway, have been identified to cause CdLS. Growth hormone (GH) secretion has been reported as normal, and to our knowledge, there are no reports on the effect of recombinant human GH treatment in CdLS patients. We present a patient born small for gestational age with persistent severe growth retardation [height -3.4 standard deviation score (SDS)] and mild dysmorphic features, who was treated with GH from 4.3 years of age onward and was diagnosed 6 years later with CdLS using whole-exome sequencing. Treatment led to a height gain of 1.6 SDS over 8 years. Treatment was interrupted shortly due to high serum insulin-like growth factor-1 serum values. In conclusion, GH therapy may be effective and safe for short children with CdLS."	"Phenotypes and genotypes in individuals with SMC1A variants. SMC1A encodes one of the proteins of the cohesin complex. SMC1A variants are known to cause a phenotype resembling Cornelia de Lange syndrome (CdLS). Exome sequencing has allowed recognizing SMC1A variants in individuals with encephalopathy with epilepsy who do not resemble CdLS. We performed an international, interdisciplinary study on 51 individuals with SMC1A variants for physical and behavioral characteristics, and compare results to those in 67 individuals with NIPBL variants. For the Netherlands all known individuals with SMC1A variants were studied, both with and without CdLS phenotype. Individuals with SMC1A variants can resemble CdLS, but manifestations are less marked compared to individuals with NIPBL variants: growth is less disturbed, facial signs are less marked (except for periocular signs and thin upper vermillion), there are no major limb anomalies, and they have a higher level of cognitive and adaptive functioning. Self-injurious behavior is more frequent and more severe in the NIPBL group. In the Dutch group 5 of 13 individuals (all females) had a phenotype that shows a remarkable resemblance to Rett syndrome: epileptic encephalopathy, severe or profound intellectual disability, stereotypic movements, and (in some) regression. Their missense, nonsense, and frameshift mutations are evenly spread over the gene. We conclude that SMC1A variants can result in a phenotype resembling CdLS and a phenotype resembling Rett syndrome. Resemblances between the SMC1A group and the NIPBL group suggest that a disturbed cohesin function contributes to the phenotype, but differences between these groups may also be explained by other underlying mechanisms such as moonlighting of the cohesin genes."	"High level of miR-196b at newly diagnosed pediatric acute myeloid leukemia predicts a poor outcome. Differential expression of microRNAs (miRNAs) has been implicated in leukemogenesis. We investigate the expression pattern of miR-196b. Using quantitative real-time PCR (qRT-PCR), we detected the expression of miR-196b and its correlated genes (SMC1A/MLH1) in initial pediatric AML. A significant association was observed between overexpression of miR-196b and inferior overall survival of pediatric AML (Log Rank P&lt;0.0001). AML M4/5 subtype, high white blood cell (WBC) count at presentation, MLL rearrangement, or FLT3-ITD mutation at diagnosis and non-remission group after the first induction chemotherapy possessed higher miR-196b expression. Furthermore, a positive relationship was found between the expression of miR-196b and SMC1A/MLH1 (Spearman's r=0.37 and 0.44, P=0.001 and &lt;0.0001, respectively). Taken together, these findings suggest that differentially high expression of miR-196b in diagnostic marrow samples of pediatric AML is associated with unfavorable outcome, and miR-196b potentially can be a novel biomarker for the diagnosis, prognosis and treatment in pediatric AML."	"EBV-Negative Monomorphic B-Cell Posttransplant Lymphoproliferative Disorder with Marked Morphologic Pleomorphism and Pathogenic Mutations in ASXL1, BCOR, CDKN2A, NF1, and TP53. Posttransplant lymphoproliferative disorders (PTLDs) are a diverse group of lymphoid or plasmacytic proliferations frequently driven by Epstein-Barr virus (EBV). EBV-negative PTLDs appear to represent a distinct entity. This report describes an unusual case of a 33-year-old woman that developed a monomorphic EBV-negative PTLD consistent with diffuse large B-cell lymphoma (DLBCL) 13 years after heart-lung transplant. Histological examination revealed marked pleomorphism of the malignant cells including nodular areas reminiscent of classical Hodgkin lymphoma (cHL) with abundant large, bizarre Hodgkin-like cells. By immunostaining, the malignant cells were immunoreactive for CD45, CD20, CD79a, PAX5, BCL6, MUM1, and p53 and negative for CD15, CD30, latent membrane protein 1 (LMP1), and EBV-encoded RNA (EBER). Flow cytometry demonstrated lambda light chain restricted CD5 and CD10 negative B-cells. Fluorescence in situ hybridization studies (FISH) were negative for cMYC, BCL2, and BCL6 rearrangements but showed deletion of TP53 and monosomy of chromosome 17. Next-generation sequencing studies (NGS) revealed numerous genetic alterations including 6 pathogenic mutations in ASXL1, BCOR, CDKN2A, NF1, and TP53(x2) genes and 30 variants of unknown significance (VOUS) in ABL1, ASXL1, ATM, BCOR, BCORL1, BRNIP3, CDH2, CDKN2A, DNMT3A, ETV6, EZH2, FBXW7, KIT, NF1, RUNX1, SETPB1, SF1, SMC1A, STAG2, TET2, TP53, and U2AF2."	"Genotype-phenotype correlations in Cornelia de Lange syndrome: Behavioral characteristics and changes with age. Cornelia de Lange syndrome (CdLS) is a multisystem genetic disorder associated with unusual facial features, limb abnormalities, a wide range of health conditions, and intellectual disability. Mutations in five genes that encode (SMC1A, SMC3, RAD21) or regulate (NIPBL, HDAC8) the cohesin complex have been identified in up to 70% of individuals. Genetic cause remains unknown for a proportion of individuals. There is substantial heterogeneity in all aspects of CdLS but very little is known about what predicts phenotypic heterogeneity. In this study, we evaluated genotype-phenotype associations in 34 individuals with CdLS. Participants with NIPBL mutations had significantly lower self help skills and were less likely to have verbal skills relative to those who were negative for the NIPBL mutation. No significant differences were identified between the groups in relation to repetitive behavior, mood, interest and pleasure, challenging behavior, activity, impulsivity, and characteristics of autism spectrum disorder whilst controlling differences in self help skills. Significant correlations indicating lower mood, interest and pleasure, and increased insistence on sameness with older age were identified for those who were NIPBL mutation positive. The findings suggest similarities in the behavioral phenotype between those with and without the NIPBL mutation once differences in self help skills are controlled for. However, there may be subtle differences in the developmental trajectory of these behaviors according to genetic mutation status in CdLS."	"ERCC1-XPF cooperates with CTCF and cohesin to facilitate the developmental silencing of imprinted genes. Inborn defects in DNA repair are associated with complex developmental disorders whose causal mechanisms are poorly understood. Using an in vivo biotinylation tagging approach in mice, we show that the nucleotide excision repair (NER) structure-specific endonuclease ERCC1-XPF complex interacts with the insulator binding protein CTCF, the cohesin subunits SMC1A and SMC3 and with MBD2; the factors co-localize with ATRX at the promoters and control regions (ICRs) of imprinted genes during postnatal hepatic development. Loss of Ercc1 or exposure to MMC triggers the localization of CTCF to heterochromatin, the dissociation of the CTCF-cohesin complex and ATRX from promoters and ICRs, altered histone marks and the aberrant developmental expression of imprinted genes without altering DNA methylation. We propose that ERCC1-XPF cooperates with CTCF and cohesin to facilitate the developmental silencing of imprinted genes and that persistent DNA damage triggers chromatin changes that affect gene expression programs associated with NER disorders."	"De novo loss-of-function variants in STAG2 are associated with developmental delay, microcephaly, and congenital anomalies. The cohesin complex is an evolutionarily conserved multi-subunit protein complex which regulates sister chromatid cohesion during mitosis and meiosis. Additionally, the cohesin complex regulates DNA replication, DNA repair, and transcription. The core of the complex consists of four subunits: SMC1A, SMC3, RAD21, and STAG1/2. Loss-of-function mutations in many of these proteins have been implicated in human developmental disorders collectively termed &quot;cohesinopathies.&quot; Through clinical exome sequencing (CES) of an 8-year-old girl with a clinical history of global developmental delay, microcephaly, microtia with hearing loss, language delay, ADHD, and dysmorphic features, we describe a heterozygous de novo variant (c.205C&gt;T; p.(Arg69*)) in the integral cohesin structural protein, STAG2. This variant is associated with decreased STAG2 protein expression. The analyses of metaphase spreads did not exhibit premature sister chromatid separation; however, delayed sister chromatid cohesion was observed. To further support the pathogenicity of STAG2 variants, we identified two additional female cases from the DECIPHER research database with mutations in STAG2 and phenotypes similar to our patient. Interestingly, the clinical features of these three cases are remarkably similar to those observed in other well-established cohesinopathies. Herein, we suggest that STAG2 is a dosage-sensitive gene and that heterozygous loss-of-function variants lead to a cohesinopathy."	"Heterozygous truncation mutations of the SMC1A gene cause a severe early onset epilepsy with cluster seizures in females: Detailed phenotyping of 10 new cases. The phenotype of seizure clustering with febrile illnesses in infancy/early childhood is well recognized. To date the only genetic epilepsy consistently associated with this phenotype is PCDH19, an X-linked disorder restricted to females, and males with mosaicism. The SMC1A gene, which encodes a structural component of the cohesin complex is also located on the X chromosome. Missense variants and small in-frame deletions of SMC1A cause approximately 5% of Cornelia de Lange Syndrome (CdLS). Recently, protein truncating mutations in SMC1A have been reported in five females, all of whom have been affected by a drug-resistant epilepsy, and severe developmental impairment. Our objective was to further delineate the phenotype of SMC1A truncation. Female cases with de novo truncation mutations in SMC1A were identified from the Deciphering Developmental Disorders (DDD) study (n = 8), from postmortem testing of an affected twin (n = 1), and from clinical testing with an epilepsy gene panel (n = 1). Detailed information on the phenotype in each case was obtained. Ten cases with heterozygous de novo mutations in the SMC1A gene are presented. All 10 mutations identified are predicted to result in premature truncation of the SMC1A protein. All cases are female, and none had a clinical diagnosis of CdLS. They presented with onset of epileptic seizures between &lt;4 weeks and 28 months of age. In the majority of cases, a marked preponderance for seizures to occur in clusters was noted. Seizure clusters were associated with developmental regression. Moderate or severe developmental impairment was apparent in all cases. Truncation mutations in SMC1A cause a severe epilepsy phenotype with cluster seizures in females. These mutations are likely to be nonviable in males."	"Coexisting and cooperating mutations in NPM1-mutated acute myeloid leukemia. NPM1 insertion mutations represent a common recurrent genetic abnormality in acute myeloid leukemia (AML) patients. The frequency of these mutations varies from approximately 30% overall up to 50% in patients with a normal karyotype. Several recent studies have exploited advances in massively parallel sequencing technology to shed light on the complex genomic landscape of AML. We hypothesize that variant allele fraction (VAF) data derived from massively parallel sequencing studies may provide further insights into the clonal architecture and pathogenesis of NPM1-driven leukemogenesis. Diagnostic peripheral blood or bone marrow samples from NPM1-mutated AML patients (n=120) were subjected to targeted sequencing using a panel of fifty-seven genes known to be commonly mutated in myeloid malignancies. NPM1 mutations were always accompanied by additional mutations and NPM1 had the highest VAF in only one case. Nearly all NPM1-mutated AML patients showed concurrent mutations in genes involved in regulation of DNA methylation (DNMT3A, TET2, IDH1, IDH2), RNA splicing (SRSF2, SF3B1), or in the cohesin complex (RAD21, SMC1A, SMC3, STAG2). Mutations in these genes had higher median VAFs that were higher (40% or greater) than the co-existing NPM1 mutations (median VAF 16.8%). Mutations associated with cell signaling pathways (FLT3, NRAS, and PTPN11) are also frequently encountered in NPM1-mutated AML cases, but had relatively low VAFs (7.0-11.9%). No cases of NPM1-mutated AML with a concurrent IDH2<sup>R172</sup> mutation were observed, suggesting that these variants are mutually exclusive. Overall, these data suggest that NPM1 mutations are a secondary or late event in the pathogenesis of AML and are preceded by founder mutations in genes that may be associated with recently described preclinical states such as clonal hematopoiesis of indeterminate potential or clonal cytopenias of undetermined significance."	"ASXL1 interacts with the cohesin complex to maintain chromatid separation and gene expression for normal hematopoiesis. ASXL1 is frequently mutated in a spectrum of myeloid malignancies with poor prognosis. Loss of Asxl1 leads to myelodysplastic syndrome-like disease in mice; however, the underlying molecular mechanisms remain unclear. We report that ASXL1 interacts with the cohesin complex, which has been shown to guide sister chromatid segregation and regulate gene expression. Loss of Asxl1 impairs the cohesin function, as reflected by an impaired telophase chromatid disjunction in hematopoietic cells. Chromatin immunoprecipitation followed by DNA sequencing data revealed that ASXL1, RAD21, and SMC1A share 93% of genomic binding sites at promoter regions in Lin<sup>-</sup>cKit<sup>+</sup> (LK) cells. We have shown that loss of Asxl1 reduces the genome binding of RAD21 and SMC1A and alters the expression of ASXL1/cohesin target genes in LK cells. Our study underscores the ASXL1-cohesin interaction as a novel means to maintain normal sister chromatid separation and regulate gene expression in hematopoietic cells."	"Novel findings of left ventricular non-compaction cardiomyopathy, microform cleft lip and poor vision in patient with SMC1A-associated Cornelia de Lange syndrome. Relatively few patients with Cornelia de Lange syndrome (CdLS) due to SMC1A mutation have been reported, limiting understanding of the full extent of the phenotype. Compared to children with classic NIPBL-associated CdLS, patients with SMC1A-associated CdLS have a milder physical phenotype with prominent intellectual disability, high rate of cleft palate and absence of limb reductions. We present a patient with SMC1A-associated CdLS who had typical features including developmental delay, seizure disorder, feeding difficulties, hirsutism, and cleft palate. She also was found to have three novel features: (i) left ventricular non-compaction (LVNC) cardiomyopathy; (ii) microform cleft lip; and (iii) severe hyperopia and astigmatism. These features have implications regarding potential insight into the pathogenesis of the disorder, screening, and medical management. Hypertrophic cardiomyopathy has previously been reported in SMC1A-associated CdLS, but to our knowledge this is the first reported child with LVNC. Previous reports have included children with isolated clefts of the palate without involvement of the lip. When cleft palate alone is associated with a disorder, the underlying pathophysiology for clefting is sometimes secondary due to mechanical blocking of the fusion of the palatal shelves with the developing tongue. The presence of microform cleft lip in this patient suggests that the pathophysiology of clefting in SMC1A is primary rather than secondary. Few studies report ophthalmologic findings specific to SMC1A. Based on these findings, LVNC cardiomyopathy and cleft lip should be considered features of SMC1A-associated CdLS. All patients should receive echocardiogram and undergo thorough ophthalmologic evaluation as part of routine CdLS care. © 2016 Wiley Periodicals, Inc."	"Jmjd2c facilitates the assembly of essential enhancer-protein complexes at the onset of embryonic stem cell differentiation. Jmjd2 H3K9 demethylases cooperate in promoting mouse embryonic stem cell (ESC) identity. However, little is known about their importance at the exit of ESC pluripotency. Here, we reveal that Jmjd2c facilitates this process by stabilising the assembly of mediator-cohesin complexes at lineage-specific enhancers. Functionally, we show that Jmjd2c is required in ESCs to initiate appropriate gene expression programs upon somatic multi-lineage differentiation. In the absence of Jmjd2c, differentiation is stalled at an early post-implantation epiblast-like stage, while Jmjd2c-knockout ESCs remain capable of forming extra-embryonic endoderm derivatives. Dissection of the underlying molecular basis revealed that Jmjd2c is re-distributed to lineage-specific enhancers during ESC priming for differentiation. Interestingly, Jmjd2c-bound enhancers are co-occupied by the H3K9-methyltransferase G9a (also known as Ehmt2), independently of its H3K9-modifying activity. Loss of Jmjd2c abrogates G9a recruitment and further destabilises loading of the mediator and cohesin components Med1 and Smc1a at newly activated and poised enhancers in ESC-derived epiblast-like cells. These findings unveil Jmjd2c and G9a as novel enhancer-associated factors, and implicate Jmjd2c as a molecular scaffold for the assembly of essential enhancer-protein complexes with an impact on timely gene activation."	"Integrated analysis identified an intestinal-like and a diffuse-like gene sets that predict gastric cancer outcome. The two major histological types of gastric cancer, intestinal and diffuse subtypes, have distinct epidemiological and pathophysiological features and were also suggested to be of diverse clinical outcomes. Although the gene expression spectrum of gastric cancer subtypes has been reported by previous studies, its linkage with gastric cancer clinical features and outcomes remains elusive. We investigated large-sample online gastric cancer datasets for seeking genes correlated with the clinical diversities between gastric cancer intestinal and diffuse subtypes. Genes differently expressed between the two subtypes were assessed by multiple statistical analysis and were testified on cellular level by quantitative RT-PCR. Related genes were combined to generate a risk signature, and their mutual linkages were also explored. Among genes overexpressed in intestinal subtype, ATPIF1, PRDX2, PRKAR2A, and SMC1A were correlated with positive prognosis. Among genes overexpressed in diffuse subtype, DTNA, GPR161, IDS, RHOQ, and TSHZ2 were correlated with negative prognosis. These nine genes were all novel independent prognostic factors. When used in combination as signatures, these two gene sets displayed strong efficacy for prediction of the prognosis and clinical variables in gastric and colorectal cancer. Hence, these two genes sets were respectively defined as the favorable intestinal-like and adverse diffuse-like gene sets. We identified nine novel genes correlated with the clinical diversity between the intestinal and diffuse subtypes of gastric cancer. The malignant changes from the intestinal to diffuse subtype might be due to the reduction of the four intestinal-like genes, as well as the elevation of the five diffuse-like genes."	"SMC1A recruits tumor-associated-fibroblasts (TAFs) and promotes colorectal cancer metastasis. Tumor-associated-fibroblasts (TAFs) are the most important host cells in the stroma and take part in extracellular matrix construction and cancer colony development. During cancer colonization, seed cells from primary tumor can reconstruct the microenvironment by recruiting circulating cancer cells and TAFs to the metastasis site. Previous studies have established that SMC1A, a subunit of cohesin, is an important trigger signal for liver metastasis in colorectal cancer. We investigated the particular effects as well as the underlying mechanism of SMC1A on TAFs recruitment during liver metastasis of colorectal cancer. Here, We found that: first, the high expression of SMC1A in colorectal cancer cells promotes the invasiveness and the viability of these cells by recruiting circulating TAFs, facilitating early tumor construction and tumorigenesis; second, different expression levels of SMC1A influenced the reformation of fibroblasts, which assisted tumorigenesis, and third, expression of SMC1A stimulated the secretion of the inflammatory mediators of TNF-α and IL-1β, and up-regulated the transcriptional expression of MMP2 and VEGF-β, both of which were involved in the tumor-related gene pathway."	"SMC1A promotes growth and migration of prostate cancer in vitro and in vivo. Structural maintenance of chromosome 1 alpha (SMC1A) gene has been reported to be related to tumor development in some types of human cancers. However, the misregulation of SMC1A and its functions in castration-resistant prostate cancer (CRPC) have not been well understood. In the present study, we found that SMC1A was elevated in androgen-independent PCa cell lines PC-3 and DU-145 compared to androgen sensitive LNCap and 22RV1 cells by qPCR and western blot assay. Knockdown of SMC1A inhibited cell growth, colony formation and cell migration abilities of PC-3 and DU145 cells by MTT, colony formation and transwell assays, and affected cell cycle progression in PC-3 and DU145 cells by flow cytometry. Moreover, SMC1A knockdown significantly reduced tumor growth in vivo in a nude mouse model. Additionally, we also found that the expression of SMC1A gene was higher in prostate cancer tissues than in the adjacent normal tissues by immunohistochemical staining, and was positively correlated to tumor metastasis and recurrence by Oncomine database mining. Taken together, the present study indicates that SMC1A may play an important role in malignant transformation of PCa under conditions of androgen deprivation and act as a new target for PCa diagnosis and treatment."	"Structural aspects of HDAC8 mechanism and dysfunction in Cornelia de Lange syndrome spectrum disorders. Cornelia de Lange Syndrome (CdLS) encompasses a broad spectrum of phenotypes characterized by distinctive craniofacial abnormalities, limb malformations, growth retardation, and intellectual disability. CdLS spectrum disorders are referred to as cohesinopathies, with ∼70% of patients having a mutation in a gene encoding a core cohesin protein (SMC1A, SMC3, or RAD21) or a cohesin regulatory protein (NIPBL or HDAC8). Notably, the regulatory function of HDAC8 in cohesin biology has only recently been discovered. This Zn<sup>2+</sup> -dependent hydrolase catalyzes the deacetylation of SMC3, a necessary step for cohesin recycling during the cell cycle. To date, 23 different missense mutants in the gene encoding HDAC8 have been identified in children with developmental features that overlap those of CdLS. Enzymological, biophysical, and structural studies of CdLS HDAC8 protein mutants have yielded critical insight on compromised catalysis in vitro. Most CdLS HDAC8 mutations trigger structural changes that directly or indirectly impact substrate binding and catalysis. Additionally, several mutations significantly compromise protein thermostability. Intriguingly, catalytic activity in many HDAC8 mutants can be partially or fully restored by an N-acylthiourea activator, suggesting a plausible strategy for the chemical rescue of compromised HDAC8 catalysis in vivo."	"De novo loss-of-function mutations in X-linked SMC1A cause severe ID and therapy-resistant epilepsy in females: expanding the phenotypic spectrum. De novo missense mutations and in-frame coding deletions in the X-linked gene SMC1A (structural maintenance of chromosomes 1A), encoding part of the cohesin complex, are known to cause Cornelia de Lange syndrome in both males and females. For a long time, loss-of-function (LoF) mutations in SMC1A were considered incompatible with life, as such mutations had not been reported in neither male nor female patients. However, recently, the authors and others reported LoF mutations in females with intellectual disability (ID) and epilepsy. Here we present the detailed phenotype of two females with de novo LoF mutations in SMC1A, including a de novo mutation of single base deletion [c.2364del, p.(Asn788Lysfs*10)], predicted to result in a frameshift, and a de novo deletion of exon 16, resulting in an out-of-frame mRNA splice product [p.(Leu808Argfs*6)]. By combining our patients with the other recently reported females carrying SMC1A LoF mutations, we ascertained a phenotypic spectrum of (severe) ID, therapy-resistant epilepsy, absence/delay of speech, hypotonia and small hands and feet. Our data show the existence of a novel phenotypic entity - distinct from CdLS - and caused by de novo SMC1A LoF mutations."	"Whole Chromosome Instability induces senescence and promotes SASP. Age-related accumulation of ploidy changes is associated with decreased expression of genes controlling chromosome segregation and cohesin functions. To determine the consequences of whole chromosome instability (W-CIN) we down-regulated the spindle assembly checkpoint component BUB1 and the mitotic cohesin SMC1A, and used four-color-interphase-FISH coupled with BrdU incorporation and analyses of senescence features to reveal the fate of W-CIN cells. We observed significant correlations between levels of not-diploid cells and senescence-associated features (SAFs). W-CIN induced DNA double strand breaks and elevated oxidative stress, but caused low apoptosis. SAFs of W-CIN cells were remarkably similar to those induced by replicative senescence but occurred in only 13 days versus 4 months. Cultures enriched with not-diploid cells acquired a senescence-associated secretory phenotype (SASP) characterized by IL1B, CXCL8, CCL2, TNF, CCL27 and other pro-inflammatory factors including a novel SASP component CLEC11A. These findings suggest that W-CIN triggers premature senescence, presumably to prevent the propagation of cells with an abnormal DNA content. Cells deviating from diploidy have the ability to communicate with their microenvironment by secretion of an array of signaling factors. Our results suggest that aneuploid cells that accumulate during aging in some mammalian tissues potentially contribute to age-related pathologies and inflammation through SASP secretion."	"Mutations of myelodysplastic syndromes (MDS): An update. The plethora of knowledge gained on myelodysplastic syndromes (MDS), a heterogeneous pre-malignant disorder of hematopoietic stem cells, through sequencing of several pathway genes has unveiled molecular pathogenesis and its progression to AML. Evolution of phenotypic classification and risk-stratification based on peripheral cytopenias and blast count has moved to five-tier risk-groups solely concerning chromosomal aberrations. Increased frequency of complex abnormalities, which is associated with genetic instability, defines the subgroup of worst prognosis in MDS. However, the independent effect of monosomal karyotype remains controversial. Recent discoveries on mutations in RNA-splicing machinery (SF3B1, SRSF2, ZRSR2, U2AF1, U2AF2); DNA methylation (TET2, DNMT3A, IDH1/2); chromatin modification (ASXL1, EZH2); transcription factor (TP53, RUNX1); signal transduction/kinases (FLT3, JAK2); RAS pathway (KRAS, NRAS, CBL, NF1, PTPN11); cohesin complex (STAG2, CTCF, SMC1A, RAD21); DNA repair (ATM, BRCC3, DLRE1C, FANCL); and other pathway genes have given insights into the independent effects and interaction of co-occurrence of mutations on disease-phenotype. RNA-splicing and DNA methylation mutations appeared to occur early and are reported as 'founder' mutations in over 50% MDS patients. TET2 mutation, through altered DNA methylation, has been found to have independent prognostic response to hypomethylating agents. Moreover, presence of DNMT3A, TET2 and ASXL1 mutations in normal elderly individuals forms the basis of understanding that accumulation of somatic mutations may not cause direct disease-development; however, cooperation with other mutations in the genes that are frequently mutated in myeloid and other hematopoietic cancers might result in clonal expansion through self-renewal and/or proliferation of hematopoietic stem cells. Identification of small molecules as inhibitors of epigenetic mutations has opened avenues for tailoring targeted drug development. The recommendations of a Clinical Advisory Committee is being considered by WHO for a revised classification of risk-groups of MDS, which is likely to be published in mid 2016, based on the new developments and discoveries of gene mutations."	"miR-638 suppresses DNA damage repair by targeting SMC1A expression in terminally differentiated cells. The reduction of DNA damage repair capacity in terminally differentiated cells may be involved in sensitivity to cancer chemotherapy drugs; however, the underlying molecular mechanism is still not fully understood. Herein, we evaluated the role of miR-638 in the regulation of DNA damage repair in terminally differentiated cells. Our results show that miR-638 expression was up-regulated during cellular terminal differentiation and involved in mediating DNA damage repair processes. Results from a luciferase reporting experiment show that structural maintenance of chromosomes (SMC)1A was a potential target of miR-638; this was verified by western blot assays during cell differentiation and DNA damage induction. Overexpression of miR-638 enhanced the sensitivity of cancer cells to cisplatin, thus reducing cell viability in response to chemotherapy drug treatment. Furthermore, miR-638 overexpression affected DNA damage repair processes by interfering with the recruitment of the DNA damage repair-related protein, γH2AX, to DNA break sites. These findings indicate that miR-638 might act as a sensitizer in cancer chemotherapy and accompany chemotherapy drugs to enhance chemotherapeutic efficacy and to improve the chance of recovery from cancer."	"Bisphenol A-Induced Ovotoxicity Involves DNA Damage Induction to Which the Ovary Mounts a Protective Response Indicated by Increased Expression of Proteins Involved in DNA Repair and Xenobiotic Biotransformation. Bisphenol A (BPA) is an endocrine disrupting chemical with ubiquitous human exposure. BPA causes primordial follicle loss and DNA damage in germ cells, thus we hypothesized that BPA induces ovarian DNA damage, thereby precipitating follicle loss. We also anticipated that the ovary activates DNA repair and xenobiotic biotransformation to minimize oocyte damage and/or, activate cell death signaling to deplete follicles. Postnatal day 4 F344 rat ovaries were cultured in medium containing vehicle control (1% dimethylsulfoxide [DMSO]) ± BPA (440 µM) for 2-8 days. BPA reduced (P &lt; 0.05) small primary, large primary and secondary follicle numbers after 2 days, followed by a reduction (P &lt; .05) in primordial follicle numbers after 4 days. Phosphorylated H2AX (γH2AX) and Ataxia-telangiectasia mutated (ATM), markers of DNA double-strand breaks, were increased (P &lt; .05) in abundance prior to observed follicle loss. DNA repair genes (Atm, Prkdc, Xrcc6, Brca1, Mre11a, Rad50, and Smc1a) were increased (P &lt; .05) after 1 day of BPA exposure. mRNA encoding Meh, Gstm, c-kit, Kitlg, and Akt were increased (P &lt; .05), as was MEH, AKT, pAKT, Jun N-terminal kinase, and P53 protein abundance, while GST isoforms pi and Nuclear factor erythroid-related factor 2 proteins were decreased (P &lt; .05) by BPA exposure. These data demonstrate the dynamic ovarian response to BPA exposure, which indicates that BPA, via biotransformation, may be converted to a DNA alkylating agent, causing ovarian DNA damage, to which the ovary mounts a protective response and further our knowledge on the biological impacts of BPA on the female germline."	"Cohesin mutations in human cancer. Cohesin is a highly-conserved protein complex that plays important roles in sister chromatid cohesion, chromatin structure, gene expression, and DNA repair. In humans, cohesin is a ubiquitously expressed, multi-subunit protein complex composed of core subunits SMC1A, SMC3, RAD21, STAG1/2 and regulatory subunits WAPL, PDS5A/B, CDCA5, NIPBL, and MAU2. Recent studies have demonstrated that genes encoding cohesin subunits are somatically mutated in a wide range of human cancers. STAG2 is the most commonly mutated subunit, and in a recent analysis was identified as one of only 12 genes that are significantly mutated in four or more cancer types. In this review we summarize the findings reported to date and comment on potential functional implications of cohesin mutation in the pathogenesis of human cancer."	"Special cases in Cornelia de Lange syndrome: The Spanish experience. Cornelia de Lange Syndrome (CdLS) is an autosomal dominant (NIPBL, SMC3, and RAD21) or X-linked (SMC1A and HDAC8) disorder, characterized by distinctive craniofacial appearance, growth retardation, intellectual disability, and limb anomalies. In 2005, the Spanish CdLS Reference Center was started and now we have more than 270 cases in our database. In this special issue, we describe some of the unique or atypical patients studied by our group, whose clinical features have contributed to the expansion of the CdLS classical phenotype, helping clinicians to diagnose it. We include the case of a male with unilateral tibial hypoplasia and peroneal agenesis who had a mutation in NIPBL; we also describe one patient with a mutation in NIPBL and somatic mosaicism identified by new generation sequencing techniques; we also include one patient with CdLS and Turner syndrome; and last, an interesting patient with a duplication of the SMC1A gene. Finally, we make a short review of the splicing mutations we have found in NIPBL regarding the new knowledge on the physiological variants of the gene. © 2016 Wiley Periodicals, Inc."	"Identification of Intellectual Disability Genes in Female Patients with a Skewed X-Inactivation Pattern. Intellectual disability (ID) is a heterogeneous disorder with an unknown molecular etiology in many cases. Previously, X-linked ID (XLID) studies focused on males because of the hemizygous state of their X chromosome. Carrier females are generally unaffected because of the presence of a second normal allele, or inactivation of the mutant X chromosome in most of their cells (skewing). However, in female ID patients, we hypothesized that the presence of skewing of X-inactivation would be an indicator for an X chromosomal ID cause. We analyzed the X-inactivation patterns of 288 females with ID, and found that 22 (7.6%) had extreme skewing (&gt;90%), which is significantly higher than observed in the general population (3.6%; P = 0.029). Whole-exome sequencing of 19 females with extreme skewing revealed causal variants in six females in the XLID genes DDX3X, NHS, WDR45, MECP2, and SMC1A. Interestingly, variants in genes escaping X-inactivation presumably cause both XLID and skewing of X-inactivation in three of these patients. Moreover, variants likely accounting for skewing only were detected in MED12, HDAC8, and TAF9B. All tested candidate causative variants were de novo events. Hence, extreme skewing is a good indicator for the presence of X-linked variants in female patients."	"NIPBL expression levels in CdLS probands as a predictor of mutation type and phenotypic severity. Cornelia de Lange syndrome (CdLS) is a rare, genetically heterogeneous multisystem developmental disorder with a high degree of variability in its clinical presentation. Approximately 65% of probands harbor mutations in genes that encode core components (SMC1A, SMC3, and RAD21) or regulators (NIPBL, HDAC8) of the cohesin complex, of which mutations in NIPBL are the most common. Cohesin plays a canonical role in sister chromatid cohesion during cell division and non-canonical roles in DNA repair, stem cell maintenance and differentiation, and regulation of gene expression. Disruption of the latter role seems to be the major contributor to the underlying molecular pathogenesis of CdLS. NIPBL is required for loading and unloading the cohesin complex onto chromosomes. The expression levels of NIPBL itself appear to be tightly regulated and highly evolutionarily conserved. Droplet digital PCR was used to quantify NIPBL mRNA expression levels with high precision from a cohort of 37 samples (NIPBL, SMC1A, SMC3, and HDAC8 mutation positive probands and negative control). Probands with severe forms of CdLS or severe mutation types were found to have lower levels of NIPBL in comparison to phenotypically milder patients and controls. Levels of NIPBL also correlated with the presence of mutations in different CdLS-causing genes. The data suggests that NIPBL levels are closely correlated with the severity of CdLS and with specific causative genes and types of mutations. ddPCR may provide a tool to assist in diagnostic approaches to CdLS, for genetic counseling and prognosis, and for monitoring potential therapeutic modalities in the future. © 2016 Wiley Periodicals, Inc."	"Molecular and Cellular Mechanisms of Myelodysplastic Syndrome: Implications on Targeted Therapy. Myelodysplastic syndrome (MDS) is a group of heterogeneous clonal hematopoietic stem cell disorders characterized by cytopenia, ineffective hematopoiesis, and progression to secondary acute myeloid leukemia in high-risk cases. Conventional prognostication relies on clinicopathological parameters supplemented by cytogenetic information. However, recent studies have shown that genetic aberrations also have critical impacts on treatment outcome. Moreover, these genetic alterations may themselves be a target for treatment. The mutation landscape in MDS is shaped by gene aberrations involved in DNA methylation (TET2, DNMT3A, IDH1/2), histone modification (ASXL1, EZH2), the RNA splicing machinery (SF3B1, SRSF2, ZRSR2, U2AF1/2), transcription (RUNX1, TP53, BCOR, PHF6, NCOR, CEBPA, GATA2), tyrosine kinase receptor signaling (JAK2, MPL, FLT3, GNAS, KIT), RAS pathways (KRAS, NRAS, CBL, NF1, PTPN11), DNA repair (ATM, BRCC3, DLRE1C, FANCL), and cohesion complexes (STAG2, CTCF, SMC1A, RAD21). A detailed understanding of the pathogenetic mechanisms leading to transformation is critical for designing single-agent or combinatorial approaches in target therapy of MDS. "	"The Mutational Landscape of Acute Promyelocytic Leukemia Reveals an Interacting Network of Co-Occurrences and Recurrent Mutations. Preliminary Acute Promyelocytic Leukemia (APL) whole exome sequencing (WES) studies have identified a huge number of somatic mutations affecting more than a hundred different genes mainly in a non-recurrent manner, suggesting that APL is a heterogeneous disease with secondary relevant changes not yet defined. To extend our knowledge of subtle genetic alterations involved in APL that might cooperate with PML/RARA in the leukemogenic process, we performed a comprehensive analysis of somatic mutations in APL combining WES with sequencing of a custom panel of targeted genes by next-generation sequencing. To select a reduced subset of high confidence candidate driver genes, further in silico analysis were carried out. After prioritization and network analysis we found recurrent deleterious mutations in 8 individual genes (STAG2, U2AF1, SMC1A, USP9X, IKZF1, LYN, MYCBP2 and PTPN11) with a strong potential of being involved in APL pathogenesis. Our network analysis of multiple mutations provides a reliable approach to prioritize genes for additional analysis, improving our knowledge of the leukemogenesis interactome. Additionally, we have defined a functional module in the interactome of APL. The hypothesis is that the number, or the specific combinations, of mutations harbored in each patient might not be as important as the disturbance caused in biological key functions, triggered by several not necessarily recurrent mutations. "	"NIPBL Controls RNA Biogenesis to Prevent Activation of the Stress Kinase PKR. NIPBL, a cohesin loader, has been implicated in transcriptional control and genome organization. Mutations in NIPBL, cohesin, and its deacetylase HDAC8 result in Cornelia de Lange syndrome. We report activation of the RNA-sensing kinase PKR in human lymphoblastoid cell lines carrying NIPBL or HDAC8 mutations, but not SMC1A or SMC3 mutations. PKR activation can be triggered by unmodified RNAs. Gene expression profiles in NIPBL-deficient lymphoblastoid cells and mouse embryonic stem cells reveal lower expression of genes involved in RNA processing and modification. NIPBL mutant lymphoblastoid cells show reduced proliferation and protein synthesis with increased apoptosis, all of which are partially reversed by a PKR inhibitor. Non-coding RNAs from an NIPBL mutant line had less m(6)A modification and activated PKR activity in vitro. This study provides insight into the molecular pathology of Cornelia de Lange syndrome by establishing a relationship between NIPBL and HDAC8 mutations and PKR activation. "	"SMC1B is present in mammalian somatic cells and interacts with mitotic cohesin proteins. Cohesin is an evolutionarily conserved protein complex that plays a role in many biological processes: it ensures faithful chromosome segregation, regulates gene expression and preserves genome stability. In mammalian cells, the mitotic cohesin complex consists of two structural maintenance of chromosome proteins, SMC1A and SMC3, the kleisin protein RAD21 and a fourth subunit either STAG1 or STAG2. Meiotic paralogs in mammals were reported for SMC1A, RAD21 and STAG1/STAG2 and are called SMC1B, REC8 and STAG3 respectively. It is believed that SMC1B is only a meiotic-specific cohesin member, required for sister chromatid pairing and for preventing telomere shortening. Here we show that SMC1B is also expressed in somatic mammalian cells and is a member of a mitotic cohesin complex. In addition, SMC1B safeguards genome stability following irradiation whereas its ablation has no effect on chromosome segregation. Finally, unexpectedly SMC1B depletion impairs gene transcription, particularly at genes mapping to clusters such as HOX and PCDHB. Genome-wide analyses show that cluster genes changing in expression are enriched for cohesin-SMC1B binding. "	"Expanding the clinical spectrum of the 'HDAC8-phenotype' - implications for molecular diagnostics, counseling and risk prediction. Cornelia de Lange syndrome (CdLS) is a clinically heterogeneous disorder characterized by typical facial dysmorphism, cognitive impairment and multiple congenital anomalies. Approximately 75% of patients carry a variant in one of the five cohesin-related genes NIPBL, SMC1A, SMC3, RAD21 and HDAC8. Herein we report on the clinical and molecular characterization of 11 patients carrying 10 distinct variants in HDAC8. Given the high number of variants identified so far, we advise sequencing of HDAC8 as an indispensable part of the routine molecular diagnostic for patients with CdLS or CdLS-overlapping features. The phenotype of our patients is very broad, whereas males tend to be more severely affected than females, who instead often present with less canonical CdLS features. The extensive clinical variability observed in the heterozygous females might be at least partially associated with a completely skewed X-inactivation, observed in seven out of eight female patients. Our cohort also includes two affected siblings whose unaffected mother was found to be mosaic for the causative mutation inherited to both affected children. This further supports the urgent need for an integration of highly sensitive sequencing technology to allow an appropriate molecular diagnostic, genetic counseling and risk prediction. "	"Recognition of the Cornelia de Lange syndrome phenotype with facial dysmorphology novel analysis. Facial analysis systems are becoming available to healthcare providers to aid in the recognition of dysmorphic phenotypes associated with a multitude of genetic syndromes. These technologies automatically detect facial points and extract various measurements from images to recognize dysmorphic features and evaluate similarities to known facial patterns (gestalts). To evaluate such systems' usefulness for supporting the clinical practice of healthcare professionals, the recognition accuracy of the Cornelia de Lange syndrome (CdLS) phenotype was examined with FDNA's automated facial dysmorphology novel analysis (FDNA) technology. In the first experiment, 2D facial images of CdLS patients with either an NIPBL or SMC1A gene mutation as well as non-CdLS patients which were assessed by dysmorphologists in a previous study were evaluated by the FDNA technology; the average detection rate of experts was 77% while the system's detection rate was 87%. In the second study, when a new set of NIPBL, SMC1A and non-CdLS patient photos was evaluated, the detection rate increased to 94%. The results from both studies indicated that the system's detection rate was comparable to that of dysmorphology experts. Therefore, utilizing such technologies may be a useful tool in a clinical setting."	"Downregulation of SMC1A inhibits growth and increases apoptosis and chemosensitivity of colorectal cancer cells. The structural maintenance of chromosomes (SMC) 1A protein is a component of the cohesin multiprotein complex that is essential for sister chromatid cohesion. SMC1A gene mutations have been reported in colorectal cancer. This study aimed to investigate the role of SMC1A gene expression in colorectal cancer in vitro. SMC1A gene expression was silenced by lentivirus-mediated infection with small interfering RNA (siRNA) in the human colorectal cancer cell line HT-29. Cell proliferation rates, SMC1A mRNA and protein levels, apoptosis and chemosensitivity to oxaliplatin were evaluated using routine in vitro assays, real-time polymerase chain reaction, Western blotting and flow cytometry. Knockdown of SMC1A protein and mRNA levels resulted in the inhibition of cell proliferation, an increased rate of apoptosis and enhanced chemosensitivity to oxaliplatin in HT-29 cells. The findings of this study suggest that SMC1A plays an oncogenic role in colorectal cancer and that it might be a promising target for colorectal cancer therapy."	"Behavioral Phenotype and Autism Spectrum Disorders in Cornelia de Lange Syndrome. Cornelia de Lange syndrome (CdLS) is a congenital disorder characterized by distinctive facial features, growth retardation, limb abnormalities, intellectual disability, and behavioral problems. Cornelia de Lange syndrome is associated with abnormalities on chromosomes 5, 10 and X. Heterozygous point mutations in three genes (NIPBL, SMC3 and SMC1A), are responsible for approximately 50-60% of CdLS cases. CdLS is characterized by autistic features, notably excessive repetitive behaviors and expressive language deficits. The prevalence of autism spectrum disorder (ASD) symptomatology is comparatively high in CdLS. However, the profile and developmental trajectories of these ASD characteristics are potentially different to those observed in individuals with idiopathic ASD. A significantly higher prevalence of self-injury are evident in CdLS. Self-injury was associated with repetitive and impulsive behavior. This study describes the behavioral phenotype of four children with Cornelia de Lange syndrome and ASDs and rehabilitative intervention that must be implemented. "	"Mutant cohesin affects RNA polymerase II regulation in Cornelia de Lange syndrome. In addition to its role in sister chromatid cohesion, genome stability and integrity, the cohesin complex is involved in gene transcription. Mutations in core cohesin subunits SMC1A, SMC3 and RAD21, or their regulators NIPBL and HDAC8, cause Cornelia de Lange syndrome (CdLS). Recent evidence reveals that gene expression dysregulation could be the underlying mechanism for CdLS. These findings raise intriguing questions regarding the potential role of cohesin-mediated transcriptional control and pathogenesis. Here, we identified numerous dysregulated genes occupied by cohesin by combining the transcriptome of CdLS cell lines carrying mutations in SMC1A gene and ChIP-Seq data. Genome-wide analyses show that genes changing in expression are enriched for cohesin-binding. In addition, our results indicate that mutant cohesin impairs both RNA polymerase II (Pol II) transcription initiation at promoters and elongation in the gene body. These findings highlight the pivotal role of cohesin in transcriptional regulation and provide an explanation for the typical gene dysregulation observed in CdLS patients. "	"Cross-linking immunoprecipitation-MS (xIP-MS): Topological Analysis of Chromatin-associated Protein Complexes Using Single Affinity Purification. In recent years, cross-linking mass spectrometry has proven to be a robust and effective method of interrogating macromolecular protein complex topologies at peptide resolution. Traditionally, cross-linking mass spectrometry workflows have utilized homogenous complexes obtained through time-limiting reconstitution, tandem affinity purification, and conventional chromatography workflows. Here, we present cross-linking immunoprecipitation-MS (xIP-MS), a simple, rapid, and efficient method for structurally probing chromatin-associated protein complexes using small volumes of mammalian whole cell lysates, single affinity purification, and on-bead cross-linking followed by LC-MS/MS analysis. We first benchmarked xIP-MS using the structurally well-characterized phosphoribosyl pyrophosphate synthetase complex. We then applied xIP-MS to the chromatin-associated cohesin (SMC1A/3), XRCC5/6 (Ku70/86), and MCM complexes, and we provide novel structural and biological insights into their architectures and molecular function. Of note, we use xIP-MS to perform topological studies under cell cycle perturbations, showing that the xIP-MS protocol is sufficiently straightforward and efficient to allow comparative cross-linking experiments. This work, therefore, demonstrates that xIP-MS is a robust, flexible, and widely applicable methodology for interrogating chromatin-associated protein complex architectures. "	"Biochemical and structural characterization of HDAC8 mutants associated with Cornelia de Lange syndrome spectrum disorders. Cornelia de Lange Syndrome (CdLS) spectrum disorders are characterized by multiple organ system congenital anomalies that result from mutations in genes encoding core cohesin proteins SMC1A, SMC3, and RAD21, or proteins that regulate cohesin function such as NIPBL and HDAC8. HDAC8 is the Zn(2+)-dependent SMC3 deacetylase required for cohesin recycling during the cell cycle, and 17 different HDAC8 mutants have been identified to date in children diagnosed with CdLS. As part of our continuing studies focusing on aberrant HDAC8 function in CdLS, we now report the preparation and biophysical evaluation of five human HDAC8 mutants: P91L, G117E, H180R, D233G, and G304R. Additionally, the double mutants D233G-Y306F and P91L-Y306F were prepared to enable cocrystallization of intact enzyme-substrate complexes. X-ray crystal structures of G117E, P91L-Y306F, and D233G-Y306F HDAC8 mutants reveal that each CdLS mutation causes structural changes that compromise catalysis and/or thermostability. For example, the D233G mutation disrupts the D233-K202-S276 hydrogen bond network, which stabilizes key tertiary structure interactions, thereby significantly compromising thermostability. Molecular dynamics simulations of H180R and G304R HDAC8 mutants suggest that the bulky arginine side chain of each mutant protrudes into the substrate binding site and also causes active site residue Y306 to fluctuate away from the position required for substrate activation and catalysis. Significantly, the catalytic activities of most mutants can be partially or fully rescued by the activator N-(phenylcarbamothioyl)-benzamide, suggesting that HDAC8 activators may serve as possible leads in the therapeutic management of CdLS. "	"Cohesin loss alters adult hematopoietic stem cell homeostasis, leading to myeloproliferative neoplasms. The cohesin complex (consisting of Rad21, Smc1a, Smc3, and Stag2 proteins) is critically important for proper sister chromatid separation during mitosis. Mutations in the cohesin complex were recently identified in a variety of human malignancies including acute myeloid leukemia (AML). To address the potential tumor-suppressive function of cohesin in vivo, we generated a series of shRNA mouse models in which endogenous cohesin can be silenced inducibly. Notably, silencing of cohesin complex members did not have a deleterious effect on cell viability. Furthermore, knockdown of cohesin led to gain of replating capacity of mouse hematopoietic progenitor cells. However, cohesin silencing in vivo rapidly altered stem cells homeostasis and myelopoiesis. Likewise, we found widespread changes in chromatin accessibility and expression of genes involved in myelomonocytic maturation and differentiation. Finally, aged cohesin knockdown mice developed a clinical picture closely resembling myeloproliferative disorders/neoplasms (MPNs), including varying degrees of extramedullary hematopoiesis (myeloid metaplasia) and splenomegaly. Our results represent the first successful demonstration of a tumor suppressor function for the cohesin complex, while also confirming that cohesin mutations occur as an early event in leukemogenesis, facilitating the potential development of a myeloid malignancy. "	"Novel SMC1A frameshift mutations in children with developmental delay and epilepsy. Cornelia de Lange syndrome (CdLS) is a rare dominantly inherited genetic multisystem developmental condition with considerable phenotypic and allelic heterogeneity. Missense and in-frame deletions within the SMC1A gene can be associated with epilepsy and milder craniofacial features. We report two females who presented with developmental delay and developed isolated medically refractory seizures with unrevealing initial laboratory, imaging and genetic evaluations. Whole exome sequencing (WES) analyses were performed and were instrumental in uncovering the genetic etiology for their conditions. WES identified two novel de novo heterozygous frameshift mutations in the SMC1A gene [c.2853_2856delTCAG (p.Ser951Argfs*12) and c.3549_3552dupGGCC (p.Ile1185Glyfs*23)]. We also observed marked skewing of X-inactivation in one patient. The individual with the p.Ser951Argfs*12 mutation represents an extreme on the CdLS phenotypic spectrum, with prominent neurological involvement of severe developmental delay and refractory epilepsy, with mild craniofacial features. Both individuals eventually had incomplete clinical responses to therapy with valproic acid. We review previous reports of SMC1A mutations with epilepsy. SMC1A should be included in clinical gene panels for early infantile and early childhood epileptic encephalopathy."	"Early-onset encephalopathy with epilepsy associated with a novel splice site mutation in SMC1A. We report on the clinical and molecular characterization of a female patient with early-onset epileptic encephalopathy, who was found to carry a de novo novel splice site mutation in SMC1A. This girl shared some morphologic and anthropometric traits described in patients with clinical diagnosis of Cornelia de Lange syndrome and with SMC1A mutation but also has severe encephalopathy with early-onset epilepsy. In addition, she had midline hand stereotypies and scoliosis leading to the misdiagnosis of a Rett overlap syndrome. Molecular studies found a novel de novo splice site mutation (c.1911 + 1G &gt; T) in SMC1A. This novel splice mutation was associated with an aberrantly processed mRNA that included intron 11 of the gene. Moreover, quantitative approach by RT-PCR showed a severe reduction of the SMC1A transcript suggesting that this aberrant transcript may be unstable and degraded. Taken together, our data suggest that the phenotype may be due to a loss-of-function of SMC1A in this patient. Our findings suggest that loss-of-function mutations of SMC1A may be associated with early-onset encephalopathy with epilepsy."	"Novel pathogenic variant (c.3178G&gt;A) in the SMC1A gene in a family with Cornelia de Lange syndrome identified by exome sequencing. Cornelia de Lange syndrome (CdLS) is a clinically and genetically heterogeneous congenital anomaly. Mutations in the NIPBL gene account for a half of the affected individuals. We describe a family with CdLS carrying a novel pathogenic variant of the SMC1A gene identified by exome sequencing. The proband was a 3-yr-old boy presenting with a developmental delay. He had distinctive facial features without major structural anomalies and tested negative for the NIPBL gene. His younger sister, mother, and maternal grandmother presented with mild mental retardation. By exome sequencing of the proband, a novel SMC1A variant, c.3178G&gt;A, was identified, which was expected to cause an amino acid substitution (p.Glu1060Lys) in the highly conserved coiled-coil domain of the SMC1A protein. Sanger sequencing confirmed that the three female relatives with mental retardation also carry this variant. Our results reveal that SMC1A gene defects are associated with milder phenotypes of CdLS. Furthermore, we showed that exome sequencing could be a useful tool to identify pathogenic variants in patients with CdLS. "	"CyclinD1 Down-Regulation and Increased Apoptosis Are Common Features of Cohesinopathies. Genetic variants within components of the cohesin complex (NIPBL, SMC1A, SMC3, RAD21, PDS5, ESCO2, HDAC8) are believed to be responsible for a spectrum of human syndromes known as &quot;cohesinopathies&quot; that includes Cornelia de Lange Syndrome (CdLS). CdLS is a multiple malformation syndrome affecting almost any organ and causing severe developmental delay. Cohesinopathies seem to be caused by dysregulation of specific developmental pathways downstream of mutations in cohesin components. However, it is still unclear how mutations in different components of the cohesin complex affect the output of gene regulation. In this study, zebrafish embryos and SMC1A-mutated patient-derived fibroblasts were used to analyze abnormalities induced by SMC1A loss of function. We show that the knockdown of smc1a in zebrafish impairs neural development, increases apoptosis, and specifically down-regulates Ccnd1 levels. The same down-regulation of cohesin targets is observed in SMC1A-mutated patient fibroblasts. Previously, we have demonstrated that haploinsufficiency of NIPBL produces similar effects in zebrafish and in patients fibroblasts indicating a possible common feature for neurological defects and mental retardation in cohesinopathies. Interestingly, expression analysis of Smc1a and Nipbl in developing mouse embryos reveals a specific pattern in the hindbrain, suggesting a role for cohesins in neural development in vertebrates."	"Deletion of 11q12.3-11q13.1 in a patient with intellectual disability and childhood facial features resembling Cornelia de Lange syndrome. Deletions within 11q12.3-11q13.1 are very rare and to date only two cases have been described in the literature. In this study we describe a 23-year-old male patient with intellectual disability, behavioral problems, dysmorphic features, dysphagia, gastroesophageal reflux and skeletal abnormalities. Cornelia de Lange syndrome (CdLS, OMIM #122470; #300590; #610759; #300882; #614701) was suggested as a differential diagnosis in childhood although he lacked some of the features typical for this disorder. He does not have a mutation in any of the five known CdLS genes (NIPBL, SMC1A, SMC3, HDAC8, RAD21), but a 1.6Mb deletion at chromosome region 11q12.3-11q13.1 was detected by chromosome microarray. The deletion contains several genes including PPP2R5B, which has been associated with intellectual disability and overgrowth; NRXN2, which has been associated with intellectual disability and autism spectrum disorder; and CDCA5, which is part of the cohesin pathway, as are all the five known CdLS genes. It is therefore possible that deletion of CDCA5 may account for some of the CdLS like features of the present case. "	"Xp11.2 microduplications including IQSEC2, TSPYL2 and KDM5C genes in patients with neurodevelopmental disorders. Copy number variations are a common cause of intellectual disability (ID). Determining the contribution of copy number variants (CNVs), particularly gains, to disease remains challenging. Here, we report four males with ID with sub-microscopic duplications at Xp11.2 and review the few cases with overlapping duplications reported to date. We established the extent of the duplicated regions in each case encompassing a minimum of three known disease genes TSPYL2, KDM5C and IQSEC2 with one case also duplicating the known disease gene HUWE1. Patients with a duplication encompassing TSPYL2, KDM5C and IQSEC2 without gains of nearby SMC1A and HUWE1 genes have not been reported thus far. All cases presented with ID and significant deficits of speech development. Some patients also manifested behavioral disturbances such as hyperactivity and attention-deficit/hyperactivity disorder. Lymphoblastic cell lines from patients show markedly elevated levels of TSPYL2, KDM5C and SMC1A, transcripts consistent with the extent of their CNVs. The duplicated region in our patients contains several genes known to escape X-inactivation, including KDM5C, IQSEC2 and SMC1A. In silico analysis of expression data in selected gene expression omnibus series indicates that dosage of these genes, especially IQSEC2, is similar in males and females despite the fact they escape from X-inactivation in females. Taken together, the data suggest that gains in Xp11.22 including IQSEC2 cause ID and are associated with hyperactivity and attention-deficit/hyperactivity disorder, and are likely to be dosage-sensitive in males. "	"A novel multiplexed, image-based approach to detect phenotypes that underlie chromosome instability in human cells. Chromosome instability (CIN) is characterized by a progressive change in chromosome numbers. It is a characteristic common to virtually all tumor types, and is commonly observed in highly aggressive and drug resistant tumors. Despite this information, the majority of human CIN genes have yet to be elucidated. In this study, we developed and validated a multiplexed, image-based screen capable of detecting three different phenotypes associated with CIN. Large-scale chromosome content changes were detected by quantifying changes in nuclear volumes following RNAi-based gene silencing. Using a DsRED-LacI reporter system to fluorescently label chromosome 11 within a human fibrosarcoma cell line, we were able to detect deviations from the expected number of two foci per nucleus (one focus/labelled chromosome) that occurred following CIN gene silencing. Finally, micronucleus enumeration was performed, as an increase in micronucleus formation is a classic hallmark of CIN. To validate the ability of each assay to detect phenotypes that underlie CIN, we silenced the established CIN gene, SMC1A. Following SMC1A silencing we detected an increase in nuclear volumes, a decrease in the number of nuclei harboring two DsRED-LacI foci, and an increase in micronucleus formation relative to controls (untreated and siGAPDH). Similar results were obtained in an unrelated human fibroblast cell line. The results of this study indicate that each assay is capable of detecting CIN-associated phenotypes, and can be utilized in future experiments to uncover novel human CIN genes, which will provide novel insight into the pathogenesis of cancer. "	"Role of SMC1A overexpression as a predictor of poor prognosis in late stage colorectal cancer. Structural maintenance of chromosomes 1A (SMC1A) is a member of the cohesion family of proteins that plays crucial roles in cell cycle control. Recent studies have concluded that SMC1A is involved in the pathogenesis of cancer. This study aims to evaluate the functional role of SMC1A in colorectal cancer (CRC) both in vitro and in vivo, and the underlying molecular mechanisms. We firstly investigated the expression levels of SMC1A in 427 CRC specimens. Antigen expression was determined by immunohistochemical analysis of SMC1A on tissue microarrays. Stable SMC1A knockdown CRC cell lines were employed. The effects of SMC1A depletion on cell growth in vitro were examined by MTT, colony formation and flow cytometry assays. Tumor forming was evaluated by nude mice model in vivo. To detect the activation of intracellular signaling, pathscan intracellular signaling array and western blotting were performed. The expression of SMC1A was much stronger in CRC tumor tissues than in adenomas and normal colorectal tissues. High SMC1A expression, indicated as an independent poor prognostic predictor for patients with stage III and stage IV CRC, was correlated with overall survival (OS) (p = 0.008). Functional analysis indicated that SMC1A knockdown by small interfering RNA (siRNA) mediated the significant inhibition of cell proliferation; induced cell cycle arrest and apoptosis via the suppression of CDK4, PCNA and PARP; and blocked the activation of the Erk1/2 and Akt cascades in CRC cells. In addition, SMC1A depletion significantly decreased the growth of subcutaneously inoculated tumors in nude mice. These results suggest that SMC1A plays an essential role in the development of CRC and may be a predictive factor in patients with CRC. The inhibition of SMC1A may serve as a promising therapeutic strategy for human CRC."	"De novo heterozygous mutations in SMC3 cause a range of Cornelia de Lange syndrome-overlapping phenotypes. Cornelia de Lange syndrome (CdLS) is characterized by facial dysmorphism, growth failure, intellectual disability, limb malformations, and multiple organ involvement. Mutations in five genes, encoding subunits of the cohesin complex (SMC1A, SMC3, RAD21) and its regulators (NIPBL, HDAC8), account for at least 70% of patients with CdLS or CdLS-like phenotypes. To date, only the clinical features from a single CdLS patient with SMC3 mutation has been published. Here, we report the efforts of an international research and clinical collaboration to provide clinical comparison of 16 patients with CdLS-like features caused by mutations in SMC3. Modeling of the mutation effects on protein structure suggests a dominant-negative effect on the multimeric cohesin complex. When compared with typical CdLS, many SMC3-associated phenotypes are also characterized by postnatal microcephaly but with a less distinctive craniofacial appearance, a milder prenatal growth retardation that worsens in childhood, few congenital heart defects, and an absence of limb deficiencies. While most mutations are unique, two unrelated affected individuals shared the same mutation but presented with different phenotypes. This work confirms that de novo SMC3 mutations account for ∼ 1%-2% of CdLS-like phenotypes."	"Broadening of cohesinopathies: exome sequencing identifies mutations in ANKRD11 in two patients with Cornelia de Lange-overlapping phenotype. Cornelia de Lange syndrome (CdLS) and KBG syndrome are two distinct developmental pathologies sharing common features such as intellectual disability, psychomotor delay, and some craniofacial and limb abnormalities. Mutations in one of the five genes NIPBL, SMC1A, SMC3, HDAC8 or RAD21, were identified in at least 70% of the patients with CdLS. Consequently, additional causative genes, either unknown or responsible of partially merging entities, possibly account for the remaining 30% of the patients. In contrast, KBG has only been associated with mutations in ANKRD11. By exome sequencing we could identify heterozygous loss-of-function mutations in ANKRD11 in two patients with the clinical diagnosis of CdLS. Both patients show features reminiscent of CdLS such as characteristic facies as well as a small head circumference which is not described for KBG syndrome. Patient A, who carries the mutation in a mosaic state, is a 4-year-old girl with features reminiscent of CdLS. Patient B, a 15-year-old boy, shows a complex phenotype which resembled CdLS during infancy, but has developed to a more KBG overlapping phenotype during childhood. These findings point out the importance of screening ANKRD11 in young CdLS patients who were found to be negative for mutations in the five known CdLS genes. "	"Next-generation sequencing in X-linked intellectual disability. X-linked intellectual disability (XLID) is a genetically heterogeneous disorder with more than 100 genes known to date. Most genes are responsible for a small proportion of patients only, which has hitherto hampered the systematic screening of large patient cohorts. We performed targeted enrichment and next-generation sequencing of 107 XLID genes in a cohort of 150 male patients. Hundred patients had sporadic intellectual disability, and 50 patients had a family history suggestive of XLID. We also analysed a sporadic female patient with severe ID and epilepsy because she had strongly skewed X-inactivation. Target enrichment and high parallel sequencing allowed a diagnostic coverage of &gt;10 reads for ~96% of all coding bases of the XLID genes at a mean coverage of 124 reads. We found 18 pathogenic variants in 13 XLID genes (AP1S2, ATRX, CUL4B, DLG3, IQSEC2, KDM5C, MED12, OPHN1, SLC9A6, SMC1A, UBE2A, UPF3B and ZDHHC9) among the 150 male patients. Thirteen pathogenic variants were present in the group of 50 familial patients (26%), and 5 pathogenic variants among the 100 sporadic patients (5%). Systematic gene dosage analysis for low coverage exons detected one pathogenic hemizygous deletion. An IQSEC2 nonsense variant was detected in the female ID patient, providing further evidence for a role of this gene in encephalopathy in females. Skewed X-inactivation was more frequently observed in mothers with pathogenic variants compared with those without known X-linked defects. The mutation rate in the cohort of sporadic patients corroborates previous estimates of 5-10% for X-chromosomal defects in male ID patients. "	"Patients carrying 9q31.1-q32 deletion share common features with Cornelia de Lange Syndrome. Cornelia de Lange Syndrome (CdLS) is a rare but severe clinically heterogeneous developmental disorder characterized by facial dysmorphia, growth and cognitive retardation, and abnormalities of limb development. To determine the pathogenesis of a patient with CdLS. We studied a patient with CdLS by whole exome sequencing, karyotyping and Agilent CGH Array. The results were confirmed by quantitative real-time PCR analysis of the patient and her parents. Further comparison of our patient and cases with partially overlapping deletions retrieved from the literature and databases was undertaken. Whole exome sequencing had excluded the mutation of cohesion genes such as NIPBL,SMC1A and SMC3. The result of karyotyping showed a deletion of chromosome 9q31.1-q32 and the result of Agilent CGH Array further displayed a 12.01-Mb region of deletion at chromosome bands 9q31.1-q32. Reported cases with the deletion of 9q31.1-q32 share similar features with our CdLS patient. One of the genes in the deleted region, SMC2, belongs to the Structural Maintenance of Chromosomes (SMC) family and regulates gene expression and DNA repair. Patients carrying the deletion of 9q31.1-q32 showed similar phenotypes with CdLS."	"Global transcriptional disturbances underlie Cornelia de Lange syndrome and related phenotypes. Cornelia de Lange syndrome (CdLS) is a genetically heterogeneous disorder that presents with extensive phenotypic variability, including facial dysmorphism, developmental delay/intellectual disability (DD/ID), abnormal extremities, and hirsutism. About 65% of patients harbor mutations in genes that encode subunits or regulators of the cohesin complex, including NIPBL, SMC1A, SMC3, RAD21, and HDAC8. Wiedemann-Steiner syndrome (WDSTS), which shares CdLS phenotypic features, is caused by mutations in lysine-specific methyltransferase 2A (KMT2A). Here, we performed whole-exome sequencing (WES) of 2 male siblings clinically diagnosed with WDSTS; this revealed a hemizygous, missense mutation in SMC1A that was predicted to be deleterious. Extensive clinical evaluation and WES of 32 Turkish patients clinically diagnosed with CdLS revealed the presence of a de novo heterozygous nonsense KMT2A mutation in 1 patient without characteristic WDSTS features. We also identified de novo heterozygous mutations in SMC3 or SMC1A that affected RNA splicing in 2 independent patients with combined CdLS and WDSTS features. Furthermore, in families from 2 separate world populations segregating an autosomal-recessive disorder with CdLS-like features, we identified homozygous mutations in TAF6, which encodes a core transcriptional regulatory pathway component. Together, our data, along with recent transcriptome studies, suggest that CdLS and related phenotypes may be &quot;transcriptomopathies&quot; rather than cohesinopathies. "	"Two novel NIPBL gene mutations in Chinese patients with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a dominantly inherited developmental disorder characterized by distinctive facial features, mental retardation, and upper limb defects, with the involvement of multiple organs and systems. To date, mutations have been identified in five genes responsible for CdLS: NIPBL, SMC1A, SMC3, RAD21, and HDAC8. Here, we present a clinical and molecular characterization of five unrelated Chinese patients whose clinical presentation is consistent with that of CdLS. There were no chromosomal abnormalities in the five children. In three patients, DNA sequencing revealed a previously reported frameshift mutation c.2479delA (p.Arg827GlyfsX20), and two novel mutations including a heterozygous mutation c.6272 G&gt;T (p.Cys2091Phe) and a frameshift mutation c.1672delA (p.Thr558LeufsX7) in NIPBL. For the remaining patients, large deletions and/or duplications within the NIPBL gene were excluded as playing a role in the pathogenesis, by Multiplex Ligation-dependent Probe Amplification (MLPA) analysis. These findings broaden the mutation spectrum of NIPBL and further our understanding of the diverse and variable effects of NIPBL mutations on CdLS."	"Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS; MIM #122470, 300590, 610759, 614701, 300882) is a rare and clinically variable disorder that affects multiple organs. It is characterized by intellectual disability (mild to severe), distinctive facial features, prenatal and postnatal growth retardation, and hirsutism. Congenital anomalies include malformations of the upper limbs, gastrointestinal malformation/rotation, pyloric stenosis, diaphragmatic hernia, heart defects and genitourinary malformations. Gastroesophageal reflux disease is present in almost all patients. In addition to classic forms, milder phenotypes have been reported. To date five genes [NIPBL (Nipped-B-like protein), SMC1A (structural maintenance of chromosomes 1A), SMC3 (structural maintenance of chromosomes 3), RAD21 (human homolog of Schizosaccharomyces pombe radiation sensitive mutant 21) and HDAC8 (histone deacetylase 8)] have been associated with CdLS and mutations of these genes comprise the underlying defect in 70% of the patients. Here, we will provide a brief review of the clinical features of CdLS, summarize the known underlying genetic defects, prenatal and postnatal diagnosis possibilities, and genetic counseling. "	"Hidden mutations in Cornelia de Lange syndrome limitations of sanger sequencing in molecular diagnostics. Cornelia de Lange syndrome (CdLS) is a well-characterized developmental disorder. The genetic cause of CdLS is a mutation in one of five associated genes (NIPBL, SMC1A, SMC3, RAD21, and HDAC8) accounting for about 70% of cases. To improve our current molecular diagnostic and to analyze some of CdLS candidate genes, we developed and established a gene panel approach. Because recent data indicate a high frequency of mosaic NIPBL mutations that were not detected by conventional sequencing approaches of blood DNA, we started to collect buccal mucosa (BM) samples of our patients that were negative for mutations in the known CdLS genes. Here, we report the identification of three mosaic NIPBL mutations by our high-coverage gene panel sequencing approach that were undetected by classical Sanger sequencing analysis of BM DNA. All mutations were confirmed by the use of highly sensitive SNaPshot fragment analysis using DNA from BM, urine, and fibroblast samples. In blood samples, we could not detect the respective mutation. Finally, in fibroblast samples from all three patients, Sanger sequencing could identify all the mutations. Thus, our study highlights the need for highly sensitive technologies in molecular diagnostic of CdLS to improve genetic diagnosis and counseling of patients and their families. "	"Genetic heterogeneity in Cornelia de Lange syndrome (CdLS) and CdLS-like phenotypes with observed and predicted levels of mosaicism. Cornelia de Lange syndrome (CdLS) is a multisystem disorder with distinctive facial appearance, intellectual disability and growth failure as prominent features. Most individuals with typical CdLS have de novo heterozygous loss-of-function mutations in NIPBL with mosaic individuals representing a significant proportion. Mutations in other cohesin components, SMC1A, SMC3, HDAC8 and RAD21 cause less typical CdLS. We screened 163 affected individuals for coding region mutations in the known genes, 90 for genomic rearrangements, 19 for deep intronic variants in NIPBL and 5 had whole-exome sequencing. Pathogenic mutations [including mosaic changes] were identified in: NIPBL 46 [3] (28.2%); SMC1A 5 [1] (3.1%); SMC3 5 [1] (3.1%); HDAC8 6 [0] (3.6%) and RAD21 1 [0] (0.6%). One individual had a de novo 1.3 Mb deletion of 1p36.3. Another had a 520 kb duplication of 12q13.13 encompassing ESPL1, encoding separase, an enzyme that cleaves the cohesin ring. Three de novo mutations were identified in ANKRD11 demonstrating a phenotypic overlap with KBG syndrome. To estimate the number of undetected mosaic cases we used recursive partitioning to identify discriminating features in the NIPBL-positive subgroup. Filtering of the mutation-negative group on these features classified at least 18% as 'NIPBL-like'. A computer composition of the average face of this NIPBL-like subgroup was also more typical in appearance than that of all others in the mutation-negative group supporting the existence of undetected mosaic cases. Future diagnostic testing in 'mutation-negative' CdLS thus merits deeper sequencing of multiple DNA samples derived from different tissues."	"Mutant cohesin drives chromosomal instability in early colorectal adenomas. Chromosome missegregation leads to chromosomal instability (CIN), thought to play a role in cancer development. As cohesin functions in guaranteeing correct chromosome segregation, increasing data suggest its involvement in tumorigenesis. In a screen of a large series of early colorectal adenomas, a precocious step during colorectal tumorigenesis, we identified 11 mutations in SMC1A core cohesin subunit. In addition, we sequenced the SMC1A gene in colorectal carcinomas and we found only one mutation. Finally, the transfection of the SMC1A mutations identified in early adenomas and wild-type SMC1A gene silencing in normal human fibroblasts led to CIN. Our findings that SMC1A mutations decrease from early adenomas to colorectal cancers and that mutations lead to CIN suggest that mutant cohesin could play a pivotal role during colorectal cancer development. "	"Compromised structure and function of HDAC8 mutants identified in Cornelia de Lange Syndrome spectrum disorders. Cornelia de Lange Syndrome (CdLS) is a multiple congenital anomaly disorder resulting from mutations in genes that encode the core components of the cohesin complex, SMC1A, SMC3, and RAD21, or two of its regulatory proteins, NIPBL and HDAC8. HDAC8 is the human SMC3 lysine deacetylase required for cohesin recycling in the cell cycle. To date, 16 different missense mutations in HDAC8 have recently been identified in children diagnosed with CdLS. To understand the molecular effects of these mutations in causing CdLS and overlapping phenotypes, we have fully characterized the structure and function of five HDAC8 mutants: C153F, A188T, I243N, T311M, and H334R. X-ray crystal structures reveal that each mutation causes local structural changes that compromise catalysis and/or thermostability. For example, the C153F mutation triggers conformational changes that block acetate product release channels, resulting in only 2% residual catalytic activity. In contrast, the H334R mutation causes structural changes in a polypeptide loop distant from the active site and results in 91% residual activity, but the thermostability of this mutant is significantly compromised. Strikingly, the catalytic activity of these mutants can be partially or fully rescued in vitro by the HDAC8 activator N-(phenylcarbamothioyl)benzamide. These results suggest that HDAC8 activators might be useful leads in the search for new therapeutic strategies in managing CdLS. "	"Inhibition of Hec1 as a novel approach for treatment of primary liver cancer. Highly expressed in cancer protein 1 (Hec1) is an oncogene and a promising molecular target for novel anticancer drugs. The purpose of this study was to evaluate the potential of a Hec1 inhibitor, TAI-95, as a treatment for primary liver cancer. In vitro and in vivo methods were used to test the activity of TAI-95. Gene expression analysis was used to evaluate clinical correlation of the target. In vitro growth inhibition results showed that TAI-95 has excellent potency on a wide range of primary liver cancer cell lines (hepatoblastoma or hepatocellular carcinoma) (GI(50) 30-70 nM), which was superior to sorafenib and other cytotoxic agents. TAI-95 was relatively inactive in non-cancerous cell lines (GI(50) &gt; 10 μM). TAI-95 disrupts the interaction between Hec1 and Nek2 and leads to degradation of Nek2, chromosomal misalignment, and apoptotic cell death. TAI-95 showed synergistic activity in selected cancer cell lines with doxorubicin, paclitaxel, and topotecan, but not with sorafenib. TAI-95 shows excellent potency in a Huh-7 xenograft mouse model when administered orally. Gene expression analysis of clinical samples demonstrated increased expression of Hec1/NDC80 and associated genes (Nek2, SMC1A, and SMC2) in 27 % of patients, highlighting the potential for using this therapeutic approach to target patients with high Hec1 expression. Inhibition of Hec1 using small molecule approach may represent a promising novel approach for the treatment of primary liver cancers."	"Functional characterization of NIPBL physiological splice variants and eight splicing mutations in patients with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a congenital developmental disorder characterized by distinctive craniofacial features, growth retardation, cognitive impairment, limb defects, hirsutism, and multisystem involvement. Mutations in five genes encoding structural components (SMC1A, SMC3, RAD21) or functionally associated factors (NIPBL, HDAC8) of the cohesin complex have been found in patients with CdLS. In about 60% of the patients, mutations in NIPBL could be identified. Interestingly, 17% of them are predicted to change normal splicing, however, detailed molecular investigations are often missing. Here, we report the first systematic study of the physiological splicing of the NIPBL gene, that would reveal the identification of four new splicing isoforms ΔE10, ΔE12, ΔE33,34, and B'. Furthermore, we have investigated nine mutations affecting splice-sites in the NIPBL gene identified in twelve CdLS patients. All mutations have been examined on the DNA and RNA level, as well as by in silico analyses. Although patients with mutations affecting NIPBL splicing show a broad clinical variability, the more severe phenotypes seem to be associated with aberrant transcripts resulting in a shift of the reading frame. "	"Severe ipsilateral musculoskeletal involvement in a Cornelia de Lange patient with a novel NIPBL mutation. Cornelia de Lange Syndrome (CdLS) is a congenital autosomal dominant (NIPBL, SMC3 and RAD21) or X-linked (SMC1A and HDAC8) disorder characterized by facial dysmorphism, pre and postnatal growth retardation, developmental delay and/or intellectual disability, and multiorgan involvement. Musculoskeletal malformations are usually bilateral and affect mainly the upper limbs; the range goes from brachyclinodactyly to severe reduction defects. Instead lower extremities are usually less and mildly involved. Here, we report on a 3-year-old Senegalese boy with typical craniofacial CdLS features, pre and postnatal growth retardation, atrial septal defect, developmental delay and right ipsilateral limb malformations, consistent with oligodactyly of the 3rd and 4th fingers, tibial agenesis and fibula hypoplasia. Exome sequencing and Sanger sequencing showed a novel missense mutation in NIPBL gene (c.6647A&gt;G; p.(Tyr2216Cys)), which affects a conserved residue located within NIPBL HEAT repeat elements. Pyrosequencing analysis of NIPBL gene, disclosed similar levels of wild-type and mutated alleles in DNA and RNA samples from all tissues analyzed (oral mucosa epithelial cells, peripheral blood leukocytes and fibroblasts). These findings indicated the absence of somatic mosaicism, despite of the segmental asymmetry of the limbs, and confirmed biallelic expression for NIPBL transcripts, respectively. Additionally, conditions like Split-hand/foot malformation with long-bone deficiency secondary to duplication of BHLHA9 gene have been ruled out by the array-CGH and MLPA analysis. To our knowledge, this is the first CdLS patient described with major ipsilateral malformations of both the upper and lower extremities, that even though this finding could be due to a random event, expands the spectrum of limb reduction defects in CdLS. "	"Cohesin gene mutations in tumorigenesis: from discovery to clinical significance. Cohesin is a multi-protein complex composed of four core subunits (SMC1A, SMC3, RAD21, and either STAG1 or STAG2) that is responsible for the cohesion of sister chromatids following DNA replication until its cleavage during mitosis thereby enabling faithful segregation of sister chromatids into two daughter cells. Recent cancer genomics analyses have discovered a high frequency of somatic mutations in the genes encoding the core cohesin subunits as well as cohesin regulatory factors (e.g. NIPBL, PDS5B, ESPL1) in a select subset of human tumors including glioblastoma, Ewing sarcoma, urothelial carcinoma, acute myeloid leukemia, and acute megakaryoblastic leukemia. Herein we review these studies including discussion of the functional significance of cohesin inactivation in tumorigenesis and potential therapeutic mechanisms to selectively target cancers harboring cohesin mutations."	"Age-related decrease of meiotic cohesins in human oocytes. Aneuploidy in fetal chromosomes is one of the causes of pregnancy loss and of congenital birth defects. It is known that the frequency of oocyte aneuploidy increases with the human maternal age. Recent data have highlighted the contribution of cohesin complexes in the correct segregation of meiotic chromosomes. In mammalian oocytes, cohesion is established during the fetal stages and meiosis-specific cohesin subunits are not replenished after birth, raising the possibility that the long meiotic arrest of oocytes facilitates a deterioration of cohesion that leads to age-related increases in aneuploidy. We here examined the cohesin levels in dictyate oocytes from different age groups of humans and mice by immunofluorescence analyses of ovarian sections. The meiosis-specific cohesin subunits, REC8 and SMC1B, were found to be decreased in women aged 40 and over compared with those aged around 20 years (P&lt;0.01). Age-related decreases in meiotic cohesins were also evident in mice. Interestingly, SMC1A, the mitotic counterpart of SMC1B, was substantially detectable in human oocytes, but little expressed in mice. Further, the amount of mitotic cohesins of mice slightly increased with age. These results suggest that, mitotic and meiotic cohesins may operate in a coordinated way to maintain cohesions over a sustained period in humans and that age-related decreases in meiotic cohesin subunits impair sister chromatid cohesion leading to increased segregation errors. "	"Overall and allele-specific expression of the SMC1A gene in female Cornelia de Lange syndrome patients and healthy controls. Cornelia de Lange syndrome (CdLS) is a rare multisystem disorder characterized by facial dysmorphisms, limb anomalies, and growth and cognitive deficits. Mutations in genes encoding subunits (SMC1A, SMC3, RAD21) or regulators (NIPBL, HDAC8) of the cohesin complex account for approximately 65% of clinically diagnosed CdLS cases. The SMC1A gene (Xp11.22), responsible for 5% of CdLS cases, partially escapes X chromosome inactivation in humans and the allele on the inactive X chromosome is variably expressed. In this study, we evaluated overall and allele-specific SMC1A expression. Real-time PCR analysis conducted on 17 controls showed that SMC1A expression in females is 50% higher than in males. Immunoblotting experiments confirmed a 44% higher protein level in healthy females than in males, and showed no significant differences in SMC1A protein levels between controls and patients. Pyrosequencing was used to assess the reciprocal level of allelic expression in six female carriers of different SMC1A mutations and 15 controls who were heterozygous at a polymorphic transcribed SMC1A locus. The two alleles were expressed at a 1:1 ratio in the control group and at a 2:1 ratio in favor of the wild type allele in the test group. Since a dominant negative effect is considered the pathogenic mechanism in SMC1A-defective female patients, the level of allelic preferential expression might be one of the factors contributing to the wide phenotypic variability observed in these patients. An extension of this study to a larger cohort containing mild to borderline cases could enhance our understanding of the clinical spectrum of SMC1A-linked CdLS. "	"The landscape of somatic mutations in epigenetic regulators across 1,000 paediatric cancer genomes. Studies of paediatric cancers have shown a high frequency of mutation across epigenetic regulators. Here we sequence 633 genes, encoding the majority of known epigenetic regulatory proteins, in over 1,000 paediatric tumours to define the landscape of somatic mutations in epigenetic regulators in paediatric cancer. Our results demonstrate a marked variation in the frequency of gene mutations across 21 different paediatric cancer subtypes, with the highest frequency of mutations detected in high-grade gliomas, T-lineage acute lymphoblastic leukaemia and medulloblastoma, and a paucity of mutations in low-grade glioma and retinoblastoma. The most frequently mutated genes are H3F3A, PHF6, ATRX, KDM6A, SMARCA4, ASXL2, CREBBP, EZH2, MLL2, USP7, ASXL1, NSD2, SETD2, SMC1A and ZMYM3. We identify novel loss-of-function mutations in the ubiquitin-specific processing protease 7 (USP7) in paediatric leukaemia, which result in decreased deubiquitination activity. Collectively, our results help to define the landscape of mutations in epigenetic regulatory genes in paediatric cancer and yield a valuable new database for investigating the role of epigenetic dysregulations in cancer. "	"Protein quantitative trait loci identify novel candidates modulating cellular response to chemotherapy. Annotating and interpreting the results of genome-wide association studies (GWAS) remains challenging. Assigning function to genetic variants as expression quantitative trait loci is an expanding and useful approach, but focuses exclusively on mRNA rather than protein levels. Many variants remain without annotation. To address this problem, we measured the steady state abundance of 441 human signaling and transcription factor proteins from 68 Yoruba HapMap lymphoblastoid cell lines to identify novel relationships between inter-individual protein levels, genetic variants, and sensitivity to chemotherapeutic agents. Proteins were measured using micro-western and reverse phase protein arrays from three independent cell line thaws to permit mixed effect modeling of protein biological replicates. We observed enrichment of protein quantitative trait loci (pQTLs) for cellular sensitivity to two commonly used chemotherapeutics: cisplatin and paclitaxel. We functionally validated the target protein of a genome-wide significant trans-pQTL for its relevance in paclitaxel-induced apoptosis. GWAS overlap results of drug-induced apoptosis and cytotoxicity for paclitaxel and cisplatin revealed unique SNPs associated with the pharmacologic traits (at p&lt;0.001). Interestingly, GWAS SNPs from various regions of the genome implicated the same target protein (p&lt;0.0001) that correlated with drug induced cytotoxicity or apoptosis (p ≤ 0.05). Two genes were functionally validated for association with drug response using siRNA: SMC1A with cisplatin response and ZNF569 with paclitaxel response. This work allows pharmacogenomic discovery to progress from the transcriptome to the proteome and offers potential for identification of new therapeutic targets. This approach, linking targeted proteomic data to variation in pharmacologic response, can be generalized to other studies evaluating genotype-phenotype relationships and provide insight into chemotherapeutic mechanisms."	"Age-related increase in aneuploidy and alteration of gene expression in mouse first polar bodies. To confirm that aneuploidy candidate genes are detectable in the first polar body (PB(1)) of MII oocytes and to investigate the age-dependent molecular changes in PB(1). Aged (12-to 15-mo-old) and young (2-mo-old) mice were administered pregnant mare's serum gonadotropin (PMSG) and human chorionic gonadotrophin (hCG). MII oocytes were obtained and the first PB was removed. mRNA from each PB and its sibling oocyte was reverse transcribed. Real-time PCR was performed to quantify the expression of six genes (BUB1, CDC20, Filia, MCAK, SGOL1, SMC1A) in single PB. We first demonstrated that detection and quantification of transcripts associated with aneuploidy in single mouse oocyte and sibling PB(1) is possible and the relative abundance of mRNA transcripts in a single PB faithfully reflects the relative abundance of that transcript in its sibling oocyte. We further found that transcript levels were significantly lower in aged PBs compared with young PBs (P&lt;0.05). Our results suggest that the detection and analysis of polar body mRNA may provide insight in age-related aneuploidy in oocyte. This analysis is a novel concept to investigate the genesis of chromosome abnormality and could potentially assist in the characterization of mechanisms underlying key molecular origin of female meiotic aneuploidy, which would be of great scientific and clinical value."	"MicroRNA-mRNA functional pairs for cisplatin resistance in ovarian cancer cells. Ovarian cancer is the leading cause of death in women worldwide. Cisplatin is the core of first-line chemotherapy for patients with advanced ovarian cancer. Many patients eventually become resistant to cisplatin, diminishing its therapeutic effect. MicroRNAs (miRNAs) have critical functions in diverse biological processes. Using miRNA profiling and polymerase chain reaction validation, we identified a panel of differentially expressed miRNAs and their potential targets in cisplatin-resistant SKOV3/DDP ovarian cancer cells relative to cisplatin-sensitive SKOV3 parental cells. More specifically, our results revealed significant changes in the expression of 13 of 663 miRNAs analyzed, including 11 that were up-regulated and 2 that were down-regulated in SKOV3/DDP cells with or without cisplatin treatment compared with SKOV3 cells with or without cisplatin treatment. miRNA array and mRNA array data were further analyzed using Ingenuity Pathway Analysis software. Bioinformatics analysis suggests that the genes ANKRD17, SMC1A, SUMO1, GTF2H1, and TP73, which are involved in DNA damage signaling pathways, are potential targets of miRNAs in promoting cisplatin resistance. This study highlights candidate miRNA-mRNA interactions that may contribute to cisplatin resistance in ovarian cancer. "	"Epileptic features in Cornelia de Lange syndrome: case report and literature review. Cornelia de Lange syndrome is a rare genetic disease, caused by mutations in three known different genes: NIBPL (crom 5p), SMC1A (crom X) and SMC3 (crom 10q), that account for about 65% of cases. This syndrome is characterized by distinctive facial features, psychomotor delay, growth retardation since the prenatal period (second trimester of pregnancy), hands and feet abnormalities, and involvement of other organs/systems. SMC1A and SMC3 mutations are responsible for a mild phenotype of the syndrome. We report the electroclinical features of epilepsy in a child with a mild Cornelia de Lange syndrome and furthermore we reviewed the descriptions of the epileptic findings available in the literature in patients with such syndrome. A large heterogeneity of the epileptic findings in the literature is reported. The presence of epilepsy could be related to pathophysiological factors independent of those implicated in the characterization of main classical phenotypic features. A more detailed description of the epileptic findings could help clinicians in the diagnosis of this syndrome in those cases lacking of the typical features."	"Loss-of-function HDAC8 mutations cause a phenotypic spectrum of Cornelia de Lange syndrome-like features, ocular hypertelorism, large fontanelle and X-linked inheritance. Cornelia de Lange syndrome (CdLS) is a multisystem genetic disorder with distinct facies, growth failure, intellectual disability, distal limb anomalies, gastrointestinal and neurological disease. Mutations in NIPBL, encoding a cohesin regulatory protein, account for &gt;80% of cases with typical facies. Mutations in the core cohesin complex proteins, encoded by the SMC1A, SMC3 and RAD21 genes, together account for ∼5% of subjects, often with atypical CdLS features. Recently, we identified mutations in the X-linked gene HDAC8 as the cause of a small number of CdLS cases. Here, we report a cohort of 38 individuals with an emerging spectrum of features caused by HDAC8 mutations. For several individuals, the diagnosis of CdLS was not considered prior to genomic testing. Most mutations identified are missense and de novo. Many cases are heterozygous females, each with marked skewing of X-inactivation in peripheral blood DNA. We also identified eight hemizygous males who are more severely affected. The craniofacial appearance caused by HDAC8 mutations overlaps that of typical CdLS but often displays delayed anterior fontanelle closure, ocular hypertelorism, hooding of the eyelids, a broader nose and dental anomalies, which may be useful discriminating features. HDAC8 encodes the lysine deacetylase for the cohesin subunit SMC3 and analysis of the functional consequences of the missense mutations indicates that all cause a loss of enzymatic function. These data demonstrate that loss-of-function mutations in HDAC8 cause a range of overlapping human developmental phenotypes, including a phenotypically distinct subgroup of CdLS. "	"Exome sequencing identifies a novel EP300 frame shift mutation in a patient with features that overlap Cornelia de Lange syndrome. Rubinstein-Taybi syndrome (RTS) and Cornelia de Lange syndrome (CdLS) are genetically heterogeneous multiple anomalies syndromes, each having a distinctive facial gestalt. Two genes (CREBBP and EP300) are known to cause RTS, and five (NIPBL, SMC1A, SMC3, RAD21, and HDAC8) have been associated with CdLS. A diagnosis of RTS or CdLS is molecularly confirmed in only 65% of clinically identified cases, suggesting that additional causative genes exist for both conditions. In addition, although EP300 and CREBBP encode homologous proteins and perform similar functions, only eight EP300 positive RTS patients have been reported, suggesting that patients with EP300 mutations might be escaping clinical recognition. We report on a child with multiple congenital abnormalities and intellectual disability whose facial features and complex phenotype resemble CdLS. However, no mutations in CdLS-related genes were identified. Rather, a novel EP300 mutation was found on whole exome sequencing. Possible links between EP300 and genes causing CdLS are evident in the literature. Both EP300 and HDAC8 are involved in the regulation of TP53 transcriptional activity. In addition, p300 and other chromatin associated proteins, including NIPBL, SMCA1, and SMC3, have been found at enhancer regions in different cell types. It is therefore possible that EP300 and CdLS-related genes are involved in additional shared pathways, producing overlapping phenotypes. As whole exome sequencing becomes more widely utilized, the diverse phenotypes associated with EP300 mutations should be better understood. In the meantime, testing for EP300 mutations in those with features of CdLS may be warranted."	"Mutations in the cohesin complex in acute myeloid leukemia: clinical and prognostic implications. Mutations in the cohesin complex are novel, genetic lesions in acute myeloid leukemia (AML) that are not well characterized. In this study, we analyzed the frequency, clinical, and prognostic implications of mutations in STAG1, STAG2, SMC1A, SMC3, and RAD21, all members of the cohesin complex, in a cohort of 389 uniformly treated AML patients by next generation sequencing. We identified a total of 23 patients (5.9%) with somatic mutations in 1 of the cohesin genes. All gene mutations were mutually exclusive, and STAG1 (1.8%), STAG2 (1.3%), and SMC3 (1.3%) were most frequently mutated. Patients with any cohesin complex mutation had lower BAALC expression levels. We found a strong association between mutations affecting the cohesin complex and NPM1. Mutated allele frequencies were similar between NPM1 and cohesin gene mutations. Overall survival (OS), relapse-free survival (RFS), and complete remission rates (CR) were not influenced by the presence of cohesin mutations (OS: hazard ratio [HR] 0.98; 95% confidence interval [CI], 0.56-1.72 [P = .94]; RFS: HR 0.7; 95% CI, 0.36-1.38 [P = .3]; CR: mutated 83% vs wild-type 76% [P = .45]). The cohesin complex presents a novel pathway affected by recurrent mutations in AML. This study is registered at www.clinicaltrials.gov as #NCT00209833. "	"Micronuclei in cord blood lymphocytes and associations with biomarkers of exposure to carcinogens and hormonally active factors, gene polymorphisms, and gene expression: the NewGeneris cohort. Leukemia incidence has increased in recent decades among European children, suggesting that early-life environmental exposures play an important role in disease development. We investigated the hypothesis that childhood susceptibility may increase as a result of in utero exposure to carcinogens and hormonally acting factors. Using cord blood samples from the NewGeneris cohort, we examined associations between a range of biomarkers of carcinogen exposure and hormonally acting factors with micronuclei (MN) frequency as a proxy measure of cancer risk. Associations with gene expression and genotype were also explored. DNA and protein adducts, gene expression profiles, circulating hormonally acting factors, and GWAS (genome-wide association study) data were investigated in relation to genomic damage measured by MN frequency in lymphocytes from 623 newborns enrolled between 2006 and 2010 across Europe. Malondialdehyde DNA adducts (M1dG) were associated with increased MN frequency in binucleated lymphocytes (MNBN), and exposure to androgenic, estrogenic, and dioxin-like compounds was associated with MN frequency in mononucleated lymphocytes (MNMONO), although no monotonic exposure-outcome relationship was observed. Lower frequencies of MNBN were associated with a 1-unit increase expression of PDCD11, LATS2, TRIM13, CD28, SMC1A, IL7R, and NIPBL genes. Gene expression was significantly higher in association with the highest versus lowest category of bulky and M1dG-DNA adducts for five and six genes, respectively. Gene expression levels were significantly lower for 11 genes in association with the highest versus lowest category of plasma AR CALUX® (chemically activated luciferase expression for androgens) (8 genes), ERα CALUX® (for estrogens) (2 genes), and DR CALUX® (for dioxins). Several SNPs (single-nucleotide polymorphisms) on chromosome 11 near FOLH1 significantly modified associations between androgen activity and MNBN frequency. Polymorphisms in EPHX1/2 and CYP2E1 were associated with MNBN. We measured in utero exposure to selected environmental carcinogens and circulating hormonally acting factors and detected associations with MN frequency in newborns circulating T lymphocytes. The results highlight mechanisms that may contribute to carcinogen-induced leukemia and require further research."	"Cornelia de Lange Syndrome: NIPBL haploinsufficiency downregulates canonical Wnt pathway in zebrafish embryos and patients fibroblasts. Cornelia de Lange Syndrome is a severe genetic disorder characterized by malformations affecting multiple systems, with a common feature of severe mental retardation. Genetic variants within four genes (NIPBL (Nipped-B-like), SMC1A, SMC3, and HDAC8) are believed to be responsible for the majority of cases; all these genes encode proteins that are part of the 'cohesin complex'. Cohesins exhibit two temporally separated major roles in cells: one controlling the cell cycle and the other involved in regulating the gene expression. The present study focuses on the role of the zebrafish nipblb paralog during neural development, examining its expression in the central nervous system, and analyzing the consequences of nipblb loss of function. Neural development was impaired by the knockdown of nipblb in zebrafish. nipblb-loss-of-function embryos presented with increased apoptosis in the developing neural tissues, downregulation of canonical Wnt pathway genes, and subsequent decreased Cyclin D1 (Ccnd1) levels. Importantly, the same pattern of canonical WNT pathway and CCND1 downregulation was observed in NIPBL-mutated patient-specific fibroblasts. Finally, chemical activation of the pathway in nipblb-loss-of-function embryos rescued the adverse phenotype and restored the physiological levels of cell death. "	"Cornelia de Lange individuals with new and recurrent SMC1A mutations enhance delineation of mutation repertoire and phenotypic spectrum. We report on the clinical and molecular characterization of eight patients, one male and seven females, with clinical diagnosis of Cornelia de Lange syndrome (CdLS), who were found to carry distinct mutations of the SMC1A gene. Five of the eight mutations are novel, with two involving amino acid residues previously described as altered in a different way. The other three have been reported each in a single case. Comparison of pairs of individuals with the same mutation indicates only partial overlap of their clinical phenotypes. The following novel missense mutations, all affecting highly conserved amino acid residues, were found: p.R398G in the N-terminal coiled-coil domain, p.V651M in the C-terminal coiled-coil/hinge junction, p.R693G in the C-terminal coiled-coil, and p.N1166T and p.L1189F in the C-terminal ABC cassette. The latter is localized in the H-loop, and represents the first mutation involving a functional motif of SMC1A protein. The effect of the mutations on SMC1A protein function has been predicted using four bioinformatic tools. All mutations except p.V651M were scored as pathogenic by three or four of the tools. p.V651M was found in the only male individual of our cohort, who presented with the most severe phenotype. This raises the issue of gender effect when addressing mutation-phenotype correlation for genes such as SMC1A, which incompletely escapes X-inactivation. Our clinical and molecular findings expand the total number of characterized SMC1A-mutated patients (from 44 to 52) and the restricted repertoire of SMC1A mutations (from 29 to 34), contributing to the molecular and clinical signature of SMC1A-based CdLS."	"Recurrent inactivation of STAG2 in bladder cancer is not associated with aneuploidy. Urothelial bladder cancer (UBC) is heterogeneous at the clinical, pathological and genetic levels. Tumor invasiveness (T) and grade (G) are the main factors associated with outcome and determine patient management. A discovery exome sequencing screen (n = 17), followed by a prevalence screen (n = 60), identified new genes mutated in this tumor coding for proteins involved in chromatin modification (MLL2, ASXL2 and BPTF), cell division (STAG2, SMC1A and SMC1B) and DNA repair (ATM, ERCC2 and FANCA). STAG2, a subunit of cohesin, was significantly and commonly mutated or lost in UBC, mainly in tumors of low stage or grade, and its loss was associated with improved outcome. Loss of expression was often observed in chromosomally stable tumors, and STAG2 knockdown in bladder cancer cells did not increase aneuploidy. STAG2 reintroduction in non-expressing cells led to reduced colony formation. Our findings indicate that STAG2 is a new UBC tumor suppressor acting through mechanisms that are different from its role in preventing aneuploidy. "	"Mutation spectrum and genotype-phenotype correlation in Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a clinically and genetically heterogeneous developmental disorder. Clinical features include growth retardation, intellectual disability, limb defects, typical facial dysmorphism, and other systemic involvement. The increased understanding of the genetic basis of CdLS has led to diagnostic improvement and expansion of the phenotype. Mutations in five genes (NIPBL, SMC1A, SMC3, RAD21, and HDAC8), all regulators or structural components of cohesin, have been identified. Approximately 60% of CdLS cases are due to NIPBL mutations, 5% caused by mutations in SMC1A, RAD21, and HDAC8 and one proband was found to carry a mutation in SMC3. To date, 311 CdLS-causing mutations are known including missense, nonsense, small deletions and insertions, splice site mutations, and genomic rearrangements. Phenotypic variability is seen both intra- and intergenically. This article reviews the spectrum of CdLS mutations with a particular emphasis on their correlation to the clinical phenotype. "	"Recurrent mutations in multiple components of the cohesin complex in myeloid neoplasms. Cohesin is a multimeric protein complex that is involved in the cohesion of sister chromatids, post-replicative DNA repair and transcriptional regulation. Here we report recurrent mutations and deletions involving multiple components of the cohesin complex, including STAG2, RAD21, SMC1A and SMC3, in different myeloid neoplasms. These mutations and deletions were mostly mutually exclusive and occurred in 12.1% (19/157) of acute myeloid leukemia, 8.0% (18/224) of myelodysplastic syndromes, 10.2% (9/88) of chronic myelomonocytic leukemia, 6.3% (4/64) of chronic myelogenous leukemia and 1.3% (1/77) of classical myeloproliferative neoplasms. Cohesin-mutated leukemic cells showed reduced amounts of chromatin-bound cohesin components, suggesting a substantial loss of cohesin binding sites on chromatin. The growth of leukemic cell lines harboring a mutation in RAD21 (Kasumi-1 cells) or having severely reduced expression of RAD21 and STAG2 (MOLM-13 cells) was suppressed by forced expression of wild-type RAD21 and wild-type RAD21 and STAG2, respectively. These findings suggest a role for compromised cohesin functions in myeloid leukemogenesis. "	"A case of cohesinopathy with a novel de-novo SMC1A splice site mutation. NA"	"siRNA-mediated knockdown of SMC1A expression suppresses the proliferation of glioblastoma cells. SMC1A is a member of cohesin complex which has essential functions in cell cycle progression and DNA repair. Therefore, we choose SMC1A as a target gene therapy of glioblastoma. It is well known that glioblastoma has very low survival rate because of ineffectiveness of conventional treatments. This study was designed to explore the possibilities of small interfering RNA (siRNA)-mediated SMC1A silencing as alternative method of treatment. We found that the lentivirus-mediated RNAi system efficiently decreased the expression level of SMC1A. Inhibiting SMC1A expression efficiently (P &lt; 0.001) resulted in inhibiting the proliferation and colony formation of U251 and U87MG cells. Moreover, we found that SMC1A silencing led to S cell-cycle arresting. Collectively, these results demonstrated the possibility of siRNA-mediated silencing of SMC1A as a therapeutic tool for the treatment of glioblastoma."	"The genomic landscape of cohesin-associated chromatin interactions. Cohesin is implicated in establishing tissue-specific DNA loops that target enhancers to promoters, and also localizes to sites bound by the insulator protein CTCF, which blocks enhancer-promoter communication. However, cohesin-associated interactions have not been characterized on a genome-wide scale. Here we performed chromatin interaction analysis with paired-end tag sequencing (ChIA-PET) of the cohesin subunit SMC1A in developing mouse limb. We identified 2264 SMC1A interactions, of which 1491 (65%) involved sites co-occupied by CTCF. SMC1A participates in tissue-specific enhancer-promoter interactions and interactions that demarcate regions of correlated regulatory output. In contrast to previous studies, we also identified interactions between promoters and distal sites that are maintained in multiple tissues but are poised in embryonic stem cells and resolve to tissue-specific activated or repressed chromatin states in the mouse embryo. Our results reveal the diversity of cohesin-associated interactions in the genome and highlight their role in establishing the regulatory architecture of development. "	"Could a patient with SMC1A duplication be classified as a human cohesinopathy? The disorders caused by mutations in genes encoding subunits and accessory proteins of cohesin complex are collectively termed as cohesinopathies. The best known cohesinopathy is Cornelia de Lange Syndrome (CdLS), which is a multisystem developmental disorder characterized by facial dysmorphism, limb malformations, growth and cognitive impairment. Mutations in five genes, encoding subunits of the cohesin complex (SMC1A, SMC3, RAD21) and its regulators (NIPBL, HDAC8), are responsible for ∼ 70% of CdLS cases. We describe a 16-year-old boy with facial dysmorphism, growth retardation, intellectual disability, hirsutism and small hands, who has a small Supernumerary Marker Chromosome (sSMC) present in mosaic form. sSMC is composed of two duplicated segments encompassing 17 genes including SMC1A gene, at the regions Xp11.22 and Xp11.21q11.1. Clinical comparison between our patient with a previously reported individual with a SMC1A duplication and four male carriers of similar sSMC reported in databases, suggest that they all share clinical features related to cohesinopathies. Although our patient does not have the classical CdLS craniofacial phenotype, he has pre and postnatal growth retardation, intellectual disability and mild musculoskeletal anomalies, features commonly seen in patients with cohesinopathies."	"Knocking down SMC1A inhibits growth and leads to G2/M arrest in human glioma cells. Cohesin, a multiunit complex of SMC1A, SMC3 and Rad21, associates with chromatin after mitosis and holds sister chromatids together following DNA replication. It has been reported that SMC1A is mutated in some cancer types, leading to genomic instability and abnormal cell growth. In this study, we investigated the role of SMC1A in human glioma. We found that SMC1A was expressed at abnormally high levels in human glioma tissue and in cultured U251 glioma cells. Knocking down SMC1A expression in U251 cells with SMC1A-targeted interfering RNAs inhibited cell growth and induced G2/M cell cycle arrest. Furthermore, expression of the cell cycle associated gene CCNB1IP1 was dramatically increased, whereas expression of Cyclin B1 was decreased in SMC1A-deficienct U251 cells. These results suggest that SMC1A upregulation is involved in the pathogenesis of glioma."	"Genomic imbalances in patients with a clinical presentation in the spectrum of Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a rare autosomal-dominant disorder characterised by facial dysmorphism, growth and psychomotor developmental delay and skeletal defects. To date, causative mutations in the NIPBL (cohesin regulator) and SMC1A (cohesin structural subunit) genes account for &gt; 50% and 6% of cases, respectively. We recruited 50 patients with a CdLS clinical diagnosis or with features that overlap with CdLS, who were negative for mutations at NIPBL and SMC1A at molecular screening. Chromosomal rearrangements accounting for the clinical diagnosis were screened for using array Comparative Genomic Hybridisation (aCGH). Four patients were shown to carry imbalances considered to be candidates for having pathogenic roles in their clinical phenotypes: patient 1 had a 4.2 Mb de novo deletion at chromosome 20q11.2-q12; patient 2 had a 4.8 Mb deletion at chromosome 1p36.23-36.22; patient 3 carried an unbalanced translocation, t(7;17), with a 14 Mb duplication of chromosome 17q24.2-25.3 and a 769 Kb deletion at chromosome 7p22.3; patient 4 had an 880 Kb duplication of chromosome 19p13.3, for which his mother, who had a mild phenotype, was also shown to be a mosaic. Notwithstanding the variability in size and gene content of the rearrangements comprising the four different imbalances, they all map to regions containing genes encoding factors involved in cell cycle progression or genome stability. These functional similarities, also exhibited by the known CdLS genes, may explain the phenotypic overlap between the patients included in this study and CdLS. Our findings point to the complexity of the clinical diagnosis of CdLS and confirm the existence of phenocopies, caused by imbalances affecting multiple genomic regions, comprising 8% of patients included in this study, who did not have mutations at NIPBL and SMC1A. Our results suggests that analysis by aCGH should be recommended for CdLS spectrum cases with an unexplained clinical phenotype and included in the flow chart for diagnosis of cases with a clinical evaluation in the CdLS spectrum."	"High rate of mosaicism in individuals with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a well known malformation syndrome for which five causative genes are known, accounting for ∼55-65% of cases. In this study, we hypothesised that mosaicism might explain some of the ∼35-45% of cases without detectable mutation in DNA derived from lymphocytes; we investigated the frequency of NIPBL mutations in buccal cells in individuals negative for mutations in any of the five genes in lymphocytes; and we evaluated the efficiency of obtaining DNA from buccal swabs and the best strategy for optimal mutation detection in CdLS. Buccal swabs were obtained from eight mutation positive and 13 mutation negative individuals with clinically diagnosed CdLS, following informed consent. We then forwarded instructions and a single mouth swab to the families; if subsequently insufficient DNA was obtained, we re-sent two mouth swabs. Buccal cells were screened for NIPBL mutations using Sanger sequencing techniques. Sufficient DNA for analysis was obtained in 21/22 individuals. In all six tested individuals with a known NIPBL mutation and in two with a known SMC1A mutation, the mutation was confirmed in buccal cells. In 10 of the 13 tested individuals without detectable mutation in lymphocytes a NIPBL mutation could be detected in buccal cells. Clinically there were no significant differences between patients with a germline and mosaic NIPBL mutation. Somatic mosaicism for an NIPBL mutation is frequent (10/44; 23%) clinically in reliably diagnosed CdLS individuals. Obtaining buccal swabs at the time a blood sample is obtained will facilitate adequate molecular analysis of clinically diagnosed CdLS patients."	"SMC1A knockdown induces growth suppression of human lung adenocarcinoma cells through G1/S cell cycle phase arrest and apoptosis pathways in vitro. SMC1A (structural maintenance of chromosomes 1A), which encodes a structural subunit of the cohesin protein complex, is necessary for the process of sister chromatid cohesion during the cell cycle. Mutation and deregulation of SMC1A are highly relevant to diverse human diseases, including Cornelia de Lange syndrome and malignant carcinomas. In order to further investigate the role of SMC1A in the oncogenesis of lung cancer, SMC1A-specific short hairpin RNA (shRNA)-expressing lentivirus (Lv-shSMC1A) was constructed and used to infect A549 and H1299 cells. SMC1A mRNA and protein expression levels were downregulated in A549 and H1299 cells as demonstrated by real-time PCR and western blot assays. We found that SMC1A inhibition resulted in significantly impaired proliferation and colony formation as well as reduced invasiveness of tumor cells. Notably, Lv-shSMC1A-infected cancer cells exhibited a greater proportion of cells in the G0/G1 phase, but a lower proportion of S phase cells, compared to the parent or Lv-shCon infected cancer cells. Moreover, a greater proportion of sub-G1 apoptotic cells was observed in Lv-shSMC1A-infected cells. These results suggest that SMC1A is a novel proliferation regulator that promotes the growth of lung cancer cells, and that down-regulation of SMC1A expression induces growth suppression of A549 and H1299 cells via G1/S cell cycle phase arrest and apoptosis pathways. Therefore, SMC1A may serve as a new molecular target for lung cancer therapy."	"Molecular characterization of a mosaic NIPBL deletion in a Cornelia de Lange patient with severe phenotype. Cornelia de Lange syndrome (CdLS, OMIM #122470, #300590, #610759, #614701, #300882) is a rare neurodevelopmental syndrome characterized by growth retardation, intellectual disability, dysmorphic facial features, multisystem malformations, and limb reduction defects. Wide variability of phenotypes is common among CdLS patients. Mutations in genes encoding either regulators (NIPBL, HDAC8) or subunits (SMC1A, SMC3, RAD21) of the cohesin complex, are altogether found in approximately 65% of CdLS patients. We describe a CdLS patient with classic severe phenotype who was found negative to mutations in the NIPBL and SMC1A genes by DHPLC and direct sequencing. MLPA analysis performed to disclose potential intragenic NIPBL deletions/duplications, suggested a partial deletion which was confirmed by FISH with a BAC clone encompassing the NIPBL region that highlighted asymmetric signals in a fraction of cells (72%). The occurrence of a genomic deletion in mosaic condition was validated by array-CGH analysis. Long-range PCR and sequencing of the junction fragment mapped the telomeric and the centromeric breakpoint within NIPBL IVS1 and IVS32, respectively. Both deletion breakpoints were embedded in a microsatellite region that might be the motif directly mediating this large deletion by an intrachromatid recombination mechanism. Consistent with the molecular analyses, the patient displayed a severe phenotype that was characterized by drastic CdLS clinical signs including premature death. This case provides a second example of mosaicism in CdLS. Despite mitigated by mosaicism, the large intragenic deletion identified in the present case was poorly tolerated due to the high mosaicism level. Based on these data, overlooked cases of mosaicism may lead to underestimated mutation rates of known genes and may also contribute to the clinical heterogeneity of CdLS."	"[Cornelia de Lange syndrome: report of a case and the review of literature on 17 cases]. To explore the clinical characteristics of Cornelia de Lange Syndrome (CdLS) and to review the latest clinical research reports. Clinical and laboratory data of one case of neonatal CdLS are reported, and literature on 17 cases of CdLS in China and the international reports of the clinical and molecular biological research on this disease were reviewed. (1) The patient was an infant with intrauterine growth retardation and born as a term small for gestational age infant with specific facial features, bone abnormality of extremities, and patent ductus arteriosus (PDA). She also had severe feeding difficulty and slow weight gain. She was followed up till 4 months of age and showed severe developmental retardation. (2) The total number of past reported case of CdLS in China was 17 with a male to female ratio of 6:12. The average age of diagnosis was 17 months. The following specific facial features could be observed: synophrys, long and curved eyelashes, hirsutism, microcephalus, low hairline, broad depressed nasal bridge, long prominent philtrum, and high palate. Most of the patients were complicated with mental retardation, recurrent vomiting or feeding difficulty, abnormal muscle tone, cutis marmorata, hypophalangism, and genitalia anomaly. Clinical manifestations of Chinese patients were similar to those of the overseas reports. The karyotype of 15 cases was investigated and was normal. The etiology of CdLS is unknown. There is no specific treatment. The commonest causes of death are lung diseases caused by gastroesophageal reflex/aspirate related pneumonia. Typical clinical manifestations of CdLS are specific facial features (mainly synophrys, long and curved eyelashes, long prominent philtrum), complications of multi-system malformations (mainly growth and developmental retardation, esophagogastric reflex, hypophalangism), related gene mutations occurred in NIPBL, SMC1A, and SMC3 gene."	"Proteomic profile identifies dysregulated pathways in Cornelia de Lange syndrome cells with distinct mutations in SMC1A and SMC3 genes. Mutations in cohesin genes have been identified in Cornelia de Lange syndrome (CdLS), but its etiopathogenetic mechanisms are still poorly understood. To define biochemical pathways that are affected in CdLS, we analyzed the proteomic profile of CdLS cell lines carrying mutations in the core cohesin genes, SMC1A and SMC3. Dysregulated protein expression was found in CdLS probands compared to controls. The proteomics analysis was able to discriminate between probands harboring mutations in the different domains of the SMC proteins. In particular, proteins involved in the response to oxidative stress were specifically down-regulated in hinge mutated probands. In addition, the finding that CdLS cell lines show an increase in global oxidative stress argues that it could contribute to some CdLS phenotypic features such as premature physiological aging and genome instability. Finally, the c-MYC gene represents a convergent hub lying at the center of dysregulated pathways, and is down-regulated in CdLS. This study allowed us to highlight, for the first time, specific biochemical pathways that are affected in CdLS, providing plausible causal evidence for some of the phenotypic features seen in CdLS."	"Rare copy number variants contribute to congenital left-sided heart disease. Left-sided congenital heart disease (CHD) encompasses a spectrum of malformations that range from bicuspid aortic valve to hypoplastic left heart syndrome. It contributes significantly to infant mortality and has serious implications in adult cardiology. Although left-sided CHD is known to be highly heritable, the underlying genetic determinants are largely unidentified. In this study, we sought to determine the impact of structural genomic variation on left-sided CHD and compared multiplex families (464 individuals with 174 affecteds (37.5%) in 59 multiplex families and 8 trios) to 1,582 well-phenotyped controls. 73 unique inherited or de novo CNVs in 54 individuals were identified in the left-sided CHD cohort. After stringent filtering, our gene inventory reveals 25 new candidates for LS-CHD pathogenesis, such as SMC1A, MFAP4, and CTHRC1, and overlaps with several known syndromic loci. Conservative estimation examining the overlap of the prioritized gene content with CNVs present only in affected individuals in our cohort implies a strong effect for unique CNVs in at least 10% of left-sided CHD cases. Enrichment testing of gene content in all identified CNVs showed a significant association with angiogenesis. In this first family-based CNV study of left-sided CHD, we found that both co-segregating and de novo events associate with disease in a complex fashion at structural genomic level. Often viewed as an anatomically circumscript disease, a subset of left-sided CHD may in fact reflect more general genetic perturbations of angiogenesis and/or vascular biology."	"Congenital heart disease in Cornelia de Lange syndrome: phenotype and genotype analysis. Congenital heart disease (CHD) has been reported to occur in 14-70% of individuals with Cornelia de Lange syndrome (CdLS, OMIM 122470) and accounts for significant morbidity and mortality when present. Charts from a cohort of 479 patients with CdLS were reviewed for cardiac evaluations, gene testing and information to determine phenotypic severity. Two hundred fifty-nine individuals had either documented structural defects or minor cardiac findings. The presence of CHD was then quantified as a function of mutation status and severity of CdLS: mild, moderate, or severe. Different types of CHD were also evaluated by mutation status to assess for any genotype-phenotype correlation. NIPBL, SMC1A, and SMC3 mutation-positive patients were equally likely to have CHD, although the number of SMC1A and SMC3 mutation-positive patients were small in comparison. Structural CHDs were more likely to be present in individuals with moderate and severe CdLS than in the mild phenotype. This study evaluates the trends of CHD seen in the CdLS population and correlates these findings with genotype."	"Clonal evolution of preleukemic hematopoietic stem cells precedes human acute myeloid leukemia. Given that most bone marrow cells are short-lived, the accumulation of multiple leukemogenic mutations in a single clonal lineage has been difficult to explain. We propose that serial acquisition of mutations occurs in self-renewing hematopoietic stem cells (HSCs). We investigated this model through genomic analysis of HSCs from six patients with de novo acute myeloid leukemia (AML). Using exome sequencing, we identified mutations present in individual AML patients harboring the FLT3-ITD (internal tandem duplication) mutation. We then screened the residual HSCs and detected some of these mutations including mutations in the NPM1, TET2, and SMC1A genes. Finally, through single-cell analysis, we determined that a clonal progression of multiple mutations occurred in the HSCs of some AML patients. These preleukemic HSCs suggest the clonal evolution of AML genomes from founder mutations, revealing a potential mechanism contributing to relapse. Such preleukemic HSCs may constitute a cellular reservoir that should be targeted therapeutically for more durable remissions."	"HDAC8 mutations in Cornelia de Lange syndrome affect the cohesin acetylation cycle. Cornelia de Lange syndrome (CdLS) is a dominantly inherited congenital malformation disorder, caused by mutations in the cohesin-loading protein NIPBL for nearly 60% of individuals with classical CdLS, and by mutations in the core cohesin components SMC1A (~5%) and SMC3 (&lt;1%) for a smaller fraction of probands. In humans, the multisubunit complex cohesin is made up of SMC1, SMC3, RAD21 and a STAG protein. These form a ring structure that is proposed to encircle sister chromatids to mediate sister chromatid cohesion and also has key roles in gene regulation. SMC3 is acetylated during S-phase to establish cohesiveness of chromatin-loaded cohesin, and in yeast, the class I histone deacetylase Hos1 deacetylates SMC3 during anaphase. Here we identify HDAC8 as the vertebrate SMC3 deacetylase, as well as loss-of-function HDAC8 mutations in six CdLS probands. Loss of HDAC8 activity results in increased SMC3 acetylation and inefficient dissolution of the ‘used’ cohesin complex released from chromatin in both prophase and anaphase. SMC3 with retained acetylation is loaded onto chromatin, and chromatin immunoprecipitation sequencing analysis demonstrates decreased occupancy of cohesin localization sites that results in a consistent pattern of altered transcription seen in CdLS cell lines with either NIPBL or HDAC8 mutations."	"Mutation analysis in Chinese patients with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a dominant multisystem developmental disorder and related to mutations of the NIPBL, SMC1A, and SMC3 genes. So far, there has been no report of a mutation analysis in Chinese patients with CdLS, while 12 cases have been clinically described. In the present study, we tried to search for pathogenic mutations of the NIPBL, SMC1A, and SMC3 genes in four patients with CdLS from four unrelated Chinese families. The mutational analysis of the NIPBL, SMC1A, and SMC3 genes by direct sequencing revealed a heterozygous splice-site mutation c.4321G&gt;T(p.V1441L) at exon 20 of NIPBL in proband 2 and a novel heterozygous splice-site mutation c.6589+5G&gt;C at intron 38 of NIPBL in proband 3, which was showed by reverse transcription polymerase chain reaction to generate both the full-length and an alternatively spliced transcript with an exon 38 deletion. This is the first report of the mutation analysis of NIPBL in China and our findings both expand the mutation spectrum of NIPBL and provide data for further understanding of the diverse and variable effects of NIPBL mutations."	"RAD21 mutations cause a human cohesinopathy. The evolutionarily conserved cohesin complex was originally described for its role in regulating sister-chromatid cohesion during mitosis and meiosis. Cohesin and its regulatory proteins have been implicated in several human developmental disorders, including Cornelia de Lange (CdLS) and Roberts syndromes. Here we show that human mutations in the integral cohesin structural protein RAD21 result in a congenital phenotype consistent with a &quot;cohesinopathy.&quot; Children with RAD21 mutations display growth retardation, minor skeletal anomalies, and facial features that overlap findings in individuals with CdLS. Notably, unlike children with mutations in NIPBL, SMC1A, or SMC3, these individuals have much milder cognitive impairment than those with classical CdLS. Mechanistically, these mutations act at the RAD21 interface with the other cohesin proteins STAG2 and SMC1A, impair cellular DNA damage response, and disrupt transcription in a zebrafish model. Our data suggest that, compared to loss-of-function mutations, dominant missense mutations result in more severe functional defects and cause worse structural and cognitive clinical findings. These results underscore the essential role of RAD21 in eukaryotes and emphasize the need for further understanding of the role of cohesin in human development."	"Germline mosaicism in Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a genetic disorder associated with delayed growth, intellectual disability, limb reduction defects, and characteristic facial features. Germline mosaicism has been a described mechanism for CdLS when there are several affected offspring of apparently unaffected parents. Presently, the recurrence risk for CdLS has been estimated to be as high as 1.5%; however, this figure may be an underrepresentation. We report on the molecularly defined germline mosaicism cases from a large CdLS database, representing the first large case series on germline mosaicism in CdLS. Of the 12 families, eight have been previously described; however, four have not. No one specific gene mutation, either in the NIPBL or the SMC1A gene, was associated with an increased risk for germline mosaicism. Suspected or confirmed cases of germline mosaicism in our database range from a conservative 3.4% up to 5.4% of our total cohort. In conclusion, the potential reproductive recurrence risk due to germline mosiacism should be addressed in prenatal counseling for all families who have had a previously affected pregnancy or child with CdLS."	"Intragenic and large NIPBL rearrangements revealed by MLPA in Cornelia de Lange patients. Cornelia de Lange syndrome (CdLS) is a rare multisystemic congenital anomaly disorder that is characterised by intellectual disability and growth retardation, congenital heart defects, intestinal anomalies, facial dysmorphism (including synophyris and high arched eyebrows) and limb reduction defects. Mutations in three cohesin-associated genes encoding a key regulator (NIPBL, chr 5p13.2) and one structural component of the cohesin ring (SMC1A, chr Xp11) occur in about 65% of CdLS patients. NIPBL is the major causative gene, and accounts for 40-60% of CdLS patients as shown by a number of mutational screening studies that indicate a wide mutational repertoire of mainly small deletions and point mutations. Only a few data are available concerning the occurrence of large NIPBL rearrangements or intragenic deletions or duplications involving whole exons. We used multiplex ligation-dependent probe amplification (MLPA) to study 132 CdLS patients negative to the standard mutation NIPBL test out of a cohort of 200 CdLS patients. A total of 7 out of 132 patients were found to carry NIPBL alterations, including two large gene deletions extending beyond the gene, four intragenic multi- or single-exon deletions and one single-exon duplication. These findings show that MLPA leads to a 5.3% increase in the detection of mutations when used in addition to the standard NIPBL scan, and contributes per se to the molecular diagnosis of 3.5% (7/200) of clinically diagnosed CdLS patients. It is recommended that MLPA be included in the CdLS diagnostic flow chart."	"NIPBL rearrangements in Cornelia de Lange syndrome: evidence for replicative mechanism and genotype-phenotype correlation. Cornelia de Lange syndrome (CdLS) is a multisystem congenital anomaly disorder characterized by mental retardation, limb abnormalities, distinctive facial features, and hirsutism. Mutations in three genes involved in sister chromatid cohesion, NIPBL, SMC1A, and SMC3, account for ~55% of CdLS cases. The molecular etiology of a significant fraction of CdLS cases remains unknown. We hypothesized that large genomic rearrangements of cohesin complex subunit genes may play a role in the molecular etiology of this disorder. Custom high-resolution oligonucleotide array comparative genomic hybridization analyses interrogating candidate cohesin genes and breakpoint junction sequencing of identified genomic variants were performed. Of the 162 patients with CdLS, for whom mutations in known CdLS genes were previously negative by sequencing, deletions containing NIPBL exons were observed in 7 subjects (~5%). Breakpoint sequences in five patients implicated microhomology-mediated replicative mechanisms-such as serial replication slippage and fork stalling and template switching/microhomology-mediated break-induced replication-as a potential predominant contributor to these copy number variations. Most deletions are predicted to result in haploinsufficiency due to heterozygous loss-of-function mutations; such mutations may result in a more severe CdLS phenotype. Our findings suggest a potential clinical utility to testing for copy number variations involving NIPBL when clinically diagnosed CdLS cases are mutation-negative by DNA-sequencing studies."	"SMC1A codon 496 mutations affect the cellular response to genotoxic treatments. Cornelia de Lange syndrome is a pleiotropic developmental syndrome characterized by growth and cognitive impairment, facial dysmorphic features, limb anomalies, and other malformations. Mutations in core cohesin genes SMC1A and SMC3, and the cohesin regulatory gene, NIPBL, have been identified in Cornelia de Lange syndrome probands. Patients with NIPBL mutations have more severe phenotypes when compared to those with mutations in SMC1A or SMC3. To date, 26 distinct SMC1A mutations have been identified in patients with Cornelia de Lange syndrome. Here, we describe a 3-year-old girl with psychomotor and cognitive impairment, mild facial dysmorphic features but no limb anomaly, heterozygous for a c.1487G&gt;A mutation in SMC1A which predicts p.Arg496His. We show that this mutation leads to an impairment of the cellular response to genotoxic treatments."	"In-frame multi-exon deletion of SMC1A in a severely affected female with Cornelia de Lange Syndrome. Cornelia de Lange Syndrome (CdLS) is a genetically heterogeneous disorder characterized by dysmorphic facial features, cleft palate, limb defects, growth retardation, and developmental delay. Approximately 60% of patients with CdLS have an identifiable mutation in the NIPBL gene at 5p13.2. Recently, an X-linked form of CdLS with a generally milder phenotype was attributed to mutation of the structural maintenance of chromosomes 1A gene (SMC1A) at Xp11.22. Relatively few CdLS patients with mutations in SMC1A are known; female carriers have minor facial dysmorphism and cognitive deficiency without major structural abnormalities. To date, all mutations identified in SMC1A are missense or small in-frame deletions that preserve the open reading frame of the gene and likely have a dominant-negative effect. We report on a female with monosomy X mosaicism and a phenotype suggestive of a severe form of CdLS who presented with growth and mental retardation, multiple congenital anomalies, and facial dysmorphism. Array CGH confirmed mosaic monosomy X and identified a novel deletion of SMC1A spanning multiple exons, suggesting a possible loss-of-function effect. Sequencing of both genomic and cDNA demonstrated an 8,152 bp deletion of genomic DNA from exon 13 to intron 16. Although a loss-of-function effect cannot be excluded, the resulting mRNA remains in-frame and is expressed in peripheral blood lymphocytes, suggesting a dominant-negative effect. We hypothesize that the size of this deletion compared to previously reported mutations may account for this patient's severe CdLS phenotype. The presence of mosaic monosomy X may also modify the phenotype."	"Identification of a novel de novo mutation in the NIPBL gene in an Iranian patient with Cornelia de Lange syndrome: A case report. Cornelia de Lange syndrome is characterized by dysmorphic facial features, hirsutism, severe growth and developmental delay. Germline mutations in the NIPBL gene with an autosomal dominant pattern and in the SMC1A gene with an X-linked pattern have been identified in Cornelia de Lange syndrome. A two-month-old Iranian boy who showed multiple congenital anomalies was referred to the genetic center of a welfare organization in southwest Iran. He was the second child of a non-consanguineous marriage, born after full term with normal delivery. His birth weight was 3110 g, his length was 46 cm and his head circumference was 30 cm. Both parents were clinically asymptomatic, with no positive history of any deformity in their respective families. Sequencing of the NIPBL gene from our patient revealed a single-base deletion of thymidine in exon 10 (c.516delT). This mutation presumably results in premature termination at codon 526. We did not observe this mutation in the parents of our patient with Cornelia de Lange syndrome. The results presented here enlarge the spectrum of NIPBL gene mutations associated with Cornelia de Lange syndrome by identifying a novel de novo mutation in an Iranian patient with Cornelia de Lange syndrome and further support the hypothesis that NIPBL mutations are disease-causing mutations leading to Cornelia de Lange syndrome."	"A zebrafish model of Roberts syndrome reveals that Esco2 depletion interferes with development by disrupting the cell cycle. The human developmental diseases Cornelia de Lange Syndrome (CdLS) and Roberts Syndrome (RBS) are both caused by mutations in proteins responsible for sister chromatid cohesion. Cohesion is mediated by a multi-subunit complex called cohesin, which is loaded onto chromosomes by NIPBL. Once on chromosomes, cohesin binding is stabilized in S phase upon acetylation by ESCO2. CdLS is caused by heterozygous mutations in NIPBL or cohesin subunits SMC1A and SMC3, and RBS is caused by homozygous mutations in ESCO2. The genetic cause of both CdLS and RBS reside within the chromosome cohesion apparatus, and therefore they are collectively known as &quot;cohesinopathies&quot;. However, the two syndromes have distinct phenotypes, with differences not explained by their shared ontology. In this study, we have used the zebrafish model to distinguish between developmental pathways downstream of cohesin itself, or its acetylase ESCO2. Esco2 depleted zebrafish embryos exhibit features that resemble RBS, including mitotic defects, craniofacial abnormalities and limb truncations. A microarray analysis of Esco2-depleted embryos revealed that different subsets of genes are regulated downstream of Esco2 when compared with cohesin subunit Rad21. Genes downstream of Rad21 showed significant enrichment for transcriptional regulators, while Esco2-regulated genes were more likely to be involved the cell cycle or apoptosis. RNA in situ hybridization showed that runx1, which is spatiotemporally regulated by cohesin, is expressed normally in Esco2-depleted embryos. Furthermore, myca, which is downregulated in rad21 mutants, is upregulated in Esco2-depleted embryos. High levels of cell death contributed to the morphology of Esco2-depleted embryos without affecting specific developmental pathways. We propose that cell proliferation defects and apoptosis could be the primary cause of the features of RBS. Our results show that mutations in different elements of the cohesion apparatus have distinct developmental outcomes, and provide insight into why CdLS and RBS are distinct diseases."	"Consequences of metaphase II oocyte cryopreservation on mRNA content. We studied the consequences of freezing/thawing processes on mRNA contents in MII oocytes after slow-freezing/rapid thawing (SF/RT) and vitrification/warming (V/W) protocols, and compared the results to fresh MII oocytes. We quantified the nuclear transcript mRNA responsible for the translation of proteins belonging either to trans-regulatory protein family or to functional structural proteins such as proteins involved in DNA structural organization (NAP1L1, TOP1, H1F0H1), chromosomal structure maintenance (SMC, SCC3, RAD21, SMC1A, SMC1B, STAG3, REC8), mitochondrial energetic pathways (ATP5GJ, SDHC), cell cycle regulation and processes (CLTA, MAPK6, CKS2) and staminal cell potency-development competence stage (DPPA3, OCT4, FOXJ2). Surplus MII oocytes were donated from patients in IVF cycles and divided in three groups of 15 oocytes. Group 1 was comprised of non-cryopreserved oocytes and Groups 2 and 3 underwent SF/RT and V/W procedures, respectively. There was an overall decrease of mRNA extracted from cryopreserved oocytes compared to control group. Only 39.4% of mRNA content were preserved after SF/RT while 63.3% of mRNA content were maintained after V/W. Oocyte cryopreservation is associated with molecular injury associated with the decrease of stored mRNA. However the V/W protocol is more conservative than SF/RT resulting in a level of mRNA sufficient to maintain biologic functions in the subsequent fertilized oocyte."	"Cornelia de Lange Syndrome with NIPBL gene mutation: a case report. Cornelia de Lange Syndrome (CdLS) is a multiple congenital anomaly characterized by distinctive facial features, upper limb malformations, growth and cognitive retardation. The diagnosis of the syndrome is based on the distinctive clinical features. The etiology is still not clear. Mutations in the sister chromatid cohesion factor genes NIPBL, SMC1A (also called SMC1L1) and SMC3 have been suggested as probable cause of this syndrome. We experienced a case of newborn with CdLS showing bushy eyebrows and synophrys, long curly eyelashes, long philtrum, downturned angles of the mouth and thin upper lips, cleft palate, micrognathia, excessive body hair, micromelia of both hands, flexion contracture of elbows and hypertonicity. We detected a NIPBL gene mutation in a present neonate with CdLS, the first report in Korea."	"Cornelia de Lange syndrome case due to genomic rearrangements including NIPBL. Cornelia de Lange syndrome (CdLS) is a rare multisystem congenital anomaly disorder characterized by growth and developmental delay, distinctive facial dysmorphism, limb malformations and multiple organ defects. Approximately 60-65% of the CdLS subjects have mutation in one of three cohesin proteins, a main regulator of cohesin-associated protein, NIPBL, and two components of the cohesin ring structure SMC1A and SMC3. A prominent role for cohesin is to control chromosome segregation during cell divisions. We have performed MLPA analysis in a group of 11 children with the CdLS but without identifiable point mutations in the NIPBL and SMC1A genes. In a single patient, we identified a large deletion encompassing exons 35 to 47 of the NIPBL gene. Our finding was validated by aCGH and further characterized by long-range PCR and DNA sequencing of the breakpoint junction."	"Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) (OMIM # 122470, #300590 and #610759) is an autosomal dominant disorder that is classically characterized by typical facial features, growth and mental retardation, upper limb defects, hirsutism, gastrointestinal and other visceral system involvement. Heterozygous mutations in the cohesin regulator, NIPBL, or the cohesin structural components SMC1A and SMC3, have been identified in approximately 65% of individuals with CdLS. Cohesin regulates sister chromatid cohesion during the mitotis and meiosis. In addition, cohesin has been demonstrated to play a critical role in the regulation of gene expression. Furthermore, multiple proteins in the cohesin pathway are also involved in additional fundamental biological events such as double strand DNA break repair, chromatin remodeling and maintaining genomic stability. Here, we will discuss the biology ofcohesin and its associated factors, with emphasis on the clinical manifestations of CdLS and mechanistic studies of the CdLS related proteins."	"Hypertrophic cardiomyopathy in a girl with Cornelia de Lange syndrome due to mutation in SMC1A. NA"	"Facial diagnosis of mild and variant CdLS: Insights from a dysmorphologist survey. Cornelia de Lange syndrome (CdLS) is a dominant disorder with classic severe forms and milder atypical variants. Central to making the diagnosis is identification of diagnostic facial features. With the recognition that patients with SMC1A and SMC3 mutations have milder, atypical features, we surveyed 65 dysmorphologists using facial photographs from 32 CdLS patients with the goals of (1) Illustrating examples of milder patients with SMC1A mutations and (2) Obtaining objective data to determine which facial features were useful and misleading in making a diagnosis of CdLS. Clinicians were surveyed whether the patient had CdLS or another diagnosis, the certainty of response and the clinical features used to support each response. Using only facial photographs, an average of 24 cases (75%) were accurately diagnosed per clinician. Correct diagnoses were made in 90% of classic CdLS and 87% of non-CdLS cases, however, only 54% of mild or variant CdLS were correctly diagnosed by respondents. We confirmed that CdLS is most accurately diagnosed in childhood and the diagnosis becomes increasingly difficult with age. This survey demonstrated that emphasis is placed on the eyebrows, nasal features, prominent upper lip and micrognathia. In addition, the presence of fuller, atypical eyebrows, a prominent nasal bridge and significant prognathism with age dissuaded survey takers from arriving at a diagnosis of CdLS in individuals with mild NIPBL and SMC1A mutations. This work underscores the difficulty in diagnosing patients with mild and variant CdLS and serves to objectively classify both useful and misleading features in the diagnosis of CdLS."	"Low SMC1A protein expression predicts poor survival in acute myeloid leukemia. Age is a strong adverse prognostic factor in acute myeloid leukemia. Little is known about the biology of acute myeloid leukemia in elderly patients. The aim of this study was to identify genes with age-dependent changes of expression in leukemic blasts and their relevance for the patient prognosis. Gene expression profiling was carried out by mRNA microarray analysis from blasts of 67 adult acute myeloid leukemia patients of different age (range, 17-80 years). Among the genes that correlated with age, PRPF4 and SMC1A were selected for protein expression studies on a tissue array containing bone marrow histologies of 135 patients with newly diagnosed AML of different ages. A significant correlation between mRNA expression levels and patient age was shown by 131 genes. Increasing age was associated with significantly decreased mRNA levels of SMC1A. On the protein level, expression of SMC1A was low or absent in 74 out of 116 acute myeloid leukemia specimens. Importantly, patients with low protein expression levels of SMC1A experienced significantly shortened event free (2.6 months versus 10.3 months, p=0.003) and overall survival (10.4 months versus 22.6 months, p=0.015). The SMC1A protein expression level remained a significant prognostic factor for event free survival (p=0.014) with a borderline significance for overall survival (p=0.066) in a multivariate analysis. SMC1A protein expression might play a role in the determination of the prognosis and might have possible implications in therapy decision in patients with acute myeloid leukemia."	"Genome-wide siRNA screen for modulators of cell death induced by proteasome inhibitor bortezomib. Multiple pathways have been proposed to explain how proteasome inhibition induces cell death, but mechanisms remain unclear. To approach this issue, we performed a genome-wide siRNA screen to evaluate the genetic determinants that confer sensitivity to bortezomib (Velcade (R); PS-341). This screen identified 100 genes whose knockdown affected lethality to bortezomib and to a structurally diverse set of other proteasome inhibitors. A comparison of three cell lines revealed that 39 of 100 genes were commonly linked to cell death. We causally linked bortezomib-induced cell death to the accumulation of ASF1B, Myc, ODC1, Noxa, BNIP3, Gadd45alpha, p-SMC1A, SREBF1, and p53. Our results suggest that proteasome inhibition promotes cell death primarily by dysregulating Myc and polyamines, interfering with protein translation, and disrupting essential DNA damage repair pathways, leading to programmed cell death."	"Genome-wide DNA methylation analysis in cohesin mutant human cell lines. The cohesin complex has recently been shown to be a key regulator of eukaryotic gene expression, although the mechanisms by which it exerts its effects are poorly understood. We have undertaken a genome-wide analysis of DNA methylation in cohesin-deficient cell lines from probands with Cornelia de Lange syndrome (CdLS). Heterozygous mutations in NIPBL, SMC1A and SMC3 genes account for ∼65% of individuals with CdLS. SMC1A and SMC3 are subunits of the cohesin complex that controls sister chromatid cohesion, whereas NIPBL facilitates cohesin loading and unloading. We have examined the methylation status of 27 578 CpG dinucleotides in 72 CdLS and control samples. We have documented the DNA methylation pattern in human lymphoblastoid cell lines (LCLs) as well as identified specific differential DNA methylation in CdLS. Subgroups of CdLS probands and controls can be classified using selected CpG loci. The X chromosome was also found to have a unique DNA methylation pattern in CdLS. Cohesin preferentially binds to hypo-methylated DNA in control LCLs, whereas the differential DNA methylation alters cohesin binding in CdLS. Our results suggest that in addition to DNA methylation multiple mechanisms may be involved in transcriptional regulation in human cells and in the resultant gene misexpression in CdLS."	"Mutations and variants in the cohesion factor genes NIPBL, SMC1A, and SMC3 in a cohort of 30 unrelated patients with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) manifests facial dysmorphic features, growth and cognitive impairment, and limb malformations. Mutations in three genes (NIPBL, SMC1A, and SMC3) of the cohesin complex and its regulators have been found in affected patients. Here, we present clinical and molecular characterization of 30 unrelated patients with CdLS. Eleven patients had mutations in NIPBL (37%) and three patients had mutations in SMC1A (10%), giving an overall rate of mutations of 47%. Several patients shared the same mutation in NIPBL (p.R827GfsX2) but had variable phenotypes, indicating the influence of modifiers in CdLS. Patients with NIPBL mutations had a more severe phenotype than those with mutations in SMC1A or those without identified mutations. However, a high incidence of palate defects was noted in patients with SMC1A mutations. In addition, we observed a similar phenotype in both male and female patients with SMC1A mutations. Finally, we report the first patient with an SMC1A mutation and the Sandifer complex."	"Somatic mosaicism in Cornelia de Lange syndrome: a further contributor to the wide clinical expressivity? Cornelia de Lange syndrome (CdLS) is a rare, congenital syndrome characterized by growth retardation, dysmorphic face, mental retardation and limb reduction defects. Clinical manifestations of CdLS can be extremely variable. Mutations in NIPBL, SMC1A and SMC3 genes, encoding for a regulator and two subunits of the cohesin complex, respectively, are found in 60-65% of CdLS patients. We report on a male with CdLS who is mosaic for the c.2827delA mutation in the NIPBL gene. Allele quantitation by pyrosequencing showed the presence of the mutation in about 10% and 33% of DNA samples from peripheral blood and buccal smears, respectively. The patient shows a complex phenotype: growth and psychomotor retardation are characteristic of the severe forms of CdLS, while the absence of severe limb reduction defects and major malformations are typical of the mild phenotype. He also has depigmentation areas following Blashko lines, an unusual finding in CdLS, which has been associated with mosaicism in other genetic conditions. This case represents the first evidence of somatic mosaicism in CdLS and explains the mild phenotype in the patient as compared to that predicted by a truncating mutation. Besides confirming the clinical and genetic heterogeneity of CdLS, this case also raises the likely underestimated mutation rate of known genes and points to the complexity of addressing genotype-phenotype correlations."	"Clinical problems and everyday abilities of a group of Italian adolescent and young adults with Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS) is a multiple congenital anomaly/mental retardation syndrome, characterized by distinctive facial features, generalized hirsutism, growth and cognitive dysfunction, microcephaly and limb abnormalities. Currently mutations of three different genes, NIPBL, SMC1A, and SMC3, are known to be related to the CdLS phenotype with an overall detection rate of about 50%. Few data are available regarding the level of autonomy in everyday life of CdLS patients. Due to the collaboration of the Italian parents' support group, we collected information regarding clinical and behavioral problems and everyday abilities of 45 CdLS patients between 13 and 39 years, using a specific multi-item questionnaire. To better analyze clinical information we divided our patients into three groups according to age: 13-20, 21-29, and over 30 years. Data from clinical, malformative and behavioral problems were not significantly different from those described for CdLS patients. Regarding personal autonomies this study showed the significant limitations of these individuals. It is interesting to observe that patients between 21 and 29 years, showed the best performance, while those over 30 had more severe difficulties. We suggest that these data be interpreted as a minimum level of autonomy achievable for CdLS adolescent/young adults, as the level of care, rehabilitation and stimulation of these patients has increased in the last 30 years."	"Spectrum and consequences of SMC1A mutations: the unexpected involvement of a core component of cohesin in human disease. SMC1A encodes a structural component of the cohesin complex, which is necessary for sister chromatid cohesion. In addition to its canonical role, cohesin has been shown to be involved in gene expression regulation and maintenance of genome stability. Recently, it has been demonstrated that mutations in the SMC1A gene are responsible for Cornelia de Lange syndrome (CdLS). CdLS is a genetically heterogeneous multisystem developmental disorder with variable expressivity, typically characterized by consistent facial dysmorphia, upper extremity malformations, hirsutism, cardiac defects, growth and cognitive retardation, gastrointestinal abnormalities, and other systemic involvement. SMC1A mutations have also been identified in colorectal cancers. So far a total of 26 different mutations of the SMC1A gene have been reported. All mutations reported to date are either missense or small in-frame deletions that maintain the open reading frame and presumably result in a protein with residual function. The mutations involve all domains of the protein but appear to cluster in key functional loci. At the functional level, elucidation of the effects that specific SMC1A mutations have on cohesin activity will be necessary to understand the etiopathology of CdLS and its possible involvement in tumorigenesis. In this review, we summarize the current knowledge of SMC1A mutations."	"Cornelia de Lange syndrome, cohesin, and beyond. Cornelia de Lange syndrome (CdLS) (OMIM #122470, #300590 and #610759) is a dominant genetic disorder with multiple organ system abnormalities which is classically characterized by typical facial features, growth and mental retardation, upper limb defects, hirsutism, gastrointestinal and other visceral system involvement. Mutations in three cohesin proteins, a key regulator of cohesin, NIPBL, and two structural components of the cohesin ring SMC1A and SMC3, etiologically account for about 65% of individuals with CdLS. Cohesin controls faithful chromosome segregation during the mitotic and meiotic cell cycles. Multiple proteins in the cohesin pathway are also involved in additional fundamental biological events such as double-strand DNA break repair and long-range regulation of transcription. Moreover, chromosome instability was recently associated with defective sister chromatid cohesion in several cancer studies, and an increasing number of human developmental disorders is being reported to result from disruption of this pathway. Here, we will discuss the human disorders caused by alterations of cohesin function (termed 'cohesinopathies'), with an emphasis on the clinical manifestations of CdLS and mechanistic studies of the CdLS-related proteins."	"Expression of cohesin and condensin genes during zebrafish development supports a non-proliferative role for cohesin. Cohesin and condensin are similar, but distinct multi-subunit protein complexes that have well-described roles in sister chromatid cohesion and chromosome condensation, respectively. Recently it has emerged that cohesin, and proteins that regulate cohesin function have additional developmental roles. To further understand the role of cohesin in development, we analyzed the expression of genes encoding cohesin and condensin subunits in developing zebrafish embryos and juvenile brain. We found that cohesin subunits are expressed in a pattern that is similar (but not quite identical) to the expression of condensin subunits. Cohesin genes smc1a, rad21, pds5b and smc3 were expressed in the forebrain ventricular zone, the tectum, the mid-hindbrain boundary, the fourth ventricle, branchial arches, the otic vesicle, the eye and faintly in the developing pectoral fins. Condensin genes smc2 and smc4 were expressed in the forebrain ventricular zone, the tectum, the mid-hindbrain boundary, the fourth ventricle, branchial arches, eye and pectoral fins. Condensin genes were additionally expressed in the hindbrain proliferative zone, an area in which cohesin genes were not detected. A comparison with pcna expression and BrdU incorporation revealed that the expression of cohesins and condensins closely overlap with zones of proliferation. Interestingly, cohesin genes were expressed in non-proliferating cells flanking rhombomere boundaries in the developing brain. In mature brain and eye, cohesin was expressed in both proliferating cells and in broad zones of post-mitotic cells. The distribution of cohesin and condensin mRNAs supports existing evidence for a non-cell cycle role for cohesin in the developing brain."	"SMC1A expression and mechanism of pathogenicity in probands with X-Linked Cornelia de Lange syndrome. Cornelia de Lange Syndrome (CdLS) is a dominantly inherited heterogeneous genetic disorder with multisystem abnormalities. Sixty percent of probands with CdLS have heterozygous mutations in the Nipped-B-like (NIPBL) gene, 5% have mutations in the SMC1A gene, and one proband was found to have a mutation in the SMC3 gene. Cohesin is a multisubunit complex consisting of a SMC1A and SMC3 heterodimer and two non-SMC subunits. SMC1A is located on the human X chromosome and is reported to escape X inactivation. Twenty-nine unrelated CdLS probands with 21 unique SMC1A mutations have been identified including seven males. All mutations identified to date are either missense or small deletions, with all presumably preserving the protein open reading frame. Both wild-type and mutant alleles are expressed. Females quantitatively express twice the amount of SMC1A mRNA compared to males. The transcriptional profiling of 23 selected genes is different in SMC1A mutant probands, controls, and NIPBL mutant probands. These results suggest that mechanistically SMC1A-related CdLS is not due to altered levels of the SMC1A transcript, but rather that the mutant proteins maintain a residual function in males and enact a dominant negative effect in females."	"Transcriptional dysregulation in NIPBL and cohesin mutant human cells. Cohesin regulates sister chromatid cohesion during the mitotic cell cycle with Nipped-B-Like (NIPBL) facilitating its loading and unloading. In addition to this canonical role, cohesin has also been demonstrated to play a critical role in regulation of gene expression in nondividing cells. Heterozygous mutations in the cohesin regulator NIPBL or cohesin structural components SMC1A and SMC3 result in the multisystem developmental disorder Cornelia de Lange Syndrome (CdLS). Genome-wide assessment of transcription in 16 mutant cell lines from severely affected CdLS probands has identified a unique profile of dysregulated gene expression that was validated in an additional 101 samples and correlates with phenotypic severity. This profile could serve as a diagnostic and classification tool. Cohesin binding analysis demonstrates a preference for intergenic regions suggesting a cis-regulatory function mimicking that of a boundary/insulator interacting protein. However, the binding sites are enriched within the promoter regions of the dysregulated genes and are significantly decreased in CdLS proband, indicating an alternative role of cohesin as a transcription factor."	"2-D PAGE-based comparison of proteasome inhibitor bortezomib in sensitive and resistant mantle cell lymphoma. Although gene expression following bortezomib treatment has been previously explored, direct effects of bortezomib-induced proteasome inhibition on protein level has not been analyzed so far. Using 2-D PAGE in five mantle cell lymphoma cell lines, we screened for cellular protein level alterations following treatment with 25 nM bortezomib for up to 4 h. Using MS, we identified 38 of the 41 most prominent reliably detected protein spots. Twenty-one were affected in all cell lines, whereas the remaining 20 protein spots were exclusively altered in sensitive cell lines. Western blot analysis was performed for 17 of the 38 identified proteins and 70.6% of the observed protein level alterations in 2-D gels was verified. All cell lines exhibited alterations of the cellular protein levels of heat shock-induced protein species (HSPA9, HSP7C, HSPA5, HSPD1), whereas sensitive cell lines also displayed altered cellular protein levels of energy metabolism (ATP5B, AK5, TPI1, ENO-1, ALDOC, GAPDH), RNA and transcriptional regulation (HNRPL, SFRS12) and cell division (NEBL, ACTB, SMC1A, C20orf23) as well as tumor suppressor genes (ENO-1, FH). These proteins clustered in a tight interaction network centered on the major cellular checkpoints TP53. The results were confirmed in primary mantle cell lymphoma, thus confirming the critical role of these candidate proteins of proteasome inhibition."	"Genomic duplication resulting in increased copy number of genes encoding the sister chromatid cohesion complex conveys clinical consequences distinct from Cornelia de Lange. Cornelia de Lange syndrome (CdLS) is a multisystem congenital anomaly disorder. Heterozygous point mutations in three genes (NIPBL, SMC3 and SMC1A), encoding components of the sister chromatid cohesion apparatus, are responsible for approximately 50-60% of CdLS cases. Recent studies have revealed a high degree of genomic rearrangements (for example, deletions and duplications) in the human genome, which result in gene copy number variations (CNVs). CNVs have been associated with a wide range of both Mendelian and complex traits including disease phenotypes such as Charcot-Marie-Tooth type 1A, Pelizaeus-Merzbacher, Parkinson, Alzheimer, autism and schizophrenia. Increased versus decreased copy number of the same gene can potentially cause either similar or different clinical features. This study identified duplications on chromosomes 5 or X using genome wide array comparative genomic hybridisation (aCGH). The duplicated regions contain either the NIPBL or the SMC1A genes. Junction sequences analyses revealed the involvement of three genomic rearrangement mechanisms. The patients share some common features including mental retardation, developmental delay, sleep abnormalities, and craniofacial and limb defects. The systems affected are the same as in CdLS, but clinical manifestations are distinct from CdLS; particularly the absence of the CdLS facial gestalt. The results confirm the notion that duplication CNV of genes can be a common mechanism for human genetic diseases. Defining the clinical consequences for a specific gene dosage alteration represents a new &quot;reverse genomics&quot; trend in medical genetics that is reciprocal to the traditional approach of delineation of the common clinical phenotype preceding the discovery of the genetic aetiology."	"Cornelia de Lange syndrome mutations in SMC1A or SMC3 affect binding to DNA. Cornelia de Lange syndrome (CdLS) is a clinically heterogeneous developmental disorder characterized by facial dysmorphia, upper limb malformations, growth and cognitive retardation. Mutations in the sister chromatid cohesion factor genes NIPBL, SMC1A and SMC3 are present in approximately 65% of CdLS patients. In addition to their canonical roles in chromosome segregation, the cohesin proteins are involved in other biological processes such as regulation of gene expression, DNA repair and maintenance of genome stability. To gain insights into the molecular basis of CdLS, we analyzed the affinity of mutated SMC1A and SMC3 hinge domains for DNA. Mutated hinge dimers bind DNA with higher affinity than wild-type proteins. SMC1A- and SMC3-mutated CdLS cell lines display genomic instability and sensitivity to ionizing radiation and interstrand crosslinking agents. We propose that SMC1A and SMC3 CdLS mutations affect the dynamic association between SMC proteins and DNA, providing new clues to the underlying molecular cause of CdLS."	"The Wip1 phosphatase PPM1D dephosphorylates SQ/TQ motifs in checkpoint substrates phosphorylated by PI3K-like kinases. The wild-type p53-induced phosphatase Wip1 (PP2Cdelta or PPM1D) is a member of the protein phosphatase 2C (PP2C) family and controls cell cycle checkpoints in response to DNA damage. p38 MAPK and ATM were identified as physiological substrates of Wip1, and we previously reported a substrate motif that was defined using variants of the p38(180pT 182pY) diphosphorylated peptide, TDDEMpTGpYVAT. However, the substrate recognition motifs for Wip1 have not been fully defined as the sequences surrounding the targeted residues in ATM and p38 MAPK appear to be unrelated. Using a recombinant human Wip1 catalytic domain (rWip1), in this study we measured the kinetic parameters for variants of the ATM(1981pS) phosphopeptide, AFEEGpSQSTTI. We found that rWip1 dephosphorylates phosphoserine and phosphothreonine in the p(S/T)Q motif, which is an essential requirement for substrate recognition. In addition, acidic, hydrophobic, or aromatic amino acids surrounding the p(S/T)Q sequence have a positive influence, while basic amino acids have a negative influence on substrate dephosphorylation. The kinetic constants allow discrimination between true substrates and nonsubstrates of Wip1, and we identified several new putative substrates that include HDM2, SMC1A, ATR, and Wip1 itself. A three-dimensional molecular model of Wip1 with a bound substrate peptide and site-directed mutagenesis analyses suggested that the important residues for ATM(1981pS) substrate recognition are similar but not identical to those for the p38(180pT 182pY) substrate. Results from this study should be useful for predicting new physiological substrates that may be regulated by Wip1 and for developing selective anticancer drugs."	"Natural history of aging in Cornelia de Lange syndrome. Observations about the natural history of aging in Cornelia de Lange syndrome (CdLS) are made, based on 49 patients from a multidisciplinary clinic for adolescents and adults. The mean age was 17 years. Although most patients remain small, obesity may develop. Gastroesophageal reflux persists or worsens, and there are early long-term sequelae, including Barrett esophagus in 10%; other gastrointestinal findings include risk for volvulus, rumination, and chronic constipation. Submucous cleft palate was found in 14%, most undetected before our evaluation. Chronic sinusitis was noted in 39%, often with nasal polyps. Blepharitis improves with age; cataracts and detached retina may occur. Decreased bone density is observed, with occasional fractures. One quarter have leg length discrepancy and 39% scoliosis. Most females have delayed or irregular menses but normal gynecologic exams and pap smears. Benign prostatic hypertrophy occurred in one male prior to 40 years. The phenotype is variable, but there is a distinct pattern of facial changes with aging. Premature gray hair is frequent; two patients had cutis verticis gyrata. Behavioral issues and specific psychiatric diagnoses, including self-injury, anxiety, attention-deficit disorder, autistic features, depression, and obsessive-compulsive behavior, often worsen with age. This work presents some evidence for accelerated aging in CdLS. Of 53% with mutation analysis, 55% demonstrate a detectable mutation in NIPBL or SMC1A. Although no specific genotype-phenotype correlations have been firmly established, individuals with missense mutations in NIPBL and SMC1A appear milder than those with other mutations. Based on these observations, recommendations for clinical management of adults with CdLS are made."	"Mutations in cohesin complex members SMC3 and SMC1A cause a mild variant of cornelia de Lange syndrome with predominant mental retardation. Mutations in the cohesin regulators NIPBL and ESCO2 are causative of the Cornelia de Lange syndrome (CdLS) and Roberts or SC phocomelia syndrome, respectively. Recently, mutations in the cohesin complex structural component SMC1A have been identified in two probands with features of CdLS. Here, we report the identification of a mutation in the gene encoding the complementary subunit of the cohesin heterodimer, SMC3, and 14 additional SMC1A mutations. All mutations are predicted to retain an open reading frame, and no truncating mutations were identified. Structural analysis of the mutant SMC3 and SMC1A proteins indicate that all are likely to produce functional cohesin complexes, but we posit that they may alter their chromosome binding dynamics. Our data indicate that SMC3 and SMC1A mutations (1) contribute to approximately 5% of cases of CdLS, (2) result in a consistently mild phenotype with absence of major structural anomalies typically associated with CdLS, and (3) in some instances, result in a phenotype that approaches that of apparently nonsyndromic mental retardation."	"Incidence and clinical features of X-linked Cornelia de Lange syndrome due to SMC1L1 mutations. Cornelia de Lange syndrome (CdLS) is a multisystem developmental disorder characterized by facial dysmorphism, growth and mental retardation, microcephaly, and various malformations. Heterozygous mutations in the NIPBL gene have been detected in approximately 45% of affected individuals. Recently, a second CdLS gene, mapping to the X chromosome, has been identified: SMC1L1 (structural maintenance of chromosomes 1-like 1; or SMC1A). In order to estimate the incidence and refine the clinical presentation of X-linked CdLS, we have screened a series of 11 CdLS boys carrying no NIPBL anomaly. We have identified two novel de novo SMC1L1 missense mutations (c.587G&gt;A [p.Arg196His] and c.3254A&gt;G [p.Tyr1085Cys]). Our results confirm that SMC1L1 mutations cause CdLS and support the view that SMC1L1 accounts for a significant fraction of boys with unexplained CdLS. Furthermore, we suggest that SMC1L1 mutations have milder effects than NIPBL mutations with respect to pre- and postnatal growth retardation and associated malformations. If confirmed, these data may have important implications for directing mutation screening in CdLS."	"Identification of Xenopus SMC protein complexes required for sister chromatid cohesion. The structural maintenance of chromosomes (SMC) family is a growing family of chromosomal ATPases. The founding class of SMC protein complexes, condensins, plays a central role in mitotic chromosome condensation. We report here a new class of SMC protein complexes containing XSMC1 and XSMC3, Xenopus homologs of yeast Smc1p and Smc3p, respectively. The protein complexes (termed cohesins) exist as two major forms with sedimentation coefficients of 9S and 14S. 9S cohesin is a heterodimer of XSMC1 and XSMC3, whereas 14S cohesin contains three additional subunits. One of them has been identified as a Xenopus homolog of the Schizosaccharomyces pombe Rad21p implicated in DNA repair and the Saccharomyces cerevisiae Scc1p/Mcd1p implicated in sister chromatid cohesion. 14S cohesin binds to interphase chromatin independently of DNA replication and dissociates from it at the onset of mitosis. Immunodepletion of cohesins during interphase causes defects in sister chromatid cohesion in subsequent mitosis, whereas condensation is unaffected. These results suggest that proper assembly of mitotic chromosomes is regulated by two distinct classes of SMC protein complexes, cohesins and condensins."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"UPF3B"	"complex neurodevelopmental disorder"	"UPF3B mutations including a novel synonymous variant associated with absent speech implicate nonsense mediated mRNA decay as a regulator of neurodevelopmental disorder gene networks. Loss-of-function mutations of the X-chromosome gene UPF3B cause male neurodevelopmental disorders (NDDs) via largely unknown mechanisms. We investigated initially by interrogating a novel synonymous UPF3B variant in a male with absent speech. In-silico and functional studies using cell lines derived from this individual show altered UPF3B RNA splicing. The resulting mRNA species encodes a frame-shifted protein with a premature termination codon (PTC) predicted to elicit degradation via nonsense mediated mRNA decay (NMD). UPF3B mRNA was reduced in the cell line, and no UPF3B protein was produced, confirming a loss-of-function allele. UPF3B is itself involved in the NMD mechanism which degrades both PTC-bearing mutant transcripts and also many physiological transcripts. RNAseq analysis showed that ~ 1.6% of mRNAs exhibited altered expression. These mRNA changes overlapped and correlated with those we identified in additional cell lines obtained from individuals harbouring other UPF3B mutations, permitting us to interrogate pathogenic mechanisms of UPF3B associated NDDs. We identified 102 genes consistently deregulated across all UPF3B mutant cell lines. Of the 51 upregulated genes, 75% contained an NMD-targeting feature thus identifying high-confidence direct NMD targets. Intriguingly, 22 of the dysregulated genes encoded known NDD genes, suggesting UPF3B-dependent NMD regulates gene networks critical for cognition and behaviour. Indeed, we show that 78.5% of all NDD genes encode a transcript predicted to be targeted by NMD. These data describe the first synonymous UPF3B mutation in a patient with prominent speech and language disabilities, and identify plausible mechanisms of pathology downstream of UPF3B mutations involving the deregulation of NDD-gene networks."	"A Moderate Blast Exposure Results in Dysregulated Gene Network Activity Related to Cell Death, Survival, Structure, and Metabolism. Blast exposure is common in military personnel during training and combat operations, yet biological mechanisms related to cell survival and function that coordinate recovery remain poorly understood. This study explored how moderate blast exposure influences gene expression; specifically, gene-network changes following moderate blast exposure. On day 1 (baseline) of a 10-day military training program, blood samples were drawn, and health and demographic information collected. Helmets equipped with bilateral sensors worn throughout training measured overpressure in pounds per square inch (psi). On day 7, some participants experienced moderate blast exposure (peak pressure ≥5 psi). On day 10, 3 days post-exposure, blood was collected and compared to baseline with RNA-sequencing to establish gene expression changes. Based on dysregulation data from RNA-sequencing, followed by top gene networks identified with Ingenuity Pathway Analysis, a subset of genes was validated (NanoString). Five gene networks were dysregulated; specifically, two highly significant networks: (1) Cell Death and Survival (score: 42), including 70 genes, with 50 downregulated and (2) Cell Structure, Function, and Metabolism (score: 41), including 69 genes, with 41 downregulated. Genes related to ubiquitination, including neuronal development and repair: UPF1, RNA Helicase and ATPase (UPF1) was upregulated while UPF3 Regulator of Nonsense Transcripts Homolog B (UPF3B) was downregulated. Genes related to inflammation were upregulated, including AKT serine/threonine kinase 1 (AKT1), a gene coordinating cellular recovery following TBIs. Moderate blast exposure induced significant gene expression changes including gene networks involved in (1) cell death and survival and (2) cellular development and function. The present findings may have implications for understanding blast exposure pathology and subsequent recovery efforts."	"Microarray analysis of genes from animals treated with a traditional formulation ChandraprabhaVati reveals its therapeutic targets. Traditional medicinal preparations have not received global acceptance, and their therapeutic benefits remain disputed due to lack of scientific evidence on their mechanism of action. Microarray analysis has emerged as a powerful technique that can aid in understanding the complex signaling networks activated by these formulations and thereby assess their beneficial as well as adverse effects. The present work aims to investigate the differential influence of ChandraprabhaVati, Ayurvedic formulation used in the treatment of diabetes, anemia, urinary, respiratory, skin and liver disorders. The RNA from the liver of rats treated with different doses of ChandraprabhaVati for 28 days was isolated and studied for the genome-wide changes in the expression. The results revealed several molecular targets that could contribute to the therapeutic effects of ChandraprabhaVati. Several genes have been differentially expressed, among those miRNAs miR-434, miR877, and miRlet7e contribute to the anti-diabetic, anti-fibrotic and anti-inflammatory of CPV. The rejuvenative activity of CPV may be due to the MeOX1 and Upf3b genes. Up-regulation of Hbaa2 gene facilitates the anti-anemic effect. Interestingly gender-specific differential expressions of genes were also observed. Rab3d were found to be altered in female when compared to male animals. Thus the microarray data for the CPV treated animals has revealed molecular targets that may be responsible for the various known therapeutic effects and also identified new beneficial effects of CPV."	"Molecular and Clinical Characterization of a Novel Nonsense Variant in Exon 1 of the UPF3B Gene Found in a Large Spanish Basque Family (MRX82). X-linked intellectual disability (XLID) is known to explain up to 10% of the intellectual disability in males. A large number of families in which intellectual disability is the only clinically consistent manifestation have been described. While linkage analysis and candidate gene testing were the initial approaches to find genes and variants, next generation sequencing (NGS) has accelerated the discovery of more and more XLID genes. Using NGS, we resolved the genetic cause of MRX82 (OMIM number 300518), a large Spanish Basque family with five affected males with intellectual disability and a wide phenotypic variability among them despite having the same pathogenic variant. Although the previous linkage study had mapped the locus to an interval of 7.6Mb in Xq24-Xq25 of the X chromosome, this region contained too many candidate genes to be analysed using conventional approaches. NGS revealed a novel nonsense variant: c.118C &gt; T; p.Gln40* in UPF3B, a gene previously implicated in XLID that encodes a protein involved in nonsense-mediated mRNA decay (NMD). Further molecular studies showed that the mRNA transcript was not completely degraded by NMD. However, UPF3B protein was not detected by conventional Western Blot analysis at least downstream of the 40 residue demonstrating that the phenotype could be due to the loss of functional protein. This is the first report of a premature termination codon before the three functional domains of the UPF3B protein and these results directly implicate the absence of these domains with XLID, autism and some dysmorphic features."	"Identification of a novel DNA repair-related prognostic signature predicting survival of patients with hepatocellular carcinoma. Hepatocellular carcinoma (HCC) is the sixth most lethal neoplasm worldwide. Traditional biomarkers often exploit the relationship between a certain gene and cancer progression, but they cannot predict patient survival or prognosis accurately. We aim to construct a new DNA repair-related gene signature that combines several genes to improve prognosis prediction in HCC. We selected an HCC mRNA sequencing (mRNA-seq) dataset (n=365) from The Cancer Genome Atlas (TCGA), and gene set enrichment analysis (GSEA) was used to explore bioinformatics information and further screen genes. We then built a gene signature based on the Cox proportional hazards regression model. GSEA revealed that the hallmark DNA repair gene set was significantly upregulated in the tumor phenotype. A set of seven genes, namely, ADA, FEN1, POLR2G, SAC3D1, SEC61A1, SF3A3, and UPF3B, were significantly a ssociated with overall survival (OS) and used to form a gene signature. The signature risk score was calculated and used to divide patients into high- and low-risk groups. The high-risk group showed worse prognosis (log-rank test p&lt;0.0001). Univariate and multivariate Cox regression analysis showed that the prognostic performance of this risk score signature was robust in different subgroups based on clinicopathological features, with p-values &lt;0.05 (HR=2.38, 95% CI (confidence interval) =1.355-4.184), indicating that it can serve as an independent prognostic indicator. We developed and identified a seven-gene signature related to the DNA repair process that can predict survival in HCC. It can be used as an effective classification tool and to guide clinical treatment."	"Quantitative proteomics reveals key roles for post-transcriptional gene regulation in the molecular pathology of facioscapulohumeral muscular dystrophy. DUX4 is a transcription factor whose misexpression in skeletal muscle causes facioscapulohumeral muscular dystrophy (FSHD). DUX4's transcriptional activity has been extensively characterized, but the DUX4-induced proteome remains undescribed. Here, we report concurrent measurement of RNA and protein levels in DUX4-expressing cells via RNA-seq and quantitative mass spectrometry. DUX4 transcriptional targets were robustly translated, confirming the likely clinical relevance of proposed FSHD biomarkers. However, a multitude of mRNAs and proteins exhibited discordant expression changes upon DUX4 expression. Our dataset revealed unexpected proteomic, but not transcriptomic, dysregulation of diverse molecular pathways, including Golgi apparatus fragmentation, as well as extensive post-transcriptional buffering of stress-response genes. Key components of RNA degradation machineries, including UPF1, UPF3B, and XRN1, exhibited suppressed protein, but not mRNA, levels, explaining the build-up of aberrant RNAs that characterizes DUX4-expressing cells. Our results provide a resource for the FSHD community and illustrate the importance of post-transcriptional processes in DUX4-induced pathology."	"ALS mutations of FUS suppress protein translation and disrupt the regulation of nonsense-mediated decay. Amyotrophic lateral sclerosis (ALS) is an incurable neurodegenerative disease characterized by preferential motor neuron death. Approximately 15% of ALS cases are familial, and mutations in the fused in sarcoma (FUS) gene contribute to a subset of familial ALS cases. FUS is a multifunctional protein participating in many RNA metabolism pathways. ALS-linked mutations cause a liquid-liquid phase separation of FUS protein in vitro, inducing the formation of cytoplasmic granules and inclusions. However, it remains elusive what other proteins are sequestered into the inclusions and how such a process leads to neuronal dysfunction and degeneration. In this study, we developed a protocol to isolate the dynamic mutant FUS-positive cytoplasmic granules. Proteomic identification of the protein composition and subsequent pathway analysis led us to hypothesize that mutant FUS can interfere with protein translation. We demonstrated that the ALS mutations in FUS indeed suppressed protein translation in N2a cells expressing mutant FUS and fibroblast cells derived from FUS ALS cases. In addition, the nonsense-mediated decay (NMD) pathway, which is closely related to protein translation, was altered by mutant FUS. Specifically, NMD-promoting factors UPF1 and UPF3b increased, whereas a negative NMD regulator, UPF3a, decreased, leading to the disruption of NMD autoregulation and the hyperactivation of NMD. Alterations in NMD factors and elevated activity were also observed in the fibroblast cells of FUS ALS cases. We conclude that mutant FUS suppresses protein biosynthesis and disrupts NMD regulation, both of which likely contribute to motor neuron death."	"Mechanism of Nonsense-Mediated mRNA Decay Stimulation by Splicing Factor SRSF1. The splicing factor SRSF1 promotes nonsense-mediated mRNA decay (NMD), a quality control mechanism that degrades mRNAs with premature termination codons (PTCs). Here we show that transcript-bound SRSF1 increases the binding of NMD factor UPF1 to mRNAs while in, or associated with, the nucleus, bypassing UPF2 recruitment and promoting NMD. SRSF1 promotes NMD when positioned downstream of a PTC, which resembles the mode of action of exon junction complex (EJC) and NMD factors. Moreover, splicing and/or EJC deposition increase the effect of SRSF1 on NMD. Lastly, SRSF1 enhances NMD of PTC-containing endogenous transcripts that result from various events. Our findings reveal an alternative mechanism for UPF1 recruitment, uncovering an additional connection between splicing and NMD. SRSF1's role in the mRNA's journey from splicing to decay has broad implications for gene expression regulation and genetic diseases."	"New insights into the interplay between the translation machinery and nonsense-mediated mRNA decay factors. Faulty mRNAs with a premature stop codon (PTC) are recognized and degraded by nonsense-mediated mRNA decay (NMD). Recognition of a nonsense mRNA depends on translation and on the presence of NMD-enhancing or the absence of NMD-inhibiting factors in the 3'-untranslated region. Our review summarizes our current understanding of the molecular function of the conserved NMD factors UPF3B and UPF1, and of the anti-NMD factor Poly(A)-binding protein, and their interactions with ribosomes translating PTC-containing mRNAs. Our recent discovery that UPF3B interferes with human translation termination and enhances ribosome dissociation in vitro, whereas UPF1 is inactive in these assays, suggests a re-interpretation of previous experiments and modification of prevalent NMD models. Moreover, we discuss recent work suggesting new functions of the key NMD factor UPF1 in ribosome recycling, inhibition of translation re-initiation and nascent chain ubiquitylation. These new findings suggest that the interplay of UPF proteins with the translation machinery is more intricate than previously appreciated, and that this interplay quality-controls the efficiency of termination, ribosome recycling and translation re-initiation."	"Diagnostic efficacy and new variants in isolated and complex autism spectrum disorder using molecular karyotyping. Autism spectrum disorder (ASD) is a group of the neurodevelopment disorders presenting as an isolated ASD or more complex forms, where a broader clinical phenotype comprised of developmental delay and intellectual disability is present. Both the isolated and complex forms have a significant causal genetic component and submicroscopic genomic copy number variations (CNV) are the most common identifiable genetic factor in these patients. The data on microarray testing in ASD cohorts are still accumulating and novel loci are often identified; therefore, we aimed to evaluate the diagnostic efficacy of the method and the relevance of implementing it into routine genetic testing in ASD patients. A genome-wide CNV analysis using the Agilent microarrays was performed in a group of 150 individuals with an isolated or complex ASD. Altogether, 11 (7.3%) pathogenic CNVs and 15 (10.0%) variants of unknown significance (VOUS) were identified, with the highest proportion of pathogenic CNVs in the subgroup of the complex ASD patients (14.3%). An interesting case of previously unreported partial UPF3B gene deletion was identified among the pathogenic CNVs. Among the CNVs with unknown significance, four VOUS involved genes with possible correlation to ASD, namely genes SNTG2, PARK2, CADPS2 and NLGN4X. The diagnostic efficacy of aCGH in our cohort was comparable with those of the previously reported and identified an important proportion of genetic ASD cases. Despite the continuum of published studies on the CNV testing in ASD cohorts, a considerable number of VOUS CNVs is still being identified, namely 10.0% in our study."	"ICE1 promotes the link between splicing and nonsense-mediated mRNA decay. The nonsense-mediated mRNA decay (NMD) pathway detects aberrant transcripts containing premature termination codons (PTCs) and regulates expression of 5-10% of non-aberrant human mRNAs. To date, most proteins involved in NMD have been identified by genetic screens in model organisms; however, the increased complexity of gene expression regulation in human cells suggests that additional proteins may participate in the human NMD pathway. To identify proteins required for NMD, we performed a genome-wide RNAi screen against &gt;21,000 genes. Canonical members of the NMD pathway were highly enriched as top hits in the siRNA screen, along with numerous candidate NMD factors, including the conserved ICE1/KIAA0947 protein. RNAseq studies reveal that depletion of ICE1 globally enhances accumulation and stability of NMD-target mRNAs. Further, our data suggest that ICE1 uses a putative MIF4G domain to interact with exon junction complex (EJC) proteins and promotes the association of the NMD protein UPF3B with the EJC."	"Antisense suppression of the nonsense mediated decay factor Upf3b as a potential treatment for diseases caused by nonsense mutations. About 11% of all human genetic diseases are caused by nonsense mutations that generate premature translation termination codons (PTCs) in messenger RNAs (mRNA). PTCs not only lead to the production of truncated proteins, but also often result in decreased mRNA abundance due to nonsense-mediated mRNA decay (NMD). Although pharmacological inhibition of NMD could be an attractive therapeutic approach for the treatment of diseases caused by nonsense mutations, NMD also regulates the expression of 10-20% of the normal transcriptome. Here, we investigate whether NMD can be inhibited to stabilize mutant mRNAs, which may subsequently produce functional proteins, without having a major impact on the normal transcriptome. We develop antisense oligonucleotides (ASOs) to systematically deplete each component in the NMD pathway. We find that ASO-mediated depletion of each NMD factor elicits different magnitudes of NMD inhibition in vitro and are differentially tolerated in normal mice. Among all of the NMD factors, Upf3b depletion is well tolerated, consistent with previous reports that UPF3B is not essential for development and regulates only a subset of the endogenous NMD substrates. While minimally impacting the normal transcriptome, Upf3b-ASO treatment significantly stabilizes the PTC-containing dystrophin mRNA in mdx mice and coagulation factor IX mRNA in a hemophilia mouse model. Furthermore, when combined with reagents promoting translational read-through, Upf3b-ASO treatment leads to the production of functional factor IX protein in hemophilia mice. These data demonstrate that ASO-mediated reduction of the NMD factor Upf3b could be an effective and safe approach for the treatment of diseases caused by nonsense mutations."	"An RNA decay factor wears a new coat: UPF3B modulates translation termination. Nonsense-mediated RNA decay (NMD) is a highly conserved and selective RNA turnover pathway that has been subject to intense scrutiny. NMD identifies and degrades subsets of normal RNAs, as well as abnormal mRNAs containing premature termination codons. A core factor in this pathway-UPF3B-is an adaptor protein that serves as an NMD amplifier and an NMD branch-specific factor. UPF3B is encoded by an X-linked gene that when mutated causes intellectual disability and is associated with neurodevelopmental disorders, including schizophrenia and autism. Neu-Yilik et al. now report a new function for UPF3B: it modulates translation termination. Using a fully reconstituted in vitro translation system, they find that UPF3B has two roles in translation termination. First, UPF3B delays translation termination under conditions that mimic premature translation termination. This could drive more efficient RNA decay by allowing more time for the formation of RNA decay-stimulating complexes. Second, UPF3B promotes the dissociation of post-termination ribosomal complexes that lack nascent peptide. This implies that UPF3B could promote ribosome recycling. Importantly, the authors found that UPF3B directly interacts with both RNA and the factors that recognize stop codons-eukaryotic release factors (eRFs)-suggesting that UPF3B serves as a direct regulator of translation termination. In contrast, a NMD factor previously thought to have a central regulatory role in translation termination-the RNA helicase UPF1-was found to indirectly interact with eRFs and appears to act exclusively in post-translation termination events, such as RNA decay, at least in vitro. The finding that an RNA decay-promoting factor, UFP3B, modulates translation termination has many implications. For example, the ability of UPF3B to influence the development and function of the central nervous system may be not only through its ability to degrade specific RNAs but also through its impact on translation termination and subsequent events, such as ribosome recycling."	"A Upf3b-mutant mouse model with behavioral and neurogenesis defects. Nonsense-mediated RNA decay (NMD) is a highly conserved and selective RNA degradation pathway that acts on RNAs terminating their reading frames in specific contexts. NMD is regulated in a tissue-specific and developmentally controlled manner, raising the possibility that it influences developmental events. Indeed, loss or depletion of NMD factors have been shown to disrupt developmental events in organisms spanning the phylogenetic scale. In humans, mutations in the NMD factor gene, UPF3B, cause intellectual disability (ID) and are strongly associated with autism spectrum disorder (ASD), attention deficit hyperactivity disorder (ADHD) and schizophrenia (SCZ). Here, we report the generation and characterization of mice harboring a null Upf3b allele. These Upf3b-null mice exhibit deficits in fear-conditioned learning, but not spatial learning. Upf3b-null mice also have a profound defect in prepulse inhibition (PPI), a measure of sensorimotor gating commonly deficient in individuals with SCZ and other brain disorders. Consistent with both their PPI and learning defects, cortical pyramidal neurons from Upf3b-null mice display deficient dendritic spine maturation in vivo. In addition, neural stem cells from Upf3b-null mice have impaired ability to undergo differentiation and require prolonged culture to give rise to functional neurons with electrical activity. RNA sequencing (RNAseq) analysis of the frontal cortex identified UPF3B-regulated RNAs, including direct NMD target transcripts encoding proteins with known functions in neural differentiation, maturation and disease. We suggest Upf3b-null mice serve as a novel model system to decipher cellular and molecular defects underlying ID and neurodevelopmental disorders."	"New functions in translation termination uncovered for NMD factor UPF3B. NA"	"Dual function of UPF3B in early and late translation termination. Nonsense-mediated mRNA decay (NMD) is a cellular surveillance pathway that recognizes and degrades mRNAs with premature termination codons (PTCs). The mechanisms underlying translation termination are key to the understanding of RNA surveillance mechanisms such as NMD and crucial for the development of therapeutic strategies for NMD-related diseases. Here, we have used a fully reconstituted in vitro translation system to probe the NMD proteins for interaction with the termination apparatus. We discovered that UPF3B (i) interacts with the release factors, (ii) delays translation termination and (iii) dissociates post-termination ribosomal complexes that are devoid of the nascent peptide. Furthermore, we identified UPF1 and ribosomes as new interaction partners of UPF3B. These previously unknown functions of UPF3B during the early and late phases of translation termination suggest that UPF3B is involved in the crosstalk between the NMD machinery and the PTC-bound ribosome, a central mechanistic step of RNA surveillance."	"Beyond quality control: The role of nonsense-mediated mRNA decay (NMD) in regulating gene expression. Nonsense-mediated mRNA decay (NMD) has traditionally been described as a quality control system that rids cells of aberrant mRNAs with crippled protein coding potential. However, transcriptome-wide profiling of NMD deficient cells identified a plethora of seemingly intact mRNAs coding for functional proteins as NMD targets. This led to the view that NMD constitutes an additional post-transcriptional layer of gene expression control involved in the regulation of many different biological pathways. Here, we review our current knowledge about the role of NMD in embryonic development and tissue-specific cell differentiation. We further summarize how NMD contributes to balancing of the integrated stress response and to cellular homeostasis of splicing regulators and NMD factors through auto-regulatory feedback loops. In addition, we discuss recent evidence that suggests a role for NMD as an innate immune response against several viruses. Altogether, NMD appears to play an important role in a broad spectrum of biological pathways, many of which still remain to be discovered."	"Nonsense in the testis: multiple roles for nonsense-mediated decay revealed in male reproduction. Nonsense-mediated mRNA decay, or NMD, is a quality control mechanism that identifies cytoplasmic mRNAs containing translational termination (stop) codons in specific contexts-either premature termination codons or unusually long 3΄ untranslated regions (UTRs)-and targets them for degradation. In recent studies, researchers in different labs have knocked out important genes involved in NMD, the up-frameshift genes Upf2 and Upf3a, and one component of chromatoid bodies, the Tudor domain-containing protein Tdrd6, and examined the consequences for spermatogenesis. Disruption of Upf2 during early stages of spermatogenesis resulted in disappearance of nearly all spermatogenic cells through loss of NMD. However, disruption of Upf2 during postmeiotic stages resulted in decreased long 3΄ UTR-mediated NMD but no interruption of exon junction-associated NMD. This difference in NMD targeting is possibly due to increased expression of Upf3a in postmeiotic germ cells that antagonizes the functions of Upf3b and somehow favors long 3΄ UTR-mediated NMD. Tying these all together, loss of Tdrd6, a structural component of the germ cell-specific cytoplasmic structures called chromatoid bodies, also resulted in loss of long 3΄ UTR-mediated NMD by interfering with UPF1/UPF2 interactions, delocalizing UPF1, and destroying chromatoid body integrity. These results suggest that chromatoid bodies play a specialized role in modulating the NMD machinery in postmeiotic spermatids."	"RNA decay, evolution, and the testis. NMD is a highly conserved pathway that degrades specific subsets of RNAs. There is increasing evidence for roles of NMD in development. In this commentary, we focus on spermatogenesis, a process dramatically impeded upon loss or disruption of NMD. NMD requires strict regulation for normal spermatogenesis, as loss of a newly discovered NMD repressor, UPF3A, also causes spermatogenic defects, most prominently during meiosis. We discuss the unusual evolution of UPF3A, whose paralog, UPF3B, has the opposite biochemical function and acts in brain development. We also discuss the regulation of NMD during germ cell development, including in chromatoid bodies, which are specifically found in haploid germ cells. The ability of NMD to coordinately degrade batteries of RNAs in a regulated fashion during development is akin to the action of transcriptional pathways, yet has the advantage of driving rapid changes in gene expression."	"Exon Junction Complexes Show a Distributional Bias toward Alternatively Spliced mRNAs and against mRNAs Coding for Ribosomal Proteins. The exon junction complex (EJC) connects spliced mRNAs to posttranscriptional processes including RNA localization, transport, and regulated degradation. Here, we provide a comprehensive analysis of bona fide EJC binding sites across the transcriptome including all four RNA binding EJC components eIF4A3, BTZ, UPF3B, and RNPS1. Integration of these data sets permits definition of high-confidence EJC deposition sites as well as assessment of whether EJC heterogeneity drives alternative nonsense-mediated mRNA decay pathways. Notably, BTZ (MLN51 or CASC3) emerges as the EJC subunit that is almost exclusively bound to sites 20-24 nucleotides upstream of exon-exon junctions, hence defining EJC positions. By contrast, eIF4A3, UPF3B, and RNPS1 display additional RNA binding sites suggesting accompanying non-EJC functions. Finally, our data show that EJCs are largely distributed across spliced RNAs in an orthodox fashion, with two notable exceptions: an EJC deposition bias in favor of alternatively spliced transcripts and against the mRNAs that encode ribosomal proteins."	"The Antagonistic Gene Paralogs Upf3a and Upf3b Govern Nonsense-Mediated RNA Decay. Gene duplication is a major evolutionary force driving adaptation and speciation, as it allows for the acquisition of new functions and can augment or diversify existing functions. Here, we report a gene duplication event that yielded another outcome--the generation of antagonistic functions. One product of this duplication event--UPF3B--is critical for the nonsense-mediated RNA decay (NMD) pathway, while its autosomal counterpart--UPF3A--encodes an enigmatic protein previously shown to have trace NMD activity. Using loss-of-function approaches in vitro and in vivo, we discovered that UPF3A acts primarily as a potent NMD inhibitor that stabilizes hundreds of transcripts. Evidence suggests that UPF3A acquired repressor activity through simple impairment of a critical domain, a rapid mechanism that may have been widely used in evolution. Mice conditionally lacking UPF3A exhibit &quot;hyper&quot; NMD and display defects in embryogenesis and gametogenesis. Our results support a model in which UPF3A serves as a molecular rheostat that directs developmental events."	"Human nonsense-mediated mRNA decay factor UPF2 interacts directly with eRF3 and the SURF complex. Nonsense-mediated mRNA decay (NMD) is an mRNA degradation pathway that regulates gene expression and mRNA quality. A complex network of macromolecular interactions regulates NMD initiation, which is only partially understood. According to prevailing models, NMD begins by the assembly of the SURF (SMG1-UPF1-eRF1-eRF3) complex at the ribosome, followed by UPF1 activation by additional factors such as UPF2 and UPF3. Elucidating the interactions between NMD factors is essential to comprehend NMD, and here we demonstrate biochemically and structurally the interaction between human UPF2 and eukaryotic release factor 3 (eRF3). In addition, we find that UPF2 associates with SURF and ribosomes in cells, in an UPF3-independent manner. Binding assays using a collection of UPF2 truncated variants reveal that eRF3 binds to the C-terminal part of UPF2. This region of UPF2 is partially coincident with the UPF3-binding site as revealed by electron microscopy of the UPF2-eRF3 complex. Accordingly, we find that the interaction of UPF2 with UPF3b interferes with the assembly of the UPF2-eRF3 complex, and that UPF2 binds UPF3b more strongly than eRF3. Together, our results highlight the role of UPF2 as a platform for the transient interactions of several NMD factors, including several components of SURF. "	"HIV-1 Recruits UPF1 but Excludes UPF2 to Promote Nucleocytoplasmic Export of the Genomic RNA. Unspliced, genomic HIV-1 RNA (vRNA) is a component of several ribonucleoprotein complexes (RNP) during the viral replication cycle. In earlier work, we demonstrated that the host upframeshift protein 1 (UPF1), a key factor in nonsense-mediated mRNA decay (NMD), colocalized and associated to the viral structural protein Gag during viral egress. In this work, we demonstrate a new function for UPF1 in the regulation of vRNA nuclear export. OPEN ACCESS Biomolecules 2015, 5 2809 We establish that the nucleocytoplasmic shuttling of UPF1 is required for this function and demonstrate that UPF1 exists in two essential viral RNPs during the late phase of HIV-1 replication: the first, in a nuclear export RNP that contains Rev, CRM1, DDX3 and the nucleoporin p62, and the second, which excludes these nuclear export markers but contains Gag in the cytoplasm. Interestingly, we observed that both UPF2 and the long isoform of UPF3a, UPF3aL, but not the shorter isoforms UPF3aS and UPF3b, are excluded from the UPF1-Rev-CRM1-DDX3 complex as they are negative regulators of vRNA nuclear export. In silico protein-protein docking analyses suggest that Rev binds UPF1 in a region that overlaps the UPF2 binding site, thus explaining the exclusion of this negative regulatory factor by HIV-1 that is necessary for vRNA trafficking. This work uncovers a novel and unique regulatory circuit involving several UPF proteins that ultimately regulate vRNA nuclear export and trafficking. "	"Tentative clinical diagnosis of Lujan-Fryns syndrome--A conglomeration of different genetic entities? The clinical diagnosis of Lujan-Fryns syndrome (LFS) comprises X-linked intellectual disability (XLID) with marfanoid habitus, distinct combination of minor facial anomalies and nasal speech. However the definition of syndrome was significantly broadened since the original report and implies ID with marfanoid habitus. Mutations of three genes (MED12, UPF3B, and ZDHHC9) have been reported in &quot;broadly defined&quot; LFS. We examined these genes in 28 individuals with a tentative clinical diagnosis of LFS but we did not identify any causative mutation. By molecular karyotyping we detected other disorders, i.e., Phelan-McDermid syndrome and 16p11.2 microduplication, each in one patient. One affected individual was carrier of a different recurrent duplication on 16p11.2 that has been reported several times to the DECIPHER and ISCA databases in individuals with autism, intellectual disability (ID), and developmental delay. It may represent a new duplication syndrome. We also identified previously unreported de novo duplication on chromosome 12p13.31 which we considered to be disease-causing. X-exome sequencing of four individuals revealed private or non-recurrent mutations in NKAP and LAS1L in one patient each. While LFS is defined as a form of XLID, there seem to be various conditions that have rather similar phenotypes. Therefore, the combination of ID and marfanoid habitus in a male patient is not sufficient for the diagnosis of LFS. We suggest that the diagnosis of LFS in patients with ID and marfanoid habitus should be made only in presence of specific facial features, nasal speech and obvious X-linked segregation of the disorder or an unambiguously pathogenic mutation in the MED12."	"Novel Serum Biomarkers to Differentiate Cholangiocarcinoma from Benign Biliary Tract Diseases Using a Proteomic Approach. Cholangiocarcinoma (CCA) is the most frequent biliary malignancy, which poses high mortality rate due to lack of early detection. Hence, most CCA cases are present at the advanced to late stages with local or distant metastasis at the time of diagnosis. Currently available tumor markers including CA19-9 and CEA are inefficient and of limited usage due to low sensitivity and specificity. Here, we attempt to identify serum tumor markers for CCA that can effectively distinguish CCA from benign biliary tract diseases (BBTDs). Serum samples from 19 CCA patients and 17 BBTDs were separated by SDS-PAGE followed with LC-MS/MS and were subjected to statistical analysis and cross-validation to identify proteins whose abundance was significantly elevated or suppressed in CCA samples compared to BBTDs. In addition to identifying several proteins previously known to be differentially expressed in CCA and BBTDs, we also discovered a number of molecules that were previously not associated with CCA. These included FAM19A5, MAGED4B, KIAA0321, RBAK, and UPF3B. Novel serum biomarkers to distinguish CCA from BBTDs were identified using a proteomic approach. Further validation of these proteins has the potential to provide a biomarker for differentiating CCA from BBTDs."	"Full UPF3B function is critical for neuronal differentiation of neural stem cells. Mutation in the UPF3B gene on chromosome X is implicated in neurodevelopmental disorders including X-linked intellectual disability, autism and schizophrenia. The protein UPF3B is involved in the nonsense-mediated mRNA decay pathway (NMD) that controls mRNA stability and functions in the prevention of the synthesis of truncated proteins. Here we show that NMD pathway components UPF3B and UPF1 are down-regulated during differentiation of neural stem cells into neurons. Using tethered function assays we found that UPF3B missense mutations described in families with neurodevelopmental disorders reduced the activity of UPF3B protein in NMD. In neural stem cells, UPF3B protein was detected in the cytoplasm and in the nucleus. Similarly in neurons, UPF3B protein was detected in neurites, the somatic cytoplasm and in the nucleus. In both cell types nuclear UPF3B protein was enriched in the nucleolus. Using GFP tagged UPF3B proteins we found that the missense mutations did not affect the cellular localisation. Expression of missense mutant UPF3B disturbed neuronal differentiation and reduced the complexity of the branching of neurites. Neuronal differentiation was similarly affected in the presence of the NMD inhibitor Amlexanox. The expression of mutant UPF3B proteins lead to a subtle increase in mRNA levels of selected NMD targets. Together our findings indicate that, despite the down-regulation of NMD factors, functional NMD is critical for neuronal differentiation. We propose that the neurodevelopmental phenotype of UPF3B missense mutation is caused by impairment of NMD function altering neuronal differentiation."	"A novel 47.2 Mb duplication on chromosomal bands Xq21.1-25 associated with mental retardation. We present array comparative genomic hybridization (aCGH) characterization of a novel Xq21.1-25 duplication in a 2-year-old girl with facial dysmorphism, mental retardation and short stature. Analysis of aCGH results revealed a 47,232kb duplication region that harbored 231 RefSeq genes, including 32 OMIM genes. Ten genes (i.e., ZNF711, SRPX2, RAB40AL, MID2, ACSL4, PAK3, UBE2A, UPF3B, CUL4B, and GRIA3) in the duplication interval have been associated with mental retardation. We discuss the genotype-phenotype correlation in this case. Our case provides evidence for an association of mental retardation with X chromosome duplication. "	"Next-generation sequencing in X-linked intellectual disability. X-linked intellectual disability (XLID) is a genetically heterogeneous disorder with more than 100 genes known to date. Most genes are responsible for a small proportion of patients only, which has hitherto hampered the systematic screening of large patient cohorts. We performed targeted enrichment and next-generation sequencing of 107 XLID genes in a cohort of 150 male patients. Hundred patients had sporadic intellectual disability, and 50 patients had a family history suggestive of XLID. We also analysed a sporadic female patient with severe ID and epilepsy because she had strongly skewed X-inactivation. Target enrichment and high parallel sequencing allowed a diagnostic coverage of &gt;10 reads for ~96% of all coding bases of the XLID genes at a mean coverage of 124 reads. We found 18 pathogenic variants in 13 XLID genes (AP1S2, ATRX, CUL4B, DLG3, IQSEC2, KDM5C, MED12, OPHN1, SLC9A6, SMC1A, UBE2A, UPF3B and ZDHHC9) among the 150 male patients. Thirteen pathogenic variants were present in the group of 50 familial patients (26%), and 5 pathogenic variants among the 100 sporadic patients (5%). Systematic gene dosage analysis for low coverage exons detected one pathogenic hemizygous deletion. An IQSEC2 nonsense variant was detected in the female ID patient, providing further evidence for a role of this gene in encephalopathy in females. Skewed X-inactivation was more frequently observed in mothers with pathogenic variants compared with those without known X-linked defects. The mutation rate in the cohort of sporadic patients corroborates previous estimates of 5-10% for X-chromosomal defects in male ID patients. "	"The RNA helicase DHX34 activates NMD by promoting a transition from the surveillance to the decay-inducing complex. Nonsense-mediated decay (NMD) is a surveillance mechanism that degrades aberrant mRNAs. A complex comprising SMG1, UPF1, and the translation termination factors eRF1 and eRF3 (SURF) is assembled in the vicinity of a premature termination codon. Subsequently, an interaction with UPF2, UPF3b, and the exon junction complex induces the formation of the decay-inducing complex (DECID) and triggers NMD. We previously identified the RNA helicase DHX34 as an NMD factor in C. elegans and in vertebrates. Here, we investigate the mechanism by which DHX34 activates NMD in human cells. We show that DHX34 is recruited to the SURF complex via its preferential interaction with hypophosphorylated UPF1. A series of molecular transitions induced by DHX34 include enhanced recruitment of UPF2, increased UPF1 phosphorylation, and dissociation of eRF3 from UPF1. Thus, DHX34 promotes mRNP remodeling and triggers the conversion from the SURF complex to the DECID complex resulting in NMD activation."	"A noncoding expansion in EIF4A3 causes Richieri-Costa-Pereira syndrome, a craniofacial disorder associated with limb defects. Richieri-Costa-Pereira syndrome is an autosomal-recessive acrofacial dysostosis characterized by mandibular median cleft associated with other craniofacial anomalies and severe limb defects. Learning and language disabilities are also prevalent. We mapped the mutated gene to a 122 kb region at 17q25.3 through identity-by-descent analysis in 17 genealogies. Sequencing strategies identified an expansion of a region with several repeats of 18- or 20-nucleotide motifs in the 5' untranslated region (5' UTR) of EIF4A3, which contained from 14 to 16 repeats in the affected individuals and from 3 to 12 repeats in 520 healthy individuals. A missense substitution of a highly conserved residue likely to affect the interaction of eIF4AIII with the UPF3B subunit of the exon junction complex in trans with an expanded allele was found in an unrelated individual with an atypical presentation, thus expanding mutational mechanisms and phenotypic diversity of RCPS. EIF4A3 transcript abundance was reduced in both white blood cells and mesenchymal cells of RCPS-affected individuals as compared to controls. Notably, targeting the orthologous eif4a3 in zebrafish led to underdevelopment of several craniofacial cartilage and bone structures, in agreement with the craniofacial alterations seen in RCPS. Our data thus suggest that RCPS is caused by mutations in EIF4A3 and show that EIF4A3, a gene involved in RNA metabolism, plays a role in mandible, laryngeal, and limb morphogenesis. "	"Microduplications in 22q11.2 and 8q22.1 associated with mild mental retardation and generalized overgrowth. The 22q11.2 microduplication is a genomic disorder, characterized from a variable phenotype ranging from different defects to normality. The most common microduplication of 22q11.2 is 3 Mb in size, but there are also cases reported with atypical duplications between 0.8 Mb and 6Mb. Here, we describe a case of a child with macrocephaly, overgrowth with advanced bone age, attention deficits, evidence of mild mental retardation and dysmorphic features. An array-CGH analysis detected a 252 Kb duplication at the 22q11.2 region inherited from mother and 142 Kb duplication at 8q22.1 region inherited from father. Both parents show mild dysmorphic features. The duplicated genes in chromosomes 22q and 8q are TOP3B and PGCP, respectively. We describe for the first time a patient carrying the smaller atypical 22q11.2 duplication who also presents with mild mental retardation and generalized overgrowth. This patient has an additional duplication in 8q22.1 which may act as a genomic modifier of its clinical phenotype."	"Structural and functional analysis of the three MIF4G domains of nonsense-mediated decay factor UPF2. Nonsense-mediated decay (NMD) is a eukaryotic quality control pathway, involving conserved proteins UPF1, UPF2 and UPF3b, which detects and degrades mRNAs with premature stop codons. Human UPF2 comprises three tandem MIF4G domains and a C-terminal UPF1 binding region. MIF4G-3 binds UPF3b, but the specific functions of MIF4G-1 and MIF4G-2 are unknown. Crystal structures show that both MIF4G-1 and MIF4G-2 contain N-terminal capping helices essential for stabilization of the 10-helix MIF4G core and that MIF4G-2 interacts with MIF4G-3, forming a rigid assembly. The UPF2/UPF3b/SMG1 complex is thought to activate the kinase SMG1 to phosphorylate UPF1 in vivo. We identify MIF4G-3 as the binding site and in vitro substrate of SMG1 kinase and show that a ternary UPF2 MIF4G-3/UPF3b/SMG1 complex can form in vitro. Whereas in vivo complementation assays show that MIF4G-1 and MIF4G-2 are essential for NMD, tethering assays reveal that UPF2 truncated to only MIF4G-3 and the UPF1-binding region can still partially accomplish NMD. Thus UPF2 MIF4G-1 and MIF4G-2 appear to have a crucial scaffolding role, while MIF4G-3 is the key module required for triggering NMD. "	"Human intellectual disability genes form conserved functional modules in Drosophila. Intellectual Disability (ID) disorders, defined by an IQ below 70, are genetically and phenotypically highly heterogeneous. Identification of common molecular pathways underlying these disorders is crucial for understanding the molecular basis of cognition and for the development of therapeutic intervention strategies. To systematically establish their functional connectivity, we used transgenic RNAi to target 270 ID gene orthologs in the Drosophila eye. Assessment of neuronal function in behavioral and electrophysiological assays and multiparametric morphological analysis identified phenotypes associated with knockdown of 180 ID gene orthologs. Most of these genotype-phenotype associations were novel. For example, we uncovered 16 genes that are required for basal neurotransmission and have not previously been implicated in this process in any system or organism. ID gene orthologs with morphological eye phenotypes, in contrast to genes without phenotypes, are relatively highly expressed in the human nervous system and are enriched for neuronal functions, suggesting that eye phenotyping can distinguish different classes of ID genes. Indeed, grouping genes by Drosophila phenotype uncovered 26 connected functional modules. Novel links between ID genes successfully predicted that MYCN, PIGV and UPF3B regulate synapse development. Drosophila phenotype groups show, in addition to ID, significant phenotypic similarity also in humans, indicating that functional modules are conserved. The combined data indicate that ID disorders, despite their extreme genetic diversity, are caused by disruption of a limited number of highly connected functional modules. "	"Comparison of EJC-enhanced and EJC-independent NMD in human cells reveals two partially redundant degradation pathways. Nonsense-mediated mRNA decay (NMD) is a eukaryotic post-transcriptional gene regulation mechanism that eliminates mRNAs with the termination codon (TC) located in an unfavorable environment for efficient translation termination. The best-studied NMD-targeted mRNAs contain premature termination codons (PTCs); however, NMD regulates even many physiological mRNAs. An exon-junction complex (EJC) located downstream from a TC acts as an NMD-enhancing signal, but is not generally required for NMD. Here, we compared these &quot;EJC-enhanced&quot; and &quot;EJC-independent&quot; modes of NMD with regard to their requirement for seven known NMD factors in human cells using two well-characterized NMD reporter genes (immunoglobulin μ and β-Globin) with or without an intron downstream from the PTC. We show that both NMD modes depend on UPF1 and SMG1, but detected transcript-specific differences with respect to the requirement for UPF2 and UPF3b, consistent with previously reported UPF2- and UPF3-independent branches of NMD. In addition and contrary to expectation, a higher sensitivity of EJC-independent NMD to reduced UPF2 and UPF3b concentrations was observed. Our data further revealed a redundancy of the endo- and exonucleolytic mRNA degradation pathways in both modes of NMD. Moreover, the relative contributions of both decay pathways differed between the reporters, with PTC-containing immunoglobulin μ transcripts being preferentially subjected to SMG6-mediated endonucleolytic cleavage, whereas β-Globin transcripts were predominantly degraded by the SMG5/SMG7-dependent pathway. Overall, the surprising heterogeneity observed with only two NMD reporter pairs suggests the existence of several mechanistically distinct branches of NMD in human cells. "	"Disorders with similar clinical phenotypes reveal underlying genetic interaction: SATB2 acts as an activator of the UPF3B gene. Two syndromic cognitive impairment disorders have very similar craniofacial dysmorphisms. One is caused by mutations of SATB2, a transcription regulator and the other by heterozygous mutations leading to premature stop codons in UPF3B, encoding a member of the nonsense-mediated mRNA decay complex. Here we demonstrate that the products of these two causative genes function in the same pathway. We show that the SATB2 nonsense mutation in our patient leads to a truncated protein that localizes to the nucleus, forms a dimer with wild-type SATB2 and interferes with its normal activity. This suggests that the SATB2 nonsense mutation has a dominant negative effect. The patient's leukocytes had significantly decreased UPF3B mRNA compared to controls. This effect was replicated both in vitro, where siRNA knockdown of SATB2 in HEK293 cells resulted in decreased UPF3B expression, and in vivo, where embryonic tissue of Satb2 knockout mice showed significantly decreased Upf3b expression. Furthermore, chromatin immunoprecipitation demonstrates that SATB2 binds to the UPF3B promoter, and a luciferase reporter assay confirmed that SATB2 expression significantly activates gene transcription using the UPF3B promoter. These findings indicate that SATB2 activates UPF3B expression through binding to its promoter. This study emphasizes the value of recognizing disorders with similar clinical phenotypes to explore underlying mechanisms of genetic interaction. "	"The UPF3B gene, implicated in intellectual disability, autism, ADHD and childhood onset schizophrenia regulates neural progenitor cell behaviour and neuronal outgrowth. Loss-of-function mutations in UPF3B result in variable clinical presentations including intellectual disability (ID, syndromic and non-syndromic), autism, childhood onset schizophrenia and attention deficit hyperactivity disorder. UPF3B is a core member of the nonsense-mediated mRNA decay (NMD) pathway that functions to rapidly degrade transcripts with premature termination codons (PTCs). Traditionally identified in thousands of human diseases, PTCs were recently also found to be part of 'normal' genetic variation in human populations. Furthermore, many human transcripts have naturally occurring regulatory features compatible with 'endogenous' PTCs strongly suggesting roles of NMD beyond PTC mRNA control. In this study, we investigated the role of Upf3b and NMD in neural cells. We provide evidence that suggests Upf3b-dependent NMD (Upf3b-NMD) is regulated at multiple levels during development including regulation of expression and sub-cellular localization of Upf3b. Furthermore, complementary expression of Upf3b, Upf3a and Stau1 stratify the developing dorsal telencephalon, suggesting that alternative NMD, and the related Staufen1-mediated mRNA decay (SMD) pathways are differentially employed. A loss of Upf3b-NMD in neural progenitor cells (NPCs) resulted in the expansion of cell numbers at the expense of their differentiation. In primary hippocampal neurons, loss of Upf3b-NMD resulted in subtle neurite growth effects. Our data suggest that the cellular consequences of loss of Upf3b-NMD can be explained in-part by changes in expression of key NMD-feature containing transcripts, which are commonly deregulated also in patients with UPF3B mutations. Our research identifies novel pathological mechanisms of UPF3B mutations and at least partly explains the clinical phenotype of UPF3B patients."	"The RNA helicase Ddx5/p68 binds to hUpf3 and enhances NMD of Ddx17/p72 and Smg5 mRNA. Non-sense-mediated mRNA decay (NMD) is a mechanism of translation-dependent mRNA surveillance in eukaryotes: it degrades mRNAs with premature termination codons (PTCs) and contributes to cellular homeostasis by downregulating a number of physiologically important mRNAs. In the NMD pathway, Upf proteins, a set of conserved factors of which Upf1 is the central regulator, recruit decay enzymes to promote RNA cleavage. In mammals, the degradation of PTC-containing mRNAs is triggered by the exon-junction complex (EJC) through binding of its constituents Upf2 and Upf3 to Upf1. The complex formed eventually induces translational repression and recruitment of decay enzymes. Mechanisms by which physiological mRNAs are targeted by the NMD machinery in the absence of an EJC have been described but still are discussed controversially. Here, we report that the DEAD box proteins Ddx5/p68 and its paralog Ddx17/p72 also bind the Upf complex by physical interaction with Upf3, thereby interfering with the binding of EJC. By activating the NMD machinery, Ddx5 is shown to regulate the expression of its own, Ddx17 and Smg5 mRNAs. For NMD triggering, the adenosine triphosphate-binding activity of Ddx5 and the 3'-untranslated region of substrate mRNAs are essential. "	"An EJC factor RBM8a regulates anxiety behaviors. Neuroplasticity depends on the precise timing of gene expression, which requires accurate control of mRNA stability and rapid elimination of abnormal mRNA. Nonsense-mediated mRNA decay (NMD) is an RNA surveillance mechanism that ensures the speedy degradation of mRNAs carrying premature termination codons (PTCs). This mechanism relies on several key Exon Junction Complex (EJC) factors to distinguish PTCs from normal stop codons. NMD degrades not only aberrant transcripts carrying PTCs, but also normal transcripts harboring a normal stop codon [1]. Intriguingly, mutations in an NMD factor, Upf3b, have been found in patients with autism [2, 3]. A binding partner of Upf3b, RBM8a, is located in the 1q21.1 copy-number variation (CNV) associated with mental retardation, autism [4], schizophrenia [5], and microcephaly [6]. However, the functions of EJC factors and their roles in behavioral regulation are still elusive. RBM8a protein is a core component of the EJC that plays an important role in NMD. Recent genetic study indicated that RBM8a gain-of-function significantly associated with intellectual disability [7]. In this study we investigated the effect of RBM8a overexpression on affective behaviors in mice. Lentivirus expressing RBM8a was infused into the hippocampus of adult mice to conduct behavioral studies including social interaction, open field, elevated plus maze, and forced swimming tests. Our results showed that overexpression of RBM8a in the mouse dentate gyrus (DG) leads to increased anxiety-like behavior, abnormal social interaction and decreased immobile time in forced swimming test (FST). To examine the underlying mechanism, we found that overexpressing RBM8a in cultured primary neurons lead to significant higher frequency of miniature excitatory postsynaptic currents (mEPSCs). To explore the underlying mechanism of RBM8a mediated behavioral changes, RNA-immunoprecipitation (RNA-IP) detected that RBM8a binds to CaMK2, GluR1 and Egr1 mRNA, suggesting that RBM8a may target neuronal genes to regulate behaviors. This is the first study that demonstrates the key role of RBM8a on the emotional behaviors in mice. These results reveal new neural mechanisms by which NMD modulates behaviors and potentially provide a better understanding of pathophysiology underlying psychiatric disorders."	"Systematic molecular and cytogenetic screening of 100 patients with marfanoid syndromes and intellectual disability. The association of marfanoid habitus (MH) and intellectual disability (ID) has been reported in the literature, with overlapping presentations and genetic heterogeneity. A hundred patients (71 males and 29 females) with a MH and ID were recruited. Custom-designed 244K array-CGH (Agilent®; Agilent Technologies Inc., Santa Clara, CA) and MED12, ZDHHC9, UPF3B, FBN1, TGFBR1 and TGFBR2 sequencing analyses were performed. Eighty patients could be classified as isolated MH and ID: 12 chromosomal imbalances, 1 FBN1 mutation and 1 possibly pathogenic MED12 mutation were found (17%). Twenty patients could be classified as ID with other extra-skeletal features of the Marfan syndrome (MFS) spectrum: 4 pathogenic FBN1 mutations and 4 chromosomal imbalances were found (2 patients with both FBN1 mutation and chromosomal rearrangement) (29%). These results suggest either that there are more loci with genes yet to be discovered or that MH can also be a relatively non-specific feature of patients with ID. The search for aortic complications is mandatory even if MH is associated with ID since FBN1 mutations or rearrangements were found in some patients. The excess of males is in favour of the involvement of other X-linked genes. Although it was impossible to make a diagnosis in 80% of patients, these results will improve genetic counselling in families. "	"Contribution of copy number variants involving nonsense-mediated mRNA decay pathway genes to neuro-developmental disorders. The nonsense-mediated mRNA decay (NMD) pathway functions not only to degrade transcripts containing premature termination codons (PTC), but also to regulate the transcriptome. UPF3B and RBM8A, important components of NMD, have been implicated in various forms of intellectual disability (ID) and Thrombocytopenia with Absent Radius (TAR) syndrome, which is also associated with ID. To gauge the contribution of other NMD factors to ID, we performed a comprehensive search for copy number variants (CNVs) of 18 NMD genes among individuals with ID and/or congenital anomalies. We identified 11 cases with heterozygous deletions of the genomic region encompassing UPF2, which encodes for a direct interacting protein of UPF3B. Using RNA-Seq, we showed that the genome-wide consequence of reduced expression of UPF2 is similar to that seen in patients with UPF3B mutations. Out of the 1009 genes found deregulated in patients with UPF2 deletions by at least 2-fold, majority (95%) were deregulated similarly in patients with UPF3B mutations. This supports the major role of deletion of UPF2 in ID. Furthermore, we found that four other NMD genes, UPF3A, SMG6, EIF4A3 and RNPS1 are frequently deleted and/or duplicated in the patients. We postulate that dosage imbalances of these NMD genes are likely to be the causes or act as predisposing factors for neuro-developmental disorders. Our findings further emphasize the importance of NMD pathway(s) in learning and memory."	"Exome sequencing identifies UPF3B as the causative gene for a Chinese non-syndrome mental retardation pedigree. Mental retardation (MR) is a group of common and complex disabilities affecting the central nervous system and appears before the period of brain developmental maturity. Recently, only 40% of genetic MR has been identified, however 60% remains unexplained. In this study, we applied exome sequencing to identify the mutation p.R430X in UPF3B gene in an MR pedigree, which was validated by Sanger sequencing and completely cosegregated within this family. UPF3B gene encodes a protein involved in nonsense-mediated mRNA decay (NMD). By real-time quantitative PCR, we detected the significant difference in the mRNA expression levels of the UPF3B and the classical NMD pathway target growth arrest and DNA-damage-inducible-beta (GADD45B) between the patients and the controls. Our results directly implicated that the mutation p.R430X in UPF3B gene was the genetic etiology of the MR pedigree."	"Broadening the phenotype associated with mutations in UPF3B: two further cases with renal dysplasia and variable developmental delay. We present two brothers with mutations in UPF3B, an X-linked intellectual disability gene. Our family consists of two affected brothers and a carrier mother. Both affected brothers had renal dysplasia. A maternal uncle died from a congenital heart defect at 4 months. The two boys had variable degrees of developmental delay. One had macrocephaly, significant expressive speech delay and constipation. The other brother had normocephaly, obsessional tendencies and was diagnosed with high functioning autism. The phenotypically normal mother had 100% skewed X-inactivation. Our cases expand the phenotype seen with UPF3B mutations and highlight the variability within families."	"Post-transcriptional regulation of 5-lipoxygenase mRNA expression via alternative splicing and nonsense-mediated mRNA decay. 5-Lipoxygenase (5-LO) catalyzes the two initial steps in the biosynthesis of leukotrienes (LT), a group of inflammatory lipid mediators derived from arachidonic acid. Here, we investigated the regulation of 5-LO mRNA expression by alternative splicing and nonsense-mediated mRNA decay (NMD). In the present study, we report the identification of 2 truncated transcripts and 4 novel 5-LO splice variants containing premature termination codons (PTC). The characterization of one of the splice variants, 5-LOΔ3, revealed that it is a target for NMD since knockdown of the NMD factors UPF1, UPF2 and UPF3b in the human monocytic cell line Mono Mac 6 (MM6) altered the expression of 5-LOΔ3 mRNA up to 2-fold in a cell differentiation-dependent manner suggesting that cell differentiation alters the composition or function of the NMD complex. In contrast, the mature 5-LO mRNA transcript was not affected by UPF knockdown. Thus, the data suggest that the coupling of alternative splicing and NMD is involved in the regulation of 5-LO gene expression."	"Proteins associated with the exon junction complex also control the alternative splicing of apoptotic regulators. Several apoptotic regulators, including Bcl-x, are alternatively spliced to produce isoforms with opposite functions. We have used an RNA interference strategy to map the regulatory landscape controlling the expression of the Bcl-x splice variants in human cells. Depleting proteins known as core (Y14 and eIF4A3) or auxiliary (RNPS1, Acinus, and SAP18) components of the exon junction complex (EJC) improved the production of the proapoptotic Bcl-x(S) splice variant. This effect was not seen when we depleted EJC proteins that typically participate in mRNA export (UAP56, Aly/Ref, and TAP) or that associate with the EJC to enforce nonsense-mediated RNA decay (MNL51, Upf1, Upf2, and Upf3b). Core and auxiliary EJC components modulated Bcl-x splicing through different cis-acting elements, further suggesting that this activity is distinct from the established EJC function. In support of a direct role in splicing control, recombinant eIF4A3, Y14, and Magoh proteins associated preferentially with the endogenous Bcl-x pre-mRNA, interacted with a model Bcl-x pre-mRNA in early splicing complexes, and specifically shifted Bcl-x alternative splicing in nuclear extracts. Finally, the depletion of Y14, eIF4A3, RNPS1, SAP18, and Acinus also encouraged the production of other proapoptotic splice variants, suggesting that EJC-associated components are important regulators of apoptosis acting at the alternative splicing level."	"Transcriptome profiling of UPF3B/NMD-deficient lymphoblastoid cells from patients with various forms of intellectual disability. The nonsense-mediated mRNA decay (NMD) pathway was originally discovered by virtue of its ability to rapidly degrade aberrant mRNAs with premature termination codons. More recently, it was shown that NMD also directly regulates subsets of normal transcripts, suggesting that NMD has roles in normal biological processes. Indeed, several NMD factors have been shown to regulate neurological events (for example, neurogenesis and synaptic plasticity) in numerous vertebrate species. In man, mutations in the NMD factor gene UPF3B, which disrupts a branch of the NMD pathway, cause various forms of intellectual disability (ID). Using Epstein Barr virus-immortalized B cells, also known as lymphoblastoid cell lines (LCLs), from ID patients that have loss-of-function mutations in UPF3B, we investigated the genome-wide consequences of compromised NMD and the role of NMD in neuronal development and function. We found that ~5% of the human transcriptome is impacted in UPF3B patients. The UPF3B paralog, UPF3A, is stabilized in all UPF3B patients, and partially compensates for the loss of UPF3B function. Interestingly, UPF3A protein, but not mRNA, was stabilised in a quantitative manner that inversely correlated with the severity of patients' phenotype. This suggested that the ability to stabilize the UPF3A protein is a crucial modifier of the neurological symptoms due to loss of UPF3B. We also identified ARHGAP24, which encodes a GTPase-activating protein, as a canonical target of NMD, and we provide evidence that deregulation of this gene inhibits axon and dendrite outgrowth and branching. Our results demonstrate that the UPF3B-dependent NMD pathway is a major regulator of the transcriptome and that its targets have important roles in neuronal cells."	"A nonconservative amino acid change in the UPF3B gene in a patient with schizophrenia. NA"	"A novel frameshift mutation in UPF3B identified in brothers affected with childhood onset schizophrenia and autism spectrum disorders. NA"	"Insights into the recruitment of the NMD machinery from the crystal structure of a core EJC-UPF3b complex. In mammals, Up-frameshift proteins (UPFs) form a surveillance complex that interacts with the exon junction complex (EJC) to elicit nonsense-mediated mRNA decay (NMD). UPF3b is the component of the surveillance complex that bridges the interaction with the EJC. Here, we report the 3.4 A resolution crystal structure of a minimal UPF3b-EJC assembly, consisting of the interacting domains of five proteins (UPF3b, MAGO, Y14, eIF4AIII, and Barentsz) together with RNA and adenylyl-imidodiphosphate. Human UPF3b binds with the C-terminal domain stretched over a composite surface formed by eIF4AIII, MAGO, and Y14. Residues that affect NMD when mutated are found at the core interacting surfaces, whereas differences between UPF3b and UPF3a map at peripheral interacting residues. Comparison with the binding mode of the protein PYM underscores how a common molecular surface of MAGO and Y14 recognizes different proteins acting at different times in the same pathway. The binding mode to eIF4AIII identifies a surface hot spot that is used by different DEAD-box proteins to recruit their regulators."	"A UPF3-mediated regulatory switch that maintains RNA surveillance. Nonsense-mediated decay (NMD) is an RNA decay pathway that downregulates aberrant mRNAs and a subset of normal mRNAs. The regulation of NMD is poorly understood. Here we identify a regulatory mechanism acting on two related UPF (up-frameshift) factors crucial for NMD: UPF3A and UPF3B. This regulatory mechanism, which reduces the level of UPF3A in response to the presence of UPF3B, is relieved in individuals harboring UPF3B mutations, leading to strongly increased steady-state levels of UPF3A. UPF3A compensates for the loss of UPF3B by regulating several NMD target transcripts, but it can also impair NMD, as it competes with the stronger NMD activator UPF3B for binding to the essential NMD factor UPF2. This deleterious effect of UPF3A protein is prevented by its destabilization using a conserved UPF3B-dependent mechanism. Together, our results suggest that UPF3A levels are tightly regulated by a post-transcriptional switch to maintain appropriate levels of NMD substrates in cells containing different levels of UPF3B."	"Processing bodies are not required for mammalian nonsense-mediated mRNA decay. Nonsense-mediated mRNA decay (NMD) is a eukaryotic quality-control mechanism that recognizes and degrades mRNAs with premature termination codons (PTCs). In yeast, PTC-containing mRNAs are targeted to processing bodies (P-bodies), and yeast strains expressing an ATPase defective Upf1p mutant accumulate P-bodies. Here we show that in human cells, an ATPase-deficient UPF1 mutant and a fraction of UPF2 and UPF3b accumulate in cytoplasmic foci that co-localize with P-bodies. Depletion of the P-body component Ge-1, which prevents formation of microscopically detectable P-bodies, also impairs the localization of mutant UPF1, UPF2, and UPF3b in cytoplasmic foci. However, the accumulation of the ATPase-deficient UPF1 mutant in P-bodies is independent of UPF2, UPF3b, or SMG1, and the ATPase-deficient UPF1 mutant can localize into the P-bodies independent of its phosphorylation status. Most importantly, disruption of P-bodies by depletion of Ge-1 affects neither the mRNA levels of PTC-containing reporter genes nor endogenous NMD substrates. Consistent with the recently reported decapping-independent SMG6-mediated endonucleolytic decay of human nonsense mRNAs, our results imply that microscopically detectable P-bodies are not required for mammalian NMD."	"Mutations of the UPF3B gene, which encodes a protein widely expressed in neurons, are associated with nonspecific mental retardation with or without autism. Mutations in the UPF3B gene, which encodes a protein involved in nonsense-mediated mRNA decay, have recently been described in four families with specific (Lujan-Fryns and FG syndromes), nonspecific X-linked mental retardation (XLMR) and autism. To further elucidate the contribution of UPF3B to mental retardation (MR), we screened its coding sequence in 397 families collected by the EuroMRX consortium. We identified one nonsense mutation, c.1081C&gt;T/p.Arg361(*), in a family with nonspecific MR (MRX62) and two amino-acid substitutions in two other, unrelated families with MR and/or autism (c.1136G&gt;A/p.Arg379His and c.1103G&gt;A/p.Arg368Gln). Functional studies using lymphoblastoid cell lines from affected patients revealed that c.1081C&gt;T mutation resulted in UPF3B mRNA degradation and consequent absence of the UPF3B protein. We also studied the subcellular localization of the wild-type and mutated UPF3B proteins in mouse primary hippocampal neurons. We did not detect any obvious difference in the localization between the wild-type UPF3B and the proteins carrying the two missense changes identified. However, we show that UPF3B is widely expressed in neurons and also presents in dendritic spines, which are essential structures for proper neurotransmission and thus learning and memory processes. Our results demonstrate that in addition to Lujan-Fryns and FG syndromes, UPF3B protein truncation mutations can cause also nonspecific XLMR. We also identify comorbidity of MR and autism in another family with UPF3B mutation. The neuronal localization pattern of the UPF3B protein and its function in mRNA surveillance suggests a potential function in the regulation of the expression and degradation of various mRNAs present at the synapse."	"Chapter 9. Studying nonsense-mediated mRNA decay in mammalian cells. Nonsense-mediated decay (NMD) in eukaryotic cells largely functions as a quality control mechanism by degrading faulty mRNAs that terminate translation prematurely. In recent years it has become evident that NMD also eliminates a subset of naturally occurring mRNA during proper gene expression. The mechanism of NMD in mammalian cells can be distinguished from the mechanism in, for example, Saccharomyces cerevisiae or Caenorhabditis elegans, by its apparent restriction to newly synthesized mRNA during a pioneer round of translation. This dependence can be explained by the need for at least one exon-exon junction complex (EJC) that is deposited on newly synthesized mRNA during the process of pre-mRNA splicing. Additionally, mammalian-cell NMD is promoted by the cap-binding protein heterodimer CBP80/20 that also typifies newly synthesized mRNA. When translation terminates sufficiently upstream of an EJC, the NMD factor Up-frameshift (Upf)1 is thought to join the stable EJC constituent NMD factors Upf2 and Upf3 or Upf3X (also called Upf3a or Upf3b, respectively), and undergo phosphorylation. Phosphorylation appears to trigger translational repression and mRNA decay. Although there are established rules for what generally defines an NMD target in mammalian cells, as with any rule there are exceptions and, thus, the need to experimentally verify individual mRNAs as bona fide targets of NMD. This chapter provides guidelines and protocols for how to define NMD targets using cultured mammalian cells."	"Nonsense codons trigger an RNA partitioning shift. T-cell receptor-beta (TCRbeta) genes naturally acquire premature termination codons (PTCs) as a result of programmed gene rearrangements. PTC-bearing TCRbeta transcripts are dramatically down-regulated to protect T-cells from the deleterious effects of the truncated proteins that would otherwise be produced. Here we provide evidence that two responses collaborate to elicit this dramatic down-regulation. One is rapid mRNA decay triggered by the nonsense-mediated decay (NMD) RNA surveillance pathway. We demonstrate that this occurs in highly purified nuclei lacking detectable levels of three different cytoplasmic markers, but containing an outer nuclear membrane marker, suggesting that decay occurs either in the nucleoplasm or at the outer nuclear membrane. The second response is a dramatic partitioning shift in the nuclear fraction-to-cytoplasmic fraction mRNA ratio that results in few TCRbeta transcripts escaping to the cytoplasmic fraction of cells. Analysis of TCRbeta mRNA kinetics after either transcriptional repression or induction suggested that this nonsense codon-induced partitioning shift (NIPS) response is not the result of cytoplasmic NMD but instead reflects retention of PTC(+) TCRbeta mRNA in the nuclear fraction of cells. We identified TCRbeta sequences crucial for NIPS but found that NIPS is not exclusively a property of TCRbeta transcripts, and we identified non-TCRbeta sequences that elicit NIPS. RNA interference experiments indicated that NIPS depends on the NMD factors UPF1 and eIF4AIII but not the NMD factor UPF3B. We propose that NIPS collaborates with NMD to retain and degrade a subset of PTC(+) transcripts at the outer nuclear membrane and/or within the nucleoplasm."	"Interactions between UPF1, eRFs, PABP and the exon junction complex suggest an integrated model for mammalian NMD pathways. Nonsense-mediated mRNA decay (NMD) represents a key mechanism to control the expression of wild-type and aberrant mRNAs. Phosphorylation of the protein UPF1 in the context of translation termination contributes to committing mRNAs to NMD. We report that translation termination is inhibited by UPF1 and stimulated by cytoplasmic poly(A)-binding protein (PABPC1). UPF1 binds to eRF1 and to the GTPase domain of eRF3 both in its GTP- and GDP-bound states. Importantly, mutation studies show that UPF1 can interact with the exon junction complex (EJC) alternatively through either UPF2 or UPF3b to become phosphorylated and to activate NMD. On this basis, we discuss an integrated model where UPF1 halts translation termination and is phosphorylated by SMG1 if the termination-promoting interaction of PABPC1 with eRF3 cannot readily occur. The EJC, with UPF2 or UPF3b as a cofactor, interferes with physiological termination through UPF1. This model integrates previously competing models of NMD and suggests a mechanistic basis for alternative NMD pathways."	"NMD factors UPF2 and UPF3 bridge UPF1 to the exon junction complex and stimulate its RNA helicase activity. Nonsense-mediated mRNA decay (NMD) eliminates mRNAs containing a premature translation termination codon through the recruitment of the conserved NMD factors UPF1, UPF2 and UPF3. In humans, a dynamic assembly pathway allows UPF1 to join UPF2 and UPF3 recruited to the mRNA by the exon-junction complex (EJC). Here we show that the recombinant EJC core is sufficient to reconstitute, with the three UPF proteins, a stable heptameric complex on RNA. The EJC proteins MAGOH, Y14 and eIF4AIII provide a composite binding site for UPF3b that serves as a bridge to UPF2 and UPF1. In the UPF trimeric complex, UPF2 and UPF3b cooperatively stimulate both ATPase and RNA helicase activities of UPF1. This work demonstrates that the EJC core is sufficient to stably anchor the UPF proteins to mRNA and provides insights into the regulation of its central effector, UPF1."	"Mutations in UPF3B, a member of the nonsense-mediated mRNA decay complex, cause syndromic and nonsyndromic mental retardation. Nonsense-mediated mRNA decay (NMD) is of universal biological significance. It has emerged as an important global RNA, DNA and translation regulatory pathway. By systematically sequencing 737 genes (annotated in the Vertebrate Genome Annotation database) on the human X chromosome in 250 families with X-linked mental retardation, we identified mutations in the UPF3 regulator of nonsense transcripts homolog B (yeast) (UPF3B) leading to protein truncations in three families: two with the Lujan-Fryns phenotype and one with the FG phenotype. We also identified a missense mutation in another family with nonsyndromic mental retardation. Three mutations lead to the introduction of a premature termination codon and subsequent NMD of mutant UPF3B mRNA. Protein blot analysis using lymphoblastoid cell lines from affected individuals showed an absence of the UPF3B protein in two families. The UPF3B protein is an important component of the NMD surveillance machinery. Our results directly implicate abnormalities of NMD in human disease and suggest at least partial redundancy of NMD pathways."	"An alternative branch of the nonsense-mediated decay pathway. The T-cell receptor (TCR) locus undergoes programmed rearrangements that frequently generate premature termination codons (PTCs). The PTC-bearing transcripts derived from such nonproductively rearranged genes are dramatically downregulated by the nonsense-mediated decay (NMD) pathway. Here, we show that depletion of the NMD factor UPF3b does not impair TCRbeta NMD, thereby distinguishing it from classical NMD. Depletion of the related factor UPF3a, by itself or in combination with UPF3b, also has no effect on TCRbeta NMD. Mapping experiments revealed the identity of TCRbeta sequences that elicit a switch to UPF3b dependence. This regulation is not a peculiarity of TCRbeta, as we identified many wild-type genes, including one essential for NMD, that transcribe NMD-targeted mRNAs whose downregulation is little or not affected by UPF3a and UPF3b depletion. We propose that we have uncovered an alternative branch of the NMD pathway that not only degrades aberrant mRNAs but also regulates normal mRNAs, including one that participates in a negative feedback loop controlling the magnitude of NMD."	"Nonsense mediated decay induced by tethered human UPF3B is restricted to the cytoplasm. The subcellular localization of the nonsense mediated decay (NMD) of mRNA transcripts bearing premature termination codons has been controversial. Recently, it has been demonstrated that RNA tethering of key mediators of NMD, including human UPF3B, accurately recreates NMD. Here, we have used tethered UPF3B, combined with regulation of nuclear mRNA export using the retroviral Rev/RRE system, to examine where UPF3B-mediated mRNA degradation occurs. Our data clearly demonstrate that nuclear mRNA export is required for UPF3B-mediated degradation and moreover show that this degradation is exclusively cytoplasmic, despite the fact that the UPF3B fusion protein used is a nucleocytoplasmic shuttle protein localized predominantly to the nucleus. Moreover, exclusively cytoplasmic NMD occurred whether the target mRNA was exported via the retroviral Rev/RRE pathway or via the Tap: Nxt pathway used by most cellular mRNAs. These data may suggest that truly nuclear NMD, if it occurs, is at least in part mechanistically distinct from cytoplasmic NMD."	"Functions of hUpf3a and hUpf3b in nonsense-mediated mRNA decay and translation. The exon-junction complex (EJC) components hUpf3a and hUpf3b serve a dual function: They promote nonsense-mediated mRNA decay (NMD), and they also regulate translation efficiency. Whether these two functions are interdependent or independent of each other is unknown. We characterized the function of the hUpf3 proteins in a lambdaN/boxB-based tethering system. Despite the high degree of sequence similarity between hUpf3b and hUpf3a, hUpf3a is much less active than hUpf3b to induce NMD and to stimulate translation. We show that induction of NMD by hUpf3 proteins requires interaction with Y14, Magoh, BTZ, and eIF4AIII. The protein region that mediates this interaction and discriminates between hUpf3a and hUpf3b in NMD function is located in the C-terminal domain and fully contained within a small sequence that is highly conserved in Upf3b but not Upf3a proteins. Stimulation of translation is independent of this interaction and is determined by other regions of the hUpf3 protein, indicating the presence of different downstream pathways of hUpf3 proteins either in NMD or in translation."	"Binding of a novel SMG-1-Upf1-eRF1-eRF3 complex (SURF) to the exon junction complex triggers Upf1 phosphorylation and nonsense-mediated mRNA decay. Nonsense-mediated mRNA decay (NMD) is a surveillance mechanism that degrades mRNA containing premature termination codons (PTCs). In mammalian cells, recognition of PTCs requires translation and depends on the presence on the mRNA with the splicing-dependent exon junction complex (EJC). While it is known that a key event in the triggering of NMD is phosphorylation of the trans-acting factor, Upf1, by SMG-1, the relationship between Upf1 phosphorylation and PTC recognition remains undetermined. Here we show that SMG-1 binds to the mRNA-associated components of the EJC, Upf2, Upf3b, eIF4A3, Magoh, and Y14. Further, we describe a novel complex that contains the NMD factors SMG-1 and Upf1, and the translation termination release factors eRF1 and eRF3 (SURF). Importantly, an association between SURF and the EJC is required for SMG-1-mediated Upf1 phosphorylation and NMD. Thus, the SMG-1-mediated phosphorylation of Upf1 occurs on the association of SURF with EJC, which provides the link between the EJC and recognition of PTCs and triggers NMD."	"A new function for nonsense-mediated mRNA-decay factors. mRNAs often contain premature-termination (nonsense) codons as a result of mutations and RNA splicing errors. These nonsense codons cause rapid decay of the mRNAs that contain them, a phenomenon called nonsense-mediated mRNA decay (NMD). This response is thought to be a quality-control mechanism that protects cells from truncated dominant-negative proteins. Surprisingly, recent evidence strongly suggests that the NMD factors UPF1, UPF2, UPF3B, RNPS1, Y14 and MAGOH also promote translation of normal mRNAs in mammalian cells. This, along with an earlier discovery that NMD factors appear to dictate efficient translation termination, suggests that NMD factors do not merely function in RNA surveillance. These findings lead to the interesting question of why NMD factors evolved; are they for RNA-quality control or to promote efficient translation initiation and termination?"	"Identification of maternal mRNAs in porcine parthenotes at the 2-cell stage: a comparison with the blastocyst stage. Successful embryonic development is dependent on the temporal and stage-specific expression of appropriate genes. Currently, information on specific gene expression during early cleavage-stage embryos before zygotic gene activation (ZGA) is limited. In the present study, we compare gene expression between porcine 2-cell and blastocyst stage parthenotes to identify genes that are specifically or predominantly expressed by employing annealing control primer (ACP)-based GeneFishing PCR. Using 60 ACPs, we identified and sequenced nine differentially expressed genes (DEGs). A BLAST search revealed that cloned genes or ESTs (GDI-2, MTMR3, MKLN1, NUP88, ePAD, CIRHIM, UPF3B, ITGA2, and CGI-140) had significant sequence similarities with known genes (78-95%) of other species in the GenBank/EMBL database. Real-time reverse transcriptase-polymerase chain reaction (RT-PCR) data disclosed that these genes were regulated upstream in metaphase II (MII) oocyte, 1-cell, and 2-cell stage embryos during early pre-implantation. Similarly, upregulation was observed in MII mouse oocytes and 1-cell stage embryos before ZGA, suggesting that these nine differentially expressed orthologous genes play important roles during early cleavage before ZGA. Further analysis of the differentially expressed genes identified in this report should provide the basis for research on early cleavage and activation of the embryonic genome."	"The structural basis for the interaction between nonsense-mediated mRNA decay factors UPF2 and UPF3. Nonsense-mediated mRNA decay (NMD) is a surveillance mechanism by which eukaryotic cells detect and degrade transcripts containing premature termination codons. Three 'up-frameshift' proteins, UPF1, UPF2 and UPF3, are essential for this process in organisms ranging from yeast to human. We present a crystal structure at a resolution of 1.95 A of the complex between the interacting domains of human UPF2 and UPF3b, which are, respectively, a MIF4G (middle portion of eIF4G) domain and an RNP domain (ribonucleoprotein-type RNA-binding domain). The protein-protein interface is mediated by highly conserved charged residues in UPF2 and UPF3b and involves the beta-sheet surface of the UPF3b RNP domain, which is generally used by these domains to bind nucleic acids. We show that the UPF3b RNP does not bind RNA, whereas the UPF2 construct and the complex do. Our results advance understanding of the molecular mechanisms underlying the NMD quality control process."	"Using the lambdaN peptide to tether proteins to RNAs. Proteins interacting with messenger RNAs (mRNAs) affect their nuclear processing, export, translation efficiency, stability, or cytoplasmic localization. Such RNA-binding proteins are often modular, containing RNA-binding domain(s) and other functional modules. To analyze the function of such proteins independent of their normal RNA-binding domains or to introduce effector modules to defined RNA-binding regions, a number of tethering approaches have been developed, often based on the use of large proteins and their specifically interacting RNA sequences. Here we report the use of a versatile system to tether proteins to mRNAs. The 22 amino acid RNA-binding domain of the lambda bacteriophage antiterminator protein N (lambdaN-(1-22) or lambdaN peptide) is used to tag the protein of interest, and its specific 19 nt binding site (boxB) is inserted into the target RNA recruiting the properties of the fusion protein to the RNA. The major advantage of this system derives from the small size of the peptide and its target sequence, which facilitates cloning and its use for biochemical experiments and diminishes possible interferences with the fused protein. The chapter illustrates the use of this system to create dedicated mRNA-specific factors involved in processes, such as mRNA translation and nonsense-mediated mRNA decay."	"Splicing enhances translation in mammalian cells: an additional function of the exon junction complex. In mammalian cells, spliced mRNAs yield greater quantities of protein per mRNA molecule than do otherwise identical mRNAs not made by splicing. This increased translational yield correlates with enhanced cytoplasmic polysome association of spliced mRNAs, and is attributable to deposition of exon junction complexes (EJCs). Translational stimulation can be replicated by tethering the EJC proteins Y14, Magoh, and RNPS1 or the nonsense-mediated decay (NMD) factors Upf1, Upf2, and Upf3b to an intronless reporter mRNA. Thus, in addition to its previously characterized role in NMD, the EJC also promotes mRNA polysome association. Furthermore, the ability to stimulate translation when bound inside an open reading frame appears to be a general feature of factors required for NMD."	"A simple whole cell lysate system for in vitro splicing reveals a stepwise assembly of the exon-exon junction complex. Pre-mRNA splicing removes introns and leaves in its wake a multiprotein complex near the exon-exon junctions of mRNAs. This complex, termed the exon-exon junction complex (EJC), contains at least seven proteins and provides a link between pre-mRNA splicing and downstream events, including transport, localization, and nonsense-mediated mRNA decay. Using a simple whole cell lysate system we developed for in vitro splicing, we prepared lysates from cells transfected with tagged EJC proteins and studied the association of these proteins with pre-mRNA, splicing intermediates, and mRNA, as well as formation of the EJC during splicing. Three of the EJC components, Aly/REF, RNPS1, and SRm160, are found on pre-mRNA by the time the spliceosome is formed, whereas Upf3b associates with splicing intermediates during or immediately after the first catalytic step of the splicing reaction (cleavage of exon 1 and intron-lariat formation). In contrast, Y14 and magoh, which remain stably associated with mRNA after export to the cytoplasm, join the EJC during or after completion of exon-exon ligation. These findings indicate that EJC formation is an ordered pathway that involves stepwise association of components and is coupled to specific intermediates of the splicing reaction."	"Y14 and hUpf3b form an NMD-activating complex. Messenger RNAs with premature translation termination codons (PTCs) are degraded by nonsense-mediated mRNA decay (NMD). In mammals, PTCs are discriminated from physiological stop codons by a process thought to involve the splicing-dependent deposition of an exon junction complex (EJC), EJC-mediated recruitment of Upf3, and Upf2 binding to the N terminus of Upf3. Here, we identify a conserved domain of hUpf3b that mediates an interaction with the EJC protein Y14. Tethered function analysis shows that the Y14/hUpf3b interaction is essential for NMD, while surprisingly the interaction between hUpf3b and hUpf2 is not. Nonetheless, hUpf2 is necessary for NMD mediated by tethered Y14. RNAi-induced knockdown and Y14 repletion of siRNA-treated cells implicates Y14 in the degradation of beta-globin NS39 mRNA and demonstrates that Y14 is required for NMD induced by tethered hUpf3b. These results uncover a direct role of Y14 in NMD and suggest an unexpected hierarchy in the assembly of NMD complexes."	"Role of the nonsense-mediated decay factor hUpf3 in the splicing-dependent exon-exon junction complex. Nonsense-mediated messenger RNA (mRNA) decay, or NMD, is a critical process of selective degradation of mRNAs that contain premature stop codons. NMD depends on both pre-mRNA splicing and translation, and it requires recognition of the position of stop codons relative to exon-exon junctions. A key factor in NMD is hUpf3, a mostly nuclear protein that shuttles between the nucleus and cytoplasm and interacts specifically with spliced mRNAs. We found that hUpf3 interacts with Y14, a component of post-splicing mRNA-protein (mRNP) complexes, and that hUpf3 is enriched in Y14-containing mRNP complexes. The mRNA export factors Aly/REF and TAP are also associated with nuclear hUpf3, indicating that hUpf3 is in mRNP complexes that are poised for nuclear export. Like Y14 and Aly/REF, hUpf3 binds to spliced mRNAs specifically ( approximately 20 nucleotides) upstream of exon-exon junctions. The splicing-dependent binding of hUpf3 to mRNAs before export, as part of the complex that assembles near exon-exon junctions, allows it to serve as a link between splicing and NMD in the cytoplasm."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"WDR45"	"complex neurodevelopmental disorder"	"Analysis of deubiquitinase OTUD5 as a biomarker and therapeutic target for cervical cancer by bioinformatic analysis. OTU deubiquitinase 5 (OTUD5), as a member of the ovarian tumor protease (OTU) family, was previously reported to play important roles in DNA repair and immunity. However, little is known about its function in tumors. Cervical cancer is a malignant tumor that seriously endangers the lives of women. Here, we found that low expression of OTUD5 in cervical cancer is associated with poor prognosis. Its expression is associated with tumor stage, metastatic nodes and tumor subtypes such as those related to the phosphatidylinositol-3-kinase (PI3K)-AKT signaling, epithelial-mesenchymal transition (EMT) and hormones. In addtion, we analyzed the coexpressed genes, related miRNAs, transcription factors, kinases, E3s and interacting proteins of OTUD5. We demonstrated that OTUD5 affects the expression levels of WD repeat domain 45 (WDR45), ubiquitin-specific peptidase 11 (USP11), GRIP1 associated protein 1 (GRIPAP1) and RNA binding motif protein 10 (RBM10). Moreover, hsa-mir-137, hsa-mir-1913, hsa-mir-937, hsa-mir-607, hsa-mir-3149 and hsa-mir-144 may inhibit the expression of OTUD5. Furthermore, we performed enrichment analysis of 22 coexpressed genes, 33 related miRNAs and 30 interacting proteins. In addition to ubiquitination and immunology related processes, they also participate in Hippo signaling, insulin signaling, EMT, histone methylation and phosphorylation kinase binding. Our study for the first time analyzed the expression of OTUD5 in cervical cancer and its relationship with clinicopathology and provided new insights for further study of its regulatory mechanism in tumors."	"Phenotypic and Imaging Spectrum Associated With WDR45. Mutations in the X-linked gene WDR45 cause neurodegeneration with brain iron accumulation type 5. Global developmental delay occurs at an early age with slow progression to dystonia, parkinsonism, and dementia due to progressive iron accumulation in the brain. We present 17 new cases and reviewed 106 reported cases of neurodegeneration with brain iron accumulation type 5. Detailed information related to developmental history and key time to event measures was collected. Within this cohort, there were 19 males. Most individuals were molecularly diagnosed by whole-exome testing. Overall 10 novel variants were identified across 11 subjects. All individuals were affected by developmental delay, most prominently in verbal skills. Most individuals experienced a decline in motor and cognitive skills. Although most individuals were affected by seizures, the spectrum ranged from provoked seizures to intractable epilepsy. The imaging findings varied as well, often evolving over time. The classic iron accumulation in the globus pallidus and substantia nigra was noted in half of our cohort and was associated with older age of image acquisition, whereas myelination abnormalities were associated with younger age. WDR45 mutations lead to a progressive and evolving disorder whose diagnosis is often delayed. Developmental delay and seizures predominate in early childhood, followed by a progressive decline of neurological function. There is variable expressivity in the clinical phenotypes of individuals with WDR45 mutations, suggesting that this gene should be considered in the diagnostic evaluation of children with myelination abnormalities, iron deposition, developmental delay, and epilepsy depending on the age at evaluation."	"Serial MRI alterations of pediatric patients with beta-propeller protein associated neurodegeneration (BPAN). Beta-propeller protein-associated neurodegeneration (BPAN) is one subtype of neurodegeneration with brain iron accumulation. It is difficult to diagnose BPAN due to the non-specificity of their clinical findings and neuroimaging in early childhood. We experienced four pediatric patients with serial brain MRI and evaluated the alteration of the findings through their course. We retrospectively reviewed the clinical findings and 21 MRI findings of the four patients with genetically confirmed pediatric BPAN. We also performed a quantitative MR assessment using the quantitative susceptibility mapping (QSM) values of the globus pallidus (GP), substantia nigra (SN), and deep cerebellar nuclei (DCN) compared to 10 age-matched disease controls. Only one patient was suspected of BPAN based on imaging findings before the genetic diagnosis was made. The other three patients could not be suspected until their Whole-exome sequencings (WES) done. In all four cases, no abnormal signals were noted in the GP and SN at the initial brain MRI, but hypointensities were observed after the ages of 4-7 years on T2-weighted images and after the ages of 2-7 years on susceptibility-weighted images. In three patients, T2 hyperintensity in the bilateral DCN was persistently observed throughout the observational period. Three patients showed transient T2 hyperintensity and swelling in the GP, SN and/or DCN during the episodes of pyrexia and seizures. The other findings included cerebral and cerebellar atrophy, thinning of the corpus callosum, and delayed myelination. The QSM values of the GP and SN were significantly higher in the patients compared to the controls (P=0.005, respectively), but that of the DCN did not differ significantly (P=0.16). Brain MRI is a useful method to establish the early diagnosis of BPAN."	"[A case of novel WDR45 mutation with beta-propeller protein-associated neurodegeneration (BPAN) presenting asymmetrical extrapyramidal signs]. Beta-propeller protein-associated neurodegeneration (BPAN) is categorized in Neurodegeneration with brain iron accumulation. The clinical feature of BPAN is global developmental delay in early childhood, followed rapid progression of cognitive disfunction and parkinsonism in adulthood. This case was pointed out intellectual disability at the age of 9, followed left dominant progressive parkinsonism from the age of 31. Brain MRI showed the T1-weighted signal hyperintensity of the substantia nigra with a central band of hypointensity and the T2 star weighted image hypointensity of substantia nigra and globus pallidus presenting dominant at right side. DAT SPECT also showed specific binding ratio decreased dominant in right side. She was diagnosed BPAN based on her genetic test revealing a novel mutation (c.411dupT) in WDR45. No studies reported detailed parkinsonism like laterality in BPAN. This case indicates the left dominant parkinsonism was caused by right dominant iron deposition to substantia nigra and globus pallidus in view of MRI findings and DAT SPECT."	"Sex differences in autophagy-mediated diseases: toward precision medicine. Nearly all diseases in humans, to a certain extent, exhibit sex differences, including differences in the onset, progression, prevention, therapy, and prognosis of diseases. Accumulating evidence shows that macroautophagy/autophagy, as a mechanism for development, differentiation, survival, and homeostasis, is involved in numerous aspects of sex differences in diseases such as cancer, neurodegeneration, and cardiovascular diseases. Advances in our knowledge regarding sex differences in autophagy-mediated diseases have enabled an understanding of their roles in human diseases, although the underlying molecular mechanisms of sex differences in autophagy remain largely unexplored. In this review, we discuss current advances in our insight into the biology of sex differences in autophagy and disease, information that will facilitate precision medicine.Abbreviations: AD: Azheimer disease; AMBRA1: autophagy and beclin 1 regulator 1; APP: amyloid beta precursor protein; AR: androgen receptor; AMPK: AMP-activated protein kinase; ATG: autophagy related; ATP6AP2: ATPase H+ transporting accessory protein 2; BCL2L1: BCL2 like 1; BECN1: beclin 1; CTSD: cathepsin D; CYP19A1: cytochrome P450 family 19 subfamily A member 1; DSD: disorders of sex development; eALDI: enhancer alternate long-distance initiator; ESR1: estrogen receptor 1; ESR2: estrogen receptor 2; FYCO1: FYVE and coiled-coil domain autophagy adaptor 1; GABARAP: GABA type A receptor-associated protein; GLA: galactosidase alpha; GTEx: genotype-tissue expression; HDAC6: histone deacetylase 6; I-R: ischemia-reperfusion; LAMP2: lysosomal associated membrane protein 2; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; MTOR: mechanistic target of rapamycin kinase; m6A: N6-methyladenosine; MYBL2: MYB proto-oncogene like 2; PIK3C3: phosphatidylinositol 3-kinase catalytic subunit type 3; PSEN1: presenilin 1; PSEN2: presenilin 2; RAB9A, RAB9A: member RAS oncogene family; RAB9B, RAB9B: member RAS oncogene family; RAB40AL: RAB40A like; SF1: splicing factor 1; SOX9: SRY-box transcription factor 9; SRY: sex determining region Y; TFEB: transcription factor EB; ULK1: unc-51 like autophagy activating kinase 1; UVRAG: UV radiation resistance associated; VDAC2: voltage dependent anion channel 2; WDR45: WD repeat domain 45; XPDS: X-linked parkinsonism and spasticity; YTHDF2: YTH N6-methyladenosine RNA binding protein 2."	"A rare cause of epileptic encephalopathy: a beta-propeller protein associated neurodegeneration case with a new mutation and literature review. In this report, detailed clinical features of a female patient and a new mutation that was not previously identified in the WD repeat-containing protein 45 (WDR45) gene are presented in order to contribute to the information in the literature on the phenotype as well as genotype of Beta-Propeller Protein Associated Neurodegeneration. Whole Exome Sequencing (WES) analysis was done since etiology could not be determined. Our case was admitted to the hospital due to epilepsy, growth retardation and autism. Her family history was unremarkable except consanguineous marriage. She had tonic seizures twice at the age of 7 and 12 months and had continual seizures after 16 months. At the time, electroencephalography and brain MRI were performed twice were determined to be normal. Brain MRI Spectroscopy was also found to be normal at 35 months of age. Metabolic screening tests (acyl carnitine profile, urine organic acids, plasma amino acids, a very long chain fatty acid profile, etc.) were also normal. Genetic screening of the epilepsy panel for epileptic encephalopathies was negative. WES analysis revealed heterozygous previously unreported variant in intron 6 of the WDR45 gene, c.344+5G &gt; A. In conclusion; Beta-Propeller Protein Associated Neurodegeneration should be considered as an option in the diagnosis of female patients with clinical findings of epilepsy, growth retardation and autism, with unspecified etiology."	"A rare cause of epileptic encephalopathy: a beta-propeller protein associated neurodegeneration case with a new mutation and literature review. In this report, detailed clinical features of a female patient and a new mutation that was not previously identified in the WD repeat-containing protein 45 (WDR45) gene are presented in order to contribute to the information in the literature on the phenotype as well as genotype of Beta-Propeller Protein Associated Neurodegeneration. Whole Exome Sequencing (WES) analysis was done since etiology could not be determined. Our case was admitted to the hospital due to epilepsy, growth retardation and autism. Her family history was unremarkable except consanguineous marriage. She had tonic seizures twice at the age of 7 and 12 months and had continual seizures after 16 months. At the time, electroencephalography and brain MRI were performed twice were determined to be normal. Brain MRI Spectroscopy was also found to be normal at 35 months of age. Metabolic screening tests (acyl carnitine profile, urine organic acids, plasma amino acids, a very long chain fatty acid profile, etc.) were also normal. Genetic screening of the epilepsy panel for epileptic encephalopathies was negative. WES analysis revealed heterozygous previously unreported variant in intron 6 of the WDR45 gene, c.344+5G &gt; A. In conclusion; Beta-Propeller Protein Associated Neurodegeneration should be considered as an option in the diagnosis of female patients with clinical findings of epilepsy, growth retardation and autism, with unspecified etiology."	"Trehalose limits opportunistic mycobacterial survival during HIV co-infection by reversing HIV-mediated autophagy block. Opportunistic bacterial infections amongst HIV-infected individuals contribute significantly to HIV-associated mortality. The role of HIV-mediated modulation of innate mechanisms like autophagy in promoting opportunistic infections, however, remains obscure. Here we show, HIV reactivation in or infection of macrophages inhibits autophagy and helps the survival of pathogenic Mycobacterium tuberculosis (Mtb) and nonpathogenic non-tuberculous mycobacterial strains (NTMs). The HIV-mediated impairment of xenophagy flux facilitated bacterial survival. Activation of autophagy by trehalose could induce xenophagy flux and kill intracellular Mtb or NTMs either during single or co-infections. Trehalose, we delineate, activates PIKFYVE leading to TFEB nuclear translocation in MCOLN1-dependent manner to induce autophagy. Remarkably, trehalose significantly reduced HIV-p24 levels in ex-vivo-infected PBMCs or PBMCs from treatment-naive HIV patients and also controlled mycobacterial survival within Mtb-infected animals. To conclude, we report leveraging of HIV-mediated perturbed host innate-immunity by opportunistic bacterial pathogens and show an attractive therapeutic strategy for HIV and associated co-morbidities.Abbreviations: AIDS: acquired immune deficiency syndrome; AMPK: AMP-activated protein kinase; ATG5: autophagy related 5; BafA1: bafilomycin A1; CFU: colony forming unit; CTSD: cathepsin D; CD63: CD63 molecule; EGFP: enhanced green fluorescent protein; FRET: Förster resonance energy transfer; GABARAP: gamma-aminobutyric acid receptor-associated protein; GAPDH: glyceraldehyde 3-phosphate dehydrogenase; GLUT: glucose transporter; HIV: human immunodeficiency virus; hMDMs: human monocyte derived macrophages; IL2: interleukin 2; LAMP1: lysosomal-associated membrane protein 1; LC3B-II: lipidated microtubule-associated proteins 1A/1B light chain 3B; Mtb: Mycobacterium tuberculosis; MTOR: mechanistic target of rapamycin; mRFP: monomeric red fluorescent protein; M6PR: mannose-6-phosphate receptor; NAC: N- acetyl- L -cysteine; NTM's: non-tuberculous mycobacteria; PBMC: Peripheral Blood Mononuclear cells; PIKFYVE: phosphoinositide kinase; FYVE-Type Zinc Finger; PHA: phytohemagglutinin; PMA: phorbol 12-myristate 13-acetate; PtdIns(3,5)P2: Phosphatidylinositol 3,5-bisphosphate; ptfLC3: pEGFP-mRFP-LC3; ROS: reactive oxygen species; SQSTM1: sequestosome1; TFEB: transcription factor EB; MCOLN1/TRPML1: mucolipin 1; PIP4P1/TMEM55B: Human trans-membrane Protein 55B; UVRAG: UV Radiation Resistance Associate; VPS35: vacuolar protein sorting associated protein 35; WDR45: WD repeat domain 45; YCAM: Yellow Chameleon."	"Genotype-phenotype correlation on 45 individuals with West syndrome. West syndrome is an epilepsy syndrome characterized by repetitive epileptic spasms (ES) and hypsarrhythmia, typically leading to developmental delay/intellectual disability (DD/ID). It is considered a classic epileptic encephalopathy (EE). We designed a diagnostic sequencing panel targeting 131 genes associated with epilepsy and/or EE and screened a cohort of 45 individuals with clinical diagnosis of West syndrome. We identified disease-causing single nucleotide variants in 11 out of 45 individuals affecting genes commonly associated with West syndrome (such as CDKL5, ARX) but also in genes predominantly linked to other epileptic disorders (such as DEPDC5, SCN1A, WDR45, AARS). Panel analysis revealed copy number variants in two additional cases, comprising a 6,7 Mb Duplication on chromosome 2 including SCN2A and SCN3A and a supernumerary marker chromosome 15 leading to an overall diagnostic yield of 29% (13/45). In our cohort, individuals with a disease-causing variant had significantly more severe phenotypes with respect to DD/ID, therapy resistant epilepsy and cerebral atrophy compared to genetically unclarified cases. In addition to investigating the genotypic spectrum of West syndrome, we compared the phenotypic spectrum of clarified versus unclarified cases. Our study illustrates that West syndrome is an electroclinical syndrome caused by various genetic disorders. Individuals without detectable genetic cause might have less encephalopathy leading to a less severe course."	"Human ATG2B possesses a lipid transfer activity which is accelerated by negatively charged lipids and WIPI4. Atg2 is one of the essential factors for autophagy. Recent advance of structural and biochemical study on yeast Atg2 proposed that Atg2 tethers the edge of the isolation membrane (IM) to the endoplasmic reticulum and mediates direct lipid transfer (LT) from ER to IM for IM expansion. In mammals, two Atg2 orthologs, ATG2A and ATG2B, participate in autophagic process. Here we showed that human ATG2B possesses the membrane tethering (MT) and LT activity that was promoted by negatively charged membranes and an Atg18 ortholog WIPI4. By contrast, negatively charged membranes reduced the yeast Atg2 activities in the absence of Atg18. These results suggest that the MT/LT activity of Atg2 is evolutionally conserved although their regulation differs among species."	"[A phenotypic and genetic study on β-propeller protein-associated neurodegeneration]. Objective: To summarize the clinical and genetic features of β-propeller protein-associated neurodegeneration (BPAN). Methods: The clinical data of 17 patients with BPAN with WDR45 gene variants were retrospectively collected at Children's Hospital of Fudan University, Peking University First Hospital, Capital Institute of Pediatrics, Shengjing Hospital of China Medical University and Shanghai Children's Hospital from June 2016 to December 2018, and their clinical manifestations, electroencephalogram, neuroimaging and genetics were analyzed. Results: Seventeen cases (13 females, 4 males), aged 1.1-8.8 years, were included. The median age of seizure onset was 14.5 months, from 3 months to 24 months of age, manifested with epileptic spasm in 6 cases and focal seizures in 5 cases. Eight patients had only one seizure type and 8 patients had two or more seizure types. Nine patients had complete remission of seizures. All 16 patients with seizures had developmental delay before the seizure onset, of whom 13 patients had moderate to severe seizures. The brain magnetic resonance imaging (MRI) was abnormal in 13 patients, including cerebral atrophy (10 cases) and thinning of the corpus callosum (9 cases). The brain magnetic susceptibility weighted imaging (SWI) in preschool stage showed prominent T2 hypointense signals in bilateral globus pallidus and brainstem ventral in two cases. Five seizure types (spasm, focal, absence, myodonic and generalized tonic clonic seizures)were found on ictal electroencephalogram(EEG) recordings. Compared to female patients(17(6-24) months of ege), male cases had earlier seizure onset (3, 4, 5, 18 months of age) . All patients had de novo variations in WDR45(6 nonsense, 4 frameshift, 3 missense and 4 splicing variations), with hemizygous variants in 3 males, mosaic variants in a male and heterozygous variants in 13 females, within which 5 variations had not been reported (c.977-1C&gt;T,c.976+1G&gt;C,c.10C&gt;T,c.806del and c.110T&gt;C). Conclusions: The patients with BPAN have profound developmental delay and are vulnerable to seizures. The male patients with BPAN tend to have more severer clinical phenotype than females. Early brain SWI could facilitate the timely diagnosis of this disease. 目的: 总结β螺旋蛋白相关性神经变性(BPAN)患儿的临床表型及基因型特点。 方法: 回顾性收集2016年6月至2018年12月复旦大学附属儿科医院、北京大学第一医院、首都儿科研究所、中国医科大学附属盛京医院及上海市儿童医院确诊为WDR45基因变异的17例BPAN患儿病例资料,总结其临床表现、头颅影像表现、脑电图以及基因型特点。 结果: 17例BPAN患儿中女13例、男4例,年龄1.1~8.8岁,17例患儿中16例合并癫痫。首次癫痫发病年龄为3~24月龄,发病年龄中位数为14.5月龄。痉挛发作6例,复杂部分性发作5例。8例患儿仅具有单一发作类型,8例患儿具有超过2种发作类型。9例患儿完全缓解。16例合并癫痫的患儿发作前均已表现出发育迟缓,13例为中、重度发育迟缓。13例患儿头颅磁共振成像(MRI)异常,9例患儿胼胝体薄,10例患儿脑发育不良或者脑萎缩;2例患儿在学龄期前进行头颅磁敏感加权成像(SWI),结果表现为双侧苍白球和脑干腹侧低信号。5例患儿同步脑电监测到痉挛、部分性、全面性强直阵挛、失神和肌阵挛发作。男性发病年龄分别为3、4、5、18月龄,女性患儿发病年龄为17(6~24)月龄。WDR45基因的变异包括3例错义变异,6例无义变异,4例移码变异,4例剪接变异;其中13例女性患儿为杂合变异,3例男性患儿为半合变异,1例男性患儿为嵌合变异,16个不同变异均为De novo,其中5个变异(c.977-1C&gt;T、c.976+1G&gt;C、c.10C&gt;T、c.806del和c.110T&gt;C)未见报道。 结论: BPAN患儿具有明显的发育迟缓,合并癫痫概率高,女性患儿为主,男性患儿癫痫发病早且发育迟缓程度更重。早期进行头颅SWI检查有助于提供诊断线索。."	"Beta-Propeller Protein-Associated Neurodegeneration (BPAN) Detected in a Child with Epileptic Spasms. This report discusses a 13-year-old girl diagnosed with beta-propeller protein-associated neurodegeneration (BPAN). BPAN is an X-linked neurodegeneration disorder associated with a mutation in the WDR45 gene. It typically presents in childhood with encephalopathy, developmental delay, and seizures. Following an initial static phase, these symptoms then progress to dementia, dystonia, and parkinsonism in early adulthood. Our child initially presented with epileptic spasms, global developmental delay, speech delay, hypotonia, spasticity, scoliosis, and gait disturbance. While these symptoms remained unchanged in early childhood, they depicted accelerated deterioration at age 12-13 rather than in adulthood. Her diagnosis was made based on her clinical presentation and review of imaging that led to specific genetic testing confirming the condition. The imaging findings were of markedly low signal on gradient T2* sequences in the globus pallidus and substantia nigra and T1 hyperintensity in the substantia nigra, with associated diffuse brain volume loss. Unlike other cases reported in the literature, there was no classic area of central hypointensity on T1 imaging in the substantia nigra."	"Early-onset presentation of a new subtype of β-Propeller protein-associated neurodegeneration (BPAN) caused by a de novo WDR45 deletion in a 6 year-old female patient. Neurodegeneration with brain iron accumulation (NBIA) comprises a group of rare genetic disorders characterized by progressive extrapyramidal and other neurological symptoms due to focal iron accumulation in the basal ganglia (Adidi et al., 2016). β-Propeller protein-associated neurodegeneration (BPAN) is the most recently identified subtype of NBIA caused by heterozygous variants in WDR45 (OMIM: *300526) at Xp11.23. We report the clinical neurophysiological and neuro-imaging findings of a new subtype of BPAN in a 6 year-old female patient, who was identified to have a large de novo WDR45 deletion who presented in the first year of life with early onset global developmental delay, severe cognitive impairment, generalized hypotonia and a corticosteroid responsive epileptic encephalopathy."	"Is WDR45 the missing link for ER stress-induced autophagy in beta-propeller associated neurodegeneration? Beta-propeller protein-associated neurodegeneration (BPAN) is caused by mutations in the autophagy gene WDR45/WIPI4. In human, BPAN is associated with static encephalopathy in childhood and neurodegeneration in adulthood (SENDA). It has been proposed that WDR45 mutations cause neurodegeneration due to defective autophagy. Whether these mutations cause a global attenuation or a defect in a subset of autophagy functions is unknown. Based on a recent study showing that wdr45 knockout mice exhibit defective autophagy associated with an increased ER stress, we propose that ER-mediated autophagy, a selective activation of autophagy, is defective in mouse and cellular models of BPAN. We discuss the implication of these findings on the pathophysiological relevance of the relationship between ER stress and autophagy in BPAN as well as other neurodegenerative diseases exhibiting ER stress and defective autophagy."	"Rett and Rett-like syndrome: Expanding the genetic spectrum to KIF1A and GRIN1 gene. This study aimed to investigate the new genetic etiologies of Rett syndrome (RTT) or Rett-like phenotypes. Targeted next-generation sequencing (NGS) was performed on 44 Chinese patients with RTT or Rett-like phenotypes, in whom genetic analysis of MECP2, CDKL5, and FOXG1 was negative. The detection rate was 31.8% (14/44). A de novo pathogenic variant (c.275_276ins AA, p. Cys92*) of KIF1A was identified in a girl with all core features of typical RTT. A patient with atypical RTT was detected having de novo GRIN1 pathogenic variant (c.2337C &gt; A, p. Val793Phe). Additionally, compound heterozygous pathogenic variants of PPT1 gene were detected in a girl, who initially displayed typical RTT features, but progressed into neuronal ceroid lipofuscinoses (NCL) afterwards. Pathogenic variants in KCNQ2, MEF2C, WDR45, TCF4, IQSEC2, and SDHA were also found in our cohort. It is the first time that pathogenic variants of GRIN1 and KIF1A were linked to RTT and Rett-like profiles. Our findings expanded the genetic heterogeneity of Chinese RTT or Rett-like patients, and also suggest that some patients with genetic metabolic disease such as NCL, might displayed Rett features initially, and clinical follow-up is essential for the diagnosis."	"Childhood Dystonia-Parkinsonism Following Infantile Spasms-Clinical Clue to Diagnosis in Early Beta-Propeller Protein-Associated Neurodegeneration. Beta-propeller protein-associated neurodegeneration (BPAN) is a very rare, X-linked dominant (XLD) inherited member of the neurodegeneration with brain iron accumulation (NBIA) disease family. We present a female case of BPAN with infantile spasms in the first year, Rett-like symptomatology, focal epilepsy, and loss of motor skills in childhood. Menarche occurred at the age of 9, after precocious pubarche and puberty.Dystonia-parkinsonism as extrapyramidal sign at the age of 10 years resulted in radiological and genetic work-up. Burke-Fahn-Marsden Dystonia Rating Scale (BFMDRS) measured 66/120 points in body part-related dystonia symptoms. Cerebrospinal fluid examination showed dopamine depletion.T2 and B0 sequences of the diffusion-weighted magnetic resonance imaging showed susceptibility artifacts with NBIA-typical hypointense globus pallidus (GP) and substantia nigra (SN). Next-generation sequencing revealed a BPAN-causing pathogenic variant in WDR45 (WD repeat-containing protein 45) gene (c.830 + 1G &gt; A, XLD, heterozygous, de novo). Skewed X-inactivation was measured (2:98). Autophagy-related X-linked BPAN disease might still be underdiagnosed in female cases of infantile spasms.Skewed X-inactivation will have mainly influenced the uncommon, very early childhood neurodegenerative symptomatology in the present BPAN case. Oral levodopa substitution led to improvement in sleep disorder, hypersalivation, and swallowing.Reduced white matter and hypointense signals in SN and GP on susceptibility sequences in magnetic resonance imaging are characteristic radiological findings of advanced disease in NBIA. No BPAN-typical halo sign in T1-weighted scan at midbrain level was seen at the age of 11 years. NBIA panel is recommended for early diagnosis."	"Epileptic encephalopathy and brain iron accumulation due to WDR45 mutation. NA"	"Neurodegeneration with brain iron accumulation: Insights into the mitochondria dysregulation. NBIA (Neurodegeneration with brain iron accumulation) is a group of inherited neurologic disorders characterized by marked genetic heterogeneity, in which iron atypical accumulates in basal ganglia resulting in brain magnetic resonance imaging changes, histopathological abnormalities, and neuropsychiatric clinical symptoms. With the rapid development of high-throughput sequencing technologies, ten candidate genes have been identified, including PANK2, PLA2G6, C19orf12, WDR45, FA2H, ATP13A2, FTL, CP, C2orf37, and COASY. They are involved in seemingly unrelated cellular pathways, such as iron homeostasis (FTL, CP), lipid metabolism (PLA2G6, C19orf12, FA2H), Coenzyme A synthesis (PANK2, COASY), and autophagy (WDR45, ATP13A2). In particular, PANK2, COASY, PLA2G6, and C19orf12 are located on mitochondria, which associate with certain subtypes of NBIA showing mitochondria dysregulation. However, the relationships among those four genes are still unclear. Therefore, this review is specifically focused on dysregulation of mitochondria in NBIA and afore-mentioned four genes, with summaries of both pathological and clinical findings."	"Functional evidence for a de novo mutation in WDR45 leading to BPAN in a Chinese girl. Beta-propeller protein-associated neurodegeneration (BPAN, OMIM 300894) is an X-linked neurodegenerative disorder caused by mutations in WDR45. WDR45 is required for autophagy, defect in WDR45 impaired autophagy which contributes for the pathogenesis of BPAN. Previously, we reported a novel de novo mutation (c.1040_1041del, p.Glu347GlyfsTer7) in WDR45 (NM_007075) in a 3-year-old Chinese girl with BPAN. The protein structure was constructed using SWISS-MODEL and the isoelectric point (pI) was predicted by the online pI/Mw tool at ExPASy. The functional effects of this mutation were predicted by two online software programs: PROVEN and MutationTaster. Stable overexpression of Flag-tagged wild-type or mutant WDR45 in HeLa cells was constructed. Protein levels of LC3 and p62 were analyzed by western blot upon treatment with/without autophagy inhibitor Bafilomycin A1, the formation of LC3 puncta were analyzed in HeLa cells transfected with mCherry-LC3 by confocal microscopy. The mutation resulted in a shift of pI from 6.74 to 8.84 and was predicted to be pathogenic. The protein levels of LC3-II and p62 were increased in cells overexpression of wild-type and mutant WDR45 while the protein levels were not increased in cells overexpression of mutant WDR45 upon treatment with autophagy inhibitor Bafilomycin A1. Results from confocal microscopy revealed that LC3-positive puncta were increased in cells expressing both wild-type and mutant WDR45 while the number of LC3-positive puncta was not increased in cells expressing mutant WDR45 upon treatment with Bafilomycin A1. Our study evidenced that this novel mutation in WDR45 impaired autophagy in cells thus this mutation is the cause for BPAN in this patient."	"Single-center experience with Beta-propeller protein-associated neurodegeneration (BPAN); expanding the phenotypic spectrum. Beta-propeller protein-associated neurodegeneration (BPAN) is a subtype of neurodegeneration with brain iron accumulation (NBIA) that presents with childhood developmental delay (especially speech delay), occasionally associated with epileptic encephalopathy, autism, or Rett-like syndrome. The majority of children described to date have been severely affected, with little to no expressive speech function, severe developmental delay, and cognitive impairment. Herein, five additional patients with BPAN identified in the same center in Canada are described, four with the typical severe phenotype and one with a milder phenotype. Our findings provide further evidence that a spectrum of severity exists for this rare and newly described condition. Challenges in identifying iron accumulation on brain MRI are also addressed. Additionally, the importance of including the WDR45 gene on epilepsy and Rett-like syndrome genetic panels is highlighted."	"Role of Wdr45b in maintaining neural autophagy and cognitive function. Macroautophagy/autophagy functions as a quality control mechanism by degrading misfolded proteins and damaged organelles and plays an essential role in maintaining neural homeostasis. The phosphoinositide phosphatidylinositol-3-phosphate (PtdIns3P) effector Atg18 is essential for autophagosome formation in yeast. Mammalian cells contain four Atg18 homologs, belonging to two subclasses, WIPI1 (WD repeat domain, phosphoinositide interacting 1), WIPI2 and WDR45B/WIPI3 (WD repeat domain 45B), WDR45/WIPI4. The role of Wdr45b in autophagy and in neural homeostasis, however, remains unknown. Recent human genetic studies have revealed a potential causative role of WDR45B in intellectual disability. Here we demonstrated that mice deficient in Wdr45b exhibit motor deficits and learning and memory defects. Histological analysis reveals that wdr45b knockout (KO) mice exhibit a large number of swollen axons and show cerebellar atrophy. SQSTM1- and ubiquitin-positive aggregates, which are autophagy substrates, accumulate in various brain regions in wdr45b KO mice. Double KO mice, wdr45b and wdr45, die within one day after birth and exhibit more severe autophagy defects than either of the single KO mice, suggesting that these two genes act cooperatively in autophagy. Our studies demonstrated that WDR45B is critical for neural homeostasis in mice. The wdr45b KO mice provide a model to study the pathogenesis of intellectual disability.Abbreviations: ACSF: artificial cerebrospinal fluid; AMC: aminomethylcoumarin; BPAN: beta-propeller protein-associated neurodegeneration; CALB1: calbindin 1; CNS: central nervous system; DCN: deep cerebellar nuclei; fEPSP: field excitatory postsynaptic potential; IC: internal capsule; ID: intellectual disability; ISH: in situ hybridization; KO: knockout; LTP: long-term potentiation; MBP: myelin basic protein; MGP: medial globus pallidus; PtdIns3P: phosphoinositide phosphatidylinositol-3-phosphate; WDR45B: WD repeat domain 45B; WIPI1: WD repeat domain, phosphoinositide interacting 1; WT: wild type."	"WDR45 contributes to neurodegeneration through regulation of ER homeostasis and neuronal death. Mutations in the macroautophagy/autophagy gene WDR45 cause β-propeller protein-associated neurodegeneration (BPAN); however the molecular and cellular mechanism of the disease process is largely unknown. Here we generated constitutive wdr45 knockout (KO) mice that displayed cognitive impairments, abnormal synaptic transmission and lesions in several brain regions. Immunohistochemistry analysis showed loss of neurons in prefrontal cortex and basal ganglion in aged mice, and increased apoptosis in prefrontal cortex, recapitulating a hallmark of neurodegeneration. Quantitative proteomic analysis showed accumulation of endoplasmic reticulum (ER) proteins in KO mouse. At the cellular level, accumulation of ER proteins due to WDR45 deficiency resulted in increased ER stress and impaired ER quality control. The unfolded protein response (UPR) was elevated through ERN1/IRE1 or EIF2AK3/PERK pathway, and eventually led to neuronal apoptosis. Suppression of ER stress or activation of autophagy through MTOR inhibition alleviated cell death. Thus, the loss of WDR45 cripples macroautophagy machinery in neurons and leads to impairment in organelle autophagy, which provides a mechanistic understanding of cause of BPAN and a potential therapeutic strategy to treat this genetic disorder.Abbreviations: 7-ADD: 7-aminoactinomycin D; ASD: autistic spectrum disorder; ATF6: activating transcription factor 6; ATG: autophagy-related; BafA1: bafilomycin A1; BCAP31: B cell receptor associated protein 31; BPAN: β-propeller protein-associated neurodegeneration; CCCP: carbonyl cyanide m-chlorophenylhydrazone; CDIPT: CDP-diacylglycerol-inositol 3-phosphatidyltransferase (phosphatidylinositol synthase); DDIT3/CHOP: DNA-damage inducible transcript 3; EIF2A: eukaryotic translation initiation factor 2A; EIF2AK3/PERK: eukaryotic translation initiation factor 2 alpha kinase 3; ER: endoplasmic reticulum; ERN1/IRE1: endoplasmic reticulum to nucleus signaling 1; GFP: green fluorescent protein; HIP: hippocampus; HSPA5/GRP78: heat shock protein family A (HSP70) member 5; KO: knockout; LAMP1: lysosomal-associated membrane 1; mEPSCs: miniature excitatory postsynaptic currents; MG132: N-benzyloxycarbonyl-L-leucyl-L-leucyl-L-leucinal; MIB: mid-brain; MTOR: mechanistic target of rapamycin kinase; PCR: polymerase chain reaction; PFA: paraformaldehyde; PFC: prefrontal cortex; PRM: parallel reaction monitoring; RBFOX3/NEUN: RNA binding protein, fox-1 homolog [C. elegans] 3; RTN3: reticulon 3; SEC22B: SEC22 homolog B, vesicle trafficking protein; SEC61B: SEC61 translocon beta subunit; SEM: standard error of the mean; SNR: substantia nigra; SQSTM1/p62: sequestosome 1; TH: tyrosine hydroxylase; Tm: tunicamycin; TMT: tandem mass tag; TUDCA: tauroursodeoxycholic acid; TUNEL: terminal deoxynucleotidyl transferase dUTP nick-end labeling; UPR: unfolded protein response; WDR45: WD repeat domain 45; WT: wild type; XBP1: X-box binding protein 1."	"TRAPPC11 functions in autophagy by recruiting ATG2B-WIPI4/WDR45 to preautophagosomal membranes. TRAPPC11 has been implicated in membrane traffic and lipid-linked oligosaccharide synthesis, and mutations in TRAPPC11 result in neuromuscular and developmental phenotypes. Here, we show that TRAPPC11 has a role upstream of autophagosome formation during macroautophagy. Upon TRAPPC11 depletion, LC3-positive membranes accumulate prior to, and fail to be cleared during, starvation. A proximity biotinylation assay identified ATG2B and its binding partner WIPI4/WDR45 as TRAPPC11 interactors. TRAPPC11 depletion phenocopies that of ATG2 and WIPI4 and recruitment of both proteins to membranes is defective upon reduction of TRAPPC11. We find that a portion of TRAPPC11 and other TRAPP III proteins localize to isolation membranes. Fibroblasts from a patient with TRAPPC11 mutations failed to recruit ATG2B-WIPI4, suggesting that this interaction is physiologically relevant. Since ATG2B-WIPI4 is required for isolation membrane expansion, our study suggests that TRAPPC11 plays a role in this process. We propose a model whereby the TRAPP III complex participates in the formation and expansion of the isolation membrane at several steps."	"Substantia Nigra Swelling and Dentate Nucleus T2 Hyperintensity May Be Early Magnetic Resonance Imaging Signs of β-Propeller Protein-Associated Neurodegeneration. Mutations in WDR45 cause β-propeller protein-associated neurodegeneration (BPAN), a type of neurodegeneration with brain iron accumulation (NBIA). We reviewed clinical and MRI findings in 4 patients with de novo WDR45 mutations. Psychomotor delay and movement disorders were present in all cases; early-onset epileptic encephalopathy was present in 3. In all cases, first MRI showed: prominent bilateral SN enlargement, bilateral dentate nuclei T2-hyperintensity, and corpus callosum thinning. Iron deposition in the SN and globus pallidus (GP) only became evident later. Diffuse cerebral atrophy was present in 3 cases. In this series, SN swelling and dentate nucleus T2 hyperintensity were early signs of BPAN, later followed by progressive iron deposition in the SN and GP. When clinical suspicion is raised, MRI is crucial for identifying early features suggesting this type of NBIA."	"A Novel and Mosaic WDR45 Nonsense Variant Causes Beta-Propeller Protein-Associated Neurodegeneration Identified Through Whole Exome Sequencing and X chromosome Heterozygosity Analysis. Beta-propeller protein-associated neurodegeneration (BPAN) is an X-linked rare dominant disorder of autophagy. The role of WDR45 has been implicated in BPAN almost exclusively in females possibly due to male lethality. Characterization of distinctive clinical manifestations and potentially the complex genetic determinants in rare male patients remain crucial for deciphering BPAN and other X-linked dominant diseases. We performed whole exome sequencing (WES) followed by segregation analysis and identified a novel nonsense and mosaic variant in WDR45, namely NM_007075.3:c.873C&gt;G; p.(Tyr291*) in an affected male at the age of 34. His biphasic medical history was compatible with BPAN, which was characterized by delayed psychomotor development, intellectual disability, and progression into dystonia parkinsonism in his twenties. The variant had an apparently mosaic pattern both in whole exome and Sanger sequencing findings. In order to figure out if mosaicism was restricted to this variant or related to a chromosomal level mosaicism, we used our in-house WES data from 129 unrelated individuals to calculate the threshold values of male and female X chromosome heterozygosity (XcHet) in WES data for our pipeline. A background level of heterozygous variants on X chromosome excluding the pseudoautosomal loci is an observed phenomenon in WES analysis and this level has been used as a quality measure. Herein, we suggest utilization of this measure for detection of digital anomalies of the X chromosome in males by potentially observing a higher XcHet value than the threshold value. This approach has revealed a variant level mosaicism in the affected male, which was further supported with cytogenetic analyses."	"A new complex rearrangement in infant ALL: t(X;11;17)(p11.2;q23;q12). We present a case of an infant who developed pro-B acute lymphoblastic leukemia with a rare and complex MLL-translocation. Cytogenetic analysis of bone marrow cells at diagnosis showed a 46,XY,t(X;11)(p11.2;q23)[13]/46,XY[7] karyotype. Fluorescence in situ hybridization analysis using a break apart specific probes showed a split in the MLL gene. Long distance inverse-PCR and next generation sequencing analysis depicted a complex rearrangement t(X;11;17)(p11.2;q23;q12) involving MLL, MLLT6 and the genomic region Xp11.23, 41 bases upstream of the WDR45 gene. WDR45 encodes a beta-propeller protein essential for autophagocytosis. MLL rearrangements with involvement of Xp have not been previously described."	"A Novel WDR45 Mutation in a 9-Month-Old Male Infant with Epileptic Spasms. NA"	"Beta-propeller protein associated neurodegeneration (BPAN); the first report of three patients from Iran with de novo novel mutations. NA"	"Ischemic Fasciitis of the Left Buttock in a 40-Year-Old Woman with Beta-Propeller Protein-Associated Neurodegeneration (BPAN). BACKGROUND Ischemic fasciitis is a rare condition that occurs in debilitated and immobilized individuals, usually overlying bony protuberances. Because the histology shows a pseudosarcomatous proliferation of atypical fibroblasts, and because the lesion can increase in size, ischemic fasciitis can mimic sarcoma. Beta-propeller protein-associated neurodegeneration (BPAN) arises in infancy and is due to mutations in the WDR45 gene on the X chromosome. BPAN results in progressive symptoms of dystonia, Parkinsonism, and dementia once the individual reaches adolescence or early adulthood, and is usually fatal before old age. A case of ischemic fasciitis of the buttock is presented in an adult woman with BPAN. CASE REPORT A 40-year-old woman with BPAN and symptoms of mental and physical deterioration, had become increasingly wheelchair-dependent and presented with a mass in her buttock that had been increasing in size for two months. Computed tomography (CT) imaging showed an ill-defined subcutaneous lesion between the dermis and the gluteal muscle, which was suspicious for malignancy. A needle biopsy of the mass was performed. The histology examination showed benign ischemic fasciitis. A follow-up CT scan performed 3.5 months after identification of the lesion showed that it had decreased in size. CONCLUSIONS Ischemic fasciitis is a rare condition that is associated with immobility. Because BPAN is a neurodegenerative disease that can cause immobility, a history of BPAN in patients of all ages may be associated with an increased risk of developing ischemic fasciitis. The correct diagnosis is essential, as ischemic fasciitis, although benign, can mimic malignancy."	"Beta-propeller protein-associated neurodegeneration (BPAN) as a genetically simple model of multifaceted neuropathology resulting from defects in autophagy. Autophagy is an essential and conserved cellular homeostatic process. Defects in the core and accessory components of the autophagic machinery would most severely impact terminally differentiated cells, such as neurons. The neurodevelopmental/neurodegenerative disorder β-propeller protein-associated neurodegeneration (BPAN) resulted from heterozygous or hemizygous germline mutations/pathogenic variant of the X chromosome gene WDR45, encoding WD40 repeat protein interacting with phosphoinositides 4 (WIPI4). This most recently identified subtype of the spectrum of neurodegeneration with brain iron accumulation diseases is characterized by a biphasic mode of disease manifestation and progression. The first phase involves early-onset of epileptic seizures, global developmental delay, intellectual disability and autistic syndrome. Subsequently, Parkinsonism and dystonia, as well as dementia, emerge in a subacute manner in adolescence or early adulthood. BPAN disease phenotypes are thus complex and linked to a wide range of other neuropathological disorders. WIPI4/WDR45 has an essential role in autophagy, acting as a phosphatidylinositol 3-phosphate binding effector that participates in autophagosome biogenesis and size control. Here, we discuss recent updates on WIPI4's mechanistic role in autophagy and link the neuropathological manifestations of BPAN's biphasic infantile onset (epilepsy, autism) and adolescent onset (dystonic, Parkinsonism, dementia) phenotypes to neurological consequences of autophagy impairment that are now known or emerging in many other neurodevelopmental and neurodegenerative disorders. As monogenic WDR45 mutations in BPAN result in a large spectrum of disease phenotypes that stem from autophagic dysfunctions, it could potentially serve as a simple and unique genetic model to investigate disease pathology and therapeutics for a wider range of neuropathological conditions with autophagy defects."	"Iron overload is accompanied by mitochondrial and lysosomal dysfunction in WDR45 mutant cells. Beta-propeller protein-associated neurodegeneration is a subtype of monogenic neurodegeneration with brain iron accumulation caused by de novo mutations in WDR45. The WDR45 protein functions as a beta-propeller scaffold and plays a putative role in autophagy through its interaction with phospholipids and autophagy-related proteins. Loss of WDR45 function due to disease-causing mutations has been linked to defects in autophagic flux in patient and animal cells. However, the role of WDR45 in iron homeostasis remains elusive. Here we studied patient-specific WDR45 mutant fibroblasts and induced pluripotent stem cell-derived midbrain neurons. Our data demonstrated that loss of WDR45 increased cellular iron levels and oxidative stress, accompanied by mitochondrial abnormalities, autophagic defects, and diminished lysosomal function. Restoring WDR45 levels partially rescued oxidative stress and the susceptibility to iron treatment, and activation of autophagy reduced the observed iron overload in WDR45 mutant cells. Our data suggest that iron-containing macromolecules and organelles cannot effectively be degraded through the lysosomal pathway due to loss of WDR45 function."	"Functional Linkage of RKIP to the Epithelial to Mesenchymal Transition and Autophagy during the Development of Prostate Cancer. Raf kinase inhibitor protein (RKIP) plays a critical role in many signaling pathways as a multi-functional adapter protein. In particular, the loss of RKIP's function in certain types of cancer cells results in epithelial to mesenchymal transition (EMT) and the promotion of cancer metastasis. In addition, RKIP inhibits autophagy by modulating LC3-lipidation and mTORC1. How the RKIP-dependent inhibition of autophagy is linked to EMT and cancer progression is still under investigation. In this study, we investigated the ways by which RKIP interacts with key gene products in EMT and autophagy during the progression of prostate cancer. We first identified the gene products of interest using the corresponding gene ontology terms. The weighted-gene co-expression network analysis (WGCNA) was applied on a gene expression dataset from three groups of prostate tissues; benign prostate hyperplasia, primary and metastatic cancer. We found two modules of highly co-expressed genes, which were preserved in other independent datasets of prostate cancer tissues. RKIP showed potentially novel interactions with one EMT and seven autophagy gene products (TGFBR1; PIK3C3, PIK3CB, TBC1D25, TBC1D5, TOLLIP, WDR45 and WIPI1). In addition, we identified several upstream transcription modulators that could regulate the expression of these gene products. Finally, we verified some RKIP novel interactions by co-localization using the confocal microscopy analysis in a prostate cancer cell line. To summarize, RKIP interacts with EMT and autophagy as part of the same functional unit in developing prostate cancer."	"Expanding the Spectrum of Dopa-Responsive Dystonia (DRD) and Proposal for New Definition: DRD, DRD-plus, and DRD Look-alike. Previously, we defined DRD as a syndrome of selective nigrostriatal dopamine deficiency caused by genetic defects in the dopamine synthetic pathway without nigral cell loss. DRD-plus also has the same etiologic background with DRD, but DRD-plus patients have more severe features that are not seen in DRD because of the severity of the genetic defect. However, there have been many reports of dystonia responsive to dopaminergic drugs that do not fit into DRD or DRD-plus (genetic defects in the dopamine synthetic pathway without nigral cell loss). We reframed the concept of DRD/DRD-plus and proposed the concept of DRD look-alike to include the additional cases described above. Examples of dystonia that is responsive to dopaminergic drugs include the following: transportopathies (dopamine transporter deficiency; vesicular monoamine transporter 2 deficiency); SOX6 mutation resulting in a developmentally decreased number of nigral cells; degenerative disorders with progressive loss of nigral cells (juvenile Parkinson's disease; pallidopyramidal syndrome; spinocerebellar ataxia type 3), and disorders that are not known to affect the nigrostriatal dopaminergic system (DYT1; GLUT1 deficiency; myoclonus-dystonia; ataxia telangiectasia). This classification will help with an etiologic diagnosis as well as planning the work up and guiding the therapy."	"Early onset developmental delay and epilepsy in pediatric patients with WDR45 variants. Developmental delay (DD) is a neurological disorder that presents with defects in gross motor, fine motor, language and cognition functions. WD repeat domain 45 (WDR45) is one of the disease-causing genes of DD. Previously, WDR45 de novo mutations were reported in certain adult and pediatric patients due to iron accumulation. We report five pediatric female patients with DD and epilepsy. Their ages were below 3 years at the first consultation, and precise diagnoses were difficult based on the available clinical information and phenotype. Children with DD and/or epilepsy presenting to the molecular diagnostic center of Children's Hospital of Fudan University between May 2016 and May 2017 were enrolled. The patients and their parents were subjected to whole-exome sequencing (WES), and we characterized the phenotypes of the patients carrying WDR45 variants. Furthermore, we overexpressed the candidate variants in HeLa cells and evaluated their effect on autophagy through Western blot and immunofluorescence staining with confocal microscopy. Five WDR45 de novo mutations, namely, c.19C &gt; T (p.Arg7*), c.401G &gt; C (p.Arg134Pro), c.503G &gt; A (p.Gly168Glu), c.700C &gt; T (p.Arg234*), and c.912delT (p.Ala305Leufs*25), were detected in 623 enrolled pediatric patients (274 females; 487 patients younger than 6 years). All five patients with WDR45 variants presented with DD and epilepsy. Compared with the control HeLa cells, the cells with the p. Arg134Pro and p. Gly168Glu missense mutations showed accumulation of LC3-containing autophagic structures and an abnormally enlarged cell volume, and Western blotting revealed a significant increase in LC3II/GAPDH. The identification of WDR45 mutations provides further evidence that WES plays an important role in the diagnosis of neurological disorders with common phenotypes and that WDR45 mutations are associated with neurological disorders and are not very rare in Chinese female pediatric patients with DD and/or epilepsy. The diagnosis of patients with WDR45 mutations would enable more precise genetic counseling for the parents of these children."	"A Patient with Beta-Propeller Protein-Associated Neurodegeneration: Treatment with Iron Chelation Therapy. We present a case of beta-propeller protein-associated neurodegeneration, a form of neurodegeneration with brain iron accumulation. The patient harbored a novel mutation in the WDR45 gene. A detailed video and description of her clinical condition are provided. Her movement disorder phenomenology was characterized primarily by limb stereotypies and gait dyspraxia. The patient's disability was advanced by the time iron-chelating therapy with deferiprone was initiated, and no clinical response in terms of cognitive function, behavior, speech, or movements were observed after one year of treatment."	"Transient swelling in the globus pallidus and substantia nigra in childhood suggests SENDA/BPAN. NA"	"When Rett syndrome is due to genes other than MECP2. Two individuals meeting diagnostic criteria for Rett syndrome (RTT) but lacking a mutation in MECP2, the gene predominantly associated with this disorder, were provided additional genetic testing. This testing revealed pathogenic mutations in a gene not previously associated with RTT, CTNNB1, mutations in which lead to an autosomal dominant neurodevelopmental disorder affecting cell signaling and transcription factors as well as a likely pathogenic mutation in the WDR45 gene, which is associated with developmental delay in early childhood and progressive neurodegeneration in adolescence or adulthood related to iron accumulation in the globus pallidus and substantia nigra. These two individuals are described in relation to previous reports linking multiple other genes with RTT failing to show an MECP2 mutation. These individuals underscore the need to pursue additional molecular testing in RTT when a mutation in MECP2 is not detected."	"Functional mRNA analysis reveals aberrant splicing caused by novel intronic mutation in WDR45 in NBIA patient. WDR45 gene-associated neurodegeneration with brain iron accumulation (NBIA), referred to as beta-propeller protein-associated neurodegeneration (BPAN), is a rare disorder that presents with a very nonspecific clinical phenotype in children constituting global developmental delay. This case report illustrates the power of a combination of trio exome sequencing, in silico splicing analysis, and mRNA analysis to provide sufficient evidence for pathogenicity of a relatively intronic variant in WDR45, and in so doing, find a genetic diagnosis for a 6-year-old patient with developmental delay and seizures, a diagnosis which may otherwise have only been found once the characteristic MRI patterns of the disease became more obvious in young adulthood."	"WDR45 mutations may cause a MECP2 mutation-negative Rett syndrome phenotype. NA"	"Beta-propeller protein-associated neurodegeneration: a case report and review of the literature. Beta-propeller protein-associated neurodegeneration (BPAN) is a rare disorder, which is increasingly recognized thanks to next-generation sequencing. Due to a highly variable phenotype, patients may present to pediatrics, neurology, psychiatry, or internal medicine. It is therefore essential that physicians of different specialties are familiar with this severe and debilitating condition."	"Neurodegeneration with brain iron accumulation. Neurodegeneration with brain iron accumulation (NBIA) comprises a clinically and genetically heterogeneous group of disorders affecting children and adults. These rare disorders are often first suspected when increased basal ganglia iron is observed on brain magnetic resonance imaging. For the majority of NBIA disorders the genetic basis has been delineated, and clinical testing is available. The four most common NBIA disorders include pantothenate kinase-associated neurodegeneration (PKAN) due to mutations in PANK2, phospholipase A2-associated neurodegeneration caused by mutation in PLA2G6, mitochondrial membrane protein-associated neurodegeneration from mutations in C19orf12, and beta-propeller protein-associated neurodegeneration due to mutations in WDR45. The ultrarare NBIA disorders are caused by mutations in CoASY, ATP13A2, and FA2H (causing CoA synthase protein-associated neurodegeneration, Kufor-Rakeb disease, and fatty acid hydroxylase-associated neurodegeneration, respectively). Together, these genes account for disease in approximately 85% of patients diagnosed with an NBIA disorder. New NBIA genes are being recognized with increasing frequency as a result of whole-exome sequencing, which is also facilitating early ascertainment of patients whose phenotype is often nonspecific."	"Monogenic disorders that mimic the phenotype of Rett syndrome. Rett syndrome (RTT) is caused by mutations in methyl-CpG-binding protein 2 (MECP2), but defects in a handful of other genes (e.g., CDKL5, FOXG1, MEF2C) can lead to presentations that resemble, but do not completely mirror, classical RTT. In this study, we attempted to identify other monogenic disorders that share features with RTT. We performed a retrospective chart review on n = 319 patients who had undergone clinical whole exome sequencing (WES) for further etiological evaluation of neurodevelopmental diagnoses that remained unexplained despite extensive prior workup. From this group, we characterized those who (1) possessed features that were compatible with RTT based on clinical judgment, (2) subsequently underwent MECP2 sequencing and/or MECP2 deletion/duplication analysis with negative results, and (3) ultimately arrived at a diagnosis other than RTT with WES. n = 7 patients had clinical features overlapping RTT with negative MECP2 analysis but positive WES providing a diagnosis. These seven patients collectively possessed pathogenic variants in six different genes: two in KCNB1 and one each in FOXG1, IQSEC2, MEIS2, TCF4, and WDR45. n = 2 (both with KCNB1 variants) fulfilled criteria for atypical RTT. RTT-associated features included the following: loss of hand or language skills (n = 3; IQSEC2, KCNB1 x 2); disrupted sleep (n = 4; KNCB1, MEIS2, TCF4, WDR45); stereotyped hand movements (n = 5; FOXG1, KNCB1 x 2, MEIS2, TCF4); bruxism (n = 3; KCNB1 x 2; TCF4); and hypotonia (n = 7). Clinically based diagnoses can be misleading, evident by the increasing number of genetic conditions associated with features of RTT with negative MECP2 mutations."	"Severe infantile onset developmental and epileptic encephalopathy caused by mutations in autophagy gene WDR45. Heterozygous de novo variants in the autophagy gene, WDR45, are found in beta-propeller protein-associated neurodegeneration (BPAN). BPAN is characterized by adolescent onset dementia and dystonia; 66% patients have seizures. We asked whether WDR45 was associated with developmental and epileptic encephalopathy (DEE). We performed next generation sequencing of WDR45 in 655 patients with developmental and epileptic encephalopathies. We identified 3/655 patients with DEE plus 4 additional patients with de novo WDR45 pathogenic variants (6 truncations, 1 missense); all were female. Six presented with DEE and 1 with early onset focal seizures and profound regression. Median seizure onset was 12 months, 6 had multiple seizure types, and 5/7 had focal seizures. Three patients had magnetic resonance susceptibility-weighted imaging; blooming was noted in the globus pallidi and substantia nigra in the 2 older children aged 4 and 9 years, consistent with iron accumulation. We show that de novo pathogenic variants are associated with a range of developmental and epileptic encephalopathies with profound developmental consequences."	"Congenital Disorders of Autophagy: What a Pediatric Neurologist Should Know. Autophagy is a fundamental and conserved intracellular pathway that mediates the degradation of macromolecules and organelles in lysosomes. Proper autophagy function is important for central nervous system development and neuronal function. Over the last 5 years, several single gene disorders of the autophagy pathway have emerged: EPG5-associated Vici syndrome, WDR45-associated β-propeller protein-associated neurodegeneration, SNX14-associated autosomal-recessive spinocerebellar ataxia 20, ATG5-associated autosomal-recessive ataxia syndrome, SQSTM1/p62-associated childhood-onset neurodegeneration, and several forms of the hereditary spastic paraplegias. This novel and evolving group of disorders is characterized by prominent central nervous system involvement leading to brain malformations, developmental delay, intellectual disability, epilepsy, movement disorders, and neurodegeneration. Predominant involvement of the long white matter tracts and the cerebellum are anatomic and imaging hallmarks, with common findings that include a thinning of the corpus callosum and cerebellar hypoplasia or atrophy. A storage disease phenotype by clinical or imaging criteria is present in some diseases. Most congenital disorders of autophagy are progressive and over time involve pathology in multiple brain regions. This review provides a detailed clinical, imaging and genetic characterization of congenital disorders of autophagy and highlights the importance of this pathway for childhood-onset neurological diseases."	"A Case of Beta-propeller Protein-associated Neurodegeneration due to a Heterozygous Deletion of WDR45. Static encephalopathy of childhood with neurodegeneration in adulthood is a phenotypically distinctive, X-linked dominant subtype of neurodegeneration with brain iron accumulation (NBIA). WDR45 mutations were recently identified as causal. WDR45 encodes a beta-propeller scaffold protein with a putative role in autophagy, and the disease has been renamed beta-propeller protein-associated neurodegeneration (BPAN). Here we describe a female patient suffering from a classical BPAN phenotype due to a novel heterozygous deletion of WDR45. An initial gene panel and Sanger sequencing approach failed to uncover the molecular defect. Based on the typical clinical and neuroimaging phenotype, quantitative polymerase chain reaction of the WDR45 coding regions was undertaken, and this showed a reduction of the gene dosage by 50% compared with controls. An extended search for deletions should be performed in apparently WDR45-negative cases presenting with features of NBIA and should also be considered in young patients with predominant intellectual disabilities and hypertonia/parkinsonism/dystonia."	"Autistic Siblings with Novel Mutations in Two Different Genes: Insight for Genetic Workups of Autistic Siblings and Connection to Mitochondrial Dysfunction. The prevalence of autism spectrum disorder (ASD) is high, yet the etiology of this disorder is still uncertain. Advancements in genetic analysis have provided the ability to identify potential genetic changes that may contribute to ASD. Interestingly, several genetic syndromes have been linked to metabolic dysfunction, suggesting an avenue for treatment. In this case study, we report siblings with ASD who had similar initial phenotypic presentations. Whole exome sequencing (WES) revealed a novel c.795delT mutation in the WDR45 gene affecting the girl, which was consistent with her eventual progression to a Rett-like syndrome phenotype including seizures along with a stereotypical cyclic breathing pattern. Interestingly, WES identified that the brother harbored a novel heterozygous Y1546H variant in the DEP domain-containing protein 5 (DEPDC5) gene, consistent with his presentation. Both siblings underwent a metabolic workup that demonstrated different patterns of mitochondrial dysfunction. The girl demonstrated statistically significant elevations in mitochondrial activity of complex I + III in both muscle and fibroblasts and increased respiration in peripheral blood mononuclear cells (PBMCs) on Seahorse Extracellular Flux analysis. The boy demonstrates a statistically significant decrease in complex IV activity in buccal epithelium and decreased respiration in PBMCs. These cases highlight the differences in genetic abnormalities even in siblings with ASD phenotypes as well as highlights the individual role of novel mutations in the WDR45 and DEPDC5 genes. These cases demonstrate the importance of advanced genetic testing combined with metabolic evaluations in the workup of children with ASD."	"Japanese WDR45 de novo mutation diagnosed by exome analysis: A case report. A 40-year-old Japanese woman presented with slowly progressing parkinsonism in adulthood. She had a history of epilepsy with intellectual disability in childhood. In a head magnetic resonance scan, T2-weighted imaging showed low signal intensity areas in the globus pallidus and the substantia nigra; T1-weighted imaging showed a halo in the nigra. Because the patient's symptoms and history were similar to those of patients with neurodegeneration with brain iron accumulation, we ran an exome analysis to investigate neurodegeneration with brain iron accumulation-associated genes. We identified a c.700 C&gt;T (p.Arg 234*) mutation in exon 9 of the WDR45 gene, which had not been reported in Japanese patients with beta-propeller protein-associated neurodegeneration (a neurodegeneration with brain iron accumulation subtype). Sanger sequencing confirmed a heterozygous mutation in this patient that was absent in both her parents, so it was judged to be a de novo nonsense mutation."	"Patient Affected by Beta-Propeller Protein-Associated Neurodegeneration: A Therapeutic Attempt with Iron Chelation Therapy. Here, we report the case of a 36-year-old patient with a diagnosis of de novo mutation of the WDR45 gene, responsible for beta-propeller protein-associated neurodegeneration, a phenotypically distinct, X-linked dominant form of Neurodegeneration with Brain Iron Accumulation. The clinical history is characterized by a relatively stable intellectual disability and a hypo-bradykinetic and hypertonic syndrome with juvenile onset. Genetic investigations and T1 and T2-weighted MR images align with what is described in literature. The patient was also subjected to PET with 18-FDG investigation and DaT-Scan study. In reporting relevant clinical data, we want to emphasize the fact that the patient received a chelation therapy with deferiprone (treatment already used in other forms of NBIA with encouraging results), which, however, had to be interrupted because the parkinsonian symptoms worsened. Conversely, the patient has benefited from non-drug therapies and, in particular, from an adapted motor activity with assisted pedaling (method in the process of validation in treatments of parkinsonian syndromes), which started before the treatment with deferiprone and still continues."	"Novel mutations in PANK2 and PLA2G6 genes in patients with neurodegenerative disorders: two case reports. Neurodegeneration with brain iron accumulation (NBIA) is a genetically heterogeneous group of disorders associated with progressive impairment of movement, vision, and cognition. The disease is initially diagnosed on the basis of changes in brain magnetic resonance imaging which indicate an abnormal brain iron accumulation in the basal ganglia. However, the diagnosis of specific types should be based on both clinical findings and molecular genetic testing for genes associated with different types of NBIA, including PANK2, PLA2G6, C19orf12, FA2H, ATP13A2, WDR45, COASY, FTL, CP, and DCAF17. The purpose of this study was to investigate disease-causing mutations in two patients with distinct NBIA disorders. Whole Exome sequencing using Next Generation Illumina Sequencing was used to enrich all exons of protein-coding genes as well as some other important genomic regions in these two affected patients. A deleterious homozygous four-nucleotide deletion causing frameshift deletion in PANK2 gene (c.1426_1429delATGA, p.M476 fs) was identified in an 8 years old girl with dystonia, bone fracture, muscle rigidity, abnormal movement, lack of coordination and chorea. In addition, our study revealed a novel missense mutation in PLA2G6 gene (c.3G &gt; T:p.M1I) in one and half-year-old boy with muscle weakness and neurodevelopmental regression (speech, motor and cognition). The novel mutations were also confirmed by Sanger sequencing in the proband and their parents. Current study uncovered two rare novel mutations in PANK2 and PLA2G6 genes in patients with NBIA disorder and such studies may help to conduct genetic counseling and prenatal diagnosis more accurately for individuals at the high risk of these types of disorders."	"Architecture of the ATG2B-WDR45 complex and an aromatic Y/HF motif crucial for complex formation. PtdIns3P signaling is critical for dynamic membrane remodeling during autophagosome formation. Proteins in the Atg18/WIPI family are PtdIns3P-binding effectors which can form complexes with proteins in the Atg2 family, and both families are essential for macroautophagy/autophagy. However, little is known about the biophysical properties and biological functions of the Atg2-Atg18/WIPI complex as a whole. Here, we demonstrate that an ortholog of yeast Atg18, mammalian WDR45/WIPI4 has a stronger binding capacity for mammalian ATG2A or ATG2B than the other 3 WIPIs. We purified the full-length Rattus norvegicus ATG2B and found that it could bind to liposomes independently of PtdIns3P or WDR45. We also purified the ATG2B-WDR45 complex and then performed 3-dimensional reconstruction of the complex by single-particle electron microscopy, which revealed a club-shaped heterodimer with an approximate length of 22 nm. Furthermore, we performed cross-linking mass spectrometry and identified a set of highly cross-linked intermolecular and intramolecular lysine pairs. Finally, based on the cross-linking data followed by bioinformatics and mutagenesis analysis, we determined the conserved aromatic H/YF motif in the C terminus of ATG2A and ATG2B that is crucial for complex formation."	"Early manifestations of epileptic encephalopathy, brain atrophy, and elevation of serum neuron specific enolase in a boy with beta-propeller protein-associated neurodegeneration. Mutations in WDR45 are responsible for beta-propeller protein-associated neurodegeneration (BPAN), which is an X-linked form of neurodegeneration with brain iron accumulation. BPAN mainly affects females and is characterized by seizures and developmental delay or intellectual disability until adolescence or early adulthood, followed by severe dystonia, parkinsonism, and progressive dementia. However, rare male patients have recently been reported with hemizygous germline mutations in WDR45 and severe clinical manifestations, such as epileptic encephalopathies. We report here a 4-year-old boy presenting with profound developmental delay, non-syndromic epileptic encephalopathy, and early brain atrophy. The level of serum neuron specific enolase (NSE) was elevated, but the level of serum phosphorylated neurofilament heavy chain was not detectable. Targeted next-generation sequencing identified a de novo hemizygous splice donor site mutation, c.830+1G &gt; A in WDR45, which resulted in a splicing defect evidenced by reverse transcriptase-PCR. Mutations in WDR45 should be considered as a cause for epileptic encephalopathies in males with profound developmental delay and brain atrophy. Furthermore, elevation of serum NSE may contribute to early diagnosis of BPAN."	"Epileptic Encephalopathies as Neurodegenerative Disorders. The epileptic encephalopathies are severe and often treatment-resistant conditions that are associated with a progressive disturbance of brain function, resulting in a broad range of neurological and non-neurological comorbidities. The concept of epileptic encephalopathies entails that the encephalopathy aspect of the overall condition is primarily driven by the epileptic activity of the disease, which often manifests as specific and pathological features on the electroencephalogram. Genetic factors in epileptic encephalopathies are increasingly recognized. As of 2016, more than 30 genes have been securely implicated as causative genes for genetic epileptic encephalopathies. Even though the traditional concept of epileptic encephalopathies entails that the progressive disturbance of brain dysfunction is primarily due to the abnormal hypersynchronous activity that underlies the seizure disorders, this strict concept rarely holds true for patients with identified genetic etiologies. More commonly, an underlying genetic etiology is thought to predispose both to the neurodevelopmental comorbidities and to the seizure phenotype with a complex interaction between both. In this chapter, we will elucidate to what extent neurodegeneration rather than epilepsy-related regression is a feature of the common epileptic encephalopathies, drawing parallels between two relatively separate fields of neurogenetic research."	"Clinical and Imaging Presentation of a Patient with Beta-Propeller Protein-Associated Neurodegeneration, a Rare and Sporadic form of Neurodegeneration with Brain Iron Accumulation (NBIA). Neurodegeneration with brain iron accumulation (NBIA) is a heterogeneous group of inherited neurologic disorders with iron accumulation in the basal ganglia, which share magnetic resonance (MR) imaging characteristics, histopathologic and clinical features. According to the affected basal nuclei, clinical features include extrapyramidal movement disorders and varying degrees of intellectual disability status. The most common NBIA subtype is caused by pathogenic variants in PANK2. The hallmark of MR imaging in patients with PANK2 mutations is an eye-of-the-tiger sign in the globus pallidus. We report a 33-year-old female with a rare subtype of NBIA, called beta-propeller protein-associated neurodegeneration (BPAN) with a hitherto unknown missense variant in WDR45. She presented with BPAN's particular biphasic course of neurological symptoms and with a dominant iron accumulation in the midbrain that enclosed a spotty T2-hyperintensity."	"WIPI3 and WIPI4 β-propellers are scaffolds for LKB1-AMPK-TSC signalling circuits in the control of autophagy. Autophagy is controlled by AMPK and mTOR, both of which associate with ULK1 and control the production of phosphatidylinositol 3-phosphate (PtdIns3P), a prerequisite for autophagosome formation. Here we report that WIPI3 and WIPI4 scaffold the signal control of autophagy upstream of PtdIns3P production and have a role in the PtdIns3P effector function of WIPI1-WIPI2 at nascent autophagosomes. In response to LKB1-mediated AMPK stimulation, WIPI4-ATG2 is released from a WIPI4-ATG2/AMPK-ULK1 complex and translocates to nascent autophagosomes, controlling their size, to which WIPI3, in complex with FIP200, also contributes. Upstream, WIPI3 associates with AMPK-activated TSC complex at lysosomes, regulating mTOR. Our WIPI interactome analysis reveals the scaffold functions of WIPI proteins interconnecting autophagy signal control and autophagosome formation. Our functional kinase screen uncovers a novel regulatory link between LKB1-mediated AMPK stimulation that produces a direct signal via WIPI4, and we show that the AMPK-related kinases NUAK2 and BRSK2 regulate autophagy through WIPI4."	"Clinical features of a female with WDR45 mutation complicated by infantile spasms: a case report and literature review. We present a 3-year-old girl with beta-propeller protein-associated neurodegeneration (BPAN) who had a de novo heterozygous splice-site mutation of c.831-1G&gt;C in WDR45 and developed infantile spasms; her onset age of infantile spasms was relatively late. Her infantile spasms and hypsarrhythmia disappeared promptly by adrenocorticotropic hormone therapy (CORTROSYN®Z, 0.0125mg/kg/day daily for 2weeks intramuscularly), though the administration of pyridoxal phosphate and valproic acid had poor efficacy. BPAN is known to be associated with various types of seizures, but there are few reports on infantile spasms, especially in females. To date, only 5 patients with BPAN have been reported to develop infantile spasms, and our patient is the second case in females. In this report, we showed that female patients with BPAN had milder phenotypic features than males: males developed intractable infantile spasms in early infancy, while females had treatable infantile spasms in late infancy."	"On the complexity of clinical and molecular bases of neurodegeneration with brain iron accumulation. Neurodegeneration with brain iron accumulation (NBIA) is a group of inherited heterogeneous neurodegenerative rare disorders. These patients present with dystonia, spasticity, parkinsonism and neuropsychiatric disturbances, along with brain magnetic resonance imaging (MRI) evidence of iron accumulation. In sum, they are devastating disorders and to date, there is no specific treatment. Ten NBIA genes are accepted: PANK2, PLA2G6, C19orf12, COASY, FA2H, ATP13A2, WDR45, FTL, CP, and DCAF17; and nonetheless, a relevant percentage of patients remain without genetic diagnosis, suggesting that other novel NBIA genes remain to be discovered. Overlapping complex clinical pictures render an accurate differential diagnosis difficult. Little is known about the pathophysiology of NBIAs. The reported NBIA genes take part in a variety of pathways: CoA synthesis, lipid and iron metabolism, autophagy, and membrane remodeling. The next-generation sequencing revolution has achieved relevant advances in genetics of Mendelian diseases and provide new genes for NBIAs, which are investigated according to 2 main strategies: genes involved in disorders with similar phenotype and genes that play a role in a pathway of interest. To achieve an effective therapy for NBIA patients, a better understanding of the biological process underlying disease is crucial, moving toward a new age of precision medicine."	"Intragenic deletion of the WDR45 gene in a male with encephalopathy, severe psychomotor disability, and epilepsy. NA"	"Novel WDR45 mutation causing beta-propeller protein associated neurodegeneration (BPAN) in two monozygotic twins. NA"	"Ferrous Iron Up-regulation in Fibroblasts of Patients with Beta Propeller Protein-Associated Neurodegeneration (BPAN). Mutations in WDR45 gene, coding for a beta-propeller protein, have been found in patients affected by Neurodegeneration with Brain Iron Accumulation, NBIA5 (also known as BPAN). BPAN is a movement disorder with Non Transferrin Bound Iron (NTBI) accumulation in the basal ganglia as common hallmark between NBIA classes (Hayflick et al., 2013). WDR45 has been predicted to have a role in autophagy, while the impairment of iron metabolism in the different NBIA subclasses has not currently been clarified. We found the up-regulation of the ferrous iron transporter (-)IRE/Divalent Metal Transporter1 and down-regulation of Transferrin receptor in the fibroblasts of two BPAN affected patients with splicing mutations 235+1G&gt;A (BPAN1) and 517_519ΔVal 173 (BPAN2). The BPAN patients showed a concomitant increase of intracellular ferrous iron after starvation. An altered pattern of iron transporters with iron overload is highlighted in BPAN human fibroblasts, supporting for a role of DMT1 in NBIA. We here present a novel element, about iron accumulation, to the existing knowledge in field of NBIA. Attention is focused to a starvation-dependent iron overload, possibly accounting for iron accumulation in the basal ganglia. Further investigation could clarify iron regulation in BPAN."	"A novel WDR45 mutation in a patient with β-propeller protein-associated neurodegeneration. Neurodegeneration with brain iron accumulation (NBIA) is a group of genetic diseases characterized by progressive extrapyramidal symptoms and focal iron accumulation in the basal ganglia. β-Propeller protein-associated neurodegeneration (BPAN), also known as static encephalopathy of childhood with neurodegeneration in adulthood or NBIA 5, is an X-linked dominant subtype of NBIA.<sup>1</sup> Brain MRI studies consistently demonstrate iron accumulation in the globus pallidus and substantia nigra with a subset of patients also demonstrating a halo of hyperintense signal surrounding a thin region of hypointense signal in the substantia nigra on T1-weighted imaging.<sup>2</sup> The majority of patients with BPAN are female, but several affected males with identical phenotypes have been described, most likely harboring postzygotic mutations leading to somatic mosaicism.<sup>3</sup> BPAN has been shown to be caused by heterozygous mutations in WDR45 at Xp11.23. To date, all mutations have been de novo, with no affected relatives.<sup>1,3,4</sup> We report here on a patient with BPAN with a novel c.597_598 deletion mutation in WDR45."	"Severe infantile male encephalopathy is a result of early post-zygotic WDR45 somatic mutation. NA"	"Expert opinion and caution are imperative for interpretation of next generation sequencing data. We comment on the recent publication by Khalifa and Naffa who are reporting a young girl with variants in both WDR45 and POLR3A, which they state contribute to her clinical manifestations. We are arguing in this letter that the clinical, MRI, and genetics findings are not compatible with 4H leukodystrophy and that this patient is not affected by this condition. "	"Answer to Thiffault and Bernard regarding &quot;Expert opinion and caution are imperative for interpretation of next generation sequencing data&quot;. NA"	"Epileptic spasms: a previously unreported manifestation of WDR45 gene mutation. NA"	"[A woman with beta-propeller protein-associated neurodegeneration identified by the WDR45 mutation presenting as Rett-like syndrome in childhood]. Beta-propeller protein-associated neurodegeneration (BPAN) is one of the neurodegenerative disorders characterized by iron deposition in the brain and is the only known disease in humans to be caused by an aberration in autophagocytosis. Here, we present the case of a 42-year-old woman with BPAN identified by the WDR45 mutation. From early childhood, she was recognized as having global developmental delay, and she frequently sucked her hand, which was considered to be a stereotypical movement. She had a febrile convulsion at 6 months of age but there was no history of epilepsy. The delay in language development was more severe than the delay in motor development; she was able to dress herself, walk unaided, and follow simple instructions until adolescence. After the age of 20, her movement ability rapidly declined. By the time she was 42 years old, she was bedridden and unable to communicate. Brain magnetic resonance imaging (MRI) at 21 years revealed no abnormality except non-specific cerebral atrophy. However, MRI at 39 years revealed abnormalities in the globus pallidus and substantia nigra, with neurodegeneration and iron accumulation in the brain. Genetic analysis for WDR45 revealed that she had a splice site mutation (NM_007075.3: c.830 + 2 T &gt; C) which was previously reported, and a diagnosis of BPAN was confirmed. For specific therapies to be developed for BPAN in the future, it is necessary to establish early diagnosis, including genetic analysis."	"[De novo mutations in the autophagy gene WDR45 cause SENDA/BPAN]. NA"	"Identification of Intellectual Disability Genes in Female Patients with a Skewed X-Inactivation Pattern. Intellectual disability (ID) is a heterogeneous disorder with an unknown molecular etiology in many cases. Previously, X-linked ID (XLID) studies focused on males because of the hemizygous state of their X chromosome. Carrier females are generally unaffected because of the presence of a second normal allele, or inactivation of the mutant X chromosome in most of their cells (skewing). However, in female ID patients, we hypothesized that the presence of skewing of X-inactivation would be an indicator for an X chromosomal ID cause. We analyzed the X-inactivation patterns of 288 females with ID, and found that 22 (7.6%) had extreme skewing (&gt;90%), which is significantly higher than observed in the general population (3.6%; P = 0.029). Whole-exome sequencing of 19 females with extreme skewing revealed causal variants in six females in the XLID genes DDX3X, NHS, WDR45, MECP2, and SMC1A. Interestingly, variants in genes escaping X-inactivation presumably cause both XLID and skewing of X-inactivation in three of these patients. Moreover, variants likely accounting for skewing only were detected in MED12, HDAC8, and TAF9B. All tested candidate causative variants were de novo events. Hence, extreme skewing is a good indicator for the presence of X-linked variants in female patients."	"WDR45 mutations in three male patients with West syndrome. West syndrome is an early-onset epileptic encephalopathy characterized by clustered spasms with hypsarrhythmia seen on electroencephalogram (EEG). West syndrome is genetically heterogeneous, and its genetic causes have not been fully elucidated. WD Repeat Domain 45 (WDR45) resides on Xp11.23, and encodes a member of the WD repeat protein interacting with phosphoinositides (WIPI) family, which is crucial in the macroautophagy pathway. De novo mutations in WDR45 cause beta-propeller protein-associated neurodegeneration characterized by iron accumulation in the basal ganglia. In this study, we performed whole exome sequencing of individuals with West syndrome and identified three WDR45 mutations in three independent males (patients 1, 2 and 3). Two novel mutations occurred de novo (patients 1 and 2) and the remaining mutation detected in a male patient (patient 3) and his affected sister was inherited from the mother, harboring the somatic mutation. The three male patients showed early-onset intractable seizures, profound intellectual disability and developmental delay. Their brain magnetic resonance imaging scans showed cerebral atrophy. We found no evidence of somatic mosaicism in the three male patients. Our findings indicate that hemizygous WDR45 mutations in males lead to severe epileptic encephalopathy. "	"Beta Propellar Protein-Associated Neurodegeneration: A Rare Cause of Infantile Autistic Regression and Intracranial Calcification. Neurodegeneration with brain iron accumulation (NBIA) is a heterogeneous group of single gene disorders with distinguished clinical phenotypes and definitive imaging findings. Beta propeller protein-associated neurodegeneration (BPAN) is a subentity of NBIA with X linked dominant inheritance. In this report, we describe a girl with autistic regression, seizures, intracranial calcification, iron accumulation in substantia nigra, and globi pallidi, and diagnosis of BPAN was established based on the identification of previously described disease causing variant in WD repeat domain 45 (WDR45) gene encoding for β propeller protein. This is the first genetically proven case from India. BPAN is an underrecognized disorder and must be considered as a differential diagnosis in children with atypical Rett features and should be enlisted among the causes for autistic regression and intracranial calcification. Pediatricians must be aware of this rare entity for establishing early diagnosis, prognostication, and genetic counseling. Treatment is usually supportive. More research is needed to explore drugs in the management of BPAN that can facilitate the autophagy and promotes cytoprotection. "	"WDR45 mutations in Rett (-like) syndrome and developmental delay: Case report and an appraisal of the literature. Mutations in the WDR45 gene have been identified as causative for the only X-linked type of neurodegeneration with brain iron accumulation (NBIA), clinically characterized by global developmental delay in childhood, followed by a secondary neurological decline with parkinsonism and/or dementia in adolescence or early adulthood. Recent reports suggest that WDR45 mutations are associated with a broader phenotypic spectrum. We identified a novel splice site mutation (c.440-2 A &gt; G) in a 5-year-old Argentinian patient with Rett-like syndrome, exhibiting developmental delay, microcephaly, seizures and stereotypic hand movements, and discuss this finding, together with a review of the literature. Additional patients with a clinical diagnosis of Rett (-like) syndrome were also found to carry WDR45 mutations before (or without) clinical decline or signs of iron accumulation by magnetic resonance imaging (MRI). This information indicates that WDR45 mutations should be added to the growing list of genetic alterations linked to Rett-like syndrome. Further, clinical symptoms associated with WDR45 mutations ranged from early-onset epileptic encephalopathy in a male patient with a deletion of WDR45 to only mild cognitive delay in a female patient, suggesting that analysis of this gene should be considered more often in patients with developmental delay, regardless of severity. The increasing use of next generation sequencing technologies as well as longitudinal follow-up of patients with an early diagnosis will help to gain additional insight into the phenotypic spectrum associated with WDR45 mutations. "	"Congenital disorders of autophagy: an emerging novel class of inborn errors of neuro-metabolism. Single gene disorders of the autophagy pathway are an emerging, novel and diverse group of multisystem diseases in children. Clinically, these disorders prominently affect the central nervous system at various stages of development, leading to brain malformations, developmental delay, intellectual disability, epilepsy, movement disorders, and neurodegeneration, among others. Frequent early and severe involvement of the central nervous system puts the paediatric neurologist, neurogeneticist, and neurometabolic specialist at the forefront of recognizing and treating these rare conditions. On a molecular level, mutations in key autophagy genes map to different stages of this highly conserved pathway and thus lead to impairment in isolation membrane (or phagophore) and autophagosome formation, maturation, or autophagosome-lysosome fusion. Here we discuss 'congenital disorders of autophagy' as an emerging subclass of inborn errors of metabolism by using the examples of six recently identified monogenic diseases: EPG5-related Vici syndrome, beta-propeller protein-associated neurodegeneration due to mutations in WDR45, SNX14-associated autosomal-recessive cerebellar ataxia and intellectual disability syndrome, and three forms of hereditary spastic paraplegia, SPG11, SPG15 and SPG49 caused by SPG11, ZFYVE26 and TECPR2 mutations, respectively. We also highlight associations between defective autophagy and other inborn errors of metabolism such as lysosomal storage diseases and neurodevelopmental diseases associated with the mTOR pathway, which may be included in the wider spectrum of autophagy-related diseases from a pathobiological point of view. By exploring these emerging themes in disease pathogenesis and underlying pathophysiological mechanisms, we discuss how congenital disorders of autophagy inform our understanding of the importance of this fascinating cellular pathway for central nervous system biology and disease. Finally, we review the concept of modulating autophagy as a therapeutic target and argue that congenital disorders of autophagy provide a unique genetic perspective on the possibilities and challenges of pathway-specific drug development. "	"Epileptic spasms: a previously unreported manifestation of WDR45 gene mutation. WDR45 mutations cause neurodegeneration with brain iron accumulation, usually presenting with early childhood developmental delay and followed by early adulthood extrapyramidal symptoms. Although various seizure types may occur, epileptic spasms have not been reported for this disease. Our patient initially developed a prolonged, focal-onset seizure at three months of age and was subsequently noted to have psychomotor delay. At 11 months of age, she developed epileptic spasms. Her EEG showed hypsarrhythmia. An extensive neurogenetic workup and brain MRI, revealing normal data, ruled out other detectable causes of epileptic spasms. Whole-exome sequencing revealed a de novo, heterozygous deleterious mutation c.400C&gt;T (p.R13X) in WDR45, previously reported to be disease-causing and associated with early childhood global developmental delay and seizures other than epileptic spasms. We conclude that WDR45 mutations should be considered as a possible aetiology in infants with early-onset focal seizures and/or in otherwise undiagnosed cases of epileptic spasms. "	"Lessons from a pair of siblings with BPAN. Neurodegeneration with brain iron accumulation (NBIA) encompasses a heterogeneous group of inherited progressive neurological diseases. Beta-propeller protein-associated neurodegeneration (BPAN) has been estimated to account for ~7% of all cases of NBIA and has distinctive clinical and brain imaging findings. Heterozygous variants in the WDR45 gene located in Xp11.23 are responsible for BPAN. A clear female predominance supports an X-linked dominant pattern of inheritance with proposed lethality for germline variants in hemizygous males. By whole-exome sequencing, we identified an in-frame deletion in the WDR45 gene (c.161_163delTGG) in the hemizygous state in a 20-year-old man with a history of profound neurocognitive impairment and seizures. His higher functioning 14-year-old sister, also with a history of intellectual disability, was found to carry the same variant in the heterozygous state. Their asymptomatic mother was mosaic for the alteration. From this pair of siblings with BPAN we conclude that: (1) inherited WDR45 variants are possible, albeit rare; (2) hemizygous germline variants in males can be viable, but likely result in a more severe phenotype; (3) for siblings with germline variants, males should be more significantly affected than females; and (4) because gonadal and germline mosaicism are possible and healthy female carriers can be found, parental testing for variants in WDR45 should be considered."	"Elevation of neuron specific enolase and brain iron deposition on susceptibility-weighted imaging as diagnostic clues for beta-propeller protein-associated neurodegeneration in early childhood: Additional case report and review of the literature. Beta-propeller protein-associated neurodegeneration (BPAN), also known as static encephalopathy of childhood with neurodegeneration in adulthood (SENDA), is a subtype of neurodegeneration with brain iron accumulation (NBIA). BPAN is caused by mutations in an X-linked gene WDR45 that is involved in autophagy. BPAN is characterized by developmental delay or intellectual disability until adolescence or early adulthood, followed by severe dystonia, parkinsonism, and progressive dementia. Brain magnetic resonance imaging (MRI) shows iron deposition in the bilateral globus pallidus (GP) and substantia nigra (SN). Clinical manifestations and laboratory findings in early childhood are limited. We report a 3-year-old girl with BPAN who presented with severe developmental delay and characteristic facial features. In addition to chronic elevation of serum aspartate transaminase, lactate dehydrogenase, creatine kinase, and soluble interleukin-2 receptor, she had persistent elevation of neuron specific enolase (NSE) in serum and cerebrospinal fluid. MRI using susceptibility-weighted imaging (SWI) demonstrated iron accumulation in the GP and SN bilaterally. Targeted next-generation sequencing identified a de novo splice-site mutation, c.831-1G&gt;C in WDR45, which resulted in aberrant splicing evidenced by reverse transcriptase-PCR. Persistent elevation of NSE and iron deposition on SWI may provide clues for diagnosis of BPAN in early childhood."	"Novel WDR45 Mutation and Pathognomonic BPAN Imaging in a Young Female With Mild Cognitive Delay. β-propeller protein-associated neurodegeneration (BPAN) is a recently identified X-linked dominant form of neurodegeneration with brain iron accumulation caused by mutations in the WDR45 gene. BPAN commonly presents as global developmental delay in childhood with rapid onset of parkinsonism and dementia in early adulthood and associated pathognomonic changes seen on brain MRI. In this case report, we present a pediatric patient with mild cognitive delay and pathognomonic MRI changes indicative of BPAN preceding neurologic deterioration who is found to have a novel de novo mutation in the WDR45 gene. "	"Cross-cancer profiling of molecular alterations within the human autophagy interaction network. Aberrant activation or disruption of autophagy promotes tumorigenesis in various preclinical models of cancer, but whether the autophagy pathway is a target for recurrent molecular alteration in human cancer patient samples is unknown. To address this outstanding question, we surveyed 211 human autophagy-associated genes for tumor-related alterations to DNA sequence and RNA expression levels and examined their association with patient survival outcomes in multiple cancer types with sequence data from The Cancer Genome Atlas consortium. We found 3 (RB1CC1/FIP200, ULK4, WDR45/WIPI4) and one (ATG7) core autophagy genes to be under positive selection for somatic mutations in endometrial carcinoma and clear cell renal carcinoma, respectively, while 29 autophagy regulators and pathway interactors, including previously identified KEAP1, NFE2L2, and MTOR, were significantly mutated in 6 of the 11 cancer types examined. Gene expression analyses revealed that GABARAPL1 and MAP1LC3C/LC3C transcripts were less abundant in breast cancer and non-small cell lung cancers than in matched normal tissue controls; ATG4D transcripts were increased in lung squamous cell carcinoma, as were ATG16L2 transcripts in kidney cancer. Unsupervised clustering of autophagy-associated mRNA levels in tumors stratified patient overall survival in 3 of 9 cancer types (acute myeloid leukemia, clear cell renal carcinoma, and head and neck cancer). These analyses provide the first comprehensive resource of recurrently altered autophagy-associated genes in human tumors, and highlight cancer types and subtypes where perturbed autophagy may be relevant to patient overall survival. "	"Early-onset epileptic encephalopathy as the initial clinical presentation of WDR45 deletion in a male patient. Variants in the WD repeat 45 (WDR45) gene in human Xp11.23 have recently been identified in patients suffering from neurodegeneration with brain iron accumulation, a genetically and phenotypically heterogeneous condition. WDR45 variants cause a childhood-onset encephalopathy accompanied by neurodegeneration in adulthood and iron accumulation in the basal ganglia. They have been almost exclusively found in females, and male lethality was suggested. Here we describe a male patient suffering from a severe and early neurological phenotype, initially presenting early-onset epileptic spasms in clusters associated with an abnormal interictal electroencephalography showing slow background activity, large amplitude asynchronous spikes and abnormal neurological development. This patient is a carrier of a 19.9-kb microdeletion in Xp11.23 containing three genes, including WDR45. These findings reveal that males with WDR45 deletions are viable, and can present with early-onset epileptic encephalopathy without brain iron accumulation. "	"Neuropathology of Beta-propeller protein associated neurodegeneration (BPAN): a new tauopathy. Beta-propeller protein associated neurodegeneration (BPAN) is associated with mutations in the WD repeat domain 45 (WDR45) gene on chromosome Xp11 resulting in reduced autophagic flux. This study describes the clinical and neuropathological features of a female 51 year old BPAN case. The clinical history includes learning disability and progressive gait abnormalities since childhood followed by progressive dystonic features in young adulthood. Brain imaging revealed generalised brain atrophy and bilateral mineralisation of the globus pallidus and substantia nigra. The major pathological findings were observed in the substantia nigra with excess iron deposition, gliosis, axonal swellings and severe neuronal loss. Iron deposition was also observed in the globus pallidus. There was extensive hyperphosphorylated-tau deposition in the form of neurofibrillary tangles, pre-tangles and neuropil threads. Furthermore, histological studies and immunoblotting confirmed a mixed Alzheimer type 3-and 4-repeat tau pathology. Microtubule-associated protein 1A/1B-light chain 3 (LC3) immunoblotting of brain homogenates indicated autophagic activity and may support the role of WDR45 in autophagy. The widespread Alzheimer-type tau pathology in this disease indicates that this should be considered as a tauopathy and adds further support to the proposal that impaired autophagy may have a role in tauopathies."	"Exome sequencing reveals a novel WDR45 frameshift mutation and inherited POLR3A heterozygous variants in a female with a complex phenotype and mixed brain MRI findings. WDR45 and POLR3A are newly recognized genes; each is associated with a distinct neurodegenerative disease. WDR45 is an X-linked gene associated with a dominant form of Neurodegeneration with Brain Iron Accumulation (NBIA), manifested by progressive disabilities, dystonia, cognitive decline, spastic paraplegia, neuropsychiatric abnormalities and iron deposition in the basal ganglia on brain imaging. POLR3A, on the other hand, is an autosomal gene, and its mutations cause a recessive form of a hypomyelination with leukodystrophy disease, also known as 4H syndrome, characterized by congenital Hypomyelination with thinning of the corpus callosum, Hypodontia and Hypogonadotropic Hypogonadism. We report on a female child with severe intellectual disability, aphasia, short stature, ataxia, failure to thrive and structural brain abnormalities. Brain MRI obtained in late infancy showed hypomyelination involving the central periventricular white matter and thinning of the corpus callosum with no evidence of iron accumulation. Brain MRI obtained in childhood showed stable hypomyelination, with progressive iron accumulation in the basal ganglia, in particular in the globus pallidus and substantia nigra. Whole Exome Sequencing (WES) identified a novel WDR45 frameshift deleterious mutation in Exon 9 (c.587-588del) and also revealed three POLR3A missense heterozygous variants. The first is a maternally inherited novel missense variant in exon 4 (c.346A &gt; G). Exon 13 carried two heterozygous missense variants, a maternally inherited variant (c.1724A &gt; T) and a paternally inherited variant (1745G &gt; A). These variants are considered likely damaging. The patient's complex clinical phenotype and mixed brain MRI findings might be attributed to the confounding effects of the expression of these two mutant genes. "	"Beta-Propeller-Protein-Associated Neurodegeneration: A Case of Mutation in WDR45. NA"	"The autophagy gene Wdr45/Wipi4 regulates learning and memory function and axonal homeostasis. WDR45/WIPI4, encoding a WD40 repeat-containing PtdIns(3)P binding protein, is essential for the basal autophagy pathway. Mutations in WDR45 cause the neurodegenerative disease β-propeller protein-associated neurodegeneration (BPAN), a subtype of NBIA. We generated CNS-specific Wdr45 knockout mice, which exhibit poor motor coordination, greatly impaired learning and memory, and extensive axon swelling with numerous axon spheroids. Autophagic flux is defective and SQSTM1 (sequestosome-1)/p62 and ubiquitin-positive protein aggregates accumulate in neurons and swollen axons. Nes-Wdr45(fl/Y) mice recapitulate some hallmarks of BPAN, including cognitive impairment and defective axonal homeostasis, providing a model for revealing the disease pathogenesis of BPAN and also for investigating the possible role of autophagy in axon maintenance. "	"Review: Insights into molecular mechanisms of disease in neurodegeneration with brain iron accumulation: unifying theories. Neurodegeneration with brain iron accumulation (NBIA) is a group of disorders characterized by dystonia, parkinsonism and spasticity. Iron accumulates in the basal ganglia and may be accompanied by Lewy bodies, axonal swellings and hyperphosphorylated tau depending on NBIA subtype. Mutations in 10 genes have been associated with NBIA that include Ceruloplasmin (Cp) and ferritin light chain (FTL), both directly involved in iron homeostasis, as well as Pantothenate Kinase 2 (PANK2), Phospholipase A2 group 6 (PLA2G6), Fatty acid hydroxylase 2 (FA2H), Coenzyme A synthase (COASY), C19orf12, WDR45 and DCAF17 (C2orf37). These genes are involved in seemingly unrelated cellular pathways, such as lipid metabolism, Coenzyme A synthesis and autophagy. A greater understanding of the cellular pathways that link these genes and the disease mechanisms leading to iron dyshomeostasis is needed. Additionally, the major overlap seen between NBIA and more common neurodegenerative diseases may highlight conserved disease processes. In this review, we will discuss clinical and pathological findings for each NBIA-related gene, discuss proposed disease mechanisms such as mitochondrial health, oxidative damage, autophagy/mitophagy and iron homeostasis, and speculate the potential overlap between NBIA subtypes. "	"High frequency of beta-propeller protein-associated neurodegeneration (BPAN) among patients with intellectual disability and young-onset parkinsonism. Neurodegeneration with brain iron accumulation (NBIA) is a genetically heterogeneous disorder, characterized by the accumulation of iron in regions such as the basal ganglia. We enrolled 28 patients with childhood intellectual disability and young-onset parkinsonism (≤40 years at onset) and 4 patients with infantile neuroaxonal dystrophy. All had been clinically diagnosed, and the prevalence of genetic mutations linked to NBIA (PANK2 [exons 1-7], PLA2G6 [exons 2-17], C19orf12 [exons 1-3], WDR45 [exons 2-11], COASY [exons 1-9], FA2H [exons 1-7], and RAB39B [exons 1, 2]) was evaluated. We detected 7 female patients (25.0%, 7 of 28) with de novo heterozygote WDR45 mutations, which are known to be pathogenic for beta-propeller protein-associated neurodegeneration. All 7 patients had common clinical features. Pathogenic mutations in other NBIA genes were not found. We also screened 98 patients with early-onset parkinsonism without intellectual disability and 110 normal controls of Japanese origin for WDR45 mutations. None had WDR45 mutations. Our data suggest a high frequency of beta-propeller protein-associated neurodegeneration mutations in the Japanese population. "	"WDR45 Mutation in Atypical Rett Syndrome with Brain Iron Accumulation. NA"	"Analysis of the C19orf12 and WDR45 genes in patients with neurodegeneration with brain iron accumulation. Neurodegeneration with brain iron accumulation (NBIA) comprises a clinically and genetically heterogeneous group of diseases presenting with movement disorders and brain iron deposits. In addition to NBIA subtypes caused by mutations in PANK2 and PLA2G6, mutations in the C19orf12 gene were recently described as the third frequent cause of NBIA (called mitochondrial membrane protein-associated neurodegeneration, MPAN). Additionally, the X-linked gene WDR45 was found causative for a special subtype named static encephalopathy in childhood with neurodegeneration in adulthood (also called BPAN); however, analysis of this gene in a broader spectrum of NBIA has not been reported yet. In a heterogeneous cohort of 69 patients with suspected NBIA that did not carry mutations in PANK2 and PLA2G6, the coding region of C19orf12 was evaluated by Sanger sequencing. The WDR45 gene was analyzed via high resolution melting and subsequent sequence analysis. Previously described homozygous C19orf12 mutations were found in 3/69 NBIA patients (4.3%). Analysis of the WDR45 gene revealed a novel heterozygous missense mutation in one female NBIA patient showing psychomotor retardation with secondary decline. C19orf12 mutations were confirmed in our heterogeneous NBIA cohort, while WDR45 mutations appear to be restricted to the subtype showing encephalopathy in childhood with neurodegeneration in adulthood."	"De novo mutations in moderate or severe intellectual disability. Genetics is believed to have an important role in intellectual disability (ID). Recent studies have emphasized the involvement of de novo mutations (DNMs) in ID but the extent to which they contribute to its pathogenesis and the identity of the corresponding genes remain largely unknown. Here, we report a screen for DNMs in subjects with moderate or severe ID. We sequenced the exomes of 41 probands and their parents, and confirmed 81 DNMs affecting the coding sequence or consensus splice sites (1.98 DNMs/proband). We observed a significant excess of de novo single nucleotide substitutions and loss-of-function mutations in these cases compared to control subjects, suggesting that at least a subset of these variations are pathogenic. A total of 12 likely pathogenic DNMs were identified in genes previously associated with ID (ARID1B, CHD2, FOXG1, GABRB3, GATAD2B, GRIN2B, MBD5, MED13L, SETBP1, TBR1, TCF4, WDR45), resulting in a diagnostic yield of ∼29%. We also identified 12 possibly pathogenic DNMs in genes (HNRNPU, WAC, RYR2, SET, EGR1, MYH10, EIF2C1, COL4A3BP, CHMP2A, PPP1CB, VPS4A, PPP2R2B) that have not previously been causally linked to ID. Interestingly, no case was explained by inherited mutations. Protein network analysis indicated that the products of many of these known and candidate genes interact with each other or with products of other ID-associated genes further supporting their involvement in ID. We conclude that DNMs represent a major cause of moderate or severe ID. "	"Basal ganglia calcification in a patient with beta-propeller protein-associated neurodegeneration. Beta-propeller protein-associated neurodegeneration is a newly described X-linked dominant condition due to heterozygous mutations in WDR45. The condition is associated with characteristic changes on brain magnetic resonance imaging. Previous literature relating to this disorder has not specifically referred to intracranial calcification. A female patient presented with significant developmental delay in early childhood and subsequently demonstrated neurodegeneration with progressive dystonia and dementia in her third decade. Brain magnetic resonance imaging revealed low signal in the substantia nigra and both globus pallidi on T2-weighted imaging, with no eye-of-the-tiger sign. Computed tomography revealed bilateral dense calcification of the globus pallidus. We performed Sanger sequencing of the WDR45 gene in the patient and her parents. We identified a heterozygous c.488del C p.Pro163Argfs*34 variant in exon 8 of WDR45. Neither parent carried the same mutation, indicating that the molecular change had occurred de novo. Although the characteristic features of beta-propeller protein-associated neurodegeneration were present in our patient, the observation of basal ganglia calcification was considered atypical. Previous descriptions of basal ganglia calcification in individuals with neuronal brain iron accumulation led us to review the frequency of calcification in these disorders."	"Early manifestations of BPAN in a pediatric patient. Neurodegeneration with brain iron accumulation (NBIA) comprises a clinically and genetically heterogeneous group of progressive brain disorders with several distinguishable subtypes. Recently, WDR45 mutations were reported in patients with β-propeller protein-associated neurodegeneration (BPAN), characterized by early intellectual disability followed by delayed progressive motor and cognitive deterioration with onset in the second to third decade. BPAN has a distinct brain magnetic resonance imaging (MRI) pattern showing iron deposition in the globus pallidus and substantia nigra. To date, many of the BPAN patients have been diagnosed in adulthood. Here, we report on 6-year-old girl with BPAN diagnosed by whole exome sequencing. She showed Rett syndrome-like manifestations, a peculiar facial appearance and mildly elevated serum enzymes. Brain iron accumulation was detected by T2*-weighted MRI and T2-star weighted angiography (SWAN). This unique combination of clinical and neuroimaging features may be helpful for early diagnosis of BPAN."	"A novel WDR45 mutation in a patient with static encephalopathy of childhood with neurodegeneration in adulthood (SENDA). Static encephalopathy of childhood with neurodegeneration in adulthood (SENDA) is an X-linked dominant neurodegenerative disorder, and is classified as a subtype of neurodegeneration with brain iron accumulation. Recently, de novo heterozygous mutations in WDR45 at Xp11.23 have been reported in patients with SENDA. We report the clinical and neuroradiological findings of a patient with SENDA with a novel c.322del mutation in WDR45. In this patient, characteristic MRI findings were useful for diagnosis."	"Neurodegeneration with brain iron accumulation: update on pathogenic mechanisms. Perturbation of iron distribution is observed in many neurodegenerative disorders, including Alzheimer's and Parkinson's disease, but the comprehension of the metal role in the development and progression of such disorders is still very limited. The combination of more powerful brain imaging techniques and faster genomic DNA sequencing procedures has allowed the description of a set of genetic disorders characterized by a constant and often early accumulation of iron in specific brain regions and the identification of the associated genes; these disorders are now collectively included in the category of neurodegeneration with brain iron accumulation (NBIA). So far 10 different genetic forms have been described but this number is likely to increase in short time. Two forms are linked to mutations in genes directly involved in iron metabolism: neuroferritinopathy, associated to mutations in the FTL gene and aceruloplasminemia, where the ceruloplasmin gene product is defective. In the other forms the connection with iron metabolism is not evident at all and the genetic data let infer the involvement of other pathways: Pank2, Pla2G6, C19orf12, COASY, and FA2H genes seem to be related to lipid metabolism and to mitochondria functioning, WDR45 and ATP13A2 genes are implicated in lysosomal and autophagosome activity, while the C2orf37 gene encodes a nucleolar protein of unknown function. There is much hope in the scientific community that the study of the NBIA forms may provide important insight as to the link between brain iron metabolism and neurodegenerative mechanisms and eventually pave the way for new therapeutic avenues also for the more common neurodegenerative disorders. In this work, we will review the most recent findings in the molecular mechanisms underlining the most common forms of NBIA and analyze their possible link with brain iron metabolism. "	"Characteristic MRI findings in beta-propeller protein-associated neurodegeneration (BPAN). A 31-year-old woman presented with severe dystonia-parkinsonism. She had nonprogressive psychomotor retardation and cognitive dysfunction from childhood without evidence of dystonia or parkinsonism. At age 30, she then developed severe dystonia and gait disturbance. There was neither dystonia nor parkinsonism before age 30. MRI revealed cerebral atrophy and iron accumulation in the globus pallidus and substantia nigra (figure 1, A-D). The characteristic MRI findings were hyperintensity of the substantia nigra with a central band of hypointensity in T1-weighted axial slices (figure 1, B). Beta-propeller protein-associated neurodegeneration (BPAN) was diagnosed based on MRI findings and identification of a novel heterozygous mutation in the WDR45 gene (NM_007075.3: c.519+1_519+3del) (figure 2). This is a neurodegeneration involving brain iron accumulation (NBIA) characterized by psychomotor retardation from childhood and dystonia-parkinsonism in midadulthood.<sup>1,2</sup> Although we could not analyze the father's gene since he had died, the mother had no mutation in the WDR45 gene (figure 2). Thus, it might be a de novo mutation in the WDR45 gene, as reported previously.<sup>1,2.</sup>"	"De novo WDR45 mutation in a patient showing clinically Rett syndrome with childhood iron deposition in brain. Rett syndrome (RTT) is a neurodevelopmental disorder mostly caused by MECP2 mutations. We identified a de novo WDR45 mutation, which caused a subtype of neurodegeneration with brain iron accumulation, in a patient showing clinically typical RTT. The mutation (c.830+1G&gt;A) led to aberrant splicing in lymphoblastoid cells. Sequential brain magnetic resonance imaging demonstrated that iron deposition in the globus pallidus and the substantia nigra was observed as early as at 11 years of age. Because the patient showed four of the main RTT diagnostic criteria, WDR45 should be investigated in patients with RTT without MECP2 mutations."	"Novel mutation of the WDR45 gene causing beta-propeller protein-associated neurodegeneration. NA"	"Detection of WIPI1 mRNA as an indicator of autophagosome formation. Autophagy is a cellular bulk degradation system for long-lived proteins and organelles that operates during nutrient starvation and is thus a type of recycling system. In recent years, a series of mammalian orthologs of yeast autophagy-related (ATG) genes have been identified; however, the importance of the transcriptional regulation of ATG genes underlying autophagosome formation is poorly understood. In this study, we identified several ATG genes, including the genes ULK1, MAP1LC3B, GABARAPL1, ATG13, WIPI1, and WDR45/WIPI4, with elevated mRNA levels in thapsigargin-, C2-ceramide-, and rapamycin-treated as well as amino acid-depleted HeLa cells except for MAP1LC3B mRNA in rapamycin-treated HeLa cells. Rapamycin had a weaker effect on the expressions of ATG genes. The increase in WIPI1 and MAP1LC3B mRNA was induced prior to the accumulation of the autophagy marker protein MAP1LC3 in the thapsigargin- and C2-ceramide-treated A549 cells. By counting the puncta marked with MAP1LC3B in HeLa cells treated with different autophagy inducers, we revealed that the time-dependent mRNA elevation of a specific set of ATG genes was similar to that of autophagosome accumulation. The transcriptional attenuation of WIPI1 mRNA using RNA interference inhibited the puncta number in thapsigargin-treated HeLa cells. Remarkably, increases in the abundance of WIPI1 mRNA were also manifested in thapsigargin- and C2-ceramide-treated human fibroblasts (WI-38 and TIG-1), human cancer cells (U-2 OS, Saos-2, and MCF7), and rodent fibroblasts (Rat-1). Taken together, these results suggest that the detection of WIPI1 mRNA is likely to be a convenient method of monitoring autophagosome formation in a wide range of cell types."	"Beta-propeller protein-associated neurodegeneration (BPAN), a rare form of NBIA: novel mutations and neuropsychiatric phenotype in three adult patients. Neurodegeneration with brain iron accumulation (NBIA) comprises a group of rare neuropsychiatric syndromes characterized by iron accumulation in the basal ganglia. The pantothenate kinase-associated neurodegeneration (PKAN) was the first NBIA form to be genetically identified almost 15 years ago. Nowadays, eight types can be genetically distinguished. More recently, a novel NBIA was delineated and termed Static Encephalopathy of childhood with Neurodegeneration in Adulthood (SENDA), characterized by early intellectual disability followed by delayed progressive motor and cognitive deterioration with an onset in the second to third decade. Very recently, mutations in the WD repeat-containing protein 45 (WDR45) gene located on Xp11.23 were shown to be the causal factor. The protein encoded by WDR45 propels protein interaction important for autophagy. This form was therefore retermed Beta-propeller Protein Associated Neurodegeneration (BPAN). Here, the first three Dutch patients with genetically proven BPAN are comprehensively described with respect to course and neurological as well as neuropsychiatric phenotypes. All three showed a characteristic delayed progression of neurological symptoms with parkinsonism and prominent dystonia. Treatment with levodopa/carbidopa had limited effects only. Neuropsychiatric symptoms within the autistic and affective spectrum were present in the early phase of the disease. The specific course and prognosis should implicate restrained psychopharmacological interventions. The clinical picture and imaging hallmarks are often highly suggestive and should lead to suspect this specific disorder. However, the identification of a WDR45 mutation is needed for a definite diagnosis of BPAN."	"BPAN: the only X-linked dominant NBIA disorder. Beta-propeller protein-associated neurodegeneration (BPAN) is the most recently identified subtype of neurodegeneration with brain iron accumulation (NBIA), being unique with respect to the underlying disease genetics, the associated clinical presentation, and the suggested pathomechanism. Mutations in X-chromosomal WDR45 arise de novo; however, the dominant pattern of inheritance is unusual for an X-linked disorder and additional mechanisms such as X-inactivation or somatic mosaicism are likely to contribute to the phenotype that is indistinguishable between males and females. The course of the disease is two-staged with developmental delay and intellectual disability in childhood and a second phase of rapid neurological deterioration characterized by parkinsonism and dementia occurring in adolescence or early adulthood. At this time, neuroimaging findings are characteristic and provide excellent diagnostic guidance. There is increasing evidence that human WDR45 deficiency impairs autophagy, thereby raising the possibility that this rare disorder will offer insights into more common neurodegenerative disorders such as Parkinson or Alzheimer disease. "	"Newly characterized forms of neurodegeneration with brain iron accumulation. Neurodegeneration with brain iron accumulation (NBIA) comprises a group of brain iron deposition syndromes that lead to mixed extrapyramidal features and progressive dementia. Historically, there has not been a clearly identifiable molecular cause for many patients with clinical and radiologic features of NBIA. Recent discoveries have shown that mutations in C19orf12 or WDR45 can lead to NBIA. C19orf12 mutations are inherited in an autosomal recessive manner, and lead to a syndrome similar to that caused by mutations in PANK2 or PLA2G6. In contrast, WDR45 mutations lead to a distinct form of NBIA characterized by spasticity and intellectual disability in childhood followed by the subacute onset of dystonia-parkinsonism in adulthood. WDR45 mutations act in an X-linked dominant manner. Although the function of C19orf12 is largely unknown, WDR45 plays a key role in autophagy. Each of these new forms of NBIA thus leads to a distinct clinical syndrome, and together they implicate new cellular pathways in the pathogenesis of these disorders. "	"Primary and secondary dystonic syndromes: an update. The dystonias are a common but complex group of disorders that show considerable variation in cause and clinical presentation. The purpose of this review is to highlight the most important discoveries and insights from across the field over the period of the past 18 months. Five new genes for primary dystonia (PRRT2, CIZ1, ANO3, TUBB4A and GNAL) have made their appearance in the literature. New subtypes of neuronal brain iron accumulation have been delineated and linked to mutations in C19orf12 and WDR45, while a new treatable form of dystonia with brain manganese deposition related to mutations in SLC30A10 has been described. At the same time, the phenotypes of other forms of dystonic syndromes have been expanded or linked together. Finally, there has been increasing recognition of both the extramotor phenotype in dystonia and the part played by the cerebellum in its pathophysiology. Recently, there has been unprecedented change in the scientific landscape with respect to the cause of various dystonic syndromes that is likely to make a direct impact on clinical practice in the near future. Understanding the genetic cause of these syndromes and the often wide phenotypic variation in their presentations will improve diagnosis and treatment. With time, these discoveries may also lead to much-needed progress in elucidating the underlying pathophysiology of dystonia."	"β-Propeller protein-associated neurodegeneration: a new X-linked dominant disorder with brain iron accumulation. Neurodegenerative disorders with high iron in the basal ganglia encompass an expanding collection of single gene disorders collectively known as neurodegeneration with brain iron accumulation. These disorders can largely be distinguished from one another by their associated clinical and neuroimaging features. The aim of this study was to define the phenotype that is associated with mutations in WDR45, a new causative gene for neurodegeneration with brain iron accumulation located on the X chromosome. The study subjects consisted of WDR45 mutation-positive individuals identified after screening a large international cohort of patients with idiopathic neurodegeneration with brain iron accumulation. Their records were reviewed, including longitudinal clinical, laboratory and imaging data. Twenty-three mutation-positive subjects were identified (20 females). The natural history of their disease was remarkably uniform: global developmental delay in childhood and further regression in early adulthood with progressive dystonia, parkinsonism and dementia. Common early comorbidities included seizures, spasticity and disordered sleep. The symptoms of parkinsonism improved with l-DOPA; however, nearly all patients experienced early motor fluctuations that quickly progressed to disabling dyskinesias, warranting discontinuation of l-DOPA. Brain magnetic resonance imaging showed iron in the substantia nigra and globus pallidus, with a 'halo' of T1 hyperintense signal in the substantia nigra. All patients harboured de novo mutations in WDR45, encoding a beta-propeller protein postulated to play a role in autophagy. Beta-propeller protein-associated neurodegeneration, the only X-linked disorder of neurodegeneration with brain iron accumulation, is associated with de novo mutations in WDR45 and is recognizable by a unique combination of clinical, natural history and neuroimaging features."	"Brain iron takes off: a new propeller protein links neurodegeneration with autophagy. NA"	"WDR45 mutations define a novel disease entity--static encephalopathy of childhood with neurodegeneration in adulthood. NA"	"De novo mutations in the autophagy gene WDR45 cause static encephalopathy of childhood with neurodegeneration in adulthood. Static encephalopathy of childhood with neurodegeneration in adulthood (SENDA) is a recently established subtype of neurodegeneration with brain iron accumulation (NBIA). By exome sequencing, we found de novo heterozygous mutations in WDR45 at Xp11.23 in two individuals with SENDA, and three additional WDR45 mutations were identified in three other subjects by Sanger sequencing. Using lymphoblastoid cell lines (LCLs) derived from the subjects, aberrant splicing was confirmed in two, and protein expression was observed to be severely impaired in all five. WDR45 encodes WD-repeat domain 45 (WDR45). WDR45 (also known as WIPI4) is one of the four mammalian homologs of yeast Atg18, which has an important role in autophagy. Lower autophagic activity and accumulation of aberrant early autophagic structures were demonstrated in the LCLs of the affected subjects. These findings provide direct evidence that an autophagy defect is indeed associated with a neurodegenerative disorder in humans."	"Exome sequencing reveals de novo WDR45 mutations causing a phenotypically distinct, X-linked dominant form of NBIA. Neurodegeneration with brain iron accumulation (NBIA) is a group of genetic disorders characterized by abnormal iron deposition in the basal ganglia. We report that de novo mutations in WDR45, a gene located at Xp11.23 and encoding a beta-propeller scaffold protein with a putative role in autophagy, cause a distinctive NBIA phenotype. The clinical features include early-onset global developmental delay and further neurological deterioration (parkinsonism, dystonia, and dementia developing by early adulthood). Brain MRI revealed evidence of iron deposition in the substantia nigra and globus pallidus. Males and females are phenotypically similar, an observation that might be explained by somatic mosaicism in surviving males and germline or somatic mutations in females, as well as skewing of X chromosome inactivation. This clinically recognizable disorder is among the more common forms of NBIA, and we suggest that it be named accordingly as beta-propeller protein-associated neurodegeneration."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ACTA2"	"familial thoracic aortic aneurysm and aortic dissection"	"Inhalation: A means to explore and optimize nintedanib's pharmacokinetic/pharmacodynamic relationship. Oral nintedanib is marketed for the treatment of idiopathic pulmonary fibrosis (IPF). While effective slowing fibrosis progression, as an oral medicine nintedanib is limited. To reduce side effects and maximize efficacy, nintedanib was reformulated as a solution for nebulization and inhaled administration. To predict effectiveness treating IPF, the nintedanib pharmacokinetic/pharmacodynamic relationship was dissected. Pharmacokinetic analysis indicated oral-delivered nintedanib plasma exposure and lung tissue partitioning were not dose-proportional and resulting lung levels were substantially higher than blood. Although initial-oral absorbed nintedanib efficiently partitioned into the lung, only a quickly eliminated fraction appeared available to epithelial lining fluid (ELF). Because IPF disease appears to initiate and progress near the epithelial surface, this observation suggests short duration nintedanib exposure (oral portion efficiently partitioned to ELF) is sufficient for IPF efficacy. To test this hypothesis, exposure duration required for nintedanib activity was explored. In vitro, IPF-cellular matrix (IPF-CM) increased primary normal human fibroblast (nHLF) aggregate size and reduced nHLF cell count. IPF-CM also increased nHLF ACTA2 and COL1A expression. Whether short duration (inhalation pharmacokinetic mimic) or continuous exposure (oral pharmacokinetic mimic), nintedanib (1-100 nM) reversed these effects. In vivo, intubated silica produced a strong pulmonary fibrotic response. Once-daily (QD) 0.021, 0.21 and 2.1 mg/kg intranasal (IN; short duration inhaled exposure) and twice-daily (BID) 30 mg/kg oral (PO; long duration oral exposure) showed that at equivalent-delivered lung exposure, QD short duration inhaled nintedanib exposure (0.21 mg/kg IN vs. 30 mg/kg PO) exhibited equivalent-to-superior activity as BID oral (reduced silica-induced elastance, alpha-smooth muscle actin, interleukin-1 beta (IL-1β) and soluble collagen, and lung macrophage and neutrophils). Comparatively, the increased inhaled lung dose (2.1 mg/kg IN vs. 30 mg/kg PO) exhibited increased effect by further reducing silica-induced elastance, IL-1β and soluble collagen. Neither oral nor inhaled nintedanib reduced silica-induced parenchymal collagen. Both QD inhaled and BID oral nintedanib reduced silica-induced bronchoalveolar lavage fluid macrophage and neutrophil counts with oral achieving significance. In summary, pharmacokinetic elements important for nintedanib activity can be delivered using infrequent, small inhaled doses to achieve oral equivalent-to-superior pulmonary activity."	"Methylation in pericytes after acute injury promotes chronic kidney disease. The origin and fate of renal myofibroblasts is not clear after acute kidney injury (AKI). Here, we demonstrate that myofibroblasts were activated from quiescent pericytes (qPericytes) and the cell numbers increased after ischemia/reperfusion injury-induced AKI (IRI-AKI). Myofibroblasts underwent apoptosis during renal recovery but one-fifth of them survived in the recovered kidneys on day 28 after IRI-AKI and their cell numbers increased again after day 56. Microarray data showed the distinctive gene expression patterns of qPericytes, activated pericytes (aPericytes, myofibroblasts), and inactivated pericytes (iPericytes) isolated from kidneys before, on day 7, and on day 28 after IRI-AKI. Hypermethylation of the Acta2 repressor Ybx2 during IRI-AKI resulted in epigenetic modification of iPericytes to promote the transition to chronic kidney disease (CKD) and aggravated fibrogenesis induced by a second AKI induced by adenine. Mechanistically, transforming growth factor-β1 decreased the binding of YBX2 to the promoter of Acta2 and induced Ybx2 hypermethylation, thereby increasing α-smooth muscle actin expression in aPericytes. Demethylation by 5-azacytidine recovered the microvascular stabilizing function of aPericytes, reversed the profibrotic property of iPericytes, prevented AKI-CKD transition, and attenuated fibrogenesis induced by a second adenine-AKI. In conclusion, intervention to erase hypermethylation of pericytes after AKI provides a strategy to stop the transition to CKD."	"Isoform-specific characterization of class I histone deacetylases and their therapeutic modulation in pulmonary hypertension. Pharmacological modulation of class I histone deacetylases (HDAC) has been evaluated as a therapeutic strategy for pulmonary hypertension (PH) in experimental models of PH. However, information of their expression, regulation and transcriptional targets in human PH and the therapeutic potential of isoform-selective enzyme modulation are lacking. Comprehensive analysis of expression and regulation of class I HDACs (HDAC1, HDAC2, HDAC3 and HDAC8) was performed in cardiopulmonary tissues and adventitial fibroblasts isolated from pulmonary arteries (PAAF) of idiopathic pulmonary arterial hypertension (IPAH) patients and healthy donors. Cellular functions and transcriptional targets of HDAC enzymes were investigated. Therapeutic effects of pan-HDAC (Vorinostat), class-selective (VPA) and isoform-selective (CAY10398, Romidepsin, PCI34051) HDAC inhibitors were evaluated ex vivo (IPAH-PAAF, IPAH-PASMC) and in vivo (rat chronic hypoxia-induced PH and zebrafish angiogenesis). Our screening identifies dysregulation of class I HDAC isoforms in IPAH. Particularly, HDAC1 and HDAC8 were consistently increased in IPAH-PAs and IPAH-PAAFs, whereas HDAC2 and HDAC8 showed predominant localization with ACTA2-expressing cells in extensively remodeled IPAH-PAs. Hypoxia not only significantly modulated protein levels of deacetylase (HDAC8), but also significantly caused dynamic changes in the global histone lysine acetylation levels (H3K4ac, H3K9/K14ac and H3K27ac). Importantly, isoform-specific RNA-interference revealed that HDAC isoforms regulate distinct subset of transcriptome in IPAH-PAAFs. Reduced transcript levels of KLF2 in IPAH-PAAFs was augmented by HDAC8 siRNA and HDAC inhibitors, which also attenuated IPAH-associated hyperproliferation and apoptosis-resistance ex vivo, and mitigated chronic hypoxia-induced established PH in vivo, at variable degree. Class I HDAC isoforms are significantly dysregulated in human PAH. Isoform-selective HDAC inhibition is a viable approach to circumvent off-target effects."	"Anti-fibrotic effects of the antihistamine ketotifen in a rabbit model of arthrofibrosis. Arthrofibrosis is a relatively common complication after joint injuries and surgery, particularly in the knee. The present study used a previously described and validated rabbit model to assess the biomechanical, histopathological, and molecular effects of the mast cell stabilizer ketotifen on surgically induced knee joint contractures in female rabbits. A group of 12 skeletally mature rabbits were randomly divided into two groups. One group received subcutaneous (SQ) saline, and a second group received SQ ketotifen injections. Biomechanical data were collected at eight, ten, 16, and 24 weeks. At the time of necropsy, posterior capsule tissue was collected for histopathological and gene expression analyses (messenger RNA (mRNA) and protein). At the 24-week timepoint, there was a statistically significant increase in passive extension among rabbits treated with ketotifen compared to those treated with saline (p = 0.03). However, no difference in capsular stiffness was detected. Histopathological data failed to demonstrate a decrease in the density of fibrous tissue or a decrease in α-smooth muscle actin (α-SMA) staining with ketotifen treatment. In contrast, tryptase and α-SMA protein expression in the ketotifen group were decreased when compared to saline controls (p = 0.007 and p = 0.01, respectively). Furthermore, there was a significant decrease in α-SMA (ACTA2) gene expression in the ketotifen group compared to the control group (p &lt; 0.001). Collectively, these data suggest that ketotifen mitigates the severity of contracture formation in a rabbit model of arthrofibrosis."	"Design and in vivo activity of A3 adenosine receptor agonist prodrugs. Prodrugs (MRS7422, MRS7476) of highly selective A3 adenosine receptor (AR) agonists Cl-IB-MECA and MRS5698, respectively, were synthesized by succinylation of the 2' and 3' hydroxyl groups, and the parent, active drug was shown to be readily liberated upon incubation with liver esterases. The prodrug MRS7476 had greatly increased aqueous solubility compared with parent MRS5698 and was fully efficacious and with a longer duration than MRS7422 in reversing mouse neuropathic pain (chronic constriction injury model, 3 μmol/kg, p.o.), a known A3AR effect. MRS7476 (5 mg/kg, p.o., twice daily) was found to protect against non-alcoholic steatohepatitis (NASH) in the STAM mouse model, indicated by the NAFLD activity score. Hepatocyte ballooning, IL-10 production, and liver histology were significantly normalized in the MRS7476-treated mice, but not liver fibrosis (no change in ACTA2 levels) or inflammation. Hepatic expression of ADORA3 in human NAFLD patients was 1.9-fold lower compared to normal controls. Adora3 expression determined by qPCR in primary mouse liver was associated with the stellate cells, and its mouse full body A3AR knockout worsened liver markers of inflammation and steatosis. Thus, we have introduced a reversible prodrug strategy that enables water solubility and in vivo activity of masked A3AR agonists in models of two disease conditions."	"The Transcription Factor SCX is a Potential Serum Biomarker of Fibrotic Diseases. Fibrosing diseases are causes of morbidity and mortality around the world, and they are characterized by excessive extracellular matrix (ECM) accumulation. The bHLH transcription factor scleraxis (SCX) regulates the synthesis of ECM proteins in heart fibrosis. SCX expression was evaluated in lung fibroblasts and tissue derived from fibrotic disease patients and healthy controls. We also measured SCX in sera from 57 healthy controls, and 56 Idiopathic Pulmonary Fibrosis (IPF), 40 Hypersensitivity Pneumonitis (HP), and 100 Systemic Sclerosis (SSc) patients. We report high SCX expression in fibroblasts and tissue from IPF patients versus controls. High SCX-serum levels were observed in IPF (0.663 ± 0.559 ng/mL, p &lt; 0.01) and SSc (0.611 ± 0.296 ng/mL, p &lt; 0.001), versus controls (0.351 ± 0.207 ng/mL) and HP (0.323 ± 0.323 ng/mL). Serum levels of the SCX heterodimerization partner, TCF3, did not associate with fibrotic illness. IPF patients with severely affected respiratory capacities and late-stage SSc patients presenting anti-topoisomerase I antibodies and interstitial lung disease showed the highest SCX-serum levels. SCX gain-of-function induced the expression of alpha-smooth muscle actin (α-SMA/ACTA2) in fibroblasts when co-overexpressed with TCF3. As late and severe stages of the fibrotic processes correlated with high circulating SCX, we postulate it as a candidate biomarker of fibrosis and a potential therapeutic target."	"Drebrin is induced during myofibroblast differentiation and enhances the production of fibrosis-related genes. Fibrosis is attributed to excess deposition of extracellular matrix (ECM) proteins including collagen and is associated with various organ dysfunction. This excessive ECM is produced by myofibroblasts, which are differentiated from various cells by a variety of stimuli, represented by TGF-β. However, molecular mechanisms for the regulation of ECM production in myofibroblasts remain obscure. In this study, we demonstrate that the expression of drebrin, which binds to and increases the stability of actin filament in neurons, is increased in mouse hearts and lungs upon fibrosis. Drebrin is mainly expressed in myofibroblasts in the fibrotic hearts and lungs and promotes the expression of fibrosis-related genes, such as Acta2 and Col1a1. Taken together, our study identifies drebrin as a molecule that promotes the production of fibrosis-related genes in myofibroblasts."	"Impaired hepatic vitamin A metabolism in NAFLD mice leading to vitamin A accumulation in hepatocytes. Systemic retinol (vitamin A) homeostasis is controlled by the liver, involving close collaboration between hepatocytes and hepatic stellate cells (HSC). Genetic variants in retinol metabolism (PNPLA3 and HSD17B13) are associated with non-alcoholic fatty liver disease (NAFLD) and disease progression. Still, little mechanistic details are known about hepatic vitamin A metabolism in NAFLD, which may affect carbohydrate and lipid metabolism, inflammation, oxidative stress and the development of fibrosis and cancer, e.g. all risk factors of NAFLD. Here, we analyzed vitamin A metabolism in 2 mouse models of NAFLD; mice fed a high-fat, high-cholesterol (HFC) diet and Leptin<sup>ob</sup> mutant (ob/ob) mice. Hepatic retinol and retinol binding protein 4 (RBP4) levels were significantly reduced in both mouse models of NAFLD. In contrast, hepatic retinyl palmitate levels (the vitamin A storage form) were significantly elevated in these mice. Transcriptome analysis revealed a hyperdynamic state of hepatic vitamin A metabolism, with enhanced retinol storage and metabolism (upregulated Lrat, Dgat1, Pnpla3, Raldh's and RAR/RXR-target genes) in fatty livers, in conjunction with induced hepatic inflammation (upregulated Cd68, Tnfα, Nos2, Il1β, Il-6) and fibrosis (upregulated Col1a1, Acta2, Tgfβ, Timp1). Autofluorescence analyses revealed prominent vitamin A accumulation in hepatocytes rather than HSC in HFC-fed mice. Palmitic acid exposure increased Lrat mRNA levels in primary rat hepatocytes and promoted retinyl palmitate accumulation when co-treated with retinol, which was not detected for similarly-treated primary rat HSC. NAFLD leads to cell type-specific rearrangements in retinol metabolism leading to vitamin A accumulation in hepatocytes. This may promote disease progression and/or affect therapeutic approaches targeting nuclear receptors."	"Translating GWAS-identified loci for cardiac rhythm and rate using an in vivo image- and CRISPR/Cas9-based approach. A meta-analysis of genome-wide association studies (GWAS) identified eight loci that are associated with heart rate variability (HRV), but candidate genes in these loci remain uncharacterized. We developed an image- and CRISPR/Cas9-based pipeline to systematically characterize candidate genes for HRV in live zebrafish embryos. Nine zebrafish orthologues of six human candidate genes were targeted simultaneously in eggs from fish that transgenically express GFP on smooth muscle cells (Tg[acta2:GFP]), to visualize the beating heart. An automated analysis of repeated 30 s recordings of beating atria in 381 live, intact zebrafish embryos at 2 and 5 days post-fertilization highlighted genes that influence HRV (hcn4 and si:dkey-65j6.2 [KIAA1755]); heart rate (rgs6 and hcn4); and the risk of sinoatrial pauses and arrests (hcn4). Exposure to 10 or 25 µM ivabradine-an open channel blocker of HCNs-for 24 h resulted in a dose-dependent higher HRV and lower heart rate at 5 days post-fertilization. Hence, our screen confirmed the role of established genes for heart rate and rhythm (RGS6 and HCN4); showed that ivabradine reduces heart rate and increases HRV in zebrafish embryos, as it does in humans; and highlighted a novel gene that plays a role in HRV (KIAA1755)."	"Developmental mechanisms regulating the formation of smooth muscle layers in the mouse uterus†. Uterine smooth muscle cells differentiate from mesenchymal cells, and gap junctions connect the muscle cells in the myometrium. At the neonatal stage, a uterine smooth muscle layer is situated away from the epithelium when smooth muscle cells are grafted near the epithelium, suggesting that the epithelium plays an important role in differentiation, proliferation, and/or migration of smooth muscle cells. In this study, developmental mechanisms regulating the formation of the smooth muscle layers in the mouse uterus were analyzed using an in vitro culture model. Differentiation of smooth muscle cells occurs at a neonatal stage because ACTA2 gene expression was increased at the outer layer, and GJA1 was not expressed in cellular membranes of uterine smooth muscle cells by postnatal day 15. To analyze the effects of the epithelium on the differentiation of smooth muscle cells, a bulk uterine mesenchymal cell line was established from p53-/- mice at postnatal day 3 (P3US cells). Co-culture with Müllerian ductal epithelial cells (E1 cells) induced repulsive migration of ACTA2-positive cells among bulk P3US cells from E1 cells, but it had no effects on the migration of any of 100% ACTA2-positive or negative smooth muscle cell lines cloned from P3US cells. Thus, uterine epithelial cells indirectly affected the repulsive migration of smooth muscle cells via mesenchymal cells. Conditioned medium by E1 cells inhibited differentiation into smooth muscle cells of clonal cells established from P3US cells. Therefore, the uterine epithelium inhibits the differentiation of stem-like progenitor mesenchymal cells adjacent to the epithelium into smooth muscle cells."	"Cortical Bone Derived Stem Cells Modulate Cardiac Fibroblast Response via miR-18a in the Heart After Injury. The adult heart following injury such as a myocardial infarction forms a fibrotic scar associated with transformation of resident cardiac fibroblasts into myofibroblast, accelerating cardiac remodeling and dysfunction. Cell therapies provide a novel direction for the enhancement of cardiac structure and function but remain poorly described in terms of the effect on resident cardiac fibroblasts. We have shown cortical bone derived stem cells (CBSCs) exhibit an ability to repair the heart after myocardial injury together with reduced scar formation. Nevertheless, whether CBSCs possess ability to modulate resident fibroblast response after myocardial injury remains untested. To determine the effect of secreted factors from CSBCs to attenuate myofibroblast formation in the heart after injury. CBSCs were injected in mice after myocardial infarction which demonstrated reduced fibrosis as determined by Masson's trichrome and Picro-Sirius red staining. In parallel, decreased expression of myofibroblast markers such as Acta2 was observed compared to PBS injected mice. To determine the effect of CBSCs on cardiac fibrosis, adult mouse cardiac fibroblasts were isolated from C57BL/6 mice, primed with CBSC pre-conditioned media for 12 h, and treated with 10ng TGF-β for 48 h to mimic cardiac injury. Decreased expression of Acta2, periostin and CTGF was observed in adult cardiac fibroblasts cultured in CBSC medium compared to control cells. Additionally, analysis of myofibroblast markers such as vimentin and pSMAD/SMAD was also decreased compared to control cells. To determine the mechanism, we looked for enriched miRNA in CBSCs that can mediate anti fibrotic response after injury. Results showed significantly increased expression of miR-18a in CBSCs. The upregulation of miR-18a was also validated in adult fibroblasts treated with CBSCs compared to control cells. Adult fibroblasts treated with mimic for miR-18a followed by TGF-β showed significant decrease in myofibroblast formation while miR-18a inhibitor completely inhibited the effect of CBSC medium. CBSCs reduce fibroblast to myofibroblast transition and differentiation in adult cardiac fibroblasts via miR-18a-5p. This finding reveals a new avenue for cell therapies to target myocardial scar modulation and provides a resolution for the cardiac repair response after injury in the adult myocardium."	"Distinct Local and Systemic Molecular Signatures in the Esophageal and Gastric Cancers: Possible Therapy Targets and Biomarkers for Gastric Cancer. Gastric (GC) and esophageal (EC) cancers are highly lethal. Better understanding of molecular abnormalities is needed for new therapeutic targets and biomarkers to be found. Expression of 18 cancer-related genes in 31 paired normal-tumor samples was quantified by reversely-transcribed quantitative polymerase chain reaction (RTqPCR) and systemic concentration of 27 cytokines/chemokines/growth factors in 195 individuals was determined using Luminex xMAP technology. Only Ki67, CLDN2, and BCLxL were altered in GC while Ki67, CDKN1A, ODC1, SLC2A1, HIF1A, VEGFA, NOS2, CCL2, PTGS2, IL10, IL10Ra, and ACTA2 were changed in EC. The relatively unaltered molecular GC landscape resulted from high expression of BCLxL, CDKN1A, BCL2, Ki67, HIF1A, VEGFA, ACTA2, TJP1, CLDN2, IL7Ra, ODC1, PTGS2, and CCL2 in non-cancerous tissue. The NOS2 expression and IL-4, IL-9, FGF2, and RANTES secretion were higher in cardiac than non-cardiac GC. Four-cytokine panels (interleukin (IL)-1β/IL-1ra/IL-6/RANTES or IL-1β/IL-6/IL-4/IL-13) differentiated GC from benign conditions with 87-89% accuracy. Our results showed increased proliferative, survival, inflammatory and angiogenic capacity in gastric tumor-surrounding tissue, what might contribute to GC aggressiveness and facilitate cancer recurrence. Further studies are needed to determine the CLDN2 and NOS2 suitability as candidate molecular targets in GC and cardiac GC, respectively, and discern the role of CLDN2 or to verify IL-1β/IL-1ra/IL-6/RANTES or IL-1β/IL-6/IL-4/IL-13 usefulness as differential biomarkers."	"The science of BAV aortopathy. The aortopathy associated with bicuspid aortic valve (BAV) is an epidemiologically relevant source of chronic and acute aortic disease (aneurysm and dissection). However, its pathogenesis is still the object of scientific uncertainties and debates. Indeed, the mechanisms determining the diseases of the ascending aorta in BAV patients are most likely complex and multifactorial, i.e. resulting from variable modes of interplay between genetic and hemodynamic factors. Although few scientific studies have so far taken into adequate account this complexity, leaving the precise sequence of pathogenetic events still undiscovered, the accumulated evidence from previous research approaches have at least brought about important insights. While genetic studies have so far identified variants relevant to either valve malformation or aortic complications (including those in the genes NOTCH1, TGFBR2, ACTA2, GATA5, NKX2.5, SMAD6, ROBO4), however each explaining not more than 5% of the study population, other investigations have thoroughly described both the flow features, with consequent forces acting on the arterial wall (including skewed flow jet direction, rotational flow, wall shear stress), and the main changes in the molecular and cellular wall structure (including extracellular matrix degradation, smooth muscle cell changes, oxidative stress, unbalance of TGF-β signaling, aberrant endothelial-to-mesenchymal transition). All of this evidence, together with the recognition of the diverse phenotypes that the aortopathy can assume in BAV patients, holding possible prognostic significance, is reviewed in this chapter. The complex and multifaceted body of knowledge resulting from clinical and basic science studies on BAV aortopathy has the potential to importantly influence modes of clinical management of this disease in the near future."	"ACTA2 leukovasculopathy: A rare pediatric white matter disorder. A 3-year-old girl presented with ataxia, dilated pupils, and behavioral change prompting work up for stroke. Her medical history included chronic mydriasis and patent ductus arteriosus requiring aortoplasty. Magnetic resonance imaging of the brain demonstrated confluent white matter signal abnormality concerning for leukodystrophy. Magnetic resonance angiography revealed a cerebral vessel arteriopathy with a &quot;broomstick appearance&quot; and other neuroradiographic findings consistent with ACTA2 mutation. Pathogenic Arg179His ACTA2 mutation was confirmed in the patient. ACTA2-related leukovasculopathy should be considered during workup of patients with abnormal white matter (eg, leukodystrophies), childhood stroke, and arteriopathies. Recognizing the combination of commonly associated physical and medical conditions associated with radiographic features of this neurogenetic condition will prompt appropriate care and screening for comorbidities associated with this disorder."	"Reducing YAP expression in Pkd1 mutant mice does not improve the cystic phenotype. The Hippo pathway is a highly conserved signalling route involved in organ size regulation. The final effectors of this pathway are two transcriptional coactivators, yes-associated protein (YAP) and transcriptional coactivator with PDZ-binding motif (WWTR1 or TAZ). Previously, we showed aberrant activation of the Hippo pathway in autosomal-dominant polycystic kidney disease (ADPKD), suggesting that YAP/TAZ might play a role in disease progression. Using antisense oligonucleotides (ASOs) in a mouse model for ADPKD, we efficiently down-regulated Yap levels in the kidneys. However, we did not see any effect on cyst formation or growth. Moreover, the expression of YAP/TAZ downstream targets was not changed, while WNT and TGF-β pathways' downstream targets Myc, Acta2 and Vim were more expressed after Yap knockdown. Overall, our data indicate that reducing YAP levels is not a viable strategy to modulate PKD progression."	"An autophagic deficit in the uterine vessel microenvironment provokes hyperpermeability through deregulated VEGFA, NOS1, and CTNNB1. The uterus undergoes vascular changes during the reproductive cycle and pregnancy. Steroid hormone deprivation induces macroautophagy/autophagy in major uterine cell types. Herein, we explored the functions of uterine autophagy using the Amhr2-Cre-driven atg7 deletion model. Deletion of Atg7 was confirmed by functional deficit of autophagy in uterine stromal, myometrial, and vascular smooth muscle cells, but not in endothelial cells. atg7<sup>d/d</sup> uteri exhibited enhanced stromal edema accompanied by dilation of blood vessels. Ovariectomized atg7<sup>d/d</sup> uteri showed decreased expression of endothelial junction-related proteins, such as CTNNB1/beta-catenin, with increased vascular permeability, and increased expression of VEGFA and NOS1. Nitric oxide (NO) was shown to mediate VEGFA-induced vascular permeability by targeting CTNNB1. NO involvement in maintaining endothelial junctional stability in atg7<sup>d/d</sup> uteri was confirmed by the reduction in extravasation following treatment with a NOS inhibitor. We also showed that atg7<sup>d/d</sup> uterine phenotype improved the fetal weight:placental weight ratio, which is one of the indicators of assessing the status of preeclampsia. We showed that autophagic deficit in the uterine vessel microenvironment provokes hyperpermeability through the deregulation of VEGFA, NOS1, and CTNNB1. ACTA2: actin, alpha 2, smooth muscle, aortic; Amhr2: anti-Mullerian hormone type 2 receptor; ANGPT1: angiopoietin 1; ATG: autophagy-related; CDH5: cadherin 5; CLDN5: claudin 5; COL1A1: collagen, type I, alpha 1; CSPG4/NG2: chondroitin sulfate proteoglycan 4; CTNNB1: catenin (cadherin associated protein), beta 1; DES: desmin; EDN1: endothelin 1; EDNRB: endothelin receptor type B; F3: coagulation factor III; KDR/FLK1/VEGFR2: kinase insert domain protein receptor; LYVE1: lymphatic vessel endothelial hyaluronan receptor 1; MAP1LC3B: microtubule-associated protein 1 light chain 3 beta; MCAM/CD146: melanoma cell adhesion molecule; MYL2: myosin, light polypeptide 2, regulatory, cardiac, slow; MYLK: myosin, light polypeptide kinase; NOS1/nNOS: nitric oxide synthase 1, neuronal; NOS2/iNOS: nitric oxide synthase 2, inducible; NOS3/eNOS: nitric oxide synthase 3, endothelial cell; OVX: ovariectomy; PECAM1/CD31: platelet/endothelial cell adhesion molecule 1; POSTN: periostin, osteoblast specific factor; SQSTM1: sequestosome 1; TEK/Tie2: TEK receptor tyrosine kinase; TJP1/ZO-1: tight junction protein 1; TUBB1, tubulin, beta 1 class VI; USC: uterine stromal cell; VEGFA: vascular endothelial growth factor A; VSMC: vascular smooth muscle cell."	"Evidence for endothelial-to-mesenchymal transition in human brain arteriovenous malformations. Brain arteriovenous malformations (AVMs) are rare, potentially devastating cerebrovascular lesions that can occur in both children and adults. AVMs are largely sporadic and the basic disease biology remains unclear, limiting advances in both detection and treatment. This study aimed to investigate human brain AVMs for endothelial-to-mesenchymal transition (EndMT), a process recently implicated in cerebral cavernous malformations (CCMs). We used 29 paraffin-embedded and 13 fresh/frozen human brain AVM samples to profile expression of panels of EndMT-associated proteins and RNAs. CCMs, a cerebrovascular disease also characterized by abnormal vasculature, were used as a primary comparison, given that EndMT specifically contributes to CCM disease biology. AVM-derived cell lines were isolated from three fresh, surgical AVM samples and characterized by protein expression. We observed high collagen deposition, high PAI-1 expression, and expression of EndMT-associated transcription factors such as KLF4, SNAI1, and SNAI2 and mesenchymal-associated markers such as VIM, ACTA2, and S100A4. SMAD-dependent TGF-β signaling was not strongly activated in AVMs and this pathway may be only partially involved in mediating EndMT. Using serum-free culture conditions, we isolated myofibroblast-like cell populations from AVMs that expressed a unique range of proteins associated with mature cell types and with EndMT. Conditioned medium from these cells led to increased proliferation of HUVECs and SMCs. Collectively, our results suggest a role for EndMT in AVM disease. This may lead to new avenues for disease models to further our understanding of disease mechanisms, and to the development of improved diagnostics and therapeutics."	"Development and function of smooth muscle cells is modulated by Hic1 in mouse testis. In mammalian testis, contractile peritubular myoid cells (PMCs) regulate the transport of sperm and luminal fluid, while secreting growth factors and extracellular matrix proteins to support the spermatogonial stem cell niche. However, little is known about the role of testicular smooth muscle cells during postnatal testicular development. Here we report age-dependent expression of hypermethylated in cancer 1 (Hic1; also known as ZBTB29) in testicular smooth muscle cells, including PMCs and vascular smooth muscle cells, in the mouse. Postnatal deletion of Hic1 in smooth muscle cells led to their increased proliferation and resulted in dilatation of seminiferous tubules, with increased numbers of PMCs. These seminiferous tubules contained fewer Sertoli cells and more spermatogonia, and fibronectin was not detected in their basement membrane. The expression levels of genes encoding smooth muscle contractile proteins, Acta2 and Cnn1, were downregulated in the smooth muscle cells lacking Hic1, and the seminiferous tubules appeared to have reduced contractility. These data imply a role for Hic1 in determining the size of seminiferous tubules by regulating postnatal smooth muscle cell proliferation, subsequently affecting spermatogenesis in adulthood."	"Double-hit mutations in bicuspid aortic valve and blunt traumatic acute aortic dissection. We report on a young patient with bicuspid aortic valve operated on for type A acute aortic dissection due to a blunt thoracic trauma. Aortic root replacement, ascending aortic and total arch repair together with the postoperative course were uneventful. Multigenerational genetic analyses revealed mutations in the NOTCH1 and ACTA2 genes in the patient and his father. The screening of his parents and children revealed no bicuspid aortic valve or aortic root dilation. This exceptionally rare case of double-hit mutations and the presence of blunt trauma reveals the complex etiology of aortic dissection in patients with bicuspid aortic valve."	"Matrine suppresses advanced glycation end products-induced human coronary smooth muscle cells phenotype conversion by regulating endoplasmic reticulum stress-dependent Notch signaling. Advanced glycation end products (AGEs) induce vascular smooth muscle cells (VSMCs) contractile-synthetic phenotypic conversion which plays roles in aggravated atherosclerosis in diabetes. Matrine has been proved to suppress AGEs-induced phenotypic conversion which is governed by Notch pathway. Endoplasmic reticulum stress was associated with Notch pathway. Cultured human coronary smooth muscle cells (HCSMCs) were incubated with AGE-BSA at 0, 5 and 10 μmol/l. Specific siRNA was used to silence Protein kinase RNA-like ER kinase (PERK). Matrine at 0, 0.5 and 1.0 mmol/l were used to pre-treat the cells. Immunofluorescent staining of Smooth muscle myosin heavy chain 11 (MYH11) and smooth muscle α-actin 2 (ACTA2) were used to identify the contractile phenotype of HCSMCs. Protein phosphorylation and expression levels were evaluated by Western Blotting. AGE-BSA exposure facilitated the contractile-synthetic phenotypic conversion of HCSMCs in a concentration-dependent manner. AGE-BSA exposure increased expression levels of glucose-regulated protein 78 (GRP78), Delta-like 4 (Dll4), Notch intracellular domain (NICD1), Hes family basic helix-loop-helix (bHLH) transcriptional factor 1 (HES1), as well as the phosphorylation level of PERK. Specific perk-siRNA transfection dramatically lowered PERK phosphorylation and resulted in down-regulation of Dll4, NICD1 and HES1 in HCSMCs exposed to AGE-BSA. Pre-treatment of matrine suppressed AGE-BSA-induced phenotypic conversion of HCSMCs in a concentration-dependent manner. Moreover, matrine pre-treatment reduced expression level of GRP78, NICD1, HES1 and the phosphrylation level of PERK in AGE-BSA-exposed HCSMCs in a concentration-dependent manner. These results suggested that matrine suppressed AGE-BSA-induced HCSMCs phenotypic conversion via attenuating ER stress PERK signaling-dependent Dll4- Notch pathway activation."	"Exon skipping of TGFβRI affects signalling and ECM expression in hypertrophic scar-derived fibroblasts. In burn patients, wound healing is often accompanied by hypertrophic scar (HS) development, resulting in both functional and aesthetic problems. HSs are characterised by abundant presence of myofibroblasts that contribute to overproduction of extracellular matrix (ECM) that is regulated by the TGF-β signalling pathway. Studies have shown that inhibition of TGF-β receptors in fibrotic diseases reduces the fibrotic load. In the present study, we aim to inactivate ALK5, also known as TGF-β receptor I, in human HS fibroblasts by exon skipping using antisense oligonucleotides (AONs). HS biopsies were used to isolate and set up fibroblast monocultures. AONs targeting ALK5 were supplemented to the fibroblast cultures to induce exon skipping, while pharmacological ALK5 inhibition was induced using SB431542. AON delivery in HS fibroblasts was examined using immunofluorescence (IF), while TGF-β signalling downstream targets, such as Smad2/3, PAI-1, ACTA2, COL1A1 and COL3A1, were analysed using touchdown polymerase chain reaction (PCR), quantitative PCR (qPCR), IF or western blotting. Our data clearly demonstrate that AONs were successfully delivered in the nuclei of HS fibroblasts and that functional exon skipping of ALK5 took place as confirmed with touchdown PCR and qPCR. In addition, exon skipping affected the expression of ECM-related genes, such as type I/III collagens, PAI-1 and CCN2. Moreover, AON treatment did not affect the migration of HS fibroblasts in a model for wound healing. Exon skipping is a promising tool to modulate the TGF-β signalling pathway in HS. This would open a therapeutic window for the treatment of patients suffering from HSs."	"Targeting the CBP/β-Catenin Interaction to Suppress Activation of Cancer-Promoting Pancreatic Stellate Cells. Although cyclic AMP-response element binding protein-binding protein (CBP)/β-catenin signaling is known to promote proliferation and fibrosis in various organ systems, its role in the activation of pancreatic stellate cells (PSCs), the key effector cells of desmoplasia in pancreatic cancer and fibrosis in chronic pancreatitis, is largely unknown. To investigate the role of the CBP/β-catenin signaling pathway in the activation of PSCs, we have treated mouse and human PSCs with the small molecule specific CBP/β-catenin antagonist ICG-001 and examined the effects of treatment on parameters of activation. We report for the first time that CBP/β-catenin antagonism suppresses activation of PSCs as evidenced by their decreased proliferation, down-regulation of &quot;activation&quot; markers, e.g., α-smooth muscle actin (α-SMA/Acta2), collagen type I alpha 1 (Col1a1), Prolyl 4-hydroxylase, and Survivin, up-regulation of peroxisome proliferator activated receptor gamma (Ppar-γ) which is associated with quiescence, and reduced migration; additionally, CBP/β-catenin antagonism also suppresses PSC-induced migration of cancer cells. CBP/β-catenin antagonism represents a novel therapeutic strategy for suppressing PSC activation and may be effective at countering PSC promotion of pancreatic cancer."	"Interleukins 4 and 13 and Their Receptors Are Differently Expressed in Gastrointestinal Tract Cancers, Depending on the Anatomical Site and Disease Advancement, and Improve Colon Cancer Cell Viability and Motility. Immunosuppressive interleukins (IL)-4 and 13 may directly promote cancer but neither their status nor role in gastrointestinal tract is clarified. We aim at quantifying ILs and their receptors in paired normal-tumor samples (n = 49/51) and sera (n = 263), using immunoassays and RTqPCR, and screening for their effect on colonic cancer cells. Both ILs were elevated locally at protein level in all cancers but only IL13 transcripts in colon were upregulated. Interleukin and their receptor expression reflected cancer pathology to varying degrees, with the association frequently inverse and manifested in non-cancerous tissue. Positive correlation with cancer-promoting genes BCL2, BCLxL, HIF1A, VEGFA, ACTA2, CCL2, PTGS2, and CDKN1A, but not Ki67, was demonstrated, particularly for ILs' receptors. Circulating IL-4 was elevated in all, while IL-13 only in colorectal or esophageal cancers, reflecting their advancement. IL4Ra and IL13Ra1 transcripts were downregulated by hypoxia and, in Caco-2, also by IL-4. Interleukin stimulation slightly improved colonic cancer cell viability, weakly upregulating BCL2 and Ki67 in HCT116 and HT-29. It affected cell motility more markedly and was consistently accompanied by upregulation of claudin-2. Gastrointestinal tract cancers are associated with IL-4 and IL-13 upregulation, which may facilitate cancer growth. Targeting both interleukins as an antineoplastic strategy warrants further investigation."	"Characterization and Significance of Monocytes in Acute Stanford Type B Aortic Dissection. Acute aortic dissection (AAD) is one of the most common fatal diseases noted in vascular surgery. Human monocytes circulate in dynamic equilibrium and display a considerable heterogeneity. However, the role of monocytes in AAD remains elusive. In our recent study, we firstly obtained blood samples from 22 patients with Stanford type B AAD and 44 age-, sex-, and comorbidity-matched control subjects. And the monocyte proportions were evaluated by flow cytometry. Results showed that the percentage of total CD14<sup>+</sup> monocytes in the blood samples of Stanford AAD patients was increased significantly compared with that of normal volunteers (P &lt; 0.0005), and the absolute numbers of CD14<sup>bright</sup>CD16<sup>+</sup> and CD14<sup>bright</sup>CD16<sup>-</sup> monocytes both increased significantly regardless of the percentage of PBMC or CD14<sup>+</sup> cells, while CD14<sup>dim</sup>CD16<sup>+</sup> monocytes displayed the opposite tendency. However, the percentage of CD14<sup>+</sup> cells and its three subsets demonstrated no correlation with D-dimer (DD) and C-reactive protein (CRP). Then, blood mononuclear cell (PBMC) samples were collected by Ficoll density gradient centrifugation, followed with CD14<sup>+</sup> magnetic bead sorting. After the purity of CD14<sup>+</sup> cells was validated over 90%, AAD-related genes were concentrated in CD14<sup>+</sup> monocytes. There were no significant differences observed with regard to the mRNA expression levels of MMP1 (P = 0.0946), MMP2 (P = 0.3941), MMP9 (P = 0.2919), IL-6 (P = 0.4223), and IL-10 (P = 0.3375) of the CD14<sup>+</sup> monocytes in Stanford type B AAD patients compared with those of normal volunteers. The expression levels of IL-17 (P &lt; 0.05) was higher in Stanford type B AAD patients, while the expression levels of TIMP1(P&lt;0.05), TIMP2(P&lt;0.01), TGF-β1 (P &lt; 0.01), SMAD3 (P &lt; 0.01), ACTA2 (P &lt; 0.001), and ADAMTS-1 (P &lt; 0.001) decreased. The data suggested that monocytes might play an important role in the development of Stanford type B AAD. Understanding of the production, differentiation, and function of monocyte subsets might dictate future therapeutic avenues for Stanford type B AAD treatment and can aid the identification of novel biomarkers or potential therapeutic targets for decreasing inflammation in AAD."	"Actin Alpha 2 (ACTA2) Downregulation Inhibits Neural Stem Cell Migration through Rho GTPase Activation. Although neural stem cells (NSCs) could migrate towards lesions after central nervous system (CNS) injury, the migration ability always is restricted due to the disturbed composition and density of the adhesion ligands and extracellular matrix (ECM) gradient after CNS injury. To date, various methods have been developed to enhance NSC migration and a number of factors, which are affecting NSC migration potential, have been identified. Here, primary NSCs were cultured and the expression of actin alpha 2 (ACTA2) in NSCs was determined using reverse transcription polymerase chain reaction (RT-PCR) and immunostaining. Next, the role of ACTA2 in regulating NSC migration and the potential mechanism was explored. Our results demonstrated that ACTA2 expressed in NSCs. Meanwhile, downregulated ACTA2 using siRNA inhibited NSC migration through hindering actin filament polymerization via increasing RhoA expression and decreasing Rac1 expression. The present study might enrich the basic knowledge of ACTA2 in NSC migration and open an avenue for enhancing NSC migration potential, subsequently providing an intervention target for functional recovery after CNS injury."	"Broadening Drug Design and Targets to Tumor Microenvironment? Cancer-Associated Fibroblast Marker Expression in Cancers and Relevance for Survival Outcomes. Solid tumors have complex biology and structure comprising cancer cells, stromal cells, and the extracellular matrix. While most therapeutics target the cancer cells, recent data suggest that cancer cell behavior and response to treatment are markedly influenced by the tumor microenvironment (TME). In particular, the cancer-associated fibroblasts (CAFs) are the most abundant stromal cells, and play a significant contextual role in shaping tumor initiation, progression, and metastasis. CAFs have therefore emerged as part of the next-generation cancer drug design and discovery innovation strategy. We report here new findings on differential expression and prognostic significance of CAF markers in several cancers. We utilized two publicly available resources: The Cancer Genomic Atlas and Gene Expression Profiling Interactive Analysis. We examined the expression of CAF markers, ACTA2, S100A4, platelet-derived growth factor receptor-beta [PDGFR-β], CD10, and fibroblast activation protein-alpha (FAP-α), in tumor tissues versus the adjacent normal tissues. We found that CAF markers were differentially expressed in various different tumors such as colon, breast, and esophageal cancers and melanoma. No CAF marker is expressed in the same pattern in all cancers, however. Importantly, we report that patients with colon adenocarcinoma and esophageal carcinoma expressing high FAP-α and CD10, respectively, had significantly shorter overall survival, compared with those with low levels of these CAF markers (p &lt; 0.05). We call for continued research on TME biology and clinical evaluation of the CAF markers ACTA2, S100A4, PDGFR-β, CD10, and FAP-α in relation to prognosis of solid cancers in large population samples. An effective cancer drug design and discovery roadmap in the 21st century ought to be broadly framed, and include molecular targets informed by both cancer cell and TME variations."	"Dysregulated epidermal growth factor and tumor growth factor-beta receptor signaling through GFAP-ACTA2 protein interaction in liver fibrosis. Viral hepatitis is associated with high morbidity and mortality. Identification of biological pathways involved in hepatic fibrosis resulting from chronic hepatitis C are essential for better management of patients. Constructing the HCV-human protein interaction network through bioinformatics may enable us to discover diagnostic biological pathways. We investigated to identify dysregulated pathways and gene enrichment based on actin alpha 2 (ACTA2) and glial fibrillar acidic protein (GFAP) interaction network analysis in hepatic fibrosis. This is an in-silico study conducted at Ziauddin University from March,2019 to September 2019. Enrichment and protein-protein interaction (PPI) network analysis of the identified proteins: GFAP and ACTA2 along with their mapped gene data sets was performed using FunRich version 3.1.3. Biological pathway grouping showed enrichment of proteins (85.7%) in signalling pathway by epidermal growth factor receptor (EGFR) and Tumor growth factor (TGF)-beta Receptor followed by signaling by PDGF, FGFR and NGF (71.4%) (p &lt; 0.001). SRC, PRKACA, PRKCA and PRKCD were enriched in both EGFR and TGF-beta Signalling pathways. EGFR and TGF-beta signalling pathways were enriched in liver fibrosis. SRC, PRKACA, PRKCA and PRKCD were enriched and differentially expressed in both EGFR and TGF-beta signalling pathways."	"Kindlin-2 deficiency induces fatal intestinal obstruction in mice. Rationale: Smooth muscle-motility disorders are mainly characterized by impaired contractility and functional intestinal obstruction. Some of these cases are caused by genetic mutations of smooth muscle genes ACTA2, ACTG2, MYH11, MYLK and LMOD1. Still the etiology is complex and multifactorial and the underlying pathology is poorly understood. Integrin interaction protein Kindlin-2 is widely expressed in striated and smooth muscle cells (SMC). However, the function of Kindlin-2 in the smooth muscle remains elusive. Methods: We generated two mouse models using different cre promoter transgenic mice, Kindlin-2<sup>fl/fl</sup> SM22α-cre+ (cKO mice) and Kindlin-2<sup>fl/fl</sup>; MYH-cre+ (iKO mice). Embryos and adult tissues were prepared for hematoxylin and eosin (H&amp;E) staining, immunohistochemistry (IHC) and terminal deoxynucleotidyl transferase dUTP nick-end labeling (TUNEL) apoptosis assay. We investigated ultrastructure changes of mouse smooth muscle using transmission electron microscopy (TEM) and measured smooth muscle contractile force in mounting aortic and intestinal rings using the multiwire myograph system (DMT 620M). In addition, cell traction force microscopy (CTFM) was applied to observe the functional change of primary SMC after Kindlin-2 depletion by RNAi. Results: Depletion of Kindlin-2 encoding gene Fermt2 in embryonic smooth muscles leads to apoptosis, downregulates the key components of SMC, impairs smooth muscle development, and finally causes embryonic death at E14.5. Tamoxifen-induced Kindlin-2-specific knockout in adult mouse smooth muscle showed decreased blood pressure, intestinal hypoperistalsis, and eventually died of intestinal obstruction. Kindlin-2 depletion also leads to downregulated Myh11, α-SMA, and CNN, shortened myofilament, broken myofibrils, and impaired contractility of the smooth muscles in iKO mice. Mechanistically, loss of Kindlin-2 decreases Ca2<sup>+</sup> influx in primary vascular smooth muscle cells (PVSMC) by downregulating the expression of calcium-binding protein S100A14 and STIM1. Conclusion: We demonstrated that Kindlin-2 is essential for maintaining the normal structure and function of smooth muscles. Loss of Kindlin-2 impairs smooth muscle formation during embryonic development by inducing apoptosis and jeopardizes the contraction of adult smooth muscle by blocking Ca<sup>2+</sup> influx that leads to intestinal obstruction. Mice with Kindlin-2 depletion in adult smooth muscle could be a potent animal model of intestinal obstruction for disease research, drug treatment and prognosis."	"Expanding the cerebrovascular phenotype of the p.R258H variant in ACTA2 related hereditary thoracic aortic disease (HTAD). Heterozygous variants in smooth muscle alpha-actin gene (ACTA2) are the most frequent cause of autosomal dominant hereditary thoracic aortic disease (HTAD). Several genotype-phenotype associations have been described, including a severe multisystemic smooth muscle disorder associated with de novo ACTA2 p.R179 variants, characterized by highly penetrant and early onset vascular disease, involvement of smooth muscle cell (SMC)-dependent organs and a distinct cerebrovascular phenotype. Missense variants at position 258 (p.R258C and p.R258H) have also been reported to have a more severe presentation including an increased risk for aortic dissection and a high risk of stroke. It has previously been suggested that the cerebrovascular phenotype of patients with p.R258 variants could represent a mild presentation of the cerebrovascular phenotype associated with p.R179 variants. Here we report on a five generation HTAD family with the p.R258H variant and describe the cerebrovascular findings seen in three family members, to expand on the previously reported phenotype associated with variants at this codon."	"Aneurysmal Dilatation of Ductus Arteriosus and Pulmonary Artery in Association With ACTA2 Mutation. Actin α2 (ACTA2) is a protein crucial for proper functioning of contractile apparatus in smooth muscles. A specific mutation resulting in substitution of arginine at position 179 by histidine (p.R179 H) in ACTA2 has been shown to be associated with multisystemic smooth muscle dysfunction syndrome. Characteristic features include aneurysmal arterial disease. Due to rarity of this disease, we report a nine-year-old girl with this rare genetic variant in whom cardiovascular manifestations were identified in fetal life and who needed neonatal cardiac surgical intervention."	"A translational cellular model for the study of peritubular cells of the testis. Testicular peritubular cells (TPCs) are smooth muscle-like cells, which form a compartment surrounding the seminiferous tubules. Previous studies employing isolated human testicular peritubular cells (HTPCs) indicated that their roles in the testis go beyond sperm transport and include paracrine and immunological contributions. Peritubular cells from a non-human primate (MKTPCs), the common marmoset monkey, Callithrix jacchus, share a high degree of homology with HTPCs. However, like their human counterparts these cells age in vitro and replicative senescence limits in-depth functional or mechanistic studies. Therefore, a stable cellular model was established. MKTPCs of a young adult animal were immortalized by piggyBac transposition of human telomerase (hTERT), that is, without the expression of viral oncogenes. Immortalized MKTPCs (iMKTPCs) grew without discernable changes for more than 50 passages. An initial characterization revealed typical genes expressed by peritubular cells (androgen receptor (AR), smooth-muscle actin (ACTA2), calponin (CNN1)). A proteome analysis of the primary MKTPCs and the derived immortalized cell line confirmed that the cells almost completely retained their phenotype. To test whether they respond in a similar way as HTPCs, iMKTPCs were challenged with forskolin (FSK) and ATP. As HTPCs, they showed increased expression level of the StAR protein (StAR) after FSK stimulation, indicating steroidogenic capacity. ATP increased the expression of pro-inflammatory factors (e.g. IL1B; CCL7), as it is the case in HTPCs. Finally, we confirmed that iMKTPCs can efficiently be transfected. Therefore, they represent a highly relevant translational model, which allows mechanistic studies for further exploration of the roles of testicular peritubular cells."	"Proteome analysis of secretions from human monocyte-derived macrophages post-exposure to biomaterials and the effect of secretions on cardiac fibroblast fibrotic character. The use of exogenous biomolecules (BM) for the purpose of repairing and regenerating damaged cardiac tissue can yield serious side effects if used for prolonged periods. As well, such strategies can be cost prohibitive depending on the regiment and period of time applied. Alternatively, autologous monocytes/monocyte-derived macrophages (MDM) can provide a viable path towards generating an endogenous source of stimulatory BM. Biomaterials are often considered as delivery vehicles to generate unique profiles of such BM in tissues or to deliver autologous cells, that can influence the nature of BM produced by the cells. MDM cultured on a degradable polar hydrophobic ionic (D-PHI) polyurethane has previously demonstrated a propensity to increase select anti-inflammatory cytokines, and therefore there is good rationale to further investigate a broader spectrum of the cells' BM in order to provide a more complete proteomic analysis of human MDM secretions induced by D-PHI. Further, it is of interest to assess the potential of such BM to influence cells involved in the reparative state of vital tissues such as those that affect cardiac cell function. Hence, this current study examines the proteomic profile of MDM secretions using mass spectrometry for the first time, along with ELISA, following their culture on D-PHI, and compares them to two important reference materials, poly(lactic-co-glycolic acid) (PLGA) and tissue culture polystyrene (TCPS). Secretions collected from D-PHI cultured MDM led to higher levels of regenerative BM, AGRN, TGFBI and ANXA5, but lower levels of pro-fibrotic BM, MMP7, IL-1β, IL-6 and TNFα, when compared to MDM secretions collected from PLGA and TCPS. In the application to cardiac cell function, the secretion collected from D-PHI cultured MDM led to more human cardiac fibroblast (HCFs) migration. A lower collagen gel contraction induced by MDM secretions collected from D-PHI was supported by gene array analysis for human fibrosis-related genes. The implication of these findings is that more tailored biomaterials such as D-PHI, may lead to a lower pro-inflammatory phenotype of macrophages when used in cardiac tissue constructs, thereby enabling the development of vehicles for the delivery of interventional therapies, or be applied as coatings for sensor implants in cardiac tissue that minimize fibrosis. The general approach of using synthetic biomaterials in order to induce MDM secretions in a manner that will guide favorable regeneration will be critical in making the choice of biomaterials for tissue regeneration work in the future. STATEMENT OF SIGNIFICANCE: Immune modulation strategies currently applied in cardiac tissue repair are mainly based on the delivery of defined exogenous biomolecules. However, the use of such biomolecules may pose wide ranging systemic effects, thereby rendering them clinically less practical. The chemistry of biomaterials (used as a potential targeted delivery modality to circumvent the broad systemic effects of biomolecules) can not only affect acute and chronic toxicity but also alters the timeframe of the wound healing cascade. In this context, monocytes/monocyte-derive macrophages (MDM) can be harnessed as an immune modulating strategy to promote wound healing by an appropriate choice of the biomaterial. However, there are limited reports on the complete proteome analysis of MDM and their reaction of biomaterial related interventions on cardiac tissues and cells. No studies to date have demonstrated the complete proteome of MDM secretions when these cells were cultured on a non-traditional immune modulatory ionomeric polyurethane D-PHI film. This study demonstrated that MDM cultured on D-PHI expressed significantly higher levels of AGRN, TGFBI and ANXA5 but lower levels of MMP7, IL-1β, IL-6 and TNFα when compared to MDM cultured on a well-established degradable biomaterials in the medical field, e.g. PLGA and TCPS, which are often used as the relative standards for cell culture work in the biomaterials field. The implications of these findings have relevance to the repair of cardiac tissues. In another aspect of the work, human cardiac fibroblasts showed significantly lower contractility (low collagen gel contraction and low levels of ACTA2) when cultured in the presence of MDM secretions collected after culturing them on D-PHI compared to PLGA and TCPS. The findings place emphasis on the importance of making the choice of biomaterials for tissue engineering and regenerative medicine applied to their use in cardiac tissue repair."	"Characterization of the stem cell niche components within the seminiferous tubules in testicular biopsies of Klinefelter patients. To characterize the tubular environment in testicular biopsy tissues from patients with Klinefelter syndrome (KS). Observational immunohistochemical study. Academic research unit. Males with KS and controls at different developmental time points: fetal, prepubertal, peripubertal, and adult. Immunohistochemical analysis of testicular biopsies samples to characterize maturation of Sertoli cells and tubular wall components-peritubular myoid cells (PTMC) and extracellular matrix (ECM) proteins. Intensity of antimüllerian hormone staining; proportion of Sertoli cells expressing androgen receptor (AR); and expression of tubular wall markers as characterized by identifying abnormal staining patterns. Decreased expression for alpha smooth muscle actin 2 (ACTA2) was observed in peripubertal and adult KS as well as in Sertoli cell only (SCO) patients. Altered expression patterns for all ECM proteins were observed in SCO and KS biopsy tissues compared with controls. Only for collagen I and IV were altered expression patterns observed between KS and SCO patients. In peripubertal samples, no statistically significant differences were observed in the maturation markers, but altered ECM patterns were already present in some samples. The role of loss of ACTA2 expression in PTMC in the disintegration of tubules in KS patients should be further investigated. Future research is necessary to identify the causes of testicular fibrosis in KS patients. If the mechanism behind this fibrotic process could be identified, this process might be altered toward increasing the chances of fertility in KS patients."	"Disease Severity-Associated Gene Expression in Canine Myxomatous Mitral Valve Disease Is Dominated by TGFβ Signaling. Myxomatous mitral valve disease (MMVD) is the most common acquired canine cardiovascular disease and shares many similarities with human mitral valvulopathies. While transcriptomic datasets are available for the end-stage disease in both species, there is no information on how gene expression changes as the disease progresses, such that it cannot be stated with certainty if the changes seen in end-stage disease are casual or consequential. In contrast to humans, the disease in dogs can be more readily examined as it progresses, and this allows an opportunity for insight into disease pathogenesis relevant to both species. The aim of this study was to identify changes in valve gene expression as canine MMVD advances over an entire life-time, from normal (grade 0) to severely affected (grade 4), and differences in gene expression comparing normal and disease areas of the same valve. Transcriptomic profiling identified 1002 differentially expressed genes (DEGs) across all four disease grades when compared with normal valves with the greatest number of DEGs in grade 3 (673) and grade 4 (507). DEGs were associated with a large number of gene families, including genes encoding cytoskeletal filaments, peptidases, extra-cellular matrix (ECM) proteins, chemokines and integrins. Gene enrichment analysis identified significant grade-dependent changes in gene clustering, with clusters trending both up and down as disease progressed. Significant grade-dependent changes in hallmark disease gene expression intensity were identified, including ACTA2, HTR2B, MMP12, and CDKN2A. Gene Ontology terms were dominated by terms for ECM and inflammation with TGFβ1, TNF, IFGN identified as the top up-stream regulators in both whole and dissected diseased valve samples. These data show that while disease progression in MMVD is associated with increasing numbers of DEGs, TGFβ appears to be the dominant signaling pathway controlling pathogenesis irrespective of disease severity."	"Prediction of the Network Pharmacology-Based Mechanism for Attenuation of Atherosclerosis in Apolipoprotein E Knockout Mice by Panax notoginseng Saponins. This study investigated whether Panax notoginseng saponins (PNS) reduced atherosclerotic lesion formation in apolipoprotein E knockout (ApoE-KO) mice and illustrated the potential mechanism for a network pharmacology approach. Pharmacodynamics studies on ApoE-KO mice with atherosclerosis (AS) showed that PNS generated an obvious anti-AS action. Then, we explored the possible mechanisms underlying its anti-AS effect using the network pharmacology approach. The main chemical components and their targets of PNS were collected from TCMSP public database and SymMap. The STRING v11.0 was used to establish the protein-protein interactions of PNS. Furthermore, the Gene Ontology (GO) function and KEGG pathways were analyzed using STRING to investigate the possible mechanisms involved in the anti-AS effect of PNS. The predicted results showed that 27 potential targets regulated by DSLHG were related to AS, including ACTA2, AKT1, BCL2, and BDNF. Mechanistically, the anti-AS effect of PNS was exerted by interfering with multiple signaling pathways, such as AGE-RAGE signaling pathway, fluid shear stress and atherosclerosis, and TNF signaling pathway. Network analysis showed that PNS could generate the anti-AS action by affecting multiple targets and multiple pathways and provides a novel basis to clarify the mechanisms of anti-AS of PNS."	"Gene expression in human liver fibrosis associated with Echinococcus granulosus sensu lato. Liver fibrosis is a dynamic process that occurs in response to chronic liver disease resulting from factors such as chronic infections, autoimmune reactions, allergic responses, toxins, radiation, and infectious agents. Among the infectious agents, multicellular parasites cause chronic inflammation and fibrosis. Twenty-five patients with different stages of cystic echinococcosis (CE) were enrolled in the study. The expression of ACTA2, COL3A1, IFN-γ, MMP2, MMP9, TGF-β1, and TNF-α genes was determined by qRT-PCR in healthy and fibrotic liver tissue of the CE patients. TGF-β1 expression was evaluated by immunohistochemistry, and histology was conducted to assess the development of liver fibrosis. Expression of MMP9, ACTA2, COL3A1, and MMP2 was found significantly higher in the fibrotic tissue compared to healthy tissue. We observed a significant correlation between TGF-β1 and TNF-α gene expressions and liver fibrosis. The mRNA level of IFN-γ was lower in the fibrotic than in the healthy hepatic tissue. Immunohistochemistry analysis revealed TGF-β1 upregulation in the fibrotic tissue. Histology showed inflammation and fibrosis to be significantly higher in the fibrotic tissue. The findings of this study suggest that Echinococcus granulosussensu lato can promotes fibrosis through the overexpression of TGF-β1, MMP9, ACTA2, COL3A1, and MMP2. The downregulation of IFN-γ mRNA in fibrotic samples is probably due to the increased production of TGF-β1 and the suppression of potential anti-fibrotic role of IFN-γ during advanced liver injury caused by E. granulosussensu lato."	"Protective role of renal proximal tubular alpha-synuclein in the pathogenesis of kidney fibrosis. Kidney fibrosis is a highly deleterious process and a final manifestation of chronic kidney disease. Alpha-(α)-synuclein (SNCA) is an actin-binding neuronal protein with various functions within the brain; however, its role in other tissues is unknown. Here, we describe the expression of SNCA in renal epithelial cells and demonstrate its decrease in renal tubules of murine and human fibrotic kidneys, as well as its downregulation in renal proximal tubular epithelial cells (RPTECs) after TGF-β1 treatment. shRNA-mediated knockdown of SNCA in RPTECs results in de novo expression of vimentin and α-SMA, while SNCA overexpression represses TGF-β1-induced mesenchymal markers. Conditional gene silencing of SNCA in RPTECs leads to an exacerbated tubulointerstitial fibrosis (TIF) in two unrelated in vivo fibrotic models, which is associated with an increased activation of MAPK-p38 and PI3K-Akt pathways. Our study provides an evidence that disruption of SNCA signaling in RPTECs contributes to the pathogenesis of renal TIF by facilitating partial epithelial-to-mesenchymal transition and extracellular matrix accumulation."	"Efficient differentiation of vascular smooth muscle cells from Wharton's Jelly mesenchymal stromal cells using human platelet lysate: A potential cell source for small blood vessel engineering. The development of fully functional small diameter vascular grafts requires both a properly defined vessel conduit and tissue-specific cellular populations. Mesenchymal stromal cells (MSCs) derived from the Wharton's Jelly (WJ) tissue can be used as a source for obtaining vascular smooth muscle cells (VSMCs), while the human umbilical arteries (hUAs) can serve as a scaffold for blood vessel engineering. To develop VSMCs from WJ-MSCs utilizing umbilical cord blood platelet lysate. WJ-MSCs were isolated and expanded until passage (P) 4. WJ-MSCs were properly defined according to the criteria of the International Society for Cell and Gene Therapy. Then, these cells were differentiated into VSMCs with the use of platelet lysate from umbilical cord blood in combination with ascorbic acid, followed by evaluation at the gene and protein levels. Specifically, gene expression profile analysis of VSMCs for ACTA2, MYH11, TGLN, MYOCD, SOX9, NANOG homeobox, OCT4 and GAPDH, was performed. In addition, immunofluorescence against ACTA2 and MYH11 in combination with DAPI staining was also performed in VSMCs. HUAs were decellularized and served as scaffolds for possible repopulation by VSMCs. Histological and biochemical analyses were performed in repopulated hUAs. WJ-MSCs exhibited fibroblastic morphology, successfully differentiating into &quot;osteocytes&quot;, &quot;adipocytes&quot; and &quot;chondrocytes&quot;, and were characterized by positive expression (&gt; 90%) of CD90, CD73 and CD105. In addition, WJ-MSCs were successfully differentiated into VSMCs with the proposed differentiation protocol. VSMCs successfully expressed ACTA2, MYH11, MYOCD, TGLN and SOX9. Immunofluorescence results indicated the expression of ACTA2 and MYH11 in VSMCs. In order to determine the functionality of VSMCs, hUAs were isolated and decellularized. Based on histological analysis, decellularized hUAs were free of any cellular or nuclear materials, while their extracellular matrix retained intact. Then, repopulation of decellularized hUAs with VSMCs was performed for 3 wk. Decellularized hUAs were repopulated efficiently by the VSMCs. Biochemical analysis revealed the increase of total hydroyproline and sGAG contents in repopulated hUAs with VSMCs. Specifically, total hydroxyproline and sGAG content after the 1<sup>st</sup>, 2<sup>nd</sup> and 3<sup>rd</sup> wk was 71 ± 10, 74 ± 9 and 86 ± 8 μg hydroxyproline/mg of dry tissue weight and 2 ± 1, 3 ± 1 and 3 ± 1 μg sGAG/mg of dry tissue weight, respectively. Statistically significant differences were observed between all study groups (P &lt; 0.05). VSMCs were successfully obtained from WJ-MSCs with the proposed differentiation protocol. Furthermore, hUAs were efficiently repopulated by VSMCs. Differentiated VSMCs from WJ-MSCs could provide an alternative source of cells for vascular tissue engineering."	"The Glucocorticoid Receptor NR3C1 in Testicular Peritubular Cells is Developmentally Regulated and Linked to the Smooth Muscle-Like Cellular Phenotype. Whether glucocorticoids (GC) can directly affect human testicular functions is not well understood. A predominant site of GC receptor (GR; NR3C1) expression in the adult testis are peritubular smooth muscle-like cells, which express smooth muscle actin (ACTA2), contract and thereby are involved in sperm transport. In contrast to the adult, neither GR nor ACTA2, or elastin (ELN) were detected in the peritubular compartment before puberty in non-human primate testes. In isolated human testicular peritubular cells (HTPCs), activation of GR by dexamethasone (Dex) caused the translocation of GR to the nucleus and stimulated expression of ACTA2 and ELN, without affecting the expression of collagens. Cytoskeletal ACTA2-rearrangements were observed and were associated with an increased ability to contract. Our results indicate post-pubertal testicular roles of GC in the maintenance of the contractile, smooth muscle-like phenotype of peritubular cells."	"Identification of clinically relevant variants by whole exome sequencing in Chinese patients with sporadic non-syndromic type A aortic dissection. Thoracic aortic aneurysm and dissection (TAAD) is a life-threatening disease, of which genetic abnormalities are considered as important risk factors. The present research aims at identifying causal variants in Chinese patients with sporadic non-syndromic type A TAAD (ATAAD). Whole exome sequencing (WES) was performed on 73 sporadic Chinese patients with ATAAD, 30 TAAD associated genes were curated for bioinformatic analyses. Clinical differences were compared between patients with and without causal variants. 15 pathogenic/likely pathogenic variants were identified (8 novel and 7 previously described) in 4 known TAAD-causal genes (FBN1, TGFBR2, SMAD3 and ACTA2) in 15 individuals, including 11 variants in FBN1 (7 missense, 3 truncating, and 1 splicing variants), 2 missense variants in TGFBR2, 1 ACTA2 frameshift variant and 1 SMAD3 frameshift variant. Significant clinical differences were found between patients with and without causal variants. Patients with TAAD-causal variants proved to have an earlier onset age, a more dilated aorta, and relatively intractable subtypes. Even without risk factor like hypertension, they might still suffer from TAAD with TAAD-causal variants. The variants identified in our research might not only result in the occurrence of ATAAD, but also add complexities and difficulties to the clinical practice. Our data demonstrated that WES was an effective tool for determining genetic etiologies of non-syndromic ATAAD and could be helpful in genetic counseling for ATAAD patients and their at-risk family members."	"Impact of maternal obesity on placental transcriptome and morphology associated with fetal growth restriction in mice. In utero exposure to obesity is consistently associated with increased risk of metabolic disease, obesity and cardiovascular dysfunction in later life despite the divergence of birth weight outcomes. The placenta plays a critical role in offspring development and long-term health, as it mediates the crosstalk between the maternal and fetal environments. However, its phenotypic and molecular modifications in the context of maternal obesity associated with fetal growth restriction (FGR) remain poorly understood. Using a mouse model of maternal diet-induced obesity, we investigated changes in the placental transcriptome through RNA sequencing (RNA-seq) and Ingenuity Pathway Analysis (IPA) at embryonic day (E) 19. The most differentially expressed genes (FDR &lt; 0.05) were validated by Quantitative real-time PCR (qPCR) in male and female placentae at E19. The expression of these targets and related genes was also determined by qPCR at E13 to examine whether the observed alterations had an earlier onset at mid-gestation. Structural analyses were performed using immunofluorescent staining against Ki67 and CD31 to investigate phenotypic outcomes at both timepoints. RNA-seq and IPA analyses revealed differential expression of transcripts and pathway interactions related to placental vascular development and tissue morphology in obese placentae at term, including downregulation of Muc15, Cnn1, and Acta2. Pdgfb, which is implicated in labyrinthine layer development, was downregulated in obese placentae at E13. This was consistent with the morphological evidence of reduced labyrinth zone (LZ) size, as well as lower fetal weight at both timepoints irrespective of offspring sex. Maternal obesity results in abnormal placental LZ development and impaired vascularization, which may mediate the observed FGR through reduced transfer of nutrients across the placenta."	"Peroxisome proliferator-activated receptor γ inhibits hepatic stellate cell activation regulated by miR-942 in chronic hepatitis B liver fibrosis. Liver fibrosis is a chronic liver disease characterized by hepatic stellate cell (HSC) activation. Peroxisome proliferator-activated receptor gamma (PPARγ) play an important role in HSC activation. This study aimed to investigate the role of PPARγ in the progression of human hepatic fibrosis and the mechanism by which microRNA-942 regulates HSC activation. 70 chronic hepatitis B (CHB) patients liver tissues were used to assess PPARγ, α-SMA and miR-942 levels by immunoblot and real-time PCR. Human primary HSCs or LX2 cells were used to perform multiple molecular experiments based on the transfection of small interfering RNA (siRNA) or co-transfection of microRNA inhibitor. Site-directed mutagenesis and luciferase reporter assays were used to identify miR-942 targets. miR-942 expression and localization in hepatic fibrosis and co-localization between α-SMA were determined by fluorescence in situ hybridization (FISH). The mRNA expression of PPARγ was decreased in activated HSCs and CHB patients with liver fibrosis, which was negatively correlated with F stage and α-SMA. miR-942 negatively regulates PPARγ expression via targeting the PPARγ 3'UTR. Inhibiting PPARγ promoted TGFβ1 induced HSC activation, and this effect was blocked after inhibiting the miR-942. Moreover, miR-942 was mainly expressed in fibrous septa and negatively correlated with PPARγ in liver fibrosis. PPARγ targeting by miR-942 and decreasing HSC activation in human hepatic fibrosis. Hence, regulating PPARγ may be a promising therapeutic strategy for hepatic fibrosis."	"High-grade mesenchymal pancreatic ductal adenocarcinoma drives stromal deactivation through CSF-1. Pancreatic ductal adenocarcinoma (PDAC) is characterized by an abundance of stroma. Multiple molecular classification efforts have identified a mesenchymal tumor subtype that is consistently characterized by high-grade growth and poor clinical outcome. The relation between PDAC stroma and tumor subtypes is still unclear. Here, we aimed to identify how PDAC cells instruct the main cellular component of stroma, the pancreatic stellate cells (PSCs). We found in primary tissue that high-grade PDAC had reduced collagen deposition compared to low-grade PDAC. Xenografts and organotypic co-cultures established from mesenchymal-like PDAC cells featured reduced collagen and activated PSC content. Medium transfer experiments using a large set of PDAC cell lines revealed that mesenchymal-like PDAC cells consistently downregulated ACTA2 and COL1A1 expression in PSCs and reduced proliferation. We identified colony-stimulating factor 1 as the mesenchymal PDAC-derived ligand that deactivates PSCs, and inhibition of its receptor CSF1R was able to counteract this effect. In conclusion, high-grade PDAC features stroma that is low in collagen and activated PSC content, and targeting CSF1R offers direct options to maintain a tumor-restricting microenvironment."	"Proteomics analysis of zebrafish larvae exposed to 3,4-dichloroaniline using the fish embryo acute toxicity test. The zebrafish (Danio rerio) is a small teleost fish that is becoming increasingly popular in laboratories worldwide and several attributes have also placed the zebrafish under the spotlight of (eco)toxicological studies. Since the 1990s, international organizations such as ISO and OECD have published guidelines for the use of zebrafish in ecotoxicological assessment of environmental toxicants such as the Fish Embryo Acute Toxicity (FET) test, OECD n° 236 guideline. This protocol uses 3,4-dichloroaniline (DCA), an aniline pesticide whose toxicity to fish species at early life stages is well known, as a positive control. Despite its use, little is known about its molecular mechanisms, especially in the context of the FET test. Therefore, this study aimed to investigate such changes in zebrafish larvae exposed to DCA (4 mg/L) for 96 hours using gel-free proteomics. Twenty-four proteins detected in both groups were identified as significantly affected by DCA exposure, and, when considering group-specific entities, 48 proteins were exclusive to DCA (group-specific proteins) while 248 were only detected in the control group. Proteins modulated by DCA treatment were found to be involved in metabolic processes, especially lipids and hormone metabolism (eg, Apoa1 and Apoa1b and vitelogenins), as well as proteins important for developmental processes and organogenesis (eg, Myhc4, Acta2, Sncb, and Marcksb). The results presented here may therefore provide a better understanding of the relationships between molecular changes and phenotype in zebrafish larvae treated with DCA, the reference compound of the FET test."	"TBK1 regulates YAP/TAZ and fibrogenic fibroblast activation. Idiopathic pulmonary fibrosis (IPF) results in scarring of the lungs by excessive extracellular matrix (ECM) production. Resident fibroblasts are the major cell type involved in ECM deposition. The biochemical pathways that facilitate pathological fibroblast activation leading to aberrant ECM deposition are not fully understood. Tank binding protein kinase-1 (TBK1) is a kinase that regulates multiple signaling pathways and was recently identified as a candidate regulator of fibroblast activation in a large-scale small-interfering RNA (siRNA) screen. To determine the effect of TBK1 on fibroblast activation, TBK1 was inhibited pharmacologically (MRT-68601) and genetically (siRNA) in normal and IPF human lung fibroblasts. Reducing the activity or expression of TBK1 led to reduction in α-smooth muscle actin stress fiber levels by 40-60% and deposition of ECM components collagen I and fibronectin by 50% in TGF-β-stimulated normal and IPF fibroblasts. YAP and TAZ are homologous mechanoregulatory profibrotic transcription cofactors known to regulate fibroblast activation. TBK1 knockdown or inhibition decreased the total and nuclear protein levels of YAP/TAZ. Additionally, low cell-cell contact and increased ECM substrate stiffness augmented the phosphorylation and activation of TBK1, consistent with cues that regulate YAP/TAZ. The action of TBK1 toward YAP/TAZ activation was independent of LATS1/2 and canonical downstream TBK1 signaling mediator IRF3 but dependent on proteasomal machinery of the cell. This study identifies TBK1 as a fibrogenic activator of human pulmonary fibroblasts, suggesting TBK1 may be a novel therapeutic target in pulmonary fibrosis."	"Sequencing and characterization of miRNAs and mRNAs from the longissimus dorsi of Xinjiang brown cattle and Kazakh cattle. Breed improvement is an important genetic process affecting meat quality. Compared with Kazakh cattle, Xinjiang brown cattle have significantly improved carcass quality and meat quality. To elucidate the molecular mechanisms underlying the improvements in Xinjiang brown cattle and the differences in beef quality between the two breeds, we used RNA-Seq to study differentially expressed genes and miRNAs and regulatory pathways related to adipogenesis, myogenesis and fibrogenesis in the longissimus dorsi muscles of Xinjiang brown cattle and Kazakh cattle. The results showed that 1669 genes were differentially expressed in the longissimus dorsi muscle tissues of Xinjiang brown cattle and Kazakh cattle; 879 genes were upregulated and 790 genes were downregulated in Xinjiang brown cattle compared to Kazakh cattle. These genes were mainly involved in PPAR signaling, unsaturated fatty acid biosynthesis and vascular smooth muscle contraction. Additionally, 346 differentially expressed miRNAs were identified, of which 265 miRNAs were downregulated and 81 miRNAs were upregulated in Xinjiang brown cattle compared to Kazakh cattle. Association analysis of the differentially expressed genes and miRNAs revealed that 86 differentially expressed miRNAs related to adipogenesis were associated with 31 differentially expressed genes, 76 differentially expressed miRNAs associated with myogenesis were associated with 28 differentially expressed genes, and 54 differentially expressed miRNAs associated with fibrogenesis were associated with 19 differentially expressed genes. miRNA-target gene networks were also constructed. Finally, the expression levels of 19 genes and miRNAs were verified by qRT-PCR. Some differentially expressed genes, including FABP4, ACTA2 and ACTG2, were shown to play an important role in beef meat quality. This is the first study to perform transcriptomic analysis of muscle tissues from Xinjiang brown and Kazakh cattle."	"Pantoea agglomerans chronic exposure induces epithelial-mesenchymal transition in human lung epithelial cells and mice lungs. Pantoea agglomerans is gram-negative bacteria widely distributed in nature. It predominates in inhalable dust from grain, herbs, and flax, and was identified as the most important cause of hypersensitivity pneumonitis (HP) in eastern Poland. To better understand the molecular mechanism of HP development studies focused on the interactions between P. agglomerans and alveolar epithelial cells as well as lung tissue with particular emphasis on the epithelial-mesenchymal transition (EMT). The studies were conducted on human normal lung epithelial NL20 cells and mice strain C57BL/6J. Cells and mice underwent chronic exposure to saline extract of P. agglomerans (SE-PA). Morphological changes were evaluated under light microscopy, the concentration of fibrosis markers was examined by the ELISA method, while the expression of genes involved in EMT was evaluated by RealTime PCR. During incubation with SE-PA epithelial cells underwent conversion and assumed fibroblast phenotype characterized by a decrease in epithelial cells markers (CDH1, CLDN1, JUP) and increase in mesenchymal cells markers (FN1, VIM, CDH2). Mice lungs collected after 14 days of SE-PA treatment revealed inflammation with marked lymphocytes infiltration. The intensified inflammatory process accompanied by increased proliferation of fibrous connective tissue was noted in mice lungs after 28 days of SE-PA exposure. Histological changes correlated with an increase of fibrosis markers (hydroxyproline, collagens), downregulation of epithelial markers (Cdh1, Cldn1, Jup, Ocln) and upregulation of myofibroblasts markers (Acta2, Cdh2, Fn1, Vim). Obtained results revealed SE-PA ability to induce EMT in human lung epithelial cells and mice lung tissue, with the scale of changes proportional to the time of treatment."	"[Effect of high expression of type Ⅰ collagen α1 chain protein on the prognosis of triple negative breast cancer]. Objective: To investigate the expression of type Ⅰ collagen α1 chain protein (COL1A1) in triple negative breast cancer (TNBC), and its relationship with clinicopathological features and prognosis of TNBC. Methods: A total of 148 TNBC specimens were collected from the Affiliated Cancer Hospital of Xinjiang Medical University from 2013 to 2015. The mRNA expression of COL1A1 was detected by fluorescence quantitative RT-PCR and the protein expression of COL1A1 was detected by Western blot. The expression of COL1A1 and α-smooth muscle actin (α-SMA) in TNBC were detected by immunohistochemistry. The relationship between the expression of COL1A1 and clinicopathological parameters and prognosis of TNBC patients was analyzed. Results: The mRNA and protein expression of COL1A1 in MDA-MB-231 cells were 1.696±0.486 and 0.550±0.088, respectively, which were higher than those in MCF-10A cells (1.020±0.231 and 0.350±0.083, P=0.032, P=0.046). The mRNA and protein expression of COL1A1 in TNBC tissues were 1.632 ±0.598 and 0.733 ±0.068, respectively, which were higher than those in paracancerous tissues (1.041±0.316 and 0.612±0.016, P=0.003, P=0.039). The high expression rates of COL1A1 and α-SMA in TNBC tissues were 35.8% and 56.7% respectively, which were higher than those in paracancerous tissues (16.7% and 30.0%, P=0.041, P=0.037). The expression of COL1A1 was correlated with tumor size, TNM stage, lymph node metastasis, vascular invasion and α-SMA expression (all P&lt;0.05). The median survival time in COL1A1 high expression group was 64 months, which was lower than that in low expression group (73 months, P&lt;0.05). Multivariate analysis of Cox proportional hazard regression model showed that COL1A1 expression was an independent influencing factor for the survival of TNBC patients (HR=3.952, P=0.004). Conclusion: The high expression of COL1A1 in TNBC is an independent prognostic factor of TNBC patients. 目的: 了解Ⅰ型胶原蛋白α1链(COL1A1)在三阴性乳腺癌(TNBC)组织中的表达,探讨其与TNBC临床病理特征及患者预后的关系。 方法: 收集TNBC手术标本148例,采用实时荧光定量聚合酶链反应检测COL1A1的mRNA表达,采用Western blot法检测COL1A1的蛋白表达,采用免疫组化法检测COL1A1和α-平滑肌肌动蛋白(α-SMA)的表达状态,分析COL1A1表达状态与TNBC患者临床病理特征和预后的关系。 结果: MDA-MB-231细胞中COL1A1的mRNA和蛋白表达量分别为1.696±0.486和0.550±0.088,均高于MCF-10A细胞(分别为1.020±0.231和0.350±0.083;P=0.032,P=0.046)。TNBC组织中COL1A1的mRNA和蛋白表达量分别为1.632±0.598和0.733±0.068,均高于癌旁组织(分别为1.041±0.316和0.612±0.016;P=0.003,P=0.039)。TNBC组织COL1A1和α-SMA的高表达率分别为35.8%和56.7%,均高于癌旁组织(分别为16.7%和30.0%;P=0.041,P=0.037)。COL1A1的表达与TNBC的肿瘤大小、TNM分期、淋巴结转移、脉管侵犯、α-SMA表达有关(均P&lt;0.05)。COL1A1高表达组患者的中位生存时间为64个月,低于低表达组(73个月,P&lt;0.05)。Cox比例风险回归模型多因素分析显示,COL1A1表达是TNBC患者生存的独立影响因素(HR=3.952,P=0.004)。 结论: COL1A1在TNBC组织中高表达,是TNBC患者预后的独立影响因素。."	"Reduction of arthrofibrosis utilizing a collagen membrane drug-eluting scaffold with celecoxib and subcutaneous injections with ketotifen. The dense formation of abnormal scar tissue after total knee arthroplasty results in arthrofibrosis, an unfortunate sequela of inflammation. The purpose of this study was to use a validated rabbit model to assess the effects on surgically-induced knee joint contractures of two combined pharmacological interventions: celecoxib (CXB) loaded on an implanted collagen membrane, and subcutaneously (SQ) injected ketotifen. Thirty rabbits were randomly divided into five groups. The first group received no intervention after the index surgery. The remaining four groups underwent intra-articular implantation of collagen membranes loaded with or without CXB at the time of the index surgery; two of which were also treated with SQ ketotifen. Biomechanical joint contracture data were collected at 8, 10, 16, and 24 weeks. At the time of necropsy (24 weeks), posterior capsule tissue was collected for messenger RNA and histopathologic analyses. At 24 weeks, there was a statistically significant increase in passive extension among rabbits in all groups treated with CXB and/or ketotifen compared to those in the contracture control group. There was a statistically significant decrease in COL3A1, COL6A1, and ACTA2 gene expression in the treatment groups compared to the contracture control group (P &lt; .001). Histopathologic data also demonstrated a trend towards decreased fibrous tissue density in the CXB membrane group compared to the vehicle membrane group. The present data suggest that intra-articular placement of a treated collagen membrane blunts the severity of contracture development in a rabbit model of arthrofibrosis, and that ketotifen and CXB may independently contribute to the prevention of arthrofibrosis. Statement of clinical significance: Current literature has demonstrated that arthrofibrosis may affect up to 5% of primary total knee arthroplasty patients. For that reason, novel pharmacologic prophylaxis and treatment modalities are critical to mitigating reoperations and revisions while improving the quality of life for patients with this debilitating condition."	"Deregulation of miR-27a may contribute to canine fibroblast activation after coculture with a mast cell tumour cell line. The tumour microenvironment comprises a diverse range of cells, including fibroblasts, immune cells and endothelial cells, along with extracellular matrix. In particular, fibroblasts are of significant interest as these cells are reprogrammed during tumorigenesis to become cancer-associated fibroblasts (CAFs), which in turn support cancer cell growth. MicroRNAs (miRNAs) have been shown to be involved in this intercellular crosstalk in humans. To assess whether miRNAs are also involved in the activation of fibroblasts in dogs, we cocultured primary canine skin fibroblasts with the canine mast cell tumour cell line C2 directly or with C2-derived exosomes, and measured differential abundance of selected miRNAs. Expression of the CAF markers alpha-smooth muscle actin (ACTA2) and stanniocalcin 1 confirmed the activation of our fibroblasts after coculture. We show that fibroblasts displayed significant downregulation of miR-27a and let-7 family members. These changes correlated with significant upregulation of predicted target mRNAs. Furthermore, RNA interference knockdown of miR-27a revealed that cyclin G1 (CCNG1) exhibited negative correlation at the mRNA and protein level, suggesting that CCNG1 is a target of miR-27a in canine fibroblasts and involved in their activation. Importantly, miR-27a knockdown itself resulted in fibroblast activation, as demonstrated by the formation of ACTA2 filaments. In addition, interleukin-6 (IL-6) was strongly induced in our fibroblasts when cocultured, indicating potential reciprocal signalling. Taken together, our findings are consistent with canine fibroblasts being reprogrammed into CAFs to further support cancer development and that downregulation of miR-27a may play an important role in the tumour-microenvironment crosstalk."	"High-resolution iris and retinal imaging in multisystemic smooth muscle dysfunction syndrome due to a novel Asn117Lys substitution in ACTA2: a case report. Congenital mydriasis and retinal arteriolar tortuosity are associated with the life-threatening multisystemic smooth muscle dysfunction syndrome (MSMDS) due to mutations in the gene, ACTA2, which encodes alpha-smooth muscle actin (α-SMA). Previous reports attributed MSMDS-related congenital mydriasis to the absence of iris sphincter muscle. Similarly, it has been hypothesized that abnormal proliferation of the vascular smooth muscle cells causes the marked tortuosity of retinal arterioles in MSMDS. In this report, high-resolution ocular imaging reveals unexpected findings that reject previous hypotheses. The proband is a 37-year-old female with a history of neonatal patent ductus arteriosus (PDA) ligation, left-sided choreiform movements at the age of 11 and a transient aphasia with right-sided weakness at the age of 30. Her older sister also had PDA ligation and congenital mydriasis but no neurological deficit up to age 41. Magnetic resonance angiogram demonstrated cerebrovascular lesions resembling but distinct from Moyamoya disease, characterised by internal carotid artery dilatation, terminal segment stenosis and absent basal collaterals. Their mother had poorly reactive pupils with asymptomatic cerebral arteriopathy resembling her daughters. All three had prominent retinal arteriolar tortuosity. The daughters were heterozygous and the mother was a somatic mosaic for a novel c.351C &gt; G (p.Asn117Lys) transversion in ACTA2. Iris optical coherence tomography (OCT) showed a hyporeflective band anterior to the pigment epithelium indicating the presence of dysfunctional sphincter muscle. Adaptive optics retinal imaging showed no thickening of the arteriolar vessel wall whilst OCT angiography showed extreme corkscrew course of arterioles suggesting vessel elongation. In addition to the known association between Met46, Arg179 and Arg258 substitutions and ACTA2-related arteriopathy, this case illustrates the possibility that Asn117 also plays an important role in α-SMA function within the cerebrovascular smooth muscle cell. MSMDS-related congenital mydriasis is due to reduced iris sphincter contractility rather than its absence. Retinal arteriolar tortuosity might be due to longitudinal proliferation of arteriolar smooth muscle cells. The described cerebrovascular and ocular signs are consistent with predicted effects of the novel Asn117Lys substitution in ACTA2."	"Placental extract ameliorates liver fibrosis in a methionine- and choline-deficient diet-induced mouse model of non-alcoholic steatohepatitis. Non-alcoholic steatohepatitis (NASH) is a severe form of fatty liver disease that is defined by the presence of inflammation and fibrosis, which ultimately leads to cirrhosis and hepatocellular carcinoma. We previously showed that human placental extract (hPE) was intramuscularly injected to ameliorates liver injury in a methionine- and choline-deficient (MCD) diet-induced NASH model. In the present study, we investigated the effects of hPE using dB/dB mice which exhibit obesity and insulin resistance and are thought to reproduce the pathological background of NASH. The MCD-diet induced liver atrophy accompanied by fibrosis around the liver sinusoids. hPE dose-dependently reduced the perivascular fibrosis. Moreover, αSMA-positive activated hepatic stellate cells increased in number in mice on the MCD diet, with this effect reversed by hPE treatment. hPE significantly decreased expression of Acta2, Col1a1, and Tgfb1 genes in hepatic stellate cells, and inhibited Smad phosphorylation. Moreover, hPE treatment increased the expression of the anti-oxidative genes Hmox1, Nqo1, Cat, and Sod1, and significantly enhanced nuclear factor erythroid 2-related factor 2 activity. Furthermore, hPE decreased the expression of Nox4 and attenuated the levels of intracellular reactive oxygen species. These results, along with our previous study, suggest that hPE effectively ameliorates liver fibrosis in NASH. This beneficial effect may, in part, be due to suppression of hepatic stellate cell activation."	"Chitosan-caseinate-dextran ternary complex nanoparticles for potential oral delivery of astaxanthin with significantly improved bioactivity. Astaxanthin (ASTX) has been reported as a potential therapeutic agent for hepatic fibrosis treatment. However, its therapeutic effect is limited due to low bioavailability and poor aqueous solubility. In this study, biopolymer-based nanoparticles were fabricated using stearic acid-chitosan conjugate (SA-CS) and sodium caseinate (NaCas) via ionic gelation. Its nanostructure was cross-linked using oxidized dextran (Odex) via Schiff base reaction. Concentration of cross-linker, cross-linking temperature and time were systematically optimized by response surface methodology (RSM) to achieve superior particulate properties and colloidal stability. The optimized nanoparticles exhibited a diameter of 120 nm with homogeneous size distribution. A good ASTX encapsulation capacity with up to 6% loading ratio and high encapsulation efficiency was obtained. The final ASTX concentration in nanoparticles was 140 μM. The aqueous dispersibility of encapsulated ASTX was greatly improved, which was confirmed by significantly increased ABTS radical scavenging capacity. Compared to the anti-fibrogenic effect of free ASTX in LX-2 cells, the encapsulated ASTX demonstrated dramatically enhanced cellular bioactivity, as evidenced by significantly lower TGFβ1-induced fibrogenic gene (ACTA2 and COL1A1) expression level, as well as α-SMA and COL1A1 protein levels. This study suggests that the as-prepared biopolymer nanoparticles hold promising features as an oral delivery vehicle for lipophilic bioactives."	"Cardiac-specific inactivation of Prdm16 effects cardiac conduction abnormalities and cardiomyopathy-associated phenotypes. A variant in the PRDM16 locus has been correlated with QRS duration in an electrocardiogram genome-wide association study, and the deletion of PRDM16 has been implicated as a causal factor of the dilated cardiomyopathy that is linked to 1p36 deletion syndrome. We aimed to determine how a null mutation of Prdm16 affects cardiac function and study the underlying mechanism of the resulting phenotype in an appropriate mouse model. We used cardiac-specific Prdm16 conditional knockout mice to examine cardiac function by electrocardiography. QRS duration and QTc interval increased significantly in cardiac-specific Prdm16 knockout animals compared with wild-type mice. Further, we assessed cardiomyopathy-associated features by trichrome staining, densitometry, and hydroxyproline assay. Prdm16-null hearts showed greater fibrosis and cardiomyocyte hypertrophy. By quantitative real-time PCR, Prdm16-null hearts upregulated extracellular matrix-related genes (Ctgf, Timp1) and α-smooth muscle actin (Acta2), a myofibroblast marker. Moreover, TGF-β signaling was activated in Prdm16-null hearts, as evidenced by increased Tgfb1-3 transcript levels and phosphorylated Smad2. However, the inhibition of TGF-β receptor did not reverse the aberrations in conduction in cardiac-specific Prdm16 knockout mice. To determine the underlying mechanisms, we performed RNA-seq using mouse left ventricular tissue. By functional analysis, Prdm16-null hearts experienced dysregulated expression of ion channel genes, including Kcne1, Scn5a, Cacna1h, and Cacna2d2. Mice with Prdm16-null hearts develop abnormalities in cardiac conduction and cardiomyopathy-associated phenotypes, including fibrosis and cellular hypertrophy. Further, the RNA-seq findings suggest that impairments in ion homeostasis (Ca<sup>2+</sup>, K<sup>+</sup>, and Na<sup>+</sup>) may at least partially underlie the abnormal conduction in cardiac-specific Prdm16 knockout mice.NEW &amp; NOTEWORTHY This is the first study that describes aberrant cardiac function and cardiomyopathy-associated phenotypes in an appropriate murine genetic model with cardiomyocyte-specific Prdm16-null mutation. It is noteworthy that the correlation of PRDM16 with QRS duration is replicated in a murine animal model and the potential underlying mechanism may be the impairment of ion homeostasis."	"Intracranial Vessel Stenosis in a Young Patient with an MYH11 Mutation: A Case Report and Review of 2 Prior Cases. The MYH11 gene codes for smooth muscle myosin heavy chain, which has a critical function in maintaining vascular wall stability. Patients with this mutation most commonly have aortic and cardiac defects. Documented involvement of intracranial vessels is exceptional. A 29-year-old woman with a history of patent ductus arteriosus and aortic dissection was found to have incidental bilateral stenosis of the terminal internal carotid arteries as well as the proximal anterior cerebral arteries, middle cerebral arteries, and posterior cerebral arteries on magnetic resonance angiography that was obtained for unrelated symptoms. There was no evidence of basal collateral formation, and a generalized straightening of the vessels was observed. These angiographic findings have been typically observed in patients with ACTA2 mutations. Thus, genetic testing was pursued, which uncovered the presence of an MYH11 mutation. Follow-up imaging at 51 months demonstrated that the intracranial stenosis remained stable without evidence of basal collateral formation. She did not experience any neurologic events during the follow-up interval. Intracranial vessel involvement in patients with MYH11 mutations is rare. Vigilant cerebrovascular monitoring should be practiced in this population to guide appropriate management. Reporting of similar cases is important to improve understanding of the development of idiopathic intracranial stenosis in young individuals."	"Angiocrine FSTL1 (Follistatin-Like Protein 1) Insufficiency Leads to Atrial and Venous Wall Fibrosis via SMAD3 Activation. Angiocrine factors, mediating the endothelial-mural cell interaction in vascular wall construction as well as maintenance, are incompletely characterized. This study aims to investigate the role of endothelial cell-derived FSTL1 (follistatin-like protein 1) in vascular homeostasis. Approach and Results: Using conditional knockout mouse models, we show that loss of FSTL1 in endothelial cells (Fstl1<sup> ECKO </sup>) led to an increase of pulmonary vascular resistance, resulting in the heart regurgitation especially with tricuspid valves. However, this abnormality was not detected in mutant mice with Fstl1 knockout in smooth muscle cells or hematopoietic cells. We further showed that there was excessive αSMA (α-smooth muscle actin) associated with atrial endocardia, heart valves, veins, and microvessels after the endothelial FSTL1 deletion. There was also an increase in collagen deposition, as demonstrated in livers of Fstl1<sup> ECKO </sup> mutants. The SMAD3 (mothers against decapentaplegic homolog 3) phosphorylation (pSMAD3) was significantly enhanced, and pSMAD3 staining was colocalized with αSMA in vein walls, suggesting the activation of TGFβ (transforming growth factor β) signaling in vascular mural cells of Fstl1<sup> ECKO </sup> mice. Consistently, treatment with a TGFβ pathway inhibitor reduced the abnormal association of αSMA with the atria and blood vessels in Fstl1<sup> ECKO </sup> mutant mice. The findings imply that endothelial FSTL1 is critical for the homeostasis of vascular walls, and its insufficiency may favor cardiovascular fibrosis leading to heart failure."	"Loss of smooth muscle α-actin effects on mechanosensing and cell-matrix adhesions. NA"	"Silica Perturbs Primary Cilia and Causes Myofibroblast Differentiation during Silicosis by Reduction of the KIF3A-Repressor GLI3 Complex. The purpose of this study was to determine the effects of Kinesin family member 3A (KIF3A) on primary cilia and myofibroblast differentiation during silicosis by regulating Sonic hedgehog (SHH) signalling. Methods: Changes in primary cilia during silicosis and myofibroblast differentiation were detected in silicotic patients, experimental silicotic rats, and a myofibroblast differentiation model induced by SiO2. We also explored the mechanisms underlying KIF3A regulation of Glioma-associated oncogene homologs (GLIs) involved in myofibroblast differentiation. Results: Primary cilia (marked by ARL13B and Ac-α-Tub) and ciliary-related proteins (IFT 88 and KIF3A) were increased initially and then decreased as silicosis progressed. Loss and shedding of primary cilia were also found during silicosis. Treatment of MRC-5 fibroblasts with silica and then transfection of KIF3A-siRNA blocked activation of SHH signalling, but increased GLI2<sup>FL</sup> as a transcriptional activator of SRF, and reduced the inhibitory effect of GLI3<sup>R</sup> on ACTA2. Conclusion: Our findings indicate that primary cilia are markedly altered during silicosis and the loss of KIF3A may promote myofibroblast differentiation induced by SiO2."	"Diminished CD68<sup>+</sup> Cancer-Associated Fibroblast Subset Induces Regulatory T-Cell (Treg) Infiltration and Predicts Poor Prognosis of Oral Squamous Cell Carcinoma Patients. Although cancer-associated fibroblasts (CAFs) are crucial stromal cells, characterizing their heterogeneity is far from complete. This study reports a novel subset of CAFs in oral squamous cell carcinoma (OSCC), which positively expressed CD68, the classic marker of macrophages. The spatial and temporal distribution of the CD68<sup>+</sup> CAF subset of OSCC (n = 104) was determined by CD68/actin alpha 2, smooth muscle (ACTA2+; α-SMA) immunohistochemistry of serial sections. The CD68<sup>+</sup> α-SMA<sup>+</sup> CAF subset was elevated from dysplasia to OSCC. Moreover, although both the tumor center and invasive front harbor an abundant CD68<sup>+</sup> CAF subset, patients with low-CD68<sup>+</sup> CAFs in the tumor center showed more recurrence after operation and shorter survival time, indicating the different function of CD68<sup>+</sup> CAFs in tumor initiation and progression. Functional analysis in the OSCC-CAF co-culture system found knockdown of CD68 did not change the phenotype of CAFs, tumor growth, or migration. Unexpectedly, low-CD68<sup>+</sup> CAFs were associated with aberrant immune balance. A high proportion of tumor-supportive Tregs was found in patients with low-CD68<sup>+</sup> CAFs. Mechanistically, knockdown of CD68 in CAFs contributed to the up-regulation of chemokine CCL17 and CCL22 of tumor cells to enhance Treg recruitment. Thus, up-regulated CD68<sup>+</sup> fibroblasts participate in tumor initiation, but the low-CD68<sup>+</sup> CAF subset in OSCC is conducive to regulatory T-cell (Treg) recruitment in the tumor microenvironment and contribute to poor prognosis of OSCC patients."	"PDGFRα and αSMA mark two distinct mesenchymal cell populations involved in parenchymal and vascular remodeling in pulmonary fibrosis. Pulmonary fibrosis is characterized by pronounced collagen deposition and myofibroblast expansion, whose origin and plasticity remain elusive. We utilized a fate-mapping approach to investigate α-smooth muscle actin (αSMA)+ and platelet-derived growth factor receptor α (PDGFRα)+ cells in two lung fibrosis models, complemented by cell type-specific next-generation sequencing and investigations on human lungs. Our data revealed that αSMA+ and PDGFRα+ cells mark two distinct mesenchymal lineages with minimal transdifferentiation potential during lung fibrotic remodeling. Parenchymal and perivascular fibrotic regions were populated predominantly with PDGFRα+ cells expressing collagen, while αSMA+ cells in the parenchyma and vessel wall showed variable expression of collagen and the contractile protein desmin. The distinct gene expression profile found in normal conditions was retained during pathologic remodeling. Cumulatively, our findings identify αSMA+ and PDGFRα+ cells as two separate lineages with distinct gene expression profiles in adult lungs. This cellular heterogeneity suggests that anti-fibrotic therapy should target diverse cell populations."	"Obeticholic acid and INT-767 modulate collagen deposition in a NASH in vitro model. Pharmacological treatments for non-alcoholic steatohepatitis (NASH) are still unsatisfactory. Fibrosis is the most significant predictor of mortality and many anti-fibrotic agents are under evaluation. Herein, we assessed in vitro the effects of the FXR agonist obeticholic acid (OCA) and the dual FXR/TGR5 agonist INT-767 in a well-established co-culture NASH model. Co-cultures of human hepatoma and hepatic stellate (HSCs) cells were exposed to free fatty acids (FFAs) alone or in combination with OCA or INT-767. mRNA expression of HSCs activation markers and FXR engagement were evaluated at 24, 96 and 144 hours. Collagen deposition and metalloproteinase 2 and 9 (MMP2-9) activity were compared to tropifexor and selonsertib. FFAs induced collagen deposition and MMP2-9 activity reduction. Co-treatment with OCA or INT-767 did not affect ACTA2 and COL1A1 expression, but significantly reduced FXR and induced SHP expression, as expected. OCA induced a dose-dependent reduction of collagen and induced MMP2-9 activity. Similarly, INT-767 induced collagen reduction at 96 h and a slight increase in MMP2-9. Tropifexor and Selonsertib were also effective in collagen reduction but showed no modulation of MMP2-9. All tested compounds reduced collagen deposition. OCA exerted a more potent and long-lasting effect, mainly related to modulation of collagen turn-over and MMP2-9 activity."	"Detrimental effects of uterine disease and lipopolysaccharide on luteal angiogenesis. Reproductive tract inflammatory disease (RTID) commonly occurs after the traumatic events of parturition and adversely affects follicular function. This study is the first to describe the cellular and steroidogenic characteristics of corpora lutea from cattle with RTID and the effects of pathogen-associated molecular patterns (PAMPs) on luteal angiogenesis and function in vitro. Luteal weight (P &lt; 0.05) and progesterone content (P &lt; 0.05) were reduced (1.2-fold) in cows with RTID, accompanied by reduced CYP11A (P &lt; 0.05), HSD3B (P &lt; 0.01) and STAR (P &lt; 0.01) protein expression. Immunohistochemistry revealed that luteal vascularity (VWF) and pericyte (ACTA2) coverage were &gt;3-fold lower in RTID cows (P &lt; 0.05). To link these observations to bacterial infection and determine specificity of action, a physiologically relevant luteal angiogenesis culture system examined the effects of PAMPs on endothelial cell (EC) network formation and progesterone production, in the presence of pro-angiogenic factors. Luteal EC networks were reduced ≤95% (P &lt; 0.05) by lipopolysaccharide (LPS, toll-like receptor (TLR) 4 agonist) but not by TLR2 agonists lipoteichoic acid or peptidoglycan. Conversely, progesterone production and steroidogenic protein expression were unaffected by PAMPs (P &gt; 0.05). Moreover, the adverse effect of LPS on luteal EC networks was dose-dependent and effective from 1 ng/mL (P &lt; 0.05), while few EC networks were present above 10 ng/mL LPS (P &lt; 0.001). LPS reduced proliferation (P &lt; 0.05) and increased apoptosis of EC (P &lt; 0.001). The specific TLR4 inhibitor TAK242 reversed the effects of LPS on EC networks. In conclusion, luteal vasculature is adversely sensitive to LPS acting via TLR4, therefore ovarian exposure to LPS from any Gram-negative bacterial infection will profoundly influence subsequent reproductive potential."	"Fendrr involves in the pathogenesis of cardiac fibrosis via regulating miR-106b/SMAD3 axis. Cardiovascular diseases (CVDs) is the first cause of death worldwide, generally exhibiting a high morbidity, high disability rate and high mortality especially in the elderly persons (&gt;50 years old). Previously, extensive studies have demonstrated that cardiac fibrosis plays cardinal roles in the pathogenesis of CVDs. However, due to the unclear underlying mechanisms of cardiac fibrosis, its clinical intervention remains very lacking. Long non-coding RNAs (lncRNAs), a class of non-coding RNA but differing from microRNAs, are generally considered as transcripts with a length ranging 200 to 100 nucleotides. Recently, accumulating evidence showed that lncRNAs involve in the pathogenesis of cardiac fibrosis. Fendrr (FOXF1 adjacent non-coding developmental regulatory RNA), is a spliced long non-coding RNA transcribed bi-directionally with FOXF1 on the opposite strand. Fendrr has been demonstrated to be essential for normal development of the heart and body wall in mouse, and shows a good anti-fibrotic activity in pulmonary fibrosis. In this study, we aimed to explore the effects of Fendrr on cardiac fibrosis. Intriguingly, we first observed that lncRNA Fendrr was up-regulated in the heart tissues of transverse aortic constriction (TAC) induced cardiac fibrosis mouse models, determined by RT-QPCR. Loss-function of Fendrr significantly alleviated the cardiac fibrosis phenotypes induced by TAC, indicating that Fendrr is required for the pathogenesis of cardiac fibrosis. In mechanism, we demonstrated experimentally that Fendrr directly targeting miR-106b, by which the lncRNA promotes cardiac fibrosis (indicated by the elevation of Col1a1, Col3a1, CTGF and ACTA2 expression) in a miR-106b mediated manner. Collectively, our findings highlight the axis of Fendrr/miR-106b/Samd3 in the pathogenesis of cardiac fibrosis, which may be a promising target for clinical intervention target of cardiac fibrosis."	"Role of IL-24 in the mucosal remodeling of children with coeliac disease. Recently, involvement of IL-19, IL-20 and IL-24 has been reported in inflammatory diseases associated with tissue remodeling. However, their impact on the pathomechanism of coeliac disease (CD) is still completely unknown. Expression of IL19, IL20 and IL24 was measured by real-time RT-PCR, protein amount of IL-24, α smooth muscle actin (α-SMA) and fibronectin (FN) was determined by Western-blot analysis in the duodenal biopsies of therapy naive children with CD and controls. Localization of IL-24 and IL-20RB was investigated by immunofluorescent staining in the duodenal mucosa. Effect of recombinant IL-1β, TNF-α, TGF-β and IL-17 treatment on the expression of IL19, IL20, IL24 and their receptors was investigated by real-time RT-PCR in small intestinal epithelial cells (FHs74Int), in primary duodenal myofibroblasts (pdMFs) and in peripheral blood mononuclear cells (PBMCs). Effect of IL-24 on H2O2 treated FHs74Int cells and on pdMFs was measured by MTT, LDH, Annexin V assays, real-time RT-PCR and by fluorescent microscopy. We found increased level of IL-24 (3.3×, p &lt; 0.05), α-SMA (2.4×, p &lt; 0.05) and FN (2.3×, p &lt; 0.05) in the duodenal mucosa and increased expression of IL19 (3.6×, p &lt; 0.05) and IL24 (5.2×, p &lt; 0.05) in the PBMCs of children with CD compared to that of controls. IL-1β was a strong inducer of IL24 expression of FHs74Int cells (9.9×, p &lt; 0.05), pdMFs (552.9×, p &lt; 0.05) or PBMCs (17.2×, p &lt; 0.05), as well. IL-24 treatment reduced the number of apoptotic cells (0.5×, p &lt; 0.05) and decreased the expression of inflammatory factors, including IL1A, IL6 and TNF of H2O2-treated FHs74Int cells. IL-24 decreased the proliferation (0.6×, p &lt; 0.05) of PDGF-B treated pdMFs. Moreover, IL-24 treatment altered the morphology of pdMFs by influencing the size of the angles between stress fibers and the longitudinal axis of the cells (2.0×, p &lt; 0.05) and the expression of cytoskeletal components, including ACTA2, ACTB, VIM, SNAI1 and SNAI2. Our results suggest that IL-24 plays a significant role in the maintenance of duodenal mucosal integrity in CD."	"Dipeptidyl peptidase-4 is increased in the abdominal aortic aneurysm vessel wall and is associated with aneurysm disease processes. Abdominal aortic aneurysm (AAA) is a potentially life-threatening disease, and until today there is no other treatment available than surgical intervention. Dipeptidyl peptidase-4 (DPP4)-inhibitors, used clinically to treat type 2 diabetes, have in murine models been shown to attenuate aneurysm formation and decrease aortic wall matrix degradation, inflammation and apoptosis. Our aim was to investigate if DPP4 is present, active and differentially expressed in human AAA. DPP4 gene expression was elevated in both media and adventitia of AAA tissue compared with control tissue, as measured by microarrays and qPCR, with consistent findings in external data. The plasma activity of DPP4 was however lower in male patients with AAA compared with age- and gender-matched controls, independently of comorbidity or medication. Immunohistochemical double staining revealed co-localization of DPP4 with cells positive for CD68, CD4 and -8, CD20, and SMA. Gene set enrichment analysis demonstrated that expression of DPP4 in AAA tissue correlated with expression of biological processes related to B- and T-cells, extracellular matrix turnover, peptidase activity, oxidative stress and angiogenesis whereas it correlated negatively with muscle-/actin-related processes. DPP4 is upregulated in both media and adventitia of human AAA and correlates with aneurysm pathophysiological processes. These results support previous murine mechanistic studies and implicate DPP4 as a target in AAA disease."	"Nicotine promotes activation of human pancreatic stellate cells through inducing autophagy via α7nAChR-mediated JAK2/STAT3 signaling pathway. Pancreatic stellate cells (PSCs) are the main functional cells leading to pancreatic fibrosis. Nicotine is widely considered as an independent risk factor of pancreatic fibrosis, but the mechanism is still unclear. Our study was aimed to explore the effects of nicotine on human pancreatic stellate cells (hPSCs) and involved pathways. Primary human PSCs were cultured and treated with nicotine (0.1 μM and 1 μM). The proliferation, apoptosis, α-SMA expression, extracellular matrix metabolism and autophagy of hPSCs were detected by CCK-8 assay, flow cytometry, real-time PCR and Western blotting analysis. The α7nAChR-mediated JAK2/STAT3 signaling pathway was also examined, and an α7nAChR antagonist α-bungarotoxin (α-BTX) was used to perform inhibition experiments. The proliferation, α-SMA expression and autophagy of hPSCs were significantly promoted by 1 μM nicotine. Meanwhile, the apoptosis of hPSCs was significantly reduced. The extracellular matrix metabolism of hPSCs was also regulated by nicotine. Moreover, the α7nAChR-mediated JAK2/STAT3 signaling pathway was activated by nicotine, this pathway and effects of nicotine can be blocked by α-BTX. Our finding suggests that nicotine can promote activation of human pancreatic stellate cells (hPSCs) through inducing autophagy via α7nAChR-mediated JAK2/STAT3 signaling pathway, providing a new insight into the mechanisms by which nicotine affects pancreatic fibrosis."	"[Bioinformatics analysis of severe emphysema genome microarray based on GEO database]. Objective: To investigate differential genes (DEGs) between no/mild and severe emphysema by bioinformatics analysis. Methods: The microarray dataset GSE1650, of lung tissue in no/mild and severe emphysema, was downloaded from the GEO database, and DEGs were obtained by t test. Analysis of DEGs based on DAVID database was used to obtain gene ontology (GO) and kyoto encyclopedia of genes and genomes (KEGG) pathway. The protein-protein interaction network (PPI) was established using STRING database to identify hub genes. Results: A total of 76 DEGs were obtained, of which 62 genes were up-regulated and 14 genes were down-regulated in severe emphysema group. Gene ontology showed that the DEGs were mainly involved in neutrophil chemotaxis, cellular response to interleukin-1, extracellular matrix organization, immune response, and KEGG pathway involved cytokine-cytokine receptor interaction, ECM-receptor interaction, PI3K-Akt signaling pathway, platelet activation. Seventeen hub genes were recognized by PPI analysis, including CXCL8, RRAD, CLU, TIMP1, SEPP1, ISLR, BGN, COL1A1, COLIA2, ACTA2, ACTN1, FIGF, TPM1, TPM2, LUM, COL6A3 and TAGLN. Among them, fifteen genes (CLU, TIMP1, SEPP1, ISLR, BGN, COLIA2, COL1A1, ACTA2, ACTN1, FIGF, TPM1, TPM2, LUM, COL6A3, TAGLN) were up-regulated and two genes (CXCL8, RRAD) were down-regulated. Conclusion: Bioinformatics analysis based on GEO database showed that there were DEGs between non/mild and severe emphysema patients. 目的: 通过生物信息学的方法分析无/轻度肺气肿与严重肺气肿患者的差异基因。 方法: 从基因表达数据库(GEO)下载无/轻度肺气肿与严重肺气肿患者的肺组织芯片数据GSE1650,通过t检验获得差异基因。然后使用DAVID数据库对差异表达基因进行基因本体(GO)及京都基因与基因组百科全书(KEGG)信号通路富集分析。再利用STRING数据库对差异表达基因进行蛋白相互作用网络(PPI)分析,并选出关键基因。 结果: 共获得76个差异基因,其中在严重肺气肿组中表达上调的基因有62个,表达下调的基因有14个。GO富集分析表明差异基因主要参与了中性粒细胞趋化、细胞对白细胞介素-1的反应、细胞外基质(ECM)组织、免疫反应。KEGG信号通路富集分析主要包括了细胞因子-细胞因子受体相互作用、ECM受体相互作用、磷脂酰肌醇3激酶-蛋白激酶B(PI3K-AKT)信号通路、血小板激活。PPI分析筛选获得了17个关键基因,分别为CXCL8、RRAD、CLU、TIMP1、SEPP1、ISLR、BGN、COL1A1、COLIA2、ACTA2、ACTN1、FIGF、TPM1、TPM2、LUM、COL6A3、TAGLN。其中有15个上调基因(CLU、TIMP1、SEPP1、ISLR、BGN、COLIA2、COL1A1、ACTA2、ACTN1、FIGF、TPM1、TPM2、LUM、COL6A3、TAGLN),2个下调基因(CXCL8、RRAD)。 结论: 基于GEO数据库的生物信息学分析,严重肺气肿与无/轻度肺气肿患者存在差异基因。."	"Requirement for the collagen receptor Endo180 in collagen gel contraction mediated by corneal fibroblasts. The interaction of keratocytes with extracellular matrix components plays an important role in the maintenance of corneal transparency and shape as well as in the healing of corneal wounds. In particular, the interaction of these cells with collagen and cell-mediated collagen contraction contribute to wound closure. Endo180 is a receptor for collagen that mediates its cellular internalization. We have now examined the role of Endo180 in collagen contraction mediated by corneal fibroblasts (activated keratocytes). Antibodies to Endo180 inhibited the contractile activity of mouse corneal fibroblasts embedded in a three-dimensional collagen gel and cultured in the presence of serum, with this effect being both concentration and time dependent and essentially complete at an antibody concentration of 0.2 μg/ml. Whereas corneal fibroblasts cultured in a collagen gel manifested a flattened morphology with prominent stress fibers under control conditions, they showed a spindlelike shape with few stress fibers in the presence of antibodies to Endo180. Antibodies to Endo180 had no effect on the expression of α-smooth muscle actin or the extent of collagen degradation in collagen gel cultures of corneal fibroblasts. Immunohistofluorescence analysis did not detect the expression of Endo180 in the unwounded mouse cornea. However, Endo180 expression was detected in keratocytes migrating into the wound area at 3 days after a corneal incisional injury. Together, our results suggest that Endo180 is required for the contraction of collagen matrix mediated by corneal fibroblasts and that its expression in these cells may contribute to the healing of corneal stromal wounds."	"Characterization of Primary Human Dermal Fibroblasts to Ensure for Instance EMF Exposure Experiments under Comparable Cell Culture Condition. HDFa (human dermal fibroblasts) are used as cellular models for EMF exposure. To ensure reproducible in vitro experiments, comparable proliferation and differentiation cell conditions must exist, and different donors, passage numbers, culture time, and growth media must be considered. In this study, the authors cultured fibroblasts in DMEM or 106 medium. Growth curves, vitality, morphology, and gene expression of genes coding for proliferation (PCNA, CDKN2A, CDKN1A, SFN), differentiation (PDGFRA, TGM2, ACTA2, PDPN, NTN1, MGP, PPP1R14), and SFN target genes (TP63, MMP1, MMP3) were examined in both media and passage numbers 3-4, 5-6 and &gt;6. At passages 3-4, proliferating cells can be observed in both media. While cells cultured in DMEM proliferate over the passages, from passage 5, cells in 106 medium persisted around the seeded number. TGM2 down-regulation over all passages in both media and cells morphology suggest papillary-type fibroblasts. Downregulation of SFN (negative regulator of mitotic translation and cell differentiation) coincided with proliferating fibroblasts over all examined conditions. Downstream SFN target genes in proliferating cells appeared upregulated (TP63) and downregulated (MMP1/MMP3), suggestive for a status characterized by increased stemnesses (upregulated TP63) and wound healing capacity (downregulated MMP1, MMP3). Resting cells (SFN control values) were associated with control values of TP63 and MMP1/MMP3 expression, suggesting a reduced stemness and wound healing capacity. In conclusion, a set of markers related to proliferation (SFN), differentiation (TGM2), stemnesses (TP63), and wound healing (MMP1/MMP3) allow a culture characterization so that cells under two different conditions can be exposed, thus enabling reproducible EMF experiments or experiments with other exposures."	"A novel biphenyl compound IMB-S7 ameliorates hepatic fibrosis in BDL rats by suppressing Sp1-mediated integrin αv expression. Chronic tissue injury with fibrosis results in the disruption of tissue architecture, organ dysfunction, and eventual organ failure. Therefore, the development of effective antifibrotic drugs is urgently required. IMB-S7 is novel biphenyl compound derived from bifendate (biphenyldicarboxylate) that is used for the treatment of chronic hepatitis in China. In the current study we investigated the potential of IMB-S7 as an antihepatic fibrosis agent. In bile duct ligation (BDL) rat model, oral administration of IMB-S7 (400 mg· kg<sup>-1</sup>· d<sup>-1</sup>, for 14 days) significantly ameliorated BDL-induced liver necrosis, bile duct proliferation, and collagen accumulation. We then showed that IMB-S7 treatment markedly suppressed the TGF-β/Smad pathway in human hepatic stellate cell line LX2 and mouse primary HSCs, as well as in liver samples of BDL rats, thus inhibiting the transcription of most fibrogenesis-associated genes, including TGF-β1, COL1A1, and ACTA2. Furthermore, IMB-S7 treatment significantly suppressed the expression of integrin αv at the mRNA and protein levels in TGF-β-treated LX2 cells and liver samples of BDL rats. Using integrin αv overexpression and silencing, we demonstrated that integrin αv activity correlated positively with the activation of TGF-β/Smad pathway. Based on dual luciferase assay and DNA affinity precipitation assay, we revealed that IMB-S7 inactivated integrin αv through competitively inhibiting the binding of Sp1, a transcription factor, to the integrin αv (ITGAV) promoter (-173/-163 bp). These results suggest that IMB-S7 inhibits HSCs activation and liver fibrosis through Sp1-integrin αv signaling, and IMB-S7 may be a promising candidate to combat hepatic fibrosis in the future."	"Autophagy drives fibroblast senescence through MTORC2 regulation. Sustained macroautophagy/autophagy favors the differentiation of fibroblasts into myofibroblasts. Cellular senescence, another means of responding to long-term cellular stress, has also been linked to myofibroblast differentiation and fibrosis. Here, we evaluate the relationship between senescence and myofibroblast differentiation in the context of sustained autophagy. We analyzed markers of cell cycle arrest/senescence in fibroblasts in vitro, where autophagy was triggered by serum starvation (SS). Autophagic fibroblasts expressed the senescence biomarkers CDKN1A/p21 and CDKN2A/p16 and exhibited increased senescence-associated GLB1/beta-galactosidase activity. Inhibition of autophagy in serum-starved fibroblasts with 3-methyladenine, LY294002, or ATG7 (autophagy related 7) silencing prevented the expression of senescence-associated markers. Similarly, suppressing MTORC2 activation using rapamycin or by silencing RICTOR also prevented senescence hallmarks. Immunofluorescence microscopy showed that senescence and myofibroblast differentiation were induced in different cells, suggesting mutually exclusive activation of senescence and myofibroblast differentiation. Reactive oxygen species (ROS) are known inducers of senescence and exposing fibroblasts to ROS scavengers decreased ROS production during SS, inhibited autophagy, and significantly reduced the expression of senescence and myofibroblast differentiation markers. ROS scavengers also curbed the AKT1 phosphorylation at Ser473, an MTORC2 target, establishing the importance of ROS in fueling MTORC2 activation. Inhibition of senescence by shRNA to TP53/p53 and shRNA CDKN2A/p16 increased myofibroblast differentiation, suggesting a negative feedback loop of senescence on autophagy-induced myofibroblast differentiation. Collectively, our results identify ROS as central inducers of MTORC2 activation during chronic autophagy, which in turn fuels senescence activation and myofibroblast differentiation in distinct cellular subpopulations.Abbreviations: 3-MA: 3-methyladenine; ACTA2: actin, alpha 2, smooth muscle, aorta; AKT1: AKT serine/threonine kinase 1; p-AKT1: AKT1 Ser473 phosphorylation; t-AKT1: total AKT serine/threonine kinase 1; ATG4A: autophagy related 4A cysteine peptidase; ATG7: autophagy gene 7; C12FDG: 5-dodecanoylaminofluorescein Di-β-D-Galactopyranoside; CDKN1A: cyclin dependent kinase inhibitor 1A; CDKN2A: cyclin dependent kinase inhibitor 2A; Ctl: control; DAPI: 4',6-diamidino-2-phenylindole, dilactate; ECM: extracellular matrix; GSH: L-glutathione reduced; H2O2: hydrogen peroxide; HLF: adult human lung fibroblasts; Ho: Hoechst 33342 (2'-[4-ethoxyphenyl]-5-[4-methyl-1-piperazinyl]-2.5'-bi-1H-benzimidazole); HSC: hepatic stellate cells; LY: LY294002; MAP1LC3B/LC3B: microtubule-associated protein 1 light chain 3 beta; MTORC1/2: mechanistic target of rapamycin kinase complex 1/2; N: normal growth medium; NAC: N-acetyl-L-cysteine; PBS: phosphate-buffered saline; PDGFA: platelet derived growth factor subunit A; PRKCA/PKCα: protein kinase C alpha; PtdIns3K: class III phosphatidylinositol 3-kinase; PTEN: phosphatase and tensin homolog; R: rapamycin; RICTOR: RPTOR independent companion of MTOR complex 2; ROS: reactive oxygen species; RPTOR: regulatory associated protein of MTOR complex 1; SA-GLB1/β-gal: senescence-associated galactosidase beta 1; SGK1: serum/glucocorticoid regulated kinase 1; shRNA: short hairpin RNA; siCtl: control siRNA; siRNA: small interfering RNA; SQSTM1: sequestosome 1; SS: serum-free (serum starvation) medium; TP53: tumor protein p53; TUBA: tubulin alpha; V: vehicle."	"Platelet-derived Growth Factor-α and Neuropilin-1 Mediate Lung Fibroblast Response to Rigid Collagen Fibers. During pulmonary secondary alveolar septation, the rudimentary distal saccule subdivides by extending tissue sheets into the saccular air space, creating alveoli, which open into the alveolar duct. The sheets originate from saccular mesenchymal cells, which contain α-SMA (αSMA [ACTA2]) and abut elastic fibers (myofibroblasts [MF]), characteristics that are shared by cells that subsequently occupy the secondary septal tips. During elongation, collagen fibers are positioned to provide a scaffold for translocating septal mesenchymal cells. We hypothesized that collagen fibers direct the migration, orientation, and location of MFs during septal elongation. To address this hypothesis, we examined how electrospun collagen fibers direct the migration of fibroblasts bearing targeted deletions of PDGFRα (platelet-derived growth factor receptor-α) or Nrp1 (neuropilin-1), after their isolation from lungs that exhibit reduced secondary septation. We observed that deletion of either gene reduced Rac1 activation and the speed of migration of lung fibroblasts (LF) along electrospun fibers. The deletions did not reduce the proportion of LF that displayed collagen-binding integrins and increased the proportion of LF bearing activated β1-integrin. LF bearing the PDGFRα deletion failed to localize focal adhesions over electrospun fibers, suggesting that they may not appropriately sense and respond to regionally increased stiffness near the fibers. In lungs of mice bearing the PDGFRα deletion, collagen fibers are delocalized from ACTA2-containing MF, and their orientation deviated from the plane of the alveolar walls. Diminished PDGFRα or Nrp1 reduces LF localization to stiffer regions of fibrillar collagen substrates, suggesting that signaling through these receptors enables responsiveness to regional differences in extracellular matrix rigidity."	"Multisystem smooth muscle dysfunction syndrome in a Chinese girl: A case report and review of the literature. Multisystemic smooth muscle dysfunction syndrome (MSMDS) is a rare genetic disease worldwide. The main mutation is the actin alpha 2 (ACTA2) gene p.R179H. In this paper, we report a Chinese MSMDS patient and systematically review the previous literature. Here, we report a 9.6-month-old Chinese girl who was diagnosed with MSMDS based on her history and symptoms, such as recurrent cough, wheezing, and complications with congenital fixed dilated pupils. Chest high-resolution computed tomography revealed inhomogeneous lung transparency, obvious exudative lesions, and some lung fissures that were markedly thickened. Cranial magnetic resonance imaging excluded bleeding and infarction but showed abnormal signals in the centrum ovale majus and bilateral periventricular regions. Echocardiography only showed patent foramen ovale, and no patent ductus arteriosus, pulmonary artery dilatation, or pulmonary hypertension was found. Bronchoscopy indicated moderate bronchial malacia. These examinations in conjunction with the typical eye abnormality suggested a diagnosis of MSMDS, and sequencing of exon 6 of the ACTA2 gene demonstrated the heterozygous mutation c.536G&gt;A, p.R179H. However, her parents' gene analyses were normal. MSMDS is a rare genetic disease mainly caused by the mutation of the ACTA2 gene p.R179H. Early genetic diagnosis should be performed for children presenting with congenital fixed dilated pupils and patent ductus arteriosus. During the process of diagnosis and treatment, clinicians should be on high alert for cerebrovascular, cardiovascular, and pulmonary complications."	"Chronological Observations of Iris Flocculi in a Japanese Family with Thoracic Aortic Aneurysm and Dissections. Iris flocculi, a type of hereditary iris pigment epithelial cyst, have been reported in association with smooth muscle α-2 actin (ACTA2) gene as the causative gene of familial thoracic aortic aneurysm and dissections (FTAAD). The purpose of the report was to examine morphological changes in the shape of flocculi and iris features over time by comparing infants to adults with FTAAD combined with iris flocculi. A Japanese family with FTAAD and bilateral iris flocculi and the Arg149Cys gene mutation was included. A slit-lamp photograph and anterior segment optical coherence tomography (AS-OCT) were used to evaluate the structure and location of iris flocculi. AS-OCT was also used to measure the internal shape and iris thickness of the dilated pupil muscle. A morphological change in the cyst was confirmed to be existent in the youngest cases. Pigment discoloration and iris atrophy of the iris body were observed in all cases. Besides, a decrease in iris thickness was observed with AS-OCT measurement. Changes across generations in iris flocculi occurred in a Japanese family with TAAD. ACTA2 gene abnormalities may cause iris atrophy and decrease thickness in addition to iris flocculi in early life. The prognosis is poor when FTAAD is combined with iris flocculi, and prevention of cardiovascular disease is necessary based on earlier findings of its emergence."	"In vitro response and gene expression of human retinal Müller cells treated with different anti-VEGF drugs. NA"	"Follistatin Mitigates Myofibroblast Differentiation and Collagen Synthesis of Fibroblasts from Scar Tissue around Injured Flexor Tendons. The aim of this study was to investigate the effect of FST gene on the inhibition of fibrosis in fibroblastic cells from scar tissue around repaired zone II flexor tendons. Immunohistochemistry was conducted on fibroblast cells transfected with adenovirus-LacZ (Ad-LacZ) as a marker gene (control), or with adenovirus-FST (Ad-FST) as a therapeutic gene. Fibroblast cultures without adenoviral exposure served as controls. Fibroblastic cells transfected with Ad-FST demonstrated significant decrease in collagen type I, MMP-1, MMP2, and α-SMA mRNA expressions compared to those transfected with Ad-LacZ. In addition, fibroblastic cells transfected with Ad-FST exhibited significant decrease in MMP-1, TIMP-1, fibronectin, PAI-1, TRPV4, α-SMA, desmin, and PAX7 protein expressions. Based on these findings, we conclude that FST may be a novel therapeutic strategy for preventing scar adhesions around repaired tendons by inhibiting fibroblasts from differentiating into myofibroblasts, in addition to producing type I collagen and regulating extracellular matrix turnover via the downregulation of MMP-1 and TIMP-1. FST may also decrease contracture of the scar by inhibiting Ca2+-dependent cell contraction."	"Alpha-syntrophin deficiency protects against non-alcoholic steatohepatitis associated increase of macrophages, CD8<sup>+</sup> T-cells and galectin-3 in the liver. Non-alcoholic steatohepatitis (NASH) is characterized by immune cell infiltration. Loss of the scaffold protein alpha-syntrophin (SNTA) protected mice from hepatic inflammation in the methionine-choline-deficient (MCD) diet model. Here, we determined increased numbers of macrophages and CD8<sup>+</sup> T-cells in MCD diet induced NASH liver of wild type mice. In the mutant animals these NASH associated changes in immune cell composition were less pronounced. Further, there were more γδ T-cells in the NASH liver of the null mice. Galectin-3 protein in the hepatic non-parenchymal cell fraction was strongly induced in MCD diet fed wild type but not mutant mice. Antioxidant enzymes declined in NASH liver with no differences between the genotypes. To identify the target cells responsive to SNTA loss in-vitro experiments were performed. In the human hepatic stellate cell line LX-2, SNTA did not regulate pro-fibrotic or antioxidant proteins like alpha-smooth muscle actin or catalase. Soluble galectin-3 was, however, reduced upon SNTA knock-down and increased upon SNTA overexpression. SNTA deficiency neither affected cell proliferation nor cell death of LX-2 cells. In the macrophage cell line RAW264.7 low SNTA indeed caused higher galectin-3 production whereas release of TNF and cell viability were normal. Moreover, SNTA had no effect on hepatocyte chemerin and CCL2 expression. Overall, SNTA loss improved NASH without causing major effects in macrophage, hepatocyte and hepatic stellate cell lines. SNTA null mice fed the MCD diet had less body weight loss and this seems to contribute to improved liver health of the mutant mice."	"New mutation in the ACTA2 gene (p.Met84Val) in a family with nonsyndromic familial aortic aneurysms. NA"	"Expression of mucosal addressin cell adhesion molecule-1 on the reticular framework between white pulp and the marginal zone in the human spleen. The antigenic heterogeneity of the reticular framework of the white pulp and marginal zone is well documented in the human adult spleen. Immunostaining of α-smooth muscle actin characterizes the heterogeneity of the reticular framework of the white pulp and marginal zone. In the human spleen, the blood cells flow in an open circulation. T and B lymphocytes flow out from the arterial terminal, and migrate in the reticular framework. Homing of lymphocytes to lymphoid tissues is regulated by selective interactions between cell surface homing receptors and tissue vascular addressins at sites of lymphocyte recruitment from the blood. In the present study, mucosal addressin cell adhesion molecule-1 was selectively expressed on α-smooth muscle actin-positive reticular framework. The reticular framework may function in lymphocyte homing and segregation into the periarteriolar lymphoid sheath, lymph follicle and marginal zone."	"FGFR2 Is Required for AEC2 Homeostasis and Survival after Bleomycin-induced Lung Injury. Alveolar epithelial cell (AEC) injury is central to the pathogenesis of pulmonary fibrosis. Epithelial FGF (fibroblast growth factor) signaling is essential for recovery from hyperoxia- and influenza-induced lung injury, and treatment with FGFs is protective in experimental lung injury. The cell types involved in the protective effect of FGFs are not known. We hypothesized that FGF signaling in type II AECs (AEC2s) is critical in bleomycin-induced lung injury and fibrosis. To test this hypothesis, we generated mice with tamoxifen-inducible deletion of FGFR1-3 (fibroblast growth factor receptors 1, 2, and 3) in surfactant protein C-positive (SPC<sup>+</sup>) AEC2s (SPC triple conditional knockout [SPC-TCKO]). In the absence of injury, SPC-TCKO mice had fewer AEC2s, decreased Sftpc (surfactant protein C gene) expression, increased alveolar diameter, and increased collagen deposition. After intratracheal bleomycin administration, SPC-TCKO mice had increased mortality, lung edema, and BAL total protein, and flow cytometry and immunofluorescence revealed a loss of AEC2s. To reduce mortality of SPC-TCKO mice to less than 50%, a 25-fold dose reduction of bleomycin was required. Surviving bleomycin-injured SPC-TCKO mice had increased collagen deposition, fibrosis, and ACTA2 expression and decreased epithelial gene expression. Inducible inactivation of individual Fgfr2 or Fgfr3 revealed that Fgfr2, but not Fgfr3, was responsible for the increased mortality and lung injury after bleomycin administration. In conclusion, AEC2-specific FGFR2 is critical for survival in response to bleomycin-induced lung injury. These data also suggest that a population of SPC<sup>+</sup> AEC2s require FGFR2 signaling for maintenance in the adult lung. Preventing epithelial FGFR inhibition and/or activating FGFRs in alveolar epithelium may therefore represent a novel approach to treating lung injury and reducing fibrosis."	"[CircRNA_005647 inhibits expressions of fibrosis-related genes in mouse cardiac fibroblasts via sponging miR-27b-3p]. To investigate the effect of circRNA_005647 on fibrotic phenotype of mouse cardiac fibroblasts (CFs) and explore its mechanism. We used an angiotensin Ⅱ (Ang-Ⅱ) capsule pump (daily dose of 1.46 mg/kg for 2 weeks) to establish a mouse model of myocardial fibrosis in C57BL/6 mice. Masson staining was used to detect myocardial fibrosis in the myocardium. The expression of circRNA_005647 in the myocardium of Ang-Ⅱ-infused mice and in Ang-Ⅱ-treated CFs were detected with real-time PCR. Actinomycin D and RNase R exonuclease digestion were used to test the stability of circRNA_005647 in mouse CFs. Over- expression of circRNA_005647 was achieved in the CFs by infecting the cells with a recombinant circRNA_005647 adenovirus (rAd-circRNA_005647), and the expressions of Col1a1, Col3a1 and Acta2 were detected in the cells with real-time PCR and Western blotting. Dual luciferase reporter assay, RNA antisense purification and RNA Pull down assay were performed to identify the interaction between circRNA_005647 and miR-27b-3p. CircRNA_005647 was up- regulated in the myocardium of Ang-Ⅱ- infused mice and in Ang-Ⅱ-treated mouse CFs (P &lt; 0.01). CircRNA_005647 was more stable than its host gene Myosin IXA (Myo9a) in response to actinomycin D (P &lt; 0.01) and RNase R exonuclease treatment. The expressions of fibrosis-associated genes was down-regulated in the CFs over-expressing circRNA_ 005647 (P &lt; 0.05). Dual luciferase reporter assay, RNA antisense purification and RNA Pull down assay revealed the interaction between miR-27b-3p and circRNA_005647. MiR-27b-3p obviously enhanced the fibrotic phenotype but reversed the inhibitory effect of circRNA_005647 on the expression of fibrosis associated genes in the CFs (P &lt; 0.05). CircRNA_005647 is upregulated in cardiac fibrosis and inhibits the expression of fibrosis-related genes through sponging miR-27b-3p in mouse CFs."	"Direct Effects of Empagliflozin on Extracellular Matrix Remodelling in Human Cardiac Myofibroblasts: Novel Translational Clues to Explain EMPA-REG OUTCOME Results. Empagliflozin, an SGLT2 inhibitor, has shown remarkable reductions in cardiovascular mortality and heart failure admissions (EMPA-REG OUTCOME). However, the mechanism underlying the heart failure protective effects of empagliflozin remains largely unknown. Cardiac fibroblasts play an integral role in the progression of structural cardiac remodelling and heart failure, in part, by regulating extracellular matrix (ECM) homeostasis. The objective of this study was to determine if empagliflozin has a direct effect on human cardiac myofibroblast-mediated ECM remodelling. Cardiac fibroblasts were isolated via explant culture from human atrial tissue obtained at open heart surgery. Collagen gel contraction assay was used to assess myofibroblast activity. Cell morphology and cell-mediated ECM remodelling was examined with the use of confocal microscopy. Gene expression of profibrotic markers was assessed with the use of reverse-transcription quantitative polymerase chain reaction. Empagliflozin significantly attenuated transforming growth factor β1-induced fibroblast activation via collagen gel contraction after 72-hour exposure, with escalating concentrations (0.5 μmol/L, 1 μmol/L, and 5 μmol/L) resulting in greater attenuation. Morphologic assessment showed that myofibroblasts exposed to empagliflozin were smaller in size with shorter and fewer number of extensions, indicative of a more quiescent phenotype. Moreover, empagliflozin significantly attenuated cell-mediated ECM remodelling as measured by collagen fibre alignment index. Gene expression profiling revealed significant suppression of critical profibrotic markers by empagliflozin, including COL1A1, ACTA2, CTGF, FN1, and MMP-2. We provide novel data showing a direct effect of empagliflozin on human cardiac myofibroblast phenotype and function by attenuation of myofibroblast activity and cell-mediated collagen remodelling. These data provide critical insights into the profound effects of empagliflozin as noted in the EMPA-REG OUTCOME study."	"CAF-induced placental growth factor facilitates neoangiogenesis in hepatocellular carcinoma. As a highly malignant tumor, hepatocellular carcinoma (HCC) is the third leading cause of cancer-related deaths worldwide. In most HCC patients, the development of HCC begins with hepatitis, which is followed by fibrosis and cirrhosis before progressing to HCC. Cancer-associated fibroblasts (CAFs), which are generally believed to be derived from activated hepatic stellate cells (HSCs), are highly involved in the development of HCC through the secretion of cytokines and angiogenic factors. The results of our study showed that a considerable number of CAFs highly expressed CD90 and were enriched in HCC tissues. Bioinformatics analysis of the transcriptome of HCC tissues revealed that placental growth factor (PlGF) is significantly correlated with CD90 expression. The isolated primary CAFs and activated HSCs overexpressed PlGF and CD90. In addition, the results of gene expression profiling interactive analysis based on The Cancer Genome Atlas showed that high levels of both PlGF and CD90 are correlated with tumor angiogenesis markers (CD31, CD34, and CD105) and predict poor HCC patient prognosis. In summary, our results suggest that CAFs can generate PlGF and may provide an effective target for CAFs-regulated neoangiogenesis in HCC."	"Dysregulated repair and inflammatory responses by e-cigarette-derived inhaled nicotine and humectant propylene glycol in a sex-dependent manner in mouse lung. Nicotine inhalation via electronic cigarettes (e-cigs) is an emerging concern. However, little is known about the acute toxicity in the lungs following inhalation of nicotine-containing e-cig aerosols. We hypothesized that acute exposure to aerosolized nicotine causes lung toxicity by eliciting inflammatory and dysregulated repair responses. Adult C57BL/6J mice were exposed 2 h daily for 3 days to e-cig aerosols containing propylene glycol (PG) with or without nicotine. Acute exposure to nicotine-containing e-cig aerosols induced inflammatory cell influx (neutrophils and CD8a<sup>+</sup> T-lymphocytes), and release of pro-inflammatory cytokines in bronchoalveolar lavage fluid in a sex-dependent manner. Inhalation of e-cig aerosol containing PG alone significantly augmented the lung levels of various homeostasis/repair mediators (PPARγ, ADRP, ACTA2, CTNNB1, LEF1, β-catenin, E-cadherin, and MMP2) in a sex-dependent manner when compared to air controls. These findings were accompanied by an increase in protein abundance and altered gene expression of lipogenic markers (PPARγ, ADRP) and myogenic markers (fibronectin, α-smooth muscle actin and β-catenin), suggesting a dysregulated repair response in mouse lungs. Furthermore, exposure to nicotine containing e-cig aerosols or PG alone differentially affected the release of pro-inflammatory cytokines in healthy and COPD human 3D EpiAirway tissues. Overall, acute exposure to nicotine containing e-cig aerosols was sufficient to elicit a pro-inflammatory response and altered mRNA and protein levels of myogenic, lipogenic, and extracellular matrix markers in mouse lung in a sex-dependent manner. Thus, acute exposure to inhaled nicotine via e-cig leads to dysregulated repair and inflammatory responses, which may lead to airway remodeling in the lungs."	"Aspirin inhibits TGFβ2-induced epithelial to mesenchymal transition of lens epithelial cells: selective acetylation of K56 and K122 in histone H3. Posterior capsule opacification (PCO) is a complication after cataract surgery that can disrupt vision. The epithelial to mesenchymal transition (EMT) of lens epithelial cells (LECs) in response to transforming growth factor β2 (TGFβ2) has been considered an obligatory mechanism for PCO. In this study, we tested the efficacy of aspirin in inhibiting the TGFβ2-mediated EMT of human LECs, LECs in human lens capsular bags, and lensectomized mice. In human LECs, the levels of the EMT markers α-smooth muscle actin (α-SMA) and fibronectin were drastically reduced by treatment with 2 mM aspirin. Aspirin also halted the EMT response of TGFβ2 when introduced after EMT initiation. In human capsular bags, treatment with 2 mM aspirin significantly suppressed posterior capsule wrinkling and the expression α-SMA in capsule-adherent LECs. The inhibition of TGFβ2-mediated EMT in human LECs was not dependent on Smad phosphorylation or MAPK and AKT-mediated signaling. We found that aspirin significantly increased the acetylation of K56 and K122 in histone H3 of human LECs. Chromatin immunoprecipitation assays using acetyl-H3K56 or acetyl-H3K122 antibody revealed that aspirin blocked the TGFβ2-induced acetylation of H3K56 and H3K122 at the promoter regions of ACTA2 and COL1A1. After lensectomy in mice, we observed an increase in the proliferation and α-SMA expression of the capsule-adherent LECs, which was ameliorated by aspirin administration through drinking water. Taken together, our results showed that aspirin inhibits TGFβ2-mediated EMT of LECs, possibly from epigenetic down-regulation of EMT-related genes."	"Glycogen storage disease type 1a is associated with disturbed vitamin A metabolism and elevated serum retinol levels. Glycogen storage disease type 1a (GSD Ia) is an inborn error of metabolism caused by mutations in the G6PC gene, encoding the catalytic subunit of glucose-6-phosphatase. Early symptoms include severe fasting intolerance, failure to thrive and hepatomegaly, biochemically associated with nonketotic hypoglycemia, fasting hyperlactidemia, hyperuricemia and hyperlipidemia. Dietary management is the cornerstone of treatment aiming at maintaining euglycemia, prevention of secondary metabolic perturbations and long-term complications, including liver (hepatocellular adenomas and carcinomas), kidney and bone disease (hypovitaminosis D and osteoporosis). As impaired vitamin A homeostasis also associates with similar symptoms and is coordinated by the liver, we here analysed whether vitamin A metabolism is affected in GSD Ia patients and liver-specific G6pc-/- knock-out mice. Serum levels of retinol and retinol binding protein 4 (RBP4) were significantly increased in both GSD Ia patients and L-G6pc-/- mice. In contrast, hepatic retinol levels were significantly reduced in L-G6pc-/- mice, while hepatic retinyl palmitate (vitamin A storage form) and RBP4 levels were not altered. Transcript and protein analyses indicate an enhanced production of retinol and reduced conversion the retinoic acids (unchanged LRAT, Pnpla2/ATGL and Pnpla3 up, Cyp26a1 down) in L-G6pc-/- mice. Aberrant expression of genes involved in vitamin A metabolism was associated with reduced basal messenger RNA levels of markers of inflammation (Cd68, Tnfα, Nos2, Il-6) and fibrosis (Col1a1, Acta2, Tgfβ, Timp1) in livers of L-G6pc-/- mice. In conclusion, GSD Ia is associated with elevated serum retinol and RBP4 levels, which may contribute to disease symptoms, including osteoporosis and hepatic steatosis."	"An experimental study to test the efficacy of Mesenchymal Stem Cells in reducing corneal scarring in an ex-vivo organ culture model. In this study, we evaluated the effect of placenta-derived Mesenchymal Stem Cells (MSCs) versus placebo in improving corneal transparency following experimental injury in an ex-vivo organ culture model of post-mortem human corneas. We also compared the influence of MSCs on the basic histopathology of the cornea and the immunohistochemistry markers of fibrotic corneal scarring. Mesenchymal Stem Cells extracted from the placenta were isolated and expanded in-vitro. Five pairs of post-mortem human corneas harvested for the corneal transplant of equal grade were included in the study. Corneas of the same pair were randomly assigned to either the case arm or the control arm. All corneas underwent a standardized superficial keratectomy, 4 mm in diameter. The case and control arm corneas received an intrastromal injection of MSCs and placebo respectively. The corneal button was maintained in an organ culture system for 28 days under the standard protocol. Laser light was passed through the corneas mounted on a self-styled modified artificial anterior chamber. Image analysis was used to quantify corneal transparency. Haematoxylin &amp; Eosin staining and Immunohistochemistry was done for Alpha SMA (Smooth Muscle Actin). Laser scatter measurements were measured using Image Analysis (Image J Software). The difference in the mean of Full-Width Half Maximum (FWHM), Max intensity and Red pixel intensity between the cases and the controls was 101.5, 16.3 and 11.4 respectively which was found to be statistically significant (P &lt; 0.05). Histopathology showed a disorganized Bowman's layer in the controls as compared to the cases. Alpha Smooth Muscle Actin at the injury site stained 3 + in all controls as compared to 1 + in the cases, showing a statistically significant difference (p = 0.005). Based on our findings, we consider that placenta-derived Mesenchymal Stem Cells can alter evolving corneal scarring into a more favourable outcome with better corneal transparency and lesser fibrotic corneal scarring."	"Human umbilical cord blood mononuclear cells protect against renal tubulointerstitial fibrosis in cisplatin-treated rats. Currently, there is no effective method to prevent renal interstitial fibrosis after acute kidney injury (AKI). In this study, we established and screened a new renal interstitial fibrosis rat model after cisplatin-induced AKI. Our results indicated that rats injected with 4 mg/kg cisplatin once a week for two weeks after firstly administrated with 6.5 mg/kg loading dose of cisplatin could set up a more accurate model reflecting AKI progression to renal interstitial fibrosis. Then, we investigated the effects and possible mechanisms of human umbilical cord blood mononuclear cells (hUCBMNCs) on renal tubular interstitial fibrosis after cisplatin-induced AKI. In rats injected with hUCBMNCs for four times, level of matrix metalloproteinase 7 (MMP-7) in serum and urine, urinary albumin/creatinine ratio, tubular pathological scores, the relative collagen area of the tubulointerstitial region, endoplasmic reticulum dilation and the mitochondrial ultrastructural damage were significantly improved. The level of reactive oxygen species, α-smooth muscle actin (α-SMA), [NOD]-like pyrin domain containing protein 3 and cleaved-Caspase 3 in renal tissue decreased significantly. However, in rats injected with hUCBMNCs for two times, no significant difference was discovered in MMP-7 levels and urinary albumin/creatinine ratio. Although expression of α-SMA and the percentage areas of collagen staining in tubulointerstitial tissues were ameliorated in rats injected with hUCBMNCs for two times, the effects were significantly weaker than those in rats injected with hUCBMNCs for four times. Taken together, our study constructed a highly efficient, duplicable novel rat model of renal fibrosis after cisplatin-induced AKI. Multiple injections of hUCBMNCs may prevent renal interstitial fibrosis after cisplatin-induced AKI."	"Remodeling of hepatic stellate cells orchestrated the stroma-derived oxaliplatin-resistance through CCN3 paracrine in hepatocellular carcinoma. Hepatic stellate cells (HSCs) have a key role in fibrogenesis and in the filtrates of the hepatocellular carcinoma (HCC) stroma, in which they are remodeled and play a critical role in HCC progression. However, the precise role of HSCs trending, infiltration and paracrine in orchestrating the stroma-derived oxaliplatin-resistance in HCC is still vague. The chemo-resistant models were established to explore the correlation between HSC cells and the condition of chemoresistance. The HCC clinical samples were collected to confirm this phenomenon. Then, the relationship between secretory CCN3 from oxaliplatin-resistant HCC and the infiltration of HSCs in associated HCC microenvironment was evaluated. Finally, the role and mechanism of HSCs remodeling in the orchestration of oxaliplatin-resistant HCC were explored. The increased infiltration of HSCs and collagen accumulation were found in the microenvironment of oxaliplatin-resistant HCC. The cDNA profiles of the oxaliplatin-resistant HCC was reanalyzed, and CCN3 was one of the significantly increased genes. In HCC clinical samples, the levels of CCN3 and α-SMA are positively correlated, and high expression of CCN3 and α-SMA are positively associated with malignant phenotype and poor prognosis. Then the enhanced abilities of migration and proliferation of HSCs, and elevation of the cytokines paracrine from HSCs relating to HCC malignancy were proved in vitro and in vivo, and which were related to CCN3-ERK signaling pathway activation. HSCs remodeling are positively related to CCN3 paracrine in hepatocellular carcinoma, which orchestrated the stroma-derived resistance to chemotherapy in HCC."	"New insights on congenital pulmonary airways malformations revealed by proteomic analyses. Congenital Pulmonary Airway Malformation (CPAM) has an estimated prevalence between 0.87 and 1.02/10,000 live births and little is know about their pathogenesis. To improve our knowledge on these rare malformations, we analyzed the cellular origin of the two most frequent CPAM, CPAM types 1 and 2, and compared these malformations with adjacent healthy lung and human fetal lungs. We prospectively enrolled 21 infants undergoing surgical resection for CPAM. Human fetal lung samples were collected after termination of pregnancy. Immunohistochemistry and proteomic analysis were performed on laser microdissected samples. CPAM 1 and 2 express mostly bronchial markers, such as cytokeratin 17 (Krt17) or α-smooth muscle actin (ACTA 2). CPAM 1 also expresses alveolar type II epithelial cell markers (SPC). Proteomic analysis on microlaser dissected epithelium confirmed these results and showed distinct protein profiles, CPAM 1 being more heterogeneous and displaying some similarities with fetal bronchi. This study provides new insights in CPAM etiology, showing clear distinction between CPAM types 1 and 2, by immunohistochemistry and proteomics. This suggests that CPAM 1 and CPAM 2 might occur at different stages of lung branching. Finally, the comparison between fetal lung structures and CPAMs shows clearly different protein profiles, thereby arguing against a developmental arrest in a localized part of the lung."	"Lats2-Underexpressing Bone Marrow-Derived Mesenchymal Stem Cells Ameliorate LPS-Induced Acute Lung Injury in Mice. The pathophysiology of the acute lung injury (ALI) is characterized by the damage of alveolar epithelial cells, which can be repaired by exogenous bone marrow-derived mesenchymal stem cells (BMSCs). However, the migration and differentiation abilities of BMSCs are not sufficient for the purpose, and a new approach that could strengthen the repair effects of BMSCs in ALI still needs to be clarified. We have previously proved that in vitro large tumor suppressor kinase 2- (Lats2-) underexpressing BMSCs may enhance their tissue repair effects in ALI; thus, in the present study, we tried to explore whether Lats2-underexpressing BMSCs could rescue lipopolysaccharide- (LPS-) induced ALI in vivo. BMSCs from C57BL/6 mice transfected with Lats2-interfering lentivirus vector or lentivirus blank controls were transplanted intratracheally into LPS-induced ALI mice. The retention and differentiation of BMSCs in the lung were evaluated by in vivo imaging, immunofluorescence staining, and Western blotting. The lung edema and permeability were assessed by lung wet weight/body weight ratio (LWW/BW) and measurements of proteins in bronchoalveolar lavage fluid (BALF) using ELISA. Acute lung inflammation was measured by the cytokines in the lung homogenate and BALF using RT-qPCR and ELISA, respectively. Lung injury was evaluated by HE staining and lung injury scoring. Pulmonary fibrosis was evaluated by Picrosirius red staining, immunohistochemistry for α-SMA and TGF-β1, and hydroxyproline assay and RT-qPCR for Col1α1 and Col3α1. Lats2-mediated inhibition of the Hippo pathway increased the retention of BMSCs and their differentiation toward type II alveolar epithelial cells in the lung. Furthermore, Lats2-underexpressing BMSCs improved lung edema, permeability of the lung epithelium, and lung inflammation. Finally, Lats2-underexpressing BMSCs alleviated lung injury and early pulmonary fibrosis. Our studies suggest that underexpression of Lats2 could further enhance the repair effects of BMSCs against epithelial impair and the therapeutic potential of BMSCs in ALI mice."	"Hepatic glypican-3 and alpha-smooth muscle actin overexpressions reflect severity of liver fibrosis and predict outcome after successful portoenterostomy in biliary atresia. Glypican-3 plays a vital role in regulating embryonic morphogenesis of the liver. This study aimed to investigate associations of hepatic expressions of glypican-3 and alpha-smooth muscle actin with clinical parameters in biliary atresia. Liver specimens were obtained from 20 biliary atresia infants and 7 non-biliary atresia controls. Relative mRNA expressions of glypican-3, alpha-smooth muscle actin, and signaling molecules of Wnt/β-catenin were measured using real-time polymerase chain reaction. Protein expressions of glypican-3 and alpha-smooth muscle actin were examined using immunohistochemistry. Masson's trichrome staining was conducted to evaluate the stage of liver fibrosis. Up-regulation of glypican-3 mRNA expression was observed in biliary atresia livers, and its expression was positively associated with alpha-smooth muscle actin, β-catenin, c-Myc, and cyclin D-1. Immunostaining scores of glypican-3 and alpha-smooth muscle actin were significantly increased in biliary atresia livers. Biliary atresia patients with poor outcomes had significantly greater glypican-3 expression than those with good outcomes, consistent with hepatic alpha-smooth muscle actin expression analysis. Hepatic glypican-3 expression was associated with age, albumin, aspartate transaminase, and alkaline phosphatase in biliary atresia patients, while hepatic alpha-smooth muscle actin expression was correlated with alkaline phosphatase in the patients. Moreover, glypican-3 and alpha-smooth muscle actin expressions were positively associated with fibrosis stage in biliary atresia livers. There was a positive relationship between glypican-3 and alpha-smooth muscle actin expression in biliary atresia livers. Combined high expressions of glypican-3 and alpha-smooth muscle actin were associated with poor survival. Hepatic overexpressions of glypican-3 and alpha-smooth muscle actin were associated with hepatic dysfunction and the degree of liver fibrosis in biliary atresia."	"Nitro-oleic acid inhibits the high glucose-induced epithelial-mesenchymal transition in peritoneal mesothelial cells and attenuates peritoneal fibrosis. As an electrophilic nitroalkene fatty acid, nitro-oleic acid (OA-NO2) exerts multiple biological effects that contribute to anti-inflammation, anti-oxidative stress, and antiapoptosis. However, little is known about the role of OA-NO2 in peritoneal fibrosis. Thus, in the present study, we examined the effects of OA-NO2 on the high glucose (HG)-induced epithelial-mesenchymal transition (EMT) in human peritoneal mesothelial cells (HPMCs) and evaluated the morphological and immunohistochemical changes in a rat model of peritoneal dialysis-related peritoneal fibrosis. In in vitro experiments, we found that HG reduced the expression level of E-cadherin and increased Snail, N-cadherin, and α-smooth muscle actin expression levels in HPMCs. The above-mentioned changes were attenuated by pretreatment with OA-NO2. Additionally, OA-NO2 also inhibited HG-induced activation of the transforming growth factor-β1/Smad signaling pathway and NF-κB signaling pathway. Meanwhile, OA-NO2 inhibited HG-induced phosphorylation of Erk and JNK. The results from the in vivo experiments showed that OA-NO2 notably relieved peritoneal fibrosis by decreasing the thickness of the peritoneum; it also inhibited expression of transforming growth factor-β1, α-smooth muscle actin, N-cadherin, and vimentin and enhanced expression of E-cadherin in the peritoneum. Collectively, these results suggest that OA-NO2 inhibits the HG-induced epithelial-mesenchymal transition in HPMCs and attenuates peritoneal dialysis-related peritoneal fibrosis."	"Conjunctival stromal tumour (COST): anterior-segment OCT findings. Conjunctival stromal tumour (COST) is a recently described rare conjunctival tumour of mesenchymal origin with only four publications describing a handful of cases thus far. In this report, we describe the anterior-segment optical coherence tomography (AS-OCT) characteristics in a case of COST for the first time, in addition to the clinical and histopathological characteristics. The AS-OCT showed an elevated, dome-shaped hyporeflective homogenous lesion in the conjunctival stroma lined by hyperreflective outer layer with mild posterior shadowing, consistent with histological description of a paucicellular tumour with large myxoid collagenous material inside. Immunohistochemistry showed positive CD34 and vimentin but negative S100 and smooth muscle actin, thereby differentiating it from conjunctival myxoma."	"European reference network for rare vascular diseases (VASCERN) consensus statement for the screening and management of patients with pathogenic ACTA2 variants. The ACTA2 gene encodes for smooth muscle specific α-actin, a critical component of the contractile apparatus of the vascular smooth muscle cell. Pathogenic variants in the ACTA2 gene are the most frequently encountered genetic cause of non-syndromic hereditary thoracic aortic disease (HTAD). Although thoracic aortic aneurysm and/or dissection is the main clinical manifestation, a variety of occlusive vascular disease and extravascular manifestations occur in ACTA2-related vasculopathy. Current data suggest possible mutation-specific manifestations of vascular and extra-aortic traits.Despite its relatively high prevalence, comprehensive recommendations on the care of patients and families with pathogenic variants in ACTA2 have not yet been established. We aimed to develop a consensus document to provide medical guidance for health care professionals involved in the diagnosis and treatment of patients and relatives with pathogenic variants in ACTA2.The HTAD Working Group of the European Reference Network for Rare Vascular Diseases (VASCERN) convened to review current literature and discuss expert opinions on clinical management of ACTA2 related vasculopathy. This consensus statement summarizes our recommendations on diagnosis, monitoring, treatment, pregnancy, genetic counselling and testing in patients with ACTA2-related vasculopathy. However, there is a clear need for additional prospective multicenter studies to further define proper guidelines."	"Inhibition of the stem cell factor 248 isoform attenuates the development of pulmonary remodeling disease. Stem cell factor (SCF) and its receptor c-kit have been implicated in inflammation, tissue remodeling, and fibrosis. Ingenuity Integrated Pathway Analysis of gene expression array data sets showed an upregulation of SCF transcripts in idiopathic pulmonary fibrosis (IPF) lung biopsies compared with tissue from nonfibrotic lungs that are further increased in rapid progressive disease. SCF248, a cleavable isoform of SCF, was abundantly and preferentially expressed in human lung fibroblasts and fibrotic mouse lungs relative to the SCF220 isoform. In fibroblast-mast cell coculture studies, blockade of SCF248 using a novel isoform-specific anti-SCF248 monoclonal antibody (anti-SCF248), attenuated the expression of COL1A1, COL3A1, and FN1 transcripts in cocultured IPF but not normal lung fibroblasts. Administration of anti-SCF248 on days 8 and 12 after bleomycin instillation in mice significantly reduced fibrotic lung remodeling and col1al, fn1, acta2, tgfb, and ccl2 transcript expression. In addition, bleomycin increased numbers of c-kit+ mast cells, eosinophils, and ILC2 in lungs of mice, whereas they were not significantly increased in anti-SCF248-treated animals. Finally, mesenchymal cell-specific deletion of SCF significantly attenuated bleomycin-mediated lung fibrosis and associated fibrotic gene expression. Collectively, these data demonstrate that SCF is upregulated in diseased IPF lungs and blocking SCF248 isoform significantly ameliorates fibrotic lung remodeling in vivo suggesting that it may be a therapeutic target for fibrotic lung diseases."	"Antifibrotic Effects of Sakuraso-Saponin in Primary Cultured Pterygium Fibroblasts in Comparison With Mitomycin C. To investigate the antifibrotic effects of sakuraso-saponin on a primary culture of human pterygium fibroblasts (HPFs) and normal human Tenon fibroblasts (HTFs) as compared to the effects of mitomycin C (MMC). Samples of HPFs and HTFs were acquired during primary pterygium surgery. Cell toxicity, cell migration, and expression of α-smooth muscle actin (α-SMA) and transforming growth factor-β (TGF-β) were evaluated in HPFs and HTFs after treatment with sakuraso-saponin and MMC. To determine the possible mechanisms underlying the antifibrotic effects of sakuraso-saponin, the expression of phosphorylated Smad2/3 was evaluated after treatment with sakuraso-saponin and MMC. MMC (≥200 μg/mL) significantly reduced cell viability in both HPFs and HTFs, whereas sakuraso-saponin (1.0 μg/mL) decreased cell viability in HPFs only. Both sakuraso-saponin (1.0 μg/mL) and MMC (200 μg/mL) treatment significantly reduced the expression of α-SMA and TGF-β in HPFs (P &lt; 0.05). It is interesting that the expression of α-SMA and TGF-β after treatment with sakuraso-saponin was significantly lower than that after treatment with MMC (P &lt; 0.05). The expression of phosphorylated Smad2/3 protein was decreased by sakuraso-saponin and MMC in HPFs. Both sakuraso-saponin and MMC inhibited TGF-β1-induced cell migration as compared to the control in HPFs. Sakuraso-saponin could be more effective than MMC for the reduction of fibrosis in HPFs. Our results might present the basis for its use as a promising candidate drug for adjuvant therapy to prevent recurrent pterygium after surgery."	"Development of a Stromal Microenvironment Experimental Model Containing Proto-Myofibroblast Like Cells and Analysis of Its Crosstalk with Melanoma Cells: A New Tool to Potentiate and Stabilize Tumor Suppressor Phenotype of Dermal Myofibroblasts. Melanoma is one of the most aggressive solid tumors and includes a stromal microenvironment that regulates cancer growth and progression. The components of stromal microenvironment such as fibroblasts, fibroblast aggregates and cancer-associated fibroblasts (CAFs) can differently influence the melanoma growth during its distinct stages. In this work, we have developed and studied a stromal microenvironment model, represented by fibroblasts, proto-myofibroblasts, myofibroblasts and aggregates of inactivated myofibroblasts, such as spheroids. In particular, we have generated proto-myofibroblasts from primary cutaneous myofibroblasts. The phenotype of proto-myofibroblasts is characterized by a dramatic reduction of α-smooth muscle actin (α-SMA) and cyclooxygenase-2 (COX-2) protein levels, as well as an enhancement of cell viability and migratory capability compared with myofibroblasts. Furthermore, proto-myofibroblasts display the mesenchymal marker vimentin and less developed stress fibers, with respect to myofibroblasts. The analysis of crosstalk between the stromal microenvironment and A375 or A2058 melanoma cells has shown that the conditioned medium of proto-myofibroblasts is cytotoxic, mainly for A2058 cells, and dramatically reduces the migratory capability of both cell lines compared with the melanoma-control conditioned medium. An array analysis of proto-myofibroblast and melanoma cell-conditioned media suggests that lower levels of some cytokines and growth factors in the conditioned medium of proto-myofibroblasts could be associated with their anti-tumor activity. Conversely, the conditioned media of melanoma cells do not influence the cell viability, outgrowth, and migration of proto-myofibroblasts from spheroids. Interestingly, the conditioned medium of proto-myofibroblasts does not alter the cell viability of both BJ-5ta fibroblast cells and myofibroblasts. Hence, proto-myofibroblasts could be useful in the study of new therapeutic strategies targeting melanoma."	"TGF-β1 mediated Smad signaling pathway and EMT in hepatic fibrosis induced by Nano NiO in vivo and in vitro. Nickel oxide nanoparticles (Nano NiO) bears hepatotoxicity, while whether it leads to liver fibrosis remains unclear. The aim of this study was to establish the Nano NiO-induced hepatic fibrosis model in vivo and investigate the roles of transforming growth factor β1 (TGF-β1) in Smad pathway activation, epithelial-mesenchymal transition (EMT) occurrence, and extracellular matrix (ECM) deposition in vitro. Male Wistar rats were exposed to 0.015, 0.06, and 0.24 mg/kg Nano NiO by intratracheal instilling twice a week for 9 weeks. HepG2 cells were treated with 100 μg/mL Nano NiO and TGF-β1 inhibitor (SB431542) to explore the mechanism of collagen formation. Results of Masson staining as well as the elevated levels of type I collagen (Col-I) and Col-III suggested that Nano NiO resulted in hepatic fibrosis in rats. Furthermore, Nano NiO increased the protein expression of TGF-β1, p-Smad2, p-Smad3, alpha-smooth muscle actin (α-SMA), matrix metalloproteinase9 (MMP9), and tissue inhibitors of metalloproteinase1 (TIMP1), while decreased the protein content of E-cadherin and Smad7 in rat liver and HepG2 cells. Most importantly, Nano NiO-triggered the abnormal expression of the abovementioned proteins were all alleviated by co-treatment with SB431542, implying that TGF-β1-mediated Smad pathway, EMT and MMP9/TIMP1 imbalance were involved in overproduction of collagen in HepG2 cells. In conclusion, these findings indicated that Nano NiO induced hepatic fibrosis via TGF-β1-mediated Smad pathway activation, EMT occurrence, and ECM deposition."	"A Nude Mouse Model of Orthotopic Liver Transplantation of Human Hepatocellular Carcinoma HCCLM3 Cell Xenografts and the Use of Imaging to Evaluate Tumor Progression. BACKGROUND This study aimed to develop a nude mouse model of orthotopic liver transplantation of HCCLM3 human hepatocellular carcinoma (HCC) cell xenografts and the use of imaging and histology to evaluate tumor development and progression. MATERIAL AND METHODS HCCLM3 cells were injected subcutaneously into 25 healthy male athymic BALB/c (nu/nu) nude mice. The tumors that developed were transplanted into the liver of a new set of nude mice. After four weeks and six weeks, the mice were imaged using ultrasound (US), software-assisted contrast-enhanced ultrasound (CEUS), fluorodeoxyglucose-positron emission tomography (FDG-PET). Histology was performed on the liver and liver tumors, and included immunohistochemistry for vascular endothelial growth factor (VEGF), CD31, CD34, and alpha-smooth muscle actin (alpha-SMA). RESULTS The success rate for orthotopic tumor transplantation in the mouse liver was 90% (18/20). Liver tumors measured 11.8±2.6 mm in diameter and 525.9±250.8 mm3 in volume on the sixth week. CEUS showed rapid wash-in and washout in the liver tumors, and PET showed low tumor cell metabolism. Bone metastases were present in 45% (9/20) of mice in the sixth week. Immunohistochemistry showed positive expression for VEGF, CD31, CD34, and alpha-SMA. CONCLUSIONS The nude mouse orthotopic liver transplantation model of human HCC was shown to be a reliable model that has the potential for future research on the pathogenesis and progression of HCC and studies on drug development."	"Pharmacological Targeting of BET Bromodomains Inhibits Lens Fibrosis via Downregulation of MYC Expression. Lens fibrosis involves aberrant growth, migration, and transforming growth factorβ (TGFβ)-induced epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs). In this study, we investigated the role of the bromo- and extra-terminal domain (BET) inhibitor in lens fibrotic disorder to identify drug-based therapies. Rat lens explants, rabbit primary lens epithelial cells (rLECs), human lens explants and human SRA01/04 cells were treated with TGFβ2 in the presence or absence of the BET bromodomain inhibitor JQ1 or the MYC inhibitor 10058-F4. Proliferation was determined by MTS assay. Cell migration was measured by wound healing and transwell assays. The expression levels of fibronectin (FN), α-smooth muscle actin (α-SMA), E-cadherin, and phosphorylated downstream Smads were analyzed by Western blot, qRT-PCR, and immunocytochemical experiments. Transcriptome analysis was conducted to explore the molecular mechanism. Blockage of BET bromodomains with JQ1 significantly suppressed rLECs proliferation by inducing G1 cell cycle arrest. Furthermore, JQ1 attenuated TGFβ2-dependent upregulation of mesenchymal gene expression and phosphorylation of Smad2/3 during the progression of EMT, whereas E-cadherin expression was preserved. JQ1 repressed MYC expression, which was dose- and time-dependently upregulated by TGFβ2. Inhibiting MYC with either the small-molecule inhibitor 10058-F4 or genetic knockdown phenocopied the effects of JQ1 treatment. MYC overexpression partially reversed the JQ1-regulated EMT-related alteration of gene expression. Both JQ1 and 10058-F4 blocked the expression of TGFβ receptor II and integrin αv in rLECs and abolished TGFβ2-induced opacification and subcapsular plaque formation in rat lens explants. Our results demonstrate the antifibrotic role of JQ1 in maintaining the epithelial characteristics of LECs and blocking TGFβ2-induced EMT, possibly by downregulating MYC, thereby providing new avenues for treating lens fibrosis."	"Elevated Uric Acid Levels Promote Vascular Smooth Muscle Cells (VSMC) Proliferation via an Nod-Like Receptor Protein 3 (NLRP3)-Inflammasome-Dependent Mechanism. BACKGROUND Hyperuricemia has a pathogenic role in the development of hypertension and other cardiovascular diseases (CVD). Uric acid has been reported to activate Nod-like receptor protein 3 (NLRP3)-inflammasome and alter vascular smooth muscle cells (VSMC). However, the potential mechanisms underlying this association are still not understood. The aim of this study was to investigate the role and potential mechanisms of uric acid in proliferation of VSMC. MATERIAL AND METHODS Cell Counting Kit-8 (CCK-8) proliferation assay and colony formation assay were performed to determine the proliferative ability of VSMC under uric acid stimulation. Immunofluorescence microscopy was carried out to determine the expression of Alpha-smooth muscle actin (alpha-SMA). In addition, real-time PCR and Western blot were used to detect the expression of NLRP3-inflammasome, and ELISA was performed to measure the levels of IL-18 and IL-1ß. RESULTS The results showed that uric acid increases the proliferation of VSMC and induces alpha-SMA accumulation. We also found that uric acid increases the level of NLRP3 and induces NLRP3-inflammasome activation. The expressions of uric acid-induced inflammatory markers IL-1ß and IL-18 were decreased by the inhibitor MCC950. CONCLUSIONS Our findings revealed that uric acid induces inflammation through NLRP3-inflammasome-mediated VSMC proliferation. NLRP3 may be a new therapeutic target for hypertension."	"[Effect of microRNA-133b on Myocardial Fibrosis]. Objective To investigate the effect of microRNA-133b(miR-133b)on cardiac fibrosis and its mechanism.Methods Human cardiac fibroblasts(CFs)were harvested.The proliferation of CFs was detected by CCK8 during the overexpression and knock-down of miR-133b.The expressions of connective tissue growth factor(CTGF),α-smooth muscle actin(α-SMA),collagen Ⅰ,and collagen Ⅲ were detected with qRT-PCR and Western blot analysis after miR-133b overexpression or downexpression.Target genes of miR-133b were predicted by bioinformatics software.Dual-luciferase activity assay were used to verify a target gene of miR-133b.Results qRT-PCR showed that the expression level of miR-133b in the miR-133b mimic group was significantly higher than that in the negative control group(t=26.219,P=0.000).The expression level of miR-133b in the miR-133b inhibitor group was significantly lower than that in the negative control group(t=6.738,P=0.003).After 21,45,69,93,and 117 hours of transfection,the proliferation ability of CFs significantly decreased in the miR-133b mimic group but significantly increased in the miR-133b group(all P&lt;0.05,compared with the negative control group).After overexpression of miR-133b,the mRNA and protein levels of CTGF(t=9.213,P=0.001;t=8.195,P=0.001),α-SMA(t=6.511,P =0.003;t=4.434,P=0.011),collagenⅠ(t=3.172,P=0.034;t=4.053,P=0.015)and collagen Ⅲ(t=6.404,P=0.003;t=5.319,P=0.006)were significantly down-regulated.After the expression of miR-133b was knocked down,the mRNA and protein levels of CTGF(t=9.439,P=0.001;t=14.100,P=0.000),α-SMA(t=4.519,P=0.011;t=4.377,P=0.012),collagen Ⅰ(t=5.966,P=0.004;t=5.514,P=0.005)and collagen Ⅲ(t=4.622,P=0.010;t=4.996,P=0.008)were significantly increased.The relative luciferase activity of the cells co-transfected with miR-133b mimic and WT 3'UTR expression vector was significantly lower than that of the cells co-transfected with mimic control and WT 3'UTR expression vectors(t=5.654,P=0.005);however,there was no significant difference in relative luciferase activity between cells co-transfected with miR-133b mimic and MUT 3'UTR expression vectors and cells co-transfected with mimic control and MUT 3'UTR expression vectors(t=0.380,P=0.724).Conclusion miR-133b may affect the activation and proliferation of CFs by targeting CTGF and thus improve cardiac fibrosis."	"A Sustainable Graphene Aerogel Capable of the Adsorptive Elimination of Biogenic Amines and Bacteria from Soy Sauce and Highly Efficient Cell Proliferation. A graphene aerogel (GA) with a three-dimensional (3D) structure, ultra-lightweight nature, and high hydrophobicity was simply fabricated by the one-step pyrolysis of glucose and ammonium chloride. The as-synthesized GA exhibited a 3D interconnected microporous architecture with a high surface area of ∼2860 m<sup>2</sup> g<sup>-1</sup> and pore volume of 2.24 cm<sup>3</sup> g<sup>-1</sup>. The hydrophobic GA (10 mg 100 mL<sup>-1</sup>) demonstrated rapid and excellent adsorption performance for the removal of food toxins such as various biogenic amines (histamine, cadaverine, and spermine) and the hazardous bacterium Staphylococcus aureus (a food contaminant and a cause of poor wound healing) from a liquid matrix with a maximum simultaneous adsorption capacity for multiple biogenic amines of &gt;85.19% (histamine), 74.1% (cadaverine), and 70.11% (spermidine) and a 100% reduction in the viable cell count of S. aureus within 80 min of interaction. The outstanding adsorption capacity can be attributed to a highly interconnected porous network in the 3D architecture and a high surface-to-volume ratio. A case study using soy sauce spiked with multiple biogenic amines showed successful removal of toxins with excellent recyclability without any loss in absorption performance. Biocompatibility of the GA in terms of cell viability was observed even at high concentrations (83.46% and 75.28% at 25 and 50 mg mL<sup>-1</sup>, respectively). Confirmatory biocompatibility testing was conducted via live/dead cell evaluation, and the morphology of normal lung epithelial cells was examined via scanning electron microscopy showed no cellular shrinkage. Moreover, GA showed excellent removal of live colonies of S. aureus from the food matrix and immunoblotting analysis showed elevated protein expression levels of β-catenin and α-SMA (α-smooth muscle actin). The biocompatible sugar-based GA could simultaneously adsorb multiple biogenic amines and live bacteria and was easy to regenerate via simple separation due to its high floatability, hydrophobicity, surface area, and porosity without any structural and functional loss, making it especially relevant for food safety and biomedical applications."	"Phillygenin inhibits LPS-induced activation and inflammation of LX2 cells by TLR4/MyD88/NF-κB signaling pathway. The traditional Chinese medicine Forsythiae Fructus is the dried fruit of Forsythia suspensa (Thunb.) Vahl. It is commonly used to clear heat and detoxify, reduce swelling and disperse knot, and evacuate wind and heat. Inflammation is involved in liver fibrosis. Phillygenin (PHI) is a kind of lignans extracted and separated from Forsythiae Fructus, which has been reported to have a good anti-inflammatory effect. Therefore, we aimed to explore whether PHI has a therapeutic effect on liver fibrosis caused by inflammation. Firstly, the induction of the LX2 cells inflammatory model and fibrosis model by LPS with different concentrations were studied. Then, high, medium and low doses PHI was given for intervention therapy. The secretion of IL-6, IL-1β and TNF-α inflammatory factors were detected by ELISA kit, and the expression of collagen I and α-SMA was detected by Western blot and RT-qPCR. The possible mechanism of PHI on TLR4/MyD88/NF-κB signal pathway was studied by computer-aided drug design software and the results were further verified by Western blot and RT-qPCR experiments. The results showed that LPS could promote the expression of IL-6, IL-1β and TNF-α and the expression of collagen I and α-SMA, indicating that LPS could induce inflammation and fibrosis in LX2 cells. PHI could inhibit LX2 cell activation and fibrotic cytokine expression by inhibiting LPS-induced pro-inflammatory reaction. Molecular docking results showed that PHI could successfully dock with TLR4, MyD88, IKKβ, p65, IκBα, and TAK1 proteins. Subsequently, Western blot and qPCR results further proved that PHI could inhibit the proteins expression in TLR4/MyD88/NF-κB signal pathway which were consistent with the molecular docking results. PHI can inhibit LPS-induced pro-inflammatory reaction and LX2 cell activation through TLR4/MyD88/NF-κB signaling pathway, thereby inhibiting liver fibrosis."	"Topographic Distribution of Contractile Protein in the Human Macular Microvasculature. We studied the topographic distribution of contractile protein in different orders of the human macular microvasculature to further understanding of the sites for capillary blood flow regulation. Nine donor eyes from eight donors were cannulated at the central retinal artery and perfusion labeled for alpha smooth muscle actin (αSMA) and filamentous actin (F-actin). Confocal images were collected from the macula region, viewed, projected, and converted to a 255 grayscale for measurements. The mean intensity was measured for macular arterioles, venules, and capillary segments. The diameter of each vessel segment measured was recorded. The normalized mean intensity values from all images were ranked according to vessel types and size with a total of nine categories. F-actin was present throughout the macular microvasculature whereas αSMA labeling showed variations. Overall, αSMA has a more prominent presence in the macular arterioles than in the macular capillaries and venules, and αSMA strongly labeled the smaller macular arterioles. Some capillaries also labeled positive for αSMA, including some of the capillaries in the innermost capillary ring surrounding the foveola. It was weakly present in the capillaries on the venous side and larger venules. In the larger macular arterioles closer to 100 μm in diameter, αSMA labeling was weakly present and not as ubiquitous as in the smaller arterioles. Nonuniform distribution of contractile proteins in the different types, orders, and sizes of macular microvasculature indicates that these vessels may have different contractile capability and roles in macular flow regulation."	"Amlexanox reversed non-alcoholic fatty liver disease through IKKε inhibition of hepatic stellate cell. Amlexanox, an inhibitor of nuclear factor κB kinase epsilon (IKKε) and TANK-binding kinase 1(TBK1), was demonstrated to be effective in diabetes and obesity. The aim of this study was to explore the molecular mechanisms of its role in non-alcoholic fatty liver disease (NAFLD). NAFLD mouse models were established by using eight-week-old male C57BL/6 mice fed with high-fat diet (HFD) or (and) lipopolysaccharide (LPS) for 18 weeks. From the beginning of HFD, HFD-induced mice were subjected to amlexanox or vehicle for 18 weeks. HFD + LPS-induced mice were treated with amlexanox or vehicle for the last 6 weeks. Blood biochemistry parameters were determined using automatic biochemistry analyzer. Histological changes of liver tissue were observed by hematoxylin-eosin (H&amp;E) staining and Oil Red O staining. The expressions of IKKε and smooth muscle actin-α (α-SMA) were evaluated through immunohistochemistry. Serum inflammatory mediator was determined by enzyme linked immunosorbent assay (ELISA). Gene expressions involved in glucose and lipid metabolism, insulin signaling pathway were examined using quantitative RT-PCR or Western blotting. This study demonstrated that amlexanox reversed glucose and lipid metabolic disturbance and hepatic steatosis in NAFLD mice model. IKKε was specific expressed in hepatic stellate cells (HSCs) instead of hepatocytes. This study also found that amlexanox improved insulin signaling (Insulin-IRS-1-Akt) in hepatocytes through inhibiting inflammation (IKKε-NF-κB-TNF-α/IL-1α) in HSCs. The present study confirmed that IKKε was specific expressed in HSCs. Inhibition of activated HSCs was responsible for effects of amlexanox on NAFLD, with improving insulin signal pathway in hepatocytes."	"Single-Cell RNA Sequencing Identifies Yes-Associated Protein 1-Dependent Hepatic Mesothelial Progenitors in Fibrolamellar Carcinoma. Fibrolamellar carcinoma (FLC) is characterized by in-frame fusion of DnaJ heat shock protein family (Hsp40) member B1 (DNAJB1) with protein kinase cAMP-activated catalytic subunit α (PRKACA) and by dense desmoplasia. Surgery is the only effective treatment because mechanisms supporting tumor survival are unknown. We used single-cell RNA sequencing to characterize a patient-derived FLC xenograft model and identify therapeutic targets. Human FLC cells segregated into four discrete clusters that all expressed the oncogene Yes-associated protein 1 (YAP1). The two communities most enriched with cells coexpressing FLC markers [CD68, A-kinase anchoring protein 12 (AKAP12), cytokeratin 7, epithelial cell adhesion molecule (EPCAM), and carbamoyl palmitate synthase-1] also had the most cells expressing YAP1 and its proproliferative target genes (AREG and CCND1), suggesting these were proliferative FLC cell clusters. The other two clusters were enriched with cells expressing profibrotic YAP1 target genes, ACTA2, ELN, and COL1A1, indicating these were fibrogenic FLC cells. All clusters expressed the YAP1 target gene and mesothelial progenitor marker mesothelin, and many mesothelin-positive cells coexpressed albumin. Trajectory analysis predicted that the four FLC communities were derived from a single cell type transitioning among phenotypic states. After establishing a novel FLC cell line that harbored the DNAJB1-PRKACA fusion, YAP1 was inhibited, which significantly reduced expression of known YAP1 target genes as well as cell growth and migration. Thus, both FLC epithelial and stromal cells appear to arise from DNAJB1-PRKACA fusion in a YAP1-dependent liver mesothelial progenitor, identifying YAP1 as a target for FLC therapy."	"Tackling MARCKS-PIP3 circuit attenuates fibroblast activation and fibrosis progression. Targeting activated fibroblasts, including myofibroblast differentiation, has emerged as a key therapeutic strategy in patients with idiopathic pulmonary fibrosis (IPF). However, there is no available therapy capable of selectively eradicating myofibroblasts or limiting their genesis. Through an integrative analysis of the regulator genes that are responsible for the activation of IPF fibroblasts, we noticed the phosphatidylinositol 4,5-bisphosphate (PIP2)-binding protein, myristoylated alanine-rich C-kinase substrate (MARCKS), as a potential target molecule for IPF. Herein, we have employed a 25-mer novel peptide, MARCKS phosphorylation site domain sequence (MPS), to determine if MARCKS inhibition reduces pulmonary fibrosis through the inactivation of PI3K/protein kinase B (AKT) signaling in fibroblast cells. We first observed that higher levels of MARCKS phosphorylation and the myofibroblast marker α-smooth muscle actin (α-SMA) were notably overexpressed in all tested IPF lung tissues and fibroblast cells. Treatment with the MPS peptide suppressed levels of MARCKS phosphorylation in primary IPF fibroblasts. A kinetic assay confirmed that this peptide binds to phospholipids, particularly PIP2, with a dissociation constant of 17.64 nM. As expected, a decrease of phosphatidylinositol (3,4,5)-trisphosphate pools and AKT activity occurred in MPS-treated IPF fibroblast cells. MPS peptide was demonstrated to impair cell proliferation, invasion, and migration in multiple IPF fibroblast cells in vitro as well as to reduce pulmonary fibrosis in bleomycin-treated mice in vivo. Surprisingly, we found that MPS peptide decreases α-SMA expression and synergistically interacts with nintedanib treatment in IPF fibroblasts. Our data suggest MARCKS as a druggable target in pulmonary fibrosis and also provide a promising antifibrotic agent that may lead to effective IPF treatments.-Yang, D. C., Li, J.-M., Xu, J., Oldham, J., Phan, S. H., Last, J. A., Wu, R., Chen, C.-H. Tackling MARCKS-PIP3 circuit attenuates fibroblast activation and fibrosis progression."	"Nephroprotective effect of losartan in IgA model rat. NA"	"The A3 adenosine receptor agonist, namodenoson, ameliorates non‑alcoholic steatohepatitis in mice. The Wnt/β‑catenin pathway confers a chain of molecular events in livers affected by non‑alcoholic steatohepatitis (NASH). Namodenoson, a selective agonist of the A3 adenosine receptor (A3AR), which is highly expressed in pathological liver cells, induces a robust anti‑inflammatory effect in the liver, mediated via the de‑regulation of the Wnt/β‑catenin pathway. Namodenoson also acts as a liver protective agent by inhibiting ischemia/reperfusion injury. Based on these unique characteristics, we investigated the anti‑NASH effect of Namodenoson in murine models of steatohepatitis and in the LX2 human hepatic stellate cell line (HSC). In the STAM model, Namodenoson significantly decreased the non‑alcoholic fatty liver disease (NAFLD) activity score, NAS, demonstrating anti‑inflammatory and anti‑steatotic effects. In the carbon tetrachloride (CCl4) model, Namodenoson reversed alanine aminotransferase (ALT) to normal values and significantly improved liver inflammation and fibrosis, as well as the adiponectin and leptin levels. Namodenoson de‑regulated the Wnt/β‑catenin pathway in the liver extracts of the CCl4 model mice and in the LX2 HSCs, manifested by a decrease in the expression of phosphoinositide 3‑kinase (PI3K), nuclear factor κ‑light‑chain‑enhancer of activated B cells (NF‑κB), β‑catenin, lymphoid enhancer‑binding factor 1 (Lef‑1) and cyclin D1, and an increase in the expression level of glycogen synthase kinase 3β (GSK‑3β). The fibrosis marker, α‑smooth muscle actin (α‑SMA) was also de‑regulated, supporting the anti‑fibrotic effect of Namodenoson. On the whole, the findings of this study demonstrate that Namodenoson exerts an anti‑NASH effect mediated via the de‑regulation of the PI3K/NF‑κB/Wnt/β‑catenin signaling pathway. Thus, targeting A3AR may prove to be a novel direction in the pharmacotherapy of NAFLD/NASH."	"Transcriptional characterisation of human lung cells identifies novel mesenchymal lineage markers. The lung mesenchyme gives rise to multiple distinct lineages of cells in the mature respiratory system, including smooth muscle cells of the airway and vasculature. However, a thorough understanding of the specification and mesenchymal cell diversity in the human lung is lacking. We completed single-cell RNA sequencing analysis of fetal human lung tissues. Canonical correlation analysis, clustering, cluster marker gene identification and t-distributed stochastic neighbour embedding representation was performed in Seurat. Cell populations were annotated using ToppFun. Immunohistochemistry and in situ hybridisation were used to validate spatiotemporal gene expression patterns for key marker genes. We identified molecularly distinct populations representing &quot;committed&quot; fetal human lung endothelial cells, pericytes and smooth muscle cells. Early endothelial lineages expressed &quot;classic&quot; endothelial cell markers (platelet endothelial cell adhesion molecule/CD31 and claudin 5), while pericytes expressed platelet-derived growth factor receptor-β, Thy-1 membrane glycoprotein and basement membrane molecules (collagen IV, laminin and proteoglycans). We observed a large population of &quot;nonspecific&quot; human lung mesenchymal progenitor cells characterised by expression of collagen I and multiple elastin fibre genes (ELN, MFAP2 and FBN1). We closely characterised the diversity of mesenchymal lineages defined by α2-smooth muscle actin (ACTA2) expression. Two cell populations, with the highest levels of ACTA2 transcriptional activity, expressed unique sets of markers associated with airway or vascular smooth muscle cells. Spatiotemporal analysis of these marker genes confirmed early and persistent spatial specification of airway (HHIP, MYLK and IGF1) and vascular (NTRK3 and MEF2C) smooth muscle cells in the developing human lung. Our data suggest that specification of distinct airway and vascular smooth muscle cell phenotypes is established early in development and can be identified using the markers we provide."	"Interleukin-2 induces extracellular matrix synthesis and TGF-β2 expression in retinal pigment epithelial cells. Macular fibrosis is a vital obstacle of vision acuity improvement of age-related macular degeneration patients. This study was to investigate the effects of interleukin 2 (IL-2) on epithelial-mesenchymal transition (EMT), extracellular matrix (ECM) synthesis and transforming growth factor β2 (TGF-β2) expression in retinal pigment epithelial (RPE) cells. 10 μg/L IL-2 was used to induce fibrosis in RPE cells for various times. Western blot was used to detect the EMT marker α-smooth muscle actin (α-SMA), ECM markers fibronectin (Fn) and type 1 collagen (COL-1), TGF-β2, and the activation of the JAK/STAT3 and NF-κB signaling pathway. Furthermore, JAK/STAT3 and NF-κB signaling pathways were specifically blocked by WP1066 or BAY11-7082, respectively, and the expression of α-SMA, COL-1, Fn and TGF-β2 protein were detected. Wound healing and Transwell assays were used to measure cell migration ability of IL-2 with or without WP1066 or BAY11-7082. After induction of IL-2, the expressions of Fn, COL-1, TGF-β2 protein were significantly increased, and this effect was correlated with IL-2 treatment duration, while α-SMA protein expression did not change significantly. Both WP1066 and BAY11-7082 could effectively downregulate the expression of Fn, COL-1 and TGF-β2 induced by IL-2. What's more, both NF-κB and JAK/STAT3 inhibitors could suppress the activation of the other signaling pathway. Additionally, JAK/STAT3 inhibitor WP1066 and NF-κB inhibitor BAY 11-7082 could obviously decrease RPE cells migration capability induced by IL-2. IL-2 promotes cell migration, ECM synthesis and TGF-β2 expression in RPE cells via JAK/STAT3 and NF-κB signaling pathways, which may play an important role in proliferative vitreoretinopathy."	"A Novel Allosteric Inhibitor of Phosphoglycerate Mutase 1 Suppresses Growth and Metastasis of Non-Small-Cell Lung Cancer. Phosphoglycerate mutase 1 (PGAM1) plays a pivotal role in cancer metabolism and tumor progression via its metabolic activity and interaction with other proteins like α-smooth muscle actin (ACTA2). Allosteric regulation is considered to be an innovative strategy to discover a highly selective and potent inhibitor targeting PGAM1. Here, we identified a novel PGAM1 allosteric inhibitor, HKB99, via structure-based optimization. HKB99 acted to allosterically block conformational change of PGAM1 during catalytic process and PGAM1-ACTA2 interaction. HKB99 suppressed tumor growth and metastasis and overcame erlotinib resistance in non-small-cell lung cancer (NSCLC). Mechanistically, HKB99 enhanced the oxidative stress and altered multiple signaling pathways including the activation of JNK/c-Jun and suppression of AKT and ERK. Collectively, the study highlights the potential of PGAM1 as a therapeutic target in NSCLC and reveals a distinct mechanism by which HKB99 inhibits both metabolic activity and nonmetabolic function of PGAM1 by allosteric regulation."	"Smad interacting protein 1 influences transforming growth factor-β1/Smad signaling in extracellular matrix protein production and hypertrophic scar formation. The transforming growth factor (TGF)-β/Smad signal transduction pathway is closely associated with hypertrophic scar (HS) formation. Smad interacting protein 1 (SIP1) is a cytoplasmic protein that efficiently regulates Smad2-/3-dependent signaling within the TGF-β1 pathway. SIP1 influences collagen synthesis in the HS through a heretofore unknown mechanism. This study investigated the role of the SIP1-mediated TGF-β1/Smad signaling pathway in extracellular matrix (ECM) protein production and hypertrophic scarring. SIP1 expression was markedly lower in HS vs. normal skin (NS) tissue, and α-smooth muscle actin (α-SMA) content and collagen I/III (Col I/III) synthesis were inversely correlated with SIP1 expression. Furthermore, SIP1 inhibited Smad2/3 phosphorylation in vitro, and improved the collagen-based architecture of the scar while reducing collagen expression and overall scar formation in a rabbit ear model of HS. Based on these findings, we propose that SIP1 acts as a molecular modulator capable of altering Smad2-/3-facilitated signaling through the control of Smad phosphorylation, thus inhibiting α-SMA and collagen upregulation in fibroblasts and, ultimately, HS formation. The low SIP1 content in scar tissue also suggests that SIP1 (and positive regulation thereof) is a prospective target for selective HS drug therapy."	"Carcinoma-associated Fibroblasts are a Common Finding in the Microenvironment of HPV-positive Oropharyngeal Squamous Cell Carcinoma. The important role of the human papillomavirus (HPV) is widely established in oropharyngeal squamous cell carcinoma (OPSCC). The behavior of a OPSCCs especially induced by HPV might be influenced by the tissue microenvironment and its changes according to the tumor nature. Recognition of the role of the tumor microenvironment on the behavior of neoplastic cells has led to utilization of the microenvironment to use as therapeutic target. Carcinoma-associated fibroblasts (CAFs), the most abundant cells in the tumor microenvironment, show wide-spread expression of alpha-smooth muscle actin (α-SMA). We focused on CAFs, its presence in OPSCC and the relationship with HPV for the first time. Expression of α-SMA protein in CAFs of the tumor microenvironment of the 44 formalin-fixed paraffin-embedded tissue blocks from the primary tumor of OPSCC evaluated by immunohistochemistry between HPV-positive and HPV-negative tumors separated by nested polymerase chain reaction. In 44 samples 23 HPV-positive cases were detected. Statistically there were significant differences between histopathologic grade, percent and final score of α-SMA and HPV expression. Significant difference between HPV expression and inflammation, intensity, and clinical parameters was not identified in the present study. Our results indicate that CAFs are a common finding in the microenvironment of HPV-positive OPSCC and associated with higher histopathologic grade. Therapeutic strategies to use CAF-mediated drugs need to be considered and evaluated more for treatment of HPV-positive OPSCC."	"Allogeneic platelet-rich plasma (PRP) is superior to platelets or plasma alone in stimulating fibroblast proliferation and migration, angiogenesis, and chemotaxis as relevant processes for wound healing. Platelet-rich plasma (PRP) is frequently used in the treatment of acute and chronic wounds. One of the major problems concerning the use of PRP is the absence of a well-characterized and standardized product, which leads to a high variety in study outcomes. Therefore, more studies on the composition and standardization of PRP in wound healing are needed. Platelet concentrates derived from healthy blood donors were made in plasma (PC-plasma) or platelet additive solution (PC-PAS). The effects of PC-plasma, PC-PAS, and plasma were then tested on proliferation, differentiation, and migration of fibroblasts, as well as sprouting of endothelial cells in fibrin gels and chemotaxis of white blood cells (WBCs). PC-plasma stimulates the migration and proliferation of human dermal fibroblasts more than plasma or platelets alone. Furthermore, platelet factors decrease the expression of α-smooth muscle actin in dermal fibroblast cultures. PC-plasma also stimulates sprouting of endothelial cells. Finally, PC-plasma also acts as a strong chemoattractant for WBCs. Allogeneic PC-plasma has beneficial effects on various aspects of wound healing in vitro and is superior to plasma or platelets alone. PC-plasma is an attractive candidate for further in vivo evaluation."	"RAB18 modulates autophagy in human stellate cells. Macroautophagy (or autophagy) is a conserved degradative pathway that breaks down sequestered cytoplasmic proteins and organelles in specialized double-membrane compartments called autophagosomes that fuse with lysosomes. Several proteins orchestrate this process, specifically Rab GTPases that are master regulators of molecular trafficking. RAB18 GTPase, a known mediator of stellate cell activation, is known to modulate autophagic flux in fibroblasts. However, its role in autophagy is unexplored in hepatic stellate cells. The aim of this study was to investigate the role of RAB18 in modulating autophagy in hepatic stellate cells. Role of RAB18 was determined by genetic depletion, pharmacologic inhibition, and overexpression studies to monitor autophagy flux and proteostasis in human LX2 stellate cell line. RAB18 knockdown increases autophagy flux and regulates proteostasis. LX2 cells stimulated with transforming growth factor-beta robustly increases expression of profibrotic genes such as COL1A1 and ACTA2 along with RAB18 and its guanine nucleotide exchange factor, RAB3GAP1. The study elucidates a role for RAB18 in autophagy and regulation of proteostasis in human stellate cells. Molecular insights into this process can provide therapeutic opportunities for intervention in liver fibrosis."	"MicroRNA-146a-5p Attenuates Fibrosis-related Molecules in Irradiated and TGF-beta1-Treated Human Hepatic Stellate Cells by Regulating PTPRA-SRC Signaling. MicroRNAs (miRNAs) have been shown to play a pivotal role in the pathogenesis and maintenance of liver fibrosis by altering expression of their downstream target genes. However, their role in radiation-induced liver fibrosis has not been assessed in detail. Here, we investigated the role of miR-146a-5p and the target gene in regulation of fibrosis-related markers in the human hepatic stellate cell line LX2. LX2 cells were stimulated with 8 Gy of X rays and various concentrations of TGF-β1 (0-5 ng/ml). Expression of α-SMA, collagen 1 and miR-146a-5p was evaluated. The MiR-146a-5p target gene predictions were performed using bioinformatics analysis and confirmed by dual-luciferase reporter experiment. The effect of miR-146a-5p and the involved target gene on the expression of these fibrogenic molecules was also assessed. Expression of α-SMA and collagen 1 were upregulated in response to radiation and/or TGF-β1 treatment and miR-146a-5p levels were altered in LX2 cells. Restoration of miR-146a-5p expression suppressed expression of α-SMA and collagen 1 in irradiated and TGF-β1-treated LX2 cells. Subsequent mechanism experiments revealed that miR-146a-5p overexpression inhibited PTPRA expression by binding to its 3'-untrans-lated region and reduced SRC activation. In addition, enhancement of PTPRA partially reversed the suppressive effect of miR-146a-5p on α-SMA and collagen 1 expression in LX2 cells. In conclusion, miR-146a-5p may negatively regulate the PTPRA-SRC signaling to inhibit expression of fibrosis-related markers in irradiated and TGF-β1-stimulated LX2 cells."	"Interleukin-11 is a therapeutic target in idiopathic pulmonary fibrosis. Idiopathic pulmonary fibrosis (IPF) is a progressive fibrotic lung disease where invasive pulmonary myofibroblasts secrete collagen and destroy lung integrity. Here, we show that interleukin-11 (IL11) is up-regulated in the lung of patients with IPF, associated with disease severity, and IL-11 is secreted from IPF fibroblasts. In vitro, IL-11 stimulates lung fibroblasts to become invasive actin alpha 2, smooth muscle-positive (ACTA2<sup>+</sup>), collagen-secreting myofibroblasts in an extracellular signal-regulated kinase (ERK)-dependent, posttranscriptional manner. In mice, fibroblast-specific transgenic expression or administration of murine IL-11 induces lung myofibroblasts and causes lung fibrosis. IL-11 receptor subunit alpha-1 (Il11ra1)-deleted mice, whose lung fibroblasts are unresponsive to profibrotic stimulation, are protected from fibrosis in the bleomycin mouse model of pulmonary fibrosis. We generated an IL-11-neutralizing antibody that blocks lung fibroblast activation downstream of multiple stimuli and reverses myofibroblast activation. In therapeutic studies, anti-IL-11 treatment diminished lung inflammation and reversed lung fibrosis while inhibiting ERK and SMAD activation in mice. These data prioritize IL-11 as a drug target for lung fibrosis and IPF."	"Identification of key microRNAs and genes associated with abdominal aortic aneurysm based on the gene expression profile. What is the central question of this study? The aim was to identify abdominal aortic aneurysm (AAA)-associated microRNAs and their target genes in AAA using microarray analysis. What is the main finding and its importance? The main finding was that miR-145 and miR-30c-2* were found to be downregulated microRNAs in AAA, which could exert suppressive effects on AAA progression, and that miR-145 might target RAC2, whereas miR-30c-2* might target PIK3CD, IL1B and RAC2. The findings obtained from the study provide an enhanced understanding of microRNA as a therapeutic target to limit AAA. The aim of the study was to identify abdominal aortic aneurysm (AAA)-associated microRNAs (miRNAs) and genes potentially contributing to AAA. Differential analysis was performed to screen out differentially expressed genes (DEGs) and miRNAs in expression datasets of AAA-related miRNAs [GSE51226 (mouse)] and genes [GSE51227 (mouse) and GSE7084 (human)]. Then, gene ontology (GO) enrichment analysis of DEGs was compared with aneurysm-related GO to screen out DEGs related to the disease. The target genes of differential miRNAs were predicted and used to construct a miRNA-DEG regulatory network, followed by Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis of target genes. Moreover, the protein-protein interaction network of target genes of miRNAs in the core position (hub-miRNA) with AAA-related genes was constructed to screen out hub genes. Finally, the target relationship between hub-miRNAs and their target genes was verified. There were 20 upregulated miRNAs and 20 downregulated miRNAs in AAA screened from the GSE51226 dataset (mouse). In addition, there were 1154 upregulated genes and 821 downregulated genes in the GSE51227 dataset (mouse), of which 246 DEGs were enriched in aneurysm-related GO entries in AAA. miR-145 and miR-30c-2* were the key miRNAs of AAA, both of which were downregulated in AAA and influenced pathways so as to affect AAA by regulating their respective target genes. The disease-related gene ACTA2 was downregulated, whereas DEGs including PIK3CD, IL1B, RAC2 and SELL were upregulated in AAA. Finally, it was proved that miR-145 targeted RAC2 and SELL, whereas miR-30c-2* targeted PIK3CD, IL1B and RAC2. Taken together, miR-145 and miR-30c-2*, downregulated in AAA, could potentially affect AAA, and miR-145 might target RAC2, whereas miR-30c-2* might target PIK3CD, IL1B and RAC2."	"Histological comparison of in vitro and in vivo development of peripheral posterior capsule opacification in human donor tissue. In order to study the mechanisms involved in the development of posterior capsule opacification (PCO) we compared in vivo developed PCO with PCO formed in tissue culture with focus on the periphery of the lens capsule to evaluate lens regeneration potential. We studied three human tissue groups: Cultured lens capsules after mock cataract surgery (n = 6, 30 days), lens capsules from donors that had previously undergone cataract surgery (IOL capsules) (n = 12) and intact lenses (n = 6). All samples were stained with Vimentin, alpha Smooth Muscle Actin, Picro Sirius Red (for collagen) and Paired box protein (Pax6). We found that cultured capsules and less developed IOL capsules consisted mainly of monolayers of mesenchymal cells, while more developed IOL capsules, contained lens epithelial cells (LECs), globular cells and lens fiber cells. Many IOL capsule samples expressed collagen I and III in areas where cells were in contact with the IOL. Pax6 had a similar dispersed distribution in less developed IOL capsules and cultured capsules, while more developed IOL capsules and intact lenses, concentrated Pax6 in LECs at the equatorial lens bow. The similarities between cultured capsules and less developed IOL capsules indicate that our in vitro developed PCO is comparable to early in vivo developed PCO. The similar morphology of more developed IOL capsules and intact lenses seems to indicate an attempt at lens regeneration."	"Proton pump inhibitors attenuate myofibroblast formation associated with thyroid eye disease through the aryl hydrocarbon receptor. Thyroid eye disease (TED) can lead to scar formation and tissue remodeling in the orbital space. In severe cases, the scarring process leads to sight-threatening pathophysiology. There is no known effective way to prevent scar formation in TED patients, or to reverse scarring once it occurs. In this study, we show that the proton pump inhibitors (PPIs), esomeprazole and lansoprazole, can prevent transforming growth factor beta (TGFβ)-mediated differentiation of TED orbital fibroblasts to myofibroblasts, a critical step in scar formation. Both PPIs prevent TGFβ-induced increases in alpha-smooth muscle actin (αSMA), calponin, and collagen production and reduce TED orbital fibroblast cell proliferation and migration. Esomeprazole and lansoprazole exert these effects through an aryl hydrocarbon receptor (AHR)-dependent pathway that includes reducing β-catenin/Wnt signaling. We conclude that PPIs are potentially useful therapies for preventing or treating TED by reducing the myofibroblast accumulation that occurs in the disease."	"Resveratrol Inhibits Wound Healing and Lens Fibrosis: A Putative Candidate for Posterior Capsule Opacification Prevention. Posterior capsule opacification (PCO) is a common complication of cataract surgery. In addition to improved surgical methods and IOL designs, it is likely additional agents will be needed to improve patient outcomes. Presently no pharmacological agent is in clinical use to prevent PCO. Here we investigate the putative ability of resveratrol (RESV), a naturally occurring polyphenol, as a therapeutic agent. The human lens epithelial cell line FHL124, a human lens capsular bag model, and central anterior epithelium were used as experimental systems. Standard culture was in 5% fetal calf serum Eagle's minimum essential medium; 10 ng/mL transforming growth factor-β2 (TGFβ2) was used to induce fibrotic changes. A scratch wound assay was used to measure cell migration and the patch assay was used to assess matrix contraction by FHL124 cells. Protein expression was assessed by immunocytochemistry and Western blot and gene expression by quantitative RT-PCR. In capsular bags, cell growth across the posterior lens capsule, capsular wrinkling, and epithelial-to-mesenchymal transition were determined by image analysis. In FHL124 cells, addition of 30 μM RESV significantly impeded cell migration in a wound-healing assay. RESV significantly inhibited TGFβ2-induced expression of the myofibroblast marker alpha-smooth muscle actin (α-SMA) at both the message and protein levels, as well as significantly inhibiting matrix contraction induced by TGFβ2. In human capsular bags, 30 μM RESV significantly inhibited cell growth. TGFβ2-induced α-SMA expression and capsular wrinkling were also significantly inhibited by RESV treatment. RESV significantly suppressed expression of TGFβ2-induced genes associated with fibrotic disease, including matrix metalloproteinase-2 in FHL124 cells, capsular bags, and central anterior epithelium. RESV can counter PCO-related physiological events in two human lens model systems. RESV therefore has the potential to be used as a candidate agent for the prevention of PCO, which in turn could benefit millions of cataract patients."	"DNA methyltransferase inhibitor suppresses fibrogenetic changes in human conjunctival fibroblasts. This study aimed to clarify the effects of a DNA methyltransferase inhibitor on fibrogenetic changes in human conjunctival fibroblasts (HConF). HConF were pretreated with the DNA methyltransferase inhibitor 5-aza-2'-deoxycytidine (5-Aza-dC) for 48 h. After one passage, the cells were treated with 5 ng/ml of transforming growth factor (TGF)-β2 for 48 h, and the expression levels of α-smooth muscle actin (α-SMA), extracellular matrix proteins, and phosphorylated Smad3 were evaluated with western blotting. A fusion construct between the COL1A2 promoter and the luciferase gene was introduced into the HConF after the first passage, and the construct's activity was detected via a luciferase reporter gene assay. TGF-β2-induced upregulation of α-SMA was suppressed by pretreatment with 5-Aza-dC (0.1, 1.0, and 10 μM) in a dose-dependent manner. Upregulation of type I collagen was also suppressed by 10 μM 5-Aza-dC pretreatment. In contrast, 5-Aza-dC had no inhibitory effect on the expression of fibronectin or phosphorylated Smad3. However, COL1A2 promoter activity was suppressed with 5-Aza-dC pretreatment. In HConF, fibrogenetic changes were partly suppressed with a DNA methyltransferase inhibitor, suggesting an indirect inhibitory effect of the inhibitor on the COL1A2 promoter in HConF."	"Impact of statins on cellular respiration and de-differentiation of myofibroblasts in human failing hearts. Fibroblast to myofibroblast trans-differentiation with altered bioenergetics precedes cardiac fibrosis (CF). Either prevention of differentiation or promotion of de-differentiation could mitigate CF-related pathologies. We determined whether 3-hydroxy-3-methyl-glutaryl-coenzyme A (HMG-CoA) reductase inhibitors-statins, commonly prescribed to patients at risk of heart failure (HF)-can de-differentiate myofibroblasts, alter cellular bioenergetics, and impact the human ventricular fibroblasts (hVFs) in HF patients. Either in vitro statin treatment of differentiated myofibroblasts (n = 3-6) or hVFs, isolated from human HF patients under statin therapy (HF + statin) vs. without statins (HF) were randomly used (n = 4-12). In vitro, hVFs were differentiated by transforming growth factor-β1 (TGF-β1) for 72 h (TGF-72 h). Differentiation status and cellular oxygen consumption rate (OCR) were determined by α-smooth muscle actin (α-SMA) expression and Seahorse assay, respectively. Data are mean ± SEM except Seahorse (mean ± SD); P &lt; 0.05, considered significant. In vitro, statins concentration-dependently de-differentiated the myofibroblasts. The respective half-maximal effective concentrations were 729 ± 13 nmol/L (atorvastatin), 3.6 ± 1 μmol/L (rosuvastatin), and 185 ± 13 nmol/L (simvastatin). Mevalonic acid (300 μmol/L), the reduced product of HMG-CoA, prevented the statin-induced de-differentiation (α-SMA expression: 31.4 ± 10% vs. 58.6 ± 12%). Geranylgeranyl pyrophosphate (GGPP, 20 μmol/L), a cholesterol synthesis-independent HMG-CoA reductase pathway intermediate, completely prevented the statin-induced de-differentiation (α-SMA/GAPDH ratios: 0.89 ± 0.05 [TGF-72 h + 72 h], 0.63 ± 0.02 [TGF-72 h + simvastatin], and 1.2 ± 0.08 [TGF-72 h + simvastatin + GGPP]). Cellular metabolism involvement was observed when co-incubation of simvastatin (200 nmol/L) with glibenclamide (10 μmol/L), a KATP channel inhibitor, attenuated the simvastatin-induced de-differentiation (0.84 ± 0.05). Direct inhibition of mitochondrial respiration by oligomycin (1 ng/mL) also produced a de-differentiation effect (0.33 ± 0.02). OCR (pmol O2 /min/μg protein) was significantly decreased in the simvastatin-treated hVFs, including basal (P = 0.002), ATP-linked (P = 0.01), proton leak-linked (P = 0.01), and maximal (P &lt; 0.001). The OCR inhibition was prevented by GGPP (basal OCR [P = 0.02], spare capacity OCR [P = 0.008], and maximal OCR [P = 0.003]). Congruently, hVFs from HF showed an increased population of myofibroblasts while HF + statin group showed significantly reduced cellular respiration (basal OCR [P = 0.021], ATP-linked OCR [P = 0.047], maximal OCR [P = 0.02], and spare capacity OCR [P = 0.025]) and myofibroblast differentiation (α-SMA/GAPDH: 1 ± 0.19 vs. 0.23 ± 0.06, P = 0.01). This study demonstrates the de-differentiating effect of statins, the underlying GGPP sensitivity, reduced OCR with potential activation of KATP channels, and their impact on the differentiation magnitude of hVFs in HF patients. This novel pleiotropic effect of statins may be exploited to reduce excessive CF in patients at risk of HF."	"Inhibitory effects of astragaloside IV on silica-induced pulmonary fibrosis via inactivating TGF-β1/Smad3 signaling. To observe the effect of astragaloside ASV (ASV) on silicosis fibroblasts, and further investigate its regulatory mechanism on TGF-β1/Smad3 signaling pathway. Silica-induced rats model was established in this study. RT-qPCR was performed to detect α-SMA, Collagen I, Collagen III, Smad2, Smad3 and Smad7 expression. Immunofluorescence was conducted to detect α-SMA, Collagen I, Collagen III and p-Smad3 protein and the nucleoplasmic distribution of p-Smad3.Western-blotting was performed to detect the protein of Smad2, p-Smad2, Smad3, p-Smad3 and Smad7. 20 μg/mL ASV could effectively reduce the expression of α-SMA, Collagen I, Collagen III. TGF-β1 stimulated the proliferation of fibroblasts, promoted phosphorylation of Smad2 and Smad3, and down-regulated Smad7 expression. Among them, continuous phosphorylation of Smad3 is a major factor in causing fibrosis. Besides, ASV can inhibit silica-induced lung fibroblast fibrosis through TGF-β1/Smad3 signaling pathway, thereby inhibiting the formation of silicosis. ASV could inhibit the expression of collagen in fibroblasts and the transformation to myofibroblasts, and has an anti-silicosis fibrosis effect, which may be related to the continuous phosphorylation of Smad3 in the TGF-β1/Smad signaling pathway."	"Co‑culturing with hypoxia pre‑conditioned mesenchymal stem cells as a new strategy for the prevention of irradiation‑induced fibroblast‑to‑myofibroblast transition. Cardiac fibrosis is a pathological consequence of radiation‑induced fibroblast proliferation and fibroblast‑to‑myofibroblast transition (FMT). Mesenchymal stem cell (MSC) transplantation has been revealed to be an effective treatment strategy to inhibit cardiac fibrosis. We identified a novel MSC‑driven mechanism that inhibited cardiac fibrosis, via the regulation of multiple fibrogenic pathways. Hypoxia pre‑conditioned MSCs (MSCsHypoxia) were co‑cultured with fibroblasts using a Transwell system. Radiation‑induced fibroblast proliferation was assessed using an MTT assay, and FMT was confirmed by assessing the mRNA levels of various markers of fibrosis, including type I collagen (Col1) and alpha smooth muscle actin (α‑SMA). α‑SMA expression was also confirmed via immunocytochemistry. The expression levels of Smad7 and Smad3 were detected by western blotting, and Smad7 was silenced using small interfering RNAs. The levels of oxidative stress following radiation were assessed by the detection of reactive oxygen species (ROS) and the activity of superoxide dismutase (SOD), malondialdehyde (MDA), and 4‑hydroxynonenal (HNE). It was revealed that co‑culturing with MSCsHypoxia could inhibit fibroblast proliferation and FMT. In addition, the present results indicated that MSCs are necessary and sufficient for the inhibition of fibroblast proliferation and FMT by functionally targeting TGF‑β1/Smad7/Smad3 signaling via the release of hepatocyte growth factor (HGF). Furthermore, it was observed that MSCs inhibited fibrosis by modulating oxidative stress. Co‑culturing with MSCsHypoxia alleviated fibroblast proliferation and FMT via the TGF‑β1/Smad7/Smad3 pathway. MSCs may represent a novel therapeutic approach for the treatment of radiation‑related cardiac fibrosis."	"Concordance of p16, FH, and alpha-SMA expression with the fumarate hydratase gene mutational status in sporadic and hereditary piloleiomyomas. NA"	"Liuwei Dihuang soft capsules inhibits the phenotypic conversion of VSMC to prevent the menopausal atherosclerosis by up-regulating the expression of myocardin. Liuwei Dihuang (LWDH) is a classic prescription that has been used as a traditional medicinal formula for more than 1000 years in China. In clinical, LWDF is used for treating functional decline associated with senile disease and menopausal syndrome. Studies have demonstrated that LWDH could significantly improve estrogen level and ER expression, and suspend the process of atherosclerosis. However, the under mechanism of how LWDH suppressing VSMCs phenotypic conversion and proliferation through ER is still unknown. This study was to reveal the under mechanism of how LWDH inhibits the phenotypic conversion of VSMCs. 24 ApoE-/- mice were divided into 4 groups: sham group, model group, E2 group, and LWDH group, and 6 C57BN/L6 mice were used as control group. The primary VSMCs were divided into control group, model group, E2 group, LWDH group, LWDH + MPP group, and LWDH + PHTPP group with or without control siRNA, ERα siRNA, ERβ siRNA, and myocardin siRNA. Oil red staining was used to evaluate the lipid deposition in the cardiac aorta. Serum chemistry analysis to test serum TG, TC, LDL, and HDL. Immunofluorescence staining was used to test α-SMA, osteopontin and F-actin. Immunohistochemical staining was performed to check out the myocardin in the cardiac aorta. The mRNA levels of α-SMA, osteopontin, ERα, ERβ, SRC3 and myocardin were detected by Real Time-PCR, and the protein expression levels of them were detected by Western blotting. Co-immunoprecipitation was proceed to test the interaction between ERα and SRC3 and SRC3 and myocardin. Flow cytometry was used to check out the cell cycle. Wound healing assay and Transwell were managed to evaluate the migration capacity of VSMCs. In vivo administration of LWDH suppressed AS symptoms, decreases phenotypic marker of vascular endothelial cell, and increases phenotypic marker of VSMC in ovariectomized ApoE-/- female mice. Moreover, LWDH significantly increased the mRNA and protein expression levels of ERα, ERβ, SRC3 and myocardin in the cardiac aorta of ovariectomized ApoE-/- female mice. In vitro, LWDH altered cell cycle and reduced the elevated cyclinD protein expression migration capacity and in the model VSMCs. In addition, LWDH inhibited phenotypic conversion and promoted the expression of ER, SRC3, and myocardin of the primary VSMC phenotypic conversion model. Inhibition of ERα almost completely eliminated the impacts of LWDH on α- SMA and osteopontin. Furthermore, LWDH promoted the interaction between ERα and SRC3 and up-regulated the co-activation of SRC3 and myocardin. LWDH could inhibit the phenotypic conversion of VSMCs in vitro and in vivo by increasing the activity of myocardin through up-regulating the expression of ERα and promoting the interaction between ERα and SRC3. Our research reveals the under mechanism of how LWDH inhibits the phenotypic conversion of VSMCs."	"Smooth Muscle α-Actin Deficiency Leads to Decreased Liver Fibrosis via Impaired Cytoskeletal Signaling in Hepatic Stellate Cells. In the liver, smooth muscle α-actin (SM α-actin) is up-regulated in hepatic stellate cells (HSCs) as they transition to myofibroblasts during liver injury and the wound healing response. Whether SM α-actin has specific functional effects on cellular effectors of fibrosis such as HSC is controversial. Here, the relationship between SM α-actin and type 1 collagen expression (COL1A1), a major extracellular matrix protein important in liver fibrosis, is investigated with the results demonstrating that knockout of SM α-actin leads to reduced liver fibrosis and COL1 expression. The mechanism for the reduction in fibrogenesis in vivo is multifactorial, including not only a reduction in the number of HSCs, but also an HSC-specific reduction in COL1 expression in Acta2-deficient HSCs. Despite a compensatory increase in expression of cytoplasmic β-actin and γ-actin isoforms in Acta2<sup>-/-</sup> HSCs, defects were identified in each transforming growth factor beta/Smad2/3 and ET-1/Erk1/2 signaling in Acta2<sup>-/-</sup> HSCs. These data not only suggest a molecular link between the SM α-actin cytoskeleton and classic fibrogenic signaling cascades, but also emphasize the relationship between SM α-actin and fibrogenesis in hepatic myofibroblasts in vivo."	"Pathogenic effect of a TGFBR1 mutation in a family with Loeys-Dietz syndrome. Thoracic aortic aneurysms and dissections (TAAD) may have a heritable cause in up to 20% of cases. We aimed to investigate the pathogenic effect of a TGFBR1 mutation in relation to TAAD. Co-segregation analysis was performed followed by functional investigations, including myogenic transdifferentiation. The c.1043G&gt;A TGFBR1 mutation was found in the index patient, in a deceased brother, and in five presymptomatic family members. Evidence for pathogenicity was found by the predicted damaging effect of this mutation and the co-segregation in the family. Functional analysis with myogenic transdifferentiation of dermal fibroblasts to smooth muscle-like cells, revealed increased myogenic differentiation in patient cells with the TGFBR1 mutation, shown by a higher expression of myogenic markers ACTA2, MYH11 and CNN1 compared to cells from healthy controls. Our findings confirm the pathogenic effect of the TGFBR1 mutation in causing TAAD in Loeys-Dietz syndrome and show increased myogenic differentiation of patient fibroblasts."	"Antifibrotic effects of hypocalcemic vitamin D analogs in murine and human hepatic stellate cells and in the CCl4 mouse model. Liver cirrhosis is a life-threatening consequence of liver fibrosis. The aim of this study was to investigate the antifibrotic potential of clinically available vitamin D analogs compared to that of calcitriol in vitro and in vivo. Murine hepatic stellate cells, Kupffer cells, and human LX-2 cells were treated with vitamin D analogs, and the profibrotic behavior of these cells was studied. In vivo liver fibrosis was induced using CCl4 until measurable fibrosis was established. Animals were then treated with calcitriol and paricalcitol. Vitamin D and its analogs showed antifibrotic effects in vitro. Treatment with active vitamin D (calcitriol, CAL) and its analogs reduced the protein expression of α-smooth muscle actin (α-SMA) in mHSC. In human LX-2 cells alfacalcidol reduced transforming growth factor-β (TGF-β) induced platelet-derived growth factor receptor-β protein expression and contractility while paricalcitol (PCT), in its equipotent dose to CAL, reduced TGF-β induced α-SMA protein expression, and ACTA2 and TGF-β mRNA expression. No effects of a treatment with vitamin D and its analogs were observed in Kupffer cells. In vivo, PCT-treated mice had significantly lower calcium levels than CAL-treated mice. CAL and PCT reduced the hepatic infiltration of CD11b-positive cells and alanine transaminase levels, while PCT but not CAL significantly inhibited fibrosis progression, with a favorable side effect profile in the CCl4 model. We conclude that hypocalcemic vitamin D analogs should be considered in future studies investigating vitamin D for the treatment of liver fibrosis."	"Identification of clinical trait-related lncRNA and mRNA biomarkers with weighted gene co-expression network analysis as useful tool for personalized medicine in ovarian cancer. The pathogenesis and biomarkers of ovarian cancer (OC) remain not well-known in diagnosis, effective therapy, and prognostic assessment in OC personalized medicine. The novel identified lncRNA and mRNA biomarkers from gene co-expression modules associated with clinical traits provide new insight for effective treatment of ovarian cancer. Long non-coding RNAs (lncRNAs) are relevant to tumorigenesis via multiple mechanisms. This study aimed to investigate cancer-specific lncRNAs and mRNAs, and their related networks in OCs. This study comprehensively analyzed lncRNAs and mRNAs with associated competing endogenous RNA (ceRNA) network and lncRNA-RNA binding protein-mRNA network in the OC tissues in the Cancer Genome Atlas, including 2562 cancer-specific lncRNAs (n = 352 OC tissues) and 5000 mRNAs (n = 359 OC tissues). The weighted gene co-expression network analysis (WGCNA) was used to construct the co-expression gene modules and their relationship with clinical traits. The statistically significant difference of identified lncRNAs and mRNAs was confirmed with qRT-PCR in OC cells. An lncRNA-based co-expression module was significantly correlated with patient age at initial pathologic diagnosis, lymphatic invasion, tissues source site, and vascular invasion, and identified 16 lncRNAs (ACTA2-AS1, CARD8-AS1, HCP5, HHIP-AS1, HOTAIRM1, ITGB2-AS1, LINC00324, LINC00605, LINC01503, LINC01547, MIR31HG, MIR155HG, OTUD6B-AS1, PSMG3-AS1, SH3PXD2A-AS1, and ZBED5-AS1) that were significantly related to overall survival in OC patients. An mRNA-based co-expression module was significantly correlated with patient age at initial pathologic diagnosis, lymphatic invasion, tumor residual disease, and vascular invasion; and identified 21 hub-mRNA molecules and 11 mRNAs (FBN3, TCF7L1, SBK1, TRO, TUBB2B, PLCG1, KIAA1549, PHC1, DNMT3A, LAMA1, and C10orf82) that were closely linked with OC patients' overall survival. Moreover, the prognostic model of five-gene signature (OTUD6B-AS1, PSMG3-AS1, ZBED5-AS1, SBK1, and PLCG1) was constructed to predict risk score in OC patients. Furthermore, starBase bioinformatics constructed the lncRNA-miRNA-mRNA and lncRNA-RNA binding protein-mRNA networks in OCs. These new findings showed that lncRNA-related networks in OCs are a useful resource for identification of biomarkers in OCs."	"A bigenic mouse model of FSGS reveals perturbed pathways in podocytes, mesangial cells and endothelial cells. Focal segmental glomerulosclerosis is a major cause of end stage renal disease. Many patients prove unresponsive to available therapies. An improved understanding of the molecular basis of the disease process could provide insights leading to novel therapeutic approaches. In this study we carried out an RNA-seq analysis of the altered gene expression patterns of podocytes, mesangial cells and glomerular endothelial cells of the bigenic Cd2ap+/-, Fyn-/- mutant mouse model of FSGS. In the podocytes we observed upregulation of many genes related to the Tgfβ family/pathway, including Gdnf, Tgfβ1, Tgfβ2, Snai2, Vegfb, Bmp4, and Tnc. The mutant podocytes also showed upregulation of Acta2, a marker of smooth muscle and associated with myofibroblasts, which are implicated in driving fibrosis. GO analysis of the podocyte upregulated genes identified elevated protein kinase activity, increased expression of growth factors, and negative regulation of cell adhesion, perhaps related to the observed podocyte loss. Both podocytes and mesangial cells showed strong upregulation of aldehyde dehydrogenase genes involved in the synthesis of retinoic acid. Similarly, the Cd2ap+/-, Fyn-/- mesangial cells, as well as podocytes in other genetic models, and the glomeruli of human FSGS patients, all show upregulation of the serine protease Prss23, with the common thread suggesting important functionality. Another gene with strong upregulation in the Cd2ap+/-, Fyn-/- mutant mesangial cells as well as multiple other mutant mouse models of FSGS was thrombospondin, which activates the secreted inactive form of Tgfβ. The Cd2ap+/-, Fyn-/- mutant endothelial cells showed elevated expression of genes involved in cell proliferation, angioblast migration, angiogenesis, and neovasculature, all consistent with the formation of new blood vessels in the diseased glomerulus. The resulting global definition of the perturbed molecular pathways in the three major cell types of the mutant glomerulus provide deeper understanding of the molecular pathogenic pathways."	"Identification of the intermediate filament protein synemin/SYNM as a target of myocardin family coactivators. Myocardin (MYOCD) is a critical regulator of smooth muscle cell (SMC) differentiation, but its transcriptional targets remain to be exhaustively characterized, especially at the protein level. Here we leveraged human RNA and protein expression data to identify novel potential MYOCD targets. Using correlation analyses we found several targets that we could confirm at the protein level, including SORBS1, SLMAP, SYNM, and MCAM. We focused on SYNM, which encodes the intermediate filament protein synemin. SYNM rivalled smooth muscle myosin (MYH11) for SMC specificity and was controlled at the mRNA and protein levels by all myocardin-related transcription factors (MRTFs: MYOCD, MRTF-A/MKL1, and MRTF-B/MKL2). MRTF activity is regulated by the ratio of filamentous to globular actin, and SYNM was accordingly reduced by interventions that depolymerize actin, such as latrunculin treatment and overexpression of constitutively active cofilin. Many MRTF target genes depend on serum response factor (SRF), but SYNM lacked SRF-binding motifs in its proximal promoter, which was not directly regulated by MYOCD. Furthermore, SYNM resisted SRF silencing, yet the time course of induction closely paralleled that of the SRF-dependent target gene ACTA2. SYNM was repressed by the ternary complex factor (TCF) FLI1 and was increased in mouse embryonic fibroblasts lacking three classical TCFs (ELK1, ELK3, and ELK4). Imaging showed colocalization of SYNM with the intermediate filament proteins desmin and vimentin, and MRTF-A/MKL1 increased SYNM-containing intermediate filaments in SMCs. These studies identify SYNM as a novel SRF-independent target of myocardin that is abundantly expressed in all SMCs."	"Cellular and cytoskeletal alterations of scleral fibroblasts in response to glucocorticoid steroids. Steroid-induced ocular hypertension can be seen even after trabecular meshwork (TM) bypass/ablation. Thus, the purpose was to investigate steroid-response in cells distal to the TM by using primary scleral fibroblasts. Primary scleral cell cultures were generated using mid-depth scleral wedges from human donor corneo-scleral rims (n = 5) after corneal transplantation. Cells were treated with dexamethasone (DEX; 100 nM) and compared to media (MED)/vehicle (DMSO) controls. Cell size, shape, and migration were studied using the IncuCyte Live-Cell Analysis System. Cytoskeleton was compared using Alexa Fluor-568 Phalloidin and senescence tested by evaluating beta-galactosidase. Western blot comparison was performed for α-SMA, FKBP-51, fibronectin, phospho-myosin light chain, and myocilin. Scleral fibroblasts upregulated FKBP-51 in response to DEX indicating the existence of steroid-responsive pathways. Compared to controls, DEX-treated cells proliferated slower (~50%; p &lt; 0.01-0.02), grew larger (~1.3-fold; p &lt; 0.001), and migrated less (p = 0.01-0.006). Alexa Fluor 568 Phalloidin actin stress fiber labeling was more diffuse in DEX-treated cells (p = 0.001-0.004). DEX-treated cells showed more senescence compared to controls (~1.7-fold; p = 0.01-0.02). However, DEX-treated cells did not show increased cross-linked actin network formation or elevated myocilin/fibronectin/α-SMA/phospho-myosin light chain protein expression. For all parameters, MED- and DMSO-treated control cells were not significantly different. Primary scleral fibroblasts, grown from tissue collected immediately distal to the TM, demonstrated scleral-response behaviors that were similar to, but not identical with, classic TM steroid-response. Further study is needed to understand how these scleral cellular alterations may contribute to steroid-response IOP elevation after TM bypass/ablation surgery."	"Indoxyl sulfate-induced calcification of vascular smooth muscle cells via the PI3K/Akt/NF-κB signaling pathway. Vascular calcification (VC) is highly prevalent in patients with chronic kidney disease (CKD) and contributes to their high rate of cardiovascular mortality. Indoxyl sulfate (IS) is a representative protein-bound uremic toxin in CKD patients, which has been recognized as a major risk factor for VC. Recent studies have demonstrated that nuclear factor-kappa B (NK-κB) is highly activated in the chronic inflammation conditions of CKD patients and participated in the pathogenesis of VC. However, whether NK-κB is involved in the progression of IS-induced VC remains without elucidation. Here, we showed that NK-κB activity was increased in the IS-induced calcification of human aortic smooth muscle cells (HASMCs). Blocking the NK-κB with a selective inhibitor (Bay-11-7082) significantly relieved the osteogenic transdifferentiation of HASMCs, characterized by the downregulation of early osteogenic-specific marker, core-binding factor alpha subunit 1 (Cbfα1), and upregulation of smooth muscle α-actin (α-SMA), a specific vascular smooth muscle cell marker. Besides, IS stimulated the activation of PI3K/Akt signaling. Furthermore, LY294002, a specific inhibitor of PI3K/Akt pathway, attenuated the activation of NK-κB and osteogenic differentiation of HASMCs. Together, these results suggest that PI3K/Akt/NK-κB signaling plays an important role in the pathogenesis of osteogenic transdifferentiation induced by IS."	"SQSTM1/p62 and PPARGC1A/PGC-1alpha at the interface of autophagy and vascular senescence. Defective macroautophagy/autophagy and mitochondrial dysfunction are known to stimulate senescence. The mitochondrial regulator PPARGC1A (peroxisome proliferator activated receptor gamma, coactivator 1 alpha) regulates mitochondrial biogenesis, reducing senescence of vascular smooth muscle cells (VSMCs); however, it is unknown whether autophagy mediates PPARGC1A-protective effects on senescence. Using ppargc1a<sup>-/-</sup> VSMCs, we identified the autophagy receptor SQSTM1/p62 (sequestosome 1) as a major regulator of autophagy and senescence of VSMCs. Abnormal autophagosomes were observed in VSMCs in aortas of ppargc1a<sup>-/-</sup> mice. ppargc1a<sup>-/-</sup> VSMCs in culture presented reductions in LC3-II levels; in autophagosome number; and in the expression of SQSTM1 (protein and mRNA), LAMP2 (lysosomal-associated membrane protein 2), CTSD (cathepsin D), and TFRC (transferrin receptor). Reduced SQSTM1 protein expression was also observed in aortas of ppargc1a<sup>-/-</sup> mice and was upregulated by PPARGC1A overexpression, suggesting that SQSTM1 is a direct target of PPARGC1A. Inhibition of autophagy by 3-MA (3 methyladenine), spautin-1 or Atg5 (autophagy related 5) siRNA stimulated senescence. Rapamycin rescued the effect of Atg5 siRNA in Ppargc1a<sup>+/+</sup> , but not in ppargc1a<sup>-/-</sup> VSMCs, suggesting that other targets of MTOR (mechanistic target of rapamycin kinase), in addition to autophagy, also contribute to senescence. Sqstm1 siRNA increased senescence basally and in response to AGT II (angiotensin II) and zinc overload, two known inducers of senescence. Furthermore, Sqstm1 gene deficiency mimicked the phenotype of Ppargc1a depletion by presenting reduced autophagy and increased senescence in vitro and in vivo. Thus, PPARGC1A upregulates autophagy reducing senescence by a SQSTM1-dependent mechanism. We propose SQSTM1 as a novel target in therapeutic interventions reducing senescence. 3-MA: 3 methyladenine; ACTA2/SM-actin: actin, alpha 2, smooth muscle, aorta; ACTB/β-actin: actin beta; AGT II: angiotensin II; ATG5: autophagy related 5; BECN1: beclin 1; CAT: catalase; CDKN1A: cyclin-dependent kinase inhibitor 1A (P21); Chl: chloroquine; CTSD: cathepsin D; CYCS: cytochrome C, somatic; DHE: dihydroethidium; DPBS: Dulbecco's phosphate-buffered saline; EL: elastic lamina; EM: extracellular matrix; FDG: fluorescein-di-β-D-galactopyranoside; GAPDH: glyceraldehyde-3-phosphate dehydrogenase; γH2AFX: phosphorylated H2A histone family, member X, H2DCFDA: 2',7'-dichlorodihydrofluorescein diacetate; LAMP2: lysosomal-associated membrane protein 2; MASMs: mouse vascular smooth muscle cells; MEF: mouse embryonic fibroblast; NBR1: NBR1, autophagy cargo receptor; NFKB/NF-κB: nuclear factor of kappa light polypeptide gene enhancer in B cells; MTOR: mechanistic target of rapamycin kinase; NFE2L2: nuclear factor, erythroid derived 2, like 2; NOX1: NADPH oxidase 1; OPTN: optineurin; PFA: paraformaldehyde; PFU: plaque-forming units; PPARGC1A/PGC-1α: peroxisome proliferator activated receptor, gamma, coactivator 1 alpha; Ptdln3K: phosphatidylinositol 3-kinase; RASMs: rat vascular smooth muscle cells; ROS: reactive oxygen species; SA-GLB1/β-gal: senescence-associated galactosidase, beta 1; SASP: senescence-associated secretory phenotype; SIRT1: sirtuin 1; Spautin 1: specific and potent autophagy inhibitor 1; SQSTM1/p62: sequestosome 1; SOD: superoxide dismutase; TEM: transmission electron microscopy; TFEB: transcription factor EB; TFRC: transferrin receptor; TRP53/p53: transformation related protein 53; TUBG1: tubulin gamma 1; VSMCs: vascular smooth muscle cells; WT: wild type."	"Interferon regulatory factor 7 (IRF7) represents a link between inflammation and fibrosis in the pathogenesis of systemic sclerosis. There is considerable evidence that implicates dysregulation of type I interferon signalling (or type I IFN signature) in the pathogenesis of systemic sclerosis (SSc). Interferon regulatory factor 7 (IRF7) has been recognised as a master regulator of type I IFN signalling. The objective of this study was to elucidate the role of IRF7 in dermal fibrosis and SSc pathogenesis. SSc and healthy control skin biopsies were investigated to determine IRF7 expression and activation. The role of IRF7 in fibrosis was investigated using IRF7 knockout (KO) mice in the bleomycin-induced and TSK/+mouse models. In vitro experiments with dermal fibroblasts from patients with SSc and healthy controls were performed. IRF7 expression was significantly upregulated and activated in SSc skin tissue and explanted SSc dermal fibroblasts compared with unaffected, matched controls. Moreover, IRF7 expression was stimulated by IFN-α in dermal fibroblasts. Importantly, IRF7 co-immunoprecipitated with Smad3, a key mediator of transforming growth factor (TGF)-β signalling, and IRF7 knockdown reduced profibrotic factors in SSc fibroblasts. IRF7 KO mice demonstrated attenuated dermal fibrosis and inflammation compared with wild-type mice in response to bleomycin. Specifically, hydroxyproline content, dermal thickness as well as Col1a2, ACTA2 and interleukin-6 mRNA levels were significantly attenuated in IRF7 KO mice skin tissue. Furthermore, IRF7 KO in TSK/+mice attenuated hydroxyproline content, subcutaneous hypodermal thickness, Col1a2 mRNA as well as α-smooth muscle actin and fibronectin expression. IRF7 is upregulated in SSc skin, interacts with Smad3 and potentiates TGF-β-mediated fibrosis, and therefore may represent a promising therapeutic target in SSc."	"Ablation of serum response factor in hepatic stellate cells attenuates liver fibrosis. Trans-differentiation, or activation, of hepatic stellate cells (HSCs) is a hallmark event in liver fibrosis although the underlying mechanism is not fully appreciated. Serum response factor (SRF) is a pleiotropic sequence-specific transcription factor with a ubiquitous expression pattern. In the present study, we investigated the effect of HSC-specific ablation of SRF on liver fibrosis in vivo and the underlying mechanism. We report that SRF bound to the promoter regions of pro-fibrogenic genes, including collagen type I (Col1a1/Col1a2) and alpha smooth muscle actin (Acta2), with greater affinity in activated HSCs compared to quiescent HSCs. Ablation of SRF in HSCs in vitro downregulated the expression of fibrogenic genes by dampening the accumulation of active histone marks. SRF also interacted with MRTF-A, a well-documented co-factor involved in liver fibrosis, on the pro-fibrogenic gene promoters during HSC activation. In addition, SRF directly regulated MRTF-A transcription in activated HSCs. More importantly, HSC conditional SRF knockout (CKO) mice developed a less robust pro-fibrogenic response in the liver in response to CCl4 injection and BDL compared to wild-type littermates. In conclusion, our data demonstrate that SRF may play an essential role in HSC activation and liver fibrosis. KEY MESSAGES: • SRF deficiency decelerates activation of hepatic stellate cells (HSCs) in vitro. • SRF epigenetically activates pro-fibrogenic transcription to promote HSC maturation. • SRF interacts with MRTF-A and contributes to MRTF-A transcription. • Conditional SRF deletion in HSCs attenuates BDL-induced liver fibrosis in mice. • Conditional SRF ablation in HSCs attenuates CCl4-induced liver fibrosis in mice."	"Generation of a Purified iPSC-Derived Smooth Muscle-like Population for Cell Sheet Engineering. Induced pluripotent stem cells (iPSCs) provide a potential source for the derivation of smooth muscle cells (SMCs); however, current approaches are limited by the production of heterogeneous cell types and a paucity of tools or markers for tracking and purifying candidate SMCs. Here, we develop murine and human iPSC lines carrying fluorochrome reporters (Acta2<sup>hrGFP</sup> and ACTA2<sup>eGFP</sup>, respectively) that identify Acta2<sup>+</sup>/ACTA2<sup>+</sup> cells as they emerge in vitro in real time during iPSC-directed differentiation. We find that Acta2<sup>hrGFP+</sup> and ACTA2<sup>eGFP+</sup> cells can be sorted to purity and are enriched in markers characteristic of an immature or synthetic SMC. We characterize the resulting GFP<sup>+</sup> populations through global transcriptomic profiling and functional studies, including the capacity to form engineered cell sheets. We conclude that these reporter lines allow for generation of sortable, live iPSC-derived Acta2<sup>+</sup>/ACTA2<sup>+</sup> cells highly enriched in smooth muscle lineages for basic developmental studies, tissue engineering, or future clinical regenerative applications."	"Evaluation of canine 2D cell cultures as models of myxomatous mitral valve degeneration. The utility of cells cultured from the mitral valve as models of myxomatous diseases needs to be properly validated. In this study valve interstitial cells (VICs) and valve endothelial cells (VECs) were cultured from normal and diseased canine mitral valves in 2% (v/v) or 10% FBS media, in the presence of TGFβ1, 2 and 3, the TGFβ RI kinase inhibitor SB431542 and TGFβ neutralising antibodies, 5HT and the 5HT2RB antagonist LY272015. Cultures were examined by morphology, transcriptomic profiling, protein expression of the cell specific markers αSMA and SM22α (VICs), and CD31 (VECs), deposition of proteoglycans (PG), the PG versican, and the TGFβs themselves. VECs derived from normal valves were CD31+/αSMA-, but those from diseased valves were αSMA+, indicating endothelial-to-mesenchymal (EndoMT) transition had occurred. The TGFβs induced EndoMT in normal VECs, and this was abolished by SB431542, with significant changes in αSMA, CD31 and HAS2 expression (P&lt;0.05). Normal VICs cultured in 10% FBS media were αSMA+ (activated myofibroblast (disease) phenotype), but were αSMA- when grown in 2% FBS. VICs from diseased dogs were αSMA+ in 2% FBS (retention of the activated myofibroblast disease phenotype), with significantly increased TGFβ1 expression (P&lt;0.05) compared to normal cells. Treatment of normal and diseased VICs with the TGFβs significantly increased expression of αSMA, SM22α, versican, the TGFβs themselves, and deposition of PGs (P&lt;0.05), with TGFβ1 being the most potent activator. These effects were either abolished or markedly reduced by SB431542 and a pan-TGFβ neutralizing antibody (P&lt;0.05). SB431542 also markedly reduced αSMA expression in VICs from diseased valves, but 5HT and LY272015 had no effect on VIC phenotype. Transcriptomic profiling identified clear differences in gene expression for the different conditions and treatments that partially matched that seen in native diseased valve tissue, including changes in expression of ACTA2 (αSMA), 5HTR2B, TAGLN (SM22α) and MYH10 (SMemb), gene ontology terms and canonical signalling pathways. Normal and diseased VICs and normal VECs from canine mitral valves can be successfully grown in culture with retention of phenotype, which can be manipulated using TGFβ1 and the TGFβ RI kinase inhibitor SB431542. This optimized cell system can now be used to model MMVD to elucidate disease mechanisms and identify key regulators of disease progression."	"EZH2 as a novel therapeutic target for atrial fibrosis and atrial fibrillation. Angiotensin II (Ang-II)-induced fibroblast differentiation plays an important role in the development of atrial fibrosis and atrial fibrillation (AF). Here, we show that the expression of the histone methyltransferase enhancer of zeste homolog 2 (EZH2) is increased in atrial muscle and atrial fibroblasts in patients with AF, accompanied by significant atrial fibrosis and atrial fibroblast differentiation. In addition, EZH2 is induced in murine models of atrial fibrosis. Furthermore, either pharmacological GSK126 inhibition or molecular silencing of EZH2 can inhibit the differentiation of atrial fibroblasts and the ability to produce ECM induced by Ang-II. Simultaneously, inhibition of EZH2 can block the Ang-II-induced migration of atrial fibroblasts. We found that EZH2 promotes fibroblast differentiation mainly through the Smad signaling pathway and can form a transcription complex with Smad2 to bind to the promoter region of the ACTA2 gene. Finally, our in vivo experiments demonstrated that the EZH2 inhibitor GSK126 significantly inhibited Ang-II-induced atrial enlargement and fibrosis and reduced AF vulnerability. Our results demonstrate that targeting EZH2 or EZH2-regulated genes might present therapeutic potential in AF."	"The effects of hyperuricemia on the differentiation and proliferation of osteoblasts and vascular smooth muscle cells are implicated in the elevated risk of osteopenia and vascular calcification in gout: An in vivo and in vitro analysis. In this study, we established both an animal model and a cellular model of hyperuricemia (HUC). Subsequently, we treated these models with allopurinol (ALLO) to study the effect of uric acid (UA) and ALLO on the differentiation and proliferation of osteoblasts and vascular smooth muscle cells (VSMC). Western Blot, immunohistochemistry assay, and real-time polymerase chain reaction were conducted to measure the changes in the expression of differentiation-related factors in osteoblasts and VSMCs in HUC and HUC+ALLO groups. MTT (3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide) assay and flow cytometry were utilized to observe the changes in the proliferation of osteoblasts in HUC and HUC+ALLO groups. Von Kossa staining was performed along with calcium content measurement to investigate the effect of HUC/ALLLO on vascular calcification. In this study, the levels of Wnt3a and differentiation-related factors, including Runx2, Sp7, Ibsp, Bglap, Dmp1, and Col1a1, were all evidently decreased in HUC rats, while the presence of ALLO increased the levels of above factors. In addition, the viability of osteoblasts was reduced while their apoptosis was elevated in the HUC group, and ALLO treatment reduced the apoptosis and increased the viability of osteoblasts to a certain extent. Moreover, HUC elevated the levels of Wnt3a, Runx2, Sp7, Bglap, Col1a1, SM22a, and Acta2 in VSMCs of HUC rats, leading to greatly increased calcium content and obvious vascular calcification. In contrary, ALLO treatment reduced the effect of HUC. Furthermore, the effect of UA and ALLO on osteoblasts and VSMCs was also validated in cellular models treated with monosodium urate (MSU) crystals or MSU+ALLO. HUC can suppress the differentiation and proliferation of osteoblasts while promoting the differentiation of VSMCs both in vivo and in vitro. The treatment by ALLO exhibited a therapeutic effect on HUC by promoting the differentiation and proliferation of osteoblasts while reducing vascular calcification."	"Role of lysyl oxidase like 1 in regulation of postpartum connective tissue metabolism in the mouse vagina†. Pelvic organ prolapse (POP) in lysyl oxidase like-1 knockout (Loxl1 KO) mice occurs primarily in parous mice and is rare in nulliparous mice. We determined the effect of Loxl1 deficiency on postpartum regulation of connective tissue metabolism genes and degradative enzyme activity in the vagina at 20 days gestation or 4 h, 48 h, 7 days, 15 days, 25 days, 7 weeks, or 12 weeks postpartum. Nulliparous Loxl1 KO and wildtype (WT) mice aged 11, 18, or 23 weeks were controls. Gene expression and enzyme activity were assessed using real-time quantitative reverse transcription PCR and fluorescein conjugated gelatin zymography, respectively. Parity, but not aging, had a significant influence on gene expression both with time postpartum and between KO and WT mice. Mmp2, Timp1, Timp2, Timp3, Timp4, Col1a1, Col3a1, Acta2, and Bmp1 were differentially expressed between KO and WT mice. Correlational analysis of gene-gene pairs revealed 10 significant differences between parous KO and WT groups, 5 of which were due to lack of co-expression of Bmp1 in KO mice. The overall enzyme activity that could be attributed to MMPs was significantly higher in WT compared to KO mice both 25 days and 12 weeks postpartum, and MMP activity was significantly lower 15 days and 25 days postpartum compared to KO nulliparous controls, but not WT. These findings suggest that Loxl1 deficiency combined with parity has a significant impact on postpartum regulation of connective tissue metabolism, particularly as it relates to co-expression of Bmp1 and altered proteolytic activity."	"Pitx2c inhibition increases atrial fibroblast activity: Implications in atrial arrhythmogenesis. A Pitx2c deficiency increases the risk of atrial fibrillation (AF). Atrial structural remodelling with fibrosis blocks electrical conduction and leads to arrhythmogenesis. A Pitx2c deficiency enhances profibrotic transforming growth factor (TGF)-β expression and calcium dysregulation, suggesting that Pitx2c may play a role in atrial fibrosis. The purposes of this study were to evaluate whether a Pitx2c deficiency modulates cardiac fibroblast activity and study the underlying mechanisms. A migration assay, proliferation analysis, Western blot analysis and calcium fluorescence imaging were conducted in Pitx2c-knockdown human atrial fibroblasts (HAFs) using short hairpin (sh)RNA or small interfering (si)RNA. Compared to control HAFs, Pitx2c-knockdown HAFs had a greater migration but a similar proliferative ability. Pitx2c-knockdown HAFs had a higher calcium influx with enhanced phosphorylation of calmodulin kinase II (CaMKII), α-smooth muscle actin and matrix metalloproteinase-2. In the presence of a CaMKII inhibitor (KN-93, 0.5 μmol/L), control and Pitx2c-knockdown HAFs exhibited similar migratory abilities. These findings suggest that downregulation of Pitx2c may regulate atrial fibrosis through modulating calcium homeostasis, which may contribute to its role in anti-atrial fibrosis, and Pitx2c downregulation may change the atrial electrophysiology and AF occurrence through modulating fibroblast activity."	"Blockade of lncRNA-ASLNCS5088-enriched exosome generation in M2 macrophages by GW4869 dampens the effect of M2 macrophages on orchestrating fibroblast activation. In hypertrophic scar (HS) formation, the type 2 immune response induces the alternatively activated macrophages (M2), which manipulate fibroblasts to differentiate into myofibroblasts with active biologic functions and proliferation. Myofibroblasts express α-smooth muscle actin (α-SMA) and synthesize and produce additional collagen type I and collagen type III, inducing HS formation. However, studies on the mechanism of M2 macrophage modulation are only based on the recognition of profibrotic factors such as TGF-β1 secreted by macrophages. The influence of exosomes from M2 macrophages on scar formation is still unknown. Both M2 macrophages and myofibroblasts highly express glutaminases (GLSs). GLS is a critical enzyme in glutaminolysis and is important for M2 macrophage and fibroblast polarization. In this study, we found that in a TGF-β1-stimulated coculture system, a long noncoding RNA (lncRNA) named lncRNA-ASLNCS5088 was enriched in M2 macrophage-derived exosomes. This lncRNA could be transferred with high efficiency to fibroblasts and acted as an endogenous sponge to adsorb microRNA-200c-3p, resulting in increased GLS and α-SMA expression. Pretreatment with GW4869, which impairs M2 macrophage exosome synthesis, ameliorated these pathologic changes in fibroblasts in vitro. Local injection in the late scar formation period with GW4869 reduced α-SMA<sup>+</sup> fibroblasts and alleviated the fibrosis of tissue after wound healing in vivo.-Chen, J., Zhou, R., Liang, Y., Fu, X., Wang, D., Wang, C. Blockade of lncRNA-ASLNCS5088-enriched exosome generation in M2 macrophages by GW4869 dampens the effect of M2 macrophages on orchestrating fibroblast activation."	"Effects of β-Sitosterol from Corn Silk on TGF-β1-Induced Epithelial-Mesenchymal Transition in Lung Alveolar Epithelial Cells. Pulmonary fibrosis is a chronic lung disease characterized by abnormal accumulation of the extracellular matrix (ECM). Chronic damage of the alveolar epithelium leads to a process called &quot;epithelial-mesenchymal transition&quot; (EMT) and increases synthesis and deposition of ECM proteins. Therefore, inhibition of EMT might be a promising therapeutic approach for the treatment of pulmonary fibrosis. β-Sitosterol is one of the most abundant phytosterols in the plant kingdom and the major constituent in corn silk, which is derived from the stigma and style of maize (Zea mays). In this study, we elucidated that β-sitosterol inhibited transforming growth factor-β1 (TGF-β1)-induced EMT and consequently had an antifibrotic effect. β-Sitosterol (1-10 μg/mL) significantly downregulated the TGF-β1-induced fibrotic proteins, such as collagen, fibronectin, and α-smooth muscle actin in human alveolar epithelial cells (p &lt; 0.01). After 24 h, relative wound density (RWD) was increased in TGF-β1 treated group (82.16 ± 5.70) compare to the control group (64.63 ± 2.21), but RWD was decreased in β-sitosterol cotreated group (10 μg/mL: 71.54 ± 7.39; 20 μg/mL: 65.69 ± 6.42). In addition, the changes of the TGF-β1-induced morphological shape and protein expression of EMT markers, N-cadherin, vimentin, and E-cadherin, were significantly blocked by β-sitosterol treatment (p &lt; 0.01). The effects of β-sitosterol on EMT were found to be associated with the TGF-β1/Snail pathway, which is regulated by Smad and non-Smad signaling pathways. Taken together, these findings suggest that β-sitosterol can be used to attenuate pulmonary fibrosis through suppression of EMT by inhibiting the TGF-β1/Snail pathway."	"Data showing atherosclerosis-associated differentially methylated regions are often at enhancers. Atherosclerosis involves phenotypic modulation and transdifferentiation of vascular smooth muscle cells (SMCs). Data are given in tabular or figure format that illustrate genome-wide DNA methylation alterations in atherosclerotic vs. control aorta (athero DMRs). Data based upon publicly available chromatin state profiles are also shown for normal aorta, monocyte, and skeletal muscle tissue-specific DMRs and for aorta-specific chromatin features (enhancer chromatin, promoter chromatin, repressed chromatin, actively transcribed chromatin). Athero hypomethylated and hypermethylated DMRs as well as epigenetic and transcription profiles are described for the following genes: ACTA2, MYH10, MYH11 (SMC-associated genes); SMAD3 (a signaling gene for SMCs and other cell types); CD79B and SH3BP2 (leukocyte-associated genes); and TBX20 and genes in the HOXA, HOXB, HOXC, and HOXD clusters (T-box and homeobox developmental genes). The data reveal strong correlations between athero hypermethylated DMRs and regions of enhancer chromatin in aorta, which are discussed in the linked research article &quot;Atherosclerosis-associated differentially methylated regions can reflect the disease phenotype and are often at enhancers&quot; (M. Lacey et al., 2019)."	"Cancer‑associated fibroblast‑derived exosomal miR‑382‑5p promotes the migration and invasion of oral squamous cell carcinoma. Oral squamous cell carcinoma (OSCC), with high potential for metastasis, is the most common malignant tumor of the head and neck. Cancer‑associated fibroblasts (CAFs) are the main stromal cells in the microenvironment and aggravate tumor progression. However, whether CAFs are associated with the progression of OSCC remains unknown and the underlying mechanism remains unclear. In the present study, the role of CAFs in mediating OSCC cell migration and invasion was investigated, and the participation of exosomal miR‑382‑5p in this process was elucidated. In this study, according to the α‑SMA staining with immunohistochemistry, 47 OSCC patients were divided into CAFs‑rich and CAFs poor groups, and association of CAF density and clinicopathologic features of the OSCC patients were analyzed with Pearson χ2 test. Transwell assay was used for evaluating cell migration and invasion ability of OSCC cells after being co‑cultured with NFs or CAFs, or after added exosomes. qPCR was used to detect the expression of miR‑382‑5p. Western blot analysis was used to measure the expression of migration and invasion‑associated proteins. In the present study, the CAF density in tumor tissues was found to be relevant to OSCC lymph node metastasis and TNM stage. Furthermore, we revealed that miR‑382‑5p was overexpressed in CAFs compared with that in fibroblasts of adjacent normal tissue and miR‑382‑5p overexpression was responsible for OSCC cell migration and invasion. Finally, we demonstrated that CAF‑derived exosomes transported miR‑382‑5p to OSCC cells. The present study confirmed a new mechanism of CAF‑facilitated OSCC progression and may be beneficial for identifying new cancer therapeutic targets."	"Upregulated NOX1 expression in gallbladder cancer‑associated fibroblasts predicts a poor prognosis. Gallbladder cancer (GBC) is a lethal aggressive malignant neoplasm of the biliary tract. Potential prognostic markers and therapeutic targets for this disease are urgently required. Cancer‑associated fibroblasts (CAFs) play a key role in tumorigenesis and the development of cancer. Nicotinamide adenine dinucleotide phosphate oxidase 1 (NOX1) expression has been reported to be involved in tumorigenesis and useful for tumor prognosis. However, NOX1 expression in the stroma of GBCs, particularly gallbladder cancer‑associated fibroblasts (GCAFs), and its prognostic significance in GBC patients remains unclear. In the present study, NOX1 expression in the stroma of human gallbladder lesions in vivo was investigated, as well as in GCAFs and co‑cultures of GBC‑SD+GCAFs in vitro, and their correlation with clinicopathological parameters and the prognosis of GBC patients were evaluated. The results revealed that NOX1 expression was significantly upregulated in the stroma of GBCs compared with precancerous and benign lesions of the gallbladder; NOX1 expression was localized to gallbladder stromal fibroblasts expressing α‑smooth muscle actin and fibroblast secreted protein‑1. Furthermore, these observations were confirmed by the fact that NOX1 expression was upregulated in GCAFs as determined by Affymetrix gene profile chip analysis and reverse transcription‑quantitative PCR. In addition, overexpression was observed in formed spheroids of GBC‑SD+GCAF co‑cultures by immunohistochemistry and western blotting in vitro. Thus, it was verified that NOX1 expression was upregulated in GCAFs. Furthermore, upregulated stromal NOX1 expression was correlated with aggressive characteristics such as differentiation degree (P=0.042), venous invasion (P=0.041), resection methods (P=0.002), and a lower survival rate (P=0.025, log‑rank test) of patients with GBC. Stromal NOX1 expression (P=0.047) was an independent prognostic factor for the overall survival rate of patients with GBC. GBC patients with upregulated NOX1 expression in GCAFs had a poorer prognosis. These results revealed that stromal NOX1 may be a novel biomarker and/or target, and may contribute to the discovery of new tumor markers and potential targeted therapeutics for human GBCs."	"Deletion of NFKB1 enhances canonical NF-κB signaling and increases macrophage and myofibroblast content during tendon healing. Flexor tendon injuries heal with excessive scar tissue that limits range of motion and increases incidence of re-rupture. The molecular mechanisms that govern tendon healing are not well defined. Both the canonical nuclear factor kappa B (NF-κB) and mitogen activated protein kinase (MAPK) pathways have been implicated in tendon healing. The gene NFKB1 (proteins p105/p50) is involved in both NF-κB and MAPK signaling cascades. In the present study, we tested the hypothesis that global NFKB1 deletion would increase activation of both NF-κB and MAPK through loss of signaling repressors, resulting in increased matrix deposition and altered biomechanical properties. As hypothesized, NFKB1 deletion increased activation of both NF-κB and MAPK signaling. While gliding function was not affected, NFKB1 deletion resulted in tendons that were significantly stiffer and trending towards increased strength by four weeks post-repair. NFKB1 deletion resulted in increased collagen deposition, increase macrophage recruitment, and increased presence of myofibroblasts. Furthermore, NFKB1 deletion increased expression of matrix-related genes (Col1a1, Col3a1), macrophage-associated genes (Adgre1, Ccl2), myofibroblast markers (Acta2), and general inflammation (Tnf). Taken together, these data suggest that increased activation of NF-κB and MAPK via NFKB1 deletion enhance macrophage and myofibroblast content at the repair, driving increased collagen deposition and biomechanical properties."	"Chemokine ligand 20 (CCL20) expression increases with NAFLD stage and hepatic stellate cell activation and is regulated by miR-590-5p. CCL20 (CC chemokine ligand 20) is emerging as an important regulatory molecule in a pathway common to virus infection, alcoholic hepatitis, and non-alcoholic fatty liver disease (NAFLD) leading to the development of hepatic fibrosis. We previously observed upregulation of CCL20 in patients with NAFLD fibrosis and human hepatic stellate cells (LX-2 cells) in response to lipid loading. To date, the mechanisms mediating the relationship between CCL20 and hepatic fibrogenesis remain unknown. In this study, we sought to characterize the molecular mechanisms by which CCL20 may contribute to fibrogenesis in NAFLD. We observed that CCL20 levels increased with worsening severity of liver histology in NAFLD patients (normal &lt; steatosis &lt; inflammation &lt; fibrosis) and during LX-2 cell activation in a time-dependent manner. We found that treatment of LX-2 cells with CCL20 corresponded with increased levels of CCL20 and ACTA2, and decreased levels of PLAU and SERPINE1, effects mitigated by CCL20 knockdown. We identified a putative binding site for miR-590-5p, which we previously reported to be downregulated in NAFLD fibrosis, in the CCL20 3' untranslated region (3'UTR), and found that exogenous miR-590-5p functionally interacted with the CCL20 3'UTR to downregulate its expression. Transfection of LX-2 hepatic stellate cells with miR-590-5p mimic or silencing RNA resulted in decreased or increased CCL20 levels, respectively. Our results indicate an association between CCL20 and hepatic stellate cell activation that includes modulation of key ECM components and functional interactions with a miRNA previously implicated in NAFLD fibrosis. Together, these findings support a novel mechanism by which CCL20 may promote fibrogenesis in NAFLD."	"Sesn3 deficiency promotes carcinogen-induced hepatocellular carcinoma via regulation of the hedgehog pathway. Sestrin 3 (Sesn3) belongs to a small protein family that has been implicated in multiple biological processes including anti-oxidative stress, anti-aging, cell signaling, and metabolic homeostasis. However, the role of Sesn3 in hepatocellular carcinoma (HCC) remains unclear. Here we generated a Sesn3 knockout mouse model and induced HCC development by a combination of a single dose of diethylnitrosamine and chronic feeding of a choline deficient-high fat diet. After 6 months of the dietary treatment, Sesn3 knockout mice developed more severe HCC with higher levels of alpha-fetoprotein, arginase 1, and cytokeratin 19, but also higher metastatic rates than wild-type mice. Histological analysis revealed elevated extracellular matrix and cancer stem cell markers including Acta2, Cd44, and Cd133. Signaling analysis showed activated IL6-Stat3 and Akt pathways. Biochemical and microscopic analyses uncovered a novel inhibitory regulation of Gli2, a downstream transcription factor of the hedgehog signaling, by Sesn3. Two of the Gli2-regulated genes - Pdgfrb and Cd44 were upregulated in the Sesn3-deficient liver tissue. In conclusion, our data suggest that Sesn3 plays a critical tumor suppressor role in the liver partly through the inhibition of the hedgehog signaling."	"Investigation of activin A in inflammatory responses of the testis and its role in the development of testicular fibrosis. Does activin A contribute to testicular fibrosis under inflammatory conditions? Our results show that activin A and key fibrotic proteins are increased in human testicular biopsies with leukocytic infiltrates and impaired spermatogenesis and in murine experimental autoimmune orchitis (EAO) and that activin A stimulates fibrotic responses in peritubular cells (PTCs) and NIH 3T3 fibroblasts. Fibrosis is a feature of EAO. Activin A, a regulator of fibrosis, was increased in testes of mice with EAO and its expression correlated with severity of the disease. This is a cross-sectional and longitudinal study of adult mice immunized with testicular homogenate (TH) in adjuvant to induce EAO, collected at 30 (n = 6), 50 (n = 6) and 80 (n = 5) days after first immunization. Age-matched mice injected with adjuvant alone (n = 14) and untreated mice (n = 15) were included as controls. TH-immunized mice with elevated endogenous follistatin, injected with a non-replicative recombinant adeno-associated viral vector carrying a gene cassette of follistatin (rAAV-FST315; n = 3) or vector with an empty cassette (empty vector controls; n = 2) 30 days prior to the first immunization, as well as appropriate adjuvant (n = 2) and untreated (n = 2) controls, were also examined.Human testicular biopsies showing focal inflammatory lesions associated with impaired spermatogenesis (n = 7) were included. Biopsies showing intact spermatogenesis without inflammation, from obstructive azoospermia patients, served as controls (n = 7).Mouse primary PTC and NIH 3T3 fibroblasts were stimulated with activin A and follistatin 288 (FST288) to investigate the effect of activin A on the expression of fibrotic markers. Production of activin A by mouse primary Sertoli cells (SCs) was also investigated. Testicular RNA and protein extracts collected from mice at days 30, 50 and 80 after first immunization were used for analysis of fibrotic marker genes and proteins, respectively. Total collagen was assessed by hydroxyproline assay and fibronectin; collagen I, III and IV, α-smooth muscle actin (α-SMA) expression and phosphorylation of suppressor of mothers against decapentaplegic (SMAD) family member 2 were measured by western blot. Immunofluorescence was used to detect fibronectin. Fibronectin (Fn), αSMA (Acta2), collagen I (Col1a2), III (Col3a1) and IV (Col4a1) mRNA in PTC and NIH 3T3 cells treated with activin A and/or FST288 were measured by quantitative RT-PCR (qRT-PCR). Activin A in SC following tumour necrosis factor (TNF) or FST288 stimulation was measured by ELISA. Human testicular biopsies were analysed by qRT-PCR for PTPRC (CD45) and activin A (INHBA), hydroxyproline assay and immunofluorescence. Production of activin A by SC was stimulated by 25 and 50 ng/ml TNF (P &lt; 0.01, P &lt; 0.001, respectively) as compared to untreated cells. INHBA mRNA was increased in human testicular biopsies with leukocytic infiltrates and impaired spermatogenesis, compared with control biopsies (P &lt; 0.05), accompanied by increased total collagen (P &lt; 0.01) and fibronectin deposition. Total testicular collagen (P &lt; 0.0001) and fibronectin protein expression (P &lt; 0.05) were also increased in EAO, and fibronectin expression was correlated with the severity of the disease (r = 0.9028). In animals pre-treated with rAAV-FST315 prior to immunization with TH, protein expression of fibronectin was comparable to control. Stimulation of PTC and NIH 3T3 cells with activin A increased fibronectin mRNA (P &lt; 0.05) and the production of collagen I (P &lt; 0.001; P &lt; 0.01) and fibronectin (P &lt; 0.05). Moreover, activin A also increased collagen IV mRNA (P &lt; 0.05) in PTC, while αSMA mRNA (P &lt; 0.01) and protein (P &lt; 0.0001) were significantly increased by activin A in NIH 3T3 cells. N/A. A limited number of human testicular specimens was available for the study. Part of the study was performed in vitro, including NIH 3T3 cells as a surrogate for testicular fibroblasts. Resident fibroblasts and PTC may contribute to the progression of testicular fibrosis following inflammation, and activin A is implicated as a key mediator of this process. This work was supported by the National Health and Medical Research Council of Australia, the Victorian Government's Operational Infrastructure Support Program and the International Research Training Group between Justus Liebig University (Giessen) and Monash University (Melbourne) (GRK 1871/1-2) on `Molecular pathogenesis on male reproductive disorders' funded by the Deutsche Forschungsgemeinschaft and Monash University. The authors declare no competing financial interests."	"Multiplex quantitative analysis of cancer-associated fibroblasts and immunotherapy outcome in metastatic melanoma. The cancer-associated fibroblast (CAF) population is implicated in immune dysregulation. Here, we test the hypothesis that CAF profiles in pretreatment tumor specimens are associated with response to immune checkpoint blockade of programmed cell death 1 (PD-1). Pretreatment whole tissue sections from 117 melanoma patients treated with anti-PD-1 therapy were assessed by multiplex immunofluorescence to detect CAFs defined by Thy1, smooth muscle actin (SMA), and fibroblast activation protein (FAP). Two independent image analysis technologies were used: inForm software (PerkinElmer) to quantify cell counts, and AQUA™ to measure protein by quantitative immunofluorescence (QIF). CAF parameters by both methodologies were assessed for association with previously measured immune markers (CD3, CD4, CD8, CD20, CD68, PD-L1), best overall response, progression-free survival (PFS), and overall survival (OS). CAF parameters, by cell counts or QIF, did not correlate with immune markers nor with best overall response. However, both Thy1 and FAP cell counts had significant positive associations with PFS (all P &lt; 0.05) and OS (all P &lt; 0.003). SMA cell counts showed negative associations with outcome in anti-PD-1 treated patients. Similar associations were not observed in a control cohort of historical melanoma patients predating immunotherapy. Instead, FAP was a negative prognostic biomarker (P = 0.01) in the absence of immunotherapy. Multivariable analyses revealed significant PFS and OS associations with the CAF parameters were independent of baseline variables. Pretreatment CAF profiles are associated with melanoma immunotherapy outcome. Multiplex CAF analysis has potential as an objective companion diagnostic in immuno-oncology."	"Wnt Signaling Modulates Routes of Retinoic Acid-Induced Differentiation of Embryonic Stem Cells. Smooth muscle cells (SMCs) are important cell type for regenerative medicine. Previous studies showed that retinoic acid (RA) induces differentiation of SMCs from monolayer-cultured embryonic stem cells (ESCs) with high efficiency. However, the underlying mechanisms are still poorly defined. Here, we identified Wnt signaling as a primary regulator for RA-induced ESC differentiation. The activation of Wnt signaling inhibited the epithelial-mesenchymal transition during ESC differentiation, leading to inhibition of RA-induced SMC differentiation and promoting differentiation of ESCs toward primitive endoderm (PrE) lineage instead, while the inhibition of Wnt signaling promoted RA-induced SMC differentiation. Loss-of-function studies revealed that 7-like 2 (Tcf7l2) was the key transcription factor that Wnt operate through during RA-induced differentiation. Thus, this study revealed that the Tcf7l2-mediated Wnt signaling is a switch in determining the mesoderm/PrE fates in RA-induced ESC differentiation."	"Primary Human Fibroblasts in Culture Switch to a Myofibroblast-Like Phenotype Independently of TGF Beta. Fibroblasts are the prevalent cell type and main source for extracellular matrix (ECM) in connective tissue. Depending on their origin, fibroblasts play a central role in non-pathological tissue remodeling and disease like fibrosis. This study examined the effect of established culture conditions of primary human fibroblasts, from different origins on the myofibroblast-like phenotype formation. We isolated primary human fibroblasts from aortic adventitia, lung, juvenile- and adult skin and investigated the expression levels of CD90, alpha smooth muscle actin (αSMA) and procollagen I under different concentrations of fetal calf serum (FCS) and ascorbic acid (AA) in culture media by immunoblot and immunofluorescence assays. Furthermore, we determined the viability using XTT and migration/wound healing in scratch assays. Collagen 1 secretion was quantified by specific ELISA. Primary human fibroblasts show in part a myofibroblast-like phenotype even without addition of FCS. Supplemented AA reduces migration of cultured fibroblasts with no or low concentrations of FCS. Furthermore, AA and higher concentrations of FCS in culture media lead to higher levels of collagen 1 secretion instead of procollagen I accumulation. This study provides evidence for a partial switch of primary human fibroblasts of different origin to a myofibroblast-like phenotype under common culture conditions."	"CCN5 Reduces Ligamentum Flavum Hypertrophy by Modulating the TGF-β Pathway. Ligamentum flavum hypertrophy (LFH) is the most important component of lumbar spinal canal stenosis. Although the pathophysiology of LFH has been extensively studied, no method has been proposed to prevent or treat it. Since the transforming growth factor-β (TGF-β) pathway is known to be critical in LFH pathology, we investigated whether LFH could be prevented by blocking or modulating the TGF-β mechanism. Human LF cells were used for the experiments. First, we created TGF-β receptor 1 (TGFBR1) knock out (KO) cells with CRISPR (clustered regularly interspaced short palindromic repeats)/Cas9 biotechnology and treated them with TGF-β1 to determine the effects of blocking the TGF-β pathway. Subsequently, we studied the effect of CCN5, which has recently been proposed to modulate the TGF-β pathway. To assess the predisposition toward fibrosis, α-smooth muscle actin (αSMA), fibronectin, collagen-1, collagen-3, and CCN2 were evaluated with quantitative real-time polymerase chain reaction, western blotting, and immunocytochemistry. The TGFBR1 KO LF cells were successfully constructed with high KO efficiency. In wild-type (WT) cells, treatment with TGF-β1 resulted in the overexpression of the messenger RNA (mRNA) of fibrosis-related factors. However, in KO cells, the responses to TGF-β1 stimulation were significantly lower. In addition, CCN5 and TGF-β1 co-treatment caused a notable reduction in mRNA expression levels compared with TGF-β1 stimulation only. The αSMA protein expression increased with TGF-β1 but decreased with CCN5 treatment. TGF-β1 induced LF cell transdifferentiation from fibroblasts to myofibroblasts. However, this cell transition dramatically decreased in the presence of CCN5. In conclusion, CCN5 could prevent LFH by modulating the TGF-β pathway. © 2019 The Authors. Journal of Orthopaedic Research<sup>®</sup> published by Wiley Periodicals, Inc. on behalf of Orthopaedic Research Society. J Orthop Res 37:2634-2644, 2019."	"Development and characterization of a biomimetic coating for percutaneous devices. Percutaneous osseointegrated prosthetics (POP), which consist of a metallic post attached to the bone that extends outward through the skin to connect to an external prosthesis, have become a clinically relevant option to replace the typical socket-residual limb connection. POP devices offer several advantages such as mechanical off-loading of soft tissues, direct force transfer to the musculoskeletal system, greater proprioception, and overall improvement in limb kinesis compared to a socket system. However, POP devices create several challenges including epidermal downgrowth, increased infection risk, and mechanical tearing at the skin-implant interface. To address these issues, biomimetic surfaces and coatings have been developed in an attempt to create an infection-free and cohesive interface between POP devices and skin. The fingernail is a prime example of a natural system with a skin interface that is both mechanically and biologically stable. Exploiting keratins' previously demonstrated tissue compatibility and creating a biomimetic coating for POP devices that can imitate the human fingernail, and demonstrating its ability to promote a stable interface with skin tissue is the goal of this work. Silane coupling aided in producing a coating on titanium substrates consisting of human keratin proteins. Several combinations of silane and keratin derivatives were investigated, and in general showed a nano-scale coating thickness that supported skin cell (i.e. fibroblast and keratinocyte) adhesion. Initial enzyme-mediated degradation resistance was also demonstrated, but the coatings appeared to degrade at long time periods. Importantly, keratinocytes showed a stable phenotype with no indication of wound healing-like activity. These data provide justification to further explore keratin biomaterials for POP coatings that may stabilize the implant-skin interface."	"The estrogen-regulated lncRNA H19/miR-216a-5p axis alters stromal cell invasion and migration via ACTA2 in endometriosis. Fibrotic tissue may contribute to the origin of some endometriosis-related symptoms, such as chronic pelvic pain and infertility. Alterations in the H19/miR-216a-5p/ACTA2 pathway may mediate the regulation of eutopic endometrial stromal cell (euESC) invasion and migration and may represent a potential mechanism underlying fibrous tissue formation or fibrosis in women with endometriosis. In this study, we aimed to determine the expression of H19 and ACTA2 in endometrial tissues of women with endometriosis. Two groups of 23 infertile women with endometriosis and 23 matched infertile women without endometriosis were investigated. Primary cultured cells of endometrial tissues were analyzed using RT-PCR and western blotting (WB) to determine expression of H19 and ACTA2. 5-Ethyl-2'-deoxyuridine, CCK8 and Transwell assays were used to study the functions of H19 and ACTA2. Human embryonic kidney 293 cells were used for luciferase assays to study miR-216a-5p binding sites with H19 and ACTA2. We found that H19 and ACTA2 levels were significantly higher in endometriosis euESCs than in control euESCs (P &lt; 0.05) and were positively correlated in endometriosis euESCs. Luciferase assays indicated that H19 regulates ACTA2 expression via competition for inhibitory miR-216a-5p binding sites. Our results indicate that alterations in the estrogen/H19/miR-216a-5p/ACTA2 pathway regulated endometriosis euESC invasion and migration. Downregulation of H19 or ACTA2 inhibited endometriosis euESC invasion and migration; however, estrogen promoted endometriosis euESC invasion and migration via H19. The main limitation of our study was that experiments were conducted in vitro and further in vivo studies are required in the future. However, our study showed that primary cultured cells represented endometriosis cells more clearly than cell lines."	"Epithelial‑mesenchymal transition in chronic rhinosinusitis (CRS) and the prognostic value of α‑SMA in postoperative outcomes of patients with CRS. Tissue remodeling is the pathological basis of the symptoms encountered in chronic rhinosinusitis (CRS). Epithelial‑mesenchymal transition (EMT) may participate in this process. The present study was designed to investigate the involvement of EMT in CRS. In addition, the prognostic value of the EMT biomarker α‑smooth muscle actin (α‑SMA) was assessed in patients with CRS who underwent endoscopic sinus surgery (ESS). A total of 13 patients with CRS without nasal polyps (CRSsNP), 13 patients with CRS with nasal polyps (CRSwNP) and 13 control subjects were enrolled. The expression of EMT markers was determined in sinonasal specimens by qPCR, western blot and immunofluorescence assays. EMT features were evaluated in primary nasal epithelial cells (NECs) with transforming growth factor (TGF)‑β1 stimulation. The associations were assessed between α‑SMA expression and the clinical features of CRS. Epithelial and mesenchymal markers were overexpressed in the sinonasal specimens of both CRSsNP and CRSwNP patients. Alterations in the expression pattern were more apparent in the CRSsNP patients. Following incubation of primary NECs with TGF‑β1, a mesenchymal shape was acquired. In addition, NECs that co‑expressed α‑SMA and cytokeratin were readily detected and the protein levels of α‑SMA were elevated. In contrast to α‑SMA, the levels of E‑cadherin were decreased. The protein levels of α‑SMA were negatively correlated with endoscopic scores and several postoperative symptoms. In conclusion, partial EMT occurred in patients with CRS, notably in CRSsNP patients. Moreover, primary NECs could undergo EMT following TGF‑β1 treatment in vitro. In addition, α‑SMA could be considered an efficient predictor for postoperative endoscopic and symptomatic outcomes in patients with CRS treated with ESS."	"Iron oxide nanoparticles induce reversible endothelial-to-mesenchymal transition in vascular endothelial cells at acutely non-cytotoxic concentrations. Iron oxide nanoparticles (IONPs) have been extensively studied in different biomedical fields. Recently, the non-cytotoxic concentration of IONPs induced cell-specific response raised concern of their safety. Endothelial cell exposure was unavoidable in their applications, while whether IONPs affect the phenotype of vascular endothelial cells is largely unknown. In this work, the effect of IONPs on endothelial-to-mesenchymal transition (EndMT) was investigated in vitro and in vivo. The incubation with γ-Fe2O3 nanoparticles modified with polyglucose sorbitol carboxymethyether (PSC-Fe2O3) at non-cytotoxic concentration induced morphological changes of human umbilical vein endothelial cells (HUVECs) from cobblestone-like to spindle mesenchymal-like morphology, while PSC-Fe2O3 mostly stay in the culture medium and intercellular space. At the same time, the endothelial marker CD31 and VE-cadherin was decreased along with the inhibitory of angiogenesis properties of HUVEC. Meanwhile, the mesenchymal marker α-smooth muscle actin (α-SMA) and fibroblast specific protein (FSP) was up regulated significantly, and the migration ability of the cells was enhanced. When ROS scavenger mannitol or AA was supplemented, the EndMT was rescued. Results from the in vivo study showed that, expression of CD31 was decreased and α-SMA increased in the liver, spleen and kidney of mice given PSC-Fe2O3, and the density of collagen fibers in the liver sinusoid of mice was increased. The supplementary mannitol or AA could reverse the degree of EndMT in the tissues. Mechanistic study in vitro indicated that the level of extracellular hydroxyl radicals (·OH) was up regulated significantly by PSC-Fe2O3, which induced the response of intracellular ROS and resulted in the EndMT effect on HUVECs. The PSC-Fe2O3 was capable of inducing EndMT in the endothelial cells at acutely non-cytotoxic dose due to its intrinsic peroxidase-like activity, though they were few taken up by endothelial cell. The EndMT effect on HUVEC can be rescued by ROS scavenger in vitro and in vivo."	"Mesenchymal Stem Cells Reduce Corneal Fibrosis and Inflammation via Extracellular Vesicle-Mediated Delivery of miRNA. Mesenchymal stem cells from corneal stromal stem cells (CSSC) prevent fibrotic scarring and stimulate regeneration of transparent stromal tissue after corneal wounding in mice. These effects rely on the ability of CSSC to block neutrophil infiltration into the damaged cornea. The current study investigated the hypothesis that tissue regeneration by CSSC is mediated by secreted extracellular vesicles (EVs). CSSC produced EVs 130-150 nm in diameter with surface proteins that include CD63, CD81, and CD9. EVs from CSSC reduced visual scarring in murine corneal wounds as effectively as did live cells, but EVs from human embryonic kidney (HEK)293T cells had no regenerative properties. CSSC EV treatment of wounds decreased expression of fibrotic genes Col3a1 and Acta2, blocked neutrophil infiltration, and restored normal tissue morphology. CSSC EVs labeled with carboxyfluorescein succinimidyl ester dye, rapidly fused with corneal epithelial and stromal cells in culture, transferring microRNA (miRNA) to the target cells. Knockdown of mRNA for Alix, a component of the endosomal sorting complex required for transport, using siRNA, resulted in an 85% reduction of miRNA in the secreted EVs. The EVs with reduced miRNA were ineffective at blocking corneal scarring. Furthermore, CSSC with reduced Alix expression also lost their regenerative function, suggesting EVs as an obligate component in the delivery of miRNA. The results of these studies support an essential role for extracellular vesicles in the process by which CSSC cells block scarring and initiate regeneration of transparent corneal tissue after wounding. EVs appear to serve as a delivery vehicle for miRNA, which affects the regenerative action. Stem Cells Translational Medicine 2019;8:1192-1201."	"Identification of a pro-angiogenic functional role for FSP1-positive fibroblast subtype in wound healing. Fibrosis accompanying wound healing can drive the failure of many different organs. Activated fibroblasts are the principal determinants of post-injury pathological fibrosis along with physiological repair, making them a difficult therapeutic target. Although activated fibroblasts are phenotypically heterogeneous, they are not recognized as distinct functional entities. Using mice that express GFP under the FSP1 or αSMA promoter, we characterized two non-overlapping fibroblast subtypes from mouse hearts after myocardial infarction. Here, we report the identification of FSP1-GFP<sup>+</sup> cells as a non-pericyte, non-hematopoietic fibroblast subpopulation with a predominant pro-angiogenic role, characterized by in vitro phenotypic/cellular/ultrastructural studies and in vivo granulation tissue formation assays combined with transcriptomics and proteomics. This work identifies a fibroblast subtype that is functionally distinct from the pro-fibrotic αSMA-expressing myofibroblast subtype. Our study has the potential to shift our focus towards viewing fibroblasts as molecularly and functionally heterogeneous and provides a paradigm to approach treatment for organ fibrosis."	"Knockdown of FOXM1 inhibits activation of keloid fibroblasts and extracellular matrix production via inhibition of TGF-β1/Smad pathway. Keloid is characterized by overactive fibroblasts. Forkhead box M1 (FOXM1) is transcription factor that plays important roles in the progression of fibrosis. However, the role of FOXM1 in keloid has not been elucidated. In the present study, we examined the expression levels of FOXM1 in clinical keloid tissue specimens and primary keloid fibroblasts (KFs). The results showed that FOXM1 levels were significantly increased in both keloid tissues and KFs. To further investigate the biological functions of FOXM1, FOXM1 was knocked down in KFs by transfection with small interfering RNA targeting FOXM1 (si-FOXM1). Knockdown of FOXM1 inhibited transforming growth factor-β1 (TGF-β1)-induced cell proliferation and migration of KFs. Besides, the increased expressions of collagen (coll I), connective tissue growth factor (CTGF), and α-smooth muscle actin (α-SMA) in TGF-β1-induced KFs were suppressed by si-FOXM1 transfection. Furthermore, TGF-β1-induced increase in p-Smad2 and p-Smad3 expressions was attenuated by FOXM1 knockdown. These data indicated that knockdown of FOXM1 inhibited TGF-β1-induced KFs activation and extracellular matrix (ECM) accumulation, which was attributed to the inhibition of TGF-β1/Smad pathway."	"IGFBP7 regulates sepsis-induced epithelial-mesenchymal transition through ERK1/2 signaling. The epithelial-mesenchymal transition (EMT) process results in fibrosis of renal tubular epithelial cells and is of great importance in the development of acute kidney injury (AKI). Urinary IGF-binding protein-7 (IGFBP7) was obviously increased in AKI and is considered to be a biomarker for AKI. However, whether it has an effect on the inhibition of lipopolysaccharide (LPS)-induced EMT in human HK2 cells and on that of cecal ligation and puncture (CLP)-induced EMT in human HK2 cells and in mice remains to be elucidated. Western blot analysis was performed to examine the phosphorylation of ERK1/2 level and expressions of IGFBP7, ERK1/2, EMT markers, such as E-cadherin, α-SMA, and vimentin, and EMT regulatory factors, such as Snail, transforming growth factor-β1 (TGF-β1), and connective tissue growth factor (CTGF). The levels of IGFBP7, TGF-β1, and CTGF were detected by enzyme linked immunosorbent assay (ELISA). Concentrations of creatinine (Cr), blood urea nitrogen (BUN), and albumin (ALB) were measured by biochemical analysis. Here, we found that LPS promoted EMT and ERK1/2 activation in HK2 cells, which were inhibited by silencing of IGFBP7. Furthermore, IGFBP7 overexpression significantly increased EMT and ERK1/2 activation in HK2 cells, which were inhibited by ERK1/2 signaling inhibitor PD98059. IGFBP7 knockdown effectively attenuated renal fibrosis, concentrations of Cr, BUN and ALB, and activation of ERK1/2 signaling in CLP-induced mice. These results suggest that inhibiting IGFBP7 can effectively protect the renal tubular epithelial cells from EMT induced by LPS or CLP both in vitro and in vivo, which may be associated with inactivation of ERK1/2 signaling."	"Disrupting the TRIB3-SQSTM1 interaction reduces liver fibrosis by restoring autophagy and suppressing exosome-mediated HSC activation. Impaired macroautophagy/autophagy is involved in the pathogenesis of hepatic fibrosis. However, how aberrant autophagy promotes fibrosis is far from understood. Here, we aimed to define a previously unrevealed pro-fibrotic mechanism for the stress protein TRIB3 (tribbles pseudokinase 3)-mediated autophagy dysfunction. Human fibrotic liver tissues were obtained from patients with cirrhosis who underwent an open surgical repair process. The functional implications of TRIB3 were evaluated in mouse models of hepatic fibrosis induced by bile duct ligation (BDL) or thioacetamide (TAA) injection. Human fibrotic liver tissues expressed higher levels of TRIB3 and selective autophagic receptor SQSTM1/p62 (sequestosome 1) than nonfibrotic tissues and the elevated expression of TRIB3 and SQSTM1 was positively correlated in the fibrotic tissues. Silencing Trib3 protected against experimentally induced hepatic fibrosis, accompanied by restored autophagy activity in fibrotic liver tissues. Furthermore, TRIB3 interacted with SQSTM1 and hindered its binding to MAP1LC3/LC3, which caused the accumulation of SQSTM1 aggregates and obstructed autophagic flux. The TRIB3-mediated autophagy impairment not only suppressed autophagic degradation of late endosomes but also promoted hepatocellular secretion of INHBA/Activin A-enriched exosomes which caused migration, proliferation and activation of hepatic stellate cells (HSCs), the effector cells of liver fibrosis. Disrupting the TRIB3-SQSTM1 interaction with a specific helical peptide exerted potent protective effects against hepatic fibrosis by restoring autophagic flux in hepatocytes and HSCs. Together, stress-elevated TRIB3 expression promotes hepatic fibrosis by interacting with SQSTM1 and interfering with its functions in liver-parenchymal cells and activating HSCs. Targeting this interaction is a promising strategy for treating fibroproliferative liver diseases.Abbreviations: 3-MA: 3-methyladenine; AAV: adeno-associated virus; ACTA2/α-SMA: actin, alpha 2, smooth muscle, aorta; BDL: bile duct ligation; BECN1/Beclin 1: beclin 1, autophagy related; CHX: cycloheximide; CQ: chloroquine; Edu: 5-ethynyl-2-deoxyuridine; ESCRT: endosomal sorting complexes required for transport; HSC: hepatic stellate cell; ILV: intralumenal vesicle; LAMP1: lysosomal-associated membrane protein 1; MAP1LC3/LC3: microtubule-associated protein 1 light chain 3; MVB: multivesicular body; PIK3C3: phosphatidylinositol 3-kinase, catalytic subunit type 3; PPI: protein-protein interaction; SQSTM1/p62: sequestosome 1; TAA: thioacetamide; TEM: transmission electron microscopy; TGFB1/TGFβ1: transforming growth factor, beta 1; TLR2: toll-like receptor 2; TRIB3: tribbles pseudokinase 3."	"MicroRNA-130a has pro-fibroproliferative potential in hypertrophic scar by targeting CYLD. Hypertrophic scars are dermal fibrosis diseases that protrude from the surface of the skin and irregularly extend to the periphery, seriously affecting the appearance and limb function of the patient. In this study, we found that microRNA-130a (miR-130a) was increased in hypertrophic scar tissues and derived primary fibroblasts, accompanied by up-regulation of collagen1/3 and α-SMA. Inhibition of miR-130a in hypertrophic scars fibroblasts suppressed the expression of collagen1/3 and α-SMA as well as the cell proliferation. Bioinformatics analysis combined with luciferase reporter gene assay results indicated that CYLD was a target gene of miR-130a, and the miR-130a mimic could reduce the level of CYLD. In contrast to miR-130a, the expression of CYLD was downregulated in hypertrophic scars and their derived fibroblasts. Overexpressing CYLD inhibited the expression of collagen 1/3 and α-SMA, slowed cell proliferation, and inhibited Akt activity. As expected, further study showed that the overexpression of CYLD could prevent the pro-fibroproliferative effects of miR-130a. Consistent with the in vitro results, the inhibitor of miR-130a effectively ameliorated excessive collagen deposition in bleomycin-induced skin fibrosis mouse model. Taken together, our results indicate that miR-130a promotes collagen secretion, myofibroblast transformation and cell proliferation by targeting CYLD and enhancing Akt activity. Therefore, the miR-130a/CYLD/Akt pathway may serve as a novel entry point for future skin fibrosis research."	"Exposure to water-accommodated fractions of two different crude oils alters morphology, cardiac function and swim bladder development in early-life stages of zebrafish. The present study investigated the developmental toxicity of water-accommodated fractions (WAFs) of Oman crude oil (OCO) and Merey crude oil (MCO) on zebrafish (Danio rerio) in early-life stages (ELS). Based on total petroleum hydrocarbons (TPH), LC50 values manifested that OCO WAF was 1.2-fold more lethal to zebrafish embryos than MCO WAF. As for hatching rate, EC50 value for OCO WAF was 5.7-fold lower than that for MCO WAF. To evaluate the sublethal morphological effects, semi-quantitative extended general morphological score (GMS) and general teratogenic score (GTS) systems were adopted. The GMS and GTS scores indicated that the WAFs caused remarkable developmental delay and high frequencies of malformation in a dose-dependent manner. Additionally, OCO and MCO WAFs exposure exhibited severe bradycardia (reduced heart rate) and overt reduction of stroke volume, with a concomitant decrease in the cardiac output. Meanwhile, the WAFs also induced dose-dependent down-regulated expressions of several key functional genes of excitation-contraction coupling in cardiomyocytes, including ryr2, atp2a2a, atp2a2b, ncx1h, and kcnh2. For key gene markers of swim bladder development, results showed that high dose of TPH induced significant down-regulation of hb9 and anxa5 with no obvious change of acta2, suggesting that the WAFs could affect the specification and development of epithelium and outer mesothelium of swim bladder in zebrafish ELS. A strong negative relationship between the failure of swim bladder inflation and cardiac dysfunction via cardiac output was found. All these findings provide novel insights into the complicated mechanisms of the developmental toxicity of crude oil on fish in ELS."	"Apelin promotes hepatic fibrosis through ERK signaling in LX-2 cells. Apelin participates in cardiovascular functions, metabolic disease, and homeostasis disorder. However, the biological function of apelin in liver diseases, especially liver fibrosis is still under investigation. The present study aimed to investigate the expression of apelin in nonalcoholic fatty liver disease (NAFLD) and the mechanism of apelin promoting hepatic fibrosis through ERK signaling in hepatic stellate LX-2 cells. The results showed that the ALT and AST levels in serum were increased in the mice fed HFC. The histological staining revealed that hepatocellular steatosis and ballooning degeneration was severe, and fibrogenesis appeared as increased pericellular collagen deposition along with pericentral (lobular) collagen deposition in the mice fed HFC. Immunochemistry and qRT-PCR results showed that the expression of apelin and profibrotic genes was higher as compared to the control group. The in vitro experiments demonstrated that apelin-13 upregulated the transcription and translation levels of collagen type I (collagen-I) and α-smooth muscle actin (α-SMA) in LX-2 cells. The immunofluorescent staining, qRT-PCR, and Western blot results showed that the overexpression of apelin markedly increased the expression of α-SMA and cyclinD1. The LX-2 cells treated with apelin-13 displayed an increased expression of pERK1/2 in a time-dependent manner, while the pretreatment with PD98059 abolished the apelin-induced expression of α-SMA and cyclinD1. Furthermore, the in vivo and in vitro assays suggested a key role of apelin in promoting liver fibrosis, and the underlying mechanism might be ascribed to the apelin expression of profibrotic genes via ERK signaling pathway."	"Inhibition of retinoic acid signaling induces aberrant pericyte coverage and differentiation resulting in vascular defects in congenital diaphragmatic hernia. The mortality and morbidity of patients with congenital diaphragmatic hernia (CDH) is primarily caused by treatment-resistant, persistent pulmonary hypertension. Structural vascular changes, exemplified by extensive muscularization, are already present early in gestation, but the origin of these abnormalities is unknown. Understanding the origin of the vascular defects is important to improve treatment modalities. Here, we show that the distribution of pericytes is different and may thereby potentially initiate the vascular pathology in CDH. Transient inhibition of retinoic acid (RA) signaling early during pregnancy, the basis of the CDH mouse model, led to an increase in the number of pericytes, thereby affecting the angiogenic potential of pericytes in the fetuses. Pericytes of CDH lungs showed reduced proliferation and an increased ACTA2 expression, which indicates that these pericytes are more contractile than in control lung pericytes. This resulted in increased pericyte coverage of pulmonary vessels and reduced expansion of the capillary bed, the earliest pathological sign of the structural changes in CDH. Furthermore, the pericytes had reduced and altered collagen IV deposition in CDH, pointing to a loss of basal membrane integrity between pericytes and endothelial cells. Inhibition of RA signaling in vitro resulted in reduced migration of pericytes, reduced angiogenesis, and loss of collagen IV expression. Importantly, we confirmed our findings in lungs of human CDH patient samples. In summary, inhibition of RA signaling affects the lung pericyte population, leading to increased contractility, reduced pulmonary angiogenesis, and aberrant lung development, as observed in CDH."	"Long non-coding RNA (lncRNA) transcriptional landscape in breast cancer identifies LINC01614 as non-favorable prognostic biomarker regulated by TGFβ and focal adhesion kinase (FAK) signaling. Long non-coding RNAs (lncRNAs) represent a class of epigenetic regulators implicated in a number of physiological and pathological conditions. Herein, we characterized the lncRNA expression portrait from 837 patients with invasive breast cancer and 105 normals from the cancer genome atlas (TCGA), which revealed eighteen upregulated and forty-six downregulated lncRNAs. Clustering analysis revealed distinct lncRNA profile for the triple negative breast cancer (TNBC) and normal breast tissue, while less separation was observed among the HER2<sup>+</sup>HR<sup>+</sup>, HER2<sup>+</sup>HR<sup>-</sup>, HER2<sup>-</sup>HR<sup>+</sup> molecular subtypes. LINC01614, and LINC01235 correlated with worse disease-free survival (DFS), while the expression of lnc-LRR1-1, lnc-ODF3B-2, AC015712.5, lnc-LAMB3-1, lnc-SPP2-3, and lnc-MAP9-2 correlated with better DFS. The expression of LINC01235 correlated with worse overall survival (OS), while the expression of MIR205HG, lnc-MAP2K6-5, FGF14-AS2, lnc-SPP2-3 correlated with better OS. Highest expression of LINC01614 was observed in progesterone receptor (PR)<sup>+</sup>, Estrogen receptor (PR)<sup>+</sup>, and HER2<sup>+</sup> tumors, while lowest expression was in TNBC. Concordantly, LINC01614 was highly expressed in the luminalB/HER2<sup>+</sup> subtype from the SRP062132 dataset. Elevated expression of LINC01614 was subsequently validated in primary breast cancer tissue and breast cancer cell lines. Bioinformatics and pathway analyses on LINC01614<sup>high</sup> vs. LINC01614<sup>low</sup> BC tissue revealed TGFβ1 and ECM as the most activated networks in LINC01614<sup>high</sup> tumors. Concordantly, strong correlation between the expression of LINC01614 and COL10A1 (R<sup>2</sup> = 0.6929), SPOCK1 (R<sup>2</sup> = 0.5156), ZEB1 (R<sup>2</sup> = 0.3372), TGFBI (R<sup>2</sup> = 0.2978), TGFB1 (R<sup>2</sup> = 0.1985), ACTA2 (R<sup>2</sup> = 0.1833), and TAGLN (R<sup>2</sup> = 0.1909) was observed. Mechanistically, exogenous TGFB1 induced LINC01614 expression in the BT474 triple positive BC model, while small-molecule inhibition of transforming growth factor β (TGFβ, SB-431542) or focal adhesion kinase (FAK, PF-573228) abrogated LINC01614 expression. Our data revealed the lncRNA transcription landscape in breast cancer and its molecular subtypes. Our data provide novel insight implicating LINC01614 as unfavorable prognostic marker in BC, its association with the HR<sup>+</sup>/HER2<sup>+</sup> BC molecular subtype and its regulation by TGFβ and FAK signaling."	"Antibodies against specific extractable nuclear antigens (ENAs) as diagnostic and prognostic tools and inducers of a profibrotic phenotype in cultured human skin fibroblasts: are they functional? The importance of systemic sclerosis (SSc) autoantibodies for diagnosis has become recognized by their incorporation into the 2013 ACR/EULAR classification criteria. Clear prognostic and phenotypic associations with cutaneous subtype and internal organ involvement have been also described. However, little is known about the potential of autoantibodies to exert a direct pathogenic role in SSc. The aim of the study is to assess the pathogenic capacity of anti-DNA-topoisomerase I (anti-Topo-I) and anti-centromeric protein B (anti-Cenp-B) autoantibodies to induce pro-fibrotic markers in dermal fibroblasts. Dermal fibroblasts were isolated from unaffected and affected skin samples of (n = 10) limited cutaneous SSc (LcSSc) patients, from affected skin samples of diffuse cutaneous (DcSSc) patients (n = 10) and from healthy subjects (n = 20). Fibroblasts were stimulated with anti-Topo-I, anti-Cenp-B IgGs, and control IgGs in ratios 1:100 and 1:200 for 24 h. Cells were also incubated with 10% SSc anti-Topo-I<sup>+</sup> and anti-Cenp-B<sup>+</sup> whole serum and with 10% control serum for 24 h. Viability was assessed by MTT test, while apoptosis was assessed by flow cytometry. Activation of pro-fibrotic genes ACTA2, COL1A1, and TAGLN was evaluated by quantitative real-time PCR (qPCR), while the respective protein levels alpha-smooth-muscle actin (α-SMA), type-I-collagen (Col-I), and transgelin (SM22) were assessed by immunocytochemistry (ICC). MTT showed that anti-Cenp-B/anti-Topo-I IgGs and anti-Cenp-B<sup>+</sup>/anti-Topo-I<sup>+</sup> sera reduced viability (in a dilution-dependent manner for IgGs) for all the fibroblast populations. Apoptosis is induced in unaffected LcSSc and control fibroblasts, while affected LcSSc/DcSSc fibroblasts showed apoptosis resistance. Basal mRNA (ACTA2, COL1A1, and TAGLN) and protein (α-SMA, Col-1, and SM22) levels were higher in affected LcSSc/DcSSc fibroblasts compared to LcSSc unaffected and to control ones. Stimulation with anti-Cenp-B/anti-Topo-I IgGs and with anti-Cenp-B<sup>+</sup>/anti-Topo-I<sup>+</sup> sera showed a better induction in unaffected LcSSc and control fibroblasts. However, a statistically significant increase of all pro-fibrotic markers is reported also in affected LcSSc/DcSSc fibroblasts upon stimulation with both IgGs and sera. This study suggests a pathogenic role of SSc-specific autoantibodies to directly induce pro-fibrotic activation in human dermal fibroblasts. Therefore, besides the diagnostic and prognostic use of those autoantibodies, these data might further justify the importance of immunosuppressive drugs in the early stages of the autoimmune disease, including SSc."	"Characterization and population dynamics of germ cells in adult macaque testicular cultures. From a biological and clinical perspective, it is imperative to establish primate spermatogonial cultures. Due to limited availability of human testicular tissues, the macaque (Macaca fascicularis) was employed as non-human primate model. The aim of this study was to characterize the expression of somatic as well as germ cell markers in testicular tissues and to establish macaque testicular primary cell cultures. Characterization of macaque testicular cell population was performed by immunohistochemical analyses for somatic cell markers (SOX9, VIM, SMA) as well as for germ cell markers (UTF1, MAGEA4, VASA). Testicular cells from adult macaque testes (n = 4) were isolated and cultured for 21 days using three stem cell culture media (SSC, PS and SM). An extended marker gene panel (SOX9, VIM, ACTA2; UTF1, FGFR3, MAGEA4, BOLL, DDX4) was then employed to assess the changes in gene expression levels and throughout the in vitro culture period. Dynamics of the spermatogonial population was further investigated by quantitative analysis of immunofluorescence-labeled MAGEA4-positive cells (n = 3). RNA expression analyses of cell cultures revealed that parallel to decreasing SOX9-expressing Sertoli cells, maintenance of VIM and ACTA2-expressing somatic cells was observed. Expression levels of germ cell marker genes UTF1, FGFR3 and MAGEA4 were maintained until day 14 in SSC and SM media. Findings from MAGEA4 immunofluorescence staining corroborate mRNA expression profiling and substantiate the overall maintenance of MAGEA4-positive pre- and early meiotic germ cells until day 14. Our findings demonstrate maintenance of macaque germ cell subpopulations in vitro. This study provides novel perspective and proof that macaques could be used as a research model for establishing in vitro germ cell-somatic cell cultures, to identify ideal culture conditions for long-term maintenance of primate germ cell subpopulation in vitro."	"The effects of losartan on cytomegalovirus infection in human trabecular meshwork cells. Human cytomegalovirus (CMV) has been emerged as one of the causes of acute recurrent or chronic hypertensive anterior uveitis in immunocompetent. In hypertensive anterior uveitis, human trabecular meshwork (TM) cells are considered a focus of inflammation. We investigated the effects of losartan, a selective angiotensin II receptor antagonist, on CMV infection in human TM cells. Human TM cells were infected with CMV AD169. Virus infected and mock-infected cells were treated with losartan or dexamethasone or ganciclovir with or without transforming growth factor (TGF)-β1. Viral DNA accumulation and host cell response were analyzed using real-time PCR. Levels of secreted TGF-β1 were measured by determining its concentration in conditioned medium using a commercially available sandwich enzyme-linked immunosorbent assay (ELISA) kits. CMV infection significantly increased the concentrations of the secreted TGF-β1 at 3, 5, and 7 day post infection in TM cells. Treatment with dexamethasone or losartan significantly decreased the levels of TGF-β1, whereas treatment with ganciclovir did not affect TGF-β1 levels. TM cells treated with TGF-β1 along with the presence of losartan for 48 hours showed marked decrease in the expression of α-smooth muscle actin (SMA), lysyl oxidase (LOX), connective tissue growth factor (CTGF), fibronectin and collagen-1A, compared with cells treated with TGF-β1 alone. CMV-infected TM cells stimulated by TGF-β1 significantly increased the expression of α-SMA and CTGF, which were attenuated by additional treatment with losartan. Losartan inhibited the expression of TGF-β1 and fibrogenic molecules in human TM cells. Thus, losartan has the potential to decrease TM fibrosis in patients with CMV-induced hypertensive anterior uveitis."	"Administration of human umbilical cord blood mononuclear cells restores bladder dysfunction in streptozotocin-induced diabetic rats. This study evaluated the effect of human umbilical cord blood mononuclear cells (HUCB-MNCs) on bladder dysfunction in streptozotocin (STZ; 35 mg/kg, i.v.)-induced diabetic rats. Adult male Sprague-Dawley rats (n = 30) were equally divided into three groups: control group, STZ-diabetic group, and HUCB-MNC-treated group (1 × 10<sup>6</sup> cells). HUCB-MNCs were isolated by density gradient centrifugation from eight healthy donors and injected into the corpus cavenosum in STZ-diabetic rats 4 weeks after the induction of diabetes. Studies were performed 4 weeks after HUCB-MNC or vehicle injection. In vitro organ bath studies were performed on bladder strips, whereas protein expression of hypoxia-inducible factor (HIF)-1α, vascular endothelial growth factor (VEGF), and α-smooth muscle actin (SMA) in the bladder and the ratio of smooth muscle cells (SMCs) to collagen were determined using western blotting and Masson trichrome staining. Neurogenic contractions of detrusor smooth muscle strips were 55% smaller in the diabetic group than control group (P &lt; 0.05); these contractions were normalized by HUCB-MNC treatment. In addition, HUCB-MNC treatment restored the impaired maximal carbachol-induced contractile response in detrusor strips in the diabetic group (29%; P &lt; 0.05). HUCB-MNC treatment improved the KCl-induced contractile response in the diabetic bladder (68%; P &lt; 0.05), but had no effect on ATP-induced contractile responses. Increased expression of HIF-1α and VEGF protein and decreased expression of α-SMA protein and the SMC/collagen ratio in diabetic rats were reversed by HUCB-MNC. Administration of HUCB-MNCs facilitates bladder function recovery, which is likely related to downregulation of HIF-1α expression and attenuation of fibrosis in STZ-diabetic rats."	"foxc1 is required for embryonic head vascular smooth muscle differentiation in zebrafish. Vascular smooth muscle of the head derives from neural crest, but developmental mechanisms and early transcriptional drivers of the vSMC lineage are not well characterized. We find that in early development, the transcription factor foxc1b is expressed in mesenchymal cells that associate with the vascular endothelium. Using timelapse imaging, we observe that foxc1b expressing mesenchymal cells differentiate into acta2 expressing vascular mural cells. We show that in zebrafish, while foxc1b is co-expressed in acta2 positive smooth muscle cells that associate with large diameter vessels, it is not co-expressed in capillaries where pdgfrβ positive pericytes are located. In addition to being an early marker of the lineage, foxc1 is essential for vSMC differentiation; we find that foxc1 loss of function mutants have defective vSMC differentiation and that early genetic ablation of foxc1b or acta2 expressing populations blocks vSMC differentiation. Furthermore, foxc1 is expressed upstream of acta2 and is required for acta2 expression in vSMCs. Using RNA-Seq we determine an enriched intersectional gene expression profile using dual expression of foxc1b and acta2 to identify novel vSMC markers. Taken together, our data suggests that foxc1 is a marker of vSMCs and plays a critical functional role in promoting their differentiation."	"Epidural adipose tissue-derived mesenchymal stem cell activation induced by lung cancer cells promotes malignancy and EMT of lung cancer. Spinal metastasis is a major challenge in patients with advanced lung cancer, but the mechanisms in the organotropism of metastasis are still unclear. Adipose-derived mesenchymal stem cells (ADSCs) exhibit cancer-promoting properties that influence the tumour microenvironment; however, there is no research on ADSCs from epidural fat thus far. In this study, we isolated and identified ADSCs from epidural adipose tissue for the first time. We examined the activation of epidural ADSCs treated with lung cancer cell-conditioned medium by immunohistochemistry, western blot and qRT-PCR assays. The expression of interleukin (IL)-6 family cytokines in the supernatants of ADSCs were evaluated by enzyme-linked immunosorbent assay. The effects of epidural ADSCs on the growth and invasion of lung cancer cells were evaluated with the CCK-8 and Transwell assays. The expression of signal transducer and activator of transcription 3 (STAT3), matrix metalloprotease and epithelial-mesenchymal transition markers were measured by western blot assays. Our results showed that ADSCs treated with lung cancer cell-conditioned medium expressed higher levels of the myofibroblast marker α-smooth muscle actin and fibroblast activation protein than ADSCs cultured alone. Then, we found that lung cancer cells induced ADSCs to secrete high levels of IL-6 family cytokines and activate the STAT3 signalling pathway. Moreover, activated epidural ADSCs exhibited the ability to promote lung cancer cell proliferation and invasion by elevating matrix metalloprotease expression and epithelial-mesenchymal transition in cancer cells. Furthermore, blocking IL-6 can counteract the differentiation and tumour-promoting effects of ADSCs. Our results suggest that ADSCs respond to lung cancer cells and are involved in the crosstalk between primary tumours and pre-metastatic niches in epidural fat."	"Interleukin-1β Inhibition for Chronic Kidney Disease in Obese Mice With Type 2 Diabetes. Inflammasome-driven release of interleukin(IL)-1β is a central element of many forms of sterile inflammation and has been evident to promote the onset and progression of diabetic kidney disease. We microdissected glomerular and tubulointerstitial samples from kidney biopsies of patients with diabetic kidney disease and found expression of IL-1β mRNA. Immunostaining of such kidney biopsies across a broad spectrum of diabetic kidney disease stages revealed IL-1β positivity in a small subset of infiltrating immune cell. Thus, we speculated on a potential of IL-1β as a therapeutic target and neutralizing the biological effects of murine IL-1β with a novel monoclonal antibody in uninephrectomized diabetic db/db mice with progressive type 2 diabetes- and obesity-related single nephron hyperfiltration, podocyte loss, proteinuria, and progressive decline of total glomerular filtration rate (GFR). At 18 weeks albuminuric mice were randomized to intraperitoneal injections with either anti-IL-1β or control IgG once weekly for 8 weeks. During this period, anti-IL-1β IgG had no effect on food or fluid intake, body weight, and fasting glucose levels. At week 26, anti-IL-1β IgG had reduced renal mRNA expression of kidney injury markers (Ngal) and fibrosis (Col1, a-Sma), significantly attenuated the progressive decline of GFR in hyperfiltrating diabetic mice, and preserved podocyte number without affecting albuminuria or indicators of single nephron hyperfiltration. No adverse effect were observed. Thus, IL-1β contributes to the progression of chronic kidney disease in type 2 diabetes and might therefore be a valuable therapeutic target, potentially in combination with drugs with different mechanisms-of-action such as RAS and SGLT2 inhibitors."	"PGC1α repression in IPF fibroblasts drives a pathologic metabolic, secretory and fibrogenic state. Idiopathic pulmonary fibrosis (IPF) is a fatal ageing-related disease linked to mitochondrial dysfunction. The present study aimed to determine whether peroxisome proliferator activated receptor gamma co-activator 1-alpha (PPARGC1A, encoding PGC1α), a master regulator of mitochondrial biogenesis, is diminished in IPF and controls pathologic fibroblast activation. Primary human IPF, control lung fibroblasts and fibroblasts sorted from bleomycin-injured mice were used to evaluate the expression and function of PGC1α. In vitro PGC1α manipulation was performed by small interfering RNA knockdown or overexpression. Fibroblast activation was assessed by quantitative PCR, Western blotting, matrix deposition, secreted cytokine array, immunofluorescence and traction force microscopy. Mitochondrial function was assessed by Seahorse analyzer and mitochondria mass and number by flow cytometry, mitochondrial DNA quantification and transmission electron microscopy (TEM). We found that PGC1α levels are stably repressed in IPF fibroblasts. After bleomycin injury in young mice, PGC1α expression drops transiently but then increases prior to fibrosis resolution. In contrast, PGC1α expression fails to recover in aged mice with persistent fibrosis. PGC1α knockdown alone in normal human lung fibroblasts reduces mitochondrial mass and function while enhancing contractile and matrix synthetic fibroblast activation, senescence-related gene expression and soluble profibrotic and prosenescence signalling. Re-expression of PGC1α in IPF fibroblasts ameliorates all of these pathological cellular functions. Pharmacological treatment of IPF fibroblasts with rosiglitazone, but not thyroid hormone, elevated PGC1α expression and attenuated fibroblast activation. The sustained repression of PGC1α and beneficial effects of its rescue in IPF fibroblasts identifies PGC1α as an important regulator of the fibroblast's pathological state in IPF."	"Guanidine-based disinfectants, polyhexamethylene guanidine-phosphate (PHMG-P), polyhexamethylene biguanide (PHMB), and oligo(2-(2-ethoxy)ethoxyethyl guanidinium chloride (PGH) induced epithelial-mesenchymal transition in A549 alveolar epithelial cells. Abstracts Objective: The major active ingredient of humidifier disinfectant, polyhexamethylene guanidine-phosphate (PHMG-P), caused hundreds of deaths with pulmonary fibrosis. However, structurally similar guanidine-based disinfectants are still in use in various fields. Moreover, as they are precursors of excellent antimicrobial compounds, new chemicals with guanidine-based structures have been synthesized and introduced. In this study, we evaluated pulmonary fibrotic responses induced by PHMG-P, polyhexamethylene biguanide (PHMB), and oligo(2-(2-ethoxy)ethoxyethyl guanidinium chloride (PGH) and their toxicity mechanisms in type II alveolar epithelial A549 cells. Materials and methods: Cellular damage was compared by using the cytotoxicity test (WST-1 assay) and plasma membrane toxicity tests (Lactate dehydrogenase leakage detection assay and plasma membrane staining). As a measure of fibrotic response, induction of the epithelial-mesenchymal transition (EMT) was evaluated by measuring E-cadherin and α-smooth muscle actin (α-SMA) protein expression (epithelial and mesenchymal marker, respectively). Results: All tested compounds showed membrane damage; PHMG-P and PGH induced the highest and lowest damage, respectively. Moreover, they induced EMT when the test chemicals were treated with similar cytotoxic concentrations. Conclusions: Our study indicates that three guanidine-based disinfectants are potential fibrosis-inducing chemicals that induce EMT through cellular damage. Therefore, use of guanidine-based polymers should be strictly regulated by considering their potential adverse effects on the lungs."	"A Neonate with Prune Belly Syndrome and Limb Reduction Defect. NA"	"Association of cell cycle arrest with anticancer drug-induced epithelial-mesenchymal transition in alveolar epithelial cells. Many drugs exert serious cytotoxic effects on pulmonary tissues. Although several reports have shown an association of epithelial-mesenchymal transition (EMT) with anticancer drug-induced lung injury, mechanisms of these effects are poorly understood. In the present study, we evaluated mechanisms of anticancer drug-induced EMT, with a focus on involvement of cell cycle arrest. We found that methotrexate (MTX) altered mRNA expression levels of many genes as determined by microarray analysis. Gene set enrichment analysis revealed that cell cycle arrest pathways may be associated with MTX-induced EMT. In addition, thymidine (THY) and nocodazole (NOC), which induce cell cycle arrest at S-phase and G2/M-phase, increased mRNA expression levels of α-smooth muscle actin (SMA), an EMT marker. Furthermore, α-SMA protein expression in cells arrested at S- and G2/M-phases by MTX and paclitaxel (PTX) was significantly higher than that in cells at G1. Notably, co-treatment of cells with THY or NOC and EMT-inducing anticancer drugs did not result in additional upregulation of α-SMA mRNA expression. These findings suggested that cell cycle arrest may be closely associated with anticancer drug-induced EMT in alveolar epithelial cells."	"GLI2 Modulated by SUFU and SPOP Induces Intestinal Stem Cell Niche Signals in Development and Tumorigenesis. Gut mesenchyme provides key stem cell niche signals such as Wnt ligands, but how these signals are regulated is unclear. Because Hedgehog (Hh) signaling is critical for gut mesenchymal development and tumorigenesis, we investigated Hh-mediated mechanisms by analyzing mice deleted for key negative regulators of Hh signaling, Sufu and/or Spop, in the gut mesenchyme, and demonstrated their dosage-dependent roles. Although these mutants exhibit abnormal mesenchymal cell growth and functionally defective muscle layers, villification is completed with proper mesenchymal clustering, implying a permissive role for Hh signaling. These mesenchymal defects are partially rescued by Gli2 reduction. Consistent with increased epithelial proliferation caused by abnormal Hh activation in development, Sufu reduction promotes intestinal tumorigenesis, whereas Gli2 heterozygosity suppresses it. Our analyses of chromatin and GLI2 binding genomic regions reveal its transcriptional regulation of stem cell niche signals through enhancers, providing mechanistic insight into the intestinal stem cell niche in development and tumorigenesis."	"TGF-β induces liver fibrosis via miRNA-181a-mediated down regulation of augmenter of liver regeneration in hepatic stellate cells. To study the role of miRNA-181a and augmenter of liver regeneration in TGF-β-induced fibrosis in hepatic stellate cells. LX2 cells were treated with 20 ng/ml TGF-β for 24 h. miRNA-181a, ALR plasmid and empty vectors were transfected using siPORT NeoFx reagent. Cells were harvested after 48 h or 72 h of transfection for protein or RNA analysis. Western blotting was performed for ALR, TGF-β receptor II (TGFβ-RII), collagen 1A1 (COLL1A1), alpha-smooth muscle cell actin (α-SMA), rac1, E-cadherin and β-actin. Quantitative RT-PCR was performed for ALR, GAPDH, miRNA-181a or 5S rRNA. TGF-β induced the expression of miRNA-181a, which in turn down-regulated ALR thereby induced the fibrosis markers, such as COLL1A1, α-SMA and rac1 in hepatic stellate cells. Over-expression of miRNA-181a down-regulated expression of ALR and up-regulated expression of fibrosis markers. On the other hand, ALR over-expression resulted in a decrease in miRNA-181a expression and fibrosis markers. Over-expression of ALR also inhibited the expression of TGFβ-RII and increased expression E-cadherin. TGF-β induced miRNA-181a, which in turn induced fibrosis, at least in part, by inhibiting ALR. ALR inhibited TGF-β action by decreasing the expression of TGFβ-RII, thereby inhibiting miRNA-181a expression and fibrosis markers. ALR could serve as a potential molecule to inhibit liver fibrosis."	"Transitional human alveolar type II epithelial cells suppress extracellular matrix and growth factor gene expression in lung fibroblasts. Epithelial-fibroblast interactions are thought to be very important in the adult lung in response to injury, but the specifics of these interactions are not well defined. We developed coculture systems to define the interactions of adult human alveolar epithelial cells with lung fibroblasts. Alveolar type II cells cultured on floating collagen gels reduced the expression of type 1 collagen (COL1A1) and α-smooth muscle actin (ACTA2) in fibroblasts. They also reduced fibroblast expression of hepatocyte growth factor (HGF), fibroblast growth factor 7 (FGF7, KGF), and FGF10. When type II cells were cultured at an air-liquid interface to maintain high levels of surfactant protein expression, this inhibitory activity was lost. When type II cells were cultured on collagen-coated tissue culture wells to reduce surfactant protein expression further and increase the expression of some type I cell markers, the epithelial cells suppressed transforming growth factor-β (TGF-β)-stimulated ACTA2 and connective tissue growth factor (CTGF) expression in lung fibroblasts. Our results suggest that transitional alveolar type II cells and likely type I cells but not fully differentiated type II cells inhibit matrix and growth factor expression in fibroblasts. These cells express markers of both type II cells and type I cells. This is probably a normal homeostatic mechanism to inhibit the fibrotic response in the resolution phase of wound healing. Defining how transitional type II cells convert activated fibroblasts into a quiescent state and inhibit the effects of TGF-β may provide another approach to limiting the development of fibrosis after alveolar injury."	"Hemophagocytic syndrome with acute kidney injury accompanied by erythrophagocytic macrophages in the tubular lumen. Hemophagocytic syndrome (HPS) is a life-threatening syndrome involving excessive immune activation. It is often accompanied by renal involvement known as acute kidney injury (AKI), which is a poor prognostic factor of HPS. Thus, early diagnosis and treatment are very important. However, it is rarely identified in renal biopsy specimens, and its major manifestation is acute tubular necrosis. We report a rare case of erythrophagocytic macrophage presence in the tubular lumen of a patient with HPS-associated AKI. A kidney biopsy showed acute tubular necrosis, interstitial massive macrophage infiltration, and phagocytic macrophage casts without glomerular change. Some arteriolar vascular smooth muscle cells showed vacuolization because they were positive for α-smooth muscle actin. The patient's renal function improved after methylprednisolone pulse therapy followed by oral prednisolone after a month. Our case presents a new pathologic pattern of HPS. Careful urinalysis could suggest renal involvement with HPS. Having knowledge of this pathologic pattern of HPS is important to recognize the disease and to treat it appropriately."	"Cancer extracellular vesicles contribute to stromal heterogeneity by inducing chemokines in cancer-associated fibroblasts. Cancer-associated fibroblasts (CAFs), one of the major components of a tumour microenvironment, comprise heterogeneous populations involved in tumour progression. However, it remains obscure how CAF heterogeneity is governed by cancer cells. Here, we show that cancer extracellular vesicles (EVs) induce a series of chemokines in activated fibroblasts and contribute to the formation of the heterogeneity. In a xenograft model of diffuse-type gastric cancer, we showed two distinct fibroblast subpopulations with alpha-smooth muscle actin (α-SMA) expression or chemokine expression. MicroRNAs (miRNAs) profiling of the EVs and the transfection experiment suggested that several miRNAs played a role in the induction of chemokines such as CXCL1 and CXCL8 in fibroblasts, but not for the myofibroblastic differentiation. Clinically, aberrant activation of CXCL1 and CXCL8 in CAFs correlated with poorer survival in gastric cancer patients. Thus, this link between chemokine expression in CAFs and tumour progression may provide novel targets for anticancer therapy."	"Electrical Stimulation Activates Fibroblasts through the Elevation of Intracellular Free Ca<sup>2+</sup>: Potential Mechanism of Pelvic Electrical Stimulation Therapy. Ca<sup>2+</sup> is an important ion in response to electrical stimulation (ES) and acts as second messenger in the regulation of various physiological processes. Pelvic floor electrical stimulation (PES) is a low-voltage clinical application, available for urinary incontinence (UI) treatment. Fibroblasts, as the main cellular component of vaginal wall and pelvic ligament, play an important role in the maintenance of pelvic health. We studied the effect of ES on fibroblasts in this study. ES was conducted with electrotaxis chambers on L929 fibroblast and the ES parameter was 100 mV/mm×2h. The results showed that ES increased intracellular Ca<sup>2+</sup> concentration, promoted the expression of PCNA, CyclinB1, and CyclinD1, and increased the proportion of cells in S and G2 phages. After ES, fibroblasts get activated and proliferated. Besides, BAPTA-AM, a membrane permeated chelator for intracellular free Ca<sup>2+</sup>, partially inhibited the effect of ES on fibroblasts activation and proliferation promotion. Furthermore, we elucidated that Ca<sup>2+</sup>, as a second messenger and upstream signal for Smads and Akt signaling, regulated ES-induced nuclear translocation of smad2/3, phosphorylation of smad2/3, Akt, and GSK3β. Finally, we validated the effect of ES on PES mouse model. The results indicated that PES promoted the activation and proliferation of fibroblasts in vivo. In conclusion, we verify that ES can elevate the concentration of intracellular Ca<sup>2+</sup> and activate its downstream signaling and then promote the activation of fibroblasts, which may be one of the mechanisms of PES therapy."	"Transcriptome analysis of gingival tissues of enamel-renal syndrome. Biallelic loss-of-function mutations of human FAM20A have been known to cause enamel-renal syndrome (ERS), featured by agenesis of dental enamel, nephrocalcinosis, and other orodental abnormalities, including gingival hyperplasia. However, while the histopathology of this gingival anomaly has been analyzed, its underlying molecular mechanism remains largely unknown. This study aimed to unravel the pathogenesis of gingival hyperplasia in ERS. Whole-exome sequencing was conducted for an ERS case. Transcriptome analyses, using RNA sequencing, of the patient's gingiva were performed to unravel dysregulated molecules and aberrant biological processes underlying the gingival pathology of ERS, which was further confirmed by histology and immunohistochemistry. Two novel frameshift FAM20A mutations in Exon 1 (g.5417delG; c.129delG; p.Cys44Alafs*101) and Exon 5 (g.62248_62249delAG; c.734_735delAG; p.Glu245Glyfs*11) were identified. Transcriptional profiling of patient's gingival tissue revealed a total of 1683 genes whose expression had increased (1129 genes) or decreased (554 genes) at least 2-fold compared to control gingival tissues. There were 951 gene ontology (GO) terms of biological process being significantly over-represented or under-represented. While GOs involved in extracellular matrix organization, angiogenesis, biomineralization, and epithelial cell proliferation appeared to be activated in ERS gingiva, genes related to keratinocyte differentiation, epithelial development, and keratinization were of decreased expression. FAM20A immunohistochemistry revealed a strong reactivity at the suprabasal layers of epithelium in control gingiva but showed a significantly diminished and scattered signal in ERS tissues. For genes showing significant over-expression in the transcriptome analyses, namely ALPL, SPARC, and ACTA2, an increased immunoreactivity was observed. Our results unraveled a potential role for FAM20A in homeostasis of both gingival epithelium and connective tissues."	"Collagen content and extracellular matrix cause cytoskeletal remodelling in pancreatic fibroblasts. In many solid tumours a desmoplastic reaction takes place, which results in tumour tissue stiffening due to the extensive production of extracellular matrix (ECM) proteins, such as collagen, by stromal cells, mainly fibroblasts (FBs) and cancer-associated fibroblasts (CAFs). In this study, we investigated the effect of collagen stiffness on pancreatic FBs and CAFs, particularly on specific cytoskeleton properties and gene expression involved in tumour invasion. We found that cells become stiffer when they are cultured on stiff substrates and express higher levels of alpha-smooth muscle actin (α-SMA). Also, it was confirmed that on stiff substrates, CAFs are softer than FBs, while on soft substrates they have comparable Young's moduli. Furthermore, the number of spread FBs and CAFs was higher in stiffer substrates, which was also confirmed by Ras-related C3 botulinum toxin substrate 1 ( RAC1) mRNA expression, which mediates cell spreading. Although stress fibres in FBs become more oriented on stiff substrates, CAFs have oriented stress fibres regardless of substrate stiffness. Subsequently, we demonstrated that cells' invasion has a differential response to stiffness, which was associated with regulation of Ras homologue family member ( RhoA) and Rho-associated, coiled-coil containing protein kinase 1 ( ROCK-1) mRNA expression. Overall, our results demonstrate that collagen stiffness modulates FBs and CAFs cytoskeleton remodelling and alters their invasion properties."	"Activin a promotes myofibroblast differentiation of endometrial mesenchymal stem cells via STAT3-dependent Smad/CTGF pathway. Endometriosis, characterized by the presence of functional endometrial tissues outside the uterus, is one of the most common gynecological disorders. Endometrial mesenchymal stem cells (MSCs) are crucial for the occurrence and development of endometriosis. Ectopic endometrial MSCs exist in the peritoneal cavity. Thus, the bioactive factors in endometriotic peritoneal fluid may regulate the biological behaviors of endometrial MSCs. In this study, after assessing the concentration of Activin A in peritoneal fluid using ELISA, we isolated and cultured endometrial MSCs and investigated whether Activin A stimulated endometrial MSCs to differentiate into myofibroblasts and clarified the underlying mechanisms by quantitative real-time PCR, Western blot analysis, immunofluorescent staining, RNA interference and Chromatin immunoprecipitation. We also employed the inhibitors of Activin A to explore the possibility of suppressing the development of fibrosis in endometriosis using primary endometrial MSCs cultures and a mouse model of endometriosis. Here, we revealed that Activin A significantly elevated in endometriotic peritoneal fluid and activin receptor-like kinase (ALK4), the specific receptor for Activin A, obviously enhanced in ectopic endometrial MSCs compared with eutopic endometrial MSCs from women with or without endometriosis. Next, we found that Activin A drived myofibroblast differentiation of endometrial MSCs, with extremely enhanced expression of connective tissue growth factor (CTGF). CTGF was shown to be required for Activin A-induced expression of ACTA2, COL1A1 and FN1 in endometrial MSCs. CTGF induction by Activin A in endometrial MSCs involved the activation of Smad2/3, as evidenced by the phosphorylation and nuclear translocation of Smad2/3 as well as the binding of Smad2/3 to CTGF promoter. Furthermore, Smad/CTGF pathway in endometrial MSCs required activation of STAT3 while independent of PI3K, JNK and p-38 pathways. In addition, we also demonstrated that inhibition of Activin A pathway impeded myofibroblast differentiation of endometrial MSCs and ameliorated fibrosis in endometriosis mice. Activin A promotes myofibroblast differentiation of endometrial mesenchymal stem cells via STAT3-dependent Smad/CTGF pathway. The results provided the first evidence that STAT3 acted as a crucial Activin A downstream mediator to regulate CTGF production. Our data may supplement the stem cell theory of endometriosis and provide the experimental basis to treat endometriosis-associated fibrosis by manipulating Activin A signaling."	"LXRα limits TGFβ-dependent hepatocellular carcinoma associated fibroblast differentiation. Transforming growth factor β (TGFβ) is deposited in the extracellular space of diverse tissues. Resident fibroblasts respond to TGFβ and undergo myofibroblastic differentiation during tissue wound healing and cancer progression. Cancer-associated fibroblasts (CAFs) communicate with tumor cells during cancer progression, under the guidance of TGFβ signaling. We report that agonist-activated liver X receptors (LXR) limit the expression of key components of myofibroblast differentiation, including the α-smooth muscle actin (αSMA) gene in liver cancer cells. CAFs derived from hepatocellular carcinoma (HCC) express high αSMA and low LXRα levels, whereas hepatocarcinoma cells exhibit an inverse expression pattern. All hepatoma cells analyzed responded to the LXRα agonist T0901317 by inducing fatty acid synthase (FASN) expression. On the other hand, T0901317 antagonized TGFβ-induced fibroblastic marker responses, such as fibronectin and calponin, in a subset of hepatoma cells and all CAFs analyzed. Mechanistically, LXRα antagonized TGFβ signaling at the transcriptional level. Smad3 and LXRα were recruited to adjacent DNA motifs of the ACTA2 promoter. Upon cloning the human ACTA2 promoter, we confirmed its transcriptional induction by TGFβ stimulation, and LXRα overexpression repressed the promoter activity. Hepatosphere formation by HCC cells was enhanced upon co-culturing with CAFs. T0901317 suppressed the positive effects exerted on hepatosphere growth by CAFs. Taken together, the data suggest that LXRα agonists limit TGFβ-dependent CAF differentiation, potentially limiting primary HCC growth."	"MicroRNA26 attenuates vascular smooth muscle maturation via endothelial BMP signalling. As small regulatory transcripts, microRNAs (miRs) act as genetic 'fine tuners' of posttranscriptional events, and as genetic switches to promote phenotypic switching. The miR miR26a targets the BMP signalling effector, smad1. We show that loss of miR26a leads to hemorrhage (a loss of vascular stability) in vivo, suggesting altered vascular differentiation. Reduction in miR26a levels increases smad1 mRNA and phospho-Smad1 (pSmad1) levels. We show that increasing BMP signalling by overexpression of smad1 also leads to hemorrhage. Normalization of Smad1 levels through double knockdown of miR26a and smad1 rescues hemorrhage, suggesting a direct relationship between miR26a, smad1 and vascular stability. Using an in vivo BMP genetic reporter and pSmad1 staining, we show that the effect of miR26a on smooth muscle differentiation is non-autonomous; BMP signalling is active in embryonic endothelial cells, but not in smooth muscle cells. Nonetheless, increased BMP signalling due to loss of miR26a results in an increase in acta2-expressing smooth muscle cell numbers and promotes a differentiated smooth muscle morphology. Similarly, forced expression of smad1 in endothelial cells leads to an increase in smooth muscle cell number and coverage. Furthermore, smooth muscle phenotypes caused by inhibition of the BMP pathway are rescued by loss of miR26a. Taken together, our data suggest that miR26a modulates BMP signalling in endothelial cells and indirectly promotes a differentiated smooth muscle phenotype. Our data highlights how crosstalk from BMP-responsive endothelium to smooth muscle is important for smooth muscle differentiation."	"[Aconitine ameliorates cardiomyocyte hypertrophy induced by angiotensin Ⅱ]. This paper was aimed to investigate the inhibitory effect of aconitine(AC) on angiotensin Ⅱ(Ang Ⅱ)-induced H9 c2 cell hypertrophy and explore its mechanism of action. The model of hypertrophy was induced by Ang Ⅱ(1×10-6 mol·L-1),and cardiomyocytes were incubated with different concentrations of AC. Western blot was used to quantify the protein expression levels of atrial natriuretic peptide(ANP),brain natriuretic peptide(BNP),β-myosin heavy chain(β-MHC),and α-smooth muscle actin(α-SMA). Real-time quantitative PCR(qRT-PCR) was used to quantify the mRNA expression levels of cardiac hypertrophic markers ANP,BNP and β-MHC. In addition,the fluorescence intensity of the F-actin marker,an important component of myofibrils,was detected by using laser confocal microscope. AC could significantly reverse the increase of total protein content in H9 c2 cells induced by Ang Ⅱ; qRT-PCR results showed that AC could significantly inhibit the ANP,BNP and β-MHC mRNA up-regulation induced by AngⅡ. Western blot results showed that AC could significantly inhibit the ANP,BNP and β-MHC protein up-regulation induced by AngⅡ. In addition,F-actin expression induced by Ang Ⅱ could be inhibited by AC,and multiple indicators of cardiomyocyte hypertrophy induced by Ang Ⅱ could be down-regulated,indicating that AC may inhibit cardiac hypertrophy by inhibiting the expression of hypertrophic factors,providing new clues for exploring the cardiovascular protection of AC."	"Probucol ameliorates EMT and lung fibrosis through restoration of SIRT3 expression. Pulmonary fibrosis is a progressive fibrotic lung disease with a paucity of therapeutic options. Here we investigated the potential roles of probucol, a cholesterol-lowering drug with potent anti-oxidation properties, on pulmonary epithelial-mesenchymal transition (EMT) and fibrosis. We found that bleomycin-induced lung fibrosis was associated with increased transforming growth factor (TGF)-β1, α-smooth muscle actin (α-SMA) and decreased E-cadherin expression in lung tissues, indicating EMT formation. Bleomycin treatment resulted in an induction of oxidative stress in lung tissues. Probucol treatment attenuated bleomycin-induced TGF-β1 production, EMT and pulmonary fibrosis, meanwhile it suppressed bleomycin-induced oxidative stress. Bleomycin treatment resulted in decreases in protein expressions of Sirtuin 3 (SIRT3) in the lung, which were restored by ROS scavenger NAC and probucol treatment, suggesting that probucol might restore SIRT3 expression by suppressing bleomycin-induced oxidative stress. In the mouse alveolar type II epithelial cell line MLE-12, probucol treatment leads to an increase in SIRT3 expression in bleomycin-treated AT-II cells, which might contribute to the inhibitory effect of probucol on EMT through suppressing hypoxia inducible factor (HIF)-1α/TGF-β1 pathway. In addition, probucol inhibited bleomycin-induced macrophage infiltration in the lung. Bleomycin decreased SIRT3 protein expression, whereas increased HIF-1α activation and TGF-β1 release in the mouse macrophage cell line RAW264.7, which were attenuated by probucol treatment. Taken together, the present study suggests that probucol may ameliorate EMT and lung fibrosis through restoration of SIRT3 expression. The data obtained in this study provides proof for the idea that probucol may be a potential therapeutic option for the treatment of pulmonary fibrosis."	"Inhibiting Interleukin 11 Signaling Reduces Hepatocyte Death and Liver Fibrosis, Inflammation, and Steatosis in Mouse Models of Nonalcoholic Steatohepatitis. We studied the role of interleukin 11 (IL11) signaling in the pathogenesis of nonalcoholic steatohepatitis (NASH) using hepatic stellate cells (HSCs), hepatocytes, and mouse models of NASH. We stimulated mouse and human fibroblasts, HSCs, or hepatocytes with IL11 and other cytokines and analyzed them by imaging, immunoblot, and functional assays and enzyme-linked immunosorbent assays. Mice were given injections of IL11. Mice with disruption of the interleukin 11 receptor subunit alpha1 gene (Il11ra1<sup>-/-</sup>) mice and Il11ra1<sup>+/+</sup> mice were fed a high-fat methionine- and choline-deficient diet (HFMCD) or a Western diet with liquid fructose (WDF) to induce steatohepatitis; control mice were fed normal chow. db/db mice were fed with methionine- and choline-deficient diet for 12 weeks and C57BL/6 NTac were fed with HFMCD for 10 weeks or WDF for 16 weeks. Some mice were given intraperitoneal injections of anti-IL11 (X203), anti-IL11RA (X209), or a control antibody at different timepoints on the diets. Livers and blood were collected; blood samples were analyzed by biochemistry and liver tissues were analyzed by histology, RNA sequencing, immunoblots, immunohistochemistry, hydroxyproline, and mass cytometry time of flight assays. HSCs incubated with cytokines produced IL11, resulting in activation (phosphorylation) of ERK and expression of markers of fibrosis. Livers of mice given injections of IL11 became damaged, with increased markers of fibrosis, hepatocyte cell death and inflammation. Following the HFMCD or WDF, livers from Il11ra1<sup>-/-</sup> mice had reduced steatosis, fibrosis, expression of markers of inflammation and steatohepatitis, compared to and Il11ra1<sup>+/+</sup> mice on the same diets. Depending on the time of administration of anti-IL11 or anti-IL11RA antibodies to wild-type mice on the HFMCD or WDF, or to db/db mice on the methionine and choline-deficient diet, the antibodies prevented, stopped, or reversed development of fibrosis and steatosis. Blood samples from Il11ra1<sup>+/+</sup> mice fed the WDF and given injections of anti-IL11 or anti-IL11RA, as well as from Il11ra1<sup>-/-</sup> mice fed WDF, had lower serum levels of lipids and glucose than mice not injected with antibody or with disruption of Il11ra1. Neutralizing antibodies that block IL11 signaling reduce fibrosis, steatosis, hepatocyte death, inflammation and hyperglycemia in mice with diet-induced steatohepatitis. These antibodies also improve the cardiometabolic profile of mice and might be developed for the treatment of NASH."	"Gli signaling pathway modulates fibroblast activation and facilitates scar formation in pulmonary fibrosis. Pulmonary fibrosis is characterized by progressive and irreversible scarring of alveoli, which causes reduction of surface epithelial area and eventually respiratory failure. The precise mechanism of alveolar scarring is poorly understood. In this study, we explored transcriptional signatures of activated fibroblasts in alveolar airspaces by using intratracheal transfer in bleomycin-induced lung fibrosis. Lung fibroblasts transferred into injured alveoli upregulated genes related to translation and metabolism in the first two days, and upregulated genes related to extracellular matrix (ECM) production between day 2 and 7. Upstream analysis of these upregulated genes suggested possible contribution of hypoxia-inducible factors 1a (Hif1a) to fibroblast activation in the first two days, and possible contribution of kruppel-like factor 4 (Klf4) and glioma-associated oncogene (Gli) transcription factors to fibroblast activation in the following profibrotic phase. Fibroblasts purified based on high Acta2 expression after intratracheal transfer were also characterized by ECM production and upstream regulation by Klf4 and Gli proteins. Pharmacological inhibition of Gli proteins by GANT61 in bleomycin-induced lung fibrosis altered the pattern of scarring characterized by dilated airspaces and smaller fibroblast clusters. Activated fibroblasts isolated from GANT61-treated mice showed decreased migration capacity, suggesting that Gli signaling inhibition attenuated fibroblast activation. In conclusion, we revealed transcriptional signatures and possible upstream regulators of activated fibroblasts in injured alveolar airspaces. The altered scar formation by Gli signaling inhibition supports that activated fibroblasts in alveolar airspaces may play a critical role in scar formation."	"Tunable and Reversible Substrate Stiffness Reveals a Dynamic Mechanosensitivity of Cardiomyocytes. New directions in material applications have allowed for the fresh insight into the coordination of biophysical cues and regulators. Although the role of the mechanical microenvironment on cell responses and mechanics is often studied, most analyses only consider static environments and behavior, however, cells and tissues are themselves dynamic materials that adapt in myriad ways to alterations in their environment. Here, we introduce an approach, through the addition of magnetic inclusions into a soft poly(dimethylsiloxane) elastomer, to fabricate a substrate that can be stiffened nearly instantaneously in the presence of cells through the use of a magnetic gradient to investigate short-term cellular responses to dynamic stiffening or softening. This substrate allows us to observe time-dependent changes, such as spreading, stress fiber formation, Yes-associated protein translocation, and sarcomere organization. The identification of temporal dynamic changes on a short time scale suggests that this technology can be more broadly applied to study targeted mechanisms of diverse biologic processes, including cell division, differentiation, tissue repair, pathological adaptations, and cell-death pathways. Our method provides a unique in vitro platform for studying the dynamic cell behavior by better mimicking more complex and realistic microenvironments. This platform will be amenable to future studies aimed at elucidating the mechanisms underlying mechanical sensing and signaling that influence cellular behaviors and interactions."	"Sonic Hedgehog Ligand: A Role in Formation of a Mesenchymal Niche in Human Pancreatic Ductal Adenocarcinoma. Pancreatic ductal adenocarcinoma (PDAC) is characterised by desmoplasia, thought to support progression and chemotherapeutic resistance. The Hedgehog pathway is known to play an important role in this cancer. While the upregulation of Sonic hedgehog (Shh) in the epithelium of PDAC is known, we investigated its expression in the tumour microenvironment in order to find new targets for new chemotherapeutical approaches. Immunohistochemistry was used for the investigation of Shh and Vimentin in primary human pancreatic tissues. Gene (qRT-PCR) and protein (immunofluorescence) expression of Shh, αSMA (a marker of the mesenchymal phenotype) and periostin (a marker of mesenchymal cells within a mixed population) were investigated in in vitro cell models. Shh expression was significantly upregulated in the stromal and epithelial compartments of poorly-differentiated PDAC samples, with a strong correlation with the amount of stroma present. Characterisation of stromal cells showed that there was expression of Shh ligand in a mixed population comprising αSMA<sup>+</sup> myofibroblasts and αSMA<sup>-</sup> mesenchymal stem cells. Moreover, we demonstrated the interaction between these cell lines by showing a higher rate of mesenchymal cell proliferation and the upregulation of periostin. Therefore, targeting stromal Shh could affect the equilibrium of the tumour microenvironment and its contribution to tumour growth."	"Fibroblast-specific plasminogen activator inhibitor-1 depletion ameliorates renal interstitial fibrosis after unilateral ureteral obstruction. Plasminogen activator inhibitor-1 (PAI-1) expression increases extracellular matrix deposition and contributes to interstitial fibrosis in the kidney after injury. While PAI-1 is ubiquitously expressed in the kidney, we hypothesized that interstitial fibrosis is strongly dependent on fibroblast-specific PAI-1 (fbPAI-1). Tenascin C Cre (TNC Cre) and fbPAI-1 knockdown (KD) mice with green fluorescent protein (GFP) expressed within the TNC construct underwent unilateral ureteral obstruction and were sacrificed 10 days later. GFP+ cells in fbPAI-1 KD mice showed significantly reduced PAI-1 expression. Interstitial fibrosis, measured by Sirius red staining and collagen I western blot, was significantly decreased in fbPAI-1 KD compared with TNC Cre mice. There was no significant difference in transforming growth factor β (TGF-β) expression or its activation between the two groups. However, GFP+ cells from fbPAI-1 KD mice had lower TGF β and connective tissue growth factor (CTGF) expression. The number of fibroblasts was decreased in fbPAI-1 KD compared with TNC Cre mice, correlating with decreased alpha smooth muscle actin (α-SMA) expression and less fibroblast cell proliferation. TNC Cre mice had decreased E-cadherin, a marker of differentiated tubular epithelium, in contrast to preserved expression in fbPAI-1 KD. F4/80-expressing cells, mostly CD11c+/F4/80+ cells, were increased while M1 macrophage markers were decreased in fbPAI-1 KD compared with TNC Cre mice. These findings indicate that fbPAI-1 depletion ameliorates interstitial fibrosis by decreasing fibroblast proliferation in the renal interstitium, with resulting decreased collagen I. This is linked to decreased M1 macrophages and preserved tubular epithelium."	"Autophagy mediates 2-methoxyestradiol-inhibited scleroderma collagen synthesis and endothelial-to-mesenchymal transition induced by hypoxia. To investigate whether autophagy mediates 2-methoxyestradiol (2-ME)-inhibited hypoxia-induced fibrosis and endothelial-to-mesenchymal transition (endoMT) in SSc. Autophagy in the skin of SSc patients was assessed by transmission electron microscopy. SSc skin fibroblasts and human umbilical vein endothelial cells (HUVECs) were cultured under hypoxic (1% O2) conditions with 2-ME or autophagy inhibitor. Collagen I and connective tissue growth factor (CTGF) in fibroblasts and vascular endothelial (VE)-cadherin, CD31, vimentin and α-smooth muscle actin (α-SMA) in HUVECs were examined by western blotting. Autophagic markers were evaluated by confocal microscopy and immunofluorescence. SSc skins presented increased autolysosomes, LC3-II, collagen I and CTGF. Hypoxia-challenged fibroblasts and HUVECs formed more autophagosomes and autolysosomes, with increased LC3 and decreased P62. Meanwhile, hypoxia increased collagen I and CTGF in fibroblasts and increased vimentin and α-SMA but decreased VE-cadherin and CD31 in HUVECs. Bafilomycin A1 increased LC3-II and P62 in fibroblasts and HUVECs and decreased collagen I and CTGF in fibroblasts and vimentin and α-SMA in HUVECs, while upregulating VE-cadherin and CD31. 3-methyladenine decreased autophagy and fibrosis in fibroblasts and endothelial-to-mesenchymal transition in HUVECs. 2-ME-treated HUVECs showed more autophagosomes and fewer autolysosomes while 2-ME-treated fibroblasts showed fewer of both. Moreover, 2-ME decreased LC3-II and increased P62 in fibroblasts and increased both in HUVECs. Inhibition of autophagy by 2-ME showed the same effect with bafilomycin A1 on fibroblast collagen synthesis as well as endothelial and mesenchymal markers in HUVECs. Autophagy mediated hypoxia-induced fibroblast collagen synthesis and endoMT in SSc, which could be reversed by 2-ME."	"Comparisons of cancer-associated fibroblasts in the intratumoral stroma and invasive front in colorectal cancer. The aim of this study was to evaluate the cytomorphologic maturity and molecular activation of cancer-associated fibroblasts (CAFs) in the intratumoral stroma and invasive front in colorectal cancer and understand how they affect cancer invasion and long-term oncological outcomes.The cytomorphologic maturity of and α-smooth muscle actin (α-SMA), fibroblast activation protein α (FAPα), and fibroblast-specific protein 1 (FSP-1) expression in CAFs in the intratumoral stroma (CAF) and the invasive front (CAF) of colorectal cancer tissues were compared (n = 147). The correlations between CAF maturation, molecular activity markers, and cancer invasion were evaluated by network analysis. Overall survival and systemic recurrence were analyzed to assess the oncological effects of CAF properties.The cytomorphologic maturation rate was comparable between CAF and CAF. The presence of mature CAFs was related to epidermal growth factor receptor overexpression in cancer cells. Expression rates of α-SMA (96.6%-98.0%) and FAPα (18.6%-22.9%) were similar between CAF and CAF. FSP-1 expression was more frequent in CAF than in CAF (66.4% vs 58.2%, P = .038). There was a significant decrease in FSP-1 expression in CAF and CAF in higher stages. The infiltrating growth pattern of the tumor was more frequent in the immature CAF. In colorectal cancer with perineural invasion and lymph node metastasis, FSP-1 expression in CAF was significantly lower. On multivariate analysis using the Cox proportional hazards model, immature CAF was found to be an independent prognostic factor of overall survival. In non-metastatic (stage I-III) colorectal cancer patients, CAF maturity was not a prognostic factor for systemic recurrence.Cytomorphologic maturity and molecular activation markers were similar between CAFs in the intratumoral stroma and invasive front of colorectal cancer."	"The role of hemodynamics in bicuspid aortopathy: a histopathologic study. A bicuspid aortic valve (BAV) is the most common congenital cardiac malformation and is associated with ascending aortic dilation in 60%-80% of patients. In this study, we aimed to address the role of hemodynamic influences on the development of aortopathy in BAV patients. BAV (n=36) and tricuspid aortic valve (TAV) patients (n=17) undergoing aortic valve replacement underwent preoperative flow magnetic resonance imaging (MRI) assessment to detect the area of maximal flow-induced stress in the proximal aorta. Based on these MRI data, paired ascending aortic wall samples [i.e., area of maximal jet impact (jet sample) and the opposite aortic wall (nonjet sample)] were collected during surgery. To study and describe the effects of jet stream on the complete vascular wall, a pathology score was developed based on the recently published aortic consensus paper statement on surgical pathology of the aorta using routine histologic stainings (resorcin fuchsin, hematoxylin-eosin, and Movat) and immunohistochemistry (alpha smooth muscle actin, smooth muscle 22 alpha, platelet endothelial cell adhesion molecule). Comparing the jet and nonjet samples in both BAV and TAV, regions of maximal jet impact did not show any difference in the pathology score in the adventitia and the middle and outer media. In the jet samples, the inner media however showed loss of actin expression in both BAV (P&lt;.0001) and the TAV (P=.0074), and the intimal thickness was significantly enlarged in both patient groups (BAV P=.0005, TAV P=.0041), which was not accompanied by loss of elastic lamellae or vascular smooth muscle cell nuclei. In our study population, we could not demonstrate a potential distinct role for hemodynamics in the development of aortopathy in BAV patients even if corrected for aortic diameter, raphe position, or whether the valve is stenotic or regurgitant. The intimal layer and inner media however showed alterations in all jet specimens."	"YY1: A novel therapeutic target for diabetic nephropathy orchestrated renal fibrosis. Renal fibrosis promotes the development of diabetic nephropathy (DN). A growing number of studies have reported that Yin Yang 1 (YY1), which is involved in cellular proliferation and differentiation, plays a crucial role in the pathogenesis of many diseases, such as pulmonary fibrosis, hepatic steatosis and cancer. We detected the expression of YY1 under various glucose concentration and time gradient conditions. Rapamycin was used to verify the mTORC1/p70S6K/YY1 signaling pathway in HK-2 cells. We used db/db mice to examine the connection between renal fibrosis and YY1. A luciferase assay and chromatin immunoprecipitation (ChIP) assay were used to identify whether YY1 directly regulated α-SMA by binding to the α-SMA promoter. RNA silencing and overexpression were performed by using a YY1 expression/knockdown plasmid to investigate the function of YY1 in renal fibrosis of DN. YY1 expression and subsequent nuclear translocation were upregulated in a glucose- and time-dependent manner via the mTORC1/p70S6K signaling pathway in HK-2 cells. YY1 expression and nuclear translocation was significantly upregulated in db/db mice. Furthermore, YY1 upregulated α-SMA expression and activity in high-glucose-cultured HK-2 cells. Overexpression of YY1 promoted renal fibrosis in db/m mice mainly by upregulating α-SMA expression and inducing epithelial-mesenchymal transition (EMT) in vitro and in vivo. Finally, downregulation of YY1 reversed renal fibrosis by improving EMT in vivo and in vitro. These results reveal that upregulation of YY1 plays a critical role in HG-induced deregulation of EMT-associated protein expression, which finally results in renal fibrosis of DN. Therefore, decreasing YY1 expression might represent a new therapeutic target for diabetic nephropathy-induced renal fibrosis."	"Impact of Oxidative Stress and Protein S-Glutathionylation in Aortic Valve Sclerosis Patients with Overt Atherosclerosis. Aortic valve sclerosis (AVSc) is characterized by non-uniform thickening of the leaflets without hemodynamic changes. Endothelial dysfunction, also caused by dysregulation of glutathione homeostasis expressed as ratio between its reduced (GSH) and its oxidised form (GSSG), could represent one of the pathogenic triggers of AVSc. We prospectively enrolled 58 patients with overt atherosclerosis and requiring coronary artery bypass grafting (CABG). The incidence of AVSc in the studied population was 50%. The two groups (No-AVSc and AVSc) had similar clinical characteristics. Pre-operatively, AVSc group showed significantly lower GSH/GSSG ratio than No-AVSc group (p = 0.02). Asymmetric dimethylarginine (ADMA) concentration was significantly higher in AVSc patients compared to No-AVSc patients (p &lt; 0.0001). Explanted sclerotic aortic valves presented a significantly increased protein glutathionylation (Pr-SSG) than No-AVSc ones (p = 0.01). In vitro, inhibition of glutathione reductase caused β-actin glutathionylation, activation of histone 2AX, upregulation of α2 smooth muscle actin (ACTA2), downregulation of platelet and endothelial cell adhesion molecule 1 (PECAM1) and cadherin 5 (CDH5). In this study, we showed for the first time that the dysregulation of glutathione homeostasis is associated with AVSc. We found that Pr-SSG is increased in AVSc leaflets and it could lead to EndMT via DNA damage. Further studies are warranted to elucidate the causal role of Pr-SSG in aortic valve degeneration."	"PlaqOmics Leducq Fondation Trans-Atlantic Network. NA"	"Matrix stiffness regulates microvesicle-induced fibroblast activation. Extracellular vesicles released by cancer cells have recently been implicated in the differentiation of stromal cells to their activated, cancer-supporting states. Microvesicles, a subset of extracellular vesicles released from the plasma membrane of cancer cells, contain biologically active cargo, including DNA, mRNA, and miRNA, which are transferred to recipient cells and induce a phenotypic change in behavior. While it is known that microvesicles can alter recipient cell phenotype, little is known about how the physical properties of the tumor microenvironment affect fibroblast response to microvesicles. Here, we utilized cancer cell-derived microvesicles and synthetic substrates designed to mimic the stiffness of the tumor and tumor stroma to investigate the effects of microvesicles on fibroblast phenotype as a function of the mechanical properties of the microenvironment. We show that microvesicles released by highly malignant breast cancer cells cause an increase in fibroblast spreading, α-smooth muscle actin expression, proliferation, cell-generated traction force, and collagen gel compaction. Notably, our data indicate that these phenotypic changes occur only on stiff matrices mimicking the stiffness of the tumor periphery and are dependent on the cell type from which the microvesicles are shed. Overall, these results show that the effects of cancer cell-derived microvesicles on fibroblast activation are regulated by the physical properties of the microenvironment, and these data suggest that microvesicles may have a more robust effect on fibroblasts located at the tumor periphery to influence cancer progression."	"The histone demethylase Kdm4 suppresses activation of hepatic stellate cell by inducing MiR-29 transcription. One of the hallmark events during liver fibrosis is the transition of quiescent hepatic stellate cells (HSC) into activated myofibroblasts, which are responsible for the production and deposition of pro-fibrogenic proteins. The epigenetic mechanism underlying HSC trans-differentiation is not fully understood. In the present study we investigated the contribution of histone H3K9 demethylase KDM4 in this process. We report that expression levels of KDM4 were down-regulated during HSC activation paralleling the up-regulation of alpha smooth muscle cell actin (Acta2), a marker of mature myofibroblast. Furthermore, HSCs isolated from mice induced to develop liver fibrosis exhibit lowered KDM4 expression compared to the control mice. In accordance, KDM4 depletion with siRNA accelerated HSC activation. Of interest, the loss of KDM4 was mirrored by the repression of miR-29, an antagonist of liver fibrosis, during HSC activation both in vitro and in vivo. KDM4 knockdown resulted in the down-regulation of miR-29 expression. Mechanistically, the sequence-specific transcription factor SREBP2 interacted with KDM4 to activate miR-29 transcription. In conclusion, our data delineate a novel epigenetic mechanism underlying HSC activation. Targeting this axis may yield potential therapeutics against liver fibrosis."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Effect of Acacia Honey on Transforming Growth Factor-Beta-1-Induced Myofibroblast Differentiation and Matrix Metalloproteinase-9 Production in Nasal Polyp Fibroblasts. NA"	"The Natural History of Advanced Fibrosis Due to Nonalcoholic Steatohepatitis: Data From the Simtuzumab Trials. Progression of nonalcoholic steatohepatitis (NASH) is incompletely characterized. We analyzed data on longitudinal changes in liver histology, hepatic venous pressure gradient (HVPG), and serum markers of fibrosis in 475 patients with NASH with bridging fibrosis (F3) or compensated cirrhosis (F4) enrolled in two phase 2b, placebo-controlled trials of simtuzumab. The trials were terminated after 96 weeks because of lack of efficacy, so data from treatment groups were combined. Liver biopsies and HVPG measurements (only for patients with F4 fibrosis) were collected at screening and at weeks 48 and 96. Patients were assessed for Ishak fibrosis stage, hepatic collagen content and alpha-smooth muscle actin (by morphometry), NAFLD Activity Score (NAS), and serum markers of fibrosis. Associations with progression to cirrhosis (in patients with F3 fibrosis) and liver-related clinical events (in patients with F4 fibrosis) were determined. Progression to cirrhosis occurred in 22% (48/217) of F3 patients, and liver-related clinical events occurred in 19% (50/258) of patients with cirrhosis. Factors significantly associated with progression to cirrhosis included higher baseline values of and greater increases in hepatic collagen content, level of alpha-smooth muscle actin, and Enhanced Liver Fibrosis score. Similar factors, plus lack of fibrosis stage improvement (hazard ratio, 9.30; 95% confidence interval, 1.28-67.37), higher HVPG at baseline, and greater increase in HVPG over time, were associated with an increased risk of liver-related clinical events in patients with cirrhosis. Disease progression was not associated with the NAS at baseline or changes in NAS during treatment after adjustment for fibrosis stage. Conclusion: In patients with advanced fibrosis due to NASH, the primary determinant of clinical disease progression is fibrosis and its change over time."	"Characteristic Cerebrovascular Findings Associated with ACTA2 Gene Mutations. A specific mutation (Arg179) of the ACTA2 gene has previously been described to cause a syndrome of multisystemic smooth muscle dysfunction with an extremely characteristic cerebrovascular appearance.1 Accurate neuroimaging diagnosis of this entity is important as this syndrome predisposes to complications such as early-onset ischemic stroke and ascending thoracic aortic aneurysm.2,3 The following case demonstrates a previously undescribed ACTA2 mutation (Met46) with an identical cerebrovascular imaging appearance to that of Arg179 mutations, but a less severe overall phenotype."	"Effect of bronchial thermoplasty on structural changes and inflammatory mediators in the airways of subjects with severe asthma. Bronchial thermoplasty (BT) is a novel technique used in the treatment of subjects with severe refractory asthma. Radiofrequency is provided to airway walls during bronchoscopy in order to reduce airway remodeling. Several clinical studies have reported an improvement in subjects' symptoms following BT. However, how BT affects the airway architectures and inflammatory mediators in the airways has not been yet fully elucidated. Fourteen subjects with severe asthma were recruited in this study according to the criteria of ATS severe asthma definition. The study subjects undertook bronchial biopsy during the bronchoscopy procedure at baseline and 6 weeks after the initial BT treatment. The obtained samples were stained with antibodies for α-smooth muscle actin (α-SMA); protein gene product (PGP) 9.5, a specific nerve marker; von Willebrand factor (vWF), a marker for blood vessels; interleukin-17A (IL-17A) and transforming growth factor-β1 (TGF-β1). The expression of α-SMA and PGP9.5 were significantly reduced post-BT. There was no significant difference in the number of blood vessels between baseline and post-BT. In addition, BT did not affect the production of IL-17A and TGF-β1 in the airways. The changes in the expression of α-SMA and PGP9.5 had no significant correlation with the improvement of pulmonary function. and Clinical Relevance: This study suggests that BT reduces airway smooth muscle mass and the airway innervation without affecting vasculature and the production of inflammatory mediators in the airways of subjects with severe asthma."	"Influence of inflammasome pathway activation in macrophages on the matrix metalloproteinase expression of human hepatic stellate cells. Inflammasomes are protein complexes that produce IL-1β in response to damage or pathogens. As such, inflammasomes are involved in several types of hepatic fibrosis. However, the mechanisms by which these complexes drive the liver's fibrogenic status remain unclear. We co-cultured differentiated macrophages (the THP-1 cell line or human monocyte-derived macrophages (MDMs)) with human hepatic fibroblasts (either the LX-2 cell line or primary human hepatic stellate cells (HSCs)). The inflammasome pathway was activated with lipopolysaccharide (LPS) and monosodium urate (MSU) crystals, and the HSCs' responses were analyzed. Our results show that co-culture of HSCs with THP-1 cells upregulated transcription of the genes coding for metalloproteinase (MMP)-3 and MMP-9. After inflammasome pathway activation, the HSCs' phenotype was the same in the presence of THP-1 cells or MDMs (i.e. upregulation of MMP-3, MMP-9, and the pro-inflammatory cytokine IL-1β). We found that two cytokines were involved in these changes: IL-1β regulated MMP-3 and IL-1β mRNA expression, whereas TNF-α regulated MMP-9 mRNA expression. Experiments with primary cells revealed that a general inflammatory environment is responsible for the downregulation of pro-fibrotic markers. Our present results suggest that inflammasome pathway activation in macrophages leads to a pro-inflammatory environment for HSCs leading to MMP/TIMP imbalance and enhanced fibrolytic properties."	"FGF23 regulates atrial fibrosis in atrial fibrillation by mediating the STAT3 and SMAD3 pathways. High fibroblast growth factor 23 (FGF23) concentrations are a strong predictor of atrial fibrillation (AF), but researchers have not clearly determined the mechanism by which FGF23 causes atrial fibrosis in patients with AF. This study aims to elucidate the mechanism by which FGF23 induces atrial fibrosis in patients with AF. Immunohistochemistry was used to study the expression of FGF23, FGFR4, and fibrotic factors in patients with a normal sinus rhythm (SR) and patients with AF. Cardiac fibroblasts (CFs) were cocultured with different concentrations of the recombinant FGF23 protein. Compared with the SR group, the levels of FGF23, FGFR4, α-smooth muscle actin (α-SMA), and collagen-1 were significantly increased in the AF group. Exposure to high concentrations of the recombinant FGF23 protein increased the accumulation of reactive oxygen species (ROS) and activated α-SMA, collagen-1, signal transducer and activator of transcription 3 (STAT3) and SMAD3 signaling in cultured CFs. The levels of fibrotic proteins in CFs stimulated with high concentrations of the recombinant FGF23 protein were reversed by N-acetylcysteine (NAC, a ROS inhibitor), ship information system 3 (a SMAD3 inhibitor), and Stattic (a STAT3 inhibitor). Furthermore, compared to untreated CFs, CFs treated with the recombinant FGF23 protein were characterized by an increased interaction between STAT3 and SMAD3. Based on these results, FGF23 induces atrial fibrosis in patients with AF by increasing ROS production and subsequently activating STAT3 and SMAD3 signaling."	"PH20 Inhibits TGFβ1-Induced Differentiation of Perimysial Orbital Fibroblasts via Hyaluronan-CD44 Pathway in Thyroid-Associated Ophthalmopathy. Hyaluronan (HA) is a potential regulator of TGFβ1-induced differentiation in perimysial orbital fibroblasts (pOFs). Our study aimed to explore the effects of PH20 (a hyaluronidase) and HA on TGFβ1-induced differentiation in pOFs cultured from thyroid-associated ophthalmopathy (TAO) and control subjects. TAO and control pOFs (passages 3-6) were incubated with TGFβ1 ± PH20 or TGFβ1 ± HA for 72 hours and processed for various analyses, including HA electrophoresis; αSMA immunofluorescence; and quantification of αSMA (encoded by ACTA2), CD44 (a cell surface HA receptor), and SMAD2/3 (signaling molecule in the TGFβ1 pathway). TGFβ1 induced myogenic differentiation (marked by αSMA upregulation) of pOFs. After TGFβ1 treatment, more HA accumulated in the TAO group than in the control group. PH20 mainly digested medium to small HA and increased the percentage of high molecular weight HA (HMW-HA) in total HA. Both PH20 and HMW-HA inhibited TGFβ1-induced differentiation in the TAO group, but neither showed significant effects in the control group. CD44 level negatively correlated with ACTA2 level in the TAO group, but no correlation was detected in the control group. Both PH20 and HMW-HA upregulated CD44 expression and inhibited SMAD2/3 expression in the TAO group, and the inhibitory effects were partially reversed by CD44 blockage. CD44 level in the control group was not affected by PH20 or HMW-HA treatment, and CD44 blockage showed no significant effects on control pOF differentiation. PH20 inhibits TGFβ1-induced differentiation of TAO pOFs via HA-CD44-SMAD2/3 signaling, and the HA-CD44 signaling plays a divergent role in TAO and control pOFs."	"Specific Features of Fibrotic Lung Fibroblasts Highly Sensitive to Fibrotic Processes Mediated via TGF-β-ERK5 Interaction. Lung fibrosis is associated with lung tissue contraction due to abnormal accumulation of myofibroblasts, which aggressively promote the fibrotic process. Transforming growth factor (TGF)-β signaling in fibroblasts promotes extracellular matrix (ECM) synthesis and fibroblast migration and differentiation into myofibroblasts. Inhibition of extracellular signal-regulated kinase (ERK)5 blocks lung fibroblast activation by suppressing TGF-β signaling. Here, we examined the effects of an ERK5 inhibitor on TGF-β1-induced fibrosis in lung fibroblasts. The effects of ERK5 inhibition following TGF-β1 exposure were evaluated in lung fibroblasts isolated from fibrotic human lung tissues. Fibroblast-mediated collagen gel contraction and fibroblast migration towards fibronectin were assessed. Phenotypic differences in fibrotic fibroblasts were examined using the cap analysis gene expression method for genome-wide quantification of promoter activity. TGF-β1stimulated contraction of collagen gels, fibroblast migration, and α-smooth muscle actin and fibronectin expression, and Smad3 phosphorylation were increased in fibrotic fibroblasts as compared to normal lung fibroblasts. Treatment with the ERK5 inhibitor blocked these responses to a greater extent in fibroblasts from patients with usual interstitial pneumonia as compared to nonspecific interstitial pneumonia, independent of bone morphogenetic protein/Smad1 regulation. Moreover, 223 genes including fibulin-5 -which is involved in the TGF-β1-ERK5 signaling network- were upregulated in fibrotic fibroblasts, and ECM regulation was found to be enriched in the Reactome analysis. ERK5 inhibition attenuated the high sensitivity of fibrotic fibroblasts to TGF-β1/Smad3 signaling. Thus, the ERK5 pathway components and fibulin-5 are potential therapeutic targets to prevent lung fibrosis progression."	"Triptolide inhibits migration and proliferation of fibroblasts from ileocolonic anastomosis of patients with Crohn's disease via regulating the miR‑16‑1/HSP70 pathway. Anastomotic fibrosis is highly likely to lead to reoperation in Crohn's disease (CD) patients. Triptolide (TPL) is considered to have anti‑inflammatory and antifibrotic effects in a variety of autoimmune diseases, including CD. The present study aimed to investigate the effects of TPL on fibroblasts from strictured ileocolonic anastomosis of patients with CD and its underlying mechanism. Primary fibroblasts were obtained from strictured anastomosis tissue (SAT) samples and matched anastomosis‑adjacent normal tissue (NT) samples which were collected from 10 CD patients who underwent reoperation because of anastomotic stricture. Reverse transcription‑quantitative polymerase chain reaction (RT‑qPCR) was used to measure miR‑16‑1 and heat shock protein 70 (HSP70) levels. Western blotting was conducted to determine expression of HSP70, collagen I (Col‑I), collagen III (Col‑III) and α‑smooth muscle actin (α‑SMA) proteins. Agomir‑16‑1 and antagomir‑16‑1 were used to up and downregulate the expression of miR‑16‑1, respectively. Small interfering RNA (siRNA) was employed to inhibit the expression of HSP70. A wound healing assay was performed to measure the migration of fibroblasts. Cell proliferation was evaluated by MTT and 5‑bromo‑2‑deoxyrudidine assays. Cell apoptosis was determined by caspase‑3 activity and TUNEL assays. The results demonstrated that the levels of Col‑I, Col‑III and α‑SMA were all significantly upregulated in SAT compared with NT. miR‑16‑1 levels in the SAT group were significantly compared with the NT group; conversely, the expression levels of HSP70 mRNA and protein in the SAT group were significantly lower compared with the NT group. Next, fibroblasts were treated with TPL to examine its effect on the miR‑16‑1/HSP70 pathway. The results demonstrated that the elevated expression of miR‑16‑1 in the SAT group was effectively inhibited by TPL treatment. Compared with the NT group, both the mRNA and protein levels of HSP70 were significantly downregulated in the SAT group cells, while TPL exhibited a strong promoting effect on HSP70 synthesis. Furthermore, upregulation of miR‑16‑1 reversed the effect of TPL on the miR‑16‑1/HSP70 pathway in fibroblasts from SAT. Overexpression of miR‑16‑1 significantly reversed the inhibitory effects of TPL treatment on migration, proliferation and extracellular matrix (ECM)‑associated protein expression of fibroblasts from SAT. Finally, downregulation of miR‑16‑1 caused similar effects to the fibroblasts as the TPL treatment; however, the inhibitory effects on cell biological functions induced by antagomir‑16‑1 were all significantly reversed by HSP70 silencing. The present findings indicated that TPL may be a potential therapeutic option for postoperative anastomosis fibrosis of patients with CD. The miR‑16‑1/HSP70 pathway had a substantial role in the inhibitory effects of TPL on migration, proliferation and ECM synthesis rate of fibroblasts from strictured anastomosis tissues."	"Therapeutic efficacy of anti-MMP9 antibody in combination with nab-paclitaxel-based chemotherapy in pre-clinical models of pancreatic cancer. Matrix metalloproteinase 9 (MMP9) is involved in the proteolysis of extracellular proteins and plays a critical role in pancreatic ductal adenocarcinoma (PDAC) progression, invasion and metastasis. The therapeutic potential of an anti-MMP9 antibody (αMMP9) was evaluated in combination with nab-paclitaxel (NPT)-based standard cytotoxic therapy in pre-clinical models of PDAC. Tumour progression and survival studies were performed in NOD/SCID mice. The mechanistic evaluation involved RNA-Seq, Luminex, IHC and Immunoblot analyses of tumour samples. Median animal survival compared to controls was significantly increased after 2-week therapy with NPT (59%), Gem (29%) and NPT+Gem (76%). Addition of αMMP9 antibody exhibited further extension in survival: NPT+αMMP9 (76%), Gem+αMMP9 (47%) and NPT+Gem+αMMP9 (94%). Six-week maintenance therapy revealed that median animal survival was significantly increased after NPT+Gem (186%) and further improved by the addition of αMMP9 antibody (218%). Qualitative assessment of mice exhibited that αMMP9 therapy led to a reduction in jaundice, bloody ascites and metastatic burden. Anti-MMP9 antibody increased the levels of tumour-associated IL-28 (1.5-fold) and decreased stromal markers (collagen I, αSMA) and the EMT marker vimentin. Subcutaneous tumours revealed low but detectable levels of MMP9 in all therapy groups but no difference in MMP9 expression. Anti-MMP9 antibody monotherapy resulted in more gene expression changes in the mouse stroma compared to the human tumour compartment. These findings suggest that anti-MMP9 antibody can exert specific stroma-directed effects that could be exploited in combination with currently used cytotoxics to improve clinical PDAC therapy."	"Bone morphogenetic protein 4 provides cancer-supportive phenotypes to liver fibroblasts in patients with hepatocellular carcinoma. Cancer-associated fibroblasts (CAFs) are essential constituents of cancer-supportive microenvironments. The high incidence of hepatocellular carcinoma (HCC) in advanced fibrosis patients implies that fibroblasts have a promoting effect on HCC development. We aimed to explore the regulators of phenotypes and function of CAFs in the liver. We established primary cancer-associated fibroblasts (CAFs) and non-cancerous liver fibroblasts (NFs) from 15 patients who underwent HCC resection. We compared phenotypes, capacity of cytokine/chemokine production and gene expression profiles between pairs of CAFs and NFs from the same donors. We examined resected tissue from additional 50 patients with HCC for immunohistochemical analyses. The CAFs expressed more ACTA2 and COL1A1 than the NFs, suggesting that CAFs are more activated phenotype. The CAFs produced larger amounts of IL-6, IL-8 and CCL2 than the NFs, which led to invasiveness of HuH7 in vitro. We found that Bone Morphogenetic Protein-4 (BMP4) is up-regulated in CAFs compared to NFs. The CAF phenotype and function were gained by BMP4 over-expression or recombinant BMP4 given to fibroblasts, all of which decreased with BMP4 knockdown. In tissues obtained from the patients, BMP4-positive cells are mainly observed in encapsulated fibrous lesions and HCC. Positive expression of BMP4 in HCC in resected tissues, not in fibroblasts, was associated with poorer postoperative overall survival in patients with HCC. Endogenous and exogenous BMP4 activate liver fibroblasts to gain capacity of secreting cytokines and enhancing invasiveness of cancer cells in the liver. BMP4 is one of the regulatory factors of CAFs functioning in the microenvironment of HCC."	"CeNETs analysis reveals the prognostic value of a signature integration from five lncRNAs in breast cancer. The competitive endogenous RNA (ceRNA) hypothesis is a novel effective theory that can enable us to deeply understand the mechanisms of comprehensive diseases. In this study, we first downloaded RNAseq data and microRNA (miRNA) seq data of breast cancer from The Cancer Genome Atlas and further explored the regulation of ceRNA network in breast cancer using comprehensive bioinformatics tools. The results revealed that five miRNAs, including hsa-miR-10b, hsa-miR-21, hsa-miR-183, hsa-miR-1258, and hsa-miR-3200 formed the core of ceRNA network. Moreover, five long noncoding RNAs that could competitively bind with miR-10b, respectively, named ACTA2-AS1, RP11-384P7.7, RP11-327J17.9, RP11-124N14.3, and RP11-645C24.5, were discovered as an integration signature with great potential in the prediction of survival outcomes in patients with different stages of breast cancer. This indicates that these five long noncoding RNAs may be potential novel diagnostic and prognostic biomarkers of breast cancer."	"HDAC6 is associated with the formation of aortic dissection in human. The pathological features of aortic dissection (AD) include vascular smooth muscle cell (VSMC) loss, elastic fiber fraction, and inflammatory responses in the aorta. However, little is known about the post-translational modification mechanisms responsible for these biological processes. A total of 72 aorta samples, used for protein detection, were collected from 36 coronary artery disease (CAD, served as the control) patients and 36 type A AD (TAAD) patients. Chromatin immunoprecipitation (ChIP)-PCR was used to identify the genes regulated by H3K23ac, and tubastatin A, an inhibitor of HDAC6, was utilized to clarify the downstream mechanisms regulated by HDAC6. We found that the protein level of histone deacetylase HDAC6 was reduced in the aortas of patients suffering from TAAD and that the protein levels of H4K12ac, and H3K23ac significantly increased, while H3K18ac, H4K8ac, and H4K5ac dramatically decreased when compared with CAD patients. Although H3K23ac, H3K18ac, and H4K8ac increased in the human VSMCs after treatment with the HDAC6 inhibitor tubastatin A, only H3K23ac showed the same results in human tissues. Notably, the results of ChIP-PCR demonstrated that H3K23ac was enriched in extracellular matrix (ECM)-related genes, including Col1A2, Col3A1, CTGF, POSTN, MMP2, TIMP2, and ACTA2, in the aortic samples of TAAD patients. In addition, our results showed that HDAC6 regulates H4K20me2 and p-MEK1/2 in the pathological process of TAAD. These results indicate that HDAC6 is involved in human TAAD formation by regulating H3K23ac, H4K20me2 and p-MEK1/2, thus, providing a strategy for the treatment of TAAD by targeting protein post-translational modifications (PTMs), chiefly histone PTMs."	"Immunohistochemical Study of Non-Epithelial Cells in Spiradenoma. Intratumoral lymphocytes are a defining feature of spiradenoma; however, there have only been a few reports on the phenotypic features of non-epithelial cells. Spiradenomas also contain numerous cells positive for S-100 protein and the nature of these cells is still controversial. We performed a clinicopathological and immunohistochemical study of ten cases of spiradenoma. The study included seven men and three women. On histopathological examination, spiradenoma could be divided into two types: the vascular proliferating (VP) type (five cases) that featured granulation tissue with edema, vascular proliferation, and inflammatory cell infiltration into the stroma, and the common type (five cases), which did not include any of the aforementioned features. Immunohistochemical staining demonstrated a large number of cells positive for S-100 protein. These included cells with large pale nuclei, dendritic cells, and a few cells with small dark nuclei that were also positive for α-smooth muscle actin. Most of the cells infiltrating the parenchymata of these lesions were CD3-positive. The proportions of CD4-positive and CD8-positive cells were almost equal or CD8-positive cells were predominant. CD20+ cells were observed in five spiradenomas. In painful lesions, there were numerous nerve fibers near the tumor. In spiradenoma, CD3+ T cells were mainly seen in the parenchyma and CD8+ cells were predominant over CD4+ cells in most cases. CD20+ cells showed focal infiltration of the parenchyma and stroma, especially in VP-type lesions. S-100 protein-positive cells in spiradenoma contained not only Langerhans cells, but also cells with myoepithelial differentiation."	"Cardiac Hyaluronan Synthesis Is Critically Involved in the Cardiac Macrophage Response and Promotes Healing After Ischemia Reperfusion Injury. Immediate changes in the ECM (extracellular matrix) microenvironment occur after myocardial ischemia and reperfusion (I/R) injury. Aim of this study was to unravel the role of the early hyaluronan (HA)-rich ECM after I/R. Genetic deletion of Has2 and Has1 was used in a murine model of cardiac I/R. Chemical exchange saturation transfer imaging was adapted to image cardiac ECM post-I/R. Of note, the cardiac chemical exchange saturation transfer signal was severely suppressed by Has2 deletion and pharmacological inhibition of HA synthesis 24 hours after I/R. Has2 KO ( Has2 deficient) mice showed impaired hemodynamic function suggesting a protective role for endogenous HA synthesis. In contrast to Has2 deficiency, Has1-deficient mice developed no specific phenotype compared with control post-I/R. Importantly, in Has2 KO mice, cardiac macrophages were diminished after I/R as detected by <sup>19</sup>F MRI (magnetic resonance imaging) of perfluorcarbon-labeled immune cells, Mac-2/Galectin-3 immunostaining, and FACS (fluorescence-activated cell sorting) analysis (CD45<sup>+</sup>CD11b<sup>+</sup>Ly6G<sup>-</sup>CD64<sup>+</sup>F4/80<sup>+</sup>cells). In contrast to macrophages, cardiac Ly6C<sup>high</sup> and Ly6C<sup>low</sup> monocytes were unaffected post-I/R compared with control mice. Mechanistically, inhibition of HA synthesis led to increased macrophage apoptosis in vivo and in vitro. In addition, α-SMA (α-smooth muscle actin)-positive cells were reduced in the infarcted myocardium and in the border zone. In vitro, the myofibroblast response as measured by Acta2 mRNA expression was reduced by inhibition of HA synthesis and of CD44 signaling. Furthermore, Has2 KO fibroblasts were less able to contract collagen gels in vitro. The effects of HA/CD44 on fibroblasts and macrophages post-I/R might also affect intercellular cross talk because cardiac fibroblasts were activated by monocyte/macrophages and, in turn, protected macrophages from apoptosis. Increased HA synthesis contributes to postinfarct healing by supporting macrophage survival and by promoting the myofibroblast response. Additionally, imaging of cardiac HA by chemical exchange saturation transfer post-I/R might have translational value."	"LRP1 promotes synthetic phenotype of pulmonary artery smooth muscle cells in pulmonary hypertension. Pulmonary hypertension (PH) is characterized by a thickening of the distal pulmonary arteries caused by medial hypertrophy, intimal proliferation and vascular fibrosis. Low density lipoprotein receptor-related protein 1 (LRP1) maintains vascular homeostasis by mediating endocytosis of numerous ligands and by initiating and regulating signaling pathways. Here, we demonstrate the increased levels of LRP1 protein in the lungs of idiopathic pulmonary arterial hypertension (IPAH) patients, hypoxia-exposed mice, and monocrotaline-treated rats. Platelet-derived growth factor (PDGF)-BB upregulated LRP1 expression in pulmonary artery smooth muscle cells (PASMC). This effect was reversed by the PDGF-BB neutralizing antibody or the PDGF receptor antagonist. Depletion of LRP1 decreased proliferation of donor and IPAH PASMC in a β1-integrin-dependent manner. Furthermore, LRP1 silencing attenuated the expression of fibronectin and collagen I and increased the levels of α-smooth muscle actin and myocardin in donor, but not in IPAH, PASMC. In addition, smooth muscle cell (SMC)-specific LRP1 knockout augmented α-SMA expression in pulmonary vessels and reduced SMC proliferation in 3D ex vivo murine lung tissue cultures. In conclusion, our results indicate that LRP1 promotes the dedifferentiation of PASMC from a contractile to a synthetic phenotype thus suggesting its contribution to vascular remodeling in PH."	"ImmunoSERS microscopy for the detection of smooth muscle cells in atherosclerotic plaques. We investigated the suitability of immuno-SERS (iSERS) microscopy for imaging of smooth muscle cells (SMCs) in atherosclerotic plaques. Localization of SMCs is achieved by using SERS-labelled antibodies direct against alpha-smooth muscle actin (SMA). The staining quality of the false-colour iSERS images obtained by confocal Raman microscopy with point mapping is compared with wide-field immunofluorescence images. Both direct (labelled primary antibody) and indirect iSERS staining (unlabelled primary and labelled secondary antibody) techniques were employed. Direct iSERS staining yields results comparable to indirect IF staining, demonstrating the suitability of iSERS in research on atherosclerosis and paving the way for future multiplexed imaging experiments."	"Bromfenac Inhibits TGF-β1-Induced Fibrotic Effects in Human Pterygium and Conjunctival Fibroblasts. Nonsteroidal anti-inflammatory drugs (NSAIDs) have shown antifibrotic effects on several diseases. The aims of the present in vitro study were to investigate the antifibrotic effects of bromfenac (a kind of NSAID) on primary human pterygium fibroblasts (HPFs) and primary human conjunctival fibroblasts (HConFs), as well as to explore the possible mechanisms of these effects. The cells used in this study were primary HPFs and HConFs, and profibrotic activation was induced by transforming growth factor-beta1 (TGF-β1). Western blot, quantitative real-time PCR, and immunofluorescence (IF) assays were used to detect the effects of TGF-β1 and bromfenac on the synthesis of fibronectin (FN), type III collagen (COL3), and alpha-smooth muscle actin (α-SMA) in HPFs and HConFs; the changes of signaling pathways were detected by Western blot; cell migration ability was detected by wound healing assay; cell proliferation ability was detected by CCK-8 assay; and pharmaceutical inhibitions of the downstream signaling pathways of TGF-β1 were used to assess their possible associations with the effects of bromfenac. Bromfenac suppressed the TGF-β1-induced protein expression of FN (0.59 ± 0.07 folds, P = 0.008), COL3 (0.48 ± 0.08 folds, P = 0.001), and α-SMA (0.61 ± 0.03 folds, P = 0.008) in HPFs. Bromfenac also attenuated TGF-β1-induced cell migration (0.30 ± 0.07 folds, P &lt; 0.001), cell proliferation (0.64 ± 0.03 folds, P = 0.002) and the expression levels of p-AKT (0.66 ± 0.08 folds, P = 0.032), p-ERK1/2 (0.69 ± 0.11 folds, P = 0.003), and p-GSK-3β-S9 (0.65 ± 0.10 folds, P = 0.002) in HPFs. PI3K/AKT inhibitor (wortmannin) and MEK/ERK inhibitor (U0126) reduced the TGF-β1-induced synthesis of FN, COL3, and α-SMA in HPFs. All the results were similar in HConFs. Bromfenac protects against TGF-β1-induced synthesis of FN, α-SMA, and COL3 in HPFs and HConFs at least in part by inactivating the AKT and ERK pathways."	"Ursolic acid inhibits epithelial-mesenchymal transition in vitro and in vivo. Ursolic acid (UA; 3β-hydroxy-urs-12-en-28-oic acid), one of the pentacyclic triterpenoids found in various plants and herbs, possesses some beneficial effects under pathological conditions, including combating hepatic fibrosis. This study investigates the effects of UA on renal tubulointerstitial fibrosis in vivo and in vitro. In vivo, 24 male C57BL6 mice were divided into four groups. Eighteen mice were subjected to unilateral ureteral obstruction (UUO) and the remaining six sham-operated mice served as control. UUO mice received either vehicle or UA (50 or 100 mg/kg) by gastric gavage for 6 days. In vitro, HK-2 cells were treated with 10 or 50 μM UA and 10 ng/mL recombinant human transforming growth factor-β1 (TGF-β1). The molecular mechanisms of fibrosis were investigated. UUO induced marked interstitial collagen I and fibronectin deposition and epithelial-mesenchymal transition (EMT), as evidenced by increased α-smooth muscle actin (α-SMA) and decreased E-cadherin. However, UA treatment significantly reduced collagen I and fibronectin accumulation in the fibrotic kidney. UA treatment also decreased α-SMA and preserved E-cadherin in vivo. In vitro, TGF-β1-treated HK-2 cells demonstrated elevated α-SMA, snail1, slug, TGF-β1, and p-smad3, as well as diminished E-cadherin. UA pretreatment prevented E-cadherin loss and diminished α-SMA expression in HK-2 cells. UA downregulated mRNA expression of snail1 and slug. UA also lowered TGF-β1 protein expression and p-Smad3 in HK-2 cells. UA attenuated renal tubulointerstitial fibrosis by inhibiting EMT, and such inhibition may be achieved by decreasing profibrotic factors. UA may be a novel therapeutic agent for renal fibrosis."	"Convergence of TGFβ and BMP signaling in regulating human bone marrow stromal cell differentiation. Targeting regulatory signaling pathways that control human bone marrow stromal (skeletal or mesenchymal) stem cell (hBMSC) differentiation and lineage fate determination is gaining momentum in the regenerative medicine field. Therefore, to identify the central regulatory mechanism of osteoblast differentiation of hBMSCs, the molecular phenotypes of two clonal hBMSC lines exhibiting opposite in vivo phenotypes, namely, bone forming (hBMSC<sup>+bone</sup>) and non-bone forming (hBMSC<sup>-Bone</sup>) cells, were studied. Global transcriptome analysis revealed significant downregulation of several TGFβ responsive genes, namely, TAGLN, TMP1, ACTA2, TGFβ2, SMAD6, SMAD9, BMP2, and BMP4 in hBMSC<sup>-Bone</sup> cells and upregulation on SERPINB2 and NOG. Transcriptomic data was associated with marked reduction in SMAD2 protein phosphorylation, which thereby implies the inactivation of TGFβ and BMP signaling in those cells. Concordantly, activation of TGFβ signaling in hBMSC<sup>-Bone</sup> cells using either recombinant TGFβ1 protein or knockdown of SERPINB2 TGFβ-responsive gene partially restored their osteoblastic differentiation potential. Similarly, the activation of BMP signaling using exogenous BMP4 or via siRNA-mediated knockdown of NOG partially restored the differentiation phenotype of hBMSC<sup>-Bone</sup> cells. Concordantly, recombinant NOG impaired ex vivo osteoblastic differentiation of hBMSC<sup>+Bone</sup> cells, which was associated with SERBINB2 upregulation. Our data suggests the existence of reciprocal relationship between TGFB and BMP signaling that regulates hBMSC lineage commitment and differentiation, whilst provide a plausible strategy for generating osteoblastic committed cells from hBMSCs for clinical applications."	"MYB promotes the growth and metastasis of salivary adenoid cystic carcinoma. The incidence of recurrent t(6;9) translocation of the MYB proto‑oncogene to NFIB (the gene that encodes nuclear factor 1 B‑type) in adenoid cystic carcinoma (ACC) tumour tissues is high. However, MYB [the gene that encodes transcriptional activator Myb (MYB)] overexpression is more common, indicating that MYB serves a key role in ACC. The current study aimed to investigate the role of MYB in salivary (S)ACC growth and metastasis. A total of 50 fresh‑frozen SACC tissues and 41 fresh‑frozen normal submandibular gland (SMG) tissues were collected to measure MYB mRNA expression, and to analyse the associations between MYB and epithelial‑mesenchymal transition (EMT) markers. Compared with normal SMG tissue, SACC tissues demonstrated significantly increased MYB expression, with a high expression rate of 90%. Interestingly, MYB tended to be negatively correlated with CDH1 [the gene that encodes cadherin‑1 (E‑cadherin)] and positively correlated with VIM (the gene that encodes vimentin), suggesting that MYB is associated with SACC metastasis. To explore the role of MYB in SACC, the authors stably overexpressed and knocked down MYB in SACC cells. The authors of the current study demonstrated that MYB overexpression promoted SACC cell proliferation, migration and invasion, whereas its knockdown inhibited these activities. Additionally, when MYB was overexpressed, CDH1 expression was downregulated, and CDH2 (the gene that encodes cadherin‑2), VIM and ACTA2 (the gene that encodes actin, aortic smooth muscle) expression was upregulated. Then, the effect of MYB on lung tumour metastasis was investigated in vivo in non‑obese diabetic/severe combined immunodeficiency mice. MYB overexpressing and control cells were injected into the mice through the tail vein. The results revealed that MYB promoted SACC lung metastasis. Collectively, these results demonstrated that MYB is aberrantly overexpressed in SACC tissues, and promotes SACC cell proliferation and metastasis, indicating that MYB may be a novel therapeutic target for SACC."	"Regenerative potential of adipocytes in hypertrophic scars is mediated by myofibroblast reprogramming. Abnormal scarring is a major challenge in modern medicine. The central role of myofibroblasts and TGF-β signaling in scarring is widely accepted, but effective treatment options are missing. Autologous fat grafting is a novel approach that has led to significant improvements in the functionality and appearance of scar tissue. While the underlying mechanism is unknown, the potential role of paracrine effects of adipocytes has been discussed. Hence, with the aim of unraveling the regenerative potential of adipocytes, their effects on in vitro differentiated myofibroblasts and on fibroblasts from hypertrophic scars were investigated. Exposure to adipocyte-conditioned medium significantly decreased the expression of the myofibroblast marker α-SMA and ECM components, indicating the occurrence of myofibroblast reprogramming. Further analysis demonstrated that myofibroblast reprogramming was triggered by BMP-4 and activation of PPARγ signaling initiating tissue remodeling. These findings may pave the way for novel therapeutic strategies for the prevention or treatment of hypertrophic scars. KEY MESSAGES: Adipocytes induce distinct regenerative effects in hypertrophic scar tissue. Adipocytes secrete several proteins which are involved in wound healing and regeneration. Adipocytes secrete BMP-4 which activates myofibroblast reprogramming. Mediators secreted by adipocytes directly and indirectly activate PPARγ which exerts distinct anti-fibrotic effects. These findings may pave the way for novel therapeutic strategies for the prevention or treatment of hypertrophic scars."	"Identification of Cysteine-Rich Angiogenic Inducer 61 as a Potential Antifibrotic and Proangiogenic Mediator in Scleroderma. We previously identified CYR61 as a histone deacetylase 5 (HDAC-5)-repressed gene in systemic sclerosis (SSc; scleroderma) endothelial cells (ECs). When overexpressed, cysteine-rich angiogenic inducer 61 (CYR-61) promoted angiogenesis in SSc ECs. This study was undertaken to examine the role of CYR-61 in fibrosis and determine the mechanisms involved in CYR-61-mediated angiogenesis in SSc. Dermal ECs and fibroblasts were isolated from biopsy specimens from healthy subjects and patients with SSc. CYR-61 level was determined by quantitative polymerase chain reaction, Western blotting, and enzyme-linked immunosorbent assay. CYR-61 was overexpressed using a CYR61 vector or knocked down using small interfering RNA, and functional and mechanistic studies were then conducted in fibroblasts and ECs. Lower CYR61 messenger RNA levels were observed in dermal fibroblasts and ECs from SSc patients than in those from healthy controls. In SSc fibroblasts, overexpression of CYR-61 led to significant reduction in the expression of profibrotic genes, including COL1A1 (P = 0.002) and ACTA2 (P = 0.04), and an increase in the expression of matrix-degrading genes, including MMP1 (P = 0.002) and MMP3 (P =0.004), and proangiogenic VEGF (P = 0.03). The antifibrotic effect of CYR-61 was further demonstrated by delay in wound healing, inhibition of gel contraction, inactivation of the transforming growth factor β pathway, and early superoxide production associated with senescence in SSc fibroblasts. In SSc ECs, overexpression of CYR-61 led to increased production of vascular endothelial cell growth factor. The proangiogenic effects of CYR-61 were mediated by signaling through αvβ3 receptors and downstream activation of AMP-activated protein kinase, AKT, and the endothelial cell nitric oxide synthase/nitric oxide pathway system. CYR-61, which is epigenetically regulated by HDAC-5, is a potent antifibrotic and proangiogenic mediator in SSc. Therapeutic intervention to promote CYR-61 activity or increase CYR-61 levels might be of benefit in SSc."	"Myocardial Telocyte-Like Cells: A Review Including New Evidence. Telocytes (TCs) are a controversial cell type characterized by the presence of a particular kind of prolongations, known as telopodes, which are long, thin, and moniliform. A number of attempts has been made to establish the molecular phenotype of cardiac TCs (i.e., expression of c-kit, CD34, vimentin, PDGRFα, PDGRFβ, etc.). We designed an immunohistochemical study involving cardiac tissue samples obtained from 10 cadavers with the aim of determining whether there are TC-like interstitial cells that populate the interstitial space other than the mural microvascular cells. We applied the markers for CD31, CD34, PDGRFα, CD117/c-kit, and α-smooth muscle actin (α-SMA). We found that, in relation to two-dimensional cuts, the endothelial tubes could be misidentified as TC-like cells, the difference being the positive identification of endothelial lumina. Moreover, we found that cardiac pericytes express PDGRFα, CD117/c-kit, and α-SMA, and that they could also be misidentified as TCs when using light microscopy. We reviewed the respective values of the previously identified markers for achieving a clear-cut identification of cardiac TCs, highlighting the critical lack of specificity."	"Keratinocyte Integrin α3β1 Promotes Secretion of IL-1α to Effect Paracrine Regulation of Fibroblast Gene Expression and Differentiation. After cutaneous injury, keratinocytes secrete paracrine factors that regulate wound cell functions; dysregulation of this signaling can lead to wound pathologies. Previously, we established that keratinocyte integrin α3β1 promotes wound angiogenesis through paracrine stimulation of endothelial cells. We hypothesize here that α3β1-dependent paracrine signaling from keratinocytes regulates the differentiation state of myofibroblasts. We report that epidermal α3-knockout mice exhibit more wound myofibroblasts and fewer cyclooxygenase 2 (Cox-2)-positive dermal cells than controls. We also found that conditioned medium from α3-expressing mouse keratinocytes (MKα3<sup>+</sup>), but not from α3-null MK cells (MKα3<sup>-</sup>), induces expression of Cox-2 in fibroblasts in a time- and dose-dependent manner and that this induction is mediated by IL-1α. Compared with MKα3<sup>-</sup> cells, MKα3<sup>+</sup> cells secrete more IL-1α and less IL-1RA, a natural IL-1 receptor antagonist. Treatment with an IL-1α neutralizing antibody, recombinant IL-1RA, or IL-1 receptor-targeting small interfering RNA suppresses MKα3<sup>+</sup> conditioned medium-dependent induction of Cox-2 expression in fibroblasts. Finally, active recombinant IL-1α is sufficient to induce Cox-2 in fibroblasts and to inhibit transforming growth factor-β-induced α-SMA expression. Our findings support a role for keratinocyte integrin α3β1 in controlling the secretion of IL-1α, a paracrine factor that regulates the wound myofibroblast phenotype."	"Interleukin-1 Receptor Antagonist Modulates Liver Inflammation and Fibrosis in Mice in a Model-Dependent Manner. Interleukin-1 (IL-1)β and IL-1 receptor antagonist (IL-1Ra) have been proposed as important mediators during chronic liver diseases. We aimed to determine whether the modulation of IL-1β signaling with IL-1Ra impacts on liver fibrosis. We assessed the effects of IL-1β on human hepatic stellate cells (HSC) and in mouse models of liver fibrosis induced by bile duct ligation (BDL) or carbon tetrachloride treatment (CCl-4). Human HSCs treated with IL-1β had increased IL-1β, IL-1Ra, and MMP-9 expressions in vitro. HSCs treated with IL-1β had reduced α-smooth muscle actin expression. These effects were all prevented by IL-1Ra treatment. In the BDL model, liver fibrosis and Kuppfer cell numbers were increased in IL-1Ra KO mice compared to wild type mice and wild type mice treated with IL-1Ra. In contrast, after CCl-4 treatment, fibrosis, HSC and Kupffer cell numbers were decreased in IL-1Ra KO mice compared to the other groups. IL-1Ra treatment provided a modest protective effect in the BDL model and was pro-fibrotic in the CCl-4 model. We demonstrated bivalent effects of IL-1Ra during liver fibrosis in mice. IL-1Ra was detrimental in the CCl-4 model, whereas it was protective in the BDL model. Altogether these data suggest that blocking IL-1-mediated inflammation may be beneficial only in selective liver fibrotic disease."	"Cancer-associated fibroblasts promote PD-L1 expression in mice cancer cells via secreting CXCL5. Cancer-associated fibroblasts (CAFs) play a key role in orchestrating the tumor malignant biological properties within tumor microenvironment and evidences demonstrate that CAFs are a critical regulator of tumoral immunosuppression of the T cell response. However, the functions and regulation of CAFs in the expression of programmed death-ligand 1 (PD-L1) in melanoma and colorectal carcinoma (CRC) are not completely understood. Herein, by scrutinizing the expression of α-SMA and PD-L1 in melanoma and CRC tissues, we found that CAFs was positive correlated with PD-L1 expression. Further analyses showed that CAFs promoted PD-L1 expression in mice tumor cells. By detecting a majority of cytokines expression in normal mice fibroblasts and CAFs, we determined that CXCL5 was abnormal high expression in CAFs and the immunohistochemistry and in situ hybridization confirmed that were CAFs which were expressing CXCL5. In addition, CXCL5 promoted PD-L1 expression in B16, CT26, A375 and HCT116. The silencing of CXCR2, the receptor of CXCL5, inhibited the PD-L1 expression induced by CAFs in turn. Functionally, CXCL5 derived by CAFs promoted PD-L1 expression in mice tumor cells through activating PI3K/AKT signaling. LY294002, the inhibitor of PI3K, confirmed that CXCL5 forested an immunosuppression microenvironment by promoting PD-L1 expression via PI3K/AKT signaling. Meanwhile, the B16/CT26 xenograft tumor models were used and both CXCR2 and p-AKT were found to be positively correlated with PD-L1 in the xenograft tumor tissues. The immunosuppressive action of CAFs on tumor cells is probably reflective of them being a potential therapeutic biomarker for melanoma and CRC."	"Notum attenuates HBV-related liver fibrosis through inhibiting Wnt 5a mediated non-canonical pathways. Non-canonical Wnt pathways play important roles in liver fibrosis. Notum is a newly discovered inhibitor to Wnt proteins. This study was to investigate anti-fibrotic effects of Notum. 53 patients with hepatitis B virus (HBV) infection as well as a cell co-culture system of LX-2 and Hep AD38 cells were engaged in this study. Clinical, biological and virological data of each patient were analyzed. Cell viability was detected at different time points. mRNA and protein levels of NFATc1 (Nuclear factor of activated T-cells), Jnk, α-SMA, Col1A1 and TIMP-1 were detected both in LX-2 and liver tissue. Protein levels of NFATc1 and Jnk in liver tissue and their correlations with fibrosis score were analyzed. Hepatitis B virus replication up-regulated Wnt5a induced NFATc1 and Jnk activity in Hep AD38. Notum suppressed NFATc1, Jnk and fibrosis genes expression, reduced cell viability in co-cultured LX-2 cells induced by HBV. Interestingly, Patients with HBV DNA &gt; 5log copies/ml had higher mRNA levels of NFATc1 and fibrosis genes than patients with HBV DNA &lt; 5log copies/ml. Most importantly, protein expressions of NFATc1 and pJnk have positive correlations with liver fibrosis scores in HBV-infected patients. Our data showed that Notum inhibited HBV-induced liver fibrosis through down-regulating Wnt 5a mediated non-canonical pathways. This study shed light on anti-fibrotic treatment."	"URG11 promotes proliferation and induced apoptosis of LNCaP cells. von Willebrand factor C and EGF domain‑containing protein (URG11), a cell growth regulator, is involved in the progression of a variety of types of cancer, including prostate cancer (Pca). However, the functions of the URG11 gene in Pca cells require in‑depth investigation. The mRNA and protein levels of URG11 were measured by reverse transcription quantitative polymerase chain reaction (RT‑qPCR) and western blot analysis. Cell Counting kit‑8 (CCK‑8), wound‑healing and Transwell assays were used to detect cell viability, migration and invasion, respectively. Apoptosis and cell cycle analyses were performed using flow cytometry. The mRNA and protein expression levels of epithelial (E)‑cadherin, vimentin, α‑smooth muscle actin (α‑SMA), cyclin D1 and MYC proto‑oncogene protein (c‑Myc) were analyzed by RT‑qPCR and western blot analysis. In the present study, the mRNA and protein levels of URG11 were markedly upregulated in Pca cell lines compared with those in the normal prostate epithelial cell line. With functional experiments, the cell viability, migration and invasion of Pca cells were markedly promoted by URG11 overexpression. The cell cycle was effectively induced by URG11 and apoptosis was inhibited by the overexpression of URG11. Concomitantly, the epithelial marker E‑cadherin was downregulated, and the mesenchymal markers vimentin and α‑SMA were upregulated following URG11 overexpression. By contrast, genetic knockout of URG11 elicited the opposite effects. The present study also identified that the downstream effector genes of the Wnt/β‑catenin signal pathway, cyclin D1 and c‑Myc, were increased following the overexpression of endogenous URG11, which are known to regulate cell proliferation. In addition, the Wnt/β‑catenin inhibitor FH535 ameliorated the promotive effects of URG11 on LNCaP cells viability, migration and invasion, and the Wnt/β‑catenin agonist LiCl reversed the inhibitory effects of siURG11 in LNCaP cells on cell viability, migration and invasion. The present study demonstrated that URG11 served an oncogenic role in the development of Pca cells and provided evidence that URG11 has potential as a novel therapeutic target in Pca."	"DCE-MRI and Quantitative Histology Reveal Enhanced Vessel Maturation but Impaired Perfusion and Increased Hypoxia in Bevacizumab-Treated Cervical Carcinoma. This study had a dual purpose: to investigate (1) whether bevacizumab can change the microvasculature and oxygenation of cervical carcinomas and (2) whether any changes can be detected with dynamic contrast-enhanced magnetic resonance imaging (DCE-MRI). Two patient-derived xenograft models of cervical cancer (BK-12 and HL-16) were included in the study. Immunostained histologic preparations from untreated and bevacizumab-treated tumors were analyzed with respect to microvascular density, vessel pericyte coverage, and tumor hypoxia using CD31, α-SMA, and pimonidazole as markers, respectively. DCE-MRI was performed at 7.05 T, and parametric images of K<sup>trans</sup> and ve were derived from the data using the Tofts pharmacokinetic model. The tumors of both models showed decreased microvascular density, increased vessel pericyte coverage, and increased vessel maturation after bevacizumab treatment. Bevacizumab-treated tumors were more hypoxic and had lower K<sup>trans</sup> values than untreated tumors in the BK-12 model, whereas bevacizumab-treated and untreated HL-16 tumors had similar hypoxic fractions and similar K<sup>trans</sup> values. Significant correlations were found between median K<sup>trans</sup> and hypoxic fraction, and the data for untreated and bevacizumab-treated tumors were well fitted by the same curve in both tumor models. Bevacizumab-treated tumors show less abnormal microvessels than untreated tumors do, but because of treatment-induced vessel pruning, the overall function of the microvasculature might be impaired after bevacizumab treatment, resulting in increased tumor hypoxia. DCE-MRI has great potential for monitoring bevacizumab-induced changes in tumor hypoxia in cervical carcinoma."	"Mechanism of decorin protein inhibiting invasion and metastasis of non-small cell lung cancer. To detect the protein level of Decorin in non-small cell lung cancer (NSCLC) patients, and to study the mechanism of Decorin inhibiting invasion and metastasis of non-small cell lung cancer from the perspective of in vitro cells, and provide some theoretical support for the treatment of non-small cell lung cancer. Immunohistochemical staining was used to detect the expression of Decorin protein in 332 cases of stage I-IIIA clinical NSCLC and 70 cases of adjacent tissues. Then, in vitro cell experiments (cell scratch assay and transwell assay) were used to further study the effects of Decorin on migration and invasion of human lung cancer cell line A549; the effect of transforming growth factor-β on the expression of Decorin and Ets-1 protein was verified by Western blotting. The binding sites of Ets-1 and Decorin promoter were analyzed by bioinformatics. Exogenous Decorin inhibited invasion and metastasis of lung adenocarcinoma cells in vitro. Immunohistochemical staining showed that Decorin was lowly expressed in non-small cell lung cancer and Decorin had a certain effect on lung fibroblast activation. Western blotting results showed that TGF-β affects the expression of Decorin and Ets-1. Bioinformatics results showed that Ets-1 and Decorin gene DNA promoter regions have 18 binding sites. Decorin inhibits invasion and metastasis of non-small cell lung cancer through the TGF-β signaling pathway."	"Therapeutic effects of the rhSOD2-Hirudin fusion protein on bleomycin-induced pulmonary fibrosis in mice. Idiopathic pulmonary fibrosis (IPF) is a disease with a poor prognosis and high mortality, posing a major threat to human health. Increased levels of inflammatory cytokines, reactive oxygen species and coagulation cascade have been extensively reported in IPF. We previously fused Hirudin and human manganese superoxide dismutase (hSOD2) to generate a dual-feature fusion protein, denoted as rhSOD2-Hirudin fusion protein. In this study, 3-(4,5-dimethylthiazol-2-yl)-5-(3-carboxymethoxyphenyl)-2-(4-sulfophenyl)-2H-tetrazolium (MTS) and Hydroxyproline (HYP) assays were used to investigate the effects of rhSOD2-Hirudin protein on thrombin-induced fibroblast proliferation and collagen accumulation in vitro. Subsequently, the mice model of pulmonary fibrosis induced by bleomycin was used for evaluating the anti-inflammatory and anti-fibrotic effects of rhSOD2-Hirudin protein in vivo. Results showed that rhSOD2-Hirudin protein could inhibit the proliferation of fibroblasts and reduce the HYP production in vitro by inhibiting the activity of thrombin. In vivo experiments showed that lung inflammation and fibrosis were significantly decreased in rhSOD2-Hirudin protein-treated mice. Furthermore, rhSOD2-Hirudin protein treatment reduced profibrotic protein and gene expression while reducing the number of inflammatory cells in the lung. In conclusion, rhSOD2-Hirudin protein can effectively attenuate pulmonary fibrosis in vitro and in vivo, mainly by inhibiting the activity of thrombin meanwhile increasing SOD2 levels prevent cells from being damaged by reactive oxygen species, thereby mitigating IPF progression. This study provided important information on the feasibility and efficacy of rhSOD2-Hirudin protein as a novel therapeutic agent for IPF."	"Comparative Biological Effects of Human Amnion and Chorion Membrane Extracts on Human Adipose-Derived Stromal Cells. Although therapies with human amnion/chorion are used to ameliorate acute and chronic wounds, it is unclear which component of the amnion/chorion tissue promotes wound healing. To characterize the comparative effects of amnion and chorion in wound healing, we used human adipose-derived stromal cells to assess cell viability, migration, and gel contraction after treatment with amnion membrane extract (AME) or chorion membrane extract (CME). We then correlated the possible effectors via AME and CME protein profiling, and compared them by enzyme-linked immunosorbent assay (ELISA), western blotting, and immunocytochemistry. Cell viability was significantly increased with 50 and 100 μg/mL AME treatment, but with CME treatment, a significant increase was only observed with 100 μg/mL. With CME treatment, cell migration was 2.22-fold greater than the control, and collagen gels showed 20% greater contraction. Compared to control, the expression levels of α-smooth muscle actin (SMA) and smooth muscle protein 22-alpha (SM22α) increased both with AME and CME treatments, whereas calponin expression decreased. Protein profiling revealed significantly higher tissue inhibitor of metalloproteinase-1 (TIMP-1), interleukin-8, exotoxin, and adiponectin levels in CME than in AME, and ELISA revealed 8-fold higher adiponectin levels in cells treated with CME than those treated with AME. Immunocytochemistry revealed that α-SMA, SM22α, and calponin were significantly higher in CME- than AME-treated cells; however, adiponectin treatment did not enhance α-SMA, SM22α, or calponin expression. In conclusion, amnion and chorion membrane extracts exerted differential effects on proliferation and contraction of human adipose-derived stromal cells. Amnion extract was superior at inducing cell proliferation and migration, whereas CME was superior at inducing cell contraction."	"MicroRNA‑181 exerts an inhibitory role during renal fibrosis by targeting early growth response factor‑1 and attenuating the expression of profibrotic markers. Progressive renal fibrosis is a common complication of chronic kidney disease that results in end‑stage renal disorder. It is well established that several microRNAs (miRs) function as critical regulators implicated in fibrotic diseases. However, the role of miR‑181 in the development and progression of renal fibrosis remains unclear, and the precise mechanism has not yet been fully defined. The present study identified the functional implications of miR‑181 expression during renal fibrosis. miR‑181 exhibited significantly reduced expression in the serum of renal fibrosis patients and in the kidneys of mice with unilateral ureteral obstruction (UUO). In addition, miR‑181 downregulated the expression of human α‑smooth muscle actin (α‑SMA) in response to angiotensin II stimulation. Transfection with miR‑181 mimics significantly suppressed the expression levels of α‑SMA, connective tissue growth factor, collagen type I α1 (COL1A1) and collagen type III α1 (COL3A1) in NRK49F cells. Notably, early growth response factor‑1 (Egr1) was identified as a direct target gene of miR‑181. Furthermore, in vivo experiments revealed that treatment with miR‑181 agonist strongly rescued kidney impairment induced by UUO, as supported by Masson's trichrome staining of kidney tissues and reverse transcription‑quantitative polymerase chain reaction analysis of COL1A1 and COL3A1 mRNA levels. Therefore, miR‑181 may be regarded as an important mediator in the control of profibrotic markers during renal fibrosis via binding to Egr1, and may be a promising new target in the diagnosis and therapy of renal fibrosis."	"Therapeutic Intranasal Vaccine HB-ATV-8 Prevents Atherogenesis and Non-alcoholic Fatty Liver Disease in a Pig Model of Atherosclerosis. Atherosclerosis as an inflammatory disease involved in the etiology of cardiovascular disease worldwide, in our days demands an array of different therapeutic approaches in order to soon be able to visualize an effective prevention. Based on an immunotherapeutic approach, we designed a non-invasive vaccine (HB-ATV-8), contained in a micellar nanoparticle composed of lipids and a peptide segment derived from the C-terminus of the cholesterol-ester transfer protein (CETP). Now we extend our successful proof of concept from the rabbit to a porcine model and investigated its effect in an attempt to undoubtedly establish the efficacy of vaccination in a model closer to the human. A preclinical trial was designed to study the efficacy of vaccine HB-ATV-8 in pigs (Large White × Landrace). Male experimental animals were fed with standard diet (control), high fat diet (HFD) or the same HFD but treated with HB-ATV-8 (HFD + Vaccine) applied nasally for up to 7 months. All biochemical and enzymatic analyses were performed in peripheral venous blood and thoracic aorta and liver samples examined using conventional, two-photon excitation and second harmonic generation microscopy to identify atherosclerotic and hepatic lesions. mRNA concentrations for KLF2, ACTA2, SOD1, COL1A1 genes and protein levels for PPARα and ABCA1 were quantified in aorta and liver respectively using qPCR and Western blot analysis. The administration of vaccine HB-ATV-8 induced anti-CETP IgG antibodies and reduced atherosclerotic and hepatic lesions promoted by the high fat diet. In addition, plasma triglyceride levels of vaccine treated pigs fed the HFD were similar to those of control group, in contrast to high concentrations reached with animals exclusively fed with HFD. Moreover, HFD promotes a tendency to decrease hepatic PPARα levels and increase in aorta gene expression of KLF2, ACTA2, SOD1 and COL1A1, while vaccine application promotes recovery close to control values. Vaccine HB-ATV-8 administration constitutes a promissory preventive approach useful in the control of atherogenesis and fatty liver disease. The positive results obtained, the non-invasive characteristics of the vaccine, the simple design employed in its conception and its low production cost, support the novelty of this therapeutic strategy designed to prevent the process of atherogenesis and control the development of fatty liver disease."	"Intimal regeneration after coronary endarterectomy and onlay grafting in coronary artery bypass grafting. Coronary onlay grafting, with or without endarterectomy, has been widely used for the treatment of diffuse lesions. Recent studies have demonstrated excellent long-term patency and favorable remodeling of onlay anastomosis; however, the underlying mechanisms remain unknown. Here, we describe the mechanism of intimal regeneration based on postmortem pathological evaluation of a patient who had undergone onlay grafting with coronary endarterectomy. The onlay anastomosis was analyzed using a combination of immunohistological stainings, namely, H&amp;E, vimentin, α-SMA, factor VIII, and Ki-67, to identify the source and mechanism of intimal regeneration after onlay grafting with endarterectomy. Our results suggest that the regenerated endothelium derives from the smooth muscle cells of the endarterectomized media of the coronary artery and that it circumferentially covers the internal lumen of the arterial graft. Intimal regeneration, derived from the smooth muscle cells of the endarterectomized coronary artery that proliferate toward the graft lumen, may be a key mechanism that underlies the observed favorable remodeling after onlay grafting during coronary endarterectomy."	"Identification of Potential Key Genes and Pathways in Early-Onset Colorectal Cancer Through Bioinformatics Analysis. This study was designed to identify the potential key protein interaction networks, genes, and correlated pathways in early-onset colorectal cancer (CRC) via bioinformatics methods. We selected microarray data GSE4107 consisting 12 patient's colonic mucosa and 10 healthy control mucosa; initially, the GSE4107 were downloaded and analyzed using limma package to identify differentially expressed genes (DEGs). A total of 131 DEGs consisting of 108 upregulated genes and 23 downregulated genes of patients in early-onset CRC were selected by the criteria of adjusted P values &lt;.01 and |log2 fold change (FC)| ≥ 2. The gene ontology functional enrichment analysis and the Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were accomplished to view the biological process, cellular components, molecular function, and the KEGG pathways of DEGs. Finally, protein-protein interactions (PPIs) were constructed, and the hub protein module was identified. Genes such as ACTA2, ACTG2, MYH11, CALD1, MYL9, TPM2, and LMOD1 were strongly implicated in CRC. In summary, in this study, we indicated that molecular mechanisms were involved in muscle contraction and vascular smooth muscle contraction signaling pathway, which improve our understanding of CRC and could be used as new therapeutic targets for CRC."	"Rho-kinase inhibitor coupled to peptide-modified albumin carrier reduces portal pressure and increases renal perfusion in cirrhotic rats. Rho-kinase (ROCK) activation in hepatic stellate cells (HSC) is a key mechanism promoting liver fibrosis and portal hypertension (PTH). Specific delivery of ROCK-inhibitor Y-27632 (Y27) to HSC targeting mannose-6-phosphate-receptors reduces portal pressure and fibrogenesis. In decompensated cirrhosis, presence of ascites is associated with reduced renal perfusion. Since in cirrhosis, platelet-derived growth factor receptor beta (PDGFRβ) is upregulated in the liver as well as the kidney, this study coupled Y27 to human serum albumin (HSA) substituted with PDGFRβ-recognizing peptides (pPB), and investigated its effect on PTH in cirrhotic rats. In vitro collagen contraction assays tested biological activity on LX2 cells. Hemodynamics were analyzed in BDL and CCl4 cirrhotic rats 3 h, 6 h and 24 h after i.v. administration of Y27pPBHSA (0.5/1 mg/kg b.w). Phosphorylation of moesin and myosin light chain (MLC) assessed ROCK activity in liver, femoral muscle, mesenteric artery, kidney and heart. Three Y27 molecules were coupled to pPBHSA as confirmed by HPLC/MS, which was sufficient to relax LX2 cells. In vivo, Y27pPBHSA-treated rats exhibited lower portal pressure, hepatic vascular resistance without effect on systemic vascular resistance, but a tendency towards lower cardiac output compared to non-treated cirrhotic rats. Y27pPBHSA reduced intrahepatic resistance by reduction of phosphorylation of moesin and MLC in Y27pPBHSA-treated cirrhotic rats. Y27pPBHSA was found in the liver of rats up to 6 hours after its injection, in the HSC demonstrated by double-immunostainings. Interestingly, Y27pPBHSA increased renal arterial flow over time combined with an antifibrotic effect as shown by decreased renal acta2 and col1a1 mRNA expression. Therefore, targeting the ROCK inhibitor Y27 to PDGFRβ decreases portal pressure with potential beneficial effects in the kidney. This unique approach should be tested in human cirrhosis."	"The identification of new biomarkers for bladder cancer: A study based on TCGA and GEO datasets. Bladder cancer (BC) is one of the most common neoplastic diseases worldwide. With the highest recurrence rate among all cancers, treatment of BC only improved a little in the last 30 years. Available biomarkers are not sensitive enough for the diagnosis of BC, whereas the standard diagnostic method, cystoscopy, is an invasive test and expensive. Hence, seeking new biomarkers of BC is urgent and challenging. With that order, we screened the overlapped differentially expressed genes (DEGs) of GSE13507 and TCGA BLCA datasets. Subsequent protein-protein interactions network analysis recognized the hub genes among these DEGs. Further functional analysis including Gene Ontology and KEGG pathway analysis and gene set enrichment analysis were processed to investigate the role of these genes and potential underlying mechanisms in BC. Kaplan-Meier analysis and Cox hazard ratio analysis were carried out to clarify the diagnostic and prognostic role of these genes. In conclusion, our present study demonstrated that ACTA2, CDC20, MYH11, TGFB3, TPM1, VIM, and DCN are all potential diagnostic biomarkers for BC. And may also be potential treatment targets for clinical implication in the future."	"Precision-cut lung slices from bleomycin treated animals as a model for testing potential therapies for idiopathic pulmonary fibrosis. Idiopathic pulmonary fibrosis (IPF) is a complex lung disease with incompletely understood pathophysiology. Effectiveness of available medicines is limited and the need for new and improved therapies remains. Due to complexity of the disease, it is difficult to develop predictable in vitro models. In this study we have described precision-cut lung slices (PCLS) prepared from bleomycin treated mice as an in vitro model for testing of novel compounds with antifibrotic activity. We have shown that PCLS during in vitro incubation retain characteristics of bleomycin model with increased expression of fibrosis related genes ACTA2 (α-smooth muscle actin), COL1A1 (collagen 1), FN1 (fibronectin 1), MMP12 (matrix metalloproteinase 12) and TIMP1 (tissue inhibitor of metalloproteinases). To further evaluate PCLS as an in vitro model, we have tested ALK5 inhibitor SB525334 which was previously shown to attenuate fibrosis in in vivo bleomycin model and nintedanib which is the FDA approved treatment for IPF. SB525334 and nintedanib inhibited expression of fibrosis related genes in PCLS from bleomycin treated mice. In addition, comparable activity profile of SB525334 was achieved in PCLS and in vivo model. Altogether these results suggest that PCLS may be a suitable in vitro model for compound testing during drug development process."	"Histopathologic differences in the endovenous laser ablation between jacketed and radial fibers, in an ex vivo dominant extrafascial tributary of the great saphenous vein in an in vitro model, using histology and immunohistochemistry. The study aimed to investigate the biologic effects of the 1470-nm endovenous laser (EVL), with a jacketed fiber and a radial fiber, during EVL ablation of an ex vivo dominant extrafascial tributary of the great saphenous vein in our in vitro model by histology and immunohistochemistry. Ten segments of the dominant extrafascial tributary of the great saphenous vein were harvested by a consultant vascular surgeon from patients during routine varicose vein surgery. Six segments were treated using an ex vivo model of our design by a 1470-nm EVL with a jacketed fiber. The other four segments were also treated by a 1470-nm EVL but with a radial-firing fiber. Each segment was split into five sections and treated at five different linear endovenous energy densities (LEEDs) at 10 W: 0, 20, 40, 60, and 80 J/cm. The veins were incubated and subsections collected at 6 and 24 hours after treatment. Subsections were immersed in buffered formalin and taken for histologic and immunohistochemical analysis. Histopathologic analysis was then performed. Treatment with the radial fiber led to a pattern of damage that was more homogeneous than with the jacketed fiber, with no carbonization of tissue present. Significant transmural damage and necrosis were observed at LEEDs of 60 and 80 J/cm in both treatment groups. At the same LEEDs, p53 and caspase 3 analysis showed that transmural cell wall vein death (necrosis or apoptosis) occurred by 6 hours after treatment with both fibers. There was a significant difference in the effects of treatment with a jacketed fiber and a radial fiber in EVL ablation in vitro. Although both fibers caused transmural vein wall cell death at similar LEEDs, the pattern of damage with the radial fiber was more homogeneous. There was no overtreatment of tissue in terms of carbonization after treatment with the radial fiber. Treatment with the jacketed fiber showed carbonization of tissue at the same LEEDs."	"Adeno-associated virus 9-mediated RNA interference targeting SOCS3 alleviates diastolic heart failure in rats. To explore the effect of adeno-associated virus 9-mediated RNA interference targeting SOCS3 (AAV9-SOCS3 siRNA) on the treatment of diastolic heart failure (DHF). A rat DHF model was established, and cardiac function and hemodynamic changes were measured. HE, Sirius red and TUNEL staining were applied to observe the pathological changes in the myocardium. Immunoblotting and immunohistochemical staining were utilized to detect SOCS3 expression. The expression levels of various factors, including fibrosis-related factors (collagen I, collagen II, α-SMA and TGF-β), inflammatory-related factors (IL-1β, IL-6, TNF-α, p-p65 and ICAM-1) and factors related to the JAK/STAT signal pathway were analyzed by immunoblotting and/or qPCR. The serum levels of IL-1β, IL-6, and TNF-α were measured using ELISA. SOCS3 expression was significantly downregulated in the DHF rat model by SOCS3 siRNA delivery. In the successfully established DHF rat model, cardiac function was clearly decreased, and cardiomyocyte apoptosis and myocardial fibrosis were significantly increased. These changes were ameliorated by treatment with AAV9-SOCS3 siRNA. The expression levels of p-JAK2 and p-STAT3 were significantly upregulated in the AAV9-SOCS3 siRNA group compared with the sham and AAV9-siRNA control groups, indicating that SOCS3 is a negative regulator of this signaling pathway. The expression levels of collagen I/III, α-SMA and TGF-β were also decreased at both the mRNA and protein levels. In addition, the serum and myocardial tissue expression levels of inflammatory-related factors, such as IL-6, IL-1β, and TNF-α, were also reduced by the administration of AAV9-SOCS3 siRNA compared with the AAV9-siRNA control. SOCS3 gene silencing by AAV9-SOCS3 siRNA administration in a DHF rat model significantly reduced myocardial fibrosis and the inflammatory response and improved heart function. Therefore, this treatment is a potential therapeutic method for treating DHF."	"Targeting MRTF/SRF in CAP2-dependent dilated cardiomyopathy delays disease onset. About one-third of dilated cardiomyopathy (DCM) cases are caused by mutations in sarcomere or cytoskeletal proteins. However, treating the cytoskeleton directly is not possible because drugs that bind to actin are not well tolerated. Mutations in the actin binding protein CAP2 can cause DCM and KO mice, either whole body (CAP2-KO) or cardiomyocyte-specific KOs (CAP2-CKO) develop DCM with cardiac conduction disease. RNA sequencing analysis of CAP2-KO hearts and isolated cardiomyocytes revealed overactivation of fetal genes, including serum response factor-regulated (SRF-regulated) genes such as Myl9 and Acta2 prior to the emergence of cardiac disease. To test if we could treat CAP2-KO mice, we synthesized and tested the SRF inhibitor CCG-1423-8u. CCG-1423-8u reduced expression of the SRF targets Myl9 and Acta2, as well as the biomarker of heart failure, Nppa. The median survival of CAP2-CKO mice was 98 days, while CCG-1423-8u-treated CKO mice survived for 116 days and also maintained normal cardiac function longer. These results suggest that some forms of sudden cardiac death and cardiac conduction disease are under cytoskeletal stress and that inhibiting signaling through SRF may benefit DCM by reducing cytoskeletal stress."	"Effects of all-trans retinoic acid on the in vitro maturation of camel (Camelus dromedarius) cumulus-oocyte complexes. All-trans retinoic acid (RA) is a metabolite of vitamin A and has pleiotropic actions on many different biological processes, including cell growth and differentiation, and is involved in different aspects of fertility and developmental biology. In the current study, we investigated the effects of RA on camel (Camelus dromedarius) cumulus-oocyte complex in vitro maturation (IVM). IVM medium was supplemented with 0, 10, 20, and 40 µM RA. Application of 20 µM RA significantly reduced the proportion of degenerated oocytes and significantly improved oocyte meiosis and first polar body extrusion compared to the control and other experimental groups. Retinoic acid significantly reduced the mRNA transcript levels of apoptosis-related genes, including BAX and P53, and reduced the BAX/BCL2 ratio. In addition, RA significantly reduced the expression of the Transforming growth factor beta (TGFβ) pathway-related transcripts associated with the actin cytoskeleton, ACTA2 and TAGLN; however, RA increased TGFβ expression in cumulus cells. The small molecule SB-431542 inhibits the TGFβ pathway by inhibiting the activity of activin receptor-like kinases (ALK-4, ALK-5, and ALK-7); however, combined supplementation with RA during IVM compensated for the inhibitory effect of SB-431542 on cumulus expansion, oocyte meiosis I, and first polar body extrusion in activated oocytes. The current study shows the beneficial effects of RA on camel oocyte IVM and provides a model to study the multifunctional mechanisms involved in cumulus expansion and oocyte meiosis, particularly those involved in the TGFβ pathway."	"Cancer-associated fibroblasts induce epithelial-mesenchymal transition of bladder cancer cells through paracrine IL-6 signalling. Cancer-associated fibroblasts (CAFs), activated by tumour cells, are the predominant type of stromal cells in cancer tissue and play an important role in interacting with neoplastic cells to promote cancer progression. Epithelial-mesenchymal transition (EMT) is a key feature of metastatic cells. However, the mechanism by which CAFs induce EMT program in bladder cancer cells remains unclear. To investigate the role of CAFs in bladder cancer progression, healthy primary bladder fibroblasts (HFs) were induced into CAFs (iCAFs) by bladder cancer-derived exosomes. Effect of conditioned medium from iCAFs (CM <sup>iCAF</sup>) on EMT markers expression of non-invasive RT4 bladder cancer cell line was determined by qPCR and Western blot. IL6 expression in iCAFs was evaluated by ELISA and Western blot. RT4 cell proliferation, migration and invasion were assessed in CM <sup>iCAF</sup> +/- anti-IL6 neutralizing antibody using cyQUANT assay, scratch test and transwell chamber respectively. We investigated IL6 expression relevance for bladder cancer progression by querying gene expression datasets of human bladder cancer specimens from TCGA and GEO genomic data platforms. Cancer exosome-treated HFs showed CAFs characteristics with high expression levels of αSMA and FAP. We showed that the CM <sup>iCAF</sup> induces the upregulation of mesenchymal markers, such as N-cadherin and vimentin, while repressing epithelial markers E-cadherin and p-ß-catenin expression in non-invasive RT4 cells. Moreover, EMT transcription factors SNAIL1, TWIST1 and ZEB1 were upregulated in CM <sup>iCAF</sup>-cultured RT4 cells compared to control. We also showed that the IL-6 cytokine was highly expressed by CAFs, and its receptor IL-6R was found on RT4 bladder cancer cells. The culture of RT4 bladder cancer cells with CM <sup>iCAF</sup> resulted in markedly promoted cell growth, migration and invasion. Importantly, inhibition of CAFs-secreted IL-6 by neutralizing antibody significantly reversed the IL-6-induced EMT phenotype, suggesting that this cytokine is necessary for CAF-induced EMT in the progression of human bladder cancer. Finally, we observed that IL6 expression is up-regulated in aggressive bladder cancer and correlate with CAF marker ACTA2. We conclude that CAFs promote aggressive phenotypes of non-invasive bladder cancer cells through an EMT induced by the secretion of IL-6."	"Clinical significance of cancer-associated fibroblasts and their correlation with microvessel and lymphatic vessel density in lung adenocarcinoma. To determine whether cancer-associated fibroblasts (CAFs) are associated with microvessel density (MVD) and lymphatic vessel density (LVD) in lung adenocarcinoma (ADC) or are not prognostic. Ninety-three lung adenocarcinoma patients without adjuvant therapy between January 2010 and June 2011 were enrolled. CAFs, MVD, and LVD were identified by α-smooth muscle actin (α-SMA), CD34 and D2-40 staining via immunohistochemistry. Staining intensities were assessed and quantified. For statistics, Pearson's chi-square test, logistic regression, Kaplan-Meier, and log-rank tests were applied. In addition, the Cox proportional hazards model was used for multifactor analysis to predict survival. CAFs abundance in lung adenocarcinoma is associated with higher MVD and LVD. In addition, a correlation was demonstrated between MVD and LVD (P &lt; 0.05). CAFs, MVD, and LVD are significantly correlating with age, tumor size, differentiation grade, clinical stage, and lymph node metastasis (P &lt; 0.05), but not influenced by gender, tumor location, and smoking history. Three-year overall survival in the CAFs-poor group is 64.5%, which is significant higher than that in the CAFs-rich cohort (41.9%). Further, we found that age, clinical stage, α-SMA, CD34, D2-40 positivity, tumor size, differentiation grade, and lymph node metastasis significantly correlate with overall survival of patients with lung adenocarcinoma. However, sex, smoking history, and tumor location have no association with 3-year survival. The clinical stage is an independent prognostic factor in overall survival (P &lt; 0.05). The density of CAFs identified by α-SMA staining is associated with progression and metastasis of lung adenocarcinoma and affects the patient's disease outcome."	"Novel role of the clustered miR-23b-3p and miR-27b-3p in enhanced expression of fibrosis-associated genes by targeting TGFBR3 in atrial fibroblasts. Atrial fibrillation (AF) is the most common type of arrhythmia in cardiovascular diseases. Atrial fibrosis is an important pathophysiological contributor to AF. This study aimed to investigate the role of the clustered miR-23b-3p and miR-27b-3p in atrial fibrosis. Human atrial fibroblasts (HAFs) were isolated from atrial appendage tissue of patients with sinus rhythm. A cell model of atrial fibrosis was achieved in Ang-II-induced HAFs. Cell proliferation and migration were detected. We found that miR-23b-3p and miR-27b-3p were markedly increased in atrial appendage tissues of AF patients and in Ang-II-treated HAFs. Overexpression of miR-23b-3p and miR-27b-3p enhanced the expression of collagen, type I, alpha 1 (COL1A1), COL3A1 and ACTA2 in HAFs without significant effects on their proliferation and migration. Luciferase assay showed that miR-23b-3p and miR-27b-3p targeted two different sites in 3'-UTR of transforming growth factor (TGF)-β1 receptor 3 (TGFBR3) respectively. Consistently, TGFBR3 siRNA could increase fibrosis-related genes expression, along with the Smad1 inactivation and Smad3 activation in HAFs. Additionally, overexpression of TGFBR3 could alleviate the increase of COL1A1, COL3A1 and ACTA2 in HAFs after transfection with miR-23b-3p and miR-27b-3p respectively. Moreover, Smad3 was activated in HAFs in response to Ang-II treatment and inactivation of Smad3 attenuated up-regulation of miR-23b-3p and miR-27b-3p in Ang-II-treated HAFs. Taken together, these results suggest that the clustered miR-23b-3p and miR-27b-3p consistently promote atrial fibrosis by targeting TGFBR3 to activate Smad3 signalling in HAFs, suggesting that miR-23b-3p and miR-27b-3p are potential therapeutic targets for atrial fibrosis."	"Promoters to Study Vascular Smooth Muscle. Smooth muscle cells (SMCs) are a critical component of blood vessel walls that provide structural support, regulate vascular tone, and allow for vascular remodeling. These cells also exhibit a remarkable plasticity that contributes to vascular growth and repair but also to cardiovascular pathologies, including atherosclerosis, intimal hyperplasia and restenosis, aneurysm, and transplant vasculopathy. Mouse models have been an important tool for the study of SMC functions. The development of smooth muscle-expressing Cre-driver lines has allowed for exciting discoveries, including recent advances revealing the diversity of phenotypes derived from mature SMC transdifferentiation in vivo using inducible CreER <sup>T2</sup> lines. We review SMC-targeting Cre lines driven by the Myh11, Tagln, and Acta2 promoters, including important technical considerations associated with these models. Limitations that can complicate study of the vasculature include expression in visceral SMCs leading to confounding phenotypes, and expression in multiple nonsmooth muscle cell types, such as Acta2-Cre expression in myofibroblasts. Notably, the frequently employed Tagln/ SM22α- Cre driver expresses in the embryonic heart but can also confer expression in nonmuscular cells including perivascular adipocytes and their precursors, myeloid cells, and platelets, with important implications for interpretation of cardiovascular phenotypes. With new Cre-driver lines under development and the increasing use of fate mapping methods, we are entering an exciting new era in SMC research."	"Effect of endostatin on proliferation, invasion and epithelial-mesenchymal transition of basal cell carcinoma cell A431. To investigate the effect of endostatin on the proliferation, invasion and epithelial-mesenchymal transition (EMT) of human basal cell carcinoma (BCC) cells (A431). CCK-8 assay and transwell chamber assay were performed to detect cell proliferation and invasion abilities, respectively. Western blot was performed for the detection of the expressions of EMT-related proteins levels. The therapeutic effect of endostatin on tumor formation was tested using a mouse xenograft model. After endostatin treatment, transwell assay showed that the number of invasive cells in the observation group and control group were (38.25±8.13) and (98.25±9.14), respectively; the relative expression level of E-cadherin protein in the observation group was (0.34±0.03), which was significantly higher than that in the control group (0.14±0.01); the relative expression levels of N-cadherin protein in the observation group was (0.18±0.05), which was significantly lower than that in the control group (0.43±0.03), (all p&lt;0.05). The expression levels of Vimentin and Fibronectin proteins were significantly lower, while the expression levels of α-smooth muscle Actin (α-SMA) were significantly higher in the observation group than those in the control group. Treatment with endostatin significantly inhibited tumor growth in the mouse xenograft model. Therefore, endostatin can inhibit the proliferation, invasion and EMT in BCC."	"Sitagliptin inhibits EndMT in vitro and improves cardiac function of diabetic rats through the SDF-1α/PKA pathway. The aim of this paper was to study sitagliptin in improving the endothelial-mesenchymal transition (EndMT) of human aortic endothelial cells (HAECs) and cardiac function of rats with diabetes mellitus (DM) and its possible pathway. Sprague Dawley (SD) rats were divided into control group, DM group and sitagliptin group. The myocardial contraction and relaxation functions of rats in each group were observed via echocardiography. The changes in cardiac structure and fiber were observed via hematoxylin-eosin (HE) staining, Masson staining and Sirius red staining. The immunohistochemical assay was performed to observe the expressions of α-smooth muscle actin (α-SMA) and VE-cadherin in HAECs; the expression of reactive oxygen species (ROS) in HAECs was detected using the fluorescence probe. Moreover, the expressions of transforming growth factor-β1 (TGF-β1), phosphorylated-protein kinase A (p-PKA), PKA and extracellular signal-regulated kinase (ERK) were observed via Western blotting. Sitagliptin could improve the myocardial contraction and relaxation functions in diabetic rats and EndMT and ROS production in HAECs. In the DM group, the expression of Glucagon-like peptide-1 (GLP-1) was decreased, while the expression of stromal-derived factor-1α (SDF-1α) was decreased and the expressions of downstream PKA/ERK pathway and TGF-β1 were increased. The above changes could be reversed by sitagliptin. Sitagliptin can reverse the EndMT in HAECs as well as the cardiac function in diabetic rats through the SDF-1α/PKA pathway."	"CEMIP (KIAA1199) induces a fibrosis-like process in osteoarthritic chondrocytes. CEMIP (for &quot;Cell migration-inducing protein&quot; also called KIAA1199 and Hybid for &quot;Hyaluronan-binding protein&quot;) expression is increased in cancers and described as a regulator of cell survival, growth and invasion. In rheumatoid arthritis, CEMIP is referred to as an angiogenic marker and participates in hyaluronic acid degradation. In this study, CEMIP expression is investigated in healthy and osteoarthritis (OA) cartilage from human and mouse. Its role in OA physiopathology is deciphered, specifically in chondrocytes proliferation and dedifferentiation and in the extracellular matrix remodeling. To this end, CEMIP, αSMA and types I and III collagen expressions were assessed in human OA and non-OA cartilage. CEMIP expression was also investigated in a mouse OA model. CEMIP expression was studied in vitro using a chondrocyte dedifferentiation model. High-throughput RNA sequencing was performed on chondrocytes after CEMIP silencing. Results showed that CEMIP was overexpressed in human and murine OA cartilage and along chondrocytes dedifferentiation. Most of genes deregulated in CEMIP-depleted cells were involved in cartilage turnover (e.g., collagens), mesenchymal transition and fibrosis. CEMIP regulated β-catenin protein level. Moreover, CEMIP was essential for chondrocytes proliferation and promoted αSMA expression, a fibrosis marker, and TGFβ signaling towards the p-Smad2/3 (Alk5/PAI-1) pathway. Interestingly, CEMIP was induced by the pSmad1/5 (Alk1) pathway. αSMA and type III collagen expressions were overexpressed in human OA cartilage and along chondrocytes dedifferentiation. Finally, CEMIP was co-expressed in situ with αSMA in all OA cartilage layers. In conclusion, CEMIP was sharply overexpressed in human and mouse OA cartilage and along chondrocytes dedifferentiation. CEMIP-regulated transdifferentiation of chondrocytes into &quot;chondro-myo-fibroblasts&quot; expressing α-SMA and type III collagen, two fibrosis markers. Moreover, these &quot;chondro-myo-fibroblasts&quot; were found in OA cartilage but not in healthy cartilage."	"Immunophenotypic characterization of telocyte-like cells in pterygium. Telocytes (TCs) are peculiar interstitial cells, characterized by their typical elongated and interconnected processes called telopodes. TCs are supposed to contribute to maintain tissue homeostasis but also to be involved in the pathophysiology of many disorders. The aim of the study was to identify TCs in pterygium, a chronic condition of bulbar conjunctiva, and to examine possible differences in TCs in terms of immunophenotype and/or localization between pterygium and normal conjunctiva, to evaluate the possible involvement of TCs in pathogenesis of pterygium. The analysis of the immunophenotype of TCs was performed on a group of 40 formalin-fixed and paraffin-embedded primary pterygium and ten bulbar conjunctiva samples. We examined with immunohistochemistry the expression of 11 commercially available antibodies (PDGFRα, CD34, c-kit, nestin, vimentin, α-SMA, laminin, S100, VEGF, CD133, and CD31) and with double immunofluorescence the concomitant expression of PDGFRα and CD34, and PDGFRα and nestin. In addition, we performed an ultrastructural study with transmission electron microscopy (TEM) on a group of five pterygium and three conjunctiva biopsy specimens. TCs, ultrastructurally identified according to their &quot;moniliform&quot; prolongations, were localized underneath the epithelium along the basement membrane, around the vessels, and near the nerves and scattered in the stroma. In contrast, TCs, as fibroblasts, were almost absent in the fibrotic areas. In pterygium and normal conjunctiva, the TCs shared the same distribution pattern, except a marked TC hyperplasia detected in pterygium. Moreover, in pterygium, the immunohistochemical analysis of TCs showed a strong immunoreactivity to PDGFRα, CD34, and nestin. This result was confirmed with double immunofluorescence labeling, revealing that in pterygium stromal TCs always showed a PDGFRα+/nestin+ and PDGFRα+/CD34+ immunophenotype. Furthermore, moderate staining to vimentin and VEGF was detected, but only a small number of cells were weakly immunoreactive to laminin and S100. Only adventitial TCs of the perivascular sheaths exhibited strong immunoreactivity to α-SMA. Conversely, despite showing mild immunoreactivity to PDGFRα and CD34, the TCs in normal conjunctiva did not show any immunoreactivity to nestin and VEGF. Moreover, in pterygium and conjunctiva, the TCs were always negative for c-kit. Because of the distribution and immunophenotype, TCs in pterygium may represent a subpopulation of relatively immature cells with regenerative potential. In addition, the expression of nestin may suggest possible involvement of TCs as active players in the regeneration of ultraviolet-damaged stroma and vascular remodeling. The fibrotic transformation in the cicatricial area may stand for a breakdown of the regenerative process."	"Suppression of Epithelial-Mesenchymal Transition in Retinal Pigment Epithelial Cells by an MRTF-A Inhibitor. Epithelial-mesenchymal transition (EMT) in retinal pigment epithelial (RPE) cells is related to the pathogenesis of subretinal fibrosis such as that associated with macular degeneration. The role of myocardin-related transcription factor A (MRTF-A) in EMT of RPE cells and subretinal fibrosis was investigated. The migratory activity of human RPE-1 cells in culture was evaluated using a scratch assay. The subcellular distribution of MRTF-A in RPE-1 cells, as well as the extent of subretinal fibrosis in a mouse model, were determined by immunofluorescence analysis. Expression of α-smooth muscle actin (α-SMA), collagen type I (COL1), connective tissue growth factor (CTGF), and paxillin was examined by immunoblot analysis or reverse transcription and quantitative polymerase chain reaction analysis, whereas that of pro-matrix metalloproteinase-2 (MMP-2) was assessed by gelatin zymography. The MRTF-A signaling inhibitor CCG-1423 suppressed RPE-1 cell migration in a concentration-dependent manner. Transforming growth factor-beta (TGF-β2) induced MRTF-A translocation from the cytoplasm to the nucleus of RPE-1 cells, and this effect was attenuated by CCG-1423. TGF-β2 up-regulated the abundance of α-SMA, paxillin, and pro-MMP-2 proteins as well as the amounts of α-SMA, COL1, and CTGF mRNAs in a manner sensitive to inhibition by CCG-1423. Finally, intravitreal injection of CCG-1423 markedly attenuated the development of subretinal fibrosis induced by photocoagulation in vivo. Our results implicate MRTF-A in EMT of RPE cells and in the development of subretinal fibrosis in vivo, suggesting that MRTF-A is a potential therapeutic target for retinal diseases characterized by subretinal fibrosis."	"Myocardial-specific ablation of Jumonji and AT-rich interaction domain-containing 2 (Jarid2) leads to dilated cardiomyopathy in mice. Cardiomyopathy is a common myocardial disease that can lead to sudden death. However, molecular mechanisms underlying cardiomyopathy remain unclear. Jumonji and AT-rich interaction domain-containing 2 (Jarid2) is necessary for embryonic heart development, but functions of Jarid2 after birth remain to be elucidated. Here, we report that myocardial-specific deletion of Jarid2 using αMHC::Cre mice (Jarid2<sup>αMHC</sup>) causes dilated cardiomyopathy (DCM) and premature death 6-9 months after birth. To determine functions of Jarid2 in the adult heart and DCM, we analyzed gene expression in the heart at postnatal day (p)10 (neonatal) and 7 months (DCM). Pathway analyses revealed that dysregulated genes in Jarid2<sup>αMHC</sup> hearts at p10, prior to cardiomyopathy, represented heart development and muscle contraction pathways. At 7 months, down-regulated genes in Jarid2<sup>αMHC</sup> hearts were enriched in metabolic process and ion channel activity pathways and up-regulated genes in extracellular matrix components. In normal hearts, expression levels of contractile genes were increased from p10 to 7 months but were not sufficiently increased in Jarid2<sup>αMHC</sup> hearts. Moreover, Jarid2 was also necessary to repress fetal contractile genes such as TroponinI1, slow skeletal type (Tnni1) and Actin alpha 2, smooth muscle (Acta2) in neonatal stages through ErbB2-receptor tyrosine kinase 4 (ErbB4) signaling. Interestingly, Ankyrin repeat domain 1 (Ankrd1) and Neuregulin 1 (Nrg1), whose expression levels are known to be increased in the failing heart, were already elevated in Jarid2<sup>αMHC</sup> hearts within 1 month of birth. Thus, we demonstrate that ablation of Jarid2 in cardiomyocytes results in DCM and suggest that Jarid2 plays important roles in cardiomyocyte maturation during neonatal stages."	"Renoprotective Effect of the Histone Deacetylase Inhibitor CG200745 in DOCA-Salt Hypertensive Rats. The novel histone deacetylase inhibitor CG200745 was initially developed to treat various hematological and solid cancers. We investigated the molecular mechanisms associated with the renoprotective effects of CG200745 using deoxycorticosterone acetate (DOCA)-salt hypertensive (DSH) rats. DOCA strips (200 mg/kg) were implanted into rats one week after unilateral nephrectomy. Two weeks after DOCA implantation, DSH rats were randomly divided into two groups that received either physiological saline or CG200745 (5 mg/kg/day) for another two weeks. The extent of glomerulosclerosis and tubulointerstitial fibrosis was determined by Masson's trichrome staining. The renal expression of fibrosis and inflammatory markers was detected by semiquantitative immunoblotting, a polymerase chain reaction, and immunohistochemistry. Pathological signs such as glomerulosclerosis, tubulointerstitial fibrosis, increased systolic blood pressure, decreased creatinine clearance, and increased albumin-to-creatinine ratios in DSH rats were alleviated by CG200745 treatment compared to those manifestations in positive control animals. Furthermore, this treatment counteracted the increased expression of αSMA, TGF-β1, and Bax, and the decreased expression of Bcl-2 in the kidneys of DSH rats. It also attenuated the increase in the number of apoptotic cells in DSH rats. Thus, CG200745 can effectively prevent the progression of renal injury in DSH rats by exerting anti-inflammatory, anti-fibrotic, and anti-apoptotic effects."	"Topical administration of a ROCK inhibitor prevents anterior subcapsular cataract induced by UV-B irradiation. The deposition of extracellular matrix (ECM)-which is mainly composed of type I collagen-in anterior subcapsular cataracts (ASCs) during epithelial-to-mesenchymal transition (EMT) of lens epithelial cells (LECs) decreases visual function. Transforming growth factor (TGF)-β is a key factor in the induction of EMT in LECs. Although Rho kinase (ROCK) plays an important role in EMT induced by TGF-β, it is unknown whether ROCK inhibition affects type I collagen expression in TGF-β-stimulated LECs and ASC formation. This was investigated in the present study both in vitro using human lens epithelium (HLE)-B3 cells and in vivo using mice with ultraviolet radiation (UVR)-B-induced cataracts. We found that TGF-β2 increased type I collagen mRNA expression in HLE-B3 cells; this was inhibited in a dose-dependent manner by treatment with the ROCK inhibitor Y-27632. UVR-B exposure caused ASC formation in mice. A histopathological examination revealed that LECs in the anterior subcapsular area were flattened and multi-layered, and had a spindle shape in cross section. Immunohistochemical analysis revealed the presence of α-smooth muscle actin and type I collagen around these flattened LECs; these opacities were reduced by topical instillation of Y-27632. These findings suggest that suppression of TGF-β signaling in LECs by topical application of a ROCK inhibitor can prevent the formation of ASCs."	"Fibroblast activation protein-positive fibroblasts promote tumor progression through secretion of CCL2 and interleukin-6 in esophageal squamous cell carcinoma. Esophageal squamous cell carcinoma (ESCC) is a highly aggressive tumor with frequent recurrence even after curative resection. The tumor microenvironment, which consists of non-cancer cells, such as cancer-associated fibroblasts (CAFs) and tumor-associated macrophages (TAMs), was recently reported to promote several cancers, including ESCC. However, the role of CAF as a coordinator for tumor progression in ESCC remains to be elucidated. In our immunohistochemical investigation of ESCC tissues, we observed that the intensity of expression of two CAF markers-alpha smooth muscle actin (αSMA) and fibroblast activation protein (FAP)-in the tumor stroma was significantly correlated with the depth of tumor invasion, lymph node metastasis, advanced pathological stage, and poor prognosis. We co-cultured human bone marrow-derived mesenchymal stem cells (MSCs) with ESCC cells and confirmed the induction of FAP expression in the co-cultured MSCs. These FAP-positive MSCs (which we defined as CAF-like cells) promoted the cell growth and migration of ESCC cells and peripheral blood mononuclear cell-derived macrophage-like cells. CAF-like cells induced the M2 polarization of macrophage-like cells. A cytokine array and ELISA revealed that CAF-like cells secreted significantly more CCL2, Interleukin-6, and CXCL8 than MSCs. These cytokines promoted the migration of tumor cells and macrophage-like cells. The silencing of FAP in CAF-like cells attenuated cytokine secretion. We compared cell signaling of MSCs, CAF-like cells, and FAP-silenced CAF-like cells; PTEN/Akt and MEK/Erk signaling were upregulated and their downstream targets, NF-κB and β-catenin, were also activated with FAP expression. Silencing of FAP attenuated these effects. Cytokine secretion from CAF-like cells were attenuated by inhibitors against these signaling pathways. These findings indicate that the collaboration of CAFs with tumor cells and macrophages plays a pivotal role in tumor progression, and that FAP expression is responsible for the tumor promotive and immunosuppressive phenotypes of CAFs."	"Biobanking of Dehydrated Human Donor Corneal Stroma to Increase the Supply of Anterior Lamellar Grafts. To investigate the effect of dehydration on human donor corneal stroma for biobanking. Epithelium and endothelium of research-grade human donor corneas (n = 12) were scraped off, leaving a bare stroma with attached sclera. The tissues were placed in a large Petri dish prefilled with silica gel in the periphery and stored at room temperature for 14 days. At the end of preservation, the tissues were rehydrated by being submerged in phosphate-buffered saline for 15 minutes. Transparency (using a custom-built device) and thickness (using optical coherence tomography) measurements were recorded before dehydration, after dehydration, and after rehydration of the tissues. Periodic acid-Schiff and alpha-smooth muscle actin (α-SMA) staining before dehydration and after rehydration were performed to determine the presence of keratocytes and expression of α-SMA. Tensile stress-strain before dehydration and after rehydration was performed to evaluate the biomechanical properties. No difference in corneal transparency before dehydration (69.57 ± 6.41%) and after rehydration (67.37 ± 2.82%), P = 0.36, was observed. The corneas were more compact after dehydration. A significant change in thickness between before dehydration (625.8 ± 75.58 μm) and after rehydration (563.6 ± 15.77 μm) stage, P = 0.03, was noticed. The thickness was reduced to 147.6 ± 3.71 μm when dehydrated. Periodic acid-Schiff staining showed presence of stromal keratocytes and α-SMA protein expressed in control, dehydrated, and rehydrated corneas. There was no significant difference in the stiffness between control (27.86 ± 11.65 MPa) and rehydrated corneas (31.46 ± 11.41 MPa). Human donor corneal stroma can be biobanked for up to 2 weeks in a dehydrated condition without losing their molecular or biomechanical properties after rehydration."	"A Human Skin Model Recapitulates Systemic Sclerosis Dermal Fibrosis and Identifies COL22A1 as a TGFβ Early Response Gene that Mediates Fibroblast to Myofibroblast Transition. : Systemic sclerosis (SSc) is a complex multi-system autoimmune disease characterized by immune dysregulation, vasculopathy, and organ fibrosis. Skin fibrosis causes high morbidity and impaired quality of life in affected individuals. Animal models do not fully recapitulate the human disease. Thus, there is a critical need to identify ex vivo models for the dermal fibrosis characteristic of SSc. We identified genes regulated by the pro-fibrotic factor TGFβ in human skin maintained in organ culture. The molecular signature of human skin overlapped with that which was identified in SSc patient biopsies, suggesting that this model recapitulates the dermal fibrosis characteristic of the human disease. We further characterized the regulation and functional impact of a previously unreported gene in the setting of dermal fibrosis, COL22A1, and show that silencing COL22A1 significantly reduced TGFβ-induced ACTA2 expression. COL22A1 expression was significantly increased in dermal fibroblasts from patients with SSc. In summary, we identified the molecular fingerprint of TGFβ in human skin and demonstrated that COL22A1 is associated with the pathogenesis of fibrosis in SSc as an early response gene that may have important implications for fibroblast activation. Further, this model will provide a critical tool with direct relevance to human disease to facilitate the assessment of potential therapies for fibrosis."	"HDAC9 complex inhibition improves smooth muscle-dependent stenotic vascular disease. Patients with heterozygous missense mutations in the ACTA2 or MYH11 gene are known to exhibit thoracic aortic aneurysm and a risk of early-onset aortic dissection. However, less common phenotypes involving arterial obstruction are also observed, including coronary and cerebrovascular stenotic disease. Herein we implicate the HDAC9 complex in transcriptional silencing of contractile protein-associated genes, known to undergo downregulation in stenotic lesions. Furthermore, neointimal formation was inhibited in HDAC9- or MALAT1-deficient mice with preservation of contractile protein expression. Pharmacologic targeting of the HDAC9 complex through either MALAT1 antisense oligonucleotides or inhibition of the methyltransferase EZH2 (catalytic mediator recruited by the HDAC9 complex) reduced neointimal formation. In conclusion, we report the implication of the HDAC9 complex in stenotic disease and demonstrate that pharmacologic therapy targeting epigenetic complexes can ameliorate arterial obstruction in an experimental system."	"Gastrointestinal: Glomus tumor: A rare submucosal tumor of the stomach. NA"	"Knockdown of ACTA2‑AS1 promotes liver cancer cell proliferation, migration and invasion. Long noncoding RNAs (lncRNAs) are important regulators of various cellular and biological processes. The present study aimed to investigate the functions of a novel lncRNA, ACTA2‑AS1:4, a transcript variant of smooth muscle α‑actin 2‑antisense 1 (ACTA2‑AS1), in regulating liver cancer progression. Expression of lncRNAs in liver cancer tissues and cell lines were analyzed by reverse transcription quantitative polymerase chain reaction (RT‑qPCR). Knockdown of ACTA2‑AS1:4 expression in LM3 liver cancer cells was achieved by transfection with small interfering RNAs (siRNAs) that specifically targeted ACTA2‑AS1:4. The proliferation and cell cycle progression of ACTA2‑AS1:4‑silenced LM3 cells were determined using MTS assay and flow cytometry, respectively. A Transwell system assay was used to evaluate the migration and invasion capacities of LM3 cells transfected with ACTA2‑AS1:4 siRNA. The expression levels of major genes associated with important cellular processes were finally determined by RT‑qPCR and western blot analysis. ACTA2‑AS1:4 expression in liver cancer tissues and multiple cell lines was markedly downregulated by specific siRNAs. This inhibition of ACTA2‑AS1:4 expression significantly promoted the proliferation, cell cycle progression, migration and invasion of LM3 cells. A decrease in ACTA2‑AS1:4 expression also suppressed E‑cadherin expression, increased N‑cadherin expression, decreased caspase 3 expression and increased cyclin D1 and matrix metalloproteinase expression in liver cancer cells. Downregulation of ACTA2‑AS1:4 affects a number of key mechanisms involved in liver cancer progression. These data may be important for the future of liver cancer diagnosis and subsequent treatments."	"Role of AGAP2 in the profibrogenic effects induced by TGFβ in LX-2 hepatic stellate cells. Liver damage induces hepatic stellate cells (HSC) activation, characterised by a fibrogenic, proliferative and migratory phenotype. Activated HSC are mainly regulated by transforming growth factor β 1 (TGFβ1), which increases the production of extracellular matrix proteins (e.g. collagen-I) promoting the progression of hepatic fibrosis. AGAP2 (ArfGAP with GTPase domain, ankyrin repeat and PH domain 2) is a GTPase/GTP-activating protein involved in the actin remodelling system and receptor recycling. In the present work the role of AGAP2 in human HSC in response to TGFβ1 was investigated. LX-2 HSC were transfected with AGAP2 siRNA and treated with TGFβ1. AGAP2 knockdown prevented to some extent the proliferative and migratory TGFβ1-induced capacities of LX-2 cells. An array focused on human fibrosis revealed that AGAP2 knockdown partially prevented TGFβ1-mediated gene expression of the fibrogenic genes ACTA2, COL1A2, EDN1, INHBE, LOX, PDGFB, TGFΒ12, while favored the expression of CXCR4, IL1A, MMP1, MMP3 and MMP9 genes. Furthermore, TGFβ1 induced AGAP2 promoter activation and its protein expression in LX-2. Moreover, AGAP2 protein levels were significantly increased in liver samples from rats with thioacetamide-induced fibrosis. In addition, AGAP2 silencing affected TGFβ1-receptor 2 (TGFR2) trafficking in U2OS cells, blocking its effective recycling to the membrane. AGAP2 silencing in LX-2 cells prevented the TGFβ1-induced increase of collagen-I protein levels, while its overexpression enhanced collagen-I protein expression in the presence or absence of the cytokine. AGAP2 overexpression also increased focal adhesion kinase (FAK) phosphorylated levels in LX-2 cells. FAK and MEK1 inhibitors prevented the increase of collagen-I expression caused by TGFβ1 in LX-2 overexpressing AGAP2. In summary, the present work shows for the first time, that AGAP2 is a potential new target involved in TGFβ1 signalling, contributing to the progression of hepatic fibrosis."	"Hypoxia suppresses myofibroblast differentiation by changing RhoA activity. Fibroblasts show a high range of phenotypic plasticity, including transdifferentiation into myofibroblasts. Myofibroblasts are responsible for generation of the contraction forces that are important for wound healing and scar formation. Overactive myofibroblasts, by contrast, are involved in abnormal scarring. Cell stretching and extracellular signals such as transforming growth factor β can induce the myofibroblastic program, whereas microenvironmental conditions such as reduced tissue oxygenation have an inhibitory effect. We investigated the effects of hypoxia on myofibroblastic properties and linked this to RhoA activity. Hypoxia reversed the myofibroblastic phenotype of primary fibroblasts. This was accompanied by decreased αSMA (ACTA2) expression, alterations in cell contractility, actin reorganization and RhoA activity. We identified a hypoxia-inducible induction of ARHGAP29, which is critically involved in myocardin-related transcription factor-A (MRTF-A) signaling, the differentiation state of myofibroblasts and modulates RhoA activity. This novel link between hypoxia and MRTF-A signaling is likely to be important for ischemia-induced tissue remodeling and the fibrotic response.This article has an associated First Person interview with the first author of the paper."	"MicroRNA-27a regulates angiotensin II-induced vascular smooth muscle cell proliferation and migration by targeting α-smooth muscle-actin in vitro. Angiotensin II (Ang II) modulates VSMCs phenotypic switch that play a critical role in the cardiovascular diseases. MicroRNA-27a (miR-27a) has been proven to be involved in regulating vascular remodeling; however, the functional role of miR-27a in VSMCs in response to Ang II stimulation need to be elucidated. Cell proliferation and migration were measured by Cell counting kit-8 (CCK-8), BrdU incorporation and scratch wound assay in VSMCs transfected with miR-27a or its inhibitor. The target of miR-27a was confirmed using bioinformatics analysis and luciferase reporter assay. Ang II treatment time-dependently increased proliferation and migration of VSMCs accompanied with downregulation of α-smooth muscle-actin (α-SMA) and upregulation of miR-27a expression. Moreover, knockdown of miR-27a in VSMCs significantly attenuated Ang II-induced cell proliferation and migration, whereas this effect was aggravated by overexpression of miR-27a. A potential mechanistic analysis revealed that miR-27a directly targeted α-SMA, which mediated miR-27a-induced cell proliferation and migration. In conclusion, these results indicate that miR-27a acts as a novel regulator of Ang II-induced proliferation and migration by directly targeting α-SMA expression in VSMCs in vitro, and may be a potential therapeutic target for treating vascular diseases."	"Identification of Driver Genes and Key Pathways of Ependymoma. Objective: To identify ependymoma (EPN) driver genes and key pathways, and also to illuminate the connection between prognosis of EPN patients and expression levels of driver genes. Methods: The gene expression profiles of GSE50161, GSE66354, GSE74195, and GSE86574 were analyzed to figure out the differentially expressed genes (DEGs) between tissue of EPN and normal brain samples. To harvest the enrichment functions, pathways and hub genes, the Gene ontology (GO), Kyoto Encyclopedia of Genes and Genomes (KEGG) analysis, and protein-protein interaction (PPI) network analysis were made. Subsquently, survival analysis was performed in 325 patients to illuminate the connection between prognosis of EPN and expression levels of hub genes. Results: 20 functions and 10 pathways which were up- or downregulated between the EPN and normal samples were revealed applying GO and KEGG analysis. Mutual hub genes were TP53, TOP2A, CDK1, PCNA, and ACTA2. The pathways of Hedgehog and notch signaling, mismatch repair (MMR), and retrograde endocannabinoid were significantly abnormally regulated in EPN tissue. Survival analysis revealed favorable progression-free (PFS) and overall (OS) survival in EPN patients with low expression of TOP2A, CDK1, PCNA, and ACTA2 (P 0.05). Conclusion: Patients with lower expression of TOP2A, CDK1, PCNA, and ACTA2 had a longer OS and PFS. The differential expressed genes identified and the key pathways selected in this research provided unprecedented and promising targets for diagnosis and treatment of EPN patients."	"Critical Role of mTORC2-Akt Signaling in TGF-β1-Induced Myofibroblast Differentiation of Human Pterygium Fibroblasts. Profibrotic activation is essential for pterygium development. In this study, we investigated the role of the mechanistic target of rapamycin (mTOR) in regulating TGF-β1-induced myofibroblastic responses in human pterygium fibroblasts (HPFs) and elucidated the relative contributions of mTOR signaling components. HPFs were pretreated with the mTOR inhibitors rapamycin and Torin2, and TGF-β1-induced expression of profibrotic markers, including α-smooth muscle actin (α-SMA) and fibronectin, was evaluated. RNA interference-based approaches targeting raptor and rictor, regulatory subunits of mTOR complex 1 (mTORC1) and 2 (mTORC2), respectively, were used to determine the impact of each mTOR complex on HPFs. The contractile phenotype of HPFs was assessed by a collagen gel contraction assay. The mTOR active-site inhibitor Torin2, which suppresses both mTORC1 and mTORC2 activity in HPFs, inhibited TGF-β1-induced expression of α-SMA and fibronectin. The allosteric inhibitor rapamycin only partially suppressed mTORC1 activity and exhibited a minimal effect on the induction of profibrotic markers. The induction of α-SMA and fibronectin in HPFs was abrogated by RNA interference-mediated knockdown of rictor but was only moderately affected by raptor knockdown. Akt inhibition mimicked the effect of Torin2 and rictor knockdown on myofibroblast differentiation of HPFs. mTOR inhibition potently reduced the contractile ability of HPFs in collagen gel contraction assays. This study found that mTOR signaling promoted profibrotic activation of HPFs and confirmed the importance of the mTORC2-Akt axis in TGF-β1-induced myofibroblast differentiation. Therefore, our study may open up new avenues for the development of novel therapeutic strategies involving targeting of mTOR signaling to treat pterygium."	"Nintedanib inhibits TGF-β-induced myofibroblast transdifferentiation in human Tenon's fibroblasts. This study aimed to investigate the effect of nintedanib on the conversion of human Tenon's fibroblasts (HTFs) into myofibroblasts and reveal the molecular mechanisms involved. Primary cultured HTFs were incubated with transforming growth factor β1 (TGF-β1) alone or combined with nintedanib, and cell proliferation and migration were measured by cell counting kit-8 (CCK8) and the scratch wound assay, respectively. HTF contractility was evaluated with a 3D collagen contraction assay. The mRNA and protein levels of α smooth muscle actin (α-SMA) and Snail and the phosphorylation levels of Smad2/3, p38 mitogen-activated protein kinase (p38MAPK), and extracellular signal-regulated kinase ½ (ERK1/2) were determined by quantitative reverse transcription polymerase chain reaction (RT-PCR), western blot, and immunofluorescence staining. Nintedanib inhibited the proliferation and migration of HTFs in a dose-dependent manner. Furthermore, nintedanib prevented HTF myofibroblast differentiation via downregulation of mRNA and protein expression of α-SMA and Snail. A three-dimensional (3D) collagen gel contraction assay demonstrated that nintedanib effectively inhibits myofibroblast contraction induced by TGF-β1. Mechanistically, we revealed that nintedanib reduces the TGF-β1-induced phosphorylation of Smad2/3, p38MAPK, and ERK1/2, suggesting that nintedanib acts through both classic and nonclassic signaling pathways of TGF-β1 to prevent HTF activation. Our study provides new evidence that nintedanib has potent antifibrotic effects in HTFs and suggests that it may be used as a potential therapeutic agent for subconjunctival fibrosis."	"Fibroblast polarization over the myocardial infarction time continuum shifts roles from inflammation to angiogenesis. Cardiac fibroblasts are the major producers of extracellular matrix (ECM) to form infarct scar. We hypothesized that fibroblasts undergo a spectrum of phenotype states over the course of myocardial infarction (MI) from early onset to scar formation. Fibroblasts were isolated from the infarct region of C57BL/6J male mice (3-6 months old, n = 60) at days 0 (no MI control) and 1, 3, or 7 after MI. Whole transcriptome analysis was performed by RNA-sequencing. Of the genes sequenced, 3371 were differentially expressed after MI. Enrichment analysis revealed that MI day 1 fibroblasts displayed pro-inflammatory, leukocyte-recruiting, pro-survival, and anti-migratory phenotype through Tnfrsf9 and CD137 signaling. MI day 3 fibroblasts had a proliferative, pro-fibrotic, and pro-angiogenic profile with elevated Il4ra signaling. MI day 7 fibroblasts showed an anti-angiogenic homeostatic-like myofibroblast profile and with a step-wise increase in Acta2 expression. MI day 7 fibroblasts relied on Pik3r3 signaling to mediate Tgfb1 effects and Fgfr2 to regulate PI3K signaling. In vitro, the day 3 MI fibroblast secretome stimulated angiogenesis, while day 7 MI fibroblast secretome repressed angiogenesis through Thbs1 signaling. Our results reveal novel mechanisms for fibroblasts in expressing pro-inflammatory molecules and regulating angiogenesis following MI."	"An In Vitro Human Lens Capsular Bag Model Adopting a Graded Culture Regime to Assess Putative Impact of IOLs on PCO Formation. To develop a culture regime for the in vitro human lens capsular bag model that better reflects clinical events following cataract surgery and to use this refined model to evaluate the putative impact of IOLs on PCO formation. Capsulorhexis and lens extraction were performed on human donor eyes to generate capsular bags attached to the ciliary body by the zonules. Preparations were secured by pinning the ciliary body to a silicone ring and maintaining in 6 mL serum-free EMEM for 28 days or in a graded culture system (days 1-3, 5% human serum and 10 ng/mL TGFβ2; days 4-7, 2% human serum and 1 ng/mL TGFβ2; days 8-14, 1% human serum and 0.1 ng/mL TGFβ2; days 15-28, serum-free EMEM), which better mimics clinical changes. Preparations were monitored with phase-contrast and modified-dark-field microscopy. Cell coverage and light scatter were quantified using image analysis software. The transdifferentiation marker, α-SMA and matrix component, fibronectin were assessed by immunocytochemistry. To assess IOLs in the model, Alcon Acrysof or Hoya Vivinex IOLs were implanted in match-paired capsular bags. Match-paired experiments showed that graded culture enhanced growth, facilitated matrix contraction, increased transdifferentiation, and promoted matrix deposition relative to serum-free culture. The graded culture protocol was applied to match-paired bags implanted with a Hoya Vivinex or an Alcon Acrysof IOL. The Vivinex demonstrated a lag in growth across the posterior capsule. However, by day 28, coverage was similar, but light-scatter was greater with Acrysof implanted. Cell growth on the Acrysof IOL anterior surface was significantly greater than Vivinex. The graded culture human capsular bag model serves as an excellent system to evaluate and develop intraocular lenses. The Hoya Vivinex IOL showed an overall better level of performance against postsurgical wound healing and PCO than the Alcon Acrysof using this model."	"Molecular mechanisms in the pathogenesis of N-nitrosodimethylamine induced hepatic fibrosis. Hepatic fibrosis is marked by excessive synthesis and deposition of connective tissue proteins, especially interstitial collagens in the extracellular matrix of the liver. It is a result of an abnormal wound healing in response to chronic liver injury from various causes such as ethanol, viruses, toxins, drugs, or cholestasis. The chronic stimuli involved in the initiation of fibrosis leads to oxidative stress and generation of reactive oxygen species that serve as mediators of molecular events involved in the pathogenesis of hepatic fibrosis. These processes lead to cellular injury and initiate inflammatory responses releasing a variety of cytokines and growth factors that trigger activation and transformation of resting hepatic stellate cells into myofibroblast like cells, which in turn start excessive synthesis of connective tissue proteins, especially collagens. Uncontrolled and extensive fibrosis results in distortion of lobular architecture of the liver leading to nodular formation and cirrhosis. The perpetual injury and regeneration process could also results in genomic aberrations and mutations that lead to the development of hepatocellular carcinoma. This review covers most aspects of the molecular mechanisms involved in the pathogenesis of hepatic fibrosis with special emphasize on N-Nitrosodimethylamine (NDMA; Dimethylnitorsmaine, DMN) as the inducing agent."	"Antifibrotic effect of mitomycin-C on human vocal cord fibroblasts. Acquired laryngotracheal stenosis is a potentially life-threatening situation and a very difficult and challenging problem in laryngology. Therefore, new trends and innovative approaches based on antifibrotic drugs and minimally invasive regimens are being developed to attenuate laryngotracheal fibrosis and scarring. The purpose of this study was to examine the efficacy of mitomycin-C (MMC) to reverse the transforming growth factor (TGF)-β-induced differentiation of MRC-5 fibroblast and human primary vocal cord fibroblasts to reveal the possible applicability of MMC to laryngotracheal fibrotic conditions. Human primary fibroblast cells were isolated from vocal cord specimens of patients undergoing total laryngectomy. The established primary vocal cord fibroblast cell cultures as well as the MRC-5 human fibroblast cells were treated with 5 ng/mL TGF-β alone and then with 0.5 µg/mL MMC for 24 hours. Differentiation of fibroblasts was characterized by α-smooth muscle actin (α-SMA) immunhistochemistry, Western blot analysis, and real-time polymerase chain reaction. Cell motility was assessed by wound-healing assay. Elevated α-SMA mRNA and protein expression as well as increased cell motility were observed upon TGF-β exposures. However, after MMC treatments the TGF-β-induced fibroblasts exhibited a significant decrease in α-SMA expression and wound-healing activity. Therefore, TGF-β-stimulated fibroblast-myofibroblast transformation was reversed at least in part by MMC treatment. Histopathological examinations of tissue specimens of a laryngotracheal stenosis patient supported these findings. Antifibrotic effects of MMC were demonstrated on the human MRC-5 cell line and on primary vocal cord fibroblast cultures. These results verify that MMC can be used with success to reverse upper airway stenosis by reverting the myofibroblast phenotype. NA Laryngoscope, 129:E255-E262, 2019."	"Expression pattern of genes associated with tumor microenvironment in prostate cancer. To assess relative expression (RE) levels of CAF-, TAM-specific, immune defense-associated genes in prostate tumors and to show correlation of RE with clinical, pathological and molecular characteristics, with the aim to define clinically significant specific alterations in a gene expression pattern. RE of 23 genes was analyzed by a quantitative polymerase chain reaction in 37 freshly frozen samples of prostate cancer tissues of a different Gleason score (GS) and at various tumor stages, compared with RE in 37 paired conventionally normal prostate tissue (CNT) samples and 20 samples of prostate adenomas. Differences in RE were shown for 11 genes out of 23 studied, when tumor samples were compared with corresponding CNTs. 7 genes, namely ACTA2, CXCL14, CTGF, THY1, FAP, CD163, CCL17 were upregulated in tumors. 4 genes, namely CCR4, NOS2A, MSMB, IL1R1 were downregulated in tumors. 14 genes demonstrated different RE in TNA at different stages: CXCL12, CXCL14, CTGF, FAP, HIF1A, THY1, CCL17, CCL22, CCR4, CD68, CD163, NOS2A, CTLA4, IL1R1. RE changes of 9 genes - CXCL12, CXCL14, HIF1A, CCR4, CCL17, NOS2A, CTLA4, IL1R1, IL2RA - were found in tumors with different GS. Moreover, 9 genes showed differences in RE in TNA, dependently on the presence or absence of the TMPRSS2/ERG fusion and 7 genes showed differences in RE of groups with differential PTEN expression. Significant correlations were calculated between RE of 9 genes in adenocarcinomas and the stage, and GS; also, between RE of 2 genes and the fusion presence; and between RE of 4 genes and PTEN expression. Several gene expression patterns were identified that correlated with the GS, stage and molecular characteristics of tumors, i.e. presence of the TMPRSS2/ERG fusion and alterations in PTEN expression. These expression patterns can be used for molecular profiling of prostate tumors, with the aim to develop personalized medicine approaches. However, the proposed profiling requires a more detailed analysis and a larger cohort of patients with prostate tumor."	"Desmin deficiency is not sufficient to prevent corneal fibrosis. The type III intermediate filament (IF) proteins vimentin and desmin are sequentially overexpressed in stromal myofibroblasts over the period when fibrosis sets in after corneal injury. Prior findings have revealed vimentin-deficient mice are significantly protected from corneal fibrosis after alkali injury, which has implicated this IF protein as an important regulator of corneal fibrosis. It has remained as yet unproven whether desmin contributes in any significant manner to corneal fibrosis. Here we have employed desmin-deficient (Des KO) mice in the corneal alkali injury model and show that injured Des KO mice develop fibrosis and show similar levels of corneal opacity at 14 days post-injury as wild type (WT) mice and retain this phenotype even at 30d post injury. Des KO corneas from injured mice show upregulation of vimentin and alpha-smooth muscle actin expression to equivalent levels as WT corneas, illuminating that desmin deficiency does not interfere with myofibrobast differentiation. Employing the small molecule withaferin A (WFA), an inhibitor of vimentin, we show that WFA treatment causes the decrease in steady state levels of vimentin and serine 38 phosphorylated vimentin, the latter a biomarker associated with corneal fibrosis, and improved corneal clarity through blockade of myofibroblast differentiation. To investigate further the mechanism of fibrosis in desmin deficiency, we examined keratin 8 expression in the epithelium, and found reduced levels of this cytokeratin in injured Des KO corneas compared to WT corneas. This finding also corroborates the decrease of cell proliferation in injured Des KO corneas compared to that in WT corneas. The fibrotic phenotype of Des KO corneas also features abundant vascularization, further exemplifying the magnitude of corneal pathology. Together, these findings illuminate that desmin does not contribute significantly to corneal fibrosis in this injury model."	"Quercetin inhibits transforming growth factor β1-induced epithelial-mesenchymal transition in human retinal pigment epithelial cells via the Smad pathway. The purpose of this study was to evaluate the effect and mechanism of quercetin on TGF-β1-induced retinal pigment epithelial (RPE) cell proliferation, migration, and extracellular matrix secretion. Cell counting kit-8, transwell, wound-healing assays, and ELISA were used to assess viability, migration, and collagen I secretion, respectively. Western blot analysis and qPCR were employed to detect mRNA and protein expression levels, respectively. Quercetin suppressed TGF-β1-induced cell proliferation, migration, and collagen I secretion. The results also showed that mRNA and protein expression of epithelial-mesenchymal transition (EMT)-related markers such as alpha-smooth muscle actin and N-cadherin was downregulated by quercetin in TGF-β1-treated RPE cells; conversely, quercetin upregulated the expression of E-cadherin and tight junction protein 1 (ZO-1). In addition, quercetin could inhibit mRNA and protein expression of matrix metalloproteinases. Quercetin may reverse the progression of EMT via the Smad2/3 pathway. Our results demonstrate the protective effects of quercetin on RPE cell EMT, revealing a potential therapeutic agent for proliferative vitreoretinopathy treatment."	"Ferulic acid attenuates liver fibrosis and hepatic stellate cell activation via inhibition of TGF-β/Smad signaling pathway. Liver fibrosis is a worldwide health issue. Development of effective new drugs for treatment of this disease is of great importance. This study investigated the therapeutic effects of ferulic acid on liver fibrosis in vitro and in vivo. Human hepatic stellate cell line (HSC) LX-2 was used for in vitro assays. Transforming growth factor β1 (TGF-β1) was used to induce hepatic fibrosis in LX-2 cells. Western blot was used to detect protein levels of collagen I, fibronectin, α-smooth muscle actin (SMA), p-Smad2, p-Smad3, p-p38, and p-JNK. Gene expression was measured by RT-qPCR. Fluorescence staining was used to determine localization of Smad4. CCl4-induced hepatic fibrosis in SD rats was used as an in vivo model. Histological features were detected by hematoxylin and eosin staining. Levels of alanine aminotransferase (ALT), aspartate aminotransferase (AST), hexadecenoic acid (HA), and hydroxyproline (Hyp) were measured by ELISA. TGF-β1 treatment significantly increased levels of collagen I, fibronectin, α-SMA, p-Smad2, p-Smad3, and Smad4 in LX-2 cells. Ferulic acid improved TGF-β1-induced hepatic fibrosis via regulation of the TGF-β1/Smad pathway. Consistent with in vitro data, CCl4 caused severe hepatic fibrosis in SD rats, as determined by ALT, AST, HA, and Hyp upregulation. Protein levels of p-Smad2 and p-Smad3 in liver tissues were significantly increased following treatment with CCl4. All CCL4-induced changes were markedly attenuated by ferulic acid treatment. Ferulic acid potently improved hepatic fibrosis via inhibition of the TGF-β1/Smad pathway in vitro and in vivo. These findings provided evidence for potential use of ferulic acid to treat or prevent liver fibrosis."	"YAP and TAZ are distinct effectors of corneal myofibroblast transformation. Transforming growth factor β1 (TGFβ1) is elevated in wounds after injury and promotes the transdifferentiation of quiescent cells in the stroma (keratocytes, to activated fibroblasts and subsequently myofibroblasts-KFM transformation). Coactivators of transcription, YAP (Yes-associated protein) and TAZ (Transcriptional coactivator with PDZ-binding motif), are mechanotransducers that intersect with the TGFβ pathway via interactions with Smad proteins. Here, we examined the distinct role of YAP and TAZ on TGFβ1 induced myofibroblast transformation of primary human corneal fibroblasts (HCFs). A knockdown approach was used to silence YAP and TAZ individually in HCFs. Forty-eight hours post siRNA transfection, cells were cultured in the presence or absence of 2 ng/ml TGFβ1 for 24h. The cells were subjected to nuclear and cytoplasmic fractionation. The expression of α-smooth muscle actin (αSMA), Smad 2, 3 and 4, CTGF and phospho-Smad2, 3, and 4 were assessed by qPCR and Western blotting. TGFβ1 stimulation resulted in the decreased phosphorylation of YAP in the cytosol, and increased levels of phosphorylated TAZ and Smad2/3/4 in the nucleus. Knockdown of TAZ resulted in elevated YAP expression but not vice versa. Additionally, knockdown of TAZ but not YAP resulted in upregulation of αSMA expression in the presence and absence of TGFβ1. In the presence of TGFβ1 YAP knockdown increased Smad2/3/4 expression and Smad4 phosphorylation, while TAZ knockdown had no effect on Smad2/3/4 expression and phosphorylation. YAP knockdown inhibited CTGF expression while TAZ knockdown resulted in its increased expression. Finally, simultaneous knockdown of YAP and TAZ resulted in cell death. Our findings suggest that YAP and TAZ function as distinct modulators of TGFβ1 induced myofibroblast transformation and have different roles in signalling. Specifically, TAZ limits YAP's ability to mediate KFM transformation via Smad proteins. The data also suggest that while having distinct effects, YAP and TAZ have redundant or combinatorial functions critical to cell survival. These results suggest that a loss of TAZ may help drive corneal haze and fibrosis and that the balance between YAP/TAZ is essential in controlling myofibroblast differentiation."	"Nadir CD4 Is Negatively Associated With Antinuclear Antibody Detection in HCV/HIV-Coinfected Patients. Hepatitis C virus (HCV) and HIV infections are associated with higher risk of autoimmune diseases and T-cell dysfunction. We evaluate prevalence and factors associated with the presence of autoimmune antinuclear (ANA), anti-smooth muscle actin (aSMA), and anti-liver kidney microsome (aLKM1) antibodies (Ab) in HCV/HIV-coinfected patients during the post-combined antiretroviral therapy era. A cross-sectional observational study nested in the ANRS CO13 HEPAVIH cohort (NCT number: NCT03324633). We selected patients with both ANA testing and T-cell immunophenotyping determination during the cohort follow-up and collected aLKM1 and aSMA data when available. Logistic regression models were built to determine factors associated with the presence of auto-Ab. Two hundred twenty-three HCV/HIV-coinfected patients fulfilled selection criteria. Prevalence of ANA and aSMA was 43.5% and 23.2%, respectively, and both were detected in 13.3% of patients. Isolated aSMA were detected in 9.9% and aLKM1 in 2 patients. In multivariable analysis, only a low nadir CD4 T-cell count was significantly associated with ANA detection. ANA and aSMA detection remain frequent in HCV/HIV-coinfected patients during the post-combined antiretroviral therapy era, despite fair immune restoration. These results advocate for a close monitoring of ANA before immune checkpoint inhibitor therapy in these patients with greater caution for those with a low nadir CD4 T-cell count."	"Secretory immunoglobulin A induces human lung fibroblasts to produce inflammatory cytokines and undergo activation. Immunoglobulin (Ig)A is the most abundant immunoglobulin in humans, and in the airway mucosa secretory IgA (sIgA) plays a pivotal role in first-line defense against invading pathogens and antigens. IgA has been reported to also have pathogenic effects, including possible worsening of the prognosis of idiopathic pulmonary fibrosis (IPF). However, the precise effects of IgA on lung fibroblasts remain unclear, and we aimed to elucidate how IgA activates human lung fibroblasts. We found that sIgA, but not monomeric IgA (mIgA), induced interleukin (IL)-6, IL-8, monocyte chemoattractant protein (MCP)-1 and granulocyte-macrophage colony-stimulating factor (GM-CSF) production by normal human lung fibroblasts (NHLFs) at both the protein and mRNA levels. sIgA also promoted proliferation of NHLFs and collagen gel contraction comparable to with transforming growth factor (TGF)-β, which is involved in fibrogenesis in IPF. Also, Western blot analysis and real-time quantitative polymerase chain reaction (PCR) revealed that sIgA enhanced production of α-smooth muscle actin (α-SMA) and collagen type I (Col I) by NHLFs. Flow cytometry showed that NHLFs bound sIgA, and among the known IgA receptors, NHLFs significantly expressed CD71 (transferrin receptor). Transfection of siRNA targeting CD71 partially but significantly suppressed cytokine production by NHLFs co-cultured with sIgA. Our findings suggest that sIgA may promote human lung inflammation and fibrosis by enhancing production of inflammatory or fibrogenic cytokines as well as extracellular matrix, inducing fibroblast differentiation into myofibroblasts and promoting human lung fibroblast proliferation. sIgA's enhancement of cytokine production may be due partially to its binding to CD71 or the secretory component."	"Stevioside inhibits experimental fibrosis by down-regulating profibrotic Smad pathways and blocking hepatic stellate cell activation. Liver cirrhosis is associated with increased morbidity and mortality with important health and social consequences; however, an effective treatment has not been found yet. Previous reports have shown some beneficial effects of stevioside (SVT) in different diseases, but the ability of SVT to inhibit liver cirrhosis has not been reported. Therefore, we studied the potential of this diterpenoid to inhibit liver cirrhosis induced by thioacetamide, a model that shares many similarities with the human disease, and investigated the possible underlying molecular mechanism using in vivo and in vitro approaches. Cirrhosis was induced in male Wistar rats by chronic thioacetamide administration (200 mg/kg) intraperitoneally three times per week. Rats received saline or SVT (20 mg/kg) two times daily intraperitoneally. In addition, co-cultures were incubated with either lipopolysaccharide or ethanol. Liver fibrosis, hepatic stellate cells activation, metalloproteinases activity, canonical and non-canonical Smads pathway and expression of several profibrogenic genes were evaluated. Thioacetamide activated hepatic stellate cells and distorted the liver parenchyma with the presence of abundant thick bands of collagen. In addition, thioacetamide up-regulated the protein expression of α-smooth muscle actin, transforming growth factor-β1, metalloproteinases-9,-2 and -13 and overstimulate the canonical and non-canonical Smad pathways. SVT administration inhibited all of these changes. In vitro, SVT inhibited the up-regulation of several genes implicated in cirrhosis when cells were exposed to lipopolysaccharides or ethanol. We conclude that SVT inhibited liver damage by blocking hepatic stellate cells activation, down-regulating canonical and non-canonical profibrotic Smad pathways."	"Use of a pre-vascularised oral mucosal cell sheet for promoting cutaneous burn wound healing. Pre-vascularised cell sheets have been used to promote early angiogenesis and graft survival. However, the use of pre-vascularised mucosal cell sheets for burn wounds has been rarely evaluated. Therefore, we examined the applicability of an oral pre-vascularised mucosal cell sheet that we had previously developed for the treatment of cutaneous burn wounds. Methods: Mucosal keratinocytes, fibroblasts, and endothelial progenitor cells were isolated from the oral mucosa and peripheral blood and were expanded in vitro. Mucosal cell sheets were generated by seeding cultured keratinocytes onto a mixture of fibroblasts, endothelial cells, and fibrin. Third-degree burn wounds were created on the backs of rats and were covered with the cell sheets, skin grafts, or silastic sheets as a control. Gross and microscopic findings and gene expression profiles of wounds were compared among the groups. Results: CD31-positive microvessels were observed in the fibrin-matrix layer of the cell sheet. In the cutaneous burn wound model, the cell sheets promoted wound healing, with accelerated wound closure and less scarring than with silastic sheets and skin grafts. The cell sheets had more microvessels and proliferating cells and less neutrophil infiltration and fibrotic features than the controls or skin grafts. The cell sheet induced higher mRNA expression of KRT14, VEGFA, IL10, and AQP3 and lower mRNA expression of TGFB1, IL6, ICAM1, ACTA2, and FN1 than did the controls or skin grafts. Conclusions: The pre-vascularised mucosal cell sheet promotes cutaneous burn wound healing."	"Matrine Suppresses Pancreatic Fibrosis by Regulating TGF-β/Smad Signaling in Rats. This study aimed to elucidate the molecular mechanisms of the anti-pancreatic fibrosis effects of matrine in rats. Trinitrobenzene sulfonic acid was administrated to rats to establish a pancreatic fibrosis model. Rats were divided into four groups: Control, Sham, Model, and Matrine (n=8). Hematoxylin-eosin staining, Masson staining, and Azan staining were performed to evaluate pancreatic fibrosis. Expression of transforming growth factor-β1 (TGF-β1), α-smooth muscle actin (α-SMA), and collagen I in pancreatic tissues was evaluated by immunohistochemical staining. mRNA and protein levels of TGF-β receptor 1 (TβR1), TβR2, and Smad2 in pancreatic tissues were determined by RT-PCR and Western blot, respectively. In the model group, hyperplasia of glandules around the glandular ducts, mitochondrial swelling of acinous cells, and severe fibrosis were found. Interestingly, in the Matrine group, mitochondrial swelling was only found in a small number of acinous cells, and the fundamental structures of pancreatic tissues were intact. Moreover, pancreatic fibrosis was markedly alleviated. Comparing to the Sham group, expression of α-SMA, TGF-β1, and collagen I was sharply elevated in the Model group (p&lt;0.05); however, their expressions were much lower in the Matrine group, compared to the Model group (p&lt;0.05). Compared with the Sham group, mRNA and protein levels of Smad2, TβR1, and TβR2 in the Model group were notably raised (p&lt;0.05). However, their high expression was significantly downregulated in the Matrine group (p&lt;0.05). Matrine suppressed pancreatic fibrosis by regulating TGF-β/Smad signaling in rats."	"Megakaryocytic leukemia 1 (MKL1) mediates high glucose induced epithelial-mesenchymal transition by activating LOX transcription. Diabetic retinopathy (DR) is one of the most devastating complications of diabetes mellitus. When exposed to high glucose (HG), retinal epithelial cells undergo profound alterations both morphologically and functionally in a well-conserved process known as epithelial-to-mesenchymal transition (EMT). The mechanism governing HG-induced EMT in retinal epithelial cells is not completely understood. Here we report that treatment with 25 mM glucose led to EMT in retinal pigmented epithelial cells (RPE) characterized by a simultaneous down-regulation of E-Cadherin (encoded by CDH1) and up-regulation of alpha smooth muscle actin (encoded by ACTA2). HG-induced EMT in RPEs was accompanied by augmented expression and enhanced nuclear enrichment of MKL1, a transcriptional modulator. In contrast, MKL1 knockdown by siRNA or inhibition by CCG-1423 abrogated HG-induced EMT in RPEs. Of interest, MKL1 mediated the transcriptional activation of LOX, a mesenchymal marker, in RPEs in response to HG stimulation. Mechanistically, MKL1 interacted with and was recruited by AP-1 to the proximal LOX promoter to promote LOX trans-activation likely through altering the chromatin structure. Finally, LOX depletion by siRNA or inhibition by aminopropionitrile in RPEs abolished HG-induced EMT. In conclusion, our data support a role for MKL1 in mediating HG-induced EMT in retinal epithelial cells via epigenetic activation of LOX transcription."	"Activation of Hes1 and Msx1 in Transgenic Mouse Embryonic Stem Cells Increases Differentiation into Neural Crest Derivatives. The neural crest (NC) comprises a multipotent cell population that produces peripheral neurons, cartilage, and smooth muscle cells, among other phenotypes. The participation of Hes1 and Msx1 when expressed in mouse embryonic stem cells (mESCs) undergoing NC differentiation is unexplored. In this work, we generated stable mESCs transfected with constructs encoding chimeric proteins in which the ligand binding domain of glucocorticoid receptor (GR), which is translocated to the nucleus by dexamethasone addition, is fused to either Hes1 (HGR) or Msx1 (MGR), as well as double-transgenic cells (HGR+MGR). These lines continued to express pluripotency markers. Upon NC differentiation, all lines exhibited significantly decreased Sox2 expression and upregulated Sox9, Snai1, and Msx1 expression, indicating NC commitment. Dexamethasone was added to induce nuclear translocation of the chimeric proteins. We found that Collagen IIa transcripts were increased in MGR cells, whereas coactivation of HGR+MGR caused a significant increase in Smooth muscle actin (α-Sma) transcripts. Immunostaining showed that activation in HGR+MGR cells induced higher proportions of β-TUBULIN III⁺, α-SMA⁺ and COL2A1⁺ cells. These findings indicate that nuclear translocation of MSX-1, alone or in combination with HES-1, produce chondrocyte-like cells, and simultaneous activation of HES-1 and MSX-1 increases the generation of smooth muscle and neuronal cells."	"Methyl ferulic acid attenuates liver fibrosis and hepatic stellate cell activation through the TGF-β1/Smad and NOX4/ROS pathways. Liver fibrosis is a pathological wound-healing response caused by chronic liver damage due to a virus, autoimmune disorder, or drugs. Hepatic stellate cells (HSCs) play an essential role in the pathogenesis of liver fibrosis. Methyl ferulic acid (MFA), a biologically active monomer, has a protective effect on liver injury. However, the effects and roles of MFA in liver fibrosis remain unknown. The purpose of the current study was to investigate the effect of MFA on hepatic fibrosis and the underlying mechanisms. Human hepatic stellate LX-2 cells were exposed to 5 μg/L TGF-β1 for 48 h to stimulate liver fibrosis in vitro. Using MTT, RT-PCR and Western blot analysis, we revealed that MFA significantly inhibited the proliferation of LX-2 cells as well as decreased the expressions of α-SMA and type I collagen in LX-2 cells. SD rats were fed with ethanol, and this combined with the intraperitoneal injection of CCl4 induced liver fibrosis in vivo. We found that the administration of MFA markedly decreased the levels of hyaluronic acid (HA), procollagen type III (PC-III), type IV collagen (CIV) and laminin (LN) in the serum, inhibited the expression of α-smooth muscle actin (α-SMA) as well as type I and type III collagen, and up-regulated the ratio of MMP-2/TIMP-1 in rats. The antifibrotic effects of MFA were also evaluated by H&amp;E staining and Masson's trichrome staining. In addition, further studies suggested that this protection by MFA from liver fibrosis was possibly related to the inhibition of TGF-β1/Smad and NOX4/ROS signalling. In conclusion, our results demonstrate that MFA attenuated liver fibrosis and hepatic stellate cell activation by inhibiting the TGF-β1/Smad and NOX4/ROS signalling pathways."	"Integrin ανβ5 in vitro inhibition limits pro-fibrotic response in cardiac fibroblasts of spontaneously hypertensive rats. To date the TGF-β1 activation mediated by integrin ανβ5 during fibrosis is well-known. This process has been shown also in the heart, where cardiac fibroblasts (CF) differentiate into α-smooth muscle actin (α-SMA)-positive myofibroblasts (MyoFB). Here, we studied the effects on CF, isolated by spontaneously hypertensive rats (SHR), of integrin ανβ5 inhibition in MyoFB differentiation. Staining and immunohistochemistry were performed on rat cardiac tissue. CF were isolated by enzymatic digestion from SHR (SHR-CF) and normotensive WKY (WKY-CF) rat hearts and then treated for in vitro evaluation. SHR heart tissues revealed a higher TGF-β1 expression vs. WKY samples. SHR-CF showed an enhanced SMAD2/3 activation and an up-regulated expression of α-SMA, a typical MyoFB marker, especially after TGF-β1 treatment. Immunostaining on cardiac tissues revealed a higher expression of integrin ανβ5 in SHR vs. WKY rat hearts. In vitro results confirmed the up-regulation of integrin ανβ5 expression in SHR-CF at basal condition and after TGF-β1 treatment, in comparison with WKY-CF. Inhibition of integrin ανβ5 by cilengitide treatment led a decreased expression of ανβ5, collagen I, and α-SMA in SHR-CF vs. WKY-CF, resulting in a diminished differentiation of CF into MyoFB. Taking together, results suggested that SHR-CF are more susceptible to TGF-β1, showing an up-regulated activation of SMAD2/3 signaling, and an increased ανβ5, α-SMA, and collagen I expression. Hypertension stimulus promoted an up-regulation of integrin ανβ5 on SHR cardiac tissue and its in vitro inhibition reverted pro-fibrotic events of SHR-CF. Inhibition of integrin ανβ5 exerted by cilengitide strongly diminished SHR-CF differentiation into detrimental MyoFB. So, integrin ανβ5 might be considered a novel therapeutic target and cilengitide an effective pharmacological tool to limit the progression of hypertension-induced cardiac fibrosis."	"Inflammation and Mechanical Stress Stimulate Osteogenic Differentiation of Human Aortic Valve Interstitial Cells. Background: Aortic valve calcification is an active proliferative process, where interstitial cells of the valve transform into either myofibroblasts or osteoblast-like cells causing valve deformation, thickening of cusps and finally stenosis. This process may be triggered by several factors including inflammation, mechanical stress or interaction of cells with certain components of extracellular matrix. The matrix is different on the two sides of the valve leaflets. We hypothesize that inflammation and mechanical stress stimulate osteogenic differentiation of human aortic valve interstitial cells (VICs) and this may depend on the side of the leaflet. Methods: Interstitial cells isolated from healthy and calcified human aortic valves were cultured on collagen or elastin coated plates with flexible bottoms, simulating the matrix on the aortic and ventricular side of the valve leaflets, respectively. The cells were subjected to 10% stretch at 1 Hz (FlexCell bioreactor) or treated with 0.1 μg/ml lipopolysaccharide, or both during 24 h. Gene expression of myofibroblast- and osteoblast-specific genes was analyzed by qPCR. VICs cultured in presence of osteogenic medium together with lipopolysaccharide, 10% stretch or both for 14 days were stained for calcification using Alizarin Red. Results: Treatment with lipopolysaccharide increased expression of osteogenic gene bone morphogenetic protein 2 (BMP2) (5-fold increase from control; p = 0.02) and decreased expression of mRNA of myofibroblastic markers: α-smooth muscle actin (ACTA2) (50% reduction from control; p = 0.0006) and calponin (CNN1) (80% reduction from control; p = 0.0001) when cells from calcified valves were cultured on collagen, but not on elastin. Mechanical stretch of VICs cultured on collagen augmented the effect of lipopolysaccharide. Expression of periostin (POSTN) was inhibited in cells from calcified donors after treatment with lipopolysaccharide on collagen (70% reduction from control, p = 0.001), but not on elastin. Lipopolysaccharide and stretch both enhanced the pro-calcific effect of osteogenic medium, further increasing the effect when combined for cells cultured on collagen, but not on elastin. Conclusion: Inflammation and mechanical stress trigger expression of osteogenic genes in VICs in a side-specific manner, while inhibiting the myofibroblastic pathway. Stretch and lipopolysaccharide synergistically increase calcification."	"Pericyte Biology in Zebrafish. The zebrafish is an outstanding model for studying vascular biology in vivo. Pericytes and vascular smooth muscle cells can be imaged as they associate with vessels and provide stability and integrity to the vasculature. In zebrafish, pericytes associate with the cerebral and trunk vasculature on the second day of development, as assayed by pdgfrβ and notch3 markers. In the head, cerebral pericytes are neural crest derived, except for the pericytes of the hindbrain vasculature, which are mesoderm derived. Similar to the hindbrain, pericytes on the trunk vasculature are also mesoderm derived. Regardless of their location, pericyte development depends on a complex interaction between blood flow and signalling pathways, such as Notch, SONIC HEDGEHOG and BMP signalling, all of which positively regulate pericyte numbers.Pericyte numbers rapidly increase as development proceeds in order to stabilize both the blood-brain barrier and the vasculature and hence, prevent haemorrhage. Consequently, compromised pericyte development results in compromised vascular integrity, which then evolves into detrimental pathologies. Some of these pathologies have been modelled in zebrafish by inducing mutations in the notch3, foxc1 and foxf2 genes. These zebrafish models provide insights into the mechanisms of disease as associated with pericyte biology. Going forward, these models may be key contributors in elucidating the role of vascular mural cells in regulating vessel diameter and hence, blood flow."	"Promotion of skin wound healing using prevascularized oral mucosal cell sheet. This study examined the potential use of our newly developed prevascularized oral mucosal cell sheet for the treatment of skin wounds. Mucosal cell sheets containing cultured keratinocytes and plasma fibrin without (K sheet) or with a mixture of fibroblasts and endothelial progenitor cells (PV sheet) were transplanted into full-thickness skin excisional wounds of nude mice. This technique was successful for in vitro culture; expanding keratinocytes, fibroblasts, and endothelial progenitor cells; and generating prevascularized mucosal cell sheets. Cell sheets promoted in vivo wound healing with rapid wound closure and less scarring compared to controls. This result was more apparent in the PV than the K sheet (P &lt; .05). Wounds covered with cell sheets showed less expression of TGFB1, ACTA2, and FN1 mRNAs than the controls (P &lt; .05). The prevascularized mucosal cell sheet showed in vivo efficacy and tissue plasticity in cutaneous wounds by promoting accelerated healing."	"miR-627/HMGB1/NF-κB regulatory loop modulates TGF-β1-induced pulmonary fibrosis. Pulmonary fibrosis (PF) is a fibroproliferative disease that can eventually lead to fatal lung failure. It is characterized by abnormal proliferation of fibroblasts, dysregulated fibroblast differentiation to myofibroblast, and disorganized collagen and extracellular matrix production, deposition and degradation. There is still a lack of effective treatment strategies for PF. Extracellular high-mobility group box protein 1 (HMGB1) induces PF through NF-κB-mediated TGF-β1 release. Herein, we first validate the suppressive effect of HMGB1 knockdown on TGF-β1-induced α-smooth muscle actin (α-SMA) and collagen I protein expression. In PF, miRNAs exert different effects through targeting various downstream target messenger RNAs. We searched an online database for dysregulated miRNAs in PF tissues; among them, miR-627 was predicted by online tools to target HMGB1 to inhibit its expression. miR-627 overexpression could partially reverse TGF-β1-induced normal human lung fibroblast proliferation, as well as α-SMA and collagen I protein expression. miR-627 inhibition could partially reverse the suppressive effect of HMGB1 knockdown on TGF-β1-induced α-SMA and collagen I protein expression through direct binding to the 3'-untranslated region of HMGB1. Moreover, miR-627/HMGB1 affected TGF-β1 release through RAGE/NF-κB signaling; miR-627/HMGB1 and RAGE/NF-κB signaling formed a regulatory loop to modulate TGF-β1-induced PF in vitro. In conclusion, miR-627 may be a potential agent that targets HMGB1 to inhibit its expression, thereby improving TGF-β1-induced PF in vitro."	"2-Methoxyestradiol attenuates liver fibrosis in mice: implications for M2 macrophages. Liver fibrosis is a major health problem worldwide due to its serious complications including cirrhosis and liver cancer. 2-Methoxyestradiol (2-ME) is an end metabolite of estradiol with anti-proliferative, antioxidant, and anti-inflammatory activities. However, the protective role of 2-ME in liver fibrosis has not been fully investigated. The aim of this study was to determine the protective effect of 2-ME in carbon tetrachloride (CCl4)-induced liver fibrosis in mice. Animals were injected intraperitoneally with CCl4 twice weekly for 6 weeks. 2-ME 50 mg/kg or 100 mg/kg was administrated intraperitoneally every day over the same period. Our data showed that 2-ME reduced the extent of liver toxicity and fibrosis due to CCl4 exposure. It restored the elevated serum liver enzymes aspartate aminotransferase (AST), alanine aminotransferase (ALT), and alkaline phosphatase (ALP) levels and ameliorated oxidative status. In addition, 2-ME significantly reduced collagen deposition and alpha-smooth muscle actin (α-SMA) protein expressions. Furthermore, 2-ME markedly lowered macrophage infiltration and macrophage alternative activation marker chitinase-like molecules (CHI3L3/YM1). The results of this study indicate an important protective activity of 2-ME in liver fibrosis and highlight the role of macrophage recruitment and alternative activation as a possible target."	"TP53 upregulates α‑smooth muscle actin expression in tamoxifen‑resistant breast cancer cells. In a previous study, we reported that α‑smooth muscle actin (α‑SMA), one of the mesenchymal marker proteins, is highly expressed in tamoxifen‑resistant breast cancer (TamR) cells. However, the exact mechanism of α‑SMA expression in TamR cells is not fully understood. Here, we investigated the effect of TP53 on α‑SMA expression in breast cancer cells. The levels of α‑SMA mRNA and protein expression were analyzed by real‑time PCR and western blotting, respectively. In estrogen receptor‑positive [ER(+)] breast cancer patients, aberrant α‑SMA expression was found to be associated with a poor prognosis. The level of α‑SMA expression was significantly increased in established TamR cells compared to tamoxifen‑sensitive (TamS) cells. To verify the regulatory mechanism of α‑SMA expression, we analyzed diverse kinase activities between TamS and TamR cells. The activity of TP53 was markedly increased in the TamR cells. When TamS cells were treated with TP53 activator, Nutlin3 (Nut3), α‑SMA expression was increased in the TamS cells. In addition, α‑SMA expression was significantly increased by TP53 overexpression in breast cancer cells. On the contrary, the basal level of α‑SMA expression was decreased by the TP53 inhibitor, pifithrin‑α (PFT‑α). Taken together, we demonstrated that α‑SMA expression is regulated by TP53 activity in TamR cells."	"Identification of key candidate genes and biological pathways in bladder cancer. Bladder cancer is a malignant tumor in the urinary system with high mortality and recurrence rates. However, the causes and recurrence mechanism of bladder cancer are not fully understood. In this study, we used integrated bioinformatics to screen for key genes associated with the development of bladder cancer and reveal their potential molecular mechanisms. The GSE7476, GSE13507, GSE37815 and GSE65635 expression profiles were downloaded from the Gene Expression Omnibus database, and these datasets contain 304 tissue samples, including 81 normal bladder tissue samples and 223 bladder cancer samples. The RobustRankAggreg (RRA) method was utilized to integrate and analyze the four datasets to obtain integrated differentially expressed genes (DEGs), and the gene ontology (GO) functional annotation and Kyoto encyclopedia of genes and genomes (KEGG) pathway analysis were performed. Protein-protein interaction (PPI) network and module analyses were performed using Cytoscape software. The OncoLnc online tool was utilized to analyze the relationship between the expression of hub genes and the prognosis of bladder cancer. In total, 343 DEGs, including 111 upregulated and 232 downregulated genes, were identified from the four datasets. GO analysis showed that the upregulated genes were mainly involved in mitotic nuclear division, the spindle and protein binding. The downregulated genes were mainly involved in cell adhesion, extracellular exosomes and calcium ion binding. The top five enriched pathways obtained in the KEGG pathway analysis were focal adhesion (FA), PI3K-Akt signaling pathway, proteoglycans in cancer, extracellular matrix (ECM)-receptor interaction and vascular smooth muscle contraction. The top 10 hub genes identified from the PPI network were vascular endothelial growth factor A (VEGFA), TOP2A, CCNB1, Cell division cycle 20 (CDC20), aurora kinase B, ACTA2, Aurora kinase A, UBE2C, CEP55 and CCNB2. Survival analysis revealed that the expression levels of ACTA2, CCNB1, CDC20 and VEGFA were related to the prognosis of patients with bladder cancer. In addition, a KEGG pathway analysis of the top 2 modules identified from the PPI network revealed that Module 1 mainly involved the cell cycle and oocyte meiosis, while the analysis in Module 2 mainly involved the complement and coagulation cascades, vascular smooth muscle contraction and FA. This study identified key genes and pathways in bladder cancer, which will improve our understanding of the molecular mechanisms underlying the development and progression of bladder cancer. These key genes might be potential therapeutic targets and biomarkers for the treatment of bladder cancer."	"Atherosclerosis-associated differentially methylated regions can reflect the disease phenotype and are often at enhancers. Atherosclerosis is a widespread and complicated disease involving phenotypic modulation and transdifferentiation of vascular smooth muscle cells (SMCs), the predominant cells in aorta, as well as changes in endothelial cells and infiltrating monocytes. Alterations in DNA methylation are likely to play central roles in these phenotypic changes, just as they do in normal differentiation and cancer. We examined genome-wide DNA methylation changes in atherosclerotic aorta using more stringent criteria for differentially methylated regions (DMRs) than in previous studies and compared these DMRs to tissue-specific epigenetic features. We found that disease-linked hypermethylated DMRs account for 85% of the total atherosclerosis-associated DMRs and often overlap aorta-associated enhancer chromatin. These hypermethylated DMRs were associated with functionally different sets of genes compared to atherosclerosis-linked hypomethylated DMRs. The extent and nature of the DMRs could not be explained as direct effects of monocyte/macrophage infiltration. Among the known atherosclerosis- and contractile SMC-related genes that exhibited hypermethylated DMRs at aorta enhancer chromatin were ACTA2 (aorta α2 smooth muscle actin), ELN (elastin), MYOCD (myocardin), C9orf3 (miR-23b and miR-27b host gene), and MYH11 (smooth muscle myosin). Our analyses also suggest a role in atherosclerosis for developmental transcription factor genes having little or no previous association with atherosclerosis, such as NR2F2 (COUP-TFII) and TBX18. We provide evidence for atherosclerosis-linked DNA methylation changes in aorta SMCs that might help minimize or reverse the standard contractile character of many of these cells by down-modulating aorta SMC-related enhancers, thereby facilitating pro-atherosclerotic phenotypic changes in many SMCs."	"Novel variants in the ACTA2 and MYH11 genes in a Cypriot family with thoracic aortic aneurysms: a case report. Thoracic aortic aneurysm (TAA) and/or thoracic aortic aneurysm and dissection (TAAD) is characterized by a considerable risk of morbidity and mortality of affected individuals. It is inherited in an autosomal dominant pattern and the 20% of patients with non-syndromic TAA have a positive family history. To date, the genetic basis of Cypriot patients with TAA has not been investigated. The purpose of this case report is to determine underlying genetic cause in this Cypriot family with TAA. In this report we present a patient with hyper-acute onset chest and back pain diagnosed with Type A Aortic Dissection with severe aortic valve regurgitation, who underwent emergency aortic surgery and Bentall procedure. Further investigation of the patient's family was undertaken where both parents and an additional child were also found to be affected. A targeted sequencing panel including genes with known association to TAA was used to identify causative mutations in the index patient. Massively Parallel Sequencing results identified a frameshift deletion c.363_367del GAGTC, p.Met121Ilefs*5 in the ACTA2 gene and a non-synonymous variant c.3234C &gt; G, p.Ile1078Met in the MYH11 gene. The presence or absence of these variants in the index patient and other family members was verified by Sanger sequencing. To our knowledge, this is the first report of a Cypriot family case diagnosed with TAA presented by two novel variants one in the ACTA2 and the other in the MYH11 genes. We describe two novel variants in a Cypriot family with TAA that are potentially pathogenic, highlighting the importance of molecular genetic evaluation in families with TAA. These results may prove useful for screening purposes in Cypriot patients with non-syndromic familial TAA facilitating early identification of atrisk family members and direct intervention."	"Epithelial-Mesenchymal Transdifferentiation in Pediatric Lens Epithelial Cells. Posterior capsule opacification (PCO) is a complication after cataract surgery, particularly in children. Epithelial-mesenchymal transition (EMT) of lens epithelial cells, mediated by transforming growth factor beta (TGFβ), contributes to PCO. However, its pathogenesis in children is poorly understood. We correlated cell growth in culture with patient characteristics, studied gene expression of pediatric lens epithelial cells (pLEC), and examined the effects of TGFβ-2 on these cells in vitro. Clinical characteristics of children with cataracts correlated with growth behavior of pLEC in vitro. mRNA expression of epithelial (αB-crystallin, connexin-43) and mesenchymal (αV-integrin, α-smooth muscle actin, collagen-Iα2, fibronectin-1) markers was quantified in pLEC and in cell line HLE-B3 in the presence and absence of TGFβ-2. Fifty-four anterior lens capsules from 40 children aged 1 to 180 months were obtained. Cell outgrowth occurred in 44% of the capsules from patients ≤ 12 months and in 33% of capsules from children aged 13 to 60 months, but in only 6% of capsules from children over 60 months. TGFβ-2 significantly upregulated expression of αB-crystallin (HLE-B3), αV-integrin (HLE-B3), collagen-Iα2, and fibronectin-1 (in pLEC and HLE-B3 cells). Patient characteristics correlated with growth behavior of pLEC in vitro, paralleling a higher clinical incidence of PCO in younger children. Gene expression profiles of pLEC and HLE-B3 suggest that upregulation of αV-integrin, collagen-Iα2, and fibronectin-1 are involved in EMT."	"TGF-β1 Induces Human Tenon's Fibroblasts Fibrosis via miR-200b and Its Suppression of PTEN Signaling. To determine the involvement of MicroRNA-200b (miR-200b) in human Tenon's fibroblasts (HTFs) fibrosis. HTFs were treated with 10 ng/ml TGF-β1 for 24 h. Expression of α-smooth muscle actin (α-SMA), Fibronectin and Collagen1A1 (COL1A1) was assessed by western blot and immunofluorescence. MiR-200b was detected by quantitative reverse-transcriptase polymerase chain reaction (qRT-PCR), and its potential target genes were validated by luciferase assay. The effects of miR-200b and PTEN (the target gene) on HTFs fibrogenesis were evaluated using miR-200b mimics or inhibitor transfected HTFs, and confirmed with PTEN-specific small interfering RNA (siRNA) and PTEN inhibitor. TGF-β1 up-regulated miR-200b and promoted the expression of α-SMA, Fibronectin and COL1A1 in HTFs, and the effects could be strengthened or hampered by adding miR-200b mimics or inhibitor, respectively. Luciferase assay identified PTEN as the target gene of miR-200b, and decreased PTEN level due to up-regulation of miR-200b was found to correlate with intensified expression of α-SMA, Fibronectin and COL1A1. Determination of PTEN's role in fibrosis was carried out by adding PTEN specific siRNA or PTEN inhibitor into HTFs, which led to intensified expression of fibrosis-related proteins. TGF-β1-mediated miR-200b induces HTFs fibrosis through suppressing PTEN signaling pathway."	"Initiation of fibrosis in the integrin Αvβ6 knockout mice. We previously demonstrated that β6 knockout mice showed impaired wound repair in corneal debridement and keratectomy wounds. In the current investigation, we continued our examination of integrin αvβ6 in order to determine if it was required for the initiation of wound healing in a corneal wound model that normally heals in a fibrotic manner. A full-thickness corneal incision was made in C57BL/6 J wild type (WT) and C57BL/6-Itgb6 KO (β6<sup>-/-</sup>) mice. The mice were observed at 3, 7, 14, and 28 days post-incision. The morphology of corneal restoration was observed in tissue sections stained with hemotoxilin and eosin (H&amp;E). In addition, indirect-immunofluorescence (IF) was performed on sections and/or whole mounts to evaluate the immunolocalization of α-smooth muscle actin (SMA) and thrombospondin-1 (TSP-1). H&amp;E staining revealed that the corneas in β6<sup>-/-</sup> mice healed slower than those in WT mice, with an obvious delay in the restoration of the stromal matrix and epithelium. In sections at 3 and 7 days, SMA and TSP-1 were greatly reduced in the β6<sup>-/-</sup> mice as compared to WT, but peaked at 28 days after incision. Whole mount SMA IF results were consistent with those from sections. Therefore, the initiation of fibrosis was inhibited by the lack of αvβ6; however, there appeared to be an alternate mechanism that initiated fibrosis 7-14 days later. Localization of TSP-1 correlated with expression of SMA whether wound healing was delayed or initiated immediately after wounding."	"In vitro and in vivo delivery of a sustained release nanocarrier-based formulation of an MRTF/SRF inhibitor in conjunctival fibrosis. Sustained drug delivery is a large unmet clinical need in glaucoma. Here, we incorporated a Myocardin-Related Transcription Factor/Serum Response Factor inhibitor, CCG-222740, into slow release large unilamellar vesicles derived from the liposomes DOTMA (1,2-di-O-octadecenyl-3-trimethylammonium propane) and DOPC (1,2-dioleoyl-sn-glycero-3-phosphocholine), and tested their effects in vitro and in vivo. The vesicles were spherical particles of around 130 nm and were strongly cationic. A large amount of inhibitor could be incorporated into the vesicles. We showed that the nanocarrier CCG-222740 formulation gradually released the inhibitor over 14 days using high performance liquid chromatography. Nanocarrier CCG-222740 significantly decreased ACTA2 gene expression and was not cytotoxic in human conjunctival fibroblasts. In vivo, nanocarrier CCG-222740 doubled the bleb survival from 11.0 ± 0.6 days to 22.0 ± 1.3 days (p = 0.001), decreased conjunctival scarring and did not have any local or systemic adverse effects in a rabbit model of glaucoma filtration surgery. Our study demonstrates proof-of-concept that a nanocarrier-based formulation efficiently achieves a sustained release of a Myocardin-Related Transcription Factor/Serum Response Factor inhibitor and prevents conjunctival fibrosis in an established rabbit model of glaucoma filtration surgery."	"Comparison of p63/p40 Expression With Myoepithelial Markers in Minor Salivary Gland Tumors. The present study aimed to compare the expression of p63/p40 with smooth muscle actin (SMA) and vimentin (VIM) by myoepithelial cells in minor salivary gland tumors. Fifty-two formalin-fixed paraffin-embedded samples of minor salivary gland tumors derived from intercalated duct (pleomorphic adenoma [PA], adenoid cystic carcinoma [ACC], epithelial-myoepithelial carcinoma [EMC], polymorphous adenocarcinoma [PAC], and secretory carcinoma [SC]) and 3 samples of minor salivary gland tumors derived from excretory duct (mucoepidermoid carcinoma [MEC]) were evaluated by means of immunohistochemistry. The data were analyzed qualitatively. The results indicated that p63 and p40 expression were detected in myoepithelial cells present in PA, ACC, and EMC. However, both proteins were also observed in squamous areas of PA and all cases of MEC. SMA were noticed in some myoepithelial cells of PA, ACC, and EMC. Expression of SMA was negative in the other salivary gland tumors evaluated. VIM was constantly expressed by myoepithelial cells in PA, ACC, and EMC. VIM was also observed in cells of PAC and SC, but not in squamous areas of PA and MEC. In conclusion, p63 expression is almost comparable with VIM in detecting myoepithelial cells, an immunolabeling pattern not followed by p40, and consequently, caution has to be taken during the interpretation of salivary gland tumor exhibiting an p63/p40 phenotype in order to avoid a misdiagnosis."	"Prevention of hepatic stellate cell activation using JQ1- and atorvastatin-loaded chitosan nanoparticles as a promising approach in therapy of liver fibrosis. Preventing hepatic stellate cell (HSC) activation represents a promising approach to resolve liver fibrosis. Several drugs have been reported to delay/prevent HSCs activation, however with limited clinical benefits. The latter may be in part attributed to the limited ability of such drugs in targeting more than one pathway of HSC activation. Added to that, is their inability of reaching their target cell in sufficient amounts to induce a therapeutic effect. In this work, chitosan NPs were loaded with JQ1 and atorvastatin, two drugs that have been reported to prevent HSCs activation, however via different mechanisms. NPs were then modified with different densities of retinol (Rt) for active targeting of HSCs. The NP HSCs targeting ability as a function of Rt density was assessed in vitro on primary HSCs and in vivo in carbon tetrachloride (CCl4) induced fibrotic mouse models. In vitro NPs modified with a low Rt density (LRt-NPs) showed ≈2 folds enhanced HSCs uptake in comparison to unmodified NPs, whereas NPs modified with a high Rt density (HRt-NPs) showed ≈0.8 folds change in uptake relative to unmodified NPs. Similarly, in vivo LRt-NPs showed higher accumulation in fibrotic livers in comparison to healthy livers whereas HRt-NPs and unmodified NPs showed lower accumulation in fibrotic livers relative to healthy controls respectively. Finally, the ability of drug-loaded NPs in preventing HSCs activation was assessed by monitoring the reduction in α-smooth muscle actin (α-SMA) expression by Western blot. NPs loaded with both JQ1 and atorvastatin showed reduction in α-SMA expression. In addition, a synergistic reduction in α-SMA was observed when cells were co-treated with JQ1 and atorvastatin loaded NPs."	"Pancreatic Stellate Cells Activation and Matrix Metallopeptidase 2 Expression Correlate With Lymph Node Metastasis in Pancreatic Carcinoma. This study aimed to investigate the correlation between pancreatic stellate cell activation, matrix metallopeptidase 2 (MMP2) expression and lymph node metastasis in pancreatic carcinoma. Alpha-smooth muscle actin (ACTA2), Desmin (DES) and MMP2 were detected in 40 pancreatic carcinoma patients and 10 cases of normal pancreas tissues using immunohistochemistry. Then MMP2 and ACTA2 expression profiles in pancreatic cancer were obtained from UCSC (University of California, Santa Cruz) and SurvExpress. A total of 67.5% and 55.0% of cases positively expressed ACTA2 and DES in pancreatic carcinoma, respectively. MMP2 in pancreatic carcinoma was expressed in 55.0% of cases, and there were significant differences between the lymph node metastasis group and the lymph node nonmetastasis group, as well as invasion and noninvasion to the peripheral tissue group (P &lt; 0.01). High throughput sequencing databases verified that ACTA2 and MMP2 gene expression were both upregulated in pancreatic carcinoma tissues. The coexpression of ACTA2 and DES was related to the expression of MMP2, and positively correlated with lymph node metastasis. Activation of pancreatic stellate cells may promote the expression of MMP2 and enhance the invasion and metastasis of pancreatic carcinoma."	"The effects of electromagnetic fields on cultured human retinal pigment epithelial cells. A great deal of evidence has confirmed that electromagnetic fields (EMFs) can affect the central nervous system. In this study, cultured neonatal human retinal pigment epithelial (hRPE) cells were exposed to pulsed EMF of 1 mT intensity and 50 Hz frequency 8 h daily for 3 days. In addition to cell proliferation and cell death assays, immunocytochemistry for RPE65, PAX6, nestin, and cytokeratin 8/18 proteins were performed. Real-time reverse transcriptase polymerase chain reaction (RT-PCR) was performed for NES, PAX6, RPE65, and ACTA2 gene expression. Exposed hRPE cells did not demonstrate significant change in terms of cytomorphology, cell proliferation, or cell death. Protein expression of PAX6 was decreased in treated cells compared to controls and remained unchanged for RPE65, cytokeratin 8/18, and nestin. Gene expressions of NES, RPE65, and PAX6 were decreased in treated cells as compared to controls. Gene expression of ACTA2 did not significantly change. In conclusion, viability of cultivated neonatal hRPE cells did not change after short exposure to a safe dose of pulsed EMF albeit that both gene and protein expressions of retinal progenitor cell markers were reduced. Whether longer exposure durations that are being constantly produced by widely-used electronic devices may induce significant changes in these cells, needs further investigation. Bioelectromagnetics. 39:585-594, 2018. © 2018 Wiley Periodicals, Inc."	"Specific knockdown of WNT8b expression protects against phosphate-induced calcification in vascular smooth muscle cells by inhibiting the Wnt-β-catenin signaling pathway. In the last 10 years, the prevalence, significance, and regulatory mechanisms of vascular calcification (VC) have gained increasing recognition. The aim of this study is to explore the action of WNT8b in the development of phosphate-induced VC through its effect on vascular smooth muscle cells (VSMCs) in vitro by inactivating the Wnt-β-catenin signaling pathway. To explore the effect of WNT8b on the Wnt-β-catenin signaling pathway and VC in vitro, β-glycerophosphate (GP)-induced T/G HA-VSMCs were treated with small interfering RNA against WNT8b (Si-WNT8b), Wnt-β-catenin signaling pathway activator (LiCl) and both, respectively. Reverse transcription quantitative polymerase chain reaction and western blot analysis were used to determine the messenger RNA and protein levels of WNT8b, α-smooth muscle actin (α-SMA), calcification-associated molecules, and molecules related to the Wnt signaling pathway. The TOP/FOP-Flash reporter assay was performed to detect the transcription activity mediated by β-catenin. Si-WNT8b reduced calcium deposition and the activity of alkaline phosphatase (ALP), increased the α-SMA level, and decreased bone morphogenetic protein 2, Pit1, MSX2, and Runt-related transcription factor 2 levels, whereas stimulation of LiCl worsened β-GP-induced calcium deposition, increased the activity of ALP, and reduced the α-SMA expression level. Si-WNT8b reduced the levels of WNT8b, frizzled-4, β-catenin, phospho-GSK-3β (p-GSK-3β), and cyclin-D, whereas it increased the levels of p-β-catenin and GSK-3β, indicating that si-WNT8b could alter the Wnt-β-catenin signaling pathway and thus hamper the VC in T/G HA-VSMC, which was further demonstrated by the TOP/FOP-Flash assay and detection of the β-catenin expression level in the nucleus. Altogether, we conclude that WNT8b knockdown terminates phosphate-induced VC in VSMCs by inhibiting the Wnt-β-catenin signaling pathway."	"Ocular Surface Leiomyoma in a Child after Strabismus Repair. NA"	"Inhibiting Interleukin 36 Receptor Signaling Reduces Fibrosis in Mice With Chronic Intestinal Inflammation. Intestinal fibrosis is a long-term complication in inflammatory bowel diseases (IBD) that frequently results in functional damage, bowel obstruction, and surgery. Interleukin (IL) 36 is a group of cytokines in the IL1 family with inflammatory effects. We studied the expression of IL36 and its receptor, interleukin 1 receptor like 2 (IL1RL2 or IL36R) in the development of intestinal fibrosis in human tissues and mice. We obtained intestinal tissues from 92 patients with Crohn's disease (CD), 48 patients with ulcerative colitis, and 26 patients without inflammatory bowel diseases (control individuals). Tissues were analyzed by histology to detect fibrosis and by immunohistochemistry to determine the distribution of fibroblasts and levels of IL36R ligands. Human and mouse fibroblasts were incubated with IL36 or control medium, and transcriptome-wide RNA sequences were analyzed. Mice were given neutralizing antibodies against IL36R, and we studied intestinal tissues from Il1rl2<sup>-/-</sup> mice; colitis and fibrosis were induced in mice by repetitive administration of DSS or TNBS. Bone marrow cells were transplanted from Il1rl2<sup>-/-</sup> to irradiated wild-type mice and intestinal tissues were analyzed. Antibodies against IL36R were applied to mice with established chronic colitis and fibrosis and intestinal tissues were studied. Mucosal and submucosal tissue from patients with CD or ulcerative colitis had higher levels of collagens, including type VI collagen, compared with tissue from control individuals. In tissues from patients with fibrostenotic CD, significantly higher levels of IL36A were noted, which correlated with high numbers of activated fibroblasts that expressed α-smooth muscle actin. IL36R activation of mouse and human fibroblasts resulted in expression of genes that regulate fibrosis and tissue remodeling, as well as expression of collagen type VI. Il1rl2<sup>-/-</sup> mice and mice given injections of an antibody against IL36R developed less severe colitis and fibrosis after administration of DSS or TNBS, but bone marrow cells from Il1rl2<sup>-/-</sup> mice did not prevent induction of colitis and fibrosis. Injection of antibodies against IL36R significantly reduced established fibrosis in mice with chronic intestinal inflammation. We found higher levels of IL36A in fibrotic intestinal tissues from patients with IBD compared with control individuals. IL36 induced expression of genes that regulate fibrogenesis in fibroblasts. Inhibition or knockout of the IL36R gene in mice reduces chronic colitis and intestinal fibrosis. Agents designed to block IL36R signaling could be developed for prevention and treatment of intestinal fibrosis in patients with IBD."	"Cancer-associated stroma significantly contributes to the mesenchymal subtype signature of serous ovarian cancer. Mesenchymal (MES) subtype of high-grade serous ovarian cancer (HGSOC) is associated with worse outcomes including survival and resectability compared with other molecular subtypes. Molecular subtypes have historically been derived from 'tumor', consisting of both cancer and stromal cells. We sought to determine the origins of multiple MES subtype gene signatures in HGSOC. Fifteen patients with MES subtype of HGSOC diagnosed between 2010 and 2013 were identified. Formalin-fixed paraffin-embedded (FFPE) blocks from primary surgery were sectioned for immunohistochemistry (IHC) staining of relevant proteins. Eight genes (ACTA2, COL5A1, COL11A1, FAP, POSTN, VCAN, ZEB1 and p-SMAD2) were selected for IHC staining based on their differential expression in MES vs. non-MES subtypes of HGSOC. Slides were scored for intensity and localization and simple statistics were used to compare expression results in cancer vs. stroma and between primary and metastatic sites. COL5A1, VCAN, FAP, and ZEB1 proteins were almost exclusively expressed by stroma as opposed to cancer cells. In addition, stromal expression was dominant for ACTA2, COL11A1, POSTN and p-SMAD2. In general there were minimal differences in expression of proteins between primary and metastatic sites, exceptions being COL5A1 (reduced in metastases) and COL11A1 (increased in metastases). Nuclear p-SMAD2 expression was more common in metastatic stroma. The existing molecular classification of HGSOC MES subtype reflects a significant stromal contribution, suggesting an important role in HGSOC behavior and thus stroma may be a relevant therapeutic target. Specific patterns of expression indicate that collagens and TGF-β signaling are involved in the metastatic process."	"Treatment of intractable oral ulceration with an oral mucosa equivalent. The current use of steroids or pharmacological immunomodulators for the treatment of intractable oral ulceration is ineffective, necessitating newer cell-based therapeutic approaches. We examined the potential efficacy of an oral mucosa equivalent developed in this study in an in vivo model of repeat major oral ulceration mimicking the intractable oral ulceration observed clinically. Oral mucosal samples and plasma fibrin were obtained from Sprague-Dawley rats. The oral mucosa equivalents were prepared with cultured mucosal keratinocytes and plasma fibrin mixed with cultured fibroblasts. Ulcers were chemically induced on the rat buccal mucosa thrice in 3 weeks and covered with or without mucosa equivalents. Gross and microscopic findings and mRNA expression levels were compared between the ulcer control and mucosa equivalent groups. Oral mucosal keratinocytes and fibroblasts were cultured in vitro to achieve high viability and colony-forming efficiency. The equivalents showed epithelial and subepithelial structures similar to those of oral mucosa and exhibited high p63 positivity. In the in vivo study, ulceration was resolved earlier without significant granulation or scarring in the equivalent group than in control group (p &lt; 0.05). Microscopic examinations revealed rapid re-epithelialization and less fibrosis in the equivalent group than in the control group (p &lt; 0.05). Mucosa equivalent-covered ulcers showed histological characteristics similar to those of the normal buccal mucosa and exhibited lower expression of TGFB1, ACTA2, and FN1 mRNAs than the control group. The in vitro-engineered oral mucosa equivalent promotes ulcer healing without scarring and functional deficits. © 2018 Wiley Periodicals, Inc. J Biomed Mater Res Part B: Appl Biomater 107B: 1779-1785, 2019."	"Smooth muscle cell differentiation from rabbit amniotic cells. Amniotic fluid (AF) is the liquid layer that provides mechanical support and allows movement of the fetus during embryogenesis. Mesenchymal stem cells (MSCs), which have differentiation capacity, are also found in AF-derived cells at a low ratio. Smooth muscle cells (SMCs) play an important role in organ function and are frequently used in tissue engineering. We examined the differentiation of AF-derived MSCs (AMSCs) into SMCs. AMSCs were sorted from cultured amniotic cells and differentiated into SMCs using differentiation agents, including platelet-derived growth factor BB (PDGF-BB) and tumor growth factor β (TGF-β). Characterization of differentiated SMCs was confirmed morphologically, molecularly (via quantitative polymerase chain reaction [qPCR] and immunocytochemistry [ICC]), and functionally (using a contractile assay and fluo-4 calcium signaling assay). Poly(lactide-co-glycolide) (PLGA) scaffolds were fabricated, and the attachment capacity of AMSCs was assessed via scanning electron microscopy. AMSCs were successfully differentiated into SMCs. Our results indicate that AMSCs change their morphology and exhibit increased expression of ACTA2 and MYH11, which was confirmed via qPCR and ICC. Furthermore, functional experiments revealed that differentiated SMCs had both contraction ability and increased Ca<sup>2</sup> concentration in the cytoplasm. Finally, PLGA scaffolds were prepared and AMSCs were successfully planted onto the scaffolds. The AMSCs fully differentiated into functional SMCs, and the PLGA polymer is a suitable scaffold material for AMSCs. With further clinical trials, AF-derived MSC-based SMC engineering may become a highly efficient treatment option."	"Fibroblast growth factor-2, but not the adipose tissue-derived stromal cells secretome, inhibits TGF-β1-induced differentiation of human cardiac fibroblasts into myofibroblasts. Transforming growth factor-β1 (TGF-β1) is a potent inducer of fibroblast to myofibroblast differentiation and contributes to the pro-fibrotic microenvironment during cardiac remodeling. Fibroblast growth factor-2 (FGF-2) is a growth factor secreted by adipose tissue-derived stromal cells (ASC) which can antagonize TGF-β1 signaling. We hypothesized that TGF-β1-induced cardiac fibroblast to myofibroblast differentiation is abrogated by FGF-2 and ASC conditioned medium (ASC-CMed). Our experiments demonstrated that TGF-β1 treatment-induced cardiac fibroblast differentiation into myofibroblasts, as evidenced by the formation of contractile stress fibers rich in αSMA. FGF-2 blocked the differentiation, as evidenced by the reduction in gene (TAGLN, p &lt; 0.0001; ACTA2, p = 0.0056) and protein (αSMA, p = 0.0338) expression of mesenchymal markers and extracellular matrix components gene expression (COL1A1, p &lt; 0.0001; COL3A1, p = 0.0029). ASC-CMed did not block myofibroblast differentiation. The treatment with FGF-2 increased matrix metalloproteinases gene expression (MMP1, p &lt; 0.0001; MMP14, p = 0.0027) and decreased the expression of tissue inhibitor of metalloproteinase gene TIMP2 (p = 0.0023). ASC-CMed did not influence these genes. The proliferation of TGF-β1-induced human cardiac fibroblasts was restored by both FGF-2 (p = 0.0002) and ASC-CMed (p = 0.0121). The present study supports the anti-fibrotic effects of FGF-2 through the blockage of cardiac fibroblast differentiation into myofibroblasts. ASC-CMed, however, did not replicate the anti-fibrotic effects of FGF-2 in vitro."	"Lung fibroblasts express a miR-19a-19b-20a sub-cluster to suppress TGF-β-associated fibroblast activation in murine pulmonary fibrosis. Lung fibroblasts play a pivotal role in pulmonary fibrosis, a devastating lung disease, by producing extracellular matrix. MicroRNAs (miRNAs) suppress numerous genes post-transcriptionally; however, the roles of miRNAs in activated fibroblasts in fibrotic lungs remain poorly understood. To elucidate these roles, we performed global miRNA-expression profiling of fibroblasts from bleomycin- and silica-induced fibrotic lungs and investigated the functions of miRNAs in activated lung fibroblasts. Clustering analysis of global miRNA-expression data identified miRNA signatures exhibiting increased expression during fibrosis progression. Among these signatures, we found that a miR-19a-19b-20a sub-cluster suppressed TGF-β-induced activation of fibroblasts in vitro. Moreover, to elucidate whether fibroblast-specific intervention against the sub-cluster modulates pathogenic activation of fibroblasts in fibrotic lungs, we intratracheally transferred the sub-cluster-overexpressing fibroblasts into bleomycin-treated lungs. Global transcriptome analysis of the intratracheally transferred fibroblasts revealed that the sub-cluster not only downregulated expression of TGF-β-associated pro-fibrotic genes, including Acta2, Col1a1, Ctgf, and Serpine1, but also upregulated expression of the anti-fibrotic genes Dcn, Igfbp5, and Mmp3 in activated lung fibroblasts. Collectively, these findings indicated that upregulation of the miR-19a-19b-20a sub-cluster expression in lung fibroblasts counteracted TGF-β-associated pathogenic activation of fibroblasts in murine pulmonary fibrosis."	"Electrochemical fabrication of a biomimetic elastin-containing bi-layered scaffold for vascular tissue engineering. Biomimetic tissue-engineered vascular grafts (TEVGs) have immense potential to replace diseased small-diameter arteries (&lt;4 mm) for the treatment of cardiovascular diseases. However, biomimetic approaches developed thus far only partially recapitulate the physicochemical properties of the native vessel. While it is feasible to fabricate scaffolds that are compositionally similar to native vessels (collagen and insoluble elastic matrix) using freeze-drying, these scaffolds do not mimic the aligned topography of collagen and elastic fibers found in native vessels. Extrusion-based scaffolds exhibit anisotropic collagen orientation but these scaffolds are compositionally dissimilar (cannot incorporate insoluble elastic matrix). In this study, an electrochemical fabrication technique was employed to develop a biomimetic elastin-containing bi-layered collagen scaffold which is compositionally and structurally similar to native vessels and the effect of insoluble elastin incorporation on scaffold mechanics and smooth muscle cell (SMC) response was investigated. Further, the functionality of human umbilical vein endothelial cells (HUVECs) on the scaffold lumen surface was assessed via immunofluorescence. Results showed that incorporation of insoluble elastin maintained the overall collagen alignment within electrochemically aligned collagen (ELAC) fibers and this underlying aligned topography can direct cellular orientation. Ring test results showed that circumferential orientation of ELAC fibers significantly improved scaffold mechanics. Real-time PCR revealed that the expression of α-smooth muscle actin (Acta2) and myosin heavy chain (MyhII) was significantly higher on elastin containing scaffolds suggesting that the presence of insoluble elastin can promote contractility in SMCs. Further, mechanical properties of the scaffolds significantly improved post-culture indicating the presence of a mature cell-synthesized and remodeled matrix. Finally, HUVECs expressed functional markers on collagen lumen scaffolds. In conclusion, electrochemical fabrication is a viable method for the generation of a functional biomimetic TEVG with the potential to be used in bypass surgery."	"Upregulation of Plasminogen Activator Inhibitor-1 in Irradiated Recipient Arteries and Veins from Free Tissue Transfer Reconstruction in Cancer Patients. Clinical studies have shown that radiotherapy can induce vascular disease at the site of exposure but is usually not clinically evident until years after treatment. We have studied irradiated human arteries and veins to better understand the underlying biology in search of future treatments. The aim was to investigate whether radiotherapy contributed to a sustained expression of plasminogen activator inhibitor-1 (PAI-1) in human arteries and veins. Irradiated arteries and veins were harvested, together with unirradiated control vessels, from patients undergoing free tissue transfer reconstruction at a median time of 90 weeks [5-650] following radiation exposure. Differential gene expression of PAI-1 was analysed, together with immunohistochemistry (IHC) and immunofluorescence (IF). PAI-1 gene expression was increased in both arteries (p = 0.012) and veins (p &lt; 0.001) in irradiated compared to unirradiated control vessels. IHC and IF indicated that cells expressing PAI-1 were located in the adventitia of both arteries and veins and colocalized with cells positive for CD68, CD45, and α-SMA in arteries and with CD45 and α-SMA in veins. The current study shows a sustained upregulation of PAI-1 in both arteries and veins after exposure to ionizing radiation, indicating a chronic inflammation mainly in the adventitia. We believe that the results contribute to further understanding of radiation-induced vascular disease, where targeting PAI-1 may be a potential treatment."	"Structural and functional analysis of single-nucleotide polymorphic variants of purine-rich element-binding protein B. Purine-rich element-binding protein B (Purβ) inhibits myofibroblast differentiation by repressing the expression of the smooth muscle α-actin gene (Acta2). Several reports have identified the structural domains in Purβ that enable its characteristic interaction with purine-rich single-stranded DNA (ssDNA) sequences in the Acta2 promoter. However, little is known about the physical and functional effects of single-nucleotide polymorphisms that alter individual amino acid residues in Purβ. This study evaluated seven rare single amino acid variants of human PURB engineered into the homologous mouse Purβ protein. Mapping the location of variant residues on a homology model of the Purβ homodimer suggested that most of the altered residues are remote from the predicted ssDNA-binding regions of the protein. The repressor activity of each Purβ variant was assessed in transfected fibroblasts and smooth muscle cells via Acta2 promoter-reporter assays. A Q64* nonsense variant was completely inactive while missense variants exhibited repressor activity that ranged from ~1.5-fold greater to ~2-fold less than wild-type Purβ. Lower activity variants P223L and R297Q were expressed in bacteria and purified to homogeneity. Each variant was physically indistinguishable from wild-type Purβ in terms of quaternary structure and thermostability. Results of DNA and protein-binding assays indicated that the P223L and R297Q variants retained high affinity and specificity for purine-rich ssDNA sequences but differed in their interaction with other Acta2 regulatory proteins. These findings suggest that the presence of certain variant residues affects the Acta2 repressor activity of Purβ by altering its interaction with other transcription factors but not with ssDNA."	"Modulation of NCAM/FGFR1 signaling suppresses EMT program in human proximal tubular epithelial cells. Neural cell adhesion molecule (NCAM) and fibroblast growth factor receptor 1 (FGFR1) cross-talk have been involved in epithelial-to-mesenchymal transition (EMT) process during carcinogenesis. Since EMT also contributes to maladaptive repair and parenchymal damage during renal fibrosis, we became encouraged to explore the role of NCAM/FGFR1 signaling as initiating or driving forces of EMT program in cultured human proximal tubular epithelial cells (TECs). TECs stimulated with TGF-β1 (10ng/mL) was used as an established in vitro EMT model. TGF-β1 downstream effectors were detected in vitro, as well as in 50 biopsies of different human kidney diseases to explore their in vivo correlation. NCAM/FGFR1 signaling and its modulation by FGFR1 inhibitor PD173074 (100nM) were analyzed by light microscopy, immunolabeling, qRT-PCR and scratch assays. Morphological changes associated with EMT appeared 48h after TGF-ß1 treatment and was clearly apparent after 72 hours, followed by loss of CDH1 (encoding E-Cadherin) and transcriptional induction of SNAI1 (SNAIL), SNAI2 (SLUG), TWIST1, MMP2, MMP9, CDH2 (N-Cadherin), ITGA5 (integrin-α5), ITGB1 (integrin-β1), ACTA2 (α-SMA) and S100A4 (FSP1). Moreover, at the early stage of EMT program (24 hours upon TGF-β1 exposure), transcriptional induction of several NCAM isoforms along with FGFR1 was observed, implicating a mechanistic link between NCAM/FGFR1 signaling and induction of EMT. These assumptions were further supported by the inhibition of the EMT program after specific blocking of FGFR1 signaling by PD173074. Finally, there was evidence for an in vivo TGF-β1 pathway activation in diseased human kidneys and correlation with impaired renal excretory functions. Collectively, NCAM/FGFR1 signaling appears to be involved in the initial phase of TGF-ß1 initiated EMT which can be effectively suppressed by application of FGFR inhibitor."	"α-Smooth muscle actin expression predicts the outcome of Kasai portoenterostomy in biliary atresia. Biliary atresia (BA) is a cholangio-destructive disease of the infant liver presenting with features of obstructive cholangiopathy. The Kasai portoenterostomy (KPE) is the first line of management. The aim of our study was to identify the characteristic features of liver histology in BA that impact the outcome of KPE. Data from 30 consecutive children was retrieved from our prospectively maintained database of children undergoing KPE. This included basic demographics, laboratory values and histopathological data from liver biopsy. The stages of fibrosis, presence of ductal plate malformation (DPM), giant cell transformation, extramedullary hematopoiesis and area percentage of α-SMA (α-smooth muscle actin) expression was correlated with jaundice clearance after KPE using standard statistical tests. Native liver survival was computed. Overall, 13 (43%) children cleared jaundice in this series and 10 (33%) are alive with native liver. Lower area percent expression of α-SMA correlated with increased probability of jaundice clearance after KPE (P &lt; 0.001). There was no correlation between stage of fibrosis and jaundice clearance (P = 0.52). DPM, giant cell transformation and extramedullary hematopoiesis did not correlate with outcome. All children who are alive with native liver had lower expression of α-SMA. α-SMA expression may be a potential predictor of jaundice clearance and native liver survival after KPE."	"A Novel Inhibitor of Homodimerization Targeting MyD88 Ameliorates Renal Interstitial Fibrosis by Counteracting TGF-β1-Induced EMT in Vivo and in Vitro. The TLR/MyD88/NF-κB signaling pathway has been successfully used to treat renal interstitial fibrosis (RIF). However, the exact therapeutic mechanism is still unknown. Here, we assessed the therapeutic efficacy of TJ-M2010-2, a small molecular compound that inhibits MyD88 homodimerization, in RIF induced by ischemia reperfusion injury (IRI). In vivo, RIF was induced in mice by IRI, and the mice were prophylactically treated with TJ-M2010-2. In vitro, HK-2 cells were incubated with TGF-β1 to induce EMT, and the cells were pretreated with TJ-M2010-2. We found that, compared with the IRI group, the TJ-M2010-2 group showed marked attenuation of RIF and renal function injury; decreased expression of TGF-β1, α-SMA, vimentin, MMP2 and MMP9; and increased E-cadherin expression. Furthermore, TGF-β1-induced EMT was blocked by TJ-M2010-2 in HK-2 cells, as evidenced by blocked morphologic transformation, restored E-cadherin expression and inhibited α-SMA expression. In addition, compared to the TGF-β1 group, the TJ-M2010-2 group showed profound inhibition of the expression of TRAF6, p65 and Snail and upregulation of the expression of IκBα. This MyD88 inhibitor may be a potential therapeutic agent to ameliorate RIF."	"[The Changes of Cytoskeleton during Phenotypic Transition of Pulmonary Artery Smooth Muscle Cells Induced by PDGF-BB]. To study the changes of cytoskeleton during the phenotypic transition of rat pulmonary artery smooth muscle cells (PASMCs) induced by platelet-derived growth factor (PDGF-BB), and to explore the mechanism involved in the process of phenotypic transition of PASMCs. PASMCs of Sprague Dawley (SD) rats were cultured and identified by immunohistochemistry (IHC) method. The cells were randomly divided into control group and PDGF-BB treated group (10 ng/mL). RT-qPCR and Western blot were used to detect the mRNA and protein level of marker genes (α-SMA and SM22α) during the process of phenotypic transition of PASMCs. The changes of cytoskeleton were observed by fluorescent microscopy, cell proliferation was measured by CCK-8 method; and cell migration was observed by wound healing assay. Compared with control group, PDGF-BB down-regulated the mRNA and protein expression of α-SMA and SM22α. The fluorescence intensity of cytoskeletal protein was significantly reduced after the treatment of PDGF-BB. In addition, the structure of F-actin was disorganized with a burr-like appearance, and the structures of α-tubulin and β-tubulin were irregular with co-location appearance. PDGF-BB significantly enhanced the proliferation and migration of PASMCs . PDGF-BB could induce a conformation change in cytoskeletal proteins for PASMCs phenotypic transition, and enhance the ability of proliferation and migration of PASMCs."	"[LIMR is involved in the inhibitory effect of antiflammin-1 on epithelial-mesenchymal transition in A549 cells]. Epithelial-mesenchymal transition (EMT) occurring in alveolar epithelial cells plays an important role in the development and progression of pulmonary fibrosis. Previous studies showed that antiflammin-1 (the active fragment of uteroglobin) effectively inhibited bleomycin-induced pulmonary fibrosis. However, its mechanism is still far from being clarified. In this study, we investigated the effects of antiflammin-1 on EMT in A549 cells induced by transforming growth factor-β1 (TGF-β1) and the underlying mechanism by using morphological observation and Western blot. The results showed that the expression of α-smooth muscle actin (α-SMA) increased significantly while the expression of E-cadherin decreased significantly in A549 cells following treatment with TGF-β1 concomitant with morphological change of A549 cells from pebble-like shape epithelial cells to spindle-like mesenchymal shape. This process of EMT in A549 cells induced by TGF-β1 was significantly inhibited when A549 cells were co-incubated with TGF-β1 and antiflammin-1. Furthermore, the anti-lipocalin interacting membrane receptor (LIMR) antibody and PD98059 (an ERK signaling pathway blocker) attenuated the inhibitory effect of antiflammin-1 on TGF-β1-induced EMT, respectively. Our findings indicate that antiflammin-1 can inhibit EMT in A549 cells induced by TGF-β1, which is related to LIMR and its downstream ERK signaling pathway."	"Comparison of Surgically Excised Premacular Membranes in Eyes with Macular Pucker and Proliferative Vitreoretinopathy. To describe and compare characteristics of premacular membranes in idiopathic macular pucker (iMP) and proliferative vitreoretinopathy (PVR) using immunofluorescence and transmission electron microscopy. For immunocytochemical and ultrastructural analyses, premacular membranes were harvested during vitrectomy from 16 eyes with iMP and 12 eyes with PVR. All specimens were processed as flat mounts for phase-contrast and fluorescence microscopy. We used 19 different primary antibodies such as anti-α-smooth muscle actin (α-SMA), anti-integrin-αv, anti-galectin, anti-IBA-1, anti-EMMPRIN (CD147), anti-ricinus (RCS) and anti-collagen-type I. Eight of 28 eyes were also prepared for transmission electron microscopy. In all eyes with iMP and PVR, positive immunoreactivity of integrins, especially αvβ3 was found. There was also a strong staining of anti-α-SMA, anti-galectin, anti-EMMPRIN, anti-RCS, anti-IBA1 and anti-collagen-type I. Transmission electron microscopy showed that premacular membrane of iMP composed of myofibroblasts, glial cells and fibroblasts. In eyes with PVR, retinal pigment epithelial cells and myofibroblasts were seen as predominant cell types. Premacular membranes of iMP and PVR presented with similarities in cell distribution and immunoreactivity, but showed differences in cell composition. Herein, we demonstrate immunocytochemical characteristics involved in fibrotic processes. Cell transdifferentiation into myofibroblasts represents an important process in pathogenesis of both entities. In order to address future anti-fibrotic treatment strategies, we emphasize that both fibrotic diseases share distinct immunocytochemical and ultrastructural features."	"Galectin-1 gene silencing inhibits the activation and proliferation but induces the apoptosis of hepatic stellate cells from mice with liver fibrosis. Liver fibrosis is a serious threat to human health, and there is currently no effective clinical drug for treatment of the disease. Although Galectin‑1 is effective, its role in liver function, inflammation, matrix metalloproteinases and the activation of hepatic stellate cells (HSCs) remains to be elucidated. The aim of the present study was to elucidate the effect of Galectin‑1 on the activation, proliferation and apoptosis of HSCs in a mouse model of liver fibrosis. Following successful model establishment and tissue collection, mouse HSCs (mHSCs) were identified and an mHSC line was constructed. Subsequently, to determine the role of Galectin‑1 in liver fibrosis, the expression levels of transforming growth factor (TGF)‑β1, connective tissue growth factor (CTGF) and α‑smooth muscle actin (α‑SMA) pre‑ and post‑transfection were evaluated by reverse transcription‑quantitative polymerase chain reaction and western blot analyses. In addition, the effects of Galectin‑1 on the biological behavior and mitochondrial function of mHSCs were determined using a 3‑(4,5‑dimethylthiazol‑2‑yl)‑2,5‑diphenyltetrazolium bromide assay, flow cytometry and a scratch test. It was first observed that the expression levels of Galectin‑1, TGF‑β1, CTGF and α‑SMA were downregulated by silencing the gene expression of Galectin‑1. Additionally, silencing the gene expression of Galectin‑1 inhibited cell cycle progression, proliferation and migration but induced the apoptosis of mHSCs from mice with liver fibrosis. Furthermore, the in vivo experimental results suggested that silencing the gene expression of Galectin‑1 improved liver fibrosis. Collectively, it was concluded that silencing the gene expression of Galectin‑1 ameliorates liver fibrosis and that functionally suppressing Galectin‑1 may be a future therapeutic strategy for liver fibrosis."	"Fibroblast gene expression following asthmatic bronchial epithelial cell conditioning correlates with epithelial donor lung function and exacerbation history. Airway remodeling may contribute to decreased lung function in asthmatic children. Bronchial epithelial cells (BECs) may regulate fibroblast expression of extracellular matrix (ECM) constituents and fibroblast-to-myofibroblast transition (FMT). Our objective was to determine if human lung fibroblast (HLF) expression of collagen I (COL1A1), hyaluronan synthase 2 (HAS2), and the FMT marker alpha-smooth muscle actin (α-SMA) by HLFs conditioned by BECs from asthmatic and healthy children correlate with lung function measures and exacerbation history among BEC donors. BECs from asthmatic (n = 23) and healthy children (n = 15) were differentiated at an air-liquid interface (ALI) and then co-cultured with HLFs for 96 hours. Expression of COL1A1, HAS2, and α-SMA by HLFs was determined by quantitative polymerase chain reaction (qPCR). FMT was quantified by measuring HLF cytoskeletal α-SMA by flow cytometry. Pro-collagen Iα1, hyaluronan (HA), and PGE2 were measured in BEC-HLF supernatant. Correlations between lung function measures of BEC donors, and COL1A1, HAS2, and α-SMA gene expression, as well as supernatant concentrations of HA, pro-collagen Iα1, hyaluronan (HA), and PGE2 were assessed. We observed that expression of α-SMA and COL1A1 by HLFs co-cultured with asthmatic BECs was negatively correlated with BEC donor lung function. BEC-HLF supernatant concentrations of pro-collagen Iα1 were negatively correlated, and PGE2 concentrations positively correlated, with asthmatic BEC donor lung function. Expression of HAS2, but not α-SMA or COL1A1, was greater by HLFs co-cultured with asthmatic BECs from donors with a history of severe exacerbations than by HLFs co-cultured with BECs from donors who lacked a history of severe exacerbations. In conclusion, α-SMA and COL1A1 expression by HLFs co-cultured with BECs from asthmatic children were negatively correlated with lung function measures, supporting our hypothesis that epithelial regulation of HLFs and airway deposition of ECM constituents by HLFs contributes to lung function deficits among asthmatic children. Furthermore, epithelial regulation of airway HAS2 may influence the susceptibility of children with asthma to experience severe exacerbations. Finally, epithelial-derived PGE2 is a potential regulator of airway FMT and HLF production of collagen I that should be investigated further in future studies."	"Bone marrow fibroblasts overexpress miR-27b and miR-214 in step with multiple myeloma progression, dependent on tumour cell-derived exosomes. Aberrant microRNA (miR) expression has an important role in tumour progression, but its involvement in bone marrow fibroblasts of multiple myeloma patients remains undefined. We demonstrate that a specific miR profile in bone marrow fibroblasts parallels the transition from monoclonal gammopathy of undetermined significance (MGUS) to myeloma. Overexpression of miR-27b-3p and miR-214-3p triggers proliferation and apoptosis resistance in myeloma fibroblasts via the FBXW7 and PTEN/AKT/GSK3 pathways, respectively. Transient transfection of miR-27b-3p and miR-214-3p inhibitors demonstrates a cooperation between these two miRNAs in the expression of the anti-apoptotic factor MCL1, suggesting that miR-27b-3p and miR-214-3p negatively regulate myeloma fibroblast apoptosis. Furthermore, myeloma cells modulate miR-27b-3p and miR-214-3p expression in fibroblasts through the release of exosomes. Indeed, tumour cell-derived exosomes induce an overexpression of both miRNAs in MGUS fibroblasts not through a simple transfer mechanism but by de novo synthesis triggered by the transfer of exosomal WWC2 protein that regulates the Hippo pathway. Increased levels of miR-27b-3p and miR-214-3p in MGUS fibroblasts co-cultured with myeloma cell-derived exosomes enhance the expression of fibroblast activation markers αSMA and FAP. These data show that the MGUS-to-myeloma transition entails an aberrant miRNA profile in marrow fibroblasts and highlight a key role of myeloma cells in modifying the bone marrow microenvironment by reprogramming the marrow fibroblasts' behaviour. Copyright © 2018 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"SM22α (Smooth Muscle Protein 22-α) Promoter-Driven IGF1R (Insulin-Like Growth Factor 1 Receptor) Deficiency Promotes Atherosclerosis. Objective- IGF-1 (insulin-like growth factor 1) is a major autocrine/paracrine growth factor, which promotes cell proliferation, migration, and survival. We have shown previously that IGF-1 reduced atherosclerosis and promoted features of stable atherosclerotic plaque in Apoe<sup>-/</sup><sup>-</sup> mice-an animal model of atherosclerosis. The aim of this study was to assess effects of smooth muscle cell (SMC) IGF-1 signaling on the atherosclerotic plaque. Approach and Results- We generated Apoe<sup>-/-</sup> mice with IGF1R (IGF-1 receptor) deficiency in SMC and fibroblasts (SM22α [smooth muscle protein 22 α]-CreKI/IGF1R-flox mice). IGF1R was decreased in the aorta and adventitia of SM22α-CreKI/IGF1R-flox mice and also in aortic SMC, embryonic, skin, and lung fibroblasts isolated from SM22α-CreKI/IGF1R-flox mice. IGF1R deficiency downregulated collagen mRNA-binding protein LARP6 (La ribonucleoprotein domain family, member 6) and vascular collagen, and mice exhibited growth retardation. The high-fat diet-fed SM22α-CreKI/IGF1R-flox mice had increased atherosclerotic burden and inflammatory responses. α-SMA (α-smooth muscle actin)-positive plaque cells had reduced proliferation and elevated apoptosis. SMC/fibroblast-targeted decline in IGF-1 signaling decreased atherosclerotic plaque SMC, markedly depleted collagen, reduced plaque fibrous cap, and increased plaque necrotic cores. Aortic SMC isolated from SM22α-CreKI/IGF1R-flox mice had decreased cell proliferation, migration, increased sensitivity to apoptosis, and these effects were associated with disruption of IGF-1-induced Akt signaling. Conclusions- IGF-1 signaling in SMC and in fibroblast is a critical determinant of normal vascular wall development and atheroprotection."	"YAP regulates periodontal ligament cell differentiation into myofibroblast interacted with RhoA/ROCK pathway. During orthodontic tooth movement (OTM), periodontal ligament cells (PDLCs) receive the mechanical stimuli and transform it into myofibroblasts (Mfbs). Indeed, previous studies have demonstrated that mechanical stimuli can promote the expression of Mfb marker α-smooth muscle actin (α-SMA) in PDLCs. Transforming growth factor β1 (TGF-β1), as the target gene of yes-associated protein (YAP), has been proven to be involved in this process. Here, we sought to assess the role of YAP in Mfbs differentiation from PDLCs. The time-course expression of YAP and α-SMA was manifested in OTM model in vivo as well as under tensional stimuli in vitro. Inhibition of RhoA/Rho-associated kinase (ROCK) pathway using Y27632 significantly reduced tension-induced Mfb differentiation and YAP expression. Moreover, overexpression of YAP with lentiviral transfection in PDLCs rescued the repression effect of Mfb differentiation induced by Y27632. These data together suggest a crucial role of YAP in regulating tension-induced Mfb differentiation from PDLC interacted with RhoA/ROCK pathway."	"Protective effect of rapamycin on endothelial-to-mesenchymal transition in HUVECs through the Notch signaling pathway. Neointima hyperplasia is one of the predominant features of cardiovascular diseases such as atherosclerosis, and is also responsible for the restenosis of vascular surgery including arteriovenous fistula and stent implantation. Endothelial-to-mesenchymal transition (EndMT) contributes to neointima hyperplasia by activation of the Notch or TGF-β signaling pathway. Rapamycin has been utilized as anti-restenosis drug due to its anti-proliferative activity. However, its effects on the EndMT have not been investigated yet. Thus, we examined the biological effects of rapamycin on the EndMT and its potential mechanisms. We showed that rapamycin significantly reversed TGF-β1 stimulated EndMT by upregulating endothelial marker CD31 expression and downregulating mesenchymal marker SMA-α expression in human umbilical vein endothelial cells (HUVECs). Rapamycin also inhibited TGF-β1 induced expression of the Notch signaling pathway components expression, such as Notch-1, Jagged-1, RBP-jκ and Hes-5. Among the different Notch receptors and ligands, Jagged-1/Notch-1 cascade was most remarkably blocked by rapamycin. Finally, consistently with the results from Notch inhibitor DAPT treatment, rapamycin suppressed the migration of HUVECs in vitro. Together, these findings indicate that rapamycin may function as an effective inhibitor of the EndMT in HUVECs by suppressing targeting the Notch signaling pathway."	"Phosphorylation of the glucocorticoid receptor alters SMAD signaling in vocal fold fibroblasts. Direct glucocorticoid (GC) injection for vocal fold (VF) scarring has evolved as a therapeutic strategy, but the mechanisms underlying the antifibrotic effects remain unclear. GCs act via the glucocorticoid receptor (GR), which is phosphorylated at multiple serine residues in a hormone-dependent manner to affect bioactivity. We hypothesize that GCs regulate SMAD signaling via GR phosphorylation in vocal fold fibroblasts (VFFs). In vitro. Human VFFs were treated with dexamethasone (DM; 10<sup>-5</sup> -10<sup>-7</sup> M) ± transforming growth factor (TGF)-β1 (10 ng/mL). RU486 (10<sup>-6</sup> M) was employed to isolate the regulatory effects of GR. Total GR, Ser<sup>211</sup> , and Ser<sup>203</sup> phosphorylation was examined via sodium dodecyl sulfate-polyacrylamide gel electrophoresis and immunocytochemistry. Quantitative polymerase chain reaction was employed to determine GR-mediated effects of DM on genes related to fibrosis. Total GR and Ser<sup>211</sup> phosphorylation was observed predominantly in the nucleus 1 hour after DM administration. DM decreased total GR expression, but Ser<sup>203</sup> and Ser<sup>211</sup> phosphorylation increased. RU486 limited the effects of DM. SMAD3 and SMAD7 mRNA expression significantly decreased 4 hours after DM administration (P &lt; 0.05); this response was negated by RU486. COL1A1 remained unchanged, and ACTA2 significantly increased following 24 hours of DM treatment (P &lt; 0.05). DM regulated TGF-β1 signaling via altered SMAD3 and SMAD7 expression. This response was associated with altered GR phosphorylation. These findings provide insight into the mechanisms of steroidal effects on vocal fold repair; ultimately, we seek to enhance therapeutic strategies for these challenging patients. NA Laryngoscope, 129:E187-E193, 2019."	"The effects of cytosporone-B, a novel antifibrotic agent, on vocal fold fibroblasts. Our laboratory recently described NR4A1 as an endogenous inhibitor of TGF-β-induced vocal fold (VF) fibrosis. Our prior report described the temporal expression of NR4A1 during VF healing in vivo and the effects of NR4A1 knockdown on fibroplastic cell activities in vitro. Based on these findings, we hypothesized that cytosporone-B (Csn-B), an NR4A1 agonist, may hold significant therapeutic potential. In vitro. Human VF fibroblasts were exposed to TGF-β1+/-Csn-B. Expression of genes related to fibrosis were quantified. In addition, contraction was assayed as a surrogate for the fibrotic phenotype in our cell line. TGF-B1 stimulated COL1A1 and ACTA2, as expected. Csn-B significantly downregulated TGF-β1-mediated upregulation of these genes (P = .009, P = .03, respectively). Csn-B had no effect on genes related to TGF-β/Smad signaling. Csn-B also decreased the TGF-β1-mediated contractile phenotype in our cells (P = .004). NR4A1 is an endogenous inhibitor of fibrosis in the vocal folds and Csn-B, as an NR4A1 agonist, may evolve as an ideal, therapeutic candidate for this challenging condition. NA Laryngoscope, 128:E425-E428, 2018."	"PEG-Plasma Hydrogels Increase Epithelialization Using a Human Ex Vivo Skin Model. In vitro cell culture methods are used extensively to study cellular migration, proliferation, and differentiation, which play major roles in wound healing but the results often do not translate to the in vivo environment. One alternative would be to establish an ex vivo model utilizing human discarded skin to evaluate therapies in a more natural setting. The purpose of this study was to institute such a model by creating 'wounds' in the center of a piece of discarded skin and treating them with three different biomaterials: collagen, polyethylene glycol (PEG)-fibrin, or PEG-platelet free plasma (PFP). Explants were cultured for 14 days with supernatant and microscopy images collected every 3 days to assess cytotoxicity and epithelialization. After 14 days, the explants were fixed, sectioned, and stained for cytokeratin-10 (CK-10), alpha-smooth muscle actin (α-SMA), and wheat germ (WG). Compared to controls, similar levels of cytotoxicity were detected for 12 days which decreased slightly at day 14. The PEG-PFP hydrogel-treated wounds epithelialized faster than other treatments at days 6 to 14. A 6-8 cell layer thick CK-10+ stratified epidermis had developed over the PEG-PFP hydrogel and cells co-stained by WG and α-SMA were observed within the hydrogel. An ex vivo model was established that can be used practically to screen different therapies exploring wound healing."	"Extensive CD34-to-CD90 Fibroblast Transition Defines Regions of Cutaneous Reparative, Hypertrophic, and Keloidal Scarring. CD90 fibroblasts have been described arising from and replacing the homeostatic CD34 network in scleroderma, but have not been specifically examined in other forms of cutaneous fibrosis. To address expression, timelines, and spatial relationships of CD90, CD34, and smooth muscle actin (SMA) expressing fibroblasts in scars and to examine for the presence of a CD34-to-CD90 transition. One hundred and seventeen scars (reparative/hypertrophic/keloidal) were evaluated for CD90, CD34, and SMA expression. Double-staining immunohistochemistry for CD90/CD34 was performed to identify CD90/CD34 transitioning cells, confirmed by double-color immunofluorescence. In addition, some scars were double-stained with CD90/SMA, CD90/procollagen-1, or SMA/procollagen-1 to evaluate spatial relationships and active collagen synthesis. Expression was graded as diffuse, minority, and negative. Most scars demonstrate a CD90/CD34 pattern, and dual CD90/CD34 fibroblasts were observed in 91% of scars. In reparative scars, CD90 expression reverses to a CD34/CD90 state with maturation. Pathologic scars exhibit prolonged CD90 expression. Both CD90 and SMA fibroblasts collagenize scars, although CD90 fibroblasts are more prevalent. CD90 fibroblasts likely arise from the resting CD34 fibroblastic network. Actively collagenizing scar fibroblasts exhibit a CD90/CD34 phenotype, which is prolonged in pathologic scars. CD90 fibroblasts are likely important players in cutaneous scarring."	"Evidence of Osteogenic Regulation in Calcific Porcine Aortic Valves. Chemically cross-linked animal tissues, such as porcine aortic valves (PAVs) have many documented advantages over mechanical valves. However, calcification is the major underlying pathologic process that results in bioprosthetic valve failure. Recently, several reports described the expression of noncollagenous bone matrix proteins in bioprosthetic valves and suggested an actively regulated process of tissue repair. Thirty-one explanted PAVs with evidence of calcification were collected and examined for the protein expression implicated in myofibroblast activation, osteoblast differentiation, and bone matrix deposition by using immunohistochemistry. The mean duration that PAVs were implanted was 11.5 ± 5.6 years, ranging from 12 months to 28 years. Pearson correlation analysis showed a significant relationship between the duration and valvular calcification (r = 0.3818, P = .034). The number of vimentin-positive mesenchymal cells in explanted PAVs was significantly lower than that of unused PAVs (P &lt; .01). However, increased expression of α-smooth muscle actin (α-SMA) (P &lt; .01), proliferating cell nuclear antigen (PCNA, P &lt; .01), Cbfa1/Runx2 (P &lt; .01), osterix (P = .0126), bone sialoprotein (BSP, P &lt; .01), osteocalcin (P &lt; .01), and osteopontin (P &lt; .01) was found in explanted PAVs. Immunohistochemical staining of alkaline phosphatase (ALP) and osteocalcin was negative in the unused PAVs. In explanted PAVs, the expression level of these 2 proteins was also significantly increased. Our results support the view that PAV calcification is an actively regulated process with osteogenic signaling activation."	"Radiation Enhances the Epithelial- Mesenchymal Transition of A549 Cells via miR3591-5p/USP33/PPM1A. Radiotherapy plays a critical role in lung cancer treatment. Radiation can activate transforming growth factor-β (TGF-β) signaling and induce the epithelial-mesenchymal transition (EMT), which may lead to distant metastases. MicroRNAs (miRNAs) have been suggested to affect radiotherapy in lung cancer. miRNA Next-Generation Sequencing was performed to investigate the effects of irradiation on the miRNA profile of lung cancer A549 cells. The functions of identified miRNA on the radiation induced EMT and TGF-β activation in A549 cells were then explored. Protein expression was evaluated by western blotting. Immunofluorescence staining was performed to detect the localization of Snail. Luciferase Assay was used to determine the target gene regulated by the identified miRNA. Radiation time-dependently induced EMT in A549 lung cancer cells as indicated by the changes of morphology, the expression of EMT marker proteins (E-cadherin, α-SMA and Vimentin) and the nuclear localization of Snail. Moreover, miR-3591-5p was identified as the most significant increased miRNA in response to radiation, and further experiments indicated that miR-3591-5p was required for radiation induced EMT and TGF-β/ Smad2/3 activation. Ubiquitin Specific Peptidase 33 (USP33) was a downstream target of miR-3591-5p as predicted by TargetScan and validated by 3' untranslated regions (UTRs) Luciferase Assay. USP33 could deubiquitinate PPM1A (protein phosphatase, Mg2+/Mn2 + dependent 1A), a phosphatase for Smad2/3. Ectopic expression of USP33 or PPM1A partially abolished the effects of miR-3591-5p on EMT and TGF-β/ Smad2/3 activation. The present study revealed the critical role of miR-3591-5p/USP33/PPM1A in radiation-induced EMT via TGF-β signaling and may suggest novel radiation sensitise strategies for lung cancer."	"TGFβ1-Smad Signaling Pathway Participates in Interleukin-33 Induced Epithelial-to-Mesenchymal Transition of A549 Cells. Epithelial-to-mesenchymal transition (EMT) has been proven to be involved in development and progression of pulmonary fibrosis. This study aims to investigate the role of transforming growth factor β1 (TGFβ1)-smad signaling pathway in the interleukin-33 (IL-33) induced EMT. The human type II alveolar epithelial cell line, A549, and small airway epithelial cells (SAEC) were cultured and divided into 4 groups including Control, LY-2109761 (TGFβ receptor inhibitor), IL-33 and IL-33+LY-2109761 group. Expression of TGFβ1, E-cadherin (E-cad) and α-smooth muscle actin (α-SMA) were examined by using real-time PCR (RT-PCR) and western blot assay, respectively. The smad3 signaling pathway factors, including smad3 and phosphorylated smad3 (p-smad3), were also detected by using western blot assay. IL-33 significantly activated T1/ST2 expression in A549 cells (P&lt; 0.05). TGFβ1 receptor inhibitor significantly suppressed the IL-33 caused down-expression of E-cad compared to IL-33 alone (P&lt; 0.05). IL-33 significantly increased the α-SMA levels compared to Control group (P&lt; 0.05) and TGFβ1 receptor inhibitor inhibited the other effects of IL-33. IL-33 significantly enhanced the levels of TGFβ1 compared to Control group (P&lt; 0.05). TGFβ1 receptor inhibitor suppressed the IL-33 induced up-expression of p-smad3. The TGFβ1-smad signaling pathway participates in the IL-33 induced epithelial-to-mesenchymal transition of A549 cells."	"Role of RKIP in human hepatic stellate cell proliferation, invasion, and metastasis. The purpose of this study was to investigate the effect of Raf kinase inhibitor protein (RKIP) on the growth, apoptosis, invasion, and metastasis of human hepatic stellate cell line (LX-2). A recombinant plasmid (pcDNA3.1-RKIP) or RKIP-targeting small interfering RNA (siRNA) vector (siRNA-RKIP) was transfected into LX-2 cells to interfere with the RKIP expression. The results demonstrated that increased RKIP expression significantly reduced cell viability, clonogenic growth, and invasion. Further, it promoted cell apoptosis and induced cell cycle arrest in the G1 phase. Overexpression of RKIP led to inactivation of LX-2 cells, as evidenced by the decrease in the expression levels of collagen I and α-smooth muscle actin (α-SMA). In addition, increased RKIP expression significantly reduced the phosphorylation of Raf/extracellular signal-regulated kinase (ERK)/mitogen-activated protein kinase (MAPK), the transcriptional activity of nuclear factor-κB (NF-κB), and the levels of matrix metalloproteinases-1 and -2. In conclusion, these findings clearly demonstrate that RKIP inhibits LX-2 cell growth, metastasis, and activation, primarily by downregulating the ERK/MAPK and NF-κB signaling pathways."	"Expression of α-smooth muscle actin in benign and malignant salivary gland tumors: An immunohistochemical study. Myoepithelial cells (ME) are known to contribute in the patterning of salivary gland neoplasms (SGN) and possess cytoplasmic smooth muscle actin (SMA) revealed by alpha SMA (α-SMA). The present study aimed to assess the expression of α-SMA in selected benign and malignant SGN (pleomorphic adenoma [PA], mucoepidermoid carcinoma (MEC), adenoid cystic carcinoma (ACC), and polymorphous low-grade adenocarcinoma (PLGA). The intensity and pattern of expression of α-SMA were studied in 25 cases of SGN's ACC (n = 7), MEC (n = 8), PA (n = 8), and PLGA (n = 2), and correlated with the histological patterns. Maximum expression of α-SMA in the epithelial compartment was seen in ACC, followed by PA, whereas MEC and PLGA showed completely negative staining. The connective tissue expression was mild in ACC and MEC. The myxoid stroma of PA with &quot;melting&quot; pattern was weakly positive for α-SMA. The stroma in PLGA showed complete negativity. In ACC, α-SMA-positive cells were lining the cribriform spaces, small islands, and dispersed within large islands. Small nests showed complete positivity for α-SMA. In ACC, α-SMA expression supports the involvement of ME in epithelial organization explaining the histological patterns seen. In PA, the expression correlates with the predominantly secretory nature of ME. The absence of epithelial positivity in MEC and PLGA suggest that ME has less role to play in their histogenesis. The weak stromal positivity observed in MEC and ACC may be attributed to the positive immunoreactivity of myofibroblasts playing a role in modulating the course of SGN's."	"Secondary Unconjugated Bile Acids Induce Hepatic Stellate Cell Activation. Hepatic stellate cells (HSCs) are key players in liver fibrosis, cellular senescence, and hepatic carcinogenesis. Bile acids (BAs) are involved in the activation of HSCs, but the detailed mechanism of this process remains unclear. We conducted a comprehensive DNA microarray study of the human HSC line LX-2 treated with deoxycholic acid (DCA), a secondary unconjugated BA. Additionally, LX-2 cells were exposed to nine BAs and studied using immunofluorescence staining, enzyme-linked immunosorbent assay, and flow cytometry to examine the mechanisms of HSC activation. We focused on the tumor necrosis factor (TNF) pathway and revealed upregulation of genes related to nuclear factor kappa B (NF-κB) signaling and senescence-associated secretory phenotype factors. α-Smooth muscle actin (α-SMA) was highly expressed in cells treated with secondary unconjugated BAs, including DCA, and a morphological change associated with radial extension of subendothelial protrusion was observed. Interleukin-6 level in culture supernatant was significantly higher in cells treated with secondary unconjugated BAs. Flow cytometry showed that the proportion of cells highly expressing α-SMA was significantly increased in HSCs cultured with secondary unconjugated BAs. We demonstrated that secondary unconjugated BAs induced the activation of human HSCs."	"ACTA2 Cerebral Arteriopathy: Not Just a Puff of Smoke. Missense mutations in the gene that codes for smooth muscle actin, ACTA2, cause diffuse smooth muscle dysfunction and a distinct cerebral arteriopathy collectively known as multisystemic smooth muscle dysfunction syndrome (MSMDS). Until recently, ACTA2 cerebral arteriopathy was considered to be a variant of moyamoya disease. However, recent basic science and clinical data have demonstrated that the cerebral arteriopathy caused by mutant ACTA2 exhibits genetic loci, histopathology, neurological sequelae, and radiographic findings unique from moyamoya disease. We conducted a literature review to provide insight into the history, clinical significance, and neurosurgical management of this recently described novel cerebral arteriopathy. We performed a literature search using PubMed with the key words &quot;ACTA2 mutation,&quot; &quot;ACTA2 cerebral arteriopathy,&quot; and &quot;multisystemic smooth muscle dysfunction syndrome.&quot; Case reports with confirmed ACTA2 mutations and cerebral arteriopathy were included in our review. Our literature search revealed 15 articles (58 cases) of confirmed ACTA2 cerebral arteriopathy. Distinctive features of this arteriopathy included an aberrant internal carotid circulation with dilatation of the proximal segments, occlusive disease at the distal segments, and dolichoectasia. As such, mutant ACTA2 predisposed patients to ischemic strokes as children. Direct and indirect cerebral revascularization procedures are the mainstay treatment options with varying degrees of success. Key Messages: ACTA2 cerebral arteriopathy is a recently described novel cerebrovascular disease seen in patients with MSMDS. Patients currently diagnosed with moyamoya disease who also have dysfunction of smooth muscle organs may benefit from reevaluation by a medical geneticist and ACTA2 genotyping."	"The Inhibitory Effects of Cyclodepsipeptides from the Entomopathogenic Fungus Beauveria bassiana on Myofibroblast Differentiation in A549 Alveolar Epithelial Cells. Pulmonary fibrosis (PF) is a chronic and fatal lung disease with few treatment options. Although the pathogenesis of PF is not clear, a chronic inflammatory response to continuous damage is considered the cause of pulmonary fibrosis. PF is characterized by excessive accumulation of extracellular matrix (ECM), therefore, inhibition of myofibroblast differentiation is a good therapeutic target for PF. As part of our continuing endeavor to explore biologically active metabolites from insect-associated microbes, we found that the MeOH extract of the culture broth from the entomopathogenic fungus Beauveria bassiana inhibited collagen induction and E-cadherin down-regulation. In order to identify active compounds, we carried out chemical analysis of the MeOH extract with the assistance of LC/MS-guided isolation approach, which led to the successful identification of four cyclodepsipeptides 1⁻4. Among the isolates, compound 2 showed inhibitory effects on myofibroblast differentiation induced by TGF-β1. Compound 2 inhibited induction of α-SMA and N-cadherin, which are myofibroblast markers, and blocked the accumulation of ECM proteins such as collagen and fibronectin. Overall these findings demonstrate that compound 2 can be used to attenuate pulmonary fibrosis by targeting myo- fibroblast differentiation."	"Hypoxia/reperfusion predisposes to atherosclerosis. Surgical interventions on blood vessels bear a risk for intimal hyperplasia and atherosclerosis as a consequence of injury. A specific feature of intimal hyperplasia is the loss of vascular smooth muscle cell (VSMC) differentiation gene expression. We hypothesized that immediate responses following injury induce vascular remodeling. To differentiate injury due to trauma, reperfusion and pressure changes we analyzed vascular responses to carotid artery bypass grafting in mice compared to transient ligation. As a control, the carotid artery was surgically laid open only. In both, bypass or ligation models, the inflammatory responses were transient, peaking after 6h, whereas the loss of VSMC differentiation gene expression persisted. Extended time kinetics showed that transient carotid artery ligation was sufficient to induce a persistent VSMC phenotype change throughout 28 days. Transient arterial ligation in ApoE knockout mice resulted in atherosclerosis in the transiently ligated vascular segment but not on the not-ligated contralateral side. The VSMC phenotype change could not be prevented by anti-TNF antibodies, Sorafenib, Cytosporone B or N-acetylcysteine treatment. Surgical interventions involving hypoxia/reperfusion are sufficient to induce VSMC phenotype changes and vascular remodeling. In situations of a perturbed lipid metabolism this bears the risk to precipitate atherosclerosis."	"Human airway trypsin-like protease (HAT) is released into saliva. We first discovered human airway trypsin-like protease (HAT) in human mucoid sputum. Precursor HAT (47 kDa), a cell surface type Ⅱ transmembrane serine protease, is proteolyzed to mature HAT (27 kDa). Hitherto, HAT has not been detected in other biological fluids except for human sputum. We aimed to clarify whether human saliva contains mature HAT. Trypsin-like protease was isolated from saliva of healthy volunteers by a method adopted for isolation of HAT from sputum using Boc-Phe-Ser-Arg-MCA as the substrate. Biochemical properties of purified protease were similar to those of recombinant HAT (rHAT). HAT concentration in saliva was measured by ELISA, and immunoreactive HAT:total protein ratio (ng/mg) in saliva samples from healthy subjects was similar to that in mucoid sputum. RT-PCR showed that HAT mRNA was expressed in human gingival epithelial cells but not in gingival fibroblasts. Both indirect immunofluorescence and western blotting using monoclonal antibody for α-smooth muscle actin (α-SMA;a myofibroblast marker) showed that HAT enhanced α-SMA fiber expression in gingival fibroblasts. These results indicate that both mucoid sputum and saliva from healthy subjects have similar concentrations of mature HAT, and HAT is related to certain physiological functions and pathological states of myofibroblasts in the oral cavity. J. Med. Invest. 65:258-267, August, 2018."	"Fetal lung transcriptome patterns in an ex vivo compression model of diaphragmatic hernia. The purpose of this study was to employ a novel ex vivo lung model of congenital diaphragmatic hernia (CDH) to determine how a mechanical compression affects early pulmonary development. Day-15 whole fetal rat lungs (n = 6-12/group) from nitrofen-exposed and normal (vehicle only) dams were explanted and cultured ex vivo in compression microdevices (0.2 or 0.4 kPa) for 16 h to mimic physiologic compression forces that occur in CDH in vivo. Lungs were evaluated with significance set at P &lt; 0.05. Nitrofen-exposed lungs were hypoplastic and expressed lower levels of surfactant protein C at baseline. Although compression alone did not alter the α-smooth muscle actin (ACTA2) expression in normal lungs, nitrofen-exposed lungs had significantly increased ACTA2 transcripts (0.2 kPa: 2.04 ± 0.15; 0.4 kPa: 2.22 ± 0.11; both P &lt; 0.001). Nitrofen-exposed lungs also showed further reductions in surfactant protein C expression at 0.2 and 0.4 kPa (0.53 ± 0.04, P &lt; 0.01; 0.69 ± 0.23, P &lt; 0.001; respectively). Whereas normal lungs exposed to 0.2 and 0.4 kPa showed significant increases in periostin (POSTN), a mechanical stress-response molecule (1.79 ± 0.10 and 2.12 ± 0.39, respectively; both P &lt; 0.001), nitrofen-exposed lungs had a significant decrease in POSTN expression (0.4 kPa: 0.67 ± 0.15, P &lt; 0.001), which was confirmed by immunohistochemistry. Collectively, these pilot data in a model of CDH lung hypoplasia suggest a primary aberration in response to mechanical stress within the nitrofen lung, characterized by an upregulation of ACTA2 and a downregulation in SPFTC and POSTN. This ex vivo compression system may serve as a novel research platform to better understand the mechanobiology and complex regulation of matricellular dynamics during CDH fetal lung development."	"Verteporfin as a Medical Treatment in Peyronie's Disease. In Europe and the United States, verteporfin (Visudyne; VP) is registered and used in treating macular degeneration. Research showed that VP decreased expression of fibrotic genes in fibroblasts collected from nodules of patients suffering from Dupuytren's disease, plausibly by de-activating transcription in the Yes Activated Protein (YAP) pathway. To analyze the effect of VP on myofibroblasts cultured from Peyronie's disease (PD) plaques. At surgery for PD we took biopsies from the plaques of 5 patients. By immunostaining, the presence of the pathologic myofibroblasts was determined. After culturing cells, VP was dispensed in starvation medium for 24 and 48 hours and messenger(m)RNA levels of COL1A1, ACTA2, COL5A1, EDA-FN, LOXL2, CCN2, SERPINH1, PLOD2, and YAP were quantified and compared with controls with real-time polymerase chain reaction. mRNA-levels of COL1A1, ACTA2, COL5A1, EDA-FN, LOXL2, CCN2, SERPINH1, PLOD2, and YAP. The pathologic phenotype of cells isolated from PD plaques was confirmed with baseline immunofluorescent stainings that showed considerable levels of α-smooth muscle actin, being a marker for the presence of myofibroblasts. The mRNA ratios of all the genes related to fibrosis (COL1A1, etc.) except YAP decreased significantly after treatment with VP within 24 and 48 hours. These results suggest inhibition of fibrosis in the YAP cascade, downstream of YAP. In our opinion, urologists must move the focus to disease before deformity, and the search for new oral or intralesional agents, well-tolerated and effective in both the acute and chronic phase of PD must continue. VP blocked the expression of genes related to fibrosis in the YAP cascade in myofibroblasts derived from PD plaque. Mohede DCJ, de Jong IJ, Bank RA, et al. Verteporfin as a medical treatment in Peyronie's disease. Sex Med 2018;6:302-308."	"Tissue Taurine Depletion Induces Profibrotic Pattern of Gene Expression and Causes Aging-Related Cardiac Fibrosis in Heart in Mice. Dietary taurine deficiency results in dilated cardiomyopathy in cats while in mice taurine deficiency produced by knocking out the taurine transporter (TauT) gene leads to a reduction in cardiac function with advancing age. The present study elucidated the involvement of cardiac fibrosis in the aging-dependent cardiac disorder of the TauT-knockout (TauTKO) mouse. Old (18-24-month-old) TauTKO mice, but not young (3-5-month-old) mice, exhibit cardiac fibrosis. Transcriptome microarray analysis revealed an increase in pro-fibrotic genes, such as S100A4, ACTA2 and CTGF, in both young and old TauTKO hearts. Based on transcriptome-pathway analysis the genes involved in &quot;organization of extracellular matrix,&quot; such as LGALS3, are enriched in old TauTKO hearts compared to old wild-type hearts, suggesting the contribution of these genes to fibrosis. In conclusion, taurine depletion predisposes the heart to fibrosis, which leads to cardiac fibrosis upon aging."	"Inclusion complexes of cysteinyl β-cyclodextrin with baicalein restore collagen synthesis in fibroblast cells following ultraviolet exposure. Baicalein, a bioactive flavonoid, has poor water solubility, thereby limiting its use in a wide range of biological applications. In the present study, we used inclusion complexes of cysteinyl β-cyclodextrin (β-CD) with baicalein to enhance the stability and solubility of baicalein in aqueous solution. We examined the effects of inclusion complexes of cysteinyl β-CD on collagen synthesis following ultraviolet (UV) irradiation, as well as the mechanisms underlying its effects. Our findings demonstrated that baicalein significantly restored collagen synthesis in the UV-exposed human fibroblast Hs68 cells. In addition, synthetic cysteine functionalized β-CDs were found to promote baicalein-induced collagen synthesis. Inclusion complexes of cysteinyl β-CDs with baicalein significantly upregulated the protein expression of type I collagen and activated the transcription of type I, II, and III collagen. Inclusion complexes of cysteinyl β-CDs with baicalein also downregulated matrix metalloproteinase -1 and -3, and α-smooth muscle actin expression. In addition, inclusion complexes of cysteinyl β-CDs with baicalein attenuated the expression of caveolin-1, but this treatment enhanced the UV-induced phosphorylation of Smad in the transforming growth factor-β pathway. These results suggested that the newly synthesized derivative of CD can be used as a complexing agent to enhance the bioavailability of flavonoids such as baicalein, especially in restoring collagen synthesis."	"The influence of osteopontin-guided collagen intrafibrillar mineralization on pericyte differentiation and vascularization of engineered bone scaffolds. Biomimetically mineralized collagen scaffolds are promising for bone regeneration, but vascularization of these materials remains to be addressed. Here, we engineered mineralized scaffolds using an osteopontin-guided polymer-induced liquid-precursor mineralization method to recapitulate bone's mineralized nanostructure. SEM images of mineralized samples confirmed the presence of collagen with intrafibrillar mineral, also EDS spectra and FTIR showed high peaks of calcium and phosphate, with a similar mineral/matrix ratio to native bone. Mineralization increased collagen compressive modulus up to 15-fold. To evaluate vasculature formation and pericyte-like differentiation, HUVECs and hMSCs were seeded in a 4:1 ratio in the scaffolds for 7 days. Moreover, we used RT-PCR to investigate the gene expression of pericyte markers ACTA2, desmin, CD13, NG2, and PDGFRβ. Confocal images showed that both nonmineralized and mineralized scaffolds enabled endothelial capillary network formation. However, vessels in the nonmineralized samples had longer vessel length, a larger number of junctions, and a higher presence of αSMA<sup>+</sup> mural cells. RT-PCR analysis confirmed the downregulation of pericytic markers in mineralized samples. In conclusion, although both scaffolds enabled endothelial capillary network formation, mineralized scaffolds presented less pericyte-supported vessels. These observations suggest that specific scaffold characteristics may be required for efficient scaffold vascularization in future bone tissue engineering strategies. © 2018 Wiley Periodicals, Inc. J Biomed Mater Res Part B: Appl Biomater 107B: 1522-1532, 2019."	"Accelerated Glomerular Cell Senescence in Experimental Lupus Nephritis. BACKGROUND The aim of this study was to determine whether senescence in renal glomeruli is involved in lupus nephritis (LN); the expression of senescence-associated β-galactosidase (SA-β-Gal) and its association with glomerular lesions were investigated in a mouse model of LN. MATERIAL AND METHODS Eighteen MRL/lpr mice with severe proteinuria were randomly divided into 2 equal groups and intraperitoneally injected with dexamethasone (DEX) or saline; 4 age-matched mice with mild proteinuria served as controls. Serum creatinine and urinary protein levels were analyzed, and kidney histological changes were observed by periodic acid-Schiff and Sirius Red staining. SA-β-Gal was detected via histochemistry. Glomerular expression of collagen IV, α-SMA, and nephrin was analyzed by immunohistochemistry, and glomerular complement C3 deposition was tested by immunofluorescence. The relationships between SA-β-Gal expression and renal function or glomerular lesion markers were determined by Spearman's correlation analysis. RESULTS Mice with severe proteinuria exhibited glomerular segmental sclerosis and endothelial cell proliferation. DEX administration suppressed these lesions but had no significant effect on 24-hour urinary protein levels. The elevated glomerular expression of SA-β-Gal in proteinuric mice was attenuated by DEX treatment. In addition, DEX treatment markedly downregulated glomerular C3 deposition and collagen IV and α-SMA expression, while significantly increasing nephrin expression. Furthermore, SA-β-Gal expression was positively correlated with urinary protein levels and expression of α-SMA. CONCLUSIONS Accelerated senescence of glomerular cells may contribute to glomerular injury in LN."	"Expanding the Distinctive Neuroimaging Phenotype of ACTA2 Mutations. Arg179His mutations in ACTA2 are associated with a distinctive neurovascular phenotype characterized by a straight course of intracranial arteries, absent basal Moyamoya collaterals, dilation of the proximal internal carotid arteries, and occlusive disease of the terminal internal carotid arteries. We now add to the distinctive neuroimaging features in these patients by describing their unique constellation of brain malformative findings that could flag the diagnosis in cases in which targeted cerebrovascular imaging has not been performed. Neuroimaging studies from 13 patients with heterozygous Arg179His mutations in ACTA2 and 1 patient with pathognomonic clinicoradiologic findings for ACTA2 mutation were retrospectively reviewed. The presence and localization of brain malformations and other abnormal brain MR imaging findings are reported. Characteristics bending and hypoplasia of the anterior corpus callosum, apparent absence of the anterior gyrus cinguli, and radial frontal gyration were present in 100% of the patients; flattening of the pons on the midline and multiple indentations in the lateral surface of the pons were demonstrated in 93% of the patients; and apparent &quot;squeezing&quot; of the cerebral peduncles in 85% of the patients. Because α-actin is not expressed in the brain parenchyma, only in vascular tissue, we speculate that rather than a true malformative process, these findings represent a deformation of the brain during development related to the mechanical interaction with rigid arteries during the embryogenesis."	"Continuous exposure of nicotine and cotinine retards human primary pterygium cell proliferation and migration. Pterygium is a triangular-shaped hyperplastic growth, characterized by conjunctivalization, inflammation, and connective tissue remodeling. Our previous meta-analysis found that cigarette smoking is associated with a reduced risk of pterygium. Yet, the biological effect of cigarette smoke components on pterygium has not been studied. Here we reported the proliferation and migration properties of human primary pterygium cells with continuous exposure to nicotine and cotinine. Human primary pterygium cells predominantly expressed the α5, β1, and γ subunits of the nicotinic acetylcholine receptor. Continuous exposure to the mixture of 0.15 μM nicotine and 2 μM cotinine retarded pterygium cell proliferation by 16.04% (P = 0.009) and hindered their migration by 11.93% ( P = 0.039), without affecting cell apoptosis. SNAIL and α-smooth muscle actin protein expression was significantly downregulated in pterygium cells treated with 0.15 μM nicotine-2 μM cotinine mixture by 1.33- ( P = 0.036) and 1.31-fold ( P = 0.001), respectively. Besides, the 0.15 μM nicotine-2 μM cotinine mixture also reduced matrix metalloproteinase (MMP)-1 and MMP-9 expressions in pterygium cells by 1.56- ( P = 0.043) and 1.27-fold ( P = 0.012), respectively. In summary, this study revealed that continuous exposure of nicotine and cotinine inhibited human primary pterygium cell proliferation and migration in vitro by reducing epithelial-to-mesenchymal transition and MMP protein expression, partially explaining the lower incidence of pterygium in cigarette smokers."	"Knockdown of LOXL1 inhibits TGF-β1-induced proliferation and fibrogenesis of hepatic stellate cells by inhibition of Smad2/3 phosphorylation. Liver fibrosis is pathological condition that seriously threatens human health. The lysyl oxidase (LOX) family has been reported to promote liver fibrosis. However, the effect of LOX-like 1 (LOXL1), a member of LOX family, on fibrogenesis of hepatic stellate cells (HSCs) remains unknown. The current study aimed to investigate the role of LOXL1 in liver fibrosis and the potential mechanism. We found that the mRNA and protein levels of LOXL1 were increased in transforming growth factor-beta 1 (TGF-β1)-stimulated human hepatic stellate cell line LX-2. Knockdown of LOXL1 inhibited the proliferation of TGF-β1-stimulated LX-2 cells. Knockdown of LOXL1 suppressed TGF-β1-induced expression of metalloproteinase type 1 (TIMP1), α-smooth muscle actin (α-SMA), and collagen type I (Col-I), as well as phosphorylation of Smad2 and Smad3 in LX-2 cells. In addition, the cell proliferation and fibrogenesis mediated by TGF-β1 stimulation and LOXL1 overexpression were abolished by knockdown of Smad2 and Smad3. Collectively, knockdown of LOXL1 suppressed cell proliferation and fibrogenesis in TGF-β1-stimulated HSCs via regulating the phosphorylation of Smad2/3."	"The genetic architecture of aniridia and Gillespie syndrome. Absence of part or all of the iris, aniridia, is a feature of several genetically distinct conditions. This review focuses on iris development and then the clinical features and molecular genetics of these iris malformations. Classical aniridia, a panocular eye malformation including foveal hypoplasia, is the archetypal phenotype associated with heterozygous PAX6 loss-of-function mutations. Since this was identified in 1991, many genetic mechanisms of PAX6 inactivation have been elucidated, the commonest alleles being intragenic mutations causing premature stop codons, followed by those causing C-terminal extensions. Rarely, aniridia cases are associated with FOXC1, PITX2 and/or their regulatory regions. Aniridia can also occur as a component of many severe global eye malformations. Gillespie syndrome-a triad of partial aniridia, non-progressive cerebellar ataxia and intellectual disability-is phenotypically and genotypically distinct from classical aniridia. The causative gene has recently been identified as ITPR1. The same characteristic Gillespie syndrome-like iris, with aplasia of the pupillary sphincter and a scalloped margin, is seen in ACTA2-related multisystemic smooth muscle dysfunction syndrome. WAGR syndrome (Wilms tumour, aniridia, genitourinary anomalies and mental retardation/intellectual disability), is caused by contiguous deletion of PAX6 and WT1 on chromosome 11p. Deletions encompassing BDNF have been causally implicated in the obesity and intellectual disability associated with the condition. Lastly, we outline a genetic investigation strategy for aniridia in light of recent developments, suggesting an approach based principally on chromosomal array and gene panel testing. This strategy aims to test all known aniridia loci-including the rarer, life-limiting causes-whilst remaining simple and practical."	"Deletion of ACTA2 in mice promotes angiotensin II induced pathogenesis of thoracic aortic aneurysms and dissections. Mutation of the ACTA2 (α-2 smooth muscle actin) gene accounts for ~15% of all cases of familial thoracic aortic aneurysms and dissections. Surprisingly, no severe vascular phenotypes were observed at baseline in mice carrying this gene mutation. Our aim was to explore whether mutation of ACTA2 promotes the development of aneurysms or dissections in the presence of angiotensin II (AngII) and to determine whether this mutation has an impact on the phenotypic modulation and apoptosis mediated by AngII in vascular smooth muscle cells (VSMCs). Mice were divided into three groups: AngII stimulated-wild-type (WT) (AngII) and ACTA2<sup>-/-</sup> mice (ACTA2) group, in which AngII were administered subcutaneously into 8-week-old C57 mice and ACTA2<sup>-/-</sup> mice, respectively, for 4 weeks using osmotic minipumps, and the control group (WT), in which the WT mice were infused with normal saline (NS). Ultrasound was performed to quantify lumen diameters. RT-qPCR and Western blot were used to assess gene expression, and histobiochemistry was used to evaluate the pathological changes in the thoracoabdominal aortas. TUNEL was used to assess apoptosis in VSMCs. Compared with the AngII- group, the ACTA2 mice exhibited more severity of dilated lumena of the aortas, a significantly increased expression of osteopontin (OPN), an elevated ratio of Bax/Bcl-2, increased apoptosis, and a decreased expression of α-smooth muscle actin (α-SMA). Knockout of ACTA2 promoted AngII induced progressive lumen dilation of the aortas, apoptosis, and the phenotypic modulation in VSMCs in mice."	"Genetic and scRNA-seq Analysis Reveals Distinct Cell Populations that Contribute to Salivary Gland Development and Maintenance. Stem and progenitor cells of the submandibular salivary gland (SMG) give rise to, maintain, and regenerate the multiple lineages of mature epithelial cells including those belonging to the ductal, acinar, basal and myoepithelial subtypes. Here we have exploited single cell RNA-sequencing and in vivo genetic lineage tracing technologies to generate a detailed map of the cell fate trajectories and branch points of the basal and myoepithelial cell populations of the mouse SMG during embryonic development and in adults. Our studies show that the transcription factor p63 and alpha-smooth muscle actin (SMA) serve as faithful markers of the basal and myoepithelial cell lineages, respectively and that both cell types are endowed with progenitor cell properties. However, p63<sup>+</sup> basal and SMA<sup>+</sup> myoepithelial cells exhibit distinct cell fates by virtue of maintaining different cellular lineages during morphogenesis and in adults. Collectively, our results reveal the dynamic and complex nature of the diverse SMG cell populations and highlight the distinct differentiation potential of the p63 and SMA expressing subtypes in the stem and progenitor cell hierarchy. Long term these findings have profound implications towards a better understanding of the molecular mechanisms that dictate lineage commitment and differentiation programs during development and adult gland maintenance."	"Effects of fibrin glue as a three-dimensional scaffold in cultivated adult human retinal pigment epithelial cells. This study was conducted to examine morphological, genotypic, and phenotypic alterations occurring in cultured adult human retinal pigment epithelial cells when encapsulated with different concentrations of fibrin glue. Cultivated adult human retinal pigment epithelial cells were encapsulated with different concentrations of fibrin glue, namely FG1 (42 mg/dl), FG2 (84 mg/dl), FG3 (124 mg/dl), FG4 (210 mg/dl), followed by the evaluation of genetic and cytomorphological changes and protein expression. Cultured adult human retinal pigment epithelial cells showed dendritiform morphology during the early days of encapsulation with fibrin glue. Moreover, an increasing inhibitory effect on cell growth was observed with increasing concentrations of fibrin glue. At the transcriptional level, the expression of MMP2, PAX6, and ITGB1 in FG1-encapsulated cells was significantly higher than that in other treated groups; however, the expression of ACTA2 was lower in all fibrin glue-encapsulated groups compared to that in the controls. Immunocytochemistry showed that FG2-encapsulated cells expressed cytokeratin 8/18, RPE65, and ZO-1 proteins, but not PAX6. In conclusion, fibrin glue at a concentration of 84 mg/dl allows proper encapsulation of adult human retinal pigment epithelial cells, while preserving the morphometric, genotypic, and phenotypic features of the cells. This three-dimensional biopolymer can be considered a reliable vehicle for retinal pigment epithelium cell transplantation in cell-based therapies."	"5-HT2 and 5-HT2B antagonists attenuate pro-fibrotic phenotype in human adult dermal fibroblasts by blocking TGF-β1 induced non-canonical signaling pathways including STAT3 : implications for fibrotic diseases like scleroderma. Release of 5-hydroxytryptamine (5-HT; serotonin) from activated platelets following microvascular injury leads to tissue fibrosis. 5-HT strongly induces extracellular matrix synthesis in dermal fibroblasts in a transforming growth factor beta 1 (TGF-β1)-dependent manner. To evaluate anti-fibrotic properties of inhibitors of 5-HT2 and 5-HT2B (terguride, SB204741) respectively in human adult dermal fibroblasts (HADF) derived from a patient with scleroderma. Anti-fibrotic efficacy of 5-HT2 and 5-HT2B inhibitors was evaluated as per two strategies: HADF were incubated with 5-HT (1 μM)/TGF-β1 (10 ng/mL) for 1 hour followed by 5-HT (1 μM)/TGF-β1 (10 ng/mL) and terguride or SB204741 (1 μM, each) for 24 hours (post-treatment strategy) and HADF were treated with terguride or SB204741 (1 μM, each) for 1 hour followed by 5-HT (1 μM)/TGF-β1 (10 ng/mL) for 24 hours (pre-treatment strategy). Real time quantitative polymerase chain reaction for expression of pro-fibrotic (TGFΒ1, COL1A1, COL1A2, ACTA2, CTGF and FN1) and anti-fibrotic genes (MMP2/TIMP1) was performed. Expression of type I collagen, alpha smooth muscle actin (α-SMA), phosphorylation of Smad3, ERK1/2 and STAT3 was examined by immunoblotting. Stimulation of HADF cells with 5-HT/TGF-β1 led to the increased expression of pro-fibrotic genes which was significantly reduced by both terguride and SB204741. Expression of anti-fibrotic genes was not affected upon incubation with the inhibitors. In 5-HT-stimulated HADF, treatment with terguride and SB204741 decreased type I collagen and α-SMA. In 5-HT/TGF-β1 stimulated HADF, terguride and SB204741 treatment reduced ERK1/2 and STAT3 phosphorylation but did not influence Smad3 phosphorylation. Terguride and SB204741 reduce pro-fibrotic potential of HADF cells and suppress TGF-β1-mediated non-canonical pathways, ERK1/2 and STAT3 which have been implicated in the regulation of pro-fibrotic genes and in the development of fibrosis. Taken together, our data suggest that 5-HT inhibitors might reduce fibrosis via suppression of TGF-beta1-mediated non-canonical signaling pathways. These observations have important therapeutic implications for fibrotic disorders like scleroderma."	"Integrin β3 Mediates the Endothelial-to-Mesenchymal Transition via the Notch Pathway. Neointimal hyperplasia is responsible for stenosis, which requires corrective vascular surgery, and is also a major morphological feature of many cardiovascular diseases. This hyperplasia involves the endothelial-to-mesenchymal transition (EndMT). We investigated whether integrin β3 can modulate the EndMT, as well as its underlying mechanism. Integrin β3 was overexpressed or knocked down in human umbilical vein endothelial cells (HUVECs). The expression of endothelial markers and mesenchymal markers was determined by real-time reverse transcription PCR (RT-PCR), immunofluorescence staining, and western blot analysis. Notch signaling pathway components were detected by real-time RT-PCR and western blot analysis. Cell mobility was evaluated by wound-healing, Transwell, and spreading assays. Fibroblast-specific protein 1 (FSP-1) promoter activity was determined by luciferase assay. Transforming growth factor (TGF)-β1 treatment or integrin β3 overexpression significantly promoted the EndMT by downregulating VE-cadherin and CD31 and upregulating smooth muscle actin α and FSP-1 in HUVECs, and by enhancing cell migration. Knockdown of integrin β3 reversed these effects. Notch signaling was activated after TGF-β1 treatment of HUVECs. Knockdown of integrin β3 suppressed TGF-β1-induced Notch activation and expression of the Notch downstream target FSP-1. Integrin β3 may promote the EndMT in HUVECs through activation of the Notch signaling pathway."	"Modulation of human corneal stromal cell differentiation by hepatocyte growth factor and substratum compliance. Corneal wound healing is a complex process that consists of cellular integration of multiple soluble biochemical cues and cellular responses to biophysical attributes associated with the matrix of the wound space. Upon corneal stromal wounding, the transformation of corneal fibroblasts to myofibroblasts is promoted by transforming growth factor-β (TGFβ). This process is critical for wound healing; however, excessive persistence of myofibroblasts in the wound space has been associated with corneal fibrosis resulting in severe vision loss. The objective of this study was to determine the effect of hepatocyte growth factor (HGF), which can modulate TGFβ signaling, on corneal myofibroblast transformation by analyzing the expression of α-smooth muscle actin (αSMA) as a marker of myofibroblast phenotype particularly as it relates to biomechanical cues. Human corneal fibroblasts were cultured on tissue culture plastic (&gt;1 GPa) or hydrogel substrates mimicking human normal or wounded corneal stiffness (25 and 75 kPa) in media containing TGFβ1 ± HGF. The expression of αSMA was analyzed by quantitative PCR, Western blot and immunocytochemistry. Cellular stiffness, which is correlated with cellular phenotype, was measured by atomic force microscopy (AFM). In primary human corneal fibroblasts, the mRNA expression of αSMA showed a clear dose response to TGFβ1. The expression was significantly suppressed when cells were incubated with 20 ng/ml HGF in the presence of 2 ng/ml of TGFβ1. The protein expression of αSMA induced by 5 ng/ml TGFβ1 was also decreased by 20 ng/ml of HGF. Cells cultured on hydrogels mimicking human normal (25 kPa) and fibrotic (75 kPa) cornea also showed an inhibitory effect of HGF on αSMA expression in the presence or absence of TGFβ1. Cellular stiffness was decreased by HGF in the presence of TGFβ1 as measured by AFM. In this study, we have demonstrated that HGF can suppress the myofibroblast phenotype promoted by TGFβ1 in human corneal stromal cells. These data suggest that HGF holds the potential as a therapeutic agent to improve wound healing outcomes by minimizing corneal fibrosis."	"Lineage Identity and Location within the Dermis Determine the Function of Papillary and Reticular Fibroblasts in Human Skin. Human skin dermis is composed of the superficial papillary dermis and the reticular dermis in the lower layers, which can easily be distinguished histologically. In vitro analyses of fibroblasts from explant cultures from superficial and lower dermal layers suggest that human skin comprises at least two fibroblast lineages with distinct morphology, expression profiles, and functions. However, while for mouse skin cell surface markers have been identified, allowing the isolation of pure populations of one lineage or the other via FACS, this has not been achieved for human skin fibroblasts. We have now discovered two cell surface markers that discriminate between papillary and reticular fibroblasts. While FAP<sup>+</sup>CD90<sup>-</sup> cells display increased proliferative potential, express PDPN and NTN1, and cannot be differentiated into adipocytes, FAP<sup>-</sup>CD90<sup>+</sup> fibroblasts express high levels of ACTA2, MGP, PPARγ, and CD36 and readily undergo adipogenic differentiation, a hallmark of reticular fibroblasts. Flow cytometric analysis of fibroblasts isolated from superficial and lower layers of human dermis showed that FAP<sup>+</sup>CD90<sup>-</sup> cells are enriched in the papillary dermis. Altogether, functional analysis and expression profiling confirms that FAP<sup>+</sup>CD90<sup>-</sup> cells represent papillary fibroblasts, whereas FAP<sup>-</sup>CD90<sup>+</sup> fibroblasts derive from the reticular lineage. Although papillary and reticular fibroblasts are enriched in the upper or lower dermis, respectively, they are not spatially restricted, and the microenvironment seems to affect their function."	"Plasma gelsolin promotes re-epithelialization. Woundhealing disorders characterized by impaired or delayed re-epithelialization are a serious medical problem that is painful and difficult to treat. Gelsolin (GSN), a known actin modulator, supports epithelial cell regeneration and apoptosis. The aim of this study was to estimate the potential of recombinant gelsolin (rhu-pGSN) for ocular surface regeneration to establish a novel therapy for delayed or complicated wound healing. We analyzed the influence of gelsolin on cell proliferation and wound healing in vitro, in vivo/ex vivo and by gene knockdown. Gelsolin is expressed in all tested tissues of the ocular system as shown by molecular analysis. The concentration of GSN is significantly increased in tear fluid samples of patients with dry eye disease. rhu-pGSN induces cell proliferation and faster wound healing in vitro as well as in vivo/ex vivo. TGF-β dependent transcription of SMA is significantly decreased after GSN gene knockdown. Gelsolin is an inherent protein of the ocular system and is secreted into the tear fluid. Our results show a positive effect on corneal cell proliferation and wound healing. Furthermore, GSN regulates the synthesis of SMA in myofibroblasts, which establishes GSN as a key protein of TGF-β dependent cell differentiation."	"Role of Cyclic Adenosine Monophosphate in Myopic Scleral Remodeling in Guinea Pigs: A Microarray Analysis. Myopia induction accompanies increased scleral cyclic adenosine phosphate (cAMP) levels and collagen degradation in mammalian models. We compared the scleral gene expression changes following monocular form deprivation (FD) with those induced by adenylate cyclase activation with forskolin (FSK) in guinea pigs. Guinea pigs were assigned to FD, FSK-treated, and age-matched (AM) control groups. FSK was injected monocularly into the inferior palpebral subconjunctiva daily for 4 days. After scleral RNA extraction, a gene microarray scanner and software were used to evaluate the gene expression patterns, followed by pathway analysis using Gene Ontology tools. Quantitative PCR (qPCR) was used to analyze the expression of 10 candidate genes in separate sets of form-deprived, vehicle-injected, and AM animals. FSK injections differentially regulated 13 collagen subtypes compared to AM and FD groups. FSK also downregulated Acta2 and Tgf-β2 compared to the AM eyes. Collagen subtypes and Acta2 underwent larger downregulation in the FSK group than during FD. FSK differentially regulated Rarb, Rxrg, Fzd5, Ctnnd2, Dkk2, and Dkk3, which have been linked to ocular growth. Only a few genes were differentially expressed between the FD and AM groups. There was 80% agreement in the direction of gene regulation between microarray and qPCR results. No significant differences were identified between vehicle-injected and AM eyes. Collagen, a major scleral extracellular matrix component, is degraded during myopia. Given that FSK and FD both promote myopia through increased collagen degradation, targeting cAMP signaling pathway genes could suppress myopia development."	"Intestinal Activation of pH-Sensing Receptor OGR1 [GPR68] Contributes to Fibrogenesis. pH-sensing ovarian cancer G-protein coupled receptor-1 [OGR1/GPR68] is regulated by key inflammatory cytokines. Patients suffering from inflammatory bowel diseases [IBDs] express increased mucosal levels of OGR1 compared with non-IBD controls. pH-sensing may be relevant for progression of fibrosis, as extracellular acidification leads to fibroblast activation and extracellular matrix remodelling. We aimed to determine OGR1 expression in fibrotic lesions in the intestine of Crohn's disease [CD] patients, and the effect of Ogr1 deficiency in fibrogenesis. Human fibrotic and non-fibrotic terminal ileum was obtained from CD patients undergoing ileocaecal resection due to stenosis. Gene expression of fibrosis markers and pH-sensing receptors was analysed. For the initiation of fibrosis in vivo, spontaneous colitis by Il10-/-, dextran sodium sulfate [DSS]-induced chronic colitis and the heterotopic intestinal transplantation model were used. Increased expression of fibrosis markers was accompanied by an increase in OGR1 [2.71 ± 0.69 vs 1.18 ± 0.03, p = 0.016] in fibrosis-affected human terminal ileum, compared with the non-fibrotic resection margin. Positive correlation between OGR1 expression and pro-fibrotic cytokines [TGFB1 and CTGF] and pro-collagens was observed. The heterotopic animal model for intestinal fibrosis transplanted with terminal ileum from Ogr1-/- mice showed a decrease in mRNA expression of fibrosis markers as well as a decrease in collagen layer thickness and hydroxyproline compared with grafts from wild-type mice. OGR1 expression was correlated with increased expression levels of pro-fibrotic genes and collagen deposition. Ogr1 deficiency was associated with a decrease in fibrosis formation. Targeting OGR1 may be a potential new treatment option for IBD-associated fibrosis."	"Apigenin alleviates TGF-β1-induced nasal mucosa remodeling by inhibiting MAPK / NF-kB signaling pathways in chronic rhinosinusitis. Chronic rhinosinusitis is involved in tissue remodeling of nasal mucosa such as nasal myofibroblast differentiation and extracellular matrix production. Apigenin (4',5,7-trihydroxyflavone) is a bioflavonoid compound and has anti-tissue remodeling characteristics. The aims of this study were to evaluate the effect of apigenin on TGF-β1-induced myofibroblast differentiation and extracellular matrix accumulation and to determine the underlying mechanism. Nasal fibroblasts and ex vivo nasal inferior turbinate tissues were stimulated with TGF-β1 with or without apigenin. The expression levels of α-SMA, fibronectin and collagen type I were determined by real-time PCR, western blot and immunocytochemical staining. Mitogen-activated protein kinase (MAPK) phosphorylation induced by TGF-β1 were determined by western blot analysis. The transcriptional activity of NF-κB was measured by luciferase assay. Migration effects of fibroblasts were evaluated by wound scratch and transwell migration assay. Contractile activity was determined by collagen gel contraction assay. The expression levels of α-SMA, fibronectin, and collagen type I significantly increased in TGF-β1-stimulated nasal fibroblasts. In TGF-β1-stimulated nasal fibroblasts, apigenin inhibited the expressions of α-SMA, fibronectin, and collagen type I. Inhibitors of MAPK (p-38, JNK) and NF-κB blocked the expression of α-SMA, fibronectin and collagen type I. Apigenin suppressed the activation of MAPK (p-38, JNK) and NF-κB induced by TGF-β1 treatment. Apigenin also inhibited the functional activity of fibroblasts by reducing the migration and collagen contractile activities. These results suggests the possible use of apigenin as a chronic rhinosinusitis therapeutic agent which can suppress tissue remodeling in nasal mucosa."	"The role of pirfenidone in alkali burn rat cornea. To evaluate the effects of pirfenidone in the treatment of HUVEC using an in vitro model and on rat corneal wound healing, edema, cornea neovascularization (CNV) and inflammation after alkali burn in vivo model. In vitro, CCK-8 assay was used to detect the effect of pirfenidone on the viability of HUVECs. The effects of pirfenidone on migration and tube formation of HUVEC were evaluated by HUVEC cell wound closure and tube formation assay. In vivo, Eye drops containing pirfenidone or phosphate buffered saline (PBS) were administered to an alkali-burn-induced corneal inflammatory and neovascularization model four times daily. The clinical evaluations, including fluorescent staining and cornea edema, were performed on days 1, 4, 7 and 14 using slit lamp microscopy. Global specimens were collected on day 7 and processed for immunofluorescent staining Collagen IV, α-smooth muscle actin (α-SMA), vascular endothelial growth factor (VEGF), pigment epithelium derived factor (PEDF) and cluster of differentiation34 (CD34). The levels of α-SMA, VEGF, PEDF, CD34, CD31 and nuclear factor-kappa B (NF-κB) proteins in the corneas were determined by western blot. Pirfenidone affects HUVEC viability, migration and tube formation in a dose-dependent manner. High concentration of pirfenidone can inhibit HUVEC viability, migration and tube formation in vitro and reduce alkali burn rat cornea edema, promote corneal wound healing, inhibit CNV and inflammation after alkali burn in vivo. Pirfenidone promotes corneal wound healing, and inhibits cornea neovascularization and inflammation after alkali burn in vitro and in vivo. Pirfenidone may be the potential anti-inflammation agent for the clinical treatment of CNV."	"Adipose tissue-derived stromal cells are sources of cancer-associated fibroblasts and enhance tumor progression by dense collagen matrix. Although recent studies revealed that adipose tissue accelerates pancreatic tumor progression with excessive extracellular matrix, key players for desmoplasia in the adipose microenvironment remains unknown. Here, we investigated the roles of adipose tissue-derived stromal cells (ASCs) in desmoplastic lesions and tumor progression by in vitro and in vivo experiments. In a three-dimensional (3-D) organotypic fat invasion model using visceral fat from CAG-EGFP mice, GFP-positive fibroblastic cells infiltrated toward cancer cells. When tumor cells were inoculated into transplanted visceral fat pads in vivo, tumor weights and stromal components were enhanced compared to subcutaneous and orthotopic tumor cells inoculated without fat pads. Expression of αSMA in established human ASCs was lower compared to cancer associated fibroblasts, and the 3-D collagen matrices produced by ASCs cultured in cancer cell-conditioned medium changed from loose to dense structures that affected the motility of cancer cells. Microarray analyses revealed upregulation of S100A4 in ASCs, while S100A4-positive stromal cells were observed at extrapancreatic invasion sites of human pancreatic cancer. The present findings indicate that ASCs are recruited to extrapancreatic invasion sites and produce dense collagen matrices that lead to enhanced tumor progression. Both inhibition of ASCs recruitment and activation could lead to a novel antistromal therapy."	"The conundrum of cryptogenic cirrhosis: Adverse outcomes without treatment options. Although patients with cryptogenic cirrhosis have historically been considered as having &quot;burnt-out&quot; non-alcoholic steatohepatitis (NASH), some controversy remains. The aim of this study was to compare outcomes of patients with cryptogenic cirrhosis and NASH-related cirrhosis from a cohort with longitudinal follow-up data. Patients with cryptogenic cirrhosis or NASH cirrhosis were screened for a clinical trial. Patients with &lt;5% hepatic steatosis regardless of other histologic features were considered to have cryptogenic cirrhosis. Clinico-laboratory data and adjudicated liver-related events (e.g. decompensation, qualification for transplantation, death) were available. A total of 247 patients with cirrhosis (55.3 ± 7.4 years, 37% male) were included; 144 had NASH cirrhosis and 103 had cryptogenic cirrhosis. During a median follow-up of 29 (IQR 21-33) months (max 45 months), 20.6% of patients had liver-related clinical events. Patients with NASH cirrhosis and cryptogenic cirrhosis were of a similar age and gender, as well as having a similar body mass index, PNPLA3 rs738409 genotype, and prevalence of diabetes (p &gt;0.05). However, patients with cryptogenic cirrhosis had higher serum fibrosis markers and greater collagen content and α-smooth muscle actin expression on liver biopsy. Compared to cirrhotic patients with NASH, patients with cryptogenic cirrhosis experienced significantly shorter mean time to liver-related clinical events (12.0 vs. 19.4 months; p = 0.001) with a hazard ratio of 1.76 (95% CI 1.02-3.06). Populations with NASH and cryptogenic cirrhosis have similar demographics, but patients with cryptogenic cirrhosis have evidence of more active fibrosis and a higher risk of liver-related clinical events. Thus, we believe these patients belong to the same spectrum of disease, with cryptogenic cirrhosis representing a more advanced stage of fibrosis. Significant liver damage and cirrhosis of the liver may develop without a known cause - a liver disease referred to as cryptogenic cirrhosis. In this work we found that, in the presence of metabolic abnormalities, cryptogenic cirrhosis may actually be a part of the non-alcoholic fatty liver disease spectrum. Yet, it appears to be more progressive than typical non-alcoholic fatty liver disease, leading to advanced liver disease at a faster rate."	"Wilms' tumor 1 drives fibroproliferation and myofibroblast transformation in severe fibrotic lung disease. Wilms' tumor 1 (WT1) is a critical transcriptional regulator of mesothelial cells during lung development but is downregulated in postnatal stages and adult lungs. We recently showed that WT1 is upregulated in both mesothelial cells and mesenchymal cells in the pathogenesis of idiopathic pulmonary fibrosis (IPF), a fatal fibrotic lung disease. Although WT1-positive cell accumulation leading to severe fibrotic lung disease has been studied, the role of WT1 in fibroblast activation and pulmonary fibrosis remains elusive. Here, we show that WT1 functions as a positive regulator of fibroblast activation, including fibroproliferation, myofibroblast transformation, and extracellular matrix (ECM) production. Chromatin immunoprecipitation experiments indicate that WT1 binds directly to the promoter DNA sequence of α-smooth muscle actin (αSMA) to induce myofibroblast transformation. In support, the genetic lineage tracing identifies WT1 as a key driver of mesothelial-to-myofibroblast and fibroblast-to-myofibroblast transformation. Importantly, the partial loss of WT1 was sufficient to attenuate myofibroblast accumulation and pulmonary fibrosis in vivo. Further, our coculture studies show that WT1 upregulation leads to non-cell autonomous effects on neighboring cells. Thus, our data uncovered a pathogenic role of WT1 in IPF by promoting fibroblast activation in the peripheral areas of the lung and as a target for therapeutic intervention."	"S100A4<sup>+</sup> Macrophages Are Necessary for Pulmonary Fibrosis by Activating Lung Fibroblasts. S100A4, a calcium-binding protein, can promote pulmonary fibrosis via fibroblast activation. Due partly to its various cellular origins, the exact role of S100A4 in the development of lung fibrosis remains elusive. Here, we show that in the bronchoalveolar lavage fluid, numbers of S100A4<sup>+</sup> macrophages correlated well with S100A4 protein levels and occurrence of idiopathic pulmonary fibrosis (IPF) in patients. A mouse model of bleomycin-induced pulmonary fibrosis demonstrated S100A4<sup>+</sup> macrophages as main source for extracellular S100A4 in the inflammatory phase. In vitro studies revealed that extracellular S100A4 could activate both mouse and human lung fibroblasts by upregulation of α-SMA and type I collagen, during which sphingosine-1-phosphate (S1P) increased. Inhibiting the S1P receptor subtypes S1P1/S1P3 abrogated fibroblast activation. Accordingly, absence or neutralization of S100A4 significantly attenuated bleomycin-induced lung fibrosis in vivo. Importantly, adoptive transfer of S100A4<sup>+</sup> but not of S100A4<sup>-</sup> macrophages installed experimental lung injury in S100A4<sup>-/-</sup> mice that were otherwise not sensitive to fibrosis induction. Taken together, S100A4 released by macrophages promotes pulmonary fibrosis through activation of lung fibroblasts which is associated with S1P. This suggests that extracellular S100A4 or S100A4<sup>+</sup> macrophages within the lung as promising targets for early clinical diagnosis or therapy of IPF."	"Human dendritic cell-specific ICAM-3-grabbing non-integrin downstream signaling alleviates renal fibrosis via Raf-1 activation in systemic candidiasis. We generated a human dendritic cell-specific ICAM-3-grabbing non-integrin (DC-SIGN) transgenic mouse in which renal tubular epithelial cells expressed DC-SIGN. The transgenic mice were infected with Candida albicans intravenously to study how DC-SIGN expression affected the pathogenesis of systemic candidiasis. We discovered that, while C. albicans infection induced renal fibrosis in both transgenic and littermate control mice, the transgenic mice had significantly lower levels of Acta2, Col1a2, Col3a1, and Col4a1 mRNA transcripts compared to the controls. KIM-1, an emerging biomarker for kidney injury, along with Tnf, Il6, and Tgfb1 transcripts, were lower in infected transgenic mice, and yet, the levels of Il10 remained comparable to the controls. While renal CD45<sup>+</sup> infiltrating cells were the source of Tnf, Il6, and Il10, LTL<sup>+</sup> renal proximal tubular epithelial cells were TGF-β1 producers in both infected transgenic and littermate controls. DC-SIGN-expressing tubular epithelial cells produced less TGF-β1 in response to C. albicans infection. In vivo experiments demonstrated that renal proximal tubular epithelial cell production of TGF-β1 was key to C. albicans-induced renal fibrosis and injury. Infection of transgenic mice induced a marked increase of phosphorylated Raf-1 and p38 in the kidney. However, ERK1/2 and JNK phosphorylation was more pronounced in the infected-littermate controls. Interestingly, treating the infected transgenic mice with a Raf-1 inhibitor increased the levels of the Tgfb1, Kim1, and Acta2 transcripts. These results indicate that DC-SIGN signaling, through activation of Raf-1 and p38 and suppression of JNK and ERK1/2 phosphorylation, reduces TGF-β1 production and C. albicans-induced renal fibrosis. Our study reveals for the first time the effect of DC-SIGN expression on C. albicans-induced renal fibrosis."	"Dual reporter genetic mouse models of pancreatic cancer identify an epithelial-to-mesenchymal transition-independent metastasis program. Epithelial-to-mesenchymal transition (EMT) is a recognized eukaryotic cell differentiation program that is also observed in association with invasive tumors. Partial EMT program in carcinomas imparts cancer cells with mesenchymal-like features and is proposed as essential for metastasis. Precise determination of the frequency of partial EMT program in cancer cells in tumors and its functional role in metastases needs unraveling. Here, we employed mesenchymal cell reporter mice driven by αSMA-Cre and Fsp1-Cre with genetically engineered mice that develop spontaneous pancreatic ductal adenocarcinoma (PDAC) to monitor partial EMT program. Both αSMA- and Fsp1-Cre-mediated partial EMT programs were observed in the primary tumors. The established metastases were primarily composed of cancer cells without evidence for a partial EMT program, as assessed by our fate mapping approach. In contrast, metastatic cancer cells exhibiting a partial EMT program were restricted to isolated single cancer cells or micrometastases (3-5 cancer cells). Collectively, our studies identify large metastatic nodules with preserved epithelial phenotype and potentially unravel a novel metastasis program in PDAC."	"Dimensions of the ciliary muscles of Brücke, Müller and Iwanoff and their associations with axial length and glaucoma. To assess the dimensions of Brücke's muscle, as the longitudinal portion, and of Müller's muscle and Iwanoff's muscle combined as circular and radial/reticular portions of the ciliary muscle. The histomorphometric study included human globes that had been enucleated due to an ocular tumor or end-stage glaucoma. After immunohistochemical staining of the ciliary muscles, the histology slides were examined under a light microscope applying a digitized image analysis system. The study included 55 globes [axial length 25.6 ± 3.0 mm (range 21.0 mm-36.0 mm)] from 55 patients [mean age, 33.7 ± 18.3 years (range:1-66 years)]. Length of Brücke's muscle (mean 3.40 ± 0.76 mm) increased with longer axial length (P &lt; 0.001; regression coefficient beta: 0.52) and was not significantly associated with age (P = 0.12), presence of glaucoma (P = 0.11) or Brücke's muscle thickness at the scleral spur (P = 0.32), at the site of the maximum thickness of the ciliary body (P = 0.84) or at the posterior end of Müller's/Iwanoff's muscle (P = 0.66), or with thickness (P = 0.29) and cross-sectional area (P = 0.85) of Müller's/Iwanoff's muscle. Mean distance between Brücke's muscle end and the ora serrata measured 1.73 ± 1.13 mm and increased with longer axial length (P &lt; 0.001; beta: 0.46). Distance from the scleral spur to the ora serrata (mean: 4.94 ± 1.42 mm; range: 3.08-9.09 mm) increased with longer axial length (P &lt; 0.001; beta: 0.61). Maximal thickness (mean: 245 ± 125 μm) and cross-section area (mean: 0.19 ± 0.11 mm<sup>2</sup>) of Müller's/Iwanoff's muscle decreased significantly with the diagnosis of glaucoma (P = 0.02;beta:-0.38) and longer axial length (P = 0.03; beta: -0.35). Length of Brücke's muscle increased with axial length of the globe, while its cross-sectional area was independent of axial length. Müller's/Iwanoff's muscle decreased in cross-sectional area with longer axis, and in particular with the presence of glaucoma, while the dimensions of Brücke's muscle were not related to glaucoma."	"[Angiofibroma of soft tissue: a clinicopathologic analysis of 24 cases]. Objective: To investigate the clinicopathologic and genetic features, pathologic diagnosis and differential diagnosis of angiofibroma of soft tissue(AFST). Methods: The clinicopathologic characteristics of 24 cases diagnosed at Fudan University Shanghai Cancer Center from 2011 to 2017 were analyzed; immunohistochemical staining and interphase fluorescence in situ hybridization (FISH) were performed, and the literatures were also reviewed. Results: There were 15 male and 9 female (male∶female=1.7∶1.0) patients with age of onset ranging from 8 to 68 years (mean, 45 years). Fourteen cases occurred in extremities, including upper limbs (n=3) and lower limbs (n=11); seven cases were in the trunk, and 1 case each was in the temporal region, retroperitoneum and liver, respectively. Clinically, the tumors usually presented as a slowly growing painless mass. Tumor sizes ranged from 0.8 to 14 cm (mean 4.6 cm). Microscopically, most lesions were well-circumscribed, with fibrous capsules. Few cases infiltrated the surrounding fibrofatty tissue focally. The tumors were mainly composed of sparse short spindle cells and numerous small, branching, thin-walled blood vessels distributed in amyxoid, fibromyxoid or collagenous matrix, often accompanied by medium-sized, round or irregular and ecstatic vessels at the tumor periphery.By immunohistochemistry, all tested cases expressed vimentin (5/5), and showed variable positivity for EMA (2/4), ER (1/2), PR (2/3), α-SMA (1/18)and desmin (1/10). Ki-67 proliferation index were all less than 5%. CD34, CD31 and ERG staining clearly outlined the contours of blood vessels in the stroma. Four cases were tested for NCOA2 gene rearrangement by FISH, of which three were positive. Follow-up data was available in 17 patients (range, 3 to 69 months; mean, 30 months) were all free of disease. Conclusions: Soft tissue angiofibroma is a benign fibroblastic neoplasm characterized by a prominent and complex vasculature set in a myxoid-to-collagenous stroma, and cytogenetically a distinctive NCOA2 gene rearrangement. Caution should be exercised for the possibility of potentially misinterpretation of AFST as vascular tumors and other myxoid soft tissue tumors. 目的: 探讨软组织血管纤维瘤(AFST)的临床病理特点、分子遗传学特征、病理诊断和鉴别诊断。 方法: 回顾性复习复旦大学附属肿瘤医院2011至2017年24例AFST的临床病理学资料,行形态学观察、免疫组织化学染色和荧光原位杂交并复习相关文献。 结果: 24例患者,男性15例,女性9例(男∶女=1.7∶1.0)。发病年龄8~68岁,平均年龄45岁。发生部位:四肢14例(上肢3例,下肢11例),躯干7例,颞部、腹膜后和肝脏各1例。临床上多表现为缓慢生长的无痛性肿块,直径0.8~14.0 cm,平均4.6 cm。镜下观察:多数肿瘤境界清楚,有纤维性包膜,少数病例局部浸润邻近的纤维脂肪组织。肿瘤主要由稀疏分布的短梭形细胞和丰富的薄壁分支状血管组成,分布于黏液样、纤维黏液样或胶原性间质中。周边均可见圆形或不规则形扩张的中等大血管。免疫组织化学标记:短梭形细胞主要表达波形蛋白(5/5),不同程度表达上皮细胞膜抗原(2/4)、雌激素受体(1/2)、孕激素受体(2/3)、α-平滑肌肌动蛋白(1/18)和结蛋白(1/10),Ki-67阳性指数均小于5%。CD34、CD31和ERG清晰显示肿瘤内血管的轮廓和分布。4例行荧光原位杂交检测,其中3例存在NCOA2基因相关易位。17例获得随访资料,随访时间3~69个月(平均30个月),均无瘤生存。 结论: AFST是一种良性纤维性肿瘤的新类型,以含有大量薄壁分支状小血管为特征,并显示特征性的NCOA2基因相关易位,需注意与血管性肿瘤及其他富含黏液样基质的软组织肿瘤相鉴别。."	"Mechanism of MEN1 gene in radiation-induced pulmonary fibrosis in mice. To investigate the regulatory mechanism of MEN1 gene in radiation-induced lung fibrosis in mice and provide a new theoretical basis for the clinical treatment of radiation pulmonary fibrosis. First, 80 C57BL/6 mice aged 8 weeks and weighing 18-22 g were selected, half of them were male and the other half were female. The mice were divided into control group and irradiation group (40 mice in each group) according to the method of the random number table. A radiation-induced lung fibrosis mouse model was established in which a single X-ray irradiation of 20 Gy was applied to the right lung in the irradiation group; H&amp;E and Masson staining were used to verify whether the model was successful at 4, 8, 16 and 24 weeks after irradiation. The expression of MEN1, smooth muscle actin (α-SMA), Collagen-1 and transforming growth factor (TGF-β) in lung tissue were detected by Western blot and qPCR. Secondly, in the mouse embryonic fibroblast cell line (MEF) and mouse lung epithelial cell line (MLE-12), we constructed cell models of MEN1 knockout and interference separately with the irradiation of 10 Gy X-rays. The expression of α-SMA, Collagen-1, and TGF-β/Smads signaling pathway molecules was detected by qPCR. Finally, using the immunoprecipitation (IP) method, we can detect the interaction between Smad2 and the protein menin encoded by the MEN1 gene. The results of the radiation pulmonary fibrosis model in mice showed that compared with the control group, the alveolar septum widens, the alveolar integrity decreases, the lung tissue slightly thickens, and a small amount of collagen deposits appear after 4-8 weeks in the model group. At twenty-fourth weeks, a large number of cells in the interstitial space of the lung tissue and a localized focal fibrosis area were observed. Further study found that radiation induced fibrogenic inflammatory cytokines TGF-β up-regulation, down-regulation of MEN1 gene expression, and then enhanced the expression of α-SMA and promotes the transformation of fibroblasts to myofibroblasts; At the same time, the expression of Collagen-1 was enhanced, which suggested that the extracellular matrix was overconcentrated and eventually promoted the formation of pulmonary fibrosis. In vitro, we found that knockout and interference of MEN1 gene can significantly enhance radiation-induced fibrosis, and up-regulate the expression of downstream molecules Smad2 and Smad3 of TGF-β signaling pathway, and down-regulate the expression of Smad7. Furthermore, it played an important role in regulating the process of radionuclide fibrosis. MEN1 plays a key role in the formation of pulmonary fibrosis by regulating the secretion of TGF-β and the activation of TGF-β/Smads signaling pathway."	"Essential role of suppressor of cytokine signaling 1 (SOCS1) in hepatocytes and macrophages in the regulation of liver fibrosis. The hepatic fibrogenic response is a protective mechanism activated by hepatocyte damage and is resolved upon elimination of the cause. However, persistent injuries cause liver fibrosis (LF) to evolve into cirrhosis, which promotes the development of hepatocellular carcinoma (HCC). Development of efficient treatments for LF requires better understanding the underlying molecular pathogenic mechanisms. The loss of suppressor of cytokine signaling 1 (SOCS1) expression promotes LF and HCC in human and mice, but the underlying mechanisms remain unclear. SOCS1 is a key regulator of immune cell activation. To investigate the anti-fibrogenic functions of SOCS1 in hepatocytes and macrophages, we generated mice lacking SOCS1 in hepatocytes (Socs1<sup>fl/fl</sup>Alb<sup>Cre</sup>) or macrophages (Socs1<sup>fl/fl</sup>LysM<sup>Cre</sup>) and evaluated hepatic fibrogenic response to carbon tetrachloride (CCl4). Socs1<sup>fl/fl</sup>Alb<sup>Cre</sup> and Socs1<sup>fl/fl</sup>LysM<sup>Cre</sup> mice showed severe LF characterized by increased collagen deposition, hydroxyproline content, myofibroblast accumulation along with elevated expression of Acta2 and Col1a1 genes. CCl4 treatment triggered significant damage to hepatocytes in Socs1<sup>fl/fl</sup>Alb<sup>Cre</sup> mice but not in Socs1<sup>fl/fl</sup>LysM<sup>Cre</sup> mice. In both mice CCl4 treatment reduced the expression of Mmp2 and increased the expression of Timp1. SOCS1 deficiency in hepatocytes or macrophages did not affect Il6, Tnfa or Tgfb, but diminished Infg and augmented Pdgfb expression. Both Socs1<sup>fl/fl</sup>Alb<sup>Cre</sup> and Socs1<sup>fl/fl</sup>LysM<sup>Cre</sup> livers showed increased mononuclear cell infiltration accompanied by elevated Ccl2 expression. Our findings show that SOCS1 exerts non-redundant functions in hepatocytes and macrophages to regulate the hepatic fibrogenic response possibly through limiting hepatocyte damage and the inflammatory response of macrophages, and support the idea of exploiting SOCS1 in LF treatment."	"Pulmonary endothelial cells exhibit sexual dimorphism in their response to hyperoxia. Abnormal pulmonary vascular development is a critical factor in the pathogenesis of bronchopulmonary dysplasia (BPD). Despite the well-established sex-specific differences in the incidence of BPD, the molecular mechanism(s) behind these are not completely understood. Exposure to a high concentration of oxygen (hyperoxia) contributes to BPD and creates a profibrotic environment in the lung. Our objective was to elucidate the sex-specific differences in neonatal human pulmonary microvascular endothelial cells (HPMECs) in normoxic and hyperoxic conditions, including the propensity for endothelial-to-mesenchymal transition. HPMECs (18- to 24-wk gestation donors, 6 male donors and 5 female donors) were subjected to hyperoxia (95% O2 and 5% CO2) or normoxia (air and 5% CO2) up to 72 h. We assessed cell migration and angiogenesis at baseline. Cell proliferation, viability, and expression of endothelial (CD31) and fibroblast markers (α-smooth muscle actin) were measured upon exposure to hyperoxia. Female HPMECs had significantly higher cell migration when assessed by the wound healing assay (40.99 ± 4.4%) compared with male HPMECs (14.76 ± 3.7%) and showed greater sprouting (1710 ± 962 μm in female cells vs. 789 ± 324 in male cells) compared with male endothelial cells in normoxia. Hyperoxia exposure decreased cell viability (by 9.8% at 48 h and 11.7% at 72 h) and proliferation (by 26.7% at 72 h) markedly in male HPMECs, whereas viability was sustained in female endothelial cells. There was greater expression of α-smooth muscle actin (2.5-fold) and decreased expression (5-fold) of CD31 in male HPMECs upon exposure to hyperoxia. The results indicate that cellular sex affects response in HPMECs in normoxia and hyperoxia. NEW &amp; NOTEWORTHY Cellular sex affects response in human neonatal pulmonary microvascular endothelial cells in normoxia and hyperoxia. Under normoxic conditions, female human neonatal pulmonary microvascular endothelial cells display greater migration and angiogenic sprouting compared with male endothelial cells. Compared with female endothelial cells, hyperoxia exposure decreased cell viability and proliferation and increased α-smooth muscle actin and decreased CD31 expression in male endothelial cells, indicating an increased endothelial-mesenchymal transition."	"rSjP40 suppresses hepatic stellate cell activation by promoting microRNA-155 expression and inhibiting STAT5 and FOXO3a expression. Activation of hepatic stellate cells (HSCs) is the central event of the evolution of hepatic fibrosis. Schistosomiasis is one of the pathogenic factors which could induce hepatic fibrosis. Previous studies have shown that recombinant Schistosoma japonicum egg antigen P40 (rSjP40) can inhibit the activation and proliferation of HSCs. MicroRNA-155 is one of the multifunctional noncoding RNA, which is involved in a series of important biological processes including cell development, proliferation, differentiation and apoptosis. Here, we try to observe the role of microRNA-155 in rSjP40-inhibited HSC activation and explore its potential mechanisms. We found that microRNA-155 was raised in rSjP40-treated HSCs, and further studies have shown that rSjP40 enhanced microRNA-155 expression by inhibiting STAT5 transcription. Up-regulated microRNA-155 can down-regulate the expression of FOXO3a and then participate in rSjP40-inhibited expression of α-smooth muscle actin (α-SMA) and collagen I. Furthermore, we observed microRNA-155 inhibitor could partially restore the down-regulation of FOXO3a, α-SMA and collagen I expression in LX-2 cells induced by rSjP40. Therefore, our research provides further insight into the mechanism by which rSjP40 could inhibit HSC activation via miR-155."	"Wild-type p53-modulated autophagy and autophagic fibroblast apoptosis inhibit hypertrophic scar formation. Hypertrophic scarring is a serious fibrotic skin disease, and the abnormal activation of hypertrophic scar fibroblasts (HSFs) intensifies its pathogenesis. Our previous studies have demonstrated that the dysregulation of autophagy in HSFs is associated with fibrosis. However, knowledge regarding the regulation of HS fibrosis by p53-modulated autophagy is limited. Here, we investigated the effect of p53-modulated autophagy on HS fibrosis. The overexpression of wtp53 (Adp53) promoted autophagic capacity and inhibited collagen and α-SMA expression in HSFs. In contrast, LC3 (AdLC3) overexpression did not suppress Col 1, Col 3, or α-SMA expression, but LC3 (shLC3) knockdown downregulated collagen expression. Adp53-modulated autophagy altered Bcl-2 and Bcl-xL expression, but AdLC3 affected only Bcl-xL expression. Silencing Bcl-xL suppressed collagen expression, but autophagy was also inhibited. Flow cytometry showed that the silencing of Bcl-2 (sibcl-2), Bcl-xL (sibcl-xL), and Adp53 significantly increased apoptosis in the HSFs. Therefore, wtp53 inhibited fibrosis in the HSFs by modulating autophagic HSF apoptosis; moreover, the inhibition of autophagy by sibcl-xL had antifibrotic effects. In addition, treatment with Adp53, AdLC3, shLC3, sibcl-2, and sibcl-xL reduced scar formation in a rabbit ear scar model. These data confirm that wtp53-modulated autophagy and autophagic HSF apoptosis can serve as potential molecular targets for HS therapy."	"Interventional Potential of Recombinant Feline Hepatocyte Growth Factor in a Mouse Model of Non-alcoholic Steatohepatitis. Background and Aims: Hepatocyte growth factor (HGF) is a multifunctional pleiotropic protein involved in tissue regeneration, protection, angiogenesis, anti-inflammatory and anti-fibrotic responses, and tumorigenesis, through binding to its receptor MET. Recombinant HGF protein has been shown to mitigate various liver disease models, such as alcohol-induced liver injury, hepatic ischemia-reperfusion injury, and fibrosis. This study aimed to investigate the anti-inflammatory, anti-fibrotic, and anti-lipogenic effects of exogenous administration of feline HGF on a non-alcoholic steatohepatitis (NASH) mouse model. Methods: Wild-type C57BL/6 mice were fed a choline-deficient amino acid defined (CDAA) diet for 3 weeks to create the mouse model of NASH, which displays hepatic steatosis, inflammation, injury, and very mild fibrosis. One mg/kg of recombinant feline HGF was administered intravenously daily in the last 7 days of the total 3 weeks of CDAA diet feeding. Then, hepatic steatosis, inflammation, injury, and fibrogenic gene expression was examined. Results: After 3 weeks of a CDAA diet-feeding, the vehicle-treated mice exhibited evident deposition of lipid droplets in hepatocytes, inflammatory cell infiltration, and hepatocyte ballooning along with increased serum ALT levels whereas recombinant HGF-treated mice showed reduced hepatic steatosis, inflammation, and ballooned hepatocytes with a reduction of serum ALT levels. Recombinant HGF administration promoted hepatocyte proliferation. Increased hepatic lipid accumulation was accompanied by elevated expression of lipogenesis genes Fasn and Dgat1 in vehicle-treated mice. In HGF-treated mice, these genes were reduced with a decrease of lipid accumulation in the liver. Consistent with the anti-inflammatory property of HGF, augmented macrophage infiltration and upregulation of chemokines, Cxcl1, Ccl2, and Ccl5 in the CDAA diet fed mice, were suppressed by the addition of the HGF treatment. Finally, we examined the fibrotic response. The vehicle-treated mice had mild fibrosis with upregulation of Col1a1, Acta2, Timp1, Tgfb1, and Serpine1 expression. Recombinant HGF treatment significantly suppressed fibrogenic gene expression and collagen deposition in the liver. Conclusion: Recombinant feline HGF treatment suppressed the progression of NASH in a CDAA diet feeding mouse model.This suggests that recombinant HGF protein has therapeutic potential for NASH."	"Activation of ferritinophagy is required for the RNA-binding protein ELAVL1/HuR to regulate ferroptosis in hepatic stellate cells. Ferroptosis is a recently recognized form of regulated cell death that is characterized by lipid peroxidation. However, the molecular mechanisms regulating ferroptosis are largely unknown. In this study, we report that the RNA-binding protein ELAVL1/HuR plays a crucial role in regulating ferroptosis in liver fibrosis. Upon exposure to ferroptosis-inducing compounds, ELAVL1 protein expression was remarkably increased through the inhibition of the ubiquitin-proteasome pathway. ELAVL1 siRNA led to ferroptosis resistance, whereas ELAVL1 plasmid contributed to classical ferroptotic events. Interestingly, upregulated ELAVL1 expression also appeared to increase autophagosome generation and macroautophagic/autophagic flux, which was the underlying mechanism for ELAVL1-enhanced ferroptosis. Autophagy depletion completely impaired ELAVL1-mediated ferroptotic events, whereas autophagy induction showed a synergistic effect with ELAVL1. Importantly, ELAVL1 promoted autophagy activation via binding to the AU-rich elements within the F3 of the 3'-untranslated region of BECN1/Beclin1 mRNA. The internal deletion of the F3 region abrogated the ELAVL1-mediated BECN1 mRNA stability, and, in turn, prevented ELAVL1-enhanced ferroptosis. In mice, treatment with sorafenib alleviated murine liver fibrosis by inducing hepatic stellate cell (HSC) ferroptosis. HSC-specific knockdown of ELAVL1 impaired sorafenib-induced HSC ferroptosis in murine liver fibrosis. Noteworthy, we retrospectively analyzed the effect of sorafenib on HSC ferroptosis in advanced fibrotic patients with hepatocellular carcinoma receiving sorafenib monotherapy. Attractively, ELAVL1 upregulation, ferritinophagy activation, and ferroptosis induction occurred in primary human HSCs from the collected human liver tissue. Overall, these results reveal novel molecular mechanisms and signaling pathways of ferroptosis, and also identify ELAVL1-autophagy-dependent ferroptosis as a potential target for the treatment of liver fibrosis. Abbreviations: ACTA2/alpha-SMA: actin, alpha 2, smooth muscle, aorta; ACTB/beta-actin: actin beta; ARE: AU-rich element; ATG: autophagy related; BDL: bile duct ligation; BECN1: beclin 1; BSO: buthionine sulfoximine; COL1A1: collagen type I alpha 1 chain; ELAVL1/HuR: ELAV like RNA binding protein 1; FDA: fluorescein diacetate; FTH1: ferritin heavy chain 1; GOT1/AST: glutamic-oxaloacetic transaminase 1; GPT/ALT: glutamic-pyruvic transaminase; GPX4: glutathione peroxidase 4; GSH: glutathione; HCC: hepatocellular carcinoma; HSC: hepatic stellate cell; LCM: laser capture microdissection; MAP1LC3B: microtubule associated protein 1 light chain 3 beta; MDA: malondialdehydep; NCOA4: nuclear receptor coactivator 4; PTGS2: prostaglandin-endoperoxide synthase 2; ROS: reactive oxygen species; SQSTM1/p62: sequestosome 1; TBIL: total bilirubin; TEM: transmission electron microscopy; TGFB1: trasforming growth factor beta 1; UTR: untranslated region; VA-Lip-ELAVL1-siRNA: vitamin A-coupled liposomes carrying ELAVL1-siRNA."	"Recent developments and new frontiers in childhood arterial ischemic stroke. This review will discuss important developments in childhood arterial ischemic stroke over the past decade, focusing on improved understanding of the causes, consequences, and targets for intervention. Risk factors for childhood arterial ischemic stroke are different to adults. Infections, particularly herpes group viruses, are important precipitants for stroke. Non-atherosclerotic arteriopathies are the most common cause of childhood arterial ischemic stroke and an important predictor of recurrent events. Recent advances include the identification of serum biomarkers for inflammation and endothelial injury, and imaging biomarkers to monitor for vascular progression. Multicenter trials of immunotherapies in focal cerebral arteriopathies are currently in development. Recognition of clinical and radiological phenotypic patterns has facilitated the discovery of multisystem disorders associated with arterial ischemic stroke including ACTA2 arteriopathy and adenosine deaminase 2 deficiency. Identification of these Mendelian disorders provide insights into genetic mechanisms of disease and have implications for medical and surgical management. In contrast to adults, there are long diagnostic delays in childhood arterial ischemic stroke. Refinement of pediatric Code Stroke protocols and clinical decision support tools are essential to improve diagnostic certainty and improve access to reperfusion therapies. Children do not recover better than adults following arterial ischemic stroke, with more than half of survivors having long-term impairments. The physical, cognitive, and behavioral consequences of childhood arterial ischemic stroke are increasingly reported but further research is required to understand their impact on participation, quality of life, psychosocial, and family functioning. Longitudinal studies and the use of advanced imaging techniques, to understand neurobiological correlates of functional reorganization, are essential to developing targeted intervention strategies to facilitate recovery."	"Matrine blocks AGEs- induced HCSMCs phenotypic conversion via suppressing Dll4-Notch pathway. Vascular smooth muscle cells (VSMCs) contractile- synthetic phenotypic conversion takes responsibility in the atherosclerotic plaque formation by abnormal synthesis, secretion and deposition of extracellular matrix (ECM). Matrine exerts therapeutic effects on both cardiovascular diseases and organ fibrosis. In this study, we investigated matrine's inhibitory effect and mechanisms on AGEs- induced VSMC contractile- synthetic phenotypic conversion. Cultured human coronary smooth muscle cells (HCSMCs) were exposed to AGEs. Matrine at serially diluted concentrations were used to treat the cells. HCSMCs phenotype was identified by immunofluorescent staining of contractile phenotypic markers including mooth muscle myosin heavy chain (MYH11) and smooth muscle α-actin (ACTA2). Sircol collagen assay was used to assess the collagen secretion level. Notch signaling activation was determined by luciferase assay. Western blotting was used to evaluate expression levels of collagen I, collagen VIII, Delta-like (Dll)1, Dll3, Dll4, Jagged1, Jagged2, Notch intracellular domain (NICD)1 and Hes family basic helix-loop-helix (bHLH) transcription factor1 (HES1). Matrine pre-treatment recovered the AGEs- induced contractile- synthetic phenotypic conversion by increasing MYH11 and ACTA2 in HCSMCs. Matrine reduced AGEs- mediated activation of Notch signaling, down-regulated expression levels of NICD1, HES1, collagen I and collagen VIII and collagen secretion contents in HCSMCs. Matrine inhibited expression level of Dll4 without affecting other Notch ligands including Dll1, Dll3, Jagged1 and Jagged2 in HCSMCs exposed to AGEs. These results suggested that AGEs exposure facilitated the contractile- synthetic phenotypic conversion of HCSMCs. Matrine blocked this phenotypic conversion by suppressing Dll4- Notch signaling pathway activation."	"Thymosin β4 inhibits PDGF-BB induced activation, proliferation, and migration of human hepatic stellate cells via its actin-binding domain. Hepatic stellate cells (HSC) trans-differentiation is central to the development of liver fibrosis, marked by the expression of pro-fibrogenic genes and the proliferation and migration of activated HSC. Therefore, preventing and/or reverting the activation, proliferation, and migration of HSC may lead to new therapies for treating fibrosis/cirrhosis. Thymosin β4 (Tβ4) inhibits PDGF-BB-induced fibrogenesis, proliferation and migration of HSC by blocking Akt phosphorylation. Here, we utilized Tβ4-derived peptides: amino-terminal-Ac-SDKPDMAEIEKFDKS (1-15aa) and actin-binding-LKKTETQ (17-23aa) to investigate the molecular mechanisms in the anti-fibrogenic actions of Tβ4. We used RT-PCR, Western blot, and proliferation and migration assays in early passages of human HSC cultures treated with PDGF-BB and/or Tβ4 peptides. We showed that 17-23aa but not 1-15aa inhibited PDGF-BB-dependent up-regulation of PDGFβ receptor, α-SMA, and collagen 1. It also blunted the phosphorylation of Akt at T 308 and S473, resulting in the inhibition of phosphorylation of PRAS40, and HSC proliferation and migration. Interestingly, 1-15aa blocked Akt phosphorylation at S473, but not T308 by inhibiting mTOR phosphorylation, thus, it did not have any effect on HSC proliferation and migration. These findings suggest that while 1-15aa has a minor effect on Akt phosphorylation, the anti-fibrogenic actions of Tβ4 are exerted via 17-23aa."	"Lactobacillus Aggravate Bile Duct Ligation-Induced Liver Inflammation and Fibrosis in Mice. Lactobacillus (LAB) have been reported to exert both harmful and beneficial effects on human and animal health. Recently, it has been reported that dysbiosis and bacterial translocation contribute to liver fibrosis. However, the role of Gram-positive LAB in the situation of chronic liver diseases has not been yet elucidated. Liver injury was induced by bile duct ligation (BDL) in LAB or control-administered mice. Liver fibrosis was enhanced in LAB-administered mice compared with control-treated mice as demonstrated by quantification of Sirius-red positive area, hydroxyproline contents and fibrosis-related genes (Col1α1, Acta2, Timp1, Tgfb1). Moreover, LAB-administered mice were more susceptible to BDL-induced liver injury as shown by increased ALT and AST level of LAB group compared with control group at 5 days post BDL. Consistent with serum level, inflammatory cytokines (TNF-α, IL-6 and IL-1β) were also significantly increased in LAB-treated mice. Of note, LAB-treated liver showed increased lipoteichoic acid (LTA) expression compared with control-treated liver, indicating that LAB-derived LTA may translocate from intestine to liver via portal vein. Indeed, responsible receptor or inflammatory factor (PAFR and iNOS) for LTA were upregulated in LAB-administered group. The present findings demonstrate that administration of LAB increases LTA translocation to liver and induces profibrogenic inflammatory milieu, leading to aggravation of liver fibrosis. The current study provides new cautious information of LAB for liver fibrosis patients to prevent the detrimental effect of LAB supplements."	"Genetic diagnosis of acute aortic dissection in South China Han population using next-generation sequencing. Acute aortic dissection (AAD) is a clinically &quot;silent,&quot; but emergent and life-threatening cardiovascular disease, and hereditary factors play an important etiologic role in the development of AAD. The purposes of this study are to definitize the diagnostic yield of 59 AAD patients, investigate the molecular pathological spectrum of AAD by NGS, and explore the future preclinical prospects of genetic diagnosis on AAD high-risk groups. We performed next-generation sequencing (NGS) based on screening of the 69 currently aortic dissections/aneurysms-associated genes on 59 sporadic AAD samples from South China. A Kaplan-Meier survival curve was constructed to compare the event-free survival depending on variant number. Overall, 67 variants were detected in 39 patients, among which 4 patients were identified with pathogenic variants and 13 patients were diagnosed with likely pathogenic variants. Seventeen genotype positive patients were identified in aggregate, and the diagnostic yield of our study is 28.8%. All genotype-positive variants were distributed in 11 genes, FBN1 variants were in the largest number among genotype-positive variants, which were detected for 4 times, ACTA2 for 3 times, ABCC6 and TGFBR1 twice, and NOS3, MYLK, XYLT1, TIMP4, TGFBR2, CNTN3, and PON1 once. Individuals with three or more variants showed shorter mean event-free survival than patients with fewer variants. Our observations broaden the genetic pathological spectrum of AAD. Furthermore, our research uncovered two susceptibility genes FBN1 and ACTA2 for Stanford type A AAD patients. Finally, our study concluded that the number of variants an individual harbored was an important consideration in risk stratification for individualized prediction and disease diagnosis."	"Anthocyanins isolated from blueberry ameliorates CCl4 induced liver fibrosis by modulation of oxidative stress, inflammation and stellate cell activation in mice. To study the mechanism of anthocyanins from blueberry on mice model of hepatic fibrosis. We observed that the levels of serum ALT and AST of 100 mg*kg-1*d-1, 200 mg*kg-1*d-1 anthocyanins group were reduced compared to the CCl4 treated group. Mitochondrial electron chain complex 1 and 2 activities, determined by microplate assays, were reduced in CCl4 treated group and restored by anthocyanin treatment. MDA and protein carbonyl content of liver homogenate were induced by CCl4 and anthocyanin treated group reduced both significantly.Monocyte chemoattractant protein 1 (MCP1), Interleukin 1 beta (IL1β), macrophage inflammatory protein 2 (MIP-2) were induced by CCl4 were attenuated by anthocyanin. Colagen Ⅲ and α-SMA was significantly increased as determined by histology and anthocyanins decreased their level. The protein levels of MMP-9, TIMP1 and PCNA of liver homogenate was also modulated by anthocyanins. In isolated hepatic stellate cells, activation as determined by fibrotic gene expression was attenuated by anthocyanin. Anthocyanins from blueberry may have protective effects on CCl4 induced hepatic fibrosis. The mechanism may be related to reduce ROS generating sources and associated oxidative damage, decrease the influence of pro-inflammatory cytokines, and suppress the activity of hepatic stellate cells and downregulation TIMP1, PCNA, Col-Ⅲ, α-SMA and up-regulation MMP-9."	"Deletion of calponin 2 attenuates the development of calcific aortic valve disease in ApoE<sup>-/-</sup> mice. Calcific aortic valve disease (CAVD) is a leading cause of cardiovascular mortality and lacks non-surgical treatment. The pathogenesis of CAVD involves perturbation of valvular cells by mechanical stimuli, including shear stress, pressure load and leaflet stretch, of which the molecular mechanism requires further elucidation. We recently demonstrated that knockout (KO) of Cnn2 gene that encodes calponin isoform 2, a mechanoregulated cytoskeleton protein, attenuates atherosclerosis in ApoE KO mice. Here we report that Cnn2 KO also decreased calcification of the aortic valve in ApoE KO mice, an established model of CAVD. Although myeloid cell-specific Cnn2 KO highly effectively attenuated vascular atherosclerosis that shares many pathogenic processes with CAVD, it did not reduce aortic valve calcification in ApoE KO mice. Indicating a function in the pathogenesis of CAVD, calponin 2 participates in myofibroblast differentiation that is a leading step in the development of CAVD. The aortic valves of ApoE KO mice exhibited increased expression of calponin 2 and smooth muscle actin (SMA), a hallmark of myofibroblasts. The expression of calponin 2 increased during myofibroblast-like differentiation of primary sheep aortic valve interstitial cells and during the osteogenic differentiation of mouse myofibroblasts. Cnn2 KO attenuated TGFβ1-induced differentiation of myofibroblasts in culture as shown by the lower expression of SMA and less calcification than that of wild type (WT) cells. These findings present calponin 2 as a novel molecular target for the treatment and prevention of CAVD."	"Isolation of internal and external sphincter progenitor cells from the human anal sphincter with or without radiotherapy. We aimed to isolate and propagate internal and external anal sphincter progenitor cells from the human anal sphincter, with or without radiotherapy, for tailored cell therapy of faecal incontinence. Sphincter progenitor cells were isolated from normal internal and external anal sphincters collected from 10 patients with rectal cancer who had undergone abdominoperineal resection with (n = 6) or without (n = 4) preoperative chemoradiotherapy. The isolated cells and differentiated muscle fibres were identified using immunofluorescence assay, western blotting and reverse transcription polymerase chain reaction (RT-PCR). The proliferation of progenitor cells with and without radiotherapy was compared by quantitative 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay. The immunofluorescence assay before differentiation confirmed that the internal anal sphincter progenitor cells expressed CD34 and neural-glial antigen 2 (NG2), whereas the external anal sphincter progenitor cells expressed CD34 and PAX7. After differentiation, the internal anal sphincter progenitor cells expressed desmin, calponin and α-smooth muscle actin, whereas the external anal sphincter progenitor cells expressed desmin, myogenic factor 4 and myosin heavy chain. The differential expression profiles of both cell types were confirmed by western blotting and RT-PCR. MTT assays showed that the viability of internal and external anal sphincter progenitor cells was significantly lower in the radiotherapy group than that in the nonradiotherapy group. This study describes the differential harvest internal and external sphincter muscle progenitor cells from human anal sphincters. We confirm that radiotherapy decreases the viability of internal and external anal sphincter progenitor cells."	"LY2109761 reduces TGF-β1-induced collagen production and contraction in hypertrophic scar fibroblasts. Hypertrophic scars (HS) are fibro-hyperproliferative dermal lesions with effusive continuous accumulation of extracellular matrix components, particularly collagen. They usually occur after dermal injury in genetically susceptible individuals and cause both physical and psychological distress for the affected individuals. Transforming growth factor-β1 (TGF-β1) is known to mediate wound healing process by regulating cell differentiation, collagen production and extracellular matrix degradation. The sustained high expression of TGF-β1 is believed to result in the formation of hypertrophic scars. Inhibition of TGF-β1 signaling pathway may represent one of effective strategies for limiting excessive scarring. LY2109761, an orally active TβRI/II kinase dual inhibitor, has been previously reported that it had inhibitory effects on carcinomas and attenuates Radiation-induced pulmonary murine fibrosis. Our results revealed that LY2109761 reduced TGF-β1-induced collagen production and α-smooth muscle actin (α-SMA) expression, and attenuated TGF-β1-induced cell contraction in hypertrophic scar fibroblasts. The data from this study provide evidence supporting the potential use of LY2109761 as a novel treatment for hypertrophic scars."	"Ascending aortas from heart donors and CABG patients are not equivalent as control in aortopathy studies. A careful selection of reference samples in studies on the pathogenesis of thoracic ascending aorta (TAA) dilation is crucial for reliability, consistency and reproducibility of experimental results. Several studies include control TAA samples from heart donors. Others include samples harvested during coronary artery bypass graft (CABG) procedures or a mix of samples from heart donors and CABG patients. We verified the equivalence/homogeneity of TAA samples from heart donors and CABG patients in terms of basal gene expression and thus their reliability as reference groups in aortopathy studies. We analysed by RT-PCR and Western blot the differential expression of smoothelin, α-smooth muscle actin (α-SMA) and transforming growth factor-β1 (TGF-β1), selected as major players in smooth muscle cell and myofibroblast phenotype and remodelling. The mean age and comorbidities of subjects were consistent with data routinely seen in clinical practice. Data revealed the loss of smoothelin in samples from CABG patients, together with a significant increase of α-SMA, while TGF-β1 dimer showed a marked increase in CABG patients versus heart donors, accompanied by a decrease of the corresponding mRNA. Differences in gene expression were maintained after adjustment for age. However, TGF-β1 mRNA and CABG patients' age showed a positive correlation (ρ = 0.89, p &lt; .05), while α-SMA mRNA and age showed a negative correlation (ρ = -0.85, p &lt; .05). We revealed the non-equivalence of samples from heart donors and CABG patients, presumably for the presence of microscopic atherosclerotic lesions in CABG patients, suggesting the necessity of a careful selection of control groups in aortopathy studies."	"YAP/TAZ Are Essential for TGF-β2-Mediated Conjunctival Fibrosis. To investigate the roles of Yes-associated protein (YAP)/transcriptional co-activator with PDZ-binding motif (TAZ), the major effector molecules of the Hippo pathway, in TGF-β2-mediated conjunctival fibrosis. Primary human conjunctival fibroblasts were treated with TGF-β2. The expression of YAP/TAZ was examined by Western blot analyses and immunocytochemistry. The expression of fibrotic proteins and genes were evaluated by Western blot analyses and quantitative real-time PCR, respectively. The effects of YAP/TAZ on fibrotic changes were examined by knockdown experiments and the YAP/TAZ inhibitor, verteporfin. TGF-β2 stabilized YAP/TAZ and subsequently activated Smad2/3, which led to the transcription of fibrotic genes in human primary conjunctival fibroblasts. These fibrotic genes were differently regulated by YAP/TAZ. Notably, α-smooth muscle actin, fibronectin, collagen I, and collagen IV were primarily regulated by YAP. In contrast, CCN family proteins (CTGF and CYR61) depended on both YAP and TAZ. Mechanistically, YAP/TAZ were located in close proximity to Smad2/3, and in particular, YAP was required for TGF-β2-mediated phosphorylation and the nuclear translocation of Smad2/3. Furthermore, a YAP/TAZ inhibitor markedly suppressed TGF-β2-mediated fibrotic changes in conjunctival fibroblasts. YAP/TAZ acted as a molecular hub of TGF-β2 signaling in a cellular model of conjunctival fibrosis. Moreover, verteporfin, a YAP/TAZ inhibitor exerted potent antifibrosis effects by suppressing TGF-β2-YAP/TAZ-Smad signaling. Our study highlights YAP/TAZ as essential regulators of conjunctival fibrosis and shows that inhibition of YAP/TAZ might potentially improve the outcomes of glaucoma filtration surgery."	"Inhibition of Human Corneal Myofibroblast Formation. Transforming growth factor-beta (TGF-β) isoform 1 (T1) is involved in corneal fibrotic wound healing by stimulating myofibroblast transformation and altering fibrotic gene expression. In this study, two specific inhibitors were used to dissect the relationship between myofibroblast generation and the TGF-β/Smad- or TGF-β/p38-signaling pathway in human corneal fibroblasts (HCF). In HCF, Trx-SARA (Smad-pathway inhibitor) was used to block the TGF-β/Smad-signaling pathway, and the p38 inhibitor (p38inh, SB202190) was used to inhibit p38MAPK, thus blocking the TGF-β/p38-signaling pathway. HCF ± Trx-SARA or Trx-GA (SARA control) were serum starved overnight in Eagle's minimum essential medium (EMEM) ± p38inh, grown in EMEM ± T1 ± p38inh for 24 hours, and then processed for indirect-immunofluorescence, Western blot, or quantitative real-time polymerase chain reaction to examine α-smooth muscle actin (αSMA) and other fibrotic genes, such as fibronectin, thrombospondin1, and type III collagen. In addition, the morphology and the effect of p38inh on myofibroblast phenotype after myofibroblast formation were examined. We observed that Trx-SARA had little effect on αSMA expression, indicating that blocking the Smad pathway did not significantly inhibit myofibroblast formation. However, p38inh did significantly inhibit αSMA and other fibrotic genes, thus efficiently preventing the transition of HCFs to myofibroblasts. In addition, morphology changed and αSMA decreased in myofibroblasts exposed to p38inh medium, as compared with controls. HCF transition to myofibroblasts was mainly through the p38 pathway. Therefore, blocking the p38 pathway may be a potential therapeutic tool for human corneal fibrosis prevention/treatment, because it controls myofibroblast formation in human corneal cells, while leaving other functions of T1 unaffected."	"Long-chain fatty acid activates hepatocytes through CD36 mediated oxidative stress. Accumulating evidence suggests that activated hepatocytes are involved in the deposition of the excess extracellular matrix during liver fibrosis via the epithelial to mesenchymal transition. Lipid accumulation in hepatocytes are implicated in the pathogenesis of chronic liver injury. CD36 is known to mediate long-chain fatty acid (LCFA) uptake and lipid metabolism. However, it is unclear whether LCFA directly promotes hepatocyte activation and the involved mechanisms have not been fully clarified. Mice were fed with a high fat diet (HFD) and normal hepatocyte cells (Chang liver cells) were treated with palmitic acid (PA) in vivo and in vitro. Real-time polymerase chain reaction (RT-PCR) and western blotting were used to examine the gene and protein expression of molecules involved in hepatic fibrogenesis and hepatocyte activation. CD36 was knocked down by transfecting CD36 siRNA into hepatocyte cells. Hydrogen peroxide (H2O2) and reactive oxygen species (ROS) levels were detected using commercial kits. HFD induced a profibrogenic response and up-regulated CD36 expression in vivo. Analogously, PA increased lipid accumulation and induced human hepatocyte activation in vitro, which was also accompanied by increased CD36 expression. Interestingly, knockdown of CD36 resulted in a reduction of hepatocyte lipid deposition and decreased expression of Acta2 (34% decrease), Vimentin (29% decrease), Desmin (60% decrease), and TGF-β signaling pathway related genes. In addition, HFD and PA increased the production of H2O2 in vivo (48% increase) and in vitro (385% increase), and the antioxidant, NAC, ameliorated PA-induced hepatocyte activation. Furthermore, silencing of CD36 in vitro markedly attenuated PA-induced oxidative stress (H2O2: 41% decrease; ROS: 39% decrease), and the anti-activation effects of CD36 knockdown could be abolished by pretreatment with H2O2. Our study demonstrated that LCFA facilitates hepatocyte activation by up-regulating oxidative stress through CD36, which could be an important mechanism in the development of hepatic fibrosis."	"Long-Term Engraftment Promotes Differentiation of Alveolar Epithelial Cells from Human Embryonic Stem Cell Derived Lung Organoids. Human embryonic stem cell (hESC) derived 3D human lung organoids (HLOs) provide a promising model to study human lung development and disease. HLOs containing proximal or/and immature distal airway epithelial cells have been successfully generated in vitro, such as early staged alveolar type 2 (AT2) cells (SPC<sup>+</sup>/SOX9<sup>+</sup>) and immature alveolar type 1 (AT1) cells (HOPX<sup>+</sup>/SOX9<sup>+</sup>). When HLOs were transplanted into immunocompromised mice for further differentiation in vivo, only few distal epithelial cells could be observed. In this study, we transplanted different stages of HLOs into immunocompromised mice to assess whether HLOs could expand and mature in vivo. We found that short-term transplanted HLOs contained lung progenitor cells (NKX2.1<sup>+</sup>, SOX9<sup>+</sup>, and P63<sup>+</sup>), but not SPC<sup>+</sup> AT2 cells or AQP5<sup>+</sup> AT1 cells. Meanwhile, long-term engrafted HLOs could differentiate into lung distal bipotent progenitor cells (PDPN<sup>+</sup>/SPC<sup>+</sup>/SOX9<sup>+</sup>), AT2 cells (SPC<sup>+</sup>, SPB<sup>+</sup>), and immature AT1 cells (PDPN<sup>+</sup>, AQP5<sup>-</sup>). However, HLOs at late in vitro stage turned into mature AT1-like cells (AQP5<sup>+</sup>/SPB<sup>-</sup>/SOX9<sup>-</sup>) in vivo. Immunofluorescence staining and transmission electron microscopy (TEM) results revealed that transplanted HLOs contained mesenchymal cells (collagen I<sup>+</sup>), vasculature (ACTA2<sup>+</sup>), neuroendocrine-like cells (PGP9.5<sup>+</sup>), and nerve fiber structures (myelin sheath structure). Together, these data reveal that hESC-derived HLOs would be useful for human lung development modeling, and transplanted HLOs could mimic lung organ-like structures in vivo by possessing vascular network and neuronal network."	"LTBP2 is secreted from lung myofibroblasts and is a potential biomarker for idiopathic pulmonary fibrosis. Although differentiation of lung fibroblasts into α-smooth muscle actin (αSMA)-positive myofibroblasts is important in the progression of idiopathic pulmonary fibrosis (IPF), few biomarkers reflecting the fibrotic process have been discovered. We performed microarray analyses between FACS-sorted steady-state fibroblasts (lineage (CD45, TER-119, CD324, CD31, LYVE-1, and CD146)-negative and PDGFRα-positive cells) from untreated mouse lungs and myofibroblasts (lineage-negative, Sca-1-negative, and CD49e-positive cells) from bleomycin-treated mouse lungs. Amongst several genes up-regulated in the FACS-sorted myofibroblasts, we focussed on Ltbp2, the gene encoding latent transforming growth factor-β (TGF-β) binding protein-2 (LTBP2), because of the signal similarity to Acta2, which encodes αSMA, in the clustering analysis. The up-regulation was reproduced at the mRNA and protein levels in human lung myofibroblasts induced by TGF-β1. LTBP2 staining in IPF lungs was broadly positive in the fibrotic interstitium, mainly as an extracellular matrix (ECM) protein; however, some of the αSMA-positive myofibroblasts were also stained. Serum LTBP2 concentrations, evaluated using ELISA, in IPF patients were significantly higher than those in healthy volunteers (mean: 21.4 compared with 12.4 ng/ml) and showed a negative correlation with % predicted forced vital capacity (r = -0.369). The Cox hazard model demonstrated that serum LTBP2 could predict the prognosis of IPF patients (hazard ratio for death by respiratory events: 1.040, 95% confidence interval: 1.026-1.054), which was validated using the bootstrap method with 1000-fold replication. LTBP2 is a potential prognostic blood biomarker that may reflect the level of differentiation of lung fibroblasts into myofibroblasts in IPF."	"Ki67, CD105, and α-SMA expression supports the transformation relevant dysplastic features in the atrophic epithelium of oral submucous fibrosis. The grading of oral epithelial dysplasia is not possible in the atrophic epithelium of oral submucous fibrosis (OSMF). Recently, we found that features such as increased basal cell layer hyperplasia, abnormal superficial mitosis, increased nuclear-cytoplasmic ratio, increased nuclear size, and hyperchromasia represent transformation-relevant dysplastic features in the atrophic epithelium of OSMF. The presence of these features can be considered a high-risk feature for patients. However, these findings have not been tested and authenticated using markers relevant to oral carcinogenesis. Paraffin-embedded tissues from 30 normal oral mucosa (NOM) and 50 OSMF were retrieved from 2008 to 2016 and subjected to immunohistochemical expression using Ki67, CD105 and α-SMA antibodies. Ki67 LI showed significant increases from NOM (12.47±2.34) to LRED (23.47±3.75) to HRED (34.31±7.31) (&lt;0.0001). Similarly, MVD was increased significantly from NOM (3.53±5.17) to LRED (27.57±12.25) to HRED (46.18±12.55) (p&lt;0.0001). The expression of α-SMA was significantly increased from LRED (0.21±0.41) to HRED (1.13±0.56) (&lt;0.0001). The Ki67 LI and α-SMA; MVD and α-SMA; and Ki67Ki67 LI and MVD in NOM, LRED and HRED showed a statistically significant positive correlation (P&lt;0.0001). The increase in Ki67 LI was directly proportional to MVD and α-SMA expression from NOM to LRED to HRED (P&lt;0.0001). The connective tissue stroma of NOM lacks α-SMA expression. Mild myofibroblast expression was noted in 4 cases of LRED (14.28%) and in 18 cases of HRED (81.81%). Moderate expression was noted only in 4 cases of HRED (22.22%). Ki67 LI, CD105, and α-SMA expression showed significant differences between normal, LRED and HRED. These findings further support that features such as increased basal cell layer hyperplasia, abnormal superficial mitosis, increased nuclear-cytoplasmic ratio, and hyperchromasia could be transformation-relevant dysplastic features."	"Taurocholic acid is an active promoting factor, not just a biomarker of progression of liver cirrhosis: evidence from a human metabolomic study and in vitro experiments. Previous studies have indicated that bile acid is associated with progression of liver cirrhosis. However, the particular role of specific bile acid in the development of liver cirrhosis is not definite. The present study aims to identify the specific bile acid and explore its possible mechanisms in promoting liver cirrhosis. Thirty two cirrhotic patients and 27 healthy volunteers were enrolled. Age, gender, Child-Pugh classification and serum of patients and volunteers were collected. Liquid chromatography tandem mass spectrometry (LC-MS) was utilized to determine concentrations of 12 bile acids in serum. Principal component analysis, fold change analysis and heatmap analysis were used to identify the most changed bile acid. And pathway analysis was used to identify the most affected pathway in bile acid metabolism. Spearman rank correlation analysis was employed to assess correlation between concentrations of bile acids and Child-Pugh classification. Hepatic stellate cells (LX-2) were cultured in DMEM. LX-2 cells were also co-cultured with HepG2 cells in the transwell chambers. LX-2 cells were treated with Na+/taurocholate in different concentrations. Western blot was used to evaluate the expression of alpha smooth muscle actin (α-SMA), type I collagen, and Toll-like receptor 4 (TLR4) in LX-2 cells. Concentrations of 12 bile acids in serum of patients and healthy volunteers were determined with LC-MS successively. Principal component analysis, fold change analysis and heatmap analysis identified taurocholic acid (TCA) to be the most changed bile acid. Pathway analysis showed that TCA biosynthesis increased significantly. Spearman rank correlation analysis showed that concentration of TCA in serum of cirrhotic patients was positively associated with Child-Pugh classification. TCA increased the expression of α-SMA, type I collagen, and TLR4 in LX-2 cells. Moreover, the above effect was strengthened when LX-2 cells were co-cultured with HepG2 cells. Increased TCA concentration in serum of liver cirrhotic patients is mainly due to increased bile acid biosynthesis. TCA is an active promoter of the progression of liver cirrhosis. TCA promoting liver cirrhosis is likely through activating hepatic stellate cells via upregulating TLR4 expression. TCA is a potential therapeutic target for the prevention and treatment of liver cirrhosis."	"[The effects of macrophages with high expression of TL1A on activation and proliferation of hepatic stellate cells in vitro]. Objective: To explore the effects of macrophages with high expression of TL1A on the activation and proliferation of HSCs in vitro. Methods: The Bone marrow-derived macrophages (BMMs) and peritoneal macrophages (PMs) from wild type (WT) and myeloid-overexpressed TL1A transgenic mice were isolated, differentiated and activated. HSCs were harvested from activated macrophages culture supernatant (CM). HSCs were detected by immunofluorescence and real-time Q-PCR. And the proliferation was detected by CCK-8 and BrdU assay kit. The levels of IL-1β and PDGF-BB in macrophage culture supernatants were determined by enzyme-linked immunosorbent assay (ELISA). Results: BMMs-derived CM-intervention HSCs were used to detect the expression of α-smooth muscle actin (α-SMA) on the 2nd, 4th and 6th day respectively by immunofluorescence method. There was no significant difference between the two groups on the 2 nd and the 6th day, P &gt; 0.05; On day 4, the CM/Tg group was significantly higher than that of CM/WT group, P &lt; 0.01; the results of CMs derived from PMs were consistent with the above trend. The expression of α-SMA mRNA on the 2nd, 4th and 6th day was detected by real-time Q-PCR method using BM-derived CMs. No significant difference was found between the groups on the 2nd day (P &gt; 0.05).α-SMA mRNA increased further on the 4th and 6th day, and the level of CM/Tg in CM/Tg group was significantly higher than that in CM/WT group (P &lt; 0.05). The detection results of CMs derived from PMs were consistent with the above trend. The results of CCK-8 assay and BrdU assay showed that the proliferation rate of HSCs in CM Tg group was significantly higher than that in CM/WT group (P &lt; 0.01). The CMs derived from PMs were used to interfere with HSCs. And the results were consistent with the above trend. For BMMs, the levels of IL-1β and PDGF-BB in the lipopolysaccharide (LPS) + IFNγ/Tg culture supernatant were significantly higher than those in the LPS+IFNγ/WT group (P &lt; 0.01). For the culture supernatants of PMs Liquid test results consistent with the above trend. Conclusion: Macrophages with high expression of TL1A could enhance the activation and proliferation of HSCs by increasing the secretion of IL-1β and PDGF-BB. 目的: 探讨体外高表达肿瘤坏死样因子配体1A(TL1A)的巨噬细胞对肝星状细胞(HSCs)的活化、增殖的影响。 方法: 分离、分化并活化C57BL/6野生型(WT)与髓系高表达TL1A的转基因(M-Tg)小鼠骨髓来源的巨噬细胞(BMMs)和腹腔巨噬细胞(PMs);并分离WT小鼠原代HSCs;收取活化后的巨噬细胞培养上清液为条件培养基(CM)干预HSCs,应用免疫荧光法及real-time Q-PCR方法检测HSCs的活化、CCK-8法及BrdU法检测HSCs增殖情况,酶联免疫吸附试验法测定各组巨噬细胞培养上清液中白细胞介素1β和血小板衍生生长因子(PDGF)-BB的含量。 结果: 应用BMMs来源的CM干预HSCs,免疫荧光法分别检测第2、4、6天α-平滑肌肌动蛋白(α-SMA)表达量,第2天和第6天时各组间差异无统计学意义,P &gt; 0.05;第4天时CM/Tg组明显高于CM/WT组,P &lt; 0.01;PMs来源的CM干预HSCs的检测结果与上述趋势一致。应用BMMs来源的CM干预HSCs,real-time Q-PCR法分别检测第2、4、6天α-SMA mRNA表达量,第2天时各组差异无统计学意义,P &gt; 0.05;第4、6天时α-SMA mRNA进一步升高,且CM/Tg组明显高于CM/WT组,P &lt; 0.05;PMs来源的CM培养HSCs的检测结果与上述趋势一致。CCK-8法和BrdU法检测HSCs增殖速度结果显示CM/Tg组明显高于CM/WT组,P &lt; 0.01;应用PMs来源的CM干预HSCs,检测结果与上述趋势一致。对于BMMs、脂多糖+干扰素γ/Tg组培养上清液中白细胞介素1β和PDGF-BB表达水平显著高于脂多糖+干扰素γ/WT组,P &lt; 0.01;PMs的培养上清液检测结果与上述趋势一致。 结论: 高表达TL1A的巨噬细胞可能通过IL-1β和PDGF-BB分泌增加促进HSCs的活化与增殖。."	"Biomarkers for the identification of cardiac fibroblast and myofibroblast cells. Experimental research has recognized the importance of cardiac fibroblast and myofibroblast cells in heart repair and function. In a normal healthy heart, the cardiac fibroblast plays a central role in the structural, electrical, and chemical aspects within the heart. Interestingly, the transformation of cardiac fibroblast cells to cardiac myofibroblast cells is suspected to play a vital part in the development of heart failure. The ability to differentiate between the two cells types has been a challenge. Myofibroblast cells are only expressed in the stressed or failing heart, so a better understanding of cell function may identify therapies that aid repair of the damaged heart. This paper will provide an outline of what is currently known about cardiac fibroblasts and myofibroblasts, the physiological and pathological roles within the heart, and causes for the transition of fibroblasts into myoblasts. We also reviewed the potential markers available for characterizing these cells and found that there is no single-cell specific marker that delineates fibroblast or myofibroblast cells. To characterize the cells of fibroblast origin, vimentin is commonly used. Cardiac fibroblasts can be identified using discoidin domain receptor 2 (DDR2) while α-smooth muscle actin is used to distinguish myofibroblasts. A known cytokine TGF-β1 is well established to cause the transformation of cardiac fibroblasts to myofibroblasts. This review will also discuss clinical treatments that inhibit or reduce the actions of TGF-β1 and its contribution to cardiac fibrosis and heart failure."	"CD105<sup>+</sup> Porcine Endometrial Stromal Mesenchymal Stem Cells Possess Differentiation Potential Toward Cardiomyocyte-Like Cells and Insulin-Producing β Cell-Like Cells In Vitro. Porcine mesenchymal stem cells (MSCs) are similar to human MSCs, hence considered a valuable model for assessing potential for cell therapy. Porcine adipose-derived MSCs (AD-MSCs) and endometrial stromal MSCs (EMSCs) displayed fibroblast-like morphology and were positive for MSC markers CD73, CD90, and CD105 and negative for hematopoietic markers CD34 and CD45. The EMSCs had similar or slightly higher growth rate compared to AD-MSCs, and similar percentage of cells of both EMSCs and AD-MSCs were at G0/G1 and G2/M phases; however, EMSCs had significantly ( P &lt; .05) higher percentage of cells at S phase of cell cycle than AD-MSCs. Transdifferentiation ability to cardiomyocyte-like cells was confirmed in differentiated cells by the expression of lineage-specific marker genes such as DES, ACTA2, cTnT, and ACTC1 by real-time quantitative polymerase chain reaction (RT-qPCR). Furthermore, cardiomyocyte-specific protein markers cTnT and ACTC1 were expressed in completely differentiated cells. Endodermal differentiation capacity of EMSCs to pancreatic β cell-like cells was evident with the changes in morphology and the expression of β-cell-specific marker genes such as PDX1, GLUT2, SST, NKX6.1, PAX4, and NGN3 as analyzed by RT-qPCR. The differentiated cells secreted insulin and C-peptide upon glucose challenge and also they expressed insulin, PDX1, PAX4, NGN3, and GLUT2 at protein level as assessed by immunostaining confirming the successful differentiation to β cell-like cells. Porcine EMSCs possess all the characteristics of MSCs and are suitable model for studying molecular mechanisms of cellular differentiation."	"Anti-Tumour Necrosis Factor Therapy for Dupuytren's Disease: A Randomised Dose Response Proof of Concept Phase 2a Clinical Trial. Dupuytren's disease is a common fibrotic condition of the hand that causes irreversible flexion contractures of the fingers, with no approved therapy for early stage disease. Our previous analysis of surgically-excised tissue defined tumour necrosis factor (TNF) as a potential therapeutic target. Here we assessed the efficacy of injecting nodules of Dupuytren's disease with a TNF inhibitor. Patients were randomised to receive adalimumab on one occasion in dose cohorts of 15 mg in 0.3 ml, 35 mg in 0.7 ml, or 40 mg in 0.4 ml, or an equivalent volume of placebo in a 3:1 ratio. Two weeks later the injected tissue was surgically excised and analysed. The primary outcome measure was levels of mRNA expression for α-smooth muscle actin (ACTA2). Secondary outcomes included levels of α-SMA and collagen proteins. The trial was registered with ClinicalTrial.gov (NCT03180957) and the EudraCT (2015-001780-40). We recruited 28 patients, 8 assigned to the 15 mg, 12 to the 35 mg and 8 to the 40 mg adalimumab cohorts. There was no change in mRNA levels for ACTA2, COL1A1, COL3A1 and CDH11. Levels of α-SMA protein expression in patients treated with 40 mg adalimumab (1.09 ± 0.09 ng per μg of total protein) were significantly lower (p = 0.006) compared to placebo treated patients (1.51 ± 0.09 ng/μg). The levels of procollagen type I protein expression were also significantly lower (p &lt; 0.019) in the sub group treated with 40 mg adalimumab (474 ± 84 pg/μg total protein) compared with placebo (817 ± 78 pg/μg). There were two serious adverse events, both considered unrelated to the study drug. In this dose-ranging study, injection of 40 mg of adalimumab in 0.4 ml resulted in down regulation of the myofibroblast phenotype as evidenced by reduction in expression of α-SMA and type I procollagen proteins at 2 weeks. These data form the basis of an ongoing phase 2b clinical trial assessing the efficacy of intranodular injection of 40 mg adalimumab in 0.4 ml compared to an equivalent volume of placebo in patients with early stage Dupuytren's disease. Health Innovation Challenge Fund (Wellcome Trust and Department of Health) and 180 Therapeutics LP."	"Discovery of Matrinic Thiadiazole Derivatives as a Novel Family of Anti-Liver Fibrosis Agents via Repression of the TGFβ/Smad Pathway. A series of novel matrinic thiadiazole derivatives were designed, synthesized and evaluated for their inhibitory effect on COL1A1 promotor. The SAR indicated that: (i) the introduction of a thiadiazole on the 11-side chain was beneficial for activity; (ii) a 12-N-benzyl moiety was favorable for activity. Among them, compound 6n displayed a high activity with an inhibitory rate of 39.7% at a concentration of 40 μM. It also effectively inhibited the expression of two representative collagen proteins (COL1A1 and α-SMA) on both the mRNA and protein levels and showed a high safety profile in vivo, indicating its great promise as an anti-liver fibrosis agent. Further study indicated that it might repress hepatic fibrogenesis via the TGFβ/Smad pathway. This study provided powerful information for further strategic optimization and the top compound 6n was selected for further study as an ideal liver fibrosis lead for next investigation."	"[Effects of denatured collagen type Ⅰ on differentiation of human fibroblasts into myofibroblasts]. Objective: To investigate the effects of denatured collagen type Ⅰ on differentiation of human fibroblasts into myofibroblasts. Methods: A small amount of normal skin donated by burn patients undergoing scar surgery was collected. Human fibroblasts were obtained by method of explant culture and then sub-cultured. The fourth passage of cells were used in the following experiments. (1) Fibroblasts were divided into normal collagen group and denatured collagen group according to the random number table, with 10 wells in each group. Fibroblasts in normal collagen group were cultured on normal collagen type Ⅰ coated coverslips. Fibroblasts in denatured collagen group were cultured on denatured type Ⅰ collagen coated coverslips. Expression of proliferating cell nuclear antigen (PCNA) was detected by immunohistochemical method, and the percentage of PCNA positive cells was calculated. (2) Another batch of fibroblasts were grouped and treated as in (1), with 12 wells in each group. Proliferation activity of cells was determined with methyl-thiazolyl-tetrazolium colorimetry method. (3) Another batch of fibroblasts were grouped and treated as in (1), and the microfilament morphology of cells was observed by rhodamine-phalloidin staining. (4) Another batch of fibroblasts were grouped and treated as in (1). Expression of α smooth muscle actin (α-SMA) of cells was detected by immunohistochemical method, and expression of OB-cadherin of cells was detected by immunofluorescence method. (5) Another batch of fibroblasts were divided into normal collagen, denatured collagen, and common coverslips groups according to the random number table, with 6 wells in each group. Fibroblasts in normal collagen and denatured collagen groups were treated as in (1), while fibroblasts in common coverslips group were cultured on coverslips without collagen coating. Expressions of α-SMA and OB-cadherin of cells were determined with Western blotting. (6) Another batch of fibroblasts were grouped and treated as in (5), and then the mRNA expressions of collagen type Ⅰ, collagen type Ⅲ, and α-SMA of cells were determined with real-time fluorescent quantitative reverse transcription polymerase chain reaction. Data were processed with t test, one way analysis of variance, and least-significant difference test. Results: (1) The percentage of PCNA positive cells in denatured collagen group was (83±9)%, significantly higher than (29±9)% in normal collagen group (t=13.53, P&lt;0.01). (2) The proliferation activity of fibroblasts in denatured collagen group was 0.32±0.06, significantly higher than 0.25±0.05 in normal collagen group (t=3.06, P&lt;0.01). (3) The microfilament of fibroblasts in normal collagen group was arranged vertically and in parallel way, paralleling the long axis of cells. The microfilament of fibroblasts in denatured collagen group was denser and thicker. (4) Most fibroblasts in normal collagen group showed long shuttle-like shape typically. Morphology of fibroblasts in denatured collagen group changed, and cells were obviously spreading. Expressions of α-SMA and OB-cadherin of fibroblasts in denatured collagen group were stronger than those in normal collagen group. (5) Expressions of α-SMA of fibroblasts in denatured collagen, normal collagen, and common coverslips groups were respectively 1.69±0.41, 0.89±0.27, and 1.46±0.42. Expression of α-SMA of fibroblasts in denatured collagen group was significantly higher than that in normal collagen group (P&lt;0.01). Expressions of OB-cadherin of fibroblasts in denatured collagen, normal collagen, and common coverslips groups were respectively 5.17±0.28, 2.21±0.10, and 4.01±0.56. Expression of OB-cadherin of fibroblasts in denatured group was significantly higher than that in normal collagen group (P&lt;0.01). (6) There was no significant difference in mRNA expression of collagen type Ⅰ of fibroblasts in denatured collagen, normal collagen, and common coverslips groups (F=2.71, P&gt;0.05). The mRNA expressions of collagen type Ⅲ and α-SMA of fibroblasts in normal collagen group were significantly lower than those in denatured collagen group (P&lt;0.01). Conclusions: Denatured collagen type Ⅰ may influence the activity of fibroblasts, thus inducing fibroblasts differentiating into myofibroblasts. 目的: 探讨变性Ⅰ型胶原在人成纤维细胞(Fb)向肌Fb分化中的作用。 方法: 取烧伤瘢痕手术患者捐献的少量正常皮肤,组织块培养法获得人Fb,并进行传代培养,取第4代细胞进行以下实验。(1)取Fb,按随机数字表法分为正常胶原组和变性胶原组,每组10孔。正常胶原组Fb接种于正常Ⅰ型胶原包被的盖玻片,变性胶原组Fb接种于变性Ⅰ型胶原包被的盖玻片。免疫组织化学法检测增殖细胞核抗原(PCNA)表达,计算PCNA表达阳性细胞百分比。(2)另取Fb,同(1)进行分组处理,每组12孔,噻唑蓝比色法检测细胞增殖活性。(3)另取Fb,同(1)进行分组处理,罗丹明-鬼笔环肽染色观察细胞微丝形态。(4)另取Fb,同(1)进行分组处理,免疫组织化学法检测细胞中α平滑肌肌动蛋白(α-SMA)表达,免疫荧光法检测细胞中OB钙黏蛋白表达。(5)另取Fb,按随机数字表法分为正常胶原组、变性胶原组和普通玻片组,每组6孔。正常胶原组和变性胶原组Fb处理同(1),普通玻片组Fb接种于无胶原包被的盖玻片。蛋白质印迹法检测细胞中α-SMA和OB钙黏蛋白表达。(6)另取Fb,同(5)进行分组处理,实时荧光定量反转录-聚合酶链反应法检测细胞中Ⅰ型胶原和Ⅲ型胶原及α-SMA的mRNA表达。对数据行t检验、单因素方差分析、LSD检验。 结果: (1)变性胶原组PCNA表达阳性细胞百分比为(83±9)%,明显高于正常胶原组的(29±9)%(t=13.53,P&lt;0.01)。(2)变性胶原组Fb的增殖活性为0.32±0.06,明显高于正常胶原组的0.25±0.05(t=3.06,P&lt;0.01)。(3)正常胶原组Fb微丝均纵向平行排列,贯穿细胞长轴。变性胶原组Fb微丝更为密集、粗大。(4)正常胶原组Fb基本呈典型的长梭形;变性胶原组Fb形态发生变化,细胞明显铺展。变性胶原组Fb的α-SMA、OB钙黏蛋白表达较正常胶原组强。(5)变性胶原组、正常胶原组、普通玻片组Fb的α-SMA表达量分别为1.69±0.41、0.89±0.27、1.46±0.42,变性胶原组Fb的α-SMA表达量明显高于正常胶原组(P&lt;0.01)。变性胶原组、正常胶原组、普通玻片组Fb的OB钙黏蛋白表达量分别为5.17±0.28、2.21±0.10、4.01±0.56,变性胶原组Fb的OB钙黏蛋白表达量明显高于正常胶原组(P&lt;0.01)。(6)正常胶原组、变性胶原组与普通玻片组Fb中Ⅰ型胶原的mRNA表达量相近(F=2.71,P&gt;0.05)。正常胶原组Fb中Ⅲ型胶原及α-SMA的mRNA表达量明显低于变性胶原组(P&lt;0.01)。 结论: 变性Ⅰ型胶原影响Fb活性,诱导Fb向肌Fb分化。."	"Expression and Prognostic Impact of VEGF, CD31 and αSMA in Resected Primary Lung Cancers. One of the most important factors concerning cancer growth is angiogenesis. The purpose of this study was to clarify the relationship of maturation of tumor vessels and prognosis of lung cancer. Immunohistochemical stainings of 125 lung cancers for VEGF, CD31 and α-smooth muscle actin (αSMA) were scored by multiplying the intensity and the frequency from 0 to 12. Adenocarcinomas showed significantly higher staining scores of both VEGF and αSMA than squamous cell carcinomas did. In 42 cases of high CD31 score, five-year survival rate (87%) of patients with lung cancer showing mature tumor vessels was significantly better than that (69%) of patients with immature tumor vessels. Not the number of tumor vessels but their maturation may be a prognostic factor of patients with lung cancer. VEGF may not only stimulate proliferation of endothelial cells but also their maturation in differentiated lung cancers."	"Clinical and Laboratory Biomarkers for Pseudoexfoliation Syndrome. In this review, we present an update on biomarkers (both clinical and laboratory) on the basis of recent peer-reviewed publications relating to pseudoexfoliation syndrome and pseudoexfoliation glaucoma."	"Variants of Unknown Significance in Genes Associated with Heritable Thoracic Aortic Disease Can Be Low Penetrant &quot;Risk Variants&quot;. Thoracic aortic aneurysms leading to acute aortic dissections are a preventable cause of premature deaths if individuals at risk can be identified. Individuals with early-onset aortic dissections without a family history or syndromic features have an increased burden of rare genetic variants of unknown significance (VUSs) in genes with pathogenic variants for heritable thoracic aortic disease (HTAD). We assessed the role of VUSs in the development of disease using both in vitro enzymatic assays and mouse models. VUSs in LOX and MYLK identified in individuals with acute aortic dissections were assayed to determine whether they disrupted enzymatic activity. A subset of VUSs reduced enzymatic activity compared to the wild-type proteins but less than pathogenic variants. Additionally, a Myh11 variant, p.Arg247Cys, which does not cause aortic disease in either humans or mice, was crossed with the Acta2<sup>-/-</sup> mouse, which has aortic enlargement with age while Acta2<sup>+/-</sup> mice do not. Acta2<sup>+/-</sup>Myh11<sup>R247C/R247C</sup> mice have aortic dilation by 3 months of age without medial degeneration, indicating that two variants not known to cause disease do lead to aortic enlargement in combination. Furthermore, the addition of Myh11<sup>R247C/R247C</sup> to the Acta2<sup>-/-</sup> mouse model accelerates aortic enlargement and increases medial degeneration. Therefore, our results emphasize the need for a classification system for variants in Mendelian genes that goes beyond the 5-tier system of pathogenic, likely pathogenic, VUS, likely benign, and benign, and includes a designation for low-penetrant &quot;risk variants&quot; that trigger disease either in combination with other risk factors or in a stochastic manner."	"Sorafenib and praziquantel synergistically attenuate Schistosoma japonicum-induced liver fibrosis in mice. Liver fibrosis is an important process that occurs in most types of chronic liver diseases and often results in the end stage of liver diseases, such as cirrhosis, portal hypertension, and hepatocellular carcinoma. Sorafenib, a multiple tyrosine kinase inhibitor, has been shown to inhibit liver fibrosis in multiple experimental fibrosis mouse and rat models. The aim of this study was to test the therapeutic effect of sorafenib on liver fibrosis induced by infection with a parasite, Schistosoma japonicum, in mice. Mice were percutaneously infected through the abdomen with Schistosoma cercariae to develop a schistosomula liver fibrosis model. Eight weeks after infection, infected mice were treated with the anti-parasitic agent praziquantel for 2 days and sorafenib for 2 weeks. Hepatic histopathological changes were assessed using hematoxylin and eosin (HE) and Masson's trichome staining. The hepatic expression levels of collagen I, collagen III, alpha-smooth muscle actin (α-SMA), platelet-derived growth factor (PDGF), and PDGF receptor-beta (PDGFR-β) were analyzed by immunohistochemistry and western blot. Praziquantel administration alone but not sorafenib reduced liver fibrosis, and the combination of praziquantel and sorafenib significantly attenuated liver fibrosis in S. japonicum-infected mice. Moreover, sorafenib plus praziquantel markedly decreased the hepatic deposition of collagen and expression of fibrogenic genes in these mice. In conclusion, the use of sorafenib following praziquantel treatment may represent a potential therapeutic strategy for liver fibrosis induced by S. japonicum in patients."	"Corticosteroid inhibits differentiation of palmar fibromatosis-derived stem cells (FSCs) through downregulation of transforming growth factor-β1 (TGF-β1). Treatment for musculoskeletal fibromatosis remains challenging. Surgical excision for fibromatosis is the standard therapy but recurrence remains high. Corticosteroids, an anti-fibrogenic compound, have been used to treat early stage palmar fibromatosis, but the mechanism is unknown. We investigated the inhibitory mechanism effect of corticosteroids in the murine model of fibromatosis nodule as well as in cultured FSCs. Quantitative reverse transcription/polymerase chain reaction (PCR) analysis and immunofluorescence (IF) staining for markers of myofibroblasts (α-smooth muscle actin and type III collagen) were used to examine the effect of dexamethasone on myofibroblasic differentiation of FSCs both in vitro and in vivo. Transforming growth factor-β1 (TGF-β1) signaling and its downstream targets were examined using western blot analysis. TGF-β1 expression in FSCs before and after dexamethasone treatment was compared. In addition, inhibition of TGF-β1 expression was examined using RNA interference (RNAi) on FSCs, both in vitro and in vivo. Treating FSCs with dexamethasone inhibited FSCs' myofibroblastic differentiation in vitro. Treating FSCs with dexamethasone before or after implantation further inhibited formation of fibromatosis nodules. Dexamethasone suppressed expression of TGF-β1 and pSmad2/3 by FSCs in vitro. TGF-β1 knockdown FSCs showed reducing myofibroblastic differentiation both in vitro and in vivo. Finally, addition of TGF-β1 abolished dexamethasone-mediated inhibition of myofibroblastic differentiation. Dexamethasone inhibits the myofibroblastic differentiated potential of FSCs both in vitro and in vivo through inhibition of TGF-β1 expression in FSCs. TGF-β1 plays a key role in myofibroblastic differentiation."	"Premacular membranes in tissue culture. To investigate integrity and characteristics of human premacular membranes (PMM) with and without standard tissue culturing using mechanical traction. Premacular membranes were harvested from 32 eyes of 32 patients with idiopathic macular pucker during standard vitrectomy. By flat-mount preparation with phase contrast and interference microscopy, specimens were prepared for time-lapse microscopy, immunocytochemistry, and transmission electron microscopy. Sixteen of 32 specimens were held in tissue culture with tangential traction by using entomological pins. Of these, specimens of 7 eyes were analyzed with and without tissue culturing for comparison. Primary antibodies were used for myofibroblasts, hyalocytes, macro-/microglial cells, and retinal pigment epithelial and immune cells. Hyalocytes, macroglia, and microglia composed the main cell composition of surgically removed PMM. Correlation of time-lapse microscopy with immunofluorescence microscopy identified fast and unidirectional moving small round cells as microglia. Slowly moving elongated large cells were characterized as alpha-smooth muscle actin (α-SMA)-positive myofibroblasts. Following tissue culturing with tangential stretch, enhanced positive immunolabelling for α-SMA and integrins-αv was seen. All other labelling results were demonstrated to be similar with pre-culture conditions. Ultrastructural analysis revealed fibroblasts, myofibroblasts, and proliferation of glial cells following tissue culture. This study demonstrates abundance of fibroblasts, myofibroblasts, and glial cells in PMM from idiopathic macular pucker following tissue culture with tangential stretch application. We found enhanced contractive properties of the cultured PPM that appear to indicate transdifferentiation of the cell composition. This in vitro model may improve understanding of pathogenesis in traction maculopathies and help to establish further anti-fibrosis treatment strategies."	"Caspase-3 Is a Pivotal Regulator of Microvascular Rarefaction and Renal Fibrosis after Ischemia-Reperfusion Injury. Background Ischemia-reperfusion injury (IRI) is a major risk factor for chronic renal failure. Here, we characterize the different modes of programmed cell death in the tubular and microvascular compartments during the various stages of IRI-induced AKI, and their relative importance to renal fibrogenesis.Methods We performed unilateral renal artery clamping for 30 minutes and contralateral nephrectomy in wild-type mice (C57BL/6) or caspase-3<sup>-/-</sup> mice.Results Compared with their wild-type counterparts, caspase-3<sup>-/-</sup> mice in the early stage of AKI had high urine cystatin C levels, tubular injury scores, and serum creatinine levels. Electron microscopy revealed evidence of tubular epithelial cell necrosis in caspase-3<sup>-/-</sup> mice, and immunohistochemistry showed upregulation of the necroptosis marker receptor-interacting serine/threonine-protein kinase 3 (RIPK3) in renal cortical sections. Western blot analysis further demonstrated enhanced levels of phosphorylated RIPK3 in the kidneys of caspase-3<sup>-/-</sup> mice. In contrast, caspase-3<sup>-/-</sup> mice had less microvascular congestion and activation in the early and extension phases of AKI. In the long term (3 weeks after IRI), caspase-3<sup>-/-</sup> mice had reduced microvascular rarefaction and renal fibrosis, as well as decreased expression of α-smooth muscle actin and reduced collagen deposition within peritubular capillaries. Moreover, caspase-3<sup>-/-</sup> mice exhibited signs of reduced tubular ischemia, including lower tubular expression of hypoxia-inducible factor-1α and improved tubular injury scores.Conclusions These results establish the pivotal importance of caspase-3 in regulating microvascular endothelial cell apoptosis and renal fibrosis after IRI. These findings also demonstrate the predominant role of microvascular over tubular injury as a driver of progressive renal damage and fibrosis after IRI."	"Small GTP-Binding Protein GDP Dissociation Stimulator Prevents Thoracic Aortic Aneurysm Formation and Rupture by Phenotypic Preservation of Aortic Smooth Muscle Cells. Thoracic aortic aneurysm (TAA) and dissection are fatal diseases that cause aortic rupture and sudden death. The small GTP-binding protein GDP dissociation stimulator (SmgGDS) is a crucial mediator of the pleiotropic effects of statins. Previous studies revealed that reduced force generation in aortic smooth muscle cells (AoSMCs) causes TAA and thoracic aortic dissection. To examine the role of SmgGDS in TAA formation, we used an angiotensin II (1000 ng·min<sup>-1</sup>·kg<sup>-1</sup>, 4 weeks)-induced TAA model. We found that 33% of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice died suddenly as a result of TAA rupture, whereas there was no TAA rupture in Apoe<sup>-/-</sup> control mice. In contrast, there was no significant difference in the ratio of abdominal aortic aneurysm rupture between the 2 genotypes. We performed ultrasound imaging every week to follow up the serial changes in aortic diameters. The diameter of the ascending aorta progressively increased in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice compared with Apoe<sup>-/-</sup> mice, whereas that of the abdominal aorta remained comparable between the 2 genotypes. Histological analysis of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed dissections of major thoracic aorta in the early phase of angiotensin II infusion (day 3 to 5) and more severe elastin degradation compared with Apoe<sup>-/-</sup> mice. Mechanistically, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed significantly higher levels of oxidative stress, matrix metalloproteinases, and inflammatory cell migration in the ascending aorta compared with Apoe<sup>-/-</sup> mice. For mechanistic analyses, we primary cultured AoSMCs from the 2 genotypes. After angiotensin II (100 nmol/L) treatment for 24 hours, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs showed significantly increased matrix metalloproteinase activity and oxidative stress levels compared with Apoe<sup>-/-</sup> AoSMCs. In addition, SmgGDS deficiency increased cytokines/chemokines and growth factors in AoSMCs. Moreover, expressions of fibrillin-1 ( FBN1), α-smooth muscle actin ( ACTA2), myosin-11 ( MYH11), MYLLK, and PRKG1, which are force generation genes, were significantly reduced in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs compared with Apoe<sup>-/-</sup> AoSMCs. A similar tendency was noted in AoSMCs from patients with TAA compared with those from control subjects. Finally, local delivery of the SmgGDS gene construct reversed the dilation of the ascending aorta in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice. These results suggest that SmgGDS is a novel therapeutic target for the prevention and treatment of TAA."	"A rare case of perivascular epithelioid cell tumor (PEComa) of the greater omentum. A tumor composed exclusively or predominantly of human melanin black 45 (HMB45)-positive epithelioid cells is called a perivascular epithelioid cell tumor (PEComa). We report a very rare case of a PEComa of the greater omentum. MRI conducted to examine the orthopedic disease of the patients, a 49-year-old Japanese woman, also identified a tumor in her pelvis. A CT scan revealed a tumor mass on the right side of the pelvic floor and clear nutrient vessels originating from the splenic and celiac arteries. An omental primary tumor or accessory spleen was thus suspected, and tumor resection was performed. The tumor was a light brown solid tumor with a smooth margin, measuring 5.2 × 3.8 × 3.5 cm. Histopathologically, the tumor was composed mainly of spindle and epithelioid cells, and large and small blood vessel formation was observed. In the immunohistochemical staining, tumor cells were positive for human melanin black 45 (HMB-45) and Melan-A and partially positive for alpha-smooth muscle actin. The final diagnosis was PEComa of the greater omentum. Although omental PEComa is very rare, it should be considered as a differential disease of an omental primary tumor."	"Expression of Programmed Death-Ligand 1 by Human Colonic CD90<sup>+</sup> Stromal Cells Differs Between Ulcerative Colitis and Crohn's Disease and Determines Their Capacity to Suppress Th1 Cells. The role of programmed cell death protein 1 (PD-1) and its ligands in the dysregulation of T helper immune responses observed in the inflammatory bowel disease (IBD) is unclear. Recently, a novel concept emerged that CD90<sup>+</sup> colonic (myo)fibroblasts (CMFs), also known as stromal cells, act as immunosuppressors, and are among the key regulators of acute and chronic inflammation. The objective of this study was to determine if the level of the PD-1 ligands is changed in the IBD inflamed colonic mucosa and to test the hypothesis that changes in IBD-CMF-mediated PD-1 ligand-linked immunosuppression is a mechanism promoting the dysregulation of Th1 cell responses. Tissues and cells derived from Crohn's disease (CD), ulcerative colitis (UC), and healthy individuals (N) were studied in situ, ex vivo, and in culture. A significant increase in programmed death-ligand 1 (PD-L1) was observed in the inflamed UC colonic mucosa when compared to the non-inflamed matched tissue samples, CD, and healthy controls. UC-CMFs were among the major populations in the colonic mucosa contributing to the enhanced PD-L1 expression. In contrast, PD-L1 expression was decreased in CD-CMFs. When compared to CD-CMFs and N-CMFs, UC-CMFs demonstrated stronger suppression of IL-2, Th1 transcriptional factor Tbet, and IFN-γ expression by CD3/CD28-activated CD4<sup>+</sup> T cells, and this process was PD-L1 dependent. Similar observations were made when differentiated Th1 cells were cocultured with UC-CMFs. In contrast, CD-CMFs showed reduced capacity to suppress Th1 cell activity and addition of recombinant PD-L1 Fc to CD-CMF:T cell cocultures partially restored the suppression of the Th1 type responses. We present evidence showing that increased PD-L1 expression suppresses Th1 cell activity in UC. In contrast, loss of PD-L1 expression observed in CD contributes to the persistence of the Th1 inflammatory milieu in CD. Our data suggest that dysregulation of the Th1 responses in the inflamed colonic mucosa of IBD patients is promoted by the alterations in PD-L1 expression in the mucosal mesenchymal stromal cell compartment."	"Curcumin suppresses cardiac fibroblasts activities by regulating the proliferation and cell cycle via the inhibition of the p38 MAPK/ERK signaling pathway. Cardiac fibrosis is a deleterious effect of many cardiovascular diseases. Previous studies have shown that curcumin has exhibited protective effects on cardiovascular diseases. The aim of the present study was to evaluate the effects of curcumin on the activity of human cardiac fibroblasts (CFs) and to elucidate the underlying mechanisms involved. Human CFs were incubated with or without curcumin (20 µmol/l) and transforming growth factor β1 (TGF‑β1; 10 ng/ml), and the expression of α‑smooth muscle actin (α‑SMA), collagen type Iα (COLA)‑1 and COLA3 was evaluated using reverse transcription‑quantitative polymerase chain reaction and western blot analysis. Cell proliferation was evaluated by Cell Counting Kit‑8 analysis, and phases of the cell cycle were studied by flow cytometry. Western blot analysis was performed to evaluate the expression of cyclin‑dependent kinase 1 (CDK1), Cyclin B, phosphorylation (p)‑mothers against decapentaplegic homolog 2/3 (p‑smad2/3), p‑P38, and p‑extracellular regulated protein kinases (ERK). Curcumin significantly reduced mRNA and protein levels of α‑SMA, COLA1, and COLA3 in CFs stimulated with TGF‑β1. However, in the absence of TGF‑β1, curcumin did not have any effects on CFs, suggesting that curcumin inhibited TGF‑β1‑mediated CF activities, including differentiation and collagen deposition. Additionally, curcumin inhibited the proliferation of TGF‑β1‑treated CFs, and promoted G2/M phase cell cycle arrest. Curcumin reduced cell cycle protein expression by inhibiting smad2/3, p38 mitogen‑activated protein kinase, and ERK phosphorylation in TGF‑β1‑treated CFs. Thus, these results indicated that curcumin may be a potential anti‑fibrotic drug to treat cardiac fibrosis."	"miR-200b ameliorates myofibroblast transdifferentiation in precancerous oral submucous fibrosis through targeting ZEB2. Oral submucous fibrosis (OSF) is a progressive scarring disease. MicroRNA-200b (miR-200b) has been reported as a tumour suppressor, but its role in the precancerous OSF remains unknown. In this study, we investigated the impact of miR-200b on myofibroblastic differentiation activity. Arecoline is a major areca nut alkaloid and has been employed to induce the elevated myofibroblast activity in human buccal mucosal fibroblasts (BMFs). Treatment of arecoline in BMFs dose-dependently reduced gene expression of miR-200b, which corresponded with the decreased expression of miR-200b in fBMFs. The arecoline-induced myofibroblast activities were abolished by overexpression of miR-200b in BMFs, and the same results were observed in fBMFs. In addition, α-SMA was inhibited by an increase in miR-200b. We further demonstrated that miR-200b-mediated decrease in ZEB2 led to down-regulation of α-SMA, vimentin. Loss of miR-200b resulted in enhanced collagen contraction and migration capabilities, and knockdown of ZEB2 reversed these phenomena. Lastly, we showed the expression of miR-200b was significantly less and ZEB2 was markedly higher in OSF tissues. These results suggested that down-regulation of miR-200b may contribute to the pathogenesis of areca quid-associated OSF through the regulation of ZEB2 and myofibroblast hallmarks."	"Septation of the Intrapericardial Arterial Trunks in the Early Human Embryonic Heart. Outflow tract (OFT) septation defects are a common cause of congenital heart disease. Numerous studies have focused on the septation mechanism of the OFT, but have reported inconsistent conclusions. This study, therefore, aimed to investigate the septation of the aortic sac and the OFT in the early embryonic human heart. Serial sections of 27 human embryonic hearts from Carnegie stage (CS) 10 to CS19 were immunohistochemically stained with antibodies against α-smooth muscle actin (α-SMA) and myosin heavy chain. At CS10-CS11, the OFT wall was an exclusively myocardial structure that was continuous with the aortic sac at the margin of the pericardial cavity. From CS13 onward, the OFT was divided into nonmyocardial and myocardial portions. The cushion formed gradually, and its distal border with the OFT myocardium was consistently maintained. The aortic sac between the fourth and sixth aortic arch arteries was degenerated. At CS16, the α-SMA-positive aortopulmonary septum formed and fused with the two OFT cushions, thus septating the nonmyocardial portion of the OFT into two arteries. At this stage, the cushions were not fused. At CS19, the bilateral cushions were fused to septate the myocardial portion of the OFT. Data suggest that the OFT cushion is formed before the aortopulmonary septum is formed. Thus, the OFT cushion is not derived from the aortopulmonary septum. In addition, the nonmyocardial part of the OFT is septated into the aorta and pulmonary trunk by the aortopulmonary septum, while the main part of the cushion fuses and septates the myocardial portion of the OFT. 早期人胚心脏心包内动脉干的分隔摘要背景:流出道分隔缺陷是先天性心脏病的一个常见原因。因此,大量研究聚焦于探讨流出道分隔机制,但结论尚不一致。所以本研究旨在探讨早期人胚心脏动脉囊与流出道的分隔过程。 方法:选用抗α-平滑肌肌动蛋白(α-smooth muscle actin,α-SMA) 、抗肌球蛋白重链 (myosin heavy chain,MHC)抗体对27例Carnegie stage (CS) 10-CS19人胚心脏连续切片进行免疫组织化学染色。 结果:CS10-CS11,流出道壁为心肌性结构,与动脉囊在心包腔边缘相连。CS13后,流出道分为非心肌部和心肌部。流出道心内膜垫逐渐形成,其远端界限与流出道壁心肌界限保持一致。第4、6弓动脉之间的动脉囊退化消失。在CS16,α-SMA阳性主肺动脉隔形成且与流出道心内膜垫融合,将流出道非心肌部分隔为主、肺动脉。此期,流出道心内膜垫未融合。至CS19,两侧流出道心内膜垫融合分隔流出道心肌部。 结论:流出道心内膜垫的形成早于主肺动脉隔。因此,前者并非来源于主肺动脉隔。流出道非心肌部由主肺动脉隔分隔为主动脉与肺动脉干;而流出道心内膜垫的大部融合将流出道心肌部进行分隔。."	"ATF3 and PRAP1 play important roles in cisplatin-induced damages in microvascular endothelial cells. The early intervention is a rational approach to reduce the cardiovascular disease mortality in cancer patients. Here, we tried to identify potential biomarkers for the endothelial damage caused by cisplatin, a typical chemotherapy compound, and explore its underlying mechanisms. Microarray dataset GSE62523 were utilized to assess the gene differential expression from human micro-vascular endothelial cells (HMEC-1) treated with cisplatin. Then, the potential key genes were further validated by qRT-PCR and the γH2AX level was evaluated to monitor the DNA damages caused by cisplatin. For the 'acute-exposure' settings that HMEC-1 were treated with 12.9 μM cisplatin for 6, 24 and 48 h, ATF3, LRRTM2, VCAM1 and PAPPA were identified as potential key genes in endothelial damage, while for the 'chronic-exposure' settings that cells were exposed to 0.52 μM cisplatin twice a week, SULF2, ACTA2 and PRAP1 were identified. In addition, further in vitro validation showed that knockdown of ATF3 attenuated the γH2AX level in cells exposed to cisplatin for 6 or 24 h and knockdown of PRAP1 increased the γH2AX level in cells exposed to cisplatin for 2 days. Notably, ATF3 has the ability to regulate the expression of HIST1H1D, FBXO6, APP, MDM2, STAT1 and TRAF1, while PRAP1 regulates YWHAB, MDM2, ISG15, LYN and CUL1 during cisplatin-induced DNA damage repair process. ATF3 and PRAP1 play important roles in cisplatin-induced DNA damage repair process. They may serve as potential early surrogate biomarkers of microvascular endothelial damage for cancer patients receiving chemotherapies."	"Iris anomalies and the incidence of ACTA2 mutation. Central cysts of the iris pigment epithelium, or iris flocculi, are frequently reported in the literature in association with thoracic aortic aneurysm and dissection due to smooth muscle alpha-actin 2 (ACTA2) mutations. Children with ACTA2 mutations may also present with congenital mydriasis. We report our experience regarding the frequency of ACTA2 mutation in children with the above iris anomalies. This is a retrospective, consecutive case series of all children presenting for iris flocculi or congenital mydriasis at a single tertiary centre from October 2012 to December 2016. 13 children with iris flocculi and 3 with congenital mydriasis presented during the study period. 10 children with iris flocculi completed genetic testing, and none were positive for ACTA2 mutation. All children with congenital mydriasis presented with a multisystem smooth muscle dysfunction syndrome; two of these three children tested positive for missense R179 ACTA2 mutations. In this series, ACTA2 mutation or copy number variation was not detected in children presenting for iris flocculi, whereas congenital mydriasis was associated with R179 mutation in both cases that tested positive for ACTA2 mutation. The case of congenital mydriasis without typical cardiac features of the R179 ACTA2 phenotype or intracranial vasculopathy was negative for ACTA2 mutation. While all children presenting with these iris anomalies should be offered a genetic evaluation, incidence data should inform genetic counselling, particularly in the absence of a family history of aneurysm or sudden death, or systemic signs of smooth muscle dysfunction."	"Fibroblast growth factor 2 decreases bleomycin-induced pulmonary fibrosis and inhibits fibroblast collagen production and myofibroblast differentiation. Fibroblast growth factor (FGF) signaling has been implicated in the pathogenesis of pulmonary fibrosis. Mice lacking FGF2 have increased mortality and impaired epithelial recovery after bleomycin exposure, supporting a protective or reparative function following lung injury. To determine whether FGF2 overexpression reduces bleomycin-induced injury, we developed an inducible genetic system to express FGF2 in type II pneumocytes. Double-transgenic (DTG) mice with doxycycline-inducible overexpression of human FGF2 (SPC-rtTA;TRE-hFGF2) or single-transgenic controls were administered intratracheal bleomycin and fed doxycycline chow, starting at either day 0 or day 7. In addition, wild-type mice received intratracheal or intravenous recombinant FGF2, starting at the time of bleomycin treatment. Compared to controls, doxycycline-induced DTG mice had decreased pulmonary fibrosis 21 days after bleomycin, as assessed by gene expression and histology. This beneficial effect was seen when FGF2 overexpression was induced at day 0 or day 7 after bleomycin. FGF2 overexpression did not alter epithelial gene expression, bronchoalveolar lavage cellularity or total protein. In vitro studies using primary mouse and human lung fibroblasts showed that FGF2 strongly inhibited baseline and TGFβ1-induced expression of alpha smooth muscle actin (αSMA), collagen, and connective tissue growth factor. While FGF2 did not suppress phosphorylation of Smad2 or Smad-dependent gene expression, FGF2 inhibited TGFβ1-induced stress fiber formation and serum response factor-dependent gene expression. FGF2 inhibition of stress fiber formation and αSMA requires FGF receptor 1 (FGFR1) and downstream MEK/ERK, but not AKT signaling. In summary, overexpression of FGF2 protects against bleomycin-induced pulmonary fibrosis in vivo and reverses TGFβ1-induced collagen and αSMA expression and stress fiber formation in lung fibroblasts in vitro, without affecting either inflammation or epithelial gene expression. Our results suggest that in the lung, FGF2 is antifibrotic in part through decreased collagen expression and fibroblast to myofibroblast differentiation. Copyright © 2018 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Osthole decreases collagen I/III contents and their ratio in TGF-β1-overexpressed mouse cardiac fibroblasts through regulating the TGF-β/Smad signaling pathway. The present study was designed to elucidate whether the mechanism by which osthole decreases collagenI/III contents and their ratio is regulating the TGF-β/Smad signaling pathway in TGF-β1-overexpressed mouse cardiac fibroblasts (CFs). These CFs were cultured and treated with different concentrations of osthole. Our results showed that the TGF-β1 expression in the CFs transfected with that the recombinant expression plasmids pcDNA3.1(+)-TGF-β1 was significantly enhanced. After the CFs were treated with 1.25-5 μg·mL<sup>-1</sup> of osthole for 24 h, the mRNA and protein expression levels of collagensIand III were reduced. The collagen I/III ratio was also reduced. The mRNA and protein expression levels of TGF-β1, TβRI, Smad2/3, P-Smad2/3, Smad4, and α-SMA were decreased, whereas the expression level of Smad7 was increased. These effects suggested that osthole could inhibit collagen I and III expression and reduce their ratio via the TGF-β/Smad signaling pathway in TGF-β1 overexpressed CFs. These effects of osthole may play beneficial roles in the prevention and treatment of myocardial fibrosis."	"CD160 Expression in Retinal Vessels Is Associated With Retinal Neovascular Diseases. Anti-angiogenic agents stand first in the treatment of neovascular diseases of the retina. CD160 appeared in several experimental studies as a marker of activated endothelial cells, suggesting it could represent a promising target for novel anti-angiogenic therapies. The aim of the present study was to assess the distribution of CD160 in the human eye, and to search for a possible correlation with retinal neovascular diseases. The physiological distribution of CD160 in the normal eye was assessed with immunolabeling in 10 human donor eyes. Then, in a retrospective cohort of 75 surgical retinal specimens, the density of CD160+ microvessels was evaluated, along with immunolabeling on serial sections against ERG (pan-endothelial cell marker), CD105 (activated endothelial cell marker), and α-SMA (pericyte cell marker). The cohort was divided into two groups: 29 patients with neovascular disease (NV+) and 46 control patients (NV-). CD160 was physiologically expressed by several cell types: endothelial cells of retinal blood vessels, ganglion cells, macrophages, epithelial cells of the conjunctiva, ciliary body, and retinal pigment epithelium. In the patient cohort, the percentage of CD160+ vessels in the retina was significantly and independently higher in patients suffering from neovascular diseases (P = 0.04). On the contrary, the expression of CD105 was correlated neither with retinal neovascular diseases, nor with CD160 expression. CD160 was expressed in some retinal vessels in both normal and pathologic eyes. CD160 expression by endothelial cells of retinal vessels was correlated with ocular neovascular diseases. CD160 could therefore represent an interesting target for novel anti-angiogenic therapies."	"Association of the Gutta-Induced Microenvironment With Corneal Endothelial Cell Behavior and Demise in Fuchs Endothelial Corneal Dystrophy. The number and size of guttae increase over time in Fuchs endothelial corneal dystrophy (FECD); however, the association between these physical parameters and disease pathogenesis is unclear. To determine the role of guttae in corneal endothelial cell function. In an in vitro model, cells from a human corneal endothelial cell line, HCENC-21T, were seeded on decellularized normal (n = 30) and FECD (n = 70) endothelial basement (Descemet) membranes (DMs). Normal human corneas were sent to our laboratory from 3 sources. The study took place at the Schepens Eye Research Institute, Massachusetts Eye and Ear, Boston, and was performed from September 2015 to July 2017. Normal DMs were obtained from 3 different tissue banks and FECD-DMs were obtained from patients undergoing endothelial keratoplasty in 2 departments. Endothelial cell shape, growth, and migration were assessed by live-cell imaging, and gene expression analysis as a function of guttae diameter was assessed by laser capture microscopy. Mean (SD) age of normal-DMs donors was 65.6 (4.4) years (16 women [53%]), and mean (SD) age of FECD-DMs donors was 68.9 (10.6) years (43 women [61%]). Cells covered a greater area (mean [SD], 97.7% [8.5%]) with a greater mean (SD) number of cells (2083 [153] cells/mm2) on the normal DMs compared with the FECD DMs (72.8% [11%]; P = .02 and 1541 [221] cells/mm2 221/mm2; P = .01, respectively). Differences in endothelial cell growth over guttae were observed on FECD DMs depending on the guttae diameter. Guttae with a mean (SD) diameter of 10.5 (2.9) μm did not impede cell growth, whereas those with a diameter of 21.1 (4.9) μm were covered only by the cell cytoplasm. Guttae with the largest mean (SD) diameter, 31.8 (3.8) μm, were not covered by cells, which instead surrounded them in a rosette pattern. Moreover, cells adjacent to large guttae upregulated αSMA, N-cadherin, Snail1, and NOX4 genes compared with ones grown on normal DMs or small guttae. Furthermore, large guttae induced TUNEL-positive apoptosis in a rosette pattern, similar to ex vivo FECD specimens. These findings highlight the important role of guttae in endothelial cell growth, migration, and survival. These data suggest that cell therapy procedures in FECD might be guided by the diameter of the host guttae if subsequent clinical studies confirm these laboratory findings."	"A combination of astragaloside I, levistilide A and calycosin exerts anti-liver fibrosis effects in vitro and in vivo. Liver fibrosis is excessive accumulation of extracellular matrix proteins that results from various chronic liver diseases. Hepatic stellate cells (HSCs) play an essential role in the pathogenesis of liver fibrosis. Danggui Buxue Tang (DBT) is a classic formula of Chinese traditional medicine. We previously showed that DBT could ameliorate liver fibrosis in rats. However, the bioactive components of DBT in the treatment of liver fibrosis remain unknown. In this study we evaluated 14 ingredients from DBT in human hepatic stellate cell line LX-2, and found that astragaloside I (A), levistilide A (L) and calycosin (C) produced synergistic proliferation inhibition on LX-2 cells and TGF-β1-activated LX-2 cells. Thus, we prepared a mixture of them, and named this combination as ALC formula. Using high-content screening and Western blot assay we revealed that the ALC formula significantly reduced the expression of α-SMA and collagen I in LX-2 cells. The in vivo anti-fibrosis effects of ALC formula were evaluated in a liver fibrosis model in C57BL/6 mice established through injection of dimethylnitrosamine (DMN 2 mg/kg, ip) for 4 weeks. In the third week, the nice were injected with ALC formula (astragaloside I 44.21 mg/kg per day, levistilide A 6 mg/kg per day and calycosin 3.45 mg/kg per day; ip) or sorafenib, a positive control drug (6 mg/kg per day, ip) for 2 weeks. We found that administration of the ALC formula markedly decreased collagen deposition, hydroxyproline (Hyp) content and α-SMA expression levels in the liver tissues compared to the model mice. In conclusion, the present study demonstrates for the first time that astragaloside I, levistilide A and calycosin may be the 3 main bioactive components in DBT; their combination exerts anti-liver fibrosis effects in vitro and in vivo."	"Vascular Permeability and Remodelling Coincide with Inflammatory and Reparative Processes after Joint Bleeding in Factor VIII-Deficient Mice. Vascular remodelling is a prominent feature of haemophilic arthropathy (HA) that may underlie re-bleeding, yet the nature of vascular changes and underlying mechanisms remain largely unknown. Here, we aimed to characterize synovial vascular remodelling and vessel integrity after haemarthrosis, as well as temporal changes in inflammatory and tissue-reparative pathways. Thirty acutely painful joints in patients with haemophilia (PWH) were imaged by musculoskeletal ultrasound with Power Doppler (MSKUS/PD) to detect vascular abnormalities and bloody effusions. Nineteen out of 30 painful joint episodes in PWH were associated with haemarthrosis, and abnormal vascular perfusion was unique to bleeding joints. A model of induced haemarthrosis in factor VIII (FVIII)-deficient mice was used for histological assessment of vascular remodelling (α-smooth muscle actin [αSMA] expression), and monitoring of in vivo vascular perfusion and permeability by MSKUS/PD and albumin extravasation, respectively. Inflammatory (M1) and reparative (M2) macrophage markers were quantified in murine synovium over a 10-week time course by real-time polymerase chain reaction. The abnormal vascular perfusion observed in PWH was recapitulated in FVIII-deficient mice after induced haemarthrosis. Neovascularization and increased vessel permeability were apparent 2 weeks post-bleed in FVIII-deficient mice, after a transient elevation of inflammatory macrophage M1 markers. These vascular changes subsided by week 4, while vascular remodelling, evidenced by architectural changes and pronounced αSMA expression, persisted alongside a reparative macrophage M2 response. In conclusion, haemarthrosis leads to transient inflammation coupled with neovascularization and associated vascular permeability, while subsequent tissue repair mechanisms coincide with vascular remodelling. Together, these vascular changes may promote re-bleeding and HA progression."	"Characterization of a non-human primate model for the study of testicular peritubular cells-comparison with human testicular peritubular cells. Are monkey testicular peritubular cells (MKTPCs) from the common marmoset monkey (Callithrix jacchus) a suitable translational model for the study of human testicular peritubular cells (HTPCs)? MKTPCs can be isolated and propagated in vitro, retain characteristic markers for testicular peritubular cells and their proteome strongly (correlation coefficient of 0.78) overlaps with the proteome of HTPCs. Smooth-muscle-like peritubular cells form the wall of seminiferous tubules, transport sperm, are immunologically active, secrete a plethora of factors and may contribute to the spermatogonial stem cell niche. Mechanistic studies are hampered by heterogeneity of human samples. We established a culture method for MKTPCs and characterized these cells from six young adult animals (2-3 years). To examine whether they qualify as a translational model we also examined HTPCs from seven men and compared the proteomes of both groups. We used explant cultures to obtain MKTPCs, which express smooth muscle markers (calponin (CNN1), smooth muscle actin (ACTA2)), lack FSH-receptors (FSHR) and LH-receptors (LHCGR), but possess androgen receptors (AR). MKTPCs can be passaged at least up to eight times, without discernable phenotypic changes. Mass-spectrometry-based analyses of the MKTPC and HTPC proteomes were performed. We established a method for isolation and cultivation of MKTPCs, and provide a comprehensive analysis of their protein repertoire. The results let us conclude that MKTPCs are suitable as a non-human primate model to study peritubular cell functions. List of identified proteins in MKTPCs by liquid chromatography-tandem mass spectrometry is accessible at the ProteomeXchange (identifier PXD009394). This is an in vitro cellular non-human primate model used to provide a window into the role of these cells in the human testis. Previous studies with HTPCs from patients revealed a degree of heterogeneity, possibly due to age, lifestyle and medical history of the individual human donors. We anticipate that the new translational model, derived from young healthy non-human primates, may allow us to circumvent these issues and may lead to a better understanding of the role of peritubular cells. This work was supported by grants from the Deutsche Forschungsgemeinschaft (MA 1080/27-1; AR 362/9-1; BE 2296/8-1). The authors declare no competing financial interests."	"Identification of key gene networks associated with fracture healing using αSMA‑labeled progenitor cells. The aim of the present study was to investigate the key gene network in fracture healing. The dataset GSE45156 was downloaded from the Gene Expression Omnibus. Differentially expressed genes (DEGs) were identified using the linear models for microarray data package of Bioconductor. Subsequently, Gene Ontology (GO) functional and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analyses were conducted for DEGs in day 2 and 6 fractured samples via the Database for Annotation, Visualization and Integrated Discovery. Furthermore, protein‑protein interactions (PPIs) of DEGs were analyzed and a PPI network was constructed. A total of 774 and 1,172 DEGs were identified in day 2 and 6 fractured samples, respectively, compared with unfractured controls. Of the DEGs in day 2 and 6 fractured samples, various upregulated DEGs, including protein kinase C α (Prkca) and B‑cell lymphoma antagonist/killer 1 were significantly enriched in GO terms associated with cell death, and certain downregulated DEGs, including fms‑related tyrosine kinase 1 (Flt1), nitric oxide synthase 3 (Nos3), bone morphogenetic protein 4 (Bmp4) and Notch1 were enriched in GO terms associated with angiogenesis. Furthermore, a series of downregulated DEGs were enriched in the Notch signaling pathway, including hes family bHLH transcription factor 1 and Notch1. Certain DEGs had a high degree and interacted with each other, including Flt1, Nos3, Bmp4 and Notch1, and Prkca and ras‑related C3 botulinum toxin substrate 3. The up and downregulated DEGs may exert critical functions by interactively regulating angiogenesis or apoptosis."	"Comparing coronary artery fibromuscular dysplasia with coronary atherosclerosis: from clinical to histopathological characteristics. NA"	"Transcriptional noise in intact and TGF-beta treated human kidney cells; the importance of time-series designs. The transforming growth factor (TGF)-β signaling pathway plays a key role in various cellular processes. However, insufficient knowledge about the complex and sometimes paradoxical functions of this pathway hinders its therapeutic targeting. In this study, the transcriptional profile of seven mediators and downstream elements of the TGF-β pathway were assessed in TGF-β treated and untreated human kidney derived cells for 2 weeks in a time course manner. As expected the up-regulation of ACTA2 and COL1A2 was evident in the treated cells. However, we observed remarkable fluctuations in gene expression, even in the supposedly steady states. The magnitude of noise was diverse in the examined genes. Our findings underscore the significance of time-course designs for gene expression analyses and clearly show that misleading data can be obtained in single point measurements. Furthermore, we propose specific considerations in the interpretation of time-course data in the context of noisy gene expression."	"Cell differentiation in cardiac myxomas: confocal microscopy and gene expression analysis after laser capture microdissection. Cardiac myxomas are rare tumors with a heterogeneous cell population including properly neoplastic (lepidic), endothelial and smooth muscle cells. The assessment of neoplastic (lepidic) cell differentiation pattern is rather difficult using conventional light microscopy immunohistochemistry and/or whole tissue extracts for mRNA analyses. In a preliminary study, we investigated 20 formalin-fixed and paraffin-embedded cardiac myxomas by means of conventional immunohistochemistry; in 10/20 cases, cell differentiation was also analyzed by real-time RT-PCR after laser capture microdissection of the neoplastic cells, whereas calretinin and endothelial antigen CD31 immunoreactivity was localized in 4/10 cases by double immunofluorescence confocal microscopy. Gene expression analyses of α-smooth muscle actin, endothelial CD31 antigen, alpha-cardiac actin, matrix metalloprotease-2 (MMP2) and tissue inhibitor of matrix metalloprotease-1 (TIMP1) was performed on cDNA obtained from either microdissected neoplastic cells or whole tumor sections. We found very little or absent CD31 and α-Smooth Muscle Actin expression in the microdissected cells as compared to the whole tumors, whereas TIMP1 and MMP2 genes were highly expressed in both ones, greater levels being found in patients with embolic phenomena. α-Cardiac Actin was not detected. Confocal microscopy disclosed two different signals corresponding to calretinin-positive myxoma cells and to endothelial CD31-positive cells, respectively. In conclusion, the neoplastic (lepidic) cells showed a distinct gene expression pattern and no consistent overlapping with endothelial and smooth muscle cells or cardiac myocytes; the expression of TIMP1 and MMP2 might be related to clinical presentation; larger series studies using also systematic transcriptome analysis might be useful to confirm the present results."	"Epidermal HMGB1 Activates Dermal Fibroblasts and Causes Hypertrophic Scar Formation in Reduced Hydration. HMGB1 protein is a multifunctional cytokine involved in inflammatory reactions and is known to play a key role in tissue repair and fibrosis. However, the function of HMGB1 in fibrotic skin diseases, such as hypertrophic scar formation, remains unclear. In this study, HMGB1 was detected in the nuclei of epidermal cells in normal skin and had accumulated in the cytoplasm in hypertrophic scars. By establishing a keratinocyte-fibroblast co-culture and conditional medium treatment models, we found that a reduced hydration condition increased the expression and secretion of HMGB1 in keratinocytes, subsequently activating dermal fibroblasts. HMGB1 secreted from keratinocytes activated fibroblasts by promoting the nuclear import of MRTF-A, increased the nuclear accumulation of MRTF-A/SRF complexes and consequently enhanced α-smooth muscle actin promoter activation. Moreover, blockade of advanced glycation end products or Toll-like receptor 2/4 inhibited the fibroblast activation induced by HMGB1. Finally, local delivery of HMGB1 resulted in marked hypertrophic scar formation in rabbit hypertrophic scar models, while HMGB1 blockade exerted a clear anti-scarring effect. Our results indicate that high HMGB1 levels induced by a reduced hydration status play an important role in hypertrophic scar formation, strongly suggesting that HMGB1 is a novel target for preventing scarring."	"Sudden coronary death in the young: Evidence of contractile phenotype of smooth muscle cells in the culprit atherosclerotic plaque. Culprit coronary atherosclerotic plaques (APs) from young sudden cardiac death (SCD) victims are mostly non-atheromatous, i.e., consisting of proliferative smooth muscle cells (SMCs). Coronary vasospasm has been advocated to explain plaque instability in the absence of thrombosis. Our aim was to characterize the SMC phenotype in the intima and media of coronary arteries from young SCD victims. A total of 38 coronary artery segments were studied: (a) 18 APs from young (≤40 years old) SCD patients, (b) 9 APs from old (&gt;40 years old) SCD patients, (c) 11 non-atherosclerotic coronary arteries from young patients (≤40 years old). Markers of differentiated SMCs such as α-smooth muscle actin (α-SMA), smooth muscle myosin heavy chains (SMMHCs), and heavy-caldesmon (h-CaD), were assessed in intima and media by immunohistochemistry and quantified morphometrically. In the intima, their expression was higher in non-atherosclerotic arteries (44.37 ± 3.03% for α-SMA, 14.21 ± 2.01% for SMMHCs, 8.90 ± 1.33% for h-CaD) and APs from young SCD victims (38.95 ± 2.29% for α-SMA, 11.92 ± 1.92% for SMMHCs, 8.93 ± 1.12% for h-CaD) compared with old patients (22.01 ± 3.56% for α-SMA, 6.39 ± 0.7% for SMMHCs, 3.00 ± 0.57% for h-CaD; all P statistically significant). The media of non-atherosclerotic arteries and APs from young SCD victims exhibited strong positivity for the differentiation markers unlike that of old patients. SMCs of coronary APs as well as from the underlying media from young SCD victims exhibit strong contractile phenotype. In the setting of critical stenosis, both intima and media SMC contractility might contribute to transient coronary spasm leading to myocardial ischemia and SCD."	"Islet Microvasculature Alterations With Loss of Beta-cells in Patients With Type 1 Diabetes. Islet microvasculature provides key architectural and functional roles, yet the morphological features of islets from patients with type 1 diabetes are poorly defined. We examined islet and exocrine microvasculature networks by multiplex immunofluorescence imaging of pancreases from organ donors with and without type 1 diabetes (n=17 and n=16, respectively) and determined vessel diameter, density, and area. We also analyzed these variables in insulin-positive and insulin-negative islets of 7 type 1 diabetes donors. Control islet vessel diameter was significantly larger (7.6 ± 1.1 μm) compared with vessels in diabetic islets (6.2 ± 0.8 μm; p&lt;0.001). Control islet vessel density (number/islet) was significantly lower (5.3 ± 0.6) versus diabetic islets (9.3 ± 0.2; p&lt;0.001). Exocrine vessel variables were not significantly different between groups. Islets with residual beta-cells were comparable to control islets for both vessel diameter and density and were significantly different from insulin-negative islets within diabetic donors (p&lt;0.05). Islet smooth muscle actin area had a significant positive correlation with age in both groups (p&lt;0.05), which could negatively impact islet transplantation efficiency from older donors. These data underscore the critical relationship of islet beta-cells and islet vessel morphology in type 1 diabetes. These studies provide new knowledge of the islet microvasculature in diabetes and aging."	"Placental growth factor promotes epithelial-mesenchymal transition-like changes in ARPE-19 cells under hypoxia. To investigate the role of placental growth factor (PGF) in the epithelial-mesenchymal transition (EMT) of ARPE-19 cells under hypoxia, and whether the NF-κB signaling pathway is involved in this process. ARPE-19 cells were treated in five groups: a control group, hypoxia group, PGF group, hypoxia+PGF group, and NF-κB-blocked group. A chemical hypoxia model was established in the ARPE-19 cells by adding CoCl2 to the culture medium. The morphological changes after treatment were observed. The proliferation rates were measured with 3-(4,5-dimethyl-2-thiazolyl)-2,5-diphenyl-2H-tetrazolium bromide (MTT) assay. The migration abilities were measured with scratch assay. The EMT biomarkers were measured with quantitative real-time PCR (qRT-PCR), western blotting, and immunofluorescence. The relative protein expression of components of the NF-κB signaling pathway was measured with western blotting and immunofluorescence. Cells treated with PGF under hypoxia exhibited morphological changes consistent with the transition from an epithelial to a mesenchymal phenotype. In the ARPE-19 cells, exogenous PGF under hypoxia increased the proliferation rate compared to the rate under hypoxia alone (p&lt;0.05) and increased the migration rate (p&lt;0.05). Treatment of hypoxia-exposed cells with PGF caused decreased expression of the epithelial biomarkers E-cadherin and ZO-1 (both p&lt;0.05) and increased expression of the mesenchymal marker α-SMA (p&lt;0.05) by enhancing the phosphorylation of NF-κB p65 of the total protein, promoting the translocation of p65 to the nucleus, and inducing the degradation of IκB-α (a negative regulator of the NF-κB pathway) in the ARPE-19 cells. Additionally, the effect of PGF-induced EMT in the ARPE-19 cells under hypoxia was counteracted with BAY 11-7082 (a selective NF-κB inhibitor). Exogenous PGF promotes EMT-like changes in ARPE-19 cells under hypoxia by activating the NF-κB signaling pathway. The study results suggest that PGF may play a role in scar formation in neovascular age-related macular degeneration (AMD) and that the inhibition of PGF may be a promising target for the prevention and treatment of AMD."	"A Novel Rabbit Model for Benign Biliary Stricture Formation and the Effects of Medication Infusions on Stricture Formation. Benign biliary stricture (BBS) is highly refractory. Currently, there is no effective strategy for prevention of BBS recurrence. The aim of this study is to establish a novel BBS rabbit model and to investigate the efficacy of biliary infusion with anti-proliferative medications for treating BBS. A BBS model was established via surgical injury and biliary infection. The biliary infusion tube was inserted into the common bile duct via the stump of cystic duct after cholecystectomy. Biliary infusions with Rapamycin, Pirfenidone and Fasudil were performed daily during the 4 weeks following the surgery. The wall thickness and luminal area of the bile duct were assessed. All rabbits formed BBS after surgery. The mortality rate was 13% (8/60) and tube withdrawal rate was 4% (2/48). The thickness of the bile duct wall was significantly reduced; whereas the luminal area of the bile duct was dramatically enlarged in the Rapamycin or the Pirfenidone treated group, compared to the saline treated group. Furthermore, the local treatment significantly decreased the levels of proliferation makers, including PCNA, Collagen I and fibrogenic mediators, including ACTA2 and TGF-beta. We have established a novel animal model for BBS formation. We have further demonstrated that biliary infusion with Rapamycin or Pirfenidone limits the biliary strictures through inhibiting the proliferation of the bile duct wall in this model. This may represent a new avenue for preventing biliary restenosis."	"The Roles of Matrix Stiffness and ß-Catenin Signaling in Endothelial-to-Mesenchymal Transition of Aortic Valve Endothelial Cells. Valve stiffening is a hallmark of aortic valve stenosis caused by excess extracellular matrix accumulation by myofibroblasts. We aimed to elucidate whether matrix stiffness regulates endothelial-to-mesenchymal transition (EndMT) of adult valvular endothelial cells (VECs) to myofibroblasts as a mechanism to further promote valve fibrosis. In addition, we specifically examined the role of the Wnt/β-catenin signaling pathway in the development of myofibroblasts during EndMT, as Wnt/β-catenin signaling has been implicated in EndMT during heart development, is reactivated in valve disease, and is required for mechanically-regulated myofibrogenesis of valve interstitial cells. Clonally derived porcine VECs were cultured on soft (5 kPa) or stiff (50 kPa) silicone Sylgard 527 substrates and treated with transforming growth factor (TGF)-β1 to induce EndMT. Immunofluorescent staining revealed that TGF-β1 preferentially promoted EndMT in VECs on stiffer substrates, evidenced by a decrease in the endothelial marker VE-cadherin and an increase in the myofibroblast marker α-smooth muscle actin (α-SMA). These changes were accompanied by β-catenin nuclear localization both in vitro and in vivo, assessed by immunostaining. Degradation of β-catenin with endostatin reduced VEC myofibroblast transition, as indicated by decreased α-SMA fiber expression. We conclude that TGF-β1-induced EndMT in aortic VECs is dependent on matrix stiffness and Wnt/β-catenin signaling promotes myofibrogenesis during EndMT."	"Myotonic dystrophy type 1 and pseudo-obstruction in a child with smooth muscle α-actin deficiency and eosinophilic myenteric plexitis. Myotonic dystrophy (MD) frequently involves the gastrointestinal tract, where it can manifest as chronic intestinal pseudo-obstruction (CIPO), particularly in adults. This manifestation is quite uncommon in children. We report the case of a 12-year-old boy with MD type 1 and CIPO, in which a pathologic assessment revealed an association with smooth muscle α-actin deficiency in the external muscular layer of the ileum, and with features of eosinophilic plexitis and eosinophilic muscle infiltration in the colon. In this peculiar case, the clinical aspects of CIPO might have been due to the involvement of several neuromuscular mechanisms."	"Essential role of connective tissue growth factor (CTGF) in transforming growth factor-β1 (TGF-β1)-induced myofibroblast transdifferentiation from Graves' orbital fibroblasts. Connective tissue growth factor (CTGF) associated with transforming growth factor-β (TGF-β) play a pivotal role in the pathophysiology of many fibrotic disorders. However, it is not clear whether this interaction also takes place in GO. In this study, we investigated the role of CTGF in TGF-β-induced extracellular matrix production and myofibroblast transdifferentiation in Graves' orbital fibroblasts. By Western blot analysis, we demonstrated that TGF-β1 induced the expression of CTGF, fibronectin, and alpha-smooth muscle actin (α-SMA) in Graves' orbital fibroblasts. In addition, the protein levels of fibronectin and α-SMA in Graves' orbital fibroblasts were also increased after treatment with a recombinant human protein CTGF (rhCTGF). Moreover, we transfected the orbital fibroblasts with a small hairpin RNA of CTGF gene (shCTGF) to knockdown the expression levels of CTGF, which showed that knockdown of CTGF significantly diminished TGF-β1-induced expression of CTGF, fibronectin and α-SMA proteins in Graves' orbital fibroblasts. Furthermore, the addition of rhCTGF to the shCTGF-transfected orbital fibroblasts could restore TGF-β1-induced expression of fibronectin and α-SMA proteins. Our findings demonstrate that CTGF is an essential downstream mediator for TGF-β1-induced extracellular matrix production and myofibroblast transdifferentiation in Graves' orbital fibroblasts and thus may provide with a potential therapeutic target for treatment of GO."	"Thrombin and factor Xa link the coagulation system with liver fibrosis. Thrombin activates hepatic stellate cells via protease-activated receptor-1. The role of Factor Xa (FXa) in hepatic fibrosis has not been elucidated. We aimed to evaluate the impact of FXa and thrombin in vitro on stellate cells and their respective inhibition in vivo using a rodent model of hepatic fibrosis. HSC-LX2 cells were incubated with FXa and/or thrombin in cell culture, stained for αSMA and relative gene expression and gel contraction calculated. C57BL/6 J mice were administered thioacetamide (TAA) for 8 weeks with Rivaroxaban (n = 15) or Dabigatran (n = 15). Control animals received TAA alone (n = 15). Fibrosis was scored and quantified using digital image analysis and hepatic tissue hydroxyproline estimated. Stellate cells treated with FXa and thrombin demonstrated upregulation of procollagen, TGF-beta, αSMA and significant cell contraction (43.48%+/- 4.12) compared to culturing with FXa or thrombin alone (26.90%+/- 8.90, p = 0.02; 13.1%+/- 9.84, p &lt; 0.001). Mean fibrosis score, percentage area of fibrosis and hepatic hydroxyproline content (2.46 vs 4.08, p = 0.008; 2.02% vs 3.76%, p = 0.012; 276.0 vs 651.3, p = 0.0001) were significantly reduced in mice treated with the FXa inhibitor compared to control mice. FXa inhibition was significantly more effective than thrombin inhibition in reducing percentage area of fibrosis and hepatic hydroxyproline content (2.02% vs 3.70%,p = 0.031; 276.0 vs 413.1,p = 0.001). FXa promotes stellate cell contractility and activation. Early inhibition of coagulation using a FXa inhibitor significantly reduces TAA induced murine liver fibrosis and may be a viable treatment for liver fibrosis in patients."	"Mesalazine, an osteopontin inhibitor: The potential prophylactic and remedial roles in induced liver fibrosis in rats. Liver fibrosis is a major health issue leading to high morbidity and mortality. The potential anti-fibrotic activity and the effect of mesalazine on osteopontin (OPN), an extra cellular matrix (ECM) component were evaluated in TAA-induced liver fibrosis in rats. For this purpose, forty-two adult male Wistar rats were divided into six groups. All animals, except the normal control, were intraperitoneally injected with TAA (200 mg/kg) twice per week for 6 weeks. In the hepato-protective study, animals were administered mesalazine (50 and 100 mg/kg, orally) for 4 weeks before induction of liver fibrosis then concomitantly with TAA injection. In the hepato-therapeutic study, animals were administered mesalazine for 6 weeks after TAA discontinuation with the same doses. In both studies, mesalazine administration improved liver biomarkers through decreasing serum levels of AST, ALT and total bilirubin when compared to fibrotic group with significant increase in total protein and albumin levels. Mesalazine significantly decreased hepatic MDA level and counteracted the depletion of hepatic GSH content and SOD activity. Additionally, it limits the elevation of OPN and TGF-β1 concentrations and suppressed TNF-α as well as α-SMA levels in hepatic tissue homogenate. Histopathologically, mesalazine as a treatment showed a good restoration of the hepatic parenchymal cells with an obvious decreased intensity and retraction of fibrous proliferation, while as a prophylaxis it didn't achieve enough protection against the harmful effect of TAA, although it decreased the intensity of portal to portal fibrosis and pseudolobulation. Furthermore, mesalazine could suppress the expression of both α-SMA and caspase-3 in immunohistochemical sections. In conclusion, mesalazine could have a potential new indication as anti-fibrotic agent through limiting the oxidative damage and altering TNF-ɑ pathway as an anti-inflammatory drug with down-regulating TGF-β1, OPN, α-SMA and caspase-3 signaling pathways."	"[Prognostic factors analysis of Ki-67, α-SMA expression in retroperitoneal leiomyosarcoma]. Objective: To investigate the expression and prognostic value of alpha smooth muscle actin(α-SMA) and Ki-67 in retroperitoneal leiomyosarcoma. Methods: Fifty retroperitoneal leiomyosarcoma patients who underwent operation in Chinese People's Liberation Army General Hospital from May 2002 to December 2015 were retrospectively analyzed. There were 14 males and 36 females form 21 to 79 and an average age of 48. Kaplan-Meier estimations and Cox regression analyses were performed. Results: Of the 50 cases, 45 patients underwent complete resection, and others are not. The overall 1, 3, 5-year survival rates were 86.0%, 46.0% and 28.0%, respectively. Tumor size, extent of resection, pathological stage, and expression levels of Ki-67 and alpha smooth muscle actin (α-SMA) were closely related to the survival of retroperitoneal leiomyosarcoma patients (all P&lt;0.05), respectively. Multivariate analysis showed that pathological grade and degree of surgical resection were independent risk factors in the prognosis of patients (P&lt;0.05). Conclusion: The high expression of α-SMA and Ki-67 are indicators of poor prognosis in retroperitoneal leiomyosarcoma, which can be used as a potential survival predictor in patients with retroperitoneal leiomyosarcoma. 目的: 探讨α-SMA和Ki-67的表达及其与原发性腹膜后平滑肌肉瘤患者预后的关系。 方法: 回顾性分析2002年5月至2015年12月解放军总医院收治的50例腹膜后平滑肌肉瘤患者的临床病理资料。男14例,女36例;年龄21~79岁,平均年龄48岁。单因素生存分析采用Kaplan-Meier法和Log rank检验,多因素生存分析采用Cox风险比例模型。 结果: 50例患者中,完整切除45例,未完整切除5例。患者的生存时间为2~131个月,中位生存时间为35个月。患者的1、3、5年生存率分别为86.0%、46.0%和28.0%。单因素分析显示,肿瘤最大直径、手术切除程度、病理分级、α-SMA和Ki-67表达为患者预后的影响因素(均P&lt;0.05)。多因素分析显示,病理分级和手术切除程度为患者预后的独立影响因素(均P&lt;0.05)。 结论: 腹膜后平滑肌肉瘤患者的预后较差,为达到肿瘤完整切除的目的,可根据术中情况联合周围器官切除。肿瘤过大、非完整切除、病理分级高、高表达Ki-67和α-SMA患者的预后差。."	"HCC-derived exosomes elicit HCC progression and recurrence by epithelial-mesenchymal transition through MAPK/ERK signalling pathway. Liver cancer is the second most common cause of cancer-related death worldwide. Approximately 70-90% of primary liver cancers are hepatocellular carcinoma (HCC). Currently, HCC patient prognosis is unsatisfactory due to high metastasis and/or post-surgical recurrence rates. Therefore, new therapeutic methods for inhibiting metastasis and recurrence are urgently needed. Exosomes are small lipid-bilayer vesicles that are implicated in tumour development and metastasis. Rab27a, a small GTPase, regulates exosome secretion by mediating multivesicular endosome docking at the plasma membrane. However, whether Rab27a participates in HCC cell-derived exosome exocytosis is unclear. Epithelial-mesenchymal transition (EMT) frequently initiates metastasis. The role of HCC cell-derived exosomes in EMT remains unknown. We found that exosomes from highly metastatic MHCC97H cells could communicate with low metastatic HCC cells, increasing their migration, chemotaxis and invasion. Rab27a knockdown inhibited MHCC97H-derived exosome secretion, which consequently promoted migration, chemotaxis and invasion in parental MHCC97H cells. Mechanistic studies showed that the biological alterations in HCC cells treated with MHCC97H-derived exosomes or MHCC97H cells with reduced self-derived exosome secretion were caused by inducing EMT via MAPK/ERK signalling. Animal experiments indicated that exosome secretion blockade was associated with enhanced lung and intrahepatic metastasis of parental MHCC97H cells, while ectopic overexpression of Rab27a in MHCC97H cells could rescue this enhancement of metastasis in vivo. Injection of MHCC97H cell-derived exosomes through the tail vein promoted intrahepatic recurrence of HLE tumours in vivo. Clinically, Rab27a was positively associated with serum alpha-fetoprotein (AFP) level, vascular invasion and liver cirrhosis. Our study elucidated the role of exosomes in HCC metastasis and recurrence, suggesting that they are promising therapeutic and prognostic targets for HCC patients."	"Pyroptosis in pterygium pathogenesis. Pterygium is a common ocular disease characterized by proliferating fibrovascular tissue. Pyroptosis, a recently discovered programed cell death, is known to be associated with oxidative stress, one of the main causes of pterygia. Here, we aimed to study the role of pyroptosis in pterygium pathogenesis. The expression of nod-like receptor pyrins-3 (NLRP3), caspase-1, IL-18, and IL-1β was analyzed in 60 human pterygium tissues and 60 human conjunctival epithelium tissues using real-time quantitative polymerase chain reaction (qRT-PCR) and Western blot analysis. Human conjunctival epithelial cells (HConECs) and human pterygium fibroblasts (HPFs) were primary cultured and the level of pyroptosis-associated factors was detected. Both cells were treated with H2O2, and cell lysis was detected by lactate dehydrogenase (LDH) release assay, the expression of the factors by qRT-PCR, Western blot analysis, and immunostaining. The downstream factors IL-18 and IL-1β were measured after inhibition of caspase-1 to confirm the caspase-1-dependent pyroptosis. α-SMA and E-cadherin were detected as indicators of pyroptosis-induced myofibroblast activation in HPFs. We discovered that the expression of the factors was significantly increased in pterygium and that caspase-1-dependent pyroptosis presents in both H2O2-treated HPFs and HConECs during which the expression of these factors was significantly elevated and the elevation of downstream factors IL-18 and IL-1β was restrained after caspase-1 inhibition. α-SMA increase and E-cadherin down-regulation were detected in H2O2-treated HPFs and the changes were reversed by caspase-1 inhibition. Pyroptosis displays a role in the pathological process of pterygium formation and progression. Pyroptosis appears to be an intriguing target to prevent pterygium pathogenesis."	"Growth differentiation factor 15 ameliorates nonalcoholic steatohepatitis and related metabolic disorders in mice. Growth differentiation factor 15 (GDF15) is an endocrine hormone belonging to the TGFβ superfamily member. GDF15 administration or GDF15 overexpression has been reported to have anti-obesity and anti-diabetic effects. Although non-alcoholic fatty liver disease (NAFLD)/non-alcoholic steatohepatitis (NASH) is frequently associated with obesity and insulin resistance, the functional role of endogenous GDF15 and therapeutic effect of GDF15 overexpression in NASH and related metabolic deterioration have not been evaluated. Here, we found that GDF15 expression was increased in the livers of NASH animal models and human subjects with NASH. Elevated expression of GDF15 was due to diet-induced hepatic endoplasmic reticulum (ER) stress. Gdf15-knockout mice exhibited aggravated NASH phenotypes such as increased steatosis, hepatic inflammation, fibrosis, liver injury, and metabolic deterioration. Furthermore, GDF15 directly suppressed expression of fibrosis-related genes and osteopontin (OPN), contributing factors for NASH-related fibrosis, in hepatic stellate cells in vitro and in the liver of mice in vivo. Finally, we found that GDF15-transgenic mice showed attenuation of NASH phenotypes and metabolic deterioration. Therefore, our results suggest that induction of endogenous GDF15 is a compensatory mechanism to protect against the progression of NASH and that GDF15 could be an attractive therapeutic candidate for treatment of NASH and NASH-related metabolic deterioration."	"Mechanical and migratory properties of normal, scar, and Dupuytren's fibroblasts. Mechanical properties of myofibroblasts play a key role in Dupuytren's disease. Here, we used atomic force microscopy to measure the viscoelastic properties of 3 different types of human primary fibroblasts derived from a same patient: normal and scar dermal fibroblasts and palmar fascial fibroblasts from Dupuytren's nodules. Different stiffness hydrogels (soft ~1 kPa and stiff ~ 50 kPa) were used as cell culture matrix to mimic the mechanical properties of the natural tissues, and atomic force microscopy step response force curves were used to discriminate between elastic and viscous properties of cells. Since transforming growth factor-β1 (TGF-β1) is known to induce expression of α-smooth muscle actin positive stress fibers in myofibroblasts, we investigated the behavior of these fibroblasts before and after applying TGF-β1. Finally, we performed an in vitro cell motility test, the wound healing or scratch assay, to evaluate the migratory properties of these fibroblasts. We found that (1) Dupuytren's fibroblasts are stiffer than normal and scar fibroblasts, the elastic modulus E ranging from 4.4, 2.1, to 1.8 kPa, for Dupuytren's, normal and scar fibroblasts, respectively; (2) TGF-β1 enhances the level of α-smooth muscle actin expression and thus cell stiffness in Dupuytren's fibroblasts (E, ~6.2 kPa); (3) matrix stiffness influences cell mechanical properties most prominently in Dupuytren's fibroblasts; and (4) Dupuytren's fibroblasts migrate slower than the other fibroblasts by a factor of 3. Taking together, our results showed that mechanical and migratory properties of fibroblasts might help to discriminate between different pathological conditions, helping to identify and recognize specific cell phenotypes."	"Proteomic Analysis of Cerebral Cortex Extracts from Sus scrofa with Induced Hemorrhagic Stroke. Cerebrovascular diseases, including stroke and micro stroke, are the main causes of death in contemporary society. Hemorrhagic stroke is the fast emerging defficiency in the brain function resulting from disturbance of blood supply to the brain caused by the rapture of blood vessels (Lopez et al. in Proteomics Clin Appl 6:190-200, 2012). The influence of a model hemorrhagic stroke on white pigs with the change in the protein profile of their cortical samples 24 h and 2 months after the stroke was examined using mass-spectrometric analysis. Different proteins (n = 30) were identified, and their content was elevated. These proteins are involved in the mechanisms of neuroprotection, including compensation of oxidative stress (TXN, SNCA, PRDX6, ENO1), prevention of unwanted protein aggregation and apoptosis (PTMA, SNCA, SNCB), release of neurotransmitters (GAPDH, PEBP1) and assembly of the cytoskeleton (ACTA2, PTMA, TUBA4A, TUBA1D), etc. Also, a group of seven Ras family proteins involved in the regulation of cell proliferation and differentiation was found in the samples taken 24 h following the stroke. The relative concentrations of most of the proteins in the samples taken 2 months after the stroke demonstrate intermediate values between the control sample and the sample taken in 24 h, indicating the extinction of change in the protein profile with time. During the first 24 h after the stroke, there is an increase in protein fractions participating in exocytosis, synaptic plasticity/signaling, and support of neurotransmitter transport. Such shift in the weight of protein functional clusters can be attributed to activation of compensatory mechanisms in the body focused on neuroprotection."	"Protective Effects of Fucoidan on Epithelial-Mesenchymal Transition of Retinal Pigment Epithelial Cells and Progression of Proliferative Vitreoretinopathy. Proliferative vitreoretinopathy (PVR) is a severe blinding complication of rhegmatogenous retinal detachment. Epithelial-mesenchymal transition (EMT) of retinal pigment epithelial (RPE) cells is thought to play a pivotal role in the pathogenesis of PVR. Fucoidan, a marine extract, reportedly has many benefits effects in a variety of tissues and organs such as anti-inflammation, anti-oxidative stress, and anti-carcinogenesis. In this study, we investigated the potential role of fucoidan on EMT in RPE cells and its effect on the development of PVR. MTS, Transwell, and collagen gel contraction assays were employed to measure the viability, migration, and contraction of RPE cells, respectively. mRNA and protein expression were evaluated via real-time quantitative PCR and western blot analysis, respectively. In vivo, a pigmented rabbit model of PVR was established to examine the anti-PVR effect of fucoidan. Fucoidan reversed the transforming growth factor (TGF)-β1-induced EMT of RPE cells, including the increased expression of α-smooth muscle actin (α-SMA) and fibronectin and down-regulation of E-cadherin in human primary RPE cells. Moreover, the upregulation of phosphorylated Smad2/3 induced by TGF-β1 was suppressed by fucoidan. Fucoidan also inhibited the migration and contraction of RPE cells induced by TGF-β1. In vivo, fucoidan inhibited the progression of experimental PVR in rabbit eyes. Histological findings showed that fucoidan suppressed the formation of α-SMA-positive epiretinal membranes. Our findings regarding the protective effects of fucoidan on the EMT of RPE cells and experimental PVR suggest the potential clinical application of fucoidan as an anti-PVR agent."	"The association of neuron-derived orphan receptor 1 with pulmonary vascular remodeling in COPD patients. Chronic hypoxia-induced pulmonary vascular remodeling is a feature of chronic obstructive pulmonary disease (COPD). Our previous reports indicate that neuron-derived orphan receptor 1 (NOR1) promoted pulmonary smooth muscle cell proliferation in vitro. But it remains unclear whether NOR1 participated into hypoxia-induced pulmonary vascular remodeling in COPD patients. For this study, we collected peripheral lung tissues of 26 male COPD patients with or without hypoxemia. We detected the pulmonary vascular remodeling in all the peripheral lung tissues. Primary human pulmonary arterial smooth muscle cells were also cultured in vitro and stimulated with hypoxia or normoxia. Cell proliferation and protein levels were detected. COPD patients with hypoxemia showed significantly enlarged pulmonary vessels wall thickness and increased protein levels of HIF-1α, smooth muscle actin, cyclin D1, and NOR1 when compared with those in normoxic patients. Moreover, hypoxia induced human pulmonary arterial smooth muscle cell proliferation and NOR1 overexpression in vitro. The plasmid-based NOR1 gene overexpression markedly promoted DNA synthesis and proliferation in hypoxia or normoxic cells. Human NOR1 gene-specific siRNA intensively suppressed DNA synthesis and proliferation. Transfection of NOR1 overexpression plasmid raised cyclin D1 protein levels, which could be significant inhibited by NOR1-specific siRNA or a CDK4/6 inhibitor PD0332991. We concluded that NOR1 upregulation is associated with hypoxia-induced pulmonary vascular remodeling in COPD via promoting human pulmonary arterial smooth muscle cell proliferation."	"Performance comparison of two whole genome amplification techniques in frame of multifactor preimplantation genetic testing. To compare multiple displacement amplification and OmniPlex whole genome amplification technique performance during array comparative genome hybridization (aCGH), Sanger sequencing, SNaPshot and fragment size analysis downstream applications in frame of multifactor embryo preimplantation genetic testing. Preclinical workup included linked short tandem repeat (STR) marker selection and primer design for loci of interest. It was followed by a family haplotyping, after which an in vitro fertilization preimplantation genetic testing (IVF-PGT) cycle was carried out. A total of 62 embryos were retrieved from nine couples with a confirmed single gene disorder being transmitted in their family with various inheritance traits-autosomal dominant (genes-ACTA2, HTT, KRT14), autosomal recessive (genes-ALOX12B, TPP1, GLB1) and X-linked (genes-MTM1, DMD). Whole genome amplification (WGA) for the day 5 embryo trophectoderm single biopsies was carried out by multiple displacement amplification (MDA) or polymerase chain reaction (PCR)-based technology OmniPlex and was used for direct (Sanger sequencing, fragment size analysis, SNaPshot) and indirect mutation assessment (STR marker haplotyping), and embryo aneuploidy testing by array comparative genome hybridization (aCGH). Family haplotyping revealed informative/semi-informative microsatellite markers for all clinical cases for all types of inheritance. Indirect testing gave a persuasive conclusion for all embryos assessed, which was confirmed through direct testing. The overall allele dropout (ADO) rate was higher for PCR-based WGA, and MDA shows a better genomic recovery scale. Five euploid embryos were subjected to elective single embryo transfer (eSET), which resulted in four clinical pregnancies and birth of two healthy children, which proved free of disease causative variants running in the family postnataly. A developed multifactor PGT protocol can be adapted and applied to virtually any genetic condition and is capable of improving single gene disorder preimplantation genetic testing in a patient-tailored manner thus increasing pregnancy rates, saving costs and increasing patient reliability."	"Short-term oral gavage administration of adenine induces a model of fibrotic kidney disease in rats. The adenine model of kidney disease typically involves dietary delivery of adenine over several weeks. This model can be variable in its disease progression and can result in significant mortality. In the current study, the amount of adenine delivered to rats was controlled by utilizing oral gavage administration over a short period in an attempt to induce robust renal pathology while addressing variability and viability of the animals. Adenine (150 or 200 mg/kg) was administered via oral gavage for 10 consecutive days, and assessed over a total of 20 days. Both adenine dose groups manifested pathophysiological features of kidney disease such as proteinuria, elevated serum creatinine and BUN, and tubulointerstitial fibrosis. The animals also displayed a decline in glomerular filtration rate. Renal mRNA expression of genes associated with injury, inflammation, and fibrosis (i.e., Col1a1, Acta2, Serpine1, Timp1, Fn-Eda, Tgfb1, Ccl2, Nlrp3, Aqp1 and Ccnd1) were elevated as were urinary biomarkers that have translational utility (i.e., clusterin, KIM-1, MCP-1, OPN, NGAL, B2M, calbindin, and cystatin C). All disease endpoints were more pronounced in the 200 mg/kg group, however, while measures of tissue fibrosis were sustained, there was partial recovery by day 20 in functional readouts. No mortality was observed in either dose group. Short-term delivery of adenine via precise gavage delivery induced a robust model with hallmarks of fibrotic kidney disease, had limited variance between animals, and no animal morbidity within the 20 days studied. This model represents a methodical alternative to long-term dietary dosing of adenine."	"What podoplanin tells us about cells with telopodes. Telocytes (TCs) are stromal cells with telopodes, which represent long, thin, moniliform cell processes; however, this morphological feature alone is insufficient to define a cell type. Specific markers of lymphatic endothelial cells (LECs), such as Prox-1, podoplanin (D2-40) or LYVE-1, are not usually tested in TCs. We thus aimed at performing a study in light microscopy to evaluate whether or not LECs could be mistaken for TCs. Therefore we used CD34, α-smooth muscle actin and D2-40 for an immunohistochemical study on archived paraffin-embedded samples of uterine leiomyoma. Lymphatic vessels were identified by the expression of D2-40, but on the microscopic slides, false spindle-shaped TCs appearances either corresponded to collapsed lymphatic lumina or were determined by grazing longitudinal cuts of lymphatics. It is therefore mandatory to check the expression of lymphatic markers in telocyte-like cells and, moreover, to carefully examine the bidimensional cuts in order to avoid false results."	"Lysophosphatidic Acid Induces ECM Production via Activation of the Mechanosensitive YAP/TAZ Transcriptional Pathway in Trabecular Meshwork Cells. Lysophosphatidic acid (LPA), a bioactive lipid, has been shown to increase resistance to aqueous humor outflow (AH) through the trabecular meshwork (TM). The molecular basis for this response of the TM to LPA, however, is not completely understood. In this study, we explored the possible involvement of mechanosensitive Yes-associated protein (YAP) and its paralog, transcriptional coactivator with PDZ-binding domain (TAZ), transcriptional activation in extracellular matrix (ECM) production by LPA-induced contractile activity in human TM cells (HTM). The responsiveness of genes encoding LPA receptors (LPARs), LPA hydrolyzing lipid phosphate phosphatases (LPPs), and the LPA-generating autotaxin (ATX) to cyclic mechanical stretch in HTM cells, was evaluated by RT-quantitative (q)PCR. The effects of LPA and LPA receptor antagonists on actomyosin contractile activity, activation of YAP/TAZ, and levels of connective tissue growth factor (CTGF), and Cyr61 and ECM proteins in HTM cells were determined by immunoblotting, mass spectrometry, and immunofluorescence analyses. Cyclic mechanical stretch significantly increased the expression of several types of LPARs, LPP1, and ATX in HTM cells. LPA and LPA receptor-dependent contractile activity led to increases in both, the protein levels and activation of YAP/TAZ, and increased the levels of CTGF, Cyr61, α-smooth muscle actin (α-SMA), and ECM proteins in HTM cells. The results of this study reveal that LPA and its receptors stimulate YAP/TAZ transcriptional activity in HTM cells by modulating cellular contractile tension, and augment expression of CTGF that in turn leads to increased production of ECM. Therefore, YAP/TAZ-induced increases in CTGF and ECM production could be an important molecular mechanism underlying LPA-induced resistance to AH outflow and ocular hypertension."	"Effect of MeCP2 on TGF- β1-induced Extracellular Matrix Production in Nasal Polyp-derived Fibroblasts. Purpose Methyl-CpG-binding protein 2 (MeCP2), known as a transcriptional regulator, has been suggested to play an important role in myofibroblast differentiation in the lung. The purpose of this study was to investigate the role of MeCP2 in transforming growth factor (TGF)- β1-induced myofibroblast differentiation and extracellular matrix (ECM) production in nasal polyp-derived fibroblasts (NPDFs). Methods To identify the expression of MeCP2 in nasal polyp tissues, immunohistochemistry staining and Western blot were performed. TGF- β1-induced NPDFs were treated with 5-azacytidine, a DNA methylation inhibitor, and the expression levels of α-SMA and fibronectin were determined by semiquantitative reverse transcription polymerase chain reaction, immunofluorescent staining, and Western blotting. The total soluble collagen was analyzed by the Sircol collagen assay. MeCP2 silenced by MeCP2-specific small interference ( si) RNA was verified by Western blot. Results The expression levels of MeCP2 increased in nasal polyp tissues compared to normal inferior turbinate tissues. 5-Azacytidine significantly inhibited the expression of α-SMA and fibronectin mRNA in a dose-dependent manner. In addition, 5-azacytidine suppressed collagen production and the expression of MeCP2 in the same manner. The expression levels of a-SMA and collagen production were significantly blocked by MeCP2 silencing in TGF- β1-induced NPDFs. Conclusions Our data suggest that MeCP2 plays an essential role in TGF- β1-induced myofibroblast differentiation and ECM production in NPDFs."	"Acute Hyperthermia Inhibits TGF-β1-induced Cardiac Fibroblast Activation via Suppression of Akt Signaling. Transforming growth factor-β1 (TGF-β1) induces phenotypic changes in fibroblasts to become myofibroblasts with increased production of extracellular matrix (ECM) components and cytokines. It is also known that excessive activation of myofibroblasts accelerates cardiac fibrosis, remodeling, and thus cardiac dysfunction. However, no effective therapy has been established to prevent this process although recent clinical studies have demonstrated the effectiveness of hyperthermia in cardiac dysfunction. The aim of this study was to examine the molecular mechanism of hyperthermia on TGF-β1-mediated phenotypic changes in cardiac fibroblasts. TGF-β1 increased the expression of IL-6, α-smooth muscle actin (α-SMA), and collagen in human cardiac fibroblasts (HCFs). Hyperthermia (42 °C) significantly prevented these changes, i.e., increases in IL-6, α-SMA, and collagen, as induced by TGF-β1 in a time-dependent manner. Immunoblotting showed that hyperthermia decreased Akt/S6K signaling, but did not affect Smad2 and Smad3 signaling. Pharmacological inhibition of Akt signaling mimicked these effects of hyperthermia. Furthermore, hyperthermia treatment prevented cardiac fibrosis in Ang II infusion mice model. Putting together, our findings suggest that hyperthermia directly inhibits TGF-β-mediated activation of HCFs via suppressing Akt/S6K signaling."	"LncRNA Expression Profile of Human Thoracic Aortic Dissection by High-Throughput Sequencing. In this study, the long non-coding RNA (lncRNA) expression profile in human thoracic aortic dissection (TAD), a highly lethal cardiovascular disease, was investigated. Human TAD (n=3) and normal aortic tissues (NA) (n=3) were examined by high-throughput sequencing. Bioinformatics analyses were performed to predict the roles of aberrantly expressed lncRNAs. Quantitative real-time polymerase chain reaction (qRT-PCR) was applied to validate the results. A total of 269 lncRNAs (159 up-regulated and 110 down-regulated) and 2, 255 mRNAs (1 294 up-regulated and 961 down-regulated) were aberrantly expressed in human TAD (fold-change&gt; 1.5, P&lt; 0.05). QRT-PCR results of five dysregulated genes were consistent with HTS data. A lncRNA-mRNA coexpression analysis showed positive correlations between the up-regulated lncRNA (ENSG00000269936) and its adjacent up-regulated mRNA (MAP2K6, R=0.940, P&lt; 0.01), and between the down-regulated lncRNA_1421 and its down-regulated mRNAs (FBLN5, R=0.950, P&lt; 0.01; ACTA2, R=0.96, P&lt; 0.01; TIMP3, R=0.96, P&lt; 0.05). The lncRNA-miRNA-mRNA network indicated that the up-regulated lncRNA XIST and p21 had similar sequences targeted by has-miR-17-5p. The results of luciferase assay and fluorescence immuno-cytochemistry were consistent with that. And qRT-PCR results showed that lncRNA XIST and p21 were expressed at a higher level and has-miR-17-5p was expressed at a lower level in TAD than in NA. The predicted binding motifs of three up-regulated lncRNAs (ENSG00000248508, ENSG00000226530, and EG00000259719) were correlated with up-regulated RUNX1 (R=0.982, P&lt; 0.001; R=0.967, P&lt; 0.01; R=0.960, P&lt; 0.01, respectively). Our study revealed a set of dysregulated lncRNAs and predicted their multiple potential functions in human TAD. These findings suggest that lncRNAs are novel potential therapeutic targets for human TAD."	"Calpain inhibition attenuates bleomycin-induced pulmonary fibrosis via switching the development of epithelial-mesenchymal transition. Calpains are intracellular calcium-dependent cysteine proteases, which cleave several substrates proteins, have been proven to play important roles in lung fibrosis. The aim of this study was to investigate the effects of calpain on bleomycin (BLM)-induced pulmonary fibrosis. A lung fibrosis mice model was established successfully by intraperitoneal injection of bleomycin. Calpeptin, a highly selective inhibitor of calpain activation, was administered three times weekly after bleomycin injection. Histological examination was used to assess the fibrosis. Quantitative-PCR and Western blotting were used to assess the development of epithelial-mesenchymal transition (EMT). We found calpeptin treatment decreased the BLM-induced EMT-associated markers, such as muscle actin (α-SMA) and collagen-I, while increased E-cadherin (E-cad). Calpeptin also suppressed the activation of transforming growth factor β1 (TGFβ1)-Smad2/3 signaling pathway, which plays crucial role in lung fibrosis and EMT. Furthermore, we found differentiated embryonic chondrocyte-expressed gene 1 (DEC1), an important transcription factor, was upregulated in both patients with idiopathic pulmonary fibrosis and in bleomycin-induced lung fibrosis. DEC1 was suppressed by calpeptin in bleomycin-induced mice model. Collectively, these findings indicated that calpeptin had a potential anti-fibrosis effect, which focus on the development of EMT."	"Recurrent Aortic Dissection in a Patient With an Actin Mutation Treated With a Laser-Fenestrated Aortic Arch Stent-Graft. A 58-year-old African American female, who had previously undergone a valve-sparing aortic root replacement for a type A dissection, represented 2 months later with a new focal dissection and aneurysm with intramural hematoma just distal to the origin of the left subclavian artery. Since no landing zone distal to the subclavian artery existed, the patient underwent thoracic endovascular aortic repair with laser fenestration-aided stent-graft placement in the left subclavian artery. The patient recovered without complication, and 52 months later, she is doing well with normal renal function and ambulatory status."	"MicroRNA-223 inhibits deposition of the extracellular matrix by airway smooth muscle cells through targeting IGF-1R in the PI3K/Akt pathway. Asthma is a wide-spread disease that significantly impacts health throughout the world. A key aspect of the pathology of the disease is the remodeling of the airways by airway smooth muscle cells (ASMCs). MicroRNAs play an important role in post-transcriptional gene regulation and are involved in numerous biological functions, including those linked to asthma. A large number of microRNAs have been identified and investigated in various cell types to assess their function. In the present study, the role and potential mechanisms of miR-223 in ASMCs were investigated. Overexpression of miR-223 was found to induce a phenotypic switch in ASMCs that led to decreased expression of proteins involved in the extracellular matrix, such as α-SMA (ACTA2), and type I and III collagens. Inhibition of miR-223 caused the opposite result. However, unlike mast cells, neither overexpression nor inhibition of miR-223 affected cell viability or apoptosis in ASMCs. To further understand the effects of miR-223 on ASMCs, we applied bioinformatics analysis using predictive software, in combination with western blotting, to reveal that insulin-like growth factor-1 receptor (IGF-1R) was the functional target of miR-223 that leads to the phenotypic switch of ASMCs. Suppression of luciferase activity in a reporter containing the 3'-untranslated region (3'-UTR) of IGF-1R confirmed that this region is the target for the miRNA. Finally, we showed that miR-223 suppressed IGF-1R expression and decreased downstream phosphorylation of Akt (AKT1) in ASMCs. In conclusion, our data demonstrate that miR-223 exerts an inhibitory effect on the fibrotic phenotypes of ASMCs via the PI3K/Akt signaling pathway and IGF-1R is the likely functional target of the microRNA."	"Depletion of Gprc5a Promotes Development of Diabetic Nephropathy. Background Renal glomeruli are the primary target of injury in diabetic nephropathy (DN), and the glomerular podocyte has a key role in disease progression.Methods To identify potential novel therapeutic targets for DN, we performed high-throughput molecular profiling of G protein-coupled receptors (GPCRs) using human glomeruli.Results We identified an orphan GPCR, Gprc5a, as a highly podocyte-specific gene, the expression of which was significantly downregulated in glomeruli of patients with DN compared with those without DN. Inactivation of Gprc5a in mice resulted in thickening of the glomerular basement membrane and activation of mesangial cells, which are two hallmark features of DN in humans. Compared with wild-type mice, Gprc5a-deficient animals demonstrated increased albuminuria and more severe histologic changes after induction of diabetes with streptozotocin. Mechanistically, Gprc5a modulated TGF-β signaling and activation of the EGF receptor in cultured podocytes.Conclusions Gprc5a has an important role in the pathogenesis of DN, and further study of the podocyte-specific signaling activity of this protein is warranted."	"Role of Alpha-Smooth Muscle Actin and Fibroblast Activation Protein Alpha in Ovarian Neoplasms. Studies show that tumor growth is not just determined by the presence of malignant cells, since interactions between cancer cells and stromal microenvironment have important impacts on the cancer growth and progression. Cancer-associated fibroblasts play a prominent role in this process. The aims of the study were to investigate 2 cancer-associated fibroblasts markers, alpha-smooth muscle actin (α-SMA), and fibroblast activation protein alpha (FAP) in the stromal microenvironment of benign and malignant ovarian epithelial neoplasms, and to relate their tissue expression with prognostic factors in ovarian cancer. α-SMA and FAP were evaluated by immunohistochemistry in malignant (n = 28) and benign (n = 28) ovarian neoplasms. Fisher's exact test was used with a significance level lower than 0.05. FAP immunostaining was stronger in ovarian cancer when compared to benign neoplasms (p = 0.0366). There was no significant difference in relation to α-SMA expression between malignant and benign ovarian neoplasms as well as prognostic factors. In ovarian cancer, FAP stainings 2/3 was significantly related to histological grades 2 and 3 (p = 0.0183). FAP immunostaining is more intense in malignant neoplasms than in benign ovarian neoplasms, as well as in moderately differentiated and undifferentiated ovarian carcinomas compared to well-differentiated neoplasms, thus indicating that it can be used as a marker of worse prognosis."	"Effects of Interleukin-6 on posterior capsular opacification. The purpose of this work was to determine the effects of interleukin-6 (IL-6) on the development of posterior capsular opacification (PCO) in vitro and in vivo. Western blot and real-time PCR were used to test the IL-6-induced epithelial-mesenchymal transition (EMT) marker α-smooth muscle actin (α-SMA), the extracellular matrix (ECM) markers fibronectin (Fn) and type I collagen (COL-1), transforming growth factor β2 (TGF-β2), and the activation and role of the JAK/STAT3 signaling pathway in human lens epithelial cells (HLECs). Immunocytofluorescence staining was performed to detect gp130 and IL-6Rα expression in HLECs. Rat PCO models were then established to examine the impact of STAT3 knockdown by shRNA adeno-associated virus on PCO development, and immunohistochemical staining was performed to detect the expression of Fn in the anterior and posterior capsule in vivo. We found that IL-6 promotes the expression of Fn, COL-1, TGF-β2, p-JAK2 and p-STAT3 in HLECs but exerts little effect on α-SMA. The JAK/STAT3 inhibitor WP1066 effectively suppressed the IL-6-induced expression of Fn and COL-1 in lens epithelial cells. STAT3 knockdown effectively inhibited the development of PCO in rats and significantly reduced the expression of Fn in the anterior and posterior capsule. These data suggest that IL-6 contributes to the development of PCO by promoting TGF-β2 activation and ECM synthesis through a JAK/STAT3 signaling-dependent mechanism. Furthermore, inhibiting JAK/STAT3 signaling effectively impairs both PCO development in rats and ECM synthesis in the lens capsule."	"The p53-S100A2 Positive Feedback Loop Negatively Regulates Epithelialization in Cutaneous Wound Healing. The S100A2 protein is an important regulator of keratinocyte differentiation, but its role in wound healing remains unknown. We establish epithelial-specific S100A2 transgenic (TG) mice and study its role in wound repair using punch biopsy wounding assays. In line with the observed increase in proliferation and migration of S100A2-depleted human keratinocytes, mice expressing human S100A2 exhibit delayed cutaneous wound repair. This was accompanied by the reduction of re-epithelialization as well as a slow, attenuated response of Mcp1, Il6, Il1β, Cox2, and Tnf mRNA expression in the early phase. We also observed delayed Vegfa mRNA induction, a delayed enhancement of the Tgfβ1-mediated alpha smooth muscle actin (α-Sma) axis and a differential expression of collagen type 1 and 3. The stress-activated p53 tumor suppressor protein plays an important role in cutaneous wound healing and is an S100A2 inducer. Notably, S100A2 complexes with p53, potentiates p53-mediated transcription and increases p53 expression both transcriptionally and posttranscriptionally. Consistent with a role of p53 in repressing NF-κB-mediated transcriptional activation, S100A2 enhanced p53-mediated promoter suppression of Cox2, an early inducible NF-κB target gene upon wound injury. Our study thus supports a model in which the p53-S100A2 positive feedback loop regulates wound repair process."	"Effects of cholecalciferol cholesterol emulsion on renal fibrosis and aquaporin 2 and 4 in mice with unilateral ureteral obstruction. There was evidence that 1,25(OH)2D3 regulated aquaporin (AQP) 2 and 4 expression while ameliorating renal fibrosis. This study investigated whether cholecalciferol cholesterol emulsion (CCE), a precursor of 1,25(OH)2D3, has similar effects. The impact of CCE on renal fibrosis and AQP2 and AQP4 expression were studied in a unilateralureteral obstruction (UUO) mouse nephropathy model. CCE reduced both the extent of fibrosis and transforming growth factor (TGF)-β signaling compared with vehicle-treated UUO model controls. AQP2 protein expression was higher and AQP4 expression was lower in UUO-model mice treated with CCE than in vehicle-treated control mice. The results showed that CCE attenuated renal fibrosis by inhibiting TGF-β signaling, and regulated AQP2 and AQP4 expression in this UUO mouse model."	"Luteolin Ameliorates Experimental Chronic Pancreatitis Induced by Trinitrobenzenesulfonic Acid in Rats. The purpose of this study is to assess the effect and possible mechanism of luteolin on chronic pancreatitis (CP). Trinitrobenzenesulfonic acid-induced CP was used as CP models in vivo. After the intervention of luteolin for 28 days, chronic pancreatic injury was assessed by serum hydroxyproline and pancreatic histology. α-Smooth muscle actin (α-SMA) expression was performed to detect the activation of pancreatic stellate cells (PSCs). Pancreatic stellate cells were also isolated and cultured in vitro, and the effect of luteolin on PSCs was evaluated. Transforming growth factor β (TGF-β1) signaling and its regulated mRNA expression was tested by Western blot and quantitative real-time polymerase chain reaction, respectively. The protective role of luteolin on CP was confirmed by increased pancreas/body weight ratio, decreased pancreas hydroxyproline level, and reduced fibrosis. α-SMA expressions in PSCs were significantly decreased both in vitro and in vivo after the management of luteolin. Pancreas TGF-β1 expression was significantly decreased by luteolin. Luteolin inhibited the proliferation and activation of PSCs in a dose-dependent manner. Luteolin played a protective role in CP in many aspects, partly by regulating release of inflammatory cytokines through TGF-β1 signaling pathway."	"&quot;Twig-like&quot; cerebral vessels are not pathognomonic for ACTA A2 mutations: A case report. ACTA2 mutations are recently described genetically defined abnormalities of blood vessels in various organs of the body with specific abnormalities in cerebral vessels in the form of straightening of all cerebral arteries (&quot;twig-like&quot; pattern), stenosis/occlusions, proximal dilatation, and absent &quot;moyamoya&quot; type of collaterals. We describe a one-and-a half year-old girl child who presented with mild motor developmental delay and on neuroimaging showed septo-preoptic holoprosencephaly, diffuse radial polymicrogyria, and pontine hypoplasia along with magnetic resonance angiographic features suggestive of ACTA2 mutation type of cerebral vessels. However, genetic studies revealed no evidence of ACTA2 mutation, indicating that the &quot;twig-like&quot; pattern may not only be a pathognomonic feature of ACTA2 mutations."	"Rhu-Epo down-regulates pro-tumorigenic activity of cancer-associated fibroblasts in multiple myeloma. We have previously demonstrated that recombinant human erythropoietin (rHuEpo) is involved in the regulation of the angiogenic response in multiple myeloma (MM) through a direct effect on macrophages and endothelial cells isolated from the bone marrow of patients with MM. The aim of the present study was designed to determine the effects of rHuEpo on cancer-associated fibroblasts (CAFs) from monoclonal gammopathy of undetermined significance (MGUS) and MM patients by means of in vitro and in vivo assays. rHuEpo treatment reduces the expression of mRNA levels of fibroblast activation markers, namely alpha smooth actin (αSMA) and fibroblast activation protein (FAP) in MGUS and MM CAFs, and of pro-inflammatory and pro-angiogenic cytokines, including interleukin (IL)-6 and IL-8, vascular endothelial growth factor-A (VEGF-A), fibroblast growth factor-2 (FGF-2), and hepatocyte growth factor (HGF) in MM CAFs. Moreover, rHuEpo inhibits the proliferative activity of MM CAFs and increased the apoptosis of MGUS and MM CAFs. Overall, these data suggest that rHu-Epo down-regulates CAFs pro-tumorigenic activity. Moreover, these results are not suggestive for a pro-angiogenic activity of rHuEpo on CAFs. In fact, rHuEpo pre-treatment induces a low angiogenic response in vivo in the chorioallantoic membrane (CAM) assay of MGUS and MM CAFs conditioned medium, not comparable to that of a well-known angiogenic cytokine, VEGF-A, tested in the same assay."	"Inhibition of BMP4 and Alpha Smooth Muscle Actin Expression in LX-2 Hepatic Stellate Cells by BMP4-siRNA Lipid Based Nanoparticle. To develop and characterize vitamin A (VA)-coupled liposomes for the targeted delivery of BMP4-siRNA to hepatic stellate cells (HSC). VA was selected to increase the uptake by HSC based on their function in the storage of VA. DOTAP/DOPE liposomes were prepared by film hydration method and their surfaces were decorated with VA. The cytotoxicity of VA-conjugated liposomes was evaluated by the WST-1 assay. Inhibition of BMP4 and α-SMA was determined by PCR and ELISA. VA-coated lipoplexes exhibited an average particle sizes less than 200 nm and zeta potential around +25 mV both determined using ZetaPALS. Inclusion of VA to liposomal surfaces significantly enhanced their cellular uptake without affecting cytotoxicity. VA-coupled liposomes carrying BMP4-siRNA resulted in a significant reduction in BMP4 and α-SMA at both mRNA and protein levels. Conclusion: VA-coated liposomes were successfully designed to deliver BMP4-siRNA to specifically target HSC. The novel delivery system discussed herein may serve as a potential therapeutic strategy for the treatment of liver fibrosis in the future. This article is open to POST-PUBLICATION REVIEW. Registered readers (see &quot;For Readers&quot;) may comment by clicking on ABSTRACT on the issue's contents page."	"Newly described recessive MYH11 disorder with clinical overlap of Multisystemic smooth muscle dysfunction and Megacystis microcolon hypoperistalsis syndromes. We describe a neonatal patient with fixed dilated pupils and pulmonary, bladder, and bowel dysfunction suspicious for the presence of ACTA2 R179 mediated multisystemic smooth muscle dysfunction syndrome. Whole exome sequencing revealed compound heterozygous mutations in MYH11 after ACTA2 specific testing revealed no abnormalities. The child lived until 18 months of age and represents the only reported case of an MYH11 compound heterozygote with widespread smooth muscle dysfunction."	"Folic acid delays development of atherosclerosis in low-density lipoprotein receptor-deficient mice. Many studies support the cardioprotective effects of folic acid (FA). We aimed to evaluate the utility of FA supplementation in preventing the development of atherosclerotic in low-density lipoprotein receptor-deficient (LDLR-/-) mice and to elucidate the molecular processes underlying this effect. LDLR-/- mice were randomly distributed into four groups: control group, HF group, HF + FA group and the HF + RAPA group. vascular smooth muscle cells (VSMCs) were divided into the following four groups: control group, PDGF group, PDGF + FA group and PDGF + FA + RAPA group. Blood lipid levels, oxidative stress and inflammatory cytokines were measured. Atherosclerosis severity was evaluated with oil red O staining. Haematoxylin and eosin (H&amp;E) staining was used to assess atherosclerosis progression. Immunohistochemical staining was performed with antismooth muscle α-actin (α-SMA) antibodies and anti-osteopontin (OPN) antibodies that demonstrate VSMC dedifferentiation. The protein expression of α-SMA, OPN and mechanistic target of rapamycin (mTOR)/p70S6K signalling was detected by Western blot analysis. FA and rapamycin reduced serum levels of total cholesterol, triacylglycerol, LDL, inhibiting oxidative stress and the inflammatory response. Oil red O and H&amp;E staining demonstrated that FA and rapamycin inhibited atherosclerosis. FA and rapamycin treatment inhibited VSMC dedifferentiation in vitro and in vivo, and FA and rapamycin attenuated the mTOR/p70S6K signalling pathway. Our findings suggest that FA attenuates atherosclerosis development and inhibits VSMC dedifferentiation in high-fat-fed LDLR-/- mice by reduced lipid levels and inhibiting oxidative stress and the inflammatory response through mTOR/p70S6K signalling pathway."	"TRPC1/3/6 inhibition attenuates the TGF-β1-induced epithelial-mesenchymal transition in gastric cancer via the Ras/Raf1/ERK signaling pathway. Gastric cancer (GC) is one of the most common malignancies worldwide. TGF-β1 induces the epithelial-mesenchymal transition (EMT) in GC, mainly through Smad-dependent pathways. Nevertheless, few studies have focused on the activation of non-canonical transduction pathways. TRPC, Ca<sup>2+</sup> entry channels, are ubiquitously expressed in various cell types and are involved in many cellular functions. However, their roles in GC are not well elucidated. This study aimed to determine whether TRPC participates in the TGF-β1-induced EMT of GC and to investigate the potential mechanisms. Immunofluorescence staining was performed to examine the distribution and expression of TRPCs and EMT-related proteins in SGC-7901 cells incubated with or without TGF-β1. The expression of TRPC1/3/6 and EMT-related molecules, including E-cadherin, vimentin, and α-SMA, was detected by qRT-PCR and Western blotting. Additionally, the underlying mechanism was determined by treating cells with pharmacological inhibitors and examining the levels of proteins involved in the main signaling cascades using Western blotting. TRPC1/3/6 were expressed at high levels in SGC-7901 cells. Following TGF-β1 stimulation, the expression of vimentin, α-SMA, and TRPC1/3/6 increased and E-cadherin expression decreased, accompanied by activation of the Ras/Raf1/ERK1/2 signaling pathway. Notably, activation of the Ras/Raf1/ERK1/2 signaling cascade was suppressed by SKF96365 and 2-APB. Both TRPC and ERK inhibitors mitigated EMT progression. Based on these results, TRPC1/3/6 inhibition attenuated the TGF-β1-induced EMT in GC by suppressing Ras/Raf1/ERK signal transduction."	"Capillary pericytes express α-smooth muscle actin, which requires prevention of filamentous-actin depolymerization for detection. Recent evidence suggests that capillary pericytes are contractile and play a crucial role in the regulation of microcirculation. However, failure to detect components of the contractile apparatus in capillary pericytes, most notably α-smooth muscle actin (α-SMA), has questioned these findings. Using strategies that allow rapid filamentous-actin (F-actin) fixation (i.e. snap freeze fixation with methanol at -20°C) or prevent F-actin depolymerization (i.e. with F-actin stabilizing agents), we demonstrate that pericytes on mouse retinal capillaries, including those in intermediate and deeper plexus, express α-SMA. Junctional pericytes were more frequently α-SMA-positive relative to pericytes on linear capillary segments. Intravitreal administration of short interfering RNA (α-SMA-siRNA) suppressed α-SMA expression preferentially in high order branch capillary pericytes, confirming the existence of a smaller pool of α-SMA in distal capillary pericytes that is quickly lost by depolymerization. We conclude that capillary pericytes do express α-SMA, which rapidly depolymerizes during tissue fixation thus evading detection by immunolabeling."	"Luminally polarized mural and vascular remodeling in ileal strictures of Crohn's disease. Intestinal stricture, a major complication of Crohn's disease (CD), results from fibromuscular remodeling and expansion of the intestinal wall. The corresponding microanatomical alterations have not been fully described, hindering progress toward understanding their pathogenesis and devising appropriate treatments. We used tissue-specific staining and quantitative digital histomorphometry for this purpose. Serial histologic sections from 37 surgically resected ileal strictures and adjacent nonstrictured controls from patients with CD were evaluated after staining for smooth muscle actin, collagen (Sirius red), and collagen types I, III, and V. Overall mural thickening in strictures was increased 2.2 ± 0.2-fold compared with nonstrictured regions of the same specimens. The muscular layer most altered was the muscularis mucosae (MM). Compared with the internal and external layers of the muscularis propria, (MP) which were expanded 1.9 ± 0.2- and 1.3 ± 0.1-fold, respectively, the MM was expanded 17.7 ± 2.6-fold, reflecting the combined effects of architectural disarray, an 11.6 ± 1.4-fold increase smooth muscle content, and elaboration of pericellular type V collagen. In contrast, the architecture of the MP was preserved and pericellular collagen was virtually absent; rather, fibrosis in this layer was limited to expansion of the intramuscular septa by collagen types I and III. The muscular arteries and veins within the strictured submucosa frequently exhibited eccentric, luminally oriented adventitial mantles comprising hyperplastic myocytes and extracellular type V collagen. We conclude that the fibromuscular remodeling which results in CD-associated ileal strictures predominantly involves the MM and submucosal vasculature in a luminally polarized fashion and suggests that mucosal-based factors may contribute to stricture pathogenesis."	"Chronic exposure to tumor necrosis factor alpha induces retinal pigment epithelium cell dedifferentiation. The retinal pigment epithelium (RPE) is a monolayer of pigmented cells with important barrier and immuno-suppressive functions in the eye. We have previously shown that acute stimulation of RPE cells by tumor necrosis factor alpha (TNFα) downregulates the expression of OTX2 (Orthodenticle homeobox 2) and dependent RPE genes. We here investigated the long-term effects of TNFα on RPE cell morphology and key functions in vitro. Primary porcine RPE cells were exposed to TNFα (at 0.8, 4, or 20 ng/ml per day) for 10 days. RPE cell morphology, phagocytosis, barrier- and immunosuppressive-functions were assessed. Chronic (10 days) exposure of primary RPE cells to TNFα increases RPE cell size and polynucleation, decreases visual cycle gene expression, impedes RPE tight-junction organization and transepithelial resistance, and decreases the immunosuppressive capacities of the RPE. TNFα-induced morphological- and transepithelial-resistance changes were prevented by concomitant Transforming Growth Factor β inhibition. Our results indicate that chronic TNFα-exposure is sufficient to alter RPE morphology and impede cardinal features that define the differentiated state of RPE cells with striking similarities to the alterations that are observed with age in neurodegenerative diseases such as age-related macular degeneration."	"Fatal thoracic aortic aneurysm and dissection in a large family with a novel MYLK gene mutation: delineation of the clinical phenotype. Thoracic and abdominal aortic aneurysms and dissection often develop in hypertensive elderly patients. At higher risk are smokers and those who have a family history of aortic aneurysms. In most affected families, the aortic aneurysms and dissection is inherited in an autosomal dominant manner with decreased penetrance and variable expressivity. Mutations at two chromosomal loci, TAA1 at 11q23 and the TAA2 at 5q13-14, and eight genes, MYLK, MYH11, TGFBR2, TGFBR1, ACTA2, SMAD3, TGFB2, and MAT2A, have been identified as being responsible for the disease in 23% of affected families. Herein, we inform on the clinical, genetic and pathological characteristics of nine living and deceased members of a large consanguineous Arab family with thoracic aortic aneurysm and dissection who carry a missense mutation c.4471G &gt; T (Ala1491Ser), in exon 27 of MYLK gene. We show a reduced kinase activity of the Ala1491Ser protein compared to wildtype protein. This mutation is expressed as aortic aneurysm and dissection in one of two distinct phenotypes. A severe fatal and early onset symptom in homozygous or mild late onset in heterozygous genotypes. We found that MYLK gene Ala1491Ser mutation affect the kinase activity and clinically, it presents with vascular aneurysms and dissection. We describe a distinct genotype phenotype correlation where; heterozygous patients have mild late onset and incomplete penetrance disease compared with the early onset severe and generally fatal outcome in homozygous patients."	"circHECTD1 promotes the silica-induced pulmonary endothelial-mesenchymal transition via HECTD1. Excessive proliferation and migration of fibroblasts contribute to pulmonary fibrosis in silicosis, and both epithelial cells and endothelial cells participate in the accumulation of fibroblasts via the epithelial-mesenchymal transition (EMT) and the endothelial-mesenchymal transition (EndMT), respectively. A mouse endothelial cell line (MML1) was exposed to silicon dioxide (SiO2, 50 μg/cm<sup>2</sup>), and immunofluorescence and western blot analyses were performed to evaluate levels of specific endothelial and mesenchymal markers and to elucidate the mechanisms by which SiO2 induces the EndMT. Functional changes were evaluated by analyzing cell migration and proliferation. The mRNA and circular RNA (circRNA) levels were measured using qPCR and fluorescent in situ hybridization (FISH). Lung tissue samples from both Tie2-GFP mice exposed to SiO2 and silicosis patients were applied to confirm the observations from in vitro experiments. Based on the results from the current study, SiO2 increased the expression of mesenchymal markers (type I collagen (COL1A1), type III collagen (COL3A1) and alpha smooth muscle actin (α-SMA/Acta2)) and decreased the expression of endothelial markers (vascular endothelial cadherin (VE-Cad/Cdh 5) and platelet endothelial cell adhesion molecule-1 (PECAM1)), indicating the occurrence of the EndMT in response to SiO2 exposure both in vivo and in vitro. SiO2 concomitantly increased circHECTD1 expression, which, in turn, inhibited HECTD1 protein expression. SiO2-induced increases in cell proliferation, migration, and changes in marker levels were restored by either a small interfering RNA (siRNA) targeting circHECTD1 or overexpression of HECTD1 via the CRISPR/Cas9 system, confirming the involvement of the circHECTD1/HECTD1 pathway in the EndMT. Moreover, tissue samples from SiO2-exposed mice and silicosis patients confirmed the EndMT and change in HECTD1 expression. Our findings reveal a potentially new function for the circHECTD1/HECTD1 pathway and suggest a possible mechanism of fibrosis in patients with pulmonary silicosis."	"[Lipofibromatosis: a clinicopathological analysis of eight cases]. Objective: To investigate the clinicopathological characteristics and differential diagnosis of lipofibromatosis. Methods: The clinicopathological features and immunohistochemical profiles in 8 cases of lipofibromatosis diagnosed at Fudan University Shanghai Cancer Center from January 2008 to June 2017 were studied. Molecular analysis of β-catenin mutation by Sanger sequencing, NTKR1 and ETV6 rearrangements by FISH were performed. The follow up information was evaluated and the literature was reviewed. Results: There were 4 males and 4 females with a median age of 1.5 years at presentation (range, 3 months-9 years). Tumor arose in the hand (4 cases), foot (2 cases) and trunk (2 cases), manifesting as a painless subcutaneous mass. Two cases were congenital, one with tumor noted at birth and the others shortly after birth. Grossly, the tumors were poorly defined and irregularly shaped, composed predominantly of fatty tissue which was mingled with fibrous element. They ranged from 1 to 5 cm in size (mean, 2.6 cm). Microscopically, they were characterized by variably sized lobules of adipose tissue traversed by fascicles, bundles or trabeculae of proliferative fibroblasts and myofibroblasts, resembling desmoid tumor. In 2 cases, the tumor infiltrated adjacent skeletal muscles. On high power, the spindled fibroblasts and myofibroblasts had a bland appearance with very low mitotic activity (&lt;1/10 HPF). By immunohistochemistry, they showed variable staining of α-SMA, MSA, CD34 and CD99, with negativity for β-catenin, desmin, h-CALD, EMA, ALK, and S-100 protein. Ki-67 index was low (&lt;2%). Molecular analysis showed no mutation of β-catenin gene (0/3), no NTRK1 gene rearrangement (0/3) and no ETV6 gene rearrangement (0/2). Follow up information was available in 6 patients, revealed local recurrence in two and persistent disease in one. Conclusions: Lipofibromatosis is a special variant of infantile fibromatosis, which has a predilection for the distal portion of the extremities of neonates and infants and characterized by lobules of adipose tissue traversed by demoid tumor-like fibroblasts and myofibroblasts. However, it differs from desmoid tumor by harboring no mutation of β-catenin gene. Familarity with its clinicopathological characteristics helps the distinction from its morphological mimics. 目的:探讨脂肪纤维瘤病的临床病理学特征、诊断和鉴别诊断。 方法:回顾性分析复旦大学附属肿瘤医院病理科2008年1月至2017年6月8例脂肪纤维瘤病会诊病例的临床病理学资料和免疫表型,采用Sanger测序法检测β-catenin基因突变,运用荧光原位杂交法检测NTRK1和ETV6基因重排,分析随访结果并复习文献。 结果:男性4例,女性4例,年龄3个月至9岁(中位年龄1.5岁)。肿瘤分别发生于手(4例)、足(2例)和躯干(2例),表现为局部缓慢性生长的无痛性肿块,境界不清。2例为先天性,其中1例出生时即发现患病,1例于出生后不久发现。大体上,肿瘤外形不规则,由灰黄色脂肪组织和混杂的灰白色纤维组织组成,平均直径2.6 cm(范围1~5 cm)。镜下观察:肿瘤含有大量的脂肪组织,略呈分叶状,脂肪组织间隔内可见条束状或梁状增生的纤维母细胞和肌纤维母细胞,类似韧带样瘤型纤维瘤病,2例浸润邻近的骨骼肌。增生的纤维母细胞和肌纤维母细胞无明显的异型性,核分裂象罕见(&lt;1/10 HPF)。纤维母细胞和肌纤维母细胞程度不等表达平滑肌肌动蛋白、肌特异性肌动蛋白、CD34和CD99,不表达β-catenin、结蛋白和S-100蛋白等标志物,Ki-67阳性指数&lt;2%。分子检测显示无β-catenin基因突变(0/3),无NTRK1基因重排(0/3)和ETV6基因重排(0/2)。随访6例,2例局部复发,1例带瘤生存。 结论:脂肪纤维瘤病好发于新生儿和婴幼儿四肢末端,以大量脂肪组织和穿插其间类似韧带样瘤型纤维瘤病的纤维母细胞和肌纤维母细胞条束为特征,但与韧带样瘤型纤维瘤病不同,不涉及β-catenin基因突变。熟悉其临床病理学特征有助于与具有相似形态的间叶性肿瘤相鉴别。."	"Fibroblast-matrix interplay: Nintedanib and pirfenidone modulate the effect of IPF fibroblast-conditioned matrix on normal fibroblast phenotype. Idiopathic pulmonary fibrosis (IPF) is a progressive lung disease with poor prognosis. Activated fibroblasts are the key effector cells in fibrosis, producing excessive amounts of collagen and extracellular matrix (ECM) proteins. Whether the ECM conditioned by IPF fibroblasts determines the phenotype of naïve fibroblasts is difficult to explore. IPF-derived primary fibroblasts were cultured on Matrigel and then cleared using ammonium hydroxide, creating an IPF-conditioned matrix (CM). Normal fibroblast CM served as control. Normal fibroblasts were cultured on both types of CM, and cell count, cell distribution and markers of myofibroblast differentiation; transforming growth factor beta (TGFβ) signalling; and ECM expression were assessed. The effects of the anti-fibrotic drugs nintedanib and pirfenidone at physiologically relevant concentrations were also explored. Normal fibroblasts cultured on IPF-CM arranged in large aggregates as a result of increased proliferation and migration. Moreover, increased levels of pSmad3, pSTAT3 (phospho signal transducer and activator of transcription 3), alpha smooth muscle actin (αSMA) and Collagen1a were found, suggesting a differentiation towards a myofibroblast-like phenotype. SB505124 (10 μmol/L) partially reversed these alterations, suggesting a TGFβ contribution. Furthermore, nintedanib at 100 nmol/L and, to a lesser extent, pirfenidone at 100 μmol/L prevented the IPF-CM-induced fibroblast phenotype alterations, suggesting an attenuation of the ECM-fibroblast interplay. IPF fibroblasts alter the ECM, thus creating a CM that further propagates an IPF-like phenotype in normal fibroblasts. This assay demonstrated differences in drug activities for approved IPF drugs at clinically relevant concentrations. Thus, the matrix-fibroblast phenotype interplay might be a relevant assay to explore drug candidates for IPF treatment."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"Mesenchymal stem cells inhibit hypoxia-induced inflammatory and fibrotic pathways in bladder smooth muscle cells. Partial bladder outlet obstruction is a multifactorial urological condition in which hypoxia plays a significant role. We recently investigated hypoxia's role as a single stressor and found that hypoxia induced an intense inflammatory and profibrotic switch in bladder smooth muscle cells (bSMCs). With the immunomodulatory capacity of mesenchymal stem cells (MSCs), we aimed to investigate if the hypoxia-signaling pathways can be mitigated using MSCs. Bladder smooth muscle cells were cultured in 3% oxygen tension for 72 h with either the direct or indirect co-culture with bone marrow derived MSCs. High pore density transwells were used for indirect co-cultures. Total RNA was extracted for gene expression analysis and the Mesoscale multiplex assay was used for secreted cytokines and growth factor measurements. Total collagen contents were determined using the Sirius Red collagen assay. Hypoxia induced increase of HIF3α, VEGF, TGFβ1, TNFα, IL-1β, IL-6, αSMA, and total collagen expression and decreased IL-10 levels in bSMCs. Both direct and indirect MSCs co-cultures inhibited &gt; 50% of hypoxia-induced TGFβ1 and IL-6 expression (p &lt; 0.005) in a HIF-independent manner. Also, both MSCs co-culture techniques induced &gt; 200% increase in IL-10 protein (p &lt; 0.005) and inhibited hypoxia-induced αSMA, collagen I and III transcripts as well as total collagen proteins (p &lt; 0.0001). Contrastingly, the hypoxia-induced IL-1β and TNFα were inhibited by only the direct co-cultures (p &lt; 0.05). MSCs co-culture with bSMCs potently mitigates hypoxia-induced inflammatory and profibrotic pathways. This work has elucidated the role of cell-cell contact and paracrine immunomodulatory mechanisms of MSCs action and opened avenues for therapeutic intervention."	"Visceral Adipose Tissue Drives Cardiac Aging Through Modulation of Fibroblast Senescence by Osteopontin Production. Aging induces cardiac structural and functional changes linked to the increased deposition of extracellular matrix proteins, including OPN (osteopontin), conducing to progressive interstitial fibrosis. Although OPN is involved in various pathological conditions, its role in myocardial aging remains unknown. OPN deficient mice (OPN-/-) with their wild-type (WT) littermates were evaluated at 2 and 14 months of age in terms of cardiac structure, function, histology and key molecular markers. OPN expression was determined by reverse-transcription polymerase chain reaction, immunoblot and immunofluorescence. Luminex assays were performed to screen plasma samples for various cytokines/adipokines in addition to OPN. Similar explorations were conducted in aged WT mice after surgical removal of visceral adipose tissue (VAT) or treatment with a small-molecule OPN inhibitor agelastatin A. Primary WT fibroblasts were incubated with plasma from aged WT and OPN-/- mice, and evaluated for senescence (senescence-associated β-galactosidase and p16), as well as fibroblast activation markers (Acta2 and Fn1). Plasma OPN levels increased in WT mice during aging, with VAT showing the strongest OPN induction contrasting with myocardium that did not express OPN. VAT removal in aged WT mice restored cardiac function and decreased myocardial fibrosis in addition to a substantial reduction of circulating OPN and transforming growth factor β levels. OPN deficiency provided a comparable protection against age-related cardiac fibrosis and dysfunction. Intriguingly, a strong induction of senescence in cardiac fibroblasts was observed in both VAT removal and OPN-/- mice. The addition of plasma from aged OPN-/- mice to cultures of primary cardiac fibroblasts induced senescence and reduced their activation (compared to aged WT plasma). Finally, Agelastatin A treatment of aged WT mice fully reversed age-related myocardial fibrosis and dysfunction. During aging, VAT represents the main source of OPN and alters heart structure and function via its profibrotic secretome. As a proof-of-concept, interventions targeting OPN, such as VAT removal and OPN deficiency, rescued the heart and induced a selective modulation of fibroblast senescence. Our work uncovers OPN's role in the context of myocardial aging and proposes OPN as a potential new therapeutic target for a healthy cardiac aging."	"Periostin antisense oligonucleotide suppresses bleomycin-induced formation of a lung premetastatic niche for melanoma. Metastasis is the leading cause of cancer death. A tumor-supportive microenvironment, or premetastatic niche, at potential secondary tumor sites plays an important role in metastasis, especially in tumor cell colonization. Although a fibrotic milieu is known to promote tumorigenesis and metastasis, the underlying molecular contributors to this effect have remained unclear. Here we show that periostin, a component of the extracellular matrix that functions in tissue remodeling, has a key role in formation of a fibrotic environment that promotes tumor metastatic colonization. We found that periostin was widely expressed in fibrotic lesions of mice with bleomycin-induced lung fibrosis, and that up-regulation of periostin expression coincided with activation of myofibroblasts positive for α-smooth muscle actin. We established a lung metastasis model for B16 murine melanoma cells and showed that metastatic colonization of the lung by these cells was markedly promoted by bleomycin-induced lung fibrosis. Inhibition of periostin expression by giving an intratracheal antisense oligonucleotide targeting periostin mRNA was found to suppress bleomycin-induced lung fibrosis and thereby to attenuate metastatic colonization of the lung by melanoma cells. Our results indicate that periostin is a key player in the development of bleomycin-induced fibrosis and consequent enhancement of tumor cell colonization in the lung. Our results therefore implicate periostin as a potential target for prevention or treatment of lung metastasis."	"Histopathological Correlations between Mediastinal Fat-Associated Lymphoid Clusters and the Development of Lung Inflammation and Fibrosis following Bleomycin Administration in Mice. Bleomycin (BLM) has been reported to induce lung inflammation and fibrosis in human and mice and showed genetic susceptibility. Interestingly, the C57BL/6 (B6) mice had prominent mediastinal fat-associated lymphoid cluster (MFALCs) under healthy condition, and showed susceptibility to development of lung fibrosis following BLM administration. However, the pathogenesis of lung lesion progression, and their correlation with MFALC morphologies, remain to be clarified. To investigate the correlations between MFALC structures and lung injuries in B6 mice, histopathological examination of mediastinal fat tissues and lungs was examined at 7 and 21 days (d) following a single 50 μL intranasal (i.n.) instillation of either BLM sulfate (5 mg/kg) (BLM group) or phosphate-buffered saline (control group). The lung fibrosis was examined by Masson's trichrome (MT) stain of paraffin sections and mRNA expression levels of Col1a1, Col3a1, and Acta2 in different frozen lung samples. Furthermore, immunohistochemistry for CD3, B220, Iba1, Gr1, BrdU, LYVE-1, and peripheral node addressin (PNAd) was performed to detect T- and B-cells, macrophages, granulocytes, proliferating cells, lymph vessels (LVs), and high endothelial venules (HEVs). We found that MFALCs were more abundant in the BLM group as compared to the control group. The lung of BLM group developed pneumonitis with severe cellular infiltrations at 7 days and significant collagen deposition (MT) and higher expression of Col1a1, and Col3a1 at 21 days post-administration. Numerous immune cells, proliferating cells, HEVs, and LVs were observed in both MFALCs and lungs of the BLM group. Interestingly, PNAd + HEVs were observed in the lungs of the BLM group, but not the control group. Moreover, numerous Gr1 + polymorphonuclear and mononuclear-like ring cells were found in the MFALCs and lungs of the BLM group. Interestingly, flow cytometric analysis revealed a significant increase of B-cell populations within the MFALCs of BLM group suggesting a potential proliferative induction of B-cells following inflammation. Furthermore, significant positive correlations were observed between quantitative parameters of these immune cells in both the lungs and MFALCs. Thus, we suggest a potentially important role for MFALCs and HEVs in the progression of lung disease, especially in inflammatory lung disease."	"Pirfenidone reduces profibrotic responses in human dermal myofibroblasts, in vitro. Pirfenidone (PFD) is a synthetic small molecule inhibitor with demonstrated anti-inflammatory and antifibrotic properties in vitro and in vivo. The exact mechanism(s) of PFD action remain unclear, due in part to the broad effects of this drug on the complex processes involved in inflammation and fibrosis. While PFD is FDA-approved for the treatment of idiopathic pulmonary fibrosis, the efficacy of this compound for the treatment of dermal fibrosis has not yet been fully characterized. Dermal fibrosis is the pathological formation of excess fibrous connective tissue of the skin, usually the result of traumatic cutaneous injury. Fibroproliferative scarring, caused by delayed wound healing and prolonged inflammation, remains a major clinical concern with considerable morbidity. Despite efforts to identify a therapeutic that targets the fibrotic pathways involved in wound healing to mitigate scar formation, no satisfactory dermal antifibrotic has yet been identified. We aim to better elucidate the antifibrotic mechanism(s) of PFD activity using an in vitro model of dermal fibrosis. Briefly, cultured human dermal fibroblasts were stimulated with TGF-β1 to induce differentiation into profibrotic myofibroblast cells. A dose-dependent reduction in cellular proliferation and migration was observed in TGF-β1-stimulated cells when treated with PFD. We observed a clear inhibition in the development of essential myofibroblast mechanoregulatory machinery, including contractile F-actin stress fibers containing α-SMA and large super-mature focal adhesions. PFD treatment significantly reduced protein levels of major ECM components type I and type III collagen. PFD targeted the p38 MAPK signaling pathway and mitigated profibrotic gene expression profiles. This in vitro data promotes PFD as a potential therapeutic agent for the treatment of dermal fibrosis."	"Systemic inhibition of BMP1-3 decreases progression of CCl4-induced liver fibrosis in rats. Liver fibrosis is a progressive pathological process resulting in an accumulation of excess extracellular matrix proteins. We discovered that bone morphogenetic protein 1-3 (BMP1-3), an isoform of the metalloproteinase Bmp1 gene, circulates in the plasma of healthy volunteers and its neutralization decreases the progression of chronic kidney disease in 5/6 nephrectomized rats. Here, we investigated the potential role of BMP1-3 in a chronic liver disease. Rats with carbon tetrachloride (CCl4)-induced liver fibrosis were treated with monoclonal anti-BMP1-3 antibodies. Treatment with anti-BMP1-3 antibodies dose-dependently lowered the amount of collagen type I, downregulated the expression of Tgfb1, Itgb6, Col1a1, and Acta2 and upregulated the expression of Ctgf, Itgb1, and Dcn. Mehanistically, BMP1-3 inhibition decreased the plasma levels of transforming growth factor beta 1(TGFβ1) by prevention of its activation and lowered the prodecorin production further suppressing the TGFβ1 profibrotic effect. Our results suggest that BMP1-3 inhibitors have significant potential for decreasing the progression of fibrosis in liver cirrhosis."	"Myofibroblasts in oral potentially malignant disorders: Is it related to malignant transformation? In oral cancer, acquisition of α-smooth muscle actin (α-SMA)-positive fibroblasts, known as myofibroblasts or carcinoma-associated fibroblasts (CAF), is an important event for progression and metastasis. However, the contribution of myofibroblasts in oral potentially malignant disorders (OPMD) remains controversial. This systematic review provides evidence that immunodetection of myofibroblasts may identify oral submucous fibrosis (OSMF) with high risk of malignant transformation, but does not represent an auxiliary tool to predict the malignant potential of leukoplakia and erythroplakia, the most common OPMD."	"PTEN deficiency promotes pathological vascular remodeling of human coronary arteries. Phosphatase and tensin homolog (PTEN) is an essential regulator of the differentiated vascular smooth muscle cell (SMC) phenotype. Our goal was to establish that PTEN loss promotes SMC dedifferentiation and pathological vascular remodeling in human atherosclerotic coronary arteries and nonatherosclerotic coronary arteries exposed to continuous-flow left ventricular assist devices (CF-LVADs). Arteries were categorized as nonatherosclerotic hyperplasia (NAH), atherosclerotic hyperplasia (AH), or complex plaque (CP). NAH coronary arteries from CF-LVAD patients were compared to NAH coronaries from non-LVAD patients. Intimal PTEN and SMC contractile protein expression was reduced compared with the media in arteries with NAH, AH, or CP. Compared with NAH, PTEN and SMC contractile protein expression was reduced in the media and intima of arteries with AH and CP. NAH arteries from CF-LVAD patients showed marked vascular remodeling and reduced PTEN and α-smooth muscle actin (αSMA) in medial SMCs compared with arteries from non-LVAD patients; this correlated with increased medial collagen deposition. Mechanistically, compared with ApoE-/- mice, SMC-specific PTEN-null/ApoE-/- double-knockout mice exhibited accelerated atherosclerosis progression and increased vascular fibrosis. By microarray and validated quantitative RT-PCR analysis, SMC PTEN deficiency promotes a global upregulation of proinflammatory and profibrotic genes. We propose that PTEN is an antiinflammatory, antifibrotic target that functions to maintain SMC differentiation. SMC loss of PTEN results in pathological vascular remodeling of human arteries."	"Exemestane Attenuates Hepatic Fibrosis in Rats by Inhibiting Activation of Hepatic Stellate Cells and Promoting the Secretion of Interleukin 10. Exemestane (EXE) is an irreversible steroidal aromatase inhibitor mainly used as an adjuvant endocrine therapy for postmenopausal women suffering from breast cancer. Besides inhibiting aromatase activity, EXE has multiple biological functions, such as antiproliferation, anti-inflammatory, and antioxidant activities which are all involved in hepatic fibrosis. Therefore, we investigated the role of EXE during the progress of hepatic fibrosis. The effect of EXE on liver injury and fibrosis were assessed in two hepatic fibrosis rat models, which were induced by either carbon tetrachloride (CCl4) or bile duct ligation (BDL). The influence of EXE treatment on activation and proliferation of primary rat hepatic stellate cells (HSCs) was observed in vitro. The results showed that EXE attenuated the liver fibrosis by decreasing the collagen deposition and α-SMA expression in vivo and inhibited the activation and proliferation of primary rat HSCs in vitro. Additionally, EXE promoted the secretion of antifibrotic and anti-inflammatory cytokine IL-10 in vivo and in HSC-T6 culture media. In conclusion, our findings reveal a new function of EXE on hepatic fibrosis and prompted its latent application in liver fibrotic-related disease."	"Low-Intensity Pulsed Ultrasound Prevents the Oxidative Stress Induced Endothelial-Mesenchymal Transition in Human Aortic Endothelial Cells. Endothelial-mesenchymal transition (EndMT) has been shown to take part in the generation and progression of diverse diseases, involving a series of changes leading to a loss of their endothelial characteristics and an acquirement of properties typical of mesenchymal cells. Low-intensity pulsed ultrasound (LIPUS) is a new therapeutic option that has been successfully used in fracture healing. However, whether LIPUS can inhibit oxidative stress-induced endothelial cell damages through inhibiting EndMT remained unknown. This study aimed to investigate the protective effects of LIPUS against oxidative stress-induced endothelial cell damages and the underlying mechanisms. EndMT was induced by H2O2 (100 µm for seven days). Human aortic endothelial cells (HAECs) were exposed to H2O2 with or without LIPUS treatment for seven days. The expression of EndMT markers (CD31, VE-cadherin, FSP1 and α-SMA) were analyzed. The levels of total and phosphorylated PI3K and AKT proteins were detected by Western Blot analysis. Cell chemotaxis was determined by wound healing and transwell assay. LIPUS relieved EndMT by decreasing ROS accumulation and increasing activation of the PI3K signaling cascade. LIPUS alleviated the migration of EndMT-derived mesenchymal-like cells through reducing extracellular matrix (ECM) deposition that is associated with matrix metallopeptidase (MMP) proteolytic activity and collagen production. LIPUS produces cytoprotective effects against oxidative injuries to endothelial cells through suppressing the oxidative stress-induced EndMT, activating the PI3K/AKT pathway under oxidative stress, and limiting cell migration and excessive ECM deposition."	"Crim1 is required for maintenance of the ocular lens epithelium. The development and growth of the vertebrate ocular lens is dependent on the regulated proliferation of an anterior monolayer of epithelial cells, and their subsequent differentiation into elongate fiber cells. The growth factor rich ocular media that bathes the lens mediates these cellular processes, and their respective intracellular signaling pathways are in turn regulated to ensure that the proper lens architecture is maintained. Recent studies have proposed that Cysteine Rich Motor Neuron 1 (Crim1), a transmembrane protein involved in organogenesis of many tissues, might influence cell adhesion, polarity and proliferation in the lens by regulating integrin-signaling. Here, we characterise the lens and eyes of the Crim1<sup>KST264</sup> mutant mice, and show that the loss of Crim1 function in the ocular tissues results in inappropriate differentiation of the lens epithelium into fiber cells. Furthermore, restoration of Crim1 levels in just the lens tissue of Crim1<sup>KST264</sup> mice is sufficient to ameliorate most of the dysgenesis observed in the mutant animals. Based on our findings, we propose that tight regulation of Crim1 activity is required for maintenance of the lens epithelium, and its depletion leads to ectopic differentiation into fiber cells, dramatically altering lens structure and ultimately leading to microphthalmia and aphakia."	"Trabecular meshwork morphogenesis: A comparative analysis of wildtype and anterior segment dysgenesis mouse models. The trabecular meshwork (TM), a tissue residing in the iridocorneal angle of the eye, is the primary site of aqueous humor outflow and often develops abnormally in children with anterior segment dysgenesis (ASD). However, the cellular mechanisms underlying both normal and pathophysiological TM formation are poorly understood. Here, we improve the characterization of TM development via morphological and molecular analyses. We first assessed the TM of wild-type C57BL/6J mice at multiple time points throughout development (E15.5-P21). The morphology of TM cells, rate of cell division, presence of apoptotic cell death, and age of onset of an established TM marker (αSMA) were each assessed in the developing iridocorneal angle. We discovered that TM cells are identifiable histologically at P1, which coincided with both the onset of αSMA expression and a significant decrease in TM precursor cell proliferation. Significant apoptotic cell death was not detected during TM development. These findings were then used to assess two mouse models of ASD. Jag1 and Bmp4 heterozygous null mice display ASD phenotypes in the adult, including TM hypoplasia and corneal adherence to the iris. We further discovered that both mutants exhibited similar patterns of developmental TM dysgenesis at P1, P5, and P10. Our data indicate that P1 is an important time point in TM development and that TM dysgenesis in Jag1 and Bmp4 heterozygous null mice likely results from impaired TM cell migration and/or differentiation."	"Investigation of cancer-associated fibroblasts and p62 expression in oral cancer before and after chemotherapy. The aim of this study is to investigate the expression of the autophagy protein p62 in oral squamous cell carcinoma (OSCC) cells before and after chemotherapy. We also detected cancer-associated fibroblasts (CAFs) in these OSCC samples to explore the roles of p62 and CAFs in chemotherapy. Immunohistochemistry was used to analyze the expression of p62 and α-SMA in 26 paired OSCC samples before and after chemotherapy. The relationships between clinicopathological features, clinical outcome and the expression of these proteins were analyzed. Our results indicated an increased stromal α-SMA expression after chemotherapy in OSCC samples. High p62 expression of OSCC cells closely correlated with stromal α-SMA expression after chemotherapy. Furthermore, the post-chemotherapy p62 expression was associated with the prognosis for OSCC patients. These results suggest that chemotherapy may increase CAFs in OSCC. High cytoplasmic p62 expression may serve as a poor prognostic marker for OSCC patients."	"Cyclic Mechanical Stretch Induced Smooth Muscle Cell Changes in Cerebral Aneurysm Progress by Reducing Collagen Type IV and Collagen Type VI Levels. Cerebral aneurysm growth is characterized by continuous structural weakness of local smooth muscle cells, though the mechanism is unclear. In this study, we examine protein changes in cerebral aneurysm and human brain vascular smooth muscle cells after cyclic mechanical stretch. We further explore the relationship between the smooth muscle cell changes and reductions in the levels of collagen types IV and VI. Saccular cerebral aneurysms (n=10) were collected, and temporal artery samples were used as controls. Quantitative proteomics were analyzed and histopathological changes were examined. Smooth muscle cells were cultured in a flexible silicone chamber and subjected to 15% cyclic mechanical stretch. The effect of stretch on the cell viability, function, gene and protein expression were further studied for the understanding the molecular mechanism of aneurysm development. Proteomics analysis revealed 92 proteins with increased expression and 88 proteins with decreased expression compared to the controls (p&lt;0.05). KEGG pathway analysis showed that the change in focal adhesion and extracellular matrix-receptor interaction, suggesting the involvement of collagen type IV and VI. The aneurysm tissue exhibited fewer smooth muscle cells and lower levels of collagen type IV and VI. Human brain vascular smooth muscle cell culture showed spindle-like cells and obvious smooth muscle cell layer. Cell proteomics analysis showed that decreased expression of 118 proteins and increased expression of 32 proteins in smooth muscle cells after cyclic mechanical stretch. KEGG pathway analysis indicated that focal adhesion and ECM-receptor interaction were involved. After cyclic mechanical stretch, collagen type IV and IV expression were decreased. Moreover, the stretch induced MMP-1 and MMP-3 expression elevation. We demonstrated that collagen type IV and VI were decreased in cerebral aneurysms and continuous cyclic mechanical stretch induced smooth muscle cell changes. Smooth muscle cell protection provides an additional therapeutic option to prevent the growth of cerebral aneurysms."
+"COL3A1"	"familial thoracic aortic aneurysm and aortic dissection"	"Collagen Type III Alpha 1 chain regulated by GATA-Binding Protein 6 affects Type II IFN response and propanoate metabolism in the recurrence of lower grade glioma. Some studies suggested the prognosis value of immune gene in lower grade glioma (LGG). Recurrence in LGG is a tough clinical problem for many LGG patients. Therefore, prognosis biomarker is required. Multivariate prognosis Cox model was constructed and then calculated the risk score. And differential expressed transcription factors (TFs) and differential expressed immune genes (DEIGs) were co-analysed. Besides, significant immune cells/pathways were identified by single sample gene set enrichment analysis (ssGSEA). Moreover, gene set variation analysis (GSVA) and univariate Cox regression were applied to filter prognostic signalling pathways. Additionally, significant DEIG and immune cells/pathways, and significant DEIG and pathways were co-analysed. Further, differential enriched pathways were identified by GSEA. In sum, a scientific hypothesis for recurrence LGG including TF, immune gene and immune cell/pathway was established. In our study, a total of 536 primary LGG samples, 2,498 immune genes and 318 TFs were acquired. Based on edgeR method, 2,164 DEGs, 2,498 DEIGs and 31 differentials expressed TFs were identified. A total of 106 DEIGs were integrated into multivariate prognostic model. Additionally, the AUC of the ROC curve was 0.860, and P value of Kaplan-Meier curve &lt; 0.001. GATA6 (TF) and COL3A1 (DEIG) were selected (R = 0.900, P &lt; 0.001, positive) as significant TF-immune gene links. Type II IFN response (P &lt; 0.001) was the significant immune pathway. Propanoate metabolism (P &lt; 0.001) was the significant KEGG pathway. We proposed that COL3A1 was positively regulated by GATA6, and by effecting type II IFN response and propanoate metabolism, COL3A1 involved in LGG recurrence."	"The prognostic value of COL3A1/FBN1/COL5A2/SPARC-mir-29a-3p-H19 associated ceRNA network in Gastric Cancer through bioinformatic exploration. Increasing studies on malignant tumors have proposed a new competing endogenous RNA (ceRNA) regulatory mechanism that mRNA, miRNA and lncRNA interact with each other. However, the mRNA-miRNA-lncRNA associated ceRNA network in gastric cancer remains unknown. We used online bioinformatic softwares to predict the hub genes and their upstream miRNAs and lncRNAs in gastric cancer, and then performed survival analyses. After collecting gastric cancer tissue samples and performing PCR experiments, the correlations among predicted mRNA, miRNA and lncRNA were further verified. A total of 101 up-regulated significant differentially expressed genes (DEGs) and 219 down-regulated significant DEGs in gastric cancer were confirmed. Functional enrichment analyses of these significant DEGs indicated that they were potentially enriched in some pathways involved in tumor malignant biological processes or metabolism. Then, we identified 20 hub genes in the PPI networks. Combined with expression and survival analyses, 8 up-regulated genes and 1 down-regulated gene were identified as central genes and acted as important prognostic roles in gastric cancer. 17 miRNAs were confirmed that might potentially regulate the expressions of these central genes. But only 8 out of them indicated better outcome in gastric cancer. Further, 79 lncRNAs were predicted that might have the potence to combine with the 8 central miRNAs. The lncRNA H19 was eventually defined as a central lncRNA by survival analyses. Stimultaneously, we found that there were certain interactions among lncRNA, miRNA and mRNAs in 50 gastric cancer tissues by qRT-PCR. Moreover, the high expression of H19 is associated with advanced TNM stage, primary tumor and lymph nodes, indicating a poor prognosis. In summary, we uncovered the prognostic value of COL3A1/FBN1/COL5A2/SPARC-mir-29a-3p-H19 ceRNA network in gastric cancer."	"Pro-Fibrotic Phenotype in a Patient with Segmental Stiff Skin Syndrome via TGF-β Signaling Overactivation. Transforming growth factor β (TGF-β) superfamily signaling pathways are ubiquitous and essential for several cellular and physiological processes. The overexpression of TGF-β results in excessive fibrosis in multiple human disorders. Among them, stiff skin syndrome (SSS) is an ultrarare and untreatable condition characterized by the progressive thickening and hardening of the dermis, and acquired joint limitations. SSS is distinct in a widespread form, caused by recurrent germline variants of FBN1 encoding a key molecule of the TGF-β signaling, and a segmental form with unknown molecular basis. Here, we report a 12-year-old female with segmental SSS, affecting the right upper limb with acquired thickening of the dermis evident at the magnetic resonance imaging, and progressive limitation of the elbow and shoulder. To better explore the molecular and cellular mechanisms that drive segmental SSS, several functional studies on patient's fibroblasts were employed. We hypothesized an impairment of TGF-β signaling and, consequently, a dysregulation of the associated downstream signaling. Lesional fibroblast studies showed a higher phosphorylation level of extracellular signal-regulated kinase 1/2 (ERK1/2), increased levels of nuclear factor-kB (NFkB), and a nuclear accumulation of phosphorylated Smad2 via Western blot and microscopy analyses. Quantitative PCR expression analysis of genes encoding key extracellular matrix proteins revealed increased levels of COL1A1, COL3A1, AGT, LTBP and ITGB1, while zymography assay reported a reduced metalloproteinase 2 enzymatic activity. In vitro exposure of patient's fibroblasts to losartan led to the partial restoration of normal transforming growth factor β (TGF-β) marker protein levels. Taken together, these data demonstrate that in our patient, segmental SSS is characterized by the overactivation of multiple TGF-β signaling pathways, which likely results in altered extracellular matrix composition and fibroblast homeostasis. Our results for the first time reported that aberrant TGF-β signaling may drive the pathogenesis of segmental SSS and might open the way to novel therapeutic approaches."	"Collagen I and collagen III polymorphisms in women with pelvic organ prolapse. Verify the presence of the single nucleotide polymorphisms rs1800012 of the collagen I (COL1A1) and rs1800255 of the collagen III (COL3A1) genes and their association with pelvic organ prolapse (POP) in Brazilian women and to determine risk factors for POP. We assessed 826 postmenopausal women divided into POP (stages III and IV) and control groups (stages 0 and I) by examination and peripheral blood sample collection. DNA sequences of interest were analyzed by real-time reverse-transcriptase polymerase chain reaction. We used logistic regression analyses, recessive and codominance models of inheritance, and P &lt; .05 for significance. Six-hundred and thirty-four postmenopausal women were included: 348 (54.8%) POP cases and 286 (45.1%) controls. The frequencies of GG, GA, and AA genotypes for COL1A1 were 69.12%, 20.24%, and 10.59% in POP group and 71.79%, 20%, and 8.21% in controls; GG, GT, and TT for COL3A1 were 37.54%, 59.53%, and 2.93% in POP group and 36.24%, 60.14%, and 3.62% in controls. There were no genotypic or allelic association with POP phenotype that link both SNPs rs1800012 and rs1800255 to increased risk of POP. Vaginal delivery (odds ratio [OR] = 13; 95% confidence interval [CI] [4.00-47.08]), POP family history (OR = 3.1; 95% CI [1.49-6.50]), diabetes mellitus (OR = 2.3; 95% CI [1.08-5.21]), number of pregnancies (OR = 1.2; 95% CI [1.05-1.36]), and age (OR = 1.1; 95% CI [1.09-1.19]), were variables of increased risk for POP (P &lt; .05 for all). Our study suggests lack of association between DNA polymorphisms rs1800012 of COL1A1 and rs1800255 of COL3A1 with advanced POP. Vaginal delivery, POP family history, diabetes mellitus, number of pregnancies, and age are risk factors for POP."	"Zonal regulation of collagen-type proteins and posttranslational modifications in prostatic benign and cancer tissues by imaging mass spectrometry. The emergence of reactive stroma is a hallmark of prostate cancer (PCa) progression and a potential source for prognostic and diagnostic markers of PCa. Collagen is a main component of reactive stroma and changes systematically and quantitatively to reflect the course of PCa, yet has remained undefined due to a lack of tools that can define collagen protein structure. Here we use a novel collagen-targeting proteomics approach to investigate zonal regulation of collagen-type proteins in PCa prostatectomies. Prostatectomies from nine patients were divided into zones containing 0%, 5%, 20%, 70% to 80% glandular tissue and 0%, 5%, 25%, 70% by mass of PCa tumor following the McNeal model. Tissue sections from zones were graded by a pathologist for Gleason score, percent tumor present, percent prostatic intraepithelial neoplasia and/or inflammation (INF). High-resolution accurate mass collagen targeting proteomics was done on a select subset of tissue sections from patient-matched tumor or nontumor zones. Imaging mass spectrometry was used to investigate collagen-type regulation corresponding to pathologist-defined regions. Complex collagen proteomes were detected from all zones. COL17A and COL27A increased in zones of INF compared with zones with tumor present. COL3A1, COL4A5, and COL8A2 consistently increased in zones with tumor content, independent of tumor size. Collagen hydroxylation of proline (HYP) was altered in tumor zones compared with zones with INF and no tumor. COL3A1 and COL5A1 showed significant changes in HYP peptide ratios within tumor compared with zones of INF (2.59 ± 0.29, P value: .015; 3.75 ± 0.96 P value .036, respectively). By imaging mass spectrometry COL3A1 showed defined localization and regulation to tumor pathology. COL1A1 and COL1A2 showed gradient regulation corresponding to PCa pathology across zones. Pathologist-defined tumor regions showed significant increases in COL1A1 HYP modifications compared with COL1A2 HYP modifications. Certain COL1A1 and COL1A2 peptides could discriminate between pathologist-defined tumor and inflammatory regions. Site-specific posttranslational regulation of collagen structure by proline hydroxylation may be involved in reactive stroma associated with PCa progression. Translational and posttranslational regulation of collagen protein structure has potential for new markers to understand PCa progression and outcomes."	"Characterization of novel USP6 gene rearrangements in a subset of so-called cellular fibroma of tendon sheath. Fibroma of tendon sheath (FTS) is an uncommon benign fibroblastic/myofibroblastic neoplasm that typically arises in the tenosynovial tissue of the distal extremities. Histologically, it is a well-circumscribed proliferation of spindle cells within collagenous stroma with peripheral slit-like vessels. Most examples are relatively hypocellular and more densely collagenous than nodular fasciitis; however, a cellular variant has been described, which has considerable morphologic overlap with nodular fasciitis and has been shown to harbor USP6 translocations in a subset of cases. The incidence of these rearrangements and the identity of the USP6 fusion partners have not been described in detail. In this study we evaluate 13 cases of cellular fibroma of tendon sheath by anchored multiplex PCR/next generation sequencing in order to detect potential gene fusions. Nucleic acids of adequate quality were obtained in 11 cases, demonstrating gene fusions in 7/11 (64%), all of which involve USP6 with a variety of partners, including PKM, RCC1, ASPN, COL1A1, COL3A1, and MYH9. Some unusual histomorphologic findings were present in a subset of cases including palisading growth pattern, epithelioid cells, and osteoclast-like multinucleated giant cells, particularly in the tumors with PKM and ASPN gene partners. Overall, the findings support a biologic relationship between cellular fibroma of tendon sheath and other lesions within the spectrum of USP6-rearranged neoplasms, particularly nodular fasciitis."	"Differences in cytotoxicity of lidocaine, ropivacaine, bupivacaine on the viability and metabolic activity of human adipose-derived mesenchymal stem cells. We evaluated biological effects of distinct local anesthetics (LA) on human adipose-derived mesenchymal stem cells (MSCs) when applied to reduce peri-procedural pain during MSC injections.Methods and materialsMetabolic activity (MTS assay), viability (Live/Dead stain) and gene expression (quantitative real time reverse-transcriptase polymerase chain reaction, qRT-PCR) were measured in MSCs incubated with various concentrations of lidocaine, ropivacaine or bupivacaine during a 12-hour time course. Cell viability and metabolic activity decreased in a dose, time, and substance-specific manner after exposure to lidocaine, ropivacaine and bupivacaine, with ropivacaine being the least cytotoxic. Cell viability decreases after brief exposure (&lt;1.5 hr) at clinically relevant concentrations (e.g., 8mg/ml lidocaine, 2.5mg/ml ropivacaine or bupivacaine). MSCs exposed to LA change their expression of mRNA biomarkers for stress response (EGR1, EGR2), proliferation (MKI67, HIST2H4A), ECM (COL1A1, COL3A1) and cell surface marker (CD105). LA are cytotoxic to clinical-grade human MSCs in a dose-, time-, and agent-dependent manner and change expression of ECM, proliferation and cell surface markers. Lidocaine and bupivacaine are more cytotoxic than ropivacaine. Single-dose injections of LA may affect the biological properties of MSCs in vitro, but may not affect the effective dose of MSCs in a clinical setting."	"A Novel COL3A1 c.2644G&gt;T; p.(Gly882Cys) Variant in a Turkish Family with Vascular Ehlers-Danlos Syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is an autosomal dominant disease, also known as EDS type IV. The estimated prevalence for all EDS varies between 1/10,000 and 1/25,000 with EDS type IV representing approximately 5-10% of the cases. The vascular complications may affect all anatomical areas, with a tendency toward arteries of large and medium diameter. vEDS diagnosis is a challenging process. Patients usually have different phenotypic features and are unaware of the diagnosis at the time of initial vascular complications. The authors report the case of a 39-year-old male patient with EDS type IV, who developed internal carotid artery dissection and was diagnosed with clinical findings, imaging modalities, and a novel pathogenic COL3A1 variant."	"An Analysis Regarding the Association Between the ISLR Gene and Gastric Carcinogenesis. For datasets of gastric cancer collected by TCGA (The Cancer Genome Atlas) and GEO (Gene Expression Omnibus) repositories, we applied a bioinformatics approach to obtain expression data for the ISLR (immunoglobulin superfamily containing leucine-rich repeat) gene, which is highly expressed in gastric cancer tissues and closely associated with clinical prognosis. Although we did not observe an overall association of ISLR mutation, high expression or copy number variation with survival, hypomethylation of four methylated sites (assessed by the probes cg05195566, cg17258195, cg09664357, and cg07297039) of ISLR was negatively correlated with high expression levels of ISLR and was associated with poor clinical prognosis. In addition, we detected a correlation between ISLR expression and the infiltration levels of several immune cells, especially CD8<sup>+</sup> T cells, macrophages and dendritic cells. We also identified a series of genes that were positively and negatively correlated with ISLR expression based on the TCGA-STAD, GSE13861, and GSE29272 datasets. Principal component analysis and random forest analysis were employed to further screen for six hub genes, including ISLR, COL1A2, CDH11, SPARC, COL3A1, and COL1A1, which exhibited a good ability to differentiate between tumor and normal samples. GO (Gene Ontology) and KEGG (Kyoto Encyclopedia of Genes and Genomes) pathway and gene set enrichment analysis data also suggested a potential relationship between ISLR gene expression and epithelial-mesenchymal transition (EMT). ISLR expression was negatively correlated with sensitivity to PX-12 and NSC632839. Taken together, these results show that the ISLR gene is involved in gastric carcinogenesis, and the underlying molecular mechanisms may include DNA methylation, EMT, and immune cell infiltration."	"Development of a novel in vitro insulin resistance model in primary human tenocytes for diabetic tendinopathy research. Type 2 diabetes mellitus (T2DM) had been reported to be associated with tendinopathy. However, the underlying mechanisms of diabetic tendinopathy still remain largely to be discovered. The purpose of this study was to develop insulin resistance (IR) model on primary human tenocytes (hTeno) culture with tumour necrosis factor-alpha (TNF-α) treatment to study tenocytes homeostasis as an implication for diabetic tendinopathy. hTenowere isolated from human hamstring tendon. Presence of insulin receptor beta (INSR-β) on normal tendon tissues and the hTeno monolayer culture were analyzed by immunofluorescence staining. The presence of Glucose Transporter Type 1 (GLUT1) and Glucose Transporter Type 4 (GLUT4) on the hTeno monolayer culture were also analyzed by immunofluorescence staining. Primary hTeno were treated with 0.008, 0.08, 0.8 and 8.0 µM of TNF-α, with and without insulin supplement. Outcome measures include 2-[N-(7-nitrobenz-2-oxa-1,3-diazol-4-yl) amino]-2-deoxy-d-glucose (2-NBDG) assay to determine the glucose uptake activity; colourimetric total collagen assay to quantify the total collagen expression levels; COL-I ELISA assay to measure the COL-I expression levels and real-time qPCR to analyze the mRNA gene expressions levels of Scleraxis (SCX), Mohawk (MKX), type I collagen (COL1A1), type III collagen (COL3A1), matrix metalloproteinases (MMP)-9 and MMP-13 in hTeno when treated with TNF-α. Apoptosis assay for hTeno induced with TNF-α was conducted using Annexin-V FITC flow cytometry analysis. Immunofluorescence imaging showed the presence of INSR-β on the hTeno in the human Achilles tendon tissues and in the hTeno in monolayer culture. GLUT1 and GLUT4 were both positively expressed in the hTeno. TNF-α significantly reduced the insulin-mediated 2-NBDG uptake in all the tested concentrations, especially at 0.008 µM. Total collagen expression levels and COL-I expression levels in hTeno were also significantly reduced in hTeno treated with 0.008 µM of TNF-α. The SCX, MKX and COL1A1 mRNA expression levels were significantly downregulated in all TNF-α treated hTeno, whereas the COL3A1, MMP-9 and MMP-13 were significantly upregulated in the TNF-α treated cells. TNF-α progressively increased the apoptotic cells at 48 and 72 h. At 0.008 µM of TNF-α, an IR condition was induced in hTeno, supported with the significant reduction in glucose uptake, as well as significantly reduced total collagen, specifically COL-I expression levels, downregulation of candidate tenogenic markers genes (SCX and MKX), and upregulation of ECM catabolic genes (MMP-9 and MMP-13). Development of novel IR model in hTeno provides an insight on how tendon homeostasis could be affected and can be used as a tool for further discovering the effects on downstream molecular pathways, as the implication for diabetic tendinopathy."	"Benign Infiltrative Myofibroblastic Neoplasms of Childhood with USP6 Gene Rearrangement. Several morphologically overlapping (myo)fibroblastic neoplasms harbor USP6 rearrangements, including aneurysmal bone cyst, nodular fasciitis, myositis ossificans, cranial fasciitis, fibro-osseous pseudotumor of digits, and cellular fibroma of tendon sheath. USP6-induced neoplasms are almost universally benign and cured by local excision. Three deep-seated, radiographically aggressive and rapidly growing childhood myofibroblastic neoplasms were morphologically and molecularly characterized by USP6 break-apart fluorescence in situ hybridization (FISH), transcriptome sequencing, and targeted capture analysis. Each tumor occurred in the lower extremity deep soft tissue of a child presenting with pain, limping, or mass. In all 3 patients, imaging studies showed a solid mass that infiltrated into surrounding skeletal muscle or involved/eroded underlying bone. The biopsied tumors consisted of variably cellular myofibroblastic proliferations with variable mitotic activity that lacked overtly malignant cytologic features. All tumors had USP6 rearrangement upon FISH. Based on results, all 3 patients were treated by conservative excision with positive margins. The excised tumors had foci resembling nodular fasciitis, fibromatosis, and pseudosarcomatous proliferation. Next-generation sequencing revealed COL1A1-USP6 fusion in 2 tumors and COL3A1-USP6 fusion in the third tumor. One tumor had a subclonal somatic APC in-frame deletion. No recurrence was observed during follow-up (8-40 months). We present a series of benign, yet aggressive-appearing, USP6-rearranged myofibroblastic tumors. These deep-seated tumors had concerning clinical and radiographic presentations and did not fit into one distinct histologic category. These cases highlight the diagnostic value of USP6 fusion detection to identify benign non-descript tumors of this group, especially those with aggressive features, to avoid overtreatment."	"Luhong Formula Has a Cardioprotective Effect on Left Ventricular Remodeling in Pressure-Overloaded Rats. Luhong formula (LHF)-a traditional Chinese medicine containing Cervus nippon Temminck, Carthamus tinctorius L., Astragalus membranaceus (Fisch.) Bge. var. mongholicus (Bge.) Hsiao, Codonopsis pilosula (Franch.) Nannf., Cinnamomum cassia Presl, and Lepidium apetalum Willd-is used in the treatment of heart failure, but little is known about its mechanism of action. We have investigated the effects of LHF on antifibrosis. Forty-eight SD male rats were randomly assigned into six groups (n = 8), model group, sham-operation group, perindopril group (0.036 mg/ml), LHF high doses (LHF-H, 1.44 g/mL), LHF middle doses (LHF-M, 0.72 g/mL), and LHF low doses (LHF-L, 0.36 g/mL). Except the sham-operation group, the other groups were received an abdominal aorta constriction to establish a model of myocardial hypertrophy. The HW and LVW were measured to calculate the LVW/BW and HW/BW. ELISA was used to detect the serum concentration of BNP. The expressions of eNOS, TGF-β1, caspase-3, VEGF, and VEGFR2 in heart tissues were assessed by western blot analysis. mRNA expressions of eNOS, Col1a1, Col3a1, TGF-β1, VEGF, and VEGFR2 in heart tissues were measured by RT-PCR. The specimens were stained with hematoxylin-eosin (HE) and picrosirius red staining for observing the morphological characteristics and collagen fibers I and III of the myocardium under a light microscope. LHF significantly lowered the rat's HW/BW and LVM/BW, and the level of BNP in the LHF-treated group compared with the model group. Histopathological and pathomorphological changes of collagen fibers I and III showed that LHF inhibited myocardial fibrosis in heart failure rats. Treatment with LHF upregulated eNOS expression in heart tissue and downregulated Col1a1, Col3a1, TGF-β1, caspase-3, VEGF, and VEGFR2 expression. LHF can improve left ventricular remodeling in a pressure-overloaded heart failure rat model; this cardiac protective ability may be due to cardiac fibrosis and attenuated apoptosis. Upregulated eNOS expression and downregulated Col1a1, Col3a1, TGF-β1, caspase-3, VEGF, and VEGFR2 expression may play a role in the observed LHF cardioprotective effect."	"Microcurrent and adipose-derived stem cells modulate genes expression involved in the structural recovery of transected tendon of rats. Tendon injuries are common and have a high incidence of re-rupture that can cause loss of functionality. Therapies with adipose-derived stem cells (ASC) and the microcurrent (low-intensity electrical stimulation) application present promising effects on the tissue repair. We analyzed the expression of genes and the participation of some molecules potentially involved in the structural recovery of the Achilles tendon of rats, in response to the application of both therapies, isolated and combined. The tendons were distributed in five groups: normal (N), transected (T), transected and ASC (C) or microcurrent (M) or with ASC, and microcurrent (MC). Microcurrent therapy was beneficial for tendon repair, as it was observed a statistically significant increase in the organization of the collagen fibers, with involvement of the TNC, CTGF, FN, FMDO, and COL3A1 genes as well as PCNA, IL-10, and TNF-α. ASC therapy significantly increased the TNC and FMDO genes expression with no changes in the molecular organization of collagen. With the association of therapies, a significant greater collagen fibers organization was observed with involvement of the FMOD gene. The therapies did not affect the expression of COL1A1, SMAD2, SMAD3, MKX, and EGR1 genes, nor did they influence the amount of collagen I and III, caspase-3, tenomodulin (Tnmd), and hydroxyproline. In conclusion, the application of the microcurrent isolated or associated with ASC increased the organization of the collagen fibers, which can result in a greater biomechanical resistance in relation to the tendons treated only with ASC. Future studies will be needed to demonstrate the biological effects of these therapies on the functional recovery of injured tendons."	"Identification of the key genes and microRNAs in adult acute myeloid leukemia with FLT3 mutation by bioinformatics analysis. Background: Associated with poor prognosis, FMS-like tyrosine kinase 3 (FLT3) mutation appeared frequently in acute myeloid leukemia (AML). Herein, we aimed to identify the key genes and miRNAs involved in adult AML with FLT3 mutation and find possible therapeutic targets for improving treatment. Materials: Gene and miRNA expression data and survival profiles were obtained from The Cancer Genome Atlas (TCGA) and Gene Expression Omnibus (GEO) database. EdgeR of R platform was applied to identify the differentially expressed genes and miRNAs (DEGs, DE-miRNAs). Gene ontology (GO) and the Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analyses were performed by Metascape and DAVID. And protein-protein interaction network, miRNA-mRNA regulatory network and clustering modules analyses were performed by STRING database and Cytoscape software. Results: Survival analysis showed FLT3 mutation led to adverse outcome in AML. 24 DE-miRNAs (6 upregulated, 18 downregulated) and 250 DEGs (54 upregulated, 196 downregulated) were identified. Five miRNAs had prognostic value and the results matched their expression levels (miR-1-3p, miR-10a-3p, miR-10a-5p, miR-133a-3p and miR-99b-5p). GO analysis showed DEGs were enriched in skeletal system development, blood vessel development, cartilage development, tissue morphogenesis, cartilage morphogenesis, cell morphogenesis involved in differentiation, response to growth factor, cell-substrate adhesion and so on. The KEGG analysis showed DEGs were enriched in PI3K-Akt signaling pathway, ECM-receptor interaction and focal adhesion. Seven genes (LAMC1, COL3A1, APOB, COL1A2, APP, SPP1 and FSTL1) were simultaneously identified by hub gene analysis and module analysis. SLC14A1, ARHGAP5 and PIK3CA, the target genes of miR-10a-3p, resulted in poor prognosis. Conclusion: Our study successfully identified molecular markers, processes and pathways affected by FLT3 mutation in AML. Furthermore, miR-10a-3p, a novel oncogene, might involve in the development of FLT3 mutation adult AML by targeting SLC14A1, ARHGAP5 and PIK3CA."	"Exon skipping of TGFβRI affects signalling and ECM expression in hypertrophic scar-derived fibroblasts. In burn patients, wound healing is often accompanied by hypertrophic scar (HS) development, resulting in both functional and aesthetic problems. HSs are characterised by abundant presence of myofibroblasts that contribute to overproduction of extracellular matrix (ECM) that is regulated by the TGF-β signalling pathway. Studies have shown that inhibition of TGF-β receptors in fibrotic diseases reduces the fibrotic load. In the present study, we aim to inactivate ALK5, also known as TGF-β receptor I, in human HS fibroblasts by exon skipping using antisense oligonucleotides (AONs). HS biopsies were used to isolate and set up fibroblast monocultures. AONs targeting ALK5 were supplemented to the fibroblast cultures to induce exon skipping, while pharmacological ALK5 inhibition was induced using SB431542. AON delivery in HS fibroblasts was examined using immunofluorescence (IF), while TGF-β signalling downstream targets, such as Smad2/3, PAI-1, ACTA2, COL1A1 and COL3A1, were analysed using touchdown polymerase chain reaction (PCR), quantitative PCR (qPCR), IF or western blotting. Our data clearly demonstrate that AONs were successfully delivered in the nuclei of HS fibroblasts and that functional exon skipping of ALK5 took place as confirmed with touchdown PCR and qPCR. In addition, exon skipping affected the expression of ECM-related genes, such as type I/III collagens, PAI-1 and CCN2. Moreover, AON treatment did not affect the migration of HS fibroblasts in a model for wound healing. Exon skipping is a promising tool to modulate the TGF-β signalling pathway in HS. This would open a therapeutic window for the treatment of patients suffering from HSs."	"Identifying multiple collagen gene family members as potential gastric cancer biomarkers using integrated bioinformatics analysis. Gastric cancer is one of the most common malignant cancers worldwide. Despite substantial developments in therapeutic strategies, the five-year survival rate remains low. Therefore, novel biomarkers and therapeutic targets involved in the progression of gastric tumors need to be identified. We obtained the mRNA microarray datasets GSE65801, GSE54129 and GSE79973 from the Gene Expression Omnibus database to acquire differentially expressed genes (DEGs). We used the Database for Annotation, Visualization, and Integrated Discovery (DAVID) to analyze DEG pathways and functions, and the Search Tool for the Retrieval of Interacting Genes (STRING) and Cytoscape to obtain the protein-protein interaction (PPI) network. Next, we validated the hub gene expression levels using the Oncomine database and Gene Expression Profiling Interactive Analysis (GEPIA), and conducted stage expression and survival analysis. From the three microarray datasets, we identified nine major hub genes: COL1A1, COL1A2, COL3A1, COL5A2, COL4A1, FN1, COL5A1, COL4A2, and COL6A3. Our study identified COL1A1 and COL1A2 as potential gastric cancer prognostic biomarkers."	"High expression of stromal signatures correlated with macrophage infiltration, angiogenesis and poor prognosis in glioma microenvironment. Glioma is one of the most fatal tumors in central nervous system. Previous studies gradually revealed the association between tumor microenvironment and the prognosis of gliomas patients. However, the correlation between tumor-infiltrating immune cell and stromal signatures are unknown. In our study, we obtained gliomas samples from the Chinese Glioma Genome Atlas (CGGA) and The Cancer Genome Atlas (TCGA). The landscape of tumor infiltrating immune cell subtypes in gliomas was calculated by CIBERSORT. As a result, we found high infiltration of macrophages was correlated with poor outcome (P &lt; 0.05). Then functional enrichment analysis of high/low macrophage-infiltrating groups was performed by GSEA. The results showed three gene sets includes 102 core genes about angiogenesis were detected in high macrophage-infiltrating group. Next, we constructed PPI network and analyzed prognostic value of 102 core genes. We found that five stromal signatures indicated poor prognosis which including HSPG2, FOXF1, KDR, COL3A1, SRPX2 (P &lt; 0.05). Five stromal signatures were adopted to construct a classifier. The classifier showed powerful predictive ability (AUC = 0.748). Patients with a high risk score showed poor survival. Finally, we validated this classifier in TCGA and the result was consistent with CGGA. Our investigation of tumor microenvironment in gliomas may stimulate the new strategy in immunotherapy. Five stromal signature correlated with poor prognosis also provide a strong predator of gliomas patient outcome."	"Blockade of PAR-1 Signaling Attenuates Cardiac Hypertrophy and Fibrosis in Renin-Overexpressing Hypertensive Mice. Background Although PAR-1 (protease-activated receptor-1) exerts important functions in the pathophysiology of the cardiovascular system, the role of PAR-1 signaling in heart failure development remains largely unknown. We tested the hypothesis that PAR-1 signaling inhibition has protective effects on the progression of cardiac remodeling induced by chronic renin-angiotensin system activation using renin-overexpressing hypertensive (Ren-Tg) mice. Methods and Results We treated 12- to 16-week-old male wild-type (WT) mice and Ren-Tg mice with continuous subcutaneous infusion of the PAR-1 antagonist SCH79797 or vehicle for 4 weeks. The thicknesses of interventricular septum and the left ventricular posterior wall were greater in Ren-Tg mice than in WT mice, and SCH79797 treatment significantly decreased these thicknesses in Ren-Tg mice. The cardiac fibrosis area and monocyte/macrophage deposition were greater in Ren-Tg mice than in WT mice, and both conditions were attenuated by SCH79797 treatment. Cardiac mRNA expression levels of PAR-1, TNF-α (tumor necrosis factor-α), TGF-β1 (transforming growth factor-β1), and COL3A1 (collagen type 3 α1 chain) and the ratio of β-myosin heavy chain (β-MHC) to α-MHC were all greater in Ren-Tg mice than in WT mice; SCH79797 treatment attenuated these increases in Ren-Tg mice. Prothrombin fragment 1+2 concentration and factor Xa in plasma were greater in Ren-Tg mice than in WT mice, and both conditions were unaffected by SCH79797 treatment. In isolated cardiac fibroblasts, both thrombin and factor Xa enhanced ERK1/2 (extracellular signal-regulated kinase 1/2) phosphorylation, and SCH79797 pretreatment abolished this enhancement. Furthermore, gene expression of PAR-1, TGF-β1, and COL3A1 were enhanced by factor Xa, and all were inhibited by SCH79797. Conclusions The results indicate that PAR-1 signaling is involved in cardiac remodeling induced by renin-angiotensin system activation, which may provide a novel therapeutic target for heart failure."	"Recurrent pneumothorax and intrapulmonary cavitary lesions in a male patient with vascular Ehlers-Danlos syndrome and a novel missense mutation in the COL3A1 gene: a case report. Vascular Ehlers-Danlos syndrome (vEDS) is a rare autosomal dominant hereditary collagen disease caused by a defect or deficiency in the pro-α1 chain of type III procollagen encoded by the COL3A1 gene. Patients with vEDS rarely present with multiple pneumothoraces. The clinical features of this disease are not familiar to clinicians and are easily missed. We report a patient with a novel missense mutation in the COL3A1 gene (NM_000090.3: c.2977G &gt; A) and hope to provide clinicians with valuable information. We reported the case of a young man presenting with frequent episodes of pneumothorax and intrapulmonary cavities and nodular lesions without arterial or visceral complications. His skin was thin and transparent, and the joints were slightly hypermobile. Whole-exome sequencing (chip capture high-throughput sequencing) revealed a heterozygous missense mutation in exon 41 of the COL3A1 gene (NM_000090.3: c.2977G &gt; A), confirming the diagnosis of vEDS. vEDS remains a very rare and difficult diagnosis to determine. When a patient presents with recurrent pneumothorax, intrapulmonary cavities and nodular lesions, thin and transparent skin, and hypermobile joints, clinicians should consider the diagnosis of vEDS."	"RELMα is Induced in Airway Epithelial Cells by Oncostatin M Without Requirement of STAT6 or IL-6 in Mouse Lungs In Vivo. Resistin-like molecule alpha (RELMα) and YM-1 are secreted proteins implicated in murine models of alternatively activated macrophage (AA/M2) accumulation and Th2-skewed inflammation. Since the gp130 cytokine Oncostatin M (OSM) induces a Th2-like cytokine and AA/M2 skewed inflammation in mouse lung, we here investigated regulation of RELMα and YM-1. Transient pulmonary overexpression of OSM by Adenovirus vector (AdOSM) markedly induced RELMα and YM-1 protein expression in total lung. In situ hybridization showed that RELMα mRNA was highly induced in airway epithelial cells (AEC) and was co-expressed with CD68 mRNA in some but not all CD68+ cells in parenchyma. IL-6 overexpression (a comparator gp130 cytokine) induced RELMα, but at significantly lower levels. IL-6 (assessing IL-6<sup>-</sup><sup>/</sup><sup>-</sup> mice) was not required, nor was STAT6 (IL-4/13 canonical signalling) for AdOSM-induction of RELMα in AEC. AEC responded directly to OSM in vitro as assessed by pSTAT3 activation. RELMα-deficient mice showed similar inflammatory cell infiltration and cytokine responses to wt in response to AdOSM, but showed less accumulation of CD206+ AA/M2 macrophages, reduced induction of extracellular matrix gene mRNAs for COL1A1, COL3A1, MMP13, and TIMP1, and reduced parenchymal alpha smooth muscle actin. Thus, RELMα is regulated by OSM in AEC and contributes to extracellular matrix remodelling in mouse lung."	"Human Cumulus Cells in Long-Term In Vitro Culture Reflect Differential Expression Profile of Genes Responsible for Planned Cell Death and Aging-A Study of New Molecular Markers. In the ovarian follicle, maturation of the oocyte increases in the presence of somatic cells called cumulus cells (CCs). These cells form a direct barrier between the oocyte and external environment. Thanks to bidirectional communication, they have a direct impact on the oocyte, its quality and development potential. Understanding the genetic profile of CCs appears to be important in elucidating the physiology of oocytes. Long-term in vitro culture of CCs collected from patients undergoing controlled ovarian stimulation during in vitro fertilization procedure was conducted. Using microarray expression analysis, transcript levels were assessed on day 1, 7, 15, and 30 of culture. Apoptosis and aging of CCs strictly influence oocyte quality and subsequently the outcome of assisted reproductive technologies (ART). Thus, particular attention was paid to the analysis of genes involved in programmed cell death, aging, and apoptosis. Due to the detailed level of expression analysis of each of the 133 analyzed genes, three groups were selected: first with significantly decreased expression during the culture; second with the statistically lowest increase in expression; and third with the highest significant increase in expression. COL3A1, SFRP4, CTGF, HTR2B, VCAM1, TNFRSF11B genes, belonging to the third group, were identified as potential carriers of information on oocyte quality."	"Critical role of platelet-derived growth factor-α in angiogenesis after indirect bypass in a murine moyamoya disease model. This study aimed to clarify the underlying mechanism of pathognomonic angiogenesis between the temporal muscle and neocortex after indirect bypass for moyamoya disease by shedding light on the role of platelet-derived growth factor receptor-α (PDGFRα) in angiogenesis. The gene for PDGFRα was systemically inactivated in adult mice (α-KO mice). The Pdgfra-preserving mice (Flox mice) and α-KO mice were exposed to bilateral common carotid artery stenosis (BCAS) by using microcoils. One week later the animals underwent encephalomyosynangiosis (EMS) on the right side. Cerebral blood flow (CBF) was serially measured using a laser Doppler flowmeter. Histological analysis was performed on the distribution of CD31-positive vessels and collagen deposit at 28 days after BCAS. Reverse transcription polymerase chain reaction (RT-PCR) was performed to assess the expression of collagen mRNA in the skin fibroblasts derived from Flox and α-KO mice. BCAS significantly reduced CBF up to approximately 70% of the control level at 28 days after the onset. There was no significant difference in CBF between Flox and α-KO mice. EMS significantly enhanced the improvement of CBF on the ipsilateral side of Flox mice, but not α-KO mice. EMS significantly induced the development of CD31-positive vessels in both the neocortex and temporal muscle on the ipsilateral side of Flox mice, but not α-KO mice. Deposition of collagen was distinctly observed between them in Flox mice, but not α-KO mice. Expression of mRNA of collagen type 1 alpha 1 (Col1a1) and collagen type 3 alpha 1 (Col3a1) was significantly downregulated in the skin fibroblasts from α-KO mice. This is the first study that denotes the role of a specific growth factor in angiogenesis after EMS for moyamoya disease by inactivating its gene in mice. The findings strongly suggest that PDGFRα signal may play an important role in developing spontaneous angiogenesis between the temporal muscle and neocortex after EMS in moyamoya disease."	"Sudden death as a result of colon perforation; Ehlers-Danlos type IV case with postmortem diagnosis. Ehlers-Danlos Syndrome (EDS) is a connective tissue disease with heterogeneous subgroups. In type IV EDS, also known as vascular EDS (VEDS), the underlying genetic anomaly consists of a mutation of the COL3A1 gene encoding the type III procollagen. As a result of the mutation, pathological findings due to excessive brittleness of the tubular organs or vessels occur. In our case, we present a patient with sudden death due to colon perforation which was diagnosed with EDS type IV after further examination in the autopsy. Forensic medicine experts should consider the possibility of EDS type IV after the detection of spontaneous ruptures in the internal organs during the autopsy. We think that it would be appropriate to report this autosomal dominant and potentially fatal condition to family members."	"H19 promotes the gastric carcinogenesis by sponging miR-29a-3p: evidence from lncRNA-miRNA-mRNA network analysis. Aim: To identify novel competing endogenous RNA (ceRNA) network correlated with the prognosis of gastric cancer (GC) patients. Materials &amp; methods: We systematically analyzed the aberrantly expressed genes in human GC to construct a ceRNA network by using multiple bioinformatic tools. Results: Aberrantly expressed mRNAs in GC were identified. By means of stepwise reverse prediction and validation from mRNA to lncRNA, a ceRNA network comprised of H19, miR-29a-3p, COL3A1, COL5A2, COL1A2 and COL4A1 was constructed, and all genes in the network are significantly correlated with the prognosis of GC patients. Conclusion: The present study successfully constructed a GC related ceRNA network, and provided potential targets for GC clinical treatment."	"Microarray Analysis for Differentially Expressed Genes Between Stromal and Epithelial Cells in Development and Metastasis of Invasive Breast Cancer.  Both epithelium and stroma are involved in breast cancer invasion and metastasis. This study aimed at identifying the roles of the stroma in breast cancer tumorigenesis and metastasis. Gene expression profiling GSE10797 was downloaded from the Gene Expression Omnibus database, and it included 28-paired stroma and epithelium breast tissue samples from invasive breast cancer patients and 10 paired normal breast tissue samples. Differentially expressed genes (DEGs) between breast cancer and normal breast tissue samples were identified by using the limma package followed by Gene Ontology and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analyses to seek the potential functions of DEGs. Moreover, a protein-protein interaction network was constructed based on the String database, and modules were selected through the BioNet tool. Further, functional annotations of DEGs were carried out by using tumor suppressor gene and tumor associated gene databases. Ultimately, KEGG pathway enrichment analysis for DEGs in modules was performed. A total of 38 and 156 DEGs were identified from normal invasive stromal cells and epithelial cells, respectively. DEGs in stromal and epithelial cells were significantly enriched in extracellular matrix (ECM)- and cell proliferation-related functions. COL1A2, a hub node in the stromal module, was mainly enriched in ECM-receptor interaction and focal adhesion pathways. JUN, a hub node in the epithelium module, was significantly enriched in cancer and ErbB signaling pathways. COL1A2, COL1A1, COL3A1, JUN, and FN1 might be vital for tumorigenesis and metastasis of invasive breast cancer. These genes might be potential therapeutic targets for breast cancer treatment. "	"Xiaochaihu decorction relieves liver fibrosis caused by Schistosoma japonicum infection via the HSP47/TGF-β pathway. Hepatic fibrosis caused by chronic infection with Schistosoma japonica remains a serious public health problem in the world. Symptoms include inflammation, liver granuloma and fibrosis, whilst treatment options are still limited. This study aims to investigate whether and how traditional Chinese medicine Xiaochaihu decoction (XCH) could mitigate liver fibrosis caused by S. japonicum infection. BALB/c mice were infected with S. japonicum cercariae and treated with XCH for 16 weeks. Liver pathological changes were assessed by H&amp;E and Masson staining. NIH3T3 and Raw264.7 cells were treated with S. japonicum egg antigens with or without XCH treatment. Quantitative real-time PCR, western blot, immunfluorescence and ELISA were performed to determine the changes of levels of fibrogenic markers. XCH protected mouse liver from injuries and fibrosis caused by S. japonicum infection and considerably reduced egg burden in a dose-dependent manner. Infection with S. japonicum caused elevation of serum ALT, AST, ALP, HA and PIIINP levels and reduction of ALB and GLOB levels, which was markedly suppressed by XCH. The upregulation of TGF-β1, Hsp47, α-SMA, Col1A1 and Col3A1 in S. japonicum-infected mouse liver was also significantly inhibited by XCH. Schistosoma japonicum egg antigens promoted the expression of Hsp47, TGF-β1, Timp-1, α-SMA, Col1A1 and Col3A1 in NIH3T3 cells, and TGF-β1, CTGF, IL-13, IL-17 and IL-6 in Raw264.7 cells, which was inhibited by XCH, LY2157299 and shRNA-Hsp47. These results demonstrated that the hepatic protective effects of Xiaochaihu decoction were mediated by HSP47/TGF-β axis."	"Molecular skin changes in Cushing syndrome and the effects of treatment. We investigated newly diagnosed patients with endogenous CS for molecular changes in skin by biopsy before and a year after treatment of CS. 26 Patients with CS and 23 healthy controls were included. All the patients were evaluated before and a year after treatment. Skin biopsies were obtained from abdominal region before and a year after treatment in patients with CS and once from healthy volunteers. Total RNA was isolated from the skin biopsy samples and the real-time PCR system was used to determine the expression levels of 23 genes in the skin biopsy. Skin expression levels of HAS 1, 2 and 3 mRNAs were lower and COL1A2, COL2A1, COL3A1 mRNAs were higher in patients with CS than in normal controls. MMP-9, TIMP-1 and elastin mRNA expression levels were similar in two groups. Skin IL-1β mRNA expression level was significantly higher in patients with CS. None of these parameters changed significantly 12 months after treatment. Patients with CS showed higher skin GH and HSD11B1 mRNA expressions and lower GHR and IGF-1R mRNA expression compared to control. Expression levels of IGF-1, GR and HSD11B2 mRNA were similar in two groups. None of these parameters changed significantly 12 months after treatment. CS is associated with increased expression levels of skin COL1A2, COL2A1, COL3A1 mRNAs (which are correlated with increased expression level of skin GH mRNA). Decreased skin HAS may cause decreased synthesis of HA that contributes to thinning of skin in CS. Increased local inflammatory cytokine and HSD11B1 mRNAs may be related to the acne formation in CS. Treatment of CS was not able to reverse these changes and ongoing changes were detected after treatment."	"Effect of amino acids on IGF1 gene expression in human myotubes and skeletal muscle. Insulin-like growth factor I (IGF1) is an important regulator of collagen and extracellular matrix protein expression. We aimed to evaluate the effect of amino acids (AAs) on expression of IGF1 and IGF1-dependent genes in human myotubes and skeletal muscle and supposed that AAs administration increases IGF1 levels in blood and expression of IGF1 and IGF1-dependent genes in trained skeletal muscle, thereby reducing training-induced muscle damage. Human myotubes were incubated with Arg and Leu for 24 h. Then, the effects of long-term branched chain AAs administration (10 weeks, 0.1 g/kg body mass/day) to volunteers (six subjects per AAs and placebo groups) performing large training volumes regularly (cross country skiers, training twice a day) were examined. Incubating the myotubes with AAs increases expression of IGF1 mRNA isoforms and IGF1 secretion by 2-3 times. In athletes, long-term AAs administration increased basal blood levels of IGF1 (~50%) and expression of IGF1Ea mRNA slightly in skeletal muscle. There is no marked increase in expression of COL1A1, COL3A1, COL5A1, and LOX genes in skeletal muscle after AAs administration. However, expression of these genes in the combined group (placebo + AAs; n = 12) significantly correlated with the expression of IGF1Ea mRNA in muscle and did not correlate with IGF1 levels in the blood. AAs administration increases IGF1 expression in vitro and in vivo. To obtain more pronounced changes in expression of IGF1 and IGF1-dependent genes in skeletal muscle, it may be necessary to increase the dose and/or duration of AAs administration."	"Deletion of fibroblast activation protein provides atheroprotection. Fibroblast activation protein (FAP) is upregulated at sites of tissue remodelling including chronic arthritis, solid tumours, and fibrotic hearts. It has also been associated with human coronary atherosclerotic plaques. Yet, the causal role of FAP in atherosclerosis remains unknown. To investigate the cause-effect relationship of endogenous FAP in atherogenesis, we assessed the effects of constitutive Fap deletion on plaque formation in atherosclerosis-prone apolipoprotein E (Apoe) or low-density lipoprotein receptor (Ldlr) knockout mice. Using en face analyses of thoraco-abdominal aortae and aortic sinus cross-sections, we demonstrate that Fap deficiency decreased plaque formation in two atherosclerotic mouse models (-46% in Apoe and -34% in Ldlr knockout mice). As a surrogate of plaque vulnerability fibrous cap thickness was used; it was increased in Fap-deficient mice, whereas Sirius red staining demonstrated that total collagen content remained unchanged. Using polarized light, atherosclerotic lesions from Fap-deficient mice displayed increased FAP targets in terms of enhanced collagen birefringence in plaques and increased pre-COL3A1 expression in aortic lysates. Analyses of the Stockholm Atherosclerosis Gene Expression (STAGE) data revealed that FAP expression was increased in human atherosclerotic compared to non-atherosclerotic arteries. Our data provide causal evidence that constitutive Fap deletion decreases progression of experimental atherosclerosis and increases features of plaque stability with decreased collagen breakdown. Thus, inhibition of FAP expression or activity may not only represent a promising therapeutic target in atherosclerosis but appears safe at the experimental level for FAP-targeted cancer therapies. Fibroblast activation protein (FAP) is upregulated at sites of chronic tissue remodelling including rheumatoid arthritis and solid tumours. Indeed, depletion of FAP-positive cells inhibits tumour growth by increasing antitumour immunity. FAP has also been correlated with human coronary plaques, whereby its causal role remains unknown. Our data provide causal evidence that constitutive Fap deletion decreases progression of experimental atherosclerosis and increases features of plaque stability. Thus, inhibition of FAP expression or activity may not only represent a novel therapeutic target for atherosclerosis but appears safe - at the experimental level - for FAP-targeted cancer therapies."	"Key Genes Associated with Prognosis and Tumor Infiltrating Immune Cells in Gastric Cancer Patients Identified by Cross-Database Analysis.  Background:  The molecular mechanisms underlying gastric cancer (GC) progression are unclear. The authors examined key genes associated with the prognosis and tumor-infiltrating immune cells in patients with GC.  Materials and Methods:  Gene expression omnibus (GEO) was used to filter and obtain GC-related differentially expressed genes (DEGs). The molecular functions, biological processes, and cellular components of the DEGs were subjected to enrichment analysis. Protein-protein interaction networks of proteins encoded by the DEGs were analyzed using STRING. The authors also identified hub genes of GC, as well as their expression levels in GC and their relationship with patient prognosis. The relationship between hub genes and tumor-infiltrating immune cells was analyzed by Tumor IMmune Estimation Resource.  Results:  Six GEO datasets were included in this study, and 265 DEGs were identified. These DEGs were enriched in different signaling pathways and had different biological functions. Six hub genes were potentially significantly related to the molecular mechanisms of GC (TOP2A, FN1, SPARC, COL3A1, COL1A1, and TIMP1). These genes are potential markers of prognosis. Five hub genes were significantly positively correlated with the number of macrophages, neutrophils, and dendritic cells.  Conclusions:  The authors provide a theoretical basis for exploring the molecular regulation mechanism underlying GC and identifying therapeutic targets."	"Extracellular matrix-related genes play an important role in the progression of NMIBC to MIBC: a bioinformatics analysis study. Bladder cancer is the 11th most common cancer in the world. Bladder cancer can be roughly divided into muscle invasive bladder cancer (MIBC) and non-muscle invasive bladder cancer (NMIBC). The aim of the present study was to identify the key genes and pathways associated with the progression of NMIBC to MIBC and to further analyze its molecular mechanism and prognostic significance. We analyzed microarray data of NMIBC and MIBC gene expression datasets (GSE31684) listed in the Gene Expression Omnibus (GEO) database. After the dataset was analyzed using R software, differentially expressed genes (DEGs) of NMIBC and MIBC were identified. These DEGs were analyzed using Gene Ontology (GO) enrichment, KOBAS-Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis, and protein-protein interaction (PPI) analysis. The effect of these hub genes on the survival of bladder cancer patients was analyzed in The Cancer Genome Atlas (TCGA) database. A total of 389 DEGs were obtained, of which 270 were up-regulated and 119 down-regulated. GO and KEGG pathway enrichment analysis revealed that DEGs were mainly involved in the pathway of protein digestion and absorption, extracellular matrix (ECM) receiver interaction, phantom, toll-like receptor (TLR) signaling pathway, focal adhesion, NF-κB signaling pathway, PI3K/Akt signaling pathway, and other signaling pathways. Top five hub genes COL1A2, COL3A1, COL5A1, POSTN, and COL12A1 may be involved in the development of MIBC. These results may provide us with a further understanding of the occurrence and development of MIBC, as well as new targets for the diagnosis and treatment of MIBC in the future."	"Gene expression in human liver fibrosis associated with Echinococcus granulosus sensu lato. Liver fibrosis is a dynamic process that occurs in response to chronic liver disease resulting from factors such as chronic infections, autoimmune reactions, allergic responses, toxins, radiation, and infectious agents. Among the infectious agents, multicellular parasites cause chronic inflammation and fibrosis. Twenty-five patients with different stages of cystic echinococcosis (CE) were enrolled in the study. The expression of ACTA2, COL3A1, IFN-γ, MMP2, MMP9, TGF-β1, and TNF-α genes was determined by qRT-PCR in healthy and fibrotic liver tissue of the CE patients. TGF-β1 expression was evaluated by immunohistochemistry, and histology was conducted to assess the development of liver fibrosis. Expression of MMP9, ACTA2, COL3A1, and MMP2 was found significantly higher in the fibrotic tissue compared to healthy tissue. We observed a significant correlation between TGF-β1 and TNF-α gene expressions and liver fibrosis. The mRNA level of IFN-γ was lower in the fibrotic than in the healthy hepatic tissue. Immunohistochemistry analysis revealed TGF-β1 upregulation in the fibrotic tissue. Histology showed inflammation and fibrosis to be significantly higher in the fibrotic tissue. The findings of this study suggest that Echinococcus granulosussensu lato can promotes fibrosis through the overexpression of TGF-β1, MMP9, ACTA2, COL3A1, and MMP2. The downregulation of IFN-γ mRNA in fibrotic samples is probably due to the increased production of TGF-β1 and the suppression of potential anti-fibrotic role of IFN-γ during advanced liver injury caused by E. granulosussensu lato."	"Laryngotracheal Mucosal Surface Expression of Candidate Biomarkers in Idiopathic Subglottic Stenosis. Idiopathic subglottic stenosis (iSGS) is an inflammatory process leading to fibrosis and narrowing of the laryngotracheal airway. There is variability in patient response to surgical intervention, but the mechanisms underlying this variability are unknown. In this pilot study, we measure expression of candidate targets at the mucosal surface of the subglottis in iSGS patients. We aim to identify putative biomarkers for iSGS that provide insights into the molecular basis of disease progression, yield a gene signature for the disease, and/or predict a response to therapy. In vitro comparative study of human cells. Levels of candidate transcripts and proteins were measured in healthy and stenotic laryngotracheal tissue specimens taken from the mucosal surface in 16 iSGS patients undergoing endoscopic balloon dilation. Pre- and post-operative pulmonary function test and patient reported voice and breathing outcomes were also assessed. Unsupervised clustering was used to define patient subgroups based on expression profile. Pulmonary function and voice and breathing outcome metrics demonstrated significant post-operative improvement. Transcript levels of αSMA, CCL2, COL1A1, COL3A1, FN1, IFNG, and TGFB1 and protein levels of CCL2, IFNG, and IL-6 were significantly upregulated in stenotic as compared to healthy tissues. Marked heterogeneity was observed in the patterns of expression of candidate markers across individuals and tissue types. Patient subgroups defined by expression profile did not show a statistically significant difference in dilation interval. Pro-inflammatory and pro-fibrotic pathways are significantly upregulated along the mucosal surface of stenotic laryngotracheal tissues, and CCL2 and IFNG merit further investigation as potential iSGS biomarkers. 4 Laryngoscope, 2020."	"Integrated bioinformatics analysis of expression and gene regulation network of COL12A1 in colorectal cancer. The extracellular matrix (ECM) is reported to be involved in tumorigenesis and progression. Collagen IIX is a major ECM protein. Abnormal COL12A1 expression is associated with carcinogenesis of colorectal cancer (CRC), but its clinical value and function have not yet been analyzed. Expression, methylation, and survival were analyzed by using Oncomine, UNCLA, and GEPIA, while COL12A1 alterations and related functional networks were identified using cBioPortal. The gene ontology (GO) and Kyoto Encyclopedia of Genes and Genomes pathways(KEGG)of COL12A1 in CRC were explored using LinkOmics. Gene set enrichment analysis (GSEA) examined target networks of kinases, miRNAs, and transcription factors. We found that COL12A1 was overexpressed in CRC and the COL12A1 gene was often amplified in CRC. Survival analysis revealed that patients with higher COL12A1 expression had a poor prognosis. Expression of COL12A1 was linked to functional networks via regulating pathways involving focal adhesion, PI3K-Akt signaling pathway, and ECM-receptor interaction. Functional network analysis suggested that COL12A1 regulated integrin binding, collage binding, and extracellular matrix structural constituent via pathways involving some several cancer-related kinases, miRNAs, and transcription factor. Furthermore, other FACITs genes (COL1A2, COL3A1, COL5A1, COL5A2, and COL6A3) for ECM in correlation with COL12A1 were identified to be related with the prognosis in CRC. These results suggested that the distinct fibril-associated collagens with interrupted triple helices (FACITs) genes may serve as prognostic and therapeutic biomarkers of CRC in the future."	"The Mechanism of miR-222 Targets Matrix Metalloproteinase 1 in Regulating Fibroblast Proliferation in Hypertrophic Scars. This study aimed to investigate the value of miR-222 in hypertrophic scars (HS). Specific mechanisms were used to measure the level of miR-222, while MTT assay, flow cytometry, western blot and qRT-PCR were employed to detect the relative proteins after fibroblasts were transfected with the miR-222 mimic/inhibitor. The direct target of miR-222 was determined by Dual-Luciferase Reporter assay. Furthermore, qRT-PCR and western blot were employed to detect the matrix metalloproteinase 1 (MMP1) RNA/protein after fibroblasts were transfected with the miR-222 mimic/inhibitor. These results revealed that miR-222 was significantly upregulated in HS fibroblasts. The overexpression of miR-222 enhanced the HS fibroblast proliferation, increased the cell population in the S phase, inhibited the cell apoptosis, enhanced the expression levels of Col1A1, Col3A1 mRNA/protein, proliferating cell nuclear antigen (PCNA), cyclin D1, cyclin E1 and CDK1 and reduced the expression levels of cleaved caspase-3/9. However, the miR-222 suppression triggered opposite effects. Furthermore, miR-222 played a regulatory role in HS by negatively regulating its target gene MMP1 by binding with its 3'-untranslated region. The overexpression of MMP1 reduced the expression levels of PCNA and cyclin D1, but enhanced the expression levels of cleaved caspase-3. Therefore, MiR-222 and MMP1 have potential value for HS. NO LEVEL ASSIGNED: This journal requires that authors assign a level of evidence to each article. For a full description of these Evidence-Based Medicine ratings, please refer to the Table of Contents or the online Instructions to Authors www.springer.com/00266."	"The Impact of Genistein Supplementation on Tendon Functional Properties and Gene Expression in Estrogen-Deficient Rats. Tendinopathy risk increases with menopause. The phytoestrogen genistein prevents collagen loss during estrogen deficiency (ovariectomy [OVX]). The influence of genistein on tendon function and extracellular matrix (ECM) regulation is not well known. We determined the impact of genistein on tendon function and the expression of several genes important for the regulation of tendon ECM. Eight-week-old rats (n = 42) were divided into three groups: intact, OVX, or OVX-genistein (6 mg/kg/day) for 6 weeks. Tail fascicles were assessed with a Deben tensile stage. Achilles tendon mRNA expression was determined with digital droplet polymerase chain reaction. Compared to intact, fascicle stress tended to be lower in untreated OVX rats (P = .022). Furthermore, fascicle modulus and energy density were greater in genistein-treated rats (P &lt; .05) compared to intact. Neither OVX nor genistein altered expression of Col1a1, Col3a1, Casp3, Casp8, Mmp1a, Mmp2, or Mmp9 (P &gt; .05). Compared to intact, Tnmd and Esr1 expression were greater and Pcna and Timp1 expression were lower in OVX rats (P &lt; .05). Genistein treatment returned Tnmd, Pcna, and Timp1 to levels of intact-vehicle (P &lt; .05), but did not alter Scx or Esr1 (P &gt; .05). Several β-catenin/Wnt signaling-related molecules were not altered by OVX or genistein (P &gt; .05). Our findings demonstrate that genistein improves tendon function in estrogen-deficient rats. The effect of genistein in vivo was predominately on genes related to cell proliferation rather than collagen remodeling."	"Analysis of the Interaction Network of Hub miRNAs-Hub Genes, Being Involved in Idiopathic Pulmonary Fibers and Its Emerging Role in Non-small Cell Lung Cancer. Idiopathic pulmonary fibrosis (IPF) is a fibrotic interstitial lung disease with lesions confined to the lungs. To identify meaningful microRNA (miRNA) and gene modules related to the IPF progression, GSE32537 (RNA-sequencing data) and GSE32538 (miRNA-sequencing data) were downloaded and processed, and then weighted gene co-expression network analysis (WGCNA) was applied to construct gene co-expression networks and miRNA co-expression networks. GSE10667, GSE70866, and GSE27430 were used to make a reasonable validation for the results and evaluate the clinical significance of the genes and the miRNAs. Six hub genes (COL3A1, COL1A2, OGN, COL15A1, ASPN, and MXRA5) and seven hub miRNAs (hsa-let-7b-5p, hsa-miR-26a-5p, hsa-miR-25-3p, hsa-miR-29c-3p, hsa-let-7c-5p, hsa-miR-29b-3p, and hsa-miR-26b-5p) were clarified and validated. Meanwhile, iteration network of hub miRNAs-hub genes was constructed, and the emerging role of the network being involved in non-small cell lung cancer (NSCLC) was also analyzed by several webtools. The expression levels of hub genes were different between normal lung tissues and NSCLC tissues. Six genes (COL3A1, COL1A2, OGN, COL15A1, ASPN, and MXRA5) and three miRNAs (hsa-miR-29c-3p, hsa-let-7c-5p, and hsa-miR-29b-3p) were related to the survival time of lung adenocarcinoma (LUAD). The interaction network of hub miRNAs-hub genes might provide common mechanisms involving in IPF and NSCLC. More importantly, useful clues were provided for clinical treatment of both diseases based on novel molecular advances."	"Three-week joint immobilization increases anterior-posterior laxity without alterations in mechanical properties of the anterior cruciate ligament in the rat knee. Although knee immobilization may deteriorate the mechanical parameters of the anterior cruciate ligament, such as stiffness and failure strength, it is unknown whether it induces laxity in the whole joint. We examined the effects of immobilization on anterior-posterior joint laxity and mechanical properties of the anterior cruciate ligament, as well as histological and gene expression profiles of the joint capsule in rat knee joints. Unilateral rat knees were immobilized using an external fixator. Non-immobilized contralateral knees were used as controls. After 3 weeks, anterior-posterior laxity in the whole joint (i.e., a complex of bones, ligaments, and capsule) and stiffness and failure strength in the anterior cruciate ligament were examined using a universal testing machine. Moreover, the knee joint capsule was histologically analyzed, and the expression levels of genes related to collagen turnover in the posterior joint capsule were examined. Joint immobilization slightly but significantly increased anterior-posterior laxity compared with the contralateral side. Unexpectedly, the stiffness and failure strength of the anterior cruciate ligament were not altered by immobilization. There was no correlation found between anterior cruciate ligament stiffness and anterior-posterior joint laxity. In the posterior joint capsule, thinning of the collagen fiber bundles accompanied by a decrease in COL3A1 gene expression was observed after immobilization. These results suggest that 3 weeks of joint immobilization alters the biomechanical integrity in the knee joint without altering the mechanical properties of the anterior cruciate ligament. Changes in the joint capsule may contribute to the immobilization-induced increase in anterior-posterior laxity."	"Effect of Cyclosporine A on Dermal Fibroblast Cell - Transcriptomic Analysis of Inflammatory Response Pathway. The first immunosuppressive drug - cyclosporine A (CsA) has many unquestioned merits in maintaining organ transplants in patients, as well as, in the treatment of many inflammatory diseases, associated also with cutaneous manifestations. The main task of this drug is to suppress the inflammatory response at the sites of action, which is not well known. The objective of this study was to evaluate the influence of CsA in therapeutic concentration on the expression of genes associated with the inflammatory response pathway in normal human dermal fibroblasts (NHDF; CC-2511) and this study attempted to determine the mechanism of its action. The cytotoxicity MTT test was performed. The expression of the inflammatory response pathway genes was determined using HG-U133A_2.0 oligonucleotide microarrays. Statistical analysis was performed by GeneSpring 13.0 software using the PL-Grid platform. Among the 5,300 mRNA only 573 were changed significantly in response to CsA compared to the control fibroblasts (P≤0.05). CsA inhibited the expression of most genes associated with inflammatory response in NHDFs. There were only 19 genes with a fold change (FC) lower than -2.0, among which EGR1, FOS, PBK, CDK1 and TOP2A had the lowest expression, as did CXCL2 which can directly impact inflammation. Furthermore, ZNF451 was strongly induced, and COL1A1, COL3A1, IL33, TNFRSFs were weakly upregulated (FC lower than 2.0). The CsA in therapeutic concentration influence the genes linked to inflammatory response (in the transcriptional level) in human dermal fibroblasts. The findings suggest that the potential mechanism of CsA action in this concentration and on these genes can be associated with a profibrotic and proapoptotic, and genotoxic effects."	"The Significance of MicroRNAs Expression in Regulation of Extracellular Matrix and Other Drug Resistant Genes in Drug Resistant Ovarian Cancer Cell Lines. Ovarian cancer rates the highest mortality among all gynecological malignancies. The main reason for high mortality is the development of drug resistance. It can be related to increased expression of drug transporters and increased expression of extracellular matrix (ECM) proteins. Our foremost aim was to exhibit alterations in the miRNA expression levels in cisplatin (CIS), paclitaxel (PAC), doxorubicin (DOX), and topotecan (TOP)-resistant variants of the W1 sensitive ovarian cancer cell line-using miRNA microarray. The second goal was to identify miRNAs responsible for the regulation of drug-resistant genes. According to our observation, alterations in the expression of 40 miRNAs were present. We could observe that, in at least one drug-resistant cell line, the expression of 21 miRNAs was upregulated and that of 19 miRNAs was downregulated. We identified target genes for 22 miRNAs. Target analysis showed that miRNA regulates key genes responsible for drug resistance. Among others, we observed regulation of the ATP-binding cassette subfamily B member 1 gene (ABCB1) in the paclitaxel-resistant cell line by miR-363 and regulation of the collagen type III alpha 1 chain gene (COL3A1) in the topotekan-resistant cell line by miR-29a."	"Interleukin-34 Stimulates Gut Fibroblasts to Produce Collagen Synthesis. The mechanisms underlying the formation of intestinal fibrostrictures (FS) in Crohn's disease (CD) are not fully understood, but activation of fibroblasts and excessive collagen deposition are supposed to contribute to the development of FS. Here we investigated whether interleukine-34 (IL-34), that is over-produced in CD, regulates collagen production by gut fibroblasts. IL-34 and its receptor macrophage colony-stimulating factor receptor 1 (M-CSFR-1) were evaluated in inflammatory (I), FS CD, and control (CTR) ileal mucosal samples by real-time PCR, western blotting and immunohistochemistry.IL-34 and M-CSFR-1 expression was evaluated in normal and FS CD fibroblasts. Control fibroblasts were stimulated with IL-34 in the presence or absence of a MAP kinase p38 inhibitor while FS CD fibroblasts were cultured with a specific IL-34 antisense oligonucleotide and collagen production was evaluated by real time, western blotting and Sircol assay. The effect of IL-34 on the wound-healing capacity of fibroblasts was evaluated by scratch test. We showed enhanced M-CSFR-1 and IL-34 RNA and protein expression in FS CD mucosal samples as compared to ICD and CTR samples. Immunohistochemical analysis showed that stromal cells were positive for M-CSFR-1 and IL-34. Enhanced M-CSFR-1 and IL-34 RNA and protein expression was seen in FS CD fibroblasts as compared to CTR. Stimulation of control fibroblasts with IL-34 enhanced COL1A1 and COL3A1 expression, secretion of collagen through a p38 MAP kinase-dependent mechanism and wound healing. IL-34 knockdown in FS CD fibroblasts associated with reduced collagen production and wound repair. Data indicate a prominent role of IL-34 in the control of intestinal fibrogenesis."	"Cell type-specific transcriptomics of esophageal adenocarcinoma as a scalable alternative for single cell transcriptomics. Single-cell transcriptomics have revolutionized our understanding of the cell composition of tumors and allowed us to identify new subtypes of cells. Despite rapid technological advancements, single-cell analysis remains resource-intense hampering the scalability that is required to profile a sufficient number of samples for clinical associations. Therefore, more scalable approaches are needed to understand the contribution of individual cell types to the development and treatment response of solid tumors such as esophageal adenocarcinoma where comprehensive genomic studies have only led to a small number of targeted therapies. Due to the limited treatment options and late diagnosis, esophageal adenocarcinoma has a poor prognosis. Understanding the interaction between and dysfunction of individual cell populations provides an opportunity for the development of new interventions. In an attempt to address the technological and clinical needs, we developed a protocol for the separation of esophageal carcinoma tissue into leukocytes (CD45+), epithelial cells (EpCAM+), and fibroblasts (two out of PDGFRα, CD90, anti-fibroblast) by fluorescence-activated cell sorting and subsequent RNA sequencing. We confirm successful separation of the three cell populations by mapping their transcriptomic profiles to reference cell lineage expression data. Gene-level analysis further supports the isolation of individual cell populations with high expression of CD3, CD4, CD8, CD19, and CD20 for leukocytes, CDH1 and MUC1 for epithelial cells, and FAP, SMA, COL1A1, and COL3A1 for fibroblasts. As a proof of concept, we profiled tumor samples of nine patients and explored expression differences in the three cell populations between tumor and normal tissue. Interestingly, we found that angiogenesis-related genes were upregulated in fibroblasts isolated from tumors compared with normal tissue. Overall, we suggest our protocol as a complementary and more scalable approach compared with single-cell RNA sequencing to investigate associations between clinical parameters and transcriptomic alterations of specific cell populations in esophageal adenocarcinoma."	"Epistasis of polymorphisms related to the articular cartilage extracellular matrix in knee osteoarthritis: Analysis-based multifactor dimensionality reduction. Osteoarthritis (OA) is a complex disease with a multifactorial etiology. The genetic component is one of the main associated factors, resulting from interactions between genes and environmental factors. The aim of this study was to identify gene-gene interactions (epistasis) of the articular cartilage extracellular matrix (ECM) in knee OA. Ninety-two knee OA patients and 147 healthy individuals were included. Participants were genotyped in order to evaluate nine variants of eight genes associated with ECM metabolism using the OpenArray technology. Epistasis was analyzed using the multifactor dimensionality reduction (MDR) method. The MDR analysis showed significant gene-gene interactions between MMP3 (rs679620) and COL3A1 (rs1800255), and between COL3A1 (rs1800255) and VEGFA (rs699947) polymorphisms, with information gain values of 3.21% and 2.34%, respectively. Furthermore, in our study we found interactions in high-risk genotypes of the HIF1AN, MMP3 and COL3A1 genes; the most representative were [AA+CC+GA], [AA+CT+GA] and [AA+CT+GG], respectively; and low-risk genotypes [AA+CC+GG], [GG+TT+GA] and [AA+TT+GA], respectively. Knowing the interactions of these polymorphisms involved in articular cartilage ECM metabolism could provide a new tool to identify individuals at high risk of developing knee OA."	"Mesenchymal folliculin is required for alveolar development: implications for cystic lung disease in Birt-Hogg-Dubé syndrome. Pulmonary cysts and spontaneous pneumothorax are presented in most patients with Birt-Hogg-Dubé (BHD) syndrome, which is caused by loss of function mutations in the folliculin (FLCN) gene. The pathogenic mechanisms underlying the cystic lung disease in BHD are poorly understood. Mesenchymal Flcn was specifically deleted in mice or in cultured lung mesenchymal progenitor cells using a Cre/loxP approach. Dynamic changes in lung structure, cellular and molecular phenotypes and signalling were measured by histology, immunofluorescence staining and immunoblotting. Deletion of Flcn in mesoderm-derived mesenchymal cells results in significant reduction of postnatal alveolar growth and subsequent alveolar destruction, leading to cystic lesions. Cell proliferation and alveolar myofibroblast differentiation are inhibited in the Flcn knockout lungs, and expression of the extracellular matrix proteins Col3a1 and elastin are downregulated. Signalling pathways including mTORC1, AMP-activated protein kinase, ERK1/2 and Wnt-β-catenin are differentially affected at different developmental stages. All the above changes have statistical significance (p&lt;0.05). Mesenchymal Flcn is an essential regulator during alveolar development and maintenance, through multiple cellular and molecular mechanisms. The mesenchymal Flcn knockout mouse model provides the first in vivo disease model that may recapitulate the stages of cyst development in human BHD. These findings elucidate the developmental origins and mechanisms of lung disease in BHD."	"Aortic progression and reintervention in patients with pathogenic variants after a thoracic aortic dissection. To evaluate aortic disease progression and reintervention after an initial thoracic aortic dissection in pathogenic variant carriers. Of 175 participants diagnosed with thoracic aortic dissection, 31 had a pathogenic variant (pathogenic group) across 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, TGFBR2) identified by whole exome sequencing. Those with benign or normal variants (benign/normal group, n = 144) comprised the control group. Clinical data were collected through medical record review (1985-2018) and supplemented with the National Death Index database (December 2018). The entire cohort (n = 175) consisted of 108 type A aortic dissections and 67 type B aortic dissections, similarly distributed between groups. The pathogenic group was significantly younger (43 vs 56 years, P &lt; .0001) and had significantly more aortic root replacements and similar extents of arch replacement at initial type A aortic dissection repair. The median follow-up time was 7.5 (4.6-12) years. After initial treatment, the pathogenic group required significantly more aortic reinterventions (median 1 vs 0, P &lt; .0001) and mean cumulative aortic reinterventions for each patient (10 years: 1 vs 0.5, P = .029). Both incidence rate (12%/year vs 1.2%/year, P = .0001) and cumulative incidence of reinterventions (9 years: 70% vs 6%, P &lt; .0001) for the preserved native aortic root were significantly higher in the pathogenic group, but were similar for the preserved native aortic arch and distal aorta between groups. Ten-year survival was similar in the pathogenic and benign/normal groups (92% vs 85%). Aggressive aortic root replacement and similar arch management should be considered in pathogenic variant carriers at initial type A aortic dissection repair compared with benign/normal variant carriers."	"T-Cell Proapoptotic and Antifibrotic Activity Against Autologous Skin Fibroblasts in vitro Is Associated With IL-17A Axis Upregulation in Systemic Sclerosis. Background: Systemic sclerosis (SSc) T cells can induce apoptosis of autologous skin fibroblasts in vitro. Th17 cells have been reported to increase in SSc patients, and interleukin-17A (IL-17A) has a profibrotic function. We used a system based on T-cell-autologous fibroblast co-cultures to further investigate a possible role of IL-17A in SSc. Methods: T cells from diffuse SSc patients were co-cultured with autologous skin fibroblasts. IL17A mRNA was assessed by real-time PCR in co-cultured and control T cells, while IL17RA, CXCL1, CCL2, CCL3, COL1A1, COL3A1, CTGF, TGFBR2, and SMAD3 mRNAs were assessed in co-cultured and control fibroblasts. In subset experiments, co-cultures and control cells were treated with either IL-17A or IL-17A plus anti-IL17 receptor monoclonal antibody (α-IL-17RA mAb). Chemokine and procollagen type I (PCI) production was further investigated at the protein level in cell culture supernatants by multiple suspension immunoassay and sandwich ELISA, respectively. Co-cultured and control fibroblasts were also stained with Annexin V and analyzed by flow cytometry. Results: T cell-fibroblast co-cultures overexpressed IL17A and IL17RA. Furthermore, co-cultured fibroblasts upregulated IL-17A targets CXCL1, CCL2, and CCL3, while COL1A1, COL3A1, CTGF, and two key effectors of the TGF-β signaling, TGFBR2 and SMAD3, were found downregulated. Consistently, chemokine concentrations were increased in co-culture supernatants, while PCI levels were reduced, especially after stimulation with ectopic IL-17A. Finally, simultaneous α-IL-17RA mAb treatment restored PCI levels and reduced fibroblast apoptosis in IL-17A-stimulated co-cultures. Conclusion: These data suggest that IL-17A upregulation might play a role in modulating T cell-mediated antifibrotic and proapoptotic effects in co-cultured autologous skin fibroblasts."	"l-Arginine prevents inflammatory and pro-calcific differentiation of interstitial aortic valve cells. Reduced bioavailability of nitric oxide (NO) has been implicated in the pathogenesis of calcific aortic stenosis. Herein, we investigated the effects of l-Arginine, the main precursor of NO, on the osteogenic differentiation of aortic interstitial valve cells (VICs). We isolated a clonal population of bovine VICs that expresses osteogenic markers and induces calcification of collagen matrix after stimulation with endotoxin (LPS 500 ng/mL). VICs were treated in vitro with different combinations of LPS ± l-Arginine (50 or 100 mM) and cell extracts were collected to perform proteomic (iTRAQ) and gene expression (RT-PCR) analysis. l-Arginine prevents the over-expression of alkaline phosphatase (ALP, p &lt; 0.001) and reduces matrix calcification (p &lt; 0.05) in VICs treated with LPS. l-Arginine also reduces the over-expression of inflammatory molecules induced by LPS (TNF-alpha, IL-6 and IL-1beta, p &lt; 0.001). The proteomic analysis allowed to identify 49 proteins with an altered expression profile after stimulation with LPS and significantly modified by l-Arginine. These include proteins involved in the redox homeostasis of the cells (i.e. Xanthine Oxidase, Catalase, Aldehyde Oxidase), remodeling of the extracellular matrix (i.e. ADAMTSL4, Basigin, COL3A1) and cellular signaling (i.e. Fibrillin-1, Legumain, S100A13). The RT-PCR analysis confirmed the modifications of Fibrillin-1, ADAMTSL4, Basigin and Xanthine Oxidase, whose expression levels increase after stimulation with LPS and are reduced by l-Arginine (p &lt; 0.05). l-Arginine prevents osteogenic differentiation of VICs and reduces matrix calcification. This effect is achieved through the modulation of proteins involved in the cellular redox system, remodeling of extracellular matrix and inflammatory activation of VICs."	"Extracellular vesicle-mediated crosstalk between NPCE cells and TM cells result in modulation of Wnt signalling pathway and ECM remodelling. Primary open-angle glaucoma is a leading cause of irreversible blindness, often associated with increased intraocular pressure. Extracellular vesicles (EVs) carry a specific composition of proteins, lipids and nucleotides have been considered as essential mediators of cell-cell communication. Their potential impact for crosstalk between tissues responsible for aqueous humour production and out-flow is largely unknown. The study objective was to investigate the effects of EVs derived from non-pigmented ciliary epithelium (NPCE) primary cells on the expression of Wnt proteins in a human primary trabecular meshwork (TM) cells and define the mechanism underlying exosome-mediated regulation that signalling pathway. Consistent with the results in TM cell line, EVs released by both primary NPCE cells and NPCE cell line showed diminished pGSK3β phosphorylation and decreased cytosolic levels of β-catenin in primary TM cells. At the molecular level, we showed that NPCE exosome treatment downregulated the expression of positive GSKβ regulator-AKT protein but increased the levels of GSKβ negative regulator-PP2A protein in TM cells. NPCE exosome protein analysis revealed 584 miRNAs and 182 proteins involved in the regulation of TM cellular processes, including WNT/β-catenin signalling pathway, cell adhesion and extracellular matrix deposition. We found that negative modulator of Wnt signalling miR-29b was abundant in NPCE exosomal samples and treatment of TM cells with NPCE EVs significantly decreased COL3A1 expression. Suggesting that miR-29b can be responsible for decreased levels of WNT/β-catenin pathway. Overall, this study highlights a potential role of EVs derived from NPCE cells in modulating ECM proteins and TM canonical Wnt signalling."	"Inhibition of Interleukin-6/glycoprotein 130 signalling by Bazedoxifene ameliorates cardiac remodelling in pressure overload mice. The role of IL-6 signalling in hypertensive heart disease and its sequelae is controversial. Our group demonstrated that Bazedoxifene suppressed IL-6/gp130 signalling in cancer cells but its effect on myocardial pathology induced by pressure overload is still unknown. We explored whether Bazedoxifene could confer benefits in wild-type C57BL/6J mice suffering from transverse aortic constriction (TAC) and the potential mechanisms in H9c2 myoblasts. Mice were randomized into three groups (Sham, TAC, TAC+Bazedoxifene, n = 10). Morphological and histological observations suggested TAC aggravated myocardial remodelling while long-term intake of Bazedoxifene (5 mg/kg, intragastric) attenuated pressure overload-induced pathology. Echocardiographic results indicated Bazedoxifene rescued cardiac function in part. We found Bazedoxifene decreased the mRNA expression of IL-6, MMP2, Col1A1, Col3A1 and periostin in murine hearts after 8-week surgery. By Western blot detection, we found Bazedoxifene exhibited an inhibition of STAT3 activation in mice three hours and 8 weeks after TAC. Acute TAC stress (3 hours) led to down-regulated ratio of LC3-Ⅱ/LC3-Ⅰ, while in mice after long-term (8 weeks) TAC this ratio becomes higher than that in Sham mice. Bazedoxifene inverted the autophagic alteration induced by TAC at both two time-points. In H9c2 myoblasts, Bazedoxifene suppressed the IL-6-induced STAT3 activation. Moreover, IL-6 reduced the ratio of LC3-Ⅱ/LC3-Ⅰ, promoted P62 expression but Bazedoxifene reversed both changes in H9c2 cells. Our data suggested Bazedoxifene inhibited IL-6/gp130 signalling and protected against cardiac remodelling together with function deterioration in TAC mice."	"PTH/PTHrP Receptor Signaling Restricts Arterial Fibrosis in Diabetic LDLR<sup>-/-</sup> Mice by Inhibiting Myocardin-Related Transcription Factor Relays. The PTH1R (PTH [parathyroid hormone]/PTHrP [PTH-related protein] receptor) is expressed in vascular smooth muscle (VSM) and increased VSM PTH1R signaling mitigates diet-induced arteriosclerosis in LDLR<sup>-/-</sup> mice. To study the impact of VSM PTH1R deficiency, we generated mice SM22-Cre:PTH1R(fl/fl);LDLR<sup>-/-</sup> mice (PTH1R-VKO) and Cre-negative controls. Immunofluorescence and Western blot confirmed PTH1R expression in arterial VSM that was reduced by Cre-mediated knockout. PTH1R-VKO cohorts exhibited increased aortic collagen accumulation in vivo, and VSM cultures from PTH1R-VKO mice elaborated more collagen (2.5-fold; P=0.01) with elevated Col3a1 and Col1a1 expression. To better understand these profibrotic responses, we performed mass spectrometry on nuclear proteins extracted from Cre-negative controls and PTH1R-VKO VSM. PTH1R deficiency reduced Gata6 but upregulated the MADS (MCM1, Agamous, Deficiens, and Srf DNA-binding domain)-box transcriptional co-regulator, Mkl-1 (megakaryoblastic leukemia [translocation] 1). Co-transfection assays (Col3a1 promoter-luciferase reporter) confirmed PTH1R-mediated inhibition and Mkl-1-mediated activation of Col3a1 transcription. Regulation mapped to a conserved hybrid CT(A/T)6GG MADS-box cognate in the Col3a1 promoter. Mutations of C/G in this motif markedly reduced Col3a1 transcriptional regulation by PTH1R and Mkl-1. Upregulation of Col3a1 and Col1a1 in PTH1R-VKO VSM was inhibited by small interfering RNA targeting Mkl1 and by treatment with the Mkl-1 antagonist CCG1423 or the Rock (Rho-associated coiled-coil containing protein kinase)-2 inhibitor KD025. Chromatin precipitation demonstrated that VSM PTH1R deficiency increased Mkl-1 binding to Col3a1 and Col1a1, but not TNF, promoters. Proteomic studies of plasma extracellular vesicles and VSM from PTH1R-VKO mice identified C1r (complement component 1, r) and C1s (complement component 1, s), complement proteins involved in vascular collagen metabolism, as potential biomarkers. VSM C1r protein and C1r message were increased with PTH1R deficiency, mediated by Mkl-1-dependent transcription and inhibited by CCG1423 or KD025. PTH1R signaling restricts collagen production in the VSM lineage, in part, via Mkl-1 regulatory circuits that control collagen gene transcription. Strategies that maintain homeostatic VSM PTH1R signaling, as reflected in extracellular vesicle biomarkers of VSM PTH1R/Mkl-1 action, may help mitigate arteriosclerosis and vascular fibrosis."	"Reduction of arthrofibrosis utilizing a collagen membrane drug-eluting scaffold with celecoxib and subcutaneous injections with ketotifen. The dense formation of abnormal scar tissue after total knee arthroplasty results in arthrofibrosis, an unfortunate sequela of inflammation. The purpose of this study was to use a validated rabbit model to assess the effects on surgically-induced knee joint contractures of two combined pharmacological interventions: celecoxib (CXB) loaded on an implanted collagen membrane, and subcutaneously (SQ) injected ketotifen. Thirty rabbits were randomly divided into five groups. The first group received no intervention after the index surgery. The remaining four groups underwent intra-articular implantation of collagen membranes loaded with or without CXB at the time of the index surgery; two of which were also treated with SQ ketotifen. Biomechanical joint contracture data were collected at 8, 10, 16, and 24 weeks. At the time of necropsy (24 weeks), posterior capsule tissue was collected for messenger RNA and histopathologic analyses. At 24 weeks, there was a statistically significant increase in passive extension among rabbits in all groups treated with CXB and/or ketotifen compared to those in the contracture control group. There was a statistically significant decrease in COL3A1, COL6A1, and ACTA2 gene expression in the treatment groups compared to the contracture control group (P &lt; .001). Histopathologic data also demonstrated a trend towards decreased fibrous tissue density in the CXB membrane group compared to the vehicle membrane group. The present data suggest that intra-articular placement of a treated collagen membrane blunts the severity of contracture development in a rabbit model of arthrofibrosis, and that ketotifen and CXB may independently contribute to the prevention of arthrofibrosis. Statement of clinical significance: Current literature has demonstrated that arthrofibrosis may affect up to 5% of primary total knee arthroplasty patients. For that reason, novel pharmacologic prophylaxis and treatment modalities are critical to mitigating reoperations and revisions while improving the quality of life for patients with this debilitating condition."	"Setting a research agenda for vascular Ehlers-Danlos syndrome using a patient and stakeholder engagement model. Vascular Ehlers-Danlos syndrome (vEDS) is a rare, syndromic, heritable condition with life-threatening complications that include aortic and arterial aneurysms, dissection, and rupture. This study describes the formation of the vEDS Research Collaborative and methods used for stakeholder engagement. The vEDS Research Collaborative was established with an engagement award from the Patient-Centered Outcomes Research Institute to create a framework for a patient-researcher partnership. Between October 1, 2017, and September 30, 2018, the Collaborative used the Patient-Centered Outcomes Research Institute Engagement Rubric to conduct stakeholder engagement to develop a patient-centered research agenda. A modified Delphi technique was used to develop and to refine research topics and questions, gathering input from all stakeholders during three rounds of feedback. Four topic areas were deemed important: mental health and quality of life issues, creating a care team, a holistic approach to vEDS management (medical and surgical), and pregnancy management. An online survey to rank a list of 12 research questions in these topic areas in order of importance was disseminated. The questions were ranked in order of importance through an online survey (N = 197 responses). The survey showed a high degree of alignment in the top priorities among stakeholders. There was a high degree of interest in pragmatic clinical trials evaluating medical management options and health-related quality of life outcomes. The vEDS Research Collaborative has built a sustainable, coalition model of patient and stakeholder engagement, supported by the vEDS community, to identify a patient-centered, prioritized list of research questions. In articulating a shared vision for the future of vEDS research, the Collaborative has laid the groundwork for developing research protocols aligned with the highest priority questions for the individuals affected by this serious condition that can be translated into future clinical trials."	"Radiation cystitis modeling: A comparative study of bladder fibrosis radio-sensitivity in C57BL/6, C3H, and BALB/c mice. A subset of patients receiving radiation therapy for pelvic cancer develop radiation cystitis, a complication characterized by mucosal cell death, inflammation, hematuria, and bladder fibrosis. Radiation cystitis can reduce bladder capacity, cause incontinence, and impair voiding function so severely that patients require surgical intervention. Factors influencing onset and severity of radiation cystitis are not fully known. We tested the hypothesis that genetic background is a contributing factor. We irradiated bladders of female C57BL/6, C3H, and BALB/c mice and evaluated urinary voiding function, bladder shape, histology, collagen composition, and distribution of collagen-producing cells. We found that the genetic background profoundly affects the severity of radiation-induced bladder fibrosis and urinary voiding dysfunction. C57BL/6 mice are most susceptible and C3H mice are most resistant. Irradiated C57BL/6 mouse bladders are misshapen and express more abundant collagen I and III proteins than irradiated C3H and BALB/c bladders. We localized Col1a1 and Col3a1 mRNAs to FSP1-negative stromal cells in the bladder lamina propria and detrusor. The number of collagen I and collagen III-producing cells can predict the average voided volume of a mouse. Collectively, we show that genetic factors confer sensitivity to radiation cystitis, establish C57BL/6 mice as a sensitive preclinical model, and identify a potential role for FSP1-negative stromal cells in radiation-induced bladder fibrosis."	"Global Assessment of Mendelian Stroke Genetic Prevalence in 101 635 Individuals From 7 Ethnic Groups. Background and Purpose- Mendelian stroke confers a high lifetime risk for mutation carriers; however, ethnicity-specific prevalence estimates have been difficult to establish. Methods- Eighteen genes responsible for Mendelian stroke were investigated using the Genome Aggregation Database. Genome Aggregation Database participants belonged to 1 of 7 populations: African/African-American, Latino/Admixed American, Ashkenazi Jewish, East Asian, Finnish European, non-Finnish European, and South Asian. Rare nonsynonymous variants from 101 635 participants free of neurological disease were examined for each ethnicity. Mutations were categorized according to 3 nested classes: pathogenic clinical variants, likely damaging variants based on in silico prediction, and all nonsynonymous variants. Results- ABCC6, KRIT1, CECR1, COL3A1, COL4A1, COL4A2, COLGALT1, GLA, HTRA1, NOTCH3, RNF213, and TREX1 harbored pathogenic clinical variants in Genome Aggregation Database. Across all 18 genes, total nonsynonymous carrier frequency was found to be high in 5 ethnicities (African/African-American, Latino/Admixed American, East Asian, non-Finnish European, and South Asian; 28.5%-37.5%) while lower total frequencies were estimated for in silico-predicted likely damaging variants (14.9%-19.7%) and pathogenic clinical variants (0.7%-2.8%). Overall, East Asian exhibited the highest total pathogenic clinical mutation carrier frequency (2.8%). ABCC6 pathogenic clinical variants were most prevalent among East Asian (0.8%). Pathogenic NOTCH3 variants, causal for cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy, were most frequent among East Asian (1.1%) and South Asian (1.2%). East Asian also demonstrated the highest carrier rate for RNF213 (0.8%). Finnish European exhibited the greatest HTRA1 frequency (0.2%), while COL4A1 pathogenic variants were most prevalent in African/African-American (0.3%). Conclusions- Especially, among pathogenic clinical variants, Mendelian stroke genetic prevalence differed significantly between populations. These prevalence estimates may serve as guides for screening and risk profiling in patients worldwide, particularly for understudied non-European populations."	"T-Cell-Derived miRNA-214 Mediates Perivascular Fibrosis in Hypertension. Despite increasing understanding of the prognostic importance of vascular stiffening linked to perivascular fibrosis in hypertension, the molecular and cellular regulation of this process is poorly understood. To study the functional role of microRNA-214 (miR-214) in the induction of perivascular fibrosis and endothelial dysfunction driving vascular stiffening. Out of 381 miRs screened in the perivascular tissues in response to Ang II (angiotensin II)-mediated hypertension, miR-214 showed the highest induction (8-fold, P=0.0001). MiR-214 induction was pronounced in perivascular and circulating T cells, but not in perivascular adipose tissue adipocytes. Global deletion of miR-214<sup>-</sup><sup>/-</sup> prevented Ang II-induced periaortic fibrosis, Col1a1, Col3a1, Col5a1, and Tgfb1 expression, hydroxyproline accumulation, and vascular stiffening, without difference in blood pressure. Mechanistic studies revealed that miR-214<sup>-/-</sup> mice were protected against endothelial dysfunction, oxidative stress, and increased Nox2, all of which were induced by Ang II in WT mice. Ang II-induced recruitment of T cells into perivascular adipose tissue was abolished in miR-214<sup>-/-</sup> mice. Adoptive transfer of miR-214<sup>-/-</sup> T cells into RAG1<sup>-/-</sup> mice resulted in reduced perivascular fibrosis compared with the effect of WT T cells. Ang II induced hypertension caused significant change in the expression of 1380 T cell genes in WT, but only 51 in miR-214<sup>-/-</sup>. T cell activation, proliferation and chemotaxis pathways were differentially affected. MiR-214<sup>-/-</sup> prevented Ang II-induction of profibrotic T cell cytokines (IL-17, TNF-α, IL-9, and IFN-γ) and chemokine receptors (CCR1, CCR2, CCR4, CCR5, CCR6, and CXCR3). This manifested in reduced in vitro and in vivo T cell chemotaxis resulting in attenuation of profibrotic perivascular inflammation. Translationally, we show that miR-214 is increased in plasma of patients with hypertension and is directly correlated to pulse wave velocity as a measure of vascular stiffness. T-cell-derived miR-214 controls pathological perivascular fibrosis in hypertension mediated by T cell recruitment and local profibrotic cytokine release."	"Identification of Hub Genes and Pathways in Gastric Adenocarcinoma Based on Bioinformatics Analysis. BACKGROUND Gastric adenocarcinoma accounts for 95% of all gastric malignant tumors. The purpose of this research was to identify differentially expressed genes (DEGs) of gastric adenocarcinoma by use of bioinformatics methods. MATERIAL AND METHODS The gene microarray datasets of GSE103236, GSE79973, and GSE29998 were imported from the GEO database, containing 70 gastric adenocarcinoma samples and 68 matched normal samples. Gene ontology (GO) and KEGG analysis were applied to screened DEGs; Cytoscape software was used for constructing protein-protein interaction (PPI) networks and to perform module analysis of the DEGs. UALCAN was used for prognostic analysis. RESULTS We identified 2909 upregulated DEGs (uDEGs) and 7106 downregulated DEGs (dDEGs) of gastric adenocarcinoma. The GO analysis showed uDEGs were enriched in skeletal system development, cell adhesion, and biological adhesion. KEGG pathway analysis showed uDEGs were enriched in ECM-receptor interaction, focal adhesion, and Cytokine-cytokine receptor interaction. The top 10 hub genes - COL1A1, COL3A1, COL1A2, BGN, COL5A2, THBS2, TIMP1, SPP1, PDGFRB, and COL4A1 - were distinguished from the PPI network. These 10 hub genes were shown to be significantly upregulated in gastric adenocarcinoma tissues in GEPIA. Prognostic analysis of the 10 hub genes via UALCAN showed that the upregulated expression of COL3A1, COL1A2, BGN, and THBS2 significantly reduced the survival time of gastric adenocarcinoma patients. Module analysis revealed that gastric adenocarcinoma was related to 2 pathways: including focal adhesion signaling and ECM-receptor interaction. CONCLUSIONS This research distinguished hub genes and relevant signal pathways, which contributes to our understanding of the molecular mechanisms, and could be used as diagnostic indicators and therapeutic biomarkers for gastric adenocarcinoma."	"KCNJ15 Expression and Malignant Behavior of Esophageal Squamous Cell Carcinoma. We aimed to clarify the role of potassium voltage-gated channel subfamily J member 15 (KCNJ15) in esophageal squamous cell carcinoma (ESCC) cells and its potential as a prognosticator in ESCC patients. KCNJ15 transcription levels were evaluated in 13 ESCC cell lines and polymerase chain reaction (PCR) array analysis was conducted to detect coordinately expressed genes with KCNJ15. The biological functions of KCNJ15 in cell invasion, proliferation, migration, and adhesion were validated through small interfering RNA-mediated knockdown experiments. Cell proliferation was further evaluated through the forced expression experiment. KCNJ15 expression was detected in 200 ESCC tissues by quantitative real-time reverse transcription PCR (qRT-PCR) and analyzed in 64 representative tissues by immunohistochemistry. Correlations between KCNJ15 expression levels and clinicopathological features were also analyzed. The KCNJ15 expression levels varied widely in ESCC cell lines and correlated with COL3A1, JAG1, and F11R. Knockdown of KCNJ15 expression significantly repressed cell invasion, proliferation, and migration of ESCC cells in vitro. Furthermore, overexpression of KCNJ15 resulted in increased cell proliferation. Patients were stratified using the cut-off value of KCNJ15 messenger RNA (mRNA) levels in 200 ESCC tissues using receiver operating characteristic curve analysis; the high KCNJ15 expression group had significantly shorter overall and disease-free survival times. In multivariable analysis, high expression of KCNJ15 was identified as an independent poor prognostic factor. Staining intensity of in situ KCNJ15 protein expression tended to be associated with KCNJ15 mRNA expression levels. KCNJ15 is involved in aggressive tumor phenotypes of ESCC cells and its tissue expression levels may be useful as a prognosticator of patients with ESCC."	"PolyG mitigates silica-induced pulmonary fibrosis by inhibiting nucleolin and regulating DNA damage repair pathway. Polyguanylic acid potassium salt (PolyG) has an anti-fibrotic G-quadruplex (G4) structure. It could inhibit the expression of nucleolin, a protein involved in cell proliferation and apoptosis. However, its role in regulating nucleolin in silicosis is still unknown. After instillation of 50 μl of crystalline silica suspension (50 mg/ml) into the trachea of C57BL/6 mice, we show that nucleolin expression is upregulated in mouse pulmonary tissue following the treatment with silica and that PolyG, which were injected 2.5 mg/kg body weight into mice by abdomen, could alleviate pulmonary fibrosis through inhibiting the expression of nucleolin. Further, we demonstrated that the expression of the DNA double-strand break (DSB) marker, γ-H2AX, increased in response to silica treatment. PolyG could efficiently reduce the protein expression of γ-H2AX and decreased the level of fibrosis-related genes, such as Col1a1 and Col3a1, as well as the levels of fibrosis-associated proteins α-SMA and vimentin in the lungs of silica-treated mice. These findings show that PolyG could regulate nucleolin and DNA damage repair to control fibrotic response in experimental silicosis and provide a new target for preventive intervention."	"Identifying the key genes and microRNAs in prostate cancer bone metastasis by bioinformatics analysis. Prostate adenocarcinoma (PCa) is the most common cause of death due to malignancy among men, and bone metastasis is the leading cause of mortality in patients with PCa. Therefore, identifying the causes and molecular mechanism of bone metastasis is important for early detection, diagnosis and personalized therapy. In this study, we systematically analyzed molecular correlates of bone metastasis by bioinformatics analysis. A total of 12 differentially expressed microRNAs (miRNAs) and 102 differentially expressed genes were identified. Five miRNAs had prognostic significance in biochemical recurrence-free survival (miR-636, miR-491-5p, miR-199b-5p, miR-199b-3p, miR-28-3p). The differentially expressed genes were significantly enriched in extracellular matrix, cell-substrate adhesion, collagen and integrin. Seven hub genes (VCAN, COL3A1, COL1A1, APOE, COL1A2, SDC1, THY1) with worse biochemical recurrence-free survival and one hub gene (MMP9) with worse overall survival were detected. miR-636, a novel oncogene, was found to be up-regulated in bone metastatic PCa tissues and also predominately up-regulated in human PCa cell lines. miR-636 promoted cellular invasion and migration, and may promote bone metastasis via targeting MBNL2, TNS1 and STAB1. In conclusion, we have successfully defined molecular signatures of bone metastasis in PCa."	"Autologous platelet-rich fibrin stimulates canine periodontal regeneration. Platelet-rich fibrin (PRF) provides a scaffold for cell migration and growth factors for promoting wound healing and tissue regeneration. Here, we report using PRF in periodontal healing after open flap debridement (OFD) in canine periodontitis. A split-mouth design was performed in twenty dogs. Forty periodontitis surgical sites were randomly categorized into 2 groups; OFD alone and OFD with PRF treatment. Clinical parameters of periodontal pocket depth, gingival index, and the cemento-enamel junction-alveolar bone levels/root length ratio were improved in the OFD + PRF group. The OFD + PRF group also demonstrated a dramatically decreased inflammatory score compared with the OFD group. Collagen accumulation was improved in the OFD + PRF group at later time points compared with baseline. PRF application also significantly reduced inflammatory cytokine expression (TNFA and IL1B), and promoted the expression of collagen production-related genes (COL1A1, COL3A1, and TIMP1) and growth factors (PDGFB, TGFB1, and VEGFA). These findings suggest that PRF combined with OFD provides a new strategy to enhance the overall improvement of canine periodontitis treatment outcomes, especially in terms of inflammation and soft tissue healing. Therefore, PRF use in treating periodontitis could play an important role as a regenerative material to improve canine periodontitis treatment."	"Fendrr involves in the pathogenesis of cardiac fibrosis via regulating miR-106b/SMAD3 axis. Cardiovascular diseases (CVDs) is the first cause of death worldwide, generally exhibiting a high morbidity, high disability rate and high mortality especially in the elderly persons (&gt;50 years old). Previously, extensive studies have demonstrated that cardiac fibrosis plays cardinal roles in the pathogenesis of CVDs. However, due to the unclear underlying mechanisms of cardiac fibrosis, its clinical intervention remains very lacking. Long non-coding RNAs (lncRNAs), a class of non-coding RNA but differing from microRNAs, are generally considered as transcripts with a length ranging 200 to 100 nucleotides. Recently, accumulating evidence showed that lncRNAs involve in the pathogenesis of cardiac fibrosis. Fendrr (FOXF1 adjacent non-coding developmental regulatory RNA), is a spliced long non-coding RNA transcribed bi-directionally with FOXF1 on the opposite strand. Fendrr has been demonstrated to be essential for normal development of the heart and body wall in mouse, and shows a good anti-fibrotic activity in pulmonary fibrosis. In this study, we aimed to explore the effects of Fendrr on cardiac fibrosis. Intriguingly, we first observed that lncRNA Fendrr was up-regulated in the heart tissues of transverse aortic constriction (TAC) induced cardiac fibrosis mouse models, determined by RT-QPCR. Loss-function of Fendrr significantly alleviated the cardiac fibrosis phenotypes induced by TAC, indicating that Fendrr is required for the pathogenesis of cardiac fibrosis. In mechanism, we demonstrated experimentally that Fendrr directly targeting miR-106b, by which the lncRNA promotes cardiac fibrosis (indicated by the elevation of Col1a1, Col3a1, CTGF and ACTA2 expression) in a miR-106b mediated manner. Collectively, our findings highlight the axis of Fendrr/miR-106b/Samd3 in the pathogenesis of cardiac fibrosis, which may be a promising target for clinical intervention target of cardiac fibrosis."	"Potential Salivary mRNA Biomarkers for Early Detection of Oral Cancer. We evaluated potential biomarkers in human whole saliva for the early diagnosis of oral squamous cell carcinoma (OSCC). We selected 30 candidate genes with relevance to cancer from recent reports in PubMed. Saliva samples were obtained from 34 non-tumor control and 33 OSCC patients. Real-time PCR was performed, and mRNA levels were compared. Normalized mRNA levels of six genes (NGFI-A binding protein 2 (NAB2), cytochrome P450, family 27, subfamily A, polypeptide 1 (CYP27A1), nuclear pore complex interacting protein family, member B4 (NPIPB4), monoamine oxidase B (MAOB), sialic acid acetyltransferase (SIAE), and collagen, type III, alpha 1 (COL3A1)) were significantly lower in saliva of OSCC patients. Receiver operating characteristics (ROC) analysis was used to individually evaluate the predictive power of the potential biomarkers for OSCC diagnosis. The area under the curve (AUC) values were evaluated for the OSCC vs. non-tumor groups via univariate ROC analyses, as well as multivariate ROC analyses of combinations of multiple potential biomarkers. The combination of CYP27A1 + SIAE showed a favorable AUC value of 0.84. When we divided saliva samples into two groups according to age using a 60-year cut-off, with OSCC patients and controls evaluated together, the AUC of MAOB-NAB2 was more predictive of OSCC in the under-60 group (AUC, 0.91; sensitivity, 0.92; and specificity, 0.86) than any other gene combination. These results are expected to aid the early diagnosis of OSCC, especially in patients under 60 years of age. While more studies with larger numbers of patients are necessary, our result suggest that salivary mRNA would be a potent biomarker for early OSCC diagnosis."	"A single-pulsed electromagnetic field enhances collagen synthesis in tendon cells. Tendinopathy is a progressive pathology of tendon that is characteristic of imbalance between matrix synthesis and degeneration and is often caused by failure to adapt to mechanical loading. Non-steroidal anti-inflammatory medications (NSAIDS) are used as a conventional treatment to alleviate pain and swelling in the short term, but the ideal treatment for tendinopathy remains unclear. Here, we show a single pulsed electromagnetic field (SPEMF, 0.2 Hz) that up-regulated tenogenic gene expression (Col1a1, Col3a1, Scx, Dcn) and down-regulated inflammatory gene expression (Mmp1) in vitro. After five days of SPEMF stimulation (3 min/day), the collagen type I and total collagen synthesis protein levels were significantly increased. Under pro-inflammatory cytokine (IL-1β) irritation, the decreased expression of Col1a1/Col3a1 was up-regulated by SPEMF treatment, and the increased expression of Mmp1 was also reversed. From the above, it can be inferred that SPEMF that enhances matrix synthesis and reduces matrix degeneration may counteract the imbalance in tendinopathy. SPEMF application may be developed as a potential future strategy for therapeutic intervention in tendon disorders."	"The ameliorating effect of carotenoid rich fraction extracted from Dunaliella salina microalga against inflammation- associated cardiac dysfunction in obese rats. The carotenoid rich fraction of microalgae Dunaliella salina (crf-DS) have been receiving great attention, due to they abilities to protect and improve various disorders. The objective of this study is to explore the therapeutic efficiency of crf-DS on obesity-assciated cardiac dysfunction in the high-fat diet (HFD) treated rats. These rats were orally administered with crf-DS (150 mg /kg body weight), for six consecutive weeks in comparison with reference drug(orlistat). Specific cardiac biomarkers were examined including; adiponectin, plasminogen activator inhibitor (PAI-1), glucagon, troponin-I (cTnI). The cell adhesion molecules (VCAM and ICAM), C-reactive protein (CRP), collagen type II (Col II), collagen alpha-1 (III) chain (Col3A1), lipoxygenase activity (LOX), as well as histopathological examination of cardiac tissue were investigated. Results indicated a significant reduction(P ≤ 0.05) in adiponectin and glucagon levels in serum of obese rats. However, cTnI, PAI-1, cell adhesion molecules, CRP, Col II, and Col3A1 and LOX levels declared marked increase. Histopathological examination of cardiac tissue showed fibrosis with severe congestion in the myocardial blood vessels. On the other hand, rats medicated with a crf-DS demonstrated noticeable ameliorating effect in all the measured parameters. Beside, myocardial tissue of obese rats showed no alteration. Hence, It could be concluded that, oral supplementation with crf-DS is able to attenuate cardiac dysfunction in obese rats. Further extended work is needed to exploit, the possible application of D. salina as nutraceuticals and food additives."	"Characterization of a purified exosome product and its effects on canine flexor tenocyte biology. Flexor tendon injuries and tendinopathy are very common but remain challenging in clinical treatment. Exosomes-based cell-free therapy appears to be a promising strategy for tendon healing, while limited studies have evaluated its impacts on tenocyte biology. The objective of this study was to characterize a novel purified exosome product (PEP) derived from plasma, as well as to explore its cellular effects on canine tenocyte biology. The transmission electron microscope revealed that exosomes of PEP present cup-shaped structures with the diameters ranged from 80 to 141 nm, and the NanoSight report presented that their size mainly concentrated around 100 nm. The enzyme-linked immunosorbent assay kits analysis showed that PEP was positive for CD63 and AChE expression, and the cellular uptake of exosomes internalized into tenocyte cytoplasm was observed. The cell growth assays displayed that tenocyte proliferation ability was enhanced by PEP solution in a dose-dependent manner. Tenogenic phenotype was preserved as is evident by that tendon-related genes expression (SCX, COL1A, COL3A1, TNMD, DCN, and MKX) were expressed insistently in a high level, while tenocytes were treated with 5% PEP solution. Furthermore, migration capability was maintained and total collagen deposition was increased. More interesting, dexamethasone-induced cellular apoptosis was attenuated during the incubation of tenocytes with a 5% PEP solution. These findings will provide the basic understandings about the PEP, and support the potential use of this biological strategy for tendon healing."	"Communication of genetic information to at-risk relatives during the multidisciplinary monitoring of vascular Ehlers-Danlos syndrome in a French referral clinic. Vascular Ehlers-Danlos syndrome (vEDS) is a rare inherited disorder leading to arterial, digestive, and uterine complications due to pathogenic COL3A1 variants. Identification of causal variants allows family screening, provided that relatives have previously been informed, according to a 2013 French Decree. The aims of our study were to assess the communication of genetic information to at-risk relatives, the impact of diagnosis disclosure and to highlight a possible link between the experience of vEDS patients and ability to communicate about genetic information. A total of n = 51 vEDS adult probands answered a questionnaire during a clinical visit. Communication to relatives was considered effective if the proband gave information to some or all first-degree relatives and considered easily achieved if it was disclosed to all relatives less than a month after the diagnosis and without difficulty. Personal and family vEDS experiences of probands were also assessed. Effective communication of information to relatives was remarkably high (98%). Siblings were the most frequently informed relatives (82%). Women informed their at-risk relatives of genetic family screening faster (p = .006) and easier (p = .004) than men. There was no difference in the disclosure of information to relatives before and after 2013 in our multidisciplinary clinic. Regarding the lived experience of vEDS patients, they felt anxious (78%) at diagnosis disclosure but also considered this diagnosis as an opportunity to start a medical follow-up (82%) putting an end to diagnosis delay. Our findings highlight for the first time that the ability to easily inform at-risk first-degree relatives is related to the relief felt during vEDS-positive diagnosis disclosure (p = .04). In order to improve the communication of genetic information to relatives, we believe that psychological support should systematically be part of the multidisciplinary monitoring, just as medical follow-up and genetic counseling."	"Rare genetic variants in patients with cervical artery dissection. The potential role of genetic alterations in cervical artery dissection (CeAD) pathogenesis is poorly understood. We aimed to identify pathogenic genetic variants associated with cervical artery dissection by using whole exome sequencing. CeAD-patients with either a family history of cervical artery dissection (f-CeAD) or recurrent cervical artery dissection (r-CeAD) from the CeAD-databases of two experienced stroke centres were analysed by whole exome sequencing.Variants with allele frequency &lt;0.05 and classified as pathogenic by predicting algorithms (SIFT or Polyphen-2) or the ClinVar database were explored. First, we analysed a panel of 30 candidate genes associated with arterial dissection (any site) or aneurysm according to the OMIM (online Mendelian Inheritance of Men) database. Second, we performed a genome-wide search for pathogenic variants causing other vascular phenotypes possibly related to cervical artery dissection.Findings were classified as CeAD-causing (pathogenic variants in genes from the arterial dissection or aneurysm panel) or suggestive (pathogenic variants in genes associated with other vascular phenotypes and variants of unknown significance in genes from the arterial dissection or aneurysm panel). All other variants were classified as benign/uncertain. Among 43 CeAD-patients, 28 patients (17 pedigrees) had f-CeAD and 15 had r-CeAD. No CeAD-causing variants were identified in r-CeAD patients. Among f-CeAD-patients, 5/17 pedigrees carried CeAD-causing variants in COL3A1, COL4A1, COL4A3, COL4A4, COL5A1, COL5A2 and FBN1. Suggestive variants in ABCC6, COL3A1, COL5A2, MEF2A, and RNF213 were detected in three pedigrees with f-CeAD and six patients with r-CeAD.Discussion and conclusion: CeAD-causing variants were rare and exclusively found in f-CeAD-patients, suggesting differences between the genetic architectures of f-CeAD and r-CeAD. The identified variants indicate a high genetic heterogeneity of the study sample."	"Gene signature characteristic of elevated stromal infiltration and activation is associated with increased risk of hematogenous and lymphatic metastasis in serous ovarian cancer. The clinical significance of hematogenous and lymphatic metastasis in ovarian cancer has been increasingly addressed, as it plays an imperative role in the formation of both intraperitoneal and distant metastases. Our objective is to identify the key molecules and biological processes potentially related to this relatively novel metastatic route in serous ovarian cancer. Since lymphovascular space invasion (LVSI) is considered as the first step of hematogenous and lymphatic dissemination, we developed a gene signature mainly based on the transcriptome profiles with available information on LVSI status in the Cancer Genome Atlas (TCGA) dataset. We then explored the underlying biological rationale and prognostic value of the identified gene signature using multiple public databases. We observe that primary tumors with increased risk of hematogenous and lymphatic metastasis highly express a panel of genes, namely POSTN, LUM, THBS2, COL3A1, COL5A1, COL5A2, FAP1 and FBN1. The identified geneset is characterized by enhanced deposition of extracellular matrix and extensive stromal activation. Mechanistically, both the recruitment and the activation of stromal cells, especially fibroblasts, are closely associated with lymphovascular metastasis. Survival analysis further reveals that the elevated expression of the identified genes correlates to cancer progression and poor prognosis in patients with serous ovarian cancer. Our findings indicate that tumor stroma supports the hematogenous and lymphatic spread of ovarian cancer, increasing tumor invasiveness and ultimately resulting in worse survival. Thus stroma-targeted therapies may improve the clinical outcomes in combination with cytoreductive surgery and chemotherapy."	"Identification of genes related to low-grade glioma progression and prognosis based on integrated transcriptome analysis. Glioma is one of the most common types of human brain tumor, with high mortality in high-grade gliomas (HGG). Low-grade gliomas (LGG) can progress into HGG, leading to poor prognosis. However, it is unclear what factors affect the progression of LGG to HGG. This study aims to explore the function of the crosstalk genes on the progression and prognosis of LGG using bioinformatics analysis. Integrated transcriptome analysis was used to screen differentially expressed genes (DEGs). Then, gene ontology (GO) function enrichment and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were performed to investigate the association between DEGs and gene functions and pathways by ClusterProfiler package and ClueGO plug-in. Protein-protein interaction (PPI) network analysis was applied to explore the connection between genes and biological processes. Subsequently, the gene clusters were analyzed using the Centiscape and molecular complex detection (MCODE) plug-in in Cytoscape software, where the crosstalk genes were identified for further study. Ultimately, the UALCAN website and Gene Expression Profiling Interactive Analysis (GEPIA) website were performed to visualize the expression levels and survival curves of genes, respectively. There were 74 DEGs identified in glioma, including 55 upregulated genes and 19 downregulated genes, which mainly were enriched in extracellular matrix (ECM)-receptor interaction, focal adhesion, PI3K-Akt signaling pathway, and so on. Then, six crosstalk genes were selected, including COL1A1, COL1A2, COL3A1, COL4A1, COL4A2, and COL5A2 genes. Overall survival (OS) analysis of crosstalk genes was conducted on the GEPIA website. High expression levels of crosstalk genes were closely related to the low survival rate of patients with LGG. The overexpressed crosstalk genes, such as COL1A1, COL1A2, COL3A1, COL4A1, COL4A2, and COL5A2 may participate in the progression and poor prognosis of LGG through the ECM-receptor interaction pathway."	"Different expression of Defensin-B gene in the endometrium of mares of different age during the breeding season. Despite being one of the major causes of infertility in mares, the mechanisms responsible for equine endometrosis are still unclear and controversial. In the last few years, many investigations focused on local immune response modulation. Since it is generally accepted that endometrial fibrosis increases with age, we hypothesize that older mares could show altered local immune modulation, initiating a pro-inflammatory and tissue remodeling cascade of events that could lead to endometrosis. The aim of this study, indeed, is to evaluate and describe the local gene expression of genes involved in acute inflammatory response and fibrosis (COL1A1, COL3A1, TNFA, MMP9, IL6, TGFB1 and TGFBR1), together with others associated to immune modulation (DEFB4B, IDO1 and FOXP3), in uterine specimens from mares of different age. Twenty-five Standardbred mares were involved in the study with age ranging from 7 to 19 years (mean 10.40 ± 4.42). They were divided by age into two groups: G1 (n = 15, less than 10 years old) and G2 (N = 10, greater than 11 years old). Specimens from the uterus' right horn-body junction were collected and processed for histology evaluation and RT-qPCR assay.Gene expression of DEFB4B, MMP9 and TNFA was higher in younger mares, suggesting a balance in immune modulation and tissue remodeling. Interleukin-6 and COL3A1 gene expressions were greater in older animals, probably indicating inflammatory pathways activation and fibrosis increase. Although no differences in fibrosis and inflammation distribution could be found with histological examination among G1 and G2, our results suggest a possible involvement of DEF4BB in regulating the local immune response in younger mare's uterus (G1); age may contribute to the dis-regulation of DEFB4B transcription and, indirectly, influence the extracellular matrix homeostasis. Transcription of IDO1 and FOXP3 genes, instead, does not seem to be age related, or to be involved in local immune-response and tissue remodeling functions. Further investigations are needed in order to clarify the interactions between the expression of DEFB4B, IL6, TNFA, COL3A1 and MMP9 and other local signals of immune-modulation and tissue remodeling, in mares in a prospective study design."	"Investigation of salmon calcitonin in regulating fibrosis-related molecule production and cell-substrate adhesion in frozen shoulder synovial/capsular fibroblasts. The purpose of this study was to evaluate the effect of salmon calcitonin (sCT) on improving fibrosis-related indicators in frozen shoulder synovial/capsular fibroblasts (SCFs) and detect the potential downstream pathway. Quantitative real-time polymerase chain reaction and cell-substrate adhesion assays were used to measure alterations in fibrosis-related molecule expression and the cell adhesion ability of frozen shoulder SCFs after treatment with range concentrations of sCT. The presence of calcitonin receptors (CTRs) in shoulder joint synovial/capsular tissue samples was detected by immunohistochemistry (IHC). The downstream pathways of sCT in SCFs were further explored by utilizing three classical pathway inhibitors. With the addition of sCT to the culture medium of frozen shoulder SCFs, the messenger RNA (mRNA) expression of collagen type I (COL1A1), COL3A1, fibronectin 1, laminin 1, transforming growth factor-β1 (TGF-β1), and interleukin-1α (IL-1α) showed a descending trend as the sCT concentration increased. Treatment with sCT increased the expression of vascular endothelial growth factor and IL-6 in a dose-dependent manner. The enhanced adhesion ability of frozen shoulder SCFs gradually diminished with increasing concentrations of sCT. By using IHC, the CTR was detected extensively in the frozen shoulder joint synovium and capsule. Blocking the protein kinase C (PKC) pathway reversed the sCT-mediated suppression of COL1A1 production. Blocking the PKC or protein kinase A (PKA) pathway eliminated the sCT-induced inhibition of TGF-β1 production. This study demonstrated that sCT effectively improved the mRNA expression of fibrosis-related molecules and decreased the enhanced cell-substrate adhesion ability of frozen shoulder SCFs. sCT might achieve these effects by interacting with the CTR that is expressed on the SCF surface and by activating the downstream PKC or PKA pathway."	"[CircRNA_005647 inhibits expressions of fibrosis-related genes in mouse cardiac fibroblasts via sponging miR-27b-3p]. To investigate the effect of circRNA_005647 on fibrotic phenotype of mouse cardiac fibroblasts (CFs) and explore its mechanism. We used an angiotensin Ⅱ (Ang-Ⅱ) capsule pump (daily dose of 1.46 mg/kg for 2 weeks) to establish a mouse model of myocardial fibrosis in C57BL/6 mice. Masson staining was used to detect myocardial fibrosis in the myocardium. The expression of circRNA_005647 in the myocardium of Ang-Ⅱ-infused mice and in Ang-Ⅱ-treated CFs were detected with real-time PCR. Actinomycin D and RNase R exonuclease digestion were used to test the stability of circRNA_005647 in mouse CFs. Over- expression of circRNA_005647 was achieved in the CFs by infecting the cells with a recombinant circRNA_005647 adenovirus (rAd-circRNA_005647), and the expressions of Col1a1, Col3a1 and Acta2 were detected in the cells with real-time PCR and Western blotting. Dual luciferase reporter assay, RNA antisense purification and RNA Pull down assay were performed to identify the interaction between circRNA_005647 and miR-27b-3p. CircRNA_005647 was up- regulated in the myocardium of Ang-Ⅱ- infused mice and in Ang-Ⅱ-treated mouse CFs (P &lt; 0.01). CircRNA_005647 was more stable than its host gene Myosin IXA (Myo9a) in response to actinomycin D (P &lt; 0.01) and RNase R exonuclease treatment. The expressions of fibrosis-associated genes was down-regulated in the CFs over-expressing circRNA_ 005647 (P &lt; 0.05). Dual luciferase reporter assay, RNA antisense purification and RNA Pull down assay revealed the interaction between miR-27b-3p and circRNA_005647. MiR-27b-3p obviously enhanced the fibrotic phenotype but reversed the inhibitory effect of circRNA_005647 on the expression of fibrosis associated genes in the CFs (P &lt; 0.05). CircRNA_005647 is upregulated in cardiac fibrosis and inhibits the expression of fibrosis-related genes through sponging miR-27b-3p in mouse CFs."	"Human fetal skin-derived stem cell secretome enhances radiation-induced skin injury therapeutic effects by promoting angiogenesis. Radiation dermatitis is a refractory skin injury caused by radiotherapy. Human fetal skin-derived stem cell (hFSSC) is a preferable source for cell therapy and skin tissue regeneration. In the present study, we investigated the repair effect of using hFSSC secretome on a radiation skin injury model in rats. We prepared the hFSSC secretome and studied its effects on the proliferation and tube formation of human umbilical vein endothelial cell (HUVEC) in vitro. Furthermore, we used a Sr-90 radiation-induced skin injury model of rats and evaluated the effects of hFSSC secretome on radiation skin injury in vivo. The results showed that hFSSC secretome significantly promoted the proliferation and tube formation of HUVEC in vitro; in addition, hFSSC secretome-treated rats exhibited higher healing quality and faster healing rate than the other two control groups; the expression level of collagen type III α 1 (Col3A1), transforming growth factor β3 (TGF-β3), angiotensin 1 (Ang-1), angiotensin 2 (Ang-2), vascular endothelial growth factor (VEGF), and placental growth factor (PLGF) was significantly increased, while collagen type I α 2 (Col1A2) and transforming growth factor β1 (TGF-β1) were decreased in hFSSC secretome group. In conclusion, our results provided the first evidence on the effects of hFSSC secretome towards radiation-induced skin injury. We found that hFSSC secretome significantly enhanced radiation dermatitis angiogenesis, and the therapeutic effects could match with the characteristics of fetal skin. It may act as a kind of novel cell-free therapeutic approach for radiation-induced cutaneous wound healing."	"Amniotic band sequence in paternal half-siblings with vascular Ehlers-Danlos syndrome. Familial amniotic band sequence (ABS) is rare but has been reported in the offspring of mothers with connective tissue disorders. We present a family of two half-siblings with ABS who share the same biological father. Following a serious vascular event a de novo pathogenic variant in COL3A1 was detected in the father, confirming a diagnosis of vascular Ehlers-Danlos syndrome (vEDS). The same variant was found in both his ABS-affected children but not in his unaffected child. The amniotic membrane is derived from fetal tissue, type III collagen being a component. As the affected children are paternal half-siblings, ABS was less likely due to maternal factors. Rather, the amniotic bands may have resulted from decreased type III collagen production as seen in people with vEDS, causing fragility of the amniotic membrane. Consequently, it is important to consider vEDS in patients with ABS."	"Proposition of a novel animal model of systemic sclerosis induced by type V collagen in C57BL/6 mice that reproduces fibrosis, vasculopathy and autoimmunity. Type V collagen (Col V) has the potential to become an autoantigen and has been associated with the pathogenesis of systemic sclerosis (SSc). We characterized serological, functional, and histopathological features of the skin and lung in a novel SSc murine model induced by Col V immunization. Female C57BL/6 mice (n = 19, IMU-COLV) were subcutaneously immunized with two doses of Col V (125 μg) emulsified in complete Freund adjuvant, followed by two intramuscular boosters. The control group (n = 19) did not receive Col V. After 120 days, we examined the respiratory mechanics, serum autoantibodies, and vascular manifestations of the mice. The skin and lung inflammatory processes and the collagen gene/protein expressions were analyzed. Vascular manifestations were characterized by endothelial cell activity and apoptosis, as shown by the increased expression of VEGF, endothelin-1, and caspase-3 in endothelial cells. The IMU-COLV mice presented with increased tissue elastance and a nonspecific interstitial pneumonia (NSIP) histologic pattern in the lung, combined with the thickening of the small and medium intrapulmonary arteries, increased Col V fibers, and increased COL1A1, COL1A2, COL3A1, COL5A1, and COL5A2 gene expression. The skin of the IMU-COLV mice showed thickness, epidermal rectification, decreased papillary dermis, atrophied appendages, and increased collagen, COL5A1, and COL5A2 gene expression. Anti-collagen III and IV and ANA antibodies were detected in the sera of the IMU-COLV mice. We demonstrated that cutaneous, vascular, and pulmonary remodeling are mimicked in the Col V-induced SSc mouse model, which thus represents a suitable preclinical model to study the mechanisms and therapeutic approaches for SSc."	"Recurrent and novel USP6 fusions in cranial fasciitis identified by targeted RNA sequencing. Cranial fasciitis is a benign myofibroproliferative lesion of the scalp and underlying bones typically occurring in the pediatric population. Histologically, it is characterized by loose fascicles of stellate cells in a fibromyxoid background, findings similar to those described in the closely related variant nodular fasciitis. Previously characterized as a reactive process, the identification of USP6 translocations in over 90% of nodular fasciitis cases prompted their reclassification as a clonal neoplastic process. Unlike nodular fasciitis, the molecular underpinnings of cranial fasciitis are less clear. While a subset of cranial fasciitis has been associated with Wnt/β-catenin pathway dysregulation, recent case reports suggest that this entity may also harbor USP6 fusions, a finding we sought to further investigate. We identified fifteen archival cases of cranial fasciitis, five females and ten males ranging in age from 3 months to 9 years (median 11 months), composed of formalin-fixed paraffin-embedded and fresh frozen tissues (11 and 4 cases respectively). Samples were evaluated on an RNA-based targeted sequencing panel targeting genes recurrently rearranged in neoplasia, including USP6. Five of fifteen cases (33%) were positive for USP6 rearrangements predicted to result in the fusion of the entire USP6 coding region to the promoter of the 5' partner, (three of which were novel): two SERPINH1-USP6 (novel) and one each of COL3A1-USP6 (novel), SPARC-USP6, and MYH9-USP6. These results demonstrate the recurrent nature of USP6 rearrangements in cranial fasciitis, and highlight the success of targeted RNA sequencing in identifying known and novel fusion partners. The identification of USP6 promoter-swapping rearrangements is helpful in understanding the underlying biology of cranial fasciitis, and reinforces its biologic relationship to nodular fasciitis. Targeted RNA sequencing is a helpful tool in diagnosing this pseudosarcomatous lesion."	"Trigeminal Autonomic Cephalalgias Manifested As The Only Initial Symptom Of Ehlers-Danlos Syndrome Type IV. Ehlers-Danlos syndrome (EDS) type IV is characterized by thin skin with visible veins, easy bruising, characteristic facial features, arterial and digestive complications, as well as rupture of the gravid uterus. It has never been previously reported that trigeminal autonomic cephalalgias (TACs) could manifest as the only initial symptom of EDS type IV. Here, we report a case of a 27-year-old man who presented atypical headache like TACs stimulated by right internal carotid artery dissection. About one month after his discharge, he suffered dissection of the right renal artery and splenic artery, in addition to partial infarction of the right kidney and spleen. Genetic testing revealed a novel splicing variant c.799-1G&gt;A within COL3A1. He was ultimately diagnosed with Ehlers-Danlos syndrome type IV. This case expanded the genetic spectrum and clinical manifestation of EDS type IV and provided a significant implication for the diagnosis of EDS type IV when the initial symptom manifested as TACs, not the typical presentation of EDS type IV."	"Dietary Suberic Acid Protects Against UVB-Induced Skin Photoaging in Hairless Mice. Ultraviolet (UV) radiation is a major cause of skin photoaging, which is mainly characterized by dryness and wrinkle formation. In the current study, we investigated the anti-photoaging effects of dietary suberic acid, a naturally occurring photochemical, using UVB-irradiated hairless mice. Mice were exposed to UVB three times weekly and fed diets containing three different suberic acid concentrations (0.05%, 0.1% and 0.2%) for 10 weeks. It was found that suberic acid inhibited UVB-induced skin dryness, wrinkle formation, and epidermal thickness in hairless mice. In parallel with phenotypic changes, suberic acid attenuated UVB-induced matrix metalloproteinase (MMP) genes (MMP1a, MMP1b, MMP3, and MMP9), while accelerating collagen genes including collagen type I alpha 1 chain (COL1A1), COL1A2, and COL3A1 and hyaluronic acid synthases genes (HAS1, HAS2 and HAS3). We further demonstrated that suberic acid upregulated the molecules involved in the transforming growth factor-β (TGF-β)/SMAD pathway, but downregulated the molecules participating in the mitogen-activated protein kinase (MAPK)/activator protein 1 (AP-1) signaling in UVB-irritated hairless mice. Collectively, we propose that suberic acid may be a promising agent for treating skin photoaging."	"A new three-dimensional glass scaffold increases the in vitro maturation efficiency of buffalo (Bubalus bubalis) oocyte via remodelling the extracellular matrix and cell connection of cumulus cells. At present, many three-dimensional (3D) culture systems have been reported, improving the oocyte quality of in vitro maturation (IVM), yet the mechanism still needs to be further explored. Here we examined the effects of a new self-made 3D glass scaffold on buffalo oocyte maturation; meanwhile, the underlying mechanism on buffalo oocyte maturation was also detected. Compared to the two-dimensional (2D) glass dish culture, results revealed that the 3D culture can improve the first polar body rate of oocytes, subsequent cleavage and blastocysts rate of parthenogenetic activation embryos (p &lt; .05). The extracellular matrix-related proteins COL1A1, COL2A1, COL3A1, FN and cell connection-related proteins N-cadherin, E-cadherin, GJA1 were found higher in cumulus cells of 3D culture. Moreover, in cumulus cells, proteins of the PI3K/AKT pathway reported being regulated by FN and E-cadherin including PI3K P85 and p-AKT were also higher in 3D culture. Furthermore, proapoptosis proteins P53, BAX, caspase-3 were lower in both cumulus cells and oocytes in 3D culture, while proteins PCNA and BCL2 showed the opposite result. Results also showed that the apoptosis was inhibited, and the proliferation was enhanced in cumulus cells of 3D culture. Finally, the cumulus expansion-related genes HAS2, CD44, HMMR, PTX3, PTGS2 were found higher in cumulus cells of 3D culture. Taken together, the 3D culture could promote oocyte maturation by regulating proteins correlated with the ECM, cell connection and PI3K/AKT pathway, inhibiting the apoptosis of cumulus cells and oocytes, enhancing the proliferation of cumulus cells and the cumulus expansion."	"Identification of potential core genes in metastatic renal cell carcinoma using bioinformatics analysis. Most cases of mRCC without an early finding are not candidates for curative therapies, which may be one of the reasons for the poor patient prognosis. Therefore, candidate markers to diagnose the disease and treatment with high efficiency are urgently demanded. Three datasets of mRNA microarray have been assessed to discover DEGs between tissues from metastatic RCC and RCC. 111 DEGs in total were identified according to the expression profile result of genes in the database of GEO. Enrichment analyses for GO and KEGG have been conducted to reveal the interacting activities in the DEGs. A network of PPI has been established to reveal the interconnection among the DEGs, and we selected 10 hub genes. Subsequently, the disease-free survival rate and total survival rate analysis for the hub genes have been carried out with the method of Kaplan-Meier curve. RCC patients with CDH11, COL3A1, COL5A1, COL5A2, COL6A3 and COL11A1 alteration showed worse overall survival. Nonetheless, RCC patients with CDH11, COL3A1, COL5A1, COL5A2 and COL11A1 alteration showed worse disease-free survival. In the Jones Renal dataset, mRNA levels of 10 hub genes were associated with metastasis, and the gene expression level in patients with mRCC was higher than that in patients without metastasis. COL5A1, COL6A3 and COL11A1 expression levels were remarkably related to RCC patient survival rate using UALCAN. COL5A1, COL6A3 and COL11A1 were positively correlated with each other in RCC. These genes have been recognized as genes with clinical relevance, revealing that they might have important roles in carcinogenesis or development of mRCC."	"Highly aggressive undifferentiated small round blue cell tumor of foot with unique SMARCA1, KAT6A and NAV3 mutations. Malignancies characterized histologically by high-grade monotonous small round blue cells (SRBCs) belong to a heterogeneous group of neoplasms often referred to as Ewing family of tumors. The most common molecular confirmation of these neoplasms is by fusions between EWSR1 gene on chromosome 22 and the ETS family of transcription factors, including FLI1 gene (11q24) and the ERG (21q22), that are implicated in the development of different tissues as well as cancer progression. In this article, we present a case of highly aggressive extraskeletal SRBC tumor involving the foot of a 24-year-old male with sole molecular findings of mutations in KAT6A, NAV3 and SMARCA1 genes with high expression of soft tissue markers (COL1A1, COL1A2, COL3A1) and MYC mRNA. To our knowledge, this unique mutational pattern has not previously been described in SRBCs."	"Three Dimensional Printing Bilayer Membrane Scaffold Promotes Wound Healing. Full-thickness skin wounds are common and could be a heavy physical and economic burden. With the development of three dimensional (3D) printing technology, skin-like constructs have been fabricated for skin wound healing and regeneration. Although the 3D printed skin has great potential and enormous advantages before vascular networks can be well-constructed, living cells are not recommended for 3D skin printing for in vivo applications. Herein, we designed and printed a bilayer membrane (BLM) scaffold consisting of an outer poly (lactic-co-glycolic acid) (PLGA) membrane and a lower alginate hydrogel layer, which respectively mimicked the skin epidermis and dermis. The multi-porous alginate hydrogel of the BLM scaffolds promoted cell adhesion and proliferation in vitro, while the PLGA membrane prevented bacterial invasion and maintained the moisture content of the hydrogel. Skin regeneration using the bilayer scaffold was compared with that of PLGA, alginate hydrogel and the untreated defect in vivo. Tissue samples were analyzed using histopathological and immunohistochemical staining of CD31. In addition, mRNA expression levels of collagen markers [collagen type 1 alpha 1 (COL1a1) and collagen type 3 alpha 1 (COL3a1)] and inflammatory markers [interleukin-1β (IL-1β), as well as tumor necrosis factor (TNF-α)] were measured. Conclusively, the application of BLM scaffold resulted in highest levels of best skin regeneration by increasing neovascularization and boosting collagen I/III deposition. Taken together, the 3D-printed BLM scaffolds can promote wound healing, and are highly suitable for a wide range of applications as wound dressings or skin substitutes."	"Splenic Rupture Secondary to Vascular Ehlers-Danlos Syndrome Managed by Coil Embolization of the Splenic Artery. Aim Atraumatic splenic rupture is uncommon and life-threatening. It may be related to underlying pathology and be the initial manifestation of the condition. Vascular Ehlers-Danlos syndrome (V-EDS) is a rare autosomal dominant collagen vascular disorder, associated with vessel fragility and rupture. We describe a child presenting with splenic rupture managed by embolization of the splenic artery. She was subsequently diagnosed with V-EDS. Case Description A 11-year-old girl with thalassemia trait presented with sudden onset of abdominal pain and hypovolemic shock. There was no history of trauma. Following resuscitation, abdominal computed tomography showed hemoperitoneum and active splenic arterial extravasation. Angiography demonstrated four bleeding points, from irregular vessels supplying the upper two-thirds of the spleen. These were not amenable to supraselective embolization. Therefore, coil embolization of the main splenic artery was performed, with no splenic supply seen on the postembolization angiogram. Her postoperative recovery was complicated by pancreatitis secondary to partial ischemia of the pancreatic tail. Subsequent extensive investigations excluded hematological, myeloproliferative, and infective causes for her splenic rupture. A safeguarding investigation was completed, with no pertinent factors identified. Findings of thin skin, abnormal bruising, and hypermobile joints raised a clinical suspicion of a connective tissue disorder. Genetic testing revealed a de novo mutation of the COL3A1 gene. Conclusions There are only four reports of V-EDS causing splenic rupture in the literature to date. These patients were all adults and only one had not previously been diagnosed with V-EDS. All underwent splenectomy. While V-EDS presenting with abdominal visceral rupture in children has been reported, this is the first report of a child with V-EDS presenting with splenic rupture. It is the only case of splenic rupture secondary to V-EDS that has been managed minimally invasively by embolization."	"Inhibition of the stem cell factor 248 isoform attenuates the development of pulmonary remodeling disease. Stem cell factor (SCF) and its receptor c-kit have been implicated in inflammation, tissue remodeling, and fibrosis. Ingenuity Integrated Pathway Analysis of gene expression array data sets showed an upregulation of SCF transcripts in idiopathic pulmonary fibrosis (IPF) lung biopsies compared with tissue from nonfibrotic lungs that are further increased in rapid progressive disease. SCF248, a cleavable isoform of SCF, was abundantly and preferentially expressed in human lung fibroblasts and fibrotic mouse lungs relative to the SCF220 isoform. In fibroblast-mast cell coculture studies, blockade of SCF248 using a novel isoform-specific anti-SCF248 monoclonal antibody (anti-SCF248), attenuated the expression of COL1A1, COL3A1, and FN1 transcripts in cocultured IPF but not normal lung fibroblasts. Administration of anti-SCF248 on days 8 and 12 after bleomycin instillation in mice significantly reduced fibrotic lung remodeling and col1al, fn1, acta2, tgfb, and ccl2 transcript expression. In addition, bleomycin increased numbers of c-kit+ mast cells, eosinophils, and ILC2 in lungs of mice, whereas they were not significantly increased in anti-SCF248-treated animals. Finally, mesenchymal cell-specific deletion of SCF significantly attenuated bleomycin-mediated lung fibrosis and associated fibrotic gene expression. Collectively, these data demonstrate that SCF is upregulated in diseased IPF lungs and blocking SCF248 isoform significantly ameliorates fibrotic lung remodeling in vivo suggesting that it may be a therapeutic target for fibrotic lung diseases."	"Antler stem cell-conditioned medium stimulates regenerative wound healing in rats. When the deer antler is cast, it leaves a cutaneous wound that can achieve scarless healing due to the presence of antler stem cells (ASCs). This provides an opportunity to study regenerative wound healing. In this study, we investigated the therapeutic effects and mechanism of antler stem cell-conditioned medium (ASC-CM) on cutaneous wound healing in rats. In vitro, we investigated the effects of the ASC-CM on proliferation of HUVEC and NIH-3T3 cell lines. In vivo, we evaluated the effects of ASC-CM on cutaneous wound healing using full-thickness skin punch-cut wounds in rats. The results showed that ASC-CM significantly stimulated proliferation of the HUVEC and NIH-3T3 cells in vitro. In vivo, completion of healing of the rat wounds treated with ASC-CM was on day 16 (± 3 days), 9 days (± 2 days) earlier than the control group (DMEM); the area of the wounds treated with ASC-CM was significantly smaller (p &lt; 0.05) than the two control groups. Further molecular characterization showed that the ratios of Col3A1/Col1A2, TGF-β3/TGF-β1, MMP1/TIMP1, and MMP3/TIMP1 significantly increased (p &lt; 0.01) in the healed tissue in the ASC-CM group. In conclusion, ASC-CM effectively accelerated the wound closure rate and enhanced the quality of healing, which might be through transforming wound dermal fibroblasts into the fetal counterparts. Therefore, the ASC-CM may have potential to be developed as a novel cell-free therapeutic for scarless wound healing."	"MiR-144-3p Enhances Cardiac Fibrosis After Myocardial Infarction by Targeting PTEN. Myocardial infarction (MI) may cause heart failure and seriously harm human health. During the genesis of cardiac fibrosis after MI, the proliferation and migration of cardiac fibroblasts contribute to secretion and maintenance of extracellular matrix (ECM) components. Many miRNAs have been highly implicated in the processes of cardiac fibrosis after MI. However, the molecular mechanisms for how miRNAs involve in cardiac fibrosis remain largely unexplored. Based on MI model in miniature pigs, the potential miRNAs involved in MI were identified by using small RNA sequencing. Using human cardiac fibroblasts (HCFs) as a cellular model, EdU, Transwell, and the expression of ECM-related proteins were applied to investigate the cell proliferation, migration and collagen synthesis. In this study, using MI model based on miniature pigs, 84 miRNAs were identified as the differentially expressed miRNAs between MI and control group, and miR-144-3p, one of differentially expressed miRNAs, was identified to be higher expressed in infarct area. The cell proliferation, migration activity, and the mRNA and protein levels of the ECM-related genes were significantly increased by miR-144-3p mimic but significantly decreased by miR-144-3p inhibitor in cardiac fibroblasts. Furthermore, miR-144-3p was observed to repress transcription and translation of PTEN, and interfering with the expression of PTEN up-regulated the mRNAs and proteins levels of α-SMA, Col1A1, and Col3A1, and promoted the proliferation and migration of cardiac fibroblasts, which was in line with that of miR-144-3p mimics, but this observation could be reversed by miR-144-3p inhibitor. Collectively, miR-144-3p promotes cell proliferation, migration, and collagen production by targeting PTEN in cardiac fibroblasts, suggesting that miR-144-3p-mediated-PTEN regulation might be a novel therapeutic target for cardiac fibrosis after MI."	"MicroRNA-29a Mitigates Subacromial Bursa Fibrosis in Rotator Cuff Lesion with Shoulder Stiffness. Rotator cuff lesion with shoulder stiffness is a major cause of shoulder pain and motionlessness. Subacromial bursa fibrosis is a prominent pathological feature of the shoulder disorder. MicroRNA-29a (miR-29a) regulates fibrosis in various tissues; however, the miR-29a action to subacromial bursa fibrosis remains elusive. Here, we reveal that subacromial synovium in patients with rotator cuff tear with shoulder stiffness showed severe fibrosis, hypertrophy, and hyperangiogenesis histopathology along with significant increases in fibrotic matrices collagen (COL) 1A1, 3A1, and 4A1 and inflammatory cytokines, whereas miR-29a expression was downregulated. Supraspinatus and infraspinatus tenotomy-injured shoulders in transgenic mice overexpressing miR-29a showed mild swelling, vascularization, fibrosis, and regular gait profiles as compared to severe rotator cuff damage in wild-type mice. Treatment with miR-29a precursor compromised COL3A1 production and hypervascularization in injured shoulders. In vitro, gain of miR-29a function attenuated COL3A1 expression through binding to the 3'-untranslated region (3'-UTR) of COL3A1 in inflamed tenocytes, whereas silencing miR-29a increased the matrix expression. Taken together, miR-29a loss is correlated with subacromial bursa inflammation and fibrosis in rotator cuff tear with shoulder stiffness. miR-29a repressed subacromial bursa fibrosis through directly targeting COL3A1 mRNA, improving rotator cuff integrity and shoulder function. Collective analysis offers a new insight into the molecular mechanism underlying rotator cuff tear with shoulder stiffness. This study also highlights the remedial potential of miR-29a precursor for alleviating the shoulder disorder."	"Screening and validating the core biomarkers in patients with pancreatic ductal adenocarcinoma. Pancreatic ductal adenocarcinoma (PAAD) is one of the most common malignant tumors in digestive system. To find the new therapeutic targets and explore potential mechanisms underlying PAAD, the bioinformatics has been performed in our study. The PAAD gene expression profile GSE28735 was chosen to analyze the differentially expressed genes (DEGs) between PAAD carcinoma tissues and normal adjacent tissues from 45 patients with PAAD. Gene ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were performed using Database for Annotation, Visualization and Integrated Discovery (DAVID). Moreover, a protein-protein interaction (PPI) network was also constructed to help us screen the top 20 hub genes in this profile and demonstrated the underlying interactions among them. The Gene Expression Profiling Interactive Analysis (GEPIA) was further performed in order to valid the mRNA levels of top5 up-regulated and top5 down-regualted DEGs, apart from exploring their association with survival rate as well as tumor stage. Finally, Q-PCR was further employed to valid the top5 up-regulated and top5 down-regulated genes in patients with PAAD. In our study, there were a total of 444 DEGs captured (271 up-regulated genes and 173 down-regulated genes). Among these DEGs, the top5 up-regulated genes were CEACAM5, SLC6A14, LAMC2, GALNT5 and TSPAN1 while the top5 down-regulated genes were GP2, CTRC, IAPP, PNLIPRP2 and PNLIPRP1. GO analysis disclosed that the DEGs were predominantly enriched in cell adhesion, lipid metabolism, integrin binding, proteolysis and calcium ion binding. KEGG analysis disclosed that the enriched pathway included pancreatic secretion, protein digestion and absorption, fat digestion and absorption, ECM-receptor interaction, focal adhesion and PI3K-Akt signaling pathway. Survival analysis unveiled that the high expression levels of SLC6A14, GALNT5 and TSPAN1 may correlate with the poor prognosis while high expression levels of IAPP may contribute to a better prognosis in patients with PAAD. Additionally, the levels of CEACAM5, SLC6A14, LAMC2 and GALNT5 were also associated with tumor stage. Furthermore, according to the connectivity degree of these DEGs, we selected the top20 hub genes, namely ALB, FN1, EGF, MMP9, COL1A1, COL3A1, FBN1, CXCL12, POSTIN, BGN, VCAN, THBS2, KRT19, MET, MMP14, COL5A2, GCG, MUC1, MMP1 and CPB1, which were expected to be promising therapeutic targets in PAAD. Collectively, our bioinformatics analysis showed that DEGs and hub genes may be defined as new biomarkers for diagnosis and for guiding the therapeutic strategies of PAAD."	"Defect of Interferon γ Leads to Impaired Wound Healing through Prolonged Neutrophilic Inflammatory Response and Enhanced MMP-2 Activation. Interferon (IFN)-γ is mainly secreted by CD4+ T helper 1 (Th1), natural killer (NK) and NKT cells after skin injury. Although IFN-γ is well known regarding its inhibitory effects on collagen synthesis by fibroblasts in vitro, information is limited regarding its role in wound healing in vivo. In the present study, we analyzed how the defect of IFN-γ affects wound healing. Full-thickness wounds were created on the backs of wild type (WT) C57BL/6 and IFN-γ-deficient (KO) mice. We analyzed the percent wound closure, wound breaking strength, accumulation of leukocytes, and expression levels of COL1A1, COL3A1, and matrix metalloproteinases (MMPs). IFN-γKO mice exhibited significant attenuation in wound closure on Day 10 and wound breaking strength on Day 14 after wound creation, characteristics that are associated with prolonged neutrophil accumulation. Expression levels of COL1A1 and COL3A1 mRNA were lower in IFN-γKO than in WT mice, whereas expression levels of MMP-2 (gelatinase) mRNA were significantly greater in IFN-γKO than in WT mice. Moreover, under neutropenic conditions created with anti-Gr-1 monoclonal antibodies, wound closure in IFN-γKO mice was recovered through low MMP-2 expression levels. These results suggest that IFN-γ may be involved in the proliferation and maturation stages of wound healing through the regulation of neutrophilic inflammatory responses."	"Screening potential prognostic biomarkers of long non-coding RNAs for predicting the risk of chronic kidney disease. Not much is known about the roles of long non-coding RNAs (lncRNAs) for chronic kidney disease (CKD). In this study, we included CKD patient cohorts and normal controls as a discovery cohort to identify putative lncRNA biomarkers associated with CKD. We first compared the lncRNA expression profiles of CKD patients with normal controls, and identified differentially expressed lncRNAs and mRNAs. Co-expression network based on the enriched differentially expressed mRNAs and lncRNAs was constructed using WGCNA to identify important modules related to CKD. A lncRNA-miRNA-mRNA pathway network based on the hub lncRNAs and mRNAs, related miRNAs, and overlapping pathways was further constructed to reveal putative biomarkers. A total of 821 significantly differentially expressed mRNAs and lncRNAs were screened between CKD and control samples, which were enriched in nine modules using weighted correlation network analysis (WGCNA), especially brown and yellow modules. Co-expression network based on the enriched differentially expressed mRNAs and lncRNAs in brown and yellow modules uncovered 7 hub lncRNAs and 53 hub mRNAs. A lncRNA-miRNA-mRNA pathway network further revealed that lncRNAs of HCP5 and NOP14-AS1 and genes of CCND2, COL3A1, COL4A1, and RAC2 were significantly correlated with CKD. The lncRNAs of NOP14-AS1 and HCP5 were potential prognostic biomarkers for predicting the risk of CKD."	"Gene expression comparison between primary triple-negative breast cancer and paired axillary and sentinel lymph node metastasis. Few studies examine the genomics of axillary lymph node (ALN) metastasis in triple-negative breast cancer (TNBC). The aim was to characterize and compare gene expression patterns of primary breast cancers and paired ALN metastases. Patients with stage 2-3 ER/PR negative, HER2 negative TNBC with ALN macrometastasis without neo-adjuvant therapy were selected. Tumor-specific area was isolated from breast and ALN tissue sections. Gene expression of 2567 cancer-associated genes was analyzed with the HTG EdgeSeq system coupled with Illumina next-generation sequencing (NGS). Seventeen pairs of TNBC and autologous ALN metastasis were analyzed. Compared with the primary, ALN metastasis had 257 statistically significant differentially expressed genes, including 123 upregulated genes and 134 downregulated genes. Notably, there was an upregulation of anti-apoptosis and survival signaling genes (BIRC3, TCL1A, FLT3, and VCAM1) in the ALN metastasis. There was also an upregulation of chemotaxis genes (CCL19, CCL21, CXCL13, and TNFSF11). The most striking feature is the downregulation of genes known to regulate cell microenvironment interaction (MMP2, MMP 3, MMP 7, MMP 11, MMP14, COL1A1, COL1A2, COL3A1, COL5A1, COL5A2, COL6A6, COL11A1, and COL17A1). In TNBC, ALN metastases have a distinct gene expression profile. Genes associated with anti-apoptosis, survival responses, and chemotaxis are upregulated, and genes associated with regulation of extracellular matrix are downregulated when compared to autologous primary cancer. TNBC cells metastatic to lymph nodes undergo a change in order to metastasize and survive in the new microenvironment, which may lead to insights into the metastatic process."	"Tissue-specific transcriptional regulation of epithelial/endothelial and mesenchymal markers during renovascular hypertension. Epithelial-to-mesenchymal transition (EMT) and endothelial-to-mesenchymal transition are processes that can occur under different biological conditions, including tissue healing due to hypertension and oxidative stress. The purpose of the present study was to evaluate the differences in gene expression of epithelial/endothelial and mesenchymal markers in different tissues. A two-kidney, one-clip (2K1C) renovascular hypertension rat model was used. Hypertension was induced by the clipping of the left renal artery; the rats were randomized into sham and 2K1C groups and monitored for up to 4 weeks. The gene expressions of E-cadherin (E-cad), N-cadherin (N-cad), α-smooth muscle actin (α-SMA), collagen I (COL1A1), collagen III (COL3A1) and hepatocyte growth factor (HGF) were determined by reverse transcription-PCR. The levels of the cytokines transforming growth factor-β1, tumor necrosis factor-α, interleukin (IL)-4, IL-6 and IL-10 were evaluated using ELISAs. The levels of thiobarbituric acid reactive substances and thiol groups were measured to evaluate oxidative stress. All analyses were performed on the liver, heart and kidneys tissues of sham and model rats. The 2K1C animals exhibited a higher systolic blood pressure, as well as cardiac hypertrophy and atrophy of the left kidney. Fibrotic alterations in the heart and kidneys were observed, as was an increase in the collagen fiber areas, and higher levels of inflammatory cytokines, which are associated with the increased expression of fibroproliferative and anti-fibrotic genes. Renovascular hypertension regulated epithelial/endothelial and mesenchymal markers, including E-cad, N-cad, α-SMA and COL1A1 in the kidneys and heart. EMT in the kidneys was mediated by an increased level of inflammatory and profibrotic cytokines, as well as by oxidative stress. The data in the present study suggested that the expression of epithelial/endothelial and mesenchymal markers are differentially regulated by hypertension in the liver, heart and kidneys."	"Long noncoding RNA DNM3OS promotes prostate stromal cells transformation via the miR-29a/29b/COL3A1 and miR-361/TGFβ1 axes. Transforming growth factor-β1 (TGFβ1)-induced differentiation into and the activation of myofibroblasts have been regarded as critical events in benign prostatic hyperplasia (BPH); however, the underlying mechanisms of BPH pathogenesis remain unclear. Microarray profiling, STRING analysis, Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway annotation, and Gene Ontology (GO) enrichment analysis were performed to confirm the candidate genes and long non-coding RNA (lncRNAs) related to BPH. Collagen Type III (COL3A1) was significantly upregulated by TGFβ1 in prostate stromal cells (PrSCs) and might be involved in DNM3OS function in myofibroblasts upon TGFβ1 stimulation. Upon TGFβ1 stimulation, COL3A1 protein was decreased by DNM3OS silencing. miR-29a and miR-29b could directly bind to the DNM3OS and COL3A1 3' untranslated region (UTR)s to negatively regulate their expression, and by serving as a competing endogenous RNAs (ceRNA), DNM3OS competed with COL3A1 for miR-29a/29b binding, therefore counteracting miR-29a/29b-mediated COL3A1 suppression. The effect of DNM3OS silencing on ECM components and TGFβ1 downstream signaling was similar to that of the TGFβ1 inhibitor SB431542. miR-361 could target DNM3OS and TGFβ1; DNM3OS competed for miR-361 binding to counteract miR-361-mediated TGFβ1 suppression. In conclusion, we identified DNM3OS as a specifically-upregulated lncRNA upon TGFβ1 stimulation in PrSCs; by serving as a ceRNA for the miR-29a/29b cluster and miR-361, DNM3OS eliminated miRNA-mediated suppression of COL3A1 and TGFβ1, thereby promoting TGFβ1-induced PrSC transformation into myofibroblasts."	"Early Growth Response Genes Increases Rapidly After Mechanical Overloading and Unloading in Tendon Constructs. Tendon cells exist in a dense extracellular matrix and mechanical loading is important for the strength development of this matrix. We therefore use a three-dimensional (3D) culture system for tendon formation in vitro. The objectives of this study were to elucidate the temporal expression of tendon-related genes during the formation of artificial tendons in vitro and to investigate if early growth response-1 (EGR1), EGR2, FOS, and cyclooxygenase-1 and -2 (PTGS1 and PTGS2) are sensitive to mechanical loading. First, we studied messenger RNA (mRNA) levels of several tendon-related genes during formation of tendon constructs. Second, we studied the mRNA levels of, for example, EGR1 and EGR2 after different degrees of loading; dynamic physiologic-range loading (2.5% strain), dynamic overloading (approximately 10% strain), or tension release. The gene expression for tendon-related genes (i.e., EGR2, MKX, TNMD, COL3A1) increased with time after seeding into this 3D model. EGR1, EGR2, FOS, PTGS1, and PTGS2 did not respond to physiologic-range loading. But overloading (and tension release) lead to elevated levels of EGR1 and EGR2 (p ≤ 0.006). FOS and PTGS2 were increased after overloading (both p &lt; 0.007) but not after tension release (p = 0.06 and 0.08). In conclusion, the expression of tendon-related genes increases during the formation of artificial tendons in vitro, including EGR2. Furthermore, the gene expression of EGR1 and EGR2 in human tendon cells appear to be sensitive to overloading and unloading but did not respond to the single episode of physiologic-range loading. These findings could be helpful for the understanding of tendon tensional homeostasis. © 2019 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 38:173-181, 2020."	"Matrisome analysis of intrahepatic cholangiocarcinoma unveils a peculiar cancer-associated extracellular matrix structure. Intrahepatic cholangiocarcinoma (iCCA) is a malignancy that arises from the intrahepatic biliary tree, showing high mortality rates due to its late clinical presentation and limited treatment options. iCCA is characterized by a dense, reactive desmoplastic stroma marked by a dramatic accumulation of extracellular matrix (ECM). Although recent results strongly suggest a relationship between increasing desmoplastic stroma and the enhanced malignant behaviour of iCCA, the importance of ECM proteins in the pathogenesis of iCCA still have to be addressed. iCCA ECM fibrillar structural organization was characterized by histological analysis. ECM proteome profiles from decellularized iCCA and surrounding noncancerous tissues were analysed by nLC coupled to MALDI-TOF/TOF analysis. iCCA tissues displayed high levels of collagen fibers and low abundance of reticular and elastic fibers, suggesting stiffness and loss of polarity. The ECM proteome profiles of iCCA samples, when compared to those obtained from the surrounding noncancerous tissues showed a dismantling of the basement membrane, a reduced angiogenesis and a downregulation of oncosuppressive activity. In particular, we focused on the effects of the overexpression of collagen type III alpha 1 chain (COL3A1) in iCCA, thus providing evidences that COL3A1 promotes iCCA cells migration and is a component of tumor-associated aligned collagen. Overall, this study contributes to the understanding of molecular basis underlying desmoplasia in iCCA and indicates the type III collagen as a promising therapeutic target."	"An elastin-based vasculogenic scaffold promotes marginal islet mass engraftment and function at an extrahepatic site. In islet transplantation, one of the major obstacles to optimal engraftment is the loss of islet natural vascularization and islet-specific extracellular matrix (ECM) during the islet isolation process. Thus, transplanted islets must re-establish nutritional and physical support through formation of new blood vessels and new ECM. To promote this critical process, we developed an elastin-based vasculogenic and ECM-promoting scaffold engineered for extrahepatic islet transplantation. The scaffold by design consisted of type I collagen (Coll) blended with 20wt% of elastin (E) shown to promote angiogenesis as well as de novo ECM deposition. The resulting &quot;CollE&quot; scaffolds h ad interconnected pores with a size distribution tailored to accommodate seeding of islets as well as growth of new blood vessels. In vitro, CollE scaffolds enabled prolonged culture of murine islets for up to one week while preserving their integrity, viability and function. In vivo, after only four weeks post-transplant of a marginal islet mass, CollE scaffolds demonstrated enhanced vascularization of the transplanted islets in the epididymal fat pad and promoted a prompt reversal of hyperglycemia in previously diabetic recipients. This outcome was comparable to that of kidney capsular (KC) islet transplantation, and superior to that of islets transplanted on the control collagen-only scaffolds (Coll). Crucial genes associated with angiogenesis (VEGFA, PDGFB, FGF1, and COL3A1) as well as de novo islet-specific matrix deposition (COL6A1, COL4A1, LAMA2 and FN1) were all significantly upregulated in islets on CollE scaffolds in comparison to those on Coll scaffolds. Finally, CollE scaffolds were also able to support human islet culture in vitro. In conclusion, CollE scaffolds have the potential to improve the clinical outcome of marginal islet transplantation at extrahepatic sites by promoting angiogenesis and islet-specific ECM deposition."	"CAPN2 acts as an indicator of hepatitis B virus to induce hepatic fibrosis. This study is aimed to investigate whether calpain 2 (CAPN2) serves as an indicator of the hepatitis B virus (HBV) to induce hepatic fibrosis. Differentially-expressed genes (DEGs) in HBV-induced hepatic fibrosis and normal liver tissues were analyzed, and signal pathway which was analyzed by the Kyoto Encyclopedia of Genes and Genomes (KEGG) analysis using DEGs. Next, the gene-related network map was constructed using the Search Tool for the Retrieval of Interacting Genes. Moreover, CAPN2 protein expression, level of hepatic fibrosis, CAPN2 messenger RNA level, and protein levels of CAPN2, a-SAM, COL3A1, COL1A1, and MAPK1 were determined using Immunohistochemistry (IHC), hematoxylin and eosin, RT-qPCR, and western blot (WB), respectively. There were 420 DEGs screened in HBV-induced hepatic fibrosis and normal liver tissues, among which, 373 were significantly upregulated and 47 were obviously downregulated. KEGG analysis showed that the upregulated DEGs were mainly concentrated in extracellular matrix-receptor interaction, protein digestion, and absorption signaling pathways. The network diagram analysis showed that the DEGs, such as CAPN2, ITGAV, and CCR2, play the key role in the DEG network map, and CAPN2 related to hepatic fibrosis via MAPK1. The increased CAPN2 expression and obvious hepatic fibrosis was displayed in the HBV-induced hepatic fibrosis tissues. In addition, HBV could induce CAPN2 expression, and the interference of CAPN2 could inhibit the expression of hepatic fibrosis markers, including a-SAM, COL3A1, COL1A1, and MAPK1. CAPN2 is regarded as a biomarker of hepatic fibrosis induced by HBV."	"Sudden death in acrogeria Gottron type. In this paper, we describe the case of a 29-year-old Caucasian male who was reported dead in his home. In 2010, a diagnosis of acrogeria, Gottron type was obtained by genetic analysis of a COL3A1 gene mutation. External examination showed typical characteristics of acrogeria, Gottron type. Autopsy showed a full-thickness laceration in the inferior vena cava wall, which caused hemorrhage and death. Samples of inferior vena cava were processed by Masson trichrome staining, which revealed a reduction in vessel wall thickness and a decrease in the amount of elastic fibers. An antibody reaction with BCL-2 was intensely positive. Our case is extremely rare in the medical field and in the world of scientific literature, both because the patient had a variant of acrogeria, Gottron type and because of the cause of death, which is not typical of Ehlers-Danlos syndrome. To the best of our knowledge, this very rare event has not previously been reported in the international scientific literature."	"Genetic polymorphisms in collagen-related genes are associated with pelvic organ prolapse. Pelvic organ prolapse (POP) is a common health issue that has a profound negative influence on women's quality of life. Genetic susceptibility to POP has been increasingly investigated. In this study, we assessed the single-nucleotide polymorphisms (SNPs) of six collagen-related genes (COL14A1, COL5A1, COL4A2, COL3A1, COL1A1, and COL18A1) and the genetic association with POP in Chinese women. We performed a candidate gene association study of case women (n = 48) with stage III and IV prolapse and control women (n = 48) without prolapse. A target region sequencing approach was used to identify the SNPs in collagen-related genes. The association between SNPs and POP was examined by Fisher exact tests for unadjusted model and logistic regression analysis adjusted for delivery and pregnancy. There was a significant association between COL14A1 SNPs (rs4870723, rs2305600, and rs2305598; P = 0.013, 0.019, and 0.028, respectively), a COL5A1 SNP (rs3827852; P = 0.016), and COL4A2 SNPs (rs76425569, rs388222, and rs2281968; P = 0.049 for the three, and rs445348, P = 0.040) and POP, respectively. Although there was no significant association between the COL3A1 SNP and POP, there was a trend toward significance for COL14A1 SNP (rs2305603), COL4A2 SNP (rs74941798), two COL1A1 SNPs (rs2586488 and rs2249492) and three COL18A1 SNPs (rs1050351, rs56335679, and rs55690336), and POP. We are the first to evaluate the relationship between COL14A1, COL5A1, and COL4A2 polymorphisms and POP, besides COL3A1, COL1A1, and COL18A1, which have been reported previously. We found several candidate SNPs that were significantly associated with prolapse in Chinese women. Our results provide new evidence for further investigation of the involvement of these potential genes in the etiology of POP."	"Type III collagen is a key regulator of the collagen fibrillar structure and biomechanics of articular cartilage and meniscus. Despite the fact that type III collagen is the second most abundant collagen type in the body, its contribution to the physiologic maintenance and repair of skeletal tissues remains poorly understood. This study queried the role of type III collagen in the structure and biomechanical functions of two structurally distinctive tissues in the knee joint, type II collagen-rich articular cartilage and type I collagen-dominated meniscus. Integrating outcomes from atomic force microscopy-based nanomechanical tests, collagen fibril nanostructural analysis, collagen cross-link analysis and histology, we elucidated the impact of type III collagen haplodeficiency on the morphology, nanostructure and biomechanical properties of articular cartilage and meniscus in Col3a1<sup>+/-</sup> mice. Reduction of type III collagen leads to increased heterogeneity and mean thickness of collagen fibril diameter, as well as reduced modulus in both tissues, and these effects became more pronounced with skeletal maturation. These data suggest a crucial role of type III collagen in mediating fibril assembly and biomechanical functions of both articular cartilage and meniscus during post-natal growth. In articular cartilage, type III collagen has a marked contribution to the micromechanics of the pericellular matrix, indicating a potential role in mediating the early stage of type II collagen fibrillogenesis and chondrocyte mechanotransduction. In both tissues, reduction of type III collagen leads to decrease in tissue modulus despite the increase in collagen cross-linking. This suggests that the disruption of matrix structure due to type III collagen deficiency outweighs the stiffening of collagen fibrils by increased cross-linking, leading to a net negative impact on tissue modulus. Collectively, this study is the first to highlight the crucial structural role of type III collagen in both articular cartilage and meniscus extracellular matrices. We expect these results to expand our understanding of type III collagen across various tissue types, and to uncover critical molecular components of the microniche for regenerative strategies targeting articular cartilage and meniscus repair."	"Prechondrogenic ATDC5 Cell Attachment and Differentiation on Graphene Foam; Modulation by Surface Functionalization with Fibronectin. Graphene foam holds promise for tissue engineering applications. In this study, graphene foam was used as a three-dimension scaffold to evaluate cell attachment, cell morphology, and molecular markers of early differentiation. The aim of this study was to determine if cell attachment and elaboration of an extracellular matrix would be modulated by functionalization of graphene foam with fibronectin, an extracellular matrix protein that cells adhere well to, prior to the establishment of three-dimensional cell culture. The molecular dynamic simulation demonstrated that the fibronectin-graphene interaction was stabilized predominantly through interaction between the graphene and arginine side chains of the protein. Quasi-static and dynamic mechanical testing indicated that fibronectin functionalization of graphene altered the mechanical properties of graphene foam. The elastic strength of the scaffold increased due to fibronectin, but the viscoelastic mechanical behavior remained unchanged. An additive effect was observed in the mechanical stiffness when the graphene foam was both coated with fibronectin and cultured with cells for 28 days. Cytoskeletal organization assessed by fluorescence microscopy demonstrated a fibronectin-dependent reorganization of the actin cytoskeleton and an increase in actin stress fibers. Gene expression assessed by quantitative real-time polymerase chain reaction of 9 genes encoding cell attachment proteins (Cd44, Ctnna1, Ctnnb1, Itga3, Itga5, Itgav, Itgb1, Ncam1, Sgce), 16 genes encoding extracellular matrix proteins (Col1a1, Col2a1, Col3a1, Col5a1, Col6a1, Ecm1, Emilin1, Fn1, Hapln1, Lamb3, Postn, Sparc, Spp1, Thbs1, Thbs2, Tnc), and 9 genes encoding modulators of remodeling (Adamts1, Adamts2, Ctgf, Mmp14, Mmp2, Tgfbi, Timp1, Timp2, Timp3) indicated that graphene foam provided a microenvironment conducive to expression of genes that are important in early chondrogenesis. Functionalization of graphene foam with fibronectin modified the cellular response to graphene foam, demonstrated by decreases in relative gene expression levels. These findings illustrate the combinatorial factors of microscale materials properties and nanoscale molecular features to consider in the design of three-dimensional graphene scaffolds for tissue engineering applications."	"Targetable cellular signaling events mediate vascular pathology in vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is an autosomal-dominant connective tissue disorder caused by heterozygous mutations in the COL3A1 gene, which encodes the pro-α 1 chain of collagen III. Loss of structural integrity of the extracellular matrix is believed to drive the signs and symptoms of this condition, including spontaneous arterial dissection and/or rupture, the major cause of mortality. We created 2 mouse models of vEDS that carry heterozygous mutations in Col3a1 that encode glycine substitutions analogous to those found in patients, and we showed that signaling abnormalities in the PLC/IP3/PKC/ERK pathway (phospholipase C/inositol 1,4,5-triphosphate/protein kinase C/extracellular signal-regulated kinase) are major mediators of vascular pathology. Treatment with pharmacologic inhibitors of ERK1/2 or PKCβ prevented death due to spontaneous aortic rupture. Additionally, we found that pregnancy- and puberty-associated accentuation of vascular risk, also seen in vEDS patients, was rescued by attenuation of oxytocin and androgen signaling, respectively. Taken together, our results provide evidence that targetable signaling abnormalities contribute to the pathogenesis of vEDS, highlighting unanticipated therapeutic opportunities."	"Identification of hub genes correlated with the pathogenesis and prognosis of gastric cancer via bioinformatics methods. Gastric cancer (GC) is the fourth most common cause of cancer-related deaths in the world and 5-year overall survival (OS) rate is less than 10%. So, it is urgent to identified novel diagnostic and prognostic biomarkers. Twelve GEO (gene expression omnibus) datasets were obtained from the Gene Expression Omnibus database. Differentially expressed genes (DEGs) between GC and normal tissues were screened and integrated using limma and RobustRankAggreg (RRA) packages in R software. Protein-protein interaction (PPI) network, GO (Gene Ontology) and KEGG (Kyoto Encyclopedia of Genes and Genomes) analyses for DEGs were conducted via STRING and DAVID, respectively. Moreover, Cox regression model was used to construct a gene prognosis signature. Ten genes (COL1A1, CXCL8, COL3A1, SPP1, COL1A2, TIMP1, CXCL1, BGN, MMP3 and SERPINE1) were identified and might be highly related to GC. Further analysis showed high expression of CXCL8, COL3A1, CXCL1, MMP3 and SERPINE1, were significantly associated with late stage of GC. Lastly, we build a seven-gene prognosis signature (CYP19A1, SERPINE1, CGB5, CALCR, ASGR2, CYTL1 and ABCB5), which can give a good prediction of OS. Our article screened out key genes highly associating with GC's developments and prognosis, and it is useful for researcher to further understand GC's molecular basis and direct the synthesis medicine of GC."	"Gene expression profiles of differentiated and undifferentiated adipose derived mesenchymal stem cells dynamically seeded onto a processed nerve allograft. Differentiation of mesenchymal stem cells (MSCs) into Schwann-like cells onto processed nerve allografts may support peripheral nerve repair. The purpose of this study was to understand the biological characteristics of undifferentiated and differentiated MSCs before and after seeding onto a processed nerve allograft by comparing gene expression profiles. MSCs from Lewis rats were cultured in maintenance media or differentiated into Schwann-like cells. Both treatment groups were dynamically seeded onto decellularized nerve allografts derived from Sprague-Dawley rats. Gene expression was quantified by quantitative polymerase chain reaction (qPCR) analysis of representative biomarkers, including neurotrophic (GDNF, PTN, GAP43, PMP22), angiogenic (CD31, VEGF1), extracellular matrix (ECM) (COL1A1, COL3A1, FBLN1, LAMB2) or cell cycle (CAPS3, CCBN2) genes. Gene expression values were statistically evaluated using a 2-factor ANOVA with repeated measures. Baseline gene expression of undifferentiated and differentiated MSCs was significantly altered upon interaction with processed nerve allografts. Interaction between processed allografts and undifferentiated MSCs enhanced expression of neurotrophic (NGF, GDNF, PMP22), ECM (FBLN1, LAMB2) and regulatory cell cycle genes (CCNB2) during a 7-day time course. Interactions of differentiated MSCs with nerve allografts enhanced expression of neurotrophic (NGF, GDNF, GAP43), angiogenic (VEGF1), ECM (FBLN1) and regulatory cell cycle genes (CASP3, CCNB2) within one week. Dynamic seeding onto processed nerve allografts modulates temporal gene expression profiles of differentiated and undifferentiated MSCs. These changes in gene expressions may support the reparative functions of MSCs in supporting nerve regeneration in different stages of axonal growth."	"Application of the 2017 criteria for vascular Ehlers-Danlos syndrome in 50 patients ascertained according to the Villefranche nosology. Vascular Ehlers-Danlos syndrome (vEDS) is a rare inherited connective tissue disorder due to heterozygous pathogenic COL3A1 variants. Arterial, intestinal, and/or uterine fragility is the disease hallmark and results in reduced life expectancy. The clinical diagnosis is not always straightforward and patients' selection for molecular confirmation depends on the characteristics of applied criteria, that is, the Villefranche criteria (in use until 2017) and their revision according to the new EDS nosology. Herein, we reassessed the clinical features of 50 molecularly proven vEDS patients, diagnosed according to the Villefranche nosology between 2000 and 2016, using the 2017 classification in order to explore its clinical application. Our findings indicate that the Villefranche criteria were particularly valuable for symptomatic patients, even if with a limited specificity. Our study also suggests that the revised vEDS criteria, although expected to be more specific, might have a poorer accuracy, principally in terms of sensitivity. Both sets of criteria are less effective in presymptomatic young patients, especially in the absence of a clear-cut family history. For these patients, the careful evaluation of the cutaneous, articular, and dysmorphic features and, above all, genetic testing remain crucial to set-up proper follow-up and surveillance before catastrophic vascular and intestinal events."	"Vascular Ehlers-Danlos syndrome in 2 Polish patients: identification of 2 novel COL3A1 gene mutations. NA"	"Hydroxycamptothecin Inhibits Peritendinous Adhesion via the Endoplasmic Reticulum Stress-Dependent Apoptosis. Traumatic peritendinous fibrosis is a worldwide clinical problem resulting in severe limb disability. Hydroxycamptothecin (HCPT) is an anti-neoplastic drug widely exploited in clinical practice. It has shown potential of anti-fibrosis in recent years. We previously demonstrated that HCPT inhibited the characterization of fibrosis in vitro. However, it is still unclear whether it ameliorates peritendinous adhesion in an in vivo animal tendon injury model. The underlying mechanism is also worth investigating. The present study aims to determine whether HCPT inhibits tendon adhesion and to explore the underlying mechanisms. In a rat tendon injury model, we observed that topical application of HCPT significantly attenuated peritendinous adhesion as revealed by the results of macroscopic observation, biomechanical, histological, immunohistochemical evaluation, western blot, and quantitative PCR (q-PCR) analyses. Furthermore, western blot and q-PCR analyses revealed that this phenomenon is correlated with HCPT activation of endoplasmic reticulum (ER) stress. In addition, in vitro studies show that HCPT significantly inhibits fibroblast proliferation and induces apoptosis by reducing the expression of extracellular matrix (ECM) proteins COL3A1 and α-smooth muscle actin (α-SMA). Finally, we employed small interfering RNA (siRNA) to target inositol requiring kinase 1 (IRE1) and activated transcription factor 6 (ATF-6) to verify that the effect of inhibitory fibrosis of HCPT disappears after knockdown of ATF-6 and IRE1, thereby suggesting that an anti-fibrotic effect of HCPT is mediated by the ER-dependent apoptotic pathway. In conclusion, our results indicate that HCPT inhibits peritendinous fibrosis through the ER-dependent apoptotic pathway and might serve as a potential solution to prevent traumatic peritendinous adhesion."	"Immunohistochemical validation of COL3A1, GPR158 and PITHD1 as prognostic biomarkers in early-stage ovarian carcinomas. Ovarian cancer is the main cause of gynecological cancer-associated death. However, 5-year survival rates differ dramatically between the five main ovarian carcinoma histotypes. Therefore, we need to have a better understanding of the mechanisms that promote histotype-specific ovarian carcinogenesis and identify novel prognostic biomarkers. Here, we evaluated the prognostic role of 29 genes for early-stage (I and II) ovarian carcinomas (n = 206) using immunohistochemistry (IHC). We provide evidence of aberrant protein expression patterns for Collagen type III alpha 1 chain (COL3A1), G protein-coupled receptor 158 (GPR158) and PITH domain containing 1 (PITHD1). Kaplan-Meier survival analysis revealed that COL3A1 expression was associated with shorter overall survival in the four major histotypes of epithelial ovarian carcinoma patients (P value = 0.026, HR = 2.99 (95% CI 1.089-8.19)). Furthermore, GPR158 and PITHD1 were shown to be histotype-specific prognostic biomarkers, with elevated GPR158 expression patterns in mucinous ovarian carcinoma patients with unfavorable overall survival (P value = 0.00043, HR = 6.13 (95% CI 1.98-18.98)), and an association with lower PITHD1 protein expression and unfavorable overall and disease-specific survival in clear-cell ovarian carcinoma patients (P value = 0.012, HR = 0.22 (95% CI 0.058-0.80); P value = 0.003, HR = 0.17 (95% CI 0.043-0.64)). The novel biomarkers identified here may improve prognostication at the time of diagnosis and may assist in the development of future individualized therapeutic strategies for ovarian carcinoma patients."	"Classical Ehlers-Danlos syndrome with a propensity to arterial events: A new report on a French family with a COL1A1 p.(Arg312Cys) variant. Ehlers-Danlos syndromes (EDS) are a clinically and genetically heterogeneous group of connective tissue disorders. Overlapping features including arterial aneurysms/dissections in both classical and vascular EDS are a major challenge in the clinical diagnosis of these subtypes. The COL1A1 p.(Arg312Cys) variant leads to a phenotype of classical EDS with a propensity to arterial complications. Our report describes a two-generation family with one individual presenting with a dissection of the right external iliac artery. The primary suspicion of vascular EDS with the unsatisfactory identification of a COL3A1 benign variant was secondarily readjusted with the identification of COL1A1 p.(Arg312Cys) variant. This raises the question of the association of COL1A1 p.(Arg312Cys) with arterial complications and the need for a gene panel including not only the usual genes tested in search of classical or vascular EDS but also COL1A1."	"Collagens and DNA methyltransferases in mare endometrosis. Inflammation and fibroproliferative diseases may be modulated by epigenetic changes. Therefore, we suggest that epigenetic mechanisms could be involved in equine endometrosis pathogenesis. DNA methylation is one of the methods to evaluate epigenetics, through the transcription of methyltransferases (DNMT1, DNMT3A, DNMT3B). The correlation between DNMTs and collagen (COL) transcripts was assessed for the different Kenney and Doig's (Current Therapy in Theriogenology. Philadelphia: WB Saunders; 1986) endometrium categories. Endometrial biopsies were randomly collected from cyclic mares. Histological classification (category I, n = 13; II A, n = 17; II B, n = 12; and III, n = 7) and evaluation of COL1A2, COL3A1 and DNMTs transcripts by qPCR, were performed. Data were analysed by one-way analysis of variance (ANOVA), Kruskal-Wallis test and Pearson correlation. As mares aged, there was an increase in endometrium fibrosis (p &lt; .01), and in DNMT1 mRNA (p &lt; .001). Considering DNMT3B transcripts for each category, there was an increase with fibrosis (p &lt; .05). No changes were observed for DNMT1 and DNMT3A transcripts. However, DNMT3A mRNA levels were the highest in all categories (p &lt; .01). In category I endometrium, a positive correlation was observed for transcripts of all DNMTs in both COLs (p &lt; .01). In category IIA, this correlation was also maintained for all DNMTs transcripts in COL1A2 (p &lt; .05), but only for DNMT3B in COL3A1 (p &lt; .05). In category IIB, there was a positive correlation between DNMT3B and COL3A1 (p &lt; .05). In category III, a positive correlation was only observed between DNMT3B and COL3A1 (p &lt; .05). Our results suggest that there is a disturbance in COLs and DNMTs correlation during fibrosis."	"Autologous Cell Therapy for Aged Human Skin: A Randomized, Placebo-Controlled, Phase-I Study. Skin ageing involves senescent fibroblast accumulation, disturbance in extracellular matrix (ECM) homeostasis, and decreased collagen synthesis. to assess a cell therapy product for aged skin (RCS-01; verum) consisting of ~25 × 106 cultured, autologous cells derived from anagen hair follicle non-bulbar dermal sheath (NBDS). For each subject in the verum group, 4 areas of buttock skin were injected intradermally 1 or 3 times at monthly intervals with RCS-01, cryomedium, or needle penetration without injection; in the placebo group RCS-01 was replaced by cryomedium. The primary endpoint was assessment of local adverse event profiles. As secondary endpoints, expression of genes related to ECM homeostasis was assessed in biopsies from randomly selected volunteers in the RCS-01 group taken 4 weeks after the last injection. -Results: Injections were well tolerated with no severe adverse events reported 1 year after the first injection. When compared with placebo-treated skin, a single treatment with RCS-01 resulted in a significant upregulation of TGFβ1, CTGF, COL1A1, COL1A2, COL3A1, and lumican mRNA expression. The cohort size was insufficient for dose -ranging evaluation and subgroup analyses of efficacy. RCS-01 therapy is well tolerated and associated with a gene expression response consistent with an improvement of ECM homeostasis."	"The Effects of Photobiomodulation on Vocal Fold Wound Healing: In Vivo and In Vitro Studies.  Background:  Photobiomodulation (PBM) is increasingly used in dermatology and dentistry due to its benefit of promoting wound healing and relieving pain; however, there is no corresponding research report on the application of PBM to vocal fold wound healing.  Objective:  To assess the potential wound-healing effects of PBM on the vocal folds via in vivo and in vitro experiments.  Materials and methods:  In in vitro study, vocal fold fibroblasts (VFFs) were irradiated under a diode laser with wavelength of 635 nm at energy density of 8 J/cm<sup>2</sup>. The Cell Counting Kit-8 (CCK-8) assay was used to study the viability of VFFs, and the gene expressions of COL1A2, COL3A1, IL-6, HAS2, and COX-2 were investigated by real-time polymerase chain reaction (RT-PCR). In in vivo study, 15 rabbits were used. Lamina propria of the left vocal folds of 12 rabbits was unilaterally stripped, and 6 of them were treated with PBM. The remaining three rabbits served as normal controls. After 3 months, all animals were sacrificed to obtain histological results. We used laryngoscope to record images of the healing phase.  Results:  Irradiation with energy density of 8 J/cm<sup>2</sup> resulted in a 2.8% increase in cell proliferation (p &lt; 0.05). However, the difference between the experimental and the control group became larger after 48 and 72 h of subsequent irradiation. RT-PCR results showed that the expression of COL1A2, COL3A1, and HAS2 was higher, and the expression of IL-6 and COX-2 was lower. Histological examination showed that, compared with the injury group, hyaluronic acid (HA) increased significantly, collagen deposition decreased, and the configuration of collagen was more organized after PBM treatment.  Conclusions:  PBM can inhibit inflammatory reaction and promote the secretion of HA to decrease the deposition of collagen and regenerate vocal fold tissue without scar."	"Hypothermia and nutrient deprivation alter viability of human adipose-derived mesenchymal stem cells. Adipose-derived mesenchymal stem cells (MSCs) are attractive biological agents in regenerative medicine. To optimize cell therapies, it is necessary to determine the most effective delivery method for MSCs. Therefore, we evaluated the biological properties of MSCs after exposure to various temperatures to define optimal storage conditions prior to therapeutic delivery of MSCs. Prospective observational study. Adherent and non-adherent MSCs were incubated at multiple temperatures (i.e., 4, 23 and 37 °C) in Lactated Ringers (LR) solution lacking essential cell growth ingredients, or in culture media which is optimized for cell growth. Cells were assessed either after the temperature changes (4 h) or after recovery (24 h). Metabolic activity of MSCs, cell number and expression of representative mRNA biomarkers were evaluated to assess the biological effects of temperature. We monitored changes in mRNAs expression related to cytoprotective- or stress-related responses (e.g., FOS, JUN, ATF1, ATF4, EGR1, EGR2, MYC), proliferation (e.g., HIST2H4, CCNB2), and extracellular matrix production (ECM; e.g., COL3A1, COL1A1) by quantitative real time reverse-transcriptase polymerase chain reaction (RT-qPCR) analysis. Our study demonstrates that storing MSCs in Lactated Ringers (LR) solution for 4 h decreases cell number and metabolic activity. The number of viable MSCs decreased significantly when cultured at physiological temperature (37 °C) and severe hypothermia (4 °C), while cells grown at ambient temperature (23 °C) exhibited the least detrimental effects. There were no appreciable biological differences in mRNA markers for proliferation or ECM deposition at any of the temperatures. However, biomarkers related to cytoprotective- or stress-responses were selectively elevated depending on temperature or media type (i.e., LR versus standard media). The biological impact of nutrient-free media and temperature changes after 4 h exposure persists after a 24 h recovery period. Hence, storage temperature and media conditions should be optimized to improve effective dosing of MSCs."	"Construction of a circular RNA-microRNA-messengerRNA regulatory network in stomach adenocarcinoma. Circular RNAs (circRNAs) can interact with microRNAs (miRNAs) to regulate gene expression in cancer cells. However, the roles of competitive endogenous RNA (ceRNA) networks consisting of differentially expressed circRNAs (DECs), miRNAs, and messenger RNAs (mRNAs) in stomach adenocarcinoma (STAD) remain unclear. This study was performed to explore novel regulatory networks in STAD. The circRNA expression profiles, as well as miRNA and mRNA sequence data of STAD, were retrieved from the Gene Expression Omnibus (GEO) and The Cancer Genome Atlas (TCGA), respectively. Candidates were identified to construct a network through a comprehensive bioinformatics strategy. The expression of hub-genes identified by protein-protein interactions (PPI) was validated by quantitative reverse transcription (RT) polymerase chain reaction. A total of 51 DECs were identified in the GSE83521 and GSE89143 datasets of GEO. A total of 11 448 differentially expressed mRNAs (DEMs) and 458 differentially expressed miRNAs (DEMIs) were obtained by RNA sequencing of TCGA-STAD. Prediction by using five online databases (Cancer-Specific CircRNA, CircInteractome, miRTarBase, miRDB, and TargetScan) resulted in the selection of 6 DECs, 6 DEMIs, and 36 DEMs to establish a circRNA-miRNA-mRNA regulatory network based on the interactions of circRNA-miRNA and miRNA-mRNA. Through PPI analysis, four hub-genes (COL10A1, COL5A2, COL4A1, and COL3A1) were discovered. Moreover, overexpressions of COL10A1, COL5A1, and COL4A1 were associated with a poor overall survival rate of patients with STAD. On the basis of TNM staging, we found that the expressions of COL10A1, COL5A2, and COL3A1 in T2, T3, and T4 was significantly higher than in T1. Hub-genes expressions were validated in STAD tissues and cell lines. Our study provides a novel perspective on the regulatory mechanism of STAD involving ceRNAs including DECs, DEMIs, and DEMs."	"The cannabinoid receptor 1 is involved in renal fibrosis during chronic allograft dysfunction: Proof of concept. Chronic allograft dysfunction (CAD), defined as the replacement of functional renal tissue by extracellular matrix proteins, remains the first cause of graft loss. The aim of our study was to explore the potential role of the cannabinoid receptor 1 (CB1) during CAD. We retrospectively quantified CB1 expression and correlated it with renal fibrosis in 26 kidney-transplanted patients who underwent serial routine kidney biopsies. Whereas CB1 expression was low in normal kidney grafts, it was highly expressed during CAD, especially in tubular cells. CB1 expression significantly increased early on after transplantation, from day 0 (D0) to month 3 post-transplant (M3) (22.5% ± 15.4% vs 33.4% ± 13.8%, P &lt; .01), and it remained stable thereafter. CB1 expression correlated with renal fibrosis at M3 (P = .04). In an in vitro model of tacrolimus-mediated fibrogenesis by tubular cells, we found that tacrolimus treatment significantly induced mRNA and protein expression of CB1 concomitantly to col3a1 and col4a3 up regulation. Administration of rimonabant, a CB1 antagonist, blunted collagen synthesis by tubular cells (P &lt; .05). Overall, our study strongly suggests an involvement of the cannabinoid system in the progression of fibrosis during CAD and indicates the therapeutic potential of CB1 antagonists in this pathology."	"Sex differences in the response to angiotensin II receptor blockade in a rat model of eccentric cardiac hypertrophy. Background. Men and women differ in their susceptibility to cardiovascular disease, though the underlying mechanism has remained elusive. Heart disease symptoms, evolution and response to treatment are often sex-specific. This has been studied in animal models of hypertension or myocardial infarction in the past but has received less attention in the context of heart valve regurgitation. The aim of the study was to evaluate the development of cardiac hypertrophy (CH) in response to left ventricle (LV) volume overload (VO) caused by chronic aortic valve regurgitation (AR) in male and female rats treated or not with angiotensin II receptor blocker (ARB), valsartan. We studied eight groups of Wistar rats: male or female, AR or sham-operated (sham) and treated or not with valsartan (30 mg/kg/day) for 9 weeks starting one week before AR surgical induction. Results. As expected, VO from AR resulted for both male and female rats in significant LV dilation (39% vs. 40% end-diastolic LV diameter increase, respectively; p &lt; 0.0001) and CH (53% vs. 64% heart weight increase, respectively; p &lt; 0.0001) compared to sham. Sex differences were observed in LV wall thickening in response to VO. In untreated AR males, relative LV wall thickness (a ratio of wall thickness to end-diastolic diameter) was reduced compared to sham, whereas this ratio in females remained unchanged. ARB treatment did not prevent LV dilation in both male and female animals but reversed LV wall thickening in females. Systolic and diastolic functions in AR animals were altered similarly for both sexes. ARB treatment did not improve systolic function but helped normalizing diastolic parameters such as left atrial mass and E wave slope in female AR rats. Increased LV gene expression of Anp and Bnp was normalized by ARB treatment in AR females but not in males. Other hypertrophy gene markers (Fos, Trpc6, Klf15, Myh6 and Myh7) were not modulated by ARB treatment. The same was true for genes related to LV extracellular matrix remodeling (Col1a1, Col3a1, Fn1, Mmp2, Timp1 and Lox). In summary, ARB treatment of rats with severe AR blocked the female-specific hypertrophic response characterized by LV chamber wall thickening. LV dilation, on the other hand, was not significantly decreased by ARB treatment. This also indicates that activation of the angiotensin II receptor is probably more involved in the early steps of LV remodeling caused by AR in females than in males."	"Role of lysyl oxidase like 1 in regulation of postpartum connective tissue metabolism in the mouse vagina†. Pelvic organ prolapse (POP) in lysyl oxidase like-1 knockout (Loxl1 KO) mice occurs primarily in parous mice and is rare in nulliparous mice. We determined the effect of Loxl1 deficiency on postpartum regulation of connective tissue metabolism genes and degradative enzyme activity in the vagina at 20 days gestation or 4 h, 48 h, 7 days, 15 days, 25 days, 7 weeks, or 12 weeks postpartum. Nulliparous Loxl1 KO and wildtype (WT) mice aged 11, 18, or 23 weeks were controls. Gene expression and enzyme activity were assessed using real-time quantitative reverse transcription PCR and fluorescein conjugated gelatin zymography, respectively. Parity, but not aging, had a significant influence on gene expression both with time postpartum and between KO and WT mice. Mmp2, Timp1, Timp2, Timp3, Timp4, Col1a1, Col3a1, Acta2, and Bmp1 were differentially expressed between KO and WT mice. Correlational analysis of gene-gene pairs revealed 10 significant differences between parous KO and WT groups, 5 of which were due to lack of co-expression of Bmp1 in KO mice. The overall enzyme activity that could be attributed to MMPs was significantly higher in WT compared to KO mice both 25 days and 12 weeks postpartum, and MMP activity was significantly lower 15 days and 25 days postpartum compared to KO nulliparous controls, but not WT. These findings suggest that Loxl1 deficiency combined with parity has a significant impact on postpartum regulation of connective tissue metabolism, particularly as it relates to co-expression of Bmp1 and altered proteolytic activity."	"Renal Artery Dissection in a Young Woman: Diagnoses Beyond Fibromuscular Dysplasia. A 31-year-old woman presented at the emergency room after experiencing colic pain in the right iliac fossa for 5 days. She had previously consulted another center, where deterioration of renal function had been identified and abdominal computed tomography (CT) angiography had shown a dissection of the right renal artery, with areas suggestive of infarction in the right kidney, as well as an aneurysm in the left renal artery and a smaller left kidney. The patient had no relevant family or personal history except posttraumatic carotid-cavernous fistula in 2014, which had been treated with embolization. In our hospital, the patient was hypertensive and acute renal failure was confirmed, accompanied by an increase in lactate dehydrogenase and isomorphic microhematuria. After a new CT Scan, in addition to the lesions described in the renal arteries, another aneurysm in the splenic artery and an aneurysm of the right femoral artery were identified. Antihypertensive treatment was initiated with calcium antagonists and anticoagulation. Subsequent renal arteriography confirmed the dissection of the right renal artery, which could not be repaired, and a coated stent was placed in the left renal artery to exclude the aneurysm. The splenic artery lesion was treated 2 months later. The etiological diagnosis in this young woman was challenging. The presence of visceral aneurysms suggested a differential diagnosis comprising fibromuscular dysplasia, vasculitis, and collagenopathies. Using a multidisciplinary approach and directed anamnesis, the presence of frequent sprains, joint hypermobility, and skin fragility was confirmed. Blood immunology and CT angiography including the thoracic and cervical territories were normal. Echocardiography revealed tricuspid insufficiency. All these data suggested the presence of a collagen-like Ehlers-Danlos syndrome (vascular form). The diagnosis was confirmed by the genetic study, which showed a pathogenic mutation in the COL3A1 gene. Currently, the patient is asymptomatic with recovered renal function following treatment with a beta-blocker and antiplatelet therapy."	"A Novel Frameshift COL3A1 Variant in Vascular Ehlers-Danlos Syndrome. Ehlers-Danlos syndromes (EDSs) are a group of heritable connective tissue disorders with distinct genetic etiologies. Of the 13 currently recognized types of EDS, the vascular type EDS (vEDS) is generally considered the most severe and is associated with a decreased life expectancy due to spontaneous arterial, intestinal, and or uterine rupture. Diagnosis of vEDS is supported by genetic testing confirming the presence of pathogenic variations in COL3A1, a type III procollagen gene. Management of vEDS is usually conservative with control of hemodynamic stress, frequent cardiovascular imaging, and, if indicated, a thoughtful endovascular intervention or surgical repair. We present a novel frameshift variant in COL3A1 leading to vEDS with multiple vascular involvements. Based on our literature review, this variant has not been reported and may result in a less severe form of vEDS. Our case report provides insight into genetic variants and clinical expression of vEDS."	"Vascular Ehlers-Danlos Syndrome with a Novel Missense Mutation in COL3A1: A Man in His 50s with Aortic Dissection after Interventional Treatment for Hemothorax as the First Manifestation. Type III collagen is the major protein in the walls of blood vessels and hollow organs; it is decreased in patients with vascular Ehlers-Danlos syndrome (EDS). A 52-year-old man was admitted for severe back pain, and right hemothorax was suspected by chest computed tomography. Immediately after embolization for bleeding bronchial artery, aortic dissection occurred and was treated conservatively in the intensive-care unit. Vascular EDS with a mutation of COL3A1 cDNA (c.3175G&gt;A) was diagnosed. When vascular EDS is suspected, the patient should be treated prophylactically, and a genetic examination should be performed to confirm the diagnosis."	"Identification of Inflammatory Mediators in Tendinopathy Using a Murine Subacromial Impingement Model. Subacromial impingement is associated with a spectrum of disorders-including rotator cuff disease-but their relationship is complex. We have established a novel murine model of subacromial impingement to study supraspinatus tendinopathy. The purpose of this study was to evaluate changes in gene expression in this murine shoulder impingement model to further elucidate the mechanisms underlying the development of tendinopathy. Twenty-eight C57BL/6 mice were used in this study. All mice underwent bilateral surgery with insertion of a small metal clip in the subacromial space or a sham procedure. The supraspinatus tendons underwent histological analyses, biomechanical testing, and RNA extraction for multiplex gene expression analysis (NanoString, Seattle, WA). Histology demonstrated increased cellularity and disorganized collagen fibers of the supraspinatus tendon in the clip impingement group. Mean load to failure (5.20 vs. 1.50 N, p &lt; 0.001) and mean stiffness (4.95 vs. 1.47 N/mm, p &lt; 0.001) were lower in the impingement group than the sham group. NanoString analyses revealed 111 differentially expressed genes (DEGs) between the impingement and sham groups. DEGs of interest included Mmp3 (expression ratio [ER]: 2.68, p = 0.002), Tgfb1 (ER: 1.76, p = 0.01), Col3a1 (ER: 1.66, p = 0.03), and Tgfbr2 (ER: 1.53, p = 0.01). Statement of clinical significance: We identified 111 DEGs that may contribute to the development of tendinopathy in this model. Further studies of these specific genes will allow identification of their roles in the initiation and regulation of tendon damage, and their potential to serve as novel therapeutic targets in the treatment of rotator cuff disease. © 2019 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 37:2575-2582, 2019."	"Deletion of NFKB1 enhances canonical NF-κB signaling and increases macrophage and myofibroblast content during tendon healing. Flexor tendon injuries heal with excessive scar tissue that limits range of motion and increases incidence of re-rupture. The molecular mechanisms that govern tendon healing are not well defined. Both the canonical nuclear factor kappa B (NF-κB) and mitogen activated protein kinase (MAPK) pathways have been implicated in tendon healing. The gene NFKB1 (proteins p105/p50) is involved in both NF-κB and MAPK signaling cascades. In the present study, we tested the hypothesis that global NFKB1 deletion would increase activation of both NF-κB and MAPK through loss of signaling repressors, resulting in increased matrix deposition and altered biomechanical properties. As hypothesized, NFKB1 deletion increased activation of both NF-κB and MAPK signaling. While gliding function was not affected, NFKB1 deletion resulted in tendons that were significantly stiffer and trending towards increased strength by four weeks post-repair. NFKB1 deletion resulted in increased collagen deposition, increase macrophage recruitment, and increased presence of myofibroblasts. Furthermore, NFKB1 deletion increased expression of matrix-related genes (Col1a1, Col3a1), macrophage-associated genes (Adgre1, Ccl2), myofibroblast markers (Acta2), and general inflammation (Tnf). Taken together, these data suggest that increased activation of NF-κB and MAPK via NFKB1 deletion enhance macrophage and myofibroblast content at the repair, driving increased collagen deposition and biomechanical properties."	"Effects of administration of glucosamine and chicken cartilage hydrolysate on rheumatoid arthritis in SKG mice. Supplementation with cartilage constituents, such as glucosamine, chondroitin sulfate and collagen peptide, are believed to reduce pain associated with joint disorders, such as rheumatoid arthritis (RA). Here, we administered daily, 10 mg glucosamine or 100 mg chicken cartilage hydrolysate (CH) to SKG/Jcl mice, a model for spontaneous RA, for 5 weeks and evaluated their effects on RA development. In SKG mice, the administration of glucosamine had no reducing effect on RA score but suppressed the expression of Mmp13 and Col3a1 genes in articular cartilage. In contrast, administration of CH suppressed the RA score and levels of plasma interleukin-6 and interleukin-17 to half, although the differences were not significant. Mice administered with glucosamine also showed decreased bone strength of femur and these adverse effects could be eliminated when glucosamine was used in conjunction with CH. These results suggest that CH and glucosamine exert effects on different aspects in SKG mice."	"A multi-institutional experience in vascular Ehlers-Danlos syndrome diagnosis. Vascular Ehlers-Danlos syndrome (vEDS) is a rare disorder and 1 of 13 types of EDS. The syndrome results in aortic and arterial aneurysms and dissections at a young age. Diagnosis is confirmed with molecular testing via skin biopsy or genetic testing for COL3A1 pathogenic variants. We describe a multi-institutional experience in the diagnosis of vEDS from 2000 to 2015. This is a multi-institutional cross-sectional retrospective study of individuals with vEDS. The institutions were recruited through the Vascular Low Frequency Disease Consortium. Individuals were identified using the International Classification of Diseases-9 and 10-CM codes for EDS (756.83 and Q79.6). A review of records was then performed to select individuals with vEDS. Data abstraction included demographics, family history, clinical features, major and minor diagnostic criteria, and molecular testing results. Individuals were classified into two cohorts and then compared: those with pathogenic COL3A1 variants and those diagnosed by clinical criteria alone without molecular confirmation. Eleven institutions identified 173 individuals (35.3% male, 56.6% Caucasian) with vEDS. Of those, 11 (9.8%) had nonpathogenic alterations in COL3A1 and were excluded from the analysis. Among the remaining individuals, 86 (47.7% male, 68% Caucasian, 48.8% positive family history) had pathogenic COL3A1 variants and 76 (19.7% male, 19.7% Caucasian, 43.4% positive family history) were diagnosed by clinical criteria alone without molecular confirmation. Compared with the cohort with pathogenic COL3A1 variants, the clinical diagnosis only cohort had a higher number of females (80.3% vs 52.3%; P &lt; .001), mitral valve prolapse (10.5% vs 1.2%; P = .009), and joint hypermobility (68.4% vs 40.7%; P &lt; .001). Additionally, they had a lower frequency of easy bruising (23.7% vs 64%; P &lt; .001), thin translucent skin (17.1% vs 48.8%; P &lt; .001), intestinal perforation (3.9% vs 16.3%; P = .01), spontaneous pneumothorax/hemothorax (3.9% vs 14%, P.03), and arterial rupture (9.2% vs 17.4%; P = .13). There were no differences in mortality or age of mortality between the two cohorts. This study highlights the importance of confirming vEDS diagnosis by testing for pathogenic COL3A1 variants rather than relying on clinical diagnostic criteria alone given the high degree of overlap with other forms genetically triggered arteriopathies. Because not all COL3A1 variants are pathogenic, the interpretation of the genetic testing results by an individual trained in variant assessment is essential to confirm the diagnosis. An accurate diagnosis is critical and has serious implications for lifelong screening and treatment strategies for the affected individual and family members."	"Identification and Interaction Analysis of Significant Genes and MicroRNAs in Pterygium. MiRNAs have been widely analyzed in the occurrence and development of many diseases, including pterygium. This study aimed to identify the key genes and miRNAs in pterygium and to explore the underlying molecular mechanisms. MiRNA expression was initially extracted and pooled by published literature. Microarray data about differentially expressed genes was downloaded from Gene Expression Omnibus (GEO) database and analyzed with the R programming language. Functional and pathway enrichment analyses were performed using the database for Annotation, Visualization and Integrated Discovery (DAVID). The protein-protein interaction network was constructed with the STRING database. The associations between chemicals, differentially expressed miRNAs, and differentially expressed genes were predicted using the online resource. All the networks were constructed using Cytoscape. We found that 35 miRNAs and 301 genes were significantly differentially expressed. Functional enrichment analysis showed that upregulated genes were significantly enriched in extracellular matrix (ECM) organization, while downregulated genes were mainly involved in cell death and apoptotic process. Finally, we concluded the chemical-gene affected network, miRNA-mRNA interacted networks, and significant pathway network. We identified lists of differentially expressed miRNAs and genes and their possible interaction in pterygium. The networks indicated that ECM breakdown and EMT might be two major pathophysiological mechanisms and showed the potential significance of PI3K-Akt signalling pathway. MiR-29b-3p and collagen family (COL4A1 and COL3A1) might be new treatment target in pterygium."	"Investigation of activin A in inflammatory responses of the testis and its role in the development of testicular fibrosis. Does activin A contribute to testicular fibrosis under inflammatory conditions? Our results show that activin A and key fibrotic proteins are increased in human testicular biopsies with leukocytic infiltrates and impaired spermatogenesis and in murine experimental autoimmune orchitis (EAO) and that activin A stimulates fibrotic responses in peritubular cells (PTCs) and NIH 3T3 fibroblasts. Fibrosis is a feature of EAO. Activin A, a regulator of fibrosis, was increased in testes of mice with EAO and its expression correlated with severity of the disease. This is a cross-sectional and longitudinal study of adult mice immunized with testicular homogenate (TH) in adjuvant to induce EAO, collected at 30 (n = 6), 50 (n = 6) and 80 (n = 5) days after first immunization. Age-matched mice injected with adjuvant alone (n = 14) and untreated mice (n = 15) were included as controls. TH-immunized mice with elevated endogenous follistatin, injected with a non-replicative recombinant adeno-associated viral vector carrying a gene cassette of follistatin (rAAV-FST315; n = 3) or vector with an empty cassette (empty vector controls; n = 2) 30 days prior to the first immunization, as well as appropriate adjuvant (n = 2) and untreated (n = 2) controls, were also examined.Human testicular biopsies showing focal inflammatory lesions associated with impaired spermatogenesis (n = 7) were included. Biopsies showing intact spermatogenesis without inflammation, from obstructive azoospermia patients, served as controls (n = 7).Mouse primary PTC and NIH 3T3 fibroblasts were stimulated with activin A and follistatin 288 (FST288) to investigate the effect of activin A on the expression of fibrotic markers. Production of activin A by mouse primary Sertoli cells (SCs) was also investigated. Testicular RNA and protein extracts collected from mice at days 30, 50 and 80 after first immunization were used for analysis of fibrotic marker genes and proteins, respectively. Total collagen was assessed by hydroxyproline assay and fibronectin; collagen I, III and IV, α-smooth muscle actin (α-SMA) expression and phosphorylation of suppressor of mothers against decapentaplegic (SMAD) family member 2 were measured by western blot. Immunofluorescence was used to detect fibronectin. Fibronectin (Fn), αSMA (Acta2), collagen I (Col1a2), III (Col3a1) and IV (Col4a1) mRNA in PTC and NIH 3T3 cells treated with activin A and/or FST288 were measured by quantitative RT-PCR (qRT-PCR). Activin A in SC following tumour necrosis factor (TNF) or FST288 stimulation was measured by ELISA. Human testicular biopsies were analysed by qRT-PCR for PTPRC (CD45) and activin A (INHBA), hydroxyproline assay and immunofluorescence. Production of activin A by SC was stimulated by 25 and 50 ng/ml TNF (P &lt; 0.01, P &lt; 0.001, respectively) as compared to untreated cells. INHBA mRNA was increased in human testicular biopsies with leukocytic infiltrates and impaired spermatogenesis, compared with control biopsies (P &lt; 0.05), accompanied by increased total collagen (P &lt; 0.01) and fibronectin deposition. Total testicular collagen (P &lt; 0.0001) and fibronectin protein expression (P &lt; 0.05) were also increased in EAO, and fibronectin expression was correlated with the severity of the disease (r = 0.9028). In animals pre-treated with rAAV-FST315 prior to immunization with TH, protein expression of fibronectin was comparable to control. Stimulation of PTC and NIH 3T3 cells with activin A increased fibronectin mRNA (P &lt; 0.05) and the production of collagen I (P &lt; 0.001; P &lt; 0.01) and fibronectin (P &lt; 0.05). Moreover, activin A also increased collagen IV mRNA (P &lt; 0.05) in PTC, while αSMA mRNA (P &lt; 0.01) and protein (P &lt; 0.0001) were significantly increased by activin A in NIH 3T3 cells. N/A. A limited number of human testicular specimens was available for the study. Part of the study was performed in vitro, including NIH 3T3 cells as a surrogate for testicular fibroblasts. Resident fibroblasts and PTC may contribute to the progression of testicular fibrosis following inflammation, and activin A is implicated as a key mediator of this process. This work was supported by the National Health and Medical Research Council of Australia, the Victorian Government's Operational Infrastructure Support Program and the International Research Training Group between Justus Liebig University (Giessen) and Monash University (Melbourne) (GRK 1871/1-2) on `Molecular pathogenesis on male reproductive disorders' funded by the Deutsche Forschungsgemeinschaft and Monash University. The authors declare no competing financial interests."	"A Rare Case of 7 Simultaneous Arterial Dissections and Review of The Literature. Spontaneous multiple artery dissection is a relatively rare phenomenon. Early clinical signs are often nonspecific, making it difficult to diagnose. This is a case of a 51-year-old female who presented with spontaneous dissection of 4 visceral arteries, both iliac arteries, and of the right internal carotid artery. The patient underwent urgent successful endovascular repair. Later complications included acute respiratory distress syndrome and pneumonia after massive blood transfusion. She recovered gradually and was discharged after 21 days. Due to this rare presentation, genetic investigation was performed in search of a connective tissue disorder. Results revealed a new COL3A1 subtype mutation. The pathogenicity of this variant remains unclear. We recommend a high index of suspicion for visceral artery dissection in the differential diagnosis for abdominal pain with concurrent uncontrolled hypertension. Early diagnosis and intervention are crucial to reducing the mortality rate."	"Aliskiren Attenuates the Inflammatory Response and Wound Healing Process in Diabetic Mice With Periodontal Disease. The aim of this study was to characterize the role of local RAS (renin-angiotensin system) in the inflammatory response of normal (N) and diabetic (D) mice with periodontal disease (PD). Diabetes Mellitus (DM) was induced by peritoneal injection of streptozotocin in Balb/c mice. PD was induced by ligature around the first molar in both N and D, irrespective of whether they were treated with aliskiren (50 mg/kg, Alisk). Mandibles were harvested for histomorphometric analyses, and gingival tissue (GT) was collected to evaluate gene expression and extracellular matrix components (ECM). Immunohistochemical (IHC) analyses were used to localize RAS in GT. The production of C-reactive protein (CRP), IL-1β, CXCL2, and CCL8 was evaluated by enzyme-linked immunosorbent assay (ELISA). Renin was found to exacerbate the inflammation and periodontal bone loss at 14 days after PD, and Alisk inhibited this process in GT of N and D. PD increased CRP, CXCL2, CCL8, and IL-1β production in both animals. Alisk could inhibit CRP, CXCL2, and CCL8 primarily in D animals. However, only CCL8 was decreased in N animals after Alisk pretreatment. PD enhanced expression and production of AGT, ACE, AT1R, and AT2R in both N and D. AT1R expression was higher in D with PD, and AT2R expression was higher in N with PD. ACE2 and receptor Mas (MasR) expression and production was elevated in the control group of both animals. PD inhibited ACE2 in N but not in D. MasR expression was unaffected in both N and D with PD. Alisk reduced expression and production of all RAS components in GT of both animals, except for ACE2 in N. RAS staining was observed in all layers of epithelium, basal cell layer, and lamina propria and was higher in N with PD. Col1a1, Col1a2, Col3a1, and fibronectin (Fn1) were increased in both animals with PD. Alisk inhibited Col1a1 and Fn in both animals, Col1a2 was decreased only in D, while levels of Col3a1 remained unchanged in all animal groups. In conclusion, these data demonstrated the presence and functional role of local RAS in GT, exacerbating the inflammatory response, periodontal bone loss, and wound healing processes in both N and D animal groups. In addition, Alisk was able to significantly reduce gingival inflammation, excessive wound healing processes, and periodontal bone loss."	"Adenosine triphosphate enhances osteoblast differentiation of rat dental pulp stem cells via the PLC-IP3 pathway and intracellular Ca <sup>2+</sup> signaling. Intracellular Ca<sup>2+</sup> signals are essential for stem cell function and play a significant role in the differentiation process. Dental pulp stem cells (DPSCs) are a potential source of stem cells; however, the mechanisms controlling cell differentiation remain largely unknown. Utilizing rat DPSCs, we examined the effect of adenosine triphosphate (ATP) on osteoblast differentiation and characterized its mechanism of action using real-time Ca <sup>2+</sup> imaging analysis. Our results revealed that ATP enhanced osteogenesis as indicated by Ca <sup>2+</sup> deposition in the extracellular matrix via Alizarin Red S staining. This was consistent with upregulation of osteoblast genes BMP2, Mmp13, Col3a1, Ctsk, Flt1, and Bgn. Stimulation of DPSCs with ATP (1-300 µM) increased intracellular Ca <sup>2+</sup> signals in a concentration-dependent manner, whereas histamine, acetylcholine, arginine vasopressin, carbachol, and stromal-cell-derived factor-1α failed to do so. Depletion of intracellular Ca <sup>2+</sup> stores in the endoplasmic reticulum by thapsigargin abolished the ATP responses which, nevertheless, remained detectable under extracellular Ca <sup>2+</sup> free condition. Furthermore, the phospholipase C (PLC) inhibitor U73122 and the inositol triphosphate (IP 3 ) receptor inhibitor 2-aminoethoxydiphenyl borate inhibited the Ca <sup>2+</sup> signals. Our findings provide a better understanding of how ATP controls osteogenesis in DPSCs, which involves a Ca <sup>2+</sup> -dependent mechanism via the PLC-IP 3 pathway. This knowledge could help improve osteogenic differentiation protocols for tissue regeneration of bone structures."	"ADAMTS16 activates latent TGF-β, accentuating fibrosis and dysfunction of the pressure-overloaded heart. Cardiac fibrosis is a major cause of heart failure (HF), and mediated by the differentiation of cardiac fibroblasts into myofibroblasts. However, limited tools are available to block cardiac fibrosis. ADAMTS16 is a member of the ADAMTS superfamily of extracellular protease enzymes involved in extracellular matrix (ECM) degradation and remodelling. In this study, we aimed to establish ADAMTS16 as a key regulator of cardiac fibrosis. Western blot and qRT-PCR analyses demonstrated that ADAMTS16 was significantly up-regulated in mice with transverse aortic constriction (TAC) associated with left ventricular hypertrophy and HF, which was correlated with increased expression of Mmp2, Mmp9, Col1a1, and Col3a1. Overexpression of ADAMTS16 accelerated the AngII-induced activation of cardiac fibroblasts into myofibroblasts. Protein structural analysis and co-immunoprecipitation revealed that ADAMTS16 interacted with the latency-associated peptide (LAP)-transforming growth factor (TGF)-β via a RRFR motif. Overexpression of ADAMTS16 induced the activation of TGF-β in cardiac fibroblasts; however, the effects were blocked by a mutation of the RRFR motif to IIFI, knockdown of Adamts16 expression, or a TGF-β-neutralizing antibody (ΝAb). The RRFR tetrapeptide, but not control IIFI peptide, blocked the interaction between ADAMTS16 and LAP-TGF-β, and accelerated the activation of TGF-β in cardiac fibroblasts. In TAC mice, the RRFR tetrapeptide aggravated cardiac fibrosis and hypertrophy by up-regulation of ECM proteins, activation of TGF-β, and increased SMAD2/SMAD3 signalling, however, the effects were blocked by TGF-β-NAb. ADAMTS16 promotes cardiac fibrosis, cardiac hypertrophy, and HF by facilitating cardiac fibroblasts activation via interacting with and activating LAP-TGF-β signalling. The RRFR motif of ADAMTS16 disrupts the interaction between ADAMTS16 and LAP-TGF-β, activates TGF-β, and aggravated cardiac fibrosis and hypertrophy. This study identifies a novel regulator of TGF-β signalling and cardiac fibrosis, and provides a new target for the development of therapeutic treatment of cardiac fibrosis and HF."	"Mesenchymal Stem Cells Reduce Corneal Fibrosis and Inflammation via Extracellular Vesicle-Mediated Delivery of miRNA. Mesenchymal stem cells from corneal stromal stem cells (CSSC) prevent fibrotic scarring and stimulate regeneration of transparent stromal tissue after corneal wounding in mice. These effects rely on the ability of CSSC to block neutrophil infiltration into the damaged cornea. The current study investigated the hypothesis that tissue regeneration by CSSC is mediated by secreted extracellular vesicles (EVs). CSSC produced EVs 130-150 nm in diameter with surface proteins that include CD63, CD81, and CD9. EVs from CSSC reduced visual scarring in murine corneal wounds as effectively as did live cells, but EVs from human embryonic kidney (HEK)293T cells had no regenerative properties. CSSC EV treatment of wounds decreased expression of fibrotic genes Col3a1 and Acta2, blocked neutrophil infiltration, and restored normal tissue morphology. CSSC EVs labeled with carboxyfluorescein succinimidyl ester dye, rapidly fused with corneal epithelial and stromal cells in culture, transferring microRNA (miRNA) to the target cells. Knockdown of mRNA for Alix, a component of the endosomal sorting complex required for transport, using siRNA, resulted in an 85% reduction of miRNA in the secreted EVs. The EVs with reduced miRNA were ineffective at blocking corneal scarring. Furthermore, CSSC with reduced Alix expression also lost their regenerative function, suggesting EVs as an obligate component in the delivery of miRNA. The results of these studies support an essential role for extracellular vesicles in the process by which CSSC cells block scarring and initiate regeneration of transparent corneal tissue after wounding. EVs appear to serve as a delivery vehicle for miRNA, which affects the regenerative action. Stem Cells Translational Medicine 2019;8:1192-1201."	"The effect of aging in primary human dermal fibroblasts. Skin aging is a complex process, and alterations in human skin due to aging have distinct characteristic as compared to other organs. The aging of dermal cells and the biological mechanisms involved in this process are key areas to understand skin aging. A large number of biological mechanisms, such as decreasing of protein synthesis of extracellular matrix or increasing of degradation, are known to be altered through skin aging. However, environmental influence can accelerate this characteristic phenotype. In this study, we analyzed primary human dermal fibroblasts in three different in-vitro aging models-UVB irradiation and accelerated proliferation of human dermal fibroblasts from young donors as well as from elderly donors-for the gene expression of COL1A1, COL1A2, COL3A1, COL4A1, COL7A1, MMP1, MMP2, MMP3, MMP7, MMP8, MMP9, MMP10, MMP12, MMP13, MMP14, TIMP1, TIMP2, TIMP3, TIMP4, IL1B, IL1A, IL6, IL8, IL10, PTGS2, TP53, CASP3, LMNA, SIRT1. We compared the gene expression levels with young control. Furthermore, the behavior of skin fibroblasts was also evaluated using cell growth rate. The findings reveal that the gene expression levels in skin fibroblasts was altered in the process of aging in all three in-vitro aging models, and the cell growth rate was reduced, suggesting that these methods can be employed to understand skin aging mechanisms as well as drug discovery screening method."	"Effect of proinflammatory cytokines on endometrial collagen and metallopeptidase expression during the course of equine endometrosis. Equine endometrosis (endometrial fibrosis) is a degenerative chronic process that occurs in the uterus of the mare and disturbs proper endometrial function. Fibrosis is attributed to excessive deposition of extracellular matrix (ECM) components. The turnover of ECM is mediated by matrix metallopeptidases (MMP). Previously, it was shown that cytokines modulate MMP expression in other tissues and may regulate fibrosis indirectly by attracting inflammatory cells to the site of inflammation and directly on various tissues. However, the regulation of MMP expression in equine endometrosis is still relatively unknown. Thus, our aim was to determine if interleukin (IL)-1β and IL-6 regulate ECM, MMPs, or their inhibitors (TIMPs) and whether this regulation differs during endometrosis in the mare. Endometrial fibrosis was divided into four categories according to severity: I (no degenerative changes), IIA (mild degenerative changes), IIB (moderate degenerative changes) and III (severe degenerative changes) according to Kenney and Doig classification. Endometrial explants (n = 5 for category I, IIA, IIB and III according to Kenney and Doig) were incubated with IL-1β (10 ng/ml) or IL-6 (10 ng/ml) for 24 h. Secretion and mRNA transcription of collagen type 1 (Col1a1) and type 3 (Col3a1), fibronectin (Fn1), Mmp-1, -2, -3, -9, -13, Timp-1, -2 were analyzed by real-time PCR and ELISA, respectively. IL-1β treatment up-regulated secretion of COL1, MMP-2, TIMP1, and TIMP2 in category I endometrial fibrosis tissues (P &lt; 0.05). IL-6 treatment up-regulated secretion of ECM, MMP-2, and MMP-3 and down-regulated secretion of MMP-9 in category I tissues (P &lt; 0.05). In category IIA tissues, IL-1β and IL-6 treatment up-regulated secretion of COL3 (P &lt; 0.05; P &lt; 0.05), and IL-6 treatment also down-regulated secretion of MMP-9 (P &lt; 0.05). In category IIB tissues, IL-1β treatment down-regulated secretion of COL3 (P &lt; 0.05) and up-regulated secretion of MMP-3 (P &lt; 0.01), while IL-6 treatment up-regulated secretion of MMP-3, MMP-9, and MMP-13 (P &lt; 0.05). In category III tissues, IL-1β treatment up-regulated secretion of COL1, MMP-1, MMP-9 and TIMP-2 (P &lt; 0.05), and IL-6 up-regulated secretion of all investigated ECM components, MMPs and TIMPs. These results reveal that the effect of IL-1β and IL-6 on equine endometrium differs depending on the severity of endometrial fibrosis. Our findings indicate an association between inflammation and development of endometrosis through the effect of IL-1β and IL-6 on expression of ECM components, MMPs, and TIMPs in the mare."	"Gene coexpression analysis offers important modules and pathway of human lung adenocarcinomas. Lung adenocarcinomas injured greatly on the people worldwide. Although clinic experiments and gene profiling analyses had been well performed, to our knowledge, systemic coexpression analysis of human genes for this cancer is still limited to date. Here, using the published data GSE75037, we built the coexpression modules of genes by Weighted Gene Co-Expression Network Analysis (WGCNA), and investigated function and protein-protein interaction network of coexpression genes by Database for Annotation, visualization, and Integrated Discovery (DAVID) and String database, respectively. First, 11 coexpression modules were conducted for 5,000 genes in the 83 samples recently. Number of genes for each module ranged from 90 to 1,260, with the mean of 454. Second, interaction relationships of hub-genes between pairwise modules showed great differences, suggesting relatively high scale independence of the modules. Third, functional enrichment of the coexpression modules showed great differences. We found that genes in modules 8 significantly enriched in the biological process and/or pathways of cell adhesion, extracellular matrix (ECM)-receptor interaction, focal adhesion, and PI3K-Akt signaling pathway, and so forth. It was inferred as the key module underlying lung adenocarcinomas. Furthermore, PPI analysis revealed that the genes COL1A1, COL1A2, COL3A1, CTGF, and BGN owned the largest number of adjacency genes, unveiling that they may functioned importantly during the occurrence of lung adenocarcinomas. To summary, genes involved in cell adhesion, ECM-receptor interaction, focal adhesion, and PI3K-Akt signaling pathway play crucial roles in human lung adenocarcinomas."	"Fetal Programming of Renal Dysfunction and High Blood Pressure by Chronodisruption. Adverse prenatal conditions are known to impose significant trade-offs impinging on health and disease balance during adult life. Among several deleterious factors associated with complicated pregnancy, alteration of the gestational photoperiod remains largely unknown. Previously, we reported that prenatal manipulation of the photoperiod has adverse effects on the mother, fetus, and adult offspring; including cardiac hypertrophy. Here, we investigated whether chronic photoperiod shifting (CPS) during gestation may program adult renal function and blood pressure regulation. To this end, pregnant rats were subjected to CPS throughout pregnancy to evaluate the renal effects on the fetus and adult offspring. In the kidney at 18 days of gestation, both clock and clock-controlled gene expression did not display a daily pattern, although there were recurrent weaves of transcriptional activity along the 24 h in the control group. Using DNA microarray, significant differential expression was found for 1,703 transcripts in CPS relative to control fetal kidney (835 up-regulated and 868 down-regulated). Functional genomics assessment revealed alteration of diverse gene networks in the CPS fetal kidney, including regulation of transcription, aldosterone-regulated Na+ reabsorption and connective tissue differentiation. In adult offspring at 90 days of age, circulating proinflammatory cytokines IL-1β and IL-6 were increased under CPS conditions. In these individuals, CPS did not modify kidney clock gene expression but had effects on different genes with specific functions in the nephron. Next, we evaluated several renal markers and the response of blood pressure to 4%NaCl in the diet for 4 weeks (i.e., at 150 days of age). CPS animals displayed elevated systolic blood pressure in basal conditions that remained elevated in response to 4%NaCl, relative to control conditions. At this age, CPS modified the expression of Nhe3, Ncc, Atp1a1, Nr3c1 (glucocorticoid receptor), and Nr3c2 (mineralocorticoid receptor); while Nkcc, Col3A1, and Opn were modified in the CPS 4%+NaCl group. Furthermore, CPS decreased protein expression of Kallikrein and COX-2, both involved in sodium handling. In conclusion, gestational chronodisruption programs kidney dysfunction at different levels, conceivably underlying the prehypertensive phenotype observed in the adult CPS offspring."	"Histone Methylation Mechanisms Modulate the Inflammatory Response of Periodontal Ligament Progenitors. Inflammatory conditions affect periodontal ligament (PDL) homeostasis and diminish its regenerative capacity. The complexity of biological activities during an inflammatory response depends on genetic and epigenetic mechanisms. To characterize the epigenetic changes in response to periodontal pathogens we have focused on histone lysine methylation as a relatively stable chromatin modification involved in the epigenetic activation and repression of transcription and a prime candidate mechanism responsible for the exacerbated and prolonged response of periodontal cells and tissues to dental plaque biofilm. To determine the effect of inflammatory conditions on histone methylation profiles, related gene expression and cellular functions of human periodontal ligament (hPDL) progenitor cells, a hPDL cell culture system was subjected to bacterial cell wall toxin exposure [lipopolysaccharide (LPS)]. Chromatin immunoprecipitation-on-chip analysis revealed that healthy PDL cells featured high enrichment levels for the active H3K4me3 mark at COL1A1, COL3, and RUNX2 gene promoters, whereas there were high occupancy levels for the repressive H3K27me3 marks at DEFA4, CCL5, and IL-1β gene promoters. In response to LPS, H3K27me3 enrichment increased on extracellular matrix and osteogenesis lineage gene promoters, whereas H3K4me3 enrichment increased on the promoters of inflammatory response genes, suggestive of an involvement of epigenetic mechanisms in periodontal lineage differentiation and in the coordination of the periodontal inflammatory response. On a gene expression level, LPS treatment downregulated COL1A1, COL3A1, and RUNX2 expression and upregulated CCL5, DEFA4, and IL-1β gene expression. LPS also greatly affected PDL progenitor function, including a reduction in proliferation and differentiation potential and an increase in cell migration capacity. Confirming the role of epigenetic mechanisms in periodontal inflammatory conditions, our studies highlight the significant role of histone methylation mechanisms and modification enzymes in the inflammatory response to LPS bacterial cell wall toxins and periodontal stem cell function."	"Clinical Implications of Identifying Pathogenic Variants in Individuals With Thoracic Aortic Dissection. Thoracic aortic dissection is an emergent life-threatening condition. Routine screening for genetic variants causing thoracic aortic dissection is not currently performed for patients or family members. We performed whole exome sequencing of 240 patients with thoracic aortic dissection (n=235) or rupture (n=5) and 258 controls matched for age, sex, and ancestry. Blinded to case-control status, we annotated variants in 11 genes for pathogenicity. Twenty-four pathogenic variants in 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, and TGFBR2) were identified in 26 individuals, representing 10.8% of aortic cases and 0% of controls. Among dissection cases, we compared those with pathogenic variants to those without and found that pathogenic variant carriers had significantly earlier onset of dissection (41 versus 57 years), higher rates of root aneurysm (54% versus 30%), less hypertension (15% versus 57%), lower rates of smoking (19% versus 45%), and greater incidence of aortic disease in family members. Multivariable logistic regression showed that pathogenic variant carrier status was significantly associated with age &lt;50 (odds ratio [OR], 5.5; 95% CI, 1.6-19.7), no history of hypertension (OR, 5.6; 95% CI, 1.4-22.3), and family history of aortic disease (mother: OR, 5.7; 95% CI, 1.4-22.3, siblings: OR, 5.1; 95% CI, 1.1-23.9, children: OR, 6.0; 95% CI, 1.4-26.7). Clinical genetic testing of known hereditary thoracic aortic dissection genes should be considered in patients with a thoracic aortic dissection, followed by cascade screening of family members, especially in patients with age-of-onset &lt;50 years, family history of thoracic aortic disease, and no history of hypertension."	"The Smad3-miR-29b/miR-29c axis mediates the protective effect of macrophage migration inhibitory factor against cardiac fibrosis. Although macrophage migration inhibitory factor (MIF) is known to have antioxidant property, the role of MIF in cardiac fibrosis has not been well understood. We found that MIF was markedly increased in angiotension II (Ang-II)-infused mouse myocardium. Myocardial function was impaired and cardiac fibrosis was aggravated in Mif-knockout (Mif-KO) mice. Functionally, overexpression of MIF and MIF protein could inhibit the expression of fibrosis-associated collagen (Col) 1a1, COL3A1 and α-SMA, and Smad3 activation in mouse cardiac fibroblasts (CFs). Consistently, MIF deficiency could exacerbate the expression of COL1A1, COL3A1 and α-SMA, and Smad3 activation in Ang-II-treated CFs. Interestingly, microRNA-29b-3p (miR-29b-3p) and microRNA-29c-3p (miR-29c-3p) were down-regulated in the myocardium of Ang-II-infused Mif-KO mice but upregulated in CFs with MIF overexpression or by treatment with MIF protein. MiR-29b-3p and miR-29c-3p could suppress the expression of COL1A1, COL3A1 and α-SMA in CFs through targeting the pro-fibrosis genes of transforming growth factor beta-2 (Tgfb2) and matrix metallopeptidase 2 (Mmp2). We further demonstrated that Mif inhibited reactive oxygen species (ROS) generation and Smad3 activation, and rescued the decrease of miR-29b-3p and miR-29c-3p in Ang-II-treated CFs. Smad3 inhibitors, SIS3 and Naringenin, and Smad3 siRNA could reverse the decrease of miR-29b-3p and miR-29c-3p in Ang-II-treated CFs. Taken together, our data demonstrated that the Smad3-miR-29b/miR-29c axis mediates the inhibitory effect of macrophage migration inhibitory factor on cardiac fibrosis."	"Tendon and Ligament Injuries in Elite Rugby: The Potential Genetic Influence. This article reviews tendon and ligament injury incidence and severity within elite rugby union and rugby league. Furthermore, it discusses the biological makeup of tendons and ligaments and how genetic variation may influence this and predisposition to injury. Elite rugby has one of the highest reported injury incidences of any professional sport. This is likely due to a combination of well-established injury surveillance systems and the characteristics of the game, whereby high-impact body contact frequently occurs, in addition to the high intensity, multispeed and multidirectional nature of play. Some of the most severe of all these injuries are tendon and ligament/joint (non-bone), and therefore, potentially the most debilitating to a player and playing squad across a season or World Cup competition. The aetiology of these injuries is highly multi-factorial, with a growing body of evidence suggesting that some of the inter-individual variability in injury susceptibility may be due to genetic variation. However, little effort has been devoted to the study of genetic injury traits within rugby athletes. Due to a growing understanding of the molecular characteristics underpinning the aetiology of injury, investigating genetic variation within elite rugby is a viable and worthy proposition. Therefore, we propose several single nucleotide polymorphisms within candidate genes of interest; COL1A1, COL3A1, COL5A1, MIR608, MMP3, TIMP2, VEGFA, NID1 and COLGALT1 warrant further study within elite rugby and other invasion sports."	"Comparison of Carotenoids for Their Antifibrogenic Effects in Hepatic Stellate Cells. Hepatic stellate cells (HSC) have an important role in the development of liver fibrosis by producing extracellular matrix proteins when they are activated upon liver injury. We previously demonstrated that astaxanthin (ASTX), a xanthophyll carotenoid, attenuates HSC activation. The objective of this study was to compare the anti-fibrogenic effects of ASTX with those of other common carotenoids. LX-2 cells, a human HSC cell line, were treated with ASTX, lycopene, lutein (LT), zeaxanthin, or canthaxanthin, to measure messenger RNA (mRNA) and protein expression of pro-fibrogenic genes. Pro-fibrogenic gene expressions were also measured in ASTX- or LT-treated primary mouse HSC. To determine the underlying mechanisms of the anti-fibrogenic effect of ASTX and LT, SMA-related and MAD-related protein 3 (SMAD3) pathways and the accumulation of reactive oxygen species (ROS) were measured in LX-2 cells. Among five carotenoids tested, ASTX and LT attenuated HSC activation in LX-2 cells by reducing the mRNA and protein levels of pro-fibrogenic genes, such as smooth muscle α actin and procollagen type I α1 (COL1A1). In addition, both ASTX and LT significantly decreased the expression of pro-fibrogenic genes, including COL1A1, COL3A1, and COL6A1, in activated primary mouse HSC, with ASTX being more potent than LT. The anti-fibrogenic effect of ASTX was mediated by inhibiting the phosphorylation of SMAD3 and cellular ROS accumulation, while LT only prevented the accumulation of ROS in LX-2 cells. In conclusion, ASTX showed the most potent anti-fibrogenic effect among the five carotenoids via inhibition of SMAD3 phosphorylation and cellular ROS accumulation while LT only prevented ROS levels in HSC."	"A multi-institutional experience in the aortic and arterial pathology in individuals with genetically confirmed vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is a rare connective tissue disorder owing to pathogenic variants in COL3A1 that lead to impaired type III collagen production. We aim to describe the contemporary multi-institutional experience of aortic and arterial pathology in individuals with vEDS, to evaluate disease patterns and refine management recommendations. This cross-sectional, retrospective study of individuals with genetically confirmed vEDS was conducted between 2000 and 2015 at multiple institutions participating in the Vascular Low Frequency Disease Consortium. Aortic and arterial events including aneurysms, pseudoaneurysms, dissections, fistulae, or ruptures were studied. Demographics, COL3A1 variants, management, and outcomes data were collected and analyzed. Individuals with and without arterial events were compared. Eleven institutions identified 86 individuals with pathogenic variants in COL3A1 (47.7% male, 86% Caucasian; median age, 41 years; interquartile range [IQR], 31.0-49.5 years; 65.1% missense COL3A1 variants). The median follow-up from the time of vEDS diagnosis was 7.5 years (IQR, 3.5-12.0 years). A total of 139 aortic/arterial pathologies were diagnosed in 53 individuals (61.6%; 50.9% male; 88.5% Caucasian; median age, 33 years; IQR, 25.0-42.3 years). The aortic/arterial events presented as an emergency in 52 cases (37.4%). The most commonly affected arteries were the mesenteric arteries (31.7%), followed by cerebrovascular (16.5%), iliac (16.5%), and renal arteries (12.2%). The most common management was medical management. When undertaken, the predominant endovascular interventions were arterial embolization of medium sized arteries (13.4%), followed by stenting (2.5%). Aortic pathology was noted in 17 individuals (32%; 58.8% male; 94.1% Caucasian; median age, 38.5 years; IQR, 30.8-44.7 years). Most notably, four individuals underwent successful abdominal aortic aneurysm repair with excellent results on follow-up. Individuals with missense mutations, in which glycine was substituted with a large amino acid, had an earlier onset of aortic/arterial pathology (median age, 30 years; IQR, 23.5-37 years) compared with the other pathogenic COL3A1 variants (median age, 36 years; IQR, 29.5-44.8 years; P = .065). There were 12 deaths (22.6%) at a median age of 36 years (IQR, 28-51 years). Most of the vEDS arterial manifestations were managed medically in this cohort. When intervention is required for an enlarging aneurysm or rupture, embolization, and less frequently stenting, seem to be well-tolerated. Open repair of abdominal aortic aneurysm seems to be as well-tolerated as in those without vEDS; vEDS should not be a deterrent to offering an operation. Future work to elucidate the role of surgical interventions and refine management recommendations in the context of patient centered outcomes is warranted."	"Integrated miRNA and mRNA expression analysis uncovers drug targets in laryngeal squamous cell carcinoma patients. The current treatment of laryngeal squamous cell carcinoma (LSCC) is based on radical surgery and radiotherapy resulting in high morbidity. Chemoradiotherapy has been used as alternative to organ sparing; however, several advanced cases presented resistance to treatment, which contributes to a high risk of recurrence and mortality. Coding RNAs and miRNAs have potential to be used as biomarkers or targets for cancer therapy. In this study, 36 LSCC and 5 non-neoplastic control samples were investigated using miRNA and mRNA large-scale expression analysis and a cross-validation was performed using the TCGA database (116 LSCC and 12 surrounding normal tissues). The large-scale profiling revealed the involvement of 28 miRNAs and 817 genes differentially expressed in LSCC. An integrative analysis comprising predicted and experimentally validated miRNA/mRNA interactions (negatively correlated), resulted in 28 miRNAs and 543 mRNAs. Decreased expression of miR-199b was significantly associated with shorter disease-free survival in LSCC (internal and TCGA datasets). The expression levels of selected miRNAs (miR-199b-5p, miR-29c-3p, miR-204-5p, miR-125b-5p and miR-92a-3p) and genes (COL3A1, COL10A1, ERBB4, HMGA2, HLF, TOP2A, MMP3, MMP13, MMP10 and PPP1R3) were confirmed as altered in LSCC by RT-qPCR. Additionally, a drug target prediction analysis revealed drug combinations based on miRNA and mRNA expression, pointing out novel alternatives to optimize the LSCC treatment. Collectively, these findings provide new insights in the LSCC transcriptional deregulation and potential drug targets."	"Dipotassium Glycyrrhizate Improves Intestinal Mucosal Healing by Modulating Extracellular Matrix Remodeling Genes and Restoring Epithelial Barrier Functions. Gut mucosal healing (MH) is considered a key therapeutic target and prognostic parameter in the management of inflammatory bowel disease (IBD). The dipotassium glycyrrhizate (DPG), a salt of the glycoconjugated triterpene glycyrrhizin, has been shown to inhibit the High Mobility Group Box 1 (HMGB1) protein, an allarmin strongly implicated in the pathogenesis of most inflammatory and auto-immune disorders. Here we discuss new insights on how DPG acts on MH comparing the acute phase and the recovery phase from experimental colitis in mice. We found that DPG strongly accelerates MH by differently regulating pro-inflammatory (CXCL1, CXCL3, CXCL5, PTGS2, IL-1β, IL-6, CCL12, CCL7) and wound healing (COL3A1, MMP9, VTN, PLAUR, SERPINE, CSF3, FGF2, FGF7, PLAT, TIMP1) genes as observed only during the recovery phase of colitis. Relevant issue is the identification of extracellular matrix (ECM) remodeling genes, VTN, and PLAUR, as crucial genes to achieve MH during DPG treatment. Furthermore, a noticeable recovery of intestinal epithelial barrier structural organization, wound repair ability, and functionality is observed in two human colorectal adenocarcinoma cell lines exposed to DPG during inflammation. Thus, our study identifies DPG as a potent tool for controlling intestinal inflammation and improving MH."	"Use of Genome-Scale Integrated Analysis to Identify Key Genes and Potential Molecular Mechanisms in Recurrence of Lower-Grade Brain Glioma. BACKGROUND The aim of this study was to identify gene signals for lower-grade glioma (LGG) and to assess their potential as recurrence biomarkers. MATERIAL AND METHODS An LGG-related mRNA sequencing dataset was downloaded from The Cancer Genome Atlas (TCGA) Informix. Multiple bioinformatics analysis methods were used to identify key genes and potential molecular mechanisms in recurrence of LGG. RESULTS A total of 326 differentially-expressed genes (DEGs), were identified from 511 primary LGG tumor and 18 recurrent samples. Gene ontology (GO) analysis revealed that the DEGs were implicated in cell differentiation, neuron differentiation, negative regulation of neuron differentiation, and cell proliferation in the forebrain. The Kyoto Encyclopedia of Genes and Genomes (KEGG) database suggests that DEGs are associated with proteoglycans in cancer, the Wnt signaling pathway, ECM-receptor interaction, the PI3K-Akt signaling pathway, transcriptional deregulation in cancer, and the Hippo signaling pathway. The hub DEGs in the protein-protein interaction network are apolipoprotein A2 (APOA2), collagen type III alpha 1 chain (COL3A1), collagen type I alpha 1 chain (COL1A1), tyrosinase (TYR), collagen type I alpha 2 chain (COL1A2), neurotensin (NTS), collagen type V alpha 1 chain (COL5A1), poly(A) polymerase beta (PAPOLB), insulin-like growth factor 2 mRNA-binding protein 1 (IGF2BP1), and anomalous homeobox (ANHX). GSEA revealed that the following biological processes may associated with LGG recurrence: cell cycle, DNA replication and repair, regulation of apoptosis, neuronal differentiation, and Wnt signaling pathway. CONCLUSIONS Our study demonstrated that hub DEGs may assist in the molecular understanding of LGG recurrence. These findings still need further molecular studies to identify the assignment of DEGs in LGG."	"Transcriptional profiling of long noncoding RNAs and their target transcripts in ovarian cortical tissues from women with normal menstrual cycles and primary ovarian insufficiency. Previous studies have shown that long noncoding RNAs (lncRNAs) show a highly tissue- and disease-specific expression pattern and that they regulate the expression of neighboring genes. Because lncRNAs have been shown to be secreted into the general circulation, they may be used as diagnostic tools for some diseases. Primary ovarian insufficiency (POI) is a disease in which women have menstrual cessation before the age of 40, accompanied by elevated follicle stimulating hormone and decreased estrogen levels. In this study, ovarian cortical tissues from five women with normal menstrual cycles and from five POI patients were used for next-generation RNA sequencing. We found 20 differentially expressed lncRNAs with 12 upregulated and eight downregulated lncRNAs in cortical tissues of POI ovaries, compared with normal controls (fold change ≥ 2 and false discovery rate[FDR] ≤ 0.05). We also found 52 differentially expressed messenger RNA transcripts, with 33 upregulated and 19 downregulated ones (foldchange ≥ 2 and FDR ≤ 0.05). Functional annotation showed that these differentially expressed transcripts were associated with follicular development and granulosa cell function. Thirteen differentially expressed lncRNAs and their targeted neighboring transcripts were coregulated in ovarian cortical tissues, including lnc-ADAMTS1-1:1/ADAMTS1, lnc-PHLDA3-3:2/CSRP1, lnc-COL1A1-5:1/COL1A1, lnc-SAMD14-5:3/COL1A1, and lnc-GULP1-2:1/COL3A1. Furthermore, serum levels of these lncRNAs in POI patients were significantly different from those in normal patients ( p &lt; 0.05), and expression differences were consistent with those in ovarian cortical tissues. This study showed that key lncRNAs were differentially expressed in both ovarian cortical tissues and serum samples between women with normal menstrual cycles and POI patients. Further studies on the regulation of ovarian lncRNAs during follicular development are critical in understanding the etiologies of POI. Analyses of lncRNA expression in serum samples might provide a basis for early diagnosis and treatment of POI."	"Multiple Arterial Dissections in a Patient With Vascular Ehlers-Danlos Syndrome Caused by a Frameshift Mutation in COL3A1. NA"	"Type III collagen (COL3A1): Gene and protein structure, tissue distribution, and associated diseases. Collagen alpha-1(III) chain, also known as the alpha 1 chain of type III collagen, is a protein that in humans is encoded by the COL3A1 gene. Three alpha 1 chains are required to form the type III collagen molecule which has a long triple-helical domain. Type III collagen, an extracellular matrix protein, is synthesized by cells as a pre-procollagen. It is found as a major structural component in hollow organs such as large blood vessels, uterus and bowel. Other functions of type III collagen include interaction with platelets in the blood clotting cascade and it is also an important signaling molecule in wound healing. Mutations in the COL3A1 gene cause the vascular type of Ehlers-Danlos syndrome (vEDS; OMIM 130050). It is the most serious form of EDS, since patients often die suddenly due to a rupture of large arteries. Inactivation of the murine Col3a1 gene leads to a shorter life span in homozygous mutant mice. The mice die prematurely from a rupture of major arteries mimicking the human vEDS phenotype. The biochemical and cellular effects of COL3A1 mutations have been studied extensively. Most of the glycine mutations lead to the synthesis of type III collagen with reduced thermal stability, which is more susceptible for proteinases. Intracellular accumulation of this normally secreted protein is also found. Ultrastructural analyses have demonstrated dilated rough endoplasmic reticulum and changes in the diameter of collagen fibers. Other clinical conditions associated with type III collagen are several types of fibroses in which increased amounts of type III collagen accumulate in the target organs."	"[Expression of calponin-1 and its pathogenic role in systemic sclerosis]. To investigate the expression of calponin-1 (CNN1) in systemic sclerosis (SSc) and its pathogenic role in fibrosis. Skin biopsy samples were collected from 19 patients with SSc and 21 healthy subjects. Real-time PCR was used to detect the expression of CNN1 and α-SMA mRNAs in the samples, and the protein expression of CNN1 was detected using immunohistochemistry. In cultured primary human dermal fibroblasts, CNN1 expression was knocked down via RNA interference, and the mRNA expression levels of CNN1 and the fibrosis-related genes α-SMA, CTGF, COL1A1, COL1A2, and COL3A1 were detected using real-time PCR; the proliferation of the cells was assessed using a real-time cell proliferation detection system. Compared with that in samples from normal subjects, the expression of CNN1 mRNA was significantly increased in the skin tissue of patients with SSc (P &amp;lt; 0.05) with a positive correlation with α-SMA (r=0.7219, P &amp;lt; 0.0001); the protein expression of CNN1 was also significantly increased in the skin tissue of patients with SSc. In cultured primary skin fibroblasts, the expression of CNN1 mRNA was positively correlated with α-SMA and COL1A1 mRNA expressions (r=0.6547, P &amp;lt; 0.05; r=0.6438, P &amp;lt; 0.05). CNN1 knockdown in the fibroblasts significantly inhibited the cell proliferation, obviously lowered the expressions of fibrosis-related genes, and reduced the protein expression of collagen. The expression of CNN1 is increased in the skin tissues of patients with SSc, and CNN1 knockdown can reduce the activity of dermal fibroblasts, suggesting the close correlation of CNN1 with fibrosis in SSc."	"Phosphorylation of Hsp20 Promotes Fibrotic Remodeling and Heart Failure. Cardiomyocyte-specific increases in phosphorylated Hsp20 (S16D-Hsp20) to levels similar to those observed in human failing hearts are associated with early fibrotic remodeling and depressed left ventricular function, symptoms which progress to heart failure and early death. The underlying mechanisms appear to involve translocation of phosphorylated Hsp20 to the nucleus and upregulation of interleukin (IL)-6, which subsequently activates cardiac fibroblasts in a paracrine fashion through transcription factor STAT3 signaling. Accordingly, treatment of S16D-Hsp20 mice with a rat anti-mouse IL-6 receptor monoclonal antibody (MR16-1) attenuated interstitial fibrosis and preserved cardiac function. These findings suggest that phosphorylated Hsp20 may be a potential therapeutic target in heart failure."	"Celiprolol but not losartan improves the biomechanical integrity of the aorta in a mouse model of vascular Ehlers-Danlos syndrome. Antihypertensive drugs are included in the medical therapy of vascular Ehlers-Danlos syndrome (vEDS). The β-blocker celiprolol has been suggested to prevent arterial damage in vEDS, but the underlying mechanism remains unclear. It is also unknown whether the widely used angiotensin II receptor type 1 antagonist losartan has a therapeutic effect in vEDS. Here, we evaluated the impact of celiprolol and losartan on the biomechanical integrity of the vEDS thoracic aorta. We established a new approach to measure the maximum tensile force at rupture of uniaxially stretched murine thoracic aortic rings. In a vEDS model, which we (re-)characterized here at molecular level, heterozygous mice showed a significant reduction in the rupture force compared to wild-type mice, reflecting the increased mortality due to aortic rupture. For the assessment of treatment effects, heterozygous mice at 4 weeks of age underwent a 4-week treatment with celiprolol, losartan, and, as a proof-of-concept drug, the matrix metalloproteinase inhibitor doxycycline. Compared to age- and sex-matched untreated heterozygous mice, treatment with doxycycline or celiprolol resulted in a significant increase of rupture force, whereas no significant change was detected upon losartan treatment. In a vEDS model, celiprolol or doxycycline, but not losartan, can improve the biomechanical integrity of the aortic wall, thereby potentially reducing the risk of dissection and rupture. As doxycycline is a broad-spectrum antibiotic with considerable side effects, celiprolol may be more suitable for a long-term therapy and thus rather indicated for the medication of patients with vEDS."	"Polymorphism rs1800255 from COL3A1 gene and the risk for pelvic organ prolapse. Genetic variations of type III collagen may compromise the supportive structures of the female pelvic floor and consequently favor pelvic organ prolapse. The single nucleotide polymorphism G/A rs1800255 located in the coding region for type III collagen (COL3A1) was evaluated as a risk factor for pelvic organ prolapse. A single-center prospective cohort study including women with clinical diagnosis of stage III and IV prolapse (POP group) and prolapse stage 0 or I (control group). Sociodemographic, clinical data and obstetric history were retrieved by physician interview. DNA including the rs1800255 polymorphism was amplified by polymerase chain reaction from blood genomic cells and digested with AluI restriction enzyme for distinction of G and A variants. Qualitative variables were compared using the chi-square and Fisher's exact tests and unpaired t-test for quantitative variables. After stratification of the groups, risk factors for POP were estimated using odds ratios (ORs) from the binary logistic regression model. A total of 292 women were included, 112 in the POP group and 180 in the control group. There was no significant difference between groups regarding rs1800255. Age and home birth were the only significant risk factors for pelvic organ prolapse. Polymorphism rs1800255 from COL3A1 gene was not a risk factor for pelvic organ prolapse."	"Vasoactive intestinal peptide inhibits the activation of murine fibroblasts and expression of interleukin 17 receptor C. Acute respiratory distress syndrome (ARDS) is an acute, severe, and refractory pulmonary inflammation with high morbidity and mortality. Excessive activation of fibroblast during the fibroproliferative phase plays a pivotal role in the prognosis of ARDS. Our previous study demonstrated that the vasoactive intestinal peptide (VIP) is mediated by lentivirus attenuates lipopolysaccharide (LPS)-induced ARDS in a murine model, and VIP inhibits the release of interleukin-17A (IL-17A) from activation macrophages. However, the effects of VIP on the activation of murine fibroblast and expression of IL-17 receptor (IL-17R) in ARDS remain unclear. Here, a mouse model of ARDS was established by an intratracheal injection of LPS. We found that the gene expression of col3a1 and hydroxyproline contents in the lungs were significantly increased 24 h after LPS injection. IL-17RC rather than IL-17RA was increased in the lungs of mice with ARDS. In vitro, LPS activated NIH3T3 cells, which was suppressed by VIP in a dose-dependent manner. In detail, VIP reduced the hydroxyproline content and col3a1 messenger RNA induced by LPS in NIH3T3 cells, as well as the expression of α-smooth muscle actin. Furthermore, we found that VIP inhibited the expression of IL-17R in the lungs of mice with ARDS and NIH3T3 cells stimulated with LPS, which was partly inhibited by antagonists of protein kinase A and protein kinase C. Taken together, our results demonstrated that VIP inhibited the activation of fibroblast via downregulation of IL-17RC, which may contribute to the protective effects of VIP against ARDS in mice."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Vascular Ehlers-Danlos Syndrome Management: The Paris Way, A Step Forward on a Long Road. NA"	"Vascular Ehlers-Danlos Syndrome: Long-Term Observational Study. Vascular Ehlers-Danlos syndrome (vEDS) is a rare genetic connective tissue disorder secondary to pathogenic variants within the COL3A1 gene, resulting in exceptional arterial and organ fragility and premature death. The only published clinical trial to date demonstrated the benefit of celiprolol on arterial morbimortality. The authors herein describe the outcomes of a large cohort of vEDS patients followed ≤17 years in a single national referral center. All patients with molecularly confirmed vEDS were included in a retrospective cohort study. After an initial work-up, patients were treated or recommended for treatment with celiprolol (≤400 mg/day) in addition to usual care and scheduled for yearly follow-up. vEDS-related events and deaths were collected and recorded for each patient. Between 2000 and 2017, 144 patients (median age at diagnosis 34.5 years, 91 probands) were included in this study. After a median follow-up of 5.3 years, overall patient survival was high (71.6%; 95% confidence interval: 50% to 90%) and dependent on the type of COL3A1 variant, age at diagnosis, and medical treatment. At the end of the study period, almost all patients (90.3%) were treated with celiprolol alone or in combination. More than two-thirds of patients remained clinically silent, despite a large number (51%) with previous arterial events or arterial lesions at molecular diagnosis. Patients treated with celiprolol had a better survival than others (p = 0.0004). The observed reduction in mortality was dose-dependent: the best protection was observed at the dose of 400 mg/day versus &lt;400 mg/day (p = 0.003). During the period surveyed, the authors observed a statistically significant difference in the ratio of hospitalizations for acute arterial events/hospitalizations for regular follow-up before and after 2011. In this long-term survey, vEDS patients exhibited a low annual occurrence of arterial complications and a high survival rate, on which the overall medical care seems to have a positive influence."	"[Bioinformatics Analysis and Verification of Aging-Related Genes of Bone Marrow Mesenchymal Stem Cells in Patients with Acute Myeloid Leukemia]. To screen and verify the differentially expressed genes related with aging of bone marrow mesenchymal stem cells (BM-MSCs) in acute myeloid leukemia (AML) patients by bioinformatics, so as to provide new molecular markers for the research and clinical treatment of AML. The gene expression profiling chip related with BM-MSCs in AML patients in our hospital and the gene chip GSE84881 selected from NCBI database GEO were used for data analysis and exploration. The DAVID analysis software was used to perform gene ontology (GO) enrichment analysis and KEGG pathway enrichment analysis. Furthermore, the differentially expressed genes related with aging of BM-MSCs in AML patients were identified. Bone marrow samples were collected and MSCs were amplified in vitro, and RT-PCR was used to verify the differentially expressed genes, which should be further identified with senescence-associated β-galactosidase staining and MTT cell proliferation assays. A total of 247 differentially expressed genes were screened out by bioinformatics methods, including genes of 132 up-regulated expression and 115 down-regulated expression. Six differentially expressed genes related with aging of BM-MSCs in AML patients were screened out, including the genes of up-regulated expression, COL3A1 (P&lt;0.05), CRYAB (P&lt;0.01), DCN (P&lt;0.05), and the genes of down-regulated expression, including CCL2 (P&lt;0.05), CTSC (P&lt;0.01) and IL6 (P&lt;0.05). These 6 differentially expressed genes were consistent with data from chip assays, and which was significantly correlated with aging of BM-MSCs in AML patients. Meanwhile, the positive rate of senescence-associated β-galactosidase staining in BM-MSCs of AML patients was significantly different from that of healthy donors (P&lt;0.01). MTT cell proliferation assay showed that BM-MSCs in AML patients had proliferative ability lower than the healthy donors' BM-MSCs. The data here suggest novel clues for the clinical research and treatment of BM-MSCs aging in AML patients. 急性髓系白血病患者骨髓间充质干细胞衰老相关基因的生物信息学分析及验证. 通过生物信息学方法筛选急性髓系白血病(AML)患者骨髓间充质干细胞(BM-MSC)衰老相关的差异表达基因并予以验证,为AML的科研和临床提供新的分子标志物。. 应用血液病医院AML患者BM-MSC制作基因表达谱芯片并参考从NCBI数据库GEO中选取的芯片GSE84881,综合地进行数据分析并筛选差异表达基因。运用DAVID分析软件进行基因本体论(GO)富集分析和KEGG通路富集分析,筛选出与AML患者BM-MSC衰老相关的差异表达基因。收集病人及健康供者的骨髓样本,体外扩增MSC并应用RT-PCR技术检测衰老相关基因表达水平与芯片的一致性,辅以衰老相关β-半乳糖苷酶染色实验和MTT细胞增殖实验对AML患者BM-MSC表型和功能进行验证。. 筛选出247个差异表达基因,其中有132个基因表达上调,115个基因表达下调。侧重分析6个衰老相关基因,包括表达上调基因COL3A1(P=0.025)、CRYAB(P=0.0003)、DCN(P=0.0368)以及表达下调基因CCL2(P=0.0256)、CTSC(P=0.0001)、IL6(P=0.0482)。RT-PCR实验结果提示,上述基因的表达差异与AML患者BM-MSC的衰老具有相关性。衰老相关β-半乳糖苷酶染色实验证实,AML患者BM-MSC的染色阳性率与健康供者相比显著增高(P<0.0001);MTT实验表明,与健康供者相比,AML患者BM-MSC的增殖能力降低(P<0.0001)。. 运用生物信息学方法对AML患者BM-MSC的芯片数据进行探索研究,筛选并验证了6个与衰老相关的差异表达基因,分别是COL3A1,CRYAB,DCN,CCL2,CTSC和IL6,这为AML的科学研究和临床治疗提供了新线索。."	"Inhibition of circHIPK3 prevents angiotensin II-induced cardiac fibrosis by sponging miR-29b-3p. Circular RNAs (circRNAs) are emerging as powerful regulators of cardiac development and disease. Nevertheless, detailed studies describing circRNA-mediated regulation of cardiac fibroblasts (CFs) biology and their role in cardiac fibrosis remain limited. PCR and Sanger sequencing were performed to identify the expression of circHIPK3 in CFs. Edu corporation assays, Transwell migration assays, and immunofluorescence staining assays were conducted to detect the function of circHIPK3 in CFs in vitro. Bioinformatics analysis, dual luciferase activity assays, RNA immunoprecipitation, and fluorescent in situ hybridization experiments were conducted to investigate the mechanism of circHIPK3-mediated cardiac fibrosis. Echocardiographic analysis, Sirius Red staining and immunofluorescence staining were performed to investigate the function of circHIPK3 in angiotensin II (Ang II) induced cardiac fibrosis in vivo. circHIPK3 expression markedly increased in CFs and heart tissues after the treatment of Ang II. circHIPK3 silencing attenuates CFs proliferation, migration and the upregulation of a-SMA expression levels induced by Ang II in vitro. circHIPK3 acted as a miR-29b-3p sponge and overexpression of circHIPK3 effectively reverses miR-29b-3p-induced inhibition of CFs proliferation and migration and alters the expression levels of miR-29b-3p targeting genes (a-SMA, COL1A1, COL3A1) in vitro. Combination of circHIPK3 silencing and miR-29b-3p overexpression had a stronger effect on cardiac fibrosis suppression in vivo than did circHIPK3 silencing or miR-29b-3p overexpression alone. Our data suggest that circHIPK3 serves as a miR-29b-3p sponge to regulate CF proliferation, migration and development of cardiac fibrosis, revealing a potential new target for the prevention of Ang II-induced cardiac fibrosis."	"Identifying gene modules of thyroid cancer associated with pathological stage by weighted gene co-expression network analysis. Thyroid cancer is the most common type of endocrine tumor. The TNM classification remains a standard for treatment determination and predicting prognosis in thyroid cancer. The genes modules associated with the progression of papillary thyroid carcinoma (PTC) were not clear. We applied a weighted gene co-expression network analysis (WGCNA) and differential expression analysis to systematically identified co-expressed gene modules and hub genes associated with PTC progression based on The Cancer Genome Atlas (TCGA) PTC transcriptome sequencing data. An independent validation cohort, GSE27155, was used to evaluate the preservation of gene modules. We identified two co-expressed genes modules associated with progression of PTC. Enrichment analysis indicated that the two modules were enriched in angiogenesis and extracellular matrix organization. DCN, COL1A1, COL1A2, COL5A2 and COL3A1 were hub genes in the co-expressed network. We systematically identified co-expressed gene modules and hub genes associated with PTC progression for the first time, which provided insights into the mechanisms underlying PTC progression and some potential targets for the treatment of PTC."	"Bioreactor-Controlled Physoxia Regulates TGF-β Signaling to Alter Extracellular Matrix Synthesis by Human Chondrocytes. Culturing articular chondrocytes under physiological oxygen tension exerts positive effects on their extracellular matrix synthesis. The underlying molecular mechanisms which enhance the chondrocytic phenotype are, however, still insufficiently elucidated. The TGF-β superfamily of growth factors, and the prototypic TGF-β isoforms in particular, are crucial in maintaining matrix homeostasis of these cells. We employed a feedback-controlled table-top bioreactor to investigate the role of TGF-β in microtissues of human chondrocytes over a wider range of physiological oxygen tensions (i.e., physoxia). We compared 1%, 2.5%, and 5% of partial oxygen pressure (pO₂) to the 'normoxic' 20%. We confirmed physoxic conditions through the induction of marker genes (PHD3, VEGF) and oxygen tension-dependent chondrocytic markers (SOX9, COL2A1). We identified 2.5% pO₂ as an oxygen tension optimally improving chondrocytic marker expression (ACAN, COL2A1), while suppressing de-differentiation markers (COL1A1,COL3A1). Expression of TGF-β isoform 2 (TGFB2) was, relatively, most responsive to 2.5% pO₂, while all three isoforms were induced by physoxia. We found TGF-β receptors ALK1 and ALK5 to be regulated by oxygen tension on the mRNA and protein level. In addition, expression of type III co-receptors betaglycan and endoglin appeared to be regulated by oxygen tension as well. R-Smad signaling confirmed that physoxia divergently regulated phosphorylation of Smad1/5/8 and Smad2/3. Pharmacological inhibition of canonical ALK5-mediated signaling abrogated physoxia-induced COL2A1 and PAI-1 expression. Physoxia altered expression of hypertrophy markers and that of matrix metalloproteases and their activity, as well as expression ratios of specific proteins (Sp)/Krüppel-like transcription factor family members SP1 and SP3, proving a molecular concept of ECM marker regulation. Keeping oxygen levels tightly balanced within a physiological range is important for optimal chondrocytic marker expression. Our study provides novel insights into transcriptional regulations in chondrocytes under physoxic in vitro conditions and may contribute to improving future cell-based articular cartilage repair strategies."	"Identification of Key Genes and Circular RNAs in Human Gastric Cancer. BACKGROUND Globally, gastric cancer (GC) is the third most common source of cancer-associated mortality. The aim of this study was to identify key genes and circular RNAs (circRNAs) in GC diagnosis, prognosis, and therapy and to further explore the potential molecular mechanisms of GC. MATERIAL AND METHODS Differentially expressed genes (DEGs) and circRNAs (DE circRNAs) between GC tissues and adjacent non-tumor tissues were identified from 3 mRNA and 3 circRNA expression profiles. Functional analyses were performed, and protein-protein interaction (PPI) networks were constructed. The significant modules and key genes in the PPI networks were identified. Kaplan-Meier analysis was performed to evaluate the prognostic value of these key genes. Potential miRNA-binding sites of the DE circRNAs and target genes of these miRNAs were predicted and used to construct DE circRNA-miRNA-mRNA networks. RESULTS A total of 196 upregulated and 311 downregulated genes were identified in GC. The results of functional analysis showed that these DEGs were significantly enriched in a variety of functions and pathways, including extracellular matrix-related pathways. Ten hub genes (COL1A1, COL3A1, COL1A2, COL5A2, FN1, THBS1, COL5A1, SPARC, COL18A1, and COL11A1) were identified via PPI network analysis. Kaplan-Meier analysis revealed that 7 of these were associated with a poor overall survival in GC patients. Furthermore, we identified 2 DE circRNAs, hsa_circ_0000332 and hsa_circ_0021087. To reveal the potential molecular mechanisms of circRNAs in GC, DE circRNA-microRNA-mRNA networks were constructed. CONCLUSIONS Key candidate genes and circRNAs were identified, and novel PPI and circRNA-microRNA-mRNA networks in GC were constructed. These may provide useful information for the exploration of potential biomarkers and targets for the diagnosis, prognosis, and therapy of GC."	"Identification of the Biomarkers and Pathological Process of Osteoarthritis: Weighted Gene Co-expression Network Analysis. Osteoarthritis (OA) is a joint disease resulting in high rates of disability and low quality of life. The initial site of OA (bone or cartilage) is uncertain. The aim of the current study was to explore biomarkers and pathological processes in subchondral bone samples. The gene expression profile GSE51588 was downloaded from the Gene Expression Omnibus database. Fifty subchondral bone [knee lateral tibial (LT) and medial tibial (MT)] samples from 40 OA and 10 non-OA subjects were analyzed. After data preprocessing, 5439 genes were obtained for weighted gene co-expression network analysis. Highly correlated genes were divided into 19 modules. The yellow module was found to be highly correlated with OA (r = 0.71, p = 1e-08) and the brown module was most associated with the differences between the LT and MT regions (r = 0.77, p = 1e-10). Gene ontology functional annotation and Kyoto Encyclopedia of Genes and Genomes pathway enrichment indicated that the yellow module was enriched in a variety of components including proteinaceous extracellular matrix and collagen trimers, involved in protein digestion and absorption, axon guidance, ECM-receptor interaction, and the PI3K-Akt signaling pathway. In addition, the brown module suggests that the differences between the early (LT) and end (MT) stage of OA are associated with extracellular processes and lipid metabolism. Finally, 45 hub genes in the yellow module (COL24A1, COL5A2, COL3A1, MMP2, COL6A1, etc.) and 72 hub genes in the brown module (LIPE, LPL, LEP, SLC2A4, FABP4, ADH1B, ALDH4A1, ADIPOQ, etc.) were identified. Hub genes were validated using samples from cartilage (GSE57218). In summary, 45 hub genes and 72 hub genes in two modules are associated with OA. These hub genes could provide new biomarkers and drug targets in OA. Further studies focusing on subchondral bone are required to validate these hub genes and better understand the pathological process of OA."	"HDAC6 is associated with the formation of aortic dissection in human. The pathological features of aortic dissection (AD) include vascular smooth muscle cell (VSMC) loss, elastic fiber fraction, and inflammatory responses in the aorta. However, little is known about the post-translational modification mechanisms responsible for these biological processes. A total of 72 aorta samples, used for protein detection, were collected from 36 coronary artery disease (CAD, served as the control) patients and 36 type A AD (TAAD) patients. Chromatin immunoprecipitation (ChIP)-PCR was used to identify the genes regulated by H3K23ac, and tubastatin A, an inhibitor of HDAC6, was utilized to clarify the downstream mechanisms regulated by HDAC6. We found that the protein level of histone deacetylase HDAC6 was reduced in the aortas of patients suffering from TAAD and that the protein levels of H4K12ac, and H3K23ac significantly increased, while H3K18ac, H4K8ac, and H4K5ac dramatically decreased when compared with CAD patients. Although H3K23ac, H3K18ac, and H4K8ac increased in the human VSMCs after treatment with the HDAC6 inhibitor tubastatin A, only H3K23ac showed the same results in human tissues. Notably, the results of ChIP-PCR demonstrated that H3K23ac was enriched in extracellular matrix (ECM)-related genes, including Col1A2, Col3A1, CTGF, POSTN, MMP2, TIMP2, and ACTA2, in the aortic samples of TAAD patients. In addition, our results showed that HDAC6 regulates H4K20me2 and p-MEK1/2 in the pathological process of TAAD. These results indicate that HDAC6 is involved in human TAAD formation by regulating H3K23ac, H4K20me2 and p-MEK1/2, thus, providing a strategy for the treatment of TAAD by targeting protein post-translational modifications (PTMs), chiefly histone PTMs."	"Accuracy of Clinical Diagnostic Criteria for Patients With Vascular Ehlers-Danlos Syndrome in a Tertiary Referral Centre. Vascular Ehlers-Danlos syndrome is a rare inherited connective tissue disease secondary to mutations within the COL3A1 gene. The diagnosis of vascular Ehlers-Danlos syndrome is challenging, and patient selection for genetic testing relies on diagnostic criteria, which have never been evaluated. All patients seen at a dedicated tertiary referral center for a suspicion of vascular Ehlers-Danlos syndrome between January 2001 and March 2016 were retrospectively included in a diagnostic accuracy study. Major and minor diagnostic criteria of the Villefranche classification were tested for sensitivity, specificity, positive and negative predictive values, according to results of genetic testing. N=519 patients were eligible for analysis dividing into n=384 probands and n=135 relatives. A pathogenic COL3A1 variant was identified in n=165 (31.8%) patients. The Villefranche criteria were met for n=248 patients with a sensitivity of 79% (95% CI, 0.72-0.85) and a negative predictive value of 87% (95% CI, 0.83-0.91). Diagnostic accuracy was highest for symptomatic probands (sensitivity 92%; negative predictive value 95%) with limited specificity (60%). Probands ≤25 years had the worst diagnostic performance. The revised diagnostic Criteria (2017) were less accurate than the Villefranche classification (overall diagnostic odds-ratio, 4.17 versus 7.8; probands diagnostic odds-ratio, 4.04 versus 18.1; and probands ≤25 years diagnostic odds-ratio, 2.36 versus 5.1) mainly due to a lack of sensitivity. The Villefranche criteria provide accurate detection of symptomatic probands in specialized practice but have limited specificity. The revised diagnostic criteria for vascular Ehlers-Danlos syndrome have increased specificity, but its overall performance is poorer. The early clinical diagnosis of probands without family history is not addressed by both diagnostic classifications."	"Gender Differences in Cardiac Remodeling Induced by a High-Fat Diet and Lifelong, Low-Dose Cadmium Exposure. Childhood obesity, which is prevalent in developed countries, is a metabolic risk factor for cardiovascular disease. Cadmium (Cd), a ubiquitous environmental toxic metal, also has deleterious effects on the cardiovascular system. However, the combined effects of a high-fat diet (HFD) and lifelong, low-dose Cd exposure on cardiac remodeling remain unclear. This study aims to determine the effects of combined HFD and Cd exposure on cardiac remodeling, as well as gender-specific differences in the response. C57BL/6J mice were exposed to Cd at a low dose (L-Cd, 0.5 ppm) or high dose (H-Cd, 5 ppm) via drinking water from conception to sacrifice. After being weaned, the offspring mice were fed with a HFD (42% kcal from fat) for an additional 10 weeks. H-Cd exposure significantly increased Cd accumulation in the hearts of both parents and their offspring; a HFD showed no added effects on cardiac Cd content. H-Cd exposure increased cardiac metallothionein protein levels only in female mice, regardless of dietary intake. Histological analysis revealed that H-Cd exposure combined with a HFD induced cardiac hypertrophy and fibrosis only in female mice. This was further supported by elevated expression of ANP and COL1A1 protein levels along with COL1A1, COL1A2, and COL3A1 mRNA levels. Profibrotic markers PAI-1, CTGF, and FN were also elevated in HFD/H-Cd-exposed female mice. Levels of the oxidative stress marker 3-NT significantly increased in the hearts of HFD-fed female mice, whereas Cd exposure showed no additional effects. Of all the antioxidant markers examined, levels of CAT significantly increased in mice fed a HFD, regardless of gender and Cd exposure. In summary, a HFD combined with lifelong, low-dose Cd exposure induces cardiac hypertrophy and fibrosis in female but not male mice, a response that is independent of oxidative stress."	"Utilizing cell line-derived organoids to evaluate the efficacy of a novel LIFR-inhibitor, EC359 in targeting pancreatic tumor stroma. Survival of pancreatic cancer (PC) patient is poor due to lack of effective treatment modalities, which is partly due to the presence of dense desmoplasia that impedes the delivery of chemotherapeutics. Therefore, PC stroma-targeting therapies are expected to improve the efficacy of chemotherapeutics. However, in vitro evaluation of stromal-targeted therapies requires a culture system which includes components of both tumor stroma and parenchyma. We aim to generate a cell line-derived 3D organoids to test the efficacy of stromal-targeted, LIFR-inhibitor EC359. Murine PC (FC1245) and stellate (ImPaSC) cells were cultured to generate organoids that recapitulated the histological organization of PC with the formation of ducts by epithelial cells surrounded by activated fibroblasts, as indicated by CK19 and α-SMA staining, respectively. Analysis by qRT-PCR demonstrated a significant downregulation of markers of activated stroma, POSTN, FN1, MMP9, and SPARC (p&lt;0.0001), when treated with gemcitabine in combination with EC359. Concurrently, collagen proteins including COL1A1, COL1A2, COL3A1, and COL5A1 were significantly downregulated (p &lt;0.0001) after treatment with gemcitabine in combination with EC359. Overall, our study demonstrates the utility of cell lines-derived 3D organoids to evaluate the efficacy of stroma-targeted therapies as well as the potential of EC359 to target activated stroma in PC."	"Gene Expression Classification of Lung Adenocarcinoma into Molecular Subtypes. As one of the most common malignancies in the world, lung adenocarcinoma (LUAD) is currently difficult to cure. However, the advent of precision medicine provides an opportunity to improve the treatment of lung cancer. Subtyping lung cancer plays an important role in performing a specific treatment. Here, we developed a framework that combines k-means clustering, t-test, sensitivity analysis, self-organizing map (SOM) neural network, and hierarchical clustering methods to classify LUAD into four subtypes. We determined that 24 differentially expressed genes could be used as therapeutic targets, and five genes (i.e., RTKN2, ADAM6, SPINK1, COL3A1, and COL1A2) could be potential novel markers for LUAD. Multivariate analysis showed that the four subtypes could serve as prognostic subtypes. Representative genes of each subtype were also identified, which could be potentially targetable markers for the different subtypes. The function and pathway enrichment analyses of these representative genes showed that the four subtypes have different pathological mechanisms. Mutations associated with the subtypes, e.g., epidermal growth factor receptor (EGFR) mutations in subtype 4 and tumor protein p53 (TP53) mutations in subtypes 1 and 2, could serve as potential markers for drug development. The four subtypes provide a foundation for subtype-specific therapy of LUAD."	"Reductive Stress Selectively Disrupts Collagen Homeostasis and Modifies Growth Factor-independent Signaling Through the MAPK/Akt Pathway in Human Dermal Fibroblasts. Redox stress is a well-known contributor to aging and diseases in skin. Reductants such as dithiothreitol (DTT) can trigger a stress response by disrupting disulfide bonds. However, the quantitative response of the cellular proteome to reductants has not been explored, particularly in cells such as fibroblasts that produce extracellular matrix proteins. Here, we have used a robust, unbiased, label-free SWATH-MS proteomic approach to quantitate the response of skin fibroblast cells to DTT in the presence or absence of the growth factor PDGF. Of the 4487 proteins identified, only 42 proteins showed a statistically significant change of 2-fold or more with reductive stress. Our proteomics data show that reductive stress results in the loss of a small subset of reductant-sensitive proteins (including the collagens COL1A1/2 and COL3A1, and the myopathy-associated collagens COL6A1/2/3), and the down-regulation of targets downstream of the MAPK pathway. We show that a reducing environment alters signaling through the PDGF-associated MAPK/Akt pathways, inducing chronic dephosphorylation of ERK1/2 at Thr202/Tyr204 and phosphorylation of Akt at Ser473 in a growth factor-independent manner. Our data highlights collagens as sentinel molecules for redox stress downstream of MAPK/Akt, and identifies intervention points to modulate the redox environment to target skin diseases and conditions associated with erroneous matrix deposition."	"Spontaneous perforation of small intestine followed by rupture of the cystic artery: the natural history of Vascular Ehlers-Danlos Syndrome. Vascular Ehlers-Danlos Syndrome (VEDS) is a rare autosomal dominant disorder caused by mutations in the COL3A1 or COL1A1 genes. Its mortality is secondary to sudden and spontaneous rupture of arteries or hollow organs. The genotype influences the distribution of arterial pathology with aneurysms of intra-abdominal visceral arteries being relatively uncommon. We describe the case of a young man with probable VEDS who died of a spontaneous rupture and dissection of the cystic artery. The patient initially presented with abdominal pain due to an unrecognized spontaneous perforation of the small intestine complicated by sepsis. We postulate that inflammatory mediators may have triggered the arterial rupture due to remodeling and weakening of vessel walls. The phenotype of the patient's vascular damage included bilateral spontaneous carotid-cavernous sinus fistulae and dissection with pseudoaneurysm formation of large- and medium-sized arteries, predominantly the abdominal aorta and its branches. The autopsy uncovered a long history of vascular events that may have been asymptomatic. These findings along with a positive family history supported the VEDS diagnosis. Loeys-Dietz, Marfan, and familial thoracic aortic aneurysm and dissection syndromes were ruled out based on the absence of arterial tortuosity, eye abnormalities, bone overgrowth, and the distribution of vascular damage among other features. Interestingly, microscopic examination of the hippocampus revealed a focus of neuronal heterotopia, commonly associated with epilepsy; however, the patient had no history of seizures. The natural course of VEDS involves the rupture and dissection of arteries that, if unrecognized, can lead to a rapid death after bleeding into free spaces."	"Identification of a novel BOC-PLAG1 fusion gene in a case of lipoblastoma. Lipoblastoma is a rare benign adipose tissue tumor that occurs mostly in infants and children. Histological diagnosis of lipoblastoma is sometimes difficult because it closely resembles other lipomatous tumors. The detection of PLAG1 gene rearrangement is useful for the diagnosis of lipoblastoma. Four PLAG1 fusion partner genes are known in lipoblastoma: HAS2 at 8q24.1, COL1A2 at 7q22, COL3A1 at 2q32, and RAB2A at 8q12. Herein, we describe a novel fusion gene in a case of lipoblastoma of left back origin. We identified a potential PLAG1 fusion partner using 5' rapid amplification of cDNA ends, and sequence analysis revealed the novel fusion gene, BOC-PLAG1. The BOC-PLAG1 fusion transcript consists of the first exon of the BOC gene fused to exon 2 or exon 3 of the PLAG1 gene. PLAG1 expression was found to be 35.7 ± 2.1 times higher in the tumor specimen than in human adipocytes by qRT-PCR. As a result of the translocation, the constitutively active promoter of BOC leads to PLAG1 overexpression. The identification of the BOC-PLAG1 fusion gene will lead to more accurate diagnosis of lipoblastoma."	"Transcript abundance of stromal and thecal cell related genes during bovine ovarian development. Movement and expansion of mesonephric-derived stroma appears to be very important in the development of the ovary. Here, we examined the expression of 24 genes associated with stroma in fetal ovaries during gestation (n = 17; days 58-274) from Bos taurus cattle. RNA was isolated from ovaries for quantitative RT-PCR. Expression of the majority of genes in TGFβ signalling, stromal transcription factors (NR2F2, AR), and some stromal matrix genes (COL1A1, COL3A1 and FBN1, but not FBN3) showed a positive linear increase with gestational age. Expression of genes associated with follicles (INSL3, CYP17A1, CYP11A1 and HSD3B1), was low until mid-gestation and then increased with gestational age. LHCGR showed an unusual bimodal pattern; high levels in the first and last trimesters. RARRES1 and IGFBP3 also increased with gestational age. To relate changes in gene expression in stromal cells with that in non stromal cells during development of the ovary we combined the data on the stromal genes with another 20 genes from non stromal cells published previously and then performed hierarchical clustering analysis. Three major clusters were identified. Cluster 1 genes (GATA4, FBN3, LHCGR, CYP19A1, ESR2, OCT4, DSG2, TGFB1, CCND2, LGR5, NR5A1) were characterised by high expression only in the first trimester. Cluster 2 genes (FSHR, INSL3, HSD3B1, CYP11A1, CYP17A1, AMH, IGFBP3, INHBA) were highly expressed in the third trimester and largely associated with follicle function. Cluster 3 (COL1A1, COL3A1, FBN1, TGFB2 TGFB3, TGFBR2, TGFBR3, LTBP2, LTBP3, LTBP4, TGFB1I1, ALDH1A1, AR, ESR1, NR2F2) had much low expression in the first trimester rising in the second trimester and remaining at that level during the third trimester. Cluster 3 contained members of two pathways, androgen and TGFβ signalling, including a common member of both pathways namely the androgen receptor cofactor TGFβ1 induced transcript 1 protein (TGFB1I1; hic5). GATA4, FBN3 and LHCGR, were highly correlated with each other and were expressed highly in the first trimester during stromal expansion before follicle formation, suggesting that this could be a critical phase in the development of the ovarian stroma."	"Exogenous micro-RNA and antagomir modulate osteogenic gene expression in tenocytes. Tendinopathy is a common and disabling condition that is difficult to treat. The pathomolecular events behind tendinopathy remain uncertain. Micro-RNAs (miRNAs, miRs) are short non-coding RNAs that regulate gene expression and may play a role in tendinopathy development. Tenocytes were obtained from human patellar tendons in patients undergoing anterior cruciate ligament (ACL) reconstruction. Micro-RNA mimics and antagomirs for miR-30d, 26a, and 29a were separately transfected into tenocyte culture. Gene expression for scleraxis, collagen 1 alpha 1 (COL1A1), collagen 3 alpha 1 (COL3A1), interleukin-1-beta (IL-1β), interleukin-6 (IL-6), bone morphogenic protein 2 (BMP2), bone morphogenic protein 12 (BMP12), and osteocalcin was determined for each miRNA mimic and antagomir transfection using real-time quantitative PCR (qPCR). The results showed that exogenous miR-29a downregulated BMP2 and BMP12, while miR-26a and miR-30d did not have a significant effect on tenocyte gene expression. These findings suggest miR-29a contributes to tendon homeostasis and can serve as a potential therapeutic target in treating tendinopathy."	"Atypical COL3A1 variants (glutamic acid to lysine) cause vascular Ehlers-Danlos syndrome with a consistent phenotype of tissue fragility and skin hyperextensibility. The Ehlers-Danlos syndromes (EDS) are a group of rare inherited connective tissue disorders. Vascular EDS (vEDS) is caused by pathogenic variants in COL3A1, most frequently glycine substitutions. We describe the phenotype of the largest series of vEDS patients with glutamic acid to lysine substitutions (Glu&gt;Lys) in COL3A1, which were all previously considered to be variants of unknown significance. Clinical and molecular data for seven families with three different Glu&gt;Lys substitutions in COL3A1 were analyzed. These Glu&gt;Lys variants were reclassified from variants of unknown significance to either pathogenic or likely pathogenic in accordance with American College of Medical Genetics and Genomics guidelines. All individuals with these atypical variants exhibited skin hyperextensibility as seen in individuals with classical EDS and classical-like EDS and evidence of tissue fragility as seen in individuals with vEDS. The clinical data demonstrate the overlap between the different EDS subtypes and underline the importance of next-generation sequencing gene panel analysis. The three different Glu&gt;Lys variants point toward a new variant type in COL3A1 causative of vEDS, which has consistent clinical features. This is important knowledge for COL3A1 variant interpretation. Further follow-up data are required to establish the severity of tissue fragility complications compared with patients with other recognized molecular causes of vEDS."	"Aberrantly hydroxymethylated differentially expressed genes and the associated protein pathways in osteoarthritis. The elderly population is at risk of osteoarthritis (OA), a common, multifactorial, degenerative joint disease. Environmental, genetic, and epigenetic (such as DNA hydroxymethylation) factors may be involved in the etiology, development, and pathogenesis of OA. Here, comprehensive bioinformatic analyses were used to identify aberrantly hydroxymethylated differentially expressed genes and pathways in osteoarthritis to determine the underlying molecular mechanisms of osteoarthritis and susceptibility-related genes for osteoarthritis inheritance. Gene expression microarray data, mRNA expression profile data, and a whole genome 5hmC dataset were obtained from the Gene Expression Omnibus repository. Differentially expressed genes with abnormal hydroxymethylation were identified by MATCH function. Gene ontology and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analyses of the genes differentially expressed in OA were performed using Metascape and the KOBAS online tool, respectively. The protein-protein interaction network was built using STRING and visualized in Cytoscape, and the modular analysis of the network was performed using the Molecular Complex Detection app. In total, 104 hyperhydroxymethylated highly expressed genes and 14 hypohydroxymethylated genes with low expression were identified. Gene ontology analyses indicated that the biological functions of hyperhydroxymethylated highly expressed genes included skeletal system development, ossification, and bone development; KEGG pathway analysis showed enrichment in protein digestion and absorption, extracellular matrix-receptor interaction, and focal adhesion. The top 10 hub genes in the protein-protein interaction network were COL1A1, COL1A2, COL2A1, COL3A1, COL5A1, COL5A2, COL6A1, COL8A1, COL11A1, and COL24A1. All the aforementioned results are consistent with changes observed in OA. After comprehensive bioinformatics analysis, we found aberrantly hydroxymethylated differentially expressed genes and pathways in OA. The top 10 hub genes may be useful hydroxymethylation analysis biomarkers to provide more accurate OA diagnoses and target genes for treatment of OA."	"MicroRNA‑181 exerts an inhibitory role during renal fibrosis by targeting early growth response factor‑1 and attenuating the expression of profibrotic markers. Progressive renal fibrosis is a common complication of chronic kidney disease that results in end‑stage renal disorder. It is well established that several microRNAs (miRs) function as critical regulators implicated in fibrotic diseases. However, the role of miR‑181 in the development and progression of renal fibrosis remains unclear, and the precise mechanism has not yet been fully defined. The present study identified the functional implications of miR‑181 expression during renal fibrosis. miR‑181 exhibited significantly reduced expression in the serum of renal fibrosis patients and in the kidneys of mice with unilateral ureteral obstruction (UUO). In addition, miR‑181 downregulated the expression of human α‑smooth muscle actin (α‑SMA) in response to angiotensin II stimulation. Transfection with miR‑181 mimics significantly suppressed the expression levels of α‑SMA, connective tissue growth factor, collagen type I α1 (COL1A1) and collagen type III α1 (COL3A1) in NRK49F cells. Notably, early growth response factor‑1 (Egr1) was identified as a direct target gene of miR‑181. Furthermore, in vivo experiments revealed that treatment with miR‑181 agonist strongly rescued kidney impairment induced by UUO, as supported by Masson's trichrome staining of kidney tissues and reverse transcription‑quantitative polymerase chain reaction analysis of COL1A1 and COL3A1 mRNA levels. Therefore, miR‑181 may be regarded as an important mediator in the control of profibrotic markers during renal fibrosis via binding to Egr1, and may be a promising new target in the diagnosis and therapy of renal fibrosis."	"Comparative genomic analysis of collagen gene diversity. Collagen gene family, comprising 30% of the total protein mass in mammals, is the major part of extracellular matrix. To understand the complexity of collagen gene family, detailed sequence, phylogenetic and synteny analyses of 44 collagen genes were performed. According to sequence analysis results, Fibril-associated collagen with interrupted triple helices (FACITs) were identified as the most recently evolved vertebrate-specific collagens while Fibril-forming collagens and Collagen VI, VII, XXVI, and XXVIII were the most ancient collagens, originating at the time of choanoflagellates. Network-forming collagens were entirely conserved from arthopods to homo sapiens, except one gene loss event. Of note, bird specific gene dispensability of COL1A1, COL3A1, COL5A3 and COL11A2 genes was observed in Fibril-forming collagens. According to phylogenetic analysis, gene duplications in collagen family occurred at variable time points during invertebrate to vertebrate evolution. However, majority of gene duplications in FACITs and network-forming collagens occurred at fish time point, suggesting large scale duplications at the root of vertebrate lineage. Lastly, synteny analysis identified 12 conserved blocks containing 27 collagen genes in vertebrate species. Interestingly, dysregulation of seven conserved blocks including block1 (COL11A1), block3 (COL3A1, COL5A2), block5 (COL6A5, COL6A6), block7 (COL1A2), block9 (COL4A1, COL4A2), block11 (COL6A1, COL6A2, COL18A1) and block12 (COL4A5, COL4A6) were also reported in different diseases including cancer. The current study revealed many critical insights into sequence, structural and functional diversity of collagen gene family. In future, by using this information we may be able to establish the clinical and pathological relevance of these conserved collagen blocks in different diseases."	"Distinct degenerative phenotype of articular cartilage from knees with meniscus tear compared to knees with osteoarthritis. To compare the transcriptome of articular cartilage from knees with meniscus tears to knees with end-stage osteoarthritis (OA). Articular cartilage was collected from the non-weight bearing medial intercondylar notch of knees undergoing arthroscopic partial meniscectomy (APM; N = 10, 49.7 ± 10.8 years, 50% females) for isolated medial meniscus tears and knees undergoing total knee arthroplasty (TKA; N = 10, 66.0 ± 7.6 years, 70% females) due to end-stage OA. Ribonucleic acid (RNA) preparation was subjected to SurePrint G3 human 8 × 60K RNA microarrays to probe differentially expressed transcripts followed by computational exploration of underlying biological processes. Real-time polymerase chain reaction amplification was performed on selected transcripts to validate microarray data. We observed that 81 transcripts were significantly differentially expressed (45 elevated, 36 repressed) between APM and TKA samples (≥ 2 fold) at a false discovery rate of ≤ 0.05. Among these, CFD, CSN1S1, TSPAN11, CSF1R and CD14 were elevated in the TKA group, while CHI3L2, HILPDA, COL3A1, COL27A1 and FGF2 were highly expressed in APM group. A few long intergenic non-coding RNAs (lincRNAs), small nuclear RNAs (snoRNAs) and antisense RNAs were also differentially expressed between the two groups. Transcripts up-regulated in TKA cartilage were enriched for protein localization and activation, chemical stimulus, immune response, and toll-like receptor signaling pathway. Transcripts up-regulated in APM cartilage were enriched for mesenchymal cell apoptosis, epithelial morphogenesis, canonical glycolysis, extracellular matrix organization, cartilage development, and glucose catabolic process. This study suggests that APM and TKA cartilage express distinct sets of OA transcripts. The gene profile in cartilage from TKA knees represents an end-stage OA whereas in APM knees it is clearly earlier in the degenerative process."	"Spontaneous pneumothorax and hemothorax frequently precede the arterial and intestinal complications of vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is a connective tissue disorder due to defective type III collagen production and is associated with arterial rupture, spontaneous intestinal perforation, and gravid uterine rupture. Spontaneous pneumothorax and/or hemothorax (P/HTX) also occurs in vEDS patients. The temporal relation of pulmonary manifestations to arterial and intestinal complications in vEDS has not been well described. This was investigated in a multi-institutional retrospective case series of vEDS patients with confirmatory testing for COL3A1 mutation between 2000 and 2012. Data abstracted included demographics, family histories, presentation, and management of associated complications. Ninety-six cases (39% males, mean age 38.6 ± 15.5 years, range 8-79) had confirmatory testing for vEDS. P/HTX was documented in 17 (17.7%) cases. Most P/HTX preceded the diagnosis of vEDS (81%). Diagnosis of vEDS was made after arterial or intestinal complications at a mean of 7 years (range 0-26) post the initial P/HTX. In conclusion, spontaneous P/HTX is an early manifestation of vEDS frequently preceding an arterial complication or intestinal perforation. Thus, a spontaneous P/HTX in a young patient should trigger a differential diagnosis that includes vEDS. This should lead to an investigation of other vEDS features and subsequent genetic testing if vEDS features are present."	"[Construction and analysis of gene co-expression networks in intracranial aneurysm]. Objective: To analyze the expression microarray data in the public databases of intracranial aneurysms (IA) using bioinformatics, and to provide important information for the study of disease mechanisms. Methods: Gene co-expression network was constructed by weighted gene co-expression network analysis (WGCNA) based on the dataset (GSE75436) and pivot genes were identified. Using the online tool DAVID (Database for Annotation, Visualization, and Integrated Discovery) to perform GO function enrichment and KEGG path analysis on modules highly related to IA. Results: Three IA-related modules were screened out, and 14 pivot genes (COL3A1, SPARC, CDH11, COL5A1, HOPX, CLEC11A, GALNT10, ADAMTS2, CEMIP, KIAA1755, COL11A1, ZIC2, CDKN2A, and LINC00460) in the brown module were identified; the analysis of GO showed that the brown module was mainly enriched in extracellular matrix organization, extracellular matrix organization, cell adhesion and other biological processes; the analysis of KEGG indicated that the brown module involved in ECM-receptor interaction, Focal adhesion, protein digestion and absorption, PI3K-Akt signaling pathway. Conclusion: Based on WGCNA, we identified modular and pivotal genes that are critical to the development of IA, and they may become potential biomarkers and/or therapeutic targets. 目的: 利用生物信息学分析颅内动脉瘤(IA)的公共数据库中的表达谱芯片数据,为疾病机制研究提供重要信息。 方法: 基于数据集(GSE75436)进行加权基因共表达网络分析(WGCNA)构建其基因共表达网络,并识别枢纽基因;同时,使用在线工具DAVID对与IA具有高度相关的模块进行GO功能富集及KEGG通路分析。 结果: 筛选出三个与IA相关的模块,以及识别了棕色模块中的14个枢纽基因COL3A1、SPARC、CDH11、COL5A1、HOPX、CLEC11A、GALNT10、ADAMTS2、CEMIP、KIAA1755、COL11A1、ZIC2、CDKN2A和LINC00460;GO分析显示棕色模块主要富集在细胞外基质组织、胶原蛋白分解代谢过程、细胞黏附等生物过程;KEGG分析显示棕色模块参与了ECM-受体相互作用、局部粘连、蛋白质消化和吸收、PI3K-Akt信号通路等通路。 结论: 基于WGCNA,我们识别出了对IA发生发展至关重要的模块与枢纽基因,它们可能成为潜在的生物标志物和(或)治疗靶点。."	"Accuracy of Clinical Diagnostic Criteria for Patients with Vascular Ehlers-Danlos Syndrome in a Tertiary Referral Centre. Vascular Ehlers-Danlos syndrome (vEDS) is a rare inherited connective tissue disease secondary to mutations within the COL3A1 gene. The diagnosis of vEDS is challenging and patient selection for genetic testing relies on diagnostic criteria, which have never been evaluated. All patients seen at a dedicated tertiary referral centre for a suspicion of vEDS between January 2001 and March 2016 were retrospectively included in a diagnostic accuracy study. Major and minor diagnostic criteria of the Villefranche classification were tested for sensitivity (Se), specificity (Sp), positive and negative predictive values (PPV, NPV), according to results of genetic testing. N=519 patients were eligible for analysis dividing into n=384 probands and n=135 relatives. A pathogenic COL3A1 variant was identified in n=165 (31.8%) patients. The Villefranche criteria were met for n=248 patients with a Se of 79% (95%CI: 0.72-0.85) and a NPV of 87% (95%CI: 0.83-0.91). Diagnostic accuracy was highest for symptomatic probands (Se 92%; NPV 95%) with limited Sp (60%). Probands {less than or equal to}25 years had the worst diagnostic performance. The revised diagnostic Criteria (2017) were less accurate than the Villefranche classification (overall Diagnostic odds-ratio (DOR) 4.17 vs. 7.8, probands DOR 4.04 vs. 18.1; probands {less than or equal to}25 years DOR 2.36 vs. 5.1), mainly due to a lack of Se. The Villefranche criteria provide accurate detection of symptomatic probands in specialized practice, but have limited Sp. The revised diagnostic criteria for vEDS have increased Sp, but its overall performance is poorer. The early clinical diagnosis of probands without family history is not addressed by both diagnostic classifications."	"Effect of Lidocaine on Viability and Gene Expression of Human Adipose-derived Mesenchymal Stem Cells: An in vitro Study. To assess the biologic effects of lidocaine on the viability, proliferation, and function of human adipose tissue-derived mesenchymal stromal/stem cells (MSCs) in vitro. Adipose-derived MSCs from three donors were exposed to lidocaine at various dilutions (2 mg/mL to 8 mg/mL) and exposure times (0.5 to 4 hours). Cell number and viability, mitochondrial activity, and real-time reverse-transcriptase quantitative polymerase chain reaction (RT-qPCR) were analyzed at 0 (immediate effects) or 24 and 48 hours (recovery effects) after treatment with lidocaine. Trypan blue staining showed that increasing concentrations of lidocaine decreased the number of observable viable cells. 3-[4,5,dimethylthiazol-2-yl]-5-[3-carboxymethoxy-phenyl]-2-[4-sulfophenyl]-2H-tetrazolium (MTS) assays revealed a concentration- and time- dependent decline of mitochondrial activity and proliferative ability. Gene expression analysis by RT-qPCR revealed that adipose-derived MSCs exposed to lidocaine express robust levels of stress response/cytoprotective genes. However, higher concentrations of lidocaine caused a significant downregulation of these genes. No significant differences were observed in expression of extracellular matrix (ECM) markers COL1A1 and DCN except for COL3A1 (P &lt; .05). Levels of messenger RNA (mRNA) for proliferation markers (CCNB2, HIST2H4A, P &lt; .001) and MKI67 (P &lt; .001) increased at 24 and 48 hours. Expression levels of several transcription factors- including SP1, PRRX1, and ATF1-were modulated in the same manner. MSC surface markers CD44 and CD105 demonstrated decreased expression immediately after treatment, but at 24 and 48 hours postexposure, the MSC markers showed no significant difference among groups. Lidocaine is toxic to MSCs in a dose- and time- dependent manner. MSC exposure to high (4-8 mg/mL) concentrations of lidocaine for prolonged periods can affect their biologic functions. Although the exposure time in vivo is short, it is essential to choose safe concentrations when applying lidocaine along with MSCs to avoid compromising the viability and potency of the stem cell therapy."	"Loss of Sox9 in cardiomyocytes delays the onset of cardiac hypertrophy and fibrosis. The transcription factor Sox9 has been associated with cardiac injury and remodeling. Studies of mammalian hearts confirm Sox9 upregulation in fibroblasts following ischemic insults associated with enhanced fibrosis. The role of cardiomyocyte-specific Sox9 remains unclear. This study aimed to evaluate the role of cardiomyocyte-specific Sox9 in development and progression of left ventricular (LV) hypertrophy and fibrosis. In male conditional Sox9 knockout mice (Sox9-KO) or floxed littermates (control group) transverse aortic constriction (TAC) was performed to induce LV hypertrophy. LV function and wall thickness were assessed weekly using echocardiography. LV mRNA- and protein expression levels of hypertrophy-, fibrosis-, and remodeling-associated genes were analyzed for each time point. Histological sections were stained for fibrosis and Sox9 expression. Only one week after TAC, the control group showed significantly enhanced heart weights and thickened LV posterior walls accompanied by elevated Anp- and Lox-mRNA levels. Simultaneously, Col1a1- and Col3a1-levels as well as Sox9 expression were strongly upregulated, Contrary, Sox9-KO mice did not develop cardiac hypertrophy until 4 weeks after TAC. Collagen and Sox9 expression also peaked at that later time point. Ejection fraction declined similarly in both groups after TAC. However, the control group showed a slightly better cardiac performance at 2 weeks after TAC. Cardiomyocyte-specific Sox9 mediates hypertrophy and early fibrosis, following cardiac pressure-overload. Loss of Sox9 delays cardiac growth and remodeling processes, however, does not preserve the cardiac function. We suggest that cardiomyocyte-driven Sox9 initiates a pro-hypertrophic cascade, possibly involving a cross-talk between myocytes and fibroblasts."	"Multiple-microarray analysis for identification of hub genes involved in tubulointerstial injury in diabetic nephropathy. Diabetic nephropathy (DN) is a primary cause of renal failure. However, studies providing renal gene expression profiles of diabetic tubulointerstitial injury are scarce and its molecular mechanisms still await clarification. To identify vital genes involved in the diabetic tubulointerstitial injury, three microarray data sets from gene expression omnibus (GEO) were downloaded. A total of 127 differentially expressed genes (DEGs) were identified by limma package. Gene set enrichment analysis (GSEA) plots showed that sister chromatid cohesion was the most significant enriched gene set positively correlated with the DN group while retinoid X receptor binding was the most significant enriched gene set positively correlated with the control group. Enriched Gene Ontology (GO) annotations and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathways of DEGs mostly included extracellular matrix organization, extracellular space, extracellular matrix structural constituent, and Staphylococcus aureus infection. Twenty hub genes from three significant modules were ascertained by Cytoscape. Correlation analysis and subgroup analysis between hub genes and clinical features of DN showed that ALB, ANXA1, APOH, C3, CCL19, COL1A2, COL3A1, COL4A1, COL6A3, CXCL6, DCN, EGF, HRG, KNG1, LUM, SERPINA3, SPARC, SRGN, and TIMP1 may involve in diabetic tubulointerstitial injury. ConnectivityMap analysis indicated the most significant three compounds are 5182598, thapsigargin and 5224221. In conclusion, this study may provide new insights into the molecular mechanisms underlying diabetic tubulointerstitial injury as well as potential targets for diagnosis and therapeutics of DN."	"Tenogenic differentiation protocol in xenogenic-free media enhances tendon-related marker expression in ASCs. Adipose-derived stem cells (ASCs) are multipotent and immune-privileged mesenchymal cells, making them ideal candidates for therapeutic purposes to manage tendon disorders. Providing safe and regulated cell therapy products to patients requires adherence to good manufacturing practices. To this aim we investigated the in vitro tenogenic differentiation potential of ASCs using a chemically defined serum-free medium (SF) or a xenogenic-free human pooled platelet lysate medium (hPL) suitable for cell therapy and both supplemented with CTGF, TGFβ-3, BMP-12 and ascorbic acid (AA) soluble factors. Human ASCs were isolated from 4 healthy donors and they were inducted to differentiate until 14 days in both hPL and SF tenogenic media (hPL-TENO and SF-TENO). Cell viability and immunophenotype profile were analysed to evaluate mesenchymal stem cell (MSC) characteristics in both xenogenic-free media. Moreover, the expression of stemness and tendon-related markers upon cell differentiation by RT-PCR, protein staining and cytofluorimetric analysis were also performed. Our results showed the two xenogenic-free media well support cell viability of ASCs and maintain their MSC nature as demonstrated by their typical immunophenototype profile and by the expression of NANOG, OCT4 and Ki67 genes. Moreover, both hPL-TENO and SF-TENO expressed significant high levels of the tendon-related genes SCX, COL1A1, COL3A1, COMP, MMP3 and MMP13 already at early time points in comparison to the respective controls. Significant up-regulations in scleraxis, collagen and tenomodulin proteins were also demonstrated at in both differentiated SF and hPL ASCs. In conclusion, we demonstrated firstly the feasibility of both serum and xenogenic-free media tested to culture ASCs moving forward the GMP-compliant approaches for clinical scale expansion of human MSCs needed for therapeutical application of stem cells. Moreover, a combination of CTGF, BMP-12, TGFβ3 and AA factors strongly and rapidly induce human ASCs to differentiate into tenocyte-like cells."	"Global Gene Knockout of Kcnip3 Enhances Pain Sensitivity and Exacerbates Negative Emotions in Rats. The Ca<sup>2+</sup>-binding protein Kv channel interacting protein 3 (KChIP3) or downstream regulatory element antagonist modulator (DREAM), a member of the neuronal calcium sensor (NCS) family, shows remarkable multifunctional properties. It acts as a transcriptional repressor in the nucleus and a modulator of ion channels or receptors, such as Kv4, NMDA receptors and TRPV1 channels on the cytomembrane. Previous studies of Kcnip3<sup>-/-</sup> mice have indicated that KChIP3 facilitates pain hypersensitivity by repressing Pdyn expression in the spinal cord. Conversely, studies from transgenic daDREAM (dominant active DREAM) mice indicated that KChIP3 contributes to analgesia by repressing Bdnf expression and attenuating the development of central sensitization. To further determine the role of KChIP3 in pain transmission and its possible involvement in emotional processing, we assessed the pain sensitivity and negative emotional behaviors of Kcnip3<sup>-/-</sup> rats. The knockout rats showed higher pain sensitivity compared to the wild-type rats both in the acute nociceptive pain model and in the late phase (i.e., 2, 4 and 6 days post complete Freund's adjuvant injection) of the chronic inflammatory pain model. Importantly, Kcnip3<sup>-/-</sup> rats displayed stronger aversion to the pain-associated compartment, higher anxiety level and aggravated depression-like behavior. Furthermore, RNA-Seq transcriptional profiling of the forebrain cortex were compared between wild-type and Kcnip3<sup>-/-</sup> rats. Among the 68 upregulated genes, 19 genes (including Nr4a2, Ret, Cplx3, Rgs9, and Itgad) are associated with neural development or synaptic transmission, particularly dopamine neurotransmission. Among the 79 downregulated genes, 16 genes (including Col3a1, Itm2a, Pcdhb3, Pcdhb22, Pcdhb20, Ddc, and Sncaip) are associated with neural development or dopaminergic transmission. Transcriptional upregulation of Nr4a2, Ret, Cplx3 and Rgs9, and downregulation of Col3a1, Itm2a, Pcdhb3 and Ddc, were validated by qPCR analysis. In summary, our studies showed that Kcnip3<sup>-/-</sup> rats displayed higher pain sensitivity and stronger negative emotions, suggesting an involvement of KChIP3 in negative emotions and possible role in central nociceptive processing."	"Novel role of the clustered miR-23b-3p and miR-27b-3p in enhanced expression of fibrosis-associated genes by targeting TGFBR3 in atrial fibroblasts. Atrial fibrillation (AF) is the most common type of arrhythmia in cardiovascular diseases. Atrial fibrosis is an important pathophysiological contributor to AF. This study aimed to investigate the role of the clustered miR-23b-3p and miR-27b-3p in atrial fibrosis. Human atrial fibroblasts (HAFs) were isolated from atrial appendage tissue of patients with sinus rhythm. A cell model of atrial fibrosis was achieved in Ang-II-induced HAFs. Cell proliferation and migration were detected. We found that miR-23b-3p and miR-27b-3p were markedly increased in atrial appendage tissues of AF patients and in Ang-II-treated HAFs. Overexpression of miR-23b-3p and miR-27b-3p enhanced the expression of collagen, type I, alpha 1 (COL1A1), COL3A1 and ACTA2 in HAFs without significant effects on their proliferation and migration. Luciferase assay showed that miR-23b-3p and miR-27b-3p targeted two different sites in 3'-UTR of transforming growth factor (TGF)-β1 receptor 3 (TGFBR3) respectively. Consistently, TGFBR3 siRNA could increase fibrosis-related genes expression, along with the Smad1 inactivation and Smad3 activation in HAFs. Additionally, overexpression of TGFBR3 could alleviate the increase of COL1A1, COL3A1 and ACTA2 in HAFs after transfection with miR-23b-3p and miR-27b-3p respectively. Moreover, Smad3 was activated in HAFs in response to Ang-II treatment and inactivation of Smad3 attenuated up-regulation of miR-23b-3p and miR-27b-3p in Ang-II-treated HAFs. Taken together, these results suggest that the clustered miR-23b-3p and miR-27b-3p consistently promote atrial fibrosis by targeting TGFBR3 to activate Smad3 signalling in HAFs, suggesting that miR-23b-3p and miR-27b-3p are potential therapeutic targets for atrial fibrosis."	"Bladder cancer stage-associated hub genes revealed by WGCNA co-expression network analysis. Bladder cancer was a malignant disease in patients, our research aimed at discovering the possible biomarkers for the diseases. The gene chip GSE31684, including 93samples, was downloaded from the GEO datasets and co-expression network was constructed by the data. Molecular complex detection(MCODE) was used to identify hub genes. The most significant cluster including 16 genes: CDH11, COL3A1, COL6A3, COL5A1, AEBP1, COL1A2, NTM, COL11A1, THBS2, COL8A1, COL1A1, BGN, MMP2, PXDN, THY1, and TGFB1I1 was identified. After annotated by BiNGO, they were suggested associated with collagen fibril organization and blood vessel development. In addition, the Kaplan Meier curves were obtained by UALCAN. The high expression of THY1, AEBP1, CDH11, COL1A1, COL1A2, COL11A1, MMP2, PXDN, BGN, COL5A1, COL8A1, and TGFB1I1 indicated poor prognosis of the patients(P &lt; 0.05). Finally, we examined genes' expression between low and high tumor stage by the Wilcoxon test(P &lt; 0.05), TGFB1I1 was excluded. THY1, AEBP1, CDH11, COL1A1, COL1A2, COL11A1, MMP2, PXDN, BGN, COL5A1, COL8A1 associated with the tumor stage as well as tumor patients' prognosis. COL5A1, COL8A1(P &lt; 0.01) may serve as therapeutic targets for the disease."	"Preoperative tyrosine kinase inhibitors risks bowel anastomotic healing in patients with advanced primary and recurrent/metastatic gastrointestinal stromal tumors--- A rose has its thorns. The combination of tyrosine kinase inhibitors (TKIs) and surgery has created a paradigm shift for advanced primary and metastatic gastrointestinal stromal tumors (GISTs). However, the associated surgical morbidity rate is reportedly high, which we hypothesized is attributable to the adverse effects of the previous use of TKIs on bowel anastomosis healing. A total of 613 GIST patients with (n = 108) and without (n = 505) preoperative TKI treatment were enrolled. Propensity score matching compared the surgical morbidities and mortalities between the two cohorts. An animal model was used to elucidate the relevant mechanism. After propensity score matching, the incidence and severity of surgical complications were higher in patients with preoperative TKIs than in those without (34% vs 10%, p &lt; 0.0001; grades 3-5, 16% vs 2%, p &lt; 0.0001). Specifically, the incidence of bowel anastomosis leakage was increased in those with versus those without preoperative TKI (18% vs 6%, p = 0.032). A constellation of mucosal shedding, shortening of villus height and crypt depth, and disarrayed epithelial lining of the bowel was observed with preoperative TKI treatment. The animal model showed that bowel anastomosis healing was weakened by imatinib through the downregulation of Col1A1, Col3A1, and MMPs. Impaired bowel anastomosis healing was responsible for the extraordinarily high surgical morbidity rate of patients with GIST after TKI treatment. The mechanism involved altered tissue microarchitecture and dysregulated Col1A1, Col3A1, and MMP expressions."	"Hydroxycamptothecin Prevents Fibrotic Pathways in Fibroblasts In Vitro. Peritendinous fibrosis, which leads to impaired tendon function, is a clinical problem worldwide, and it is urgent to explore potential ways to reduce the formation of peritendinous adhesion. Several studies have demonstrated the biological roles of hydroxycamptothecin (HCPT) in inhibiting fibrosis in different tissues. In this study, we investigated whether HCPT could inhibit tendon fibrosis in vitro. Our results revealed that HCPT inhibited transforming growth factor (TGF)-β1-induced cell viability of human fibroblasts, decreased excessive cell hyperproliferation and promoted fibroblasts apoptosis. In addition, HCPT treatment also inhibited expression of fibrosis genes COL3A1 and α-smooth muscle actin (α-SMA). In terms of mechanism, we pretreated fibroblasts with the endoplasmic reticulum stress (ER) inhibitor salubrinal and RNA-dependent protein kinase-like ER kinase (PERK) short hairpin RNA, these treatments abolished the inhibitory effects of HCPT on fibrosis, thereby suggesting that HCPT's inhibition of TGF-β1-induced tendon fibrosis might be mediated by the PERK signaling pathway in vitro. In conclusion, our results suggested that HCPT had protective effects on peritendinous tissue fibrosis and might be promising in future clinical applications. © 2019 IUBMB Life, 71(5):653-662, 2019."	"Differential Expression of Transforming Growth Factor-β1 Is Associated With Fetal Regeneration After Myocardial Infarction. Global extracellular matrix (ECM)-related gene expression is decreased after myocardial infarction (MI) in fetal sheep when compared with adult sheep. Transforming growth factor (TGF)-β1 is a key regulator of ECM; therefore we hypothesize that TGF-β1 is differentially expressed in adult and fetal infarcts after MI. Adult and fetal sheep underwent MI via ligation of the left anterior descending coronary artery. Expression of TGF-β1 and ECM-related genes was evaluated by ovine-specific microarray and quantitative polymerase chain reaction. Fibroblasts from the left ventricle of adult and fetal hearts were treated with TGF-β1 or a TGF-β1 receptor inhibitor (LY36497) to evaluate the effect of TGF-β1 on ECM-related genes. Col1a1, col3a1, and MMP9 expression were increased in adult infarcts 3 and 30 days after MI but were upregulated in fetal infarcts only 3 days after MI. Three days after MI elastin expression was increased in adult infarcts. Despite upregulation in adult infarcts both 3 and 30 days after MI, TGF-β1 was not upregulated in fetal infarcts at any time point. Inhibition of the TGF-β1 receptor in adult cardiac fibroblasts decreased expression of col1a1, col3a1, MMP9, elastin, and TIMP1, whereas treatment of fetal cardiac fibroblasts with TGF-β1 increased expression of these genes. TGF-β1 is increased in adult infarcts compared with regenerative, fetal infarcts after MI. Although treatment of fetal cardiac fibroblasts with TGF-β1 conveys an adult phenotype, inhibition of TGF-β1 conveys a fetal phenotype to adult cardiac fibroblasts. Decreasing TGF-β1 after MI may facilitate myocardial regeneration by &quot;fetalizing&quot; the otherwise fibrotic, adult response to MI."	"Identification of biomarkers associated with progression and prognosis in bladder cancer via co-expression analysis. Bladder cancer is one of the most common genitourinary malignancies, with a high rate of recurrence and progression. The prognosis for patients with bladder cancer, especially muscle-invasive bladder cancer, remains poor despite systemic therapy. To explore the underlying disease mechanisms and identify more effective biomarkers for bladder cancer. Weighted gene co-expression network analysis (WGCNA) and protein-protein interaction (PPI) network analysis were applied to identify hub genes correlated with the bladder cancer progression. Survival analyses were then conducted to identify potential biomarkers correlated with the prognosis of bladder cancer. Finally, validation and analysis of these potential biomarkers were conducted by a series of bioinformatics analyses. Based on the results of weighted gene co-expression network analysis and protein-protein interaction network analysis, ten hub genes closely correlated with bladder cancer progression were identified in the relevant module. Survival analyses of these genes indicated that elevated expressions of six potential biomarkers (COL3A1, FN1, COL5A1, FBN1, COL6A1 and THBS2) were significantly associated with a worse overall survival. Furthermore, these 6 potential biomarkers were validated in association with the progression of bladder cancer. Bladder cancer samples with higher expression of these genes were most significantly enriched in gene set associated with ECM-receptor interaction. This study identified several biomarkers associated with bladder cancer progression and prognosis. As novel findings, these may have important clinical implications for diagnosis, treatment and prognosis prediction."	"Prenatal Alcohol Exposure Causes Adverse Cardiac Extracellular Matrix Changes and Dysfunction in Neonatal Mice. Fetal alcohol syndrome (FAS) is the most severe condition of fetal alcohol spectrum disorders (FASD) and is associated with congenital heart defects. However, more subtle defects such as ventricular wall thinning and cardiac compliance may be overlooked in FASD. Our studies focus on the role of cardiac fibroblasts in the neonatal heart, and how they are affected by prenatal alcohol exposure (PAE). We hypothesize that PAE affects fibroblast function contributing to dysregulated collagen synthesis, which leads to cardiac dysfunction. To investigate these effects, pregnant C57/BL6 mice were intraperitoneally injected with 2.9 g EtOH/kg dose to achieve a blood alcohol content of approximately 0.35 on gestation days 6.75 and 7.25. Pups were sacrificed on neonatal day 5 following echocardiography measurements of left ventricular (LV) chamber dimension and function. Hearts were used for primary cardiac fibroblast isolation or protein expression analysis. PAE animals had thinner ventricular walls than saline exposed animals, which was associated with increased LV wall stress and decreased ejection fraction. In isolated fibroblasts, PAE decreased collagen I/III ratio and increased gene expression of profibrotic markers, including α-smooth muscle actin and lysyl oxidase. Notch1 signaling was assessed as a possible mechanism for fibroblast activation, and indicated that gene expression of Notch1 receptor and downstream Hey1 transcription factor were increased. Cardiac tissue analysis revealed decreased collagen I/III ratio and increased protein expression of α-smooth muscle actin and lysyl oxidase. However, Notch1 signaling components decreased in whole heart tissue. Our study demonstrates that PAE caused adverse changes in the cardiac collagen profile and a decline in cardiac function in the neonatal heart."	"Next-generation sequencing of 32 genes associated with hereditary aortopathies and related disorders of connective tissue in a cohort of 199 patients. Heritable factors play an important etiologic role in connective tissue disorders (CTD) with vascular involvement, and a genetic diagnosis is getting increasingly important for gene-tailored, personalized patient management. We analyzed 32 disease-associated genes by using targeted next-generation sequencing and exome sequencing in a clinically relevant cohort of 199 individuals. We classified and refined sequence variants according to their likelihood for pathogenicity. We identified 1 pathogenic variant (PV; in FBN1 or SMAD3) in 15 patients (7.5%) and ≥1 likely pathogenic variant (LPV; in COL3A1, FBN1, FBN2, LOX, MYH11, SMAD3, TGFBR1, or TGFBR2) in 19 individuals (9.6%), together resulting in 17.1% diagnostic yield. Thirteen PV/LPV were novel. Of PV/LPV-negative patients 47 (23.6%) showed ≥1 variant of uncertain significance (VUS). Twenty-five patients had concomitant variants. In-depth evaluation of reported/calculated variant classes resulted in reclassification of 19.8% of variants. Variant classification and refinement are essential for shaping mutational spectra of disease genes, thereby improving clinical sensitivity. Obligate stringent multigene analysis is a powerful tool for identifying genetic causes of clinically related CTDs. Nonetheless, the relatively high rate of PV/LPV/VUS-negative patients underscores the existence of yet unknown disease loci and/or oligogenic/polygenic inheritance."	"Vitamin D prevents experimental lung fibrosis and predicts survival in patients with idiopathic pulmonary fibrosis. Vitamin D (VitD) is a steroid hormone with cytoprotective and anti-inflammatory properties. Epidemiological studies have suggested a link between VitD deficiency and risk of development of chronic lung diseases. Its role in lung fibrosis is largely unknown. The aim of our study was to investigate the role of VitD in experimental and human lung fibrosis. VitD (25-OH-D3, 2 μg/kg) was orally administered from day 3-day 13 following bleomycin-challenge, in 8-10 weeks-old C57/BL6 mice. Mouse Lung Fibroblasts (MLFs) were pre-treated with VitD (2 μM for 24 h) and then stimulated with TGFB1 (10 ng/ml). Serum samples from 93 patients with IPF and other forms of interstitial lung diseases (ILDs) were prospectively collected for VitD measurement. VitD administration prevented bleomycin-induced lung fibrosis, as assessed by reductions in hydroxyproline levels, mRNA levels of col1a1, col3a1 and a-SMA (1.4-, 3.1-, 2.25-, 2.5-fold, respectively) and Masson Trichrome staining compared to the untreated group and these changes were associated with restoration of the bleomycin-induced downregulation of vitamin D-receptor (Vdr) mRNA levels. Pre-treatment with VitD reduced the responsiveness of MLFs to pro-fibrotic stimuli, as indicated by significant decreases of col1a1, col3a1 and a-SMA (3.6-, 4.1- and 2.7-fold, respectively).These changes were associated with restoration of the TGFB1-induced downregulation of vitamin D-receptor (VDR) mRNA levels. VitD treatment deactivated TGFB1-induced Smad3 phosphorylation. Patients with IPF and other forms of ILDs displayed deficient VitD serum concentrations (mean VitD = 18.76 ± 8.36 vs. 18.54 ± 8.39 ng/ml, respectively, p = 0.9). VitD deficiency was correlated with baseline FVC%predicted (r = 0.47, p &lt; 0.0001), DLCO%predicted (r = 0.6, p &lt; 0.0001), GAP score (r = -0.4, p &lt; 0.0001) and all-cause mortality in patients with IPF (HR: 3.7, p = 0.001). VitD could serve as a prognosticator and potential therapeutic target in patients with IPF. Further studies are sorely needed."	"Nerve growth factor administration on cultured human ligamentocytes: an in vitro pilot study. Nerve growth factor (NGF) is involved in several joint pathologies. It has been demonstrated that its concentration increases in synovial fluid and tissue from arthritis. However, its role in joint homeostasis and pathophysiology still remain to be clarified. This study analyzed the effect of 200 ng/ml on cultured human ligamentocytes by evaluating cell proliferation, cell phenotype and gene expression. The MTT test excluded an influence on cell viability at 7 and 14 days. Regarding cell phenotype, we observed that NGF might promote the synthesis of COL1A1. On the other hand, real time PCR showed that NGF did not influence gene expression of COL3A1, FGF-BETA, IGF1, MMP2, MMP3, MMP9 and MMP13. However, COL1A1 gene was significantly upregulated in treated cell at 14 days. Our results suggest that NGF may have an anabolic effect on ligament. Additional investigations are necessary to determine how NGF may influence ligamentocytes.."	"Investigation of the Underlying Genes and Mechanism of Macrophage-Enriched Ruptured Atherosclerotic Plaques Using Bioinformatics Method. The study aimed to identify the underlying differentially expressed genes (DEGs) and mechanism of macrophage-enriched rupture atherosclerotic plaque using bioinformatics methods. GSE41571, which includes six stable samples and five ruptured atherosclerotic samples, was downloaded from the GEO database. After preprocessing, DEGs between ruptured and stable atherosclerotic samples were identified using LIMMA. Gene Ontology biological process (GO_BP) and Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analyses of DEGs were performed using the Database for Annotation, Visualization, and Integration Discovery (DAVID) online tool. Based on the STRING database, protein-protein interactions (PPIs) network among DEGs were constructed. Regulatory relationships between miRNAs/transcriptional factors (TFs) and target genes were predicted using Enrichr, and regulatory networks were visualized using Cytoscape. A total of 268 DEGs (64 up-regulated and 204 down-regulated DEGs) were identified between ruptured and stable samples. In the PPI network, collagen type III alpha 1 chain (COL3A1), collagen type I alpha 2 chain (COL1A2), and asporin (ASPN) were more than 15 interaction degrees. In the miRNA-target network, miR21 was highlighted with highest degrees and ASPN could be targeted by miR21. Functional enrichment analysis showed that COL3A1 and COL1A2 were significantly enriched in extracellular matrix organization and cell adhesion GO_BP terms. Pre-platelet basic protein (PPBP) was the most significantly up-regulated gene in ruptured atherosclerotic samples and enriched in immune response and inflammatory response GO_BP terms. Down-regulated COL3A1, COL1A2 and ASPN, and up-regulated PPBP might perform critical promotional roles in atherosclerotic plaque rupture. Furthermore, miR21 might be potential target to prevent atherosclerotic rupture."	"Cervical artery dissection: fibromuscular dysplasia versus vascular Ehlers-Danlos syndrome. We report the case of a 42-year-old patient referred for suspicion of fibromuscular dysplasia in the context of a carotid artery dissection occurring after a minor trauma. Initial complaints included left hemicrania, lateral diplopia with left 6<sup>th</sup> cranial nerve palsy and pulsatile tinnitus. The work-up disclosed a large left carotid-cavernous fistula, as well as more proximal carotid lesions compatible with multifocal fibromuscular dysplasia. Personal history included colonic and uterine perforation. Family history disclosed a fatal hemorrhage due to rupture of a splenic artery aneurysm in the father and an iliac dissection in the sister. Genetic screening revealed a mutation in exon 6 of the COL3A1 gene in the index patient and her sister, confirming the diagnosis of vascular Ehlers-Danlos syndrome (vEDS). This case report shows that images suggestive of fibromuscular dysplasia may be found in patients with demonstrated vEDS. Furthermore, it reminds that in case of cervical artery dissection occurring in a young patient, all efforts should be made to diagnose the underlying condition. In particular, the existence of a family history of arterial dissection, the occurrence of a carotid-cavernous fistula and coexistence with other complications suggestive of a connective tissue disease should prompt physicians to consider the diagnosis of vEDS."	"Overexpression of ubiquitin-specific peptidase 15 in systemic sclerosis fibroblasts increases response to transforming growth factor β. Ubiquitination of proteins leads to their degradation by the proteasome, and is regulated by ubiquitin ligases and substrate-specific ubiquitin-specific peptidases (USPs). The ubiquitination process also plays important roles in the regulation of cell metabolism and cell cycle. Here, we found that the expression of several USPs is increased in SSc tenosynovial and skin biopsies, and we demonstrated that USP inhibition decreases TGF-β signalling in primary fibroblast cell lines. High-density transcriptomic studies were performed using total RNA obtained from SSc tenosynovial samples. Confirmatory immunostaining experiments were performed on tenosynovial and skin samples. In vitro experiments were conducted in order to study the influence of USP modulation on responses to TGF-β stimulation. Tenosynovial biopsies from SSc patients overexpressed known disease-associated gene pathways: fibrosis, cytokines and chemokines, and Wnt/TGF-β signalling, but also several USPs. Immunohistochemistry experiments confirmed the detection of USPs in the same samples, and in SSc skin biopsies. Exposure of primary fibroblast cell lines to TGF-β induced USP gene expression. The use of a pan-USP inhibitor decreased SMAD3 phosphorylation, and expression of COL1A1, COL3A1 and fibronectin gene expression in TGF-β-stimulated fibroblasts. The effect of the USP inhibitor resulted in increased SMAD3 ubiquitination, and was blocked by a proteasome inhibitor, thereby confirming the specificity of its action. Overexpression of several USPs, including USP15, amplifies fibrotic responses induced by TGF-β, and is a potential therapeutic target in SSc."	"Anterior tibial artery rupture treated using covered stent in a patient with vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is a rare degenerative connective tissue disease caused by a mutation of the COL3A1 gene that results in systemic vascular fragility. Arterial rupture is a potentially fatal serious complication that is the most commonly reported cause of death among patients with this disease, as ruptured vessels remain fragile even after surgical or endovascular reconstruction. Therefore, treatment for vascular complications in patients with vEDS remains controversial. Rupture or pseudoaneurysm of the infrapopliteal artery is extremely rare. We describe a 38-year-old woman with vEDS who presented with sudden widespread rupture of the anterior tibial artery. She was treated by endovascular reconstruction using covered stents. She has remained free of vascular events for two years after surgery, and the course has been uneventful. Endovascular reconstruction using covered stents might offer an alternative for relatively small ruptured arteries and avoid disturbing blood flow in the lower extremities of patients with vEDS. &lt;Learning objective: Vascular Ehlers-Danlos syndrome (vEDS) causes systemic vascular fragility that results in arterial rupture. However, rupture of the arteries in the lower extremities is rare, and definitive treatment has not been established. Endovascular reconstruction with covered stents might offer an alternative treatment for ruptured arteries in the lower extremities of patients with vEDS.&gt;."	"Mutual Expression of ALDH1A1, LOX, and Collagens in Ovarian Cancer Cell Lines as Combined CSCs- and ECM-Related Models of Drug Resistance Development. A major contributor leading to treatment failure of ovarian cancer patients is the drug resistance of cancer cell. CSCs- (cancer stem cells) and ECM (extracellular matrix)-related models of drug resistance are described as independently occurring in cancer cells. Lysyl oxidase (LOX) is another extracellular protein involved in collagen cross-linking and remodeling of extracellular matrix and has been correlated with tumor progression. The expression of LOX, COL1A2, COL3A1, and ALDH1A1 was performed in sensitive (A2780, W1) and resistant to paclitaxel (PAC) (A2780PR1 and W1PR2) and topotecan (TOP) (W1TR) cell lines at the mRNA (real-time PCR analysis) and protein level (Western blot and immunofluorescence analysis). The ALDH1A1 activity was measured with the ALDEFLUOR test and flow cytometry analysis. The protein expression in ovarian cancer tissues was determined by immunohistochemistry. We observed an increased expression of LOX and collagens in PAC and TOP resistant cell lines. Subpopulations of ALDH1A1 positive and negative cells were also noted for examined cell lines. Additionally, the coexpression of LOX with ALDH1A1 and COL1A2 with ALDH1A1 was observed. The expression of LOX, collagens, and ALDH1A1 was also detected in ovarian cancer lesions. In our study LOX, ALDH1A1 and collagens were found to be coordinately expressed by cells resistant to PAC (LOX, ALDH1A1, and COL1A2) or to TOP (LOX and ALDH1A1). This represents the study where molecules related with CSCs (ALDH1A1) and ECM (LOX, collagens) models of drug resistance are described as occurring simultaneously in ovarian cancer cells treated with PAC and TOP."	"Correlation of extracellular matrix-related gene expression with objective Fuchs endothelial corneal dystrophy severity. NA"	"Expressions of homeobox, collagen and estrogen genes in women with uterine prolapse. Genetic contribution is thought to be involved in the pathophysiology of pelvic organ prolapse (POP). We aimed to study the gene expression profiles of the genes HomeoboxA11 (HOXA11), HomeoboxA13 (HOXA13), Collagen Type I (COL1A), Collagen Type III (COL3A), estrogen receptor genes (ESR1 and ESR2) of round (RL) and uterosacral ligaments (USL) in postmenopausal women with uterine prolapse. Gene expressions of 32 postmenopausal women with prolapse were analysed according to gene expressions of 8 postmenopausal women without prolapse. Quantitative real-time PCR (qRT-PCR) method was used for the detection of expression levels of the genes. Student's t-Test and Mann-Whitney U test were used for statistical analysis. In the USL specimens of all women with uterine prolapse HOXA13 and ESR1 gene expressions were decreased compared to controls (0.5 fold, p = 0.04 and 0.82 fold, p = 0.04, respectively). In the RL specimens, ESR2 gene expression was decreased 0.7 fold in women with prolapse when compared to controls (p = 0.04). In the USL specimens of women with advanced stages of prolapse (stage ≥3), HOXA13 and COL3A gene expressions were decreased compared to controls (0.44 fold, p = 0.043 and 0.39 fold, p = 0.045, respectively). In the RL specimens, ESR2 gene expression was decreased 0.65 fold in women with prolapse when compared to controls (p = 0.052). The significant decrease in the expression of the genes HOXA13, COL3A in the USL and ESR2 in the RL especially in advanced stages of prolapse, implicate that these gene expressions may play a role in the development of uterine prolapse."	"Synergistic effects of sulfur dioxide and polycyclic aromatic hydrocarbons on pulmonary pro-fibrosis via mir-30c-1-3p/ transforming growth factor β type II receptor axis. SO2 and PAHs are well-known pollutants of coal burning and significant contributors to haze episodes. The purpose of the study is to determine whether the combined effects of SO2 and BaP are synergetic and to investigate the pro-fibrotic influences and possible mechanism from the aspect of microRNAs. In the present study cellular metabolic activity of BEAS-2B was assessed using MTT probe. C57BL/6 mice were exposed to BaP (40 mg/kg b.w.) for 5 days or SO2 (7 mg/m<sup>3</sup>) inhalation for 4 weeks alone or together. Lung tissues were processed for histology to assess pulmonary fibrosis. The protein level of pulmonary pro-fibrotic genes (Col1a1, Col3a1, alpha-SMA, fibronectin) and TGFβR2 were analyzed by Western blot and immunofluorescence in vivo and in vitro. Furthermore, we clarified that the microRNA expression of mir-30c-1-3p by real-time RT-PCR. The luciferase reporter assay was used to determine the binding sites of mir-30c-1-3p in the 3'-UTR of TGFβR2. It was confirmed that SO2 and BaP acted together to produce synergistic effects in cellular metabolic activity. Coexisting of SO2 and BaP increased the protein expression of pro-fibrotic genes and TGFβR2 and decreased mir-30c-1-3p in vivo and in vitro. Dual-luciferase reporter gene assays showed that TGFβR2 was a validated target of mir-30c-1-3p. All above results demonstrated that mir-30c-1-3p was involved in the synergistic pro-fibrotic effects of SO2 and BaP in lung via targeting TGFβR2. This work implies the potential risk of pulmonary fibrosis from the co-existence of SO2 and PAHs and provides new insights into the molecular markers for relevant diseases."	"Network analysis of differentially expressed smoking-associated mRNAs, lncRNAs and miRNAs reveals key regulators in smoking-associated lung cancer. Lung cancer is the leading cause of cancer-associated mortality worldwide. Smoking is one of the most significant etiological contributors to lung cancer development. However, the molecular mechanisms underlying smoking-induced induction and progression of lung cancer have remained to be fully elucidated. Furthermore, long non-coding RNAs (lncRNAs) are increasingly recognized to have important roles in diverse biological processes. The present study focused on identifying differentially expressed mRNAs, lncRNAs and micro (mi)RNAs in smoking-associated lung cancer. Smoking-associated co-expression networks and protein-protein interaction (PPI) networks were constructed to identify hub lncRNAs and genes in smoking-associated lung cancer. Furthermore, Gene Ontology and Kyoto Encyclopedia of Genes and Genomes analyses of differentially expressed lncRNAs were performed. A total of 314 mRNAs, 24 lncRNAs and 4 miRNAs were identified to be deregulated in smoking-associated lung cancer. PPI network analysis identified 20 hub genes in smoking-associated lung cancer, including dynein axonemal heavy chain 7, dynein cytoplasmic 2 heavy chain 1, WD repeat domain 78, collagen type III α 1 chain (COL3A1), COL1A1 and COL1A2. Furthermore, co-expression network analysis indicated that relaxin family peptide receptor 1, receptor activity modifying protein 2-antisense RNA 1, long intergenic non-protein coding RNA 312 (LINC00312) and LINC00472 were key lncRNAs in smoking-associated lung cancer. A bioinformatics analysis indicated these smoking-associated lncRNAs have a role in various processes and pathways, including cell proliferation and the cyclic guanosine monophosphate cGMP)/protein kinase cGMP-dependent 1 signaling pathway. Of note, these hub genes and lncRNAs were identified to be associated with the prognosis of lung cancer patients. In conclusion, the present study provides useful information for further exploring the diagnostic and prognostic value of the potential candidate biomarkers, as well as their utility as drug targets for smoking-associated lung cancer."	"Feature Article: Maternal cardiac messenger RNA expression of extracellular matrix proteins in mice during pregnancy and the postpartum period. This study provides the first comprehensive analysis of extracellular matrix protein (ECM) gene expression combined with echocardiographic analyses of heart functional parameters in the murine heart during pregnancy and the early postpartum period. Our findings show regulation of all Timp, selected Mmps, and Col1a1, Col3a1, and Col8a1 mRNA levels with reproductive status, with the greatest number of significant changes occurring in the early postpartum period. Left ventricle cardiac diastolic parameters were the first to change during pregnancy and remained elevated postpartum, whereas systolic parameters were increased in late pregnancy and began to recover during the first week postpartum. These novel findings indicate that although some ECM genes are elevated during late pregnancy, that the postpartum period is a time of robust altered ECM gene expression. These studies provide a basis for examining ECM proteins and their activities in the normal pregnant and postpartum heart and in models of postpartum cardiomyopathy."	"Full-length transcriptome and microRNA sequencing reveal the specific gene-regulation network of velvet antler in sika deer with extremely different velvet antler weight. Velvet antler displays the fastest and most robust tissue proliferation in the animal world, it is a model for a complete organ development/regeneration, and alternative medicine, tonic made from velvet antler, was beneficial for human. The weight of velvet antler had high biomedical and economic value, but the related regulation mechanisms controlling velvet antler weight remain unclear. In this study, extremely heavy and light velvet antler groups were selected from a sika deer population of 100 individuals with extreme velvet antler weight. A combination of full-length transcriptome sequencing and microRNA sequencing to the proliferation zone in the tip of velvet antler was applied. A total of 55306 transcripts and 1082 microRNAs were identified. Some highly expressed genes (COL1A1, COL1A2, COL3A1, FN1, and ATP6) and microRNAs (miR-21, let-7i, and miR-27b) were highly correlated with the physiological and growth characteristics of velvet antlers. Among the 334 differentially expressed genes, we found that most of the genes were located in the developmental process, especially animal organ development process. It is exciting to see that more blood vessels were found in the growing tip of heavy velvet antler through histological observation, and GO term of blood vessel development was also significant different between two groups. The combination analysis with mRNA and microRNA data in velvet antler showed a specific regulation network involved in the development of bone, mesenchyme, cartilage, and blood vessel, and helped us clearly find out the candidate 14 genes and 6 microRNAs, which could be used for selecting significant DNA markers of velvet antler weight."	"The miRNA-184 drives renal fibrosis by targeting HIF1AN in vitro and in vivo. Progressive renal fibrosis is the last phase of chronic kidney disease and results in renal failure. Micro-RNA has been demonstrated as important agent to drive organ fibrosis. However, the precise mechanisms are not fully understood. Here, we found miRNA-184 as a critical mediator to promote the renal fibrosis by targeting HIF1AN. In Vivo, miRNA-184 expression levels remarkably increased both in patients' serum and in unilateral ureteral obstruction kidneys, as well as induced the expression of COL1A1 and COL3A1. Furthermore, transfection of NRK49F cells with miRNA-184 mimics down-regulated HIF1AN, transfection of NRK49F cells with miRNA-184 inhibitor up-regulated HIF1AN, while the cells transfected with miRNA-184 inhibitor exerted the opposite effect. When the cells were co-transfected with miRNA-184 mimics and HIF1AN, the expression of α-SMA, GTGF, COL1A1, and COL3A1 at mRNA level was apparently decreased when compared with miRNA-184 mimic-transfected cells, which was strengthened when transfected with miRNA-184 inhibitor. Thus, miRNA-184 is an important agent to promote the fibrosis though binding to HIF1AN, and may be a promising novel target in treatment of renal fibrosis."	"miR-29 Family Inhibits Resistance to Methotrexate and Promotes Cell Apoptosis by Targeting COL3A1 and MCL1 in Osteosarcoma. BACKGROUND MicroRNAs (miRNAs) play a crucial role in regulating diverse biological processes, including drug resistance. We investigated the potential roles of the miR-29 family in methotrexate (MTX) resistance in osteosarcoma. MATERIAL AND METHODS Two MTX-resistant osteosarcoma cell lines, MG-63/MTX and U2OS/MTX, were generated by continuous exposure to stepwise increasing concentrations of MTX. miR-29abc, COL3A1, and MCL1 mRNA expression levels were determined using quantitative real-time PCR (qRT-PCR). Protein expression levels of COL3A1 and MCL1 were detected by Western blot. Cell viability, IC50 value, and cell apoptosis were assessed by CCK-8 assay and flow cytometry, respectively. The target relationship between the miR-29 family and COL3A1 or MCL1 was confirmed by luciferase reporter assay. RESULTS miR-29a, miR-29b, and miR-29c were significantly downregulated in MG-63/MTX and U2OS/MTX cells and in chemotherapy poor-response osteosarcoma tissues. Overexpression of the miR-29 family sensitized MG-63/MTX and U2OS/MTX cells to MTX and obviously promoted cell apoptosis compared with negative control. COL3A1 and MCL1 were identified to be target genes of the miR-29 family, and transfection with miR-29abc mimics in MG-63/MTX and U2OS/MTX cells decreased COL3A1 and MCL1 mRNA and protein expression. Meanwhile, overexpression of COL3A1 and MCL1 partly neutralized the effects of the miR-29 family on MTX resistance and cell apoptosis. CONCLUSIONS Taken together, our findings suggested a tumor-suppressor role of the miR-29 family in control of MTX resistance and cell apoptosis through regulating COL3A1 or MCL1. Targeting the miR-29 family might provide new strategies to overcome the high-dosage MTX-induced cytotoxicity in osteosarcoma treatment."	"Electrospun Patch Functionalized with Nanoparticles Allows for Spatiotemporal Release of VEGF and PDGF-BB Promoting In Vivo Neovascularization. The use of nanomaterials as carriers for the delivery of growth factors has been applied to a multitude of applications in tissue engineering. However, issues of toxicity, stability, and systemic effects of these platforms have yet to be fully understood, especially for cardiovascular applications. Here, we proposed a delivery system composed of poly(dl-lactide- co-glycolide) acid (PLGA) and porous silica nanoparticles (pSi) to deliver vascular endothelial growth factor (VEGF) and platelet-derived growth factor (PDGF). The tight spatiotemporal release of these two proteins has been proven to promote neovascularization. In order to minimize tissue toxicity, localize the release, and maintain a stable platform, we conjugated two formulations of PLGA-pSi to electrospun (ES) gelatin to create a combined ES patch releasing both PDGF and VEGF. When compared to freely dispersed particles, the ES patch cultured in vitro with neonatal cardiac cells had significantly less particle internalization (2.0 ± 1.3%) compared to free PLGA-pSi (21.5 ± 6.1) or pSi (28.7 ± 2.5) groups. Internalization was positively correlated to late-stage apoptosis with PLGA-pSi and pSi groups having increased apoptosis compared to the untreated group. When implanted subcutaneously, the ES patch was shown to have greater neovascularization than controls evidenced by increased expression of α-SMA and CD31 after 21 days. Quantitative reverse transcription-polymerase chain reaction results support increased angiogenesis by the upregulation of VEGFA, VEGFR2, vWF, and COL3A1, exhibiting a synergistic effect with the release of VEGF-A164 and PDGF-BB after 21 days in vivo. The results of this study proved that the ES patch reduced cellular toxicity and may be tailored to have a dual release of growth factors promoting localized neovascularization."	"No Association Between Risk of Anterior Cruciate Ligament Rupture and Selected Candidate Collagen Gene Variants in Female Elite Athletes From High-Risk Team Sports. Several single-nucleotide variants (SNVs) in collagen genes have been reported as predisposing factors for anterior cruciate ligament (ACL) tears. However, the evidence is conflicting and does not support a clear association between genetic variants and risk of ACL ruptures. To assess the association of previously identified candidate SNVs in genes encoding for collagen and the risk of ACL injury in a population of elite female athletes from high-risk team sports. Cohort study; Level of evidence, 2. A total of 851 female Norwegian and Finnish elite athletes from team sports were included from 2007 to 2011. ACL injuries acquired before inclusion in the cohort were registered by interview. The participants were followed prospectively through 2015 to record new complete ACL injuries. Six selected SNVs were genotyped ( COL1A1: rs1800012, rs1107946; COL3A1: rs1800255; COL5A1: rs12722, rs13946; COL12A1: rs970547). No associations were found between ACL rupture and the SNVs tested. The study does not support a role of the 6 selected SNVs in genes encoding for collagen proteins as risk factors for ACL injury. Genetic profiling to identify athletes at high risk for ACL rupture is not yet feasible."	"Frequency of de novo variants and parental mosaicism in vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is a rare inherited autosomal dominant disorder caused by COL3A1 pathogenic variants. A high percentage of de novo cases has been suggested. Part of it could be due to parental mosaicism, but its frequency is unknown. This retrospective study included a large series of COL3A1-confirmed vEDS probands with family information. The frequency of de novo cases was evaluated and the distribution of the type of variants was compared according to the mode of inheritance. The COL3A1 mosaicism was studied by deep targeted next- generation sequencing (NGS) from parental blood DNA. Out of 177 vEDS probands, 90 had a negative family history, suggesting a high rate (50.8%) of de novo pathogenic variants, enriched in the more severe COL3A1 variants (no null variant). Among those, both parental DNA were available in 36 cases and one parental DNA in 18 cases. NGS detected only one mosaicism from maternal blood DNA (allelic ratio 18%), which was confirmed in saliva (allelic ratio 22%). vEDS is characterized by a high frequency of de novo pathogenic variants. Parental mosaicism is rare (2-3%), but should be systematically searched with targeted NGS, taking into account its importance in genetic counseling."	"Deciphering the transcriptome of prepubertal buffalo mammary glands using RNA sequencing. Although water buffaloes are the main milk-producing animals in Indian subcontinent, only limited attempts have been made to identify canonical pathways and gene regulatory networks operating within the mammary glands of these animals. Such information is important for identifying unique transcriptome signatures in the mammary glands of diseased animals. In this report, we analyzed the transcription profile of 3 prepubertal buffalo mammary glands and identified common genes (mean FPKM &gt; 0.2 in all samples) operating in the glands. Among 19,994 protein coding genes, 14,678 genes expressed and 5316 unique genes did not express in prepubertal buffalo mammary glands. Of these 14,678 expressed genes, 79% comprised a ubiquitous transcriptome that was dominated by very lowly expressed genes (51%). The percentage of rarely, moderately, and abundantly expressed genes was 25%, 2%, and 1%, respectively. Gene Ontology (GO) terms reflected in the expression of common genes (mean FPKM &gt; 5.0) for molecular function were related to binding and catalytic activity. Products of these genes were involved in metabolic and cellular processes and belong to nucleic acid binding proteins. The canonical pathways for growth of mammary glands included integrin signaling, inflammation, GnRH and Wnt pathways. KEGG enriched pathways revealed many pathways of cancer including ribosome, splisosome, endocytosis, and ubiquitin-mediated proteolysis, pathways for viral infection, and bacterial invasion of epithelial. Highly expressed genes (mean FPKM &gt; 500 included beta-actin (ACTB), beta-2 microglobulin (B2M), caseins (CSN2, CNS3), collagens (COL1A1, COL3A1), translation elongation factors (EEF1A1, EEF1G, EEF2), keratins (KRT15, KRT19), major histocompatibility complex genes (CD74, JSP.1), vimentin (VIM), and osteopontin (SPP1). Interestingly, expression of milk protein genes in prepubertal glands opens possible roles of these genes in development of mammary glands. We report the whole transcriptomic signature of prepubertal buffalo mammary gland and indicated its molecular signature is similar to cancer type."	"Attenuating Effects of Nortrachelogenin on IL-4 and IL-13 Induced Alternative Macrophage Activation and on Bleomycin-Induced Dermal Fibrosis. Excessive alternative macrophage activation contributes to fibrosis. We studied the effects of nortrachelogenin, the major lignan component of Pinus sylvestris knot extract, on alternative (M2) macrophage activation. J774 murine and THP-1 human macrophages were cultured with IL-4+IL-13 to induce alternative activation, together with the extract and its components. Effects of nortrachelogenin were also studied in bleomycin-induced murine dermal fibrosis model. Knot extract significantly decreased the expression of alternative activation markers-arginase 1 in murine macrophages (97.4 ± 1.3% inhibition at 30 μg/mL) and CCL13 and PDGF in human macrophages-as did nortrachelogenin (94.9 ± 2.4% inhibition of arginase 1 at 10 μM). Nortrachelogenin also decreased PPARγ expression but had no effect on STAT6 phosphorylation. In vivo, nortrachelogenin reduced bleomycin-induced increase in skin thickness as well as the expression of collagens COL1A1, COL1A2, and COL3A1 (all by &gt;50%). In conclusion, nortrachelogenin suppressed IL-4+IL-13-induced alternative macrophage activation and ameliorated bleomycin-induced fibrosis, indicating therapeutic potential in fibrosing conditions."	"Effect of alcohol on the interleukin 6-mediated inflammatory response in a new mouse model of acute-on-chronic liver injury. ACLF is usually associated with a precipitant in the setting of a chronically damaged liver. We aim to combine a mouse model with a pre-injured liver (Abcb4/Mdr2<sup>-/-</sup>) with a recently standardized ethanol feeding model to dissect alcohol-related inflammatory responses in this model. Ten (n = 64) and 15 (n = 64) week old wild-type (WT) C57BL/6 J and Abcb4<sup>-/-</sup> knock-out (KO) mice were either fed control (WT/Cont and KO/Cont groups) or liquid ethanol diet (5% v/v) followed by an ethanol binge (4 mg/kg) (WT/EtOH and KO/EtOH groups). Hepatic mRNA levels of IL6, IFN-G, IL-1B, TGFB1, TNF-A, CCL2, HGF, CRP, RANTES, PNPLA3 and COL3A1 were evaluated using the 2<sup>-ΔΔCt</sup> method. IL6 and HGF plasma levels were quantified by ELISA. Older mice in KO/EtOH group displayed higher IL6 expressions compared to KO/Cont, WT/EtOH and WT/Cont groups of the same age, whereas HGF did not differ. Significant over-expression of CCL2 also corresponded to the same group. Males in KO/EtOH group exhibited higher IL6 expression than females. Lipid droplets were observed in about 80% of mice challenged with ethanol. There was a profound downregulation in PNPLA3 and RANTES levels after ethanol exposure. Mean size of the LDs was inversely correlated with hepatic PNPLA3 levels. We propose a novel promising approach to model alcohol-related ACLI. Acute inflammatory IL6-driven response might help transition from a stable chronic state to a progressive liver damage in Abcb4<sup>-/-</sup> mice. Repression of PNPLA3 resulted in a notable expansion in size of lipid droplets, indicating lipid remodeling in this model."	"Amelioration of UV radiation-induced photoaging by a combinational sunscreen formulation via aversion of oxidative collagen degradation and promotion of TGF-β-Smad-mediated collagen production. The presence of 40-50% more UV radiation in high altitude areas renders the plethora of sunscreen products available in the market virtually ineffective. In this light of event, four US FDA approved UV filters were combined with melatonin and pumpkin seed oil to produce a broad spectrum sunscreen cream, which is envisaged to provide optimum sunprotection along with enhanced antioxidant activity. The objective of this study is to evaluate the protective effect of the sunscreen cream against UV radiation-induced skin photoaging in adult Wistar albino rats and identify its possible underlying mechanism. Wistar rats were exposed to broad spectrum UV radiation for 28 days. The test group received the sunscreen formulation dermally every day prior to UV radiation. The effects of the formulation against UV induced symptoms; viz. skin thickness and edema, in vivo antioxidant activities, inflammatory cytokines, collagen content, histopathological examination and expression of specific genes established the protective activity of the formulation. The test formulation was able to mitigate the harmful effects of UV radiation by increasing in vivo SOD, GSH-Px, CAT and collagen levels; decreasing skin edema, skin thickness and cytokines like IL-6, IL-1β, TNF-α and TGF-β1. UV radiation induced changes in histological architecture and arrangement of collagen and elastin fibers were also prevented by the test formulation. Finally, the formulation was able to regulate the expression of COL3A1, COX-2, bFGF, VEGF-C, Smad2, Smad4, Smad7 genes which induced significant photoprotective activity. The sunscreen formulation ameliorated UV induced photoaging by preventing oxidative collagen degradation and augmentation of TGF-β-Smad-mediated collagen production."	"Fibroblast growth factor-2, but not the adipose tissue-derived stromal cells secretome, inhibits TGF-β1-induced differentiation of human cardiac fibroblasts into myofibroblasts. Transforming growth factor-β1 (TGF-β1) is a potent inducer of fibroblast to myofibroblast differentiation and contributes to the pro-fibrotic microenvironment during cardiac remodeling. Fibroblast growth factor-2 (FGF-2) is a growth factor secreted by adipose tissue-derived stromal cells (ASC) which can antagonize TGF-β1 signaling. We hypothesized that TGF-β1-induced cardiac fibroblast to myofibroblast differentiation is abrogated by FGF-2 and ASC conditioned medium (ASC-CMed). Our experiments demonstrated that TGF-β1 treatment-induced cardiac fibroblast differentiation into myofibroblasts, as evidenced by the formation of contractile stress fibers rich in αSMA. FGF-2 blocked the differentiation, as evidenced by the reduction in gene (TAGLN, p &lt; 0.0001; ACTA2, p = 0.0056) and protein (αSMA, p = 0.0338) expression of mesenchymal markers and extracellular matrix components gene expression (COL1A1, p &lt; 0.0001; COL3A1, p = 0.0029). ASC-CMed did not block myofibroblast differentiation. The treatment with FGF-2 increased matrix metalloproteinases gene expression (MMP1, p &lt; 0.0001; MMP14, p = 0.0027) and decreased the expression of tissue inhibitor of metalloproteinase gene TIMP2 (p = 0.0023). ASC-CMed did not influence these genes. The proliferation of TGF-β1-induced human cardiac fibroblasts was restored by both FGF-2 (p = 0.0002) and ASC-CMed (p = 0.0121). The present study supports the anti-fibrotic effects of FGF-2 through the blockage of cardiac fibroblast differentiation into myofibroblasts. ASC-CMed, however, did not replicate the anti-fibrotic effects of FGF-2 in vitro."	"Long-term diosbulbin B treatment induced liver fibrosis in mice. Airpotato yam is a traditional Chinese medicine used for treating thyroid disease and cancer in China. Diosbulbin B (DB) is reported to be the main hepatotoxic compound isolated from Airpotato yam. A variety of reports have shown the acute liver injury induced by DB in vivo. However, whether long-term administration of DB will cause liver fibrosis in mice is unknown. This study aims to investigate the liver fibrosis induced by long-term DB treatment in mice. C57BL/6 mice were orally given with DB (25, 50 mg/kg) for 1 or 2 month, respectively. Liver hydroxyproline content, hepatic collagen deposition and immune cells infiltration were increased in mice treated with DB (50 mg/kg) for 2 months. Serum amounts of hyaluronic acid and laminin were increased in mice treated with DB for 1 or 2 months. DB (50 mg/kg) induced hepatic stellate cells (HSCs) activation when mice were treated with DB for 2 months. Liver mRNA expression of Col1a1, Col1a2, Col3a1, fibronectin (Fn1), vimentin (Vim) and fibroblast-specific protein 1 (FSP1) were all increased in DB-treated mice. Hepatic protein expression of Vim, FSP1 and collagen 1 (COL1) were increased in DB-treated mice. Additionally, DB induced nuclear factor κB (NFκB) activation and increased the expression of pro-inflammatory molecules including tumor necrosis factor (TNF)-α, interleukin (IL)-6, intercellular cell adhesion molecule-1 (ICAM-1) and inducible nitric oxide synthase (iNOS) in mice. In conclusion, long-term administration of DB induced liver fibrosis in mice. HSCs activation, epithelial-mesenchymal transition (EMT) and liver inflammation contributed to DB-induced liver fibrosis in mice."	"Role of miR29c in goose fatty liver is mediated by its target genes that are involved in energy homeostasis and cell growth. A short period of overfeeding can lead to severe hepatic steatosis in the goose, which is physiological, suggesting that geese, as a descendent of a migrating ancestor, may have evolutionally developed a unique mechanism that operates in contrast to the mechanism underlying pathological fatty liver in humans or other mammals. In this study, we report that suppression of miR29c and upregulation of its target genes in goose fatty liver vs. normal liver could be part of a unique mechanism that contributes to the regulation of energy homeostasis and cell growth. Our data showed that miR29c expression was comprehensively inhibited in energy homeostasis-related tissues (the liver, fat and muscle) of overfed vs. normally fed geese, which is different from miR29c induction that occurs in tissues of the diabetic rat. To address the function of miR29c, three predicted target genes (i.e., Insig1, Sgk1 and Col3a1) that participate in energy homeostasis or cell growth were validated by a dual-fluorescence reporter system and other in vitro assays. Importantly, expression of Insig1, Sgk1 and Col3a1 was upregulated in goose fatty liver. In line with these observations, treatment of goose hepatocytes with high glucose or palmitate suppressed the expression of miR29c but induced the expression of the target genes, suggesting that hyperglycemia and hyperlipidemia, at least partially, contribute to the suppression of miR29c and induction of the target genes in goose fatty liver. In addition, pharmacological assays indicated that RFX1 was a transcription factor involved in the expression of miR29c. This study suggests that miR29c may play a role in the regulation of energy homeostasis and tissue growth via its target genes, contributing to the tolerance of the goose to severe hepatic steatosis."	"Inhibition of MARCO ameliorates silica-induced pulmonary fibrosis by regulating epithelial-mesenchymal transition. Epithelial-mesenchymal transition (EMT) is linked to fibrosis following exposure to silica. The scavenger receptor, macrophage receptor with collagenous structure (MARCO) plays an important role in silica-induced inflammation, however, the effect of MARCO on silica-induced fibrosis has not been identified. We hypothesized that MARCO would regulate EMT and be involved in the development of silicosis. Herein, we found that MARCO was highly expressed in lung tissue after exposure to silica and a MARCO inhibitor PolyG could alleviate pulmonary fibrosis in vivo. Our results confirmed that the expression of epithelial marker such as E-cadherin decreased, while the expression of mesenchymal markers, including vimentin and α-SMA increased after silica treatment. Furthermore, PolyG administration efficiently blocked the mRNA and protein expression of EMT markers and decreased the level of fibrosis-related transcription factors and proteins, such as Col1a1, Col3a1, Collagen I and Collagen III in the lungs of silica-exposed rats. The findings demonstrate that the macrophage membrane receptor MARCO controls the fibrotic response through regulating EMT in experimental silicosis and suggest a novel target for preventive intervention."	"circCOL3A1-859267 regulates type I collagen expression by sponging miR-29c in human dermal fibroblasts. The genes COL1A1 and COL1A2 encode the pro-alpha 1 and pro-alpha 2 chains of type I collagen, respectively, which is one of the main components of skin dermis. We have previously demonstrated that a circular RNA (a class of recently identified non-coding RNAs that exhibit regulatory potency by sequestering miRNAs like a sponge), which we termed circCOL3A1-859267, is downregulated and regulates type I collagen expression in UVA-exposed human dermal fibroblasts (HDFs). However, the precise mechanisms of circCOL3A1-859267-mediated collagen expression in UVA-irradiated HDFs remain unclear. To elucidate the mechanism of circCOL3A1-859267-mediated regulation of type I collagen expression. We initially predicted miRNA binding sites on circCOL3A1-859267 based on a bioinformatic method, and a dual luciferase reporter assay was used to determine miRNA binding to circCOL3A1-859267 in HEK 293 cells. The effect of UVA irradiation on the expression of miRNAs as well as circCOL3A1-859267-mediated type I collagen expression was further investigated in HDFs. miR-29a, miR-29b, miR-29c, miR-767, and miR-133a were predicted to bind both circCOL3A1-859267 and COL1A1/COL1A2, however, only miR-29c was shown to bind to circCOL3A1-859267 based on the dual luciferase reporter assay. In UVA-exposed HDFs, only miR-29c was upregulated. Finally, transfection of a small interfering RNA targeting circCOL3A1-859267 or miR-29c mimic suppressed the expression of type I collagen in HDFs; the miR-29c mimic-induced down-regulation was restored via overexpression of circCOL3A1-859267 using a lentiviral-based expression system. Our results indicate that circCOL3A1-859267 regulates type I collagen expression by sponging and sequestering miR-29c in HDFs."	"Platelet-Rich Plasma Promotes Migration, Proliferation, and the Gene Expression of Scleraxis and Vascular Endothelial Growth Factor in Paratenon-Derived Cells In Vitro. Platelet-rich plasma (PRP) is a treatment option for tendon injury because of its effective tendon-healing properties. At the early stage of tendon repair, paratenon-derived cells (PDCs) are thought to play a more important role than tendon proper-derived cells (TDCs). However, there has been no study investigating the effects of PRP on PDCs. PRP promotes the migration, proliferation, and differentiation of PDCs in vitro. Controlled laboratory study. TDCs and PDCs were isolated from the tendon proper and paratenon of rat Achilles tendons and were cultured to the third passage. PRP was prepared from the rats using the double-spin method. Third-passage TDCs and PDCs were cultured in Dulbecco's modified Eagle medium with 2% fetal bovine serum (control group) or 2% fetal bovine serum plus 5% PRP (PRP group), and cell migration, proliferation, and differentiation were evaluated. The relative mRNA expression levels of scleraxis (Scx), tenomodulin (Tnmd), collagen type I alpha 1 (Col1a1), collagen type III alpha 1 (Col3a1), and vascular endothelial growth factor A (VEGF) were examined by quantitative real-time reverse transcription polymerase chain reaction. The cell migration rate was significantly higher in the PDCs of the PRP group than in the control group (1.4-fold increase; P = 0.02). Cell proliferation was significantly higher in the PDCs of the PRP group (2.2-fold increase; P &lt; 0.01). In the PDCs, the gene expression levels of Scx, Col1a1, and VEGF were significantly increased by PRP (Scx: 2.0-fold increase, P = 0.01; Col1a1: 5.3-fold increase, P = 0.01; VEGF: 7.8-fold increase, P = 0.01), but the gene expression level of Tnmd, a factor for tendon maturation, was significantly reduced by PRP (0.11-fold decrease; P = 0.02). In vitro PRP promoted migration, proliferation, and tenogenic differentiation with the upregulation of Scx in PDCs. PRP also upregulated the expression of the angiogenic marker VEGF. Our results suggest that PRP treatment in vitro may enhance the tendon-healing properties of PDCs at the initial stage of tendon repair."	"Single-Stranded DNA-Binding Protein 1 Abrogates Cardiac Fibroblast Proliferation and Collagen Expression Induced by Angiotensin II. Angiotensin II (Ang II), an effective component of renin-angiotensin system, plays a pivotal role in cardiac fibrosis, which may further contribute to heart failure. Single-stranded DNA-binding protein 1 (SSBP1), a DNA damage response protein, regulates both mitochondrial function and extracellular matrix remodeling. In this study, we aim to investigate the role of SSBP1 in cardiac fibrosis that is induced by Ang II. We infused C57BL/6J mice with vehicle or Ang II and valsartan using implanted osmotic mini-pumps. Moreover, heart function was examined by echocardiography and cardiac fibrosis was analyzed via picrosirus red staining. The expression of COL1A1, COL3A1, SSBP1, p53, Nox1, and Nox4 was analyzed via qRT-PCR and/or immunoblots. The SSBP1 expression was manipulated via SSBP1 shRNA and pcDNA3.1/SSBP1 plasmids, while the p53 expression was enhanced via AdCMV-p53 infection. The exposure to Ang II increased the mouse heart weight, systolic blood pressure, interventricular septal thickness diastolic (IVSTD) and left ventricular end posterior wall dimension diastolic (LVPWD), which were counteracted by valsartan. While cardiac fibrosis was induced with Ang II treatment, it was relieved using valsartan. Furthermore, Ang II treatment caused mitochondrial dysfunction, oxidative stress, and down-regulated SSBP1 expression. The knockdown of SSBP1 increased cardiac fibroblast proliferation, collagen expression, and decreased p53 expression, which was impeded via SSBP1 overexpression. Moreover, the forced expression of p53 abated the fibroblast proliferation and collagen expression that was induced by Ang II. To summarize, SSBP1 was down-regulated by Ang II and implicated in cardiac fibroblast proliferation and collagen expression partly via the p53 protein."	"Natural history of gastrointestinal manifestations in vascular Ehlers-Danlos syndrome: A 17-year retrospective review. Vascular Ehlers-Danlos syndrome (vEDS) is a rare connective tissue disorder due to heterozygous mutations in the COL3A1 gene with a dominant negative effect. Spontaneous bowel perforation and intra-abdominal organ rupture are common complications of vEDS. Other gastrointestinal (GI) manifestations may occur but have not been extensively characterized. We herein describe the natural history of GI events and surgery-related complications in patients with vEDS. A retrospective review of GI events in a large cohort of molecularly proven vEDS patients was conducted, after exclusion of mild forms of the disease. Of 133 patients, 41% had a history of GI manifestations with 112 events, mean 2.0 ± 1.3 events per patient. There was an earlier occurrence of GI events in men (P 0.008). Cumulative incidence was 58% for all patients, higher in men and in patients with splice-site variants. Recurrence of GI events was reported in more than 50% of patients. Colonic perforation was the first digestive event for 47% of patients. Of 85 GI surgeries, 37 (43%) were complicated with 43 events. Nine deaths were reported in this population. Vascular Ehlers-Danlos syndrome is characterized not only by bowel perforation but also by a wide variety of GI complications that occur in close to half (41%) of patients. The pattern of GI fragility seems more severe in males and splice-site variants. Complications of GI surgery are common and are related with tissue fragility/friability."	"Loss of LRRC25 accelerates pathological cardiac hypertrophy through promoting fibrosis and inflammation regulated by TGF-β1. Despite advances in therapeutic strategies, heart failure-associated mortality rates remain high. Thus, understanding the pathophysiological molecular mechanisms involved in the remodeling process is essential for developing new and effective therapies. LRRs are present various prokaryotic and eukaryotic proteins and important for the innate immune system via regulating protein-protein interactions. LRRC25 is a member of leucine-rich repeat (LRR)-containing protein family. LRRC25 has been shown to negatively modulate nuclear factor κB (NF-κB) activation, a crucial factor related to cardiac hypertrophy. Our aim was to explore the effects of LRRC25 on cardiac hypertrophy. In the present study, LRRC25 levels were decreased in human and mouse hypertrophied hearts. LRRC25 knockout exacerbated cardiac hypertrophy responding to pressure overloading or angiotensin II (Ang II) stimulation. Deletion of LRRC25 accelerated cardiac dysfunction and fibrosis in mice subjected to aortic banding (AB). LRRC25 ablation induced a strong increase in the transcription of both hypertrophy (ANP, BNP, and β-MHC) and fibrosis associated molecules (col1, col3a1, α-SMA and fibronectin). In addition, the expression of transforming growth factor-β1 (TGF-β1), and its down-streaming signals of phosphorylated Smad2/3, was markedly induced by LRRC25 deficiency. LRRC25-knockout mice showed a significantly enhanced inflammation in response to AB surgery by promoting the activation of NF-κB signaling pathway. In mouse cardiomyocytes, LRRC25 deficiency markedly elevated TGF-β1 and NF-κB activation stimulated by Ang II. Treatment with a combination of TGF-β1 or NF-κB inhibitor abolished the effects of LRRC25-knockout on the promotion of cardiac hypertrophy in vitro. Together, our study identified LRRC25 as a critical molecular switch whose down-regulation resulted in cardiac hypertrophy in a TGF-β1- and NF-κB-dependent manner."	"RND1 regulates migration of human glioblastoma stem-like cells according to their anatomical localization and defines a prognostic signature in glioblastoma. Despite post-operative radio-chemotherapy, glioblastoma systematically locally recurs. Tumors contacting the periventricular zone (PVZ) show earlier and more distant relapses than tumors not contacting the PVZ. Since glioblastoma stem-like cells (GSCs) have been proposed to play a major role in glioblastoma recurrence, we decided to test whether GSC migration properties could be different according to their anatomical location (PVZ+/PVZ-). For that purpose, we established paired cultures of GSCs from the cortical area (CT) and the PVZ of glioblastoma patient tumors. We demonstrated that PVZ GSCs possess higher migration and invasion capacities than CT GSCs. We highlighted specific transcriptomic profiles in PVZ versus CT populations and identified a down-regulation of the RhoGTPase, RND1 in PVZ GSCs compared to CT GSCs. Overexpression of RND1, dramatically inhibited PVZ GSC migration and conversely, downregulation of RND1 increased CT GSC migration. Additionally, transcriptomic analyses also revealed a down-regulation of RND1 in glioblastoma compared to normal brain. Using the glioblastoma TCGA database, low levels of RND1 were also shown to correlate with a decreased overall survival of patients. Finally, based on signaling pathways activated in patients with low levels of RND1, we identified an RND1<sup> low </sup> signature of six genes (MET, LAMC1, ITGA5, COL5A1, COL3A1, COL1A2) that is an independent prognostic factor in glioblastoma. These findings contribute to explain the shorter time to progression of patients with PVZ involvement and, point out genes that establish the RND1<sup> low </sup> signature as key targets genes to impede tumor relapse after treatment."	"Effect of transforming growth factor -β1 on α-smooth muscle actin and collagen expression in equine endometrial fibroblasts. Transforming growth factor (TGF)-β1 not only regulates cell growth, development, and tissue remodeling, but it also participates in the pathogenesis of tissue fibrosis. In the equine endometrium, the concentration of TGF-β1 is correlated with endometrosis (equine endometrial fibrosis). In other tissues, TGF-β1 induces differentiation of many cell types into myofibroblasts. These cells are characterized by α-smooth muscle actin (α-SMA) expression and an ability to deposit excessive amounts of extracellular matrix (ECM) components. The aim of the study was to determine whether TGF-β1 plays a role in the development of equine endometrosis. In Exp. 1, endometrial expression of α-SMA in different stages of endometrosis was determined. In endometrial tissues from the mid luteal phase (n = 6 for each stages of endometrosis) and the follicular phase of the estrous cycle (n = 5 for each stages of endometrosis), mRNA transcription and protein expression of α-Sma were evaluated by Real-time PCR and Western-blot, respectively. The α-Sma mRNA transcription and protein expression levels were correlated with the severity of endometrosis (P &lt; 0.05). In both phases of the estrous cycle, α-SMA protein expression was up-regulated in final stage of endometrosis compared to initial stage (P &lt; 0.05). In Exp. 2, the dose- and time-dependent effects of TGF-β1 on expression of α-SMA and ECM components were determined, as well as cell proliferation of equine fibroblasts. Equine endometrial fibroblasts (n = 6, Kenney and Doig category I) were stimulated with vehicle or TGF-β1 (1, 5, 10 ng/ml) for 24, 48 or 72 h. Then, mRNA transcription of α-Sma, collagen type I (Col1a1), collagen type III (Col3a1) and fibronectin 1 (Fn1) were determined by Real-time PCR. The production of ECM components was determined by ELISA. Transforming growth factor-β1 increased the mRNA transcription of α-Sma and ECM components in a dose- and time-dependent manner in cultured endometrial fibroblasts (P &lt; 0.05). Additionally, TGF-β1 at a dose of 10 ng/ml increased α-SMA protein expression and COL1, COL3, FN production after 72 h of stimulation (P &lt; 0.05). The data showed a positive linkage between the presence of myofibroblasts and severity of endometrosis. We conclude that TGF-β1 may participate in pathological fibrotic changes in equine endometrial tissue by induction of myofibroblast differentiation, increased production of ECM components and fibroblast proliferation."	"Severity of local inflammation does not impact development of fibrosis in mouse models of intestinal fibrosis. Intestinal fibrosis is thought to be a consequence of excessive tissue repair, and constitutes a common problem in patients with Crohn's disease (CD). While fibrosis seems to require inflammation as a prerequisite it is unclear whether the severity or persistence of inflammation influences the degree of fibrosis. Our aim was to investigate the role of sustained inflammation in fibrogenesis. For the initiation of fibrosis in vivo the models of Il10<sup>-/-</sup> spontaneous colitis, dextran sodium sulfate (DSS)-induced chronic colitis and heterotopic transplantation were used. In Il10<sup>-/-</sup> mice, we determined a positive correlation between expression of pro-inflammatory factors (Il1β, Tnf, Ifnγ, Mcp1 and Il6). We also found a positive correlation between the expression of pro-fibrotic factors (Col3a1 Col1a1, Tgfβ and αSma). In contrast, no significant correlation was determined between the expression of pro-inflammatory Tnf and pro-fibrotic αSma, Col1a1, Col3a1, collagen layer thickness and the hydroxyproline (HYP) content. Results from the DSS-induced chronic colitis model confirmed this finding. In the transplantation model for intestinal fibrosis a pronounced increase in Mcp1, inos and Il6 in Il10<sup>-/-</sup> as compared to WT grafts was observed, indicating more severe inflammation in Il10<sup>-/-</sup> grafts. However, the increase of collagen over time was virtually identical in both Il10<sup>-/-</sup> and WT grafts. Severity of inflammation during onset of fibrogenesis did not correlate with collagen deposition. Although inflammation might be a pre-requisite for the initiation of fibrosis our data suggest that it has a minor impact on the progression of fibrosis. Our results suggest that development of fibrosis and inflammation may be disconnected. This may be important for explaining the inefficacy of anti-inflammatory treatments agents in most cases of fibrotic inflammatory bowel diseases (IBD)."	"Effect of Long-Term Exercise Training on lncRNAs Expression in the Vascular Injury of Insulin Resistance. LncRNA microarray analysis was applied to investigate the exercise effect on the global differential expressions of lncRNA and mRNA in aorta endothelium in insulin resistance. Twenty-four male C57BL/6 J mice were randomly divided into three groups: control group (n = 8), high-fat diet group (n = 8), and high-fat diet plus exercise training group (n = 8). An lncRNA microarray analysis was applied to investigate the global differential expressions of lncRNA and mRNA in aorta endothelium among three groups and the results were further verified by qPCR. Hypergeometric distribution analysis was applied to reveal the possible signaling. Exercise might alleviate the vascular injury of IR via FR030200-Col3A1, FR402720-Rnd1, and FR030200/FR402720-Rnd3 signalings in cytoskeletal rearrangement pathway; E2F1-FR030200/FR402720-Nnat and FR030200/ FR402720-Fam46a signalings in anti-inflammation pathway. This study identified a panel of dysregulated lncRNAs and mRNAs that might serve as potential biomarkers relevant to the vascular injury in insulin resistance induced by high-fat diet."	"A Novel Mouse Model for Cilia-Associated Cardiovascular Anomalies with a High Penetrance of Total Anomalous Pulmonary Venous Return. Primary cilia are small organelles projecting from the cell surface of many cell types. They play a crucial role in the regulation of various signaling pathway. In this study, we investigated the importance of cilia for heart development by conditionally deleting intraflagellar transport protein Ift88 using the col3.6-cre mouse. Analysis of col3.6;Ift88 offspring showed a wide spectrum of cardiovascular defects including double outlet right ventricle and atrioventricular septal defects. In addition, we found that in the majority of specimens the pulmonary veins did not properly connect to the developing left atrium. The abnormal connections found resemble those seen in patients with total anomalous pulmonary venous return. Analysis of mutant hearts at early stages of development revealed abnormal development of the dorsal mesocardium, a second heart field-derived structure at the venous pole intrinsically related to the development of the pulmonary veins. Data presented support a crucial role for primary cilia in outflow tract development and atrioventricular septation and their significance for the formation of the second heart field-derived tissues at the venous pole including the dorsal mesocardium. Furthermore, the results of this study indicate that proper formation of the dorsal mesocardium is critically important for the development of the pulmonary veins. Anat Rec, 302:136-145, 2019. © 2018 Wiley Periodicals, Inc."	"The anti-photoaging and moisturizing effects of Bouea macrophylla extract in UVB-irradiated hairless mice. Ultraviolet (UV) light, a main cause of photoaging, leads to collapse of skin structure, resulting in wrinkle formation and dehydration. The present study assessed the anti-photoaging and moisturizing effects of Bouea macrophylla extract (BRE). UVB-irradiated hairless mice were orally administered with BME (300 mg/kg/day) for 8 weeks. BME ameliorated wrinkle formation, skin thickening, and inelasticity. BME upregulated COL1A1, COL3A1, COL4A1, and COL7A1 mRNA levels through activation of the transforming growth factor-β (TGF-β)/Smad pathway, thereby recovering the content of collagen reduced by UVB. Further, BME suppressed UVB-induced matrix metalloproteinase (MMP)-3 and MMP-13 expression and inhibited MMP-2 and MMP-9 activity by mediating the mitogen-activated protein kinases (MAPKs)/activator protein-1 (AP-1). BME improved moisture content by stimulating the expression of cornified envelope proteins and filaggrin-processing enzymes. Overall, the results show that BME prevents photoaging and promotes moisturization in UVB-irradiated hairless mice, suggesting its potential as a nutraceutical candidate for anti-photoaging and moisturizing effects."	"Utilizing Next-Generation Sequencing for the Diagnosis and Clinical Management of Vascular Ehlers-Danlos Syndrome. NA"	"Comprehensive molecular characterization of microneedling therapy in a human three-dimensional skin model. Microneedling therapy is a widely used technique in dermatology. However, little is known about the underlying molecular effects of this therapy on extracellular matrix remodeling, wound healing, and inflammation. The aim of this study was to examine morphological and molecular changes caused by microneedling treatment in a standardized in vitro full-thickness 3D model of human skin. A microneedling device was used to treat full-thickness 3D skin models. Specimens were harvested at specified time points and qRT-PCR and microarray studies were performed. Frozen sections were examined histologically. Microneedling treatment caused morphological changes in the skin model resulting in an almost complete recovery of the epidermis five days after treatment. Microarray analysis identified an upregulation of genes that are associated with tissue remodeling and wound healing (e.g. COL3A1, COL8A1, TIMP3), epithelial proliferation and differentiation (KRT13, IGF1), immune cell recruitment (CCL11), and a member of the heat shock protein family (HSPB6). On the other hand, we detected a downregulation of pro-inflammatory cytokines (e.g. IL1α, IL1β, IL24, IL36γ, IL36RN), and antimicrobial peptides (e.g. S100A7A, DEFB4). These data were confirmed by independent RT-PCR analyses. We present for the first time the direct molecular effects of microneedling therapy on epidermal keratinocytes and dermal fibroblasts using a standardized 3D skin model. Treatment resulted in histological alterations and changed the expression of various genes related to epidermal differentiation, inflammation, and dermal remodeling. This data suggests that skin microneedling plays a role in dermal remodeling, increases epidermal differentiation, and might also have a direct effect on collagen synthesis. These findings may increase our understanding of the molecular mechanisms of human skin repair induced by microneedling therapy and will allow comparisons with competing applications, such as ablative laser therapies."	"Association Between Plasma Level of Collagen Type III Alpha 1 Chain and Development of Strictures in Pediatric Patients With Crohn's Disease. There are few serum biomarkers to identify patients with Crohn's disease (CD) who are at risk for stricture development. The extracellular matrix components, collagen type III alpha 1 chain (COL3A1) and cartilage oligomeric matrix protein (COMP), could contribute to intestinal fibrosis. We investigated whether children with inflammatory CD (B1) who later develop strictures (B2) have increased plasma levels of COL3A1 or COMP at diagnosis, compared with children who remain B1. We compared results with previously studied biomarkers, including autoantibodies against colony-stimulating factor 2 (CSF2). We selected 161 subjects (mean age, 12.2 y; 62% male) from the Risk Stratification and Identification of Immunogenic and Microbial Markers of Rapid Disease Progression in Children with Crohn's cohort, completed at 28 sites in the United States and Canada from 2008 through 2012. The children underwent colonoscopy and upper endoscopy at diagnosis and were followed up every 6 months for 36 months; plasma samples were collected at baseline. Based on CD phenotype, children were separated to group 1 (B1 phenotype at diagnosis and follow-up evaluation), group 2 (B2 phenotype at diagnosis), or group 3 (B1 phenotype at diagnosis who developed strictures during follow-up evaluation). Plasma samples were collected from patients and 40 children without inflammatory bowel disease (controls) at baseline and analyzed by enzyme-linked immunosorbent assay to measure COL3A1 and COMP. These results were compared with those from a previous biomarker study. The Kruskal-Wallis test and the pairwise Dunn test with Bonferroni correction were used to compare differences among groups. The median baseline concentration of COL3A1 was significantly higher in plasma from group 3 vs group 1 (P &lt; .01) and controls (P = .01). Median baseline plasma concentrations of COMP did not differ significantly among groups. A model comprising baseline concentrations of COL3A1 and anti-CSF2 identified patients with B2 vs B1 CD with an area under the curve of 0.80 (95% CI, 0.71-0.89); the combined concentration identified patients with strictures with a sensitivity value of 0.70 (95% CI, 0.55-0.83) and a specificity value of 0.83 (95% CI, 0.67-0.93). We found median plasma concentrations of COL3A1, measured by enzyme-linked immunosorbent assay at diagnosis, to be significantly higher in patients with CD who later developed strictures than in patients without strictures. The combination of concentrations of COL3A1 and anti-CSF2 might be used to identify pediatric patients at CD diagnosis who are at risk for future strictures. ClinicalTrials.gov identifier: NCT00790543."	"Temporal Regulation of Glomerular and Cortical Tubulointerstitial Genes Involved in the Development of Nephrotoxic Serum Nephritis. Murine nephrotoxic nephritis (NTN) is a well-established model resembling chronic kidney disease. Investigating gene expression patterns separately in the glomerular and cortical tubulointerstitial structure could provide new knowledge about structure-specific changes in expression of genes in the NTN model. Glomerular, cortical tubulointerstitial and whole kidney tissues from mice subjected to nephrotoxic serum (NTS) or phosphate buffered saline (PBS) were collected on day 7, 21 and 42 using laser microdissection (LMD). Total RNA was extracted and subjected to nCounter NanoString. Histology, immunohistochemistry, in situ hybridization and/or quantitative real time PCR (qRT PCR) were performed to confirm regulation of selected genes. LMD provided detailed information about genes that were regulated differently between structures over time. Some of the fibrotic and inflammatory genes (Col1a1, Col3a1 and Ccl2) were upregulated in both structures, whereas other genes such as Spp1 and Grem1 were differentially regulated suggesting spatial pathogenic mechanisms in the kidney. Downregulation of cortical tubulointerstitium genes involved in iron metabolism was detected along with iron accumulation. This study demonstrates several regulated genes in pathways important for the pathogenesis of the NTN model and that LMD identifies structure-specific changes in gene expression during disease development. Furthermore, this study shows the benefits of isolating glomeruli and cortical tubulointerstitium in order to identify gene regulation."	"miR-23b promotes cutaneous wound healing through inhibition of the inflammatory responses by targeting ASK1. Wound healing is a complicated event that develops in three overlapping phases: inflammatory, proliferative, and remodeling. MicroRNAs (miRNAs) have been proved to play an important role in the healing process of skin trauma, and alteration of specific miRNA expression during different phases may be associated with abnormal wound healing. In this study, we determined the variation of miR-23b expression after trauma in normal mice and in cultured cells exposed to lipopolysaccharide. We further demonstrated that excessive miR-23b could significantly accelerate wound healing in vivo. Up-regulation of miR-23b decreases infiltration of inflammatory cells, as evidenced by pathologic staining. Meanwhile, miR-23b could significantly inhibit the expression of pro-inflammatory cytokines, including TNF-α, IL-1β, IL-6, and Ccl2, and significantly increase anti-inflammatory factor IL-10. Furthermore, miR-23b could also promote α-SMA expression in a fiber pattern and increase the expression of Col1a1 and Col3a1. Importantly, we also showed that miR-23b could inhibit inflammation to promote wound healing by targeting apoptotic signal-regulating kinase 1 (ASK1). Notably, knockdown of ASK1 could reduce inflammation factor expression in vitro. Together, our data reveal that miR-23b is a potent therapeutic agent for cutaneous wound healing that shortens the period of inflammatory responses and promotes keratinocyte migration for the re-epithelialization of wound sites."	"Perfusion Tissue Culture Initiates Differential Remodeling of Internal Thoracic Arteries, Radial Arteries, and Saphenous Veins. Adaptive remodeling processes are essential to the maintenance and viability of coronary artery bypass grafts where clinical outcomes depend strongly on the tissue source. In this investigation, we utilized an ex vivo perfusion bioreactor to culture porcine analogs of common human bypass grafts: the internal thoracic artery (ITA), the radial artery (RA), and the great saphenous vein (GSV), and then evaluated samples acutely (6 h) and chronically (7 days) under in situ or coronary-like perfusion conditions. Although morphologically similar, primary cells harvested from the ITA illustrated lower intimal and medial, but not adventitial, cell proliferation rates than those from the RA or GSV. Basal gene expression levels were similar in all vessels, with only COL3A1, SERPINE1, FN1, and TGFB1 being differentially expressed prior to culture; however, over half of all genes were affected nominally by the culturing process. When exposed to coronary-like conditions, RAs and GSVs experienced pathological remodeling not present in ITAs or when vessels were studied in situ. Many of the remodeling genes perturbed at 6 h were restored after 7 days (COL3A1, FN1, MMP2, and TIMP1) while others (SERPINE1, TGFB1, and VCAM1) were not. The findings elucidate the potential mechanisms of graft failure and highlight strategies to encourage healthy ex vivo pregraft conditioning."	"Bioinformatics Analysis Reveals Most Prominent Gene Candidates to Distinguish Colorectal Adenoma from Adenocarcinoma. Colorectal cancer (CRC) is one of the leading causes of death by cancer worldwide. Bowel cancer screening programs enable us to detect early lesions and improve the prognosis of patients with CRC. However, they also generate a significant number of problematic polyps, e.g., adenomas with epithelial misplacement (pseudoinvasion) which can mimic early adenocarcinoma. Therefore, biomarkers that would enable us to distinguish between adenoma with epithelial misplacement (pseudoinvasion) and adenoma with early adenocarcinomas (true invasion) are needed. We hypothesized that the former are genetically similar to adenoma and the latter to adenocarcinoma and we used bioinformatics approach to search for candidate genes that might be potentially used to distinguish between the two lesions. We used publicly available data from Gene Expression Omnibus database and we analyzed gene expression profiles of 252 samples of normal mucosa, colorectal adenoma, and carcinoma. In total, we analyzed 122 colorectal adenomas, 59 colorectal carcinomas, and 62 normal mucosa samples. We have identified 16 genes with differential expression in carcinoma compared to adenoma: COL12A1, COL1A2, COL3A1, DCN, PLAU, SPARC, SPON2, SPP1, SULF1, FADS1, G0S2, EPHA4, KIAA1324, L1TD1, PCKS1, and C11orf96. In conclusion, our in silico analysis revealed 16 candidate genes with different expression patterns in adenoma compared to carcinoma, which might be used to discriminate between these two lesions."	"Identification of hub genes and analysis of prognostic values in pancreatic ductal adenocarcinoma by integrated bioinformatics methods. Pancreatic ductal adenocarcinoma (PDAC) is one of the most lethal cancers in the world, and more molecular mechanisms should be illuminated to meet the urgent need of developing novel detection and therapeutic strategies. We analyzed the related microarray data to find the possible hub genes and analyzed their prognostic values using bioinformatics methods. The mRNA microarray datasets GSE62452, GSE15471, GSE102238, GSE16515, and GSE62165 were finally chosen and analyzed using GEO2R. The overlapping genes were found by Venn Diagrams, functional and pathway enrichment analyses were performed using the DAVID database, and the protein-protein interaction (PPI) network was constructed by STRING and Cytoscape. OncoLnc, which was linked to TCGA survival data, was used to investigate the prognostic values. In total, 179 differentially expressed genes (DEGs) were found in PDAC, among which, 130 were up-regulated genes and 49 were down-regulated. DAVID showed that the up-regulated genes were significantly enriched in extracellular matrix and structure organization, collagen catabolic and metabolic process, while the down-regulated genes were mainly involved in proteolysis, reactive oxygen species metabolic process, homeostatic process and cellular response to starvation. From the PPI network, the 21 nodes with the highest degree were screened as hub genes. Based on Molecular Complex Detection (MCODE) plug-in, the top module was formed by ALB, TGM, PLAT, PLAU, EGF, MMP7, MMP1, LAMC2, LAMA3, LAMB3, COLA1, FAP, CDH11, COL3A1, ITGA2, and VCAN. OncoLnc survival analysis showed that, high expression of ITGA2, MMP7, ITGB4, ITGA3, VCAN and PLAU may predict poor survival results in PDAC. The present study identified hub genes and pathways in PDAC, which may be potential targets for its diagnosis, treatment, and prognostic prediction."	"Intestinal Activation of pH-Sensing Receptor OGR1 [GPR68] Contributes to Fibrogenesis. pH-sensing ovarian cancer G-protein coupled receptor-1 [OGR1/GPR68] is regulated by key inflammatory cytokines. Patients suffering from inflammatory bowel diseases [IBDs] express increased mucosal levels of OGR1 compared with non-IBD controls. pH-sensing may be relevant for progression of fibrosis, as extracellular acidification leads to fibroblast activation and extracellular matrix remodelling. We aimed to determine OGR1 expression in fibrotic lesions in the intestine of Crohn's disease [CD] patients, and the effect of Ogr1 deficiency in fibrogenesis. Human fibrotic and non-fibrotic terminal ileum was obtained from CD patients undergoing ileocaecal resection due to stenosis. Gene expression of fibrosis markers and pH-sensing receptors was analysed. For the initiation of fibrosis in vivo, spontaneous colitis by Il10-/-, dextran sodium sulfate [DSS]-induced chronic colitis and the heterotopic intestinal transplantation model were used. Increased expression of fibrosis markers was accompanied by an increase in OGR1 [2.71 ± 0.69 vs 1.18 ± 0.03, p = 0.016] in fibrosis-affected human terminal ileum, compared with the non-fibrotic resection margin. Positive correlation between OGR1 expression and pro-fibrotic cytokines [TGFB1 and CTGF] and pro-collagens was observed. The heterotopic animal model for intestinal fibrosis transplanted with terminal ileum from Ogr1-/- mice showed a decrease in mRNA expression of fibrosis markers as well as a decrease in collagen layer thickness and hydroxyproline compared with grafts from wild-type mice. OGR1 expression was correlated with increased expression levels of pro-fibrotic genes and collagen deposition. Ogr1 deficiency was associated with a decrease in fibrosis formation. Targeting OGR1 may be a potential new treatment option for IBD-associated fibrosis."	"Peripartum Iliac Arterial Aneurysm and Rupture in a Patient with Vascular Ehlers-Danlos Syndrome Diagnosed by Next-Generation Sequencing. Vascular Ehlers-Danlos syndrome (vEDS), a genetic disorder caused by mutations in procollagen type III gene (COL3A1), may lead to fatal vascular complication during peripartum period because of the arterial fragility. We experienced a case of vEDS with peripartum life-threatening arterial rapture diagnosed by next-generation sequencing (NGS) and successfully treated the vascular complications. A 25-year-old female in pregnancy at 34 weeks had sudden and acute pain in the left lower abdomen. After successful delivery, her computed tomography scan showed a dissecting aneurysm of the left common iliac artery (CIA). Four days after delivery, she presented in hemorrhagic shock induced by arterial rupture in the CIA. Since her clinical presentations inferred vEDS even in the absence of familial history, we performed NGS-based genetic screening for inherited connective tissue disorders including vEDS with informed consent. Even though we started intensive medication, her iliac aneurysm was progressively enlarging within 3 weeks. After an urgent molecular diagnosis for vEDS (a splice-site mutation), cautious endovascular therapy for her CIA aneurysm was successfully performed. This is the first report for pretreatment molecular diagnosis of vEDS using NGS in an emergent situation of severe vascular complications."	"Molecular and immunohistochemical analysis of the urethra of female rats after induced trauma and intravenous therapy with muscle derived stem cells. To identify the urethral migration of muscle derived stem cells (MDSCs) after intravenous (IV) injection in rats that underwent vaginal distension (VD) and to analyze the effects of MDSC in the urethra of rats after trauma in regards to: (1) mRNA expression of collagens, Vegf, Ngf, Ki67, Myh11, and Myh2; (2) expression of smooth and striated muscle proteins. MDSCs expressing green fluorescent protein (GFP) were injected into the tail vein of rats 3 days after VD. The location of GFP cells was verified at 2 h and at 7 days following IV injection. Urethras of three groups were analyzed: Control, Trauma 7D, and MDSC 7D. Real-time RT-qPCR and immunohistochemistry were performed. MDSCs were identified only after 2 h of the procedure in the urethra. Myh11 gene was overexpressed in the Trauma group in relation to Control. Ki67 gene expression was increased in the MDSC group relative to Trauma and Control. Col1a1 and Col3a1 genes expression were increased in the MDSC group relative to Control. Ngf mRNA level was decreased in the MDSC group in relation to Trauma. Protein expression of Mhy11, Myh2, and Desmin were increased in the MDSC group in relation to Trauma and decreased in the Trauma in relation to Control. MDSCs migrated early to the traumatized urethra, but did not integrate into the tissue. MDSC alters the expression of genes related to cell proliferation, neural growth factor and extracellular matrix and the expression of smooth and striated muscle proteins in the traumatized rat urethra."	"Effect of total sonicated Aggregatibacter actinomycetemcomitans fragments on gingival stem/progenitor cells. Aggregatibacter-actinomycetemcomitans (A.actinomycetemcomitans) are strongly associated with localized-aggressive-periodontitis (LAgP). The study's aim was to test for the first time the effect of total sonicated A.actinomycetemcomitans-bacterial-fragments on gingival mesenchymal stem/progenitor cells' (G-MSCs) proliferation and regenerative gene expression in-vitro. G-MSCs were isolated, characterized, expanded and stimulated by total sonicated A.actinomycetemcomitans-bacterial-fragments (0 (negative-control), 15, 60, 120 and 240µg/ml; serovar-b; n=6/group). Cellular proliferation and NF-κβ (NFKB1), Alkaline Phosphatase (ALPL), Collagen-I (COL1A1), Collagen-III (COL3A1), Osteonectin (SPARC) and Osteopontin (SPP1) m-RNA expression were assessed via reverse-transcription-polymerase-chain-reaction (RT-PCR) at 24, 48 and 72 hours and CFUs-ability evaluated at twelve days. G-MSCs demonstrated stem/progenitor cells' characteristics. A.actinomycetemcomitans-bacterial-fragments (up to 72 hours) resulted in marked G-MSCs' proliferation over-time (p&lt;0.001) and elevated NFKB1 (p=0.017), COL1A1 (p=0.025), SPARC (p=0.025), decreased ALPL (p=0.017), with no significant differences for COL3A1 and SPP1 expression or stimulation times (p&gt;0.05; Friedman-test). Longer-term stimulation for twelve days reduced G-MSCs' CFUs. Sonicated A.actinomycetemcomitans-bacterial-fragments' exert beneficial short-term effects on G-MSCs' proliferative and non-mineralized tissue forming aptitude. Results shed new light on the importance of periodontal treatment for LAgP patients, using power driven sonic/ultrasonic devices, which, in addition to reducing the subgingival microbial load, produces cell-stimulatory A.actinomycetemcomitans-bacterial-fragments, with positive attributes on tissue reparative/regenerative responses of tissue resident stem/progenitor cells in their niche."	"Exploring prognostic genes in ovarian cancer stage-related coexpression network modules. Identification of meaningful cluster modules of differential genes or representative biomarkers related to the stages of ovarian cancer (OC) is pivotal, which may help to detect mechanisms of OC progression and evaluate OC patients' prognosis.We downloaded gene expression data and the corresponding clinical information of OC patients from The Cancer Genome Atlas (TCGA) database, which included 379 ovarian cancer patients. Differentially expressed genes (DEGs) of OC patients between stages were picked out using R. There were 731 differential genes between ovarian cancer stage II and stage III (DEGs II-III) and 563 differential genes between ovarian cancer stage III and stage IV (DEGs III-IV), then we performed GO analysis and Kyoto Encyclopedia of Gene and Genome (KEGG) pathway analysis using Database for Annotation, Visualization and Integrated Discovery (DAVID). Moreover, CytoHubba was used to detect the top 20 hub genes in DEGs II-III and DEGs III-IV, followed Cytoscape with search tool for the retrieval of interacting genes (STRING) and MCODE plug-in was utilized to construct protein-protein interaction (PPI) modules of these genes. Three important coexpression modules of DEGs II-III and 3 more meaningful modules of DEGs III-IV were detected from PPI network using molecular complex detection (MCODE) tool. In addition, 5 hub genes in these stage-related DEGs modules with worse overall survival were selected, including COL3A1, COL1A1, COL1A2, KRAS, NRAS. This bioinformatics analysis demonstrated that stage-related prognostic DEGs, such as COL3A1, COL1A1, COL1A2, KRAS, and NRAS might play an unfavorable role in the development as well as metastasis of ovarian cancer. Furthermore, they need to be experimentally verified as a new biomarker to predict OC patient prognosis."	"Dietary lecithin improves feed efficiency without impacting meat quality in immunocastrated male pigs and gilts fed a summer ration containing added fat. The aim of this study was to investigate the effects of sex and dietary lecithin on growth performance, meat quality, muscle collagen content and gene expression of key genes involved in collagen synthesis in finisher pigs. A total of 256 pigs (Large White × Landrace) were allotted to a 2 × 2 factorial arrangement involving sex (gilt or immunocastrated [IC] male) and dietary treatment (0 or 5 g/kg of dietary lecithin). All diets were formulated to contain 4.6% tallow with relatively high total fat of 6.3%. After 5 weeks of dietary treatment, pigs were slaughtered and Longissimus dorsi muscle was obtained for evaluation of meat quality and collagen content. Rectus abdominis muscle was analysed for gene expression of key genes involved in collagen synthesis namely, type I (α1) procollagen (COL1A1), type III (α1) procollagen (COL3A1), α-subunit of prolyl 4-hydroxylase (P4H), lysyl oxidase and metalloproteinase-1 (MMP-1). The results showed that lecithin improved feed efficiency of all pigs (P &lt; 0.05) but it had no effect on feed intake, average daily gain and dressing percentage (P &gt; 0.05). Lecithin also had no effect on meat compression, shear force, collagen content and gene expression (P &gt; 0.05). Immunocastrated male had higher growth rate and increased COL1A1 expression than gilts. However, sex had no effect on fat depth at the P2 site (65 mm from the midline over the last rib), collagen content and expression of other genes (P &gt; 0.05). In conclusion, lecithin improved feed efficiency in finishing pigs without impacting pork quality. Thus, inclusion of lecithin in diets containing high amount of tallow during the summer period could be beneficial."	"Human dendritic cell-specific ICAM-3-grabbing non-integrin downstream signaling alleviates renal fibrosis via Raf-1 activation in systemic candidiasis. We generated a human dendritic cell-specific ICAM-3-grabbing non-integrin (DC-SIGN) transgenic mouse in which renal tubular epithelial cells expressed DC-SIGN. The transgenic mice were infected with Candida albicans intravenously to study how DC-SIGN expression affected the pathogenesis of systemic candidiasis. We discovered that, while C. albicans infection induced renal fibrosis in both transgenic and littermate control mice, the transgenic mice had significantly lower levels of Acta2, Col1a2, Col3a1, and Col4a1 mRNA transcripts compared to the controls. KIM-1, an emerging biomarker for kidney injury, along with Tnf, Il6, and Tgfb1 transcripts, were lower in infected transgenic mice, and yet, the levels of Il10 remained comparable to the controls. While renal CD45<sup>+</sup> infiltrating cells were the source of Tnf, Il6, and Il10, LTL<sup>+</sup> renal proximal tubular epithelial cells were TGF-β1 producers in both infected transgenic and littermate controls. DC-SIGN-expressing tubular epithelial cells produced less TGF-β1 in response to C. albicans infection. In vivo experiments demonstrated that renal proximal tubular epithelial cell production of TGF-β1 was key to C. albicans-induced renal fibrosis and injury. Infection of transgenic mice induced a marked increase of phosphorylated Raf-1 and p38 in the kidney. However, ERK1/2 and JNK phosphorylation was more pronounced in the infected-littermate controls. Interestingly, treating the infected transgenic mice with a Raf-1 inhibitor increased the levels of the Tgfb1, Kim1, and Acta2 transcripts. These results indicate that DC-SIGN signaling, through activation of Raf-1 and p38 and suppression of JNK and ERK1/2 phosphorylation, reduces TGF-β1 production and C. albicans-induced renal fibrosis. Our study reveals for the first time the effect of DC-SIGN expression on C. albicans-induced renal fibrosis."	"Genetic Risk Factors for Intracranial Aneurysm in the Kazakh Population. An intracranial aneurysm (IA) is a weak or thin area on a blood vessel in the brain that balloons as it fills with blood. Genetic factors can influence the risk of developing an aneurism. The purpose of this study was to explore the relationship between single nucleotide polymorphisms (SNPs) and IA in Kazakh population. The patients were genotyped for 60 single nucleotide polymorphisms. Genotyping was performed on the QuantStudio 12K Flex (Life Technologies). A linear regression analysis found 13 SNPs' significant association with development and rupture of IA: the rs1800956 polymorphism of the ENG gene, rs1756 46 polymorphism of the JDP2 gene, variant rs1800255 of the COL3A1, rs4667622 of the UBR3, rs2374513 of the c12orf75, rs3742321 polymorphism of the StAR, the rs3782356 polymorphism of MLL2 gene, rs3932338 to 214 kilobases downstream of PRDM9, rs7550260 polymorphism of the ARHGEF, rs1504749 polymorphism of the SOX17, the rs173686 polymorphism of CSPG2 gene, rs6460071 located on LIMK1 gene, and the rs4934 polymorphism of SERPINA3. A total of 13 SNPs were identified as potential genetic markers for the development and risk of rupture of aneurysms in the Kazakh population. Similar results were obtained after adjusting for the confounding factors of arterial hypertension and age."	"Effect of dual mTOR inhibitor on TGFβ1-induced fibrosis in primary human urethral scar fibroblasts. TGFβ1 and mTOR are considered to play important roles in fibrotic diseases. Rapamycin has been reported to inhibit urethral stricture formation in a rabbit model of urethral fibrosis. To evaluate if dual mTOR inhibitor has a superior efficacy compared with rapamycin on inhibiting cell proliferation and collagen expression in human urethral scar fibroblasts (HUSFs). We established HUSF cultures from fresh surgical specimen. The HUSFs were identified with typical fibroblast markers using immunofluorescence. Then we examined the effect of TGFβ1 on HUSFs using Cell Counting Kit-8 and Western blot. The inhibiting effects of OSI-027 (a dual mTOR inhibitor) on cell proliferation and collagen expression in TGFβ1-induced HUSFs were compared with rapamycin using Cell Counting Kit-8, Western blot, and quantitative reverse transcriptase polymerase chain reaction (qRT-PCR). HUSFs were stained positive for vimentin, collagen I, and collagen III. TGFβ1 had no effect on cell proliferation but increased collagen I and collagen III expressions in HUSFs. OSI-027 was more effective inhibiting cell proliferation and collagen expression compared with rapamycin in TGFβ1-induced HUSFs. OSI-027 played a more important role in inhibiting TGFβ1-induced mTOR pathway and phosphorylation of Smad2 compared with rapamycin in HUSFs. OSI-027 can inhibit the pro-fibrotic effects of TGFβ1 significantly compared with rapamycin in HUSFs. These findings may provide a new therapy in the adjunctive treatment of urethral stricture disease."	"Whole-exome sequencing reveals known and novel variants in a cohort of intracranial vertebral-basilar artery dissection (IVAD). Intracranial vertebral-basilar artery dissection (IVAD) is an arterial disorder leading to life-threatening consequences. Genetic factors are known to be causative to certain syndromic forms of IVAD. However, systematic study of the molecular basis of sporadic and isolated IVAD is lacking. To identify genetic variants contributing to the etiology of IVAD, we enrolled a cohort of 44 unrelated cases with a clinical diagnosis of isolated IVAD and performed whole-exome sequencing (WES) for all the participants; a trio exome sequencing approach was used when samples from both parents were available. Four previously reported disease-causing heterozygous variants (three in COL3A1 and one in FBN1) and seven novel heterozygous variants in IVAD-related genes were identified. In addition, six variants in novel IVAD genes including two de novo heterozygous nonsynonymous variants (each in VPS52 and CDK18), two stop-gain variants (each in MYH9 and LYL1), and two heterozygous biallelic variants in TNXB were considered to be possibly contributing to the phenotype, with unknown significance according to the existing knowledge. A significantly higher mutational rate of IVAD candidate genes was observed in patients versus our in-house controls (P = 0.002) (DISCO study, http://www.discostudy.org/ , n = 2248). Our study provided a mutational landscape for patients with isolated IVAD."	"Upregulation of HOXA11 during the progression of lung adenocarcinoma detected via multiple approaches. The altered expression of homeobox (HOX)A11 has been observed in various malignant tumor types, but it has remained to be determined in human lung adenocarcinoma (LUAD). In the present study, the expression of HOXA11 in LUAD and the potential associated mechanisms were assessed. Data from The Cancer Genome Atlas and Oncomine microarrays were gathered and in‑house polymerase chain reaction data were produced to investigate the altered expression of HOXA11 in LUAD and its association with various clinicopathological characteristics. Genes co‑expressed with HOXA11 were also identified by searching the cBioPortal and Multi Experiment Matrix databases, and performing a bioinformatics analysis, through which the potential molecular mechanisms of HOXA11 in LUAD were explored. The data analyses indicated that HOXA11 was overexpressed in the LUAD samples, and together with its co‑expressed genes, it was indicated to participate in various key signaling pathways, including the focal adhesion, extracellular matrix‑receptor interaction, axon guidance and small cell lung cancer signaling pathways. Furthermore, collagen type III α 1 chain (COL3A1), ephrin B2 (EFNB2), integrin subunit α 8 (ITGA8) and syndecan 2 (SDC2) were confirmed to be differentially expressed in LUAD vs. normal controls at the mRNA and protein level. Of note, LUAD patients with low expression of HOXA11 and ITGB1 had better overall survival rates. The present study indicated that HOXA11 may function as an oncogene in LUAD, and HOXA11 protein probably combines with ITGB1, COL3A1, EFNB2, ITGA8 and SDC2 to have a role in the focal adhesion pathway."	"Role of miR-29 in mediating offspring lung phenotype in a rodent model of intrauterine growth restriction. Considerable epidemiological and experimental evidence supports the concept that the adult chronic lung disease (CLD), is due, at least in part, to aberrations in early lung development in response to an abnormal intrauterine environment; however, the underlying molecular mechanisms remain unknown. We used a well-established rat model of maternal undernutrition (MUN) during pregnancy that results in offspring intrauterine growth restriction (IUGR) and adult CLD to test the hypothesis that in response to MUN, excess maternal glucocorticoids (GCs) program offspring lung development to a CLD phenotype by altering microRNA (miR)-29 expression, which is a key miR in regulating extracellular matrix (ECM) deposition during development and injury-repair. At postnatal day 21 and 5 mo, compared with the control offspring lung, MUN offspring lung miR-29 expression was significantly decreased in conjunction with an elevated expression of multiple downstream target ECM proteins [collagen (COL)1A1, COL3A1, COL4A5, and elastin], at both mRNA and protein levels. Importantly, MUN-induced changes in miR-29 and target gene expressions were at least partially blocked in the lungs of offspring of MUN dams treated with metyrapone, a selective GC synthesis inhibitor. Furthermore, dexamethasone treatment of cultured fetal rat lung fibroblasts significantly induced miR-29 expression along with the suppression of target ECM proteins. These data, along with the previously known role of miR-29 in regulating ECM deposition in vascular tissue in the MUN offspring, suggest miR-29 to be a common mechanistic denominator for the vascular and pulmonary phenotypes in the IUGR offspring, providing a novel potential therapeutic target."	"Time Is of the Essence: A Young Man with Recurrent Pneumothorax and Cavitating Lung Lesions. NA"	"Identification of Potential Key Genes Associated With the Pathogenesis and Prognosis of Gastric Cancer Based on Integrated Bioinformatics Analysis. Background and Objective: Despite striking advances in multimodality management, gastric cancer (GC) remains the third cause of cancer mortality globally and identifying novel diagnostic and prognostic biomarkers is urgently demanded. The study aimed to identify potential key genes associated with the pathogenesis and prognosis of GC. Methods: Differentially expressed genes between GC and normal gastric tissue samples were screened by an integrated analysis of multiple gene expression profile datasets. Key genes related to the pathogenesis and prognosis of GC were identified by employing protein-protein interaction network and Cox proportional hazards model analyses. Results: We identified nine hub genes (TOP2A, COL1A1, COL1A2, NDC80, COL3A1, CDKN3, CEP55, TPX2, and TIMP1) which might be tightly correlated with the pathogenesis of GC. A prognostic gene signature consisted of CST2, AADAC, SERPINE1, COL8A1, SMPD3, ASPN, ITGBL1, MAP7D2, and PLEKHS1 was constructed with a good performance in predicting overall survivals. Conclusion: The findings of this study would provide some directive significance for further investigating the diagnostic and prognostic biomarkers to facilitate the molecular targeting therapy of GC."	"The effect of adipose-derived stem cell sheets and CTGF on early flexor tendon healing in a canine model. Intrasynovial tendon injuries are among the most challenging in orthopedics. Despite significant improvements in operative and rehabilitation methods, functional outcomes continue to be limited by adhesions, gap formation, and rupture. Adhesions result from excessive inflammation, whereas tendon gapping and rupture result from inflammation-induced matrix degradation and insufficient regeneration. Therefore, this study used a combined treatment approach to modulate inflammation with adipose-derived mesenchymal stromal cells (ASCs) while stimulating tendon regeneration with connective tissue growth factor (CTGF). ASCs were applied to the repair surface via cell sheets and CTGF was delivered to the repair center via porous sutures. The effect of the combined treatment was assessed fourteen days after repair in a canine flexor tendon injury model. CTGF, either alone or with ASCs, reduced inflammatory (IL1B and IL6) and matrix degrading (MMP3 and MMP13) gene expression, while increasing anti-inflammatory gene (IL4) expression and collagen synthesis compared to control repairs. The combined treatment was more effective than CTGF treatment alone, reducing the inflammatory IFNG and scar-associated COL3A1 gene expression and increasing CD146<sup>+</sup> tendon stem/progenitor cells at the tendon surface and interior along the core suture tracks. Therefore, the combined approach is promising in promoting early flexor tendon healing and worthy of further investigation."	"A Chinese family with periodontal Ehlers-Danlos syndrome associated with missense mutation in the C1R gene. We report a rare case of the periodontal Ehlers-Danlos syndrome (pEDS) associated with severe periodontitis and tooth loss in a Chinese family. The proband complained of gingival bleeding and mobility, which were also reported in his mother, and maternal uncle and his maternal grandmother and great-grandfather in the past. All family members underwent oral, physical, dermatological, and genetic examinations. Oral manifestation of family members affected with pEDS presented severe periodontitis with multiple or total tooth loss. The proband displayed unique clinical manifestations including a characteristic facial appearance and thin, translucent skin with easily visible venous patterns on feet. Whole-exome sequencing identified missense mutation c.265T&gt;C in C1R in all affected family members tested and frameshift mutation c.1322delG in COL3A1 in the proband alone. None of the unaffected members showed any marked oral, physical, dermatological, or genetic findings. We reported an extremely rare case of pEDS with a missense mutation in C1R in a Chinese family, with coexistence C1R and COL3A1 mutations in the proband who was suspected to suffer from vascular EDS as well. To our knowledge, this is the first case of coexistence of two forms of EDS in a single individual."	"Pooled Platelet-Rich Plasma Lysate Therapy Increases Synoviocyte Proliferation and Hyaluronic Acid Production While Protecting Chondrocytes From Synoviocyte-Derived Inflammatory Mediators. Platelet-rich plasma (PRP) preparations are being used with moderate success to treat osteoarthritis (OA) in humans and in veterinary species. Such preparations are hindered, however, by being autologous in nature and subject to tremendous patient and processing variability. For this reason, there has been increasing interest in the use of platelet lysate preparations instead of traditional PRP. Platelet lysate preparations are acellular, thereby reducing concerns over immunogenicity, and contain high concentrations of growth factors and cytokines. In addition, platelet lysate preparations can be stored frozen for readily available use. The purpose of this study was to evaluate the effects of a pooled allogeneic platelet-rich plasma lysate (PRP-L) preparation on equine synoviocytes and chondrocytes challenged with inflammatory mediators in-vitro to mimic the OA joint environment. Our hypothesis was that PRP-L treatment of inflamed synoviocytes would protect chondrocytes challenged with synoviocyte conditioned media by reducing synoviocyte pro-inflammatory cytokine production while increasing synoviocyte anti-inflammatory cytokine production. Synoviocytes were stimulated with either interleukin-1β (IL-1β) or lipopolysaccharide (LPS) for 24 h followed by no treatment or treatment with platelet-poor plasma lysate (PPP-L) or PRP-L for 48 h. Synoviocyte growth was evaluated at the end of the treatment period and synoviocyte conditioned media was assessed for concentrations of hyaluronic acid (HA), IL-1β, tumor necrosis factor alpha (TNF-α), and interleukin-6 (IL-6). Chondrocytes were then challenged for 48 h with synoviocyte conditioned media from each stimulation and treatment group and examined for gene expression of collagen types I (COL1A1), II (COL2A1), and III (COL3A1), aggrecan (ACAN), lubricin (PRG4), and matrix metallopeptidase 3 (MMP-3) and 13 (MMP-13). Treatment of inflamed synoviocytes with PRP-L resulted in increased synoviocyte growth and increased synoviocyte HA and IL-6 production. Challenge of chondrocytes with conditioned media from PRP-L treated synoviocytes resulted in increased collagen type II and aggrecan gene expression as well as decreased MMP-13 gene expression. The results of this study support continued investigation into the use of pooled PRP-L for the treatment of osteoarthritis and warrant further in-vitro studies to discern the mechanisms of action of PRP-L."	"Knockdown of collagen α-1(III) inhibits glioma cell proliferation and migration and is regulated by miR128-3p. As a member of the collagen family, collagen α-1(III) (COL3A1) is an important protein in the development and progression of several tumors. However, the role of COL3A1 in glioma is not yet clear. The present study examined the expression and function of COL3A1 in glioma cell behavior and identified microRNA (miRNA) regulators. It was demonstrated that COL3A1 expression was upregulated in glioma and directly correlated with the tumor grade. Analysis of the GSE4290 and GSE7696 profiles acquired from the Gene Expression Omnibus database also revealed an increased COL3A1 expression in malignant gliomas compared with the lower grade gliomas and non-tumor brain tissue, which was directly correlated with glioma grade. To explore the functional role of COL3A1 in glioma cell growth, small interfering RNA interference was applied to inhibit COL3A1 expression in Hs683 and U251 cells. The relative COL3A1 mRNA and protein expression levels were significantly reduced in the knockdown cells as determined by western blot analysis. In addition, decreased COL3A1 expression in Hs683 and U251 glioma cells resulted in a delay in cell growth and colony disruption as determined by MTS and colony formation assays. Wound healing analysis indicated that cells with suppressed expression of COL3A1 had a reduced ability to migrate. COL3A1 mRNA levels were inversely correlated with the miR128-3p level in glioma, suggesting that miR128-3p expression is associated with COL3A1 inhibition as verified by reverse transcription-quantified polymerase chain reaction. These results suggest that COL3A1 may be a novel regulator of glioblastoma cell behavior and may represent a novel target for gene therapies against glioma."	"Nintedanib decreases muscle fibrosis and improves muscle function in a murine model of dystrophinopathy. Duchenne muscle dystrophy (DMD) is a genetic disorder characterized by progressive skeletal muscle weakness. Dystrophin deficiency induces instability of the sarcolemma during muscle contraction that leads to muscle necrosis and replacement of muscle by fibro-adipose tissue. Several therapies have been developed to counteract the fibrotic process. We report the effects of nintedanib, a tyrosine kinase inhibitor, in the mdx murine model of DMD. Nintedanib reduced proliferation and migration of human fibroblasts in vitro and decreased the expression of fibrotic genes such as COL1A1, COL3A1, FN1, TGFB1, and PDGFA. We treated seven mdx mice with 60 mg/kg/day nintedanib for 1 month. Electrophysiological studies showed an increase in the amplitude of the motor action potentials and an improvement of the morphology of motor unit potentials in the animals treated. Histological studies demonstrated a significant reduction of the fibrotic areas present in the skeletal muscles. Analysis of mRNA expression from muscles of treated mice showed a reduction in Col1a1, Col3a1, Tgfb1, and Pdgfa. Western blot showed a reduction in the expression of collagen I in skeletal muscles. In conclusion, nintedanib reduced the fibrotic process in a murine model of dystrophinopathy after 1 month of treatment, suggesting its potential use as a therapeutic drug in DMD patients."	"Anti-Tumour Necrosis Factor Therapy for Dupuytren's Disease: A Randomised Dose Response Proof of Concept Phase 2a Clinical Trial. Dupuytren's disease is a common fibrotic condition of the hand that causes irreversible flexion contractures of the fingers, with no approved therapy for early stage disease. Our previous analysis of surgically-excised tissue defined tumour necrosis factor (TNF) as a potential therapeutic target. Here we assessed the efficacy of injecting nodules of Dupuytren's disease with a TNF inhibitor. Patients were randomised to receive adalimumab on one occasion in dose cohorts of 15 mg in 0.3 ml, 35 mg in 0.7 ml, or 40 mg in 0.4 ml, or an equivalent volume of placebo in a 3:1 ratio. Two weeks later the injected tissue was surgically excised and analysed. The primary outcome measure was levels of mRNA expression for α-smooth muscle actin (ACTA2). Secondary outcomes included levels of α-SMA and collagen proteins. The trial was registered with ClinicalTrial.gov (NCT03180957) and the EudraCT (2015-001780-40). We recruited 28 patients, 8 assigned to the 15 mg, 12 to the 35 mg and 8 to the 40 mg adalimumab cohorts. There was no change in mRNA levels for ACTA2, COL1A1, COL3A1 and CDH11. Levels of α-SMA protein expression in patients treated with 40 mg adalimumab (1.09 ± 0.09 ng per μg of total protein) were significantly lower (p = 0.006) compared to placebo treated patients (1.51 ± 0.09 ng/μg). The levels of procollagen type I protein expression were also significantly lower (p &lt; 0.019) in the sub group treated with 40 mg adalimumab (474 ± 84 pg/μg total protein) compared with placebo (817 ± 78 pg/μg). There were two serious adverse events, both considered unrelated to the study drug. In this dose-ranging study, injection of 40 mg of adalimumab in 0.4 ml resulted in down regulation of the myofibroblast phenotype as evidenced by reduction in expression of α-SMA and type I procollagen proteins at 2 weeks. These data form the basis of an ongoing phase 2b clinical trial assessing the efficacy of intranodular injection of 40 mg adalimumab in 0.4 ml compared to an equivalent volume of placebo in patients with early stage Dupuytren's disease. Health Innovation Challenge Fund (Wellcome Trust and Department of Health) and 180 Therapeutics LP."	"Identification of Biomarkers Based on Differentially Expressed Genes in Papillary Thyroid Carcinoma. The incidence of papillary thyroid carcinoma (PTC) is increasing rapidly throughout the world. Hence, there is an urgent need for identifying more specific and sensitive biomarkers to explorate the pathogenesis of PTC. In this study, three pairs of stage I PTC tissues and matched normal adjacent tissues were sequenced by RNA-Seq, and 719 differentially expressed genes (DEGs) were screened. KEGG pathway enrichment analyses indicated that the DEGs were significantly enriched in 28 pathways. A total of 18 nodes consisting of 20 DEGs were identified in the top 10% of KEGG integrated networks. The functions of DEGs were further analysed by GO. The 13 selected genes were confirmed by qRT-PCR in 16 stage I PTC patients and by The Cancer Genome Atlas (TCGA) database. The relationship interactions between DEGs were analysed by protein-protein interaction networks and chromosome localizations. Finally, four newly discovered genes, COMP, COL3A1, ZAP70, and CD247, were found to be related with PTC clinical phenotypes, and were confirmed by Spearman's correlation analyses in TCGA database. These four DEGs might be promising biomarkers for early-stage PTC, and provide an experimental foundation for further exploration of the pathogenesis of early-stage PTC."	"Protein-restricted maternal diet during lactation decreases type I and type III tropocollagen synthesis in the skin of mice offspring. We investigated the effects of a low protein (LP) maternal diet during lactation on type I and III tropocollagen synthesis in infant mouse skin. The LP diet decreased the levels of type I and III tropocollagen proteins and COL1A1 and COL3A1 mRNA. Thus, the protein composition of the maternal perinatal diet may influence the skin health of offspring."	"Corticosteroid inhibits differentiation of palmar fibromatosis-derived stem cells (FSCs) through downregulation of transforming growth factor-β1 (TGF-β1). Treatment for musculoskeletal fibromatosis remains challenging. Surgical excision for fibromatosis is the standard therapy but recurrence remains high. Corticosteroids, an anti-fibrogenic compound, have been used to treat early stage palmar fibromatosis, but the mechanism is unknown. We investigated the inhibitory mechanism effect of corticosteroids in the murine model of fibromatosis nodule as well as in cultured FSCs. Quantitative reverse transcription/polymerase chain reaction (PCR) analysis and immunofluorescence (IF) staining for markers of myofibroblasts (α-smooth muscle actin and type III collagen) were used to examine the effect of dexamethasone on myofibroblasic differentiation of FSCs both in vitro and in vivo. Transforming growth factor-β1 (TGF-β1) signaling and its downstream targets were examined using western blot analysis. TGF-β1 expression in FSCs before and after dexamethasone treatment was compared. In addition, inhibition of TGF-β1 expression was examined using RNA interference (RNAi) on FSCs, both in vitro and in vivo. Treating FSCs with dexamethasone inhibited FSCs' myofibroblastic differentiation in vitro. Treating FSCs with dexamethasone before or after implantation further inhibited formation of fibromatosis nodules. Dexamethasone suppressed expression of TGF-β1 and pSmad2/3 by FSCs in vitro. TGF-β1 knockdown FSCs showed reducing myofibroblastic differentiation both in vitro and in vivo. Finally, addition of TGF-β1 abolished dexamethasone-mediated inhibition of myofibroblastic differentiation. Dexamethasone inhibits the myofibroblastic differentiated potential of FSCs both in vitro and in vivo through inhibition of TGF-β1 expression in FSCs. TGF-β1 plays a key role in myofibroblastic differentiation."	"Ambient fine particulate matter exposure induces reversible cardiac dysfunction and fibrosis in juvenile and older female mice. Cardiovascular disease is the leading cause of mortality in the advanced world, and age is an important determinant of cardiac function. The purpose of the study is to determine whether the PM2.5-induced cardiac dysfunction is age-dependent and whether the adverse effects can be restored after PM2.5 exposure withdrawal. Female C57BL/6 mice at different ages (4-week-old, 4-month-old, and 10-month-old) received oropharyngeal aspiration of 3 mg/kg b.w. PM2.5 every other day for 4 weeks. Then, 10-month-old and 4-week-old mice were exposed to PM2.5 for 4 weeks and withdrawal PM2.5 1 or 2 weeks. Heart rate and systolic blood pressure were measured using a tail-cuff system. Cardiac function was assessed by echocardiography. Left ventricles were processed for histology to assess myocardial fibrosis. ROS generation was detected by photocatalysis using 2',7'-dichlorodihydrofluorescein diacetate (DCFHDA). The expression of cardiac fibrosis markers (Col1a1, Col3a1) and possible signaling molecules, including NADPH oxidase 4 (NOX-4), transforming growth factor β1 (TGFβ1), and Smad3, were detected by qPCR and/ or Western blot. PM2.5 exposure induced cardiac diastolic dysfunction of mice, elevated the heart rate and blood pressure, developed cardiac systolic dysfunction of 10-month-old mice, and caused fibrosis in both 4-week-old and 10-month-old mice. PM2.5 exposure increased the expression of Col1a1, Col3a1, NOX-4, and TGFβ1, activated Smad3, and generated more reactive oxygen species in the myocardium of 4-week-old and 10-month-old mice. The withdrawal from PM2.5 exposure restored blood pressure, heart rate, cardiac function, expression of collagens, and malonaldehyde (MDA) levels in hearts of both 10-month-old and 4-week-old mice. Juvenile and older mice are more sensitive to PM2.5 than adults and suffer from cardiac dysfunction. PM2.5 exposure reversibly elevated heart rate and blood pressure, induced cardiac systolic dysfunction of older mice, and reversibly induced fibrosis in juvenile and older mice. The mechanism by which PM2.5 exposure resulted in cardiac lesions might involve oxidative stress, NADPH oxidase, TGFβ1, and Smad-dependent pathways."	"Therapeutic effects of obeticholic acid (OCA) treatment in a bleomycin-induced pulmonary fibrosis rat model. We recently demonstrated a protective effect of the farnesoid X receptor agonist obeticholic acid (OCA) in rat models of bleomycin-induced pulmonary fibrosis (PF). Aim of the present study was to investigate whether the positive effects of OCA treatment are apparent also on ongoing bleomycin-induced PF, i.e., after 2 weeks of bleomycin administration. Bleomycin-induced PF rats were treated 2 weeks after bleomycin administration with OCA or pirfenidone for two additional weeks. Pulmonary function test was performed at 2 and 4 weeks in all experimental groups. At the same time points, lung morphological features and mRNA expression profile of genes related to fibrosis, inflammation and epithelial-mesenchymal transition were also assessed. After 2 weeks, bleomycin significantly increased the pressure at the airway opening (PAO), a functional parameter related to fibrosis-induced lung stiffness, and induced diffuse lung interstitium fibrosis, with upregulation of inflammation (IL1β, MCP1) and tissue remodeling (COL1A1, COL3A1, ET1, MMP7, PDGFa, αSMA, SNAI1) markers. At week four, a further increase of lung fibrosis and PAO was observed, accompanied by upregulation of extracellular matrix-related mRNA expression. OCA administration, even after the establishment of PF, significantly improved pulmonary function, normalizing PAO, and reverted the bleomycin-induced lung alterations, with significant reduction of markers of inflammation (CD206, COX2, HIF1, IL1β, MCP1), epithelial proliferation (CTGF, PDGFa) and fibrosis (COL1A1, COL3A1, ET1, FN1, MMPs, αSMA, SNAIs, TGFβ1, TIMPs). Results with OCA were similar or superior to those obtained with pirfenidone. In conclusion, our results demonstrate a significant therapeutic effect of OCA in already established PF."	"NEDD9 targets COL3A1 to promote endothelial fibrosis and pulmonary arterial hypertension. Germline mutations involving small mothers against decapentaplegic-transforming growth factor-β (SMAD-TGF-β) signaling are an important but rare cause of pulmonary arterial hypertension (PAH), which is a disease characterized, in part, by vascular fibrosis and hyperaldosteronism (ALDO). We developed and analyzed a fibrosis protein-protein network (fibrosome) in silico, which predicted that the SMAD3 target neural precursor cell expressed developmentally down-regulated 9 (NEDD9) is a critical ALDO-regulated node underpinning pathogenic vascular fibrosis. Bioinformatics and microscale thermophoresis demonstrated that oxidation of Cys<sup>18</sup> in the SMAD3 docking region of NEDD9 impairs SMAD3-NEDD9 protein-protein interactions in vitro. This effect was reproduced by ALDO-induced oxidant stress in cultured human pulmonary artery endothelial cells (HPAECs), resulting in impaired NEDD9 proteolytic degradation, increased NEDD9 complex formation with Nk2 homeobox 5 (NKX2-5), and increased NKX2-5 binding to COL3A1 Up-regulation of NEDD9-dependent collagen III expression corresponded to changes in cell stiffness measured by atomic force microscopy. HPAEC-derived exosomal signaling targeted NEDD9 to increase collagen I/III expression in human pulmonary artery smooth muscle cells, identifying a second endothelial mechanism regulating vascular fibrosis. ALDO-NEDD9 signaling was not affected by treatment with a TGF-β ligand trap and, thus, was not contingent on TGF-β signaling. Colocalization of NEDD9 with collagen III in HPAECs was observed in fibrotic pulmonary arterioles from PAH patients. Furthermore, NEDD9 ablation or inhibition prevented fibrotic vascular remodeling and pulmonary hypertension in animal models of PAH in vivo. These data identify a critical TGF-β-independent posttranslational modification that impairs SMAD3-NEDD9 binding in HPAECs to modulate vascular fibrosis and promote PAH."	"Fibroblast and keratinocyte gene expression following exposure to the extracts of holy basil plant (Ocimum tenuiflorum), malabar nut plant (Justicia adhatoda), and emblic myrobalan plant (Phyllanthus emblica). This data article provides gene expression profiles, determined by using real-time PCR, of fibroblasts and keratinocytes treated with 0.01% and 0.001% extracts of holy basil plant (Ocimum tenuiflorum), sri lankan local name &quot;maduruthala&quot;, 0.1% and 0.01% extracts of malabar nut plant (Justicia adhatoda), sri lankan local name &quot;adayhoda&quot; and 0.003% and 0.001% extracts of emblic myrobalan plant (Phyllanthus emblica), sri lankan local name &quot;nelli&quot;, harvested in Sri Lanka. For fibroblasts, the dataset includes expression profiles for genes encoding hyaluronan synthase 1 (HAS1), hyaluronan synthase 2 (HAS2), hyaluronidase-1 (HYAL1), hyaluronidase-2 (HYAL2), versican, aggrecan, CD44, collagen, type I, alpha 1 (COL1A1), collagen, type III, alpha 1 (COL3A1), collagen, type VII, alpha 1 (COL7A1), matrix metalloproteinase 1 (MMP1), acid ceramidase, basic fibroblast growth factor (bFGF), fibroblast growth factor-7 (FGF7), vascular endothelial growth factor (VEGF), interleukin-1 alpha (IL-1α), cyclooxygenase-2 (cox2), transforming growth factor beta (TGF-β), and aquaporin 3 (AQP3). For keratinocytes, the expression profiles are for genes encoding HAS1, HAS2, HYAL1, HYAL2, versican, CD44, IL-1α, cox2, TGF-β, AQP3, Laminin5, collagen, type XVII, alpha 1 (COL17A1), integrin alpha-6 (ITGA6), ceramide synthase 3 (CERS3), elongation of very long chain fatty acids protein 1 (ELOVL1), elongation of very long chain fatty acids protein 4 (ELOVL4), filaggrin (FLG), transglutaminase 1 (TGM1), and keratin 1 (KRT1). The expression profiles are provided as bar graphs."	"Extracellular Matrix Expression and Production in Fibroblast-Collagen Gels: Towards an In Vitro Model for Ligament Wound Healing. Ligament wound healing involves the proliferation of a dense and disorganized fibrous matrix that slowly remodels into scar tissue at the injury site. This remodeling process does not fully restore the highly aligned collagen network that exists in native tissue, and consequently repaired ligament has decreased strength and durability. In order to identify treatments that stimulate collagen alignment and strengthen ligament repair, there is a need to develop in vitro models to study fibroblast activation during ligament wound healing. The objective of this study was to measure gene expression and matrix protein accumulation in fibroblast-collagen gels that were subjected to different static stress conditions (stress-free, biaxial stress, and uniaxial stress) for three time points (1, 2 or 3 weeks). By comparing our in vitro results to prior in vivo studies, we found that stress-free gels had time-dependent changes in gene expression (col3a1, TnC) corresponding to early scar formation, and biaxial stress gels had protein levels (collagen type III, decorin) corresponding to early scar formation. This is the first study to conduct a targeted evaluation of ligament healing biomarkers in fibroblast-collagen gels, and the results suggest that biomimetic in-vitro models of early scar formation should be initially cultured under biaxial stress conditions."	"Effect of Simulated Microgravity Conditions on Differentiation of Adipose Derived Stem Cells towards Fibroblasts Using Connective Tissue Growth Factor. Background: Mesenchymal stem cells (MSCs) are multipotent cells able to differentiating into a variety of mesenchymal tissues including osteoblasts, adipocytes and several other tissues. Objectives: Differentiation of MSCs into fibroblast cells in vitro is an attractive strategy to achieve fibroblast cell and use them for purposes such as regeneration medicine. The goal of this study was investigate the simulated microgravity effect on differentiation of Adipose Derived Stem Cells (ADSCs) to fibroblasts. Materials and Methods: To fibroblast differentiation 100 ng.mL<sup>-1</sup> of connective tissue growth factor (CTGF), and for simulation microgravity, 2D clinostat was used. After isolation the human ADSCs from adipose, cells were passaged, and at passages 3 they were used for characterization and subsequent steps. After 7 days of CTGF and simulated microgravity treatment, proliferation, and differentiation were analyzed collectively by MTT assay, quantitative PCR analyses, and Immunocytochemistry staining. Results: MTT assay revealed that CTGF stimulate the proliferation but simulated microgravity didn't have statistically significant effect on cell proliferation. In RNA level the expression of these genes are investigated: collagen type I (COLI), elastin (ELA), collagen type III (ColIII), Matrix Metalloproteinases I(MMP1), Fibronectin 1 (FN1), CD44, Fibroblast Specific protein (FSP-1), Integrin Subunit Beta 1 (ITGB1), Vimentin (VIM) and Fibrillin (FBN). We found that expression of ELN, FN1, FSP1, COL1A1, ITGB1, MMP1 and COL3A1 in both condition, and VIM and FBN1 just in differentiation medium in normal gravity increased. In protein level the expression of COL III and ELN in simulated microgravity increased. Conclusions: These findings collectively demonstrate that the simulated microgravity condition alters the marker fibroblast gene expression in fibroblast differentiation process."	"Proteomic Characterization of the Extracellular Matrix of Human Uterine Fibroids. Uterine leiomyomas (fibroids) are the most common benign tumors that are associated with increased production of extracellular matrix (ECM). Excessive ECM deposition plays a major role in the enlargement and stiffness of these tumors and contributes to clinical symptoms, such as abnormal bleeding and abdominal pain. However, no study so far has explored the global composition of the ECM of fibroids and normal myometrium. In this study, we performed a systematic ECM enrichment procedure and comparative proteomic analyses to profile the ECM composition of genetically annotated different-sized fibroids (small, medium, and large) and adjacent normal myometrium (ANM). Our matrisome analysis identified a combined total of 108, 126, 126, and 130 unique ECM and ECM-associated proteins with a confidence corresponding to a false discovery rate &lt;1% in ANM and in small, medium, and large fibroids, respectively. The majority of fibroid ECM proteins belong to the core matrisome that includes glycoproteins, collagens, and proteoglycans. Considering that the small-sized fibroids represent the initial stages of leiomyogenesis, we highlighted some of the most abundant and important upregulated ECM proteins in small fibroids (i.e., POSTN, TNC, COL3A1, COL24A1, and ASPN). Furthermore, we revealed 30 unique ECM proteins that exist only in fibroids but that are not present in ANM regardless of MED12 mutation. We propose that some of the proteins identified represent potential novel ECM drug targets that may change the paradigm of fibroid treatment."	"Effect of estradiol on fibroblasts from postmenopausal idiopathic carpal tunnel syndrome patients. Fibrosis of the subsynovial connective tissue (SSCT) is a characteristic finding in patients with idiopathic carpal tunnel syndrome (CTS). Idiopathic CTS frequently occurs in postmenopausal women; therefore, female steroid hormones, especially estrogens, may be involved in its development. In this study, we evaluated the effect of the estradiol on the expression of genes and proteins related to fibrosis of SSCT fibroblasts from patients with idiopathic CTS. This study included 10 postmenopausal women (mean age 76 years). Fibroblasts derived from SSCT were treated with estradiol (10<sup>-4</sup> -10<sup>-12</sup> M), and the expression levels of TGF-β-responsive genes were evaluated. The relationships between the expression of untreated estrogen receptor α (ERα) and ERβ and changes in gene expression due to estradiol treatment were examined by quantitative real-time polymerase chain reaction. The effects of 10<sup>-4</sup> M estradiol on collagen type I (Col1) and collagen type III (Col3) protein expression levels were also evaluated by fluorescent staining. The relationships between ERα/β and Col1/3 expression were evaluated by immunohistochemical staining. The reduction in Col1A1 mRNA expression due to estradiol treatment was positively correlated with ERα expression (r = 0.903, p &lt; 0.01). At the protein level, expression of Col1 and Col3 were down-regulated. These results indicated that ERα-mediated signaling may be involved in the regulation of Col1A1, and its regulatory effect may be dependent on the ERα expression level. The accurate evaluation of ERα expression level in the SSCT of individual patients with idiopathic CTS might guide the effective use of new estrogen replacement therapy."	"Erythromycin combined with corticosteroid reduced inflammation and modified trauma-induced tracheal stenosis in a rabbit model. Patients with endotracheal intubation or tracheostomy are subject to benign tracheal stenosis (TS), for which current therapies are unsatisfactory. We conducted a preliminary investigation of drugs and drug combinations for the prevention and treatment of TS in a rabbit model. Fifty-four rabbits were apportioned into nine groups according to treatment: sham-operated control; untreated TS model; amikacin; budesonide; erythromycin; penicillin; amikacin + budesonide; erythromycin + budesonide; and penicillin + budesonide. TS was induced by abrasion during surgery. The drugs were applied for 7 days before and 10 days after the surgery. Rabbits were killed on the eleventh day. Tracheal specimens were processed for determining alterations in the thicknesses of tracheal epithelium and lamina propria via hematoxylin and eosin. The tracheal mRNA (assessed by real-time quantitative polymerase chain reaction) expressions of the following fibrotic-related factors were determined: transforming growth factor-β1 (TGF- β1), collagen type I (COL1A1), collagen type III (COL3A1), and interleukin-17 (IL-17). The protein levels of TGF-β1, COL1A1, and COL3A1 were determined through immunohistochemistry and integrated optical densities. Compared with all other groups, the untreated TS model had significantly thicker tracheal epithelium and lamina propria, and higher mRNA and protein levels of all targeted fibrotic factors. The mRNA and protein levels of the targeted fibrotic factors in all the drug-treated groups were lower than those of the untreated TS model, and differences were most significant in the erythromycin + budesonide group. Erythromycin combined with budesonide may reduce inflammation and modify fibrosis progression in TS after tracheal injury."	"A case of vascular Ehlers-Danlos Syndrome with a cardiomyopathy and multi-system involvement. Ehlers-Danlos Syndrome comprises a heterogeneous group of heritable connective tissue disorders resulting from various gene mutations. We present an unusual case of vascular Ehlers-Danlos Syndrome with distinctive physical characteristics and a cardiomyopathy with features suggesting isolated left ventricular non-compaction. The cardiac features represent the first report of a cardiomyopathy associated with a mutation in the COL3A1 gene. This case also illustrates the multi-system nature of Ehlers-Danlos Syndrome and the complexity of managing patients with the vascular subtype."	"Catastrophic multiple arterial dissections revealing concomitant polyarteritis nodosa and vascular Elhers-Danlos syndrome. NA"	"Streptozotocin-induced diabetes alters transcription of multiple genes necessary for extracellular matrix remodeling in rat patellar tendon. Tendon collagen fibril degradation is commonly seen in tendons of diabetics, but the mechanisms responsible for these changes remain to be elucidated. We have demonstrated that streptozotocin (STZ)-induced diabetes increases tendon cell proliferation and collagen content. In the present study, we evaluated that impact of STZ-induced diabetes on mRNA transcripts involved with collagen fibril organization, extracellular matrix (ECM) remodeling, apoptosis, and proliferation. Rats were divided into four groups: nondiabetic (control, n = 9), 1 week (acute, n = 8) or 10 weeks of diabetes (chronic, n = 7), and 10 weeks of diabetes with insulin (insulin, n = 8). RNA was isolated from the patellar tendon for determination of mRNA transcripts using droplet digital PCR (ddPCR). Transcripts for Col1a1, Col3a1, Mmp2, Timp1, Scx, Tnmd, Casp3, Casp8, and Ager were lower in acute relative to control and insulin rats (p ≤ 0.05). With the exception of Scx, transcripts for Col1a1, Col3a1, Mmp2, Timp1, Tnmd, Casp3, Casp8, and Ager were also lower in chronic when compared to control (p &lt; 0.05). Transcripts for Col1a1, Col3a1, Mmp2, Timp1, Tnmd, Casp3, Casp8, and Ager were not different between control and insulin (p &gt; 0.05). Transcripts for Dcn, Mmp1a, Mmp9, Pcna, Tgfbr3, Ptgs2, Ptger2, Ptges, and iNos were not altered by diabetes or insulin (p &gt; 0.05). Our findings indicated that STZ-induced diabetes results in rapid and large changes in the expression of several genes that are key to ECM remodeling, maintenance, and maturation."	"Alpha-linolenic acid and linoleic acid differentially regulate the skeletal muscle secretome of obese Zucker rats. Evidence shows that proteins secreted from skeletal muscle influence a broad range of metabolic signaling pathways. We previously reported that essential polyunsaturated fatty acids (PUFA) improved whole-body glucose homeostasis in obese Zucker rats; however, the mechanisms underlying these benefits remain enigmatic. While PUFA and obesity influence skeletal muscle function, their effects on the secretome are unknown. The aim of this work was to determine if improvements in whole-body glucose homeostasis in obese Zucker rats fed diets supplemented with either linoleic acid (LA) or alpha-linolenic acid (ALA) for 12 wk are related to changes in the skeletal muscle secretome. Secreted proteins were identified with a predictive bioinformatic analysis of microarray gene expression from red tibialis anterior skeletal muscle. Approximately 130 genes were differentially expressed (false discovery rate = 0.05) in obese rats compared with lean controls. The expression of 15 genes encoding secreted proteins was differentially regulated in obese controls, obese LA-supplemented, and obese ALA-supplemented rats compared with lean controls. Five secreted proteins ( Col3a1, Col15a1, Pdgfd, Lyz2, and Angptl4) were differentially regulated by LA and ALA. Most notably, ALA supplementation reduced Angptl4 gene expression compared with obese control and obese-LA supplemented rats and reduced circulating ANGPTL4 serum concentrations. ALA also influenced Angptl4 gene expression and ANGPTL4 secretion from differentiated rat L6 myotubes. Altogether, the present data indicate that obesity has a greater global impact on skeletal muscle gene expression than either essential PUFA; however, LA and ALA may exert their metabolic benefits in part by regulating the skeletal muscle secretome."	"Ex vivo nonlinear microscopy imaging of Ehlers-Danlos syndrome-affected skin. Ehlers-Danlos syndrome (EDS) is the name for a heterogenous group of rare genetic connective tissue disorders with an overall incidence of 1 in 5000. The histological characteristics of EDS have been previously described in detail in the late 1970s and early 1980s. Since that time, the classification of EDS has undergone significant changes, yet the description of the histological features of collagen morphology in different EDS subtypes has endured the test of time. Nonlinear microscopy techniques can be utilized for non-invasive in vivo label-free imaging of the skin. Among these techniques, two-photon absorption fluorescence (TPF) microscopy can visualize endogenous fluorophores, such as elastin, while the morphology of collagen fibers can be assessed by second-harmonic generation (SHG) microscopy. In our present work, we performed TPF and SHG microscopy imaging on ex vivo skin samples of one patient with classical EDS and two patients with vascular EDS and two healthy controls. We detected irregular, loosely dispersed collagen fibers in a non-parallel arrangement in the dermis of the EDS patients, while as expected, there was no noticeable impairment in the elastin content. Based on further studies on a larger number of patients, in vivo nonlinear microscopic imaging could be utilized for the assessment of the skin status of EDS patients in the future."	"Anti-fibrotic effects of pirfenidone and rapamycin in primary IPF fibroblasts and human alveolar epithelial cells. Pirfenidone, a pleiotropic anti-fibrotic treatment, has been shown to slow down disease progression of idiopathic pulmonary fibrosis (IPF), a fatal and devastating lung disease. Rapamycin, an inhibitor of fibroblast proliferation could be a potential anti-fibrotic drug to improve the effects of pirfenidone. Primary lung fibroblasts from IPF patients and human alveolar epithelial cells (A549) were treated in vitro with pirfenidone and rapamycin in the presence or absence of transforming growth factor β1 (TGF-β). Extracellular matrix protein and gene expression of markers involved in lung fibrosis (tenascin-c, fibronectin, collagen I [COL1A1], collagen III [COL3A1] and α-smooth muscle actin [α-SMA]) were analyzed. A cell migration assay in pirfenidone, rapamycin and TGF-β-containing media was performed. Gene and protein expression of tenascin-c and fibronectin of fibrotic fibroblasts were reduced by pirfenidone or rapamycin treatment. Pirfenidone-rapamycin treatment did not revert the epithelial to mesenchymal transition pathway activated by TGF-β. However, the drug combination significantly abrogated fibroblast to myofibroblast transition. The inhibitory effect of pirfenidone on fibroblast migration in the scratch-wound assay was potentiated by rapamycin combination. These findings indicate that the combination of pirfenidone and rapamycin widen the inhibition range of fibrogenic markers and prevents fibroblast migration. These results would open a new line of research for an anti-fibrotic combination therapeutic approach."	"Tranilast inhibits the expression of genes related to epithelial-mesenchymal transition and angiogenesis in neurofibromin-deficient cells. Neurofibromatosis type 1 (NF1) is caused by germline mutations in the NF1 gene and is characterized by café au lait spots and benign tumours known as neurofibromas. NF1 encodes the tumour suppressor protein neurofibromin, which negatively regulates the small GTPase Ras, with the constitutive activation of Ras signalling resulting from NF1 mutations being thought to underlie neurofibroma development. We previously showed that knockdown of neurofibromin triggers epithelial-mesenchymal transition (EMT) signalling and that such signalling is activated in NF1-associated neurofibromas. With the use of a cell-based drug screening assay, we have now identified the antiallergy drug tranilast (N-(3,4-dimethoxycinnamoyl) anthranilic acid) as an inhibitor of EMT and found that it attenuated the expression of mesenchymal markers and angiogenesis-related genes in NF1-mutated sNF96.2 cells and in neurofibroma cells from NF1 patients. Tranilast also suppressed the proliferation of neurofibromin-deficient cells in vitro more effectively than it did that of intact cells. In addition, tranilast inhibited sNF96.2 cell migration and proliferation in vivo. Knockdown of type III collagen (COL3A1) also suppressed the proliferation of neurofibroma cells, whereas expression of COL3A1 and SOX2 was increased in tranilast-resistant cells, suggesting that COL3A1 and the transcription factor SOX2 might contribute to the development of tranilast resistance."	"[microRNA-222 regulates proliferation and apoptosis of fibroblasts in hypertrophic scar via matrix metalloproteinase 1]. &lt;b&gt;Objective:&lt;/b&gt; To explore the effect of microRNA(miR)-222 on cell proliferation and apoptosis of fibroblasts in hypertrophic scar (HS) and the underlying mechanisms. &lt;b&gt;Methods:&lt;/b&gt; The expression of miR-222 in the HS and the normal skin tissues was detected by real-time RT-PCR. The HS fibroblasts were transfected with miR-222 mimic and miR-222 inhibitor respectively. The cell viability was tested with MTT assay, cell cycle distribution and apoptosis were detected with flow cytometry and the expression levels of proliferation, apoptosis and cell cycle related proteins were determined with Western blot. Direct target of miR-222 was evaluated by dual-luciferase reporter assay. &lt;b&gt;Results:&lt;/b&gt; miR-222 was significantly up-regulated in HS tissues compared with normal skin tissues(&lt;i&gt;P&lt;/i&gt;&lt;0.05). Overexpression of miR-222 enhanced the cell viability of HS fibroblasts; increased mRNA and protein expressions of proliferating cell nuclear antigen (PCNA), collagen alpha-1 (Ⅰ) chain (Col1A1) and collagen alpha-1 (Ⅲ) chain (Col3A1); increased cell population in S phase and protein expressions of cyclin D1, cyclin E1 and cyclin-dependent kinases 1 (CDK1); inhibited cell apoptosis and reduced protein expressions of caspase-3/9. Overexpression of MMP1 attenuated the effects of miR-222 on the cell viability and apoptosis in fibroblasts, reduced expression levels of PCNA, cyclin D1 and the expression of caspase-3 was increased. &lt;b&gt;Conclusion:&lt;/b&gt; miR-222 enhances cell proliferation and inhibits cell apoptosis of HS fibroblasts through negative regulation of MMP1, which suggests that miR-222 and MMP1 might be used as novel biomarkers and targets in diagnostic and therapeutic approaches for HS."	"Compressed Collagen Enhances Stem Cell Therapy for Corneal Scarring. Stem cells from human corneal stroma (CSSC) suppress corneal stromal scarring in a mouse wound-healing model and promote regeneration of native transparent tissue (PMID:25504883). This study investigated efficacy of compressed collagen gel (CCG) as a vehicle to deliver CSSC for corneal therapy. CSSC isolated from limbal stroma of human donor corneas were embedded in soluble rat-tendon collagen, gelled at 37°C, and partially dehydrated to a thickness of 100 µm by passive absorption. The CCG disks were dimensionally stable, easy to handle, and could be adhered securely to de-epithelialized mouse cornea with fibrin-based adhesive. CSSC in CCG maintained &gt;80% viability for &gt;1 week in culture media and could be cryopreserved in 20% fetal bovine serum-10%DMSO in liquid nitrogen. CCG containing as few as 500 CSSC effectively prevented visible scarring and suppressed expression of fibrotic Col3a1 mRNA. CSSC in CCG were more effective at blocking scarring on a per-cell basis than CSSC delivered directly in a fibrin gel as previously described. Collagen-embedded cells retained the ability to suppress corneal scarring after conventional cryopreservation. This study demonstrates use of a common biomaterial that can facilitate storage and handling of stem cells in a manner that may provide off-the-shelf delivery of stem cells as a therapy for corneal scarring. Stem Cells Translational Medicine 2018;7:487-494."	"Prospective Cardiovascular Genetics Evaluation in Spontaneous Coronary Artery Dissection. Previous studies describing genetics evaluation in spontaneous coronary artery dissection (SCAD) have been retrospective in nature or presented as single case reports. As part of a dedicated clinical program, we evaluated patients in cardiovascular genetics clinic to determine the role of genetically triggered vascular disease and genetic testing in SCAD. Patient data were entered prospectively into the Massachusetts General Hospital SCAD registry database from July 2013 to September 2017. Clinically indicated genetic testing was conducted based on patient imaging, family history, physical examination, and patient preference. Of the 107 patients enrolled in the registry, 73 underwent cardiovascular genetics evaluation at our center (average age, 45.3±9.4 years; 85.3% female), and genetic testing was performed for 44 patients. A family history of aneurysm or dissection was not a prevalent feature in the study population, and only 1 patient had a family history of SCAD. Six patients (8.2%) had identifiable genetically triggered vascular disease: 3 with vascular Ehlers-Danlos syndrome (COL3A1), 1 with Nail-patella syndrome (LMX1B), 1 with autosomal dominant polycystic kidney disease (PKD1), and 1 with Loeys-Dietz syndrome (SMAD3). None of these 6 had radiographic evidence of fibromuscular dysplasia. In this series, 8.2% of the SCAD patients evaluated had a molecularly identifiable disorder associated with vascular disease. The most common diagnosis was vascular Ehlers-Danlos syndrome. Patients with positive gene testing were significantly younger at the time of their first SCAD event. A low threshold for genetic testing should be considered in patients with SCAD."	"Continuous Exposure to Simulated Hypergravity-Induced Changes in Proliferation, Morphology, and Gene Expression of Human Tendon Cells. Gravity influences physical and biological processes, especially during development and homeostasis of several tissues in the human body. Studies under altered gravity have been receiving great attention toward a better understanding of microgravity-, hypogravity (&lt;1 g)-, or hypergravity (&gt;1 g)-induced alterations. In this work, the influence of simulated hypergravity over human tendon-derived cells (hTDCs) was studied at 5, 10, 15, and 20 g for 4 or 16 h, using a large diameter centrifuge. Main results showed that 16 h of simulated hypergravity limited cell proliferation. Cell area was higher in hTDCs cultured at 5, 10, and 15 g for 16 h, in comparison to 1 g control. Actin filaments were more pronounced in hTDCs cultured at 5 and 10 g for 16 h. Focal adhesion kinase (FAK) was mainly expressed in focal adhesion sites upon hypergravity stimulation, in comparison to perinuclear localization in control cells after 16 h; and FAK number/cell increased with increasing g-levels. A tendency toward an upregulation of tenogenic markers was observed; scleraxis (SCX), tenascin C (TNC), collagen type III (COL3A1), and decorin (DCN) were significantly upregulated in hTDCs cultured at 15 g and COL3A1 and DCN were significantly upregulated in hTDCs cultured at 20 g. Overall, simulated hypergravity affected the behavior of hTDCs, with more pronounced effects in the long-term period (16 h) of stimulation."	"Cell viability assessed in a reproducible model of human osteoblasts derived from human adipose-derived stem cells. Human adipose tissue-derived stem cells (hASCs) have been subjected to extensive investigation because of their self-renewal properties and potential to restore damaged tissues. In the literature, there are several protocols for differentiating hASCs into osteoblasts, but there is no report on the control of cell viability during this process. In this study, we used osteoblasts derived from hASCs of patients undergoing abdominoplasty. The cells were observed at the beginning and end of bone matrix formation, and the expression of proteins involved in this process, including alkaline phosphatase and osteocalcin, was assessed. RANKL, Osterix, Runx2, Collagen3A1, Osteopontin and BSP expression levels were analyzed using real-time PCR, in addition to a quantitative assessment of protein levels of the markers CD45, CD105, STRO-1, and Nanog, using immunofluorescence. Rhodamine (Rho123), cytochrome-c, caspase-3, P-27, cyclin D1, and autophagy cell markers were analyzed by flow cytometry to demonstrate potential cellular activity and the absence of apoptotic and tumor cell processes before and after cell differentiation. The formation of bone matrix, along with calcium nodules, was observed after 16 days of osteoinduction. The gene expression levels of RANKL, Osterix, Runx2, Collagen3A1, Osteopontin, BSP and alkaline phosphatase activity were also elevated after 16 days of osteoinduction, whereas the level of osteocalcin was higher after 21 days of osteoinduction. Our data also showed that the cells had a high mitochondrial membrane potential and a low expression of apoptotic and tumor markers, both before and after differentiation. Cells were viable after the different phases of differentiation. This proposed methodology, using markers to evaluate cell viability, is therefore successful in assessing different phases of stem cell isolation and differentiation."	"Changes in the expression of matrix extracellular genes and TGFB family members in rotator cuff tears. Lack of synthesis of extracellular matrix compounds may contribute to degeneration of the tendons. Thus, we aimed to evaluate the expression of extracellular matrix and TGFB family members in ruptured and non-ruptured tendons of the rotator cuff, as well as the effect of clinical factors on gene expression in tendon samples, and the relationship between histological findings and altered gene expression. Injured and non-injured supraspinatus tendon samples and subscapular non-injured tendon samples were collected from 38 patients with rotator cuff tears. Non-injured supraspinatus tendons were obtained from eight controls. Specimens were used for histological evaluation, quantification of collagen fibers, and mRNA and protein expression analyses. Increased COL1A1, COL1A2, COL3A1, COL5A1, FN1, TNC, and TGFBR1 mRNA expression was observed in the tear samples (p &lt; 0.05). Duration of symptoms was correlated with the levels of collagen type I/III fibers (p = 0.032; ρ = 0.0447) and FN1 immunostaining (p = 0.031; ρ = 0.417). Smoking was associated with increased frequency of microcysts, myxoid degeneration, and COL5A1, FN1, TNC, and TGFB1 mRNA expression (p &lt; 0.05). FN1 immunostaining was correlated with the number of years of smoking (p = 0.048; ρ = 0.384). Lower levels of collagen type I/III fibers were detected in samples with fissures (0 = 0.046). High frequency of microcysts was associated with increased COL5A1, FN1, and TNC expression (p &lt; 0.05, for all comparisons). Neovascularization was associated with reduced FN1 (p = 0.035) and TGFBR1 expression (p = 0.034). Our findings show differential expression of matrix extracellular genes and TGFB family members in the degeneration process involved in rotator cuff tears. These molecular alterations are influenced by clinical factors. © 2018 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:2542-2553, 2018."	"Effects of cell adhesion motif, fiber stiffness, and cyclic strain on tenocyte gene expression in a tendon mimetic fiber composite hydrogel. We recently developed a fiber composite consisting of tenocytes seeded onto discontinuous fibers embedded within a hydrogel, designed to mimic physiological tendon micromechanics of tension and shear. This study examined if cell adhesion peptide (DGEA or YRGDS), fiber modulus (50 or 1300 kPa) and/or cyclic strain (5% strain, 1 Hz) influenced bovine tenocyte gene expression. Ten genes were analyzed and none were sensitive to peptide or fiber modulus in the absence of cyclic tensile strain. Genes associated with tendon (SCX and TNMD), collagens (COL1A1, COL3A1, COL11A1), and matrix remodelling (MMP1, MMP2, and TIMP3) were insensitive to cyclic strain. Contrarily, cyclic strain up-regulated IL6 by 30-fold and MMP3 by 10-fold in soft YRGDS fibers. IL6 expression in soft YRGDS fibers was 5.7 and 3.3-fold greater than in soft DGEA fibers and stiff RGD fibers, respectively, under cyclic strain. Our findings suggest that changes in the surrounding matrix can influence catabolic genes in tenocytes when cultured in a complex strain environment mimicking that of tendon, while having minimal effects on tendon and homeostatic genes."	"Ectopic Telomerase Expression Fails to Maintain Chondrogenic Capacity in Three-Dimensional Cultures of Clinically Relevant Cell Types. The poor healing capacity of cartilage and lack of effective treatment for associated disease and trauma makes it a strong candidate for a regenerative medicine approach. Potential therapies tested to date, although effective, have met with a number of intrinsic difficulties possibly related to limited autologous chondrocyte cell yield and quality of cartilage produced. A potential mechanism to bypass limited cell yields and improve quality of differentiation is to immortalize relevant cell types through the ectopic expression of telomerase. Pellet cultures of human chondrocytes (OK3), bone marrow mesenchymal stem cells (BMA13), and embryonic stem cell (H1 line)-derived cells (1C6) and their human telomerase reverse transcriptase (hTERT) transduced counterparts were maintained for 20 days in standard maintenance medium (MM) or transforming growth factor-β3-supplemented prochondrogenic medium (PChM). Pellets were assessed for volume and density by microcomputed tomography. Quantitative gene expression (COL1A2, COL2A1, COL3A1, COL6A3, COL10A1, ACAN, COMP, SOX9); sulfated glycosaminoglycans (sGAGs), and DNA quantification were performed. Histology and immunohistochemistry were used to determine matrix constituent distribution. Pellet culture in PChM resulted in significantly larger pellets with an overall increased density when compared with MM culture. Gene expression analysis revealed similarities in expression patterns between telomerase-transduced and parental cells in both MM and PChM. Of the three parental cell types examined OK3 and BMA13 produced similar amounts of pellet-associated sGAG in PChM (4.62 ± 1.20 and 4.91 ± 1.37 μg, respectively) with lower amounts in 1C6 (2.89 ± 0.52 μg), corresponding to 3.1, 2.3, and 1.6-fold increases from day 0. In comparison, telomerase-transduced cells all had much lower sGAG with OK3H at 2.74 ± 0.11 μg, BMA13H 1.29 ± 0.34 μg, and 1C6H 0.52 ± 0.01 μg corresponding to 1.2, 0.87, and 0.34-fold changes compared with day 0. Histology of day 20 pellets displayed reduced staining overall for collagens and sGAG in telomerase-transduced cells, most notably with alterations in aggrecan and collagen VI; all cells stained positively for collagen II. We conclude that while telomerase transduction may be an effective technique to extend cellular proliferative capacity, it is not sufficient in isolation to sustain a naive chondrogenic phenotype across multiple cell types."	"hTERT peptide fragment GV1001 demonstrates radioprotective and antifibrotic effects through suppression of TGF‑β signaling. GV1001 is a 16‑amino acid peptide derived from the human telomerase reverse transcriptase (hTERT) protein (616‑626; EARPALLTSRLRFIPK), which lies within the reverse transcriptase domain. Originally developed as an anticancer vaccine, GV1001 demonstrates diverse cellular effects, including anti‑inflammatory, tumor suppressive and antiviral effects. In the present study, the radioprotective and antifibrotic effects of GV1001 were demonstrated through suppressing transforming growth factor‑β (TGF‑β) signaling. Proliferating human keratinocytes underwent premature senescence upon exposure to ionizing radiation (IR), however, treatment of cells with GV1001 allowed the cells to proliferate and showed a reduction in senescent phenotype. GV1001 treatment notably increased the levels of Grainyhead‑like 2 and phosphorylated (p‑)Akt (Ser473), and reduced the activation of p53 and the level of p21/WAF1 in irradiated keratinocytes. It also markedly suppressed the level of TGF‑β signaling molecules, including p‑small mothers against decapentaplegic (Smad)2/3 and Smad4, and TGF‑β target genes, including zinc finger E‑box binding homeobox 1, fibronectin, N‑cadharin and Snail, in irradiated keratinocytes. Furthermore, GV1001 suppressed TGF‑β signaling in primary human fibroblasts and inhibited myofibroblast differentiation. Chromatin immunoprecipitation revealed that GV1001 suppressed the binding of Smad2 on the promoter regions of collagen type III α1 chain (Col3a1) and Col1a1. In a dermal fibrosis model in vivo, GV1001 treatment notably reduced the thickness of fibrotic lesions and the synthesis of Col3a1. These data indicated that GV1001 ameliorated the IR‑induced senescence phenotype and tissue fibrosis by inhibiting TGF‑β signaling and may have therapeutic effects on radiation‑induced tissue damage."	"Hypoxia induces endothelial‑mesenchymal transition in pulmonary vascular remodeling. It is well established that hypoxia induces epithelial‑mesenchymal transition in vitro and in vivo. However, the role of hypoxia in endothelial‑mesenchymal transition (EndMT), an important process in the pathogenesis of pulmonary hypertension, is not well‑characterized. The present study demonstrated a significant downregulation of the endothelial marker CD31 and its co‑localization with a mesenchymal marker, α‑smooth muscle actin (α‑SMA), in the intimal layer of small pulmonary arteries of rats exposed to chronic hypoxia. These results suggest a possible role of hypoxia in inducing EndMT in vivo. Consistent with these observations, pulmonary microvascular endothelial cells (PMVECs) cultured under hypoxic conditions exhibited a significant decrease in CD31 expression, alongside a marked increase in the expression of α‑SMA and two other mesenchymal markers, collagen (Col) 1A1 and Col3A1. In addition, hypoxia promoted the proliferation and migration of α‑SMA‑expressing mesenchymal‑like cells, but not of PMVECs. Of note, knockdown of hypoxia‑inducible factor 1α (HIF‑1α) effectively inhibited hypoxic induction of α‑SMA, Col1A1 and the transcription factor Twist1, while rescuing hypoxic suppression of CD31; these results suggest that HIF‑1α is essential for hypoxia‑induced EndMT and that it serves as an upstream regulator of Twist1. Mechanistically, HIF‑1α was identified to bind to the promoter of the Twist1 gene, thus activating Twist1 transcription and regulating EndMT. Collectively, the present results indicate that the HIF‑1α/Twist1 pathway has a critical role in mediating the effect of hypoxia‑induced EndMT in pulmonary arterial remodeling."	"Higher Gene Expression of Healing Factors in Anterior Cruciate Ligament Remnant in Acute Anterior Cruciate Ligament Tear. Anterior cruciate ligament (ACL) reconstruction with remnant preservation has been described and related to potential advantages. Literature is lacking regarding gene expression of potential factors related to ligament healing in the ACL remnant and its relation to time from injury. The mRNA expression of ligament healing factors in the ACL remnant would be higher in acute tears (&lt;3 months from injury) than in intermediate (3-12 months) and chronic (&gt;12 months) injuries. Controlled laboratory study. Gene expression of 21 genes related to ligament healing factors was analyzed in 46 ACL remnants biopsied during surgical reconstruction with quantitative real-time polymerase chain reaction technique. Specimens were divided into 3 groups according to time from injury: acute (&lt;3 months from injury; n = 19), intermediate (3-12 months; n = 12), and chronic (&gt;12 months; n = 15). Histological and immunohistochemical evaluation was performed by analysis of hematoxylin and eosin, CD-34, and S-100 staining. Expression of COL1A1, COL1A2, COL3A1, COL5A1, COL5A2, COL12A1, LOX, PLOD1, and TNC genes in ACL remnant was greater in acute compared with chronic injuries. COL1A1, COL5A1, COL12A1, and TNC genes were also expressed more in the acute group compared with the intermediate group. Furthermore, expression of the genes COL1A1 and COL5A2 was significantly higher in female than in male patients. No difference in the number of blood vessels and mechanoreceptors among groups was observed in the microscopic evaluation. The present study demonstrates that expression of COL1A1, COL1A2, COL3A1, COL5A1, COL5A2, COL12A1, LOX, PLOD1, and TNC genes in ACL remnant is greater in acute (&lt;3 months from injury) compared with chronic (&gt;12 months) injuries. Furthermore, COL1A1, COL5A1, COL12A1, and TNC genes were expressed more in the acute group compared with the intermediate group (3-12 months from injury). ACL reconstructions with remnant preservation should be performed in patients with acute injuries, as in these cases the ACL remnant may present the greatest healing potential."	"Molecular and histomorphological evaluation of female rats' urethral tissues after an innovative trauma model of prolonged vaginal distention: immediate, short-term and long-term effects. An animal model of vaginal distention (VD) was developed to reproduce the acute urethral injury and deficiency underlying stress urinary incontinence (SUI). Data on the chronic effects of urethral trauma and the recovery process are still scarce. We investigated acute, short- and long-term histomorphological and molecular changes in the urethra of rats post 12-h intermittent VD. We evaluated the urethra of four groups of female rats (n = 72): control without trauma, 1 h, 7 days and 30 days post VD. We compared the gene and protein expression of the VEGF and NGF growth factors, collagens (COL1a1 and COL3a1), desmin, smooth muscle myosin (MYH11), skeletal muscle myosins (MYH1, MYH2 and MYH3) and cell proliferation marker MKi67. We used real-time RT-qPCR, and immunohistochemistry. Histology showed urethral damage after VD mainly involving the muscular layers. VEGF, NGF, desmin and MKi67 mRNA were significantly upregulated in the urethras of rats 1-h post VD compared with controls (P &lt; 0.05 for all). By 7 days post trauma, COL1a1, MYH11 and MYH3 genes were overexpressed compared with controls (p &lt; 0.05 for all). The COL3a1 protein level was increased by 2.6 times by day 7, while MYH2 protein was significantly decreased (around two times) from 7 to 30 days post VD compared with controls (p &lt; 0.05 for both). The 12-h intermittent VD causes chronic alterations in the urethra represented by increased COL3a1 and decreased MYH2 protein levels in the long term. The model can potentially be used to study the mechanisms of urethral injury and recovery as well as the physiopathology of SUI."	"Type III collagen affects dermal and vascular collagen fibrillogenesis and tissue integrity in a mutant Col3a1 transgenic mouse model. Type III collagen is a major fibrillar collagen consisting of three identical α1(III)-chains that is particularly present in tissues exhibiting elastic properties, such as the skin and the arterial wall. Heterozygous mutations in the COL3A1 gene result in vascular Ehlers-Danlos syndrome (vEDS), a severe, life-threatening disorder, characterized by thin, translucent skin and propensity to arterial, intestinal and uterine rupture. Most human vEDS cases result from a missense mutation substituting a crucial glycine residue in the triple helical domain of the α1(III)-chains. The mechanisms by which these mutant type III collagen molecules cause dermal and vascular fragility are not well understood. We generated a transgenic mouse line expressing mutant type III collagen, containing a typical helical glycine substitution (p.(Gly182Ser)). This Col3a1<sup>Tg-G182S</sup> mouse line displays a phenotype recapitulating characteristics of human vEDS patients with signs of dermal and vascular fragility. The Col3a1<sup>Tg-G182S</sup> mice develop severe transdermal skin wounds, resulting in early demise at 13-14weeks of age. We found that this phenotype was associated with a reduced total collagen content and an abnormal collagen III:I ratio, leading to the production of severely malformed collagen fibrils in the extracellular matrix of dermal and arterial tissues. These results indicate that expression of the glycine substitution in the α1(III)-chain disturbs formation of heterotypic type III:I collagen fibrils, and thereby demonstrate a key role for type III collagen in collagen fibrillogenesis in dermal and arterial tissues."	"Overexpression of collagen type III in injured myocardium prevents cardiac systolic dysfunction by changing the balance of collagen distribution. Left ventricular (LV) remodeling alters the contractile and relaxation properties and induces myocardial stiffness. As LV remodeling progresses, the amount of collagen type III (Col3) is gradually decreased, being replaced by collagen type I (Col1). We evaluated whether Col3 overexpression improved cardiac function and remodeling in a rat with ischemic cardiomyopathy (ICM). We also investigated the functional motif and mechanism of thrombin-cleaved N-terminal osteopontin (N-OPN) on cardiac remodeling. The rats with ICM were divided into 3 groups: ligation only (Control) group and groups transplanted with nontransfected fibroblast sheets (normal Fb group) or with Col3-secretory fibroblast sheets (Col3 Fb group). A gelatin hydrogel containing the N-terminal fragment (N-OPN), N-OPN lacking the SVVYGLR sequence (⊿SV), the Arg-Gly-Asp (RGD) sequence (⊿RGD), RGD and SVVYGLR sequences (⊿RGD-SV), SVVYGLR alone (SV), or a random SV peptide was implanted into an ICM model rat. The Col3 Fb group exhibited significantly attenuated LV systolic dysfunction. LV dilatation, myocyte hypertrophy, and LV fibrosis at the infarcted area were also attenuated by Col3 Fb implantation. Furthermore, N-OPN, ⊿RGD, and SV peptide suppressed the depression of cardiac function, LV dilatation, and myocyte hypertrophy, and also induced increased Col3 expression and reduction in the ratio of Col1 to Col3 in the infarcted and border areas. Overexpression of Col3 improved cardiac function by changing the balance of collagen distribution in LV remodeling. The SVVYGLR motif of the thrombin-cleaved N-OPN and SV peptide attenuated cardiac dysfunction by increasing Col3 and changing the pattern of collagen balance in the impaired area."	"circHECTD1 promotes the silica-induced pulmonary endothelial-mesenchymal transition via HECTD1. Excessive proliferation and migration of fibroblasts contribute to pulmonary fibrosis in silicosis, and both epithelial cells and endothelial cells participate in the accumulation of fibroblasts via the epithelial-mesenchymal transition (EMT) and the endothelial-mesenchymal transition (EndMT), respectively. A mouse endothelial cell line (MML1) was exposed to silicon dioxide (SiO2, 50 μg/cm<sup>2</sup>), and immunofluorescence and western blot analyses were performed to evaluate levels of specific endothelial and mesenchymal markers and to elucidate the mechanisms by which SiO2 induces the EndMT. Functional changes were evaluated by analyzing cell migration and proliferation. The mRNA and circular RNA (circRNA) levels were measured using qPCR and fluorescent in situ hybridization (FISH). Lung tissue samples from both Tie2-GFP mice exposed to SiO2 and silicosis patients were applied to confirm the observations from in vitro experiments. Based on the results from the current study, SiO2 increased the expression of mesenchymal markers (type I collagen (COL1A1), type III collagen (COL3A1) and alpha smooth muscle actin (α-SMA/Acta2)) and decreased the expression of endothelial markers (vascular endothelial cadherin (VE-Cad/Cdh 5) and platelet endothelial cell adhesion molecule-1 (PECAM1)), indicating the occurrence of the EndMT in response to SiO2 exposure both in vivo and in vitro. SiO2 concomitantly increased circHECTD1 expression, which, in turn, inhibited HECTD1 protein expression. SiO2-induced increases in cell proliferation, migration, and changes in marker levels were restored by either a small interfering RNA (siRNA) targeting circHECTD1 or overexpression of HECTD1 via the CRISPR/Cas9 system, confirming the involvement of the circHECTD1/HECTD1 pathway in the EndMT. Moreover, tissue samples from SiO2-exposed mice and silicosis patients confirmed the EndMT and change in HECTD1 expression. Our findings reveal a potentially new function for the circHECTD1/HECTD1 pathway and suggest a possible mechanism of fibrosis in patients with pulmonary silicosis."	"Abnormal extracellular matrix remodelling in the cervix of pregnant relaxin-deficient mice is not associated with reduced matrix metalloproteinase expression or activity. Relaxin regulates cervical extracellular matrix (ECM) remodelling during pregnancy by modifying collagen and other ECM molecules by unknown mechanisms. We hypothesised that abnormal collagen remodelling in the cervix of pregnant relaxin-deficient (Rln1-/-) mice is due to excessive collagen (Col1a1 and Col3a1) and decreased matrix metalloproteinases (Mmp2, Mmp9, Mmp13 and Mmp7) and oestrogen receptors (Esr1 and Esr2). Quantitative polymerase chain reaction, gelatinase zymography, MMP activity assays and histological staining evaluated changes in ECM in pregnant wildtype (Rln1+/+) and Rln1-/- mice. Cervical Col1a1, Col3a1 and total collagen increased in Rln1-/- mice and were higher at term compared with Rln1+/+ mice. This was not correlated with a decrease in gelatinase (Mmp2, Mmp9) expression or activity, Mmp7 or Mmp13 expression, which were all significantly higher in Rln1-/- mice. In late pregnancy, circulating MMP2 and MMP9 were unchanged. Esr1 expression was highest in Rln1+/+ and Rln1-/- mice in late pregnancy, coinciding with a decrease in Esr2 in Rln1+/+ but not Rln1-/- mice. The relaxin receptor (Rxfp1) decreased slightly in late-pregnant Rln1+/+ mice, but was significantly higher in Rln1-/- mice. In summary, relaxin deficiency results in increased cervical collagen in late pregnancy, which is not explained by a reduction in Mmp expression or activity or decreased Rxfp1. However, an imbalance between Esr1 and Esr2 may be involved."	"A Variant of COL3A1 (rs3134646) Is Associated With Risk of Developing Diverticulosis in White Men. Colonic diverticulosis is one of the most common gastroenterological disorders. Although diverticulosis is typically benign, many individuals develop diverticulitis or other aspects of diverticular disease. Diverticulosis is thought to stem from a complex interaction of environmental, dietary, and genetic factors; however, the contributing genetic factors remain unknown. The aim of our present study was to determine the role of genetic variants within genes encoding for collagens of the connective tissue in diverticulosis. This was a transsectional genetic association study. This study was conducted at three tertiary referral centers in Germany and Lithuania. Single-nucleotide polymorphisms in COL3A1 (rs3134646, rs1800255) and COL1A1 (rs1800012) were genotyped in 422 patients with diverticulosis and 285 controls of white descent by using TaqMan assays. The association of colonoscopy-proven diverticulosis with genetic polymorphisms with herniations was assessed in multivariate models. The rs3134646, rs1800255, and rs1800012 variants were significantly associated with the risk of developing diverticulosis in the univariate model; however, these associations were not significant in the multivariate logistic regression analysis including additional nongenetic variables. When selectively analyzing sexes, the genotype AA (AA) in rs3134646 remained significantly associated with diverticulosis in men (OR, 1.82; 95% CI, 1.04-3.20; p = 0.04). Because a candidate approach was used, additional relevant variants could be missed. Within our cohort of patients with diverticulosis, only a small proportion had diverticular disease and thus, we could not examine the variants in these subgroups. Functional studies, including the analysis of the involved collagens, are also warranted. Our study shows that a variant of COL3A1 (rs3134646) is associated with the risk of developing colonic diverticulosis in white men, whereas rs1800255 (COL3A1) and rs1800012 (COL1A1) were not associated with this condition after adjusting for confounding factors. Our data provide novel valuable insights in the genetic susceptibility to diverticulosis. See Video Abstract at http://links.lww.com/DCR/A504."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"Collagen type III and elastin genes polymorphism and the risk of nonsyndromic striae. Striae have been reported to be one of the most common skin lesions and a commonly encountered esthetic problem. The aim of this research was to examine elastin gene polymorphism (rs7787362, ELN) and collagen type III alpha 1 polymorphism (rs1800255, COL3A1) among polish woman population with SD in comparison with women without the lesions and to verify these polymorphisms as risk factors for SD. Seventy female students (35 with striae (the mean age 23.9 years, SD 1.2 years) and 35 without these lesions (22.9 years, SD 1.7 years)) were included in the study. The subjects were asked to fill out a questionnaire including questions concerning risk factors for SD and had a cheek swabbed for cells for DNA isolation. Analysis of polymorphisms of elastin gene (rs7787362) and COL3A1 gene (rs1800255) showed that women with SD and without these lesions did not differ in these aspects. Polymorphism rs7787362 was also analyzed in relation to SD in different locations, and showed no differences. In conclusion, we found that there are some clinical factors that reduced the risk of SD: history of intended weight loss, negative family history of SD, and lower BMI. Gene polymorphisms analysis in patients with SD may help to establish the etiology of these lesions and to target the therapy. Analysis of polymorphisms of elastin gene (rs7787362) did not show differences in allele distribution between women with and without SD. Polymorphisms of COL3A1 gene (rs1800255) also did not differ between the examined groups."	"Histopathological Correlations between Mediastinal Fat-Associated Lymphoid Clusters and the Development of Lung Inflammation and Fibrosis following Bleomycin Administration in Mice. Bleomycin (BLM) has been reported to induce lung inflammation and fibrosis in human and mice and showed genetic susceptibility. Interestingly, the C57BL/6 (B6) mice had prominent mediastinal fat-associated lymphoid cluster (MFALCs) under healthy condition, and showed susceptibility to development of lung fibrosis following BLM administration. However, the pathogenesis of lung lesion progression, and their correlation with MFALC morphologies, remain to be clarified. To investigate the correlations between MFALC structures and lung injuries in B6 mice, histopathological examination of mediastinal fat tissues and lungs was examined at 7 and 21 days (d) following a single 50 μL intranasal (i.n.) instillation of either BLM sulfate (5 mg/kg) (BLM group) or phosphate-buffered saline (control group). The lung fibrosis was examined by Masson's trichrome (MT) stain of paraffin sections and mRNA expression levels of Col1a1, Col3a1, and Acta2 in different frozen lung samples. Furthermore, immunohistochemistry for CD3, B220, Iba1, Gr1, BrdU, LYVE-1, and peripheral node addressin (PNAd) was performed to detect T- and B-cells, macrophages, granulocytes, proliferating cells, lymph vessels (LVs), and high endothelial venules (HEVs). We found that MFALCs were more abundant in the BLM group as compared to the control group. The lung of BLM group developed pneumonitis with severe cellular infiltrations at 7 days and significant collagen deposition (MT) and higher expression of Col1a1, and Col3a1 at 21 days post-administration. Numerous immune cells, proliferating cells, HEVs, and LVs were observed in both MFALCs and lungs of the BLM group. Interestingly, PNAd + HEVs were observed in the lungs of the BLM group, but not the control group. Moreover, numerous Gr1 + polymorphonuclear and mononuclear-like ring cells were found in the MFALCs and lungs of the BLM group. Interestingly, flow cytometric analysis revealed a significant increase of B-cell populations within the MFALCs of BLM group suggesting a potential proliferative induction of B-cells following inflammation. Furthermore, significant positive correlations were observed between quantitative parameters of these immune cells in both the lungs and MFALCs. Thus, we suggest a potentially important role for MFALCs and HEVs in the progression of lung disease, especially in inflammatory lung disease."	"Genome-wide analysis revealed that DZNep reduces tubulointerstitial fibrosis via down-regulation of pro-fibrotic genes. Tubulointerstitial fibrosis has been recently reported to be caused by the collapse of the epigenetic regulation of kidney diseases. We examined whether pharmacological inhibition of histone modification is effective against renal fibrosis. DZNep (3-deazaneplanocin A) was originally developed as an anti-cancer drug to inhibit the repressive histone mark, H3K27me3. We used a model of chronic tubulointerstitial fibrosis induced by unilateral ischaemia/reperfusion and administered DZNep intravenously to the mice for 8 weeks. We found DZNep contributes to the reduction of tubulointerstitial fibrosis. We selected only tubular cells from in vivo samples using laser-capture microdissection because epigenetic regulation is specific to the cell types, and we focused on the changes in the tubular cells. We performed a genome-wide analysis of tubular cells using high-throughput sequencing (RNA-seq) to identify novel epigenetic factors associated with renal fibrosis. We found that pro-fibrotic genes such as COL3A1 (collagen type 3a1) and TIMP2 (tissue inhibitor of metalloproteinase 2) were suppressed by DZNep in vivo. In addition, pro-fibrotic genes such as COL4A1 (collagen type 4a1), TIMP2 and MMP14 were down-regulated by DZNep in vitro. In conclusion, we found that pharmacological epigenetic modification by DZNep decreased the expression levels of fibrogenic genes in tubular cells and inhibited tubulointerstitial fibrosis."	"Abnormal Downregulation of Caveolin-3 Mediates the Pro-Fibrotic Action of MicroRNA-22 in a Model of Myocardial Infarction. Cardiac fibrosis is an important cardiac remodeling event that can ultimately lead to the development of severe arrhythmia and heart failure. MicroRNAs (miRNAs) are involved in the pathogenesis of many cardiovascular diseases. Here, we aimed to investigate the effects of caveolin-3 (Cav3) on the pathogenesis of cardiac fibrosis and the underlying molecular mechanisms. Cav3 expression was decreased in cardiac fibrosis in vivo and in vitro model. To investigate the role of Cav3 in cardiac fibrosis, we transfected cardiac fibroblasts (CFs) with the siRNA of Cav3 and Cav3-overexpressing plasmid. The collagen content and proliferation of CFs were detected by qRT-PCR, western blot, MTT, and immunofluorescence. A luciferase reporter gene assay and gain/loss of function were used to detect the relationship between miR-22 and Cav3. Cav3 depletion in CFs induced an increase in collagen content, cell proliferation, and phenotypic conversion of fibroblasts to myofibroblasts. Conversely, Cav3 overexpression in CFs was shown to inhibit angiotensin II-mediated excessive collagen deposition through protein kinase C (PKC)ε inactivation. Cav3 was experimentally confirmed as a direct target of miR-22, containing two seed binding sites in its 3'-untranslated region, and miR-22 was demonstrated to be significantly upregulated in the ischemic border zone in mice after myocardial infarction and in neonatal rat CFs pretreated with angiotensin II. miR-22 overexpression increased CFs proliferation, and collagen and α-smooth muscle actin levels in CFs, while the knockdown of endogenous miR-22 decreased CFs numbers. Our findings demonstrate that miR-22 accelerates cardiac fibrosis through the miR-22-Cav3-PKCε pathway, which, therefore, may represent a new therapeutic target for treatment of excessive fibrosis-associated cardiac diseases."	"miR-29b enhances prostate cancer cell invasion independently of MMP-2 expression. The ability to metastasize is one of the most important characteristics of neoplastic cells. An imbalance between the action of some matrix metalloproteinases (MMPs) and tissue inhibitors of MMPs drives the invasion process. Some studies have suggested that MMP-2 is involved in metastasis, while other studies have reported that collagen production by cancer cells might also contribute to motility. However, decreased expression of microRNA-29b (miR-29b), which may control MMP-2 and collagen gene expression, has been shown in prostate cancer (PCa). The objectives of the present study were to clarify whether MMP-2 as well as collagens I and III (encoded by COL1A1 and COL3A1, respectively) are controlled by miR-29b and to determine whether metastasis is altered by this relationship. PCa DU145 and PC-3 cells were transfected with 100 μL of OPTI-MEM I containing 100 nmol of miR-29b (or its inhibitor) along with 1.5 μL of lipofectamine. Positive and negative controls were prepared using the same protocol. MMP-2, COL1A1 and COL3A1 messenger RNA (mRNA) levels were evaluated via real-time polymerase chain reaction (qRT-PCR). For qRT-PCR, 6 × 10<sup>4</sup> cells were used. Invasion studies were conducted with Matrigel assays, which simulate invasion of the extracellular matrix by neoplastic cells. After transfection of 3 × 10<sup>4</sup> cells, invasion was allowed to proceed for 48 h. Invasive cells were counted under an optical microscope. Each experiment was performed in triplicate. MMP-2 mRNA was not expressed in DU145 cells after transfection with miR-29b. After transfection of cells with the miR-29b inhibitor, COL1A1 (p = 0.02) and COL3A1 (p = 0.06) mRNA expression was increased in DU145 cells, and a large number of transfected DU145 and PC3 cells invaded the Matrigel membrane. In vitro studies showed that reducing the amount of miR-29b may lead to higher PCa cell invasion via a process that is independent of MMP-2. Collagen expression, controlled by miR-29b, may facilitate this motility process. Thus, the present study suggests that collagen production plays an active role in metastasis control and restoration of miR-29b levels may decrease metastasis. Altogether, these findings support further exploration of drug therapy targeting this aspect of the metastasis circuit."	"Overexpression of LncRNA AC067945.2 Down-Regulates Collagen Expression in Skin Fibroblasts and Possibly Correlates with the VEGF and Wnt Signalling Pathways. Long non-coding RNAs (lncRNAs) are thought to play crucial roles in human diseases. However, the function of lncRNAs in hypertrophic scar formation remains poorly understood. Utilizing qRT-PCR, we explored the expression changes of AC067945.2. Overexpression of AC067945.2 in normal skin fibroblasts was performed by transient plasmid transfection. Western blot was used to check the proteins' expression changes. Cell Counting Kit-8 (CCK-8) assay and Annexin V/7-AAD staining were used to examine cell proliferation and apoptosis, respectively. mRNA-seq was applied to dissect the differentially expressed mRNAs in AC067945.2 overexpressed cells. We also performed ELISA to detect the VEGF secretion. AC067945.2 was down-regulated in hypertrophic scar tissues. Overexpression of AC067945.2 did not affect cell proliferation, but it mildly promoted early apoptosis in normal skin fibroblasts. Furthermore, AC067945.2 overexpression inhibited the expression of COL1A1, COL1A2, COL3A1 and α-SMA proteins. Transforming growth factor-β1 (TGF-β1) could inhibit the expression of AC067945.2. Based on mRNA-seq data, compared with mRNAs in the control group, 138 mRNAs were differentially expressed, including 14 up-regulated and 124 down-regulated transcripts, in the AC067945.2 overexpression group. Gene ontology and pathway analyses revealed that AC067945.2 overexpression was correlated with developmental processes, binding, extracellular region, and the vascular endothelial cell growth factor (VEGF) and Wnt signalling pathways. ELISA confirmed that AC067945.2 overexpression could repress VEGF secretion. Taken together, our data uncovered the functions of a novel lncRNA AC067945.2, which might help us understand the mechanisms regulated by AC067945.2 in the pathogenesis of hypertrophic scar formation."	"Spheroid formation and modulation of tenocyte-specific gene expression under simulated microgravity. For tendon tissue engineering, tenocyte-seeded scaffolds are a promising approach. Under conventional 2D culture however, tenocytes show rapid senescene and phenotype loss. We hypothesized that phenotype loss could be counteracted by simulated microgravity conditions. Human tenocytes were exposed to microgravity for 9 days on a Random Positioning Machine (RPM). Formation of 3D-structures (spheroids) was observed under light microscopy, gene expression was measured by real-time PCR. Cells under conventional 2D-culture served as control group. Simulated microgravity reached a value of as low as 0.003g. Spheroid formation was observed after 4 days, and spheroids showed stable existance to the end of the observation period. After 9 days, spheroids showed a significantly higher gene expression of collagen 1 (Col1A1) compared to adherent cells under microgravity (4.4x, p=0.04) and compared to the control group (5.6x, p=0.02). Gene expression of collagen 3 (COL3A1) was significantly increased in spheroids compared to the control group (2.3x, p=0.03). Gene expressions of the extracellular matrix genes Tenascin C und Fibronectin (TNC and FN) were increased in adherent cells under microgravity compared to the 1g-control group, not reaching statistical significance (p=0.1 and p=0.3). For the gene expression of vimentin, no significant alteration was observed both in the adherent cells and in the spheroids compared to the 1g control group. Gene expression of the tenocyte-specific transcription factor scleraxis (SCX) was significantly increased in spheroids compared to the control group (3.7x, p=0.03). Simulated microgravity could counteract tenocyte senescence in vitro and serve as a promising model for scaffold-free 3D cell culturing and tissue engineering. V (laboratory study)."	"Vascular Ehlers-Danlos syndrome with cryptorchidism, recurrent pneumothorax, and pulmonary capillary hemangiomatosis-like foci: A case report. Vascular Ehlers-Danlos syndrome (vEDS) is a rare autosomal dominant inherited collagen disorder caused by defects or deficiency of pro-alpha 1 chain of type III procollagen encoded by COL3A1. vEDS is characterized not only by soft tissue manifestations including hyperextensibility of skin and joint hypermobility but also by early mortality due to rupture of arteries or vital organs. Although pulmonary complications are not common, vEDS cases complicated by pneumothorax, hemothorax, or intrapulmonary hematoma have been reported. When a patient initially presents only with pulmonary complications, it is not easy for clinicians to suspect vEDS. We report a case of an 18-year-old high school student, with a past history of cryptorchidism, presenting with recurrent pneumothorax. Routine laboratory findings were unremarkable. Chest high resolution computed tomographic scan showed age-unmatched hyperinflation of both lungs, atypical cystic changes and multifocal ground glass opacities scattered in both lower lobes. His slender body shape, hyperflexible joints, and hyperextensible skin provided clue to suspicion of a possible connective tissue disorder. The histological examination of the lung lesions showed excessive capillary proliferation in the pulmonary interstitium and pleura allowing the diagnosis of pulmonary capillary hemangiomatosis (PCH)-like foci. Genetic study revealed COL3A1 gene splicing site mutation confirming his diagnosis as vEDS. Although his diagnosis vEDS is notorious for fatal vascular complication, there was no evidence of such complication at presentation. Fortunately, he has been followed up for 10 months without pulmonary or vascular complications. To the best of our knowledge, both cryptorchidism and PCH-like foci have never been reported yet as complications of vEDS, suggesting our case might be a new variant of this condition. This case emphasizes the importance of comprehensive physical examination and history-taking, and the clinical suspicion of a possible connective tissue disorder when we encounter cases with atypical presentation and/or unique chest radiologic findings especially in young patients."	"microRNA-129-5p involved in the neuroprotective effect of dexmedetomidine on hypoxic-ischemic brain injury by targeting COL3A1 through the Wnt/β-catenin signaling pathway in neonatal rats. Our study aims to elucidate the mechanisms how microRNA-129-5p (miR-129-5p) involved in the neuroprotective effect of dexmedetomidine (DEX) on hypoxic-ischemic brain injury (HIBI) by targeting the type III procollagen gene (COL3A1) through the Wnt/β-catenin signaling pathway in neonatal rats. A total of 120 rats were obtained, among which 15 rats were selected as sham group and rest rats as model, DEX, DEX + negative control (DEX + NC), DEX + miR-129-5p mimics, DEX + miR-129-5p inhibitors, DEX + XAV-939, and DEX + miR-129-5p inhibitors + XAV-939 groups. A dual-luciferase reporter assay was performed for the target relationship between miR-129-5p and COL3A1. Weight rate and water content of cerebral hemisphere were detected. Quantitative real-time polymerase chain reaction and Western blot analysis were conducted to detect miR-129-5p expression and expressions of COL3A1, E-cadherin, T-cell factor (TCF)- 4, and β-catenin. The DEX, DEX + miR-129-5p mimics, DEX + XAV-939 groups had increased weight rate of the cerebral hemisphere, but decreased water content of left cerebral hemisphere, levels of COL3A1, β-catenin, TCF-4, and E-cadherin in the hippocampus compared with the model and DEX + miR-129-5p inhibitors groups. COL3A1 was verified as the target gene of the miR-129-5p. Compared with the DEX + NC and DEX + miR-129-5p inhibitors + XAV-939 groups, the DEX + XAV-939 and DEX + miR-129-5p mimics groups had elevated weight rate of the cerebral hemisphere, but reduced water content of left cerebral hemisphere, levels of COL3A1, β-catenin, TCF-4, and E-cadherin in the hippocampus. Our findings demonstrate that miR-129-5p improves the neuroprotective role of DEX in HIBI by targeting COL3A1 through the Wnt/β-catenin signaling pathway in neonatal rats."	"[Association of polymorphism of 1800255 COL3A1 gene with pelvic organ prolapse and urinary incontinence in women: preliminary data]. Collagen type I and III have a significant role in the development of pelvic organ prolapse (POP) and urinary incontinence in women. The role of the COL3A1 gene polymorphism remains debatable. Some studies and meta-analyzes have found a direct correlation between genetic defects and POP, while other researchers have not confirmed this association. This study aimed to investigate the association of the 1800255 COL3A1 gene polymorphism with the development of POP and urinary incontinence in women. The study group comprised 52 patients (mean age 64.4 years) with verified POP and stress urinary incontinence. The control group included 21 patients without pelvic floor dysfunction. Patients were comparable in age and had at least one or more risk factors for developing pelvic floor dysfunction. Exclusion criteria for both groups were Marfan and Ehlers-Danlos syndromes and a history of surgery for POP or incontinence (for the control group). In all women, saliva samples were collected to detect polymorphism at the rs1800255 locus of the COL3A1 gene. Genotyping was conducted by Sanger sequencing. In patients with isolated genital prolapse, homozygous polymorphism (AA) had a low sensitivity (0.06) but an extremely high specificity (0.95). Heterozygote (GA) had the sensitivity of 0.35, the specificity of 0.53, and the AUC of 0.44. For urinary incontinence by homozygote (AA), sensitivity was 0.08, specificity 0.96, and by heterozygote (GA) 0.45 and 0.63, respectively. For the combination of pelvic prolapse and urinary incontinence by homozygote (AA), sensitivity was 0.07, specificity 1.0, and heterozygote (GA) 0.41 and 0.62, respectively. Given the high specificity of the polymorphism at the rs1800255 locus of the COL3A1 gene, determined by the Sanger sequencing, it can be concluded that there is an association between this polymorphism and urinary incontinence and POP in women."	"Transcriptome analysis of skin fibroblasts with dominant negative COL3A1 mutations provides molecular insights into the etiopathology of vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (vEDS) is a dominantly inherited connective tissue disorder caused by mutations in the COL3A1 gene that encodes type III collagen (COLLIII), which is the major expressed collagen in blood vessels and hollow organs. The majority of disease-causing variants in COL3A1 are glycine substitutions and in-frame splice mutations in the triple helix domain that through a dominant negative effect are associated with the severe clinical spectrum potentially lethal of vEDS, characterized by fragility of soft connective tissues with arterial and organ ruptures. To shed lights into molecular mechanisms underlying vEDS, we performed gene expression profiling in cultured skin fibroblasts from three patients with different structural COL3A1 mutations. Transcriptome analysis revealed significant changes in the expression levels of several genes involved in maintenance of cell redox and endoplasmic reticulum (ER) homeostasis, COLLs folding and extracellular matrix (ECM) organization, formation of the proteasome complex, and cell cycle regulation. Protein analyses showed that aberrant COLLIII expression is associated with the disassembly of many structural ECM constituents, such as fibrillins, EMILINs, and elastin, as well as with the reduction of the proteoglycans perlecan, decorin, and versican, all playing an important role in the vascular system. Furthermore, the altered distribution of the ER marker protein disulfide isomerase PDI and the strong reduction of the COLLs-modifying enzyme FKBP22 are consistent with the disturbance of ER-related homeostasis and COLLs biosynthesis and post-translational modifications, indicated by microarray analysis. Our findings add new insights into the pathophysiology of this severe vascular disorder, since they provide a picture of the gene expression changes in vEDS skin fibroblasts and highlight that dominant negative mutations in COL3A1 also affect post-translational modifications and deposition into the ECM of several structural proteins crucial to the integrity of soft connective tissues."	"Pulmonary Fibrous Nodule with Ossifications May Indicate Vascular Ehlers-Danlos Syndrome with Missense Mutation in COL3A1. NA"	"Fibroblast and keratinocyte gene expression following exposure to extracts of neem plant (Azadirachta indica). This data article provides gene expression profiles, determined by using real-time PCR, of fibroblasts and keratinocytes treated with 0.01% and 0.001% extracts of neem plant (Azadirachta indica), local name &quot;Kohomba&quot; in Sri Lanka, harvested in Sri Lanka. For fibroblasts, the dataset includes expression profiles for genes encoding hyaluronan synthase 1 (HAS1), hyaluronan synthase 2 (HAS2), hyaluronidase-1 (HYAL1), hyaluronidase-2 (HYAL2), versican, aggrecan, CD44, collagen, type I, alpha 1 (COL1A1), collagen, type III, alpha 1 (COL3A1), collagen, type VII, alpha 1 (COL7A1), matrix metalloproteinase 1 (MMP1), acid ceramidase, basic fibroblast growth factor (bFGF), fibroblast growth factor-7 (FGF7), vascular endothelial growth factor (VEGF), interleukin-1 alpha (IL-1α), cyclooxygenase-2 (cox2), transforming growth factor beta (TGF-β), and aquaporin 3 (AQP3). For keratinocytes, the expression profiles are for genes encoding HAS1, HAS2, HYAL1, HYAL2, versican, CD44, IL-1α, cox2, TGF-β, AQP3, Laminin5, collagen, type XVII, alpha 1 (COL17A1), integrin alpha-6 (ITGA6), ceramide synthase 3 (CERS3), elongation of very long chain fatty acids protein 1 (ELOVL1), elongation of very long chain fatty acids protein 4 (ELOVL4), filaggrin (FLG), transglutaminase 1 (TGM1), and keratin 1 (KRT1). The expression profiles are provided as bar graphs."	"Comparative Analysis of Different Platelet Lysates and Platelet Rich Preparations to Stimulate Tendon Cell Biology: An In Vitro Study. The poor healing potential of tendons is still a clinical problem, and the use of Platelet Rich Plasma (PRP) was hypothesized to stimulate healing. As the efficacy of PRPs remains unproven, platelet lysate (PL) could be an alternative with its main advantages of storage and characterization before use. Five different blood products were prepared from 16 male donors: human serum, two PRPs (Arthrex, (PRP-ACP); RegenLab (PRP-BCT)), platelet concentrate (apheresis, PC), and PL (freezing-thawing destruction of PC). Additionally, ten commercial allogenic PLs (AlloPL) from pooled donors were tested. The highest concentration of most growth factors was found in AlloPL, whereas the release of growth factors lasted longer in the other products. PRP-ACP, PRP-BCT, and PC significantly increased cell viability of human tenocyte-like cells, whereas PC and AlloPL increased Col1A1 expression and PRP-BCT increased Col3A1 expression. MMP-1, IL-1β, and HGF expression was significantly increased and Scleraxis expression decreased by most blood products. COX1 expression significantly decreased by PC and AlloPL. No clear positive effects on tendon cell biology could be shown, which might partially explain the weak outcome results in clinical practice. Pooled PL seemed to have the most beneficial effects and might be the future in using blood products for tendon tissue regeneration."	"Generation of Induced Pluripotent Stem Cells from Patients with COL3A1 Mutations and Differentiation to Smooth Muscle Cells for ECM-Surfaceome Analyses. Use of experimentally derived induced pluripotent stem cells (iPSCs) has led to the development of cell models for differentiation, drug testing and understanding disease pathogenesis. For these models to be informative, reprogrammed cell lines need to be adequately characterized and shown to preserve all of the critical characteristics of pluripotency and differentiation. Here, we report a detailed protocol for the generation of iPSCs from human fibroblasts containing mutations in COL3A1 using a Sendai virus mediated integration-free reprogramming approach. We describe how to characterize the putative iPSCs in vivo and in vitro to ensure potency and differentiation potential. As an example of how these mutations may affect cell surface and extracellular matrix (ECM) interactions, we provide protocols for the differentiation of these cells into smooth muscle cells to illustrate how different cell types may display cell autonomous differences in collagen receptors that may affect their phenotype. These cells, when applied to mechanical model systems (see Chapter 18 by Bose et al.) facilitate an assessment of stiffness and stress-strain relationships useful for understanding how extracellular matrix dysfunction and its interactions with surface proteins contribute to disease processes."	"Macrophage migration inhibitory factor promotes cardiac fibroblast proliferation through the Src kinase signaling pathway. Atrial fibrosis is the fundamental characteristic of the structural pathology associated with atrial fibrillation (AF). Inflammation can contribute to atrial fibrosis, engendering AF. The present study aimed to investigate the role of macrophage migration inhibitory factor (MIF), a pleiotropic cytokine, in the regulation of proliferation and function of cardiac fibroblasts (CFs). Biochemical assays were performed to examine the expression of extracellular matrix (ECM) in human atrial tissues, and the proliferation and regulation of ECM induced by MIF in CFs. The expression of ECM, including collage type 3, α1 (Col‑3A1), matrix metalloproteinase (MMP)‑2/-9 and transforming growth factor (TGF)‑β was higher in patients with permanent AF, compared with patients in sinus rhythm (SR), and the expression levels of MIF were also increased in AF. Treatment of CFs with mouse recombinant MIF (rMIF; 40 nM) for 48 h was found to promote the proliferation of CFs. The MIF‑induced CF proliferation was completely inhibited by tyrosine kinase inhibitor‑PP1. rMIF treatment also stimulated the activation of Src kinase in CFs. In addition, MIF treatment upregulated the expression levels of fibrosis‑related proteins, Col‑1, Col‑3, MMP‑2/-9 and TGF‑β, in the CFs. These results suggested that MIF was involved in the structural remodeling that accompanies AF, possibly by promoting the proliferation of CFs and increasing the expression of ECM. These data implicate inflammation as a potential driver of CF."	"Metformin prevents peritendinous fibrosis by inhibiting transforming growth factor-β signaling. Injury-induced peritendinous adhesion is a critical clinical problem that leads to tendon function impairment. Therefore, it is very urgent to explore potential approaches to attenuate peritendinous adhesion formation. Recently, several studies have demonstrated the biological effect of metformin in inhibiting multiple tissue fibrosis. In this study, we performed in vitro and in vivo experiments to examine whether metformin prevents injury-induced peritendinous fibrosis. We found that tendon injury induced severe fibrosis formation in rats. However, orally administered metformin significantly alleviated the fibrosis based on macroscopic and histological evaluation. Peritendinous tissue from metformin-treated rats also showed decreased expression of fibrotic genes including col1a1, col3a1, and α-smooth muscle actin (α-SMA), and inhibition of transforming growth factor (TGF)-β1 signaling. The cell counting kit (CCK)-8, flow cytometry, and 5-ethynyl-2'-deoxyuridine (EdU) staining analyses showed that treatment of NIH/3T3 fibroblasts with metformin significantly inhibited excessive cell proliferation and promoted cell apoptosis. Metformin treatment also inhibited the expression of fibrotic genes and decreased the phosphorylation of smad2/3 and extracellular signal-regulated kinase (ERK) 1/2. Furthermore, blocking AMP-activated protein kinase (AMPK) signaling abolished the inhibitory effect of metformin on fibrosis. Our findings indicate that metformin has a protective role against peritendinous tissue fibrosis and suggest its clinical use could be a promising therapeutic approach."	"Functional profiling of microtumors to identify cancer associated fibroblast-derived drug targets. Recent advances in chemotherapeutics highlight the importance of molecularly-targeted perturbagens. Although these therapies typically address dysregulated cancer cell proteins, there are increasing therapeutic modalities that take into consideration cancer cell-extrinsic factors. Targeting components of tumor stroma such as vascular or immune cells has been shown to represent an efficacious approach in cancer treatment. Cancer-associated fibroblasts (CAFs) exemplify an important stromal component that can be exploited in targeted therapeutics, though their employment in drug discovery campaigns has been relatively minimal due to technical logistics in assaying for CAF-tumor interactions. Here we report a 3-dimensional multi-culture tumor:CAF spheroid phenotypic screening platform that can be applied to high-content drug discovery initiatives. Using a functional genomics approach we systematically profiled 1,024 candidate genes for CAF-intrinsic anti-spheroid activity; identifying several CAF genes important for development and maintenance of tumor:CAF co-culture spheroids. Along with previously reported genes such as WNT, we identify CAF-derived targets such as ARAF and COL3A1 upon which the tumor compartment depends for spheroid development. Specifically, we highlight the G-protein-coupled receptor OGR1 as a unique CAF-specific protein that may represent an attractive drug target for treating colorectal cancer. In vivo, murine colon tumor implants in OGR1 knockout mice displayed delayed tumor growth compared to tumors implanted in wild type littermate controls. These findings demonstrate a robust microphysiological screening approach for identifying new CAF targets that may be applied to drug discovery efforts."	"Impact of maternal high fat diet on hypothalamic transcriptome in neonatal Sprague Dawley rats. Maternal consumption of a high fat diet during early development has been shown to impact the formation of hypothalamic neurocircuitry, thereby contributing to imbalances in appetite and energy homeostasis and increasing the risk of obesity in subsequent generations. Early in postnatal life, the neuronal projections responsible for energy homeostasis develop in response to appetite-related peptides such as leptin. To date, no study characterises the genome-wide transcriptional changes that occur in response to exposure to high fat diet during this critical window. We explored the effects of maternal high fat diet consumption on hypothalamic gene expression in Sprague Dawley rat offspring at postnatal day 10. RNA-sequencing enabled discovery of differentially expressed genes between offspring of dams fed a high fat diet and offspring of control diet fed dams. Female high fat diet offspring displayed altered expression of 86 genes (adjusted P-value&lt;0.05), including genes coding for proteins of the extra cellular matrix, particularly Collagen 1a1 (Col1a1), Col1a2, Col3a1, and the imprinted Insulin-like growth factor 2 (Igf2) gene. Male high fat diet offspring showed significant changes in collagen genes (Col1a1 and Col3a1) and significant upregulation of two genes involved in regulation of dopamine availability in the brain, tyrosine hydroxylase (Th) and dopamine reuptake transporter Slc6a3 (also known as Dat1). Transcriptional changes were accompanied by increased body weight, body fat and body length in the high fat diet offspring, as well as altered blood glucose and plasma leptin. Transcriptional changes identified in the hypothalamus of offspring of high fat diet mothers could alter neuronal projection formation during early development leading to abnormalities in the neuronal circuitry controlling appetite in later life, hence priming offspring to the development of obesity."	"Gene expression analysis in asthma using a targeted multiplex array. Gene expression changes in the structural cells of the airways are thought to play a role in the development of asthma and airway hyperresponsiveness. This includes changes to smooth muscle contractile machinery and epithelial barrier integrity genes. We used a targeted gene expression arrays to identify changes in the expression and co-expression of genes important in asthma pathology. RNA was isolated from the airways of donor lungs from 12 patients with asthma (8 fatal) and 12 non-asthmatics controls and analyzed using a multiplexed, hypothesis-directed platform to detect differences in gene expression. Genes were grouped according to their role in airway dysfunction: airway smooth muscle contraction, cytoskeleton structure and regulation, epithelial barrier function, innate and adaptive immunity, fibrosis and remodeling, and epigenetics. Differential gene expression and gene co-expression analyses were used to identify disease associated changes in the airways of asthmatics. There was significantly decreased abundance of integrin beta 6 and Ras-Related C3 Botulinum Toxin Substrate 1 (RAC1) in the airways of asthmatics, genes which are known to play an important role in barrier function. Significantly elevated levels of Collagen Type 1 Alpha 1 (COL1A1) and COL3A1 which have been shown to modulate cell proliferation and inflammation, were found in asthmatic airways. Additionally, we identified patterns of differentially co-expressed genes related to pathways involved in virus recognition and regulation of interferon production. 7 of 8 pairs of differentially co-expressed genes were found to contain CCCTC-binding factor (CTCF) motifs in their upstream promoters. Changes in the abundance of genes involved in cell-cell and cell-matrix interactions could play an important role in regulating inflammation and remodeling in asthma. Additionally, our results suggest that alterations to the binding site of the transcriptional regulator CTCF could drive changes in gene expression in asthmatic airways. Several asthma susceptibility loci are known to contain CTCF motifs and so understanding the role of this transcription factor may expand our understanding of asthma pathophysiology and therapeutic options."	"The chemokines CXCL12 and CXCL14 differentially regulate connective tissue markers during limb development. Connective tissues (CT) support and connect organs together. Understanding the formation of CT is important, as CT deregulation leads to fibrosis. The identification of CT specific markers has contributed to a better understanding of CT function during development. In developing limbs, Osr1 transcription factor is involved in the differentiation of irregular CT while the transcription factor Scx labels tendon. In this study, we show that the CXCL12 and CXCL14 chemokines display distinct expression pattern in limb CT during chick development. CXCL12 positively regulates the expression of OSR1 and COL3A1, a collagen subtype of irregular CT, while CXCL14 activates the expression of the tendon marker SCX. We provide evidence that the CXCL12 effect on irregular CT involves CXCR4 receptor and vessels. In addition, the expression of CXCL12, CXCL14 and OSR genes is suppressed by the anti-fibrotic BMP signal. Finally, mechanical forces, known to be involved in adult fibrosis, control the expression of chemokines, CT-associated transcription factors and collagens during limb development. Such unexpected roles of CXCL12 and CXCL14 chemokines during CT differentiation can contribute to a better understanding of the fibrosis mechanisms in adult pathological conditions."	"Vascular Ehlers-Danlos Syndrome With a Novel Missense COL3A1 Mutation Present With Pulmonary Complications and Iliac Arterial Dissection. Vascular Ehlers-Danlos syndrome (vEDS) is a life-threatening connective tissue disorder due to its high tendency of arterial and organ rupture. Pulmonary complications in vEDS are rare. We present a young male patient with vEDS who developed severe pulmonary complications and severe rupture of the iliac artery at different stages of his life. Vascular Ehlers-Danlos syndrome was diagnosed based on clinical manifestations and confirmed by the identification of COL3A1 gene mutation. Due to high bleeding tendency and weak cardiopulmonary capacity, conservative treatment was taken for him. To our knowledge, this is the first report of vEDS case in which the patient developed both pulmonary complications and dissection of large arteries. Our report emphasizes the importance of considering vEDS when an adolescent develops unexplained pulmonary cysts with fragility of lung tissues. Genetic counseling and close monitoring should be performed for earlier diagnosis and prevention of severe complications of large arteries. The typical presentations of vEDS were also discussed by means of a review of case reports on vEDS with pulmonary complications."	"Crosstalk between adipose stem cells and tendon cells reveals a temporal regulation of tenogenesis by matrix deposition and remodeling. Tendon injuries constitute an unmet clinical challenge owing to the limited intrinsic regenerative ability of this tissue. Cell-based therapies aim at improving tendon healing through the delicate orchestration of tissue rebuilding and regain of function. Hence, human adipose-derived stem cells (hASCs) have been proposed as a promising cell source for boosting tendon regeneration. In this work, we investigated the influence of hASCs on native human tendon-derived cells (hTDCs) through the establishment of a direct contact co-culture system. Results demonstrated that direct interactions between these cell types resulted in controlled proliferation and spontaneous cell elongation. ECM-related genes, particularly COL1A1 and TNC, and genes involved in ECM remodeling, such as MMP1, MMP2, MMP3, and TIMP1, were expressed in co-culture in a temporally regulated manner. In addition, deposition of collagen type I was accelerated in co-culture systems and favored over the production of collagen type III, resulting in an enhanced COL1/COL3 ratio as soon as 7 days. In conclusion, hASCs seem to be good candidates in modulating the behavior of native tendon cells, particularly through a balanced process of ECM synthesis and degradation."	"Involvement of Smad3 pathway in atrial fibrosis induced by elevated hydrostatic pressure. Hypertension is a main risk factor for atrial fibrillation, but the direct effects of hydrostatic pressure on the atrial fibrosis are still unknown. The present study investigated whether hydrostatic pressure is responsible for atrial fibrosis, and addressed a potential role of the Smad pathway in this pathology. Biochemical assays were used to study regulation and expression of fibrotic factors in spontaneously hypertensive rats (SHRs) and Wistar rats, and in cardiac fibroblasts (CFs) cultured under standard (0 mmHg) and elevated (20, 40 mmHg) hydrostatic pressure. Levels of atrial fibrosis and protein expression of fibrotic factors Col-1A1/-3A1, TGF-β1, and MMP-2 in SHRs' left atrial tissues were higher than those in Wistar rats. Exposure to elevated pressure was associated with the proliferation of CFs. The protein expression of Col-1A1/-3A1, TGF-β1, and MMP-2 in CFs was also up-regulated in a pressure-dependent manner. The proliferation of CFs and increased expressions of fibrotic markers induced by elevated hydrostatic pressure could be reversed by the Smad3 inhibitor naringenin. The activation of Smad3 pathway was also stimulated by elevated hydrostatic pressure. These results demonstrate that CF secretory function and proliferation can be up-regulated by exposure to elevated pressure, and that Smad3 may modulate CF activation induced by high hydrostatic pressure."	"Biorevitalization: an in vitro study on gingival fibroblast. Bio-revitalization is a therapy commonly used in aesthetic medicine to improve skin quality by di¬rectly integrating hyaluronic acid alone or added to other molecules (i.e. vitamins) through intradermal injections. These injections are not aimed to fill roughness but to achieve extracellular matrix optimi¬zation. The injective medical devices used in aesthetic medicine differ for hyaluronic acid content and for the presence of additional molecules that characterize the formulation of a particular company. The aim of the present study is to compare HA with different compounds in regard to their effects on cultured fibroblasts over time by using RT-PCR and a panel of genes (ELN, DSP, FN1, FBN1, ITGA1, ITGA2, ITGA5, ITGB1, COL1A1, COL3A1) involved in connective integrity. Bio-revitalization is able to activate genes involved in tissue integrity. The reported data add new insight in the comprehension of molecular mechanism related to BR. These preliminary data have to be developed through additional experiments. However, an injective therapy seems to be effective in gingival fibroblast stimulation."	"Effect of biostimulation on oral fibroblast: a pilot study. Bio-stimulation is a technique in aesthetic medicine in which different drugs such as nucleotides, antioxidants and glucosaminoglycans precursors are injected in the dermis to improving the anabolic function of dermal fibroblasts, i.e., protein synthesis, replication and production of extracellular matrix components. It can be achieved with multiple intra-dermal injections, using two protocols: 1) Polydeoxyribonucleotide (PDRN) plus glucosamine sulphate (Gluc); 2) N-acetylcysteine (NAC) and amino acids (Aa) (named Bio- NAC procedure). Since the role of drugs used in biostimulation on human dermal fibroblasts is not completely understood, the aim of this study is to evaluate the effect of these substances in primary cell cultures by using RT-PCR and a panel of specific genes (ELN, DSP, FN1, FBN1, ITGA1, ITGA2, ITGA5, ITGB1, COL1A1,COL3A1) to detect their effect on cell metabolism and extracellular matrix components. Both the treatments were responsible for Elastine and Desmoplakin genes activation. Only NAC plus Aa treatment enhance the expression of other genes related to tissue growth and elasticity like FBN1, ITGA1 and ITGB1. All the other genes investigated (FN1, ITGA5, ITGA2, COL1A1, COL3A1) were down-regulated by both treatments. Since the precise role of these proteins in tissue integrity and aging is not known, this study confirms the usefulness of biostimulation therapies in enhancing some of the genes responsible of cellular wellbeing. This study could be useful to consider the possibility of injective biostimulation in oral cavity, clinical applications in oral healing and in gingival atrophy as well."	"Deep Coverage Tissue and Cellular Proteomics Revealed IL-1β Can Independently Induce the Secretion of TNF-Associated Proteins from Human Synoviocytes. Synovitis is a key contributor to the inflammatory environment in osteoarthritis (OA) joints. Currently, the biological therapy of OA is not satisfactory in multiple single-target trials on anti-TNF agents, or IL-1 antagonists. Systems biological understanding of the phosphorylation state in OA synovium is warranted to direct further therapeutic strategies. Therefore, in this study, we compared the human synovial phosphoproteome of the OA with the acute joint fracture subjects. We found that OA synovium had significantly more phosphoproteins, and 82 phosphoproteins could only be specifically found in all the OA samples. Differentially expressed proteins of the OA synovium were focusing on endoplasmic reticulum-/Golgi-associated secretion and negative regulation of cell proliferation, which was verified through an IL-1β-treated human synoviocyte (HS) in vitro model. With data-independent acquisition-based mass spectrometry, we found that IL-1β could induce HS to secrete proteins that were significantly associated with the endosomal/vacuolar pathway, endoplasmic reticulum/Golgi secretion, complement activation, and collagen degradation. Especially, we found that while specifically suppressing HS endocytosis, IL-1β could activate the secretion of 25 TNF-associated proteins, and the change of SERPINE2 and COL3A1 secretion was verified by immunoblotting. In conclusion, our results suggest that OA synovium has a polarized phosphoproteome to inhibit proliferation and maintain active secretion of HS, whereas IL-1β alone can transform HS to produce a synovitis-associated secretome, containing numerous TNF-associated secretory proteins in a TNF-independent mode."	"Proteasome-mediated degradation of collagen III by cortisol in amnion fibroblasts. Rupture of fetal membranes (ROM) can initiate parturition at both term and preterm. Collagen III in the compact layer of the amnion contributes to the tensile strength of fetal membranes. However, the upstream signals triggering collagen III degradation remain mostly elusive. In this study, we investigated the role of cortisol regenerated by 11β-hydroxysteroid dehydrogenase 1 (11β-HSD1) in collagen III degradation in human amnion fibroblasts with an aim to seek novel targets for the prevention of preterm premature ROM (pPROM)-elicited preterm birth. Human amnion tissue and cultured amnion tissue explants and amnion fibroblasts were used to study the regulation of collagen III, which is composed of three identical 3α 1 chains (COL3A1), by cortisol. Cortisol decreased COL3A1 protein but not mRNA abundance in a concentration-dependent manner. Cortisone also decreased COL3A1 protein, which was blocked by 11β-HSD1 inhibition. The reduction in COL3A1 protein by cortisol was not affected by a transcription inhibitor but was further enhanced by a translation inhibitor. Autophagic pathway inhibitor chloroquine or siRNA-mediated knock-down of ATG7, an essential protein for autophagy, failed to block cortisol-induced reduction in COL3A1 protein abundance, whereas proteasome pathway inhibitors MG132 and bortezomib significantly attenuated cortisol-induced reduction in COL3A1 protein abundance. Moreover, cortisol increased COL3A1 ubiquitination and the reduction of COL3A1 protein by cortisol was blocked by PYR-41, a ubiquitin-activating enzyme inhibitor. Conclusively, cortisol regenerated in amnion fibroblasts may be associated with ROM at parturition by reducing collagen III protein abundance through a ubiquitin-proteasome pathway."	"Branched-chain amino acids regulate type I tropocollagen and type III tropocollagen syntheses via modulation of mTOR in the skin. Branched-chain amino acids (BCAAs) exhibit many physiological functions. However, the potential link and mechanism between BCAA and skin function are unknown. We examined the effects of deletion of branched-chain α-keto acid dehydrogenase kinase (BDK), a key enzyme in BCAA catabolism, on type I and III tropocollagen syntheses in mice. Leucine and isoleucine levels were significantly lower in the skin of BDK-KO mice compared with wild-type mice. No changes in valine concentrations were observed. The levels of type I and III tropocollagen proteins and mRNAs (COL1A1 and COL3A1) were significantly lower in the skin of BDK-KO mice compared with wild-type mice. The phosphorylation of p70 S6 kinase, which indicates mammalian target of rapamycin (mTOR) activation, was reduced in the skin of BDK-KO mice compared with wild-type mice. These findings suggest that deficiencies of leucine and isoleucine reduce type I and III tropocollagen syntheses in skin by suppressing the action of mTOR."	"Restoration of miR-29b exerts anti-cancer effects on glioblastoma. Glioblastoma multiforme (GBM) is known as one of the most fatal forms of cancer. MicroRNAs have been widely implicated in the regulation of mammalian development and pathogenesis. The brain-enriched miR-29 subfamilies are known to be exclusively expressed in the developing brain, and they are aberrantly down-regulated in GBM. This study aims to elucidate the role of miR-29b in GBM development and the feasibility of therapeutic targeting using conjugated nanoparticles. After confirmation of miR-29b expression levels in GBM tissues by analysis of open source data, the anticancer effect of miR-29b was tested by the introduction of syn-hsa-miR-29b-3p in the A172 GBM cell line. In vitro studies of cell viability and apoptosis and ex vivo study using GBM tissue slice cultures from 3 patients and nanoparticle delivery of miR-29b were performed. We discovered an increase in apoptotic cell populations with the introduction of miR-29b in the GBM cell line. An established human-derived GBM tissue slice culture system confirmed the anticancer effect of miR-29b-conjugated nanoparticles. Using PCR array, we found that exogenous miR-29b inhibits the expression of COL1A2, COL3A1, COL4A1, ELN, ITGA11, MMP24, and SPARC, which mediates an anticancer effect. miR-29b may serve as a putative therapeutic molecule when its expression is restored using a nanoparticle delivery system in GBM."	"Ameliorative effects of riboflavin on acetic acid-induced colonic injury in rats. Riboflavin (RF) has been found to be a promising antioxidant and/or anti-inflammatory agent in several studies. However, the effect of RF against acetic acid (AA)-induced colonic injury is currently unknown. This study aimed to investigate the potential antioxidant and protective effects of RF in a rat model of ulcerative colitis. Starting immediately after the colitis induction (AA+RF group) or 1 week before the colitis induction (RF+AA+RF group), the rats were treated with RF (25 mg/kg per day; p.o.) for 3 days. The control and AA groups received saline (1 mL; p.o.) whereas AA+SS group (positive control) received sulfasalazine (100 mg/kg per day; p.o.) for 3 days. Colonic samples were taken for the biochemical and histological assessments on the third day. High damage scores, elevated tissue wet weight index (WI), tissue myeloperoxidase (MPO) activity, 8-hydroxy-2'-deoxyguanosine levels and chemiluminescence values, and a pronounced decrease in antioxidant glutathione (GSH) levels of the AA group were all reversed by RF pretreatment (RF+AA+RF group) and SS treatment (AA+SS group) (P &lt; .05-.001). Tissue WI, MPO activity and GSH levels were not statistically changed in the AA+RF group. Western blot analysis revealed that the decreased protein expressions of tissue collagen (COL) 1A1, COL3A1 and transforming growth factor-β1 in the AA group were elevated in all the treatment groups (P &lt; .05-.001). In conclusion, RF exerts both the antioxidant and anti-inflammatory effects against AA-induced colonic inflammation by suppressing neutrophil accumulation, inhibiting reactive oxidant generation, preserving endogenous glutathione, improving oxidative DNA damage and regulating inflammatory mediators, suggesting a future potential role in the treatment and prevention of ulcerative colitis."	"Gene expression and gene associations during the development of heart failure with preserved ejection fraction in the Dahl salt sensitive model of hypertension. Gene expression and associations were examined in a model of heart failure with preserved ejection fraction (HFpEF), a condition with minimal effective treatment. Genes with at least two studies showing significant changes in Dahl rat with heart failure were examined by meta-analysis. Significantly increased in expression were iNOS, p47phox, ADM, ANP, OPN, ACE, MCP-1, GP91PHOX, ICAM-1, TGF-β1, CTGF, ET-1, p22phox, ETB, BNP, ETA, MMP13, Col1a1, MMP2, TIMP1, Col3a1, Il-1β, β-MHC, ECE1, MMP14, AGT, and MMP9. In contrast, GLUT4, VEGF, eNOS, HIF-1α, and PGC1-α were significantly decreased in expression. The top biological process clusters identified in Database for Annotation, Visualization and Integrated Discovery, ToppGene, and PANTHER were collagen metabolic process, cellular ion homeostasis, regulation of cell migration, and response to decreased oxygen levels. These data suggest refocusing understanding of the pathophysiology of HFpEF to pathways involved in collagen metabolism, cell migration likely for inflammatory cells, and responses to decreased oxygen levels. Abbreviations Inducible nitric oxide synthase (INOS), neutrophil cytosolic factor 1 (p47phox), adrenomedullin (ADM), atrial natriuretic peptide (ANP), osteopontin (OPN/SPP1), angiotensin converting enzyme (ACE), monocyte chemotactic protein 1 (MCP-1), cytochrome b-245 beta polypeptide (gp91phox), intercellular adhesion molecule 1 (ICAM-1), transforming growth factor beta 1 (TGF-β1), connective tissue growth factor (CTGF), endothelin-1 (ET-1), cytochrome B-245, alpha polypeptide (p22phox), endothelin receptor type B (ETB/EDNRB), brain natriuretic peptide (BNP), endothelin receptor type A (ETA/EDNRA), matrix metallopeptidase 13 (MMP13), type I collagen (Col1a1), matrix metallopeptidase 2 (MMP2), TIMP metallopeptidase inhibitor 1 (TIMP1), Type III collagen (Col3a1), interleukin 1 beta (IL-1β), beta myocin heavy chain (β-MHC), endothelin converting enzyme 1 (ECE1) matrix metallopeptidase 14 (MMP14), angiotensinogen (AGT), angiotensin II receptor Type 1 (AT1R), cytochrome C oxidase I (COX1), fms-like tyrosine kinase 1 (FLT1), TIMP metallopeptidase inhibitor 2 (TIMP2), phospholamban (PLN), vascular cell adhesion molecule 1 (VCAM1), extracellular matrix (ECM)."	"Lingguizhugan decoction improves non-alcoholic fatty liver disease by altering insulin resistance and lipid metabolism related genes: a whole trancriptome study by RNA-Seq. Lingguizhugan decoction, a classic traditional Chinese medicine formula, has been used to treat non-alcoholic fatty liver disease (NAFLD), however, the underlying mechanisms remains unclear. In the present study, we compared the phenotype of the normal rats (fed with chow diet), high-fat-diet (HFD) induced NAFLD rats and Lingguizhugan decoction (LGZG, comprises four Chinese herbs: Poria, Ramulus Cinnamomi, Rhizoma Atractylodis Macrocephalae, and Radix Glycyrrhizae.) intervened rats, and detected whole genome gene expression by RNA-Seq. Our results demonstrated that LGZG decoction attenuated phenotypic characteristics of NAFLD rats. RNA-Seq data analysis revealed that gene expression profiles exerted differential patterns between different groups. 2690 (1445 up-regulated, 1245 down-regulated) genes in NAFLD versus (vs) normal group, 69 (16 up-regulated, 53 down-regulated) genes in LGZG vs NAFLD group, and 42 overlapped (12 up- regulated, 30 down-regulated) genes between NAFLDvs normal group and LGZG vs NAFLD group were identified as differentially expressed. GO, pathway enrichment and PPI networks analysis of the overlapped genes revealed that LGZG decoction might attenuate NAFLD possibly by affecting insulin resistance and lipid metabolism related pathways (e.g., PI3K-Akt, AMPK). Differentially expressed genes involved in these pathways such as Pik3r1, Foxo1, Foxo3, Scd1, Col3a1 and Fn1 might be candidate targets for treating NAFLD."	"Heart function and thoracic aorta gene expression profiling studies of ginseng combined with different herbal medicines in eNOS knockout mice. Ginseng, a popular herbal remedy, is often used in combination with other drugs to achieve the maximum therapeutic response. Shenfu (SFI) and Shenmai injection (SMI) have been widely used to treat cardiovascular disease in China. Our study explored the cardiovascular protection of SFI and SMI in eNOS knockout mice to investigate the differences and similarities of the two ginseng-combinations. Transthoracic echocardiography was performed to evaluate the left ventricular structure and function at baseline and 3, 7, and 14 days after drug administration. Agilent Gene Expression microarrays were used to demonstrate the gene expression profiling of the thoracic aorta. Ingenuity Pathway Analysis was performed to evaluate the mechanism improved by SFI and SMI in eNOS knockout mice. Both SFI and SMI could modulate Gadd45 Signaling from TOP15 canonical pathways. Moreover, SFI showed a better effect in the early treatment stage and improved myocardial function via GATA4, GATA6 and COL3A1. Meanwhile, SMI exerted better protective effects at the chronic stage, which may be related to endothelium protection by VEGFA and ACE. The advantage of multi-target by drug combination in progression of complex diseases should be noticed. The appropriate adjustment of drug combination could lead to a better accurate medical care in clinic."	"Three-Month Endothelial Human Endothelin-1 Overexpression Causes Blood Pressure Elevation and Vascular and Kidney Injury. Endothelium-derived endothelin (ET)-1 has been implicated in the development of hypertension and end-organ damage, but its exact role remains unclear. We have shown that tamoxifen-inducible endothelium-restricted human ET-1 overexpressing (ieET-1) mice exhibited blood pressure rise after a 3-week induction in an ET type A (ETA) receptor-dependent manner, in absence of vascular and renal injury. It is unknown whether long-term ET-1 overexpression results in sustained blood pressure elevation and vascular and renal injury. Adult male ieET-1 and control tamoxifen-inducible endothelium-restricted Cre recombinase (ieCre) mice were induced with tamoxifen and 2.5 months later, were treated with or without the ETA receptor blocker atrasentan for 2 weeks. Three-month induction of endothelial human ET-1 overexpression increased blood pressure (P&lt;0.01), reduced renal artery flow (P&lt;0.001), and caused mesenteric small artery stiffening (P&lt;0.05) and endothelial dysfunction (P&lt;0.01). These changes were accompanied by enhanced mesenteric small artery Col1A1 and Col3A1 expression, and perivascular adipose tissue oxidative stress (P&lt;0.05) and monocyte/macrophage infiltration (P&lt;0.05). Early renal injury was demonstrated by increased kidney injury molecule-1 expression in renal cortex tubules (P&lt;0.05), with, however, undetectable lesions using histochemistry staining and unchanged urinary albumin. There was associated increased myeloid (CD11b<sup>+</sup>) and myeloid-derived suppressive cell (CD11b<sup>+</sup>Gr-1<sup>+</sup>) renal infiltration (P&lt;0.01) and greater frequency of myeloid and renal cells expressing the proinflammatory marker CD36 (P&lt;0.05). Atrasentan reversed or reduced all of the above changes (P&lt;0.05) except the endothelial dysfunction and collagen expression and reduced renal artery flow. These results demonstrate that long-term exposure to endothelial human ET-1 overexpression causes sustained blood pressure elevation and vascular and renal injury via ETA receptors."	"The SOD Mimic, MnTE-2-PyP, Protects from Chronic Fibrosis and Inflammation in Irradiated Normal Pelvic Tissues. Pelvic radiation for cancer therapy can damage a variety of normal tissues. In this study, we demonstrate that radiation causes acute changes to pelvic fibroblasts such as the transformation to myofibroblasts and the induction of senescence, which persist months after radiation. The addition of the manganese porphyrin, MnTE-2-PyP, resulted in protection of these acute changes in fibroblasts and this protection persisted months following radiation exposure. Specifically, at two months post-radiation, MnTE-2-PyP inhibited the number of α-smooth muscle actin positive fibroblasts induced by radiation and at six months post-radiation, MnTE-2-PyP significantly reduced collagen deposition (fibrosis) in the skin and bladder tissues of irradiated mice. Radiation also resulted in changes to T cells. At two months post-radiation, there was a reduction of Th1-producing splenocytes, which resulted in reduced Th1:Th2 ratios. MnTE-2-PyP maintained Th1:Th2 ratios similar to unirradiated mice. At six months post-radiation, increased T cells were observed in the adipose tissues. MnTE-2-PyP treatment inhibited this increase. Thus, MnTE-2-PyP treatment maintains normal fibroblast function and T cell immunity months after radiation exposure. We believe that one of the reasons MnTE-2-PyP is a potent radioprotector is due to its protection of multiple cell types from radiation damage."	"MicroRNA-29b-3p prevents Schistosoma japonicum-induced liver fibrosis by targeting COL1A1 and COL3A1. Schistosomiasis is one of the world's major public health problems in terms of morbidity and mortality, causing granulomatous inflammation and cumulative fibrosis. This study explored in vivo and vitro effects of miR-29b-3p in granulomatous liver fibrosis by targeting COL1A1 and COL3A1 in Schistosoma japonicum infection. Thirty male Balb/c mice were assigned to normal control and model (percutaneous infection of cercariae of S. japonicum) groups. NIH-3T3 mouse embryonic fibroblasts were designated into blank, NC, miR-29b-3p mimic, TGF-β1, TGF-β1 + NC, and TGF-β1 + miR-29b-3p mimic groups. HE and Masson staining were employed to observe the pathological changes and collagenous fibrosis. The expression of α-SMA, COL1A1, COL3A1, TIMP-1 was determined by immunohistochemistry. The RT-qPCR, Western blotting and immunofluorescence staining were conducted to determine expression of miR-29b-3p, COL1A1, and COL3A1. CCK-8 assay and flow cytometry were performed to evaluate viability and apoptosis. The relative expression of miR-29b-3p decreased in the model group. The model group showed marked fibrosis in liver tissues. The expression of α-SMA, COL1A1, COL3A1, TIMP-1 was higher in the model group than that in the normal control group. Dual luciferase reporter gene assay revealed that miR-29b-3p directly targeted COL1A1 and COL3A1. Compared with the blank, NC, TGF-β1 and TGF-β1 + NC groups, the miR-29b-3p mimic group exhibited up-regulated expression of miR-29b-3p and MMP-9 but down-regulated expression of TIMP-1, HSP47, α-SMA, COL1A1, and COL3A1; while lower cell viability but higher apoptosis rate showed. It indicated that miR-29b-3p prevents S. japonicum-induced liver fibrosis by inhibiting COL1A1 and COL3A1."	"The significance of lumican expression in ovarian cancer drug-resistant cell lines. The aim of the present study is to determine the expression of LUM in drug-resistant ovarian cancer cell lines. Doxorubicin- (DOX), topotecan- (TOP) and vincristine- (VIN) resistant variants of the W1 ovarian cancer cell line were used in this study. We used quantitative real-time polymerase chain reactions to determine LUM mRNA levels. Protein expression was detected using Western blot and immunocytochemistry assays. Protein glycosylation was investigated using PGNase F digestion. Immunohistochemistry assays were used to determine protein expression in ovarian cancer patients. We observed increased expression of LUM in drug-resistant cell lines at both the mRNA and the protein level. The most abundant LUM expression was observed in TOP-resistant cell line. We observed LUM bands that corresponded to different molecular masses, and the most abundant LUM form was the secreted form, which had a mass of 50 kDa. Double immunofluorescence analysis showed co-expression of LUM and COL3A1 as well as the presence of extracellular COL3A1 in the TOP-resistant cell line. Finally, we detected the LUM protein in ovarian cancer tissue. The expression of LUM in cytostatic-resistant cell lines suggests its role in drug resistance. The co-expression of LUM and COL3A1 indicates the significance of LUM in collagen fibre assembly. Expression in ovarian cancer tissue suggests that LUM can play a role in ovarian cancer pathogenesis in ways similar to other cancers."	"The association between collagen gene polymorphisms and intracranial aneurysms: a meta-analysis. The association between single nucleotide polymorphisms (SNPs) of the collagen gene and intracranial aneurysm (IA) pathogenesis remains controversial. Thus, in this study, a meta-analysis was performed to evaluate the association between collagen gene SNPs and the incidence of IA. A systematic search of major online databases up to March 2017 was performed. Five genetic models (allelic, dominant, recessive, heterozygous, and homozygous models) were used to analyze the associations. A total of 14 trials with 13,709 patients were included. Four collagen genes, COL1A2 (21 SNPs), COL3A1 (7 SNPs), COL4A1 (6 SNPs), and COL4A2 (1 SNP), were analyzed. We observed that rs42524 in the COL1A2 gene was associated with a significant increase in the risk of IA in Japanese patients (allelic model: OR, 1.94; 95% CI, 1.03-3.64; p = 0.04); the rs1800255 polymorphism in the COL3A1 gene was significantly correlated with Chinese IA patients (allelic model: OR, 1.50; 95% CI, 1.30-1.73; p &lt; 0.001); and rs2621215 was significantly correlated with IA for the heterozygous model (OR, 1.58; 95% CI, 1.15-2.17; p = 0.005) and the dominant model (OR, 1.49; 95% CI, 1.09-2.02; p = 0.012). Furthermore, in the COL4A1 gene, there was a significant relationship between the rs3783107 polymorphism and a Dutch IA population (allelic model: OR, 1.23; 95% CI, 1.06-1.42; p = 0.006), and the prevalence ratio of mutation carriers in the Dutch population was significantly higher than that in the Japanese population (ROR, 1.31; 95% CI, 1.07-1.63; p = 0.008). The rs1800255 polymorphism in COL3A1 is robustly correlated with IA in the Chinese population. Three COL1A2 SNPs-rs42524, rs1800238, and rs2621215-should be studied further."	"KLF2 attenuates bleomycin-induced pulmonary fibrosis and inflammation with regulation of AP-1. Pulmonary fibrosis (PF) is a chronic, fibrosing interstitial pneumonia and devastating disease. Here we investigated the potential roles of Kruppel-like factor 2 (KLF2) on pulmonary fibrosis and inflammation response. A mouse model of pulmonary fibrosis was established by intratracheal injection of bleomycin (BLM). The mRNA and protein levels of KLF2 were assayed by RT-PCR and Western blotting respectively. The extent of lung fibrosis was determined using hematoxylin and eosin (HE) staining and Masson's trichrome staining, and the hydroxyproline content was quantified. RT-PCR was used to evaluate the mRNA expression of collagen type 1a1 (col1a1), col3a1, α-SMA, TNF-α, IL-1β and IL-6. The concentrations of TNF-α, IL-1β, and IL-6 in bronchoalveolar lavage fluid (BALF) and lung tissue were examined by ELISA. Also, the effects of KLF2 on activator protein-1 (AP-1) were evaluated by measuring the c-Jun and c-Fos protein levels. We found that KLF2 was remarkably downregulated in BLM-treated rats, both in mRNA and protein levels. Additionally, overexpression of KLF2 attenuated the destruction of the alveolar space and pulmonary interstitial collagen hyperplasia, and deposition reduced the expression of col1a1, col3a1, and α-SMA, and blocked the production of TNF-α, IL-1β, and IL-6 in BALF and lung tissue in vivo. Moreover, adenoviral transduction of KLF2 inhibited TGF-β1-induced expression of col1a1, col3a1, and α-SMA in vitro. Mechanically, BLM up-regulated c-Jun and c-Fos expression, which was impeded by KLF2 overexpression. Taken together, our data indicate that KLF2 attenuates pulmonary fibrosis and inflammation, possibly through the regulation of AP-1."	"Potential effect of exercise in ameliorating insulin resistance at transcriptome level. Insulin resistance can lead to the pathogenesis of type 2 diabetes and exercise can increase insulin sensitivity. And different exercises may have different influences on the mitigation of insulin resistance. It is still unclear how exercise affects inherited insulin resistance at transcriptome level. The purpose of our study was to analyze the potential effects of exercise in ameliorating insulin resistance at transcriptome level. Herein, we analyzed two skeletal muscle transcriptome profiles, including gene profiles between inherited insulin resistant patients and matched healthy controls, and between trained and sedentary subjects (young and old subjects, respectively). Analysis of differentially expressed genes revealed that 12 genes (SGK1, LOC101929876, MYL5, COL6A3, MLF1, LUM, MSTN, COL1A2, COL3A1, IL32, IRS2, and ID1) associated with insulin resistance were reversed by exercise in young subjects, while six genes (MSTN, CFHR1, PFKFB3, IL32, RGCC, and NMRK2) were identified in old subjects, suggesting that those genes play potential roles in insulin resistance response to exercise. In addition, we observed that two insulin resistance-related genes, MSTN and IL32, were identified in muscle cells of both young and old subjects, indicating their important roles in the mechanisms behind the beneficial effects of exercise on humans with inherited insulin resistance. Several pathways were also identified, such as &quot;collagen metabolic process,&quot; &quot;focal adhesion,&quot; and &quot;negative regulation of myoblast differentiation.&quot; Taken together, our findings provide novel markers in insulin resistant patients and exercise, and some valuable information for future functional studies on how exercise ameliorating insulin resistance."	"Gene expression profile of collagen types, osteopontin in the tympanic membrane of patients with tympanosclerosis. Tympanosclerosis is a pathological process involving the middle ear. The hallmark of this disease is the formation of calcium deposits. In the submucosal layer, as well as in the right layer of the tympanic membrane, the calcium deposits result in a significant increase in the activity of fibroblasts and deposition of collagen fibers. The aim of our study was to examine the expression level of genes encoding collagen type I, II, III and IV (COL1A1, COL2A1, COL3A1, COL4A1) and osteopontin (SPP1) in the tympanic membrane of patients with tympanosclerosis. The total RNA was isolated from middle ear tissues with tympanosclerosis, received from 25 patients and from 19 normal tympanic membranes. The gene expression level was determined by real-time RT-PCR. The gene expression levels were correlated with clinical Tos classification of tympanosclerosis. We observed that in the tympanic membrane of patients with tympanosclerosis, the expression of type I collagen is decreased, while the expression of type II and IV collagen and osteopontin is increased. Moreover, mRNA levels of the investigated genes strongly correlated with the clinical stages of tympanosclerosis. The strong correlations between the expression of type I, II, IV collagen and osteopontin and the clinical stage of tympanosclerosis indicate the involvement of these proteins in excessive fibrosis and pathological remodeling of the tympanic membrane. In the future, a treatment aiming to modulate these gene expressions and/or regulation of the degradation of their protein products could be used as a new medical approach for patients with tympanosclerosis."	"Severe Burn-Induced Inflammation and Remodeling of Achilles Tendon in a Rat Model. Severe burn causes systemic inflammation and hypercatabolism, resulting in damage to multiple organs distant to the burn site, including the musculoskeletal system. Bone mass and muscle loss have been reported. However, tendon that connects bone and muscle has not been studied in comparable detail. Here we aimed to characterize the molecular and functional changes in Achilles tendon triggered by severe burn. Forty male Sprague-Dawley rats received 40% total body surface area scald burn. Achilles tendons were collected up to 14 days postburn. Sham-treated animals served as a control group. We analyzed tendons for changes in expression of IL-6, IL-1β, TNF, MMP9, MMP13, TGFβ1, Collagens I and III, and for morphological and biomechanical changes. Gene expression of IL-6 and IL-1β as well as MMP9 and MMP13 increased in rat tendon 3 days after burn. Col3a1 increased at day 3 and col1a1 at day 7. At day 14, TGFβ1 increased, whereas the protein ratio for collagens I/III decreased, indicating tendon remodeling. Histological analysis with H&amp;E and Picrosirius red staining further revealed a decrease in organized collagen fibers 14 days after burn. Biomechanical analysis showed a decrease in stiffness and ultimate force of tendons in burn rats.We conclude that tendinopathy was observed in Achilles tendon 14 days after severe burn, via the induction of inflammation and remodeling. The present study provides a model of tendinopathy that may be used for the development of therapeutic approaches after burn."	"Reduction in skeletal muscle fibrosis of spontaneously hypertensive rats after laceration by microRNA targeting angiotensin II receptor. Regeneration of injured skeletal muscles is affected by fibrosis, which can be improved by the administration of angiotensin II (AngII) receptor (ATR) blockers in normotensive animals. However, the role of ATR in skeletal muscle fibrosis in hypertensive organisms has not been investigated yet. The tibialis anterior (TA) muscle of spontaneously hypertensive (SHR) and Wistar rats (WR) were lacerated and a lentivector encoding a microRNA targeting AngII receptor type 1 (At1) (Lv-mirAT1a) or control (Lv-mirCTL) was injected. The TA muscles were collected after 30 days to evaluate fibrosis by histology and gene expression by real-time quantitative PCR (RT-qPCR) and Western blot. SHR's myoblasts were analyzed by RT-qPCR, 48 h after transduction. In the SHR's TA, AT1 protein expression was 23.5-fold higher than in WR without injury, but no difference was observed in the angiotensin II receptor type 2 (AT2) protein expression. TA laceration followed by suture (LS) produced fibrosis in the SHR (23.3±8.5%) and WR (7.9±1.5%). Lv-mirAT1 treatment decreased At1 gene expression in 50% and reduced fibrosis to 7% 30 days after. RT-qPCR showed that reduction in At1 expression is due to downregulation of the At1a but not of the At1b. RT-qPCR of myoblasts from SHR transduced with Lv-mirAT1a showed downregulation of the Tgf-b1, Tgf-b2, Smad3, Col1a1, and Col3a1 genes by mirAT1a. In vivo and in vitro studies indicate that hypertension overproduces skeletal muscle fibrosis, and AngII-AT1a signaling is the main pathway of fibrosis in SHR. Moreover, muscle fibrosis can be treated specifically by in loco injection of Lv-mirAT1a without affecting other organs."	"Time-Dependent Alterations of MMPs, TIMPs and Tendon Structure in Human Achilles Tendons after Acute Rupture. A balance between matrix metalloproteinases (MMPs) and their inhibitors (TIMPs) is required to maintain tendon homeostasis. Variation in this balance over time might impact on the success of tendon healing. This study aimed to analyze structural changes and the expression profile of MMPs and TIMPs in human Achilles tendons at different time-points after rupture. Biopsies from 37 patients with acute Achilles tendon rupture were taken at surgery and grouped according to time after rupture: early (2-4 days), middle (5-6 days), and late (≥7 days), and intact Achilles tendons served as control. The histological score increased from the early to the late time-point after rupture, indicating the progression towards a more degenerative status. In comparison to intact tendons, qRT-PCR analysis revealed a significantly increased expression of MMP-1, -2, -13, TIMP-1, COL1A1, and COL3A1 in ruptured tendons, whereas TIMP-3 decreased. Comparing the changes over time post rupture, the expression of MMP-9, -13, and COL1A1 significantly increased, whereas MMP-3 and -10 expression decreased. TIMP expression was not significantly altered over time. MMP staining by immunohistochemistry was positive in the ruptured tendons exemplarily analyzed from early and late time-points. The study demonstrates a pivotal contribution of all investigated MMPs and TIMP-1, but a minor role of TIMP-2, -3, and -4, in the early human tendon healing process."	"Hemothorax in vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (EDS IV) is a rare genetic disorder characterized by an alteration in the COL3A1 gene which encodes type III collagen. It is the most common type of collagen in vessels of medium size and certain organs such as the intestines and the uterus. The alteration of this type of collagen produces aneurisms and ruptures of vessels and organs. A high level of clinical suspicion is required for diagnosis. It is a complex disease whose management requires a multidisciplinary team to treat the different complications that may occur. We report the case of a 50-year-old man diagnosed with EDS IV detected incidentally after hemothorax secondary to a coughing spell."	"Overexpression of COL3A1 confers a poor prognosis in human bladder cancer identified by co-expression analysis. Human bladder cancer (BCa) is one of the worldwide cancers in men and women populations, with the etiology and mechanism unknown. In our study, we constructed a weighted gene co-expression network to identify gene modules associated with the progression of BCa (n = 93). In the significant module (R<sup>2</sup> = 0.48), a total of 103 network hub genes were identified, and 4 of them were hub nodes in the protein-protein interaction network as well. In validation, COL3A1 showed a higher correlation with the disease progression than any other hub genes in hub module in the test set (p &lt; 0.001). Functional and pathway enrichment analysis demonstrated that COL3A1 is overrepresented in pathway of focal adhesion, which associated with tumor progression and might cause metastasis. Gene set enrichment analysis (GSEA) also demonstrated that the gene set of &quot;MAPK signaling pathway&quot; and focal adhesion related pathways were enriched in BCa samples with COL3A1 highly expressed (FDR &lt; 0.05). Considering the clinicopathological parameters, highly-expressed COL3A1 was closely correlated with local recurrence and BCa stage. Survival analysis revealed that BCa patients with higher expression of COL3A1 had a significantly shorter overall survival time and disease free survival time.In conclusion, based on the co-expression analysis, COL3A1 was identified in the association with progression and prognosis of BCa, which might refer a poor prognosisprobably by regulating MAPK signaling pathway."	"miR-29b regulates expression of collagens I and III in chondrogenically differentiating BMSC in an osteoarthritic environment. Osteoarthritis (OA) is characterized by a slowly progressing, irreversible loss of articular cartilage. Tissue engineering approaches for cartilage regeneration include stem cell-based strategies but not much is known about their repair capacity in an OA microenvironment. The aim of the present study was to identify factors regulating collagen expression during chondrogenic differentiation of bone marrow-derived mesenchymal stem cells (BMSC) in an OA microenvironment. Coculture with OA cartilage induced miR-29b expression in BMSC which inhibited collagen I and III expression. Elevated miR-29b expression resulted in higher caspase 3/7 activity and promoted apoptosis of BMSC in part by directly inhibiting the anti-apoptotic proteins Bcl-2 and Mcl-1. Stimulation with IFN-γ induced miR-29b expression in BMSC. Our results suggest that miR-29b affects BMSC-based OA cartilage regeneration because expression of collagen III, mainly produced by undifferentiated BMSC, and collagen I, a marker for dedifferentiated chondrocytes, are inhibited by miR-29b thus influencing composition of the newly formed ECM. This might be critical to avoid formation of inferior fibrocartilage instead of hyaline cartilage. Furthermore, higher miR-29b expression promotes apoptosis either preventing excessive cell growth or reducing the number of BMSC undergoing chondrogenesis. Thus, miR-29b has both supportive but possibly also unfavourable effects on BMSC-based OA cartilage regeneration."	"Role of PDGF-BB in proliferation, differentiation and maintaining stem cell properties of PDL cells in vitro. Platelet-derived growth factor-BB (PDGF-BB) is one of the most abundant growth factors in platelet derived products and has been shown to stimulate regeneration after tissue injury. There is a population of mesenchymal stem cells (MSC) in human periodontal ligament (PDL) which can contribute to tissue regeneration under appropriate conditions. PDL cells were isolated and characterized using stem cell and differentiation markers via immunofluorescence and flow cytometry and then cultured in vitro and treated with different concentrations of PDGF-BB. The effect of PDGF-BB on cell proliferation, stem cell and differentiation markers expression, soluble collagen production, lysyl oxidase (LOX) activity, alkaline phosphatase (ALP) activity and calcium nodules formation was assessed. PDGF-BB stimulated the proliferation of cells with the maximum effect at 50ng/mL. The growth factor increased the expression of stem cell markers and SPARC; Col1a2 expression was decreased, whereas the expression of Col3a1 remain unchanged. Soluble collagen production, ALP activity and calcium nodules formation were also significantly decreased by PDGF-BB; LOX activity was significantly increased. PDGF-BB is a powerful promoter of cell proliferation and increases the expression of stem cell markers; inhibites collagen production and mineraliration but accelerates the maturation of collagen chains through increased LOX activity and SPARC expression."	"Active exercise on immobilization-induced contractured rat knees develops arthrogenic joint contracture with pathological changes. This study investigated the effects of treadmill walking during remobilization on range of motion (ROM) and histopathology in rat knee joints, which were immobilized for 3 wk in a flexed position. After fixator removal, rats were divided into a no-intervention (RM) group and a group forced to walk on a treadmill daily at 12 m/min for 60 min (WALK group). Passive knee extension ROMs were measured before (m-ROM) and after (a-ROM) knee flexor myotomy on the first and last day of a 7-day remobilization period, with m-ROM mainly reflecting myogenic factors and a-ROM reflecting arthrogenic factors. Knee joints were histologically analyzed and gene expression of inflammatory or fibrosis-related mediators in the posterior joint capsule were examined. m-ROM and a-ROM restrictions were established after immobilization. m-ROM significantly increased following the remobilization period both in RM and WALK groups compared with that of immobilized (IM) group. Conversely, a-ROM decreased following the remobilization period in both RM and WALK groups compared with that of IM group. Importantly, a-ROM was smaller in the WALK group than the RM group. Remobilization without intervention induced inflammatory and fibrotic reactions in the posterior joint capsule after 1 and 7 days. Treadmill walking promoted these reactions and also increased the expression of fibrosis-related TGF-β1 and collagen type I and III genes. While free movement after immobilization improved myogenic contracture, arthrogenic contracture worsened. Treadmill walking further aggravated arthrogenic contracture through amplified inflammatory and fibrotic reactions. Thus active exercise immediately after immobilization may not improve immobilization-induced joint contracture. NEW &amp; NOTEWORTHY In clinical practice, it is widely accepted that facilitation of joint movements is effective in improving immobilization-induced joint contracture. However, whether active exercises improve arthrogenic contracture is not known. In this study, we revealed that treadmill walking further promoted remobilization-induced progression of arthrogenic contracture. To our knowledge, this is the first study demonstrating no favorable effect of active exercise on immobilization-induced arthrogenic contracture."	"Loss of β-catenin in resident cardiac fibroblasts attenuates fibrosis induced by pressure overload in mice. Cardiac fibrosis is characterized by excessive extracellular matrix deposition that contributes to compromised cardiac function and potentially heart failure. Cardiac pressure overload resulting from trans-aortic constriction in mice leads to cardiac fibrosis and increased Wnt/β-catenin signaling in cardiac fibroblasts. Here, we conditionally induce β-catenin loss of function in resident cardiac fibroblasts using Tcf21 <sup>MerCreMer</sup> or in activated cardiac fibroblasts using periostin (Postn) <sup>MerCreMer</sup> . We show that β-catenin loss of function in cardiac fibroblasts after trans-aortic constriction significantly preserves cardiac function, and reduces interstitial fibrosis but does not alter the numbers of activated or differentiated cardiac fibroblasts in vivo. However, β-catenin is specifically required in resident cardiac fibroblasts for fibrotic excessive extracellular matrix gene expression and binds Col3a1 and Postn gene sequences in cultured cardiac fibroblasts after induction of Wnt signaling. Moreover, cardiomyocyte hypertrophy is blunted with cardiac fibroblast-specific loss of β-catenin after trans-aortic constriction in vivo. Thus, Wnt/β-catenin signaling in resident cardiac fibroblasts is required for excessive extracellular matrix gene expression and collagen deposition after trans-aortic constriction.Understanding the mechanisms causing cardiac fibrosis is key to prevention and therapy development of many heart diseases. Here, the authors show that Wnt/β-catenin signaling in resident cardiac fibroblasts is required for deposition of fibrotic extracellular matrix and the regulation of cardiomyocyte hypertrophy in a mouse model of heart fibrosis."	"Molecular mechanisms underlying gliomas and glioblastoma pathogenesis revealed by bioinformatics analysis of microarray data. The aim of this study was to identify key genes associated with gliomas and glioblastoma and to explore the related signaling pathways. Gene expression profiles of three glioma stem cell line samples, three normal astrocyte samples, three astrocyte overexpressing 4 iPSC-inducing and oncogenic factors (myc(T58A), OCT-4, p53DD, and H-Ras(G12V)) samples, three astrocyte overexpressing 7 iPSC-inducing and oncogenic factors (OCT4, H-Ras(G12V), myc(T58A), p53DD, cyclin D1, CDK4(RC24) and hTERT) samples and three glioblastoma cell line samples were downloaded from the ArrayExpress database (accession: E-MTAB-4771). The differentially expressed genes (DEGs) in gliomas and glioblastoma were identified using FDR and t tests, and protein-protein interaction (PPI) networks for these DEGs were constructed using the protein interaction network analysis. The GeneTrail2 1.5 tool was used to identify potentially enriched biological processes among the DEGs using gene ontology (GO) terms and to identify the related pathways using the Kyoto Encyclopedia of Genes and Genomes, Reactome and WikiPathways pathway database. In addition, crucial modules of the constructed PPI networks were identified using the PEWCC1 plug-in, and their topological properties were analyzed using NetworkAnalyzer, both available from Cytoscape. We also constructed microRNA-target gene regulatory network and transcription factor-target gene regulatory network for these DEGs were constructed using the miRNet and binding and expression target analysis. We identified 200 genes that could potentially be involved in the gliomas and glioblastoma. Among them, bioinformatics analysis identified 137 up-regulated and 63 down-regulated DEGs in gliomas and glioblastoma. The significant enriched pathway (PI3K-Akt) for up-regulated genes such as COL4A1, COL4A2, EGFR, FGFR1, LAPR6, MYC, PDGFA, SPP1 were selected as well as significant GO term (ear development) for up-regulated genes such as CELSR1, CHRNA9, DDR1, FGFR1, GLI2, LGR5, SOX2, TSHR were selected, while the significant enriched pathway (amebiasis) for down-regulated gene such as COL3A1, COL5A2, LAMA2 were selected as well as significant GO term (RNA polymerase II core promoter proximal region sequence-specific binding (5) such as MEIS2, MEOX2, NR2E1, PITX2, TFAP2B, ZFPM2 were selected. Importantly, MYC and SOX2 were hub proteins in the up-regulated PPI network, while MET and CDKN2A were hub proteins in the down-regulated PPI network. After network module analysis, MYC, FGFR1 and HOXA10 were selected as the up-regulated coexpressed genes in the gliomas and glioblastoma, while SH3GL3 and SNRPN were selected as the down-regulated coexpressed genes in the gliomas and glioblastoma. MicroRNA hsa-mir-22-3p had a regulatory effect on the most up DEGs, including VSNL1, while hsa-mir-103a-3p had a regulatory effect on the most down DEGs, including DAPK1. Transcription factor EZH2 had a regulatory effect on the both up and down DEGs, including CD9, CHI3L1, MEIS2 and NR2E1. The DEGs, such as MYC, FGFR1, CDKN2A, HOXA10 and MET, may be used for targeted diagnosis and treatment of gliomas and glioblastoma."	"Renal Metabolic Programming Is Linked to the Dynamic Regulation of a Leptin-Klf15 Axis and Akt/AMPKα Signaling in Male Offspring of Obese Dams. Childhood obesity is associated with renal diseases. Maternal obesity is a risk factor linked to increased adipocytokines and metabolic disorders in the offspring. Therefore, we studied the impact of maternal obesity on renal-intrinsic insulin and adipocytokine signaling and on renal function and structure. To induce maternal obesity, female mice were fed a high-fat diet (HFD) or a standard diet (SD; control group) prior to mating, during gestation, and throughout lactation. A third group of dams was fed HFD only during lactation (HFD-Lac). After weaning at postnatal day (P)21, offspring of all groups received SD. Clinically, HFD offspring were overweight and insulin resistant at P21. Although no metabolic changes were detected at P70, renal sodium excretion was reduced by 40%, and renal matrix deposition increased in the HFD group. Mechanistically, two stages were differentiated. In the early stage (P21), compared with the control group, HFD showed threefold increased white adipose tissue, impaired glucose tolerance, hyperleptinemia, and hyperinsulinemia. Renal leptin/Stat3-signaling was activated. In contrast, the Akt/ AMPKα cascade and Krüppel-like factor 15 expression were decreased. In the late stage (P70), although no metabolic differences were detected in HFD when compared with the control group, leptin/Stat3-signaling was reduced, and Akt/AMPKα was activated in the kidneys. This effect was linked to an increase of proliferative (cyclinD1/D2) and profibrotic (ctgf/collagen IIIα1) markers, similar to leptin-deficient mice. HFD-Lac mice exhibited metabolic changes at P21 similar to HFD, but no other persistent changes. This study shows a link between maternal obesity and metabolic programming of renal structure and function and intrinsic-renal Stat3/Akt/AMPKα signaling in the offspring."	"Prediction of pathological response to neoadjuvant treatment in rectal cancer with a two-protein immunohistochemical score derived from stromal gene-profiling. Preoperative chemoradiotherapy followed by surgical mesorectal resection is the standard of care for locally advanced rectal carcinomas. Yet, predicting that patients will respond to treatment remains an unmet clinical challenge. Using laser-capture microdissection we isolated RNA from stroma and tumour glands from prospective pre-treatment samples (n = 15). Transcriptomic profiles were obtained hybridising PrimeView Affymetrix arrays. We modelled a carcinoma-associated fibroblast-specific genes filtering data using GSE39396. The analysis of differentially expressed genes of stroma/tumour glands from responder and non-responder patients shows that most changes were associated with the stromal compartment; codifying mainly for extracellular matrix and ribosomal components. We built a carcinoma-associated fibroblast (CAF) specific classifier with genes showing changes in expression according to the tumour regression grade (FN1, COL3A1, COL1A1, MMP2 and IGFBP5). We assessed these five genes at the protein level by means of immunohistochemical staining in a patient's cohort (n = 38). For predictive purposes we used a leave-one-out cross-validated model with a positive predictive value (PPV) of 83.3%. Random Forest identified FN1 and COL3A1 as the best predictors. Rebuilding the leave-one-out cross-validated regression model improved the classification performance with a PPV of 93.3%. An independent cohort was used for classifier validation (n = 36), achieving a PPV of 88.2%. In a multivariate analysis, the two-protein classifier proved to be the only independent predictor of response. We developed a two-protein immunohistochemical classifier that performs well at predicting the non-response to neoadjuvant treatment in rectal cancer."	"Identification of genes associated with primary open-angle glaucoma by bioinformatics approach. This study aimed to identify associated genes with primary open-angle glaucoma (POAG) and explore the potentially modular mechanism underlying POAG. We downloaded gene expression profiles data GSE27276 from gene expression omnibus and identified differentially expressed genes between POAG patients and normal controls. Then, gene ontology analysis and kyoto encyclopedia of genes and genomes pathway enrichment were performed to predict the DEGs functions, followed with the construction, centrality analysis, and module mining of protein-protein interaction network. A total of 552 DEGs including 249 up-regulated and 303 down-regulated genes were identified. The up-regulated DEGs were significantly involved in cell adhesion molecule, while the down-regulated DEGs were significantly involved in complement and coagulation cascades. Centrality analysis screened out 20 genes, among which COL4A4, COL3A1, COL1A2, ITGB5, COL5A2, and COL5A1 were shared in ECM-receptor interaction and focal adhesion pathways. In the sub-network, COL5A2, COL8A2, and COL5A1 were significantly enriched in biological function of eye morphogenesis and eye development, while LAMA5, COL3A1, COL1A2, and COL5A1 were significantly enriched in vasculature development and blood vessel development. Six genes, including COL4A4, COL3A1, COL1A2, ITGB5, COL5A2, and COL5A1, ECM-receptor interaction and focal adhesion pathway, are potentially involved in the pathogenesis of POAG via participating in pathways of ECM-receptor interaction and focal adhesion."	"Uncovering the effect of low-frequency static magnetic field on tendon-derived cells: from mechanosensing to tenogenesis. Magnetotherapy has been receiving increased attention as an attractive strategy for modulating cell physiology directly at the site of injury, thereby providing the medical community with a safe and non-invasive therapy. Yet, how magnetic field influences tendon cells both at the cellular and molecular levels remains unclear. Thus, the influence of a low-frequency static magnetic field (2 Hz, 350 mT) on human tendon-derived cells was studied using different exposure times (4 and 8 h; short-term studies) and different regimens of exposure to an 8h-period of magnetic stimulation (continuous, every 24 h or every 48 h; long-term studies). Herein, 8 h stimulation in short-term studies significantly upregulated the expression of tendon-associated genes SCX, COL1A1, TNC and DCN (p &lt; 0.05) and altered intracellular Ca<sup>2+</sup> levels (p &lt; 0.05). Additionally, every 24 h regimen of stimulation significantly upregulated COL1A1, COL3A1 and TNC at day 14 in comparison to control (p &lt; 0.05), whereas continuous exposure differentially regulated the release of the immunomodulatory cytokines IL-1β and IL-10 (p &lt; 0.001) but only at day 7 in comparison to controls. Altogether, these results provide new insights on how low-frequency static magnetic field fine-tune the behaviour of tendon cells according to the magnetic settings used, which we foresee to represent an interesting candidate to guide tendon regeneration."	"Discovery of Human-Similar Gene Fusions in Canine Cancers. Canine cancers represent a tremendous natural resource due to their incidence and striking similarities to human cancers, sharing similar clinical and pathologic features as well as oncogenic events, including identical somatic mutations. Considering the importance of gene fusions as driver alterations, we explored their relevance in canine cancers. We focused on three distinct human-comparable canine cancers representing different tissues and embryonic origins. Through RNA-Seq, we discovered similar gene fusions as those found in their human counterparts: IGK-CCND3 in B-cell lymphoma, MPB-BRAF in glioma, and COL3A1-PDGFB in dermatofibrosarcoma protuberans-like. We showed not only similar partner genes but also identical breakpoints leading to oncogene overexpression. This study demonstrates similar gene fusion partners and mechanisms in human-dog corresponding tumors and allows for selection of targeted therapies in preclinical and clinical trials with pet dogs prior to human trials, within the framework of personalized medicine. Cancer Res; 77(21); 5721-7. ©2017 AACR."	"Methionine-supplemented diet affects the expression of cardiovascular disease-related genes and increases inflammatory cytokines in mice heart and liver. Some important environmental factors that influence the development of cardiovascular diseases (CVD) include tobacco, excess alcohol, and unhealthy diet. Methionine obtained from the diet participates in the synthesis of DNA, proteins, lipids and affects homocysteine levels, which is associated with the elevated risk for CVD development. Therefore, the aim of this study was to investigate the manner in which dietary methionine might affect cellular mechanisms underlying CVD occurrence. Swiss albino mice were fed either control (0.3% DL-methionine), methionine-supplemented (2% DL-methionine), or a methionine-deprived diet (0% DL-methionine) over a 10-week period. The parameters measured included plasma homocysteine concentrations, oxidative stress by reduced glutathione (GSH)/oxidized glutathione (GSSG) ratio, levels of inflammatory cytokines IL-1ß, TNF-α, and IL-6, as well as expression of genes associated with CVD. The levels of apolipoprotein A5 (APOA5), a regulator of plasma triglycerides, were measured. The methionine-supplemented diet increased oxidative stress by lowering the GSH/GSSG ratio in heart tissues and decreased expression of the genes Apob, Ctgf, Serpinb2, Spp1, Il1b, and Sell, but elevated expression of Thbs4, Tgfb2, Ccr1, and Vegfa. Methionine-deprived diet reduced expression of Col3a1, Cdh5, Fabp3, Bax, and Hbegf and increased expression of Sell, Ccl5, Itga2, Birc3, Msr1, Bcl2a1a, Il1r2, and Selp. Methionine-deprived diet exerted pro-inflammatory consequences as evidenced by elevated levels of cytokines IL-1ß, TNF-α, and IL-6 noted in liver. Methionine-supplemented diet increased hepatic IL-6 and cardiac TNF-α. Both methionine supplementation and deprivation lowered hepatic levels of APOA5. In conclusion, data demonstrated that a methionine-supplemented diet modulated important biological processes associated with high risk of CVD development."	"Accumulation of advanced-glycation end products (AGEs) accelerates arthrogenic joint contracture in immobilized rat knee. Joint mobility decreases in the elderly and in diabetics, this process is thought to be caused by accumulation of advanced-glycation end products (AGEs). Here, we aimed to elucidate the role of AGEs in joint contracture formation in rat knees. Rats were injected with ribose or saline into the knees twice weekly for 8 weeks. Pentosidine (AGE) levels were measured in the knee-joint tissues. After serial injections, rats were subjected to unilateral knee-joint immobilization in a flexion position for various periods. At day 21, the passive knee ranges of motions (ROMs) were measured. Knee joint histopathology were assessed, and the expression of fibrotic genes in the posterior joint capsules was examined using real-time PCR. Ribose injection induced a 7.0-fold increase in pentosidine levels relative to saline injection. Joint immobilization resulted in equal myogenic ROM restriction in both groups. Arthrogenic ROM restriction was greater with ribose injection in the immobilized joints (p &lt; 0.05), but was not affected in nonimmobilized joints. Type-I (COL1A1) and type-III (COL3A1) collagen gene expression increased significantly in immobilized joints relative to nonimmobilized joints in the ribose group, but was not affected in the saline group. Ribose injection increased COL1A1 expression slightly and COL3A1 expression significantly in immobilized joints. Histologically, inflammatory changes appeared at day 3 of immobilization and peaked at day 7. These responses trended to be more severe and prolonged in the ribose group than in the saline group. Our data provide evidence for a causal relationship between AGEs and joint contracture formation following immobilization. © 2017 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:854-863, 2018."	"Asporin-deficient mice have tougher skin and altered skin glycosaminoglycan content and structure. The main structural component of connective tissues is fibrillar, cross-linked collagen whose fibrillogenesis can be modulated by Small Leucine-Rich Proteins/Proteoglycans (SLRPs). Not all SLRPs' effects on collagen and extracellular matrix in vivo have been elucidated; one of the less investigated SLRPs is asporin. Here we describe the successful generation of an Aspn-/- mouse model and the investigation of the Aspn-/- skin phenotype. Functionally, Aspn-/- mice had an increased skin mechanical toughness, although there were no structural changes present on histology or immunohistochemistry. Electron microscopy analyses showed 7% thinner collagen fibrils in Aspn-/- mice (not statistically significant). Several matrix genes were upregulated, including collagens (Col1a1, Col1a2, Col3a1), matrix metalloproteinases (Mmp2, Mmp3) and lysyl oxidases (Lox, Loxl2), while lysyl hydroxylase (Plod2) was downregulated. Intriguingly no differences were observed in collagen protein content or in collagen cross-linking-related lysine oxidation or hydroxylation. The glycosaminoglycan content and structure in Aspn-/- skin was profoundly altered: chondroitin/dermatan sulfate was more than doubled and had an altered composition, while heparan sulfate was halved and had a decreased sulfation. Also, decorin and biglycan were doubled in Aspn-/- skin. Overall, asporin deficiency changes skin glycosaminoglycan composition, and decorin and biglycan content, which may explain the changes in skin mechanical properties."	"LAMP3 promotes the invasion of osteosarcoma cells via SPP1 signaling. Osteosarcoma is the most common type of primary bone cancer in children and young adults. The prognosis of osteosarcoma is very poor when it is diagnosed with metastasis. Lysosomal‑associated membrane protein 3 (LAMP3) is a tumor‑specific protein induced by hypoxia, which stimulates invasion and metastasis of various cancer cells via hypoxia‑inducible factor (HIF). A previous study from our group has reported that expression of LAMP3 is significantly increased in lung metastatic osteosarcoma compared with primary osteosarcoma using microarray analysis, suggesting that LAMP3 may be involved in metastatic osteosarcoma. The present study therefore aimed to investigate the role of LAMP3 in osteosarcoma metastasis. Knockdown of LAMP3 decreased the invasion of two osteosarcoma cell lines in vitro. Furthermore, knockdown of LAMP3 increased the expression of secreted phosphoprotein 1 (SPP1), cadherin 1, and keratin 19, while it decreased the expression of matrix metallopeptidase 2, collagen type III α 1, twist family bHLH transcription factor 1 and cadherin 2. Concurrent knockdown of SPP1 and LAMP3 attenuated the changes in gene expression profile induced by LAMP3 knockdown alone. Gene ontology and KEGG analysis demonstrated that SPP1 was involved in cell adhesion, focal adhesion, and extracellular matrix‑receptor interaction. In conclusion, the present results suggest that LAMP3 may be involved in the invasion and metastasis of osteosarcoma via regulating signaling downstream of SPP1. Thus, LAMP3/SPP1 signaling may serve as a potential target in the future to prevent osteosarcoma metastasis."	"Time-series expression profile analysis of fracture healing in young and old mice. Bone fracture healing is a complex process, which is associated with several factors, including age and osteoporosis. Certain genes and biological processes that may contribute to fracture healing, have been identified following developments in systems biology and molecular biology technologies, which may benefit the treatment of bone fractures. The present study identified key genes, which may be important in fracture healing through bioinformatics analysis of gene microarray datasets from the Gene Expression Omnibus. Gene clusters, which were consistently up/downregulated through time following a fracture in young (6‑week‑old) mice and old (8‑month‑old retired breeders) mice were obtained via soft clustering of differentially expressed genes (DEGs) between samples at 1 and 3 days, 1 and 5 days, and 3 and 5 days post‑fracture in the two age groups, based on the Mfuzz package of R. Functional enrichment analysis of gene clusters using the Database for Annotation, Visualization and Integrated Discovery indicated that biological processes and pathways, including those associated with bone development, skeletal system development, amino sugar and nucleotide sugar metabolism, were significantly enriched in these up/downregulated genes. Of note, a total of 207 overlapped consistently upregulated genes were obtained between the two age groups, whereas no overlap was identified between the two lists of consistently downregulated genes. The overlapped genes were found to be associated with the biological processes of blood vessel development, vasculature development and skeletal system development, compared with all genes in the clusters. In addition, certain genes, including epidermal growth factor‑like domain multiple 6 (EGFL6), kazal‑type serine peptidase inhibitor domain 1 (KAZALD1), olfactomedin 2B (OLFM2B), collagen type III α1 (COL3A1), collagen type II α1 (COL2A1), von Willebrand factor A domain‑containing 1 (VWA1), elastin microfibril interfacer 1 (EMILIN1) and aggrecan (ACAN), of the extracellular matrix organization, a process performed at the cellular level and resulting in the assembly and arrangement of constituent parts, were confirmed to be associated with fracture healing via reverse transcription‑quantitative polymerase chain reaction analysis. The present study identified certain genes and biological processes/pathways, which may be associated with fracture healing and may assist in fundamental investigations and treatment in the future."	"Leukocytic Toll-Like Receptor 2 Deficiency Preserves Cardiac Function And Reduces Fibrosis In Sustained Pressure Overload. An involement of Toll-like receptor 2 (TLR2) has been established in cardiac dysfunction after acute myocardial infarction; however, its role in chronic pressure overload is unclear. We sought to evaluate the role of TLR2 in cardiac hypertrophy, fibrosis and dysfunction in sustained pressure overload. We induced pressure overload via transverse aortic constriction (TAC) in TLR2<sup>-/-</sup> and wild type (WT) mice, and followed temporal changes over 8 weeks. Despite similar increases in heart weight, left ventricular (LV) ejection fraction (EF) and diastolic function (mitral E/A ratio) were preserved in TLR2<sup>-/-</sup> mice but impaired in WT mice following TAC. TAC produced less LV fibrosis in TLR2<sup>-/-</sup> mice associated with lower mRNA levels of collagen genes (Col1a1 and Col3a1) and lower protein level of TGFbeta1, compared to WT mice. Following TAC, the influx of macrophages and CD3 T cells into LV was similar between TLR2<sup>-/-</sup> and WT mice, whereas levels of cyto/chemokines were lower in the heart and plasma in TLR2<sup>-/-</sup> mice. TLR2<sup>-/-</sup> bone marrow-derived cells protected against LVEF decline and fibrosis following TAC. Our findings show that leukocytic TLR2 deficiency protects against LV dysfunction and fibrosis probably via a reduction in inflammatory signaling in sustained pressure overload."	"Paracrine Potential of the Human Adipose Tissue-Derived Stem Cells to Modulate Balance between Matrix Metalloproteinases and Their Inhibitors in the Osteoarthritic Cartilage In Vitro. Adipose tissue represents an abundant source of stem cells. Along with anti-inflammatory effects, ASC secrete various factors that may modulate metabolism of extracellular matrix in osteoarthritic (OA) cartilage, suggesting that the presence of ASC could be advantageous for OA cartilage due to the recovery of homeostasis between matrix metalloproteinases (MMPs) and their tissue inhibitors of metalloproteinases (TIMPs). To evaluate these effects, cartilage explants (CE) were cocultured with ASC for 3 and 7 days under stimulation with or without IL-1β. The pattern of gene expression in CE was modified by ASC, including the upregulation of COL1A1 and COL3A1 and the downregulation of MMP13 and COL10A1. The production of MMP-1, MMP-3, and MMP-13 by ASC was not significant; moreover, cocultures with ASC reduced MMP-13 production in CE. In conclusion, active production of TIMP-1, TIMP-2, TIMP-3, IL-6, IL-8, and gelatinases MMP-2 and MMP-9 by ASC may be involved in the extracellular matrix remodelling, as indicated by the altered expression of collagens, the downregulated production of MMP-13, and the reduced chondrocyte apoptosis in the cocultured CE. These data suggest that ASC modulated homeostasis of MMPs/TIMPs in degenerated OA cartilage in vitro and might be favourable in case of the intra-articular application of ASC therapy for the treatment of OA."	"(-)-Epigallocatechin-3-gallate and atorvastatin treatment down-regulates liver fibrosis-related genes in non-alcoholic fatty liver disease. Non-alcoholic fatty liver disease (NAFLD) and associated advanced liver diseases have become prevalent conditions in many countries and are associated with increased mortality. Gene expression profiles in NAFLD have been examined recently but changes in expression elicited by chemical compound treatments have not been investigated. Since (-)-Epigallocatechin-3-gallate (EGCG) and atorvastatin (ATST) exhibit similar efficacy in NAFLD models, we reasoned that some common key genes might alter after treatment of EGCG and ATST. Accordingly, we applied integrated bioinformatics analyses of RNA microarray data from EGCG and ATST treatment groups compared to controls in a NAFLD phenotypic mouse model. Using differential expression (DE) analysis, Kyoto Encyclopaedia of Genes and Genomes (KEGG) pathway analysis, Gene Set Enrichment Analysis (GSEA) and ClueGO enrichment, shared EGCG and ATST down-regulated pathways were identified which included extracellular matrix (ECM)-receptor interaction and protein processing in endoplasmic reticulum (ER). To refine key genes associated with liver fibrosis, a human NAFLD signature derived from patients of different fibrosis stages was analyzed. The results showed that fibrosis-related genes Col1a1, Col1a2, Col3a1 and Col6a3 were significantly down-regulated. These four genes were further validated as down-regulated in an independent mouse NAFLD dataset. We conclude that EGCG and ATST treatment results in the significant down-regulation of genes related to liver fibrosis."	"Olodaterol shows anti-fibrotic efficacy in in vitro and in vivo models of pulmonary fibrosis. Idiopathic pulmonary fibrosis (IPF) is a fatal respiratory disease characterized by excessive fibroblast activation ultimately leading to scarring of the lungs. Although, the activation of β2 -adrenoceptors (β2 -AR) has been shown to inhibit pro-fibrotic events primarily in cell lines, the role of β2 -adrenoceptor agonists has not yet been fully characterized. The aim of our study was to explore the anti-fibrotic activity of the long-acting β2 -adrenoceptor agonist olodaterol in primary human lung fibroblasts (HLF) and in murine models of pulmonary fibrosis. We assessed the activity of olodaterol to inhibit various pro-fibrotic mechanisms, induced by different pro-fibrotic mediators, in primary HLF from control donors and patients with IPF (IPF-LF). The in vivo anti-fibrotic activity of olodaterol, given once daily by inhalation in either a preventive or therapeutic treatment regimen, was explored in murine models of lung fibrosis induced by either bleomycin or the overexpression of TGF-β1. In both HLF and IPF-LF, olodaterol attenuated TGF-β-induced expression of α-smooth muscle actin, fibronectin and endothelin-1 (ET-1), FGF- and PDGF-induced motility and proliferation and TGF-β/ET-1-induced contraction. In vivo olodaterol significantly attenuated the bleomycin-induced increase in lung weight, reduced bronchoalveolar lavage cell counts and inhibited release of pro-fibrotic mediators (TGF-ß, MMP-9 and tissue inhibitor of metalloproteinase-1). Forced vital capacity was increased only with the preventive treatment regimen. In the TGF-β-overexpressing model, olodaterol additionally reduced the Col3A1 mRNA expression. Olodaterol showed anti-fibrotic properties in primary HLF from control and IPF patients and in murine models of lung fibrosis."	"Heat shock protein 47 effects on hepatic stellate cell-associated receptors in hepatic fibrosis of Schistosoma japonicum-infected mice. The study aimed to explore the regulation of heat shock protein 47 (HSP47) on expressions of receptors associated with hepatic stellate cell (HSC) in liver fibrosis mouse models induced by Schistosoma japonicum (S. japonicum). Mouse fibroblasts (NIH/3T3) were transfected with HSP47 shRNA plasmid by lipofectamine transfection, and experimental fibrosis in HSCs was studied in S. japonicum mouse models treated with HSP47 shRNA in vivo. HSP47 expression was assessed using Western blot and real-time PCR. Flow cytometry was adopted to determine the expression of cell membrane receptors. HSP47-shRNA could markedly down-regulate the expression of collagen (Col1a1 and Col3a1). The expressions of HSP47, endothelin receptor A (ETAR) and endothelin receptor B (ETBR) significantly increased in the liver tissue of infected mice. However, the expressions of ETAR and HSP47 and ETBR remarkably decreased after the administration of HSP47 shRNA in vitro and in vivo. ETAR and ETBR levels were found to be positively correlated with HSP47 expression. HSP47 might exert influence on liver fibrosis via the regulation of ETAR and ETBR."	"Targeting lysyl oxidase reduces peritoneal fibrosis. Abdominal surgery and disease cause persistent abdominal adhesions, pelvic pain, infertility and occasionally, bowel obstruction. Current treatments are ineffective and the aetiology is unclear, although excessive collagen deposition is a consistent feature. Lysyl oxidase (Lox) is a key enzyme required for crosslinking and deposition of insoluble collagen, so we investigated whether targeting Lox might be an approach to reduce abdominal adhesions. Female C57Bl/6 mice were treated intraperitoneally with multiwalled carbon nanotubes (NT) to induce fibrosis, together with chemical (ß-aminoproprionitrile-BAPN) or miRNA Lox inhibitors, progesterone or dexamethasone. Fibrotic lesions on the diaphragm, and expression of fibrosis-related genes in abdominal wall peritoneal mesothelial cells (PMC) were measured. Effects of BAPN and dexamethasone on collagen fibre alignment were observed by TEM. Isolated PMC were cultured with interleukin-1 alpha (IL-1α) and progesterone to determine effects on Lox mRNA in vitro. NT-induced fibrosis and collagen deposition on the diaphragm was ameliorated by BAPN, Lox miRNA, or steroids. BAPN and dexamethasone disrupted collagen fibres. NT increased PMC Lox, Col1a1, Col3a1 and Bmp1 mRNA, which was inhibited by steroids. Progesterone significantly inhibited IL-1α induced Lox expression by PMC in vitro. Our results provide proof-of-concept that targeting peritoneal Lox could be an effective approach in ameliorating fibrosis and adhesion development."	"Acute and chronic effects of exercise on mRNA expression in the skeletal muscle of two mouse models of peripheral artery disease. Endurance exercise improves walking performance in patients with peripheral artery disease (PAD), which is characterized by skeletal muscle dysfunction caused by lower extremity ischemia. Although transcriptional analyses of exercise-induced changes in normal animals and healthy volunteers have been reported, no detailed study has explored exercise-induced alterations in gene expression in PAD animal models. Here, we determined the acute and chronic effects of exercise on mRNA expression in the skeletal muscles of two mouse models of PAD. Three particular gene categories were investigated: known exercise-responsive genes (Pgc1a, Il6, Nr4a1, Nr4a2, and Nr4a3); myogenic and muscle regeneration-related genes (Myf5, Myogenin, Myomaker, and Myh3); and Gpr56 and its ligand Col3a1. PAD was induced by bilateral femoral artery ligation in normal C57BL/6 and diabetic KK-Ay mice. From 1 week after surgery, repetitive twice-weekly 30-min treadmill endurance exercise sessions were applied. Altered mRNA expression in the soleus muscles was measured in both the acute and chronic phases. In the acute phase, transcript levels of exercise-inducible genes showed significant increases in both C57BL/6 and diabetic KK-Ay PAD mice; levels of regeneration-related genes showed little alteration, and those of Gpr56 increased immediately and significantly after exercise in both models. In the chronic phase, transcript levels of Pgc1a, Myf5, Myogenin, Myomaker, Myh3, Gpr56, and Col3a1 were upregulated significantly in sedentary C57BL/6 PAD mice compared with that in sham-operated mice. Exercise training inhibited the upregulation of Col3a1, Myf5, and Myogenin significantly. In KK-Ay PAD mice, only Gpr56 mRNA levels increased significantly compared with those in sham-operated mice. RNA sequence analysis revealed 33 and 166 differentially upregulated, and 363 and 99 downregulated, genes after exercise training in C57BL/6 PAD and KK-Ay PAD mice, respectively. In summary, we detected significant alterations of skeletal muscle genes after exercise in PAD mouse models and characterized their expression patterns."	"Biallelic COL3A1 mutations result in a clinical spectrum of specific structural brain anomalies and connective tissue abnormalities. Vascular Ehlers-Danlos syndrome (type IV) is an autosomal dominant disorder caused by heterozygous variants of COL3A1. We identified biallelic COL3A1 variants in two unrelated families. In a 3-year-old female with developmental delay the nonsense variant c.1282C&gt;T, p.(Arg428*) was detected in combination the c.2057delC, p.(Pro686Leufs*105) frame shift variant. Both compound heterozygous variants were novel. This patient was born with bilateral clubfoot, joint laxity, and dysmorphic facial features. At the age of 2 years she developed an aneurysmal brain hemorrhage. Cerebral MRI showed a peculiar pattern of profound cerebral abnormalities including bilateral frontoparietal polymicrogyria of the cobblestone variant. In the second family, the two affected siblings were homozygous for the missense variant c.145C&lt;G, p.(Pro49Ala) of COL3A1 and showed cobblestone-like cortical malformation, cerebellar cysts, and white matter abnormalities, developmental delay, and seizures. To date, three further families have been reported with biallelic variants of this gene and specific structural brain anomalies in all, and a severe Ehlers-Danlos syndrome phenotype in some. Bilateral frontoparietal polymicrogyria of the cobblestone variant, cerebellar microcysts, and abnormalities of the white matter characterize this brain phenotype and resemble neurological manifestations in individuals with autosomal recessive mutations in GPR56, which serves as a ligand of COL3A1. In concordance with the findings in knock out mice, the collagen III protein plays a role in the regulation of cortical development in addition to its well-known function in connective tissue formation."	"Effects of ethyl-α-d-glucoside on human dermal fibroblasts. Ethyl α-d-glucoside (α-EG) is a glycoside present in sake, Japanese rice wine. Previous studies have reported that α-EG suppresses skin roughness after ultraviolet B irradiation, transepidermal water loss, and hepatic function disorder, and has a skin moisturizing effect. In this study, 0.48 μM of α-EG was found to increase the proliferation of normal human dermal fibroblasts (NHDF) by 121.0%, and the amount of collagen I produced by NHDF increased by 159.6% at an α-EG concentration of 0.048 μM, compared to those in cells cultured without α-EG. In NHDF cultured in α-EG-supplemented medium, the expression of fibroblast growth factor I and VII mRNA increased by 148.8 and 153.1%, at an α-EG concentration of 4.8 and 0.048 μM, respectively, as measured by a quantitative reverse transcription-polymerase chain reaction. Transcript levels of type I collagen genes, COL1A1 and COL1A2, increased by 152.4 and 129.7%, respectively, and that of a type III collagen gene, COL3A1, increased by 131.8% at an α-EG concentration of 0.48 μM. These findings supported the possibility that α-EG was involved in the maintenance and improvement of skin homeostasis and moisturizing functions."	"The collαgen III fibril has a &quot;flexi-rod&quot; structure of flexible sequences interspersed with rigid bioactive domains including two with hemostatic roles. Collagen III is critical to the integrity of blood vessels and distensible organs, and in hemostasis. Examination of the human collagen III interactome reveals a nearly identical structural arrangement and charge distribution pattern as for collagen I, with cell interaction domains, fibrillogenesis and enzyme cleavage domains, several major ligand-binding regions, and intermolecular crosslink sites at the same sites. These similarities allow heterotypic fibril formation with, and substitution by, collagen I in embryonic development and wound healing. The collagen III fibril assumes a &quot;flexi-rod&quot; structure with flexible zones interspersed with rod-like domains, which is consistent with the molecule's prominence in young, pliable tissues and distensible organs. Collagen III has two major hemostasis domains, with binding motifs for von Willebrand factor, α2β1 integrin, platelet binding octapeptide and glycoprotein VI, consistent with the bleeding tendency observed with COL3A1 disease-causing sequence variants."	"Effect of platelet reach plasma on fibroblast primary culture: gene expression evaluation. To correct skin imperfections, aesthetic medicine today makes use of injectable dermal fillers that allow filling skin by increasing the volume of soft tissue. Currently, there are many fillers usable for their excellent biocompatibility and low allergic reactions that ensure good results and good compliance. Among these, the most widely used filler is Human Plasma, obtained by centrifugation from patient blood and processed through cycles of centrifugation and heating, until it becomes a gel. In this work, we evaluated the effect of the Plasma on fibroblasts behavior in terms of cell viability, survival, growth and collagen production. To this aim, the expression levels of some adhesion and traction-resistance related genes (COL11A1, ELN, GDF6, IGF1, DSP, ELANE, HAS1, HYAL1, COL1A1 and COL3A1) were analyzed using real time Reverse Transcription-Polymerase Chain Reaction (real time RT-PCR). All genes, except for COL1A1, COL3A1 and COL11A1, were up-regulated after 24 h of treatment. Altogether, our results point out the good potential of Plasma. In particular, we appreciated an up-regulation in some of the most important genes involved in bio-revitalization, such as elastin and hyaluronic acid."	"Genetic effects of Vicryl® on fibroblast primary culture. Vicryl® (polyglactin 910) is an absorbable, synthetic, usually braided suture, indicated for soft tissue approximation and ligation. Vicryl® has a special coating for minimizing friction, easing passage through tissue and easy knot tie down. It is synthetic for minimal tissue reaction. Fibroblasts are the main cells of connective tissue that synthesize extracellular matrix. In this work, we tried to judge the action of Vicryl® on fibroblasts behaviour. We evaluated the expression levels of some adhesion and traction-resistance related genes (ELN, DSP, FN1, FBN1, ITGB1, ITGA1, ITGA5, ITGA2, COL1A1, COL3A1) by using real time Reverse Transcription-Polymerase Chain Reaction (real time RT-PCR). All but 2 genes resulted up-regulated after 48 h of treatment. Our preliminary results point out the potential of Vicryl® as a biocompatible and regenerative tool in medicine."	"Genetic effects of BIOPAD® on fibroblast primary culture. BIOPAD® is an ivory-white soft sponge, made exclusively of lyophilized type I native heterologous collagen extracted from horse flexor tendon, gelatine free, that keeps its native structure specific to the body’s skin tissue. BIOPAD® is an active dressing, playing an active role in all stages of wound healing process, stimulating granulation tissue growth and enhancing regeneration tissues. It ensures balance between absorption and humidity at wound surface, gaseous exchange of soft tissues during healing process, barrier to prevent bacterial infections and it is completely non-adherent. The use of BIOPAD® is painless for the patient and does not require removal or change of dressing. In this work, we evaluated the effect of BIOPAD® on fibroblasts behavior in term of cell viability, survival and growth and collagen production. The expression levels of some adhesion and traction-resistance related genes (ELN, DSP, FN1, FBN1, ITGB1, ITGA1, ITGA5, ITGA2, COL1A1, COL3A1) were analyzed using real time Reverse Transcription-Polymerase Chain Reaction (real time RT-PCR). All genes, except for ELN, DSP, ITGB1 and ITGA1 are up-regulated after 48 h of treatment. Altogether, our results point out the good potential of BIOPAD® as a biocompatible and regenerative tool in medicine."	"Breast Regression Protein-39/Chitinase 3-Like 1 Promotes Renal Fibrosis after Kidney Injury via Activation of Myofibroblasts. The normal response to kidney injury includes a robust inflammatory infiltrate of PMNs and macrophages. We previously showed that the small secreted protein breast regression protein-39 (BRP-39), also known as chitinase 3-like 1 (CHI3L1) and encoded by the Chi3l1 gene, is expressed at high levels by macrophages during the early stages of kidney repair and promotes tubular cell survival via IL-13 receptor α2 (IL13Rα2)-mediated signaling. Here, we investigated the role of BRP-39 in profibrotic responses after AKI. In wild-type mice, failure to resolve tubular injury after unilateral ischemia-reperfusion injury (U-IRI) led to sustained low-level Chi3l1 mRNA expression by renal cells and promoted macrophage persistence and severe interstitial fibrosis. Analysis of macrophages isolated from wild-type kidneys 14 days after U-IRI revealed high-level expression of the profibrotic BRP-39 receptor Ptgdr2/Crth2 and expression of the profibrotic markers Lgals3, Pdgfb, Egf, and Tgfb In comparison, injured kidneys from mice lacking BRP-39 had significantly fewer macrophages, reduced expression of profibrotic growth factors, and decreased accumulation of extracellular matrix. BRP-39 depletion did not affect myofibroblast accumulation but did attenuate myofibroblast expression of Col1a1, Col3a1, and Fn1 Together, these results identify BRP-39 as an important activator of macrophage-myofibroblast crosstalk and profibrotic signaling in the setting of maladaptive kidney repair."	"Sustained hyperosmolarity increses TGF-ß1 and Egr-1 expression in the rat renal medulla. Although TGF-ß and the transcription factor Egr-1 play an important role in both kidney fibrosis and in response to acute changes of renal medullary osmolarity, their role under sustained hypo- or hyperosmolar conditions has not been elucidated. We investigated the effects of chronic hypertonicity and hypotonicity on the renal medullary TGF-ß and Egr-1 expression. Male adult Sprague Dawley rats (n = 6/group) were treated with 15 mg/day furosemide, or the rats were water restricted to 15 ml/200 g body weight per day. Control rats had free access to water and rodent chow. Kidneys were harvested after 5 days of treament. In cultured inner medullary collecting duct (IMCD) cells, osmolarity was increased from 330 mOsm to 900 mOsm over 6 days. Analyses were performed at 330, 600 and 900 mOsm. Urine osmolarity has not changed due to furosemide treatment but increased 2-fold after water restriction (p &lt; 0.05). Gene expression of TGF-ß and Egr-1 increased by 1.9-fold and 7-fold in the hypertonic medulla, respectively (p &lt; 0.05), accompanied by 6-fold and 2-fold increased c-Fos and TIMP-1 expression, respectively (p &lt; 0.05) and positive immunostaining for TGF-ß and Egr-1 (p &lt; 0.05). Similarly, hyperosmolarity led to overexpression of TGF-ß and Egr-1 mRNA in IMCD cells (2.5-fold and 3.5-fold increase from 330 to 900 mOsm, respectively (p &lt; 0.05)) accompanied by significant c-Fos and c-Jun overexpressions (p &lt; 0.01), and increased Col3a1 and Col4a1 mRNA expression. We conclude that both TGF-ß and Egr-1 are upregulated by sustained hyperosmolarity in the rat renal medulla, and it favors the expression of extracellular matrix components."	"Interstitial fluid flow-induced growth potential and hyaluronan synthesis of fibroblasts in a fibroblast-populated stretched collagen gel culture. Tensioned collagen gels with dermal fibroblasts (DFs) as a dermis model are usually utilized in a static culture (SC) that lacks medium flowing. To make the model closer to its in vivo state, we created a device to perfuse the model with media flowing at a physiological velocity and examined the effects of medium flow (MF) on the cultures. We constructed a medium perfusion device for human DF-embedded stretched collagen gels (human dermis model), exposed the model to media that flows upwardly at ~1mL/day, and examined water retention of the gels, cells' growth ability, metabolic activity, expression profiles of nine extracellular matrix (ECM)-related genes. The obtained data were compared with those from the model in SC. MF increases the gels' water retention and cells' growth potential but had little effect on their metabolic activities. MF robustly enhanced hyaluronan synthase 2 (HAS2) and matrix metalloprotease 1 (MMP1) gene expressions but not of the other genes (MMP2, HYAL1, HYAL2, HYAL3, COL1A1, COL3A1, and CD44). MF significantly increased the amounts of cellular hyaluronan and adenosine triphosphate. The MF at a physiological speed significantly influences the nature of ECMs and their resident fibroblasts and remodels ECMs by regulating hyaluronan metabolism. Fibroblasts in tensioned collagen gels altered their phenotypes in a MF rate-dependent manner. Collagen gel culture with tension and MF could be utilized as an appropriate in vitro model of interstitial connective tissues to evaluate the pathophysiological significance of mechanosignals generated by fluid flow and cellular/extracellular tension."	"Liver epithelioid progenitor cells derived from fetal Luxi bovine alleviate liver fibrosis. Liver epithelioid progenitor cells (LEPCs) have important roles in liver therapy because of their hepatic differentiation potency in vitro and in vivo. Despite many researches on humans, mice, and rats, equivalent progenitor cells derived from bovine are relatively rare. The purpose of our current study is to characterize bovine LEPCs, and research on the cure potency of this heteroplastic progenitor cells on mice liver fibrosis. We have used collagenase IV digesting and differential adhesion method to isolate slabstone shape, EpCAM, LGR5, NCAM1 and SOX9 positive progenitor cells from fetal Luxi bovine liver. When cultured in hepatic differentiation media containing 20 ng/ml Oncostatin M, LEPCs can differentiate into hepatocytes in vitro. After 4 weeks of intravenous tail vein injection into CCl4-injured mouse liver, LEPCs engrafted into liver parenchyma, differentiated into ALB positive hepatocytes, and could alleviate liver fibrosis through down regulating fibrosis genes-Tgfb1 and α-SMA as well as decreasing expression of collagen gene Col1a1, Col3a1, and Col4a1, and regain liver function by recovering ALT and AST. Our findings provided a useful tool for studying liver development in vitro, new cell resource for heterograft on mouse liver diseases, and a new platform for researches on immune rejection of heterogeneous cell transplantation."	"The Implication of Substance P in the Development of Tendinopathy: A Case Control Study. It was reported that substance P had beneficial effects in the healing of acute tendon injury. However, the relationship between substance P and degenerative tendinopathy development remains unclear. The purpose of this study was to determine the role of substance P in the pathogenesis of tendinopathy. Healthy and tendinopathy tendon were harvested from human and tenocytes were cultured individually. The expression levels of genes associated with tendinopathy were compared. Next, substance P was exogenously administered to the healthy tenocyte and the effect was evaluated. The results showed that tendinopathy tenocytes had higher levels of COL3A1, MMP1, COX2, SCX, ACTA2, and substance P gene expression compared to healthy tenocytes. Next, substance P treatment on the healthy tenocyte displayed similar changes to that of the tendinopathy tenocytes. These differences between the two groups were also determined by Western blot. Additionally, cells with substance P had the tendinopathy change morphologically although cellular proliferation was significantly higher compared to that of the control group. In conclusion, substance P enhanced cellular proliferation, but concomitantly increased immature collagen (type 3 collagen). Substance P plays a crucial role in tendinopathy development and could be a future therapeutic target for treatment."	"Hydroxylation of Human Type III Collagen Alpha Chain by Recombinant Coexpression with a Viral Prolyl 4-Hydroxylase in Escherichia coli. High-level expression of recombinant collagen by genetic engineering is urgently required. Recombinant collagen is different from natural collagen in its hydroxyproline (Hyp) content and thermal stability. To obtain hydroxylated collagen for applications in biomedicine and biomaterials, the human collagen α1(III) chain was co-expressed with the viral prolyl 4-hydroxylase A085R in Escherichia coli. Unlike previous reports using human prolyl 4-hydroxylase, this study examined the hydroxylation of full-length human collagen α1(III) chain (COL3A1) by viral prolyl 4-hydroxylase. The genes encoding these two proteins were controlled by different promoters, Ptac and PRPL, on a recombinant pKK223-3 plasmid. The sequencing results verified that the target genes were successfully inserted into the recombinant vector. Based on quantitative PCR, SDS-PAGE, and western blotting, successful expression by E. coli BL21(DE3) was detected at the mRNA and protein levels for both loci. Liquid chromatography-mass spectrometry (LC-MS/MS) results suggested that the highest Hyp yield was obtained when the two proteins were induced with 0.5 mM IPTG and heat-shock treatment at 50 °C, corresponding to high enzyme expression and low human collagen α1(III) chain expression levels. A biological activity analysis indicated that the recombinant collagen with the highest hydroxylation level supported the growth of baby hamster kidney cells, similar to observations for native collagen. The production of hydroxylated collagen in this study establishes a new method for collagen hydroxylation and provides a basis for the application of recombinant collagen expressed in E. coli."	"miR‑203 inhibits the expression of collagen‑related genes and the proliferation of hepatic stellate cells through a SMAD3‑dependent mechanism. Activation of hepatic stellate cells (HSCs) is a pivotal event during hepatic fibrogenesis. Activated HSCs are the main source of collagen and other extracellular matrix (ECM) components, and emerging antifibrotic therapies are aimed at preventing ECM synthesis and deposition. MicroRNAs (miRNAs) have been demonstrated to exert regulatory effects on HSC activation and ECM synthesis. In the present study, the HSC‑T6 rat hepatic stellate cell line was transiently transfected with a miRNA (miR)‑203 mimic, which is an artificial miRNA that enhances the function of miR‑203, with a miR‑203 inhibitor or with a scramble miRNA negative control. mRNA and protein expression levels of collagen (COL) 1A1, COL3A1, α‑smooth muscle actin (α‑SMA) and mothers against decapentaplegic homolog 3 (SMAD3) were assessed using reverse transcription‑quantitative polymerase chain reaction and western blot analysis, respectively. The interaction between miR‑203 and the 3'‑untranslated region (UTR) of SMAD3 mRNA was examined using a dual‑luciferase reporter assay. The proliferative capabilities of activated HSCs were measured using an MTT assay. The present results demonstrated that the mRNA and protein expression levels of COL1A1, COL3A1, α‑SMA and SMAD3 were significantly upregulated following transfection of HSC‑T6 cells with the miR‑203 inhibitor. Conversely, COL1A1, COL3A1, α‑SMA, and SMAD3 mRNA and protein expression appeared to be downregulated in rat HSCs transfected with miR‑203 mimics. Notably, the inhibition of miR‑203 expression was revealed to promote HSC proliferation, whereas increased miR‑203 expression suppressed the proliferative capabilities of HSC‑T6 cells. Furthermore, SMAD3 was revealed to be a direct target of miR‑203. The present study suggested that miR‑203 may function to prevent the synthesis and deposition of ECM components, including COL1A1, COL3A1 and α‑SMA, and to inhibit the proliferation of HSCs through a SMAD3‑dependent mechanism. Therefore, it may be hypothesized that miR‑203 has potential as a novel target for the development of alternative therapeutic strategies for the treatment of patients with hepatic fibrosis in clinical practice."	"Effects of miR-29a and miR-101a Expression on Myocardial Interstitial Collagen Generation After Aerobic Exercise in Myocardial-infarcted Rats. Myocardial infarction (MI) is accompanied by increased collagen deposition, cell necrosis and angiogenesis in cardiac tissue, which results in reduced ventricular compliance. Both microRNA-29a (miR-29a) and microRNA-101a (miR-101a) target the mRNAs encoding collagens and other proteins involved in fibrosis. We assessed the effects of intermittent aerobic exercise on the expression of cardiac miR-29a and miR-101a and following effects on the TGFβ, fos, Smad2/3, COL1A1 and COL3A1 in MI model of rats. Intermittent aerobic exercise for MI rats was begun from the second week and ended at the ninth week postsurgery. Expressions of microRNAs (miRNAs) and fibrosis-associated genes were detected from the infarction adjacent region located in the left ventricle. The heart coefficient (HC = heart weight/body weight) and hemodynamics assay were used to evaluate cardiac function level. Intermittent aerobic exercise inhibited myocardial interstitial collagen deposition and significantly improved cardiac function of MI rats. The results of real-time PCR and Western blot indicate that intermittent aerobic exercise enhanced the expression of miR-29a and miR-101a and inhibited TGFβ pathway in the MI rats. Our results suggest that controlled intermittent aerobic exercise can inhibit TGFβ pathway via up-regulation to the expression of miR-29a and miR-101a and finally cause a reduced fibrosis and scar formation in cardiac tissue. We believe that controlled intermittent aerobic exercise is beneficial to the healing and discovery of damaged cardiac tissues and their function after MI."	"Gene co-expression network reveals shared modules predictive of stage and grade in serous ovarian cancers. Serous ovarian cancer (SOC) is the most lethal gynecological cancer. Clinical studies have revealed an association between tumor stage and grade and clinical prognosis. Identification of meaningful clusters of co-expressed genes or representative biomarkers related to stage or grade may help to reveal mechanisms of tumorigenesis and cancer development, and aid in predicting SOC patient prognosis. We therefore performed a weighted gene co-expression network analysis (WGCNA) and calculated module-trait correlations based on three public microarray datasets (GSE26193, GSE9891, and TCGA), which included 788 samples and 10402 genes. We detected four modules related to one or more clinical features significantly shared across all modeling datasets, and identified one stage-associated module and one grade-associated module. Our analysis showed that MMP2, COL3A1, COL1A2, FBN1, COL5A1, COL5A2, and AEBP1 are top hub genes related to stage, while CDK1, BUB1, BUB1B, BIRC5, AURKB, CENPA, and CDC20 are top hub genes related to grade. Gene and pathway enrichment analyses of the regulatory networks involving hub genes suggest that extracellular matrix interactions and mitotic signaling pathways are crucial determinants of tumor stage and grade. The relationships between gene expression modules and tumor stage or grade were validated in five independent datasets. These results could potentially be developed into a more objective scoring system to improve prediction of SOC outcomes."	"Next generation sequencing analysis of patients with familial cervical artery dissection. The cause of cervical artery dissection is not well understood. We test the hypothesis that mutations in genes associated with known arterial connective tissue disorders are enriched in patients with familial cervical artery dissection. Patient duos from nine pedigrees with familial cervical artery dissection were analyzed by whole exome sequencing. Single nucleotide variants in a panel of 11 candidate genes (ACTA2, MYH11, FBN1, TGFBR1, TGFBR2, TGFB2, COL3A1, COL4A1, SMAD3, MYLK and SLC2A10) were prioritized according to functionality (stop-loss, nonsense, and missense variants with polyphen-2 score ≥0.95). Variants classified as &quot;benign&quot; or &quot;likely benign&quot; in the ClinVar database were excluded from further analysis. For comparison, non-benign stop-loss, nonsense and missense variants with polyphen-2 score ≥0.95 in the same panel of candidate genes were identified in the European non-Finnish population of the ExAC database (n = 33,370). Non-benign Single nucleotide variants in both affected patients were identified in four of the nine cervical artery dissection families (COL3A1; Gly324Ser, FBN1: Arg2554Trp, COL4A1: Pro116Leu, and TGFBR2: Ala292Thr) yielding an allele frequency of 22.2% (4/18). In the comparison group, 1782 variants were present in 33,370 subjects from the ExAC database (allele frequency: 1782/66,740 = 2.7%; p = 0.0008; odds ratio = 14.2; 95% confidence interval = 3.8-52.9). Cervical artery dissection families showed enrichment for non-benign variants in genes associated with arterial connective tissue disorders. The observation that findings differed across families indicates genetic heterogeneity of familial cervical artery dissection."	"Tenogenic Differentiation of Human Embryonic Stem Cells. Tendon healing is complex to manage because of the limited regeneration capacity of tendon tissue; stem cell-based tissue engineering approaches may provide alternative healing strategies. We sought to determine whether human embryonic stem cells (hESC) could be induced to differentiate into tendon-like cells by the addition of exogenous bone morphogenetic protein (BMP)12 (growth differentiation factor[GDF]7) and BMP13 (GDF6). hESC (SHEF-1) were maintained with or without BMP12/13 supplementation, or supplemented with BMP12/13 and the Smad signaling cascade blocking agent, dorsomorphin. Primary rat tenocytes were included as a positive control in immunocytochemistry analysis. A tenocyte-like elongated morphology was observed in hESC after 40-days continuous supplementation with BMP12/13 and ascorbic acid (AA). These cells displayed a tenomodulin expression pattern and morphology consistent with that of the primary tenocyte control. Analysis of tendon-linked gene transcription in BMP12/13 supplemented hESC demonstrated consistent expression of COL1A2, COL3A1, DCN, TNC, THBS4, and TNMD levels. Conversely, when hESCs were cultured in the presence of BMP12/13 and dorsomorphin COL3A1, DCN, and TNC gene expression and tendon matrix formation were inhibited. Taken together, we have demonstrated that hESCs are responsive to tenogenic induction via BMP12/13 in the presence of AA. The directed in vitro generation of tenocytes from pluripotent stem cells may facilitate the development of novel repair approaches for this difficult to heal tissue."	"Postnatal changes and sexual dimorphism in collagen expression in mouse skin. To investigate sexual dimorphism and postnatal changes in skin collagen expression, mRNA levels of collagens and their regulatory factors in male and female skin were examined during the first 120 days of age by quantitative realtime PCR. Levels of mRNAs encoding extracellular matrices did not show any differences between male and female mice until day 15. Col1a1 and Col1a2 mRNAs noticeably increased at day 30 and remained at high levels until day 120 in male mice, while those in female mice remained at low levels during the period. Consistent with the mRNA expression, pepsin-soluble type I collagen contents in skin was very high in mature male as compared to female. Col3a1 mRNA in male mice also showed significantly high level at day 120 as compared to female. On the other hand, expression of mRNAs encoding TGF-ßs and their receptors did not show apparent sexual dimorphism although small significant differences were observed at some points. Castration at 60 days of age resulted in a significant decrease in type I collagen mRNA expression within 3 days, and noticeably decreased expression of all fibril collagen mRNAs examined within 14 days, while administration of testosterone tube maintained the mRNA expression at high levels. Despite the in vivo effect of testosterone, administration of physiological concentrations of testosterone did not affect fibril collagen mRNA expression in either human or mouse skin fibroblasts in vitro, suggesting that testosterone does not directly affect collagen expression in fibroblasts. In summary, present study demonstrated dynamic postnatal changes in expression of collagens and their regulatory factors, and suggest that testosterone and its effects on collagen expression are responsible for the skin sexual dimorphism but the effects of testosterone is not due to direct action on dermal fibroblasts."	"Fibrillar collagen genes are not coordinately upregulated with TGF β1 expression in finasteride-treated prostate. Benign prostatic hyperplasia (BPH) is the most common cause of lower urinary tract symptoms (LUTS) in older men. In this regard, recent studies have attempted to define the relationships between prostatic fibrosis, LUTS, and increased expression of transforming growth factor β1 (TGF β1) in BHP. Therapeutic approaches for BPH such as 5-α-reductase inhibitors and alpha-adrenergic blocking agents increase TGF β1 expression in the prostatic tissue. Here, we investigated the effects of the 5-α-reductase inhibitor-finasteride-on rat ventral prostate tissue, especially with regard to the tissue distribution and gene expression of fibrillar collagens. Adult Wistar rats (n = 15) were treated with finasteride (25 mg/kg/day) by subcutaneous injection for 7 and 30 days. Age-matched, vehicle-treated (n = 15) adult Wistar rats were used as control. Finasteride treatment reduced prostate size and increased the area of types I and III collagen fibers in the prostatic stroma. As expected, TGF β1 mRNA expression was upregulated by finasteride treatment. However, COL1A1 and COL3A1 mRNA expressions decreased after both 7 and 30 days of finasteride treatment, suggesting that finasteride treatment promotes prostate parenchyma and stroma changes, which lead to the observed types I and III collagen remodeling without de novo collagen synthesis. The upregulation of TGF β1 mRNA and protein associated with the 5-α-reductase inhibitor is more closely related to epithelial and stromal cell death pathways than to prostatic fibrosis."	"Relative ratios of collagen composition of periarticular tissue of joints of the upper limb. We investigated the relative ratios of collagen composition of periarticular tissue of the elbow, wrist, metacarpophalangeal, proximal and distal interphalangeal joints. Periarticulat tissue, which we defined as the ligaments, palmar plate and capsule, was harvested from ten fresh-frozen cadaveric upper limbs, yielding 50 samples. The mean paired differences (95% confidence interval) of the relative ratios of collagen between the five different joints were estimated using mRNA expression of collagen in the periarticular tissue. We found that the relative collagen composition of the elbow was not significantly different to that of the proximal interphalangeal joint, nor between the proximal interphalangeal joint and distal interphalangeal joint, whereas the differences in collagen composition between all the other paired comparisons of the joints had confidence intervals that did not include zero."	"KCTD11 inhibits growth and metastasis of hepatocellular carcinoma through activating Hippo signaling. A lack of effective prognostic biomarkers and molecular targets is a serious problem in hepatocellular carcinoma. KCTD11, reported as a tumor suppressor, are still not well understood. In this study, KCTD11 was found low-expressed in HCC tissues and cell lines. The HCC patients with low expression of KCTD11 suggested shorter overall survival. We found KCTD11 inhibiting cell proliferation in vitro and tumor growth in vivo, by activating p21 and repressing cycle related proteins. KCTD11 also inhibited cell adhesion by decreasing CTGF and CLDN1. We found CTGF binding COL3A1 in HCCLM3, which might lead to reduction of COL3A1 expression. KCTD11 also inhibited cell migration and invasion in HCC, by repressing MMPs and EMT. We found the tumor suppression function of KCTD11 was at least partly through activating Hippo pathway in HCC. Base on the enhanced Hippo pathway, KCTD11 could activate p21 by stabilizing p53 or promoting the MST1/ GSK3β/p21 signaling in HCC. Overall, these results suggest that KCTD11 works as a tumor suppressor and owns prognostic and therapeutic potentials in HCC."	"Combined Administration of ASCs and BMP-12 Promotes an M2 Macrophage Phenotype and Enhances Tendon Healing. Outcomes after intrasynovial tendon repair are highly variable. An intense inflammatory cascade followed by a delayed healing response can cause adhesion formation and repair-site failure that severely impair the function of repaired digits. No effective remedies exist to fully address these issues. Cell- and growth factor-based therapies have been shown to modulate inflammation and improve cell proliferation and matrix synthesis and therefore are promising treatment approaches for intrasynovial tendon repair. (1) Can autologous adipose-derived mesenchymal stromal cells (ASCs) and recombinant bone morphogenetic protein-12 (rBMP-12) be effectively delivered to an intrasynovial flexor tendon repair without adverse effects? (2) Do autologous ASCs modulate the inflammatory response after intrasynovial tendon injury and repair? (3) Does the combined application of autologous ASCs and rBMP-12 modulate the proliferative and remodeling responses after intrasynovial tendon injury and repair? Sixteen 1- to 2-year-old female canines were used in this study. Autologous ASC sheets, with and without rBMP-12, were applied to the surface of sutured flexor tendons. Fourteen days after repair, the effects of treatment were determined using quantitative PCR (six per group) for the expression of genes related to macrophage phenotype or inflammation (IL-4, CD163, VEGF, NOS2, IL-1B, and IFNG), cell proliferation (CCND1), and tendon formation (SCX, TNMD, COL1A1 and COL3A1). Proteomics analysis (four per group) was performed to examine changes in tendon protein abundances. CD146 immunostaining and hematoxylin and eosin staining (four per group) were used to detect tendon stem or progenitor cells and to semiquantitatively evaluate cellularity at the tendon repair; analyses were done blinded to group. Gross inspection and cell tracing showed that autologous ASCs and rBMP-12 were delivered to the flexor tendon repair site without the deleterious effects of adhesion and repair-site gap formation. Quantitative assessment of gene and protein expression showed effects of treatment: ASC-sheet treatment modulated the postrepair inflammatory response and facilitated healing by increasing regenerative M2 macrophages (M2 marker CD204, twofold of normal, p = 0.030), inflammatory inhibitor (prostaglandin reductase 1 [PTRG1], 1.6-fold of normal, p = 0.026), and proteins involved in tendon formation (periostin [POSTN], 1.9-fold of normal, p = 0.035). Consistently, semiquantitative and qualitative evaluations of repaired tissue showed that ASC-sheet treatment reduced mononuclear cell infiltration (12% less than nontreated tendons, p = 0.021) and introduced CD146+ stem or progenitor cells to the repair site. The combined administration of ASCs and rBMP-12 further stimulated M2 macrophages by increasing IL-4 (116-fold of normal, p = 0.002) and led to the increase of M2 effector matrix metalloproteinase-12 involved in matrix remodeling (twofold of normal, p = 0.016) and reduction of a negative regulator of angiogenesis and cell migration (StAR-related lipid transfer domain protein13 [STARD13]; 84% of normal, p = 0.000), thus facilitating the proliferative stage of tendon repair. ASCs and BMP-12 accelerated the progression of healing in the proliferative stage of tendon repair. The effects of ASCs and BMP-12 on tendon functional recovery should be evaluated in future studies. The cell sheet approach is an effective, biocompatible, and surgeon-friendly approach for cell and growth factor delivery during tendon repair. Combined application of ASCs and BMP-12 may accelerate intrasynovial tendon healing while suppressing the adverse inflammatory response."	"Osteopontin RNA aptamer can prevent and reverse pressure overload-induced heart failure. Cardiac myocyte hypertrophy, the main compensatory response to chronic stress in the heart often progresses to a state of decompensation that can lead to heart failure. Osteopontin (OPN) is an effector for extracellular signalling that induces myocyte growth and fibrosis. Although increased OPN activity has been observed in stressed myocytes and fibroblasts, the detailed and long term effects of blocking OPN signalling on the heart remain poorly defined. Targeting cardiac OPN protein by an RNA aptamer may be beneficial for tuning down OPN pathologic signalling. We aimed to demonstrate the therapeutic effects of an OPN RNA aptamer on cardiac dysfunction. In vivo, we show that in a mouse model of pressure overload, treating at the time of surgeries with an OPN aptamer prevented cardiomyocyte hypertrophy and cardiac fibrosis, blocked OPN downstream signalling (PI3K and Akt phosphorylation), reduced expression of extracellular matrix (Lum, Col3a1, Fn1) and hypertrophy (Nppa, Nppb) genes, and prevented cardiac dysfunction. Treating at two months post-surgeries with the OPN aptamer reversed cardiac dysfunction and fibrosis and myocyte hypertrophy. While genetic homozygous deletion of OPN reduced myocardial wall thickness, surprisingly cardiac function and myocardial fibrosis, specifically collagen deposition and myofibroblast infiltration, were worse compared with wild type mice at three months of pressure overload. Taken together, these data demonstrate that tuning down cardiac OPN signalling by an OPN RNA aptamer is a novel and effective approach for preventing cardiac hypertrophy and fibrosis, improving cardiac function, and reversing pressure overload-induced heart failure."	"Pirfenidone normalizes the tumor microenvironment to improve chemotherapy. Normalization of the tumor microenvironment by selectively targeting components of the tumor extracellular matrix has been recently proposed to have the potential to decompress tumor blood vessels, increase vessel perfusion and thus, improve drug delivery and the efficacy of cancer therapy. Therefore, we now need to identify safe and well tolerated pharmaceutical agents that are able to remodel the microenvironment of solid tumors and enhance chemotherapy. In this study, we repurposed Pirfenidone, a clinically approved anti-fibrotic drug for the treatment of idiopathic pulmonary fibrosis, to investigate its possible role on tumor microenvironment normalization. Using two orthotopic mammary tumor models we demonstrate that Pirfenidone reduces collagen and hyaluronan levels and, as a result, significantly increases blood vessel functionality and perfusion and improves the anti-tumor efficacy of doxorubicin. Reduction of extracellular matrix components were mediated via TGFβ signaling pathway inhibition due to downregulation of TGFβ1, COL1A1, COL3A1, HAS2, HAS3 expression levels. Our findings provide evidence that repurposing Pirfenidone could be used as a promising strategy to enhance drug delivery to solid tumors by normalizing the tumor microenvironment."	"Dexmedetomidine Protects PC12 Cells from Lidocaine-Induced Cytotoxicity Through Downregulation of COL3A1 Mediated by miR-let-7b. Safety concerns of some local anesthetics, such as lidocaine, have been raised in recent years due to potential neurological impairment. Dexmedetomidine may protect humans from neurotoxicity, and miR-let-7b is activated by nerve injury; however, the roles of miR-let-7b and its target gene in lidocaine-induced cytotoxicity are not well known. Through bioinformatics and a luciferase reporter assay, COL3A1 was suggested as a direct target gene of miR-let-7b. Here, we confirmed by measuring mRNA and protein levels that miR-let-7b was downregulated and COL3A1 was upregulated in lidocaine-treated cells, an observation that was reversed by dexmedetomidine. Similar to miR-let-7b mimics or knockdown of COL3A1, dexmedetomidine treatment reduced the expression of COL3A1, suppressed cell apoptosis and cell migration/invasion ability, and induced cell cycle progression and cell proliferation in PC12 cells, effects that were reversed by the miR-let-7b inhibitor. Meanwhile, proteins involved in cell apoptosis, such as Bcl2 and caspase 3, were impacted as well. Taken together, dexmedetomidine may protect PC12 cells from lidocaine-induced cytotoxicity through miR-let-7b and COL3A1, while also increasing Bcl2 and inhibiting caspase 3. Therefore, miR-let-7b and COL3A1 might play critical roles in neuronal injury, and they are potential therapeutic targets."	"The influence of chronic IL-6 exposure, in vivo, on rat Achilles tendon extracellular matrix. When compared to placebo, acetaminophen (APAP) reduces tendon stiffness and collagen cross-linking. APAP also enhances the exercise-induced increase in peritendinous levels of IL-6. Elevated levels of IL-6 are associated with tendinopathy, thus we hypothesized that chronic, elevated peritendinous IL-6 would alter tendon extracellular matrix (ECM). IL-6 (∼3000pgml<sup>-1</sup>) was injected (3dwk<sup>-1</sup> for 8-wks) into the Achilles peritendinous region of male Wistar rats (n=16) with the opposite leg serving as a sham. Fractional synthesis rates (FSR) were determined using deuterium oxide. Collagen (hydroxyproline) and hydroxylysl pyridinoline (HP) cross-linking were analyzed by HPLC. ECM and IL-6 related genes were evaluated using qRT-PCR. Relative to sham, collagen (Col) 1a1 but not Col3a1 expression was suppressed (47%) in tendons exposed to IL-6 (p&lt;0.05). Lysyl oxidase (LOX) and MMP-1 expression were also reduced (37%) in IL-6 treated tendons (p&lt;0.05). Relative to sham the expression of MMP-2, -3, -9, and TIMP-1 were not altered by IL-6 treatment (p&gt;0.05). Interleukin-6 receptor subunit beta precursor (IL6st) was lower (16%) in IL-6 treated tendons when compared to sham (p&lt;0.05). Suppressor of cytokine signaling 3 (Socs3), signal transducer and activator of transcription 3 (STAT3), and protein inhibitor of activated STAT 1 (Pias1) were not altered by IL-6 exposure (p&gt;0.05). Neither collagen nor cross-linking content were altered by IL-6 (p&gt;0.05). Additionally, IL-6 treatment did not alter tendon FSR. Chronic treatment with physiologically relevant levels of IL-6 suppresses expression of Col1a1 and LOX while also altering expression of select MMPs but does not alter Achilles tendon collagen synthesis."	"Root extractive from Daphne genkwa benefits in wound healing of anal fistula through up-regulation of collagen genes in human skin fibroblasts. Wound healing is the main problem in the therapy of anal fistula (AF). Daphne genkwa root has been traditionally used as an agent to soak sutures in operation of AF patients, but its function in wound healing remains largely unclear. The aim of the present study was to illuminate mechanisms of D. genkwa root treatment on AF. In the present study, 60 AF patients after surgery were randomly divided into two groups, external applied with or without the D. genkwa extractive. Wound healing times were compared and granulation tissues were collected. In vitro, we constructed damaged human skin fibroblasts (HSFs) with the treatment of TNF-α (10 μg/ml). Cell Count Kit-8 (CCK-8) and flow cytometry analysis were used to determine the effects of D. genkwa root extractive on cell viability, cell cycle and apoptosis of damaged HSFs. Furthermore, protein levels of TGF-β, COL1A1, COL3A1, Timp-1, matrix metalloproteinase (MMP)-3 (MMP-3) and MEK/ERK signalling pathways were investigated both in vivo and in vitro Results showed that D. genkwa root extractive greatly shortens the wound healing time in AF patients. In granulation tissues and HSFs, treatment with the extractive significantly elevated the expressions of COL1A1, COL3A1, Timp-1, c-fos and Cyclin D1, while reduced the expression of MMP-3 Further detection presented that MEK/ERK signalling was activated after the stimulation of extractive in HSFs. Our study demonstrated that extractive from D. genkwa root could effectively improve wound healing in patients with AF via the up-regulation of fibroblast proliferation and expressions of COL1A1 and COL3A1."	"[Female pelvic floor dysfunction from the perspectives of genetic studies]. Currently, despite the growing prevalence of female pelvic floor dysfunction, no consensus exists among researchers regarding its etiology and pathogenesis. There is no doubt, however, that this is a multifactorial disorder with a genetic predisposition. The risk for developing pelvic floor dysfunction is determined by the interaction of multiple additive genetic (mutations and/or polymorphic alleles) and environmental factors. This review of the world literature presents a rationale for searching specific molecular genetic factors shaping the structure of the genetic susceptibility to female pelvic floor dysfunction. The pelvic organ prolapse in women has been found to be associated with the rs1800012 polymorphism of the COL1A1 gene, genotype rs1800255-A/A of COL3A1 gene and the rs2228480 polymorphism of ESR1, although this data still controversial and need to be validated in the independent samples. The systematic accumulation of data, their reproduction in different populations and ethnic groups is necessary to further generalize the evidence on the pathogenesis and the functional significance of each gene variant."	"Enhancing Vascularization through the Controlled Release of Platelet-Derived Growth Factor-BB. Using delivery systems to control the in vivo release of growth factors (GFs) for tissue engineering applications is extremely desirable as the clinical use of GFs is limited by their fast in vivo turnover. Hence, the development of effective platforms that are able to finely control the release of GFs in vivo remains a challenge. Herein, we investigated the ability of multiscale microspheres, composed by a nanostructured silicon multistage vector (MSV) core and a poly(dl-lactide-co-glycolide) acid (PLGA) forming outer shell (PLGA-MSV), to release functional platelet-derived growth factor-BB (PDGF-BB) to induce in vivo localized neovascularization. The in vitro release of PDGF-BB was assessed by enzyme-linked immunosorbent assay (ELISA) over 2 weeks and showed a sustained, zero-order release kinetics. The ability to promote in vivo localized neovascularization was investigated in a subcutaneous injection model in BALB/c mice and followed by intravital microscopy up to 2 weeks. Fully functional newly formed vessels were found within the area where PLGA-MSVs were localized and covered 3.0 ± 0.9 and 19 ± 5.1% at 7 and 14 days, respectively, showing a 6-fold increase in 1 week. The distribution of CD31<sup>+</sup> and α-SMA<sup>+</sup> cells was detected by immunofluorescence on harvested tissues. CD31 was significantly more expressed (4-fold increase) compared to the untreated control. Finally, the level of up-regulation of angiogenesis-associated genes (Vegfa, Vwf, and Col3a1) was assessed by q-PCR, resulting in a significantly higher expression where PLGA-MSVs were localized (Vegfa: 2.32 ± 0.50 at 7 days and 4.37 ± 0.75 at 14 days; Vwf: 4.13 ± 0.82 and 7.74 ± 0.91; Col3a1: 5.43 ± 0.37 and 6.66 ± 0.89). Altogether, our data supported the conclusion that the localized delivery of PDGF-BB from PLGA-MSVs induced the localized de novo formation of fully functional vessels in vivo. With this study, we demonstrated that PLGA-MSV holds promise for accomplishing the controlled localized in vivo release of GFs for the design of innovative tissue engineering strategies."	"Sirtuin 7 is decreased in pulmonary fibrosis and regulates the fibrotic phenotype of lung fibroblasts. Pulmonary fibrosis is a severe condition with no cure and limited therapeutic options. A better understanding of its pathophysiology is needed. Recent studies have suggested that pulmonary fibrosis may be driven by accelerated aging-related mechanisms. Sirtuins (SIRTs), particularly SIRT1, SIRT3, and SIRT6, are well-known mediators of aging; however, limited data exist on the contribution of sirtuins to lung fibrosis. We assessed the mRNA and protein levels of all seven known sirtuins in primary lung fibroblasts from patients with idiopathic pulmonary fibrosis (IPF) and systemic sclerosis-associated interstitial lung disease (SSc-ILD) in comparison with lung fibroblasts from healthy controls. These unbiased tests revealed a tendency for all sirtuins to be expressed at lower levels in fibroblasts from patients compared with controls, but the greatest decrease was observed with SIRT7. Similarly, SIRT7 was decreased in lung tissues of bleomycin-challenged mice. Inhibition of SIRT7 with siRNA in cultured lung fibroblasts resulted in an increase in collagen and α-smooth muscle actin (α-SMA). Reciprocally, overexpression of SIRT7 resulted in lower basal and TGF-β-induced levels of COL1A1, COL1A2, COL3A1, and α-SMA mRNAs, as well as collagen and α-SMA proteins. Induced changes in SIRT7 had no effect on endogenous TGF-β mRNA levels or latent TGF-β activation, but overexpression of SIRT7 reduced the levels of Smad3 mRNA and protein. In conclusion, the decline in SIRT7 in lung fibroblasts has a profibrotic effect, which is mediated by changes in Smad3 levels."	"Impaired collagen synthesis in the rectum may be a molecular target in anastomotic leakage prophylaxis. The underlying molecular mechanisms for anastomotic leakage (AL) after colorectal surgery are unknown and there are no therapeutics for AL prevention. Our aim was to correlate endogenous matrix metalloproteinase (MMP) activity, collagen concentration, and collagen/MMP/cytokine mRNA levels with anatomic location in human colorectal tissue. We enrolled 22 patients in this prospective study: 7 underwent elective laparoscopic sigmoid resection and 15 underwent low anterior resection for colorectal cancer. Full-thickness intestinal tissue rings from anastomoses constructed with a circular stapler were used for the determination of the MMP activity, tissue collagen concentration and mRNA levels. COL1A1 (p = 0.017) and COL3A1 (p = 0.0013) mRNA levels were lower in rectal tissue than in colonic samples. Neither MMP activities nor collagen concentrations differed significantly between the two anatomic locations. By elucidating the factors responsible for the decreased collagen production we may identify specific molecular targets in AL prophylaxis."	"Cytological character of mini pig mesenchymal stromal cells from various tissues and the attempt of cell sheet formation. Large animal experiments are important for translational research in regenerative medicine. Recently, mini pigs have been used in large animal studies and surgical training. The use of multipotent mesenchymal stromal cell (MSC) sheets for the treatment of many diseases is increasing. The purpose of the present study was to establish optimal methods for generating mini pig MSC sheets from various tissues and to compare the properties of MSCs in these sheets. MSCs were isolated from the bone marrow, adipose, periodontal ligament, gingiva, or periosteum of mini pigs. The proliferation, markers, and mRNA expression of these MSCs were examined. Colony-forming and differentiation assays were performed. MSCs were seeded onto temperature-responsive culture dishes to develop MSC sheets. MSCs derived from bone marrow (BMSCs), adipose (ASCs), periodontal ligament (PDLCs), gingiva (GMSCs), and periosteum (PSCs) were positive for MSC-related markers. BMSCs and PSCs showed increased proliferation compared with other MSCs. The osteogenic potential of PDLCs and the adipogenic potential of PSCs were the highest among these MSCs. The expression levels of COL1A1 and COL3A1 in BMSCs and PSCs were significantly higher than those in other MSCs. The expression levels of FGF2, VEGFA, ICAM-1, and TIE-1 in GMSCs were significantly higher than those in other MSCs. PSCs showed the highest levels of TGF-β1 and ANG-1 expression among all MSC types. We succeeded in developing MSC sheets from BMSCs, ASCs, and PSCs. We developed methods to generate MSC sheets from various tissues of mini pigs, and these methods are useful to pursue regenerative translational research using mini pigs."	"High serum thrombospondin-1 concentration is associated with slower abdominal aortic aneurysm growth and deficiency of thrombospondin-1 promotes angiotensin II induced aortic aneurysm in mice. Abdominal aortic aneurysm (AAA) is a common age-related vascular disease characterized by progressive weakening and dilatation of the aortic wall. Thrombospondin-1 (TSP-1; gene Thbs1) is a member of the matricellular protein family important in the control of extracellular matrix (ECM) remodelling. In the present study, the association of serum TSP-1 concentration with AAA progression was assessed in 276 men that underwent repeated ultrasound for a median 5.5 years. AAA growth was negatively correlated with serum TSP-1 concentration (Spearman's rho <sup>-</sup>0.129, P=0.033). Men with TSP-1 in the highest quartile had a reduced likelihood of AAA growth greater than median during follow-up (OR: 0.40; 95% confidence interval (CI): 0.19-0.84, P=0.016, adjusted for other risk factors). Immunohistochemical staining for TSP-1 was reduced in AAA body tissues compared with the relatively normal AAA neck. To further assess the role of TSP-1 in AAA initiation and progression, combined TSP-1 and apolipoprotein deficient (Thbs1<sup>-/-</sup>ApoE<sup>-/-</sup>, n=20) and control mice (ApoE<sup>-/-</sup>, n=20) were infused subcutaneously with angiotensin II (AngII) for 28 days. Following AngII infusion, Thbs1<sup>-/-</sup> ApoE<sup>-/-</sup> mice had larger AAAs by ultrasound (P=0.024) and ex vivo morphometry measurement (P=0.006). The Thbs1<sup>-/-</sup>ApoE<sup>-/-</sup> mice also showed increased elastin filament degradation along with elevated systemic levels and aortic expression of matrix metalloproteinase (MMP)-9. Suprarenal aortic segments and vascular smooth muscle cells (VSMCs) isolated from Thbs1<sup>-/-</sup>ApoE<sup>-/-</sup> mice showed reduced collagen 3A1 gene expression. Furthermore, Thbs1<sup>-/-</sup>ApoE<sup>-/-</sup> mice had reduced aortic expression of low-density lipoprotein (LDL) receptor-related protein 1. Collectively, findings from the present study suggest that TSP-1 deficiency promotes maladaptive remodelling of the ECM leading to accelerated AAA progression."	"Extracellular matrix metabolism disorder induced by mechanical strain on human parametrial ligament fibroblasts. Pelvic organ prolapse (POP) is a global health problem that may seriously impact the quality of life of the sufferer. The present study aimed to investigate the potential mechanisms underlying alterations in extracellular matrix (ECM) metabolism in the pathogenesis of POP, by investigating the expression of ECM components in human parametrial ligament fibroblasts (hPLFs) subject to various mechanical strain loads. Fibroblasts derived from parametrial ligaments were cultured from patients with POP and without malignant tumors, who underwent vaginal hysterectomy surgery. Fibroblasts at generations 3‑6 of exponential phase cells were selected, and a four‑point bending device was used for 0, 1,333 or 5,333 µ mechanical loading of cells at 0.5 Hz for 4 h. mRNA and protein expression levels of collagen type I α 1 chain (COL1A1), collagen type III α 1 chain (COL3A1), elastin, matrix metalloproteinase (MMP) ‑2 and ‑9, and transforming growth factor (TGF)‑β1 were detected by reverse transcription‑quantitative polymerase chain reaction and western blotting, respectively. Under increased mechanical strain (5,333 µ), mRNA and protein expression levels of COL1A1, COL3A1 elastin and TGF‑β1 decreased, particularly COL1A1; however, mRNA and protein expression levels of MMP‑2 and ‑9 were significantly increased, compared with the control group (0 µ strain). Following 1,333 µ mechanical strain, mRNA and protein expression levels of COL1A1, COL3A1 elastin and MMP‑2 increased, and MMP‑9 decreased, whereas no significant differences were observed in TGF‑β1 mRNA and protein expression levels. In conclusion, ECM alterations may be involved in pathogenesis of POP, with decreased synthesis and increased degradation of collagen and elastin. Furthermore, the TGF‑β1 signaling pathway may serve an important role in this process and thus may supply a new target and strategy for understanding the etiology and therapy of POP."	"Diagnosis, natural history, and management in vascular Ehlers-Danlos syndrome. Vascular Ehlers Danlos syndrome (vEDS) is an uncommon genetic disorders characterized by arterial aneurysm, dissection and rupture, bowel rupture, and rupture of the gravid uterus. The frequency is estimated as 1/50,000-1/200,000 and results from pathogenic variants in COL3A1, which encodes the chains of type III procollagen, a major protein in vessel walls and hollow organs. Initial diagnosis depends on the recognitions of clinical features, including family history. Management is complex and requires multiple specialists who can respond to and manage the major complications. A summary of recommendations for management include: Identify causative variants in COL3A1 prior to application of diagnosis, modulate life style to minimize injury, risk of vessel/organ rupture, identify and create care team, provide individual plans for emergency care (&quot;vascular EDS passport&quot;) with diagnosis and management plan for use when traveling, centralize management at centers of excellence (experience) when feasible, maintain blood pressure in the normal range and treat hypertension aggressively, surveillance of vascular tree by doppler ultrasound, CTA (low radiation alternatives) or MRA if feasible on an annual basis. These recommendations represent a consensus of an international group of specialists with a broad aggregate experience in the care of individuals with vascular EDS that will need to be assessed on a regular basis as new information develops. © 2017 Wiley Periodicals, Inc."	"Transcriptome analysis of bronchoalveolar lavage fluid from children with severe Mycoplasma pneumoniae pneumonia reveals novel gene expression and immunodeficiency. A growing number of severe Mycoplasma pneumoniae pneumonia (MPP) cases have been reported recently. However, the pathogenesis of severe MPP is not clear. In the current study, transcriptome sequencing was used to identify gene expression and alternative splicing profiles to provide insights into the pathogenesis of severe MPP. RNAs of bronchoalveolar lavage fluid (BALF) samples from three severe MPP children and three mild MPP children were analyzed respectively by deep sequencing followed by computational annotation and quantification. The gene expression analysis revealed 14 up-regulated and 34 down-regulated genes in severe MPP children comparing to mild MPP children. The top 10 most up-regulated genes were IGHV1-69, CH17-472G23.1, ATP1B2, FCER2, MUC21, IL13, FCRLB, CLEC5A, FAM124A, and INHBA. The top 10 most down-regulated genes were OSTN-AS1, IL22RA2, COL3A1, C1orf141, IGKV2-29, RP11-731F5.2, IGHV4-4, KIRREL, DNASE1L3, and COL6A2. Clustering analysis revealed similar expression pattern of CLEC5A, IL13, FCER2, and FLT1. Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analyses revealed changes related to primary immunodeficiency in severe MPP children comparing to mild MPP children; the pathway involves CD19, TNFRSF13C, CD79A, and AICDA genes. Among the differentially expressed genes, significant alternative splicing events were found in FCER2 and FCRLA. The current study on RNA sequencing provides novel insights into the pathogenesis of severe MPP in terms of gene expression and alternative splicing. The up-regulation of IL13, FCER2, FLT1, and CLEC5A and the down-regulation of CD79A, AICDA, CD19, and TNFRSF13C may contribute to the pathogenesis of severe MPP. The differential expressions of FCER2 and FCRLA could be due to their alternative splicing."	"Blocking fibrotic signaling in fibroblasts from patients with carpal tunnel syndrome. Fibrosis of the subsynovial connective tissue (SSCT) in carpal tunnel syndrome (CTS) patients is increasingly recognized as an important aspect of CTS pathophysiology. In this study, we evaluated the effect of blocking profibrotic pathways in fibroblasts from the SSCT in CTS patients. Fibroblasts were stimulated with transforming growth factor β1 (TGF-β1), and then treated either with a specific fibrosis pathway inhibitor targeting TGF-β receptor type 1 (TβRI), platelet-derived growth factor receptor (PDGFR), epidermal growth factor receptor (EGFR), or vascular endothelial growth factor receptor (VEGFR). Fibrosis array and quantitative real-time polymerase chain reaction of fibrotic genes were evaluated. Array gene expression analysis revealed significant down-regulation of multiple fibrotic genes after treatment with TβRI, PDGFR, and VEGFR inhibitors. No array fibrotic genes were significantly down-regulated with EGFR inhibition. Further gene expression analysis of known CTS fibrosis markers collagen type I A2 (Col1), collagen type III A1 (Col3), connective tissue growth factor (CTGF), and SERPINE1 showed significantly down-regulation after TβRI inhibition. In contrast, VEGFR inhibition significantly down-regulated CTGF and SERPINE1, whereas, PDGFR and EGFR inhibition significantly down-regulated Col3. Taken together the inhibition of TβRI appears to be the primary mediator of fibrotic gene expression in fibroblasts from CTS patients. TGF-β/Smad activity was further evaluated, and as expected inhibition of Smad activity was significantly down-regulated after inhibition of TβRI, but not with PDGFR, VEGFR, or EGFR inhibition. These results indicate that local therapies specifically targeting TGF-β signaling alone or in combination offer the potential of a novel local antifibrosis therapy for patients with CTS."	"Atrial structure, function and arrhythmogenesis in aged and frail mice. Atrial fibrillation (AF) is prevalent in aging populations; however not all individuals age at the same rate. Instead, individuals of the same chronological age can vary in health status from fit to frail. Our objective was to determine the impacts of age and frailty on atrial function and arrhythmogenesis in mice using a frailty index (FI). Aged mice were more frail and demonstrated longer lasting AF compared to young mice. Consistent with this, aged mice showed longer P wave duration and PR intervals; however, both parameters showed substantial variability suggesting differences in health status among mice of similar chronological age. In agreement with this, P wave duration and PR interval were highly correlated with FI score. High resolution optical mapping of the atria demonstrated reduced conduction velocity and action potential duration in aged hearts that were also graded by FI score. Furthermore, aged mice had increased interstitial fibrosis along with changes in regulators of extracellular matrix remodelling, which also correlated with frailty. These experiments demonstrate that aging results in changes in atrial structure and function that create a substrate for atrial arrhythmias. Importantly, these changes were heterogeneous due to differences in health status, which could be identified using an FI."	"Long-term acetaminophen treatment induced liver fibrosis in mice and the involvement of Egr-1. Acetaminophen (APAP)-induced acute liver injury has already been well studied. However, whether long-term administration of APAP will cause liver fibrosis is still not very clear. This study aims to investigate the liver fibrosis in mice induced by long-term APAP treatment and the involvement of early growth response 1 (Egr-1). C57BL/6 mice were orally given with APAP (200, 300mg/kg) for 2, 6 or 10 weeks, respectively. Liver hydroxyproline content, collagen deposition and inflammatory cells infiltration were increased in mice treated with APAP (200, 300mg/kg) for 6 or 10 weeks. Liver mRNA expression of collagen (COL)1a1, Col3a1, transforming growth factor-β (TGF-β) and serum contents of COL1, COL3, TGF-β were all increased in APAP-treated mice. Liver expression of α-smooth muscle actin (α-SMA) and phosphorylated ERK1/2 and Smad2/3 were all increased in APAP-treated mice. Furthermore, increased liver mRNA expression of Egr-1 and its subsequent nuclear translocation were found in APAP-treated mice. Egr-1 knock-out mice were further applied. APAP-induced liver fibrosis was found to be more serious in Egr-1 knock-out mice. N-acetyl-p-benzoquinoneimine (NAPQI), the APAP hepatotoxic metabolite, increased cellular mRNA expression of α-SMA, Col1a1, Col3a1, TGF-β, induced ERK1/2 and Smad2/3 phosphorylation and Egr-1 nuclear translocation in hepatic stellate LX2 cells. In conclusion, long-term administration of APAP induced liver fibrosis in mice, and Egr-1 was critically involved in this process. This study points out a warning and reference for patients with long-term APAP ingestion in clinic."	"Integrated expression analysis identifies transcription networks in mouse and human gastric neoplasia. Gastric cancer (GC) is a leading cause of cancer-related deaths worldwide. The Tff1 knockout (KO) mouse model develops gastric lesions that include low-grade dysplasia (LGD), high-grade dysplasia (HGD), and adenocarcinomas. In this study, we used Affymetrix microarrays gene expression platforms for analysis of molecular signatures in the mouse stomach [Tff1-KO (LGD) and Tff1 wild-type (normal)] and human gastric cancer tissues and their adjacent normal tissue samples. Combined integrated bioinformatics analysis of mouse and human datasets indicated that 172 genes were consistently deregulated in both human gastric cancer samples and Tff1-KO LGD lesions (P &lt; .05). Using Ingenuity pathway analysis, these genes mapped to important transcription networks that include MYC, STAT3, β-catenin, RELA, NFATC2, HIF1A, and ETS1 in both human and mouse. Further analysis demonstrated activation of FOXM1 and inhibition of TP53 transcription networks in human gastric cancers but not in Tff1-KO LGD lesions. Using real-time RT-PCR, we validated the deregulated expression of several genes (VCAM1, BGN, CLDN2, COL1A1, COL1A2, COL3A1, EpCAM, IFITM1, MMP9, MMP12, MMP14, PDGFRB, PLAU, and TIMP1) that map to altered transcription networks in both mouse and human gastric neoplasia. Our study demonstrates significant similarities in deregulated transcription networks in human gastric cancer and gastric tumorigenesis in the Tff1-KO mouse model. The data also suggest that activation of MYC, STAT3, RELA, and β-catenin transcription networks could be an early molecular step in gastric carcinogenesis."	"Increased expression of latent TGF-β-binding protein 4 affects the fibrotic process in scleroderma by TGF-β/SMAD signaling. Scleroderma is a fibrosis-related disorder characterized by cutaneous and internal organ fibrosis, and excessive collagen deposition in extracellular matrix (ECM) is a major cause of fibrosis. Transforming growth factor-β (TGF-β)/SMAD signaling has a central role in the pathogenesis of fibrosis by inducing abnormal collagen accumulation in ECM, and latent TGF-β-binding protein 4 (LTBP-4) affects the secretion of latent TGF-β to ECM. A previous study indicated that bleomycin (BLM) treatment increased LTBP-4 expression in lung fibroblasts of Thy-1 knockout mice with lung fibrosis, and LTBP-4 further promoted TGF-β bioavailability as well as SMAD3 phosphorylation. However, the expression and function of LTBP-4 in human scleroderma remain unclear. We aimed to investigate the potential role of LTBP-4 in scleroderma through clinical, in vivo and in vitro studies. LTBP-4 and TGF-β expressions were significantly upregulated in systemic scleroderma (SSc) patients' plasma compared with normal controls (LTBP-4, 1,215±100.2 vs 542.8±41.7 ng/ml, P&lt;0.0001; TGF-β, 1.5±0.2 vs 0.7±0.1 ng/ml, P=0.0031), while no significant difference was found between localized scleroderma (LSc) and normal controls. The plasma concentrations of LTBP-4 and TGF-β were even higher in SSc patients with lung fibrosis (LTBP-4, 1462± 137.3 vs 892.8±113.4 ng/ml, P=0.0037; TGF-β, 2.0±0.4 vs 0.9±0.2 ng/ml, P=0.0212) and esophagus involvement (1390±134.4 vs 940.7±127.0 ng/ml, P=0.0269; TGF-β, 1.9±0.3 vs 0.9±0.2 ng/ml, P=0.0426). The area under receiver operating characteristics (ROC) curve of LTBP-4 was 0.86. Immunohistochemistry measurement also demonstrated a higher LTBP-4 expression in sclerotic skin tissue of LSc and SSc compared with normal controls. More positive fibroblasts were also found in BLM-induced scleroderma mouse model than the saline-treated group. In in vitro studies, knockdown of LTBP-4 in SSc skin fibroblasts prominently reduced downstream COL1A1, COL1A2, and COL3A1 mRNA level by 84%, 82%, and 43%, respectively, and other fibrosis-related genes' expression were also decreased. Furthermore, extracellular TGF-β level and the SMAD2/3 phosphorylation were inhibited through LTBP-4 knockdown treatment, suggesting that the knockdown of LTBP-4 reduced the collagen expression through TGF-β/SMAD signaling pathway. Taken together, these data suggest that LTBP-4 affects fibrotic process in scleroderma, and the high expression of LTBP-4 in SSc plasma may serve as a clinical biomarker in diagnosing this disease. In addition, this study also lays the theoretical foundation for targeting LTBP-4 as treatment of scleroderma."	"Bi-allelic variants in COL3A1 encoding the ligand to GPR56 are associated with cobblestone-like cortical malformation, white matter changes and cerebellar cysts. Collagens are one of the major constituents of the pial membrane, which plays a crucial role in neuronal migration and cortical lamination during brain development. Type III procollagen, the chains of which are encoded by COL3A1, is the ligand of the G protein-coupled receptor 56 (GPR56), also known as adhesion G protein-coupled receptor G1. Bi-allelic mutations in GPR56 give rise to cobblestone-like malformation, white matter changes and cerebellar dysplasia. This report shows that bi-allelic mutations in COL3A1 are associated with a similar phenotype. Exome analysis was performed in a family consisting of two affected and two non-affected siblings. Brain imaging studies of this family and of two previously reported individuals with bi-allelic mutations in COL3A1 were reviewed. Functional assays were performed on dermal fibroblasts. Exome analysis revealed a novel homozygous variant c.145C&gt;G (p.Pro49Ala) in exon 2 of COL3A1. Brain MRI in the affected siblings as well as in the two previously reported individuals with bi-allelic COL3A1 mutations showed a brain phenotype similar to that associated with mutations in GPR56. Homozygous or compound heterozygous mutations in COL3A1 are associated with cobblestone-like malformation in all three families reported to date. The variability of the phenotype across patients suggests that genetic alterations in distinct domains of type III procollagen can lead to different outcomes. The presence of cobblestone-like malformation in patients with bi-allelic COL3A1 mutations emphasises the critical role of the type III collagen-GPR56 axis and the pial membrane in the regulation of brain development and cortical lamination."	"The mammalian target of rapamycin inhibitor everolimus suppresses proliferation, metabolic activity and collagen synthesis of human fibroblasts in vitro and exerts antifibrogenic effects in vivo. NA"	"Prediction and Analysis of Key Genes in Glioblastoma Based on Bioinformatics. Understanding the mechanisms of glioblastoma at the molecular and structural level is not only interesting for basic science but also valuable for biotechnological application, such as the clinical treatment. In the present study, bioinformatics analysis was performed to reveal and identify the key genes of glioblastoma multiforme (GBM). The results obtained in the present study signified the importance of some genes, such as COL3A1, FN1, and MMP9, for glioblastoma. Based on the selected genes, a prediction model was built, which achieved 94.4% prediction accuracy. These findings might provide more insights into the genetic basis of glioblastoma."	"A New COL3A1 Mutation in Ehlers-Danlos Syndrome Vascular Type With Different Phenotypes in the Same Family. Vascular Ehlers-Danlos syndrome (vEDS) is a rare and severe connective tissue disorder caused by mutations in the collagen type III alpha I chain ( COL3A1) gene. We describe a pathogenetic heterozygous COL3A1 mutation c.3140 G&gt;A, p. Gly1047Asp, identified using next-generation sequencing, in a 40-year-old Italian female. The genetic test performed on her relatives, which present different clinical phenotypes, confirmed that they carry the same mutation in heterozygous state. This finding confirms that mutations causing vEDS have an incomplete penetrance."	"Adipose tissue is influenced by hypoxia of obstructive sleep apnea syndrome independent of obesity. Obstructive sleep apnea syndrome (OSAS) is associated with increased cardiovascular risk and diabetes independent of obesity. We investigated whether adipose tissue dysfunction is exacerbated due to increased tissue hypoxia. Adipose tissue (AT) oxygenation was measured with a Clarke-type electrode (pATO2) in 16 men with OSAS before and after 4 months of continuous positive airway pressure therapy (CPAP) and in BMI-matched controls. Oxygenation was simultaneously monitored in arterial blood by pulse oximetry (SaO2); mixed blood in AT microcirculation by reflectance spectroscopy (SATO2) along with blood flow. Markers of hypoxia, adipo- and angiogenesis, inflammation and fibrosis were analysed in AT and serum. OSAS subjects were more insulin resistant. Despite lower arterial SaO2 (95.4±1.3% vs. 97.1±1.6%, P=0.013) in subjects with OSAS, there was no difference in the oxygen content of AT microcirculation (61.6±18.4 vs. 72.2±7.0%, P=0.07) or pATO2 (49.2±7.5 vs. 50.4±14.7mmHg, P=0.83) between groups. Resting AT blood flow was higher in OSAS compared to controls (108.5±22.7 vs. 78.9±24.9au, P&lt;0.005) and strongly associated with inflammation markers IL-6 and MCP-1. AT of OSAS subjects showed increased inflammation (TNFA P=0.049) and fibrosis (COL3A1 P=0.02), a trend of higher HIF1A expression (P=0.06) and reduced adipogenesis (PPARG P=0.006). After CPAP, only expression of the lipid deposition marker LPL increased (30%, P=0.047). Adipose tissue of awake OSAS subjects appears no more hypoxic than adipose tissue of BMI-matched controls despite daytime hypoxaemia. Increased adipose tissue blood flow may be explained by an increased inflammatory response. We observe features of adipose dysfunction in subjects with OSAS, which attribute to increased cardiometabolic risk associated with this condition."	"Thrombospondin-1 and microRNA-1 expression in response to multiwalled carbon nanotubes in alveolar epithelial cells. Thrombospondin-1 (TSP-1) is a glycoprotein that plays a role in extracellular matrix (ECM) remodeling. Previously, we have shown that multiwalled carbon nanotubes (MWCNT) regulate ECM components TGFβ and its target Col3A1 in alveolar epithelial cells. In this study, we investigated the effect of MWCNT on TSP-1 and microRNA-1 (miR-1) in the regulation of TGFβ in ECM remodeling using alveolar epithelial A549 cells. A549 cells were treated with MWCNT (20 or 50 µg/mL) for 6 or 24 h and the expression of TSP-1 and miR-1, and the exogenous miR-1 effect on cell morphology were analyzed. MWCNT induced in a time- and dose-dependent manner the expression of TSP-1. miR-1 was suppressed by MWCNT after 6 or 24 h of treatment regardless of the dose. TSP-1 and miR-1 negatively correlated with each other, r = -0.58. Exogenous administration of miR-1 induced alveolar epithelial cell morphology changes including cell clustering, whereas inhibition of miR-1 induced less cell to cell contact, cell rounding, and cellular projections. IntAct molecular network interactions analysis revealed that TSP-1 interacts with 21 molecular factors including ECM genes, and molecules. These results indicate a relationship between that TSP-1, MWCNT, and TGFβ, and suggest TSP-1 may play a role in MWCNT-induced TGFβ and ECM remodeling. Moreover, these data also suggest an inverse relationship between TSP-1 and miR-1 and a potential role of miR-1 in MWCNT-induced fibrotic signaling. © 2016 Wiley Periodicals, Inc. Environ Toxicol 32: 1596-1606, 2017."	"Tranilast Inhibits Genes Functionally Involved in Cell Proliferation, Fibrosis, and Epigenetic Regulation and Epigenetically Induces miR-29c Expression in Leiomyoma Cells. Tranilast (N-3,4-dimethoxycinnamoyl anthranilic acid) is an antiallergic agent with inhibitory effects on cell proliferation and extracellular matrix production. Here we assess the effect of tranilast on the expression of miR-29c and genes functionally involved in cell proliferation, fibrosis, and epigenetic regulation in isolated leiomyoma smooth muscle cells (LSMC). Tranilast significantly inhibited the rate of LSMC proliferation, which was associated with downregulation of cell cycle progression genes cyclin D1 (CCND1) and cyclin-dependent kinase 2 (CDK2) expression at messenger RNA and protein levels ( P &lt; .05). Tranilast also suppressed the expression of collagen type I (COL1), collagen type III alpha 1 chain (COL3A1), the profibrotic cytokine, transforming growth factor β-3 (TGF-β3), DNA (cytosine-5)-methyltransferase 1 (DNMT1), and enhancer of zeste homolog 2 (EZH2), which regulate epigenetic status of gene promoters ( P &lt; .05). Tranilast also significantly induced the expression of cellular and secreted miR-29c through downregulation of methylation status of miR-29c promoter ( P &lt; .05). In addition, tranilast suppressed the activity of luciferase reporter containing 3'UTR of COL3A1 and CDK2, which are downstream targets of miR-29c ( P &lt; .05). Knockdown of miR-29c expression attenuated the inhibitory effects of tranilast on COL3A1 and CDK2 protein expression ( P &lt; .05). Collectively, these findings suggest that tranilast could have therapeutic potential as an inhibitory agent for leiomyoma growth and its associated symptoms."	"Luteolin-7-diglucuronide attenuates isoproterenol-induced myocardial injury and fibrosis in mice. Myocardial injury and ensuing fibrotic alterations impair normal heart architecture and cause cardiac dysfunction. Oxidative stress has been recognized as a key player in the pathogenesis of cardiac injury and progression of cardiac dysfunction, and promoting fibrosis. In the current study we investigated whether luteolin-7-diglucuronide (L7DG), a naturally occurring antioxidant found in edible plants, could attenuate isoproterenol (ISO)-induced myocardial injury and fibrosis in mice and the underlying mechanisms. Myocardial injury and fibrosis were induced in mice via injection of ISO (5 mg·kg<sup>-1</sup>·d<sup>-1</sup>, ip) for 5 or 10 d. Two treatment regimens (pretreatment and posttreatment) were employed to administer L7DG (5-40 mg·kg<sup>-1</sup>·d<sup>-1</sup>, ip) into the mice. After the mice were euthanized, morphological examinations of heart sections revealed that both L7DG pretreatment and posttreatment regimens significantly attenuated ISO-induced myocardial injury and fibrosis. But the pretreatment regimen caused better protection against ISO-induced myocardial fibrosis than the posttreatment regimen. Furthermore, L7DG pretreatment blocked ISO-stimulated expression of the genes (Cyba, Cybb, Ncf1, Ncf4 and Rac2) encoding the enzymatic subunits of NADPH oxidase, which was the primary source of oxidant production in mammalian cells. Moreover, L7DG pretreatment significantly suppressed ISO-stimulated expression of collagen genes Col1a1, Col1a2, Col3a1, and Col12a1 and non-collagen extracellular matrix genes fibrillin-1, elastin, collagen triple helix repeat containing 1 and connective tissue growth factor. In addition, L7DG pretreatment almost reversed ISO-altered expression of microRNAs that were crosstalking with TGFβ-mediated fibrosis, including miR-29c-3p, miR-29c-5p, miR-30c-3p, miR-30c-5p and miR-21. The current study demonstrated for the first time that L7DG is pharmacologically effective in protecting the heart against developing ISO-induced injury and fibrosis, justifying further evaluation of L7DG as a cardioprotective agent to treat related cardiovascular diseases."	"Six uneventful pregnancy outcomes in an extended vascular Ehlers-Danlos syndrome family. Vascular Ehlers-Danlos Syndrome (vEDS) is caused by heterozygous mutations in COL3A1 and is characterized by fragile vasculature and hollow organs, with a high risk of catastrophic events at a young age. During pregnancy and delivery, maternal mortality rates up until 25% have been reported. However, recent pedigree analysis reported a substantial lower pregnancy-related mortality rate of 4.9%. Here, we describe an extended vEDS family with multiple uneventful pregnancy outcomes. In the proband, a 37-year-old woman, DNA-analysis because of an asymptomatic iliac artery dissection revealed a pathogenic mutation in COL3A1 (c.980G&gt;A; p. Gly327Asp). She had had three uneventful vaginal deliveries. At the time of diagnosis, her 33-year-old niece was 25 weeks pregnant. She had had one uneventful vaginal delivery. Targeted DNA-analysis revealed that she was carrier of the COL3A1 mutation. Ultrasound detected an aneurysm in the abdominal aorta with likely a dissection. An uneventful elective cesarean section was performed at a gestational age of 37 weeks. The 40-year-old sister of our proband had had one uneventful vaginal delivery and an active pregnancy wish. Cascade DNA-screening showed her to carry the COL3A1 mutation. Computed Tomography Angiography (CTA) of her aorta revealed a type B dissection with the most proximal entry tear just below the superior mesenteric artery. Pregnancy was therefore discouraged. This familial case illustrates the complexity and challenges of reproductive decision-making in a potentially lethal condition as vEDS, and highlights the importance of a multidisciplinary approach. Moreover, it suggests that previous pregnancy-related risks of vEDS may be overestimated. © 2016 Wiley Periodicals, Inc."	"Genetic Variants and Anterior Cruciate Ligament Rupture: A Systematic Review. Studies have shown a familial predisposition for anterior cruciate ligament (ACL) rupture and have been followed by genetic-association studies on polymorphisms in candidate genes in recent years. To date, no systematic review with a best-evidence synthesis has evaluated the influence of genetics on this devastating knee injury. Our objective was to evaluate the association between genetic variants and ACL rupture. We performed an extensive search in Embase, MEDLINE, Web of Science, Scopus, PubMed Publisher, Cochrane Register of Clinical Trials, and Google scholar up to 24 August 2015. Studies were eligible if they met the following inclusion criteria: (1) design was a case-control study, retrospective or prospective follow-up study, or a randomized controlled trial (RCT); (2) the study examined the association between a genetic variant and ACL rupture in both an ACL and a control group. We determined the risk of bias for all included studies. We included a total of 16 studies (eight at high risk of bias and eight with an unclear risk) that examined 33 different DNA variants. Conflicting evidence was found for the COL1A1 rs1800012 and COL3A1 rs1800255 variants, whereas limited evidence was found for no association of the COL5A1 rs12722 and rs13946 and COL12A1 rs970547 variants (all encoding collagen). Evidence was insufficient to draw conclusions as to whether any other genetic variant identified in this review had any association with ACL rupture. More research is needed to support a clear association between ACL rupture and genetic variants. Genome-wide studies are recommended for exploring more potential genetic variants. Moreover, large prospective studies are needed to draw robust conclusions."	"Connexin37 deficiency alters organic bone matrix, cortical bone geometry, and increases Wnt/β-catenin signaling. Deletion of connexin (Cx) 37 in mice leads to increased cancellous bone mass due to defective osteoclast differentiation. Paradoxically; however, Cx37-deficient mice exhibit reduced cortical thickness accompanied by higher bone strength, suggesting a contribution of Cx37 to bone matrix composition. Thus, we investigated whether global deletion of Cx37 alters the composition of organic bone extracellular matrix. Five-month-old Cx37<sup>-/-</sup> mice exhibited increased marrow cavity area, and periosteal and endocortical bone surface resulting in higher total area in tibia compared to Cx37<sup>+/+</sup> control mice. Deletion of Cx37 increased genes involved in collagen maturation (loxl3 and loxl4) and glycosaminoglycans- (chsy1, chpf and has3) proteoglycans- associated genes (biglycan and decorin). In addition, expression of type II collagen assessed by immunostaining was increased by 82% whereas collagen maturity by picrosirius-polarizarion tended to be reduced (p=0.071). Expression of glycosaminoglycans by histochemistry was decreased, whereas immunostaining revealed that biglycan was unchanged and decorin was slightly increased in Cx37<sup>-/-</sup> bone sections. Consistent with these in vivo findings, MLO-Y4 osteocytic cells silenced for Cx37 gene exhibited increased mRNA levels for collagen synthesis (col1a1 and col3a1) and collagen maturation (lox, loxl1 and loxl2 genes). Furthermore, mechanistic studies showed Wnt/β-catenin activation in MLO-Y4 osteocytic cells, L5 vertebra, and authentic calvaria-derived osteocytes isolated by fluorescent-activated cell sorter. Our findings demonstrate that altered profile of the bone matrix components in Cx37-deficient mice acts in favor of higher resistance to fracture in long bones."	"miR-27b inhibits fibroblast activation via targeting TGFβ signaling pathway. MicroRNAs are a group of small RNAs that regulate gene expression at the posttranscriptional level. They regulate almost every aspect of cellular processes. In this study, we investigated whether miR-27b regulates pulmonary fibroblast activation. We found that miR-27b was down-regulated in fibrotic lungs and fibroblasts from an experimental mouse model of pulmonary fibrosis. The overexpression of miR-27b with a lentiviral vector inhibited TGFβ1-stimulated mRNA expression of collagens (COL1A1, COL3A1, and COL4A1) and alpha-smooth muscle actin, and protein expression of Col3A1 and alpha-smooth muscle actin in LL29 human pulmonary fibroblasts. miR-27b also reduced contractile activity of LL29. TGFβ receptor 1 and SMAD2 were identified as the targets of miR-27b by 3'-untranslated region luciferase reporter and western blotting assays. Our results suggest that miR-27b is an anti-fibrotic microRNA that inhibits fibroblast activation by targeting TGFβ receptor 1 and SMAD2. This discovery may provide new targets for therapeutic interventions of idiopathic pulmonary fibrosis."	"Effect of ginseng extract on the TGF-β1 signaling pathway in CCl4-induced liver fibrosis in rats. Liver diseases are major global health problems. Ginseng extract has antioxidant, immune-modulatory and anti-inflammatory activities. This study investigated the effect of ginseng extract on carbon tetrachloride (CCl4)-induced liver fibrosis in rats. Male Wistar rats were divided into four groups: control group, ginseng group, CCl4 group and CCl4 + ginseng group. Liver injury was induced by the intraperitoneal (I.P) injection of 3 ml/kg CCl4 (30% in olive oil) weekly for 8 weeks. The control group was I.P injected with olive oil. The expression of genes encoding transforming growth factor beta (TGF-β), type I TGF-β receptor (TβR-1), type II TGF-β receptor (TβR-II), mothers against decapentaplegic homolog 2 (Smad2), Smad3, Smad4, matrix metalloproteinase 2 (MMP2), MMP9, tissue inhibitor matrix metalloproteinase-1 (TIMP-1), Collagen 1a2 (Col1a2), Collagen 3a1 (Col3a1), interleukin-8 (IL-8) and interleukin -10 (IL-10) were measured by real-time PCR. Treatment with ginseng extract decreased hepatic fat deposition and lowered hepatic reticular fiber accumulation compared with the CCl4 group. The CCl4 group showed a significant increase in hepatotoxicity biomarkers and up-regulation of the expression of genes encoding TGF-β, TβR-I, TβR-II, MMP2, MMP9, Smad-2,-3, -4, and IL-8 compared with the control group. However, CCl4 administration resulted in the significant down-regulation of IL-10 mRNA expression compared with the control group. Interestingly, ginseng extract supplementation completely reversed the biochemical markers of hepatotoxicity and the gene expression alterations induced by CCl4. ginseng extract had an anti-fibrosis effect via the regulation of the TGF-β1/Smad signaling pathway in the CCl4-induced liver fibrosis model. The major target was the inhibition of the expression of TGF-β1, Smad2, and Smad3."	"Skeletal muscle extracellular matrix remodeling after short-term overfeeding in healthy humans. Skeletal muscle extracellular matrix (ECM) remodeling has been proposed as a feature of the pathogenic milieu associated with obesity and metabolic dysfunction. The aim of the current study was to examine the timeline of this response and determine whether 3 and 28days of overfeeding alters markers of ECM turnover. Forty healthy individuals were overfed by 1250kcal/day for 28days. Hyperinsulinemic-euglycemic clamps and abdominal fat distribution were performed at baseline and day 28 of overfeeding and skeletal muscle biopsies taken at baseline, day 3 and day 28. mRNA expression (COL1a1, COL3a1, MMP2, MMP9, TIMP1, CD68, Integrin) was performed in 19 subjects that consented to having all biopsies performed and microarray analysis was performed in 8 participants at baseline and day 28. In the whole cohort, body weight increased by 0.6±0.1 and 2.7±0.3kg at days 3 and 28 (both P&lt;0.001), respectively. Glucose infusion rate during the hyperinsulinemic-euglycemic clamp decreased from 54.8±2.8 at baseline to 50.3±2.5μmol/min/kg FFM at day 28 of overfeeding (P=0.03). Muscle COL1 and COL3 and MMP2 mRNA levels were significantly higher 28days after overfeeding (all P&lt;0.05), with no significant changes in MMP9, TIMP1, CD68 and integrin expression. Microarray based gene set tests revealed that pathways related to ECM receptor interaction, focal adhesion and adherens junction were differentially altered. Skeletal muscle ECM remodeling occurs early in response to over-nutrition with as little as 3% body weight gain. Our findings contribute to the growing evidence linking muscle ECM remodeling and accumulation as another sequela of obesity-related insulin resistance."	"CircRNA_000203 enhances the expression of fibrosis-associated genes by derepressing targets of miR-26b-5p, Col1a2 and CTGF, in cardiac fibroblasts. Circular RNAs (circRNAs) participate in regulating gene expression in diverse biological and pathological processes. The present study aimed to investigate the mechanism underlying the modulation of circRNA_000203 on expressions of fibrosis-associated genes in cardiac fibroblasts. CircRNA_000203 was shown upregulated in the diabetic mouse myocardium and in Ang-II-induced mouse cardiac fibroblasts. Enforced-expression of circRNA_000203 could increase expressions of Col1a2, Col3a1 and α-SMA in mouse cardiac fibroblasts. RNA pull-down and RT-qPCR assay indicated that circRNA_000203 could specifically sponge miR-26b-5p. Dual luciferase reporter assay revealed that miR-26b-5p interacted with 3'UTRs of Col1a2 and CTGF, and circ_000203 could block the interactions of miR-26b-5p and 3'UTRs of Col1a2 and CTGF. Transfection of miR-26b-5p could post-transcriptionaly inhibit expressions of Col1a2 and CTGF, accompanied with the suppressions of Col3a1 and α-SMA in cardiac fibroblasts. Additionally, over-expression of circRNA_000203 could eliminate the anti-fibrosis effect of miR-26b-5p in cardiac fibroblasts. Together, our results reveal that suppressing the function of miR-26b-5p contributes to the pro-fibrosis effect of circRNA_000203 in cardiac fibroblasts."	"Protective effect of tanshinone IIA against cardiac hypertrophy in spontaneously hypertensive rats through inhibiting the Cys-C/Wnt signaling pathway. The study aimed to investigate the protective effect of tanshinone IIA against cardiac hypertrophy in spontaneously hypertensive rats (SHRs) through the Cys-C/Wnt signaling pathway. Thirty SHRs were randomly divided into cardiac hypertrophy, low- and high-dose tanshinone IIA groups. Ten Wistar-Kyoto rats were selected as control group. The systolic blood pressure (SBP), heart weight (HW), left ventricular weight (LVW) and body weight (BW) of all rats were recorded. HE staining and qRT-PCR were applied to observe the morphology of myocardial tissue and mRNA expressions of COL1A1 and COL3A1. ELISA and Western blotting were used to measure the serum asymmetric dimethylarginine (ADMA), nitric oxide (NO) and cardiac troponin I (cTnI) levels, and the expressions of the Cys-C/Wnt signaling pathway-related proteins, eNOS and Nox4. Compared with the cardiac hypertrophy group, the SBP, HW/BW, LVW/BW, swelling degree of myocardial cells, COL1A1 and COL3A1 mRNA expressions, serum cTnI and ADMA levels, and the Cys-C/Wnt signaling pathway-related proteins and Nox4 expressions in the low- and high-dose tanshinone IIA groups were decreased, but the endothelial NO synthase (eNOS), phosphorylated eNOS (Ser1177) and NO expressions were increased. No significant difference was found between the low- and high-dose tanshinone IIA groups. Our study indicated a protective effect of tanshinone IIA against cardiac hypertrophy in SHRs through inhibiting the Cys-C/Wnt signaling pathway."	"Identification of a missense mutation of COL3A1 in a Chinese family with atypical Ehlers-Danlos syndrome using targeted next-generation sequencing. Aortopathy represents an important cause of mortality in industrialized countries, with a number of genes identified as predispose factors. It can be difficult to identify the genetic lesions underlying this disorder, particularly when the phenotype is atypical. The present study performed targeted next‑generation sequencing of 428 genes associated with cardiovascular diseases in a family with aortopathy, the proband of which presented with abdominal aortic aneurysm rupture only, with tissue fragility noted in surgery. After targeted capture, sequencing and bioinformatics analysis, a missense mutation, p.A1259T, was identified in the collagen type III α1 (COL3A1) gene and co‑segregated with the disease in the family. Crystal structure modeling revealed abnormal hydrogen bonds generated by the mutation, which likely affected the spatial structure of the procollagen C‑propeptide. Mutations in the procollagen C‑propeptide are rare and genotype‑phenotype correlation may explain the atypical manifestations of affected individuals. The results of the present study suggested that targeted gene capture combined with next‑generation sequencing can serve as a useful technique in the genetic diagnosis of aortopathy, particularly in the content of an atypical phenotype."	"miR-29c is implicated in the cardioprotective activity of Panax notoginseng saponins against isoproterenol-induced myocardial fibrogenesis. Panax notoginseng (Burkill) F.H. Chen (Araliaceae) has a long history of clinical application in China for the treatment of cardiovascular diseases. Panax notoginseng saponins (PNS) have been proven to be the major cardioprotective substances of Panax notoginseng (Burkill) F.H. Chen (Araliaceae). The current study further investigated the molecular mechanisms associated with the cardioprotective effect of PNS. C57BL/6J mice were subject to isoproterenol (ISO)-induced myocardial injury in the absence or presence of PNS treatment. Histological, immunohistochemical and molecular biological approaches were taken to assess the effects of PNS treatment on ISO-induced myocardial injury and ensuing fibrogenesis. PNS treatment significantly attenuated ISO-induced myocardial injury and fibrosis. The expression of an anti-fibrotic microRNA, miR-29c, was significantly decreased in ISO-challenged mouse hearts. In contrast, PNS treatment resulted in increased cardiac expression of miR-29c. The expression of miR-29c target genes including Collagen (Col) 1a1, Col1a2, Col3a1 and Col5a1, fibrillin 1 (Fbn1) as well as TGFβ1 was significantly increased by ISO, which exhibited decreased expression by PNS intervention. Our results demonstrate for the first time that the cardioprotective effects of PNS could in part implicate increased expression of miR-29c in the heart, which may help increase the understanding of the pharmacological activities of PNS in treating cardiovascular disorders."	"Liraglutide Reduces Both Atherosclerosis and Kidney Inflammation in Moderately Uremic LDLr-/- Mice. Chronic kidney disease (CKD) leads to uremia. CKD is characterized by a gradual increase in kidney fibrosis and loss of kidney function, which is associated with a progressive increase in risk of atherosclerosis and cardiovascular death. To prevent progression of both kidney fibrosis and atherosclerosis in uremic settings, insight into new treatment options with effects on both parameters is warranted. The GLP-1 analogue liraglutide improves glucose homeostasis, and is approved for treatment of type 2 diabetes. Animal studies suggest that GLP-1 also dampens inflammation and atherosclerosis. Our aim was to examine effects of liraglutide on kidney fibrosis and atherosclerosis in a mouse model of moderate uremia (5/6 nephrectomy (NX)). Uremic (n = 29) and sham-operated (n = 14) atherosclerosis-prone low density lipoprotein receptor knockout mice were treated with liraglutide (1000 μg/kg, s.c. once daily) or vehicle for 13 weeks. As expected, uremia increased aortic atherosclerosis. In the remnant kidneys from NX mice, flow cytometry revealed an increase in the number of monocyte-like cells (CD68+F4/80-), CD4+, and CD8+ T-cells, suggesting that moderate uremia induced kidney inflammation. Furthermore, markers of fibrosis (i.e. Col1a1 and Col3a1) were upregulated, and histological examinations showed increased glomerular diameter in NX mice. Importantly, liraglutide treatment attenuated atherosclerosis (~40%, p &lt; 0.05) and reduced kidney inflammation in NX mice. There was no effect of liraglutide on expression of fibrosis markers and/or kidney histology. This study suggests that liraglutide has beneficial effects in a mouse model of moderate uremia by reducing atherosclerosis and attenuating kidney inflammation."	"Quantitative proteomics analysis of cartilage response to mechanical injury and cytokine treatment. Mechanical damage at the time of joint injury and the ensuing inflammatory response associated with elevated levels of pro-inflammatory cytokines in the synovial fluid, are reported to contribute to the progression to osteoarthritis after injury. In this exploratory study, we used a targeted proteomics approach to follow the progression of matrix degradation in response to mechanical damage and cytokine treatment of human knee cartilage explants, and thereby to study potential molecular biomarkers. This proteomics approach allowed us to unambiguously identify and quantify multiple peptides and proteins in the cartilage medium and explants upon treatment with ±injurious compression ±cytokines, treatments that mimic the earliest events in post-traumatic OA. We followed degradation of different protein domains, e.g., G1/G2/G3 of aggrecan, by measuring representative peptides of matrix proteins released into the medium at 7 time points throughout the 21-day culture period. COMP neo-epitopes, which were previously identified in the synovial fluid of knee injury/OA patients, were also released by these human cartilage explants treated with cyt and cyt+inj. The absence of collagen pro-peptides and elevated levels of specific COMP and COL3A1 neo-epitopes after human knee trauma may be relevant as potential biomarkers for post-traumatic OA. This model system thereby enables study of the kinetics of cartilage degradation and the identification of biomarkers within cartilage explants and those released to culture medium. Discovery proteomics revealed that candidate proteases were identified after specific treatment conditions, including MMP1, MMP-3, MMP-10 and MMP-13."	"Inhibition of osteo/chondrogenic transformation of vascular smooth muscle cells by MgCl2 via calcium-sensing receptor. The progression of vascular calcification, an active process promoted by osteo/chondrogenic transformation of vascular smooth muscle cells (VSMCs) is attenuated by activation of the calcium-sensing receptor (CASR). Recent in-vitro studies revealed that vascular calcification could be blunted by Mg, but the underlying mechanisms remained elusive. The present study explored whether the effects of MgCl2 on vascular calcification involve the CASR. Experiments were performed in primary human aortic smooth muscle cells (HAoSMCs) and in the mouse vascular calcification model of vitamin D3 overload. Phosphate-induced calcium deposition and mRNA expression of the osteogenic markers msh homeobox 2 (MSX2), CBFA1 (core-binding factor α 1), and ALPL (tissue-nonspecific alkaline phosphatase) in HAoSMCs were blunted by additional treatment with MgCl2. MgCl2 upregulated CASR mRNA expression in HAoSMCs in a dose-dependent manner. Furthermore, the inhibitory effects of MgCl2 on phosphate-induced calcium deposition and osteogenic markers mRNA expression were mimicked by the CASR agonist GdCl3 and reversed by additional treatment with the CASR antagonist NPS-2143 or by silencing of the CASR gene in HAoSMCs. MgCl2 also blunted the osteogenic transformation of VSMCs induced by hydroxyapatite particles. High-dosed cholecalciferol treatment induced vascular calcification and upregulated aortic osteogenic markers Msx2, Cbfa1 and Alpl and collagen type I (Col1a1), collagen type III (Col3a1) and fibronectin (Fbn) mRNA expression in mice, effects reduced by additional treatment with MgCl2. These effects were paralleled by increased aortic Casr mRNA expression in cholecalciferol-treated mice, which was further augmented by MgCl2. The protective effects of MgCl2 on osteo/chondrogenic transformation of VSMCs and vascular calcification involve regulation of CASR and CASR-dependent signaling."	"MiR-590 Promotes Transdifferentiation of Porcine and Human Fibroblasts Toward a Cardiomyocyte-Like Fate by Directly Repressing Specificity Protein 1. Reprogramming of cardiac fibroblasts into induced cardiomyocyte-like cells represents a promising potential new therapy for treating heart disease, inducing significant improvements in postinfarct ventricular function in rodent models. Because reprogramming factors effective in transdifferentiating rodent cells are not sufficient to reprogram human cells, we sought to identify reprogramming factors potentially applicable to human studies. Lentivirus vectors expressing Gata4, Mef2c, and Tbx5 (GMT); Hand2 (H), Myocardin (My), or microRNA (miR)-590 were administered to rat, porcine, and human cardiac fibroblasts in vitro. induced cardiomyocyte-like cell production was then evaluated by assessing expression of the cardiomyocyte marker, cardiac troponin T (cTnT), whereas signaling pathway studies were performed to identify reprogramming factor targets. GMT administration induced cTnT expression in ≈6% of rat fibroblasts, but failed to induce cTnT expression in porcine or human cardiac fibroblasts. Addition of H/My and/or miR-590 to GMT administration resulted in cTNT expression in ≈5% of porcine and human fibroblasts and also upregulated the expression of the cardiac genes, MYH6 and TNNT2. When cocultured with murine cardiomyocytes, cTnT-expressing porcine cardiac fibroblasts exhibited spontaneous contractions. Administration of GMT plus either H/My or miR-590 alone also downregulated fibroblast genes COL1A1 and COL3A1. miR-590 was shown to directly suppress the zinc finger protein, specificity protein 1 (Sp1), which was able to substitute for miR-590 in inducing cellular reprogramming. These data support porcine studies as a surrogate for testing human cardiac reprogramming, and suggest that miR-590-mediated repression of Sp1 represents an alternative pathway for enhancing human cardiac cellular reprogramming."	"Artificial cartilage bio-matrix formed of hyaluronic acid and Mg2+-polyphosphate. Here we show that inorganic polyphosphate (polyP), a polyanionic metabolic regulator consisting of multiple phosphate residues linked by energy-rich phosphoanhydride bonds, is present in the synovial fluid. In a biomimetic approach, to enhance cartilage synthesis and regeneration, we prepared amorphous polyP microparticles with Mg2+ as counterions. The particles were characterised by X-ray diffraction (XRD), energy-dispersive X-ray (EDX) and Fourier transformed infrared spectroscopic (FTIR) analyses. Similar particles were obtained after addition of Mg2+ ions to a solution containing hyaluronic acid, as a major component of the synovial fluid, and soluble Na-polyP. The viscous paste-like material formed, composed of globular microparticles with diameter of 400 nm, strongly promoted the adhesion of chondrocytes and caused a significant upregulation of the expression of the genes encoding collagen type 3A1, as a marker for chondrocyte differentiation, and SOX9, a transcription factor that regulates chondrocyte differentiation and proliferation. The expression level of the collagen type 3A1 gene was also enhanced by exposure of chondrocytes to synovial fluid that was found to contain polyP with a size of about 80 phosphate residues. This stimulatory effect was abolished after pre-incubation of the synovial fluid with the polyP degrading alkaline phosphatase. We propose a strategy for treatment of joint dysfunctions caused by osteoarthritis based on the application of amorphous Mg2+-polyP microparticles thatprevent calcium crystal formation in the synovial fluid using scavenging Ca2+ ions (Mg2+/Ca2+ exchange) and enhance chondrocyte function after binding of the Ca2+-polyP to hyaluronic acid at the cartilage surface."	"TGF-β1 Induces Polypyrimidine Tract-Binding Protein to Alter Fibroblasts Proliferation and Fibronectin Deposition in Keloid. Human dermal fibrotic disease keloid has been a clinical challenge because of its tumour-like growth and the lack of effective therapy. Dysregulated alternative splicing events have been demonstrated in tumours and fibrosis. In the current study, for the first time, it was demonstrated that the splicing regulator polypyrimidine tract-binding protein (PTB), which plays a pivotal role in tumour proliferation, invasion and metastasis, is overexpressed in keloid tissues and fibroblasts. Additionally, TGF-β1 upregulated the expressions of PTB and its upstream regulator, C-MYC, in keloid fibroblasts. Furthermore, we suppressed PTB using siRNA in keloid fibroblasts and in a keloid xenograft nude mouse model. PTB knockdown significantly slowed the proliferation of keloid fibroblasts and accelerated the regression of transplanted keloid tissues, which was accompanied by a shift in the alternative splicing of USP5 and RTN4. Moreover, when PTB was suppressed, there was a reduction in excessive deposition of FN1 and COL3A1 in transplanted keloid tissues. However, only FN1 was downregulated in keloid fibroblasts that were cultured in media supplemented with TGF-β1. Our study provides evidence for the role of PTB in keloid pathophysiology and offers a novel therapeutic target for keloids. Most importantly, the role TGF-β1 regulation of PTB may provide new insights into the mechanisms underlying inflammatory cytokine-induced fibrosis."	"TAZ activation drives fibroblast spheroid growth, expression of profibrotic paracrine signals, and context-dependent ECM gene expression. Recent studies have implicated the Hippo pathway and its transcriptional effectors YAP and TAZ as necessary for fibroblast activation and tissue fibrosis. To test the specific and sufficient roles for TAZ in driving autonomous fibroblast activation, we cultured NIH3T3 fibroblasts expressing a doxycycline-inducible nuclear-localized mutant of TAZ (TAZ4SA) in scaffold-free 3D hanging drop spheroids, or on matrices of specified mechanical rigidity. Control NIH3T3 fibroblasts formed spheroids in hanging drop culture that remained stable and neither increased nor decreased in size significantly over 15 days. In contrast, TAZ4SA-transduced fibroblasts grew robustly in spheroid culture, and expressed enhanced levels of genes encoding profibrotic soluble factors connective tissue growth factor (CTGF), endothelin-1 (Et-1), and plasminogen activator inhibitor 1 (PAI-1). However, TAZ4SA expression was unable to enhance expression of extracellular matrix (ECM)-encoding genes Col1a1, Col1a2, Col3a1, or Fn1 in spheroid culture. Micromechanical testing indicated that spheroids composed of either control or TAZ4SA-expressing cells were highly compliant and indistinguishable in mechanical properties. In fibroblasts cultured on 2D matrices of compliance similar to spheroids, TAZ4SA expression was able to enhance contractile force generation, but was unable to enhance ECM gene expression. In contrast, culture on stiff hydrogels potentiated TAZ4SA enhancement of ECM expression. TAZ4SA enhancement of Col1a1 expression on soft matrices was potentiated by TGF-β1, while on stiff matrices it was abrogated by inhibition of myocardin-related transcription factor, demonstrating context-dependent crosstalk of TAZ with these pathways. These findings demonstrate sufficiency of TAZ activation for driving fibroblast proliferation, contraction, and soluble profibrotic factor expression, and mechanical context-dependent crosstalk of TAZ with other pathways in regulating Col1a1 expression."	"Protective Effects of Standardized Siegesbeckia glabrescens Extract and Its Active Compound Kirenol against UVB-Induced Photoaging through Inhibition of MAPK/NF-κB Pathways. Anti-photoaging effects of standardized Siegesbeckia glabrescens extract (SGE) and its major active compound kirenol were investigated using Hs68 human dermal fibroblasts and hairless mice, respectively. UVB-irradiated hairless mice that received oral SGE (600 mg/kg/day) showed reduced wrinkle formation and skinfold thickness compared with the UVB-irradiated control. Furthermore, SGE treatment increased the mRNA levels of collagen synthesis genes (COL1A1, COL3A1, COL4A1, and COL7A1) and activated antioxidant enzyme (catalase), while suppressing matrix metalloproteinase (MMP-2, -3, -9, and -13) expression. In Hs68 fibroblasts, kirenol also significantly suppressed MMP expression while increasing the expression of COL1A1, COL3A1, and COL7A1. Collectively, our data demonstrate that both SGE and kirenol attenuated UVB-induced photoaging in hairless mice and fibroblasts through inhibition of the mitogen-activated protein kinases and nuclear factor kappa B pathways, suggesting that SGE has potential to serve as a natural anti-photoaging nutraceutical."	"The Long Non-Coding RNA LncRNA8975-1 is Upregulated in Hypertrophic Scar Fibroblasts and Controls Collagen Expression. Long non-coding RNAs (lncRNAs) are thought to play crucial roles in human diseases. However, the function of lncRNAs in hypertrophic scar formation remains poorly understood. In this study, we investigated the expression of lncRNA8975-1 in hypertrophic scar tissues and fibroblasts by quantitative reverse transcription PCR (qRT-PCR). To investigate its function, overexpression and knockdown of lncRNA8975-1 were performed using lentivirus infection and Stealth RNAi transfection, respectively. Cell proliferation was detected by CCK-8 assay. The protein levels of collagens and alpha-smooth muscle actin (α-SMA) were analysed by western blot. We found that lncRNA8975-1 was overexpressed in hypertrophic scar tissues and dermal fibroblasts. Overexpression of lncRNA8975-1 inhibited cell proliferation and reduced the protein expression levels of COL1A2, COL1A1, COL3A1 and α-SMA in hypertrophic scar fibroblasts, whereas knockdown of lncRNA8975-1 had the opposite effect. Our results show that the long non-coding RNA lncRNA8975-1 is upregulated in hypertrophic scar fibroblasts; furthermore, it inhibits fibroblast proliferation and reduces collagen and α-SMA expression. Further studies on the mechanisms regulated by lncRNA8975-1 would lead to a better understanding of the pathogenesis of hypertrophic scar formation."	"An EP4 Receptor Agonist Inhibits Cardiac Fibrosis Through Activation of PKA Signaling in Hypertrophied Heart. Cardiac fibrosis is a pathological feature of myocardium of failing heart and plays causative roles in arrhythmia and cardiac dysfunction, but its regulatory mechanisms remain largely elusive. In this study, we investigated the effects of the novel EP4 receptor agonist ONO-0260164 on cardiac fibrosis in hypertrophied heart and explored the regulatory mechanisms in cardiac fibroblasts.In a mouse model of cardiac hypertrophy generated by transverse aortic constriction (TAC), ONO-0260164 treatment significantly prevented systolic dysfunction and progression of myocardial fibrosis at 5 weeks after TAC. In cultured neonatal rat cardiac fibroblasts, transforming growth factor-β1 (TGF-β1) induced upregulation of collagen type 1, alpha 1 (Col1a1) and type 3, alpha 1 (Col3a1), which was inhibited by ONO-0260164 treatment. ONO-0260164 activated protein kinase A (PKA) in the presence of TGF-β1 in the cardiac fibroblasts. PKA activation suppressed an increase in collagen expression induced by TGF-β1, indicating the important inhibitory roles of PKA activation in TGF-β1mediated collagen induction.We have demonstrated for the first time the antifibrotic effects of the novel EP4 agonist ONO-0260164 in vivo and in vitro, and the important role of PKA activation in the effects."	"Targeting EZH1 and EZH2 contributes to the suppression of fibrosis-associated genes by miR-214-3p in cardiac myofibroblasts. The role of microRNA-214-3p (miR-214-3p) in cardiac fibrosis was not well illustrated. The present study aimed to investigate the expression and potential target of miR-214-3p in angiotensin II (Ang-II)-induced cardiac fibrosis. MiR-214-3p was markedly decreased in the fibrotic myocardium of a mouse Ang-II infusion model, but was upregulated in Ang-II-treated mouse myofibroblasts. Cardiac fibrosis was shown attenuated in Ang-II-infused mice received tail vein injection of miR-214-3p agomir. Consistently, miR-214-3p inhibited the expression of Col1a1 and Col3a1 in mouse myofibroblasts in vitro. MiR-214-3p could bind the 3'-UTRs of enhancer of zeste homolog 1 (EZH1) and -2, and suppressed EZH1 and -2 expressions at the transcriptional level. Functionally, miR-214-3p mimic, in parallel to EZH1 siRNA and EZH2 siRNA, could enhance peroxisome proliferator-activated receptor-γ (PPAR-γ) expression and inhibited the expression of Col1a1 and Col3a1 in myofibroblasts. In addition, enforced expression of EZH1 and -2, and knockdown of PPAR-γ resulted in the increase of Col1a1 and Col3a1 in myofibroblasts. Moreover, the NF-κB signal pathway was verified to mediate Ang-II-induced miR-214-3p expression in myofibroblasts. Taken together, our results revealed that EZH1 and -2 were novel targets of miR-214-3p, and miR-214-3p might be one potential miRNA for the prevention of cardiac fibrosis."	"Next-generation sequencing and a novel COL3A1 mutation associated with vascular Ehlers-Danlos syndrome with severe intestinal involvement: a case report. The vascular type of Ehlers-Danlos syndrome is an autosomal dominant connective tissue disorder caused by a mutation in the COL3A1 gene encoding pro-alpha1 chain of type III collagen. The vascular type of Ehlers-Danlos syndrome causes severe fragility of connective tissues with arterial and intestinal ruptures and complications in surgical and radiological treatments. We present a case of a 38-year-old Italian woman who was diagnosed as having the vascular type of Ehlers-Danlos syndrome. Genetic testing, conducted by Target Enrichment approach (Agilent Technologies), identified a new mutation c.1493G&gt;A, p.G498D in exon 21 of COL3A1 gene (heterozygous state). This mutation disrupts the normal glycine-X-Y repetitions of type III procollagen by converting glycine to aspartic acid. We report a new genetic mutation associated with the vascular type of Ehlers-Danlos syndrome. We also describe clinical and genetic findings that are important to understand the genotype/phenotype correlation in patients with the vascular type of Ehlers-Danlos syndrome."	"Dynamic remodeling of endometrial extracellular matrix regulates embryo receptivity in cattle. We aimed to evaluate in the bovine endometrium whether (1) key genes involved in endometrial extracellular matrix (ECM) remodeling are regulated by the endocrine peri-ovulatory milieu; and (2) specific endometrial ECM-related transcriptome can be linked to pregnancy outcome. In Experiment 1, pre-ovulatory follicle growth of cows was manipulated to obtain two groups with specific endocrine peri-ovulatory profiles: the Large Follicle-Large CL group (LF-LCL) served as a paradigm for greater receptivity and fertility and showed greater plasma pre-ovulatory estradiol and post-ovulatory progesterone concentrations when compared to the Small Follicle-Small CL group (SF-SCL). Endometrium was collected on days 4 and 7 of the estrous cycle. Histology revealed a greater abundance of total collagen content in SF-SCL on day 4 endometrium. In Experiment 2, cows were artificially inseminated and, six days later, endometrial biopsies were collected. Cows were retrospectively divided into pregnant and non-pregnant (P vs. NP) groups after diagnosis on day 30. In both experiments, expression of genes related to ECM remodeling in the endometrium was studied by RNAseq and qPCR. Gene ontology analysis showed an inhibition in the expression of ECM-related genes in the high receptivity groups (LF-LCL and P). Specifically, there was down-regulation of TGFB2, ADAMTS2, 5 and 14, TIMP3 and COL1A2, COL3A1, COL7A1 and COL3A3 in the LF-LCL and P groups. In summary, the overlapping set of genes differently expressed in both fertility models: (1) suggests that disregulation of ECM remodeling can impair receptivity and (2) can be used as markers to predict pregnancy outcome in cattle."	"Targeted next-generation sequencing makes new molecular diagnoses and expands genotype-phenotype relationship in Ehlers-Danlos syndrome. Ehlers-Danlos syndrome (EDS) comprises a group of overlapping hereditary disorders of connective tissue with significant morbidity and mortality, including major vascular complications. We sought to identify the diagnostic utility of a next-generation sequencing (NGS) panel in a mixed EDS cohort. We developed and applied PCR-based NGS assays for targeted, unbiased sequencing of 12 collagen and aortopathy genes to a cohort of 177 unrelated EDS patients. Variants were scored blind to previous genetic testing and then compared with results of previous Sanger sequencing. Twenty-eight pathogenic variants in COL5A1/2, COL3A1, FBN1, and COL1A1 and four likely pathogenic variants in COL1A1, TGFBR1/2, and SMAD3 were identified by the NGS assays. These included all previously detected single-nucleotide and other short pathogenic variants in these genes, and seven newly detected pathogenic or likely pathogenic variants leading to clinically significant diagnostic revisions. Twenty-two variants of uncertain significance were identified, seven of which were in aortopathy genes and required clinical follow-up. Unbiased NGS-based sequencing made new molecular diagnoses outside the expected EDS genotype-phenotype relationship and identified previously undetected clinically actionable variants in aortopathy susceptibility genes. These data may be of value in guiding future clinical pathways for genetic diagnosis in EDS.Genet Med 18 11, 1119-1127."	"Collagen type III α1 as a useful diagnostic immunohistochemical marker for fibroepithelial lesions of the breast. Phyllodes tumors (PTs) of the breast constitute an uncommon group of fibroepithelial neoplasms that are classified into benign, borderline, and malignant categories based on a constellation of histologic characteristics including cytologic atypia, mitotic count, degree of stromal cellularity, stromal overgrowth, and microscopic margins. Accurately and reproducibly differentiating these tumors is a long-standing diagnostic challenge. In addition, the distinction between benign PT from cellular fibroadenoma (FA) is especially difficult because of overlapping microscopic features. We have previously shown differential expression of various collagens, including collagen type III α1 (Col3A) in breast carcinomas. In this study, we evaluated clinicopathological characteristics of 95 cases of fibroepithelial lesions including 56 PTs and 39 FAs (25 cellular FA, 14 typical FA) and correlated them with the immunohistochemical staining pattern for Col3A. We found that stromal Col3A expression was significantly increased in PTs when compared with FAs (P &lt; .0001). Among the PT groups, there was significantly increased expression from benign tumors through borderline to malignant tumors. High Col3A expression was associated with PT type, irregular margin status, and high mitotic activity. A distinct periductal cuffing pattern of Col3A staining was unique to PTs and absent in FAs. These findings suggest that Col3A can be a potential adjunct marker for both differentiating FA from PT and assessing malignant potential in PTs."	"miR-21 promotes collagen production in keloid via Smad7. To explore the biological function of miR-21 in the formation of keloid. Normal skin and keloid tissue samples underwent histopathologic study and qPCR analysis. The expression of miR-21 and mRNA expression of Smad7, Col1A1, Col3A1 in fibroblasts derived from keloid tissue and normal skin tissue samples were detected by qPCR. Normal and keloid fibroblasts were transfected with miR-21 mimics or inhibitor respectively, and expression of Smad7, Col1A1 and Col3A1 were examined. After the normal fibroblasts were transfected with Smad7 siRNA, expression of Col1A1 and Col3A1 were detected by Western blot and qPCR analysis. Collagen was obviously thick and disorganized in keloid tissue. The expression of miR-21, Col1A1 and Col3A1 in keloid tissue and keloid-derived fibroblasts were higher than that of normal counterparts, while the expression of Smad7 in keloid tissue and keloid-derived fibroblasts was lower. miR-21 mimics attenuated expression of Smad7, and enhanced the expression of Col1A1, Col3A1. Furthermore, the Smad7 siRNA increased expression of Col1A1and Col3A1. miR-21 promoted collagen production in keloid by negatively regulating the expression of the Smad7."	"Maternal obesity drives functional alterations in uterine NK cells. Over one-fifth of North American women of childbearing age are obese, putting these women at risk for a variety of detrimental chronic diseases. In addition, obesity increases the risk for developing major complications during pregnancy. The mechanisms by which obesity contributes to pregnancy complications and loss remain unknown. Increasing evidence indicates that obesity results in major changes to adipose tissue immune cell composition and function; whether or not obesity also affects immune function in the uterus has not been explored. Here we investigated the effect of obesity on uterine natural killer (uNK) cells, which are essential for uterine artery remodeling and placental development. Using a cohort of obese or lean women, we found that obesity led to a significant reduction in uNK cell numbers accompanied with impaired uterine artery remodeling. uNK cells isolated from obese women had altered expression of genes and pathways associated with extracellular matrix remodeling and growth factor signaling. Specifically, uNK cells were hyper-responsive to PDGF, resulting in overexpression of decorin. Functionally, decorin strongly inhibited placental development by limiting trophoblast survival. Together, these findings establish a potentially new link between obesity and poor pregnancy outcomes, and indicate that obesity-driven changes to uterine-resident immune cells critically impair placental development."	"Arterial complications of vascular Ehlers-Danlos syndrome. Vascular Ehlers-Danlos syndrome (EDS) is a relatively rare genetic syndrome that occurs owing to disorders in the metabolism of fibrillary collagen. These defects affect the soft connective tissues resulting in abnormalities in the skin, joints, hollow organs, and blood vessels. Patients with these defects frequently present at a young age with spontaneous arterial complications involving the medium-sized arteries. Complications involving the hollow organs, such as spontaneous colonic perforation, are observed as well. Given the fragility of the soft tissue, open and endovascular intervention on patients with vascular EDS is fraught with high complication rates. A PubMed search was performed to identify manuscripts published related to vascular EDS. This search included more than 747 articles. These findings were cross-referenced using key terms, including endovascular, embolization, surgery, genetics, pathophysiology, connective tissue disorders, vascular complications, systematic review, type III collagen, and COL3A1. The references in key articles and review articles were evaluated for additional resources not identified in the PubMed search. Care must be taken to balance the risk of intervention vs the risk of continued observation. Life-threatening hemorrhage, however, mandates intervention. With careful, altered approaches to tissue handling, endovascular approaches may provide a safer option for managing the arterial complications observed in patients with vascular EDS. Additional hope may also be found in the use of pharmacologic agents that reduce the incidence and severity of the arterial complications."	"The effect of mesenchymal stromal cell sheets on the inflammatory stage of flexor tendon healing. The clinical outcomes following intrasynovial flexor tendon repair are highly variable. Excessive inflammation is a principal factor underlying the formation of adhesions at the repair surface and affecting matrix regeneration at the repair center that limit tendon excursion and impair tendon healing. A previous in-vitro study revealed that adipose-derived mesenchymal stromal cells (ASCs) modulate tendon fibroblast response to macrophage-induced inflammation. The goal of the current study was therefore to explore the effectiveness of autologous ASCs on the inflammatory stage of intrasynovial tendon healing in vivo using a clinically relevant animal model. Zone II flexor tendon transections and suture repairs were performed in a canine model. Autologous ASC sheets were delivered to the surface of repaired tendons. Seven days after repair, the effects of ASCs on tendon healing, with a focus on the inflammatory response, were evaluated using gene expression assays, immunostaining, and histological assessments. ASCs delivered via the cell sheet infiltrated the host tendon, including the repair surface and the space between the tendon ends, as viewed histologically by tracking GFP-expressing ASCs. Gene expression results demonstrated that ASCs promoted a regenerative/anti-inflammatory M2 macrophage phenotype and regulated tendon matrix remodeling. Specifically, there were significant increases in M2-stimulator (IL-4), marker (CD163 and MRC1), and effector (VEGF) gene expression in ASC-sheet treated tendons compared with nontreated tendons. When examining changes in extracellular matrix expression, tendon injury caused a significant increase in scar-associated COL3A1 expression and reductions in COL2A1 and ACAN expression. The ASC treatment effectively counteracted these changes, returning the expression levels of these genes closer to normal. Immunostaining further confirmed that ASC treatment increased CD163<sup>+</sup> M2 cells in the repaired tendons and suppressed cell apoptosis at the repair site. This study provides a novel approach for delivering ASCs with outcomes indicating potential for substantial modulation of the inflammatory environment and enhancement of tendon healing after flexor tendon repair."	"COL3A1 and SNAP91: novel glioblastoma markers with diagnostic and prognostic value. Although patients with glioblastoma (GBM) have grave prognosis, significant variability in patient outcome is observed. This study aims to identify novel targets for GBM diagnosis and therapy. Microarray data (GSE4290, GSE7696, and GSE4412) obtained from the Gene Expression Omnibus was used to identify the differentially expressed genes (DEGs) by significant analysis of microarray (SAM). Intersection of the identified DEGs for each profile revealed 46 DEGs in GBM. A subset of common DEGs were validated by real-time reverse transcription quantitative PCR (qPCR). The prognostic value of some of the markers was also studied. We determined that RRM2 and COL3A1 were increased and directly correlated with glioma grade, while SH3GL2 and SNAP91 were decreased in GBM and inversely correlated with glioma grade. Kaplan-Meir analysis of GSE7696 revealed that COL3A1 and SNAP91 correlated with survival, suggesting that COL3A1 and SNAP91 may be suitable biomarkers for diagnostic or therapeutic strategies for GBM."	"Relationship of clusterin with renal inflammation and fibrosis after the recovery phase of ischemia-reperfusion injury. Long-term outcomes after acute kidney injury (AKI) include incremental loss of function and progression towards chronic kidney disease (CKD); however, the pathogenesis of AKI to CKD remains largely unknown. Clusterin (CLU) is a chaperone-like protein that reduces ischemia-reperfusion injury (IRI) and enhances tissue repair after IRI in the kidney. This study investigated the role of CLU in the transition of IRI to renal fibrosis. IRI was induced in the left kidneys of wild type (WT) C57BL/6J (B6) versus CLU knockout (KO) B6 mice by clamping the renal pedicles for 28 min at the body temperature of 32 °C. Tissue damage was examined by histology, infiltrate phenotypes by flow cytometry analysis, and fibrosis-related gene expression by PCR array. Reduction of kidney weight was induced by IRI, but was not affected by CLU KO. Both WT and KO kidneys had similar function with minimal cellular infiltration and fibrosis at day 14 of reperfusion. After 30 days, KO kidneys had greater loss in function than WT, indicated by the higher levels of both serum creatinine and BUN in KO mice, and exhibited more cellular infiltration (CD8 cells and macrophages), more tubular damage and more severe tissue fibrosis (glomerulopathy, interstitial fibrosis and vascular fibrosis). PCR array showed the association of CLU deficiency with up-regulation of CCL12, Col3a1, MMP9 and TIMP1 and down-regulation of EGF in these kidneys. Our data suggest that CLU deficiency worsens renal inflammation and tissue fibrosis after IRI in the kidney, which may be mediated through multiple pathways."	"Aging-associated changes in microRNA expression profile of internal anal sphincter smooth muscle: Role of microRNA-133a. A comprehensive genomic and proteomic, computational, and physiological approach was employed to examine the (previously unexplored) role of microRNAs (miRNAs) as regulators of internal anal sphincter (IAS) smooth muscle contractile phenotype and basal tone. miRNA profiling, genome-wide expression, validation, and network analyses were employed to assess changes in mRNA and miRNA expression in IAS smooth muscles from young vs. aging rats. Multiple miRNAs, including rno-miR-1, rno-miR-340-5p, rno-miR-185, rno-miR-199a-3p, rno-miR-200c, rno-miR-200b, rno-miR-31, rno-miR-133a, and rno-miR-206, were found to be upregulated in aging IAS. qPCR confirmed the upregulated expression of these miRNAs and downregulation of multiple, predicted targets (Eln, Col3a1, Col1a1, Zeb2, Myocd, Srf, Smad1, Smad2, Rhoa/Rock2, Fn1, Tagln v2, Klf4, and Acta2) involved in regulation of smooth muscle contractility. Subsequent studies demonstrated an aging-associated increase in the expression of miR-133a, corresponding decreases in RhoA, ROCK2, MYOCD, SRF, and SM22α protein expression, RhoA-signaling, and a decrease in basal and agonist [U-46619 (thromboxane A2 analog)]-induced increase in the IAS tone. Moreover, in vitro transfection of miR-133a caused a dose-dependent increase of IAS tone in strips, which was reversed by anti-miR-133a. Last, in vivo perianal injection of anti-miR-133a reversed the loss of IAS tone associated with age. This work establishes the important regulatory effect of miRNA-133a on basal and agonist-stimulated IAS tone. Moreover, reversal of age-associated loss of tone via anti-miR delivery strongly implicates miR dysregulation as a causal factor in the aging-associated decrease in IAS tone and suggests that miR-133a is a feasible therapeutic target in aging-associated rectoanal incontinence."	"Development of arthrogenic joint contracture as a result of pathological changes in remobilized rat knees. This study aimed to elucidate how rats recover from immobilization-induced knee joint contracture. Rats' right knees were immobilized by an external fixator at a flexion of 140° for 3 weeks. After removal of the fixator, the joints were allowed to move freely (remobilization) for 0, 1, 3, 7, or 14 days (n = 5 each). To distinguish myogenic and arthrogenic contractures, the passive extension range of motion was measured before and after myotomy of the knee flexors. Knee joints were histologically analyzed and the expression of genes encoding inflammatory or fibrosis-related mediators, interleukin-1β (1L-1β), fibrosis-related transforming growth factor-β1 (TGF-β1), and collagen type I (COL1A1) and III (COL3A1), were examined in the knee joint posterior capsules using real-time PCR. Both myogenic and arthrogenic contractures were established within 3 weeks of immobilization. During remobilization, the myogenic contracture decreased over time. In contrast, the arthrogenic contracture developed further during the remobilization period. On day 1 of remobilization, inflammatory changes characterized by edema, inflammatory cell infiltration, and upregulation of IL-1β gene started in the knee joint posterior capsule. In addition, collagen deposition accompanied by fibroblast proliferation, with upregulation of TGF-β1, COL1A1, and COL3A1 genes, appeared in the joint capsule between days 7 and 14. These results suggest the progression of arthrogenic contracture following remobilization, which is characterized by fibrosis development, is possibly triggered by inflammation in the joint capsule. It is therefore necessary to focus on developing new treatment strategies for immobilization-induced joint contracture. © 2017 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 35:1414-1423, 2017."	"Drug-resistant CXCR4-positive cells have the molecular characteristics of EMT in NSCLC. High expression of Chemokine receptor 4 (CXCR4) is important in tumor invasion, metastasis, drug-resistance and maintenance of stemness in non-small cell lung cancer (NSCLC). We therefore studied the molecular characteristics of drug-resistant CXCR4-positive cells on epithelial-mesenchymal transition (EMT) for the future identification of the tumor cells with the properties of both EMT and stemness. EMT RT<sup>2</sup> Profier PCR Array was performed to determine the expression levels of mRNA genes in A549 with TGF-β1 induced EMT (A549/TGF-β1) and gefitinib-resistant CXCR4-positive cells (A549/GR). TCGA database on the cBio Cancer Genomics Portal website and Gene Network Central (GNC) Pro Tutorial were used to analyze their clinical relevance and pathway interactions. CXCR4 was up-regulated both in TGF-β induced EMT cells and in gefitinib-resistant cells. In 84 mRNA genes related to EMT, 17 mRNA genes were up-regulated in CXCR4-positive population of A549/GR when compared to those in CXCR4 negative fraction, while 66 mRNA genes were up-regulated during TGF-β induced EMT. ITGA5, BMP7, MMP3, VIM, RGS2, ZEB2, TCF3, SNAI2, VCAN, PLEK2, WNT5A, COL3A1, SPARC and FOXC2 were doubly up-regulated during the two biological processes. Kaplan-Meier analysis indicated that the doubly up-regulated ITGA5, RGS2, SNAI2 and PLEK2 mRNA genes were related to poor overall survival in lung adenocarcinoma patients (P=9.291e-6, 0.0090, 3.81e-7 and 0.0013, respectively). In GNC analysis, SNAI2 mRNA gene but not ITGA5, RGS2 and PLEK2 was dependent on the signaling pathway of CXCR4. The molecular characteristics of drug-resistant CXCR4-positive cells have a crosstalk with EMT, which has the potential to find the marker with prognostic value on multiple signaling pathways in NSCLC."	"Oral pirfenidone protects against fibrosis by inhibiting fibroblast proliferation and TGF-β signaling in a murine colitis model. Inflammatory bowel disease (IBD), particularly Crohn's disease, frequently causes intestinal fibrosis that ultimately leads to formation of strictures requiring bowel resection. Currently there is no effective antifibrotic therapy available for this disease. Pirfenidone is a small compound that has a broad spectrum of antifibrogenic effect and has been used for the treatment of fibrotic diseases in various organs. The present study aimed to investigate the antifibrogenic effect of pirfenidone in a dextran sulfate sodium (DSS)-induced murine colitis model. C57BL/6 mice were used and animals were randomly divided into groups receiving pirfenidone or vehicle by oral or transanal routes. Inflammation- and fibrosis-related indexes including body weight, colon length, disease activity, histological change, mRNA expression of pro-inflammatory and pro-fibrogenic cytokines were assessed. Furthermore, we performed in vitro analysis using CCD18-Co fibroblasts to evaluate cell proliferation, transdifferentiation, and viability after the cells were cultured with pirfenidone. It was found that oral administration of pirfenidone reduced deposition of collagen in colitis-associated fibrosis, and significantly suppressed the mRNA expression of col1a2, col3a1, and TGF-β. Moreover, pirfenidone inhibited the activation of TGF-β-related smad and MAPK pathways both in vitro and in vivo. Clinical and histological evaluation demonstrated that pirfenidone had no anti-inflammatory effect. The antifibrogenic effect was reduced when pirfenidone was administered in a delayed manner and was unobserved if given locally. Pirfenidone suppressed fibroblast proliferation and transdifferentiation without observed toxicity. Altogether, our results suggested that oral pirfenidone protects against fibrosis of DSS-induced colitis through inhibiting the proliferation of colonic fibroblasts and TGF-β signaling pathways. "	"miRNA-29a targets COL3A1 to regulate the level of type III collagen in pig. COL3A1 encodes the protein, collagen type III alpha 1, which is an important component of collagen. Collagen can have a considerable effect on the processing quality of meat, and is nutritious. Bioinformatic analysis using Targetscan showed that COL3A1 could be a target gene of miRNA-29a. Moreover, we found that Laiwu pigs have higher levels of type III collagen and lower levels of miRNA-29a than Landrace pigs. Therefore, we hypothesized that miRNA-29a suppresses the expression of COL3A1 by targeting its 3'-UTR. miRNA-29a appears to play an inhibitory role in the regulation of COL3A1 in PK15 cells because of the following: (1) overexpression of miRNA-29a resulted in a significant down-regulation of COL3A1 protein levels (2) overexpression of miRNA-29a significantly decreased the level of COL3A1 mRNA. (3) The activity of a COL3A1 luciferase reporter was significant reduced by miRNA-29a. Furthermore, the levels of miRNA-29a and collagen type III in four tissues in Laiwu and Landrace pigs were consistent with the above observations. In this study, we identified COL3A1 as a direct target for miRNA-29a, which will inform further studies of meat quality. "	"Non-ablative radio-frequency rejuvenation: a histological and bio-molecular report. Radiofrequency machines for medical use are known to produce moderate clinical improvement of skin laxity without invasive procedures. Numerous equipment with different characteristics have been proposed after the introduction in 2002 of the first FDA approved device. This report is aimed to test if RF treatment is effective when performed at low frequency and low energy level. Two RF treatments were performed unilaterally 7 and 2 days before a planned eyebrow lifting surgery, with a radiofrequency device with 0.52 to 0.7 MHz frequencies, maximum energy of 200 W, used at 40% of its power. A bipolar handpiece with a diameter of 30 mm and a maximum power of 9-9.5 W was massaged along the temporal area for 10 min. Skin samples of treated and untreated sides were collected during surgery and processed for histologic examination and RT-PCR analysis, to test differences in gene activation in a panel of proteins that are relevant in extracellular matrix of dermal connective tissue. The histological examination of the samples showed that the treatment induced a loss of the typical oriented structure in the reticular dermis. The study through RT-PCR evidenced that ELN, the gene codifying for Elastine was strongly enhanced. Some collagen-tested genes (COL1A1, COL3A1 and COL9A1) were inhibited by the treatment, whereas COL2A1 and COL11 were activated. The genes responsible for Metallo-proteases (MMP) 2, 3 and 13 were depressed, while the MMP9 was stimulated. Gene codifying for Hyaluronic synthase 1 (HAS1), Hyluronidase 1 (HYAL1), Neutrophyl elastase (Elane), Desmoplakin (DSP) and GDF6 were inhibited. Insulin like growth factor (IGF1) gene activity was enhanced. RF treatment, with the tested non-ablative equipment, produced histological effects and change in DNA expression of some extracellular matrix related genes, confirming the biostimulatory role of this procedure."	"Pearls &amp; Oy-sters: Vascular EDS presenting with acute proptosis: Always revisit the history. NA"	"Comprehensive site-specific whole genome profiling of stromal and epithelial colonic gene signatures in human sigmoid colon and rectal tissue. The strength of associations between various exposures (e.g., diet, tobacco, chemopreventive agents) and colorectal cancer risk may partially depend on the complex interaction between epithelium and stroma across anatomic subsites. Currently, baseline data describing genome-wide coding and long noncoding gene expression profiles in the healthy colon specific to tissue type and location are lacking. Therefore, colonic mucosal biopsies from 10 healthy participants who were enrolled in a clinical study to evaluate effects of lignan supplementation on gut resiliency were used to characterize the site-specific global gene expression signatures associated with stromal vs. epithelial cells in the sigmoid colon and rectum. Using RNA-seq, we demonstrate that tissue type and location patterns of gene expression and upstream regulatory pathways are distinct. For example, consistent with a key role of stroma in the crypt niche, mRNAs associated with immunoregulatory and inflammatory processes (i.e., CXCL14, ANTXR1), smooth muscle contraction (CALD1), proliferation and apoptosis (GLP2R, IGFBP3), and modulation of extracellular matrix (MMP2, COL3A1, MFAP4) were all highly expressed in the stroma. In comparison, HOX genes (HOXA3, HOXD9, HOXD10, HOXD11, and HOXD-AS2, a HOXD cluster antisense RNA 2), and WNT5B expression were also significantly higher in sigmoid colon compared with the rectum. These findings provide strong impetus for considering colorectal tissue subtypes and location in future observational studies and clinical trials designed to evaluate the effects of exposures on colonic health."	"Increased Expression of Several Collagen Genes is Associated with Drug Resistance in Ovarian Cancer Cell Lines. Ovarian cancer is the most lethal gynaecological cancer. The main reason for the high mortality among ovarian cancer patients is the development of drug resistance. The expression of collagen genes by cancer cells can increase drug resistance by inhibiting the penetration of the drug into the cancer tissue as well as increase apoptosis resistance. In this study, we present data that shows differential expression levels of collagen genes and proteins in cisplatin- (CIS), paclitaxel- (PAC), doxorubicin- (DOX), topotecan- (TOP), vincristine- (VIN) and methotrexate- (MTX) resistant ovarian cancer cell lines. Quantitative real-time polymerase chain reactions were performed to determine the mRNA levels. Protein expression was detected using Western blot and immunocytochemistry assays. In the drug resistant cell lines, we observed the upregulation of eight collagen genes at the mRNA level and based on these expression levels, we divided the collagen genes into the following three groups: 1. Genes with less than a 50-fold increase in expression: COL1A1, COL5A2, COL12A1 and COL17A1. 2. Genes with greater than a 50-fold increase in expression: COL1A2, COL15A1 and COL21A1. 3. Gene with a very high level of expression: COL3A1. Expression of collagen (COL) proteins from groups 2 and 3 were also confirmed using immunocytochemistry. Western blot analysis showed very high expression levels of COL3A1 protein, and immunocytochemistry analysis showed the presence of extracellular COL3A1 in the W1TR cell line. The cells mainly responsible for the extracellular COL3A1 production are aldehyde dehydrogenase-1A1 (ALDH1A1) positive cells. All correlations between the types of cytostatic drugs and the expression levels of different COL genes were studied, and our results suggest that the expression of fibrillar collagens may be involved in the TOP and PAC resistance of the ovarian cancer cells. The expression pattern of COL genes provide a preliminary view into the role of these proteins in cytostatic drug resistance of cancer cells. The exact role of these COL genes in drug resistance requires further investigation. "	"Gene targeting of the transcription factor Mohawk in rats causes heterotopic ossification of Achilles tendon via failed tenogenesis. Cell-based or pharmacological approaches for promoting tendon repair are currently not available because the molecular mechanisms of tendon development and healing are not well understood. Although analysis of knockout mice provides many critical insights, small animals such as mice have some limitations. In particular, precise physiological examination for mechanical load and the ability to obtain a sufficient number of primary tendon cells for molecular biology studies are challenging using mice. Here, we generated Mohawk (Mkx)(-/-) rats by using CRISPR/Cas9, which showed not only systemic hypoplasia of tendons similar to Mkx(-/-) mice, but also earlier heterotopic ossification of the Achilles tendon compared with Mkx(-/-) mice. Analysis of tendon-derived cells (TDCs) revealed that Mkx deficiency accelerated chondrogenic and osteogenic differentiation, whereas Mkx overexpression suppressed chondrogenic, osteogenic, and adipogenic differentiation. Furthermore, mechanical stretch stimulation of Mkx(-/-) TDCs led to chondrogenic differentiation, whereas the same stimulation in Mkx(+/+) TDCs led to formation of tenocytes. ChIP-seq of Mkx overexpressing TDCs revealed significant peaks in tenogenic-related genes, such as collagen type (Col)1a1 and Col3a1, and chondrogenic differentiation-related genes, such as SRY-box (Sox)5, Sox6, and Sox9 Our results demonstrate that Mkx has a dual role, including accelerating tendon differentiation and preventing chondrogenic/osteogenic differentiation. This molecular network of Mkx provides a basis for tendon physiology and tissue engineering."	"Screening of gene signatures for rheumatoid arthritis and osteoarthritis based on bioinformatics analysis. The current study aimed to identify gene signatures during rheumatoid arthritis (RA) and osteoarthritis (OA), and used these to elucidate the underlying modular mechanisms. Using the Gene Expression Omnibus database, the present study obtained the GSE7669 mRNA expression microarray data from RA and OA synovial fibroblasts (n=6 each). The differentially expressed genes (DEGs) in RA synovial samples compared with OA samples were identified using the Linear Models for Microarray Analysis package. The Gene Ontology and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analyses were performed using the Database for Annotation Visualization and Integrated Discovery. A protein‑protein interaction network was constructed and the modules were further analyzed using the Molecular Complex Detection plugin of Cytoscape. A total of 181 DEGs were identified by comparing RA and OA synovial samples (96 up‑ and 85 downregulated genes). The significant DEGs in module 1, including collagen, type I, α 1 (COL1A1), COL3A1, COL4A1 and COL11A1, were predominantly enriched in the extracellular matrix (ECM)‑receptor interaction and focal adhesion pathways. Additionally, significant DEGs in module 2, including radical S‑adenosyl methionine domain containing 2 (RSAD2), 2'‑5'‑oligoadenylate synthetase 2 (OAS2), myxovirus (influenza virus) resistance 1 (MX1) and ISG15 ubiquitin‑like modifier (ISG15), were predominantly associated with immune function pathways. In conclusion, the present study indicated that RSAD2, OAS2, MX1 and ISG15 may be notable gene signatures in RA development via regulation of the immune response. COL3A1, COL4A1, COL1A1 and COL11A1 may be important gene signatures in OA development via involvement in the pathways of ECM-receptor interactions and focal adhesions. "	"Dietary Lecithin Decreases Skeletal Muscle COL1A1 and COL3A1 Gene Expression in Finisher Gilts. The purpose of this study was to investigate the effect of dietary lecithin on skeletal muscle gene expression of collagen precursors and enzymes involved in collagen synthesis and degradation. Finisher gilts with an average start weight of 55.9 ± 2.22 kg were fed diets containing either 0, 4, 20 or 80 g/kg soybean lecithin prior to harvest for six weeks and the rectus abdominis muscle gene expression profile was analyzed by quantitative real-time PCR. Lecithin treatment down-regulated Type I (α1) procollagen (COL1A1) and Type III (α1) procollagen (COL3A1) mRNA expression ( p &lt; 0.05, respectively), indicating a decrease in the precursors for collagen synthesis. The α-subunit of prolyl 4-hydroxylase (P4H) mRNA expression also tended to be down-regulated ( p = 0.056), indicating a decrease in collagen synthesis. Decreased matrix metalloproteinase-1 (MMP-1) mRNA expression may reflect a positive regulatory response to the reduced collagen synthesis in muscle from the pigs fed lecithin ( p = 0.035). Lecithin had no effect on tissue inhibitor metalloproteinase-1 (TIMP-1), matrix metalloproteinase-13 (MMP-13) and lysyl oxidase mRNA expression. In conclusion, lecithin down-regulated COL1A1 and COL3A1 as well as tended to down-regulate α-subunit P4H expression. However, determination of muscle collagen content and solubility are required to support the gene functions. "	"IL-17A promotes neutrophilic inflammation and disturbs acute wound healing in skin. In the wound healing process, neutrophils are the first inflammatory cells to move to the wound tissues. They sterilize wounds by killing microbes, and they stimulate other immune cells to protect the host from infection. In contrast, neutrophil-derived proteases cause damage to host tissues, so neutrophils play dual opposite roles in wound healing. Interleukin-17A (IL-17A) is a proinflammatory cytokine that promotes the recruitment of these cells. The role of this cytokine in the wound healing process is not fully clarified. In the present study, therefore, we examined how defect in IL-17A production affected the wound healing in skin. IL-17A-knockout (KO) mice showed promoted wound closure, myofibroblast differentiation and collagen deposition and decreased the neutrophil accumulation compared with wild-type (WT) mice. In contrast, the administration of recombinant IL-17A led to delayed wound closure, low collagen deposition and accelerated neutrophilic accumulation. In addition, the treatment of IL-17A-administered mice with a neutrophil elastase inhibitor improved the wound repair to the same level as that of WT mice. These results indicated that IL-17A hampered the wound healing process and suggested that neutrophilic inflammation caused by IL-17A may be associated with impaired wound healing in skin."	"Inherited Disease Genetics Improves the Identification of Cancer-Associated Genes. The identification of biologically significant variants in cancer genomes is critical to therapeutic discovery, but it is limited by the statistical power needed to discern driver from passenger. Independent biological data can be used to filter cancer exomes and increase statistical power. Large genetic databases for inherited diseases are uniquely suited to this task because they contain specific amino acid alterations with known pathogenicity and molecular mechanisms. However, no rigorous method to overlay this information onto the cancer exome exists. Here, we present a computational methodology that overlays any variant database onto the somatic mutations in all cancer exomes. We validate the computation experimentally and identify novel associations in a re-analysis of 7362 cancer exomes. This analysis identified activating SOS1 mutations associated with Noonan syndrome as significantly altered in melanoma and the first kinase-activating mutations in ACVR1 associated with adult tumors. Beyond a filter, significant variants found in both rare cancers and rare inherited diseases increase the unmet medical need for therapeutics that target these variants and may bootstrap drug discovery efforts in orphan indications."	"Recognizing vascular Ehlers-Danlos syndrome (type IV) in the newborn. NA"	"Hemodynamic Instability after Low-Energy Thigh Contusion Caused by Injury to the Femoral Artery: A Case Report and Literature Review. Acute vascular injuries have been described in relation to high-energy trauma accidents or in patients undergoing surgery in the femoral area. We describe a healthy patient who sustained a direct, low-energy contusion in the thigh and presented haemodynamic instability. Arteriography was used to locate the point of bleeding, and embolisation and vessel occlusion were carried out to stop the haemorrhage. The genetic study identified the COL3A1 gene mutation; accordingly, the patient was diagnosed with the Ehlers-Danlos syndrome type IV (vascular type). "	"Organizing pneumonia in mice and men. Organizing pneumonia is a reaction pattern and an inflammatory response to acute lung injuries, and is characterized by intraluminal plugs of granulation tissue in distal airspaces. In contrast to other fibrotic pulmonary diseases, organizing pneumonia is generally responsive to corticosteroids. However, some patients do not respond to treatment, leading to respiratory failure and potentially death (up to 15 % of patients). In order to devise new therapeutic strategies, a better understanding of the disease's pathomechanisms is warranted. We previously generated a mouse model overexpressing CCL2, which generates organizing pneumonia-like changes, morphologically comparable to human patients. In this study, we investigated whether the histopathological similarities of human and murine pulmonary organizing pneumonia lesions also involve similar molecular pathways. We analyzed the similarities and differences of fibrosis-associated gene expression in individual compartments from patients with organizing pneumonia and transgenic (CCL2) mice using laser-assisted microdissection, real-time PCR and immunohistochemistry. Gene expression profiling of human and murine organizing pneumonia lesions showed in part comparable expression levels of pivotal genes, notably of TGFB1/Tgfb1, TIMP1/Timp1, TIMP2/Timp2, COL3A1/Col3a1, CXCL12/Cxcl12, MMP2/Mmp2 and IL6/Il6. Hence, the transgenic CCL2 mouse model shows not only pathogenomic and morphological features of human organizing pneumonia but also a similar inflammatory profile. We suggest that the CCL2-overexpressing transgenic mouse model (CCL2 Tg mice) is suitable for further investigation of fibrotic pulmonary remodeling, particularly of organizing pneumonia pathogenesis and for the search for novel therapeutic strategies."	"[Rare syndromes in intensive care medicine : Presentation of two cases]. This article presents two cases of young women with spontaneous life-threatening bleeding events. Both had a history of gastrointestinal rupture or arterial dissection. Based on their medical history and genetic testing, Ehlers-Danlos syndrome (EDS) IV (vascular type) was diagnosed. In this very rare disorder which accounts for only 5 % of all EDS cases, fibroblasts synthesize reduced and abnormal procollagen type III. This is caused by mutations in the COL3A1 gene coding for type III procollagen. Life expectancy in these patients is significantly reduced. In many cases spontaneous arterial ruptures or dissections and organ ruptures are the first manifestations of this disease. More than 80 % of patients with EDS IV suffer from a severe complication before 40 years of age. Treatment options are very limited. Most important is to avoid invasive procedures (open surgery as well as endovascular interventions) because of its high morbidity and mortality. Celiprolol, a cardioselective β‑blocker, seems to have a beneficial effect by reducing the incidence of vascular complications. "	"A rapid NGS strategy for comprehensive molecular diagnosis of Birt-Hogg-Dubé syndrome in patients with primary spontaneous pneumothorax. Primary spontaneous pneumothorax (PSP) or pulmonary cysts is one of the manifestations of Birt-Hogg-Dube syndrome (BHDS) that is caused by heterozygous mutations in FLCN gene. Most of the mutations are SNVs and small indels, and there are also approximately 10 % large intragenic deletions and duplications of the mutations. These molecular findings are generally obtained by disparate methods including Sanger sequencing and Multiple Ligation-dependent Probe Amplification in the clinical laboratory. In addition, as a genetically heterogeneous disorder, PSP may be caused by mutations in multiple genes include FBN1, COL3A1, CBS, SERPINA1 and TSC1/TSC2 genes. For differential diagnosis, these genes should also be screened which makes the diagnostic procedure more time-consuming and labor-intensive. Forty PSP patients were divided into 2 groups. Nineteen patients with different pathogenic mutations of FLCN previously identified by conventional Sanger sequencing and MLPA were included in test group, 21 random PSP patients without any genetic screening were included in blinded sample group. 7 PSP genes including FLCN, FBN1, COL3A1, CBS, SERPINA1 and TSC1/TSC2 were designed and enriched by Haloplex system, sequenced on a Miseq platform and analyzed in the 40 patients to evaluate the performance of the targeted-NGS method. We demonstrated that the full spectrum of genes associated with pneumothorax including FLCN gene mutations can be identified simultaneously in multiplexed sequence data. Noteworthy, by our in-house copy number analysis of the sequence data, we could not only detect intragenic deletions, but also determine approximate deletion junctions simultaneously. NGS based Haloplex target enrichment technology is proved to be a rapid and cost-effective screening strategy for the comprehensive molecular diagnosis of BHDS in PSP patients, as it can replace Sanger sequencing and MLPA by simultaneously detecting exonic and intronic SNVs, small indels, large intragenic deletions and determining deletion junctions in PSP-related genes."	"Novel action of FOXL2 as mediator of Col1a2 gene autoregulation. FOXL2 belongs to the evolutionarily conserved forkhead box (FOX) superfamily and is a master transcription factor in a spectrum of developmental pathways, including ovarian and eyelid development and bone, cartilage and uterine maturation. To analyse its action, we searched for proteins that interact with FOXL2. We found that FOXL2 interacts with specific C-terminal propeptides of several fibrillary collagens. Because these propeptides can participate in feedback regulation of collagen biosynthesis, we inferred that FOXL2 could thereby affect the transcription of the cognate collagen genes. Focusing on COL1A2, we found that FOXL2 indeed affects collagen synthesis, by binding to a DNA response element located about 65Kb upstream of this gene. According to our hypothesis we found that in Foxl2(-/-) mouse ovaries, Col1a2 was elevated from birth to adulthood. The extracellular matrix (ECM) compartmentalizes the ovary during folliculogenesis, (with type I, type III and type IV collagens as primary components), and ECM composition changes during the reproductive lifespan. In Foxl2(-/-) mouse ovaries, in addition to up-regulation of Col1a2, Col3a1, Col4a1 and fibronectin were also upregulated, while laminin expression was reduced. Thus, by regulating levels of extracellular matrix components, FOXL2 may contribute to both ovarian histogenesis and the fibrosis attendant on depletion of the follicle reserve during reproductive aging and menopause."	"Matrix metalloproteinase 12 is an indicator of intervertebral disc degeneration co-expressed with fibrotic markers. Recent evidence suggests a role of fibrogenesis in intervertebral disc (IVD) degeneration. We aim to explore if fibrotic genes may serve as IVD degeneration indicators, and if their expression is associated with myofibroblast activity. Transcriptional expression of fibrosis markers (COL1A1, COL3A1, FN1, HSP47, MMP12, RASAL1) were analyzed in degenerated (D) and non-degenerated (ND) human nucleus pulposus (NP) and annulus fibrosus (AF) cells, along with traditional (SOX9, ACAN) and newly established degeneration markers (CDH2, KRT19, KRT18, FBLN1, MGP, and COMP). Protein expression was investigated by immunohistochemistry in human IVDs, and in rodent IVDs undergoing natural ageing or puncture-induced degeneration. Co-expression with myofibroblast markers was examined by double staining on human and rat specimens. Disc degeneration severity and extent of fibrosis were determined by histological scoring and picrosirius red staining respectively. Human D-NP showed more intensive staining for picrosirius red than ND-NP. Among the genes examined, D-NP showed significantly higher MMP12 expression along with lower KRT19 expression. Protein expression analysis revealed increased MMP12(+) cells in human D-IVD. Histological scoring indicated mild degeneration in the punctured rat discs and discs of ageing mouse. Higher MMP12 positivity was found in peripheral NP and AF of the degenerative rat discs and in NP of the aged mice. In addition, human D-NP and D-AF showed increased α-SMA(+) cells, indicating enhanced myofibroblast activity. MMP12 was found co-expressed with α-SMA, FSP1 and FAP-α in human and rat degenerative IVDs. Our study suggests that in addition to a reduced KRT19 expression, an increased expression of MMP12, a profibrotic mediator, is characteristic of disc degenerative changes. Co-expression study indicates an association of the increased MMP12 positivity with myofibroblast activity in degenerated IVDs. Overall, our findings implicate an impact of MMP12 in disc cell homeostasis. The precise role of MMP12 in IVD degeneration warrants further investigation."	"Fibroproliferative effect of microRNA-21 in hypertrophic scar derived fibroblasts. Hypertrophic scar (HS) is a fibroproliferative disorder caused by abnormal wound healing, which is characterized by excessive deposition of extracellular matrix (ECM) secreted by fibroblasts. We previous have found that expression of microRNA-21(miR-21) was increased in tissues and fibroblasts of HS. However, the underlying molecular mechanism remains to be further elucidated. In this study, we identified the miR-21 was a marker for the phenotype of HS fibroblasts, as anti-miR-21 reduced expression of fibrosis markers such as Col1A1, Col3A1, Fn and α-SMA in fibroblasts and overexpression of miR-21 promoted fibroproliferative expression in fibroblasts. Furthermore, we also found that miR-21 promoted TGF-β1 induced fibroproliferative expression by repressing Smad7 expression in vitro. In addition, the miR-21 inhibitor inhibited the growth of hypertrophic scar tissue in vivo (nude mice experimental model). These results indicated that miR-21 was a critical regulator for HS formation and TGF- β1/miR-21/Smad7 pathway could be a useful therapeutic target for the treatment of HS."	"The Properties of 3 Different Plasma Formulations and Their Effects on Tendinopathic Cells. Tendinopathies are attributed to failure of the healing process and inadequate tissue remodeling. Plasma injections can trigger regenerative responses by modifying the molecular microenvironment. To examine the differences in the mitotic, chemotactic, anabolic, and inflammatory effects between leukocyte- and platelet-rich plasma (L-PRP), platelet-rich plasma (PRP), and platelet-poor plasma (PPP). Controlled laboratory study. Tendinopathic cells were cultured in 3-dimensional (3D) hydrogels formed using PPP, PRP, and L-PRP. Cell migration was evaluated using a μ-Slide chemotaxis chamber with video microscopy. Proliferation was assessed using XTT assays. Expression of genes associated with matrix turnover, including type 1 collagen (COL1A1), COL3A1, aggrecan, decorin, fibronectin, matrix metalloproteinase 1 (MMP-1), MMP-3, A Disintegrin-Like And Metalloprotease With Thrombospondin Type 1 Motif proteins 4 (ADAMTS-4), and ADAMTS-5, was assessed using real-time reverse-transcription polymerase chain reaction. Secreted inflammatory proteins, including interleukin (IL)-1β, IL-6, IL-8, monocyte chemotactic protein 1 (MCP-1), and regulated on activation, normal T cell expressed and secreted (RANTES), as well as vascular endothelial growth factor (VEGF) and connective tissue growth factor (CTGF), were quantified using enzyme-linked immunosorbent assay. Tendinopathic cells migrate at a higher velocity along L-PRP and PRP than along PPP gradients. PRP and L-PRP promote hypercellularity. PPP and PRP showed more pronounced anabolic properties, as demonstrated by enhanced COL1A1 and COL3A1 and reduced MMP-1 expression. Decorin, fibronectin, and aggrecan were downregulated in L-PRP compared with PPP and PRP. L-PRP and PRP were shown to be more proinflammatory than PPP in terms of IL-6 secretion, but cells in PPP showed MCP-1(high) phenotype. CTGF secretion was significantly reduced in L-PRP compared with PPP and PRP. The main advantages of L-PRP and PRP use, compared with PPP, include their stronger chemotactic and proliferative properties. While PPP and PRP stimulate matrix anabolism, L-PRP is more proinflammatory. Emphasis should be placed on the temporal needs and biological characteristics of injured tendons, and plasma formulations need to be tailored accordingly. Versatile systems allowing the preparation of different plasma formulations, such as PPP, PRP, or L-PRP, can help refine clinical applications by taking advantage of their different biological properties."	"Chronic miR-29 antagonism promotes favorable plaque remodeling in atherosclerotic mice. Abnormal remodeling of atherosclerotic plaques can lead to rupture, acute myocardial infarction, and death. Enhancement of plaque extracellular matrix (ECM) may improve plaque morphology and stabilize lesions. Here, we demonstrate that chronic administration of LNA-miR-29 into an atherosclerotic mouse model improves indices of plaque morphology. This occurs due to upregulation of miR-29 target genes of the ECM (col1A and col3A) resulting in reduced lesion size, enhanced fibrous cap thickness, and reduced necrotic zones. Sustained LNA-miR-29 treatment did not affect circulating lipids, blood chemistry, or ECM of solid organs including liver, lung, kidney, spleen, or heart. Collectively, these data support the idea that antagonizing miR-29 may promote beneficial plaque remodeling as an independent approach to stabilize vulnerable atherosclerotic lesions."	"PDGFRβ Is a Novel Marker of Stromal Activation in Oral Squamous Cell Carcinomas. Carcinoma associated fibroblasts (CAFs) form the main constituents of tumor stroma and play an important role in tumor growth and invasion. The presence of CAFs is a strong predictor of poor prognosis of head and neck squamous cell carcinoma. Despite significant progress in determining the role of CAFs in tumor progression, the mechanisms contributing to their activation remain poorly characterized, in part due to fibroblast heterogeneity and the scarcity of reliable fibroblast surface markers. To search for such markers in oral squamous cell carcinoma (OSCC), we applied a novel approach that uses RNA-sequencing data derived from the cancer genome atlas (TCGA). Specifically, our strategy allowed for an unbiased identification of genes whose expression was closely associated with a set of bona fide stroma-specific transcripts, namely the interstitial collagens COL1A1, COL1A2, and COL3A1. Among the top hits were genes involved in cellular matrix remodeling and tumor invasion and migration, including platelet-derived growth factor receptor beta (PDGFRβ), which was found to be the highest-ranking receptor protein genome-wide. Similar analyses performed on ten additional TCGA cancer datasets revealed that other tumor types shared CAF markers with OSCC, including PDGFRβ, which was found to significantly correlate with the reference collagen expression in ten of the 11 cancer types tested. Subsequent immunostaining of OSCC specimens demonstrated that PDGFRβ was abundantly expressed in stromal fibroblasts of all tested cases (12/12), while it was absent in tumor cells, with greater specificity than other known markers such as alpha smooth muscle actin or podoplanin (3/11). Overall, this study identified PDGFRβ as a novel marker of stromal activation in OSCC, and further characterized a list of promising candidate CAF markers that may be relevant to other carcinomas. Our novel approach provides for a fast and accurate method to identify CAF markers without the need for large-scale immunostaining experiments."	"Inhibition of extracellular matrix production and remodeling by doxycycline in smooth muscle cells. Alterations in the extracellular matrix (ECM) production and remodeling of smooth muscle cells (SMCs) have been implicated in processes related to the differentiation in atherosclerosis. Due to the anti-atherosclerotic properties of the tetracyclines, we aimed to investigate whether cholesterol supplementation changes the effect of doxycycline over the ECM proteins synthesis and whether isoprenylated proteins and Rho A protein activation are affected. SMC primary culture isolated from chicks exposed to atherogenic factors in vivo (a cholesterol-rich diet, SMC-Ch), comparing it with control cultures isolated after a standard diet (SMC-C). After treatment with 20 nM doxycycline, [H<sup>3</sup>]-proline and [H<sup>3</sup>]-mevalonate incorporation were used to measure the synthesis of collagen and isoprenylated proteins, respectively. Real-time PCR was assessed to determine col1a2, col2a1, col3a1, fibronectin, and mmp2 gene expression and the pull-down technique was applied to determine the Rho A activation state. A higher synthesis of collagens and isoprenylated proteins in SMC-Ch than in SMC-C was determined showing that doxycycline inhibits ECM production and remodeling in both SMC types of cultures. Moreover, preliminary results about the effect of doxycycline on protein isoprenylation and Rho A protein activation led us to discuss the possibility that membrane G-protein activation pathways could mediate the molecular mechanism."	"PDGF-BB Delays Degeneration of the Intervertebral Discs in a Rabbit Preclinical Model. Preclinical animal study. Determine the in vivo effects of platelet-derived growth factor BB (PDGF-BB) delivered in a thiol-modified hyaluronic acid (TMHA) hydrogel on intervertebral disk (IVD) degeneration. IVD degeneration is a worldwide health concern and remains without an effective treatment. Several in vitro studies have demonstrated the potential of PDGF-BB, a primary component of platelet-rich plasma, as a therapy for IVD degeneration. Our hypotheses were that treatment of injured IVDs with PDGF would inhibit degeneration and that administration of PDGF in a TMHA hydrogel would improve its efficacy. IVD degeneration was induced using the rabbit annular puncture model. Four weeks after injury, IVDs were treated with either PDGF-BB or PDGF-BB delivered within a TMHA hydrogel. The efficacy of treatment was determined using x-ray, MRI, histology, and biomechanical testing. At 4 weeks after treatment, cell apoptosis and deposition of matrix containing type III collagen a1 (Col3a1) was demonstrated in both the nucleus pulposus and annulus fibrosus, while this was inhibited by PDGF. At 8 weeks after treatment, disc area and MRI indices of injured IVDs treated with PDGF were significantly higher (P &lt; 0.05) than those treated with the TMHA alone. Similarly, degenerative scores for saline- and TMHA-treated IVDs demonstrated significantly more degeneration (P &lt; 0.05) than PDGF-treated IVDs at 8 weeks. Biomechanical assessments found fewer indicators of degeneration in PDGF-TMHA-treated IVDs at both 4 and 8 weeks post-treatment, compared to saline-, TMHA-, and PDGF-only-treated IVDs. Both PDGF- and PDGF-TMHA-treated IVDs also demonstrated a significant increase (P &lt; 0.05) in compressive strength to failure, compared with controls at 8 weeks post-treatment. The results of this study suggest that PDGF-BB significantly decreases disc degeneration and when delivered in a TMHA gel scaffold, helps prevent both apoptosis and Col3 matrix production, while maintaining disc structure and biomechanical function. NA."	"[EXPRESSIONS OF LIGAMENT REMODELING RELATED GENES IN RABBIT MODEL OF ANTERIOR CRUCIATE LIGAMENT RECONSTRUCTION WITH PRESERVING TIBIAL RESIDUAL FIBERS]. To observe the effect of preserving tibial residual fibers on the expressions of ligament remodeling related genes in rabbit anterior cruciate ligament (ACL) reconstruction model. Sixty healthy adult New Zealand white rabbits were randomly divided into 4 groups: normal control group (group A, n = 6), sham-operation group (group B, n = 18), non tibial remnant preserved group (group C, n = 18), and tibial remnant preserved group (group D, n = 18). At 2, 6, and 12 weeks after operation, the ligament tissue was harvested to detect the mRNA expressions of collagen type 1A1 (COL1A1), collagen type 3A1 (COL3A1), transforming growth factor β1 (TGF-β1), vascular endothelial growth factor (VEGF), growth-associated protein 43 (GAP-43), and neurotrophin 3 (NT-3) by real-time fluorescent quantitative PCR. At each time point, there was no significant difference in the mRNA expressions of COL1A1, COL3A1, VEGF, and NT-3 between group A and group B (P &gt; 0.05). In group D, the mRNA expressions of COL1A1, COL3A1, TGF-β1, and GAP-43 significantly increased when compared with those of group C at 6 weeks after operation (P &lt; 0.05); an increased level of VEGF mRNA was also detected in the group D at 12 weeks after operation (P &lt; 0.05); and an increased level of NT-3 mRNA was also observed in group D at 2 and 12 weeks after operation (P &lt; 0.05). There is a time-dependent manner of angiogenesis-promoting, repair-related, and nerve-related gene expressions after ACL reconstruction with preserving tibial residual fibers during the process of ligamentization. Furthermore, the remnant preservation in ACL reconstruction can promote the expressions of related genes in some time points."	"Compression therapy affects collagen type balance in hypertrophic scar. The effects of pressure on hypertrophic scar are poorly understood. Decreased extracellular matrix deposition is hypothesized to contribute to changes observed after pressure therapy. To examine this further, collagen composition was analyzed in a model of pressure therapy in hypertrophic scar. Hypertrophic scars created on red Duroc swine (n = 8) received pressure treatment (pressure device mounting and delivery at 30 mm Hg), sham treatment (device mounting and no delivery), or no treatment for 2 wk. Scars were assessed weekly and biopsied for histology, hydroxyproline quantification, and gene expression analysis. Transcription levels of collagen precursors COL1A2 and COL3A1 were quantified using reverse transcription-polymerase chain reaction. Masson trichrome was used for general collagen quantification, whereas immunofluorescence was used for collagen types I and III specific quantification. Total collagen quantification using hydroxyproline assay showed a 51.9% decrease after pressure initiation. Masson trichrome staining showed less collagen after 1 (P &lt; 0.03) and 2 wk (P &lt; 0.002) of pressure application compared with sham and untreated scars. Collagen 1A2 and 3A1 transcript decreased by 41.9- and 42.3-fold, respectively, compared with uninjured skin after pressure treatment, whereas a 2.3- and 1.3-fold increase was seen in untreated scars. This decrease was seen in immunofluorescence staining for collagen types I (P &lt; 0.001) and III (P &lt; 0.04) compared with pretreated levels. Pressure-treated scars also had lower levels of collagen I and III after pressure treatment (P &lt; 0.05) compared with sham and untreated scars. These results demonstrate the modulation of collagen after pressure therapy and further characterize its role in scar formation and therapy."	"Tumor necrosis factor-α regulates triggering receptor expressed on myeloid cells-1-dependent matrix metalloproteinases in the carotid plaques of symptomatic patients with carotid stenosis. To determine the relationship between increased triggering receptor expressed on myeloid cells (TREM)-1 and plaque stability in atherosclerotic carotid stenosis. The mRNA transcripts and protein for TREM-1, MMP-1, MMP-9, collagen type I (COL1A1) and collagen type III (COL3A1) were analyzed by qPCR and immunofluorescence in both tissues and VSMCs isolated from atherosclerotic carotid plaques of symptomatic and asymptomatic patients with carotid stenosis. The TREM-1, MMP-1 and MMP-9 mRNA transcripts were significantly increased (TREM-1, p &lt; 0.01; MMP-1, p &lt; 0.01 and MMP-9, p &lt; 0.001) while COL1A1 and COL3A1 mRNA transcripts were decreased (p &lt; 0.001) in VSMCs isolated from carotid plaques of symptomatic (S) than asymptomatic (AS) patients. Stimulation of cells with TNF-α further increased the mRNA transcripts of TREM-1, MMPs, COL1A1 and COL3A1. Modulation of TREM-1 by treatment with TREM-1 decoy receptor rTREM-1/Fc, and either TREM-1 antibodies or TREM-1 siRNA attenuated the TNF-α-induced expression of MMP-1 and MMP-9 (p &lt; 0.01) and COL1A1 and COL3A1 (p &lt; 0.01) in S compared to AS VSMCs isolated from carotid plaques. Inhibition of NF-kB (BAY 11-7085), JNK (SP600125) and PI3K (LY294002) signaling pathways decreased the expression of TREM-1 (p &lt; 0.01), MMP-1 (p &lt; 0.001) and MMP-9 (p &lt; 0.01) in TNF-α-treated VSMCs isolated from S carotid plaques compared to AS patients. Increased expression of TREM-1 in S compared to AS patients involving MMP-1 and MMP-9 suggest a potential role of TREM-1 in plaque destabilization. Selective blockade of TREM-1 may contribute to the development of new therapies and promising targets for stabilizing vulnerable atherosclerotic plaques."	"Identification of Biomarkers for Footpad Dermatitis Development and Wound Healing. Footpad dermatitis (FPD) is a type of skin inflammation that causes necrotic lesions on the plantar surface of the footpads in commercial poultry, with significant animal welfare, and economic implications. To identify biomarkers for FPD development and wound healing, a battery cage trial was conducted in which a paper sheet was put on the bottom of cages to hold feces to induce FPD of broilers. Day-of-hatch Ross 308 male broiler chicks were fed a corn-soybean meal diet and assigned to 3 treatments with 8 cages per treatment and 11 birds per cage. Cages without paper sheets were used as a negative control (NEG). Cages with paper sheets during the entire growth period (d 0-30) were used as a positive control (POS) to continually induce FPD. Cages with paper sheets during d 0-13 and without paper sheets during d 14-30 were used to examine the dynamic of FPD development and lesion wound healing (LWH). Footpad lesions were scored to grade (G) 1-5 with no lesion in G1 and most severe lesion in G5. Covering with paper sheets in POS and LWH induced 99% incidence of G3 footpads on d 13. Removing paper sheets from LWH healed footpad lesions by d 30. One representative bird, with lesions most close to pen average lesion score, was chosen to collect footpad skin samples for biomarker analysis. Total collagen protein and mRNA levels of tenascin X (TNX), type I α1 collagen (COL1A1), type III α1 collagen (COL3A1), tissue inhibitor of metalloproteinase 3 (TIMP3), and integrin α1 (ITGA1) mRNA levels were decreased (P &lt; 0.05), while mRNA levels of tenascin C (TNC), tumor necrosis factor (TNF) α, Toll-like receptor (TLR) 4 and vascular endothelial growth factor (VEGF), IL-1β, and the ratio of MMP2 to all TIMP were increased (P &lt; 0.03) in G3 footpads in POS and LWH compared to G1 footpads in NEG on d 14. These parameters continued to worsen with development of more severe lesions in POS. After paper sheets were removed (i.e., LWH), levels of these parameters gradually or rapidly returned to levels measured in NEG. Regression analysis indicated significant quadratic changes of these parameters to footpad lesion scores. In summary, these biomarkers were interrelated with dynamic changes of footpad lesion scores, suggesting they may be used as potential biomarkers for footpad lesion development and wound healing process. "	"Folliculostellate cell interacts with pericyte via TGFβ2 in rat anterior pituitary. The anterior pituitary gland comprises five types of endocrine cells plus non-endocrine cells including folliculostellate cells, endothelial cells, and capillary mural cells (pericytes). In addition to being controlled by the hypothalamic-pituitary-target organ axis, the functions of these cells are likely regulated by local cell and extracellular matrix (ECM) interactions. However, these complex interactions are not fully understood. We investigated folliculostellate cell-mediated cell-to-cell interaction. Using S100β-GFP transgenic rats, which express GFP in folliculostellate cells, we designed a three-dimensional cell culture to examine the effects of folliculostellate cells. Interestingly, removal of folliculostellate cells reduced collagen synthesis (Col1a1 and Col3a1). Because pericytes are important collagen-producing cells in the gland, we stained for desmin (a pericyte marker). Removal of folliculostellate cells resulted in fewer desmin-positive pericytes and less desmin mRNA. We then attempted to identify the factor mediating folliculostellate cell-pericyte interaction. RT-PCR and in situ hybridization revealed that the important profibrotic factor transforming growth factor beta-2 (TGFβ2) was specifically expressed in folliculostellate cells and that TGFβ receptor II was expressed in pericytes, endothelial cells, and parenchymal cells. Immunocytochemistry showed that TGFβ2 induced SMAD2 nuclear translocation in pericytes. TGFβ2 increased collagen synthesis in a dose-dependent manner. This action was completely blocked by TGFβ receptor I inhibitor (SB431542). Diminished collagen synthesis in folliculostellate cell-deficient cell aggregates was partially recovered by TGFβ2. TGFβ2-mediated folliculostellate cell-pericyte interaction appears to be essential for collagen synthesis in rat anterior pituitary. This finding sheds new light on local cell-ECM interactions in the gland."	"Detection and Quantification of Mosaic Mutations in Disease Genes by Next-Generation Sequencing. The identification of mosaicism is important in establishing a disease diagnosis, assessing recurrence risk, and genetic counseling. Next-generation sequencing (NGS) with deep sequence coverage enhances sensitivity and allows for accurate quantification of the level of mosaicism. NGS identifies low-level mosaicism that would be undetectable by conventional Sanger sequencing. A customized DNA probe library was used for capturing targeted genes, followed by deep NGS analysis. The mean coverage depth per base was approximately 800×. The NGS sequence data were analyzed for single-nucleotide variants and copy number variations. Mosaic mutations in 10 cases/families were detected and confirmed by NGS analysis. Mosaicism was identified for autosomal dominant (JAG1, COL3A1), autosomal recessive (PYGM), and X-linked (PHKA2, PDHA1, OTC, and SLC6A8) disorders. The mosaicism was identified either in one or more tissues from the probands or in a parent of an affected child. When analyzing data from patients with unusual testing results or inheritance patterns, it is important to further evaluate the possibility of mosaicism. Deep NGS analysis not only provides insights into the spectrum of mosaic mutations but also underlines the importance of the detection of mosaicism as an integral part of clinical molecular diagnosis and genetic counseling."	"Changes in mitochondrial DNA copy number and extracellular matrix (ECM) proteins in the uterosacral ligaments of premenopausal women with pelvic organ prolapse. The study aimed to explore the changes in mitochondrial DNA (mtDNA) copy number, collagen, and matrix metalloproteinase (MMPs) expression with pelvic organ prolapse (POP) in the uterosacral ligaments of premenopausal women. A group of 56 premenopausal women, all younger than 52 years of age, were enrolled in this study. Uterosacral ligament (UL) biopsies were obtained from uterine specimens taken from 22 women with POP (n = 22, study group) and 34 myoma patients without POP (n = 34, control group) during abdominal or vaginal hysterectomy. Quantitative real-time polymerase chain reaction (Q-PCR) and immunohistochemistry analysis were applied in the present study. The rate of high body mass index (BMI) (&gt; 24 kg/m(2)) women was significantly higher in the POP group (81.8% vs. 35.3%, p = 0.001 *), and the BMI of the POP women was higher than that of the nonPOP women (p = 0.029 *). The mtDNA copy number (p = 0.001 *), collagen III alpha 1 (COL3α1) expression (p = 0.025 *), and MMP2 expression (p = 0.047 *) were significantly higher in the POP group when compared with the nonPOP group. The high BMI women had a higher mtDNA copy number (p = 0.002 *), COL3α1 (p = 0.028 *) gene expressions compared with the standard BMI women. In the premenopausal state, higher BMI may be a stronger associate factor than vaginal birth for the development of POP. The higher mtDNA copy number, COL3α1, and MMP2 gene expressions are highly associated with POP in the UL of premenopausal women."	"Gossypol ameliorates liver fibrosis in diabetic rats induced by high-fat diet and streptozocin. 11β-hydroxysteroid dehydrogenase 1 (11β-HSD1) inhibitors have been shown to treat type 2 diabetes (T2D). Since gossypol is an 11β-HSD1 inhibitor, the objective of the present study was to treat T2D and T2D-related liver fibrosis in rat model using low-dose gossypol. T2D was induced by feeding with high fat diet plus injection of streptozocin (30mg/kg). Diabetic rats were treated with either vehicle control or racemic gossypol with a dose of 15mg/kg/day for 4weeks followed by 15mg/kg/week for additional 8weeks. Blood glucose, cholesterol, LDL, and triglycerides were measured. Messenger mRNA levels of glucocorticoid receptor (Nr3c1), phosphoenolpyruvate carboxykinase (Pck1), glucose-6-phosphatase (G6pc), collagen I (Col1a1), collagen III (Col3a1), fibronectin (Fn1), tissue inhibitor of metalloproteinase 1 (Timp1), and 2 (Timp2) were measured. T2D rats had higher serum glucose, cholesterol, LDL, and triglyceride levels compared to control. Liver Nr3c1, Col1a1, Col3a1, Fn1, Timp1, and Timp2 were increased in T2D rats. T2D liver showed significant fibrosis with the increases of α-smooth muscle actin and fibronectin. After gossypol treatment, serum glucose level was lowered by 64%. Liver fibrosis was significantly ameliorated. Nr3c1, Col1a1, Col3a1, Fn1, Timp1, Timp2, Pck1 as well as G6pc levels were significantly reduced. In conclusion, low dose gossypol is effective for the treatment of T2D and T2D-related fibrosis. "	"Effects of lipopolysaccharide, multiwalled carbon nantoubes, and the combination on lung alveolar epithelial cells. Multiwalled carbon nanotubes (MWCNT) have been shown to induce lung fibrosis in animal models, however the underlying molecular factors/mechanisms are still unclear. In this study, we investigated the effects of lipopolysaccharide (LPS), MWCNT, and the combination of LPS and MWCNT on the expression of matrix metalloproteinase-9 and metalloproteinase-12 (MMP-9, MMP-12), collagen 3A1 (Col3A1), and transforming growth factor beta (TGFβ) in alveolar epithelial A549 cells. MMPs are proteinases that degrade extracellular matrix and play a role in lung fibrosis. A549 cells were exposed to LPS (1 ng/mL), MWCNT (20 μg/mL), and the combination and analyzed for paracellular permeability, TGFβ, Col3A1, MMP-9, MMP-12, NF-κB activation, and cell migration by real-time PCR and immunofluorescence. LPS, the combination of LPS and MWCNT, and MWCNT only at the highest tested dose induced blue dextran extravasation. LPS and MWCNT increased the expression of TGFβ and its downstream target gene Col3A, and MMP-9 and MMP-12 mRNA. MWCNT potently induced cell migration toward wound healing, whereas LPS slightly induced cell migration. Both, LPS and MWCNT, induced NF-κB nuclear translocation. Our results indicate that MWCNT activated alveolar epithelial cells to promote fibrogenesis, and that LPS differentially primes molecular factors involved in lung remodeling. These findings suggest a role of alveolar epithelial cells in fibrogenesis and also may aid in the design and development of tests for screening of fibrogenic agents. © 2016 Wiley Periodicals, Inc. Environ Toxicol 32: 445-455, 2017."	"Acetabular Labral Reconstruction With Autologous Tendon Tissue in a Porcine Model: In Vivo Histological Assessment and Gene Expression Analysis of the Healing Tissue. Acetabular labral reconstruction with autologous tendons is the preferred method for treating a severely damaged labrum. However, the healing process of implants remains unknown. Similar to the human acetabular labrum, the porcine acetabular labrum is a fibrocartilage-like tissue. This study aimed to characterize the histological healing process and gene expression profile of implants in a porcine model of acetabular labral reconstruction. Descriptive laboratory study. Eighteen pigs were included in this study. The pigs underwent unilateral acetabular labral reconstruction. A 1.0 cm-long defect was made at the site of the anterior (cranial) dorsal labrum, which was repaired using an autologous mesogluteus tendon. The pigs were sacrificed at 12 and 24 weeks postoperatively. The implants were subjected to histological assessment and gene expression analysis. The cell phenotype of the implants was visualized using paraffin-embedded sections. Macroscopic observations revealed that at 12 weeks, 8 of 9 implants partially filled the labral defect; by contrast, at 24 weeks, 6 of 9 implants fully filled and 3 implants partially filled the labral defects. Oval- or round-shaped fibrochondrocytes were found in the implants at 12 and 24 weeks. The matrix staining results showed that proteoglycan and collagen types 1 and 2 were more evident in the implants at 24 weeks than at 12 weeks. Gene expression analysis results revealed that COL2A1 and COL3A1 were expressed by the implants to a higher extent at 24 weeks than at 12 weeks; COL2A1 and COL3A1 were also expressed to a higher extent in the implants than in the native tendon. On the basis of the results of histological assessment and gene expression analysis, autologous tendon tissue for acetabular labral reconstruction can fully or partially fill labral defects and converts to fibrocartilage, which is rich in proteoglycan and collagen types 1 and 2, at 24 weeks in a porcine model. Autologous tendon tissue can be considered as a viable option for acetabular labral reconstruction."	"Aryl hydrocarbon receptor-driven signals inhibit collagen synthesis in the gut. Fibrostrictures (FS) are a major complication of Crohn's disease (CD). Pathogenesis of FS is not fully understood, but activation of fibroblasts and excessive collagen deposition are crucial in the development of FS. Here, we investigated the role of aryl hydrocarbon receptor (AhR) in intestinal fibrosis. AhR RNA and protein expression were evaluated in intestinal fibroblasts of CD patients and controls. CD fibroblasts were stimulated with TGF-β1 or TNF-α in the presence or absence of the AhR activator Ficz, an AhR antagonist CH223191, or a specific AhR-silencing RNA. In CD fibroblasts, TGF-β1 and TNF-α increased Col1A1, Col3A1 and α-SMA transcripts and collagen secretion and this effect was reduced by Ficz and upregulated by CH22319. TGF-β1 or TNF-α induced activation of p38 and ERK1/2 MAP kinases was decreased by Ficz and increased by CH223191. The inhibitory effect of Ficz on Map kinase activation and collagen induction was abolished by AhR silencing. To assess the role of AhR in vivo, mice with trinitrobenzene-sulfonic-acid induced colonic fibrosis were given Ficz or CH223191. Mice given either Ficz or CH223191 produced less or more collagen respectively as compared with control mice. Our results indicate that AhR is a negative regulator of profibrotic signals in the gut. "	"Autologous leukocyte-reduced platelet-rich plasma therapy for Achilles tendinopathy induced by collagenase in a rabbit model. Leukocyte-reduced platelet-rich plasma (LR-PRP) is a therapy for tendinopathy of the Achilles tendon (TAT); however, there is scarce information regarding LR-PRP effects in rabbit models of TAT. We compared, at 4 and 12 weeks (w), the LR-PRP and placebo (PBS) effects on ultrasonography, histology and relative gene expression of collagen types I (COL1A1) and III (COL3A1) and vascular endothelial growth factor (VEGF) in 24 rabbits with TAT induced by collagenase. The rabbits (treated with both treatments) were euthanatised after either 4 or 12 w. A healthy group (HG (n = 6)) was included. At 4 and 12 w, the LR-PRP group had a no statistically different histology score to the HG. At w 4, the COL1A1 expression was significantly higher in the LR-PRP group when compared to HG, and the expression of COL3A1 from both LR-PRP and PBS-treated tendons was significantly higher when compared to the HG. At w 12, the expression of COL3A1 remained significantly higher in the PBS group in comparison to the LR-PRP group and the HG. At w 4, the LR-PRP group presented a significantly higher expression of VEGF when compared to the PBS group and the HG. In conclusion, LR-PRP treatment showed regenerative properties in rabbits with TAT."	"Osteogenic potential of human adipose-tissue-derived mesenchymal stromal cells cultured on 3D-printed porous structured titanium. Integration of porous metal prosthetics, which restore form and function of irreversibly damaged joints, into remaining healthy bone is critical for implant success. We investigated the biological properties of adipose-tissue-derived mesenchymal stromal/stem cells (AMSCs) and addressed their potential to alter the in vitro microenvironment of implants. We employed human AMSCs as a practical source for musculoskeletal applications because these cells can be obtained in large quantities, are multipotent, and have trophic paracrine functions. AMSCs were cultured on surgical-grade porous titanium disks as a model for orthopedic implants. We monitored cell/substrate attachment, cell proliferation, multipotency, and differentiation phenotypes of AMSCs upon osteogenic induction. High-resolution scanning electron microscopy and histology revealed that AMSCs adhere to the porous metallic surface. Compared to standard tissue culture plastic, AMSCs grown in the porous titanium microenvironment showed differences in temporal expression for genes involved in cell cycle progression (CCNB2, HIST2H4), extracellular matrix production (COL1A1, COL3A1), mesenchymal lineage identity (ACTA2, CD248, CD44), osteoblastic transcription factors (DLX3, DLX5, ID3), and epigenetic regulators (EZH1, EZH2). We conclude that metal orthopedic implants can be effectively seeded with clinical-grade stem/stromal cells to create a pre-conditioned implant. "	"Dioscin alleviates BDL- and DMN-induced hepatic fibrosis via Sirt1/Nrf2-mediated inhibition of p38 MAPK pathway. Oxidative stress is involved in hepatic stellate cells (HSCs) activation and extracellular matrix overproduction. We previously reported the promising effects of dioscin against CCl4-induced liver fibrosis, but its effects and mechanisms on BDL- and DMN-induced liver fibrosis remain unknown. The results in the present study indicated that dioscin significantly inhibited HSCs activation and attenuated hepatic fibrosis in rats. Furthermore, dioscin markedly up-regulated the levels of sirtuin 1 (Sirt1), HO-1, GST, GCLC and GCLM via increasing the nuclear translocation of nuclear erythroid factor 2-related factor 2 (Nrf2), which in turn inhibited mitogen-activated protein kinase 14 (p38 MAPK) phosphorylation and reduced the levels of COL1A1, COL3A1, α-SMA and fibronectin. These results were further validated by knockdown of Sirt1 and Nrf2 using siRNAs silencing, and abrogation of p38 MAPK using SB-203580 (a p38 MAPK inhibitor) in HSC-T6 and LX-2 cells. Collectively, our findings confirmed the potent effects of dioscin against liver fibrosis and also provided novel insights into the mechanisms of this compound as a candidate for the prevention of liver fibrosis in the future. "	"Epithelial but not stromal expression of collagen alpha-1(III) is a diagnostic and prognostic indicator of colorectal carcinoma. Colorectal cancer (CRC) is the third most common cancer in males and the second in females worldwide with very poor prognosis. Collagen alpha-1(III) (COL3A1) gene, encoding an extracellular matrix protein, is upregulated in human cancers. Here, we revealed that COL3A1 was increased in CRC by analysis of five Oncomine gene expression datasets (n = 496). Immunohistochemistry analysis of a tissue microarray (n = 90) demonstrated that cancer epithelial but not stromal COL3A1 was significantly upregulated comparing with the normal counterparts. High COL3A1 mRNA and/or protein expression was accompanied with high stage, T stage, Dukes stage, grade and older age, as well as smoking and recurrence status. Upregulated COL3A1 predicted poor overall (p = 0.003) and disease-free (p = 0.025) survival. Increased epithelial but not stromal COL3A1 protein predicted worse outcome (p = 0.03). Older patients (age&gt;65) with high COL3A1 had worse survival than younger (age≤65) with high COL3A1. Plasma COL3A1 was increased in CRC patients (n = 86) by 5.4 fold comparing with healthy individuals, enteritis and polyps patients. Plasma COL3A1 had an area under curve (AUC) of 0.92 and the best sensitivity/specificity of 98.8%/69.1%. While plasma CEA had a poorer prediction power (AUC = 0.791, sensitivity/selectivity = 70.2%/73.0%). Older patients (age≥60) had higher plasma COL3A1 than younger patients. The epithelial COL3A1 protein had an AUC of 0.975 and the best sensitivity/specificity of 95.2%/91.1%. Silencing of COL3A1 suppressed CRC cell proliferation in in vitro MTT assay and in in vivo Zebra fish xenograft model by downregulation of PI3K/AKT and WNT signaling. COL3A1 was a novel diagnosis and prognosis marker of CRC. "	"RNA sequencing identifies crucial genes in papillary thyroid carcinoma (PTC) progression. The study aims to uncover molecular mechanisms of PTC (papillary thyroid carcinoma) progression and provide therapeutic biomarkers. The paired tumor and control tissues were obtained from 5 PTC patients. RNA was extracted and cDNA libraries were constructed. RNA-sequencing (RNA-seq) was performed on the Illumina HiSeq2000 platform using paired-end method. After preprocessing of the RNA-seq data, gene expression value was calculated by RPKM. Then the differentially expressed genes (DEGs) were identified with edgeR. Functional enrichment and protein-protein interaction (PPI) network analyses were conducted for the DEGs. Module analysis of the PPI network was also performed. Transcription factors (TFs) of DEGs were predicted. A cohort of 496 up-regulated DEGs mainly correlating with the ECM degradation pathways, and 440 down-regulated DEGs predominantly enriching in transmembrane transport process were identified. Hub nodes in the PPI network were RRM2 and a set of collagens (COL1A1, COL3A1 and COL5A1), which were also remarkable in module 3 and module 5, respectively. Genes in module 3 were associated with cell cycle pathways, while in module 5 were related to ECM degradation pathways. PLAU, PSG1 and EGR2 were the crucial TFs with higher transcriptional activity in PTC than in control. Several genes including COL1A1, COL3A1, RRM2, PLAU, and EGR2 might be used as biomarkers of PTC therapy. Among them, COL1A1 and COL3A1 might exert their functions via involving in ECM degradation pathway, while RRM2 through cell cycle pathway. PLAU might be an active TF, whereas EGR2 might be a tumor suppressor."	"Ageing is associated with molecular signatures of inflammation and type 2 diabetes in rat pancreatic islets. Ageing is a major risk factor for development of metabolic diseases such as type 2 diabetes. Identification of the mechanisms underlying this association could help to elucidate the relationship between age-associated progressive loss of metabolic health and development of type 2 diabetes. We aimed to determine molecular signatures during ageing in the endocrine pancreas. Global gene transcription was measured in pancreatic islets isolated from young and old rats by Ilumina BeadChip arrays. Promoter DNA methylation was measured by Sequenom MassArray in 46 genes that showed differential expression with age, and correlations with expression were established. Alterations in morphological and cellular processes with age were determined by immunohistochemical methods. Age-related changes in gene expression were found at 623 loci (&gt;1.5-fold, false discovery rate [FDR] &lt;5%), with a significant (FDR &lt; 0.05) enrichment in genes previously implicated in islet-cell function (Enpp1, Abcc8), type 2 diabetes (Tspan8, Kcnq1), inflammatory processes (Cxcl9, Il33) and extracellular matrix organisation (Col3a1, Dpt). Age-associated transcriptional differences negatively correlated with promoter DNA methylation at several loci related to inflammation, glucose homeostasis, cell proliferation and cell-matrix interactions (Il33, Cxcl9, Gpr119, Fbp2, Col3a1, Dpt, Spp1). Our findings suggest that a significant proportion of pancreatic islets develop a low-grade 'chronic' inflammatory status with ageing and this may trigger altered functional plasticity. Furthermore, we identified changes in expression of genes previously linked to type 2 diabetes and associated changes in DNA methylation that could explain their age-associated dysregulation. These findings provide new insights into key (epi)genetic signatures of the ageing process in islets."	"Aortic Remodelling Is Improved by 2,3,5,4'-Tetrahydroxystilbene-2-O-β-D-glucoside Involving the Smad3 Pathway in Spontaneously Hypertensive Rats. Hypertension is a common health problem that substantially increases the risk of cardiovascular disease. The condition increases blood pressure, which causes alterations in vascular structure and leads to the development of vascular pathologies. 2,3,5,4'-Tetrahydroxystilbene-2-O-β-D-glucoside (THSG), a resveratrol analogue extracted from a Chinese medicinal plant, has been proven to have numerous vascular protection functions. This study investigated whether THSG can improve vascular remodeling, which has thus far remained unclear. Orally administering THSG to spontaneously hypertensive rats (SHRs) aged 12 weeks for 14 weeks significantly inhibited intima-media thickness in the lower parts of the aortic arch, increased the vascular diastolic rate in response to acetylcholine, and reduced remodelling-related mRNA expression, such as that of ACTA2, CCL3, COL1A2, COL3A1, TIMP1 WISP2, IGFBP1, ECE1, KLF5, MYL1 BMP4, FN1, and PAI-1. Immunofluorescence staining also showed an inhibitory effect similar to that of THSG on PAI-1 protein expression in rat aortas. Results from immunoprecipitation and a Western blot assay showed that THSG inhibited the acetylation of Smad3. A chromatin immunoprecipitation assay showed that THSG prevented Smad3 binding to the PAI-1 proximal promoter in SHR aortas. In conclusion, our results demonstrated that the inhibitory effect of THSG on aortic remodelling involved the deacetylating role of Smad3 with increasing blood flow and with constant blood pressure. "	"Ehlers-Danlos Syndrome Type IV with Bilateral Pneumothorax. A 17-year-old teen was hospitalized with bilateral pneumothorax. After the bilateral lungs were expanded using catheter tubes, he fully recovered and he was discharged from our hospital. He had a history of colon perforation. Ehlers-Danlos syndrome (EDS) was suspected due to the combination of colon perforation and pneumothorax, and EDS type IV was confirmed after a genetic study identified a c.1511g&gt;a mutation in the COL3A1 gene. This is the first report of bilateral pneumothorax caused by EDS type IV. Clinicians should consider EDS type IV in the differential diagnosis for bilateral pneumothorax in conjunction with distinct previous histories and radiological findings. "	"Further evidence of the involvement of the Wnt signaling pathway in Dupuytren's disease. Genetic background plays an important role in the development of Dupuytren's disease. A genome-wide association study (GWAS) showed that nine loci are associated with the disease, six of which contain genes that are involved in Wnt signaling (WNT2, WNT4, WNT7B, RSPO2, SFRP4, SULF1). To obtain insight in the role of these genes, we performed expression studies on affected and unaffected patient's tissues. Surgically obtained nodules and cords from eight Dupuytren's patients were compared to patient-matched control tissue (unaffected transverse palmar fascia). The Wnt-related genes found in the GWAS, the classical Wnt-downstream protein β-catenin, as well as (myo)fibroblast markers were analyzed using real-time qPCR and immunohistochemical stainings for mRNA levels and protein levels, respectively. The collagen-coding genes COL1A1 and COL3A1 were highly upregulated on mRNA level, both in cords and nodules. Three Wnt-related genes were found to be differently regulated compared to control tissue: WNT2 was downregulated in nodules, WNT7B was upregulated in nodules, and SFRP4 was upregulated in nodules and cords. Immunohistochemistry revealed significantly less staining of Wnt2 in cords, but significantly more staining for Wnt7b in nodules. There was significantly more staining of α-SMA in nodules and cord and β-catenin in nodules than in control tissue. We found differences in expression, both at mRNA and protein level, in several Wnt-related genes found earlier to be associated with Dupuytren's disease. Of these, Wnt7b was upregulated and found in close association with both α-SMA and β-catenin expressing cells, making it a candidate pro-fibrotic mediator in Dupuytren's disease. "	"Accumulation and Changes in Composition of Collagens in Subcutaneous Adipose Tissue After Bariatric Surgery. Extracellular matrix (ECM) in sc adipose tissue (scAT) undergoes pathological remodeling during obesity. However, its evolution during weight loss remains poorly explored. The objective of the investigation was to study the histological, transcriptomic, and physical characteristics of scAT ECM remodeling during the first year of bariatric surgery (BS)-induced weight loss and their relationships with metabolic and bioclinical improvements. A total of 118 morbidly obese candidates for BS were recruited and followed up during 1 year after BS. scAT surgical biopsy and needle aspiration as well as scAT stiffness measurement were performed in three subgroups before and after BS. Fourteen nonobese, nondiabetic subjects served as controls. Significantly increased picrosirius-red-stained collagen accumulation in scAT after BS was observed along with fat mass loss, despite metabolic and inflammatory improvements and undetectable changes of scAT stiffness. Collagen accumulation positively associated with M2-macrophages (CD163(+) cells) before BS but negatively afterward. Expression levels of genes encoding ECM components (eg, COL3A1, COL6A1, COL6A2, ELN), cross-linking enzymes (eg, lysyl oxidase [LOX], LOXL4, transglutaminase), metalloproteinases, and their inhibitors were modified 1 year after BS. LOX expression and protein were significantly decreased and associated with decreased fat mass as well as other cross-linking enzymes. Although total collagen I and VI staining decreased 1 year after BS, we found increased degraded collagen I and III in scAT, suggesting increased degradation. After BS-induced weight loss and related metabolic improvements, scAT displays major collagen remodeling with an increased picrosirius-red staining that relates to increased collagen degradation and importantly decreased cross-linking. These features are in agreement with adequate ECM adaptation during fat mass loss."	"A comparative study of the effects of retinol and retinoic acid on histological, molecular, and clinical properties of human skin. All-trans retinol, a precursor of retinoic acid, is an effective anti-aging treatment widely used in skin care products. In comparison, topical retinoic acid is believed to provide even greater anti-aging effects; however, there is limited research directly comparing the effects of retinol and retinoic acid on skin. In this study, we compare the effects of retinol and retinoic acid on skin structure and expression of skin function-related genes and proteins. We also examine the effect of retinol treatment on skin appearance. Skin histology was examined by H&amp;E staining and in vivo confocal microscopy. Expression levels of skin genes and proteins were analyzed using RT-PCR and immunohistochemistry. The efficacy of a retinol formulation in improving skin appearance was assessed using digital image-based wrinkle analysis. Four weeks of retinoic acid and retinol treatments both increased epidermal thickness, and upregulated genes for collagen type 1 (COL1A1), and collagen type 3 (COL3A1) with corresponding increases in procollagen I and procollagen III protein expression. Facial image analysis showed a significant reduction in facial wrinkles following 12 weeks of retinol application. The results of this study demonstrate that topical application of retinol significantly affects both cellular and molecular properties of the epidermis and dermis, as shown by skin biopsy and noninvasive imaging analyses. Although the magnitude tends to be smaller, retinol induces similar changes in skin histology, and gene and protein expression as compared to retinoic acid application. These results were confirmed by the significant facial anti-aging effect observed in the retinol efficacy clinical study."	"Notoginsenoside Ft1 Promotes Fibroblast Proliferation via PI3K/Akt/mTOR Signaling Pathway and Benefits Wound Healing in Genetically Diabetic Mice. Wound healing requires the essential participation of fibroblasts, which is impaired in diabetic foot ulcers (DFU). Notoginsenoside Ft1 (Ft1), a saponin from Panax notoginseng, can enhance platelet aggregation by activating signaling network mediated through P2Y12 and induce proliferation, migration, and tube formation in cultured human umbilical vein endothelial cells. However, whether it can accelerate fibroblast proliferation and benefit wound healing, especially DFU, has not been elucidated. In the present study on human dermal fibroblast HDF-a, Ft1 increased cell proliferation and collagen production via PI3K/Akt/mTOR signaling pathway. On the excisional wound splinting model established on db/db diabetic mouse, topical application of Ft1 significantly shortened the wound closure time by 5.1 days in contrast with phosphate-buffered saline (PBS) treatment (15.8 versus 20.9 days). Meanwhile, Ft1 increased the rate of re-epithelialization and the amount of granulation tissue at day 7 and day 14. The molecule also enhanced mRNA expressions of COL1A1, COL3A1, transforming growth factor (TGF)-β1 and TGF-β3 and fibronectin, the genes that contributed to collagen expression, fibroblast proliferation, and consequent scar formation. Moreover, Ft1 facilitated the neovascularization accompanied with elevated vascular endothelial growth factor, platelet-derived growth factor, and fibroblast growth factor at either mRNA or protein levels and alleviated the inflammation of infiltrated monocytes indicated by reduced tumor necrosis factor-α and interleukin-6 mRNA expressions in the diabetic wounds. Altogether, these results indicated that Ft1 might accelerate diabetic wound healing by orchestrating multiple processes, including promoting fibroblast proliferation, enhancing angiogenesis, and attenuating inflammatory response, which provided a great potential application of it in clinics for patients with DFU. "	"The Effect of Acute and Chronic Social Stress on the Hippocampal Transcriptome in Mice. Psychogenic stress contributes to the formation of brain pathology. Using gene expression microarrays, we analyzed the hippocampal transcriptome of mice subjected to acute and chronic social stress of different duration. The longest period of social stress altered the expression of the highest number of genes and most of the stress-induced changes in transcription were reversible after 5 days of rest. Chronic stress affected genes involved in the functioning of the vascular system (Alas2, Hbb-b1, Hba-a2, Hba-a1), injury response (Vwf, Mgp, Cfh, Fbln5, Col3a1, Ctgf) and inflammation (S100a8, S100a9, Ctla2a, Ctla2b, Lcn2, Lrg1, Rsad2, Isg20). The results suggest that stress may affect brain functions through the stress-induced dysfunction of the vascular system. An important issue raised in our work is also the risk of the contamination of brain tissue samples with choroid plexus. Such contamination would result in a consistent up- or down-regulation of genes, such as Ttr, Igf2, Igfbp2, Prlr, Enpp2, Sostdc1, 1500015O10RIK (Ecrg4), Kl, Clic6, Kcne2, F5, Slc4a5, and Aqp1. Our study suggests that some of the previously reported, supposedly specific changes in hippocampal gene expression, may be a result of the inclusion of choroid plexus in the hippocampal samples. "	"Primary myeloma interaction and growth in coculture with healthy donor hematopoietic bone marrow. Human primary myeloma (MM) cells do not survive in culture; current in vitro and in vivo systems for growing these cells are limited to coculture with a specific bone marrow (BM) cell type or growth in an immunodeficient animal model. The purpose of the study is to establish an interactive healthy donor whole BM based culture system capable of maintaining prolonged survival of primary MM cells. This normal BM (NBM) coculture system is different from using autologous BM that is already affected by the disease. Whole BM from healthy donors was cultured in medium supplemented with BM serum from MM patients for 7 days, followed by 7 days of coculture with CD138-selected primary MM cells or MM cell lines. MM cells in the coculture were quantified using flow cytometry or bioluminescence of luciferase-expressing MM cells. T-cell cytokine array and proteomics were performed to identify secreted factors. NBM is composed of adherent and nonadherent compartments containing typical hematopoietic and mesenchymal cells. MM cells, or a subset of MM cells, from all examined cases survived and grew in this system, regardless of the MM cells' molecular risk or subtype, and growth was comparable to coculture with individual stromal cell types. Adherent and nonadherent compartments supported MM growth, and this support required patient serum for optimal growth. Increased levels of MM growth factors IL-6 and IL-10 along with MM clinical markers B2M and LDHA were detected in supernatants from the NBM coculture than from the BM cultured alone. Levels of extracellular matrix factors (e.g., MMP1, HMCN1, COL3A1, ACAN) and immunomodulatory factors (e.g., IFI16, LILRB4, PTPN6, AZGP1) were changed in the coculture system. The NBM system protected MM cells from dexamethasone but not bortezomib, and effects of lenalidomide varied. The NBM system demonstrates the ability of primary MM plasma cells to interact with and to survive in coculture with healthy adult BM. This model is suitable for studying MM-microenvironment interactions, particularly at the early stage of engagement in new BM niches, and for characterizing MM cell subpopulations capable of long-term survival through secretion of extracellular matrix and immune-related factors."	"Cervical artery dissections and type A aortic dissection in a family with a novel missense COL3A1 mutation of vascular type Ehlers-Danlos syndrome. Cervical artery dissection (CeAD) is a rare condition. One of the causes is the vascular type of Ehlers-Danlos syndrome (vEDS). A novel missense mutation in COL3A1 was found in a young patient with CeAD as the single manifestation of vEDS. This is a heterozygous c.953G &gt; A mutation in exon 14, disrupting the normal Gly-X-Y repeats of type III procollagen, by converting glycine to aspartic acid. "	"Tissue Inhibitor of Metalloproteinase-2 Suppresses Collagen Synthesis in Cultured Keloid Fibroblasts. Keloids are defined as a kind of dermal fibroproliferative disorder resulting from the accumulation of collagen. In the remodeling of extracellular matrix, the balance between matrix metalloproteinases (MMPs) and the tissue inhibitors of metalloproteinases (TIMPs) is as critical as the proper production of extracellular matrix. We investigate the role of TIMPs and MMPs in the pathogenesis of keloids and examine the therapeutic potential of TIMP-2. The expression of TIMPs and MMPs in most inflamed parts of cultured keloid fibroblasts (KFs) and peripheral normal skin fibroblasts (PNFs) in the same individuals and the reactivity of KFs to cyclic mechanical stretch were analyzed by quantitative real-time polymerase chain reaction and enzyme-linked immunosorbent assay (n = 7). To evaluate the effect of treating KFs with TIMP-2, collagen synthesis was investigated by quantitative real-time polymerase chain reaction and enzyme-linked immunosorbent assay, and microscopic analysis was used to examine the treatment effects of TIMP-2 on ex vivo cultures of keloid tissue (n = 6). TIMP-2 was downregulated in cultured KFs compared with PNFs in the same individuals, and the reduction in TIMP-2 was exacerbated by cyclic mechanical stretch. Administration of TIMP-2 (200 or 300 ng/mL) significantly suppressed expression of Col1A2 and Col3A1 mRNA and collagen type I protein in KFs. TIMP-2 also significantly reduced the skin dermal and collagen bundle thickness in ex vivo cultures of keloid tissue. These results indicated that downregulation of TIMP-2 in KFs is a crucial event in the pathogenesis of keloids, and the TIMP-2 would be a promising candidate for the treatment of keloids."	NA	NA	NA
+"FBN1"	"familial thoracic aortic aneurysm and aortic dissection"	"The prognostic value of COL3A1/FBN1/COL5A2/SPARC-mir-29a-3p-H19 associated ceRNA network in Gastric Cancer through bioinformatic exploration. Increasing studies on malignant tumors have proposed a new competing endogenous RNA (ceRNA) regulatory mechanism that mRNA, miRNA and lncRNA interact with each other. However, the mRNA-miRNA-lncRNA associated ceRNA network in gastric cancer remains unknown. We used online bioinformatic softwares to predict the hub genes and their upstream miRNAs and lncRNAs in gastric cancer, and then performed survival analyses. After collecting gastric cancer tissue samples and performing PCR experiments, the correlations among predicted mRNA, miRNA and lncRNA were further verified. A total of 101 up-regulated significant differentially expressed genes (DEGs) and 219 down-regulated significant DEGs in gastric cancer were confirmed. Functional enrichment analyses of these significant DEGs indicated that they were potentially enriched in some pathways involved in tumor malignant biological processes or metabolism. Then, we identified 20 hub genes in the PPI networks. Combined with expression and survival analyses, 8 up-regulated genes and 1 down-regulated gene were identified as central genes and acted as important prognostic roles in gastric cancer. 17 miRNAs were confirmed that might potentially regulate the expressions of these central genes. But only 8 out of them indicated better outcome in gastric cancer. Further, 79 lncRNAs were predicted that might have the potence to combine with the 8 central miRNAs. The lncRNA H19 was eventually defined as a central lncRNA by survival analyses. Stimultaneously, we found that there were certain interactions among lncRNA, miRNA and mRNAs in 50 gastric cancer tissues by qRT-PCR. Moreover, the high expression of H19 is associated with advanced TNM stage, primary tumor and lymph nodes, indicating a poor prognosis. In summary, we uncovered the prognostic value of COL3A1/FBN1/COL5A2/SPARC-mir-29a-3p-H19 ceRNA network in gastric cancer."	"Reversion-inducing cysteine-rich protein with Kazal motifs and MT1-MMP promote the formation of robust fibrillin fibers. Fibrillins (FBNs) form mesh-like structures of microfibrils in various elastic tissues. RECK and FBN1 are co-expressed in many human tissues, suggesting a functional relationship. We found that dermal FBN1 fibers show atypical morphology in mice with reduced RECK expression (RECK-Hypo mice). Dermal FBN1 fibers in mice-lacking membrane-type 1-matrix metalloproteinase (MT1-MMP) show a similar atypical morphology, despite the current notion that MT1-MMP (a membrane-bound protease) and RECK (a membrane-bound protease inhibitor) have opposing functions. Our experiments using dermal fibroblasts indicated that RECK promotes pro-MT1-MMP activation, increases cell-associated gelatinase/collagenase activity, and decreases diffusible gelatinase/collagenase activity, while MT1-MMP stabilizes RECK in these cells. Experiments using purified proteins indicate that RECK and its binding partner ADAMTS10 keep the proteolytic activity of MT1-MMP within a certain range. These findings suggest that RECK, ADAMTS10, and MT1-MMP cooperate to support the formation of robust FBN1 fibers."	"Disclosure of secondary findings in exome sequencing of 2480 Japanese cancer patients. High-throughput sequencing has greatly contributed to precision medicine. However, challenges remain in reporting secondary findings (SFs) of germline pathogenic variants and managing the affected patients. The aim of this study was to examine the incidence of SFs in Japanese cancer patients using whole exome sequencing (WES) and to understand patient preferences regarding SF disclosure. WES was conducted for 2480 cancer patients. Genomic data were screened and classified for variants of 59 genes listed by the American College of Medical Genetics and Genomics SF v2.0 and for an additional 13 hereditary cancer-related genes. Majority of the participants (68.9%; 1709/2480) opted for disclosure of their SFs. Thirty-two pathogenic or likely pathogenic variants, including BRCA1 (7 patients), BRCA2 (4), CHEK2 (4), PTEN (3), MLH1 (3), SDHB (2), MSH6 (1), NF1 (1), EXT2 (1), NF1 (1), NTRK1 (1), MYH7 (3), MYL2 (1), TNNT2 (1), LDLR (2), FBN1 (1), and KCNH2 (1) were recognized in 36 patients (1.5%). Twenty-eight (77.8%) patients underwent genetic counseling and received their SF results. Eighteen (64.3%) patients underwent clinical management for SFs. Genetic validation tests were administered significantly more frequently to patients with than without a SF-related personal history (P = 0.025). This was a first attempt at a large-scale systematic exome analysis in Japan; nevertheless, many cancer patients opted for disclosure of SFs and accepted or considered clinical management."	"Bone Geometry, Density, and Microarchitecture in the Distal Radius and Tibia in Adults With Marfan Syndrome Assessed HR-pQCT. Marfan Syndrom (MFS) is a hereditary disorder of connective tissue caused by mutations in the fibrillin-1 gene. Studies have shown that patients with MFS have lower bonemass but little is known about the other constituents of bone strength. We hypothesize that patients with MFS will have larger bone area and compromised cortical microarchitecture in comparison to non-MFS individuals. A total of 74 adult patients with MFS and 145 age and gender matched non-MFS reference individuals (ref.gr) were included in this study. High-resolution peripheral quantitative computed tomography (HR-pQCT) at the distal radius and distal tibia and dual-energy X-ray absorptiometry of total hip and the lumbar spine were performed, and bone turn-over and sex hormones were measured. Patients with MFS had significantly lower areal bone mineral density (BMD) at the total spine (-13%) and total hip (-7%) when compared with the ref.gr. Patients with MFS had significantly larger total bone area at both the radius (+27%) and tibia (+34%). Volumetric BMD at both the measured sites showed significantly reduced total, trabecular and cortical volumetric BMD in patients with MFS compared to the ref.gr. The microarchitectural parameters at the radius and tibia were compromised in patients with MFS with significantly reduced trabecular number and thickness leading to a higher trabecular separation and significantly reduced cortical thickness and increased cortical porosity compared to the reference group. The differences in bone-density, -geometry or -microarchitecture was not explained by increased bone turnover markers or circulating levels of sex hormones. We conclude patients with MFS had altered bone geometry, altered bone microstructure and lower bone mass (lower aBMD and vBMD at all sites) compared to healthy reference individuals. Future studies should focus on fracture rates and fracture risk in adult and aging patients with MFS."	"Single-Cell Transcriptomic Profiling of Vascular Smooth Muscle Cell Phenotype Modulation in Marfan Syndrome Aortic Aneurysm. To delineate temporal and spatial dynamics of vascular smooth muscle cell (SMC) transcriptomic changes during aortic aneurysm development in Marfan syndrome (MFS). Approach and Results: We performed single-cell RNA sequencing to study aortic root/ascending aneurysm tissue from Fbn1<sup> C1041G/+ </sup> (MFS) mice and healthy controls, identifying all aortic cell types. A distinct cluster of transcriptomically modulated SMCs (modSMCs) was identified in adult Fbn1<sup> C1041G/+ </sup> mouse aortic aneurysm tissue only. Comparison with atherosclerotic aortic data (ApoE<sup>-/-</sup> mice) revealed similar patterns of SMC modulation but identified an MFS-specific gene signature, including plasminogen activator inhibitor-1 (Serpine1) and Kruppel-like factor 4 (Klf4). We identified 481 differentially expressed genes between modSMC and SMC subsets; functional annotation highlighted extracellular matrix modulation, collagen synthesis, adhesion, and proliferation. Pseudotime trajectory analysis of Fbn1<sup> C1041G/+ </sup> SMC/modSMC transcriptomes identified genes activated differentially throughout the course of phenotype modulation. While modSMCs were not present in young Fbn1<sup> C1041G/+ </sup> mouse aortas despite small aortic aneurysm, multiple early modSMCs marker genes were enriched, suggesting activation of phenotype modulation. modSMCs were not found in nondilated adult Fbn1<sup> C1041G/+ </sup> descending thoracic aortas. Single-cell RNA sequencing from human MFS aortic root aneurysm tissue confirmed analogous SMC modulation in clinical disease. Enhanced expression of TGF (transforming growth factor)-β-responsive genes correlated with SMC modulation in mouse and human data sets. Dynamic SMC phenotype modulation promotes extracellular matrix substrate modulation and aortic aneurysm progression in MFS. We characterize the disease-specific signature of modSMCs and provide temporal, transcriptomic context to the current understanding of the role TGF-β plays in MFS aortopathy. Collectively, single-cell RNA sequencing implicates TGF-β signaling and Klf4 overexpression as potential upstream drivers of SMC modulation."	"Pro-Fibrotic Phenotype in a Patient with Segmental Stiff Skin Syndrome via TGF-β Signaling Overactivation. Transforming growth factor β (TGF-β) superfamily signaling pathways are ubiquitous and essential for several cellular and physiological processes. The overexpression of TGF-β results in excessive fibrosis in multiple human disorders. Among them, stiff skin syndrome (SSS) is an ultrarare and untreatable condition characterized by the progressive thickening and hardening of the dermis, and acquired joint limitations. SSS is distinct in a widespread form, caused by recurrent germline variants of FBN1 encoding a key molecule of the TGF-β signaling, and a segmental form with unknown molecular basis. Here, we report a 12-year-old female with segmental SSS, affecting the right upper limb with acquired thickening of the dermis evident at the magnetic resonance imaging, and progressive limitation of the elbow and shoulder. To better explore the molecular and cellular mechanisms that drive segmental SSS, several functional studies on patient's fibroblasts were employed. We hypothesized an impairment of TGF-β signaling and, consequently, a dysregulation of the associated downstream signaling. Lesional fibroblast studies showed a higher phosphorylation level of extracellular signal-regulated kinase 1/2 (ERK1/2), increased levels of nuclear factor-kB (NFkB), and a nuclear accumulation of phosphorylated Smad2 via Western blot and microscopy analyses. Quantitative PCR expression analysis of genes encoding key extracellular matrix proteins revealed increased levels of COL1A1, COL3A1, AGT, LTBP and ITGB1, while zymography assay reported a reduced metalloproteinase 2 enzymatic activity. In vitro exposure of patient's fibroblasts to losartan led to the partial restoration of normal transforming growth factor β (TGF-β) marker protein levels. Taken together, these data demonstrate that in our patient, segmental SSS is characterized by the overactivation of multiple TGF-β signaling pathways, which likely results in altered extracellular matrix composition and fibroblast homeostasis. Our results for the first time reported that aberrant TGF-β signaling may drive the pathogenesis of segmental SSS and might open the way to novel therapeutic approaches."	"Gastric Cancer Tumor Microenvironment Characterization Reveals Stromal-Related Gene Signatures Associated With Macrophage Infiltration. The tumor microenvironment (TME) has attracted attention owing to its essential role in tumor initiation, progression, and metastasis. With the emergence of immunotherapies for various cancers, and their high efficacy, an understanding of the TME in gastric cancer (GC) is critical. The aim of this study was to investigate the effect of various components within the GC TME, and to identify mechanisms that exhibit potential as therapeutic targets. The ESTIMATE algorithm was used to quantify immune and stromal components in GC samples, whose clinicopathological significance and relationship with predicted outcomes were explored. Low tumor mutational burden and high M2 macrophage infiltration, which are considered immune suppressive characteristics and may be responsible for unfavorable prognoses in GC, were observed in the high stromal group (HR = 1.585; 95% CI, 1.112-2.259; P = 0.009). Furthermore, weighted correlation network, differential expression, and univariate Cox analyses were used, along with machine learning methods (LASSO and SVM-RFE), to reveal genome-wide immune phenotypic correlations. Eight stromal-relevant genes cluster (FSTL1, RAB31, FBN1, ANTXR1, LRRC32, CTSK, COL5A2, and ENG) were identified as adverse prognostic factors in GC. Finally, using a combination of TIMER database and single-sample gene set enrichment analyses, we found that the identified genes potentially contribute to macrophage recruitment and polarization of tumor-associated macrophages. These findings provide a different perspective into the immune microenvironment and indicate potential prognostic and therapeutic targets for GC immunotherapies."	"Surgical management of non-syndromic ectopia lentis. To compare whether aphakic contact lenses or secondary iris-claw intraocular lenses are superior in the refractive management post-pars plana vitreolensectomy in a pedigree with an FBN1 mutation causing non-syndromic ectopia lentis (NSEL) with retinal detachment (RD). Eight affected individuals had pars plana vitreolensectomy for bilateral ectopia lentis (EL). Twelve eyes of 6 patients had secondary iris-claw intraocular lenses inserted and 4 eyes of 2 patients were managed with contact lenses. Rhegmatogenous retinal detachment (RRD) was treated when necessary. Pre- and post-operative assessment included visual acuity, endothelial cell count and dilated fundal examination. Macula-on RRD was present in all individuals &gt;18y, 64% (7/11 eyes) presenting post-vitreolensectomy with 57% having bilateral non-synchronous RRD. Surgical aphakia was managed with iris-fixated intraocular lenses (IOL group, n=6), or contact lenses (CL group, n=2). Visual acuity ≥0.3 logMAR (driving standard) was achieved in 75% of IOL group eyes and 25% of the CL group eyes. Mean loss of corneal endothelial cell count in the IOL group was 4% at 2y post-operative. In this cohort, refractive management with iris-claw IOLs provided superior outcomes to contact lenses and the authors recommend this as the optimal refractive correction in EL patients."	"Genotype-Phenotype Correlation in Children: The Impact of FBN1 Variants on Pediatric Marfan Care. Currently, no reliable genotype-phenotype correlation is available for pediatric Marfan patients in everyday clinical practice. We investigated correlations of FBN1 variants with the prevalence and age of onset of Marfan manifestations in childhood and differentiated three groups: missense/in-frame, splice, and nonsense/frameshift variants. In addition, we differentiated missense variants destroying or generating a cysteine (cys-missense) and alterations not affecting cysteine. We categorized 105 FBN1-positive pediatric patients. Patients with cys-missense more frequently developed aortic dilatation (p = 0.03) requiring medication (p = 0.003), tricuspid valve prolapse (p = 0.03), and earlier onset of myopia (p = 0.02) than those with other missense variants. Missense variants correlated with a higher prevalence of ectopia lentis (p = 0.002) and earlier onset of pulmonary artery dilatation (p = 0.03) than nonsense/frameshift, and dural ectasia was more common in the latter (p = 0.005). Pectus excavatum (p = 0.007) appeared more often in patients with splice compared with missense/in-frame variants, while hernia (p = 0.04) appeared earlier in the latter. Findings on genotype-phenotype correlations in Marfan-affected children can improve interdisciplinary therapy. In patients with cys-missense variants, early medical treatment of aortic dilatation seems reasonable and early regular ophthalmologic follow-up essential. Patients with nonsense/frameshift and splice variants require early involvement of orthopedic specialists to support the growing child."	"A novel splicing mutation in Marfan syndrome. Marfan syndrome (MFS) is a connective tissue disease involving multiple organs and systems such as cardiovascular, skeletal, and ocular systems and is also an autosomal dominant inheritance disorder. A 30-year-old woman was rushed into the hospital owing to sudden persistent pain in the abdomen and died suddenly 2 days later. To find the real cause of death, a forensic autopsy was conducted owing to suspected medical malpractice, and the diagnosis of MFS was made in accordance with the 2010 revised Ghent nosology. By sequencing the gene of Marfan, aneurysm, and related disorders, a novel splicing mutation in the fibrillin-1 gene (FBN1) was detected. For the clinical characteristic findings (wrist and thumb sign) of the daughter, we recommend genetic analysis for the family. To better understand the role of the variant in the disease, we also investigated functional validation of this mutation. According to the autopsy findings, the cause of death was acute cardiac tamponade caused by aortic rupture. DNA sequencing revealed a novel splicing mutation, c.5672-2delA, which was also detected in her daughter (II2). The functional validation of this mutation showed the base deletion at the same site in the PCR products using cDNA as a template. It is suggested that this mutation may cause abnormal spliceosome during transcription and may encode abnormal protein. A novel pathogenic splicing mutation (c.5672-2delA) was confirmed. Present work enriches the profile mutations in FBN1 associated with MFS and stresses the importance of postmortem genetic analysis in such cases."	"Whole-Exome Sequencing Identifies Three Candidate Homozygous Variants in a Consanguineous Iranian Family with Autism Spectrum Disorder and Skeletal Problems. Autism spectrum disorder (ASD) is characterized by 3 core symptoms with impaired social communication, repetitive behavior, and/or restricted interests in early childhood. As a complex neurodevelopmental disorder (NDD), the phenotype and severity of autism are extremely heterogeneous. Genetic factors have a key role in the etiology of autism. In this study, we investigated an Azeri Turkish family with 2 ASD-affected individuals to identify probable ASD-causing variants. First, the affected individuals were karyotyped in order to exclude chromosomal abnormalities. Then, whole-exome sequencing was carried out in one affected sibling followed by cosegregation analysis for the candidate variants in the family. In addition, SNP genotyping was carried out in the patients to identify possible homozygosity regions. Both proband and sibling had a normal karyotype. We detected 3 possible causative variants in this family: c.5443G&gt;A; p.Gly1815Ser, c.1027C&gt;T; p.Arg343Trp, and c.382A&gt;G; p.Lys128Glu, which are in the FBN1, TF, and PLOD2 genes, respectively. All of the variants cosegregated in the family, and SNP genotyping revealed that these 3 variants are located in the homozygosity regions. This family serves as an example of a multimodal polygenic risk for a complex developmental disorder. Of these 3 genes, confluence of the variants in FBN1 and PLOD2 may contribute to the autistic features of the patient in addition to skeletal problems. Our study highlights the genetic complexity and heterogeneity of NDDs such as autism. In other words, in some patients with ASD, multiple rare variants in different loci rather than a monogenic state may contribute to the development of phenotypes."	"Enhanced Notch3 signaling contributes to pulmonary emphysema in a Murine Model of Marfan syndrome. Marfan syndrome (MFS) is a heritable disorder of connective tissue, caused by mutations in the fibrillin-1 gene. Pulmonary functional abnormalities, such as emphysema and restrictive lung diseases, are frequently observed in patients with MFS. However, the pathogenesis and molecular mechanism of pulmonary involvement in MFS patients are underexplored. Notch signaling is essential for lung development and the airway epithelium regeneration and repair. Therefore, we investigated whether Notch3 signaling plays a role in pulmonary emphysema in MFS. By using a murine model of MFS, fibrillin-1 hypomorphic mgR mice, we found pulmonary emphysematous-appearing alveolar patterns in the lungs of mgR mice. The septation in terminal alveoli of lungs in mgR mice was reduced compared to wild type controls in the early lung development. These changes were associated with increased Notch3 activation. To confirm that the increased Notch3 signaling in mgR mice was responsible for structure alterations in the lungs, mice were treated with N-[N-(3,5-difluorophenacetyl)-L-alanyl]-S-phenylglucine t-butyl ester (DAPT), a γ-secretase inhibitor, which inhibits Notch signaling. DAPT treatment reduced lung cell apoptosis and attenuated pulmonary alteration in mice with MFS. This study indicates that Notch3 signaling contributes to pulmonary emphysema in mgR mice. Our results may have the potential to lead to novel strategies to prevent and treat pulmonary manifestations in patients with MFS."	"Three-Dimensional Imaging of Intraplaque Neovascularization in a Mouse Model of Advanced Atherosclerosis. Multiple lines of evidence suggest that intraplaque (IP) neovascularization promotes atherosclerotic plaque growth, destabilization, and rupture. However, pharmacological inhibition of IP neovascularization remains largely unexplored due to the limited number of animal models that develop IP neovessels and the lack of reliable methods for visualizing IP angiogenesis. Here, we applied 3D confocal microscopy with an optimized tissue-clearing process, immunolabeling-enabled three-dimensional imaging of solvent-cleared organs, to visualize IP neovessels in apolipoprotein E-deficient (ApoE-/-) mice carrying a heterozygous mutation (C1039+/-) in the fibrillin-1 gene. Unlike regular ApoE-/- mice, this mouse model is characterized by the presence of advanced plaques with evident IP neovascularization. Plaques were stained with antibodies against endothelial marker CD31 for 3 days, followed by incubation with fluorescently labeled secondary antibodies. Subsequent tissue clearing with dichloromethane (DCM)/methanol, DCM, and dibenzyl ether allowed easy visualization and 3D reconstruction of the IP vascular network while plaque morphology remained intact."	"Identification of four hub genes as promising biomarkers to evaluate the prognosis of ovarian cancer in silico. Ovarian cancer (OvCa) is one of the most fatal cancers among females in the world. With growing numbers of individuals diagnosed with OvCa ending in deaths, it is urgent to further explore the potential mechanisms of OvCa oncogenesis and development and related biomarkers. The gene expression profiles of GSE49997 were downloaded from the Gene Expression Omnibus (GEO) database. Weighted gene co-expression network analysis (WGCNA) was applied to explore the most potent gene modules associated with the overall survival (OS) and progression-free survival (PFS) events of OvCa patients, and the prognostic values of these genes were exhibited and validated based on data from training and validation sets. Next, protein-protein interaction (PPI) networks were built by GeneMANIA. Besides, enrichment analysis was conducted using DAVID website. According to the WGCNA analysis, a total of eight modules were identified and four hub genes (MM &gt; 0.90) in the blue module were reserved for next analysis. Kaplan-Meier analysis exhibited that these four hub genes were significantly associated with worse OS and PFS in the patient cohort from GSE49997. Moreover, we validated the short-term (4-years) and long-term prognostic values based on the GSE9891 data, respectively. Last, PPI networks analysis, Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) analysis revealed several potential mechanisms of four hub genes and their co-operators participating in OvCa progression. Four hub genes (COL6A3, CRISPLD2, FBN1 and SERPINF1) were identified to be associated with the prognosis in OvCa, which might be used as monitoring biomarkers to evaluate survival time of OvCa patients."	"Association between circulating follistatin-like-1 and metabolic syndrome in middle-aged and old population: A cross-sectional study. Follistatin-like-1 (FSTL-1) is considered to be a novel cytokine, and it is associated with metabolic diseases. However, it is necessary to investigate further the association of FSTL-1 with metabolic syndrome (MetS) and insulin resistance (IR). We performed a cross-sectional study to investigate the associated of circulating FSTL-1 with the MetS. A cross-sectional study was performed in 487 Chinese people, including 231 control subjects and 256 patients with MetS. Bioinformatics analysis was used to determine the protein and pathways associated with FSTL-1. The protein and protein interaction (PPI) network was constructed and analysed. Serum FSTL-1 concentrations were determined by an ELISA assay. The association of FSTL-1 with MetS components and IR was assessed. Serum FSTL-1 levels were markedly higher in patients with newly diagnosed MetS than in controls (7.5 [5.6-9.2] vs 5.8 [5.0-7.7] μg/L, P &lt; .01). According to bioinformatics analysis, the top high-degree genes were identified as the core genes, including SPARCL1, CYR61, LTBP1, IL-6, BMP2, BMP4, FBN1, FN1 CHRDL1 and FSTL-3. These genes are mainly enriched in pathways including TGF-ß, AGE-RAGE signalling pathway in diabetic complications, and Hippo signalling pathways; in basal cell carcinoma, cytokine-cytokine receptor interaction and in amoebic and Yersinia infections. Furthermore, serum FSTL-1 levels were positively associated with fasting plasma glucose (FPG), waist circumference (WC), blood pressure, triglyceride levels and visceral adiposity index (VAI). We found that serum FSTL-1 levels were markedly associated with MetS and IR by binary logistic regression analysis. We conclude that FSTL-1 may be a novel cytokine related to MetS and IR."	"Biomarkers of vascular calcification in serum. Over the last decades, the association between vascular calcification (VC) and all-cause/cardiovascular mortality, especially in patients with high atherogenic status, such as those with diabetes and/or chronic kidney disease, has been repeatedly highlighted. For over a century, VC has been noted as a passive, degenerative, aging process without any treatment options. However, during the past decades, studies confirmed that mineralization of the arteries is an active, complex process, similar to bone genesis and formation. The main purpose of this review is to provide an update of the existing biomarkers of VC in serum and develop the various pathogenetic mechanisms underlying the calcification process, including the pivotal roles of matrix Gla protein, osteoprotegerin, bone morphogenetic proteins, fetuin-a, fibroblast growth-factor-23, osteocalcin, osteopontin, osteonectin, sclerostin, pyrophosphate, Smads, fibrillin-1 and carbonic anhydrase II."	"A synonymous mutation in exon 39 of FBN1 causes exon skipping leading to Marfan syndrome. Marfan syndrome is a heritable autosomal-dominant connective tissue disorder and it was typically caused by mutations in FBN1. However, the synonymous mutation was seldom recorded to be related to Marfan syndrome. Hereon, Multiplex ligation-dependent probe amplification failed to detect a copy number variant involving FBN1 but a synonymous mutation c.4773A &gt; G (p.Gly1591Gly) was identified by NGS in exon 39. RNA was extracted from patient's aortic tissue and reverse polymerase chain reaction demonstrated the presence of a shortened mRNA transcript. Results of minigene models indicated that c.4773A &gt; G was bona fide responsibility for the aberrant splicing pattern, and artificial mutations of c.4773A &gt; C and c.4773A &gt; T also gave rise to fragments with exon 39 entire skipped. Together, the novel synonymous mutations in c.4773 position (A &gt; G, C, T), middle of exon 39 of FBN1 gene, was found to be associated with Marfan syndrome by altering the splicing pattern of pre-mRNA."	"Long-term clinical outcomes of losartan in patients with Marfan syndrome: follow-up of the multicentre randomized controlled COMPARE trial. The COMPARE trial showed a small but significant beneficial effect of 3-year losartan treatment on aortic root dilatation rate in adults with Marfan syndrome (MFS). However, no significant effect was found on clinical endpoints, possibly due to a short follow-up period. The aim of the current study was therefore to investigate the long-term clinical outcomes after losartan treatment. In the original COMPARE study (inclusion 2008-2009), adult patients with MFS (n = 233) were randomly allocated to either the angiotensin-II receptor blocker losartan® on top of regular treatment (β-blockers in 71% of the patients) or no additional medication. After the COMPARE trial period of 3 years, study subjects chose to continue their losartan medication or not. In a median follow-up period of 8 years, 75 patients continued losartan medication, whereas 78 patients, originally allocated to the control group, never used losartan after inclusion. No differences existed between baseline characteristics of the two groups except for age at inclusion [losartan 34 (interquartile range, IQR 26-43) years, control 41 (IQR 30-52) years; P = 0.031], and β-blocker use (losartan 81%, control 64%; P = 0.022). A pathological FBN1 mutation was present in 76% of patients and 58% of the patients were male. Clinical endpoints, defined as all-cause mortality, aortic dissection/rupture, elective aortic root replacement, reoperation, and vascular graft implantation beyond the aortic root, were compared between the two groups. A per-patient composite endpoint was also analysed. Five deaths, 14 aortic dissections, 23 aortic root replacements, 3 reoperations, and 3 vascular graft implantations beyond the aortic root occurred during follow-up. Except for aortic root replacement, all endpoints occurred in patients with an operated aortic root. Patients who used losartan during the entire follow-up period showed a reduced number of events compared to the control group (death: 0 vs. 5, P = 0.014; aortic dissection: 3 vs. 11, P = 0.013; elective aortic root replacement: 10 vs. 13, P = 0.264; reoperation: 1 vs. 2, P = 0.463; vascular graft implantations beyond the aortic root 0 vs. 3, P = 0.071; and composite endpoint: 14 vs. 26, P = 0.019). These results remained similar when corrected for age and β-blocker use in a multivariate analysis. These results suggest a clinical benefit of combined losartan and β-blocker treatment in patients with MFS."	"Spatiotemporal changes in mechanical matrisome components of the human ovary from prepuberty to menopause. How do elastic matrisome components change during the lifetime of the human ovary? The deposition and remodeling of mechanical matrisome components (collagen, elastin, elastin microfibril interface-located protein 1 (EMILIN-1), fibrillin-1 and glycosaminoglycans (GAGs)) that play key roles in signaling pathways related to follicle activation and development evolve in an age- and follicle stage-related manner. The mechanobiology of the human ovary and dynamic reciprocity that exists between ovarian cells and their microenvironment is of high importance. Indeed, while the localization of primordial follicles in the collagen-rich ovarian cortex offers a rigid physical environment that supports follicle architecture and probably plays a role in their survival, ovarian extracellular matrix (ECM) stiffness limits follicle expansion and hence oocyte maturation, maintaining follicles in their quiescent state. As growing follicles migrate to the medulla of the ovary, they encounter a softer, more pliant ECM, allowing expansion and development. Thus, changes in the rigidity of the ovarian ECM have a direct effect on follicle behavior. Evidence supporting a role for the physical environment in follicle activation was provided in clinical practice by ovarian tissue fragmentation, which promoted actin polymerization and disrupted ovarian Hippo signaling, leading to increased expression of downstream growth factors, promotion of follicle growth and generation of mature oocytes. We investigated quantitative spatiotemporal changes in collagen, elastin, EMILIN-1, fibrillin-1 and GAGs from prepuberty to menopause, before conducting a closer analysis of the ECM surrounding follicles, from primordial to secondary stages, in both prepubertal and tissue from women of reproductive age. The study included ovarian tissue (cortex) from 68 patients of different ages: prepubertal (n = 16; mean age [±SD]=8 ± 2 years); reproductive (n = 21; mean age [±SD]=27 ± 4 years); menopausal with estrogen-based HRT (n = 7; mean age [±SD]=58 ± 4 years); and menopausal without HRT (n = 24; mean age [±SD]=61 ± 5 years). Quantitative investigations of collagen and GAG deposition in ovarian tissue throughout a woman's lifetime were conducted by analyzing brightfield images. Characteristic features of collagen fiber content were based on polarized light microscopy, since polarized light changes with fiber thickness. To evaluate the deposition and distribution of elastin, fibrillin-1 and EMILIN-1, multiplex immunofluorescence was used on at least three sections from each patient. Image processing and tailored bioinformatic analysis were applied to enable spatiotemporal quantitative evaluation of elastic system component deposition in the human ovary over its lifetime. While collagen levels increased with age, fibrillin-1 and EMILIN-1 declined. Interestingly, collagen and elastin reached their peak in reproductive-age women compared to prepubertal (P &lt; 0.01; P = 0.262) and menopausal subjects with (P = 0.706; P &lt; 0.01) and without (P = 0.987; P = 0.610) HRT, indicating a positive impact of secreted estrogen and hormone treatment on collagen and elastin preservation. Interestingly, HRT appears to affect elastin presence in ovarian tissue, since a significantly higher (P &lt; 0.05) proportion of elastin was detected in biopsies from menopausal women taking HRT compared to those not. Higher GAG levels were found in adult ovaries compared to prepubertal ovaries (P &lt; 0.05), suggesting changes in tissue ultrastructure and elasticity with age. In this context, elevated GAG values are suspected to participate in hampering formation of the fibrillin-1 network (r = -0.2475; P = 0.04687), which explains its decline over time. This decline partially accounts for the decrease in EMILIN-1 (r = 0.4149; P = 0.00059). Closer examination of the ECM surrounding follicles from the primordial to the secondary stage, both before and after puberty, points to high levels of mechanical stress placed on prepubertal follicles compared to the more compliant ECM around reproductive-age follicles, as suggested by the higher collagen levels and lower elastin content detected mainly around primordial (P &lt; 0.0001; P &lt; 0.0001, respectively) and primary (P &lt; 0.0001; P &lt; 0.001, respectively) follicles. Such a stiff niche is nonpermissive to prepubertal follicle activation and growth, and is more inclined to quiescence. Not applicable. The duration and form of administered HRT were not considered when studying the menopausal patient group undergoing treatment. Moreover, we cannot exclude interference from other nongynecological medications taken by the study patients on ovarian ECM properties since there is no information in the literature describing the impact of each medication on the ECM. Finally, since the ECM is by definition a very heterogeneous meshwork of proteins, the use of two-dimensional histology could be a limitation. Single time points on fixed tissues could also present limitations, since following ovary dynamics from prepuberty to menopause in the same patient is not feasible. From a biomechanical perspective, our study revealed important changes to ECM properties dictating the mechanical features of ovarian tissue, in line with the existing literature. Our findings pave the way for possible therapeutic targets at the ECM level in the context of female fertility and ovarian rejuvenation, such as mechanical stimulation, antifibrotic treatments, and prevention or reversion of elastic ECM degradation. Our study also sheds light on the follicle-specific ECM composition that is dependent on follicle stage and age. These data will prove very useful in designing biomimetic scaffolds and tissue-engineered models like the artificial ovary. Indeed, they emphasize the importance of encapsulating each type of isolated follicle in an appropriate biomaterial that must replicate the corresponding functional perifollicular ECM and respect ovarian tissue heterogeneity in order to guarantee its biomimicry. This study was supported by grants from the Fonds National de la Recherche Scientifique de Belgique (FNRS) (C.A.A. is an FRS-FNRS research associate; grant 5/4/150/5 awarded to M.M.D.) and the Université Catholique de Louvain (PhD grant 'Coopération au développement' awarded to E.O.). None of the authors have any competing interests to declare."	"Improvements in Skin Quality Biological Markers in Skin Explants Using Hyaluronic Acid Filler VYC-12L. Hyaluronic acid (HA), both crosslinked and uncrosslinked, is used clinically to treat fine lines and provides additional improvements in skin quality attributes. The purpose of this study was to assess potential early differences in the expression of biological markers of skin quality in living human skin explants injected with uncrosslinked and crosslinked HA gels. Living human skin explants injected with VYC-12L or noncrosslinked HA with mannitol (HYD) and noninjected controls were assessed via microscopy, histology, and immunohistochemistry on days 3 and/or 8 for biological markers of elasticity (collagen density, elastin, fibrillin-1) and hydration [aquaporin-3, acidic glycosaminoglycans (GAGs), HA]. Hydration was also assessed via a corneometer probe on days 0, 1, 2, and 8. On day 3 versus controls, VYC-12L moderately increased collagen density in the upper reticular dermis and clearly increased fibrillin-1 expression, with slight increases persisting on day 8. Increases with HYD were smaller and did not persist on day 8. Both VYC-12L and HYD increased aquaporin-3 expression and GAG content on days 3 and 8, but VYC-12L produced greater GAG increases in the reticular dermis. Day 8 instrument-assessed hydration increased by 49% and 22% for VYC-12L and HYD, respectively. Elastin expression in oxytalan and elaunin fibers was unchanged. Upper-dermal HA reductions suggested HA injection-induced hyaluronidase expression. VYC-12L produced greater, more lasting improvements in biological markers of skin quality than HYD."	"Double heterozygous variants in FBN1 and FBN2 in a Thai woman with Marfan and Beals syndromes. A phenotype of an individual is resulted from an interaction among variants in several genes. Advanced molecular technologies allow us to identify more patients with mutations in more than one genes. Here, we studied a Thai woman with combined clinical features of Marfan (MFS) and Beals (BS) syndromes including frontal bossing, enophthalmos, myopia, the crumpled appearance to the top of the pinnae, midface hypoplasia, high arched palate, dermal stretch marks, aortic enlargement, mitral valve prolapse and regurgitation, aortic root dilatation, and progressive scoliosis. The aortic root enlargement was progressive to a diameter of 7.2 cm requiring an aortic root replacement at the age of 8 years. At her last visit when she was 19 years old, she had moderate aortic regurgitation. Exome sequencing revealed that she carried the c.3159C &gt; G (p.Cys1053Trp) in exon 26 of FBN1 and c.2638G &gt; A (p. Gly880Ser) in exon 20 of FBN2. The variant in FBN1 was de novo, while that in FBN2 was inherited from her unaffected mother. Both genes encode for fibrillins, which are essential for elastic fibers and can form the heterotypic microfibrils. Two defective fibrillins may synergistically worsen cardiovascular manifestations seen in our patient. In this study, we identified the fourth patient with both MFS and BS, carrying mutations in both FBN1 and FBN2."	"Are Genetic Variants Associated with the Location of Cerebral Arterial Lesions in Stroke Patients? Genetic variants may play a role in determining the location of cerebral atherosclerosis. We aimed to investigate the association between RNF213, MMP2, and genetic polymorphisms linked to vascular tortuosity with the location of cerebral arterial atherosclerosis. A prospective case-control study was conducted on patients with ischemic stroke and age- and sex-matched stroke-free controls. The stroke patients were categorized into those with intracranial artery atherosclerosis (ICAS), extracranial artery atherosclerosis (ECAS), and small vessel occlusion (SVO). Six single nucleotide polymorphisms (SNPs) including rs2118181 (FBN1), rs2179357 (SLC2A10), rs1036095 (TGFBR2), rs243865 (MMP2), rs1800470 (TGFB1), and rs112735431 (RNF213) were analyzed with the TaqMan Genotyping Assay, and the distribution of genotypes across groups was compared. None of the 6 SNPs were associated with stroke on comparing the 449 stroke patients (71 with ECAS, 169 with ICAS, and 209 with SVO) to the 447 controls. In the subgroup analysis, the adjusted odds ratios (aORs) for age and sex indicated a significant association between rs112735431 and ICAS in the allele comparison analysis and in the additive and dominant model analyses. rs112735431 was associated with anterior circulation involvement and increased burden of cerebral atherosclerosis. rs2179357 was significantly associated with ICAS in the recessive model analysis, and rs1800470 was significantly associated with ECAS in the recessive model analysis when compared to controls. rs112735431 was associated with ICAS and increased atherosclerosis burden in Korean stroke patients. Further studies are needed to elucidate the role of rs112735431 and to confirm the association of rs2179357 and rs1800470 with cerebral atherosclerosis."	"Is HSPG2 a modifier gene for Marfan syndrome? Marfan syndrome (MFS) is a connective tissue disease caused by variants in the FBN1 gene. Nevertheless, other genes influence the manifestations of the disease, characterized by high clinical variability even within families. We mapped modifier loci for cardiovascular and skeletal manifestations in the mg∆<sup>loxPneo</sup> mouse model for MFS and the synthenic loci in the human genome. Corroborating our findings, one of those loci was identified also as a modifier locus in MFS patients. Here, we investigate the HSPG2 gene, located in this region, as a candidate modifier gene for MFS. We show a correlation between Fbn1 and Hspg2 expression in spinal column and aorta in non-isogenic mg∆<sup>loxPneo</sup> mice. Moreover, we show that mice with severe phenotypes present lower expression of Hspg2 than those mildly affected. Thus, we propose that HSPG2 is a strong candidate modifier gene for MFS and its role in modulating disease severity should be investigated in patients."	"iTRAQ-Based Comparative Proteomics Analysis of Urolithiasis Rats Induced by Ethylene Glycol. Nephrolithiasis is a frequent chronic urological condition with a high prevalence and recurrence rate. Proteomics studies on urolithiasis rat models are highly important in characterizing the pathophysiology of kidney stones and identifying potential approaches for preventing and treating kidney stones. The isobaric tags for relative and absolute quantification (iTRAQ) were performed to identify differentially expressed proteins (DEPs) in the kidney between urolithiasis rats and control rats. The results showed that 127 DEPs (85 upregulated and 42 downregulated) were identified in urolithiasis and control rats. The functions of DEPs were predicted by Gene Ontology (GO) analysis, Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis, and protein-protein interaction (PPI) network analysis. The expression of four upregulated proteins (Tagln, Akr1c9, Spp1, and Fbn1) and four downregulated proteins (Hbb, Epb42, Hmgcs2, and Ca1) were validated by parallel reaction monitoring (PRM). Proteomics studies of ethylene glycol-induced urolithiasis rat models using iTRAQ and PRM helped to elucidate the molecular mechanism governing nephrolithiasis and to identify candidate proteins for the treatment of kidney stones."	"Significance of tissue transglutaminase in myocardial fibrosis after myocardial infarction in rats. NA"	"A positively selected FBN1 missense variant reduces height in Peruvian individuals. On average, Peruvian individuals are among the shortest in the world<sup>1</sup>. Here we show that Native American ancestry is associated with reduced height in an ethnically diverse group of Peruvian individuals, and identify a population-specific, missense variant in the FBN1 gene (E1297G) that is significantly associated with lower height. Each copy of the minor allele (frequency of 4.7%) reduces height by 2.2 cm (4.4 cm in homozygous individuals). To our knowledge, this is the largest effect size known for a common height-associated variant. FBN1 encodes the extracellular matrix protein fibrillin 1, which is a major structural component of microfibrils. We observed less densely packed fibrillin-1-rich microfibrils with irregular edges in the skin of individuals who were homozygous for G1297 compared with individuals who were homozygous for E1297. Moreover, we show that the E1297G locus is under positive selection in non-African populations, and that the E1297 variant shows subtle evidence of positive selection specifically within the Peruvian population. This variant is also significantly more frequent in coastal Peruvian populations than in populations from the Andes or the Amazon, which suggests that short stature might be the result of adaptation to factors that are associated with the coastal environment in Peru."	"Extracellular Matrix Analysis of Human Renal Arteries in Both Quiescent and Active Vascular State. In vascular tissue engineering strategies, the addition of vascular-specific extracellular matrix (ECM) components may better mimic the in vivo microenvironment and potentially enhance cell-matrix interactions and subsequent tissue growth. For this purpose, the exact composition of the human vascular ECM first needs to be fully characterized. Most research has focused on characterizing ECM components in mature vascular tissue; however, the developing fetal ECM matches the active environment required in vascular tissue engineering more closely. Consequently, we characterized the ECM protein composition of active (fetal) and quiescent (mature) renal arteries using a proteome analysis of decellularized tissue. The obtained human fetal renal artery ECM proteome dataset contains higher levels of 15 ECM proteins versus the mature renal artery ECM proteome, whereas 16 ECM proteins showed higher levels in the mature tissue compared to fetal. Elastic ECM proteins EMILIN1 and FBN1 are significantly enriched in fetal renal arteries and are mainly produced by cells of mesenchymal origin. We functionally tested the role of EMILIN1 and FBN1 by anchoring the ECM secreted by vascular smooth muscle cells (SMCs) to glass coverslips. This ECM layer was depleted from either EMILIN1 or FBN1 by using siRNA targeting of the SMCs. Cultured endothelial cells (ECs) on this modified ECM layer showed alterations on the transcriptome level of multiple pathways, especially the Rho GTPase controlled pathways. However, no significant alterations in adhesion, migration or proliferation were observed when ECs were cultured on EMILIN1- or FNB1-deficient ECM. To conclude, the proteome analysis identified unique ECM proteins involved in the embryonic development of renal arteries. Alterations in transcriptome levels of ECs cultured on EMILIN1- or FBN1-deficient ECM showed that these candidate proteins could affect the endothelial (regenerative) response."	"Elastin-like recombinamers in collagen-based tubular gels improve cell-mediated remodeling and viscoelastic properties. Natural polymers are commonly used as scaffolds for vascular tissue engineering. The recognized biological properties of this class of materials are often counterbalanced by their low mechanical performance. In this work, recombinant elastin-like polypeptides (or elastin-like recombinamers, ELRs) were mixed with collagen gel and cells to produce cellularized tubular constructs in an attempt to recapitulate the mechanical behavior of the vascular extracellular matrix (ECM). The presence of the elastic protein influenced cell-mediated remodeling evaluated in terms of construct compaction, cell proliferation and ECM (collagen, elastin and fibrillin-1) gene expression. The partial substitution of collagen with ELR and the observed differences in cellular behavior synergistically contributed to the superior viscoelastic properties of the constructs containing 30% ELR and 70% of collagen (in mass). This led to the improvement of 40% in the initial elastic modulus, 50% in the equilibrium elastic modulus, and 37% in the tensile strength at break without compromising the strain at break, when compared to a pure collagen scaffold. Suggestions for future research include modifications in the crosslinking technology, ELR composition, polymer concentration, cell seeding density and dynamic stimulation, which have the potential to further improve the mechanical performance of the constructs towards physiological values."	"Prognostic gene expression signature for high-grade serous ovarian cancer. Median overall survival (OS) for women with high-grade serous ovarian cancer (HGSOC) is ∼4 years, yet survival varies widely between patients. There are no well-established, gene expression signatures associated with prognosis. The aim of this study was to develop a robust prognostic signature for OS in patients with HGSOC. Expression of 513 genes, selected from a meta-analysis of 1455 tumours and other candidates, was measured using NanoString technology from formalin-fixed paraffin-embedded tumour tissue collected from 3769 women with HGSOC from multiple studies. Elastic net regularization for survival analysis was applied to develop a prognostic model for 5-year OS, trained on 2702 tumours from 15 studies and evaluated on an independent set of 1067 tumours from six studies. Expression levels of 276 genes were associated with OS (false discovery rate &lt; 0.05) in covariate-adjusted single-gene analyses. The top five genes were TAP1, ZFHX4, CXCL9, FBN1 and PTGER3 (P &lt; 0.001). The best performing prognostic signature included 101 genes enriched in pathways with treatment implications. Each gain of one standard deviation in the gene expression score conferred a greater than twofold increase in risk of death [hazard ratio (HR) 2.35, 95% confidence interval (CI) 2.02-2.71; P &lt; 0.001]. Median survival [HR (95% CI)] by gene expression score quintile was 9.5 (8.3 to -), 5.4 (4.6-7.0), 3.8 (3.3-4.6), 3.2 (2.9-3.7) and 2.3 (2.1-2.6) years. The OTTA-SPOT (Ovarian Tumor Tissue Analysis consortium - Stratified Prognosis of Ovarian Tumours) gene expression signature may improve risk stratification in clinical trials by identifying patients who are least likely to achieve 5-year survival. The identified novel genes associated with the outcome may also yield opportunities for the development of targeted therapeutic approaches."	"Molecular determinants of the interaction between glioblastoma CD133<sup>+</sup> cancer stem cells and the extracellular matrix. Glioblastoma multiforme (GBM) is the most common primary tumor of the human brain. It is characterized by invasive growth and strong resistance to treatment, and the median survival time of patients is 15 months. The invasive growth of this tumor type is associated with tumor cells with an aggressive phenotype, while its treatment resistance is attributed to cancer stem cells (CSCs). It remains unclear if CSCs have a more invasive nature than differentiated glioblastoma cells (DGCs), and what contribution CSCs make to the aggressive phenotype of GBM. Interaction with the extracellular matrix (ECM) is a key factor in the development of invasion. The aim of the present study was to compare the expression levels of signaling pathway proteins involved in interaction of receptors with the ECM in CSCs and DGCs. The U-87MG GBM cell line was used in the present study CSCs were extracted from gliomaspheres through magnetic-activated cell sorting based on the expression of cluster of differentiation 133 (CD133); CD133-negative DCGs were used as a control. HPLC and mass spectrometry were also used, and biological and molecular functions, signaling pathways and protein-protein interactions were analyzed using publicly available databases. Increased expression levels of the following 10 proteins involved in interaction with the ECM were identified in CSCs, compared with expression levels in DGCs: COL6A1, COL6A3, FN1, ITGA2, ITGA5, ITGAV, ITGB1, ITGB3, LAMB1 and LAMC1. The proteome of CSCs was observed to have &gt;2-fold higher expression of these key proteins, when compared with the DGC proteome. Increased expression levels of four proteins (FERMT2, LOXL2, HDAC2 and FBN1) involved in activating signaling in response to receptor interaction with the ECM was also observed, indicating that CSCs may have highly invasive nature. LOXL2 expression level was &gt;9-fold higher in CSCs compared to DGCs, suggesting that this protein may have potential as an marker for CSCs and as a target for this cell type in GBM."	"Quantifying the Genetic Basis of Marfan Syndrome Clinical Variability. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder with considerable inter- and intra-familial clinical variability. The contribution of inherited modifiers to variability has not been quantified. We analyzed the distribution of 23 clinical features in 1306 well-phenotyped MFS patients carrying FBN1 mutations. We found strong correlations between features within the same system (i.e., ophthalmology vs. skeletal vs. cardiovascular) suggesting common underlying determinants, while features belonging to different systems were largely uncorrelated. We adapted a classical quantitative genetics model to estimate the heritability of each clinical feature from phenotypic correlations between relatives. Most clinical features showed strong familial aggregation and high heritability. We found a significant contribution by the major locus on the phenotypic variance only for ectopia lentis using a new strategy. Finally, we found evidence for the &quot;Carter effect&quot; in the MFS cardiovascular phenotype, which supports a polygenic model for MFS cardiovascular variability and indicates additional risk for children of MFS mothers with an aortic event. Our results demonstrate that an important part of the phenotypic variability in MFS is under the control of inherited modifiers, widely shared between features within the same system, but not among different systems. Further research must be performed to identify genetic modifiers of MFS severity."	"Manipulation of beta-adrenergic receptor in pressure-overloaded murine hearts mimics adverse and reverse cardiac remodeling. Transverse aortic constriction (TAC) has been widely used to create pressure overload induced heart failure in mice. However, this conventional model has some limitations such as low reproducibility and long creation period of cardiac failure. In order to establish a highly reproducible cardiac failure model that mimics adverse cardiac remodeling (ACR) we combined pressure overload and beta-adrenergic receptor stimuli using isoproterenol (ISO) and explored the optimal TAC model by changing the durations of TAC and the doses of ISO. Thus we constructed a suitable model for ACR with an effective combination of 3-week TAC and subsequent one-week ISO (3 mg/kg/day) infusion. Using RNA-Seq analyses, we identified that the up-regulated genes were mainly related to fibrosis including Fbn1, C1qtnf6 and Loxl2; and that the down-regulated genes were associated with mitochondrial function including Uqcrc1, Ndufs3, and Idh2 in failing hearts of our ACR model. Next, we followed the changes in cardiac function after ceasing ISO infusion. Left ventricular function gradually recovered after cessation of ISO, suggesting cardiac reverse remodeling (CRR). Gene expression signatures of hearts, which exhibited CRR, were almost identical to that of TAC hearts without ISO. In conclusion, our new model exhibits a transition to ACR and subsequent CRR with high reproducibility. This murine model might add new insights into the experiments of heart failure technically as well as scientifically."	"Marfan syndrome revisited: From genetics to the clinic. Marfan syndrome is an autosomal dominant connective tissue disease with an estimated incidence of 1 in 5000 individuals. In 90% of cases it is caused by mutations in the gene for fibrillin-1, the main constituent of extracellular microfibrils. Studies on animal models of Marfan syndrome have revealed that fibrillin-1 mutations interfere with local TGF-β signaling, in addition to impairing tissue integrity. The cardinal features involve the cardiovascular, ocular and skeletal systems. The diagnosis of Marfan syndrome is made according to the revised Ghent nosology. Early identification and appropriate management are critical for patients with Marfan syndrome, who are prone to the life-threatening cardiovascular complications of aortic aneurysms and aortic dissection. The standard treatment includes prophylactic beta-blockers in order to slow down dilation of the ascending aorta, and prophylactic aortic surgery. The success of current medical and surgical treatment of aortic disease in Marfan syndrome has substantially improved mean life expectancy, extending it above 72 years. This review aims to provide an overview of this hereditary disorder."	"[<sup>18</sup>F]ZCDD083: A PFKFB3-Targeted PET Tracer for Atherosclerotic Plaque Imaging. PFKFB3, a glycolysis-related enzyme upregulated in inflammatory conditions and angiogenesis, is an emerging target for diagnosis and therapy of atherosclerosis. The fluorinated phenoxindazole [<sup>18</sup>F]ZCDD083 was synthesized, radiolabeled in 17 ± 5% radiochemical yield and &gt;99% radiochemical purity, and formulated for preclinical PET/CT imaging in mice. In vivo stability analysis showed no significant metabolite formation. Biodistribution studies showed high blood pool activity and slow hepatobiliary clearance. Significant activity was detected in the lung 2 h postinjection (pi) (11.0 ± 1.5%ID/g), while at 6 h pi no pulmonary background was observed. Ex vivo autoradiography at 6 h pi showed significant high uptake of [<sup>18</sup>F]ZCDD083 in the arch region and brachiocephalic artery of atherosclerotic mice, and no uptake in control mice, matching plaques distribution seen by lipid staining along with PFKFB3 expression seen by immunofluorescent staining. In vivo PET scans showed higher aortic region uptake of [<sup>18</sup>F]ZCDD083 in atherosclerotic ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> than in control mice (0.78 ± 0.05 vs 0.44 ± 0.09%ID/g). [<sup>18</sup>F]ZCDD083 was detected in aortic arch and brachiocephalic artery of ApoE<sup>-/-</sup> (with moderate atherosclerosis) and ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> (with severe, advanced atherosclerosis) mice, suggesting this tracer may be useful for the noninvasive detection of atherosclerotic plaques in vivo."	"Three Novel Variants identified in FBN1 and TGFBR2 in seven Iranian families with suspected Marfan syndrome. Marfan syndrome (MFS) is a multi-systemic autosomal dominant disease of the connective tissue characterized by the early development of thoracic aneurysms/dissections, along with various manifestations of the ocular and skeletal systems. Due to the genetic and clinical heterogeneity, the clinical diagnosis of this disorder is challenging. Loss-of-function mutations in FBN1 (encodes fibrillin-1) lead to MFS type 1. Also, similar mutations in transforming growth factor β receptor 2 (TGFBR2) gene cause MFS type 2. Both proteins involve in TGF-β signaling. In this study, genetic screening using a panel involving 14 genes, especially FBN1 and TGFBR2, were performed on seven representatives affected members of seven unrelated Iranian families suspected with MFS. To confirm the variants, Sanger sequencing was applied to other affected/unaffected members of the families. A total of 13 patients showed MFS manifestations. Using genetic screening, two novel and three previously reported variants in FBN1 were identified. We also detected two variants (a novel and a previously reported variant) in the TGFBR2 gene. In this study, we introduce three novel variants identified through gene screening in seven Iranian MFS families. This report is expected to considerably improve genetic counseling for Iranian MFS families. Early precise molecular diagnosis can be helpful for better management and improving the life expectancy of these patients."	"Long non-coding RNA PGM5-AS1 promotes epithelial-mesenchymal transition, invasion and metastasis of osteosarcoma cells by impairing miR-140-5p-mediated FBN1 inhibition. Osteosarcoma is an uncommon tumor occurring in bone, accompanied by elevated incidence and reduced rate of healing. Epithelial to mesenchymal transition (EMT) serves as a conceptual paradigm to explain the invasion and metastasis of osteosarcoma and other cancers. Hence, developing effective therapeutic strategy to treat the EMT of osteosarcoma is essential. Here, we identified the molecular mechanism of long non-coding RNA (lncRNA) PGM5-AS1 in EMT and progression of osteosarcoma. Microarray-based analysis was employed to screen the osteosarcoma-related differentially expressed lncRNAs. The levels of PGM5-AS1 as well as microRNA-140-5p (miR-140-5p) and fibrillin-1 (FBN1) in osteosarcoma tissues and cells were determined. Dual-luciferase reporter gene assay, RNA pull-down assay, and RNA immunoprecipitation assay were conducted to validate the relationship among PGM5-AS1, miR-140-5p, and FBN1. Expression of PGM5-AS1, miR-140-5p, and FBN1 was altered by overexpression, shRNA, mimic, or inhibitors in order to investigate how they regulated migration, invasion, and EMT of osteosarcoma cells in vitro. Loss- and gain-of-function approaches were employed in nude mice to detect their roles in tumorigenesis in vivo. Osteosarcoma tissues and cells exhibited low expression of miR-140-5p, but high expression of PGM5-AS1 and FBN1. PGM5-AS1 competitively bound to miR-140-5p to upregulate FBN1. Furthermore, hindering PGM5-AS1 and FBN1 or overexpressing miR-140-5p dampened migration, invasion, and EMT of osteosarcoma cells in vitro. Furthermore, silencing PGM5-AS1 or FBN1, or overexpressing miR-140-5p markedly inhibited tumorigenesis in nude mice in vivo. Taken together, PGM5-AS1 depletion causes FBN1 reduction to retard osteosarcoma processes by negatively modulating miR-140-5p."	"Acromicric dysplasia with stiff skin syndrome-like severe cutaneous presentation in an 8-year-old boy with a missense FBN1 mutation: Case report and literature review. Acromicric dysplasia is a rare heritable short-stature syndrome with joint stiffness and varying degrees of cutaneous hardness. Stiff skin syndrome is a rare connective tissue disorder characterized by diffusely thick and hard skin from the time of birth. Heterozygous point mutations in the FBN1 have been proposed as the predominant cause of both diseases. By performing skin biopsy, X-ray imaging, electrocardiography, as well as whole-genome sequencing and Sanger sequencing, we diagnosed an 8-year-old Chinese boy as acromicric dysplasia with severe skin stiffness caused by a heterogeneous mutation in the FBN1. The patient presented with skin tightness, wrist and ankle stiffness, short stature and limbs, several deformed joints in the extremities, cone-shaped epiphyses, and distinct facial features. He also had a patent foramen ovale and frequent respiratory infections. Skin biopsy showed thickened dermis and excessive collagen aggregation. Alcian blue staining indicated dermal mucopolysaccharide deposition. Mutation analysis revealed a heterozygous missense mutation, c.5243G&gt;A (p.Cys1748Tyr), in exon 42 of the FBN1. This is a report about acromicric dysplasia with stiff skin syndrome-like severe cutaneous presentation caused by a single hotspot mutation, further revealing the gene pleiotropy of FBN1."	"Novel p.G1344E mutation in FBN1 is associated with ectopia lentis. Ectopia lentis refers to dislocation or subluxation of the crystalline lens. Fibrillin-1, encoded by FBN1, is an important microfibrillar structural component that is specifically required for the suspensory ligament of the lens. FBN1 mutations may cause abnormal structure of microfibrils and has been associated with a broad spectrum of clinical phenotypes. In this study, we characterised a Chinese dominant family with late-onset isolated ectopia lentis caused by a novel missense FBN1 mutation. Eight family members, including four patients with suspected isolated ectopia lentis, were recruited from Shanghai. Clinical data and family history of the proband and other affected family members were collected. Ophthalmic examination, systemic examination and echocardiography were performed. Whole exome sequencing and Sanger sequencing were used to detect potential pathogenic variants. A novel heterozygous missense mutation c.4031 G&gt;A/p.Gly1344Glu in exon 33 of FBN1 was identified. This mutation was detected in all affected family members and led to specific ocular system phenotypes (ectopia lentis, microspherophakia and secondary glaucoma) with minor skeletal involvement (hallux valgus). The novel c.4031G&gt;A mutation in FBN1 is a likely pathogenic mutation for isolated ectopia lentis. Our study expands the spectrum of FBN1 mutations and contributes to better comprehension of genotype-phenotype correlations of ectopia lentis disease."	"Smoking-by-genotype interaction in type 2 diabetes risk and fasting glucose. Smoking is a potentially causal behavioral risk factor for type 2 diabetes (T2D), but not all smokers develop T2D. It is unknown whether genetic factors partially explain this variation. We performed genome-environment-wide interaction studies to identify loci exhibiting potential interaction with baseline smoking status (ever vs. never) on incident T2D and fasting glucose (FG). Analyses were performed in participants of European (EA) and African ancestry (AA) separately. Discovery analyses were conducted using genotype data from the 50,000-single-nucleotide polymorphism (SNP) ITMAT-Broad-CARe (IBC) array in 5 cohorts from from the Candidate Gene Association Resource Consortium (n = 23,189). Replication was performed in up to 16 studies from the Cohorts for Heart Aging Research in Genomic Epidemiology Consortium (n = 74,584). In meta-analysis of discovery and replication estimates, 5 SNPs met at least one criterion for potential interaction with smoking on incident T2D at p&lt;1x10-7 (adjusted for multiple hypothesis-testing with the IBC array). Two SNPs had significant joint effects in the overall model and significant main effects only in one smoking stratum: rs140637 (FBN1) in AA individuals had a significant main effect only among smokers, and rs1444261 (closest gene C2orf63) in EA individuals had a significant main effect only among nonsmokers. Three additional SNPs were identified as having potential interaction by exhibiting a significant main effects only in smokers: rs1801232 (CUBN) in AA individuals, rs12243326 (TCF7L2) in EA individuals, and rs4132670 (TCF7L2) in EA individuals. No SNP met significance for potential interaction with smoking on baseline FG. The identification of these loci provides evidence for genetic interactions with smoking exposure that may explain some of the heterogeneity in the association between smoking and T2D."	"Localized Antileptin Therapy Prevents Aortic Root Dilatation and Preserves Left Ventricular Systolic Function in a Murine Model of Marfan Syndrome. Background Marfan syndrome (MFS) is a genetically transmitted connective tissue disorder characterized by aortic root dilatation, dissection, and rupture. Molecularly, MFS pathological features have been shown to be driven by increased angiotensin II in the aortic wall. Using an angiotensin II-driven aneurysm mouse model, we have recently demonstrated that local inhibition of leptin activity restricts aneurysm formation in the ascending and abdominal aorta. As we observed de novo leptin synthesis in the ascending aortic aneurysm wall of patients with MFS, we hypothesized that local counteracting of leptin activity in MFS may also prevent aortic cardiovascular complications in this context. Methods and Results Fbn1<sup> C1039G/+ </sup> mice underwent periaortic application of low-dose leptin antagonist at the aortic root. Treatment abolished medial degeneration and prevented increase in aortic root diameter (P&lt;0.001). High levels of leptin, transforming growth factor β1, Phosphorylated Small mothers against decapentaplegic 2, and angiotensin-converting enzyme 1 observed in saline-treated MFS mice were downregulated in leptin antagonist-treated animals (P&lt;0.01, P&lt;0.05, P&lt;0.001, and P&lt;0.001, respectively). Leptin and angiotensin-converting enzyme 1 expression levels in left ventricular cardiomyocytes were also decreased (P&lt;0.001) and coincided with prevention of left ventricular hypertrophy and aortic and mitral valve leaflet thickening (P&lt;0.01 and P&lt;0.05, respectively) and systolic function preservation. Conclusions Local, periaortic application of leptin antagonist prevented aortic root dilatation and left ventricular valve remodeling, preserving left ventricular systolic function in an MFS mouse model. Our results suggest that local inhibition of leptin may constitute a novel, stand-alone approach to prevent MFS aortic root aneurysms and potentially other similar angiotensin II-driven aortic pathological features."	"Identification of Susceptibility Loci for Spontaneous Coronary Artery Dissection. Spontaneous coronary artery dissection (SCAD), an idiopathic disorder that predominantly affects young to middle-aged women, has emerged as an important cause of acute coronary syndrome, myocardial infarction, and sudden cardiac death. To identify common single-nucleotide variants (SNVs) associated with SCAD susceptibility. This single-center genome-wide association study examined approximately 5 million genotyped and imputed SNVs and subsequent SNV-targeted replication analysis results in individuals enrolled in the Mayo Clinic SCAD registry from August 30, 2011, to August 2, 2018. Data analysis was performed from June 21, 2017, to December 30, 2019. Genetic loci and positional candidate genes associated with SCAD. This study included 484 white women with SCAD (mean [SD] age, 46.6 [9.2] years) and 1477 white female controls in the discovery cohort (mean [SD] age, 64.0 [14.5] years) and 183 white women with SCAD (mean [SD] age, 47.1 [9.9] years) and 340 white female controls in the replication cohort (mean [SD] age, 51.0 [15.3] years). Associations with SCAD risk reached genome-wide significance at 3 loci (1q21.3 [OR, 1.78; 95% CI, 1.51-2.09; P = 2.63 × 10-12], 6p24.1 [OR, 1.77; 95% CI, 1.51-2.09; P = 7.09 × 10-12], and 12q13.3 [OR, 1.67; 95% CI, 1.42-1.97; P = 3.62 × 10-10]), and 7 loci had evidence suggestive of an association (1q24.2 [OR, 2.10; 95% CI, 1.58-2.79; P = 2.88 × 10-7], 3q22.3 [OR, 1.47; 95% CI, 1.26-1.71; P = 6.65 × 10-7], 4q34.3 [OR, 1.84; 95% CI, 1.44-2.35; P = 9.80 × 10-7], 8q24.3 [OR, 2.57; 95% CI, 1.76-3.75; P = 9.65 × 10-7], 15q21.1 [OR, 1.75; 95% CI, 1.40-2.18; P = 7.23 × 10-7], 16q24.1 [OR, 1.91; 95% CI, 1.49-2.44; P = 2.56 × 10-7], and 21q22.11 [OR, 2.11; 95% CI, 1.59-2.82; P = 3.12 × 10-7]) after adjusting for the top 5 principal components. Associations were validated for 5 of the 10 risk alleles in the replication cohort. In a meta-analysis of the discovery and replication cohorts, associations for the 5 SNVs were significant, with relatively large effect sizes (1q21.3 [OR, 1.77; 95% CI, 1.54-2.03; P = 3.26 × 10-16], 6p24.1 [OR, 1.71; 95% CI, 1.49-1.97; P = 4.59 × 10-14], 12q13.3 [OR, 1.69; 95% CI, 1.47-1.94; P = 1.42 × 10-13], 15q21.1 [OR, 1.79; 95% CI, 1.48-2.17; P = 2.12 × 10-9], and 21q22.11 [OR, 2.18; 95% CI, 1.70-2.81; P = 1.09 × 10-9]). Each index SNV was within or near a gene highly expressed in arterial tissue and previously linked to SCAD (PHACTR1) and/or other vascular disorders (LRP1, LINC00310, and FBN1). This study revealed 5 replicated risk loci and positional candidate genes for SCAD, most of which are associated with extracoronary arteriopathies. Moreover, the alternate alleles of 3 SNVs have been previously associated with atherosclerotic coronary artery disease, further implicating allelic susceptibility to coronary artery atherosclerosis vs dissection."	"Placensin is a glucogenic hormone secreted by human placenta. FBN1 encodes asprosin, a glucogenic hormone, following furin cleavage of the C-terminus of profibrillin 1. Based on evolutionary conservation between FBN1 and FBN2, together with conserved furin cleavage sites, we identified a peptide hormone placensin encoded by FBN2 based on its high expression in trophoblasts of human placenta. In primary and immortalized murine hepatocytes, placensin stimulates cAMP production, protein kinase A (PKA) activity, and glucose secretion, accompanied by increased expression of gluconeogenesis enzymes. In situ perfusion of liver and in vivo injection with placensin also stimulate glucose secretion. Placensin is secreted by immortalized human trophoblastic HTR-8/SVneo cells, whereas placensin treatment stimulates cAMP-PKA signaling in these cells, accompanied by increases in MMP9 transcripts and activities, thereby promoting cell invasion. In pregnant women, levels of serum placensin increase in a stage-dependent manner. During third trimester, serum placensin levels of patients with gestational diabetes mellitus are increased to a bigger extent compared to healthy pregnant women. Thus, placensin represents a placenta-derived hormone, capable of stimulating glucose secretion and trophoblast invasion."	"Higher blood pressure in elderly hypertensive females, with increased arterial stiffness and blood pressure in females with the Fibrillin-1 2/3 genotype. Elderly patients have a relatively high cardiovascular risk due to increased arterial stiffness, elevated blood pressure and decreased amounts of elastin in the arteries. The composition of the media layer in the arterial wall, comprising elastin, collagen, smooth muscle cells, proteoglycans, fibronectin and fibrillin-1, influences its mechanical properties. Mutations in the fibrillin-1 gene leads to increased aortic stiffness, elevated pulse pressure and aortic root dilatation. This study investigates whether there is a sex difference among hypertensive elderly patients regarding blood pressure, arterial stiffness and fibrillin-1 genotypes. A total of 315 hypertensive subjects (systolic blood pressure &gt; 140 mmHg) were included in this study (155 men and 160 women aged 71-88 years). Aortic pulse wave velocity and augmentation index were determined using SphygmoCor, and brachial blood pressure was measured using an oscillometric technique. Fibrillin-1 was genotyped by polymerase chain reaction and with a capillary electrophoresis system. Females showed a significantly higher peripheral mean arterial pressure (females; 107.20 mmHg, males 101.6 mmHg, p = 0.008), central mean arterial pressure (females; 107.2 mmHg, males 101.6 mmHg p = 0.008), central systolic blood pressure (females; 148.1 mmHg, males 139.2 mmHg, p &lt; 0.001) and central pulse pressure (females; 68.9 mmHg, males 61.6 mmHg, p = 0.035) than males. Females with the Fibrillin-1 2/3 genotype showed a significantly higher augmentation index (FBN1 2/3; 39.9%, FBN1 2/2 35.0%, FBN1 2/4 35.8, p = 0.029) and systolic blood pressure (FBN1 2/3; 174.6 mmHg, FBN1 2/2168.9 mmHg, FBN1 2/4169.9 mmHg, p = 0.025) than females with the 2/2 and 2/4 genotypes. The findings of this study may indicate that hypertensive elderly females, especially elderly females with Fibrillin-1 2/3, have increased systolic blood pressure and arterial stiffness."	"Biochemical changes of the pericellular matrix and spatial chondrocyte organization-Two highly interconnected hallmarks of osteoarthritis. During osteoarthritis, chondrocytes change their spatial arrangement from single to double strings, then to small and big clusters. This change in pattern has recently been established as an image-based biomarker for osteoarthritis. The pericellular matrix (PCM) appears to degrade together alongside cellular reorganization. The aim of this study was to characterize this PCM-degradation based on different cellular patterns. We additionally wanted to identify the earliest time point of PCM-breakdown in this physiopathological model. To this end, cartilage samples were selected according to their predominant cellular pattern. Qualitative analysis of PCM degradation was performed immunohistochemically by analysing five main PCM components: collagen type VI, perlecan, collagen type III, biglycan, and fibrillin-1 (n = 6 patients). Their protein content was quantified by enzyme-linked immunosorbent assay (127 patients). Accompanying spatial cellular rearrangement, the PCM is progressively destroyed, with a pericellular signal loss in fluorescence microscopy for collagen type VI, perlecan, and biglycan. This loss in protein signal is accompanied by a reduction in total protein content from single strings to big clusters (P &lt; .001 for collagen type VI, P = .003 for perlecan, and P &lt; .001 for biglycan). As a result of an increase in the number of cells from single strings to big clusters, the amount of protein available per cell also decreases for collagen type III and fibrillin-1, where total protein levels remain constant. Biochemical changes of the PCM and cellular rearrangement are thus highly interconnected hallmarks of osteoarthritis. Interestingly, the earliest point in time for a relevant PCM impairment appears to be at the transition to small clusters."	"Genetic Regulation of Adult Stature in Humans. NA"	"The ADAMTS/Fibrillin Connection: Insights into the Biological Functions of ADAMTS10 and ADAMTS17 and Their Respective Sister Proteases. Secreted a disintegrin-like and metalloprotease with thrombospondin type 1 motif (ADAMTS) proteases play crucial roles in tissue development and homeostasis. The biological and pathological functions of ADAMTS proteases are determined broadly by their respective substrates and their interactions with proteins in the pericellular and extracellular matrix. For some ADAMTS proteases, substrates have been identified and substrate cleavage has been implicated in tissue development and in disease. For other ADAMTS proteases, substrates were discovered in vitro, but the role of these proteases and the consequences of substrate cleavage in vivo remains to be established. Mutations in ADAMTS10 and ADAMTS17 cause Weill-Marchesani syndrome (WMS), a congenital syndromic disorder that affects the musculoskeletal system (short stature, pseudomuscular build, tight skin), the eyes (lens dislocation), and the heart (heart valve abnormalities). WMS can also be caused by mutations in fibrillin-1 (FBN1), which suggests that ADAMTS10 and ADAMTS17 cooperate with fibrillin-1 in a common biological pathway during tissue development and homeostasis. Here, we compare and contrast the biochemical properties of ADAMTS10 and ADAMTS17 and we summarize recent findings indicating potential biological functions in connection with fibrillin microfibrils. We also compare ADAMTS10 and ADAMTS17 with their respective sister proteases, ADAMTS6 and ADAMTS19; both were recently linked to human disorders distinct from WMS. Finally, we propose a model for the interactions and roles of these four ADAMTS proteases in the extracellular matrix."	"Fibrillin-1 and fibrillin-1-derived asprosin in adipose tissue function and metabolic disorders. The extracellular matrix microenvironment of adipose tissue is of critical importance for the differentiation, remodeling and function of adipocytes. Fibrillin-1 is one of the main components of microfibrils and a key player in this process. Furin processing of profibrillin-1 results in mature fibrillin-1 and releases the C-terminal propeptide as a circulating hunger hormone, asprosin. Mutations in the fibrillin-1 gene lead to adipose tissue dysfunction and causes Marfan syndrome, marfanoid progeroid lipodystrophy syndrome, and neonatal progeroid syndrome. Increased TGF-β signaling, altered mechanical properties and impaired adipogenesis are potential causes of adipose tissue dysfunction, mediated through deficient microfibrils. Circulating asprosin on the other hand is secreted primarily by white adipose tissue under fasting conditions and in obesity. It increases hepatic glucose production and drives insulin secretion and appetite stimulation through inter-organ cross talk. This review discusses the metabolic consequences of fibrillin-1 and fibrillin-1-derived asprosin in pathological conditions. Understanding the dynamic role of fibrillin-1 in the adipose tissue milieu and of circulating asprosin in the body can provide novel mechanistic insights into how fibrillin-1 may contribute to metabolic syndrome. This could lead to new management regimens of patients with metabolic disease."	"Microstructure of early embryonic aortic arch and its reversibility following mechanically altered hemodynamic load release. In the embryonic heart, blood flow is distributed through a bilaterally paired artery system composed of the aortic arches (AAs). The purpose of this study is to establish an understanding of the governing mechanism of microstructural maturation of the AA matrix and its reversibility, toward the desired macroscopic vessel lumen diameter and thickness for healthy, abnormal, and in ovo repaired abnormal mechanical loading. While matrix-remodeling mechanisms were significantly different for normal versus conotruncal banding (CTB), both led to an increase in vessel lumen. Correlated with right-sided flow increase at Hamburger &amp; Hamilton stages 21, intermittent load switching between collagen I and III with elastin and collagen-IV defines the normal process. However, decreases in collagen I, elastin, vascular endothelial growth factor-A, and fibrillin-1 in CTB were recovered almost fully following the CTB-release model, primarily because of the pressure load changes. The complex temporal changes in matrix proteins are illustrated through a predictive finite-element model based on elastin and collagen load-sharing mechanism to achieve lumen area increase and thickness increase resulting from wall shear stress and tissue strain, respectively. The effect of embryonic timing in cardiac interventions on AA microstructure was established where abnormal mechanical loading was selectively restored at the key stage of development. Recovery of the normal mechanical loading via early fetal intervention resulted in delayed microstructural maturation. Temporal elastin increase, correlated with wall shear stress, is required for continuous lumen area growth.NEW &amp; NOTEWORTHY The present study undertakes comparative analyses of the mechanistic differences of the arterial matrix microstructure and dynamics in the three fundamental processes of control, conotruncal banded, and released conotruncal band in avian embryo. Among other findings, this study provides specific evidence on the restorative role of elastin during the early lumen growth process. During vascular development, a novel intermittent load-switching mechanism between elastin and collagen, triggered by a step increase in wall shear stress, governs the chronic vessel lumen cross-sectional area increase. Mimicking the fetal cardiovascular interventions currently performed in humans, the early release of the abnormal mechanical load rescues the arterial microstructure with time lag."	"Marfan syndrome and related connective tissue disorders in the current era in Switzerland in 103 patients: medical and surgical management and impact of genetic testing. Marfan syndrome (MFS) and related connective tissue disorders (CTDs) are increasingly recognised. Genetic testing has greatly improved the diagnostic outcome/power over the last two decades. In this study we describe a multicentre cohort of adults with MFS and related CTDs, with a particular focus on results from genetic testing. All patients with MFS and related CTDs were identified from the databases of five centres in the canton of Zurich. Echocardiographic and clinical findings including systemic Marfan score, use of medication and genetic results were retrospectively analysed. MFS was diagnosed using the revised Ghent criteria (including FBN1 genetic testing if available); other CTDs (Loeys-Dietz syndrome) were diagnosed by genetic testing only. A cohort of 103 patients were identified (62 index patients, 41 relatives of family members): 96 patients with MFS and 7 patients with other CTD, 54 males (52%), median age 23 years (range 1&amp;ndash;75). The median systemic Marfan score was 5 (range 0&amp;ndash;18). Only 40 patients (40/103, 39%) fulfilled criteria for systemic involvement (&amp;ge;7 points). A history of aortic dissection was present in 14 out of 103 patients (14%). Echocardiographic data were available for all: aortic root enlargement (Z-score &amp;ge;2 in adults, Z-score &amp;ge;3 in children) was found in 49 patients (48%) and mitral valve prolapse in 64 (62%). Genetic testing had been performed in 80 patients (78%); FBN1 mutations were present in 69 patients (86%); other pathogenic mutations could be identified in seven patients (9%); no disease-causing mutation was found in four patients, three of them fulfilling the Ghent criteria of MFS. Of the mutation-positive patients, 33 had a systemic score of &amp;ge;7 and 43 had a systemic score of &amp;ge;5. Revised Ghent criteria were fulfilled in 70 patients: in 69 patients with FBN1 mutations and 1 patient with another CTD. Recommended treatment (beta-blocker, angiotensin receptor blocker) was taken by 63% of patients. In this cohort a high percentage of patients fulfilling the revised Ghent criteria for MFS underwent genetic testing, often leading to or confirming the diagnosis of MFS. Other CTDs could be discriminated best by genetic testing. With respect to the diagnosis of MFS and related CTDs, the usefulness of the systemic score is limited, showing the importance of genetic testing, which enabled definitive diagnosis in 95% of tested patients. Patient education on medical treatment still has to be improved. (Trial registration no: KEK-ZH-Nr. 2013-0241)."	"Increased fracture rate in children and adolescents with Marfan syndrome. Marfan syndrome (MFS) is an autosomal genetic disorder of connective tissue, due to alterated fibrillin-1. The aim of our study was to verify the rate of fractures in children with MFS in correlation to bone mineral density and compare the prevalence to the general population in the same latitude. We enrolled 80 patients (37 girls and 43 boys) with the diagnosis of Marfan syndrome, median age 10 y (3 to 17 years). Fracture occurrence was inferred from medical records of patients with MFS. Bone mineral density (BMD) was measured at lumbar spine, femoral neck and total femur by dual-energy x-ray absorptiometry. BMD values were expressed as z-scores, and adjusted for height using height-for-age z-scores. Bone turnover markers and vitamin D were measured. We assessed incidence of fracture in general pediatric population of our geographic area (45°N latitude). A total of 24 fractures were recorded in 21 patients (15 boys and 6 girls), involving both short and long bones, due to mild or moderate trauma. An incidence estimate has been calculated for each year, and an average incidence of 29.2/1000 MFS patients was obtained, markedly higher (P=0.034) than the incidence of fracture calculated in the same geographical area in pediatric patients (15.8/1000). We did not detect differences in anthropometric measurements, BMD values and biochemical indices between patients who fractured and patients who did not. Similarly, no differences were found between patients on losartan therapy and patients not in treatment for the same variables. In conclusion, the incidence of fractures was higher in patients with MFS compared to general population of the same age and latitude. The management of MFS must account bone status health and start strategies of fracture prevention."	"Ulnar Artery Aneurysm as a Late Sequela of Marfan Syndrome. Marfan syndrome (MFS) is a connective tissue disorder caused by mutations of the FBN1 gene encoding fibrillin-1, which leads to overexpression of transforming growth factor-β, increased hyaluronan deposition, and matrix metalloproteinase activity in the media of the aorta and other muscular arteries. Marfan syndrome patients present with connective tissue laxity and aneurysmal changes to muscular arteries. Successful medical and surgical intervention has prolonged the life expectancy of MFS patients, which can allow atypical presentations of the syndrome to manifest. We present a case of a 49-year-old man with MFS who developed an ulnar artery aneurysm that was treated by excision and vein grafting."	"DNA methylation ambiguity in the Fibrillin-1 (FBN1) CpG island shore possibly involved in Marfan syndrome. Fibrillin-1 (FBN1) is responsible for haploinsufficient and autosomal dominant Marfan syndrome. Even in the same Marfan pedigree, penetrance and expressivity in heterozygous individuals can differ and result in variable disease onset and severity. Thus, other factors in addition to mutations in FBN1 are likely to contribute to the disease. In this study, we examined the regulation of FBN1 in porcine Marfan syndrome model, focusing on DNA methylation patterns distinguishable as wild-type (WT) and FBN1 null (KO) alleles in heterozygous cells. Most importantly, the ratio of the transcriptionally active hypomethylated WT allele was altered during cellular passage and highly correlated with FBN1 mRNA level compared with that in the KO allele. Transcribed FBN1 RNA from the KO allele was abolished after splicing coupled with translational initiation, suggesting that the functional FBN1 mRNA levels were affected by DNA methylation of the WT allele."	"Identification of clinically relevant variants by whole exome sequencing in Chinese patients with sporadic non-syndromic type A aortic dissection. Thoracic aortic aneurysm and dissection (TAAD) is a life-threatening disease, of which genetic abnormalities are considered as important risk factors. The present research aims at identifying causal variants in Chinese patients with sporadic non-syndromic type A TAAD (ATAAD). Whole exome sequencing (WES) was performed on 73 sporadic Chinese patients with ATAAD, 30 TAAD associated genes were curated for bioinformatic analyses. Clinical differences were compared between patients with and without causal variants. 15 pathogenic/likely pathogenic variants were identified (8 novel and 7 previously described) in 4 known TAAD-causal genes (FBN1, TGFBR2, SMAD3 and ACTA2) in 15 individuals, including 11 variants in FBN1 (7 missense, 3 truncating, and 1 splicing variants), 2 missense variants in TGFBR2, 1 ACTA2 frameshift variant and 1 SMAD3 frameshift variant. Significant clinical differences were found between patients with and without causal variants. Patients with TAAD-causal variants proved to have an earlier onset age, a more dilated aorta, and relatively intractable subtypes. Even without risk factor like hypertension, they might still suffer from TAAD with TAAD-causal variants. The variants identified in our research might not only result in the occurrence of ATAAD, but also add complexities and difficulties to the clinical practice. Our data demonstrated that WES was an effective tool for determining genetic etiologies of non-syndromic ATAAD and could be helpful in genetic counseling for ATAAD patients and their at-risk family members."	"Aortic progression and reintervention in patients with pathogenic variants after a thoracic aortic dissection. To evaluate aortic disease progression and reintervention after an initial thoracic aortic dissection in pathogenic variant carriers. Of 175 participants diagnosed with thoracic aortic dissection, 31 had a pathogenic variant (pathogenic group) across 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, TGFBR2) identified by whole exome sequencing. Those with benign or normal variants (benign/normal group, n = 144) comprised the control group. Clinical data were collected through medical record review (1985-2018) and supplemented with the National Death Index database (December 2018). The entire cohort (n = 175) consisted of 108 type A aortic dissections and 67 type B aortic dissections, similarly distributed between groups. The pathogenic group was significantly younger (43 vs 56 years, P &lt; .0001) and had significantly more aortic root replacements and similar extents of arch replacement at initial type A aortic dissection repair. The median follow-up time was 7.5 (4.6-12) years. After initial treatment, the pathogenic group required significantly more aortic reinterventions (median 1 vs 0, P &lt; .0001) and mean cumulative aortic reinterventions for each patient (10 years: 1 vs 0.5, P = .029). Both incidence rate (12%/year vs 1.2%/year, P = .0001) and cumulative incidence of reinterventions (9 years: 70% vs 6%, P &lt; .0001) for the preserved native aortic root were significantly higher in the pathogenic group, but were similar for the preserved native aortic arch and distal aorta between groups. Ten-year survival was similar in the pathogenic and benign/normal groups (92% vs 85%). Aggressive aortic root replacement and similar arch management should be considered in pathogenic variant carriers at initial type A aortic dissection repair compared with benign/normal variant carriers."	"A case of G1013R FBN1 mutation: A potential genotype-phenotype correlation in severe Marfan syndrome. Marfan Syndrome (MFS) is an autosomal dominant connective tissue disorder with a wide range of severities. Ninety-five percent of MFS probands have a mutation in the fibrillin-1 gene (FBN1); however, there are a high number of unique mutations complicating attempts at establishing any phenotype-genotype correlations for this disease (Tiecke et al., European Journal of Human Genetics, 2001, 9, 13-21). One of the few extant genotype-phenotype correlations is in exon 24-32 which have been associated with a severe pediatric presentation of neonatal MFS with predominately cardiovascular symptoms. We present a 24-year-old male patient with a heterozygous de novo variant NM_000138.4: c.3037G&gt;A (p.G1013R) located in exon 25 of the FBN1 gene. The patient was found to have dysplastic mitral and tricuspid valves with dilated aortic root at 9 months of age. This is a notable case in that the location of this patient's mutation and his age of symptom onset would indicate a guarded prognosis. Further, this mutation, FBN1 G1013R, has been reported in the literature in four other unrelated patients all of whom presented at a young age with cardiac involvement and all of whom had relative longevity when compared to other patients with mutations in this exon 24-32 hot spot. These findings may represent a more specific genotype-phenotype correlation within this mutational hot spot."	"Application of cook balloon during aorta replacement in a pregnant Marfan-syndrome patient: a case report. Aortic dissection is a rare and emergent condition. Aortic dissection during pregnancy is not much known but it is quite lethal to both mother and infant. Earlier reports published show that clinicians conducted hysterectomies during cesarean section to avoid anticoagulant-induced uterine bleeding during the following aortic surgery. A woman (38, gravida 1, para 0) in the 37th gestational week suffered an acute, severe, sharp pain in the chest and back. She was diagnosed with Standford type A aortic dissection and suspected with Marfan syndrome. An emergency cesarean section was performed immediately to deliver the baby. Since the patient was on anticoagulants during aortic replacement, so Cook balloon was inserted into the uterus to prevent postpartum hemorrhage. This helped to maintain the uterus intact. Family genetic testing showed that the patient was a carrier of FBN1 mutation which was inherited from the patient's mother, and the newborn also carried the mutation. Hence the patient was concluded to be positive for Marfan syndrome. It is important that clinicians should pay attention to the possibility of aortic dissection in a pregnant woman with chest, abdominal or back pain. In this case study, we employed Cook balloon during cesarean section to avoid anticoagulant-induced uterine bleeding during the following aortic surgery."	"Partial Inhibition of Glycolysis Reduces Atherogenesis Independent of Intraplaque Neovascularization in Mice. Intraplaque neovascularization is an important feature of unstable human atherosclerotic plaques. However, its impact on plaque formation and stability is poorly studied. Because proliferating endothelial cells generate up to 85% of their ATP from glycolysis, we investigated whether pharmacological inhibition of glycolytic flux by the small-molecule 3PO (3-[3-pyridinyl]-1-[4-pyridinyl]-2-propen-1-one) could have beneficial effects on plaque formation and composition. Approach and Results: ApoE<sup>-/</sup><sup>-</sup> (apolipoprotein E deficient) mice treated with 3PO (50 µg/g, ip; 4×/wk, 4 weeks) showed a metabolic switch toward ketone body formation. Treatment of ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mice with 3PO (50 µg/g, ip) either after 4 (preventive, twice/wk, 10 weeks) or 16 weeks of Western diet (curative, 4×/wk, 4 weeks) inhibited intraplaque neovascularization by 50% and 38%, respectively. Plaque formation was significantly reduced in all 3PO-treated animals. This effect was independent of intraplaque neovascularization. In vitro experiments showed that 3PO favors an anti-inflammatory M2 macrophage subtype and suppresses an M1 proinflammatory phenotype. Moreover, 3PO induced autophagy, which in turn impaired NF-κB (nuclear factor-kappa B) signaling and inhibited TNF-α (tumor necrosis factor-alpha)-mediated VCAM-1 (vascular cell adhesion molecule-1) and ICAM-1 (intercellular adhesion molecule-1) upregulation. Consistently, a preventive 3PO regimen reduced endothelial VCAM-1 expression in vivo. Furthermore, 3PO improved cardiac function in ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mice after 10 weeks of treatment. Partial inhibition of glycolysis restrained intraplaque angiogenesis without affecting plaque composition. However, less plaques were formed, which was accompanied by downregulation of endothelial adhesion molecules-an event that depends on autophagy induction. Inhibition of coronary plaque formation by 3PO resulted in an overall improved cardiac function."	"Developmental abnormalities in the cornea of a mouse model for Marfan syndrome. Elastic fibres provide tissues with elasticity and flexibility. In the healthy human cornea, elastic fibres are limited to the posterior region of the peripheral stroma, but their specific functional role remains elusive. Here, we examine the physical and structural characteristics of the cornea during development in the mgΔ<sup>loxPneo</sup> dominant-negative mouse model for Marfan syndrome, in which the physiological extracellular matrix of its elastic-fibre rich tissues is disrupted by the presence of a dysfunctional fibrillin-1 glycoprotein. Optical coherence tomography demonstrated a reduced corneal thickness in the mutant compared to wild type mice from embryonic day 16.5 until adulthood. X-ray scattering and electron microscopy revealed a disruption to both the elastic fibre and collagen fibril ultrastructure in the knockout mice, as well as abnormally low levels of the proteoglycan decorin. It is suggested that these alterations might be a result of increased transforming growth factor beta signalling. To conclude, this study has demonstrated corneal structure and ultrastructure to be altered when fibrillin-1 is disrupted and has provided insights into the role of fibrillin-1 in developing a functional cornea."	"l-Arginine prevents inflammatory and pro-calcific differentiation of interstitial aortic valve cells. Reduced bioavailability of nitric oxide (NO) has been implicated in the pathogenesis of calcific aortic stenosis. Herein, we investigated the effects of l-Arginine, the main precursor of NO, on the osteogenic differentiation of aortic interstitial valve cells (VICs). We isolated a clonal population of bovine VICs that expresses osteogenic markers and induces calcification of collagen matrix after stimulation with endotoxin (LPS 500 ng/mL). VICs were treated in vitro with different combinations of LPS ± l-Arginine (50 or 100 mM) and cell extracts were collected to perform proteomic (iTRAQ) and gene expression (RT-PCR) analysis. l-Arginine prevents the over-expression of alkaline phosphatase (ALP, p &lt; 0.001) and reduces matrix calcification (p &lt; 0.05) in VICs treated with LPS. l-Arginine also reduces the over-expression of inflammatory molecules induced by LPS (TNF-alpha, IL-6 and IL-1beta, p &lt; 0.001). The proteomic analysis allowed to identify 49 proteins with an altered expression profile after stimulation with LPS and significantly modified by l-Arginine. These include proteins involved in the redox homeostasis of the cells (i.e. Xanthine Oxidase, Catalase, Aldehyde Oxidase), remodeling of the extracellular matrix (i.e. ADAMTSL4, Basigin, COL3A1) and cellular signaling (i.e. Fibrillin-1, Legumain, S100A13). The RT-PCR analysis confirmed the modifications of Fibrillin-1, ADAMTSL4, Basigin and Xanthine Oxidase, whose expression levels increase after stimulation with LPS and are reduced by l-Arginine (p &lt; 0.05). l-Arginine prevents osteogenic differentiation of VICs and reduces matrix calcification. This effect is achieved through the modulation of proteins involved in the cellular redox system, remodeling of extracellular matrix and inflammatory activation of VICs."	"Genome-wide identification of long noncoding RNAs and their competing endogenous RNA networks involved in the odontogenic differentiation of human dental pulp stem cells. Long noncoding RNAs (lncRNAs) play an important role in the multiple differentiations of mesenchymal stem cells (MSCs). However, few studies have focused on the regulatory mechanism of lncRNAs in the odontogenic differentiation of human dental pulp stem cells (hDPSCs). hDPSCs were induced to differentiate into odontoblasts in vitro, and the expression profiles of lncRNAs, microRNAs (miRNAs), and messenger RNAs (mRNAs) in differentiated and undifferentiated cells were obtained by microarray. Bioinformatics analyses including Gene Ontology (GO) analysis, pathway analysis, and binding site prediction were performed for functional annotation of lncRNA. miRNA/odontogenesis-related gene networks and lncRNA-associated ceRNA networks were constructed. Quantitative reverse-transcription polymerase chain reaction (qRT-PCR) was used to verify the expression of selected genes. RNA fluorescence in situ hybridization (FISH), qRT-PCR, and western blot analysis were used to explore the location and function of lncRNA-G043225. Dual-luciferase reporter assay was performed to confirm the binding sites of miR-588 with G043225 and Fibrillin 1 (FBN1). We identified 132 lncRNAs, 114 miRNAs, and 172 mRNAs were differentially expressed. GO analysis demonstrated that regulation of the neurogenic locus notch homolog (Notch), Wnt, and epidermal growth factor receptor (ERBB) signaling pathways and activation of mitogen-activated protein kinase (MAPK) activity were related to odontogenic differentiation. Pathway analysis indicated that the most significant pathway was the forkhead box O (FoxO) signaling pathway, which is related to odontogenic differentiation. Two odontogenesis-related gene-centered lncRNA-associated ceRNA networks were successfully constructed. The qRT-PCR validation results were consistent with the microarray analysis. G043225 mainly locating in cytoplasm was proved to promote the odontogenic differentiation of hDPSCs via miR-588 and FBN1. This is the first study revealing lncRNA-associated ceRNA network during odontogenic differentiation of hDPSCs using microarray, and it could provide clues to explore the mechanism of action at the RNA-RNA level as well as novel treatments for dentin regeneration based on stem cells."	"A Case of an Abdominal Aortic Dissection in a Hemodynamically Stable Marfan Syndrome Patient Presenting without Pain. Introduction. Marfan syndrome (MFS) is a rare connective tissue disorder attributed to a defect in the fibrillin-1 gene. Aortic aneurysms and dissection are common causes of morbidity and mortality in Marfan syndrome. Case Report. A 43-year-old female with a history of MFS and a 4.0 cm dilated ascending aorta presented to her cardiologist reporting that since a C-section two years prior, the left side of her abdomen painlessly protruded when standing. An outpatient CT scan of the abdomen/pelvis noted a 5.5 cm abdominal aortic dissection, and she was directed to the hospital. Repeat CT scan of the abdomen/pelvis revealed a 5.6 cm dissecting aneurysm of the infrarenal abdominal aorta. The patient was admitted to the ICU and started on a nitroglycerin drip to maintain systolic blood pressure less than 110 mmHg. The patient underwent repair of her abdominal aortic dissection via a retroperitoneal approach, and she tolerated the procedure well. She was started on metoprolol tartrate 12.5 mg BID and aspirin 81 mg postoperatively. She was safely discharged with follow-up care. Conclusion. This case stresses the importance of having a low threshold to obtain imaging in a MFS patient with protruding abdomen, even though the patient may not have pain and be hemodynamically stable."	"Exploring the genetic pathogenicity of aortic dissection from 72 Han Chinese individuals using next-generation sequencing. Aortic dissection (AD) is a heterogeneous genetic disease with high morbidity and mortality. Although many genes predispose patients to AD, the pathogenic spectrum remains incomplete. This study aims to (a) investigate whether genotype differences exist between Stanford A and B AD individuals, and (b) broaden the pathogenic genetic spectrum of AD and reported novel variants of AD-associated genes. The DNA of 72 unrelated Han Chinese individuals with AD was tested by whole-exome sequencing. Of 142 AD-associated genes, 10 pathogenic variants, and 48 likely pathogenic variants in 36 genes were identified among 39 cases. The diagnostic yield was 54.2%. Of the 58 positive variants, 27 were novel. FBN1 was the most frequently positive gene in both Stanford A and Stanford B. Twenty-seven positive variants from 18 COL family genes were distributed in 36.8% of Stanford A and 6.7% of Stanford B cases. We emphasize that positive variants of COL family genes show distribution predominance and strong pathogenicity in Stanford A, while positive variants of smooth muscle cell pathway genes present distribution advantages mainly in Stanford B cases. Our findings provide a new perspective for both the pathogenic mechanism and the treatment of AD."	"Asprosin: A Novel Player in Metabolic Diseases. Asprosin, a novel glucogenic adipokine, is encoded by two exons (exon 65 and exon 66) of the gene Fibrillin 1 (FBN1) and mainly synthesized and released by white adipose tissue during fasting. Asprosin plays a complex role in the central nervous system (CNS), peripheral tissues, and organs. It is involved in appetite, glucose metabolism, insulin resistance (IR), cell apoptosis, etc. In this review, we will summarize the newly discovered roles of asprosin in metabolic diseases including diabetes, obesity, polycystic ovarian syndrome (PCOS), and cardiovascular disease (CVD), which may contribute to future clinical diagnosis and treatment."	"ADAMTSL6β promotes fibrillin-1 microfibril assembly, which is possibly mediated via binding through the third thrombospondin type I domain to fibrillin-1. Fibrillin-1 is the major component of extracellular matrix microfibrils. Microfibrils dysfunction is responsible for the onset of various connective tissue diseases, including Marfan syndrome. Although ADAMTSL (a disintegrin and metalloproteinase with thrombospondin motifs-like) 6β is one of the fibrillin-1 binding proteins, the detailed mechanism underlying the involvement of ADAMTSL6β in microfibril formation remains unclear. In this study, we created deletion mutants of ADAMTSL6β and examined their interactions with fibrillin-1 assembly. Pull-down assay of the ADAMTSL6β deletion mutants and fibrillin-1 protein revealed that ADAMTSL6β binds to fibrillin-1 through the third thrombospondin type I domain. Furthermore, we observed that formation of fibrillin-1 matrix assembly was enhanced in MG63 cells, expressing full-length ADAMTSL6β, when compared with that of wild type MG63 cells. While MG63 cells expressing Δ TSP3-ADAMTSL6β form showed enhanced assembly formation, Δ TSP2-ADAMTSL6β form did not enhance that, indicating the difference between Δ TSP2-Δ TSP3 has a critical role for fibrillin-1 assembly. As the difference of Δ TSP2-Δ TSP3 is the third thrombospondin type I domain, we concluded that the third thrombospondin type I domain of ADAMTSL6β influence the microfibril formation. Our data are the functional presentation of the biological role of ADAMTSL6β in the process of microfibril formation."	"Aortic Dissection Risk in Marfan Syndrome. NA"	"Pathogenic FBN1 Genetic Variation and Aortic Dissection in Patients With Marfan Syndrome. Aortic risk has not been evaluated in patients with Marfan syndrome and documented pathogenic variants in the FBN1 gene. This study sought to describe aortic risk in a population with Marfan syndrome with pathogenic variants in the FBN1 gene as a function of aortic root diameter. Patients carrying an FBN1 pathogenic variant who visited our reference center at least twice were included, provided they had not undergone aortic surgery or had an aortic dissection before their first visit. Aortic events (aortic surgery or aortic dissection) and deaths were evaluated during the 2 years following each patient visit. The risk was calculated as the number of events divided by the number of years of follow-up. A total of 954 patients were included (54% women; mean age 23 years). During follow-up (9.1 years), 142 patients underwent prophylactic aortic root surgery, 5 experienced type A aortic dissection, and 12 died (noncardiovascular causes in 3, unknown etiology in 3, post-operative in 6). When aortic root diameter was &lt;50 mm, risk for proven type A dissection (0.4 events/1,000 patient-years) and risk for possible aortic dissection (proven aortic dissection plus death of unknown cause, 0.7 events/1,000 patients-years) remained low in this population that was treated according to guidelines. Three type A aortic dissections occurred in this population during the 8,594 years of follow-up, including 1 in a patient with a tubular aortic diameter of 50 mm, but none in patients with a family history of aortic dissection. The risk for type B aortic dissection in the same population was 0.5 events/1,000 patient-years. In patients with FBN1 pathogenic variants who receive beta-blocker therapy and who limit strenuous exercise, aortic risk remains low when maximal aortic diameter is &lt;50 mm. The risk of type B aortic dissection is close to the remaining risk of type A aortic dissection in this population, which underlines the global aortic risk."	"Role of fibrillin-2 in the control of TGF-β activation in tumor angiogenesis and connective tissue disorders. Fibrillins constitute a family of large extracellular glycoproteins which multimerize to form microfibrils, an important structure in the extracellular matrix. It has long been assumed that fibrillin-2 was barely present during postnatal life, but it is now clear that fibrillin-2 molecules form the structural core of microfibrils, and are masked by an outer layer of fibrillin-1. Mutations in fibrillins give rise to heritable connective tissue disorders, including Marfan syndrome and congenital contractural arachnodactyly. Fibrillins also play an important role in matrix sequestering of members of the transforming growth factor-β family, and in context of Marfan syndrome excessive TGF-β activation has been observed. TGF-β activation is highly dependent on integrin binding, including integrin αvβ8 and αvβ6, which are upregulated upon TGF-β exposure. TGF-β is also involved in tumor progression, metastasis, epithelial-to-mesenchymal transition and tumor angiogenesis. In several highly vascularized types of cancer such as hepatocellular carcinoma, a positive correlation was found between increased TGF-β plasma concentrations and tumor vascularity. Interestingly, fibrillin-1 has a higher affinity to TGF-β and, therefore, has a higher capacity to sequester TGF-β compared to fibrillin-2. The previously reported downregulation of fibrillin-1 in tumor endothelium affects the fibrillin-1/fibrillin-2 ratio in the microfibrils, exposing the normally hidden fibrillin-2. We postulate that fibrillin-2 exposure in the tumor endothelium directly stimulates tumor angiogenesis by influencing TGF-β sequestering by microfibrils, leading to a locally higher active TGF-β concentration in the tumor microenvironment. From a therapeutic perspective, fibrillin-2 might serve as a potential target for future anti-cancer therapies."	"Predifferentiated Smooth Muscle-Like Adipose-Derived Stem Cells for Bladder Engineering.  Introduction:  All organs of human body are a conglomerate of various cell types with multidirectional interplay between the different cells and the surrounding microenvironment, leading to a stable tissue formation, homeostasis, and function. To develop a functional smooth muscle tissue, we need to simulate and create a multicellular microenvironment. The multilineage adipose-derived stem cells (ADSCs), which can be easily harvested in large numbers, may provide an alternative cell source for the replacement of smooth muscle cells (SMCs) in cell-based detrusor bioengineering therapeutic approaches. The aim of this study was to investigate whether predifferentiated smooth muscle-like ADSC (pADSC) can support SMCs to generate stable smooth muscle tissue through remodeling of extracellular matrix (ECM) and factor secretion.  Methods:  Rat SMC and pADSC were mono- and cocultured in the cell ratios 1:1, 1:2, 1:3, and 1:5 (SMC-pADSC) and grown for up to 2 weeks in vitro. The expression of the SMC-specific markers alpha-smooth muscle actin, calponin, myosin heavy chain 11 (MyH11), and smoothelin was assessed, and cell proliferation and contractility were analyzed. Proteomic analysis of the secretome (cell-cell contact was compared with a noncontact transwell 1:1 coculture) and the cell pellets was performed, with the focus on ECM deposition and remodeling, integrin expression and growth factor secretion.  Results:  SMC and pADSC were strongly positive for all smooth muscle markers. After 1 and 2 weeks of culture, the 1:1 cell ratio developed a significantly higher number of smooth muscle organoids and improved contractility. These organoids were highly structured, consisting of an SMC core surrounded by a pADSC layer. The deposition of various EMC proteins, such as collagens 1a1, 1a2, 2a1, 3a1, 5a2, 6a2, 12a1, and fibrillin 1, was significantly increased. A decreased matrix metalloproteinase 3 (MMP3), MMP9 and MMP13 secretion, as well as increased tissue inhibitors of metalloproteinase 1 (TIMP1) and TIMP2 secretion were found in the contact coculture compared with the monoculture controls.  Conclusion:  SMC-pADSC 1:1 cocultures exhibit an improved cell proliferation, contractility, and organoid formation compared with all other ratios and monoculture, while retaining a stable phenotype that is comparable with the SMC monoculture. These effects are mediated by increased ECM deposition and tight ECM remodeling by the secreted MMP and TIMP. Impact statement Harvesting smooth muscle cells (SMCs) from diseased bladders represents a significant limitation for clinical translation of bladder Tissue Engineering. Our results suggest that autologous predifferentiated smooth muscle-like adipose-derived stem cell can substitute SMCs, and may be used in combination with SMCs to generate contractile detrusor muscle tissue for patients suffering from end-stage bladder diseases. We demonstrate a beneficial effect when using these cells in a 1:1 ratio with improved deposition of extracellular matrix (ECM) molecules and superior remodeling of the ECM by matrix metalloproteinases and decreased tissue inhibitors of metalloproteinase activity."	"Asprosin and type 2 diabetes mellitus: a novel potential therapeutic implication. Diabetes is a group of metabolic disorders that is characterized by hyperglycemia which increases the risks of cardiovascular, microvascular, and macrovascular complications. Innovative therapeutic trials regarding diabetes control and management are continually being undertaken. The present review was aimed to explore the potential effects and mechanisms that lead to the pathogenesis of type 2 diabetes mellitus (T2DM) and its relation with asprosin. Asprosin is a newly discovered hormone that is encoded by protein fibrillin 1 (FBN1 gene), secreted by white adipose during fasting conditions at 5-10 nM levels, which acts on the liver through cell membrane receptors and activates the G protein cAMP- PKA pathway. Asprosin secretion is increased during fasting as the compensatory mechanism in hypoglycemia. Asprosin concentration is higher in patients with T2DM and impaired glucose regulation compared to healthy subjects. Genetic deficiency of asprosin may cause problems of poor appetite and extreme leanness in humans. Attenuating asprosin activity or depleting asprosin may serve as a novel therapeutic innovation for the treatment of T2DM and obesity. Hence, asprosin may serve as a beacon for the target of a future therapy in diabetes management."	"Chronic mTOR activation induces a degradative smooth muscle cell phenotype. Smooth muscle cell (SMC) proliferation has been thought to limit the progression of thoracic aortic aneurysm and dissection (TAAD) because loss of medial cells associates with advanced disease. We investigated effects of SMC proliferation in the aortic media by conditional disruption of Tsc1, which hyperactivates mTOR complex 1. Consequent SMC hyperplasia led to progressive medial degeneration and TAAD. In addition to diminished contractile and synthetic functions, fate-mapped SMCs displayed increased proteolysis, endocytosis, phagocytosis, and lysosomal clearance of extracellular matrix and apoptotic cells. SMCs acquired a limited repertoire of macrophage markers and functions via biogenesis of degradative organelles through an mTOR/β-catenin/MITF-dependent pathway, but were distinguishable from conventional macrophages by an absence of hematopoietic lineage markers and certain immune effectors even in the context of hyperlipidemia. Similar mTOR activation and induction of a degradative SMC phenotype in a model of mild TAAD due to Fbn1 mutation greatly worsened disease with near-uniform lethality. The finding of increased lysosomal markers in medial SMCs from clinical TAAD specimens with hyperplasia and matrix degradation further supports the concept that proliferation of degradative SMCs within the media causes aortic disease, thus identifying mTOR-dependent phenotypic modulation as a therapeutic target for combating TAAD."	"Characteristics of Human OAS1 Isoform Proteins. The human OAS1 (hOAS1) gene produces multiple possible isoforms due to alternative splicing events and sequence variation among individuals, some of which affect splicing. The unique C-terminal sequences of the hOAS1 isoforms could differentially affect synthetase activity, protein stability, protein partner interactions and/or cellular localization. Recombinant p41, p42, p44, p46, p48, p49 and p52 hOAS1 isoform proteins expressed in bacteria were each able to synthesize trimer and higher order 2'-5' linked oligoadenylates in vitro in response to poly(I:C). The p42, p44, p46, p48 and p52 isoform proteins were each able to induce RNase-mediated rRNA cleavage in response to poly(I:C) when overexpressed in HEK293 cells. The expressed levels of the p42 and p46 isoform proteins were higher than those of the other isoforms, suggesting increased stability in mammalian cells. In a yeast two-hybrid screen, Fibrillin1 (FBN1) was identified as a binding partner for hOAS1 p42 isoform, and Supervillin (SVIL) as a binding partner for the p44 isoform. The p44-SVIL interaction was supported by co-immunoprecipitation data from mammalian cells. The data suggest that the unique C-terminal regions of hOAS1 isoforms may mediate the recruitment of different partners, alternative functional capacities and/or different cellular localization."	"Compound heterozygous mutations in FBN1 in a large family with Marfan syndrome. Marfan syndrome (MFS) is a dominant monogenic disorder caused by mutations in fibrillin 1 (FBN1). Rarely, compound heterozygosity for FBN1 mutations has been described. A large kindred with MFS was assessed clinically over decades, and genetically using exome and/or Sanger sequencing. A previously identified FBN1 missense variant (p.Tyr754Cys) was confirmed in all subjects with MFS. An additional variant (p.Met2273Thr), previously associated with incomplete MFS, was identified in three siblings. These three compound heterozygous individuals had aortic dilatation at early age (all &lt;30 years): one also had cerebral and ocular aneurysms; and one, who had undergone surgical repair aged 18 years, died from aortic dissection at 31 years. In contrast, their heterozygous father (p.Tyr754Cys) with MFS died at 57 years (myocardial infarction) without requiring surgical intervention and one heterozygous (p.Tyr754Cys) sibling has aortic dilatation presenting &gt;40 years but not requiring surgical intervention. Another heterozygous (p.Tyr754Cys) sibling did require aortic root repair (28 years). The heterozygous (p.Met2273Thr) mother had aortic dilatation diagnosed at age 68 years but has not required surgical repair. Although compound heterozygosity or homozygosity is rare in MFS, it should be considered when there is an unusually severe phenotype in a subset of family members."	"Single-cell transcriptional profiles in human skeletal muscle. Skeletal muscle is a heterogeneous tissue comprised of muscle fiber and mononuclear cell types that, in addition to movement, influences immunity, metabolism and cognition. We investigated the gene expression patterns of skeletal muscle cells using RNA-seq of subtype-pooled single human muscle fibers and single cell RNA-seq of mononuclear cells from human vastus lateralis, mouse quadriceps, and mouse diaphragm. We identified 11 human skeletal muscle mononuclear cell types, including two fibro-adipogenic progenitor (FAP) cell subtypes. The human FBN1+ FAP cell subtype is novel and a corresponding FBN1+ FAP cell type was also found in single cell RNA-seq analysis in mouse. Transcriptome exercise studies using bulk tissue analysis do not resolve changes in individual cell-type proportion or gene expression. The cell-type gene signatures provide the means to use computational methods to identify cell-type level changes in bulk studies. As an example, we analyzed public transcriptome data from an exercise training study and revealed significant changes in specific mononuclear cell-type proportions related to age, sex, acute exercise and training. Our single-cell expression map of skeletal muscle cell types will further the understanding of the diverse effects of exercise and the pathophysiology of muscle disease."	"Deficiency of Circulating Monocytes Ameliorates the Progression of Myxomatous Valve Degeneration in Marfan Syndrome. Myxomatous valve degeneration (MVD) involves the progressive thickening and degeneration of the heart valves, leading to valve prolapse, regurgitant blood flow, and impaired cardiac function. Leukocytes composed primarily of macrophages have recently been detected in myxomatous valves, but the timing of the presence and the contributions of these cells in MVD progression are not known. We examined MVD progression, macrophages, and the valve microenvironment in the context of Marfan syndrome (MFS) using mitral valves from MFS mice (Fbn1<sup> C1039G/+ </sup>), gene-edited MFS pigs (FBN1<sup> Glu433AsnfsX98/+ </sup>), and patients with MFS. Additional histological and transcriptomic evaluation was performed by using nonsyndromic human and canine myxomatous valves, respectively. Macrophage ontogeny was determined using MFS mice transplanted with mTomato+ bone marrow or MFS mice harboring RFP (red fluorescent protein)-tagged C-C chemokine receptor type 2 (CCR2) monocytes. Mice deficient in recruited macrophages (Fbn1<sup> C1039G/+ </sup>;Ccr2<sup> RFP/RFP </sup>) were generated to determine the requirements of recruited macrophages to MVD progression. MFS mice recapitulated histopathological features of myxomatous valve disease by 2 months of age, including mitral valve thickening, increased leaflet cellularity, and extracellular matrix abnormalities characterized by proteoglycan accumulation and collagen fragmentation. Diseased mitral valves of MFS mice concurrently exhibited a marked increase of infiltrating (MHCII+, CCR2+) and resident macrophages (CD206+, CCR2-), along with increased chemokine activity and inflammatory extracellular matrix modification. Likewise, mitral valve specimens obtained from gene-edited MFS pigs and human patients with MFS exhibited increased monocytes and macrophages (CD14+, CD64+, CD68+, CD163+) detected by immunofluorescence. In addition, comparative transcriptomic evaluation of both genetic (MFS mice) and acquired forms of MVD (humans and dogs) unveiled a shared upregulated inflammatory response in diseased valves. Remarkably, the deficiency of monocytes was protective against MVD progression, resulting in a significant reduction of MHCII macrophages, minimal leaflet thickening, and preserved mitral valve integrity. All together, our results suggest sterile inflammation as a novel paradigm to disease progression, and we identify, for the first time, monocytes as a viable candidate for targeted therapy in MVD."	"Corrigendum to &quot;The Fibrillin-1 RGD Integrin Binding Site Regulates Gene Expression and Cell Function Through microRNAs&quot; [J. Mol. Biol. 431 (2) (2019) 401-421]. NA"	"Rare genetic variants in patients with cervical artery dissection. The potential role of genetic alterations in cervical artery dissection (CeAD) pathogenesis is poorly understood. We aimed to identify pathogenic genetic variants associated with cervical artery dissection by using whole exome sequencing. CeAD-patients with either a family history of cervical artery dissection (f-CeAD) or recurrent cervical artery dissection (r-CeAD) from the CeAD-databases of two experienced stroke centres were analysed by whole exome sequencing.Variants with allele frequency &lt;0.05 and classified as pathogenic by predicting algorithms (SIFT or Polyphen-2) or the ClinVar database were explored. First, we analysed a panel of 30 candidate genes associated with arterial dissection (any site) or aneurysm according to the OMIM (online Mendelian Inheritance of Men) database. Second, we performed a genome-wide search for pathogenic variants causing other vascular phenotypes possibly related to cervical artery dissection.Findings were classified as CeAD-causing (pathogenic variants in genes from the arterial dissection or aneurysm panel) or suggestive (pathogenic variants in genes associated with other vascular phenotypes and variants of unknown significance in genes from the arterial dissection or aneurysm panel). All other variants were classified as benign/uncertain. Among 43 CeAD-patients, 28 patients (17 pedigrees) had f-CeAD and 15 had r-CeAD. No CeAD-causing variants were identified in r-CeAD patients. Among f-CeAD-patients, 5/17 pedigrees carried CeAD-causing variants in COL3A1, COL4A1, COL4A3, COL4A4, COL5A1, COL5A2 and FBN1. Suggestive variants in ABCC6, COL3A1, COL5A2, MEF2A, and RNF213 were detected in three pedigrees with f-CeAD and six patients with r-CeAD.Discussion and conclusion: CeAD-causing variants were rare and exclusively found in f-CeAD-patients, suggesting differences between the genetic architectures of f-CeAD and r-CeAD. The identified variants indicate a high genetic heterogeneity of the study sample."	"Generation of a human induced pluripotent stem cell line (NCCDFWi001-A) from a Marfan syndrome patient carrying two FBN1 variants (c.2613A &gt; C and c.684_736 + 4del). The human induced pluripotent stem cell line NCCDFWi001-A was derived from peripheral blood mononuclear cells (PBMC) of a 26-year-old female Marfan syndrome patient carrying two compound heterozygous variants FBN1c.2613A &gt; C, (p.Leu871Phe) and c.684_736 + 4del. The established patient-derived iPSC showed expression of pluripotent stem cell markers and had the ability to differentiate into all of the three germ layers and possessed a normal karyotype."	"Identification of key genes involved in the development and progression of early-onset colorectal cancer by co-expression network analysis. A number of studies have revealed that there is an increasing incidence of early-onset colorectal cancer (CRC) in young adults (before the age of 50 years) and a progressive decline in CRC among older patients, after the age of 50 years (late-onset CRC). However, the etiology of early-onset CRC is not fully understood. The aim of the present study was to identify key genes associated with the development of early-onset CRC through weighted gene co-expression network analysis (WGCNA). The GSE39582 dataset was downloaded from the Gene Expression Omnibus database, and the data profiles of tissues from patients diagnosed before the age of 50 years were selected. The top 10,000 genes with the highest variability were used to construct the WGCNA. Hub genes were identified from the modules associated with clinical traits using gene significance &gt;0.2 and module membership &gt;0.8 as the cut-off criteria. Gene Ontology and pathway analyses were subsequently performed on the hub genes and a protein-protein interaction network (PPI) was constructed. The diagnostic value of module hub genes with a degree score &gt;5 in the PPI network was verified in samples from patients with CRC diagnosed before the age of 50 years obtained from The Cancer Genome Atlas. Eight co-expressed gene modules were identified in the WGCNA and two modules (blue and turquoise) were associated with the tumor-node-metastasis stage. A total of 140 module hub genes were identified and found to be enriched in 'mitochondrial large ribosomal subunit', 'structural constituent of ribosome', 'poly (A) RNA binding', 'collagen binding', 'protein ubiquitination' and 'ribosome pathway'. Twenty-six module hub genes were found to have a degree score &gt;5 in the PPI network, seven of which [secreted protein acidic and cysteine rich (SPARC), decorin (DCN), fibrillin 1 (FBN1), WW domain containing transcription regulator 1 (WWTR1), transgelin (TAGLN), DEAD-box helicase 28 (DDX28) and cold shock domain containing C2 (CSDC2)], had good prognostic values for patients with early-onset CRC, but not late-onset CRC. Therefore, SPARC, DCN, FBN1, WWTR1, TAGLN, DDX28 and CSDC2 may contribute to the development of early-onset CRC and may serve as potential diagnostic biomarkers."	"Gene signature characteristic of elevated stromal infiltration and activation is associated with increased risk of hematogenous and lymphatic metastasis in serous ovarian cancer. The clinical significance of hematogenous and lymphatic metastasis in ovarian cancer has been increasingly addressed, as it plays an imperative role in the formation of both intraperitoneal and distant metastases. Our objective is to identify the key molecules and biological processes potentially related to this relatively novel metastatic route in serous ovarian cancer. Since lymphovascular space invasion (LVSI) is considered as the first step of hematogenous and lymphatic dissemination, we developed a gene signature mainly based on the transcriptome profiles with available information on LVSI status in the Cancer Genome Atlas (TCGA) dataset. We then explored the underlying biological rationale and prognostic value of the identified gene signature using multiple public databases. We observe that primary tumors with increased risk of hematogenous and lymphatic metastasis highly express a panel of genes, namely POSTN, LUM, THBS2, COL3A1, COL5A1, COL5A2, FAP1 and FBN1. The identified geneset is characterized by enhanced deposition of extracellular matrix and extensive stromal activation. Mechanistically, both the recruitment and the activation of stromal cells, especially fibroblasts, are closely associated with lymphovascular metastasis. Survival analysis further reveals that the elevated expression of the identified genes correlates to cancer progression and poor prognosis in patients with serous ovarian cancer. Our findings indicate that tumor stroma supports the hematogenous and lymphatic spread of ovarian cancer, increasing tumor invasiveness and ultimately resulting in worse survival. Thus stroma-targeted therapies may improve the clinical outcomes in combination with cytoreductive surgery and chemotherapy."	"miR-29a Promotes the Neurite Outgrowth of Rat Neural Stem Cells by Targeting Extracellular Matrix to Repair Brain Injury. Neural stem cells (NSCs) can generate new neurons to repair brain injury and central nervous system disease by promoting neural regeneration. MicroRNAs (miRNAs) involve in neural development, brain damage, and neurological diseases repair. Recent reports show that several miRNAs express in NSCs and are important to neurogenesis. Neurites play a key role in NSC-related neurogenesis. However, the mechanism of NSC neurite generation is rarely studied. We surprisingly noticed that the neurites increased after bone morphogenetic protein (BMP) treatment in rat NSCs. This process was accompanied by the dynamic change of miRNA-29. Then we discovered that miR-29a regulated neural neurites in rat hippocampus NSCs. Overexpression of miR-29a reduced the cell soma area and promoted the neurite outgrowth of NSCs. Cell soma area became small, whereas the number of neurite increased. Moreover, neurite complexity increased dramatically, with more primary and secondary branches after miR-29a overexpression. In addition, miR-29a overexpression still maintained the stemness of NSCs. Besides, we identified that miR-29a can promote the neurite outgrowth by targeting extracellular matrix-related genes like Fibrillin 1 (Fbn1), Follistatin-like 1 (Fstl1), and laminin subunit gamma 2 (Lamc2). These findings may provide a novel role of miR-29a to regulate neurite outgrowth and development of NSCs. We also offered a possible theoretical basis to the migration mechanism of NSCs in brain development and damage repair."	"The value of plasma fibrillin-1 level in patients with spontaneous coronary artery dissection. Spontaneous coronary artery dissection (SCAD) has emerged as an important etiology of myocardial infarction and sudden death, especially in young women. Early diagnosis is essential for appropriate management. To explore the value of plasma fibrillin-1 (FBN1) levels in patients with SCAD. 70 patients with non-atherosclerotic SCAD between January 2014 and September 2018 were age and sex matched with 70 patients with non-SCAD acute coronary syndrome (ACS) and 70 healthy controls. The plasma FBN1 level was measured and compared among three groups. The value of FBN1 for prognosis and treatment decision making was further explored. The plasma FBN1 level of SCAD group (58.44 ± 7.06 ng/mL) was higher than that of non-SCAD ACS group (52.39 ± 6.92 ng/mL, P &lt; 0.001) or healthy controls (50.56 ± 4.48 ng/mL, P &lt; 0.001). Compared with controls, significantly higher percentages of patients with SCAD were found in the highest compared with lowest quartile of FBN1 concentration. The area under the curve (AUC) for plasma FBN1 level to discriminate patients with SCAD from non-SCAD ACS was 0.81 (95% CI 0.74-0.88, P &lt; 0.001). A cut-off value of 54.64 ng/mL was determined to differentiate SCAD from non-SCAD ACS with a sensitivity of 0.77 (95%CI: 0.66-0.86) and specificity of 0.76 (95%CI: 0.64-0.85). After a median follow-up of 28.35 (14.07 ± 44.69) months, 11 (15.7%) cases suffered from major adverse cardiac events (MACE). Higher FBN1 level was detected in patients with MACE (63.71 ± 7.49 vs. 57.45 ± 6.58 ng/mL) (P = 0.006). A cut-point of 58.14 was determined for SCAD patients to identify MACE. At this point, FBN1 might also have potential use for decision making in SCAD patients. Plasma FBN1 is a promising biomarker for aiding the diagnosis of SCAD and have potential value in prognosis prediction."	"Prenatal diagnosis of Marfan syndrome by fetal echocardiography: A case report and review of cardiovascular manifestations. Neonatal Marfan syndrome (nMFS), phenotypically and genotypically distinct from the classical syndrome, is rarely diagnosed prenatally, and the cardiovascular prognosis is poor. This case report described one fetus diagnosed with nMFS by fetal echocardiography. The main features were cardiomegaly, and atrioventricular valves prolapse with moderate regurgitation and dilated great vessels. Extracardiac malformations included right diaphragmatic eventration, bilateral pyelectasis, and lengthy femur. Pathological examination confirmed the findings of fetal echo, and all cardiac valves were dysplastic. Sanger sequencing revealed a deletion mutation affecting exon 30 of the fibrillin 1 (FBN1) gene. Echocardiography is essential for prenatal diagnosis, and multivalve dysplasia is common among those patients."	"Increased frequency of FBN1 frameshift and nonsense mutations in Marfan syndrome patients with aortic dissection. Marfan syndrome (MFS) is an inherited connective tissue disease that mainly involves Fibrillin-1 (FBN1) mutations and aortic manifestations. In this study, we investigated the correlations between the FBN1 genotype-phenotype and aortic events (aortic dissection and aortic aneurysm) in patients with Marfan syndrome. Genotype and phenotype information was evaluated in 180 patients with MFS. DNA sequencing was performed on each patient. According to the clinical manifestation, these patients were split into two groups: the aortic dissection group and the aortic aneurysm group. Aortic wall tissue was obtained from Marfan patients who underwent surgery and was used for staining. A total of 180 patients with FBN1 mutations were grouped into four categories: 90 with missense mutations, 32 with splicing mutations, 29 with frameshift mutations, and 29 with nonsense mutations. There was a significantly higher frequency of frameshift and nonsense mutations observed in aortic dissection than in aortic aneurysm (25.58% vs. 4.35%, p = .005; 25.58% vs. 8.70%, p = .033, respectively;), while missense mutations showed a higher frequency in aortic aneurysm than in aortic dissection (69.57% vs. 32.56%, respectively; p &lt; .001) and a higher rate of lens dislocation (34.78% vs. 13.95%, respectively; p = .008). Pathological staining showed that elastic fibers were sparser in patients with a frameshift and nonsense mutations, and the smooth muscle cells were sparser and more disorganized than those observed in patients with missense mutations. This study showed that FBN1 gene frameshift and nonsense mutations are more common in patients with aortic dissection and may have meaningful guidance for the treatment of Marfan syndrome patients."	"Features of Marfan syndrome not listed in the Ghent nosology - the dark side of the disease. Introduction: The revised Ghent nosology presents the classical features of Marfan syndrome. However, behind its familiar face, Marfan syndrome hides less well-known features.Areas covered: The German Marfan Organization listed unusual symptoms and clinical experts reviewed the literature on clinical features of Marfan syndrome not listed in the Ghent nosology. Thereby we identified the following features: (1) bicuspid aortic valve, mitral valve prolapse, pulmonary valve prolapse, tricuspid valve prolapse, (2) heart failure and cardiomyopathy, (3) supraventricular arrhythmia, ventricular arrhythmia, and abnormal repolarization, (4) spontaneous coronary artery dissection, anomalous coronary arteries, and atherosclerotic coronary artery disease, tortuosity-, aneurysm-, and dissection of large and medium-sized arteries, (5) restrictive lung disease, parenchymal lung disease, and airway disorders, (6) obstructive- and central sleep apnea, (7) liver and kidney cysts, biliary tract disease, diaphragmatic hernia, and adiposity, (8) premature labor, and urinary incontinence, (9) myopathy, reduced bone mineral density, and craniofacial manifestations, (10) atrophic scars, (11) caries, and craniomandibular dysfunction, (12) headache from migraine and spontaneous cerebrospinal fluid leakage, (13) cognitive dysfunction, schizophrenia, depression, fatigue, and pain, (14) and activated fibrinolysis, thrombin, platelets, acquired von Willebrand disease, and platelet dysfunction.Expert commentary: Future research, nosologies, and guidelines may consider less well-known features of Marfan syndrome."	"Identification of novel FBN1 variations implicated in congenital scoliosis. Congenital scoliosis (CS) is a form of scoliosis caused by congenital vertebral malformations. Genetic predisposition has been demonstrated in CS. We previously reported that TBX6 loss-of-function causes CS in a compound heterozygous model; however, this model can explain only 10% of CS. Many monogenic and polygenic CS genes remain to be elucidated. In this study, we analyzed exome sequencing (ES) data of 615 Chinese CS from the Deciphering Disorders Involving Scoliosis and COmorbidities (DISCO) project. Cosegregation studies for 103 familial CS identified a novel heterozygous nonsense variant, c.2649G&gt;A (p.Trp883Ter) in FBN1. The association between FBN1 and CS was then analyzed by extracting FBN1 variants from ES data of 574 sporadic CS and 828 controls; 30 novel variants were identified and prioritized for further analyses. A mutational burden test showed that the deleterious FBN1 variants were significantly enriched in CS subjects (OR = 3.9, P = 0.03 by Fisher's exact test). One missense variant, c.2613A&gt;C (p.Leu871Phe) was recurrent in two unrelated CS subjects, and in vitro functional experiments for the variant suggest that FBN1 may contribute to CS by upregulating the transforming growth factor beta (TGF-β) signaling. Our study expanded the phenotypic spectrum of FBN1, and provided nove insights into the genetic etiology of CS."	"BMPR2 acts as a gatekeeper to protect endothelial cells from increased TGFβ responses and altered cell mechanics. Balanced transforming growth factor-beta (TGFβ)/bone morphogenetic protein (BMP)-signaling is essential for tissue formation and homeostasis. While gain in TGFβ signaling is often found in diseases, the underlying cellular mechanisms remain poorly defined. Here we show that the receptor BMP type 2 (BMPR2) serves as a central gatekeeper of this balance, highlighted by its deregulation in diseases such as pulmonary arterial hypertension (PAH). We show that BMPR2 deficiency in endothelial cells (ECs) does not abolish pan-BMP-SMAD1/5 responses but instead favors the formation of mixed-heteromeric receptor complexes comprising BMPR1/TGFβR1/TGFβR2 that enable enhanced cellular responses toward TGFβ. These include canonical TGFβ-SMAD2/3 and lateral TGFβ-SMAD1/5 signaling as well as formation of mixed SMAD complexes. Moreover, BMPR2-deficient cells express genes indicative of altered biophysical properties, including up-regulation of extracellular matrix (ECM) proteins such as fibrillin-1 (FBN1) and of integrins. As such, we identified accumulation of ectopic FBN1 fibers remodeled with fibronectin (FN) in junctions of BMPR2-deficient ECs. Ectopic FBN1 deposits were also found in proximity to contractile intimal cells in pulmonary artery lesions of BMPR2-deficient heritable PAH (HPAH) patients. In BMPR2-deficient cells, we show that ectopic FBN1 is accompanied by active β1-integrin highly abundant in integrin-linked kinase (ILK) mechano-complexes at cell junctions. Increased integrin-dependent adhesion, spreading, and actomyosin-dependent contractility facilitates the retrieval of active TGFβ from its latent fibrillin-bound depots. We propose that loss of BMPR2 favors endothelial-to-mesenchymal transition (EndMT) allowing cells of myo-fibroblastic character to create a vicious feed-forward process leading to hyperactivated TGFβ signaling. In summary, our findings highlight a crucial role for BMPR2 as a gatekeeper of endothelial homeostasis protecting cells from increased TGFβ responses and integrin-mediated mechano-transduction."	"Assessment of Bones Deficient in Fibrillin-1 Microfibrils Reveals Pronounced Sex Differences. Defects in the extracellular matrix protein fibrillin-1 that perturb transforming growth factor beta (TGFβ) bioavailability lead to Marfan syndrome (MFS). MFS is an autosomal-dominant disorder, which is associated with connective tissue and skeletal defects, among others. To date, it is unclear how biological sex impacts the structural and functional properties of bone in MFS. The aim of this study was to investigate the effects of sex on bone microarchitecture and mechanical properties in mice with deficient fibrillin-1, a model of human MFS. Bones of 11-week-old male and female Fbn1<sup>mgR/mgR</sup> mice were investigated. Three-dimensional micro-computed tomography of femora and vertebrae revealed a lower ratio of trabecular bone volume to tissue volume, reduced trabecular number and thickness, and greater trabecular separation in females vs. males. Three-point bending of femora revealed significantly lower post-yield displacement and work-to-fracture in females vs. males. Mechanistically, we found higher Smad2 and ERK1/2 phosphorylation in females vs. males, demonstrating a greater activation of TGFβ signaling in females. In summary, the present findings show pronounced sex differences in the matrix and function of bones deficient in fibrillin-1 microfibrils. Consequently, sex-specific analysis of bone characteristics in patients with MFS may prove useful in improving the clinical management and life quality of these patients, through the development of sex-specific therapeutic approaches."	"Case-matched Comparison of Cardiovascular Outcome in Loeys-Dietz Syndrome versus Marfan Syndrome. Background: Pathogenic variants in TGFBR1, TGFBR2 and SMAD3 genes cause Loeys-Dietz syndrome, and pathogenic variants in FBN1 cause Marfan syndrome. Despite their similar phenotypes, both syndromes may have different cardiovascular outcomes. Methods: Three expert centers performed a case-matched comparison of cardiovascular outcomes. The Loeys-Dietz group comprised 43 men and 40 women with a mean age of 34 ± 18 years. Twenty-six individuals had pathogenic variants in TGFBR1, 40 in TGFBR2, and 17 in SMAD3. For case-matched comparison we used 83 age and sex-frequency matched individuals with Marfan syndrome. Results: In Loeys-Dietz compared to Marfan syndrome, a patent ductus arteriosus (p = 0.014) was more prevalent, the craniofacial score was higher (p &lt; 0.001), the systemic score lower (p &lt; 0.001), and mitral valve prolapse less frequent (p = 0.003). Mean survival for Loeys-Dietz and Marfan syndrome was similar (75 ± 3 versus 73 ± 2 years; p = 0.811). Cardiovascular outcome was comparable between Loeys-Dietz and Marfan syndrome, including mean freedom from proximal aortic surgery (53 ± 4 versus 48 ± 3 years; p = 0.589), distal aortic repair (72 ± 3 versus 67 ± 2 years; p = 0.777), mitral valve surgery (75 ± 4 versus 65 ± 3 years; p = 0.108), and reintervention (20 ± 3 versus 14 ± 2 years; p = 0.112). In Loeys-Dietz syndrome, lower age at initial presentation predicted proximal aortic surgery (HR = 0.748; p &lt; 0.001), where receiver operating characteristic analysis identified ≤33.5 years with increased risk. In addition, increased aortic sinus diameters (HR = 6.502; p = 0.001), and higher systemic score points at least marginally (HR = 1.175; p = 0.065) related to proximal aortic surgery in Loeys-Dietz syndrome. Conclusions: Cardiovascular outcome of Loeys-Dietz syndrome was comparable to Marfan syndrome, but the severity of systemic manifestations was a predictor of proximal aortic surgery."	"Genetic and molecular mechanism for distinct clinical phenotypes conveyed by allelic truncating mutations implicated in FBN1. The molecular and genetic mechanisms by which different single nucleotide variant alleles in specific genes, or at the same genetic locus, cause distinct disease phenotypes often remain unclear. Allelic truncating mutations of FBN1 could cause either classical Marfan syndrome (MFS) or a more complicated phenotype associated with Marfanoid-progeroid-lipodystrophy syndrome (MPLS). We investigated a small cohort, encompassing two classical MFS and one MPLS subjects from China, whose clinical presentation included scoliosis potentially requiring surgical intervention. Targeted next generation sequencing was performed on all the participants. We analyzed the molecular diagnosis, clinical features, and the potential molecular mechanism involved in the MPLS subject in our cohort. We report a novel de novo FBN1 mutation for the first Chinese subject with MPLS, a more complicated fibrillinopathy, and two subjects with more classical MFS. We further predict that the MPLS truncating mutation, and others previously reported, is prone to escape the nonsense-mediated decay (NMD), while MFS mutations are predicted to be subjected to NMD. Also, the MPLS mutation occurs within the glucogenic hormone asprosin domain of FBN1. In vitro experiments showed that the single MPLS mutation p.Glu2759Cysfs*9 appears to perturb proper FBN1 protein aggregation as compared with the classical MFS mutation p.Tyr2596Thrfs*86. Both mutations appear to upregulate SMAD2 phosphorylation in vitro. We provide direct evidence that a dominant-negative interaction of FBN1 potentially explains the complex MPLS phenotypes through genetic and functional analysis. Our study expands the mutation spectrum of FBN1 and highlights the potential molecular mechanism for MPLS."	"High Prevalence of Connective Tissue Gene Variants in Professional Ballet. There is a high prevalence of hypermobility spectrum disorder (HSD) in dancers. While there is no known genetic variant for HSD, hypermobile Ehlers-Danlos syndrome is a genetic disorder that exists within HSD. There are many connective tissue disorders (CTDs) with known (and unknown) genes associated with hypermobility. Hypermobility has distinct advantages for participation in flexibility sports, including ballet. To determine the prevalence of gene variants associated with hypermobility in a large professional ballet company. Cross-sectional study; Level of evidence, 3. In this cross-sectional investigation, 51 professional male and female dancers from a large metropolitan ballet company were eligible and offered participation after an oral and written informed consent process. Whole blood was obtained from peripheral venipuncture, and DNA was isolated. Isolated DNA was subsequently enriched for the coding exons of 60 genes associated with CTD that included hypermobility as a phenotype, including Ehlers-Danlos syndromes, osteogenesis imperfecta, Marfan syndrome, and others. Genes were targeted with hybrid capture technology. Prepared DNA libraries were then sequenced with next-generation sequencing technology. Genetic database search tools (Human Gene Mutation Database and e!Ensembl, http://useast.ensembl.org/ ) were used to query specific variants. Descriptive statistics were calculated. Of 51 dancers, 32 (63%) agreed to participate in DNA analysis (mean ± SD age, 24.3 ± 4.4 years; 18 men, 14 women). Twenty-eight dancers had at least 1 variant in the 60 genes tested, for an 88% prevalence. A total of 80 variants were found. A variant in 26 of the 60 genes was found in at least 1 dancer. Among the 28 dancers with variants, 16 were found in the TTN gene; 10 in ZNF469; 5 in RYR1; 4 in COL12A1; 3 in ABCC6 and COL6A2; 2 in ADAMTS2, CBS, COL1A2, COL6A3, SLC2A10, TNC, and TNXB; and 1 in ATP6V0A2, B4GALT7, BMP1, COL11A1, COL5A2, COL6A1, DSE, FBN1, FBN2, NOTCH1, PRDM5, SMAD3, and TGFBR1. Nine variants found in this population have never been reported. No identified variant was identical to any other variant. No identified variant was known to be disease causing. In the general population, the prevalence of each variant ranges from never reported to 0.33%. In the study population, the prevalence of each variant was 3.13%. There was no association between hypermobility scores and genetic variants. Genetic variants in CTD-associated genes are highly prevalent (88%) in professional ballet dancers. This may significantly account for the high degree of motion in this population."	"Molecular Diagnosis of Craniosynostosis Using Targeted Next-Generation Sequencing. Genetic factors play an important role in the pathogenesis of craniosynostosis (CRS). However, the molecular diagnosis of CRS in clinical practice is limited because of its heterogeneous etiology. To investigate the genomic landscape of CRS in a Korean cohort and also to establish a practical diagnostic workflow by applying targeted panel sequencing. We designed a customized panel covering 34 CRS-related genes using in-solution hybrid capture method. We enrolled 110 unrelated Korean patients with CRS, including 40 syndromic and 70 nonsyndromic cases. A diagnostic pipeline was established by combining in-depth clinical reviews and multiple bioinformatics tools for analyzing single-nucleotide variants (SNV)s and copy number variants (CNV)s. The diagnostic yield of the targeted panel was 30.0% (33/110). Twenty-five patients (22.7%) had causal genetic variations resulting from SNVs or indels in 9 target genes (TWIST1, FGFR3, TCF12, ERF, FGFR2, ALPL, EFNB1, FBN1, and SKI, in order of frequency). CNV analysis identified 8 (7.3%) additional patients with chromosomal abnormalities involving 1p32.3p31.3, 7p21.1, 10q26, 15q21.3, 16p11.2, and 17p13.3 regions; these cases mostly presented with syndromic clinical features. The present study shows the wide genomic landscape of CRS, revealing various genetic factors for CRS pathogenesis. In addition, the results demonstrate that an efficient diagnostic workup using target panel sequencing provides great clinical utility in the molecular diagnosis of CRS."	"Genetic investigation of patients with tall stature. Patients with tall stature often remain undiagnosed after clinical investigation and few studies have genetically assessed this group, most of them without a systematic approach. To assess prospectively a group of individuals with tall stature, with and without syndromic features, and to establish a molecular diagnosis for their growth disorder. Screening by karyotype (n = 42), chromosome microarray analyses (CMA) (n = 16), MS-MLPA (n = 2) targeted panel (n = 12) and whole-exome sequencing (n = 31). We selected 42 patients with tall stature after exclusion of pathologies in GH/IGF1 axis and divided them into syndromic (n = 30) and non-syndromic (n = 12) subgroups. Frequencies of pathogenic findings. We identified two patients with chromosomal abnormalities including SHOX trisomy by karyotype, one 9q22.3 microdeletion syndrome by CMA, two cases of Beckwith-Wiedemann syndrome by targeted MS-MLPA analysis and nine cases with heterozygous pathogenic or likely pathogenic genetic variants by multigene analysis techniques (FBN1 = 3, NSD1 = 2, NFIX = 1, SUZ12 = 1, CHD8 = 1, MC4R = 1). Three of 20 patients analyzed by WES had their diagnosis established. Only one non-syndromic patient had a definitive diagnosis. The sequential genetic assessment diagnosed 14 out of 42 (33.3%) tall patients. A systematic molecular approach of patients with tall stature was able to identify the etiology in 13 out of 30 (43.3%) syndromic and 1 out of 12 (8.3%) non-syndromic patients, contributing to the genetic counseling and avoiding unfavorable outcomes in the syndromic subgroup."	"Mutation analysis of FBN1 gene in two Chinese families with congenital ectopia lentis in northern China. To summarize the phenotypes and identify the underlying genetic cause of the fibrillin-1 (FBN1) gene responsible for congenital ectopia lentis (EL) in two Chinese families in northern China. A detailed family history and clinical data from all participants were collected by clinical examination. The candidate genes were captured and sequenced by targeted next-generation sequencing, and the results were confirmed by Sanger sequencing. Haplotyping was used to confirm the mutation sequence. Real-time PCR was used to determine the FBN1 messenger ribonucleic acid (mRNA) levels in patients with EL and in unaffected family members. The probands and other patients in the two families were affected with congenital isolated EL. A heterozygous FBN1 mutation in exon 21 (c.2420_IVS20-8 delTCTGAAACAinsCGAAAG) was identified in FAMILY-1. A heterozygous FBN1 mutation in exon 14 (c.1633C&gt;T, p.R545C) was identified in FAMILY-2. Each mutation co-segregated with the affected individuals in the family and did not exist in unaffected family members and 200 unrelated normal controls. The insertion-deletion mutation (c.2420 IVS20-8delTCTGAAACA insCGAAAG) in the FBN1 gene is first identified in isolated EL. The mutation (c.1633C&gt;T) in the FBN1 gene was a known mutation in EL patient. The variable phenotypes among the patients expand the phenotypic spectrum of EL in a different ethnic background."	"Screening and validating the core biomarkers in patients with pancreatic ductal adenocarcinoma. Pancreatic ductal adenocarcinoma (PAAD) is one of the most common malignant tumors in digestive system. To find the new therapeutic targets and explore potential mechanisms underlying PAAD, the bioinformatics has been performed in our study. The PAAD gene expression profile GSE28735 was chosen to analyze the differentially expressed genes (DEGs) between PAAD carcinoma tissues and normal adjacent tissues from 45 patients with PAAD. Gene ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were performed using Database for Annotation, Visualization and Integrated Discovery (DAVID). Moreover, a protein-protein interaction (PPI) network was also constructed to help us screen the top 20 hub genes in this profile and demonstrated the underlying interactions among them. The Gene Expression Profiling Interactive Analysis (GEPIA) was further performed in order to valid the mRNA levels of top5 up-regulated and top5 down-regualted DEGs, apart from exploring their association with survival rate as well as tumor stage. Finally, Q-PCR was further employed to valid the top5 up-regulated and top5 down-regulated genes in patients with PAAD. In our study, there were a total of 444 DEGs captured (271 up-regulated genes and 173 down-regulated genes). Among these DEGs, the top5 up-regulated genes were CEACAM5, SLC6A14, LAMC2, GALNT5 and TSPAN1 while the top5 down-regulated genes were GP2, CTRC, IAPP, PNLIPRP2 and PNLIPRP1. GO analysis disclosed that the DEGs were predominantly enriched in cell adhesion, lipid metabolism, integrin binding, proteolysis and calcium ion binding. KEGG analysis disclosed that the enriched pathway included pancreatic secretion, protein digestion and absorption, fat digestion and absorption, ECM-receptor interaction, focal adhesion and PI3K-Akt signaling pathway. Survival analysis unveiled that the high expression levels of SLC6A14, GALNT5 and TSPAN1 may correlate with the poor prognosis while high expression levels of IAPP may contribute to a better prognosis in patients with PAAD. Additionally, the levels of CEACAM5, SLC6A14, LAMC2 and GALNT5 were also associated with tumor stage. Furthermore, according to the connectivity degree of these DEGs, we selected the top20 hub genes, namely ALB, FN1, EGF, MMP9, COL1A1, COL3A1, FBN1, CXCL12, POSTIN, BGN, VCAN, THBS2, KRT19, MET, MMP14, COL5A2, GCG, MUC1, MMP1 and CPB1, which were expected to be promising therapeutic targets in PAAD. Collectively, our bioinformatics analysis showed that DEGs and hub genes may be defined as new biomarkers for diagnosis and for guiding the therapeutic strategies of PAAD."	"Mutation analysis of the FBN1 gene in a cohort of patients with Marfan Syndrome: A 10-year single center experience. Marfan Syndrome (MFS) is a chronic, life-threatening, autosomal dominant connective tissue disorder caused by mutations in the FBN1 gene, coding for fibrillin-1. All organ systems may be affected, but particularly the cardiovascular system, eyes, and skeleton. Mortality generally results from cardiovascular complications, mainly aortic dissection. Currently, the diagnosis of MFS is based on the revised Ghent nosology. Molecular analysis of the FBN1 gene reduces diagnostic uncertainty in patients with suspected MFS or MFS-related disorders (MFS-RD). To date, more than 2700 FBN1 mutations are known. Using Next Generation Sequencing (NGS) followed by Multiplex Ligation-dependent Probe Amplification on NGS-negative samples, we screened FBN1 gene on 124 unrelated patients (101 MFS fulfilling revised Ghent criteria, 20 suspected MFS, 3 MFS-RD) enrolled from 2008 to 2018 at the Multidisciplinary Marfan Clinic, Tor Vergata Hospital, Rome. An FBN1 variant was identified in 107/124 (86.3%) patients, including 48 novel variants (46 pathogenic/likely pathogenic, 2 VUS). A pathogenic/likely pathogenic variant was detected in 90/101 (89.1%) MFS patients. Our approach allowed early diagnosis for 10 young patients (age 3-19 years) with suspected MFS. This study broadens the mutation spectrum of FBN1, providing a full update of the molecular basis of MFS in Italy."	"A novel ADAMTS17 variant that causes Weill-Marchesani syndrome 4 alters fibrillin-1 and collagen type I deposition in the extracellular matrix. Weill-Marchesani syndrome (WMS) is a rare genetic disorder that affects the musculoskeletal system, the eye, and the cardiovascular system. Individuals with WMS present with short stature, joint contractures, thick skin, microspherophakia, small and dislocated lenses, and cardiac valve anomalies. WMS can be caused by recessive mutations in ADAMTS10 (WMS 1), ADAMTS17 (WMS 4), or LTBP2 (WMS 3), or by dominant mutations in fibrillin-1 (FBN1) (WMS 2); all genes encode secreted extracellular matrix (ECM) proteins. Individuals with WMS 4 due to ADAMTS17 mutations appear to have less severe cardiac involvement and present predominantly with the musculoskeletal and ocular features of WMS. ADAMTS17 is a member of the ADAMTS family of secreted proteases and directly binds to fibrillins. Here we report a novel pathogenic variant in ADAMTS17 that causes WMS 4 in an individual with short stature, brachydactyly, and small, spherical, and dislocated lenses. We provide biochemical and cell biological insights in the pathomechanisms of WMS 4, which also suggest potential biological functions for ADAMTS17. We show that the variant in ADAMTS17 prevents its secretion and we found intracellular accumulation of fibrillin-1 and collagen type I in patient-derived skin fibroblasts. In accordance, transmission electron microscopy revealed elastic fiber abnormalities, decreased collagen fibril diameters, and intracellular collagen accumulation in the dermis of the proband. Together, the data indicate a possible role for ADAMTS17 in the secretion of fibrillin-1 and collagen type I or in their early assembly in the pericellular matrix or the ECM."	"The influence of fibrillin-1 and physical activity upon tendon tissue morphology and mechanical properties in mice. Fibrillin-1 mutations cause pathological changes in connective tissue that constitute the complex phenotype of Marfan syndrome. In this study, we used fibrillin-1 hypomorphic and haploinsufficient mice (Fbn1<sup>mgr/mgR</sup> and Fbn1<sup>+/-</sup> mice, respectively) to investigate the impact of fibrillin-1 deficiency alone or in combination with regular physical activity on tendon tissue morphology and mechanical properties. Morphological and biomechanical analyses revealed that Fbn1<sup>mgr/mgR</sup> but not Fbn1<sup>+/-</sup> mice displayed smaller tendons with physical properties that were unremarkable when normalized to tendon size. Fbn1<sup>mgR/mgR</sup> mice (n = 43) Fbn1<sup>+/-</sup> mice (n = 27) and wild-type mice (WT, n = 25) were randomly assigned to either control cage conditions (n = 54) or to a running on a running wheel for 4 weeks (n = 41). Both fibrillin-1-deficient mice ran voluntarily on the running wheel in a manner similar to WT mice (3-4 km/24 h). Regular exercise did not mitigate aneurysm progression in Fbn1<sup>mgR/mgR</sup> mice (P &lt; 0.05) as evidenced by unmodified median survival. In spite of the smaller size, tendons of fibrillin-1-deficient mice subjected to regular exercise showed no evidence of overt histopathological changes or tissue overload. We therefore concluded that lack of optimal fibrillin-1 synthesis leads to a down regulation of integrated tendon formation, rather than to a loss of tendon quality, which also implies that fibrillin-1 deficiency in combination with exercise is not a suitable animal model for studying the development of tendon overuse (tendinopathy)."	"Vitreous Proteomics Provides New Insights into Antivascular Endothelial Growth Factor Therapy for Pathologic Myopia Choroid Neovascularization. This study aimed to investigate the protein expression profile of vitreous humor (VH) from pathologic myopic retinoschisis (PMRS) patients with or without intravitreal antivascular endothelial growth factor (anti-VEGF) therapy. VH samples from PMRS patients were subjected to proteomic analysis. Clinical data, including visual acuity, refractive error, and axial length, were recorded, and the fundus optical coherence tomography was performed. Seven PMRS patients were enrolled: 3 PMRS patients as control group, 3 PMRS patients with coexisting choroidal neovascularization (CNV) who developed retinoschisis aggravation after multiple intravitreal conbercept (IVC) injections, and one PMRS patient with coexisting CNV without leakage CNV (CNV-). A total of 310 differentially expressed proteins were identified in these VH samples. The expression of 28 proteins, related to cellular adhesion, protease inhibitors, proangiogenic factors, and antiangiogenic factors, was significantly downregulated in the IVC-treated eyes than in control- and CNV-eyes. α-smooth muscle actin (α-SMA) expression was significantly upregulated in the IVC-treated eyes. Furthermore, the expression of αA-crystallin and fibrillin-1 was significantly upregulated in both IVC and CNV-eyes than in control eyes. These suggest that multiple IVC injections may increase the VH αSMA concentration, which may contribute to posterior hyaloid membrane or retinal inner limiting membrane contraction. Label-free proteomics is an efficient method to provide further insight into the pathogenesis of vitreoretinal diseases."	"[Identification of a novel FBN1 variant in a pedigree affected with Marfan syndrome]. To explore the genetic basis for a pedigree affected with Marfan syndrome (MFS). Clinical data of the patients was collected. With genomic DNA extracted from peripheral blood samples, potential mutation was detected by targeted exome sequencing. Candidate variants were validated by Sanger sequencing and bioinformatic analysis. Targeted exome sequencing and Sanger sequencing revealed a missense c.649T to C(p.Trp217Arg) variant in the exon 7 of FBN1 gene, which was unreported previously. Bioinformatics analysis suggested that the variant can cause amino acid replacement and affect the structure and function of fibrillin-1. A novel missense variant of the FBN1 gene was identified, which probably underlies the autosomal dominant MFS in this pedigree."	"Impaired vascular smooth muscle cell force-generating capacity and phenotypic deregulation in Marfan Syndrome mice. Mechanisms whereby fibrillin-1 mutations determine thoracic aorta aneurysms/dissections (TAAD) in Marfan Syndrome (MFS) are unclear. Most aortic aneurysms evolve from mechanosignaling deregulation, converging to impaired vascular smooth muscle cell (VSMC) force-generating capacity accompanied by synthetic phenotype switch. However, little is known on VSMC mechanoresponses in MFS pathophysiology. Here, we investigated traction force-generating capacity in aortic VSMC cultured from 3-month old mg∆<sup>lpn</sup> MFS mice, together with morpho-functional and proteomic data. Cultured MFS-VSMC depicted marked phenotype changes vs. wild-type (WT) VSMC, with overexpressed cell proliferation markers but either lower (calponin-1) or higher (SM alpha-actin and SM22) differentiation marker expression. In parallel, the increased cell area and its complex non-fusiform shape suggested possible transition towards a mesenchymal-like phenotype, confirmed through several markers (e.g. N-cadherin, Slug). MFS-VSMC proteomic profile diverged from that of WT-VSMC particularly regarding lower expression of actin cytoskeleton-regulatory proteins. Accordingly, MFS-VSMC displayed lower traction force-generating capacity and impaired contractile moment at physiological substrate stiffness, and markedly attenuated traction force responses to enhanced substrate rigidity. Such impaired mechanoresponses correlated with decreased number, altered morphology and delocalization of focal adhesions, as well as disorganized actin stress fiber network vs. WT-VSMC. In VSMC cultured from 6-month-old mice, phenotype changes were attenuated and both WT-VSMC and MFS-VSMC generated less traction force, presumably involving VSMC aging, but without evident senescence. In summary, MFS-VSMC display impaired force-generating capacity accompanying a mesenchymal-like phenotype switch connected to impaired cytoskeleton/focal adhesion organization. Thus, MFS-associated TAAD involves mechanoresponse impairment common to other TAAD types, but through distinct mechanisms."	"Successful repair of a popliteal aneurysm with saphenous vein graft in a patient with Marfan syndrome. Marfan syndrome is an autosomal dominant disorder caused by mutations in the fibrillin 1 gene (FBN1). This leads to defective elasticity of connective tissue in the arterial wall. Aortic aneurysms and dissections are the most common vascular anomalies; the incidence of peripheral artery aneurysms is not well understood. Treatment options for infrainguinal disease are limited as endovascular interventions are generally contraindicated. The best conduit for arterial reconstruction is also unknown because there is concern that saphenous vein may become aneurysmal. Currently, there are few case reports regarding outcomes of infrainguinal arterial reconstructions, and follow-up has been very short term. We report a rare case of successful repair of a popliteal aneurysm using a saphenous vein graft in a patient with Marfan syndrome."	"Severe aortic root dilatation in infantile Marfan syndrome. Cardiovascular manifestations of Marfan syndrome are associated with increased mortality, especially in the pediatric population. Early recognition is critical to long-term management. We present two cases of genetically defined &quot;classical&quot; Marfan syndrome presenting with severe infantile aortic root dilatation among siblings and discuss options for therapy."	"A disease-associated mutation in fibrillin-1 differentially regulates integrin-mediated cell adhesion. Fibrillins serve as scaffolds for the assembly of elastic fibers that contribute to the maintenance of tissue homeostasis and regulate growth factor signaling in the extracellular space. Fibrillin-1 is a modular glycoprotein that includes 7 latent transforming growth factor β (TGFβ)-binding protein-like (TB) domains and mediates cell adhesion through integrin binding to the RGD motif in its 4th TB domain. A subset of missense mutations within TB4 cause stiff skin syndrome (SSS), a rare autosomal dominant form of scleroderma. The fibrotic phenotype is thought to be regulated by changes in the ability of fibrillin-1 to mediate integrin binding. We characterized the ability of each RGD-binding integrin to mediate cell adhesion to fibrillin-1 or a disease-causing variant. Our data show that 7 of the 8 RGD-binding integrins can mediate adhesion to fibrillin-1. A single amino acid substitution responsible for SSS (W1570C) markedly inhibited adhesion mediated by integrins α5β1, αvβ5, and αvβ6, partially inhibited adhesion mediated by αvβ1, and did not inhibit adhesion mediated by α8β1 or αIIbβ3. Adhesion mediated by integrin αvβ3 depended on the cell surface expression level. In the SSS mutant background, the presence of a cysteine residue in place of highly conserved tryptophan 1570 alters the conformation of the region containing the exposed RGD sequence within the same domain to differentially affect fibrillin's interactions with distinct RGD-binding integrins."	"Theophylline exerts complex anti-ageing and anti-cytotoxicity effects in human skin ex vivo. Theophylline is a phosphodiesterase inhibitor that is being used clinically for asthma therapy. In addition, it is recognized as a cosmetic agent with possible anti-ageing and anti-oxidative properties. Nevertheless, how it affects human skin is still poorly examined. Theophylline (10 or 100 µM) was administered to the culture medium of full-thickness human skin ex vivo for 24 or 72 h. Theophylline stimulated protein expression of the anti-oxidant metallothionein-1 and mRNA levels of collagen I and III. Assessment of fibrillin-1 immunohistology revealed enhanced structural stability of dermal microfibrils. Theophylline also exerted extracellular matrix-protective effects by decreasing MMP-2 and MMP-9 mRNA levels, partially antagonizing the effects of menadione, the potent, toxic ROS donor. In addition, it decreased menadione-stimulated epidermal keratinocytes apoptosis. Interestingly, theophylline also increased the level of intracutaneously produced melatonin, that is the most potent ROS-protective and DNA damage repair neuromediator, and tendentially increased protein expression of MT1, the melatonin receptor. Theophylline also increased the expression of keratin 15, the stem cell marker, in the epidermal basal layer but did not change mitochondrial activity or epidermal pigmentation. This ex vivo pilot study in human skin shows that theophylline possesses several interesting complex skin-protective properties. It encourages further examination of theophylline as a topical candidate for anti-ageing treatment. OBJECTIF: la théophylline est un inhibiteur de la phosphodiestérase actuellement utilisée en clinique pour le traitement de l’asthme. En outre, elle est reconnue comme étant un agent cosmétique ayant des propriétés potentiellement anti-âge et antioxydantes. Cependant, la manière dont elle affecte la peau chez l’homme est encore très peu étudiée. MÉTHODES: de la théophylline (10 ou 100 μM) a été ajoutée dans le milieu de culture d’un échantillon de peau humaine d’épaisseur totale ex vivo pendant 24 ou 72 h. RÉSULTATS: la théophylline a stimulé l’expression de la métallothionéine-1, une protéine antioxydante, et les taux d’ARNm du collagène I et III. L’évaluation immunohistologique de la fibrilline-1 a révélé une meilleure stabilité structurale des microfibrilles du derme. La théophylline a également exercé des effets protecteurs sur la matrice extracellulaire en diminuant les taux d’ARNm des métalloprotéinases matricielles MMP-2 et MMP-9, neutralisant en partie les effets de la ménadione, puissant donneur d’espèces réactives de l'oxygène (ROS) toxiques. En outre, elle a diminué l’apoptose des kératinocytes épidermiques stimulés par la ménadione. Fait intéressant, la théophylline a également augmenté le taux de mélatonine produite de manière intra-cutanée, la mélatonine étant le plus puissant neuromédiateur protecteur contre les ROS et réparateur des lésions de l’ADN. Elle a augmenté de façon tendancielle l’expression de la protéine MT1, récepteur de la mélatonine. La théophylline a également augmenté l’expression de la kératine 15, marqueur de cellules souches, dans la couche basale épidermique, mais n’a pas modifié l’activité mitochondriale ou la pigmentation épidermique. CONCLUSION: cette étude pilote ex vivo réalisée sur de la peau humaine montre que la théophylline a plusieurs propriétés protectrices de la peau complexes et intéressantes. Ces résultats encouragent à poursuivre l’étude de la théophylline en tant que candidat à un traitement local anti-âge."	"The acute kidney injury to chronic kidney disease transition in a mouse model of acute cardiorenal syndrome emphasizes the role of inflammation. Acute cardiorenal syndrome is a common complication of acute cardiovascular disease. Studies of acute kidney injury (AKI) to chronic kidney disease (CKD) transition, including patients suffering acute cardiovascular disease, report high rates of CKD development. Therefore, acute cardiorenal syndrome associates with CKD, but no study has established causation. To define this we used a murine cardiac arrest (CA) and cardiopulmonary resuscitation (CPR) model or sham procedure on male mice. CA was induced with potassium chloride while CPR consisted of chest compressions and epinephrine eight minutes later. Two weeks after AKI was induced by CA/CPR, the measured glomerular filtration rate (GFR) was not different from sham. However, after seven weeks the mice developed CKD, recapitulating clinical observations. One day, and one, two, and seven weeks after CA/CPR, the GFR was measured, and renal tissue sections were evaluated for various indices of injury and inflammation. One day after CA/CPR, acute cardiorenal syndrome was indicated by a significant reduction of the mean GFR (649 in sham, vs. 25 μL/min/100g in CA/CPR animals), KIM-1 positive tubules, and acute tubular necrosis. Renal inflammation developed, with F4/80 positive and CD3-positive cells infiltrating the kidney one day and one week after CA/CPR, respectively. Although there was functional recovery with normalization of GFR two weeks after CA/CPR, deposition of tubulointerstitial matrix proteins α-smooth muscle actin and fibrillin-1 progressed, along with a significantly reduced mean GFR (623 in sham vs. 409 μL/min/100g in CA/CPR animals), proteinuria, increased tissue transforming growth factor-β, and fibrosis establishing the development of CKD seven weeks after CA/CPR. Thus, murine CA/CPR, a model of acute cardiorenal syndrome, causes an AKI-CKD transition likely due to prolonged renal inflammation."	"Transcriptional characterisation of human lung cells identifies novel mesenchymal lineage markers. The lung mesenchyme gives rise to multiple distinct lineages of cells in the mature respiratory system, including smooth muscle cells of the airway and vasculature. However, a thorough understanding of the specification and mesenchymal cell diversity in the human lung is lacking. We completed single-cell RNA sequencing analysis of fetal human lung tissues. Canonical correlation analysis, clustering, cluster marker gene identification and t-distributed stochastic neighbour embedding representation was performed in Seurat. Cell populations were annotated using ToppFun. Immunohistochemistry and in situ hybridisation were used to validate spatiotemporal gene expression patterns for key marker genes. We identified molecularly distinct populations representing &quot;committed&quot; fetal human lung endothelial cells, pericytes and smooth muscle cells. Early endothelial lineages expressed &quot;classic&quot; endothelial cell markers (platelet endothelial cell adhesion molecule/CD31 and claudin 5), while pericytes expressed platelet-derived growth factor receptor-β, Thy-1 membrane glycoprotein and basement membrane molecules (collagen IV, laminin and proteoglycans). We observed a large population of &quot;nonspecific&quot; human lung mesenchymal progenitor cells characterised by expression of collagen I and multiple elastin fibre genes (ELN, MFAP2 and FBN1). We closely characterised the diversity of mesenchymal lineages defined by α2-smooth muscle actin (ACTA2) expression. Two cell populations, with the highest levels of ACTA2 transcriptional activity, expressed unique sets of markers associated with airway or vascular smooth muscle cells. Spatiotemporal analysis of these marker genes confirmed early and persistent spatial specification of airway (HHIP, MYLK and IGF1) and vascular (NTRK3 and MEF2C) smooth muscle cells in the developing human lung. Our data suggest that specification of distinct airway and vascular smooth muscle cell phenotypes is established early in development and can be identified using the markers we provide."	"A de novo frameshift FGFR1 mutation extending the protein in an individual with multiple epiphyseal dysplasia and hypogonadotropic hypogonadism without anosmia. Multiple epiphyseal dysplasia (MED) is a genetically and clinically heterogeneous disease with both dominant and recessive inheritance. Eight different genes are known to cause the disease but in 15% of cases of MED, no mutation is found. Fibroblast growth factor receptor 1 (FGFR1) is a crucial regulator of bone formation and when mutated, can cause diseases with skeletal manifestations; nevertheless, MED has not been described in individuals with FGFR1 mutations. In this report, we describe a proband with MED and congenital normosmic hypogonadotropic hypogonadism (HH). DNA analysis showed a de novo frameshift variant in FGFR1 likely explaining the HH (p.Arg852Thrfs*165). No other mutation was found after a large gene sequencing panel, exome sequencing and an array CGH, except for a variant of unknown significance in FBN1 (rs755375255), but there were no features of a disease associated with FBN1 mutations and this variant is found a few times in population databases. We thus discuss the possibility that MED might be a new skeletal feature associated with FGFR1 mutations."	"DNA hypermethylation is associated with invasive phenotype of malignant melanoma. Tumor cell invasion is one of the key processes during cancer progression, leading to life-threatening metastatic lesions in melanoma. As methylation of cancer-related genes plays a fundamental role during tumorigenesis and may lead to cellular plasticity which promotes invasion, our aim was to identify novel epigenetic markers on selected invasive melanoma cells. Using Illumina BeadChip assays and Affymetrix Human Gene 1.0 microarrays, we explored the DNA methylation landscape of selected invasive melanoma cells and examined the impact of DNA methylation on gene expression patterns. Our data revealed predominantly hypermethylated genes in the invasive cells affecting the neural crest differentiation pathway and regulation of the actin cytoskeleton. Integrative analysis of the methylation and gene expression profiles resulted in a cohort of hypermethylated genes (IL12RB2, LYPD6B, CHL1, SLC9A3, BAALC, FAM213A, SORCS1, GPR158, FBN1 and ADORA2B) with decreased expression. On the other hand, hypermethylation in the gene body of the EGFR and RBP4 genes was positively correlated with overexpression of the genes. We identified several methylation changes that can have role during melanoma progression, including hypermethylation of the promoter regions of the ARHGAP22 and NAV2 genes that are commonly altered in locally invasive primary melanomas as well as during metastasis. Interestingly, the down-regulation of the methylcytosine dioxygenase TET2 gene, which regulates DNA methylation, was associated with hypermethylated promoter region of the gene. This can probably lead to the observed global hypermethylation pattern of invasive cells and might be one of the key changes during the development of malignant melanoma cells."	"Lack of FIBRILLIN6 in Arabidopsis thaliana affects light acclimation and sulfate metabolism. Arabidopsis thaliana contains 13 fibrillins (FBNs), which are all localized to chloroplasts. FBN1 and FBN2 are involved in photoprotection of photosystem II, and FBN4 and FBN5 are thought to be involved in plastoquinone transport and biosynthesis, respectively. The functions of the other FBNs remain largely unknown. To gain insight into the function of FBN6, we performed coexpression and Western analyses, conducted fluorescence and transmission electron microscopy, stained reactive oxygen species (ROS), measured photosynthetic parameters and glutathione levels, and applied transcriptomics and metabolomics. Using coexpression analyses, FBN6 was identified as a photosynthesis-associated gene. FBN6 is localized to thylakoid and envelope membranes, and its knockout results in stunted plants. The delayed-growth phenotype cannot be attributed to altered basic photosynthesis parameters or a reduced CO2 assimilation rate. Under moderate light stress, primary leaves of fbn6 plants begin to bleach and contain enlarged plastoglobules. RNA sequencing and metabolomics analyses point to an alteration in sulfate reduction in fbn6. Indeed, glutathione content is higher in fbn6, which in turn confers cadmium tolerance of fbn6 seedlings. We conclude that loss of FBN6 leads to perturbation of ROS homeostasis. FBN6 enables plants to cope with moderate light stress and affects cadmium tolerance."	"A novel multifunctional skin care formulation with a unique blend of antipollution, brightening and antiaging active complexes. High demand on anti-aging skin care encourage the improvement and development of more personalized formulations with additional benefits for general skin health and age associated skin signs. The skin aging physical and biological phenotypes manifest differently between diverse ethnic populations. A highly polluted environment can be viewed as an extrinsic factor accelerating the skin aging process. To develop a unique formula with active complexes, having multifunctional effects for anti-pollution, brightening and anti-aging/barrier strengthening purposes with confirmed activities in vitro and ex vivo skin models, suitable for polluted skin. In vitro culture model with primary human skin cells, ex vivo studies with full-thickness human skin, melanocyte 3D coculture model, gene expression of epidermal and dermal genes, anti-glycation, proteasomal activity, melanin, and cytokine assays. In vitro and ex vivo studies clearly demonstrated that diglucosyl gallic acid (active A) and the formulation complex inhibited pollution mediated MMP1 protein, CYP1A1 gene expression, and IL-6 protein secretion, while caprylic/capric triglyceride, diacetyl boldine (active B) had anti-melanogenic effect in in vitro primary melanocyte monoculture and 3D spheroid model. Another active compound, acetyl dipeptide 1 cetyl ester (active D), significantly upregulated epidermal barrier genes (Aquaporin 3 [AQP3], Filaggrin [FLG], caspase 14, and keratin 10) in human primary keratinocytes. Interestingly, both acetyl dipeptide 1 cetyl ester (active D) and niacinamide (active C) improved dermal gene expression (fibrillin-1, Collagen type 1 alpha 1, Decorin, Lysyl oxidase-like 1) and, moreover, had significant anti-glycant and proteasomal promoter activity in human primary fibroblasts. Considering consumers need in heavily polluted areas, we developed a multipurpose formulation comprised of unique active complexes toward pollution, pollution induced inflammation, skin brightening, and antiaging concerns with beneficial results demonstrated by in vitro and ex vivo studies."	"Tissue stiffness at the human maternal-fetal interface. What is the stiffness (elastic modulus) of human nonpregnant secretory phase endometrium, first trimester decidua, and placenta? The stiffness of decidua basalis, the site of placental invasion, was an order of magnitude higher at 103 Pa compared to 102 Pa for decidua parietalis, nonpregnant endometrium and placenta. Mechanical forces have profound effects on cell behavior, regulating both cell differentiation and migration. Despite their importance, very little is known about their effects on blastocyst implantation and trophoblast migration during placental development because of the lack of mechanical characterization at the human maternal-fetal interface. An observational study was conducted to measure the stiffness of ex vivo samples of human nonpregnant secretory endometrium (N = 5) and first trimester decidua basalis (N = 6), decidua parietalis (N = 5), and placenta (N = 5). The stiffness of the artificial extracellular matrix (ECM), Matrigel®, commonly used to study migration of extravillous trophoblast (EVT) in three dimensions and to culture endometrial and placental organoids, was also determined (N = 5). Atomic force microscopy was used to perform ex vivo direct measurements to determine the stiffness of fresh tissue samples. Decidua was stained by immunohistochemistry (IHC) for HLA-G+ EVT to confirm whether samples were decidua basalis or decidua parietalis. Endometrium was stained with hematoxylin and eosin to confirm the presence of luminal epithelium. Single-cell RNA sequencing data were analyzed to determine expression of ECM transcripts by decidual and placental cells. Fibrillin 1, a protein identified by these data, was stained by IHC in decidua basalis. We observed that decidua basalis was significantly stiffer than decidua parietalis, at 1250 and 171 Pa, respectively (P &lt; 0.05). The stiffness of decidua parietalis was similar to nonpregnant endometrium and placental tissue (250 and 232 Pa, respectively). These findings suggest that it is the presence of invading EVT that is driving the increase in stiffness in decidua basalis. The stiffness of Matrigel® was found to be 331 Pa, significantly lower than decidua basalis (P &lt; 0.05). N/A. Tissue stiffness was derived by ex vivo measurements on blocks of fresh tissue in the absence of blood flow. The nonpregnant endometrium samples were obtained from women undergoing treatment for infertility. These may not reflect the stiffness of endometrium from normal fertile women. These results provide direct measurements of tissue stiffness during the window of implantation and first trimester of human pregnancy. They serve as a basis of future studies exploring the impact of mechanics on embryo implantation and development of the placenta. The findings provide important baseline data to inform matrix stiffness requirements when developing in vitro models of trophoblast stem cell development and migration that more closely resemble the decidua in vivo. This work was supported by the Centre for Trophoblast Research, the Wellcome Trust (090108/Z/09/Z, 085992/Z/08/Z), the Medical Research Council (MR/P001092/1), the European Research Council (772426), an Engineering and Physical Sciences Research Council Doctoral Training Award (1354760), a UK Medical Research Council and Sackler Foundation Doctoral Training Grant (RG70550) and a Wellcome Trust Doctoral Studentship (215226/Z/19/Z)."	"Regulation by walnut protein hydrolysate on the components and structural degradation of photoaged skin in SD rats. Skin photoaging induced by consecutive exposure of skin to ultraviolet radiation is primarily responsible for skin aging and preparation of food-derived ingredients with anti-aging functions has been the hot topic worldwide. Dietary consumption of food supplements has been found to modulate skin functions and can be useful in the prevention of skin aging. To evaluate the effect of walnut protein hydrolysate (WPH) on photoaged skin, Sprague-Dawley rats (SD rats) were orally administered with WPH and then were regularly exposed to ultraviolet radiation (UV-R). After a consecutive UV-R for 18 weeks, the delaying efficiency of WPH against elasticity degradation was examined and the mechanical mechanism was explored subsequently. The contents of hydroxyproline (Hyp) and hyaluronic acid (HA) in the extracellular matrix (ECM) were measured by biochemical reactions and color rendering procedures; the levels of types I and III collagen (Col I and III) and the activity of matrix metalloproteinase-1 (MMP-1) were detected by enzyme-linked immunosorbent assay (ELISA); the protein levels of elastin and fibrillin-1 were examined by western blotting. Moreover, the histological change in the skin structure was illustrated by hematoxylin &amp; eosin (HE) and Masson staining. The results revealed that WPH evidently enhanced the elasticity of photoaged skin and stimulated the biosynthesis of ECM components Col I, Hyp and HA in the dermal layer; meanwhile WPH inhibited the MMP-1 activity, alleviated epidermal hyperplasia, and repaired the damaged skin mechanical structure in a dose-dependent manner. In particular, in comparison with the UV-R group, the WPH group in which WPH was administered at a high-dose level showed significantly improved skin appearance, ECM components and structure (P &lt; 0.05). Taken together, the elasticity improvement caused by WPH against the skin photoaging process can be attributed to the regulation of the metabolism of the components and repair of the damaged mechanical structure of the ECM. This research proved the potential of WPH as a functional ingredient for the development of anti-photoaging foods."	"Fibulin-4 exerts a dual role in LTBP-4L-mediated matrix assembly and function. Elastogenesis is a hierarchical process by which cells form functional elastic fibers, providing elasticity and the ability to regulate growth factor bioavailability in tissues, including blood vessels, lung, and skin. This process requires accessory proteins, including fibulin-4 and -5, and latent TGF binding protein (LTBP)-4. Our data demonstrate mechanisms in elastogenesis, focusing on the interaction and functional interdependence between fibulin-4 and LTBP-4L and its impact on matrix deposition and function. We show that LTBP-4L is not secreted in the expected extended structure based on its domain composition, but instead adopts a compact conformation. Interaction with fibulin-4 surprisingly induced a conformational switch from the compact to an elongated LTBP-4L structure. This conversion was only induced by fibulin-4 multimers associated with increased avidity for LTBP-4L; fibulin-4 monomers were inactive. The fibulin-4-induced conformational change caused functional consequences in LTBP-4L in terms of binding to other elastogenic proteins, including fibronectin and fibrillin-1, and of LTBP-4L assembly. A transient exposure of LTBP-4L with fibulin-4 was sufficient to stably induce conformational and functional changes; a stable complex was not required. These data define fibulin-4 as a molecular extracellular chaperone for LTBP-4L. The altered LTBP-4L conformation also promoted elastogenesis, but only in the presence of fibulin-4, which is required to escort tropoelastin onto the extended LTBP-4L molecule. Altogether, this study provides a dual mechanism for fibulin-4 in 1) inducing a stable conformational and functional change in LTBP-4L, and 2) promoting deposition of tropoelastin onto the elongated LTBP-4L."	"Association of Intracranial Aneurysms With Aortic Aneurysms in 125 Patients With Fusiform and 4253 Patients With Saccular Intracranial Aneurysms and Their Family Members and Population Controls. Background Varying degrees of co-occurrence of intracranial aneurysms (IA) and aortic aneurysms (AA) have been reported. We sought to compare the risk for AA in fusiform intracranial aneurysms (fIA) and saccular intracranial aneurysms (sIA) disease and evaluate possible genetic connection between the fIA disease and AAs. Additionally, the characteristics and aneurysms of the fIA and sIA patients were compared. Methods and Results The Kuopio Intracranial Aneurysm Database includes all 4253 sIA and 125 fIA patients from its Eastern Finnish catchment population, and 13 009 matched population controls and 18 455 first-degree relatives to the IA patients were identified, and the Finnish national registers were used to identify the individuals with AA. A total of 33 fIA patients were studied using an exomic gene panel of 37 genes associated with AAs. Seventeen (14.4%) fIA patients and 48 (1.2%) sIA patients had a diagnosis of AA. Both fIA and sIA patients had AAs significantly more often than their controls (1.2% and 0.5%) or relatives (0.9% and 0.3%). In a competing risks Cox regression model, the presence of fIA was the strongest risk factor for AA (subdistribution hazard ratio 7.6, 95% CI 3.9-14.9, P&lt;0.0005). One likely pathogenic variant in COL5A2 and 3 variants of unknown significance were identified in MYH11, COL11A1, and FBN1 in 4 fIA patients. Conclusions The prevalence of AAs is increased slightly in sIA patients and significantly in fIA patients. fIA patients are older and have more comorbid diseases than sIA patients but this alone does not explain their clinically significant AA risk."	"A FBN1 variant manifesting as non-syndromic ectopia lentis with retinal detachment: clinical and genetic characteristics. Fibrillin-1 (FBN1) mutations cause connective tissue dysgenesis the main ocular manifestation being ectopia lentis (EL), which may be syndromic or non-syndromic. We describe a pedigree with a FBN1 mutation causing non-syndromic EL with retinal detachment (RRD) and their management. Patients with familial EL with RRD were invited to participate (vitreoretinopathy branch of Target 5000, the Irish inherited retinal degeneration study). All patients signed full informed consent. The study was approved by the Institutional Review Board of the Mater Hospital, Dublin and abided by the Declaration of Helsinki. Seven adults were affected with bilateral EL. All subjects had RRD with bilateral non-synchronous RRD in 57%. The FBN1 variant described herein confers an increased risk of both EL and RRD and can now be upgraded to 'pathogenic' ACMG status."	"Geleophysic dysplasia: novel missense variants and insights into ADAMTSL2 intracellular trafficking. Geleophysic dysplasia (GPHYSD1, MIM231050; GPHYSD2, MIM614185; GPHYSD3, MIM617809) is an autosomal disorder characterized by short-limb dwarfism, brachydactyly, cardiac valvular disease, and laryngotracheal stenosis. Mutations in ADAMTSL2, FBN1, and LTBP3 genes are responsible for this condition. We found that three previously described cases of GPHYSD diagnosed clinically were homozygote or compound heterozygotes for five ADAMTSL2 variants, four of which not being previously reported. By electron microscopy, skin fibroblasts available in one case homozygote for an ADAMTSL2 variant showed a defective intracellular localization of mutant ADAMTSL2 protein that did not accumulate within lysosome-like intra-cytoplasmic inclusions. Moreover, this mutant ADAMTSL2 protein was less secreted in medium and resulted in increased SMAD2 phosphorylation in transfected HEK293 cells."	"Variant filtering, digenic variants, and other challenges in clinical sequencing: a lesson from fibrillinopathies. Genome-scale high-throughput sequencing enables the detection of unprecedented numbers of sequence variants. Variant filtering and interpretation are facilitated by mutation databases, in silico tools, and population-based reference datasets such as ExAC/gnomAD, while variants are classified using the ACMG/AMP guidelines. These methods, however, pose clinically relevant challenges. We queried the gnomAD dataset for (likely) pathogenic variants in genes causing autosomal-dominant disorders. Furthermore, focusing on the fibrillinopathies Marfan syndrome (MFS) and congenital contractural arachnodactyly (CCA), we screened 500 genomes of our patients for co-occurring variants in FBN1 and FBN2. In gnomAD, we detected 2653 (likely) pathogenic variants in 253 genes associated with autosomal-dominant disorders, enabling the estimation of variant-filtering thresholds and disease predisposition/prevalence rates. In our database, we discovered two families with hitherto unreported co-occurrence of FBN1/FBN2 variants causing phenotypes with mixed or modified MFS/CCA clinical features. We show that (likely) pathogenic gnomAD variants may be more frequent than expected and are challenging to classify according to the ACMG/AMP guidelines as well as that fibrillinopathies are likely underdiagnosed and may co-occur. Consequently, selection of appropriate frequency cutoffs, recognition of digenic variants, and variant classification represent considerable challenges in variant interpretation. Neglecting these challenges may lead to incomplete or missed diagnoses."	"Alterations in phenotype and gene expression of adult human aneurysmal smooth muscle cells by exogenous nitric oxide. Abdominal aortic aneurysms (AAA) are characterized by matrix remodeling, elastin degradation, absence of nitric oxide (NO) signaling, and inflammation, influencing smooth muscle cell (SMC) phenotype and gene expression. Little is known about the biomolecular release and intrinsic biomechanics of human AAA-SMCs. NO delivery could be an attractive therapeutic strategy to restore lost functionality of AAA-SMCs by inhibiting inflammation and cell stiffening. We aim to establish the differences in phenotype and gene expression of adult human AAA-SMCs from healthy SMCs. Based on our previous study which showed benefits of optimal NO dosage delivered via S-Nitrosoglutathione (GSNO) to healthy aortic SMCs, we tested whether such benefits would occur in AAA-SMCs. The mRNA expression of three genes involved in matrix degradation (ACE, ADAMTS5 and ADAMTS8) was significantly downregulated in AAA-SMCs. Total protein and glycosaminoglycans synthesis were higher in AAA-SMCs than healthy-SMCs (p &lt; 0.05 for AAA-vs. healthy- SMC cultures) and was enhanced by GSNO and 3D cultures (p &lt; 0.05 for 3D vs. 2D cultures; p &lt; 0.05 for GSNO vs. non-GSNO cases). Elastin gene expression, synthesis and deposition, desmosine crosslinker levels, and lysyl oxidase (LOX) functional activity were lower, while cell proliferation, iNOS, LOX and fibrillin-1 gene expressions were higher in AAA-SMCs (p &lt; 0.05 between respective cases), with differential benefits from GSNO exposure. GSNO and 3D cultures reduced MMPs -2, -9, and increased TIMP-1 release in AAA-SMC cultures (p &lt; 0.05 for GSNO vs. non-GSNO cultures). AAA-SMCs were inherently stiffer and had smoother surface than healthy SMCs (p &lt; 0.01 in both cases), but GSNO reduced stiffness (~25%; p &lt; 0.01) and increased roughness (p &lt; 0.05) of both cell types. In conclusion, exogenously-delivered NO offers an attractive strategy by providing therapeutic benefits to AAA-SMCs."	"Novel FBN1 Heterozygous Mutations Identified in Chinese Families with Marfan Syndrome. To detect the mutations in the fibronectin-1 gene (FBN1) of four Chinese families with autosomal dominant Marfan syndrome (MFS), and to discuss the associated phenotypes. We examined ten patients, and five non-carriers, in four Chinese families with autosomal dominant Marfan syndrome (MFS) for FBN1 mutations. Comprehensive physical, ophthalmic, and cardiovascular examinations were performed on the family members. The FBN1 gene was amplified with PCR from the DNA of the patients and their relatives. The amplified products were sequenced and compared with a reference sequence from the GenBank database. The changes in the structure and function of the protein caused by the amino acid substitution were investigated with a bioinformatics analysis. In our study, sequencing FBN1 revealed three novel mutations, and one mutation which was found earlier in 2012. One of the novel mutations is c.649T&gt;C in exon 7, which results in the substitution tryptophan by arginine at codon 217 (p.Trp217Arg), the other is a splice defect in intron 39 (c.4816+1G&gt;A), and the third one is c.407G&gt;T in exon 5, which altered an amino acid at residue 136 from Cysteine to Phenylalanine (p.Cys136Phe). The recurrent mutation was c.4151T&gt;C in exon 34, resulting in methionine being replaced by threonine (p.Met1384Thr). The occurrence of the mutations correlated strongly with the phenotypes of the patients, and no mutation was detected in the normal relatives of the affected patients. In this study, three novel and a recurrent FBN1 mutations were detected. The results expand the mutation spectrum of FBN1, helping in the study of molecular pathogenesis of MFS and Marfan-related disorders."	"Molecular and clinical analysis of Chinese patients with anaplastic lymphoma kinase (ALK)-rearranged non-small cell lung cancer. Anaplastic lymphoma kinase (ALK) fusions have been recognized as a therapeutic target in non-small cell lung cancer (NSCLC). However, molecular signatures and clinical characteristics of the Chinese population with ALK-rearranged NSCLC are not well elucidated. In the present study, we carried out targeted next-generation sequencing on tissue and plasma ctDNA samples in 1688 patients with NSCLC. Overall, ALK fusions were detected in 70 patients (4.1%), and the frequencies of ALK fusions detected in tissue and plasma samples were 5.1% and 3.3%, respectively. Additionally, the prevalence of breakpoint locations for EML4-ALK fusions in ctDNA was significantly correlated with that in tumor tissues (R<sup>2</sup> = .91, P = .045). According to age, the incidence rates of ALK fusions among young (age &lt;45 years), middle-aged (between 45 and 70 years) and elderly (&gt;70 years) patients were significantly different (P &lt; .001). In 70 ALK-rearranged cases, coexistence of epidermal growth factor receptor (EGFR) alterations and ALK fusions was detected in 12 cases (17.1%) and EGFR mutations tended to coexist with non-EML4-ALK rearrangements. Notably, novel ALK fusion partners, including TRIM66, SWAP70, WNK3, ERC1, TCF12 and FBN1 were identified in the present study. Among EML4-ALK fusion variants, patients with variant V1 were younger than patients with variant V3 (P = .023), and TP53 mutations were more frequently concurrent with variant V3 compared with variant V1 (P = .009). In conclusion, these findings provide new insights into the molecular-clinical profiles of patients with ALK-rearranged NSCLC that may improve the treatment strategy of this population."	"How do baseline aortic root diameter, age and fibrillin-1 mutation affect the pooled effect of losartan on aortic dilatation? NA"	"MiR-574-5p: A Circulating Marker of Thoracic Aortic Aneurysm. Thoracic aortic aneurysm (TAA) can lead to fatal complications such as aortic dissection. Since aneurysm dimension poorly predicts dissection risk, microRNAs (miRNAs) may be useful to diagnose or risk stratify TAA patients. We aim to identify miRNAs associated with TAA pathogenesis and that are possibly able to improve TAA diagnosis. MiRNA microarray experiments of aortic media tissue samples from 19 TAA patients and 19 controls allowed identifying 232 differentially expressed miRNAs. Using interaction networks between these miRNAs and 690 genes associated with TAA, we identified miR-574-5p as a potential contributor of TAA pathogenesis. Interestingly, miR-574-5p was significantly down-regulated in the TAA tissue compared to the controls, but was up-regulated in serum samples from a separate group of 28 TAA patients compared to 20 controls (p &lt; 0.001). MiR-574-5p serum levels discriminated TAA patients from controls with an area under the receiver operating characteristic curve of 0.87. In the Fbn1<sup>C1041G/+</sup> mouse model, miR-574-5p was down-regulated in aortic tissue compared to wild-type (p &lt; 0.05), and up-regulated in plasma extracellular vesicles from Fbn1<sup>C1041G/+</sup> mice compared to wild-type mice (p &lt; 0.05). Furthermore, in vascular smooth muscle cells, angiotensin II appears to induce miR-574-5p secretion in extracellular vesicles. In conclusion, miR-574-5p is associated with TAA pathogenesis and may help in diagnosing this disease."	"Anatomically specific reactive oxygen species production participates in Marfan syndrome aneurysm formation. Marfan syndrome (MFS) is a connective tissue disorder that results in aortic root aneurysm formation. Reactive oxygen species (ROS) seem to play a role in aortic wall remodelling in MFS, although the mechanism remains unknown. MFS Fbn1<sup>C1039G/+</sup> mouse root/ascending (AS) and descending (DES) aortic samples were examined using DHE staining, lucigenin-enhanced chemiluminescence (LGCL), Verhoeff's elastin-Van Gieson staining (elastin breakdown) and in situ zymography for protease activity. Fbn1<sup>C1039G/+</sup> AS- or DES-derived smooth muscle cells (SMC) were treated with anti-TGF-β antibody, angiotensin II (AngII), anti-TGF-β antibody + AngII, or isotype control. ROS were detected during early aneurysm formation in the Fbn1<sup>C1039G/+</sup> AS aorta, but absent in normal-sized DES aorta. Fbn1<sup>C1039G/+</sup> mice treated with the unspecific NADPH oxidase inhibitor, apocynin reduced AS aneurysm formation, with attenuated elastin fragmentation. In situ zymography revealed apocynin treatment decreased protease activity. In vitro SMC studies showed Fbn1<sup>C1039G/+</sup> -derived AS SMC had increased NADPH activity compared to DES-derived SMC. AS SMC NADPH activity increased with AngII treatment and appeared TGF-β dependent. In conclusion, ROS play a role in MFS aneurysm development and correspond anatomically with aneurysmal aortic segments. ROS inhibition via apocynin treatment attenuates MFS aneurysm progression. AngII enhances ROS production in MFS AS SMCs and is likely TGF-β dependent."	"Recent updates on the molecular network of elastic fiber formation. Elastic fibers confer elasticity and recoiling to tissues and organs and play an essential role in induction of biochemical responses in a cell against mechanical forces derived from the microenvironment. The core component of elastic fibers is elastin (ELN), which is secreted as the monomer tropoelastin from elastogenic cells, and undergoes self-aggregation, cross-linking and deposition on to microfibrils, and assemble into insoluble ELN polymers. For elastic fibers to form, a microfibril scaffold (primarily formed by fibrillin-1 (FBN1)) is required. Numerous elastic fiber-associated proteins are involved in each step of elastogenesis and they instruct and/or facilitate the elastogenesis processes. In this review, we designated five proteins as key molecules in elastic fiber formation, including ELN, FBN1, fibulin-4 (FBLN4), fibulin-5 (FBLN5), and latent TGFβ-binding protein-4 (LTBP4). ELN and FBN1 serve as building blocks for elastic fibers. FBLN5, FBLN4 and LTBP4 have been demonstrated to play crucial roles in elastogenesis through knockout studies in mice. Using these molecules as a platform and expanding the elastic fiber network through the generation of an interactome map, we provide a concise review of elastogenesis with a recent update as well as discuss various biological functions of elastic fiber-associated proteins beyond elastogenesis in vivo."	"CRISPR/Cas9 Delivery Mediated with Hydroxyl-Rich Nanosystems for Gene Editing in Aorta. A CRISPR/Cas9 system has emerged as a powerful tool for gene editing to treat genetic mutation related diseases. Due to the complete endothelial barrier, effective delivery of the CRISPR/Cas9 system to vasculatures remains a challenge for in vivo gene editing of genetic vascular diseases especially in aorta. Herein, it is reported that CHO-PGEA (cholesterol (CHO)-terminated ethanolamine-aminated poly(glycidyl methacrylate)) with rich hydroxyl groups can deliver a plasmid based pCas9-sgFbn1 system for the knockout of exon 10 in Fbn1 gene. This is the first report of a polycation-mediated CRISPR/Cas9 system for gene editing in aorta of adult mice. CHO-PGEA/pCas9-sgFbn1 nanosystems can effectively contribute to the knockout of exon 10 in Fbn1 in vascular smooth muscle cells in vitro, which leads to the change of the phosphorylation of Smad2/3 and the increased expression of two downstream signals of Fbn1: Mmp-2 and Ctgf. For in vivo application, the aortic enrichment of CHO-PGEA/Cas9-sgFbn1 is achieved by administering a pressor dose of angiotensin II (Ang II). The effects of the pCas9-sgFbn1 system targeting Fbn1 demonstrate an increase in the expression of Mmp-2 and Ctgf in aorta. Thus, the combination of CHO-PGEA/pCas9-sgFbn1 nanosystems with Ang II infusion can provide the possibility for in vivo gene editing in aorta."	"Marfan syndrome in childhood: parents' perspectives of the impact on daily functioning of children, parents and family; a qualitative study. Marfan syndrome (MFS) is a heritable connective tissue disease caused by a defect in FBN1. The diagnosis is based on the revised Ghent criteria. The main features involve the cardiovascular, musculoskeletal, ophthalmic, pulmonary systems and facial features. Although the clinical manifestations of MFS in children are thoroughly addressed in several studies, literature on the impact of MFS on daily functioning is restricted to pediatric advice on sports and leisure participation. Therefore, the full impact of MFS on daily functioning remains unclear. The aim of this qualitative study was to explore parents' perspectives on the impact of MFS on daily functioning of children with MFS aged 4-12 years, themselves and family regarding functional performance, activities, participation, personal and environmental factors, and disease burden. In this qualitative study parents participated in individual semi-structured interviews (n = 10) and 3 focus groups (n = 5, n = 5 and n = 6). Meetings were transcribed, and data were analyzed using thematic analysis. Meaningful concepts were coded, and concepts concerning children with MFS were linked to the International Classification of Functioning, Disability and Health for Children and Youth. Thereafter themes were identified and interpreted. Parents reported their children could not keep up with peers because of fatigue, pain and physical impairments. Children experienced participation restrictions in school, sports, play and other leisure activities. Parents reported their child as being different due to physical appearance, which provoked unsupportive attitudes. Parental burden was caused by high care needs, lack of support, a limited social life, and concerns about the child's development. Family burden was caused by adjusted and complex family schedules, other family members with MFS, and reproductive planning decision-making, whereas family cohesiveness and caring were positively perceived factors. Parents perceived a large impact of MFS on daily functioning of their children with MFS, themselves and their family. More awareness among all professionals involved in the care of children with MFS and their families is needed so that professionals can address their support needs and provide tailored interventions, rehabilitation and/or educational programs to empower and improve daily functioning of the children, parents and family."	"Skin fibroblasts of patients with geleophysic dysplasia due to FBN1 mutations have lysosomal inclusions and losartan improves their microfibril deposition defect. Geleophysic dysplasia (GPHYSD) is a disorder characterized by dysmorphic features, stiff joints and cardiac involvement due to defects of TGF-β signaling. GPHYSD can be caused by mutations in FBN1, ADAMTLS2, and LTBP3 genes. Consistent with previous reports, we found intracellular inclusions of unknown material by electron microscopy (EM) in skin fibroblasts of two GPHYSD individuals carrying FBN1 mutations. Moreover, we found that the storage material is enclosed within lysosomes and is associated with the upregulation of several lysosomal genes. Treatment of GPHYSD fibroblasts carrying FBN1 mutations with the angiotensin II receptor type 1 inhibitor losartan that inhibits TGF-β signaling did not reduce the storage but improved the extracellular deposition of fibrillin-1 microfibrils. Losartan is a promising candidate drug for treatment of GPHYSD due to FBN1 defects."	"Secondary crest myofibroblast PDGFRα controls the elastogenesis pathway via a secondary tier of signaling networks during alveologenesis. Postnatal alveolar formation is the most important and the least understood phase of lung development. Alveolar pathologies are prominent in neonatal and adult lung diseases. The mechanisms of alveologenesis remain largely unknown. We inactivated Pdgfra postnatally in secondary crest myofibroblasts (SCMF), a subpopulation of lung mesenchymal cells. Lack of Pdgfra arrested alveologenesis akin to bronchopulmonary dysplasia (BPD), a neonatal chronic lung disease. The transcriptome of mutant SCMF revealed 1808 altered genes encoding transcription factors, signaling and extracellular matrix molecules. Elastin mRNA was reduced, and its distribution was abnormal. Absence of Pdgfra disrupted expression of elastogenic genes, including members of the Lox, Fbn and Fbln families. Expression of EGF family members increased when Tgfb1 was repressed in mouse. Similar, but not identical, results were found in human BPD lung samples. In vitro, blocking PDGF signaling decreased elastogenic gene expression associated with increased Egf and decreased Tgfb family mRNAs. The effect was reversible by inhibiting EGF or activating TGFβ signaling. These observations demonstrate the previously unappreciated postnatal role of PDGFA/PDGFRα in controlling elastogenic gene expression via a secondary tier of signaling networks composed of EGF and TGFβ."	"Glycoproteomic Analysis of the Aortic Extracellular Matrix in Marfan Patients. Marfan syndrome (MFS) is caused by mutations in FBN1 (fibrillin-1), an extracellular matrix (ECM) component, which is modified post-translationally by glycosylation. This study aimed to characterize the glycoproteome of the aortic ECM from patients with MFS and relate it to aortopathy. Approach and Results: ECM extracts of aneurysmal ascending aortic tissue from patients with and without MFS were enriched for glycopeptides. Direct N-glycopeptide analysis by mass spectrometry identified 141 glycoforms from 47 glycosites within 35 glycoproteins in the human aortic ECM. Notably, MFAP4 (microfibril-associated glycoprotein 4) showed increased and more diverse N-glycosylation in patients with MFS compared with control patients. MFAP4 mRNA levels were markedly higher in MFS aortic tissue. MFAP4 protein levels were also increased at the predilection (convexity) site for ascending aorta aneurysm in bicuspid aortic valve patients, preceding aortic dilatation. In human aortic smooth muscle cells, MFAP4 mRNA expression was induced by TGF (transforming growth factor)-β1 whereas siRNA knockdown of MFAP4 decreased FBN1 but increased elastin expression. These ECM changes were accompanied by differential gene expression and protein abundance of proteases from ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) family and their proteoglycan substrates, respectively. Finally, high plasma MFAP4 concentrations in patients with MFS were associated with a lower thoracic descending aorta distensibility and greater incidence of type B aortic dissection during 68 months follow-up. Our glycoproteomics analysis revealed that MFAP4 glycosylation is enhanced, as well as its expression during the advanced, aneurysmal stages of MFS compared with control aneurysms from patients without MFS."	"Proteomics reveals a set of highly enriched proteins in epiretinal membrane compared with inner limiting membrane. Few data exist regarding the protein composition of idiopathic epiretinal membrane (iERM). In the present study we compared the proteome of epiretinal membrane of iERM with the proteome of the inner limiting membrane (ILM) of idiopathic macular hole (iMH). Twelve epiretinal membrane samples were obtained from patients with iERM undergoing therapeutic vitrectomy. Twelve ILM samples from patients with iMH were used as controls. Proteomic analysis was conducted with discovery-based label-free quantitative nano-liquid chromatography - tandem mass spectrometry (LFQ nLC-MS/MS). Verification of results was performed with targeted MS using selected reaction monitoring on a different set of samples. Discovery data were searched against the Uniprot Homo sapiens protein database using MaxQuant Software. Identified proteins were filtered with Perseus software. Bioinformatic analysis of the differences in protein expression between epiretinal membrane from iERM and ILM from iMH was performed using STRING. A total of 2,183 different proteins were identified. 357 proteins were found to be present in all samples. The protein profile of iERM was highly different from iMH with 62 proteins found at significantly higher levels in iERM. The proteins upregulated more than 10-fold in iERM were: fibrillin-1, tenascin, prolargin, biglycan, opticin, collagen alpha-1(II) chain, protein-glutamine gamma-glutamyltransferase 2, fibronectin, filamin-A, collagen alpha-2(IX) chain, spectrin alpha chain, transforming growth factor beta induced protein ig-h3, dihydropyrimidinase - related protein 3, endoplasmin and glutamate dehydrogenase 1. Proteins with high level in iERM consisted of proteins that especially localized to the actin cytoskeleton, the extracellular matrix and the mitochondrion. Analysis of all proteins indicated that the disease process in iERM at least in part can be characterized as skin formation with perturbation of nucleotide metabolism. Our study identified proteins that have not earlier been associated with iERM. Fifteen proteins are found at very high concentration, 10-fold or more, and amongst these four proteins, fibrillin-1, tenascin, prolargin and biglycan were found at more than a 100-fold higher content compared to ILM of iMH. These proteins may be potential therapeutic targets. Data are available via ProteomeXchange with identifier PXD014286."	"Transforming Growth Factor β Receptor Type I Inhibitor, Galunisertib, Has No Beneficial Effects on Aneurysmal Pathological Changes in Marfan Mice. Marfan syndrome (MFS), a connective tissue disorder caused by mutations in the fibrillin-1 (Fbn1) gene, has vascular manifestations including aortic aneurysm, dissection, and rupture. Its vascular pathogenesis is assumed to be attributed to increased transforming growth factor β (TGFβ) signaling and blockade of excessive TGFβ signaling has been thought to prevent dissection and aneurysm formation. Here, we investigated whether galunisertib, a potent small-molecule inhibitor of TGFβ receptor I (TβRI), attenuates aneurysmal disease in a murine model of MFS (Fbn1<sup>C1039G/+</sup>) and compared the impact of galuninsertib on the MFS-related vascular pathogenesis with that of losartan, a prophylactic agent routinely used for patients with MFS. Fbn1<sup>C1039G/+</sup> mice were administered galunisertib or losartan for 8 weeks, and their ascending aortas were assessed for histopathological changes and phosphorylation of Smad2 and extracellular signal-regulated kinase 1/2 (Erk1/2). Mice treated with galunisertib or losartan barely exhibited phosphorylated Smad2, suggesting that both drugs effectively blocked overactivated canonical TGFβ signaling in Fbn1<sup>C1039G/+</sup> mice. However, galunisertib treatment did not attenuate disrupted medial wall architecture and only partially decreased Erk1/2 phosphorylation, whereas losartan significantly inhibited MFS-associated aortopathy and markedly decreased Erk1/2 phosphorylation in Fbn1<sup>C1039G/+</sup> mice. These data unexpectedly revealed that galunisertib, a TβRI inhibitor, showed no benefits in aneurysmal disease in MFS mice although it completely blocked Smad2 phosphorylation. The significant losartaninduced inhibition of both aortic vascular pathogenesis and Smad2 phosphorylation implied that canonical TGFβ signaling might not prominently drive aneurysmal diseases in MFS mice."	"Detection of ten novel FBN1 mutations in Chinese patients with typical or incomplete Marfan syndrome and an overview of the genotype-phenotype correlations. The aim of this study is to identify the mutation spectrum of FBN1 in patients with Marfan syndrome (MFS) or Marfan-Like Phenotypes and to analyze the genotype-phenotype correlations of existing literature. A total of 21 unrelated patients with a definite or suspected clinical diagnosis of MFS were recruited for research. Eleven FBN1 mutations were identified in 12 patients who strictly fulfilled the Ghent criteria for MFS, and 1 FBN1 mutations were detected in 9 patients with suspected MFS by screening the mutations of FBN1. These FBN1 mutations include 10 novel mutations (c.357 C&gt;A, c.493 C&gt;T, c.1374 T&gt;A, c.4143 delG, c. 6987 C&gt;G, c.7238 G&gt;A, c. 7765 A&gt;G, c.8200 A&gt;G, c. 8431 G&gt;A, c.8547 T&gt;G,) and 2 previously reported mutations (c.4567 C&gt;T, c.4615 C&gt;T). By searching PubMed and Embase (from 1990 up to December 2018), twenty nine studies (including the present study) with 890 subjects with MFS or Marfan-like phenotypes were included to analyze the genotype-phenotype correlations. Several genotype-phenotype correlations were founded. Firstly, mutations of premature termination codons (PTC) were associated with an increased risk of major cardiovascular involvements. Secondly, the frequency of patients with major cardiovascular involvement in exons 43-65 group was as high as that in exons 24-32 group (71.4% vs. 77.0%; p = 0.238). Finally, cysteine missense mutations might be associated with major cardiovascular involvements. These results extended the FBN1 mutation spectrum of this rare disease and revealed the genotype-phenotype correlations in MFS by analyzing existing literature."	"Accelerated Marfan syndrome model recapitulates established signaling pathways. Marfan syndrome (MFS) represents a genetic disorder with a range of clinical features, including proximal aortic aneurysms. Extensive research has revealed an abundance of transforming growth factor beta from a mutation in fibrillin-1 to be the key biochemical mechanism of aneurysm formation. Many important signaling pathways downstream of transforming growth factor beta have been further characterized. Our laboratory has previously demonstrated a unique murine model of MFS resulting in the accelerated formation of ascending aortic aneurysms and dilated cardiomyopathies. This study aims to characterize the relevance of this model to known signaling mechanisms in MFS. Fibrillin 1C<sup>1039G/+</sup> heterozygous mice (ie, MFS), with a mutation in fibrillin-1, were supplemented with 4.5 mg/kg/d angiotensin II to accelerate aneurysm formation. Four mouse groups were analyzed: wild type with or without angiotensin II and MFS with or without angiotensin II. Aortic tissue from these samples were subjected to western blotting and phosphoimaging to query various signaling pathways. Mice with MFS displayed downstream regulation in both the canonical (Smad2) and noncononical (extracellular signal-regulated kinases and P38) pathways characteristic of MFS. However, these downstream signals were exaggerated in the MFS mice supplemented with angiotensin II (accelerated model), matching the observed phenotypic severity of this model. The murine MFS model depicted here accelerates ascending aortic aneurysm formation and cardiomyopathies via well-characterized MFS signaling cascades. The mechanistic relevance of the accelerated murine MFS model suggests that it could be an important tool in future studies hoping to characterize MFS signaling in an expedited experimental design."	"Fibrillin-1 in the Vasculature: In Vivo Accumulation of eGFP-Tagged Fibrillin-1 in a Knockin Mouse Model. Immunolocalization studies have shown that fibrillin-1 is distributed ubiquitously in the connective tissue space from early embryonic times through old age. When mutated, the gene for fibrillin-1 (FBN1) causes the Marfan syndrome, a common inherited disorder of connective tissue. The multiple manifestations of the Marfan syndrome reflect the known distribution of fibrillin-1 in cardiovascular, musculoskeletal, ocular, and dermal tissues. In this study, a mouse model of Marfan syndrome in which fibrillin-1 is truncated and tagged with green fluorescence was used to estimate the relative abundance of fibrillin-1 in developing tissues. In embryonic tissues, the aorta was the only tissue in which fibrillin-1 green fluorescence was detectable. Other arteries gained detectable fibrillin-1 green fluorescence just after birth. Fibrillin-1 fluorescence was observed at later postnatal times in the lung, skin, perichondrium, tendon, and ocular tissues, while other tissues remained negative. These results indicated that tissues most affected in the Marfan syndrome are the tissues in which fibrillin-1 is most abundant. Focus was placed on the aorta, since aortic disease is life threatening in the Marfan syndrome and fibrillin-1 green fluorescence was most abundant in this tissue. Fibrillin-1 green fluorescence and immunostaining showed that fibrillin-1 is within aortic medial elastic lamellae. Endothelial-specific compared to smooth muscle-specific fibrillin-1 green fluorescence, together with light microscopic analyses of fragmentation of aortic elastic lamellae, demonstrated that smooth muscle cell mutated fibrillin-1 contributed most to progressive aortic fragmentation. However, these studies also indicated that other cells, possibly endothelial cells, also contribute to this aortic pathology. Anat Rec, 2019. © 2019 Wiley Periodicals, Inc."	"Sleep apnea and the impact on cardiovascular risk in patients with Marfan syndrome. Marfan syndrome (MFS) is an inherited connective tissue disorder characterized by ectopia lentis, aortic root dilation and dissection and specific skeletal features. Obstructive sleep apnea (OSA) in MFS has been described earlier but the prevalence and its relation with the cardiovascular risk is still controversial. This study aimed to further investigate these aspects. In this prospective longitudinal study, we performed an attended polysomnography in 40 MFS patients (60% women, 37 ± 12.8 years) and evaluated several cardiovascular parameters through echocardiography, resting electrocardiogram, 24 hr-Holter monitoring and serum NT-ProBNP measurements. We found that OSA was present in 42.5% of the patients and that higher body mass index was the most important factor associated with the presence of OSA. We observed that overweight was present in 27.5% of the patients in the whole cohort and in 55.6% if &gt;40 years. Furthermore, when evaluating the impact of OSA on the cardiovascular system, we observed that patients with OSA tended to have higher systolic blood pressure, larger distal aortic diameters and a higher prevalence of ventricular arrhythmia. These differences were, however, not significant after adjusting for confounders. Our study shows a high prevalence of OSA and a high prevalence of overweight in MFS patients. We found some trends between OSA and cardiovascular features but we could not establish a solid association. Our study, however might be underpowered, and a multicenter collaborative study could be very useful to answer some important open questions."	"Neonatal Marfan Syndrome. The Marfan syndrome (MFS) is an autosomal dominant disorder of connective tissue resulting from pathogenic variants of the fibrillin-1 gene (FBN1) with skeletal, cardiac, and ocular involvement. We report on a full-term male neonate, who showed at birth characteristics and dysmorphisms suggestive of nMFS, combined with the detection of severe cardiovascular disease. A multidisciplinary team made up of neonatologists and pediatricians, cardiologists, geneticists, ophtalmologists, physiatrists and physioterapists was formed to manage this patient. Early diagnosis of this rare condition is critical for adequate treatment and specific follow-up, and impacts significantly on prognosis."	"Genome Sequencing Identifies the Pathogenic Variant Missed by Prior Testing in an Infant with Marfan Syndrome. We describe an infant with a phenotype typical of early onset Marfan syndrome whose genetic evaluation, including Sanger sequencing and deletion/duplication testing of FBN1 and exome sequencing, was negative. Ultimately, genome sequencing revealed a deletion missed on prior testing, demonstrating the unique utility of genome sequencing for molecular genetic diagnosis."	"Variability in gene-based knowledge impacts variant classification: an analysis of FBN1 missense variants in ClinVar. Gene-specific knowledge can enhance genetic variant classification, but may not be routinely incorporated into clinical laboratory practice. For example, FBN1 variants associated with Marfan syndrome may be variably classified depending on knowledge of FBN1-specific critical regions. In order to assess variability in classification of FBN1 variants, 674 FBN1 missense variants from 18 ClinVar submitters were compared and reanalyzed using FBN1-specific criteria and ACMG/AMP 2015 guidelines for variant interpretation. Conflicting variant classifications occurred in 30.7% of the missense variants that had multiple submitters. There were 451 classifications of 361 critical residue missense variants, with 80.0% (361/451) classified as likely pathogenic or pathogenic [(L)P]. Non-cysteine critical residue variants were less likely to be classified as (L)P [55.3% (78/141)] than cysteine variants [91.3% (283/310)] and were more likely to lack evidence citing the functional significance of the amino acid impacted. Application of FBN1-specific knowledge allowed for reclassification or discrepancy resolution in 65/361 (18.0%) critical residue variants. There were 522 classifications of 313 unique missense variants not known to impact a critical residue. Of these, 31.6% (165/522) were likely overclassified as either (L)P or uncertain significance (VUS), especially when minor allele frequency (MAF) was taken into account, and we reclassified or resolved classification discrepancies in 128/313 (40.9%) of these variants. Our results provide a refined framework and resource for FBN1 variant classification, and further supports the more global implications of combining gene-based knowledge with ACMG/AMP criteria and appropriate MAF cutoffs for variant classification that extend beyond FBN1."	"Integrating Clinical and Genetic Analysis of Perineural Invasion in Head and Neck Squamous Cell Carcinoma. Introduction: Perineural invasion (PNI), a key pathological feature of head and neck squamous cell carcinoma (HNSCC), predicts poor survival. However, the associated clinical characteristics remain uncertain, and the molecular mechanisms are largely unknown. Materials and methods: HNSCC gene expression and corresponding clinical data were downloaded from The Cancer Genome Atlas (TCGA). Prognostic subgroup analysis was performed, and potential PNI risk factors were assessed with logistic regression. PNI-associated gene coexpression modules were identified with weighted gene coexpression network analysis (WGCNA), and key module gene functions and the roles of non-malignant cells in PNI were evaluated with a single-cell transcriptomic dataset (GSE103322). Results: PNI was significantly inversely associated with overall survival (HR, 2.08; 95% CI, 1.27 to 3.40; P = 0.004), especially in advanced patients (HR, 2.62; 95% CI, 1.48 to 4.64; P &lt; 0.001). Age, gender, smoking history, and alcohol history were not risk factors. HPV-positive cases were less likely than HPV-negative cases to develop PNI (OR, 0.28; 95% CI, 0.09 to 0.76; P = 0.017). WGCNA identified a unique significantly PNI-associated coexpression module containing 357 genes, with 12 hub genes (TIMP2, MIR198, LAMA4, FAM198B, MIR4649, COL5A1, COL1A2, OLFML2B, MMP2, FBN1, ADAM12, and PDGFRB). Single-cell transcriptomic data analysis revealed that the genes in the PNI-associated module correlated with the signatures &quot;EMT,&quot; &quot;metastasis,&quot; and &quot;invasion.&quot; Among non-malignant cells, fibroblasts had relatively high expression of the key genes. Conclusion: At the molecular and omic levels, we verified that PNI in HNSCC is a process of invasion rather than simple diffusion. Fibroblasts probably play an important role in PNI. Novelty &amp; Impact Statements The study is a thorough analysis of PNI in HNSCC from the clinical level to the molecular level and presents the first description of cancer-related PNI from the omics perspective to date as far as we know. We verified that PNI in HNSCC is a process of invasion rather than simple diffusion, at the molecular and omic levels. Fibroblasts were found to probably play an important role in PNI by analyzing single-cell transcriptomic data."	"FBN1 Coding Variants and Nonsyndromic Aortic Disease. NA"	"Clinical Implications of Identifying Pathogenic Variants in Individuals With Thoracic Aortic Dissection. Thoracic aortic dissection is an emergent life-threatening condition. Routine screening for genetic variants causing thoracic aortic dissection is not currently performed for patients or family members. We performed whole exome sequencing of 240 patients with thoracic aortic dissection (n=235) or rupture (n=5) and 258 controls matched for age, sex, and ancestry. Blinded to case-control status, we annotated variants in 11 genes for pathogenicity. Twenty-four pathogenic variants in 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, and TGFBR2) were identified in 26 individuals, representing 10.8% of aortic cases and 0% of controls. Among dissection cases, we compared those with pathogenic variants to those without and found that pathogenic variant carriers had significantly earlier onset of dissection (41 versus 57 years), higher rates of root aneurysm (54% versus 30%), less hypertension (15% versus 57%), lower rates of smoking (19% versus 45%), and greater incidence of aortic disease in family members. Multivariable logistic regression showed that pathogenic variant carrier status was significantly associated with age &lt;50 (odds ratio [OR], 5.5; 95% CI, 1.6-19.7), no history of hypertension (OR, 5.6; 95% CI, 1.4-22.3), and family history of aortic disease (mother: OR, 5.7; 95% CI, 1.4-22.3, siblings: OR, 5.1; 95% CI, 1.1-23.9, children: OR, 6.0; 95% CI, 1.4-26.7). Clinical genetic testing of known hereditary thoracic aortic dissection genes should be considered in patients with a thoracic aortic dissection, followed by cascade screening of family members, especially in patients with age-of-onset &lt;50 years, family history of thoracic aortic disease, and no history of hypertension."	"Overexpressing OsFBN1 enhances plastoglobule formation, reduces grain-filling percent and jasmonate levels under heat stress in rice. In higher plants, Fibrillins (FBNs) constitute a conserved plastid-lipid-associated (PAPs) protein family and modulate the metabolite transport and lipid metabolism in plastids of dicot species. However, FBNs have not functionally characterized in monocot species. In this study, the function of rice fibrillin 1 (OsFBN1) was investigated. The subcellular localization assay showed that the N-terminal chloroplast transport peptide (CTP) could facilitate the import of OsFBN1 into chloroplast. OsFBN1 specifically bound C18- and C20- fatty acids in vitro. Overexpressing OsFBN1 increased the tiller number but decreased the panicle length, grain-filling percent and JA levels compared to the wild type and RNAi silencing lines under heat stress. In addition, the overexpressing lines had more plastoglobules (PGs) than the wild type and RNAi silencing lines under both normal and heat stress conditions. Moreover, overexpressing OsFBN1 affected the transcription levels of OsAOS2 in JA synthesis, OsTHF1, OsABC1K7 and OsPsaE in thylakoid stability and photosynthesis, OsABC1-4 and OsSPS2 in ubiquinone-metabolism, OsHDR, OsDXR, and OsFPPS in isoprenoid metabolism. Collectively, these findings suggest the essential role of rice OsFBN1 in PG formation and lipid metabolism in chloroplasts, which coordinately regulate the growth and grain filling of the overexpressing lines under heat stress."	"Targeted gene panel sequencing for the rapid diagnosis of acutely ill infants. Exome/genome sequencing (ES/GS) have been recently used in neonatal and pediatric/cardiac intensive care units (NICU and PICU/CICU) to diagnose and care for acutely ill infants, but the effectiveness of targeted gene panels for these purposes remains unknown. RapSeq, a newly developed panel targeting 4,503 disease-causing genes, was employed on selected patients in our NICU/PICU/CICU. Twenty trios were sequenced from October 2015 to March 2017. We assessed diagnostic yield, turnaround times, and clinical consequences. A diagnosis was made in 10/20 neonates (50%); eight had de novo variants (ASXL1, CHD, FBN1, KMT2D, FANCB, FLNA, PAX3), one was a compound heterozygote for CHAT, and one had a maternally inherited GNAS variant. Preliminary reports were generated by 9.6 days (mean); final reports after Sanger sequencing at 16.3 days (mean). In all positive infants, the diagnosis changed management. In a case with congenital myasthenia, diagnosis and treatment occurred at 17 days versus 7 months in a historical control. This study shows that a gene panel that includes the majority of known disease-causing genes can rapidly identify a diagnosis in a large number of tested infants. Due to simpler deployment and interpretation and lower costs, this approach might represent an alternative to ES/GS in the NICU/PICU/CICU."	"Hereditary thoracic aortic disease associated with cysteine substitution c.937T &gt; G p.(Cys313Gly) in FBN1. NA"	"Characterization of Two Novel Intronic Variants Affecting Splicing in FBN1-Related Disorders. FBN1 encodes fibrillin 1, a key structural component of the extracellular matrix, and its variants are associated with a wide range of hereditary connective tissues disorders, such as Marfan syndrome (MFS) and mitral valve-aorta-skeleton-skin (MASS) syndrome. Interpretations of the genomic data and possible genotype-phenotype correlations in FBN1 are complicated by the high rate of intronic variants of unknown significance. Here, we report two unrelated individuals with the FBN1 deep intronic variants c.6872-24T&gt;A and c.7571-12T&gt;A, clinically associated with MFS and MASS syndrome, respectively. The individual carrying the c.6872-24T&gt;A variant is positive for aortic disease. Both individuals lacked ectopia lentis. In silico analysis and subsequent mRNA study by RT-PCR demonstrated the effect of the identified variant on the splicing process in both cases. The c.6872-24T&gt;A and c.7571-12T&gt;A variants generate the retention of intronic nucleotides and lead to the introduction of a premature stop codon. This study enlarges the mutation spectrum of FBN1 and points out the importance of intronic sequence analysis and the need for integrative functional studies in FBN1 diagnostics."	"Systems pharmacology-based integration of human and mouse data for drug repurposing to treat thoracic aneurysms. Marfan syndrome (MFS) is associated with mutations in fibrillin-1 that predispose afflicted individuals to progressive thoracic aortic aneurysm (TAA) leading to dissection and rupture of the vessel wall. Here we combined computational and experimental approaches to identify and test FDA-approved drugs that may slow or even halt aneurysm progression. Computational analyses of transcriptomic data derived from the aortas of MFS patients and MFS mice (Fbn1mgR/mgR mice) predicted that subcellular pathways associated with reduced muscle contractility are key TAA determinants that could be targeted with the GABAB receptor agonist baclofen. Systemic administration of baclofen to Fbn1mgR/mgR mice validated our computational prediction by mitigating arterial disease progression at the cellular and physiological levels. Interestingly, baclofen improved muscle contraction-related subcellular pathways by upregulating a different set of genes than those downregulated in the aorta of vehicle-treated Fbn1mgR/mgR mice. Distinct transcriptomic profiles were also associated with drug-treated MFS and wild-type mice. Thus, systems pharmacology approaches that compare patient- and mouse-derived transcriptomic data for subcellular pathway-based drug repurposing represent an effective strategy to identify potential new treatments of human diseases."	"FBN1 gene mutations in 26 Hungarian patients with suspected Marfan syndrome or related fibrillinopathies. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder mainly affecting the cardiovascular, ocular and musculo-skeletal systems. FBN1 gene mutations lead to MFS and related connective tissue disorders. In this work we described clinical and molecular data of 26 unrelated individuals with suspected MFS who were referred for FBN1 mutation analysis. FBN1 gene sequencing was performed by next generation sequencing and Sanger sequencing methods. We identified 23 causal or potentially causal (including variants of uncertain significance) FBN1 variants, seven of them was novel (˜30%). About 30% of the cases were sporadic. FBN1 mutations were associated with MFS in the majority of the patients, in two cases with severe and early onset manifestation of the syndrome. Missense mutations were detected in 69.6% (16/23), the majority of them were located in one of the cbEGF motifs and ˜70% of them substituted conserved cystein residues. Small deletions/duplications were identified in 13% of the cases (3/23), while splice site variants were detected in 17.4% (4/23). In three unrelated patients a low frequency recurrent silent variant (c.3294C &gt; T (p.Asp1098=) was identified. FBN1 mRNA analysis showed that the mutation does not lead to aberrant splicing, based on available data the mutation was classified as benign."	"Shprintzen-Goldberg Syndrome: A Rare Disorder. The Shprintzen-Goldberg syndrome (SGS) or velo-cardio-facial syndrome (VCFS) is an extremely rare disorder of connective tissue with a characteristic facial dysmorphism, marfanoid features, craniosynostosis, dolichocephaly, cardiovascular anomalies and mild to moderate mental retardation. It may be a de novo gene mutation or inherited as an autosomal dominant disorder having SKI gene and Fibrillin-1 gene (FBN1) mutations, located on chromosome 15q21.1. We report a case of a 3-month, developmentally delayed male infant admitted to the hospital with syndromic facies, craniosynostosis, joint laxity and on echocardiography, aortic root dilatation. A probable diagnosis of SGS was made on the clinical grounds. We did not have the facility for genetic chromosomal analysis. He was discharged with family counselling and follow-up for future developmental rehabilitation."	"A novel mutation in FBN1 gene in autosomal dominant Marfan syndrome and macular degeneration in a Chinese consanguineous family. To report a novel mutation in FBN1 gene in a Chinese consanguineous family with common Marfan syndrome (MFS) phenotype and an unusual bilateral macular degeneration. Ophthalmic, cardiovascular and systemic examinations were performed, and genomic DNA extracted from all living family members. The 24-32 exon mutations of FBN1 gene were screened by Sanger Sequencing in all family members and 100 unrelated healthy Chinese individuals. In the four-generation family, classic MFS phenotypes were observed in all 5 patients, 2 of them had peculiar phenotype of bilateral macular degeneration. Mutation screening in FBN1 identified a heterozygous missense mutation (c.3932A&gt;G, p.Y1311C) with co-segregation. This mutation was found with the MFS phenotypes in all 5 patients but not in unaffected members or unrelated controls. A Chinese consanguineous MFS family with uncommon bilateral macular degeneration and an unreported c.3932A&gt;G mutation in FBN1 was identified. Our finding expands the FBN1 mutation spectrum and its possible role in the pathogenesis of Marfan syndrome."	"Molecular dynamics simulations on human fibulin-4 mutants D203A and E126K reveal conformational changes in EGF domains potentially responsible for enhanced protease lability and impaired extracellular matrix assembly. Fibulin-4 is a 50 kDa glycoprotein of elastic fibers and plays an important role in development and function of elastic tissues. Fibulin-4 consists of a tandem array of five calcium-binding epidermal growth factor-like modules flanked by N- and C-terminal domains. Mutations in the human fibulin-4 gene EFEMP2 have been identified in patients affected with various arteriopathies including aneurysm, arterial tortuosity, or stenosis, but the molecular basis of most genotype-phenotype correlations is unknown. Here we present biochemical and computer modelling approaches designed to gain further insight into changes in structure and function of two fibulin-4 mutations (E126K and D203A), which are potentially involved in Ca<sup>2+</sup> binding in the EGF2 and EGF4 domain, respectively. Using recombinantly produced fibulin-4 mutant and wild type proteins we show that both mutations introduced additional protease cleavage sites, impaired extracellular assembly into fibers, and affected binding to to fibrillin-1, latent TGF-β-binding proteins, and the lysyl oxidase LOXL2. Molecular dynamics studies indicated that the E126K and D203A mutations do not necessarily result in a direct loss of the complexed Ca<sup>2+</sup> ion after 500 ns simulation time, but in significantly enhanced fluctuations within the connecting loop between EGF3 and EGF4 domains and other conformational changes. In contrast, intentionally removing Ca<sup>2+</sup> from EGF4 (D203A ΔCa) predicted dramatic changes in the protein structure. These results may explain the changes in protease cleavage sites, reduced secretion and impaired extracellular assembly of the E126K and D203A fibulin-4 mutants and provide further insight into understanding the molecular basis of the associated clinical phenotypes."	"Sildenafil Prevents Marfan-Associated Emphysema and Early Pulmonary Artery Dilation in Mice. Marfan syndrome (MFS) is a connective tissue disorder caused by mutations in fibrillin-1 (Fbn1). Although aortic rupture is the major cause of mortality in MFS, patients also experience pulmonary complications, which are poorly understood. Loss of basal nitric oxide (NO) production and vascular integrity has been implicated in MFS aortic root disease, yet their contribution to lung complications remains unknown. Because of its capacity to potentiate the vasodilatory NO/cyclic guanylate monophosphate signaling pathway, we assessed whether the phosphodiesterase-5 inhibitor, sildenafil (SIL), could attenuate aortic root remodeling and emphysema in a mouse model of MFS. Despite increasing NO-dependent vasodilation, SIL unexpectedly elevated mean arterial blood pressure, failed to inhibit MFS aortic root dilation, and exacerbated elastic fiber fragmentation. In the lung, early pulmonary artery dilation observed in untreated MFS mice was delayed by SIL treatment, and the severe emphysema-like alveolar destruction was prevented. In addition, improvements in select parameters of lung function were documented. Subsequent microarray analyses showed changes to gene signatures involved in the inflammatory response in the MFS lung treated with SIL, without significant down-regulation of connective tissue or transforming growth factor-β signaling genes. Because phosphodiesterase-5 inhibition leads to improved lung histopathology and function, the effects of SIL against emphysema warrant further investigation in the settings of MFS despite limited efficacy on aortic root remodeling."	"Aortic Strain Correlates with Elastin Fragmentation in Fibrillin-1 Hypomorphic Mice. High frequency ultrasound has facilitated in vivo measurements of murine ascending aortas, allowing aortic strains to be gleaned from two-dimensional images. Thoracic aortic aneurysms associated with mutations in fibrillin-1 (FBN1) display elastin fragmentation, which may impact aortic strain. In this study, we determined the relationship between elastin fragmentation and aortic circumferential strain in wild type and fibrillin-1 hypomorphic (FBN1<sup>mgR/mgR</sup>) mice. Luminal diameters of the ascending aorta from wild type and FBN1 hypomorphic (FBN1<sup>mgR/mgR</sup>) mice were measured in systole and diastole. Expansion of the ascending aorta during systole in male and female wild type mice was 0.21±0.02 mm (16.3%) and 0.21±0.01 mm (17.0%) respectively, while expansion in male and female FBN1<sup>mgR/mgR</sup> mice was 0.11±0.04 mm (4.9%) and 0.07±0.02 mm (4.5%) respectively. Reduced circumferential strain was observed in FBN1<sup>mgR/mgR</sup> mice compared to wild type littermates. Elastin fragmentation was inversely correlated to circumferential strain (R^2 = 0.628 p = 0.004) and significantly correlated with aortic diameter. (R^2 = 0.397, p = 0.038 in systole and R^2 = 0.515, p =0.013 in diastole). FBN1<sup> mgR/mgR </sup> mice had increased aortic diameters, reduced circumferential strain, and increased elastin fragmentation. Elastin fragmentation in FBN1<sup> mgR/mgR </sup> and their wild type littermates was correlated with reduced circumferential strain."	"Application of next-generation sequencing to screen for pathogenic mutations in 123 unrelated Chinese patients with Marfan syndrome or a related disease. Marfan syndrome (MFS) is a systemic connective tissue disease principally affecting the ocular, skeletal and cardiovascular systems. This autosomal dominant disorder carries a prevalence of 1:3,000 to 1:5,000. This study aims to define the mutational spectrum of MFS related genes in Chinese patients and to establish genotype-phenotype correlations in MFS. Panel-based targeted next-generation sequencing was used to analyze the FBN1, TGFBR1 and TGFBR2 genes in 123 unrelated Chinese individuals with MFS or a related disease. Genotype-phenotype correlation analyses were performed in mutation-positive patients. The results showed that 97 cases/families (78.9%; 97/123) harbor at least one (likely) pathogenic mutation, most of which were in FBN1; four patients had TGFBR1/2 mutations; and one patient harbored a SMAD3 mutation. Three patients had two FBN1 mutations, and all patients showed classical MFS phenotypes. Patients with a dominant negative-FBN1 mutation had a higher prevalence of ectopia lentis (EL). Patients carrying a haploinsufficiency-FBN1 mutation tended to have aortic dissection without EL. This study extends the spectrum of genetic backgrounds of MFS and enriches our knowledge of genotype-phenotype correlations."	"A disintegrin-like and metalloproteinase domain with thrombospondin type 1 motif 9 (ADAMTS9) regulates fibronectin fibrillogenesis and turnover. The secreted metalloprotease ADAMTS9 has dual roles in extracellular matrix (ECM) turnover and biogenesis of the primary cilium during mouse embryogenesis. Its gene locus is associated with several human traits and disorders, but ADAMTS9 has few known interacting partners or confirmed substrates. Here, using a yeast two-hybrid screen for proteins interacting with its C-terminal Gon1 domain, we identified three putative ADAMTS9-binding regions in the ECM glycoprotein fibronectin. Using solid-phase binding assays and surface plasmon resonance experiments with purified proteins, we demonstrate that ADAMTS9 and fibronectin interact. ADAMTS9 constructs, including those lacking Gon1, co-localized with fibronectin fibrils formed by cultured fibroblasts lacking fibrillin-1, which co-localizes with fibronectin and binds several ADAMTSs. We observed no fibrillar ADAMTS9 staining after blockade of fibroblast fibronectin fibrillogenesis with a peptide based on the functional upstream domain of a Staphylococcus aureus adhesin. These findings indicate that ADAMTS9 binds fibronectin dimers and fibrils directly through multiple sites in both molecules. Proteolytically active ADAMTS9, but not a catalytically inactive variant, disrupted fibronectin fibril networks formed by fibroblasts in vitro, and ADAMTS9-deficient RPE1 cells assembled a robust fibronectin fibril network, unlike WT cells. Targeted LC-MS analysis of fibronectin digested by ADAMTS9-expressing cells identified a semitryptic peptide arising from cleavage at Gly<sup>2196</sup>-Leu<sup>2197</sup> We noted that this scissile bond is in the linker between fibronectin modules III17 and I10, a region targeted also by other proteases. These findings, along with stronger fibronectin staining previously observed in Adamts9 mutant embryos, suggest that ADAMTS9 contributes to fibronectin turnover during ECM remodeling."	"Nitric oxide donor molsidomine favors features of atherosclerotic plaque stability and reduces myocardial infarction in mice. Nitric oxide (NO) donors are commonly used for the prevention and treatment of ischemic heart disease. Besides their effects on the heart, NO donors may also prevent hypoxic brain damage and exert beneficial effects on atherosclerosis by favoring features of plaque stability. We recently described that apolipoprotein E (ApoE) deficient mice with a mutation in the fibrillin-1 (Fbn1) gene (ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup>) develop accelerated atherosclerosis, plaque rupture, myocardial infarction, cerebral hypoxia and sudden death. In the present study, we evaluated the effects of chronic treatment with the NO donor molsidomine on atherosclerotic plaque stability, cardiac function, neurological symptoms and survival in the ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mouse model. Female ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/</sup><sup>-</sup> mice were fed a Western diet (WD). After 8 weeks of WD, the mice were divided into two groups receiving either molsidomine via the drinking water (1 mg/kg/day; n = 34) or tap water (control; n = 36) until 25 weeks of WD. Survival tended to increase after molsidomine treatment (68% vs. 58% in controls). Importantly, atherosclerotic plaques of molsidomine-treated mice had a thicker fibrous cap (11.1 ± 1.2 vs. 8.1 ± 0.7 μm) and showed an increased occurrence of plaque macrocalcifications (30% vs. 0%), indicative of a more stable phenotype. Molsidomine also improved cardiac function, as fractional shortening was increased (40 ± 2% vs. 27 ± 2%) combined with a decreased end diastolic (3.1 ± 0.2 vs. 3.9 ± 0.2 mm) and end systolic diameter (1.9 ± 0.1 vs. 2.9 ± 0.2 mm). Furthermore, perivascular fibrosis (23 ± 2 vs. 30 ± 2%) and the occurrence of myocardial infarctions (12% vs. 36%) was significantly reduced. Track width, a measure of the animal's hind limb base of support and representative of hypoxic brain damage, was also normalized as a result of molsidomine treatment (2.54 ± 0.04 vs. 2.91 ± 0.09 cm in controls). These findings demonstrate that the NO donor molsidomine improves cardiac function, reduces neurological symptoms and enhances atherosclerotic plaque stability."	"Cardiovascular Magnetic Resonance Provides Evidence of Abnormal Myocardial Strain and Primary Cardiomyopathy in Marfan syndrome. Marfan syndrome is an autosomal-dominant genetic disorder caused by mutations in the fibrillin-1 gene. The condition is a connective tissue disease that frequently involves the cardiovascular system. The existence of a primary cardiomyopathy in Marfan syndrome, however, is controversial. The aims of this study were to investigate the prevalence of left ventricular dysfunction with both transthoracic echocardiography and cardiovascular magnetic resonance (CMR) in a cohort of Marfan syndrome patients and to investigate patterns of myocardial strain across the cohort. We used an institutional database to identify all patients with a firm diagnosis of Marfan syndrome based on Ghent criteria. Inclusion required left ventricular ejection fraction (LVEF) to have been measured by both CMR and transthoracic echocardiography within 12 months of each other. Normal LVEF was defined as a value of &gt;55% when measured by CMR. Velocity vector imaging was used to measure left ventricular longitudinal strain patterns by application of feature tracking to cine magnetic resonance images. Results were compared with data from 20 age-matched control subjects. Sixty-nine Marfan syndrome patients met the inclusion criteria. The mean age was 35.4 ± 15.0 years, and 56.5% were male. The mean LVEF was 59.0% ± 7.0% by CMR and 59.1% ± 5.8% by echo. One-fifth of Marfan syndrome patients (15/69; 21.7%) had reduced function with LVEF ≤55% by CMR, but only 5 of these were identified by echo. Furthermore, echo identified 5 Marfan syndrome patients as having reduced LVEF in the presence of a normal LVEF by CMR. Some Marfan syndrome patients had abnormal longitudinal strain patterns even with LVEF within the reference range. These data provide support for a primary cardiomyopathy in some Marfan syndrome patients. Cardiovascular magnetic resonance is more sensitive than echo for identifying cases with mild systolic dysfunction. Strain analysis may be more sensitive than simple LVEF assessment for identifying at-risk individuals."	"Cardiovascular Magnetic Resonance Provides Evidence of Abnormal Myocardial Strain and Primary Cardiomyopathy in Marfan syndrome. Marfan syndrome is an autosomal-dominant genetic disorder caused by mutations in the fibrillin-1 gene. The condition is a connective tissue disease that frequently involves the cardiovascular system. The existence of a primary cardiomyopathy in Marfan syndrome, however, is controversial. The aims of this study were to investigate the prevalence of left ventricular dysfunction with both transthoracic echocardiography and cardiovascular magnetic resonance (CMR) in a cohort of Marfan syndrome patients and to investigate patterns of myocardial strain across the cohort. We used an institutional database to identify all patients with a firm diagnosis of Marfan syndrome based on Ghent criteria. Inclusion required left ventricular ejection fraction (LVEF) to have been measured by both CMR and transthoracic echocardiography within 12 months of each other. Normal LVEF was defined as a value of &gt;55% when measured by CMR. Velocity vector imaging was used to measure left ventricular longitudinal strain patterns by application of feature tracking to cine magnetic resonance images. Results were compared with data from 20 age-matched control subjects. Sixty-nine Marfan syndrome patients met the inclusion criteria. The mean age was 35.4 ± 15.0 years, and 56.5% were male. The mean LVEF was 59.0% ± 7.0% by CMR and 59.1% ± 5.8% by echo. One-fifth of Marfan syndrome patients (15/69; 21.7%) had reduced function with LVEF ≤55% by CMR, but only 5 of these were identified by echo. Furthermore, echo identified 5 Marfan syndrome patients as having reduced LVEF in the presence of a normal LVEF by CMR. Some Marfan syndrome patients had abnormal longitudinal strain patterns even with LVEF within the reference range. These data provide support for a primary cardiomyopathy in some Marfan syndrome patients. Cardiovascular magnetic resonance is more sensitive than echo for identifying cases with mild systolic dysfunction. Strain analysis may be more sensitive than simple LVEF assessment for identifying at-risk individuals."	"Preliminary analysis of the association of TRPV1 to the formation of Marfan syndrome aneurysms. Marfan syndrome (MS) is an autosomal dominant disorder of connective tissue that is caused by mutations in the fibrillin-1 (FBN-1) gene that cause degeneration of the artery. It is accompanied by endothelial dysfunction. The potential transient receptor of the vanilloid subfamily 1 (TRPV1) ion channel plays an important role in endothelial vascular functioning. Here we determine the association of the presence TRPV1 in aortic aneurysm with dilation and dissection of the artery in MS patients. Histological sections of aortic aneurysm tissue obtained by the surgical procedure of Bentall and De Bono or David, were processed by immunohistochemistry with antibodies against ICAM, VCAM, iNOS, eNOS, TRPV1 and TNF-α and the immunolabelling area was determined. We also measured the NO₃⁻/NO₂⁻ ratio in the aortic tissue. C-reactive protein and HDL in plasma were quantified. A significant increase in iNOS, TRPV1, VCAM (p≤0.05), NO₃⁻/NO₂⁻ ratio (p=0.002) and a significant decrease in eNOS (p=0.04) and HDL in plasma (p=0.02) in the MS vs. the C group were found. Conclusion: TRPV1 is over-expressed in aortic tissue from MS patients and can be associated with increases in iNOS, VCAM and a decrease in eNOS. These changes might contribute to the progression and rupture of the thoracic aneurysm."	"Characterization of a New Reconstructed Full Thickness Skin Model, T-Skin™, and its Application for Investigations of Anti-Aging Compounds. We have characterized a new reconstructed full-thickness skin model, T-Skin™, compared to normal human skin (NHS) and evaluated its use in testing anti-aging compounds. The structure and layer-specific markers were compared with NHS using histological and immunohistological staining. In anti-aging experiments, T-Skin<sup>TM</sup> was exposed to retinol (10 µM) or vitamin C (200 µM) for 5 days, followed by immunohistological staining evaluation. T-Skin™ exhibits a well stratified, differentiated and self-renewing epidermis with a dermal compartment of functional fibroblasts. Epidermal (cytokeratin 10, transglutaminase 1), dermo-epidermal junction (DEJ) (laminin 5, collagen-IV, collagen VII) and dermally-located (fibrillin 1, procollagen I) biomarkers were similar to those in NHS. Treatment of T-Skin™ with retinol decreased the expression of differentiation markers, cytokeratin 10 and transglutaminase 1 and increased the proliferation marker, Ki67, in epidermis basal-layer cells. Vitamin C increased the expression of DEJ components, collagen IV and VII and dermal procollagen 1. T-Skin™ exhibits structural and biomarker location characteristics similar to NHS. Responses of T-Skin™ to retinol and vitamin C treatment were consistent with those of their known anti-aging effects. T-Skin™ is a promising model to investigate responses of epidermal, DEJ and dermal regions to new skin anti-ageing compounds."	"Strain-dependent effects on lung structure, matrix remodeling, and Stat3/Smad2 signaling in C57BL/6N and C57BL/6J mice after neonatal hyperoxia. Bronchopulmonary dysplasia (BPD) is a chronic lung disease of preterm infants, characterized by lung growth arrest and matrix remodeling. Various animal models provide mechanistic insights in the pathogenesis of BPD. Since there is increasing evidence that genetic susceptibility modifies the response to lung injury, we investigated strain-dependent effects in hyperoxia (HYX)-induced lung injury of newborn mice. To this end, we exposed newborn C57BL/6N and C57BL/6J mice to 85% O2 (HYX) or normoxia (NOX; 21% O2) for 28 days, followed by lung excision for histological and molecular measurements. BL/6J-NOX mice exhibited a lower body and lung weight than BL/6N-NOX mice; hyperoxia reduced body weight in both strains and increased lung weight only in BL/6J-HYX mice. Quantitative histomorphometric analyses revealed reduced alveolar formation in lungs of both strains after HYX, but the effect was greater in BL/6J-HYX mice than BL/6N-HYX mice. Septal thickness was lower in BL/6J-NOX mice than BL/6N-NOX mice but increased in both strains after HYX. Elastic fiber density was significantly greater in BL/6J-HYX mice than BL/6N-HYX mice. Lungs of BL/6J-HYX mice were protected from changes in gene expression of fibrillin-1, fibrillin-2, fibulin-4, fibulin-5, and surfactant proteins seen in BL/6N-HYX mice. Finally, Stat3 was activated by HYX in both strains; in contrast, activation of Smad2 was markedly greater in lungs of BL/6N mice than BL/6J mice after HYX. In summary, we demonstrate strain-dependent differences in lung structure and matrix, alveolar epithelial cell markers, and Smad2 (transforming growth factor β) signaling in neonatal HYX-induced lung injury. Strain-dependent effects and genetic susceptibility need be taken into consideration for reproducibility and reliability of results in animal models."	"Periodontal condition in growing subjects with Marfan Syndrome: a case-control study. Marfan's syndrome (MFS) is a systemic disorder of connective tissue caused by mutations in the extracellular matrix protein fibrillin-1. Orofacial characteristics may be useful in identification of the syndrome. Severe periodontitis is sometimes observed in MFS patients, but no in-depth information has been reported in Italian groups of growing subjects with MFS. The aim of this study was to analyze the periodontal condition on a group of growing subjects affected by MFS, in comparison with a typically developed control group. A group of 16 subjects with diagnosed MFS were recruited from the Centre for Rare Diseases for Marfan Syndrome and Related Disorders of Tor Vergata University Hospital. The Marfan Group (MG) was compared with a Control Group (CG) composed by 20 nonsyndromic subjects. The periodontal clinical parameters like Marginal Gingival Thickness (GT), Plaque Index (PI), Bleeding On Probing (BOP) and Modified Periodontal Screening and Recording (PSR) were assessed. The mean value of PI in MG was 59%, instead in CG it reached 21%. Analysis showed a significant difference between MG and CG also for the BOP. In MG the mean value of BOP attained 36% and in CG it reached 16%. A statistical significant difference of distribution of PSR index between the two groups was found for all sextant examined. Patients with Marfan syndrome reveal a higher presence of plaque and consequently a generalized inflammation in the oral cavity when compared with a control group."	"Embryonic Mesenchymal Multipotent Cell Differentiation on Electrospun Biodegradable Poly(ester amide) Scaffolds for Model Vascular Tissue Fabrication. Vascular differentiation of stem cells and matrix component production on electrospun tubular scaffolds is desirable to engineer blood vessels. The mouse embryonic multipotent mesenchymal progenitor cell line (10T1/2) provides an excellent tool for tissue engineering since it shares similar differentiation characteristics with mesenchymal stem cells. Although 10T1/2 cells have been widely studied in the context of skeletal tissue engineering, their differentiation to smooth muscle lineage is less known. In this study, we fabricated tubular electrospun poly(ester amide) (PEA) fibers from L-phenylalanine-derived biodegradable biomaterials and investigated cell-scaffold interactions as well as their differentiation into vascular smooth muscle cell and subsequent elastin expression. PEA scaffolds fabricated under different collector speeds did not have an impact on the fiber directionality/orientation. 10T1/2 cytocompatibility and proliferation studies showed that PEA fibres were not cytotoxic and were able to support proliferation for 14 days. Furthermore, cells were observed infiltrating the fibrous scaffolds despite the small pore sizes (~ 5 µm). Vascular differentiation studies of 10T1/2 cells using qPCR, Western blot, and immunostaining showed a TGFβ1-induced upregulation of vascular smooth muscle cell (VSMC)-specific markers smooth muscle alpha-actin (SM-α-actin) and smooth muscle myosin heavy chain (SM-MHC). Differentiated 10T1/2 cells produced both elastin and fibrillin-1 suggesting the potential of fibrous PEA scaffolds to fabricate model vascular tissues."	"Early-Onset Marfan Syndrome: A Case Series. Mutations in fibrillin 1 cause Marfan syndrome (MFS), an autosomal dominant disorder of the connective tissue, with multisystem manifestations. In early-onset MFS, the physical characteristics are expressed much earlier than the classical MFS. Those affected by this form generally have their mutations restricted to the gene &quot;hotspot&quot; region of exons 24 to 32. Historically, affected individuals usually die within the first few years of life due to heart failure secondary to severe valvular insufficiency. We report three patients with early-onset MFS, whose clinical evolution has been remarkably positive, when compared with other reported cases in the literature."	"[Analysis of FBN1 gene mutations in two pedigrees affected with Marfan syndrome]. To detect mutations of fibrillin-1 (FBN1) gene in two pedigrees affected with Marfan syndrome (MFS). Peripheral blood samples were collected from MFS patients and their healthy family members for extracting genomic DNA. All of the 65 exons of the FBN1 gene were analyzed by next-generation sequencing. PolyPhen-2 and SIFT was used to predict structural and functional changes in FBN1 protein. Patients from both pedigrees presented ocular and skeletal manifestations suggestive of MFS. Two novel heterozygous mutations of the FBN1 gene, including c.1879C&gt;T (p.R627C) in exon 16 and c.2584T&gt;C (p.C862R) in exon 22, were identified. The same mutations were not found among unaffected members. By bioinformatic analysis, the mutations may affect the structure and function of the FBN1 protein. The c.1879C&gt;T and c.2584T&gt;C mutations of the FBN1 gene probably account for the disease in the two pedigrees, respectively. Identification of the c.2584T&gt;C has enriched the spectrum of FBN1 gene mutations."	"Incomplete Mass Phenotype: Description of a New Pathogenic Variant of the Fibrillin-1 Gene. NA"	"Neonatal Marfan Syndrome: A Rare, Severe, and Life-Threatening Genetic Disease. NA"	"Attenuation of negative effects of senescence in human skin using an extract from Sphingomonas hydrophobicum: development of new skin care solution. Intrinsic skin ageing is mainly caused by cellular senescence. p16 and p21 are two important tumour suppressor proteins that play essential roles during cell proliferation and ageing through regulating the expression of several genes. Moreover, physical changes between the ages of 55 and 60 years affect one's physical and disrupt self-esteem. The cosmetics industry has focused on bioactive substances derived from natural products such as plants, mushrooms and marine algae to counteract the deleterious effect on skin senescence. Besides these products, compounds produced by bacteria may decelerate individual senescence. In order to evaluate the potential benefits of bacteria extract over skin ageing, we investigated whether a Sphingomonas hydrophobicum (SH) extract is able to protect our skin against senescence mechanisms. We used an ageing full-thickness skin equivalent model, which was treated or not with the bacteria extract in a systemic way for 42 days. p21 and p16 and senescence-associated galactosidase activity were used to detect cellular senescence with immunohistology. Using a psychobiological approach, we evaluated in vivo the effect of SH extract on self-esteem, isotropy and suppleness. Sphingomonas extract significantly suppressed senescence associated with β-galactosidase activation. It also significantly inhibited the expression of cell cycle inhibitors (p21 and p16). At the same time, the bacteria extract has a significant positive impact on the issue by increasing the expression of versican and fibrillin-1. Significant improvements of self-esteem were reported after 56 days of SH extract application. These psychological benefits were accompanied by a significant improvement in skin suppleness and isotropy. Sphingomonas extract delays intrinsic skin ageing process by inhibiting cellular senescence, and has also the capability to restructure the skin. These beneficial physiological effects induced by SH extract have a positive influence on self-esteem. Because skin ageing causes emotional distress, SH extract can serve as an anti-ageing cosmeceutical agent and help to build a better psychological health, and help individuals to assume ageing. Le vieillissement intrinsèque de la peau est principalement causé par la sénescence cellulaire. p16 et p21 sont deux importantes protéines suppressives de tumeurs qui jouent un rôle essentiel dans la prolifération et le vieillissement cellulaire en régulant l'expression de plusieurs gènes. De plus, les changements physiques survenant entre 55 et 60 ans affectent le physique et perturbent l'estime de soi. L'industrie cosmétique s'est concentrée sur les substances bioactives dérivées de produits naturels tels que les plantes, les champignons et les algues marines pour contrer les effets délétères sur la sénescence de la peau. En plus de ces produits, les composés produits par les bactéries peuvent ralentir la sénescence individuelle. MÉTHODES: Afin d’évaluer les bénéfices potentiels de l'extrait de bactérie sur le vieillissement cutané, nous avons étudié si un extrait de Sphingomonas hydrophobicum (SH) est capable de protéger notre peau des mécanismes de sénescence. Nous avons utilisé un modèle équivalent de peau vieillissante de pleine épaisseur, qui a été traitée ou non avec l'extrait de bactérie de façon systémique pendant 42 jours. p21 et p16, et l'activité galactosidase associée à la sénescence ont été utilisés pour détecter la sénescence cellulaire par immunohistologie. En utilisant une approche psychobiologique, nous avons évalué in vivo l'effet de l'extrait de SH sur l'estime de soi, l'isotropie et la souplesse. RÉSULTATS: L'extrait de Sphingomonas a considérablement supprimé la sénescence associée à l'activation de β-galactosidase. Il a également inhibé de manière significative l'expression des inhibiteurs du cycle cellulaire (p21 et p16). En même temps, l'extrait de bactérie a un impact positif significatif sur le problème en augmentant l'expression du versican et de la fibrilline-1. Des améliorations significatives de l'estime de soi ont été rapportées après 56 jours d'application de l'extrait de SH. Ces bienfaits psychologiques s'accompagnaient d'une amélioration significative de la souplesse et de l'isotropie de la peau. L'extrait de Sphingomonas retarde le processus de vieillissement intrinsèque de la peau en inhibant la sénescence cellulaire et a également la capacité de restructurer la peau. Ces effets physiologiques bénéfiques induits par l'extrait de SH ont une influence positive sur l'estime de soi. Parce que le vieillissement de la peau provoque une détresse émotionnelle, l'extrait de SH peut servir d'agent cosméceutique anti-âge et aider à construire une meilleure santé psychologique, ainsi qu'aider les individus à assumer le vieillissement."	"Mouse Models for Atherosclerosis Research-Which Is My Line? Atherosclerosis is one of the primary causes of cardiovascular disease and mortality. This chronic immunometabolic disease evolves during decades in humans and encompasses different organs and immune cell types, as well as local and systemic processes that promote the progression of the disease. The most frequently used animal model to study these atherogenic processes and inter-organ crosstalk in a short time frame are genetically modified mouse models. Some models have been used throughout the last decades, and some others been developed recently. These models have important differences in cholesterol and lipoprotein metabolism, reverse cholesterol transport pathway, obesity and diabetes as well as inflammatory processes. Therefore, the disease develops and progresses differently in the various mouse models. Since atherosclerosis is a multifaceted disease and many processes contribute to its progression, the choice of the right mouse model is important to study specific aspects of the disease. We will describe the different mouse models and provide a roadmap to facilitate current and future atherosclerosis researchers to choose the right model depending on their scientific question."	"Fibrillin-1, a novel TGF-beta-induced factor, is preferentially expressed in metaplastic carcinoma with spindle sarcomatous metaplasia. TGF-β induces epithelial-mesenchymal transition (EMT), which is involved in tumour progression. This study aims to identify and characterise novel factors potentially related to TGF-β-mediated tumour aggression in breast cancer. We treated the human mammary epithelial cell line MCF10A with TGF-β and observed TGF-β-dependent upregulation of FBN1, involving demethylation of CpG sites, in MCF10A cells undergoing EMT. The biological importance of fibrillin-1, encoded by FBN1, was evaluated through immunohistochemistry on 225 breast cancer specimens of various subtypes. Fibrillin-1 expression was observed only in metaplastic carcinoma of the breast (MCB) (51.7%), and the expression was observed in spindle sarcomatous metaplasia (SSM), but not in other metaplasia, including matrix-producing, pleomorphic, and squamous metaplasia, and carcinomatous components of both MCB and non-MCB. Fibrillin-1 expression was also restricted to the SSM of non-mammary carcinosarcomas of various organs. Overall, fibrillin-1 expression was enriched in MCB and non-mammary carcinosarcoma with SSM (93.7% and 93.3%, respectively), but not in MCBs and non-mammary carcinosarcoma without SSM. FBN1 knockdown in MDA-MB-231 cells with high FBN1 expression did not compromise migration, invasion, and tumourigenesis, and did not alter the expression of other EMT-related markers. In conclusion, fibrillin-1 is a novel TGF-β-induced marker. Fibrillin-1 expression in SSM, but not in other metaplasia and carcinomatous components, in both MCBs and non-mammary carcinosarcomas, together with the inability of FBN1-knockdown to compromise migration and invasion, indicates that fibrillin-1 is a marker induced solely in spindle metaplasia during EMT and does not induce EMT nor lead to tumour aggressiveness."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Proteomic discovery of substrates of the cardiovascular protease ADAMTS7. The protease ADAMTS7 functions in the extracellular matrix (ECM) of the cardiovascular system. However, its physiological substrate specificity and mechanism of regulation remain to be explored. To address this, we conducted an unbiased substrate analysis using terminal amine isotopic labeling of substrates (TAILS). The analysis identified candidate substrates of ADAMTS7 in the human fibroblast secretome, including proteins with a wide range of functions, such as collagenous and noncollagenous extracellular matrix proteins, growth factors, proteases, and cell-surface receptors. It also suggested that autolysis occurs at Glu-729-Val-730 and Glu-732-Ala-733 in the ADAMTS7 Spacer domain, which was corroborated by N-terminal sequencing and Western blotting. Importantly, TAILS also identified proteolysis of the latent TGF-β-binding proteins 3 and 4 (LTBP3/4) at a Glu-Val and Glu-Ala site, respectively. Using purified enzyme and substrate, we confirmed ADAMTS7-catalyzed proteolysis of recombinant LTBP4. Moreover, we identified multiple additional scissile bonds in an N-terminal linker region of LTBP4 that connects fibulin-5/tropoelastin and fibrillin-1-binding regions, which have an important role in elastogenesis. ADAMTS7-mediated cleavage of LTBP4 was efficiently inhibited by the metalloprotease inhibitor TIMP-4, but not by TIMP-1 and less efficiently by TIMP-2 and TIMP-3. As TIMP-4 expression is prevalent in cardiovascular tissues, we propose that TIMP-4 represents the primary endogenous ADAMTS7 inhibitor. In summary, our findings reveal LTBP4 as an ADAMTS7 substrate, whose cleavage may potentially impact elastogenesis in the cardiovascular system. We also identify TIMP-4 as a likely physiological ADAMTS7 inhibitor."	"Marfan syndrome: A therapeutic challenge for long-term care. Marfan syndrome (MFS) is an autosomal dominant genetic disorder caused by mutations in the fibrillin-1 gene. Acute aortic dissection is the leading cause of death in patients suffering from MFS and consequence of medial degeneration and aneurysm formation. In addition to its structural function in the formation of elastic fibers, fibrillin has a major role in keeping maintaining transforming growth factor β (TGF-β) in an inactive form. Dysfunctional fibrillin increases TGF-β bioavailability and concentration in the extracellular matrix, leading to activation of proinflammatory transcription factors. In turn, these events cause increased expression of matrix metalloproteinases and cytokines that control the migration and infiltration of inflammatory cells into the aorta. Moreover, TGF-β causes accumulation of reactive oxygen species leading to further degradation of elastin fibers. All these processes result in medial elastolysis, which increases the risk of vascular complications. Although MFS is a hereditary disease, symptoms and traits are usually not noticeable at birth. During childhood or adolescence affected individuals present with severe tissue weaknesses, especially in the aorta, heart, eyes, and skeleton. Considering this, even young patients should avoid activities that exert additional stress and pressure on the aorta and the cardiovascular system. Thus, if the diagnosis is made and prophylactic treatment is initiated in a timely fashion, MFS and its preliminary pathophysiologic vascular remodeling can be successfully ameliorated reducing the risk of life-threatening complications. This commentary focuses on new research opportunities and molecular findings on MFS, discusses future challenges and possible long-term therapies."	"Synergistic Effect of Adipose-Derived Stem Cells and Fat Graft on Wrinkles in Aged Mice. The authors investigated the synergistic effects of adipose-derived stem cells and fat graft on skin wrinkles in a nude mouse model of chronologic aging. After 50 weeks of chronologic aging, 44 female BALB/c nude mice were classified into four groups: (1) negative control, (2) mice injected subcutaneously with fat on the back skin (0.5 cm), (3) mice injected with adipose-derived stem cells (1 × 10 cells in 0.5 cm Hanks balanced salt solution), and (4) mice injected with both fat (0.5 cm) and adipose-derived stem cells (1 × 10 cells in 0.5 cm Hanks balanced salt solution). The degree of wrinkling was evaluated using replica analysis, and skin biopsies were performed after 4 weeks. The dermal thickness and density of collagen were determined. Type I procollagen and matrix metalloproteinase levels were determined using real-time polymerase chain reaction and Western blot analysis. Tropoelastin, fibrillin-1, and CD31 levels were evaluated using immunohistochemistry. Based on the total wrinkle area, there was significant wrinkle reduction in the fat-treated and adipose-derived stem cell with fat-treated groups. Type I procollagen mRNA and collagen levels were significantly higher in the adipose-derived stem cell with fat-treated group than in the adipose-derived stem cell-treated and the fat-treated groups. In addition, the adipose-derived stem cells with fat graft group exhibited significantly higher CD31 expression level than the adipose-derived stem cell-treated and the fat-treated groups. Both adipose-derived stem cells and fat graft have a wrinkle-reducing effect and synergistically affect collagen synthesis and neovascularization."	"Histologic differences between the ascending and descending aortas in young adults with fibrillin-1 mutations. This study aimed to review the clinical results of young adult patients with aortic disease associated with mutations in the fibrillin-1 gene (FBN1) and disclose the histologic differences between the ascending and descending aortas. Between 2012 and 2015, 94 patients aged less than 50 years underwent surgery for thoracic aortic diseases. Forty-two patients (44.7%) had FBN-1 mutations. Of these, 40 patients (42.5%) with surgical specimens for histologic evaluation were included in the study. With the histologic results including the specimen sampled at their previous operations, cystic medial necrosis was classified into 3 grades according to the degree of the cystic area. Thirty-nine patients (97.5%) had aortic root dilatation (Z ≥2), and 13 patients (32.5%) had ectopia lentis. Thirty-nine patients (97.5%) fulfilled the diagnostic criteria for Marfan syndrome. There were no in-hospital deaths. The majority (27/29: 93.1%) of the specimens of the ascending aorta revealed cystic medial necrosis pattern. With grade III being the most severe condition, these cases were classified into grade I (n = 2), grade II (n = 5), and grade III (n = 20). In contrast, only 6 specimens (6/17: 35.3%) of the descending aorta showed a cystic medial necrosis pattern that was classified into grade I (n = 2) and grade III (n = 4), (P &lt; .00001). Fewer specimens of the descending aorta revealed cystic medial necrosis compared with those of the ascending aorta. This difference might influence the characteristic aortic disease in Marfan syndrome associated with FBN-1 mutations."	"Rapamycin attenuates a murine model of thoracic aortic aneurysm by downregulating the miR-126-3p mediated activation of MAPK/ERK signalling pathway. Thoracic aortic aneurysm (TAA) is fatal diseases, which leads to aortic rupture and sudden death. Blood pressure-lowering drugs are ineffective for most of the patients. Our previous study demonstrated the inhibition of endothelial secreted miR-126-3p by rapamycin ameliorate the aneurysmal phenotype of smooth muscle cells (SMCs) in vitro. Hence, this study aimed to evaluate the modulation and mechanism of miR-126-3p in a murine model of TAA (Fbn1<sup>C1039G/+</sup>). Our results showed that noticeable disturbed flow (DF) was observed in the aorta of Fbn1<sup>C1039G/+</sup> mice, and the expression of miR-126-3p was significantly increased under the DF in the cell chamber. This finding was also confirmed by tests in the corresponding DF area of the human aortic aneurysm tissue. Constant rapamycin administration significantly ameliorates the incidence and severity of Fbn1<sup>C1039G/+</sup> mice characterized by decreased aortic media degradation, macrophage infiltration and MMP2/9 expression in the aortic wall. Mechanistic studies showed that rapamycin attenuates TAA progression by inhibiting miR-126-3p through ERK1/2 inactivation."	"Commentary: Utilizing pathologic variation to inform clinical practice. NA"	"Generation of a human iPSC line from a patient with Marfan syndrome caused by mutation in FBN1. Marfan syndrome (MFS) is a heritable connective tissue disease caused by mutations in FBN1, encoding the extracellular matrix protein fibrillin-1. In this study, we generated human induced pluripotent stem cells (iPSCs) from dermal fibroblasts of an MFS patient with the p. E2130K (c. 6388G &gt; A) mutation. The generated hiPSC line had a normal karyotype, showed robust expression of pluripotency markers and was able to differentiate into all three germ layers in vivo. This cell line can provide a platform for understanding the pathogenic mechanisms of MFS related to FBN1 mutations. Resource table."	"Transcript abundance of stromal and thecal cell related genes during bovine ovarian development. Movement and expansion of mesonephric-derived stroma appears to be very important in the development of the ovary. Here, we examined the expression of 24 genes associated with stroma in fetal ovaries during gestation (n = 17; days 58-274) from Bos taurus cattle. RNA was isolated from ovaries for quantitative RT-PCR. Expression of the majority of genes in TGFβ signalling, stromal transcription factors (NR2F2, AR), and some stromal matrix genes (COL1A1, COL3A1 and FBN1, but not FBN3) showed a positive linear increase with gestational age. Expression of genes associated with follicles (INSL3, CYP17A1, CYP11A1 and HSD3B1), was low until mid-gestation and then increased with gestational age. LHCGR showed an unusual bimodal pattern; high levels in the first and last trimesters. RARRES1 and IGFBP3 also increased with gestational age. To relate changes in gene expression in stromal cells with that in non stromal cells during development of the ovary we combined the data on the stromal genes with another 20 genes from non stromal cells published previously and then performed hierarchical clustering analysis. Three major clusters were identified. Cluster 1 genes (GATA4, FBN3, LHCGR, CYP19A1, ESR2, OCT4, DSG2, TGFB1, CCND2, LGR5, NR5A1) were characterised by high expression only in the first trimester. Cluster 2 genes (FSHR, INSL3, HSD3B1, CYP11A1, CYP17A1, AMH, IGFBP3, INHBA) were highly expressed in the third trimester and largely associated with follicle function. Cluster 3 (COL1A1, COL3A1, FBN1, TGFB2 TGFB3, TGFBR2, TGFBR3, LTBP2, LTBP3, LTBP4, TGFB1I1, ALDH1A1, AR, ESR1, NR2F2) had much low expression in the first trimester rising in the second trimester and remaining at that level during the third trimester. Cluster 3 contained members of two pathways, androgen and TGFβ signalling, including a common member of both pathways namely the androgen receptor cofactor TGFβ1 induced transcript 1 protein (TGFB1I1; hic5). GATA4, FBN3 and LHCGR, were highly correlated with each other and were expressed highly in the first trimester during stromal expansion before follicle formation, suggesting that this could be a critical phase in the development of the ovarian stroma."	"Localization, fate and interactions of Emilin-1 in human skin. Emilin-1 is a versatile protein abundant in tissues where resilience and elastic recoil are prominent and interacting with components of the extracellular matrix. Still, little is known about Emilin-1 in the skin. Therefore, we investigated Emilin-1 in the skin, its localization, its fate upon ageing, its interactions with other proteins and the effect of its knockdown. Skin explants from young or old Caucasian women, immunofluorescently labelled by anti-Emilin-1, anti-Fibrillin-1 and anti-Elastin antibodies, were analysed using confocal microscopy. Skin explants subjected to UV-induced skin ageing were also analysed. Colocalization of Emilin-1 with Collagen IV, Fibrillin-1 and Elastin was studied by multiphoton microscopy and co-immunoprecipitation. Finally, the effect of Emilin-1 extinction was studied by producing small interfering RNA (siRNA) knockdown fibroblasts and by analysing the outcome on selected genes. In skin sections from young donors, Emilin-1 localizes similarly to Elastin and Fibrillin-1. In the papillary dermis, it shows clear and ramified structures, perpendicular to the dermo-epidermal junction that are reminiscent of the oxytalan fibres. In the reticular dermis, Emilin-1 signal appears identical to that of the elastic fibres network. Upon intrinsic or UV-induced ageing, the signal associated with Emilin-1 is drastically reduced and disorganized. Multiphoton microscopy study shows that, as expected, Emilin-1 colocalizes with Elastin. It also colocalizes with Collagen IV in the basement membrane and within dermal fibroblasts. Interaction of Emilin-1 with Elastin and Collagen IV was also found by co-immunoprecipitation. It also reveals interaction with Laminin-5. Finally, siRNA-mediated knockdown of EMILIN-1 show little effect on the expression level of the 61 genes we studied. The most striking change is a downregulation of fibroblast growth factor receptor 2 that show a decrease similar to that of EMILIN-1 itself and after 8 days a downregulation of COL6A1. In skin, Emilin-1 locates in the dermis, up to the basement membrane, interacting with components of the extracellular matrix but also with the anchoring complex. These interactions are important for cell adhesion, migration, proliferation and would suggest that Emilin-1 might be important for maintaining the 3D structure of the extracellular matrix. Emilin-1 est une protéine polyvalente, abondante dans les tissus où résilience et élasticité sont importantes et qui interagit avec la matrice extracellulaire. Pourtant, la protéine Emilin-1 a été peu étudiée dans la peau. Nous avons donc étudié sa localisation, son devenir lors du vieillissement, ses interactions avec d'autres protéines et l'effet de son inhibition dans la peau. MÉTHODES: Des explants de peau de femmes caucasiennes jeunes ou âgées, marqués par immunofluorescence avec des anticorps anti-Emilin-1, anti-Fibrilline-1 et anti-Élastine, ont été analysés par microscopie confocale. Des explants cutanés soumis au soumis aux UV pour mimer un photo-vieillissement ont également été analysés. La co-localisation de l'Emilin-1 avec le collagène IV, la fribrilline-1 et l’élastine a été étudiée par microscopie multiphotonique et par co-immunoprécipitation. Enfin, l'effet de l'inhibition de l'expression de la protéine Emilin-1 par interférence ARN a été étudié sur 61 gènes. RÉSULTATS: Dans les coupes de peau de jeunes donneurs, Emilin-1 est localisée comme l’élastine et la fibrilline-1. Dans le derme papillaire, elle présente des structures claires et ramifiées, perpendiculaires à la jonction dermo-épidermique, qui font penser aux fibres d'oxytalane. Dans le derme réticulaire, le signal de l'Emilin-1 apparaît identique à celui du réseau de fibres élastiques. Lors du vieillissement intrinsèque ou induit par les UV, le signal associé à Emilin-1 est considérablement réduit et désorganisé. Une étude en microscopie multiphotonique montre que l'Emilin-1 est co-localisée avec de l’élastine. Elle est aussi co-localisée avec le collagène IV dans la membrane basale et dans les fibroblastes du derme. La co-immunoprécipitation montre l'existence d'interactions entre l'Emilin-1 et l'Elastine ou le collagène IV. Une interaction avec la laminine-5 a aussi été mise en évidence. Enfin, l'inhibition de l'expression de l’EMILIN-1 n'a que peu d'effet sur l'expression des 61 gènes étudiés. Le changement le plus frappant est une diminution de l'expression de FGFR2 (récepteur 2 du facteur de croissance des fibroblastes), diminution similaire à celle d’EMILIN-1, et, après 8 jours, une diminution de l'expression de COL6A1. Dans la peau, Emilin-1 se localise dans le derme, jusqu’à la membrane basale, et interagit avec les composants de la matrice extracellulaire mais aussi avec les complexes d'ancrage. Ces interactions sont importantes pour l'adhésion, la migration, la prolifération cellulaire et suggéreraient qu'Emilin-1 pourrait être important pour le maintien de la structure de la matrice extracellulaire."	"Clinical Significance of Aortic Root Modification Associated With Bicuspid Aortic Valve in Marfan Syndrome. Both bicuspid aortic valve (BAV) and Marfan syndrome have been associated with aortic dissection risk, but it is unknown whether the presence of BAV is associated with an increased aortic risk in patients with an FBN1 gene mutation. We evaluated aortic diameters, aortic valve function, and aortic shape in Marfan syndrome patients with and without BAV and reported aortic events during follow-up. All patients with an FBN1 gene mutation evaluated in our clinic were included. Aortic root diameters were measured, and the aortic valve was studied using echocardiography at each visit. Of the 1437 patients with an FBN1 gene mutation, 26 patients (1.8%) had a BAV. Both aortic root maximal diameter and normalized Z score were larger at all ages, in patients with BAV when compared with patients with tricuspid aortic valve. Prophylactic aortic root surgery tended to be performed in younger patients when BAV was present, although aortic diameter threshold was similar in the 2 populations. No aortic dissection was observed in Marfan syndrome patients with BAV. In patients with a FBN1 mutation, BAV is associated with larger aortic root diameter, with no difference in evolution of Z score with age. We found a trend towards prophylactic aortic root surgery at younger ages but similar aortic diameter thresholds without occurrence of aortic dissection. We did not find any evidence for lowering aortic diameter thresholds used to propose preventive aortic root surgery in the presence of BAV in patients with FBN1 mutations."	"Mutation screening in the FBN1 gene responsible for Marfan syndrome and related disorder in Chinese families. Previous studies showed that the fibrillin-1 gene (FBN1) is responsible for Marfan sydrome (MFS) pathogenesis. This study is conducted to screen for mutations in the FBN1 gene in Chinese families with MFS. Eight families with MFS and related disorder were recruited in this study. All available family members underwent complete physical, ophthalmic, and cardiovascular examination. Mutation screening was performed using targeted next-generation sequencing. Candidate variants were amplified by polymerase chain reaction and verified by direct Sanger sequencing. Four novel heterozygous mutations in FBN1, including c.2861G&gt;T (p.R954L), c.4087G&gt;A (p.D1363N), c.4987T&gt;G (p.C1663G), and c.5032T&gt;G (p.Y1678D), as well as four known mutations, c.3617G&gt;A (p.G1206D), c.4460A&gt;G (p.D1487G), c.4588C&gt;T (p.R1530C), and c.718C&gt;T (p.R240C) were identified. Affected patients from each family were found to carry one of the mutations, whereas the unaffected members and 1,086 normal controls were not. Each mutation was found to be cosegregated with MFS phenotype and related disorder in each family. Multiple sequence alignment of the human fibrillin-1 protein showed that these mutations occurred in a highly conserved region among different species. Eight FBN1 mutations were identified in Chinese families with MFS and related disorder. These data expands FBN1 mutation spectrum and further emphasizes the role of FBN1 in the pathogenesis of MFS."	"Management Strategies of Ocular Abnormalities in Patients with Marfan Syndrome: Current Perspective. Marfan syndrome is an autosomal dominant genetic connective tissue disorder that results from mutations in the fibrillin-1 gene located on chromosome band 15q15-21. Fibrillin, a glycoprotein, is widely expressed throughout the body and contributes to the elasticity and force-bearing capacity of connective tissue. In the eye, fibrillin is a key constituent of the ciliary zonules, which suspend the crystalline lens in place. The zonular defect leads to ectopia lentis, which is a hallmark of Marfan ocular abnormalities and occurs in 60% to 80% of cases. Other less common ocular features of Marfan syndrome are increased axial length, astigmatism, and flat cornea. Visual function in Marfan syndrome could be affected in several ways: ectopia lentis, refractive error, amblyopia, retinal detachment, cataract, and glaucoma. Management of a subluxated lens starts with the correction of refractive error with eyeglasses in mild cases. In more severe cases, especially when the lens bisects the pupil, complete correction of refractive error is impossible without removing the subluxated lens. The best method for visual rehabilitation after lens extraction is still debated. Aphakic Artisan lens implantation at the time of subluxated lens removal results in good visual outcomes with an acceptable safety profile. Studies with longer term follow-up and larger sample populations are needed to evaluate the safety of this procedure in patients with Marfan syndrome."	"Primary midgut volvulus in a patient with Marfan syndrome. Marfan syndrome is a mutation in the fibrillin-1 gene resulting in a connective tissue disorder primarily affecting musculoskeletal, cardiovascular and ocular systems. However, patients with Marfan's rarely manifest gastrointestinal symptoms. Midgut volvulus is abnormal twisting of small bowel around its mesentery that can result in compromising blood flow to the bowel causing intestinal ischemia and obstruction. Primary midgut volvulus is a term used when there is no underlying cause for the volvulus. This case describes an 80-year-old female with Marfan syndrome presenting with primary midgut volvulus, which preoperatively was suspected based on imaging, and later confirmed upon operative exploration. The small bowel mesentery was long with a narrow base twisted around its mesentery 360°. The long narrow base and floppy mesentery likely contributed to hypermobility leading to volvulus and small bowel obstruction. To our knowledge, this is the first reported case of primary midgut volvulus associated with Marfan's syndrome."	"Genetics of Thoracic and Abdominal Aortic Diseases. Dissections or ruptures of aortic aneurysms remain a leading cause of death in the developed world, with the majority of deaths being preventable if individuals at risk are identified and properly managed. Genetic variants predispose individuals to these aortic diseases. In the case of thoracic aortic aneurysm and dissections (thoracic aortic disease), genetic data can be used to identify some at-risk individuals and dictate management of the associated vascular disease. For abdominal aortic aneurysms, genetic associations have been identified, which provide insight on the molecular pathogenesis but cannot be used clinically yet to identify individuals at risk for abdominal aortic aneurysms. This compendium will discuss our current understanding of the genetic basis of thoracic aortic disease and abdominal aortic aneurysm disease. Although both diseases share several pathogenic similarities, including proteolytic elastic tissue degeneration and smooth muscle dysfunction, they also have several distinct differences, including population prevalence and modes of inheritance."	"Reference Expression Profile of Three FBN1 Transcript Isoforms and Their Association with Clinical Variability in Marfan Syndrome. Marfan syndrome (MFS) is a rare connective tissue disorder mainly due to mutations in the FBN1 gene. Great phenotypic variability is notable for age of onset, the presence and absence, and the number and the severity of the symptoms. Our team showed that FBN1 gene expression level was a good surrogate endpoint for severity of some MFS clinical features. Eight alternative transcripts are referenced for the FBN1 gene. We hypothesized that MFS clinical variability could be related to specific FBN1 isoforms. Isoform expression profiles were investigated in skin and adventitial fibroblasts from controls and MFS patients. The results of the study showed that, in skin and adventitial fibroblasts, only three isoforms were found: FBN1_001, FBN1_004, and FBN1_009. The main isoform was FBN1_001 and it was significantly reduced in skin and adventitial fibroblasts of MFS patients. The expressions of FBN1_004 and FBN1_009 isoforms were similar between controls and MFS patients. However, the expression of the three isoforms was correlated only in patients. Furthermore, their expression levels were associated with the presence of ectopia lentis in MFS patients. Therefore, our results highlight that the two minor alternatively spliced FBN1 isoforms play a possible role in the pathogenesis of the disease."	"Genetic diversity and pathogenic variants as possible predictors of severity in a French sample of nonsyndromic heritable thoracic aortic aneurysms and dissections (nshTAAD). Heritable thoracic aortic aneurysms and dissections (hTAAD) are life-threatening complications of well-known syndromic diseases or underdiagnosed nonsyndromic heritable forms (nshTAAD). Both have an autosomal dominant transmission and are genetically heterogeneous. Our objective was to describe the relevance of molecular diagnosis in these patients and the contribution of each gene in nshTAAD. Two hundred twenty-six consecutive nshTAAD probands, either young (&lt;45 years) sporadic or familial cases were included. A next-generation sequencing capture panel comprising 23 known disease-causing genes was performed. Class 4 or 5 variants were identified in 18% of the nshTAAD probands, while class 3 variants were found in 10% of them. The yield in familial cases was greater than in sporadic cases. SMAD3 and FBN1 genes were the major disease-causing genes. Unexpectedly, no premature termination codon variant was identified in the FBN1 gene. Furthermore, we report for the first time that aortic dissection or surgery occurred significantly more often and earlier in probands with a class 4 or 5 pathogenic variant. This study indicates that genetic screening using NGS is efficient in young and familial nshTAAD. The presence of a pathogenic variant has a possible predictive value, which needs to be further investigated because it may influence care."	"Limb- and tendon-specific Adamtsl2 deletion identifies a role for ADAMTSL2 in tendon growth in a mouse model for geleophysic dysplasia. Geleophysic dysplasia is a rare, frequently lethal condition characterized by severe short stature with progressive joint contractures, cardiac, pulmonary, and skin anomalies. Geleophysic dysplasia results from dominant fibrillin-1 (FBN1) or recessive ADAMTSL2 mutations, suggesting a functional link between ADAMTSL2 and fibrillin microfibrils. Mice lacking ADAMTSL2 die at birth, which has precluded analysis of postnatal limb development and mechanisms underlying the skeletal anomalies of geleophysic dysplasia. Here, detailed expression analysis of Adamtsl2 using an intragenic lacZ reporter shows strong Adamtsl2 expression in limb tendons. Expression in developing and growing bones is present in regions that are destined to become articular cartilage but is absent in growth plate cartilage. Consistent with strong tendon expression, Adamtsl2 conditional deletion in limb mesenchyme using Prx1-Cre led to tendon anomalies, albeit with normal collagen fibrils, and distal limb shortening, providing a mouse model for geleophysic dysplasia. Unexpectedly, conditional Adamtsl2 deletion using Scx-Cre, a tendon-specific Cre-deleter strain, which does not delete in cartilage, also impaired skeletal growth. Recombinant ADAMTSL2 is shown here to colocalize with fibrillin microfibrils in vitro, and enhanced staining of fibrillin-1 microfibrils was observed in Prx1-Cre Adamtsl2 tendons. The findings show that ADAMTSL2 specifically regulates microfibril assembly in tendons and that proper microfibril composition in tendons is necessary for tendon growth. We speculate that reduced bone growth in geleophysic dysplasia may result from external tethering by short tendons rather than intrinsic growth plate anomalies. Taken together with previous work, we suggest that GD results from abnormal microfibril assembly in tissues, and that ADAMTSL2 may limit the assembly of fibrillin microfibrils."	"Expanding the spectrum of causative mutations of Marfan syndrome: Is there a role for the elastin gene? NA"	"POLR3A Identified as Major Locus for Autosomal Recessive Wiedemann-Rautenstrauch Syndrome: New findings show &quot;compelling evidence&quot; that POLR3A mutations underlie the etiology of autosomal-recessive WRS. NA"	"Identification of biomarkers associated with progression and prognosis in bladder cancer via co-expression analysis. Bladder cancer is one of the most common genitourinary malignancies, with a high rate of recurrence and progression. The prognosis for patients with bladder cancer, especially muscle-invasive bladder cancer, remains poor despite systemic therapy. To explore the underlying disease mechanisms and identify more effective biomarkers for bladder cancer. Weighted gene co-expression network analysis (WGCNA) and protein-protein interaction (PPI) network analysis were applied to identify hub genes correlated with the bladder cancer progression. Survival analyses were then conducted to identify potential biomarkers correlated with the prognosis of bladder cancer. Finally, validation and analysis of these potential biomarkers were conducted by a series of bioinformatics analyses. Based on the results of weighted gene co-expression network analysis and protein-protein interaction network analysis, ten hub genes closely correlated with bladder cancer progression were identified in the relevant module. Survival analyses of these genes indicated that elevated expressions of six potential biomarkers (COL3A1, FN1, COL5A1, FBN1, COL6A1 and THBS2) were significantly associated with a worse overall survival. Furthermore, these 6 potential biomarkers were validated in association with the progression of bladder cancer. Bladder cancer samples with higher expression of these genes were most significantly enriched in gene set associated with ECM-receptor interaction. This study identified several biomarkers associated with bladder cancer progression and prognosis. As novel findings, these may have important clinical implications for diagnosis, treatment and prognosis prediction."	"Extracranial Internal Carotid Artery Aneurysm in a Patient with Marfan Syndrome. Extracranial internal carotid artery (ICA) aneurysms are rare and most of them are considered of atherosclerotic etiology. Marfan syndrome (MS) is a systemic connective tissue disorder caused by mutation in the extracellular matrix protein fibrillin 1. Clinical manifestations of the MS include aortic aneurysms, dislocation of the ocular lens, and long bone overgrowth. The presence of extracranial ICA aneurysm in patients with MS is very rare. We report a 62-year-old female patient with MS presented with an extracranial ICA aneurysm. She was treated with aneurysmectomy and end-to-end anastomosis, with good outcomes. Only 10 cases of patients with MS and extracranial ICA aneurysm have been described in the literature. Clinical presentation, treatment, and outcome of these patients are reviewed and discussed."	"An integrative systems approach identifies novel candidates in Marfan syndrome-related pathophysiology. Marfan syndrome (MFS) is an autosomal dominant genetic disorder caused by mutations in the FBN1 gene. Although many peripheral tissues are affected, aortic complications, such as dilation, dissection and rupture, are the leading causes of MFS-related mortality. Aberrant TGF-beta signalling plays a major role in the pathophysiology of MFS. However, the contributing mechanisms are still poorly understood. Here, we aimed at identifying novel aorta-specific pathways involved in the pathophysiology of MFS. For this purpose, we employed the Fbn1 under-expressing mgR/mgR mouse model of MFS. We performed RNA-sequencing of aortic tissues of 9-week-old mgR/mgR mice compared with wild-type (WT) mice. With a false discovery rate &lt;5%, our analysis revealed 248 genes to be differentially regulated including 20 genes previously unrelated with MFS-related pathology. Among these, we identified Igfbp2, Ccl8, Spp1, Mylk2, Mfap4, Dsp and H19. We confirmed the expression of regulated genes by quantitative real-time PCR. Pathway classification revealed transcript signatures involved in chemokine signalling, cardiac muscle contraction, dilated and hypertrophic cardiomyopathy. Furthermore, our immunoblot analysis of aortic tissues revealed altered regulation of pSmad2 signalling, Perk1/2, Igfbp2, Mfap4, Ccl8 and Mylk2 protein levels in mgR/mgR vs WT mice. Together, our integrative systems approach identified several novel factors associated with MFS-aortic-specific pathophysiology that might offer potential novel therapeutic targets for MFS."	"Next-generation sequencing of 32 genes associated with hereditary aortopathies and related disorders of connective tissue in a cohort of 199 patients. Heritable factors play an important etiologic role in connective tissue disorders (CTD) with vascular involvement, and a genetic diagnosis is getting increasingly important for gene-tailored, personalized patient management. We analyzed 32 disease-associated genes by using targeted next-generation sequencing and exome sequencing in a clinically relevant cohort of 199 individuals. We classified and refined sequence variants according to their likelihood for pathogenicity. We identified 1 pathogenic variant (PV; in FBN1 or SMAD3) in 15 patients (7.5%) and ≥1 likely pathogenic variant (LPV; in COL3A1, FBN1, FBN2, LOX, MYH11, SMAD3, TGFBR1, or TGFBR2) in 19 individuals (9.6%), together resulting in 17.1% diagnostic yield. Thirteen PV/LPV were novel. Of PV/LPV-negative patients 47 (23.6%) showed ≥1 variant of uncertain significance (VUS). Twenty-five patients had concomitant variants. In-depth evaluation of reported/calculated variant classes resulted in reclassification of 19.8% of variants. Variant classification and refinement are essential for shaping mutational spectra of disease genes, thereby improving clinical sensitivity. Obligate stringent multigene analysis is a powerful tool for identifying genetic causes of clinically related CTDs. Nonetheless, the relatively high rate of PV/LPV/VUS-negative patients underscores the existence of yet unknown disease loci and/or oligogenic/polygenic inheritance."	"Coincidence of Andersen-Tawil syndrome and Marfan syndrome: A case report. We report on a 44-year-old woman with coincidence of two genetic disorders: Andersen-Tawil syndrome and Marfan syndrome. In both, life-threatening arrhythmias could occur. A 44-year-old woman presented acute ascending aortic dissection with aortic arch involvement and chronic thoracic descending and abdominal aortic dissection. Clinical and genetic examination confirmed Marfan syndrome (MFS) diagnosis. Due to repolarization disorder in ECG and premature ventricular contractions in Holter ECG, the sequencing data were analyzed again and mutation in KCNJ2 gene was identified. The case showed that coincidence of Andersen-Tawil syndrome (ATS) and MFS did not provoke life-threatening arrhythmias. Complication was rather caused by expression of FBN1 mutation."	"The Impact of IL-16 3'UTR Polymorphism rs859 on Lung Carcinoma Susceptibility among Chinese Han Individuals. Lung carcinoma is the most common cancer and cause of cancer deaths among both males and females in China. Previously, genetic variants located in gene untranslated region have been well established as interfering factors in mRNA translation and confirmed playing critical roles in lung oncogenesis. However, the correlation between polymorphisms in gene 3' untranslated region and lung cancer risk is less reported in China Han population. In this study, polymorphisms in 3'-untranslated region of IL-16, CYP24A1, and FBN1 were determined in 322 lung cancer patients and 384 healthy controls with the usage of Sequenom MassARRAY. The correlation between selected variants and lung cancer risk was examined by unconditional logistic regression analysis with or without adjustments for age, gender, smoking status, and alcohol drinking status. Additionally, stratification analysis was applied to detect the associations of SNPs with lung cancer in different subgroups. As the results, significant relationships were found between IL-16 rs859 and lung cancer susceptibility in recessive model (OR= 0.65, 95% CI: 0.44-0.96, P= 0.029) and log-additive model (OR= 0.76, 95% CI: 0.60-0.96, P= 0.019). Moreover, adjusted stratified analysis also revealed the important effects of IL-16 rs859 on lung cancer risk among individuals aged older than 50, males, and nondrinkers. IL-16 rs859 showed statistically significant evidence associated with susceptibility to lung adenocarcinoma and lung small cell carcinoma in Chinese Han population as well. Our research demonstrated that genetic variant rs859 of IL-16 3'UTR was associated with lung cancer risk in Chinese Han population and the result might be exploited as a new biomarker for lung cancer assessment and prevention."	"Targeted deletion of fibrillin-1 in the mouse eye results in ectopia lentis and other ocular phenotypes associated with Marfan syndrome. Fibrillin is an evolutionarily ancient protein that lends elasticity and resiliency to a variety of tissues. In humans, mutations in fibrillin-1 cause Marfan and related syndromes, conditions in which the eye is often severely affected. To gain insights into the ocular sequelae of Marfan syndrome, we targeted Fbn1 in mouse lens or non-pigmented ciliary epithelium (NPCE). Conditional knockout of Fbn1 in NPCE, but not lens, profoundly affected the ciliary zonule, the system of fibrillin-rich fibers that centers the lens in the eye. The tensile strength of the fibrillin-depleted zonule was reduced substantially, due to a shift toward production of smaller caliber fibers. By 3 months, zonular fibers invariably ruptured and mice developed ectopia lentis, a hallmark of Marfan syndrome. At later stages, untethered lenses lost their polarity and developed cataracts, and the length and volume of mutant eyes increased. This model thus captures key aspects of Marfan-related syndromes, providing insights into the role of fibrillin-1 in eye development and disease."	"MicroCT imaging reveals differential 3D micro-scale remodelling of the murine aorta in ageing and Marfan syndrome. Aortic wall remodelling is a key feature of both ageing and genetic connective tissue diseases, which are associated with vasculopathies such as Marfan syndrome (MFS). Although the aorta is a 3D structure, little attention has been paid to volumetric assessment, primarily due to the limitations of conventional imaging techniques. Phase-contrast microCT is an emerging imaging technique, which is able to resolve the 3D micro-scale structure of large samples without the need for staining or sectioning. Methods: Here, we have used synchrotron-based phase-contrast microCT to image aortae of wild type (WT) and MFS Fbn1<sup>C1039G/+</sup> mice aged 3, 6 and 9 months old (n=5). We have also developed a new computational approach to automatically measure key histological parameters. Results: This analysis revealed that WT mice undergo age-dependent aortic remodelling characterised by increases in ascending aorta diameter, tunica media thickness and cross-sectional area. The MFS aortic wall was subject to comparable remodelling, but the magnitudes of the changes were significantly exacerbated, particularly in 9 month-old MFS mice with ascending aorta wall dilations. Moreover, this morphological remodelling in MFS aorta included internal elastic lamina surface breaks that extended throughout the MFS ascending aorta and were already evident in animals who had not yet developed aneurysms. Conclusions: Our 3D microCT study of the sub-micron wall structure of whole, intact aorta reveals that histological remodelling of the tunica media in MFS could be viewed as an accelerated ageing process, and that phase-contrast microCT combined with computational image analysis allows the visualisation and quantification of 3D morphological remodelling in large volumes of unstained vascular tissues."	"Loss of ciliary zonule protein hydroxylation and lens stability as a predicted consequence of biallelic ASPH variation. Stability of the crystalline lens requires formation of microfibril bundles and their higher-order structures of ciliary zonules. Trauma, malformation, or degeneration of the ciliary zonules can lead to dislocation or displacement of the lens, which in turn can cause transient or permanent loss of visual acuity. The purpose of this study was to identify the predicted substrates of aspartyl/asparaginyl hydroxylase (ASPH), a 2-oxoglutarate- and Fe<sup>2+</sup>-dependent hydroxylase, which may account for the lens instability phenotype of ASPH-associated syndromes. A single proband of European ancestry with spherophakia and high myopia was subjected to exome sequencing. Proteins containing the ASPH hydroxylation motif were identified within the SwissProt protein database. We identified 105 putative substrates of ASPH-mediated hydroxylation in the human proteome, of which two (fibrillin-1 and latent transforming growth factor beta binding protein-2) are associated with inherited ectopia lentis syndromes, and are essential for microfibril and ciliary zonule development. Our results implicate ASPH-mediated hydroxylation in the formation of FBN1/LTBP2 microfibril bundles and competent ciliary zonules."	"A genomic map of climate adaptation in Mediterranean cattle breeds. Domestic species such as cattle (Bos taurus taurus and B. t. indicus) represent attractive biological models to characterize the genetic basis of short-term evolutionary response to climate pressure induced by their post-domestication history. Here, using newly generated dense SNP genotyping data, we assessed the structuring of genetic diversity of 21 autochtonous cattle breeds from the whole Mediterranean basin and performed genome-wide association analyses with covariables discriminating the different Mediterranean climate subtypes. This provided insights into both the demographic and adaptive histories of Mediterranean cattle. In particular, a detailed functional annotation of genes surrounding variants associated with climate variations highlighted several biological functions involved in Mediterranean climate adaptation such as thermotolerance, UV protection, pathogen resistance or metabolism with strong candidate genes identified (e.g., NDUFB3, FBN1, METTL3, LEF1, ANTXR2 and TCF7). Accordingly, our results suggest that main selective pressures affecting cattle in Mediterranean area may have been related to variation in heat and UV exposure, in food resources availability and in exposure to pathogens, such as anthrax bacteria (Bacillus anthracis). Furthermore, the observed contribution of the three main bovine ancestries (indicine, European and African taurine) in these different populations suggested that adaptation to local climate conditions may have either relied on standing genomic variation of taurine origin, or adaptive introgression from indicine origin, depending on the local breed origins. Taken together, our results highlight the genetic uniqueness of local Mediterranean cattle breeds and strongly support conservation of these populations."	"Everolimus depletes plaque macrophages, abolishes intraplaque neovascularization and improves survival in mice with advanced atherosclerosis. Inhibition of the mechanistic target of rapamycin (mTOR) is a promising approach to halt atherogenesis in different animal models. This study evaluated whether the mTOR inhibitor everolimus can stabilize pre-existing plaques, prevent cardiovascular complications and improve survival in a mouse model of advanced atherosclerosis. ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mice (n = 24) were fed a Western diet (WD) for 12 weeks. Subsequently, mice were treated with everolimus (1.5 mg/kg daily) or vehicle for another 12 weeks while the WD continued. Despite hypercholesterolemia, everolimus treatment was associated with a reduction in circulating Ly6C<sup>high</sup> monocytes (15 vs. 28% of total leukocytes, p = 0.046), a depletion of plaque macrophages (2.1 vs. 4.1%, p = 0.040) and an abolishment of intraplaque neovascularization, which are all indicative of a more stable plaque phenotype. Moreover, everolimus reduced hypoxic brain damage and improved cardiac function, which led to increased survival (100 vs. 67% of animals, p = 0.038). Everolimus enhances features of plaque stability and counters cardiovascular complications in ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mice, even when administered at a later stage of the disease."	"Statins Reduce Thoracic Aortic Aneurysm Growth in Marfan Syndrome Mice via Inhibition of the Ras-Induced ERK (Extracellular Signal-Regulated Kinase) Signaling Pathway. Background Statins reduce aneurysm growth in mouse models of Marfan syndrome, although the mechanism is unknown. In addition to reducing cholesterol, statins block farnesylation and geranylgeranylation, which participate in membrane-bound G-protein signaling, including Ras. We dissected the prenylation pathway to define the effect of statins on aneurysm reduction. Methods and Results Fbn1<sup>C1039G/+</sup> mice were treated with (1) pravastatin (HMG-CoA [3-hydroxy-3-methylglutaryl coenzyme A] reductase inhibitor), (2) manumycin A ( MA ; FPT inhibitor), (3) perillyl alcohol ( GGPT 1 and -2 inhibitor), or (4) vehicle control from age 4 to 8 weeks and euthanized at 12 weeks. Histological characterization was performed. Protein analysis was completed on aortic specimens to measure ERK (extracellular signal-regulated kinase) signaling. In vitro Fbn1<sup>C1039G/+</sup> aortic smooth muscle cells were utilized to measure Ras-dependent ERK signaling and MMP (matrix metalloproteinase) activity. Pravastatin and MA significantly reduced aneurysm growth compared with vehicle control (n=8 per group). In contrast, PA did not significantly decrease aneurysm size. Histology illustrated reduced elastin breakdown in MA -treated mice compared with vehicle control (n=5 per group). Although elevated in control Marfan mice, both phosphorylated c-Raf and phosphorylated ERK 1/2 were significantly reduced in MA -treated mice (4-5 per group). In vitro smooth muscle cell studies confirmed phosphorylated cR af and phosphorylated ERK 1/2 signaling was elevated in Fbn1<sup>C1039G/+</sup> smooth muscle cells (n=5 per group). Fbn1<sup>C1039G/+</sup> smooth muscle cell Ras-dependent ERK signaling and MMP activity were reduced following MA treatment (n=5 per group). Corroborating in vitro findings, MMP activity was also decreased in pravastatin-treated mice. Conclusions Aneurysm reduction in Fbn1<sup>C1039G/+</sup> mice following pravastatin and MA treatment was associated with a decrease in Ras-dependent ERK signaling. MMP activity can be reduced by diminishing Ras signaling."	"Identification of a novel mutation in FBN1 in a Chinese family with inherited ectopia lentis by targeted NGS. To diagnose a Chinese family with inherited ectopia lentis in a genetic method and analyze the genotype-phenotype correlation. The phenotype of each family member was identified by detailed clinical examination. We used targeted next generation sequencing (NGS) to identify mutations in FBN1 in an efficient and accurate way. The mutation in FBN1 was confirmed in all affected family members by Sanger sequencing. A novel mutation c.385T&gt;C (p.C129R) in FBN1 was identified in the proband by targeted NGS. The mutation was segregated in all affected family members and contributes to specific disease phenotypes. The same mutation was not found in other unaffected relatives and a 100 normal random population by Sanger sequencing. Our study reports a novel mutation in FBN1 in a Chinese family and to diagnose this family as Marfan syndrome, we also expand the genotype-phenotype correlation of this disease."	"Type A aortic dissection in pregnant patients with fibrillin-1 gene mutations: Two case reports and a literature review. In acute aortic dissection (AD) in pregnancy, increased cardiovascular stress due to pregnancy is an important factor leading to an emergent aortic event. It is rare but often results in a devastating event for both the pregnant patient and the foetus. Two cases of acute AD (Stanford type A) in pregnant females are presented in the present study. The patients were diagnosed via echocardiography, and the diagnosis was confirmed with computed tomography angiography prior to aortic surgery. Up to 50% of ADs in pregnancy occur in patients with fibrillin-1 (FBN1) gene mutations. The FBN1 gene was sequenced in both patients, and notable, novel pathogenic mutations of FBN1 were identified in both patients. A literature review was also performed on available diagnostic imaging and other measurements regarding AD during pregnancy. The authors suggest that the relevant content may have important clinical implications in raising disease awareness, arranging test rationally and choosing an intervention method."	"The Fibrillin-1 RGD Integrin Binding Site Regulates Gene Expression and Cell Function through microRNAs. Fibrillins are the major components of microfibrils in the extracellular matrix of elastic and non-elastic tissues. Fibrillin-1 contains one evolutionarily conserved RGD sequence that mediates cell-matrix interactions through cell-surface integrins. Here, we present a novel paradigm how extracellular fibrillin-1 controls cellular function through integrin-mediated microRNA regulation. Comparative mRNA studies by global microarray analysis identified growth factor activity, actin binding and integrin binding as the most important functional groups that are regulated upon fibrillin-1 binding to dermal fibroblasts. Many of these mRNAs are targets of miRNAs that were identified when RNA from the fibrillin-1-ligated fibroblasts was analyzed by a miRNA microarray. The expression profile was specific to fibrillin-1 since interaction with fibronectin displayed a partially distinct profile. The importance of selected miRNAs for the regulation of the identified mRNAs was suggested by bioinformatics prediction and the interactions between miRNAs and mRNAs were experimentally validated. Functionally, we show that miR-503 controls p-Smad2-dependent TGF-β signaling, and that miR-612 and miR-3185 are involved in the focal adhesion formation regulated by fibrillin-1. In conclusion, we demonstrate that fibrillin-1 interaction with fibroblasts regulates miRNA expression profiles which in turn control critical cell functions."	"Thumb duplication: molecular analysis of different clinical types. Molecular analysis of different types of thumb duplication and identification of new suspected gene mutations. In a series of patients operated for polydactyly, DNA was extracted from blood samples collected preoperatively. Among these, the samples of two patients with thumb duplication (Wassel types III and IV) were initially selected for molecular analysis. The method of Clinical Exome Solution was used for the study of the phenotype-involved genes. Next-generation sequencing (NGS) was performed on a NextSeq-500 Platform (Illumina), and Sophia DDM<sup>®</sup> SaaS algorithms were used for the bioinformatics analysis of the data. In total, 8-including 4 new-mutations were detected in CEP290 (1 mutation), RPGRIP1 (2 mutations), TMEM216 (2 mutations), FBN1 (1 mutation), CEP164 (1 mutation), and MEGF8 (1 mutation) genes. NGS revealed 3 mutated genes in the patient with Wassel III thumb duplication and 5 mutated genes in the patient with Wassel IV duplication. The molecular analysis revealed that the patients had 2 mutated genes in common, but they only shared one common mutation. The new detected mutations are most probably associated with thumb duplication, as they belong to genes with already described mutations causing ciliopathies, often including polydactyly in their phenotype. Recognition of these mutations will be helpful to prenatal diagnosis, operative treatment strategy prediction, and possible future experimental applications in gene therapy."	"Developmental and age-related changes to the elastic lamina of Bruch's membrane in mice. Fibrillin-1, tropoelastin, fibulin-5, and latent transforming growth factor beta-binding protein-2 and protein-4 (LTBP-2 and LTBP-4) are essential proteins for the elastic lamina (EL). In this study, we analyzed each of these molecules in the EL of Bruch's membrane (BM) through development and aging. C57BL/6 mice (embryonic (E) days E12.5, E15.5, and E18.5; postnatal (P) days P1, P4, and P7 and P3, P6, and P75 weeks of age) were used. To investigate localization, immunohistochemical staining (IH) was performed. Transmission electron microscopy (TEM) was used to evaluate the formation of microfibrils and tropoelastin. mRNA expression was determined by quantitative real-time PCR (qRT-PCR). All five proteins were expressed in the EL of BM by IH except in embryonic mice. TEM results showed that tropoelastin co-stained with microfibrils. Between 3 and 6 weeks of age, microfibrils became longer and thicker. It was difficult to evaluate the EL of BM in senile mice at 75 weeks of age because of abundant deposits which correspond to drusen. mRNA levels of each protein increased dramatically from E15.5 to P1 days and plateaued by P3 weeks as shown by qRT-PCR. In conclusion, these five proteins are possibly involved in elastic fiber assembly in BM. We define the date of full assembly of the EL of BM as 3 weeks of age in mice."	"Autosomal dominant Marfan syndrome caused by a previously reported recessive FBN1 variant. Pathogenic variants in FBN1 cause autosomal dominant Marfan syndrome but can also be found in patients presenting with apparently isolated features of Marfan syndrome. Moreover, several families with autosomal recessive Marfan syndrome caused by pathogenic variants in FBN1 have been described. The aim of this report was to underline the clinical variability that can be associated with the pathogenic variant c.1453C&gt;T, p.(Arg485Cys) in FBN1. We provide the clinical details of two autosomal dominant families with this specific FBN1 variant, which was previously associated with autosomal recessive Marfan syndrome. Clinical data of 14 individuals carrying this variant from these two families were collected retrospectively. In both families, the diagnosis of autosomal dominant Marfan syndrome was established based on the characteristics of the variant and the phenotype which includes aortic aneurysms and dissections. Of interest, in one of the families, multiple relatives were diagnosed with early onset abdominal aortic aneurysms. In conclusion, FBN1 variant c.1453C&gt;T, p.(Arg485Cys) is a pathogenic variant that can cause autosomal dominant Marfan syndrome characterized by a high degree of clinical variability and apparently isolated early onset familial abdominal aortic aneurysms."	"Family-based whole-exome sequencing identifies novel loss-of-function mutations of FBN1 for Marfan syndrome. Marfan syndrome (MFS) is an inherited connective tissue disorder affecting the ocular, skeletal and cardiovascular systems. Previous studies of MFS have demonstrated the association between genetic defects and clinical manifestations. Our purpose was to investigate the role of novel genetic variants in determining MFS clinical phenotypes. We sequenced the whole exome of 19 individuals derived from three Han Chinese families. The sequencing data were analyzed by a standard pipeline. Variants were further filtered against the public database and an in-house database. Then, we performed pedigree analysis under different inheritance patterns according to American College of Medical Genetics guidelines. Results were confirmed by Sanger sequencing. Two novel loss-of-function indels (c.5027_5028insTGTCCTCC, p.D1677Vfs*8; c.5856delG, p.S1953Lfs*27) and one nonsense variant (c.8034C&gt;A, p.Y2678*) of FBN1 were identified in Family 1, Family 2 and Family 3, respectively. All affected members carried pathogenic mutations, whereas other unaffected family members or control individuals did not. These different kinds of loss of function (LOF) variants of FBN1 were located in the cbEGF region and a conserved domain across species and were not reported previously. Our study extended and strengthened the vital role of FBN1 LOF mutations in the pathogenesis of MFS with an autosomal dominant inheritance pattern. We confirm that genetic testing by next-generation sequencing of blood DNA can be fundamental in helping clinicians conduct mutation-based pre- and postnatal screening, genetic diagnosis and clinical management for MFS."	"Enlarged Optic Nerve Axons and Reduced Visual Function in Mice with Defective Microfibrils. Glaucoma is a leading cause of irreversible vision loss due to retinal ganglion cell (RGC) degeneration that develops slowly with age. Elevated intraocular pressure (IOP) is a significant risk factor, although many patients develop glaucoma with IOP in the normal range. Mutations in microfibril-associated genes cause glaucoma in animal models, suggesting the hypothesis that microfibril defects contribute to glaucoma. To test this hypothesis, we investigated IOP and functional/structural correlates of RGC degeneration in mice of either sex with abnormal microfibrils due to heterozygous Tsk mutation of the fibrilin-1 gene (Fbn1<sup>Tsk</sup><sup>/+</sup>). Although IOP was not affected, Fbn1<sup>Tsk</sup><sup>/+</sup> mice developed functional deficits at advanced age consistent with glaucoma, including reduced RGC responses in electroretinogram (ERG) experiments. While RGC density in the retina was not affected, the density of RGC axons in the optic nerve was significantly reduced in Fbn1<sup>Tsk</sup><sup>/+</sup> mice. However, reduced axon density correlated with expanded optic nerves, resulting in similar numbers of axons in Fbn1<sup>Tsk</sup><sup>/+</sup> and control nerves. Axons in the optic nerves of Fbn1<sup>Tsk</sup><sup>/+</sup> mice were significantly enlarged and axon diameter was strongly correlated with optic nerve area, as has been reported in early pathogenesis of the DBA/2J mouse model of glaucoma. Our results suggest that microfibril abnormalities can lead to phenotypes found in early-stage glaucomatous neurodegeneration. Thinning of the elastic fiber-rich pia mater was found in Fbn1<sup>Tsk</sup><sup>/+</sup> mice, suggesting mechanisms allowing for optic nerve expansion and a possible biomechanical contribution to determination of axon caliber."	"A FBN1 3'UTR mutation variant is associated with endoplasmic reticulum stress in aortic aneurysm in Marfan syndrome. Marfan syndrome (MFS) is caused by mutations in the protein fibrillin-1 (FBN1) which affects the integrity of connective tissue elastic fibres. The most severe clinical outcome is the formation of ascending aortic aneurysms. FBN1 mutations are extremely variable and the prediction of disease phenotype and aortic risk is challenging under the prevailing mutation type classification. Finding a better correlation between mutation type and disease development is crucial for patient treatment. By mRNA sequencing of cultured vascular smooth muscle cells derived from control subjects and from the dilated and non-dilated aortic tunica media of MFS patients, we found a scarcely described FBN1 3'UTR mutation. This mutation was accompanied by a clear gene ontological endoplasmic reticulum (ER) stress response in the non-dilated aortic zone, which was confirmed by the increased transcriptional expression of MANF, HSPA5, SEL1L, DDIT3/CHOP and CRELD2 as well as protein expression levels of BiP/GRP78, CHOP and sXBP1. Moreover, the ER stress response was accompanied by a decrease in the phosphorylation levels of the protein translation regulator elF2α. In conclusion, we here identify a 3'UTR mutation of FBN1 in MFS patients, whose molecular mechanism suggest the involvement of the ER stress response in the formation of the aortic aneurysm. Our results emphasise the importance of mutations in non-coding regions and their resulting molecular mechanisms in the development of connective tissue diseases with impact on the cardiovascular system."	"The increase of interfollicular epidermal stem cells and regulation of aryl hydrocarbon receptor and its repressors in the skin through hydroporation with anti-aging cocktail. Hydroporation is a procedure that involves a subsonic flow of air and microdroplets into the skin. We previously reported that hydroporation treatment with a cocktail solution containing copper-glycyl-L-histidyl-L-lysyl, oligo hyaluronic acid, rhodiola extract, tranexamic acid, and β-glucan yielded positive effects on skin aging. The aim of this study was to evaluate the effects of hydroporation with anti-aging cocktail on interfollicular epidermal stem cells (IFESCs) and expression of aryl hydrocarbon receptor (AhR)/AhR repressor (AhRR) in the skin. Skin samples from six volunteers who were treated with hydroporation were analyzed via confocal microscopic examination. Markers for dermal matrix (procollagen type I and fibrillin-1) and basement membrane (type IV collagen and integrin α6) were increased after treatment. Moreover, there was a significant increase in the expression level of histone deacetylase 1-positive/p63-negative basal cells, which we previously reported as interfollicular epidermal stem cells. The expression level of AhR was significantly decreased, whereas that of AhRR was increased. This indicates an alteration in the interaction between the skin and environment posttreatment. Anti-aging hydroporation treatment recovered the stem cell potential of basal cells. Moreover, this treatment decreased AhR and increased AhRR in the skin, which may protect the skin from the harmful environment."	"Renal cystic disease in the Fbn1<sup>C1039G/+</sup> Marfan mouse is associated with enhanced aortic aneurysm formation. Marfan syndrome (MFS) is a connective tissue disorder caused by mutations in the fibrillin-1 gene (FBN1), resulting in aortic aneurysm formation and dissections. Interestingly, variable aortopathy is observed even within MFS families with the same mutation. Thus, additional risk factors determine disease severity. Here, we describe a case of a 2-month-old Fbn1<sup>C1039G/+</sup> MFS mouse with extreme aortic dilatation and increased vascular inflammation, when compared to MFS siblings, which coincided with unilateral renal cystic disease. In addition, this mouse presented with increased serum levels of creatinine, angiotensin-converting enzyme, corticosterone, macrophage chemoattractant protein-1, and interleukin-6, which may have contributed to the vascular pathology. Possibly, cystic kidney disease is associated with aneurysm progression in MFS patients. Therefore, we propose that close monitoring of the presence of renal cysts in MFS patients, during regular vascular imaging of the whole aorta trajectory, may provide insight in the frequency of cystic kidney disease and its potential as a novel indicator of aneurysm progression in MFS patients."	"Letter by Groth et al Regarding Article, &quot;Impact of Pathogenic FBN1 (Fibrillin-1) Variant Types on the Progression of Aortic Disease in Patients With Marfan Syndrome&quot;. NA"	"Response by Takeda et al to Letter Regarding Article, &quot;Impact of Pathogenic FBN1 Variant Types on the Progression of Aortic Disease in Patients With Marfan Syndrome&quot;. NA"	"Endothelial Cell Lineage Analysis Does Not Provide Evidence for EMT in Adult Valve Homeostasis and Disease. Epithelial-to-mesenchymal transition (EMT) enables stationary epithelial cells to exhibit migratory behavior and is the key step that initiates heart valve development. Recent studies suggest that EMT is reactivated in the pathogenesis of myxomatous valve disease (MVD), a condition that involves the progressive degeneration and thickening of valve leaflets. These studies have been limited to in vitro experimentation and reliance on histologic costaining of epithelial and mesenchymal markers as evidence of EMT in mouse and sheep models of valve disease. However, longitudinal analysis of cell lineage origins and potential pathogenic or reparative contributions of newly generated mesenchymal cells have not been reported previously. In this study, a genetic lineage tracing strategy was pursued by irreversibly labeling valve endothelial cells in the Osteogenesis imperfecta and Marfan syndrome mouse models to determine whether they undergo EMT during valve disease. Tie2-CreER <sup>T2</sup> and Cdh5(PAC)-CreER <sup>T2</sup> mouse lines were used in combination with colorimetric and fluorescent reporters for longitudinal assessment of endothelial cells. These lineage tracing experiments showed no evidence of EMT during adult valve homeostasis or valve pathogenesis. Additionally, CD31 and smooth muscle α-actin (αSMA) double-positive cells, used as an indicator of EMT, were not detected, and levels of EMT transcription factors were not altered. Interestingly, contrary to the endothelial cell-specific Cdh5(PAC)-CreER <sup>T2</sup> driver line, Tie2-CreER <sup>T2</sup> lineage-derived cells in diseased heart valves also included CD45+ leukocytes. Altogether, our data indicate that EMT is not a feature of valve homeostasis and disease but that increased immune cells may contribute to MVD. Anat Rec, 302:125-135, 2019. © 2018 Wiley Periodicals, Inc."	"Absence of LTBP-3 attenuates the aneurysmal phenotype but not spinal effects on the aorta in Marfan syndrome. Fibrillin-1 is an elastin-associated glycoprotein that contributes to the long-term fatigue resistance of elastic fibers as well as to the bioavailability of transforming growth factor-beta (TGFβ) in arteries. Altered TGFβ bioavailability and/or signaling have been implicated in aneurysm development in Marfan syndrome (MFS), a multi-system condition resulting from mutations to the gene that encodes fibrillin-1. We recently showed that the absence of the latent transforming growth factor-beta binding protein-3 (LTBP-3) in fibrillin-1-deficient mice attenuates the fragmentation of elastic fibers and focal dilatations that are characteristic of aortic root aneurysms in MFS mice, at least to 12 weeks of age. Here, we show further that the absence of LTBP-3 in this MFS mouse model improves the circumferential mechanical properties of the thoracic aorta, which appears to be fundamental in preventing or significantly delaying aneurysm development. Yet, a spinal deformity either remains or is exacerbated in the absence of LTBP-3 and seems to adversely affect the axial mechanical properties of the thoracic aorta, thus decreasing overall vascular function despite the absence of aneurysmal dilatation. Importantly, because of the smaller size of mice lacking LTBP-3, allometric scaling facilitates proper interpretation of aortic dimensions and thus the clinical phenotype. While this study demonstrates that LTBP-3/TGFβ directly affects the biomechanical function of the thoracic aorta, it highlights that spinal deformities in MFS might indirectly and adversely affect the overall aortic phenotype. There is a need, therefore, to consider together the vascular and skeletal effects in this syndromic disease."	"Characterization of a Cell-Assembled extracellular Matrix and the effect of the devitalization process. We have previously shown that the Cell-Assembled extracellular Matrix (CAM) synthesized by normal, human, skin fibroblasts in vitro can be assembled in a completely biological vascular graft that was successfully tested in the clinic. The goal of this study was to perform a detailed analysis of the composition and the organization of this truly bio-material. In addition, we investigated whether the devitalization process (dehydration) used to store the CAM, and thus, make the material available &quot;off-the-shelf,&quot; could negatively affect its organization and mechanical properties. We demonstrated that neither the thickness nor the mechanical strength of CAM sheets were significantly changed by the dehydration/freezing/rehydration cycle. The identification of over 50 extracellular matrix proteins highlighted the complex composition of the CAM. Histology showed intense collagen and glycosaminoglycan staining throughout the CAM sheet. The distribution of collagen I, collagen VI, thrombospondin-1, fibronectin-1, fibrillin-1, biglycan, decorin, lumican and versican showed various patterns that were not affected by the devitalization process. Transmission electron microscopy analysis revealed that the remarkably dense collagen network was oriented in the plane of the sheet and that neither fibril density nor diameter was changed by devitalization. Second harmonic generation microscopy revealed an intricate, multi-scale, native-like collagen fiber orientation. In conclusion, this bio-material displayed many tissue-like properties that could support normal cell-ECM interactions and allow implantation without triggering degradative responses from the host's innate immune system. This is consistent with its success in vivo. In addition, the CAM can be devitalized without affecting its mechanical or unique biological architecture. STATEMENT OF SIGNIFICANCE: The extracellular matrix (ECM) defines biological function and mechanical properties of tissues and organs. A number of promising tissue engineering approaches have used processed ECM from cadaver/animal tissues or cell-assembled ECM in vitro combined with scaffolds. We have shown the clinical potential of a scaffold-free approach based on an entirely biological material produced by human cells in culture without chemical processing. Here, we perform a comprehensive analysis of the properties of what can truly be called a bio-material. We also demonstrate that this material can be stored dried without losing its remarkable biological architecture."	"Identification of gross deletions in FBN1 gene by MLPA. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder caused by mutations in the FBN1 gene. Approximately 90% of classic MFS patients have a FBN1 mutation that can be identified by single-gene sequencing or gene-panel sequencing targeting FBN1. However, a small proportion of MFS patients carry a large genomic deletion in FBN1, which cannot be detected by routine sequencing. Here, we performed an MLPA (multiplex ligation-dependent probe amplification) test to detect large deletions and/or duplications in FBN1 and TGFBR2 in 115 unrelated Chinese patients with suspected MFS or early-onset aneurysm/dissection. Five novel large deletions encompassing a single exon or multiple exons in the FBN1 gene were characterized in five unrelated patients, of which four were proven by Sanger sequencing, and the breakpoints were identified. Three of them met the revised Ghent criteria when genetic results were not available, and the other two patients were highly suspected and diagnosed with MFS until the FBN1 deletions were identified. Our finding expands the mutation spectrum of large FBN1 deletions and emphasizes the importance of screening for large FBN1 deletions in clinical genetic testing, especially for those with classic Marfan phenotype."	"Losartan Versus Atenolol for Prevention of Aortic Dilation in Patients With Marfan Syndrome. Beta-blockers are the standard treatment in Marfan syndrome (MFS). Recent clinical trials with limited follow-up yielded conflicting results on losartan's effectiveness in MFS. The present study aimed to evaluate the benefit of losartan compared with atenolol for the prevention of aortic dilation and complications in Marfan patients over a longer observation period (&gt;5 years). A total of 128 patients included in the previous LOAT (LOsartan vs ATenolol) clinical trial (64 in the atenolol and 64 in the losartan group) were followed up for an open-label extension of the study, with the initial treatment maintained. Mean clinical follow-up was 6.7 ± 1.5 years. A total of 9 events (14.1%) occurred in the losartan group and 12 (18.8%) in the atenolol group. Survival analysis showed no differences in the combined endpoint of need for aortic surgery, aortic dissection, or death (p = 0.462). Aortic root diameter increased with no differences between groups: 0.4 mm/year (95% confidence interval: 0.2 to 0.5) in the losartan and 0.4 mm/year (95% confidence interval: 0.3 to 0.6) in the atenolol group. In the subgroup analyses, no significant differences were observed considering age, baseline aortic root diameter, or type of dominant negative versus haploinsufficient FBN1 mutation. Long-term outcome of Marfan syndrome patients randomly assigned to losartan or atenolol showed no differences in aortic dilation rate or presence of clinical events between treatment groups. Therefore, losartan might be a useful, low-risk alternative to beta-blockers in the long-term management of these patients."	"Bicuspid Aortic Valve: Role of Multiple Gene Variants in Influencing the Clinical Phenotype. Background. Bicuspid aortic valve (BAV) is a common congenital heart defect with increased prevalence of aortic dilatation and dissection. BAV has an autosomal dominant pattern of inheritance with reduced penetrance and variable expressivity. BAV has been described as an isolated trait or associated with other clinical manifestations in syndromic conditions. Identification of a syndromic condition in a BAV patient is clinically relevant in order to personalize indication to aortic surgery. We aimed to point out how genetic diagnosis by next-generation sequencing (NGS) can improve management of a patient with complex BAV clinical picture. Methods and Results. We describe a 45-year-old Caucasian male with BAV, thoracic aortic root and ascending aorta dilatation, and connective features evocative but inconclusive for clinical diagnosis of Marfan syndrome (MFS). Targeted (91 genes) NGS was used. Proband genetic variants were investigated in first-degree relatives. Proband carried 5 rare variants in 4 genes: FBN1(p.Asn542Ser and p.Lys2460Arg), NOTCH1(p.Val1739Met), LTBP1(p.Arg1330Gln), and TGFBR3(p.Arg423Trp). The two FBN1 variants were inherited in cis by the mother, showing systemic features evocative of MFS, but with a milder phenotype than that observed in the proband. Careful clinical observation along with the presence of the FBN1 variants allowed diagnosis of MFS in the proband and in his mother. NOTCH1 variant was found in mother and brother, not exhibiting BAV, thus not definitely supporting/excluding association with BAV. Interestingly, the proband, his brother and father, all showing root dilatation, and his sister, with upper range aortic root dimension, were carriers of a TGFBR3 variant. LTBP1 might also modulate the vascular phenotype. Conclusions. Our results underline the usefulness of NGS together with family evaluation in diagnosis of patients with monogenic traits and overlapping clinical manifestations due to contribution of the same genes and/or presence of comorbidities determined by different genes."	"Local variations in material and structural properties characterize murine thoracic aortic aneurysm mechanics. We recently developed an approach to characterize local nonlinear, anisotropic mechanical properties of murine arteries by combining biaxial extension-distension testing, panoramic digital image correlation, and an inverse method based on the principle of virtual power. This experimental-computational approach was illustrated for the normal murine abdominal aorta assuming uniform wall thickness. Here, however, we extend our prior approach by adding an optical coherence tomography (OCT) imaging system that permits local reconstructions of wall thickness. This multimodality approach is then used to characterize spatial variations of material and structural properties in ascending thoracic aortic aneurysms (aTAA) from two genetically modified mouse models (fibrillin-1 and fibulin-4 deficient) and to compare them with those from angiotensin II-infused apolipoprotein E-deficient and wild-type control ascending aortas. Local values of stored elastic energy and biaxial material stiffness, computed from spatial distributions of the best fit material parameters, varied significantly with circumferential position (inner vs. outer curvature, ventral vs. dorsal sides) across genotypes and treatments. Importantly, these data reveal an inverse relationship between material stiffness and wall thickness that underlies a general linear relationship between stiffness and wall stress across aTAAs. OCT images also revealed sites of advanced medial degeneration, which were captured by the inverse material characterization. Quantification of histological data further provided high-resolution local correlations among multiple mechanical metrics and wall microstructure. This is the first time that such structural defects and local properties have been characterized mechanically, which can better inform computational models of aortopathy that seek to predict where dissection or rupture may initiate."	"The Evaluation of Flow-Mediated Vasodilation in the Brachial Artery Correlates With Endothelial Dysfunction Evaluated by Nitric Oxide Synthase Metabolites in Marfan Syndrome Patients. Marfan syndrome (MS) is of the most common connective tissue disorders. Although most patients have mutations in the fibrillin-1 gene (FBN1) and more than 1,700 mutations have been described, there are no mutations in less than 10% of patients. Aortic dilation is the most important complication; it involves chronic inflammatory processes and endothelial dysfunction. Prospective study from March 2015 to January 2017, in a cohort of 32 patients of MS confirmed by Ghent criteria and 35 controls of both genders, with a median age of 26 years (18-56). Patients had no comorbidities such as diabetes, hypertension, and/or neoplasms. They were not being treated with statin, NSAIDs, calcium antagonists, oral nitrates, and/or beta-blockers during 7 days prior to the study and patients with smoking history in the last 4 years. Controls were matched by age and gender. We analyzed endothelial dysfunction by flow-mediated vasodilation in the brachial artery, determining the maximum peak flow in the reactive hyperemia phase with a Philips Envisor device with Doppler capability. Its correlation with serum levels of biological markers that could participate in endothelial dysfunction pathways such as <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>3</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> <mml:mo>/</mml:mo> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> ratio, <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> , citrulline, TNFα, IL-1, IL-6, IL-10, IL-8, osteopontin, ICAM, VCAM, and <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>3</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> <mml:mo>/</mml:mo> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> was determined. Endothelial dysfunction was found in 21 MS patients (65%). The aortic annulus (AAo) was of 27 mm (22-40) and 24 mm (22-30) (p = 0.04) in MS patients with and without dysfunction. The level of <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>3</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> <mml:mo>/</mml:mo> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> ratio, was of 108.95 ± 12.05 nM/ml in controls vs. 170.04 ± 18.76 nM/ml in MS (p = 0.002), <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> was of 33.78 ± 3.41 vs. 43.95 ± 2.59 nM/ml (p = 0.03), citrulline 62.65 ± 3.46 vs. 72.81 ± 4.35 μMol/ml (p = 0.06). VCAM median was 39 pg/ml (0-86) vs. 32 pg/ml (11-66) (p = 0.03), respectively. The correlation of VCAM with triglycerides (TG) was of 0.62 (p = 0.005). There were no differences in TNFα, IL-1, IL-6, IL-8, IL-10, and osteopontin. MS endothelial dysfunction is related to aortic diameters, and increased levels of VCAM, L-citrulline and <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>3</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> <mml:mo>/</mml:mo> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> ratio, <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:msubsup> <mml:mrow> <mml:mtext>NO</mml:mtext> </mml:mrow> <mml:mn>2</mml:mn> <mml:mo>-</mml:mo> </mml:msubsup> </mml:mrow> </mml:math> . VCAM-1 has a significant correlation with TG and could play a significant role in endothelial dysfunction."	"Fibrillin protein pleiotropy: Acromelic dysplasias. The fibrillins are large extracellular matrix molecules that polymerize to form microfibrils. Fibrillin microfibrils are distinctive architectural elements that are both ubiquitous in the connective tissue space and also unique, displaying tissue-specific patterns. Mutations in the genes for fibrillin-1 (FBN1) result in multiple distinct pleiotropic disorders. Most of the more than 3000 mutations known today in FBN1 cause the Marfan syndrome. Marfan mutations can occur in any of the 56 domains that compose fibrillin-1. In contrast, rare mutations in FBN1 that are confined to only certain domains cause several different types of acromelic dysplasia. These genetic disorders demonstrate that specific domains of fibrillin-1 perform roles important to musculoskeletal growth. Many of the phenotypes of acromelic dysplasias are the opposite of those found in Marfan syndrome. Knowledge of the functions and structural organization of fibrillin molecules within microfibrils is required to understand how one protein and one gene can be the basis for multiple genetic disorders."	"Adamts10 inactivation in mice leads to persistence of ocular microfibrils subsequent to reduced fibrillin-2 cleavage. Mutations in the secreted metalloproteinase ADAMTS10 cause recessive Weill-Marchesani syndrome (WMS), comprising ectopia lentis, short stature, brachydactyly, thick skin and cardiac valve anomalies. Dominant WMS caused by FBN1 mutations is clinically similar and affects fibrillin-1 microfibrils, which are a major component of the ocular zonule. ADAMTS10 was previously shown to enhance fibrillin-1 assembly in vitro. Here, Adamts10 null mice were analyzed to determine the impact of ADAMTS10 deficiency on fibrillin microfibrils in vivo. An intragenic lacZ reporter identified widespread Adamts10 expression in the eye, musculoskeletal tissues, vasculature, skin and lung. Adamts10<sup>-/-</sup> mice had reduced viability on the C57BL/6 background, and although surviving mice were slightly smaller and had stiff skin, they lacked brachydactyly and cardiovascular defects. Ectopia lentis was not observed in Adamts10<sup>-/-</sup> mice, similar to Fbn1<sup>-/-</sup> mice, most likely because the mouse zonule contains fibrillin-2 in addition to fibrillin-1. Unexpectedly, in contrast to wild-type eyes, Adamts10<sup>-/-</sup> zonule fibers were thicker and immunostained strongly with fibrillin-2 antibodies into adulthood, whereas fibrillin-1 staining was reduced. Furthermore, fibrillin-2 staining of hyaloid vasculature remnants persisted post-natally in Adamts10<sup>-/-</sup> eyes. ADAMTS10 was found to cleave fibrillin-2, providing an explanation for persistence of fibrillin-2 at these sites. Thus, analysis of Adamts10<sup>-/-</sup> mice led to identification of fibrillin-2 as a novel ADAMTS10 substrate and defined a proteolytic mechanism for clearance of ocular fibrillin-2 at the end of the juvenile period."	"Aberrantly Expressed Genes and miRNAs in Slow Transit Constipation Based on RNA-Seq Analysis. This study aims to identify the key genes and miRNAs in slow transit constipation (STC). MRNA and miRNA expression profiling were obtained. Differentially expressed genes (DEGs) and miRNAs were identified followed by the regulatory network construction. Functional annotation analysis and protein-protein interaction (PPI) network were conducted. The electronic validation was performed. Hsa-miR-2116-3p, hsa-miR-3622a-5p, hsa-miR-424-5p, and hsa-miR-1273-3p covered most DEGs. HLA-DRB1, HLA-DRB5, C3, and ICAM were significantly involved in staphylococcus aureus infection. The PPI network generated several hub proteins including ZBTB16, FBN1, CCNF, and CDK1. Electronic validation of HLA-DRB1, PTGDR, MKI67, BIRC5, CCNF, and CDK1 was consistent with the RNA-sequencing analysis. Our study might be helpful in understanding the pathology of STC at the molecular level."	"Correction of the Marfan Syndrome Pathogenic FBN1 Mutation by Base Editing in Human Cells and Heterozygous Embryos. There are urgent demands for efficient treatment of heritable genetic diseases. The base editing technology has displayed its efficiency and precision in base substitution in human embryos, providing a potential early-stage treatment for genetic diseases. Taking advantage of this technology, we corrected a Marfan syndrome pathogenic mutation, FBN1<sup>T7498C</sup>. We first tested the feasibility in mutant cells, then successfully achieved genetic correction in heterozygous human embryos. The results showed that the BE3 mediated perfect correction at the efficiency of about 89%. Importantly, no off-target and indels were detected in any tested sites in samples by high-throughput deep sequencing combined with whole-genome sequencing analysis. Our study therefore suggests the efficiency and genetic safety of correcting a Marfan syndrome (MFS) pathogenic mutation in embryos by base editing."	"Gastrointestinal Symptoms in Marfan Syndrome and Hypermobile Ehlers-Danlos Syndrome. Marfan syndrome (MS) is a multisystem disorder caused by a mutation in FBN1 gene. It shares some phenotypic features with hypermobile Ehlers-Danlos syndrome (EDS) such as joint hypermobility. EDS is a group of inherited heterogenous multisystem disorders characterized by skin hyperextensibility, atrophic scarring, joint hypermobility, and generalized tissue fragility. Hypermobile EDS (hEDS) is thought to be the most common type. Recent studies have suggested an association between connective tissue hypermobility and functional gastrointestinal disorders (FGDs). The aim of this study is to determine the prevalence of gastrointestinal symptoms in patients with Marfan syndrome and hypermobile EDS. Patients with a diagnosis of either MS or hEDS attending cardiology or rheumatology outpatients at our hospital were asked to complete SF36 RAND and Rome IV Diagnostic questionnaires. Questionnaires were also completed by patients who are members of Marfan Association UK. The same questionnaires were also completed by age- and gender-matched controls attending fracture clinic without existing diagnoses of MS or hEDS. Data were collected from 45 MS patients (12 males and 33 females, age range 19-41 years, mean 28 years) and 45 hEDS patients (6 males and 39 females, age range 18-32 years, mean 24 years). None had a previous organic gastrointestinal diagnosis. The control group was matched for age and sex (18 males and 72 females, age range 18-45, mean 29 years). Both MS and hEDS groups showed a higher prevalence of abdominal symptoms compared to the control group; however, the hEDS group not only showed a higher prevalence but more frequent and severe symptoms meeting Rome IV criteria for diagnosis of FGIDs. Nearly half of the hEDS patients met the criteria for more than one FGID. The hEDS group also scored lower on quality of life (QOL) scores in comparison to either of the other groups with a mean score of 48.6 as compared to 54.2 in the Marfan group and 78.6 in the control group. FGIDs are reported in both Marfan syndrome and hypermobile Ehlers-Danlos syndrome but appear to be more common and severe in hEDS. These patients score lower on quality of life scores as well despite hypermobility being a common feature of both conditions. Further work is needed to understand the impact of connective tissue disorders on gastrointestinal symptoms."	"Upregulation of Skin-Aging Biomarkers in Aged NHDF Cells by a Sucrose Ester Extract from the Agroindustrial Waste of Physalis peruviana Calyces. As part of a search for new sustainable plant sources of valuable compounds, the EtOAc extract of the discarded calyces of Physalis peruviana fruit was selected for its significant antiaging activity. Eight new sucrose esters (SEs), named peruvioses F-M (1-8), along with three known SEs, peruvioses A (9), peruviose B (10), and nicandrose D (11), were isolated. Their structures were elucidated by comprehensive analyses of their NMR and MS data. A global fragmentation pattern of these SEs was established from their MS data. The SE extract (SEE) at a concentration of 0.5 mg L<sup>-1</sup> upregulated multiple skin-aging biomarkers, namely, collagen I, elastin, and fibrillin-1, in aged normal human dermal fibroblast cells. A 36% increase in collagen I was observed. The elastin and fibrillin-1 contents were fully recovered, and an increase of at least 10% in the production of elastin was observed."	"Marfan Syndrome Variability: Investigation of the Roles of Sarcolipin and Calcium as Potential Transregulator of FBN1 Expression. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder that displays a great clinical variability. Previous work in our laboratory showed that fibrillin-1 (FBN1) messenger RNA (mRNA) expression is a surrogate endpoint for MFS severity. Therefore, an expression quantitative trait loci (eQTL) analysis was performed to identify trans-acting regulators of FBN1 expression, and a significant signal reached genome-wide significant threshold on chromosome 11. This signal delineated a region comprising one expressed gene, SLN (encoding sarcolipin), and a single pseudogene, SNX7-ps1 (CTD-2651C21.3). We first investigated the region and then looked for association between the genes in the region and FBN1 expression. For the first time, we showed that the SLN gene is weakly expressed in skin fibroblasts. There is no direct correlation between SLN and FBN1 gene expression. We showed that calcium influx modulates FBN1 gene expression. Finally, SLN gene expression is highly correlated to that of the neighboring SNX7-ps1. We were able to confirm the impact of calcium influx on FBN1 gene expression but we could not conclude regarding the role of sarcolipin and/or the eQTL locus in this regulation."	"Prognostic value of gastric cancer-associated gene signatures: Evidence based on a meta-analysis using integrated bioinformatics methods. Selecting differentially expressed genes (DEGs) based on integrated bioinformatics analyses has been used in previous studies to explore potential biomarkers in gastric cancer (GC) with microarray and RNA sequencing data. However, the genes obtained may be inaccurate because of noisy data and errors, as well as insufficient clinical sample sizes. Thus, we aimed to find robust and strong DEGs with prognostic value for GC, where the robust rank aggregation method was employed to select significant DEGs from eight Gene Expression Omnibus data sets with a total of 140 up-regulated and 206 down-regulated genes. Network data mining was then used to screen hub genes, and 11 genes were filtered using Fisher's exact test. Based on these results, we built a prognostic signature with seven genes (FBN1, MMP1, PLAU, SPARC, COL1A2, COL2A1 and ATP4A) using stepwise multivariate Cox proportional hazard regression. According to the risk score for each patient, we found that high-risk group patients had significantly worse survival results compared with those in the low-risk group (log-rank test P-value &lt; 0.001). This seven-gene signature was then validated with an external data set. Thus, we established a signature based on seven DEGs with prognostic value for GC patients using multi-steps bioinformatics methods, which may provide novel insights and potential biomarkers for prognosis, as well as possibly serving as new therapeutic targets in clinical applications."	"Cyst Masquerading as Inadvertent Bleb After a Scleral-Fixated Intraocular Lens in Marfan Syndrome: A Case Report. To present a case of an epithelial inclusion cyst masquerading as an inadvertent bleb in a patient with Marfan syndrome. A woman with Marfan syndrome presented with a subluxed crystalline lens in her right eye, which progressively subluxed over the following 2 years. A lensectomy was performed with placement of an anterior chamber intraocular lens (IOL); however, the patient experienced blurred vision and photopsias and preferred IOL explantation. The IOL was removed and a scleral-fixated posterior chamber IOL was placed. Vision improved with an uncomplicated postoperative course. Five months later, the patient experienced sudden onset redness and sharp pain in this eye. A 3-mm cystic lesion with tan material was found over a prior scleral incision site. Intraocular pressure was normal and no aqueous leaked from the lesion. Owing to concerns of an infected inadvertent bleb, treatment with topical and oral antibiotics was started, but the lesion did not change in appearance and the patient experienced persistent pain. The lesion was surgically excised and histopathology revealed a conjunctival epithelial inclusion cyst with intralesional keratin. A month later, another conjunctival inclusion cyst developed and was excised per patient preference. Marfan syndrome is characterized by defects in the FBN1 gene and may theoretically lead to an abnormal sclera, increasing the risk of bleb formation after scleral incision. Distinguishing between a filtering bleb and an epithelial inclusion cyst is critical in patient care. Although retained keratin from a cyst may mimic a bleb with purulence, intraocular pressure, aqueous leakage, and response to topical antibiotics may help distinguish between the two."	"Whole-exome sequencing reveals known and novel variants in a cohort of intracranial vertebral-basilar artery dissection (IVAD). Intracranial vertebral-basilar artery dissection (IVAD) is an arterial disorder leading to life-threatening consequences. Genetic factors are known to be causative to certain syndromic forms of IVAD. However, systematic study of the molecular basis of sporadic and isolated IVAD is lacking. To identify genetic variants contributing to the etiology of IVAD, we enrolled a cohort of 44 unrelated cases with a clinical diagnosis of isolated IVAD and performed whole-exome sequencing (WES) for all the participants; a trio exome sequencing approach was used when samples from both parents were available. Four previously reported disease-causing heterozygous variants (three in COL3A1 and one in FBN1) and seven novel heterozygous variants in IVAD-related genes were identified. In addition, six variants in novel IVAD genes including two de novo heterozygous nonsynonymous variants (each in VPS52 and CDK18), two stop-gain variants (each in MYH9 and LYL1), and two heterozygous biallelic variants in TNXB were considered to be possibly contributing to the phenotype, with unknown significance according to the existing knowledge. A significantly higher mutational rate of IVAD candidate genes was observed in patients versus our in-house controls (P = 0.002) (DISCO study, http://www.discostudy.org/ , n = 2248). Our study provided a mutational landscape for patients with isolated IVAD."	"Three Novel Mutations in FBN1 and TGFBR2 in Patients with the Syndromic Form of Thoracic Aortic Aneurysms and Dissections. There are many inherited disorders associated with thoracic aortic aneurysms and dissections (TAADs), like Marfan syndrome and Loeys-Dietz syndrome (LDS). The 4 patients in this study all had TAADs and were initially diagnosed with suspected Marfan syndrome. We collected peripheral blood samples from the patients and their family members and then attempted to identify the causal mutation using different methods including PCR, Sanger sequencing, and next generation sequencing. We identified 3 novel heterozygous mutations including 2 splicing mutations of FBN1 and 1 missense mutation of TGFBR2 in our patients. Although these mutation sites have been reported in the Human Gene Mutation Database, the nucleotide changes are different. All novel mutations found in this study were confirmed to be absent in 50 unrelated normal individuals of the same ethnic background. The RT-PCR results of 2 splicing mutations verified that the mutations can lead to the skipping of exons. The RT-qPCR results indicated that FBN1 mRNA levels were nearly 50 percent lower in the patients than in normal controls, indicating that there is almost no expression of truncated fibrillin-1 because of the nonsense-mediated mRNA decay (NMD) mechanism. To the best of our knowledge, we are the first to report these 3 novel mutations. However, the pathogenicity of these mutations still needs further confirmation. Our study has confirmed or corrected the clinical diagnosis, and enlarged the mutation spectrum of FBN1 and TGFBR2. The results should be helpful for prenatal diagnosis and genetic counseling."	"Association of modifiers and other genetic factors explain Marfan syndrome clinical variability. Marfan syndrome (MFS) is a rare autosomal dominant connective tissue disorder related to variants in the FBN1 gene. Prognosis is related to aortic risk of dissection following aneurysm. MFS clinical variability is notable, for age of onset as well as severity and number of clinical manifestations. To identify genetic modifiers, we combined genome-wide approaches in 1070 clinically well-characterized FBN1 disease-causing variant carriers: (1) an FBN1 eQTL analysis in 80 fibroblasts of FBN1 stop variant carriers, (2) a linkage analysis, (3) a kinship matrix association study in 14 clinically concordant and discordant sib-pairs, (4) a genome-wide association study and (5) a whole exome sequencing in 98 extreme phenotype samples.Three genetic mechanisms of variability were found. A new genotype/phenotype correlation with an excess of loss-of-cysteine variants (P = 0.004) in severely affected subjects. A second pathogenic event in another thoracic aortic aneurysm gene or the COL4A1 gene (known to be involved in cerebral aneurysm) was found in nine individuals. A polygenic model involving at least nine modifier loci (named gMod-M1-9) was observed through cross-mapping of results. Notably, gMod-M2 which co-localizes with PRKG1, in which activating variants have already been described in thoracic aortic aneurysm, and gMod-M3 co-localized with a metalloprotease (proteins of extra-cellular matrix regulation) cluster. Our results represent a major advance in understanding the complex genetic architecture of MFS and provide the first steps toward prediction of clinical evolution."	"In focus in HCB. NA"	"Expression of proteins of elastic fibers and collagen type I in orthodontically rotated teeth in rats. The aims of this study were to investigate the expression of proteins of elastic fibers and collagen type I in the supra-alveolar structure of orthodontically rotated teeth in rats and to elucidate whether circumferential supracrestal fiberotomy diminishes relapse. The rats' maxillary left first molars were rotated by couple of force. Specimens were divided into groups according to different orthodontic procedures. A1-3 and B1-3 were blank control groups and operation control groups. Group C underwent rotation only, and group D was treated with rotation and retention. Groups E and F were treated with rotation, retention, and release of retention; additionally, circumferential supracrestal fiberotomy was performed in group F before the release of retention. The animals were killed, and the jaws were processed for histologic evaluation using the immunohistochemical method to evaluate the protein expressions of elastin, fibrillin-1, fibrillin-2, and collagen type I in supra-alveolar structures (around and below the gingival sulcus) between the maxillary left first and second molars. The degree and percentage of relapse were measured by a series of impressions. The degree and percentage of relapse in group F were much lower than those in group E (P &lt;0.05). Collagen type I was increased in group C (P &lt;0.05) and at normal levels in groups D, E, and F. Elastin below the gingival sulcus and fibrillin-1 showed the same patterns of expression and were consistently elevated in groups C, D, E, and F (P &lt;0.05). No positive staining for elastin was found around the gingival sulcus in any specimen. The difference in the expression of fibrillin-2 between the experimental groups (C, D, E, and F) and their matching control groups was not statistically significant (P &gt;0.05). Circumferential supracrestal fiberotomy can alleviate the relapse of rotated teeth. Collagen fibers of supra-alveolar structures might contribute to relapse in a short time, whereas elastic fibers may be the reason that rotated teeth relapse to their original positions after retention."	"Fernblock Prevents Dermal Cell Damage Induced by Visible and Infrared A Radiation. Sun overexposure leads to higher risk of photoaging and skin cancer. The contribution of infrared (IR) and visible light (VIS) radiation is currently being taken into account in their pathogenesis. Erythema, hyperpigmentation, genotoxicity or the increase of matrix metalloproteinases (MMPs) expression are some of the effects induced by these types of radiation. Extracts of various botanicals endowed with antioxidant activity are emerging as new photoprotective compounds. A natural extract from Polypodium leucotomos (Fernblock<sup>®</sup>, FB) has antioxidant and photoprotective properties and exhibits a strong anti-aging effect. In this study, we evaluated the protective capacity of FB against the detrimental effects of infrared A (IRA) and VIS radiation in human dermal fibroblasts. We analyzed the effects of FB on the morphology, viability, cell cycle and expression of extracellular matrix components of fibroblasts subjected to VIS and IRA. Our results indicate that FB prevents cell damage caused by VIS and IRA. Moreover, it reduces the increase in MMP-1 and cathepsin K expression induced by both VIS and IRA radiation, and curbs alterations in fibrillin 1, fibrillin 2 and elastin expression. All these findings support FB as a feasible approach to prevent or treat skin damage caused by IRA or VIS exposure."	"ADAMTS10-mediated tissue disruption in Weill-Marchesani syndrome. Fibrillin microfibrils are extracellular matrix assemblies that form the template for elastic fibres, endow blood vessels, skin and other elastic tissues with extensible properties. They also regulate the bioavailability of potent growth factors of the TGF-β superfamily. A disintegrin and metalloproteinase with thrombospondin motifs (ADAMTS)10 is an essential factor in fibrillin microfibril function. Mutations in fibrillin-1 or ADAMTS10 cause Weill-Marchesani syndrome (WMS) characterized by short stature, eye defects, hypermuscularity and thickened skin. Despite its importance, there is poor understanding of the role of ADAMTS10 and its function in fibrillin microfibril assembly. We have generated an ADAMTS10 WMS mouse model using Clustered Regularly Spaced Interspaced Short Palindromic Repeats and CRISPR associated protein 9 (CRISPR-Cas9) to introduce a truncation mutation seen in WMS patients. Homozygous WMS mice are smaller and have shorter long bones with perturbation to the zones of the developing growth plate and changes in cell proliferation. Furthermore, there are abnormalities in the ciliary apparatus of the eye with decreased ciliary processes and abundant fibrillin-2 microfibrils suggesting perturbation of a developmental expression switch. WMS mice have increased skeletal muscle mass and more myofibres, which is likely a consequence of an altered skeletal myogenesis. These results correlated with expression data showing down regulation of Growth differentiation factor (GDF8) and Bone Morphogenetic Protein (BMP) growth factor genes. In addition, the mitochondria in skeletal muscle are larger with irregular shape coupled with increased phospho-p38 mitogen-activated protein kinase (MAPK) suggesting muscle remodelling. Our data indicate that decreased SMAD1/5/8 and increased p38/MAPK signalling are associated with ADAMTS10-induced WMS. This model will allow further studies of the disease mechanism to facilitate the development of therapeutic interventions."	"The Clinical Cases of Geleophysic Dysplasia: One Gene, Different Phenotypes. Geleophysic dysplasia is a rare multisystem disorder that principally affects the bones, joints, heart, and skin. This condition is inherited either in an autosomal dominant pattern due to FBN1 mutations or in an autosomal recessive pattern due to ADAMTSL2 mutations. Two patients with unaffected parents from unrelated families presented to their endocrinologist with severe short stature, resistant to growth hormone treatment. Routine endocrine tests did not reveal an underlying etiology. Exome sequencing was performed in each family. Our two patients, harboring de novo heterozygous FBN1 mutations p.Tyr1696Asp and p.Cys1748Ser, had common clinical symptoms such as severe short stature, characteristic facial features, short hands and feet, and limitation of joint movement. However, one patient had severe cardiac involvement whereas the other patient had tracheal stenosis requiring tracheostomy placement. Patients with severe dwarfism, skeletal anomalies, and other specific syndromic features (e.g., tracheal stenosis and cardiac valvulopathy) should undergo genetic testing to exclude acromelic dysplasia syndromes."	"Genetic diagnosis of acute aortic dissection in South China Han population using next-generation sequencing. Acute aortic dissection (AAD) is a clinically &quot;silent,&quot; but emergent and life-threatening cardiovascular disease, and hereditary factors play an important etiologic role in the development of AAD. The purposes of this study are to definitize the diagnostic yield of 59 AAD patients, investigate the molecular pathological spectrum of AAD by NGS, and explore the future preclinical prospects of genetic diagnosis on AAD high-risk groups. We performed next-generation sequencing (NGS) based on screening of the 69 currently aortic dissections/aneurysms-associated genes on 59 sporadic AAD samples from South China. A Kaplan-Meier survival curve was constructed to compare the event-free survival depending on variant number. Overall, 67 variants were detected in 39 patients, among which 4 patients were identified with pathogenic variants and 13 patients were diagnosed with likely pathogenic variants. Seventeen genotype positive patients were identified in aggregate, and the diagnostic yield of our study is 28.8%. All genotype-positive variants were distributed in 11 genes, FBN1 variants were in the largest number among genotype-positive variants, which were detected for 4 times, ACTA2 for 3 times, ABCC6 and TGFBR1 twice, and NOS3, MYLK, XYLT1, TIMP4, TGFBR2, CNTN3, and PON1 once. Individuals with three or more variants showed shorter mean event-free survival than patients with fewer variants. Our observations broaden the genetic pathological spectrum of AAD. Furthermore, our research uncovered two susceptibility genes FBN1 and ACTA2 for Stanford type A AAD patients. Finally, our study concluded that the number of variants an individual harbored was an important consideration in risk stratification for individualized prediction and disease diagnosis."	"A comparative study of the elastic fibre system within the mouse and human cornea. The cornea relies on its organised extracellular matrix for maintaining transparency and biomechanical strength. Studies have identified an elastic fibre system within the human posterior cornea, thought to allow for slight deformations in response to internal pressure fluctuations within the eye. However, the type of elastic fibres that exist within the cornea and their roles remain elusive. The aim of this study was to compare the distribution and organisation of the elastic fibres within the posterior peripheral mouse and human cornea, and elucidate how these fibres integrate with the trabecular meshwork, whilst characterising the distribution of their main likely components (fibrillin-1, elastin and type VI collagen) in different parts of the cornea and adjacent sclera. We identified key differences in the elastic fibre system between the human and mouse cornea. True elastic fibres (containing elastin) were identified within the human posterior peripheral cornea. Elastic fibres appeared to present as an extensive network throughout the mouse corneal stroma, but as fibrillin-rich microfibril bundles rather than true elastic fibres. However, tropoelastin staining indicated the possibility that true elastic fibres had yet to develop in the young mice studied. Differences were also apparent within the anatomy of the trabecular meshwork. The human trabecular meshwork appeared to insert between the corneal stroma and Descemet's membrane, with elastic fibres continuing into the stroma from the trabecular meshwork anterior to Descemet's membrane. Within the mouse cornea, no clear insertion point of the trabecular meshwork was seen, instead the elastic fibres within the trabecular meshwork continued into Descemet's membrane, with the trabecular meshwork joining posterior to Descemet's membrane."	"Identification of Three Novel FBN1 Mutations and Their Phenotypic Relationship of Marfan Syndrome. Marfan syndrome (MS), a connective tissue disorder that affects ocular, skeletal, and cardiovascular systems, is caused by heterozygous pathogenic variants in FBN1. To date, over 1800 different pathogenic variants have been reported. In the present study, FBN1 sequence analysis was performed in a family and two unrelated patients with MS. Three novel pathogenic variants were detected. Two of these variants [c.6610T&gt;C; p.(Cys2204Arg) and c.1956T&gt;G; p.(Cys652Trp)], which affect a cysteine residue, were associated with MS with ectopia lentis, whereas the mutation causing a premature stop codon [c.2506delA; p.(Ser836ValfsX10)] leads to a classical MS of a milder phenotype. We anticipate that the three novel pathogenic variants identified in this study will provide further support for the clinical relevance of variants in the large FBN1 gene."	"New Evidence Supporting the Role of FBN1 in the Development of Adolescent Idiopathic Scoliosis. A genetic association study. To determine whether common variants of fibrillin-1 (FBN1) and fibrillin-2 (FBN2) are associated with adolescent idiopathic scoliosis (AIS), and to further investigate to further investigate the functional role of FBN1 in the onset and progression of AIS. Previous studies have identified several rare variants in FBN1 and FBN2 that were associated with AIS. There is, however, a lack of knowledge concerning the association between common variants of FBN1 and FBN2 and AIS. Common variants covering FBN1 and FBN2 were genotyped in 952 patients with AIS and 1499 controls. Paraspinal muscles were collected from 66 patients with AIS and 18 patients with lumbar disc herniation (LDH) during surgical interventions. The differences of genotype and allele distributions between patients and controls were calculated using Chi-square test. The Student t test was used to compare the expression of FBN1 and FBN2 between patients with AIS and LDH. One-way analysis of variance test was used to compare the gene expression among different genotypes of the significantly associated variant. The Pearson correlation analysis was used to determine the relationship between FBN1 expression and the curve severity. The common variant rs12916536 of FBN1 was significantly associated with AIS. Patients were found to have significantly lower frequency of allele A than the controls (0.397 vs. 0.450, P = 1.10 × 10) with an odds ratio of 0.81. Moreover, patients with AIS were found to have significantly lower FBN1 expression than patients with LDH (0.00033 ± 0.00015 vs. 0.00054 ± 0.00031, P = 1.70 × 10). The expression level of FBN1 was remarkably correlated with the curve severity (r = -0.352, P = 0.02). There was no significant difference of FBN1 expression among different genotypes of rs12916536. Common variant of FBN1 is significantly associated with the susceptibility of AIS. Moreover, the decreased expression of FBN1 is significantly correlated with the curve severity of AIS. The functional role of FBN in AIS is worthy of further investigation. 3."	"Achilles and tail tendons of perlecan exon 3 null heparan sulphate deficient mice display surprising improvement in tendon tensile properties and altered collagen fibril organisation compared to C57BL/6 wild type mice. The aim of this study was to determine the role of the perlecan (Hspg2) heparan sulphate (HS) side chains on cell and matrix homeostasis in tail and Achilles tendons in 3 and 12 week old Hspg2 exon 3 null HS deficient (Hspg2<sup>Δ3 - ∕Δ3 -</sup>) and C57 BL/6 Wild Type (WT) mice. Perlecan has important cell regulatory and matrix organizational properties through HS mediated interactions with a range of growth factors and morphogens and with structural extracellular matrix glycoproteins which define tissue function and allow the resident cells to regulate tissue homeostasis. It was expected that ablation of the HS chains on perlecan would severely disrupt normal tendon organization and functional properties and it was envisaged that this study would better define the role of HS in normal tendon function and in tendon repair processes. Tail and Achilles tendons from each genotype were biomechanically tested (ultimate tensile stress (UTS), tensile modulus (TM)) and glycosaminoglycan (GAG) and collagen (hydroxyproline) compositional analyses were undertaken. Tenocytes were isolated from tail tendons from each mouse genotype and grown in monolayer culture. These cultures were undertaken in the presence of FGF-2 to assess the cell signaling properties of each genotype. Total RNA was isolated from 3-12 week old tail and Achilles tendons and qRT-PCR was undertaken to assess the expression of the following genes Vcan, Bgn, Dcn, Lum, Hspg2, Ltbp1, Ltbp2, Eln and Fbn1. Type VI collagen and perlecan were immunolocalised in tail tendon and collagen fibrils were imaged using transmission electron microscopy (TEM). FGF-2 stimulated tenocyte monolayers displayed elevated Adamts4, Mmp2, 3, 13 mRNA levels compared to WT mice. Non-stimulated tendon Col1A1, Vcan, Bgn, Dcn, Lum, Hspg2, Ltbp1, Ltbp2, Eln and Fbn1 mRNA levels showed no major differences between the two genotypes other than a decline with ageing while LTBP2 expression increased. Eln expression also declined to a greater extent in the perlecan exon 3 null mice (P &lt; 0.05). Type VI collagen and perlecan were immunolocalised in tail tendon and collagen fibrils imaged using transmission electron microscopy (TEM). This indicated a more compact form of collagen localization in the perlecan exon 3 null mice. Collagen fibrils were also smaller by TEM, which may facilitate a more condensed fibril packing accounting for the superior UTS displayed by the perlecan exon 3 null mice. The amplified catabolic phenotype of Hspg2<sup>Δ3 - ∕Δ3 -</sup> mice may account for the age-dependent decline in GAG observed in tail tendon over 3 to 12 weeks. After Achilles tenotomy Hspg2<sup>Δ3 - ∕Δ3 -</sup> and WT mice had similar rates of recovery of UTS and TM over 12 weeks post operatively indicating that a deficiency of HS was not detrimental to tendon repair."	"Precise Therapy for Thoracic Aortic Aneurysm in Marfan Syndrome: A Puzzle Nearing Its Solution. Marfan Syndrome (MFS) is a rare connective tissue disorder, resulting from mutations in the fibrillin-1 gene, characterized by pathologic phenotypes in multiple organs, the most detrimental of which affects the thoracic aorta. Indeed, thoracic aortic aneurysms (TAA), leading to acute dissection and rupture, are today the major cause of morbidity and mortality in adult MFS patients. Therefore, there is a compelling need for novel therapeutic strategies to delay TAA progression and counteract aortic dissection occurrence. Unfortunately, the wide phenotypic variability of MFS patients, together with the lack of a complete genotype-phenotype correlation, have represented until now a barrier hampering the conduction of translational studies aimed to predict disease prognosis and drug discovery. In this review, we will illustrate available therapeutic strategies to improve the health of MFS patients. Starting from gold standard surgical overtures and the description of the main pharmacological approaches, we will comprehensively review the state-of-the-art of in vivo MFS models and discuss recent clinical pharmacogenetic results. Finally, we will focus on induced pluripotent stem cells (iPSC) as a technology that, if integrated with preclinical research and pharmacogenetics, could contribute in determining the best therapeutic approach for each MFS patient on the base of individual differences. Finally, we will suggest the integration of preclinical studies, pharmacogenetics and iPSC technology as the most likely strategy to help solve the composite puzzle of precise medicine in this condition."	"TGF-β Signaling-Related Genes and Thoracic Aortic Aneurysms and Dissections. Transforming growth factor-β (TGF)-β signaling plays a crucial role in the development and maintenance of various organs, including the vasculature. Accordingly, the mutations in TGF-β signaling pathway-related genes cause heritable disorders of the connective tissue, such as Marfan syndrome (MFS), Loeys-Dietz syndrome (LDS), and Shprintzen-Goldberg syndrome (SGS), and these syndromes may affect skeletal, ocular, pulmonary, and cardiovascular systems. Aortic root aneurysms are common problems that can result in aortic dissection or rupture, which is the leading cause of sudden death in the natural history of MFS and LDS, and recent improvements in surgical treatment have improved life expectancy. However, there is currently no genotype-specific medical treatment. Accumulating evidence suggest that not only structural weakness of connective tissue but also increased TGF-β signaling contributes to the complicated pathogenesis of aortic aneurysm formation, but a comprehensive understanding of governing molecular mechanisms remains lacking. Inhibition of angiotensin II receptor signaling and endothelial dysfunction have gained attention as a possible MFS treatment strategy, but interactions with TGF-β signaling remain elusive. Heterozygous loss-of-function mutations in TGF-β receptors 1 and 2 (TGFBR1 and TGFBR2) cause LDS, but TGF-β signaling is activated in the aorta (referred to as the TGF-β paradox) by mechanisms yet to be elucidated. In this review, we present and discuss the current understanding of molecular mechanisms responsible for aortopathies of MFS and related disorders."	"Fibronectin promotes elastin deposition, elasticity and mechanical strength in cellularised collagen-based scaffolds. One of the tightest bottlenecks in vascular tissue engineering (vTE) is the lack of strength and elasticity of engineered vascular wall models caused by limited elastic fiber deposition. In this study, flat and tubular collagen gel-based scaffolds were cellularised with vascular smooth muscle cells (SMCs) and supplemented with human plasma fibronectin (FN), a known master organizer of several extracellular matrix (ECM) fiber systems. The consequences of FN on construct maturation was investigated in terms of geometrical contraction, viscoelastic mechanical properties and deposition of core elastic fiber proteins. FN was retained in the constructs and promoted deposition of elastin by SMCs as well as of several proteins required for elastogenesis such as fibrillin-1, lysyl oxidase, fibulin-4 and latent TGF-β binding protein-4. Notably, gel contraction, tensile equilibrium elastic modulus and elasticity were strongly improved in tubular engineered tissues, approaching the behaviour of native arteries. In conclusion, this study demonstrates that FN exerts pivotal roles in directing SMC-mediated remodeling of scaffolds toward the production of a physiological-like, elastin-containing ECM with excellent mechanical properties. The developed FN-supplemented systems are promising for tissue engineering applications where the generation of mature elastic tissue is desired and represent valuable advanced in vitro models to investigate elastogenesis."	"Proteomics reveals Rictor as a noncanonical TGF-β signaling target during aneurysm progression in Marfan mice. The objective of the present study was to 1) analyze the ascending aortic proteome within a mouse model of Marfan syndrome (MFS; Fbn1<sup>C1041G/+</sup>) at early and late stages of aneurysm and 2) subsequently test a novel hypothesis formulated on the basis of this unbiased proteomic screen that links changes in integrin composition to transforming growth factor (TGF)-β-dependent activation of the rapamycin-independent component of mammalian target of rapamycin (Rictor) signaling pathway. Ingenuity Pathway Analysis of over 1,000 proteins quantified from the in vivo MFS mouse aorta by data-independent acquisition mass spectrometry revealed a predicted upstream regulator, Rictor, that was selectively activated in aged MFS mice. We validated this pattern of Rictor activation in vivo by Western blot analysis for phosphorylation on Thr<sup>1135</sup> in a separate cohort of mice and showed in vitro that TGF-β activates Rictor in an integrin-linked kinase-dependent manner in cultured aortic vascular smooth muscle cells. Expression of β3-integrin was upregulated in the aged MFS aorta relative to young MFS mice and wild-type mice. We showed that β3-integrin expression and activation modulated TGF-β-induced Rictor phosphorylation in vitro, and this signaling effect was associated with an altered vascular smooth muscle cell proliferative-migratory and metabolic in vitro phenotype that parallels the in vivo aneurysm phenotype in MFS. These results reveal that Rictor is a novel, context-dependent, noncanonical TGF-β signaling effector with potential pathogenic implications in aortic aneurysm. NEW &amp; NOTEWORTHY We present the most comprehensive quantitative analysis of the ascending aortic aneurysm proteome in Marfan syndrome to date resulting in novel and potentially wide-reaching findings that expression and signaling by β3-integrin constitute a modulator of transforming growth factor-β-induced rapamycin-independent component of mammalian target of rapamycin (Rictor) signaling and physiology in aortic vascular smooth muscle cells."	"A Novel Heterozygous Intronic Mutation in the FBN1 Gene Contributes to FBN1 RNA Missplicing Events in the Marfan Syndrome. Marfan syndrome (MFS) is an autosomal dominantly inherited connective tissue disorder, mostly caused by mutations in the fibrillin-1 (FBN1) gene. We, by using targeted next-generation sequence analysis, identified a novel intronic FBN1 mutation (the c.2678-15C&gt;A variant) in a MFS patient with aortic dilatation. The computational predictions showed that the heterozygous c.2678-15C&gt;A intronic variant might influence the splicing process by differentially affecting canonical versus cryptic splice site utilization within intron 22 of the FBN1 gene. RT-PCR and Western blot analyses, using FBN1 minigenes transfected into HeLa and COS-7 cells, revealed that the c.2678-15C&gt;A variant disrupts normal splicing of intron 22 leading to aberrant 13-nt intron 22 inclusion, frameshift, and premature termination codon. Collectively, the results strongly suggest that the c.2678-15C&gt;A variant could lead to haploinsufficiency of the FBN1 functional protein and structural connective tissue fragility in MFS complicated by aorta dilation, a finding that further expands on the genetic basis of aortic pathology."	"Anterior spinal artery syndrome from type A aortic dissection in a patient with Marfan syndrome due to a novel fibrillin mutation. Type A aortic dissection is a rare but important cardiac surgical emergency. Few reports exist in the literature describing anterior spinal artery syndrome as a presenting feature. We report a case of anterior spinal artery syndrome due to aortic dissection in a patient with Marfan syndrome caused by a novel fibrillin mutation. A 53-year old female presented with chest pain and sudden-onset paralysis. Neurological examination revealed normal upper limb examination, reduced lower limb power and reflexes but normal sensation. CT scanning revealed type A acute aortic dissection which was treated with emergent cardiac surgical repair. At clinic follow up 3 years later, signs of Marfan syndrome were opportunistically noted and genetic testing revealed a novel mutation in the Fibrillin 1 gene. This case emphasises the importance of a good initial clinical assessment, including thorough neurological examination, as well as a low threshold of clinical suspicion for an aortic dissection in such a constellation of symptoms. The importance of family history should also be emphasised given the coincidental diagnosis of Marfan syndrome in a first-degree relative. Furthermore, this case illustrates the classical signs of anterior spinal artery syndrome."	"Clinical and Laboratory Biomarkers for Pseudoexfoliation Syndrome. In this review, we present an update on biomarkers (both clinical and laboratory) on the basis of recent peer-reviewed publications relating to pseudoexfoliation syndrome and pseudoexfoliation glaucoma."	"Simulated Microgravity Condition Alters the Gene Expression of some ECM and Adhesion Molecules in Adipose Derived Stem Cells. Adipose- derived stem cells (ADSCs) are widely used for tissue engineering and regenerative medicine. The beneficial effects of ADSCs on wound healing have already been reported. Remodeling of extracellular matrix (ECM) is the most important physiological event during wound healing. ECM is sensitive to mechanical stresses and the expression of its components can be therefore influenced. The aim of this study was to investigate the effect of simulated microgravity on gene expression of some ECM and adhesion molecules in human ADSCs. After isolation and characterization of ADSCs, cells were exposed to simulated microgravity for 1, 3 and 7 days. Real-time PCR, fluorescence immunocytochemistry, and MTT assay were performed to evaluate the alterations of integrin subunit beta 1 (ITGB1), collagen type 3 (ColIII), matrix metalloproteinase-1 (MMP1), CD44, fibrillin (FBN1), vimentin (VIM) genes, and ColIII protein levels as well as cells viability. Microgravity simulation increased the expression of ITGB1, ColIII, MMP1, and CD44 and declined the expression of FBN1 and VIM genes. ColIII protein levels also increased. There were no significant changes in the viability of cells cultured in microgravity. Since the high expression of ECM components is known as one of the fibroblast markers, our data suggest that pretreatment of ADSCs by simulated microgravity may increase their differentiation capacity towards fibroblastic cells. Microgravity had not adversely affected the viability of ADSCs, and it is likely to be used alone or in combination with biochemical inducers for cell manipulation."	"Pharmacological strategies to inhibit intra-plaque angiogenesis in atherosclerosis. Atherosclerosis is a complex multifactorial disease that affects large and medium-sized arteries. Rupture of atherosclerotic plaques and subsequent acute cardiovascular complications remain a leading cause of death and morbidity in the Western world. There is a considerable difference in safety profile between a stable and a vulnerable, rupture-prone lesion. The need for plaque-stabilizing therapies is high, and for a long time the lack of a suitable animal model mimicking advanced human atherosclerotic plaques made it very difficult to make progress in this area. Evidence from human plaques indicates that intra-plaque (IP) angiogenesis promotes atherosclerosis and plaque destabilization. Although neovascularization has been widely investigated in cancer, studies on the pharmacological inhibition of this phenomenon in atherosclerosis are scarce, mainly due to the lack of an appropriate animal model. By using ApoE<sup>-/-</sup> Fbn1<sup>C1039G+/-</sup> mice, a novel model of vulnerable plaques, we were able to investigate the effect of pharmacological inhibition of various mechanisms of IP angiogenesis on plaque destabilization and atherogenesis. In the present review, we discuss the following potential pharmacological strategies to inhibit IP angiogenesis: (1) inhibition of vascular endothelial growth factor signalling, (2) inhibition of glycolytic flux, and (3) inhibition of fatty acid oxidation. On the long run, IP neovascularization might be applicable as a therapeutic target to induce plaque stabilization on top of lipid-lowering treatment."	"Decreased mitochondrial respiration in aneurysmal aortas of Fibulin-4 mutant mice is linked to PGC1A regulation. Thoracic aortic aneurysms are a life-threatening condition often diagnosed too late. To discover novel robust biomarkers, we aimed to better understand the molecular mechanisms underlying aneurysm formation. In Fibulin-4R/R mice, the extracellular matrix protein Fibulin-4 is 4-fold reduced, resulting in progressive ascending aneurysm formation and early death around 3 months of age. We performed proteomics and genomics studies on Fibulin-4R/R mouse aortas. Intriguingly, we observed alterations in mitochondrial protein composition in Fibulin-4R/R aortas. Consistently, functional studies in Fibulin-4R/R vascular smooth muscle cells (VSMCs) revealed lower oxygen consumption rates, but increased acidification rates. Yet, mitochondria in Fibulin-4R/R VSMCs showed no aberrant cytoplasmic localization. We found similar reduced mitochondrial respiration in Tgfbr-1M318R/+ VSMCs, a mouse model for Loeys-Dietz syndrome (LDS). Interestingly, also human fibroblasts from Marfan (FBN1) and LDS (TGFBR2 and SMAD3) patients showed lower oxygen consumption. While individual mitochondrial Complexes I-V activities were unaltered in Fibulin-4R/R heart and muscle, these tissues showed similar decreased oxygen consumption. Furthermore, aortas of aneurysmal Fibulin-4R/R mice displayed increased reactive oxygen species (ROS) levels. Consistent with these findings, gene expression analyses revealed dysregulation of metabolic pathways. Accordingly, blood ketone levels of Fibulin-4R/R mice were reduced and liver fatty acids were decreased, while liver glycogen was increased, indicating dysregulated metabolism at the organismal level. As predicted by gene expression analysis, the activity of PGC1α, a key regulator between mitochondrial function and organismal metabolism, was downregulated in Fibulin-4R/R VSMCs. Increased TGFβ reduced PGC1α levels, indicating involvement of TGFβ signalling in PGC1α regulation. Activation of PGC1α restored the decreased oxygen consumption in Fibulin-4R/R VSMCs and improved their reduced growth potential, emphasizing the importance of this key regulator. Our data indicate altered mitochondrial function and metabolic dysregulation, leading to increased ROS levels and altered energy production, as a novel mechanism, which may contribute to thoracic aortic aneurysm formation."	"A heart for fibrillin: spatial arrangement in adult wild-type murine myocardial tissue. Fibrillins are major constituents of microfibrils, which are essential components of the extracellular matrix of connective tissues where they contribute to the tissue homeostasis. Although it is known that microfibrils are abundantly expressed in the left ventricle of the heart, limited data are available about the presence of microfibrils in the other parts of the myocardial tissue and whether there are age or sex-related differences in the spatial arrangement of the microfibrils. This basic knowledge is essential to better understand the impact of fibrillin-1 pathogenic variants on the myocardial tissue as seen in Marfan related cardiomyopathy. We performed histological analyses on wild-type male and female murine myocardial tissue collected at different time-points (1, 3 and 6 months). Fibrillin-1 and -2 immunofluorescence stainings were performed on cross-sections at the level of the apex, the mid-ventricles and the atria. In addition, other myocardial matrix components such as collagen and elastin were also investigated. Fibrillin-1 presented as long fibres in the apex, mid-ventricles and atria. The spatial arrangement differed between the investigated regions, but not between age groups or sexes. Collagen had a similar broad spatial arrangement to that of fibrillin-1, whereas elastic fibres were primarily present in the atria and the vessels. In contrast to fibrillin-1, limited amounts of fibrillin-2 were observed. Fibrillin-rich fibres contribute to the architecture of the myocardial tissue in a region-dependent manner in wild-type murine hearts. This knowledge is helpful for future experimental set-ups of studies evaluating the impact of fibrillin-1 pathogenic variants on the myocardial tissue."	"Small GTP-Binding Protein GDP Dissociation Stimulator Prevents Thoracic Aortic Aneurysm Formation and Rupture by Phenotypic Preservation of Aortic Smooth Muscle Cells. Thoracic aortic aneurysm (TAA) and dissection are fatal diseases that cause aortic rupture and sudden death. The small GTP-binding protein GDP dissociation stimulator (SmgGDS) is a crucial mediator of the pleiotropic effects of statins. Previous studies revealed that reduced force generation in aortic smooth muscle cells (AoSMCs) causes TAA and thoracic aortic dissection. To examine the role of SmgGDS in TAA formation, we used an angiotensin II (1000 ng·min<sup>-1</sup>·kg<sup>-1</sup>, 4 weeks)-induced TAA model. We found that 33% of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice died suddenly as a result of TAA rupture, whereas there was no TAA rupture in Apoe<sup>-/-</sup> control mice. In contrast, there was no significant difference in the ratio of abdominal aortic aneurysm rupture between the 2 genotypes. We performed ultrasound imaging every week to follow up the serial changes in aortic diameters. The diameter of the ascending aorta progressively increased in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice compared with Apoe<sup>-/-</sup> mice, whereas that of the abdominal aorta remained comparable between the 2 genotypes. Histological analysis of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed dissections of major thoracic aorta in the early phase of angiotensin II infusion (day 3 to 5) and more severe elastin degradation compared with Apoe<sup>-/-</sup> mice. Mechanistically, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed significantly higher levels of oxidative stress, matrix metalloproteinases, and inflammatory cell migration in the ascending aorta compared with Apoe<sup>-/-</sup> mice. For mechanistic analyses, we primary cultured AoSMCs from the 2 genotypes. After angiotensin II (100 nmol/L) treatment for 24 hours, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs showed significantly increased matrix metalloproteinase activity and oxidative stress levels compared with Apoe<sup>-/-</sup> AoSMCs. In addition, SmgGDS deficiency increased cytokines/chemokines and growth factors in AoSMCs. Moreover, expressions of fibrillin-1 ( FBN1), α-smooth muscle actin ( ACTA2), myosin-11 ( MYH11), MYLLK, and PRKG1, which are force generation genes, were significantly reduced in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs compared with Apoe<sup>-/-</sup> AoSMCs. A similar tendency was noted in AoSMCs from patients with TAA compared with those from control subjects. Finally, local delivery of the SmgGDS gene construct reversed the dilation of the ascending aorta in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice. These results suggest that SmgGDS is a novel therapeutic target for the prevention and treatment of TAA."	"[Mutation analysis of FBN1 gene in a child with Marfan syndrome]. To detect potential mutations of fibrillin-1 (FBN1) gene in a child with Marfan syndrome (MFS) and explore its molecular pathogenesis. The 66 exons of the FBN1 gene were analyzed by direct sequencing. SIFT and PolyPhen-2 were used to predict the structural and functional changes at the protein level. A novel heterozygous mutation c.3998 G&gt;A (p.Cys1333Tyr) was found in exon 32 in the child. The same mutation was not found among his unaffected family members and 683 healthy controls. Multiple sequence alignment showed that this novel mutation was located in a highly conserved region of the FBN1 protein across various species and may induce structural change to a functional domain. The novel c.3998G&gt;A (p.Cys1333Tyr) mutation of the FBN1 gene probably predisposed the MFS in the child. Above finding has enriched the spectrum of FBN1 mutations."	"Angiotensin, transforming growth factor β and aortic dilatation in Marfan syndrome: Of mice and humans. Marfan syndrome is consequent upon mutations in FBN1, which encodes the extracellular matrix microfibrillar protein fibrillin-1. The phenotype is characterised by development of thoracic aortic aneurysm. Current understanding of the pathogenesis of aneurysms in Marfan syndrome focuses upon abnormal vascular smooth muscle cell signalling through the transforming growth factor beta (TGFβ) pathway. Angiotensin II (Ang II) can directly induce aortic dilatation and also influence TGFβ synthesis and signalling. It has been hypothesised that antagonism of Ang II signalling may protect against aortic dilatation in Marfan syndrome. Experimental studies have been supportive of this hypothesis, however results from multiple clinical trials are conflicting. This paper examines current knowledge about the interactions of Ang II and TGFβ signalling in the vasculature, and critically interprets the experimental and clinical findings against these signalling interactions."	"Marfan Syndrome: oral implication and management. Marfan's Syndrome is a multisistemic pathology of connective tissues, a dominant autosomal transmission, first discovered by a French pediatrician, Antoine Bernard-Jean Marfan, who first found in some of his patients a disproportionate alteration of inferior infertility. This alteration was caused by the mutation of the FBN1 gene, located on the long arm of the chromosome 15, which encodes for an extracellular matrix protein, fibrin-1. Later it was discovered that the disease could occasionally be due also to the mutation of the TGFBR2 gene, which encodes for a TGF-beta receptor 1. The estimated incidence of the disease is 2-3 subjects affected every 10,000, in the absence of predilection ratial, ethnic, geographic and gender. It is believed that some 15,000 people in Italy suffer from Marfan Syndrome. The disease is characterized by a wide range of clinical manifestations that affect different organs. The study evaluates through a literature review the manifestations in the oral cavity of the marfan syndrome and the correct management of the patient during dental maneuvers."	"Identification of Pathological FBN1 Variants Is Not Straightforward. NA"	"Tailoring the American College of Medical Genetics and Genomics and the Association for Molecular Pathology Guidelines for the Interpretation of Sequenced Variants in the FBN1 Gene for Marfan Syndrome: Proposal for a Disease- and Gene-Specific Guideline. The introduction of next-generation sequencing techniques has substantially increased the identification of new genetic variants and hence the necessity of accurate variant interpretation. In 2015, the American College of Medical Genetics and Genomics and the Association for Molecular Pathology proposed new variant interpretation guidelines. Gene-specific characteristics were, however, not considered, sometimes leading to inconsistent variant interpretation. To allow a more uniform interpretation of variants in the FBN1 (fibrillin-1) gene, causing Marfan syndrome, we tailored these guidelines to this gene and disease. We adapted 15 of the 28 general criteria and classified 713 FBN1 variants previously identified in our laboratory as causal mutation or variant of uncertain significance according to these adapted guidelines. We then compared the agreement between previous methods and the adapted American College of Medical Genetics and Genomics and the Association for Molecular Pathology criteria. Agreement between the methods was 86.4% (K-alpha, 0.6). Application of the tailored guidelines resulted in an increased number of variants of uncertain significance (14.5% to 24.2%). Of the 85 variants that were downscaled to likely benign or variant of uncertain significance, 59.7% were missense variants outside a well-established functional site. Available clinical- or segregation data, necessary to further classify these types of variants, were in many cases insufficient to aid the classification. Our study shows that classification of variants remains challenging and may change over time. Currently, a higher level of evidence is necessary to classify a variant as pathogenic. Gene-specific guidelines may be useful to allow a more precise and uniform interpretation of the variants to accurately support clinical decision-making."	"Identification of Novel Causal FBN1 Mutations in Pedigrees of Marfan Syndrome. Marfan syndrome (MFS) is an autosomal dominant genetic disorder of the connective tissue, typically characteristic of cardiovascular manifestations, valve prolapse, left ventricle enlargement, and cardiac failure. Fibrillin-1 (FBN1) is the causative gene in the pathogenesis of MFS. Patients with different FBN1 mutations often present more considerable phenotypic variation. In the present study, three affected MFS pedigrees were collected for genetic analysis. Using next-generation sequencing (NGS) technologies, 3 novel frameshift pathogenic mutations which are cosegregated with affected subjects in 3 pedigrees were identified. These novel mutations provide important diagnostic and therapeutic insights for precision medicine in MFS, especially regarding the lethal cardiovascular events."	"Hungarian Marfan family with large FBN1 deletion calls attention to copy number variation detection in the current NGS era. Copy number variations (CNVs) comprise about 10% of reported disease-causing mutations in Mendelian disorders. Nevertheless, pathogenic CNVs may have been under-detected due to the lack or insufficient use of appropriate detection methods. In this report, on the example of the diagnostic odyssey of a patient with Marfan syndrome (MFS) harboring a hitherto unreported 32-kb FBN1 deletion, we highlight the need for and the feasibility of testing for CNVs (&gt;1 kb) in Mendelian disorders in the current next-generation sequencing (NGS) era."	"Looking for the Missing Links: Challenges in the Search for Genotype-Phenotype Correlation in Marfan Syndrome. NA"	"Impact of Pathogenic FBN1 Variant Types on the Progression of Aortic Disease in Patients With Marfan Syndrome. Marfan syndrome can cause life-threatening aortic complications. We investigated the relationship between FBN1 genotype and severe aortopathy (aortic root replacement, type A dissections, and related death). We evaluated 248 patients with pathogenic or likely pathogenic FBN1 variants. The variants were classified as haploinsufficient type (HI, n=93) or dominant-negative type (DN, n=155) based on their location and predicted amino acid alterations, and we examined the effects of the FBN1 genotype on severe aortic events (aortic root replacement, type A dissections, and related death). The cumulative event-free probability was significantly lower in the HI group than in the DN group (adjusted hazard ratio, 2.1; 95% confidence interval, 1.4 -3.2; P&lt;0.001). DN-CD+HI patients should be monitored more carefully than DN-nonCD patients for rapid development of aortic root aneurysms."	"Two rare missense mutations in the fibrillin‑1 gene associated with atypical cardiovascular manifestations in a Chinese patient affected by Marfan syndrome. The present report aimed to evaluate the results of screen mutations of the fibrillin (FBN) 1 gene and analyze the symptoms in one Chinese patient clinically diagnosed with Marfan syndrome (MFS). Clinical data were collected and FBN1 gene sequencing was performed. Genomic DNA was extracted from the blood sample of the patient. All 65 exons were screened using a polymerase chain reaction assay. The diagnosis of MFS was confirmed via identification of symptoms presenting in the skeletal system (arachnodactyly, walker wrist and thumb signs) and the ocular system (ectopia lentis), in addition to a positive family history. The patient's cardiovascular manifestations (dilatation of the four cardiac chambers, severe mitral valve regurgitation and a large saccular aneurysm of the non‑coronary sinus of Valsalva) were atypical to those that most frequently occur in cases of MFS. Following gene sequencing, two novel heterozygous mutations of the FBN‑1 gene were identified: c.3442C&gt;G in exon 27, proline replaced with alanine (p. Pro1148Ala) and c.6388G&gt;A in exon 52, glutamic acid replaced with lysine (p. Glu2130Lys). The clinical symptoms and family history were important in the diagnosis of MFS, however the atypical signs that presented in the cardiovascular system may be associated with the disease, and may be noted for further cases in the future. Gene sequencing further verified the correct diagnosis of MFS."	"Effect of Simulated Microgravity Conditions on Differentiation of Adipose Derived Stem Cells towards Fibroblasts Using Connective Tissue Growth Factor. Background: Mesenchymal stem cells (MSCs) are multipotent cells able to differentiating into a variety of mesenchymal tissues including osteoblasts, adipocytes and several other tissues. Objectives: Differentiation of MSCs into fibroblast cells in vitro is an attractive strategy to achieve fibroblast cell and use them for purposes such as regeneration medicine. The goal of this study was investigate the simulated microgravity effect on differentiation of Adipose Derived Stem Cells (ADSCs) to fibroblasts. Materials and Methods: To fibroblast differentiation 100 ng.mL<sup>-1</sup> of connective tissue growth factor (CTGF), and for simulation microgravity, 2D clinostat was used. After isolation the human ADSCs from adipose, cells were passaged, and at passages 3 they were used for characterization and subsequent steps. After 7 days of CTGF and simulated microgravity treatment, proliferation, and differentiation were analyzed collectively by MTT assay, quantitative PCR analyses, and Immunocytochemistry staining. Results: MTT assay revealed that CTGF stimulate the proliferation but simulated microgravity didn't have statistically significant effect on cell proliferation. In RNA level the expression of these genes are investigated: collagen type I (COLI), elastin (ELA), collagen type III (ColIII), Matrix Metalloproteinases I(MMP1), Fibronectin 1 (FN1), CD44, Fibroblast Specific protein (FSP-1), Integrin Subunit Beta 1 (ITGB1), Vimentin (VIM) and Fibrillin (FBN). We found that expression of ELN, FN1, FSP1, COL1A1, ITGB1, MMP1 and COL3A1 in both condition, and VIM and FBN1 just in differentiation medium in normal gravity increased. In protein level the expression of COL III and ELN in simulated microgravity increased. Conclusions: These findings collectively demonstrate that the simulated microgravity condition alters the marker fibroblast gene expression in fibroblast differentiation process."	"Patient with Marfan Syndrome and a Novel Variant in FBN1 Presenting with Bilateral Popliteal Artery Aneurysm. We present a 43-year-old man with aortic root dilation, mitral valve prolapse, and marfanoid appearance, who presented with acute onset left leg pain. He underwent a Doppler ultrasound that revealed left popliteal artery aneurysm with thrombus. CT angiogram showed bilateral popliteal artery aneurysms. After repairing of his left popliteal artery aneurysm, he was sent for genetic evaluation. He was diagnosed with Marfan syndrome (MFS) based on the revised Ghent criteria and then underwent FBN1 sequencing and deletion/duplication analysis, which detected a novel pathogenic variant in gene FBN1, denoted by c.5872 T&gt;A (p.Cys1958Ser). MFS is a connective tissue disorder with an autosomal dominant inheritance due to pathogenic variants in FBN1 that encodes Fibrillin-1, a major element of the extracellular matrix, and connective tissue throughout the body. MFS involves multiple systems, most commonly the cardiovascular, musculoskeletal, and visual systems. In our case we present a rare finding of bilateral popliteal artery aneurysms in a male patient with MFS."	"New developments in the genetic diagnosis of short stature. Genome-wide approaches including genome-wide association studies as well as exome and genome sequencing represent powerful new approaches that have improved our ability to identify genetic causes of human disorders. The purpose of this review is to describe recent advances in the genetic causes of short stature. In addition to SHOX deficiency which is one of the most common causes of isolated short stature, PAPPA2, ACAN, NPPC, NPR2, PTPN11 (and other rasopathies), FBN1, IHH and BMP2 have been identified in isolated growth disorders with or without other mild skeletal findings. In addition, novel genetic causes of syndromic short stature have been discovered, including pathogenic variants in BRCA1, DONSON, AMMECR1, NFIX, SLC25A24, and FN1. Isolated growth disorders are often monogenic. Specific genetic causes typically have specific biochemical and/or phenotype characteristics which are diagnostically helpful. Identification of additional subjects with a specific genetic cause of short stature often leads to a broadening of the known clinical spectrum for that condition. The identification of novel genetic causes of short stature has provided important insights into the underlying molecular mechanisms of growth failure."	"High altitude may have driven short stature in Peruvians. NA"	"The phenotypic heterogeneity of patients with Marfan-related disorders and their variant spectrums. Marfan syndrome (MFS) and Loeys-Dietz syndrome (LDS) are the connective tissue disorders characterized by aortic root aneurysm and/or dissection and various additional features. We evaluated the correlation of these mutations with the phenotypes and determined the clinical applicability of the revised Ghent criteria.The mutation spectrum and phenotypic heterogeneities of the 83 and 5 Korean patients with suspected MFS and LDS were investigated as a retrospective manner. In patients with suspected MFS patients, genetic testing was conducted in half of 44 patients who met the revised Ghent criteria clinically and half of 39 patients who did not meet these criteria.Fibrillin1 gene (FBN1) variants were detected in all the 22 patients (100%) who met the revised Ghent criteria and in 14 patients (77.8%) who did not meet the revised Ghent criteria (P = .0205). Patients with mutations in exons 24-32 were diagnosed at a younger age than those with mutations in other exons. Ectopia lentis was more common in patients with missense mutations than in patients with other mutations. Aortic diameter was greater in patients with missense mutations in cysteine residues than in patients with missense mutations in noncysteine residues. Five LDS patients had either TGFBR1 or TGFBR2 variants, of which 1 patient identified TGFBR1 variant uncertain significance.The revised Ghent criteria had very high clinical applicability for detecting FBN1 variants in patients with MFS and might help in selecting patients with suspected MFS for genetic testing."	"Cross-ancestry genome-wide association analysis of corneal thickness strengthens link between complex and Mendelian eye diseases. Central corneal thickness (CCT) is a highly heritable trait associated with complex eye diseases such as keratoconus and glaucoma. We perform a genome-wide association meta-analysis of CCT and identify 19 novel regions. In addition to adding support for known connective tissue-related pathways, pathway analyses uncover previously unreported gene sets. Remarkably, &gt;20% of the CCT-loci are near or within Mendelian disorder genes. These included FBN1, ADAMTS2 and TGFB2 which associate with connective tissue disorders (Marfan, Ehlers-Danlos and Loeys-Dietz syndromes), and the LUM-DCN-KERA gene complex involved in myopia, corneal dystrophies and cornea plana. Using index CCT-increasing variants, we find a significant inverse correlation in effect sizes between CCT and keratoconus (r = -0.62, P = 5.30 × 10<sup>-5</sup>) but not between CCT and primary open-angle glaucoma (r = -0.17, P = 0.2). Our findings provide evidence for shared genetic influences between CCT and keratoconus, and implicate candidate genes acting in collagen and extracellular matrix regulation."	"Next-generation sequencing reveals a new mutation in the LTBP2 gene associated with microspherophakia in a Spanish family. Microspherophakia is a rare autosomal recessive eye disorder characterized by small spherical lens. It may present as an isolated finding or in association with other ocular and/or systemic disorders. This clinical and genetic heterogeneity requires the study of large genes (ADAMTSL4, FBN1, LTBP2, ADAMTSL-10 and ADAMTSL17). The purpose of the present study is to identify the genetic cause of this pathology in a consanguineous Spanish family. A clinical exome sequencing experiment was executed by the TruSight One® Sequencing Panel (TSO) from Illumina©. Sanger sequencing was used to validate the NGS results. Only the insertion of an adenine in exon 36 of the LTBP2 gene (c.5439_5440insA) was associated with pathogenicity. This new mutation was validated by Sanger sequencing and segregation analysis was also performed. Haplotype analyses using the polymorphic markers D14S1025, D14S43 and D14S999 close to the LTBP2 gene indicated identity by descent in this family. We describe the first case of a microspherophakia phenotype associated with a novel homozygous mutation in the LTBP2 gene in a consanguineous Caucasian family by means of NGS technology."	"Candidate genes in gastric cancer identified by constructing a weighted gene co-expression network. Gastric cancer (GC) is one of the most common cancers with high mortality globally. However, the molecular mechanisms of GC are unclear, and the prognosis of GC is poor. Therefore, it is important to explore the underlying mechanisms and screen for novel prognostic markers and treatment targets. The genetic and clinical data of GC patients in The Cancer Genome Atlas (TCGA) was analyzed by weighted gene co-expression network analysis (WGCNA). Modules with clinical significance and preservation were distinguished, and gene ontology and pathway enrichment analysis were performed. Hub genes of these modules were validated in the TCGA dataset and another independent dataset from the Gene Expression Omnibus (GEO) database by t-test. Furthermore, the significance of these genes was confirmed via survival analysis. We found a preserved module consisting of 506 genes was associated with clinical traits including pathologic T stage and histologic grade. PDGFRB, COL8A1, EFEMP2, FBN1, EMILIN1, FSTL1 and KIRREL were identified as candidate genes in the module. Their expression levels were correlated with pathologic T stage and histologic grade, also affected overall survival of GC patients. These candidate genes may be involved in proliferation and differentiation of GC cells. They may serve as novel prognostic markers and treatment targets. Moreover, most of them were first reported in GC and deserved further research."	"Identification and characterization of a novel FBN1 gene variant in an extended family with variable clinical phenotype of Marfan syndrome. Marfan syndrome (MFS) is a multi-systemic autosomal dominant condition caused by mutations in the gene (FBN1) coding for fibrillin-1. Mutations have been associated with a wide range of overlapping phenotypes. Here, we report on an extended family presenting with skeletal, ocular and cardiovascular clinical features. The 37-year-old male propositus, who had chest pain, dyspnea and shortness of breath, was first diagnosed based on the revised Ghent criteria and then subjected to molecular genetic analyses. FBN1 sequencing of the proband as well as available affected family members revealed the presence of a novel variant, c.7828G&gt;C (p.Glu2610Gln), which was not present in any of the unaffected family members. In silico analyses demonstrated that the Glu2610 residue is part of the conserved DINE motif found at the beginning of each cbEGF domain of FBN1. The substitution of Glu2610 with Gln decreased fibrillin-1 production accordingly. Despite the fact that this variation appears to be primarily responsible for the etiology of MFS in the present family, our findings suggest that variable clinical expressions of the disease phenotype should be considered critically by the physicians."	"Fibrillin microfibrils and proteases, key integrators of fibrotic pathways. Supramolecular networks composed of multi-domain ECM proteins represent intricate cellular microenvironments which are required to balance tissue homeostasis and direct remodeling. Structural deficiency in ECM proteins results in imbalances in ECM-cell communication resulting often times in fibrotic reactions. To understand how individual components of the ECM integrate communication with the cell surface by presenting growth factors or providing fine-tuned biomechanical properties is mandatory for gaining a better understanding of disease mechanisms in the quest for new therapeutic approaches. Here we provide an overview about what we can learn from inherited connective tissue disorders caused primarily by mutations in fibrillin-1 and binding partners as well as by altered ECM processing leading to defined structural changes and similar functional knock-in mouse models. We will utilize this knowledge to propose new molecular hypotheses which should be tested in future studies."	"A 2-Year-Old Child with Bilateral Ectopis Lentis and a Novel FBN1 Gene Variant Cys129Ser. Marfan syndrome and dominant ectopia lentis are part of type 1 fibrillinopathies that are caused by FBN1 pathogenic variants. Making a diagnosis could be challenging due to the clinical overlap between these disorders. The revised Ghent criteria used for Marfan syndrome diagnosis helped in resolving some of the confusion, especially in younger children. We report on a case of bilateral ectopia lentis in a 2-year-old child with a normal echocardiogram. FBN1 sequencing revealed a novel likely pathogenic variant described as c.385T &gt; A (p.Cys129Ser). The patient's father also has a history of bilateral ectopia lentis and his genetic analysis detected the same FBN1 variant as the proband."	"Topical retinol attenuates stress-induced ageing signs in human skin ex vivo, throughEGFR activation viaEGF, but notERK andAP-1 activation. Stress-induced oxidative damage and the inflammatory response lead to degradation of collagen and elastic fibres and wrinkle formation. Topical retinol (or vitamin A) can be a strategy to attenuate the effects of stress in skin as it promotes collagen and elastic fibre production and reduces protease synthesis. This study investigated the effect of topical retinol in stressed human skin using in vitro and ex vivo models. Human skin explants were treated with high levels of epinephrine (as observed in stressed patients) and topically with retinol for 13 days. Human dermal fibroblasts were treated with conditioned medium of ex vivo retinol-treated and non-stressed (without epinephrine) human skin for 24 hours. In ex vivo human skin, retinol reversed the epinephrine-induced reduction in epidermal proliferation and differentiation, normalizing epidermal thickness. Retinol also inhibited the epinephrine-induced reduction in elastic fibre deposition and organization, restoring dermal thickness. In addition, retinol reversed the epinephrine-induced increase in c-JUN protein expression, but it did not alter extracellular signal-regulated kinase 1/2 (ERK) phosphorylation in ex vivo human skin. Conditioned medium of ex vivo retinol-treated and non-stressed human skin presented an increased protein expression of epidermal growth factor (EGF). In human dermal fibroblasts, conditioned medium of ex vivo retinol-treated and non-stressed human skin increased protein and gene expression of fibrillin-1 and protein expression of EGF receptor (EGFR). In conclusion, topical retinol attenuates stress-induced skin ageing signs in human skin ex vivo, probably through EGFR activation via EGF, but not by the stress-activated ERK 1/2 and c-JUN pathways."	"Differential reorganisation of cutaneous elastic fibres: a comparison of the in vivo effects of broadband ultraviolet B versus solar simulated radiation. Long-term exposure of human skin to ultraviolet radiation (UVR) in sunlight negatively impacts its appearance and function with photoaged skin having a characteristic leathery, rough appearance, with deep wrinkles. These clinical features of photodamage are thought to result from UVR-induced remodelling of the dermal extracellular matrix, particularly the elastic fibre system. There are few in vivo human data on the impact of acute UVR exposure on this fibre system and particularly solar-simulated radiation (SSR)-mediated effects. We examined the differential effect of broadband UVB and SSR on the human dermal elastic fibre system, and specifically the microfibrillar components fibrillin-1, fibulin-2 and fibulin-5. Healthy white Caucasian adults (skin type II-III) were recruited and irradiated with 3× their minimal erythema dose of broadband UVB (n = 6) or SSR (n = 6) on photoprotected buttock skin. Punch biopsies were taken 24 h after irradiation and from unirradiated control skin. Overall, histological assessment of elastic fibres revealed significantly less elastic fibre staining in broadband UVB (P = 0.004) or SSR (P = 0.04) irradiated skin compared to unirradiated control skin. Significantly less staining of fibrillin-1-positive microfibrils was also observed in the papillary dermis of UVB irradiated skin (P = 0.02) but not skin exposed to SSR. Conversely, immunohistochemistry for fibulin-5-positive microfibrils revealed significantly less expression in skin exposed to SSR (P = 0.04) but not to broadband UVB. There was no significant change in fibulin-2-positive microfibrils following either broadband UVB or SSR irradiation. Thus, broadband UVB and SSR mediate differential effects on individual components of the dermal elastic fibre network in human skin. Further human studies are required to explore the mechanisms underlying these findings and the impact of potential photoprotective agents."	"Genome-Wide Association Analyses Highlight the Potential for Different Genetic Mechanisms for Litter Size Among Sheep Breeds. Reproduction is an important trait in sheep breeding as well as in other livestock. However, despite its importance the genetic mechanisms of litter size in domestic sheep (Ovis aries) are still poorly understood. To explore genetic mechanisms underlying the variation in litter size, we conducted multiple independent genome-wide association studies in five sheep breeds of high prolificacy (Wadi, Hu, Icelandic, Finnsheep, and Romanov) and one low prolificacy (Texel) using the Ovine Infinium HD BeadChip, respectively. We identified different sets of candidate genes associated with litter size in different breeds: BMPR1B, FBN1, and MMP2 in Wadi; GRIA2, SMAD1, and CTNNB1 in Hu; NCOA1 in Icelandic; INHBB, NF1, FLT1, PTGS2, and PLCB3 in Finnsheep; ESR2 in Romanov and ESR1, GHR, ETS1, MMP15, FLI1, and SPP1 in Texel. Further annotation of genes and bioinformatics analyses revealed that different biological pathways could be involved in the variation in litter size of females: hormone secretion (FSH and LH) in Wadi and Hu, placenta and embryonic lethality in Icelandic, folliculogenesis and LH signaling in Finnsheep, ovulation and preovulatory follicle maturation in Romanov, and estrogen and follicular growth in Texel. Taken together, our results provide new insights into the genetic mechanisms underlying the prolificacy trait in sheep and other mammals, suggesting targets for selection where the aim is to increase prolificacy in breeding projects."	"Fabrication of engineered tubular tissue for small blood vessels via three-dimensional cellular assembly and organization ex vivo. Although there is a great need for suitable vascular replacements in clinical practice, much progress needs to be made toward the development of a fully functional tissue-engineered construct. We propose a fabrication method of engineered tubular tissue for small blood vessels via a layer-by-layer cellular assembly technique using mouse smooth muscle cells, the construction of a poly-(l-lactide-co-ε-caprolactone) (PLCL) scaffold, and integration in a microfluidic perfusion culture system. The cylindrical PLCL scaffold is incised, expanded, and its surface is laminated with the cell layers. The construct confirms into tubular structures due to residual stress imposed by the cylindrical PLCL scaffold. The perfusion culture system allows simulation of static, perfusion (laminar flow), and perfusion with pulsatile pressure (Pulsatile flow) conditions in which mimicking the in vivo environments. The aim of this evaluation was to determine whether fabricated tubular tissue models developed their mechanical properties. The cellular response to hemodynamic stimulus imposed by the dynamic culture system is monitored through expression analysis of fibrillin-1 and fibrillin-2, elastin and smooth muscle myosin heavy chains isoforms transcription factors, which play an important role in tissue elastogenesis. Among the available materials for small blood vessel construction, these cellular hybrid vascular scaffolds hold much potential due to controllability of the mechanical properties of synthetic polymers and biocompatibility of integrated cellular components."	"A Selective Extracellular Matrix Proteomics Approach Identifies Fibronectin Proteolysis by A Disintegrin-like and Metalloprotease Domain with Thrombospondin Type 1 Motifs (ADAMTS16) and Its Impact on Spheroid Morphogenesis. Secreted and cell-surface proteases are major mediators of extracellular matrix (ECM) turnover, but their mechanisms and regulatory impact are poorly understood. We developed a mass spectrometry approach using a cell-free ECM produced in vitro to identify fibronectin (FN) as a novel substrate of the secreted metalloprotease ADAMTS16. ADAMTS16 cleaves FN between its (I)5 and (I)6 modules, releasing the N-terminal 30 kDa heparin-binding domain essential for FN self-assembly. ADAMTS16 impairs FN fibrillogenesis as well as fibrillin-1 and tenascin-C assembly, thus inhibiting formation of a mature ECM by cultured fibroblasts. Furthermore ADAMTS16 has a marked morphogenetic impact on spheroid formation by renal tubule-derived MDCKI cells. The N-terminal FN domain released by ADAMTS16 up-regulates MMP3, which cleaves the (I)5-(I)6 linker of FN similar to ADAMTS16, therefore creating a proteolytic feed-forward mechanism. Thus, FN proteolysis not only regulates FN turnover, but also FN assembly, with potential long-term consequences for ECM assembly and morphogenesis."	"Truncated C-terminus of fibrillin-1 induces Marfanoid-progeroid-lipodystrophy (MPL) syndrome in rabbit. Various clinical differences have been observed between patients with the FBN1 gene mutation and those with the classical Marfan phenotype. Although FBN1 knockout (KO) or dominant-negative mutant mice are widely used as an animal model for Marfan syndrome (MFS), these mice cannot recapitulate the genotype/phenotype relationship of Marfanoid-progeroid-lipodystrophy (MPL) syndrome, which is caused by a mutation in the C-terminus of fibrillin-1, the penultimate exon of the FBN1 gene. Here, we describe the generation of a rabbit MPL model with C-terminal truncation of fibrillin-1 using a CRISPR/Cas9 system. FBN1 heterozygous (FBN1 Het) rabbits faithfully recapitulated the phenotypes of MFS, including muscle wasting and impaired connective tissue, ocular syndrome and aortic dilation. Moreover, skin symptoms, lipodystrophy, growth retardation and dysglycemia were also seen in these FBN1 Het rabbits, and have not been reported in other animal models. In conclusion, this novel rabbit model mimics the histopathological changes and functional defects of MPL syndrome, and could become a valuable model for studies of pathogenesis and drug screening for MPL syndrome."	"Human skin model for mimic dermal studies in pathology with a clinical implication in pressure ulcers. Despite advances in regenerative medicine and tissue engineering, human skin substitutes remain a clear goal to achieve. Autografts remain the principal clinical option. The long-term changes in dermis, as well as its response after injuries, are not well known. Research in this field has been hindered by a lack of experimental animal models. This study analyzes the architectural dermal scaffold (collagen and elastin fibers plus fibrillin-microfibrils) changes in a model of human skin pressure ulcers in mice. Immunosuppressed NOD/Scid mice (n=10) were engrafted with human skin of dimensions 4x3 cm. After 60 days as a permanent graft, a pressure ulcer (PU) was created in the human skin using a compression device. Three study groups were established: full-thickness skin graft before (hFTSG) and after applying mechanical pressure (hFTSG-PU). Native human skin was used as control group. Evaluations were conducted with visual and histological assessment. Scaffold components from each group were compared by immunohistochemical staining (tropoelastin, collagen I and III, metalloproteins (MMP), fibulins, and lysil oxidases (LOX) among others). The long-term engrafted skin showed a certain degradative state of dermis scaffold, as noticed by the active expression of MMPs and tropoelastin compared to native skin. However, a great reparative response after pressure ulcer onto the engrafted skin was observed. A significant increase of fibrillin microfibrils components (TGF-β, MAGP-1 and fibrillin-1), and matrix suprastructures of collagen I, III and LOX lead to an active restructuration of dermal tissue. Our human skin model in mice revealed the important role of the dermal scaffold component to reach skin stability and its capability to react to mechanical pressure injuries. These results showed the important role of dermal scaffold to support the histoarchitecture and mechanosensation of the human skin."	"Simulation of the Elastin and Fibrillin in Non-Irradiated or UVA Radiated Fibroblasts, and Direct Inhibition of Elastase or Matrix Metalloptoteinases Activity by Nicotinamide or Its Derivatives. Skin aging/photoaging is associated with altered the structure of collagen and elastin fibers, and increased activity of matrix metalloproteinases (MMP) and elastase. Nicotinamide and its derivatives, 2,6-dihydroxynicotinamide, 2,4,5,6-tetrahydroxynicotinamide, and 3-hydroxypicolinamide (collectively niacin derivatives) stimulate fibrillar collagen and heat shock proteins in dermal fibroblasts. The goal of this research was to extend the understanding of the anti-skin aging mechanism of these niacin derivatives through the stimulation of elastin (at the protein and promoter levels), fibrillin (1 and 2) in nonirradiated or ultraviolet (UVA) radiated dermal fibroblasts, and through the direct inhibition of MMP (1, 3, and 9) and elastase activities. UVA radiation stimulated elastin and inhibited fibrillin-1 and fibrillin-2 in dermal fibroblasts. The niacin derivatives significantly stimulated the expression of elastin (transcriptionally), fibrillin-1 and fibrillin-2 in nonirradiated and UVA radiated fibroblasts, and directly inhibited MMP or elastase activity. Overall, the niacin derivatives, more so nicotinamide and 2,6-dihydroxynicotinamide, have anti-skin aging potential through the stimulation of elastin and fibrillin, and the direct inhibition of the extracellular matrix proteolytic enzymes."	"Myo/Nog cells are present in the ciliary processes, on the zonule of Zinn and posterior capsule of the lens following cataract surgery. Myo/Nog cells, named for their expression of MyoD and noggin, enter the eye during early stages of embryonic development. Their release of noggin is critical for normal morphogenesis of the lens and retina. Myo/Nog cells are also present in adult eyes. Single nucleated skeletal muscle cells designated as myofibroblasts arise from Myo/Nog cells in cultures of lens tissue. In this report we document the presence of Myo/Nog cells in the lens, ciliary body and on the zonule of Zinn in mice, rabbits and humans. Myo/Nog cells were rare in all three structures. Their prevalence increased in the lens and ciliary body of rabbits 24 h following cataract surgery. Rabbits developed posterior capsule opacification (PCO) within one month of surgery. The number of Myo/Nog cells continued to be elevated in the lens and ciliary body. Myo/Nog cells containing alpha smooth muscle actin and striated muscle myosin were present on the posterior capsule and overlaid deformations in the capsule. Myo/Nog cells also were present on the zonule fibers and external surface of the posterior capsule. These findings suggest that Myo/Nog contribute to PCO and may use the zonule fibers to migrate between the ciliary processes and lens."	"Fibrillin-1 insufficiency alters periodontal wound healing failure in a mouse model of Marfan syndrome. Marfan syndrome (MFS) is a systemic connective tissue disorder caused by insufficient fibrillin-1 (FBN-1), a major component of microfibrils that controls the elasticity and integrity of connective tissues. FBN-1 insufficiency in MFS leads to structural weakness, which causes various tissue disorders, including cardiovascular and periodontal disease. However, the role of FBN-1 insufficiency in the destruction and regeneration of connective tissue has not yet been clarified. To investigate the role of FBN-1 insufficiency in tissue destruction and regeneration. We used a ligature-induced (LI) periodontal disease model in fbn-1-deficient mice (fbn-1<sup>c1039G/+</sup> mice) with MFS and investigated the regeneration level of periodontal tissue and as an inflamatic marker, the expression of the matrix metalloproteinase (mmp)-9 and tumor necrosis factor (tnf)-α. Interestingly, fbn-1<sup>c1039G/+</sup> mice exhibited slowed wound healing compared with wild type mice, but periodontal tissue destruction did not differ between these mice. Moreover, fbn-1<sup>c1039G/+</sup> mice exhibited delayed bone healing in association with continuous mmp-9 and tnf-α expression. Furthermore, inflammatory cells were obvious even after the removal of ligatures. These data suggest that fibrillin-1 insufficiency in fbn-1<sup>c1039G/+</sup> mice interfered with wound healing in connective tissue damaged by inflammatory diseases such as periodontal disease."	"Targeted genetic analysis in a large cohort of familial and sporadic cases of aneurysm or dissection of the thoracic aorta. Thoracic aortic aneurysm/aortic dissection (TAAD) is a disorder with highly variable age of onset and phenotype. We sought to determine the prevalence of pathogenic variants in TAAD-associated genes in a mixed cohort of sporadic and familial TAAD patients and identify relevant genotype-phenotype relationships. We used a targeted polymerase chain reaction and next-generation sequencing-based panel for genetic analysis of 15 TAAD-associated genes in 1,025 unrelated TAAD cases. We identified 49 pathogenic or likely pathogenic (P/LP) variants in 47 cases (4.9% of those successfully sequenced). Almost half of the variants were in nonsyndromic cases with no known family history of aortic disease. Twenty-five variants were within FBN1 and two patients were found to harbor two P/LP variants. Presence of a related syndrome, younger age at presentation, family history of aortic disease, and involvement of the ascending aorta increased the risk of carrying a P/LP variant. Given the poor prognosis of TAAD that is undiagnosed prior to acute rupture or dissection, genetic analysis of both familial and sporadic cases of TAAD will lead to new diagnoses, more informed management, and possibly reduced mortality through earlier, preclinical diagnosis in genetically determined cases and their family members."	"Ruptured abdominal aortic aneurysm repair in pediatric Marfan syndrome patient. Marfan syndrome is a well-described autosomal dominant connective tissue disorder with a constellation of anatomic characteristics including aortic degeneration as a result of the spontaneous mutation of the fibrillin gene, FBN1. Whereas life-threatening dissection and ascending aneurysmal rupture have been thoroughly documented in the literature, aneurysms of the abdominal aorta and those present in the pediatric population have only rarely been reported. In this case report, we describe presentation, successful open surgical repair, and recovery of a pediatric Marfan syndrome patient with a ruptured abdominal aortic aneurysm."	"Massive aggrecan and versican accumulation in thoracic aortic aneurysm and dissection. Proteoglycan accumulation is a hallmark of medial degeneration in thoracic aortic aneurysm and dissection (TAAD). Here, we defined the aortic proteoglycanome using mass spectrometry, and based on the findings, investigated the large aggregating proteoglycans aggrecan and versican in human ascending TAAD and a mouse model of severe Marfan syndrome. The aortic proteoglycanome comprises 20 proteoglycans including aggrecan and versican. Antibodies against these proteoglycans intensely stained medial degeneration lesions in TAAD, contrasting with modest intralamellar staining in controls. Aggrecan, but not versican, was increased in longitudinal analysis of Fbn1mgR/mgR aortas. TAAD and Fbn1mgR/mgR aortas had increased aggrecan and versican mRNAs, and reduced expression of a key proteoglycanase gene, ADAMTS5, was seen in TAAD. Fbn1mgR/mgR mice with ascending aortic dissection and/or rupture had dramatically increased aggrecan staining compared with mice without these complications. Thus, aggrecan and versican accumulation in ascending TAAD occurs via increased synthesis and/or reduced proteolytic turnover, and correlates with aortic dissection/rupture in Fbn1mgR/mgR mice. Tissue swelling imposed by aggrecan and versican is proposed to be profoundly deleterious to aortic wall mechanics and smooth muscle cell homeostasis, predisposing to type-A dissections. These proteoglycans provide potential biomarkers for refined risk stratification and timing of elective aortic aneurysm repair."	"Inhibition of the methyltranferase EZH2 improves aortic performance in experimental thoracic aortic aneurysm. Loss-of-function mutations in genes encoding contractile proteins have been observed in thoracic aortic aneurysms (TAA). To gain insight into the contribution of contractile protein deficiency in the pathogenesis of TAA, we examined human aneurysm samples. We found multiple contractile gene products deficient in TAA samples, and in particular, expression of SM22α was inversely correlated with aneurysm size. SM22α-deficient mice demonstrated pregnancy-induced aortic dissection, and SM22α deficiency worsened aortic aneurysm in Fbn1C1039G/+ (Marfan) mice, validating this gene product as a TAA effector. We found that repression of SM22α was enforced by increased activity of the methyltransferase EZH2. TGF-β effectors such as SMAD3 were excluded from binding SM22α-encoding chromatin (TAGLN) in TAA samples, while treatment with the EZH2 inhibitor GSK343 improved cytoskeletal architecture and restored SM22α expression. Finally, inhibition of EZH2 improved aortic performance in Fbn1C1039G/+ mice, in association with restoration of contractile protein expression (including SM22α). Together, these data inform our understanding of contractile protein deficiency in TAA and support the pursuit of chromatin modifying factors as therapeutic targets in aortic disease."	"Exome sequencing reveals blended phenotype of double heterozygous FBN1 and FBN2 variants in a fetus. We report a 29 week fetus with arthrogryposis multiplex congenita, multiple joint dislocations, scoliosis and dysmorphism who was detected to be double heterozygote for putatively pathogenic FBN1 (NM_000138.4:c.6004C &gt; T; p.Pro2002Ser) and FBN2 (NM_001999.3:c.2945G &gt; T; p.Cys982Phe) variants on exome sequencing. The de-novo status of these variants is not confirmed as parental genotypes could not be ascertained. A comparison of the post-mortem findings of the fetus with reported phenotypes of Beals and Marfan syndromes indicated overlapping clinical features suggestive of a blended phenotype."	"Participation of Arachidonic Acid Metabolism in the Aortic Aneurysm Formation in Patients with Marfan Syndrome. Marfan syndrome (MFS) is a pleiotropic genetic disease involving the cardiovascular system where a fibrillin-1 mutation is present. This mutation is associated with accelerated activation of transforming growth factor β (TGFβ1) which contributes to the formation of aneurysms in the root of the aorta. There is an imbalance in the synthesis of thromboxane A2 (TXA2) and prostacyclin, that is a consequence of a differential protein expression of the isoforms of cyclooxygenases (COXs), suggesting an alteration of arachidonic acid (AA) metabolism. The aim of this study was to analyze the participation of AA metabolism associated with inflammatory factors in the dilation and dissection of the aortic aneurysm in patients with MFS. A decrease in AA (p = 0.02), an increase in oleic acid (OA), TGFβ1, tumor necrosis factor alpha (TNFα), prostaglandin E2 (PGE2) (p &lt; 0.05), and COXs activity (p = 0.002) was found. The expressions of phospholipase A2 (PLA2), cytochrome P450 (CYP450 4A), 5-lipoxygenase (5-LOX), COX2 and TXA2R (p &lt; 0.05) showed a significant increase in the aortic aneurysm of patients with MFS compared to control subjects. COX1, 6-keto-prostaglandin 1 alpha (6-keto-PG1α) and 8-isoprostane did not show significant changes. Histological examination of the aortas showed an increase of cystic necrosis, elastic fibers and collagen in MFS. The results suggest that there are inflammatory factors coupled to genetic factors that predispose to aortic endothelial dysfunction in the aortic tissue of patients with MFS. There is a decrease in the percentage of AA, associated with an increase of PLA2, COX2/TXA2R, CYP450 4A, and 5-LOX which leads to a greater synthesis of PGE2 than of 6-keto-PGF1α, thus contributing to the formation of the aortic aneurysm. The evident loss of the homeostasis in these mechanisms confirms that there is a participation of the AA pathway in the aneurysm progression in MFS."	"Redox stress in Marfan syndrome: Dissecting the role of the NADPH oxidase NOX4 in aortic aneurysm. Marfan syndrome (MFS) is characterized by the formation of ascending aortic aneurysms resulting from altered assembly of extracellular matrix fibrillin-containing microfibrils and dysfunction of TGF-β signaling. Here we identify the molecular targets of redox stress in aortic aneurysms from MFS patients, and investigate the role of NOX4, whose expression is strongly induced by TGF-β, in aneurysm formation and progression in a murine model of MFS. Working models included aortae and cultured vascular smooth muscle cells (VSMC) from MFS patients, and a NOX4-deficient Marfan mouse model (Fbn1<sup>C1039G/+</sup>-Nox4<sup>-/-</sup>). Increased tyrosine nitration and reactive oxygen species levels were found in the tunica media of human aortic aneurysms and in cultured VSMC. Proteomic analysis identified nitrated and carbonylated proteins, which included smooth muscle α-actin (αSMA) and annexin A2. NOX4 immunostaining increased in the tunica media of human Marfan aorta and was transcriptionally overexpressed in VSMC. Fbn1<sup>C1039G/+</sup>-Nox4<sup>-/-</sup> mice aortas showed a reduction of fragmented elastic fibers, which was accompanied by an amelioration in the Marfan-associated enlargement of the aortic root. Increase in the contractile phenotype marker calponin in the tunica media of MFS mice aortas was abrogated in Fbn1<sup>C1039G/+</sup>-Nox4<sup>-/-</sup> mice. Endothelial dysfunction evaluated by myography in the Marfan ascending aorta was prevented by the absence of Nox4 or catalase-induced H2O2 decomposition. We conclude that redox stress occurs in MFS, whose targets are actin-based cytoskeleton members and regulators of extracellular matrix homeostasis. Likewise, NOX4 have an impact in the progression of the aortic dilation in MFS and in the structural organization of the aortic tunica media, the VSMC phenotypic modulation, and endothelial function."	"Structural and compositional diversity of fibrillin microfibrils in human tissues. Elastic fibers comprising fibrillin microfibrils and elastin are present in many tissues, including the skin, lungs, and arteries, where they confer elasticity and resilience. Although fibrillin microfibrils play distinct and tissue-specific functional roles, it is unclear whether their ultrastructure and composition differ between elastin-rich (skin) and elastin-poor (ciliary body and zonule) organs or after in vitro synthesis by cultured cells. Here, we used atomic force microscopy, which revealed that the bead morphology of fibrillin microfibrils isolated from the human eye differs from those isolated from the skin. Using newly developed pre-MS preparation methods and LC-MS/MS, we detected tissue-specific regions of the fibrillin-1 primary structure that were differentially susceptible to proteolytic extraction. Comparing tissue- and culture-derived microfibrils, we found that dermis- and dermal fibroblast-derived fibrillin microfibrils differ in both bead morphology and periodicity and also exhibit regional differences in fibrillin-1 proteolytic susceptibility. In contrast, collagen VI microfibrils from the same dermal or fibroblast samples were invariant in ultrastructure (periodicity) and protease susceptibility. Finally, we observed that skin- and eye-derived microfibril suspensions were enriched in elastic fiber- and basement membrane-associated proteins, respectively. LC-MS/MS also identified proteins (such as calreticulin and protein-disulfide isomerase) that are potentially fundamental to fibrillin microfibril biology, regardless of their tissue source. Fibrillin microfibrils synthesized in cell culture lacked some of these key proteins (MFAP2 and -4 and fibrillin-2). These results showcase the structural diversity of these key extracellular matrix assemblies, which may relate to their distinct roles in the tissues where they reside."	"Pathogenesis of aortic wall complications in Marfan syndrome. Patients with Marfan (MFS) syndrome and patients with a bicuspid aortic valve (BAV) are more prone to develop aortic dilation and dissection compared to persons with a tricuspid aortic valve (TAV). To elucidate potential common as well as distinct pathways of clinical relevance, we compared the histopathological substrates of aortic pathology. Ascending aortic wall specimen were divided in five groups: BAV (n=36) and TAV (n=23) without and with dilation and non-dilated MFS (n=8). We performed routine histology to study aortic wall features based on the aortic consensus statement. Immunohistological markers for vascular smooth muscle cell (VSMC) maturation, and expression of fibrillin-1 were additionally investigated for the underlying pathogenesis. On basis of the routine histology the aorta in MFS was similar to the aorta in dilated TAVs (overall medial degeneration, elastic fiber fragmentation, loss and disorganization, , and VSMC nuclei loss). The other markers aided in clustering the MFS and BAV patients with a significantly lower fibrillin-1 expression as compared to the TAVs (p&lt;0.05), a lower level of differentiated VSMC markers (p&lt;0.05) and elastic fiber thinning. Pathogenesis of aortopathy in MFS overlaps with mechanisms seen in BAV and TAV, leading to a so called double hit hypothesis for aortic complications in MFS. The ascending aortic wall in MFS is immature with undifferentiated VSMCs and low levels of fibrillin-1. The immature media becomes even more vulnerable for aortopathy due to other degenerative features which develop probably as a direct consequence of the fibrillin-1 mutation."	"Anomalous Coronary Artery Origin in a Young Patient with Marfan Syndrome. Marfan syndrome is an autosomal dominant genetic disorder that affects connective tissue and is caused by mutations in the fibrillin 1 gene present at chromosome 15. Aortic aneurysm is its main complication, and along the dilation of the aorta root and its descending portion (60-100%), with secondary aortic insufficiency, it increases risk of acute aortic dissection and death. Coronary artery anomalies affect between 0.3% and 1.6% of the general population and are the second leading cause of sudden death in young adults, especially if the anomalous coronary passes through aorta and pulmonary artery. The anomalous origin of the left main coronary artery in the right Valsalva sinus has a prevalence of 0.02%-0.05% and is commonly related to other congenital cardiac anomalies, such as transposition of great vessels, coronary fistulas, bicuspid aortic valve, and tetralogy of Fallot. Its association with Marfan syndrome is not known, and there is no previous report in the literature. We describe here a case of a female with Marfan syndrome diagnosed with symptomatic anomalous origin of the left coronary artery in the right Valsalva sinus."	"Paranoid schizophrenia in a woman with Marfan syndrome. NA"	"Small Bowel Diverticulosis and Jejunal Perforation in Marfan Syndrome. Marfan syndrome is an autosomal dominant disorder involving mutation in the FBN1 gene, which encodes fibrillin-1, a protein critical to maintain the integrity of connective tissue. A mutation in this gene can affect multiple organ systems, but it is not classically associated with gastrointestinal complications. We describe a man with Marfan syndrome with multiple small bowel diverticula leading to small intestinal bacterial overgrowth and recurrent small bowel perforations."	"The value of plasma fibrillin-1 level in patients with spontaneous cerebral artery dissection. To explore the value of plasma fibrillin-1 levels in patients with spontaneous cerebral artery dissection (sCeAD). A single-center prospective cohort of 99 consecutive patients with sCeAD between February 2013 and December 2015 were age and sex matched with 115 patients with non-sCeAD ischemic stroke and 20 healthy participants undergoing routine physical examination. The plasma fibrillin-1 level was measured with ELISA and compared among the 3 groups. The associations of fibrillin-1 with site, acuity, and severity of dissection, as well as clinical and radiographic prognosis of patients, were analyzed. One hundred nine plasma samples from 99 patients with sCeAD, 115 from disease control patients, and 20 from healthy participants were collected. The plasma fibrillin-1 level of the dissection group (mean 85.56 ng/mL [95% confidence interval 81.53-89.59]) was higher than that of non-sCeAD ischemic stroke group (77.13 ng/mL [73.64-80.63], p = 0.015) or healthy controls (73.04 ng/mL [65.94-80.13], p = 0.029). Such differences were most prominent in the acute stage (97.64 ng/mL [91.64-103.64], 74.39 ng/mL [68.95-79.84], and 73.04 ng/mL [65.95-80.13], respectively). A cutoff value of 88.455 ng/mL was determined to differentiate acute dissection from nondissection stroke with a sensitivity of 0.778 and a specificity of 0.800. Higher fibrillin-1 level was detected in patients with more severe dissection radiographically (p &lt; 0.001), while patients with lower fibrillin-1 concentration at baseline achieved better morphologic recovery on follow-up imaging tests (p = 0.003). Plasma fibrillin-1 is a promising biomarker for aiding the diagnosis of acute sCeAD and may have potential value in lesion severity grading and radiographic prognosis prediction. This study provides Class III evidence that patients with sCeAD have significantly higher levels of plasma fibrillin-1 than patients with ischemic stroke attributable to a cause other than sCeAD."	"Finding fibrillin in cerebral artery dissection. NA"	"Cell Type-Specific Contributions of the Angiotensin II Type 1a Receptor to Aorta Homeostasis and Aneurysmal Disease-Brief Report. Two were the aims of this study: first, to translate whole-genome expression profiles into computational predictions of functional associations between signaling pathways that regulate aorta homeostasis and the activity of angiotensin II type 1a receptor (At1ar) in either vascular endothelial or smooth muscle cells; and second, to characterize the impact of endothelial cell- or smooth muscle cell-specific At1ar disruption on the development of thoracic aortic aneurysm in fibrillin-1 hypomorphic (Fbn1<sup>mgR/mgR</sup> ) mice, a validated animal model of early onset progressively severe Marfan syndrome. APPROACH AND RESULTS: Cdh5-Cre and Sm22-Cre transgenic mice were used to inactivate the At1ar-coding gene (Agt1ar) in either intimal or medial cells of both wild type and Marfan syndrome mice, respectively. Computational analyses of differentially expressed genes predicted dysregulated signaling pathways of cell survival and matrix remodeling in Agt1ar<sup>Cdh5-/-</sup> aortas and of cell adhesion and contractility in Agt1ar<sup>Sm22-/-</sup> aortas. Characterization of Fbn1<sup>mgR/mgR</sup>;Agt1ar<sup>Cdh5-/-</sup> mice revealed increased median survival associated with mitigated aneurysm growth and media degeneration, as well as reduced levels of phosphorylated (p-) Erk1/2 but not p-Smad2. By contrast, levels of both p-Erk1/2 and p-Smad2 proteins were normalized in Fbn1<sup>mgR/mgR</sup>;Agt1ar<sup>Sm22-/-</sup> aortas in spite of them showing no appreciable changes in thoracic aortic aneurysm pathology. Physiological At1ar signaling in the intimal and medial layers is associated with distinct regulatory processes of aorta homeostasis and function; improper At1ar activity in the vascular endothelium is a significant determinant of thoracic aortic aneurysm development in Marfan syndrome mice."	"The importance of genotype-phenotype correlation in the clinical management of Marfan syndrome. Marfan syndrome (MFS) is a disorder of autosomal dominant inheritance, in which aortic root dilation is the main cause of morbidity and mortality. Fibrillin-1 (FBN-1) gene mutations are found in more than 90% of MFS cases. The aim of our study was to summarise variants in FBN-1 and establish the genotype-phenotype correlation, with particular interest in the onset of aortic events, in a broad population of patients with an initial clinical suspicion of MFS. This single centre prospective cohort study included all patients presenting variants in the FBN-1 gene who visited a Hereditary Aortopathy clinic between September 2010 and October 2016. The study included 90 patients with FBN-1 variants corresponding to 58 non-interrelated families. Of the 57 FBN-1 variants found, 25 (43.9%) had previously been described, 23 of which had been identified as associated with MFS, while the the remainder are described for the first time. For 84 patients (93.3%), it was possible to give a definite diagnosis of Marfan syndrome in accordance with Ghent criteria. 44 of them had missense mutations, 6 of whom had suffered an aortic event (with either prophylactic surgery for aneurysm or dissection), whereas 20 of the 35 patients with truncating mutations had suffered an event (13.6% vs. 57.1%, p &lt; 0.001). These events tended to occur at earlier ages in patients with truncating compared to those with missense mutations, although not significantly (41.33 ± 3.77 vs. 37.5 ± 9.62 years, p = 0.162). Patients with MFS and truncating variants in FBN-1 presented a higher proportion of aortic events, compared to a more benign course in patients with missense mutations. Genetic findings could, therefore, have importance not only in the diagnosis, but also in risk stratification and clinical management of patients with suspected MFS."	"Three-generation family with novel contiguous gene deletion on chromosome 2p22 associated with thoracic aortic aneurysm syndrome. Latent transforming growth factor binding proteins (LTBP) are a family of extracellular matrix glycoproteins that play an important role in the regulation of transforming growth factor beta (TGF-ß) activation. Dysregulation of the TGF-ß pathway has been implicated in the pathogenesis of inherited disorders predisposing to thoracic aortic aneurysms syndromes (TAAS) including Marfan syndrome (MFS; FBN1) and Loeys-Dietz syndrome (LDS; TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3). While these syndromes have distinct clinical criteria, they share clinical features including aortic root dilation and musculoskeletal findings. LTBP1 is a component of the TGF-ß pathway that binds to fibrillin-1 in the extracellular matrix rendering TGF-ß inactive. We describe a three-generation family case series with a heterozygous ∼5.1 Mb novel contiguous gene deletion of chromosome 2p22.3-p22.2 involving 11 genes, including LTBP1. The deletion has been identified in the proband, father and grandfather, who all have a phenotype consistent with a TAAS. Findings include thoracic aortic dilation, ptosis, malar hypoplasia, high arched palate, retrognathia, pes planus, hindfoot deformity, obstructive sleep apnea, and low truncal tone during childhood with joint laxity that progressed to reduced joint mobility over time. While the three affected individuals did not meet criteria for either MFS or LDS, they shared features of both. Although the deletion includes 11 genes, given the relationship between LTBP1, TGF-ß, and fibrillin-1, LTBP1 stands out as one of the possible candidate genes for the clinical syndrome observed in this family. More studies are necessary to evaluate the potential role of LTBP1 in the pathophysiology of TAAS."	"Novel Myopia Genes and Pathways Identified From Syndromic Forms of Myopia. To test the hypothesis that genes known to cause clinical syndromes featuring myopia also harbor polymorphisms contributing to nonsyndromic refractive errors. Clinical phenotypes and syndromes that have refractive errors as a recognized feature were identified using the Online Mendelian Inheritance in Man (OMIM) database. One hundred fifty-four unique causative genes were identified, of which 119 were specifically linked with myopia and 114 represented syndromic myopia (i.e., myopia and at least one other clinical feature). Myopia was the only refractive error listed for 98 genes and hyperopia and the only refractive error noted for 28 genes, with the remaining 28 genes linked to phenotypes with multiple forms of refractive error. Pathway analysis was carried out to find biological processes overrepresented within these sets of genes. Genetic variants located within 50 kb of the 119 myopia-related genes were evaluated for involvement in refractive error by analysis of summary statistics from genome-wide association studies (GWAS) conducted by the CREAM Consortium and 23andMe, using both single-marker and gene-based tests. Pathway analysis identified several biological processes already implicated in refractive error development through prior GWAS analyses and animal studies, including extracellular matrix remodeling, focal adhesion, and axon guidance, supporting the research hypothesis. Novel pathways also implicated in myopia development included mannosylation, glycosylation, lens development, gliogenesis, and Schwann cell differentiation. Hyperopia was found to be linked to a different pattern of biological processes, mostly related to organogenesis. Comparison with GWAS findings further confirmed that syndromic myopia genes were enriched for genetic variants that influence refractive errors in the general population. Gene-based analyses implicated 21 novel candidate myopia genes (ADAMTS18, ADAMTS2, ADAMTSL4, AGK, ALDH18A1, ASXL1, COL4A1, COL9A2, ERBB3, FBN1, GJA1, GNPTG, IFIH1, KIF11, LTBP2, OCA2, POLR3B, POMT1, PTPN11, TFAP2A, ZNF469). Common genetic variants within or nearby genes that cause syndromic myopia are enriched for variants that cause nonsyndromic, common myopia. Analysis of syndromic forms of refractive errors can provide new insights into the etiology of myopia and additional potential targets for therapeutic interventions."	"The Effect of a Nonpeptide Angiotensin II Type 2 Receptor Agonist, Compound 21, on Aortic Aneurysm Growth in a Mouse Model of Marfan Syndrome. Available evidence suggests that the renin-angiotensin-aldosterone (RAA) system is a good target for medical intervention on aortic root dilatation in Marfan syndrome (MFS). The effect of Compound 21 (C21), a nonpeptide angiotensin II type 2 receptor agonist, on aneurysm progression was tested. Mice with a mutation in fibrillin-1 (Fbn1) and wild-type mice were treated with vehicle, losartan, C21, enalapril, or a combination. Blood pressure, aortic root diameter, and histological slides were evaluated. All groups had a comparable blood pressure. Echographic evaluation of the aortic root diameter revealed a protective effect of angiotensin II type 1 receptor antagonist (losartan) and no effect of C21 treatment. None of the treatments had a beneficial effect on the histological changes in MFS. This study confirms that angiotensin II type 1 receptor antagonism (losartan) decreases aortic aneurysm growth in a mouse model of MFS. A nonpeptide angiotensin II type 2 receptor agonist (C21), at the doses studied, was ineffective. Future studies are warranted to further elucidate the exact role of the RAA system in aneurysm formation in MFS and identify alternative targets for intervention."	"Structural and functional failure of fibrillin‑1 in human diseases (Review). Fibrillins (FBNs) are key relay molecules that form the backbone of microfibrils in elastic and non‑elastic tissues. Interacting with other components of the extracellular matrix (ECM), these ubiquitous glycoproteins exert pivotal roles in tissue development, homeostasis and repair. In addition to mechanical support, FBN networks also exhibit regulatory activities on growth factor signalling, ECM formation, cell behaviour and the immune response. Consequently, mutations affecting the structure, assembly and stability of FBN microfibrils have been associated with impaired biomechanical tissue properties, altered cell‑matrix interactions, uncontrolled growth factor or cytokine activation, and the development of fibrillinopathies and associated severe complications in multiple organs. Beyond a panoramic overview of structural cues of the FBN network, the present review will also describe the pathological implications of FBN disorders in the development of inflammatory and fibrotic conditions."	"Recombinant Extracellular Matrix Protein Fragments Support Human Embryonic Stem Cell Chondrogenesis. We previously developed a 14-day culture protocol under potentially GMP, chemically defined conditions, to generate chondroprogenitors from human embryonic stem cells (hESCs). In vivo work has confirmed the cartilage repair capacity of these cells in a nude rat osteochondral defect model. Aiming to enhance hESC-chondrogenesis, we screened a range of extracellular matrix (ECM) molecules for their ability to support differentiation of hESCs toward chondrocytes. We identified two novel ECM protein fragments that supported hESC-chondrogenesis: Fibronectin III (fibronectin 7-14 protein fragments, including the RGD domain, syndecan-binding domain, and heparin-binding domain) and fibrillin-1 (FBN1) fragment PF8 (encoded by exons 30-38, residues 1238-1605, which contains the RGD motif but not heparin-binding site). These two protein fragments support hESC-chondrogenesis compared with the substrates routinely used previously (a mixture of fibronectin and gelatin) in our directed chondrogenic protocol. We have identified recombinant fibronectin fragment (FN III) and FBNI fragment (PF8) as alternative coating substrates to promote expression of genes known to regulate chondrocytes and code for chondrocyte ECM components. These recombinant protein fragments are likely to have better batch to batch stability than full-length molecules, especially where extracted from tissue/serum."	"Non-cardiac manifestations of Marfan syndrome. Because of the widespread distribution of fibrillin 1 in the body, Marfan syndrome (MFS) affects virtually every system. The expression of this single dominantly inherited gene is variable within a family, and between families. There is some genotype-phenotype correlation which is helpful in guiding long-term prognosis, and management. In general gene mutations have been reported in clusters, with those having mainly ocular manifestations occurring in exons 1 to 15 of this 65-exon gene; those causing cardiac problems often involving cysteine replacement in a calcium binding EGF-like sequence; the most severe mutations occurring in exons 25-32, causing neonatal MFS diagnosed at birth, and severe enough to cause death frequently before the age of 2. Other correlations will certainly be found in future. This condition is progressive, and the manifestations unfold according to age. For example, if the lens is going to dislocate this usually occurs by age 10; scoliosis usually presents itself between the ages of 8 and 15; height should be monitored carefully between the onset of puberty and cessation of growth approximately age 17 or 18. Holistic care should be offered by one doctor who oversees the patient's welfare. This should be a paediatrician, paediatric cardiologist, or general practitioner in the case of an affected child. Thereafter, the physician in charge of the most seriously affected system should be aware that other systems need to be managed through a referral network."	"Differences in manifestations of Marfan syndrome, Ehlers-Danlos syndrome, and Loeys-Dietz syndrome. Many different heritable connective tissue disorders (HCTD) have been described over the past decades. These syndromes often affect the connective tissue of various organ systems, including heart, blood vessels, skin, joints, bone, eyes, and lungs. The discovery of these HCTD was followed by the identification of mutations in a wide range of genes encoding structural proteins, modifying enzymes, or components of the TGFβ-signaling pathway. Three typical examples of HCTD are Marfan syndrome (MFS), Ehlers-Danlos syndrome (EDS), and Loeys-Dietz syndrome (LDS). These syndromes show some degree of phenotypical overlap of cardiovascular, skeletal, and cutaneous features. MFS is typically characterized by cardiovascular, ocular, and skeletal manifestations and is caused by heterozygous mutations in FBN1, coding for the extracellular matrix (ECM) protein fibrillin-1. The most common cardiovascular phenotype involves aortic aneurysm and dissection at the sinuses of Valsalva. LDS is caused by mutations in TGBR1/2, SMAD2/3, or TGFB2/3, all coding for components of the TGFβ-signaling pathway. LDS can be distinguished from MFS by the unique presence of hypertelorism, bifid uvula or cleft palate, and widespread aortic and arterial aneurysm and tortuosity. Compared to MFS, LDS cardiovascular manifestations tend to be more severe. In contrast, no association is reported between LDS and the presence of ectopia lentis, a key distinguishing feature of MFS. Overlapping features between MFS and LDS include scoliosis, pes planus, anterior chest deformity, spontaneous pneumothorax, and dural ectasia. EDS refers to a group of clinically and genetically heterogeneous connective tissue disorders and all subtypes are characterized by variable abnormalities of skin, ligaments and joints, blood vessels, and internal organs. Typical presenting features include joint hypermobility, skin hyperextensibility, and tissue fragility. Up to one quarter of the EDS patients show aortic aneurysmal disease. The latest EDS nosology distinguishes 13 subtypes. Many phenotypic features show overlap between the different subtypes, which makes the clinical diagnosis rather difficult and highlights the importance of molecular diagnostic confirmation."	"Insights into the Pathophysiology of Hypertrophic Scars and Keloids: How Do They Differ? To provide information about the clinical presentation of hypertrophic scars and keloids based on their varied structural components. This continuing education activity is intended for physicians, physician assistants, nurse practitioners, and nurses with an interest in skin and wound care. After completing this continuing education activity, you should be able to: ABSTRACT: Hypertrophic scars and keloids are firm, raised, erythematous plaques or nodules that manifest when the cicatrix fails to properly heal. They result from pathologic wound healing and often cause pain and decreased quality of life. The appearance of such cosmetically unappealing scars affects the confidence and self-esteem of many patients. These scars can also cause dysfunction by interfering with flexion and extension across joints. Both possess some unique and distinct histochemical and physiologic characteristics that set them apart morphologically and at the molecular level. While these entities have been the focus of research for many years, differentiating between them remains challenging for clinicians.This article reviews the clinical presentation of aberrant scars and illustrates how they can be differentiated. It outlines their pathophysiology and emphasizes the unique molecular mechanisms underlying each disorder. It also examines how altered expression levels and the distribution of several factors may contribute to their unique clinical characteristics and presentation. Further research is needed to elucidate optimal treatments and preventive measures for these types of aberrant scarring."	"The face in marfan syndrome: A 3D quantitative approach for a better definition of dysmorphic features. Marfan syndrome (MFS) is a rare hereditable disorder of connective tissue caused by mutations in the fibrillin-1 gene FBN1. Timely diagnosis of MFS is essential to prevent life-threatening cardiovascular complications; nevertheless it can be difficult owing to the phenotypic variability of the syndrome. No clear quantitative definition of facial abnormalities associated with MFS is available. The aim of this study was to improve the definition of the facial phenotype associated with MFS and to verify the usefulness of a 3D noninvasive quantitative approach for its early recognition. 3D facial images of 61 Italian subjects with MFS, aged 16-64 years (21 males, 38 ± 15 years; 40 females, 41 ± 13 years) were obtained by stereophotogrammetry. From the coordinates of 17 soft-tissue facial landmarks, linear distances and angles were computed; z score values were calculated to compare patients with healthy reference subjects (400 males, 379 females) matched for sex and age. Student's t test was used for statistical comparisons. All subjects with MFS showed greater facial divergence (P &lt; 0.001; mean z score +1.9) and a lower facial height index (P &lt; 0.001; mean z score -1.9) than reference subjects, both values being influenced by a shorter mandibular ramus (P &lt; 0.001; mean z score -1.9) and a mild but significant increase in facial height (P &lt; 0.001; mean z score +1.2). Palpebral down-slanting was found in 85% of MFS subjects. There were no sex differences. Quantitative abnormalities identified in this study enrich information about the facial dysmorphism in MFS and confirm its usefulness for early recognition of the disease. Clin. Anat. 31:380-386, 2018. © 2017 Wiley Periodicals, Inc."	"Detection and a functional characterization of the novel FBN1 intronic mutation underlying Marfan syndrome: case presentation. NA"	"Systematic Analysis of Transcriptomic Profile of Renal Cell Carcinoma under Long-Term Hypoxia Using Next-Generation Sequencing and Bioinformatics. Patients with clear cell renal cell carcinoma (ccRCC) are often diagnosed with both von Hippel-Lindau (VHL) mutations and the constitutive activation of hypoxia-inducible factor-dependent signaling. In this study, we investigated the effects of long-term hypoxia in 786-O, a VHL-defective renal cell carcinoma cell line, to identify potential genes and microRNAs associated with tumor malignancy. The transcriptomic profiles of 786-O under normoxia, short-term hypoxia and long-term hypoxia were analyzed using next-generation sequencing. The results showed that long-term hypoxia promoted the ability of colony formation and transwell migration compared to normoxia. In addition, the differentially expressed genes induced by long-term hypoxia were involved in various biological processes including cell proliferation, the tumor necrosis factor signaling pathway, basal cell carcinoma and cancer pathways. The upregulated (L1CAM and FBN1) and downregulated (AUTS2, MAPT, AGT and USH1C) genes in 786-O under long-term hypoxia were also observed in clinical ccRCC samples along with malignant grade. The expressions of these genes were significantly correlated with survival outcomes in patients with renal cancer. We also found that long-term hypoxia in 786-O resulted in decreased expressions of hsa-mir-100 and hsa-mir-378 and this effect was also observed in samples of metastatic ccRCC compared to samples of non-metastatic ccRCC. These findings may provide a new direction for the study of potential molecular mechanisms associated with the progression of ccRCC."	"Aortic dilatation in Marfan syndrome: role of arterial stiffness and fibrillin-1 variants. Marfan syndrome (MFS) is an autosomal dominant genetic disorder characterized by aortic root dilation and dissection and an abnormal fibrillin-1 synthesis. In this observational study, we evaluated aortic stiffness in MFS and its association with ascending aorta diameters and fibrillin-1 genotype. A total of 116 Marfan adult patients without history of cardiovascular surgery, and 144 age, sex, blood pressure and heart rate matched controls were enrolled. All patients underwent arterial stiffness evaluation through carotid-femoral pulse wave velocity (PWV) and central blood pressure waveform analysis (PulsePen tonometer). Fibrillin-1 mutations were classified based on the effect on the protein, into 'dominant negative' and 'haploinsufficient' mutations. PWV and central pulse pressure were significantly higher in MFS patients than in controls [respectively 7.31 (6.81-7.44) vs. 6.69 (6.52-6.86) m/s, P = 0.0008; 41.3 (39.1-43.5) vs. 34.0 (32.7-35.3) mmHg, P &lt; 0.0001], with a higher age-related increase of PWV in MFS (β 0.062 vs. 0.036). Pressure amplification was significantly reduced in MFS [18.2 (15.9-20.5) vs. 33.4 (31.6-35.2)%, P &lt; 0.0001]. Central pressure profile was altered even in MFS patients without aortic dilatation. Multiple linear regression models showed that PWV independently predicted aortic diameters at the sinuses of Valsalva (ß = 0.243, P = 0.002) and at the sinotubular junction (ß = 0.186, P = 0.048). PWV was higher in 'dominant negative' than 'haploinsufficient' fibrillin-1 mutations [7.37 (7.04-7.70) vs. 6.60 (5.97-7.23) m/s, P = 0.035], although this difference was not significant after adjustment. Aortic stiffness is increased in MFS, independently from fibrillin-1 genotype and is associated with diameters of ascending aorta. Alterations in central hemodynamics are present even when aortic diameter is within normal limits. Our findings suggest an accelerated arterial aging in MFS."	"Biorevitalization: an in vitro study on gingival fibroblast. Bio-revitalization is a therapy commonly used in aesthetic medicine to improve skin quality by di¬rectly integrating hyaluronic acid alone or added to other molecules (i.e. vitamins) through intradermal injections. These injections are not aimed to fill roughness but to achieve extracellular matrix optimi¬zation. The injective medical devices used in aesthetic medicine differ for hyaluronic acid content and for the presence of additional molecules that characterize the formulation of a particular company. The aim of the present study is to compare HA with different compounds in regard to their effects on cultured fibroblasts over time by using RT-PCR and a panel of genes (ELN, DSP, FN1, FBN1, ITGA1, ITGA2, ITGA5, ITGB1, COL1A1, COL3A1) involved in connective integrity. Bio-revitalization is able to activate genes involved in tissue integrity. The reported data add new insight in the comprehension of molecular mechanism related to BR. These preliminary data have to be developed through additional experiments. However, an injective therapy seems to be effective in gingival fibroblast stimulation."	"Effect of biostimulation on oral fibroblast: a pilot study. Bio-stimulation is a technique in aesthetic medicine in which different drugs such as nucleotides, antioxidants and glucosaminoglycans precursors are injected in the dermis to improving the anabolic function of dermal fibroblasts, i.e., protein synthesis, replication and production of extracellular matrix components. It can be achieved with multiple intra-dermal injections, using two protocols: 1) Polydeoxyribonucleotide (PDRN) plus glucosamine sulphate (Gluc); 2) N-acetylcysteine (NAC) and amino acids (Aa) (named Bio- NAC procedure). Since the role of drugs used in biostimulation on human dermal fibroblasts is not completely understood, the aim of this study is to evaluate the effect of these substances in primary cell cultures by using RT-PCR and a panel of specific genes (ELN, DSP, FN1, FBN1, ITGA1, ITGA2, ITGA5, ITGB1, COL1A1,COL3A1) to detect their effect on cell metabolism and extracellular matrix components. Both the treatments were responsible for Elastine and Desmoplakin genes activation. Only NAC plus Aa treatment enhance the expression of other genes related to tissue growth and elasticity like FBN1, ITGA1 and ITGB1. All the other genes investigated (FN1, ITGA5, ITGA2, COL1A1, COL3A1) were down-regulated by both treatments. Since the precise role of these proteins in tissue integrity and aging is not known, this study confirms the usefulness of biostimulation therapies in enhancing some of the genes responsible of cellular wellbeing. This study could be useful to consider the possibility of injective biostimulation in oral cavity, clinical applications in oral healing and in gingival atrophy as well."	"Betaglycan (TGFBR3) up-regulation correlates with increased TGF-β signaling in Marfan patient fibroblasts in vitro. Marfan syndrome (MFS), a congenital connective tissue disorder leading to aortic aneurysm development, is caused by fibrillin-1 (FBN1) gene mutations. Transforming growth factor beta (TGF-β) might play a role in the pathogenesis. It is still a matter of discussion if and how TGF-β up-regulates the intracellular downstream pathway, although TGF-β receptor 3 (TGFBR3 or Betaglycan) is thought to be involved. We aimed to elucidate the role of TGFBR3 protein in TGF-β signaling in Marfan patients. Dermal fibroblasts of MFS patients with haploinsufficient (HI; n=9) or dominant negative (DN; n=4) FBN1 gene mutations, leading to insufficient or malfunctioning fibrillin-1, respectively, were used. Control cells (n=10) were from healthy volunteers. We quantified TGFBR3 protein expression by immunofluorescence microscopy and gene expression of FBN1, TGFB1, its receptors, and downstream transcriptional target genes by quantitative polymerase chain reaction. Betaglycan protein expression in FBN1 mutants pooled was higher than in controls (P=.004) and in DN higher than in HI (P=.015). In DN, significantly higher mRNA expression of FBN1 (P=.014), SMAD7 (P=.019), HSP47 (P=.023), and SERPINE1 (P=.008), but a lower HSPA5 expression (P=.029), was observed than in HI. A pattern of higher expression was noted for TGFB1 (P=.059), FN1 (P=.089), and COL1A1 (P=.089) in DN as compared to HI. TGFBR3 protein expression in cells, both presence in the endoplasmic reticulum and amount of vesicles per cell, correlated positively with TGFB1 mRNA expression (Rs=0.60, P=.017; Rs=0.55, P=.029; respectively). TGFBR3 gene expression did not differ between groups. We demonstrated that activation of TGF-β signaling is higher in patients with a DN than an HI FBN1 gene mutation. Also, TGFBR3 protein expression is increased in the DN group and correlates positively with TGFB1 expression in groups pooled. We suggest that TGFBR3 protein expression is involved in up-regulated TGF-β signaling in MFS patients with a DN FBN1 gene mutation."	"A report of three families with FBN1-related acromelic dysplasias and review of literature for genotype-phenotype correlation in geleophysic dysplasia. Acromelic dysplasia is a heterogeneous group of rare skeletal dysplasias characterized by distal limb shortening. Weill-Marchesani syndrome (WMS), Geleophysic dysplasia (GD) and Acromicric dysplasia (AD) are clinically distinct entities within this group of disorders and are characterized by short stature, short hands, stiff joints, skin thickening, facial anomalies, normal intelligence and skeletal abnormalities. Mutations of the Fibrillin-1 (FBN1) gene have been reported to cause AD, GD and related phenotypes. We reported three families with acromelic short stature. FBN1 analysis showed that all affected individuals carry a heterozygous missense mutation c.5284G &gt; A (p.Gly1762Ser) in exon 42 of the FBN1 gene. This mutation was previously reported to be associated with GD. We reviewed the literature and compared the clinical features of the patients with FBN1 mutations to those with A Distintegrin And Metalloproteinase with Thrombospondin repeats-like 2 gene (ADAMTSL2) mutations. We found that tip-toeing gait, long flat philtrum and thin upper upper lip were more consistently found in GD patients with ADAMTSL2 mutations than in those with FBN1 mutations. The results have shed some light on the phenotype-genotype correlation in this group of skeletal disorders. A large scale study involving multidisciplinary collaboration would be needed to consolidate our findings."	"Differences in the Thoracic Aorta by Region and Sex in a Murine Model of Marfan Syndrome. Marfan syndrome (MFS) is a hereditary disorder of the connective tissue that causes life-threatening aortic aneurysm, which initiates at the aortic root and can progress into the ascending portion. However, analysis of ascending aorta reactivity in animal models of MFS has remained elusive. Epidemiologic evidence suggests that although MFS is equally prevalent in men and women, men are at a higher risk of aortic complications than non-pregnant women. Nevertheless, there is no experimental evidence to support this hypothesis. The aim of this study was to explore whether there are regional and sex differences in the thoracic aorta function of mice heterozygous for the fibrillin 1 (Fbn1) allele encoding a missense mutation (Fbn1<sup>C1039G/+</sup>), the most common class of mutation in MFS. Ascending and descending thoracic aorta reactivity was evaluated by wire myography. Ascending aorta mRNA and protein levels, and elastic fiber integrity were assessed by qRT-PCR, Western blotting, and Verhoeff-Van Gieson histological staining, respectively. MFS differently altered reactivity in the ascending and descending thoracic aorta by either increasing or decreasing phenylephrine contractions, respectively. When mice were separated by sex, contractions to phenylephrine increased progressively from 3 to 6 months of age in MFS ascending aortas of males, whereas contractions in females were unchanged. Endothelium-dependent relaxation was unaltered in the MFS ascending aorta of either sex; an effect related to augmented endothelium-dependent hyperpolarization-type dilations. In MFS males, the non-selective cyclooxygenase (COX) inhibitor indomethacin prevented the MFS-induced enhancement of phenylephrine contractions linked to increased COX-2 expression. In MFS mice of both sexes, the non-selective nitric oxide synthase inhibitor L-NAME revealed negative feedback of nitric oxide on phenylephrine contractions, which was associated with upregulation of eNOS in females. Finally, MFS ascending aortas showed a greater number of elastic fiber breaks than the wild-types, and males exhibited more breaks than females. These results show regional and sex differences in Fbn1<sup>C1039G/+</sup> mice thoracic aorta contractility and aortic media injuries. The presence of more pronounced aortic alterations in male mice provides experimental evidence to support that male MFS patients are at increased risk of suffering aortic complications."	"Altered TGF-β endocytic trafficking contributes to the increased signaling in Marfan syndrome. The main cardiovascular alteration in Marfan syndrome (MFS) is the formation of aortic aneurysms in which augmented TGF-β signaling is reported. However, the primary role of TGF-β signaling as a molecular link between the genetic mutation of fibrillin-1 and disease onset is controversial. The compartmentalization of TGF-β endocytic trafficking has been shown to determine a signaling response in which clathrin-dependent internalization leads to TGF-β signal propagation, and caveolin-1 (CAV-1) associated internalization leads to signal abrogation. We here studied the contribution of endocytic trafficking compartmentalization to increased TGF-β signaling in vascular smooth muscle cells (VSMC) from MFS patients. We examined molecular components involved in clathrin- (SARA, SMAD2) and caveolin-1- (SMAD7, SMURF2) dependent endocytosis. Marfan VSMC showed higher recruitment of SARA and SMAD2 to membranes and their increased interaction with TGF-β receptor II, as well as higher colocalization of SARA with the early endosome marker EEA1. We assessed TGF-β internalization using a biotinylated ligand (b-TGF-β), which colocalized equally with either EEA1 or CAV-1 in VSMC from Marfan patients and controls. However, in Marfan cells, colocalization of b-TGF-β with SARA and EEA1 was increased and accompanied by decreased colocalization with CAV-1 at EEA1-positive endosomes. Moreover, Marfan VSMC showed higher transcriptional levels and membrane enrichment of RAB5. Our results indicate that increased RAB5-associated SARA localization to early endosomes facilitates its TGF-β receptor binding and phosphorylation of signaling mediator SMAD2 in Marfan VSMC. This is accompanied by a reduction of TGF-β sorting into multifunctional vesicles containing cargo from both internalization pathways."	"The Versican G1 Fragment and Serum-Derived Hyaluronan-Associated Proteins Interact and Form a Complex in Granulation Tissue of Pressure Ulcers. The hyaluronan (HA)-rich extracellular matrix plays dynamic roles during tissue remodeling. Versican and serum-derived HA-associated protein (SHAP), corresponding to the heavy chains of inter-α-trypsin inhibitor, are major HA-binding molecules in remodeling processes, such as wound healing. Versican G1-domain fragment (VG1F) is generated by proteolysis and is present in either remodeling tissues or the mature dermis. However, the macrocomplex formation of VG1F has not been clarified. Therefore, we examined the VG1F-containing macrocomplex in pressure ulcers characterized by chronic refractory wounds. VG1F colocalized with SHAP-HA in specific regions of the granulation tissue but not with fibrillin-1. A unique VG1F-SHAP-HA complex was isolated from granulation tissues using gel filtration chromatography and subsequent cesium chloride-gradient ultracentrifugation under dissociating conditions. Consistent with this molecular composition, recombinant versican G1, but not versican G3, interacted with the two heavy chains of inter-α-trypsin inhibitor. The addition of recombinant VG1 in fibroblast cultures enhanced VG1F-SHAP-HA complex deposition in the pericellular extracellular matrix. Comparison with other VG1F-containing macrocomplexes, including dermal VG1F aggregates, versican-bound microfibrils, and intact versican, highlighted the tissue-specific organization of HA-rich extracellular matrix formation containing versican and SHAP. The VG1F-SHAP-HA complex was specifically detected in the edematous granulation tissues of human pressure ulcers and in inflamed stages in a mouse model of moist would healing, suggesting that the complex provides an HA-rich matrix suitable for inflammatory reactions."	"Impaired Central Pulsatile Hemodynamics in Children and Adolescents With Marfan Syndrome. Marfan syndrome is characterized by aortic root dilation, beginning in childhood. Data about aortic pulsatile hemodynamics and stiffness in pediatric age are currently lacking. In 51 young patients with Marfan syndrome (12.0±3.3 years), carotid tonometry was performed for the measurement of central pulse pressure, pulse pressure amplification, and aortic stiffness (carotid-femoral pulse wave velocity). Patients underwent an echocardiogram at baseline and at 1 year follow-up and a genetic evaluation. Pathogenetic fibrillin-1 mutations were classified between &quot;dominant negative&quot; and &quot;haploinsufficient.&quot; The hemodynamic parameters of patients were compared with those of 80 sex, age, blood pressure, and heart-rate matched controls. Central pulse pressure was significantly higher (38.3±12.3 versus 33.6±7.8 mm Hg; P=0.009), and pulse pressure amplification was significantly reduced in Marfan than controls (17.9±15.3% versus 32.3±17.4%; P&lt;0.0001). Pulse wave velocity was not significantly different between Marfan and controls (4.98±1.00 versus 4.75±0.67 m/s). In the Marfan group, central pulse pressure and pulse pressure amplification were independently associated with aortic diameter at the sinuses of Valsalva (respectively, β=0.371, P=0.010; β=-0.271, P=0.026). No significant difference in hemodynamic parameters was found according to fibrillin-1 genotype. Patients who increased aortic Z-scores at 1-year follow-up presented a higher central pulse pressure than the remaining (42.7±14.2 versus 32.3±5.9 mm Hg; P=0.004). Central pulse pressure and pulse pressure amplification were impaired in pediatric Marfan syndrome, and associated with aortic root diameters, whereas aortic pulse wave velocity was similar to that of a general pediatric population. An increased central pulse pressure was present among patients whose aortic dilatation worsened at 1-year follow-up."	"Beta-blockers for preventing aortic dissection in Marfan syndrome. Marfan syndrome is a hereditary disorder affecting the connective tissue and is caused by a mutation of the fibrillin-1 (FBN1) gene. It affects multiple systems of the body, most notably the cardiovascular, ocular, skeletal, dural and pulmonary systems. Aortic root dilatation is the most frequent cardiovascular manifestation and its complications, including aortic regurgitation, dissection and rupture are the main cause of morbidity and mortality. To assess the long-term efficacy and safety of beta-blocker therapy as compared to placebo, no treatment or surveillance only in people with Marfan syndrome. We searched the following databases on 28 June 2017; CENTRAL, MEDLINE, Embase, Science Citation Index Expanded and the Conference Proceeding Citation Index - Science in the Web of Science Core Collection. We also searched the Online Metabolic and Molecular Bases of Inherited Disease (OMMBID), ClinicalTrials.gov and the World Health Organization (WHO) International Clinical Trials Registry Platform (ICTRP) on 30 June 2017. We did not impose any restriction on language of publication. All randomised controlled trials (RCTs) of at least one year in duration assessing the effects of beta-blocker monotherapy compared with placebo, no treatment or surveillance only, in people of all ages with a confirmed diagnosis of Marfan syndrome were eligible for inclusion. Two review authors independently screened titles and abstracts for inclusion, extracted data and assessed trial quality. Trial authors were contacted to obtain missing data. Dichotomous outcomes will be reported as relative risk and continuous outcomes as mean differences with 95% confidence intervals. We assessed the quality of evidence using the Grading of Recommendations Assessment, Development and Evaluation (GRADE) approach. One open-label, randomised, single-centre trial including 70 participants with Marfan syndrome (aged 12 to 50 years old) met the inclusion criteria. Participants were randomly assigned to propranolol (N = 32) or no treatment (N = 38) for an average duration of 9.3 years in the control group and 10.7 years in the treatment group. The initial dose of propranolol was 10 mg four times daily and the optimal dose was reached when the heart rate remained below 100 beats per minute during exercise or the systolic time interval increased by 30%. The mean (± standard error (SE)) optimal dose of propranolol was 212 ± 68 mg given in four divided doses daily.Beta-blocker therapy did not reduce the incidence of all-cause mortality (RR 0.24, 95% CI 0.01 to 4.75; participants = 70; low-quality evidence). Mortality attributed to Marfan syndrome was not reported. Non-fatal serious adverse events were also not reported. However, study authors report on pre-defined, non-fatal clinical endpoints, which include aortic dissection, aortic regurgitation, cardiovascular surgery and congestive heart failure. Their analysis showed no difference between the treatment and control groups in these outcomes (RR 0.79, 95% CI 0.37 to 1.69; participants = 70; low-quality evidence).Beta-blocker therapy did not reduce the incidence of aortic dissection (RR 0.59, 95% CI 0.12 to 3.03), aortic regurgitation (RR 1.19, 95% CI 0.18 to 7.96), congestive heart failure (RR 1.19, 95% CI 0.18 to 7.96) or cardiovascular surgery, (RR 0.59, 95% CI 0.12 to 3.03); participants = 70; low-quality evidence.The study reports a reduced rate of aortic dilatation measured by M-mode echocardiography in the treatment group (aortic ratio mean slope: 0.084 (control) vs 0.023 (treatment), P &lt; 0.001). The change in systolic and diastolic blood pressure, total adverse events and withdrawal due to adverse events were not reported in the treatment or control group at study end point.We judged this study to be at high risk of selection (allocation concealment) bias, performance bias, detection bias, attrition bias and selective reporting bias. The overall quality of evidence was low. We do not know whether a statistically significant reduced rate of aortic dilatation translates into clinical benefit in terms of aortic dissection or mortality. Based on only one, low-quality RCT comparing long-term propranolol to no treatment in people with Marfan syndrome, we could draw no definitive conclusions for clinical practice. High-quality, randomised trials are needed to evaluate the long-term efficacy of beta-blocker treatment in people with Marfan syndrome. Future trials should report on all clinically relevant end points and adverse events to evaluate benefit versus harm of therapy."	"Mutations in Fibronectin Cause a Subtype of Spondylometaphyseal Dysplasia with &quot;Corner Fractures&quot;. Fibronectin is a master organizer of extracellular matrices (ECMs) and promotes the assembly of collagens, fibrillin-1, and other proteins. It is also known to play roles in skeletal tissues through its secretion by osteoblasts, chondrocytes, and mesenchymal cells. Spondylometaphyseal dysplasias (SMDs) comprise a diverse group of skeletal dysplasias and often manifest as short stature, growth-plate irregularities, and vertebral anomalies, such as scoliosis. By comparing the exomes of individuals with SMD with the radiographic appearance of &quot;corner fractures&quot; at metaphyses, we identified three individuals with fibronectin (FN1) variants affecting highly conserved residues. Furthermore, using matching tools and the SkelDys emailing list, we identified other individuals with de novo FN1 variants and a similar phenotype. The severe scoliosis in most individuals and rare developmental coxa vara distinguish individuals with FN1 mutations from those with classical Sutcliffe-type SMD. To study functional consequences of these FN1 mutations on the protein level, we introduced three disease-associated missense variants (p.Cys87Phe [c.260G&gt;T], p.Tyr240Asp [c.718T&gt;G], and p.Cys260Gly [c.778T&gt;G]) into a recombinant secreted N-terminal 70 kDa fragment (rF70K) and the full-length fibronectin (rFN). The wild-type rF70K and rFN were secreted into the culture medium, whereas all mutant proteins were either not secreted or secreted at significantly lower amounts. Immunofluorescence analysis demonstrated increased intracellular retention of the mutant proteins. In summary, FN1 mutations that cause defective fibronectin secretion are found in SMD, and we thus provide additional evidence for a critical function of fibronectin in cartilage and bone."	"Cytoprotective effects of transgenic neuroglobin overexpression in an acute and chronic mouse model of ischemic heart disease. Neuroglobin (NGB) is an oxygen-binding protein that is mainly expressed in nervous tissues where it is considered to be neuroprotective during ischemic brain injury. Interestingly, transgenic mice overexpressing NGB reveal cytoprotective effects on tissues lacking endogenous NGB, which might indicate a therapeutic role for NGB in a broad range of ischemic conditions. In the present study, we investigated the effect of NGB overexpression on survival as well as on the size and occurrence of myocardial infarctions (MI) in a mouse model of acute MI (AMI) and a model of advanced atherosclerosis (ApoE <sup>-/-</sup> Fbn1 <sup>C1039G+/-</sup> mice), in which coronary plaques and MI develop in mice being fed a Western-type diet. Overexpression of NGB significantly enhanced post-AMI survival and reduced MI size by 14% 1 week after AMI. Gene expression analysis of the infarction border showed reduction of tissue hypoxia and attenuation of hypoxia-induced inflammatory pathways, which might be responsible for these beneficial effects. In contrast, NGB overexpression did not affect survival or occurrence of MI in the atherosclerotic mice although the incidence of coronary plaques was significantly reduced. In conclusion, NGB proved to act cytoprotectively during MI in the acute setting while this effect was less pronounced in the atherosclerosis model."	"Heartbeat: The potential power of genotype-phenotype correlations. NA"	"Axitinib attenuates intraplaque angiogenesis, haemorrhages and plaque destabilization in mice. An increased density of intraplaque (IP) microvessels in ruptured versus nonruptured human plaques suggests that IP neovascularization has a major causative effect on plaque development and instability. Possibly, vascular endothelial growth factor (VEGF) or other angiogenic factors mediate IP microvessel growth and plaque destabilization. Because apolipoprotein deficient mice with a heterozygous mutation (C1039G+/-) in the fibrillin-1 gene (ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup>) manifest substantial IP neovascularization, they represent a unique tool to further investigate angiogenesis and its role in atherosclerosis. Here, we examined whether administration of axitinib (inhibitor of VEGF receptor-1,-2 and -3) inhibits IP neovascularization and stabilizes atherosclerotic plaques. ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mice were fed a western diet (WD) for 20weeks. After 14weeks WD, mice received axitinib (35μg/g) or solvent i.p. 4×/week for 6weeks. Cardiac function was monitored to evaluate the effect of axitinib on atherosclerosis-driven complications such as myocardial infarction. Axitinib significantly reduced IP neovascularization, with subsequent less prevalence of IP haemorrhages. The smooth muscle cell content doubled, whereas the amount of macrophages decreased. Overall cardiac function was improved in axitinib-treated animals. Moreover, the number of animals with myocardial infarction was decreased by 40%. Coronary plaque formation was observed in almost all control animals whereas treated animals showed a 30% reduction in the occurrence of coronary plaques. Inhibition of VEGF receptor signalling by axitinib attenuates intraplaque angiogenesis and plaque destabilization in mice."	"Association between malignancies and Marfan syndrome: a population-based, nested case-control study in Taiwan. Marfan syndrome (MFS) involves a deficiency of the structural extracellular matrix component fibrillin-1 and overactivation of the transforming growth factor-β (TGF-β) signalling pathway. The TGF-β signalling pathway also actively participates in malignant transformation. Although anecdotal case reports have suggested associations between MFS/MFS-like conditions and several haematological and solid malignancies, such associations have not been thoroughly evaluated in large-scale studies. We sought to use a nationwide healthcare insurance claim database to evaluate whether patients with MFS are at increased risk of malignancy. We conducted a nested case-control analysis using a database extracted from Taiwan's National Health Insurance Research Database. All medical conditions for each case and control were categorised using the International Classification of Diseases, 9th Revision classifications. ORs and 95% CIs for associations between MFS and malignancies were estimated using conditional logistic regression and adjusted for comorbidities. Our analyses included 1 153 137 cancer cases and 1 153 137 propensity score-matched controls. Relative to other subjects, patients with MFS had a significantly higher risk of having a malignancy (adjusted OR 3.991) and hypertension (adjusted OR 1.964) and were significantly more likely to be men. Malignancies originating from the head and neck and the urinary tract were significantly more frequent among patients with MFS than among subjects without MFS. Patients with MFS are at increased risk of developing various malignancies. Healthcare professionals should be aware of this risk when treating such patients, and increased cancer surveillance may be necessary for these patients."	"Pathogenic Mechanisms of Bicuspid Aortic Valve Aortopathy. Bicuspid aortic valve (BAV) is the most common congenital valvular defect and is associated with ascending aortic dilation (AAD) in a quarter of patients. AAD has been ascribed both to the hemodynamic consequences of normally functioning and abnormal BAV morphology, and to the effect of rare and common genetic variation upon function of the ascending aortic media. AAD manifests in two overall and sometimes overlapping phenotypes: that of aortic root aneurysm, similar to the AAD of Marfan syndrome; and that of tubular AAD, similar to the AAD seen with tricuspid aortic valves (TAVs). These aortic phenotypes appear to be independent of BAV phenotype, have different embryologic origins and have unique etiologic factors, notably, regarding the role of hemodynamic changes inherent to the BAV phenotype. Further, in contrast to Marfan syndrome, the AAD seen with BAV is infrequently present as a strongly inherited syndromic phenotype; rather, it appears to be a less-penetrant, milder phenotype. Both reduced levels of normally functioning transcriptional proteins and structurally abnormal proteins have been observed in aneurysmal aortic media. We provide evidence that aortic root AAD has a stronger genetic etiology, sometimes related to identified common non-coding fibrillin-1 (FBN1) variants and other aortic wall protein variants in patients with BAV. In patients with BAV having tubular AAD, we propose a stronger hemodynamic influence, but with pathology still based on a functional deficit of the aortic media, of genetic or epigenetic etiology. Although it is an attractive hypothesis to ascribe common mechanisms to BAV and AAD, thus far the genetic etiologies of AAD have not been associated to the genetic etiologies of BAV, notably, not including BAV variants in NOTCH1 and GATA4."	"Childhood glaucoma in neonatal Marfan syndrome resulting from a novel FBN1 deletion. NA"	"FBN1 mutations largely contribute to sporadic non-syndromic aortic dissection. Mutations in FBN1 have been well identified in syndromic aortic dissection (AD) and familial thoracic aortic aneurysms and dissections. However, whether mutations of FBN1 contribute to sporadic non-syndromic AD and the characteristics of mutations remain unknown. Using next-generation-sequencing technology, FBN1 was sequenced in a total of 702 sporadic cases (including 687 of non-syndromic AD and 15 of sporadic Marfan syndrome with aortic event, and 527 normal controls). For the sporadic non-syndromic AD cohort, we found 26 variants in 27 patients (18 with missense, 2 frameshift, 1 initiation codon mutation, 3 nonsense and 3 splice site mutations). The prevalence of variants was significantly high in the sporadic non-syndromic AD cohort (27/687, 3.9%). The patients with FBN1 mutations were younger, suffered from fewer risk factors such as hypertension and smoking, and were less gender partitioned than non-FBN1-mutation AD patients. The mutations were spread along the FBN1 gene in our sporadic non-syndromic AD cohort and mutation locations are not different between non-syndromic and syndromic patients. These results demonstrate that the deleterious mutations in FBN1 largely contribute to pathogenesis of sporadic non-syndromic AD, which expands our knowledge of FBN1 variants and the genetic basis and pathology of AD."	"Cardiovascular Benefits of Moderate Exercise Training in Marfan Syndrome: Insights From an Animal Model. Marfan syndrome (MF) leads to aortic root dilatation and a predisposition to aortic dissection, mitral valve prolapse, and primary and secondary cardiomyopathy. Overall, regular physical exercise is recommended for a healthy lifestyle, but dynamic sports are strongly discouraged in MF patients. Nonetheless, evidence supporting this recommendation is lacking. Therefore, we studied the role of long-term dynamic exercise of moderate intensity on the MF cardiovascular phenotype. In a transgenic mouse model of MF (Fbn1<sup>C1039G/+</sup>), 4-month-old wild-type and MF mice were subjected to training on a treadmill for 5 months; sedentary littermates served as controls for each group. Aortic and cardiac remodeling was assessed by echocardiography and histology. The 4-month-old MF mice showed aortic root dilatation, elastic lamina rupture, and tunica media fibrosis, as well as cardiac hypertrophy, left ventricular fibrosis, and intramyocardial vessel remodeling. Over the 5-month experimental period, aortic root dilation rate was significantly greater in the sedentary MF group, compared with the wild-type group (∆mm, 0.27±0.07 versus 0.13±0.02, respectively). Exercise significantly blunted the aortic root dilation rate in MF mice compared with sedentary MF littermates (∆mm, 0.10±0.04 versus 0.27±0.07, respectively). However, these 2 groups were indistinguishable by aortic root stiffness, tunica media fibrosis, and elastic lamina ruptures. In MF mice, exercise also produced cardiac hypertrophy regression without changes in left ventricular fibrosis. Our results in a transgenic mouse model of MF indicate that moderate dynamic exercise mitigates the progression of the MF cardiovascular phenotype."	"A novel FBN1 mutation causes autosomal dominant Marfan syndrome. Marfan syndrome (MFS) is an inherited and systemic disorder. It has been reported that mutations in the fibrillin‑1 gene (FBN1) account for ~90% of autosomal dominant cases of MFS. This study was conducted to screen mutations of FBN1 in a Chinese family with autosomal dominant MFS; four individuals including two patients with MFS were recruited. The family members underwent complete physical, cardiovascular and ophthalmologic examinations. Genomic DNA samples were collected from the family along with 383 unrelated healthy subjects. FBN1 coding regions were amplified by polymerase chain reaction and analyzed by direct sequencing. SIFT and PolyPhen‑2 were used to predict the possible structural and functional alterations of the protein. A novel heterozygous mutation c.1708 T&gt;G (p.C570G) in exon 14 was identified, which led to a substitution of cysteine by glycine at codon 570 (p.C570G). The mutation was identified as being associated with the MFS phenotype in the affected members of this family. However, the unaffected family members and the 383 normal controls lacked the mutation. Multiple sequence alignment of the human FBN1 protein revealed that this novel mutation occurred within a highly conserved region of the FBN1 protein across different species and may induce structural alterations in this functional domain. The spectrum of MFS‑associated mutations in the FBN1 gene has been enriched from this study; this may improve understanding of the molecular pathogenesis and clinical diagnosis of MFS."	"A cohort study of multiple families with FBN1 p.R650C variant, ectopia lentis, and low but not absent risk for aortopathy. Marfan syndrome is a multisystem disease with cardiovascular, ophthalmologic, and skeletal features. Diagnosis is made clinically with emphasis on presence of aortic root dilation and ectopia lentis (EL). Most individuals meeting these criteria have a pathogenic variant in FBN1, usually unique or observed rarely. Individuals with EL alone may also have FBN1 pathogenic variants, and the risk for aortic disease is not well known. We identified a unique cohort of 31 individuals (mean age 29, range 2-78) from nine families ascertained by a proband with EL alone, who had the same FBN1 p.R650C variant. Comparison was made to individuals with Marfan syndrome (n = 103 from 97 families) at our institution. Those with the p.R650C variant had few skeletal features of Marfan syndrome. Age of onset of EL was later compared to others with cysteine variant changes. Aortic root dilation occurred in 4/16 (25%) of the p.R650C group versus 71/83 (86%) in the comparator group (p &lt; 0.001) and dissection or replacement in 1/31 (3%) versus 20/103 (19%; p &lt; 0.04). Aortic root Z scores were much lower in the p.R650C (0.34 ± 1.70) versus the comparator (2.99 ± 2.54; p &lt; 0.0002). Kaplan-Meier failure curves for aortic root dilation demonstrated later age of onset and differed significantly for incidence rate ratio (comparator vs. p.R650C = 5.35, CI 1.84-21.17; p = 0.0001). Individuals with p.R650C predominantly have EL, but do have risk for aortic dilation at ages later than typical for Marfan syndrome in general and for cysteine changes specifically. Surveillance for aortic dilation is required but may occur less frequently."	"A Marfan syndrome human induced pluripotent stem cell line with a heterozygous FBN1 c.4082G&gt;A mutation, ISMMSi002-B, for disease modeling. Fibroblasts of a 28-year-old female with Marfan syndrome (MFS) due to a heterozygous FBN1 c.4082G&gt;A mutation were reprogrammed using the Sendai virus delivery method. The established human induced pluripotent stem cell (hiPSC) line named ISMMSi002-B expresses pluripotency markers, has a normal karyotype, carries the specific FBN1 mutation and is able to differentiate into three germ layers in vitro. ISMMSi002-B has utility in studying MFS pathogenesis, including skeletal abnormalities, cardiomyopathy, and vascular smooth muscle cell dysfunction associated with aortic aneurysm. Furthermore, it can serve as a platform for drug discovery."	"A chinese boy with geleophysic dysplasia caused by compound heterozygous mutations in ADAMTSL2. Geleophysic dysplasia, belonging to the group of acromelic dysplasia, is a rare genetic disease. Two genes, FBN1 and ADAMTSL2, were known to be linked to this disorder. The disorder presents as extreme short stature, short limbs, small hands and feet, stubby fingers and toes, joint stiffness, toe walking, skin thickening, progressive cardiac valvular thickening and characteristic facial features, including a round face with full cheeks. Here, we report the first Chinese case with geleophysic dysplasia type 1 based on clinical and genetic features. The boy was admitted because of severe physical growth retardation and mild motor retardation. Comprehensive medical evaluations were performed including metabolic studies, endocrine function examination, bone X-rays and echocardiography. Much delayed bone age and geleophysic dysplasia were found. Targeted next-generation sequencing was used to detect genetic mutations associated with skeletal dysplasia. Sanger sequencing was used to confirm the mutations in the patient. PCR amplification, cloing, and sequencing was used to determine the de novo mutation origin. Two compound heterozygous mutations were confirmed in the ADAMTSL2 gene of the patient. The c.340G &gt; A (p.Glu114Lys) mutation was a de novo heterozygous mutation, and our results suggested that it was located on the paternal allele. While the c.234-2A &gt; G inherited from his mother was a novel pathogenic heterozygous splicing mutation. Growth hormone deficiency had been observed in the patient. His growth velocity was improved by growth hormone supplementation. In conclusion, we have identified a novel splicing mutation of ADAMTSL2 carried by a Chinese boy with geleophysic dysplasia type 1. The patient was treated effectively with growth hormone supplementation."	"Whole exome sequencing identifies FBN1 mutations in two patients with early‑onset type B aortic dissection. The etiology of thoracic aortic aneurysm and dissection (TAAD) is complex and heterogeneous. Emerging evidence has demonstrated that genetic causes may be a consideration in early‑onset TAAD. Owing to overlapping clinical phenotypes and the genetic heterogeneity of TAAD, it is challenging for clinicians to make a molecular diagnosis of TAAD, particularly in those who present with non‑specific syndromic features. In order to identify the causative mutation in two young patients with acute type B aortic dissection without syndromic features, whole exome sequencing (WES) was performed in the present study. A missense mutation (c.G6953A:p.C2318Y) and a nonsense mutation (c.C4786T:p.R1596X) were identified in the fibrillin 1 gene in patients T287 and T267, respectively. The present study emphasized the necessity of genetic testing for young patients with type B aortic dissection. WES is a timely, robust and inexpensive technique for molecular diagnosis, particularly for TAAD caused by numerous genes. Genetic diagnosis of Marfan syndrome could aid in periodic surveillance, prophylactic surgical measures, and genetic counseling."	"Colon cancer recurrence‑associated genes revealed by WGCNA co‑expression network analysis. The present study aimed to identify the recurrence‑associated genes in colon cancer, which may provide theoretical evidence for the development of novel methods to prevent tumor recurrence. Colon cancer and matched normal samples microarray data (E‑GEOD‑39582) were downloaded from ArrayExpress. Genes with significant variation were identified, followed by the screening of differentially expressed genes (DEGs). Subsequently, the co‑expression network of DEGs was constructed using the weighted correlation network analysis (WGCNA) method, which was verified using the validation dataset. The significant modules associated with recurrence in the network were subsequently screened and verified in another independent dataset E‑GEOD‑33113. Function and pathway enrichment analyses were also conducted to determine the roles of selected genes. Survival analysis was performed to identify the association between these genes and survival. A total of 434 DEGs were identified in the colon samples, and stress‑associated endoplasmic reticulum protein family member 2 (SERP2) and long non‑coding RNA‑0219 (LINC0219) were determined to be the vital DEGs between all the three sub‑type groups with different clinical features. The brown module was identified to be the most significant module in the co‑expression network associated with the recurrence of colon cancer, which was verified in the E‑GEOD‑33113 dataset. Top 10 genes in the brown module, including EGF containing fibulin like extracellular matrix protein 2 (EFEMP2), fibrillin 1 (FBN1) and secreted protein acidic and cysteine rich (SPARC) were also associated with survival time of colon cancer patients. Further analysis revealed that the function of cell adhesion, biological adhesion, extracellular matrix (ECM) organization, pathways of ECM‑receptor interaction and focal adhesion were the significantly changed terms in colon cancer. In conclusion, SERP2, EFEMP2, FBN1, SPARC, and LINC0219 were revealed to be the recurrence‑associated molecular and prognostic indicators in colon cancer by WGCNA co‑expression network analysis."	"Genetic Bases of Bicuspid Aortic Valve: The Contribution of Traditional and High-Throughput Sequencing Approaches on Research and Diagnosis. Bicuspid aortic valve (BAV) is a common (0.5-2.0% of general population) congenital heart defect with increased prevalence of aortic dilatation and dissection. BAV has an autosomal dominant inheritance with reduced penetrance and variable expressivity. BAV has been described as an isolated trait or associated with syndromic conditions [e.g., Marfan Marfan syndrome or Loeys-Dietz syndrome (MFS, LDS)]. Identification of a syndromic condition in a BAV patient is clinically relevant to personalize aortic surgery indication. A 4-fold increase in BAV prevalence in a large cohort of unrelated MFS patients with respect to general population was reported, as well as in LDS patients (8-fold). It is also known that BAV is more frequent in patients with thoracic aortic aneurysm (TAA) related to mutations in ACTA2, FBN1, and TGFBR2 genes. Moreover, in 8 patients with BAV and thoracic aortic dilation, not fulfilling the clinical criteria for MFS, FBN1 mutations in 2/8 patients were identified suggesting that FBN1 or other genes involved in syndromic conditions correlated to aortopathy could be involved in BAV. Beyond loci associated to syndromic disorders, studies in humans and animal models evidenced/suggested the role of further genes in non-syndromic BAV. The transcriptional regulator NOTCH1 has been associated with the development and acceleration of calcium deposition. Genome wide marker-based linkage analysis demonstrated a linkage of BAV to loci on chromosomes 18, 5, and 13q. Recently, a role for GATA4/5 in aortic valve morphogenesis and endocardial cell differentiation has been reported. BAV has also been associated with a reduced UFD1L gene expression or involvement of a locus containing AXIN1/PDIA2. Much remains to be understood about the genetics of BAV. In the last years, high-throughput sequencing technologies, allowing the analysis of large number of genes or entire exomes or genomes, progressively became available. The latter issue together with the development of &quot;BigData&quot; analysis methods improving their interpretation and integration with clinical data represents a promising opportunity to increase the disease knowledge and diagnosis in monogenic and multifactorial complex traits. This review summarized the main knowledge on the BAV genetic bases, the role of genetic diagnosis in BAV patient managements and the crucial challenges for the comprehension of genetics of BAV in research and diagnosis."	"Identification of Novel Clinically Relevant Variants in 70 Southern Chinese patients with Thoracic Aortic Aneurysm and Dissection by Next-generation Sequencing. Thoracic Aortic Aneurysm and Dissection (TAAD) is a life-threatening pathology and remains challenging worldwide. Up to 40% of TAAD are hereditary with complex heterogeneous genetic backgrounds. Recently, next-generation sequencing (NGS) has been successfully applied to identify genetic variants in an efficient and cost-effective manner. In our study, NGS coupled with DNA target-capture array was used to screen 11 known causative genes of TAAD in 70 patients from Southern China. All the identified variants were confirmed by Sanger sequencing. We identified forty variants in 36 patients (51.4%), including three known pathogenic (7.5%), 10 likely pathogenic variants (25%, 9 in FBN1, 1 in ACTA2), and 27 variants with uncertain significance (VUS) (67.5%). Among the 27 VUS, 14 (51.9%) were in the FBN1 gene, 3 in Col5A2, 2 in ACTA2, 2 in MYH11, 2 in MYLK, 2 in SLC2A10, 1 in MSTN and 1 in SMAD3 respectively. Based on the segregation data and independent reports, five known likely pathogenic variants and four VUS were upgraded to pathogenic variant and likely pathogenic variant respectively. Our data indicate that NGS is a highly efficient genetic method for identification of pathogenic variants in TAAD patients."	"Role of TGFBR1 and TGFBR2 genetic variants in Marfan syndrome. Genetic variants in transforming growth factor beta (TGF-β) receptors type 1 (TGFBR1) and type 2 (TGFBR2) genes have been associated with different hereditary connective tissue disorders sharing thoracic aortic aneurysm and dissection (TAA/D). Mutations in both TGFBR1/2 genes have been described in patients with TAA/D and Marfan syndrome (MFS), and they are associated consistently with Loeys-Dietz syndrome. The existing literature shows discordant data resulting from mutational screening of TGFBR1/2 genes in patients with MFS. The aim of the study was to investigate the role of TGFBR1/2 genetic variants in determining and/or modulating MFS clinical phenotype. We investigated 75 unrelated patients with MFS referred to the Center for Marfan Syndrome and Related Disorders (Careggi University Hospital, Florence) who were subjected to FBN1 and TGFBR1/2 Sanger mutational screening. Forty-seven patients with MFS (63%) carried a pathogenetic FBN1 mutation. No pathogenetic mutations were detected in TGFBR1/2 genes. Ten common polymorphisms were identified in TGFBR2 and 6 in TGFBR1. Their association with cardiovascular manifestations was evaluated. Carriers of the A allele of rs11466512, delA allele of c.383delA or delT allele of c.1256-15del1T polymorphisms had a trend toward or significantly reduced z-scores (median [interquartile range (IQR)], 2.2 [1.13-4.77]; 2.1 [1.72-3.48]; 2.5 [1.85-3.86]) with respect to homozygous patients with wild-type MFS (median [IQR], 4.20 [2.39-7.25]; 3.9 [2.19-7.00]; 3.9 [2.14-6.93]). Carriers of the A allele of the rs2276767 polymorphism showed a trend toward increased z-score (median [IQR], 4.9 [2.14-7.16]) with respect to patients with wild-type MFS (median [IQR], 3.3 [1.75-5.45]). The protective effect of TGFBR1/2 genetic score including all the 4 variants was also evaluated. Patients with MFS with two or more protective alleles included in the score had statistically significant reduced aortic z-scores (median [IQR], 2.20 [1.48-3.37]) with respect to patients with 1 or no protective alleles (median [IQR], 4.20 [2.48-7.12]; P = .007). Patients with severe aortic manifestations (aortic z-score ≥ 2 or aortic surgery) showed a significantly lower prevalence of subjects with two or more protective alleles included in the genetic score (29.7%) than patients with no or milder cardiovascular involvement (63.6%; P = .029). The genetic score protective effect on global aortic manifestations severity (aortic z-score ≥ 2 or aortic surgery) was also observed at the logistic regression analysis adjusted for the presence of FBN1 gene mutations (odds ratio, 0.21; 95% CI, 0.05-0.84; P = .028). In conclusion, our data reappraise the role of TGFBR1 and TGFBR2 as major genes in patients with MFS, and suggest that TGFBR1/2 genetic variants (in particular when evaluated as a burden by score) might play a role in modulating the severity of cardiovascular manifestation in MFS."	"Skeletal evolution in Marfan syndrome: growth curves from a French national cohort. BackgroundTo describe the growth patterns of children affected by Marfan syndrome (MFS) compared with those of unaffected children and to create growth charts.MethodsAn observational study of children referred to the French National MFS Reference Centre. A total of 259 children carrying an FBN1 gene mutation and fulfilling Ghent 1 criteria (MFS group) and 474 mutation-negative sibling controls (non-MFS group) were evaluated. Both groups were compared with French-accepted reference nomograms (Reference group).ResultsBoys and girls from the MFS group were significantly taller than those in the non-MFS group and in the reference group at all ages (P&lt;0.0001). But, MFS children's overgrowth reduced with age. At 17 years of age, the mean height (MFS vs. non-MFS) was 191.2±8.4 cm (+2.9 SD) vs. 182.9±8.1 (+1.6 SD) for boys and 178.3±7.6 cm (+2.7 SD) vs. 169.5±6.8 (+1.2 SD) for girls, respectively. By contrast, the mean BMI of children in the MFS group was similar to those in the non-MFS group and inferior to the values of French general population, evolving around -1 SD.ConclusionGrowth patterns differ in patients with an FBN1 mutation. Knowing the growth parameters should allow physicians to better counsel patients and detect the associated diseases. The provided curves could also help to predict the final height."	"Gross deletions in FBN1 results in variable phenotypes of Marfan syndrome. A mutation in FBN1 is primarily attributed to Marfan syndrome (MFS). So far, &gt;1800 unique FBN1 mutations have been identified, with the vast majority being single-nucleotide substitutions, small deletions, and insertions. The rearrangement of large fragments of FBN1 accounts for only 1.7% of all variants. The aim of this study was to investigate the characteristics of large genomic rearrangements in FBN1 among MFS patients and to evaluate the correlations between genotype and phenotype. Systematic sequencing of the disease-related genes FBN1, TGFBR1, and TGFBR2, was carried out previously for 26 unrelated patients with MFS. No small mutations were found. Subsequently, multiplex ligation-dependent probe amplification was performed for the detection of copy number variations in these patients. The breakpoints were determined by gap PCR and sequencing. Transcription level analysis was conducted in patients whose RNA sample was available. Four gross deletions were identified in FBN1. Three deletions (exons 6, 48-53, and 49-50) were predicted to be in-frame deletions; the remaining deletion (exons 1-36) was expected to induce the loss of one copy of the FBN1 gene. The breakpoints of these four deletions were cloned, and revealed deletion sizes of 16,551, 10,346, 4563, and 187,047bp, respectively. Patients with in-frame deletions of exons 48-53 and 49-50 showed severe clinical phenotypes; Patient with an exon 6 deletion showed mild potential MFS phenotypes. And the patient had classic MFS with a deletion of exons 1-36. We characterized four large genomic rearrangements in FBN1. FBN1 haploinsufficiency correlated with a classic MFS phenotype, while in-frame deletions between exons 24-53 of FBN1 tended to cause severe clinical phenotypes."	"Racial Differences in the Extracellular Matrix and Histone Acetylation of the Lamina Cribrosa and Peripapillary Sclera. We investigated the extracellular matrix (ECM) of the lamina cribrosa (LC) and peripapillary sclera (PPS) and compared histone acetylation and related enzymes to identify racial differences between Korean and Caucasian donor eyes. Posterior segment tissues were obtained from 30 Caucasian donors and 42 age and axial length-matched Korean donors. Histone modification was assessed for histone deacetylase (HDAC) 2, HDAC3, and acetylated histone H3. The promoter regions of the major ECM in the LC and PPS including collagen type I and III, and elastic fiber components (elastin and fibrillin-1) and lysyl oxidase enzymes including lysyl oxidase-like 1 and 2 (LOXL2) were evaluated by chromatin immunoprecipitation (ChIP) assay. Protein and mRNA expression of major ECM components were assessed using real-time polymerase chain reaction analysis, western blot analysis, and immunohistochemical staining. HDAC2 and HDAC3 expression levels were decreased and acetylated histone H3 was increased in the LC and PPS of Korean eyes than Caucasian eyes. The promoter regions of LOXL2, elastin, and fribrillin-1 genes were highly acetylated in Korean LC. Expression of LOXL2 and elastic fiber components (elastin and fibrillin-1) were significantly increased in Korean LC and PPS than Caucasians according to the real-time polymerase chain reaction, western blot analyses, and quantification of elastic fiber staining. Histone acetylation status differed in the promoter regions of the elastic fiber components and LOXL2 in the LC and PPS according to race. Further study to reveal the association with these findings to the pathogenesis of glaucoma in Korean eyes is needed."	"Losartan in combination with propranolol slows the aortic root dilatation in neonatal Marfan syndrome. Neonatal Marfan syndrome, in contrast to classical Marfan syndrome, is characterized by rapidly progressive multi-valvular cardiac disease and death from congestive heart failure, typically within the first year of life. Due to the rarity of this condition, treatment for neonatal Marfan syndrome has not been well studied. In this report, a combination of losartan and propranolol reduced the aortic root dilatation rate after three months of losartan therapy. Genetic analysis in this patient revealed a mutation in exon 25 of the FBN1 gene, which typically results in a shorter life expectancy. However, the patient's heart failure was controlled by losartan, propranolol and other anti-congestive medications, which may have prolonged his survival."	"Marfan syndrome; A connective tissue disease at the crossroads of mechanotransduction, TGFβ signaling and cell stemness. Mutations in fibrillin-1 cause Marfan syndrome (MFS), the most common heritable disorder of connective tissue. Fibrillin-1 assemblies (microfibrils and elastic fibers) represent a unique dual-function component of the architectural matrix. The first role is structural for they endow tissues with tensile strength and elasticity, transmit forces across them and demarcate functionally discrete areas within them. The second role is instructive in that these macroaggregates modulate a large variety of sub-cellular processes by interacting with mechanosensors, and integrin and syndecan receptors, and by modulating the bioavailability of local TGFβ signals. The multifunctional, tissue-specific nature of fibrillin-1 assemblies is reflected in the variety of clinical manifestations and disease mechanisms associated with the MFS phenotype. Characterization of mice with ubiquitous or cell type-restricted fibrillin-1 deficiency has unraveled some pathophysiological mechanisms associated with the MFS phenotype, such as altered mechanotransduction in the heart, dysregulated TGFβ signaling in the ascending aorta and perturbed stem cell fate in the bone marrow. In each case, potential druggable targets have also been identified. However, the finding that distinct disease mechanisms underlie different organ abnormalities strongly argues for developing multi-drug strategies to mitigate or even prevent both life-threatening and morbid manifestations in pediatric and adult MFS patients."	"Nonmyocyte ERK1/2 signaling contributes to load-induced cardiomyopathy in Marfan mice. Among children with the most severe presentation of Marfan syndrome (MFS), an inherited disorder of connective tissue caused by a deficiency of extracellular fibrillin-1, heart failure is the leading cause of death. Here, we show that, while MFS mice (Fbn1C1039G/+ mice) typically have normal cardiac function, pressure overload (PO) induces an acute and severe dilated cardiomyopathy in association with fibrosis and myocyte enlargement. Failing MFS hearts show high expression of TGF-β ligands, with increased TGF-β signaling in both nonmyocytes and myocytes; pathologic ERK activation is restricted to the nonmyocyte compartment. Informatively, TGF-β, angiotensin II type 1 receptor (AT1R), or ERK antagonism (with neutralizing antibody, losartan, or MEK inhibitor, respectively) prevents load-induced cardiac decompensation in MFS mice, despite persistent PO. In situ analyses revealed an unanticipated axis of activation in nonmyocytes, with AT1R-dependent ERK activation driving TGF-β ligand expression that culminates in both autocrine and paracrine overdrive of TGF-β signaling. The full compensation seen in wild-type mice exposed to mild PO correlates with enhanced deposition of extracellular fibrillin-1. Taken together, these data suggest that fibrillin-1 contributes to cardiac reserve in the face of hemodynamic stress, critically implicate nonmyocytes in disease pathogenesis, and validate ERK as a therapeutic target in MFS-related cardiac decompensation."	"Neonatal Marfan syndrome: Report of two cases. Marfan syndrome is rarely diagnosed in the neonatal period because of variable expression and age-dependent appearance of clinical signs. The prognosis is usually poor due to high probability of congestive heart failure, mitral and tricuspid regurgitations with suboptimal response to medical therapy and difficulties in surgical management. The authors have studied two cases of Marfan syndrome in the newborn period. Two cases of neonatal Marfan syndrome, one male and one female, were diagnosed by characteristic physical appearance. Both infants had significant cardiovascular abnormalities diagnosed by ultrasonography. Genetic DNA analysis in the second case confirmed the mutations in the fibrillin-1 gene located on chromosome 15q21 which is responsible for the development of Marfan syndrome. The boy died at six weeks of age with signs of rapidly progressive left ventricular failure associated with pneumonia. The second infant was having only mild signs of congestive heart failure and has been treated with beta blockers. At the age of 4 years her symptoms of congestive heart failure had worsened due to progression of mitral and tricuspid insufficiency and development of significant cardiomegaly. Mitral and tricuspid valvuloplasy had to be done at that time. Early diagnosis of Marfan syndrome in the newborn period can allow treatment in the early stages of cardiovascular abnormalities and may improve the prognosis. It also helps to explain to the family the serious health problem of their child."	"Human skin gene expression: Natural (trans) resveratrol versus five resveratrol analogs for dermal applications. Resveratrol (RV) is a polyphenolic compound naturally produced by plants. Polyphenolic compounds incorporated into medicinal products are beneficial but, RV is rapidly metabolized with an associated decline in biological activity. This study tested RV as the standard and compared five structurally modified RV analogs: butyrate, isobutyrate, palmitoate, acetate, and diacetate (to improve functionality) at 1% concentration(s) for 24 h in epiderm full thickness cultures by gene array/qPCR mRNA analysis. When silent mating type information regulation 2 homolog 1, extracellular elements (collagen1A1, 3A1, 4A1; elastin, tissue inhibitor of matrix metalloproteinase 1, fibrillin 1 laminin beta1 and matrix metalloproteinase 9), anti-aging and aging genes, inflammatory biomarkers (interleukin-1A [IL1A], IL1R2, IL-6 and IL-8), nerve growth factor, and the antioxidants (proliferating cell nuclear antigen, catalase, superoxide dismutase and metallothionein 1H/2H) were evaluated, ranking each from highest-to-lowest for gene expression: butyrate &gt; isobutyrate &gt; diacetate &gt; acetate &gt; palmitoate. This study showed that the butyrate and isobutyrate analogs are more biologically active compared to resveratrol and have potential use in topical applications to improve dermal and other health applications. Impact statement Resveratrol has been reported to have a wide variety of health benefits but its rapid metabolism especially after oral ingestion results in very low bioavailability. Notably, the first human skin gene expression study of resveratrol was not published until 2014. The purpose of this study was to determine if increased stability and biological activity could be obtained by modifying the chemical structure of natural (trans) resveratrol and quantifying human gene expression by qPCR of skin biomarkers that enhance dermal health. Five resveratrol analogs were synthesized that increased their lipophilic index to enhance tissue penetration and augment biological activities on the measured parameters that expand the current knowledge of structure/function relationships. The butyrate and isobutyrate modifications displayed gene expression values significantly above resveratrol and suggest that oral application of these and potentially other resveratrol analogs may yield similar results to improve stability and biological activity to benefit/address various disorders/diseases."	"The Effect of Ultraviolet B on Fibrillin-1 and Fibrillin-2 in Human Non-pigmented Ciliary Epithelial Cells In Vitro. The ciliary zonules link the lens to the ciliary body in the eye, controlling the thickness of the lens for focusing through their characteristic elasticity. The ciliary zonules are composed of oxytalan fibers. Physiological or pathological damage to the ciliary zonules, including exposure to ultraviolet (UV)-A and UV-B components, can lead to lens dislocation. However, no studies have shown whether UV affects the ciliary zonule. Here, we assessed the effects of UV light on human nonpigmented ciliary epithelial cells (HNPCECs). HNPCECs were cultured for 4 weeks, and expression of fibrillin-1 and fibrillin-2 was confirmed. In control cultures (0 mJ/cm<sup>2</sup>), some fibrillin-1-positive fibers were merged with fibrillin-2. After UV-A irradiation, the appearance of both fibrillin-1- and fibrillin-2-positive fibers was unchanged. However, after UV-B irradiation, fibrillin-1-positive fibers became thin at an irradiation level of 100 mJ/cm<sup>2</sup>, and the fiber structure became amorphous at 150 mJ/cm<sup>2</sup>. Fibrillin-2-positive fibers lost their continuity and disappeared after being exposed to 150 mJ/cm<sup>2</sup> UV-B. UV-B irradiation did not affect cell viability, possibly because of the sensitivity of fibrillin-1 and fibrillin-2 to UV-B. Thus, dislocation of the lens with age may be attributable to cumulative exposure to UV-B."	"Aortic microcalcification is associated with elastin fragmentation in Marfan syndrome. Marfan syndrome (MFS) is a connective tissue disorder in which aortic rupture is the major cause of death. MFS patients with an aortic diameter below the advised limit for prophylactic surgery (&lt;5 cm) may unexpectedly experience an aortic dissection or rupture, despite yearly monitoring. Hence, there is a clear need for improved prognostic markers to predict such aortic events. We hypothesize that elastin fragments play a causal role in aortic calcification in MFS, and that microcalcification serves as a marker for aortic disease severity. To address this hypothesis, we analysed MFS patient and mouse aortas. MFS patient aortic tissue showed enhanced microcalcification in areas with extensive elastic lamina fragmentation in the media. A causal relationship between medial injury and microcalcification was revealed by studies in vascular smooth muscle cells (SMCs); elastin peptides were shown to increase the activity of the calcification marker alkaline phosphatase (ALP) and reduce the expression of the calcification inhibitor matrix GLA protein in human SMCs. In murine Fbn1<sup>C1039G/+</sup> MFS aortic SMCs, Alpl mRNA and activity were upregulated as compared with wild-type SMCs. The elastin peptide-induced ALP activity was prevented by incubation with lactose or a neuraminidase inhibitor, which inhibit the elastin receptor complex, and a mitogen-activated protein kinase kinase-1/2 inhibitor, indicating downstream involvement of extracellular signal-regulated kinase-1/2 (ERK1/2) phosphorylation. Histological analyses in MFS mice revealed macrocalcification in the aortic root, whereas the ascending aorta contained microcalcification, as identified with the near-infrared fluorescent bisphosphonate probe OsteoSense-800. Significantly, microcalcification correlated strongly with aortic diameter, distensibility, elastin breaks, and phosphorylated ERK1/2. In conclusion, microcalcification co-localizes with aortic elastin degradation in MFS aortas of humans and mice, where elastin-derived peptides induce a calcification process in SMCs via the elastin receptor complex and ERK1/2 activation. We propose microcalcification as a novel imaging marker to monitor local elastin degradation and thus predict aortic events in MFS patients. Copyright © 2017 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Sex, pregnancy and aortic disease in Marfan syndrome. Sex-related differences as well as the adverse effect of pregnancy on aortic disease outcome are well-established phenomena in humans with Marfan syndrome (MFS). The underlying mechanisms of these observations are largely unknown. In an initial (pilot) step we aimed to confirm the differences between male and female MFS patients as well as between females with and without previous pregnancy. We then sought to evaluate whether these findings are recapitulated in a pre-clinical model and performed in-depth cardiovascular phenotyping of mutant male and both nulliparous and multiparous female Marfan mice. The effect of 17β-estradiol on fibrillin-1 protein synthesis was compared in vitro using human aortic smooth muscle cells and fibroblasts. Our small retrospective study of aortic dimensions in a cohort of 10 men and 20 women with MFS (10 pregnant and 10 non-pregnant) confirmed that aortic root growth was significantly increased in the pregnant group compared to the non-pregnant group (0.64mm/year vs. 0.12mm/year, p = 0.018). Male MFS patients had significantly larger aortic root diameters compared to the non-pregnant and pregnant females at baseline and follow-up (p = 0.002 and p = 0.007, respectively), but no significant increase in aortic root growth was observed compared to the females after follow-up (p = 0.559 and p = 0.352). In the GT-8/+ MFS mouse model, multiparous female Marfan mice showed increased aortic diameters when compared to nulliparous females. Aortic dilatation in multiparous females was comparable to Marfan male mice. Moreover, increased aortic diameters were associated with more severe fragmentation of the elastic lamellae. In addition, 17β-estradiol was found to promote fibrillin-1 production by human aortic smooth muscle cells. Pregnancy-related changes influence aortic disease severity in otherwise protected female MFS mice and patients. There may be a role for estrogen in the female sex protective effect."	"Cervical artery dissection expands the cardiovascular phenotype in FBN1-related Weill-Marchesani syndrome. Weill-Marchesani syndrome (WMS) is a rare form of acromelic dysplasia that is characterized by distinctive skeletal, ocular, and cardiovascular abnormalities. Previously described cardiac manifestations of WMS include aortic and pulmonary valve stenosis, mitral valve prolapse, mitral stenosis, and QTc prolongation. Autosomal dominant forms of WMS result from heterozygous pathogenic variants in FBN1, a gene with a well characterized role in the pathogenesis of thoracic aortic aneurysm (TAA) in the context of Marfan syndrome. In contrast, only one patient has been reported with aortic disease in WMS. Although the risk of aortic dissection from preceding TAA remains the leading cause of morbidity for individuals with Marfan syndrome, rare reports of arterial dissection in the peripheral vasculature have been described. Peripheral artery dissection has not been previously reported in other FBN1-related diseases. We describe a three generation family with FBN1-related WMS whose cardiovascular manifestations include TAA and cervical artery dissection, thus expanding the cardiovascular phenotype of WMS. Further research is required to quantify these risks and establish appropriate recommendations for cardiovascular imaging, medical management, and prophylactic surgical intervention in individuals with FBN1--related acromelic dysplasia."	"Genetic effects of Vicryl® on fibroblast primary culture. Vicryl® (polyglactin 910) is an absorbable, synthetic, usually braided suture, indicated for soft tissue approximation and ligation. Vicryl® has a special coating for minimizing friction, easing passage through tissue and easy knot tie down. It is synthetic for minimal tissue reaction. Fibroblasts are the main cells of connective tissue that synthesize extracellular matrix. In this work, we tried to judge the action of Vicryl® on fibroblasts behaviour. We evaluated the expression levels of some adhesion and traction-resistance related genes (ELN, DSP, FN1, FBN1, ITGB1, ITGA1, ITGA5, ITGA2, COL1A1, COL3A1) by using real time Reverse Transcription-Polymerase Chain Reaction (real time RT-PCR). All but 2 genes resulted up-regulated after 48 h of treatment. Our preliminary results point out the potential of Vicryl® as a biocompatible and regenerative tool in medicine."	"Genetic effects of BIOPAD® on fibroblast primary culture. BIOPAD® is an ivory-white soft sponge, made exclusively of lyophilized type I native heterologous collagen extracted from horse flexor tendon, gelatine free, that keeps its native structure specific to the body’s skin tissue. BIOPAD® is an active dressing, playing an active role in all stages of wound healing process, stimulating granulation tissue growth and enhancing regeneration tissues. It ensures balance between absorption and humidity at wound surface, gaseous exchange of soft tissues during healing process, barrier to prevent bacterial infections and it is completely non-adherent. The use of BIOPAD® is painless for the patient and does not require removal or change of dressing. In this work, we evaluated the effect of BIOPAD® on fibroblasts behavior in term of cell viability, survival and growth and collagen production. The expression levels of some adhesion and traction-resistance related genes (ELN, DSP, FN1, FBN1, ITGB1, ITGA1, ITGA5, ITGA2, COL1A1, COL3A1) were analyzed using real time Reverse Transcription-Polymerase Chain Reaction (real time RT-PCR). All genes, except for ELN, DSP, ITGB1 and ITGA1 are up-regulated after 48 h of treatment. Altogether, our results point out the good potential of BIOPAD® as a biocompatible and regenerative tool in medicine."	"Bioreactor-induced mesenchymal progenitor cell differentiation and elastic fiber assembly in engineered vascular tissues. In vitro maturation of engineered vascular tissues (EVT) requires the appropriate incorporation of smooth muscle cells (SMC) and extracellular matrix (ECM) components similar to native arteries. To this end, the aim of the current study was to fabricate 4mm inner diameter vascular tissues using mesenchymal progenitor cells seeded into tubular scaffolds. A dual-pump bioreactor operating either in perfusion or pulsatile perfusion mode was used to generate physiological-like stimuli to promote progenitor cell differentiation, extracellular elastin production, and tissue maturation. Our data demonstrated that pulsatile forces and perfusion of 3D tubular constructs from both the lumenal and ablumenal sides with culture media significantly improved tissue assembly, effectively inducing mesenchymal progenitor cell differentiation to SMCs with contemporaneous elastin production. With bioreactor cultivation, progenitor cells differentiated toward smooth muscle lineage characterized by the expression of smooth muscle (SM)-specific markers smooth muscle alpha actin (SM-α-actin) and smooth muscle myosin heavy chain (SM-MHC). More importantly, pulsatile perfusion bioreactor cultivation enhanced the synthesis of tropoelastin and its extracellular cross-linking into elastic fiber compared with static culture controls. Taken together, the current study demonstrated progenitor cell differentiation and vascular tissue assembly, and provides insights into elastin synthesis and assembly to fibers. Incorporation of elastin into engineered vascular tissues represents a critical design goal for both mechanical and biological functions. In the present study, we seeded porous tubular scaffolds with multipotent mesenchymal progenitor cells and cultured in dual-pump pulsatile perfusion bioreactor. Physiological-like stimuli generated by bioreactor not only induced mesenchymal progenitor cell differentiation to vascular smooth muscle lineage but also actively promoted elastin synthesis and fiber assembly. Gene expression and protein synthesis analyses coupled with histological and immunofluorescence staining revealed that elastin-containing vascular tissues were fabricated. More importantly, co-localization and co-immunoprecipitation experiments demonstrated that elastin and fibrillin-1 were abundant throughout the cross-section of the tissue constructs suggesting a process of elastin protein crosslinking. This study paves a way forward to engineer elastin-containing functional vascular substitutes from multipotent progenitor cells in a bioreactor."	"Characterization of transcriptional modules related to fibrosing-NAFLD progression. Based on the severity of liver fibrosis, low or high-risk profile of developing end-stage liver disease was present in nonalcoholic fatty liver disease (NAFLD). However, the mechanisms inducing transition from mild to advanced NAFLD are still elusive. We performed a system-level study on fibrosing-NAFLD by weighted gene co-expression network analysis (WGCNA) to identify significant modules in the network, and followed by functional and pathway enrichment analyses. Moreover, hub genes in the module were analyzed by network feature selection. As a result, fourteen distinct gene modules were identified, and seven modules showed significant associations with the status of NAFLD. Module preservation analysis confirmed that these modules can also be found in diverse independent datasets. After network feature analysis, the magenta module demonstrated a remarkably correlation with NAFLD fibrosis. The top hub genes with high connectivity or gene significance in the module were ultimately determined, including LUM, THBS2, FBN1 and EFEMP1. These genes were further verified in clinical samples. Finally, the potential regulators of magenta module were characterized. These findings highlighted a module and affiliated genes as playing important roles in the regulation of fibrosis in NAFLD, which may point to potential targets for therapeutic interventions."	"Characterization of micro-RNA Profile in the Blood of Patients with Marfan's Syndrome. Marfan's syndrome (MFS) is an autosomal dominant inheritance disorder with a 1/5,000 live-birth prevalence. It is characterized by a wide range of clinical manifestations with more than 3,000 mutations identified in the FBN1 gene. In this study, we aimed to determine if specific patterns of circulating micro-RNAs (miRNAs) are associated with MFS-associated with cardiovascular diseases. Microarray-based miRNA profiling was performed on blood samples of 12 MFS patients, and 12 healthy volunteers (HVs) controls and the differences in miRNA abundance between the two groups were validated using independent cohorts of 22 MFS and of 22 HV controls by real-time quantitative polymerase chain reaction (RT-qPCR). Enrichment analyses of altered miRNA abundance were predicted using bioinformatics tools. Altered miRNA abundance levels were determined between MFS (n = 34) and HVs (n = 34). In a screening phase, we analyzed 12 patients with MFS and 12 HVs by miRNA microarray. We found 198 miRNAs that were significantly altered in MFS patients as compared with HVs, including 16 miRNAs with a more than 1.5-fold change. Out of these 16 miRNAs, 10 showed a decreased abundance and 6 showed an increased abundance. In the validation phase, we analyzed independent cohorts of 22 MFS and of 22 HV controls by RT-qPCR. We confirmed the direction of abundance changes and the significance of different abundances between MFS patients and HVs for four miRNAs, namely, miR-362-5p, miR-339-3p, miR-340-5p, and miR-210-3p. Only the miR-150-5p showed a significant correlation with mitral valve prolapse (p = 0.010). The predicted targets for the validated miRNAs were associated with signal transduction, tissue remodeling, and cellular interaction pathways. The altered abundance level of different miRNAs in whole blood of MFS patients lays the ground to the development of novel diagnostic approaches with altered miRNAs levels associated with MFS with manifestations associated with cardiovascular diseases."	"The N-Terminal Region of Fibrillin-1 Mediates a Bipartite Interaction with LTBP1. Fibrillin-1 (FBN1) mutations associated with Marfan syndrome lead to an increase in transforming growth factor β (TGF-β) activation in connective tissues resulting in pathogenic changes including aortic dilatation and dissection. Since FBN1 binds latent TGF-β binding proteins (LTBPs), the major reservoir of TGF-β in the extracellular matrix (ECM), we investigated the structural basis for the FBN1/LTBP1 interaction. We present the structure of a four-domain FBN1 fragment, EGF2-EGF3-Hyb1-cbEGF1 (FBN1<sup>E2cbEGF1</sup>), which reveals a near-linear domain organization. Binding studies demonstrate a bipartite interaction between a C-terminal LTBP1 fragment and FBN1<sup>E2cbEGF1</sup>, which lies adjacent to the latency-associated propeptide (LAP)/TGF-β binding site of LTBP1. Modeling of the binding interface suggests that, rather than interacting along the longitudinal axis, LTBP1 anchors itself to FBN1 using two independent epitopes. As part of this mechanism, a flexible pivot adjacent to the FBN1/LTBP1 binding site allows LTBP1 to make contacts with different ECM networks while presumably facilitating a force-induced/traction-based TGF-β activation mechanism."	"Marfan Syndrome (MFS): Visual Diagnosis and Early Identification. NA"	"De Novo Paternal FBN1 Mutation Detected in Embryos Before Implantation. BACKGROUND Marfan syndrome (MFS) is an autosomal dominant disease caused by mutations in the Fibrillin (FBN)1 gene and characterized by disorders in the cardiovascular, skeletal, and visual systems. The diversity of mutations and phenotypic heterogeneity of MFS make prenatal molecular diagnoses difficult. In this study, we used pre-implantation genetic diagnosis (PGD) to identify the pathogenic mutation in a male patient with MFS and to determine whether his offspring would be free of the disease. MATERIAL AND METHODS The history and pedigree of the proband were analyzed. Mutation analysis was performed on the couple and immediate family members. The couple chose IVF treatment and 4 blastocysts were biopsied. PGD was carried out by targeted high-throughput sequencing of the FBN1 gene in the embryos, along with single-nucleotide polymorphism haplotyping. Sanger sequencing was used to confirm the causative mutation. RESULTS c.2647T&gt;C (p.Trp883Arg) was identified as the de novo likely pathogenic mutation in the proband. Whole-genome amplification and sequencing of the 3 embryos revealed that they did not carry the mutation, and 1 blastocyst was transferred back to the uterus. The amniocentesis test result analyzed by Sanger sequencing confirmed the PGD. A premature but healthy infant free of heart malformations was born. CONCLUSIONS The de novo mutation c.2647T&gt;C (p.Trp883Arg) in FBN1 was identified in a Chinese patient with MFS. Embryos without the mutation were identified by PGD and resulted in a successful pregnancy."	"NGS panel analysis in 24 ectopia lentis patients; a clinically relevant test with a high diagnostic yield. Several genetic causes of ectopia lentis (EL), with or without systemic features, are known. The differentiation between syndromic and isolated EL is crucial for further treatment, surveillance and counseling of patients and their relatives. Next generation sequencing (NGS) is a powerful tool enabling the simultaneous, highly-sensitive analysis of multiple target genes. The aim of this study was to evaluate the diagnostic yield of our NGS panel in EL patients. Furthermore, we provide an overview of currently described mutations in ADAMTSL4, the main gene involved in isolated EL. A NGS gene panel was analysed in 24 patients with EL. A genetic diagnosis was confirmed in 16 patients (67%). Of these, four (25%) had a heterozygous FBN1 mutation, 12 (75%) were homozygous or compound heterozygous for ADAMTSL4 mutations. The known European ADAMTSL4 founder mutation c.767_786del was most frequently detected. The diagnostic yield of our NGS panel was high. Causative mutations were exclusively identified in ADAMTSL4 and FBN1. With this approach the risk of misdiagnosis or delayed diagnosis can be reduced. The value and clinical implications of establishing a genetic diagnosis in patients with EL is corroborated by the description of two patients with an unexpected underlying genetic condition."	"Marfan syndrome with a homozygous FBN1 splicing mutation. NA"	"Codependence of Bone Morphogenetic Protein Receptor 2 and Transforming Growth Factor-β in Elastic Fiber Assembly and Its Perturbation in Pulmonary Arterial Hypertension. We determined in patients with pulmonary arterial (PA) hypertension (PAH) whether in addition to increased production of elastase by PA smooth muscle cells previously reported, PA elastic fibers are susceptible to degradation because of their abnormal assembly. Fibrillin-1 and elastin are the major components of elastic fibers, and fibrillin-1 binds bone morphogenetic proteins (BMPs) and the large latent complex of transforming growth factor-β1 (TGFβ1). Thus, we considered whether BMPs like TGFβ1 contribute to elastic fiber assembly and whether this process is perturbed in PAH particularly when the BMP receptor, BMPR2, is mutant. We also assessed whether in mice with Bmpr2/1a compound heterozygosity, elastic fibers are susceptible to degradation. In PA smooth muscle cells and adventitial fibroblasts, TGFβ1 increased elastin mRNA, but the elevation in elastin protein was dependent on BMPR2; TGFβ1 and BMP4, via BMPR2, increased extracellular accumulation of fibrillin-1. Both BMP4- and TGFβ1-stimulated elastic fiber assembly was impaired in idiopathic (I) PAH-PA adventitial fibroblast versus control cells, particularly those with hereditary (H) PAH and a BMPR2 mutation. This was related to profound reductions in elastin and fibrillin-1 mRNA. Elastin protein was increased in IPAH PA adventitial fibroblast by TGFβ1 but only minimally so in BMPR2 mutant cells. Fibrillin-1 protein increased only modestly in IPAH or HPAH PA adventitial fibroblasts stimulated with BMP4 or TGFβ1. In Bmpr2/1a heterozygote mice, reduced PA fibrillin-1 was associated with elastic fiber susceptibility to degradation and more severe pulmonary hypertension. Disrupting BMPR2 impairs TGFβ1- and BMP4-mediated elastic fiber assembly and is of pathophysiologic significance in PAH."	"Genotype-phenotype correlations in Marfan syndrome. NA"	"Novel Marfan Syndrome-Associated Mutation in the FBN1 Gene Caused by Parental Mosaicism and Leading to Abnormal Limb Patterning. Marfan syndrome is an autosomal dominant disorder of the connective tissue caused by mutations in the fibrillin-1 (FBN1) gene. Mutations affecting cysteine residues within the epidermal growith factor-like calcium-binding domains (EGF_CA) of FBN1 are associated with Marfan syndrome features and, especially, with ectopia lentis. We report a novel substitution, affecting the first cysteine of an EGF_CA-binding module encoded by exon 63 of FBN1 (C2571Y), in a patient presenting with typical Marfan syndrome features but without ectopia lentis. The involvement of this particular carboxi-terminal domain in bone morphogenetic protein signaling is evidenced by patterning defects in the apendicular skeleton shown by the gain of a phalange at digit 1 and the fusion of some wrist bones. Although the mutation appeared as sporadic, detailed analysis revealed that the asymptomatic father was a gonosomal mosaic, and that aproximately 25% of his body cells carry the mutation. Based on this and previous evidence on the origin of sporadic mutations, we would like to stress the importance of detailed parental genetic screening, so the risk of recurrence may be evaluated."	"MiR-133b inhibits proliferation and invasion of gastric cancer cells by up-regulating FBN1 expression. We aimed to investigate the influence of miR-133b/fibrillin 1 (FBN1) on proliferation and invasion of human gastric cancer (GC) cells. Carcinomatous and adjacent tissues of 43 GC patients, normal gastric mucosa cell line GES-1 and GC cell lines including AGS, HGC-27, KATO III, NCI-N87, SGC-7901, MKN-45 and MGC-803 were collected. Then, the expressions of miR-133b and FBN1 were detected by qRT-PCR. The dual luciferase reporter gene assay was conducted to determine the targeting relationship between miR-133b and FBN1.The protein expression levels of FBN1, β-catenin, Cyclin D1, C-myc and MMP-7 were detected by Western Blot. Furthermore, the cell viability, proliferation, migration and invasion ability were measured by CCK-8, colony formation assay, wound healing assay and Transwell assay, respectively. MiR-133b was down-regulated in GC tissues and cells compared with adjacent tissues and normal cells. Conversely, FBN1 was up-regulated in GC tissues and cells in contrast with adjacent tissues and normal cells. MGC-803 and MKN-45 cell lines were chosen to conduct the following assays. The luciferase reporter assay proved that miR-133b directly targeted FBN1. The overexpression of miR-133b and silence of FBN1 could inhibit the cell proliferative, migratory and invasive abilities of GC cells, while the influence of down-regulated miR-133b expression and up-regulated FBN1 expression were quite the contrary. Compared with NC group, in the miR-133b mimics group, the expression of β-catenin, N-cadherin and Wnt1 of Wnt/β-catenin signal pathway increased, while the expressions of E-cadherin decreased. MiR-133b inhibits the proliferative, migratory and invasive abilities of GC cells by increasing FBN1 expression."	"Gene co-expression network reveals shared modules predictive of stage and grade in serous ovarian cancers. Serous ovarian cancer (SOC) is the most lethal gynecological cancer. Clinical studies have revealed an association between tumor stage and grade and clinical prognosis. Identification of meaningful clusters of co-expressed genes or representative biomarkers related to stage or grade may help to reveal mechanisms of tumorigenesis and cancer development, and aid in predicting SOC patient prognosis. We therefore performed a weighted gene co-expression network analysis (WGCNA) and calculated module-trait correlations based on three public microarray datasets (GSE26193, GSE9891, and TCGA), which included 788 samples and 10402 genes. We detected four modules related to one or more clinical features significantly shared across all modeling datasets, and identified one stage-associated module and one grade-associated module. Our analysis showed that MMP2, COL3A1, COL1A2, FBN1, COL5A1, COL5A2, and AEBP1 are top hub genes related to stage, while CDK1, BUB1, BUB1B, BIRC5, AURKB, CENPA, and CDC20 are top hub genes related to grade. Gene and pathway enrichment analyses of the regulatory networks involving hub genes suggest that extracellular matrix interactions and mitotic signaling pathways are crucial determinants of tumor stage and grade. The relationships between gene expression modules and tumor stage or grade were validated in five independent datasets. These results could potentially be developed into a more objective scoring system to improve prediction of SOC outcomes."	"Next generation sequencing analysis of patients with familial cervical artery dissection. The cause of cervical artery dissection is not well understood. We test the hypothesis that mutations in genes associated with known arterial connective tissue disorders are enriched in patients with familial cervical artery dissection. Patient duos from nine pedigrees with familial cervical artery dissection were analyzed by whole exome sequencing. Single nucleotide variants in a panel of 11 candidate genes (ACTA2, MYH11, FBN1, TGFBR1, TGFBR2, TGFB2, COL3A1, COL4A1, SMAD3, MYLK and SLC2A10) were prioritized according to functionality (stop-loss, nonsense, and missense variants with polyphen-2 score ≥0.95). Variants classified as &quot;benign&quot; or &quot;likely benign&quot; in the ClinVar database were excluded from further analysis. For comparison, non-benign stop-loss, nonsense and missense variants with polyphen-2 score ≥0.95 in the same panel of candidate genes were identified in the European non-Finnish population of the ExAC database (n = 33,370). Non-benign Single nucleotide variants in both affected patients were identified in four of the nine cervical artery dissection families (COL3A1; Gly324Ser, FBN1: Arg2554Trp, COL4A1: Pro116Leu, and TGFBR2: Ala292Thr) yielding an allele frequency of 22.2% (4/18). In the comparison group, 1782 variants were present in 33,370 subjects from the ExAC database (allele frequency: 1782/66,740 = 2.7%; p = 0.0008; odds ratio = 14.2; 95% confidence interval = 3.8-52.9). Cervical artery dissection families showed enrichment for non-benign variants in genes associated with arterial connective tissue disorders. The observation that findings differed across families indicates genetic heterogeneity of familial cervical artery dissection."	"Recapitulating and Correcting Marfan Syndrome in a Cellular Model. Marfan syndrome (MFS) is a connective tissue disorder caused by mutations in FBN1 gene, which encodes a key extracellular matrix protein FIBRILLIN-1. The haplosufficiency of FBN1 has been implicated in pathogenesis of MFS with manifestations primarily in cardiovascular, muscular, and ocular tissues. Due to limitations in animal models to study the late-onset diseases, human pluripotent stem cells (PSCs) offer a homogeneic tool for dissection of cellular and molecular pathogenic mechanism for MFS in vitro. Here, we first derived induced PSCs (iPSCs) from a MFS patient with a FBN1 mutation and corrected the mutation, thereby generating an isogenic &quot;gain-of-function&quot; control cells for the parental MFS iPSCs. Reversely, we knocked out FBN1 in both alleles in a wild-type (WT) human embryonic stem cell (ESC) line, which served as a loss-of-function model for MFS with the WT cells as an isogenic control. Mesenchymal stem cells derived from both FBN1-mutant iPSCs and -ESCs demonstrated reduced osteogenic differentiation and microfibril formation. We further demonstrated that vascular smooth muscle cells derived from FBN1-mutant iPSCs showed less sensitivity to carbachol as demonstrated by contractility and Ca<sup>2+</sup> influx assay, compared to the isogenic controls cells. These findings were further supported by transcriptomic anaylsis of the cells. Therefore, this study based on both gain- and loss-of-function approaches confirmed the pathogenetic role of FBN1 mutations in these MFS-related phenotypic changes."	"Moderately Elevated Homocysteine Does Not Contribute to Thoracic Aortic Aneurysm in Mice. Background: Moderate hyperhomocysteinemia is an attractive target for intervention because it is present in 5-7% of the population and can be reversed by diet. This approach presupposes that hyperhomocysteinemia is directly involved in the disease process. Epidemiologic studies have indicated that moderately elevated homocysteine may contribute to thoracic aortic aneurysm (TAA) dilatation and dissection in humans. In vitro, elevated homocysteine disrupts the structure and function of extracellular matrix components, suggesting that moderate hyperhomocysteinemia may contribute to the development and/or progression of TAA.Objective: We investigated moderately elevated homocysteine in the development and progression of TAA in a mouse model of Marfan syndrome (MFS) and in isogenic wild-type mice. The MFS mouse is a well-described model of a systemic connective tissue disorder characterized by thoracic aortic dilatation, dissection, and rupture. We used this model as a sensitized indicator system to examine the impact of homocysteine on the progression of TAA.Methods: Murine fibrillin 1 gene (Fbn1)<sup>C1039G/+</sup> MFS and C57BL/6J wild-type mice were fed a cobalamin-restricted diet to induce moderate hyperhomocysteinemia from weaning until the age of 32 wk. Homocysteine and methylmalonic acid were measured and aortic root diameter assessed with the use of echocardiography in mice aged 3, 7, 15, and 32 wk.Results: Cobalamin-restricted mice exhibited significantly higher homocysteine (P &lt; 0.0001) and methylmalonic acid (P &lt; 0.0001) in the blood. For both strains, no significant difference in thoracic aortic diameter was observed in mice on the cobalamin-restricted diet compared with those on the control diet.Conclusions:Fbn1<sup>C1039G/+</sup> mice are a well-characterized model of progressive aortic root dilation. Hyperhomocysteinemia in the physiologic range did not induce abnormal aortic growth in wild-type mice and did not accelerate or otherwise influence aortic root growth and pathologic progression in mice with an underlying predisposition for aortic dilatation."	"Comparison of 10 murine models reveals a distinct biomechanical phenotype in thoracic aortic aneurysms. Thoracic aortic aneurysms are life-threatening lesions that afflict young and old individuals alike. They frequently associate with genetic mutations and are characterized by reduced elastic fibre integrity, dysfunctional smooth muscle cells, improperly remodelled collagen and pooled mucoid material. There is a pressing need to understand better the compromised structural integrity of the aorta that results from these genetic mutations and renders the wall vulnerable to dilatation, dissection or rupture. In this paper, we compare the biaxial mechanical properties of the ascending aorta from 10 murine models: wild-type controls, acute elastase-treated, and eight models with genetic mutations affecting extracellular matrix proteins, transmembrane receptors, cytoskeletal proteins, or intracellular signalling molecules. Collectively, our data for these diverse mouse models suggest that reduced mechanical functionality, as indicated by a decreased elastic energy storage capability or reduced distensibility, does not predispose to aneurysms. Rather, despite normal or lower than normal circumferential and axial wall stresses, it appears that intramural cells in the ascending aorta of mice prone to aneurysms are unable to maintain or restore the intrinsic circumferential material stiffness, which may render the wall biomechanically vulnerable to continued dilatation and possible rupture. This finding is consistent with an underlying dysfunctional mechanosensing or mechanoregulation of the extracellular matrix, which normally endows the wall with both appropriate compliance and sufficient strength."	"GABA promotes elastin synthesis and elastin fiber formation in normal human dermal fibroblasts (HDFs). The multiple physiological effects of γ-aminobutyric acid (GABA) as a functional food component have been recently reported. We previously reported that GABA upregulated the expression of type I collagen in human dermal fibroblasts (HDFs), and that oral administration of GABA significantly increased skin elasticity. However, details of the regulatory mechanism still remain unknown. In this study, we further examined the effects of GABA on elastin synthesis and elastin fiber formation in HDFs. Real-time PCR indicated that GABA significantly increased the expression of tropoelastin transcript in a dose-dependent manner. Additionally, the expression of fibrillin-1, fibrillin-2, and fibulin-5/DANCE, but not lysyl oxidase and latent transforming factor-β-binding protein 4, were also significantly increased in HDFs. Finally, immunohistochemical analysis confirmed that treatment with GABA dramatically increased the formation of elastic fibers in HDFs. Taken together, our results showed that GABA improves skin elasticity in HDFs by upregulating elastin synthesis and elastin fiber formation."	"Animal models of atherosclerosis. An ideal animal model of atherosclerosis resembles human anatomy and pathophysiology and has the potential to be used in medical and pharmaceutical research to obtain results that can be extrapolated to human medicine. Moreover, it must be easy to acquire, can be maintained at a reasonable cost, is easy to handle and shares the topography of the lesions with humans. In general, animal models of atherosclerosis are based on accelerated plaque formation due to a cholesterol-rich/Western-type diet, manipulation of genes involved in the cholesterol metabolism, and the introduction of additional risk factors for atherosclerosis. Mouse and rabbit models have been mostly used, followed by pigs and non-human primates. Each of these models has its advantages and limitations. The mouse has become the predominant species to study experimental atherosclerosis because of its rapid reproduction, ease of genetic manipulation and its ability to monitor atherogenesis in a reasonable time frame. Both Apolipoprotein E deficient (ApoE<sup>-/-</sup>) and LDL-receptor (LDLr) knockout mice have been frequently used, but also ApoE/LDLr double-knockout, ApoE3-Leiden and PCSK9-AAV mice are valuable tools in atherosclerosis research. However, a great challenge was the development of a model in which intra-plaque microvessels, haemorrhages, spontaneous atherosclerotic plaque ruptures, myocardial infarction and sudden death occur consistently. These features are present in ApoE<sup>-/-</sup>Fbn1<sup>C1039G+/-</sup> mice, which can be used as a validated model in pre-clinical studies to evaluate novel plaque-stabilizing drugs."	"Relationship between fibrillin-1 genotype and severity of cardiovascular involvement in Marfan syndrome. The effect of FBN1 mutation type on the severity of cardiovascular manifestations in patients with Marfan syndrome (MFS) has been reported with disparity results. This study aims to determine the impact of the FBN1 mutation type on aortic diameters, aortic dilation rates and on cardiovascular events (ie, aortic dissection and cardiovascular mortality). MFS patients with a pathogenic FBN1 mutation followed at two specialised units were included. FBN1 mutations were classified as being dominant negative (DN; incorporation of non-mutated and mutated fibrillin-1 in the extracellular matrix) or having haploinsufficiency (HI; only incorporation of non-mutated fibrillin-1, thus a decreased amount of fibrillin-1 protein). Aortic diameters and the aortic dilation rate at the level of the aortic root, ascending aorta, arch, descending thoracic aorta and abdominal aorta by echocardiography and clinical endpoints comprising dissection and death were compared between HI and DN patients. Two hundred and ninety patients with MFS were included: 113 (39%) with an HI-FBN1 mutation and 177 (61%) with a DN-FBN1. At baseline, patients with HI-FBN1 had a larger aortic root diameter than patients with DN-FBN1 (HI: 39.3±7.2 mm vs DN: 37.3±6.8 mm, p=0.022), with no differences in age or body surface area. After a mean follow-up of 4.9±2.0 years, aortic root and ascending dilation rates were increased in patients with HI-FBN1 (HI: 0.57±0.8 vs DN: 0.28±0.5 mm/year, p=0.004 and HI: 0.59±0.9 vs DN: 0.30±0.7 mm/year, p=0.032, respectively). Furthermore, patients with HI-FBN1 tended to be at increased risk for the combined endpoint of dissection and death compared with patients with DN-FBN1 (HR: 3.3, 95% CI 1.0 to 11.4, p=0.060). Patients with an HI mutation had a more severely affected aortic phenotype, with larger aortic root diameters and a more rapid dilation rate, and tended to have an increased risk of death and dissections compared with patients with a DN mutation."	"Long-term miR-29b suppression reduces aneurysm formation in a Marfan mouse model. Aortic root aneurysm formation and subsequent dissection and/or rupture remain the leading cause of death in patients with Marfan syndrome. Our laboratory has reported that miR-29b participates in aortic root/ascending aorta extracellular matrix remodeling during early aneurysm formation in Fbn1<sup>C1039G/+</sup> Marfan mice. Herein, we sought to determine whether miR-29b suppression can reduce aneurysm formation long-term. Fbn1<sup>C1039G/+</sup> Marfan mice were treated with retro-orbital LNA-anti-miR-29b inhibitor or scrambled-control-miR before aneurysms develop either (1) a single dose prenatally (pregnant Fbn1<sup> C1039G/+ </sup> mice at 14.5 days post-coitum) (n = 8-10, each group) or (2) postnatally every other week, from 2 to 22 weeks of age, and sacrificed at 24 weeks (n = 8-10, each group). To determine if miR-29b blockade was beneficial even after aneurysms develop, a third group of animals were treated every other week, starting at 8 weeks of age, until sacrificed (n = 4-6, each group). miR-29b inhibition resulted in aneurysm reduction, increased elastogenesis, decreased matrix metalloproteinase activity and decreased elastin breakdown. Prenatal LNA-anti-miR-29b inhibitor treatment decreased aneurysm formation up to age 32 weeks, whereas postnatal treatment was effective up to 16 weeks. miR-29b blockade did not slow aortic growth once aneurysms already developed. Systemic miR-29b inhibition significantly reduces aneurysm development long-term in a Marfan mouse model. Drug administration during aortic wall embryologic development appears fundamental. miR-29b suppression could be a potential therapeutic target for reducing aneurysm formation in Marfan syndrome patients."	"A Novel Fibrillin-1 Gene Mutation Leading to Marfan Syndrome in a Korean Girl. Marfan syndrome is an autosomal dominant genetic disorder caused by a connective tissue defect. A nine-year-old girl was referred to our pediatric endocrinology clinic for tall stature. Physical examination revealed a lens dislocation with strabismus, high palate, positive wrist and thumb signs, joint hypermobility, and pes planus. Transthoracic echocardiography revealed dilatation of the aortic root. She was diagnosed with Marfan syndrome based on the revised Ghent diagnostic criteria. Molecular investigation identified a heterozygous c.2810G &gt;A variation in the FBN1 gene in the patient, but not in her parents. To our knowledge, this sequence variant has been reported as a polymorphism (rs113602180), but it is the first report identifying it as the genetic cause of Marfan syndrome. We hypothesize that this de novo novel missense FBN1 mutation disrupts fibrillin-1 function and is probably involved in the development of Marfan syndrome in this patient."	"Fibrillin Microfibrils Keep the Cornea in Shape. NA"	"The Structural Role of Elastic Fibers in the Cornea Investigated Using a Mouse Model for Marfan Syndrome. The presence of fibrillin-rich elastic fibers in the cornea has been overlooked in recent years. The aim of the current study was to elucidate their functional role using a mouse model for Marfan syndrome, defective in fibrillin-1, the major structural component of the microfibril bundles that constitute most of the elastic fibers. Mouse corneas were obtained from animals with a heterozygous fibrillin-1 mutation (Fbn1+/-) and compared to wild type controls. Corneal thickness and radius of curvature were calculated using optical coherence tomography microscopy. Elastic microfibril bundles were quantified and visualized in three-dimensions using serial block face scanning electron microscopy. Transmission electron microscopy was used to analyze stromal ultrastructure and proteoglycan distribution. Center-to-center average interfibrillar spacing was determined using x-ray scattering. Fbn1+/- corneas were significantly thinner than wild types and displayed a higher radius of curvature. In the Fbn1+/- corneas, elastic microfibril bundles were significantly reduced in density and disorganized compared to wild-type controls, in addition to containing a higher average center-to-center collagen interfibrillar spacing in the center of the cornea. No other differences were detected in stromal ultrastructure or proteoglycan distribution between the two groups. Proteoglycan side chains appeared to colocalize with the microfibril bundles. Elastic fibers have an important, multifunctional role in the cornea as highlighted by the differences observed between Fbn1+/- and wild type animals. We contend that the presence of normal quantities of structurally organized elastic fibers are required to maintain the correct geometry of the cornea, which is disrupted in Marfan syndrome."	"Genetic abnormalities in bicuspid aortic valve root phenotype: preliminary results. Genetic defects associated with bicuspid aortopathy have been infrequently analysed. Our goal was to examine the prevalence of rare genetic variants in patients with a bicuspid aortic valve (BAV) with a root phenotype using next-generation sequencing technology. We investigated a total of 124 patients with BAV with a root dilatation phenotype who underwent aortic valve ± proximal aortic surgery at a single institution (BAV database, n = 812) during a 20-year period (1995-2015). Cross-sectional follow-up revealed 63 (51%) patients who were still alive and willing to participate. Systematic follow-up visits were scheduled from March to December 2015 and included aortic imaging as well as peripheral blood sampling for genetic testing. Next-generation sequencing libraries were prepared using a custom-made HaloPlex HS gene panel and included 20 candidate genes known to be associated with aortopathy and BAV. The primary end-point was the prevalence of genetic defects in our study cohort. A total of 63 patients (mean age 46 ± 10 years, 92% men) with BAV root phenotype and mean post-aortic valve replacement follow-up of 10.3 ± 4.9 years were included. Our genetic analysis yielded a wide spectrum of rare, potentially or likely pathogenic variants in 19 (30%) patients, with NOTCH1 variants being the most common ( n = 6). Moreover, deleterious variants were revealed in AXIN1 ( n = 3), NOS3 ( n = 3), ELN ( n = 2), FBN1 ( n = 2) , FN1 ( n = 2) and rarely in other candidate genes. Our preliminary study demonstrates a high prevalence and a wide spectrum of rare genetic variants in patients with the BAV root phenotype, indicative of the potentially congenital origin of associated aortopathy in this specific BAV cohort."	"Mild aerobic exercise blocks elastin fiber fragmentation and aortic dilatation in a mouse model of Marfan syndrome associated aortic aneurysm. Regular low-impact physical activity is generally allowed in patients with Marfan syndrome, a connective tissue disorder caused by heterozygous mutations in the fibrillin-1 gene. However, being above average in height encourages young adults with this syndrome to engage in high-intensity contact sports, which unfortunately increases the risk for aortic aneurysm and rupture, the leading cause of death in Marfan syndrome. In this study, we investigated the effects of voluntary (cage-wheel) or forced (treadmill) aerobic exercise at different intensities on aortic function and structure in a mouse model of Marfan syndrome. Four-week-old Marfan and wild-type mice were subjected to voluntary and forced exercise regimens or sedentary lifestyle for 5 mo. Thoracic aortic tissue was isolated and subjected to structural and functional studies. Our data showed that exercise improved aortic wall structure and function in Marfan mice and that the beneficial effect was biphasic, with an optimum at low intensity exercise (55-65% V̇o2max) and tapering off at a higher intensity of exercise (85% V̇o2max). The mechanism underlying the reduced elastin fragmentation in Marfan mice involved reduction of the expression of matrix metalloproteinases 2 and 9 within the aortic wall. These findings present the first evidence of potential beneficial effects of mild exercise on the structural integrity of the aortic wall in Marfan syndrome associated aneurysm. Our finding that moderate, but not strenuous, exercise protects aortic structure and function in a mouse model of Marfan syndrome could have important implications for the medical care of young Marfan patients.NEW &amp; NOTEWORTHY The present study provides conclusive scientific evidence that daily exercise can improve aortic health in a mouse model of Marfan syndrome associated aortic aneurysm, and it establishes the threshold for the exercise intensity beyond which exercise may not be as protective. These findings establish a platform for a new focus on promoting regular exercise in Marfan patients at an optimum intensity and create a paradigm shift in clinical care of Marfan patients suffering from aortic aneurysm complications."	"[Marfan syndrome in childhood and adolescence]. The Marfan syndrome is a systemic connective tissue disorder with autosomal dominant inheritance. A mutation of the fibrillin-1 gene, a glycoprotein which is the main constituent of the extracellular matrix, is the cause of the disease. The cardinal features involve the skeletal, ocular and cardiovascular systems. The expression of the Marfan syndrome varies from the severe neonatal presentation to the classical manifestations of the child and young adult, but also comprises isolated features. In children, phenotypical manifestations are age dependent. For these reasons, the diagnosis of Marfan syndrome might be lately revealed by its cardiovascular complications. We report the case of 2 siblings: it illustrates the phenotypic variability that might be observed in a same family, the phenotype evolution with age and the diagnosis challenge in childhood. Le syndrome de Marfan est une maladie systémique du tissu conjonctif qui se transmet de façon autosomale dominante. Elle est due à une mutation du gène codant pour la fibrilline-1, une glycoprotéine, constituant principal des microfibrilles de la matrice extra-cellullaire. La maladie touche principalement le squelette, les yeux et le système cardiovasculaire. Son expression phénotypique est variable avec des formes néonatales sévères, un tableau classique chez l’enfant ou le jeune adulte ou des lésions isolées d’un seul organe. Chez l’enfant, le phénotype évolue avec l’âge. Ainsi, le syndrome de Marfan peut n’être reconnu que tardivement, par exemple à l’occasion de manifestations de ses complications cardiovasculaires. Le cas d’un adolescent et de sa jeune sœur que nous rapportons ici illustre la variabilité phénotypique au sein d’une même famille, l’évolution des manifestations cliniques et la difficulté diagnostique chez l’enfant."	"A Novel Murine Model of Marfan Syndrome Accelerates Aortopathy and Cardiomyopathy. Marfan syndrome (MFS) represents a genetic disorder with variable phenotypic expression. The main cardiovascular sequelae of MFS include aortic aneurysm/dissection and cardiomyopathy. Although significant advances in the understanding of transforming growth factor beta signaling have led to promising therapeutic targets for the treatment of aortopathy, clinical studies have tempered this optimism. In particular, these studies suggest additional signaling pathways that play a significant role in disease progression. To date, studies aimed at elucidating molecular mechanisms involved in MFS-induced disease progression have been hampered by the lack of an accelerated disease model. Wild-type B6.129 mice and MFS Fbn1<sup>C1039G/+</sup> mice underwent subcutaneous, cervical osmotic minipump installation with sodium chloride (wild-type mice, n = 39; MFS mice, n = 12) or angiotensin II, 4.5 mg/kg daily (wild-type mice, n = 11; MFS mice; n = 35) for as long as 28 days. Hemodynamic measurements were obtained throughout the experiment. Aortas and hearts were analyzed by transthoracic echocardiography and histopathology study. This accelerated murine MFS model replicates increased mortality from MFS-related maladies (20.0%, 39.3%, and 52.9% at 10, 14, and 28 days, respectively). Aortic diameters in accelerated MFS mice were significantly enlarged at 10 days after minipump implantation and correlated with a higher degree of elastin fragmentation. Accelerated MFS mice also demonstrated dilated cardiomyopathy at 14 days, even without aortic insufficiency, suggesting an intrinsic etiology. A novel in vivo model consisting of subcutaneously delivered angiotensin II in MFS mice reproducibly causes accelerated aortic aneurysm formation and cardiomyopathy. This model allows for better investigation of MFS sequelae by rapid experimental processes."	"Genomic imbalances in syndromic congenital heart disease. To identify pathogenic genomic imbalances in patients presenting congenital heart disease (CHD) with extra cardiac anomalies and exclusion of 22q11.2 deletion syndrome (22q11.2 DS). 78 patients negative for the 22q11.2 deletion, previously screened by fluorescence in situ hybridization (FISH) and/or multiplex ligation probe amplification (MLPA) were tested by chromosomal microarray analysis (CMA). Clinically significant copy number variations (CNVs ≥300kb) were identified in 10% (8/78) of cases. In addition, potentially relevant CNVs were detected in two cases (993kb duplication in 15q21.1 and 706kb duplication in 2p22.3). Genes inside the CNV regions found in this study, such as IRX4, BMPR1A, SORBS2, ID2, ROCK2, E2F6, GATA4, SOX7, SEMAD6D, FBN1, and LTPB1 are known to participate in cardiac development and could be candidate genes for CHD. These data showed that patients presenting CHD with extra cardiac anomalies and exclusion of 22q11.2 DS should be investigated by CMA. The present study emphasizes the possible role of CNVs in CHD."	"Intragenic multi-exon deletion in the FBN1 gene in a child with mildly dilated aortic sinus: a retrotransposal event. Marfan syndrome is an autosomal dominant disorder affecting mainly the skeletal, ocular and cardiovascular systems. Most cases are caused by mutations in the fibrillin-1 gene (FBN1), although there are some reports on deletions involving FBN1 and other additional genes. We report a male patient who was first evaluated at 4 years of age. Echocardiogram showed a mildly dilated aortic sinus. He also had a history of muscular ventral septal defect which was closed spontaneously and trivial mitral regurgitation. Other phenotypic features include frontal bossing, anteverted ears, joint hyperlaxity, learning disability, skin striae, and height and weight in the &gt;97th centile but no other diagnostic findings of MFS and does not fulfill the revised Ghent criteria. Chromosomal microarray analysis showed a deletion of approximately 36.8 kb at 15q21.1, which starts in intron 6 and ends in intron 9 and includes three FBN1 exons. Sequence analysis of the breakpoint region confirmed the deletion and revealed a concomitant insertion of a retrotransposon within the intron 6/intron 9 region. The intragenic deletion of exons 7-9 was likely the result of a retrotransposition event by a MAST2-SVA element mediated by repetitive sequences."	"Extended Multiplexing of Tandem Mass Tags (TMT) Labeling Reveals Age and High Fat Diet Specific Proteome Changes in Mouse Epididymal Adipose Tissue. The lack of high-throughput methods to analyze the adipose tissue protein composition limits our understanding of the protein networks responsible for age and diet related metabolic response. We have developed an approach using multiple-dimension liquid chromatography tandem mass spectrometry and extended multiplexing (24 biological samples) with tandem mass tags (TMT) labeling to analyze proteomes of epididymal adipose tissues isolated from mice fed either low or high fat diet for a short or a long-term, and from mice that aged on low versus high fat diets. The peripheral metabolic health (as measured by body weight, adiposity, plasma fasting glucose, insulin, triglycerides, total cholesterol levels, and glucose and insulin tolerance tests) deteriorated with diet and advancing age, with long-term high fat diet exposure being the worst. In response to short-term high fat diet, 43 proteins representing lipid metabolism (e.g. AACS, ACOX1, ACLY) and red-ox pathways (e.g. CPD2, CYP2E, SOD3) were significantly altered (FDR &lt; 10%). Long-term high fat diet significantly altered 55 proteins associated with immune response (e.g. IGTB2, IFIT3, LGALS1) and rennin angiotensin system (e.g. ENPEP, CMA1, CPA3, ANPEP). Age-related changes on low fat diet significantly altered only 18 proteins representing mainly urea cycle (e.g. OTC, ARG1, CPS1), and amino acid biosynthesis (e.g. GMT, AKR1C6). Surprisingly, high fat diet driven age-related changes culminated with alterations in 155 proteins involving primarily the urea cycle (e.g. ARG1, CPS1), immune response/complement activation (e.g. C3, C4b, C8, C9, CFB, CFH, FGA), extracellular remodeling (e.g. EFEMP1, FBN1, FBN2, LTBP4, FERMT2, ECM1, EMILIN2, ITIH3) and apoptosis (e.g. YAP1, HIP1, NDRG1, PRKCD, MUL1) pathways. Using our adipose tissue tailored approach we have identified both age-related and high fat diet specific proteomic signatures highlighting a pronounced involvement of arginine metabolism in response to advancing age, and branched chain amino acid metabolism in early response to high fat feeding. Data are available via ProteomeXchange with identifier PXD005953."	"Novel FBN1 mutation in a family with inherited Marfan Syndrome: p.Cys2672Arg. NA"	"De-novo Williams-Beuren and inherited Marfan syndromes in a patient with developmental delay and lens dislocation. NA"	"A c.3037G&gt;A mutation in FBN1 gene causing Marfan syndrome with an atypically severe phenotype. Marfan syndrome is a pleiotropic connective tissue disease inherited as anautosomal dominant trait, mostly caused by mutations in the FBN1 gene, which is located onchromosome 15q21.1 and encoding fibrillin 1. We report a case of Marfan syndrome presentingwith severe ocular and systemic manifestations, such as cardiac congenital anomalies.The patient underwent a multidisciplinary approach and his clinical diagnosis was associatedwith a c.3037G&gt;A mutation in the FBN1 gene. Identification of this genetic alteration shouldinstigate a prompt multidisciplinary assessment and monitoring, in order to prevent devastatingconsequences such as cardiac and ocular phenotype. Molecular modeling of the mutationhighlighted the importance of the preservation of the calcium-dependent structure of an epidermal-growth-factor-like domain of fibrillin-1 and consequently the microfibrillar formationprocess. This report aims to highlight the importance of an early clinical and molecular diagnosisand once more, the importance of the multidisciplinary approach of this genetic entity."	"Utility of Genetic Testing in Elite Volleyball Players with Aortic Root Dilation. Basketball and volleyball attract individuals with a characteristic biophysical profile, mimicking features of Marfan syndrome. Consequently, identification of these abnormalities can be lifesaving. To determine how physical examination, echocardiography, and genetic screening can identify elite volleyball players with a previously undiagnosed aortopathy. We have performed cardiac screening on 90 US Volleyball National Team members and identified four individuals with dilated sinuses of Valsalva. This case series reports on three individuals who underwent a comprehensive genetics evaluation, including gene sequencing. Cardiac screening combined with genetic testing can identify previously undiagnosed tall athletes with an aortopathy, in the absence of noncardiac findings of a connective tissue disorder. Subject 1 had a revised Ghent systems (RGS) score of 2 and a normal aortopathy gene panel. Subject 2 had a RGS score of 1 and genetic testing revealed a de novo disease causing mutation in the gene encoding fibrillin-1 (FBN1). Subject 3 had an RGS score of 4.0 and had a normal aortopathy gene panel. Despite variable clinical features of Marfan syndrome, dilated sinuses of Valsalva were found in 4.9% of the athletes. A disease-causing mutation in the FBN1 gene was identified in subject 2, who had the lowest RGS but the largest aortic root measurement. Subjects 1 and 3, with the highest RGS, had a normal aortopathy gene panel. Our findings provide further evidence suggesting that a cardiac evaluation, including a screening echocardiogram, should be performed on all elite tall adult athletes independent of other physical findings. Genetic testing should be considered for athletes with dilated sinuses of Valsalva (male, &gt;4.2 cm; female, &gt;3.4 cm), regardless of other extracardiac findings."	"Unusual life cycle and impact on microfibril assembly of ADAMTS17, a secreted metalloprotease mutated in genetic eye disease. Secreted metalloproteases have diverse roles in the formation, remodeling, and the destruction of extracellular matrix. Recessive mutations in the secreted metalloprotease ADAMTS17 cause ectopia lentis and short stature in humans with Weill-Marchesani-like syndrome and primary open angle glaucoma and ectopia lentis in dogs. Little is known about this protease or its connection to fibrillin microfibrils, whose major component, fibrillin-1, is genetically associated with ectopia lentis and alterations in height. Fibrillin microfibrils form the ocular zonule and are present in the drainage apparatus of the eye. We show that recombinant ADAMTS17 has unique characteristics and an unusual life cycle. It undergoes rapid autocatalytic processing in trans after its secretion from cells. Secretion of ADAMTS17 requires O-fucosylation and its autocatalytic activity does not depend on propeptide processing by furin. ADAMTS17 binds recombinant fibrillin-2 but not fibrillin-1 and does not cleave either. It colocalizes to fibrillin-1 containing microfibrils in cultured fibroblasts and suppresses fibrillin-2 (FBN2) incorporation in microfibrils, in part by transcriptional downregulation of Fbn2 mRNA expression. RNA in situ hybridization detected Adamts17 expression in specific structures in the eye, skeleton and other organs, where it may regulate the fibrillin isoform composition of microfibrils."	"A Case of Neonatal Marfan Syndrome: A Management Conundrum and the Role of a Multidisciplinary Team. Neonatal Marfan syndrome (nMFS) is a rare condition with a poor prognosis. It is genotypically and phenotypically distinct from the typical Marfan syndrome and carries a poorer prognosis. This case report describes the progression of a 14-month-old girl diagnosed with nMFS at 5 months of age. Her diagnosis followed the identification of a fibrillin-1 mutation (FBN1 gene, exon 26, chromosome 15), which is a common locus of nMFS. This patient developed severe cardiac complications resulting in congestive cardiac failure in early life and required major cardiac surgery. Since surgical intervention, our patient is still reliant on a degree of ventilator support, but the patient has gained weight and echocardiography has demonstrated improved left ventricular function and improved tricuspid and mitral valve regurgitation. Therefore, we argue the importance of a cautious multidisciplinary approach to early surgical intervention in cases of nMFS."	"Neonatal Marfan syndrome diagnosed prenatally. NA"	"Proteomic Analysis of the Bovine and Human Ciliary Zonule. The zonule of Zinn (ciliary zonule) is a system of fibers that centers the crystalline lens on the optical axis of the eye. Mutations in zonule components underlie syndromic conditions associated with a broad range of ocular pathologies, including microspherophakia and ectopia lentis. Here, we used HPLC-mass spectrometry to determine the molecular composition of the zonule. Tryptic digests of human and bovine zonular samples were analyzed by HPLC-mass spectrometry. The distribution of selected components was confirmed by immunofluorescence confocal microscopy. In bovine samples, the composition of the equatorial zonule was compared to that of the hyaloid zonule and vitreous humor. The 52 proteins common to the zonules of both species accounted for &gt;95% of the zonular protein. Glycoproteins constituted the main structural components, with two proteins, FBN1 and LTBP2, constituting 70%-80% of the protein. Other abundant components were MFAP2, EMILIN-1, and ADAMTSL-6. Lysyl oxidase-like 1, a crosslinking enzyme implicated in collagen and elastin biogenesis, was detected at significant levels. The equatorial and hyaloid zonular samples were compositionally similar to each other, although the hyaloid sample was relatively enriched in the proteoglycan opticin and the fibrillar collagens COL2A1, COL11A1, COL5A2, and COL5A3. The zonular proteome was surprisingly complex. In addition to structural components, it contained signaling proteins, protease inhibitors, and crosslinking enzymes. The equatorial and hyaloid zonules were similar in composition, but the latter may form part of a composite structure, the hyaloid membrane, that stabilizes the vitreous face."	"Aortopathy in a Mouse Model of Marfan Syndrome Is Not Mediated by Altered Transforming Growth Factor β Signaling. Marfan syndrome (MFS) is caused by mutations in the gene encoding fibrillin-1 (FBN1); however, the mechanisms through which fibrillin-1 deficiency causes MFS-associated aortopathy are uncertain. Recently, attention was focused on the hypothesis that MFS-associated aortopathy is caused by increased transforming growth factor-β (TGF-β) signaling in aortic medial smooth muscle cells (SMC). However, there are many reasons to doubt that TGF-β signaling drives MFS-associated aortopathy. We used a mouse model to test whether SMC TGF-β signaling is perturbed by a fibrillin-1 variant that causes MFS and whether blockade of SMC TGF-β signaling prevents MFS-associated aortopathy. MFS mice (Fbn1<sup>C1039G/+</sup> genotype) were genetically modified to allow postnatal SMC-specific deletion of the type II TGF-β receptor (TBRII; essential for physiologic TGF-β signaling). In young MFS mice with and without superimposed deletion of SMC-TBRII, we measured aortic dimensions, histopathology, activation of aortic SMC TGF-β signaling pathways, and changes in aortic SMC gene expression. Young Fbn1<sup>C1039G/+</sup> mice had ascending aortic dilation and significant disruption of aortic medial architecture. Both aortic dilation and disrupted medial architecture were exacerbated by superimposed deletion of TBRII. TGF-β signaling was unaltered in aortic SMC of young MFS mice; however, SMC-specific deletion of TBRII in Fbn1<sup>C1039G/+</sup> mice significantly decreased activation of SMC TGF-β signaling pathways. In young Fbn1<sup>C1039G/+</sup> mice, aortopathy develops in the absence of detectable alterations in SMC TGF-β signaling. Loss of physiologic SMC TGF-β signaling exacerbates MFS-associated aortopathy. Our data support a protective role for SMC TGF-β signaling during early development of MFS-associated aortopathy."	"Large Family With Marfan Syndrome Demonstrating the Pathogenicity of a &quot;Synonymous&quot; Variant (p.Ile2118=) in the Fibrillin-1 Gene. NA"	"A Clinicoimmunohistopathologic Study of Anetoderma: Is Protruding Type More Advanced in Stage Than Indented Type? Background. The clinical and histopathologic classification of anetoderma are not well characterized. Objective. We aimed to investigate the clinical and histopathologic characteristics of anetoderma and to correlate clinical phenotypes with immunohistopathologic findings. Methods. We retrospectively reviewed the medical records of 30 patients with anetoderma and performed immunohistochemistry for elastin, fibrillin-1, metalloproteinase- (MMP-) 2, MMP-7, MMP-9, and MMP-12, and tissue inhibitor of metalloproteinase- (TIMP-) 1 and TIMP-2. Results. Protruding type (n = 17) had a longer disease duration and more severe loss of elastin, without changes in fibrillin, than indented type (n = 13). MMP-2 and MMP-9 showed significantly higher expressions in the dermis compared with controls (p &lt; 0.05). MMP-7 and MMP-12 showed little expressions in both anetoderma and control tissue. TIMP-1 was highly expressed in anetoderma lesions and controls. TIMP-2 expression was variable. Conclusions. Our findings suggest that protruding type anetoderma may represent a more advanced stage and that MMP-2 and MMP-9 could be responsible for elastic fiber degradation in anetoderma."	"Luteolin-7-diglucuronide attenuates isoproterenol-induced myocardial injury and fibrosis in mice. Myocardial injury and ensuing fibrotic alterations impair normal heart architecture and cause cardiac dysfunction. Oxidative stress has been recognized as a key player in the pathogenesis of cardiac injury and progression of cardiac dysfunction, and promoting fibrosis. In the current study we investigated whether luteolin-7-diglucuronide (L7DG), a naturally occurring antioxidant found in edible plants, could attenuate isoproterenol (ISO)-induced myocardial injury and fibrosis in mice and the underlying mechanisms. Myocardial injury and fibrosis were induced in mice via injection of ISO (5 mg·kg<sup>-1</sup>·d<sup>-1</sup>, ip) for 5 or 10 d. Two treatment regimens (pretreatment and posttreatment) were employed to administer L7DG (5-40 mg·kg<sup>-1</sup>·d<sup>-1</sup>, ip) into the mice. After the mice were euthanized, morphological examinations of heart sections revealed that both L7DG pretreatment and posttreatment regimens significantly attenuated ISO-induced myocardial injury and fibrosis. But the pretreatment regimen caused better protection against ISO-induced myocardial fibrosis than the posttreatment regimen. Furthermore, L7DG pretreatment blocked ISO-stimulated expression of the genes (Cyba, Cybb, Ncf1, Ncf4 and Rac2) encoding the enzymatic subunits of NADPH oxidase, which was the primary source of oxidant production in mammalian cells. Moreover, L7DG pretreatment significantly suppressed ISO-stimulated expression of collagen genes Col1a1, Col1a2, Col3a1, and Col12a1 and non-collagen extracellular matrix genes fibrillin-1, elastin, collagen triple helix repeat containing 1 and connective tissue growth factor. In addition, L7DG pretreatment almost reversed ISO-altered expression of microRNAs that were crosstalking with TGFβ-mediated fibrosis, including miR-29c-3p, miR-29c-5p, miR-30c-3p, miR-30c-5p and miR-21. The current study demonstrated for the first time that L7DG is pharmacologically effective in protecting the heart against developing ISO-induced injury and fibrosis, justifying further evaluation of L7DG as a cardioprotective agent to treat related cardiovascular diseases."	"Establishment of DNA methylation patterns of the Fibrillin1 (FBN1) gene in porcine embryos and tissues. DNA methylation in transcriptional regulatory regions is crucial for gene expression. The DNA methylation status of the edges of CpG islands, called CpG island shore, is involved in tissue/cell-type-specific gene expression. Haploinsufficiency diseases are caused by inheritance of one mutated null allele and are classified as autosomal dominant. However, in the same pedigree, phenotypic variances are observed despite the inheritance of the identical mutated null allele, including Fibrillin1 (FBN1), which is responsible for development of the haploinsufficient Marfan disease. In this study, we examined the relationship between gene expression and DNA methylation patterns of the FBN1 CpG island shore focusing on transcriptionally active hypomethylated alleles (Hypo-alleles). No difference in the DNA methylation level of FBN1 CpG island shore was observed in porcine fetal fibroblast (PFF) and the liver, whereas FBN1 expression was higher in PFF than in the liver. However, Hypo-allele ratio of the FBN1 CpG island shore in PFF was higher than that in the liver, indicating that Hypo-allele ratio of the FBN1 CpG island shore likely correlated with FBN1 expression level. In addition, oocyte-derived DNA hypermethylation in preimplantation embryos was erased until the blastocyst stage, and re-methylation of the FBN1 CpG island shore was observed with prolonged in vitro culture of blastocysts. These results suggest that the establishment of the DNA methylation pattern within the FBN1 CpG island shore occurs after the blastocyst stage, likely during organogenesis. In conclusion, Hypo-allele ratios of the FBN1 CpG island shore correlated with FBN1 expression levels in porcine tissues."	"A novel fibrillin-1 mutation in an egyptian marfan family: A proband showing nephrotic syndrome due to focal segmental glomerulosclerosis. Marfan syndrome (MFS), the founding member of connective tissue disorder, is an autosomal dominant disease; it is caused by a deficiency of the microfibrillar protein fibrillin-1 (FBN1) and characterized by involvement of three main systems; skeletal, ocular, and cardiovascular. More than one thousand mutations in FBN1 gene on chromosome 15 were found to cause MFS. Nephrotic syndrome (NS) had been described in very few patients with MFS being attributed to membranoproliferative glomerulonephritis secondary to infective endocarditis. Focal segmental glomerulosclerosis (FSGS) had been reported in NS in conjunction with MFS without confirming the diagnosis by mutational analysis of FBN1. We hereby present an Egyptian family with MFS documented at the molecular level; it showed a male proband with NS secondary to FSGS, unfortunately, we failed to make any causal link between FBN dysfunction and FSGS. In this context, we review the spectrum of renal involvements occurring in MFS patients."	"Immunohistochemical Profiles of LOXL-1, FBN1, TGF-β1, and COX-2 in Pseudoexfoliation Syndrome. To (i) determine expression patterns of lysyl oxidase-like 1 (LOXL1), fibrillin-1 (FBN1), transforming growth factor beta-1 (TGF-β1), and cyclooxygenase-2 (COX-2) in lens epithelium and anterior lens capsule in pseudoexfoliation (PEX) syndrome and (ii) delineate the roles of these proteins in the etiopathogenesis of PEX. Study participants, all of whom had undergone cataract surgery, comprised 47 patients with and 27 patients without (controls) PEX syndrome. Immunohistochemistry on paraffin sections of lens capsule and lens epithelium was performed. Immunoexpression of LOXL1 and FBN1 on the outer surface of the lens capsule was significantly higher (p &lt; 0.001), and nuclear immunopositivity for LOXL1 was more frequently observed (p = 0.017), in PEX patients compared with control patients. Cytoplasmic expression of LOXL1 and COX-2 was significantly lower (p = 0.015 and p = 0.042, respectively) in PEX patients compared with controls. TGF-β1 exhibited diffuse immunostaining detected in all cell layers in PEX patients (p &lt;0.001). Significant direct correlations of cytoplasmic LOXL1 with FBN1 and TGF-β1, and of COX-2 with FBN1, TGF-β1, and LOXL-1, were observed only in PEX patients. Results of our study provide valuable information vis-à-vis expression and localization of TGF-β1, LOXL1, and FBN1, as well as their associations in the lens epithelium and lens capsule. These data not only advance our knowledge of the etiopathogenesis of PEX syndrome, but also include novel findings, for example, immunostaining patterns of TGF-β1 in PEX syndrome. We suggest that COX-2 plays a role in the pathobiology of PEX syndrome and should be the subject of future investigations."	"Quantitative proteomic profiling of the extracellular matrix of pancreatic islets during the angiogenic switch and insulinoma progression. The angiogenic switch, the time at which a tumor becomes vascularized, is a critical step in tumor progression. Indeed, without blood supply, tumors will fail to grow beyond 1 mm<sup>3</sup> and are unlikely to disseminate. The extracellular matrix (ECM), a major component of the tumor microenvironment, is known to undergo significant changes during angiogenesis and tumor progression. However the extent of these changes remains unknown. In this study, we used quantitative proteomics to profile the composition of the ECM of pancreatic islets in a mouse model of insulinoma characterized by a precisely timed angiogenic switch. Out of the 120 ECM proteins quantified, 35 were detected in significantly different abundance as pancreatic islets progressed from being hyperplastic to angiogenic to insulinomas. Among these, the core ECM proteins, EFEMP1, fibrillin 1, and periostin were found in higher abundance, and decorin, Dmbt1, hemicentin, and Vwa5 in lower abundance. The angiogenic switch being a common feature of solid tumors, we propose that some of the proteins identified represent potential novel anti-angiogenic targets. In addition, we report the characterization of the ECM composition of normal pancreatic islets and propose that this could be of interest for the design of tissue-engineering strategies for treatment of diabetes."	"Loss of Axin2 results in impaired heart valve maturation and subsequent myxomatous valve disease. Myxomatous valve disease (MVD) is the most common aetiology of primary mitral regurgitation. Recent studies suggest that defects in heart valve development can lead to heart valve disease in adults. Wnt/β-catenin signalling is active during heart valve development and has been reported in human MVD. The consequences of increased Wnt/β-catenin signalling due to Axin2 deficiency in postnatal valve remodelling and pathogenesis of MVD were determined. To investigate the role of Wnt/β-catenin signalling, we analysed heart valves from mice deficient in Axin2 (KO), a negative regulator of Wnt/β-catenin signalling. Axin2 KO mice display enlarged mitral and aortic valves (AoV) after birth with increased Wnt/β-catenin signalling and cell proliferation, whereas Sox9 expression and collagen deposition are decreased. At 2 months in Axin2 KO mice, the valve extracellular matrix (ECM) is stratified but distal AoV leaflets remain thickened and develop aortic insufficiency. Progressive myxomatous degeneration is apparent at 4 months with extensive ECM remodelling and focal aggrecan-rich areas, along with increased BMP signalling. Infiltration of inflammatory cells is also observed in Axin2 KO AoV prior to ECM remodelling. Overall, these features are consistent with the progression of human MVD. Finally, Axin2 expression is decreased and Wnt/β-catenin signalling is increased in myxomatous mitral valves in a murine model of Marfan syndrome, supporting the importance of Wnt/β-catenin signalling in the development of MVD. Altogether, these data indicate that Axin2 limits Wnt/β-catenin signalling after birth and allows proper heart valve maturation. Moreover, dysregulation of Wnt/β-catenin signalling resulting from loss of Axin2 leads to progressive MVD."	"Nitric oxide mediates aortic disease in mice deficient in the metalloprotease Adamts1 and in a mouse model of Marfan syndrome. Heritable thoracic aortic aneurysms and dissections (TAAD), including Marfan syndrome (MFS), currently lack a cure, and causative mutations have been identified for only a fraction of affected families. Here we identify the metalloproteinase ADAMTS1 and inducible nitric oxide synthase (NOS2) as therapeutic targets in individuals with TAAD. We show that Adamts1 is a major mediator of vascular homeostasis, given that genetic haploinsufficiency of Adamts1 in mice causes TAAD similar to MFS. Aortic nitric oxide and Nos2 levels were higher in Adamts1-deficient mice and in a mouse model of MFS (hereafter referred to as MFS mice), and Nos2 inactivation protected both types of mice from aortic pathology. Pharmacological inhibition of Nos2 rapidly reversed aortic dilation and medial degeneration in young Adamts1-deficient mice and in young or old MFS mice. Patients with MFS showed elevated NOS2 and decreased ADAMTS1 protein levels in the aorta. These findings uncover a possible causative role for the ADAMTS1-NOS2 axis in human TAAD and warrant evaluation of NOS2 inhibitors for therapy."	"Exome sequencing identifies de novo pathogenic variants in FBN1 and TRPS1 in a patient with a complex connective tissue phenotype. Here we describe a patient who presented with a history of congenital diaphragmatic hernia, inguinal hernia, and recurrent umbilical hernia. She also has joint laxity, hypotonia, and dysmorphic features. A unifying diagnosis was not identified based on her clinical phenotype. As part of her evaluation through the Undiagnosed Diseases Network, trio whole-exome sequencing was performed. Pathogenic variants in FBN1 and TRPS1 were identified as causing two distinct autosomal dominant conditions, each with de novo inheritance. Fibrillin 1 (FBN1) mutations are associated with Marfan syndrome and a spectrum of similar phenotypes. TRPS1 mutations are associated with trichorhinophalangeal syndrome types I and III. Features of both conditions are evident in the patient reported here. Discrepant features of the conditions (e.g., stature) and the young age of the patient may have made a clinical diagnosis more difficult in the absence of exome-wide genetic testing."	"Orthopaedic Aspects of Marfan Syndrome: The Experience of a Referral Center for Diagnosis of Rare Diseases. Marfan syndrome is caused by mutations in the fibrillin-1 gene (FBN1). The most important features affect the cardiovascular system, eyes, and skeleton. The aim of this study was to report the most frequent musculoskeletal alterations observed in 146 patients affected by Marfan syndrome. Fifty-four patients (37%) underwent cardiac surgery and 11 of them received emergent surgery for acute aortic dissection. Ectopia lentis was found in 68 patients (47%) whereas myopia above 3D occurred in 46 patients (32%). Musculoskeletal anomalies were observed in all patients with Marfan syndrome. In 88 patients (60.2%), the associated &quot;wrist and thumb sign&quot; was present; in 58 patients (39.7%), pectus carinatum deformity; in 44 patients (30.1%), pectus excavatum; in 49 patients (33.5%), severe flatfoot; in 31 patients (21.2%), hindfoot deformity; in 54 patients (36.9%), reduced US/LS ratio or increased arm span-height ratio; in 37 patients (25.3%), scoliosis or thoracolumbar kyphosis; in 22 patients (15%), reduced elbow extension (170° or less). Acetabular protrusion was ascertained on radiographs in 27 patients (18.4%). Orthopaedic aspects of the disease are very important for an early diagnosis; however, we have not observed definite correlations between the extent of orthopaedic involvement and aortic complications."	"Exome sequencing in children of women with skewed X-inactivation identifies atypical cases and complex phenotypes. More than 100 X-linked intellectual disability (X-LID) genes have been identified to be involved in 10-15% of intellectual disability (ID). To identify novel possible candidates, we selected 18 families with a male proband affected by isolated or syndromic ID. Pedigree and/or clinical presentation suggested an X-LID disorder. After exclusion of known genetic diseases, we identified seven cases whose mother showed a skewed X-inactivation (&gt;80%) that underwent whole exome sequencing (WES, 50X average depth). WES allowed to solve the genetic basis in four cases, two of which (Coffin-Lowry syndrome, RPS6K3 gene; ATRX syndrome, ATRX gene) had been missed by previous clinical/genetics tests. One further ATRX case showed a complex phenotype including pontocerebellar atrophy (PCA), possibly associated to an unidentified PCA gene mutation. In a case with suspected Lujan-Fryns syndrome, a c.649C&gt;T (p.Pro217Ser) MECP2 missense change was identified, likely explaining the neurological impairment, but not the marfanoid features, which were possibly associated to the p.Thr1020Ala variant in fibrillin 1. Finally, a c.707T&gt;G variant (p.Phe236Cys) in the DMD gene was identified in a patient retrospectively recognized to be affected by Becker muscular dystrophy (BMD, OMIM 300376). Overall, our data show that WES may give hints to solve complex ID phenotypes with a likely X-linked transmission, and that a significant proportion of these orphan conditions might result from concomitant mutations affecting different clinically associated genes."	"miR-29c is implicated in the cardioprotective activity of Panax notoginseng saponins against isoproterenol-induced myocardial fibrogenesis. Panax notoginseng (Burkill) F.H. Chen (Araliaceae) has a long history of clinical application in China for the treatment of cardiovascular diseases. Panax notoginseng saponins (PNS) have been proven to be the major cardioprotective substances of Panax notoginseng (Burkill) F.H. Chen (Araliaceae). The current study further investigated the molecular mechanisms associated with the cardioprotective effect of PNS. C57BL/6J mice were subject to isoproterenol (ISO)-induced myocardial injury in the absence or presence of PNS treatment. Histological, immunohistochemical and molecular biological approaches were taken to assess the effects of PNS treatment on ISO-induced myocardial injury and ensuing fibrogenesis. PNS treatment significantly attenuated ISO-induced myocardial injury and fibrosis. The expression of an anti-fibrotic microRNA, miR-29c, was significantly decreased in ISO-challenged mouse hearts. In contrast, PNS treatment resulted in increased cardiac expression of miR-29c. The expression of miR-29c target genes including Collagen (Col) 1a1, Col1a2, Col3a1 and Col5a1, fibrillin 1 (Fbn1) as well as TGFβ1 was significantly increased by ISO, which exhibited decreased expression by PNS intervention. Our results demonstrate for the first time that the cardioprotective effects of PNS could in part implicate increased expression of miR-29c in the heart, which may help increase the understanding of the pharmacological activities of PNS in treating cardiovascular disorders."	"Inactivation of bone morphogenetic protein 1 (Bmp1) and tolloid-like 1 (Tll1) in cells expressing type I collagen leads to dental and periodontal defects in mice. Bone morphogenetic protein 1 (BMP1) and tolloid-like 1 (TLL1) belong to the BMP1/tolloid-like proteinase family, which cleaves secretory proteins. The constitutive deletion of the Bmp1 or Tll1 genes causes perinatal or embryonic lethality in mice. In this study, we first studied the β-galactosidase activity in mice in which an IRES-lacZ-Neo cassette was inserted in the intron of either the Bmp1 or the Tll1 gene; the β-galactosidase activities were used to reflect the expression of endogenous Bmp1 and Tll1, respectively. Our X-gal staining results showed that the odontoblasts in the tooth and cells in the periodontal ligament express both Bmp1 and Tll1. We then created Bmp1 <sup>flox/flox</sup> and Tll1 <sup>flox/flox</sup> mice by removing the IRES-lacZ-Neo cassette. By breeding 2.3 kb Col1a1-Cre mice with the Bmp1 <sup>flox/flox</sup> and Tll1 <sup>flox/flox</sup> mice, we further generated Col1a1-Cre;Bmp1 <sup>flox/flox</sup> ;Tll1 <sup>flox/flox</sup> mice in which both Bmp1 and Tll1 were inactivated in the Type I collagen-expressing cells. We employed X-ray radiography, histology and immunohistochemistry approaches to characterize the Col1a1-Cre;Bmp1 <sup>flox/flox</sup> ;Tll1 <sup>flox/flox</sup> mice. Our results showed that the molars of the Col1a1-Cre;Bmp1 <sup>flox/flox</sup> ;Tll1 <sup>flox/flox</sup> mice had wider predentin, thinner dentin and larger pulp chambers than those of the normal controls. The dentinal tubules of the molars in the Col1a1-Cre;Bmp1 <sup>flox/flox</sup> ;Tll1 <sup>flox/flox</sup> mice appeared disorganized. The level of dentin sialophosphoprotein in the molars of the 6-week-old Col1a1-Cre;Bmp1 <sup>flox/flox</sup> ;Tll1 <sup>flox/flox</sup> mice was lower than in the normal controls. The periodontal ligaments of the Col1a1-Cre;Bmp1 <sup>flox/flox</sup> ;Tll1 <sup>flox/flox</sup> mice were disorganized and had less fibrillin-1. Our findings indicate that the proteinases encoded by Bmp1 and Tll1 genes play essential roles in the development and maintenance of mouse dentin and periodontal ligaments."	"Raman microspectroscopy as a diagnostic tool for the non-invasive analysis of fibrillin-1 deficiency in the skin and in the in vitro skin models. Fibrillin microfibrils and elastic fibers are critical determinants of elastic tissues where they define as tissue-specific architectures vital mechanical properties such as pliability and elastic recoil. Fibrillin microfibrils also facilitate elastic fiber formation and support the association of epithelial cells with the interstitial matrix. Mutations in fibrillin-1 (FBN1) are causative for the Marfan syndrome, a congenital multisystem disorder characterized by progressive deterioration of the fibrillin microfibril/ elastic fiber architecture in the cardiovascular, musculoskeletal, ocular, and dermal system. In this study, we utilized Raman microspectroscopy in combination with principal component analysis (PCA) to analyze the molecular consequences of fibrillin-1 deficiency in skin of a mouse model (GT8) of Marfan syndrome. In addition, full-thickness skin models incorporating murine wild-type and Fbn1<sup>GT8/GT8</sup> fibroblasts as well as human HaCaT keratinocytes were generated and analyzed. Skin models containing GT8 fibroblasts showed an altered epidermal morphology when compared to wild-type models indicating a new role for fibrillin-1 in dermal-epidermal crosstalk. Obtained Raman spectra together with PCA allowed to discriminate between healthy and deficient microfibrillar networks in murine dermis and skin models. Interestingly, results obtained from GT8 dermis and skin models showed similar alterations in molecular signatures triggered by fibrillin-1 deficiency such as amide III vibrations and decreased levels of glycan vibrations. Overall, this study indicates that Raman microspectroscopy has the potential to analyze subtle changes in fibrillin-1 microfibrils and elastic fiber networks. Therefore Raman microspectroscopy may be utilized as a non-invasive and sensitive diagnostic tool to identify connective tissue disorders and monitor their disease progression. Mutations in building blocks of the fibrillin microfibril/ elastic fiber network manifest in disease conditions such as aneurysms, emphysema or lax skin. Understanding how structural changes induced by fibrillin-1 mutation impact the architecture of fibrillin microfibrils, which then translates into an altered activation state of targeted growth factors, represents a huge challenge in elucidating the genotype-phenotype correlations in connective tissue disorders such as Marfan syndrome. This study shows that Raman microspectroscopy is able to reveal structural changes in fibrillin-1 microfibrils and elastic fiber networks and to discriminate between normal and diseased networks in vivo and in vitro. Therefore Raman microspectroscopy may be utilized as a non-invasive and sensitive diagnostic tool to identify connective tissue disorders and monitor their disease progression."	"Three cases of Japanese acromicric/geleophysic dysplasia with FBN1 mutations: a comparison of clinical and radiological features. Acromicric dysplasia (AD) and geleophysic dysplasia (GD) are rare skeletal dysplasias characterized by short stature, acromelia, joint contracture, hepatomegaly, hoarseness and respiratory distress. Compared with GD, AD presents with milder clinical and radiological features. Radiological findings of AD and GD consist of shortened tubular bones of the hands and feet, and deformed capital femoral epiphyses. The genetic cause of AD and some cases of GD was shown to be mutations in the transforming growth factor (TGF) β-binding protein-like domain 5 of the fibrillin 1 gene (FBN1), which is also mutated in Marfan syndrome. In the present study, we report and compare the highly varied clinical and radiological features of three Japanese AD/GD children. Our patients, harboring FBN1 mutations p.Tyr1699Cys, p.Ser1750Arg, and p.Gly1762Ser, shared common clinical symptoms such as severe short stature, acromelia and hepatomegaly. Short tubular bones of hands and deformities of femur heads are common radiological features of our patients."	"A planar model of the vessel wall from cellularized-collagen scaffolds: focus on cell-matrix interactions in mono-, bi- and tri-culture models. The acquisition of new thorough knowledge on the interactions existing between vascular cells would represent a step forward in the engineering of vascular tissues. In this light, herein we designed a physiological-like tri-culture in vitro vascular wall model using a planar cellularized collagen gel as the scaffold. The model can be obtained in 24 h and features multi-layered hierarchical organization composed of a fibroblast-containing adventitia-like layer, a media-like layer populated by smooth muscle cells and an intima-like endothelial cell monolayer. After 7 days of static culture, the compaction of the collagen matrix by the vascular cells was achieved, and the deposition of the vascular extracellular matrix components fibronectin, fibrillin-1 and tropoelastin was observed. The blood-compatible functionality of the endothelial cell monolayer was demonstrated by a blood clotting assay: after 7 days of maturation, clotting was prevented on the endothelialized constructs (more than 80% free hemoglobin maintained after 60 min of blood contact) but not at all on non-endothelialized ones (less than 20% free hemoglobin). In addition, western blotting results suggested that in the tri-culture model the loss of smooth muscle cell phenotype was delayed compared to what was observed in the mono-culture model, finally resulting in a behaviour more similar to the in vivo conditions. Overall, our findings indicate that this in vitro model has the potential to be used as an advanced system to examine vascular cell behavioural interactions, as well as for drug testing and the investigation of physiological and pathological processes."	"Atypical Neonatal Marfan Syndrome with p.Glu1073Lys Mutation of FBN1: the First Case in Korea. Neonatal Marfan syndrome (nMFS) is considered to be on the most severe end of the spectrum of type I fibrillinopathies. The common features of nMFS include ascending aortic dilatation, severe mitral and/or tricuspid valve insufficiency, ectopia lentis, arachnodactyly, joint contractures, crumpled ear, loose skin, and pulmonary emphysema.We describe a newborn male diagnosed with nMFS. He presented several atypical features, such as diaphragmatic eventration, severe hydronephrosis with hydroureter, and dilated cisterna magna. Molecular analysis revealed a missense mutation at nucleotide 3217 (c.3217G&gt;A) in exon 26 of the fibrillin-1 (FBN1) gene, resulting in the substitution of a glutamate for a lysine at codon 1073 (E1073K) in the 12th calcium binding epidermal growth factor-like domain of the FBN1 protein. Here we report a rare case of Nmfs with several combined atypical features, such as diaphragmatic eventration, severe hydronephrosis with hydroureter, and dilated cisterna magna. Our report is the first atypical nMFS case with p.Glu1073Lys mutation of FBN1 in Korea and may help clinicians with the diagnosis and follow-up of atypical nMFS."	"Evaluating the quality of Marfan genotype-phenotype correlations in existing FBN1 databases. Genetic FBN1 testing is pivotal for confirming the clinical diagnosis of Marfan syndrome. In an effort to evaluate variant causality, FBN1 databases are often used. We evaluated the current databases regarding FBN1 variants and validated associated phenotype records with a new Marfan syndrome geno-phenotyping tool called the Marfan score. We evaluated four databases (UMD-FBN1, ClinVar, the Human Gene Mutation Database (HGMD), and Uniprot) containing 2,250 FBN1 variants supported by 4,904 records presented in 307 references. The Marfan score calculated for phenotype data from the records quantified variant associations with Marfan syndrome phenotype. We calculated a Marfan score for 1,283 variants, of which we confirmed the database diagnosis of Marfan syndrome in 77.1%. This represented only 35.8% of the total registered variants; 18.5-33.3% (UMD-FBN1 versus HGMD) of variants associated with Marfan syndrome in the databases could not be confirmed by the recorded phenotype. FBN1 databases can be imprecise and incomplete. Data should be used with caution when evaluating FBN1 variants. At present, the UMD-FBN1 database seems to be the biggest and best curated; therefore, it is the most comprehensive database. However, the need for better genotype-phenotype curated databases is evident, and we hereby present such a database.Genet Med advance online publication 01 December 2016."	"Cardiovascular Management of Adults with Marfan Syndrome. Marfan syndrome (MFS) is a disease in which connective tissue becomes weak secondary to fibrillin-1 mutations, resulting in aortic dilatation, aneurysm formation, aortic dissection, aortic regurgitation and mitral valve prolapse. This autosomal dominantly inherited condition, which was first reported in 1895 and was more fully described in 1931, is characterised by abnormal Fibrillin-1 protein (FBN1) (discovered in 1990), which is encoded by the FBN1 gene (reported in 1991). In the 1970s, the life expectancy of people with MFS was 40-50 years, mainly due to increased risk of aortic dissection or heart failure from aortic or mitral regurgitation. However, due to advances in medical and surgical therapy, life expectancy has improved dramatically and is now comparable to that of the general population. We discuss the cardiac manifestations of MFS, the incidence of arrhythmia in this population, the standard of medical care for arrhythmia and valve insufficiency, and a new use of preventive medication to preserve the integrity of the aortic wall in patients with MFS."	"An iPSC-derived vascular model of Marfan syndrome identifies key mediators of smooth muscle cell death. Marfan syndrome (MFS) is a heritable connective tissue disorder caused by mutations in FBN1, which encodes the extracellular matrix protein fibrillin-1. To investigate the pathogenesis of aortic aneurysms in MFS, we generated a vascular model derived from human induced pluripotent stem cells (MFS-hiPSCs). Our MFS-hiPSC-derived smooth muscle cells (SMCs) recapitulated the pathology seen in Marfan aortas, including defects in fibrillin-1 accumulation, extracellular matrix degradation, transforming growth factor-β (TGF-β) signaling, contraction and apoptosis; abnormalities were corrected by CRISPR-based editing of the FBN1 mutation. TGF-β inhibition rescued abnormalities in fibrillin-1 accumulation and matrix metalloproteinase expression. However, only the noncanonical p38 pathway regulated SMC apoptosis, a pathological mechanism also governed by Krüppel-like factor 4 (KLF4). This model has enabled us to dissect the molecular mechanisms of MFS, identify novel targets for treatment (such as p38 and KLF4) and provided an innovative human platform for the testing of new drugs."	"Reduction and fragmentation of elastic fibers in the skin of obese mice is associated with altered mRNA expression levels of fibrillin-1 and neprilysin. Our previous research suggested that obesity induces structural fragility in the skin. Elastic fibers impart strength and elasticity. In this study, we determined whether elastic fibers decrease in the skin of obese mice. To confirm alterations in elastic fiber content due to obesity, we used spontaneously obese model mice (TSOD) and control mice (TSNO). Furthermore, to evaluate the elastin structure and gene expression dependent on the severity of obesity, an obesity-enhanced mouse model was developed by feeding a high fat diet to TSOD (TSOD-HF). Back skin samples were stained with hematoxylin and eosin and Elastica van Gieson for microscopic examination, and the samples were stained for immunohistochemical analysis of neprilysin. Gene expression levels were determined using a real-time PCR system. The abundance of elastic fibers beneath the epidermis was remarkably reduced and fragmented in TSOD as compared with TSNO. Fibrillin-1 mRNA levels in TSOD were significantly suppressed compared with those in TSNO, whereas neprilysin mRNA levels and immunohistochemical expression in TSOD were significantly increased, as compared with those in TSNO. The reduction of elastic fibers was enhanced and the expression levels of elastic fiber formed factors were significantly suppressed in TSOD-HF, as compared with those in the TSOD. The abundance of elastic fibers was reduced and fragmented in obesity, suggesting that the reduction in elastic fibers is initially caused by increased neprilysin and decreased fibrillin-1 expression, which may inhibit formation and stabilization of elastic fibers, resulting in skin fragility in obesity."	"Diagnostic value of exome and whole genome sequencing in craniosynostosis. Craniosynostosis, the premature fusion of one or more cranial sutures, occurs in ∼1 in 2250 births, either in isolation or as part of a syndrome. Mutations in at least 57 genes have been associated with craniosynostosis, but only a minority of these are included in routine laboratory genetic testing. We used exome or whole genome sequencing to seek a genetic cause in a cohort of 40 subjects with craniosynostosis, selected by clinical or molecular geneticists as being high-priority cases, and in whom prior clinically driven genetic testing had been negative. We identified likely associated mutations in 15 patients (37.5%), involving 14 different genes. All genes were mutated in single families, except for IL11RA (two families). We classified the other positive diagnoses as follows: commonly mutated craniosynostosis genes with atypical presentation (EFNB1, TWIST1); other core craniosynostosis genes (CDC45, MSX2, ZIC1); genes for which mutations are only rarely associated with craniosynostosis (FBN1, HUWE1, KRAS, STAT3); and known disease genes for which a causal relationship with craniosynostosis is currently unknown (AHDC1, NTRK2). In two further families, likely novel disease genes are currently undergoing functional validation. In 5 of the 15 positive cases, the (previously unanticipated) molecular diagnosis had immediate, actionable consequences for either genetic or medical management (mutations in EFNB1, FBN1, KRAS, NTRK2, STAT3). This substantial genetic heterogeneity, and the multiple actionable mutations identified, emphasises the benefits of exome/whole genome sequencing to identify causal mutations in craniosynostosis cases for which routine clinical testing has yielded negative results."	"Altered Smooth Muscle Cell Force Generation as a Driver of Thoracic Aortic Aneurysms and Dissections. The importance of maintaining contractile function in aortic smooth muscle cells (SMCs) is evident by the fact that heterozygous mutations in the major structural proteins or kinases controlling contraction lead to the formation of aneurysms of the ascending thoracic aorta that predispose to life-threatening aortic dissections. Force generation by SMC requires ATP-dependent cyclic interactions between filaments composed of SMC-specific isoforms of α-actin (encoded by ACTA2) and myosin heavy chain (MYH11). ACTA2 and MYH11 mutations are predicted or have been shown to disrupt this cyclic interaction predispose to thoracic aortic disease. Movement of the myosin motor domain is controlled by phosphorylation of the regulatory light chain on the myosin filament, and loss-of-function mutations in the dedicated kinase for this phosphorylation, myosin light chain kinase (MYLK) also predispose to thoracic aortic disease. Finally, a mutation in the cGMP-activated protein kinase (PRKG1) results in constitutive activation of the kinase in the absence of cGMP, thus driving SMC relaxation in part through increased dephosphorylation of the regulatory light chain and predisposes to thoracic aortic disease. Furthermore, SMCs cannot generate force without connections to the extracellular matrix through focal adhesions, and mutations in the major protein in the extracellular matrix, fibrillin-1, linking SMCs to the matrix also cause thoracic aortic disease in individuals with Marfan syndrome. Thus, disruption of the ability of the aortic SMC to generate force through the elastin-contractile units in response to pulsatile blood flow may be a primary driver for thoracic aortic aneurysms and dissections."	"Acromicric Dysplasia Caused by a Novel Heterozygous Mutation of FBN1 and Effects of Growth Hormone Treatment. NA"	"Clinical Characteristics of Marfan Syndrome in Korea. Marfan syndrome (MFS) is a connective tissue disorder with autosomal dominant inheritance and a highly variable clinical spectrum. However, there are limited data available on the clinical features of Korean patients with MFS. The aim of the present study was to describe the clinical characteristics and outcomes of Korean patients with MFS. We included all patients who were diagnosed with MFS between January 1995 and May 2015 at a single tertiary medical center. Patients with an MFS-related disorder including MASS phenotype (myopia, mitral valve prolapse, borderline and non-progressive aortic root dilatation, skeletal findings, and striae), mitral valve prolapse syndrome, and ectopia lentis syndrome were excluded. A total of 343 Korean patients aged ≥15 years who satisfied the revised Ghent nosology were included. The mean patient age at diagnosis was 35.9±12.6 years and 172 (50.1%) patients were male. Median follow-up duration was 52.8 months. A total of 303 patients (88.6%) had aortic root dilatation with Z score ≥2 or aortic root dissection. Ectopia lentis was relatively less common (163 patients, 55.1%) and systemic score ≥7 was found in 217 patients (73.8%). Among 219 probands, a family history of MFS was present in 97 patients (44.5%) and sporadic cases in 121 patients (55.5%). Among the 157 probands who underwent genetic analysis, 141 (89.8%) had an FBN1 mutation associated with aortic root aneurysm/dissection. Aortic dissection (AD) or intramural hematoma (IMH) was identified in 110 patients (32.1%). Among the 221 patients without AD or IMH, descending aortic aneurysms were identified in 19 patients (8.6%). Two hundred thirteen patients (62%) underwent cardiovascular surgery of any type. Eight patients died during follow-up. We described the clinical characteristics and outcomes of Korean MFS patients. Cardiovascular manifestations were commonly detected and FBN1 mutation was present in approximately 90% of patients. In contrast, ectopia lentis was identified in approximately half of patients. Our findings will be informative for the evaluation of patients with MFS."	"Aortic and Cardiac Structure and Function Using High-Resolution Echocardiography and Optical Coherence Tomography in a Mouse Model of Marfan Syndrome. Marfan syndrome (MFS) is an autosomal-dominant disorder of connective tissue caused by mutations in the fibrillin-1 (FBN1) gene. Mortality is often due to aortic dissection and rupture. We investigated the structural and functional properties of the heart and aorta in a [Fbn1C1039G/+] MFS mouse using high-resolution ultrasound (echo) and optical coherence tomography (OCT). Echo was performed on 6- and 12-month old wild type (WT) and MFS mice (n = 8). In vivo pulse wave velocity (PWV), aortic root diameter, ejection fraction, stroke volume, left ventricular (LV) wall thickness, LV mass and mitral valve early and atrial velocities (E/A) ratio were measured by high resolution echocardiography. OCT was performed on 12-month old WT and MFS fixed mouse hearts to measure ventricular volume and mass. The PWV was significantly increased in 6-mo MFS vs. WT (366.6 ± 19.9 vs. 205.2 ± 18.1 cm/s; p = 0.003) and 12-mo MFS vs. WT (459.5 ± 42.3 vs. 205.3 ± 30.3 cm/s; p&lt; 0.0001). PWV increased with age in MFS mice only. We also found a significantly enlarged aortic root and decreased E/A ratio in MFS mice compared with WT for both age groups. The [Fbn1C1039G/+] mouse model of MFS replicates many of the anomalies of Marfan patients including significant aortic dilation, central aortic stiffness, LV systolic and diastolic dysfunction. This is the first demonstration of the direct measurement in vivo of pulse wave velocity non-invasively in the aortic arch of MFS mice, a robust measure of aortic stiffness and a critical clinical parameter for the assessment of pathology in the Marfan syndrome."	"Fibrillins in Tendon. Tendons among connective tissue, mainly collagen, contain also elastic fibers (EF) made of fibrillin 1, fibrillin 2 and elastin that are broadly distributed in tendons and represent 1-2% of the dried mass of the tendon. Only in the last years, studies on structure and function of EF in tendons have been performed. Aim of this review is to revise data on the organization of EF in tendons, in particular fibrillin structure and function, and on the clinical manifestations associated to alterations of EF in tendons. Indeed, microfibrils may contribute to tendon mechanics; therefore, their alterations may cause joint hypermobility and contractures which have been found to be clinical features in patients with Marfan syndrome (MFS) and Beals syndrome. The two diseases are caused by mutations in genes FBN1 and FBN2 encoding fibrillin 1 and fibrillin 2, respectively."	"A novel set-up for the ex vivo analysis of mechanical properties of mouse aortic segments stretched at physiological pressure and frequency. Cyclic stretch is known to alter intracellular pathways involved in vessel tone regulation. We developed a novel set-up that allows straightforward characterization of the biomechanical properties of the mouse aorta while stretched at a physiological heart rate (600 beats min<sup>-1</sup> ). Active vessel tone was shown to have surprisingly large effects on isobaric stiffness. The effect of structural vessel wall alterations was confirmed using a genetic mouse model. This set-up will contribute to a better understanding of how active vessel wall components and mechanical stimuli such as stretch frequency and amplitude regulate aortic mechanics. Cyclic stretch is a major contributor to vascular function. However, isolated mouse aortas are frequently studied at low stretch frequency or even in isometric conditions. Pacing experiments in rodents and humans show that arterial compliance is stretch frequency dependent. The Rodent Oscillatory Tension Set-up to study Arterial Compliance is an in-house developed organ bath set-up that clamps aortic segments to imposed preloads at physiological rates up to 600 beats min<sup>-1</sup> . The technique enables us to derive pressure-diameter loops and assess biomechanical properties of the segment. To validate the applicability of this set-up we aimed to confirm the effects of distension pressure and vascular smooth muscle tone on arterial stiffness. At physiological stretch frequency (10 Hz), the Peterson modulus (EP ; 293 (10) mmHg) for wild-type mouse aorta increased 22% upon a rise in pressure from 80-120 mmHg to 100-140 mmHg, while, at normal pressure, EP increased 80% upon maximal contraction of the vascular smooth muscle cells. We further validated the method using a mouse model with a mutation in the fibrillin-1 gene and an endothelial nitric oxide synthase knock-out model. Both models are known to have increased arterial stiffness, and this was confirmed using the set-up. To our knowledge, this is the first set-up that facilitates the study of biomechanical properties of mouse aortic segments at physiological stretch frequency and pressure. We believe that this set-up can contribute to a better understanding of how cyclic stretch frequency, amplitude and active vessel wall components influence arterial stiffening."	"Heat delays skin wound healing in mice. In vivo studies have shown that the combination of infrared radiation (IR) and visible light (VIS) is responsible for the activation of metaloproteinases, causing matrix degradation and damage to healthy skin. However, the role of heat originating from the VIS spectrum on wound healing remains poorly understood. Our objective was to investigate the macroscopic, microscopic and biochemical effects of heat induced by visible light on cutaneous wound healing in mice. Male mice were anesthetized, subjected to a cutaneous excisional wound and divided into two groups ( n = 10/group) exposed to 23℃ or 43℃ in a thermal chamber for 30 min every other day, for 13 days. On day 14, the animals were sacrificed, and their lesions were processed for histochemistry, immunohistochemistry and protein expression analysis. The wound area was 42% greater 11 days ( p &lt; 0.01) and 29% greater 14 days ( p &lt; 0.001) after wounding in the 43℃ group than in the 23℃ group. The 43℃ group presented a lower (17%) percentage of reepithelialized wounds ( p &lt; 0.001) 14 days after wounding. The length of the epidermal gap was greater in the 43℃ group ( p &lt; 0.01). The volume density of myofibroblasts and the number of F4/80-positive macrophages was greater in the 43℃ group ( p &lt; 0.05). The 43℃ group showed increased protein expression of type III collagen ( p &lt; 0.001), decreased protein expression of type I collagen ( p &lt; 0.05), increased MMP-1 expression ( p &lt; 0.05), and decreased MMP-2 activity ( p &lt; 0.001). The protein expression of fibrillin-1 ( p &lt; 0.001), MMP-12 ( p &lt; 0.05), TGF-β 1/2/3 ( p &lt; 0.01) and ERK activation ( p &lt; 0.05) was increased in the 43℃ group. Our results suggest that heat delays the stages of wound healing in mice."	"Targeted next-generation sequencing makes new molecular diagnoses and expands genotype-phenotype relationship in Ehlers-Danlos syndrome. Ehlers-Danlos syndrome (EDS) comprises a group of overlapping hereditary disorders of connective tissue with significant morbidity and mortality, including major vascular complications. We sought to identify the diagnostic utility of a next-generation sequencing (NGS) panel in a mixed EDS cohort. We developed and applied PCR-based NGS assays for targeted, unbiased sequencing of 12 collagen and aortopathy genes to a cohort of 177 unrelated EDS patients. Variants were scored blind to previous genetic testing and then compared with results of previous Sanger sequencing. Twenty-eight pathogenic variants in COL5A1/2, COL3A1, FBN1, and COL1A1 and four likely pathogenic variants in COL1A1, TGFBR1/2, and SMAD3 were identified by the NGS assays. These included all previously detected single-nucleotide and other short pathogenic variants in these genes, and seven newly detected pathogenic or likely pathogenic variants leading to clinically significant diagnostic revisions. Twenty-two variants of uncertain significance were identified, seven of which were in aortopathy genes and required clinical follow-up. Unbiased NGS-based sequencing made new molecular diagnoses outside the expected EDS genotype-phenotype relationship and identified previously undetected clinically actionable variants in aortopathy susceptibility genes. These data may be of value in guiding future clinical pathways for genetic diagnosis in EDS.Genet Med 18 11, 1119-1127."	"Morphologic Changes in the Dermis After the Single Administration of Autologous Fibroblastic Cells: A Preliminary Study. Aging is a multifactorial process defined by an accumulation of damage in all tissues and organs, including the skin, throughout the lifespan of an individual. The reduction of both cellular and extracellular matrix components of the dermis during the aging process is followed by the alteration of the morphology of the skin tissue. This study was conducted to assess skin morphology in men before and 3 months after the intradermal injection of autologous fibroblastic cells. Tissue biopsies were surgically obtained before and 3 months after the treatment with autogenously harvested fibroblasts expanded in vitro, as well as after injection of phosphate-buffered saline. The thickness of collagen fiber bundles and number of fibroblasts in the dermis were analyzed in morphometric studies. The morphologic evaluation, using different methods of staining has been performed to analyze of extracellular matrix proteins, including collagen and reticular fibers, fibrillin-1-rich microfibrils, elastic fibers, and hyaluronic acid. After administration of the cells, we found a noticeable increase in the number of fibroblasts within the dermis, a significant enlargement in diameter of the collagen fiber bundles, and an improvement in the density of reticular fibers, fibrillin-1-rich microfibrils, and elastic fibers compared with the initial, steady-state condition. The administration of autogenous fibroblasts could be an effective and safe adjunctive therapy to conventional health care treatment to prevent and reduce the age-related accumulation of dermal tissue damage."	"ADAMTS-10 and -6 differentially regulate cell-cell junctions and focal adhesions. ADAMTS10 and ADAMTS6 are homologous metalloproteinases with ill-defined roles. ADAMTS10 mutations cause Weill-Marchesani syndrome (WMS), implicating it in fibrillin microfibril biology since some fibrillin-1 mutations also cause WMS. However little is known about ADAMTS6 function. ADAMTS10 is resistant to furin cleavage, however we show that ADAMTS6 is effectively processed and active. Using siRNA, over-expression and mutagenesis, it was found ADAMTS6 inhibits and ADAMTS10 is required for focal adhesions, epithelial cell-cell junction formation, and microfibril deposition. Either knockdown of ADAMTS6, or disruption of its furin processing or catalytic sites restores focal adhesions, implicating its enzyme activity acts on targets in the focal adhesion complex. In ADAMTS10-depleted cultures, expression of syndecan-4 rescues focal adhesions and cell-cell junctions. Recombinant C-termini of ADAMTS10 and ADAMTS6, both of which induce focal adhesions, bind heparin and syndecan-4. However, cells overexpressing full-length ADAMTS6 lack heparan sulphate and focal adhesions, whilst depletion of ADAMTS6 induces a prominent glycocalyx. Thus ADAMTS10 and ADAMTS6 oppositely affect heparan sulphate-rich interfaces including focal adhesions. We previously showed that microfibril deposition requires fibronectin-induced focal adhesions, and cell-cell junctions in epithelial cultures. Here we reveal that ADAMTS6 causes a reduction in heparan sulphate-rich interfaces, and its expression is regulated by ADAMTS10."	"Novel FBN1 mutations are responsible for cardiovascular manifestations of Marfan syndrome. The fibrillin-1 (FBN1) gene mutations result in Marfan syndrome (MFS) and have a variety of phenotypic variations. This disease is involved in the skeletal, ocular and cardiovascular system. Here we analyzed genotype-phenotype correlation in two Chinese families with MFS. Two patients with thoracic aortic aneurysms and dissections were diagnosed as MFS according to the revised Ghent criteria. Peripheral blood samples were collected and genomic DNAs were isolated from available cases, namely, patient-1 and his daughter and son, and patient-2 and his parents. According to the next-generation sequencing results, the mutations in FBN1 were confirmed by direct sequencing. A heterozygous frameshift mutation in exon 12 of FBN1 was found in the proband-1 and his daughter. They showed cardiovascular phenotype thoracic aortic aneurysms and dissections, a life-threatening vascular disease, and atrial septal defect respectively. One de novo missense mutation in exon 50 of FBN1 was identified only in the patient-2, showing aortic root aneurysm and aortic root dilatation. Intriguingly, two novel mutations mainly caused the cardiovascular complications in affected family members. No meaningful mutations were found in these two patients by screening all exons of 428 genes related with cardiovascular disease. The high incidence of cardiovascular manifestations might be associated with the two novel mutations in exon 12 and 50 of FBN1."	"Characterization of metabolic health in mouse models of fibrillin-1 perturbation. Mutations in the microfibrillar protein fibrillin-1 or the absence of its binding partner microfibril-associated glycoprotein (MAGP1) lead to increased TGFβ signaling due to an inability to sequester latent or active forms of TGFβ, respectively. Mouse models of excess TGFβ signaling display increased adiposity and predisposition to type-2 diabetes. It is therefore interesting that individuals with Marfan syndrome, a disease in which fibrillin-1 mutation leads to aberrant TGFβ signaling, typically present with extreme fat hypoplasia. The goal of this project was to characterize multiple fibrillin-1 mutant mouse strains to understand how fibrillin-1 contributes to metabolic health. The results of this study demonstrate that fibrillin-1 contributes little to lipid storage and metabolic homeostasis, which is in contrast to the obesity and metabolic changes associated with MAGP1 deficiency. MAGP1 but not fibrillin-1 mutant mice had elevated TGFβ signaling in their adipose tissue, which is consistent with the difference in obesity phenotypes. However, fibrillin-1 mutant strains and MAGP1-deficient mice all exhibit increased bone length and reduced bone mineralization which are characteristic of Marfan syndrome. Our findings suggest that Marfan-associated adipocyte hypoplasia is likely not due to microfibril-associated changes in adipose tissue, and provide evidence that MAGP1 may function independently of fibrillin in some tissues."	"A Marfan syndrome-like phenotype caused by a neocentromeric supernumerary ring chromosome 15. Small supernumerary marker chromosomes (sSMC) are abnormal chromosomes that cannot be characterized by standard banding cytogenetic techniques. A minority of sSMC contain a neocentromere, which is an ectopic centromere lacking the characteristic alpha-satellite DNA. The phenotypic manifestations of sSMC and neocentromeric sSMC are variable and range from severe intellectual disability and multiple congenital anomalies to a normal phenotype. Here we report a patient with a diagnosis of Marfan syndrome and infertility found to have an abnormal karyotype consisting of a chromosome 15 deletion and a ring-type sSMC likely stabilized by a neocentromere derived via a mechanism initially described by Barbara McClintock in 1938. Analysis of the sSMC identified that it contained the deleted chromosome 15 material and also one copy of FBN1, the gene responsible for Marfan syndrome. We propose that the patient's diagnosis arose from disruption of the FBN1 allele on the sSMC. To date, a total of 29 patients have been reported with an sSMC derived from a chromosomal deletion. We review these cases with a specific focus on the resultant phenotypes and note significant difference between this class of sSMC and other types of sSMC. Through this review we also identified a patient with a clinical diagnosis of neurofibromatosis type 1 who lacked a family history of the condition but was found to have a chromosome 17-derived sSMC that likely contained NF1 and caused the patient's disorder. We also review the genetic counseling implications and recommendations for a patient or family harboring an sSMC. © 2016 Wiley Periodicals, Inc."	"Identification of FBN1 gene mutations in Ukrainian Marfan syndrome patients. Marfan syndrome is an autosomal dominant connective tissue disorder, predominantly affecting the ocular, skeletal and cardiovascular systems. Here, we present the results of the first genetic testing in 40 Ukrainian Marfan (-like) patients and 10 relatives. We applied a targeted next generation sequencing panel comprising FBN1 and 13 thoracic aortic aneurysm genes. We identified 27 causal mutations in FBN1, obtaining a mutation yield of 67·5%. A significant difference in age at aortic surgery between mutation positive and negative patients was observed. Thus, we conclude that genetic testing is important to identify patients at higher risk for developing life-threatening cardiovascular complications."	"The effect of losartan therapy on ventricular function in Marfan patients with haploinsufficient or dominant negative FBN1 mutations. Mild biventricular dysfunction is often present in patients with Marfan syndrome. Losartan has been shown to reduce aortic dilatation in patients with Marfan syndrome. This study assesses the effect of losartan on ventricular volume and function in genetically classified subgroups of asymptomatic Marfan patients without significant valvular regurgitation. In this predefined substudy of the COMPARE study, Marfan patients were classified based on the effect of their FBN1 mutation on fibrillin-1 protein, categorised as haploinsufficient or dominant negative. Patients were randomised to a daily dose of losartan 100 mg or no additional treatment. Ventricular volumes and function were measured by magnetic resonance imaging at baseline and after 3 years of follow-up. Changes in biventricular dimensions were assessed in 163 Marfan patients (48 % female; mean age 38 ± 13 years). In patients with a haploinsufficient FBN1 mutation (n = 43), losartan therapy (n = 19) increased both biventricular end diastolic volume (EDV) and stroke volume (SV) when compared with no additional losartan (n = 24): left ventricular EDV: 9 ± 26 ml vs. -8 ± 24 ml, p = 0.035 and right ventricular EDV 12 ± 23 ml vs. -18 ± 24 ml; p &lt; 0.001 and for left ventricle SV: 6 ± 16 ml vs. -8 ± 17 ml; p = 0.009 and right ventricle SV: 8 ± 16 ml vs. -7 ± 19 ml; p = 0.009, respectively. No effect was observed in patients with a dominant negative FBN1 mutation (n = 92), or without an FBN1 mutation (n = 28). Losartan therapy in haploinsufficient Marfan patients increases biventricular end diastolic volume and stroke volume, furthermore, losartan also appears to ameliorate biventricular filling properties."	"Intracellular mechanisms of molecular recognition and sorting for transport of large extracellular matrix molecules. Extracellular matrix (ECM) proteins are biosynthesized in the rough endoplasmic reticulum (rER) and transported via the Golgi apparatus to the extracellular space. The coat protein complex II (COPII) transport vesicles are approximately 60-90 nm in diameter. However, several ECM molecules are much larger, up to several hundreds of nanometers. Therefore, special COPII vesicles are required to coat and transport these molecules. Transmembrane Protein Transport and Golgi Organization 1 (TANGO1) facilitates loading of collagens into special vesicles. The Src homology 3 (SH3) domain of TANGO1 was proposed to recognize collagen molecules, but how the SH3 domain recognizes various types of collagen is not understood. Moreover, how are large noncollagenous ECM molecules transported from the rER to the Golgi? Here we identify heat shock protein (Hsp) 47 as a guide molecule directing collagens to special vesicles by interacting with the SH3 domain of TANGO1. We also consider whether the collagen secretory model applies to other large ECM molecules."	"Economic and care considerations of Marfan syndrome. Marfan syndrome is a rare multisystem disease of the connective tissue, which affects multiple organ systems. advances in healthcare have doubled the life-expectancy of patients over the past three decades. to date, there is no comprehensive review that consolidates economic considerations and care for marfan patients. Areas covered: Present research suggests that there may be a link between treatment pattern, disease progression and economic costs of Marfan syndrome. It indicates that an early detection of the disease and preventive interventions achieve a dual aim. From a patient perspective, it may reduce the amount of emergency surgery or intervention, and inpatient stays. In addition, it slows disease progression, lowers lifestyle restrictions, reduces psychological stress, and improves health-related quality of life. Expert commentary: Early detection and preventive measures are likely to achieve a dual aim by simultaneously containing costs and reducing the number and length of inpatient stays."	"WES/WGS Reporting of Mutations from Cardiovascular &quot;Actionable&quot; Genes in Clinical Practice: A Key Role for UMD Knowledgebases in the Era of Big Databases. High-throughput next-generation sequencing such as whole-exome and whole-genome sequencing are being rapidly integrated into clinical practice. The use of these techniques leads to the identification of secondary variants for which decisions about the reporting or not to the patient need to be made. The American College of Medical Genetics and Genomics recently published recommendations for the reporting of these variants in clinical practice for 56 &quot;actionable&quot; genes. Among these, seven are involved in Marfan Syndrome And Related Disorders (MSARD) resulting from mutations of the FBN1, TGFBR1 and 2, ACTA2, SMAD3, MYH11 and MYLK genes. Here, we show that mutations collected in UMD databases for MSARD genes (UMD-MSARD) are rarely reported, including the most frequent ones, in global scale initiatives for variant annotation such as the NHLBI GO Exome Sequencing Project (ESP), the Exome Aggregation Consortium (ExAC), and ClinVar. The predicted pathogenic mutations reported in global scale initiatives but absent in locus-specific databases (LSDBs) mainly correspond to rare events. UMD-MSARD databases are therefore the only resources providing access to the full spectrum of known pathogenic mutations. They are the most comprehensive resources for clinicians and geneticists to interpret MSARD-related variations not only primary variants but also secondary variants."	"Fibrillin 2 is upregulated in the ascending aorta of patients with bicuspid aortic valve. Bicuspid aortic valve (BAV) is the most prevalent congenital cardiac malformation, frequently associated with aortic dilatation (AD). The molecular mechanisms involved in AD and its aetiological link with BAV formation are poorly understood. Altered fibrillin-1 (FBN1) and metalloprotease-2, -9 (MMP2,9) protein activities have been suggested to be involved in BAV aortopathy. In addition, FBN2 participates in embryonic valve formation, but its possible involvement in BAV-associated AD has never been explored. In this report, we evaluate the expression levels of MMP2,9 and FBN1,2 in the ascending aorta of patients with normal or dilated aortas and with tricuspid aortic valve (TAV) or BAV, using appropriate tissue-specific reference genes. Gene expression was quantified by real-time quantitative polymerase chain reaction in 52 patients, using one or three reference genes previously validated in the same patient population. FBN2 expression was significantly increased in the aortas of patients with BAV compared with individuals with TAV (0.178 ± 0.042 vs 0.096 ± 0.021, P = 0.015), whereas differences in FBN1 did not reach statistical significance (1.946 ± 0.228 vs 1.430 ± 0.114, P = 0.090). When four groups of samples were considered, FBN2 expression was significantly higher in patients with BAV and AD compared with patients with TAV and AD (0.164 ± 0.035 vs 0.074 ± 0.027, P = 0.040). No significant differences were found when FBN1/FBN2 ratio, and MMP2 and MMP9 expression levels were analysed. No linear relationship between aortic diameter and gene expression levels were found. BAV patients have an increased FBN (especially FBN2) gene expression level in the ascending aorta, irrespective of dilatation, whereas MMP expression does not change significantly. These results add a new piece of information to the pathophysiology of BAV disease and point to FBN2 as a new molecular player."	"Global methylation profiling to identify epigenetic signature of gallbladder cancer and gallstone disease. Promoter methylation in various tumor suppressor genes is reported to influence gallbladder carcinogenesis. Here, we aimed to identify methylation status in gallbladder cancer (GBC) by performing a comprehensive genome-wide DNA methylation profiling. The methylation status of 485,577 CpG sites were investigated using Illumina's Infinium Human Methylation 450 BeadChip array in 24 tissues (eight each of tumor, adjacent non-tumor, and gallstone). About 33,443 differentially methylated sites (DMRs) were obtained in the whole human genome, of which 24,188 (72 %) were hypermethylated and 9255 (28 %) were hypomethylated. The data also revealed that majority of the DMRs are localized on the proximal promoter region [Transcription start sites (TSS200, TSS1500) and 5' untranslated region (5'UTR)] and first exon. Exclusion of first exon detected a total of 10,123 (79 %) hypermethylated and 2703 (21 %) hypomethylated sites. Comparative analysis of the later with our differential proteomics data resulted in identification of 7 hypermethylated or down-regulated (e.g., FBN1, LPP, and SOD3) and 61 hypomethylated or up-regulated markers (e.g., HBE1, SNRPF, TPD52) for GBC. These genes could be further validated on the basis of their methylation/expression status in order to identify their utility to be used as biomarker/s for early diagnosis and management of GBC."	"Marfan syndrome: Report of a complex phenotype due to a 15q21.1 contiguos gene deletion encompassing FBN1, and literature review. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder that primarily involves skeletal, ocular, and cardiovascular systems with large inter- and intra-familial variability in terms of age of onset, severity, and aortic disease. The causal gene, FBN1, encodes for fibrillin 1, a multi-domain glycoprotein essential for many biological functions, including deposition and formation of elastic fibers. Reports describing chromosomal alterations involving FBN1 are rare, but in the last years their number has increased after copy number state analyses, such as multiplex ligation-dependent probe amplification and microarray-based comparative genomic hybridization, were adopted as routine diagnostic tools. Herein we report a patient with MFS and an atypical facial appearance and neuropsychiatric involvement likely not attributable to MFS due to a 15q21.1 deletion that involves part of FBN1 and 13 additional contiguous genes listed in OMIM. We compare his phenotype with those of the few patients described in the literature who share similar 15q11.2 deletions. This report expands the phenotype of patients with 15q11.2 deletion involving FBN1 and its contiguous genes, and suggests a possible role for these other genes in the pathogenesis of the observed unusual clinical signs that are not explained by FBN1 haploinsufficiency. © 2016 Wiley Periodicals, Inc."	"Genetic testing of 248 Chinese aortopathy patients using a panel assay. Inherited aortopathy, which is characterized by a high risk of fatal aortic aneurysms/dissections, can occur secondarily to several syndromes. To identify genetic mutations and help make a precise diagnosis, we designed a gene panel containing 15 genes responsible for inherited aortopathy and tested 248 probands with aortic disease or Marfan syndrome. The results showed that 92 individuals (37.1%) tested positive for a (likely) pathogenic mutation, most of which were FBN1 mutations. We found that patients with a FBN1 truncating or splicing mutation were more prone to developing severe aortic disease or valvular disease. To date, this is the largest reported cohort of Chinese patients with aortic disease who have undergone genetic testing. Therefore, it can serve as a considerable dataset of next generation sequencing data analysis of Chinese population with inherited aortopathy. Additionally, according to the accumulated data, we optimized the analysis pipeline by adding quality control steps and lowering the false positive rate."	"Promoting Tropoelastin Expression in Arterial and Venous Vascular Smooth Muscle Cells and Fibroblasts for Vascular Tissue Engineering. Elastin, critical for its structural and regulatory functions, is a missing link in vascular tissue engineering. Several elastin-inducting compounds have previously been reported, but their relative efficiency in promoting elastogenesis by adult arterial and venous vascular smooth muscle cells (VSMCs) and fibroblasts, four main vascular and elastogenic cells, has not been described. In addition to elasto-inductive substances, microRNA-29a was recently established as a potent post-transcriptional inhibitor of elastogenesis. Here, we explored if stimulating positive regulators or blocking inhibitors of elastogenesis could maximize elastin production. We tested whether the elasto-inducing compounds IGF-1, TGF-β1, and minoxidil could indeed augment elastin production, and whether microRNA-29a antagonism could block elastin production in adult arterial and venous fibroblasts and VSMCs. The effects on elastin, lysyl oxidase, and fibrillin-1 mRNA expression levels and tropoelastin protein were determined. IGF-1 and minoxidil exerted little effect on tropoelastin mRNA expression levels in all cell types, while TGF-β1 predominantly enhanced mRNA tropoelastin levels, but this mRNA increase did not impact tropoelastin protein abundance. In contrast, microRNA29a inhibition resulted in the upregulation of tropoelastin mRNA in all cell types, but most pronounced in venous VSMCs. Importantly, microRNA-29a-antagonism also enhanced lysyl oxidase and fibrillin-1 mRNA expression, and revealed a dose-dependent increase in tropoelastin protein expression in venous VSMCs. Our studies suggest that the elastogenic potential of microRNA-29a inhibition in vascular cells is superior to that of established elastin-stimulating compounds IGF-1, TGF-β1, and minoxidil. Thus, microRNA-29a antagonism could serve as an attractive means of enhancing elastin synthesis in tissue-engineered blood vessels."	"Angiotensin II increases coronary fibrosis, cardiac hypertrophy and the incidence of myocardial infarctions in ApoE&lt;sup&gt;-/-&lt;/sup&gt;Fbn1&lt;sup&gt;C1039G+/-&lt;/sup&gt; mice. NA"	"Homozygous and compound heterozygous mutations in the FBN1 gene: unexpected findings in molecular diagnosis of Marfan syndrome. Marfan syndrome (MFS) is an autosomal-dominant connective tissue disorder usually associated with heterozygous mutations in the gene encoding fibrillin-1 (FBN1). Homozygous and compound heterozygous cases are rare events and have been associated with a clinical severe presentation. Report unexpected findings of homozygosity and compound heterozygosity in the course of molecular diagnosis of heterozygous MFS and compare the findings with published cases. In the context of molecular diagnosis of heterozygous MFS, systematic sequencing of the FBN1 gene was performed in 2500 probands referred nationwide. 1400 probands carried a heterozygous mutation in this gene. Unexpectedly, among them four homozygous cases (0.29%) and five compound heterozygous cases (0.36%) were identified (total: 0.64%). Interestingly, none of these cases carried two premature termination codon mutations in the FBN1 gene. Clinical features for these carriers and their families were gathered and compared. There was a large spectrum of severity of the disease in probands carrying two mutated FBN1 alleles, but none of them presented extremely severe manifestations of MFS in any system compared with carriers of only one mutated FBN1 allele. This observation is not in line with the severe clinical features reported in the literature for four homozygous and three compound heterozygous probands. Homozygotes and compound heterozygotes were unexpectedly identified in the course of molecular diagnosis of MFS. Contrary to previous reports, the presence of two mutated alleles was not associated with severe forms of MFS. Although homozygosity and compound heterozygosity are rarely found in molecular diagnosis, they should not be overlooked, especially among consanguineous families. However, no predictive evaluation of severity should be provided."	"Loss of Elastic Fiber Integrity Compromises Common Carotid Artery Function: Implications for Vascular Aging. Competent elastic fibers endow central arteries with the compliance and resilience that are fundamental to their primary mechanical function in vertebrates. That is, by enabling elastic energy to be stored in the arterial wall during systole and then to be used to work on the blood during diastole, elastic fibers decrease ventricular workload and augment blood flow in pulsatile systems. Indeed, because elastic fibers are formed during development and stretched during somatic growth, their continual tendency to recoil contributes to the undulation of the stiffer collagen fibers, which facilitates further the overall compliance of the wall under physiologic pressures while allowing the collagen to limit over-distension during acute increases in blood pressure. In this paper, we use consistent methods of measurement and quantification to compare the biaxial material stiffness, structural stiffness, and energy storage capacity of murine common carotid arteries having graded degrees of elastic fiber integrity - normal, elastin-deficient, fibrillin-1 deficient, fibulin-5 null, and elastase-treated. The finding that the intrinsic material stiffness tends to be maintained nearly constant suggests that intramural cells seek to maintain a favorable micromechanical environment in which to function. Nevertheless, a loss of elastic energy storage capability due to the loss of elastic fiber integrity severely compromises the primary function of these central arteries."	"Genetic Variants in LRP1 and ULK4 Are Associated with Acute Aortic Dissections. Acute aortic dissections are a preventable cause of sudden death if individuals at risk are identified and surgically repaired in a non-emergency setting. Although mutations in single genes can be used to identify at-risk individuals, the majority of dissection case subjects do not have evidence of a single gene disorder, but rather have the other major risk factor for dissections, hypertension. Initial genome-wide association studies (GWASs) identified SNPs at the FBN1 locus associated with both thoracic aortic aneurysms and dissections. Here, we used the Illumina HumanExome array to genotype 753 individuals of European descent presenting specifically with non-familial, sporadic thoracic aortic dissection (STAD) and compared them to the genotypes of 2,259 control subjects from the Atherosclerosis Risk in Communities (ARIC) study matched for age, gender, and, for the majority of cases, hypertension. SNPs in FBN1, LRP1, and ULK4 were identified to be significantly associated with STAD, and these results were replicated in two independent cohorts. Combining the data from all cohorts confirmed an inverse association between LRP1 rs11172113 and STAD (p = 2.74 × 10(-8); OR = 0.82, 95% CI = 0.76-0.89) and a direct association between ULK4 rs2272007 and STAD (p = 1.15 × 10(-9); OR = 1.35, 95% CI = 1.23-1.49). Genomic copy-number variation analysis independently confirmed that ULK4 deletions were significantly associated with development of thoracic aortic disease. These results indicate that genetic variations in LRP1 and ULK4 contribute to risk for presenting with an acute aortic dissection."	"Vascular smooth muscle cells in Marfan syndrome aneurysm: the broken bricks in the aortic wall. Marfan syndrome (MFS) is a connective tissue disorder with multiple organ manifestations. The genetic cause of this syndrome is the mutation of the FBN1 gene, encoding the extracellular matrix (ECM) protein fibrillin-1. This genetic alteration leads to the degeneration of microfibril structures and ECM integrity in the tunica media of the aorta. Indeed, thoracic aortic aneurysm and dissection represent the leading cause of death in MFS patients. To date, the most effective treatment option for this pathology is the surgical substitution of the damaged aorta. To highlight novel therapeutic targets, we review the molecular mechanisms related to MFS etiology in vascular smooth muscle cells, the foremost cellular type involved in MFS pathogenesis."	"Fibrillin-1 Expression Is Decreased in the Diaphragmatic Muscle Connective Tissue of Nitrofen-Induced Congenital Diaphragmatic Hernia. Introduction Diaphragmatic morphogenesis depends on proper formation of muscle connective tissue (MCT) and underlying extracellular matrix (ECM). Fibrillin-1 is an essential ECM protein and crucial for the structural integrity of MCT in the developing diaphragm. Recently, mutations in the fibrillin-1 gene (FBN1) have been identified in cases of congenital diaphragmatic hernia (CDH), thus suggesting that alterations in FBN1 gene expression may lead to diaphragmatic defects. We designed this study to investigate the hypothesis that the diaphragmatic expression of fibrillin-1 is decreased in the MCT of nitrofen-induced CDH. Materials and Methods Time-mated rats were exposed to nitrofen or vehicle on gestational day 9 (D9). Fetal diaphragms (n = 72) were harvested on D13, D15, and D18, and divided into control and nitrofen-exposed specimens. Laser-capture microdissection was used to obtain diaphragmatic tissue cells. Gene expression levels of FBN1 were analyzed by qRT-PCR. Immunofluorescence-double-staining for fibrillin-1 and the mesenchymal marker Gata4 was performed to evaluate protein expression and localization. Results Relative mRNA expression of FBN1 was significantly decreased in pleuroperitoneal folds on D13 (3.39 ± 1.29 vs. 5.47 ± 1.92; p &lt; 0.05), developing diaphragms on D15 (2.48 ± 0.89 vs. 4.03 ± 1.62; p &lt; 0.05), and fully muscularized diaphragms on D18 (2.49 ± 0.69 vs. 3.93 ± 1.55; p &lt; 0.05) of nitrofen-exposed fetuses compared with controls. Confocal-laser-scanning microscopy revealed markedly diminished fibrillin-1 immunofluorescence mainly in MCT, associated with a reduction of proliferating mesenchymal cells in nitrofen-exposed fetuses on D13, D15, and D18 compared with controls. Conclusions Decreased expression of fibrillin-1 during morphogenesis of the fetal diaphragm may disrupt mesenchymal cell proliferation, causing malformed MCT and thus resulting in diaphragmatic defects in the nitrofen-induced CDH model."	"Datasets of genes coexpressed with FBN1 in mouse adipose tissue and during human adipogenesis. This article contains data related to the research article entitled &quot;Expression of FBN1 during adipogenesis: relevance to the lipodystrophy phenotype in Marfan syndrome and related conditions&quot; [1]. The article concerns the expression of FBN1, the gene encoding the extracellular matrix protein fibrillin-1, during adipogenesis in vitro and in relation to adipose tissue in vivo. The encoded protein has recently been shown to produce a short glucogenic peptide hormone, (Romere et al., 2016) [2], and this gene is therefore a key gene for regulating blood glucose levels. FBN1 and coexpressed genes were examined in mouse strains and in human cells undergoing adipogenesis. The data show the genes that were coexpressed with FBN1, including genes coding for other connective tissue proteins and the proteases that modify them and for the transcription factors that control their expression. Data analysed were derived from datasets available in the public domain and the analysis highlights the utility of such datasets for ongoing analysis and hence reduction in the use of experimental animals. "	"Fibrillin-1 (FBN-1) a new marker of germ cell neoplasia in situ. Germ cell neoplasia in situ (GCNIS), is preinvasive stage of testicular germ cell tumours (TGCTs). Fibrillins, which are integral components of microfibrils are suggested to be involved in cancer pathogenesis and maintenance of embryonic stem cells pluripotency. The aim of this study was to examine fibrillin-1 (FBN-1) expression in TGCTs patients. Surgical specimens from 203 patients with TGCTs were included into the translational study. FBN-1 expression was evaluated in the tumour tissue, in GCNIS and in adjacent non-neoplastic testicular tissue in all available cases. Tissue samples were processed by the tissue microarray method. FBN-1 was detected by immunohistochemistry using goat polyclonal antibody and the expression was evaluated by the multiplicative quickscore (QS). The highest FBN-1 positivity was detected in GCNIS (mean QS = 11.30), with overexpression of FBN-1 (QS &gt;9) in the majority (77.1 %) of cases. Expression of FBN-1 in all subtypes of TGCTs was significantly lower in comparison to expression in GCNIS (all p &lt;0.001). Seminoma had significantly higher expression compared to EC, ChC and TER (all p &lt;0.05), but not to YST (p = 0.84). In non-neoplastic testicular tissue the FBN-1 positivity was very low (mean QS = 0.02). Sensitivity, specificity, positive and negative predictive value of FBN-1 expression for diagnosis of GCNIS were 97.1, 98.8, 98.6 and 97.7 %. FBN-1 is overexpressed in TGCTs and especially in GCNIS when compared to non-neoplastic testicular tissue in patients with germ cell tumors and could be involved in germ cell neoplasia in situ development."	"Revised Ghent Criteria is Comparable to Original Diagnostic Criteria for Marfan Syndrome with Increased Ability to Clinically Diagnose Related Disorders. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder with major features in cardiovascular ocular and skeletal systems. Due to its genetic heterogeneity and variable expressivity, Ghent nosology was established for clinical diagnosis of MFS. In 2010, Ghent diagnostic criteria were revised to better diagnose MS and categorize its related disorders. There is no previous clinical comparison between the original and revised Ghent criteria for diagnosis of MFS in Thai patients. To compare application and efficacy of Ghent and revised Ghent criteria in adult Thai patients with clinical suspicion of MFS. This study was a retrospective analysis of patients with clinical suspicion of MFS who attended the Medical Genetics Clinic, Siriraj Hospital between January 2003 and December 2013. Patients were clinically examined for diagnosis of MFS using both the Ghent and revised Ghent criteria. Multidisciplinary data, including physical examination, echocardiography, slit-lamp examination, and genetic testing, were analyzed. Clinical and genetic data of 138 (77 males and 61 females) individuals with clinical suspicion of MFS were reviewed The most common presentation was cardiovascular manifestation. Of 92 patients diagnosed as MFS by original Ghent nosology 70 of those patients (76.1%) were also diagnosed as MFS by revised Ghent criteria. Forty-eight of 138 patients (34.8%) had undergone genetic testing, with FBN1 mutations detected in 23 patients. Twenty-two patients with detectable FBN1 mutations fulfilled both the Ghent and revised Ghent criteria. Of 22 patients whose diagnoses were not fulfilled by revised Ghent nosology, most were due to inadequate systemic score (SS). The use of revised Ghent nosology also facilitated improved diagnosis of MFS-related disorders. Revised Ghent nosology has further differentiated MFS from other MFS-related disorders and has further expanded the classification of MFS-related disorders. Genetic testing of FBN1 helps physicians to more accurately diagnose patients with MFS and related disorders."	"[THE ROLE OF TRANSFORMING GROWTH FACTOR-B IN IMMUNOPATHOGENESIS OF DISEASES OF CONNECTIVE TISSUE]. The recent studies of molecular physiology of fibrillin and pathophysiology of inherent disorders of structure and function of connective tissue such as dissection and aneurysm of aorta, myxomatously altered cusps and prolapses of mitral valve, syndrome of hyper-mobility of joints, demonstrated that important role in development of these malformations play alterations of transfer of signals by growth factors and matrix cellular interaction. These conditions under manifesting Marfan's syndrome can be a consequence of anomalies of fibrillin-1 which deficiency unbrakes process of activation of transforming growth factor-β (TGFβ). The involvement of TGFβ in pathogenesis of Marfan's syndrome permits consider antagonists of angiotensin-transforming enzymes as potential pharmaceuticals in therapy of this disease. The article presents analysis of publications' data related to this problem."	"FBN1: The disease-causing gene for Marfan syndrome and other genetic disorders. FBN1 encodes the gene for fibrillin-1, a structural macromolecule that polymerizes into microfibrils. Fibrillin microfibrils are morphologically distinctive fibrils, present in all connective tissues and assembled into tissue-specific architectural frameworks. FBN1 is the causative gene for Marfan syndrome, an inherited disorder of connective tissue whose major features include tall stature and arachnodactyly, ectopia lentis, and thoracic aortic aneurysm and dissection. More than one thousand individual mutations in FBN1 are associated with Marfan syndrome, making genotype-phenotype correlations difficult. Moreover, mutations in specific regions of FBN1 can result in the opposite features of short stature and brachydactyly characteristic of Weill-Marchesani syndrome and other acromelic dysplasias. How can mutations in one molecule result in disparate clinical syndromes? Current concepts of the fibrillinopathies require an appreciation of tissue-specific fibrillin microfibril microenvironments and the collaborative relationship between the structures of fibrillin microfibril networks and biological functions such as regulation of growth factor signaling. "	"Shared Genetic Risk Factors of Intracranial, Abdominal, and Thoracic Aneurysms. Intracranial aneurysms (IAs), abdominal aortic aneurysms (AAAs), and thoracic aortic aneurysms (TAAs) all have a familial predisposition. Given that aneurysm types are known to co-occur, we hypothesized that there may be shared genetic risk factors for IAs, AAAs, and TAAs. We performed a mega-analysis of 1000 Genomes Project-imputed genome-wide association study (GWAS) data of 4 previously published aneurysm cohorts: 2 IA cohorts (in total 1516 cases, 4305 controls), 1 AAA cohort (818 cases, 3004 controls), and 1 TAA cohort (760 cases, 2212 controls), and observed associations of 4 known IA, AAA, and/or TAA risk loci (9p21, 18q11, 15q21, and 2q33) with consistent effect directions in all 4 cohorts. We calculated polygenic scores based on IA-, AAA-, and TAA-associated SNPs and tested these scores for association to case-control status in the other aneurysm cohorts; this revealed no shared polygenic effects. Similarly, linkage disequilibrium-score regression analyses did not show significant correlations between any pair of aneurysm subtypes. Last, we evaluated the evidence for 14 previously published aneurysm risk single-nucleotide polymorphisms through collaboration in extended aneurysm cohorts, with a total of 6548 cases and 16 843 controls (IA) and 4391 cases and 37 904 controls (AAA), and found nominally significant associations for IA risk locus 18q11 near RBBP8 to AAA (odds ratio [OR]=1.11; P=4.1×10(-5)) and for TAA risk locus 15q21 near FBN1 to AAA (OR=1.07; P=1.1×10(-3)). Although there was no evidence for polygenic overlap between IAs, AAAs, and TAAs, we found nominally significant effects of two established risk loci for IAs and TAAs in AAAs. These two loci will require further replication."	"The Human Skeletal Muscle Transcriptome in Response to Oral Shilajit Supplementation. The objective of the present study ( clinicaltrials.gov NCT02026414) was to observe the effects of oral supplementation of a purified and standardized Shilajit extract on skeletal muscle adaptation in adult overweight/class I obese human subjects from the U.S. Shilajit is a mineral pitch that oozes out of Himalayan rocks. The study design consisted of a baseline visit, followed by 8 weeks of 250 mg of oral Shilajit supplementation b.i.d., and additional 4 weeks of supplementation with exercise. At each visit, blood samples and muscle biopsies were collected for further analysis. Supplementation was well tolerated without any changes in blood glucose levels and lipid profile after 8 weeks of oral supplementation and the additional 4 weeks of oral supplementation with exercise. In addition, no changes were noted in creatine kinase and serum myoglobin levels after 8 weeks of oral supplementation and the additional 4 weeks of supplementation with exercise. Microarray analysis identified a cluster of 17 extracellular matrix (ECM)-related probe sets that were significantly upregulated in muscles following 8 weeks of oral supplementation compared with the expression at the baseline visit. This cluster included tenascin XB, decorin, myoferlin, collagen, elastin, fibrillin 1, and fibronectin 1. The differential expression of these genes was confirmed using quantitative real-time polymerase chain reaction (RT-PCR). The study provided maiden evidence that oral Shilajit supplementation in adult overweight/class I obese human subjects promoted skeletal muscle adaptation through upregulation of ECM-related genes that control muscle mechanotransduction properties, elasticity, repair, and regeneration."	"Expression of FBN1 during adipogenesis: Relevance to the lipodystrophy phenotype in Marfan syndrome and related conditions. Fibrillin-1 is a large glycoprotein encoded by the FBN1 gene in humans. It provides strength and elasticity to connective tissues and is involved in regulating the bioavailability of the growth factor TGFβ. Mutations in FBN1 may be associated with depleted or abnormal adipose tissue, seen in some patients with Marfan syndrome and lipodystrophies. As this lack of adipose tissue does not result in high morbidity or mortality, it is generally under-appreciated, but is a cause of psychosocial problems particularly to young patients. We examined the role of fibrillin-1 in adipogenesis. In inbred mouse strains we found significant variation in the level of expression in the Fbn1 gene that correlated with variation in several measures of body fat, suggesting that mouse fibrillin-1 is associated with the level of fat tissue. Furthermore, we found that FBN1 mRNA was up-regulated in the adipose tissue of obese women compared to non-obese, and associated with an increase in adipocyte size. We used human mesenchymal stem cells differentiated in culture to adipocytes to show that fibrillin-1 declines after the initiation of differentiation. Gene expression results from a similar experiment (available through the FANTOM5 project) revealed that the decline in fibrillin-1 protein was paralleled by a decline in FBN1 mRNA. Examination of the FBN1 gene showed that the region commonly affected in FBN1-associated lipodystrophy is highly conserved both across the three human fibrillin genes and across genes encoding fibrillin-1 in vertebrates. These results suggest that fibrillin-1 is involved as the undifferentiated mesenchymal stem cells transition to adipogenesis but then declines as the developing adipocytes take on their final phenotype. Since the C-terminal peptide of fibrillin-1 is a glucogenic hormone, individuals with low fibrillin-1 (for example with FBN1 mutations associated with lipodystrophy) may fail to differentiate adipocytes and/or to accumulate adipocyte lipids, although this still needs to be shown experimentally."	"Periodontitis May Deteriorate Sinus of Valsalva Dilatation in Marfan Syndrome Patients. Marfan syndrome (MFS) is a systemic connective tissue disorder that is caused by mutations of fibrillin-1. While MFS patients are at a high risk of periodontitis and aortic diseases, little causal information has been provided to date. To clarify the relationship, their oral condition and sinus of Valsalva (SoV) were evaluated.The subjects were patients with MFS (n = 33) who attended the University of Tokyo Hospital. We divided them into two groups; MFS patients with highly dilated (the diameters were equal to or more than 39 mm) SoV (high group, n = 18) and MFS patients with mildly dilated (less than 39 mm) SoV (mild group, n = 15). Blood examinations, echocardiograms, and full-mouth clinical measurements, including number of teeth, probing pocket depth (PPD), bleeding on probing (BOP), and community periodontal index (CPI) were performed.We found that the high group patients had greater rates of BOP compared to that of the mild group. Furthermore, the high group tended to have higher serum levels of C-reactive protein, matrix metalloproteinase-9, and transforming growth factor-β compared to the mild group.Periodontitis may deteriorate SoV dilatation in MFS patients. "	"Results from in vitro and ex vivo skin aging models assessing the antiglycation and anti-elastase MMP-12 potential of glycylglycine oleamide. Glycation is an aging reaction of naturally occurring sugars with dermal proteins. Type I collagen and elastin are most affected by glycation during intrinsic chronological aging. To study the in vitro and ex vivo assays in human skin cells and explants and the antiaging effects of glycylglycine oleamide (GGO). The antiglycation effect of GGO was assessed in a noncellular in vitro study on collagen and, ex vivo, by immunohistochemical staining on human skin explants (elastin network glycation). The ability of GGO to contract fibroblasts was assessed in a functional assay, and its anti-elastase (MMP-12) activity was compared to that of oleic acid alone, glycylglycine (GG) alone, and oleic acid associated with GG. In vitro, GGO reduced the glycation of type I collagen. Ex vivo, GGO restored the expression of fibrillin-1 inhibited by glycation. Furthermore, GGO induced a tissue retraction of almost 30%. Moreover, the MMP-12 activity was inhibited by up to 60%. Under the present in vitro and ex vivo conditions, GGO prevents glycation of the major structural proteins of the dermis, helping to reduce the risk of rigidification. By maintaining the elastic function of the skin, GGO may be a promising sparring partner for other topical antiaging agents."	"Aortic Aneurysm: Etiopathogenesis and Clinicopathologic Correlations. Aortic aneurysm (AA) is one of the life-threatening aortic diseases, leading to aortic rupture of any cause including atherosclerotic and non-atherosclerotic diseases. AA is diagnosed in a variable proportion of patients with dilated aorta by imaging modality. The etiopathogenesis of AA remains unclear in many aortic diseases. Furthermore, although it may be difficult to explain all phenotypes of patients even if genetic mutation could be identified in some proteins such as smooth muscle cell α-actin (ACTA2), myosin heavy chain 11 (MYH11) or SMAD3, individualized consideration of these factors in each patient is essential on the basis of clinicopathological characteristics. "	"A FBN1 mutation association with different phenotypes of Marfan syndrome in a Chinese family. Previous studies demonstrated that patients with different FBN1 mutations often present more considerable phenotypic variation compared to different members of the related family carrying a same mutation. The purpose of our study was to identify pathogenic mutation and provide more information about genotype-phenotypic correlations in a large Chinese family with Marfan syndrome. 15 related family members from a Chinese 4-generation pedigree with Marfan syndrome underwent physical, ophthalmologic, radiological and cardiovascular examinations. The propositus has De Bakey III aortic dissection and didn't fulfill the revised Ghent criteria for Marfan syndrome. Nine family members have ectopia lentis and their echocardiogram was normal. Five other family members have no evidence of Marfan syndrome. Genomic DNA was isolated from blood leukocytes. The exome sequencing was employed on the propositus, then the Sanger sequencing was conducted for mutation verification in other 14 participants of this family. The causative mutation in FBN1 discovered in the propositus was a known heterozygous missense mutation, c.1633T&gt;G (p.R545C), in exon 14 (NM 000138). This same mutation was also identified in all 9 ectopia lentis patients and one unaffected 8-year-old girl. However, the same mutation was not discovered in other 4 unaffected family members. Our data enhance the information of genotype-phenotype correlation owing to FBN1 mutations. To our current knowledge, we firstly reported that the same FBN1 mutation, c. 1633C&gt;T (Arg545Cys), was detected simultaneously in three different cardinal phenotypes (ectopia lentis, aortic dissection and unaffected) within one family. The unaffected girl with FBN1 mutation may presumably represent a rare case of nonpenetrance."	"[Application of a novel method to collect large amount of fecal mucosa in screening colorectal cancer]. To explore the application of a novel device of collecting large amount of fecal mucosa for detecting the DNA methylation and screening colorectal cancer. Preoperative complete fecal sample and surgical specimen of 10 patients with colorectal cancer, and complete fecal sample and normal bowel mucosal samples confirmed by colonoscopy of 6 hospitalization cases at The Third Affiliated Hospital, Nanjing University of TCM from March to April 2014 were collected. A self-made bowel mucosa collector (consisting of upper, middle, lower three containers of 1 000 ml volume, with filter screen in each bottom whose pore diameter is 100, 200 and 300 mesh.) was used to collect mucosal exfoliation cells. Fecal DNA kit was applied to extract DNA of exfoliation cells and the concentration and purity of DNA were measured by UV spectrophotometer (A260/A280), meanwhile DNA methylation of fecal fluid and mucosal tissues was detected by bisulfite sequencing pCR(BSP). DNA methylation sequencing showed that FBN1, SPG20, and SNCA genes presented methylation in CpG island in fecal fluid and cancer tissues from 10 colorectal cancer patients, but did not presented methylation in fecal fluid and mucosa from 6 control cases. When fecal amount was below 100 g, collection rate of fecal fluid was 60% to 80%; when fecal amount was over 100 g, collection rate of fecal fluid was unstable. When fecal amount was 50 to 100 g, DNA A260/A280 value was 1.6 to 1.8, and DNA concentration was 5.0 to 56.1 ng/L. Collection rate of fecal fluid with this self-made fecal mucosa collector is quite stable when managing fecal amount of 50 to 100 g once, and can obtain higher purity and concentration of DNA, meeting the demand of methylation detection for screening colorectal cancer."	"Thyroid Hormones Enhance Mitochondrial Function in Human Epidermis. Since it is unknown whether thyroid hormones (THs) regulate mitochondrial function in human epidermis, we treated organ-cultured human skin, or isolated cultured human epidermal keratinocytes, with triiodothyronine (100 pmol/L) or thyroxine (100 nmol/L). Both THs significantly increased protein expression of the mitochondrially encoded cytochrome C oxidase I (MTCO1), complex I activity, and the number of perinuclear mitochondria. Triiodothyronine also increased mitochondrial transcription factor A (TFAM) protein expression, and thyroxine stimulated complex II/IV activity. Increased mitochondrial function can correlate with increased reactive oxygen species production, DNA damage, and accelerated tissue aging. However, THs neither raised reactive oxygen species production or matrix metalloproteinase-1, -2 and -9 activity nor decreased sirtuin1 (Sirt1) immunoreactivity. Instead, triiodothyronine increased sirtuin-1, fibrillin-1, proliferator-activated receptor-gamma 1-alpha (PGC1α), collagen I and III transcription, and thyroxine decreased cyclin-dependent kinase inhibitor 2A (p16(ink4)) expression in organ-cultured human skin. Moreover, TH treatment increased intracutaneous fibrillin-rich microfibril and collagen III deposition and decreased mammalian target of rapamycin (mTORC1/2) expression ex vivo. This identifies THs as potent endocrine stimulators of mitochondrial function in human epidermis, which down-regulates rather than enhance the expression of skin aging-related biomarkers ex vivo. Therefore, topically applied THs deserve further exploration as candidate agents for treating skin conditions characterized by reduced mitochondrial function."	"Functional consequence of fibulin-4 missense mutations associated with vascular and skeletal abnormalities and cutis laxa. Fibulin-4 is a 60kDa calcium binding glycoprotein that has an important role in development and integrity of extracellular matrices. It interacts with elastin, fibrillin-1 and collagen IV as well as with lysyl oxidases and is involved in elastogenesis and cross-link formation. To date, several mutations in the fibulin-4 gene (FBLN4/EFEMP2) are known in patients whose major symptoms are vascular deformities, aneurysm, cutis laxa, joint laxity, or arachnodactyly. The pathogenetic mechanisms how these mutations translate into the clinical phenotype are, however, poorly understood. In order to elucidate these mechanisms, we expressed fibulin-4 mutants recombinantly in HEK293 cells, purified the proteins in native forms and analyzed alterations in protein synthesis, secretion, matrix assembly, and interaction with other proteins in relation to wild type fibulin-4. Our studies show that different mutations affect these properties in multiple ways, resulting in fibulin-4 deficiency and/or impaired ability to form elastic fibers. The substitutions E126K and C267Y impaired secretion of the protein, but not mRNA synthesis. Furthermore, the E126K mutant showed less resistance to proteases, reduced binding to collagen IV and fibrillin-1, as well as to LTBP1s and LTBP4s. The A397T mutation introduced an extra O-glycosylation site and deleted binding to LTBP1s. We show that fibulin-4 binds stronger than fibulin-3 and -5 to LTBP1s, 3, and 4s, and to the lysyl oxidases LOX and LOXL1; the binding of fibulin-4 to the LOX propeptide was strongly reduced by the mutation E57K. These findings show that different mutations in the fibulin-4 gene result in different molecular defects affecting secretion rates, protein stability, LOX-induced cross-linking, or binding to other ECM components and molecules of the TGF-β pathway, and thus illustrate the complex role of fibulin-4 in connective tissue assembly."	"Ehlers-Danlos Syndrome Caused by Biallelic TNXB Variants in Patients with Congenital Adrenal Hyperplasia. Some variants that cause autosomal-recessive congenital adrenal hyperplasia (CAH) also cause hypermobility type Ehlers-Danlos syndrome (EDS) due to the monoallelic presence of a chimera disrupting two flanking genes: CYP21A2, encoding 21-hydroxylase, necessary for cortisol and aldosterone biosynthesis, and TNXB, encoding tenascin-X, an extracellular matrix protein. Two types of CAH tenascin-X (CAH-X) chimeras have been described with a total deletion of CYP21A2 and characteristic TNXB variants. CAH-X CH-1 has a TNXB exon 35 120-bp deletion resulting in haploinsufficiency, and CAH-X CH-2 has a TNXB exon 40 c.12174C&gt;G (p.Cys4058Trp) variant resulting in a dominant-negative effect. We present here three patients with biallelic CAH-X and identify a novel dominant-negative chimera termed CAH-X CH-3. Compared with monoallelic CAH-X, biallelic CAH-X results in a more severe phenotype with skin features characteristic of classical EDS. We present evidence for disrupted tenascin-X function and computational data linking the type of TNXB variant to disease severity."	"Hereditary Influence in Thoracic Aortic Aneurysm and Dissection. Thoracic aortic aneurysm is a potentially life-threatening condition in that it places patients at risk for aortic dissection or rupture. However, our modern understanding of the pathogenesis of thoracic aortic aneurysm is quite limited. A genetic predisposition to thoracic aortic aneurysm has been established, and gene discovery in affected families has identified several major categories of gene alterations. The first involves mutations in genes encoding various components of the transforming growth factor beta (TGF-β) signaling cascade (FBN1, TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3 and SKI), and these conditions are known collectively as the TGF-β vasculopathies. The second set of genes encode components of the smooth muscle contractile apparatus (ACTA2, MYH11, MYLK, and PRKG1), a group called the smooth muscle contraction vasculopathies. Mechanistic hypotheses based on these discoveries have shaped rational therapies, some of which are under clinical evaluation. This review discusses published data on genes involved in thoracic aortic aneurysm and attempts to explain divergent hypotheses of aneurysm origin."	"Resveratrol Inhibits Aortic Root Dilatation in the Fbn1C1039G/+ Marfan Mouse Model. Marfan syndrome (MFS) is a connective tissue disorder caused by mutations in the fibrillin-1 gene. Patients with MFS are at risk of aortic aneurysm formation and dissection. Usually, blood pressure-lowering drugs are used to reduce aortic events; however, this is not sufficient for most patients. In the aorta of smooth muscle cell-specific sirtuin-1-deficient mice, spontaneous aneurysm formation and senescence are observed. Resveratrol is known to enhance sirtuin-1 activity and to reduce senescence, which prompted us to investigate the effectiveness of resveratrol in inhibition of aortic dilatation in the Fbn1(C1039G/+) MFS mouse model. Aortic senescence strongly correlates with aortic root dilatation rate in MFS mice. However, although resveratrol inhibits aortic dilatation, it only shows a trend toward reduced aortic senescence. Resveratrol enhances nuclear localization of sirtuin-1 in the vessel wall and, in contrast to losartan, does not affect leukocyte infiltration nor activation of SMAD2 and extracellular signal-regulated kinases 1/2 (ERK1/2). Interestingly, specific sirtuin-1 activation (SRT1720) or inhibition (sirtinol) in MFS mice does not affect aortic root dilatation rate, although senescence is changed. Resveratrol reduces aortic elastin breaks and decreases micro-RNA-29b expression coinciding with enhanced antiapoptotic Bcl-2 expression and decreased number of terminal apoptotic cells. In cultured smooth muscle cells, the resveratrol effect on micro-RNA-29b downregulation is endothelial cell and nuclear factor κB-dependent. Resveratrol inhibits aortic root dilatation in MFS mice by promoting elastin integrity and smooth muscle cell survival, involving downregulation of the aneurysm-related micro-RNA-29b in the aorta. On the basis of these data, resveratrol holds promise as a novel intervention strategy for patients with MFS."	"Marfan syndrome: current perspectives. Marfan syndrome (MFS) is a pleiotropic connective tissue disease inherited as an autosomal dominant trait, due to mutations in the FBN1 gene encoding fibrillin 1. It is an important protein of the extracellular matrix that contributes to the final structure of a microfibril. Few cases displaying an autosomal recessive transmission are reported in the world. The FBN1 gene, which is made of 66 exons, is located on chromosome 15q21.1. This review, after an introduction on the clinical manifestations that leads to the diagnosis of MFS, focuses on cardiovascular manifestations, pharmacological and surgical therapies of thoracic aortic aneurysm and/or dissection (TAAD), mechanisms underlying the progression of aneurysm or of acute dissection, and biomarkers associated with progression of TAADs. A Dutch group compared treatment with losartan, an angiotensin II receptor-1 blocker, vs no other additional treatment (COMPARE clinical trial). They observed that losartan reduces the aortic dilatation rate in patients with Marfan syndrome. Later on, they also reported that losartan exerts a beneficial effect on patients with Marfan syndrome carrying an FBN1 mutation that causes haploinsufficiency (quantitative mutation), while it has no significant effect on patients displaying dominant negative (qualitative) mutations. Moreover, a French group in a 3-year trial compared the administration of losartan vs placebo in patients with Marfan syndrome under treatment with beta-receptor blockers. They observed that losartan decreases blood pressure but has no effect on aortic diameter progression. Thus, beta-receptor blockers remain the gold standard therapy in patients with Marfan syndrome. Three potential biochemical markers are mentioned in this review: total homocysteine, serum transforming growth factor beta, and lysyl oxidase. Moreover, markers of oxidative stress measured in plasma, previously correlated with clinical features of Marfan syndrome, may be explored as potential biomarkers of clinical severity. "	"Synthesis and skin gene analysis of 4'-acetoxy-resveratrol (4AR), therapeutic potential for dermal applications. Resveratrol (RV) 1, a plant polyphenol, has proven effective in commercial products yet drawbacks include low bioavailability due to rapid metabolism. Structural modifications have led to a 4'-acetoxy analog 2 (4AR) now produced using a selective one-step esterification reaction. The one-step synthesis is shown together with expression of skin genes using human dermal models to establish 4AR 2 benefits to skin health. 4AR 2 at 1% in qPCR experiments using a human skin model significantly increased gene expression of the anti-aging factor, SIRT 1 by over 3.3-fold, extracellular matrix proteins collagen III, IV, elastin and tissue inhibitors of metalloproteinases (TIMP 1, 2), anti-oxidants CAT, LOX, superoxide dismutase (SOD 1, 2), metallothioneins (MT1H, MT1H), skin aging biomarkers fibrillin (FBN1), laminin (LAMB1), proliferating cell nuclear antigen (PCNA), skin growth factors (HBEGF, IGF1, NGF and TGF). 4AR 2 also decreased gene expression of inflammatory and skin-aging molecules (IL-1, IL-6, IL-8, COX-2, TNGRSF) and S100 calcium binding proteins A8, A9. These findings suggest that 4AR 2 has potential for topically treatment and prevention of skin aging."	"Two Patients with Severe Short Stature due to a FBN1 Mutation (p.Ala1728Val) with a Mild Form of Acromicric Dysplasia. Acromicric dysplasia (AD) and geleophysic dysplasia 2 (GD2) belong to the category of acromelic dysplasia syndromes, consisting of severe short stature, short hands and feet and skin thickening. Both can result from missense mutations in the transforming growth factor beta 5 domain of the fibrillin-1 gene (FBN1). Two patients (P1 age 10, and P2 age 7) from unrelated families presented to their endocrinologist with severe short stature (approx. -4 SDS). They were otherwise asymptomatic and only had mild facial dysmorphisms. Extensive endocrine work-up did not reveal an underlying etiology. Exome sequencing was performed in each family. Exome sequencing identified the presence of the same heterozygous missense variant c.C5183T (p.Ala1728Val) in the FBN1 gene in both P1 and P2. This variant was previously reported in a patient with GD2 and associated cardiac valvulopathy and hepatomegaly. Detailed clinical re-examination, cardiac and skeletal imaging did not reveal any abnormalities in P1 or P2 other than mild hip dysplasia. This report broadens the phenotypic spectrum of growth disorders associated with FBN1 mutations. Identical mutations give rise to a wide phenotypic spectrum, ranging from isolated short stature to a more classic picture of GD2 with cardiac involvement, distinct facial dysmorphisms and various skeletal anomalies."	"Genetic testing of the FBN1 gene in Chinese patients with Marfan/Marfan-like syndrome. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder typically involving the ocular, skeletal and cardiovascular systems, and aortic aneurysms/dissection mainly contributes to its mortality. Here, we performed genetic testing of the FBN1 gene in 39 Chinese probands with Marfan/Marfan-like syndrome and their related family members by Sanger sequencing. In total, 29 pathogenic/likely pathogenic FBN1 mutations, including 17 novel ones, were identified. In addition, most MFS patients with aortic disease (62%) had a truncating or splicing mutation. These results expand the FBN1 mutation spectrum and enrich our knowledge of genotype-phenotype correlations. Genetic testing for MFS and its related aortic diseases is increasingly important for early intervention and treatment. "	"A rapid NGS strategy for comprehensive molecular diagnosis of Birt-Hogg-Dubé syndrome in patients with primary spontaneous pneumothorax. Primary spontaneous pneumothorax (PSP) or pulmonary cysts is one of the manifestations of Birt-Hogg-Dube syndrome (BHDS) that is caused by heterozygous mutations in FLCN gene. Most of the mutations are SNVs and small indels, and there are also approximately 10 % large intragenic deletions and duplications of the mutations. These molecular findings are generally obtained by disparate methods including Sanger sequencing and Multiple Ligation-dependent Probe Amplification in the clinical laboratory. In addition, as a genetically heterogeneous disorder, PSP may be caused by mutations in multiple genes include FBN1, COL3A1, CBS, SERPINA1 and TSC1/TSC2 genes. For differential diagnosis, these genes should also be screened which makes the diagnostic procedure more time-consuming and labor-intensive. Forty PSP patients were divided into 2 groups. Nineteen patients with different pathogenic mutations of FLCN previously identified by conventional Sanger sequencing and MLPA were included in test group, 21 random PSP patients without any genetic screening were included in blinded sample group. 7 PSP genes including FLCN, FBN1, COL3A1, CBS, SERPINA1 and TSC1/TSC2 were designed and enriched by Haloplex system, sequenced on a Miseq platform and analyzed in the 40 patients to evaluate the performance of the targeted-NGS method. We demonstrated that the full spectrum of genes associated with pneumothorax including FLCN gene mutations can be identified simultaneously in multiplexed sequence data. Noteworthy, by our in-house copy number analysis of the sequence data, we could not only detect intragenic deletions, but also determine approximate deletion junctions simultaneously. NGS based Haloplex target enrichment technology is proved to be a rapid and cost-effective screening strategy for the comprehensive molecular diagnosis of BHDS in PSP patients, as it can replace Sanger sequencing and MLPA by simultaneously detecting exonic and intronic SNVs, small indels, large intragenic deletions and determining deletion junctions in PSP-related genes."	"Regulation of fibrillins and modulators of TGFβ in fetal bovine and human ovaries. Fibrillins 1-3 are stromal extracellular matrix proteins that play important roles in regulating TGFβ activity, which stimulates fibroblasts to proliferate and synthesize collagen. In the developing ovary, the action of stroma is initially necessary for the formation of ovigerous cords and subsequently for the formation of follicles and the surface epithelium of the ovary. FBN3 is highly expressed only in early ovarian development and then it declines. In contrast, FBN1 and 2 are upregulated in later ovarian development. We examined the expression of FBN1-3 in bovine and human fetal ovaries. We used cell dispersion and monolayer culture, cell passaging and tissue culture. Cells were treated with growth factors, hormones or inhibitors to assess the regulation of expression of FBN1-3 When bovine fetal ovarian tissue was cultured, FBN3 expression declined significantly. Treatment with TGFβ-1 increased FBN1 and FBN2 expression in bovine fibroblasts, but did not affect FBN3 expression. Additionally, in cultures of human fetal ovarian fibroblasts (9-17weeks gestational age), the expression of FBN1 and FBN2 increased with passage, whereas FBN3 dramatically decreased. Treatment with activin A and a TGFβ family signaling inhibitor, SB431542, differentially regulated the expression of a range of modulators of TGFβ signaling and of other growth factors in cultured human fetal ovarian fibroblasts suggesting that TGFβ signaling is differentially involved in the regulation of ovarian fibroblasts. Additionally, since the changes in FBN1-3 expression that occur in vitro are those that occur with increasing gestational age in vivo, we suggest that the fetal ovarian fibroblasts mature in vitro."	"Initial characterization of stiff skin-like syndrome in West Highland white terriers. Stiff skin syndrome and systemic or localized scleroderma are cutaneous disorders characterized by dermal fibrosis and present clinically with induration of the skin, with or without joint, internal organ or vascular involvement. To provide clinical, histological and preliminary genetic analysis of two West Highland white terrier siblings presenting with indurated skin resembling stiff skin syndrome in humans. Two client owned full sibling West Highland white terriers from two different litters. Clinical examination, histopathological examination and whole genome sequencing analysis of affected and unaffected West Highland white terriers. Affected dogs exhibited markedly indurated skin that was attached firmly to the underlying tissue and incomplete closure of the mouth and eyes. No abnormalities were found by neurological or orthopaedic examination, radiographs of the head or whole body computed tomography. Histologically, the dermis and pannicular septa were thickened by a marked increase in coarse collagen fibres and a mild to moderate increase in collagen fibre diameter. The syndrome most likely follows an autosomal recessive mode of inheritance. The sequence analysis did not reveal any obvious causative variant in the investigated candidate genes ADAMTSL2 and FBN1. The clinical phenotype and histopathological features of two West Highland white terrier siblings resembled stiff skin syndrome in humans. Unlike in humans, or previously described beagles with stiff skin, there was no restriction of joint mobility. Genetic analysis did not detect a candidate causative variant and warrants further research."	"Epithelial-Derived Inflammation Disrupts Elastin Assembly and Alters Saccular Stage Lung Development. The highly orchestrated interactions between the epithelium and mesenchyme required for normal lung development can be disrupted by perinatal inflammation in preterm infants, although the mechanisms are incompletely understood. We used transgenic (inhibitory κB kinase β transactivated) mice that conditionally express an activator of the NF-κB pathway in airway epithelium to investigate the impact of epithelial-derived inflammation during lung development. Epithelial NF-κB activation selectively impaired saccular stage lung development, with a phenotype comprising rapidly progressive distal airspace dilation, impaired gas exchange, and perinatal lethality. Epithelial-derived inflammation resulted in disrupted elastic fiber organization and down-regulation of elastin assembly components, including fibulins 4 and 5, lysyl oxidase like-1, and fibrillin-1. Fibulin-5 expression by saccular stage lung fibroblasts was consistently inhibited by treatment with bronchoalveolar lavage fluid from inhibitory κB kinase β transactivated mice, Escherichia coli lipopolysaccharide, or tracheal aspirates from preterm infants exposed to chorioamnionitis. Expression of a dominant NF-κB inhibitor in fibroblasts restored fibulin-5 expression after lipopolysaccharide treatment, whereas reconstitution of fibulin-5 rescued extracellular elastin assembly by saccular stage lung fibroblasts. Elastin organization was disrupted in saccular stage lungs of preterm infants exposed to systemic inflammation. Our study reveals a critical window for elastin assembly during the saccular stage that is disrupted by inflammatory signaling and could be amenable to interventions that restore elastic fiber assembly in the developing lung."	"Pathophysiology and Management of Cardiovascular Manifestations in Marfan and Loeys-Dietz Syndromes. Marfan syndrome (MFS) is an autosomal dominant heritable disorder of connective tissue that affects the cardiovascular, skeletal, ocular, pulmonary, and nervous systems and is usually caused by mutations in the FBN1 gene, which encodes fibrillin-1. MFS is traditionally considered to result from the structural weakness of connective tissue. However, recent investigations on molecular mechanisms indicate that increased transforming growth factor-β (TGF-β) activity plays a crucial role in the pathogenesis of MFS and related disorders, such as Loeys-Dietz syndrome (LDS), which is caused by mutation in TGF-β signaling-related genes. In addition, recent studies show that angiotensin II type 1 receptor (AT1R) signaling enhances cardiovascular pathologies in MFS, and the angiotensin II receptor blocker losartan has the potential to inhibit aortic aneurysm formation. However, the relationship between TGF-β and AT1R signaling pathways remains poorly characterized. In this review, we discuss the recent studies on the molecular mechanisms underlying cardiovascular manifestations of MFS and LDS and the ensuing strategies for management. "	"Next-generation sequencing identifies novel mutations in the FBN1 gene for two Chinese families with Marfan syndrome. Marfan syndrome (MFS) is an autosomal dominant heterogeneous disorder of connective tissue characterized by the early development of thoracic aneurysms/dissections, together with defects of the ocular and skeletal systems. Loss-of-function mutations in fibrillin-1 (FBN1) encoded by the gene, FBN1 (MFS‑1), and in the transforming growth factor β receptor 2 (TGFBR2) gene, TGFBR2 (MFS‑2), are major causes of this disorder. In the present study, a rapid and cost‑effective method for genetically diagnosing MFS was described and used to identify disease‑causing mutations in two unrelated pedigrees with MFS in mainland China. Using targeted semiconductor sequencing, two pathogenic mutations in four MFS patients of the two pedigrees were identified, including a novel frameshift insertion, p.G2120fsX2160, and a reported nonsense mutation, p.Arg529X (rs137854476), in the FBN1 gene. In addition, a rare, probably benign Chinese‑specific polymorphism in the FBN1 gene was also revealed. "	"Fibrillin-1 Gene Mutations in Left Ventricular Non-compaction Cardiomyopathy. Left ventricular non-compaction cardiomyopathy (LVNC) is a unique cardiomyopathy with a current yield of about 30-40 % in identifying a causative gene mutation. A retrospective review of all patients with LVNC at our institution was performed and genetic testing was reviewed. Echocardiographic and cardiac magnetic resonance imaging was reviewed to corroborate the reported phenotype. We present a series of patients with LVNC dilated phenotype associated with fibrillin-1 gene mutations. Fifty-one patients were identified as having LVNC with reduced left ventricular function and/or left ventricular dilation. We retrospectively reviewed gene testing in this cohort when available and identified 5 patients (10 %) with an FBN1 gene mutation. Syndrome breakdown as follows: 3 with Marfan, 1 with Shprintzen-Goldberg, and 1 with no identifiable syndrome. Derangements in fibrillin-1 may impact the compaction process resulting in LVNC. Although causation has not been proven by our report, it certainly raises interest in a possible mechanistic relationship between fibrillin-1 and LVNC given the increased prevalence of Marfan syndrome and fibrillin-1 gene mutations in this cohort. "	"Paquinimod reduces skin fibrosis in tight skin 1 mice, an experimental model of systemic sclerosis. Systemic Sclerosis (SSc) is an autoimmune disease characterized by vascular and immune dysfunction. A hallmark of SSc is the excessive accumulation of extracellular matrix in the skin and in internal organs. There is a high and unmet medical need for novel therapies in this disease. The pathogenesis of SSc is complex and still poorly understood, but the innate immune system has emerged as an important factor in the disease. SSc patients show increased numbers of macrophages/monocytes in the blood and in the skin compared to healthy individuals and these cells are important sources of profibrotic cytokines and chemokines. Paquinimod belongs to a class of orally active quinoline-3-carboxamide (quinoline) derivatives with immunomodulatory properties and has shown effects in several models of autoimmune/inflammatory disorders. Paquinimod is currently in clinical development for treatment of SSc. The immunomodulatory effects of paquinimod is by targeting the myeloid cell compartment via the S100A9 protein. In this study we investigate whether targeting of myeloid cells by paquinimod can effect disease development in an experimental model of SSc, the tight skin 1 (Tsk-1) mouse model. Seven weeks old female B6.Cg-Fbn1(Tsk)/J (Tsk-1) mice were treated with vehicle or paquinimod at the dose of 5 or 25mg/kg/day in the drinking water for 8 weeks. The effect of paquinimod on the level of skin fibrosis and on different subpopulations within the myeloid cell compartment in skin biopsies were evaluated by using histology, immunohistochemisty, a hydroxyproline assay and real-time PCR. Furthermore, the level of IgG in serum from treated animals was also analysed. The statistical analyses were performed using Mann-Whitney nonparametric two tailed rank test. The results show that treatment with paquinimod reduces skin fibrosis measured as reduction of skin thickness and decreased number of myofibroblasts and total hydroxyproline content. The effect on fibrosis was associated with a polarization of macrophages in the skin from a pro-fibrotic M2 to a M1 phenotype. Paquinimod treatment also resulted in a reduced TGFβ-response in the skin and an abrogation of the increased auto-antibody production in this SSc model. Paquinimod reduces skin fibrosis in an experimental model of SSc, and this effect correlates with local and systemic effects on the immune system."	"Intraplaque neovascularization as a novel therapeutic target in advanced atherosclerosis. Atherosclerosis is a lipid-driven inflammatory process with a tremendously high mortality due to acute cardiac events. There is an emerging need for new therapies to stabilize atherosclerotic lesions. Growing evidence suggests that intraplaque (IP) neovascularisation and IP hemorrhages are important contributors to plaque instability. Neovascularization is a complex process that involves different growth factors and inflammatory mediators of which their individual significance in atherosclerosis remains poorly understood. This review discusses different aspects of IP neovascularization in atherosclerosis including the potential treatment opportunities to stabilize advanced plaques. Furthermore, we highlight the development of accurate and feasible in vivo imaging modalities for IP neovascularization to prevent acute events. Although lack of a valuable animal model of IP neovascularization impeded the investigation of a causal and straightforward link between neovascularization and atherosclerosis, recent evidence shows that vein grafts in ApoE*3 Leiden mice as well as plaques in ApoE(-/-) Fbn1(C1039G+/-) mice are useful models for intraplaque neovessel research. Even though interference with vascular endothelial growth factor (VEGF) signalling has been widely investigated, new therapeutic opportunities have emerged. Cell metabolism, in particular glycolysis and fatty acid oxidation, appears to perform a crucial role in the development of IP neovessels and thereby serves as a promising target."	"A novel fibrillin-1 gene missense mutation associated with neonatal Marfan syndrome: a case report and review of the mutation spectrum. Marfan syndrome (MFS) is a heritable disorder of connective tissue resulting from pathogenic variants of the fibrillin-1 gene (FBN1). Neonatal Marfan syndrome (nMFS) is rare and the most severe form of MFS, involving rapidly progressive cardiovascular dysfunction leading to death during early childhood. The constant enrichment of the nMFS mutation spectrum is helpful to improve our understanding of genotype-phenotype correlations in the disease. Herein, we report a novel dominant mutation in exon 26 of FBN1 (c.3331 T &gt; C) in a sporadic case with nMFS. An 8-month-old Han Chinese girl presented with the classic nMFS phenotype, including prominent manifestations of bone overgrowth, aortic root dilatation, and multiple cardiac valve dysfunctions. Genetic analysis revealed that she was heterozygous for a de novo FBN1 missense mutation (c.3331 T &gt; C). The mutation leads to the substitution of a highly conserved FBN1 cysteine residue (p.Cys1111Arg), which is likely to severely perturb the FBN1 structure because of an alteration of the disulfide bond pattern in the calcium-binding epidermal growth factor-like (cbEGF) 12 domain. This variant was absent in 208 ethnically matched controls, providing further evidence that it may be causative of nMFS. An analysis of nMFS-associated mutations from the UMD-FBN1 database indicates that those de novo mutations altering disulfide bonds or Ca(2+) binding sites of the cbEGF domains encoded by exons 25-33, and a lack of phenotypic heterogeneity may be associated with an increased risk for nMFS. We diagnosed an infant with rare nMFS showing rapidly progressive cardiovascular dysfunction and widely systemic features. As the only causal FBN1 mutation identified in the patient, the missense mutation c.3331 T &gt; C (p.Cys1111Arg) was associated with the severe phenotype of MFS. However, the pathogenicity of the novel mutation needs further confirmation in other patients with nMFS. Our review of the prominent characteristics of nMFS mutations relative to classic or incomplete MFS-related mutations will be helpful for the recognition of novel nMFS-associated variants."	"miR-486-5p inhibits cell growth of papillary thyroid carcinoma by targeting fibrillin-1. Previous studies have demonstrated that miR-486-5p functions as a tumor suppressor or oncogene in various types of cancer. In the present study, we showed that miR-486-5p was significantly down-regulated in papillary thyroid carcinoma (PTC) tissues and cell lines, whereas miR-486-5p down-regulation inhibited PTC cell proliferation and increased apoptosis. Conversely, under-expression of miR-486-5p enhanced PTC cell proliferation and decreased apoptosis. Fibrillin-1 (FBN1) was shown to be a direct target of miR-486-5p and inversely regulated by miR-486-5p. FBN1 silencing led to decreased PTC cell proliferation and enhanced apoptosis in vitro, similar to that mediated by miR-486-5p. Furthermore, miR-486-5p over-expression or FBN1 knock-down inhibited, while up-regulation of FBN1 boosted xenograft tumor formation in vivo. Our data suggest that miR-486-5p induces PTC cell growth inhibition and apoptosis by targeting and suppressing FBN1. Thus, miR-486-5p/FBN1 might provide a promising therapeutic target for PTC treatment. "	"Analysis of TGFBR1*6A variant in individuals evaluated for Marfan syndrome. Marfan syndrome (MFS) and Loeys-Dietz syndrome (LDS) are genetic disorders that affect connective tissue as a result of dysregulated TGF-β signaling. MFS is most frequently caused by mutations in FBN1 whereas Loeys-Dietz syndrome results from mutations in TGFBR1 or TGFBR2. There is substantial inter- and intra-familial phenotypic variability among these disorders, suggesting the presence of genetic modifiers. Previously, a polymorphism in the TGFβR1 protein termed the TFGBR1*6A allele was found to be overrepresented in patients with MFS and was identified as a low penetrance allele with suggestion as a possible modifier. To further investigate the importance of this variant, a retrospective review of genetic and phenotypic findings was conducted for 335 patients evaluated for suspicion of MFS or related disorders. In patients with a diagnosis of MFS, the presence of the TFGBR1*6A allele was not associated with phenotypic differences. Similarly, careful phenotyping of patients who carried the TFGBR1*6A allele but did not have MFS did not identify an altered frequency of specific connective tissue features. In this small cohort, the results did not reach significance to identify the TFGBR1*6A allele as a major modifier for aortic dilation, ectopia lentis, or systemic features associated with MFS or other connective tissue disorders. © 2016 Wiley Periodicals, Inc."	"The search for genotype/phenotype correlation in Marfan syndrome: to be or not to be? NA"	"Losartan Attenuates Degradation of Aorta and Lung Tissue Micromechanics in a Mouse Model of Severe Marfan Syndrome. Marfan syndrome (MFS) is an autosomal dominant disease of the connective tissue due to mutations in the fibrillin-1 gene (FBN1). This study aimed at characterizing microelastic properties of the ascending aortic wall and lung parenchyma tissues from wild type (WT) and age-matched Fbn1 hypomorphic mice (Fbn1(mgR/mgR) mice) to identify tissue-specific biomechanical effects of aging and disease in MFS. Atomic force microscopy was used to indent lung parenchyma and aortic wall tissues, using Hybrid Eshelby Decomposition analysis to extract layer-specific properties of the intima and media. The intima stiffened with age and was not different between WT and Fbn1(mgR/mgR) tissues, whereas the media layer of MFS aortas showed progressive structural and mechanical degradation with a modulus that was 50% softer than WT by 3.5 months of age. Similarly, MFS mice displayed progressive structural and mechanical deterioration of lung tissue, which was over 85% softer than WT by 3.5 months of age. Chronic treatment with the angiotensin type I receptor antagonist, losartan, attenuated the aorta and lung tissue degradation, resulting in structural and mechanical properties not significantly different from age-matched WT controls. By revealing micromechanical softening of elastin-rich aorta and lung tissues with disease progression in fibrillin-1 deficient mice, our findings support the use of losartan as a prophylactic treatment that may abrogate the life-threatening symptoms of MFS."	"Marfan syndrome: ocular findings and novel mutations-in pursuit of genotype-phenotype associations. To analyze ocular involvement in patients diagnosed with Marfan syndrome (MFS), study their clinical findings and prognosis based on the type of FBN1 mutation, and evaluate possible genotype-phenotype correlations. Observational single-centre case series. Eleven patients diagnosed with MFS were included. All subjects met the Ghent criteria of MFS, the diagnosis was confirmed by genetic testing. All subjects underwent a complete ophthalmologic examination. We evaluated clinical data, the incidence of ectopia lentis (EL), and other eye disorders. The association of ocular signs with the type of mutation was analyzed. Four of the 11 patients had EL, of which 3 developed secondary glaucoma, and 62.5% of the phakic patients had myopia. Other ocular abnormalities included strabismus, retinal tears, retinal detachment, and amblyopia. The encountered types of mutations were premature termination codon (PTC) in 7 patients, missense in 2 cases, 1 aberration of splicing, and 1 indel mutation. Two novel mutations were found. Of the patients with EL, 2 had a missense, 1 an indel, and 1 a nonsense mutation. Myopia was the most frequent ocular involvement. Patients with a PTC mutation revealed to have a smaller risk of EL; however, more studies are required to indicate the mechanism of the correlation."	"Generation of heterozygous fibrillin-1 mutant cloned pigs from genome-edited foetal fibroblasts. Marfan syndrome (MFS) is an autosomal dominant genetic disease caused by abnormal formation of the extracellular matrix with an incidence of 1 in 3, 000 to 5, 000. Patients with Marfan syndrome experience poor quality of life caused by skeletal disorders such as scoliosis, and they are at high risk of sudden death from cardiovascular impairment. Suitable animal models of MFS are essential for conquering this intractable disease. In particular, studies employing pig models will likely provide valuable information that can be extrapolated to humans because of the physiological and anatomical similarities between the two species. Here we describe the generation of heterozygous fibrillin-1 (FBN1) mutant cloned pigs (+/Glu433AsnfsX98) using genome editing and somatic cell nuclear transfer technologies. The FBN1 mutant pigs exhibited phenotypes resembling those of humans with MFS, such as scoliosis, pectus excavatum, delayed mineralization of the epiphysis and disrupted structure of elastic fibres of the aortic medial tissue. These findings indicate the value of FBN1 mutant pigs as a model for understanding the pathogenesis of MFS and for developing treatments. "	"Mutations in LTBP3 cause acromicric dysplasia and geleophysic dysplasia. Acromelic dysplasias are a group of disorders characterised by short stature, brachydactyly, limited joint extension and thickened skin and comprises acromicric dysplasia (AD), geleophysic dysplasia (GD), Myhre syndrome and Weill-Marchesani syndrome. Mutations in several genes have been identified for these disorders (including latent transforming growth factor β (TGF-β)-binding protein-2 (LTBP2), ADAMTS10, ADAMSTS17 and fibrillin-1 (FBN1) for Weill-Marchesani syndrome, ADAMTSL2 for recessive GD and FBN1 for AD and dominant GD), encoding proteins involved in the microfibrillar network. However, not all cases have mutations in these genes. Individuals negative for mutations in known acromelic dysplasia genes underwent whole exome sequencing. A heterozygous missense mutation (exon 14: c.2087C&gt;G: p.Ser696Cys) in latent transforming growth factor β (TGF-β)-binding protein-3 (LTBP3) was identified in a dominant AD family. Two distinct de novo heterozygous LTPB3 mutations were also identified in two unrelated GD individuals who had died in early childhood from respiratory failure-a donor splice site mutation (exon 12 c.1846+5G&gt;A) and a stop-loss mutation (exon 28: c.3912A&gt;T: p.1304*Cysext*12). The constellation of features in these AD and GD cases, including postnatal growth retardation of long bones and lung involvement, is reminiscent of the null ltbp3 mice phenotype. We conclude that LTBP3 is a novel component of the microfibrillar network involved in the acromelic dysplasia spectrum."	"Significant improvement in crow's feet after treatment with Jet-M and a mixed solution of copper-GHK, oligo-hyaluronic acid, rhodiolar extract, tranexamic acid, and β-glucan (GHR formulation). Jet-M (Tav-Tech Ltd., Israel) is an instrument for skin resurfacing. When it sprays microdroplets of solution or shoots air on the skin, exfoliation and stretching of superficial layers can occur. Thus, it will increase percutaneous absorption of vitamins and other cosmetic agents. A cosmetic preparation containing copper-glycyl-L-histidyl-L-lysine, oligo-hyaluronic acid, rhodiolar extract, tranexamic acid, and β-glucan was used with Jet-M in one patient. Anesthesia was not administered and there was no pain during the treatment. A male aged 59 years was treated once a week for 12 weeks. In the clinical photographs, wrinkles around the treated eye were greatly decreased. Skin biopsies were taken from treated and untreated areas. Hematoxylin and eosin and Masson's trichrome staining showed increased collagen production in the upper dermis. On the other hand, collagen IV production was slightly increased. Fibrillin-1 and procollagen type 1 were greatly increased and tropoelastin was also increased. There was no adverse effect during and after treatment. "	"Extracellular Regulation of Bone Morphogenetic Protein Activity by the Microfibril Component Fibrillin-1. Since the discovery of bone morphogenetic proteins (BMPs) as pluripotent cytokines extractable from bone matrix, it has been speculated how targeting of BMPs to the extracellular matrix (ECM) modulates their bioavailability. Understanding these processes is crucial for elucidating pathomechanisms of connective tissue disorders characterized by ECM deficiency and growth factor dysregulation. Here, we provide evidence for a new BMP targeting and sequestration mechanism that is controlled by the ECM molecule fibrillin-1. We present the nanoscale structure of the BMP-7 prodomain-growth factor complex using electron microscopy, small angle x-ray scattering, and circular dichroism spectroscopy, showing that it assumes an open V-like structure when it is bioactive. However, upon binding to fibrillin-1, the BMP-7 complex is rendered into a closed ring shape, which also confers latency to the growth factor, as demonstrated by bioactivity measurements. BMP-7 prodomain variants were used to map the critical epitopes for prodomain-growth factor and prodomain-prodomain binding. Together, these data show that upon prodomain binding to fibrillin-1, the BMP-7 complex undergoes a conformational change, which denies access of BMP receptors to the growth factor."	"Marfan Syndrome Caused by Somatic Mosaicism in an FBN1 Splicing Mutation. NA"	"New insights into the structure, assembly and biological roles of 10-12 nm connective tissue microfibrils from fibrillin-1 studies. The 10-12 nm diameter microfibrils of the extracellular matrix (ECM) impart both structural and regulatory properties to load-bearing connective tissues. The main protein component is the calcium-dependent glycoprotein fibrillin, which assembles into microfibrils at the cell surface in a highly regulated process involving specific proteolysis, multimerization and glycosaminoglycan interactions. In higher metazoans, microfibrils act as a framework for elastin deposition and modification, resulting in the formation of elastic fibres, but they can also occur in elastin-free tissues where they perform structural roles. Fibrillin microfibrils are further engaged in a number of cell matrix interactions such as with integrins, bone morphogenetic proteins (BMPs) and the large latent complex of transforming growth factor-β (TGFβ). Fibrillin-1 (FBN1) mutations are associated with a range of heritable connective disorders, including Marfan syndrome (MFS) and the acromelic dysplasias, suggesting that the roles of 10-12 nm diameter microfibrils are pleiotropic. In recent years the use of molecular, cellular and whole-organism studies has revealed that the microfibril is not just a structural component of the ECM, but through its network of cell and matrix interactions it can exert profound regulatory effects on cell function. In this review we assess what is known about the molecular properties of fibrillin that enable it to assemble into the 10-12 nm diameter microfibril and perform such diverse roles."	"Neonatal Marfan Syndrome: Report of a Case with an Inherited Splicing Mutation outside the Neonatal Domain. We report a child and her mother affected by Marfan syndrome. The child presented with a phenotype of neonatal Marfan syndrome, revealed by acute and refractory heart failure, finally leading to death within the first 4 months of life. Her mother had a common clinical presentation. Genetic analysis revealed an inherited FBN1 mutation. This intronic mutation (c.6163+3_6163+6del), undescribed to date, leads to exon 49 skipping, corresponding to in-frame deletion of 42 amino acids (p.Ile2014_Asp2055del). FBN1 next-generation sequencing did not show any argument for mosaicism. Association in the same family of severe neonatal and classical Marfan syndrome illustrates the intrafamilial phenotype variability. "	"Meta-analysis of gene-environment-wide association scans accounting for education level identifies additional loci for refractive error. Myopia is the most common human eye disorder and it results from complex genetic and environmental causes. The rapidly increasing prevalence of myopia poses a major public health challenge. Here, the CREAM consortium performs a joint meta-analysis to test single-nucleotide polymorphism (SNP) main effects and SNP × education interaction effects on refractive error in 40,036 adults from 25 studies of European ancestry and 10,315 adults from 9 studies of Asian ancestry. In European ancestry individuals, we identify six novel loci (FAM150B-ACP1, LINC00340, FBN1, DIS3L-MAP2K1, ARID2-SNAT1 and SLC14A2) associated with refractive error. In Asian populations, three genome-wide significant loci AREG, GABRR1 and PDE10A also exhibit strong interactions with education (P&lt;8.5 × 10(-5)), whereas the interactions are less evident in Europeans. The discovery of these loci represents an important advance in understanding how gene and environment interactions contribute to the heterogeneity of myopia. "	"Early Impairment of Lung Mechanics in a Murine Model of Marfan Syndrome. Early morbidity and mortality in patients with Marfan syndrome (MFS) -a connective tissue disease caused by mutations in fibrillin-1 gene- are mainly caused by aorta aneurysm and rupture. However, the increase in the life expectancy of MFS patients recently achieved by reparatory surgery promotes clinical manifestations in other organs. Although some studies have reported respiratory alterations in MFS, our knowledge of how this connective tissue disease modifies lung mechanics is scarce. Hence, we assessed whether the stiffness of the whole lung and of its extracellular matrix (ECM) is affected in a well-characterized MFS mouse model (FBN1C1039G/+). The stiffness of the whole lung and of its ECM were measured by conventional mechanical ventilation and atomic force microscopy, respectively. We studied 5-week and 9-month old mice, whose ages are representative of early and late stages of the disease. At both ages, the lungs of MFS mice were significantly more compliant than in wild type (WT) mice. By contrast, no significant differences were found in local lung ECM stiffness. Moreover, histopathological lung evaluation showed a clear emphysematous-like pattern in MFS mice since alveolar space enlargement was significantly increased compared with WT mice. These data suggest that the mechanism explaining the increased lung compliance in MFS is not a direct consequence of reduced ECM stiffness, but an emphysema-like alteration in the 3D structural organization of the lung. Since lung alterations in MFS are almost fully manifested at an early age, it is suggested that respiratory monitoring could provide early biomarkers for diagnosis and/or follow-up of patients with the Marfan syndrome. "	"Human embryonic stem cells derived from abnormal blastocyst donated by Marfan syndrome patient. Human embryonic stem cell (hESC) line was derived from abnormal blastocyst donated by Marfan syndrome patient after preimpantation genetic diagnosis (PGD) treatment. DNA sequencing analysis confirmed that the hESC line carried the heterozygous deletion mutation, c.3536delA, of FBN1 gene. Characteristic tests proved that the hESC line presented typicalmarkers of pluripotency and had the capability to formthe three germlayers both in vitro and in vivo."	"The p.Gly61Glu Mutation in CYP1B1 Affects the Extracellular Matrix in Glaucoma Patients. The aim of this work was to assess the possible effects of CYP1B1 mutations on the extracellular matrix (ECM) in glaucoma patients. CYP1B1 mutations are the cause of disease in a notable fraction of primary congenital glaucoma (PCG) patients and in a smaller fraction of primary open angle glaucoma (POAG) patients. The study was performed on a glaucoma family with the common homozygous p.Gly61Glu CYP1B1 mutation. The father was affected with POAG and three siblings had PCG. Microscopy was performed on the skin of the father and one son, as well as controls. Immunohistochemical studies were done using anti-CYP1B1 and anti-fibrillin-1 antibodies. Fibrillin-1 served as a marker for the ECM, and electron microscopy was also performed. CYP1B1 expression patterns were the same in the patients and controls. However, microfibrils that are associated with fibrillin-1 were less abundant and more fragmented in both patients. Electron microscopy showed disturbed collagen fibers only in the PCG patient. The p.Gly61Glu mutation in CYP1B1 affects the ECM structure. This implies that the ECM of the trabecular meshwork may also be disrupted in a manner that affects aqueous humor flow resulting in increased intraocular pressure and contributing to the glaucoma phenotype."	NA	NA	NA	NA
+"LOX"	"familial thoracic aortic aneurysm and aortic dissection"	"EZH2-mediated Epigenetic Silencing of miR-29/miR-30 targets LOXL4 and contributes to Tumorigenesis, Metastasis, and Immune Microenvironment Remodeling in Breast Cancer. Enhancer of Zeste Homolog 2 (EZH2), a key epigenetic regulator, is involved in breast cancer progression and metastasis. LOXL4 is increasingly recognized as an important player in cancer progression. To date, how EZH2 regulates LOXL4 in the progression of breast cancer remains unclear. Methods: We evaluated the association between LOX family proteins and EZH2 in invasive breast carcinoma through the starBase v2.0 analysis, and its correlation with breast tumorigenesis using the Oncomine dataset. We then applied miRcode data combined with gene expression omnibus (GEO) data to screen candidate miRNAs mediating the regulation of LOXL4 by EZH2. We explored the regulatory mechanism of EZH2, miR-29b/miR-30d, and LOXL4 in breast cancer cells by qRT-PCR, Western blotting, cell proliferation, colony formation, and wound healing assays, xenograft experiments, dual-luciferase reporter assay, and chromatin immunoprecipitation. All statistical tests were two-sided. Results: Inhibition of EZH2 or LOXL4, or miR-29b/miR-30d overexpression, decreased breast cancer cell proliferation, migration, and metastasis in vitro and in vivo. LOXL4 was identified as a direct target of miR-29b and miR-30d. EZH2 inhibition enhanced miR-30d and miR-29b transcription via promoter binding activity, leading to the reduced expression of LOXL4. Immunohistochemical analysis of human breast cancer specimens and flow cytometry analysis of tumor-infiltrating macrophages in mice showed a positive association of EZH2 with LOXL4 expression and macrophage infiltration. Conclusions: Our findings identified EZH2-miR-29b/miR-30d-LOXL4 signaling pathway was involved in breast tumorigenesis, and suggested that the epigenetic modulation represents a potential therapeutic target for breast cancer by controlling macrophage activation."	"Secretion of Pseudomonas Aeruginosa Lipoxygenase by Pichia Pastoris upon Glycerol Feed. Pseudomonas aeruginosa lipoxygenase (PaLOX) catalyses the peroxidation of unsaturated fatty acids. Not only linoleic acid, but also linolenic acid and oleic acid are oxidised. The natural host secretes PaLOX into the periplasmic space. Herein, we aimed to secrete PaLOX to the culture supernatant of Pichia pastoris. Since protein background in the culture supernatant is typically rather low, this strategy allows for almost pure production of PaLOX applicable for the valorisation of renewable fatty acids, for example for the production of green leaf volatiles. Using the CAT1 promoter system and the well-established α-factor signal sequence for secretion, we compared methanol- to glycerol-induced secretion and showed 4 times more LOX activity in the culture supernatant under methanol-free conditions. In addition, we purified secreted PaLOX and compared the specific activity with enzyme in culture supernatant. Notably, we could show the predominant activity when working with enzyme in culture supernatant reaching 5 times higher specific activity than purified PaLOX. A specific activity of 11.6 U mg<sup>-1</sup> for enzyme in culture supernatant was determined. This article is protected by copyright. All rights reserved."	"Radix Rehmanniae Praeparata promotes bone fracture healing through activation of TGF-β signaling in mesenchymal progenitors. Radix Rehmanniae Praeparata (RR), the steamed roots of Rehmannia glutinosa, is a traditional Chinese medicine with the function of kidney-nourishing, and it has been safety used for centuries to treat bone-related disorders. The aim of this study is to investigate the positive effect and underlying mechanism of RR enhancing bone fracture healing in mouse model. Ten-week-old C57BL/6J mice were subjected to a unilateral open transverse tibial fracture and provided a daily treatment of RR. Bone samples were harvested for tissue analyses including x-ray, μCT, histology, histomorphometry, biomechanical testing, immunohistochemical (IHC) and quantitative gene expression analysis. To determine the role of TGF-β in accelerating fracture healing effect of RR, aforementioned experiments were performed on Gli1-CreER; Tgfbr2 f<sup>lox/flox</sup> (Tgfbr2<sup>Gli1ER</sup>) conditional knockout mice. RR promoted bone fracture healing and strengthened bone intensity in wild-type and Cre<sup>-</sup> mice with the activation of TGF-β/Smad2 signaling, on the contrary, RR failed to accelerating fracture healing in Tgfbr2<sup>Gli1ER</sup> mice. RR promotes bone fracture healing by intensify the contribution of Gli1+ cells on bone and cartilage formation mainly in TGF-β-dependent manner. RR is an alternative option for clinical treatment of fracture."	"Integral membrane enzymes in eicosanoid metabolism: Structures, mechanisms and inhibitor design. Eicosanoids are potent lipid mediators involved in central physiological processes such as hemostasis, renal function and parturition. When formed in excess, eicosanoids become critical players in a range of pathological conditions, in particular pain, fever, arthritis, asthma, cardiovascular disease and cancer. Eicosanoids are generated via oxidative metabolism of arachidonic acid along the cyclooxygenase (COX) and lipoxygenase (LOX) pathways. Specific lipid species are formed downstream of COX and LOX by specialized synthases, some of which reside on the nuclear and endoplasmic reticulum, including mPGES-1, FLAP, LTC4 synthase, and MGST2. These integral membrane proteins are members of the family &quot;membrane associated proteins in eicosanoid and glutathione metabolism&quot; (MAPEG). Here we focus on this enzyme family, which encompasses six human members typically catalysing glutathione dependent transformations of lipophilic substrates. Enzymes of this family have evolved to combat the topographical challenge and unfavourable energetics of bringing together two chemically different substrates, from cytosol and lipid bilayer, for catalysis within a membrane environment. Thus, structural understanding of these enzymes are of utmost importance to unravel their molecular mechanisms, mode of substrate entry and product release, in order to facilitate novel drug design against severe human diseases."	"Recognition of lysyl oxidase as a potential predictive biomarker for oral squamous cell carcinoma: an immunohistochemical study. Lysyl Oxidase (LOX) is a copper amine oxidase which belongs to the LOX multigene family and is normally involved in cross-linking of stromal collagen fibres. LOX expression has been found to be associated with increased episodes of recurrence, metastasis and overall poor prognosis in renal cell carcinomas and melanomas. This study aimed to assess the effects of LOX on the prognosis of Oral Squamous Cell Carcinoma (OSCC), which is one of the most common cancers in India. The immunohistochemical expression of Lysyl Oxidase using LOX2 primary antibody was assessed at the tumour proper, invasive tumour front and peri-tumoural stroma in tissue sections from 40 cases of histologically proven OSCC. LOX expression was elevated in OSCC patients who had lymph node metastasis and in those who died of disease. No significant variation was seen with histological grade. LOX has a 'pro-neoplastic' effect as it modulates the host stroma to favour increasing tumour mass and worsening prognosis. Increased expression of LOX causes increased collagen fibre cross-linkage that 'stiffens' the stromal matrix. This increases compressive stresses contributing to tissue hypoxia that elevates Rho GTPase-dependent cytoskeletal tension leading to erratic tumour cell morphogenesis that in turn confers motility to these cells resulting in metastasis. Inhibitors of LOX can potentially down-regulate LOX levels in the tumour micro-environment by controlling tissue hypoxia and curtailing the production of hypoxic LOX molecules."	"Study on antitumor activities of the chrysin-chromene-spirooxindole on Lewis lung carcinoma C57BL/6 mice in vivo. The our previous study synthesized the chrysin-chromene-spirooxindole hybrids 3, and further found compound 3e had good antitumor activity against A549 cells in vitro through multi-target co-regulation of the p53 signalling pathway to inhibit the proliferation of A549 cells. This study was designed to evaluate the antitumor effects of compound 3e on Lewis lung carcinoma of C57BL/6 mice in vivo. Compound 3e significantly inhibited the growth of transplanted tumors in C57BL/6 mice and induced the apoptosis of tumor cells. Further studies showed that compound 3e activates and expands the anti-cancer activity of p53 by inhibiting the expression of MDM2, Akt and 5-Lox proteins, accordingly promotes the expressions Bax and inhibit the Bcl-2 protein, the release of Cyt c as well, which resulted in the activation of apoptotic pathway in tumor cells eventually. Moreover, Compound 3e inhibited tumor metastasis by down-regulating VEGF, ICAM-1 and MMP-2 protein expression and angiogenesis. These results suggested that compound 3e exerts an effective antitumor activity in vivo through activating the p53 signaling pathway, which could be exploited as a promising candidate for the development of new anti-tumour drugs."	"Insights into profiling of volatile ester and LOX-pathway related gene families accompanying post-harvest ripening of 'Nanguo' pears. 'Nanguo' pear is particularly renowned for its fragrance. Esters are the main components of its aroma, which are synthesized primarily by the LOX pathway. We identified the main volatile esters and critical gene family members involved in the LOX pathway by monitoring their variation accompanying post-harvest ripening and examining their roles through principal component analysis (PCA), partial least-square regression (PLSR), and correlation analysis. In pears ripening to the optimum taste period (OTP), components and contents of volatile esters reached a peak, of which ethyl butanoate, ethyl hexanoate, and hexyl acetate were most prominent. Linoleic acid and linolenic acid contents rose greatly until OTP and then declined; the activities of LOX, alcohol dehydrogenase (ADH), and alcohol acyltransferase (AAT) increased progressively until the OTP. Among the genes involved in LOX-pathway, the expressions of PuLOX3, PuADH3, and PuAAT contributed most to changes of total ester and main esters in 'Nanguo' pears."	"Synthesis, inhibitory activity and in silico docking of dual COX/5-LOX inhibitors with quinone and resorcinol core. Based on the significant anti-inflammatory activity of natural quinone primin (5a), series of 1,4-benzoquinones, hydroquinones, and related resorcinols were designed, synthesized, characterized and tested for their ability to inhibit the activity of cyclooxygenase (COX-1 and COX-2) and 5-lipoxygenase (5-LOX) enzymes. Structural modifications resulted in the identification of two compounds 5b (2-methoxy-6-undecyl-1,4-benzoquinone) and 6b (2-methoxy-6-undecyl-1,4-hydroquinone) as potent dual COX/5-LOX inhibitors. The IC50 values evaluated in vitro using enzymatic assay were for compound 5b IC50 = 1.07, 0.57, and 0.34 μM and for compound 6b IC50 = 1.07, 0.55, and 0.28 μM for COX-1, COX-2, and 5-LOX enzyme, respectively. In addition, compound 6d was identified as the most potent 5-LOX inhibitor (IC50 = 0.14 μM; reference inhibitor zileuton IC50 = 0.66 μM) from the tested compounds while its inhibitory potential against COX enzymes (IC50 = 2.65 and 2.71 μM for COX-1 and COX-2, respectively) was comparable with the reference inhibitor ibuprofen (IC50 = 4.50 and 2.46 μM, respectively). The most important structural modification leading to increased inhibitory activity towards both COXs and 5-LOX was the elongation of alkyl chain in position 6 from 5 to 11 carbons. Moreover, the monoacetylation in ortho position of bromo-hydroquinone 13 led to the discovery of potent (IC50 = 0.17 μM) 5-LOX inhibitor 17 (2-bromo-6-methoxy-1,4-benzoquinone) while bromination stabilized the hydroquinone form. Docking analysis revealed the interaction of compounds with Tyr355 and Arg120 in the catalytic site of COX enzymes, while the hydrophobic parts of the molecules filled the hydrophobic substrate channel leading up to Tyr385. In the allosteric catalytic site of 5-LOX, compounds bound to Tyr142 and formed aromatic interactions with Arg138. Taken together, we identified optimal alkyl chain length for dual COX/5-LOX inhibition and investigated other structural modifications influencing COX and 5-LOX inhibitory activity."	"Delayed short-term tamoxifen treatment does not promote remyelination or neuron sparing after spinal cord injury. The tamoxifen-dependent Cre/lox system in transgenic mice has become an important research tool across all scientific disciplines for manipulating gene expression in specific cell types. In these mouse models, Cre-recombination is not induced until tamoxifen is administered, which allows researchers to have temporal control of genetic modifications. Interestingly, tamoxifen has been identified as a potential therapy for spinal cord injury (SCI) and traumatic brain injury patients due to its neuroprotective properties. It is also reparative in that it stimulates oligodendrocyte differentiation and remyelination after toxin-induced demyelination. However, it is unknown whether tamoxifen is neuroprotective and neuroreparative when administration is delayed after SCI. To properly interpret data from transgenic mice in which tamoxifen treatment is delayed after SCI, it is necessary to identify the effects of tamoxifen alone on anatomical and functional recovery. In this study, female and male mice received a moderate mid-thoracic spinal cord contusion. Mice were then gavaged with corn oil or a high dose of tamoxifen from 19-22 days post-injury, and sacrificed 42 days post-injury. All mice underwent behavioral testing for the duration of the study, which revealed that tamoxifen treatment did not impact hindlimb motor recovery. Similarly, histological analyses revealed that tamoxifen had no effect on white matter sparing, total axon number, axon sprouting, glial reactivity, cell proliferation, oligodendrocyte number, or myelination, but tamoxifen did decrease the number of neurons in the dorsal and ventral horn. Semi-thin sections confirmed that axon demyelination and remyelination were unaffected by tamoxifen. Sex-specific responses to tamoxifen were also assessed, and there were no significant differences between female and male mice. These data suggest that delayed tamoxifen administration after SCI does not change functional recovery or improve tissue sparing in female or male mice."	"Lipoxins, RevD1 and 9, 13 HODE as the most important derivatives after an early incident of ischemic stroke. There is limited information available regarding the association of plasma free fatty acids (FFA) and inflammation mediators with ischemic stroke. At the same time, new treatment strategies are being pursued. The aim of this study was to carry out a thorough analysis of inflammation with multiple FFA-derivative mediators after and ischemic stroke and standard treatment. HPLC separations of 17 eicosanoids were performed using an Agilent Technologies 1,260 liquid chromatograph. The profiles of the esters of fatty acids were labelled by means of gas chromatography. FFA, and eicosanoid profiles in the group of patients after ischemic stroke significantly differed from the profile of the control group. Studies confirmed the involvement of derivative synthesis pathways responsible for the inflammation, especially palmitic acid (9 and 13 HODE), arachidonic acid, EPA and DHA. Arachidonic acid derivatives were synthesised on 5LOX, 15 LOX and COX pathways with the participation of prostaglandins while omega 3 derivatives strengthened the synthesis of resolvins, RevD1 in particular. The ability to accelerate the quenching of inflammation after ischemic stroke seems to be a promising strategy of stroke treatment in its early stage. In this context, our study points to lipoxins, RevD1, and 9, 13 HODE as the most important derivatives."	"Catalytic characterization of heterodimeric linoleate 13S-lipoxygenase from black soybean (Glycine max (L.) Merr.). A novel lipoxygenase (BLOX) was purified from black soybean (Glycine max (L.) Merr.), and its catalytic properties were characterized. The molecular weight of BLOX was 101 kDa and its unique heterodimeric structure with two different subunits of molecular weight 46 kDa and 55 kDa was elucidated. The optimum pH and temperature of BLOX were pH 9.5 and 40 °C, respectively. BLOX was highly stable at the pH range of 6.0-10.0 and below 40 °C, and was stimulated by adding ferrous ion (Fe<sup>2+</sup>). In terms of substrate specificity, BLOX showed a substrate preference to linoleic acid that is the main substance to produce hydroperoxides in soybean. When it reacted with linoleic acid, the major product was 13(S)-hydroperoxy-9,11-octadecadienoic acid; therefore, it could be classified into the linoleate 13S-LOX family (EC 1.13.11.12). Finally, the kinetic parameters (Vmax, Km, and kcat) of BLOX were 0.124 mM min<sup>-1</sup>, 0.636 mM, and 12.28 s<sup>-1</sup>, respectively, and consequently, the catalytic efficiency (kcat/Km) was calculated as 1.93 × 10<sup>4</sup> M<sup>-1</sup>·s<sup>-1</sup>. These catalytic characteristics of BLOX could contribute to understanding the enzymatic rancidification of black soybean, and to further biotechnical approaches to control and mitigate the deterioration."	"The loss of STAT3 in mature osteoclasts has detrimental effects on bone structure. Signal Transducer and Activator of Transcription 3 (STAT3) has recently been shown to be involved in bone development and has been implicated in bone diseases, such as Job's Syndrome. Bone growth and changes have been known for many years to differ between sexes with male bones tending to have higher bone mass than female bones and older females tending to lose bone mass at faster rates than older males. Previous studies using conditional knock mice with Stat3 specifically deleted from the osteoblasts showed both sexes exhibited decreased bone mineral density (BMD) and strength. Using the Cre-Lox system with Cathepsin K promotor driving Cre to target the deletion of the Stat3 gene in mature osteoclasts (STAT3-cKO mice), we observed that 8-week old STAT3-cKO female femurs exhibited significantly lower BMD and bone mineral content (BMC) compared to littermate control (CN) females. There were no differences in BMD and BMC observed between male knock-out and male CN femurs. However, micro-computed tomography (μCT) analysis showed that both male and female STAT3-cKO mice had significant decreases in bone volume/tissue volume (BV/TV). Bone histomorphometry analysis of the distal femur, further revealed a decrease in bone formation rate and mineralizing surface/bone surface (MS/BS) with a significant decrease in osteoclast surface in female, but not male, STAT3-cKO mice. Profiling gene expression in an osteoclastic cell line with a knockdown of STAT3 showed an upregulation of a number of genes that are directly regulated by estrogen receptors. These data collectively suggest that regulation of STAT3 differs in male and female osteoclasts and that inactivation of STAT3 in osteoclasts affects bone turnover more in females than males, demonstrating the complicated nature of STAT3 signaling pathways in osteoclastogenesis. Drugs targeting the STAT3 pathway may be used for treatment of diseases such as Job's Syndrome and osteoporosis."	"GC-MS analysis, antimicrobial, antioxidant, antilipoxygenase and cytotoxic activities of Jacaranda mimosifolia methanol leaf extracts and fractions. Jacaranda mimosifolia trees are grown in frost-free regions globally. The aim of this study was to evaluate the methanol crude extract and various fractions of increasing polarity of J. mimosifolia leaves for bioactive metabolites, as well as antimicrobial, antioxidant and anticancer activities. The anti-inflammatory potential of the various fractions of J. mimosifolia leaf extract was studied via the lipoxygenase (LOX) inhibitory assay. Methanol crude extract (ME), derived fractions extracted with chloroform (CF) and ethyl acetate (EAF), and residual aqueous extract (AE) of dried J. mimosifolia leaves were assayed for polyphenolic compounds, their antioxidant, antimicrobial and lipoxygenase (LOX) inhibitory activities, and anticancer properties. Polyphenolic compounds were determined via HPLC while phytochemicals (total phenolics, flavonoids, tannins and ortho-diphenol contents), antioxidant activities (DPPH, hydrogen peroxideperoxide, hydroxyl and superoxide radical anions) and LOX were measured via spectrophotometry. Methanol extracts and various fractions were evaluated for antibacterial activities against Bacillus subtilis, Klebsiella pneumonia, Pseudomonas aeruginosa and Staphylococcus aureus. Antifungal potential of the fractions was tested against three species: Aspergillus flavus, Aspergillus fumigatus and Fusarium oxysporum. The highest values for total phenolic content (TPC), total flavonoid content (TFC), flavonols, tannins and ortho-diphenols were in the ME, followed by CF &gt; EAF &gt; AE. ME also had the highest antioxidant activity with EC50 values 48±1.3, 45±2.4, 42±1.3 and 46±1.3 μg/mL based on the DPPH, hydrogen peroxide, hydroxyl radical and superoxide radical assays, respectively. TPC and TFC showed a significant, strong and positive correlation with the values for each of these antioxidant activities. ME exhibited anti-inflammatory potential based on its LOX inhibitory activity (IC50 = 1.3 μg/mL). ME also had the maximum antibacterial and antifungal potential, followed by EAF &gt; CF &gt; AE. Furthermore, ME showed the strongest cytotoxic effect (EC50 = 10.7 and 17.3 μg/mL) against human hormone-dependent prostate carcinoma (LnCaP) and human lung carcinoma (LU-1) cell lines, respectively. Bioactive compounds present in leaf methanol extracts of J. mimosifolia were identified using gas chromatography-mass spectrometry (GC-MS). Fifteen compounds were identified including phenolic and alcoholic compounds, as well as fatty acids. Our results suggest that J. mimosifolia leaves are a good source of natural products with antioxidant, anti-inflammatory and anti-cancer properties for potential therapeutic, nutraceutical and functional food applications."	"Ketamine alleviates HMGB1-induced acute lung injury through TLR4 signaling pathway. Acute lung injury (ALI) is a common critical respiratory disease that seriously threatens human health. Ketamine has good anti-inflammatory and immune-regulating properties that can delay the lung injury process. High mobility group box protein 1 (HMGB1) plays an important role in the occurrence, development and treatment of ALI. Toll-like receptor 4 (TLR4) is the receptor for HMGB1. The aim of this study was to determine the role of the HMGB1 TLR4 signaling pathway in the treatment of ALI using ketamine. A total of 30 healthy, male, 8-week-old Sprague-Dawley rats were randomly, equally divided into a control group, an lipopolysaccharide (LPS) group and a ketamine group. In order to establish a rat ALI model, 15 mg/kg of LPS was injected into the femoral veins. Ketamine was intravenously injected (10 mg/kg) into the experimental group rats. The rats were euthanized 24 h after modeling and lung tissue samples were collected. Western blot was used to test TLR4, MyD88, TRAF-6, LOX-1, and HMGB1 protein expression in the lung tissue. Real-time polymerase chain reaction (RT-PCR) was performed to detect TLR4, MyD88, TRAF-6, LOX-1, and HMGB1 mRNA levels. Compared with the controls, the LPS group had significantly higher TLR4, MyD88, TRAF-6, LOX-1, and HMGB1 mRNA and protein levels (p &lt; 0.05). These levels were significantly lower after ketamine intervention in comparison with the LPS group (p &lt; 0.05). A positive correlation was found between TLR4 and HMGB1 expression in the LPS and ketamine groups (r = 0.952, p &lt; 0.001; r = 0.941, p &lt; 0.001). Ketamine attenuates HMGB1-induced ALI, possibly by regulating the TLR4 signaling pathway."	"KAP1 silencing relieves OxLDL-induced vascular endothelial dysfunction by down-regulating LOX-1. KRAB domain-associated protein 1 (KAP1) is highly expressed in atherosclerotic plaques. Here, we studied the role of KAP1 in atherosclerosis development using a cell model of endothelial dysfunction induced by oxidative low-density lipoprotein (OxLDL). The phosphorylation and protein levels of KAP1 were similar between OxLDL-treated and non-treated endothelial cells (ECs). KAP1 depletion significantly inhibited the production of OxLDL-enhanced reactive oxygen species and the expression of adhesion molecules in ECs. Treatment with OxLDL promoted the proliferation and migration of ECs, which was also confirmed by the elevated levels of the proliferative markers c-Myc and PCNA, as well as the migratory marker MMP-9. However, these effects were also abrogated by KAP1 depletion. Moreover, the depletion of KAP1 in OxLDL-treated ECs resulted in decreases in the LOX-1 level and increases in eNOS expression. Generally, the data suggest that strategies targeting KAP1 depletion might be particularly useful for the prevention or treatment of atherosclerosis."	"Leaves of White Beetroot As a New Source of Antioxidant and Anti-Inflammatory Compounds. The white beetroot cv. Śnieżna Kula is the first betanin-free beetroot registered in the European Union. The aim of this study was to compare the phenolic acids profile and antioxidant capacity of leaves of white (SK) and red (CC) beetroots and red (LC) and white (BL) Swiss chard growing in Poland. LC leaves were the richest source of total phenolics (16.55 mg GAE/g FW) and phenolic acids (1.81 mg/g FW), while the highest content of flavonoids was determined in CC leaves (1.6 mg QE/g FW). The highest antiradical activity was observed for LC, whereas CC extract exhibited the highest chelating power. BL and CC leaf extracts demonstrated high LOX inhibitory potential (EC50 = 53.23 and 56.97 mg FW/mL, respectively). An uncompetitive type of LOX inhibition was obtained for all extracts. SK extracts demonstrated the highest XO inhibitory activity (EC50 = 81.04 mg FW/mL). A noncompetitive type of XO inhibition was obtained in both extracts from red leaves (CC and LC), whereas an uncompetitive mode of inhibition was observed in the case of white leaf (SK and LC) extracts. Thus, it can be assumed that the presence of betanin influences the XO inhibition mechanism."	"Identification of the aberrantly methylated differentially expressed genes in proliferative diabetic retinopathy. Diabetic retinopathy (DR) is the most common complication of diabetes. Proliferative DR (PDR) is a more advanced stage of DR, which can cause severe impaired vision and even blindness. However, the precise pathological mechanisms of PDR remain unknown. DNA methylation serves an important role in the initiation and progression of numerous types of disease including PDR. The purpose of this study was to identify the aberrantly methylated differentially expressed genes (DEGs) as potential therapeutic targets of PDR. The gene expression microarray dataset GSE60436 and the methylation profiling microarray dataset GSE57362 were used to determine the aberrantly methylated DEGs in PDR, utilizing normal retinas as controls and fibrovascular membranes (FVMs) in patients with PDR as PDR samples. The functional term and signaling pathway enrichment analysis of the selected genes were subsequently performed. In addition, protein-protein interaction (PPI) networks were constructed to determine the hub genes, and the network of transcriptional factor (TF) and target hub genes was also analyzed. In total, 132 hypomethylated genes were found to be upregulated, whereas 172 hypermethylated genes were discovered to be downregulated in PDR. The hypomethylated upregulated genes were found to be enriched in the pathways, such as &quot;cell-substrate adhesion&quot;, &quot;adherens junction&quot;, &quot;cell adhesion molecule binding&quot; and &quot;extracellular matrix receptor interactions&quot;. Meanwhile, the hypermethylated downregulated genes were enriched in the pathways, such as &quot;visual perception&quot;, &quot;presynapse&quot; and the &quot;synaptic vesicle cycle&quot;. Based on the PPI analysis, a total of eight hub genes were identified: CTGF, SERPINH1, LOX, RBP3, OTX2, RPE65, OPN1SW and NRL. It was hypothesized that the aberrant methylation of these genes might be related to the possible pathophysiology of PDR. An important transcriptional factor, TFDP1, was discovered to share the closest interactions with the hub genes from the gene-TF network. In conclusion, the present study identified an association among DNA methylation and gene expression in PDR using bioinformatics analysis, and identified the hub genes which might be potential methylation-based diagnosis and treatment targets for PDR in the near future."	"Eosinophils promote corneal wound healing via the 12/15-lipoxygenase pathway. Lipid mediators play important roles in regulating inflammatory responses and tissue homeostasis. Since 12/15-lipoxygenase (12/15-LOX)-derived lipid mediators such as lipoxin A4 (LXA4 ) and protectin D1 (PD1) protect against corneal epithelial cell damage, the major cell types that express 12/15-LOX and contribute to the corneal wound healing process are of particular interest. Here, we found that eosinophils were the major cell type expressing 12/15-LOX during the corneal wound healing process. Eosinophils were recruited into the conjunctiva after corneal epithelium wounding, and eosinophil-deficient and/or eosinophil-specific 12/15-LOX knockout mice showed delayed corneal wound healing compared with wild-type mice. Liquid chromatography-tandem mass spectrometry (LC-MS/MS)-based mediator lipidomics revealed that a series of 12/15-LOX-derived mediators were significantly decreased in eosinophil-deficient mice and topical application of 17-hydroxydocosahexaenoic acid (17-HDoHE), a major 12/15-LOX-derived product, restored the phenotype. These results indicate that 12/15-LOX-expressing eosinophils, by locally producing pro-resolving mediators, significantly contribute to the corneal wound healing process in the eye."	"Puerarin Exerts the Hepatoprotection from Chronic Alcohol-Induced Liver Injury via Inhibiting the Cyclooxygenase-2 and the 5-Lipoxygenase Pathway in Rats. Puerarin (PR) as one of the main ingredients of the root of the traditional herb Kudzu has been suggested to improve chronic alcohol-induced liver injury. We explore the specific mechanisms of PR on hepatocellular changes after administration of alcohol. Sprague-Dawley rats were treated with 55% alcohol for 12 weeks to induce a chronic alcoholic liver damage model. Then the rats in each group were administered by oral gavage with zileuton, celecoxib, and PR for 2 weeks, respectively. In the PR group, the weight loss was markedly improved and the abnormal serum alanine aminotransferase and aspartate aminotransferase were significantly lowered after PR treatment when compared to the alcoholic liver injured model group. Pathological examination indicated that alcohol-induced hepatocellular injury was improved by the PR treatment. The 5-lipoxygenase (5-Lox) and cyclooxygenase-2 (Cox-2) at the protein level and the mRNA level were obviously downregulated accompanied with the PR treatment. Meanwhile, the peroxisome proliferator-activated receptor γ (PPAR-γ) at the protein and mRNA level was notably elevated and the tumor necrosis factor α at the protein and mRNA level was markedly decreased following the PR treatment. The possible cytoprotective mechanisms of PR may be involved inhibition of the Cox-2 pathway and the 5-Lox pathway to suppress inflammatory response and regulate the protective factor PPAR-γ expression. Hintergrund: Es wird diskutiert, dass Puerarin (PR), einer der Hauptinhaltsstoffe des traditionellen pflanzlichen Mittels Kudzu-Wurzel, Verbesserungen bei chronisch-alkoholbedingter Leberschädigung bewirkt. Hier werden die spezifischen Mechanismen untersucht, über die sich PR auf hepatozelluläre Veränderungen infolge der Verabreichung von Alkohol auswirkt. Methoden: Sprague-Dawley-Ratten wurden über 12 Wochen mit 55-pro­zentigem Alkohol behandelt, um ein Modell für chronisch-alkoholinduzierte Leberschädigung zu erzeugen. Anschließend erhielten die Ratten in den Interventionsgruppen über zwei Wochen Zileuton, Celecoxib bzw. PR per oraler Sondenfütterung. Ergebnisse: In der PR-Gruppe war der Gewichtsverlust deutlich verbessert, und die anomalen Serumwerte für Alanin-Aminotransferase und Aspartat-Aminotransferase waren nach der Anwendung von PR signifikant niedriger als in der Kontrollgruppe mit chronisch-alkoholinduzierter Leberschädigung. Die pathologische Untersuchung deutete darauf hin, dass die alkoholinduzierte Leberschädigung sich durch die PR-Behandlung gebessert hatte. 5-Lipoxygenase (5-Lox) und Cyclooxygenase 2 (Cox-2) waren nach der PR-Behandlung sowohl auf Protein- als auch auf mRNA-Ebene deutlich herunterreguliert. Hingegen war der Peroxisom-Proliferator-aktivierte Rezeptor γ (PPAR-γ) auf Protein- und mRNA-Ebene nach der PR-Behandlung deutlich erhöht und der Tumornekrosefaktor α auf Protein- und mRNA-Ebene deutlich reduziert. Schlussfolgerung: Die potenziell zellschützenden Mechanismen von PR könnten darauf beruhen, dass durch Hemmung des Cox-2- und des 5-Lox-Signalwegs die inflammatorische Reaktion gedämpft und die Expression des protektiven Faktors PPAR-γ reguliert wird."	"Flavonoid and Non-Flavonoid Compounds of Autumn Royal and Egnatia Grape Skin Extracts Affect Membrane PUFA's Profile and Cell Morphology in Human Colon Cancer Cell Lines. Grapes contain many flavonoid and non-flavonoid compounds with anticancer effects. In this work we fully characterized the polyphenolic profile of two grape skin extracts (GSEs), Autumn Royal and Egnatia, and assessed their effects on Polyunsaturated Fatty Acid (PUFA) membrane levels of Caco2 and SW480 human colon cancer cell lines. Gene expression of 15-lipoxygenase-1 (15-LOX-1), and peroxisome proliferator-activated receptor gamma (PPAR-γ), as well as cell morphology, were evaluated. The polyphenolic composition was analyzed by Ultra-High-Performance Liquid Chromatography/Quadrupole-Time of Flight mass spectrometry (UHPLC/QTOF) analysis. PUFA levels were evaluated by gas chromatography, and gene expression levels of 15-LOX-1 and PPAR-γ were analyzed by real-time Polymerase Chain Reaction (PCR). Morphological cell changes caused by GSEs were identified by field emission scanning electron microscope (FE-SEM) and photomicrograph examination. We detected a different profile of flavonoid and non-flavonoid compounds in Autumn Royal and Egnatia GSEs. Cultured cells showed an increase of total PUFA levels mainly after treatment with Autumn Royal grape, and were richer in flavonoids when compared with the Egnatia variety. Both GSEs were able to affect 15-LOX-1 and PPAR-γ gene expression and cell morphology. Our results highlighted a new antitumor mechanism of GSEs that involves membrane PUFAs and their downstream pathways."	"The effects and mechanism of collagen peptide and elastin peptide on skin aging induced by D-galactose combined with ultraviolet radiation. The content of collagen and elastin occupies a large proportion of skin evaluation, and collagen peptide (CP) and elastin peptide (EP) are widely used drugs, which have anti-inflammatory effects. In addition, CP and EP can also be used as therapeutic agents for skin repair. However, previous studies have never thoroughly verified the effects of oral administration of CP and EP on skin repair. To study the effects and mechanism of oral administration of CP and EP on skin aging induced by combinatorial treatment with D-galactose and ultraviolet radiation. In animal experiments, the combined oral administration of CP and EP increased the contents of collagen and elastin in animal skin, accompanying with significantly upregulated expression of hyaluronic acid and hydroxyproline, as well as significantly reduced expression of MMP-3 and IL-1α. In addition, the combined therapy also significantly increased the expression of seven collagen and elastin synthesis-related factors including IGF-1, LOX, SMAD2, JNK, SP1, TβRII and TGF-β. Oral administration of CP and EP can repair skin aging induced by the combined treatment with D-galactose and ultraviolet radiation and the effects of CP and EP appeared synergistic."	"Multigene engineering of medium-chain fatty acid biosynthesis in transgenic Arabidopsis thaliana by a Cre/LoxP multigene expression system. Medium-chain fatty acids (MCFAs) are an ideal feedstock for biodiesel and a range of oleochemical products. In this study, different combinations of CnFATB3, CnLPAAT-B and CnKASI from coconut (Cocos nucifera L.) were coexpressed in transgenic Arabidopsis thaliana by a Cre/LoxP multigene expression system. Transgenic lines expressing different combinations of these genes were designated FL (FatB3 + LPAAT-B), FK (FatB3 + KASI) and FLK (FatB3 + LPAAT-B + KASI). The homozygous seeds of transgenic Arabidopsis thaliana expressing high levels of these genes were screened, and their fatty acid composition and lipid contents were determined. Compared with its content in wild-type A. thaliana, the lauric acid (C12:0) content was significantly increased by at least 395%, 134% and 124% in FLK, FL and FK seeds, respectively. Meanwhile, the myristic acid (C14:0) content was significantly increased by at least 383%, 106% and 102% in FL, FLK and FK seeds, respectively, compared to its level in wild-type seeds. Therefore, the FLK plants exhibited the best effects to increase the level of C12:0, and FL expressed the optimal combination of genes to increase the level of 14:0 MCFA."	"Optimisation of phenolic compounds and antioxidant activity extraction conditions of a roasted mix of Tetrapleura tetraptera (Schumach &amp; Thonn.) and Aframomum citratum (C. Pereira) fruits using response surface methodology (RSM). The therapeutic abilities of Tetrapleura tetraptera and Aframomum citratum fruits used as spices are attributed to their bioactive molecules, including polyphenols. Sometimes used together and heated, they can undergo denaturation. The aim of the current study is to optimize the extraction of phenolic compounds and antioxidant potential of a roasted mix of Tetrapleura tetraptera and Aframomum citratum (95/5: w/w) fruits using RSM in a home food consumption context. The mix of spices was chosen according to the highest content of TPP and preliminary studies were performed to select the influencing variables. Roasting temperatures (130-170 °C), roasting times (10-15 min) and brewing times (8-15 min) were investigated with a rotatable central composite design. Experimental results were fitted to the second-order polynomial model where multiple regressions and ANOVA were used to determine the coefficients of the model and the optimal conditions for the considered responses. The two spices are good sources of phenolic compounds, and they also show significant (p &lt; 0.05) dose-dependent radical scavenging activities (DPPH assay and inhibition of β-carotene discoloration) and reductive activities (FRAP assay and Phosphomolybdenum method). They significantly inhibit bovine serum albumin and 5-LOX denaturation. Brewing time and roasting time significantly (p &lt; 0.05) influence the responses and there is a strong (R<sup>2</sup> = 0.93) correlation between the TPP and TAC of the beverage. The quadratic model fit well and the different factors used to test its accuracy and fitness were in satisfactory ranges. For TPP extraction (38.90 mgGAE/g dw) and TAC (50.75 mg TE/g dw) expression, the optimal conditions were reached at a roasting temperature of 150 °C, roasting time of 12.62 min, brewing time of 11.91 min and a desirability of 0.95. The novel information on the optimisation of the process can be further used by scientists, consumers and herbalists for effective handling of fruits during the extraction process."	"Functional deletion of neuropeptide Y receptors type 2 in local synaptic networks of anteroventral BNST facilitates recall and increases return of fear. Return of previously extinguished fear memories presents a major hurdle in treatment of fear-related disorders. Neuropeptide Y receptors type 2 (Y2R) in the bed nucleus of stria terminalis (BNST) seem to play a crucial role in modulation of remote fear memories. Here, we targeted Cre-channelrhodopsin-2 to defined subregions of BNST or central amygdala (CeA) in floxed Y2R mice (Y2<sup>lox/lox</sup>) for functional deletion of Y2R. We combined fear training and behavioral studies in vivo with optogenetic-electrophysiological analysis of BNST synaptic network activity ex vivo, in order to identify regional and cellular specificities of Y2R influence. Deletion of Y2R in the ventral section of anterior BNST (BNSTav) did not affect fear acquisition, but increased conditioned fear during recall and extinction learning, and aggravated remote fear return. By contrast, deletion of Y2R in the dorsal section of anterior BNST (BNSTad) or CeA did not influence acquisition, extinction or return of fear memories. Ex vivo optogenetic-electrophysiological analysis revealed Y2R-expressing local GABAergic inhibitory networks in BNST, both within (intraregional) and in-between (inter-regional) BNST subregions. Stimulation of Y2R resulted in a presynaptically mediated reduction of GABAergic responses, which did not differ between intraregional but predominantly affected inter-regional connections from BNSTav to BNSTad. Moreover, deletion of Y2R decreased the excitation/inhibition balance in BNSTav neurons, suggesting a regulatory influence of endogenous NPY via intraregional GABAergic microcircuits. This study reveals Y2R within local GABAergic networks in BNST as key elements in facilitating extinction and reducing return of remote fear memories, suggesting a potential avenue for translational purposes."	"Lipoxygenase Inhibition Activity of Coumarin Derivatives-QSAR and Molecular Docking Study. Lipoxygenases (LOXs) are a family of enzymes found in plants, mammals, and microorganisms. In animals and plants, the enzyme has the capability for the peroxidation of unsaturated fatty acids. Although LOXs participate in the plant defense system, the enzyme's metabolites can have numerous negative effects on human health. Therefore, many types of research are searching for compounds that can inhibit LOXs. The best quantitative structure-activity relationship (QSAR) model was obtained using a Genetic Algorithm (GA). Molecular docking was performed with iGEMDOCK. The inhibition of lipoxygenase was in the range of 7.1 to 96.6%, and the inhibition of lipid peroxidation was 7.0-91.0%. Among the synthesized compounds, the strongest inhibitor of soybean LOX-3 (96.6%) was found to be 3-benzoyl-7-(benzyloxy)-2H-chromen-2-one. A lipid peroxidation inhibition of 91.0% was achieved with ethyl 7-methoxy-2-oxo-2H-chromene-3-carboxylate. The docking scores for the soybean LOX-3 and human 5-LOX also indicated that this compound has the best affinity for these LOX enzymes. The best multiple linear QSAR model contains the atom-centered fragment descriptors C-06, RDF035p, and HATS8p. QSAR and molecular docking studies elucidated the structural features important for the enhanced inhibitory activity of the most active compounds, such as the presence of the benzoyl ring at the 3-position of coumarin's core. Compounds with benzoyl substituents are promising candidates as potent lipoxygenase inhibitors."	"Lysyl Oxidase (LOX): Functional Contributions to Signaling Pathways. Cu-dependent lysyl oxidase (LOX) plays a catalytic activity-related, primary role in the assembly of the extracellular matrix (ECM), a dynamic structural and regulatory framework which is essential for cell fate, differentiation and communication during development, tissue maintenance and repair. LOX, additionally, plays both activity-dependent and independent extracellular, intracellular and nuclear roles that fulfill significant functions in normal tissues, and contribute to vascular, cardiac, pulmonary, dermal, placenta, diaphragm, kidney and pelvic floor disorders. LOX activities have also been recognized in glioblastoma, diabetic neovascularization, osteogenic differentiation, bone matrix formation, ligament remodeling, polycystic ovary syndrome, fetal membrane rupture and tumor progression and metastasis. In an inflammatory context, LOX plays a role in diminishing pluripotent mesenchymal cell pools which are relevant to the pathology of diabetes, osteoporosis and rheumatoid arthritis. Most of these conditions involve mechanisms with complex cell and tissue type-specific interactions of LOX with signaling pathways, not only as a regulatory target, but also as an active player, including LOX-mediated alterations of cell surface receptor functions and mutual regulatory activities within signaling loops. In this review, we aim to provide insight into the diverse ways in which LOX participates in signaling events, and explore the mechanistic details and functional significance of the regulatory and cross-regulatory interactions of LOX with the EGFR, PDGF, VEGF, TGF-β, mechano-transduction, inflammatory and steroid signaling pathways."	"Characterization of spirostanol glycosides and furostanol glycosides from anemarrhenae rhizoma as dual targeted inhibitors of 5-lipoxygenase and Cyclooxygenase-2 by employing a combination of affinity ultrafiltration and HPLC/MS. Modulation of the arachidonic acid (AA) cascade via 5-lipoxygenase (5-LOX) and cyclooxygenase-2 (COX-2) represent the two major pathways for treatments of inflammation and pain. The design and development of inhibitors targeting both 5-LOX and COX-2 has gained increasing popularity. As evidenced, 5-LOX and COX-2 dual targeted inhibitors have recently emerged as the front runners of anti-inflammatory drugs with improved efficacy and reduced side effects. Natural products represent a rich resource for the discovery of dual targeted 5-LOX and COX-2 inhibitors. By combining affinity ultrafiltration and high-performance liquid chromatography-mass spectrometry (AUF-LC-MS), an efficient method was developed to identify spirostanol glycosides and furostanol glycosides as the 5-LOX/COX-2 dual inhibitors from saponins extract of Anemarrhenae Rhizoma (SEAR). A highly efficient method by combining affinity ultrafiltration and high-performance liquid chromatography-mass spectrometry (AUF-LC-MS) was first developed to screen and characterize the 5-LOX/COX-2 dual targeted inhibitors from SEAR. The structures of compounds in the ultrafiltrate were characterized by high resolution Fourier transform ion cyclotron resonance mass spectrometry (FT-ICR-MS). In addition, in vitro 5-LOX/COX-2 inhibition assays and their dual expression in vivo were performed to confirm the inhibitory activities of the compounds screened by AUF-LC-MS. Molecular docking studies with the corresponding binding energy were obtained which fit nicely to both 5-LOX and COX-2 protein cavities and in agreement with our affinity studies. A total of 5 compounds, timosaponin A-II, timosaponin A-III, timosaponin B-II, timosaponin B-III and anemarrhenasaponin I, were identified as potential 5-LOX/COX-2 dual targeted inhibitors with specific binding values &gt; 1.5 and IC50 ≤ 6.07 μM. The present work demonstrated that spirostanol glycoside and furostanol glycoside were identified as two novel classes of dual inhibitors of 5-LOX/COX-2 enzymes by employing a highly efficient screening method of AUF-LC-MS. These natural products represent a novel class of anti-inflammatory agents with the potential of improved efficacy and reduced side effects."	"Openwork@Dendritic Mesoporous Silica Nanoparticles for Lactate Depletion and Tumor Microenvironment Regulation. Direct depletion of lactate accumulated in the tumor microenvironment holds promise for cancer therapy, but remains challenging. Here we report a one-pot synthesis of openwork@ dendritic mesoporous silica nanoparticles (ODMSN) to address this problem. ODMSN self-assembled through a time-resolved lamellar growth mechanism feature an openworked core and a dendritic shell, both constructed by silica nanosheets of ~3 nm. With a large pore size, high surface area and pore volume, ODMSN exhibited a high loading capacity (&gt; 0.7 g/g) of lactate oxidase (LOX) and enabled intratumoral lactate depletion by &gt;99.9%, leading to anti-angiogenesis, down-regulation of vascular endothelial growth factor and increased tumor hypoxia. The latter event facilitates the activation of a co-delivered prodrug for enhancing anti-tumor and anti-metastasis efficacy. This study provides an innovative nano-delivery system and demonstrates the first example of direct lactate depletion enabled chemotherapy."	"Specific Gene Expression in Lgr5<sup>+</sup> Stem Cells by Using Cre-Lox Recombination. Intestinal stem cells are responsible for tissue renewal. The study of stem cell properties has become a major challenge in the field. We describe here a method based on Cre recombinase inducible lentivirus vectors that permits delivery of transgenes, either for overexpression or knockdown, in primary stem cells that can be cultured in an 3D intestinal organoid system. This method is an excellent approach for genetic manipulation and can complement in vivo transgenic experiments."	"Gene Editing in Trypanosomatids: Tips and Tricks in the CRISPR-Cas9 Era. Gene editing in trypanosomatids has long been proven difficult. The development of CRISPR-Cas9 has improved this issue, opening the way to a better understanding of biological processes and drug-resistance mechanisms, and screening of drug targets. Different strategies have now been developed: either PCR- or plasmid-based, differing mainly in the nature of the donor DNA and the single guide RNA transcription. Here we review the main genetic tools available for Leishmania spp., Trypanosoma cruzi, and Trypanosoma brucei for gene tagging, single-base editing, and deletion of nonessential and essential genes. We discuss the main advantages and challenges of different strategies and how to choose 'the right cut' depending on the importance of untranslated regions. These considerations allow selection of the most accurate gene editing approach for a given functional analysis."	"The endocannabinoid signaling pathway as an emerging target in pharmacotherapy, earmarking mitigation of destructive events in rheumatoid arthritis. Rheumatoid arthritis is an inflammatory autoimmune disease, characterized by synovial proliferation, destruction to articular cartilage and severe pain. The cannabinoids obtained from Cannabis sativa exhibited their actions via cannabinoid-1 and -2 receptors, which also provides a platform for endocannabinoids to act. The endocannabinoid system comprises endocannabinoid molecules involved in signaling processes, along with G-protein coupled receptors and enzymes associated with ligand biosynthesis, activation and degradation. The action of endocannabinoid system in immune system regulation, via primary CB2 activation, followed by inhibition of production of pro-inflammatory cytokines, auto-antibodies and MMPs, FLSs proliferation and T-cell mediated immune response, are elaborated as potential therapeutic regimes in rheumatoid arthritis. The involvement of endocannabinoid system in immune cells like, B cells, T cells and macrophages, as well as regulatory actions on sensory noniceptors to ameliorate pain is significantly highlighted in the review, elaborating the actions of endocannabinoid signaling in mitigating the disease events. The review also focuses on enhancement of endocannabinoid tone, either by inhibiting the degradation enzymes, like FAAH, MAGL, COX, CytP450, LOX, etc. or by retarding cellular uptake processes. Moreover, the review portrays the optimizing role of endocannabinoid system, in abbreviating the symptoms and complications of rheumatoid arthritis in patients and mitigating inflammation, pain and immune mediated effects significantly."	"Design, synthesis, and biological evaluation of new pyrazoloquinazoline derivatives as dual COX-2/5-LOX inhibitors. A new series of pyrazoloquinazoline derivatives equipped with different chalcones was designed, synthesized, and identified through <sup>1</sup> H nuclear magnetic resonance (NMR), <sup>13</sup> C NMR, and infrared spectroscopic techniques. Our design strategy of the quinazolinone-privileged scaffold as a new scaffold was based on merging pharmacophores previously reported to exhibit cyclooxygenase-2 (COX-2)/5-lipoxygenase (5-LOX) inhibitory activity. All the newly synthesized derivatives were biologically evaluated for COX and 5-LOX inhibitory activity and COX-2 selectivity, using celecoxib and zileuton as reference drugs, as they exhibited promising anti-inflammatory activity. Compound 3j was found to be the most promising derivative, with IC50 values of 667 and 47 nM against COX-1 and COX-2, respectively, which are superior to that of celecoxib (IC50 value against COX-2 = 95 nM), showing an SI of 14.2 that was much better than celecoxib. Compounds 3f and 3h exhibited COX-1 inhibition, with IC50 values of 1,485 and 684 nM, respectively. The synthesized compounds showed a significant inhibitory activity against 5-LOX, with IC50 values ranging from 0.6 to 4.3 µM, where compounds 3f and 3h were found to be the most potent derivatives, with IC50 values of 0.6 and 1.0 µM, respectively, in comparison with that of zileuton (IC50 = 0.8 µM). These promising derivatives, 3f, 3h, and 3j, were further investigated in vivo for anti-inflammatory, gastric ulcerogenic effects, and prostaglandin production (PGE2) in rat serum. The molecular docking studies concerning the binding sites of COX-2 and 5-LOX revealed similar orientation, compared with reported inhibitors, which encouraged us to design new leads targeting COX-2 and 5-LOX as dual inhibitors, as a new avenue in anti-inflammatory therapy."	"IL-10 attenuates OxPCs-mediated lipid metabolic responses in ischemia reperfusion injury. Oxidized phospholipids (OxPLs) promote inflammation as well as low density lipoprotein (LDL) uptake in a variety of physiological and pathological states. Given the anti-inflammatory role of the cytokine IL-10, we investigated its modulatory effect on the production of oxidized phosphatidylcholines (OxPCs) as well as lipid metabolic responses in global myocardial ischemia/reperfusion (I/R) injury. Increased OxPCs levels, by 1-Palmitoyl-2-(5-oxovaleryl)-sn-glycero-3-phosphocholine (POVPC), promoted oxidative stress (OS) and cell death. OxPCs-mediated-OS, resulted in oxidized low-density lipoprotein receptor 1 (LOX-1) activation and upregulated the expression of toll-like receptor 2 (TLR2). IL-10-induced increase in proprotein convertase subtilisin/kexin type 9 (PCSK9) negatively regulated LOX-1 as well as TLR2 inflammatory responses. Under stress conditions, phosphorylation of sterol regulatory element binding protein 1c (SREBP 1c) was prevented by IL-10. The latter also prevented the generation of OxPCs and reduced their ratio (OxPCs/PCs) during injury. LOX-1 activation also promoted SREBP1c-mediated TGF-βRII expression which was inhibited by IL-10. Both fragmented and non-fragmented OxPCs were elevated during I/R and this effect was attenuated by IL-10. The largest impact (two-threefold change at log2) was on PAzPC, (1-palmitoyl-2-azelaoyl-sn-glycero-3-phosphocholine)-a fragmented OxPC. Thus it appears that among different OxPCs, IL-10 significantly reduces a single molecule (PAzPC)-mediated lipid metabolic responses in cardiomyocytes thereby mitigating inflammation and cell death."	"Evolving roles of lysyl oxidase family in tumorigenesis and cancer therapy. The lysyl oxidase (LOX) family is comprised of LOX and four LOX-like proteins (LOXL1, LOXL2, LOXL3, and LOXL4), and mainly functions in the remodeling of extracellular matrix (ECM) and the cross-linking of collagen and elastic fibers. Recently, a growing body of research has demonstrated that LOX family is critically involved in the regulation of cancer cell proliferation, migration, invasion and metastasis. In this review, we discuss the roles of LOX family members in the development and progression of different types of human cancers. Furthermore, we also describe the potential inhibitors of LOX family proteins and highlight that LOX family might be an important therapeutic target for cancer therapy."	"Human splenic polymorphonuclear myeloid-derived suppressor cells (PMN-MDSC) are strategically-located immune regulatory cells in cancer. In contrast to the mouse, functional assets of polymorphonuclear myeloid-derived suppressor cells (PMN-MDSC) in the human spleen remain to be better elucidated. Here, we report that the spleen in gastric and pancreatic cancer adopts an immune regulatory character, harbors excessive amount of PMN-MDSC, and anatomically enables their interaction with T cells. Compared to the peripheral blood, the spleen from cancer patients contained significantly higher levels of low-density PMN-MDSC, but not early-stage MDSC (e-MDSC) and monocytic-MDSC (M-MDSC). Low-density fraction of polymorphonuclear (PMN) cells was enriched in immature myeloid cells and displayed higher levels of CD10, CD16 and reactive oxygen species (ROS) than their blood-derived counterparts. They were also positive for PD-L1, LOX-1 and pSTAT3. The white pulp and periarteriolar lymphoid sheath (PALS) were strategically surrounded by PMN cells which were in contact with T cells. Unlike those from the blood, both low-density and normal-density PMN cells from the spleen suppressed T cell proliferation and interferon (IFN)-γ production. Independent of clinical grade, high PMN-MDSC percentages were associated with decreased survival in gastric cancer. In summary, our results outline the immune regulatory role of the spleen in cancer where neutrophils acquire MDSC functions and feasibly interact with T cells. This article is protected by copyright. All rights reserved."	"Wnt signaling and Loxl2 promote aggressive osteosarcoma. Osteosarcoma (OS) is the most frequent primary malignant bone tumor in urgent need of better therapies. Using genetically modified mouse models (GEMMs), we demonstrate that Wnt signaling promotes c-Fos-induced OS formation via the actions of the collagen-modifying enzyme Loxl2. c-Fos/AP-1 directly regulates the expression of the Wnt ligands Wnt7b and Wnt9a in OS cells through promoter binding, and Wnt7b and Wnt9a in turn promote Loxl2 expression in murine and human OS cells through the transcription factors Zeb1 and Zeb2. Concordantly, inhibition of Wnt ligand secretion by inactivating the Wnt-less (Wls) gene in osteoblasts in c-Fos GEMMs either early or in a therapeutic setting reduces Loxl2 expression and progression of OS. Wls-deficient osteosarcomas proliferate less, are less mineralized and are enriched in fibroblastic cells surrounded by collagen fibers. Importantly, Loxl2 inhibition using either the pan-Lox inhibitor BAPN or a specific inducible shRNA reduces OS cell proliferation in vitro and decreases tumor growth and lung colonization in murine and human orthotopic OS transplantation models. Finally, OS development is delayed in c-Fos GEMMs treated with BAPN or with specific Loxl2 blocking antibodies. Congruently, a strong correlation between c-FOS, LOXL2 and WNT7B/WNT9A expression is observed in human OS samples, and c-FOS/LOXL2 co-expression correlates with OS aggressiveness and decreased patient survival. Therefore, therapeutic targeting of Wnt and/or Loxl2 should be considered to potentiate the inadequate current treatments for pediatric, recurrent, and metastatic OS."	"Key volatile off-flavor compounds in peas (Pisum sativum L.) and their relations with the endogenous precursors and enzymes using soybean (Glycine max) as a reference. The dominant volatile off-flavor compounds of pea and soy milk were investigated by gas chromatography-olfactometry-mass spectrometry (GC-O-MS), sensory evaluation, and odor-activity values (OAVs), which led to the identification of their differences. We identified 11 aroma compounds as important odorants with OAVs greater than 1 in pea and soy milk. OAVs contribution rate demonstrated that 6 compounds contributed most to the characteristic off-flavor of pea milk, among which 2-methoxy-3-isopropyl-(5 or 6)-methyl pyrazine, hexanal, (E,E)-2,4-nonadienal, and (E,E)-2,4-decadienal contributed more than others. For soy milk, 1-octen-3-one, hexanal, (E,E)-2,4-nonadienal, and (E,E)-2,4-decadienal showed more important contributions. These odor-active compounds were divided into non-lipoxygenase (non-LOX) and LOX pathways based on their synthesis. Several endogenous enzymes that are important to the LOX pathway were identified by liquid chromatography tandem mass spectrometry (LC-MS/MS), and the contents of key off-flavor compounds were found to be related to the enzyme activities, while the lipid content was not an important factor."	"Phosphorylation of 5-LOX: The Potential Set-point of Inflammation. Inflammation secondary to tissue injuries serves as a double-edged sword that determines the prognosis of tissue repair. As one of the most important enzymes controlling the inflammation process by producing leukotrienes, 5-lipoxygenase (5-LOX, also called 5-LO) has been one of the therapeutic targets in regulating inflammation for a long time. Although a large number of 5-LOX inhibitors have been explored, only a few of them can be applied clinically. Surprisingly, phosphorylation of 5-LOX reveals great significance in regulating the subcellular localization of 5-LOX, which has proven to be an important mechanism underlying the enzymatic activities of 5-LOX. There are at least three phosphorylation sites in 5-LOX jointly to determine the final inflammatory outcomes, and adjustment of phosphorylation of 5-LOX at different phosphorylation sites brings hope to provide an unrecognized means to regulate inflammation. The present review intends to shed more lights into the set-point-like mechanisms of phosphorylation of 5-LOX and its possible clinical application by summarizing the biological properties of 5-LOX, the relationship of 5-LOX with neurodegenerative diseases and brain injuries, the phosphorylation of 5-LOX at different sites, the regulatory effects and mechanisms of phosphorylated 5-LOX upon inflammation, as well as the potential anti-inflammatory application through balancing the phosphorylation-depended set-point."	"Ursolic Acid Limits Salt-Induced Oxidative Damage by Interfering With Nitric Oxide Production and Oxidative Defense Machinery in Rice. Crops frequently encounter abiotic stresses, and salinity is a prime factor that suppresses plant growth and crop productivity, globally. Ursolic acid (UA) is a potential signaling molecule that alters physiology and biochemical processes and activates the defense mechanism in numerous animal models; however, effects of UA in plants under stress conditions and the underlying mechanism of stress alleviation have not been explored yet. This study examined the effects of foliar application of UA (100 μM) to mitigate salt stress in three rice cultivars (HZ, 712, and HAY). A pot experiment was conducted in a climate-controlled greenhouse with different salt stress treatments. The results indicated that exposure to NaCl-induced salinity reduces growth of rice cultivars by damaging chlorophyll pigment and chloroplast, particularly at a higher stress level. Application of UA alleviated adverse effects of salinity by suppressing oxidative stress (H2O2, O<sup>2-</sup>) and stimulating activities of enzymatic and non-enzymatic antioxidants (APX, CAT, POD, GR, GSH, AsA, proline, glycinebutane), as well as protecting cell membrane integrity (MDA, LOX, EL). Furthermore, UA application brought about a significant increase in the concentration of leaf nitric oxide (NO) by modulating the expression of NR and NOS enzymes. It seems that UA application also influenced Na<sup>+</sup> efflux and maintained a lower cytosolic Na<sup>+</sup>/K<sup>+</sup> ratio via concomitant upregulation of OsSOS1 and OsHKT1;5 in rice cultivars. The results of pharmacological tests have shown that supply of the NO scavenger (PTI) completely reversed the UA-induced salt tolerance in rice cultivars by quenching endogenous NO and triggering oxidative stress, Na<sup>+</sup> uptake, and lipid peroxidation. The PTI application with UA and sodium nitroprusside (SNP) also caused growth retardation and a significant increase in Na<sup>+</sup> uptake and oxidative stress in rice cultivars. This suggests that UA promoted salt tolerance of rice cultivars by triggering NO production and limiting toxic ion and reactive oxygen species (ROS) accumulation. These results revealed that both UA and NO are together required to develop a salt tolerance response in rice."	"Corneal Stiffness and Collagen Cross-Linking Proteins in Glaucoma: Potential for Novel Therapeutic Strategy. Biomechanical properties of the cornea have recently emerged as clinically useful in risk assessment of diagnosing glaucoma and predicting disease progression. Corneal hysteresis (CH) is a dynamic tool, which measures viscoelasticity of the cornea. It represents the overall deformability of the cornea, and reduces significantly with age. Low CH has also been associated with optic nerve damage and progression of visual field loss in glaucoma. The extracellular matrix (ECM) constituents of the cornea, trabecular meshwork (TM), sclera, and lamina cribrosa (LC) are similar, as they are predominantly made of fibrillar collagen. This suggests that biomechanical changes in the cornea may also reflect optic nerve compliance in glaucomatous optic neuropathy, and in the known increase of TM tissue stiffness in glaucoma. Increased collagen cross-linking contributes to tissue stiffening throughout the body, which is observed in normal aging and occurs at an accelerated rate in systemic conditions such as fibrotic and cardiovascular diseases, cancer, and glaucoma. We reviewed 3 ECM cross-linking proteins that may have a potential role in the disease process of increased tissue stiffness in glaucoma, including lysyl oxidase (LOX)/lysyl oxidase-like 1 (LOXL1), tissue transglutaminase (TG2), and advanced glycation end products. We also report elevated messenger RNA (mRNA) levels of LOX and TG2 in glaucoma LC cells to support our proposed theory that increased levels of cross-linking proteins in glaucoma play a role in LC tissue stiffness. We highlight areas of research that are needed to better understand the role of cross-linking in glaucoma pathogenesis, leading potentially to a novel therapeutic strategy."	"5-Lipoxygenase promotes epithelial-mesenchymal transition through the ERK signaling pathway in gastric cancer. 5-Lipoxygenase has been reported to enhance cell proliferation, migration and invasion. Epithelial-mesenchymal transition is considered an important process for tumor metastasis and invasion. The 5- lipoxygenase expression levels and the prognoses in patients with gastric cancer were evaluated by immunohistochemistry and by the log-rank test on Kaplan-Meier curves. We established 5-lipoxygenase-overexpressed and -silenced gastric cancer cells and measured migration, invasion and epithelial-mesenchymal transition makers to examine the role of 5-lipoxygenase in gastric cancer in vitro. In vivo, 5-lipoxygenase-overexpressed gastric cancer cells were administered into mice by subcutaneous injection, intraperitoneal injection or splenic intravenous injection to study the proliferation or metastasis of 5- lipoxygenase in mice. Using the extracellular signal-regulated kinase pathway inhibitor U0126 and activator tumor growth factor-β, we investigated the mechanism of epithelial-mesenchymal transition induced by 5-lipoxygenase in gastric cancer cells. 5-lipoxygenase was upregulated in gastric cancer tissues and was related to poor overall survival in gastric cancer patients. 5-lipoxygenase promoted gastric cancer cell proliferation, migration and invasion and induced the process of epithelial-mesenchymal transition in gastric cancer cells. In the nude mouse model, mice with gastric cancer tumors overexpressing 5-LOX had a faster tumor growth rate and more severe abdominal and liver metastases than the control group. Inhibition of extracellular signal-regulated kinase signaling by U0126 or activation by tumor growth factor-β neutralized the effect of 5-LOX overexpression or silencing on epithelial-mesenchymal transition. 5-lipoxygenase promotes epithelial-mesenchymal transition in gastric cancer by activating the extracellular signal-regulated kinase signaling pathway."	"Betalain exerts a protective effect against glaucoma is majorly through the association of inflammatory cytokines. The present research aimed at evaluating the protective role of betalain on the in vitro glaucoma model using PC12 neuronal cells. The cultured neuronal cells in a customized pressurized chamber were analyzed for the onset of glutathione, myeloperoxidase (MPO), cathepsin, expression of inflammatory enzymes such as cyclooxygenase (COX-1), lipoxygenase (5- LOX), sPLA2 caveolin-1, glaucoma markers and other inflammatory cytokines in the presence and absence of betalain. The results have shown that a significant increase in the expression of oxidative stress with increased activity of cathepsin B and D. On the other hand, the activity of inflammatory enzymes such as COX-1, 5- LOX, sPLA2 were significantly increased in pressure exposed cells. In addition, glaucoma simulated cells demonstrated a significant increase in the VEGF, TGF-β, BDGF, and neuroserpin compared to control. Moreover, cells predisposed to hydrostatic pressure demonstrated an increase in (p &lt; 0.01) inflammatory cytokines such as IL-6, CXCR4, IL-17, IL-1β, and TNF-α levels. However, cells pre-treated with betalain improved the glutathione levels with attenuated MPO activity. Simultaneously, the levels of inflammatory cytokines and other glaucoma marker genes found restored in drug pre-treated cells. Thus, the results of the present study demonstrate that the use of betalain on ocular cells can prevent the progression of the disease that can be a suggestive therapeutic for controlling glaucoma like conditions."	"Structure-function analysis of naturally occurring apolipoprotein A-I L144R, A164S and L178P mutants provides insight on their role on HDL levels and cardiovascular risk. Naturally occurring point mutations in apolipoprotein A-I (apoA-I), the major protein component of high-density lipoprotein (HDL), may affect plasma HDL-cholesterol levels and cardiovascular risk. Here, we evaluated the effect of human apoA-I mutations L144R (associated with low HDL-cholesterol), L178P (associated with low HDL-cholesterol and increased cardiovascular risk) and A164S (associated with increased cardiovascular risk and mortality without low HDL-cholesterol) on the structural integrity and functions of lipid-free and lipoprotein-associated apoA-I in an effort to explain the phenotypes of subjects carrying these mutations. All three mutants, in lipid-free form, presented structural and thermodynamic aberrations, with apoA-I[L178P] presenting the greatest thermodynamic destabilization. Additionally, apoA-I[L178P] displayed reduced ABCA1-mediated cholesterol efflux capacity. When in reconstituted HDL (rHDL), apoA-I[L144R] and apoA-I[L178P] were more thermodynamically destabilized compared to wild-type apoA-I, both displayed reduced SR-BI-mediated cholesterol efflux capacity and apoA-I[L144R] showed severe LCAT activation defect. ApoA-I[A164S] was thermodynamically unaffected when in rHDL, but exhibited a series of functional defects. Specifically, it had reduced ABCG1-mediated cholesterol and 7-ketocholesterol efflux capacity, failed to reduce ROS formation in endothelial cells and had reduced capacity to induce endothelial cell migration. Mechanistically, the latter was due to decreased capacity of rHDL-apoA-I[A164S] to activate Akt kinase possibly by interacting with endothelial LOX-1 receptor. The impaired capacity of rHDL-apoA-I[A164S] to preserve endothelial function may be related to the increased cardiovascular risk for this mutation. Overall, our structure-function analysis of L144R, A164S and L178P apoA-I mutants provides insights on how HDL-cholesterol levels and/or atheroprotective properties of apoA-I/HDL are impaired in carriers of these mutations."	"Evidence that ABC-transporter-mediated autocrine export of an eicosanoid signaling molecule enhances germ cell chemotaxis in the colonial tunicate Botryllus schlosseri. The colonial ascidian Botryllus schlosseri regenerates the germline during repeated cycles of asexual reproduction. Germline stem cells (GSCs) circulate in the blood and migrate to new germline niches as they develop and this homing process is directed by a Sphigosine-1-Phosphate (S1P) gradient. Here, we find that inhibition of ABC transporter activity reduces migration of GSCs towards low concentrations of S1P in vitro In addition, inhibiting phospholipase A2 (PLA2) or lipoxygenase (Lox) blocks chemotaxis towards low concentrations of S1P. These effects can be rescued by addition of the 12-Lox product 12-S-HETE. Blocking ABC transporter, PLA2 or 12-Lox activity also inhibits homing of germ cells in vivo Using a live-imaging chemotaxis assay in a 3D matrix, we show that a shallow gradient of 12-S-HETE enhances chemotaxis towards low concentrations of S1P and stimulates motility. A potential homolog of the human receptor for 12-S-HETE, gpr31, is expressed on GSCs and differentiating vasa+ germ cells. These results suggest that 12-S-HETE might be an autocrine signaling molecule exported by ABC transporters that enhances chemotaxis in GSCs migrating towards low concentrations of S1P."	"5-(4H)-Oxazolones and Their Benzamides as Potential Bioactive Small Molecules. The five membered heterocyclic oxazole group plays an important role in drug discovery. Oxazolones present a wide range of biological activities. In this article the synthesis of 4-substituted-2-phenyloxazol-5(4H)-ones from the appropriate substituted aldehydes via an Erlenmeyer-Plochl reaction is reported. Subsequently, the corresponding benzamides were produced via a nucleophilic attack of a secondary amine on the oxazolone ring applying microwave irradiation. The compounds are obtained in good yields up to 94% and their structures were confirmed using IR, <sup>1</sup>H-NMR, <sup>13</sup>C-NMR and LC/MS data. The in vitro anti-lipid peroxidation activity and inhibitory activity against lipoxygenase and trypsin induced proteolysis of the novel derivatives were studied. Inhibition of carrageenin-induced paw edema (CPE) and nociception was also determined for compounds 4a and 4c. Oxazolones 2a and 2c strongly inhibit lipid peroxidation, followed by oxazolones 2b and 2d with an average inhibition of 86.5%. The most potent lipoxygenase inhibitor was the bisbenzamide derivative 4c, with IC50 41 μΜ. The benzamides 3c, 4a-4e and 5c were strong inhibitors of proteolysis. The replacement of the thienyl moiety by a phenyl group does not favor the protection. Compound 4c inhibited nociception higher than 4a. The replacement of thienyl groups by phenyl ring led to reduced biological activity. Docking studies of the most potent LOX inhibitor highlight interactions through allosteric mechanism. All the potent derivatives present good oral bioavailability."	"Inflammation with the participation of arachidonic (AA) and linoleic acid (LA) derivatives (HETEs and HODEs) is necessary in the course of a normal reproductive cycle and pregnancy. Data on arachidonic (AA) and linoleic (LA) acid derivatives and their role in the reproductive cycle are limited. In order to systematize these reports, 54 scientific investigations were analyzed, which revealed the important role of AA and LA in the planning and course of pregnancy. Ovulation, menstruation, pregnancy, and childbirth are strongly related to the occurrence of physiological inflammatory reactions. Ovulation and menstruation are cyclic tissue remodeling processes that cause changes in the synthesis of inflammation mediators, such as prostaglandins and leukotrienes. Thus, the cyclooxygenase (COX) and lipoxygenase-5 (5-LOX) pathway for AA transformation is activated. Only the absence of neutrophils during this process differentiates an embryo implantation from a standard inflammatory response. It has been found that in COX-2 deficiency conditions, incorrect embryo implantation and decidual reaction occur; therefore, the mechanism associated with the activation of the nuclear factor (NF)-κB pathway seems to play an important role in the course of embryo implantation. In addition, 12/15-LOX may be key modulators of uterine activity during the implantation process. According to the current state of knowledge, AA derivatives synthesized throughout the cytochrome P450 (CYP) and LOX pathways play a special role in the late pregnancy period. Decreased 5-HETE levels have been related to slowing down the progression of labor, while 11-HETE and 15-HETrE to its acceleration. It has been also proven that renal 20-HETE contents undergo significant changes in the late pregnancy period, which are caused by an increase in their adrenal medulla and vascular synthesis, leading to decrease of blood pressure and an increase of sodium excretion, finally conditioning a normal course of labor."	"A novel distal convoluted tubule-specific Cre-recombinase driven by the NaCl cotransporter gene. Cre-lox technology has revolutionized research in renal physiology by allowing site-specific genetic recombination in individual nephron segments. The distal convoluted tubule (DCT), consisting of distinct early (DCT1) and late (DCT2) segments, plays a central role in Na<sup>+</sup> and K<sup>+</sup> homeostasis. The only established Cre line targeting the DCT is Pvalb-Cre, which is limited by non-inducibility, activity along DCT1 only, and activity in neurons. Here, we report the characterization of the first Cre line specific to the entire DCT. CRISPR/Cas9 targeting was used to introduce a tamoxifen-inducible IRES-Cre-ERT2 cassette downstream of the coding region of the Slc12a3 gene encoding the NaCl cotransporter (NCC). The resulting Slc12a3-Cre-ERT2 mice were crossed with R26R-YFP reporter mice which revealed minimal leakiness with 6.3% of NCC-positive cells expressing YFP in the absence of tamoxifen. After tamoxifen injection, YFP expression was observed in 91.2% of NCC-positive cells and only in NCC positive cells, revealing high recombination efficiency and DCT-specificity. Crossing to R26R-TdTomato mice revealed higher leakiness (64.5%), suggesting differential sensitivity of the floxed site. Western blotting revealed no differences in abundances of total or the active-phosphorylated form of NCC in Slc12a3-Cre-ERT2 mice of either sex compared to controls. Plasma [K<sup>+</sup>] and [Mg<sup>2+</sup>], and thiazide-sensitive Na<sup>+</sup> and K<sup>+</sup> excretion did not differ in Slc12a3-Cre-ERT2 mice compared to controls when sex-matched. These data suggest genetic modification had no obvious effect on NCC function. Slc12a3-Cre-ERT2 mice are the first line generated demonstrating inducible Cre recombinase activity along the entire DCT, and will be a useful tool to study DCT function."	"Development of a method to screen and isolate lipoxidase inhibitors from Radix Saposhnikoviae via ultrafiltration liquid chromatography combined with metablism in vitro. Radix Saposhnikoviae is an excellent source of chromones, the consumption of which has been shown to positively affect human health, such as anti-inflammatory and antioxidant activities in vivo, and it also has been used to treat headache, inflammation, and cancer as a herbal medicine or functional soup. Isolation and screening of lipoxidase (LOX) inhibitors from Radix Saposhnikoviae. As a result, the metabolism of the active ingredients in cytochrome P450 (CYP450) in vitro was identified. Screen and identify the LOX inhibitors from Radix Saposhnikoviae by ultrafiltration-liquid chromatography-mass spectrometry (UF-LC-MS). Then take the isolation and purification of the inhibitors by high-speed counter-current chromatography (HSCCC) and semi-preparative high-performance liquid chromatography (HPLC). Furthermore, the active ingredients were used to study the metabolism in vitro in CYP450. Subsequently, the specific binding ligands, prim-O-glucosylcimifugin, cimifugin, and 5-O-methylvisamminol (with purities of 95.28, 92.33%, and 97.89, respectively) were separated by HSCCC. Semi-preparative HPLC was applied to separate the four major compounds in Radix Saposhnikoviae and identify them as prim-O-glucosylcimifugin, 5-O-methylvisamminol, sec-O-glucosylhamaudol, and hamaudol, which were obtained with relatively high purity. Furthermore, the three chromone possible metabolism pathways were obtained. The results demonstrated that UF-LC-MS combined with HSCCC and semi-preparative HPLC is not only a powerful tool for screening and isolating LOX inhibitors in complex samples, but also a useful platform for discovering bioactive compounds for anti-inflammatory activity. This study provides information regarding the active ingredients of chromones in Radix Saposhnikoviae and a framework for anti-inflammatory activity treatment."	"Antioxidant and Anti-Inflammatory Activities of Kigelia africana (Lam.) Benth. Kigelia africana is used to manage inflammation among indigenous communities. We hypothesized that K. africana extracts contain phytoconstituents with good antioxidant and anti-inflammatory activities. The methanolic extract of K. africana fruits and Spathodea campanulata leaves (SPK04), K. africana aqueous fruit extract (KFM02), and K. africana acetone fruit extract (KFM05) were subjected to antioxidant and anti-inflammatory assays. Antioxidant activity was evaluated using the ABTS radical scavenging assay, and the MTT cell viability assay was used for cytotoxicity. The extracts were preincubated with enzymes and assayed for 15-LOX and COX-2 enzyme activity using an ELISA method. Nitric oxide (NO) inhibitory effect of the extracts was evaluated and measurement of proinflammatory cytokines (IL-1β, TNF-α, and IL-6) and the anti-inflammatory cytokine (IL-10) was done using ELISA kits. SPK04 had the highest antioxidant activity with a mean inhibition of 99.37 ± 0.56% and an IC50 of 4.28 µg/mL. SPK04 and KFM05 did not inhibit 15-LOX as their IC50 values were &gt;1000 μg/mL. All extracts were safe on Vero cells at the highest concentration (200 µg/mL) tested. KFM02 was the best inhibitor of NO production and had the highest cell viability at both the lowest (50 µg/mL) and highest concentrations (200 µg/mL). SPK04 was the best COX-2 inhibitor while KFM05 expressed the strongest suppression effect for IL-β and IL-6. KFM02 did not inhibit IL-6 at the highest concentration (200 µg/mL). The order of suppression of TNF-α by the extracts differed across concentrations, KFM05 &gt; SPK04 &gt; KFM02 at 200 µg/mL, KFM02 &gt; SPK04 &gt; KFM05 at 100 µg/mL, and SPK04 &gt; KFM02 &gt; KFM05 at 50 µg/mL. All the tested extracts had no inhibitory effect against IL-10. SPK04, KFM05, and KFM02 had good antioxidant and anti-inflammatory activity and this supports their use as potential anti-inflammatory therapies. This study presents for the first time the antioxidant and anti-inflammatory activity of K. africana and S. campanulata polyherbal extract. It is also among the very few studies that have reported the inhibitory effect of cytokines IL-1β, TNF-α, IL-6, and IL-10 by K. africana."	"Revealing Further Insights on Chilling Injury of Postharvest Bananas by Untargeted Lipidomics. Chilling injury is especially prominent in postharvest bananas stored at low temperature below 13 °C. To elucidate better the relationship between cell membrane lipids and chilling injury, an untargeted lipidomics approach using ultra-performance liquid chromatography-mass spectrometry was conducted. Banana fruit were stored at 6 °C for 0 (control) and 4 days and then sampled for lipid analysis. After 4 days of storage, banana peel exhibited a marked chilling injury symptom. Furthermore, 45 lipid compounds, including glycerophospholipids, saccharolipids, and glycerolipids, were identified with significant changes in peel tissues of bananas stored for 4 days compared with the control fruit. In addition, higher ratio of digalactosyldiacylglycerol (DGDG) to monogalactosyldiacylglycerol (MGDG) and higher levels of phosphatidic acid (PA) and saturated fatty acids but lower levels of phosphatidylcholine (PC), phosphatidylethanolamine (PE), and unsaturated fatty acids were observed in banana fruit with chilling injury in contrast to the control fruit. Meanwhile, higher activities of phospholipase D (PLD) and lipoxygenase (LOX) were associated with significantly upregulated gene expressions of MaPLD1 and MaLOX2 and higher malondialdehyde (MDA) content in chilling injury-related bananas. In conclusion, our study indicated that membrane lipid degradation resulted from reduced PC and PE, but accumulated PA, while membrane lipid peroxidation resulted from the elevated saturation of fatty acids, resulting in membrane damage which subsequently accelerated the chilling injury occurrence of banana fruit during storage at low temperature."	"Th17/Treg imbalance modulates rat myocardial fibrosis and heart failure by regulating LOX expression. The imbalance of T helper (Th) 17/T regulatory (Treg) is involved in chronic heart failure (HF). The enzyme lysyl oxidase (LOX) contributes to myocardial fibrosis. This study was designed to decipher the regulatory mechanism of Th17/Treg on LOX expression and to validate whether Th17/Treg imbalance regulates myocardial fibrosis by modulating LOX expression. Human cardiac fibroblasts (HCFs) were treated with angiotensin II (Ang II) and co-cultured with Th17 cells and Tregs which were polarized from control naïve CD4<sup>+</sup> T cells. Th17 cells and Tregs were adoptively transferred into abdominal aortic coarctation-induced chronic HF rats to investigate the efficacy of Th17 and Treg infusions on myocardial fibrosis and HF. Th17/Treg imbalance (increased Th17 cells and decreased Tregs) was observed in HF patients. Th17 cells/Tregs aggravated/attenuated Ang II-induced upregulation of LOX and fibrosis-related indicators (MMP-2/9 and collagen I/III) in HCFs in vitro and abdominal aortic coarctation-induced myocardial fibrosis and HF in rats, by promoting/inhibiting LOX expression. Mechanistically, Th17 cells promoted LOX expression by activating the IL-17/ERK1/2-AP-1 pathway, while Tregs inhibited LOX expression by activating the IL-10/JAK1-STAT3 pathway. Increased Th17 cells and decreased Tregs aggravate myocardial fibrosis and HF by inducing LOX expression."	"Polymerized human hemoglobin facilitated modulation of tumor oxygenation is dependent on tumor oxygenation status and oxygen affinity of the hemoglobin-based oxygen carrier. Administration of hemoglobin-based oxygen carriers (HBOCs) into the systemic circulation is a potential strategy to relieve solid tumor hypoxia in order to increase the effectiveness of chemotherapeutics. Previous computational analysis indicated that the oxygen (O2) status of the tumor and HBOC O2 affinity may play a role in increased O2 delivery to the tumor. However, no study has experimentally investigated how low- and high-affinity HBOCs would perform in normoxic and hypoxic tumors. In this study, we examined how the HBOC, polymerized human hemoglobin (PolyhHb), in the relaxed (R) or tense (T) quaternary state modulates O2 delivery to hypoxic (FME) and normoxic (LOX) human melanoma xenografts in a murine window chamber model. We examined microcirculatory fluid flow via video shearing optical microscopy, and O2 distributions via phosphorescence quenching microscopy. Additionally, we examined how weekly infusion of a 20% top-load dose of PolyhHb influences growth rate, vascularization, and regional blood flow in the FME and LOX tumor xenografts. Infusion of low-affinity T-state PolyhHb led to increased tissue oxygenation, decreased blood flow, decreased tumor growth, and decreased vascularization in hypoxic tumors. However, infusion of both T-state and R-state PolyhHbs led to worse outcomes in normoxic tumors. Of particular concern was the high-affinity R-state PolyhHb, which led to no improvement in hypoxic tumors and significantly worsened outcomes in normoxic tumors. Taken together, the results of this study indicate that the tumor O2 status is a primary determinant of the potency and outcomes of infused PolyhHb."	"Cirsilineol inhibits proliferation of lung squamous cell carcinoma by inducing ROS mediated apoptosis. Cirsilineol belonging to the flavones category have not been explored in detail for anti-proliferative potential, therefore selected for the investigation. Hence, the antiproliferative potential of cirsilineol has been established in NCIH-520 cells. Cirsilineol exhibited good binding-energy and inhibited the activity of ODC, CATD, DHFR, HYAL, LOX-5, and COX-2 up to 45.14 % at 100μM. It significantly inhibited the proliferation of NCIH-520 cells (81.96%) and likewise, the proliferation of other cell lines up to 48.50%. It also induced an increase in the sub-diploid cell population, which then leads to an increase in apoptosis by 2.64 and 5.12 fold at 10μM and 100μM respectively. Further, the Annexin-V-FITC assay confirmed the late apoptosis and necrosis in the NCIH-520 cell line induced by cirsilineol. The ROS production was enhanced by 1.16 and 2.22 folds at 10μM and 100μM respectively. Besides, cirsilineol revealed acceptable ADME properties, non-toxic and non-mutagenic compound. Altogether, these findings provide evidence that cirsilineol inhibited the proliferation of NCIH-520 cells by inducing ROS-mediated apoptosis and offer new insight into the anti-proliferative potential of cirsilineol, which can further be exploited to either ssynthesise new derivatives or its candid usage as a herbal drug for cancer treatment."	"Avenanthramides as lipoxygenase inhibitors. Avenanthramides (AVAs) present in oats are amides of anthranilic and cinnamic acids. AVAs are potent antioxidants and have anti-inflammatory properties. There are various potential mechanisms for their anti-inflammatory effects, including inhibition of lipoxygenases (LOX), which catalyse oxygenation of polyunsaturated fatty acids into potent signal molecules involved in inflammatory processes. In this study, AVAs were screened for LOX inhibition in vitro and structure-activity relationships were examined. Twelve different AVAs at 0.6 mM were tested as LOX inhibitors. The corresponding free cinnamic acids, the AVA analogue Tranilast® and the known LOX inhibitor trans-resveratrol were included for comparison. It was found that AVAs comprising caffeic or sinapic acid exhibited significant lipoxygenase inhibition (60-90%) (P &lt; 0.05), whereas low or no inhibition was observed with AVAs containing p-coumaric or ferulic acid. No difference in inhibition was seen on comparing AVAs with their free corresponding cinnamic acids, which implies that the anthranilic acid part of the avenanthramide molecule does not affect inhibition. Trans-resveratrol showed inhibition, whereas no inhibition was seen for Tranilast® at the concentrations used in this study. This study suggests that aventahtramides comprising caffeic acid or sinapic acid partly exert their antioxidant and anti-inflammatory effects via lipoxygenase inhibition."	"Synchronised regulation of disease resistance in primed finger millet plants against the blast disease. Plants, being sessile, are exposed to an array of abiotic and biotic stresses. To adapt towards the changing environments, plants have evolved mechanisms that help in perceiving stress signals wherein phytohormones play a critical role. They have the ability to network enabling them to mediate defense responses. These endogenous signals, functioning at low doses are a part of all the developmental stages of the plant. Phytohormones possess specific functions as they interact with each other positively or negatively through cross-talks. In the present study, variations in the amount of phytohormones produced during biotic stress caused due to Magnoporthe grisea infection was studied through targeted metabolomics in both primed and control finger millet plants. Histochemical studies revealed callose deposition at the site of pathogen entry in the primed plants indicating its role during plant defense. The knowledge on the genetic makeup during infection was obtained by quantification of MAP kinase kinases 1 and 2 (MKK1/2) and lipoxygenase (LOX) genes, wherein the expression levels were high in the primed plants at 6 hours post-inoculation (hpi) compared to mock-control. Studies indicate the pivotal role of mitogen-activated protein kinase (MAPK or MAP kinases) during defense signalling. It is the first report to be studied on MAPK role in finger millet-blast disease response. Temporal accumulation of LOX enzyme along with its activity was also investigated due to its significant role during jasmonate synthesis in the plant cells. Results indicated its highest activity at 12 hpi. This is the first report on the variation in phytohormone levels in fingermillet - M. grisea pathosystem upon priming which were substantiated through salicylic acid (SA) pathway."	"CD66b<sup>+</sup> monocytes represent a proinflammatory myeloid subpopulation in cancer. Myeloid-derived suppressor cells (MDSC) populate the peripheral blood and contribute to immune regulation in cancer. However, there is limited knowledge on the myeloid cell types with proinflammatory capacities that may serve as opponents of MDSC. In the circulation of cancer patients, a monocyte subpopulation was identified with a specific immunophenotype and transcriptomic signature. They were predominantly CD14<sup>+</sup>CD33<sup>hi</sup>CD16<sup>-/+</sup>HLA-DR<sup>+/hi</sup> cells that typically expressed CD66b. In accordance with the transcriptomics data, NALP3, LOX-1 and PAI-1 levels were also significantly upregulated. The CD66b<sup>+</sup> monocytes displayed high phagocytic activity, matrix adhesion and migration, and provided costimulation for T cell proliferation and IFN-γ secretion; thus, they did not suppress T cell responses. Irrespective of clinical stage, they were identified in various cancers. In conclusion, the CD66b<sup>+</sup> monocytes represent a novel myeloid subpopulation which is devoid of immune regulatory influences of cancer and displays enhanced proinflammatory capacities."	"A Potent Lignan from Prunes Alleviates Inflammation and Oxidative Stress in Lithium/Pilocarpine-Induced Epileptic Seizures in Rats. Prunus domestica L. is an edible plant that is included in the family Rosaceae and proven to possess potent anti-inflammatory and anxiolytic activity. Pinoresinol-4-O-β-d-glucopyranoside (PGu) was isolated from Prunus domestica methanol extract and its structure was determined using 1-D and 2-D NMR (one- and two-dimensional nuclear magnetic resonance). PGu was evaluated for its anticonvulsant activity using lithium/pilocarpine-induced epileptic seizures in rats. PGu displayed a notable antioxidant and anti-inflammatory activity in vitro. It ameliorates the seizures triggered by pilocarpine in a dose-dependent manner, manifested by retarding seizure onset, reducing the number of rats developing seizures, and enhancing the survival of animals after seizure exposure. PGu reduced MDA (malondialdehyde) level by 24.2% in addition to increasing catalase activity by 44.4% at 50 mg/kg b.w compared to pilocarpine-treated animals. This was confirmed by histopathological examination in which pretreatment with PGu (50 mg/kg b.w.) attenuated neurodegeneration and seizures with no histopathological alteration in neurons of the cerebral cortex. In the immunohistochemical examination, it significantly declined the elevated Cyclooxygenase-2 (COX-2) by 40% and decreased Inducible nitric oxide synthase (iNOS) expression by 18% as expressed by the optical density. PGu revealed a pronounced fitting within the active site of 5-LOX (lipoxygenase-5) with a free binding energy (∆G) equals to -65.05 kcal/mol. PGu could perfectly serve as a potent lead drug for the relief of epileptic seizures, which appeals to many patients owing to its natural origin."	"In vitro Antioxidant, Anti-inflammatory, Anti-metabolic Syndrome, Antimicrobial, and Anticancer Effect of Phenolic Acids Isolated from Fresh Lovage Leaves [Levisticum officinale Koch] Elicited with Jasmonic Acid and Yeast Extract. Lovage seedlings were elicited with jasmonic acid (JA) and yeast extract (YE) to induce the synthesis of biologically active compounds. A simulated digestion process was carried out to determine the potential bioavailability of phenolic acids. Buffer extracts were prepared for comparison. The ability to neutralize ABTS radicals was higher in all samples after the in vitro digestion, compared to that in the buffer extracts. However, the elicitation resulted in a significant increase only in the value of the reduction power of the potentially bioavailable fraction of phenolic acids. The effect of the elicitation on the activity of the potentially bioavailable fraction of phenolic acids towards the enzymes involved in the pathogenesis of the metabolic syndrome, i.e., ACE, lipase, amylase, and glucosidase, was analyzed as well. The in vitro digestion caused a significant increase in the ability to inhibit the activity of these enzymes; moreover, the inhibitory activity against alpha-amylase was revealed only after the digestion process. The potential anti-inflammatory effect of the analyzed extracts was defined as the ability to inhibit key pro-inflammatory enzymes, i.e., lipoxygenase and cyclooxygenase 2. The buffer extracts from the YE-elicited lovage inhibited the LOX and COX-2 activity more effectively than the extracts from the control plants. A significant increase in the anti-inflammatory and antimicrobial properties was noted after the simulated digestion."	"The Role of Arachidonic Acid Metabolism in Myocardial Ischemia-Reperfusion Injury. Patients with myocardial ischemic diseases or who are undergoing one of various heart treatments, such as open heart surgery, coronary artery bypass grafting, percutaneous coronary artery intervention or drug thrombolysis, face myocardial ischemia-reperfusion injury (MIRI). However, no effective treatment is currently available for MIRI. To improve the prognosis of people with cardiovascular disease, it is important to research the mechanism of MIRI. Arachidonic acid (AA) is one of the focuses of current research. The various metabolic pathways of AA are closely related to the development of cardiovascular disease, and the roles of various metabolites in ischemia-reperfusion injury have gradually been confirmed. AA is mainly metabolized in the cyclooxygenase (COX) pathway, lipoxygenase (LOX) pathway, and cytochrome P450 monooxygenase (CYP) pathway. This paper summarizes the progress of research on these three major AA metabolic pathways with respect to MIRI."	"Ex vivo culture of head and neck cancer explants in cell sheet for testing chemotherapeutic sensitivity. Tumor explant culture systems can mimic the in vivo tumor microenvironment, proposing as a substitute for preclinical studies for prediction of individual treatment response. Therefore, our study evaluated the potential usefulness of ex vivo tumor explants culture assembled into the cell sheets by anticancer drug screening in patients with head and neck squamous cell carcinoma (HNSCC). Our model included tumor explants incorporated into cell sheet composing of epithelium and subepithelial stroma using tumor and mucosal samples obtained from the HNSCC patients who underwent surgery. Cell growth, viability, and hypoxia were measured by cell counting kit-8, live/dead assay, propidium iodide, and LOX-1 staining, and were compared among the different treatment groups with vehicle, cisplatin or docetaxel. Tumor explants stably survived in the cell sheet over 10 days after explantation, whereas most of the explants in non-matrix culture became nonviable within 5-8 days with the significant daily decrease of viability. The live tissue areas of tumor explants in the cell sheet maintained over 30 days without significant changes although hypoxic cell areas gradually increased up to 5 days. Tissue viability and live cancer tissue areas significantly decreased after the treatment of cisplatin or docetaxel in the dose and time-dependent manners. Our cell sheet-based tumor explants model might be applied to the reliable ex vivo screening for anticancer chemotherapeutics for HNSCC."	"Endothelin-1 Induces Lysyl Oxidase Expression in Pulmonary Artery Smooth Muscle Cells. The increase in thickening of the arterial wall of pulmonary arterial hypertension (PAH) includes cellular proliferation as well as matrix deposition and interrupted internal elastic lamina (IEL) consisting of a thick homogeneous sheet of elastin. Little is, although, known about the detail of IEL formation in PAH. Endothelin-1 is overexpressed in pulmonary arterioles of PAH. We aimed to examine the expression of genes contributing to IEL formation in pulmonary artery smooth muscle cells (PASMCs) especially focused on lysyl oxidase (LOx), an extracellular matrix enzyme that catalyzes the cross-linking of collagens or elastin. We quantified mRNA expressions of genes contributing to IEL formation including LOx in PASMCs using real-time quantitative PCR. We stimulated human PASMCs with endothelin-1 with prostacyclin or trapidil. Endothelin-1 significantly increased LOx expression. Prostacyclin and trapidil restored endothelin-1-induced LOx expression to the basal level. Endothelin-1 increased LOx expression strongly in PASMCs from PAH patients compared to those from controls. Trapidil reduced LOx expression only in PASMCs from PAH patients. Overexpressed endothelin-1 in PAH patients can increase expression of LOx and agitate cross-linking of elastin and collagen resulting in ectopic deposition of them in the vascular media."	"Eicosapentaenoic acid's metabolism of 15-LOX-1 promotes the expression of miR-101 thus inhibits Cox2 pathway in colon cancer. It is well known that diet Eicosapentaenoic acid (EPA) is beneficial to colon cancer (CC). However, the underlying molecular mechanisms of EPA-relating miRNAs on genesis and development of this area is still unclear. This study tries to find the function and specific role of EPA in CC through quantitative PCR (qPCR), Western blotting, immunofluorescence (IF), mass spectrometry, and immunohistochemistry (IHC) assays. By these methods, the enrichment of 15-LOX-1 metabolites of EPA, the expression of miR-101 and Cox2, and the relationship among them in CC are measured. The quantity of miR-101 was obviously suppressed in CC tissues and SW480 cells. After application of miR-101 mimics in CC cell lines, the Cox2 expression was inhibited too. Next, we confirmed that EPA could increase the expression of miR-101 induced by 15-LOX-1. Finally, we tested whether EPA functions as a regulator of miR-101 via the production of resolvin E3. Our data demonstrate that the EPA-15-LOX-1-miR-101-Cox2 signaling pathway owns a crucial position in the pathogenesis and development of diet-related CC. These findings exert exciting meanings for presenting new therapeutic angles in CC."	"Berberine Inhibits the Apoptosis-Induced Metastasis by Suppressing the iPLA2/LOX-5/LTB4 Pathway in Hepatocellular Carcinoma. Hepatocellular carcinoma (HCC) is one of the most malignant cancers around the world. HCC is less sensitive to conventional cytotoxic agents and easily develops into systemic metastases. However, the molecular mechanisms of the metastasis of HCC are poorly understood and need elucidation. Transwell system of the chemotherapy-challenged and unchallenged HepG2 cells was established. Adhesion assay and scratch-wound assay were utilized to analyze the adhesion and migration of HepG2 cells. iPLA2 and LOX-5 expression were analyzed by Western blot. LTB4 level was analyzed by ELISA. Chemotherapeutics are traditionally regarded as a way of killing tumor cells; on the other hand, we proved that the chemotherapeutics-induced tumor cell apoptosis can also change the tumor microenvironment by activating the LOX pathway and subsequently release inflammatory factors such as LTB4 which can stimulate the adhesion and migration of the small number of surviving cells. Berberine can reverse the adhesion and migration of HepG2 cells by inhibiting the expression of LOX-5 and reducing the LTB4 production in the tumor microenvironment. Our study sheds light on a novel anti-metastasis strategy that the combination of Berberine and chemotherapy may prevent the chemotherapy-induced metastasis in HCC."	"A site-moiety map and virtual screening approach for discovery of novel 5-LOX inhibitors. The immune system works in conjunction with inflammation. Excessive inflammation underlies various human diseases, such as asthma, diabetes and heart disease. Previous studies found that 5-lipoxygenase (5-LOX) plays a crucial role in metabolizing arachidonic acid into inflammatory mediators and is a potential therapeutic target. In this study, we performed an in silico approach to establish a site-moiety map (SiMMap) to screen for new 5-LOX inhibitors. The map is composed of several anchors that contain key residues, moiety preferences, and their interaction types (i.e., electrostatic (E), hydrogen-bonding (H), and van der Waals (V) interactions) within the catalytic site. In total, we identified one EH, one H, and five V anchors, within the 5-LOX catalytic site. Based on the SiMMap, three 5-LOX inhibitors (YS1, YS2, and YS3) were identified. An enzyme-based assay validated inhibitory activity of YS1, YS2, and YS3 against 5-LOX with an IC50 value of 2.7, 4.2, and 5.3 μM, respectively. All three inhibitors significantly decrease LPS-induced TNF-α and IL-6 production, which suggests its potential use an anti-inflammatory agent. In addition, the identified 5-LOX inhibitors contain a novel scaffold. The discovery of these inhibitors presents an opportunity for designing specific anti-inflammatory drugs."	"Prolonged exposure to β-lactam antibiotics reestablishes susceptibility of daptomycin-nonsusceptible Staphylococcus aureus to daptomycin. Daptomycin-nonsusceptible (DAP-NS) S. aureus often exhibit gain-in-function mutations in the mprF gene (involved in positive surface charge maintenance). Standard β-lactams, although relatively inactive against MRSA, may prevent emergence of mprF mutations and DAP-NS. We determined if β-lactams might also impact DAP-NS isolates already possessing an mprF mutation to revert them to DAP-susceptible (DAP-S) phenotypes, and if so, whether this is associated with specific penicillin-binding protein (PBP) targeting.This study included 25 DAP-S/DAP-NS isogenic, clinically-derived MRSA bloodstream isolates. MICs were performed to DAP; nafcillin (NAF; PBP-promiscuous), cloxacillin (LOX; PBP-1), ceftriaxone (CRO; PBP-2) and cefoxitin (FOX; PBP-4). Three DAP-NS isolates were selected for 28-day serial passage in subinhibitory β-lactams. DAP MICs and time-kill assays, host defense peptide (LL-37) susceptibilities and whole genome sequencing were performed to associate genetic changes to key phenotypic profiles.Pronounced decreases in baseline MICs were observed for NAF and LOX (but not for CRO or FOX) among DAP-NS vs DAP-S isolates (&quot;see-saw&quot; effect). Prolonged (28d) β-lactam passage of three DAP-NS isolates significantly reduced DAP MICs. LOX was most impactful (∼16-fold decrease in DAP MIC; 2-to-0.125 mg/L). In these DAP-NS isolates with preexisting mprF polymorphisms, accumulation of additional mprF mutations occurred with prolonged LOX exposures. This was associated with enhanced LL-37 killing activity and reduced surface charge (both mprF-dependent phenotypes). β-lactams which either promiscuously or specifically target PBP-1 have significant DAP 're-sensitizing' effects against DAP-NS S. aureus strains. This may relate to acquisition of multiple mprF SNPs which, in turn, affect cell envelope function and metabolism."	"Melatonin inhibits high glucose-induced ox-LDL/LDL expression and apoptosis in human umbilical endothelial cells. Background Cardiovascular disease (CVD) is one of the major cause of mortality in diabetic patients. Evidence suggests that hyperglycemia in diabetic patients contributes to increased risk of CVD. This study is to investigate the therapeutic effects of melatonin on glucose-treated human umbilical vein endothelial cells (HUVEC) and provide insights on the underlying mechanisms. Materials and methods Cell viability was determined using 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay. Reactive oxygen species (ROS) and membrane potential was detected using 2',7'-dichlorofluorescein diacetate and 5,5',6,6'-tetrachloro-1,1',3,3'-tetraethylbenzimidazolcarbocyanine iodide (JC-1) dye staining, respectively. While, cell apoptosis was determined by Annexin-V staining and protein expression was measured using Western blot. Results Our results suggested that melatonin inhibited glucose-induced ROS elevation, mitochondria dysfunction and apoptosis on HUVEC. Melatonin inhibited glucose-induced HUVEC apoptosis via PI3K/Akt signaling pathway. Activation of Akt further activated BcL-2 pathway through upregulation of Mcl-1 expression and downregulation Bax expression in order to inhibit glucose-induced HUVEC apoptosis. Besides that, melatonin promoted downregulation of oxLDL/LOX-1 in order to inhibit glucose-induced HUVEC apoptosis. Conclusions In conclusion, our results suggested that melatonin exerted vasculoprotective effects against glucose-induced apoptosis in HUVEC through PI3K/Akt, Bcl-2 and oxLDL/LOX-1 signaling pathways."	"Site-Specific Recombination with Inverted Target Sites: A Cautionary Tale of Dicentric and Acentric Chromosomes. Site-specific recombinases are widely used tools for analysis of genetics, development, and cell biology, and many schemes have been devised to alter gene expression by recombinase-mediated DNA rearrangements. Because the FRT and lox target sites for the commonly used FLP and Cre recombinases are asymmetrical, and must pair in the same direction to recombine, construct design must take into account orientation of the target sites. Both direct and inverted configurations have been used. However, the outcome of recombination between target sites on sister chromatids is frequently overlooked. This is especially consequential with inverted target sites, where exchange between oppositely oriented target sites on sisters will produce dicentric and acentric chromosomes. By using constructs that have inverted target sites in Drosophila melanogaster and in mice, we show here that dicentric chromosomes are produced in the presence of recombinase, and that the frequency of this event is quite high. The negative effects on cell viability and behavior can be significant, and should be considered when using such constructs."	"Baicalein Alleviates Erectile Dysfunction Associated With Streptozotocin-Induced Type I Diabetes by Ameliorating Endothelial Nitric Oxide Synthase Dysfunction, Inhibiting Oxidative Stress and Fibrosis. Management of diabetes mellitus induced-erectile dysfunction (DMED) is challenging because of its poor responses to phosphodiesterase type 5 inhibitors. Increasingly important roles of 12-lipoxygenase (12-LOX) have been proven in diabetes mellitus. To investigate 12-LOX activity and therapeutic effect of its inhibitor, baicalein (BE), on DMED. Intraperitoneal streptozotocin injection was used to induce type I DM, and an apomorphine test was used to evaluate erectile function. In experiment A, we assessed 12-LOX expression alteration in the corpus cavernosum (CC) of rats with DMED of different levels of severity. In experiment B, rats with DMED were intraperitoneally injected with BE for 4 weeks, and control rats were injected with vehicles. The erectile function was tested by cavernous nerve stimulation before penile tissue was harvested. We performed Western blot, immunohistochemistry, immunofluorescence, Masson trichrome staining, and enzyme-linked immunosorbent assays to measure related proteins in CC. The main outcome measures included rectile response, histologic examination, and expression alteration of related proteins. 12-LOX upregulation was associated with the progression of type I DMED. After 4 weeks treatment, compared with the DMED group, the DMED + BE group showed better erectile responses to cavernous nerve stimulation. In the DMED + BE group, significantly enhanced endothelial nitric oxide synthase/nitric oxide/cyclic guanosine monophosphate pathway, reduced 12-LOX expression, and inhibited p38 mitogen-activated protein kinase/arginase II/L-arginine pathway were showed in CC relative to the DMED group. In addition, overactivated oxidative stress and fibrosis in the DMED group were both partially ameliorated in the DMED + BE group. BE may be considered as an effective therapy for DMED, but needs to be verified in future human investigations. The role of 12-LOX and its inhibitor, BE, is firstly demonstrated in rats with type I DMED. However, the experimental data are derived from animal models with without evidences from cellular-based experiments. 12-LOX might serve as an important factor in the pathogenesis of type I DMED. BE alleviated erectile dysfunction in rats with type I DMED probably by inhibiting 12-LOX expression, ameliorating endothelial nitric oxide synthase dysfunction, as well as suppressing oxidative stress and fibrosis. Chen Y, Zhou B, Yu Z, et al. Baicalein Alleviates Erectile Dysfunction Associated With Streptozotocin-Induced Type I Diabetes by Ameliorating Endothelial Nitric Oxide Synthase Dysfunction, Inhibiting Oxidative Stress and Fibrosis. J Sex Med 2020;17:1434-1447."	"Heat-priming improved heat tolerance of photosynthesis, enhanced terpenoid and benzenoid emission and phenolics accumulation in Achillea millefolium. The mechanism of heat priming, triggering alteration of secondary metabolite pathway fluxes and pools to enhance heat tolerance is not well understood. Achillea millefolium is an important medicinal herbal plant, rich in terpenoids and phenolics. In this study, the potential of heat priming treatment (35°C for 1 h) to enhance tolerance of Achillea plants upon subsequent heat shock (45°C for 5 min) stress was investigated through recovery (0.5-72 h). The priming treatment itself had minor impacts on photosynthesis, led to moderate increases in the emission of lipoxygenase (LOX) pathway volatiles and isoprene, and to major elicitation of monoterpene and benzaldehyde emissions in late stages of recovery. Upon subsequent heat shock, in primed plants, the rise in LOX and reduction in photosynthetic rate (A) was much less, stomatal conductance (gs ) was initially enhanced, terpene emissions were greater and recovery of A occurred faster, indicating enhanced heat tolerance. Additionally, primed plants accumulated higher contents of total phenolics and condensed tannins at the end of the recovery. These results collectively indicate that heat priming improved photosynthesis upon subsequent heat shock by enhancing gs and synthesis of volatile and non-volatile secondary compounds with antioxidative characteristics, thereby maintaining the integrity of leaf membranes under stress. This article is protected by copyright. All rights reserved."	"Effects of a postnatal Atrx conditional knockout in neurons on autism-like behaviours in male and female mice. Alpha-thalassemia/mental retardation, X-linked, or ATRX, is an autism susceptibility gene that encodes a chromatin remodeler. Mutations of ATRX result in the ATR-X intellectual disability syndrome and have been identified in autism spectrum disorder (ASD) patients. The mechanisms by which ATRX mutations lead to autism and autistic-like behaviours are not yet known. To address this question, we generated mice with postnatal Atrx inactivation in excitatory neurons of the forebrain and performed a battery of behavioural assays that assess autistic-like behaviours. Male and female mice with a postnatal conditional ablation of ATRX were generated using the Cre/lox system under the control of the αCaMKII gene promoter. These mice were tested in a battery of behavioural tests that assess autistic-like features. We utilized paradigms that measure social behaviour, repetitive, and stereotyped behaviours, as well as sensory gating. Statistics were calculated by two-way repeated measures ANOVA with Sidak's multiple comparison test or unpaired Student's t tests as indicated. The behaviour tests revealed no significant differences between Atrx-cKO and control mice. We identified sexually dimorphic changes in odor habituation and discrimination; however, these changes did not correlate with social deficits. The postnatal knockout of Atrx in forebrain excitatory neurons does not lead to autism-related behaviours in male or female mice."	"Lysyl oxidase-like 2 promotes esophageal squamous cell carcinoma cell migration independent of catalytic activity. Lysyl oxidase-like 2 (LOXL2) is a member of the lysyl oxidase (LOX) family that contributes to tumor cell metastasis. Our previous data identified two splice variants of LOXL2 (i.e., LOXL2 Δ72 and Δ13) in esophageal squamous cell carcinoma (ESCC) cells that increased cell invasiveness and migration but had lower LOX activities than wild-type LOXL2 (LOXL2 WT). We generated a series of LOXL2 deletion mutants with different deleted biochemical domains and examined the relationship between the cell migration abilities and catalytic activities, as well as subcellular locations, of these deletion mutants compared with LOXL2 WT in ESCC cells to explore the mechanism of LOXL2-driven ESCC cell migration. Our results indicated that the deletion mutants of LOXL2 had impaired deamination enzymatic activity; LOXL2 ΔSRCR4, which lacks the fourth scavenger receptor cysteine-rich (SRCR) domain, had lower enzymatic activity; and LOXL2 Y689F had no catalytic activity compared with LOXL2 WT. However these two mutants stimulated greater cellular migration than LOXL2 WT. Furthermore, the degree of cell migration promoted by LOXL2 ΔLO (in which the LOX-like domain was deleted) was higher than that of LOXL2 WT, and LOXL2 ΔSRCR3, which does not have the third SRCR domain, had lower LOX activity and cellular migration ability than LOXL2 WT. These results suggested that LOXL2 promotes ESCC cell migration independent of catalytic activity."	"Characteristics of penile growth in pubertal rats and a non-invasive method to lengthen the penis. Males with short penises may suffer from sexual dysfunction and psychological problems. However, currently, managing short penis is a huge challenge. To explore whether inhibition of lysyl oxidase (LOX) activity (anti-LOX) combined with a vacuum device could lengthen the penis of pubertal rat. Male rats of different ages were purchased, their exposed penile lengths and weights were measured, and protein expression and lysyl oxidase activity in the corpus cavernosum were analyzed. Fifteen-day-old rats were then purchased and divided into six groups: control, Anti-lysyl oxidase, -200 mm Hg (vacuum device under -200 mm Hg value), -200 mm Hg + Anti-lysyl oxidase, -300 mm Hg, and -300 mm Hg + Anti-lysyl oxidase groups. After the intervention duration of 7 weeks, rats' penile length was measured and erectile function was assessed. The corpus cavernosum was harvested for histopathology and molecular assessments. Exposed penile length and weight significantly increased with age, especially between 4 and 8 weeks. Both the protein expression and lysyl oxidase activity in corpus cavernosum were the highest at 2 weeks; however, they quickly decreased with age and slowly declined after 8 weeks. Anti-lysyl oxidase significantly increased the penile length by 10.79% over controlled rats, -200 mm Hg + Anti-lysyl oxidase lengthened it by 14.05%, and -300 mm Hg + Anti-lysyl oxidase increased it by 19.84%. Anti-lysyl oxidase significantly reduced lysyl oxidase activity to decrease pyridinoline concentration; however, it did not change desmosine (P = .28), hydroxyproline (P = .14), and total elastin (P = .06) levels. Anti-lysyl oxidase with or without a vacuum device did not diminish erectile function or impair the normal microstructure of corpus cavernosum. The rats' penile growth peaks occurred between 4 and 8 weeks. Anti-lysyl oxidase with a vacuum device promoted penile lengthening by inhibiting pyridinoline production to induce tunica albuginea remodeling. The penile lengthening effect was more obvious in pubertal rats than the adult rats. None of the procedures decreased erectile function."	"Engineered antigen containing epitopes from Loxosceles spp. spider toxins induces a monoclonal antibody (Lox-mAb3) against astacin-like metalloproteases. Loxoscelism pose a health issue in the South America. The treatment for these accidents is based on the administration of antivenom produced in animals immunized with Loxosceles venom. In this work, a previously produced non-toxic multiepitopic chimeric protein (rMEPlox), composed of epitopes derived from the main toxins families (sphyngomielinase-D, metalloproteases, and hyaluronidases) of Loxosceles spider venoms, was used as antigen to produce monoclonal antibodies (mAbs). A selected anti-rMEPlox mAb (Lox-mAb3) reacted with metalloprotease from L. intermedia venom and showed cross-reactivity with metalloproteses from Brazilian and Peruvian Loxosceles laeta and Loxosceles gaucho venoms in immunoassays. The sequence recognized by Lox-mAb3 (184ENNTRTIGPFDYDSIMLYGAY205) corresponds to the C-terminal region of Astacin-like metalloprotease 1 and the amino acid sequence IGPFDYDSI, conserved among the homologs metalloproteases sequences, is important for antibody recognition. Lox-mAb3 neutralizes the fibrinogenolytic activity caused by metalloprotease from L. intermedia spider venom in vitro, which may lead to a decrease in hemorrhagic disturbances caused by Loxosceles envenomation. Our results show, for the first time, the use of a non-toxic multiepitopic protein for the production of a neutralizing monoclonal antibody against a metalloprotease of medically important Loxosceles venoms. These results contribute for the production improvement of therapeutic antivenom against loxoscelism."	"5-LOX inhibition by natural products. NA"	"Layered Double Hydroxide-Modified Organic Electrochemical Transistor for Glucose and Lactate Biosensing. Biosensors based on Organic Electrochemical Transistors (OECTs) are developed for the selective detection of glucose and lactate. The transistor architecture provides signal amplification (gain) with respect to the simple amperometric response. The biosensors are based on a poly(3,4-ethylenedioxythiophene):poly(styrenesulfonate) (PEDOT:PSS) channel and the gate electrode is functionalised with glucose oxidase (GOx) or lactate oxidase (LOx) enzymes, which are immobilised within a Ni/Al Layered Double Hydroxide (LDH) through a one-step electrodeposition procedure. The here-designed OECT architecture allows minimising the required amount of enzyme during electrodeposition. The output signal of the biosensor is the drain current (Id), which decreases as the analyte concentration increases. In the optimised conditions, the biosensor responds to glucose in the range of 0.1-8.0 mM with a limit of detection (LOD) of 0.02 mM. Two regimes of proportionality are observed. For concentrations lower than 1.0 mM, a linear response is obtained with a mean gain of 360, whereas for concentrations higher than 1.0 mM, Id is proportional to the logarithm of glucose concentration, with a gain of 220. For lactate detection, the biosensor response is linear in the whole concentration range (0.05-8.0 mM). A LOD of 0.04 mM is reached, with a net gain equal to 400."	"Deletion of the myeloid endothelin-B receptor confers long-term protection from angiotensin II-mediated kidney, eye and vessel injury. The endothelin system may be an important player in hypertensive end-organ injury as endothelin-1 increases blood pressure and is pro-inflammatory. The immune system is emerging as an important regulator of blood pressure and we have shown that the early hypertensive response to angiotensin-II infusion was amplified in mice deficient of myeloid endothelin-B (ETB) receptors (LysM-CreEdnrblox/lox). Hypothesizing that these mice would display enhanced organ injury, we gave angiotensin-II to LysM-CreEdnrblox/lox and littermate controls (Ednrblox/lox) for six weeks. Unexpectedly, LysM-CreEdnrblox/lox mice were significantly protected from organ injury, with less proteinuria, glomerulosclerosis and inflammation of the kidney compared to controls. In the eye, LysM-CreEdnrblox/lox mice had fewer retinal hemorrhages, less microglial activation and less vessel rarefaction. Cardiac remodeling and dysfunction were similar in both groups at week six but LysM-CreEdnrblox/lox mice had better endothelial function. Although blood pressure was initially higher in LysM-CreEdnrblox/lox mice, this was not sustained. A natriuretic switch at about two weeks, due to enhanced ETB signaling in the kidney, induced a hypertensive reversal. By week six, blood pressure was lower in LysM-CreEdnrblox/lox mice than in controls. At six weeks, macrophages from LysM-CreEdnrblox/lox mice were more anti-inflammatory and had greater phagocytic ability compared to the macrophages of Ednrblox/lox mice. Thus, myeloid cell ETB receptor signaling drives this injury both through amplifying hypertension and by inflammatory polarization of macrophages."	"Extracellular vesicles influence the pulmonary arterial extracellular matrix in congenital diaphragmatic hernia. Abnormal pulmonary vasculature directly affects the development and progression of congenital diaphragmatic hernia (CDH)-associated pulmonary hypertension (PH). Though overarching structural and cellular changes in CDH-affected pulmonary arteries have been documented, the precise role of the extracellular matrix (ECM) in the pulmonary artery (PA) pathophysiology remains undefined. Here, we quantify the structural, compositional, and mechanical CDH-induced changes in the main and distal PA ECM and investigate the efficacy of mesenchymal stem cell-derived extracellular vesicles (MSC-EVs) as a therapy to ameliorate pathological vascular ECM changes. Pregnant Sprague-Dawley rodents were administered nitrofen to induce CDH-affected pulmonary vasculature in the offspring. A portion of CDH-affected pups was treated with intravenous infusion of MSC-EVs (1 × 10<sup>10</sup> /mL) upon birth. A suite of histological, mechanical, and transmission electron microscopic analyses were utilized to characterize the PA ECM. The CDH model main PA presented significantly altered characteristics-including greater vessel thickness, greater lysyl oxidase (LOX) expression, and a relatively lower ultimate tensile strength of 13.6 MPa compared to control tissue (25.1 MPa), suggesting that CDH incurs ECM structural disorganization. MSC-EV treatment demonstrated the potential to reverse CDH-related changes, particularly through rapid inhibition of ECM remodeling enzymes (LOX and MMP-9). Additionally, MSC-EV treatment bolstered structural aspects of the PA ECM and mitigated pathological disorganization as exhibited by increased medial wall thickness and stiffness that, while not significantly altered, trends away from CDH-affected tissue. These data demonstrate notable ECM remodeling in the CDH pulmonary vasculature, along with the capacity of MSC-EVs to attenuate pathological ECM remodeling, identifying MSC-EVs as a potentially efficacious therapeutic for CDH-associated pulmonary hypertension."	"Regulation of LOX-1 on adhesion molecules and neutrophil infiltration in mouse Aspergillus fumigatus keratitis. To determine whether lectin-like ox-LDL receptor (LOX-1) regulates adhesion molecules expression and neutrophil infiltration in Aspergillus fumigatus (A. fumigatus) keratitis of C57BL/6 mice. C57BL/6 mice were pretreated with a neutralizing antibody to LOX-1 (5 µg/5 µL) or control nonspecific IgG (5 µg/5 µL), LOX-1 inhibitor Poly-I (2 µg/5 µL) or PBS by subconjunctival injection. Fungal keratitis (FK) mouse models of C57BL/6 mice were established by scraping corneal central epithelium, smearing A. fumigatus on the corneal surface and covering the eye with contact lenses. The corneal response to infection was assessed via clinical score. The mRNA levels of the adhesion molecules intercellular cell adhesion molecule-1 (ICAM-1), vascular cell adhesion molecule-1 (VCAM-1), P-selectin and E-selectin were tested in control and infected corneas by reverse transcription-polymerase chain reaction (RT-PCR). The protein levels of ICAM-1 were evaluated by immunofluorescence (IF) and Western blot. Neutrophils were extracted from the abdominal cavity of C57BL/6 mice followed by pretreatment using antibody to LOX-1 (10 µg/mL) or control nonspecific IgG (10 µg/mL), the Poly-I (4 µg/mL) or PBS. The cells were then stimulated with A. fumigatus and tested mRNA and protein levels of lymphocyte function-associated antigen-1 (LFA-1) using RT-PCR and Western blot. IF and myeloperoxidase (MPO) assays were used to assess neutrophil infiltration in mice corneas. Pretreatment of LOX-1 antibody or the Poly-I reduced the degree of inflammation of cornea and decreased the clinical FK score compared with pretreatment of IgG or PBS (both P&lt;0.01). And these pretreatment also displayed an obvious decline in the mRNA levels of ICAM-1, VCAM-1, P-selectin, E-selectin and LFA-1 expression compared with control groups (all P&lt;0.01). Furthermore, pretreated with LOX-1 antibody or Poly-I, the protein levels of ICAM-1 and LFA-1 also decreased compared with control groups (all P&lt;0.05). Neutrophil infiltration in the cornea was significantly reduced after pretreatment of LOX-1 antibody or Poly-I compared with control groups by IF and MPO assays (both P&lt;0.01). Inhibition of LOX-1 can decrease the expression of adhesion molecules and reduce neutrophil infiltration in A. fumigatus infected corneas of C57BL/6 mice."	"An Anti-Inflammatory Composition of Boswellia serrata Resin Extracts Alleviates Pain and Protects Cartilage in Monoiodoacetate-Induced Osteoarthritis in Rats. The boswellic acids, the active compounds in Boswellia serrata gum resin extract, are potent anti-inflammatory agents and are specific nonredox inhibitors of 5-Lipoxygenase (5-LOX). Here, we present the anti-osteoarthritis (OA) efficacy of LI13019F1 (also known as Serratrin®), a unique composition containing the acidic and nonacidic fractions of B. serrata gum resin. This composition strongly inhibited 5-LOX activity with the half-maximal inhibitory concentration (IC50) of 43.35 ± 4.90 μg/mL. Also, LI13019F1 strongly inhibited the leukotriene B4 (IC50, 7.80 ± 2.40 μg/mL) and prostaglandin E2 (IC50, 6.19 ± 0.52 μg/mL) productions in human blood-derived cells. Besides, LI13019F1 reduced TNF-α production with the IC50 of 12.38 ± 0.423 μg/mL. On average, 1, 2.5, and 5 μg/mL doses of LI13019F1 protected 34.62, 47.66, and 62.29% SW1353 human chondrosarcoma cells from IL-1β induced SOX-9 depletion, respectively. Further, a 28-day preclinical proof-of-concept study evaluated the pain relief efficacy of LI13019F1 in monoiodoacetate- (MIA-) induced Sprague-Dawley rats. At the end of the study, 150 and 300 mg/kg doses of LI13019F1 supplemented rats showed significant improvements (55.17 ± 5.81 g (p &lt; 0.05), and 66.22 ± 6.30 g (p &lt; 0.05), respectively, vs. MIA: 31.22 ± 7.15 g) in body-weight-bearing capacities. Concurrently, LI13019F1-150 and LI13019F1-300 rats substantially (p &lt; 0.05) increased the threshold of pain sensitivity to pressure (26.98 ± 2.36 and 28.06 ± 2.72-gram force, respectively; vs. 18.63 ± 5.82 in MIA) and increased (p &lt; 0.05) the latent time to withdraw the paw after a thermal stimulus (23.61 ± 2.73 and 28.18 ± 1.90 sec, respectively; vs. 16.56 ± 1.22 sec. in MIA). Besides, the histological observations on Safranin-O green stained articular cartilage revealed that LI13019F1 also prevented the MIA-induced structural damage of the cartilage and reduced the loss of the extracellular matrix (ECM) components in the experimental rats. In conclusion, the present observations suggest that LI13019F1, a new composition of B. serrata gum resin extracts, reduces pain and protects articular cartilage from the damaging action of MIA in a rodent model."	"Effects of hemodialysis on plasma oxylipins. Chronic kidney disease (CKD) is an important risk factor for cardiovascular and all-cause mortality. Survival rates among end-stage renal disease (ESRD) hemodialysis patients are poor and most deaths are related to cardiovascular disease. Oxylipins constitute a family of oxygenated natural products, formed from fatty acid by pathways involving at least one step of dioxygen-dependent oxidation. They are derived from polyunsaturated fatty acids (PUFAs) by cyclooxygenase (COX) enzymes, by lipoxygenases (LOX) enzymes, or by cytochrome P450 epoxygenase. Oxylipins have physiological significance and some could be of regulatory importance. The effects of decreased renal function and dialysis treatment on oxylipin metabolism are unknown. We studied 15 healthy persons and 15 CKD patients undergoing regular hemodialysis treatments and measured oxylipins (HPLC-MS lipidomics) derived from cytochrome P450 (CYP) monooxygenase and lipoxygenase (LOX)/CYP ω/(ω-1)-hydroxylase pathways in circulating blood. We found that all four subclasses of CYP epoxy metabolites were increased after the dialysis treatment. Rather than resulting from altered soluble epoxide hydrolase (sEH) activity, the oxylipins were released and accumulated in the circulation. Furthermore, hemodialysis did not change the majority of LOX/CYP ω/(ω-1)-hydroxylase metabolites. Our data support the idea that oxylipin profiles discriminate ESRD patients from normal controls and are influenced by renal replacement therapies."	"Soluble Uric Acid Is an Intrinsic Negative Regulator of Monocyte Activation in Monosodium Urate Crystal-Induced Tissue Inflammation. Although monosodium urate (MSU) crystals are known to trigger inflammation, published data on soluble uric acid (sUA) in this context are discrepant. We hypothesized that diverse sUA preparation methods account for this discrepancy and that an animal model with clinically relevant levels of asymptomatic hyperuricemia and gouty arthritis can ultimately clarify this issue. To test this, we cultured human monocytes with different sUA preparation solutions and found that solubilizing uric acid (UA) by prewarming created erroneous results because of UA microcrystal contaminants triggering IL-1β release. Solubilizing UA with NaOH avoided this artifact, and this microcrystal-free preparation suppressed LPS- or MSU crystal-induced monocyte activation, a process depending on the intracellular uptake of sUA via the urate transporter SLC2A9/GLUT9. CD14<sup>+</sup> monocytes isolated from hyperuricemic patients were less responsive to inflammatory stimuli compared with monocytes from healthy individuals. Treatment with plasma from hyperuricemic patients impaired the inflammatory function of CD14<sup>+</sup> monocytes, an effect fully reversible by removing sUA from hyperuricemic plasma. Moreover, Alb-creERT2;Glut9<sup>lox/lox</sup> mice with hyperuricemia (serum UA of 9-11 mg/dl) showed a suppressed inflammatory response to MSU crystals compared with Glut9<sup>lox/lox</sup> controls without hyperuricemia. Taken together, we unravel a technical explanation for discrepancies in the published literature on immune effects of sUA and identify hyperuricemia as an intrinsic suppressor of innate immunity, in which sUA modulates the capacity of monocytes to respond to danger signals. Thus, sUA is not only a substrate for the formation of MSU crystals but also an intrinsic inhibitor of MSU crystal-induced tissue inflammation."	"Hypoxia in bone metastasis and osteolysis. Hypoxia is a common feature in tumors, driving pathways that promote epithelial-to-mesenchymal transition, invasion, and metastasis. Clinically, high levels of hypoxia-inducible factor (HIF) expression and stabilization at the primary site in many cancer types is associated with poor patient outcomes. Experimental evidence suggests that HIF signaling in the primary tumor promotes their dissemination to the bone, as well as the release of factors such as LOX that act distantly on the bone to stimulate osteolysis and form a pre-metastatic niche. Additionally, the bone itself is a generally hypoxic organ, fueling the activation of HIF signaling in bone resident cells, promoting tumor cell homing to the bone as well as osteoclastogenesis. The hypoxic microenvironment of the bone also stimulates the vicious cycle of tumor-induced bone destruction, further fueling tumor cell growth and osteolysis. Furthermore, hypoxia appears to regulate key tumor dormancy factors. Thus, hypoxia acts both on the tumor cells as well as the metastatic site to promote tumor cell metastasis."	"Cepharanthine attenuates cerebral ischemia/reperfusion injury by reducing NLRP3 inflammasome-induced inflammation and oxidative stress via inhibiting 12/15-LOX signaling. Cepharanthine (CEP) is a potential candidate for treatment of cerebral ischemia/reperfusion (I/R) injury, due to its anti-inflammatory and anti-oxidative properties. To investigate the effect of CEP on cerebral I/R injury, we established a mouse model of transient middle cerebral artery occlusion (tMCAO) and a microglia cell model of oxygen and glucose deprivation/reoxygenation (OGD/R). Administration of CEP attenuated neurological deficits, reduced infarct volume and edema, and decreased microglia activation in MCAO mice. Immunofluorescence staining showed an up-regulation in NLR Family Pyrin Domain Containing 3 (NLRP3) immunoreactivity in Iba1-labled microglia together with total Iba1 and NLRP3 expression in the brain following tMCAO, while down-regulated by CEP treatment. In both tMCAO-induced mice and OGD/R-treated BV-2 cells, CEP exhibited dose-dependent inhibition on the expression of NLRP3, ASC and cleaved caspase-1. Importantly, CEP attenuated tMCAO or OGD/R-induced overproduction of M1 microglia-regulated pro-inflammation cytokines IL-1β and IL-18, suggesting that CEP might involve in suppressing microglia polarization to M1 phenotype in vivo and in vitro. Moreover, CEP dose-dependently inhibited tMCAO-induced arachidonate 15 lipoxygenase (ALOX15) together with Iba1-labled microglia. The subsequent ALOX15-mediated oxidative stress was decreased by CEP treatment in vivo and in vitro, as evidenced by reduced ROS generation and MDA level, and increased SOD activity. Taken together, we demonstrate that CEP attenuates cerebral I/R injury probably by inhibiting microglia activation and NLRP3 inflammasome-induced inflammation and reducing oxidative stress via suppressing 12/15-LOX signaling."	"Synthesis of furocoumarin-stilbene hybrids as potential multifunctional drugs against multiple biochemical targets associated with Alzheimer's disease. A series of furocoumarin-stilbene hybrids has been synthesized and evaluated in vitro for inhibitory effect against acetylcholinesterase (AChE), butyrylcholinestarase (BChE), β-secretase, cyclooxygenase-2 (COX-2), and lipoxygenase-5 (LOX-5) activities including free radical-scavenging properties. Among these hybrids, 8-(3,5-dimethoxyphenyl)-4-(3,5-dimethoxystyryl)furochromen-2-one 4h exhibited significant anticholinesterase activity and inhibitory effect against β-secretase, COX-2 and LOX-5 activities. 2,2-Diphenyl-1-picrylhydrazyl (DPPH) radical scavenging activity and an in vitro cell-based antioxidant activity assay involving lipopolysaccharide induced reactive oxygen species production revealed that 4h has capability of scavenging free radicals. Molecular docking into AChE, BChE, β-secretase, COX-2 and LOX-5 active sites has also been performed."	"The role of oxidation of low-density lipids in pathogenesis of osteoarthritis: A narrative review. Osteoarthritis (OA) is a chronic joint disorder that causes degeneration of cartilage, synovial inflammation, and formation of osteophytes. Aging, obesity, and sex are considered the main risk factors of OA. Recent studies have suggested that metabolic syndrome (MetS) disorders, such as hypertension, hyperlipidemia, diabetes mellitus, and obesity, may be involved in the pathogenesis and progression of OA. MetS disorders are common diseases that also result in atherosclerosis. Researchers believe that OA and atherosclerosis have underlying similar molecular mechanisms because the prevalence of both diseases increases with age. Oxidation of low-density lipoprotein (ox-LDL) is believed to play a role in the pathogenesis of atherosclerosis. Recent reports have shown that ox-LDL and low-density lipoprotein receptor 1 (LOX-1) are involved in the pathogenesis of OA. The purpose of this narrative review is to summarize the current understanding of the role of the LOX-1/ox-LDL system in the pathogenesis of OA and to reveal common underlying molecular pathways that are shared by MetS in OA and the LOX-1/ox-LDL system."	"NBCe2 (Slc4a5) Is Expressed in the Renal Connecting Tubules and Cortical Collecting Ducts and Mediates Base Extrusion. Arterial hypertension, is a common disorder with multiple and variable etiologies. Single nucleotide polymorphism analyses have detected an association between variants in the gene encoding the electrogenic Na<sup>+</sup>:HCO3<sup>-</sup> cotransporter NBCe2 (Slc4a5), and salt-sensitive hypertension. Mice with genetic deletion of NBCe2 are hypertensive, and the cause of the blood pressure (BP) increase is believed to arise from a lack of renal NBCe2 function. The exact cellular expression of NBCe2 in the kidney tubular system is, however, not determined. Here, we find NBCe2 to be expressed predominantly in isolated connecting tubules (CNT) and cortical collecting ducts (CD) by RT-PCR. In isolated renal CNT and CCD, genetic deletion of NBCe2 leads to decreased net base extrusion. To determine the role of renal NBCe2 in the development of hypertension, we generated CNT and intercalated cell NBCe2 knockout mice by crossing an Slc4a5 lox mouse with mice expressing cre recombinase under the V-ATPase B1 subunit promotor. Although the mice displayed changes in the expression of renal membrane transporters, we did not detect hypertension in these mice by tail cuff recordings. In conclusion, while global NBCe2 deletion certainly causes hypertension this study cannot confirm the role of renal NBCe2 expression in blood pressure regulation."	"Eicosanoids and Oxidative Stress in Diabetic Retinopathy. Oxidative stress is an important factor to cause the pathogenesis of diabetic retinopathy (DR) because the retina has high vascularization and long-time light exposition. Cyclooxygenase (COX), lipoxygenase (LOX), and cytochrome P450 (CYP) enzymes can convert arachidonic acid (AA) into eicosanoids, which are important lipid mediators to regulate DR development. COX-derived metabolites appear to be significant factors causative to oxidative stress and retinal microvascular dysfunction. Several elegant studies have unraveled the importance of LOX-derived eicosanoids, including LTs and HETEs, to oxidative stress and retinal microvascular dysfunction. The role of CYP eicosanoids in DR is yet to be explored. There is clear evidence that CYP-derived epoxyeicosatrienoic acids (EETs) have detrimental effects on the retina. Our recent study showed that the renin-angiotensin system (RAS) activation augments retinal soluble epoxide hydrolase (sEH), a crucial enzyme degrading EETs. Our findings suggest that EETs blockade can enhance the ability of RAS blockade to prevent or mitigate microvascular damage in DR. This review will focus on the critical information related the function of these eicosanoids in the retina, the interaction between eicosanoids and reactive oxygen species (ROS), and the involvement of eicosanoids in DR. We also identify potential targets for the treatment of DR."	"Wnt Activation After Inhibition Restores Trabecular Meshwork Cells Toward a Normal Phenotype. Wnt is a spatiotemporally regulated signaling pathway whose inhibition is associated with glaucoma, elevated intraocular pressure (IOP), and cell stiffening. Whether such changes are permanent or may be reversed is unclear. Here, we determine if activation of Wnt pathway after inhibition reverses the pathologic phenotype. Primary human trabecular meshwork (hTM) cells from nonglaucomatous donors were cultured for 12 days in the absence or presence of Wnt modulators: (i) LGK974 (Porcn inhibitor, 10 µM); (ii) LY2090314 (pGSK3β inhibitor, 250 nM); or (iii) 9 days of LGK974 followed by 3 days of LY2090314. Wnt modulation were determined by Western blotting and extracellular matrix (ECM) related genes were evaluated by quantitative PCR. Cytoskeletal morphology was determined by immunofluorescence and cell stiffness by atomic force microscopy. Wnt activation was confirmed by downregulation of pGSK3β (0.3-fold; P &lt; 0.01), overexpression of AXIN2 (6.7-fold; P &lt; 0.001), and LEF1 (3.8-fold; P &lt; 0.001). Wnt inhibition resulted in dramatic changes in F-actin, which were resolved with subsequent Wnt activation. Concurrently, cell stiffness that was elevated with Wnt inhibition (11.86 kPa; P &lt; 0.01) decreased with subsequent Wnt activation (4.195 kPa; P &lt; 0.01) accompanied by significant overexpression of phosphorylated YAP (1.8-fold; P &lt; 0.001) and TAZ (1.4-fold; P &lt; 0.001). Additionally, Wnt activation after inhibition significantly repressed ECM genes (SPARC and CTGF, P &lt; 0.01), cross-linking genes (LOX and TGM2, P &lt; 0.05), inhibitors of matrix metalloproteinases (TIMP1 and PAI1, P &lt; 0.001), and overexpressed MMP 1/9/14 (P &lt; 0.01). These data strongly demonstrate that, in normal hTM cells, activation of the Wnt pathway reverses the pathological phenotype caused by Wnt inhibition and may thus be a viable therapeutic for lowering IOP."	"Lysyl oxidase expression is associated with inferior outcome and Extramedullary disease of acute myeloid leukemia. Lysyl oxidase (LOX) has been described as necessary for premetastatic niche formation in epithelium-derived malignancies and its expression level therefore correlates with risk of metastatic disease and overall survival. However, its role in acute myeloid leukemia (AML) has not been sufficiently analyzed. We investigated LOX plasma expression in 683 AML patients (age 17-60 years) treated within the prospective AML2003 trial (NCT00180102). The optimal cut-off LOX value was determined using a minimal-p-value method dichotomizing patients into a LOX-high group (&gt; 109 ng/mL, n = 272, 40%) and a LOX-low group (≤ 109 ng/mL, n = 411, 60%). Higher LOX expression was associated with lower peripheral white blood cells, lower serum LDH, and a lower frequency of FLT3-ITD and NPM1 mutations at diagnosis. Higher LOX expression was found significantly more frequently in patients with secondary AML and therapy-related AML, in patients with French-American-British M5 subtypes, and in patients with adverse-risk cytogenetics. Comparing patients in the LOX-high group and the LOX-low group revealed a 3-year overall survival (OS) of 47 and 53% (p = 0.022) and 3-year event-free survival (EFS) of 27 and 35% (p = 0.005), respectively. In the LOX-high group significantly more patients had extramedullary AML compared to the LOX-low group (p = 0.037). Combining extramedullary AML and LOX as interacting factors in a multivariate analysis resulted in an independent impact on survival for the LOX-high-extramedullary interaction for OS (HR = 2.25, p = 0.025) and EFS (HR = 2.48, p = 0.008). Furthermore, in patients with extramedullary disease (n = 59) the LOX level predicted survival. Patients within the LOX-low group had an OS of 43% and EFS of 36% as compared to the LOX-high group with an OS of 13% and EFS of 6% (p = 0.002 and p = 0.008, respectively). We hypothesize LOX expression to be a new potential biomarker to predict outcome in AML, specifically in AML subgroups such as the prognostic heterogeneous group of AML patients with extramedullary disease. This retrospective study was performed with patient samples registered within the prospective AML2003 trial (NCT00180102). Patients were enrolled between December 2003 and November 2009."	"Role of the lysyl oxidase family in organ development (Review). Lysyl oxidase proteins (LOXs) are amine oxidases, which are mainly located in smooth muscle cells and fibroblasts and serve an important role in the formation of the extracellular matrix (ECM) in a copper-dependent manner. Owing to the ability of LOX proteins to modulate crosslinking between collagens and to promote the deposition of other fibers, they serve crucially in organogenesis and the subsequent organ development, as well as disease initiation and progression. In addition, ECM formation significantly influences organ morphological formation in both cancer- and non-tumor-related diseases, in addition to cellular epigenetic transformation and migration, under the influence of LOXs. A number of different signaling pathways regulate the LOXs expression and their enzymatic activation. The tissue remodeling and transformation process shares some resemblance between oncogenesis and embryogenesis. Additionally the roles that LOXs serve appeared to be stressed during oncogenesis and tumor metastasis. It has also been indicated LOXs have a noteworthy role in non-tumor diseases. Nonetheless, the role of LOXs in systemic or local organ development and disease control remains unknown. In the present study, the essential roles that LOXs play in embryogenesis were unveiled partially, whereas the role of LOXs in organ or systematic development requires further investigations. The present review aimed to discuss the roles of members of the LOX family in the context of the remodeling of organogenesis and organ development. In addition, the consequences of the malfunction of these proteins related to the development of abnormalities and resulting diseases is discussed."	"Leukotriene B4 receptors as therapeutic targets for ophthalmic diseases. Leukotriene B4 (LTB4) is an inflammatory lipid mediator produced from arachidonic acid by multiple reactions catalyzed by two enzymes 5-lipoxygenase (5-LOX) and LTA4 hydrolase (LTA4H). The two receptors for LTB4 have been identified: a high-affinity receptor, BLT1, and a low-affinity receptor, BLT2. Our group identified 12(S)-hydroxy-5Z,8E,10E-heptadecatrienoic acid (12-HHT) as a high-affinity BLT2 ligand. Numerous studies have revealed critical roles for LTB4 and its receptors in various systemic diseases. Recently, we also reported the roles of LTB4, BLT1 and BLT2 in the murine ophthalmic disease models of mice including cornea wound, allergic conjunctivitis, and age-related macular degeneration. Moreover, other groups revealed the evidence of the ocular function of LTB4. In the present review, we introduce the roles of LTB4 and its receptors both in ophthalmic diseases and systemic inflammatory diseases. LTB4 and its receptors are putative novel therapeutic targets for systemic and ophthalmic diseases."	"In Vivo Wound Healing and In Vitro Anti-Inflammatory Activity Evaluation of Phlomis russeliana Extract Gel Formulations. The air-dried aerial parts of Phlomis russeliana (Sims) Lag. Ex Benth. was extracted by methanol and fractionated by n-hexane, dichloromethane, and ethyl acetate, respectively. The wound healing properties of P. russeliana extract gel was evaluated using the in vivo excisional wound model using Balb-c mice. Initially, the P. russeliana methanol extract showed LOX inhibitory activity at IC50 = 23.2 µg/mL, whereas the DPPH<sup>•</sup> assay showed IC50 = 0.89 mg/mL, and the ABTS<sup>•</sup> assay showed IC50 = 0.99 mg/mL, respectively. In addition, a remarkable anti-inflammatory activity was observed in the cell culture assay. Thereafter, activity-guided fractionation was performed by LOX enzyme inhibition assays, and the structures of the two most active fractions were revealed by both GC-FID and GC/MS analyses, simultaneously. Phytol and 1-heptadecanoic acid were characterized as the active constituents. Moreover, the P. russeliana extract gel formulation was applied for in vivo tests, where the new gel formulation supported the in vitro anti-inflammatory activity findings. As a conclusion, this experimental results support the wound healing evidence based on the ethnobotanical application of Phlomis species with further potential."	"Mechanistic Insights into the Dual Activities of the Single Active Site of L-Lysine Oxidase/Monooxygenase from Pseudomonas sp. AIU 813. L-Lysine oxidase/monooxygenase (L-LOX/MOG) from Pseudomonas sp. AIU 813 catalyzes the mixed bioconversion of L-amino acids, particularly L-lysine, yielding an amide and carbon dioxide by an oxidative decarboxylation (i.e. apparent monooxygenation), as well as oxidative deamination (hydrolysis of oxidized product), resulting in α-keto acid, hydrogen peroxide (H2O2), and ammonia. Here, using high-resolution MS and monitoring transient reaction kinetics with stopped-flow spectrophotometry, we identified the products from the reactions of L-lysine and L-ornithine, indicating that besides decarboxylating imino acids (i.e. 5-aminopentanamide from L-lysine), L-LOX/MOG also decarboxylates keto acids (5-aminopentanoic acid from L-lysine and 4-aminobutanoic acid from L-ornithine). The reaction of reduced enzyme and oxygen yielding an imino acid and H2O2, with no detectable C4a-hydroperoxyflavin. Single turnover reactions in which L-LOX/MOG was first reduced by L-lysine to form imino acid before mixing with various compounds revealed that under anaerobic conditions, only hydrolysis products are present. Similar results were obtained upon H2O2 addition after enzyme denaturation. H2O2 addition to active L-LOX/MOG resulted in formation of more 5-aminopentanoic acid, but not 5-aminopentamide, suggesting that H2O2 generated from L-LOX/MOG in situ can result in decarboxylation of the imino acid, yielding an amide product, and extra H2O2 resulted in decarboxylation only of keto acids. Molecular dynamics simulations and detection of charge transfer species suggested that interactions between the substrate and its binding site on L-LOX/MOG are important for imino acid decarboxylation. Structural analysis indicated that the flavoenzyme oxidases catalyzing decarboxylation of an imino acid all share a common plug loop configuration that may facilitate this decarboxylation."	"Common Mycorrhizal Network Induced JA/ET Genes Expression in Healthy Potato Plants Connected to Potato Plants Infected by Phytophthora infestans. Most plants are connected belowground via common mycorrhizal networks (CMNs). In their presence, the transmission of warning signals from diseased to uninfected plants has been reported. However, current studies have all been conducted in pots making it difficult to discriminate direct from indirect contribution of hyphae to the transmission of the signals. Here, we conducted an in vitro study with potato plantlets connected by a CMN of the arbuscular mycorrhizal fungus Rhizophagus irregularis. The plantlets were grown in physically separated compartments and their connection ensured only by the CMN. The donor potato plantlets were infected by Phytophthora infestans and defense genes analyzed 24, 48 and 120 h post-infection (hpi) in the uninfected receiver potato plantlets. Twenty-four hpi by the pathogen, PAL, PR-1b, ERF3, and LOX genes were significantly upregulated, whereas no significant transcript variation was noticed 48 and 120 hpi. The exact nature of the warning signals remains unknown but was not associated to microorganisms other than the AMF or to diffusion mechanisms through the growth medium or induced by volatile compounds. The defense response appeared to be transitory and associated with the jasmonic acid or ethylene pathway. These findings demonstrate the direct involvement of hyphae in the transmission of warning signals from diseased to uninfected potato plantlets and their indubitable role in providing a route for activating defense responses in uninfected plants."	"The Synergism of 1-Methylcyclopropene and Ethephon Preserves Quality of &quot;Laiyang&quot; Pears With Recovery of Aroma Formation After Long-Term Cold Storage. A &quot;Laiyang&quot; pear is a climacteric fruit with a special taste and nutritional value but is prone to a post-harvest aroma compound loss and a loss in fruit quality. In this study, pears were pretreated with 0.5 μl L<sup>-1</sup> 1-methylcyclopropene (1-MCP) at 20°C for 12 h and then stored at 0 ± 1°C for 150 days to evaluate the influence of 1-MCP on fruit quality and the changes in components of volatile aromas. In addition, pears were further treated with 2 mmol L<sup>-1</sup> ethephon. The effects of ethephon on the recovery of aroma production were investigated during the 150 day storage at 0 ± 1°C and the subsequent 7 day shelf life at 20 ± 1°C. Treatment with 1-MCP inhibited firmness loss, increased electrical conductivity, reduced respiration and ethylene production rates as well as the contents of soluble solids, and maintained the storage quality of the fruits. However, 1-MCP treatment inhibited the emission of volatile aromas in pear fruits by decreasing the activities of various enzymes, such as lipoxygenase (LOX), hydroperoxide lyase (HPL), alcohol dehydrogenase (ADH), pyruvate carboxylase (PDC), and alcohol acetyltransferase (AAT). During the shelf-life, activities of the above mentioned enzymes were significantly enhanced, and a higher content of volatile aromas were found in fruits treated with 1-MCP + ethephon, while other qualities were not compromised. These results showed that 1-MCP treatment could effectively maintain the quality of the &quot;Laiyang&quot; pear during cold storage, and the additional application of ethephon on fruits during shelf-life may be a promising way to restore volatile aromas in pear fruits after long-term storage."	"Dietary Supplementation with Omega-6 LC-PUFA-Rich Microalgae Regulates Mucosal Immune Response and Promotes Microbial Diversity in the Zebrafish Gut. The effect of dietary omega-6 long-chain polyunsaturated fatty acid (LC-PUFA) on host microbiome and gut associated immune function in fish is unexplored. The effect of dietary supplementation with the omega-6 LC-PUFA-rich microalga Lobosphaera incisa wild type (WT) and its delta-5 desaturase mutant (MUT), rich in arachidonic-acid and dihomo-gamma-linolenic acid (DGLA), respectively, on intestinal gene expression and microbial diversity was analyzed in zebrafish. For 1 month, fish were fed diets supplemented with broken biomass at 7.5% and 15% (w/w) of the two L. incisa strains and a control nonsupplemented commercial diet. Dietary supplementation resulted in elevated expression of genes related to arachidonic acid metabolism - cyclooxygenase 2 (cox-2), lipoxygenase 1(lox-1), anti-inflammatory cytokine - interleukin 10 (il-10), immune defense - lysozyme (lys), intestinal alkaline phosphatase (iap), complement (c3b), and antioxidants - catalase (cat), glutathione peroxidase (gpx). Microbiome analysis of the gut showed higher diversity indices for microbial communities in fish that were fed the supplemented diets compared to controls. Different treatment groups shared 237 operational taxonomic units (OTUs) that corresponded to the core microbiome, and unique OTUs were evident in different dietary groups. Overall, the zebrafish gut microbiome was dominated by the phylum Fusobacteria and Proteobacteria (averaging 38.4% and 34.6%, respectively), followed by Bacteroidetes (12.9%), Tenericutes, Planctomycetes, and Actinobacteria (at 3.1%-1.3%). Significant interaction between some of the immune-related genes and microbial community was demonstrated."	"Chemogenetic Suppression of GnRH Neurons during Pubertal Development Can Alter Adult GnRH Neuron Firing Rate and Reproductive Parameters in Female Mice. Gonadotropin-releasing hormone (GnRH) neurons control anterior pituitary, and thereby gonadal, function. GnRH neurons are active before outward indicators of puberty appear. Prenatal androgen (PNA) exposure mimics reproductive dysfunction of the common fertility disorder polycystic ovary syndrome (PCOS) and reduces prepubertal GnRH neuron activity. Early neuron activity can play a critical role in establishing circuitry and adult function. We tested the hypothesis that changing prepubertal GnRH neuron activity programs adult GnRH neuron activity and reproduction independent of androgen exposure in female mice. Activating (3Dq) or inhibitory (4Di) designer receptors exclusively activated by designer drugs (DREADDs) were targeted to GnRH neurons using Cre-lox technology. In control studies, the DREADD ligand clozapine n-oxide (CNO) produced the expected changes in GnRH neuron activity in vitro and luteinizing hormone (LH) release in vivo CNO was administered to control or PNA mice between two and three weeks of age, when GnRH neuron firing rate is reduced in PNA mice. In controls, reducing prepubertal GnRH neuron activity with 4Di increased adult GnRH neuron firing rate and days in diestrus but did not change puberty onset or GABA transmission to these cells. In contrast, activating GnRH neurons had no effect on reproductive parameters or firing rate and did not rescue reproductive phenotypes in PNA mice. These studies support the hypothesis that prepubertal neuronal activity sculpts elements of the adult reproductive neuroendocrine axis and cyclicity but indicate that other PNA-induced programming actions are required for full reproductive phenotypes and/or that compensatory mechanisms overcome activity-mediated changes to mitigate reproductive changes in adults."	"In Utero Electroporation of Multiaddressable Genome-Integrating Color (MAGIC) Markers to Individualize Cortical Mouse Astrocytes. Protoplasmic astrocytes (PrA) located in the mouse cerebral cortex are tightly juxtaposed, forming an apparently continuous three-dimensional matrix at adult stages. Thus far, no immunostaining strategy can single them out and segment their morphology in mature animals and over the course of corticogenesis. Cortical PrA originate from progenitors located in the dorsal pallium and can easily be targeted using in utero electroporation of integrative vectors. A protocol is presented here to label these cells with the multiaddressable genome-integrating color (MAGIC) Markers strategy, which relies on piggyBac/Tol2 transposition and Cre/lox recombination to stochastically express distinct fluorescent proteins (blue, cyan, yellow, and red) addressed to specific subcellular compartments. This multicolor fate mapping strategy enables to mark in situ nearby cortical progenitors with combinations of color markers prior to the start of gliogenesis and to track their descendants, including astrocytes, from embryonic to adult stages at the individual cell level. Semi-sparse labeling achieved by adjusting the concentration of electroporated vectors and color contrasts provided by the Multiaddressable Genome-Integrating Color Markers (MAGIC Markers or MM) enable to individualize astrocytes and single out their territory and complex morphology despite their dense anatomical arrangement. Presented here is a comprehensive experimental workflow including the details of the electroporation procedure, multichannel image stacks acquisition by confocal microscopy, and computer-assisted three-dimensional segmentation that will enable the experimenter to assess individual PrA volume and morphology. In summary, electroporation of MAGIC Markers provides a convenient method to individually label numerous astrocytes and gain access to their anatomical features at different developmental stages. This technique will be useful to analyze cortical astrocyte morphological properties in various mouse models without resorting to complex crosses with transgenic reporter lines."	"DNA Methylation-based Diagnostic and Prognostic Biomarkers for Glioblastoma. Glioblastomas are the most common primary central nervous system malignancy tumor in adults. Glioblastoma patients have poor prognosis, with an average survival period of approximately 14 mo after diagnosis. To date, there are a limited number of effective treatment methods for glioblastoma, and its molecular mechanisms remain elusive. In this article, we analyzed the key biomarkers and pathways in glioblastoma patients based on gene expression and DNA methylation datasets. The 60 hypomethylated/upregulated genes and 110 hypermethylated/downregulated genes were identified in GSE50923, GSE50161, and GSE116520 microarrays. Functional enrichment analyses indicated that these methylated-differentially expressed genes were primarily involved in collagen fibril organization, chemical synaptic transmission, extracellular matrix-receptor interaction, and GABAergic synapse. The hub genes were screened from a protein-protein interaction network; in selected genes, increased NMB mRNA level was associated with favorable overall survival, while elevated CHI3L1, POSTN, S100A4, LOX, S100A11, IGFBP2, SLC12A5, VSNL1, and RGS4 mRNA levels were associated with poor overall survival in glioblastoma patients. Additionally, CHI3L1, S100A4, LOX, and S100A11 expressions were negatively correlated with their corresponding methylation status. Furthermore, the receiver-operator characteristic curve analysis indicated that CHI3L1, S100A4, LOX, and S100A11 can also serve as highly specific and sensitive diagnostic biomarkers for glioblastoma patients. Collectively, our study revealed the possible methylated-differentially expressed genes and associated pathways in glioblastoma and identified four DNA methylation-based biomarkers of glioblastoma. These results may provide insight on diagnostic and prognostic biomarkers, and therapeutic targets in glioblastoma."	"Stat2 loss disrupts damage signalling and is protective in acute pancreatitis. The severity of sterile inflammation, as seen in acute pancreatitis, is determined by damage-sensing receptors, signalling cascades and cytokine production. Stat2 is a type I interferon signalling mediator that also has interferon-independent roles in murine lipopolysaccharide-induced NF-κB-mediated sepsis. However, its role in sterile inflammation is unknown. We hypothesised that Stat2 determines the severity of non-infective inflammation in the pancreas. Wild type (WT) and Stat2<sup>-/-</sup> mice were injected i.p. with caerulein or l-arginine. Specific cytokine-blocking antibodies were used in some experiments. Pancreata and blood were harvested 1 and 24 h after the final dose of caerulein and up to 96 h post l-arginine. Whole-tissue phosphoproteomic changes were assessed using label-free mass spectrometry. Tissue-specific Stat2 effects were studied in WT/Stat2<sup>-/-</sup> bone marrow chimera and using Cre-lox recombination to delete Stat2 in pancreatic and duodenal homeobox 1 (Pdx1)-expressing cells. Stat2<sup>-/-</sup> mice were protected from caerulein- and l-arginine-induced pancreatitis. Protection was independent of type I interferon signalling. Stat2<sup>-/-</sup> mice had lower cytokine levels, including TNF-α and IL-10, and reduced NF-κB nuclear localisation in pancreatic tissue compared with WT. Inhibition of TNF-α improved (inhibition of IL-10 worsened) caerulein-induced pancreatitis in WT but not Stat2<sup>-/-</sup> mice. Phosphoproteomics showed downregulation of MAPK mediators but accumulation of Ser412-phosphorylated Tak1. Stat2 deletion in Pdx1-expressing acinar cells (Stat2<sup>flox/Pdx1-cre</sup> ) reduced pancreatic TNF-α expression, but not histological injury or serum amylase. WT/Stat2<sup>-/-</sup> bone marrow chimera mice were protected from pancreatitis irrespective of host or recipient genotype. Stat2 loss results in disrupted signalling in pancreatitis, upstream of NF-κB in non-acinar and/or bone marrow-derived cells. © 2020 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Densely functionalized cinnolines: Controlled microwave-assisted facile one-pot multi-component synthesis and in vitro anticancer activity via apoptosis induction. There is an urging continuous need for novel anti-cancer agents due to persistent chemoresistance. Herein, newly synthesized cinnolines are evaluated for their possible anticancer activities and suggested mechanisms. In the current study, a simple and efficient synthesis of densely functionalized cinnolines has been developed that relied on multi-component reaction of ethyl 5-cyano-4-methyl-1-aryl-6-oxo-1,6-dihydropyridazine-3-carboxylates with aromatic aldehydes and nitromethane in dioxane/pipridine under controlled microwave heating. Selected cinnolines (4a-c, e, h, j-n, q-v) were tested for possible anticancer activity using in vitro one dose assay at National Cancer institute, USA. Only cinnoline 4b stood out as the most potent cinnoline derivative (mean GI%=26.33) with broad-spectrum antitumor activity against the most tested cancer cell lines from all subpanels. The target cinnoline 4b emerged as the most active derivative against both leukemia RPMI-8226 and melanoma LOX IMVI cell lines (GI% = 106.06 and 82.1) respectively, with IC50 values equal to 17.12 ± 1.31 and 12.32 ± 0.75 μg/mL, which are comparable to those of staurosporin; 24.97 ± 1.47 and 8.45 ± 0.42 μg/mL, respectively. Cinnoline 4b influenced cell cycle distribution causing pre-G1 apoptosis and cell growth arrest at G2/M phase. It also induced apoptosis in both cell lines as manifested by significant increase in the percent of annexin V-FITC positive apoptotic cells in leukemia RPMI-8226 cells (from 1.09% to 12.47%) and melanoma LOX IMVI (from 1.32% to 19.05%). In addition, it showed lower expression levels of anti-apoptotic Bcl-2 protein, and higher expression levels of pro-apoptotic proteins; Bax, p53, cytochrome c, caspases 3 and 9. CONCLUSION: Induction of mitochondrial intrinsic pathway of apoptosis is a possible mechanism by which cinnoline 4b may confer its anticancer activity."	"Increased APOE glycosylation plays a key role in the atherogenicity of L5 low-density lipoprotein. Low-density lipoprotein (LDL) is heterogeneous, composed of particles with variable atherogenicity. Electronegative L5 LDL exhibits atherogenic properties in vitro and in vivo, and its levels are elevated in patients with increased cardiovascular risk. Apolipoprotein E (APOE) content is increased in L5, but what role APOE plays in L5 function remains unclear. Here, we characterized the contributions of APOE posttranslational modification to L5's atherogenicity. Using two-dimensional electrophoresis and liquid chromatography-mass spectrometry, we studied APOE's posttranslational modification in L5 from human plasma. APOE structures with various glycan residues were predicted. Molecular docking and molecular dynamics simulation were performed to examine the functional changes of APOE resulting from glycosylation. We also examined the effects of L5 deglycosylation on endothelial cell apoptosis. The glycan sequence N-acetylgalactosamine, galactose, and sialic acid was consistently expressed on serine 94, threonine 194, and threonine 289 of APOE in L5 and was predicted to contribute to L5's negative surface charge and hydrophilicity. The electrostatic force between the negatively charged sialic acid-containing glycan residue of APOE and positively charged amino acids at the receptor-binding area suggested that glycosylation interferes with APOE's attraction to receptors, lipid-binding ability, and lipid transportation and metabolism functions. Importantly, L5 containing glycosylated APOE induced apoptosis in cultured endothelial cells through lectin-like oxidized LDL receptor-1 (LOX-1) signaling, and glycosylation removal from L5 attenuated L5-induced apoptosis. APOE glycosylation may contribute to the atherogenicity of L5 and be a useful biomarker for rapidly quantifying L5."	"Peripheral natural killer cells and myeloid-derived suppressor cells correlate with anti-PD-1 responses in non-small cell lung cancer. Inhibition of immune checkpoint proteins like programmed death 1 (PD-1) is a promising therapeutic approach for several cancers, including non-small cell lung cancer (NSCLC). Although PD-1 ligand (PD-L1) expression is used to predict anti-PD-1 therapy responses in NSCLC, its accuracy is relatively less. Therefore, we sought to identify a more accurate predictive blood biomarker for evaluating anti-PD-1 response. We evaluated the frequencies of T cells, B cells, natural killer (NK) cells, polymorphonuclear myeloid-derived suppressor cells (PMN-MDSCs), mononuclear myeloid-derived suppressor cells (M-MDSCs), and Lox-1<sup>+</sup> PMN-MDSCs in peripheral blood samples of 62 NSCLC patients before and after nivolumab treatment. Correlation of immune-cell population frequencies with treatment response, progression-free survival, and overall survival was also determined. After the first treatment, the median NK cell percentage was significantly higher in responders than in non-responders, while the median Lox-1+ PMN-MDSC percentage showed the opposite trend. NK cell frequencies significantly increased in responders but not in non-responders. NK cell frequency inversely correlated with that of Lox-1<sup>+</sup> PMN-MDSCs after the first treatment cycle. The NK cell-to-Lox-1<sup>+</sup> PMN-MDSC ratio (NMR) was significantly higher in responders than in non-responders. Patients with NMRs ≥ 5.75 after the first cycle had significantly higher objective response rates and longer progression-free and overall survival than those with NMRs &lt;5.75. NMR shows promise as an early predictor of response to further anti-PD-1 therapy."	"Bioconversion of arachidonic acid into human 14,15-hepoxilin B3 and 13,14,15-trioxilin B3 by recombinant cells expressing microbial 15-lipoxygenase without and with epoxide hydrolase. To produce high concentrations of 13-hydroxy-14,15-epoxy-eicosatrienoic acid (14,15-hepoxilin B3, 14,15-HXB3) and 13,14,15-trihydroxy-eicosatrienoic acid (13,14,15-trioxilin B3, 13,14,15-TrXB3) from arachidonic acid (ARA) using microbial 15-lipoxygenase (15-LOX) without and with epoxide hydrolase (EH), respectively. The products obtained from the bioconversion of ARA by recombinant Escherichia coli cells containing Archangium violaceum 15-LOX without and with Myxococcus xanthus EH were identified as 14,15-HXB3 and 13,14,15-TrXB3, respectively. Under the optimal conditions of 30 g cells L<sup>-1</sup>, 200 mM ARA, 25 °C, and initial pH 7.5, the cells converted 200 mM ARA into 192 mM 14,15-HXB3 and 100 mM 13,14,15-TrXB3 for 150 min, with conversion yields of 96 and 51% and productivities of 77 and 40 mM h<sup>-1</sup>, respectively. These are the highest concentrations, productivities, and yields of hepoxilin and trioxilin from ARA reported thus far."	"The protective effects of angelica organic acid against ox-LDL-induced autophagy dysfunction of HUVECs. Angelica root is the dry root of the Umbelliferae plant Angelica sinensis (oliv) Diels. Angelica organic acid (OA) is the main active ingredient in Angelica sinensis, and it exerts potential anti-atherosclerotic effects by preventing Oxidized low-density lipoprotein (Ox-LDL) induced endothelial injury. To study the protective effects of OA on ox-LDL-induced HUVECs autophagic flux dysfunction and inflammatory injury. OA were isolated by water extraction and alcohol precipitation, and then the content of ferulic acid (FA) in the OA was determined by high performance liquid chromatography. The ox-LDL-induced endothelial injury model was established. The effect of ferulic acid on the survival of Human umbilical vein endothelial cells (HVUECs) was detected by CCK-8 assay. HUVECs were pretreated with different concentrations of OA (20 μmol/L, 40 μmol/L, and 80 μmol/L), and Western Blot was used to detect the expressions of LC3II, p62, MCP-1, VCAM-1 and LOX-1. The autophagosomes in HUVECs were observed by transmission electron microscopy (TEM). 20 μmol/L OA could increase the expression of LC3II and decrease the expression of p62, MCP-1, VCAM-1 and LOX-1. The results of TEM showed that angelica organic acids promoted cell organelle degradation in autolysosomes. OA could reduce inflammation, protect endothelial cells and play an anti-atherosclerotic role by enhancing the autophagy flux of damaged endothelial cells, in which FA the major active ingredient of OA played a major role."	"Oxylipin Profiles in Plasma of Patients with Wilson's Disease. Wilson's disease (WD) is a rare autosomal recessive metabolic disorder resulting from mutations in the copper-transporting, P-type ATPase gene ATP7B gene, but influences of epigenetics, environment, age, and sex-related factors on the WD phenotype complicate diagnosis and clinical manifestations. Oxylipins, derivatives of omega-3, and omega-6 polyunsaturated fatty acids (PUFAs) are signaling mediators that are deeply involved in innate immunity responses; the regulation of inflammatory responses, including acute and chronic inflammation; and other disturbances related to any system diseases. Therefore, oxylipin profile tests are attractive for the diagnosis of WD. With UPLC-MS/MS lipidomics analysis, we detected 43 oxylipins in the plasma profiles of 39 patients with various clinical manifestations of WD compared with 16 healthy controls (HCs). Analyzing the similarity matrix of oxylipin profiles allowed us to cluster patients into three groups. Analysis of the data by VolcanoPlot and partial least square discriminant analysis (PLS-DA) showed that eight oxylipins and lipids stand for the variance between WD and HCs: eicosapentaenoic acid EPA, oleoylethanolamide OEA, octadecadienoic acids 9-HODE, 9-KODE, 12-hydroxyheptadecatrenoic acid 12-HHT, prostaglandins PGD2, PGE2, and 14,15-dihydroxyeicosatrienoic acids 14,15-DHET. The compounds indicate the involvement of oxidative stress damage, inflammatory processes, and peroxisome proliferator-activated receptor (PPAR) signaling pathways in this disease. The data reveal novel possible therapeutic targets and intervention strategies for treating WD."	"Expanding the anticancer potential of 1,2,3-triazoles via simultaneously targeting Cyclooxygenase-2, 15-lipoxygenase and tumor-associated carbonic anhydrases. Cancer is a multifactorial disorder involving multiplicity of interrelated signaling pathways and molecular targets. To that end, a multi-target design strategy was adopted to develop some 1,2,3-triazoles hybridized with some pharmacophoric anticancer fragments, as first-in-class simultaneous inhibitors of COX-2, 15-LOX and tumor associated carbonic anhydrase enzymes. Results revealed that compounds 5a, 5d, 8b and 8c were potent inhibitors of COX-2 and 15-LOX enzymes. COX-2 inhibitory activity was further demonstrated by the inhibition of the accumulation of 6-keto-PGF1α, a metabolite of COX-2 products in two cancer cell lines. The sulfonamide bearing derivatives 5d and 8c were effective nanomolar and submicromolar inhibitors of tumor associated hCA XII isoform, respectively. Strong to moderate inhibitory activities were observed in the in vitro antiproliferative assay on lung (A549), liver (HepG2) and breast (MCF7) cancer cell lines (IC50 2.37-28.5 μM) with high safety margins on WI-38 cells. A cytotoxic advantage of CA inhibition was observed as an increased activity against tumor cell lines expressing CA IX/XII. Further mechanistic clues for the anticancer activities of compound 5a and its sulfonamide analog 5d were derived from induction of cell cycle arrest at G2/M phase. They also triggered apoptosis via increasing expression levels of caspase-9 and Bax together with suppressing that of Bcl-2. The in vitro anti-tumor activity was reflected as reduced tumor size upon treatment with 8c in an in vivo cancer xenograft model. Docking experiments on the target enzymes supported their in vitro data and served as further molecular evidence. In silico calculations and ligand efficiency indices were promising. In light of these data, such series could offer new structural insights into the understanding and development of multi-target COX-2/15-LOX/hCA inhibitors for anticancer outcomes."	"Pyrazole derivatives of medically relevant phenolic acids: insight into antioxidative and anti-LOX activity. From the point of view of medicinal chemistry, compounds containing phenolic and pyrazolic moiety are significant since they are often constituents of bioactive compounds. The aims of this study were to synthesize pyrazole derivatives of medically relevant phenolic acids, confirm their structure, and evaluate their antioxidative and anti-LOX activities. Phenolic pyrazole derivatives were obtained starting from esters of medically relevant phenolic acids. The structures of all obtained compounds were determined by NMR and IR spectroscopy, and UV-Vis spectrophotometry. In addition, single-crystal Xray diffraction was used. Pyrazole derivatives were tested for their in vitro antioxidative (DPPH assay), and lipoxygenase (LOX) inhibitory activities. Radical quenching mechanism was estimated using DFT and thermodynamic approach, while molecular docking was used to estimate the binding mode within the enzyme. Pyrazole derivatives were obtained in high yields. Crystal structure of a new compound 3e was determined. Pyrazole derivative with catechol moiety 3d exhibited excellent radical scavenging activity, while compound 3b exhibited the best anti-LOX activity. Molecular docking study revealed that there is no direct interaction of any ligand with the active site of LOX-Ib, but pyrazoles 3a-e behave as inhibitors blocking the approach of linoleic acid to the active site. In this research, protocatechuic and vanillic acid pyrazole derivatives have been obtained for the first time. In vitro antioxidative assay suggests that pyrazole derivate of protocatechuic acid is a powerful radical scavenger, while anti-LOX assay indicates a pyrazole derivative with 4-hydroxyphenyl moiety."	"Lysyl oxidase suppresses the inflammatory response in anterior cruciate ligament fibroblasts and promotes tissue regeneration by targeting myotrophin via the nuclear factor-kappa B pathway. Anterior cruciate ligament (ACL) regeneration is severely affected by the injury-induced overexpression of matrix metalloproteinases (MMPs) and downregulation of lysyl oxidase (LOX). Previous studies have focused on how the expression of MMPs and downregulation of LOX are physiologically balanced at injured sites for regenerating the ACL tissue, but the role of LOX in regulating cellular functions has not been investigated yet. Herein, we conducted an in vitro cellular experiment and unexpectedly found that exogenous LOX inhibited the expression of MMPs and inflammatory factors and recovered the cell growth; thus, LOX strongly inhibited the tumor necrosis factor-alpha (TNF-α)-induced inflammatory responses. In an in vivo animal model, LOX supplementation suppressed the expression of TNF-α in injured ACLs and promoted the recovery of the damaged tissues. RNA-sequencing-identified differentially expressed genes (DEGs) were highly enriched in the nuclear factor-kappa B (NF-κB), chemokine, cytokine-cytokine receptor interaction, Toll-like receptor, and TNF signaling pathways. Immunofluorescence tracing was employed to localise the exogenous LOX in the cell nucleus; the exogenous LOX indirectly suggests that it has other biological roles apart from the cross-linking of the extracellular matrix. Protein-protein interaction network analysis revealed the anti-inflammatory effect of LOX was alleviated by silencing the myotrophin (MTPN) expression, suggesting that LOX might interact with MTPN and regulate inflammation. Finally, this study suggests that LOX can inhibit the inflammatory response of ACL fibroblasts (ACLfs) and promote the recovery of the damaged ACL tissue through the MTPN-mediated NF-κB signaling pathway."	"Postnatal loss of the insulin receptor in osteoprogenitor cells does not impart a metabolic phenotype. The relationship between osteoblast-specific insulin signaling, osteocalcin activation and gluco-metabolic homeostasis has proven to be complex and potentially inconsistent across animal-model systems and in humans. Moreover, the impact of postnatally acquired, osteoblast-specific insulin deficiency on the pancreas-to-skeleton-to-pancreas circuit has not been studied. To explore this relationship, we created a model of postnatal elimination of insulin signaling in osteoprogenitors. Osteoprogenitor-selective ablation of the insulin receptor was induced after ~10 weeks of age in IR<sup>l</sup>°<sup>x/lox</sup>/Osx-Cre<sup>+/-</sup> genotypic male and female mice (designated postnatal-OIRKO). At ~21 weeks of age, mice were then phenotypically and metabolically characterized. Postnatal-OIRKO mice demonstrated a significant reduction in circulating concentrations of undercarboxylated osteocalcin (ucOC), in both males and females compared with control littermates. However, no differences were observed between postnatal-OIRKO and control mice in: body composition (lean or fat mass); fasting serum insulin; HbA1c; glucose dynamics during glucose tolerance testing; or in pancreatic islet area or islet morphology, demonstrating that while ucOC is impacted by insulin signaling in osteoprogenitors, there appears to be little to no relationship between osteocalcin, or its derivative (ucOC), and glucose homeostasis in this model."	"African mustard (Brassica tournefortii) as source of nutrients and nutraceuticals properties. Brassica tournefortii is an annual herbaceous plant, native to the North Africa and Middle East. It is considered as an excellent medicinal plant due to its richness by antioxidant like isothiocyanates and polyphenols. The present study is the first phytochemical investigation on Brassica tournefortii organs (leaves, stems, and roots) in terms of nutraceutical, chemical composition, and bioactivity. Brassica tournefortii leaves exhibited the highest values of nutraceutical contents. Interestingly, gas chromatograph-y-mass spectrometry (GC-MS) analysis enabled to identify three new isothiocyanates: iberverin nitrile and iberin detected only in roots, and iberin nitrile detected in all organs. HPLC chromatograms displayed different profiles depending on organic solvent and extracted organ. Icariin and 5,7-dihydroxy 4-propylcoumarin showed the highest concentrations with 2.3 and 1.3 mg/g of dr among other molecules identified by high performance liquid chromatography (HPLC). Some phenolic compounds were identified in more than one organ extracts such as phenoxodiol and 4-hydroxy-3-propylbenzoic acid methyl ester. Brassica tournefortii extracts showed a moderate total phenolic contents and anti-15-LOX activity, while they exhibited a good anti-α-glucosidase activity ranging from 40% to 60%. Furthermore, leaves-MeOH and root-dichloromethane (DCM) extracts induced the highest cytotoxicity against MCF-7 cell lines, while roots-cyclohexane (CYHA) extract highlighted the highest inhibition activity against, both, HCT-116 and OVCAR cell lines."	"Extracellular Vesicles Attenuate Nitrofen-Mediated Human Pulmonary Artery Endothelial Dysfunction: Implications for Congenital Diaphragmatic Hernia. Congenital diaphragmatic hernia (CDH) leads to pathophysiologic pulmonary vasoreactivity. Previous studies show that mesenchymal stromal cell-derived extracellular vesicles (MSCEv) inhibit lung inflammation and vascular remodeling. We characterize MSCEv and human pulmonary artery endothelial cell (HPAEC) interaction, as well as the pulmonary artery (PA) response to MSCEv treatment. HPAECs were cultured with and without exposure to nitrofen (2,4-dichloro-phenyl-p-nitrophenylether) and treated with MSCEv. HPAEC viability, architecture, production of reactive oxygen species (ROS), endothelial dysfunction-associated protein levels (PPARγ, LOX-1, LOX-2, nuclear factor-κB [NF-κB], endothelial NO synthase [eNOS], ET-1 [endothelin 1]), and the nature of MSCEv-cellular interaction were assessed. Newborn rodents with and without CDH (nitrofen model and Sprague-Dawley) were treated with intravascular MSCEv or vehicle control, and their PAs were isolated. Contractility was assessed by wire myography. The contractile (KCL and ET-1) and relaxation (fasudil) responses were evaluated. HPAEC viability correlated inversely with nitrofen dose, while architectural compromise was directly proportional. There was a 2.1 × increase in ROS levels in nitrofen HPAECs (P &lt; 0.001), and MSCEv treatment attenuated ROS levels by 1.5 × versus nitrofen HPAECs (P &lt; 0.01). Nitrofen-induced alterations in endothelial dysfunction-associated proteins are shown, and exposure to MSCEv restored more physiologic expression. Nitrofen HPAEC displayed greater MSCEv uptake (80% increase, P &lt; 0.05). Adenosine, a clathrin-mediated endocytosis inhibitor, decreased uptake by 46% (P &lt; 0.05). CDH PA contraction was impaired with KCL (108.6% ± 1.4% vs. 112.0% ± 1.4%, P = 0.092) and ET-1 (121.7% ± 3.0% vs. 131.2% ± 1.8%, P &lt; 0.01). CDH PA relaxation was impaired with fasudil (32.2% ± 1.9% vs. 42.1% ± 2.2%, P &lt; 0.001). After MSCEv treatment, CDH PA contraction improved (125.9% ± 3.4% vs. 116.4 ± 3.5, P = 0.06), and relaxation was unchanged (32.5% ± 3.2% vs. 29.4% ± 3.1%, P = 0.496). HPAEC exposure to nitrofen led to changes consistent with vasculopathy in CDH, and MSCEv treatment led to a more physiologic cellular response. MSCEv were preferentially taken up by nitrofen-treated cells by clathrin-dependent endocytosis. In vivo, MSCEv exposure improved PA contractile response. These data reveal mechanisms of cellular and signaling alterations that characterize MSCEv-mediated attenuation of pulmonary vascular dysfunction in CDH-associated pulmonary hypertension."	"Human cytomegalovirus infection is correlated with atherosclerotic plaque vulnerability in carotid artery. Several studies have suggested that human cytomegalovirus (CMV) infection is closely related to the pathogenesis of atherosclerosis. The present study aimed to investigate the association between human CMV infection and carotid atherosclerotic plaque vulnerability in a Chinese population. In total, 42 patients with carotid atherosclerosis (observation group) and 30 healthy volunteers (control group) were recruited in our study from October 2016 to January 2018. Statistical analysis was carried out to calculate the infection rate of CMV in subjects. Spearman's rank analysis was performed to evaluate the correlation between CMV infection and atherosclerotic plaque vulnerability. The positive rate of CMV was significantly higher in the observation group compared to the control group, and matrix metalloproteinase 9 (MMP-9), tumor necrosis factor-α (TNF-α) and lectin-like oxidized low density lipoprotein receptor-1 (LOX-1) expression levels were also elevated in the observation group compared to those in the control group. In carotid atherosclerotic patients, the detection rate of unstable plaques and the Crouse scores in vulnerable plaque were significantly higher in the CMV-positive group compared to those in the CMV-negative group. As revealed by correlation analysis, CMV infection was significantly positively correlated with plaque vulnerability and expression levels of MMP-9, TNF-α and LOX-1 in carotid atherosclerotic patients. Human CMV infection might be a potential risk factor for increased plaque vulnerability in patients with carotid atherosclerosis."	"The Pharmaceutical Ability of Pistacia lentiscus L. Leaves Essential Oil Against Periodontal Bacteria and Candida sp. and Its Anti-Inflammatory Potential. Given the increasing request for natural pharmacological molecules, this study assessed the antimicrobial capacity of Pistacia lentiscus L. essential oil (PLL-EO) obtained from the leaves of wild plants growing in North Sardinia (Italy) toward a wide range of periodontal bacteria and Candida, including laboratory and clinical isolates sp., together with its anti-inflammatory activity and safety. PLL-EO was screened by gas chromatography/mass spectrometry. The minimal inhibitory concentration (MIC) was determined. The anti-inflammatory activity was measured by cyclooxygenase (COX-1/2) and lipoxygenase (LOX) inhibition, while the antioxidant capacity was determined electro-chemically and by the MTT assay. The WST-1 assay was used to ascertain cytotoxicity toward four lines of oral cells. According to the concentrations of terpens, PLL-EO is a pharmacologically-active phytocomplex. MICs against periodontal bacteria ranged between 3.13 and 12.5 µg/ml, while against Candida sp. they were between 6.25 and 12.5 µg/mL. Oxidation by COX-1/2 and LOX was inhibited by 80% and 20% µg/mL of the oil, respectively. Antioxidant activity seemed negligible, and no cytotoxicity arose. PLL-EO exhibits a broad-spectrum activity against periodontal bacteria and Candida, with an interesting dual inhibitory capacity toward COX-2 and LOX inflammatory enzymes, and without side effects against oral cells."	"Epithelial-interleukin-1 inhibits collagen formation by airway fibroblasts: Implications for asthma. In asthma, the airway epithelium has an impaired capacity to differentiate and plays a key role in the development of airway inflammation and remodeling through mediator release. The study objective was to investigate the release of (IL)-1 family members from primary airway epithelial-cells during differentiation, and how they affect primary airway fibroblast (PAF)-induced inflammation, extracellular matrix (ECM) production, and collagen I remodeling. The release of IL-1α/β and IL-33 during airway epithelial differentiation was assessed over 20-days using air-liquid interface cultures. The effect of IL-1 family cytokines on airway fibroblasts grown on collagen-coated well-plates and 3-dimensional collagen gels was assessed by measurement of inflammatory mediators and ECM proteins by ELISA and western blot, as well as collagen fiber formation using non-linear optical microscopy after 24-hours. The production of IL-1α is elevated in undifferentiated asthmatic-PAECs compared to controls. IL-1α/β induced fibroblast pro-inflammatory responses (CXCL8/IL-8, IL-6, TSLP, GM-CSF) and suppressed ECM-production (collagen, fibronectin, periostin) and the cell's ability to repair and remodel fibrillar collagen I via LOX, LOXL1 and LOXL2 activity, as confirmed by inhibition with β-aminopropionitrile. These data support a role for epithelial-derived-IL-1 in the dysregulated repair of the asthmatic-EMTU and provides new insights into the contribution of airway fibroblasts in inflammation and airway remodeling in asthma."	"Impact of Wortmannilactone F and G31P on Clonorchis Sinensis-infected mice. Clonorchis sinensis could induce inflammation, epithelial hyperplasia and fibrosis in the intrahepatic bile duct as a food-borne parasite, which was associated with the development of cholangiocarcinoma (CCA). Praziquantel was the most effective drug on treatment of this kind of parasite. However, new drugs with minimal toxicity to the host were urgently needed due to the side effects of Praziquantel and its CCA risk. In this study, helminth mitochondria respiratory chain blocker Wortmannilatone F (WF) and IL-8 analogue CXCL8 (3-72) K11R/G31P were used to treat BALB/C mice infected by Clonorchis sinensis. We investigated the gross and histopathological morphology of the liver, inflammation-associated cytokine IL-6, lipid peroxidation-related proteins cyclooxygenase-2 (COX-2) and 5-lipoxygenase (5-LOX), collagen fiber accumulation and fibroblast-specific protein 1 (FSP1), malignant markers proliferating cell nuclear antigen (PCNA) and cytokeratin 19 (CK19), as well as the disinfection effect on these parasites in vitro. WF inhibited and killed the worms dramatically, and the combination of WF with G31P improved the condition of the hepatobiliary duct tissue greatly. These outcomes indicated that the combination of WF and G31P was a potential therapeutic method to treat the Clonorchis sinensis infection."	"Detection of miR-155-5p and imaging lung cancer for early diagnosis: in vitro and in vivo study. Currently, the routine screening program has insufficient capacity for the early diagnosis of lung cancer. Therefore, a type of chitosan-molecular beacon (CS-MB) probe was developed to recognize the miR-155-5p and image the lung cancer cells for the early diagnosis. Based on the molecular beacon (MB) technology and nanotechnology, the CS-MB probe was synthesized self-assembly. There are four types of cells-three kinds of animal models and one type of histopathological sections of human lung cancer were utilized as models, including A549, SPC-A1, H446 lung cancer cells, tumor-initiating cells (TICs), subcutaneous and lung xenografts mice, and lox-stop-lox(LSL) K-ras G12D transgenic mice. The transgenic mice dynamically displayed the process from normal lung tissues to atypical hyperplasia, adenoma, carcinoma in situ, and adenocarcinoma. The different miR-155-5p expression levels in these cells and models were measured by quantitative real-time polymerase chain reaction (qRT-PCR). The CS-MB probe was used to recognize the miR-155-5p and image the lung cancer cells by confocal microscopy in vitro and by living imaging system in vivo. The CS-MB probe could be used to recognize the miR-155-5p and image the lung cancer cells significantly in these cells and models. The fluorescence intensity trends detected by the CS-MB probe were similar to the expression levels trends of miR-155 tested by qRT-PCR. Moreover, the fluorescence intensity showed an increasing trend with the tumor progression in the transgenic mice model, and the occurrence and development of lung cancer were dynamically monitored by the differen fluorescence intensity. In addition, the miR-155-5p in human lung cancer tissues could be detected by the miR-155-5p MB. Both in vivo and in vitro experiments demonstrated that the CS-MB probe could be utilized to recognize the miR-155-5p and image the lung cancer cells. It provided a novel experimental and theoretical basis for the early diagnosis of the disease. Also, the histopathological sections of human lung cancer research laid the foundation for subsequent preclinical studies. In addition, different MBs could be designed to detect other miRNAs for the early diagnosis of other tumors."	"Triptolide alleviates radiation-induced pulmonary fibrosis via inhibiting IKKβ stimulated LOX production. Lysyl oxidase (LOX) is involved in fibrosis by catalyzing collagen cross-linking. Previous work observed that Triptolide (TPL) alleviated radiation-induced pulmonary fibrosis (RIPF), but it is unknown whether the anti-RIPF effect of TPL is related to LOX. In a mouse model of RIPF, we found that LOX persistently increased in RIPF which was significantly lowered by TPL. Excessive LOX aggravated fibrotic lesions in RIPF, while LOX inhibition mitigated RIPF. Irradiation enhanced the transcription and synthesis of LOX by lung fibroblasts through IKKβ/NFκB activation, and siRNA knockdown IKKβ largely abolished LOX production. By interfering radiation induced IKKβ activation, TPL prevented NFκB nuclear translocation and DNA binding, and potently decreased LOX synthesis. Our results demonstrate that the anti-RIPF effect of TPL is associated with reduction of LOX production which mediated by inhibition of IKKβ/NFκB pathway."	"Silver(I) metallodrugs of thiosemicarbazones and naproxen: biocompatibility, in vitro anti-proliferative activity and in silico interaction studies with EGFR, VEGFR2 and LOX receptors. Four new heteroleptic silver(I) complexes with the general formula [Ag(L<sup>1-4</sup>)(nap)] (1-4), where L<sup>1-4</sup> = 2-(1-(4-substitutedphenyl)ethylidene)hydrazinecarbothioamide and nap = naproxen, have been synthesized and characterized. The geometric parameters determined from density functional theory and UV-Vis studies indicate distorted tetrahedral geometry around silver(I) ion. Fourier transform infrared (FT IR) spectra evidenced asymmetric bidentate coordination mode of carboxyl oxygen atoms of naproxen with silver(I) ion. The complexes are stable for 72 h and biocompatibility was analysed towards normal human dermal fibroblast cells, which showed non-toxic nature up to 100 ng/ml. In vitro anti-proliferative activity of the complexes by MTT assay was tested against three human cancerous cell lines and one non-tumorigenic human breast epithelial cell line (MCF-10a) in which the complex 4 exhibited enhanced activity. The morphological changes observed by acridine orange/ethidium bromide and Hoechst 33258 staining method reveal apoptosis-inducing ability of the complexes. The molecular docking studies suggest hydrogen bonding, hydrophobic and π-pair interactions with the active site of epidermal growth factor receptor, vascular endothelial growth factor receptor 2 and lipoxygenase receptors."	"Reciprocity Between Skeletal Muscle AMPK Deletion and Insulin Action in Diet-Induced Obese Mice. Insulin resistance due to overnutrition places a burden on energy-producing pathways in skeletal muscle (SkM). Nevertheless, energy state is not compromised. The hypothesis that the energy sensor AMPK is necessary to offset the metabolic burden of overnutrition was tested using chow-fed and high-fat (HF)-fed SkM-specific AMPKα1α2 knockout (mdKO) mice and AMPKα1α2lox/lox littermates (wild-type [WT]). Lean mdKO and WT mice were phenotypically similar. HF-fed mice were equally obese and maintained lean mass regardless of genotype. Results did not support the hypothesis that AMPK is protective during overnutrition. Paradoxically, mdKO mice were more insulin sensitive. Insulin-stimulated SkM glucose uptake was approximately twofold greater in mdKO mice in vivo. Furthermore, insulin signaling, SkM GLUT4 translocation, hexokinase activity, and glycolysis were increased. AMPK and insulin signaling intersect at mammalian target of rapamycin (mTOR), a critical node for cell proliferation and survival. Basal mTOR activation was reduced by 50% in HF-fed mdKO mice, but was normalized by insulin stimulation. Mitochondrial function was impaired in mdKO mice, but energy charge was preserved by AMP deamination. Results show a surprising reciprocity between SkM AMPK signaling and insulin action that manifests with diet-induced obesity, as insulin action is preserved to protect fundamental energetic processes in the muscle."	"Cell-fate plasticity, adhesion and cell sorting complementarily establish a sharp midbrain-hindbrain boundary. The formation and maintenance of sharp boundaries between groups of cells play a vital role during embryonic development as they serve to compartmentalize cells with similar fates. Some of these boundaries also act as organizers, with the ability to induce specific cell fates and morphogenesis in the surrounding cells. The midbrain-hindbrain boundary (MHB) is such an organizer: it acts as a lineage restriction boundary to prevent the intermingling of cells with different developmental fates. However, the mechanisms underlying the lineage restriction process remain unclear. Here, using novel fluorescent knock-in reporters, live imaging, Cre/lox-mediated lineage tracing, atomic force microscopy-based cell adhesion assays and mutant analysis, we analyze the process of lineage restriction at the MHB and provide mechanistic details. Specifically, we show that lineage restriction occurs by the end of gastrulation, and that the subsequent formation of sharp gene expression boundaries in the developing MHB occur through complementary mechanisms, i.e. cell-fate plasticity and cell sorting. Furthermore, we show that cell sorting at the MHB involves differential adhesion among midbrain and hindbrain cells that is mediated by N-cadherin and Eph-ephrin signaling."	"Anti-inflammatory and anti-nociceptive activities of Alpinia Oxyphylla Miquel extracts in animal models. Alpinia Oxyphylla Miquel is a widely used traditional herbal medicine for the treatment of abdominal pain, intestinal disorders, enuresis, and inflammatory conditions. In this study we aimed to demonstrate the anti-inflammatory and anti-nociceptive effects of Alpinia Oxyphylla Miquel extracts with 50% ethanol (AOE) in animal models. The anti-inflammatory and nociceptive effects of AOE were estimated in vivo using a carrageenan-induced rat paw edema model, an arachidonic acid-induced mice ear edema model, an acetic acid induced mice writhing test model, and an ex vivo sulfated glycosaminoglycan (GAG) inhibition assay. In vitro inhibition assays for cyclooxygenase (COX) and lipoxygenase (LOX) were performed to determine the IC50 of AOE. Compared with the control, AOE caused a significant inhibition of paw edema, ear thickness, and abdominal constriction in animals. Compared with untreated explants exposed to interleukin-l alpha (IL-1α), preoteoglycan degradation by IL-1α was inhibited (18.2%-82.0%) in explants treated with AOE (50-400 μg/ml). In vitro, IC50 values of AOE were 299.87, 199.07, and 170.29 μg/ml for COX-1, COX-2, and 5-LOX respectively. These data demonstrate the potent anti-inflammatory and analgesic effects of AOE and suggest AOE to be useful for the treatment of osteoarthritis and/or associated symptoms."	"Evaluating the potential allergenicity of dietary proteins using model strong to non-allergenic proteins in germ-free mice. Currently no validated animal model is predictive of human responses in ranking purified dietary proteins in the prevalence or potency of food allergy in humans. Since the gastrointestinal microbiota is thought to influence oral tolerance, we hypothesize that a germ-free mouse model will more accurately predict atopic human responses than conventional mice. Germ-free C3H/HeN mice were immunized with 60 μg Ara h 2, BLG, or LOX by three weekly intraperitoneal (IP) injections with alum adjuvant. One week following the final immunization an IP challenge of 500 μg of Ara h 2, BLG, or LOX was administered. Thirty minutes post-challenge clinical scores were graded and body temperatures recorded. The presence of protein-specific IgE and mast cell protease concentrations in mouse sera were determined using ELISA. Upon challenge germ-free mice sensitized with Ara h 2 and BLG exhibited significantly more severe clinical scores compared to germ-free mice immunized with LOX. Hypothermic responses in challenged mice differed between the three proteins post-challenge. Results indicate that this model can differentiate between potent and non-allergens based on temperature drop, clinical scores, and biomarkers. Additional proteins with known human exposure and allergenicity are needed to confirm the predictive accuracy."	"Clinical trials on pain lowering effect of ginger: A narrative review. Ginger has a pain-reducing effect and it can modulate pain through various mechanisms: inhibition of prostaglandins via the COX and LOX-pathways, antioxidant activity, inibition of the transcription factor nf-kB, or acting as agonist of vanilloid nociceptor. This narrative review summarizes the last 10-year of randomized controlled trials (RCTs), in which ginger was traditionally used as a pain reliever for dysmenorrhea, delayed onset muscle soreness (DOMS), osteoarthritis (AO), chronic low back pain (CLBP), and migraine. Regarding dysmenorrhea, six eligible studies suggest a promising effect of oral ginger. As concerned with DOMS, the four eligible RCTs suggested a reduction of inflammation after oral and topical ginger administration. Regarding knee AO, nine RCTs agree in stating that oral and topical use of ginger seems to be effective against pain, while other did not find significant differences. One RCT considered the use of ginger in migraine and suggested its beneficial activity. Finally, one RCT evaluated the effects of Swedish massage with aromatic ginger oil on CLBP demonstrated a reduction in pain. The use of ginger for its pain lowering effect is safe and promising, even though more studies are needed to create a consensus about the dosage of ginger useful for long-term therapy."	"Employment of 1-Methoxy-5-Ethyl Phenazinium Ethyl Sulfate as a Stable Electron Mediator in Flavin Oxidoreductases-Based Sensors. In this paper, a novel electron mediator, 1-methoxy-5-ethyl phenazinium ethyl sulfate (mPES), was introduced as a versatile mediator for disposable enzyme sensor strips, employing representative flavin oxidoreductases, lactate oxidase (LOx), glucose dehydrogenase (GDH), and fructosyl peptide oxidase (FPOx). A disposable lactate enzyme sensor with oxygen insensitive Aerococcus viridans-derived engineered LOx (AvLOx), with A96L mutant as the enzyme, was constructed. The constructed lactate sensor exhibited a high sensitivity (0.73 ± 0.12 μA/mM) and wide linear range (0-50 mM lactate), showings that mPES functions as an effective mediator for AvLOx. Employing mPES as mediator allowed this amperometric lactate sensor to be operated at a relatively low potential of +0.2 V to 0 V vs. Ag/AgCl, thus avoiding interference from uric acid and acetaminophen. The lactate sensors were adequately stable for at least 48 days of storage at 25 °C. These results indicated that mPES can be replaced with 1-methoxy-5-methyl phenazinium methyl sulfate (mPMS), which we previously reported as the best mediator for AvLOx-based lactate sensors. Furthermore, this study revealed that mPES can be used as an effective electron mediator for the enzyme sensors employing representative flavin oxidoreductases, GDH-based glucose sensors, and FPOx-based hemoglobin A1c (HbA1c) sensors."	"Molecular Insights Into Lysyl Oxidases in Cartilage Regeneration and Rejuvenation. Articular cartilage remains among the most difficult tissues to regenerate due to its poor self-repair capacity. The lysyl oxidase family (LOX; also termed as protein-lysine 6-oxidase), mainly consists of lysyl oxidase (LO) and lysyl oxidase-like 1-4 (LOXL1-LOXL4), has been traditionally defined as cuproenzymes that are essential for stabilization of extracellular matrix, particularly cross-linking of collagen and elastin. LOX is essential in the musculoskeletal system, particularly cartilage. LOXs-mediated collagen cross-links are essential for the functional integrity of articular cartilage. Appropriate modulation of the expression or activity of certain LOX members selectively may become potential promising strategy for cartilage repair. In the current review, we summarized the advances of LOX in cartilage homeostasis and functioning, as well as copper-mediated activation of LOX through hypoxia-responsive signaling axis during recent decades. Also, the molecular signaling network governing LOX expression has been summarized, indicating that appropriate modulation of hypoxia-responsive-signaling-directed LOX expression through manipulation of bioavailability of copper and oxygen is promising for further clinical implications of cartilage regeneration, which has emerged as a potential therapeutic approach for cartilage rejuvenation in tissue engineering and regenerative medicine. Therefore, targeted regulation of copper-mediated hypoxia-responsive signalling axis for selective modulation of LOX expression may become potential effective therapeutics for enhanced cartilage regeneration and rejuvenation in future clinical implications."	"LOXL1 confers antiapoptosis and promotes gliomagenesis through stabilizing BAG2. The lysyl oxidase (LOX) family is closely related to the progression of glioma. To ensure the clinical significance of LOX family in glioma, The Cancer Genome Atlas (TCGA) database was mined and the analysis indicated that higher LOXL1 expression was correlated with more malignant glioma progression. The functions of LOXL1 in promoting glioma cell survival and inhibiting apoptosis were studied by gain- and loss-of-function experiments in cells and animals. LOXL1 was found to exhibit antiapoptotic activity by interacting with multiple antiapoptosis modulators, especially BAG family molecular chaperone regulator 2 (BAG2). LOXL1-D515 interacted with BAG2-K186 through a hydrogen bond, and its lysyl oxidase activity prevented BAG2 degradation by competing with K186 ubiquitylation. Then, we discovered that LOXL1 expression was specifically upregulated through the VEGFR-Src-CEBPA axis. Clinically, the patients with higher LOXL1 levels in their blood had much more abundant BAG2 protein levels in glioma tissues. Conclusively, LOXL1 functions as an important mediator that increases the antiapoptotic capacity of tumor cells, and approaches targeting LOXL1 represent a potential strategy for treating glioma. In addition, blood LOXL1 levels can be used as a biomarker to monitor glioma progression."	"High-mobility group box1 as an amplifier of immune response and target for treatment in Aspergillus fumigatus keratitis. To determine the roles of high-mobility group box1 (HMGB1) in pro-inflammation, host immune response and its potential target for treatment in Aspergillus fumigatus (A.fumigatus) keratitis. Expression of HMGB1 was tested in C57BL/6 normal and infected corneas. Dual immunostaining tested co-expression of HMGB1 with TLR4 or LOX-1. C57BL/6 mice were pretreated with Box A or PBS and then infected. Clinical scores, polymerase chain reaction, ELISA, and MPO assay were used to assess the disease response. Flow cytometry were used to test the effect of Box A on reactive oxygen species (ROS) expression after A.fumigatus stimulation in polymorphonuclear neutrophilic leukocytes (PMN). C57BL/6 peritoneal macrophages were pretreated with Box B before A.fumigatus stimulation, and MIP-2, IL-1β, TNF-α, HMGB1 and LOX-1 were measured. Macrophages were pretreated with Box B or Box B combined with Poly(I) (an inhibitor of LOX-1) before stimulating with A.fumigatus, and MIP-2, IL-1β, TNF-α, LOX-1, p38-MAPK, p-p38-MAPK were measured. HMGB1 levels were elevated in C57BL/6 mice after infection. HMGB1 co-expressed with TLR4, and LOX-1 in infiltrated cells. Box A vs PBS treated C57BL/6 mice had lower clinical scores and down-regulated corneal HMGB1, MIP-2, IL-1β expression and neutrophil influx. Box B treatment amplified expression of MIP-2, IL-1β, TNF-α, HMGB1 and LOX-1 that induced by A.fumigatus in macrophage. Compared to the treatment of Box B only, the protein expression of IL-1β, TNF-α showed inhibition of Box B combined with Poly(I), which also reduced the A.fumigatus-evoked protein level of LOX-1 and phosphorylation level of p38-MAPK. The production of A.fumigatus-stimulated ROS was significantly declined after Box A pretreatment in PMN. Blocking HMGB1 reduces the disease response in C57BL/6 mice. HMGB1 can amplify the host immune response through p38-MAPK, and is a target for treatment of A.fumigatus keratitis."	"Identification of significant genes with prognostic influence in clear cell renal cell carcinoma via bioinformatics analysis. Clear cell renal cell carcinoma (ccRCC) is the most common malignant tumor of kidney with high mortality. The pathogenesis of ccRCC is complicated and effective prognostic predictors for clinical practice are still limited. This study aimed to identify significant genes with prognostic influence in ccRCC via bioinformatics analysis. Four gene expression profiles were acquired from the Gene Expression Omnibus (GEO) database, including 168 ccRCC tissues and 143 normal tissues. Common differentially expressed genes (DEGs) between ccRCC tissues and normal kidney tissues were screened out. Then gene ontology (GO) enrichment analysis and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were investigated. Protein-protein interaction (PPI) network of the common DEGs was diagrammed and analyzed. Kaplan-Meier analysis was conducted to identify genes with prognostic influence in ccRCC. Gene Expression Profiling Interactive Analysis (GEPIA) was finally applied to validating differential expression of genes. Ninety-nine common DEGs between ccRCC tissues and normal kidney tissues were eventually screened out (P&lt;0.05, |log FC| &gt;2). GO functional analysis showed that the down-regulated genes were enriched in excretion, negative regulation of cell proliferation, heparin binding and cellular response to BMP stimulus, etc. KEGG pathway analysis indicated that the common DEGs were particularly enriched in HIF-1 signaling pathway and aldosterone-regulated sodium reabsorption. Seven core DEGs were distinguished through PPI network analysis, of which 6 core genes ANGPTL4, CA9, CXCR4, LOX, EGF and HRG showed significantly prognostic difference in patients with ccRCC by Kaplan-Meier analysis (P&lt;0.05). And GEPIA confirmed these genes were expressed differentially between tumor and normal tissues (P&lt;0.05). High expression of HRG was correlated with good OS in ccRCC patients. Specifically, HRG was commonly down-regulated in ccRCC tissues compared with normal tissues according to GEPIA. Our study shows that high expression of HRG denotes a better prognosis in ccRCC patients. HRG is down-regulated in ccRCC tissues compared with normal kidney tissues. The selective expression pattern suggests that HRG could be a novel prognostic predictor and potential therapeutic target for ccRCC patients."	"Expressions of extracellular matrix-remodeling factors in lymph nodes from oral cancer patients. Most malignant tumors require remodeling extracellular matrices (ECMs) for invasive growth and metastasis. Cancer cells and stromal cells remodel ECM. We investigated the relationship between regional lymph node (LN) metastasis and expression of ECM-remodeling factors in oral squamous cell carcinoma (OSCC). Using primary OSCC and cervical LNs obtained surgically, we performed immunohistochemical evaluation of the ECM-remodeling factors, lysyl oxidase (LOX), MT1-MMP, S100A8, and TIMP-1 in primary tumor and marginal sinus histiocytosis (MSH) in LNs, and determined the statistical significance of the positive rates between metastatic and metastasis-free groups. Marginal sinus histiocytosis was more frequently formed in the metastatic group compared to the metastasis-free group. Lymphatic metastasis correlated with the immunopositivity rates of tumor cells expressing LOX, MT1-MMP, and TIMP-1, and of stromal cells expressing TIMP-1. The case rates of MSH containing macrophages positive for LOX and MT1-MMP in the metastasis group were significantly higher than in the metastasis-free group. ECM-remodeling-associated macrophages accumulate in marginal sinus in conjunction with lymphatic metastasis. Expression of LOX, MT1-MMP, and TIMP-1 in the parenchyma, and stromal expression of TIMP-1 in primary tumor may predict lymphatic metastasis. LOX and MT1-MMP have a possibility to participate in formation of pre-metastatic niche in LNs."	"Characterization and antiinflammatory properties of fractionated pyroligneous acid from palm kernel shell. Pyroligneous acid (PA) obtained from slow pyrolysis of palm kernel shell (PKS) has high total phenolic contents and exhibits various biological activities including antioxidant, antibacterial and antifungal. In this study, PA obtained using slow pyrolysis method and fractionated using column chromatography was characterized (chemical and antioxidative properties) and investigated for its cyclooxygenase-2 (COX-2) and 5-lipoxygenase (5-LOX) inhibition activities using the in vitro and in silico approaches. The F9 PA fraction exhibited highest total phenolic content of 181.75 ± 17.0 μg/mL. Fraction F21-25 showed ferric reducing antioxidant power (FRAP) (331.80 ± 4.60 mg TE/g) and IC50 of 18.56 ± 0.01 μg/mL towards COX-2 and 5.25 ± 0.03 μg/mL towards the 5-LOX enzymes, respectively. Molecular docking analysis suggested favourable binding energy for all chemical compounds present in fraction F21-25, notably 1-(2,4,6-trihydroxyphenyl)-2-pentanone, towards both COX-2 (- 6.9 kcal/mol) and 5-LOX (- 6.4 kcal/mol) enzymes. As a conclusion, PA from PKS has the potential to be used as an alternative antioxidant and antiinflammatory agents which is biodegradable and a more sustainable supply of raw materials."	"Baicalein exerts neuroprotective effect against ischaemic/reperfusion injury via alteration of NF-kB and LOX and AMPK/Nrf2 pathway. ischaemic stroke accounts for almost 11% of all deaths worldwide and has a high incidence of permanent disability among patients. Baicalein has many beneficial pharmacological properties, including anti-inflammatory and anti-oxidant effects. However, the neuroprotective effect of baicalein is still unclear. The current study scrutinizes the neuroprotective effect of baicalein against the ischaemic/reperfusion (I/R) injury via alteration of the nuclear factor kappa B (NF-kB) and AMP-activated protein kinase/nuclear factor erythroid 2-related factor 2 AMPK/Nrf2 signaling pathway. Wistar rats were used for the current study. In rats, I/R injury was caused by transient occlusion of the middle cerebral artery for 1 h accompanied by reperfusion for 24 h. The rats were divided into different groups and treated with the different doses of baicalein (2.5, 5 and 10 mg/kg). The effects of baicalein on the murine neurological function were determined via infarct volume, neurological defect scores, and brain water content. The -inflammatory cytokines and oxidative stress were estimated in the region of the cortical along with the expression of apoptosis markers, such as B-cell lymphoma 2, Bax, and caspase-3. Quantitative reverse transcription polymerase chain reaction was used for the estimation of the NF-kB, cyclooxygenase-2 (COX-2), prostaglandin E2 (PGE2) and lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) expression. Baicalein significantly (p &lt; 0.001) ameliorated the infarction volume, brain water content, and neurological outcome, and the malondialdehyde level, and reduced the level of interleukin-1β, interleukin-6, tumor necrosis factor-α, superoxide dismutase, glutathione, and catalase in a dose-dependent manner. Baicalein significantly (p &lt; 0.001) altered the expression of COX-2, PGE2, LOX-1 and NF-kB as compared to I/R control group rats. Baicalein significantly reduced the Nrf2 and AMPK levels, and protected the rat brain against the I/R injury, suggesting a neuroprotective effect via down-regulation of NF-kB and LOX-1 expression and the AMPK/Nrf2 pathway."	"Mechanism of Huang-lian-Jie-du decoction and its effective fraction in alleviating acute ulcerative colitis in mice: Regulating arachidonic acid metabolism and glycerophospholipid metabolism. Huang-lian-Jie-du decoction (HLJDD) is a traditional Chinese medicine prescription for clearing away heat, purging fire and detoxifying, which can be used to treat sepsis, stroke, Alzheimer's disease and gastrointestinal diseases. Our previous studies have shown that HLJDD can effectively alleviate acute ulcerative colitis (UC) in mice, and its n-butanol fraction (HLJDD-NBA) is the effective fraction. The aim of this study is to further investigate the mechanism of HLJDD and HLJDD-NBA in relieving UC in mice from a holistic perspective. The acute UC model of BABL/c mice was induced by 3.5% (w/v) dextran sodium sulfate drinking water. At the same time of modeling, HLJDD and HLJDD-NBA were given orally for treatment respectively. During the experiment, the clinical symptoms of mice were recorded and the physiological and biochemical indexes of mice were detected after the experiment. In addition, the plasma metabolites of mice in each group were detected and analyzed by ultra-high performance liquid chromatography quadrupole time of flight mass spectrometry and multivariate statistical analysis method. Then, the potential target metabolic pathway of drug intervention was screened through the enrichment analysis of differential metabolites. Finally, we use molecular simulation docking technology to further explore the molecular regulatory mechanism of HLJDD and HLJDD-NBA on potential target metabolic pathways. HLJDD and HLJDD-NBA intervention can significantly reduce the disease activity index of UC mice, inhibit colon length shortening and pathological damage, and relieve the abnormal changes of physiological and biochemical parameters of UC mice. Moreover, HLJDD and HLJDD-NBA can significantly inhibit the metabolic dysfunction of UC mice by reversing the abnormal changes of 24 metabolites in UC mice, and the arachidonic acid metabolic pathway and glycerophospholipid metabolic pathway are the target metabolic pathways regulated by them. Further literature review and molecular simulation docking analysis showed that HLJDD and HLJDD-NBA may inhibit the disorder of arachidonic acid metabolism pathway and glycerophospholipid metabolism pathway by inhibiting COX-2 protein expression and PLA2, 5-LOX activity. Our experiments revealed that HLJDD and HLJDD-NBA can alleviate UC of mice by regulating arachidonic acid metabolism and glycerophospholipid metabolism, which points out the direction for further research and development of HLJDD as a new anti-ulcer drug."	"Targeting lysyl oxidase (LOX) overcomes chemotherapy resistance in triple negative breast cancer. Chemoresistance is a major obstacle in triple negative breast cancer (TNBC), the most aggressive breast cancer subtype. Here we identify hypoxia-induced ECM re-modeler, lysyl oxidase (LOX) as a key inducer of chemoresistance by developing chemoresistant TNBC tumors in vivo and characterizing their transcriptomes by RNA-sequencing. Inhibiting LOX reduces collagen cross-linking and fibronectin assembly, increases drug penetration, and downregulates ITGA5/FN1 expression, resulting in inhibition of FAK/Src signaling, induction of apoptosis and re-sensitization to chemotherapy. Similarly, inhibiting FAK/Src results in chemosensitization. These effects are observed in 3D-cultured cell lines, tumor organoids, chemoresistant xenografts, syngeneic tumors and PDX models. Re-expressing the hypoxia-repressed miR-142-3p, which targets HIF1A, LOX and ITGA5, causes further suppression of the HIF-1α/LOX/ITGA5/FN1 axis. Notably, higher LOX, ITGA5, or FN1, or lower miR-142-3p levels are associated with shorter survival in chemotherapy-treated TNBC patients. These results provide strong pre-clinical rationale for developing and testing LOX inhibitors to overcome chemoresistance in TNBC patients."	"Interleukin-1β Promotes Ox-LDL Uptake by Human Glomerular Mesangial Cells via LOX-1. The aim of this study was to determine whether interleukin-1β (IL-1β) promotes oxidised low-density lipoprotein (Ox-LDL) uptake by human glomerular mesangial cells (HMCs) and its effect on the expression of lectin-like Ox-LDL receptor 1 (LOX-1) and to identify pathways through which IL-1β affects lipid uptake. Confocal laser scanning microscopy and flow cytometry were used to observe the effect of IL-1β on lipid uptake by HMCs and the pathway by which IL-1β may mediate lipid uptake. Real-time polymerase chain reaction (PCR) and western blotting were used to evaluate the effect of IL-1β on LOX-1 expression. Confocal laser scanning microscopy and flow cytometry revealed that IL-1β promoted uptake of fluorescent Dil-labelled Ox-LDL(Dil-Ox-LDL) by HMCs and the enhanced uptake of Dil-Ox-LDL was partially inhibited by an anti-LOX-1 antibody evaluated by flow cytometry. Further, IL-1β promoted LOX-1 mRNA and protein expression of HMCs in a dose- and time-dependent manner. Thus, Ox-LDL is ingested by HMCs under basic conditions. Inflammatory cytokine IL-1β promotes Ox-LDL uptake by HMCs. Furthermore, IL-1β promotes the mRNA and protein expression of LOX-1, a specific receptor of Ox-LDL, suggesting that the enhancement of Ox-LDL uptake may be mediated by LOX-1 pathway. Anti-LOX-1 therapy may be a promising option for treatment of glomerulosclerosis."	"Effect of amino acids on IGF1 gene expression in human myotubes and skeletal muscle. Insulin-like growth factor I (IGF1) is an important regulator of collagen and extracellular matrix protein expression. We aimed to evaluate the effect of amino acids (AAs) on expression of IGF1 and IGF1-dependent genes in human myotubes and skeletal muscle and supposed that AAs administration increases IGF1 levels in blood and expression of IGF1 and IGF1-dependent genes in trained skeletal muscle, thereby reducing training-induced muscle damage. Human myotubes were incubated with Arg and Leu for 24 h. Then, the effects of long-term branched chain AAs administration (10 weeks, 0.1 g/kg body mass/day) to volunteers (six subjects per AAs and placebo groups) performing large training volumes regularly (cross country skiers, training twice a day) were examined. Incubating the myotubes with AAs increases expression of IGF1 mRNA isoforms and IGF1 secretion by 2-3 times. In athletes, long-term AAs administration increased basal blood levels of IGF1 (~50%) and expression of IGF1Ea mRNA slightly in skeletal muscle. There is no marked increase in expression of COL1A1, COL3A1, COL5A1, and LOX genes in skeletal muscle after AAs administration. However, expression of these genes in the combined group (placebo + AAs; n = 12) significantly correlated with the expression of IGF1Ea mRNA in muscle and did not correlate with IGF1 levels in the blood. AAs administration increases IGF1 expression in vitro and in vivo. To obtain more pronounced changes in expression of IGF1 and IGF1-dependent genes in skeletal muscle, it may be necessary to increase the dose and/or duration of AAs administration."	"15-Lipoxygenase-1 biosynthesis of 7S,14S-diHDHA implicates 15-lipoxygenase-2 in biosynthesis of resolvin D5. The two oxylipins 7S,14S-dihydroxydocosahexaenoic acid (diHDHA) and 7S,17S-diHDHA [resolvin D5 (RvD5)] have been found in macrophages and infectious inflammatory exudates and are believed to function as specialized pro-resolving mediators (SPMs). Their biosynthesis is thought to proceed through sequential oxidations of DHA by lipoxygenase (LOX) enzymes, specifically, by human 5-LOX (h5-LOX) first to 7(S)-hydroxy-4Z,8E,10Z,13Z,16Z,19Z-DHA (7S-HDHA), followed by human platelet 12-LOX (h12-LOX) to form 7(S),14(S)-dihydroxy-4Z,8E,10Z,12E,16Z,19Z-DHA (7S,14S-diHDHA) or human reticulocyte 15-LOX-1 (h15-LOX-1) to form RvD5. In this work, we determined that oxidation of 7(S)-hydroperoxy-4Z,8E,10Z,13Z,16Z,19Z-DHA to 7S,14S-diHDHA is performed with similar kinetics by either h12-LOX or h15-LOX-1. The oxidation at C14 of DHA by h12-LOX was expected, but the noncanonical reaction of h15-LOX-1 to make over 80% 7S,14S-diHDHA was larger than expected. Results of computer modeling suggested that the alcohol on C7 of 7S-HDHA hydrogen bonds with the backbone carbonyl of Ile399, forcing the hydrogen abstraction from C12 to oxygenate on C14 but not C17. This result raised questions regarding the synthesis of RvD5. Strikingly, we found that h15-LOX-2 oxygenates 7S-HDHA almost exclusively at C17, forming RvD5 with faster kinetics than does h15-LOX-1. The presence of h15-LOX-2 in neutrophils and macrophages suggests that it may have a greater role in biosynthesizing SPMs than previously thought. We also determined that the reactions of h5-LOX with 14(S)-hydroperoxy-4Z,7Z,10Z,12E,16Z,19Z-DHA and 17(S)-hydroperoxy-4Z,7Z,10Z,13Z,15E,19Z-DHA are kinetically slow compared with DHA, suggesting that these reactions may be minor biosynthetic routes in vivo. Additionally, we show that 7S,14S-diHDHA and RvD5 have anti-aggregation properties with platelets at low micromolar potencies, which could directly regulate clot resolution."	"Flagellin of Bacillus amyloliquefaciens works as a resistance inducer against groundnut bud necrosis virus in chilli (Capsicum annuum L.). Groundnut bud necrosis virus (GBNV), a member of the genus Tospovirus, has an extensive host range and is associated with necrosis disease of chilli (Capsicum annuum L.), which is a major threat to commercial production. Plant growth promoting rhizobacteria (PGPR) have been investigated for their antiviral activity in several crops and for their potential use in viral disease management. However, the microbial mechanisms associated with PGPR in triggered immunity against plant viruses have rarely been studied. To understand the innate immune responses activated by Bacillus spp. against GBNV, we studied microbe-associated molecular pattern (MAMP) triggered immunity (MTI) in chilli using transient expression of the flagellin gene of Bacillus amyloliquefaciens CRN9 from Agrobacterium clones, which also induced the expression of EAS1 gene transcripts coding for epi-aristolochene synthase, which is responsible for the accumulation of capsidiol phytoalexin. In addition, the transcript levels of WRKY33 transcription factor and salicylic acid (SA)-responsive defense genes such as NPR1, PAL, PO and SAR8.2 were increased. Jasmonate (JA)-responsive genes, viz., PDF, and LOX genes, were also upregulated in chilli plants challenged with GBNV. Further analysis revealed significant induction of these genes in chilli plants treated with B. amyloliquefaciens CRN9 and benzothiadiazole (BTH). The transcript levels of defense response genes and pathogenesis-related proteins were significantly higher in plants treated with Bacillus and BTH and remained significantly higher at 72 h post-inoculation and compared to the inoculated control. The plants treated with flagellin using the agrodrench method and exogenous treatment with B. amyloliquefaciens and BTH showed resistance to GBNV upon mechanical inoculation and a reduced virus titre which was confirmed by qPCR assays. Thus, transient expression of flagellin, a MAMP molecule from B. amyloliquefaciens CRN9, is able to trigger innate immunity and restrain virus growth in chilli via induced systemic resistance (ISR) activated by both the SA and JA/ET signalling pathways."	"GoldenBac: a simple, highly efficient, and widely applicable system for construction of multi-gene expression vectors for use with the baculovirus expression vector system. Recombinant protein production and purification of large protein complexes in eukaryotes requires efficient methods to generate multi-gene expression constructs, where each individual gene is under the control of its own promoter and terminator. Current methods are based either on serial rounds of combination of several vectors containing loxP sites via the Cre-lox technology, or on multiple rounds of gene combination via PCR or other methods. These methods are multi-step, have lower efficiencies than single gene cloning, and may require laborious processes to verify that all genes of interest are present in the final product. Here, we describe a rapid and simple Golden Gate-based system for the generation of multi-gene expression constructs compatible with baculovirus expression vector systems (BEVS) using either Tn7 transposition or KO1629-based homologous recombination, which we refer to as &quot;GoldenBac&quot;. This method is based on the construction of a series of vectors containing a promoter-gene of interest-terminator cassette flanked by cleavage sites of the BsaI type IIS restriction enzyme. This series of vectors can be cut by BsaI to excise cassettes with unique overhangs. In the same reaction, the cassettes are then ligated in the correct sequence in a final destination vector to generate multi-gene expression constructs containing 2-15 genes. Individual expression constructs can therefore be combined into a single vector in a single reaction, with over 90% efficiency when combining up to 14 expression cassettes. We demonstrate successful construction and expression of three different co-expression systems, the proteosomal lid complex, the anaphase promoting complex/cyclosome (APC/C), and a series of constructs used to test the effect of chaperone co-expression on the solubility of the HOIP protein. This robust, single-step cloning system provides an easy-to-use method for generation of multi-gene expression constructs for both transposition and homologous recombination-based baculovirus systems, making this technology available across all laboratories using baculovirus expression systems. This highly efficient and simple method allows for rapid incorporation of multi-gene expression cloning into the standardized service portfolio of protein production facilities and can also easily be adopted by any laboratory for routine generation of multi-gene baculovirus constructs."	"LOX-1 (Lectin-Like Oxidized Low-Density Lipoprotein Receptor-1) Deletion Has Protective Effects on Stroke in the Genetic Background of Stroke-Prone Spontaneously Hypertensive Rat. Background and Purpose- oxLDL (oxidized low-density lipoprotein) has been known for its potential to induce endothelial dysfunction and used as a major serological marker of oxidative stress. Recently, LOX-1 (lectin-like oxidized low-density lipoprotein receptor-1), a lectin-like receptor for oxLDL, has attracted attention in studies of neuronal apoptosis and stroke. We aim to investigate the impact of LOX-1-deficiency on spontaneous hypertension-related brain damage in the present study. Methods- We generated a LOX-1 deficient strain on the genetic background of stroke-prone spontaneously hypertensive rat (SHRSP), an animal model of severe hypertension and spontaneous stroke. In this new disease model with stroke-proneness, we monitored the occurrence of brain abnormalities with and without salt loading by multiple procedures including T 2  weighted magnetic resonance imaging and also explored circulatory miRNAs as diagnostic biomarkers for cerebral ischemic injury by microarray analysis. Results- Both T 2  weighted magnetic resonance imaging abnormalities and physiological parameter changes could be detected at significantly delayed timing in LOX-1 knockout rats compared with wild-type SHRSP, in either case of normal rat chow and salt loading (P&lt;0.005 in all instances; n=11-20 for SHRSP and n=13-23 for LOX-1 knockout rats). There were no significant differences in the form of magnetic resonance imaging findings between the strains. A number of miRNAs expressed in the normal rat plasma, including rno-miR-150-5p and rno-miR-320-3p, showed significant changes after spontaneous brain damage in SHRSP, whereas the corresponding changes were modest or almost unnoticeable in LOX-1 knockout rats. There appeared to be the lessening of correlation of postischemic miRNA alterations between the injured brain tissue and plasma in LOX-1 knockout rats. Conclusions- Our data show that deficiency of LOX-1 has a protective effect on spontaneous brain damage in a newly generated LOX-1-deficient strain of SHRSP. Further, our analysis of miRNAs as biomarkers for ischemic brain damage supports a potential involvement of LOX-1 in blood brain barrier disruption after cerebral ischemia. Visual Overview- An online visual overview is available for this article."	"Synthesis, modification, and biological activity of propargylated methyl dihydroquinopimarates. The introduction of the alkynyl moiety to the abietane diterpenic core by modification of the cycle E of methyl dihydroquinopimarate is described. The arylpropargyl, aminopropargyl, and 1,2,3-triazole derivatives are synthesized via Sonogashira reaction, Mannich reaction and click-chemistry, correspondingly. The antitumor effect towards the NCI-60 cancer cell line panel and antimicrobial activity against key ESKAPE pathogens of the synthesized compounds were studied in vitro. The cytotoxicity and hemolytic activity of the abietane derivatives was tested using HEK293 human embryonic kidney cell line and the human red blood cells, correspondingly. The methyl dihydroquinopimarate propargyl analogs showed high antitumor activity against leukemia (CCRF-CEM; SR), non-small cell lung cancer (NCI-H522), melanoma (LOX IMVI; MALME-3M), ovarian cancer (IGROV1), and renal cancer (786-0; UO-31) cell lines. The Mannich's diterpene bases with pyrrolidine and diethylamine fragments exhibited fungicidal activity towards Cr. neoformans (MIC= 16 μg/ml), while possessing low toxicity. The described modifications of the abietane diterpenoids have great potential for further development of new cytotoxic and fungicidal compounds."	"Expansion of Myeloid-Derived Suppressor Cells Correlates with Renal Progression in Type 2 Diabetic Nephropathy. Type 2 diabetic nephropathy (T2DN) progresses with an increasingly inflammatory milieu, wherein various immune cells are relevant. Herein, we investigated the levels of myeloid-derived suppressor cells (MDSCs) and their clinical implication in patients with T2DN. A total of 91 subjects (T2DN, n=80; healthy, n=11) were recruited and their PBMCs were used for flow cytometric analysis of polymorphonuclear (PMN-) and monocytic (M-) MDSCs, in addition to other immune cell subsets. The risk of renal progression was evaluated according to the quartiles of MDSC levels using the Cox model. The proportion of MDSCs in T2DN patients was higher than in healthy individuals (median, 6.7% vs. 2.5%). PMN-MDSCs accounted for 96% of MDSCs, and 78% of PMN-MDSCs expressed Lox-1. The expansion of PMN-MDSCs was not related to the stage of T2DN or other kidney disease parameters such as glomerular filtration rate and proteinuria. The production of ROS in PMN-MDSCs of patients was higher than in neutrophils of patients or in immune cells of healthy individuals, and this production was augmented under hyperglycemic conditions. The 4th quartile group of PMN-MDSCs had a higher risk of renal progression than the 1st quartile group, irrespective of adjusting for multiple clinical and laboratory variables. In conclusion, PMN-MDSCs are expanded in patients with T2DN, and may represent as an immunological biomarker of renal progression."	"Electronegative LDL Induces M1 Polarization of Human Macrophages Through a LOX-1-Dependent Pathway. In response to environmental stimuli, monocytes undergo polarization into classically activated (M1) or alternatively activated (M2) states. M1 and M2 macrophages exert opposing pro- and anti-inflammatory properties, respectively. Electronegative low-density lipoprotein (LDL) (LDL(-)) is a naturally occurring mildly oxidized LDL found in the plasma of patients with hypercholesterolemia, diabetes, and acute myocardial infarction, and has been shown to involve in the pathogenesis of atherosclerosis. In this study, we examined the effects of LDL(-) on macrophage polarization and the involvement of lectin-like oxidized LDL receptor-1 (LOX-1) in this process. THP-1 macrophages were treated with native LDL (nLDL) or LDL(-), and then the expression of M1/M2-related surface markers and cytokines were evaluated. The results show that treatment with LDL(-) resulted in profound increase in proinflammatory cytokines, IL-1β, IL-6, and TNF-α, and M1-surface marker CD86; however, M2-related cytokines, IL-10 and TGF-β, and M2-surface marker CD206 were not changed by LDL(-). Untreated or nLDL-treated cells were used as control. LDL(-)-induced M1 polarization and secretion of proinflammatory cytokines were diminished in LOX-1 knockdown cells. Taken together, the results show that LDL(-) promotes differentiation of human monocytes to M1 macrophages through a LOX-1-dependent pathway, and explore the contribution of LDL(-) and LOX-1 to the development of chronic inflammation in atherosclerosis."	"Structural and mechanistic insights into 5-lipoxygenase inhibition by natural products. Leukotrienes (LT) are lipid mediators of the inflammatory response that are linked to asthma and atherosclerosis. LT biosynthesis is initiated by 5-lipoxygenase (5-LOX) with the assistance of the substrate-binding 5-LOX-activating protein at the nuclear membrane. Here, we contrast the structural and functional consequences of the binding of two natural product inhibitors of 5-LOX. The redox-type inhibitor nordihydroguaiaretic acid (NDGA) is lodged in the 5-LOX active site, now fully exposed by disordering of the helix that caps it in the apo-enzyme. In contrast, the allosteric inhibitor 3-acetyl-11-keto-beta-boswellic acid (AKBA) from frankincense wedges between the membrane-binding and catalytic domains of 5-LOX, some 30 Å from the catalytic iron. While enzyme inhibition by NDGA is robust, AKBA promotes a shift in the regiospecificity, evident in human embryonic kidney 293 cells and in primary immune cells expressing 5-LOX. Our results suggest a new approach to isoform-specific 5-LOX inhibitor development through exploitation of an allosteric site in 5-LOX."	"Aloe emodin shows high affinity to active site and low affinity to two other sites to result consummately reduced inhibition of lipoxygenase. Lipoxygenases (LOXs) are potential treatment targets in a variety of inflammatory conditions. It is assumed that blocking the arachidonic acid (AA) metabolism via COX inhibition by either traditional NSAIDs or selective cyclooxygenase-2 (COX-2) inhibitors could lead to the generation of pro-inflammatory leukotrienes and lipoxins via the LOX pathway, partly accounting for the side effects seen with traditional NSAIDs and selective COX-2 inhibitors. To counter this, several LOX, phospholipase A2 (PLA2) inhibitors have been reported nowadays from natural sources. Cassia angustifolia (Vahl.) is a medicinal herb belonging to the family Leguminosae and their LOX inhibitory profiles are reported in this study. Results indicate that ethyl acetate extract of Cassia leaves could inhibit LOX. MS and IR data revealed the presence of aloe emodin (270.2 m/z) in the isolated fraction. Enzyme kinetics showed that aloe emodin inhibit Lipoxygenase competitively with an IC50 of 29.49 μM. Interaction of aloe emodin with LOX was also studied using fluorescence quenching method. ITC results indicate that the interaction of LOX with aloe emodin is endothermic in nature with a stoichiometry of n = 3. In conclusion, anti-inflammatory property of the plant could be assigned to the presence of aloe emodin."	"Ferroptosis inhibitory constituents from the fruits of Cullen corylifolium. In current study, we studied the phytochemicals of Cullen corylifolium (fruits) in which we identify twenty compounds, including two coumarins (1 and 2), three coumestans (3-5), fourchalcone (6-9), three dihydroflavones (10-12), four isoflavones (13-16), one flavonoid (17) and three meroterpenes (18-20). Among these, compounds 4, 5 and 12 were isolated from C. corylifolium for the first time. The ferroptosis inhibitory effects of the isolated phytochemicals were assessed using erastin-exposed HT22 mouse hippocampal cells. Compounds 3 and 18 showed the most potent inhibition with the IC50 values of 5.21 μM and 5.41 μM, respectively. Moreover, molecular docking study showed that compound 3 possessed tremendous inhibitory affinity for human 5-lipoxygenase (5-LOX) and Kelch-like ECH-related protein 1: nuclear factor erythroid 2-related factor 2 (Keap1-Nrf2) protein-protein interactions, two important ferroptosis-related targets. These findings indicate that compound 3 (psoralidin) may be a potential therapeutic agent for the treatment of ferroptosis-related diseases."	"Anti-inflammatory ergosterol derivatives from the endophytic fungus Fusarium chlamydosporum. Two new ergosterol derivatives namely, chlamydosterols A [(22E,24R)-ergosta-7,22-diene-3β,5α,6β-triol 6-decanoate] (1) and B [5α,6β,25-trihydroxy-(22E,24R)-ergosta-7,22-dien-3-one] (5) and three known ergosterols: ergosta-7,22-dien-3β-ol (2), ergosta-5,7,22-triene-3β-ol (3), and ergosta-7,22-diene-3β,5α,6β-triol (4) were separated from the EtOAc extract of the endophytic fungus Fusarium chlamydosporum isolated from Anvillea garcinii (Asteraceae) leaves growing in Saudi Arabia. Their structural assignment was accomplished by various spectroscopic analyses, as well as comparing with the published data. The 5-lipoxygenase (5-LOX) inhibitory potential of the isolated metabolites was assessed. Compounds 1 and 3 displayed moderate 5-LOX inhibitory potential with IC50s 3.06 and 3.57 µM, respectively compared to indomethacin (IC50 1.13 µM)."	"Colchicine treatment impairs skeletal muscle mitochondrial function and insulin sensitivity in an age-specific manner. The aim of the study was to investigate the impact of autophagy inhibition on skeletal muscle mitochondrial function and glucose homeostasis in young and aged mice. The transcriptional co-activator PGC-1α regulates muscle oxidative phenotype which has been shown to be linked with basal autophagic capacity. Therefore, young and aged inducible muscle-specific PGC-1α knockout (iMKO) mice and littermate lox/lox controls were used in three separate experiments performed after either saline or colchicine injections on two consecutive days: (1) Euthanization in the basal state obtaining skeletal muscle for mitochondrial respirometry, (2) whole body glucose tolerance test, and (3) in vivo insulin-stimulated 2-deoxyglucose (2-DG) uptake into skeletal muscle. Muscle PGC-1α was not required for maintaining basal autophagy flux, regardless of age. Colchicine-induced inhibition of autophagy was associated with impairments of skeletal muscle mitochondrial function, including reduced ADP sensitivity and altered mitochondrial redox balance in both young and aged mice. Colchicine treatment reduced the glucose tolerance in aged, but not young mice, and similarly in iMKO and lox/lox mice. Colchicine reduced insulin-stimulated 2-DG uptake in soleus muscle in aged mice, independently of PGC-1α, and without affecting insulin-regulated phosphorylation of proximal or distal mediators of insulin signaling. In conclusion, the results indicate that autophagy regulates the mitochondrial ADP sensitivity and redox balance as well as whole body glucose tolerance and skeletal muscle insulin sensitivity in aged mice, with no additional effects of inducible PGC-1α deletion."	"Identification and development of thiazole leads as COX-2/5-LOX inhibitors through in-vitro and in-vivo biological evaluation for anti-inflammatory activity. Treatment of inflammation using NSAIDs is coupled with a risk of severe gastric adverse events. Development of dual COX-2/5-LOX inhibitors turns out to be an imperative area devoted to safer NSAIDs. A series of thiourea, thiazole, and thiazolidene derivatives were synthesized by green synthetic approach and COX-1, COX-2 and 5-LOX inhibition screening resulted in the identification of a potent compound 6l with IC50 of 5.55 µM, 0.09 µM, and 0.38 µM respectively. Compound 6l made significant decrease (60.82%) in the carrageenan-induced edema in male Wistar rats. qRT-PCR analysis and determination of PGE2 and LTB4 in the rat paw tissues indicated that this thiazole based dual inhibitor significantly reduced the expression of COX-2 and 5-LOX genes besides the marked reduction in both PGE2 and LTB4 levels. The gastric safety profiling revealed an enhanced gastrointestinal safety of the compound 6l on histopathological examination. Molecular docking studies at COX-2 and 5-LOX active sites were consistent with biological studies by significant protein-ligand interaction. Besides, results of in-vitro PGE2 and LTB4 studies on RAW 264.7 cells as well as antioxidant studies were parallel to the dual inhibitory activity. The present investigations identify a promising lead having anti-inflammatory potential with an improved gastric safety profile."	"Intracellular Role for the Matrix-Modifying Enzyme Lox in Regulating Transcription Factor Subcellular Localization and Activity in Muscle Regeneration. Integration of extracellular matrix (ECM)-derived cues into transcriptional programs is essential primarily in rapidly morphing environments, such as regenerating tissues. Here, we demonstrate that lysyl oxidase (Lox), known for its ECM-modifying activities, primarily collagen crosslinking, also directly regulates transcription factor (TF) localization. Using genetic and pharmacological strategies, we highlight an intracellular role for Lox in myogenic progenitors essential for muscle regeneration. We show that Lox interacts with, and directly oxidizes, vestigial-like 3 (Vgll3), a transcriptional co-activator acting with Mef2 and transcriptional enhancer factor (TEF) TFs. This enzymatic activity is required for Vgll3 cytoplasmic-to-nuclear translocation in regulation of myogenic differentiation. Our work highlights an additional mechanism for TF subcellular localization facilitating integration of ECM organization with transcriptional output during myogenic differentiation. Modulating this integration mechanism could affect the balance between ECM organization and cell differentiation and serve as a basis for novel therapeutic strategies targeting fibrotic pathologies."	"Evaluation of in vitro biological activities: antioxidant; anti-inflammatory; anti-cholinesterase; anti- xanthine oxidase, anti-superoxyde dismutase, anti-α-glucosidase and cytotoxic of 19 bioflavonoids. Pure compounds belonging to phenolic family were studied for their biological potential such as 5,8-dihydroxy-1,4-naphthoquinone (M1), rutin hydrate (M2), 2,3-dichloro-5,8-dihydroxy-1,4-naphthoquinone (M3), taxifolin (M4), myricetin (M5), plumbagin (M6), silibinin (M7), dihydromyricetin (M8), shikonin (M9), quercetin 3-β-D-glucoside (M10), (±)-taxifolin hydrate (M11), cardamonin (M12),(-)-epicatechin (M13), 9-chloro-10-hydroxy-anthracene-1,4-dione (M14), 9-chloro-10-hydroxy-2,3-dimethyl-anthracene-1,4-dione (M15), 2-chloro-3-(2-hydroxy-5-methylanilino)-1,4-naphthoquinone (M16), 2-chloro-3-(4-hydroxy-phenylamino)-(1,4) naphthoquinone (M17), 2-chloro-3-(3,5-di-tert-butyl-4-hydroxy-phenyl)-(1,4)-naphtoquinone (M18), and myricitrin dihydrate (M19). These molecules were chosen based on two reasons; the limited or total absence of their exploitation in several studied activities and the use of other tests for the same activity. The evaluation of the in vitro anti-acetyl-cholinesterase (AChE), anti-5-lipoxygenase (5-LOX), anti-xanthine oxidase (XOD), anti-alpha glucosidase, anti-superoxide dismutase (SOD), anti-oxidant (DPPH (1, 1-diphenyl-2-picrylhydrazyl) and ABTS (2, 2- azinobis-3-ethylbenzothiazoline-6-sulphonate)), and anticancer activities of mentioned 19 molecules was explored during this work. M3, M14, M15, M16, M17, M18, M19 were exploited for the first time for such purposes. Tested compounds were shown to have interesting radical scavenging abilities against DPPH radicals, and the highest molecules among them were M19 and M5 (IC50 = 12.0 and 15.5 µM, respectively), and M4, M19 and M2 against ABTS (IC50= 1.9, 4.3 and 4.3 µM, respectively). Moreover, the majority of products showed very important cytotoxic activity since IC50 values were ranging between (IC50= 0.2 µM (M1) and 79 µM (M8)) against HCT116 cell line, and values of IC50= 0.2 µM for M1 against MCF7 cell line. All new molecules (non studied before) were shown to have great cytotoxic effect against both cancer cell lines.Furthermore, molecule M5 was shown to have anti-inflammatory potential via the inhibition of 5-LOX enzyme (65% at 100 µM). In addition, M19 showed important anti XOD activity with 47% of inhibition at 100 µM. Also, it has been found that compound M3 had the best anti alpha glucosidase activity with 43.8 % of inhibition at 100 µM, the highest anti-AChE effect (IC50= 14.5 µM), and the best effect towards SOD (IC50= 10.0 µM). A structure-activity relationship study was also performed."	"Mechanical injury and IL-1β regulated LOXs and MMP-1, 2, 3 expression in ACL fibroblasts co-cultured with synoviocytes. Interleukin (IL)-1β in the joint cavity increases to promote healing after anterior cruciate ligament (ACL) injury. Synovial tissue is a major joint microenvironmental regulator after ACL injury. The purpose of this study was to investigate the effects of synovial cells (SCs) on lysyl oxidase (LOX) and matrix metalloproteinase (MMP) production by ACL fibroblasts (ACLfs) in the presence of IL-1β. This study sheds light on the regulation of LOX and MMP-1, -2, -3 expression by ACLfs co-cultured with SCs and treated with IL-1β. LOX and MMP-1, 2, 3 gene/protein expression in IL-1β/stretch-stimulated ACLfs co-cultured with SCs were measured by real-time quantitative PCR and Western blot. Meanwhile, MMP-2 activity was analyzed by zymogram. The results showed that co-culture with SCs increased LOX and MMP-1, -2, -3 gene and protein expression in the presence of IL-1β. Next, ACLfs were subjected to 12% mechanical stretch to simulate pathological injury. Under these conditions, SCs inhibited IL-1β-mediated upregulation of LOXs. However, IL-1β enhanced the expression of MMP-1, -2, -3 in injured ACLfs. SCs can either inhibit or increase LOX production in the presence of IL-1β, while promoting the accumulation of MMP in injured ACLfs. These results may provide crucial insights into the mechanisms underlying ACL poor healing capacity after injury."	"Combined seed and foliar pre-treatments with exogenous methyl jasmonate and salicylic acid mitigate drought-induced stress in maize. Susceptibility of plants to abiotic stresses, including extreme temperatures, salinity and drought, poses an increasing threat to crop productivity worldwide. Here the drought-induced response of maize was modulated by applications of methyl jasmonate (MeJA) and salicylic acid (SA) to seeds prior to sowing and to leaves prior to stress treatment. Pot experiments were conducted to ascertain the effects of exogenous applications of these hormones on maize growth, physiology and biochemistry under drought stress and well-watered (control) conditions. Maize plants were subjected to single as well as combined pre-treatments of MeJA and SA. Drought stress severely affected maize morphology and reduced relative water content, above and below-ground biomass, rates of photosynthesis, and protein content. The prolonged water deficit also led to increased relative membrane permeability and oxidative stress induced by the production of malondialdehyde (from lipid peroxidation), lipoxygenase activity (LOX) and the production of H2O2. The single applications of MeJA and SA were not found to be effective in maize for drought tolerance while the combined pre-treatments with exogenous MeJA+SA mitigated the adverse effects of drought-induced oxidative stress, as reflected in lower levels of lipid peroxidation, LOX activity and H2O2. The same pre-treatment also maintained adequate water status of the plants under drought stress by increasing osmolytes including proline, total carbohydrate content and total soluble sugars. Furthermore, exogenous applications of MeJA+SA approximately doubled the activities of the antioxidant enzymes catalase, peroxidase and superoxide dismutase. Pre-treatment with MeJA alone gave the highest increase in drought-induced production of endogenous abscisic acid (ABA). Pre-treatment with MeJA+SA partially prevented drought-induced oxidative stress by modulating levels of osmolytes and endogenous ABA, as well as the activities of antioxidant enzymes. Taken together, the results show that seed and foliar pre-treatments with exogenous MeJA and/or SA can have positive effects on the responses of maize seedlings to drought."	"Comprehensive analysis of transcriptome data for identifying biomarkers and therapeutic targets in head and neck squamous cell carcinoma. Head and neck squamous cell carcinoma (HNSCC) is one of the most common malignancy worldwide. Accumulating evidences have highlighted the importance of transcriptome data during HNSCC tumorigenesis. The aim of this study was to identify significant genes as effective biomarkers for HNSCC and constructed miRNA-mRNA regulatory network for a more comprehensive understanding of the underlying molecular mechanisms. A total of four independent microarrays conducted on HNSCC samples were downloaded from the Gene Expression Omnibus (GEO) and analyzed through R software. FunRich was applied to predict potential transcription factors and targeted genes of miRNAs. Protein-protein interaction (PPI) network and miRNA-mRNA regulatory network were constructed in Cytoscape. Additionally, the database for annotation, visualization, and integrated discovery (DAVID) was utilized to perform GO and KEGG pathway enrichment analyses. Validation of gene expression levels was conducted by online databases and qPCR experiments. A total of 35 and 193 differentially expressed miRNAs (DEMs) and mRNAs (DEGs) were screened out by the limma package in R. The interactive network of the overlapping DEGs presented three significant modules and ten hub genes (FN1, MMP3, SPP1, STAT1, LOX, CXCL5, CXCL11, ISG15, IFIT3, and RSAD2). Predicted target genes of DEMs were visualized in Cytoscape and six miRNA-mRNA regulatory pairs were identified. Further validation demonstrated the upregulation of SLC16A1 and COL4A1 in HNSCC. We performed an integrated and comprehensive bioinformatics analysis of miRNAs and mRNAs in HNSCC, contributing to explore the underlying regulatory mechanisms and to identify genetic biomarkers and therapeutic targets for HNSCC."	"Seed biopriming with antagonistic microbes and ascorbic acid induce resistance in tomato against Fusarium wilt. Seed biopriming is an emerging technique to enhance seed germination under stress conditions. An integrated approach of tomato seed biopriming with ascorbic acid, Trichoderma asperellum BHU P-1 and Ochrobactrum sp. BHU PB-1 was applied to observe the response against wilt pathogen of tomato Fusarium oxysporum f. sp. lycopersici (FOL). Tomato seeds bioprimed with the aforementioned application expressed augmented seed germination and activated of defense response. Seed germination was recorded higher (80 %) at low concentration (1 pM) of ascorbic acid as compared to high concentration of 1 mM (41 %). Combination of both ascorbic acid and antagonistic microbe treatments (T5 &amp; T6) significantly reduced disease incidence (up to 28 %) in tomato plants at 10 days. T5 and T6 treated plants exhibited higher accumulation of total phenol content and increased activity of Phenylammonia lyase (PAL), Peroxidase (PO), Chitinase (Chi) and Polyphenol oxidase (PPO) as compared to control (T1) plants. ROS formation in the form of H2O2 was also found to be reduced in combined treatment. Histochemical analysis revealed that phenylpropanoid pathway (lignin deposition) was more activated in combined priming treatment plants as compared to individual treatment upon challenge inoculation with FOL. Transcript expression analysis of defense genes confirmed the up-regulation of PAL (2.1 fold), Chi (0.92 fold), Pathogenesis related proteins (PR) (1.58 fold) and Lipoxygenase (Lox) (0.72 fold) in T6 treatment as compared to T1 treatment plants at 96 h. This study reveals that ascorbic acid treatment with antagonistic microbes through seed priming effectively induced seed germination and elicited defense mechanism to control wilt disease in tomato plants."	"AP-2β is required for formation of the murine trabecular meshwork and Schlemm's canal. Previously, we have shown that Tfap2b, the gene encoding transcription factor AP-2β, is needed for normal mouse eye development. Specifically, targeted loss of Tfap2b in neural crest cells (NCCs)<sup>1</sup> and their derivatives, particularly the periocular mesenchyme (POM), resulted in anterior segment defects affecting the cornea and angle tissue. These defects were further associated with an increase in intraocular pressure (IOP). The present study investigates the underlying changes in embryonic and postnatal POM cell development and differentiation caused by loss of AP-2β in the NCCs, particularly in the structures that control aqueous outflow, using Wnt1Cre<sup>+/-</sup>; Tfap2b<sup>-/lox</sup>; tdTomato<sup>lox/+</sup> mice (AP-2β neural crest cell knockout or AP-2β NCC KO). Toluidine blue-stained sections and ultrathin sections stained with uranyl acetate and lead citrate were used to assess morphology and ultrastructure, respectively. Immunohistochemistry of KO and control eyes was performed at embryonic day (E) 15.5, E18.5, postnatal day (P) 1, P7 and P14 using phospho-histone H3 (PH3), α-smooth muscle actin (α-SMA), myocilin and endomucin antibodies, as well as a TUNEL assay. Conditional deletion of AP-2β in the NCC-derived POM resulted in defects that appeared during both embryogenesis and postnatal stages. Fate mapping of the knockout cells in the mutants revealed that the POM migrated appropriately into the eye during embryogenesis. However, during postnatal stages a significant reduction in POM proliferation in the angle region was observed in the mutants compared to controls. This was accompanied by a lack of expression of appropriate trabecular meshwork and Schlemm's canal markers. This is the first study to show that AP-2β is required for development and differentiation of the trabecular meshwork and Schlemm's canal. Together, these defects likely contributed to the elevated intraocular pressure (IOP) previously reported in the AP-2β NCC KO mice."	"UHPLC-MS phytochemical profiling, biological propensities and in-silico studies of Alhagi maurorum roots: a medicinal herb with multifunctional properties. The biological, chemical, and in silico properties of methanol and dichloromethane (DCM) extracts of Alhagi maurorum roots with respect to the antioxidant, enzyme inhibition, and phytochemical composition were evaluated. Total bioactive contents were determined spectrophotometrically, and the individual secondary metabolites composition was assessed via ultra-high-performance liquid chromatography mass spectrometry (UHPLC-MS) analysis. Antioxidant capacities were evaluated using a panoply of assays (2,2-diphenyl-1-picrylhydrazyl (DPPH), 2,2'-azino-bis (3-ethylbenzothiazoline-6-sulfonic acid) (ABTS) free radical scavenging, ferric reducing antioxidant power (FRAP), cupric reducing antioxidant power (CUPRAC), phosphomolybdenum total antioxidant capacity (TAC), and metal chelating activity (MCA)). The enzyme inhibition potential was studied against acetylcholinesterase (AChE), butyrylcholinesterase (BChE), α-amylase, α-glucosidase, tyrosinase, urease and lipoxygenase (LOX) enzymes. The methanol extract was found to contain higher total phenolic (105.91 mg GAE/g extract) and flavonoid (2.27 mg RE/g extract) contents which can be correlated to its more substantial antioxidant potential as well as AChE, BChE, tyrosinase and α-glucosidase inhibition. However, the DCM extract was the most effective against α-amylase (1.86 mmol ACAE/g extract) enzyme inhibition. The UHPLC-MS analysis of methanol extract identified the tentative presence of a total of 18 secondary metabolites, including flavonoids, saponins, phenolic and terpenoid derivatives. Three compounds named emmotin A, luteolin 5,3'-dimethyl ether, and preferrugone were further investigated for their in silico molecular docking studies against the tested enzymes. The selected compounds were found to have higher binding interaction with AChE followed by BChE, α-glucosidase, α-amylase, and tyrosinase. The results of the present study have demonstrated A. mauroram to be considered as a lead source of natural antioxidant and enzyme inhibitor compounds."	"Anti-osteoarthritic Effects of an Herbal Composition LI73014F2 on Interleukin-1β-induced Primary Human Articular Chondrocytes. Osteoarthritis (OA) is one of the most well-characterized joint diseases and is associated with chondrocyte inflammation, metalloproteinase upregulation and apoptosis. LI73014F2 is a novel composition prepared from aqueous extract of Terminalia chebula fruit, alcohol extract of Curcuma longa rhizome, and Boswellia serrata extract at 2:1:2 ratio. Earlier studies have shown that LI73014F2 inhibits cyclooxygenase-2 (COX-2), 5-lipoxygenase (5-LOX) activities, and attenuates clinical symptoms in OA subjects. In the present study, we evaluated the protective anti-inflammatory and anti-apoptotic effects, as well as the underlying mechanisms, of LI73014F2 in interleukin (IL)-1β-induced inflammation in human primary chondrocytes. Human chondrocytes were treated with LI73014F2 (0, 12.5, 25 and 50 μg/mL) in IL-1β (10 ng/mL)-containing chondrocyte growth medium for 24 h. Cell viability was assessed using an MTT assay. The pro-inflammatory mediator, inflammatory cytokines, MMPs, apoptosis-related proteins, mitogen-activated protein kinase (MAPK) and nuclear factor-κB (NF-κB) signaling pathways protein expression levels were detected by western blot analysis. The results demonstrated that LI73014F2 normalized the expressions of COX-2, mPGES-1, PGE2, 5-LOX, LTB4, IL-1β, TNFα, IL-6, MMP-2, MMP-3, MMP-9, MMP-13, Bax/Bcl-2, cleaved caspase-9 and -3, cleaved PARP, phospho-NF-κB p65 and phospho-p38 MAPK proteins in IL-1β-induced primary human chondrocytes. Moreover, the data suggested that LI73014F2 reduced IL-1β-induced inflammation and apoptosis, at least partially via the inhibition of the NF-κB/MAPK signaling pathway. In conclusion, the present findings provide the molecular basis of the anti-OA efficacy of LI73014F2."	"Gel Properties of Soy Protein Isolate Modified by Lipoxygenase-Catalyzed Linoleic Acid Oxidation and Their Influence on Pepsin Diffusion and In Vitro Gastric Digestion. The model of lipoxygenase-catalyzed linoleic acid (LA) oxidation was selected as representative of a lipid peroxidation system to investigate the effects of oxidative modification on soybean protein isolate (SPI) gel properties and in vitro gastric digestion. Fluorescence recovery after the photobleaching (FRAP) technique was applied to evaluate pepsin diffusion in the gel. The results showed that oxidative modification increased the gel hardness as well as brought about a compact and three-dimensional network structure, which consequently decreased the water mobility as manifest by lowering the relaxation time of T2b and T21 from 0.55 and 3.22 ms for the control to 0.32 and 2.42 ms for 7LA+LOX (addition of 7 mL of LA and LOX), respectively. It was interesting to note that pepsin diffusion was significant correlated (p &lt; 0.05) with T2b and DH (degree of hydrolysis), indicating that water mobility might be a factor related to FITC-pepsin diffusion, which would ultimately influence the gel gastric digestion. Compared with native SPI, moderate oxidation can improve the digestibility of SPI gel by the summed effects of pepsin diffusion limitation, microstructure variation, and hydrolysis degree."	"Increased Tissue Expression of Lectin-Like Oxidized LDL Receptor-1 (LOX-1) Is Associated with Disease Severity in Chronic Rhinosinusitis with Nasal Polyps. The oxidative stress, induced by both environmental and intrinsic stimuli, underlies the onset and persistency of chronic rhinosinusitis (CRS). Scavenger receptors (SRs) are a broad family of transmembrane receptors involved in a dysfunctional host-environment interaction through a reaction with reactive oxygen species (ROS) production. We hypothesized possible roles of two major SRs in CRS pathology that can translate to clinical phenotypes or histological subtypes: lectin-like oxidized low-density lipoproteins (LDL) receptor-1 (LOX-1) and scavenger receptor class B type 1 (SR-B1). We collected ethmoid sinus mucosa specimens and blood samples from patients with CRS with nasal polyps (CRSwNP; n = 31) or CRS without NP (CRSsNP; n = 13) and 19 control subjects. We performed an RT-PCR analysis, ELISA assay, and immunostaining to determine the expressions and distributions of LOX-1 and SR-B1. The CRSwNP group showed a significant increase in LOX-1 mRNA expression compared to the control group. There was no significant difference in SR-B1 mRNA levels among the three groups. The LOX-1 mRNA levels were positively correlated with the sinus computed tomography (CT) scores. Sinus tissue, but not serum samples, showed elevated concentrations of LOX-1 protein in the CRSwNP group versus the control group. The LOX-1 protein distribution was localized in inflammatory cells and vascular endothelial cells. LOX-1 is a major receptor for oxidized low-density lipoprotein produced by oxidative stress. This is the first study to report alterations in LOX-1 expression and production triggered by persistent inflammatory processes in CRSwNP patients. Our findings reveal complex but important roles for SRs that may contribute to the onset of different CRS phenotypes."	"High Glucose Increases Binding of Lysyl Oxidase to Extracellular Matrix Proteins: Implications for Diabetic Retinopathy. To determine whether high glucose (HG) compromises internalization of lysyl oxidase (LOX) through excess binding of LOX with extracellular matrix (ECM) proteins. To determine whether HG promotes binding of LOX with ECM proteins, fibronectin (FN) and collagen IV (Coll IV), total or ECM-only proteins from rat retinal endothelial cells grown in normal (N; 5 mM) or HG (30 mM) medium were analyzed by coimmunoprecipitation and Western blot (WB). In parallel, coimmunostaining was performed to determine changes in LOX binding to FN or Coll IV. To determine the effect of HG on extracellular LOX levels, medium in which cells were grown for 1, 3, 5, and 7 days were assessed for LOX levels. WB analysis using total protein showed LOX overexpression and elevated levels of LOX bound to Coll IV or FN in HG condition. Similarly, a significant increase in LOX bound to FN or Coll IV was observed in ECM-only protein. These data were supported by Z-stack confocal microscopy images from coimmunostaining. Furthermore, immunostaining performed on ECM layer revealed increased presence of LOX bound to Coll IV or FN. Additionally, when media from cells grown in HG was monitored, a maximal increase in LOX level was observed by day 3, which declined by day 7. Findings indicate that HG promotes binding of LOX to FN and Coll IV extracellularly that results in reduced LOX internalization, attenuation of negative feedback, and upregulation of LOX expression associated with diabetic retinopathy."	"Modulation of arachidonic acid-evoked cardiorespiratory effects by the central lipoxygenase pathway. We previously reported that intracerebroventricularly (ICV) injected arachidonic acid (AA) could produce pressor and bradycardic responses on the cardiovascular system and hyperventilation effect on the respiratory system by activating cyclooxygenase (COX). We also demonstrated that centrally injected AA-induced cardiovascular and respiratory responses were mediated by COX-metabolites, such as thromboxane A2 (TXA2), prostaglandin (PG) D, PGE, and PGF2α. Brain tissue is also able to express the lipoxygenase (LOX) enzyme and LOX-induced AA-metabolites. The current study was designed to investigate the possible mediation of the central LOX pathway in AA-induced cardiorespiratory effects in anesthetized rats. Central pretreatment with different doses of a non-selective LOX inhibitor, nordihydroguaiaretic acid (NDGA) (500 and 1000 μg; ICV) partially blocked the AA (0.5 μmol; ICV)-evoked pressor and bradycardic cardiovascular responses in male anesthetized Sprague Dawley rats. Pretreatment with different doses of NDGA (500 and 1000 μg; ICV) also reduced AA-induced hyperventilation responses, with an increase in tidal volume, respiratory rate and minute ventilation, in the rats. Moreover, AA-induced increasing pO2 and decreasing pCO2 responses were diminished by central NDGA pretreatment. In summary, our findings show that the central LOX pathway might mediate, at least in part, centrally administered AA-evoked cardiorespiratory and blood gases responses."	"Serum Levels of Carbamylated LDL, Nitrotyrosine and Soluble Lectin-like Oxidized Low-density Lipoprotein Receptor-1 in Poorly Controlled Type 2 Diabetes Mellitus. Carbamylated low-density lipoprotein (cLDL) has profound proatherogenic properties. Lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) has been identified as the primary cLDL receptor. The soluble form of LOX-1 (sLOX-1) and 3-nitrotyrosine (NT) have recently been suggested as biomarkers of vascular disease. Although type 2 diabetes mellitus (T2DM) is characterised by an increased atherosclerotic risk, the clinical data on cLDL, NT and sLOX-1 levels in T2DM are limited. To explore the possible role of cLDL, NT and sLOX-1 as potential biomarkers for disease progression and complications in poorly controlled T2DM patients with and without microalbuminuria. The serum concentrations of cLDL, NT and sLOX-1 were measured by ELISA in a cross-sectional study of 60 T2DM patients and 35 nondiabetic controls. Both the normoalbuminuric (n = 34) and the microalbuminuric (n = 26) patients had significantly higher serum levels of cLDL and NT than the healthy controls, but sLOX-1 was only elevated in the microalbuminuric subgroup (p &lt; 0.05). Carbamylated LDL correlated positively with NT in the diabetic subjects (rs = 0.266, p = 0.04) while it correlated with urea only in the control group (rs = 0.475, p = 0.004). The serum concentration of sLOX-1 correlated significantly with fasting glucose (rs = 0.441, p &lt; 0.001), HbA1c (rs = 0.328, p = 0.01) and microalbuminuria (rs = 0.272, p = 0.035) in the whole diabetic cohort. The present study highlights the potential of cLDL, NT and sLOX-1 as possible markers of diabetic complications."	"Enhanced tenogenic differentiation and tendon-like tissue formation by Scleraxis overexpression in human amniotic mesenchymal stem cells. Tendon and ligament injuries are not uncommon in clinics and have poor self-healing capacity due to their bloodless and slow-proliferative nature. Promoting the repair or reconstruction of an injured structure is an urgent problem. While Scleraxis (Scx) is a highly specific tendon cell marker, its function has not been explored to a large extent. Hence, Recombinant adenovirus was used to study the influence of Scx overexpression on directional differentiation of human amniotic mesenchymal stem cells (hMSCAs). hAMSCs modified with Scx could dramatically enhance the gene expression of tendon-related molecules, containing Scx, collagens I and III, Tenascin-C, fibronectin, matrix metalloproteinase-2 (MMP-2), lysyl oxidase-1 (LOX-1) and Tenomodulin at all-time points (P &lt; 0.05), and the secretion of collagen I and III, fibronectin and Tenascin-C over time (P &lt; 0.05) but did not impact the cell proliferation capacity (P &gt; 0.05). Immunofluorescence staining showed the cobweb-like fusion of collagen I and fibronectin in the AdScx group on day 7, with higher average fluorescence intensity than the control (P &lt; 0.05). After mixing with Matrigel, transplants were subcutaneously implanted in nude mice, obvious inflammation and rejection of immune response were not observed and HE staining showed a histological feature of swirl of fibers is closely linked in parallel in hAMSCs modified with Scx. On the contrary, in the control group, an unorganized connective structure with cell distributed randomly was spotted. The results of promoted directional differentiation of stem cells and the spatial structure of the normal tendon tissue in three-dimensional space manifested that Scx can be used as a specific marker for tendon cells, and as a positive regulator for directional differentiation of hAMSCs, which is possible to be applied to novel therapeutics for clinical tendon and ligament injury by hAMSCs modified with Scx."	"Limitations of cell-lineage-specific non-dynamic gene recombination in CD11c.Cre<sup>+</sup>ITGA4<sup>fl/fl</sup> mice. The Cre-lox system is a non-dynamic method of gene modification and characterization. Promoters thought to be relatively cell-specific are utilized for generation of cell-lineage-specific gene modifications. CD11c.Cre<sup>+</sup>ITGA4<sup>fl/fl</sup> mice were generated to abolish the expression of ITGA (α4-integrin) in CD11c<sup>+</sup> cells. Ex vivo flow cytometry studies were used to assess the expression of cellular surface markers in different lymphoid compartments and leukocytes subsets after Cre-mediated recombination. A significant reduction of α4-integrin expression among CD11c<sup>+-</sup> cells was achieved in CD11c.Cre<sup>+</sup>ITGA4<sup>fl/fl</sup> mice in primary and secondary lymphoid tissues. A similar reduction in the expression of α4-integrin was also observed in CD11c<sup>-</sup> cells. Cre-lox-mediated cell lineage-specific gene deletion is limited by the transient expression of recombination regulating sequences in hematopoietic cell lines. These methodological issues indicate the need to consider when to employ non-dynamic DNA recombination models in animal models of CNS autoimmunity. An experimental algorithm to address the biological complexities of non-dynamic gene recombination is provided."	"Intracerebroventricularly injected nesfatin-1 activates central cyclooxygenase and lipoxygenase pathways. Nesfatin-1 is a multifunctional neuropeptide having crucial autonomic roles. It is well known that nesfatin-1 collaborates with other central neuromodulatory systems, such as central corticotropin-releasing hormone, melanocortin, oxytocin, and cholinergic systems to show its autonomic effects. Central arachidonic acid cascade plays an important role to provide the homeostasis by exhibiting similar autonomic effects to nesfatin-1. Based on these similarities, the current study was designed to show the effects of intracerebroventricularly (ICV) injected nesfatin-1 on the hypothalamic arachidonic acid (AA) cascade. Immunochemistry and western blot approaches demonstrated that ICV administration of nesfatin-1 provokes an increase in the hypothalamic cyclooxygenase (COX) -1, -2 and lipoxygenase (LOX) protein expression. Moreover, the microdialysis study demonstrated that centrally injected nesfatin-1 increased the posterior hypothalamic extracellular AA products. In conclusion, these findings report that while nesfatin-1 is generating its autonomic effects, it also might be using central prostaglandins and leukotrienes by activating central COX and LOX pathways."	"12-Lipoxygenase as a key pharmacological target in the pathogenesis of diabetic nephropathy. The characteristic features of diabetic nephropathy include thickening of the glomerular basement membranes, expansion of mesangium, and appearance of albumin in the urine (microalbuminuria and macroalbuminuria). Experimental studies have documented that 12-lipoxygenase (12-LOX) and its metabolite 12(S)-hydroxyeicosatetraenoic acid (HETE) play an important role in the pathogenesis of diabetic nephropathy. 12(S)-HETE may work in association with angiotensin II and transforming growth factor- β (TGF-β) reciprocally to induce fibrotic changes in the diabetic kidneys. The fibrotic actions of angiotensin II on the kidneys are mediated indirectly through an increase in the synthesis of 12(S)-HETE. Conversely, 12(S)-HETE may also enhance the actions of angiotensin II by upregulating the expression of AT1 receptors on the glomerulus, mesangium, and podocytes. 12(S)-HETE may also cross-talk with TGF-β in a reciprocal manner to induce the fibrotic changes in the diabetic kidney. 12(S)-HETE-triggered signaling pathways may involve activation of p38 mitogen-activated protein (p38MAP) kinase, increase in cAMP-responsive element-binding protein (CREB) transcriptional activity, epigenetic changes involving histone methylation through an increase in histone methyltransferase activity along with an upregulation of cyclin-kinase inhibitors including, p16, p21, and p27. The present review discusses the role of 12-LOX in the pathogenesis of diabetic nephropathy along with the possible mechanisms."	"Study on the relationship between hyperthyroidism and vascular endothelial cell damage. The aim of the research is to explore the relationship between hyperthyroidism, iodine, antithyroid drugs (propylthiouracil) and vascular endothelial injury. In total, 136 SD rats were randomly allocated into the control group, the hyperthyroidism group, the hyperthyroidism propylthiouracil group, the hyperthyroidism low iodine group, the high iodine group, and the endothelial injury group. Rats were raised for 60 days. Afterward, indicators concerning endothelial damage were determined, including the von Willebrand Factor (vWF), thrombomodulin (TM), nitric oxide (NO), endothelin 1 (ET-1), and P-selectin, as well as the plant hemagglutinin sample type oxidized low-density lipoprotein receptor 1 (LOX-1) from the aorta and the number of endothelial progenitor cells (EPCs) in whole blood. The hyperthyroidism group had significantly higher values for vWF, TM, NO, ET-1, and P-selectin in serum and a higher number of EPCs in whole blood compared with the control group, similar to the LOX-1 expression in abdominal aorta. The hyperthyroidism low iodine group had significantly higher values for vWF, ET-1, and P-selectin in serum and a higher number of EPCs in whole blood compared with those of the control group, as was the case for LOX-1 expression in the abdominal aorta. The hyperthyroidism propylthiouracil group had significantly higher values for FT4 in the serum compared with those in the control group. The electron microscope showed that hyperthyroidism caused a certain degree of endothelial injury to the abdominal aorta in rats. Hyperthyroidism can damage the vascular endothelium and is a high-risk factor for cardio-cerebrovascular disease. Propylthiouracil could be used in the treatment of hyperthyroidism, thus protecting endothelial cells from damage."	"Conjugated linoleic acid attenuates 2,4-dinitrofluorobenzene-induced atopic dermatitis in mice through dual inhibition of COX-2/5-LOX and TLR4/NF-κB signaling. Conjugated linoleic acid (CLA), commonly found in beef, lamb and dairy products, has been reported to exhibit anti-inflammatory and antipruritus effects and to inhibit the release of chemical mediators such as histamine and eicosanoid in laboratory rodents. The chief objective of the study is to assess the efficacy of CLA on atopic dermatitis (AD) in mice and to explore possible mechanisms with CLA treatments. To develop a new therapy for AD, the anti-AD potential of CLA was investigated by inducing AD-like skin lesions in mice using 2,4-dinitrofluorobenzene. We evaluated dermatitis severity; histopathological changes; serum levels of T helper (Th) cytokines (interferon-γ, interleukin-4); changes in protein expression by western blotting and immunohistochemistry staining for cyclooxygenase-2 (COX-2), 5-lipoxygenase (5-LOX), toll like receptor 4 (TLR-4), myeloid differentiation factor 88 (MyD88), nuclear factor-κB (NF-κB) and tumor necrosis factor α (TNF-α); and production of the proinflammatory lipid mediators, such as prostaglandin E2 and leukotriene B4, in the skin lesions. Treatment with CLA ameliorated the development of AD-like clinical symptoms and effectively inhibited epidermal hyperplasia and infiltration of mast cells and CD4<sup>+</sup> T cells in the AD mouse skin. Total serum immunoglobulin E levels and the expression levels of Th1/Th2 cytokines and lipid mediators in dorsal skin were dramatically suppressed by CLA. Furthermore, CLA down-regulated the expressions of COX-2, 5-LOX, TLR4, MyD88, NF-κB and TNF-α. Taken together, our findings demonstrate the potential usefulness of CLA as an anti-inflammatory dietary supplement or drug for the prevention and management of AD skin diseases by modulating the COX-2/5-LOX and TLR4/MyD88/NF-κB signaling pathways."	"MK-801 impairs working memory on the Trial-Unique Nonmatch-to-Location test in mice, but this is not exclusively mediated by NMDA receptors on PV+ interneurons or forebrain pyramidal cells. NMDA receptors (NMDAr) are widely expressed throughout the brain on many cell types, and loss of function of these receptors (ie: NMDAr hypofunction) is a candidate mechanism explaining working memory impairment in schizophrenia. However, the cellular source driving the working memory deficits caused by NMDAr hypofunction has not been explored. The aim of this study was to assess the contribution of NMDAr on pyramidal cells and parvalbumin (PV+) interneurons to impairments in working memory induced by NMDAr hypofunction. We excised GluN1 - the gene encoding the obligatory subunit of the NMDAr - from PV + interneurons or CaMKIIα+ pyramidal cells using Cre-lox technology. Adult male PV GluN1 KO (n = 10) and CaMKIIα GluN1 KO mice (n = 9) and WT controls (n = 10 and n = 13) were trained to perform the Trial-Unique Nonmatching-to-Location (TUNL) task of working memory. Once trained, mice received the NMDAr antagonist MK-801 (0.1 and 0.3 mg/kg ip), and working memory assessed. Neither task acquisition nor working memory differed between the two transgenic lines and WT littermates. MK-801 dose-dependently decreased working memory accuracy in all strains (p &lt; 0.001). PV GluN1 KO mice were sensitised to the impairing effects of MK-801 (p = 0.04), whereas CaMKIIα GluN1 KO mice showed equivalent working memory deficits as WT. Developmental NMDAr hypofunction at either PV+ interneurons or forebrain pyramidal cells is not sufficient to impair working memory, and neither of these cell types exclusively mediates working memory impairment caused by NMDAr antagonism. Reduced NMDAr signalling at PV+ interneurons could predispose circuits to NMDAr hypofunction magnifying deficits in working memory."	"Chronic imaging of mitochondria in the murine cerebral vasculature using in vivo two-photon microscopy. Mitochondria are important regulators of cerebral vascular function in health and disease, but progress in understanding their roles has been hindered by methodological limitations. We report the first in vivo imaging of mitochondria specific to the cerebral endothelium in real time in the same mouse for extended periods. Mice expressing Dendra2 fluorescent protein in mitochondria (mito-Dendra2) in the cerebral vascular endothelium were generated by breeding PhAM-floxed and Tie2-Cre mice. We used mito-Dendra2 expression, cranial window implantation, and two-photon microscopy to visualize mitochondria in the cerebral vascular endothelium of mice. Immunohistochemistry and mitochondrial staining were used to confirm the localization of the mitochondrial signal to endothelial cells and the specificity of mito-Dendra2 to mitochondria. Mito-Dendra2 and Rhodamine B-conjugated dextran allowed simultaneous determinations of mitochondrial density, vessel diameters, area, and mitochondria-to-vessel ratio in vivo, repeatedly, in the same mouse. Endothelial expression of mito-Dendra2 was confirmed in vitro on brain slices and aorta. In addition, we observed an overlapping mito-Dendra2 and Chromeo mitochondrial staining of cultured brain microvascular endothelial cells. Repeated imaging of the same location in the cerebral microcirculation in the same mouse demonstrated stability of mito-Dendra2. While the overall mitochondrial signal was stable over time, mitochondria within the same endothelial cell were mobile. In conclusion, our results indicate that the mito-Dendra2 signal and vascular parameters are suitable for real-time and longitudinal examination of mitochondria in vivo in the cerebral vasculature of mice.NEW &amp; NOTEWORTHY We introduce an innovative in vivo approach to study mitochondria in the cerebral circulation in their physiological environment by demonstrating the feasibility of long-term imaging and three-dimensional reconstruction. We postulate that the appropriate combination of Cre/Lox system and two-photon microscopy will contribute to a better understanding of the role of mitochondria in not only endothelium but also the different cell types of the cerebral circulation."	"Aerobic Exercise Training Inhibits Neointimal Formation via Reduction of PCSK9 and LOX-1 in Atherosclerosis. The purpose of this study was to investigate whether aerobic exercise training inhibits atherosclerosis via the reduction of proprotein convertase subtilisin/kexin type 9 (PCSK9) expression in balloon-induced common carotid arteries of a high-fat-diet rats. Male SD (Sprague Dawley) rats fed an eight-weeks high-fat diet were randomly divided into three groups; these were the sham-operated control (SC), the balloon-induced control (BIC) and the balloon-induced exercise (BIE). The aerobic exercise training groups were performed on a treadmill. The major findings were as follows: first, body weight gain was significantly decreased by aerobic exercise training compared to the BIC without change of energy intake. Second, neointimal formation was significantly inhibited by aerobic exercise training in the balloon-induced common carotid arteries of high-fat-diet rats compared to the BIC. Third, low-density lipoprotein (LDL) receptor (LDLr) expression was significantly increased by aerobic exercise training in the livers of the high-fat diet group compared to the BIC, but not the proprotein convertase subtilisin/kexin type 9 (PCSK9) expression. Fourth, aerobic exercise training significantly decreased the expression of PCSK9, the lectin-like oxidized LDL receptor-1 (LOX-1), and vascular cell adhesion molecule-1 (VCAM-1) in balloon-induced common carotid arteries of high-fat-diet rats compared to the BIC. In conclusion, our results suggest that aerobic exercise training increases LDLr in the liver and inhibits neointimal formation via the reduction of PCSK9 and LOX-1 in balloon-induced common carotid arteries of high-fat-diet-induced rats."	"Physiological and transcriptomic analysis of 'Whangkeumbae' pear core browning during low-temperature storage. Core browning of 'Whangkeumbae' pear has become an urgent problem in the Chinese pear industry, which often appears after several months of low-temperature storage. However, little is known regarding the crosstalk between physiology and molecular mechanisms regulating the core browning process of the pear. In this study, the physiological and genetic responses of the core were identified during storage. The results showed that the malonyldialdehyde (MDA) content, electrolyte leakage, hydrogen peroxide (H2O2) content and superoxide anion (O2·<sup>-</sup>) production rate progressively increased during the browning process. Polyphenoloxidase (PPO), phospholipase D (PLD) and lipoxygenase (LOX) activity initially slightly increased but then sharply increased during the later storage stage. A total of 33,265 unigenes was generated via high-throughput sequencing, and 5121 differentially expressed genes (DEGs) were identified. These DEGs were functionally annotated and some core browning-related DEGs involved in the redox reaction, membrane lipid metabolism and enzymatic browning were also determined. We found that the changes in the gene expression accorded with the physiological variation, indicating the close crosstalk between physiological and genetic response during storage. Our study provides a basis for future research on the core browning mechanism during pear storage."	"Biosynthesis of the Maresin Intermediate, 13S,14S-Epoxy-DHA, by Human 15-Lipoxygenase and 12-Lipoxygenase and Its Regulation through Negative Allosteric Modulators. Human reticulocyte 15-lipoxygenase-1 (h15-LOX-1 or ALOX15) and platelet 12-lipoxygenase (h12-LOX or ALOX12) catalysis of docosahexaenoic acid (DHA) and the maresin precursor, 14S-hydroperoxy-4Z,7Z,10Z,12E,16Z,19Z-docosahexaenoic acid (14S-HpDHA), were investigated to determine their product profiles and relative rates in the biosynthesis of the key maresin intermediate, 13S,14S-epoxy-4Z,7Z,9E,11E,16Z,19Z-docosahexaenoic acid (13S,14S-epoxy-DHA). Both enzymes converted DHA to 14S-HpDHA, with h12-LOX having a 39-fold greater kcat/KM value (14.0 ± 0.8 s<sup>-1</sup> μM<sup>-1</sup>) than that of h15-LOX-1 (0.36 ± 0.08 s<sup>-1</sup> μM<sup>-1</sup>) and a 1.8-fold greater 14S-HpDHA product selectivity, 81 and 46%, respectively. However, h12-LOX was markedly less effective at producing 13S,14S-epoxy-DHA from 14S-HpDHA than h15-LOX-1, with a 4.6-fold smaller kcat/KM value, 0.0024 ± 0.0002 and 0.11 ± 0.006 s<sup>-1</sup> μM<sup>-1</sup>, respectively. This is the first evidence of h15-LOX-1 to catalyze this reaction and reveals a novel in vitro pathway for maresin biosynthesis. In addition, epoxidation of 14S-HpDHA is negatively regulated through allosteric oxylipin binding to h15-LOX-1 and h12-LOX. For h15-LOX-1, 14S-HpDHA (Kd = 6.0 μM), 12S-hydroxy-5Z,8Z,10E,14Z-eicosatetraenoic acid (12S-HETE) (Kd = 3.5 μM), and 14S-hydroxy-7Z,10Z,12E,16Z,19Z-docosapentaenoic acid (14S-HDPAω-3) (Kd = 4.0 μM) were shown to decrease 13S,14S-epoxy-DHA production. h12-LOX was also shown to be allosterically regulated by 14S-HpDHA (Kd = 3.5 μM) and 14S-HDPAω-3 (Kd = 4.0 μM); however, 12S-HETE showed no effect, indicating for the first time an allosteric response by h12-LOX. Finally, 14S-HpDHA inhibited platelet aggregation at a submicrololar concentration, which may have implications in the benefits of diets rich in DHA. These in vitro biosynthetic pathways may help guide in vivo maresin biosynthetic investigations and possibly direct therapeutic interventions."	"Functionalized Enzyme-Responsive Biomaterials to Model Tissue Stiffening in vitro. The mechanical properties of the cellular microenvironment play a crucial role in modulating cell function, and many pathophysiological processes are accompanied by variations in extracellular matrix (ECM) stiffness. Lysyl oxidase (LOx) is one of the enzymes involved in several ECM-stiffening processes. Here, we engineered poly(ethylene glycol) (PEG)-based hydrogels with controlled mechanical properties in the range typical of soft tissues. These hydrogels were functionalized featuring free primary amines, which allows an additional chemical LOx-responsive behavior with increase in crosslinks and hydrogel elastic modulus, mimicking biological ECM-stiffening mechanisms. Hydrogels with elastic moduli in the range of 0.5-4 kPa were obtained after a first photopolymerization step. The increase in elastic modulus of the functionalized and enzyme-responsive hydrogels was also characterized after the second-step enzymatic reaction, recording an increase in hydrogel stiffness up to 0.5 kPa after incubation with LOx. Finally, hydrogel precursors containing HepG2 (bioinks) were used to form three-dimensional (3D) in vitro models to mimic hepatic tissue and test PEG-based hydrogel biocompatibility. Hepatic functional markers were measured up to 7 days of culture, suggesting further use of such 3D models to study cell mechanobiology and response to dynamic variation of hydrogels stiffness. The results show that the functionalized hydrogels presented in this work match the mechanical properties of soft tissues, allow dynamic variations of hydrogel stiffness, and can be used to mimic changes in the microenvironment properties of soft tissues typical of inflammation and pathological changes at early stages (e.g., fibrosis, cancer)."	"Excessive EP4 Signaling in Smooth Muscle Cells Induces Abdominal Aortic Aneurysm by Amplifying Inflammation. Excessive prostaglandin E2 production is a hallmark of abdominal aortic aneurysm (AAA). Enhanced expression of prostaglandin E2 receptor EP4 (prostaglandin E receptor 4) in vascular smooth muscle cells (VSMCs) has been demonstrated in human AAAs. Although moderate expression of EP4 contributes to vascular homeostasis, the roles of excessive EP4 in vascular pathology remain uncertain. We aimed to investigate whether EP4 overexpression in VSMCs exacerbates AAAs. Approach and Results: We constructed mice with EP4 overexpressed selectively in VSMCs under an SM22α promoter (EP4-Tg). Most EP4-Tg mice died within 2 weeks of Ang II (angiotensin II) infusion due to AAA, while nontransgenic mice given Ang II displayed no overt phenotype. EP4-Tg developed much larger AAAs than nontransgenic mice after periaortic CaCl2 application. In contrast, EP4<sup>fl/+</sup>;SM22-Cre;ApoE<sup>-/</sup><sup>-</sup> and EP4<sup>fl/+</sup>;SM22-Cre mice, which are EP4 heterozygous knockout in VSMCs, rarely exhibited AAA after Ang II or CaCl2 treatment, respectively. In Ang II-infused EP4-Tg aorta, Ly6C<sup>hi</sup> inflammatory monocyte/macrophage infiltration and MMP-9 (matrix metalloprotease-9) activation were enhanced. An unbiased analysis revealed that EP4 stimulation positively regulated the genes binding cytokine receptors in VSMCs, in which IL (interleukin)-6 was the most strongly upregulated. In VSMCs of EP4-Tg and human AAAs, EP4 stimulation caused marked IL-6 production via TAK1 (transforming growth factor-β-activated kinase 1), NF-κB (nuclear factor-kappa B), JNK (c-Jun N-terminal kinase), and p38. Inhibition of IL-6 prevented Ang II-induced AAA formation in EP4-Tg. In addition, EP4 stimulation decreased elastin/collagen cross-linking protein LOX (lysyl oxidase) in both human and mouse VSMCs. Dysregulated EP4 overexpression in VSMCs promotes inflammatory monocyte/macrophage infiltration and attenuates elastin/collagen fiber formation, leading to AAA exacerbation."	"Application of in vivo solid phase microextraction (SPME) in capturing metabolome of apple (Malus ×domestica Borkh.) fruit. An in vivo direct-immersion SPME sampling coupled to comprehensive two-dimensional gas chromatography - time-of-flight mass spectrometry (GCxGC-ToFMS) was employed to capture real-time changes in the metabolome of 'Honeycrisp' apples during ripening on the tree. This novel sampling approach was successful in acquiring a broad metabolic fingerprint, capturing unique metabolites and detecting changes in metabolic profiles associated with fruit maturation. Several metabolites and chemical classes, including volatile esters, phenylpropanoid metabolites, 1-octen-3-ol, hexanal, and (2E,4E)-2,4-hexadienal were found to be up-regulated in response to fruit maturation. For the first time, Amaryllidaceae alkaloids, metabolites with important biological activities, including anti-cancer, anti-viral, anti-parasitic, and acetylcholinesterase (AChE) inhibitory activity, were detected in apples. Considering the elimination of oxidative degradation mechanisms that adversely impact the representativeness of metabolome obtained ex vivo, and further evidence that lipoxygenase (LOX) pathway contributes to volatile production in intact fruit, in vivo DI-SPME represents an attractive approach for global plant metabolite studies."	"Pharmacological and genetic targeting of 5-lipoxygenase interrupts c-Myc oncogenic signaling and kills enzalutamide-resistant prostate cancer cells via apoptosis. Much of the morbidity and mortality due to prostate cancer happen because of castration-resistant prostate cancer (CRPC) which invariably develops after anti-androgenic therapy. FDA-approved enzalutamide is commonly prescribed for CRPC which works by blocking androgen receptor function. However, even after initial good response, enzalutamide-resistant prostate cancer (ERPC) develops which eventually leads to widespread metastasis. Management of ERPC is extremely difficult because available therapeutic regimen cannot effectively kill and eliminate ERPC cells. Though the mechanism behind enzalutamide-resistance is not properly understood, over-activation of c-Myc has been found to be a common event which plays an important role in the maintenance and progression of ERPC phenotype. However, direct-targeting of c-Myc poses special problem because of its non-enzymatic nature and certain amount of c-Myc activity is needed by non-cancer cells as well. Thus, c-Myc has emerged as an elusive target which needs to be managed by novel agents and strategies in a cancer-specific way. We investigated the effects of pharmacological and genetic inhibition of 5-lipoxygenase (5-Lox) on cell proliferation, apoptosis and invasive potential of enzalutamide-resistant prostate cancer cells. Transcriptional activity of c-Myc was analyzed by DNA-binding, luciferase-assays, and expression of c-Myc-target genes. We found that 5-Lox regulates c-Myc signaling in enzalutamide-resistant prostate cancer cells and inhibition of 5-Lox by Quiflapon/MK591 or shRNA interrupts oncogenic c-Myc signaling and kills ERPC cells by triggering caspase-mediated apoptosis. Interestingly, MK591 does not affect normal, non-cancer cells in the same experimental conditions. Our findings indicate that inhibition of 5-Lox may emerge as a promising new approach to effectively kill ERPC cells sparing normal cells and suggest that development of a long-term curative therapy of prostate cancer may be possible by killing and eliminating ERPC cells with suitable 5-Lox-inhibitors."	"Screening for Novel LOX and SOD1 Variants in Keratoconus Patients from Brazil. To investigate the presence of the variants of lysyl oxygenase (LOX) and superoxide dismutase 1 (SOD1) genes in Brazilian patients with advanced keratoconus. Donor genomic DNA extracted from blood samples was screened for 5'UTR, exonic LOX, and SOD1 variants in a subset of 26 patients presenting with advanced keratoconus (KISA <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mo>&gt;</mml:mo> </mml:math> 1000% and I-S <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mo>&gt;</mml:mo> </mml:math> 2.0) by Sanger sequencing. The impact of non-synonymous amino acid changes was evaluated by SIFT, PMUT, and PolyPhen algorithms. The Mutation Taster tool was used to evaluate the potential impact of formation of new donor and acceptor splice sites in the promoter region of affected volunteers carrying sequence variants. A 7-base SOD1 deletion (IVS2 + 50del7bp) previously associated with keratoconus was screened in 140 patients presenting classical keratoconus by gel fragment analysis, and positive samples were sequenced for confirmation. We found an unreported missense variant in LOX exon 6 in one heterozygous patient, leading to substitution of proline with threonine at residue 392 (p. Thr392Pro) of LOX protein sequence. This mutation was predicted to be potentially damaging to LOX protein. Another LOX variant, Arg158Gln, was also detected in another patient but predicted to be non-pathogenic. Two additional new polymorphisms in LOX 5'UTR region (-116C <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mo>&gt;</mml:mo> </mml:math> T and -58C <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mo>&gt;</mml:mo> </mml:math> T) were found in two patients presenting with advanced keratoconus and were predicted to modulate or create donor/acceptor splice sites in LOX transcripts. Additionally, SOD1 deletion was detected in one patient presenting with severe keratoconus, not in control samples. We described three novel LOX polymorphisms identified for the first time in Brazilian patients with advanced keratoconus, as well as a previously described SOD1 deletion strongly associated with keratoconus. A possible role of these variants in modulating transcript levels in the cornea of affected individual requires further investigation."	"HRD1 prevents atherosclerosis-mediated endothelial cell apoptosis by promoting LOX-1 degradation. The 3-hydroxy-3-methylglutaryl reductase degradation (HRD1) is an E3 ubiquitin ligase that can preserve heart structure and function, but its role in endothelial dysfunction and atherosclerosis (AS) is unclear. The aim of this study was to explore the role and biological function of HRD1 in AS. HRD1 expression was significantly decreased in atherosclerotic intima and ox-LDL led to a decrease of HRD1 level in endothelial cells (ECs). Forced expression of HRD1 inhibited the endothelial apoptosis induced by ox-LDL. The transcription factor KLF2 specifically bound to the HRD1 promoter and positively regulated HRD1 expression. KLF2 up-regulation could reverse the decrease of HRD1 level in ECs treated with ox-LDL. Further analysis showed that HRD1 interacted with LOX-1 and promoted ubiquitination and degradation of LOX-1 by the proteasome. Deletion of LOX-1 attenuated the ECs apoptosis induced by HRD1 downregulation. Pravastatin, which protected EC from damage via a KLF2-dependent mechanism, could dose-dependently enhanced HRD1 expression in EC exposed to ox-LDL. Interestingly, interference of HRD1 abolished the cytoprotective effect of pravastatin. Collectively, our data indicate that decreased HRD1 expression leads to apoptosis of ECs and restoration of HRD1 expression could represent a novel strategy for human AS therapy."	"Inhibition of 5-Lipoxygenase-Derived Leukotrienes and Hemiketals as a Novel Anti-Inflammatory Mechanism of Urolithins. Urolithins (Uro), gut microbial metabolites derived from ellagic acid (EA), reach significant concentrations in the human colon. Uro-A exerts anti-inflammatory activity in animal models of inflammatory bowel diseases (IBDs). It is hypothesized that Uro can modulate the biosynthesis of leukocyte-derived inflammatory eicosanoids from the 5-lipoxygenase (5-LOX), cyclooxygenase-2 (COX-2), and 5-LOX/COX-2 pathways, relevant in the onset and progression of IBDs, including 5-hydroxyeicosatetraenoic acids (5-HETEs), leukotriene-B4 (LTB4 ), prostaglandin E2 (PGE2 ), and hemiketals (HKE2 and HKD2 ). Leukocytes, obtained from six healthy donors, are stimulated with lipopolysaccharide and calcium ionophore A23187. Uro, at concentrations found in the human colon (1-15 µm), decrease eicosanoid biosynthesis and COX-2 levels in the activated leukocytes. In contrast, EA and conjugated Uro (glucuronides and sulfates) are inactive. Uro-A and isourolithin-A reduce the formation of the 5-LOX/COX-2 products HKE2 and HKD2 through the COX-2 pathway (down-regulation of COX-2 and PGE2), whereas Uro-C reduces 5-HETE and LTB4 via inhibition of 5-LOX. The results show that physiologically relevant colonic Uro target eicosanoid biosynthetic pathways. The effect on HKs and LTB4 formation is unprecedented and expands the knowledge on anti-inflammatory mechanisms of Uro against IBDs."	"Bioactive Lipids in Age-Related Disorders. Our own studies and those of others have shown that defects in essential fatty acid (EFA) metabolism occurs in age-related disorders such as obesity, type 2 diabetes mellitus, hypertension, atherosclerosis, coronary heart disease, immune dysfunction and cancer. It has been noted that in all these disorders there could occur a defect in the activities of desaturases, cyclo-oxygenase (COX), and lipoxygenase (LOX) enzymes leading to a decrease in the formation of their long-chain products gamma-linolenic acid (GLA), arachidonic acid, eicosapentaenoic acid (EPA), docosapentaenoic acid (DPA) and docosahexaenoic acid (DHA). This leads to an increase in the production of pro-inflammatory prostaglandin E2 (PGE2), thromboxanes (TXs), and leukotrienes (LTs) and a decrease in anti-inflammatory lipoxin A4, resolvins, protectins and maresins. All these bioactive molecules are termed as bioactive lipids (BALs). This imbalance in the metabolites of EFAs leads to low-grade systemic inflammation and at times acute inflammatory events at specific local sites that trigger the development of various age-related disorders such as obesity, type 2 diabetes mellitus, hypertension, coronary heart disease, atherosclerosis, and immune dysfunction as seen in rheumatoid arthritis, lupus, nephritis and other localized inflammatory conditions. This evidence implies that methods designed to restore BALs to normal can prevent age-related disorders and enhance longevity and health."	"Bioactive indanes: insight into the bioactivity of indane dimers related to the lead anti-inflammatory molecule PH46A. PH46A (1) demonstrates significant anti-inflammatory activity in phenotypic models but its mechanism and site of action have been elusive. Current study focused on the bioactivity of PH46 (2) and related novel indane dimers (6-10) to investigate the impact of changes in substitution and stereochemistry at the C-1 and C-2 positions of the PH46 (2) scaffold. Cytotoxicity profiles of compounds were established using THP-1 macrophages and SW480 cells. Effects of the compounds were then evaluated at 10 µm using 5-lipoxygenase (LOX) and 15-LOX enzymes, and 5-LOX binding was evaluated in silico against NDGA, nitric oxide (NO) released from LPS-induced SW480 cells and cytokines in THP-1 macrophages (IL-6, IL-1β, TNF-α and IFN-γ) and in SW480 cells (IL-8). PH46 (2) and 7 cause reduction in NO, inhibition of 5-LOX with high binding energy and no cytotoxicity effects in THP-1 macrophages and SW480 cell lines (up to 50 µm). The cytokine profiling of the series demonstrated inhibition of IL-6 and TNF-α in THP-1 macrophages together with IL-8 in SW480 cells. The observed profile of cytokine modulation (IL-6/ TNF-α, IL-8) and inhibition of release of NO and 5-LOX may contribute to the in vivo effects demonstrated by indane dimers and PH46A (1) in murine models of colitis."	"LDL uptake-dependent phosphatidylethanolamine translocation to the cell surface promotes fusion of osteoclast-like cells. Osteoporosis is associated with vessel diseases attributed to hyperlipidemia, and bone resorption by multinucleated osteoclasts is related to lipid metabolism. In this study, we generated low-density lipoprotein receptor (LDLR)/lectin-like oxidized LDL receptor-1 (LOX-1, also known as Olr1) double knockout (dKO) mice. We found that, like LDLR single KO (sKO), LDLR/LOX-1 dKO impaired cell-cell fusion of osteoclast-like cells (OCLs). LDLR/LOX-1 dKO and LDLR sKO preosteoclasts exhibited decreased uptake of LDL. The cell surface cholesterol levels of both LDLR/LOX-1 dKO and LDLR sKO osteoclasts were lower than the levels of wild-type OCLs. Additionally, the amount of phosphatidylethanolamine (PE) on the cell surface was attenuated in LDLR/LOX-1 dKO and LDLR sKO preosteoclasts, whereas the PE distribution in wild-type OCLs was concentrated on the filopodia in contact with neighboring cells. Abrogation of the ATP binding cassette G1 (ABCG1) transporter, which transfers PE to the cell surface, caused decreased PE translocation to the cell surface and subsequent cell-cell fusion. The findings of this study indicate the involvement of a novel cascade (LDLR∼ABCG1∼PE translocation to cell surface∼cell-cell fusion) in multinucleation of OCLs."	"Molecular and Cellular Differences in Cardiac Repair of Male and Female Mice. Background Leukocyte-directed biosynthesis of specialized proresolving mediators (SPMs) orchestrates physiological inflammation after myocardial infarction. Deficiency of SPMs drives pathological and nonresolving inflammation, leading to heart failure (HF). Differences in SPMs and inflammatory responses caused by sex-specific differences are of interest. We differentiated leukocyte-directed biosynthesis of lipid mediators in male and female mice, focusing on leukocyte populations, structural remodeling, functional recovery, and survival rates. Methods and Results Risk-free male and female C57BL/6 mice were selected as naïve controls or subjected to myocardial infarction surgery. Molecular and cellular mechanisms that differentiate survival, heart function, and structure and leukocyte-directed lipid mediators were quantified to describe physiological inflammation after myocardial infarction. Female mice show improved survival in acute HF but no statistical difference during chronic HF compared with male mice. Female mice improved survival is marked with functional recovery and limited remodeling compared with male mice. Male and female mice are similarly responsive to arachidonate lipoxygenase (LOX-5, LOX-12, LOX-15) or cyclooxygenase (COX-1, COX-2) in acute HF and particularly male infarcted heart had overall increased SPMs. Female cardiac healing is marked with the biosynthesis of differential p450-derived product, particularly 11,12 epoxyeicosatrienoic acid in acute HF. A sex-specific difference of dendritic cells in acute HF is distinct, with limited changes in chronic HF. Conclusions Cardiac repair is marked with increased SPM biosynthesis in male mice and amplified epoxyeicosatrienoic acid in female mice. Female mice showed improved survival, functional recovery, and limited remodeling, which are signs of fine-tuned physiological inflammation after myocardial infarction. These results rationalize the sex-specific precise therapies and differential treatments in acute and chronic HF."	"Taenia asiatica: Historical overview of taeniasis and cysticercosis with molecular characterization. Asian Taenia is a human-infecting Taenia tapeworm known as Taenia asiatica following morphological examination of adult and larval stages of the tapeworm by Eom and Rim (1993). The life cycle of T. asiatica differs from that of T. saginata in its intermediate host (pigs versus cattle) as well as in the infected organs (liver versus muscle). T. asiatica can be differentiated from T. solium and T. saginata by examination of morphological characteristics such as the scolex, mature and gravid proglottids in the adult stage, and the scolex and bladder surface in the larval stage. T. asiatica has been identified in Korea, Taiwan, the Philippines, China, Thailand, Indonesia, Vietnam, Japan, Lao PDR, Nepal and India. The molecular tools employed for T. asiatica identification have been developed to differentiate T. asiatica from other human-infecting Taenia tapeworms based on genetic information such as nucleotide sequence of mitochondrial genes, nuclear ribosomal genes and nuclear genes that lead to development of the subsequent molecular techniques, such as PCR-RFLP, PCR-RAPD, BESST-base, LAMP and qPCR. Investigation of the phylogenetic relationships among human Taenia species revealed that T. asiatica is a sister species with T. saginata, which is genetically more similar than other Taenia species in terms of the nucleotide sequences of cox1, nad1 and 28S rDNA. The mitochondrial genomes of human Taenia tapeworms comprise 13,703bp (T. asiatica), 13,670bp (T. saginata) and 13,709bp (T. solium), and contain 36 genes including 12 protein-coding genes, 2 ribosomal RNAs (rRNAs, a small and a large subunit), and 22 transfer RNAs (tRNAs). Sequence differences in the full genome of T. asiatica and T. saginata mitochondria is 4.6%, while T. solium differs by 11%. Hox gene orthology in T. asiatica was established by comparative analysis with Platyhelminthes Hox genes. T. asiatica Hox revealed six Hox orthologs including two lab/Hox1, two Hox3, one Dfd/Hox4 and one Lox/Lox4. Hybridization between T. asiatica and T. saginata was definitely observed in these species which are sympatrically endemic in the regions of Korea, Thailand, China and Lao PDR. Comparative analyses of T. asiatica, T. saginata and T. solium genomes were also reported with genome features. Taenia asiaticus nomen novum was proposed for T. asiaticaEom and Rim, 1993 which is a homonym of T. asiatica Linstow, 1901 (Davaineidae)."	"Hedgehog Signaling Demarcates a Niche of Fibrogenic Peribiliary Mesenchymal Cells. In response to tissue injury, stromal cells secrete extracellular matrix (ECM) components that remodel the tissue and lead to fibrosis. Parenchymal stellate cells are the primary contributors to fibrosis in models of hepatocellular and cholestatic injury. The liver comprises different, heterogenous compartments; stromal cells within those compartments might have unique identities and regional functions. The portal tract contains the bile duct, which is surrounded by stromal cells often called portal fibroblasts. We investigated the contributions of these cells to hepatic injury. We performed studies with Gli1:Cre<sup>ERT2</sup>;Rosa26:lox-STOP-lox-tdTomato mice. Mice underwent bile duct ligation or were fed 3,5-diethoxycarbonyl-1,4-dihydrocollidine to induce cholestatic injury or were given carbon tetrachloride to induce liver fibrosis. Liver tissues were collected and analyzed by histology and immunofluorescence, and mesenchymal cells were isolated. We performed lineage tracing experiments to determine the fates of peribiliary mesenchymal cells (PMCs) that surround the bile duct after cholestatic and hepatocellular injury. We used cell sorting combined with RNA sequencing to isolate stellate cells and PMCs, and we identified determinants of cell identity within each population. Liver tissues were obtained from patients with primary sclerosing cholangitis, alcoholic liver disease, or nonalcoholic steatohepatitis or individuals without disease and were analyzed by quantitative reverse transcription polymerase chain reaction. Gli1 was a marker of mesenchymal cells that surround the biliary tree but not epithelial cells of the canals of Hering. Lineage-traced Gli1<sup>+</sup> PMCs proliferated and acquired a myofibroblast phenotype after cholestatic injury; Gli1<sup>+</sup> PMCs were found only surrounding the main duct of a portal tract but not the epithelial cells of the ductular reaction, which were instead encased by stellate cells. Compared with stellate cells, Gli1<sup>+</sup> PMCs expressed a different subset of genes, including genes that are markers of active hedgehog signaling, Osr1 (encodes a transcription factor), and ECM-related genes. Loss of hedgehog signaling reduced expression of Osr1 and PMC-specific ECM genes. Liver tissues from patients with liver disease had increased expression of genes that define PMC identity compared with control liver tissues. In lineage-tracing studies of mice, we found that Gli1<sup>+</sup> PMCs are a subset of stromal cells characterized by active hedgehog signaling that proliferate, acquire a myofibroblast phenotype, and surround the biliary tree in response to cholestatic injury."	"Altered organization of collagen fibers in the uninvolved human colon mucosa 10 cm and 20 cm away from the malignant tumor. Remodelling of collagen fibers has been described during every phase of cancer genesis and progression. Changes in morphology and organization of collagen fibers contribute to the formation of microenvironment that favors cancer progression and development of metastasis. However, there are only few data about remodelling of collagen fibers in healthy looking mucosa distant from the cancer. Using SHG imaging, electron microscopy and specialized softwares (CT-FIRE, CurveAlign and FiberFit), we objectively visualized and quantified changes in morphology and organization of collagen fibers and investigated possible causes of collagen remodelling (change in syntheses, degradation and collagen cross-linking) in the colon mucosa 10 cm and 20 cm away from the cancer in comparison with healthy mucosa. We showed that in the lamina propria this far from the colon cancer, there were changes in collagen architecture (width, straightness, alignment of collagen fibers and collagen molecules inside fibers), increased representation of myofibroblasts and increase expression of collagen-remodelling enzymes (LOX and MMP2). Thus, the changes in organization of collagen fibers, which were already described in the cancer microenvironment, also exist in the mucosa far from the cancer, but smaller in magnitude."	"High-density SNP map facilitates fine mapping of QTLs and candidate genes discovery for Aspergillus flavus resistance in peanut (Arachis hypogaea). Two novel resistant QTLs mapped and candidate genes identified for Aspergillus flavus resistance in cultivated peanut using SLAF-seq. Aflatoxin contamination in peanuts caused by Aspergillus flavus is a serious food safety issue for human health around the world. Host plant resistance to fungal infection and reduction in aflatoxin are crucial for mitigating this problem. Identification of the resistance-linked markers can be used in marker-assisted breeding for varietal development. Here we report construction of two high-density genetic linkage maps with 1975 SNP loci and 5022 SNP loci, respectively. Two consistent quantitative trait loci (QTL) were identified as qRAF-3-1 and qRAF-14-1, which located on chromosomes A03 and B04, respectively. QTL qRAF-3-1 was mapped within 1.67 cM and had more than 19% phenotypic variance explained (PVE), while qRAF-14-1 was located within 1.34 cM with 5.15% PVE. While comparing with the reference genome, the mapped QTLs, qRAF-3-1 and qRAF-14-1, were located within a physical distance of 1.44 Megabase pair (Mbp) and 2.22 Mbp, harboring 67 and 137 genes, respectively. Among the identified candidate genes, six genes with the same function were found within both QTLs regions. In addition, putative disease resistance RPP13-like protein 1 (RPP13), lipoxygenase (Lox), WRKY transcription factor (WRKY) and cytochrome P450 71B34 genes were also identified. Using microarray analysis, genes responded to A. flavus infection included coding for RPP13, pentatricopeptide repeat-containing-like protein, and Lox which may be possible candidate genes for resistance to A. flavus. The QTLs and candidate genes will further facilitate marker development and validation of genes for deployment in the molecular breeding programs against A. flavus in peanuts."	"Oleacein and Foam Cell Formation in Human Monocyte-Derived Macrophages: A Potential Strategy Against Early and Advanced Atherosclerotic Lesions. Oleacein is a secoiridoid group polyphenol found mostly in Olea europea L. and Ligustrum vulgare L. (Oleaceae). The aim of the present study was to investigate a potential role of oleacein in prevention of the foam cell formation. Oleacein was isolated from Ligustrum vulgare leaves. Human monocyte-derived macrophages were obtained from monocytes cultured with Granulocyte-macrophage colony-stimulating factor (GM-CSF)Then, cells were incubated with 20 M or 50 M of oleacein and with oxidized low-density&amp;nbsp;lipoprotein (oxLDL) (50 g/mL). Visualization of lipid deposition within macrophages was carried out using Oil-Red-O. Expression of CD36, Scavenger receptor A1 (SRA1) and Lectin-like oxidized low-density lipoprotein receptor 1 (LOX-1) was determined by Reverse transcription polymerase chain reaction (RT-PCR) and by flow cytometry. Apoptosis was determined by flow cytometry using Annexin V assay. STAT3 and Acyl-coenzyme A:cholesterol acyltransferase type 1 (ACAT1)levels were determined by ELISA. P-STAT3, P-JAK1, P-JAK2 expressions were determined by Western blot (WB). Oleacein in dose-dependent manner significantly reduced lipid deposits in macrophages as well as their expression of selected scavenger receptors. The highest decrease of expression was found for CD36 and SRA1 receptors, from above 20% to more than 75% compared to oxLDL and the lowest for LOX-1 receptor, from approx. 8% to approx. 25% compared to oxLDL-stimulated macrophages. Oleacein significantly reduced (2.5-fold) early apoptosis of oxLDL-stimulated macrophages. Moreover, oleacein significantly increased the protein expression of JAK/STAT3 pathway and had no effect on ACAT1 level. Our study demonstrates, for the first time, that oleacein inhibits foam cell formation in human monocyte-derived macrophages and thus can be a valuable tool in the prevention of early and advanced atherosclerotic lesions."	"Anti-Inflammatory Drugs as Anticancer Agents. Inflammation is strictly associated with cancer and plays a key role in tumor development and progression. Several epidemiological studies have demonstrated that inflammation can predispose to tumors, therefore targeting inflammation and the molecules involved in the inflammatory process could represent a good strategy for cancer prevention and therapy. In the past, several clinical studies have demonstrated that many anti-inflammatory agents, including non-steroidal anti-inflammatory drugs (NSAIDs), are able to interfere with the tumor microenvironment by reducing cell migration and increasing apoptosis and chemo-sensitivity. This review focuses on the link between inflammation and cancer by describing the anti-inflammatory agents used in cancer therapy, and their mechanisms of action, emphasizing the use of novel anti-inflammatory agents with significant anticancer activity."	"Secondary metabolites from Verbascum bugulifolium Lam. and their bioactivities. Five iridoid glycosides catalpol (1), specioside (2), ajugol (3), ajugoside (4), 8-O-acetylharpagide (5), two phenylethanoid glycosides, verbascoside (6) and glucopyranosyl-(1→Gi-6)-martynoside (7), four flavonoids, luteolin (8), luteolin 7-O-β-glucopyranoside (9), luteolin 7-O-rutinoside (10), apigenin 7-O-rutinoside (11), quercetin 3-O-rutinoside (12) and β-sitosterol (13) were isolated from the aerial parts of Verbascum bugulifolium Lam. for the first time. Their structures were elucidated by NMR and MS experiments. The extracts, and the isolates were evaluated for their in vitro antioxidant (DPPH•, ABTS• and CUPRAC), anti-inflammatory (LOX inhibition) and antimicrobial activities. Compounds 6 and 8 showed the highest antioxidant activity in all tests, where luteolin (8) showed the relatively best anti-inflammatory activity compared to other samples with 54.1 ± 5.0% inhibition at 1 µg/mL. All the tested compounds showed weak antimicrobial activity against tested microorganisms. This is the first phytochemical and bioactivity study on V. bugulifolium.[Formula: see text]."	"Sex-mediated elevation of the specialized pro-resolving lipid mediator levels in a Sjögren's syndrome mouse model. Our previous results showed that the specialized pro-resolving mediator (SPM) Resolvin D1 (RvD1) promotes resolution of inflammation in salivary glands in non-obese diabetic (NOD)/ShiLtJ, a mouse model for Sjögren's syndrome (SS). Additionally, mice lacking the RvD1 receptor ALX/FPR2 show defective innate and adaptive immune responses in salivary glands. Particularly, ALX/FPR2 KO mice exhibit exacerbated inflammation in their salivary glands in response to systemic LPS treatment. Moreover, female ALX/FPR2 KO mice show increased autoantibody production and loss of salivary gland function with age. Together, these studies suggest that an underlying SPM dysregulation could be contributing to SS progression. Therefore, we investigated whether SPM production is altered in NOD/ShiLtJ using metabololipidomics and enzyme-linked immunosorbent assay (ELISA). Our results demonstrate that SPM levels were broadly elevated in plasma collected from NOD/ShiLtJ female mice after disease onset, whereas these drastic changes did not occur in male mice. Moreover, gene expression of enzymes involved in SPM biosynthesis were altered in submandibular glands (SMG) from NOD/ShiLtJ female mice after disease onset, with 5-LOX and 12/15-LOX being downregulated and upregulated, respectively. Despite this dysregulation, the abundances of the SPM products of these enzymes (ie, RvD1 and RvD2) were unaltered in freshly isolated SMG cells suggesting that other cell populations (eg, lymphocytes) may be responsible for the overabundance of SPMs that we observed. The elevation of SPMs noted here appeared to be sex mediated, meaning that it was observed only in one sex (females). Given that SS primarily affects females (roughly 90% of diagnosed cases), these results may provide some insights into the mechanisms underlying the observed sexual dimorphism."	"Serum LOX-1 is a novel prognostic biomarker of colorectal cancer. Colorectal cancer is the third most common cancer worldwide. If biomarkers can be identified in liquid biopsy, diagnosis and treatment can be optimized even when cancerous tissues are not available. The purpose of this study was to identify proteins from liquid biopsy that would be useful as markers of poor prognosis. First, we comprehensively analyzed serum proteins to identify potential biomarkers and focused on serum lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1). The relationship between LOX-1 and the prognosis of patients with colorectal cancer has not been reported. Next, we validated this marker using serum samples from 238 patients with colorectal cancer by ELISA and 100 tissue samples by immunohistochemical staining. The optimal cut-off value of serum LOX-1 was 538.7 pg/mL according to time-dependent receiver operating characteristics curve analysis. The overall survival of patients with high levels of serum LOX-1 was significantly poorer than that of individuals with low levels of LOX-1 in the training and test datasets. In multivariate analysis for overall survival, serum LOX-1 was an independent prognostic factor identified in liquid biopsy (hazard ratio = 1.729, p = 0.027). The prognosis of patients with high LOX-1 expression in tumor tissues was significantly poorer than that of individuals with low expression (p =0.047 ). Additionally, inflammatory factors such as white blood cell count, C-reactive protein level, neutrophil/lymphocyte ratio, and monocyte/lymphocyte ratio were significantly higher in the group with high serum LOX-1 levels. Serum LOX-1 might be a useful biomarker of poor prognosis in colorectal cancer."	"Molecular crosstalk between the endophyte Paraconiothyrium variabile and the phytopathogen Fusarium oxysporum - Modulation of lipoxygenase activity and beauvericin production during the interaction. Plants comprise many asymptomatic fungal endophytes with potential roles of plant protection against abiotic and biotic stresses. Endophytes communicate with their host plant, with other endophytes and with invading pathogens but their language remains largely unknown. This work aims at understanding the chemical communication and physiological interactions between the fungal endophyte Paraconiothyrium variabile and the phytopathogen Fusarium oxysporum. Oxylipins, common means of communication, such as 13-hydroperoxy-9,11-octadecadienoic acid (13-HPODE), had been shown in our earlier studies to be overproduced during dual culture between the two fungal antagonists. On the other hand, the mycotoxin beauvericin was reduced in the interaction zone. The present work addresses the mechanisms underlying these changes. Hydroperoxy oxylipins are produced by lipoxygenases and P. variabile contains two lipoxygenase genes (pvlox1 and pvlox2), whereas pvlox2, but not pvlox1, is specifically up regulated during the interaction and none of the F. oxysporum lox genes vary. Heterologous expression of pvlox2 in yeast shows that the corresponding enzyme PVLOX2 produces 13-HPODE and, therefore, is most likely at the origin of the overproduced 13-HPODE during the interaction. Compellingly, beauvericin synthase gene beas expression is induced and beauvericin amounts increase in F. oxysporum mycelium when in contact with P. variabile. 13-HPODE, however, does not affect beas gene expression. Beauvericin, indeed, inhibits P. variabile growth, which counteracts and biotransforms the mycotoxin leading to reduced amounts in the interaction zone which allows further expansion of the endophyte. In order to study the interaction between the protagonists in planta, we set up an in vitro tripartite interaction assay, including the model plant Arabidopsis thaliana. F. oxysporum rapidly kills A. thaliana plants, whereas P. variabile provides up to 85% reduction of plant death if present before pathogen attack. Future studies will shed light on the protection mechanisms and the role of oxylipins and beauvericin degradation herein with the long-term aim of using endophytes in plant protection."	"Murine FSH Production Depends on the Activin Type II Receptors ACVR2A and ACVR2B. Activins are selective regulators of FSH production by pituitary gonadotrope cells. In a gonadotrope-like cell line, LβT2, activins stimulate FSH via the activin type IIA receptor (ACVR2A) and/or bone morphogenetic protein type II receptor (BMPR2). Consistent with these observations, FSH is greatly reduced, though still present, in global Acvr2a knockout mice. In contrast, FSH production is unaltered in gonadotrope-specific Bmpr2 knockout mice. In light of these results, we questioned whether an additional type II receptor might mediate the actions of activins or related TGF-β ligands in gonadotropes. We focused on the activin type IIB receptor (ACVR2B), even though it does not mediate activin actions in LβT2 cells. Using a Cre-lox strategy, we ablated Acvr2a and/or Acvr2b in murine gonadotropes. The resulting conditional knockout (cKO) animals were compared with littermate controls. Acvr2a cKO (cKO-A) females were subfertile (~70% reduced litter size), cKO-A males were hypogonadal, and both sexes showed marked decreases in serum FSH levels compared with controls. Acvr2b cKO (cKO-B) females were subfertile (~20% reduced litter size), cKO-B males had a moderate decrease in testicular weight, but only males showed a significant decrease in serum FSH levels relative to controls. Simultaneous deletion of both Acvr2a and Acvr2b in gonadotropes led to profound hypogonadism and FSH deficiency in both sexes; females were acyclic and sterile. Collectively, these data demonstrate that ACVR2A and ACVR2B are the critical type II receptors through which activins or related TGF-β ligands induce FSH production in mice in vivo."	"Role of Lectin-like Oxidized LDL Receptor-1 and Syncytiotrophoblast Extracellular Vesicles in the Vascular Reactivity of Mouse Uterine Arteries During Pregnancy. Vascular complications in pregnancy (e.g. preeclampsia) are a major source of maternal and foetal morbidity and mortality, and may be due to excessive release of placental syncytiotrophoblast-derived extracellular vesicles (STBEVs) into the maternal circulation. Increased activity of the multi-ligand scavenger receptor Lectin-like Oxidized LDL Receptor-1 (LOX-1) is associated with vascular dysfunction, and LOX-1 has been shown to interact with angiotensin II receptor type 1 (AT1). We hypothesized that STBEVs contribute to vascular dysfunction via LOX-1 and AT1 receptors during pregnancy. Uterine arteries from late pregnant wildtype and LOX-1 overexpressing mice were incubated overnight with or without STBEVs and vascular function was assessed using wire myography. STBEV-incubation decreased angiotensin II responsiveness only in wildtype mice, which coincided with decreased AT1 contribution and expression. Thus, STBEVs reduced angiotensin II responsiveness in normal pregnancy, but not in conditions of increased LOX-1 expression, suggesting that STBEVs (via LOX-1) play a role in normal adaptations to pregnancy. Oxidized LDL (a LOX-1 ligand) increased angiotensin II-induced vasoconstriction in STBEV-incubated arteries from both mouse strains, suggesting that the LOX-1 pathway may be involved in complicated pregnancies with elevated STBEVs and oxidized LDL levels (such as preeclampsia). These data increase our understanding of vascular complications during pregnancy."	"Ins1-Cre and Ins1-CreER Gene Replacement Alleles Are Susceptible To Silencing By DNA Hypermethylation. Targeted gene ablation studies of the endocrine pancreas have long suffered from suboptimal Cre deleter strains. In many cases, Cre lines purportedly specific for beta cells also displayed expression in other islet endocrine cells or in a subset of neurons in the brain. Several pancreas and endocrine Cre lines have experienced silencing or mosaicism over time. In addition, many Cre transgenic constructs were designed to include the hGH mini-gene, which by itself increases beta-cell replication and decreases beta-cell function. More recently, driver lines with Cre or CreER inserted into the Ins1 locus were generated, with the intent of producing β cell-specific Cre lines with faithful recapitulation of insulin expression. These lines were bred in multiple labs to several different mouse lines harboring various lox alleles. In our hands, the ability of the Ins1-Cre and Ins1-CreER lines to delete target genes varied from that originally reported, with both alleles displaying low levels of expression, increased levels of methylation compared to the wild-type allele, and ultimately inefficient or absent target deletion. Thus, caution is warranted in the interpretation of results obtained with these genetic tools, and Cre expression and activity should be monitored regularly when using these lines."	"The Anti-inflammatory Mediator Resolvin E1 Protects Mice Against Lipopolysaccharide-Induced Heart Injury. Sepsis-induced cardiomyopathy (SIC) is a common severe complication of sepsis that contributes to mortality. SIC is closely associated with excessive inflammatory responses, failed inflammation resolution, and apoptotic damage. Resolvin E1 (RvE1), an omega-3 polyunsaturated fatty acid (PUFA)-derived metabolite, has been reported to exert anti-inflammatory or proresolving activity in multiple animal models of inflammatory disease. However, the therapeutic potential of RvE1 in SIC remains undetermined, which was, therefore, the aim of the present study. C57BL/6J mice were randomly divided into three groups: control, lipopolysaccharide (LPS), and LPS + RvE1. Echocardiography, Western blotting (WB), quantitative real-time (QRT)-PCR, histological analyses, and flow cytometry were used to evaluate cardiac function, myocardial inflammation, and the underlying mechanisms. The RvE1-injected group showed improved left ventricular (LV) function and reduced serum lactate dehydrogenase (LDH) and creatine kinase myocardial bound (CK-MB) levels. Compared to LPS treatment alone, RvE1 treatment inhibited the infiltration of neutrophils and macrophages into the heart and spleen and suppressed the secretion of pro-inflammatory cytokines, including interleukin (IL)-1β, IL-6, and monocyte chemoattractant protein (MCP)-1, in the heart. We also observed that the activation of the mitogen-activated protein kinase (MAPK) and nuclear factor (NF)-κB signaling pathways was blocked by RvE1 treatment, and this inhibition contributed to the improvement in the inflammatory response induced by LPS. RvE1 inhibited LPS-induced M1 macrophage polarization and promoted macrophage polarization toward the M2-like phenotype in both the heart and spleen. In addition, LPS administration dysregulated cyclooxygenase (COX) and lipoxygenase (LOX) in the heart, which were rectified by RvE1 treatment. RvE1 also reduced myocardial apoptosis rate in response to LPS-induced heart injury. RvE1 protects the heart against SIC possibly through the inhibition of the MAPK and NF-κB inflammatory signaling pathways, modulation of macrophage polarization, and reduction in myocardial apoptosis. RvE1 may be a novel lipid mediator for the treatment of SIC."	"Lead-induced oxidative stress and role of antioxidant defense in wheat (Triticum aestivum L.). The aim of this study was to investigate soil lead pollution on biochemical properties and gene expression pattern of antioxidant enzymes in three wheat cultivars (Morvarid, Gonbad and Tirgan) at flag leaf sheath swollen stage. Lead (Pb(NO3)2) was used at four different concentrations (0, 15, 30 and 45 mg/kg of soil). The leaf and roots samples were taken at late-booting stage (Zadoks code, GS: 45). The results showed that lead heavy metal toxicity increased the expression of some genes and the activity of key enzymes of the antioxidant defense system in wheat. Moreover, the cell oxidation levels (MDA, LOX) enhanced under lead stress conditions. The relative gene expression and activity of antioxidant enzymes (CAT, SOD, GPX and APX) increased significantly in the both leaves and root tissues under lead stress conditions. The level of gene expression and enzymatic activity were higher in the root than the leaf tissue. There was no significant difference among cultivars in each of lead concentrations but Morvarid and Tirgan cultivars had more tolerance to toxic concentrations of lead when compared to Gonbad cultivar."	"Three novel variants identified within ECM-related genes in Chinese Han keratoconus patients. As the primary indication for corneal transplantation, the pathogenesis of keratoconus remains elusive. Aiming to identify whether any mutation from extracellular-matrix (ECM)-related genes contributes to the patients with sporadic cases of keratoconus (KC) from Chinese Han population, one hundred and fifty-three participants in total were enrolled in our study, including fifty-three KC patients and one hundred healthy controls. Mutational analysis of three ECM-related genes (LOX, COL5A1 and TIMP3) with next-generation sequencing and Sanger sequencing was performed. To further confirm the function of three ECM-related genes in the pathogenesis of keratoconus, we performed Real-time Quantitative PCR in vitro. Results showed that three new sequence variants (c.95 G &gt; A in LOX, c.1372 C &gt; T in COL5A1 and c.476 C &gt; T in TIMP3) were identified in aforementioned ECM-related genes in KC patients without being detected among the healthy controls. According to the results of QPCR, we found that the expression levels of LOX and TIMP3 were decreased in the KC patients, while COL5A1 showed no significant difference of expression. This is the first time to screen so many ECM-related genes in Chinese keratoconus patients using next-generation sequencing. We find numerous underlying causal variants, enlarging lots of mutation spectrums and thus providing new sites for other investigators to replicate and for further research."	"Selective Ablation of Dehydrodolichyl Diphosphate Synthase in Murine Retinal Pigment Epithelium (RPE) Causes RPE Atrophy and Retinal Degeneration. Patients with certain defects in the dehydrodolichyl diphosphate synthase (DHDDS) gene (RP59; OMIM #613861) exhibit classic symptoms of retinitis pigmentosa, as well as macular changes, suggestive of retinal pigment epithelium (RPE) involvement. The DHDDS enzyme is ubiquitously required for several pathways of protein glycosylation. We wish to understand the basis for selective ocular pathology associated with certain DHDDS mutations and the contribution of specific ocular cell types to the pathology of mutant Dhdds-mediated retinal degeneration. To circumvent embryonic lethality associated with Dhdds knockout, we generated a Cre-dependent knockout allele of murine Dhdds (Dhdds<sup>flx/flx</sup>). We used targeted Cre expression to study the importance of the enzyme in the RPE. Structural alterations of the RPE and retina including reduction in outer retinal thickness, cell layer disruption, and increased RPE hyper-reflectivity were apparent at one postnatal month. At three months, RPE and photoreceptor disruption was observed non-uniformly across the retina as well as RPE transmigration into the photoreceptor layer, external limiting membrane descent towards the RPE, and patchy loss of photoreceptors. Functional loss measured by electroretinography was consistent with structural loss showing scotopic a- and b-wave reductions of 83% and 77%, respectively, at three months. These results indicate that RPE dysfunction contributes to DHDDS mutation-mediated pathology and suggests a more complicated disease mechanism than simply disruption of glycosylation."	"HPLC-PDA Polyphenolic Quantification, UHPLC-MS Secondary Metabolite Composition, and In Vitro Enzyme Inhibition Potential of Bougainvillea glabra. The plants of the Bougainvillea genus are widely explored regarding nutritive and medicinal purposes. In this study, dichloromethane (DCM) and methanol (MeOH) extracts of Bougainvillea glabra (Choisy.) aerial and flower parts were analyzed for high-performance liquid chromatography with photodiode array detection (HPLC-PDA), ultra-high-performance liquid chromatography-mass spectrometry (UHPLC-MS) phytochemical composition, and enzyme inhibition potential against key enzymes involved in diabetes (α-amylase), skin problems (tyrosinase), and inflammatory disorders (lipoxygenase (LOX)). HPLC-PDA quantification revealed the identification of nine different polyphenolics, amongst which both flower extracts were richest. The flower MeOH extract contained the highest amount of catechin (6.31 μg/g), gallic acid (2.39 μg/g), and rutin (1.26 μg/g). However, none of the quantified compounds were detected in the aerial DCM extract. UHPLC-MS analysis of DCM extracts revealed the tentative identification of 27 secondary metabolites, where the most common belonged to terpenoid, alkaloid, and phenolic derivatives. Similarly, for enzyme inhibition, all the extracts presented moderate activity against tyrosinase and α-amylases, whereas, for LOX, both methanolic extracts showed higher percentage inhibition compared with DCM extracts. Based on our findings, B. glabra could be regarded as a perspective starting material for designing novel pharmaceuticals."	"Oxidized LDL Modify the Human Adipocyte Phenotype to an Insulin Resistant, Proinflamatory and Proapoptotic Profile. Little information exists in humans on the regulation that oxidized low-density lipoprotein (oxLDL) exerts on adipocyte metabolism, which is associated with obesity and type 2 diabetes. The aim was to analyze the oxLDL effects on adipocytokine secretion and scavenger receptors (SRs) and cell death markers in human visceral adipocytes. Human differentiated adipocytes from visceral adipose tissue from non-obese and morbidly obese subjects were incubated with increasing oxLDL concentrations. mRNA expression of SRs, markers of apoptosis and autophagy, secretion of adipocytokines, and glucose uptake were analyzed. In non-obese and in morbidly obese subjects, oxLDL produced a decrease in insulin-induced glucose uptake, a significant dose-dependent increase in tumor necrosis factor-α (TNF-α), IL-6, and adiponectin secretion, and a decrease in leptin secretion. OxLDL produced a significant increase of Lox-1 and a decrease in Cxcl16 and Cl-p1 expression. The expression of Bnip3 (marker of apoptosis, necrosis and autophagy) was significantly increased and Bcl2 (antiapoptotic marker) was decreased. OxLDL could sensitize adipocytes to a lower insulin-induced glucose uptake, a more proinflammatory phenotype, and could modify the gene expression involved in apoptosis, autophagy, necrosis, and mitophagy. OxLDL can upregulate Lox-1, and this could lead to a possible amplification of proinflammatory and proapoptotic effects of oxLDL."	"(Z)-3-Hexen-1-ol accumulation enhances hyperosmotic stress tolerance in Camellia sinensis. Volatile components in fresh leaves are involved in the regulation of many stress responses, such as insect damage, fungal infection and high temperature. However, the potential function of volatile components in hyperosmotic response is largely unknown. Here, we found that 7-day hyperosmotic treatment specifically led to the accumulation of (Z)-3-hexen-1-ol, (E)-2-hexenal and methyl salicylate. Transcriptome and qRT-PCR analyses suggested the activation of linolenic acid degradation and methyl salicylate processes. Importantly, exogenous (Z)-3-hexen-1-ol pretreatment dramatically enhanced the hyperosmotic stress tolerance of tea plants and decreased stomatal conductance, whereas (E)-2-hexenal and methyl salicylate pretreatments did not exhibit such a function. qRT-PCR analysis revealed that exogenous ABA induced the expressions of related enzyme genes, and (Z)-3-hexen-1-ol could up-regulate the expressions of many DREB and RD genes. Moreover, exogenous (Z)-3-hexen-1-ol tremendously induced the expressions of specific LOX and ADH genes within 24 h. Taken together, hyperosmotic stress induced (Z)-3-hexen-1-ol accumulation in tea plant via the activation of most LOX, HPL and ADH genes, while (Z)-3-hexen-1-ol could dramatically enhance the hyperosmotic stress tolerance via the decrease of stomatal conductance and MDA, accumulation of ABA and proline, activation of DREB and RD gene expressions, and probably positive feedback regulation of LOXs and ADHs. KEY MESSAGE: Hyperosmotic stress induced (Z)-3-hexen-1-ol accumulation in Camellia sinensis via the up-regulation of most LOX, HPL and ADH genes, while (Z)-3-hexen-1-ol could dramatically enhance the hyperosmotic stress tolerance via the decrease of stomatal conductance, accumulation of proline, activation of DREB and RD gene expressions, and probably positive feedback regulation of LOXs and ADHs."	"Elevated intracellular copper contributes a unique role to kidney fibrosis by lysyl oxidase mediated matrix crosslinking. Copper ions play various roles in mammalian cells, presumably due to their involvement in different enzymatic reactions. Some studies indicated that serum copper correlates with fibrosis in organs, such as liver and lung. However, the mechanism is unknown. Here, we explored the role of copper in kidney fibrosis development and possible underlying mechanisms. We found that copper transporter 1 (CTR1) expression was increased in the kidney tissues in two fibrosis models and in patients with kidney fibrosis. Similar results were also found in renal tubular epithelial cells and fibroblast cells treated with transforming growth factor beta (TGF-β). Mechanistically, the upregulation of CTR1 required Smads-dependent TGF-β signaling pathway and Smad3 directly binded to the promoter of CTR1 in renal fibroblast cells using chromatin immunoprecipitation. Elevated CTR1 induced increase of copper intracellular influx. The elevated intracellular copper ions activated lysyl oxidase (LOX) to enhance the crosslinking of collagen and elastin, which then promoted kidney fibrosis. Reducing intracellular copper accumulation by knocking down CTR1 ameliorated kidney fibrosis in unilateral ureteral obstruction induced renal fibrosis model and renal fibroblast cells stimulated by TGF-β. Treatment with copper chelator tetrathiomolybdate (TM) also alleviated renal fibrosis in vivo and in vitro. In conclusion, intracellular copper accumulation plays a unique role to kidney fibrosis by activating LOX mediated collagen and elastin crosslinking. Inhibition of intracellular copper overload may be a potential portal to alleviate kidney fibrosis."	"Comparison of gE/gI- and TK/gE/gI-Gene-Deleted Pseudorabies Virus Vaccines Mediated by CRISPR/Cas9 and Cre/Lox Systems. Pseudorabies (PR), caused by pseudorabies virus (PRV), is an acute and febrile infectious disease in swine. To eradicate PR, a more efficacious vaccine needs to be developed. Here, the gE/gI- and TK/gE/gI-gene-deleted recombinant PRV (rGXΔgE/gI and rGXΔTK/gE/gI) are constructed through CRISPR/Cas9 and Cre/Lox systems. We found that the rGXΔTK/gE/gI was safer than rGXΔgE/gI in mice. Additionally, the effects of rGXΔgE/gI and rGXΔTK/gE/gI were further evaluated in swine. The rGXΔgE/gI and rGXΔTK/gE/gI significantly increased numbers of IFN-γ-producing CD4+ and CD8+ T-cells in swine, whereas there was no difference between rGXΔgE/gI and rGXΔTK/gE/gI. Moreover, rGXΔgE/gI and rGXΔTK/gE/gI promoted a PRV-specific humoral immune response. The PRV-specific humoral immune response induced by rGXΔgE/gI was consistent with that caused by rGXΔTK/gE/gI. After the challenge, swine vaccinated with rGXΔgE/gI and rGXΔTK/gE/gI showed no clinical signs and viral shedding. However, histopathological detection revealed that rGXΔgE/gI, not rGXΔTK/gE/gI, caused pathological lesions in brain and lung tissues. In summary, these results demonstrate that the TK/gE/gI-gene-deleted recombinant PRV was safer compared with rGXΔgE/gI in swine. The data imply that the TK/gE/gI-gene-deleted recombinant PRV may be a more efficacious vaccine candidate for the prevention of PR."	"Exercise and insulin resistance in PCOS: muscle insulin signalling and fibrosis. Mechanisms of insulin resistance in polycystic ovary syndrome (PCOS) remain ill-defined, contributing to sub-optimal therapies. Recognising skeletal muscle plays a key role in glucose homeostasis we investigated early insulin signalling, its association with aberrant transforming growth factor β (TGFβ) regulated tissue fibrosis. We also explored the impact of aerobic exercise on these molecular pathways. A secondary analysis from a cross-sectional study was undertaken in women with (n=30) or without (n=29) PCOS across lean and overweight BMIs. A subset of participants with (n=8) or without (n=8) PCOS who were overweight completed 12-weeks of aerobic exercise training. Muscle was sampled before and 30 min into a euglycaemic-hyperinsulinaemic clamp pre- and post-training. We found reduced signalling in PCOS of mechanistic target of rapamycin (mTOR). Exercise training augmented but did not completely rescue this signalling defect in women with PCOS. Genes in the TGFβ signalling network were upregulated in skeletal muscle in the overweight women with PCOS but were unresponsive to exercise training except for genes encoding LOX, collagen 1 and 3. We provide new insights into defects in early insulin signalling, tissue fibrosis, and hyperandrogenism in PCOS-specific insulin resistance in lean and overweight women. PCOS-specific insulin-signalling defects were isolated to mTOR, while gene expression implicated TGFβ ligand regulating a fibrosis in the PCOS-obesity synergy in insulin resistance and altered responses to exercise. Interestingly, there was little evidence for hyperandrogenism as a mechanism for insulin resistance."	"Disorder of membrane metabolism induced membrane instability plays important role in pericarp browning of refrigerated 'Nanguo' pears. Refrigeration is used to retard senescence and extend the storage life of 'Nanguo' pears, but fruits subjected to long-term refrigeration are prone to pericarp browning during subsequent shelf life. To uncover the potential effects of membrane lipid changes during fruit pericarp browning, changes in fruit appearance and cell ultrastructure were observed after different storage durations. Membrane lipid content as well as the activity and gene expression of enzymes involved in membrane lipid metabolism and membrane stability were analyzed. Results showed that long-term refrigeration increased the activity and expression of PLD, LOX, lipase, and membrane stability-related genes that promoted membrane lipid degradation and peroxidation, reduced membrane lipid unsaturation, and led to severe browning. Overall, membrane instability induced by disordered membrane lipid metabolism under low temperature stress may account for pericarp browning of cold stored 'Nanguo' pears."	"Mosaic Mutant Analysis Identifies PDGFRα/PDGFRβ as Negative Regulators of Adipogenesis. Adipocyte progenitors (APs) express platelet-derived growth factor receptors (PDGFRs), PDGFRα and PDGFRβ. Elevated PDGFRα signaling inhibits adipogenesis and promotes fibrosis; however, the function of PDGFRs in APs remains unclear. We combined lineage tracing and functional analyses in a sequential dual-recombinase approach that creates mosaic Pdgfr mutant cells by Cre/lox recombination with a linked Flp/frt reporter to track individual cell fates. Using mosaic lineage labeling, we show that adipocytes are derived from the Pdgfra lineage during postnatal growth and adulthood. In contrast, adipocytes are only derived from the mosaic Pdgfrb lineage during postnatal growth. Functionally, postnatal mosaic deletion of PDGFRα enhances adipogenesis and adult deletion enhances β3-adrenergic-receptor-induced beige adipocyte formation. Mosaic deletion of PDGFRβ also enhances white, brown, and beige adipogenesis. These data show that both PDGFRs are cell-autonomous inhibitors of adipocyte differentiation and implicate downregulation of PDGF signaling as a critical event in the transition from AP to adipocyte."	"Boosting collagen deposition with a lysyl oxidase/bone morphogenetic protein-1 cocktail. This book chapter describes the use of exogenous application of lysyl oxidase (LOX) and bone morphogenetic protein-1 (BMP1) to enhance collagen synthesis and deposition from fibroblasts in culture. The protocol includes the generation of human embryonic kidney (HEK) 293 cell lines overexpressing human LOX and BMP1 constructs in order to obtain supernatants enriched in these factors. Incubation of fibroblast monolayers with these conditioned media strongly increases the capacity of these cells to deposit collagen onto the insoluble extracellular matrix. We also describe the use of these decellularized fibroblast-derived matrices as a substrate for the growth and differentiation of mesenchymal stem cells."	"Study of two isoforms of lipoxygenase by kinetic assays, docking and molecular dynamics of a specialised metabolite isolated from the aerial portion of Lithrea caustica (Anacardiaceae) and its synthetic analogs. Our investigation focused on the characterization and study of epicuticular leaf extracts (dichloromethane extract) and certain derivatives of Lithrea caustica (Molina) Hook and Arn. (Anacardiaceae) as inhibitors of 15 soybean and 5 human lipoxygenases (15-sLOX and 5-hLOX). From the epicuticular extract of leaves, the compound (Z)-3-(pentadec-10'-enyl)-catechol (Litreol) was isolated, and three hemisynthetic derivatives were prepared, as they are 3-pentadecylcatechol, (Z)-1,2-diacetyl-3-(pentadec-10'-enyl)-benzene and 1,2-diacetyl-3-pentadecylbenzene. The inhibitory activities for the four compounds against 15-sLOX and 5-hLOX were determined, being (Z)-3-(pentadec-10'-enyl)-catechol (IC50 54.77 μM and 2.09 μM, respectively) and 3-pentadecylcatechol (IC50 55.28 μM and 2.74 μM, respectively), the most interesting compounds assayed. The kinetic studies for (Z)-3-(pentadec-10'-enyl)-catechol and 3-pentadecylcatechol showed a mixed inhibition mechanism to 5-LOX. Finally, docking and molecular dynamics studies were performed to characterize and describe how the chemical structures could be correlated to the decreased 5-hLOX activity observed in the in vitro studies."	"Design, synthesis, molecular modelling and biological evaluation of novel 3-(2-naphthyl)-1-phenyl-1H-pyrazole derivatives as potent antioxidants and 15-Lipoxygenase inhibitors. Oxidative stress is one of the main causes of significant severe diseases. The discovery of new potent antioxidants with high efficiency and low toxicity is a great demand in the field of medicinal chemistry. Herein, we report the design, synthesis molecular modelling and biological evaluation of novel hybrids containing pyrazole, naphthalene and pyrazoline/isoxazoline moiety. Chalcones 2a-e were synthesized efficiently and were used as starting materials for synthesis of a variety of heterocycles. A novel series of pyrazoline 3a-e, phenylpyrazoline 4a-e, isoxazoline 5a-e and pyrazoline carbothioamide derivatives 6a-e were synthesized and screened for in vitro antioxidant activity using 2,2-diphenyl-1-picrylhydrazyl (DPPH), nitric oxide (NO) and superoxide radical scavenging assay as well as 15-lipoxygenase (15-LOX) inhibition activity. Compounds 3a, 4e, 5b, 5c, 6a, 6c, and 6e showed excellent radical scavenging activity in all three methods in comparison with ascorbic acid and 15-LOX inhibition potency using quercetin as standard then were subjected to in vivo study. Catalase (CAT) activity, glutathione (GSH) and malondialdehyde (MDA) levels were assayed in liver of treated rats. Compounds 5b, 5c, and 6e showed significant in vivo antioxidant potentials compared to control group at dose of 100 mg/kg B.W. Molecular docking of compound 6a endorsed its proper binding at the active site pocket of the human 15-LOX which explains its potent antioxidant activity in comparison with standard ascorbic acid."	"BMP-SMAD1/5 Signaling Regulates Retinal Vascular Development. Vascular development is an orchestrated process of vessel formation from pre-existing vessels via sprouting and intussusceptive angiogenesis as well as vascular remodeling to generate the mature vasculature. Bone morphogenetic protein (BMP) signaling via intracellular SMAD1 and SMAD5 effectors regulates sprouting angiogenesis in the early mouse embryo, but its role in other processes of vascular development and in other vascular beds remains incompletely understood. Here, we investigate the function of SMAD1/5 during early postnatal retinal vascular development using inducible, endothelium-specific deletion of Smad1 and Smad5. We observe the formation of arterial-venous malformations in areas with high blood flow, and fewer and less functional tip cells at the angiogenic front. The vascular plexus region is remarkably hyperdense and this is associated with reduced vessel regression and aberrant vascular loop formation. Taken together, our results highlight important functions of SMAD1/5 during vessel formation and remodeling in the early postnatal retina."	"Paneth cells promote angiogenesis and regulate portal hypertension in response to microbial signals. Paneth cells (PCs) synthesize and secrete antimicrobial peptides that are key mediators of host-microbe interactions, establishing a balance between intestinal microflora and enteric pathogens. We observed that their number increases in experimental portal hypertension and aimed to investigate the mechanisms by which these cells can contribute to the regulation of portal pressure. We first treated Math1<sup>Lox/Lox</sup>VilcreERT2 mice with tamoxifen to induce the complete depletion of intestinal PCs. Subsequently, we performed partial portal vein or bile duct ligation. We then studied the effects of these interventions on hemodynamic parameters, proliferation of blood vessels and the expression of genes regulating angiogenesis. Intestinal organoids were cultured and exposed to different microbial products to study the composition of their secreted products (by proteomics) and their effects on the proliferation and tube formation of endothelial cells (ECs). In vivo confocal laser endomicroscopy was used to confirm the findings on blood vessel proliferation. Portal hypertension was significantly attenuated in PC-depleted mice compared to control mice and was associated with a decrease in portosystemic shunts. Depletion of PCs also resulted in a significantly decreased density of blood vessels in the intestinal wall and mesentery. Furthermore, we observed reduced expression of intestinal genes regulating angiogenesis in Paneth cell depleted mice using arrays and next generation sequencing. Tube formation and wound healing responses were significantly decreased in ECs treated with conditioned media from PC-depleted intestinal organoids exposed to intestinal microbiota-derived products. Proteomic analysis of conditioned media in the presence of PCs revealed an increase in factors regulating angiogenesis and additional metabolic processes. In vivo endomicroscopy showed decreased vascular proliferation in the absence of PCs. These results suggest that in response to intestinal flora and microbiota-derived factors, PCs secrete not only antimicrobial peptides, but also pro-angiogenic signaling molecules, thereby promoting intestinal and mesenteric angiogenesis and regulating portal hypertension. Paneth cells are present in the lining of the small intestine. They prevent the passage of bacteria from the intestine into the blood circulation by secreting substances to fight bacteria. In this paper, we discovered that these substances not only act against bacteria, but also increase the quantity of blood vessels in the intestine and blood pressure in the portal vein. This is important, because high blood pressure in the portal vein may result in several complications which could be targeted with novel approaches."	"Aortic progression and reintervention in patients with pathogenic variants after a thoracic aortic dissection. To evaluate aortic disease progression and reintervention after an initial thoracic aortic dissection in pathogenic variant carriers. Of 175 participants diagnosed with thoracic aortic dissection, 31 had a pathogenic variant (pathogenic group) across 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, TGFBR2) identified by whole exome sequencing. Those with benign or normal variants (benign/normal group, n = 144) comprised the control group. Clinical data were collected through medical record review (1985-2018) and supplemented with the National Death Index database (December 2018). The entire cohort (n = 175) consisted of 108 type A aortic dissections and 67 type B aortic dissections, similarly distributed between groups. The pathogenic group was significantly younger (43 vs 56 years, P &lt; .0001) and had significantly more aortic root replacements and similar extents of arch replacement at initial type A aortic dissection repair. The median follow-up time was 7.5 (4.6-12) years. After initial treatment, the pathogenic group required significantly more aortic reinterventions (median 1 vs 0, P &lt; .0001) and mean cumulative aortic reinterventions for each patient (10 years: 1 vs 0.5, P = .029). Both incidence rate (12%/year vs 1.2%/year, P = .0001) and cumulative incidence of reinterventions (9 years: 70% vs 6%, P &lt; .0001) for the preserved native aortic root were significantly higher in the pathogenic group, but were similar for the preserved native aortic arch and distal aorta between groups. Ten-year survival was similar in the pathogenic and benign/normal groups (92% vs 85%). Aggressive aortic root replacement and similar arch management should be considered in pathogenic variant carriers at initial type A aortic dissection repair compared with benign/normal variant carriers."	"The Effect of Diet Supplementation with Pomegranate and Bitter Melon on Lipidomic Profile of Serum and Cancerous Tissues of Rats with Mammary Tumours. The aim of this study was to present overall lipid profile of organisms with ongoing neoplastic process and applied diet supplementation with pomegranate seed oil (PSO) and bitter melon extract (BME). The following were quantified in serum and cancerous tissues of rats suffering from mammary tumours: fatty acids, conjugated fatty acids and sterols, their oxidised metabolites (malondialdehyde and oxysterols) and lipoxygenase (LOX) metabolites of polyunsaturated fatty acids. The obtained results indicate that abnormalities in lipid metabolism accompany neoplastic process. These differences concern all classes of lipids and most pathways of their transformation, with the special emphasis on lipid peroxidation and LOX-mediated metabolism. Cancer process appears to be so detrimental that it may conceal positive influence of dietary modifications. The lack of anticarcinogenic properties of PSO and BME in this model may be due to their antioxidant properties or elevated levels of conjugated linoleic acids (CLA), which change CLA isomer activity from anti- to pro-tumorigenic. As CLA are the product of conjugated linolenic acids (CLnA) endogenous metabolism, high CLA levels may be explained by applied diet enrichment."	"LOX-1: A potential driver of cardiovascular risk in SLE patients. Traditional cardiovascular disease (CVD) risk factors, such as hypertension, dyslipidemia and diabetes do not explain the increased CVD burden in systemic lupus erythematosus (SLE). The oxidized-LDL receptor, LOX-1, is an inflammation-induced receptor implicated in atherosclerotic plaque formation in acute coronary syndrome, and here we evaluated its role in SLE-associated CVD. SLE patients have increased sLOX-1 levels which were associated with elevated proinflammatory HDL, oxLDL and hsCRP. Interestingly, increased sLOX-1 levels were associated with patients with early disease onset, low disease activity, increased IL-8, and normal complement and hematological measures. LOX-1 was increased on patient-derived monocytes and low-density granulocytes, and activation with oxLDL and immune-complexes increased membrane LOX-1, TACE activity, sLOX-1 release, proinflammatory cytokine production by monocytes, and triggered the formation of neutrophil extracellular traps which can promote vascular injury. In conclusion, perturbations in the lipid content in SLE patients' blood activate LOX-1 and promote inflammatory responses. Increased sLOX-1 levels may be an indicator of high CVD risk, and blockade of LOX-1 may provide a therapeutic opportunity for ameliorating atherosclerosis in SLE patients."	"Oligodendrogenesis increases in hippocampal grey and white matter prior to locomotor or memory impairment in an adult mouse model of tauopathy. Myelin and axon losses are associated with cognitive decline in healthy ageing but are worse in people diagnosed with tauopathy. To determine whether tauopathy is also associated with enhanced myelin plasticity, we evaluated the behaviour of OPCs in mice that expressed a human pathological variant of microtubule-associated protein tau (MAPT<sup>P301S</sup> ). By 6 months of age (P180), MAPT<sup>P301S</sup> mice overexpressed hyperphosphorylated tau and had developed reactive gliosis in the hippocampus but had not developed overt locomotor or memory impairment. By performing cre-lox lineage tracing of adult OPCs, we determined that the number of newborn oligodendrocytes added to the hippocampus, entorhinal cortex and fimbria was equivalent in control and MAPT<sup>P301S</sup> mice prior to P150. However, between P150 and P180, significantly more new oligodendrocytes were added to these regions in the MAPT<sup>P301S</sup> mouse brain. This large increase in new oligodendrocyte number was not the result of increased OPC proliferation, nor did it alter oligodendrocyte density in the hippocampus, entorhinal cortex or fimbria, which was equivalent in P180 wild-type and MAPT<sup>P301S</sup> mice. Furthermore, the proportion of hippocampal and fimbria axons with myelin was unaffected by tauopathy. However, the proportion of myelinated axons that were ensheathed by immature myelin internodes was significantly increased in the hippocampus and fimbria of P180 MAPT<sup>P301S</sup> mice, when compared with their wild-type littermates. These data suggest that MAPT<sup>P301S</sup> transgenic mice experience significant oligodendrocyte turnover, with newborn oligodendrocytes compensating for myelin loss early in the development of tauopathy."	"Nurr1<sup>Cd11bcre</sup> conditional knockout mice display inflammatory injury to nigrostriatal dopaminergic neurons. Nuclear receptor-related 1 protein (NURR1) is essential for the development and maintenance of midbrain dopaminergic (DAergic) neurons. NURR1 also protects DAergic neurons against neuroinflammation. However, it remains to be determined to what extent does NURR1 exerts its protective function through acting autonomously in the microglia. Using Cre/lox gene targeting system, we deleted Nurr1 in the microglia of Nurr1 <sup>Cd11bcre</sup> conditional knockout (cKO) mice. The Nurr1 <sup>Cd11bcre</sup> cKO mice displayed age-dependent motor abnormalities and increased microglial activation, but with no obvious DAergic neurodegeneration. To boost the inflammatory injury, we systemically administered endotoxin lipopolysaccharide (LPS) to Nurr1 <sup>Cd11bcre</sup> mice. As expected, LPS treatment exacerbated the motor phenotypes and inflammatory reactions in Nurr1 <sup>Cd11bcre</sup> cKO mice. More importantly, LPS administration caused DAergic neuron loss and α-synuclein aggregation, two pathological hallmarks of Parkinson's disease (PD). Therefore, our findings provide in vivo evidence supporting a critical protective role of NURR1 in the microglia against inflammation-induced degeneration of DAergic neurons in PD."	"Generating Beta-Cell-Specific Transgenic Mice Using the Cre-Lox System. Beta-cell-specific transgenic mice provide an invaluable model for dissecting the direct signaling mechanisms involved in regulating beta-cell structure and function. Furthermore, generating novel transgenic models is now easier and more cost-effective than ever, thanks to exciting novel approaches such as CRISPR.Here, we describe the commonly used approaches for generating and maintaining beta-cell-specific transgenic models and some of the considerations involved in their use. This includes the use of different beta-cell-specific promoters (e.g., pancreatic and duodenal homeobox factor 1 (Pdx1), rat insulin 2 promoter (RIP), and mouse insulin 1 promoter (MIP)) to drive site-specific recombinase technology. Important considerations during selection include level and uniformity of expression in the beta-cell population, ectopic transgene expression, and the use of inducible models.This chapter provides a guide to the procurement, generation, and maintenance of a beta-cell-specific transgene colony from preexisting Cre and loxP mouse strains, providing methods for crossbreeding and genotyping, as well as subsequent maintenance and, in the case of inducible models, transgenic induction."	"Simultaneous multiple allelic replacement in the malaria parasite enables dissection of PKG function. Over recent years, a plethora of new genetic tools has transformed conditional engineering of the malaria parasite genome, allowing functional dissection of essential genes in the asexual and sexual blood stages that cause pathology or are required for disease transmission, respectively. Important challenges remain, including the desirability to complement conditional mutants with a correctly regulated second gene copy to confirm that observed phenotypes are due solely to loss of gene function and to analyse structure-function relationships. To meet this challenge, here we combine the dimerisable Cre (DiCre) system with the use of multiple lox sites to simultaneously generate multiple recombination events of the same gene. We focused on the Plasmodium falciparum cGMP-dependent protein kinase (PKG), creating in parallel conditional disruption of the gene plus up to two allelic replacements. We use the approach to demonstrate that PKG has no scaffolding or adaptor role in intraerythrocytic development, acting solely at merozoite egress. We also show that a phosphorylation-deficient PKG is functionally incompetent. Our method provides valuable new tools for analysis of gene function in the malaria parasite."	"Development and validation of a rapid, specific and sensitive LC-MS/MS bioanalytical method for eicosanoid quantification - assessment of arachidonic acid metabolic pathway activity in hypertensive rats. Lipid mediators such as eicosanoids maintain various physiological processes, and their alterations are involved in the development of numerous cardiovascular diseases. Therefore, the reliable assessment of their profile could be helpful in diagnosis as well as in eicosanoid biomarker-based treatment. Hence, the presented study aimed to develop and validate a new rapid, specific and sensitive LC-MS/MS method for quantification of arachidonic acid-derived eicosanoids in plasma, including lipid mediators generated via COX-, LOX- and CYP450-dependent pathways. The developed method features high sensitivity because the lower limit of quantification ranged from 0.05 to 0.50 ng mL<sup>-1</sup> as well as the accuracy and precision estimated within 88.88-111.25% and 1.03-11.82%, respectively. An application of a simple and fast liquid-liquid extraction procedure for sample cleaning resulted in a highly satisfactory recovery of the analytes (&gt;88.30%). Additionally, the method was validated using artificial plasma, an approach that enabled the elimination of the matrix effect caused by an endogenous concentration of studied lipid mediators. Importantly, the presented LC-MS/MS method allowed for simultaneous quantitative and qualitative [quan/qual] analysis of the selected eicosanoids, leading to an additional improvement of the method specificity. Moreover, the validated method was successfully applied for eicosanoid profiling in rat, mouse and human plasma samples, clearly demonstrating the heterogeneity of the profile of studied lipid mediators in those species."	"Lysyl oxidase (LOX) family members: rationale and their potential as therapeutic targets for liver fibrosis. The crosslinking of structural extracellular matrix (ECM) components, especially fibrillar collagens and elastin, is strongly implicated in fibrosis progression and resistance to fibrosis reversal. Lysyl oxidase family members (LOX and LOXL1-4) are extracellular copper-dependent enzymes that play a key role in ECM crosslinking but have also other intracellular functions relevant to fibrosis and carcinogenesis. While the expression of most LOX family members is elevated in experimental liver fibrosis of diverse etiologies, their individual contribution to fibrosis is incompletely understood. The inhibition of the LOX family as a whole and of LOX, LOXL1 and LOXL2 specifically has been shown to suppress fibrosis progression and accelerate its reversal in rodent models of cardiac, renal, pulmonary and liver fibrosis. Recent disappointing clinical trials with a monoclonal antibody against LOXL2 (Simtuzumab) in patients with pulmonary and liver fibrosis dampened enthusiasm for LOX family member inhibition. However, this unexpected negative outcome may be related to the inefficient antibody rather than to LOXL2 not qualifying as a relevant antifibrotic target. Moreover, LOX family members other than LOXL2 may prove to be attractive therapeutic targets. In this review we summarize the structural hallmarks, expression patterns, covalent cross-linking activities and modes of regulation of LOX family members, and discuss the clinical potential of their inhibition to treat fibrosis in general, and liver fibrosis in particular."	"Donepezil Prevents ox-LDL-Induced Attachment of THP-1 Monocytes to Human Aortic Endothelial Cells (HAECs). Oxidized low-density lipoprotein (ox-LDL)- induced endothelial insults plays an important role in the pathogenesis of atherosclerosis. Donepezil is a well-known acetylcholinesterase inhibitor with its primary application being the treatment of Alzheimer's disease. More recently, there has been increased interest in donepezil as an antiatherosclerosis treatment as it possesses a host of relevant and potentially beneficial properties. In the present study, we found that donepezil could reduce the expression of lectin-type oxidized low-density lipoprotein receptor-1 (LOX-1) in human aortic endothelial cells (HAECs). We found that donepezil could suppress the expression of intercellular adhesion molecule-1 (ICAM-1), which recruits monocytes to adhere to the endothelium, by more than half. Another key finding of our study is that donepezil could reduce the expression of tumor necrosis factor receptor-α (TNF-α) and interleukin-6 (IL-6) by more than half at both the mRNA and protein transcriptional levels. Donepezil also reduced the expression of tissue factor (TF), which is considerably upregulated in atherosclerotic lesions, by more than half. Finally, we turned our attention to the early growth response protein-1 (Egr-1) for its potential role in mediating the effects of donepezil. Through our Egr-1 overexpression experiment, we found that overexpression of Egr-1 almost completely abolished the effects of donepezil described above. Thus, the effects of donepezil are likely mediated through downregulation of Egr-1. These findings provide evidence that donepezil may exert protective effects against atherosclerosis."	"Hesperidin blocks varenicline-aggravated atherosclerotic plaque formation in apolipoprotein E knockout mice by downregulating net uptake of oxidized low-density lipoprotein in macrophages. Varenicline is a widely used and effective drug for smoking cessation. We have previously reported experimental evidence suggesting that varenicline increases the risk of cardiovascular events. Varenicline progresses atherosclerotic plaque formation in apolipoprotein E knockout (ApoE KO) mice. This adverse effect is likely due to enhanced net uptake of oxidized low-density lipoprotein (oxLDL) in macrophages as a result of increased scavenger receptors and decreased cholesterol efflux transporters. However, a regimen has not yet been presented for avoidance or amelioration of the risk for varenicline-induced cardiovascular events. The aim of this study was to examine the effect of hesperidin, a citrus flavonoid, on varenicline-aggravated atherosclerotic plaque formation in apolipoprotein E knockout (ApoE KO) mice. Hesperidin inhibited the aggravating effect of varenicline in the whole aorta, aortic arch, and aortic root of ApoE KO mice. In addition, hesperidin protected against varenicline-enhanced oxLDL net uptake by blocking the increased expression of CD36 and LOX-1 scavenger receptors and decreased expression of ABCA1 and ABCG1 cholesterol efflux transporters in RAW 264.7 cells. Our findings suggest that hesperidin can avoid or ameliorate the risk for cardiovascular events induced by varenicline treatment."	"Relative contribution of LOX10, green leaf volatiles and JA to wound-induced local and systemic oxylipin and hormone signature in Zea mays (maize). Green leaf volatiles (GLVs) and jasmonates (JAs) are the best-characterized groups of fatty acid-derived oxylipin signals that regulate wound-associated defenses. Beyond these two major groups of defense signals, plants produce an array of oxylipins in response to wounding, which possess potent signaling and/or insecticidal activities. In this study, we assessed the relative contribution of JAs and GLVs to wound-induced systemic signaling and the associated regulation of oxylipins in local and systemic tissues of maize (Zea mays). For this, we utilized GLV- and JA-deficient mutants, lox10 single and opr7opr8 double mutants, respectively, and profiled oxylipins in untreated leaves and roots, and in locally wounded and systemic leaves. In contrast to the studies in dicots, no systemic induction of JAs was observed in maize. Instead, a JA precursor, 12-OPDA, as well as ketols and C12/13 oxo-acids derived from 13-lipoxygenases (LOXs), were preferentially induced in both locally wounded and systemic unwounded leaves. Several 9-LOX-derived oxylipins (9-oxylipins) including hydroxides and ketones were also significantly induced locally. JA and JA-isoleucine (JA-Ile) were rapidly induced within 0.5 h, and were followed by a second increase in local tissue 4 h after wounding. GLV-deficient lox10 mutants displayed reduced levels of most 13-oxylipins, and elevated levels of several 9-oxylipins and the a-dioxygenase (DOX) product, 2-HOD. lox10 mutants were completely devoid of C6 volatiles and their C12 counterparts, and greatly decreased in C5 volatiles and their C13 oxo-acid counterparts. Thus, in addition to being the sole LOX isoform providing substrate for GLV synthesis, LOX10 is a major 13-LOX that provides substrate to several LOX branches that produce an array of 13-oxylipin products, including C5 volatiles. Interestingly, the rapid JA and JA-Ile increase at 0.5-2 h post-wounding was only moderately affected by the LOX10 mutation, while significantly reduced levels were observed at 4 h post-wounding. Combined with the previous findings that GLVs activate JA biosynthesis, these results suggest that both LOX10-derived substrates and/or GLVs are involved in the large second phase of JA synthesis proximal to the wound. Analyses of opr7opr8 mutants revealed that wound-induced oxylipin responses were positively regulated by JA signaling. The local and systemic accumulation of SA was not altered in the two mutants. Collectively, our results identified a subset of oxylipins strongly induced in wounded and systemic leaves, but their impact on insect defenses remain elusive. The lack of systemic induction of JAs points to substantial difference between systemic wound responses in studied dicots and maize. Our results show that GLV-deficiency and reduced JA in lox10 mutants had a greater impact on wound-induced local and systemic tissue oxylipin responses compared to the solely JA-deficient opr7opr8 double mutants. This suggests that GLVs or other LOX10-derived products heavily contribute to overall basal and wound-induced oxylipin responses. The specific roles of the GLV- and/or JA-dependent oxylipins in wound responses and defense remain to be further investigated by a combination of multiple orders of oxylipin-deficient mutants."	"The role of propofol hydroxyl group in 5-lipoxygenase recognition. Propofol is a clinically important intravenous anesthetic. We previously reported that it directly inhibited 5-lipoxygenase (5-LOX), a key enzyme for leukotriene biosynthesis. Because the hydroxyl group in propofol (propofol 1-hydroxyl) is critical for its anesthetic effect, we examined if its presence would be inevitable for 5-lipoxygenase recognition. Fropofol is developed by substituting the hydroxy group in propofol with fluorine. We found that propofol 1-hydroxyl was important for 5-lipoxygenase recognition, but it was not absolutely necessary. Azi-fropofol bound to 5-LOX at one of the two propofol binding sites of 5-LOX (pocket around Phe-187), suggesting that propofol 1-hydroxyl is important for 5-LOX inhibition at the other propofol binding site (pocket around Val-431). Interestingly, 5-hydroperoxyeicosatetraenoic acid (5-HpETE) production was significantly increased by stimulation with calcium ionophore A23187 in HEK293 cells expressing 5-LOX, suggesting that the fropofol binding site is important for the conversion from 5-HpETE to leukotriene A4. We also indicated that propofol 1-hydroxyl might have contributed to interaction with wider targets among our body."	"Pharmacological appraisal of ligustrazine based cyclohexanone analogs as inhibitors of inflammatory markers. The targeting of pro-inflammatory enzymes becomes a therapeutic intervention when acute inflammation is proliferating in pathological conditions. This research is intended to carry out an evaluation of inhibiting and inducing enzymes with inflammatory associations with 28 cyclohexanone analogs based on the ligustrazine. Tests were undertaken with inhibitor screening assay kits using a range of synthetic compounds to investigate how they could inhibit the activity of cyclooxygenase (COX) enzymes, secretory phospholipase A2 (sPLA2), and lipoxygenase (LOX) enzyme. Significant and similar inhibitory activities against sPLA2 with were noted with synthetic compounds which included 1f and 1g (IC50 = 2.2 μM). The optimal inhibitory activity regarding LOX enzyme was shown with compounds 1d (IC50 = 8.1 μM) and 1e (IC50 = 7.5 μM). Additionally, the compounds 1b, 1d, 1e, 2n, and 2o were shown to be significant inhibitors of COX-1 activity with IC50 values 0.09 to 0.7 μM. The outcomes of assays for COX inhibition demonstrated that the same compounds had a further strong inhibitive influence on the COX-2 enzyme, and certain compounds such as 1d, 1e, and 2n demonstrated enhanced potency compared with positive controls."	"LOX gene polymorphisms are associated with osteoporotic vertebral compression fracture in postmenopausal Chinese women. Collagen cross-linking, which is regulated by lysyl oxidase (LOX), plays critical roles in bone mechanical strength. LOX can influence bone remodeling by modulating osteoblast and osteoclast activity. This study aimed to explore the effect of LOX gene polymorphisms on osteoporotic fractures susceptibility in postmenopausal Chinese women. This was a prospective study of postmenopausal women who visited the outpatient and community clinics of the local Hospital. Five tagging single nucleotide polymorphisms (SNPs) in the LOX gene were determined. Bone mineral density (BMD) was measured at the lumbar spine, femoral neck, and hip using dual-energy X-ray absorptiometry. Fractures were confirmed by X-ray and divided into: vertebral compression fracture (OVCF) and non-OVCF (all other fractures). This study included 602 patients with non-traumatic fractures and 1343 healthy volunteers. The rs1800449 was significantly associated with vertebral compression fracture (OVCF) after adjusting for age and BMI (P = 0.012). Compared with subjects with the GG genotype, the risk of having OVCF was 1.28 and 1.74, respectively for subjects with the GA and AA genotypes (P = 0.043 and P = 0.018). A recessive genetic model showed that carriers of the AA genotype had higher fracture risk compared to G carriers (GA and GG genotypes) (P = 0.015). The rs2288393 SNP exhibited marginally significant association with OVCF (P = 0.051). Haplotype analyses corroborated our single SNP results: both haplotype CGA and CCG contained rs10519694, rs2288393, and rs1800449, and were significant associated with OVCF (P = 0.048 and P = 0.032, respectively). On the other hand, we found no evidence of an association of LOX gene allelic variants with either BMD or non-OVCF (all P &gt; 0.05). The results suggest that genetic polymorphisms in LOX may contribute to susceptibility to OVCF in Chinese postmenopausal women."	"Downregulation of lysyl oxidase in venous malformations: Association with vascular destabilization and sclerotherapy. Venous malformations (VM) are localized defects in vascular morphogenesis manifested by dilated venous channels with reduced perivascular cell coverage. As a vital enzyme for extracellular matrix (ECM) deposition, lysyl oxidase (LOX) plays important roles in vascular development and diseases. However, the expression and significance of LOX are unknown in VM. Herein, 22 VM specimens and eight samples of normal skin tissues were evaluated immunohistochemically for the expression of LOX, α-smooth muscle cell actin (α-SMA) and transforming growth factor-β (TGF-β). In vitro studies on human umbilical vein endothelial cells (HUVEC) were employed for determining potential mechanisms. Our results showed that LOX expression was significantly reduced in VM compared with normal skin tissues, in parallel with attenuated perivascular α-SMA<sup>+</sup> cell coverage and TGF-β downregulation in VM. Further correlation analysis indicated that LOX expression was positively correlated with perivascular α-SMA<sup>+</sup> cell coverage and TGF-β expression in VM. Moreover, marked elevation of LOX, TGF-β and α-SMA was observed in bleomycin-treated VM samples. Furthermore, our in vitro data demonstrated that both recombinant TGF-β and bleomycin induced obvious increase of LOX expression and activity and a concomitant increase in ECM components in HUVEC, which could be reversed by LOX inhibition. To our best knowledge, this study revealed for the first time the downregulation of LOX in VM and its correlation with vascular destabilization and TGF-β-induced endothelial ECM deposition. Moreover, our results highlighted that LOX may be implicated in the sclerotherapy of VM and holds promise as a therapeutic target."	"12-LOX catalyzes the oxidation of 2-arachidonoyl-lysolipids in platelets generating eicosanoid-lysolipids that are attenuated by iPLA2γ knockout. The canonical pathway of eicosanoid production in most mammalian cells is initiated by phospholipase A2-mediated release of arachidonic acid, followed by its enzymatic oxidation resulting in a vast array of eicosanoid products. However, recent work has demonstrated that the major phospholipase in mitochondria, iPLA2γ (patatin-like phospholipase domain containing 8 (PNPLA8)), possesses sn-1 specificity, with polyunsaturated fatty acids at the sn-2 position generating polyunsaturated sn-2-acyl lysophospholipids. Through strategic chemical derivatization, chiral chromatographic separation, and multistage tandem MS, here we first demonstrate that human platelet-type 12-lipoxygenase (12-LOX) can directly catalyze the regioselective and stereospecific oxidation of 2-arachidonoyl-lysophosphatidylcholine (2-AA-LPC) and 2-arachidonoyl-lysophosphatidylethanolamine (2-AA-LPE). Next, we identified these two eicosanoid-lysophospholipids in murine myocardium and in isolated platelets. Moreover, we observed robust increases in 2-AA-LPC, 2-AA-LPE, and their downstream 12-LOX oxidation products, 12(S)-HETE-LPC and 12(S)-HETE-LPE, in calcium ionophore (A23187)-stimulated murine platelets. Mechanistically, genetic ablation of iPLA2γ markedly decreased the calcium-stimulated production of 2-AA-LPC, 2-AA-LPE, and 12-HETE-lysophospholipids in mouse platelets. Importantly, a potent and selective 12-LOX inhibitor, ML355, significantly inhibited the production of 12-HETE-LPC and 12-HETE-LPE in activated platelets. Furthermore, we found that aging is accompanied by significant changes in 12-HETE-LPC in murine serum that were also markedly attenuated by iPLA2γ genetic ablation. Collectively, these results identify previously unknown iPLA2γ-initiated signaling pathways mediated by direct 12-LOX oxidation of 2-AA-LPC and 2-AA-LPE. This oxidation generates previously unrecognized eicosanoid-lysophospholipids that may serve as biomarkers for age-related diseases and could potentially be used as targets in therapeutic interventions."	"Evaluation of subclinical atherosclerosis in Turkish patients with acne vulgaris receiving systemic isotretinoin. Studies conducted on isotretinoin have shown that it may indirectly lead to atherosclerosis. The objective of this study was to determine the effect of systemic isotretinoin on subclinical atherosclerosis. The present study included 63 patients with acne vulgaris who had used isotretinoin for 6 months. Glucose, insulin, and homeostatic model assessment of insulin resistance levels; body mass index; waist circumference; blood pressure; lipid profile; and lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1), high-sensitivity C-reactive protein, and oxidized low-density lipoprotein (Ox-LDL) levels were compared in the patients at the initiation and discontinuation of the treatment. At the discontinuation of the treatment, LOX-1 and Ox-LDL levels showed a significant increase (P &lt; .001 and P = .040, respectively). Differences in waist circumference were positively correlated with an increase in LOX-1 levels (r = .274; P = .030). Isotretinoin causes an increase in the levels of subclinical atherosclerosis markers. Although the present study sample size was small, we believe that caution should be exercised considering the risk of atherosclerosis during isotretinoin use in men with high waist circumference and cardiovascular risk factors; further studies are warranted in this regard."	"The P2RY12 receptor promotes VSMC-derived foam cell formation by inhibiting autophagy in advanced atherosclerosis. Vascular smooth muscle cells (VSMCs) are an important source of foam cells in atherosclerosis. The mechanism for VSMC-derived foam cell formation is, however, poorly understood. Here, we demonstrate that the P2RY12/P2Y12 receptor is important in regulating macroautophagy/autophagy and VSMC-derived foam cell formation in advanced atherosclerosis. Inhibition of the P2RY12 receptor ameliorated lipid accumulation and VSMC-derived foam cell formation in high-fat diet-fed apoe<sup>-/-</sup> mice (atherosclerosis model) independent of LDL-c levels. Activation of the P2RY12 receptor blocked cholesterol efflux via PI3K-AKT, while genetic knockdown or pharmacological inhibition of the P2RY12 receptor inhibited this effect in VSMCs. Phosphoproteomic analysis showed that the P2RY12 receptor regulated the autophagy pathway in VSMCs. Additionally, activation of the P2RY12 receptor inhibited MAP1LC3/LC3 maturation, SQSTM1 degradation, and autophagosome formation in VSMCs. Genetic knockdown of the essential autophagy gene Atg5 significantly attenuated P2RY12 receptor inhibitor-induced cholesterol efflux in VSMCs. Furthermore, activation of the P2RY12 receptor led to the activation of MTOR through PI3K-AKT in VSMCs, whereas blocking MTOR activity (rapamycin) or reducing MTOR expression reversed the inhibition of cholesterol efflux mediated by the P2RY12 receptor in VSMCs. In vivo, inhibition of the P2RY12 receptor promoted autophagy of VSMCs through PI3K-AKT-MTOR in advanced atherosclerosis in apoe<sup>-/-</sup> mice, which could be impeded by an autophagy inhibitor (chloroquine). Therefore, we conclude that activation of the P2RY12 receptor decreases cholesterol efflux and promotes VSMC-derived foam cell formation by blocking autophagy in advanced atherosclerosis. Our study thus suggests that the P2RY12 receptor is a therapeutic target for treating atherosclerosis.Abbreviations: 2-MeSAMP: 2-methylthioadenosine 5'-monophosphate; 8-CPT-cAMP: 8-(4-chlorophenylthio)-adenosine-3',5'-cyclic-monophosphate; ABCA1: ATP binding cassette subfamily A member 1; ABCG1: ATP binding cassette subfamily G member 1; ACTB: actin beta; ADPβs: adenosine 5'-(alpha, beta-methylene) diphosphate; ALs: autolysosomes; AMPK: AMP-activated protein kinase; APOA1: apolipoprotein A1; APs: autophagosomes; ATG5: autophagy related 5; ATV: atorvastatin; AVs: autophagic vacuoles; CD: chow diet; CDL: clopidogrel; CQ: chloroquine; DAPI: 4',6-diamidino-2-phenylindole; dbcAMP: dibutyryl-cAMP; DIL-oxLDL: dioctadecyl-3,3,3,3-tetramethylin docarbocyanine-oxLDL; EIF4EBP1/4E-BP1: eukaryotic translation initiation factor 4E binding protein 1; EVG: elastic van gieson; HE: hematoxylin-eosin; HDL: high-density lipoprotein; HFD: high-fat diet; KEGG: Kyoto Encyclopedia of Genes and Genomes; LDL-c: low-density lipoprotein cholesterol; LDs: lipid droplets; MAP1LC3/LC3: microtubule associated protein 1 light chain 3; Masson: masson trichrome; MCPT: maximal carotid plaque thickness; MK2206: MK-2206 2HCL; NBD-cholesterol: 22-(N-[7-nitrobenz-2-oxa-1,3-diazol-4-yl] amino)-23,24-bisnor-5-cholen-3β-ol; OLR1/LOX-1: oxidized low density lipoprotein receptor 1; ORO: oil Red O; ox-LDL: oxidized low-density lipoprotein; SQSTM1/p62: sequestosome 1; TEM: transmission electron microscopy; TIC: ticagrelor; ULK1: unc-51 like autophagy activating kinase 1; VSMCs: vascular smooth muscle cells."	"A Novel Next-Generation Sequencing and Analysis Platform to Assess the Identity of Recombinant Adeno-Associated Viral Preparations from Viral DNA Extracts. Recombinant adeno-associated virus (rAAV) vectors are increasingly popular gene delivery tools in biological systems. They are safe and lead to high-level, long-term transgene expression. rAAV are available in multiple serotypes, natural or engineered, which enable targeting to a wide array of tissues and cell types. In addition, rAAVs are relatively easily produced in a well-equipped lab or obtained from a viral vector core facility. Unfortunately, there is no standardization of quality control assays beyond titering and purity assessments. Next-generation sequencing (NGS) can be used to identify rAAV preparations. Because the rAAV genome is single stranded, previous studies have assumed that rAAV genomes must be converted to double strands before NGS. We demonstrate that rAAV DNA extracts exist primarily as double-stranded species. We hypothesize that these molecules form from the natural base pairing of complementary [+] and [-] strands after DNA extraction and show that rAAV DNA extracts are sufficient templates for downstream NGS without the labor-intensive double-stranding step. Here, we provide a detailed protocol for the simple and rapid NGS of rAAV genomes from DNA extracts. With this protocol, users can quickly confirm the identity of an rAAV preparation and detect the presence of contaminating rAAV DNA. In addition, we share custom Python scripts that allow users to accurately determine the serotype and detect Cre-independent DNA recombination events in rAAV containing Lox sites within minutes. We have used these scripts to analyze more than 100 rAAV preparations. Although we focused on the detection of cross-contaminating rAAV DNA and recombination events, our Python scripts can be customized to detect other sequences or events, such as reverse packaging of plasmid backbone or DNA from the packaging cell line. We find that the NGS of rAAV DNA extracts, termed viral genome sequencing, is a simple and powerful method for rAAV validation."	"Brozopine Inhibits 15-LOX-2 Metabolism Pathway After Transient Focal Cerebral Ischemia in Rats and OGD/R-Induced Hypoxia Injury in PC12 Cells. The goal of this study was to elucidate the mechanisms of protection of Sodium (±)-5-bromo-2-(α-hydroxypentyl) benzoate (trade name: Brozopine, BZP) against cerebral ischemia in vivo and in vitro. To explore the protective effect of BZP on focal cerebral ischemia-reperfusion injury, we evaluated the effects of various doses of BZP on neurobehavioral score, cerebral infarction volume, cerebral swelling in MCAO rats (ischemia for 2 h, reperfusion for 24 h). In addition, the effects of various doses of BZP on OGD/R-induced-PC12 cells injury (hypoglycemic medium containing 30 mmol Na2S2O4 for 2 h, reoxygenation for 24 h) were evaluated. Four in vivo and in vitro groups were evaluated to characterize targets of BZP: Control group, Model group, BZP group (10 mg/kg)/BZP group (30 μmol/L), C8E4 group (10 mg/kg)/C8E4 group (30 μmol/L). An ELISA kit was used to determine the levels of 15-HETE (a 15-LOX-2 metabolite) in vivo and in vitro. Rat nuclear factor κB subunit p65 (NF-κB p65), tumor necrosis factor (TNF-α), interleukin-6 (IL-6), and intercellular adhesion molecule-1 (ICAM-1) were also quantified in vivo and in vitro. The results showed that BZP improved focal cerebral ischemia-reperfusion injury in rats and PC12 cells treated with Na2S2O4 in dose/concentration-dependent manners through inhibition of production of 15-HETE and expression of NF-κB, IL-6, TNF-α, and ICAM-1. In conclusion, BZP exerted protective effects against cerebral ischemia via inhibition of 15-LOX-2 activity."	"Energy partitioning between fat and bone mass is controlled via a hypothalamic leptin/NPY relay. Maintaining energy balance is important to ensure a healthy organism. However, energy partitioning, coordinating the distribution of sufficient energy to different organs and tissues is equally important, but the control of this process is largely unknown. In obesity, an increase in fat mass necessitates the production of additional bone mass to cope with the increase in bodyweight and processes need to be in place to communicate this new weight bearing demand. Here, we investigate the interaction between leptin and NPY, two factors critically involved in the regulation of both energy metabolism and bone mass, in this process. We assessed the co-localization of leptin receptors on NPY neurons using RNAScope followed by a systematic examination of body composition and energy metabolism profiling in male and female mice lacking leptin receptors specifically in NPY neurons (Lepr<sup>lox/lox</sup>;NPY<sup>Cre/+</sup>). The effect of short-term switching between chow and high-fat diet was also examined in these mice. We uncovered that leptin receptor expression is greater on a subpopulation of NPY neurons in the arcuate that do not express AgRP. We further show that Lepr<sup>lox/lox</sup>;NPY<sup>Cre/+</sup> mice exhibit significantly increased adiposity while bone mass is diminished. These body composition changes occur in the absence of alterations in food intake or energy expenditure, demonstrating a prominent role for leptin signaling in NPY neurons in the control of energy partitioning. Importantly however, when fed a high-fat diet, these mice display a switch in energy partitioning whereby they exhibit a significantly enhanced ability to increase their bone mass to match the increased bodyweight caused by higher caloric intake concurrent with attenuated adiposity. Taken together, these results demonstrate that leptin signaling in NPY neurons is critical for coordinating energy partitioning between fat and bone mass especially during situations of changes in energy balance."	"LC-MS Analysis, 15-Lipoxygenase Inhibition, Cytotoxicity, and Genotoxicity of Dissotis multiflora (Sm) Triana (Melastomataceae) and Paullinia pinnata Linn (Sapindaceae). This study aims to evaluate the anti-inflammatory, cytotoxicity, and genotoxicity activities of Dissotis multiflora (Sm) Triana and Paullinia pinnata Linn used traditionally in Cameroon to treat infectious diseases. Phytochemical screening was carried out using the LC-MS procedure. The ferrous oxidation-xylenol orange (FOX) assay was used to determine the 15-lipoxygenase (15-LOX) inhibitory activity of the plant samples. The tetrazolium-based colorimetric (MTT) assay was performed using Vero cells. The Ames test was carried out using Salmonella typhimurium TA98 and TA100 tester strains. LC-MS chromatogram of D. multiflora led to the identification of four known compounds, namely, 5-(3,5-dinitrophenyl)-2H-tetrazol (2), 2,2'-{[2-(6-amino-9H-purine-9-yl)ethyl]imino}diethanol (14), 1,2,5-oxadiazolo [3,4-b]pyrazine, 5,6-di (3,5-dimethyl-1-piperidyl) (19), and nimbolinin D (20) while four compounds were also identified in P. pinnata known as 2-hydroxycarbamoyl-4-methyl-pentanoic acid (2), pheophorbide A (16), 1-[4-({2-[(1-methyl-1H-indol-5-yl)amino]-4-pyrimidinyl}oxy)-1-naphthyl]-3-[1-(4 methylphenyl)-3-(2-methyl-2-propanyl)-1H-pyrazol-5-yl]urea (17), and nimbolinin D (18). D. multiflora and P. pinnata inhibited 15-LOX activity in concentration-dependent manner. The LC50 (concentration that kills 50% of cells) values of the extracts ranged from 0.13 ± 00 to 1 ± 00 mg/mL for P. pinnata and D. multiflora, respectively. P. pinnata was cytotoxic at concentrations tested while D. multiflora was not. The selectivity index (SI) values ranged from 0.16 to 10.30 on Vero cell lines. No genotoxic effect was observed against both strains tested. These extracts are sources of compounds which can be used to control infectious diseases and associated inflammation. However, caution should be taken while using P. pinnata for medicinal purposes."	"Identification of microRNAs and their target genes in the placenta as biomarkers of inflammation. Recently, microRNA (miRNA) has been identified both as a powerful regulator involved in various biological processes through the regulation of numerous genes and as an effective biomarker for the prediction and diagnosis of various disease states. The objective of this study was to identify and validate miRNAs and their target genes involved in inflammation in placental tissue. Microarrays were utilized to obtain miRNA and gene expression profiles from placentas with or without inflammation obtained from nine normal pregnant women and 10 preterm labor patients. Quantitative real-time polymerase chain reaction and Western blots were performed to validate the miRNAs and differentially-expressed genes in the placentas with inflammation. Correlations between miRNA and target gene expression were confirmed by luciferase assays in HTR-8/SVneo cells. We identified and validated miRNAs and their target genes that were differentially expressed in placentas with inflammation. We also demonstrated that several miRNAs (miR-371a-5p, miR-3065-3p, miR-519b-3p, and miR-373-3p) directly targeted their target genes (LEF1, LOX, ITGB4, and CD44). However, some miRNAs and their direct target genes showed no correlation in tissue samples. Interestingly, miR-373-3p and miR-3065-3p were markedly regulated by lipopolysaccharide (LPS) treatment, although the expression of their direct targets CD44 and LOX was not altered by LPS treatment. These results provide candidate miRNAs and their target genes that could be used as placental biomarkers of inflammation. These candidates may be useful for further miRNA-based biomarker development."	"Screening for natural inhibitors of 5-lipoxygenase from Zi-shen pill extract by affinity ultrafiltration coupled with ultra performance liquid chromatography-mass spectrometry. Zi-shen pill (ZSP), a traditional Chinese medicine, is widely used for the treatment of benign prostatic hyperplasia (BPH) and has remarkable curative effect. To screen the potential 5-Lipoxygenase(5-LOX) inhibitors from ZSP extract. A new approach based on affinity ultrafiltration-ultra performance liquid chromatography-mass spectrometry(UPLC-MS) was established and validated. Zileuton and glipizide were chosen as positive and negative control drug, respectively. For better screening result, the concentration of 5-LOX enzyme, incubation temperature and time, pH and ion strength were optimized. In addition, 5-LOX inhibitory assay in vitro and molecular docking technique were used for further verification. 20 compounds were characterized in the ultrafiltrate by high resolution Fourier transform ion cyclotron resonance mass spectrometry (FT-ICR MS) and 16 ligands showed binding ability to 5-LOX. Among them, six ligands were deduced as high-potential 5-LOX inhibitors with their high specific binding values (&gt;2.0). The inhibitory activities of anemarrhenasaponin I, timosaponin AI, nyasol and demethyleneberberine were confirmed by the 5-LOX inhibitory assay for validating the reliability of affinity ultrafiltration approach and the computer-simulated molecular docking technique further clarified the possible mechanism of action between the active compounds and the 5-LOX active sites."	"Salt-tolerant and -sensitive seedlings exhibit noteworthy differences in lipolytic events in response to salt stress. Present findings hypothesize that salt-tolerant and -sensitive oilseed plants are expected to exhibit deviant patterns of growth through lipolytic events in seedling cotyledons. It reports the growth response and different lipolytic mechanisms operating during oil body (OB) mobilization in the seedling cotyledons of salt-tolerant (DRSH 1) and salt-sensitive (PSH 1962) varieties of sunflower (Helianthus annuus L.). Salt tolerance or sensitivity to 120 mM NaCl correlates with high proteolytic degradation of OB membrane proteins, particularly oleosins, whereas salt-sensitive seedling cotyledons exhibit negligible proteolytic activity, thereby retaining OB membrane integrity for a longer time. High lipoxygenase (LOX) activity and its further upregulation by salt stress are the unique features of salt-sensitive sunflower seedlings. Salt-tolerant seedling cotyledons exhibit noteworthy modulation of phospholipase-D (PLD) activity by salt stress. Salt-sensitive seedling cotyledons exhibit higher lipase activity than salt-sensitive ones and enzyme activity is downregulated by salt stress. Salt-sensitive variety exhibits higher lipid accumulation and faster lipid mobilization with seedling development than salt-tolerant variety. Accumulation of oleic and linoleic acid in the seedling cotyledons of salt-tolerant and sensitive varieties exhibits differential sensitivity to salt stress. Novel detection of hexanoic acid (6:0) is a noteworthy feature as a response to salt stress in salt-sensitive variety. These findings, thus, provide new information on long-distance salt stress sensing mechanisms at seedling stage of plant development."	"Genetic Deletion of Socs3 in Smooth Muscle Cells Ameliorates Aortic Dissection in Mice. Aortic dissection (AD) is the acute destruction of aortic wall and is reportedly induced by inflammatory response. Here we investigated the role of smooth muscle Socs3 (a negative regulator of Janus kinases/signal transducer and activator of transcription signaling) in AD pathogenesis using a mouse model generated via β-aminopropionitrile and angiotensin II infusion. Socs3 deletion specifically in smooth muscle cells yielded a chronic inflammatory response of the aortic wall, which was associated with increased fibroblasts, reinforced aortic tensile strength, and less-severe tissue destruction. Although an acute inflammatory response is detrimental in AD, smooth muscle-regulated inflammatory response seemed protective against AD."	"Exogenous vanillic acid enhances salt tolerance of tomato: Insight into plant antioxidant defense and glyoxalase systems. We investigated vanillic acid-induced salt tolerance in tomato by exploring the plant defense systems. Ten-d-old tomato (Solanum lycopersicum L. cv. Pusa Ruby) seedlings were treated with salt (NaCl; 150 mM) and vanillic acid (VA; 40 and 50 μM) separately and in combination with salt. Salinity restricted seedlings growth, biomass accumulation, chlorophyll and carotenoid contents. Salt-induced osmotic stress was indicated by lower leaf relative water content (RWC) and elevated proline (Pro) content, where higher Na<sup>+</sup>/K<sup>+</sup> ratio indicated the ionic toxicity. Tomato seedlings went through oxidative damage due to acute reactive oxygen species (ROS) production and lipoxygenase (LOX) activity and confirmed by higher lipid peroxidation and membrane damage under salinity. Conversely, exogenous VA reduced osmotic and ionic toxicity in stressed-seedlings by enhancing the RWC and Pro level, and lowering Na<sup>+</sup>/K<sup>+</sup> ratio, respectively. Exogenous VA up-regulated the components of antioxidant defense system in salt-treated seedlings resulted in the reduction of ROS production, LOX activity and membrane damage in stressed-seedlings. Additionally, VA application caused the reduction of toxic methylglyoxal accumulation under salt stress through the enhancement of glyoxalase system. Thus, VA-induced alleviation of osmotic, ionic and oxidative stresses leading to improve plant growth and chlorophyll synthesis in stressed-seedlings. So, VA significantly improves salinity tolerance and plant growth performance by involving the actions of plant antioxidant defense and glyoxalase systems."	"C-Type Lectin-Like Receptors: Head or Tail in Cell Death Immunity. C-type lectin-like receptors (CLRs) represent a family of transmembrane pattern recognition receptors, expressed primarily by myeloid cells. They recognize not only pathogen moieties for host defense, but also modified self-antigens such as damage-associated molecular patterns released from dead cells. Upon ligation, CLR signaling leads to the production of inflammatory mediators to shape amplitude, duration and outcome of the immune response. Thus, following excessive injury, dysregulation of these receptors leads to the development of inflammatory diseases. Herein, we will focus on four CLRs of the &quot;Dectin family,&quot; shown to decode the immunogenicity of cell death. CLEC9A on dendritic cells links F-actin exposed by dying cells to favor cross-presentation of dead-cell associated antigens to CD8<sup>+</sup> T cells. Nevertheless, CLEC9A exerts also feedback mechanisms to temper neutrophil recruitment and prevent additional tissue damage. MINCLE expressed by macrophages binds nuclear SAP130 released by necrotic cells to potentiate pro-inflammatory responses. However, the consequent inflammation can exacerbate pathogenesis of inflammatory diseases. Moreover, in a tumor microenvironment, MINCLE induces macrophage-induced immune suppression and cancer progression. Similarly, triggering of LOX-1 by oxidized LDL, amplifies pro-inflammatory response but promotes tumor immune escape and metastasis. Finally, CLEC12A that recognizes monosodium urate crystals formed during cell death, inhibits activating signals to prevent detrimental inflammation. Interestingly, CLEC12A also sustains type-I IFN response to finely tune immune responses in case of viral-induced collateral damage. Therefore, CLRs acting in concert as sensors of injury, could be used in a targeted way to treat numerous diseases such as allergies, obesity, tumors, and autoimmunity."	"Haematoxylon campechianum Extract Ameliorates Neuropathic Pain via Inhibition of NF-κB/TNF-α/NOX/iNOS Signalling Pathway in a Rat Model of Chronic Constriction Injury. : In this study, the phytochemical composition and the possible prophylactic effects of an aqueous ethanol extract of Haematoxylon campechianum flowers (HCF) on peripheral neuropathic pain in a chronic constriction injury (CCI) rat model are investigated. Rats with induced CCI were subjected to neuropathic pain behaviour tests and evaluated by chemical, thermal, and mechanical sensation tests and functional recovery of the brain stem and sciatic nerve at 7- and 14-day intervals. The effect of the extract on acute pain and inflammation is also investigated. The extract exerted both peripheral and central analgesic and anti-inflammatory properties in addition to antipyretic effects that are clear from targeting COX, LOX and PGE. It was found that CCI produced significant thermal and mechanical hyperalgesia, cold allodynia and deleterious structural changes in both sciatic nerve and brain stem. Treatments with HCF extract significantly improved cold and thermal withdrawal latency, mechanical sensibility and ameliorated deleterious changes of sciatic nerve and brain stem at different dose levels. The extract also ameliorated oxidative stress and inflammatory markers in brain stem and sciatic nerve. It suppressed the apoptotic marker, p53, and restored myelin sheath integrity. The effects of HCF extract were more potent than pregabalin. Fifteen secondary metabolites, mainly gallotannins and flavonoids, were characterized in the extract based on their retention times and MS/MS data. The identified phenolic constituents from the extract could be promising candidates to treat neuropathic pain due to their diverse biological activities, including antioxidant, anti-inflammatory and neuroprotective properties."	"Novel class of benzimidazole-thiazole hybrids: The privileged scaffolds of potent anti-inflammatory activity with dual inhibition of cyclooxygenase and 15-lipoxygenase enzymes. The present study includes design and synthesis of new molecular hybrids of 2-methylthiobenzimidazole linked to various anti-inflammatory pharmacophores through 2-aminothiazole linker, to investigate the effect of such molecular variation on cyclooxygenase (COX) and 15-lipoxygenase (15-LOX) enzymes inhibition as well as in vivo anti-inflammatory activity. The chemical structures of new hybrids were confirmed using different spectroscopic tools and elemental analyses. Benzimidazole-thiazole hybrids linked to acetyl moiety 13, phenyl thiosemicarbazone 14, 1,3-thiazolines 15a-c and 4-thiazolidinone 16 exhibited significant COX-2 inhibition (IC50 = 0.045-0.075 µM) with significant COX-2 selectivity indices (SI = 142-294). All hybrids revealed potent 15-LOX inhibitory activity (IC50 = 1.67-6.56 µM). Benzimidazole-thiazole hybrid 15b was the most potent dual COX-2 (IC50 = 0.045 µM, SI = 294) inhibitor approximate to celecoxib (COX-2; IC50 = 0.045 µM, SI = 327), with double inhibitory activity versus 15-LOX enzyme (IC50 = 1.67 µM) relative to quercetin (IC50 = 3.34 µM). Three hybrids (14, 15b &amp;16) were selected for in vivo screening using carrageenan-induced paw edema method. Benzimidazole-thiazole hybrid linked to 4-thiazolidinone 16 showed the maximum edema inhibition at both 3 h and 4 h intervals as well (~119% and 102% relative to indomethacin, respectively). The gastric ulcerogenic effect of benzimidazole-thiazole hybrid 16 was estimated compared with indomethacin showing superior gastrointestinal safety profile. In bases of molecular modeling; all new active hybrids were subjected to docking simulation into active sites of COX-2 and 15-LOX enzymes to study the binding mode of these novel potent dual COX-2/15-LOX inhibitors."	"Electronegative LDL Promotes Inflammation and Triglyceride Accumulation in Macrophages. Electronegative low-density lipoprotein (LDL) (LDL(-)), a modified LDL that is present in blood and exerts atherogenic effects on endothelial cells and monocytes. This study aimed to determine the action of LDL(-) on monocytes differentiated into macrophages. LDL(-) and in vitro-modified LDLs (oxidized, aggregated, and acetylated) were added to macrophages derived from THP1 monocytes over-expressing CD14 (THP1-CD14). Then, cytokine release, cell differentiation, lipid accumulation, and gene expression were measured by ELISA, flow cytometry, thin-layer chromatography, and real-time PCR, respectively. LDL(-) induced more cytokine release in THP1-CD14 macrophages than other modified LDLs. LDL(-) also promoted morphological changes ascribed to differentiated macrophages. The addition of high-density lipoprotein (HDL) and anti-TLR4 counteracted these effects. LDL(-) was highly internalized by macrophages, and it was the major inductor of intracellular lipid accumulation in triglyceride-enriched lipid droplets. In contrast to inflammation, the addition of anti-TLR4 had no effect on lipid accumulation, thus suggesting an uptake pathway alternative to TLR4. In this regard, LDL(-) upregulated the expression of the scavenger receptors CD36 and LOX-1, as well as several genes involved in triglyceride (TG) accumulation. The importance and novelty of the current study is that LDL(-), a physiologically modified LDL, exerted atherogenic effects in macrophages by promoting differentiation, inflammation, and triglyceride-enriched lipid droplets formation in THP1-CD14 macrophages, probably through different receptors."	"Hepatocyte-Specific Deletion of AMPKα1 Results in Worse Outcomes in Mice Subjected to Sepsis in a Sex-Specific Manner. Alterations in the energy homeostasis contribute to sepsis-mediated multiple organ failure. The liver plays a central role in metabolism and participates to the innate immune and inflammatory responses of sepsis. Several clinical and experimental studies have suggested that females are less susceptible to the adverse outcome of sepsis. However, underlying mechanisms of organ damage in sepsis remain largely undefined. AMP-activated protein kinase (AMPK) is an important regulator of mitochondrial quality control. The AMPK catalytic α1 isoform is abundantly expressed in the liver. Here, we determined the role of hepatocyte AMPKα1 in sepsis by using hepatocyte-specific AMPKα1 knockout mice (H-AMPKα1 KO) generated with Cre-recombinase expression under the control of the albumin promoter. Using a clinically relevant model of polymicrobial sepsis by cecal ligation and puncture (CLP), we observed that male H-AMPKα1 KO mice had higher plasma levels of tumor necrosis factor-α and interleukin-6 and exhibited a more severe liver and lung injury than male H-AMPKα1 WT mice, as evaluated by histology and neutrophil infiltration at 18 h after CLP. Plasma levels of interleukin-10 and the keratinocyte-derived chemokine were similarly elevated in both KO and WT male mice. At transmission electron microscopy analysis, male H-AMPKα1 KO mice exhibited higher liver mitochondrial damage, which was associated with a significant decrease in liver ATP levels when compared to WT mice at 18 h after sepsis. Mortality rate was significantly higher in the male H-AMPKα1 KO group (91%) when compared to WT mice (60%) at 7 days after CLP. Female H-AMPKα1 WT mice exhibited a similar degree of histological liver and lung injury, but significantly milder liver mitochondrial damage and higher autophagy when compared to male WT mice after CLP. Interestingly, H-AMPKα1 KO female mice had lower organ neutrophil infiltration, lower liver mitochondrial damage and lower levels of cytokines than WT female mice. There was no significant difference in survival rate between WT and KO mice in the female group. In conclusion, our study demonstrates that AMPKα1 is a crucial hepatoprotective enzyme during sepsis. Furthermore, our results suggest that AMPK-dependent liver metabolic functions may influence the susceptibility to multiple organ injury in a sex-dependent manner."	"Interleukin-1β Regulates Lipid Homeostasis in Human Glomerular Mesangial Cells. Recent studies have shown that hyperlipidemia is closely related to the progression of kidney disease and glomerulosclerosis has similar pathophysiological mechanisms with atherosclerosis. Atherosclerosis is essentially a chronic inflammatory process and various kidney diseases are characterized by a micro-inflammatory state. Hyperlipidemia levels are not parallel to the degree of glomerulosclerosis, inflammatory factors together with lipids may contribute to the pathogenesis of glomerulosclerosis. Therefore, it is key to clarify lipid-mediated renal injury through studying the mechanism by which inflammation affects cholesterol homeostasis at the cellular level. Intracellular lipid homeostasis involves both lipid uptake and excretion, therefore in this study, we aimed to explore whether interleukin-1β (IL-1β) promotes the uptake of oxidized low-density lipoprotein (Ox-LDL) to increase in intracellular lipid levels, and to clarify the effect of IL-1β on the expression of lectin-like oxidized LDL receptor 1 (LOX-1) and ATP-binding cassette transporter A1 (ABCA1), which may regulate cholesterol homeostasis in human mesangial cells (HMCs). The effect of IL-1β on uptake of Ox-LDL labeled with fluorescent Dil (Dil-Ox-LDL) by HMCs was observed using laser confocal microscopy. The effect of IL-1β on LOX-1 and ABCA1 expression in HMCs was detected by polymerase chain reaction and western blotting. Laser confocal microscopy revealed that HMCs took up Dil-Ox-LDL. Treatment of HMCs with 5 ng/ml IL-1β for 24 h significantly increased uptake of Dil-Ox-LDL. IL-1β also promoted LOX-1 mRNA and protein expression in a dose-dependent manner. Moreover, ABCA1 mRNA and protein expression were reduced by IL-1β in lipid-loaded HMCs in a dose-dependent manner. IL-1β promotes the uptake of Ox-LDL and expression of LOX-1 in HMCs, whereas it inhibits expression of ABCA1 under lipid load. The imbalance in intracellular cholesterol resulted by IL-1β can in turn transform HMCs into foam cells and aggravate glomerulosclerosis."	"Catalytic Production of Oxo-fatty Acids by Lipoxygenases Is Mediated by the Radical-Radical Dismutation between Fatty Acid Alkoxyl Radicals and Fatty Acid Peroxyl Radicals in Fatty Acid Assembly. Oxo-octadecadienoic acids (OxoODEs) act as peroxisome proliferator-activated receptor (PPAR) agonists biologically, and are known to be produced in the lipoxygenase/linoleate system. OxoODEs seem to originate from the linoleate alkoxyl radicals that are generated from (E/Z)-hydroperoxy octadecadienoic acids ((E/Z)-HpODEs) by a pseudoperoxidase reaction that is catalyzed by ferrous lipoxygenase. However, the mechanism underlying the conversion of alkoxyl radical into OxoODE remains obscure. In the present study, we confirmed that OxoODEs are produced in the lipoxygenase/linoleate system in an oxygen-dependent manner. Interestingly, we revealed a correlation between the (E/Z)-OxoODEs content and the (E/E)-HpODEs content in the system. (E/E)-HpODEs could have been derived from (E/E)-linoleate peroxyl radicals, which are generated by the reaction between a free linoleate allyl radical and an oxygen molecule. Notably, the ferrous lipoxygenase-linoleate allyl radical (LOx(Fe<sup>2+</sup>)-L·) complex, which is an intermediate in the lipoxygenase/linoleate system, tends to dissociate into LOx(Fe<sup>2+</sup>) and a linoleate allyl radical. Subsequently, LOx(Fe<sup>2+</sup>) converts (E/Z)-HpODEs to an (E/Z)-linoleate alkoxyl radical through one-electron reduction. Taken together, we propose that (E/Z)-OxoODEs and (E/E)-HpODEs are produced through radical-radical dismutation between (E/Z)-linoleate alkoxyl radical and (E/E)-linoleate peroxyl radical. Furthermore, the production of (E/Z)-OxoODEs and (E/E)-HpODEs was remarkably inhibited by a hydrophobic radical scavenger, 2,2,6,6-tetramethylpiperidine 1-oxyl (TEMPO). On the contrary, water-miscible radical scavengers, 4-hydroxyl-2,2,6,6-tetramethylpiperidine 1-oxyl (OH-TEMPO) and 3-carbamoyl-2,2,5,5-tetramethyl-3-pyrroline-N-oxyl (CmΔP) only modestly or sparingly inhibited the production of (E/Z)-OxoODEs and (E/E)-HpODEs. These facts indicate that the radical-radical dismutation between linoleate alkoxyl radical and linoleate peroxyl radical proceeds in the interior of micelles."	"Sequential i-GONAD: An Improved In Vivo Technique for CRISPR/Cas9-Based Genetic Manipulations in Mice. Improved genome-editing via oviductal nucleic acid delivery (i-GONAD) is a technique capable of inducing genomic changes in preimplantation embryos (zygotes) present within the oviduct of a pregnant female. i-GONAD involves intraoviductal injection of a solution containing genome-editing components via a glass micropipette under a dissecting microscope, followed by in vivo electroporation using tweezer-type electrodes. i-GONAD does not involve ex vivo handling of embryos (isolation of zygotes, microinjection or electroporation of zygotes, and egg transfer of the treated embryos to the oviducts of a recipient female), which is required for in vitro genome-editing of zygotes. i-GONAD enables the generation of indels, knock-in (KI) of ~ 1 kb sequence of interest, and large deletion at a target locus. i-GONAD is usually performed on Day 0.7 of pregnancy, which corresponds to the late zygote stage. During the initial development of this technique, we performed i-GONAD on Days 1.4-1.5 (corresponding to the 2-cell stage). Theoretically, this means that at least two GONAD steps (on Day 0.7 and Day 1.4-1.5) must be performed. If this is practically demonstrated, it provides additional options for various clustered regularly interspaced palindrome repeats (CRISPR)/Caspase 9 (Cas9)-based genetic manipulations. For example, it is usually difficult to induce two independent indels at the target sites, which are located very close to each other, by simultaneous transfection of two guide RNAs and Cas9 protein. However, the sequential induction of indels at a target site may be possible when repeated i-GONAD is performed on different days. Furthermore, simultaneous introduction of two mutated lox sites (to which Cre recombinase bind) for making a floxed allele is reported to be difficult, as it often causes deletion of a sequence between the two gRNA target sites. However, differential KI of lox sites may be possible when repeated i-GONAD is performed on different days. In this study, we performed proof-of-principle experiments to demonstrate the feasibility of the proposed approach called &quot;sequential i-GONAD (si-GONAD).&quot;"	"Lipid-Modified Aminoglycosides for mRNA Delivery to the Liver. Cationic lipid nanoparticles (LNPs) are widely used as carriers for delivery of nucleic acids. Most synthetic routes toward cationic lipids have derived from simple amine cores. Greater chemical diversity can be obtained through starting with natural products containing basic nitrogen atoms, which offers routes to more complex molecules. Natural building blocks are not extensively explored, such as aminoglycosides, which are both structurally and functionally interesting for developing new carriers for nucleic acid delivery. Herein, cationic lipid-modified aminoglycosides (CLAs) are explored as a family of vehicles for messenger RNA (mRNA) delivery. CLAs are synthesized from natural existing aminoglycosides coupling with alkyl epoxides and acrylates. The top hit (GT-EP10) is able to deliver Luc mRNA to C57BL/6 mice at a dose of 0.05 mg kg<sup>-1</sup> to achieve a 10<sup>7</sup> average luminescence intensity in the liver. The Lox-Stop-Lox tdTomato mouse model is used to further demonstrate that this efficient mRNA delivery system can be potentially used for gene editing. Successful delivery of human erythropoietin mRNA shows that CLA-based LNPs have promising opportunities for delivery of therapeutic nucleic acids in the future."	"Green leaf volatiles and jasmonic acid enhance susceptibility to anthracnose diseases caused by Colletotrichum graminicola in maize. Colletotrichum graminicola is a hemibiotrophic fungus that causes anthracnose leaf blight (ALB) and anthracnose stalk rot (ASR) in maize. Despite substantial economic losses caused by these diseases, the defence mechanisms against this pathogen remain poorly understood. Several hormones are suggested to aid in defence against C. graminicola, such as jasmonic acid (JA) and salicylic acid (SA), but supporting genetic evidence was not reported. Green leaf volatiles (GLVs) are a group of well-characterized volatiles that induce JA biosynthesis in maize and are known to function in defence against necrotrophic pathogens. Information regarding the role of GLVs and JA in interactions with (hemi)biotrophic pathogens remains limited. To functionally elucidate GLVs and JA in defence against a hemibiotrophic pathogen, we tested GLV- and JA-deficient mutants, lox10 and opr7 opr8, respectively, for resistance to ASR and ALB and profiled jasmonates and SA in their stalks and leaves throughout infection. Both mutants were resistant and generally displayed elevated levels of SA and low amounts of jasmonates, especially at early stages of infection. Pretreatment with GLVs restored susceptibility of lox10 mutants, but not opr7 opr8 mutants, which coincided with complete rescue of JA levels. Exogenous methyl jasmonate restored susceptibility in both mutants when applied before inoculation, whereas methyl salicylate did not induce further resistance in either of the mutants, but did induce mutant-like resistance in the wild type. Collectively, this study reveals that GLVs and JA contribute to maize susceptibility to C. graminicola due to suppression of SA-related defences."	"12/15-Lipoxygenase Deficiency Impairs Neutrophil Granulopoiesis and Lung Proinflammatory Responses to Aspergillus fumigatus. Development of invasive aspergillosis correlates with impairments in innate immunity. We and others have recently shown that arachidonic acid metabolism pathways, specifically the cyclooxygenase-2 (COX-2) and 5-lipoxygenase (5-LOX) pathways, participate in the induction of protective innate immune responses during invasive aspergillosis. Based on the high degree of cooperation and interconnection within the eicosanoid network, we hypothesized that 12/15-LOX is also active during invasive aspergillosis. We report in this study that mice deficient in the gene encoding 12/15-LOX (Alox15) are profoundly susceptible to invasive aspergillosis. Decreased survival correlated with increased fungal burden and evidence of increased lung damage. These defects were associated with very early (6 and 12 h) 12/15-LOX-dependent inflammatory cytokine (IL-1α, IL-1β, and TNF-α) and chemokine (CCL3 and CCL4) production. Neutrophil levels in the lung were blunted in the absence of 12/15-LOX, although neutrophil antifungal activity was intact. However, lower neutrophil levels in the lungs of Alox15<sup>-/-</sup> mice were not a result of impaired recruitment or survival; rather, Alox15<sup>-/-</sup> mice demonstrated impaired neutrophil granulopoiesis in the bone marrow intrinsically and after fungal exposure. Employing a lower inoculum to allow for better survival allowed the identification of 12/15-LOX-dependent induction of IL-17A and IL-22. Impaired IL-17A and IL-22 production correlated with reduced invariant NKT cell numbers as well as lower IL-23 levels. Together, these data indicate that 12/15-LOX is a critical player in induction of the earliest aspects of the innate immune response to Aspergillus fumigatus."	"Quantile-dependent expressivity of postprandial lipemia. &quot;Quantile-dependent expressivity&quot; describes an effect of the genotype that depends upon the level of the phenotype (e.g., whether a subject's triglycerides are high or low relative to its population distribution). Prior analyses suggest that the effect of a genetic risk score (GRS) on fasting plasma triglyceride levels increases with the percentile of the triglyceride distribution. Postprandial lipemia is well suited for testing quantile-dependent expressivity because it exposes each individual's genotype to substantial increases in their plasma triglyceride concentrations. Ninety-seven published papers were identified that plotted mean triglyceride response vs. time and genotype, which were converted into quantitative data. Separately, for each published graph, standard least-squares regression analysis was used to compare the genotype differences at time t (dependent variable) to average triglyceride concentrations at time t (independent variable) to assess whether the genetic effect size increased in association with higher triglyceride concentrations and whether the phenomenon could explain purported genetic interactions with sex, diet, disease, BMI, and drugs. Consistent with the phenomenon, genetic effect sizes increased (P≤0.05) with increasing triglyceride concentrations for polymorphisms associated with ABCA1, ANGPTL4, APOA1, APOA2, APOA4, APOA5, APOB, APOC3, APOE, CETP, FABP2, FATP6, GALNT2, GCKR, HL, IL1b, LEPR, LOX-1, LPL, MC4R, MTTP, NPY, SORT1, SULF2, TNFA, TCF7L2, and TM6SF2. The effect size for these polymorphisms showed a progressively increasing dose-response, with intermediate effect sizes at intermediate triglyceride concentrations. Quantile-dependent expressivity provided an alternative interpretation to their interactions with sex, drugs, disease, diet, and age, which have been traditionally ascribed to gene-environment interactions and genetic predictors of drug efficacy (i.e., personalized medicine). Quantile-dependent expressivity applies to the majority of genetic variants affecting postprandial triglycerides, which may arise because the impaired functionalities of these variants increase at higher triglyceride concentrations. Purported gene-drug interactions may be the manifestations of quantile-dependent expressivity, rather than genetic predictors of drug efficacy."	"Association Between LOX-1, LAL, and ACAT1 Gene Single Nucleotide Polymorphisms and Carotid Plaque in a Northern Chinese Population.  Objective:  Carotid atherosclerosis is one of the major risk factors for ischemic stroke. The presence of carotid plaque has been widely used to assess the risk of clinical atherosclerotic disease. Lectin-type oxidized LDL (low-density lipoprotein) receptor 1 (LOX-1), lysosomal acid lipase (LAL), and acyl-CoA:cholesterol acyltransferase 1 (ACAT1) are important for lipid accumulation in atherosclerosis. The objective of this study was to investigate the relationship between single nucleotide polymorphisms (SNPs) in the LOX-1, LAL, and ACAT1 genes and the presence of carotid plaque in a Northern Chinese population.  Methods:  Three polymorphisms in LOX-1 (rs1050286), LAL (rs11203042), and ACAT1 (rs11576517) were identified and genotyped in 215 patients with carotid plaque and 252 controls using the polymerase chain reaction with high-resolution melting analysis.  Results:  The LOX-1 (rs1050286) AA and LAL (rs11203042) TT genotypes were significantly associated with increased risk of carotid plaque, whereas a ACAT1 (rs11576517) TT genotype was shown to be protective against carotid plaque in a Northern Chinese population (p &lt; 0.05). Even after the Bonferroni correction, the LAL (rs11203042) TT genotype (odds ratio = 3.838, 95% confidence interval = 1.748-8.426, p &lt; 0.001) was still associated with an increased risk for carotid plaque.  Conclusions:  These results suggest that the LAL (rs11203042) TT genotype is associated with increased risk for carotid plaque in a Northern Chinese population, and that the LOX-1 (rs1050286) AA genotype shows a nonstatistically significant trend towards association. However, no association was found between the ACAT1 (rs11576517) polymorphisms and carotid plaque presence."	"Solid γ-Cyclodextrin Inclusion Compound with Gingerols, a Multi-Component Guest: Preparation, Properties and Application in Yogurt. Gingerols from the rhizome of fresh ginger (Zingiber officinale) were obtained by a simple extraction, followed by purification. The gingerols extract was composed of 6-gingerol (54%), 8-gingerol (20%), and 10-gingerol (26%). It was included into γ-cyclodextrin by classic co-dissolution procedures. Solid-state characterisation of γ-cyclodextrin·gingerols shows that this inclusion compound features 1:1 host-to-guest stoichiometry and that it is a microcrystalline powder with a crystalline cell that belongs to the tetragonal space group 4212, having the host molecules stacked in infinite channels where the gingerols are accommodated. In chimico studies with ABTS<sup>•+</sup> scavenging, NO<sup>•</sup> scavenging, β-carotene peroxidation, and 5-LOX inhibition show that γ-cyclodextrin is a suitable carrier for gingerols, because it does not alter their reactivity towards these substances. Yogurt was tested as a matrix for the incorporation of gingerols and γ-cyclodextrin·gingerols into foodstuff. The colour of the fortified yogurt suffered little alterations. In the case of yogurt with the inclusion compound, γ-cyclodextrin·gingerols, as fortificant, these alterations were not perceptible to the naked eye. Moreover, yogurt with γ-cyclodextrin·gingerols showed a good antioxidant activity, thus being suitable for use in nutraceutical applications."	"ATDC5 cells as a model of cartilage extracellular matrix neosynthesis, maturation and assembly. Fibrillar collagens and proteoglycans (PGs) are quantitatively the major constituents of extracellular matrices (ECM). They carry numerous crucial post-translational modifications (PTMs) that tune the resulting biomechanical properties of the corresponding tissues. The mechanisms determining these PTMs remain largely unknown, notably because available established cell lines do not recapitulate much of the complexity of the machineries involved. ATDC5 cells are a model of chondrogenesis widely used for decades, but it remains described mostly at histological and transcriptional levels. Here, we asked to what extent this model recapitulates the events of ECM synthesis and processing occurring in cartilage. Insulin-stimulated ATDC5 cells exhibit up- or down-regulation of more than one-hundred proteins, including a number of known participants in chondrogenesis and major markers thereof. However, they also lack several ECM components considered of significant, yet more subtle, function in cartilage. Still, they assemble the large PG aggrecan and type II collagen, both carrying most of their in vivo PTMs, into an ECM. Remarkably, collagen crosslinking is fully lysyl oxidase (LOX)-dependent. The ATDC5 model recapitulates critical aspects of the cartilage ECM-processing machinery and should be useful to decipher the mechanisms involved. Proteomics data are available via ProteomeXchange with identifier PXD014121. SIGNIFICANCE: The present work provides the first proteome characterization of the ATDC5 chondrogenesis model, which has been used for decades in the field of cartilage biology. The results demonstrate the up- and down-regulation of more than one hundred proteins. Overall, specific drawbacks of the model are pointed out, that will be important to take into consideration for future studies. However, major cartilage components are massively assembled into an extracellular matrix and carry most of their post-translational modifications occurring in cartilage tissue. Unlike other available established cell lines, the ATDC5 model recapitulates major aspects of cartilage biosynthesis and should be useful in investigating the mechanisms that regulate collagen maturation events."	"Myriocin and d-PDMP ameliorate atherosclerosis in ApoE-/- mice via reducing lipid uptake and vascular inflammation. Sphingolipids have been implicated in the etiology of atherosclerosis. The commonly used sphingolipid inhibitors, myriocin (a ceramide inhibitor) and d-PDMP (d-threo-1-phenyl-2-decanoylamino-3-morpholino-1-propanol, a glycosphingolipid inhibitor), have shown therapeutic potential but their efficacy and their underlying mechanisms remain unclear. Here, apolipoprotein E-deficient (apoE-/-) mice were fed a high-fat diet (HFD) and treated with a control, myriocin, d-PDMP, or atorvastatin for 12 weeks. We analyzed the effects of these drugs on the size and detailed composition of atherosclerotic plaques. Molecular biological approaches were used to explore how the inhibitors affect lipid metabolism and foam-cell formation. Treatment with myriocin or d-PDMP led to smaller and less vulnerable atherosclerotic lesions and was almost as effective as atorvastatin. Sphingolipid inhibitors down-regulated the expression of monocyte chemotactic protein 1 (MCP-1) and its receptor chemoattractant cytokine receptor 2 (CCR2), which play a key role in monocyte recruitment. They also decreased pro-inflammatory Ly-6chigh monocytes and influenced the uptake of modified LDL by down-regulating the expression of cluster of differentiation 36 (CD36) and lectin-like oxidized LDL (ox-LDL) receptor-1 (LOX-1). The inhibitors exhibited the advantage of maintaining normal glucose homeostasis compared with atorvastatin. These findings reveal for the first time that the modulation of sphingolipid synthesis can effectively alleviate atherosclerosis progression by preventing lipid uptake and reducing inflammatory responses in the arterial walls."	"Further insight into the dual COX-2 and 15-LOX anti-inflammatory activity of 1,3,4-thiadiazole-thiazolidinone hybrids: The contribution of the substituents at 5th positions is size dependent. Herin we report the design, synthesis, full characterization and biological investigation of new 15-LOX/COX dual inhibitors based on 1,3-thiazolidin-4-one (15-lipoxygenase pharmacophore) and 1,3,4-thiadiazole (COX pharmacophore) scaffolds. This series of molecular modifications is an extension of a previously reported series to further explore the structural activity relationship. Compounds 3a, 4e, 4n, 4q, 7 and 8 capable of inhibiting 15-LOX at (2.74, 4.2, 3.41, 10.21, 3.71 and 3.36 µM, respectively) and COX-2 at (0.32, 0.28, 0.28, 0.1, 0.28 and 0.27 µM, respectively). The results revealed that binding to 15-LOX and COX is sensitive to the bulkiness of the substituents at the 5 positions. 15-LOX bind better with small substituents, while COXs bind better with bulky substituents. Compounds 3a, 4r and 4q showed comparable in vivo anti-inflammatory activity to the reference drug (celecoxib). The ulcer liability test showed no sign of ulceration which ensures the safe gastric profile. Docking study was performed to explore the possible mode of interaction of the new compounds with the active site of human 15-LOX and COX-2. This study discloses some structural features for binding to 15-LOX and COX, thus pave the way to design anti-inflammatory agents with balanced dual inhibition of these enzymes."	"Extract of Danggui-Shaoyao-San ameliorates cognition deficits by regulating DHA metabolism in APP/PS1 mice. The traditional Chinese medicine formula Danggui-Shaoyao-San (DSS) has been reported to show therapeutic effect on alleviating the symptoms of Alzheimer's disease (AD). The present study aims to investigate the relation between DSS treatment of AD and DHA metabolism and evaluates its neuroprotective effect on cognitive in APP/PS1 mice. DSS (1.6, 3.2, 6.4 g/kg/day) or Aricept (3 mg/kg/day) was orally administered (i.g.) to APP/PS1 mice, and saline was orally administered to Wild-type (WT) male mice as control group. Then, the Morris water maze (MWM) test, Y-maze spontaneous alternation test, open filed test and fear conditioning test were conducted for evaluation of learning and memory abilities. The DHA content was assessed by HPLC-MS/MS. Physiological indices were determined, including triglyceride (TG), total cholesterol (TC), low-density lipoprotein cholesterol (LDL-C), high-density lipoprotein cholesterol (HDL-C), ROS level, activity of superoxide dismutase (SOD), glutathione (GSH), malondialdehyde (MDA), PEG2, TXB2 and LTB4. The expressions of COX-1, COX-2, cPLA2, iPLA2, 15-LOX, and were assessed by Western blot. APP/PS1 mice showed serious cognitive impairment in behavioral tests. However, treatment of DSS extract significantly ameliorated the cognitive deficits of APP/PS1 mice. Biochemical measurements showed the increases in TG, TC, LDL-c and the decrease in HDL-c in APP/PS1 mice compared with WT mice, and DSS extract significantly retarded these changes. Low content of DHA, low expression of iPLA2 and 15-LOX were observed both in hippocampus and cortex of APP/PS1 mice, while DSS extract significantly restored these changes. Additionally, the abnormal activity of SOD and ROS level, the decreased levels of MDA and GSH were observed in APP/PS1 mice, while DSS extract prominently lessened these changes. Moreover, DSS extract decreased the level of PEG2, TXB2 and LTB4 and also attenuated the expression of cPLA2, COX-1 and COX-2 in hippocampus as well as cortex of APP/PS1 mice. Based on these results, we suggest that DSS play a positive effective role in increasing DHA content by up-regulating iPLA2 and 15-LOX, resulting in ameliorating oxidative stress and inflammation and finally ameliorating cognition deficits in APP/PS1 mice."	"Role of Macrophage Colony-Stimulating Factor Receptor on the Proliferation and Survival of Microglia Following Systemic Nerve and Cuprizone-Induced Injuries. Microglia are the innate immune cells of the CNS and their proliferation, activation, and survival have previously been shown to be highly dependent on macrophage colony-stimulating factor receptor (CSF1R). Here we investigated the impact of the receptor in such processes using two different models of nerve injuries, namely hypoglossal axotomy and cuprizone-induced demyelination. Both models are associated with a robust microgliosis. The role of CSF1R was investigated using the gene deletion Cre/Lox system, which allows the conditional knock-out following tamoxifen administration. We found that after 5 weeks of cuprizone diet that CSF1R suppression caused a significant impairment of microglia function. A reduced microgliosis was detected in the corpus collosum of CSF1R knock-out mice compared to controls. In contrast to cuprizone model, the overall number of Iba1 cells was unchanged at all the times evaluated following hypoglossal axotomy in WT and cKO conditions. After nerve lesion, a tremendous proliferation was noticed in the ipsilateral hypoglossal nucleus to a similar level in both knock-out and wild-type groups. We also observed infiltration of bone-marrow derived cells specifically in CSF1R-deficient mice, these cells tend to compensate the CSF1R signaling pathway suppression in resident microglia. Taking together our results suggest a different role of CSF1R in microglia depending on the model. In the pathologic context of cuprizone-induced demyelination CSF1R signaling pathway is essential to trigger proliferation and survival of microglia, while this is not the case in a model of systemic nerve injury. M-CSF/CSF1R is consequently not the unique system involved in microgliosis following nerve damages."	"FaMYB9 is involved in the regulation of C6 volatile biosynthesis in strawberry. The large-scale untargeted proteomic and metabolomic studies were conducted in strawberry (Fragaria × ananassa) cv. Akihime fruit at five developmental stages. We found that some C6 volatiles highly contributed to the enrichment of volatiles at the red stage of strawberry fruit. We found that 12 genes involved in LOX pathway for volatile biosynthesis showed multiple patterns in protein abundance during fruit development and ripening, and 9 out of the 12 genes exhibited a significant increase in their relative expression levels at the red stage of fruit. We also found that the MYB9 gene (FaMYB9) expression level was positively correlated with the content of C6 volatiles (R = 0.989) and with the relative expression level and protein abundance of FaLOX5 at different strawberry fruit developmental stages (R = 0.954). The interaction between FaMYB9 and FaLOX5 was detected by yeast two-hybrid, co-immunoprecipitation (Co-IP), bimolecular fluorescence complementation (BiFC), and immunofluorescence (IF) analyses. Transient silencing of FaMYB9 delayed the fruit development and ripening, resulting in a significant decrease in the contents of C6 volatiles, while overexpression of FaMYB9 increased the fruit development and ripening and the contents of C6 volatiles in Akihime fruit. Therefore, FaMYB9 is positively involved in C6 volatile biosynthesis."	"Matrix metalloproteinase 9 is regulated by LOX-1 and erk1/2 pathway in dental peri-implantitis. Dental peri-implantitis, which can be caused by several different microbial factors, is characterized by inflammatory lesions of the surrounding hard and soft tissues of an oral implant. Matrix metalloproteinase 9 (MMP9) is thought to be involved in the pathogenesis of peri-implantitis. However, the regulatory mechanism of MMP9 in peri-implantitis has not been fully elucidated. In this study, we tried to evaluate the regulatory mechanism of MMP9 in peri-implantitis. We collected peri-implant crevicular fluid (PICF) from ten healthy implants and ten peri-implantitis patients and compared their expression level of MMP9. We also cultured macrophages from the peripheral blood of healthy volunteers infected by Porphyromonas gingivalis to reveal the regulatory mechanism of MMP9 in peri-implantitis. Western blot, immunofluorescence staining and quantitative polymerase chain reaction (RT-PCR) were used to better characterize the mechanism of MMP9. The expression of MMP9 was up-regulated in peri-implantitis patient PICF and P. gingivalis infected human macrophages. LOX-1, not dectin-1, was found to mediate MMP9 expression in human macrophages with P. gingivalis infection. Expression of Erk1/2 was responsible for infection-induced MMP9 expression. Finally, use of a broad-spectrum metalloproteinase inhibitor impaired LOX-1 expression in infected macrophages. Our results demonstrate that MMP9 is involved in dental peri-implantitis and is regulated by LOX-1 and Erk1/2. This LOX-1/MMP9 signaling pathway may represent a potential drug target for peri-implantitis."	"Redox lipid reprogramming commands susceptibility of macrophages and microglia to ferroptotic death. Ferroptotic death is the penalty for losing control over three processes-iron metabolism, lipid peroxidation and thiol regulation-that are common in the pro-inflammatory environment where professional phagocytes fulfill their functions and yet survive. We hypothesized that redox reprogramming of 15-lipoxygenase (15-LOX) during the generation of pro-ferroptotic signal 15-hydroperoxy-eicosa-tetra-enoyl-phosphatidylethanolamine (15-HpETE-PE) modulates ferroptotic endurance. Here, we have discovered that inducible nitric oxide synthase (iNOS)/NO<sup>•</sup>-enrichment of activated M1 (but not alternatively activated M2) macrophages/microglia modulates susceptibility to ferroptosis. Genetic or pharmacologic depletion/inactivation of iNOS confers sensitivity on M1 cells, whereas NO<sup>•</sup> donors empower resistance of M2 cells to ferroptosis. In vivo, M1 phagocytes, in comparison to M2 phagocytes, exert higher resistance to pharmacologically induced ferroptosis. This resistance is diminished in iNOS-deficient cells in the pro-inflammatory conditions of brain trauma or the tumour microenvironment. The nitroxygenation of eicosatetraenoyl (ETE)-PE intermediates and oxidatively truncated species by NO<sup>•</sup> donors and/or suppression of NO<sup>•</sup> production by iNOS inhibitors represent a novel redox mechanism of regulation of ferroptosis in pro-inflammatory conditions."	"Poor Concordance of Floxed Sequence Recombination in Single Neural Stem Cells: Implications for Cell Autonomous Studies. To manipulate target gene function in specific adult cell populations, tamoxifen (TAM)-dependent CreER<sup>T2</sup> is widely used to drive inducible, site-specific recombination of loxP flanked sequences. In studies of cell autonomous target gene function, it is common practice to combine these CreER<sup>T2</sup>-lox systems with a ubiquitously expressed stop-floxed fluorescent reporter gene to identify single cells supposedly undergoing target gene recombination. Here, we studied the reliability of using Cre-induced recombination of one gene to predict recombination in another gene at the single-cell level in adult hippocampal neural stem and progenitor cells (NSPCs). Using both probabilistic predictions in a generic experimental paradigm, as well as a mouse model with two separate stop-floxed reporters plus a Nestin promoter-driven CreER<sup>T2</sup>, we found that, in individual cells, recombination of one gene was a poor predictor of recombination in another. This poor concordance in floxed sequence recombination across genes suggests that use of stop-floxed reporters to investigate cell autonomous gene function may not be universally reliable and could lead to false conclusions."	"Esophageal Cancer Development: Crucial Clues Arising from the Extracellular Matrix. In the last years, the extracellular matrix (ECM) has been reported as playing a relevant role in esophageal cancer (EC) development, with this compartment being related to several aspects of EC genesis and progression. This sounds very interesting due to the complexity of this highly incident and lethal tumor, which takes the sixth position in mortality among all tumor types worldwide. The well-established increase in ECM stiffness, which is able to trigger mechanotransduction signaling, is capable of regulating several malignant behaviors by converting alteration in ECM mechanics into cytoplasmatic biochemical signals. In this sense, it has been shown that some molecules play a key role in these events, particularly the different collagen isoforms, as well as enzymes related to its turnover, such as lysyl oxidase (LOX) and matrix metalloproteinases (MMPs). In fact, MMPs are not only involved in ECM stiffness, but also in other events related to ECM homeostasis, which includes ECM remodeling. Therefore, the crucial role of distinct MMPs isoform has already been reported, especially MMP-2, -3, -7, and -9, along EC development, thus strongly associating these proteins with the control of important cellular events during tumor progression, particularly in the process of invasion during metastasis establishment. In addition, by distinct mechanisms, a vast diversity of glycoproteins and proteoglycans, such as laminin, fibronectin, tenascin C, galectin, dermatan sulfate, and hyaluronic acid exert remarkable effects in esophageal malignant cells due to the activation of oncogenic signaling pathways mainly involved in cytoskeleton alterations during adhesion and migration processes. Finally, the wide spectrum of interactions potentially mediated by ECM may represent a singular intervention scenario in esophageal carcinogenesis natural history and, due to the scarce knowledge on the cellular and molecular mechanisms involved in EC development, the growing body of evidence on ECM's role along esophageal carcinogenesis might provide a solid base to improve its management in the future."	"ZnO nanowire-based fluorometric enzymatic assays for lactate and cholesterol. A rapid fluorometric method is described for the determination of lactate and cholesterol by using ZnO nanowires (ZnO NWs). The assay is based on the detection of the hydrogen peroxide generated during the enzymatic reactions of the oxidation of lactate or cholesterol. Taking advantage of the electrostatic interactions between the enzymes and the ZnO NWs, two bioconjugates were prepared by mixing the nanomaterial and the enzymes, viz. lactate oxidase (LOx) or cholesterol oxidase (ChOx). The enzymatically generated hydrogen peroxide quenches the fluorescence of the ZnO NWs, which have emission peaks at 384 nm and at 520 nm under 330 nm photoexcitation. H2O2 quenches the 520 nm band more strongly. Response is linear up to 1.9 μM lactate concentration, and up to 1.1 μM cholesterol concentration. Relative standard deviation was found to be 5%. The detection limits for lactate and cholesterol are 0.54 and 0.24 μM, respectively. Graphical abstractSchematic representation of fluorescence assay based on ZnO nanowires photoluminiscence for lactate and colesterol detection."	"Different effects of Wnt/β-catenin activation and PTH activation in adult and aged male mice metaphyseal fracture healing. Fractures in older men are not uncommon and need to be healed as soon as possible to avoid related complications. Anti-osteoporotic drugs targeting Wnt/β-catenin and PTH (parathyroid hormone) to promote fracture healing have become an important direction in recent years. The study is to observe whether there is a difference in adult and aged situations by activating two signal paths. A single cortical hole with a diameter of 0.6 mm was made in the femoral metaphysis of Catnb<sup>lox(ex3)</sup> mice and wild-type mice. The fracture healing effects of CA (Wnt/β-catenin activation) and PTH (activated by PTH (1-34) injections) were assessed by X-ray and CT imaging on days 7, 14, and 21 after fracture. The mRNA levels of β-catenin, PTH1R(Parathyroid hormone 1 receptor), and RUNX2(Runt-related transcription factor 2) in the fracture defect area were detected using RT-PCR. Angiogenesis and osteoblasts were observed by immunohistochemistry and osteoclasts were observed by TRAP (Tartrate-resistant Acid Phosphatase). Adult CA mice and adult PTH mice showed slightly better fracture healing than adult wild-type (WT) mice, but there was no statistical difference. Aged CA mice showed better promotion of angiogenesis and osteoblasts and better fracture healing than aged PTH mice. The application of Wnt/β-catenin signaling pathway drugs for fracture healing in elderly patients may bring better early effects than PTH signaling pathway drugs, but the long-term effects need to be observed."	"Microbiological, antioxidant and lipoxygenase-1 inhibitory activities of fruit extracts of chosen Rosaceae family species. Extracts from the Rosaceae family fruits are rich in natural, biologically active polyphenols, but their antibacterial properties are still poorly understood. Therefore, we focused our research on their activity against uropathogenic Escherichia coli strains. This research also concerned the proof of their ability to reduce oxidative stress and modulate the activity of lipoxygenase-1 (LOX-1). It is well-known that plants represent a source of bioactive compounds whose antioxidant activity may be useful in protecting against oxidative damage in cells, which have been linked to the pathogenesis of many oxidative diseases. The study determined the biological activity of methanol (ME) and water (WE) extracts rich in polyphenols from the hawthorn (Crataegus monogyna Jacq.), dog rose (Rosa canina L.), quince (Cydonia oblonga Mill.), and Japanese quince (Chaenomeles speciosa (Sweet) Nakai). The antioxidant capacity was evaluated using 1,1diphenyl-2-picrylhydrazyl (DPPH▪) and 2,2'-azino-bis(3-ethylbenzothiazoline-6-sulfonic acid) diammonium salt (ABTS+▪) radical scavenging methods. The inhibition of liposome membrane oxidation was studied using the thiobarbituric acid reactive substances assay. Lipoxygenase-1 inhibitory activity was measured using the spectrophotometric method. Bacterial growth was determined by evaluating the number of colony forming units per milliliter (CFU/mL). Hydrophobicity was established with salt aggregation hydrophobicity test (SAT). Swimming and swarming motilities were evaluated using soft-agar plates. Production of curli fimbriae was estimated on CFA agar. The P fimbriae were detected using the hemagglutination of erythrocytes. Adhesion of bacteria to human uroepithelial cells was assessed. The amount of biofilm was determined spectrophotometrically. We showed that most of these extracts are effective antioxidants and free radical scavengers, possess reasonable potential anti-inflammatory activity, reduce the adhesion of E. coli to uroepithelial cells, and reduce the ability of these bacteria to form biofilm. The extracts examined, showing very promising biological properties, seem to be able to join the list of substances that can be used as dietary supplements aimed at preventing, for example, urinary tract infections, or as support of drug treatment in many diseases."	"Renal tubular arginase-2 participates in the formation of the corticomedullary urea gradient and attenuates kidney damage in ischemia-reperfusion injury in mice. Arginase 2 (ARG2) is a mitochondrial enzyme that catalyses hydrolysis of l-arginine into urea and l-ornithine. In the kidney, ARG2 is localized to the S3 segment of the proximal tubule. It has been shown that expression and activity of this enzyme are upregulated in a variety of renal pathologies, including ischemia-reperfusion (IR) injury. However, the (patho)physiological role of ARG2 in the renal tubule remains largely unknown. We addressed this question in mice with conditional knockout of Arg2 in renal tubular cells (Arg2<sup>lox/lox</sup> /Pax8-rtTA/LC1 or, cKO mice). We demonstrate that cKO mice exhibit impaired urea concentration and osmolality gradients along the corticomedullary axis. In a model of unilateral ischemia-reperfusion injury (UIRI) with an intact contralateral kidney, ischemia followed by 24 hours of reperfusion resulted in significantly more pronounced histological damage in ischemic kidneys from cKO mice compared to control and sham-operated mice. In parallel, UIRI-subjected cKO mice exhibited a broad range of renal functional abnormalities, including albuminuria and aminoaciduria. Fourteen days after UIRI, the cKO mice exhibited complex phenotype characterized by significantly lower body weight, increased plasma levels of early predictive markers of kidney disease progression (asymmetric dimethylarginine and symmetric dimethylarginine), impaired mitochondrial function in the ischemic kidney but no difference in kidney fibrosis as compared to control mice. Collectively, these results establish the role of ARG2 in the formation of corticomedullary urea and osmolality gradients and suggest that this enzyme attenuates kidney damage in ischemia-reperfusion injury."	"Transplacental arsenic exposure produced 5-methylcytosine methylation changes and aberrant microRNA expressions in livers of male fetal mice. Arsenic is a known human carcinogen. Early-life exposure to inorganic arsenic induces tumors in humans and in C3H mice. We hypothesized that arsenic exposure in utero may induce epigenetic changes at the level of DNA methylation and miRNA alterations that could lead to greater postnatal susceptibility to cancer. To test this hypothesis, pregnant C3H mice were given sodium arsenite at doses known to cause liver cancer (42.5 and 85 ppm in the drinking water) from gestation day 8-19, and the livers from male fetal mice were collected for analysis. The antibody against 5-methylcytosine was used to perform chromatin-immunoprecipitation coupled with sequencing (ChIP-Seq) to determine genome-wide methylation alterations. In utero arsenic exposure produced global DNA hypomethylation and an array of gene-specific DNA methylation changes, including hypomethylation of Cyclin D1 and hypermethylation of Tp53. Illumina Correlation Engine analysis revealed 260 methylation alterations that would affect 143 microRNAs. MicroRNA array further revealed 140 aberrantly expressed miRNAs out of the 718 miRNAs. The increased expression of miR-205, miR-203, miR-215, miR-34a, and decreased expression of miR-217 were confirmed by qPCR. Comparison of the methylation changes to those of microarray analyses indicates little if any correspondence between gene methylation and gene expression. The increased expression of Xist, Prrc2, Krit1, Nish, and decreased expression of Prss2, Spp1, Col1a2, and Lox were confirmed by qPCR. In summary, in utero arsenic exposure induced global alterations in DNA methylation and aberrant miRNA expression that might contribute to adult adverse outcomes including liver cancer."	"Novel quinolinone-pyrazoline hybrids: synthesis and evaluation of antioxidant and lipoxygenase inhibitory activity. The present project deals with the investigation of structure-activity relationship of several quinolinone-chalcone and quinolinone-pyrazoline hybrids, in an effort to discover promising antioxidant and anti-inflammatory agents. In order to accomplish this goal, four bioactive hybrid quinolinone-chalcone compounds (8a-8d) were synthesized via an aldol condensation reaction, which were then chemically modified, forming fifteen new pyrazoline analogues (9a-9o). All the synthesized analogues were in vitro evaluated in terms of their antioxidant and soybean lipoxygenase (LOX) inhibitory activity. Among all the pyrazoline derivatives, compounds 9b and 9m were found to possess the best combined activity, whereas 9b analogue exhibited the most potent LOX inhibitory activity, with IC50 value 10 μM. The in silico docking results revealed that the synthetic pyrazoline analogue 9b showed high AutoDock Vina score (- 10.3 kcal/mol), while all the tested derivatives presented allosteric interactions with the enzyme."	"Glycine betaine treatment alleviates loss of aroma-related esters in cold-stored 'Nanguo' pears by regulating the lipoxygenase pathway. Glycine betaine (GB) is known to alleviate chilling injury in many fruit species. Therefore, we studied how GB affects the biosynthesis of esters in 'Nanguo' pears. Based on the kinds of esters, total esters, and the quantity of the main esters, it was evident that aroma losses were alleviated by GB treatment. In addition, unsaturated fatty acids contents (linoleic and linolenic acid) and the activities of lipoxygenase (LOX) and alcohol acyltransferase (AAT) enzymes were also increased. Meanwhile, comparing with the control fruit, the genes directly involved in ester synthesis were up-regulated in the GB-treated fruit. In addition, an increase in the activities and gene expression of antioxidant enzymes was observed in the treated samples. Thus, GB treatment promotes the synthesis of esters by regulating the LOX pathway and increasing antioxidant capacity, thereby effectively improving the quality of esters in cold-stored fruit."	"Differential role of vacuolar (H<sup>+</sup>)-ATPase in the expression and activity of cyclooxygenase-2 in human monocytes. Monocytes are professional immune cells that produce abundant levels of pro-inflammatory eicosanoids including prostaglandins and leukotrienes during inflammation. Vacuolar (H<sup>+</sup>)-ATPase (V-ATPase) is critically involved in a variety of inflammatory processes including cytokine trafficking and lipid mediator biosynthesis. However, its role in eicosanoid biosynthetic pathways in monocytes remains elusive. Here, we present a differential role of V-ATPase in the expression and in the activity of cyclooxygenase (COX)-2 in human monocytes. Pharmacological targeting of V-ATPase increased the expression of COX-2 protein in lipopolysaccharide-stimulated primary monocytes, which was paralleled by enhanced phosphorylation of p38 MAPK and ERK-1/2, without impacting the NF-κB and SAPK/JNK pathways. Targeting of both p38 MAPK and ERK-1/2 pathways showed that the kinase pathways are crucial for COX-2 expression in human monocytes. Despite increased COX-2 protein levels, however, suppression of V-ATPase activity impaired the biosynthesis of COX- and also of 5-lipoxygenase (LOX)-derived lipid mediators in monocytes without affecting 12-/15-LOX products, assessed by a metabololipidomics approach using UPLC-MS-MS analysis. Our results indicate that changes in the intracellular pH may contribute to suppression of COX-2 and 5-LOX activities. We suggest that V-ATPase on one hand limits COX-2 protein levels via restricting p38 MAPK and ERK-1/2 activation, while on the other hand it governs the cellular activity of COX-2 through appropriate adjustment of the intracellular pH."	"Comparative lipidomic analysis of inflammatory mediators in the aqueous humor and tear fluid of humans and rabbits. Ocular inflammation is a key pathogenic factor in most blindness-causing visual disorders. It can manifest in the aqueous humor (AH) and tear fluid (TF) as alterations in polyunsaturated fatty acids (PUFAs) and their metabolites, oxylipins, lipid mediators, which are biosynthesized via enzymatic pathways involving lipoxygenase, cyclooxygenase or cytochrome P450 monooxygenase and specifically regulate inflammation and resolution pathways. This study aimed to establish the baseline patterns of PUFAs and oxylipins in AH and TF by their comprehensive lipidomic identification and profiling in humans in the absence of ocular inflammation and comparatively analyze these compounds in the eye liquids of rabbits, the species often employed in investigative ophthalmology. Ultra-performance liquid chromatography-tandem mass spectrometry (UPLC-MS/MS) was used for qualitative and quantitative characterization of lipid compounds in the analyzed samples. A total of 28 lipid compounds were identified, including phospholipid derivatives and PUFAs, as well as 22 oxylipins. Whereas the PUFAs included arachidonic, docosahexaenoic and eicosapentaenoic acids, the oxylipins were derived mainly from arachidonic, linoleic and α-linolenic acids. Remarkably, although the concentration of oxylipins in AH was lower compared to TF, these liquids showed pronounced similarity in their lipid profiles, which additionally exhibited noticeable interspecies concordance. The revealed correlations confirm the feasibility of rabbit models for investigating pathogenesis and trialing therapies of human eye disorders. The identified metabolite patterns suggest enzymatic mechanisms of oxylipin generation in AH and TF and might be used as a reference in ocular inflammation studies."	"Secreted Phospholipase A2-IIA Modulates Transdifferentiation of Cardiac Fibroblast through EGFR Transactivation: An Inflammation-Fibrosis Link. Secreted phospholipase A2-IIA (sPLA2-IIA) is a pro-inflammatory protein associated with cardiovascular disorders, whose functions and underlying mechanisms in cardiac remodelling are still under investigation. We herein study the role of sPLA2-IIA in cardiac fibroblast (CFs)-to-myofibroblast differentiation and fibrosis, two major features involved in cardiac remodelling, and also explore potential mechanisms involved. In a mice model of dilated cardiomyopathy (DCM) after autoimmune myocarditis, serum and cardiac sPLA2-IIA protein expression were found to be increased, together with elevated cardiac levels of the cross-linking enzyme lysyl oxidase (LOX) and reactive oxygen species (ROS) accumulation. Exogenous sPLA2-IIA treatment induced proliferation and differentiation of adult rat CFs. Molecular studies demonstrated that sPLA2-IIA promoted Src phosphorylation, shedding of the membrane-anchored heparin-binding EGF-like growth factor (HB-EGF) ectodomain and EGFR phosphorylation, which triggered phosphorylation of ERK, P70S6K and rS6. This was also accompanied by an up-regulated expression of the bone morphogenic protein (BMP)-1, LOX and collagen I. ROS accumulation were also found to be increased in sPLA2-IIA-treated CFs. The presence of inhibitors of the Src/ADAMs-dependent HB-EGF shedding/EGFR pathway abolished the CF phenotype induced by sPLA2-IIA. In conclusion, sPLA2-IIA may promote myofibroblast differentiation through its ability to modulate EGFR transactivation and signalling as key mechanisms that underlie its biological and pro-fibrotic effects."	"The Potential of Telomeric G-quadruplexes Containing Modified Oligoguanosine Overhangs in Activation of Bacterial Phagocytosis and Leukotriene Synthesis in Human Neutrophils. Human neutrophils are the first line of defense against bacterial and viral infections. They eliminate pathogens through phagocytosis, which activate the 5-lipoxygenase (5-LOX) pathway resulting in synthesis of leukotrienes. Using HPLC analysis, flow cytometry, and other biochemical methods, we studied the effect of synthetic oligodeoxyribonucleotides (ODNs) able to fold into G-quadruplex structures on the main functions of neutrophils. Designed ODNs contained four human telomere TTAGGG repeats (G4) including those with phosphorothioate oligoguanosines attached to the end(s) of G-quadruplex core. Just modified analogues of G4 was shown to more actively than parent ODN penetrate into cells, improve phagocytosis of Salmonella typhimurium bacteria, affect 5-LOX activation, the cytosol calcium ion level, and the oxidative status of neutrophils. As evident from CD and UV spectroscopy data, the presence of oligoguanosines flanking G4 sequence leads to dramatic changes in G-quadruplex topology. While G4 folds into a single antiparallel structure, two main folded forms have been identified in solutions of modified ODNs: antiparallel and dominant, more stable parallel. Thus, both the secondary structure of ODNs and their ability to penetrate into the cytoplasm of cells are important for the activation of neutrophil cellular effects. Our results offer new clues for understanding the role of G-quadruplex ligands in regulation of integral cellular processes and for creating the antimicrobial agents of a new generation."	"Inflammatory Dendritic Cells, Regulated by IL-4 Receptor Alpha Signaling, Control Replication, and Dissemination of Leishmania major in Mice. Leishmaniasis is a vector-borne disease caused by Leishmania parasites. Macrophages are considered the primary parasite host cell, but dendritic cells (DCs) play a critical role in initiating adaptive immunity and controlling Leishmania infection. Accordingly, our previous study in CD11c<sup>cre</sup>IL-4Rα<sup>-/lox</sup> mice, which have impaired IL-4 receptor alpha (IL-4Rα) expression on CD11c<sup>+</sup> cells including DCs, confirmed a protective role for IL-4/IL-13-responsive DCs in replication and dissemination of parasites during cutaneous leishmaniasis. However, it was unclear which DC subset/s was executing this function. To investigate this, we infected CD11c<sup>cre</sup>IL-4Rα<sup>-/lox</sup> and control mice with L. major GFP<sup>+</sup> parasites and identified subsets of infected DCs by flow cytometry. Three days after infection, CD11b<sup>+</sup> DCs and CD103<sup>+</sup> DCs were the main infected DC subsets in the footpad and draining lymph node, respectively and by 4 weeks post-infection, Ly6C<sup>+</sup> and Ly6C<sup>-</sup> CD11b<sup>+</sup> DCs were the main infected DC populations in both the lymph nodes and footpads. Interestingly, Ly6C<sup>+</sup>CD11b<sup>+</sup> inflammatory monocyte-derived DCs but not Ly6C<sup>-</sup>CD11b<sup>+</sup> DCs hosted parasites in the spleen. Importantly, intracellular parasitism was significantly higher in IL-4Rα-deficient DCs. In terms of DC effector function, we found no change in the expression of pattern-recognition receptors (TLR4 and TLR9) nor in expression of the co-stimulatory marker, CD80, but MHCII expression was lower in CD11c<sup>cre</sup>IL-4Rα<sup>-/lox</sup> mice at later time-points compared to the controls. Interestingly, in CD11c<sup>cre</sup>IL-4Rα<sup>-/lox</sup> mice, which have reduced Th1 responses, CD11b<sup>+</sup> DCs had impaired iNOS production, suggesting that DC IL-4Rα expression and NO production is important for controlling parasite numbers and preventing dissemination. Expression of the alternative activation marker arginase was unchanged in CD11b<sup>+</sup> DCs in CD11<sup>cre</sup>IL-4Rα<sup>-/lox</sup> mice compared to littermate controls, but RELM-α was upregulated, suggesting IL-4Rα-independent alternative activation. In summary, L. major parasites may use Ly6C<sup>+</sup>CD11b<sup>+</sup> inflammatory DCs derived from monocytes recruited to infection as &quot;Trojan horses&quot; to migrate to secondary lymphoid organs and peripheral sites, and DC IL-4Rα expression is important for controlling infection."	"Surgical management and long-term outcome of dogs with cervical spondylomyelopathy with an anchored intervertebral titanium device. To assess the short- and long-term outcome of an anchored intervertebral titanium device (C-LOX) for the treatment of 10 dogs with disc-associated cervical spondylomyelopathy (DACSM) and 1 dog with osseous-associated cervical spondylomyelopathy. Retrospective case series. Dogs were included if they were diagnosed with either DACSM or osseous-associated cervical spondylomyelopathy via myelography with or without advanced imaging and underwent surgical distraction and stabilisation of the affected intervertebral disc with a C-LOX implant. Assessment included short-term neurological outcome, radiography immediately and 6 weeks' postsurgery, owner questionnaire and veterinary clinical assessment. The mean follow-up time was 12 months. Improvement in neurological status was noted in 10 of 11 dogs. Screw loosening or subsidence occurred in five dogs. Revision surgery was performed in two dogs due to implant fracture (n = 1) and recurrence of spinal cord compression due to endplate subsidence around the implant (n = 1). Adjacent segment disease occurred in three dogs (30%) with DACSM at a mean of 11 months postsurgery. The use of the C-LOX implant for dogs with cervical spondylomyelopathy resulted in a high rate of initial neurological improvement; however, there is a moderate incidence of minor and major complications that is comparable to previously described distraction-stabilisation techniques."	"Clinical blood sampling for oxylipin analysis - effect of storage and pneumatic tube transport of blood on free and total oxylipin profile in human plasma and serum. Quantitative analysis of oxylipins in blood samples is of increasing interest in clinical studies. However, storage after sampling and transport of blood might induce artificial changes in the apparent oxylipin profile due to ex vivo formation/degradation by autoxidation or enzymatic activity. In the present study we investigated the stability of free (i.e. non-esterified) and total oxylipins in EDTA-plasma and serum generated under clinical conditions assessing delays in sample processing and automated transportation: Free cytochrome P450 monooxygenase and 5-lipoxygenase (LOX) formed oxylipins as well as autoxidation products were marginally affected by storage of whole blood up to 4 h at 4 °C, while total (i.e. the sum of free and esterified) levels of these oxylipins were stable up to 24 h and following transport. Cyclooxygenase (COX) products (TxB2, 12-HHT) and 12-LOX derived hydroxy-fatty acids were prone to storage and transport induced changes due to platelet activation. Total oxylipin patterns were generally more stable than the concentration of free oxylipins. In serum, coagulation induced higher levels of COX and 12-LOX products showing a high inter-individual variability. Overall, our results indicate that total EDTA-plasma oxylipins are the most stable blood oxylipin marker for clinical samples. Here, storage of blood before further processing is acceptable for a period up to 24 hours at 4 °C. However, levels of platelet derived oxylipins should be interpreted with caution regarding potential ex vivo formation."	"Antifungal, anti-inflammatory and antioxidant activity of bi-herbal mixtures with medicinal plants from Argentinean highlands. Argentinean medicinal plants such as Larrea divaricata Cav., Larrea cuneifolia Cav., Larrea nitida Cav., Zuccagnia punctata Cav. and Tetraglochin andina Ciald. are used alone and in combination in traditional medicine by inhabitants from northwestern Argentina to solve mycosis, vaginal infections, gastrointestinal, respiratory, and inflammatory processes. To assess the effect of interactions between hydroalcoholic extracts of these five species of medicinal plants against yeast strains isolated from vaginal infections, select the most active mixtures and evaluate anti-inflammatory and antioxidant activities. Synergy between the plant extracts was studied by using a broth microdilution assay by means of the checkerboard method against Saccharomyces cerevisiae, Candida albicans, and non albicans strains. The inhibitory effect on lipoxygenase and the antioxidant capacity in cell-free and cell systems were studied. The chemical profile was evaluated by qualitative and quantitative screening, whereas chemical markers were quantified by HPLC-DAD. A synergistic antifungal effect was observed in some binary combinations. Z. punctata/L. divaricata, Z. punctata/L. cuneifolia, and Z. punctata/L. nitida were the most active mixtures. Nordihydroguaiaretic acid and 2',4'-dihydroxychalcone, two antifungal compounds, present in these extracts, were identified and quantified by HPLC-DAD. Both single extracts and bi-herbal mixtures showed antioxidant activity (in cellular and in cell-free systems) and were active on pro-inflammatory enzymes (LOX). Our results indicated that the most active combinations of these species extracts could be useful in the treatment of vaginal infectious diseases caused by Saccharomyces cerevisiae and Candida spp. strains and in associated oxidative and inflammatory processes, supporting its traditional use. In addition, the results highlighted the phyto-therapeutic potential of total phytochemical compounds present in these medicinal plants."	"Previous Aphid Infestation Induces Different Expression Profiles of Genes Associated with Hormone-Dependent Responses in Near-Isogenic Winter Wheat Lines. Hormone-dependent responses in host plants induced by herbivore infestation have species-specific effects. This study focused on determining the relative expression profiles of the genes associated with hormone-dependent pathways in two near-isogenic wheat lines when attacked by cereal aphids. Infestation with Rhopalosiphum padi Linnaeus (Hemiptera: Aphididae) and/or Sitobion avenae Fabricius (Hemiptera: Aphididae) significantly upregulated the expression of marker genes related to the salicylic acid (SA)- and jasmonic acid (JA)-dependent pathways in the tested lines. In the resistant line 35-E4, previous infestation with R. padi significantly increased the relative expression of plant pathogenesis-related protein 1 at all sampling times but did not have a significant effect on the expression of the phenylalanine ammonia-lyase (PAL) gene. In addition, the expression levels of the lipoxygenase (LOX) and allene oxide synthase (AOS) genes immediately increased after the aphid attack. In susceptible line 35-A20, infestation with either R. padi or S. avenae led to significantly increased expression levels of the AOS and PAL genes. Moreover, sequential aphid infestation induced higher expression of AOS compared with a single-species aphid infestation, whereas the expression of the PAL gene was antagonistically affected by sequential aphid infestation. Overall, these results showed that aphid infestation induced SA- and JA-dependent responses in host plants. However, the expression profiles of these genes in resistant and susceptible host lines were significantly different."	"Pro-fibrotic effect of oxidized LDL in cardiac myofibroblasts. Inflammatory signals associated with cardiac diseases trigger trans-differentiation of cardiac fibroblasts to cardiac myofibroblasts. Cardiac myofibroblasts are the main cell type involved in the development of cardiac fibrosis, a diffuse and disproportionate accumulation of collagen in the myocardium. Although the role of the scavenger like-lectin receptor LOX-1 was previously investigated in cardiac fibroblasts and fibrosis, the involvement of the LOX-1 ligand -oxidized low-density lipoprotein (oxLDL)- on cardiac myofibroblast function still remains unexplored. In the present work, we investigated the effect of oxLDL/LOX-1 on fibrotic markers and cardiac myofibroblast function. Our in vitro results showed that oxLDL increased cardiac myofibroblast proliferation, triggered an increase in the synthesis of collagen type I and fibronectin containing extra domain A, and stimulated collagen type I secretion. oxLDL also decreased cardiac myofibroblast migration, collagen gel contraction and cell area, without modifying α-smooth muscle actin protein levels. These effects were dependent on LOX-1, because LOX-1 knockdown abolished oxLDL effects. Collectively these data showed that oxLDL has important modulatory effects on cardiac myofibroblast function."	"Role of Stomatal Conductance in Modifying the Dose Response of Stress-Volatile Emissions in Methyl Jasmonate Treated Leaves of Cucumber (Cucumis sativa). Treatment by volatile plant hormone methyl jasmonate (MeJA) leads to release of methanol and volatiles of lipoxygenase pathway (LOX volatiles) in a dose-dependent manner, but how the dose dependence is affected by stomatal openness is poorly known. We studied the rapid (0-60 min after treatment) response of stomatal conductance (Gs), net assimilation rate (A), and LOX and methanol emissions to varying MeJA concentrations (0.2-50 mM) in cucumber (Cucumis sativus) leaves with partly open stomata and in leaves with reduced Gs due to drought and darkness. Exposure to MeJA led to initial opening of stomata due to an osmotic shock, followed by MeJA concentration-dependent reduction in Gs, whereas A initially decreased, followed by recovery for lower MeJA concentrations and time-dependent decline for higher MeJA concentrations. Methanol and LOX emissions were elicited in a MeJA concentration-dependent manner, whereas the peak methanol emissions (15-20 min after MeJA application) preceded LOX emissions (20-60 min after application). Furthermore, peak methanol emissions occurred earlier in treatments with higher MeJA concentration, while the opposite was observed for LOX emissions. This difference reflected the circumstance where the rise of methanol release partly coincided with MeJA-dependent stomatal opening, while stronger stomatal closure at higher MeJA concentrations progressively delayed peak LOX emissions. We further observed that drought-dependent reduction in Gs ameliorated MeJA effects on foliage physiological characteristics, underscoring that MeJA primarily penetrates through the stomata. However, despite reduced Gs, dark pretreatment amplified stress-volatile release upon MeJA treatment, suggesting that increased leaf oxidative status due to sudden illumination can potentiate the MeJA response. Taken together, these results collectively demonstrate that the MeJA dose response of volatile emission is controlled by stomata that alter MeJA uptake and volatile release kinetics and by leaf oxidative status in a complex manner."	"MicroRNA-193b-3p alleviates focal cerebral ischemia and reperfusion-induced injury in rats by inhibiting 5-lipoxygenase expression. Ischemic stroke has become one of the main causes of death worldwide. MicroRNAs (miRNAs) have been implicated in cerebral ischemia-reperfusion (I/R) injury and could serve as therapeutic targets. 5-Lipoxygenase (5-LOX) is a key enzyme in the biosynthesis of leukotrienes and has been implicated in inflammatory central nerve system disorders. The objective of this study was to explore the neuroprotective effects of miR-193b-3p against focal cerebral I/R injury in rats by regulating 5-LOX expression. Adult male Sprague-Dawley rats were subjected to transient middle cerebral artery occlusion and reperfusion injury. The level of miR-193b-3p expression was observed in the rat cortical peri-infarct region after focal cerebral I/R injury. Bioinformatics analysis was used to predict the binding sites of miR-193b-3p, and a dual-luciferase reporter gene assay was applied to verify the potential interaction between 5-LOX mRNA and miR-193b-3p. Then, rats were injected with a miR-193b-3p agomir (modified and enhanced mimic) or antagomir (modified and enhanced inhibitor) in the right lateral ventricle of the brain. Neurological deficit scores, infarct volumes, neuron damage and 5-LOX enzymatic activity and expression were measured. In an in vitro experiment, cultured PC12 cells were exposed to oxygen-glucose deprivation and reperfusion (OGD/R). OGD/R-induced cells were treated with a miR-193b-3p mimic or inhibitor and 5-LOX siRNA. Cell viability, lactate dehydrogenase release, apoptosis rate and 5-LOX expression were evaluated. The level of miR-193b-3p expression was increased in the cortical peri-infarct region of rats with cerebral focal I/R injury. The results of the dual-luciferase reporter gene assay showed that a miR-193b-3p binding site was located in the 3' untranslated region (3'UTR) of 5-LOX mRNA. Neurological deficit scores, infarct volumes and neuronal injury were alleviated by miR-193b-3p agomir treatment but aggravated by miR-193b-3p antagomir. Furthermore, leukotriene B4, cysteinyl-leukotrienes and 5-LOX expression in the cortical peri-infarct region of rats with focal cerebral I/R injury were also downregulated by miR-193b-3p agomir treatment but upregulated by miR-193b-3p antagomir. In PC12 cells, miR-193b-3p mimic significantly decreased OGD/R-induced cell death and reduced lactate dehydrogenase release and 5-LOX expression. In contrast, miR-193b-3p inhibitor exacerbated OGD/R-induced injury in PC12 cells. Additionally, the in vitro effects of miR-193b-3p inhibitor on OGD/R-induced cell injury were partially reversed by 5-LOX siRNA treatment. MiR-193b-3p has a potentially neuroprotective effect on focal cerebral I/R-induced injury by inhibiting 5-LOX expression."	"Synthesis and biological evaluation of pyrazolone analogues as potential anti-inflammatory agents targeting cyclooxygenases and 5-lipoxygenase. New pyrazolone derivatives structurally related to celecoxib and FPL 62064 were synthesized and biologically evaluated for their inhibitory activity against cyclooxygenases (COXs) and 5-lipoxygenase (5-LOX) and their selectivity indices were calculated. The results showed that compounds 3f, 3h, 3l, and 3p have an excellent COX-2 selectivity index. Moreover, they showed potent 5-LOX inhibitory activity relative to celecoxib and zileuton, as positive controls. These promising candidates were further investigated for anti-inflammatory activity using the carrageenan-induced rat paw edema method and ulcerogenic liability. The results showed no ulceration, which implies their gastric safety profile. Moreover, these compounds were evaluated for prostaglandin (PGE2) production in rat serum. Molecular docking in the COX-2 and 5-LOX active sites was performed to rationalize their anti-inflammatory activities. Strong binding interactions and effective docking scores were identified. The results indicated that these derivatives are good leads for dual-acting COX-2/5-LOX inhibitors to be used as potent and safe anti-inflammatory agents."	"Sec-O-glucosylhamaudol suppressed inflammatory reaction induced by LPS in RAW264.7 cells through inhibition of NF-κB and MAPKs signaling. As a major bioactive compound from the Saposhnikovia divaricata (Turcz.) Schischk, sec-O-glucosylhamaudol (SOG), has been reported to have anti-nociceptive activity and high 5-lipoxygenase (5-LOX) activity. Nevertheless, the mechanism of the potential anti-inflammatory effects of SOG is unclear. The anti-inflammatory impacts of SOG in RAW 264.7 cell lines stimulated by LPS were explored in the present study. It was found that SOG dose-dependently reduced the emergence of inflammation cytokines, such as IL-6 and TNF-α in Raw264.7 murine macrophages stimulated by LPS. Real-time PCR assay demonstrated the SOG dose-dependently inhibited transcription of these cytokines as well. In addition, it was also found that NF-κB activation and MAPKs phosphorylation including p38, JNK and ERK1/2 induced by LPS were suppressed by SOG. Due to its anti-inflammatory activity, our results suggest that SOG might have therapeutic effects on inflammatory disease, such as acute lung injury or rheumatoid arthritis."	"[Research progress of 12-HETE in the inflammation and oxidative stress]. 12-HETE is a metabolite of arachidonic acid (AA). AA is normally present in membrane phospholipids. The exposure to different stimuli can trigger the release of AA through the activity of phospholipase A2 (PLA2) by cells. An important metabolic pathway which utilizes AA as its substrate is 12-Lipoxygenase (12-LOX), resulting in the formation of 12-HETE. 12-HETE plays an important role in many diseases such as cancer, diabetes, hypertension, and participates in the pathogenesis of inflammation and oxidative stress and other pathological processes.Current research shows that it participates in metamorphism and exudation in the process of inflammation. This review is aimed at summarizing its role in inflammation and oxidative stress, with improved understanding of 12-HETE."	"Biological Evaluation of Naproxen-Dehydrodipeptide Conjugates with Self-Hydrogelation Capacity as Dual LOX/COX Inhibitors. The use of peptide-drug conjugates is emerging as a powerful strategy for targeted drug delivery. Previously, we have found that peptides conjugated to a non-steroidal anti-inflammatory drug (NSAID), more specifically naproxen-dehydrodipeptide conjugates, readily form nanostructured fibrilar supramolecular hydrogels. These hydrogels were revealed as efficacious nano-carriers for drug delivery applications. Moreover, the incorporation of superparamagnetic iron oxide nanoparticles (SPIONs) rendered the hydrogels responsive to external magnetic fields, undergoing gel-to-solution phase transition upon remote magnetic excitation. Thus, magnetic dehydrodipeptide-based hydrogels may find interesting applications as responsive Magnetic Resonance Imaging (MRI) contrast agents and for magnetic hyperthermia-triggered drug-release applications. Supramolecular hydrogels where the hydrogelator molecule is endowed with intrinsic pharmacological properties can potentially fulfill a dual function in drug delivery systems as (passive) nanocariers for incorporated drugs and as active drugs themselves. In this present study, we investigated the pharmacological activities of a panel of naproxen-dehydrodipeptide conjugates, previously studied for their hydrogelation ability and as nanocarriers for drug-delivery applications. A focused library of dehydrodipeptides, containing N-terminal canonical amino acids (Phe, Tyr, Trp, Ala, Asp, Lys, Met) N-capped with naproxen and linked to a C-terminal dehydroaminoacid (ΔPhe, ΔAbu), were evaluated for their anti-inflammatory and anti-cancer activities, as well as for their cytotoxicity to non-cancer cells, using a variety of enzymatic and cellular assays. All compounds except one were able to significantly inhibit lipoxygenase (LOX) enzyme at a similar level to naproxen. One of the compounds 4 was able to inhibit the cyclooxygenase-2 (COX-2) to a greater extent than naproxen, without inhibiting cyclooxygenase-1 (COX-1), and therefore is a potential lead in the search for selective COX-2 inhibitors. This hydrogelator is a potential candidate for dual COX/LOX inhibition as an optimised strategy for treating inflammatory conditions."	"Optimizing Nervous System-Specific Gene Targeting with Cre Driver Lines: Prevalence of Germline Recombination and Influencing Factors. The Cre-loxP system is invaluable for spatial and temporal control of gene knockout, knockin, and reporter expression in the mouse nervous system. However, we report varying probabilities of unexpected germline recombination in distinct Cre driver lines designed for nervous system-specific recombination. Selective maternal or paternal germline recombination is showcased with sample Cre lines. Collated data reveal germline recombination in over half of 64 commonly used Cre driver lines, in most cases with a parental sex bias related to Cre expression in sperm or oocytes. Slight differences among Cre driver lines utilizing common transcriptional control elements affect germline recombination rates. Specific target loci demonstrated differential recombination; thus, reporters are not reliable proxies for another locus of interest. Similar principles apply to other recombinase systems and other genetically targeted organisms. We hereby draw attention to the prevalence of germline recombination and provide guidelines to inform future research for the neuroscience and broader molecular genetics communities."	"Tuning melatonin receptor subtype selectivity in oxadiazolone-based analogues: Discovery of QR2 ligands and NRF2 activators with neurogenic properties. New multi-target indole and naphthalene derivatives containing the oxadiazolone scaffold as a bioisostere of the melatonin acetamido group have been developed. The novel compounds were characterized at melatonin receptors MT1R and MT2R, quinone reductase 2 (QR2), lipoxygenase-5 (LOX-5), and monoamine oxidases (MAO-A and MAO-B), and also as radical scavengers. We found that selectivity within the oxadiazolone series can be modulated by modifying the side chain functionality and co-planarity with the indole or naphthalene ring. In phenotypic assays, several oxadiazolone-based derivatives induced signalling mediated by the transcription factor NRF2 and promoted the maturation of neural stem-cells into a neuronal phenotype. Activation of NRF2 could be due to the binding of indole derivatives to KEAP1, as deduced from surface plasmon resonance (SPR) experiments. Molecular modelling studies using the crystal structures of QR2 and the KEAP1 Kelch-domain, as well as the recently described X-ray free-electron laser (XFEL) structures of chimeric MT1R and MT2R, provided a rationale for the experimental data and afforded valuable insights for future drug design endeavours."	"Effect of soaking conditions on the formation of lipid derived free radicals in soymilk. Lipid derived free radical in soymilks were studied by combining 5,5-dimethyl-pyrroline-l-oxide (DMPO) spin trap, chloroform-methanol extraction and electron spin resonance (ESR) spectroscopy. Five lipid derived free radical adducts: DMPO-X, DMPO-L, DMPO-R, DMPO-LOO, and DMPO-RO were presented in soymilks. The total amounts of spins increased as the soaking temperature increased from 4 °C to 50 °C and the soaking pH increased from 3 to 9 and in paralleled with the diffusion of soybean exudates to soaking water. Prolonged soaking of soybean at 50 °C resulted in a higher signal intensity of DMPO-R than that of DMPO-LOO. Soybean lipoxygenases (LOXs) were responsible for the formation of lipid derived free radicals in soymilks. Soybean exudates affected the total amounts of lipid radicals in linoleic acid (LA) - LOX model system. The relative signal intensities of DMPO-R and DMPO-LOO were depended on the contents of soybean exudates in the system."	"Limited utility of qPCR-based detection of tumor-specific circulating mRNAs in whole blood from clear cell renal cell carcinoma patients. RNA sequencing data is providing abundant information about the levels of dysregulation of genes in various tumors. These data, as well as data based on older microarray technologies have enabled the identification of many genes which are upregulated in clear cell renal cell carcinoma (ccRCC) compared to matched normal tissue. Here we use RNA sequencing data in order to construct a panel of highly overexpressed genes in ccRCC so as to evaluate their RNA levels in whole blood and determine any diagnostic potential of these levels for renal cell carcinoma patients. A bioinformatics analysis with Python was performed using TCGA, GEO and other databases to identify genes which are upregulated in ccRCC while being absent in the blood of healthy individuals. Quantitative Real Time PCR (RT-qPCR) was subsequently used to measure the levels of candidate genes in whole blood (PAX gene) of 16 ccRCC patients versus 11 healthy individuals. PCR results were processed in qBase and GraphPadPrism and statistics was done with Mann-Whitney U test. While most analyzed genes were either undetectable or did not show any dysregulated expression, two genes, CDK18 and CCND1, were paradoxically downregulated in the blood of ccRCC patients compared to healthy controls. Furthermore, LOX showed a tendency towards upregulation in metastatic ccRCC samples compared to non-metastatic. This analysis illustrates the difficulty of detecting tumor regulated genes in blood and the possible influence of interference from expression in blood cells even for genes conditionally absent in normal blood. Testing in plasma samples indicated that tumor specific mRNAs were not detectable. While CDK18, CCND1 and LOX mRNAs might carry biomarker potential, this would require validation in an independent, larger patient cohort."	"ERK1/2-PPARγ pathway is involved in Chlamydia pneumonia-induced human umbilical vein endothelial cell apoptosis through increased LOX-1 expression. Chlamydia pneumonia (C.pn) is a common respiratory pathogen that is involved in human cardiovascular diseases and promotes the development of atherosclerosis in hyperlipidemic animal models. C.pn reportedly up-regulated lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) in endothelial cells. Recently, the anti-atherosclerotic activity of peroxisome proliferator-activated receptor γ (PPARγ) has been documented. In the present study, we investigated the effect of C.pn on LOX-1 expression in human umbilical vein endothelial cells (HUVECs) and identified the involvement of the PPARγ signaling pathway therein. The results showed that C.pn increased the expression of LOX-1 in HUVECs in a dose- and time-dependent manner. C.pn-induced up-regulation of LOX-1 was mediated by ERK1/2, whereas p38 MAPK and JNK had no effect on this process. C.pn induced apoptosis, inhibited cell proliferation, and decreased the expression PPARγ in HUVECs. Additionally, LOX-1 activity and cell injury caused by C.pn through activation of ERK1/2 was completely inhibited by rosiglitazone, a PPARγ agonist. In conclusion, we inferred that activation of PPARγ in HUVECs suppressed C.pn-induced LOX-1 expression and cell damage by inhibiting ERK1/2 signaling."	"Rational engineering of Aerococcus viridansl-lactate oxidase for the mediator modification to achieve quasi-direct electron transfer type lactate sensor. The l-lactate oxidase (LOx) based lactate sensors are widely used for clinical diagnostics, sports medicine, and food quality control. However, dissolved oxygen interference and electroactive interferent effects are inherent issues of current lactate sensors. In this paper, a quasi-direct electron transfer (quasi-DET) type lactate sensor was developed using rationally engineered Aerococcus viridans LOx (AvLOx) modified with amine-reactive phenazine ethosulfate (PES). Since the modification of wild type AvLOx by PES did not result quasi-DET, engineered AvLOx with additional Lys residue was designed. The additional Lys residue was introduced by substituting residue locating on the surface of AvLOx, and within 20 Å of the isoalloxazine ring of FMN. Among several constructed mutants, Ala96Leu/Asn212Lys double mutant showed the highest dye-mediated dehydrogenase activity with negligible oxidase activity, showing quasi-DET properties after PES modification, when the enzyme was immobilized on screen printed carbon electrode. The constructed electrode did not show oxygen interference in cyclic voltammetric analysis and distinct catalytic current with 20 mM l-lactate. The sensor performance of a chronoamperometric l-lactate sensor employing PES modified Ala96Leu/Asn212Lys AvLOx, marked with linear range between 0 and 1 mM, with sensitivity of 13 μA/mM∙cm<sup>2</sup>, and a limit of detection of 25 μM for l-lactate. By applying -200 mV vs. Ag/AgCl, l-lactate could be monitored with negligible interference from 170 μM ascorbic acid, 1.3 mM acetaminophen, 1.4 mM uric acid or 20 mM glucose. These results indicated that a quasi-DET type lactate sensor was developed that did not suffer from the interference of oxygen and representative electroactive ingredient compounds."	"Immunological Outcomes Mediated Upon Binding of Heat Shock Proteins to Scavenger Receptors SCARF1 and LOX-1, and Endocytosis by Mononuclear Phagocytes. Heat shock proteins (HSP) are a highly abundant class of molecular chaperones that can be released into the extracellular milieu and influence the immune response. HSP release can occur when cells undergo necrosis and exude their contents. However, HSPs are also secreted from intact cells, either in free form or in lipid vesicles including exosomes to react with receptors on adjacent cells. Target cells are able recognize extracellular HSPs through cell surface receptors. These include scavenger receptors (SR) such as class E member oxidized low-density lipoprotein receptor-1 (LOX-1, aka OLR1, Clec8A, and SR-E1) and scavenger receptor class F member 1 (SCARF1, aka SREC1). Both receptors are expressed by dendritic cells (DC) and macrophages. These receptors can bind HSPs coupled to client binding proteins and deliver the chaperone substrate to the pathways of antigen processing in cells. SR are able to facilitate the delivery of client proteins to the proteasome, leading to antigen processing and presentation, and stimulation of adaptive immunity. HSPs may also may be involved in innate immunity through activation of inflammatory signaling pathways in a mechanism dependent on SR and toll-like receptor 4 (TLR4) on DC and macrophages. We will discuss the pathways by which HSPs can facilitate uptake of protein antigens and the receptors that regulate the ensuing immune response."	"Protective effect of D-pinitol on the experimental spinal cord injury in rats. Spinal cord injury (SCI) is the major cause of the spinal damage affecting motor and sensory function. Thus, the present study was conducted to investigate the effect of D-pinitol (PN) on spinal cord injury in rats. The PN showed to recover motor function near to normal via modulating oxidative stress, inflammatory response and cellular apoptosis in SCI rats. PN also causes modulation of Bcl2 family proteins and reduces the level of NF-ĸB and LOX-1 in dose dependent manner. The PN causes reduction of NLRP3, TNF-α and iNOS, with increase in caspase-1 together with modulation of MAPK mediators. It has been suggested that, D-pinitol exert protective action against SCI via inhibition of apoptosis, inflammation and oxidative stress, via modulating Bcl-2 genes and MAPK pathway."	"Comparative proteomic analysis reveals that exogenous 6-benzyladenine (6-BA) improves the defense system activity of waterlogged summer maize. Exogenous 6-benzyladenine (6-BA) could improve leaf defense system activity. In order to better understand the regulation mechanism of exogenous 6-benzyladenine (6-BA) on waterlogged summer maize, three treatments including control (CK), waterlogging at the third leaf stage for 6 days (V3-6), and application of 100 mg dm<sup>- 3</sup> 6-BA after waterlogging for 6 days (V3-6-B), were employed using summer maize hybrid DengHai 605 (DH605) as the experimental material. We used a labeling liquid chromatography-based quantitative proteomics approach with tandem mass tags to determine the changes in leaf protein abundance level at the tasseling stage. Waterlogging significantly hindered plant growth and decreased the activities of SOD, POD and CAT. In addition, the activity of LOX was significantly increased after waterlogging. As a result, the content of MDA and H2O2 was significantly increased which incurred serious damages on cell membrane and cellular metabolism of summer maize. And, the leaf emergence rate, plant height and grain yield were significantly decreased by waterlogging. However, application of 6-BA effectively mitigated these adverse effects induced by waterlogging. Compared with V3-6, SOD, POD and CAT activity of V3-6-B were increased by 6.9, 12.4, and 18.5%, LOX were decreased by 13.6%. As a consequence, the contents of MDA and H2O2 in V3-6-B were decreased by 22.1 and 17.2%, respectively, compared to that of V3-6. In addition, the leaf emergence rate, plant height and grain yield were significantly increased by application of 6-BA. Based on proteomics profiling, the proteins involved in protein metabolism, ROS scavenging and fatty acid metabolism were significantly regulated by 6-BA, which suggested that application of 6-BA exaggerated the defensive response of summer maize at proteomic level. These results demonstrated that 6-BA had contrastive effects on waterlogged summer maize. By regulating key proteins related to ROS scavenging and fatty acid metabolism, 6-BA effectively increased the defense system activity of waterlogged summer maize, then balanced the protein metabolism and improved the plant physiological traits and grain yield."	"Autophagy inhibition blunts PDGFRA adipose progenitors' cell-autonomous fibrogenic response to high-fat diet. Adipose tissue (AT) fibrosis in obesity compromises adipocyte functions and responses to intervention-induced weight loss. It is driven by AT progenitors with dual fibro/adipogenic potential, but pro-fibrogenic pathways activated in obesity remain to be deciphered. To investigate the role of macroautophagy/autophagy in AT fibrogenesis, we used Pdgfra-Cre<sup>Ert2</sup> transgenic mice to create conditional deletion of Atg7 alleles in AT progenitor cells (atg7 cKO) and examined sex-dependent, depot-specific AT remodeling in high-fat diet (HFD)-fed mice. Mice with atg7 cKO had markedly decreased extracellular matrix (ECM) gene expression in visceral, subcutaneous, and epicardial adipose depots compared to Atg7<sup>lox/lox</sup> littermates. ECM gene program regulation by autophagy inhibition occurred independently of changes in the mass of fat tissues or adipocyte numbers of specific depots, and cultured preadipocytes treated with pharmacological or siRNA-mediated autophagy disruptors could mimic these effects. We found that autophagy inhibition promotes global cell-autonomous remodeling of the paracrine TGF-BMP family landscape, whereas ECM gene modulation was independent of the autophagic regulation of GTF2IRD1. The progenitor-specific mouse model of ATG7 inhibition confirms the requirement of autophagy for white/beige adipocyte turnover, and combined to in vitro experiments, reveal progenitor autophagy dependence for AT fibrogenic response to HFD, through the paracrine remodeling of TGF-BMP factors balance.Abbreviations: CQ: chloroquine; ECM: extracellular matrix; EpiAT: epididymal adipose tissue; GTF2IRD1: general transcription factor II I repeat domain-containing 1; HFD: high-fat diet; KO: knockout; OvAT: ovarian adipose tissue; PDGFR: platelet derived growth factor receptor; ScAT: subcutaneous adipose tissue; TGF-BMP: transforming growth factor-bone morphogenic protein."	"Natural flavone tricetin suppresses oxidized LDL-induced endothelial inflammation mediated by Egr-1. Atherosclerosis is the primary cause of many cardiovascular diseases. Endothelial dysfunction is recognized as a crucial early event in atherosclerotic lesion formation. Tricetin is a natural flavonoid derivative that has demonstrated a wide range of therapeutic properties. This study investigates the protective effect of tricetin in cultured endothelial cells. The results of our study show that tricetin suppressed oxidized low-density lipoprotein (ox-LDL)-induced expression of pro-inflammatory monocyte chemotactic protein-1 (MCP-1) and interleukin-1β (IL-1β), as well as the generation of reactive oxygen species (ROS). Furthermore, our findings indicate that tricetin suppressed ox-LDL-induced expression of intercellular adhesion molecule-1 (ICAM-1) and vascular cell adhesion molecule-1 (VCAM-1). At the cellular level, the presence of tricetin inhibited ox-LDL-induced monocyte adhesion to endothelial cells. Mechanistically, we showed that tricetin suppressed the induction of the endothelial receptor for ox-LDL, lectin-like ox-LDL receptor-1 (LOX-1), and the transcriptional factor early growth response 1 (Egr-1) as well as extracellular signal-regulated protein kinase 1 and 2 (ERK1/2) activation. These data demonstrate that tricetin is a natural protective agent in vascular endothelial cells, indicating that tricetin could have a potentially beneficial effect in the modulation of atherosclerosis."	"Laminin-binding integrins are essential for the maintenance of functional mammary secretory epithelium in lactation. Integrin dimers α3/β1, α6/β1 and α6/β4 are the mammary epithelial cell receptors for laminins, which are major components of the mammary basement membrane. The roles of specific basement membrane components and their integrin receptors in the regulation of functional gland development have not been analyzed in detail. To investigate the functions of laminin-binding integrins, we obtained mutant mice with mammary luminal cell-specific deficiencies of the α3 and α6 integrin chains generated using the Cre-Lox approach. During pregnancy, mutant mice displayed decreased luminal progenitor activity and retarded lobulo-alveolar development. Mammary glands appeared functional at the onset of lactation in mutant mice; however, myoepithelial cell morphology was markedly altered, suggesting cellular compensation mechanisms involving cytoskeleton reorganization. Notably, lactation was not sustained in mutant females, and the glands underwent precocious involution. Inactivation of the p53 gene rescued the growth defects but did not restore lactogenesis in mutant mice. These results suggest that the p53 pathway is involved in the control of mammary cell proliferation and survival downstream of laminin-binding integrins, and underline an essential role of cell interactions with laminin for lactogenic differentiation."	"Design, synthesis and biological evaluation of novel pyrazole sulfonamide derivatives as dual COX-2/5-LOX inhibitors. The current therapeutic demand focuses more on the discovery of safer NSAIDs rather than exploring more potent alternatives. The dual COX-2/5-LOX inhibition is a promising strategy for designing compounds with an enhanced efficacy, reduced side-effects and a broader anti-inflammatory spectrum in comparison to classical NSAIDs. In the present study, a hybridization strategy was adopted to combine the binding features of the non-selective COX inhibitor &quot;sulindac&quot; and the selective COX-2 inhibitor &quot;celecoxib&quot; which show 5-LOX inhibitory activity with that of licofelone and a celecoxib pyridone analogue which show dual COX-2/5-LOX inhibitory activity to design new series of pyrazole sulfonamide derivatives which, by design, should possess dual COX-2/5-LOX inhibitory activity. All the newly synthesized compounds were initially tested for their potential analgesic activity, then candidates that showed potential analgesic activity, were selected for the subsequent anti-inflammatory activity evaluation, as well as, ulcerogenicity testing. Moreover, in vitro assessment of their COX-1, COX-2 and 5-LOX inhibitory activities were performed. The benzothiophen-2-yl pyrazole carboxylic acid derivative 5b showed the most potent analgesic and anti-inflammatory activities surpassing that of celecoxib and indomethacin. It showed potent COX-1, COX-2 and 5-LOX inhibitory activity with IC50 of 5.40, 0.01 and 1.78 μM, respectively, showing a selectivity index of 344.56 that was much better than the used reference standards and its parent compounds, confirming its selectivity towards COX-2 over COX-1. The prodrug ester derivatives 6c and 6d showed equipotent activity to their parent compound 5b with no gastric ulcerogenicity. Molecular docking simulations confirmed that the newly synthesized compounds possess the structural features required for binding to the target enzymes COX-2 and 5-LOX."	"Sensing Tissue Damage by Myeloid C-Type Lectin Receptors. After both sterile and infectious insults, damage is inflicted on tissues leading to accidental or programmed cell death. In addition, events of programmed cell death also take place under homeostatic conditions, such as in embryo development or in the turnover of hematopoietic cells. Mammalian tissues are seeded with myeloid immune cells, which harbor a plethora of receptors that allow the detection of cell death, modulating immune responses. The myeloid C-type lectin receptors (CLRs) are one of the most prominent families of receptors involved in tailoring immunity after sensing dead cells. In this chapter, we will cover a diversity of signals arising from different forms of cell death and how they are recognized by myeloid CLRs. We will also explore how myeloid cells develop their sentinel function, exploring how some of these CLRs identify cell death and the type of responses triggered thereof. In particular, we will focus on DNGR-1 (CLEC9A), Mincle (CLEC4E), CLL-1 (CLEC12A), LOX-1 (OLR1), CD301 (CLEC10A) and DEC-205 (LY75) as paradigmatic death-sensing CLRs expressed by myeloid cells. The molecular processes triggered after cell death recognition by myeloid CLRs contribute to the regulation of immune responses in pathologies associated with tissue damage, such as infection, autoimmunity and cancer. A better understanding of these processes may help to improve the current approaches for therapeutic intervention."	"Effects of Nigella sativa on endothelial dysfunction in diabetes mellitus: A review. Endothelial dysfunction is involved in lesion generation by the promotion of both early and late mechanism(s) of atherosclerosis such as adhesion molecules up-regulation, increased chemokine secretion and leukocyte adherence, increased cell permeability, enhanced low-density lipoprotein oxidation, cytokine elaboration, platelet activation and vascular smooth muscle cell migration, and proliferation. Nigella sativa is from the Ranunculaceae family which is used in some countries for various medicinal purposes. Nigella sativa seed has been widely used in traditional medicine for the treatment of diabetes. This review article summarized the therapeutic effects of Nigella sativa on endothelial dysfunction. Databases such as PubMed, Web of Science, Google Scholar, Scopus, and Iran Medex were considered. The search terms were &quot; Nigella sativa &quot; or &quot;endothelium&quot; and &quot; Diabetes&quot;,&quot; endothelial dysfunction &quot;, &quot; Thymoquinone &quot; and &quot; anti-inflammatory effect &quot;. The current review shows that Nigella sativa and Thymoquinone have a protective effect on endothelial dysfunction induced by diabetes. This is done by several mechanisms such as reduction of inflammatory and apoptotic markers, improving hyperglycemia, hyperlipidemia and antioxidant function, inhibiting platelet aggregation, and regulating eNOS, VCAM-1 and LOX-1 genes expression that involve in the endothelial dysfunction. Thymoquinone also reduces expression and secretion of some cytokines such as MCP-1, interleukin-1β, TNF-α, NF-κB, and Cox-2 that result in anti-inflammation effect. Thymoquinone, the main phenolic terpene found in Nigella sativa, has several important properties such as antidiabetic, anti-inflammatory, and antioxidant activity. Therefore, Nigella sativa can improve endothelial dysfunction."	"Inhibition of USP14 suppresses the formation of foam cell by promoting CD36 degradation. Atherosclerosis is regarded as a chronic progressive inflammatory disease and is a basic pathophysiological process in coronary artery disease which is life threatening in clinic. The formation of foam cell plays a key role in the pathogenesis of atherosclerosis. OxLDL is a significant factor in progression of coronary artery disease. Our studies have demonstrated that USP14 promotes cancer development and mediates progression of cardiac hypertrophy and LPS-induced inflammation. However, the underlying mechanism of USP14 is unknown. In this study, we found that the inhibition of USP14 significantly suppressed the oxLDL uptake, subsequently decreased the foam cell formation. Surprisingly, USP14 has an effect on the expression of CD36 but not SR-A, ABCA1, Lox-1, ABCG1 and SR-Bl. Furthermore, USP14 stabilizes CD36 protein via cleaving the ubiquitin chain on CD36. Blocking CD36 activation using antibody-dependent blocking assay remarkably attenuated the function of USP14 on the formation of foam cell. In summary, our results suggested that the inhibition of USP14 decreases foam cell formation by down-regulating CD36-mediated lipid uptake and provides a potential therapeutic target for atherosclerosis."	"Glycerol-Induced Powdery Mildew Resistance in Wheat by Regulating Plant Fatty Acid Metabolism, Plant Hormones Cross-Talk, and Pathogenesis-Related Genes. Our previous study indicated that glycerol application induced resistance to powdery mildew (Bgt) in wheat by regulating two important signal molecules, glycerol-3-phosphate (G3P) and oleic acid (OA18:1). Transcriptome analysis of wheat leaves treated by glycerol and inoculated with Bgt was performed to identify the activated immune response pathways. We identified a set of differentially expressed transcripts (e.g., TaGLI1, TaACT1, and TaSSI2) involved in glycerol and fatty acid metabolism that were upregulated in response to Bgt infection and might contribute to G3P and OA18:1 accumulation. Gene Ontology (GO) enrichment analysis revealed GO terms induced by glycerol, such as response to jasmonic acid (JA), defense response to bacterium, lipid oxidation, and growth. In addition, glycerol application induced genes (e.g., LOX, AOS, and OPRs) involved in the metabolism pathway of linolenic and alpha-linolenic acid, which are precursor molecules of JA biosynthesis. Glycerol induced JA and salicylic acid (SA) levels, while glycerol reduced the auxin (IAA) level in wheat. Glycerol treatment also induced pathogenesis related (PR) genes, including PR-1, PR-3, PR-10, callose synthase, PRMS, RPM1, peroxidase, HSP70, HSP90, etc. These results indicate that glycerol treatment regulates fatty acid metabolism and hormones cross-talk and induces the expression of PR genes that together contribute to Bgt resistance in wheat."	"Striatal Projection Neurons Require Huntingtin for Synaptic Connectivity and Survival. Huntington's disease (HD) is caused by an autosomal dominant polyglutamine expansion mutation of Huntingtin (HTT). HD patients suffer from progressive motor, cognitive, and psychiatric impairments, along with significant degeneration of the striatal projection neurons (SPNs) of the striatum. HD is widely accepted to be caused by a toxic gain-of-function of mutant HTT. However, whether loss of HTT function, because of dominant-negative effects of the mutant protein, plays a role in HD and whether HTT is required for SPN health and function are not known. Here, we delete Htt from specific subpopulations of SPNs using the Cre-Lox system and find that SPNs require HTT for motor regulation, synaptic development, cell health, and survival during aging. Our results suggest that loss of HTT function in SPNs could play a critical role in HD pathogenesis."	"Grape seed proanthocyanidins suppressed macrophage foam cell formation by miRNA-9 via targeting ACAT1 in THP-1 cells. Abnormal lipid metabolism in macrophages leads to atherosclerosis (AS). Excessive LDL cholesterol uptake by macrophages in the aortic endothelium leads to formation of foam cells. Previous studies suggested that proanthocyanidins effectively suppress this process, while the in-depth mechanism has not been elucidated. In mononuclear THP-1 cells, we found that the oligomeric fraction of proanthocyanidins was more effective in suppressing foam cell formation and 25 μg ml-1 for 48 h were the optimum conditions. Under these model conditions, we investigated gene expression and for the first time reported expression of regulatory microRNA (miRNA). It was found that the proanthocyanidins restrained macrophage foaming mainly by lowering the expression levels of cholesterol influx-related receptors CD36 and SR-A, and promoting the expression of cholesterol efflux-related receptor ABCA1. Further, it was latest revealed that proanthocyanidins could notably inhibit the expression of ACAT1, a key gene for intracellular cholesterol esterification. Further investigation was performed on the expression of regulatory miRNAs (miR-134 for CD36, miR-134, miR-155 for SR-A, miR-155, let-7g for LOX-1, miR-9 for ACAT1, miR-27a, miR-19b, miR-10b and miR-33a for ABCA1). The relative expression of miR-9, a miRNA targeting ACAT1, was decreased after the treatment of proanthocyanidins. It was most likely that proanthocyanidins suppressed the expression of ACAT1 via up-regulating the expression of miR-9, thus lessening the intracellular lipid accumulation and eventually inhibiting macrophage foam cell formation. This assumption was further verified by use of miR-9 mimic and its inhibitor."	"Lipoxygenase Pathways in Diatoms: Occurrence and Correlation with Grazer Toxicity in Four Benthic Species. Oxygenated derivatives of fatty acids, collectively called oxylipins, are a highly diverse family of lipoxygenase (LOX) products well described in planktonic diatoms. Here we report the first investigation of these molecules in four benthic diatoms, Cylindrotheca closterium, Nanofrustulum shiloi, Cocconeis scutellum, and Diploneis sp. isolated from the leaves of the seagrass Posidonia oceanica from the Gulf of Naples. Analysis by hyphenated MS techniques revealed that C. closterium, N. shiloi, and C. scutellum produce several polyunsaturated aldehydes (PUAs) and linear oxygenated fatty acids (LOFAs) related to the products of LOX pathways in planktonic species. Diploneis sp. also produced other unidentified fatty acid derivatives that are not related to LOX metabolism. The levels and composition of oxylipins in the benthic species match their negative effects on the reproductive success in the sea urchin Paracentrotus lividus. In agreement with this correlation, the most toxic species N. shiloi revealed the same LOX pathways of Skeletonema marinoi and Thalassiosira rotula, two bloom-forming planktonic diatoms that affect copepod reproduction. Overall, our data highlight for the first time a major role of oxylipins, namely LOFAs, as info-chemicals for benthic diatoms, and open new perspectives in the study of the structuring of benthic communities."	"Enzymatic biofuel cells based on protective hydrophobic carbon paste electrodes: towards epidermal bioenergy harvesting in the acidic sweat environment. The operation of wearable epidermal biofuel cells is prone to rapid irreversible deactivation effects under dynamic sweat pH changes from neutral to acidic. We demonstrate that the encapsulation of lactate-oxidase (LOx) within a hydrophobic protective carbon-paste anode imparts unusually high stability during dynamically changing pH fluctuations and allows the BFC to continue harvesting the lactate bioenergy even after long exposures to acidic conditions. The unique power-recovery ability of the carbon-paste BFC after its failure in harsh pH is attributed to the protective action of the non-polar paste environment."	"Association between impaired cutaneous microvascular endothelial function and lectin-like oxidized low-density lipoprotein receptor-1 in patients with coronary slow flow. Although increasing studies indicate coronary slow flow (CSF) is a systemic microvascular disorder, whether there is impaired cutaneous microvascular endothelial function in CSF patients remains unclear. This study was designed to test the hypothesis that the cutaneous microvascular endothelial function of CSF patients is impaired and correlates with lectin-like oxidized low-density lipoprotein receptor-1(LOX-1). 39 patients with CSF and 45 controls with normal coronary flow were enrolled. Velocity of coronary flow was quantitatively identified by thrombolysis in myocardial infarction frame count (TFC) method. LSCI system was used to assess subjects' cutaneous blood flow at rest and during PORH. Serum soluble LOX-1(sLOX-1) level was measured in all study subjects. PORH-induced vasodilation was significantly reduced in CSF group in comparison with control group (0.26 ± 0.10 vs 0.35 ± 0.07 APU/mmHg, P &lt; 0.001) and negatively correlated with the mean TFC for three coronary arteries (r = -0.385, P = 0.016). Serum sLOX-1 level in CSF group was significantly increased (582.93 ± 74.89 vs 483.64 ± 51.38 pg/ml, P &lt; 0.001) and positively correlated with mean TFC(r = 0.467, P = 0.003).PORH response amplitudes had a significantly negative relationship with serum sLOX-1 level in CSF patients (r = -0.588, P &lt; 0.001). These data suggest that cutaneous microvascular endothelial function is impaired in patients with CSF, which is closely associated with increased LOX-1 expression."	"Salicornolides A-C from Gracilaria salicornia attenuate pro-inflammatory 5-lipoxygense: Prospective natural anti-inflammatory leads. Three macrolides bearing the carbon framework of oxabicyclo[21.3.1]heptacosa-ene-diones (A and B) and oxabicyclo[19.3.1]pentacosa-ene-dione (C) were isolated and characterised from the organic extract of the intertidal red seaweed Gracilaria salicornia (family Gracilariaceae), which were named as salicornolides A-C. These natural macrolides were conformationally pre-organised ring structure providing diverse functionalities, and their potential bioactive properties led to the development of pharmacophores with anti-inflammatory properties. The 21-membered pyran-enclosed salicornolide B displayed greater cyclooxygenase-2 (IC50 COX-2 1.13 mM) inhibitory activity than those exhibited by the 21-membered aryl salicornolide A and 19-membered salicornolide C (IC50 COX-2-1.2 mM). The attenuating potential of the studied compounds against pro-inflammatory enzyme, 5-lipoxygenase (IC50 LOX &lt; 1.5 mM) was significantly greater than that displayed by the non-steroidal anti-inflammatory ibuprofen (IC50 4.5 mM), whereas the selectivity indices exhibited by salicornolides against cyclooxygenase-2 was significantly higher (1.18-1.41, P &lt; 0.05) when compared to that of ibuprofen (SI 0.43) attributing the greater selectivity profile of the former towards inducible pro-inflammatory mediators than the latter. The minimal binding energy of salicornolide B (-9.64 kcal mol<sup>-1</sup>), a greater number of hydrogen-bonds and lesser inhibitory constant (Ki 85.15 nM) might be responsible for effective binding towards 5-lipoxygenase, and that could attribute its greater anti-inflammation potential than those displayed by other compounds. The putative biosynthetic cascade initiated by malonate-acyl carrier protein unambiguously confirmed the structural attributions of the titled macrocyclic lactones. The undescribed salicornolides A-C from seaweed Gracilaria salicornia attenuating pro-inflammatory 5-lipoxygense might be considered as prospective natural anti-inflammatory leads for pharmaceutical applications."	"Cell-specific and athero-protective roles for RIPK3 in a murine model of atherosclerosis. Receptor-interacting protein kinase 3 (RIPK3) was recently implicated in promoting atherosclerosis progression through a proposed role in macrophage necroptosis. However, RIPK3 has been connected to numerous other cellular pathways, which raises questions about its actual role in atherosclerosis. Furthermore, RIPK3 is expressed in a multitude of cell types, suggesting that it may be physiologically relevant to more than just macrophages in atherosclerosis. In this study, Ripk3 was deleted in macrophages, endothelial cells, vascular smooth muscle cells or globally on the Apoe<sup>-/-</sup> background using Cre-lox technology. To induce atherosclerosis progression, male and female mice were fed a Western diet for three months before tissue collection and analysis. Surprisingly, necroptosis markers were nearly undetectable in atherosclerotic aortas. Furthermore, en face lesion area was increased in macrophage- and endothelial-specific deletions of Ripk3 in the descending and abdominal regions of the aorta. Analysis of bone-marrow-derived macrophages and cultured endothelial cells revealed that Ripk3 deletion promotes expression of monocyte chemoattractant protein 1 (MCP-1) and E-selectin in these cell types, respectively. Western blot analysis showed upregulation of MCP-1 in aortas with Ripk3-deficient macrophages. Altogether, these data suggest that RIPK3 in macrophages and endothelial cells protects against atherosclerosis through a mechanism that likely does not involve necroptosis. This protection may be due to RIPK3-mediated suppression of pro-inflammatory MCP-1 expression in macrophages and E-selectin expression in endothelial cells. These findings suggest a novel and unexpected cell-type specific and athero-protective function for RIPK3.This article has an associated First Person interview with the first author of the paper."	"An overview of lipoxygenase inhibitors with approach of in vivo studies. Lipoxygenases (LOXs) are enzymes which found in organisms that catalyze the peroxidation of polyunsaturated fatty acids (Arachidonic acid, Linoleic acid). The key role of the mentioned enzymes and their metabolites in formation of sensitivities, inflammations, many of cancers (prostate, breast, etc), obesity, diabetes and atherosclerosis had been demonstrated. This review aimed to focus on research findings introducing proved LOXs (5/12/15-LOX) inhibitors, which have been involved in in vivo studies, and discuss on their sources, chemical structures and medicinal applications. By this subject selection, we would introduce the possible LOXs inhibitors (5/12/15-LOX) with special physiological and metabolic levels and open a vision in molecular target selection for the readers."	"Inhibition of LOX-1 prevents inflammation and photoreceptor cell death in retinal degeneration. To explore the expression and role of lectin-like oxidized low-density lipoprotein receptor 1 (LOX-1) in retinal degeneration. The retinal degeneration of BALB/c mice was induced by light exposure. BV2 cells were activated by LPS stimulation. Retinas or BV2 cells were pretreated with LOX-1 neutralizing antibody or Polyinosinic acid (PolyI) (the inhibitor of LOX-1) before light damage (LD) or LPS stimulation. LOX-1, TNF-α, IL-1β, CCL2 and NF-κB expression were detected in retinas or BV2 cells by real-time RT-PCR, western blot or ELISA. Histological analyses of retinas were performed. Photoreceptor cell death was assessed by TUNEL assay in retinas or by flow cytometry in 661W cells cultured in microglia-conditioned medium. Photoreceptor cell death and elevated expression of LOX-1 were induced by LD in retinas of BALB/c mice. LOX-1 neutralizing antibody or PolyI pretreatment significantly reduced the elevated expression of LOX-1, TNF-α, IL-1β, CCL2 and p-NF-κB caused by LD in retinas. Inhibition of LOX-1 by LOX-1 neutralizing antibody or PolyI significantly reduced photoreceptor cell death induced by LD in retinas. Elevated levels of TNF-α, IL-1β and CCL2 caused by LPS were down-regulated by inhibition of LOX-1 in BV2 cells. Inhibition of LOX-1 reduces microglial neurotoxicity on photoreceptors. LOX-1 expression is increased in light induced retinal degeneration, what's more, inhibition of LOX-1 prevents inflammation and photoreceptor cell death in retinal degeneration and reduces microglial neurotoxicity on photoreceptors. Therefore, LOX-1 can be used as a potential therapeutic target for such retinal degeneration diseases."	"Poria cocos polysaccharides attenuated ox-LDL-induced inflammation and oxidative stress via ERK activated Nrf2/HO-1 signaling pathway and inhibited foam cell formation in VSMCs. Oxidative stress, inflammation, and foam cell formation in vascular smooth muscle cells (VSMCs) are considered to play crucial roles in the pathogenesis of atherosclerosis. Poria cocos polysaccharides (PCP) has been shown to possess anti-inflammatory, antitumor and anti-oxidative properties. In this study we explored the effects of PCP on ox-LDL-induced inflammation, oxidative stress and foam cell formation in VSMCs. PCP significantly attenuated ox-LDL-induced oxidative stress, as evidenced by the decreased reactive oxygen species (ROS) and MDA levels, and the increased SOD activity in VSMCs. PCP suppressed the induction effect of ox-LDL on inflammatory cytokines and inflammatory mediators. PCP also substantially inhibited VSMCs foam cell formation and intracellular lipids accumulation. Mechanistically, PCP suppressed ox-LDL-induced up-regulation of LOX-1, which is responsible for ox-LDL uptake. Western blotting suggested that PCP activated ERK1/2 signaling pathway, increased Nrf2 translocated from cytoplasm to nucleus and heme oxygenase-1 (HO-1) expression. Up-regulation of PCP on Nrf2/HO-1 signaling was reversed by pretreatment with ERK inhibitor PD98059, indicating the involvement of ERK in PCP activation of Nrf2/HO-1 signaling. In conclusion, these results demonstrated that PCP exerted its protection against oxidative stress and inflammation via the ERK/Nrf2/HO-1 signaling pathway and that PCP may be a promising candidate for the therapy of atherosclerosis."	"Serum soluble lectin-like oxidized low-density lipoprotein receptor-1 as a biomarker of delayed cerebral ischemia after aneurysmal subarachnoid hemorrhage. Delayed cerebral ischemia (DCI) greatly contributes to the high morbidity and mortality of aneurysmal subarachnoid hemorrhage (aSAH) patients. Expression of lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) was substantially raised in the basilar arterial wall of SAH rabbits. We attempted to ascertain the relationship between serum soluble LOX-1 (sLOX-1) levels and the occurrence of DCI after aSAH. We enrolled 125 aSAH patients and 125 healthy controls. Serum sLOX-1 levels were quantified using commercial enzyme-linked immunosorbent assay kit. The relationship between sLOX-1 levels and DCI was analyzed utilizing the multivariate logistic regression analysis. Serum sLOX-1 levels were significantly higher in stroke patients than in controls (median: 1,450.2 vs. 445.7 pg/ml, p &lt; .001). Serum sLOX-1 levels were highly correlated with World Federation of Neurological Surgeons (WFNS) scores, Hunt-Hess scores, and modified Fisher scores (r = .574, .625, and .569, respectively). Forty-two patients (33.6%) experienced DCI. Serum sLOX-1 &gt; 1,450.2 pg/ml, WFNS scores and modified Fisher scores were the independent predictors of DCI. Under receiver operating characteristic curve, serum sLOX-1 levels exhibited a significant discriminatory capability (area under curve 0.825, 95% confidence interval 0.747-0.887). The predictive power of serum sLOX-1 levels was similar to those of WFNS scores and modified Fisher grade (both p &gt; .05). Moreover, serum sLOX-1 levels significantly improved their predictive capability (both p &lt; .05). Serum soluble LOX-1, in positive association with hemorrhagic severity, appears to have the potential to become a promising predictor of DCI after aSAH."	"Correction: OxHDL controls LOX-1 expression and plasma membrane localization through a mechanism dependent on NOX/ROS/NF-κB pathway on endothelial cells. An amendment to this paper has been published and can be accessed via a link at the top of the paper."	"The ameliorating effect of carotenoid rich fraction extracted from Dunaliella salina microalga against inflammation- associated cardiac dysfunction in obese rats. The carotenoid rich fraction of microalgae Dunaliella salina (crf-DS) have been receiving great attention, due to they abilities to protect and improve various disorders. The objective of this study is to explore the therapeutic efficiency of crf-DS on obesity-assciated cardiac dysfunction in the high-fat diet (HFD) treated rats. These rats were orally administered with crf-DS (150 mg /kg body weight), for six consecutive weeks in comparison with reference drug(orlistat). Specific cardiac biomarkers were examined including; adiponectin, plasminogen activator inhibitor (PAI-1), glucagon, troponin-I (cTnI). The cell adhesion molecules (VCAM and ICAM), C-reactive protein (CRP), collagen type II (Col II), collagen alpha-1 (III) chain (Col3A1), lipoxygenase activity (LOX), as well as histopathological examination of cardiac tissue were investigated. Results indicated a significant reduction(P ≤ 0.05) in adiponectin and glucagon levels in serum of obese rats. However, cTnI, PAI-1, cell adhesion molecules, CRP, Col II, and Col3A1 and LOX levels declared marked increase. Histopathological examination of cardiac tissue showed fibrosis with severe congestion in the myocardial blood vessels. On the other hand, rats medicated with a crf-DS demonstrated noticeable ameliorating effect in all the measured parameters. Beside, myocardial tissue of obese rats showed no alteration. Hence, It could be concluded that, oral supplementation with crf-DS is able to attenuate cardiac dysfunction in obese rats. Further extended work is needed to exploit, the possible application of D. salina as nutraceuticals and food additives."	"ABTS On-Line Antioxidant, α-Amylase, α-Glucosidase, Pancreatic Lipase, Acetyl- and Butyrylcholinesterase Inhibition Activity of Chaenomeles Fruits Determined by Polyphenols and other Chemical Compounds. This study aimed to identify and quantify the chemical composition and polyphenolic profile of 19 cultivars of Chaenomeles × superba, Chaenomeles japonica, and Chaenomeles speciosa by liquid chromatography coupled with photodiode array detector and quadrupole time-of-flight electrospray ionization mass spectrometry (LC-PDA-QTOF-ESI-MS). Antioxidant (ABTS on-line, ABTS, FRAP, and ORAC), as well as in vitro biological activities, i.e., the ability to inhibit α-amylase, α-glucosidase, pancreatic lipase, acetylcholinesterase (AChE), butyrylcholinesterase (BuChE), and 15-lipoxygenase (15-LOX) were determined. Most of the Chaenomeles species and cultivars analyzed in this study have not been examined in this respect until now. Fruits contained 30.26 to 195.05 mg of vitamin C, 0.65 to 1.69 g of pectin, 0.32 to 0.64 g of ash, 0.60 to 3.98 g of sugars, and 41.64 to 110.31 g of organic acids in 100 g fresh weight. The lowest content of total polyphenols showed C. speciosa 'Rubra' (57.84 g/kg dry weight, dw) while C. × superba 'Nicoline' (170.38 g/kg dw) exhibited the highest concentration of those compounds. In the phenolic compounds, polymeric procyanidin fraction predominated (65%) with procyanidin B2, C1, and (-)-epicatechin the most abundant. The antioxidant capacity measured by ABTS assay was mainly formed by polymeric procyanidins and flavan-3-ols, which was confirmed by ABTS on-line profiling. Chaenomeles fruits showed high potential for inhibition of α-glucosidase and pancreatic lipase. The analyzed cultivars displayed greater potential for acetylcholinesterase (AChE) inhibition than for butyrylcholinesterase (BuChE). The data indicate that Chaenomeles fruits could be regarded as a promising source of bioactive functional food."	"An Inducible Cre-lox System to Analyze the Role of LLO in Listeria monocytogenes Pathogenesis. Listeriolysin O (LLO) is a pore-forming cytolysin that allows Listeria monocytogenes to escape from phagocytic vacuoles and enter the host cell cytosol. LLO is expressed continuously during infection, but it has been a challenge to evaluate the importance of LLO secreted in the host cell cytosol because deletion of the gene encoding LLO (hly) prevents localization of L. monocytogenes to the cytosol. Here, we describe a L. monocytogenes strain (hly<sup>fl</sup>) in which hly is flanked by loxP sites and Cre recombinase is under the transcriptional control of the L. monocytogenesactA promoter, which is highly induced in the host cell cytosol. In less than 2 h after infection of bone marrow-derived macrophages (BMMs), bacteria were 100% non-hemolytic. hly<sup>fl</sup> grew intracellularly to levels 10-fold greater than wildtype L. monocytogenes and was less cytotoxic. In an intravenous mouse model, 90% of bacteria were non-hemolytic within three hours in the spleen and eight hours in the liver. The loss of LLO led to a 2-log virulence defect in the spleen and a 4-log virulence defect in the liver compared to WT L. monocytogenes. Thus, the production of LLO in the cytosol has significant impact on the pathogenicity of L. monocytogenes."	"An engineered enzyme that targets circulating lactate to alleviate intracellular NADH:NAD<sup>+</sup> imbalance. An elevated intracellular NADH:NAD<sup>+</sup> ratio, or 'reductive stress', has been associated with multiple diseases, including disorders of the mitochondrial electron transport chain. As the intracellular NADH:NAD<sup>+</sup> ratio can be in near equilibrium with the circulating lactate:pyruvate ratio, we hypothesized that reductive stress could be alleviated by oxidizing extracellular lactate to pyruvate. We engineered LOXCAT, a fusion of bacterial lactate oxidase (LOX) and catalase (CAT), which irreversibly converts lactate and oxygen to pyruvate and water. Addition of purified LOXCAT to the medium of cultured human cells with a defective electron transport chain decreased the extracellular lactate:pyruvate ratio, normalized the intracellular NADH:NAD<sup>+</sup> ratio, upregulated glycolytic ATP production and restored cellular proliferation. In mice, tail-vein-injected LOXCAT lowered the circulating lactate:pyruvate ratio, blunted a metformin-induced rise in blood lactate:pyruvate ratio and improved NADH:NAD<sup>+</sup> balance in the heart and brain. Our study lays the groundwork for a class of injectable therapeutic enzymes that alleviates intracellular redox imbalances by directly targeting circulating redox-coupled metabolites."	"Single-cell tracking demonstrates copper chaperone Atox1 to be required for breast cancer cell migration. Copper ions are needed for several hallmarks of cancer. However, the involved pathways, mechanisms, and copper-binding proteins are mostly unknown. We recently found that cytoplasmic Antioxidant 1 copper chaperone (Atox1), which is up-regulated in breast cancer, is localized at the lamellipodia edges of aggressive breast cancer cells. To reveal molecular insights into a putative role in cell migration, we here investigated breast cancer cell (MDA-MB-231) migration by video microscopy as a function of Atox1. Tracking of hundreds of individual cells (per condition) over a 9-h time series revealed that cell migration velocity and directionality are significantly reduced upon Atox1 silencing in the cells. Because silencing of the copper transporter ATP7A also reduced cell migration, these proteins appear to be on the same pathway, suggesting that their well-known copper transport activity is involved. In-cell proximity ligation assays demonstrated that Atox1, ATP7A, and the proenzyme of lysyl oxidase (LOX; copper-loaded via ATP7A) are all in close proximity and that LOX activity is reduced upon Atox1 silencing in the cells. Since LOX is an established player in cancer cell migration, our results imply that Atox1 mediates breast cancer cell migration via coordinated copper transport in the ATP7A-LOX axis. Because individual cell migration is an early step in breast cancer metastasis, Atox1 levels in tumor cells may be a predictive measure of metastasis potential and serve as a biomarker for copper depletion therapy."	"Transcriptome and Phytochemical Analyses Provide New Insights Into Long Non-Coding RNAs Modulating Characteristic Secondary Metabolites of Oolong Tea (Camellia sinensis) in Solar-Withering. Oolong tea is a popular and semi-fermented beverage. During the processing of tea leaves, withering is the first indispensable process for improving flavor. However, the roles of long non-coding RNAs (lncRNAs) and the characteristic secondary metabolites during the withering of oolong tea leaves remain unknown. In this study, phytochemical analyses indicated that total polyphenols, flavonoids, catechins, epigallocatechin (EGC), catechin gallate (CG), gallocatechin gallate (GCG), epicatechin gallate (ECG), and epigallocatechin gallate (EGCG) were all less abundant in the solar-withered leaves (SW) than in the fresh leaves (FL) and indoor-withered leaves (IW). In contrast, terpenoid, jasmonic acid (JA), and methyl jasmonate (MeJA) contents were higher in the SW than in the FL and IW. By analyzing the transcriptome data, we detected 32,036 lncRNAs. On the basis of the Kyoto Encyclopedia of Genes and Genomes analysis, the flavonoid metabolic pathway, the terpenoid metabolic pathway, and the JA/MeJA biosynthesis and signal transduction pathway were enriched pathways. Additionally, 63 differentially expressed lncRNAs (DE-lncRNAs) and 23 target genes were identified related to the three pathways. A comparison of the expression profiles of the DE-lncRNAs and their target genes between the SW and IW revealed four up-regulated genes (FLS, CCR, CAD, and HCT), seven up-regulated lncRNAs, four down-regulated genes (4CL, CHI, F3H, and F3'H), and three down-regulated lncRNAs related to flavonoid metabolism; nine up-regulated genes (DXS, CMK, HDS, HDR, AACT, MVK, PMK, GGPPS, and TPS), three up-regulated lncRNAs, and six down-regulated lncRNAs related to terpenoid metabolism; as well as six up-regulated genes (LOX, AOS, AOC, OPR, ACX, and MFP2), four up-regulated lncRNAs, and three down-regulated lncRNAs related to JA/MeJA biosynthesis and signal transduction. These results suggested that the expression of DE-lncRNAs and their targets involved in the three pathways may be related to the low abundance of the total polyphenols, flavonoids, and catechins (EGC, CG, GCG, ECG, and EGCG) and the high abundance of terpenoids in the SW. Moreover, solar irradiation, high JA and MeJA contents, and the endogenous target mimic (eTM)-related regulatory mechanism in the SW were also crucial for increasing the terpenoid levels. These findings provide new insights into the greater contribution of solar-withering to the high-quality flavor of oolong tea compared with the effects of indoor-withering."	"Detection of a High Ratio of Soluble to Membrane-Bound LOX-1 in Aspirated Coronary Thrombi From Patients With ST-Segment-Elevation Myocardial Infarction. Background The circulating level of soluble lectin-like oxidized low-density lipoprotein receptor-1 (sLOX-1) is a valuable biomarker of acute myocardial infarction (AMI). The most electronegative low-density lipoprotein, L5, signals through LOX-1 to trigger atherogenesis. We examined the characteristics of LOX-1 and the role of L5 in aspirated coronary thrombi of AMI patients. Methods and Results Intracoronary thrombi were aspirated by performing interventional thrombosuction in patients with ST-segment-elevation myocardial infarction (STEMI; n=32) or non-ST-segment-elevation myocardial infarction (n=12). LOX-1 level and the ratio of sLOX-1 to membrane-bound LOX-1 were higher in thrombi of STEMI patients than in those of non-ST-segment-elevation myocardial infarction patients. In all aspirated thrombi, LOX-1 colocalized with apoB100. When we explored the role of L5 in AMI, deconvolution microscopy showed that particles of L5 but not L1 (the least electronegative low-density lipoprotein) quickly formed aggregates prone to retention in thrombi. Treating human monocytic THP-1 cells with L5 or L1 showed that L5 induced cellular adhesion and promoted the differentiation of monocytes into macrophages in a dose-dependent manner. In a second cohort of AMI patients, the L5 percentage and plasma concentration of sLOX-1 were higher in STEMI patients (n=33) than in non-ST-segment-elevation myocardial infarction patients (n=25), and sLOX-1 level positively correlated with L5 level in AMI patients. Conclusions The level of LOX-1 and the ratio of sLOX-1 to membrane-bound LOX-1 in aspirated thrombi, as well as the circulating level of sLOX-1 were higher in STEMI patients than in non-ST-segment-elevation myocardial infarction patients. L5 may play a role in releasing a high level of sLOX-1 into the circulation of STEMI patients."	"Inhibition of lysyl oxidase ameliorates renal injury by inhibiting CD44-mediated pericyte detachment and loss of peritubular capillaries. Renal fibrosis is a common pathological manifestation of almost all forms of kidney disease irrespective of the etiological cause. Microvascular rarefaction represents itself as an important phenomenon associated with renal fibrosis and shows strong correlation with decline in renal functions. Lysyl oxidase (LOX) catalyzes crosslinking of extracellular matrix (ECM) proteins including collagens, plays an important role in stabilization of degradation resistant matrix. Since, there seems to be a causal link between deposition of excessive ECM and microvascular rarefaction, we investigated the effects of reduction in renal fibrosis on microvascular rarefaction in acute as well as end stage kidney. We used a well-established unilateral ureteral obstruction (UUO)-induced renal fibrosis model to produce renal fibrosis in animals. We treated animals with a LOX inhibitor, β-aminopropionitrile (BAPN, 100 mg/kg, i.p.) and investigated effects on renal fibrosis and microvascular rarefaction. We observed that LOX inhibition was associated with reduction in collagen deposition in UUO-induced renal fibrosis animal model. Further, ECM normalization by LOX inhibition decreased the loss of peritubular capillaries (PTCs) in fibrotic kidney in acute study while the LOX inhibition failed to inhibit PTCs loss in end stage kidney. The results of present study suggested that inhibition of LOX reduces collagen deposition and renal fibrosis. Further, the reduction in fibrosis fails to protect from PTCs loss in chronic study suggesting the absence of strong link between reduction in fibrosis and improvement in PTCs in an end stage kidney."	"Nerolidol inhibits the LOX-1 / IL-1β signaling to protect against the Aspergillus fumigatus keratitis inflammation damage to the cornea. Nerolidol, a naturally occurring sesquiterpene has both anti-microbial and anti-inflammatory properties. The current study aims to investigate the antifungal and the anti-inflammatory effects of nerolidol against mouse Aspergillus fumigatus (A. fumigatus) keratitis. The minimum inhibitory concentration (MIC) and cytotoxicity tests were used to study the antifungal ability. For in vivo and in vitro studies, the mouse corneas and the human corneal epithelial cells (HCECs) infected with A. fumigatus spores were intervented with nerolidol or phosphate buffer saline (PBS). Thereafter, the effect of the nerolidol on the response against inflammation was analyzed using the following parameters: recruitment of the neutrophils or macrophages and the expression of the lectin-type oxidized low density lipoprotein receptor-1 (LOX-1) and interleukin 1β (IL-1β). Techniques used were the slit lamp, immunofluorescence, myeloperoxidase (MPO) detection, quantitative real-time polymerase chain reaction (qRT-PCR) and Western blot. Nerolidol directly inhibits the growth of A. fumigatus. The administration of nerolidol reduced the severity of fungal keratitis with infiltration of fewer inflammatory cells and reduced levels of the LOX-1, as well the anti-inflammatory cytokines such as IL-1β were reduced compared with the PBS group. Additionally, in vitro studies showed that treatment with nerolidol inhibited the production of the LOX-1 / IL-1β levels in A. fumigatus stimulated HCECs. Nerolidol attenuated the A. fumigatus keratitis inflammatory response by inhibiting the growth of A. fumigatus, reducing the recruitment of the neutrophils and the macrophages, and inhibiting the LOX-1/ IL-1β signaling."	"Specific overexpression of 15-lipoxygenase in endothelial cells promotes cancer cell death in an in vivo Lewis lung carcinoma mouse model. Lipoxygenases (LOX) have been implicated in carcinogenesis, however both pro- and anti-carcinogenic effects have been reported in different cancer models. Using transgenic mice, which specifically overexpress human 15-lipoxygenase (ALOX15) in endothelial cells (EC), we previously demonstrated significant inhibition of tumor development. In the Lewis lung carcinoma (LLC) model, the primary tumor developed similarly in both wild type (WT) and ALOX15 overexpressing mice. However, metastases development was significantly inhibited in the transgenic mice. Here, we explored the molecular basis for the anti-metastatic effect of endothelial cell specific ALOX15 overexpression. We used ALOX15 overexpressing mice, and in-vitro cell model to evaluate the molecular effect of ALOX15 on EC and LLC cells. When LLC cells were injected in WT and ALOX15 overexpressing mice, we observed a higher degree of apoptosis and necrosis in primary and metastatic tumors of ALOX15 overexpressing animals. These anti-carcinogenic and anti-metastatic effects were paralleled by augmented expression of cyclin-dependent kinase inhibitor 1A (CDKN1A; p21) and of the peroxisome proliferators-activated receptor (PPAR)γ and by downregulation of the steady state concentrations of connexin26 mRNA. Consistent with these in vivo effects, ALOX15 overexpression in LLC and HeLa cancer cells in vitro significantly reduced cell viability in culture. In contrast, similar treatment of non-cancerous B2B epithelial cells did not impact cell viability. Taken together, our data suggests that endothelial cell specific overexpression of ALOX15 promotes apoptosis and necrosis in primary and metastatic tumors in mice, by upregulation of P21 and PPARγ expression in adjacent cancer cells."	"PP2A alleviates oxidized LDL-induced endothelial dysfunction by regulating LOX-1/ROS/MAPK axis. The purpose of this study is to investigate the effect of PP2A on the progression of AS and the special molecular mechanism. The expression of PP2A in Human umbilical vein endothelial cells (HUVECs) induced by different concentrations of Ox-LDL was measured by RT-PCR and Western blot. The binding activity of PP2A and LOX-1 was determined by CoIP assay. Western blot was used to measure the protein expression of VCAM-1, ICAM-1 and MCP-1. The results revealed that the expression of PP2A was decreased with the increase of Ox-LDL concentration in HUVECs. Overexpression of PP2A alleviated Ox-LDL-induced dysfunction and inflammatory response in HUVECs. The results of Co-immunoprecipitation (CoIP) showed that PP2A had direct effect on LOX-1, and PP2A inhibited the expression of LOX-1. In addition, overexpression of LOX-1 reversed the inhibitory effect of PP2A on Ox-LDL-induced dysfunction and inflammatory response in HUVECs. What is more, PP2A inhibited LOX-1/ROS/MAPK axis. it suggests that PP2A alleviates Ox-LDL-induced dysfunction and inflammatory response of HUVECs potentially by regulating the LOX-1/ROS/MAPK axis,which suggests that PP2A has anti-inflammatory effect during the formation of as, and the molecular therapy of PP2A provides a theoretical basis."	"Couplet medicines of leech and centipede granules improve erectile dysfunction via inactivation of the CaSR/PLC/PKC signaling in streptozotocin-induced diabetic rats. Erectile dysfunction (ED) is one of the significant complications of diabetes mellitus (DM), and CASR plays an important role in cellular antiapoptosis and NO production in the vascular endothelium by activating PKC. The present study was aimed to investigate the efficacy of Leech and Centipede Granules (LCG) through the CaSR/PLC/PKC signaling. Fifty male Sprague-Dawley rats were treated with streptozotocin to induce the DM model. After 10 weeks, an apomorphine test was used to confirm DMED. Rats with DMED were administrated with LCG and U73122 for 4 weeks. Fasting blood glucose, body weight, insulin and glucagon levels were measured. Erectile function in rats was assessed by apomorphine. Serums were measured using enzyme-linked immunosorbent assay and flow cytometry, and penile tissues were harvested for histologic and the expression of related targets analyses. After treatment, fasting blood glucose, body weight, insulin, glucagon levels, and erectile function were significantly ameliorated in the LCG groups. The LOX-1, NOX, and EMPs concentrations were significantly decreased with LCG treatment. LCG also continuously increased NO and decreased ET-1 content in penile tissues. LCG and U73122 administration also improved penile fibrosis by significantly decreasing VCAM-1, ICAM-1, and CD62P. The data also showed that LCG reduced the apoptosis level in the penis. Furthermore, the inhibited activation of the CaSR/PLC/PKC pathway was observed in DMED rats with LCG treatment. Collectively, LCG significantly ameliorated erectile function of DMED rats via increased NO generation, inhibiting endothelial cells apoptosis and penile fibrosis, which might benefit from the suppression of CaSR/PLC/PKC pathway in DMED rats."	"Hypoxia Induces Pro-Fibrotic and Fibrosis Marker Genes in Hepatocellular Carcinoma Cells Independently of Inflammatory Stimulation and the NF-κΒ Pathway. Hypoxia and its key mediators hypoxia inducible Factors (HIFs) are implicated in the development of liver diseases of diverse etiologies, often in interplay with inflammatory mediators. We investigated the interplay between hypoxia and proinflammatory mediators in the development of liver fibrosis, using human hepatocellular carcinoma Huh7 cells as a model. Treatment of Huh7 with DMOG or under hypoxia, induced HIF-1α protein levels and the expression of genes for pro-fibrotic (TGF-β1, PDGFC, PAI-1) and fibrosis (LOX, P4HA1, P4HB) markers. Knockdown of HIF-1α decreased the induction of PDGFC, LOX and P4HA1, showing the involvement of HIF-1 in their regulation. Interestingly, incubation of Huh7 cells under hypoxia did not cause activation of the NF-κΒ pathway. In contrast, inflammatory mediators such as tumor necrosis factor α (TNFα) and lipopolysaccharides (LPS) activated the NF-κΒ pathway, but failed to increase HIF-1α protein levels. Moreover, TNFα had a weaker effect than hypoxia on the induction or did not induce pro-fibrotic and fibrosis markers, respectively, while LPS enhanced only the hypoxic induction of P4HB. In conclusion, the above findings suggest that hypoxia and HIF-1 play an important role in the development of fibrosis in hepatocellular carcinoma, which appears to be independent of the activation of the NF-κΒ pathway."	"LOX family and ZFPM2 as novel diagnostic biomarkers for malignant pleural mesothelioma. Malignant pleural mesothelioma (MPM) is a rare and aggressive cancer that develops in the pleural and outer layer of tissues surrounding the lungs. MPM is primarily caused by occupational exposure to asbestos and results in a poor prognosis. Effective therapeutics as well as early diagnostics for the MPM are still lacking. To identify potential diagnostic biomarkers for MPM, we performed bioinformatics analysis of public database. Utilizing databases from Cancer Cell Line Encyclopedia (CCLE) and Gene Expression Omnibus (GEO), we identified several potential candidates that could act as MPM biomarkers. We carried out additional molecular analyses of these potential markers using MPM patient tissue samples via quantitative polymerase chain reaction. We identified Lysyl oxidase (LOX), Lysyl oxidase homologs 1&amp;2 (LOXL1&amp; LOXL2) Zinc Finger Protein, FOG Family Member 2 (ZFPM2) as potential diagnostic biomarkers for MPM. In this study, we found that the LOX family and ZFPM2 showed comparable diagnostic ability to Fibulin-3 or mesothelin (MSLN) and would be better potential biomarkers than Sulfatase 1 (SULF1), Thrombospondin 2 (THBS2) and Cadherin 11 (CDH11). LOX family and ZPFM2 were identified as novel MPM diagnostic biomarkers which could strengthen MPM clinical diagnostic capabilities."	"Eosinophils synthesize trihydroxyoctadecenoic acids (TriHOMEs) via a 15-lipoxygenase dependent process. Trihydroxyoctadecenoic acids (TriHOMEs) are linoleic acid-derived lipid mediators reported to be dysregulated in obstructive lung disease. In contrast to many other oxylipins, TriHOME biosynthesis in humans is still poorly understood. The association of TriHOMEs with inflammation prompted the current investigation into the ability of human granulocytes to synthesize the 16 different 9,10,13-TriHOME and 9,12,13-TriHOME isomers and of the TriHOME biosynthetic pathway. Following incubation with linoleic acid, eosinophils and (to a lesser extent) the mast cell line LAD2, but not neutrophils, formed TriHOMEs. Stereochemical analysis revealed that TriHOMEs produced by eosinophils predominantly evidenced the 13(S) configuration, suggesting 15-lipoxygenase (15-LOX)-mediated synthesis. TriHOME formation was blocked following incubation with the 15-LOX inhibitor BLX-3887 and was shown to be largely independent of soluble epoxide hydrolase and cytochrome P450 activities. TriHOME synthesis was abolished when linoleic acid was replaced with 13-HODE, but increased in incubations with 13-HpODE, indicating the intermediary role of epoxy alcohols in TriHOME formation. In contrast to eosinophils, LAD2 cells formed TriHOMEs having predominantly the 13(R) configuration, demonstrating that there are multiple synthetic routes for TriHOME formation. These findings provide for the first-time insight into the synthetic route of TriHOMEs in humans and expand our understanding of their formation in inflammatory diseases."	"Sodium absorption stimulator prostasin (PRSS8) has an anti-inflammatory effect via downregulation of TLR4 signaling in inflammatory bowel disease. Prostasin (PRSS8) is a stimulator of epithelial sodium transport. In this study, we evaluated alteration of prostasin expression in the inflamed mucosa of patients with inflammatory bowel disease (IBD) and investigated the role of prostasin in the gut inflammation. Prostasin expression was evaluated by immunohistochemical staining. Dextran sodium sulfate (DSS)-colitis was induced in mice lacking prostasin specifically in intestinal epithelial cells (PRSS8<sup>ΔIEC</sup> mice). In colonic mucosa of healthy individuals, prostasin was strongly expressed at the apical surfaces of epithelial cells, and this was markedly decreased in active mucosa of both ulcerative colitis and Crohn's disease. DSS-colitis was exacerbated in PRSS8<sup>ΔIEC</sup> mice compared to control PRSS8<sup>lox/lox</sup> mice. Toll-like receptor4 (TLR4) expression in colonic epithelial cells was stronger in DSS-treated PRSS8<sup>ΔIEC</sup> mice than in DSS-treated PRSS8 <sup>lox/lox</sup> mice. NF-κB activation in colonic epithelial cells was more pronounced in DSS-treated PRSS8<sup>ΔIEC</sup> mice than in DSS-treated PRSS8<sup>lox/lox</sup> mice, and the mRNA expression of inflammatory cytokines was significantly higher in DSS-treated PRSS8<sup>ΔIEC</sup> mice. Broad-spectrum antibiotic treatment completely suppressed the exacerbation of DSS-colitis in PRSS8<sup>ΔIEC</sup> mice. The mRNA expression of tight junction proteins and mucosal permeability assessed using FITC-dextran were comparable between DSS-treated PRSS8<sup>lox/lox</sup> and DSS-treated PRSS8<sup>ΔIEC</sup> mice. Prostasin has an anti-inflammatory effect via downregulation of TLR4 expression in colonic epithelial cells. Reduced prostasin expression in IBD mucosa is linked to the deterioration of local anti-inflammatory activity and may contribute to the persistence of mucosal inflammation."	"An in vivo study of the impact of deficiency in the DNA repair proteins PAXX and XLF on development and maturation of the hemolymphoid system. Repair of DNA double-strand breaks by the nonhomologous end joining pathway is central for proper development of the adaptive immune system. This repair pathway involves eight factors, including XRCC4-like factor (XLF)/Cernunnos and the paralog of XRCC4 and XLF, PAXX nonhomologous end joining factor (PAXX). Xlf<sup>-/-</sup> and Paxx<sup>-/-</sup> mice are viable and exhibit only a mild immunophenotype. However, mice lacking both PAXX and XLF are embryonic lethal because postmitotic neurons undergo massive apoptosis in embryos. To decipher the roles of PAXX and XLF in both variable, diversity, and joining recombination and immunoglobulin class switch recombination, here, using Cre/lox-specific deletion to prevent double-KO embryonic lethality, we developed two mouse models of a conditional Xlf KO in a Paxx<sup>-/-</sup> background. Cre expressed under control of the iVav or CD21 promoter enabled Xlf deletion in early hematopoietic progenitors and splenic mature B cells, respectively. We demonstrate the XLF and PAXX interplay during variable, diversity, and joining recombination in vivo but not during class switch recombination, for which PAXX appeared to be fully dispensable. Xlf/Paxx double KO in hematopoietic progenitors resulted in a shorter lifespan associated with onset of thymic lymphomas, revealing a genome caretaking function of XLF/PAXX."	"Conditional knockout of kisspeptin signaling in brown adipose tissue increases metabolic rate and body temperature and lowers body weight. The peptide kisspeptin and its receptor, Kiss1r, act centrally to stimulate reproduction. Evidence indicates that kisspeptin signaling is also important for body weight (BW) and metabolism. We recently reported that Kiss1r KO mice develop obesity, along with reduced metabolism and energy expenditure, independent of estradiol levels. Outside the brain, Kiss1r is expressed in several metabolic tissues, including brown adipose tissue (BAT), but it is unknown which specific tissue is responsible for the metabolic phenotype in Kiss1r KOs. We first determined that global Kiss1r KO mice have significant alterations in body temperature and BAT thermogenic gene expression, perhaps contributing to their obesity. Next, to test whether kisspeptin signaling specifically in BAT influences BW, metabolism, or body temperature, we used Cre/lox technology to generate conditional Kiss1r knockout exclusively in BAT (BAT-Kiss1r KO). Unlike global Kiss1r KOs, BAT-Kiss1r KOs (lacking Kiss1r in just BAT) were not hypogonadal, as expected. Surprisingly, however, BAT-Kiss1r KOs of both sexes displayed significantly lower BW and adiposity than controls. This novel BAT-Kiss1r KO phenotype was of greater magnitude in females and was associated with improved glucose tolerance, increased metabolism, energy expenditure, and locomotor activity, along with increased body temperature and BAT gene expression, specifically Cox8b. Our findings suggest that the previously observed obesity and decreased metabolism in global Kiss1r KOs reflect impaired kisspeptin signaling in non-BAT tissues. However, the novel finding of increased metabolism and body temperature and lower BW in BAT-Kiss1r KOs reveal a previously unidentified role for endogenous kisspeptin signaling in BAT in modulating metabolic and thermogenic physiology."	"Cancer Associated Fibroblasts and Senescent Thyroid Cells in the Invasive Front of Thyroid Carcinoma. Thyroid carcinoma (TC) comprises several histotypes with different aggressiveness, from well (papillary carcinoma, PTC) to less differentiated forms (poorly differentiated and anaplastic thyroid carcinoma, PDTC and ATC, respectively). Previous reports have suggested a functional role for cancer-associated fibroblasts (CAFs) or senescent TC cells in the progression of PTC. In this study, we investigated the presence of CAFs and senescent cells in proprietary human TCs including PTC, PDTC, and ATC. Screening for the driving lesions BRAFV600E and N/H/KRAS mutations, and gene fusions was also performed to correlate results with tumor genotype. In samples with unidentified drivers, transcriptomic profiles were used to establish a BRAF- or RAS-like molecular subtype based on a gene signature derived from The Cancer Genome Atlas. By using immunohistochemistry, we found co-occurrence of stromal CAFs and senescent TC cells at the tumor invasive front, where deposition of collagen (COL1A1) and expression of lysyl oxidase (LOX) enzyme were also detected, in association with features of local invasion. Concurrent high expression of CAFs and of the senescent TC cells markers, COL1A1 and LOX was confirmed in different TC histotypes in proprietary and public gene sets derived from Gene Expression Omnibus (GEO) repository, and especially in BRAF mutated or BRAF-like tumors. In this study, we show that CAFs and senescent TC cells co-occur in various histotypes of BRAF-driven thyroid tumors and localize at the tumor invasive front."	"12/15 Lipoxygenase as a Therapeutic Target in Brain Disorders. Lipoxygenases are a family of lipid-oxidizing enzymes, which generate eicosanoids and related compounds from arachidonic acid and other polyunsaturated fatty acids. These metabolites play important roles in physiology and pathogenesis of host defense mechanisms, cardiovascular diseases, cancer, inflammatory, allergic and neurodegenerative diseases. The 12/15-lipoxygenase (LOX) is special in that it can directly oxidize lipid membranes containing polyunsaturated fatty acids, without the preceding action of a phospholipase, leading to the direct attack on membranous organelles, such as mitochondria. The cytotoxic activity of human 12/15-LOX is up-regulated in neurons and endothelial cells especially after a stroke and thought to contribute to both neuronal cell death and blood-brain barrier leakage. The discovery of inhibitors that selectively target recombinant 12/15-LOX in vitro, as well as possessing activity against the murine orthologous ex vivo, could potentially support a novel therapeutic strategy for the treatment of stroke and other brain disorders related to 12/15-LOX. Here we reviewed 12/15-LOX chemistry shortly, and the diseases in which 12/15-LOX has a role in their pathophysiology and recent advances of 12/15-LOX inhibitors as a treatment option for neurological diseases."	"Soluble LOX-1: A Novel Biomarker in Patients With Coronary Artery Disease, Stroke, and Acute Aortic Dissection? NA"	"Click chemistry synthesis, biological evaluation and docking study of some novel 2'-hydroxychalcone-triazole hybrids as potent anti-inflammatory agents. A hybrid pharmacophore approach is used to design and synthesize two novel series of 2'-hydroxychalcone-triazole hybrid molecules 6a-j and 8a-j. These compounds were fully characterized by spectral and elemental analyses. They were evaluated in vitro and in vivo for anti-inflammatory activity. Most of compounds were selective inhibitors for COX-2. Among them, compounds 6d, 6f, 6i, 8c, 8e and 8h demonstrated highly potent dual inhibition of COX-2 (IC50 = 0.037-0.041 µM) and 15-LOX (IC50 = 1.41-1.80 µM). Compounds 6i, 8c and 8h showed 116%, 113% and 109% of the in vivo anti-inflammatory activity of celecoxib. Therefore, compounds 6d, 6f, 6i, 8c, 8e and 8h-j are potent dual inhibitors of COX-2 and 15-LOX. Docking study over COX-2 and 15-LOX active sites ensures the binding affinity and selectivity. These compounds are promising candidates for further development as anti-inflammatory drugs."	"Spatial distribution of type II collagen gene expression in the mouse intervertebral disc. Genetic tools such as the Cre-Lox reporter system are powerful aids for tissue-specific cell tracking. For example, it would be useful in examining intervertebral disc (IVD) cell populations in normal and diseased states. A Cre recombinase and its recognition site, loxP have been adapted from the bacteriophage for use in genetic manipulation. The reporter mice used here express the red fluorescent protein, tdTomato with flanking LoxP sites (Rosa26 TdTomato mice). We compared two different Collagen type II (Col2) promoter constructs that drive Cre-recombinase expression in mice: (a) Col2-Cre, which allows constitutive Cre-recombinase expression under the control of the Col2 promoter/enhancer and (b) Col2-CreER, which contains a shorter promoter/enhancer region than Col2-Cre, but has human estrogen binding elements that bind tamoxifen, resulting in Cre-recombinase expression. The goal of the study is to characterize Cre-recombinase distribution pattern in Col2-Cre and Col2-CreER mice using tdTomato as reporter in the spine. The expression patterns of these two mice were further compared with Col2 gene expression in the native mouse NP and AF tissues by real-time PCR. We crossed Col2-Cre mice or Col2-CreER mice with the tdTomato reporter mice, and compared the tdTomato expression patterns. Col2-CreER/tdTomato mice were injected with tamoxifen at postnatal day 7 to activate the Cre-recombinase. TdTomato in the constitutively active Col2-Cre mice was detected in the nucleus pulposus (NP), the entire annulus fibrosus (AF), and in cartilaginous endplate and growth plate cells in the lower lumbar and coccygeal spine. In contrast, when Col2-CreER activity was induced by tamoxifen at P7, tdTomato was limited to the inner AF, and was absent from the NP. We have described the differences in Col2 reporter gene expression, in Col2-Cre/tdTomato and Col2-Cre-ER/tdTomato mouse IVD. The information provided here will help to guide future investigations of IVD biology."	"Expression of COX-1, COX-2, 5-LOX and <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:msub> <mml:mtext>CysLT</mml:mtext> <mml:mn>2</mml:mn> </mml:msub> </mml:math> in nasal polyps and bronchial tissue of patients with aspirin exacerbated airway disease. Aspirin exacerbated respiratory disease (AERD) is a disease of the upper and lower airways. It is characterized by severe asthma, chronic sinusitis with nasal polyps (CRSwNP) and intolerance towards nonsteroidal analgesics (NSAR). Arachidonic acid (AA) metabolites play an important role in the pathogenesis of AERD. It is still unknown, whether metabolism of AA is comparable between the upper and lower airways as well as between patients with and without NSAR intolerance. We sought to analyze differences in the expression of cyclooxygenases type 1 and 2 (COX-1, COX-2), arachidonate 5-lipoxygenase (5-LOX) and cysteinyl leukotriene receptor type 2 ( <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:msub> <mml:mtext>CysLT</mml:mtext> <mml:mn>2</mml:mn> </mml:msub> </mml:math> ) in nasal polyps and the bronchial mucosa of patients with aspirin intolerant asthma (AIA, <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:mi>n</mml:mi> <mml:mo>=</mml:mo> <mml:mn>23</mml:mn> </mml:mrow> </mml:math> ) as compared to patients with aspirin tolerant asthma (ATA, <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:mi>n</mml:mi> <mml:mo>=</mml:mo> <mml:mn>17</mml:mn> </mml:mrow> </mml:math> ) and a control group with nasal polyps, but without asthma (NPwA, <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mrow> <mml:mi>n</mml:mi> <mml:mo>=</mml:mo> <mml:mn>15</mml:mn> </mml:mrow> </mml:math> ). Tissue biopsies from nasal polyps and bronchial mucosa were obtained during surgical treatment of nasal polyps by endonasal functional endoscopic sinus surgery (FESS) under general anesthesia from intubated patients. Immunohistochemistry was used to analyze the expression of COX-1, COX-2, 5-LOX and <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:msub> <mml:mtext>CysLT</mml:mtext> <mml:mn>2</mml:mn> </mml:msub> </mml:math> in nasal and bronchial mucosa. Categorization into the different patient groups was performed according to the patient history, clinical and laboratory data, pulmonary function and provocation tests, as well as allergy testing. We observed a stronger expression of 5-LOX and <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:msub> <mml:mtext>CysLT</mml:mtext> <mml:mn>2</mml:mn> </mml:msub> </mml:math> in submucosal glands of nasal and bronchial tissue compared to epithelial expression. The expression of COX-1 and COX-2 was stronger in epithelia compared to submucosal glands. There was a similar expression of the enzymes and <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:msub> <mml:mtext>CysLT</mml:mtext> <mml:mn>2</mml:mn> </mml:msub> </mml:math> between upper and lower airways in all patient groups. We did not detect any significant differences between the patient groups. The AA-metabolizing enzymes and the <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:msub> <mml:mtext>CysLT</mml:mtext> <mml:mn>2</mml:mn> </mml:msub> </mml:math> were expressed in a very similar way in different microscopic structures in samples of the upper and lower airways of individual patients. We did not detect differences between the patient groups indicating the pathogenetic role of AA metabolism in these disorders is independent of the presence of NSAR-intolerance."	"LOX-1, the Common Therapeutic Target in Hypercholesterolemia: A New Perspective of Antiatherosclerotic Action of Aegeline. Lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) is the major receptor for oxidized low-density lipoprotein (Ox-LDL) in the aorta of aged rats. Ox-LDL initiates LOX-1 activation in the endothelium of lipid-accumulating sites of both animal and human subjects of hypercholesterolemia. Targeting LOX-1 may provide a novel diagnostic strategy towards hypercholesterolemia and vascular diseases. This study was planned to address whether aegeline (AG) could bind to LOX-1 with a higher affinity and modulate the uptake of Ox-LDL in hypercholesterolemia. Thirty-six Wistar rats were divided into six groups. The pathology group rats were fed with high-cholesterol diet (HCD) for 45 days, and the treatment group rats were fed with HCD and aegeline/atorvastatin (AV) for the last 30 days. In vivo and in vitro experiments were carried out to assay the markers of atherosclerosis like Ox-LDL and LOX-1 levels. Histopathological examination was performed. Oil Red O staining was carried out in the IC-21 cell line. Docking studies were performed. AG administration effectively brought down the lipid levels induced by HCD. The lowered levels of Ox-LDL and LOX-1 in AG-administered rats deem it to be a potent antihypercholesterolemic agent. Compared to AV, AG had a pronounced effect in downregulating the expression of lipids evidenced by Oil Red O staining. AG binds with LOX-1 at a higher affinity validated by docking. This study validates AG to be an effective stratagem in bringing down the lipid stress induced by HCD and can be deemed as an antihypercholesterolemic agent."	"Noninvasive Diagnosis of Regional Alteration of Retinal Morphology and Structure with Optical Coherence Tomography in Rodents. Spectral-domain optical coherence tomography (SD-OCT) produces high-resolution images of retinal cross sections and is becoming a method of choice for in vivo analyses of retinal morphology in rodents. We have adopted this technology to identify and analyze alterations of retinal structure, particularly those with regional and subtle changes. In this technical brief, we will demonstrate the use of SD-OCT in identifying subtle changes in retinal structure and morphology due to the effect of mosaic gene deletion in conditional knockout mice and of uneven distribution of intravitreally delivered compounds, review the application of SD-OCT in measuring pathological lesion volumes, and discuss the major benefits of SD-OCT technology over the traditional histological methods."	"Lithium attenuates d-amphetamine-induced hyperlocomotor activity in mice via inhibition of interaction between cyclooxygenase-2 and indoleamine-2,3-dioxygenase. In the present study, we investigated whether mood stabilizer lithium (Li) protects against d-amphetamine (AMP)-induced mania-like behaviours via modulating the novel proinflammatory potential. Repeated treatment with AMP resulted in significant increases in proinflammatory cyclooxygenase-2 (COX-2) and indolemaine-2,3-dioxygenase-1 (IDO)-1 expression in the prefrontal cortex (PFC) of mice. However, AMP treatment did not significantly change IDO-2 and 5-lipoxygenase (5-LOX) expression, suggesting that proinflammatory parameters such as COX-2 and IDO-1 are specific for AMP-induced behaviours. AMP-induced initial expression of COX-2 (15 minutes post-AMP) was earlier than that of IDO-1 (1 hour post-AMP). Mood stabilizer Li and COX-2 inhibitor meloxicam significantly attenuated COX-2 expression 15 minutes post-AMP, whereas IDO-1 inhibitor 1-methyl-DL-tryptophan (1-MT) did not affect COX-2 expression. However, AMP-induced IDO-1 expression was significantly attenuated by Li, meloxicam or 1-MT, suggesting that COX-2 is an upstream molecule for the induction of IDO-1 caused by AMP. Consistently, co-immunoprecipitation between COX-2 and IDO-1 was observed at 30 minutes, 1, 3, and 6 hours after the final AMP treatment. This interaction was also significantly inhibited by Li, meloxicam or 1-MT. Furthermore, AMP-induced hyperlocomotion was significantly attenuated by Li, meloxicam or 1-MT. We report, for the first time, that mood stabilizer Li attenuates AMP-induced mania-like behaviour via attenuation of interaction between COX-2 and IDO-1, and that the interaction of COX-2 and IDO-1 may be critical for the therapeutic intervention mediated by mood stabilizer."	"Intermittent Hypoxia Alleviates β-Aminopropionitrile Monofumarate Induced Thoracic Aortic Dissection in C57BL/6 Mice. Thoracic aortic dissection (TAD) has a high mortality rate. Intermittent hypoxia (IH) triggers both harmful and beneficial effects in numerous physiological systems. The effects of IH on TAD development were explored in a mouse model. β-Aminopropionitrile monofumarate (BAPN) was used to induce TAD in C57BL/6 mice. Three week old male mice were treated with 1 g/kg/day BAPN in drinking water for four weeks and simultaneously subjected to IH (n = 30) (21%-5% O2, 90 s/cycle, 10 h/day, IH + BAPN group) or normoxia (n = 30) (21% O2, 24 h/day, BAPN group). Human VSMCs (HUASMCs) exposed to IH (30 min, 5% O2)/re-oxygenation (30 min, 21% O<sup>2</sup>) cycles with a maximum of 60 min/cycle to detect the effect of IH on HIF-1α and LOX via HIF-1α-siRNA. It was found that BAPN administration significantly increased the lumen size and wall thickness of aortas compared with the normal group, but was significantly reversed by IH exposure. Additionally, IH exposure significantly increased the survival rate of BAPN induced TAD (70% vs. 40%). Furthermore, IH exposure reduced BAPN induced elastin breaks and apoptosis of vascular smooth muscle cells. IH exposure also reversed BAPN induced upregulation of inflammation and extracellular matrix (ECM) degradation. Real time polymerase chain reaction (RT-PCR) confirmed that IH inhibited inflammation and ECM degradation related genes interleukin (IL)-1β, IL-6, cathepsin S (Cat S), and matrix metalloproteinase 9 (MMP-9), but upregulated the ECM synthesis related genes lysyl oxidase (LOX) and collagen type I alpha2 (Col1a2) compared with the BAPN group. In vitro results suggest that IH promotes the expression of LOX via HIF-1α. The results suggest that IH alleviates BAPN induced TAD in C57BL/6 mice."	"Low oxygen enhances trophoblast column growth by potentiating differentiation of the extravillous lineage and promoting LOX activity. Early placental development and the establishment of the invasive trophoblast lineage take place within a low oxygen environment. However, conflicting and inconsistent findings have obscured the role of oxygen in regulating invasive trophoblast differentiation. In this study, the effect of hypoxic, normoxic and atmospheric oxygen on invasive extravillous pathway progression was examined using a human placental explant model. Here, we show that exposure to low oxygen enhances extravillous column outgrowth and promotes the expression of genes that align with extravillous trophoblast (EVT) lineage commitment. By contrast, supra-physiological atmospheric levels of oxygen promote trophoblast proliferation while simultaneously stalling EVT progression. Low oxygen-induced EVT differentiation coincided with elevated transcriptomic levels of lysyl oxidase (LOX) in trophoblast anchoring columns, in which functional experiments established a role for LOX activity in promoting EVT column outgrowth. The findings of this work support a role for low oxygen in potentiating the differentiation of trophoblasts along the extravillous pathway. In addition, these findings generate insight into new molecular processes controlled by oxygen during early placental development."	"Identification and characterization of the promoter of cancer-related gene LOXL2. Lysyl oxidase like 2, LOXL2, as a member of the lysyl oxidase (LOX) family, has been shown to function similarly to LOX in the extracellular matrix (ECM) by promoting crosslinking of collagen and elastin. LOXL2 is also engaged to transcription regulation, cell signaling transduction and cell adhesion regulation. It has been reported that LOXL2 is highly expressed in several types of tumors and promotes cell proliferation and migration in various cancer cells. However, the regulatory mechanism of LOXL2 expression remains largely unknown. To further investigate its transcriptional regulatory mechanism, LOXL2 promoter region has been cloned and identified in the present study. Chromatin state analysis revealed that LOXL2 gene locus contained an active promoter near its first exon. We then constructed five different LOXL2 gene promoter luciferase reporter constructs covering 1.7 kb upstream of LOXL2 gene transcription initiation site. Series luciferase reporter assay demonstrated that all the five constructs showed notable promoter activity, and LOXL2 core promoter was located in a region of 185 bp near the transcription initiation site. Transcriptional factor binding analysis indicated that, LOXL2 promoter lacked classical TATA box, but contained putative binding sites for classic transcriptional factors such as Sp1 and NF-κB. Ectopic overexpression of Sp1 significantly enhanced LOXL2 promoter activity as well as its endogenous expression in cells. In contrast, mithramycin A (a selective Sp1 inhibitor) treatment repressed LOXL2 promoter as well as its endogenous transcription. Site directed mutagenesis assay further confirmed that the Sp1 binding sites were essential for proximal prompter activity of LOXL2 gene. Chromatin immunoprecipitation (ChIP) assay revealed that Sp1 bound LOXL2 promoter in vivo. Of note, the expression of Sp1 and LOXL2 are positively correlated, and the higher expression of LOXL2 is associated with poor prognosis in colorectal cancer, strongly suggesting the implication of Sp1-mediated LOXL2 transactivation in the pathogenesis of colorectal cancer."	"EphrinB2 regulates VEGFR2 during dendritogenesis and hippocampal circuitry development. Vascular endothelial growth factor (VEGF) is an angiogenic factor that play important roles in the nervous system, although it is still unclear which receptors transduce those signals in neurons. Here, we show that in the developing hippocampus VEGFR2 (also known as KDR or FLK1) is expressed specifically in the CA3 region and it is required for dendritic arborization and spine morphogenesis in hippocampal neurons. Mice lacking VEGFR2 in neurons (Nes-cre Kdr<sup>lox/-</sup>) show decreased dendritic arbors and spines as well as a reduction in long-term potentiation (LTP) at the associational-commissural - CA3 synapses. Mechanistically, VEGFR2 internalization is required for VEGF-induced spine maturation. In analogy to endothelial cells, ephrinB2 controls VEGFR2 internalization in neurons. VEGFR2-ephrinB2 compound mice (Nes-cre Kdr<sup>lox/+</sup> Efnb2<sup>lox/+</sup>) show reduced dendritic branching, reduced spine head size and impaired LTP. Our results demonstrate the functional crosstalk of VEGFR2 and ephrinB2 in vivo to control dendritic arborization, spine morphogenesis and hippocampal circuitry development."	"NF-κB Signaling Negatively Regulates Osteoblast Dedifferentiation during Zebrafish Bone Regeneration. Dedifferentiation of mature cells is an intriguing cellular process associated with regeneration of several organs. During zebrafish fin regeneration, osteoblasts dedifferentiate to osteogenic progenitors that provide source cells for bone restoration. We performed a high-content in vivo chemical screen for regulators of osteoblast dedifferentiation and fin regenerative growth. NF-κB signaling emerged as a specific regulator of dedifferentiation. The pathway is active in mature osteoblasts and downregulated prior to dedifferentiation. Pathway activation blocked osteoblast dedifferentiation, while NF-κB signaling inhibition enhanced dedifferentiation. Conditional Cre-lox-mediated NF-κB signaling manipulation specifically in osteoblasts showed that the pathway acts cell autonomously to interfere with osteoblast dedifferentiation. NF-κB signaling acts upstream of retinoic acid (RA) signaling, which also needs to be downregulated for dedifferentiation to occur, via suppression of the RA-degrading enzyme cyp26b1. Our findings shed light on the molecular regulation of regenerative cellular plasticity."	"Potential of faba bean lipase and lipoxygenase to promote formation of volatile lipid oxidation products in food models. Faba bean can respond to the need for plant-based proteins for human consumption. The aim of this work was to study the role of lipid-modifying enzymes in faba bean in causing off-flavour compounds during processing. The faba bean exhibited high lipase and lipoxygenase (LOX) activities, with pH optima being 8.0 and 6.0, respectively. Faba bean LOX preferred free fatty acids (FFAs) over triacylglycerols as substrates, and together with other LOX pathway enzymes, it formed specific volatile products, as measured using headspace solid-phase microextraction-gas chromatography. During the preparation of the food models (i.e. the extracts and emulsions), enzymatic lipid oxidation occurred. The inclusion in the emulsions of rapeseed oil, especially of rapeseed oil FFAs, remarkably increased the amounts of volatile products. The largest quantities of products were formed in food models at pH 6.4, which is close to the pH optimum of LOX. Further studies on lipase in food models are needed."	"Inflammasome Activation in Human Macrophages Induced by a LDL (-) Mimetic Peptide. The inflammasome is responsible for maturation of interleukin-1β (IL-1β) and interleukin-18 (IL-18) contributing to the inflammatory process in atherosclerosis. It is shown here that an electronegative low-density lipoprotein [LDL (-)] apoB-100 mimetic peptide can activate the transcriptional and posttranslational signs needed for complete inflammasome activation. This peptide, named p2C7, can activate the Toll-like receptor 4 (TLR4) that induces NF-κB activation and the transcription of inflammasome components. After blocking TLR4 with a neutralizing antibody, inflammasome component (NLRP3, CASP1, and ASC) and IL1b and IL18 gene downregulation occurred in human-derived macrophages stimulated with p2C7 or LDL (-). Moreover, the posttranslational signal was activated by the interaction between p2C7 and the lectin-type oxidized LDL receptor 1 (LOX-1), as demonstrated by the induction of caspase-1 cleavage in macrophages. The blockage of either TLR4 or LOX-1 decreased IL-1β and IL-18 secretion by human-derived macrophages as both pathways are necessary for complete inflammasome activation. These findings suggest a mechanism by which macrophages transduce the pro-inflammatory signal provided by LDL (-) ApoB-100 and its mimetic peptides to activate the inflammasome protein complex what may be relevant for the inflammatory process in atherosclerosis."	"Dystrophin and calcium current are decreased in cardiomyocytes expressing Cre enzyme driven by αMHC but not TNT promoter. The Cre/lox system is a potent technology to control gene expression in mouse tissues. However, cardiac-specific Cre recombinase expression alone can lead to cardiac alterations when no loxP sites are present, which is not well understood. Many loxP-like sites have been identified in the mouse genome that might be Cre sensitive. One of them is located in the Dmd gene encoding dystrophin, a protein important for the function and stabilization of voltage-gated calcium (Cav1.2) and sodium (Nav1.5) channels, respectively. Here, we investigate whether Cre affects dystrophin expression and function in hearts without loxP sites in the genome. In mice expressing Cre under the alpha-myosin heavy chain (MHC-Cre) or Troponin T (TNT-Cre) promoter, we investigated dystrophin expression, Nav1.5 expression, and Cav1.2 function. Compared to age-matched MHC-Cre<sup>-</sup> mice, dystrophin protein level was significantly decreased in hearts from MHC-Cre<sup>+</sup> mice of more than 12-weeks-old. Quantitative RT-PCR revealed decreased mRNA levels of Dmd gene. Unexpectedly, calcium current (ICaL), but not Nav1.5 protein expression was altered in those mice. Surprisingly, in hearts from 12-week-old and older TNT-Cre<sup>+</sup> mice, neither ICaL nor dystrophin and Nav1.5 protein content were altered compared to TNT-Cre<sup>-</sup>. Cre recombinase unpredictably affects cardiac phenotype, and Cre-expressing mouse models should be carefully investigated before experimental use."	"[Effect of atorvastatin on LOX-1 and eNOS expression in collateral vessels of hypercholesterolemic rats]. To investigate the effect of atorvastatin on the expression of lectin- like oxLDL receptor 1 (LOX-1) and endothelial nitric oxide synthase (eNOS) in collateral vessels of hypercholesterolemic rats. Forty male SD rats were randomized equally into 4 groups: femoral ligation group (L), hypercholesterolemia + femoral ligation group (HL), hypercholesterolemia+atorvastatin+femoral ligation group (AL), and hypercholesterolemia+normal saline+femoral ligation group (NL). The rats in the latter 3 groups were fed atherogenic diet for 8 weeks. At the end of the 8 weeks, the rats were subjected to femoral artery ligation with or without intraperitoneal injection of atorvastatin (AL group) or saline (NL group). Two weeks later, all the rats were euthanized and the expressions of LOX-1 and eNOS in the collateral vessels were detected with immunofluorescence assay. In the in vitro experiment, cultured human umbilical vein endothelial cells (HUVECs) were transfected with LOX-1 siRNA followed by treatment with oxLDL and/or atorvastatin. The expressions of LOX-1 and eNOS in the cells were detected with realtime PCR and Western blotting, and the cellular NO production was examined with Griess assay. The collateral vessels of rats with normal feeding expressed LOX-1, which was significantly increased in the collateral vessels of hypercholesterolemic rats; atorvastatin treatment significantly lowered LOX-1 expressions in the hypercholesterolemic rats. In normally fed rats, the growing collateral vessels exhibited strong eNOS expressions, which were lowered in hypercholesterolemic rats and enhanced after atorvastatin treatment. In the cell experiment, HUVECs with oxLDL treatment showed a high LOX-1 expression and a low eNOS expression, and atorvastatin treatment of the cells down-regulated LOX-1 and up-regulated eNOS expressions. Inhibition of LOX-1 mediated by a specific LOX-1 siRNA abolished the effect of oxLDL stimulation on eNOS expression in the cells. Both hypercholesterolemia and oxLDL can induce endothelial dysfunction and impair collateral vessel growth via the LOX-1/eNOS pathway in rats, and atorvastatin treatment can restore the LOX-1/eNOS pathway to promote the growth of the collateral vessels, suggesting the potential of atorvastatin as a therapeutic agent to promote repair of collateral vessel injuries in ischemic diseases."	"The protective effects of aloperine against ox-LDL-induced endothelial dysfunction and inflammation in HUVECs. Atherosclerosis is a potentially life-threatening cardiovascular disease characterized by chronic endothelial inflammation and the formation of atherosclerotic lesions. Circulating ox-LDL is known to induce atherosclerosis by triggering oxidative stress, the expression of inflammatory mediators and adhesion molecules, as well as downregulating the atheroprotective transcriptional factor KLF2. Aloperine is an alkaloid compound isolated from the plant Sophora alopecuroides. Here, we employed various experimental methods to determine the effects of aloperine on ox-LDL-induced markers of atherosclerosis. DHE staining revealed that aloperine may restore the oxidant/antioxidant balance in HUVECs by reducing the level of ROS and rescuing the reduction in NOQ-1 and GCLC induced by ox-LDL. Aloperine treatment reduced ox-LDL-induced expression of IL-6, MCP-1, VCAM-1, and E-selectin and rescued the reduction in KLF2. Aloperine also downregulated ox-LDL-induced expression of the LOX-1. We also demonstrate that aloperine improved cell viability and inhibited the adhesion of U937 monocytes to HUVECs. Finally, we demonstrate that the effects of aloperine are mediated through the rescue of KLF2 expression via suppression of the phosphorylation of p53 protein. Together, our results implicate the potential of aloperine as a safe and effective antiatherosclerosis treatment."	"Identification of Key Genes and Signaling Pathways Associated with the Progression of Gastric Cancer. Genomic features have been gradually regarded as part of the fundamentals to the clinical diagnosis and treatment for gastric cancer. However, the molecular alterations taking place during the progression of gastric cancer remain unclear. Therefore, identification of potential key genes and pathways in the gastric cancer progression is crucial to clinical practices. The gene expression profile, GSE103236, was retrieved for the identification of the differentially expressed genes (DEGs), followed by gene ontology (GO), Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichments, gene set enrichment analysis (GSEA) and the protein-protein interaction (PPI) networks. Multiple bioinformatics platforms were employed for expression and prognostic analysis. Fresh frozen gastric cancer tissues were used for external validation. A total of 161 DEGs were identified from GSE103236. The PPI network-derived hub genes included collagen type I alpha 1 chain (COL1A1), tissue inhibitor of the metalloproteinases (TIMP1), Secreted Phosphoprotein 1 (SPP1), somatostatin (SST), neuropeptide Y (NPY), biglycan (BGN), matrix metallopeptidase 3 (MMP3), apolipoprotein E (APOE), ATPase H+/K+ transporting alpha subunit (ATP4A), lysyl oxidase (LOX). SPP1 (log rank p = 0.0048, HR = 1.39 [1.1-1.75]) and MMP3 (log rank p &lt; 0.0001, HR = 1.77 [1.44-2.19]) were significantly associated with poor overall survival. Stage-specifically, both COL1A1 and BGN were correlated with significant in stage III and IV gastric cancer cases. LOX showed significant correlation with prognosis in stage I and stage II gastric cancer cases. Furthermore, cg00583003 of SPP1 and cg16466334 of MMP3 exhibited highly methylation level and significant prognostic values (SPP1: HR = 1.625, p = 0.013; MMP3: HR = 0.647, p = 0.011). Hub genes signature displayed a favorable prognostic value (p value = 5.227e-05). APOE demonstrated the highest correlation with CD8<sup>+</sup> T cells, neutrophils, and dendritic cells whereas BGN had the highest correlation with macrophages. This study systematically explored the key genes and pathways involved in PGC and AGC, providing insights into therapeutic individualized management."	"Molecular events in MSC exosome mediated cytoprotection in cardiomyocytes. A host of hormonal-metabolic alterations take place following exposure of cardiomyocytes to hypoxia and other noxious stimuli. Here, we demonstrate that exposure of cultured rat cardiomyocytes to lipopolysaccharide (LPS) resulted in upregulation (~1.5 fold) of oxidized low-density lipoprotein receptor-1 (LOX-1). There was also a marked increase in apoptosis 12 hrs after LPS treatment with caspase-3 levels being significantly elevated (~1.3 fold) and a significant increase in LDH release at 24 hrs. Interestingly, there was a ~1.4-fold upregulation of LC-3 expression post-LPS treatment indicating development of autophagy, which probably is a compensatory response to combat cellular injury induced by LPS. Treatment with LPS also reduced the size and morphology of cardiomyocyte spheroids. In an attempt to limit LPS-induced injury, cardiomyocytes were treated with exosomes derived from mesenchymal stromal cells (MSCs). We noted a significant suppression of LOX-1 expression that in turn suppressed apoptosis as well as autophagic response and restored spheroid morphology. Mass spectrophotometric analysis of MSC exosomes revealed a cargo rich in proteins which are involved in pathways negatively modulating cell death and apoptosis while promoting cell survival. This is first report to our knowledge on the initial molecular events in MSC exosome mediated cytoprotection of stressed cardiomyocytes."	"Loss of Dmrt5 Affects the Formation of the Subplate and Early Corticogenesis. Dmrt5 (Dmrta2) and Dmrt3 are key regulators of cortical patterning and progenitor proliferation and differentiation. In this study, we show an altered apical to intermediate progenitor transition, with a delay in SP neurogenesis and premature birth of Ctip2+ cortical neurons in Dmrt5-/- mice. In addition to the cortical progenitors, DMRT5 protein appears present in postmitotic subplate (SP) and marginal zone neurons together with some migrating cortical neurons. We observed the altered split of preplate and the reduced SP and disturbed radial migration of cortical neurons into cortical plate in Dmrt5-/- brains and demonstrated an increase in the proportion of multipolar cells in primary neuronal cultures from Dmrt5-/- embryonic brains. Dmrt5 affects cortical development with specific time sensitivity that we described in two conditional mice with slightly different deletion time. We only observed a transient SP phenotype at E15.5, but not by E18.5 after early (Dmrt5lox/lox;Emx1Cre), but not late (Dmrt5lox/lox;NestinCre) deletion of Dmrt5. SP was less disturbed in Dmrt5lox/lox;Emx1Cre and Dmrt3-/- brains than in Dmrt5-/- and affects dorsomedial cortex more than lateral and caudal cortex. Our study demonstrates a novel function of Dmrt5 in the regulation of early SP formation and radial cortical neuron migration. Our study demonstrates a novel function of Dmrt5 in regulating marginal zone and subplate formation and migration of cortical neurons to cortical plate."	"Ionizing radiation attracts tumor targeting and apoptosis by radiotropic lysyl oxidase traceable nanoparticles. Lysyl oxidase (LOX) is a cell-secreted amine oxidase that crosslinks collagen and elastin in extracellular microenvironment. LOX-traceable nanoparticles (LOXab-NPs) consisting of LOX antibodies (LOXab) and paclitaxel, can accumulate at high concentrations at radiation-treated target sites, as a tumor-targeting drug carrier for chemotherapy. Tumor-targeting and anticancer effects of PLGA based LOXab-NPs in vitro and in vivo were evaluated at radiation-targeted site. In the in vivo A549 lung carcinoma xenograft model, we showed highly specific tumor targeting (above 7.0 times higher) of LOXab-NPs on irradiated tumors. Notably, systemically administered NPs delayed tumor growth, reducing tumor volumes by more than 2 times compared with non-irradiated groups (222% vs. &gt;500%) over 2 weeks. Radiotropic LOXab-NPs can serve as chemotherapeutic vehicles for combined targeted chemo-radiotherapy in clinical oncology."	"A Targetron-Recombinase System for Large-Scale Genome Engineering of Clostridia. Clostridia are a group of Gram-positive anaerobic bacteria of medical and industrial importance for which limited genetic methods are available. Here, we demonstrate an approach to make large genomic deletions and insertions in the model Clostridium phytofermentans by combining designed group II introns (targetrons) and Cre recombinase. We apply these methods to delete a 50-gene prophage island by programming targetrons to position markerless lox66 and lox71 sites, which mediate deletion of the intervening 39-kb DNA region using Cre recombinase. Gene expression and growth of the deletion strain showed that the prophage genes contribute to fitness on nonpreferred carbon sources. We also inserted an inducible fluorescent reporter gene into a neutral genomic site by recombination-mediated cassette exchange (RMCE) between genomic and plasmid-based tandem lox sites bearing heterospecific spacers to prevent intracassette recombination. These approaches generally enable facile markerless genome engineering in clostridia to study their genome structure and regulation.IMPORTANCE Clostridia are anaerobic bacteria with important roles in intestinal and soil microbiomes. The inability to experimentally modify the genomes of clostridia has limited their study and application in biotechnology. Here, we developed a targetron-recombinase system to efficiently make large targeted genomic deletions and insertions using the model Clostridium phytofermentans We applied this approach to reveal the importance of a prophage to host fitness and introduce an inducible reporter by recombination-mediated cassette exchange."	"Postharvest melatonin treatment reduces chilling injury in sapota fruit. Sapota is a popular tropical fruit characterized by a very short postharvest life. Low-temperature storage prolongs postharvest life of sapota fruit, but chilling injury symptoms can develop if the storage temperature is less than 14 °C. There have been no reports on the effects of postharvest melatonin application on the development of chilling injury in sapota fruit during cold storage. The objective of this study was to investigate the effects of different concentrations of postharvest melatonin application (0, 30, 60 and 90 μmol L<sup>-1</sup> ) during cold storage (8 °C) for up to 30 days with an additional 1-day shelf life at ambient temperature. All melatonin treatments reduced chilling injury symptoms, reduced electrolyte leakage, malondialdehyde (MDA) content, H2 O2 and superoxide anion (O2<sup>-</sup> ), and increased proline content and the activity of superoxide dismutase (SOD), catalase (CAT) and γ-aminobutyric acid (GABA), and reduced the activities of phospholipase D (PLD) and lipoxygenase (LOX) compared to the control. Postharvest melatonin treatment could be a useful strategy for reducing chilling injury during cold storage and transport of sapota fruit. The results indicate that melatonin reduces chilling injury of sapota fruit through maintaining membrane integrity, SOD and CAT activities, and reducing PLD and LOX activities. © 2019 Society of Chemical Industry."	"Simultaneous Deletion of Virulence Factors and Insertion of Antigens into the Infectious Laryngotracheitis Virus Using NHEJ-CRISPR/Cas9 and Cre-Lox System for Construction of a Stable Vaccine Vector. Infectious laryngotracheitis virus (ILTV) is a promising vaccine vector due to its heterologous gene accommodation capabilities, low pathogenicity, and potential to induce cellular and humoral arms of immunity. Owing to these characteristics, different gene-deletion versions of ILTVs have been successfully deployed as a vector platform for the development of recombinant vaccines against multiple avian viruses using conventional recombination methods, which are tedious, time-demanding, and error-prone. Here, we applied a versatile, and customisable clustered regularly interspaced short palindromic repeats (CRISPR)/Cas9 accompanied with Cre-Lox system to simultaneously delete virulence factors and to insert foreign genes in the ILTV genome. Using this pipeline, we successfully deleted thymidine kinase (TK) and unique short 4 (US4) genes and inserted fusion (F) gene of the Newcastle disease virus without adversely affecting ILTV replication and expression of the F protein. Taken together, the proposed approach offers novel tools to attenuate (by deletion of virulence factor) and to generate multivalent (by insertion of heterologous genes) vaccine vectors to protect chickens against pathogens of poultry and public health importance."	"Trehalose Protects Maize Plants from Salt Stress and Phosphorus Deficiency. This study is undertaken to elucidate the role of trehalose (Tre) in mitigating oxidative stress under salinity and low P in maize. Eight-day-old maize seedlings of two maize varieties, BARI Hybrid Maize-7 and BARI Hybrid Maize-9, were subjected to salinity (150 mM NaCl), low P (5 µM KH2PO4) and their combined stress with or without 10 mM Tre for 15 d. Salinity and combined stress significantly inhibited the shoot length, root length, and root volume, whereas low P increased the root length and volume in both genotypes. Exogenous Tre in the stress treatments increased all of the growth parameters as well as decreased the salinity, low P, and combined stress-mediated Na<sup>+</sup>/K<sup>+</sup>, reactive oxygen species (ROS), malondialdehyde (MDA), lipoxygenase (LOX) activity, and methylglyoxal (MG) in both genotypes. Individually, salinity and low P increased superoxide dismutase (SOD) activity in both genotypes, but combined stress decreased the activity. Peroxidase (POD) activity increased in all stress treatments. Interestingly, Tre application enhanced the SOD activity in all the stress treatments but inhibited the POD activity. Both catalase (CAT) and glutathione peroxidase (GPX) activity were increased by saline and low P stress while the activities inhibited in combined stress. Similar results were found for ascorbate peroxidase (APX), glutathione peroxidase (GR), and dehydroascorbate reductase (DHAR) activities in both genotypes. However, monodehydroascorbate reductase (MDHAR) activity was inhibited in all the stresses. Interestingly, Tre enhanced CAT, APX, GPX, GR, MDHAR, and DHAR activities suggesting the amelioration of ROS scavenging in maize under all the stresses. Conversely, increased glyoxalase activities in saline and low P stress in BHM-9 suggested better MG detoxification system because of the down-regulation of glyoxalase-I (Gly-I) activity in BHM-7 in those stresses. Tre also increased the glyoxalase activities in both genotypes under all the stresses. Tre improved the growth in maize seedlings by decreasing Na<sup>+</sup>/K<sup>+</sup>, ROS, MDA, and MG through regulating antioxidant and glyoxalase systems."	"Bioinformatics Analysis of the Lipoxygenase Gene Family in Radish (Raphanus sativus) and Functional Characterization in Response to Abiotic and Biotic Stresses. Lipoxygenases (LOXs) are non-heme iron-containing dioxygenases involved in many developmental and stress-responsive processes in plants. However, little is known about the radish LOX gene family members and their functions in response to biotic and abiotic stresses. In this study, we completed a genome-wide analysis and expression profiling of RsLOX genes under abiotic and biotic stress conditions. We identified 11 RsLOX genes, which encoded conserved domains, and classified them in 9-LOX and 13-LOX categories according to their phylogenetic relationships. The characteristic structural features of 9-LOX and 13-LOX genes and the encoded protein domains as well as their evolution are presented herein. A qRT-PCR analysis of RsLOX expression levels in the roots under simulated drought, salinity, heat, and cold stresses, as well as in response to a Plasmodiophora brassicae infection, revealed three tandem-clustered RsLOX genes that are involved in responses to various environmental stresses via the jasmonic acid pathway. Our findings provide insights into the evolution and potential biological roles of RsLOXs related to the adaptation of radish to stress conditions."	"2-Arylidene-1-indandiones as Pleiotropic Agents with Antioxidant and Inhibitory Enzymes Activities. Indandiones are a relatively new group of compounds presenting a wide range of biological activities. The synthesis of these compounds was performed via a Knoevenagel reaction between an aldehyde and 1,3-indandione and were obtained with a yield up to 54%. IR, <sup>1</sup>H-Nucleic Magnetic Resonance (NMR), <sup>13</sup>C-NMR, LC/MS ESI<sup>+</sup> and elemental analysis were used for the confirmation of the structures of the novel derivatives. Lipophilicity values of compounds were calculated theoretically and experimentally by reversed chromatography method as values RM. The novel derivatives were studied through in vitro and in vivo experiments for their activity as anti-inflammatory and antioxidant agents and as inhibitors of lipoxygenase, trypsin, and thrombin. The inhibition of the carrageenin-induced paw edema (CPE) was also determined for representative structures. In the above series of experiments, we find that all the compounds showed moderate to satisfying interaction with the stable DPPH free radical in relation to the concentration and the time 2-arylidene-1-indandione (10) was the strongest. We observed moderate or very low antioxidant activities for selected compounds in the decolorization assay with ABTS<sup>+•</sup>. Most of the compounds showed high anti-lipid peroxidation of linoleic acid induced by AAPH.2-arylidene-1-indandione (7) showed a strongly inhibited soybean LOX. Only 2-arylidene-1-indandione (3) showed moderate scavenging activity of superoxide anion, whereas 2-arylidene-1-indandione (8) and 2-arylidene-1-indandione (9) showed very strong inhibition on proteolysis. 2-arylidene-1-indandione (8) highly inhibited serine protease thrombin. 2-arylidene-1-indandiones (7, 8 and 9) can be used as lead multifunctional molecules. The compounds were active for the inhibition of the CPE (30-57%) with 2-arylidene-1-indandione (1) being the most potent (57%). According to the predicted results a great number of the derivatives can cross the Blood-Brain Barrier (BBB), act in CNS and easily transported, diffused, and absorbed. Efforts are conducted a) to correlate quantitatively the in vitro/in vivo results with the most important physicochemical properties of the structural components of the molecules and b) to clarify the correlation of actions among them to propose a possible mechanism of action. Hydration energy as EHYDR and highest occupied molecular orbital (HOMO) better describe their antioxidant profile whereas the lipophilicity as RM values governs the in vivo anti-inflammatory activity. Docking studies are performed and showed that soybean LOX oxidation was prevented by blocking into the hydrophobic domain the substrates to the active site."	"FSTL3 Induces Lipid Accumulation and Inflammatory Response in Macrophages and Associates With Atherosclerosis. FSTL3 as adipokine takes part in dyslipidemia and inflammatory response, but the association of FSTL3 with atherosclerosis is unclear. This study indicated that FSTL3 showed significantly higher level (control: 7.68 ± 3.10 vs. AS: 9.29 ± 2.37 ng/mL; P &lt; 0.001) in atherosclerosis, and FSTL3 expressed higher in plaque of ApoE knockout mice and located in macrophages. Oxidized low-density lipoproteins induced expression and secretion of FSTL3, meanwhile FSTL3 promoted lipid accumulation in macrophages. The advanced study found that FSTL3 upregulated CD36 and LOX-1 expression in a dose-dependent manner; however, FSTL3 also evoked interleukin 1-β (IL1-β), monocyte chemoattractant protein 1 (MCP-1), tumor necrosis factor-α, and matrix metalloproteinase-9 (MMP-9) secretion in macrophages. On the contrary, that downregulated FSTL3 attenuated expression of oxidized low-density lipoproteins induced CD36, LOX-1, and inflammatory cytokines expressing. All of these results demonstrated that FSTL3 as a novelty cytokine takes part in the process of atherosclerosis through increasing lipid accumulation and inflammation through regulating CD36 and LOX-1 expression."	"Dietary Apigenin Reduces Induction of LOX-1 and NLRP3 Expression, Leukocyte Adhesion, and Acetylated Low-Density Lipoprotein Uptake in Human Endothelial Cells Exposed to Trimethylamine-N-Oxide. By inducing vascular inflammation, trimethylamine-N-oxide (TMAO) is associated with endothelial dysfunction, atherosclerosis, and enhanced risk of cardiovascular diseases in humans. However, the underlying mechanisms are unknown. Expression of several genes related to arteriosclerosis, inflammasomes, and endothelial dysfunction was quantified by polymerase chain reaction after exposure to TMAO. LOX-1, ICAM-1, and NLRP3 were also quantified by Western blot, whereas leukocytic adhesion was examined using fluorescently labeled U937 cells. Scavenger receptors, adhesion molecules, and other genes associated with atherosclerosis were induced in endothelial cells exposed to TMAO. On the other hand, apigenin, a flavonoid that is abundant in parsley and celery, prevents initial arteriosclerosis events in endothelial cells. Apigenin reversed the effects of TMAO on mRNA expression of LOX-1, SREC, SR-PSOX, NLRP3, ASC, TXNIP, VCAM-1, ICAM-1, and MCP-1, as well as protein expression of LOX-1, the adhesion molecule ICAM-1, and the inflammasome protein NLRP3. Apigenin also suppressed leukocyte adhesion and uptake of acetylated low-density lipoprotein. The data indicate that expression of scavenger receptors and adhesion molecules in response to TMAO, along with formation of NLRP3 inflammasomes, may drive endothelial dysfunction through uptake of acetylated low-density lipoprotein and lymphocyte adhesion. Apigenin reverses these effects, implying that it may also prevent arteriosclerosis."	"Astrocyte-Targeted Transporter-Utilizing Derivatives of Ferulic Acid Can Have Multifunctional Effects Ameliorating Inflammation and Oxidative Stress in the Brain. Ferulic acid (FA) is a natural phenolic antioxidant, which can exert also several other beneficial effects to combat neuroinflammation and neurodegenerative diseases, such as Alzheimer's disease. One of these properties is the inhibition of several enzymes and factors, such as β-site amyloid precursor protein (APP) cleaving enzyme 1 (BACE1), cyclooxygenases (COXs), lipoxygenases (LOXs), mammalian (or mechanistic) target for rapamycin (mTOR), and transcription factor NF-κB. We have previously synthesized three L-type amino acid transporter 1- (LAT1-) utilizing FA-derivatives with the aim to develop brain-targeted prodrugs of FA. In the present study, the cellular uptake and bioavailability of these FA-derivatives were evaluated in mouse primary astrocytic cell cultures together with their inhibitory effects towards BACE1, COX/LOX, mTOR, NF-κB, acetylcholinesterase (AChE), and oxidative stress. According to the results, all three FA-derivatives were taken up 200-600 times more effectively at 10 μM concentration into the astrocytes than FA, with one derivative having a high intracellular bioavailability (Kp,uu), particularly at low concentrations. Moreover, all of the derivatives were able to inhibit BACE1, COX/LOX, AChE, and oxidative stress measured as decreased cellular lipid peroxidation. Furthermore, one of the derivatives modified the total mTOR amount. Therefore, these derivatives have the potential to act as multifunctional compounds preventing β-amyloid accumulation as well as combating inflammation and reducing oxidative stress in the brain. Thus, this study shows that converting a parent drug into a transporter-utilizing derivative not only may increase its brain and cellular uptake, and bioavailability but can also broaden the spectrum of pharmacological effects elicited by the derivative."	"Alpha-linolenic acid enhances the phagocytic and secretory functions of alternatively activated macrophages in part via changes to the oxylipin profile. Alternatively activated macrophages are innate immune cells that contribute to resolution of inflammation and maintenance of homeostasis. Modulation of available fatty acid sources is thought to affect cellular physiology through a variety of mechanisms, including through alterations to the profile of oxygenated free fatty acid metabolites, called oxylipins, produced in a cell type specific manner. Here, we investigated how treatment with the plant-sourced omega-3 fatty acid α-linolenic acid (ALA) affects the oxylipin profile and functional capacity of a cell culture model of human alternatively activated (M2a-like) macrophages. In a targeted but unbiased screen, ALA enhanced the production of oxylipins from all polyunsaturated fatty acid (PUFA) precursors, with oxylipins derived from ALA being enhanced the most. Consistently, ALA treatment enhanced the expression of both cytoplasmic and calcium-independent phospholipase A2. At a functional level, ALA treatment increased phagocytic activity and altered production of the chemokine MCP-1 by M2a-like cells in a manner dependent on the time of treatment. ALA treatment during polarization increased MCP-1 secretion, which was sensitive to pharmacological inhibition of 15-LOX-1 by ML351. Thus, ALA modulates the phenotype of alternatively activated macrophages, likely through its own LOX-derived oxylipins and/or through general modulation of oxylipin biosynthesis. These effects likely contribute to the overall anti-inflammatory benefit observed with ALA supplementation."	"Inclusion of Ethanol Extract of Mesquite Leaves to Enhance the Oxidative Stability of Pork Patties. The lipid oxidation (LOX) of pork meat has been associated with loss of quality and shorter shelf life. Consequently, synthetic antioxidants have been used to reduce this process, but their use has shown potential health risks. Thus, the use of natural ingredients has been suggested as a strategy to prevent LOX. This study aimed to assess the oxidative stability of pork patties treated with ethanol extract of mesquite leaf (EEML) during storage. Furthermore, the polyphenol composition (TPC, total phenolic, TFC, total flavonoid) and antioxidant activity (antiradical and reducing power activity) of EEML were also evaluated. For this study, five treatments (CN (control), without antioxidant; Asc, ascorbic acid 0.02%; BHT, butylated hydroxytoluene 0.02%; EEML1, 0.05%; and EEML2, 0.1%) of pork patties were applied. Patty samples were stored at 4 °C, and physicochemical parameters, lipid oxidation, total antioxidant capacity of the meat, and sensory analysis were evaluated at 0, 3, 7, and 10 days of storage. EEML presented high values of TPC (278.5 mg gallic acid equivalent (GAE)/g) and TFC (226.8 mg rutin equivalents (RE)/g) levels. The addition of EEML did not modify the chemical composition of the pork patties. On the other hand, colour parameters were affected by the inclusion of EEML in pork patties, presenting the lowest a* in the CN group compared to the other groups after 10 days storage. Lipid oxidation increased during the whole period, showing the lowest (P &lt; 0.05) conjugated dienes and thiobarbituric acid reactive substances (TBARS) values (40% and 90% of inhibition, respectively) compared to the CN group. Regarding sensory analysis, there were no significant differences in colour, appearance, odour, flavour, juiciness, fat sensation, and firmness of the cooked pork patties among treatments. These results suggest that EEML has great potential as a natural antioxidant for meat products."	"Exotoxins from Staphylococcus aureus activate 5-lipoxygenase and induce leukotriene biosynthesis. Massive neutrophil infiltration is an early key event in infectious inflammation, accompanied by chemotactic leukotriene (LT)B4 generation. LTB4 biosynthesis is mediated by 5-lipoxygenase (5-LOX), but which pathogenic factors cause 5-LOX activation during bacterial infections is elusive. Here, we reveal staphylococcal exotoxins as 5-LOX activators. Conditioned medium of wild-type Staphylococcus aureus but not of exotoxin-deficient strains induced 5-LOX activation in transfected HEK293 cells. Two different staphylococcal exotoxins mimicked the effects of S. aureus-conditioned medium: (1) the pore-forming toxin α-hemolysin and (2) amphipathic α-helical phenol-soluble modulin (PSM) peptides. Interestingly, in human neutrophils, 5-LOX activation was exclusively evoked by PSMs, which was prevented by the selective FPR2/ALX receptor antagonist WRW4. 5-LOX activation by PSMs was confirmed in vivo as LT formation in infected paws of mice was impaired in response to PSM-deficient S. aureus. Conclusively, exotoxins from S. aureus are potent pathogenic factors that activate 5-LOX and induce LT formation in neutrophils."	"Microglial cell-derived interleukin-6 influences behavior and inflammatory response in the brain following traumatic brain injury. Traumatic brain injury (TBI) is a major health problem with high rates of mortality and morbidity worldwide. The response of the brain to TBI is orchestrated by a number of cytokines, including interleukin-6 (IL-6). IL-6 is a major cytokine in the central nervous system and it is produced by different cells, such as neurons, glial cells, and endothelial cells. Since glial cells are one of the most important sources and targets of IL-6, we have examined the role of microglia-derived IL-6 in normal conditions and following a model of TBI, cryolesion of the somatosensorial cortex. To this end, tamoxifen-inducible microglial IL-6-deficient (Il6<sup>ΔMic</sup> , using Cx3cr1 <sup>CreER</sup> model) mice and control (Il6<sup>lox/lox</sup> ) mice were used. In normal conditions, microglial IL-6 deficiency reduced deambulation and exploratory behavior and decreased anxiety in a sex-dependent manner. The transcriptome profile following cryolesion was dramatically altered 1 day post-lesion in Il6<sup>ΔMic</sup> compared with Il6<sup>lox/lox</sup> mice. However, the phenotype of Il6<sup>ΔMic</sup> mice was less compromised in the following days, suggesting that compensatory mechanisms are at play."	"Participation of 5-lipoxygenase and LTB4 in liver regeneration after partial hepatectomy. Regeneration is the unmatched liver ability for recovering its functional mass after tissue lost. Leukotrienes (LT) are a family of eicosanoids with the capacity of signaling to promote proliferation. We analyzed the impact of blocking LT synthesis during liver regeneration after partial hepatectomy (PH). Male Wistar rats were subjected to two-third PH and treated with zileuton, a specific inhibitor of 5-lipoxygenase (5-LOX). Our first find was a significant increment of intrahepatic LTB4 during the first hour after PH together with an increase in 5-LOX expression. Zileuton reduced hepatic LTB4 levels at the moment of hepatectomy and also inhibited the increase in hepatic LTB4. This inhibition produced a delay in liver proliferation as seen by decreased PCNA and cyclin D1 nuclear expression 24 h post-PH. Results also showed that hepatic LTB4 diminution by zileuton was associated with a decrease in NF-ĸB activity. Additionally, decreased hepatic LTB4 levels by zileuton affected the recruitment of neutrophils and macrophages. Non-parenchymal cells (NPCs) from zileuton-treated PH-rats displayed higher apoptosis than NPCs from PH control rats. In conclusion, the present work provides evidences that 5-LOX activation and its product LTB4 are involved in the initial signaling events for liver regeneration after PH and the pharmacological inhibition of this enzyme can delay the initial time course of the phenomenon."	"Enzymatic synthesis of fatty acid esters of trehalose: Process optimization, characterization of the esters and evaluation of their bioactivities. One-pot synthesis of caprylic, lauric and palmitic acid mono- and diesters of trehalose was catalyzed by the lipase Fermase CALB™ 10000. An optimized molar conversion of 35% of trehalose to its palmitate esters was obtained in acetone at 60 °C with a trehalose:palmitic acid molar ratio of 1:5 in 4 h. Trehalose fatty acid esters (THFAE) were purified by column chromatography and characterized using TLC, HPTLC, HR-MS, ATR-FTIR, and differential scanning calorimetry. THFAE were studied for their antimicrobial potential against four bacterial, and two fungal species. Trehalose monolaurate and trehalose dicaprylate demonstrated MIC of 0.45 mM and 16 mM against Pseudomonas aeruginosa and Escherichia coli, respectively. Trehalose monocaprylate showed the highest inhibition of biofilm forming property against Staphylococcus aureus (86.25%) at 99.2 mM and trehalose dipalmitate had lowest IC50 of 13.23 mM. Furthermore, their anti-inflammatory property was studied in vitro using 15-LOX inhibition assay and human red blood cell membrane stabilization assay. In the confirmatory in vivo tests using carrageenan-induced rat paw edema assay, inflammation in disease control group reached up to 63% as against 32% and 20% for trehalose dilaurate and diclofenac treated groups, respectively. THFAE can hence find potential applications in pharmaceuticals, functional foods, and nutraceuticals."	"Genetically Directed Sparse Labeling System for Anatomical Studies of Retinal Ganglion Cells. The stereotypic dendritic morphology is one of the landmark characteristics for classifying retinal ganglion cell (RGC) subtypes. These unique dendritic morphologies and their corresponding stratification level in the inner plexiform layer are indicators of their physiological function and presynaptic connection with other neurons. Mis-patterned dendritic morphologies underlie many neurological disease conditions. To streamline the morphological analysis of RGCs, here, we describe a simple protocol using Cre-/lox-dependent genetically directed sparse labeling strategy on flat-mounted retinas to inspect dendritic morphology of specific RGC subtypes."	"Hepatic PGC-1α is not essential for fasting-induced cytochrome p450 regulation in mouse liver. Fasting has been shown to regulate the expression of the cytochrome p450 (CYP) enzyme system in the liver. However, the exact mechanism behind the fasting-induced regulation of the CYP's remains unknown. In the present study we tested the hypothesis that the peroxisome proliferator-activated receptor gamma coactivator 1α (PGC-1α), which is a key-regulator of energy metabolism, is responsible for the fasting-induced regulation of the CYP's. Lox/lox and liver specific PGC-1α (LKO) mice of both sexes, fasted for 18 h and the content of the CYP's as well as the hepatic metabolome was assessed. Fasting increased the mRNA content of Cyp2a4, Cyp2e1, Cyp3a11 and Cyp4a10. The fasting-induced response in Cyp4a10 mRNA content was different between lox/lox and LKO mice, while the absence of PGC-1α had no effect on the fasting-induced response for the other Cyp's. Moreover, the fasting-induced response in mRNA content of Sirtinus 1 and Perilipin 2 was different between lox/lox and LKO mice. Only the CYP1A isoform showed a fasting-induced response at the protein level. Absence of hepatic PGC-1α had no effect on the apparent metabolome, where fasting vs fed was the only discriminate in the following multivariate analysis. In conclusion, hepatic PGC-1α is not essential for the fasting-induced regulation of hepatic CYP's."	"Pharmaceutical analysis combined with in-silico therapeutic and toxicological profiling on zileuton and its impurities to assist in modern drug discovery. The obligatory testing of drug molecules and their impurities to protect users against toxic compounds seems to provide interesting opportunities for new drug discovery. Impurities, which proved to be non-toxic, may be explored for their own therapeutic potential and thus be a part of future drug discovery. The essential role of pharmaceutical analysis can thus be extended to achieve this purpose. The present study examined these objectives by characterizing the major degradation products of zileuton (ZLT), a 5-lipoxygenase (5-LOX) inhibitor being prevalently used to treat asthma. The drug sample was exposed to forced degradation and found susceptible to hydrolysis and oxidative stress. The obtained Forced Degradation Products (FDP's) were resolved using an earlier developed and validated Ultra-High-Pressure Liquid Chromatography Photo-Diode-Array (UHPLC-PDA) protocol. ZLT, along with acid-and alkali-stressed samples, were subjected to Liquid-chromatography Mass-spectrometry Quadrupole Time-of-flight (LC/MS-QTOF) studies. Major degradation products were isolated using Preparative TLC and characterized using Q-TOF and/or Proton nuclear magnetic resonance (<sup>1</sup>HNMR) studies. The information obtained was assembled for structural conformation. Toxicity Prediction using Komputer Assisted Technology (TOPKAT) toxicity analyses indicated some FDP's as non-toxic when compared to ZLT. Hence, these non-toxic impurities may have bio-affinity and can be explored to interact with other therapeutic targets, to assist in drug discovery. The drug molecule and the characterized FDP's were subjected to 3-Dimensional Extra Precision (3D-XP)-molecular docking to explore changes in bio-affinity for the 5-LOX enzyme (PDB Id: 3V99). One FDP was found to have a higher binding affinity than the drug itself, indicating it may be a suitable antiasthmatic. The possibility of being active at other sites cannot be neglected and this is evaluated to a reasonable extent by Prediction of Activity Spectra for Substances (PASS). Besides being antiasthmatic, some FDP's were predicted antineoplastic, antiallergic and inhibitors of Complement Factor-D."	"Bioprofiles and mechanistic pathways associated with Cheyne-Stokes respiration: insights from the SERVE-HF trial. The SERVE-HF trial included patients with heart failure and reduced ejection fraction (HFrEF) with sleep-disordered breathing, randomly assigned to treatment with Adaptive-Servo Ventilation (ASV) or control. The primary outcome was the first event of death from any cause, lifesaving cardiovascular intervention, or unplanned hospitalization for worsening heart failure. A subgroup analysis of the SERVE-HF trial suggested that patients with Cheyne-Stokes respiration (CSR) &lt; 20% (low CSR) experienced a beneficial effect from ASV, whereas in patients with CSR ≥ 20% ASV might have been harmful. Identifying the proteomic signatures and the underlying mechanistic pathways expressed in patients with CSR could help generating hypothesis for future research. Using a large set of circulating protein-biomarkers (n = 276, available in 749 patients; 57% of the SERVE-HF population) we sought to investigate the proteins associated with CSR and to study the underlying mechanisms that these circulating proteins might represent. The mean age was 69 ± 10 years and &gt; 90% were male. Patients with CSR &lt; 20% (n = 139) had less apnoea-hypopnea index (AHI) events per hour and less oxygen desaturation. Patients with CSR &lt; 20% might have experienced a beneficial effect of ASV treatment (primary outcome HR [95% CI] = 0.55 [0.34-0.88]; p = 0.012), whereas those with CSR ≥ 20% might have experienced a detrimental effect of ASV treatment (primary outcome HR [95% CI] = 1.39 [1.09-1.76]; p = 0.008); p for interaction = 0.001. Of the 276 studied biomarkers, 8 were associated with CSR (after adjustment and with a FDR1%-corrected p value). For example, higher PAR-1 and ITGB2 levels were associated with higher odds of having CSR &lt; 20%, whereas higher LOX-1 levels were associated with higher odds of CSR ≥ 20%. Signalling, metabolic, haemostatic and immunologic pathways underlie the expression of these biomarkers. We identified proteomic signatures that may represent underlying mechanistic pathways associated with patterns of CSR in HFrEF. These hypothesis-generating findings require further investigation towards better understanding of CSR in HFrEF. PAR-1 proteinase-activated receptor 1, ADM adrenomedullin, HSP-27 heat shock protein-27, ITGB2 integrin beta 2, GLO1 glyoxalase 1, ENRAGE/S100A12 S100 calcium-binding protein A12, LOX-1 lectin-like LDL receptor 1, ADAM-TS13 disintegrin and metalloproteinase with a thrombospondin type 1 motif, member13 also known as von Willebrand factor-cleaving protease."	"Therapeutic and prophylactic deletion of IL-4Ra-signaling ameliorates established ovalbumin induced allergic asthma. Allergic asthma is a chronic inflammatory airway disease driven predominantly by a TH 2 immune response to environmental allergens. IL-4Rα-signaling is essential for driving TH 2-type immunity to allergens. Anti-TH 2 therapies have the potential to effectively reduce airway obstruction and inflammation in allergic asthma. We investigated potential therapeutic effects of selective inhibition of this pathway in mice with established allergic airway disease. We further investigated whether IL-4Rα disruption in systemically sensitized mice can prevent the onset of the disease. We used Rosa<sup>creERT2</sup> IL-4Rα<sup>-/lox</sup> mice, a tamoxifen (TAM)-inducible IL-4Rα knockdown model to investigate the role of IL-4/IL-13 signaling prior to the onset of the disease and during the effector phase in the ovalbumin-induced allergic airway disease. Inducible deletion of IL-4Rα demonstrated therapeutic effects, on established allergic airway disease, and prevented the development of ovalbumin-induced airway hyperreactivity, eosinophilia, and goblet cell metaplasia in allergen-sensitized mice. Interestingly, IL-4Rα knockdown after allergic sensitization did not induce TH 17, a neutrophilic inflammatory response as observed in global IL-4Rα-deficient mice after intranasal allergen challenge. Abrogation of IL-4Rα signaling after allergic sensitization would have significant therapeutic benefit for TH 2-type allergic asthma."	"Lipidomics links oxidized phosphatidylcholines and coronary arteritis in Kawasaki disease. Coronary arteritis is a life-threatening complication that may arise in the acute stage of Kawasaki disease (KD), the leading cause of systemic vasculitis in childhood. Various microorganisms and molecular pathogens have been reported to cause KD. However, little is known about the key molecules that contribute to the development of coronary arteritis in KD. To identify causative molecules for coronary arteritis in KD, we prospectively recruited 105 patients with KD and 65 disease controls in 4 different parts of Japan from 2015 to 2018. During this period, we conducted lipidomics analyses of their sera using liquid chromatography (LC)-mass spectrometry (MS). The comprehensive LC-MS system detected a total of 27,776 molecules harboring the unique retention time and m/z values. In the first cohort of 57 KD patients, we found that a fraction of these molecules showed enrichment patterns that varied with the sampling region and season. Among them, 28 molecules were recurrently identified in KD patients, but not in controls. The second and third cohorts of 48 more patients with KD revealed that these molecules were correlated with inflammatory markers (leukocyte counts and C-reactive proteins) in the acute stage. Notably, two of these molecules (m/z values: 822.55 and 834.59) were significantly associated with the development of coronary arteritis in the acute stage of KD. Their fragmentation patterns in the tandem MS/MS analysis were consistent with those of oxidized phosphatidylcholines. Further LC-MS/MS analysis supported the concept that reactive oxygen species caused the non-selective oxidization of phosphatidylcholines in KD patients. In addition, the concentrations of LOX-1 ligand containing apolipoprotein B in the plasma of KD patients were significantly higher than in controls. These data suggest that inflammatory signals activated by oxidized phospholipids are involved in the pathogenesis of coronary arteritis in KD. Because the present study recruited only Japanese patients, further examinations are required to determine whether oxidized phosphatidylcholines might be useful biomarkers for the development of coronary arteritis in broad populations of KD."	"Maximal exercise and erythrocyte epoxy fatty acids: a lipidomics study. Fatty acid (FA)-derived lipid products generated by cytochrome P450 (CYP), lipoxygenase (LOX), and cyclo-oxygenase (COX) influence cardiovascular function. However, plasma measurements invariably ignore 40% of the blood specimen, namely the erythrocytes. These red blood cells (RBCs) represent a cell mass of about 3 kg. RBCs are a potential reservoir for epoxy fatty acids, which on release could regulate vascular capacity. We tested the hypothesis that maximal physical activity would influence the epoxy fatty acid status in RBCs. We used a standardized maximal treadmill exercise according to Bruce to ensure a robust hemodynamic and metabolic response. Central hemodynamic monitoring was performed using blood pressure and heart rate measurements and maximal workload was assessed in metabolic equivalents (METs). We used tandem mass spectrometry (LC-MS/MS) to measure epoxides derived from CYP monooxygenase, as well as metabolites derived from LOX, COX, and CYP hydroxylase pathways. Venous blood was obtained for RBC lipidomics. With the incremental exercise test, increases in the levels of various CYP epoxy-mediators in RBCs, including epoxyoctadecenoic acids (9,10-EpOME, 12,13-EpOME), epoxyeicosatrienoic acids (5,6-EET, 11,12-EET, 14,15-EET), and epoxydocosapentaenoic acids (16,17-EDP, 19,20-EDP) occurred, as heart rate, systolic blood pressure, and plasma lactate concentrations increased. Maximal (13.5 METs) exercise intensity had no effect on diols and various LOX, COX, and hydroxylase mediators. Our findings suggest that CYP epoxy-metabolites could contribute to the cardiovascular response to maximal exercise."	"The wmN1 Enhancer Region of the Mouse Myelin Proteolipid Protein Gene (mPlp1) is Indispensable for Expression of an mPlp1-lacZ Transgene in Both the CNS and PNS. The myelin proteolipid protein gene (PLP1) encodes the most abundant protein in CNS myelin. Expression of the gene must be strictly regulated, as evidenced by human X-linked leukodystrophies resulting from variations in PLP1 copy number, including elevated dosages as well as deletions. Recently, we showed that the wmN1 region in human PLP1 (hPLP1) intron 1 is required to promote high levels of an hPLP1-lacZ transgene in mice, using a Cre-lox approach. The current study tests whether loss of the wmN1 region from a related transgene containing mouse Plp1 (mPlp1) DNA produces similar results. In addition, we investigated the effects of loss of another region (ASE) in mPlp1 intron 1. Previous studies have shown that the ASE is required to promote high levels of mPlp1-lacZ expression by transfection analysis, but had no effect when removed from the native gene in mouse. Whether this is due to compensation by another regulatory element in mPlp1 that was not included in the mPlp1-lacZ constructs, or to differences in methodology, is unclear. Two transgenic mouse lines were generated that harbor mPLP(+)Z/FL. The parental transgene utilizes mPlp1 sequences (proximal 2.3 kb of 5'-flanking DNA to the first 37 bp of exon 2) to drive expression of a lacZ reporter cassette. Here we demonstrate that mPLP(+)Z/FL is expressed in oligodendrocytes, oligodendrocyte precursor cells, olfactory ensheathing cells and neurons in brain, and Schwann cells in sciatic nerve. Loss of the wmN1 region from the parental transgene abolished expression, whereas removal of the ASE had no effect."	"Role of oxidative stress-related biomarkers in heart failure: galectin 3, α1-antitrypsin and LOX-1: new therapeutic perspective? Heart failure (HF) is considered one of the most common diseases and one of the major causes of death. The latest studies show that HF is associated with an increase in oxidative stress. The use of antioxidants as therapy is effective in animal models, but not in humans. In this review, we analyse some emerging markers related to oxidative stress, evaluating their possible use as therapeutic targets: galectin-3, a β galactoside associated with myocardial fibrosis, α1-antitrypsin, an antiprotease and lectin-like oxidized low-density-lipoprotein receptor-1, the major receptor for ox-LDL. The up-regulation of galectin-3 appears to be associated with HF, atrial fibrillation, dilated cardiomyopathy, fibrogenesis and mortality, while in other cases it seems that galectin-3 may be protective in ischaemia-reperfusion injury. Serum α1-antitrypsin protein levels may increase in the presence of high concentrations of serum proteases, which are over expressed during reperfusion. The overexpression of α1-antitrypsin or the exogenous α1-antitrypsin treatment exhibits an anti-oxidative stress role, evaluated by increased eNOS expression and by decreased MMP9 expression, implicated in HF. The cardiac lectin-like oxidized low-density-lipoprotein receptor-1 is activated by oxidative stress in ischaemia-reperfusion injury, inducing apoptosis in cardiomyocytes through the deleterious NF-kB pathway, while the administration of anti-lectin-like oxidized low-density-lipoprotein receptor-1 antibody suppresses apoptosis and reduces the extent of myocardial infarction. In conclusion, α1-antitrypsin and lectin-like oxidized low-density-lipoprotein receptor-1 seem to represent two good markers in HF and therapeutic targets, whereas galectin-3 does not."	"Naringin Reverses High-Cholesterol Diet-Induced Vascular Dysfunction and Oxidative Stress in Rats via Regulating LOX-1 and NADPH Oxidase Subunit Expression. Hypercholesterolaemia is associated with oxidative stress and endothelial dysfunction and leads to the development of atherosclerosis. Naringin exhibits cardiovascular protective and antioxidant properties. Therefore, the aim of this study was to assess the effect of naringin administration on vascular oxidative stress and endothelial dysfunction in hypercholesterolaemic rats and to elucidate its underlying mechanism. Sprague Dawley rats were fed a diet with 1.5% cholesterol (HCD) for 8 weeks to induce hypercholesterolaemia. Naringin (100 mg/kg body weight) was orally administrated to rats during the last 4 weeks of the diet treatment. After 8 weeks, the thoracic aorta was isolated to determine vascular function and nitric oxide (NO) levels. The aortic superoxide anion (O2<sup>-</sup>) level was detected using dihydroethidium (DHE) fluorescence staining. Protein expression of lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1), nicotinamide adenine dinucleotide phosphate (NADPH) oxidase subunits, and inducible nitric oxide synthase (iNOS), as well as oxidative damage markers, was also evaluated in aortae. Naringin treatment of hypercholesterolaemic rats enhanced aortic NO levels, restored endothelium-dependent responses to acetylcholine (ACh), and reduced aortic O2<sup>-</sup> levels. Furthermore, naringin treatment decreased LOX-1, NADPH oxidase subunits (p47<sup>phox</sup>, Nox2, and Nox4), and iNOS as well as oxidative damage markers (3-nitrotyrosine (3-NT) and 4-hydroxynonenal (4-HNE)) expression in aortic tissues from hypercholesterolaemic rats. These results demonstrate that naringin treatment improves endothelium dysfunction in hypercholesterolaemic rats, at least partially by decreasing oxidative stress via downregulation of LOX-1 and NADPH oxidase."	"The 5-Lipoxygenase Inhibitor Zileuton Protects Pressure Overload-Induced Cardiac Remodeling via Activating PPARα. Zileuton has been demonstrated to be an anti-inflammatory agent due to its well-known ability to inhibit 5-lipoxygenase (5-LOX). However, the effects of zileuton on cardiac remodeling are unclear. In this study, the effects of zileuton on pressure overload-induced cardiac remodeling were investigated and the possible mechanisms were examined. Aortic banding was performed on mice to induce a cardiac remodeling model, and the mice were then treated with zileuton 1 week after surgery. We also stimulated neonatal rat cardiomyocytes with phenylephrine (PE) and then treated them with zileuton. Our data indicated that zileuton protected mice from pressure overload-induced cardiac hypertrophy, fibrosis, and oxidative stress. Zileuton also attenuated PE-induced cardiomyocyte hypertrophy in a time- and dose-dependent manner. Mechanistically, we found that zileuton activated PPARα, but not PPARγ or PPARθ, thus inducing Keap and NRF2 activation. This was confirmed with the PPARα inhibitor GW7647 and NRF2 siRNA, which abolished the protective effects of zileuton on cardiomyocytes. Moreover, PPARα knockdown abolished the anticardiac remodeling effects of zileuton in vivo. Taken together, our data indicate that zileuton protects against pressure overload-induced cardiac remodeling by activating PPARα/NRF2 signaling."	"Apolipoprotein E Deficiency Causes Endothelial Dysfunction in the Mouse Retina. Atherogenic lipoproteins may impair vascular reactivity consecutively causing tissue damage in multiple organs via abnormal perfusion and excessive reactive oxygen species generation. We tested the hypothesis that chronic hypercholesterolemia causes endothelial dysfunction and cell loss in the retina. Twelve-month-old apolipoprotein E-deficient (ApoE-/-) mice and age-matched wild-type controls were used in this study (n = 8 per genotype for each experiment). Intraocular pressure, blood pressure, and ocular perfusion pressure were determined. Retinal arteriole responses were studied in vitro, and reactive oxygen and nitrogen species were quantified in the retinal and optic nerve cryosections. The expression of the lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) and the NADPH oxidase isoforms, NOX1, NOX2, and NOX4, were determined in retinal cryosections by immunofluorescence microscopy. Pro- and antioxidant redox genes were quantified in retinal explants by PCR. Moreover, cell number in the retinal ganglion cell layer and axon number in the optic nerve was calculated. Responses to the endothelium-dependent vasodilator, acetylcholine, were markedly impaired in retinal arterioles of ApoE-/- mice (P &lt; 0.01). LOX-1 (P = 0.0007) and NOX2 (P = 0.0027) expressions as well as levels of reactive oxygen species (P = 0.0022) were increased in blood vessels but not in other retinal structures. In contrast, reactive nitrogen species were barely detectable in both mouse genotypes. Messenger RNA for HIF-1α, VEGF-A, NOX1, and NOX2, but also for various antioxidant redox genes was elevated in the retina of ApoE-/- mice. Total cell number in the retinal ganglion cell layer did not differ between ApoE-/- and wild-type mice (P = 0.2171). Also, axon number in the optic nerve did not differ between ApoE-/- and wild-type mice (P = 0.6435). Apolipoprotein E deficiency induces oxidative stress and endothelial dysfunction in retinal arterioles, which may trigger hypoxia in the retinal tissue. Oxidative stress in nonvascular retinal tissue appears to be prevented by the upregulation of antioxidant redox enzymes, resulting in neuron preservation."	"Low Density Granulocytes in ANCA Vasculitis Are Heterogenous and Hypo-Responsive to Anti-Myeloperoxidase Antibodies. Low Density Granulocytes (LDGs), which appear in the peripheral blood mononuclear cell layer of density-separated blood, are seen in cancer, sepsis, autoimmunity, and pregnancy. Their significance in ANCA vasculitis (AAV) is little understood. As these cells bear the autoantigens associated with this condition and have been found to undergo spontaneous NETosis in other diseases, we hypothesized that they were key drivers of vascular inflammation. We found that LDGs comprise a 3-fold higher fraction of total granulocytes in active vs. remission AAV and disease controls. They are heterogeneous, split between cells displaying mature (75%), and immature (25%) phenotypes. Surprisingly, LDGs (unlike normal density granulocytes) are hyporesponsive to anti-myeloperoxidase antibody stimulation, despite expressing myeloperoxidase on their surface. They are characterized by reduced CD16, CD88, and CD10 expression, higher LOX-1 expression and immature nuclear morphology. Reduced CD16 expression is like that observed in the LDG population in umbilical cord blood and in granulocytes of humanized mice treated with G-CSF. LDGs in AAV are thus a mixed population of mature and immature neutrophils. Their poor response to anti-MPO stimulation suggests that, rather than being a primary driver of AAV pathogenesis, LDGs display characteristics consistent with generic emergency granulopoiesis responders in the context of acute inflammation."	"Protective Effect of Ginkgolic Acid in Attenuating LDL Induced Inflammation Human Peripheral Blood Mononuclear Cells via Altering the NF-κB Signaling Pathway. Oxidized low-density lipoprotein (ox-LDL) is considered as the significant maker of inflammatory reaction. ox-LDL was reported to play a crucial role in the pathogenesis of atherosclerosis (AS). In the current study, we scrutinize the suppressive effect of ginkgolic acid against ox-LDL induced an oxidative and inflammatory response in human microvascular endothelial cells (HMEC-1) and human peripheral blood mononuclear cells (nPBMCs) and explore the mechanism of action. HMEC-1 cells are treated with ox-LDL in the presence of different concentration of ginkgolic acid. MTT 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide) assay was performed for the estimation of cell viability effect. Reactive oxygen species (ROS), inflammatory cytokines, and NF-κB activity are also estimated. For the hPBMCs assay, the cells were isolated from the healthy volunteers and cultured. The cells were further divided into different group and received the ginkgolic acid. Additionally, ROS, inflammatory marker such as prostaglandin E2 (PGE2), lipoxygenase (LOX), nitric oxide (NO), cyclooxygenase (COX) protein expression, and mRNA expression of tumor necrosis factor-α (TNF-α), interleukin-6 (IL-6), and vascular cell adhesion protein 1 (VCAM-1) were estimated in the ox-LDL treated group. The result exhibited that ginkgolic acid treatment induced the cell viability boosting in ox-LDL treatment and intracellular ROS significantly decreased by ginkgolic acid. Pro-inflammatory cytokines also downregulated via ginkgolic acid. Moreover, ginkgolic acid reduced the ox-LDL-induced NF-κB. The mRNA and protein expression of TNF-α, IL-6, and VCAM-1 considerably increased in the ox-LDL treated group and ginkgolic acid significantly reduced the mRNA and protein expression. An inflammatory marker such as PGE2, LOX, and NO were increased in the ox-LDL treated group and ginkgolic acid treated group exhibited the reduction of an inflammatory marker. Based on the result, we can conclude that ginkgolic acid significantly reduced and reversed the ox-LDL-induced modulation, suggesting its anti-inflammatory effect via the NF-κB pathway."	"Aldo-keto reductases protect metastatic melanoma from ER stress-independent ferroptosis. The incidence of melanoma is increasing over the years with a still poor prognosis and the lack of a cure able to guarantee an adequate survival of patients. Although the new immuno-based coupled to target therapeutic strategy is encouraging, the appearance of targeted/cross-resistance and/or side effects such as autoimmune disorders could limit its clinical use. Alternative therapeutic strategies are therefore urgently needed to efficiently kill melanoma cells. Ferroptosis induction and execution were evaluated in metastasis-derived wild-type and oncogenic BRAF melanoma cells, and the process responsible for the resistance has been dissected at molecular level. Although efficiently induced in all cells, in an oncogenic BRAF- and ER stress-independent way, most cells were resistant to ferroptosis execution. At molecular level we found that: resistant cells efficiently activate NRF2 which in turn upregulates the early ferroptotic marker CHAC1, in an ER stress-independent manner, and the aldo-keto reductases AKR1C1 ÷ 3 which degrades the 12/15-LOX-generated lipid peroxides thus resulting in ferroptotic cell death resistance. However, inhibiting AKRs activity/expression completely resensitizes resistant melanoma cells to ferroptosis execution. Finally, we found that the ferroptotic susceptibility associated with the differentiation of melanoma cells cannot be applied to metastatic-derived cells, due to the EMT-associated gene expression reprogramming process. However, we identified SCL7A11 as a valuable marker to predict the susceptibility of metastatic melanoma cells to ferroptosis. Our results identify the use of pro-ferroptotic drugs coupled to AKRs inhibitors as a new valuable strategy to efficiently kill human skin melanoma cells."	"Altered brain levels of arachidonic acid-derived inflammatory eicosanoids in a rodent model of anorexia nervosa. Increasing evidence underline the role of inflammation in the behavioral, emotional and cognitive dysregulations displayed in anorexia nervosa (AN). Among the inflammatory mediators acting at both peripheral and central levels, growing attention receives a class of lipids derived from arachidonic acid (AA), called eicosanoids (eiCs), which exert a complex, multifaceted role in a wide range of neuroinflammatory processes, peripheral inflammation, and generally in immune system function. To date, little is known about their possible involvement in the neurobiological underpinnings of AN. The present study evaluated whether the activity-based model of AN (ABA) may alter AA-metabolic pathways by changing the levels of AA-derived eiCs in specific brain areas implicated in the development of the typical anorexic-like phenotype, i.e. in prefrontal cortex, cerebral cortex, nucleus accumbens, caudate putamen, amygdala, hippocampus, hypothalamus and cerebellum. Our results point to brain region-specific alterations of the cyclooxygenase (COX), lipoxygenase (LOX) and cytochrome P450 epoxygenase (CYP) metabolic pathways rendering altered levels of AA-derived eiCs (i.e. prostaglandins, thromboxanes and hydroxyeicosatetraenoic acids) in response to induction of and recovery from the ABA condition. These changes, supported by altered messenger RNA (mRNA) levels of genes coding for enzymes involved in eiCs-related methabolic pathways (i.e., PLA2, COX-2, 5-LOX and 15-LOX), underlie a widespread brain dysregulation of pro- and anti-inflammatory eiC-mediated processes in the ABA model of AN. These data suggest the importance of eiCs signaling within corticolimbic areas in regulating key neurobehavioral functions and highlight eiCs as biomarker candidates for monitoring the onset and development of AN, and/or as possible targets for pharmacological management."	"LOX inhibition downregulates MMP-2 and MMP-9 in gastric cancer tissues and cells. Objective: The objective of this study was to analyze the effects of lysyl oxidase (LOX) on the expression and enzyme activity of the matrix metalloproteinases 2 (MMP-2) and 9 (MMP-9) and to study its preliminary effect mechanisms. Methods: We collected fresh cancer specimens from 49 gastric cancer patients who underwent surgery. Immunohistochemistry was used to quantitate the protein expression levels of LOX and MMP-9 in gastric cancer tissues and to analyze their correlation. Also, six-week old nude mice were divided into a control group and a LOX inhibition group. SGC-7901 gastric cancer cells were inoculated subcutaneously into the backs of the two groups of these mice to construct a gastric cancer-bearing nude mouse model. In the LOX inhibition group, β-aminopropionitrile (BAPN) was used to inhibit LOX. Western blotting was used to quantitate the relative expression levels of MMP-2 and MMP-9 in mouse tumor tissues, and gelatin zymography was used to quantitate their enzyme activity levels. In addition, BGC-823 gastric cancer cells were cultured, then 0.1 mM, 0.2 mM, and 0.3 mM BAPN and 2.5 nM, 5 nM, and 10 nM LOX were added to treat BGC-823 cells. ELISA and gelatin zymography were used to quantitate the protein concentrations and changes in enzyme activity of MMP-2 and MMP-9 in the culture supernatant. Western blotting was used to quantitate the relative expression levels of platelet derived growth factor receptor (PDGFR) in the BGC-823 gastric cancer cells after LOX inhibition and exogenous LOX addition. Results: In the tissues from the gastric cancer patients, the relative expression levels of LOX and MMP-9 were positively correlated (r = 0.326, P &lt; 0.05). Compared with the control group, the tumor tissues from mice in the LOX inhibition group had reduced relative expression levels and enzyme activities of MMP-2 and MMP-9 (P &lt; 0.05). After LOX were inhibited with different concentrations of BAPN in BGC-823 gastric cancer cells, the protein concentrations and enzyme activity levels of MMP-2 and MMP-9 in the culture supernatants were decreased (P &lt; 0.05). In addition, the relative expression level of PDGFR in gastric cancer was decreased when BAPN concentrations increased, showing a negative dose-dependent manner (rPDGFR-α = -0.964, rPDGFR-β = -0.988, P &lt; 0.05). After exogenous LOX treating BGC-823 cells, the concentrations and enzyme activity levels of MMP-2 and MMP-9 in the cell supernatant were increased (P &lt; 0.05). Further, the relative expression of PDGFR in gastric cancer cells was increased with the increase of exogenous LOX, showing a positive dose-dependent manner (rPDGFR-α=0.952, rPDGFR-β=0.953, P&lt;0.05). Conclusions: LOX inhibition can inhibit the expression and enzyme activity of MMP-2 and MMP-9 in gastric cancer tissues and cells, and the probable mechanism is through its effects on the PDGF-PDGFR signaling pathway."	"Pneumolysin Induces 12-Lipoxygenase-Dependent Neutrophil Migration during Streptococcus pneumoniae Infection. Streptococcus pneumoniae is a major cause of pneumonia, wherein infection of respiratory mucosa drives a robust influx of neutrophils. We have previously shown that S. pneumoniae infection of the respiratory epithelium induces the production of the 12-lipoxygenase (12-LOX)-dependent lipid inflammatory mediator hepoxilin A3, which promotes recruitment of neutrophils into the airways, tissue damage, and lethal septicemia. Pneumolysin (PLY), a member of the cholesterol-dependent cytolysin (CDC) family, is a major S. pneumoniae virulence factor that generates ∼25-nm diameter pores in eukaryotic membranes and promotes acute inflammation, tissue damage, and bacteremia. We show that a PLY-deficient S. pneumoniae mutant was impaired in triggering human neutrophil transepithelial migration in vitro. Ectopic production of PLY endowed the nonpathogenic Bacillus subtilis with the ability to trigger neutrophil recruitment across human-cultured monolayers. Purified PLY, several other CDC family members, and the α-toxin of Clostridium septicum, which generates pores with cross-sectional areas nearly 300 times smaller than CDCs, reproduced this robust neutrophil transmigration. PLY non-pore-forming point mutants that are trapped at various stages of pore assembly did not recruit neutrophils. PLY triggered neutrophil recruitment in a 12-LOX-dependent manner in vitro. Instillation of wild-type PLY but not inactive derivatives into the lungs of mice induced robust 12-LOX-dependent neutrophil migration into the airways, although residual inflammation induced by PLY in 12-LOX-deficient mice indicates that 12-LOX-independent pathways also contribute to PLY-triggered pulmonary inflammation. These data indicate that PLY is an important factor in promoting hepoxilin A3-dependent neutrophil recruitment across pulmonary epithelium in a pore-dependent fashion."	"Origin of Regio- and Stereospecific Catalysis by 8-Lipoxygenase. Lipoxygenases (lox's) are a group of non-heme iron containing enzymes that catalyze oxygenation of polyunsaturated fatty acids with precise regio- and stereoselectivities. The origin of regio- and stereospecific catalysis by 8-lox is explored in its wild-type (wt) form and in three mutants (Arg185Ala, Ala592Met, and Ala623His). The catalytic action of this enzyme progresses in two steps, namely, hydrogen abstraction from one double allylic carbon atom of substrate followed by oxygen insertion at the resulting prochiral carbon radical of the substrate. It is shown that the positional specificity of the hydrogen abstraction is a result of conformational dynamics of the bound substrate. While the C10 atom of the substrate is found to be the most probable site of hydrogen abstraction in the wt-lox, hydrogen abstraction from C13 is more favorable in the mutants. The present study discovers the presence of an interconnected network of a three-channel migration pathway operating in the protein matrix for efficient oxygen transport. Each migration channel is bestowed with a pocket at the peripheral region of protein as an oxygen access site, which transfers the oxygen to the active site through a well-connected migration path on a time scale of a few hundred picoseconds. By a careful geometric analysis of the oxygen pockets near the substrate binding cleft, the present study identifies the launching sites for oxygenation at the prochiral carbon centers C8, C11, C12, and C15 and the stereochemistry (R/S) of the corresponding products. It is found that the dominating 8R product in the wt-lox is due to the presence of the aromatic ring pair of Tyr181 and Phe173 acting as a gatekeeper for efficient delivery of oxygen at the pro-R face of C8. The change in the stereochemistry of the products in mutants is explained in terms of dynamic interactions between substrate and the surrounding residues."	"Structure-Activity Relationships of Pentacyclic Triterpenoids as Inhibitors of Cyclooxygenase and Lipoxygenase Enzymes. Pentacyclic triterpenes may be active agents and provide a rich natural resource of promising compounds for drug development. The inhibitory activities of 29 natural oleanane and ursane pentacyclic triterpenes were evaluated against four major enzymes involved in the inflammatory process: 5-LOX, 15-LOX-2, COX-1, and COX-2. It was found that 3-O-acetyl-β-boswellic acid potently inhibited human 15-LOX-2 (IC50 = 12.2 ± 0.47 μM). Analysis of the structure-activity relationships revealed that the presence of a hydroxy group at position 24 was beneficial in terms of both 5-LOX and COX-1 inhibition. Notably, the introduction of a carboxylic acid group at position 30 was important for dual 5-LOX/COX inhibitory activity; furthermore, its combination with a carbonyl group at C-11 considerably increased 5-LOX inhibition. Also, the presence of an α-hydroxy group at C-2 or a carboxylic acid group at C-23 markedly suppressed the 5-LOX activity. The present findings reveal that the types and configurations of polar moieties at positions C-2, -3, -11, -24, and -30 are important structural aspects of pentacyclic triterpenes for their potential as anti-inflammatory lead compounds."	"Radiosafe micro-computed tomography for longitudinal evaluation of murine disease models. Implementation of in vivo high-resolution micro-computed tomography (µCT), a powerful tool for longitudinal analysis of murine lung disease models, is hampered by the lack of data on cumulative low-dose radiation effects on the investigated disease models. We aimed to measure radiation doses and effects of repeated µCT scans, to establish cumulative radiation levels and scan protocols without relevant toxicity. Lung metastasis, inflammation and fibrosis models and healthy mice were weekly scanned over one-month with µCT using high-resolution respiratory-gated 4D and expiration-weighted 3D protocols, comparing 5-times weekly scanned animals with controls. Radiation dose was measured by ionization chamber, optical fiberradioluminescence probe and thermoluminescent detectors in a mouse phantom. Dose effects were evaluated by in vivo µCT and bioluminescence imaging read-outs, gold standard endpoint evaluation and blood cell counts. Weekly exposure to 4D µCT, dose of 540-699 mGy/scan, did not alter lung metastatic load nor affected healthy mice. We found a disease-independent decrease in circulating blood platelets and lymphocytes after repeated 4D µCT. This effect was eliminated by optimizing a 3D protocol, reducing dose to 180-233 mGy/scan while maintaining equally high-quality images. We established µCT safety limits and protocols for weekly repeated whole-body acquisitions with proven safety for the overall health status, lung, disease process and host responses under investigation, including the radiosensitive blood cell compartment."	"Varenicline aggravates atherosclerotic plaque formation in nicotine-pretreated ApoE knockout mice due to enhanced oxLDL uptake by macrophages through downregulation of ABCA1 and ABCG1 expression. Varenicline is a widely used and effective drug for smoking cessation. We previously reported that varenicline aggravates atherosclerosis in apolipoprotein E knockout (ApoE KO) mice. However, it remains unknown whether varenicline affects cardiovascular events in patients with nicotine addiction. Here, we examined the effect of varenicline on atherosclerotic plaque formation in nicotine-pretreated ApoE KO mice and oxidized low-density lipoprotein (oxLDL) uptake in nicotine-treated peritoneal macrophages. Varenicline caused significant progression of plaque formation in the whole aorta and aortic root and further accelerated the increased formation of a macrophage-rich plaque area in the aortic root in nicotine-pretreated ApoE KO mice. Varenicline (10 μM) enhanced oxLDL uptake in peritoneal macrophages. Furthermore, this treatment significantly further lowered the decreased protein levels of ATP-binding cassette (ABC) transporter without affecting the expression of scavenger receptors LOX-1 and CD36 in RAW264.7 cells treated with 100 nM nicotine. Varenicline enhanced nicotine-induced oxLDL uptake in macrophages through decreased expression of cholesterol efflux transporters ABCA1 and ABCG1 and thereby progressed atherosclerotic plaque formation. Taken together, we tentatively conclude that nicotine exposure before and/or during varenicline treatment can aggravate varenicline-increased atherosclerotic plaque formation and progression. Therefore, this enhanced risk requires special consideration when prescribing varenicline to smoker patients."	"Propolis Extract as Antioxidant to Improve Oxidative Stability of Fresh Patties during Refrigerated Storage. The effect of propolis ethanol extract (PEE), butylated hydroxytoluene (BHT), and ascorbic acid (Asc) against lipid (Lox) and protein oxidation (Pox), color deterioration, and the antioxidant stabilizer of raw beef and pork patties during chilled storage (9 days at 2 °C/under darkness) was investigated. Total phenolic content (TPC), reducing power ability (RPA), DPPH<sup>●</sup> radical scavenging activity (FRSA) of the PEE was evaluated. Meat samples were evaluated for pH, Lox (TBARS), Pox (Carbonyls), color (L*, a*, b*, C*, and h*), metmyoglobin formation (MMb), TPC, RPA, and FRSA. Results indicated that PEE is rich in phenolic content and antioxidant activity, and their incorporation in beef and pork patties reduced (p &lt; 0.05) Lox and Pox (TBARS-88.7 and 80% inhibition; Pox-47.3 and 30.6% inhibition, respectively), as well as loss of color and increased the oxidative stability throughout storage."	"Purification and Product Characterization of Lipoxygenase from Opium Poppy Cultures (Papaver somniferum L.). Opium poppy (Papaver somniferum L.) is an ancient medicinal plant producing pharmaceutically important benzylisoquinoline alkaloids. In the present work we focused on the study of enzyme lipoxygenase (LOX, EC 1.13.11.12) from opium poppy cultures. LOX is involved in lipid peroxidation and lipoxygenase oxidation products of polyunsaturated fatty acids have a significant role in regulation of growth, development and plant defense responses to biotic or abiotic stress. The purpose of this study was to isolate and characterize LOX enzyme from opium poppy callus cultures. LOX was purified by ammonium sulfate precipitation and then followed by hydrophobic chromatography using Phenyl-Sepharose CL-4B and hydroxyapatite chromatography using HA Ultrogel sorbent. Sodium dodecyl sulphate-polyacrylamide gel electrophoresis (SDS-PAGE) analysis and immunoblotting revealed that LOX from opium poppy cultures was a single monomeric protein showing the relative molecular weight of 83 kDa. To investigate the positional specificity of the LOX reaction, purified LOX was incubated with linoleic acid and the products were analyzed by high-performance liquid chromatography in two steps, firstly with reverse phase (120-5 Nucleosil C18 column) and secondly with normal phase (Zorbax Rx-SIL column). LOX converted linoleic acid primarily to 13-hydroperoxy-(9Z,11E)-octadecadienoic acids (78%) and to a lesser extent 9-hydroperoxy-(10E,12Z)-octadecadienoic acids (22%). Characterization of LOX from opium poppy cultures provided valuable information in understanding LOX involvement in regulation of signaling pathways leading to biosynthesis of secondary metabolites with significant biological activity."	"Elevated Levels of Arachidonic Acid Metabolites in Follicular Fluid of PCOS Patients. Polycystic ovary syndrome (PCOS) is the most common endocrine disorder in reproductive-age women usually accompanied by lipid metabolic disorders. However, it remains unknown whether arachidonic acid (AA) and its metabolites in follicular fluid (FF) were altered in PCOS patients. This study was intended to measure the levels of AA and its metabolites in the FF of non-obese PCOS patients that underwent in vitro fertilization (IVF) and to explore the possible causes of the alterations. Thirty-nine non-obese women with PCOS and thirty non-obese women without PCOS were enrolled. AA and its metabolites were measured by liquid chromatography-mass spectrometry. The levels of AA metabolites generated via cyclooxygenase-2 (COX-2) pathway and cytochrome P450 epoxygenase pathway but not lipoxygenase (LOX) pathway were significantly higher in the FF of PCOS patients. The metabolites generated via COX-2 pathway were significantly correlated with levels of testosterone and fasting insulin in serum. The in vitro study further demonstrated that insulin but not testosterone could promote the IL-1β and hCG-induced COX-2 expression and Prostaglandin E2 (PGE2) secretion in primary human granulosa cells. In conclusion, there was an elevation in AA metabolites in FF of PCOS patients. Insulin played a pivotal role in the increased AA metabolites generated via COX-2, which could be interpreted as another novel molecular pathophysiological mechanism of PCOS."	"The Role of Lysyl Oxidase Enzymes in Cardiac Function and Remodeling. Lysyl oxidase (LOX) proteins comprise a family of five copper-dependent enzymes (LOX and four LOX-like isoenzymes (LOXL1-4)) critical for extracellular matrix (ECM) homeostasis and remodeling. The primary role of LOX enzymes is to oxidize lysyl and hydroxylysyl residues from collagen and elastin chains into highly reactive aldehydes, which spontaneously react with surrounding amino groups and other aldehydes to form inter- and intra-catenary covalent cross-linkages. Therefore, they are essential for the synthesis of a mature ECM and assure matrix integrity. ECM modulates cellular phenotype and function, and strikingly influences the mechanical properties of tissues. This explains the critical role of these enzymes in tissue homeostasis, and in tissue repair and remodeling. Cardiac ECM is mainly composed of fibrillar collagens which form a complex network that provides structural and biochemical support to cardiac cells and regulates cell signaling pathways. It is now becoming apparent that cardiac performance is affected by the structure and composition of the ECM and that any disturbance of the ECM contributes to cardiac disease progression. This review article compiles the major findings on the contribution of the LOX family to the development and progression of myocardial disorders."	"Effects of Melatonin Treatment of Postharvest Pear Fruit on Aromatic Volatile Biosynthesis. Aroma affects the sensory quality of fruit and, consequently, consumer satisfaction. Melatonin (MT) is a plant growth regulator used to delay senescence in postharvest fruit during storage; however, its effect on aroma of pear fruit remains unclear. In this study, we assessed the effects of 0.1 mmol L<sup>-1</sup> MT on volatiles and associated gene expression in the fruit of pear cultivars 'Korla' (Pyrus brestschneideri Rehd) and 'Abbé Fetel' (Pyrus communis L.). MT mainly affected the production of C6 aromatic substances in the two varieties. In 'Korla', MT inhibited expression of PbHPL, and reduced hydroperoxide lyase (HPL) activity and content of hexanal and (E)-hex-2-enal. In contrast, MT inhibited activity of lipoxygenase (LOX), reduced expression of PbLOX1 and PbLOX2, promoted PbAAT gene expression, increased alcohol acyltransferase (AAT) activity, and increased propyl acetate, and hexyl acetate content in 'Abbé Fetel' that similarly led to the reduction in content of hexanal and (E)-hex-2-enal. Content of esters in 'Abbé Fetel' pear increased with increasing postharvest storage period. Although mechanisms differed between the two varieties, effects on aroma volatiles mediated by MT were driven by expression of genes encoding LOX, HPL, and AAT enzymes."	"Exploring Biological Activity of 4-Oxo-4H-furo[2,3-h]chromene Derivatives as Potential Multi-Target-Directed Ligands Inhibiting Cholinesterases, β-Secretase, Cyclooxygenase-2, and Lipoxygenase-5/15. A series of 5-oxo-5H-furo[3,2-g]chromene-6-carbaldehydes and their hydrazone derivatives were evaluated as potential multi-target-directed ligands in vitro against cholinesterases, β-secretase, cyclooxygenase-2, and lipoxygenase-15 (LOX-15), as well as for free radical-scavenging activities. The most active compounds against LOX-15 were also evaluated for activity against the human lipoxygenase-5 (LOX-5). Kinetic studies against AChE, BChE, and β-secretase (BACE-1) were performed on 2-(3-fluorophenyl)- (3b) and 2-(4-chlorophenyl)-6-[(4-trifluoromethylphenyl)hydrazonomethyl]furo[3,2-h]chromen-5-one (3e) complemented with molecular docking (in silico) to determine plausible protein-ligand interactions on a molecular level. The docking studies revealed hydrogen and/or halogen bonding interactions between the strong electron-withdrawing fluorine atoms of the trifluoromethyl group with several residues of the enzyme targets, which are probably responsible for the observed increased biological activity of these hydrazone derivatives. The two compounds were found to moderately inhibit COX-2 and lipoxygenases (LOX-5 and LOX-15). Compounds 3b and 3e were also evaluated for cytotoxicity against the breast cancer MCF-7 cell line and Hek293-T cells."	"Distinct and overlapping functions of glutathione peroxidases 1 and 2 in limiting NF-κB-driven inflammation through redox-active mechanisms. Glutathione peroxidase 2 (GPx2) is one of the five selenoprotein GPxs having a selenocysteine in the active center. GPx2 is strongly expressed in the gastrointestinal epithelium, as is another isoform, GPx1, though with a different localization pattern. Both GPxs are redox-active enzymes that are important for the reduction of hydroperoxides. Studies on GPx2-deficient mice and human HT-29 cells with a stable knockdown (kd) of GPx2 revealed higher basal and IL-1β-induced expression of NF-κB target genes in vivo and in vitro. The activation of the IKK-IκBα-NF-κB pathway was increased in cultured GPx2 kd cells. Basal signaling was only restored by re-expressing active GPx2 in GPx2 kd cells but not by redox-inactive GPx2. As it is still not clear if the two isoforms GPx1 and GPx2 have different functions, kd cell lines for either GPx1 or GPx2 were studied in parallel. The inhibitory effect of GPx2 on NF-κB signaling and its target gene expression was stronger than that of GPx1, whereas cyclooxygenase (COX)- and lipoxygenase (LOX)-derived lipid mediator levels increased more strongly in GPx1 kd than in GPx2 kd cells. Under unstimulated conditions, the levels of the COX-derived prostaglandins PGE2 and PGD2 were enhanced in GPx2 as well as in GPx1 kd compared to control cells. Specifically, in GPx1 kd cells IL-1β stimulation led to a dramatic shift of the PGE2/PGD2 ratio towards pro-inflammatory PGE2. Taken together, GPx2 and GPx1 have overlapping functions in controlling inflammatory lipid mediator synthesis and, most probably, exert their anti-inflammatory effects by preventing excessive PGE2 production. In view of the high activity of COX and LOX pathways during inflammatory bowel disease our data therefore provide new insights into the mechanisms of the protective function of GPx1 and GPx2 during colitis as well as inflammation-driven carcinogenesis."	"Anti-insect activity of a partially purified protein derived from the entomopathogenic fungus Lecanicillium lecanii (Zimmermann) and its putative role in a tomato defense mechanism against green peach aphid. Many biotrophic and necrotrophic fungi synthesize proteins that may elicit induced plant resistance against different herbivore pests. This in-vitro study elucidates the sub-lethal effect of a partially-purified protein derived from the entomopathogenic fungus Lecanicillium lecanii (Zimmerman) (Hypocreales: Clavicipitaceae) against green peach aphid Myzus persicae (Sulzer) (Hemiptera: Aphididae), an economically important pest of many solanaceous crops including tomato. Bioassays were conducted to determine the impact of different concentrations of protein (i.e. 0.018, 0.036 and 0.054 µM) on the survival and fecundity of M. persicae on tomato (Lycopersicon esculentum) plants. Moreover, the potential role of this exogenous protein in the plant defense mechanism was assessed by expression analyses of key genes associated with salicylic acid (SA) and jasmonic acid (JA) pathways using RT-qPCR. The results indicated a significant negative effect of all protein concentrations on the survivorship and fecundity of M. persicae. The highest concentration (0.054 µM) resulted in lowest survival (46%) of aphids at 7th day post-treatment, while two other concentrations (0.036 and 0.018 µM) resulted in 61 and 71% survival rate, respectively. Similarly, lowest and highest mean fecundity rates were recorded for the highest protein concentration and the control (1.5 and 2.4 nymphs day<sup>-1</sup> female<sup>-1</sup>), respectively. Moreover, L. lecanii-derived protein strongly upregulated the SA associated genes PR1, BGL2 and PAL, and moderately upregulated the JA associated genes LOX, AOS and AOC in protein-treated tomato plants compared to the control plants. These findings demonstrate the systemic resistance induced in tomato plants against M. persicae by the exogenous application of partially-purified protein extracted from L. lecanii, suggesting its further purification and characterization as a novel biological pest management tool against aphids and other phloem-feeding insect pests."	"Von Willebrand factor and ADAMTS13 impact on the outcome of Staphylococcus aureus sepsis. Previous clinical evidence correlates levels of von Willebrand factor (VWF) and its cleaving protease ADAMTS13 with outcome in septic patients. No previous studies addressed if VWF and ADAMTS13 affected the outcome of Staphylococcus aureus sepsis. We studied the role of VWF and ADAMTS13 in S. aureus sepsis both in patients and in mice. VWF levels and ADAMTS13 activity levels were measured in plasma samples from 89 S. aureus bacteremia patients by chemiluminescent assays and were correlated with clinical sepsis outcome parameters. In wild-type mice and mice deficient in VWF and ADAMTS13, we investigated the outcome of S. aureus sepsis and quantified bacterial clearance and organ microthrombi. In patients with S. aureus bloodstream infections, high VWF levels and low ADAMTS13 activity levels correlated with disease severity and with parameters of inflammation and disseminated intravascular coagulation. In septic mice, VWF deficiency attenuated mortality, whereas ADAMTS13 deficiency increased mortality. Bacterial clearance was enhanced in VWF-deficient mice. The differences in mortality for the studied genotypes were associated with differential loads of organ microthrombi in both liver and kidneys. In conclusion, this study reports the consistent relation of VWF, ADAMTS13 and their ratio to disease severity in patients and mice with S. aureus sepsis. Targeting VWF multimers and/or the relative ADAMTS13 deficiency that occurs in sepsis should be explored as a potential new therapeutic target in S. aureus endovascular infections."	"Physicochemical Changes and in Vitro Gastric Digestion of Modified Soybean Protein Induced by Lipoxygenase Catalyzed Linoleic Acid Oxidation. Protein oxidation results in structural modification which affects its digestion. The objective of this work was to investigate the influence of lipoxygenases (LOX) catalyzed linoleic acid (LA) oxidation on the structure and in vitro gastric digests of soybean protein isolate (SPI). Fluorescence recovery after photobleaching (FRAP) was used to evaluate the relationship between pepsin diffusion and gastric digestion. Results indicated that oxidation induced carbonyl formation and loss of free sulfhydryl. Increased surface hydrophobicity and zeta-potential verified the protein unfolding and thus resulted in a small particle size and low fluorescence intensity. Fourier transform infrared spectroscopy (FTIR) showed that oxidation caused the increases in β-sheets mostly at the expense of α-helix and random coils. Fluorescein isothiocyanate (FITC)-pepsin in SPI solution modified with 3 mL LA showed a faster diffusion rate with 80.51 μm<sup>2</sup>/s as well as a higher DH value of 9.11%, showing that pepsin diffusivity might play an important role in protein gastric digestion."	"Targeting the lysyl oxidases in tumour desmoplasia. The extracellular matrix (ECM) is a fundamental component of tissue microenvironments and its dysregulation has been implicated in a number of diseases, in particular cancer. Tumour desmoplasia (fibrosis) accompanies the progression of many solid cancers, and is also often induced as a result of many frontline chemotherapies. This has recently led to an increased interest in targeting the underlying processes. The major structural components of the ECM contributing to desmoplasia are the fibrillar collagens, whose key assembly mechanism is the enzymatic stabilisation of procollagen monomers by the lysyl oxidases. The lysyl oxidase family of copper-dependent amine oxidase enzymes are required for covalent cross-linking of collagen (as well as elastin) molecules into the mature ECM. This key step in the assembly of collagens is of particular interest in the cancer field since it is essential to the tumour desmoplastic response. LOX family members are dysregulated in many cancers and consequently the development of small molecule inhibitors targeting their enzymatic activity has been initiated by many groups. Development of specific small molecule inhibitors however has been hindered by the lack of crystal structures of the active sites, and therefore alternate indirect approaches to target LOX have also been explored. In this review, we introduce the importance of, and assembly steps of the ECM in the tumour desmoplastic response focussing on the role of the lysyl oxidases. We also discuss recent progress in targeting this family of enzymes as a potential therapeutic approach."	"Mitochondrial thioredoxin-2 maintains HCN4 expression and prevents oxidative stress-mediated sick sinus syndrome. Sick sinus syndrome (SSS) is associated with loss of HCN4 (hyperpolarization-activated cyclic nucleotide-gated potassium channel 4) function in the cardiac conduction system. The underlying mechanism for SSS remains elusive. This study is to investigate how mitochondrial oxidative stress induces HCN4 downregulation associated with in sick sinus syndrome. Trx2<sup>lox/lox</sup> mice were crossed with α-myosin heavy chain (α-Mhc)-Cre and Hcn4-CreER<sup>T2</sup> deleter mice to generate Trx2 deletion mice in the whole heart (Trx2cKO) and in the conduction system (Trx2ccsKO), respectively. Echocardiography was applied to measure hemodynamics and heart rhythm. Histological analyses, gene profiling and chromatin immunoprecipitation were performed to define the mechanism by which thioredoxin-2 (Trx2) regulates HCN4 expression and cardiac function. Trx2cKO mice displayed dilated cardiomyopathy, low heart rate, and atrial ventricular block (AVB) phenotypes. Immunofluorescence revealed that HCN4 expression was specifically reduced within the sinoatrial node in Trx2cKO mice. Interestingly, Trx2ccsKO mice displayed low heart rate and AVB without dilated cardiomyopathy. Both mRNA and protein levels of HCN4 were reduced in the sinoatrial node, suggesting transcriptional HCN4 regulation upon Trx2 deletion. ChIP indicated that the binding of MEF2 to the HCN4 enhancer was not altered by Trx2 deletion; however, histone 3 acetylation at the MEF2 binding site was decreased, and expression of histone deacetylase 4 (HDAC4) was elevated following Trx2 deletion. Moreover, HDAC4 binding to the HCN4 enhancer was mediated by MEF2. Mitochondrial ROS were increased by Trx2 deletion and importantly, mitochondria-specific ROS scavenger MitoTEMPO suppressed HDAC4 elevation, HCN4 reduction, and sinus bradycardia in Trx2ccsKO mice. In the conduction system, Trx2 is critical for maintaining HCN4-mediated normal heart rate. Loss of Trx2 reduces HCN4 expression via a mitochondrial ROS-HDAC4-MEF2C pathway and subsequently induces sick sinus syndrome in mice."	"Defense of Scots pine against sawfly eggs (Diprion pini) is primed by exposure to sawfly sex pheromones. Plants respond to insect infestation with defenses targeting insect eggs on their leaves and the feeding insects. Upon perceiving cues indicating imminent herbivory, such as damage-induced leaf odors emitted by neighboring plants, they are able to prime their defenses against feeding insects. Yet it remains unknown whether plants can amplify their defenses against insect eggs by responding to cues indicating imminent egg deposition. Here, we tested the hypothesis that a plant strengthens its defenses against insect eggs by responding to insect sex pheromones. Our study shows that preexposure of Pinus sylvestris to pine sawfly sex pheromones reduces the survival rate of subsequently laid sawfly eggs. Exposure to pheromones does not significantly affect the pine needle water content, but results in increased needle hydrogen peroxide concentrations and increased expression of defense-related pine genes such as SOD (superoxide dismutase), LOX (lipoxygenase), PAL (phenylalanine ammonia lyase), and PR-1 (pathogenesis related protein 1) after egg deposition. These results support our hypothesis that plant responses to sex pheromones emitted by an herbivorous insect can boost plant defensive responses to insect egg deposition, thus highlighting the ability of a plant to mobilize its defenses very early against an initial phase of insect attack, the egg deposition."	"Endothelial GLP-1 (Glucagon-Like Peptide-1) Receptor Mediates Cardiovascular Protection by Liraglutide In Mice With Experimental Arterial Hypertension. Cardiovascular outcome trials demonstrated that GLP-1 (glucagon-like peptide-1) analogs including liraglutide reduce the risk of cardiovascular events in type 2 diabetes mellitus. Whether GLP-1 analogs reduce the risk for atherosclerosis independent of glycemic control is challenging to elucidate as the GLP-1R (GLP-1 receptor) is expressed on different cell types, including endothelial and immune cells. Approach and Results: Here, we reveal the cardio- and vasoprotective mechanism of the GLP-1 analog liraglutide at the cellular level in a murine, nondiabetic model of arterial hypertension. Wild-type (C57BL/6J), global (Glp1r<sup>-/-</sup>), as well as endothelial (Glp1r<sup>f</sup>lox/floxxCdh5<sup>cre</sup>) and myeloid cell-specific knockout mice (Glp1r<sup>flox/flox</sup>xLysM<sup>cre</sup>) of the GLP-1R were studied, and arterial hypertension was induced by angiotensin II. Liraglutide treatment normalized blood pressure, cardiac hypertrophy, vascular fibrosis, endothelial dysfunction, oxidative stress, and vascular inflammation in a GLP-1R-dependent manner. Mechanistically, liraglutide reduced leukocyte rolling on the endothelium and infiltration of myeloid Ly6G<sup>-</sup>Ly6C<sup>+</sup> and Ly6G<sup>+</sup>Ly6C<sup>+</sup> cells into the vascular wall. As a consequence, liraglutide prevented vascular oxidative stress, reduced S-glutathionylation as a marker of eNOS (endothelial NO synthase) uncoupling, and increased NO bioavailability. Importantly, all of these beneficial cardiovascular effects of liraglutide persisted in myeloid cell GLP-1R-deficient (Glp1r<sup> flox/flox </sup>xLysM<sup> cre </sup>) mice but were abolished in global (Glp1r<sup>-/-</sup>) and endothelial cell-specific (Glp1r<sup> flox/flox </sup>xCdh5<sup> cre </sup>) GLP-1R knockout mice. GLP-1R activation attenuates cardiovascular complications of arterial hypertension by reduction of vascular inflammation through selective actions requiring the endothelial but not the myeloid cell GLP-1R."	"Gynura procumbens ethanol extract and its fractions inhibit macrophage derived foam cell formation. Gynura procumbens (Lour.) Merr. displayed cardio-protective effect that may prevent atherogenesis. The primary underlying pathological process of cardiovascular disease is atherosclerosis. Atherosclerotic lesion composed of macrophages, T cells and other immune cells which incorporated with cholesterol that infiltrates from the blood. The present study was performed to determine underlying mechanism of G. procumbens ethanol extract and its fractions such as aqueous, chloroform, ethyl acetate and hexane affect macrophage derived foam cell formation. Lipid droplets accumulation in treated macrophages were visualized by Oil Red O staining while the total cholesterol present in the treated macrophages were measured using Cholestryl Ester quantification assay kit. Enzyme-Linked Immunosorbent Assay (ELISA) were used to detect TNF-α and IL-1β secretion in the supernatant of treated macrophages. Gene expression of Lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) and ATP-binding cassette transporter A-1 (ABCA-1) in treated macrophages were analyzed using Real-Time Quantitative Polymerase Chain Reaction (RT-qPCR). G. procumbens ethanol extract and its fractions reduced lipid droplet accumulation and total cholesterol in oxLDL-treated macrophages together with significantly reduction of TNF-α and IL-1β secretions in supernatant oxLDL-treated macrophages. LOX-1 gene expression was significantly reduced when G. procumbens ethanol extract and its fractions were added in oxDL-treated macrophages. In contrast, G. procumbens ethanol extract and its fractions significantly increased the expression of ABCA-1 gene in oxLDL-treated macrophages. In conclusion, G. procumbens ethanol extract and its fractions inhibit the formation of macrophage derived foam cell by reducing TNF-α and IL-1β expression, which usually highly expressed in atherosclerotic plaques, suppressing scavenger receptor LOX-1 gene that binds oxLDL but induced ABCA-1 gene that mediate lipid efflux from macrophages."	"PCSK9 and inflammation: role of shear stress, pro-inflammatory cytokines, and LOX-1. PCSK9 degrades low-density lipoprotein cholesterol (LDL) receptors and subsequently increases serum LDL cholesterol. Clinical trials show that inhibition of PCSK9 efficiently lowers LDL cholesterol levels and reduces cardiovascular events. PCSK9 inhibitors also reduce the extent of atherosclerosis. Recent studies show that PCSK9 is secreted by vascular endothelial cells, smooth muscle cells, and macrophages. PCSK9 induces secretion of pro-inflammatory cytokines in macrophages, liver cells, and in a variety of tissues. PCSK9 regulates toll-like receptor 4 expression and NF-κB activation as well as development of apoptosis and autophagy. PCSK9 also interacts with oxidized-LDL receptor-1 (LOX-1) in a mutually facilitative fashion. These observations suggest that PCSK9 is inter-twined with inflammation with implications in atherosclerosis and its major consequence-myocardial ischaemia. This relationship provides a basis for the use of PCSK9 inhibitors in prevention of atherosclerosis and related clinical events."	"Association Between Soluble Lectinlike Oxidized Low-Density Lipoprotein Receptor-1 and Coronary Artery Disease in Psoriasis. Psoriasis, a chronic inflammatory skin disease associated with accelerated noncalcified coronary burden (NCB) by coronary computed tomography angiography (CCTA), accelerates lipoprotein oxidation in the form of oxidized modified lipoproteins. A transmembrane scavenger receptor for these oxidized modified lipoproteins is lectinlike oxidized low-density lipoprotein receptor-1 (LOX-1), which has been reported to be associated with coronary artery disease. It is unknown whether this receptor is associated with coronary artery disease in psoriasis. To assess the association between soluble LOX-1 (sLOX-1) and NCB in psoriasis over time. In a cohort study at the National Institutes of Health, 175 consecutive patients with psoriasis were referred from outpatient dermatology practices between January 1, 2013, and October 1, 2017. A total of 138 consecutively recruited patients with psoriasis were followed up at 1 year. Circulating soluble lectinlike oxidized low-density lipoprotein receptor-1 levels were measured blindly by field scientists running undiluted serum using an enzyme-linked immunosorbent assay. Coronary computed tomography angiography scans were performed to quantify NCB in all 3 major epicardial coronary arteries by a reader blinded to patient demographics, visit, and treatment status. Among the 175 patients with psoriasis, the mean (SD) age was 49.7 (12.6) years and 91 were men (55%). The cohort had relatively low median cardiovascular risk by Framingham risk score (median, 2.0 [interquartile range (IQR), 1.0-6.0]) and had a mean (SD) body mass index (calculated as weight in kilograms divided by height in meters squared) suggestive of overweight profiles (29.6 [6.0]). Elevated sLOX-1 levels were found in patients with psoriasis compared with age- and sex-matched controls (median, 210.3 [IQR, 110.9-336.2] vs 83.7 [IQR, 40.1-151.0]; P &lt; .001), and were associated with Psoriasis Area Severity Index (PASI) score (β = 0.23; 95% CI, 0.082-0.374; P = .003). Moreover, sLOX-1 was associated with NCB independent of hyperlipidemia status (β = 0.11; 95% CI, 0.016-0.200; P = .023), an association which persisted after adjusting for traditional cardiovascular risk factors, statin use, and biologic psoriasis treatment (β = 0.10; 95% CI, 0.014-0.193; P = .03). At 1 year, in those who had clinical improvement in PASI (eg, &gt;50% improvement), a reduction in sLOX-1 (median, 311.1 [IQR, 160.0-648.8] vs median, 224.2 [IQR, 149.1 - 427.4]; P = .01) was associated with a reduction in NCB (β = 0.14; 95% CI, 0.028-0.246; P = .02). Soluble lectinlike oxidized low-density lipoprotein receptor-1 levels were elevated in patients with psoriasis and were associated with severity of skin disease. Moreover, sLOX-1 associated with NCB independent of hyperlipidemia status, suggesting that inflammatory sLOX-1 induction may modulate lipid-rich NCB in psoriasis. Improvement of skin disease was associated with a reduction of sLOX-1 at 1 year, demonstrating the potential role of sLOX-1 in inflammatory atherogenesis in psoriasis."	"Tocotrienol-rich fraction from annatto ameliorates expression of lysyl oxidase in human osteoblastic MG-63 cells. Lysyl oxidase (LOX) is required for the formation of bone collagen cross-links. Inactivation of the LOX gene in osteoblasts by DNA methylation and JAK signaling has been reported to cause loss of cross-links and an increased risk of fractures. Tocotrienols (T3s) have proven benefits on bone strength, but their potential effects on LOX remain largely unknown. Thus, the present study investigates the in vitro effects of T3s on LOX expression in human osteoblastic MG-63 cells. Results indicated that Tocotrienol-Rich Fraction (TRF), the δ-T3 rich oil extracted from Annatto was the most effective and significantly increased LOX expression. TRF treatment decreased de-novo methyltransferases (DNMTs), DNMT3A and DNMT3B levels. In addition, TRF significantly inhibited JAK2 activation and decreased expression of Fli1, a transcription factor of DNMTs. We conclude that TRF induced an increase in LOX expression via inhibition of de-novo methylation and reduction of Fli1 expression by the inactivation of JAK2.Abbreviations: CpG: cytosine-guanine dinucleotide; DNMT: DNA methyltransferase; Fli1: friend leukemia virus integration 1; JAK: janus kinase; LOX: lysyl oxidase; PCR: polymerase chain reaction; STAT: signal transducers and activators of transcription; T3s: tocotrienols; TPs: tocopherols; TRF: Tocotrienol-Rich Fraction."	"Modulation of hepatocyte sialylation drives spontaneous fatty liver disease and inflammation. Circulatory protein glycosylation is a biomarker of multiple disease and inflammatory states and has been applied in the clinic for liver dysfunction, heart disease and diabetes. With the notable exception of antibodies, the liver produces most of the circulatory glycoproteins, including the acute phase proteins released as a function of the inflammatory response. Among these proteins is β-galactoside α2,6-sialyltransferase (ST6Gal1), an enzyme required for α2,6-linked sialylation of glycoproteins. Here, we describe a hepatocyte-specific conditional knockout of ST6Gal1 (H-cKO) using albumin promoter-driven Cre-lox recombination. We confirm the loss of circulatory glycoprotein α2,6 sialylation and note no obvious dysfunction or pathology in young H-cKO mice, yet these mice show robust changes in plasma glycoprotein fucosylation, branching and the abundance of bisecting GlcNAc and marked changes in a number of metabolic pathways. As H-cKO mice aged, they spontaneously developed fatty liver disease characterized by the buildup of fat droplets in the liver, inflammatory cytokine production and a shift in liver leukocyte phenotype away from anti-inflammatory Kupffer cells and towards proinflammatory M1 macrophages. These findings connect hepatocyte and circulatory glycoprotein sialylation to the regulation of metabolism and inflammation, potentially identifying the glycome as a new target for liver-driven disease."	"Lack of NPY in neurotensin neurons leads to a lean phenotype. Neuropeptide Y (NPY) producing neurons in the arcuate nucleus (Arc) of the hypothalamus are essential to the regulation of food intake and energy homeostasis. Whilst they have classically been thought to co-express agouti-related peptide (AgRP), it is now clear that there is a sub-population of NPY neurons in the Arc that do not. Here, we show that a subset of AgRP-negative, NPY-positive neurons in the Arc also express neurotensin (NTS) and we use an NTS-Cre line to investigate the function of this sub-population of NPY neurons. The lack of NPY in NTS-positive neurons led to a marked reduction in fat mass and bodyweight as well as a significant reduction in food intake in male NPY<sup>lox/lox</sup>; NTS<sup>cre/+</sup> mice compared to controls. Despite the reduction in food intake, overall energy expenditure was similar between genotypes due to concomitant reduction in activity in NPY<sup>lox/lox</sup>; NTS<sup>cre/+</sup> mice. Furthermore, cortical bone mass was significantly reduced in NPY<sup>lox/lox</sup>;NTS<sup>cre/+</sup> mice with no evident alterations in the cancellous bone compartment, likely due to reduced leptin levels as a result of their reduced adiposity. Taken together, these data suggest that the sub-population of Arc NPY neurons expressing NTS are critical for regulating food intake, activity and fat mass but are not directly involved in the control of bone mass."	"Hypertrophic chondrocyte-specific Col10a1 controlling elements in Cre recombinase transgenic studies. The type X collagen gene (COL10A1) is specifically expressed in chondrocytes undergoing hypertrophy, which is an essential late stage of endochondral ossification during the development of long bones. We have previously localized multiple murine Col10a1 promoter-enhancer elements and used these elements for transgenic studies with LacZ reporter gene or genes of interest. Here, we report two additional transgenic mouse lines in which Cre was driven by the 10 kb Col10a1 promoter/intron and the 300-bp enhancer elements respectively. Cre activity was assessed by breeding the transgenic founders onto the RosA26R genetic background and to examine its β-gal activity (blue staining) via Cre/Lox P recombination. Our results showed that, in addition to the Cre activity in hypertrophic chondrocytes, we also observed blue staining of the bone marrow and the surrounding digits when the 10 kb Col10a1 promoter/intron element was used, whereas the 300-bp enhancer element could drive Cre expression exclusively within the hypertrophic zone as demonstrated by the blue staining pattern. This is intriguing, as the 10 kb promoter covers the 300-bp enhancer element. We then further reanalyzed the LacZ transgenic mice. We did observe non-specific blue staining in 10 kb-LacZ mice but not the mice with the 300-bp enhancer. In addition, the Cre reporter construct was on a coat-color vector backbone, which enables direct visual genotyping of the transgenic mice in the FVB/N albino background. Together, our results support that the 300 bp Col10a1 enhancer provides a more efficient genetic tool to target the hypertrophic zone for studies of skeletal development and disease."	"Paraoxonase 1: The Lectin-Like Oxidized LDL Receptor Type I and Oxidative Stress in the Blood of Men with Type II Obesity. Obesity has serious consequences such as the onset of metabolic syndrome, type 2 diabetes, atherosclerosis, or cardiovascular complications. The aim of this study was to evaluate the levels of paraoxonase 1 (PON1), lectin-like oxidized LDL receptor-1 (LOX-1), antioxidant enzymes (superoxide dismutase (SOD), catalase (CAT), and glutathione peroxidase (GPx)), and lipid peroxidation processes in the course of obesity. 28 men took part in the experiment. Fourteen of them were obese; the control group consisted of 14 physically active men without obesity features. The concentrations of malondialdehyde (MDA), PON1, LOX-1, and tumor necrosis factor α (TNFα) as well as the activities of erythrocytic SOD, CAT, and GPx were determined in the study. Statistically significant higher MDA, LOX-1, and TNFα levels were observed in obese subjects. Conversely, lower concentrations of PON1 in obese men were found. An imbalance in oxidation-reduction processes accompanies obesity. Moreover, inflammatory cytokines and atherosclerotic complications are involved in the obesity process. The obtained results suggest that the studied parameters may be independent prognostic markers preceding the development of cardiovascular and metabolic complications in people afflicted with type II obesity."	"Anti-lysyl oxidase combined with a vacuum device induces penile lengthening by remodeling the tunica albuginea. This study aimed to explore whether and how anti-lysyl oxidase (anti-LOX) combined with a vacuum device (VD) could promote penile lengthening and to evaluate the effect on erectile function. This study was performed on four groups of adult rats: control, anti-LOX, VD (negative pressure value of -300 mmHg), and anti-LOX + VD. Penile length was measured by a modified VD method and verified on exposed length data. Intracavernous pressure (ICP) and maximum ICP/mean arterial pressure (MAP) ratio were recorded to assess erectile function. For corpus cavernosum, LOX activity and concentrations of pyridinoline, desmosine, hydroxyproline, and elastin were analyzed; transmission electron microscope and Hart's elastin staining were performed to monitor microstructural changes. Anti-LOX and VD significantly lengthened the penis by 10.8% (3.75 mm) and 8.2% (2.48 mm) compared with the control group, respectively, while anti-LOX + VD achieved the longest penile size (40.58 ± 0.40 mm) which was 17.4% longer than the control group (34.58 ± 0.54 mm). After 1-week washout, no penile retraction was observed. Meanwhile, exposed penile length data confirmed that the penis in the anti-LOX + VD group was also significantly longer. Anti-LOX inhibited LOX activity to reduce pyridinoline level, which led the penile tunica albuginea remodeling. However, it had no effect on hydroxyproline, desmosine, and elastin levels. Moreover, anti-LOX had no impact on erectile function, which was determined by ICP and ICP/MAP ratio. These results suggest that anti-LOX elongates the penis by reducing pyridinoline, which induces tunica albuginea remodeling. This lengthening effect was more obvious when combined with a VD. All procedures had no impact on erectile function."	"LSD1 mediates microbial metabolite butyrate-induced thermogenesis in brown and white adipose tissue. The gut microbiota regulates thermogenesis to benefit metabolic homeostasis at least partially via its metabolite butyrate, and the underlying mechanisms of this regulation are still unclear. In this study, we aim to investigate the role of lysine specific demethylase (LSD1), a histone demethylase and important regulator of thermogenesis, in mediating gut microbial metabolite butyrate regulation of thermogenesis. The antibiotic cocktail (ABX) was administrated to deplete gut microbiota. Adipose-specific LSD1 knockout mice (LSD1 aKO) were generated by crossing LSD1-lox/lox with adiponectin-cre mice and sodium butyrate and dietary fiber inulin was administrated through oral-gavage. Primary stromal vascular cells were isolated from adipose tissues and differentiated to adipocytes for studying butyrate effects on adipocyte thermogenesis. The antibiotic cocktail (ABX)-mediated depletion of the gut microbiota in mice downregulated the expression of LSD1 in both brown adipose tissue (BAT) and subcutaneous white adipose tissue (scWAT) in addition to uncoupling protein 1 (UCP1) and body temperature. Gavage of the microbial metabolite butyrate in ABX-treated mice reversed the thermogenic functional impairment and LSD1 expression. The adipose-specific ablation of LSD1 in mice attenuated the butyrate-mediated induction of thermogenesis and energy expenditure. Notably, our results showed that butyrate directly increased the expression of LSD1 and UCP1 as well as butyrate transporter monocarboxylate transporter 1 (MCT1) and catabolic enzyme acyl-CoA medium-chain synthetase 3 (ACSM3) in ex vivo cultured adipocytes. The inhibition of MCT1 blocked the effects of butyrate in adipocytes. Furthermore, the butyrate-mediated prevention of diet-induced obesity (DIO) through increased thermogenesis was attenuated in LSD1 aKO mice. Moreover, after gavaging HFD-fed mice with the dietary fiber inulin, a substrate of microbial fermentation that rapidly produces butyrate, thermogenesis in both BAT and scWAT was increased, and DIO was decreased; however, these beneficial metabolic effects were blocked in LSD1 aKO mice. Together, our results indicate that the microbial metabolite butyrate regulates thermogenesis in BAT and scWAT through the activation of LSD1."	"Trefoil Factor Family 1 Inhibits the Development of Hepatocellular Carcinoma by Regulating β-Catenin Activation. Recent studies have suggested that trefoil factor family 1 (TFF1) functions as a tumor suppressor in gastric and pancreatic carcinogenesis. To investigate the role of TFF1 in hepatocarcinogenesis, we performed immunohistochemical staining of surgically resected human liver samples, transfected a TFF1 expression vector into hepatocellular carcinoma (HCC) cell lines, and employed a mouse model of spontaneous HCC development (albumin-cyclization recombination/Lox-Stop-Lox sequence-Kirsten rat sarcoma viral oncogene homolog<sup>G12D</sup> [KC]); the model mouse strain was bred with a TFF1-knockout mouse strain to generate a TFF1-deficient HCC mouse model (KC/TFF1<sup>-/-</sup> ). TFF1 expression was found in some human samples with HCC. Interestingly, TFF1-positive cancer cells showed a staining pattern contradictory to that of proliferating cell nuclear antigen, and aberrant DNA hypermethylation in TFF1 promoter lesions was detected in HCC samples, indicating the tumor-suppressive role of TFF1. In vitro, induction of TFF1 expression resulted in impaired proliferative activity and enhanced apoptosis in HCC cell lines (HuH7, HepG2, and HLE). These anticancer effects of TFF1 were accompanied by the loss of nuclear β-catenin expression, indicating inactivation of the β-catenin signaling pathway by TFF1. In vivo, TFF1 deficiency in KC mice accelerated the early development and growth of HCC, resulting in poor survival rates. In addition, immunohistochemistry revealed that the amount of nuclear-localized β-catenin was significantly higher in KC/TFF1<sup>-/-</sup> mice than in KC mice and that human HCC tissue showed contradictory expression patterns for β-catenin and TFF1, confirming the in vitro observations. TFF1 might function as a tumor suppressor that inhibits the development of HCC by regulating β-catenin activity."	"The KDM5A/RBP2 histone demethylase represses NOTCH signaling to sustain neuroendocrine differentiation and promote small cell lung cancer tumorigenesis. More than 90% of small cell lung cancers (SCLCs) harbor loss-of-function mutations in the tumor suppressor gene RB1 The canonical function of the RB1 gene product, pRB, is to repress the E2F transcription factor family, but pRB also functions to regulate cellular differentiation in part through its binding to the histone demethylase KDM5A (also known as RBP2 or JARID1A). We show that KDM5A promotes SCLC proliferation and SCLC's neuroendocrine differentiation phenotype in part by sustaining expression of the neuroendocrine transcription factor ASCL1. Mechanistically, we found that KDM5A sustains ASCL1 levels and neuroendocrine differentiation by repressing NOTCH2 and NOTCH target genes. To test the role of KDM5A in SCLC tumorigenesis in vivo, we developed a CRISPR/Cas9-based mouse model of SCLC by delivering an adenovirus (or an adeno-associated virus [AAV]) that expresses Cre recombinase and sgRNAs targeting Rb1, Tp53, and Rbl2 into the lungs of Lox-Stop-Lox Cas9 mice. Coinclusion of a KDM5A sgRNA decreased SCLC tumorigenesis and metastasis, and the SCLCs that formed despite the absence of KDM5A had higher NOTCH activity compared to KDM5A<sup>+/+</sup> SCLCs. This work establishes a role for KDM5A in SCLC tumorigenesis and suggests that KDM5 inhibitors should be explored as treatments for SCLC."	"Fabrication and application of an amperometric lysine biosensor based on covalently immobilized lysine oxidase nanoparticles onto Au electrode. The fabrication of an amperometric lysine biosensor is described in this study, wherein nanoparticles (NPs) of lysine oxidase (LOx) are covalently immobilized onto gold electrode (AuE). The LOxNPs were prepared by desolvation method and characterized by UV Vis spectroscopy, Fourier transform infra red (FTIR) spectroscopy and transmission electron microscopy (TEM). The LOxNPs/AuE modified working electrode was studied by scanning electron microscope (SEM) and cyclic voltammetric (CV) techniques. The electrode exhibited optimum current within 3.5 s at applied potential, 0.8 V, pH 6.5 and temperature, 35 °C. The sensor displayed a linear relationship between lysine concentration and current in the range 10-800 µM with a limit of detection of 10 µM. Within assay and between batch coefficients of variation were 0.0751% and 0.0637% respectively. The analytical recoveries of added lysine at 10 µM and 20 µM in sera were 98.39% and 98.23% respectively. There was a good correlation between level of lysine in sera and milk samples (R<sup>2</sup> = 0.999 and R<sup>2</sup> = 0.98 respectively) as determined by the standard spectrophotometric method and the present method. The biosensor measured lysine levels in milk, pharmaceutical tablet and sera of healthy individuals and cancer patients. The biosensor showed slight interference by common interferents found in serum."	"Lowered Decorin With Aberrant Extracellular Matrix Remodeling in Aqueous Humor and Tenon's Tissue From Primary Glaucoma Patients. To evaluate the inflammatory cytokine, growth factors, extracellular matrix (ECM) remodeling genes, profibrotic and antifibrotic molecules in patients undergoing glaucoma filtration surgery (GFS). Additionally, the effect of preoperative antiglaucoma medications (AGMs) and postoperative bleb status were related to these parameters. Tenon's tissue and aqueous humour (AH) were collected from 207 patients undergoing GFS with primary open-angle glaucoma (POAG) (n = 77), primary angle-closure glaucoma (PACG) (n = 62), and cataract controls (n = 68). Monocyte chemoattractant protein-1 (MCP-1), connective tissue growth factor (CTGF), transforming growth factor β1/2 (TGF-β1/2), lysyl oxidase (LOX), lysyl oxidase L2 (LOXL2), elastin (ELN), collagen type 1 α 1 (COL1A1), secreted protein acidic and rich in cysteine (SPARC), α-smooth muscle actin (α-SMA), and decorin (DCN) were determined in tenon's tissue by real-time PCR and in AH using ELISA. A significant increase was observed in the transcripts of MCP-1, TGF-β2, and SPARC in POAG and PACG (P &lt; 0.05); CTGF, TGF-β1, LOX, LOXL2, ELN, COL1A1, and α-SMA in PACG (P &lt; 0.05) compared with control. DCN transcript was significantly decreased in POAG and PACG (P &lt; 0.05) compared with control. The protein levels of CTGF, TGF-β1/β2, ELN, SPARC, and LOXL2 was significantly elevated in POAG and PACG (P &lt; 0.05); DCN was decreased (P &lt; 0.05) compared with control. These parameters showed significant association with duration of preoperative AGMs and postoperative bleb status. This study demonstrates increased expression of growth factors and ECM molecules, both at protein and transcript levels in GFS patients. A decreased DCN in AH seems striking, and if restored might have a therapeutic role in minimizing postoperative scarring to improve GFS outcome."	"Co-administration of resveratrol and beta-aminopropionitrile attenuates liver fibrosis development via targeting lysyl oxidase in CCl4-induced liver fibrosis in rats. Objectives: In the current study, we aimed to investigate the effect of administration of resveratrol (RES) and beta-aminopropionitrile (BAPN) separately and together on the liver fibrosis progression via regulation of the gene expression and protein level of lysyl oxidase (LOX).Materials and methods: The six-week old Wistar rats received carbon tetrachloride (CCl4) intraperitoneally and RES and BAPN were administrated orally for eight weeks. The hepatoprotective effects of RES, BAPN, and combination treatment were evaluated. Then the hepatic protein and gene expression levels of LOX were measured.Results: Both RES and BAPN showed the antifibrotic effect through the reduction of collagen fiber bundles, hepatic hydroxyproline content, and protein level of LOX. The antifibrotic effect increased when RES and BAPN up-taken together.Conclusion: The co-administration of RES and BAPN can be considered as a promising therapeutic approach via targeting LOX."	"Gonadotrope-specific deletion of the BMP type 2 receptor does not affect reproductive physiology in mice†‡. Activins selectively stimulate follicle-stimulating hormone (FSH) secretion by pituitary gonadotrope cells. More recently, other members of the TGFbeta superfamily, the bone morphogenetic proteins (BMPs), were reported to regulate FSH synthesis. Activins and BMPs independently and synergistically stimulate transcription of the FSHbeta subunit (Fshb) gene in immortalized gonadotrope-like cells. Both ligands can signal via the activin receptor type IIA (ACVR2A) to regulate FSH synthesis in vitro. In vivo, global Acvr2a knockout mice exhibit a 60% reduction in circulating FSH relative to wild-type animals, suggesting that activins, BMPs, or related ligands might signal through additional type II receptors to regulate FSH in vivo. Although the leading candidates are ACVR2B and the BMP type II receptor (BMPR2), only the latter mediates activin or BMP2 induction of Fshb transcription in vitro. Here, we generated mice carrying a loss of function mutation in Bmpr2 specifically in gonadotropes. Puberty onset, estrous cyclicity, and reproductive organ weights were similar between control and conditional knockout females. Serum FSH and luteinizing hormone (LH) and pituitary expression of Fshb and the LHbeta subunit (Lhb) were similarly unaffected by the gene deletion in both sexes. These results suggest that BMPR2 might not play a necessary role in FSH synthesis or secretion in vivo or that another type II receptor, such as ACVR2A, can fully compensate for its absence. These data also further contribute to the emerging concept that BMPs may not be physiological regulators of FSH in vivo."	"A novel splice variant of LOXL2 promotes progression of human papillomavirus-negative head and neck squamous cell carcinoma. Head and neck squamous cell carcinoma (HNSCC) is one of the most frequently diagnosed cancers worldwide. LOXL2 demonstrates alternative splicing events in patients with human papillomavirus (HPV)-negative HNSCC. The current study explored the role of a dominant LOXL2 variant in HPV-negative HNSCC. Expression of the LOXL2 variant was analyzed using The Cancer Genome Atlas cohorts and validated using quantitative reverse transcriptase-polymerase chain reaction in a separate primary tumor set. The authors defined the effect of LOXL2 splice variants in assays for cell proliferation using a cell viability assay and colony formation assay. Cell migration and invasion were examined using a cell scratch assay and transwell cell migration and invasion assay in LOXL2 splice variant gain and loss of expression cells. Western blot analysis and gene set enrichment analysis were used to explore the potential mechanism of the LOXL2 splice variant in HPV-negative HNSCC. Expression of a novel LOXL2 variant was found to be upregulated in The Cancer Genome Atlas HPV-negative HNSCC, and confirmed in the separate primary tumor validation set. Analyses of loss and gain of function demonstrated that this LOXL2 variant enhanced proliferation, migration, and invasion in HPV-negative HNSCC cells and activated the FAK/AKT pathway. A total of 837 upregulated and 820 downregulated genes and 526 upregulated and 124 downregulated pathways associated with LOXL2 variant expression were identified using gene set enrichment analysis, which helped in developing a better understanding of the networks activated by this LOXL2 variant in patients with HPV-negative HNSCC. The novel LOXL2 variant can promote the progression of HPV-negative HNSCC, in part through FAK/AKT pathway activation, which may provide a new potential therapeutic target among patients with HPV-negative HNSCC."	"Deficiency of 15-LOX-1 Induces Radioresistance through Downregulation of MacroH2A2 in Colorectal Cancer. Despite the importance of radiation therapy, there are few radiation-related markers available for use in clinical practice. A larger catalog of such biomarkers is required to help clinicians decide when radiotherapy should be replaced with a patient-specific treatment. Arachidonate 15-lipoxygenase (15-LOX-1) enzyme is involved in polyunsaturated fatty acid metabolism. When colorectal cancer (CRC) cells were exposed to radiation, 15-LOX-1 was upregulated. To verify whether 15-LOX-1 protects against or induces DNA damage, we irradiated sh15-LOX-1 stable cells. We found that low 15-LOX-1 is correlated with radioresistance in CRC cells. These data suggest that the presence of 15-LOX-1 can be used as a marker for radiation-induced DNA damage. Consistent with this observation, gene-set-enrichment analysis based on microarray experiments showed that UV_RESPONSE was decreased in sh15-LOX-1 cells compared to shCon cells. Moreover, we discovered that the expression of the histone H2A variant macroH2A2 was sevenfold lower in sh15-LOX-1 cells. Overall, our findings present mechanistic evidence that macroH2A2 is transcriptionally regulated by 15-LOX-1 and suppresses the DNA damage response in irradiated cells by delaying H2AX activation."	"Loss of PTPRJ/DEP-1 enhances NF2/Merlin-dependent meningioma development. Meningiomas are common tumors in adults, which develop from the meningeal coverings of the brain and spinal cord. Loss-of-function mutations or deletion of the NF2 gene, resulting in loss of the encoded Merlin protein, lead to Neurofibromatosis type 2 (NF2), but also cause the formation of sporadic meningiomas. It was shown that inactivation of Nf2 in mice caused meningioma formation. Another meningioma tumor-suppressor candidate is the receptor-like density-enhanced phosphatase-1 (DEP-1), encoded by PTPRJ. Loss of DEP-1 enhances meningioma cell motility in vitro and invasive growth in an orthotopic xenograft model. Ptprj-deficient mice develop normally and do not show spontaneous tumorigenesis. Another genetic lesion may be required to interact with DEP-1 loss in meningioma genesis. In the present study we investigated in vitro and in vivo whether the losses of DEP-1 and Merlin/NF2 may have a combined effect. Human meningioma cells deficient for DEP-1, Merlin/NF2 or both showed no statistically significant changes in cell proliferation, while DEP-1 or DEP1/NF2 deficiency led to moderately increased colony size in clonogenicity assays. In addition, the loss of any of the two genes was sufficient to induce a significant reduction of cell size (p &lt; .05) and profound morphological changes. Most important, in Ptprj knockout mice Cre/lox mediated meningeal Nf2 knockout elicited a four-fold increased rate of meningioma formation within one year compared with mice with Ptprj wild type alleles (25% vs 6% tumor incidence). Our data suggest that loss of DEP-1 and Merlin/NF2 synergize during meningioma genesis."	"Anti-inflammatory effect and mechanism of action of ellagic acid-3,3',4-trimethoxy-4'-O-α-L-rhamnopyranoside isolated from Hopea parviflora in lipopolysaccharide-stimulated RAW 264.7 macrophages. Phytochemical investigation of the stem bark of Hopea parviflora resulted in the isolation of 9 compounds; which includes friedelin (1), friedelin-3β-ol (2), (-)-ampelopsin A (3), (-)-ɛ-viniferin (4), (-)-hopeaphenol (5), vaticaphenol A (6), 2,4,8-trihydroxyphenanthrene-2-O-glucoside (7), ellagic acid-3,3',4-trimethoxy-4'-O-α-L-rhamnopyranoside (8) and β-sitosterol-β-D-glucoside (9). Among them, compounds 1, 2, 6, 7, 8 and 9 are isolated for the first time from this species. Further, we evaluated the anti-inflammatory activity of compounds 4, 5, 6, 7 and 8. In this study, compound 8 inhibited the activity of proinflammatory mediators like NO, TNF-α, IL-6, 5-LOX and COX-2, also promoted the action of anti-inflammatory mediator like IL-10 via inhibition of the NF-κB pathway in LPS-stimulated RAW 264.7 macrophages."	"Stratification by Multidimensional Approach for Rational Treatment of Asymptomatic Carotid Stenosis (SMART-K Study): Study Protocol. With recent advances in medical treatments for carotid artery stenosis (CS), indications for carotid surgery should be more carefully considered for asymptomatic CS (ACS). Accurate stratification of ACS should be based on the risk of cerebral infarction, and subgroups of patients more likely to benefit from surgical treatment should be differentiated. Magnetic resonance imaging (MRI) offers a non-invasive, accurate modality for characterizing carotid plaque. Intraplaque hemorrhage (IPH) seems the most promising feature of vulnerable plaque detectable by MRI. Lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) is a type II membrane protein of the C-type lectin family with an extracellular domain that can be proteolytically cleaved and released as a soluble form (sLOX-1). This sLOX-1 plays a key role in the pathogenesis of atherosclerosis, and elevated sLOX-1 concentrations correlate with thin or ruptured fibrous caps in patients with acute coronary syndrome. This ongoing study aims to clarify the incidence of ischemic stroke in patients with ACS and IPH confirmed by MRI, and to assess whether sLOX-1 could provide a biomarker for risk of future ischemic events. The study population comprises patients with ACS (&gt;60% area stenosis) associated with MRI-diagnosed IPH receiving follow-up under medical treatment. Primary endpoints comprise transient ischemic attack, stroke or amaurosis resulting from concerned CS. Secondary endpoints comprise any stroke or surgical treatment for progressive luminal stenosis. The target number of patients is 120 and the observational period is 36 months. The study results could help identify individuals with ACS who are refractory to medical therapy."	"Association of Plasma Marker of Oxidized Lipid with Histologic Plaque Instability in Patients with Peripheral Artery Disease. The association between oxidized low-density lipoprotein (OxLDL) and plaque instability in coronary and carotid artery disease is well established. However, the association between OxLDL and the histologic changes of plaque in peripheral artery disease has not been clearly elucidated. This study aims to investigate the association between plasma OxLDL and histologic plaque instability in patients with peripheral artery disease. Prospectively obtained plaques from 48 patients who underwent endovascular atherectomy (n = 20), surgical endarterectomy (n = 9), or bypass surgery (n = 19) for treatment of atherosclerotic femoropopliteal artery disease were evaluated for histologic fibrosis, sclerosis, calcification, necrosis, cholesterol cleft, and foamy macrophages using hematoxylin and eosin, oil red O, and immunohistochemical staining. Unstable plaques were defined as plaques that were positive for foamy macrophages and with lipid content of more than 10% of the total plaque area. Plasma OxLDL levels were measured using an enzyme-linked immunosorbent assay (Mercodia AB, Uppsala, Sweden). Of the 48 patients, 26 (54%) had unstable plaques. The unstable plaque group was younger, had fewer angiographic total occlusions, less calcification, and more CD68-positive and LOX-1-positive cells than the stable plaque group. Plasma OxLDL levels were significantly higher in the unstable plaque group than in the stable plaque group (57.4 ± 13.9 vs. 47.2 ± 13.6 U/L, P = 0.014). Multivariate analysis revealed that plasma OxLDL level, smoking, angiographic nontotal occlusion, and statin nonuse were independent predictors of unstable plaque. Among patients with peripheral artery disease, the histologic instability of femoropopliteal plaque was independently associated with high plasma OxLDL, smoking, nontotal occlusion, and statin nonuse. Further large-scale studies are necessary to evaluate the role of noninvasive OxLDL measurement for predicting plaque instability and future adverse vascular event."	"15-Lipoxygenase-1 in osteoblasts promotes TGF-β1 expression via inhibiting autophagy in human osteoarthritis. 15-Lipoxygenase-1 (15-LOX-1) belongs to the lipoxygenase family involved in the inflammatory response and pathological process of various diseases, including osteoarthritis (OA). The overexpression of TGF-β1 in osteoblasts leads to abnormal changes in subchondral bone structure, eventually causing OA. However, the pathogenesis of the disease is poorly defined, and the interaction between 15-LOX-1 and TGF-β1 in osteoblasts has not been evaluated in OA. In this study, the role of 15-LOX-1 in subchondral bone osteoblasts in OA was evaluated. 15-LOX-1 expression in osteoblasts of the subchondral bone of patients with OA was measured by immunohistochemistry, qRT-PCR, and western blotting. Osteoblasts extracted from the subchondral bone of OA were transfected with 15-LOX-1 siRNA and an overexpression vector. The eff ;ect of 15-LOX-1 on the expression of TGF-β1 in OA osteoblasts was assessed by qRT-PCR and western blotting. The effect of 15-LOX-1 on autophagy via AMPK pathway in OA osteoblasts was evaluated by qRT-PCR, western blotting, and transmission electron microscopy. The expression levels of 15-LOX-1 and TGF-β1 were higher in OA subchondral bone osteoblast than that in non-OA subchondral bone. 15-LOX-1, which downregulated autophagy by inhibiting AMPK following the activation of mTORC1, upregulated the osteoblast expression of TGF-β1. Treatment with autophagy inhibitors significantly increased the expression levels of TGF-β1 in osteoblasts. In the present study, our findings suggested that 15-Lipoxygenase-1 in Osteoblasts Promotes TGF-β1 expression via inhibiting autophagy in human Osteoarthritis. These novel results suggested that 15-Lipoxygenase-1 expressed by subchondral bone osteoblasts might be a promising therapeutic target in human OA."	"Elevated levels of 15-lipoxygenase-1 contribute to the abnormal phenotypes of osteoblasts in human osteoarthritis. 15-lipoxygenase-1 (15-LOX-1) plays a vital role in aggravating the inflammatory response in various pathological processes, including osteoarthritis (OA). Abnormal osteoblast phenotypes including elevated runt-related transcription factor 2 (RUNX2), collagen type 1 alpha 1 (COL1), and osteocalcin (OCN) lead to osteosclerosis of the subchondral bone, which eventually causes OA. However, the pathogenesis of OA is poorly defined, and it is unclear if 15-LOX-1 induces osteoblast abnormal phenotypes in OA. Therefore, this study aimed to determine the roles of 15-LOX-1 on the abnormal phenotypes present in osteoblasts of the subchondral bone in OA. The expression levels of 15-LOX-1 were measured by Immunohistochemistry, qRT-PCR and western blotting from the OA subchondral bone osteoblasts. To further investigate the roles of 15-LOX-1 in abnormal phenotypes of osteoblasts and its mechanisms in OA, 15-LOX-1 siRNA or overexpressing lv-15-lox-1 were transfected into osteoblasts, respectively. The effects of 15-LOX-1 on abnormal phenotypes of osteoblasts in OA were assessed by qRT-PCR, and western blotting. We also examined the role of 15-LOX-1-inhibited autophagy in OA osteoblasts by qRT-PCR, and western blotting, transmission electron microscopy. The expression levels of 15-LOX-1 along with osteoblast phenotype markers such as RUNX2, COL1, and OCN were significantly increased in OA subchondral bone. Furthermore, 15-LOX-1 inhibited autophagy significantly upregulated the expression levels of RUNX2, COL1 and OCN through activated mTORC1. Similarly, treatment with autophagy inhibitors alleviated osteoblast abnormal phenotypes of osteoblasts in OA. In conclusion, our results suggested that the expression of 15-LOX-1 on osteoblasts from the subchondral bone increased in OA. 15-LOX-1 inhibited autophagy by activated mTORC1, which in turn upregulated the markers of abnormal osteoblast phenotypes RUNX2, COL1, and OCN."	"Evolution of volatile compounds during the development of Muscat grape 'Shine Muscat' (Vitis labrusca × V. vinifera). This study investigated the evolution of both free and bound volatile compounds in 'Shine Muscat' grape from post-fruit set to post-maturity and limiting factors of the lipoxygenase (LOX) pathway. C6 compounds and terpenes were the main free and bound volatile compounds, respectively. At pre-softening, volatile compounds concentrations were mainly regulated by expansion dilution, and terpene concentrations decreased significantly, which resulted in the minimum terpene concentrations occurred at softening. The volatile compounds were mainly regulated by metabolic synthesis at post-softening, and the production of C6 compounds, terpenes and esters largely began at 10, 12 weeks post-flowering and maturity stages, respectively. In the LOX pathway, LOX, alcohol dehydrogenase and the substrate alcohols were the limiting factors. The aroma maturity stages occurred at 15.4 weeks post-flowering. Finally, the developmental patterns of the volatile compounds in grape were summarized considering previous results in neutral and non-Muscat aromatic varieties."	"A nanocomposite prepared from platinum particles, polyaniline and a Ti3C2 MXene for amperometric sensing of hydrogen peroxide and lactate. A nanocomposite consisting of platinum particles, polyaniline and Ti3C2 MXene (Pt/PANI/MXene) was used to modify a screen-printed carbon electrode (SPCE) to obtain sensors for hydrogen peroxide and lactate. This nanocomposite was characterized by scanning electron microscopy (SEM), energy dispersive X-ray spectroscopy (EDX), transmission electron microscopy (TEM) and X-ray powder diffraction (XRD) to determine the physical morphologies and the nanocomposite elements. The modified electrode exhibited the improved current response towards hydrogen peroxide (H2O2) compared with an unmodified electrode and provided a low detection limit of 1.0 μM. When lactate oxidase was immobilized on the modified electrode, the electrode responded to lactate via the H2O2 generated in the enzymatic reaction. The lactate assay was performed by amperometry at a constant potential of +0.3 V (vs. Ag/AgCl). The linear range was found to be from 0.005 to 5.0 mM with a detection limit of 5.0 μM for lactate. Ultimately, this biosensor was used for the determination of lactate in milk samples with high stability and reliability. Graphical abstractSchematic representation of a novel platinum particles/polyaniline/MXene nanocomposite (Pt/PANI/MXene) for screen-printed carbon electrode (SPCE) modification to enhance the specific surface area for immobilization of lactate oxidase (LOx) and use as enzymatic biosensor for lactate determination in milk sample."	"Morphine Efficacy, Tolerance, and Hypersensitivity Are Altered After Modulation of SUR1 Subtype KATP Channel Activity in Mice. ATP-sensitive potassium (KATP) channels are found in the nervous system and are downstream targets of opioid receptors. KATP channel activity can effect morphine efficacy and may beneficial for relieving chronic pain in the peripheral and central nervous system. Unfortunately, the KATP channels exists as a heterooctomers, and the exact subtypes responsible for the contribution to chronic pain and opioid signaling in either dorsal root ganglia (DRG) or the spinal cord are yet unknown. Chronic opioid exposure (15 mg/kg morphine, s.c., twice daily) over 5 days produces significant downregulation of Kir6.2 and SUR1 in the spinal cord and DRG of mice. In vitro studies also conclude potassium flux after KATP channel agonist stimulation is decreased in neuroblastoma cells treated with morphine for several days. Mice lacking the KATP channel SUR1 subunit have reduced opioid efficacy in mechanical paw withdrawal behavioral responses compared to wild-type and heterozygous littermates (5 and 15 mg/kg, s.c., morphine). Using either short hairpin RNA (shRNA) or SUR1 cre-lox strategies, downregulation of SUR1 subtype KATP channels in the spinal cord and DRG of mice potentiated the development of morphine tolerance and withdrawal. Opioid tolerance was attenuated with intraplantar injection of SUR1 agonists, such as diazoxide and NN-414 (100 μM, 10 μL) compared to vehicle treated animals. These studies are an important first step in determining the role of KATP channel subunits in antinociception, opioid signaling, and the development of opioid tolerance, and shed light on the potential translational ability of KATP channel targeting pharmaceuticals and their possible future clinical utilization. These data suggest that increasing neuronal KATP channel activity in the peripheral nervous system may be a viable option to alleviate opioid tolerance and withdrawal."	"The intrinsic circadian clock in podocytes controls glomerular filtration rate. Glomerular filtration rate (GFR), or the rate of primary urine formation, is the key indicator of renal function. Studies have demonstrated that GFR exhibits significant circadian rhythmicity and, that these rhythms are disrupted in a number of pathologies. Here, we tested a hypothesis that the circadian rhythm of GFR is driven by intrinsic glomerular circadian clocks. We used mice lacking the circadian clock protein BMAL1 specifically in podocytes, highly specialized glomerular cells critically involved in the process of glomerular filtration (Bmal1<sup>lox/lox</sup>/Nphs2-rtTA/LC1 or, cKO mice). Circadian transcriptome profiling performed on isolated glomeruli from control and cKO mice revealed that the circadian clock controls expression of multiple genes encoding proteins essential for normal podocyte function. Direct assessment of glomerular filtration by inulin clearance demonstrated that circadian rhythmicity in GFR was lost in cKO mice that displayed an ultradian rhythm of GFR with 12-h periodicity. The disruption of circadian rhythmicity in GFR was paralleled by significant changes in circadian patterns of urinary creatinine, sodium, potassium and water excretion and by alteration in the diurnal pattern of plasma aldosterone levels. Collectively, these results indicate that the intrinsic circadian clock in podocytes participate in circadian rhythmicity of GFR."	"Alternative Splicing of Key Genes in LOX Pathway Involves Biosynthesis of Volatile Fatty Acid Derivatives in Tea Plant (Camellia sinensis). Volatile fatty acid derivatives (VFADs) produced in tea plants (Camellia sinensis) not only have been shown to function as defense compounds but also impart a &quot;fresh green&quot; odor to green tea products; however, little is known about alternative splicing (AS) of genes in regulating the production of VFADs in plants. In this study, the contents of VFADs and corresponding transcriptome profiles were obtained in five different months (April, June, August, September, and October). Correlation analysis identified seven unique transcripts of enzyme-coding genes (CsLOX2, CsLOX4, CsADH4, CsADH8, and CsADH10), which are responsible for regulating VFAD biosynthesis; four AS transcripts of these genes (CsLOX2, CsLOX4, CsADH4, and CsADH8) were validated by RT-PCR. By employing the gene-specific antisense oligodeoxynucleotide-mediated reduction method, we found the expression levels of alternatively spliced transcripts of CsLOX4-iso1, CsLOX4-iso2, and CsADH4-iso3 were lower, and the contents of cis-3-hexenol were correspondingly reduced in the leaves of tea plant; this result suggested that the AS play important roles in regulating biosynthesis of VFADs in C. sinensis. Our results provide new insights into the important contribution of AS events in regulating the VFAD biosynthesis in tea plant."	"Intra/Extracellular Lactic Acid Exhaustion for Synergistic Metabolic Therapy and Immunotherapy of Tumors. Regulating the tumor microenvironment (TME) has been a promising strategy to improve antitumor therapy. Here, a red blood cell membrane (mRBC)-camouflaged hollow MnO2 (HMnO2 ) catalytic nanosystem embedded with lactate oxidase (LOX) and a glycolysis inhibitor (denoted as PMLR) is constructed for intra/extracellular lactic acid exhaustion as well as synergistic metabolic therapy and immunotherapy of tumor. Benefiting from the long-circulation property of the mRBC, the nanosystem can gradually accumulate in a tumor site through the enhanced permeability and retention (EPR) effect. The extracellular nanosystem consumes lactic acid in the TME by catalyzing its oxidation reaction via LOX. Meanwhile, the intracellular nanosystem releases the glycolysis inhibitor to cut off the source of lactic acid, as well as achieve antitumor metabolic therapy through the blockade of the adenosine triphosphate (ATP) supply. Both the extracellular and intracellular processes can be sensitized by O2 , which can be produced during the decomposition of endogenous H2 O2 catalyzed by the PMLR nanosystem. The results show that the PMLR nanosystem can ceaselessly remove lactic acid, and then lead to an immunocompetent TME. Moreover, this TME regulation strategy can effectively improve the antitumor effect of anti-PDL1 therapy without the employment of any immune agonists to avoid the autoimmunity."	"Impaired Gastric Hormone Regulation of Osteoblasts and Lysyl Oxidase Drives Bone Disease in Diabetes Mellitus. Diabetic bone disease is a complication of type I and type II diabetes, both of which are increasing in the United States and elsewhere. Increased hip and foot fracture rates do not correlate well with changes in bone mineral density (BMD), whereas studies support the importance of collagen structure to bone strength. Extracellular lysyl oxidase (LOX) catalyzes the oxidative deamination of hydroxylysine and lysine residues in collagens resulting in aldehydes that subsequently form critically important biosynthetic crosslinks that stabilize functional collagens. Although LOX-dependent biosynthetic crosslinks in bone collagen are deficient in diabetic bone, the expression and regulation of bone LOXs in diabetes have not been comprehensively studied. Here, we found that LOX is profoundly downregulated in bone in diabetes. Moreover, we have identified a novel metabolic regulatory relationship that is dysregulated in diabetes using mouse models. Data indicate that the incretin (gastric hormone) known as glucose-dependent insulinotropic polypeptide (GIP) that is anabolic to osteoblasts strongly upregulates LOX, and that this regulation is disrupted in the streptozotocin-induced model of diabetes in mice. In vivo and in vitro studies support that diabetes results in elevated circulating peripheral dopamine, likely also derived from the gut, and is responsible for blocking GIP signaling and LOX levels in osteoblasts. Moreover, peripheral administration of the dopamine D2 receptor antagonist amisulpride to diabetic mice restored trabecular bone structure to near normal and partially reversed downregulation of LOX. Taken together our data identifies a novel metabolic relationship between the gut-derived hormone GIP and bone-derived LOX, and points to the importance of LOX dysregulation in the pathology of diabetic bone disease. © 2019 The Authors. JBMR Plus published by Wiley Periodicals, Inc. on behalf of the American Society for Bone and Mineral Research."	"miR-182-5p is an evolutionarily conserved Tbx5 effector that impacts cardiac development and electrical activity in zebrafish. To dissect the TBX5 regulatory circuit, we focused on microRNAs (miRNAs) that collectively contribute to make TBX5 a pivotal cardiac regulator. We profiled miRNAs in hearts isolated from wild-type, CRE, Tbx5<sup>lox/+</sup>and Tbx5<sup>del/+</sup> mice using a Next Generation Sequencing (NGS) approach. TBX5 deficiency in cardiomyocytes increased the expression of the miR-183 cluster family that is controlled by Kruppel-like factor 4, a transcription factor repressed by TBX5. MiR-182-5p, the most highly expressed miRNA of this family, was functionally analyzed in zebrafish. Transient overexpression of miR-182-5p affected heart morphology, calcium handling and the onset of arrhythmias as detected by ECG tracings. Accordingly, several calcium channel proteins identified as putative miR-182-5p targets were downregulated in miR-182-5p overexpressing hearts. In stable zebrafish transgenic lines, we demonstrated that selective miRNA-182-5p upregulation contributes to arrhythmias. Moreover, cardiac-specific down-regulation of miR-182-5p rescued cardiac defects in a zebrafish model of Holt-Oram syndrome. In conclusion, miR-182-5p exerts an evolutionarily conserved role as a TBX5 effector in the onset of cardiac propensity for arrhythmia, and constitutes a relevant target for mediating the relationship between TBX5, arrhythmia and heart development."	"In Vitro Evaluation and Docking Studies of 5-oxo-5H-furo[3,2-g]chromene-6-carbaldehyde Derivatives as Potential Anti-Alzheimer's Agents. A series of novel 2-carbo-substituted 5-oxo-5H-furo[3,2-g]chromene-6-carbaldehydes and their 6-(4-trifluoromethyl)phenylhydrazono derivatives have been prepared and evaluated for biological activity against the human acetylcholinesterase (AChE) and butyrylcholinesterase (BChE). The most active compounds from each series were, in turn, evaluated against the following enzyme targets involved in Alzheimer's disease, β-secretase (BACE-1) and lipoxygenase-15 (LOX-15), as well as for anti-oxidant potential. Based on the in vitro results of ChE and β-secretase inhibition, the kinetic studies were conducted to determine the mode of inhibition by these compounds. 2-(4-Methoxyphenyl)-5-oxo-5H-furo[3,2-g]chromene-6-carbaldehyde (2f), which exhibited significant inhibitory effect against all these enzymes was also evaluated for activity against the human lipoxygenase-5 (LOX-5). The experimental results were complemented with molecular docking into the active sites of these enzymes. Compound 2f was also found to be cytotoxic against the breast cancer MCF-7 cell line."	"Lysyl oxidase promotes liver metastasis of gastric cancer via facilitating the reciprocal interactions between tumor cells and cancer associated fibroblasts. Liver is one of the most preferred destinations of distant metastasis in gastric cancer (GC). As effective treatment is still limited, the prognosis of GC patients bearing liver metastasis is poor. We filter out lysyl oxidase (LOX) to study its function in the tumor microenvironment (TME) and seek for potential therapeutic targets. Transcription analysis on 6 cases of liver metastasis of GC patients with respective paired primary tumors and adjacent normal livers was performed. The filtration out of LOX was done using 5 datasets. 69 GC liver metastasis tissues were utilized to perform immunohistochemistry (IHC) and analyze prognosis. Computed Tomography (CT) combined 3D organ reconstruction bioluminescence imaging was performed to precisely evaluate the metastatic tumor burden on liver of intrasplenic injection mouse model. Human and mouse cancer associated fibroblasts (CAFs) in liver metastasis were separated to culture to study the interaction of LOX and TGF-β1. Patients-derived xenograft (PDX) model was established using liver metastasis of patients to evaluate the therapeutic value of LOX inhibitor β-aminopropionitrile (BAPN). CAFs-derived LOX at liver metastatic niche of GC promotes niche formation and outgrowth thus predicts poor prognosis. Meanwhile tumor cells in niche secrete TGF-β1 to nourish CAFs and stimulate them to produce more LOX in turn. The mechanism involved in LOX-mediated proliferation facilitation is enhancement of Warburg effect. The inhibitor of LOX, BPAN could hamper the effect brought by LOX in vivo and in vitro. Our study has unveiled a positive feedback loop between CAFs and tumor cells in liver metastasis niche of GC. The core molecule is LOX which facilitates Warburg effect. Targeting LOX with its inhibitor BAPN might serve as a potential therapeutic strategy. FUND: This research was supported by the National Natural Science Foundation of China (31872740), the 100-member plan of the Shanghai Municipal Commission of Health and Family Planning (2017BR043), Shanghai Science and Technology Commission Project(17ZR1416800), Renji Hospital Training Fund (PYMDT-003, PYIII-17-015), National Natural Science Foundation of China (81672358), the Shanghai Municipal Education Commission-Gao feng Clinical MedicineGrant Support (20181708), Program of Shanghai Academic/Technology Research Leader(19XD1403400), Science and Technology Commission of Shanghai Municipality (18410721000), Shanghai Municipal Health Bureau (2018BR32), China Postdoctoral Science Foundation (2018M640403), National Natural Science Foundation of China (81701945) and Youth project of Shanghai Municipal Health Commission(20164Y0045)."	"Conjugation of 4-aminosalicylate with thiazolinones afforded non-cytotoxic potent in vitro and in vivo anti-inflammatory hybrids. Eicosanoids like leukotrienes and prostaglandins that produced within the arachidonic acid cascade are involved in the pathogenesis of pain, acute and chronic inflammatory diseases. A promising approach for an effective anti-inflammatory therapy is the development of inhibitors targeting more than one enzyme of this cascade. Aiming to develop balanced COX/LOX inhibitors; 4-aminosalicylate based thiazolinones having different substituents at the 5th position of the 4-thiazolinone ring (2-22) were designed, synthesized, characterized and evaluated in vitro and in vivo for their anti-inflammatory activity. Most of the investigated compounds showed high COX-2 inhibitory potencies (IC50 39-200 nM) with selectivity indexes (30-84). Two compounds, 19 and 21, (IC50 = 41 and 44 nM), are equipotent to celecoxib (IC50 = 49 nM), while compound 22 (IC50 = 39 nM) was the most potent. For 15-LOX, compounds 5, 11, 19, 21 and 22 revealed higher potency (IC50 1.5-2.2 µM) than zileuton (IC50 15 µM). Thus, compounds 5, 11, 19, 21 and 22 are potent dual inhibitors of COX-2 and 15-LOX. In vivo anti-inflammatory testing of these compounds revealed that, compounds 5 and 21 had an anti-inflammatory activity similar to indomethacin and celecoxib (% inhibition of oedema = 60 ± 9) and higher than diclofenac potassium (% inhibition = 52 ± 29), while compound 22 (% inhibition = 63 ± 5) was more active than the reference drugs. The results showed that the activity is controlled by the bulkiness and lipophilicity of the substituent at the 5th position. The cytotoxicity results revealed that all compounds are not cytotoxic, additionally, in an experimental model of ulcerogenic effect, the most active compounds 21 and 22 showed better safety profile than indomethacin. Further, at the active sites of the COX-1, COX-2 and 15-LOX co-crystal, 19, 21, and 22 showed high binding forces in free binding energy study, which is consistent with in vitro and in vivo results. In conclusion, these compounds are good candidates for further biological investigation as potential anti-inflammatory drugs with dual balanced inhibition of COX and 15-LOX and good safety profile."	"Deoxyribonucleotide salvage falls short in whole animals. Ribonucleotide reductase (RNR) catalyzes the first committed reaction in DNA synthesis. Most of what we know about RNR regulation comes from studies with cultured cells and with purified proteins. In this study, Tran et al. use Cre-Lox technology to inactivate RNR large subunit expression in heart and skeletal muscle of mouse embryos. Analysis of these mutants paints a picture of dNTP regulation in whole animals quite different from that seen in studies of purified proteins and cultured cells."	"The lipoxygenase pathway of Tupaia belangeri representing Scandentia. Genomic multiplicity and functional characterization of the ALOX15 orthologs in the tree shrew. The tree shrew (Tupaia belangeri) is a rat-sized mammal, which is more closely related to humans than mice and rats. However, the use of tree shrew to explore the patho-mechanisms of human inflammatory disorders has been limited since nothing is known about eicosanoid metabolism in this mammalian species. Eicosanoids are important lipid mediators exhibiting pro- and anti-inflammatory activities, which are biosynthesized via lipoxygenase and cyclooxygenase pathways. When we searched the tree shrew genome for the presence of cyclooxygenase and lipoxygenase isoforms we found copies of functional COX1, COX2 and LOX genes. Interestingly, we identified four copies of ALOX15 genes, which encode for four structurally distinct ALOX15 orthologs (tupALOX15a-d). To explore the catalytic properties of these enzymes we expressed tupALOX15a and tupALOX15c as catalytically active proteins and characterized their enzymatic properties. As predicted by the Evolutionary Hypothesis of ALOX15 specificity we found that the two enzymes converted arachidonic acid predominantly to 12S-HETE and they also exhibited membrane oxygenase activities. However, their reaction kinetic properties (KM for arachidonic acid and oxygen, T- and pH-dependence) and their substrate specificities were remarkably different. In contrast to mice and humans, tree shrew ALOX15 isoforms are highly expressed in the brain suggesting a role of these enzymes in cerebral function. The genomic multiplicity and the tissue expression patterns of tree shrew ALOX15 isoforms need to be considered when the results of in vivo inflammation studies obtained in this animal are translated into the human situation."	"C3N4 nanosheet-supported Prussian Blue nanoparticles as a peroxidase mimic: colorimetric enzymatic determination of lactate. Prussian Blue nanoparticles were deposited on g-C3N4 nanosheets. The resulting nanocomposite possesses peroxidase-like (POx) activity and can catalyze the oxidation of 3,3',5,5'-tetramethylbenzidine at room temperature in the presence of H2O2. This leads to formation of a blue product with an absorption maximum at 650 nm. The formation of the Prussian Blue nanoparticles on the g-C3N4 nanosheets, and the POx-like activity of the composite were characterized in detail. The POx mimic was used for determination of L-lactic acid via detection of H2O2 that is produced by the enzyme lactate oxidase (LOx). The assay has a linear range that extends from 5 to 100 μM, and the detection limit is 2.2 μM. The method was successfully applied to the determination of L-lactic acid in spiked human serum. Graphical abstract Ultra-small Prussian Blue (PB) nanoparticles were used to modify g-C3N4 nanosheets, and their peroxidase-like activity was explored for detection of L-lactic acid. LOx represent L-lactate oxidase, and TMB represents 3,3',5,5'-tetramethylbenzidine."	"Mechanism of Action and Interactions between Thyroid Peroxidase and Lipoxygenase Inhibitors Derived from Plant Sources. This study focused on the effect of kaempferol, catechin, apigenin, sinapinic acid, and extracts from plants (i.e., parsley, cumin, mustard, green tea, and green coffee) on thyroid peroxidase (TPO) and lipoxygenase (LOX) activity, antiradical potential, as well as the result of interactions among them. Catechin, sinapinic acid, and kaempferol acted as a competitive TPO inhibitors, while apigenin demonstrated an uncompetitive mode of inhibitory action. Ethanol extracts from all plants acted as competitive TPO inhibitors, while, after in vitro digestion, TPO activation was found especially in the case of mustard (24%) and cumin (19.85%). Most importantly, TPO activators acted synergistically. The TPO effectors acted as LOX inhibitors. The most effective were potentially bioaccessible compounds from green tea and green coffee (IC50 = 29.73 mg DW/mL and 30.43 mg DW/mL, respectively). The highest free radical scavenging ability was determined for catechin and sinapinic acid (IC50 = 78.37 µg/mL and 84.33 µg/mL, respectively) and potentially bioaccessible compounds from mustard (0.42 mg DW/mL) and green coffee (0.87 mg DW/mL). Green coffee, green tea, cumin, and mustard contain potentially bioaccessible TPO activators that also act as effective LOX inhibitors, which indicate their potentially health-promoting effects for people suffering from Hashimoto's disease."	"15-LOX-1 has diverse roles in the resensitization of resistant cancer cell lines to doxorubicin. Lipoxygenases (LOXs) are a family of enzymes that can oxygenate polyunsaturated fatty acids. As a member of the family, 15-lipoxygenase-1 (15-LOX-1) specifically metabolizes arachidonic acid and linoleic acid. 15-LOX-1 can affect physiological and pathophysiological events via regulation of the protein-lipid interactome, alterations in intracellular redox state and production of lipid metabolites that are involved in the induction and resolution of inflammation. Although several studies have shown that 15-LOX-1 has an antitumorigenic role in many different cancer models, including breast cancer, the role of the protein in cancer drug resistance has not been established yet. In this study, we, for the first time, aimed to show the potential role of 15-LOX-1 in acquired doxorubicin (DOX) resistance in MCF7 and HeLa cancer cell lines. Our results show that ALOX15 was transcriptionally downregulated in DOX-resistant cells compared with their drug-sensitive counterparts. Moreover, overexpression of ALOX15 in the drug-resistant cells resulted in resensitization of those cells to DOX in a cell-dependent manner. 15-LOX-1 expression could induce apoptosis by activating PPARγ and enhance the accumulation of DOX in drug-resistant MCF7 cells by altering cellular motility properties, and membrane dynamics. However, HeLa DOX cells did not show any of these effects but were susceptible to cell death when treated with 13(S)-HODE. These results underline the role and importance of 15-LOX-1 in cancer drug resistance, and points to novel mechanisms as a therapeutic approach to overcome cancer drug resistance."	"Induction of p73, Δ133p53, Δ160p53, pAKT lead to neuroprotection via DNA repair by 5-LOX inhibition. The inflammatory process plays a key role in neurodegenerative disorder. The inflammatory molecule, 5-lipooxygenase (5-LOX), protein is involved in the pathologic phenotype of AD which includes Aβ amyloid deposition and tau hyperphosphorylation. This study aims to identify the mechanistic role in neuroprotection by 5-LOX inhibitor in neurotoxic SH-SY5Y cell line model by evaluating different cell survival pathway. The neurotoxic SH-SY5Y cells were developed by the treatment of Aβ25-35. The cells were then treated with 5-LOX peptide inhibitor, YWCS to prevent neurotoxicity reported earlier from our lab. The effect of 5-LOX inhibition on cell survival pathways were determined by western blot experiment with different doses of peptide by using polyclonal anti body of p53, anti-Akt and anti-phosphorylated Akt. Immunoprecipitation and mass spectroscopic studies were done to identify the altered proteins appeared on the blot. Over expression of phosphorylated Akt and 3 bands on p53 lane blot other than p53 were observed. Three bands were identified as isoforms of p53 which correspond to p73, Δ133p53 and Δ160p53 in the cells treated only with 80 µM of YWCS compare to untreated cells. However, no alteration of total p53 and Akt were observed in treated cells. The results exposed the novel mechanistic pathway of neuroprotection by 5-LOX inhibition is likely to be mediated by DNA DSB repair through p53 isoforms and PI3K/Akt pathway. Our finding has opened a new window in the therapeutic approach for the prevention of AD."	"LOX-1 is involved in TLR2 induced RANKL regulation in peri-implantitis. To explore whether receptor activator of nuclear factor kappa-B ligand (RANKL) is involved in the nosogenesis of peri-implantitis and to reveal the regulatory mechanism in Porphyromonas gingivalis induced RANKL production. Therefore, we collected peri-implant crevicular fluid (PICF) and gingival tissues from healthy implants and peri-implantitis patients. The expression of RANKL in samples was tested by ELISA, Western blot and immunofluorescence staining. The production of RANKL in THP-1 macrophages stimulated with P. gingivalis was detected by qRT-PCR and Western blot. Then macrophages were pre-treated with neutralizing antibodies of Toll-like receptor 2 (TLR2) or lectin-type oxidized LDL receptor 1 (LOX-1) and inhibitors of TLR2, LOX-1 or Erk1/2 before P. gingivalis stimulation to evaluate the roles of TLR2, LOX-1 and Erk1/2 in RANKL production by qRT-PCR and Western blot. The protein level of RANKL was higher in PICF of peri-implantitis patients than healthy implants. We observed increased RANKL expression in P. gingivalis infected macrophages compared to controls. RANKL induced by P. gingivalis stimulation was mediated by TLR2 and Erk1/2 signaling pathway in THP-1 macrophages. LOX-1 is involved in TLR2 induced RANKL expression. RANKL was involved in peri-implantitis, and regulated by TLR2, LOX-1 and Erk1/2 signaling against P. gingivalis infection. As the novel inflammation pathway triggers, TLR2 and LOX-1 which mediate RANKL production seems to be potential drug targets of peri-implantitis."	"Fisetin, via CKIP-1/REGγ, limits oxidized LDL-induced lipid accumulation and senescence in RAW264.7 macrophage-derived foam cells. To test the hypothesis that the flavonoid compound, fisetin, protects macrophages from lipid accumulation and senescence through regulation of casein kinase 2-interacting protein-1 (CKIP-1)/REGγ (11S regulatory particles, 28 kDa proteasome activator, proteasome activator subunit 3) signaling. RAW264.7 macrophage cells were exposed to 100 μg/ml oxidized low-density lipoprotein (ox-LDL) with or without 20 μg/ml fisetin for 24 h. Cell viability was detected by CCK-8 after 1 h. Intracellular lipid accumulation was measured using Oil Red O staining. Total cholesterol (TC) and free cholesterol (FC) contents were measured using assay kits, and cell senescence was inferred by β-gal staining. Protein expression levels of CKIP-1, REGγ, organic cation transporter 1 (Oct-1), lectin-like oxidized LDL receptor-1 (LOX-1), tumor suppressor protein p53 (p53), cell cycle regulatory protein p21 (p21), and multiple tumor suppressor-1 (p16) were detected by immunofluorescence and confirmed by Western blot. Stimulating RAW264.7 macrophage cells with 100 μg/ml ox-LDL for 24 h induced the formation of foam cells, increased intracellular lipid accumulation, increased TC and FC content, and promoted cell senescence. Furthermore, cells induced with 100 μg/ml ox-LDL for 24 h showed decreased CKIP-1 and REGγ protein, while the expressions of Oct-1, LOX-1, p53, p21 and p16 were increased. In contrast, treatment with 20 μg/ml fisetin reversed 100 μg/ml ox-LDL effects to increase cell viability, and decrease β-gal staining, intracellular lipid levels and TC and FC levels. These beneficial effects were associated with increased CKIP-1 and REGγ and decreased Oct-1, LOX-1, p53, p21, and p16 protein expression. Results indicated that fisetin limited ox-LDL-mediated lipid accumulation and senescence in RAW264.7 macrophage-derived foam cells. The mechanism underlying these effects may involve regulation of CKIP-1/REGγ signaling."	"Arbuscular Mycorrhizal Fungi Colonization Promotes Changes in the Volatile Compounds and Enzymatic Activity of Lipoxygenase and Phenylalanine Ammonia Lyase in Piper nigrum L. 'Bragantina'. Arbuscular mycorrhizal fungi (AMF) have been used to promote numerous benefits to plants. In this study, we evaluated the symbiosis between AMF species (Rhizophagus clarus, Claroideoglomus etunicatum) and Piper nigrum L. 'Bragantina'. Volatile compounds, lipoxygenase (LOX) and phenylalanine ammonia-lyase (PAL) activities, and total phenolic content were monitored from 1 to 60 days post-inoculation (dpi). Hyphae, arbuscles, and vesicles were observed during the root colonization. In the leaves, AMF induced an increase of sesquiterpene hydrocarbons (54.0%-79.0%) and a decrease of oxygenated sesquiterpenes (41.3%-14.5%) at 7 dpi and 60 dpi (41.8%-21.5%), respectively. Cubenol, the main volatile compound of leaves, showed a significant decrease at 7 dpi (21.5%-0.28%) and 45 dpi (20.4%-18.42%). β-caryophyllene, the major volatile compound of the roots, displayed a significant reduction at 45 dpi (30.0%-20.0%). LOX increased in the roots at 21, 30, and 60 dpi. PAL was higher in leaves during all periods, except at 60 dpi, and increased at 21 and 45 dpi in the roots. The total phenolic content showed a significant increase only in the roots at 30 dpi. The results suggested that AMF provided changes in the secondary metabolism of P. nigrum, inducing its resistance."	"A Lactate/Oxygen Biofuel Cell: The Coupled Lactate Oxidase Anode and PGM-Free Fe-N-C Cathode. The rapid development of both wearable and implantable biofuel cells has triggered more and more attention on the lactate biofuel cell. The novel lactate/oxygen biofuel cell (L/O-BFC) with the direct electron transfer (DET)-type lactate oxidase (LOx) anode and the platinum group metal (PGM)-free Fe-N-C cathode is designed and constructed in this paper. In such a reasonable design, the surface-controlled direct two-electron electrochemical reaction of the lactate oxidase was determined by cyclic voltammetry (CV) on the carbon nanotube (CNT) modified electrode with favorable high electrochemical active surface area and electronic conductivity. Additionally, the biosensor based on DET-type LOx modified electrode impressively presented linear response to lactate with different concentrations from 0.000 mM to 12.300 mM. In particular, the apparent Michealis-constant (KM<sup>app</sup>) calculated as 0.140 mM clearly indicates that LOx on CNT has strong affinity to the substrate lactate. Meanwhile, 4e<sup>-</sup> transfer oxygen reduction reaction (ORR) was proven to take place on the Fe-N-C catalysts inthe 0.1 M PBS system, indicating the advantage by using the Fe-N-C catalysts at the cathode of L/O-BFC. Last but not least, the L/O-BFC with the direct electron transfer (DET)-type lactate oxidase(LOx) anode and the Fe-N-C cathode produced an superior open circuit potential (OCP) of 0.264 V and a maximum output power density (OPD) of 24.430 μW cm<sup>-2</sup> in O2 saturated 95.020 mM lactate solution. The above results will not only bring about significant interest in developing a DET-type biofuel cell, but also offer guiding direction to explore novel catalyst materials for the biofuel cell. This work enriches the research content and may push developments of the implantable and wearable biofuel cell forward."	"Novel lysyl oxidase inhibitors attenuate hallmarks of primary myelofibrosis in mice. Primary myelofibrosis (PMF) is a chronic myeloproliferative neoplasm (MPN) that usually portends a poor prognosis with limited therapeutic options available. Currently, only allogeneic stem cell transplantation is curative in those who are candidates, while administration of the JAK1/2 inhibitor ruxolitinib carries a risk of worsening cytopenia. The limited therapeutic options available highlight the need for the development of novel treatments for PMF. Lysyl oxidase (LOX), an enzyme vital for collagen cross-linking and extracellular matrix stiffening, has been found to be upregulated in PMF. Herein, we evaluate two novel LOX inhibitors, PXS-LOX_1 and PXS-LOX_2, in two animal models of PMF (GATA1low and JAK2V617F-mutated mice). Specifically, PXS-LOX_1 or vehicle was given to 15- to 16-week-old GATA1low mice via intraperitoneal injection at a dose of 15 mg/kg four times a week for 9 weeks. PXS-LOX_1 was found to significantly decrease the bone marrow fibrotic burden and megakaryocyte number compared to vehicle in both male and female GATA1low mice. Given these results, PXS-LOX_1 was then tested in 15- to 17-week-old JAK2V617F-mutated mice at a dose of 30 mg/kg four times a week for 8 weeks. Again, we observed a significant decrease in bone marrow fibrotic burden. PXS-LOX_2, a LOX inhibitor with improved oral bioavailability, was next evaluated in 15- to 17-week-old JAK2V617F-mutated mice at a dose of 5 mg/kg p.o. four times a week for 8 weeks. This inhibitor also resulted in a significant decrease in bone marrow fibrosis, albeit with a more pronounced amelioration in female mice. Taking these results together, PXS-LOX_1 and PXS-LOX_2 appear to be promising new candidates for the treatment of fibrosis in PMF."	"Comparative Evaluation of role of Lysyl oxidase gene (LOXG473A) expression in pathogenesis and malignant transformation of Oral Submucous Fibrosis. Identification and comparison of gene expression of Lysyl oxidase (LOX) in oral submucous fibrosis and controls and to determine its role in Pathogenesis of Oral submucous fibrosis. Of total sample size (n=127), the whole blood sample were collected from case and control group in citrate vial. It is centrifused and stored at -800C. We collected and isolated RNA from blood of case group (n=127) and age and sex matched control group (n=127) recruited on the basis of inclusion criteria. The cDNA was prepared for 127 samples which were processed for gene expression of Lysyl oxidase (LOX) in relation to housekeeping genes (Beta actin and 18srRNA) and its role in pathogenesis of Oral submucous fibrosis. In relative expression (Normalized ratio),relatively 11 cases shown down-regulation of lysyl oxidase gene while 27 cases shows up-regulation of lysyl oxidase gene while in 89 cases there were no regulation i.e expression of lysyl oxidase gene in case group was of same degree of control. In non-relative expression results (Non-normalized ratio), the 38 cases shown down regulation of LOX gene while in 53 cases, it was up-regulated however in remaining 36 cases there was neither up-regulation nor down-regulation of Lysyl oxidase gene i.e the expression of LOX gene is null. In oral submucous fibrosis, the expression of Lysyl oxidase gene is mixed type i.e either it will down regulate/upregulate or there will be no expression at all comparatively. However in majority of cases the upregulation of lysyl oxidase is relatively more common than down-regulation or non expression of Lysyl oxidase gene. Key words:Oral submucous fibrosis, lysyl oxidase, betel nut, premalignant disorders."	"First report of a glycosaminoglycan-xylopyranan from the buccinid gastropod mollusk Babylonia spirata attenuating proinflammatory 5-lipoxygenase. A previously undescribed xylated glycosaminoglycan characterized as β-D-Xylop(1 → 3)-(⋯ → 4)-GlcpA(1 → 3)-GlcpNAc(1 → ⋯) was purified from the buccinid gastropod Babylonia spirata and was evaluated for pharmacological properties using different in vitro models. The glycosaminoglycan-xylopyranan displayed prospective free radical quenching activities (IC50 &lt; 0.7 mg/ml), whereas it exhibited potentially greater attenuation against the inductive proinflammatory enzyme 5-lipoxygenase (5-LOX, IC50 0.36 mg/ml) than the synthetic nonsteroidal anti-inflammatory drug aspirin (0.42). Gel permeation chromatography analysis specified the average molecular mass of the purified polysaccharide to be 231.88 kDa. The linkage sites, anomeric configuration, and the sequence of sugar residues of the purified xylated glycosaminoglycan were attributed by the inter-residue correlation obtained via two-dimensional nuclear resonance spectroscopic techniques. The results specified that the studied compound was composed of GlcpA(1 → 3)-GlcpNAc (1 → ⋯) disaccharide repeating unit in the glycosaminoglycan backbone, with the xylose residues branching as C-3 substituents of the GlcpA. . PRACTICAL APPLICATIONS: The edible marine buccinid mollusk Babylonia spirata is a gastropod species of economic significance in the coastal regions of peninsular India. A previously unreported xylated glycosaminoglycan with a β-D-Xylop(1 → 3)-(⋯ → 4)-GlcpA(1 → 3)-GlcpNAc(1 → ⋯) framework was isolated to homogenity and was found to possess potential antioxidant and 5-lipoxygenase attenuation activities. The isolated metabolite might be anticipated as potential naturally-derived bioactive constituent in functional food and pharmaceutical applications."	"Anti-inflammatory properties of Xylopia aethiopica leaves: Interference with pro-inflammatory cytokines in THP-1-derived macrophages and flavonoid profiling. Ethnopharmacological surveys on Guinea-Bissauan flora reveal that several species are used to treat or ameliorate the symptomatology of conditions with an inflammatory background. As such, extracts obtained from a series of plants recorded in those surveys were screened for their anti-inflammatory properties, a hydroethanolic extract obtained from the leaves of Xylopia aethiopica (Dunal) A. Rich, (Annonaceae), used on the treatment of headache, muscular pain and rheumatic pain, scoring positively and being further investigated. In order to identify species with anti-inflammatory properties, extracts were screened for their ability to interfere with LPS-induced TNF-α levels. Since significant effects were recorded upon treatment with the extract of the leaves obtained from X. aethiopica, further assays were conducted to elucidate additional mechanisms underlying its anti-inflammatory potential. Since little is known on the chemical composition of the plant, we also aimed to characterise its phenolic profile. Interference with cytokines was evaluated by ELISA assay, through the quantification of TNF-α and IL-6 levels in the culture medium collected from LPS-activated THP-1-derived-macrophages. Inhibition of 5-lipoxygenase was assessed based on the oxidation of linoleic acid to 13-hydroperoxylinoleic acid. Characterization of the phenolic profile was attained by HPLC-DAD. Evaluation of TNF-α levels in LPS-challenged THP-1 macrophages evidenced a significant inhibition (&gt;90%) upon treatment with the hydroethanolic extract obtained from X. aethiopica leaves at a concentration of 500 μg/mL. Additional anti-inflammatory effects were recorded, including a significant decrease on IL-6 levels at 250 and 500 μg/mL. The extract proved to be active towards 5-LOX, leading to significant inhibition at concentrations ranging from 16 to 250 μg/mL (IC50 = 85 μg/mL). Phenolic profiling allowed the identification and quantitation of eight constituents, including caffeoylquinic acids (1-3), mono-O-glycosylated flavonols (5-8), and the mono-O-glycosyl flavone luteolin-7-O-glucoside (4). The main phenolic constituent, kaempferol-3-O-rutinoside (8), was found to significantly contribute to the anti-inflammatory effects, namely through the inhibition of 5-LOX. However, no effects on the decrease of TNF-α and IL-6 levels caused by this phenolic compound were found. The anti-inflammatory effects of X. aethiopica leaves are demonstrated experimentally, thus substantiating its use in folk Medicine. Relevantly, the observed anti-inflammatory properties can stimulate further studies in order to fully unveil the therapeutic potential of the plant, namely as a source of phenolic compounds with a significant ability to interfere with conventional inflammatory targets."	"Multidimensional imaging provides evidence for down-regulation of T cell effector function by MDSC in human cancer tissue. A high intratumoral frequency of neutrophils is associated with poor clinical outcome in most cancer entities. It is hypothesized that immunosuppressive MDSC (myeloid-derived suppressor cell) activity of neutrophils against tumor-reactive T cells contributes to this effect. However, direct evidence for such activity in situ is lacking. Here, we used whole-mount labeling and clearing, three-dimensional (3D) light sheet microscopy and digital image reconstruction supplemented by 2D multiparameter immunofluorescence, for in situ analyses of potential MDSC-T cell interactions in primary human head and neck cancer tissue. We could identify intratumoral hotspots of high polymorphonuclear (PMN)-MDSC and T cell colocalization. In these areas, the expression of effector molecules Granzyme B and Ki67 in T cells was strongly reduced, in particular for T cells that were in close proximity or physically engaged with PMN-MDSC, which expressed LOX-1 and arginase I. Patients with cancer with evidence for strong down-regulation of T cell function by PMN-MDSC had significantly impaired survival. In summary, our approach identifies areas of clinically relevant functional interaction between MDSC and T cells in human cancer tissue and may help to inform patient selection in future combination immunotherapies."	"Serum soluble lectin-like oxidized low-density lipoprotein receptor-1 concentrations and prognosis of aneurysmal subarachnoid hemorrhage. Oxidized low-density lipoprotein (ox-LDL) and its receptor, lectin-like ox-LDL receptor-1 (LOX-1) are involved in the pathogenesis of atherosclerosis. Expression of LOX-1 was substantially raised in the basilar arterial wall of subarachnoid hemorrhage (SAH) rabbits. We ascertained the relationship between serum soluble LOX-1 concentrations and functional outcome after human aneurysmal SAH. We enrolled 94 aneurysmal SAH patients and 94 healthy controls. Serum soluble TOX-1 concentrations were quantified using commercial enzyme-linked immunosorbent assay kit. A poor outcome was defined as Glasgow outcome scale score of 1-3. Median values of serum soluble LOX-1 in stroke patients were significantly higher than those in controls (1.5 vs. 0.4 ng/ml, P &lt; 0.001). Thirty patients (31.9%) had a poor outcome at 6 months after stroke. Serum soluble LOX-1 was a strong predictor of poor outcome (OR 5.20, 95% CI 1.25-22.04). Serum soluble LOX-1 concentrations exhibited a significant discriminatory capability (area under curve 0.811, 95% confidence interval 0.717-0.884). The predictive powers of World Federation of Neurological Surgeons grade, Hunt-Hess grade, modified Fisher grade, and serum soluble LOX-1 concentrations were comparable (all P &gt; 0.05). Serum soluble LOX-1 appears to have the potential to become a promising prognostic predictor after human aneurysmal SAH."	"Chitosan enhances rosmarinic acid production in shoot cultures of Melissa officinalis L. through the induction of methyl jasmonate. Chitosan is a polycationic polysaccharide derived from chitin that has been recognized as an effective elicitor in the production of secondary metabolites of many medicinal plants. In this study, the effect of abiotic elicitor (chitosan) at various concentrations on rosmarinic acid (RA) and total phenolic accumulation in shoot cultures of lemon balm was investigated. Treatment of shoots by chitosan led to a noticeable induction of phenylalanine ammonia-lyase (PAL), catalase (CAT), guaiacol peroxidase (GPX) and lipoxygenase (LOX) activities. Besides, the expression of PAL1, TAT and RAS genes and accumulation of RA and phenolic compound increased in chitosan-treated lemon balm shoots. Chitosan treatment also increased H2O2 accumulation and the expression of RBOH, an essential gene implicated in ROS production. Also, the up-regulation of the OPR gene by exogenous chitosan was associated with the induction of endogenous JA determined by GC-MASS. The present study showed that the induced production of rosmarinic acid by chitosan involves the trigger of defense-related enzymes, up-regulated expression of TAT and RAS genes, and stimulation of JA biosynthesis."	"Anti-Diabetic and Angio-Protective Effect of Guluronic Acid (G2013) as a New Nonsteroidal Anti-Inflammatory Drug in the Experimental Model of Diabetes. This study aimed to investigate the effects of guluronic acid (G2013) on blood sugar, insulin, and gene expression profile of oxLDL receptors (SR-A, CD36, LOX-1, and CD68) in the experimental model of diabetes. 18 Sprague Dawley rats were randomly assigned to three groups of healthy control, diabetic control, and G2013 group. Diabetes was induced through intraperitoneal (IP) injection of 60 mg/kg streptozotocin. The subjects were IP treated with 25 mg/kg of G2013 per day for 28 days. The body weight, food intake, fasting blood glucose and insulin were measured. In addition, the expression of mentioned genes was investigated through quantitative real-time PCR. The data showed that the final weight increased significantly in the G2013-treated subjects compared to the diabetic control (p &lt; 0.05). The results indicated that final food intake significantly reduced in the G2013-treated subjects compared to the diabetic control (p &lt; 0.05). The study findings also suggested that the final fasting blood glucose significantly reduced in the G2013-treated group, whereas the final fasting serum insulin level significantly increased in this group compared to the diabetic control (p &lt; 0.05). Moreover, the gene expression levels of SR-A, CD36, LOX-1, and CD68 in the G2013 group significantly reduced compared to the diabetic control (p &lt; 0.05). This study showed that G2013, could reduce blood glucose and increase insulin levels and reduce the gene expression level of oxLDL receptors. In addition, it may probably play an important role in reducing the severity of diabetes-induced inflammatory symptoms."	"Effects of Adiponectin on Diastolic Function in Mice Underwent Transverse Aorta Constriction. Diastolic dysfunction is common in various cardiovascular diseases, which could be affected by adiponectin (APN). Nevertheless, the effects of APN on diastolic dysfunction in pressure overload model induced by transverse aorta constriction (TAC) remain to be further elucidated. Here, we demonstrated that treatment of APN attenuated diastolic dysfunction and cardiac hypertrophy in TAC mice. Notably, APN also improved active relaxation of adult cardiomyocytes, increased N2BA/N2B ratios of titin isoform, and reduced collagen type I to type III ratio and lysyl oxidase (Lox) expressions in the myocardial tissue. Moreover, APN supplementation suppressed TAC-induced oxidative stress. In vitro, inhibition of AMPK by compound C (Cpc) abrogated the effect of APN on modulation of titin isoform shift and the anti-hypertrophic effect of APN on cardiomyocytes induced by AngII. In summary, our findings indicate that APN could attenuate diastolic dysfunction in TAC mice, which are at least partially mediated by AMPK pathway."	"Chalcone-Thiazole Hybrids: Rational Design, Synthesis, and Lead Identification against 5-Lipoxygenase. A hybrid pharmacophore approach is used to design and synthesize novel chalcone-thiazole hybrid molecules. Herein, thiazole has been hybridized with chalcone to obtain a new class of 5-LOX inhibitors. In vitro biological evaluation showed that most of the compounds were better 5-LOX inhibitors than the positive control, Zileuton (IC50 = 1.05 ± 0.03 μM). The best compounds in the series, namely, 4k, 4n, and 4v (4k: IC50 = 0.07 ± 0.02 μM, 4n: IC50 = 0.08 ± 0.05 μM, 4v: 0.12 ± 0.04 μM) are found to be 10 times more active than previously reported 2-amino thiazole (2m: IC50 = 0.9 ± 0.1 μM) by us. Further, 4k has redox (noncompetitive) while 4n and 4v act through a competitive inhibition mechanism. SAR indicated that the presence of methoxy/methyl either in the vicinity of chalcone or both thiazole and chalcone contributed to the synergistic inhibitory effect."	"Cre-lox: Target Sensitivity Matters. NA"	"Emerging Roles of Lysyl Oxidases in the Cardiovascular System: New Concepts and Therapeutic Challenges. Lysyl oxidases (LOX and LOX-likes (LOXLs) isoenzymes) belong to a family of copper-dependent enzymes classically involved in the covalent cross-linking of collagen and elastin, a pivotal process that ensures extracellular matrix (ECM) stability and provides the tensile and elastic characteristics of connective tissues. Besides this structural role, in the last years, novel biological properties have been attributed to these enzymes, which can critically influence cardiovascular function. LOX and LOXLs control cell proliferation, migration, adhesion, differentiation, oxidative stress, and transcriptional regulation and, thereby, their dysregulation has been linked to a myriad of cardiovascular pathologies. Lysyl oxidase could modulate virtually all stages of the atherosclerotic process, from endothelial dysfunction and plaque progression to calcification and rupture of advanced and complicated plaques, and contributes to vascular stiffness in hypertension. The alteration of LOX/LOXLs expression underlies the development of other vascular pathologies characterized by a destructive remodeling of the ECM, such as aneurysm and artery dissections, and contributes to the adverse myocardial remodeling and dysfunction in hypertension, myocardial infarction, and obesity. This review examines the most recent advances in the study of LOX and LOXLs biology and their pathophysiological role in cardiovascular diseases with special emphasis on their potential as therapeutic targets."	"Salix tetrasperma Roxb. Extract Alleviates Neuropathic Pain in Rats via Modulation of the NF-κB/TNF-α/NOX/iNOS Pathway. Patients with neuropathic pain experience chronic painful tingling, burning, and prickling sensations accompanied with hyperalgesia and/or allodynia. In this study, 38 secondary metabolites of a methanol extract from Salix tetrasperma flowers were identified by liquid chromatography-mass spectrometry (HPLC-MS/MS). The extract showed substantial anti-inflammatory, central and peripheral anti-nociceptive, antipyretic, and antioxidant activities in vitro and in different animal models. In the chronic constriction injury (CCI) rat model, the extract was able to attenuate and significantly relieve hyperalgesia and allodynia responses in a dose dependent manner and restore the myelin sheath integrity and Schwann cells average number in the sciatic nerve. The enzyme-linked immunosorbent assay (ELISA) showed that the extract significantly reduced the expression of various pro-inflammatory biomarkers including nuclear factor kabba B (NF-κB), tumor necrosis factor alpha (TNF-α), prostaglandin E2 (PGE2), 5-lipoxygenase (5-LOX), cyclooxygenase-2 (COX-2), inducible nitric oxide synthase (iNOS), and the oxidative stress biomarker NADPH oxidase 1 (NOX1), in brain stem and sciatic nerve tissues. These findings were supported by in vitro enzyme inhibition assays (COX-1, COX-2 and 5-LOX). Moreover, the extract significantly reduced p53 expression in the brain stem tissue. These findings support the use of S. tetrasperma in folk medicine to alleviate pain. It could be a promising natural product for further clinical investigations to treat inflammation, nociceptive pain and chronic neuropathic pain."	"Mechanisms of Collagen Crosslinking in Diabetes and Keratoconus. Collagen crosslinking provides the mechanical strength required for physiological maintenance of the extracellular matrix in most tissues in the human body, including the cornea. Aging and diabetes mellitus (DM) are processes that are both associated with increased collagen crosslinking that leads to increased corneal rigidity. By contrast, keratoconus (KC) is a corneal thinning disease associated with decreased mechanical stiffness leading to ectasia of the central cornea. Studies have suggested that crosslinking mediated by reactive advanced glycation end products during DM may protect the cornea from KC development. Parallel to this hypothesis, riboflavin-mediated photoreactive corneal crosslinking has been proposed as a therapeutic option to halt the progression of corneal thinning by inducing intra- and intermolecular crosslink formation within the collagen fibrils of the stroma, leading to stabilization of the disease. Here, we review the pathobiology of DM and KC in the context of corneal structure, the epidemiology behind the inverse correlation of DM and KC development, and the chemical mechanisms of lysyl oxidase-mediated crosslinking, advanced glycation end product-mediated crosslinking, and photoreactive riboflavin-mediated corneal crosslinking. The goal of this review is to define the biological and chemical pathways important in physiological and pathological processes related to collagen crosslinking in DM and KC."	"Global and region-specific post-transcriptional and post-translational modifications of bisphenol A in human prostate cancer cells. Bisphenol A (BPA), as synthetic monomer used in the production of polycarbonate plastic and epoxy resins, has endocrine disruptor properties and high risk on human health. Epigenetic alterations could act an important role in BPA-induced toxicity, but its mechanism has not been fully understood. We investigated the effects of BPA on gene expression of chromatin modifying enzymes, promoter methylation of tumor suppressor genes and histone modifications in human prostate carcinoma cells (PC-3). IC50 value of BPA was determined as 217 and 190 μM in PC-3 cells by MTT and NRU tests, respectively. We revealed an increase in global levels of 5-methylcytocine and 5-hydroxymethylcytocine at 10 μM of BPA for 96 h. We observed a significant increase on promoter DNA methylation and decrease on gene expression of p16 gene while no change was observed for Cyclin D2 and Rassf1. Significant changes were observed in global histone modifications (H3K9ac, H3K9me3, H3K27me3, and H4K20me3) in PC-3 cells. According to these results, we investigated wide-range epigenetic modifications using PCR arrays. After 96 h BPA exposure, chromatin modifying enzymes including KDM5B and NSD1 were significantly downregulated. Also, promoter methylation of tumor suppressor genes including BCR, GSTP1, LOX, MGMT, NEUROG1, PDLIM4, PTGS2, PYCARD, TIMP3, TSC2 and ZMYDN10 altered significantly. ChIP results showed that H3K9ac, H3K9me3 and H3K27me3 modifications on p16 gene showed significant increases after 1 and 10 μM of BPA exposure. In conclusion, epigenetic signatures such as DNA methylation and histone modifications could be proposed as molecular biomarkers of BPA-induced prostate cancer progression."	"Phenolic contents, elemental analysis, antioxidant and lipoxygenase inhibitory activities of Zanthoxylum armatum DC fruit, leaves and bark extracts. Zanthoxylum armatum (DC) is a traditional spice and important herb used in Asia as a part of food and household medicine for the treatment of various conditions. The present study was designed to investigate in vitro for phenolic/flavonoid contents, antioxidant activities, lipoxygenase inhibitory activity, minerals and heavy-metal contents. The leaves, bark and fruit of Zanthoxylum armatum were extracted with organic solvent and evaluated for phenolic contents (Folin-Chiocalteu method), for flavonoids contents (colorimetric method), for in vitro antioxidant assays (DPPH and FRAP), lipoxygenase inhibitory activity (5-LOX assay), mineral contents (atomic absorption), and for heavy-metal contaminants (atomic absorption). The fruit contained the highest phenolic (25.6±1.2mg GAE/g) and flavonoid (26.3±1.4mg QE/g) contents and therefore, exhibited the most effective antioxidant properties in DPPH (88.5±0.9% inhibition) and FRAP (94.21±3.2% inhibition) assays. The extracts also inhibited the LOX enzyme, and the fruit showed more inhibition (63.8±1.2 %) as compared with the leaves and bark. Z. armatum contain valuable minerals and fortified with magnesium (4.948±0.2, 3.07±0.03 and 3.53±0.12) and potassium (0.19±0.011, 1.91±0.003, and 1.90±0.05) for leaves, fruit, and bark, respectively. The chemical profiling for heavy metals showed that their concentrations were within permissible limits. The data suggest that Z. armatum is a safe and valuable natural agent with functional properties for food and pharmaceutical industries."	"Targeting LOX-1 Inhibits Colorectal Cancer Metastasis in an Animal Model. Recurrence and metastasis are the primary causes of mortality in patients with colorectal cancer (CRC), and therefore effective tools to reduce morbidity and mortality of CRC patients are necessary. LOX-1, the ox-LDL receptor, is strongly involved in inflammation, obesity, and atherosclerosis, and several studies have assessed its role in the carcinogenesis process linking ROS, metabolic disorders and cancer. We have already demonstrated in vitro that LOX-1 expression correlates to the aggressiveness of human colon cancer and its downregulation weakens the tumoral phenotype, indicating its potential function as a biomarker and a target in CRC therapy. Here we further investigate in vivo the role of LOX-1 in colon tumorigenesis by xenografting procedures, injecting nude mice both subcutaneously and intravenously with human high grade metastatic colorectal cancer cells, DLD-1, in which LOX-1 expression has been downregulated by shRNA (LOX-1RNAi cells). Histopathological and immunohistochemical evaluations have been performed on xenograft tumors. The experiments have been complemented by the analysis of the volatile compounds (VOCs) collected from the cages of injected mice and analyzed by gas-chromatography and gas sensors. After intravenous injection of LOX-1RNAi cells, we found that LOX-1 silencing influences both the engraftment of the tumor and the metastasis development, acting by angiogenesis. For the first time, we have observed that LOX-1 inhibition significantly prevents metastasis formation in injected mice and, at the same time, induces a downregulation of VEGF-A165, HIF-1α, and β-catenin whose expression is involved in cell migration and metastasis, and a variation of histone H4 acetylation pattern suggesting also a role of LOX-1 in regulating gene transcription. The analysis of the volatile compounds (VOCs) collected from the cages of injected mice has evidenced a specific profile in those xenograft mice in which metastasis originates. These findings underline the role of LOX-1 as a potential target for inhibition of tumor progression and metastasis, enhancing current therapeutic strategies against colorectal cancer."	"Protease-activated receptor 2 protects against myocardial ischemia-reperfusion injury through the lipoxygenase pathway and TRPV1 channels. This study tests the hypothesis that the lipoxygenase (LOX) pathway mediates protease-activated receptor (PAR) 2-induced activation of the transient receptor potential vanilloid receptor 1 (TRPV1) to protect the heart from ischemia/reperfusion (I/R) injury. SLIGRL, a PAR2 activating peptide, was administered prior to reperfusion following left anterior descending coronary artery ligation in wild type (WT) and TRPV1 knockout (TRPV1<sup>-/-</sup>) mice. In a Langendorffly perfused heart I/R model, hemodynamic parameters, including left ventricular end-diastolic pressure, left ventricular developed pressure, coronary blood flow and left ventricular peak +dP/dt were evaluated after I/R. SLIGRL reduced the cardiac infarct size in WT and TRPV1<sup>-/-</sup> mice with a greater effect in the former strain (P&lt;0.05). SLIGRL increased plasma levels of calcitonin gene-related peptide (CGRP) and substance P in WT (both P&lt;0.05) but not in TRPV1<sup>-/-</sup> mice. Pretreatment with CGRP8-37 (a CGRP receptor antagonist) or RP67580 (a neurokinin-1 receptor antagonist) alone had no effect on SLIGRL-induced cardiac protection in either strain. However, combined administration of CGRP8-37 and RP67580 abolished SLIGRL-induced cardiac protection in WT but not in TRPV1<sup>-/-</sup> mice. Nordihydroguaiaretic acid (a general LOX inhibitor) and baicalein (a 12-LOX inhibitor), but not indomethacin (a cyclooxygenase inhibitor) and hexanamide (a selective cytochrome P450 epoxygenase inhibitor), abolished the protective effects of SLIGRL in WT (all P&lt;0.05) but not in TRPV1<sup>-/-</sup> hearts. These data suggested that PAR2, possibly via 12-LOX, activates TRPV1 and leads to CGRP and substance P release to prevent I/R injury in the heart, indicating that the 12-LOX-TRPV1 pathway conveys cardiac protection to alleviate myocardial infarction."	"Lysyl oxidase impacts disease outcomes and correlates with global DNA hypomethylation in esophageal cancer. Abnormal function of human body enzymes and epigenetic alterations such as DNA methylation have been shown to lead to human carcinogenesis. Lysyl oxidase (LOX) enzyme has attracted attention due to its involvement in tumor progression in various cancers. The purpose of this study was to clarify the clinical importance of LOX expression and its epigenetic regulation in the pathogenesis of esophageal squamous cell carcinoma (ESCC). Using a database of 284 ESCCs, we examined LOX expression and its prognostic characteristics. The functional role of LOX was assessed by in vitro growth, migration, and invasion assays. The relationship between LOX expression, global DNA hypomethylation (ie, LINE-1 methylation), and LOX promoter methylation was evaluated by using mRNA expression arrays and pyrosequencing technology. High LOX expression cases had a significantly shorter overall survival and cancer-specific survival (log-rank, P &lt; .001). The prognostic effect of LOX expression was not significantly modified by other clinical variables. Silencing and enzymatic inhibition of LOX suppressed growth and reduced the invasion and migration ability of ESCC cell lines along with the downregulation of AKT and MMP2. An integrated gene analysis in tissues and cell lines revealed that LOX was the most highly upregulated gene in LINE-1 hypomethylated tumors. In vitro, LOX expression was upregulated following DNA demethylation. LOX promoter methylation was not associated with LOX expression. Conclusively LOX expression was associated with poor prognosis in ESCC and was regulated epigenetically by genome-wide hypomethylation. It could serve as a prognostic biomarker in ESCC patients, and therapeutically targeting LOX could reverse the progression of esophageal cancer."	"Fertility of Pedicellate Spikelets in Sorghum Is Controlled by a Jasmonic Acid Regulatory Module. As in other cereal crops, the panicles of sorghum (Sorghum bicolor (L.) Moench) comprise two types of floral spikelets (grass flowers). Only sessile spikelets (SSs) are capable of producing viable grains, whereas pedicellate spikelets (PSs) cease development after initiation and eventually abort. Consequently, grain number per panicle (GNP) is lower than the total number of flowers produced per panicle. The mechanism underlying this differential fertility is not well understood. To investigate this issue, we isolated a series of ethyl methane sulfonate (EMS)-induced multiseeded (msd) mutants that result in full spikelet fertility, effectively doubling GNP. Previously, we showed that MSD1 is a TCP (Teosinte branched/Cycloidea/PCF) transcription factor that regulates jasmonic acid (JA) biosynthesis, and ultimately floral sex organ development. Here, we show that MSD2 encodes a lipoxygenase (LOX) that catalyzes the first committed step of JA biosynthesis. Further, we demonstrate that MSD1 binds to the promoters of MSD2 and other JA pathway genes. Together, these results show that a JA-induced module regulates sorghum panicle development and spikelet fertility. The findings advance our understanding of inflorescence development and could lead to new strategies for increasing GNP and grain yield in sorghum and other cereal crops."	"Forkhead box C1 promotes metastasis and invasion of non-small cell lung cancer by binding directly to the lysyl oxidase promoter. Increasing evidence indicates that human forkhead box C1 (FOXC1) plays important roles in tumor development and metastasis. However, the underlying molecular mechanism of FOXC1 in non-small cell lung cancer (NSCLC) metastasis remains unclear. Here, we identified FOXC1 as an independent prognostic factor in NSCLC and showed clear biological implications in invasion and metastasis. FOXC1 overexpression enhanced the proliferation, migration and invasion of NSCLC cells, whereas FOXC1 silencing impaired the effects both in vitro and in vivo. Importantly, we found a positive correlation between FOXC1 expression and lysyl oxidase (LOX) expression in NSCLC cells and patient samples. Downregulation of LOX or LOX activity inhibition in NSCLC cells inhibited the FOXC1-driven effects on cellular migration and invasion. Xenograft models showed that inhibition of LOX activity by β-aminopropionitrile monofumarate decreased the number of lung metastases. Mechanistically, we demonstrated a novel FOXC1-LOX mechanism that was involved in the invasion and metastasis of NSCLC. Dual-luciferase assay and ChIP identified that FOXC1 bound directly in the LOX promoter region and activated its transcription. Collectively, the present study offered new insight into FOXC1 in the mediation of NSCLC metastasis through interaction with the LOX promoter and further revealed that targeted inhibition of LOX protein activity could prevent lung metastasis in murine xenograft models. These data implicated FOXC1 as a potential therapeutic strategy for the treatment of NSCLC metastasis."	"Tristetraprolin targets Nos2 expression in the colonic epithelium. Tristetraprolin (TTP), encoded by the Zfp36 gene, is a zinc-finger protein that regulates RNA stability primarily through association with 3' untranslated regions (3' UTRs) of target mRNAs. While TTP is expressed abundantly in the intestines, its function in intestinal epithelial cells (IECs) is unknown. Here we used a cre-lox system to remove Zfp36 in the mouse epithelium to uncover a role for TTP in IECs and to identify target genes in these cells. While TTP was largely dispensable for establishment and maintenance of the colonic epithelium, we found an expansion of the proliferative zone and an increase in goblet cell numbers in the colon crypts of Zfp36<sup>ΔIEC</sup> mice. Furthermore, through RNA-sequencing of transcripts isolated from the colons of Zfp36<sup>fl/fl</sup> and Zfp36<sup>ΔIEC</sup> mice, we found that expression of inducible nitric oxide synthase (iNos or Nos2) was elevated in TTP-knockout IECs. We demonstrate that TTP interacts with AU-rich elements in the Nos2 3' UTR and suppresses Nos2 expression. In comparison to control Zfp36<sup>fl/fl</sup> mice, Zfp36<sup>ΔIEC</sup> mice were less susceptible to dextran sodium sulfate (DSS)-induced acute colitis. Together, these results demonstrate that TTP in IECs targets Nos2 expression and aggravates acute colitis."	"Wnt5a is involved in LOX-1 and TLR4 induced host inflammatory response in peri-implantitis. Peri-implantitis is a plaque-associated pathological condition occurring in tissues around dental implants, characterized by inflammation in the peri-implant mucosa and subsequent progressive loss of supporting bone. Wnt5a is the activating ligand of the non-canonical Wnt signaling pathways and plays important roles in leukocyte infiltration and cytokine/ chemokine production in inflammatory disorders. Previous studies showed that Wnt5a was significantly up-regulated in gingival tissues of chronic and aggressive periodontitis. However, the roles and the regulatory mechanisms of Wnt5a in peri-implantitis are not well known. The expression of Wnt5a in gingival tissues collected from 8 healthy implant patients and 8 peri-implantitis patients was analyzed by Western blotting and immunofluorescence. Porphyromonas gingivalis infected macrophages isolated from the peripheral blood of healthy volunteers were used as an in vitro cellular model of peri-implantitis. Using neutralizing antibodies, inhibitors and siRNA, the production and roles of Wnt5a in peri-implantitis were assessed by immunofluorescence, quantitative polymerase chain reaction (RT-PCR) and Western blotting. Unpaired two-tailed Student's t test was used to compare qRT-PCR and Western blotting results. P ≤ .05 was considered statistically significant. Wnt5a was highly expressed in the gingival tissues of peri-implantitis patients. Compared to controls, Wnt5a increased in P gingivalis infected macrophages. Wnt5a production in response to P gingivalis infection was dependent on LOX-1 and TLR4. Compared to controls, Wnt5a knockdown impaired IL-1β, MCP-1, and MMP2 production induced by P gingivalis infection. Our results indicate that Wnt5a is involved in LOX-1 and TLR4 induced inflammatory signature via inflammatory cytokines production in response to P gingivalis infection. These findings demonstrate that Wnt5a maybe an important component of the host immune response in peri-implantitis."	"Silencing of the phytoene desaturase (PDS) gene affects the expression of fruit-ripening genes in tomatoes. Past research has shown that virus-induced phytoene desaturase (PDS) gene silencing via agroinjection in the attached and detached fruit of tomato plants results in a pale-yellow fruit phenotype. Although the PDS gene is often used as a marker for gene silencing in tomatoes, little is known about the role of PDS in fruit ripening. In this study, we investigated whether the pepper PDS gene silenced endogenous PDS genes in the fruit of two tomato cultivars, Dotaerang Plus and Legend Summer. We found that the pepper PDS gene successfully silenced endogenous PDS in tomato fruit at a silencing frequency of 100% for both cultivars. A pale-yellow silenced area was observed over virtually the entire surface of individual fruit due to the transcriptional reduction in phytoene desaturase (PDS), zeta-carotene (ZDS), prolycopene isomerase (CrtlSO), and beta-carotene hydroxylase (CrtR-b2), which are the carotenoid biosynthesis genes responsible for the red coloration in tomatoes. PDS silencing also affected the expression levels of the fruit-ripening genes Tomato AGAMOUS-LIKE1 (TAGL1), RIPENING INHIBITOR (RIN), pectin esterase gene (PE), lipoxygenase (LOX), FRUITFULL1/FRUITFUL2 (FUL1/FUL2), and the ethylene biosynthesis and response genes 1-aminocyclopropane-1-carboxylate oxidase 1 and 3 (ACO1 and ACO3) and ethylene-responsive genes (E4 and E8). These results suggest that PDS is a positive regulator of ripening in tomato fruit, which must be considered when using it as a marker for virus-induced gene silencing (VIGS) experiments in order to avoid fruit-ripening side effects."	"Recombinant Lipoxygenases and Hydroperoxide Lyases for the Synthesis of Green Leaf Volatiles. Green leaf volatiles (GLVs) are mainly C6- and in rare cases also C9-aldehydes, -alcohols, and -esters, which are released by plants in response to biotic or abiotic stresses. These compounds are named for their characteristic smell reminiscent of freshly mowed grass. This review focuses on GLVs and the two major pathway enzymes responsible for their formation: lipoxygenases (LOXs) and fatty acid hydroperoxide lyases (HPLs). LOXs catalyze the peroxidation of unsaturated fatty acids, such as linoleic and α-linolenic acids. Hydroperoxy fatty acids are further converted by HPLs into aldehydes and oxo-acids. In many industrial applications, plant extracts have been used as LOX and HPL sources. However, these processes are limited by low enzyme concentration, stability, and specificity. Alternatively, recombinant enzymes can be used as biocatalysts for GLV synthesis. The increasing number of well-characterized enzymes efficiently expressed by microbial hosts will foster the development of innovative biocatalytic processes for GLV production."	"Aromatic effects of immobilized enzymatic oxidation of chicken fat on flaxseed (Linum usitatissimum L.) derived Maillard reaction products. To control the oxidation in chicken fat by immobilized lipoxygenase (LOX), Maillard reaction products (MRPs) with chicken flavor were prepared and analyzed for flavor mechanism. &gt;50% activity of immobilized LOX was retained after repeated use for five times or five weeks. The oxidized chicken fats were prepared by thermal, free LOX, and immobilized LOX treatments. After addition of chicken fats, Maillard reaction produced more aliphatic aldehydes and alcohols (126.0-839.5 ng/g and 493.5-2332.4 ng/g, respectively) which resulted in noticeable enhanced reaction, but the content of sulfur compounds such as thiols and thiophenes decreased significantly (870.8-1233.9 ng/g and 1125.0-2880.3 ng/g, respectively), and the structure of sulfur compounds could easily form alkyl side chains. However, there was no significant difference in sensory and flavors between oxidized chicken after treatments, which may be related to oxidized degree. The mechanism was proposed or aromatic effects of oxidized chicken fat on flaxseed derived MRPs."	"Lyophilized extracts from vegetable flours as valuable alternatives to purified oxygenases for the synthesis of oxylipins. In this work, the whole aqueous extracts of soybean flour and oat flour have been used as valuable alternatives to purified oxygenase enzymes for the preparation of oxylipins derived from (5Z,8Z,11Z,14Z,17Z)-eicosapentaenoic acid (EPA). The lipoxygenase activity in the aqueous extracts of soybean (Glycine max. L.) flour was monitored with linoleic acid as substrate and compared with the commercially available purified enzyme (LOX-1). Oat flour extracts (Avena sativa L.) were evaluated for their peroxygenase activity by comparing different enzyme preparations in the epoxidation of methyl oleate. It was found that lyophilization of the aqueous extracts from these vegetable flours offers advantages in terms of enzyme stability, reproducibility and applicability to preparative organic synthesis. The lyophilized enzyme preparations were tested for the oxyfunctionalization of EPA and the formed products were isolated in satisfactory yields. In the presence of lyophilized extract from soybean, EPA gave 15S-hydroxy-(5Z,8Z,11Z,13E,17Z)-eicosapentaenoic acid in enantiopure form as exclusive product. Peroxygenase from oat flour was less selective and catalyzed the formation of different epoxides of EPA. However, the biocatalyzed epoxidation of EPA under controlled conditions allowed to obtain optically active (17R,18S)-epoxy-(5Z,8Z,11Z,14Z)-eicosatetraenoic acid (65% ee) as the main monoepoxide, among the five possible ones."	"Efficacy of non-steroidal anti-inflammatory drugs on zoledronic acid-induced acute-phase reactions: randomized, open-label, Japanese OZ study. Zoledronic acid infusion is used to treat osteoporosis but patients, especially Japanese patients, often experience acute-phase reactions (APRs). In this multicenter, randomized, open-label, parallel-group study, we examined the efficacy of the most commonly used non-steroidal anti-inflammatory drug loxoprofen in Japan in reducing the incidence rate of zoledronic acid-induced APRs and body temperature, and investigated risk/protective factors for APRs in this population. Patients aged ≥ 60 years with primary osteoporosis (n = 368) were allocated randomly to zoledronic acid plus loxoprofen (ZOL + LOX) or zoledronic acid alone (ZOL). All patients received 5-mg zoledronic acid infusion on day 1, and patients in the ZOL + LOX group also received 120 mg and 180 mg of oral loxoprofen on days 1 and 2, respectively. Adverse events and body temperature were recorded during the 7-day observation period. The incidence rates of APRs were 34.4% (64/186 patients) and 47.8% (87/182 patients) in the ZOL + LOX and ZOL groups, respectively (P = 0.0109). The proportions of patients with increased body temperature (≥ 1 °C and ≥ 37.5 °C) were similar in both groups (P = 0.1186). Past bisphosphonate users had a significantly lower incidence rate of APRs than treatment-naïve patients (odds ratio 0.444, 95% confidence interval 0.285-0.692, P = 0.0003). Zoledronic acid-induced APRs appeared to be suppressed by loxoprofen. Known risk/protective factors, including prior osteoporosis treatment, were applicable to Japanese patients."	"Overproduction of lipoxygenase from Pseudomonas aeruginosa in Escherichia coli by auto-induction expression and its application in triphenylmethane dyes degradation. In this study, the bacterial lipoxygenase (LOX) gene from Pseudomonas aeruginosa ATCC27853 (pse-LOX) was cloned, sequenced and heterologous expressed in Escherichia coli by auto-induction expression strategy. Production of the recombinant pse-LOX (pse-rLOX) gene up to 23,850 U/mL (264 mg pure protein/L bacterial culture fluid) was observed in the end of this process. To the best of our knowledge, this is the first attempt to manipulate LOX heterologous expression process using auto-induction expression approach, and it is the highest production of recombinant LOX compared with other reports. Subsequently, the resulted pse-rLOX was proved to efficiently degrade triphenylmethane dyes such as malachite green, brilliant green and aniline blue. Generally, an overproduction of the LOX from P. aeruginosa was observed in E. coli, and this recombinant gene is a potential candidate as biocatalyst for triphenylmethane dyes decolorization."	"Intramembrane proteases protect from atherosclerosis. NA"	"Bis-allylic Deuterated DHA Alleviates Oxidative Stress in Retinal Epithelial Cells. Oxidative stress plays a crucial role in developing and accelerating retinal diseases including age-related macular degeneration (AMD). Docosahexaenoic acid (DHA, C22:6, n-3), the main lipid constituent of retinal epithelial cell membranes, is highly prone to radical and enzymatic oxidation leading to deleterious or beneficial metabolites for retinal tissue. To inhibit radical oxidation while preserving enzymatic metabolism, deuterium was incorporated at specific positions of DHA, resulting in D2-DHA when incorporated at position 6 and D4-DHA when incorporated at the 6,9 bis-allylic positions. Both derivatives were able to decrease DHAs' toxicity and free radical processes involved in lipid peroxidation, in ARPE-19 cells (Adult Retinal Pigment Epithelial cell line), under pro-oxidant conditions. Our positive results encouraged us to prepare lipophenolic-deuterated-DHA conjugates as possible drug candidates for AMD treatment. These novel derivatives proved efficient in limiting lipid peroxidation in ARPE-19 cells. Finally, we evaluated the underlying mechanisms and the enzymatic conversion of both deuterated DHA. While radical abstraction was affected at the deuterium incorporation sites, enzymatic conversion by the lipoxygenase 15s-LOX was not impacted. Our results suggest that site-specifically deuterated DHA could be used in the development of DHA conjugates for treatment of oxidative stress driven diseases, or as biological tools to study the roles, activities and mechanisms of DHA metabolites."	"C-type lectin receptors of the Dectin-1 cluster: Physiological roles and involvement in disease. C-type lectin receptors (CLRs) are essential for multicellular existence, having diverse functions ranging from embryonic development to immune function. One subgroup of CLRs is the Dectin-1 cluster, comprising of seven receptors including MICL, CLEC-2, CLEC-12B, CLEC-9A, MelLec, Dectin-1, and LOX-1. Reflecting the larger CLR family, the Dectin-1 cluster of receptors has a broad range of ligands and functions, but importantly, is involved in numerous pathophysiological processes that regulate health and disease. Indeed, these receptors have been implicated in development, infection, regulation of inflammation, allergy, transplantation tolerance, cancer, cardiovascular disease, arthritis, and other autoimmune diseases. In this mini-review, we discuss the latest advancements in elucidating the function(s) of each of the Dectin-1 cluster CLRs, focussing on their physiological roles and involvement in disease."	"Identification and Optimization of Mechanism-Based Fluoroallylamine Inhibitors of Lysyl Oxidase-like 2/3. Lysyl oxidase-like 2 (LOXL2) is a secreted enzyme that catalyzes the formation of cross-links in extracellular matrix proteins, namely, collagen and elastin, and is indicated in fibrotic diseases. Herein, we report the identification and subsequent optimization of a series of indole-based fluoroallylamine inhibitors of LOXL2. The result of this medicinal chemistry campaign is PXS-5120A (12k), a potent, irreversible inhibitor that is &gt;300-fold selective for LOXL2 over LOX. PXS-5120A also shows potent inhibition of LOXL3, an emerging therapeutic target for lung fibrosis. Key to the development of this compound was the utilization of a compound oxidation assay. PXS-5120A was optimized to show negligible substrate activity in vitro for related amine oxidase family members, leading to metabolic stability. PXS-5120A, in a pro-drug form (PXS-5129A, 12o), displayed anti-fibrotic activity in models of liver and lung fibrosis, thus confirming LOXL2 as an important target in diseases where collagen cross-linking is implicated."	"Phytochemical study, molecular docking, genotoxicity and therapeutic efficacy of the aqueous extract of the stem bark of Ximenia americana L. in the treatment of experimental COPD in rats. Ximenia americana L. is popularly known as yellow plum, brave plum or tallow wood. All the parts of this plant are used in popular medicine. Its reddish and smooth bark are used to treat skin infections, inflammation of the mucous membranes and in the wound healing process. Verification of phytochemical profile, the molecular interaction between flavonoid, (-) epi-catechin and 5-LOX enzyme, by means of in silico study, the genotoxic effect and to investigate the pharmacological action of the aqueous extract of the stem bark of X. americana in pulmonary alterations caused by experimental COPD in Rattus norvegicus. The identification of secondary metabolites was carried out by TLC and HPLC chromatographic methods, molecular anchoring tests were applied to analyze the interaction of flavonoid present in the extract with the enzyme involved in pulmonary inflammation process and the genotoxic effect was assessed by comet assay and micronucleus test. For induction of COPD, male rats were distributed in seven groups. The control group was exposed only to ambient air and six were subjected to passive smoke inhalations for 20 min/day for 60 days. One of the groups exposed to cigarette smoke did not receive treatment. The others were treated by inhalation with beclomethasone dipropionate (400 mcg/kg) and aqueous and lyophilized extracts of X. americana (500 mg/kg) separately or in combination for a period of 15 days. The structural and inflammatory pulmonary alterations were evaluated by histological examination. Additional morphometric analyses were performed, including the alveolar diameter and the thickness of the right ventricle wall. The results showed that the aqueous extract of the bark of X. americana possesses (-) epi -catechin, in silico studies with 5-LOX indicate that the EpiC ligand showed better affinity parameters than the AracA ligand, which is in accordance with the results obtained in vivo studies. Genotoxity was not observed at the dose tested and the extract was able to stagnate the alveolar enlargement caused by the destruction of the interalveolar septa, attenuation of mucus production and decrease the presence of collagen fibers in the bronchi of animals submitted to cigarette smoke. Altogether, the results proved that the aqueous extract of X. americana presents itself as a new option of therapeutic approach in the treatment of COPD."	"Editor's Note: LOX-Mediated Collagen Cross-linking Is Responsible for Fibrosis-Enhanced Metastasis. NA"	"Heterogeneous beta-catenin activation is sufficient to cause hepatocellular carcinoma in zebrafish. Up to 41% of hepatocellular carcinomas (HCCs) result from activating mutations in the CTNNB1 gene encoding β-catenin. HCC-associated CTNNB1 mutations stabilize the β-catenin protein, leading to nuclear and/or cytoplasmic localization of β-catenin and downstream activation of Wnt target genes. In patient HCC samples, β-catenin nuclear and cytoplasmic localization are typically patchy, even among HCC with highly active CTNNB1 mutations. The functional and clinical relevance of this heterogeneity in β-catenin activation are not well understood. To define mechanisms of β-catenin-driven HCC initiation, we generated a Cre-lox system that enabled switching on activated β-catenin in (1) a small number of hepatocytes in early development; or (2) the majority of hepatocytes in later development or adulthood. We discovered that switching on activated β-catenin in a subset of larval hepatocytes was sufficient to drive HCC initiation. To determine the role of Wnt/β-catenin signaling heterogeneity later in hepatocarcinogenesis, we performed RNA-seq analysis of zebrafish β-catenin-driven HCC. At the single-cell level, 2.9% to 15.2% of hepatocytes from zebrafish β-catenin-driven HCC expressed two or more of the Wnt target genes axin2, mtor, glula, myca and wif1, indicating focal activation of Wnt signaling in established tumors. Thus, heterogeneous β-catenin activation drives HCC initiation and persists throughout hepatocarcinogenesis."	"[Gly14]-Humanin Prevents Lipid Deposition and Endothelial Cell Apoptosis in a Lectin-like Oxidized Low-density Lipoprotein Receptor-1-Dependent Manner. Oxidized low-density lipoprotein (Ox-LDL) may induce apoptosis and dysfunction of vascular endothelial cells, contributing to the initiation and development of atherosclerosis and lectin-like oxidized low-density lipoprotein receptor-1 (LOX-1) plays a central role in Ox-LDL uptake in the course of atherogenesis. Humanin (HN), a mitochondrial-derived peptide, was recently demonstrated to exert a protective role against endothelial dysfunction and Ox-LDL-induced progression of atherosclerosis. The HN analog HNGF6A (HNG) modulates cholesterol metabolism in macrophage RAW 264.7 cells. However, whether HNG affects Ox-LDL metabolism in endothelial cells is unknown. In this study, we investigated the effect of HNG on Ox-LDL accumulation in human umbilical vein endothelial cell (HUVEC) and its underlying mechanisms. HUVEC were preincubated with HNG for 1 h before addition of Ox-LDL. Total cholesterol content was measured by using a tissue total cholesterol assay kit and flow cytometry. Cell viability was measured by CCK8 assay. Protein content was examined by Western blot assays. Flow cytometry was used to identify apoptotic cells. Flow cytometry and tissue total cholesterol assays showed that HNG reduced Ox-LDL accumulation in HUVEC. In addition, HNG inhibited Ox-LDL-induced apoptosis of HUVEC. Western blot results showed that HNG reduced LOX-1 protein content. However, when LOX-1 was knocked down or inhibited, the effect of HNG in reducing Ox-LDL aggregation and apoptosis in HUVEC disappeared. Our study demonstrated that HNG reduces lipid aggregation and apoptosis in HUVEC in a LOX-1-dependent manner."	"12-lipoxygenase promotes tumor progress by TGF-β1-mediated epithelial to mesenchymal transition and predicts poor prognosis in esophageal squamous cell carcinoma. To clarify the effect of 12-lipoxygenase/12-hydroxyeicosatetraeonic acid (12-LOX/12-HETE) on progress of esophageal squamous cell carcinoma (ESCC) and the possible mechanism. We performed cell experiments including chemical treatment, transfection, Western blotting and transwell assay to investigate the function of 12-LOX/12-HETE. Slices of tumor tissues were obtained from ESCC patients treated in Qilu Hospital of Shandong University. Immunohistochemical (IHC) staining was done to find their correlation with prognosis and clinicopathological characteristics. In ESCC cells, inhibition of 12-LOX caused a decrease in transforming growth factor-β1 (TGF-β1)-mediated epithelial-mesenchymal transition (EMT) level, and abilities of migration and invasion were also inhibited. Nevertheless, the inhibition could be partly relieved when treated with 12-HETE or TGF-β1. Analyses of IHC staining indicated a positive correlation between the expression of 12-LOX and EMT level, and an inverse correlation between 12-LOX and overall survival (OS). Univariate and multivariate analyses further suggested that 12-LOX was an independent prognostic factor for ESCC patients. In conclusion, our study proved that 12-LOX/12-HETE-promoted tumor migration and invasion might partly be through TGF-β1-mediated EMT in ESCC, and 12-LOX could be a promising biomarker for predicting prognosis in ESCC patients."	"Markers of the pre-metastatic niche &quot;knock on the door&quot; of metastasis-free cervical lymph nodes in patients with oral cancer. To assess expression of some markers of the pre-metastatic niche (PMN) in lymph nodes (LNs) of oral cancer patients. LNs from metastatic-free neck dissections (LN0/N0, N = 43) and metastatic-free LNs in the vicinity of metastasis-containing LNs (LN0/N+, N = 30) were immuno-histochemically stained for lysyl oxidase (LOX), fibronectin (FN), vascular-endothelial growth factor receptor (VEGFR)-1 and matrix metalloproteinase (MMP)-9. Staining was assessed as 0 (no or weak staining), 1 (strong stain in 25% cells or extracellular area), 2 (same as 1 but in up to 50%) and 3 (same as 1 but in &gt; than 50% of cells/area). Assessment was performed in the lymph node capsule (CAP), sub-capsular sinus (SCS) and medullary sinus (MS). In addition, sections were stained with picrosirius red and examined with polarized microscopy for assessing the distribution of polarization colors of the collagen fibers in the LN capsular area. All examined LNs were positive for markers of the PMN. In general, the distribution and intensity of the immunoreactivity was similar between the LN0/N0 and LN0/N+, with only a few differences regarding expression of LOX in the capsule (p = 0.002) and VEGFR1 and MMP9 in the SCS (p = 0.023 and p &lt; 0.001, respectively). Picrosirius red stain and polarized microscopy revealed a disrupted arrangement and distribution of the collagen fibers in both LN0/N0 and LN0/N + . Markers for PMN were shown for the first time to be expressed in cervical LN0/N0 from patients with oral cancer, suggesting the increased permissive pathway remotely paved by the primary oral tumor for the incoming metastatic cells."	"Modulation of smoke-induced DNA and microRNA alterations in mouse lung by licofelone, a triple COX-1, COX-2 and 5-LOX inhibitor. Chronic inflammation plays a crucial role in the carcinogenesis process and, in particular, in smoking-related carcinogenesis. Therefore, anti-inflammatory agents provide an interesting perspective in the prevention of smoking-associated cancers. Among nonsteroidal anti-inflammatory drugs (NSAIDs), licofelone is a triple inhibitor of both cyclooxygenases (COX-1 and COX-2) and of 5-lipooxygenase (5-LOX) that has shown some encouraging results in cancer prevention models. We previously showed that the dietary administration of licofelone, starting after weanling, to Swiss H mice exposed for 4 months to mainstream cigarette smoke since birth attenuated preneoplastic lesions of inflammatory nature in both lung and urinary tract, and had some effects on the yield of lung tumors at 7.5 months of age. The present study aimed at evaluating the early modulation by licofelone of pulmonary DNA and RNA alterations either in smoke-free or smoke-exposed H mice after 10 weeks of exposure. Licofelone protected the mice from the smoke-induced loss of body weight and significantly attenuated smoke-induced nucleotide alterations by decreasing the levels of bulky DNA adducts and 8-hydroxy-2'-deoxyguanosine in mouse lung. Moreover, the drug counteracted dysregulation by smoke of several pulmonary microRNAs involved in stress response, inflammation, apoptosis, and oncogene suppression. However, even in smoke-free mice administration of the drug had significant effects on a broad panel of microRNAs and, as assessed in a subset of mice used in a parallel cancer chemoprevention study, licofelone even enhanced the smoke-induced systemic genotoxic damage after 4 months of exposure. Therefore, caution should be paid when administering licofelone to smokers for long periods."	"Contributions of 12/15-Lipoxygenase to Bleeding in the Brain Following Ischemic Stroke. Ischemic strokes are caused by one or more blood clots that typically obstruct one of the major arteries in the brain, but frequently also result in leakage of the blood-brain barrier and subsequent hemorrhage. While it has long been known that the enzyme 12/15-lipoxygenase (12/15-LOX) is up-regulated following ischemic strokes and contributes to neuronal cell death, recent research has shown an additional major role for 12/15-LOX in causing this hemorrhagic transformation. These findings have important implications for the use of 12/15-LOX inhibitors in the treatment of stroke."	"Neuronal p38α mediates age-associated neural stem cell exhaustion and cognitive decline. Neuronal activity regulates cognition and neural stem cell (NSC) function. The molecular pathways limiting neuronal activity during aging remain largely unknown. In this work, we show that p38MAPK activity increases in neurons with age. By using mice expressing p38α-lox and CamkII-Cre alleles (p38α∆-N), we demonstrate that genetic deletion of p38α in neurons suffices to reduce age-associated elevation of p38MAPK activity, neuronal loss and cognitive decline. Moreover, aged p38α∆-N mice present elevated numbers of NSCs in the hippocampus and the subventricular zone. These results reveal novel roles for neuronal p38MAPK in age-associated NSC exhaustion and cognitive decline."	"Study on Metabolic Trajectory of Liver Aging and the Effect of Fufang Zhenzhu Tiaozhi on Aging Mice. The aim of this study was to investigate the metabolic trajectory of liver aging, the effect of FTZ against liver aging in aging mice, and its mechanism using ultraperformance liquid chromatography/quadrupole-time-of-flight mass spectrometry (UPLC-Q-TOF/MS). Methods: A total of 80 C57BL/6J Narl mice were randomly divided into five groups: 3-month-old group, 9-month-old group, 14-month-old group, 20-month-old group, and FTZ treatment group (20 months old). The mice in the treatment group received a therapeutic dose of oral FTZ extract (1.0 g/kg, on raw material weight basis) once daily during the experiment. The other groups received the corresponding volume of oral normal saline solution. Liver samples of all five groups were collected after 12 weeks, and UPLC-Q-TOF/MS was used to analyze metabolic changes. Orthogonal partial least squares-discriminant analysis (OPLS-DA) was used to analyze the resulting data. Additionally, cholesterol (TC), triglyceride (TG), aspartate aminotransferase (AST), alanine aminotransferase (ALT), secretion levels of TNF-α, IL-6, 5-LOX, and COX-2, as well as their relative mRNA expression in the liver were determined. Results: The levels of TC, TG, AST, and ALT were increased, and liver tissue structure was damaged. The secretion levels of TNF-α, IL-6, 5-LOX, and COX-2, as well as their relative mRNA expression in the liver also increased with aging. FTZ administration reduced the symptoms of liver aging. The OPLS-DA score plot illustrated the effect of FTZ against liver aging, with N-acetyl-leukotriene E4, 20-hydroxy-leukotriene E4, leukotriene E4, and arachidonic acid among the key biomarkers. The pivotal pathways revealed by pathway analysis included arachidonic acid metabolism and biosynthesis of unsaturated fatty acids. The mechanism by which FTZ reduces the symptoms of liver aging in mice might be related to disorders of the abovementioned pathways. Conclusion: A metabolomic approach based on UPLC-Q-TOF/MS and multivariate statistical analysis was successfully applied to investigate the metabolic trajectory of liver aging. FTZ has a protective effect against liver aging, which may be mediated via interference with the metabolism of arachidonic acid, biosynthesis of unsaturated fatty acids, and downregulation of pro-inflammatory factors in the liver in mice in vivo."	"Analysis of volatile compounds of Lentinula edodes grown in different culture substrate formulations. Volatile compounds of Lentinula edodes grown in different culture substrate (CS) formulations were analyzed to reveal (i) the relationship between volatile compound production and CS formulations, (ii) the contribution of volatile compounds to L. edodes flavor, (iii) the activities of LOX and γ-GGT enzymes, (iv) γ-GGT gene expression, and (v) the correlation between enzyme activity and volatile compound production. Our results showed that 82 kinds of volatile compounds were analyzed; 25 volatile compounds were considered key flavor components, and sulfur containing compounds, eight-carbon compounds, and aldehyde compounds also had great contributions to mushroom flavor. Bagasse could be used as a partial substitute for sawdust as a carbon source. LOX and γ-GGT activities showed a weak correlation with the volatile end products. The results indicated that the mechanisms by which CS formulations influence volatile compounds production were complex."
+"MYH11"	"familial thoracic aortic aneurysm and aortic dissection"	"New Insights into the Pathophysiology of Primary and Secondary Lymphedema: Histopathological Studies on Human Lymphatic Collecting Vessels.  Background:  Lymphedema is characterized by an accumulation of interstitial fluids due to inefficient lymphatic drainage. Primary lymphedema is a rare condition, including congenital and idiopathic forms. Secondary lymphedema is a common complication of lymph node ablation in cancer treatment. Previous studies on secondary lymphedema lymphatic vessels have shown that after an initial phase of ectasia, worsening of the disease is associated with wall thickening accompanied by a progressive loss of the endothelial marker podoplanin.  Methods and Results:  We enrolled 17 patients with primary and 29 patients with secondary lymphedema who underwent lymphaticovenous anastomoses surgery. Histological sections were stained with Masson's trichrome, and immunohistochemistry was performed with antibodies to podoplanin, smooth muscle α-actin (α-SMA), and myosin heavy chain 11 (MyH11). In secondary lymphedema, we found ectasis, contraction, and sclerosis vessel types. In primary lymphedema, the majority of vessels were of the sclerosis type, with no contraction vessels. In both primary and secondary lymphedema, not all α-SMA-positive cells were also positive for MyH11, suggesting transformation into myofibroblasts. The endothelial marker podoplanin had a variable expression unrelatedly with the morphological vessel type.  Conclusions : Secondary lymphedema collecting vessels included all the three types described in literature, that is, ectasis, contraction, and sclerosis, whereas in primary lymphedema, we found the ectasis and the sclerosis but not the contraction type. Some cells in the media stained positively for α-SMA but not for MyH11. These cells, possibly myofibroblasts, may contribute to collagen deposition."	"The Stem Cell Pluripotency Genes Klf4 and Oct4 Regulate Complex SMC Phenotypic Changes Critical in Late-Stage Atherosclerotic Lesion Pathogenesis. Background: Rupture or erosion of advanced atherosclerotic lesions with a resultant myocardial infarction or stroke are the leading worldwide cause of death. However, we have a very limited understanding of the identity, origin, and function of many cells that make up late stage atherosclerotic lesions, as well as the mechanisms by which they control plaque stability. Methods: We conducted a comprehensive single-cell RNA-seq of advanced human carotid endarterectomy samples and compared these with scRNA-seq from murine micro-dissected advanced atherosclerotic lesions with smooth muscle cell (SMC) and endothelial lineage tracing to survey all plaque cell types and rigorously determine their origin. We further used ChIP-seq, bulk RNA-seq and an innovative dual lineage tracing mouse to understand the mechanism by which SMC phenotypic transitions affects lesion pathogenesis. Results: We provide evidence SMC-specific Klf4- versus Oct4-knockout showed virtually opposite genomic signatures and their putative target genes play an important role regulating SMC phenotypic changes. scRNA-seq revealed remarkable similarity of transcriptomic clusters between mouse and human lesions and extensive plasticity of SMC- and EC-derived cells including seven distinct clusters, most negative for traditional markers. In particular, SMC contributed to a Myh11<sup>-</sup>, Lgals3<sup>+</sup> population with a chondrocyte-like gene signature that was markedly reduced with SMC-Klf4 knockout. We observed that SMC that activate Lgals3 comprise up to 2/3 of all SMC in lesions. However, initial activation of Lgals3 in these cells does not represent conversion to a terminally differentiated state, but rather represents transition of these cells to a unique stem cell marker gene<sup>+</sup>, ECM-remodeling, &quot;pioneer&quot; cell phenotype that are the first to invest within lesions and subsequently give rise to at least 3 other SMC phenotypes within advanced lesions including Klf4-dependent osteogenic phenotypes likely to contribute to plaque calcification and plaque destabilization. Conclusions: Taken together, these results provide evidence that SMC-derived cells within advanced mouse and human atherosclerotic lesions exhibit far greater phenotypic plasticity than generally believed, with Klf4 regulating transition to multiple phenotypes including Lgals3<sup>+</sup> osteogenic cells likely to be detrimental for late stage atherosclerosis plaque pathogenesis."	"Incidental diagnosis of mucopolysaccharidosis type I in an infant with chronic intestinal pseudoobstruction by exome sequencing. Chronic intestinal pseudoobstruction (CIPO) is a severe form of intestinal dysmotility, and patients often undergo iterative abdominal surgeries and require parenteral nutrition. Several genes are known to be responsible for this pathology, including ACTG2 (autosomal dominant) and MYH11 (autosomal recessive). We report the first case of unexpected trio medical exome sequencing diagnosis of mucopolysaccharidosis type I (MPS-I) in a patient with an early CIPO. There was no clinical suspicion of MPS-I at the time of the prescription. It allowed biochemical confirmation of MPS-I, expert clinical evaluation and early treatment. Enzyme replacement therapy (ERT) with laronidase was started at 9 months old, and hematopoietic stem cell transplantation was carried out at 10 months and a half. The patient also had a 1.7 mb heterozygous deletion in chromosomal region 16p13.11p12.3, comprising several genes, including MYH11, paternally inherited. Her father has no symptoms of CIPO or other digestive symptoms. One previous association of CIPO and MPS-I was reported in 1986. Moreover, the number of incidental findings of inherited metabolic disorders with therapeutic impact will inevitably increase as pangenomic analyses become cheaper and easily available."	"[Clinical features and prognosis of core binding factor acute myeloid leukemia in children]. To study the clinical features and prognosis of core binding factor acute myeloid leukemia (CBF-AML) in children. A retrospective analysis was performed from the chart review data of children who were newly diagnosed with CBF-AML in the Institute of Hematology &amp; Blood Diseases Hospital, Chinese Academy of Medical Sciences, from August 2009 to November 2015. According to the type of fusion gene, the children were divided into CBFB-MYH11 and AML1-ETO groups. Clinical features and prognosis were analyzed and compared between the two groups. A total of 91 children with CBF-AML were enrolled in this study, among whom there were 74 (81%) in the AML1-ETO group and 17 (19%) in the CBFB-MYH11 group. Additional chromosomal abnormalities were observed in 38 children (42%), and deletion of sex chromosome was the most common abnormality and was observed in 28 children (31%). After the first course of induction treatment, the complete remission rate was 97% (88/91), the recurrence rate was 29% (26/91), the 5-year event-free survival (EFS) rate was 65%±6%, and the 5-year overall survival (OS) rate was 75%±5%. There were no significant differences between the AML1-ETO and CBFB-MYH11 groups in 5-year EFS rate (62%±7% vs 77%±11%, P&gt;0.05) or 5-year OS rate (72%±6% vs 88%±9%, P&gt;0.05). AML1-ETO is the main type of fusion gene in children with CBF-AML, and deletion of sex chromosome is the most common type of additional chromosomal abnormalities. Children with CBF-AML often have a good prognosis, and the children with AML1-ETO have a similar prognosis to those with CBFB-MYH11."	"IL-33/IL1RL1 axis regulates cell survival through the p38 MAPK pathway in acute myeloid leukemia. Acute myeloid leukemia (AML) is often characterized by the presence of specific and recurrent chromosomal abnormalities. Current treatments have greatly increased remission rate, but relapse still occurs. Therefore, novel therapeutic approaches are required. Previously, using a conditional Cbfb-MYH11 knockin mouse model, we showed that Cbfb-MYH11 induces the expression of a cytokine receptor, IL1RL1. Treatment with IL-33, the only known ligand of IL1RL1, promotes leukemia cell survival in vitro. We further found that IL1RL1<sup>+</sup> cells survive better with chemotherapy than IL1RL1<sup>-</sup> population. However, the mechanism is not clear. Here, we show that IL-33 treatment decreased drug sensitivity in the human inv(16) AML cell line ME-1. By RT-PCR, we found that IL-33 increased the expression of IL-4 and IL-6 and led to the activation of both p38 MAPK and NF-κB. We also showed that IL-33 decreased apoptosis with increased phosphorylation of p38 MAPK. Moreover, pre-treatment with MAPK inhibitor attenuated the phosphorylation of p38 enhanced by IL-33 and reversed the anti-apoptotic effect by IL-33. Taken together, our findings give news insights into the potential mechanism of the anti-apoptotic effect by IL-33/IL1RL1 axis in AML which will help in future drug development."	"Transcriptomic Profile of Primary Culture of Skeletal Muscle Cells Isolated from Semitendinosus Muscle of Beef and Dairy Bulls. The aim of the study was to identify differences in the transcriptomic profiles of primary muscle cell cultures derived from the semitendinosus muscle of bulls of beef breeds (Limousin (LIM) and Hereford (HER)) and a dairy breed (Holstein-Friesian (HF)) (n = 4 for each breed). Finding a common expression pattern for proliferating cells may point to such an early orientation of the cattle beef phenotype at the transcriptome level of unfused myogenic cells. To check this hypothesis, microarray analyses were performed. The analysis revealed 825 upregulated and 1300 downregulated transcripts similar in both beef breeds (LIM and HER) and significantly different when compared with the dairy breed (HF) used as a reference. Ontological analyses showed that the largest group of genes were involved in muscle organ development. Muscle cells of beef breeds showed higher expression of genes involved in myogenesis (including erbb-3, myf5, myog, des, igf-1, tgfb2) and those encoding proteins comprising the contractile apparatus (acta1, actc1, myh3, myh11, myl1, myl2, myl4, tpm1, tnnt2, tnnc1). The obtained results confirmed our hypothesis that the expression profile of several groups of genes is common in beef breeds at the level of proliferating satellite cells but differs from that observed in typical dairy breeds."	"Fetal megacystis-microcolon: Genetic mutational spectrum and identification of PDCL3 as a novel candidate gene. Megacystis-microcolon-intestinal-hypoperistalsis syndrome (MMIHS) is a severe congenital visceral myopathy characterized by an abdominal distension due to a large non-obstructed urinary bladder, a microcolon and intestinal hypo- or aperistalsis. Most of the patients described to date carry a sporadic heterozygous variant in ACTG2. More recently, recessive forms have been reported and mutations in MYH11, LMOD1, MYLK and MYL9 have been described at the molecular level. In the present report, we describe five patients carrying a recurrent heterozygous variant in ACTG2. Exome sequencing performed in four families allowed us to identify the genetic cause in three. In two families, we identified variants in MMIHS causal genes, respectively a nonsense homozygous variant in MYH11 and a previously described homozygous deletion in MYL9. Finally, we identified compound heterozygous variants in a novel candidate gene, PDCL3, c.[143_144del];[380G&gt;A], p.[(Tyr48Ter)];[(Cys127Tyr)]. After cDNA analysis, a complete absence of PDLC3 expression was observed in affected individuals, indicating that both mutated transcripts were unstable and prone to mediated mRNA decay. PDCL3 encodes a protein involved in the folding of actin, a key step in thin filament formation. Presumably, loss-of-function of this protein affects the contractility of smooth muscle tissues, making PDCL3 an excellent candidate gene for autosomal recessive forms of MMIHS."	"MiR-126-5p promotes contractile switching of aortic smooth muscle cells by targeting VEPH1 and alleviates Ang II-induced abdominal aortic aneurysm in mice. Abdominal aortic aneurysm (AAA) is a potential lethal disease that is defined by an irreversible dilatation (&gt;50%) of the aorta. During AAA expansion, the aortic wall is often remodeled, which is featured by extracellular matrix (ECM) degeneration, medial and adventitial inflammation, depletion and phenotypic switching of vascular smooth muscle cells (SMCs). Recent studies have suggested microRNAs as vital regulators for vascular SMC function. Our earlier work demonstrated an anti-AAA role of miR-126-5p in ApoE<sup>-</sup><sup>/-</sup> mice infused with angiotensin (Ang) II. The present study aimed to further elucidate its role in AAA pathogenesis with a focus on aortic SMC phenotypic switching. Ventricular zone expressed PH domain containing 1 (VEPH1) was identified as a novel negative regulator for vascular SMC differentiation by our group, and its expression was negatively correlated to miR-126-5p in mouse abdominal aortas based on the present microarray data. In vivo, in addition attenuating Ang II infusion-induced aortic dilation and elastin degradation, miR-126-5p agomirs also significantly reduced the expression of VEPH1. In vitro, to induce synthetic transition of human aortic smooth muscle cells (hAoSMCs), cells were stimulated with 1 μM Ang II for 24 h. Ectopic overexpression of miR-126-5p restored the differentiation of hAoSMCs-the expression of contractile/differentiated SMC markers, MYH11, and α-SMA, increased, whilst that of synthetic/dedifferentiated SMC markers, PCNA and Vimentin, decreased. Both mus and homo VEPH1 genes were validated as direct targets for miR-126-5p. VEPH1 re-expression impaired miR-126-5p-induced differentiation of hAoSMCs. In addition, Ang II-induced upregulation in matrix metalloproteinase (MMP)-9 and MMP2, two key proteases responsible for ECM degradation, in mouse aortas and hAoSMCs was reduced by miR-126-5p overexpression as well. Collectively, these results reveal an important, but previously unexplored, role of miR-126-5p in inhibiting AAA development-associated aortic SMC dedifferentiation."	"The loss or absence of minimal residual disease of &lt;0·1% at any time after two cycles of consolidation chemotherapy in CBFB-MYH11-positive acute myeloid leukaemia indicates poor prognosis. No consensus has been reached on the relationship between CBFB-MYH11 copies and prognosis. Of 1525 acute myeloid leukemia (AML) patients, 58 with CBFB-MYH11-positive AML (16/58 patients with c-kit mutation) were retrospectively analyzed with a median follow-up duration of 29.8 (range: 4.8-74.4) months. Of these, 25/58 (43.1%) patients underwent allogeneic hematopoietic stem cell transplantation (allo-HSCT), 10 of whom had the c-kit mutation. Of the 33 patients who did not undergo allo-HSCT, recurrence in patients with CBFB-MYH11/ABL level &gt;0.1% at any time after two consolidation cycles was significantly higher than in patients with CBFB-MYH11/ABL level &lt;0.1% (61.9% vs. 0%, P = 0.001); further, the 3-year relapse-free survival (RFS; 31.4% vs. 100%, P = 0.004) and event-free survival (EFS; 33.1% vs. 100%, P = 0.004) were significantly decreased in patients with CBFB-MYH11/ABL level &gt;0.1% at any time after two consolidation cycles. The 3-year RFS and EFS rates were lower in patients who did not receive allo-HSCT than in those who did (31.4% vs 84.6%, P = 0.000; 31.4% vs. 80.8%, P = 0.001). CBFB-MYH11-positive AML patients with CBFB-MYH11/ABL level &gt;0.1% at any time after two cycles of consolidation had poor prognoses, and allo-HSCT could improve their survival."	"Blastic transformation of BCR-ABL1 positive chronic myeloid leukaemia through acquisition of CBFB-MYH11 and mutant KIT. NA"	"LncRNA Sox2ot modulates the progression of thoracic aortic aneurysm by regulating miR-330-5p/Myh11. Thoracic aortic aneurysm (TAA) has been causing the death of elder people. Myosin heavy chain 11 (Myh11) has been reported associated with aortic aneurysm, but there is no specific study on its function on TAA. Here we aimed to explore the function of Myh11 on mouse aortic smooth muscle cells (SMCs) for studying the inner mechanism of TAA. H2O2 treatment was implemented on mouse aortic SMCs for detecting cell apoptosis. Meanwhile, functional assays were conducted to verify the function of Myh11 on mouse aortic SMCs. Also, pull-down assay, RIP assay were implemented to identify the potential RNAs for study. Quantitative real-time polymerase chain reaction (qRT-PCR) and luciferase reporter assay were implemented to identify the expression and binding relationships of RNAs. Myh11 expression was increased by treatment of H2O2. Myh11 could decrease proliferation and enhance apoptosis of mouse aortic SMCs. At the same time, mmu-miR-330-5p could bind to Myh11 and Sox2ot, forming a competing endogenous RNA (ceRNA) pathway to regulate the proliferation and apoptosis of mouse aortic SMCs. Moreover, both Sox2ot and Myh11 were proved to be up-regulated whereas miR-330-5p down-regulated in Fbn1C1039G/+ mice, the in vivo model of TAA. In a word, long noncoding RNA (lncRNA) Sox2ot modulates the progression of TAA by regulating miR-330-5p/Myh11 axis."	"Laser capture microdissection coupled mass spectrometry (LCM-MS) for spatially resolved analysis of formalin-fixed and stained human lung tissues. Haematoxylin and eosin (H&amp;E)-which respectively stain nuclei blue and other cellular and stromal material pink-are routinely used for clinical diagnosis based on the identification of morphological features. A richer characterization can be achieved by laser capture microdissection coupled to mass spectrometry (LCM-MS), giving an unbiased assay of the proteins that make up the tissue. However, the process of fixing and H&amp;E staining of tissues provides challenges with standard sample preparation methods for mass spectrometry, resulting in low protein yield. Here we describe a microproteomics technique to analyse H&amp;E-stained, formalin-fixed paraffin-embedded (FFPE) tissues. Herein, we utilize heat extraction, physical disruption, and in column digestion for the analysis of H&amp;E stained FFPE tissues. Micro-dissected morphologically normal human lung alveoli (0.082 mm<sup>3</sup>) and human lung blood vessels (0.094 mm<sup>3</sup>) from FFPE-fixed H&amp;E-stained sections from Idiopathic Pulmonary Fibrosis (IPF) specimens (n = 3 IPF specimens) were then subject to a qualitative and then quantitative proteomics approach using BayesENproteomics. In addition, we tested the sensitivity of this method by processing and analysing a range of micro-dissected human lung blood vessel tissue volumes. This approach yields 1252 uniquely expressed proteins (at a protein identification threshold of 3 unique peptides) with 892 differentially expressed proteins between these regions. In accord with prior knowledge, our methodology approach confirms that human lung blood vessels are enriched with smoothelin, CNN1, ITGA7, MYH11, TAGLN, and PTGIS; whereas morphologically normal human lung alveoli are enriched with cytokeratin-7, -8, -18, -19, 14, and -17. In addition, we identify a total of 137 extracellular matrix (ECM) proteins and immunohistologically validate that laminin subunit beta-1 localizes to morphologically normal human lung alveoli and tenascin localizes to human lung blood vessels. Lastly, we show that this micro-proteomics technique can be applied to tissue volumes as low as 0.0125 mm<sup>3</sup>. Herein we show that our multistep sample preparation methodology of LCM-MS can identify distinct, characteristic proteomic compositions of anatomical features within complex fixed and stained tissues."	"The Identification of Key Gene Expression Signature in Prostate Cancer. Prostate cancer (PCa) is one of the most common malignancies affecting men's health worldwide. The aim of this study is to identify key genes and their regulatory networks and evaluate the usefulness of these genes on diagnosis of and prognosis for prostate cancer. The gene expression microarray dataset GSE55945 was downloaded for analysis. The differentially expressed genes (DEGs) were accessed with RStudio. Gene ontology (GO) and the Kyoto Encyclopedia of Genes and Genomes (KEGG) analyses were performed using the database for annotation, visualization and integrated discovery (DAVID) database. A protein-protein interaction network was carried out using STRING. The survival and diagnostic analysis of hub genes were conducted using the cancer genome atlas (TCGA) data. Finally, we identified 387 DEGs. GO and KEGG analyses reveled that the DEGs in PCa were mainly enriched in the bone morphogenetic protein (BMP) signaling pathway and cytochrome P450. Among 15 hub genes, we found that only a different expression level of MYH11 affected patient survival. And further gene set enrichment analysis (GSEA) showed that low expression of MYH11 was associated with the cell cycle, DNA replication, TGF-P1 signal pathway, and PCa. In conclusion, we identified 387 DEGs that may be involved in core pathways such as the BMP pathway and cytochrome P450, which may contribute to the progression of PCa. In addition, hub gene MYH11 has the potential to be a novel biomarker for diagnosing and determining the prognosis for PCa."	"[Analysis of Genomic Landscape in Patients with Acute Myeloid Leukemia]. To investigate the gene mutation occurved in AML patients with 29 kinds of fusion genes and 51 kinds of tumor gene. Next-generation sequencing (NGS) was used to detected the 49 kinds of targeted gene. FLT3 internal tandem duplication (FLT3-ITD), CALR, NPM1 and CEBPA mutation were detected by DNA-based PCR and Sanger sequencing. Twenty-nine kinds of fusion genes were dected by multiplex nested RT-PCR. The total gene mutation rate was 91% (109/121) in all the 121 patients. On average, 2.1 mutated genes per patient were identified, among these 121 patients, coexistence of ≥ 3 mutations was frequent (34.7%). The most commonly mutated genes were NRAS (23.96%, n=29), followed by NPM1 (14.04%, n=17), CEBPA double mutations (14.04%, n=17), KRAS (11.57%, n=14),FLT3-ITD (10.74%, n=13), CSF3R (10.74%, n=13), TET2 (9.92%, n=12) and IDH1 (9.1%, n=11). Overall, fusion genes were detected in 47 (37.3%) patients, including AML/ETO (n=12), CBFβ/MYH11 (n=11), PML/RARa (n=12), MLL rearranagement realated mutation MLL-X (n=10). TLS/ERG (n=1) and DEK/CAN (n=1) in an order of decreasing frequency. Patients with normal karyotype (NK)- AML exhibited more mutations in CEBPA, NPM1, TET2, RUNX1 and IDH1, comparing with abnormal karyotype patients. KRAS mutation in abnormal kayotype patients was significantly higher than that in normal kayotype patients (P=0.014). TP53 mutations were predominantly associated with complex cytogenetics (P=0.199). KRAS mutations were more frequent in core binding factor (CBF) acute myeloid leukemia (AML) and 11q23/MLL rearrangement leukemia, compared with NK-AML (P=0.006 and 0.003, respectively). KIT mutations predominated in CBF-AML (P=0.006). JAK2V617F mutations were detected in two patients and co-occurred with AML-ETO fusions. At least one mutation is observed in more than 90% patients. On average, more than 2 mutated genes per patient are identified. Some gene mutations are associated with gene rearrangement. 121例急性髓系白血病患者基因突变谱的分析. 研究急性髓系白血病(AML)患者29种融合基因及51种肿瘤基因突变的发生情况. 采用第二代DNA测序技术检测49种靶基因;采用DNA-PCR检测FLT3-ITD、NPM1基因12号外显子、CALR基因9号外显子及CEBPA的TAD、BZIP 2个功能区的突变发生情况;采用多重PCR法检测29种白血病融合基因. 121例患者中,基因突变总发生率为90.1%(109/121),每例患者平均发生2.1个基因突变,34.7%的患者同时携带≥3个基因突变。突变检出率最高的基因为NRAS(23.96%,n=29),其他基因依次为:NPM1(14.04%,n=17)、CEBPA双突变(14.04%,n=17)、KRAS(11.57%,n=14)、FLT3-ITD(10.74%,n=13)、CSF3R(10.74%,n=13)、TET2(9.92%,n=12)和IDH1(9.1%,n=11)。共47例患者检出融合基因,包括AML/ETO 12例,CBFβ/MYH11 11例,PML/RARa 12例,涉及MLL重排的MLL-X融合基因10例,TLS/ERG 1例及DEK/CAN 1例。 CEBPA、NPM1、TET2、RUNX1及IDH1突变在正常核型中的检出率均高于异常核型,差异有统计学意义;KRAS突变在异常核型中的发生率高于正常核型,差异显著(P=0.014)。复杂核型患者的TP53突变检出率明显高于正常核型及其他异常核型(P=0.199)。KRAS突变在核心结合因子白血病及伴有11q23/MLL重排的M5患者中的阳性率均高于正常核型(P=0.006,P=0.003)。KIT基因突变主要见于核心结合因子白血病,两者有相关性(P=0.006)。共检测到2例JAK2V617F突变,均与t (8; 21)/AML1/ETO伴随出现. 大于90%的AML患者至少携带1个基因突变,每例患者平均发生2个以上白血病常见致病基因突变,部分基因突变与基因重排有一定相关性."	"[Expression and Significance of PD-1, TIM-3 and VISTA on T Cell of Acute Myeloid Leukemia Patients]. To study the expression of multiple negative costimulatory molecules on peripheral blood T cells in patients with acute myeloid leukemia (AML) and its affection on prognosis. The peripheral blood samples from patients with newly diagnosed AML, complete remission (CR), and no-remission (NR) were collected, the expression levels PD-1、VISTA and TIM-3 in CD4<sup>+</sup> and CD8<sup>+</sup> T cells were detected by flow cytometry , and the clinical data of patients were analyzed. The expression levels of PD-1、VISTA and TIM-3 of CD4<sup>+</sup> and CD8<sup>+</sup> T cells in the newly diagnosed AML patients were significantly higher than those in control group (P<0.05). The expression levels of PD-1、TIM-3 and VISTA of CD4<sup>+</sup> and CD8<sup>+</sup> T cells in the CR group were significantly lower than those in newly diagnosed and the NR group (P<0.05). The TIM-3 expression level positively correlated with VISTA expression level of CD4<sup>+</sup> and CD8<sup>+</sup> T cells in newly diagnosed AML patients (r=0.85 and 0.73). The VISTA and PD-1 expression level of CD4<sup>+</sup> T cells in newly diagnosed AML, NR after first induction chemotherapy and high risk patients significantly increased (P<0.05), the TIM-3 expression level of CD8<sup>+</sup> T cells in high risk group significantly increased (P<0.05), and the VISTA expression level of CD8<sup>+</sup> T cells in CBFβ-MYH11 mutation-positive group significantly decreased (P<0.05). The expression of PD-1、TIM-3 and VISTA in AML peripheral blood T cells may be involved in the immune escape of AML and can be the targets of treatment for acute myeloid leukemia patients. PD-1、TIM-3、VISTA在急性髓系白血病患者T细胞上的表达及意义. 研究多种负性共刺激分子在急性髓系白血病(AML)患者外周血T细胞上的表达及其对预后的影响. 收集初治、完全缓解(CR)、未缓解(NR)AML患者外周血标本,采用流式细胞术检测CD4<sup>+</sup>和CD8<sup>+</sup> T细胞PD-1、VISTA、TIM-3的表达水平,并收集患者临床资料进行统计分析. 初治AML组患者CD4<sup>+</sup>和CD8<sup>+</sup> T 细胞PD-1、VISTA、TIM-3表达水平均较对照组显著增高(P<0.05),CR组CD4<sup>+</sup>和CD8<sup>+</sup>T细胞PD-1、TIM-3、 VISTA表达水平均较初治组及NR组显著降低(P<0.05);初治AML患者CD4<sup>+</sup> 和CD8<sup>+</sup> T细胞TIM-3表达水平与VISTA表达水平正相关(r=0.85,r=0.73);初治AML患者,首次诱导化疗未缓解组及高危组患者CD4<sup>+</sup> T细胞PD-1、VISTA表达水平显著上升(P<0.05),高危组CD8<sup>+</sup> T细胞TIM-3表达水平显著上升(P<0.05),CBFβ-MYH11突变阳性组CD8<sup>+</sup> T细胞VISTA表达水平显著降低(P<0.05). PD-1、TIM-3、VISTA在AML外周血T细胞上的表达可能参与AML的免疫逃逸,并可能成为急性髓系白血病患者的治疗靶点."	"Truncated RUNX1 Generated by the Fusion of RUNX1 to Antisense GRIK2 via a Cryptic Chromosome Translocation Enhances Sensitivity to Granulocyte Colony-Stimulating Factor. Fusions of the Runt-related transcription factor 1 (RUNX1) with different partner genes have been associated with various hematological disorders. Interestingly, the C-terminally truncated form of RUNX1 and RUNX1 fusion proteins are similarly considered important contributors to leukemogenesis. Here, we describe a 59-year-old male patient who was initially diagnosed with acute myeloid leukemia, inv(16)(p13;q22)/CBFB-MYH11 (FAB classification M4Eo). He achieved complete remission and negative CBFB-MYH11 status with daunorubicin/cytarabine combination chemotherapy but relapsed 3 years later. Cytogenetic analysis of relapsed leukemia cells revealed CBFB-MYH11 negativity and complex chromosomal abnormalities without inv(16)(p13;q22). RNA-seq identified the glutamate receptor, ionotropic, kinase 2 (GRIK2) gene on 6q16 as a novel fusion partner for RUNX1 in this case. Specifically, the fusion of RUNX1 to the GRIK2 antisense strand (RUNX1-GRIK2as) generated multiple missplicing transcripts. Because extremely low levels of wild-type GRIK2 were detected in leukemia cells, RUNX1-GRIK2as was thought to drive the pathogenesis associated with the RUNX1-GRIK2 fusion. The truncated RUNX1 generated from RUNX1-GRIK2as induced the expression of the granulocyte colony-stimulating factor (G-CSF) receptor on 32D myeloid leukemia cells and enhanced proliferation in response to G-CSF. In summary, the RUNX1-GRIK2as fusion emphasizes the importance of aberrantly truncated RUNX1 in leukemogenesis."	"Matrine suppresses advanced glycation end products-induced human coronary smooth muscle cells phenotype conversion by regulating endoplasmic reticulum stress-dependent Notch signaling. Advanced glycation end products (AGEs) induce vascular smooth muscle cells (VSMCs) contractile-synthetic phenotypic conversion which plays roles in aggravated atherosclerosis in diabetes. Matrine has been proved to suppress AGEs-induced phenotypic conversion which is governed by Notch pathway. Endoplasmic reticulum stress was associated with Notch pathway. Cultured human coronary smooth muscle cells (HCSMCs) were incubated with AGE-BSA at 0, 5 and 10 μmol/l. Specific siRNA was used to silence Protein kinase RNA-like ER kinase (PERK). Matrine at 0, 0.5 and 1.0 mmol/l were used to pre-treat the cells. Immunofluorescent staining of Smooth muscle myosin heavy chain 11 (MYH11) and smooth muscle α-actin 2 (ACTA2) were used to identify the contractile phenotype of HCSMCs. Protein phosphorylation and expression levels were evaluated by Western Blotting. AGE-BSA exposure facilitated the contractile-synthetic phenotypic conversion of HCSMCs in a concentration-dependent manner. AGE-BSA exposure increased expression levels of glucose-regulated protein 78 (GRP78), Delta-like 4 (Dll4), Notch intracellular domain (NICD1), Hes family basic helix-loop-helix (bHLH) transcriptional factor 1 (HES1), as well as the phosphorylation level of PERK. Specific perk-siRNA transfection dramatically lowered PERK phosphorylation and resulted in down-regulation of Dll4, NICD1 and HES1 in HCSMCs exposed to AGE-BSA. Pre-treatment of matrine suppressed AGE-BSA-induced phenotypic conversion of HCSMCs in a concentration-dependent manner. Moreover, matrine pre-treatment reduced expression level of GRP78, NICD1, HES1 and the phosphrylation level of PERK in AGE-BSA-exposed HCSMCs in a concentration-dependent manner. These results suggested that matrine suppressed AGE-BSA-induced HCSMCs phenotypic conversion via attenuating ER stress PERK signaling-dependent Dll4- Notch pathway activation."	"Inflammatory Drivers of Cardiovascular Disease: Molecular Characterization of Senescent Coronary Vascular Smooth Muscle Cells. The senescence of vascular smooth muscle cells (VSMCs) has been implicated as a causal pro-inflammatory mechanism for cardiovascular disease development and progression of atherosclerosis, the instigator of ischemic heart disease. Contemporary limitations related to studying this cellular population and senescence-related therapeutics are caused by a lack of specific markers enabling their detection. Therefore, we aimed to profile a phenotypical and molecular signature of senescent VSMCs to allow reliable identification. To achieve this goal, we have compared non-senescent and senescent VSMCs from two in vitro models of senescence, replicative senescence (RS) and DNA-damage induced senescence (DS), by analyzing the expressions of established senescence markers: cell cycle inhibitors- p16 INK4a, p14 ARF, p21 and p53; pro-inflammatory factors-Interleukin 1β (IL-1β), IL-6 and high mobility group box-1 (HMGB-1); contractile proteins-smooth muscle heavy chain- (MYH11), smoothelin and transgelin (TAGLN), as well as structural features (nuclear morphology and LMNB1 (Lamin B1) expression). The different senescence-inducing modalities resulted in a lack of the proliferative activity. Nucleomegaly was seen in senescent VSMC as compared to freshly isolated VSMC Phenotypically, senescent VSMC appeared with a significantly larger cell size and polygonal, non-spindle-shaped cell morphology. In line with the supposed switch to a pro-inflammatory phenotype known as the senescence associated secretory phenotype (SASP), we found that both RS and DS upregulated IL-1β and released HMGB-1 from the nucleus, while RS also showed IL-6 upregulation. In regard to cell cycle-regulating molecules, we detected modestly increased p16 levels in both RS and DS, but largely inconsistent p21, p14ARF, and p53 expressions in senescent VSMCs. Since these classical markers of senescence showed insufficient deregulation to warrant senescent VSMC detection, we have conducted a non-biased proteomics and in silico analysis of RS VSMC demonstrating altered RNA biology as the central molecular feature of senescence in this cell type. Therefore, key proteins involved with RNA functionality, HMGB-1 release, LMNB-1 downregulation, in junction with nuclear enlargement, can be used as markers of VSMC senescence, enabling the detection of these pathogenic pro-inflammatory cells in future therapeutic studies in ischemic heart disease and atherosclerosis."	"[Driver Mutations in Acute Myeloid Leukemia with Inversion of Chromosome 16]. Certain subtypes of acute myeloid leukemia occur as a result of the cooperation of several events these are, the formation of fusion genes as a result of chromosomal rearrangements, which leads to the disruption of cell differentiation, and the emergence of mutations that enhance cellular proliferation by activating intracellular signaling pathways. High-throughput sequencing methods reveal characteristic mutation spectra in leukemia associated with different chromosomal disorders. However, the role of mutation events in malignant cell transformation processes remains obscure. We searched for driver mutation events in leukemic cells containing the chimeric CBFB-MYH11 gene, which results from inversion of chromosome 16. Using target enrichment, the coding regions of 84 genes in genomes of 12 children with acute myeloid leukemia with inv(16) were investigated. Somatic mutations have been found in the genes of the proteins of intracellular signaling cascades mediated by receptor tyrosine kinases, such as KIT (41%), NRAS (25%), KRAS (17%), and FLT3 (8.3%). Comparative analysis of samples at the time of diagnosis and during remission was used to assess the role of mutations in the pathogenesis of the disease. Previously undescribed mutations in the KDM6A, NOTCH1, and IDH1 genes, which may be involved in leukemogenesis processes have been identified."	"Kindlin-2 deficiency induces fatal intestinal obstruction in mice. Rationale: Smooth muscle-motility disorders are mainly characterized by impaired contractility and functional intestinal obstruction. Some of these cases are caused by genetic mutations of smooth muscle genes ACTA2, ACTG2, MYH11, MYLK and LMOD1. Still the etiology is complex and multifactorial and the underlying pathology is poorly understood. Integrin interaction protein Kindlin-2 is widely expressed in striated and smooth muscle cells (SMC). However, the function of Kindlin-2 in the smooth muscle remains elusive. Methods: We generated two mouse models using different cre promoter transgenic mice, Kindlin-2<sup>fl/fl</sup> SM22α-cre+ (cKO mice) and Kindlin-2<sup>fl/fl</sup>; MYH-cre+ (iKO mice). Embryos and adult tissues were prepared for hematoxylin and eosin (H&amp;E) staining, immunohistochemistry (IHC) and terminal deoxynucleotidyl transferase dUTP nick-end labeling (TUNEL) apoptosis assay. We investigated ultrastructure changes of mouse smooth muscle using transmission electron microscopy (TEM) and measured smooth muscle contractile force in mounting aortic and intestinal rings using the multiwire myograph system (DMT 620M). In addition, cell traction force microscopy (CTFM) was applied to observe the functional change of primary SMC after Kindlin-2 depletion by RNAi. Results: Depletion of Kindlin-2 encoding gene Fermt2 in embryonic smooth muscles leads to apoptosis, downregulates the key components of SMC, impairs smooth muscle development, and finally causes embryonic death at E14.5. Tamoxifen-induced Kindlin-2-specific knockout in adult mouse smooth muscle showed decreased blood pressure, intestinal hypoperistalsis, and eventually died of intestinal obstruction. Kindlin-2 depletion also leads to downregulated Myh11, α-SMA, and CNN, shortened myofilament, broken myofibrils, and impaired contractility of the smooth muscles in iKO mice. Mechanistically, loss of Kindlin-2 decreases Ca2<sup>+</sup> influx in primary vascular smooth muscle cells (PVSMC) by downregulating the expression of calcium-binding protein S100A14 and STIM1. Conclusion: We demonstrated that Kindlin-2 is essential for maintaining the normal structure and function of smooth muscles. Loss of Kindlin-2 impairs smooth muscle formation during embryonic development by inducing apoptosis and jeopardizes the contraction of adult smooth muscle by blocking Ca<sup>2+</sup> influx that leads to intestinal obstruction. Mice with Kindlin-2 depletion in adult smooth muscle could be a potent animal model of intestinal obstruction for disease research, drug treatment and prognosis."	"Clinical and immunological features of platelet transfusion refractoriness in young patients with de novo acute myeloid leukemia. Platelet transfusion is important in the prevention and treatment of bleeding in patients with acute myeloid leukemia (AML) after receiving intensive chemotherapy. However, platelet transfusion refractoriness (PTR) is an intractable clinical issue occurred in these patients. And its clinical and immunological features remain largely unknown. The potential causes and clinical features of PTR were retrospectively analyzed in 560 patients who were diagnosed as de novo AML in Tongji Hospital from June 2012 through June 2018. A high-throughput antibody screening for the detection of human leukocyte antigen (HLA) and its serotypes was performed in 133 newly diagnosed AML patients. PTR occurred in 11.8% of the de novo AML patients. The median age for patients with PTR was 46 years (range, 15-70). It frequently manifested in female patients and in patients with splenomegaly, M4 subtype, c-Kit gene mutation, and rearrangements of RUNX1-RUNX1T1 or CBFB-MYH11, commonly referred to as core binding factor AML (CBF-AML). Notably, CBF-AML was independently associated with the occurrence of PTR. PTR predominantly developed in patients who had CBF-AML (P &lt; .001) and in patients who further had better minimal residual disease (MRD) reduction (≥3-log) before the second consolidation chemotherapy (P = .007). HLA-I antibodies were detected in the serum of 9.0% of AML patients and markedly enriched in patients with PTR (P &lt; .001) and in patients with CBF-AML (P = .018). HLA-B was the most frequently identified serum epitope in PTR patients. Patients with CBF-AML had higher tendency to develop HLA-I antibodies and PTR, which depicted novel features of PTR in AML and might provide insights into its efficient managements."	"Clinical and prognostic significance of MYH11 in lung cancer. Myosin heavy chain 11 (MYH11), encoded by the MYH11 gene, is a protein that participates in muscle contraction through the hydrolysis of adenosine triphosphate. Although previous studies have demonstrated that MYH11 gene expression levels are downregulated in several types of cancer, its expression levels have rarely been investigated in lung cancer. The present study aimed to explore the clinical significance and prognostic value of MYH11 expression levels in lung cancer and to further study the underlying molecular mechanisms of the function of this gene. The Oncomine database showed that the MYH11 expression levels were decreased in lung cancer compared with those noted in the normal lung tissue (P&lt;0.05). Kaplan-Meier plotter results revealed that the decreased MYH11 expression levels were correlated with poor prognosis in lung cancer patients. Among the lung cancer cases with gene alteration of MYH11, mutation was the most common of all alteration types. Coexpedia and Metascape analyses revealed that the target genes were primarily enriched in 'muscle contraction', 'contractile fiber part', 'actin cytoskeleton' and the 'adherens junction'. These results indicated that MYH11 is a potential novel drug target and prognostic indicator of lung cancer."	"A novel role of VEPH1 in regulating AoSMC phenotypic switching. Abdominal aortic aneurysm (AAA) is a potentially lethal disease featured by focal dilatation in the aorta. The transition of vascular smooth muscle cells (SMCs) from a contractile/differentiated to a synthetic/dedifferentiated phenotype is considered to contribute to AAA formation and expansion. Our previous gene microarray data showed that Ventricular Zone Expressed PH Domain Containing 1 (VEPH1) expression increased in angiotensin II (Ang II)-infused aortic tissues. This study was thus performed to further explore the role of VEPH1. Herein, we first demonstrate that VEPH1 increases in the SMCs of Ang II-treated abdominal aortas. As in vivo, Ang II also upregulated VEPH1 expression in cultured hAoSMCs. The dedifferentiation of human aortic SMCs (hAoSMCs) was induced by a 24-hr stimulation of Ang II (1 μM)-the expression of contractile SMC markers, MYH11 and α-smooth muscle actin (α-SMA) decreased and that of synthetic markers, proliferating cell nuclear antigen and Vimentin increased. Inhibition of VEPH1 prevented Ang II-induced pathological dedifferentiation of hAoSMCs as indicated by the restored expression of MYH11 and α-SMA. In contrast, the forced overexpression of VEPH1 aggravated Ang II's effects. Furthermore, we demonstrated that VEPH1 and transforming growth factor-β1 (TGF-β1), a key regulator responsible for vascular SMC differentiation, negatively regulated each other's transcription. In contrast to VEPH1 silencing, its overexpression inhibited recombinant TGF-β1-induced increases in MYH11 and α-SMA and suppressed Smad3 phosphorylation and nuclear accumulation. Collectively, our study demonstrates that VEPH1 elevation promotes the synthetic phenotype switching of AoSMCs and suppressed the TGF-β1/Smad3 signaling pathway. Identification of VEPH1 as a pathogenic molecule for AAA formation provides novel insights into this disease."	"Lack of PCSK6 Increases Flow-Mediated Outward Arterial Remodeling in Mice. Proprotein convertases (PCSKs) process matrix metalloproteases and cytokines, but their function in the vasculature is largely unknown. Previously, we demonstrated upregulation of PCSK6 in atherosclerotic plaques from symptomatic patients, localization to smooth muscle cells (SMCs) in the fibrous cap and positive correlations with inflammation, extracellular matrix remodeling and cytokines. Here, we hypothesize that PCSK6 could be involved in flow-mediated vascular remodeling and aim to evaluate its role in the physiology of this process using knockout mice. Pcsk6<sup>-/-</sup> and wild type mice were randomized into control and increased blood flow groups and induced in the right common carotid artery (CCA) by ligation of the left CCA. The animals underwent repeated ultrasound biomicroscopy (UBM) examinations followed by euthanization with subsequent evaluation using wire myography, transmission electron microscopy or histology. The Pcsk6<sup>-/-</sup> mice displayed a flow-mediated increase in lumen circumference over time, assessed with UBM. Wire myography revealed differences in the flow-mediated remodeling response detected as an increase in lumen circumference at optimal stretch with concomitant reduction in active tension. Furthermore, a flow-mediated reduction in expression of SMC contractile markers SMA, MYH11 and LMOD1 was seen in the Pcsk6<sup>-/-</sup> media. Absence of PCSK6 increases outward remodeling and reduces medial contractility in response to increased blood flow."	"Efficient differentiation of vascular smooth muscle cells from Wharton's Jelly mesenchymal stromal cells using human platelet lysate: A potential cell source for small blood vessel engineering. The development of fully functional small diameter vascular grafts requires both a properly defined vessel conduit and tissue-specific cellular populations. Mesenchymal stromal cells (MSCs) derived from the Wharton's Jelly (WJ) tissue can be used as a source for obtaining vascular smooth muscle cells (VSMCs), while the human umbilical arteries (hUAs) can serve as a scaffold for blood vessel engineering. To develop VSMCs from WJ-MSCs utilizing umbilical cord blood platelet lysate. WJ-MSCs were isolated and expanded until passage (P) 4. WJ-MSCs were properly defined according to the criteria of the International Society for Cell and Gene Therapy. Then, these cells were differentiated into VSMCs with the use of platelet lysate from umbilical cord blood in combination with ascorbic acid, followed by evaluation at the gene and protein levels. Specifically, gene expression profile analysis of VSMCs for ACTA2, MYH11, TGLN, MYOCD, SOX9, NANOG homeobox, OCT4 and GAPDH, was performed. In addition, immunofluorescence against ACTA2 and MYH11 in combination with DAPI staining was also performed in VSMCs. HUAs were decellularized and served as scaffolds for possible repopulation by VSMCs. Histological and biochemical analyses were performed in repopulated hUAs. WJ-MSCs exhibited fibroblastic morphology, successfully differentiating into &quot;osteocytes&quot;, &quot;adipocytes&quot; and &quot;chondrocytes&quot;, and were characterized by positive expression (&gt; 90%) of CD90, CD73 and CD105. In addition, WJ-MSCs were successfully differentiated into VSMCs with the proposed differentiation protocol. VSMCs successfully expressed ACTA2, MYH11, MYOCD, TGLN and SOX9. Immunofluorescence results indicated the expression of ACTA2 and MYH11 in VSMCs. In order to determine the functionality of VSMCs, hUAs were isolated and decellularized. Based on histological analysis, decellularized hUAs were free of any cellular or nuclear materials, while their extracellular matrix retained intact. Then, repopulation of decellularized hUAs with VSMCs was performed for 3 wk. Decellularized hUAs were repopulated efficiently by the VSMCs. Biochemical analysis revealed the increase of total hydroyproline and sGAG contents in repopulated hUAs with VSMCs. Specifically, total hydroxyproline and sGAG content after the 1<sup>st</sup>, 2<sup>nd</sup> and 3<sup>rd</sup> wk was 71 ± 10, 74 ± 9 and 86 ± 8 μg hydroxyproline/mg of dry tissue weight and 2 ± 1, 3 ± 1 and 3 ± 1 μg sGAG/mg of dry tissue weight, respectively. Statistically significant differences were observed between all study groups (P &lt; 0.05). VSMCs were successfully obtained from WJ-MSCs with the proposed differentiation protocol. Furthermore, hUAs were efficiently repopulated by VSMCs. Differentiated VSMCs from WJ-MSCs could provide an alternative source of cells for vascular tissue engineering."	"[Differentially expressed proteins in the penile tissue of rats with compound stress-induced ED after intervention with Yimusake Tablets: A bioinformatics analysis]. To search for specific protein makers and target proteins for intervention with Yimusake Tablets (YT) in the penile tissue of rats with ED induced by compound cold stress and explore the molecular mechanisms underlying the development and progression of ED. Eighty adult male rats were screened and divided into three groups, normal control (n = 10), ED model control (n = 15) and YT intervention (n = 15). The model of compound cold stress-induced ED was established in the latter two groups, and meanwhile the animals in the YT intervention group were treated with oral YT for 2 weeks. After that, proteins were extracted from the penile tissues of the rats for screening and identification by iTRAQ labeling combined with LC-MS-MS proteomics, and the IPA bioinformatics software was used for analysis of differentially expressed proteins. A total of 48 differentially expressed proteins were identified from the penile tissue of the ED model controls, of which 18 were associated with endothelial function, 5 with smooth muscle activity and 4 with inflammation, involving the biological processes of glucose metabolism and alcohol catabolism and the signaling pathways of glucose metabolism, calcium and RXR activation. In comparison, 29 differentially expressed proteins were identified from the rats in the YT intervention group, of which 5 were associated with endothelial function, 1 with smooth muscle activity and 4 with inflammation, involving the biological processes of glucose metabolism, vasodilation and acute-phase response and the signaling pathways glucose metabolism, RXR activation and acute-phase response. Seven ED-associated candidate biomarkers were obtained from the differentially expressed proteins in the ED model control and YT intervention group, including Collagen alpha-1(III) chain(COL3α1), Collagen alpha-1(I) chain(COL1α1), Collagen alpha-2(I) chain(COL1α2), Glyceraldehyde-3-phosphate dehydrogenase(GAPDH), T-kininogen 1(MAP1),Biglycan(BGN), and Myosin-11(MYH11). Changes of vascular endothelial and smooth muscle functions in the penile tissue are likely to be the key mechanisms underlying the development and progression of compound stress-induced ED, which is also associated with inflammation as well as the interaction of the identified differentially expressed proteins and their participation in the relevant signaling pathways. The 7 proteins obtained can be used as the markers of compound stress-induced ED in the rat penile tissue, of which MAP1, GAPDH, BGN and MYH11 may serve as target proteins for YT intervention."	"Cytogenetically masked CBFB-MYH11 fusion and concomitant TP53 deletion in a case of acute myeloid leukemia with a complex karyotype. NA"	"[Pathophysiological Study on Thoracic Ascending Aorta of Mice with Myh11 <sup>R247C</sup> Heterozygous Mutation in Norepinephrine-induced Hypertension Model]. To explore the thoracic ascending aortic (TAA) pathophysiological characteristics of heterozygous mutant Myh11 <sup>R247C/+</sup> mice under the norepinephrine-induced hypertension mode. Female heterozygous mutant Myh11 <sup>R247C/+</sup> and wild type Myh11 <sup>+/+</sup> mice were selected as experimental group (HET group) and control group (WT group),respectively. The hypertensive model was induced by intraperitoneal injection of norepinephrine (NE),and TAA diameter and invasive blood pressure (Bp) data were collected dynamically in real time using high-frequency ultrasound imaging and invasive arterial blood pressure monitoring technique,so as to indirectly analyze TAA compliance of two groups of mice. At the same time,the incidences of hemothorax and TAA rupture were further analyzed by autopsy and histology. After injection of NE,heterozygous mice did not show a higher Bp increase percentage in systole or diastole comparing with wildtype mice. However,heterozygous mice exhibited 17% and 32% higher TAA diameter dilation percentage than wildtype ones in systole and diastole respectively. Two heterozygous mice had TAA dissection and rupture,and the incidence of hemothorax in heterozygous mice (3/5) was higher than that in wildtype (0/5). It was very likely that the altered TAA wall compliance of mutant Myh11 <sup>R247C/+</sup> mice had led to a higher TAA dilation degree than that in wildtype,and even could be the potential reason of TAA dissection and rupture."	"miR-128-3p Is a Novel Regulator of Vascular Smooth Muscle Cell Phenotypic Switch and Vascular Diseases. MicroRNAs (miRNAs, miRs) are small noncoding RNAs that modulate gene expression by negatively regulating translation of target genes. Although the role of several miRNAs in vascular smooth muscle cells (VSMCs) has been extensively characterized, the function of miRNA-128-3p (miR-128) is still unknown. To determine if miR-128 modulates VSMC phenotype and to define the underlying mechanisms. We screened for miRNAs whose expression is modulated by an altered DNA methylation status in VSMCs, and among the hits, we selected miR-128. We found that miR-128 was expressed in various tissues, primary murine cells, and pathological murine and human vascular specimens. Through gain- and loss-of-function approaches, we determined that miR-128 affects VSMC proliferation, migration, differentiation, and contractility. The alterations of those properties were dependent upon epigenetic regulation of key VSMC differentiation genes; notably, Kruppel-like factor 4 was found to be a direct target of miR-128 and able to modulate the methylation status of the pivotal VSMC gene myosin heavy chain 11 (Myh11). Finally, in vivo lentiviral delivery of miR-128 prevented intimal hyperplasia in a mouse model of carotid restenosis without modifying vital cardiovascular parameters. miR-128 is a critical modulator of VSMCs and is regulated by epigenetic modifications upon stress. Its modulation in the context of disease could be exploited for therapeutic purposes."	"Detection of del(16q) using the CBFB-MYH11 translocation dual fusion probe. Del(16q) is an uncommon cytogenetic abnormality that can occur in different types of myeloid neoplasms. A small number of cases with del(16q) have been reported. Here, we report del(16q) in an adult patient with acute myelomonocytic leukemia (AMML). Examination of bone marrow aspirate smears and cytochemical stains, and flow cytometric immunophenotyping diagnosed the case as AMML. Fluorescence in situ hybridization for inv(16) was performed using the CBFB-MYH11 translocation dual fusion probe. Accidently, fluorescence in situ hybridization analysis revealed a loss of 16q22 in most of the examined interphase cells, indicating the presence of del(16q). The CBFB-MYH11 translocation dual fusion probe can be very helpful in detecting del(16q)."	"Measurable residual disease assessment by qPCR in peripheral blood is an informative tool for disease surveillance in childhood acute myeloid leukaemia. Serial assessments of measurable (or minimal) residual disease (MRD) by qPCR may identify nascent relapse in children with acute myeloid leukaemia (AML) and enable pre-emptive therapy. We investigated the kinetics and prognostic impact of recurrent fusion transcripts (RUNX1-RUNX1T1, CBFB-MYH11, KMT2A-MLLT3 or KMT2A-ELL) in 774 post-induction samples from bone marrow (BM, 347) and peripheral blood (PB, 427) from 75 children with AML. BM MRD persistence during consolidation did not increase the risk of relapse, and MRD at therapy completion did not correlate to outcome (HR = 0·64/MRD log reduction (CI: 0·32-1·26), P = 0·19). In contrast, 8/8 patients with detectable MRD in PB after first consolidation relapsed. Persistence (n = 4) and shifting from negative to positive (n = 10) in PB during follow-up predicted relapse in 14/14 patients. All 253 PB samples collected during follow-up from 36 patients in continuous complete remission were MRD negative. In core-binding factor AML, persistent low-level MRD positivity in BM during follow-up was frequent but an increment to above 5 × 10<sup>-4</sup> heralded subsequent haematological relapse in 12/12 patients. We demonstrate that MRD monitoring in PB after induction therapy is highly informative and propose an MRD increment above 5 × 10<sup>-4</sup> in PB and BM as a definition of molecular relapse since it always leads to haematological relapse."	"Identification of 2 Potential Core Genes for Influence of Gut Probiotics on Formation of Intracranial Aneurysms by Bioinformatics Analysis. BACKGROUND Rupture of intracranial aneurysms (IA) is associated with high rates of mortality around the world. Use of intestinal probiotics can regulate the pathophysiology of aneurysms, but the details of the mechanism involved have been unclear. MATERIAL AND METHODS The GEO2R analysis website was used to detect the DEGs between IAs, AAAs, samples after supplementation with probiotics, and normal samples. The online tool DAVID provides functional classification and annotation analyses of associated genes, including GO and KEGG pathway. PPI of these DEGs was analyzed based on the STRING database, followed by analysis using Cytoscape software. RESULTS We found 170 intersecting DEGs (contained in GSE75240 and more than 2 of the 4 aneurysms datasets), 5 intersecting DEGs (contained in all datasets) and 1 intersecting DEG (contained in GSE75240 and all IAs datasets). GO analysis results suggested that the DEGs primarily participate in signal transduction, cell adhesion, immune response, response to drug, extracellular matrix organization, cell-cell signaling, and inflammatory response in the BP terms, and the KEGG pathways are mainly enriched in focal adhesion, cytokine-cytokine receptor interaction, ECM-receptor interaction, amoebiasis, chemokine signaling pathway, proteoglycans, and PI3K-Akt signaling pathway in cancer pathways. Through PPI network analysis, we confirmed 2 candidates for further study: CAV1 and MYH11. These downregulated DEGs are associated with the formation of aneurysms, and the change of these DEGs is the opposite in probiotics-treated animals. CONCLUSIONS Our study suggests that MYH11 and CAV1 are potential target genes for prevention of aneurysms. Further experiments are needed to verify these findings."	"Significance of minimal residual disease monitoring by real-time quantitative polymerase chain reaction in core binding factor acute myeloid leukemia for transplantation outcomes. Despite the well-defined role of minimal residual disease (MRD) monitoring by real-time quantitative polymerase chain reaction (RT-PCR) for RUNX1/RUNX1T1 and CBFB-MYH11 transcripts in core binding factor (CBF) acute myeloid leukemia (AML) after intensive chemotherapy, there has been a paucity of data assessing the utility of MRD monitoring at and after allogeneic hematopoietic stem cell transplantation (HSCT). Patients with CBF AML who underwent HSCT in complete remission (first or second) from January 2007 through December 2018 were included in this analysis. MRD by polymerase chain reaction at HSCT was assessed in 50 of 76 patients, and 44 (88%) had evidence of MRD (MRDpos). MRDpos patients had 3-year overall survival (OS) and leukemia-free survival (LFS) rates of 69.3% and 66.3%, respectively. Six MRD-negative patients had 3-year OS and LFS rates of 100% and 100%, respectively. Thirty-five of the 70 evaluable patients (50%) had a day +100 MRD assessment by RT-PCR, and 14 (40%) were MRDpos. The presence of MRD by RT-PCR on day +100 was not associated with lower estimates of LFS (75% vs 82.2%; P = .3) but was associated with a higher relapse incidence, although the difference did not reach statistical significance (27.6% vs 9.7%; P = .2). Durable complete remissions can be achieved in patients with CBF AML with HSCT even if they are MRDpos by RT-PCR at HSCT. The clinical impact of frequent MRD monitoring for identifying a group at high risk for early relapse and then for determining the best time point for therapeutic interventions to prevent impending relapse warrants investigation in prospectively designed clinical trials."	"Predifferentiated Smooth Muscle-Like Adipose-Derived Stem Cells for Bladder Engineering.  Introduction:  All organs of human body are a conglomerate of various cell types with multidirectional interplay between the different cells and the surrounding microenvironment, leading to a stable tissue formation, homeostasis, and function. To develop a functional smooth muscle tissue, we need to simulate and create a multicellular microenvironment. The multilineage adipose-derived stem cells (ADSCs), which can be easily harvested in large numbers, may provide an alternative cell source for the replacement of smooth muscle cells (SMCs) in cell-based detrusor bioengineering therapeutic approaches. The aim of this study was to investigate whether predifferentiated smooth muscle-like ADSC (pADSC) can support SMCs to generate stable smooth muscle tissue through remodeling of extracellular matrix (ECM) and factor secretion.  Methods:  Rat SMC and pADSC were mono- and cocultured in the cell ratios 1:1, 1:2, 1:3, and 1:5 (SMC-pADSC) and grown for up to 2 weeks in vitro. The expression of the SMC-specific markers alpha-smooth muscle actin, calponin, myosin heavy chain 11 (MyH11), and smoothelin was assessed, and cell proliferation and contractility were analyzed. Proteomic analysis of the secretome (cell-cell contact was compared with a noncontact transwell 1:1 coculture) and the cell pellets was performed, with the focus on ECM deposition and remodeling, integrin expression and growth factor secretion.  Results:  SMC and pADSC were strongly positive for all smooth muscle markers. After 1 and 2 weeks of culture, the 1:1 cell ratio developed a significantly higher number of smooth muscle organoids and improved contractility. These organoids were highly structured, consisting of an SMC core surrounded by a pADSC layer. The deposition of various EMC proteins, such as collagens 1a1, 1a2, 2a1, 3a1, 5a2, 6a2, 12a1, and fibrillin 1, was significantly increased. A decreased matrix metalloproteinase 3 (MMP3), MMP9 and MMP13 secretion, as well as increased tissue inhibitors of metalloproteinase 1 (TIMP1) and TIMP2 secretion were found in the contact coculture compared with the monoculture controls.  Conclusion:  SMC-pADSC 1:1 cocultures exhibit an improved cell proliferation, contractility, and organoid formation compared with all other ratios and monoculture, while retaining a stable phenotype that is comparable with the SMC monoculture. These effects are mediated by increased ECM deposition and tight ECM remodeling by the secreted MMP and TIMP. Impact statement Harvesting smooth muscle cells (SMCs) from diseased bladders represents a significant limitation for clinical translation of bladder Tissue Engineering. Our results suggest that autologous predifferentiated smooth muscle-like adipose-derived stem cell can substitute SMCs, and may be used in combination with SMCs to generate contractile detrusor muscle tissue for patients suffering from end-stage bladder diseases. We demonstrate a beneficial effect when using these cells in a 1:1 ratio with improved deposition of extracellular matrix (ECM) molecules and superior remodeling of the ECM by matrix metalloproteinases and decreased tissue inhibitors of metalloproteinase activity."	"Combination of dasatinib with chemotherapy in previously untreated core binding factor acute myeloid leukemia: CALGB 10801. Acute myeloid leukemia (AML) with either t(8;21)(q22;q22) or inv(16)(p13q22)/t(16;16)(p13;q22) is referred to as core binding factor (CBF) AML. Although categorized as favorable risk, long-term survival for these patients is only ∼50% to 60%. Mutated (mut) or overexpressed KIT, a gene encoding a receptor tyrosine kinase, has been found almost exclusively in CBF AML and may increase the risk of disease relapse. We tested the safety and clinical activity of dasatinib, a multi-kinase inhibitor, in combination with chemotherapy. Sixty-one adult patients with AML and CBF fusion transcripts (RUNX1/RUNX1T1 or CBFB/MYH11) were enrolled on Cancer and Leukemia Group B (CALGB) 10801. Patients received cytarabine/daunorubicin induction on days 1 to 7 and oral dasatinib 100 mg/d on days 8 to 21. Upon achieving complete remission, patients received consolidation with high-dose cytarabine followed by dasatinib 100 mg/d on days 6 to 26 for 4 courses, followed by dasatinib 100 mg/d for 12 months. Fifteen (25%) patients were older (aged ≥60 years); 67% were CBFB/MYH11-positive, and 19% harbored KITmut. There were no unexpected or dose-limiting toxicities. Fifty-five (90%) patients achieved complete remission. With a median follow-up of 45 months, only 16% have relapsed. The 3-year disease-free survival and overall survival rates were 75% and 77% (79% and 85% for younger patients [aged &lt;60 years], and 60% and 51% for older patients). Patients with KITmut had comparable outcome to those with wild-type KIT (3-year rates: disease-free survival, 67% vs 75%; overall survival, 73% vs 76%), thereby raising the question of whether dasatinib may overcome the negative impact of these genetic lesions. CALGB 10801 was registered at www.clinicaltrials.gov as #NCT01238211."	"Intracranial Vessel Stenosis in a Young Patient with an MYH11 Mutation: A Case Report and Review of 2 Prior Cases. The MYH11 gene codes for smooth muscle myosin heavy chain, which has a critical function in maintaining vascular wall stability. Patients with this mutation most commonly have aortic and cardiac defects. Documented involvement of intracranial vessels is exceptional. A 29-year-old woman with a history of patent ductus arteriosus and aortic dissection was found to have incidental bilateral stenosis of the terminal internal carotid arteries as well as the proximal anterior cerebral arteries, middle cerebral arteries, and posterior cerebral arteries on magnetic resonance angiography that was obtained for unrelated symptoms. There was no evidence of basal collateral formation, and a generalized straightening of the vessels was observed. These angiographic findings have been typically observed in patients with ACTA2 mutations. Thus, genetic testing was pursued, which uncovered the presence of an MYH11 mutation. Follow-up imaging at 51 months demonstrated that the intracranial stenosis remained stable without evidence of basal collateral formation. She did not experience any neurologic events during the follow-up interval. Intracranial vessel involvement in patients with MYH11 mutations is rare. Vigilant cerebrovascular monitoring should be practiced in this population to guide appropriate management. Reporting of similar cases is important to improve understanding of the development of idiopathic intracranial stenosis in young individuals."	"An atlas of transposable element-derived alternative splicing in cancer. Transposable element (TE)-derived sequences comprise more than half of the human genome, and their presence has been documented to alter gene expression in a number of different ways, including the generation of alternatively spliced transcript isoforms. Alternative splicing has been associated with tumorigenesis for a number of different cancers. The objective of this study was to broadly characterize the role of human TEs in generating alternatively spliced transcript isoforms in cancer. To do so, we screened for the presence of TE-derived sequences co-located with alternative splice sites that are differentially used in normal versus cancer tissues. We analysed a comprehensive set of alternative splice variants characterized for 614 matched normal-tumour tissue pairs across 13 cancer types, resulting in the discovery of 4820 TE-generated alternative splice events distributed among 723 cancer-associated genes. Short interspersed nuclear elements (Alu) and long interspersed nuclear elements (L1) were found to contribute the majority of TE-generated alternative splice sites in cancer genes. A number of cancer-associated genes, including MYH11, WHSC1 and CANT1, were shown to have overexpressed TE-derived isoforms across a range of cancer types. TE-derived isoforms were also linked to cancer-specific fusion transcripts, suggesting a novel mechanism for the generation of transcriptome diversity via trans-splicing mediated by dispersed TE repeats. This article is part of a discussion meeting issue 'Crossroads between transposons and gene regulation'."	"Antagonistic relationship between the unfolded protein response and myocardin-driven transcription in smooth muscle. Smooth muscle cells (SMCs) are characterized by a high degree of phenotypic plasticity. Contractile differentiation is governed by myocardin-related transcription factors (MRTFs), in particular myocardin (MYOCD), and when their drive is lost, the cells become proliferative and synthetic with an expanded endoplasmic reticulum (ER). ER is responsible for assembly and folding of secreted proteins. When the load on the ER surpasses its capacity, three stress sensors (activating transcription factor 6 [ATF6], inositol-requiring enzyme 1α [IRE1α]/X-box binding protein 1 [XBP1], and PERK/ATF4) are activated to expand the ER and increase its folding capacity. This is referred to as the unfolded protein response (UPR). Here, we hypothesized that there is a reciprocal relationship between SMC differentiation and the UPR. Tight negative correlations between SMC markers (MYH11, MYOCD, KCNMB1, SYNPO2) and UPR markers (SDF2L1, CALR, MANF, PDIA4) were seen in microarray data sets from carotid arterial injury, partial bladder outlet obstruction, and bladder denervation, respectively. The UPR activators dithiothreitol (DTT) and tunicamycin (TN) activated the UPR and reduced MYOCD along with SMC markers in vitro. The IRE1α inhibitor 4μ8C counteracted the effect of DTT and TN on SMC markers and MYOCD expression. Transfection of active XBP1s was sufficient to reduce both MYOCD and the SMC markers. MRTFs also antagonized the UPR as indicated by reduced TN and DTT-mediated induction of CRELD2, MANF, PDIA4, and SDF2L1 following overexpression of MRTFs. The latter effect did not involve the newly identified MYOCD/SRF target MSRB3, or reduced production of either XBP1s or cleaved ATF6. The UPR thus counteracts SMC differentiation via the IRE1α/XBP1 arm of the UPR and MYOCD repression."	"The Cardiac Genome Clinic: implementing genome sequencing in pediatric heart disease. This study investigated the diagnostic utility of nontargeted genomic testing in patients with pediatric heart disease. We analyzed genome sequencing data of 111 families with cardiac lesions for rare, disease-associated variation. In 14 families (12.6%), we identified causative variants: seven were de novo (ANKRD11, KMT2D, NR2F2, POGZ, PTPN11, PURA, SALL1) and six were inherited from parents with no or subclinical heart phenotypes (FLT4, DNAH9, MYH11, NEXMIF, NIPBL, PTPN11). Outcome of the testing was associated with the presence of extracardiac features (p = 0.02), but not a positive family history for cardiac lesions (p = 0.67). We also report novel plausible gene-disease associations for tetralogy of Fallot/pulmonary stenosis (CDC42BPA, FGD5), hypoplastic left or right heart (SMARCC1, TLN2, TRPM4, VASP), congenitally corrected transposition of the great arteries (UBXN10), and early-onset cardiomyopathy (TPCN1). The identified candidate genes have critical functions in heart development, such as angiogenesis, mechanotransduction, regulation of heart size, chromatin remodeling, or ciliogenesis. This data set demonstrates the diagnostic and scientific value of genome sequencing in pediatric heart disease, anticipating its role as a first-tier diagnostic test. The genetic heterogeneity will necessitate large-scale genomic initiatives for delineating novel gene-disease associations."	"Zinc Inhibits HIF-Prolyl Hydroxylase Inhibitor-Aggravated VSMC Calcification Induced by High Phosphate. Vascular calcification is a life-threatening clinical condition in chronic kidney disease (CKD) and is associated with reduced zinc serum levels. Anemia is another frequent complication of CKD. Hypoxia-inducible factor (HIF) stabilizers, also known as HIF prolyl hydroxylase inhibitors (PHI), are promising candidates to treat CKD-associated anemia by increasing erythropoietin synthesis. Recent evidence suggests that HIFs play a pivotal role in vascular calcification. Our study explored feasible impacts of HIF PHI on phosphate (Pi)-induced calcification of vascular smooth muscle cells (VSMCs) and tested whether zinc might inhibit this mineralization process. Treatment of VSMCs with PHI aggravated Pi-induced calcium deposition and Pi uptake. PHI promoted Pi-induced loss of smooth muscle cell markers (ACTA-2, MYH11, SM22α) and enhanced osteochondrogenic gene expression (Msx-2, BMP-2, Sp7) triggering osteochondrogenic phenotypic switch of VSMCs. These effects of PHI paralleled with increased pyruvate dehydrogenase kinase 4 (PDK4) expression, decreased Runx2 Ser451 phosphorylation, and reduced cell viability. Zinc inhibited Pi-induced mineralization of VSMCs in a dose-dependent manner and also attenuated the pro-calcification effect of PHI in Pi-induced mineralization. Zinc inhibited osteochondrogenic phenotypic switch of VSMCs reflected by lowering Pi uptake, decreasing the expressions of Msx-2, BMP-2, and Sp7 as well as the loss of smooth muscle cell-specific markers. Zinc preserved phosphorylation state of Runx2 Ser451, decreased PDK4 level, and restored cell viability. PHI alone reduced the expression of smooth muscle markers without inducing mineralization, which was also inhibited by zinc. In addition, we observed a significantly lower serum zinc level in CKD as well as in patients undergoing carotid endarterectomy compared to healthy individuals. Conclusion - PHI promoted the loss of smooth muscle markers and augmented Pi-induced osteochondrogenic phenotypic switch leading to VSMCs calcification. This mineralization process was attenuated by zinc. Enhanced vascular calcification is a potential risk factor during PHI therapy in CKD which necessitates the strict follow up of vascular calcification and zinc supplementation."	"Protein-elongating mutations in MYH11 are implicated in a dominantly inherited smooth muscle dysmotility syndrome with severe esophageal, gastric, and intestinal disease. Gastrointestinal motility disorders include a spectrum of mild to severe clinical phenotypes that are caused by smooth muscle dysfunction. We investigated the genetic etiology of severe esophageal, gastric, and colonic dysmotility in two unrelated families with autosomal dominant disease presentation. Using exome sequencing, we identified a 2 base pair insertion at the end of the myosin heavy chain 11 (MYH11) gene in all affected members of Family 1 [NM_001040113:c.5819_5820insCA(p.Gln1941Asnfs*91)] and a 1 base pair deletion at the same genetic locus in Proband 2 [NM_001040113:c.5819del(p.Pro1940Hisfs*91)]. Both variants are predicted to result in a similarly elongated protein product. Heterozygous dominant negative MYH11 pathogenic variants have been associated with thoracic aortic aneurysm and dissection while biallelic null alleles have been associated with megacystis microcolon intestinal hypoperistalsis syndrome. This report highlights heterozygous protein-elongating MYH11 variants affecting the SM2 isoforms of MYH11 as a cause for severe gastrointestinal dysmotility, and we hypothesize that the mechanistic pathogenesis of this disease, dominant hypercontractile loss-of-function, is distinct from those implicated in other diseases involving MYH11 dysfunction."	"Congenital ductus arteriosus aneurysm in association with MYH11 mutation: a case report. Congenital ductus arteriosus aneurysms develop in the third trimester of fetal life, possibly due to abnormal intimal cushion formation or elastin expression in the ductal wall. It is often diagnosed in infants before 2 months of age. Most have a benign course and resolve spontaneously. However, life-threatening complications have been reported. We report a case of large ductal aneurysm diagnosed incidentally in a neonate, in whom there was a novel mutation in the smooth muscle myosin protein gene-MYH11."	"Prospective evaluation of prognostic impact of KIT mutations on acute myeloid leukemia with RUNX1-RUNX1T1 and CBFB-MYH11. The prognostic impact of KIT mutation on core-binding factor acute myeloid leukemia (CBF-AML) remains controversial. We registered 199 newly diagnosed de novo CBF-AML patients, aged 16 to 64 years, who achieved complete remission. They received 3 courses of high-dose cytarabine therapy and no further treatment until hematological relapse. Mutations in exons 8, 10-11, and 17 of the KIT gene were analyzed. Furthermore, we analyzed mutations in 56 genes that are frequently identified in myeloid malignancies and evaluated minimal residual disease (MRD). The primary end point was relapse-free survival (RFS) according to KIT mutations. The RFS in KIT-mutated patients was inferior to that in unmutated patients (hazard ratio, 1.92; 95% confidence interval, 1.23-3.00; P = .003). Based on subgroup analysis, KIT mutations had a prognostic impact in patients with RUNX1-RUNX1T1, but not in those with CBFB-MYH11, and only exon 17 mutation had a significant prognostic impact. Multivariate Cox regression analysis with stepwise selection revealed that the KIT exon 17 mutation and the presence of extramedullary tumors in patients with RUNX1-RUNX1T1, and loss of chromosome X or Y and NRAS mutation in patients with CBFB-MYH11 were poor prognostic factors for RFS. MRD was evaluated in 112 patients, and it was associated with a poorer RFS in the patients with CBFB-MYH11, but not in those with RUNX1-RUNX1T1. These results suggested that it is necessary to separately evaluate AML with RUNX1-RUNX1T1 or CBFB-MYH11 according to appropriate prognostic factors. This study was registered at www.umin.ac.jp/ctr/ as #UMIN000003434."	"The clinical mutatome of core binding factor leukemia. The fusion genes CBFB/MYH11 and RUNX1/RUNX1T1 block differentiation through disruption of the core binding factor (CBF) complex and are found in 10-15% of adult de novo acute myeloid leukemia (AML) cases. This AML subtype is associated with a favorable prognosis; however, nearly half of CBF-rearranged patients cannot be cured with chemotherapy. This divergent outcome might be due to additional mutations, whose spectrum and prognostic relevance remains hardly defined. Here, we identify nonsilent mutations, which may collaborate with CBF-rearrangements during leukemogenesis by targeted sequencing of 129 genes in 292 adult CBF leukemia patients, and thus provide a comprehensive overview of the mutational spectrum ('mutatome') in CBF leukemia. Thereby, we detected fundamental differences between CBFB/MYH11- and RUNX1/RUNX1T1-rearranged patients with ASXL2, JAK2, JAK3, RAD21, TET2, and ZBTB7A being strongly correlated with the latter subgroup. We found prognostic relevance of mutations in genes previously known to be AML-associated such as KIT, SMC1A, and DHX15 and identified novel, recurrent mutations in NFE2 (3%), MN1 (4%), HERC1 (3%), and ZFHX4 (5%). Furthermore, age &gt;60 years, nonprimary AML and loss of the Y-chromosomes are important predictors of survival. These findings are important for refinement of treatment stratification and development of targeted therapy approaches in CBF leukemia."	"Measurable residual disease monitoring provides insufficient lead-time to prevent morphologic relapse in the majority of patients with core-binding factor acute myeloid leukemia. Core-binding factor acute myeloid leukemia is characterized by t(8;21) or inv(16) and the fusion proteins RUNX1-RUNX1T1 and CBFB-MYH11. International guidelines recommend monitoring for measurable residual disease every 3 months for 2 years after treatment. However, it is unknown if serial molecular monitoring can predict and prevent morphologic relapse. We conducted a retrospective single-center study of 114 patients in complete remission who underwent molecular monitoring with RT-qPCR of RUNX1-RUNX1T1 or CBFB-MYH11 transcripts every 3 months. Morphologic relapse was defined as re-emergence of &gt;5% blasts and molecular relapse as ≥1 log increase in transcript level between 2 samples. Over a median follow-up time of 3.7 years (range 0.2-14.3), remission persisted in 71 (62.3%) patients but 43 (37.7%) developed molecular or morphologic relapse. Patients who achieved &lt;3 log reduction in RUNX1-RUNX1T1 or CBFB-MYH11 transcripts at end of chemotherapy had a significantly higher risk of relapse compared to patients who achieved ≥3 log reduction (61.1% vs. 33.7%, p=0.004). The majority of relapses (74.4%, n=32) were not predicted by molecular monitoring and occurred rapidly with &lt;100 days from molecular to morphologic relapse. Molecular monitoring enabled the detection of impending relapse and permitted pre-emptive intervention prior to morphologic relapse in only 11 (25.6%) patients. The current practice of molecular monitoring every 3 months provided insufficient lead-time to identify molecular relapses and prevent morphologic relapse in the majority of patients with core-binding factor acute myeloid leukemia treated at our institution. Further research is necessary to determine the optimal monitoring strategies for these patients."	"Understanding the histogenesis of a HRAS-PIK3R1 co-driven metastatic metaplastic breast carcinoma associated with squamous metaplasia of lactiferous ducts. Metaplastic breast carcinoma (MBC) represents a heterogeneous group of aggressive primary breast cancers that can show differentiation into carcinomatous and sarcomatous elements. Due to its rapid growth, this malignancy can replace precursor lesions, which remain unknown in most cases. Herein, we describe a MBC presenting as a deceptive post-biopsy hematoma. Histopathological and immunohistochemical evaluation of the primary tumor revealed a squamous cell carcinoma arising in a background of squamous metaplasia of lactiferous ducts (SMOLD). In the absence of ductal carcinoma in situ, we consider SMOLD as a nonobligatory precursor of MBC. The tumor showed 'dedifferentiation' into spindle, mucin-producing, osteoclast-like giant cell and fibromatosis-like carcinoma. Next-generation sequencing revealed the driver mutations HRAS<sup>Q61R</sup> and PIK3R1<sup>c.1738_1745+2del</sup> in addition to MYH11<sup>S638L</sup> and amplification of ERCC5 and FGF14, which were potential contributors to tumor phenotype. Tumor dedifferentiation was probably facilitated by epithelial-to-mesenchymal transition (EMT) with aberrant expression of platelet and endothelial adhesion molecule-1, leading to early metastasis via hematogenous route rather than lymphatic. The co-occurrence of phosphoinositide 3-kinase and mitogen-activated protein kinase pathway abnormalities along with EMT could mediate divergent growth in breast cancer."	"Assembly of vascular smooth muscle cells in 3D aggregates provokes cellular quiescence. Three-dimensional (3D) cell culture conditions are often used to promote the differentiation of human cells as a prerequisite for the study of organotypic functions and environment-specific cellular responses. Here, we assessed the molecular and functional phenotype of vascular smooth muscle cells (VSMCs) cultured as 3D multilayered aggregates. Microarray studies revealed that these conditions decrease the expression of genes associated with cell cycle control and DNA replication and cease proliferation of VSMCs. This was accompanied by a lower activity level of the mitogen-activated protein kinase ERK1/2 and an increase in autocrine TGFβ/SMAD2/3-mediated signaling - a determinant of VSMC differentiation. However, inhibition of TGFβ signaling did not affect markers of VSMC differentiation such as smooth muscle myosin heavy chain (MYH11) but stimulated pro-inflammatory NFκB-associated gene expression in the first place while decreasing the protein level of NFKB1/p105 and NFKB2/p100 - inhibitors of NFκB transcriptional activity. Moreover, loss of TGFβ signaling also revived VSMC proliferation in 3D aggregates. In conclusion, assembly of VSMCs in multilayered aggregates alters their transcriptome to translate the cellular organization into a resting phenotype. In this context, TGFβ signaling appears to attenuate cell growth and NFκB-controlled gene expression representing important aspects of VSMC quiescence."	"Pediatric Intestinal Pseudo-obstruction in the Era of Genetic Sequencing. The purpose of this review is to discuss current knowledge on pediatric intestinal pseudo-obstruction. We will also review new mutations that have been identified through advancement in genetic testing, allowing for a better understanding of the underlying mechanisms of intestinal dysmotility and potential etiologies. With the advancements in genetic testing, new mutations have been identified in the diagnosis of megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS), a disorder leading to pediatric pseudo-obstruction. MYLK, LMOD1, MYL9, and MYH11 encode for various proteins within smooth muscle cells; abnormalities within these proteins lead to abnormal intestinal smooth muscle contractions. Chronic intestinal pseudo-obstruction (CIPO) is defined by symptoms of bowel obstruction in the absence of a lumen-occluding lesion. CIPO is a heterogeneous group of disorders caused by abnormalities in the enteric neurons, intestinal smooth muscle, and/or the interstitial cells of Cajal (ICC). Symptoms can be non-specific and etiologies include both primary and secondary causes of CIPO that contribute to the delay in recognizing this condition and making the correct diagnosis. Chronic intestinal pseudo-obstruction has been recognized in both adults and children with fundamental differences in the etiology, symptom onset, clinical features and natural history of this disorder. For this reason, it has been considered a separate entity referred to as pediatric intestinal pseudo-obstruction (PIPO)."	"Myh11 Lineage Corneal Endothelial Cells and ASCs Populate Corneal Endothelium. To establish Myh11 as a marker of a subset of corneal endothelial cells (CECs), and to demonstrate the feasibility of restoring the corneal endothelium with Myh11-lineage (Myh11-Lin[+]) adipose-derived stromal cells (ASCs). Intraperitoneal administration of tamoxifen and (Z)-4-hydroxytamoxifen eyedrops were used to trace the lineage of Myh11-expressing cells with the Myh11-Cre-ERT2-flox-tdTomato mouse model. Immunostaining and Western blot characterized marker expression and spatial distribution of Myh11-Lin(+) cells in the cornea, and administration of 5-ethynyl-2'-deoxyuridine labeled proliferating cells. ASCs were isolated from epididymal adipose Myh11+ mural cells and treated with cornea differentiation media to evaluate corneal endothelial differentiation potential. Differentiated ASCs were injected into the anterior chamber to test for incorporation into corneal endothelium following scratch injury. A subset of CECs express Myh11, a marker previously thought restricted to only mural cells. Myh11-Lin(+) CECs marked a stable subpopulation of cells in the cornea endothelium. Myh11-Lin(+) ASCs undergo CEC differentiation in vitro and incorporate into injured corneal endothelium. Dystrophy and dysfunction of the corneal endothelium accounts for almost half of all corneal transplants, the maintenance of the cornea endothelium is poorly understood, and there are a lack of mouse models to study specific CEC populations. We establish a mouse model that can trace the cell fate of a subpopulation of CECs based on Myh11 expression. A subset of ASCs that share this Myh11 transcriptional lineage are capable of differentiating into CECs that can incorporate into injured corneal endothelium, revealing a potential cell source for creating engineered transplant material."	"Core Binding Factor Leukemia: Chromatin Remodeling Moves Towards Oncogenic Transcription. Acute myeloid leukemia (AML), the most common acute leukemia in adults, is a heterogeneous malignant clonal disorder arising from multipotent hematopoietic progenitor cells characterized by genetic and concerted epigenetic aberrations. Core binding factor-Leukemia (CBFL) is characterized by the recurrent reciprocal translocations t(8;21)(q22;q22) or inv(16)(p13;q22) that, expressing the distinctive RUNX1-RUNX1T1 (also known as Acute myeloid leukemia1-eight twenty-one, AML1-ETO or RUNX1/ETO) or CBFB-MYH11 (also known as CBFβ-ΣMMHX) translocation product respectively, disrupt the essential hematopoietic function of the CBF. In the past decade, remarkable progress has been achieved in understanding the structure, three-dimensional (3D) chromosomal topology, and disease-inducing genetic and epigenetic abnormalities of the fusion proteins that arise from disruption of the CBF subunit alpha and beta genes. Although CBFLs have a relatively good prognosis compared to other leukemia subtypes, 40-50% of patients still relapse, requiring intensive chemotherapy and allogenic hematopoietic cell transplantation (alloHCT). To provide a rationale for the CBFL-associated altered hematopoietic development, in this review, we summarize the current understanding on the various molecular mechanisms, including dysregulation of Wnt/β-catenin signaling as an early event that triggers the translocations, playing a pivotal role in the pathophysiology of CBFL. Translation of these findings into the clinical setting is just beginning by improvement in risk stratification, MRD assessment, and development of targeted therapies."	"The molecular effects of electrical stimulation on the muscle components of the urethra of female rats after trauma by vaginal distention. To evaluate the expression of genes and proteins related to the urethral muscles of female rats after trauma by vaginal distention (VD) and after electrical stimulation therapy (EST). We compared the urethras of four groups of 20 animals each: control without trauma (C), 7 (recent-trauma) and 30 days (late-trauma) post-VD, and VD-treated with EST. We evaluated the expression of myogenic regulatory factors MYOD1 and myogenin (MYOG); skeletal muscle myosin heavy chain 1, 2, and 3 (MYH1, MYH2, and MYH3); smooth muscle MYH11; and myosin light chain 9 (MYL9). We used real-time quantitative polymerase chain reaction, Western blot analysis, and immunohistochemistry. MYOD1 and MYOG genes were overexpressed in the recent-trauma group compared with the other groups (P &lt; .05). MYH1 and MYH3 genes were upregulated in the recent-trauma group compared with the control and EST groups (P &lt; .05). The MYH2 gene was overexpressed in the late-trauma group (P &lt; .05), while the MYH2 protein was significantly increased in the EST group compared with control, recent-trauma and late-trauma groups by 5-, 3-, and 2.7-fold change, respectively (P &lt; .05). MYL9 and MYH11 messenger RNA were overexpressed in both trauma groups compared with control and EST groups (P &lt; .05). MYH11 protein was not different among the study groups (P &gt; .05). EST enhances the recovery of the damaged urethral tissue of rats mainly by acting on the striated-muscle components. The MYH2 pathway underlies the positive effects of EST in the external urethral sphincter."	"Mature neutrophils with Auer rod bundles in CBFB-MYH11-positive acute myeloid leukemia. NA"	"Microarray profiling analysis and validation of novel long noncoding RNAs and mRNAs as potential biomarkers and their functions in atherosclerosis. Long noncoding (lnc)RNAs have been implicated in the development and progression of atherosclerosis. However, the expression and mechanism of action of lncRNAs in atherosclerosis are still unclear. We implemented microarray analysis in human advanced atherosclerotic plaques and normal arterial intimae to detect the lncRNA and mRNA expression profile. Gene Ontology functional enrichment and pathway analyses were applied to explore the potential functions and pathways involved in the pathogenesis of atherosclerosis. A total of 236 lncRNAs and 488 mRNAs were selected for further Ingenuity Pathway Analysis. Moreover, quantitative RT-PCR tests of most selected lncRNAs and mRNAs with high fold changes were consistent with the microarray data. We also performed ELISA to investigate the corresponding proteins levels of selected genes and showed that serum levels of SPP1, CD36, ATP6V0D2, CHI3L1, MYH11, and BDNF were differentially expressed in patients with coronary heart disease compared with healthy subjects. These proteins correlated with some biochemical parameters used in the diagnosis of cardiovascular diseases. Furthermore, receiver operating characteristic analysis showed a favorable diagnostic performance. The microarray profiling analysis and validation of differentially-expressed lncRNAs and mRNAs in atherosclerosis not only provide new insights into the pathogenesis of this disease but may also reveal new biomarkers for its diagnosis and treatment."	"Myeloid Sarcoma With CBFB-MYH11 Fusion (inv(16) or t(16;16)) Prevails in the Abdomen. Myeloid sarcoma with CBFB-MYH11 fusion may be enriched in abdominal sites. The clinicopathologic features of 11 cases are reported. We collected clinical features, morphology, immunophenotype, and bone marrow (BM) involvement of myeloid sarcoma cases with CBFB-MYH11 fusion. Eleven of 29 total myeloid sarcoma cases were CBFB-MYH11 positive and all 11 involved abdominal sites. The blastic infiltrate was associated with eosinophils in four of 11 cases and plasmacytoid dendritic cell (pDC) nodules in four of six cases. CD34, CD117, and myeloperoxidase were expressed in eight of nine, 10 of 10, and 10 of 10 cases, respectively. Ten of 10 cases showed no BM involvement. Our current series, combined with a literature review, identifies a compelling series of 31 (94%) of 33 cases of myeloid sarcoma with CBFB-MYH11 fusion showing a marked predilection for abdominal sites. In addition, the lack of obvious associated eosinophils, presence of pDC nodules, and lack of concurrent BM involvement suggest that &quot;myeloid sarcoma with CBFB-MYH11 fusion&quot; may represent a unique phenomenon."	"Matrine pre-treatment suppresses AGEs- induced HCSMCs fibrotic responses by regulating Poldip2/mTOR pathway. The fibrotic response of vascular smooth muscle cells (VSMCs) takes responsibilities in atherosclerosis. Advanced glycation end products (AGEs) induce and promote the fibrotic responses of VSMCs. Matrine shows potent anti-fibrotic and cardio-protective effects. This study was aimed to investigate the underlying mechanisms of matrine's inhibitory effects on AGEs-induced VSMCs fibrotic responses. Cultured human coronary smooth muscle cells (HCSMCs) were pre-treated with matrine and exposed to AGEs. Specific siRNA was used to silence polymerase delta interacting protein 2 (Poldip2) expression. Sircol collagen assay was used to assess collagen content. Protein expression and phosphorylation levels were determined by Western blotting. Matrine pre-treatment significantly reduced collagen content, increased smooth muscle myosin heavy chain 11 (MYH11) and Poldip2 expression, decreased expressions of collagen I, β1-integrin, phsphoinositide-3-kinase (PI3K) and nuclear phosphorylated p70S6k, and reduced phosphorylation levels of protein kinase B (Akt) and mechanistic target of rapamycin (mTOR) in HCSMCs exposed to AGEs in a concentration dependent manner. Specific siRNA effectively silenced Poldip2 expression and impaired matrine's effect on collagen content, expressions of MYH11, collagen I, β1-integrin, PI3K, nuclear p-p70S6k and phosphorylation levels of Akt and mTOR in HCSMCs exposed to AGEs. Matrine suppresses AGEs- induced fibrotic responses in HCSMCs via regulating Poldip2/mTOR signaling pathway."	"Gata2 deficiency delays leukemogenesis while contributing to aggressive leukemia phenotype in Cbfb-MYH11 knockin mice. Inversion of chromosome 16 (inv(16)) generates a fusion gene CBFB-MYH11, which is a driver mutation for acute myeloid leukemia (AML). Gene expression profiling suggests that Gata2, a hematopoietic transcription factor, is a top upregulated gene in preleukemic Cbfb-MYH11 knockin mice and is expressed in human inv(16) AML. On the other hand, we have also identified recurrent monoallelic deletions of GATA2 in relapsed human CBF-AML patients. To clarify the role of Gata2 in leukemogenesis by Cbfb-MYH11, we generated conditional Cbfb-MYH11 knockin mice with Gata2 heterozygous knockout. Gata2 heterozygous knockout reduced abnormal myeloid progenitors, which are capable of inducing leukemia in the Cbfb-MYH11 mice. Consequently, Cbfb-MYH11 mice with Gata2 heterozygous knockout developed leukemia with longer latencies than those with intact Gata2. Interestingly, leukemic cells with Gata2 heterozygous knockout gained higher number of mutations and showed more aggressive phenotype in both primary and transplanted mice. Moreover, leukemic cells with Gata2 heterozygous knockout showed higher repopulating capacity in competitive transplantation experiments. In summary, reduction of Gata2 activity affects mutational dynamics of leukemia with delayed leukemia onset in Cbfb-MYH11 knockin mice, but paradoxically results in a more aggressive leukemia phenotype, which may be correlated with leukemia relapse or poor prognosis in human patients."	"Patients aged less than 3 years with acute myeloid leukaemia characterize a molecularly and clinically distinct subgroup. Although infants (age &lt;1 year) with acute myeloid leukaemia (AML) have unique characteristics and are vulnerable to chemotherapy, children aged 1-2 years with AML may have characteristics similar to that of infants. Thus, we analysed 723 paediatric AML patients treated on the Japanese AML99 and AML-05 trials to identify characteristics of younger children. We identified patients aged &lt;3 years (the younger group) as a distinct subgroup. KMT2A-rearrangement (KMT2A-R), CBFA2T3-GLIS2, CBFB-MYH11 and NUP98-KDM5A were frequently found in the younger group. Prognostic analyses revealed poor 5-year overall survival (OS), event-free survival (EFS) and cumulative incidence of relapse (CIR) in patients with CBFA2T3-GLIS2 (42%, 17% and 83%, respectively) and those with NUP98-KDM5A (33%, 17% and 83%, respectively). Additionally, we identified KMT2A-R and CBFB-MYH11 as age-specific prognostic markers. Regarding KMT2A-R, the younger group had significantly better OS, EFS and CIR than the older group (aged 3 to &lt;18 years) (P = 0·023, 0·011 and &lt;0·001, respectively). Conversely, concerning CBFB-MYH11, the younger group had significantly poor EFS and CIR than the older group (each P &lt; 0·001), suggesting that certain molecular markers are linked to different prognoses according to age. Therefore, we characterized patients &lt;3 years as a distinct subgroup of paediatric AML."	"Next generation DNA sequencing of atypical choroid plexus papilloma of brain: Identification of novel mutations in a female patient by Ion Proton. Choroid plexus papilloma (CPP) is a rare benign tumor of the central nervous system that is usually confined to the cerebral ventricles. According to the World Health Organization, CPP corresponds to a grade I atypical CPP (a-CPP); however, it can become more aggressive and reach grade II, which can rarely undergo malignant transformation into a choroid plexus carcinoma (grade III). To the best of our knowledge, identification of these tumors mutations by next generation DNA sequencing (NGS) has not been yet reported. In the present study, NGS analysis of an a-CPP case was performed. Data were analyzed using Advaita Bioinformatics i-VariantGuide and Ion Reporter 5.6 programs. The results from NGS identified 12 novel missense mutations in the following genes: NOTCH1, ATM, STK36, MAGI1, DST, RECQL4, NUMA1, THBS1, MYH11, MALT1, SMARCA4 and CDH20. The PolyPhen score of six variants viz., DST, RECQL4, NUMA1, THBS1, MYHI1 and SMARCA4 were high, which suggested these variants represents pathogenic variants. Two novel insertions that caused frameshift were also found. Furthermore, two novel nonsense mutations and 14 novel intronic variants were identified in this tumor. The novel missense mutation detected in ATM gene was situated in c.5808A&gt;T; p. (Leu1936Phe) in exon 39, and a known ATM mutation was in c.5948A&gt;G; p. (Asn1983Ser). These novel mutations had not been reported in previous database. Subsequently, the quality statistics of these variants, including allele coverage, allele ratio, P-value, Phred quality score, sequencing coverage, PolyPhen score and alleles frequency was performed. For all variants, P-value was highly significant and the Phred quality score was high. In addition, the results from sequencing coverage demonstrated that 97.02% reads were on target and that 97.88% amplicons had at least 500 reads. These findings may serve at determining new strategies to distinguish the types of choroid plexus tumor, and at developing novel targeted therapies. Development of NGS technologies in the Kingdom of Saudi Arabia may be used in molecular pathology laboratories."	"Association of Intracranial Aneurysms With Aortic Aneurysms in 125 Patients With Fusiform and 4253 Patients With Saccular Intracranial Aneurysms and Their Family Members and Population Controls. Background Varying degrees of co-occurrence of intracranial aneurysms (IA) and aortic aneurysms (AA) have been reported. We sought to compare the risk for AA in fusiform intracranial aneurysms (fIA) and saccular intracranial aneurysms (sIA) disease and evaluate possible genetic connection between the fIA disease and AAs. Additionally, the characteristics and aneurysms of the fIA and sIA patients were compared. Methods and Results The Kuopio Intracranial Aneurysm Database includes all 4253 sIA and 125 fIA patients from its Eastern Finnish catchment population, and 13 009 matched population controls and 18 455 first-degree relatives to the IA patients were identified, and the Finnish national registers were used to identify the individuals with AA. A total of 33 fIA patients were studied using an exomic gene panel of 37 genes associated with AAs. Seventeen (14.4%) fIA patients and 48 (1.2%) sIA patients had a diagnosis of AA. Both fIA and sIA patients had AAs significantly more often than their controls (1.2% and 0.5%) or relatives (0.9% and 0.3%). In a competing risks Cox regression model, the presence of fIA was the strongest risk factor for AA (subdistribution hazard ratio 7.6, 95% CI 3.9-14.9, P&lt;0.0005). One likely pathogenic variant in COL5A2 and 3 variants of unknown significance were identified in MYH11, COL11A1, and FBN1 in 4 fIA patients. Conclusions The prevalence of AAs is increased slightly in sIA patients and significantly in fIA patients. fIA patients are older and have more comorbid diseases than sIA patients but this alone does not explain their clinically significant AA risk."	"Pathogenic effect of a TGFBR1 mutation in a family with Loeys-Dietz syndrome. Thoracic aortic aneurysms and dissections (TAAD) may have a heritable cause in up to 20% of cases. We aimed to investigate the pathogenic effect of a TGFBR1 mutation in relation to TAAD. Co-segregation analysis was performed followed by functional investigations, including myogenic transdifferentiation. The c.1043G&gt;A TGFBR1 mutation was found in the index patient, in a deceased brother, and in five presymptomatic family members. Evidence for pathogenicity was found by the predicted damaging effect of this mutation and the co-segregation in the family. Functional analysis with myogenic transdifferentiation of dermal fibroblasts to smooth muscle-like cells, revealed increased myogenic differentiation in patient cells with the TGFBR1 mutation, shown by a higher expression of myogenic markers ACTA2, MYH11 and CNN1 compared to cells from healthy controls. Our findings confirm the pathogenic effect of the TGFBR1 mutation in causing TAAD in Loeys-Dietz syndrome and show increased myogenic differentiation of patient fibroblasts."	"A New Variant in the MYH11 Gene in a Familial Case of Thoracic Aortic Aneurysm. MYH11 (myosin heavy chain 11) gene is involved in vascular contractility and several autosomal dominant mutations have been linked to thoracic aortic aneurysms. Three male members of the same family were found to carry a heterozygous missense variant in the MYH11 gene and all 3 individuals presented a thoracic aortic aneurysm/dilation. We identified a rare missense variant in the MYH11 gene predicted to be damaging and affecting a conserved amino acid in the myosin tail of the protein. This variant appears to be responsible for our familial case of thoracic aortic aneurysms, as the clinical expression reunited all features of genetic aneurysms."	"Exploring disease-specific methylated CpGs in human male genital abnormalities by using methylated-site display-amplified fragment length polymorphism (MSD-AFLP). The incidence of male reproductive system disorders, especially hypospadias, has been increasing in developed countries since the latter half of the 20th century. Endocrine-disrupting chemicals from the environment are considered to be involved in hypospadias onset through epigenetic alterations. This pilot study aimed to explore disease-specific methylated CpGs in human patient samples using the methylated-site display-amplified fragment length polymorphism (MSD-AFLP) technique developed by our research group [1]. We compared clinical samples from hypospadias and phimosis patients. Foreskin and blood samples were collected from one- to two-year-old patients with hypospadias (N = 3) and phimosis (N = 3) during surgical treatment. MSD-AFLP analysis showed significantly decreased CpG-methylation levels of genes such as MYH11 and increased CpG-methylation levels of genes such as PLA2G15 in hypospadias patients. Hierarchical clustering analysis showed that genes with significantly altered CpG levels were more markedly altered in DNA from blood than from foreskin. Because of the small number of samples, further investigation is necessary to elucidate the association between variations in CpG levels in foreskin and blood DNA and male genital abnormalities. However, our MSD-AFLP method appears to be a useful tool for exploring disease-specific methylated-CpGs in human epidemiological studies."	"Identification of the intermediate filament protein synemin/SYNM as a target of myocardin family coactivators. Myocardin (MYOCD) is a critical regulator of smooth muscle cell (SMC) differentiation, but its transcriptional targets remain to be exhaustively characterized, especially at the protein level. Here we leveraged human RNA and protein expression data to identify novel potential MYOCD targets. Using correlation analyses we found several targets that we could confirm at the protein level, including SORBS1, SLMAP, SYNM, and MCAM. We focused on SYNM, which encodes the intermediate filament protein synemin. SYNM rivalled smooth muscle myosin (MYH11) for SMC specificity and was controlled at the mRNA and protein levels by all myocardin-related transcription factors (MRTFs: MYOCD, MRTF-A/MKL1, and MRTF-B/MKL2). MRTF activity is regulated by the ratio of filamentous to globular actin, and SYNM was accordingly reduced by interventions that depolymerize actin, such as latrunculin treatment and overexpression of constitutively active cofilin. Many MRTF target genes depend on serum response factor (SRF), but SYNM lacked SRF-binding motifs in its proximal promoter, which was not directly regulated by MYOCD. Furthermore, SYNM resisted SRF silencing, yet the time course of induction closely paralleled that of the SRF-dependent target gene ACTA2. SYNM was repressed by the ternary complex factor (TCF) FLI1 and was increased in mouse embryonic fibroblasts lacking three classical TCFs (ELK1, ELK3, and ELK4). Imaging showed colocalization of SYNM with the intermediate filament proteins desmin and vimentin, and MRTF-A/MKL1 increased SYNM-containing intermediate filaments in SMCs. These studies identify SYNM as a novel SRF-independent target of myocardin that is abundantly expressed in all SMCs."	"Compound heterozygous variants in MYH11 underlie autosomal recessive megacystis-microcolon-intestinal hypoperistalsis syndrome in a Chinese family. Megacystis-microcolon-intestinal-hypoperistalsis syndrome (MMIHS) is a rare and severe disorder characterized by functional obstruction in the urinary and gastrointestinal tract. The molecular basis of this condition has been defined recently. Heterozygous variants in ACTG2, homozygous mutations in LMOD1, MYLK, and MYH9 were related to the pathogenesis of the syndrome, which encodes proteins involved in the process of smooth muscle contraction, supporting a myopathic basis for the disease. Recent studies have identified homozygous or compound heterozygous variants in MYH11 as a candidate gene of MMIHS. In this report, we described a nonconsanguineous Chinese family with three male fetuses affected with megacystis. Trio-targeted exome sequencing identified compound heterozygous variants, c.2051 G &gt; A (p.R684H) and c.3540_3541delinsTT (p.(E1180D, Q1181Ter)), in MYH11 (NM_001040114). The variants were inherited from the parents, respectively. Western blotting showed a marked decrease in MYH11 protein in the proband's umbilical cord tissue compared with the control sample. The study's results confirmed that MYH11 is a candidate gene for MMIHS with autosomal recessive (AR) inheritance and expanded the mutation spectrum for this clinical condition. Combining clinical phenotype with molecular diagnosis may enable the identification of candidate genes for potential monogenic diseases and facilitate accurate genetic counseling, informed decision-making, and prenatal diagnosis."	"BCR-ABL1- and CBFB-MYH11-positive chronic myeloid leukemia presenting with primary blast crisis and marrow fibrosis. NA"	"Identification of a dominant MYH11 causal variant in chronic intestinal pseudo-obstruction: Results of whole-exome sequencing. Chronic Intestinal Pseudo-Obstruction (CIPO) is a rare gastrointestinal disorder, which affects the smooth muscle contractions of the gastrointestinal tract. Dominant mutations in the smooth muscle actin gene, ACTG2, accounts for 44%-50% of CIPO patients. Other recessive or X-linked genes, including MYLK, LMOD1, RAD21, MYH11, MYL9, and FLNA were reported in single cases. In this study, we used Whole-Exome Sequencing (WES) to study 23 independent CIPO families including one extended family with 13 affected members. A dominantly inherited rare mutation, c.5819delC (p.Pro1940HisfsTer91), in the smooth muscle myosin gene, MYH11, was found in the extended family, shared by 7 affected family members but not by 3 unaffected family members with available DNA, suggesting a high probability of genetic linkage. Gene burden analysis indicates that additional genes, COL4A1, FBLN1 and HK2, may be associated with the disease. This study expanded our understanding of CIPO etiology and provided additional genetic evidence to physicians and genetic counselors for CIPO diagnosis."	"Data showing atherosclerosis-associated differentially methylated regions are often at enhancers. Atherosclerosis involves phenotypic modulation and transdifferentiation of vascular smooth muscle cells (SMCs). Data are given in tabular or figure format that illustrate genome-wide DNA methylation alterations in atherosclerotic vs. control aorta (athero DMRs). Data based upon publicly available chromatin state profiles are also shown for normal aorta, monocyte, and skeletal muscle tissue-specific DMRs and for aorta-specific chromatin features (enhancer chromatin, promoter chromatin, repressed chromatin, actively transcribed chromatin). Athero hypomethylated and hypermethylated DMRs as well as epigenetic and transcription profiles are described for the following genes: ACTA2, MYH10, MYH11 (SMC-associated genes); SMAD3 (a signaling gene for SMCs and other cell types); CD79B and SH3BP2 (leukocyte-associated genes); and TBX20 and genes in the HOXA, HOXB, HOXC, and HOXD clusters (T-box and homeobox developmental genes). The data reveal strong correlations between athero hypermethylated DMRs and regions of enhancer chromatin in aorta, which are discussed in the linked research article &quot;Atherosclerosis-associated differentially methylated regions can reflect the disease phenotype and are often at enhancers&quot; (M. Lacey et al., 2019)."	"Detection of a novel CBFB-MYH11 fusion transcript in acute myeloid leukemia M1 with inv(16)(p13q22). Acute myeloid leukemia (AML) with an inv(16)(p13q22) or t(16;16)(p13;q22) chromosomal abnormality represents one of the most common subtypes of de novo cases. These chromosomal rearrangements result in multiple CBFB-MYH11 fusion transcripts, with type-A being the most frequent. We here describe a unique case of de novo AML-M1, with inv(16)(p13q22), leading to an unusual CBFB-MYH11 fusion transcript, and der(7)t(7;11)(q31;q21). The fusion transcript involves a CBFB exon 5 with a breakpoint at nucleotide 754, an insertion of a 13-bp sequence of CBFB intron 5 at the fusion point, and the MYH11 exon 27 with a breakpoint at nucleotide 3464. To our knowledge, this CBFB-MYH11 fusion transcript has never been reported previously. The clinical characteristics of the present case are in line with previous reports suggesting that rare CBFB-MYH11 fusion transcripts lead to aberrant characteristics such as an atypical cytomorphology and additional cytogenetic abnormalities."	"[Characterization of mutational pattern of patients with core-binding factor acute myeloid leukemia]. To characterize the mutational profile of patients with core-binding factor acute myeloid leukemia (CBF-AML). A total of 81 acute myeloid leukemia patients were recruited, which included 36 cases of CBF-AML and 45 cases of cytogenetically normal acute myeloid leukemia (CN-AML) . Mutations of FLT3-ITD, FLT3-TKD, NPM1, c-KIT, NRAS, KRAS, TET2, IDH1/2, RUNX1, DNMT3A, GATA2, ASjXL1, TP53, PTPN11, JAK2V617F, SETBP1 and CEBPA genes were simultaneously detected by DNA-based PCR and Sanger sequencing. Over all, mutations were detected in 68 patients (83.9%), with the most common ones including double CEBPA mutations (n=17), followed by NPM1 (n=15), c-KIT (n=11), NRAS (n=10), TET2 (n=9), FLT3-TKD (n=9), FLT3-ITD (n=8), IDH1 (n=7), RUNX1 (n=7), KRAS (n=7), DNMT3A (n=6), IDH2 (n=4), and GATA2 (n=4) mutations. AML1-ETO and CBFβ-MYH11 fusions were present in 21 and 15 patients, respectively. Coexistence of ≥2 mutations was more common in CN-AML comparing with CBF-AML. The mutation rate of NPM1, FLT3-ITD, DNMT3A, IDH1 and CEBPA double mutations were higher in patients with CN-AML. NRAS, c-KIT and KRAS mutations were identified more frequently in patients with CBF-AML (P&lt;0.05). Based on the function, aberration of genes involved in DNA methylation, NPM1 proteins and transcription predominated in CN-AML, while tyrosine kinase receptor signaling and RAS pathways have predominated in CBF-AML. The genomic landscape of CBF-AML patients has differed from that of CN-AML patients. Synergy of fusion genes with particular mutations may impact the clinical phenotype and prognosis of patients."	"[Genetic abnormalities in AML]. Genetic abnormalities of acute myeloid leukemia (AML) include chromosomal translocations and gene mutations. Commonly observed chromosomal abnormalities in AML are t (8;21), t (15;17), inv (16), and 11q23-related translocations. These aberrations produce RUNX1-RUNX1T1, PML-RARA, CBF-MYH11, and MLL-fusion genes, respectively, which promote leukemic stem cell formation by interfering with hematopoietic differentiation and enhancing the self-renewal capacity of hematopoietic cells. Gene mutations recurrently occur in transcription factors, signaling molecules, tumor suppressor genes, epigenetic regulators, RNA splicing factors, and cohesion complexes, with FLT3, NPM1, and DNMT3A being the most frequently mutated genes in AML. Recent studies disclosed the biological function of mutated genes and their correlation with prognosis. Based on these findings, development of novel therapeutic drugs targeting mutated genes or dysregulated genetic pathways is underway."	"Genetic Profiles Related to Pathogenesis in Sporadic Intracranial Aneurysm Patients. Intracranial aneurysm (IA) represents a cerebrovascular disorder that featured by dilation or bulging of the weakened blood vessel wall. When it ruptures, an IA leads to subarachnoid hemorrhage with high disability and mortality rates. Despite the numerous studies focusing on IA ruptures, little research on IA pathogenesis has been reported. In this study, we aimed to reveal key genes related to IA formation. Four datasets from Gene Expression Omnibus data were downloaded, normalized, and separated into the IA group and the normal vessel control group for analyses. We screened for differentially expressed genes (DEGs) between groups and conducted functional enrichment, pathway enrichment, and gene set enrichment analysis analyses among significant DEGs. according to our analyses, significant DEGs majorly associate with smooth muscle system and the complement system. Among all DEGs, 5 down-regulated genes (MYH11, CNN1, MYOCD, ACTA1, and LMOD1) and 3 up-regulated genes (C1QB, C3AR1, and VSIG4) are most relevant in IA formation. Key DEGs identified in this study are related to IA pathogenesis. Among identified DEGs, LMOD1 is the most significant and merits more attention."	"Smooth muscle cell-specific TMEM16A deletion does not alter Ca2+ signaling, uterine contraction, gestation length, or litter size in mice†. Ion channels in myometrial cells play critical roles in spontaneous and agonist-induced uterine contraction during the menstrual cycle, pregnancy maintenance, and parturition; thus, identifying the genes of ion channels in these cells and determining their roles are essential to understanding the biology of reproduction. Previous studies with in vitro functional and pharmacological approaches have produced controversial results regarding the presence and role of TMEM16A Ca2+-activated Cl- channels in myometrial cells. To unambiguously determine the function of this channel in these cells, we employed a genetic approach by using smooth muscle cell-specific TMEM16A deletion (i.e. TMEM16ASMKO) mice. We found that myometrial cells from TMEM16ASMKO mice generated the same pattern and magnitude in Ca2+ signals upon stimulation with KCl, oxytocin, and PGF2α compared to the isogenic control myometrial cells. At the uterine tissue level, TMEM16A deletion also did not cause detectable changes in either spontaneous or agonist (i.e. KCl, oxytocin, and PGF2α)-induced contractions. Moreover, in vivo the TMEM16ASMKO mice gave birth at full term with the same litter size as genetically identical control mice. Finally, TMEM16A immunostaining in both control and TMEM16ASMKO mice revealed that this protein was highly expressed in the endometrial stroma, but did not co-localize with a smooth muscle specific marker MYH11. Collectively, these results unequivocally demonstrate that TMEM16A does not serve as a pacemaking channel for spontaneous uterine contraction, neither does it function as a depolarizing channel for agonist-evoked uterine contraction. Yet these two functions could underlie the normal gestation length and litter size in the TMEM16ASMKO mice."	"Identification and validation of key genes associated with non-small-cell lung cancer. Non-small-cell lung cancer (NSCLC) is one of the main causes of death induced by cancer globally. However, the molecular aberrations in NSCLC patients remain unclearly. In the present study, four messenger RNA microarray datasets (GSE18842, GSE40275, GSE43458, and GSE102287) were downloaded from the Gene Expression Omnibus (GEO) database. Differentially expressed genes (DEGs) between NSCLC tissues and adjacent lung tissues were obtained from GEO2R and the overlapping DEGs were identified. Moreover, functional and pathway enrichment were performed by Funrich, while the protein-protein interaction (PPI) network construction were obtained from STRING and hub genes were visualized and identified by Cytoscape software. Furthermore, validation, overall survival (OS) and tumor staging analysis of selected hub genes were performed by GEPIA. A total of 367 DEGs (95 upregulated and 272 downregulated) were obtained through gene integration analysis. The PPI network consisted of 94 nodes and 1036 edges in the upregulated DEGs and 272 nodes and 464 edges in the downregulated DEGs, respectively. The PPI network identified 46 upregulated and 27 downregulated hub genes among the DEGs, and six (such as CENPE, NCAPH, MYH11, LRRK2, HSD17B6, and A2M) of that have not been identified to be associated with NSCLC so far. Moreover, the expression differences of the mentioned hub genes were consistent with that in lung adenocarcinoma and lung squamous cell carcinoma in the TCGA database. Further analysis showed that all the six hub genes were associated with tumor staging except MYH11, while only the upregulated DEG CENPE was associated with the worse OS of patients with NSCLC. In conclusion, the current study showed that CENPE, NCAPH, MYH11, LRRK2, HSD17B6, and A2M might be the key genes contributed to tumorigenesis or tumor progression in NSCLC, further functional study is needed to explore the involved mechanisms."	"Nuclear Focal Adhesion Kinase Controls Vascular Smooth Muscle Cell Proliferation and Neointimal Hyperplasia Through GATA4-Mediated Cyclin D1 Transcription. Neointimal hyperplasia is characterized by excessive accumulation of vascular smooth muscle cells (SMCs) leading to occlusive disorders, such as atherosclerosis and stenosis. Blood vessel injury increases growth factor secretion and matrix synthesis, which promotes SMC proliferation and neointimal hyperplasia via FAK (focal adhesion kinase). To understand the mechanism of FAK action in SMC proliferation and neointimal hyperplasia. Using combined pharmacological FAK catalytic inhibition (VS-4718) and SMC-specific FAK kinase-dead (Myh11-Cre-ER<sup>T2</sup>) mouse models, we report that FAK regulates SMC proliferation and neointimal hyperplasia in part by governing GATA4- (GATA-binding protein 4) cyclin D1 signaling. Inhibition of FAK catalytic activity facilitates FAK nuclear localization, which is required for proteasome-mediated GATA4 degradation in the cytoplasm. Chromatin immunoprecipitation identified GATA4 binding to the mouse cyclin D1 promoter, and loss of GATA4-mediated cyclin D1 transcription diminished SMC proliferation. Stimulation with platelet-derived growth factor or serum activated FAK and redistributed FAK from the nucleus to cytoplasm, leading to concomitant increase in GATA4 protein and cyclin D1 expression. In a femoral artery wire injury model, increased neointimal hyperplasia was observed in parallel with elevated FAK activity, GATA4 and cyclin D1 expression following injury in control mice, but not in VS-4718-treated and SMC-specific FAK kinase-dead mice. Finally, lentiviral shGATA4 knockdown in the wire injury significantly reduced cyclin D1 expression, SMC proliferation, and neointimal hyperplasia compared with control mice. Nuclear enrichment of FAK by inhibition of FAK catalytic activity during vessel injury blocks SMC proliferation and neointimal hyperplasia through regulation of GATA4-mediated cyclin D1 transcription."	"A Human Pluripotent Stem Cell-Based Screen for Smooth Muscle Cell Differentiation and Maturation Identifies Inhibitors of Intimal Hyperplasia. Contractile to synthetic phenotypic switching of smooth muscle cells (SMCs) contributes to stenosis in vascular disease and vascular transplants. To generate more contractile SMCs, we performed a high-throughput differentiation screen using a MYH11-NLuc-tdTomato human embryonic stem cell reporter cell line. We identified RepSox as a factor that promotes differentiation of MYH11-positive cells by promoting NOTCH signaling. RepSox induces SMCs to exhibit a more contractile phenotype than SMCs generated using PDGF-BB and TGF-β1, two factors previously used for SMC differentiation but which also cause intimal hyperplasia. In addition, RepSox inhibited intimal hyperplasia caused by contractile to synthetic phenotypic switching of SMCs in a rat balloon injury model. Thus, in addition to providing more contractile SMCs that could prove useful for constructing artificial blood vessels, this study suggests a strategy for identifying drugs for inhibiting intimal hyperplasia that act by driving contractile differentiation rather than inhibiting proliferation non-specifically."	"16p13.11 microdeletion uncovers loss-of-function of a MYH11 missense variant in a patient with megacystis-microcolon-intestinal-hypoperistalsis syndrome. Megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS), a rare condition that affects smooth muscle cells, is caused by biallelic null alleles in MYH11. We report on a girl with MMIHS in addition to growth hormone deficiency, central hypothyroidism and a tonically dilated pupil with accommodation deficit. Sanger sequencing and arrayCGH uncovered the novel heterozygous missense variant c.379C&gt;T in MYH11 and a heterozygous 1.3 Mb deletion in 16q13.11 encompassing MYH11, respectively. Her mother carries the deletion, whereas her father is heterozygous for the c.379C&gt;T p.(Pro127Ser) change. Proline 127 is crucial for the formation of the Adenosine triphosphate binding pocket of the MYH11 motor domain and molecular modeling indicated that p.Pro127Ser alters nucleotide binding properties. Thus, the unusual and complex clinical presentation of the patient results from compound heterozygosity for a 16p13.11 microdeletion including the entire MYH11 gene and a loss-of-function missense variant on the remaining MYH11 allele. In conclusion, we recommend genetic testing both for MYH11 sequence alterations and copy number imbalances in individuals with MMIHS and smooth muscle cell-associated abnormalities in additional organs, that is, multisystemic smooth muscle dysfunction."	"ssExpression level of GAS6-mRNA influences the prognosis of acute myeloid leukemia patients with allogeneic hematopoietic stem cell transplantation. As high expression level of growth arrest-specific 6 (GAS6) had an adverse effect on prognosis in acute myeloid leukemia (AML) patients, it is interesting to reveal the relationship between GAS6-mRNA level and the survival condition of AML patients undergoing allogeneic hematopoietic stem cell transplantation (HSCT). We screened The Cancer Genome Atlas database and found 71 AML patients with GAS6-mRNA expression and received allo-HSCT treatments. We divided them into two groups based on the median expression of GAS6-mRNA. Patients with GAS6-mRNA<sup>high</sup> (n=36) seemed to have lower bone marrow (BM) blast (P=0.022), lower percentage of type M5 (P=0.034), lower percentage of inv(16)/CBFβ-MYH11 karyotype (P=0.020), and lower rate of good risk classification (P=0.005) than the group GAS6-mRNA<sup>low</sup> (n= 35). Higher expression level of GAS6-mRNA also brought higher RUNX1 mutations (P=0.003), MLL-PTD mutations (P=0.042), TP53 mutations (P=0.042), and lower NRAS/KRAS mutations (P=0.042). Univariate analyses showed that GAS6-mRNA was unfavorable for overall survival (OS) (P=0.044), as RUNX1 and WT1 also gave negative influences. Multivariate analyses confirmed that GAS6-mRNA cut down the event-free servival (EFS) and OS of AML patients with HSCT (P=0.029, P=0.025). Our study indicated that higher expression of GAS6-mRNA related with adverse effects in AML patients with HSCT treatment."	"Minimal inflammatory foci of unknown etiology may be a tentative sign of early stage inherited cardiomyopathy. Although relatively uncommon, pathologists may encounter minimal inflammatory foci in the absence of typical structural heart disease; however, the clinicopathological significance of minimal inflammatory foci, including correlation with sudden unexpected death, is unexplored. From 1072 serial autopsy subjects, cases with unexplained minimal inflammatory foci, the extent of which was under 1% of the whole examined ventricle, were extracted to exclude cases with borderline/focal myocarditis resulting from local, systemic infection, or autoimmune mechanisms. Immunohistochemistry and genetic analysis targeting viral genomes and heart disease-related genes using next generation sequencing were performed. We detected 10 cases with unexplained minimal inflammatory foci (five males, five females, aged 15-68 years). The cause and/or manner of death were sudden unexpected death (6 cases, 60%), sudden unexpected death with epilepsy (1 case, 10%), drowning in a hot bath (1 case, 10%), and suicide (2 cases, 20%). In none of these cases was pathogen-derived DNA or RNA detected. In 8 of the 10 cases (80%), 17 possible pathogenic genetic variants causative for arrhythmogenic right ventricular cardiomyopathy or dilated cardiomyopathy; DSP was the most frequently involved gene (three cases with two different variants), followed by LAMA4 and MYBPC3 (two cases, two variants for each gene), LDB3 (two cases, one variant), and the remaining 10 variants occurred in seven cases (DSC2, RYR2, SOS1, SCN5A, SGCD, LPL, PKP2, MYH11, GATA6, and DSG2). All mutations were missense mutations. DSP_Lys1581Glu and DSC2_p.Thr275Met were classified according to American College of Medical Genetics and Genomics consensus statement guidelines as pathogenic or likely pathogenic for arrhythmogenic cardiomyopathy in three patients (30%). The remaining 15 variants were classified as potentially pathogenic variants. Unexplained minimal inflammatory foci may be an early sign of inherited cardiomyopathy, and such cases might already have arrhythmogenic potential that can lead to sudden unexpected death. Detection of minimal inflammatory foci by careful pathological examination may indicate the value of conducting comprehensive genetic analysis, even if significant structural abnormalities are not evident."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"MicroRNA-134-5p Regulates Media Degeneration through Inhibiting VSMC Phenotypic Switch and Migration in Thoracic Aortic Dissection. Abnormal phenotypic switch, migration, and proliferation of vascular smooth muscle cells (VSMCs) are hallmarks for pathogenesis of thoracic aortic dissection (TAD). In the current study, we identified miR-134-5p as a critical regulator controlling human VSMC phenotypic switch and migration to investigate whether miR-134-5p affects human VSMC functions and development of TAD. Using miRNA microarray of aorta specimens from 12 TAD and 12 controls, we identified miR-134-5p, which was significantly downregulated in TAD tissues. With qPCR detection, we found that miR-134-5p was also evidently decreased in human AoSMCs. Ectopic expression of miR-134-5p obviously promoted VSMC differentiation and expression of contractile markers, such as α-SMA, SM22α, and MYH11. miR-134-5p potently inhibited PDGF-BB-induced VSMC phenotypic switch and migration. We further identified STAT5B and ITGB1 as downstream targets of miR-134-5p in human VSMCs and proved them to be mediators in VSMC phenotypic switch and progression of TAD. Finally, Ad-miR-134-5p obviously suppressed the aorta dilatation and vascular media degeneration by 39% in TAD mice after vascular injury induced by Ang II. Our findings revealed that miR-134-5p was a novel regulator in vascular remodeling and pathological progress of TAD via targeting STAT5B/ITGB1 expression. Targeting miR-134-5p or its downstream molecules in VSMCs might develop new avenues in clinical treatment of TAD."	"Analyses of MicroRNA and mRNA Expression Profiles Reveal the Crucial Interaction Networks and Pathways for Regulation of Chicken Breast Muscle Development. There is a lack of understanding surrounding the molecular mechanisms involved in the development of chicken skeletal muscle in the late postnatal stage, especially in the regulation of breast muscle development related genes, pathways, miRNAs and other factors. In this study, 12 cDNA libraries and 4 small RNA libraries were constructed from Gushi chicken breast muscle samples from 6, 14, 22, and 30 weeks. A total of 15,508 known transcripts, 25,718 novel transcripts, 388 known miRNAs and 31 novel miRNAs were identified by RNA-seq in breast muscle at the four developmental stages. Through correlation analysis of miRNA and mRNA expression profiles, it was found that 417, 370, 240, 1,418, 496, and 363 negatively correlated miRNA-mRNA pairs of W14 vs. W6, W22 vs. W6, W22 vs. W14, W30 vs. W6, W30 vs. W14, and W30 vs. W22 comparisons, respectively. Based on the annotation analysis of these miRNA-mRNA pairs, we constructed the miRNA-mRNA interaction network related to biological processes, such as muscle cell differentiation, striated muscle tissue development and skeletal muscle cell differentiation. The interaction networks for signaling pathways related to five KEGG pathways (the focal adhesion, ECM-receptor interaction, FoxO signaling, cell cycle, and p53 signaling pathways) and PPI networks were also constructed. We found that ANKRD1, EYA2, JSC, AGT, MYBPC3, MYH11, ACTC1, FHL2, RCAN1, FOS, EGR1, and FOXO3, PTEN, AKT1, GADD45, PLK1, CCNB2, CCNB3 and other genes were the key core nodes of these networks, most of which are targets of miRNAs. The FoxO signaling pathway was in the center of the five pathway-related networks. In the PPI network, there was a clear interaction among PLK1 and CDK1, CCNB2, CDK1, and GADD45B, and CDC45, ORC1 and MCM3 genes. These results increase the understanding for the molecular mechanisms of chicken breast muscle development, and also provide a basis for studying the interactions between genes and miRNAs, as well as the functions of the pathways involved in postnatal developmental regulation of chicken breast muscle."	"Measurable residual disease testing for personalized treatment of acute myeloid leukemia. This review summarizes - with the practicing hematologist in mind - the methods used to determine measurable residual disease (MRD) in everyday practice with some future perspectives, and the current knowledge about the prognostic impact of MRD on outcome in acute myeloid leukemia (AML), excluding acute promyelocytic leukemia. Possible implications for choice of MRD method, timing of MRD monitoring, and guidance of therapy are discussed in general and in some detail for certain types of leukemia with specific molecular markers to monitor, including core binding factor (CBF)-leukemias and NPM1-mutated leukemias."	"Familial Aortic Dissection in a Young Adult Caused by MYH11 Gene Mutation. NA"	"CBFβ-MYH11 interferes with megakaryocyte differentiation via modulating a gene program that includes GATA2 and KLF1. The inv(16) acute myeloid leukemia-associated CBFβ-MYH11 fusion is proposed to block normal myeloid differentiation, but whether this subtype of leukemia cells is poised for a unique cell lineage remains unclear. Here, we surveyed the functional consequences of CBFβ-MYH11 in primary inv(16) patient blasts, upon expression during hematopoietic differentiation in vitro and upon knockdown in cell lines by multi-omics profiling. Our results reveal that primary inv(16) AML cells share common transcriptomic signatures and epigenetic determiners with megakaryocytes and erythrocytes. Using in vitro differentiation systems, we reveal that CBFβ-MYH11 knockdown interferes with normal megakaryocyte maturation. Two pivotal regulators, GATA2 and KLF1, are identified to complementally occupy RUNX1-binding sites upon fusion protein knockdown, and overexpression of GATA2 partly induces a gene program involved in megakaryocyte-directed differentiation. Together, our findings suggest that in inv(16) leukemia, the CBFβ-MYH11 fusion inhibits primed megakaryopoiesis by attenuating expression of GATA2/KLF1 and interfering with a balanced transcriptional program involving these two factors."	"Perivascular cell-specific knockout of the stem cell pluripotency gene Oct4 inhibits angiogenesis. The stem cell pluripotency factor Oct4 serves a critical protective role during atherosclerotic plaque development by promoting smooth muscle cell (SMC) investment. Here, we show using Myh11-CreER<sup>T2</sup> lineage-tracing with inducible SMC and pericyte (SMC-P) knockout of Oct4 that Oct4 regulates perivascular cell migration and recruitment during angiogenesis. Knockout of Oct4 in perivascular cells significantly impairs perivascular cell migration, increases perivascular cell death, delays endothelial cell migration, and promotes vascular leakage following corneal angiogenic stimulus. Knockout of Oct4 in perivascular cells also impairs perfusion recovery and decreases angiogenesis following hindlimb ischemia. Transcriptomic analyses demonstrate that expression of the migratory gene Slit3 is reduced following loss of Oct4 in cultured SMCs, and in Oct4-deficient perivascular cells in ischemic hindlimb muscle. Together, these results provide evidence that Oct4 plays an essential role within perivascular cells in injury- and hypoxia-induced angiogenesis."	"HDAC1 Is a Required Cofactor of CBFβ-SMMHC and a Potential Therapeutic Target in Inversion 16 Acute Myeloid Leukemia. Acute myeloid leukemia (AML) is a neoplastic disease characterized by the uncontrolled proliferation and accumulation of immature myeloid cells. A common mutation in AML is the inversion of chromosome 16 [inv (16)], which generates a fusion between the genes for core binding factor beta (CBFB) and smooth muscle myosin heavy chain gene (MYH11), forming the oncogene CBFB-MYH11. The expressed protein, CBFβ-SMMHC, forms a heterodimer with the key hematopoietic transcription factor RUNX1. Although CBFβ-SMMHC was previously thought to dominantly repress RUNX1, recent work suggests that CBFβ-SMMHC functions together with RUNX1 to activate transcription of specific target genes. However, the mechanism of this activity or a requirement for additional cofactors is not known. Here, we show that the epigenetic regulator histone deacetylase 1 (HDAC1) forms a complex with CBFβ-SMMHC, colocalizes with RUNX1 and CBFβ-SMMHC on the promoters of known fusion protein target genes, and that Hdac1 is required for expression of these genes. These results imply that HDAC1 is an important component of the CBFβ-SMMHC transcriptional complex, and that leukemia cells expressing the fusion protein may be sensitive to treatment with HDAC1 inhibitors. Using a knock-in mouse model expressing CBFβ-SMMHC, we found that in vivo treatment with the HDAC1 inhibitor entinostat decreased leukemic burden, and induced differentiation and apoptosis of leukemia cells. Together, these results demonstrate that HDAC1 is an important cofactor of CBFβ-SMMHC and a potential therapeutic target in inv (16) AML. IMPLICATIONS: This report describes a novel role for HDAC1 as a cofactor for the leukemogenic fusion protein CBFβ-SMMHC and shows that inhibitors of HDAC1 effectively target leukemia cells expressing the fusion protein in vivo."	"The Incidence and Immunophenotypic and Genetic Features of JL1 Expressing Cells and the Therapeutic Potential of an Anti-JL1 Antibody in De Novo Pediatric Acute Leukemias. JL1 is a newly identified CD43 epitope that specifically recognizes leukemic cells. We analyzed the incidence of JL1 expression and compared the clinical, immunophenotypic, and genetic characteristics of de novo pediatric acute leukemia patients with respect to JL1 expression status to determine the therapeutic potential of an anti-JL1 antibody. Seventy-eight patients with pediatric acute leukemia (52 with ALL, 26 with AML) diagnosed between December 2014 and January 2016 were enrolled prospectively. Flow cytometry for JL1 expression was performed at diagnosis. Clinical, immunophenotypic, and genetic characteristics were compared with respect to JL1 expression status by the Student t-test/Mann-Whitney U test and chi-square test/Fisher's exact test. The incidence of JL1 expression was 76.9% and 84.6% in ALL and AML patients, respectively. ALL patients with JL1 expression showed higher CD10 and cytoplasmic IgM expressions than those without JL1 expression (P=0.022 and 0.003, respectively) and were associated with TCF3-PBX1 and KMT2A-MLLT1 translocations. AML patients with JL1 expression showed higher CD13 and lower CD65 and CD15 expressions than those without JL1 expression (P=0.013, 0.007, and 0.024, respectively) and were associated with RUNX1-RUNX1T1, PML-RARA, and CBFB-MYH11 translocations. The JL1 expression incidence did not differ between ALL and AML, and the JL1 expression status did not affect prognosis. Our findings support the potential therapeutic role of anti-JL1 monoclonal antibodies; JL1 expression was associated with specific immunophenotypes and genetic abnormalities. Future studies should examine the prognostic impact of JL1 expression in pediatric acute leukemias."	"Role of smooth muscle cell p53 in pulmonary arterial hypertension. Pulmonary arterial hypertension (PAH) is characterized by remodeling and narrowing of the pulmonary arteries, which lead to elevation of right ventricular pressure, heart failure, and death. Proliferation of pulmonary artery smooth muscle cells (PASMCs) is thought to be central to the pathogenesis of PAH, although the underlying mechanisms are still being explored. The protein p53 is involved in cell cycle coordination, DNA repair, apoptosis, and cellular senescence, but its role in pulmonary hypertension (PH) is not fully known. We developed a mouse model of hypoxia-induced pulmonary hypertension (PH) and found significant reduction of p53 expression in the lungs. Our in vitro experiments with metabolomic analyses and the Seahorse XF extracellular flux analyzer indicated that suppression of p53 expression in PASMCs led to upregulation of glycolysis and downregulation of mitochondrial respiration, suggesting a proliferative phenotype resembling that of cancer cells. It was previously shown that systemic genetic depletion of p53 in a murine PH model led to more severe lung manifestations. Lack of information about the role of cell-specific p53 signaling promoted us to investigate it in our mouse PH model with the inducible Cre-loxP system. We generated a mouse model with SMC-specific gain or loss of p53 function by crossing Myh11-Cre/ERT2 mice with floxed Mdm4 mice or floxed Trp53 mice. After these animals were exposed to hypoxia for 4 weeks, we conducted hemodynamic and echocardiographic studies. Surprisingly, the severity of PH was similar in both groups of mice and there were no differences between the genotypes. Our findings in these mice indicate that activation or suppression of p53 signaling in SMCs has a minor role in the pathogenesis of PH and suggest that p53 signaling in other cells (endothelial cells, immune cells, or fibroblasts) may be involved in the progression of this condition."	"Identification of Potential Key Genes and Pathways in Early-Onset Colorectal Cancer Through Bioinformatics Analysis. This study was designed to identify the potential key protein interaction networks, genes, and correlated pathways in early-onset colorectal cancer (CRC) via bioinformatics methods. We selected microarray data GSE4107 consisting 12 patient's colonic mucosa and 10 healthy control mucosa; initially, the GSE4107 were downloaded and analyzed using limma package to identify differentially expressed genes (DEGs). A total of 131 DEGs consisting of 108 upregulated genes and 23 downregulated genes of patients in early-onset CRC were selected by the criteria of adjusted P values &lt;.01 and |log2 fold change (FC)| ≥ 2. The gene ontology functional enrichment analysis and the Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were accomplished to view the biological process, cellular components, molecular function, and the KEGG pathways of DEGs. Finally, protein-protein interactions (PPIs) were constructed, and the hub protein module was identified. Genes such as ACTA2, ACTG2, MYH11, CALD1, MYL9, TPM2, and LMOD1 were strongly implicated in CRC. In summary, in this study, we indicated that molecular mechanisms were involved in muscle contraction and vascular smooth muscle contraction signaling pathway, which improve our understanding of CRC and could be used as new therapeutic targets for CRC."	"The identification of new biomarkers for bladder cancer: A study based on TCGA and GEO datasets. Bladder cancer (BC) is one of the most common neoplastic diseases worldwide. With the highest recurrence rate among all cancers, treatment of BC only improved a little in the last 30 years. Available biomarkers are not sensitive enough for the diagnosis of BC, whereas the standard diagnostic method, cystoscopy, is an invasive test and expensive. Hence, seeking new biomarkers of BC is urgent and challenging. With that order, we screened the overlapped differentially expressed genes (DEGs) of GSE13507 and TCGA BLCA datasets. Subsequent protein-protein interactions network analysis recognized the hub genes among these DEGs. Further functional analysis including Gene Ontology and KEGG pathway analysis and gene set enrichment analysis were processed to investigate the role of these genes and potential underlying mechanisms in BC. Kaplan-Meier analysis and Cox hazard ratio analysis were carried out to clarify the diagnostic and prognostic role of these genes. In conclusion, our present study demonstrated that ACTA2, CDC20, MYH11, TGFB3, TPM1, VIM, and DCN are all potential diagnostic biomarkers for BC. And may also be potential treatment targets for clinical implication in the future."	"Characterization of DNA Methylation Associated Gene Regulatory Networks During Stomach Cancer Progression. DNA methylation plays a critical role in tumorigenesis through regulating oncogene activation and tumor suppressor gene silencing. Although extensively analyzed, the implication of DNA methylation in gene regulatory network is less characterized. To address this issue, in this study we performed an integrative analysis on the alteration of DNA methylation patterns and the dynamics of gene regulatory network topology across distinct stages of stomach cancer. We found the global DNA methylation patterns in different stages are generally conserved, whereas some significantly differentially methylated genes were exclusively observed in the early stage of stomach cancer. Integrative analysis of DNA methylation and network topology alteration yielded several genes which have been reported to be involved in the progression of stomach cancer, such as IGF2, ERBB2, GSTP1, MYH11, TMEM59, and SST. Finally, we demonstrated that inhibition of SST promotes cell proliferation, suggesting that DNA methylation-associated SST suppression possibly contributes to the gastric cancer progression. Taken together, our study suggests the DNA methylation-associated regulatory network analysis could be used for identifying cancer-related genes. This strategy can facilitate the understanding of gene regulatory network in cancer biology and provide a new insight into the study of DNA methylation at system level."	"IL1RL1 is dynamically expressed on Cbfb-MYH11<sup>+</sup> leukemia stem cells and promotes cell survival. Acute myeloid leukemia (AML) is often characterized by the presence of specific, recurrent chromosomal abnormalities. One of the most common aberrations, inversion of chromosome 16 [inv(16)], generates the fusion oncogene CBFB-MYH11. Previously, we used a mouse knock-in model to show that Cbfb-MYH11 induces changes in gene expression and results in the accumulation of abnormal myeloid cells, a subset of which are enriched for leukemia stem cell (LSC) activity. One gene upregulated by Cbfb-MYH11 encodes the cytokine receptor IL1RL1 (ST2). IL1RL1 and its ligand IL-33 are known regulators of mature myeloid cells, but their roles in AML are not known. Here, we use Cbfb-MYH11 knock-in mice to show that IL1RL1 is expressed by cell populations with high LSC activity, and that the cell surface expression of IL1RL1 is dynamic, implying that the expression of IL1RL1 is not restricted to a specific stage of differentiation. We also show that treatment with IL-33 increased serial replating ability and expression of pro-survival proteins in vitro. Finally, we show that IL1RL1<sup>+</sup> cells can survive chemotherapy better than IL1RL1<sup>-</sup> cells in vivo. Collectively, our results indicate that IL1RL1 is dynamically expressed in Cbfb-MYH11<sup>+</sup> leukemia cells and promotes their survival."	"Randomized phase-II trial evaluating induction therapy with idarubicin and etoposide plus sequential or concurrent azacitidine and maintenance therapy with azacitidine. The aim of this randomized phase-II study was to evaluate the effect of substituting cytarabine by azacitidine in intensive induction therapy of patients with acute myeloid leukemia (AML). Patients were randomized to four induction schedules for two cycles: STANDARD (idarubicin, cytarabine, etoposide); and azacitidine given prior (PRIOR), concurrently (CONCURRENT), or after (AFTER) therapy with idarubicin and etoposide. Consolidation therapy consisted of allogeneic hematopoietic-cell transplantation or three courses of high-dose cytarabine followed by 2-year maintenance therapy with azacitidine in the azacitidine-arms. AML with CBFB-MYH11, RUNX1-RUNX1T1, mutated NPM1, and FLT3-ITD were excluded and accrued to genotype-specific trials. The primary end point was response to induction therapy. The statistical design was based on an optimal two-stage design applied for each arm separately. During the first stage, 104 patients (median age 62.6, range 18-82 years) were randomized; the study arms PRIOR and CONCURRENT were terminated early due to inefficacy. After randomization of 268 patients, all azacitidine-containing arms showed inferior response rates compared to STANDARD. Event-free and overall survival were significantly inferior in the azacitidine-containing arms compared to the standard arm (p &lt; 0.001 and p = 0.03, respectively). The data from this trial do not support the substitution of cytarabine by azacitidine in intensive induction therapy."	"Promoters to Study Vascular Smooth Muscle. Smooth muscle cells (SMCs) are a critical component of blood vessel walls that provide structural support, regulate vascular tone, and allow for vascular remodeling. These cells also exhibit a remarkable plasticity that contributes to vascular growth and repair but also to cardiovascular pathologies, including atherosclerosis, intimal hyperplasia and restenosis, aneurysm, and transplant vasculopathy. Mouse models have been an important tool for the study of SMC functions. The development of smooth muscle-expressing Cre-driver lines has allowed for exciting discoveries, including recent advances revealing the diversity of phenotypes derived from mature SMC transdifferentiation in vivo using inducible CreER <sup>T2</sup> lines. We review SMC-targeting Cre lines driven by the Myh11, Tagln, and Acta2 promoters, including important technical considerations associated with these models. Limitations that can complicate study of the vasculature include expression in visceral SMCs leading to confounding phenotypes, and expression in multiple nonsmooth muscle cell types, such as Acta2-Cre expression in myofibroblasts. Notably, the frequently employed Tagln/ SM22α- Cre driver expresses in the embryonic heart but can also confer expression in nonmuscular cells including perivascular adipocytes and their precursors, myeloid cells, and platelets, with important implications for interpretation of cardiovascular phenotypes. With new Cre-driver lines under development and the increasing use of fate mapping methods, we are entering an exciting new era in SMC research."	"Molecular profiling of adult acute myeloid and lymphoid leukemia in a major referral center in Lebanon: a 10-year experience report and review of the literature. Recurrent genetic abnormalities confer distinct morphologic features and play a role in determining the clinical behavior, prognosis and adequate treatment of acute leukemia. In the MENA region, only one study targets the frequency of genetic modifications in AML, reporting a higher occurrence of acute promyelocytic leukemia in Lebanon. Determining the frequency of translocations and gene mutations in acute myeloid and lymphoid leukemia cases in an adult patients' population in Lebanon and comparing the resultant genetic profile with the published international molecular profile of adult acute leukemia. Laboratory results of adult patients diagnosed with AML or ALL presenting to AUBMC for genetic profiling between years 2006 until June 2016 were reviewed. Genetic profiling of AML cases in our CAP accredited molecular diagnostics laboratory consists of a validated lab developed RT-PCR for the detection of RUNX1/RUNX1T1, CBFB/MYH11, KMT2A/MLLT3, PML-RARA, and BCR-ABL and mutations in the FLT3 receptor, NPM1, c-kit and CEPBA genes. The ALL panel tests for the presence of BCR-ABL1, ETV6/RUNX1; KMT2A/AFF1, and TCF3-PBX1. We reviewed 580 AML and 175 ALL cases. In the AML cohort, the M:F ratio was 1.3:1 with a mean age of 50 years. t(15;17) was present in 7.6%, t(8;21) in 4.2%, inv(16) in 3.7%, t(9;22) in 2.2% and t(9;11) in 1.7% of cases. FLT3 mutation (ITD or TKD) was present in 25.2% of all cases and 30.1% of Cytogenetics-normal (CN) patients. Mutations of the NPM1 gene was present in 31.4% of AML cases and in 43.8% of CN patients. Double positive (NPM1+/FLT3+) cases accounted for 20% of NK patients. CEBPA and c-kit mutations were detected in 7.3% and 2.4% respectively. In the ALL cohort, the mean age was 37 years. B- and T-lymphoblastic leukemia constituted 84.6% and 15.4% of ALL cases and the M:F ratio was 1.2:1 and 2.86:1 respectively. B-ALL patients were positive for t(9;22) in 14.2%, t(4;11) in 5.4%, t(1;19) in 2.7% and t(12;21) in 1.4%. T-ALL patients were negative for translocations found in our ALL panel. A lower mean age was found in our adult leukemic Lebanese population as compared to the Western cases. Other interesting findings were the lower percentage of inv(16), lower incidence of TCF3-PBX1, and the mild increase in Philadelphia positivity in our AML cohort. In our ALL cohort, t(9;22) positivity was less than expected for adult lymphoblastic leukemia. Full molecular profiling by next generation sequencing is required for further classification of cases into prognostic categories. This study will be a baseline reference for future research and epidemiological data useful for transplant centers and oncologists both in Lebanon and the region."	"Defective NOTCH signalling drives smooth muscle cell death and differentiation in bicuspid aortic valve aortopathy. Bicuspid aortic valve disease is common and is associated with ascending aortic aneurysms. Vascular smooth muscle cell (VSMC) apoptosis is characteristic of the ascending aorta of bicuspid patients, and NOTCH1 gene mutations have also been linked to the disease. NOTCH signalling is a fundamental cell signalling pathway, which dictates cell fate decisions including apoptosis. Our objective was to elucidate the role of NOTCH signalling in VSMC apoptosis and differentiation in bicuspid aortopathy. Ascending aortic biopsies were obtained from 19 bicuspid and 12 tricuspid aortic valve patients and were sub-classified into 4 groups according to the maximum ascending aortic diameter (aneurysmal ≥45 mm). Apoptotic VSMCs were counted by light microscopy using a TUNEL assay. Gene expression of key regulators of NOTCH signalling (NOTCH1 and HES1), apoptosis (BAX and BCL-2) and VSMC differentiation (MYH11, CNN1 and MYH10) were quantified using quantitative real-time PCR. Primary VSMCs were cultured from 2 tricuspid aortic valve and 2 bicuspid aortic valve patients, NOTCH signalling was inhibited with N-[N-(3,5-Difluorophenacetyl)-l-alanyl]-S-phenylglycine t-butyl ester, and the gene expression was again quantified. The apoptotic cell count was significantly higher in bicuspid aortic valve patients (3.2 cells/50 000 μm2 vs 1.1 cells/50 000 μm2; P = 0.033). There was a trend towards lower apoptotic cell count in the aneurysmal versus non-aneurysmal tricuspid and bicuspid groups and an increased ratio of proapoptotic gene expression, which was not statistically significant. This was associated with a 2.8-fold increase in contractile gene expression (P = 0.026) and a 2.0-fold increase in NOTCH signalling gene expression in bicuspid versus tricuspid aortic valve patients (P = 0.022). NOTCH inhibition in cultured VSMCs induced a similar pattern of increased proapoptotic and procontractile gene expressions. This preliminary study suggests that NOTCH activation in the non-aneurysmal bicuspid aortas may underlie aortopathy by influencing VSMC apoptosis and differentiation. NOTCH signalling manipulation may provide a therapeutic target for preventing aneurysms in bicuspid patients. Further studies with larger sample sizes are needed to substantiate the present findings."	"Next-generation sequencing of 32 genes associated with hereditary aortopathies and related disorders of connective tissue in a cohort of 199 patients. Heritable factors play an important etiologic role in connective tissue disorders (CTD) with vascular involvement, and a genetic diagnosis is getting increasingly important for gene-tailored, personalized patient management. We analyzed 32 disease-associated genes by using targeted next-generation sequencing and exome sequencing in a clinically relevant cohort of 199 individuals. We classified and refined sequence variants according to their likelihood for pathogenicity. We identified 1 pathogenic variant (PV; in FBN1 or SMAD3) in 15 patients (7.5%) and ≥1 likely pathogenic variant (LPV; in COL3A1, FBN1, FBN2, LOX, MYH11, SMAD3, TGFBR1, or TGFBR2) in 19 individuals (9.6%), together resulting in 17.1% diagnostic yield. Thirteen PV/LPV were novel. Of PV/LPV-negative patients 47 (23.6%) showed ≥1 variant of uncertain significance (VUS). Twenty-five patients had concomitant variants. In-depth evaluation of reported/calculated variant classes resulted in reclassification of 19.8% of variants. Variant classification and refinement are essential for shaping mutational spectra of disease genes, thereby improving clinical sensitivity. Obligate stringent multigene analysis is a powerful tool for identifying genetic causes of clinically related CTDs. Nonetheless, the relatively high rate of PV/LPV/VUS-negative patients underscores the existence of yet unknown disease loci and/or oligogenic/polygenic inheritance."	"HDAC9 complex inhibition improves smooth muscle-dependent stenotic vascular disease. Patients with heterozygous missense mutations in the ACTA2 or MYH11 gene are known to exhibit thoracic aortic aneurysm and a risk of early-onset aortic dissection. However, less common phenotypes involving arterial obstruction are also observed, including coronary and cerebrovascular stenotic disease. Herein we implicate the HDAC9 complex in transcriptional silencing of contractile protein-associated genes, known to undergo downregulation in stenotic lesions. Furthermore, neointimal formation was inhibited in HDAC9- or MALAT1-deficient mice with preservation of contractile protein expression. Pharmacologic targeting of the HDAC9 complex through either MALAT1 antisense oligonucleotides or inhibition of the methyltransferase EZH2 (catalytic mediator recruited by the HDAC9 complex) reduced neointimal formation. In conclusion, we report the implication of the HDAC9 complex in stenotic disease and demonstrate that pharmacologic therapy targeting epigenetic complexes can ameliorate arterial obstruction in an experimental system."	"Synchronous Diagnosis of De Novo Acute Myeloid Leukemia with inv(16)(p13q22) and Chronic Lymphocytic Leukemia: A Case Report and Review of the Literature. The occurrence of de novo acute myeloid leukemia (AML) with chronic lymphocytic leukemia (CLL) is rare. Most cases of hematologic malignancies such as AML occurring in patients with pre-existing CLL are therapy-related. In this report, we describe a 65-year-old male with no past history of a hematolymphoid malignancy, who presented with abdominal pain. He was evaluated for acute diverticulitis, and incidentally found to have 14% circulating blasts upon peripheral blood smear review for anemia and thrombocytopenia. Bone marrow biopsy revealed 30-40% blasts and lymphoid aggregates. In conjunction with cytogenetics studies, a diagnosis of de novo AML with inv(16)(p13q22) CBFB-MYH11, trisomy 8, monosomy 18, and concurrent CLL with trisomy 12 was made. Serial FISH studies were used to demonstrate that the nuclei with (CBFB-MYH11) fusion did not have trisomy 12 and it was concluded that AML and CLL cells arose from separate clones. He died 3 weeks following presentation from complications of diverticulitis. To our knowledge, this is the second reported case of de novo AML with inv(16) and CLL."	"Duplication of a Single myhz1.1 Gene Facilitated the Ability of Goldfish (Carassius auratus) to Alter Fast Muscle Contractile Properties With Seasonal Temperature Change. Seasonal temperature changes markedly effect the swimming performance of some cyprinid fish acutely tested at different temperatures, involving a restructuring of skeletal muscle phenotype including changes in contractile properties and myosin heavy chain expression. We analyzed the transcriptome of fast myotomal muscle from goldfish (Carassius auratus L.) acclimated to either 8 or 25°C for 4 weeks (12 h light: 12 h dark) and identified 10 myosin heavy chains (myh) and 13 myosin light chain (myl) transcripts. Goldfish orthologs were classified based on zebrafish nomenclature as myhz1.1α, myhz1.1β, myhz1.1γ, myha, myhb, embryo_myh1, myh9b, smyh2, symh3, and myh11 (myosin heavy chains) and myl1a, myl1b, myl2, myl9a, myl9b, myl3, myl13, myl6, myl12.1a, myl12.1b, myl12.2a, myl12.2b, and myl10 (myosin light chains). The most abundantly expressed transcripts myhz1.1α, myhz1.1β, myhz1.1γ, myha, myl1a, myl1b, myl2, and myl3) were further investigated in fast skeletal muscle of goldfish acclimated to either 4, 8, 15, or 30°C for 12 weeks (12 h light:12 h dark). Total copy number for the myosin heavy chains showed a distinct optimum at 15°C (P &lt; 0.01). Together myhz1.1α and myhz1.1β comprised 90 to 97% of myhc transcripts below 15°C, but only 62% at 30°C. Whereas myhz1.1α and myhz1.1β were equally abundant at 4 and 8°C, myhz1.1β transcripts were 17 and 12 times higher than myhz1.1α at 15 and 30°C, respectively, (P &lt; 0.01). Myhz1.1γ expression was at least nine-fold higher at 30°C than at cooler temperatures (P &lt; 0.01). In contrast, the expression of myha and myosin light chains showed no consistent pattern with acclimation temperature. A phylogenetic analysis indicated that the previously reported ability of goldfish and common carp to alter contractile properties and myofibrillar ATPase activity with temperature acclimation was related to the duplication of a single myhz1.1 fast muscle myosin heavy chain found in basal cyprinids such as the zebrafish (Danio rerio)."	"Atherosclerosis-associated differentially methylated regions can reflect the disease phenotype and are often at enhancers. Atherosclerosis is a widespread and complicated disease involving phenotypic modulation and transdifferentiation of vascular smooth muscle cells (SMCs), the predominant cells in aorta, as well as changes in endothelial cells and infiltrating monocytes. Alterations in DNA methylation are likely to play central roles in these phenotypic changes, just as they do in normal differentiation and cancer. We examined genome-wide DNA methylation changes in atherosclerotic aorta using more stringent criteria for differentially methylated regions (DMRs) than in previous studies and compared these DMRs to tissue-specific epigenetic features. We found that disease-linked hypermethylated DMRs account for 85% of the total atherosclerosis-associated DMRs and often overlap aorta-associated enhancer chromatin. These hypermethylated DMRs were associated with functionally different sets of genes compared to atherosclerosis-linked hypomethylated DMRs. The extent and nature of the DMRs could not be explained as direct effects of monocyte/macrophage infiltration. Among the known atherosclerosis- and contractile SMC-related genes that exhibited hypermethylated DMRs at aorta enhancer chromatin were ACTA2 (aorta α2 smooth muscle actin), ELN (elastin), MYOCD (myocardin), C9orf3 (miR-23b and miR-27b host gene), and MYH11 (smooth muscle myosin). Our analyses also suggest a role in atherosclerosis for developmental transcription factor genes having little or no previous association with atherosclerosis, such as NR2F2 (COUP-TFII) and TBX18. We provide evidence for atherosclerosis-linked DNA methylation changes in aorta SMCs that might help minimize or reverse the standard contractile character of many of these cells by down-modulating aorta SMC-related enhancers, thereby facilitating pro-atherosclerotic phenotypic changes in many SMCs."	"Novel variants in the ACTA2 and MYH11 genes in a Cypriot family with thoracic aortic aneurysms: a case report. Thoracic aortic aneurysm (TAA) and/or thoracic aortic aneurysm and dissection (TAAD) is characterized by a considerable risk of morbidity and mortality of affected individuals. It is inherited in an autosomal dominant pattern and the 20% of patients with non-syndromic TAA have a positive family history. To date, the genetic basis of Cypriot patients with TAA has not been investigated. The purpose of this case report is to determine underlying genetic cause in this Cypriot family with TAA. In this report we present a patient with hyper-acute onset chest and back pain diagnosed with Type A Aortic Dissection with severe aortic valve regurgitation, who underwent emergency aortic surgery and Bentall procedure. Further investigation of the patient's family was undertaken where both parents and an additional child were also found to be affected. A targeted sequencing panel including genes with known association to TAA was used to identify causative mutations in the index patient. Massively Parallel Sequencing results identified a frameshift deletion c.363_367del GAGTC, p.Met121Ilefs*5 in the ACTA2 gene and a non-synonymous variant c.3234C &gt; G, p.Ile1078Met in the MYH11 gene. The presence or absence of these variants in the index patient and other family members was verified by Sanger sequencing. To our knowledge, this is the first report of a Cypriot family case diagnosed with TAA presented by two novel variants one in the ACTA2 and the other in the MYH11 genes. We describe two novel variants in a Cypriot family with TAA that are potentially pathogenic, highlighting the importance of molecular genetic evaluation in families with TAA. These results may prove useful for screening purposes in Cypriot patients with non-syndromic familial TAA facilitating early identification of atrisk family members and direct intervention."	"Liraglutide inhibited AGEs induced coronary smooth muscle cell phenotypic transition through inhibiting the NF-κB signal pathway. Vascular smooth muscle cell (VSMC) phenotype transition is involved in diabetes-associated cardiovascular diseases. The mechanism of VSMCs phenotypic transition in T2DM was still unclear. Rat coronary artery SMCs were pretreated with liraglutide alone, liraglutide and H89(a PKA inhibitor), neutralizing anti-RAGE antibody or the antioxidant pyrrolidine dithiocarbamate (PDTC; a nuclear factor-κB (NF-κB) inhibitor), followed by treatment with AGE. The morphological change of the SMCs was observed. We also observed the α-actin positive myofilaments and F-actin distribution in SMC through immunofluorescence microscopy. Smooth muscle myosin heavy chain 11(MYH11), α-smooth muscle actin (α-SMA) and myocardin protein expression were detected by Western blot. Collagen I productionS and NF-κB nuclear translocation were also investigated. AGEs induced a transition of SMC from contractile to synthetic phenotype, which was associated with decreased SMC differentiation markers such as α-SMA, MYH11 and myocardin by activating the NF-κB pathway. AGE also increased collagen I production and secretion by SMCs. Liraglutide inhibited AGEs induced SM phenotypic transition and down-regulation of α-SMA, MYH11 and myocardin. Liraglutide also inhibited AGEs induced NF-κB pathway activation and collagen I production. Pretreatment with liraglutide and H89 together did not exhibit this inhibitory effect as mentioned above. Blockade of RAGE in SMCs with neutralizing antibody inhibited AGEs induced phenotypic transition of SMC, and up-regulated α-SMA and MYH11 expression. Liraglutide inhibited AGE induced SMC phenotypic transition, increased SMC contractile markers expression, and decreased collagen production through down-regulation of myocardin, inhibition of NF-κB pathway, and activation of PKA signaling pathway."	"Measurable residual disease-guided treatment with azacitidine to prevent haematological relapse in patients with myelodysplastic syndrome and acute myeloid leukaemia (RELAZA2): an open-label, multicentre, phase 2 trial. Monitoring of measurable residual disease (MRD) in patients with advanced myelodysplastic syndromes (MDS) or acute myeloid leukaemia (AML) who achieve a morphological complete remission can predict haematological relapse. In this prospective study, we aimed to determine whether MRD-guided pre-emptive treatment with azacitidine could prevent relapse in these patients. The relapse prevention with azacitidine (RELAZA2) study is an open-label, multicentre, phase 2 trial done at nine university health centres in Germany. Patients aged 18 years or older with advanced MDS or AML, who had achieved a complete remission after conventional chemotherapy or allogeneic haemopoietic stem-cell transplantation, were prospectively screened for MRD during 24 months from baseline by either quantitative PCR for mutant NPM1, leukaemia-specific fusion genes (DEK-NUP214, RUNX1-RUNX1T1, CBFb-MYH11), or analysis of donor-chimaerism in flow cytometry-sorted CD34-positive cells in patients who received allogeneic haemopoietic stem-cell transplantation. MRD-positive patients in confirmed complete remission received azacitidine 75 mg/m<sup>2</sup> per day subcutaneously on days 1-7 of a 29-day cycle for 24 cycles. After six cycles, MRD status was reassessed and patients with major responses (MRD negativity) were eligible for a treatment de-escalation. The primary endpoint was the proportion of patients who were relapse-free and alive 6 months after the start of pre-emptive treatment. Analyses were done per protocol. This trial is registered with ClincialTrials.gov, number NCT01462578, and finished recruitment on Aug 21, 2018. Between Oct 10, 2011, and Aug 20, 2015, we screened 198 patients with advanced MDS (n=26) or AML (n=172), of whom 60 (30%) developed MRD during the 24-month screening period and 53 (88%) were eligible to start study treatment. 6 months after initiation of azacitidine, 31 (58%, 95% CI 44-72) of 53 patients were relapse-free and alive (p&lt;0·0001; one-sided binomial test for null hypothesis pexp≤0·3). With a median follow-up of 13 months (IQR 8·5-22·8) after the start of MRD-guided treatment, relapse-free survival at 12 months was 46% (95% CI 32-59) in the 53 patients who were MRD-positive and received azacitidine. In MRD-negative patients, 12-month relapse-free survival was 88% (95% CI 82-94; hazard ratio 6·6 [95% CI 3·7-11·8], p&lt;0·0001). The most common (grade 3-4) adverse event was neutropenia, occurring in 45 (85%) of 53 patients. One patient with neutropenia died because of an infection considered possibly related to study treatment. Pre-emptive therapy with azacitidine can prevent or substantially delay haematological relapse in MRD-positive patients with MDS or AML who are at high risk of relapse. Our study also suggests that continuous MRD negativity during regular MRD monitoring might be prognostic for patient outcomes. Celgene Pharma, José Carreras Leukaemia Foundation, National Center for Tumor Diseases (NCT), and German Cancer Consortium (DKTK) Foundation."	"Smooth muscle cell differentiation from rabbit amniotic cells. Amniotic fluid (AF) is the liquid layer that provides mechanical support and allows movement of the fetus during embryogenesis. Mesenchymal stem cells (MSCs), which have differentiation capacity, are also found in AF-derived cells at a low ratio. Smooth muscle cells (SMCs) play an important role in organ function and are frequently used in tissue engineering. We examined the differentiation of AF-derived MSCs (AMSCs) into SMCs. AMSCs were sorted from cultured amniotic cells and differentiated into SMCs using differentiation agents, including platelet-derived growth factor BB (PDGF-BB) and tumor growth factor β (TGF-β). Characterization of differentiated SMCs was confirmed morphologically, molecularly (via quantitative polymerase chain reaction [qPCR] and immunocytochemistry [ICC]), and functionally (using a contractile assay and fluo-4 calcium signaling assay). Poly(lactide-co-glycolide) (PLGA) scaffolds were fabricated, and the attachment capacity of AMSCs was assessed via scanning electron microscopy. AMSCs were successfully differentiated into SMCs. Our results indicate that AMSCs change their morphology and exhibit increased expression of ACTA2 and MYH11, which was confirmed via qPCR and ICC. Furthermore, functional experiments revealed that differentiated SMCs had both contraction ability and increased Ca<sup>2</sup> concentration in the cytoplasm. Finally, PLGA scaffolds were prepared and AMSCs were successfully planted onto the scaffolds. The AMSCs fully differentiated into functional SMCs, and the PLGA polymer is a suitable scaffold material for AMSCs. With further clinical trials, AF-derived MSC-based SMC engineering may become a highly efficient treatment option."	"Tumour heterogeneity in triplet-paired metastatic tumour tissues in metastatic renal cell carcinoma: concordance analysis of target gene sequencing data. The aim of the present study was to determine the concordant correlation in the expression of 88 target genes from triple-paired metastatic tissues in individual patients with metastatic renal carcinoma (mRCC) using a target gene sequencing (TGS) approach. Between 2002 and 2017, a total of 350 triple-paired metastatic tissue samples from 262 patients with mRCC obtained from either nephrectomy or metastasectomy were used for TGS of 88 candidate genes. After quality check, 243 tissue samples from 81 patients were finally applied to TGS. The concordance of triple-paired tissues was analysed with the 88 TGS panels using bioinformatics tools. Among 81 patients, alterations were observed in 42 (51.9%) for any of the 88 mRCC panel genes; however, no pathogenic gene was detected in 38 (39.5%) . Concordance &gt;95% for altered gene expression among the three tissues was reported in 12 (28.6%) patients, while concordance &gt;95% within two tissues was reported in 30 (71.4%); concordance &lt;50% was reported in the remaining eight patients. Considering several types of genetic alterations, including deletions, insertions, missense and nonsense mutations, and splice variants, genes most frequently detected with genetic alterations in the patients with mRCC were PTEN loss, followed by FLCN, BCR, SMARCA2, AKAP9, MLH1, MYH11, APC and TP53. The study provides reference information on the genetic alterations at various organ sites and the multi-heterogeneity of mRCC tissues. The concordance of pathogenic gene alterations within tissues was not high, and approximately half of the patients showed no pathogenic gene alterations at all."	"Acquisition of Inv(16)(p13q22) in a blast crisis of chronic myeloid leukemia: case report. NA"	"SRSF6 is upregulated in asthmatic horses and involved in the MYH11 SMB expression. Smooth muscle has a central role in bronchospasm-induced airway obstruction in asthma. Alternative mRNA splicing of the smooth muscle myosin heavy chain (myh11) gene produces four different isoforms, one of which (SMB) is characterized by the inclusion of the exon5b, which doubles the smooth muscle cells contraction velocity. Deciphering the regulation of the expression levels of the SMB isoform would represent a major step for the understanding of the triggers and pathways leading to airway smooth muscle contraction in asthma. Our objective was therefore, to study the splicing regulation mechanisms of the exon5b in airway smooth muscle cells. Bioinformatics analysis was performed to identify the cis-regulatory elements present in the exon5b using HSF finder 3 tool. The expression of the corresponding serine/arginine rich protein (SR) genes thus identified was evaluated by quantitative RT-PCR (qPCR). SRSF1, SRSF6, and hnRNPA1 cis-acting elements were identified by in silico analysis of the exon5b sequence as splicing regulator candidates. QPCR analyses showed that SRSF1 and SRSF6 are upregulated in ASM cells from asthmatic horses in exacerbation (n = 5) compared to controls (n = 5). The inhibition of the identified splicing factors by small interfering RNA allowed identifying the regulation of the SMB isoform by SRSF6. Our results implicate for the first time the upregulation of SRSF6 and SRSF1 in the asthmatic ASM cells and indicate that SRSF6 induces the exon5b inclusion. This study provides an important first step for the understanding of the triggers and pathways leading to ASM hypercontraction and identifies a possible new target for asthma."	"16p13.11 microduplication in 45 new patients: refined clinical significance and genotype-phenotype correlations. The clinical significance of 16p13.11 duplications remains controversial while frequently detected in patients with developmental delay (DD), intellectual deficiency (ID) or autism spectrum disorder (ASD). Previously reported patients were not or poorly characterised. The absence of consensual recommendations leads to interpretation discrepancy and makes genetic counselling challenging. This study aims to decipher the genotype-phenotype correlations to improve genetic counselling and patients' medical care. We retrospectively analysed data from 16 013 patients referred to 12 genetic centers for DD, ID or ASD, and who had a chromosomal microarray analysis. The referring geneticists of patients for whom a 16p13.11 duplication was detected were asked to complete a questionnaire for detailed clinical and genetic data for the patients and their parents. Clinical features are mainly speech delay and learning disabilities followed by ASD. A significant risk of cardiovascular disease was noted. About 90% of the patients inherited the duplication from a parent. At least one out of four parents carrying the duplication displayed a similar phenotype to the propositus. Genotype-phenotype correlations show no impact of the size of the duplicated segment on the severity of the phenotype. However, NDE1 and miR-484 seem to have an essential role in the neurocognitive phenotype. Our study shows that 16p13.11 microduplications are likely pathogenic when detected in the context of DD/ID/ASD and supports an essential role of NDE1 and miR-484 in the neurocognitive phenotype. Moreover, it suggests the need for cardiac evaluation and follow-up and a large study to evaluate the aortic disease risk."	"Panoramic view of common fusion genes in a large cohort of Chinese de novo acute myeloid leukemia patients. Fusion genes are major molecular biological abnormalities in hematological malignancies. This study aimed to depict the common recurrent gene-fusion landscape in acute myeloid leukemia (AML). 3135 de novo AML cases were enrolled and 36 recurrent fusion genes were assessed using multiplex-nested RT-PCR. Twenty-three distinct fusion genes were detected in 1292 (41.21%) cases. The incidence of fusion genes was higher in pediatric AML than in adult cases. The pediatric patients had higher incidences of RUNX1-RUNX1T1, KMT2A-MLLT3, KMT2A-MLLT10, KMT2A-MLLT11, KMT2A-MLLT6, and FUS-ERG, whereas KMT2A-PTD was more common in adult patients. The occurrence of molecular abnormalities involving the KMT2A gene and CBFB-MYH11 was lower in Chinese pediatric AML compared to Western reports. The incidence of RUNX1-RUNX1T1 was higher in both pediatric and adult patients in our study than in Western countries. This study provides a genetic landscape of common fusion genes in Chinese AML and confirms different incidences between age groups and races."	"Autozygome and high throughput confirmation of disease genes candidacy. Establishing links between Mendelian phenotypes and genes enables the proper interpretation of variants therein. Autozygome, a rich source of homozygous variants, has been successfully utilized for the high throughput identification of novel autosomal recessive disease genes. Here, we highlight the utility of the autozygome for the high throughput confirmation of previously published tentative links to diseases. Autozygome and exome analysis of patients with suspected Mendelian phenotypes. All variants were classified according to the American College of Medical Genetics and Genomics guidelines. We highlight 30 published candidate genes (ACTL6B, ADAM22, AGTPBP1, APC, C12orf4, C3orf17 (NEPRO), CENPF, CNPY3, COL27A1, DMBX1, FUT8, GOLGA2, KIAA0556, LENG8, MCIDAS, MTMR9, MYH11, QRSL1, RUBCN, SLC25A42, SLC9A1, TBXT, TFG, THUMPD1, TRAF3IP2, UFC1, UFM1, WDR81, XRCC2, ZAK) in which we identified homozygous likely deleterious variants in patients with compatible phenotypes. We also identified homozygous likely deleterious variants in 18 published candidate genes (ABCA2, ARL6IP1, ATP8A2, CDK9, CNKSR1, DGAT1, DMXL2, GEMIN4, HCN2, HCRT, MYO9A, PARS2, PLOD3, PREPL, SCLT1, STX3, TXNRD2, WIPI2) although the associated phenotypes are sufficiently different from the original reports that they represent phenotypic expansion or potentially distinct allelic disorders. Our results should facilitate the timely relabeling of these candidate disease genes in relevant databases to improve the yield of clinical genomic sequencing."	"Classifying AML patients with inv(16) into high-risk and low-risk relapsed patients based on peritransplantation minimal residual disease determined by CBFβ/MYH11 gene expression. Ninety acute myeloid leukemia (AML) patients with inv(16) were monitored CBFβ/MYH11 transcript around allogeneic hematopoietic stem cell transplantation (allo-HSCT). A total of 23 patients received HLA-matched sibling donor transplantation (MSDT) and 67 patients received unmanipulated haploidentical hematopoietic stem cell transplantation (haplo-HSCT) were analyzed in this study. Patients were divided into four groups based on CBFβ/MYH11 expression prior to transplantation (pre-MRD): with negative (group 1)/positive (group 2) pre-MRD before MSDT; with negative (group 3)/positive (group 4) pre-MRD before haplo-HSCT. The results showed that patients in group 2 had the highest cumulative incidence of relapse (2-year CIR, 40.7%), the lowest leukemia-free survival (2-year LFS, 50.8%), and overall survival (2-year OS, 62.5%). The other three groups of patients had comparable outcomes. The patients were also classified into the other three groups according to CBFβ/MYH11 value of + 1 month after transplantation: group 5: pre- and post-transplant MRD were both negative; group 6: the value of post-transplant MRD was lower than 0.2%; group 7: the value of post-transplant MRD was higher than 0.2%. Group 7 had the highest CIR and the lowest LFS. These results indicated that AML patients with inv(16) were able to be separated into high-risk and low-risk relapse groups based on peritransplant MRD determined by RQ-PCR-based CBFβ/MYH11. Haplo-HSCT might overcome the negative impact of pre-MRD on patient outcomes compared to MSDT."	"Molecular and immunohistochemical analysis of the urethra of female rats after induced trauma and intravenous therapy with muscle derived stem cells. To identify the urethral migration of muscle derived stem cells (MDSCs) after intravenous (IV) injection in rats that underwent vaginal distension (VD) and to analyze the effects of MDSC in the urethra of rats after trauma in regards to: (1) mRNA expression of collagens, Vegf, Ngf, Ki67, Myh11, and Myh2; (2) expression of smooth and striated muscle proteins. MDSCs expressing green fluorescent protein (GFP) were injected into the tail vein of rats 3 days after VD. The location of GFP cells was verified at 2 h and at 7 days following IV injection. Urethras of three groups were analyzed: Control, Trauma 7D, and MDSC 7D. Real-time RT-qPCR and immunohistochemistry were performed. MDSCs were identified only after 2 h of the procedure in the urethra. Myh11 gene was overexpressed in the Trauma group in relation to Control. Ki67 gene expression was increased in the MDSC group relative to Trauma and Control. Col1a1 and Col3a1 genes expression were increased in the MDSC group relative to Control. Ngf mRNA level was decreased in the MDSC group in relation to Trauma. Protein expression of Mhy11, Myh2, and Desmin were increased in the MDSC group in relation to Trauma and decreased in the Trauma in relation to Control. MDSCs migrated early to the traumatized urethra, but did not integrate into the tissue. MDSC alters the expression of genes related to cell proliferation, neural growth factor and extracellular matrix and the expression of smooth and striated muscle proteins in the traumatized rat urethra."	"Irradiation abolishes smooth muscle investment into vascular lesions in specific vascular beds. The long-term adverse effects of radiotherapy on cardiovascular disease are well documented. However, the underlying mechanisms responsible for this increased risk are poorly understood. Previous studies using rigorous smooth muscle cell (SMC) lineage tracing have shown abundant SMC investment into atherosclerotic lesions, where SMCs contribute to the formation of a protective fibrous cap. Studies herein tested whether radiation impairs protective adaptive SMC responses during vascular disease. To do this, we exposed SMC lineage tracing (Myh11-ERT2Cre YFP+) mice to lethal radiation (1,200 cGy) followed by bone marrow transplantation prior to atherosclerosis development or vessel injury. Surprisingly, following irradiation, we observed a complete loss of SMC investment in 100% of brachiocephalic artery (BCA), carotid artery, and aortic arch lesions. Importantly, this was associated with a decrease in multiple indices of atherosclerotic lesion stability within the BCA. Interestingly, we observed anatomic heterogeneity, as SMCs accumulated normally into lesions of the aortic root and abdominal aorta, suggesting that SMC sensitivity to lethal irradiation occurs in blood vessels of neural crest origin. Taken together, these results reveal an undefined and unintended variable in previous studies using lethal irradiation and may help explain why patients exposed to radiation have increased risk for cardiovascular disease."	"Matrine blocks AGEs- induced HCSMCs phenotypic conversion via suppressing Dll4-Notch pathway. Vascular smooth muscle cells (VSMCs) contractile- synthetic phenotypic conversion takes responsibility in the atherosclerotic plaque formation by abnormal synthesis, secretion and deposition of extracellular matrix (ECM). Matrine exerts therapeutic effects on both cardiovascular diseases and organ fibrosis. In this study, we investigated matrine's inhibitory effect and mechanisms on AGEs- induced VSMC contractile- synthetic phenotypic conversion. Cultured human coronary smooth muscle cells (HCSMCs) were exposed to AGEs. Matrine at serially diluted concentrations were used to treat the cells. HCSMCs phenotype was identified by immunofluorescent staining of contractile phenotypic markers including mooth muscle myosin heavy chain (MYH11) and smooth muscle α-actin (ACTA2). Sircol collagen assay was used to assess the collagen secretion level. Notch signaling activation was determined by luciferase assay. Western blotting was used to evaluate expression levels of collagen I, collagen VIII, Delta-like (Dll)1, Dll3, Dll4, Jagged1, Jagged2, Notch intracellular domain (NICD)1 and Hes family basic helix-loop-helix (bHLH) transcription factor1 (HES1). Matrine pre-treatment recovered the AGEs- induced contractile- synthetic phenotypic conversion by increasing MYH11 and ACTA2 in HCSMCs. Matrine reduced AGEs- mediated activation of Notch signaling, down-regulated expression levels of NICD1, HES1, collagen I and collagen VIII and collagen secretion contents in HCSMCs. Matrine inhibited expression level of Dll4 without affecting other Notch ligands including Dll1, Dll3, Jagged1 and Jagged2 in HCSMCs exposed to AGEs. These results suggested that AGEs exposure facilitated the contractile- synthetic phenotypic conversion of HCSMCs. Matrine blocked this phenotypic conversion by suppressing Dll4- Notch signaling pathway activation."	"Molecular Minimal Residual Disease Testing in Acute Myeloid Leukemia: A Review for the Practicing Clinician. Minimal residual disease (MRD) testing in acute myeloid leukemia is increasingly being used to assess treatment response and stratify the risk of relapse for individual patients. Molecular methods for MRD testing began with PCR-based assays for individual recurrent mutations. To date, there is robust evidence for testing NPM1, CBFB-MYH11, and RUNX1/RUNXT1 mutations using this approach, though the best timing and threshold level for each mutation varies. More recent approaches have been with PCR-based multigene panels, occasionally combined with flow cytometric techniques, and next-generation sequencing techniques. This review outlines the various techniques used in molecular approaches to MRD, the evidence behind individual mutation testing, and the novel approaches for evaluating multigene MRD so that clinicians can understand and incorporate these evaluations into their practice."	"Proteomic analysis of aortic smooth muscle cell secretions reveals an association of myosin heavy chain 11 with abdominal aortic aneurysm. Abdominal aortic aneurysm (AAA) is a life-threatening disease, and no disease-specific circulating biomarkers for AAA screening are currently available. We have identified a smooth muscle cell (SMC)-specific biomarker for AAA. We cultured aneurysmal tunica media that were collected from eight patients undergoing elective open-repair surgeries. Secreted proteins in culture medium were subjected to liquid chromatography/tandem mass spectrometry. Myosin heavy chain 11 (myosin-11) was identified as a SMC-specific protein in the tunica media-derived secretions of all patients. We then examined myosin-11 protein concentrations by ELISA in plasma samples from patients with AAA ( n = 35) and age-matched healthy control subjects ( n = 34). Circulating myosin-11 levels were significantly higher in patients with AAA than control subjects. The area under the receiver-operating characteristic curve (AUC) of myosin-11 was 0.77, with a specificity of 65% at a sensitivity of 91%. Multivariate logistic regression analysis showed a significant association between the myosin-11 level and presence of AAA. When the myosin-11 level was combined with hypertension, it improved the prediction of AAA (AUC 0.88) more than hypertension per se. We then investigated the correlation between aortic diameter and circulating myosin-11 levels using AAA serum samples from patients undergoing endovascular aneurysm repair ( n = 20). Circulating myosin-11 levels were significantly correlated with maximum aortic diameter. Furthermore, changes in myosin-11 concentrations from the baseline 12 mo after endovascular aneurysm repair were associated with those in aortic diameter. These data suggest that circulating levels of myosin-11, which is a SMC-specific myosin isoform, may be useful as a biomarker for AAA. NEW &amp; NOTEWORTHY Extensive studies have revealed that inflammation- or proteolysis-related proteins are proposed as biomarkers for abdominal aortic aneurysm (AAA). Changes in these protein concentrations are not specific for smooth muscle, which is a major part of AAA pathologies. Hence, no disease-specific circulating markers for AAA are currently available. We found, using secretome-based proteomic analysis on human AAA tunica media, that myosin heavy chain 11 was associated with AAA. Circulating myosin heavy chain 11 may be a new tissue-specific AAA marker."	"The Effect of Mecp2 on Heart Failure. Heart failure is the end result of various kinds of cardiovascular diseases. It has a high rate of morbidity and mortality. This article aims to determine the effect of MeCP2, a key epigenetic regulator, on heart failure. The genes associated with heart failure were selected and analyzed using Gene Ontology (GO) term analysis and protein-protein interaction (PPI) network analysis. Significantly up- or downregulated genes in a heart failure animal model were identified, and the genes that had the same or opposite alteration trends as MeCP2 were also recognized. Eighteen hub genes were picked based on topological parameters, and then aberrantly expressed genes with MeCP2 overexpression or knockout were analyzed by GO term, KEGG pathway and PPI analyses. MeCP2 was downregulated in the heart failure animal model. Through comparison and alignment, 10 dysregulated genes were selected from the 18 hub genes (JAK1, SETD1B, HRC, TTN, LYZ2, TPM3, MYH11, MYH6, ALOX5AP, DECR1). These genes were mainly enriched in cytoskeletal regulation mediated by Rho GTPase and inflammation mediated by chemokine and cytokine signaling pathways. These dysregulated genes provide a better understanding of the underlying mechanisms of the effect of MeCP2 on heart failure and might be used as targets and prognostic markers of heart failure."	"Mechanochemical Effects on Extracellular Signal-Regulated Kinase Dynamics in Stem Cell Differentiation. Understanding how key signaling molecules are coregulated by biochemical agents and physical stimuli during stem cell differentiation is critical but often lacking. Due to the important role of extracellular signal-regulated kinase (ERK), this study has examined its temporal dynamics to determine the coregulation of mechanochemical cues on ERK phosphorylation for smooth muscle cell (SMC) differentiation. To assess ERK1/2 activity, a fluorescence resonance energy transfer-based biosensor was transfected into mesenchymal stem cells. The influences of nanopatterned substrates, growth factors, and drugs on ERK activities were related to their effects on SMC differentiation. Results revealed that nanopatterned substrates significantly increased ERK activity in cells, overriding ERK response from administered biochemical factors. The nanopatterned substrates reduced expression of SMC markers after a 48-h biochemical treatment, except for the combination with ERK inhibitor PD98059 treatment, which enhanced expression of mature SMC marker MYH11. Immunofluorescent staining for focal adhesion proteins, vinculin and zyxin, indicated no significant differences in vinculin cluster distribution or dimension, while the location of zyxin changed from adhesion sites of cell periphery on nonpatterned substrate to actin filaments on nanopatterned substrate. The zyxin-reinforced stress fibers likely enhanced the cytoskeletal tension to increase ERK dynamics. Collectively, results suggest that physical stimuli play a dominating role in initial ERK signaling and early-stage differentiation through focal adhesion changes, and the capability of monitoring signaling events in real time could be exploited to guide the engineering of cell microenvironment."	"Variants of Unknown Significance in Genes Associated with Heritable Thoracic Aortic Disease Can Be Low Penetrant &quot;Risk Variants&quot;. Thoracic aortic aneurysms leading to acute aortic dissections are a preventable cause of premature deaths if individuals at risk can be identified. Individuals with early-onset aortic dissections without a family history or syndromic features have an increased burden of rare genetic variants of unknown significance (VUSs) in genes with pathogenic variants for heritable thoracic aortic disease (HTAD). We assessed the role of VUSs in the development of disease using both in vitro enzymatic assays and mouse models. VUSs in LOX and MYLK identified in individuals with acute aortic dissections were assayed to determine whether they disrupted enzymatic activity. A subset of VUSs reduced enzymatic activity compared to the wild-type proteins but less than pathogenic variants. Additionally, a Myh11 variant, p.Arg247Cys, which does not cause aortic disease in either humans or mice, was crossed with the Acta2<sup>-/-</sup> mouse, which has aortic enlargement with age while Acta2<sup>+/-</sup> mice do not. Acta2<sup>+/-</sup>Myh11<sup>R247C/R247C</sup> mice have aortic dilation by 3 months of age without medial degeneration, indicating that two variants not known to cause disease do lead to aortic enlargement in combination. Furthermore, the addition of Myh11<sup>R247C/R247C</sup> to the Acta2<sup>-/-</sup> mouse model accelerates aortic enlargement and increases medial degeneration. Therefore, our results emphasize the need for a classification system for variants in Mendelian genes that goes beyond the 5-tier system of pathogenic, likely pathogenic, VUS, likely benign, and benign, and includes a designation for low-penetrant &quot;risk variants&quot; that trigger disease either in combination with other risk factors or in a stochastic manner."	"CBFβ-SMMHC Inhibition Triggers Apoptosis by Disrupting MYC Chromatin Dynamics in Acute Myeloid Leukemia. The fusion oncoprotein CBFβ-SMMHC, expressed in leukemia cases with chromosome 16 inversion, drives leukemia development and maintenance by altering the activity of the transcription factor RUNX1. Here, we demonstrate that CBFβ-SMMHC maintains cell viability by neutralizing RUNX1-mediated repression of MYC expression. Upon pharmacologic inhibition of the CBFβ-SMMHC/RUNX1 interaction, RUNX1 shows increased binding at three MYC distal enhancers, where it represses MYC expression by mediating the replacement of the SWI/SNF complex component BRG1 with the polycomb-repressive complex component RING1B, leading to apoptosis. Combining the CBFβ-SMMHC inhibitor with the BET inhibitor JQ1 eliminates inv(16) leukemia in human cells and a mouse model. Enhancer-interaction analysis indicated that the three enhancers are physically connected with the MYC promoter, and genome-editing analysis demonstrated that they are functionally implicated in deregulation of MYC expression. This study reveals a mechanism whereby CBFβ-SMMHC drives leukemia maintenance and suggests that inhibitors targeting chromatin activity may prove effective in inv(16) leukemia therapy."	"Target amplicon exome-sequencing identifies promising diagnosis and prognostic markers involved in RTK-RAS and PI3K-AKT signaling as central oncopathways in primary central nervous system lymphoma. Exome-sequencing for somatic mutation detection and copy number variation analysis are effective and valid methods for evaluating human cancers in current molecular medicine. We conducted target amplicon exome-sequencing analyses using PCR target enrichment and next-generation sequencing on Ion Proton semiconductor sequencers. Twenty-seven primary central nervous system lymphoma (PCNSL) specimens and their corresponding noncancerous tissues were used for multiplex PCR amplification to obtain targeted coverages of the entire coding regions of 409 cancer-related genes. The average of the total numbers of somatic mutations including single-nucleotide variations and insertion/deletion mutations in each specimen was 13.3. Of these, the average of the ratios of nonsynonymous substitutions in each specimen was 74.8%. The most frequent mutations in 27 specimens were in PIM1, MYD88, CD79B, DST, IRF4, ERBB3, MYH11, DCC, and KMT2D. Furthermore, somatic mutations of MYH11 were related to poor prognoses in PCNSL patients. Copy number variations were also duplicated and/or deleted from deep-sequencing in segmental genomic islands. In addition to these prognostic marker candidates, analysis of RTK-RAS-MAPK signaling and the PTEN-PI3K-AKT proapoptotic pathway showed that somatic activations and aberrations, respectively, may be involved in a promising central oncopathway harboring mTOR, c-Myc, FOXO1, and p53. This study provides a foundation for molecular targeted therapies based on genome diagnostics and prognosis in PCNSL."	"CSF3R Mutations are frequently associated with abnormalities of RUNX1, CBFB, CEBPA, and NPM1 genes in acute myeloid leukemia. Mutations in the colony-stimulating factor 3 receptor (CSF3R) gene occur frequently in chronic neutrophilic leukemia and are rare in de novo acute leukemia. The objective of this study was to assess the incidence of CSF3R mutations in acute leukemia and their association with other genetic abnormalities. Amplicon-targeted, next-generation sequencing of 58 genes was performed retrospectively on 1152 patients (acute myeloid leukemia [AML], n = 587; acute lymphoid leukemia [ALL], n = 565). Reverse transcriptase-polymerase chain reaction analysis was used to detect 35 leukemia-specific gene fusions. CSF3R mutations (26 patients) were detected in 3.6% (13 of 364 patients), 4.6% (8 of 175 patients), and 8.3% (4 of 48 patients) of those with de novo, relapsed, and secondary AML, respectively, and in 0.2% (1 of 565 patients) of those with ALL. In total, 9 distinct CSF3R mutations were detected. Membrane-proximal missense mutations and cytoplasmic truncations were identified as mutually exclusive. The proportion of patients who had French-American-British subtypes M2 and M4 in the CSF3R-mutated group was significantly greater than that in the CSF3R wild-type group for both the de novo AML cohort (P = .001) and the relapsed AML cohort (P = .024). All de novo and relapsed AMLs with CSF3R mutations were associated with genetic alterations in transcription factors, including RUNX1-RUNX1T1, CBFB-MYH11, double-mutated CCAAT/enhancer binding protein α (CEBPAdm), and NPM1 mutations; and core-binding factor gene abnormalities and CEBPAdm accounted for 90.5% (19 of 21 patients). CSF3R mutations are uncommon in AML; however, when they occur, they are often associated with core-binding factor gene abnormalities and CEBPAdm. An in-depth understanding of the interaction between these genetic alterations could facilitate a clearer understanding of the role of CSF3R mutations in AML development and may be used for disease classification, prognosis, and the development of targeted therapy."	"Loss of smooth muscle myosin heavy chain results in the bladder and stomach developing lesion during foetal development in mice. Smooth muscle myosin heavy chain (SM-MHC) is exclusively expresses in smooth muscle, which takes part in smooth muscle cell contraction. Here, we used an insertional mutation mouse whose heavy polypeptide 11 (Myh11) gene has been disrupted and no SM-MHC protein has been detected. Compared to the wild-type and SM-MHC<sup>+/-</sup> mice, the SM-MHC<sup>-/-</sup> neonates had large round bellies, thin-walled giant bladders, and large stomachs with huge gas bubbles. Most of it died within 10 h and the rest within 20 h after birth. Further analysis of the developing foetuses from 16.5 days postcoitum (dpc) stage to newborn showed no significant (P&lt;0.05) difference in the ratio of Mendelian inheritance and average body weight among SM-MHC<sup>+/+</sup> , SM-MHC<sup>+/-</sup> and SM-MHC<sup>-/-</sup> mice, whereas the abnormal exterior appearance was observed in each SM-MHC<sup>-/-</sup> bladders from 16.5 dpc. Histological analysis showed no difference in stomach tissues but evidently thin-walled smooth muscle layer and a giant cavity in bladders of SM-MHC<sup>-/-</sup> foetuses at various stages from 15.5 dpc to newborn. The results indicated that the defect of SM-MHC lead to the bladder developing lesions initially at 15.5 dpc stage in mouse and also implied that the SM-MHC loss might result in the gas bubbles in stomach. The study should facilitate further detailed analyses of the potential role of SM-MHC in bladder and stomach development."	"Drug Targeting and Biomarkers in Head and Neck Cancers: Insights from Systems Biology Analyses. The head and neck squamous cell carcinoma (HNSCC) is one of the most common cancers in the world, but robust biomarkers and diagnostics are still not available. This study provides in-depth insights from systems biology analyses to identify molecular biomarker signatures to inform systematic drug targeting in HNSCC. Gene expression profiles from tumors and normal tissues of 22 patients with histological confirmation of nonmetastatic HNSCC were subjected to integrative analyses with genome-scale biomolecular networks (i.e., protein-protein interaction and transcriptional and post-transcriptional regulatory networks). We aimed to discover molecular signatures at RNA and protein levels, which could serve as potential drug targets for therapeutic innovation in the future. Eleven proteins, 5 transcription factors, and 20 microRNAs (miRNAs) came into prominence as potential drug targets. The differential expression profiles of these reporter biomolecules were cross-validated by independent RNA-Seq and miRNA-Seq datasets, and risk discrimination performance of the reporter biomolecules, BLNK, CCL2, E4F1, FOSL1, ISG15, MMP9, MYCN, MYH11, miR-1252, miR-29b, miR-29c, miR-3610, miR-431, and miR-523, was also evaluated. Using the transcriptome guided drug repositioning tool, geneXpharma, several candidate drugs were repurposed, including antineoplastic agents (e.g., gemcitabine and irinotecan), antidiabetics (e.g., rosiglitazone), dermatological agents (e.g., clocortolone and acitretin), and antipsychotics (e.g., risperidone), and binding affinities of the drugs to their potential targets were assessed using molecular docking analyses. The molecular signatures and repurposed drugs presented in this study warrant further attention for experimental studies since they offer significant potential as biomarkers and candidate therapeutics for precision medicine approaches to clinical management of HNSCC."	"Small GTP-Binding Protein GDP Dissociation Stimulator Prevents Thoracic Aortic Aneurysm Formation and Rupture by Phenotypic Preservation of Aortic Smooth Muscle Cells. Thoracic aortic aneurysm (TAA) and dissection are fatal diseases that cause aortic rupture and sudden death. The small GTP-binding protein GDP dissociation stimulator (SmgGDS) is a crucial mediator of the pleiotropic effects of statins. Previous studies revealed that reduced force generation in aortic smooth muscle cells (AoSMCs) causes TAA and thoracic aortic dissection. To examine the role of SmgGDS in TAA formation, we used an angiotensin II (1000 ng·min<sup>-1</sup>·kg<sup>-1</sup>, 4 weeks)-induced TAA model. We found that 33% of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice died suddenly as a result of TAA rupture, whereas there was no TAA rupture in Apoe<sup>-/-</sup> control mice. In contrast, there was no significant difference in the ratio of abdominal aortic aneurysm rupture between the 2 genotypes. We performed ultrasound imaging every week to follow up the serial changes in aortic diameters. The diameter of the ascending aorta progressively increased in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice compared with Apoe<sup>-/-</sup> mice, whereas that of the abdominal aorta remained comparable between the 2 genotypes. Histological analysis of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed dissections of major thoracic aorta in the early phase of angiotensin II infusion (day 3 to 5) and more severe elastin degradation compared with Apoe<sup>-/-</sup> mice. Mechanistically, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed significantly higher levels of oxidative stress, matrix metalloproteinases, and inflammatory cell migration in the ascending aorta compared with Apoe<sup>-/-</sup> mice. For mechanistic analyses, we primary cultured AoSMCs from the 2 genotypes. After angiotensin II (100 nmol/L) treatment for 24 hours, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs showed significantly increased matrix metalloproteinase activity and oxidative stress levels compared with Apoe<sup>-/-</sup> AoSMCs. In addition, SmgGDS deficiency increased cytokines/chemokines and growth factors in AoSMCs. Moreover, expressions of fibrillin-1 ( FBN1), α-smooth muscle actin ( ACTA2), myosin-11 ( MYH11), MYLLK, and PRKG1, which are force generation genes, were significantly reduced in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs compared with Apoe<sup>-/-</sup> AoSMCs. A similar tendency was noted in AoSMCs from patients with TAA compared with those from control subjects. Finally, local delivery of the SmgGDS gene construct reversed the dilation of the ascending aorta in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice. These results suggest that SmgGDS is a novel therapeutic target for the prevention and treatment of TAA."	"Variants in ACTG2 underlie a substantial number of Australasian patients with primary chronic intestinal pseudo-obstruction. Primary chronic intestinal pseudo-obstruction (CIPO) is a rare, potentially life-threatening disorder characterized by severely impaired gastrointestinal motility. The objective of this study was to examine the contribution of ACTG2, LMOD1, MYH11, and MYLK mutations in an Australasian cohort of patients with a diagnosis of primary CIPO associated with visceral myopathy. Pediatric and adult patients with primary CIPO and suspected visceral myopathy were recruited from across Australia and New Zealand. Sanger sequencing of the genes encoding enteric gamma-actin (ACTG2) and smooth muscle leiomodin (LMOD1) was performed on DNA from patients, and their relatives, where available. MYH11 and MYLK were screened by next-generation sequencing. We identified heterozygous missense variants in ACTG2 in 7 of 17 families (~41%) diagnosed with CIPO and its associated conditions. We also identified a previously unpublished missense mutation (c.443C&gt;T, p.Arg148Leu) in one family. One case presented with megacystis-microcolon-intestinal hypoperistalsis syndrome in utero with subsequent termination of pregnancy at 28 weeks' gestation. All of the substitutions identified occurred at arginine residues. No likely pathogenic variants in LMOD1, MYH11, or MYLK were identified within our cohort. ACTG2 mutations represent a significant underlying cause of primary CIPO with visceral myopathy and associated phenotypes in Australasian patients. Thus, ACTG2 sequencing should be considered in cases presenting with hypoperistalsis phenotypes with suspected visceral myopathy. It is likely that variants in other genes encoding enteric smooth muscle contractile proteins will contribute further to the genetic heterogeneity of hypoperistalsis phenotypes."	"Preleukemia and Leukemia-Initiating Cell Activity in inv(16) Acute Myeloid Leukemia. Acute myeloid leukemia (AML) is a collection of hematologic malignancies with specific driver mutations that direct the pathology of the disease. The understanding of the origin and function of these mutations at early stages of transformation is critical to understand the etiology of the disease and for the design of effective therapies. The chromosome inversion inv(16) is thought to arise as a founding mutation in a hematopoietic stem cell (HSC) to produce preleukemic HSCs (preL-HSCs) with myeloid bias and differentiation block, and predisposed to AML. Studies in mice and human AML cells have established that inv(16) AML follows a clonal evolution model, in which preL-HSCs expressing the fusion protein CBFβ-SMMHC persist asymptomatic in the bone marrow. The emerging leukemia-initiating cells (LICs) are composed by the inv(16) and a heterogeneous set of mutations. In this review, we will discuss the current understanding of inv(16) preleukemia development, and the function of CBFβ-SMMHC related to preleukemia progression and LIC activity. We also discuss important open mechanistic questions in the etiology of inv(16) AML."	"Characteristics of adult patients treated for acute myeloid leukemia with inv 16 in Casablanca (Morocco). NA"	"DNA methylation, through DNMT1, has an essential role in the development of gastrointestinal smooth muscle cells and disease. DNA methylation is a key epigenetic modification that can regulate gene expression. Genomic DNA hypomethylation is commonly found in many gastrointestinal (GI) diseases. Dysregulated gene expression in GI smooth muscle cells (GI-SMCs) can lead to motility disorders. However, the consequences of genomic DNA hypomethylation within GI-SMCs are still elusive. Utilizing a Cre-lox murine model, we have generated SMC-restricted DNA methyltransferase 1 (Dnmt1) knockout (KO) mice and analyzed the effects of Dnmt1 deficiency. Dnmt1-KO pups are born smaller than their wild-type littermates, have shortened GI tracts, and lose peristaltic movement due to loss of the tunica muscularis in their intestine, causing massive intestinal dilation, and death around postnatal day 21. Within smooth muscle tissue, significant CpG hypomethylation occurs across the genome at promoters, introns, and exons. Additionally, there is a marked loss of differentiated SMC markers (Srf, Myh11, miR-133, miR-143/145), an increase in pro-apoptotic markers (Nr4a1, Gadd45g), loss of cellular connectivity, and an accumulation of coated vesicles within SMC. Interestingly, we observed consistent abnormal expression patterns of enzymes involved in DNA methylation between both Dnmt1-KO mice and diseased human GI tissue. These data demonstrate that DNA hypomethylation in embryonic SMC, via congenital Dnmt1 deficiency, contributes to massive dysregulation of gene expression and is lethal to GI-SMC. These results suggest that Dnmt1 has a necessary role in the embryonic, primary development process of SMC with consistent patterns being found in human GI diseased tissue."	"Newly described recessive MYH11 disorder with clinical overlap of Multisystemic smooth muscle dysfunction and Megacystis microcolon hypoperistalsis syndromes. We describe a neonatal patient with fixed dilated pupils and pulmonary, bladder, and bowel dysfunction suspicious for the presence of ACTA2 R179 mediated multisystemic smooth muscle dysfunction syndrome. Whole exome sequencing revealed compound heterozygous mutations in MYH11 after ACTA2 specific testing revealed no abnormalities. The child lived until 18 months of age and represents the only reported case of an MYH11 compound heterozygote with widespread smooth muscle dysfunction."	"Molecular and histomorphological evaluation of female rats' urethral tissues after an innovative trauma model of prolonged vaginal distention: immediate, short-term and long-term effects. An animal model of vaginal distention (VD) was developed to reproduce the acute urethral injury and deficiency underlying stress urinary incontinence (SUI). Data on the chronic effects of urethral trauma and the recovery process are still scarce. We investigated acute, short- and long-term histomorphological and molecular changes in the urethra of rats post 12-h intermittent VD. We evaluated the urethra of four groups of female rats (n = 72): control without trauma, 1 h, 7 days and 30 days post VD. We compared the gene and protein expression of the VEGF and NGF growth factors, collagens (COL1a1 and COL3a1), desmin, smooth muscle myosin (MYH11), skeletal muscle myosins (MYH1, MYH2 and MYH3) and cell proliferation marker MKi67. We used real-time RT-qPCR, and immunohistochemistry. Histology showed urethral damage after VD mainly involving the muscular layers. VEGF, NGF, desmin and MKi67 mRNA were significantly upregulated in the urethras of rats 1-h post VD compared with controls (P &lt; 0.05 for all). By 7 days post trauma, COL1a1, MYH11 and MYH3 genes were overexpressed compared with controls (p &lt; 0.05 for all). The COL3a1 protein level was increased by 2.6 times by day 7, while MYH2 protein was significantly decreased (around two times) from 7 to 30 days post VD compared with controls (p &lt; 0.05 for both). The 12-h intermittent VD causes chronic alterations in the urethra represented by increased COL3a1 and decreased MYH2 protein levels in the long term. The model can potentially be used to study the mechanisms of urethral injury and recovery as well as the physiopathology of SUI."	"Characterization of Carotid Smooth Muscle Cells during Phenotypic Transition. Vascular smooth muscle cells (VSMCs) are central players in carotid atherosclerosis plaque development. Although the precise mechanisms involved in plaque destabilization are not completely understood, it is known that VSMC proliferation and migration participate in plaque stabilization. In this study, we analyzed expression patterns of genes involved in carotid atherosclerosis development (e.g., transcription factors of regulation of SMC genes) of VSMCs located inside or outside the plaque lesion that may give clues about changes in phenotypic plasticity during atherosclerosis. VSMCs were isolated from 39 carotid plaques extracted from symptomatic and asymptomatic patients by endarterectomy. Specific biomarker expression, related with VSMC phenotype, was analyzed by qPCR, western immunoblot, and confocal microscopy. MYH11, CNN1, SRF, MKL2, and CALD1 were significantly underexpressed in VSMCs from plaques compared with VSMCs from a macroscopically intact (MIT) region, while SPP1, KLF4, MAPLC3B, CD68, and LGALS3 were found significantly upregulated in plaque VSMCs versus MIT VSMCs. The gene expression pattern of arterial VSMCs from a healthy donor treated with 7-ketocholesterol showed high similarity with the expression pattern of carotid plaque VSMCs. Our results indicate that VSMCs isolated from plaque show a typical SMC dedifferentiated phenotype with macrophage-like features compared with VSMCs isolated from a MIT region of the carotid artery. Additionally, MYH11, KLF5, and SPP1 expression patterns were found to be associated with symptomatology of human carotid atherosclerosis."	"Dasatinib overrides the differentiation blockage in a patient with mutant-KIT D816V positive CBFβ-MYH11 leukemia. Activating KIT D816V mutations are frequently found in CBF AML, which predicts for an unfavorable outcome. Dasatinib is a potent inhibitor of wildtype and mutant-KIT isoforms - including D816V. We now provide proof of antileukemic efficacy in a patient with relapsing mutant-KIT D816V CBF AML. Importantly, this effect is mediated via overriding the differentiation blockage of the leukemia clone. In addition, we show that dasatinib is capable to induce pulmonary differentiation syndrome - and therefore needs close monitoring of patients under therapy."	"Fatal thoracic aortic aneurysm and dissection in a large family with a novel MYLK gene mutation: delineation of the clinical phenotype. Thoracic and abdominal aortic aneurysms and dissection often develop in hypertensive elderly patients. At higher risk are smokers and those who have a family history of aortic aneurysms. In most affected families, the aortic aneurysms and dissection is inherited in an autosomal dominant manner with decreased penetrance and variable expressivity. Mutations at two chromosomal loci, TAA1 at 11q23 and the TAA2 at 5q13-14, and eight genes, MYLK, MYH11, TGFBR2, TGFBR1, ACTA2, SMAD3, TGFB2, and MAT2A, have been identified as being responsible for the disease in 23% of affected families. Herein, we inform on the clinical, genetic and pathological characteristics of nine living and deceased members of a large consanguineous Arab family with thoracic aortic aneurysm and dissection who carry a missense mutation c.4471G &gt; T (Ala1491Ser), in exon 27 of MYLK gene. We show a reduced kinase activity of the Ala1491Ser protein compared to wildtype protein. This mutation is expressed as aortic aneurysm and dissection in one of two distinct phenotypes. A severe fatal and early onset symptom in homozygous or mild late onset in heterozygous genotypes. We found that MYLK gene Ala1491Ser mutation affect the kinase activity and clinically, it presents with vascular aneurysms and dissection. We describe a distinct genotype phenotype correlation where; heterozygous patients have mild late onset and incomplete penetrance disease compared with the early onset severe and generally fatal outcome in homozygous patients."	"Clinicopathological characteristics of de novo and secondary myeloid sarcoma: A monocentric retrospective study. Diagnosing myeloid sarcoma remains challenging, and we aimed to provide clinicopathological features to facilitate diagnosis. Clinicopathological data from 41 patients with de novo and 31 with secondary myeloid sarcoma were reviewed. Most de novo cases presented with isolated myeloid sarcoma (n = 19) or myeloid sarcoma with concurrent acute myeloid leukemia (n = 15). Most secondary cases presented after acute myeloid leukemia (n = 11), myeloproliferative neoplasm (n = 9), or myelodysplastic syndrome (n = 8). Most frequent localizations were skin and lymph nodes. Immunohistochemistry showed immature and/or aberrant antigenic expression in 29% of de novo and 39% of secondary cases. Most genetic abnormalities were RUNX1-RUNX1T1 (n = 4), CBFB-MYH11 (n = 2), KMT2A-MLLT3 (n = 2), and JAK2 V617F (n = 2) mutations in de novo myeloid sarcoma, and BCR-ABL1 (n = 5) and KMT2A rearrangements (n = 2) in secondary cases. A complex karyotype was seen in 17% of de novo and 39% of secondary cases. Most prevalent treatment was induction chemotherapy followed by consolidation chemotherapy (n = 10) or allogeneic stem cell transplantation (n = 9) for de novo and radiotherapy (n = 11) for secondary cases. De novo myeloid sarcoma mostly presented isolated. Lesions were often localized at skin and lymph nodes. Genetic aberrations frequently involved core-binding factor rearrangements in de novo cases and a complex karyotype in secondary cases."	"Somatic Mutations and Intratumoral Heterogeneity of MYH11 Gene in Gastric and Colorectal Cancers. MYH11 functions as a contractile protein, converting chemical energy into mechanical energy through adenosine triphosphate hydrolysis. In cancers, an oncogenic fusion CBFB/MYH11 and frameshift mutations have been reported. Truncating mutants of MYH11 exhibited increased ATPase and motor activity, suggesting their roles in energy balance and movement of cancer cells. MYH11 gene has a mononucleotide repeat (C8) in the coding sequences that could be a mutational target in the cancers exhibiting microsatellite instability (MSI). We analyzed the C8 repeat in 79 gastric cancers (GCs) and 124 colorectal cancers (CRCs) including 113 high MSI (MSI-H) and 90 microsatellite stable/low MSI cases. We detected MYH11 frameshift mutations in 4 (11.8%) GCs and 17 (21.5%) CRCs with MSI-H (21/113, 18.6%), but not in microsatellite stable/low MSI cancers (0/90) (P&lt;0.001). We also analyzed intratumoral heterogeneity (ITH) of the MYH11 frameshift mutations and found that 10 of 16 CRCs (62.5%) harbored the regional ITH. Our results show that MYH11 gene harbors somatic frameshift mutations mostly associated with mutational ITH, which together may be features of MSI-H GCs and CRCs. Practically, the data suggest that multiregional analysis is needed for a better evaluation of mutation status in MSI-H tumors to overcome ITH."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"Genetic approaches to identify pathological limitations in aortic smooth muscle contraction. Aortic smooth muscle contains limiting amounts of myosin light chain kinase (MLCK) for myosin regulatory light chain (RLC) phosphorylation and contraction that predisposes to thoracic aortic disease in humans containing heterozygous loss-of-function mutations in MYLK. We tested the hypothesis that thoracic aortic smooth muscle contraction may also be susceptible to variations in the smooth muscle-specific isoform of the motor protein myosin where inactivation of one Myh11 allele or the presence of one Myh11 missense variant associated with an increased risk of human aortic disease may result in a reduced force development response. Additionally, other kinds of smooth muscles may be less sensitive to the effects of mutations in one smooth muscle myosin allele, similar to results obtained with Mylk. Force development responses were reduced in aortic tissue from a conditional knockout of smooth muscle myosin heavy chain in adult mice (Myh11+/- or Myh11-/-) with a greater reduction with homozygous vs heterozygous tissues. Similar reductions in force responses were obtained with tissues containing either a heterozygous or homozygous knockin mutation in smooth muscle myosin heavy chain (Myh11+/R247C or Myh11R247C/R247C mutations that cause human aortic disease) with no significant changes in RLC phosphorylation. Agonist-dependent force responses were not reduced significantly in urinary bladder, ileal, or tracheal tissues from Myh11+/- mice while only ileal tissue showed a reduced force response in Myh11R247C/R247C mice. Thus, heterozygous mutations in Myh11 associated with reduced myosin function result in compromised contractile function primarily in aortic smooth muscle."	"Clinical and biological implications of mutational spectrum in acute myeloid leukemia of FAB subtypes M4 and M5. The mutational spectrum and molecular characteristics of acute myelomonocytic lineage leukemia, namely acute myeloid leukemia (AML) French-American-British (FAB) subtypes M4 and M5, are largely unknown. In order to explore the mutational spectrum and prognostic factors of FAB-M4 and -M5, next-generation sequencing (NGS) was performed to screen for mutated genes and fusion genes relevant to the pathogenesis of AML. Of the 63 patients enrolled in the study, 60% had more than three mutated genes. NPM1 had the highest mutation frequency, followed by DNMT3A, FLT3, NRAS, RUNX1, and TET2. Univariate analysis suggested that age ≥60 years was an independent factor for both poor event-free survival (EFS) and overall survival (OS, P = 0.009, 0.002, respectively), MYH11-CBFβ was associated with better EFS and OS (P = 0.029, 0.016, respectively). However, multivariate analysis was not able to identify any independent risk factor for survival in the cohort of FAB-M4 and -M5 patients, including peripheral white blood cell count, bone marrow blast percentage, MYH11-CBFβ, FLT3-ITD, mutations in NPM1 and DNMT3A, and allogeneic hematopoietic stem cell transplantation (allo-HSCT). Our study provided new insight into the mutational spectrum and molecular characteristics of FAB-M4 and -M5. The clinical implications of the genetic signature of FAB-M4 and -M5 need to be further elucidated by larger studies."	"Development and application of a rapid molecular method for detection of fusion genes in pediatric leukemia. Fusion gene detection is widely used in the diagnosis and treatment of leukemia. This study developed a rapid detection method of eight common pediatric leukemia fusion genes. In this study, one step multiplex RT-PCR assay was developed for the simultaneous detection of eight common leukemia fusion genes, including BCR-ABL, ETV6-RUNX1, MLL-AF4, E2A-PBX1, AML1-ETO, PML-RARα, CBFβ-MYH11 and SIL-TAL1. The single step RT-PCR approach is mediated by universal primers after obtaining total RNA from bone marrow specimens. The size of the amplified fragments were analyzed by capillary electrophoresis assay. A total of 122 patients with positive leukemia fusion genes were tested by real-time PCR. Respectively, 21 cases were detected as CBRB-MYH11 fusion gene, 13 cases were detected as SIL-TAL1 fusion gene, 16 cases were detected as ETV6-RUNX1 fusion gene, 16 cases were detected as E2A-PBX1 fusion gene, 15 cases were detected as PML-RARα fusion gene, 14 cases were detected as AML1-ETO fusion gene, 13 cases were detected as MLL-AF4 fusion gene, except for 1 case where no fusion gene was detected. This method has a high accuracy and detection rate. Therefore, one step multiplex RT-PCR combined with a capillary electrophoresis analysis system can be used as an important tool for the clinical diagnosis, treatment and prognosis of pediatric leukemia."	"Homozygous deletion in MYL9 expands the molecular basis of megacystis-microcolon-intestinal hypoperistalsis syndrome. Megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS) is a severe disease characterized by functional obstruction in the urinary and gastrointestinal tract. The molecular basis of this condition started to be defined recently, and the genes related to the syndrome (ACTG2-heterozygous variant in sporadic cases; and MYH11 (myosin heavy chain 11), LMOD1 (leiomodin 1) and MYLK (myosin light chain (MLC) kinase)-autosomal recessive inheritance), encode proteins involved in the smooth muscle contraction, supporting a myopathic basis for the disease. In the present article, we described a family with two affected siblings with MMIHS born to consanguineous parents and the molecular investigation performed to define the genetic etiology. Previous whole exome sequencing of the affected child and parents did not identify a candidate gene for the disease in this family, but now we present a reanalysis of the data that led to the identification of a homozygous deletion encompassing the last exon of MYL9 (myosin regulatory light chain 9) in the affected individual. MYL9 gene encodes a regulatory myosin MLC and the phosphorylation of this protein is a crucial step in the contraction process of smooth muscle cell. Despite the absence of human or animal phenotype related to MYL9, a cause-effect relationship between MYL9 and the MMIHS seems biologically plausible. The present study reveals a strong candidate gene for autosomal recessive forms of MMIHS, expanding the molecular basis of this disease and reinforces the myopathic basis of this condition."	"Distinct genetic alteration profiles of acute myeloid leukemia between Caucasian and Eastern Asian population. Racial and ethnic disparities in malignancies attract extensive attention. To investigate whether there are racial and ethnic disparities in genetic alteration between Caucasian and Eastern Asian population, data from several prospective AML trials were retrospectively analyzed in this study. We found that there were more patients with core binding factor (CBF) leukemia in Eastern Asian cohorts and there were different CBF leukemia constitutions between them. The ratios of CBF leukemia are 27.7, 22.1, 21.1, and 23.4%, respectively, in our (ChiCTR-TRC-10001202), another Chinese, Korean, and Japanese Eastern Asian cohorts, which are significantly higher than those in ECOG1900, MRC AML15, UK NCRI AML17, HOVON/SAKK AML-42, and German AML2003 (15.5, 12.5, 9.3, 10.2, and 12%, respectively). And CBFbeta-MYH11 occurred more prevalently in HOVON/SAKK AML- 42 and ECOG1900 trials (50.0 and 54.3% of CBF leukemia, respectively) than in Chinese and Japanese trials (20.1 and 20.8%, respectively). The proportion of FLT3-ITD mutation is 11.2% in our cohort, which is lower than that in MRC AML15 and UK NCRI AML17 (24.6 and 17.9%, respectively). Even after excluding the age bias, there are still different incidence rates of mutation between Caucasian and Eastern Asian population. These data suggest that there are racial and ethnic disparities in genetic alteration between Caucasian and Eastern Asian population."	"Resident cell lineages are preserved in pulmonary vascular remodeling. Pulmonary vascular remodeling is the main pathological hallmark of pulmonary hypertension disease. We undertook a comprehensive and multilevel approach to investigate the origin of smooth muscle actin-expressing cells in remodeled vessels. Transgenic mice that allow for specific, inducible, and permanent labeling of endothelial (Cdh5-tdTomato), smooth muscle (Acta2-, Myh11-tdTomato), pericyte (Cspg4-tdTomato), and fibroblast (Pdgfra-tdTomato) lineages were used to delineate the cellular origins of pulmonary vascular remodeling. Mapping the fate of major lung resident cell types revealed smooth muscle cells (SMCs) as the predominant source of cells that populate remodeled pulmonary vessels in chronic hypoxia and allergen-induced murine models. Combining in vivo cell type-specific, time-controlled labeling of proliferating cells with a pulmonary artery phenotypic explant assay, we identified proliferation of SMCs as an underlying remodeling pathomechanism. Multicolor immunofluorescence analysis showed a preserved pattern of cell type marker localization in murine and human pulmonary arteries, in both donors and idiopathic pulmonary arterial hypertension (IPAH) patients. Whilst neural glial antigen 2 (chondroitin sulfate proteoglycan 4) labeled mostly vascular supportive cells with partial overlap with SMC markers, PDGFRα-expressing cells were observed in the perivascular compartment. The luminal vessel side was lined by a single cell layer expressing endothelial markers followed by an adjacent and distinct layer defined by SMC marker expression and pronounced thickening in remodeled vessels. Quantitative flow cytometric analysis of single cell digests of diverse pulmonary artery layers showed the preserved separation into two discrete cell populations expressing either endothelial cell (EC) or SMC markers in human remodeled vessels. Additionally, we found no evidence of overlap between EC and SMC ultrastructural characteristics using electron microscopy in either donor or IPAH arteries. Lineage-specific marker expression profiles are retained during pulmonary vascular remodeling without any indication of cell type conversion. The expansion of resident SMCs is the major underlying and evolutionarily conserved paradigm of pulmonary vascular disease pathogenesis. © 2018 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"AK098656, a Novel Vascular Smooth Muscle Cell-Dominant Long Noncoding RNA, Promotes Hypertension. Recent studies reported some long noncoding RNAs (lncRNAs)-mediated vascular smooth muscle cells (VSMCs) phenotypic switch, which was a common pathophysiological process of vascular diseases. However, whether human-specific expressed lncRNAs would modulate VSMCs phenotype and participate into the pathogenesis of essential hypertension remains unclear. By comparing the circulating lncRNAs expression profiles between hypertensive patients and healthy controls, we identified a lncRNA-AK098656, strongly upregulated in the plasma of hypertensive patients, and predominantly expressed in VSMCs. AK098656 promoted VSMCs synthetic phenotype evidenced by increasing VSMC proliferation and migration, elevating extracellular matrix proteins, whereas lowering contractile proteins. Furthermore, AK098656 was demonstrated to directly bind with the VSMCs-specific contractile protein, myosin heavy chain-11, and an essential component of extracellular matrix, fibronectin-1, and finally lowered these protein levels through protein degradation. AK098656 was also shown to bind with 26S proteasome non-ATPase regulatory subunit 11 and facilitated myosin heavy chain-11 to interact with this protein. In vivo, AK098656 transgenic rats showed spontaneous development of hypertension, with elevated VSMCs synthetic phenotype and narrowed resistant arteries. Transgenic rats also showed slight cardiac hypertrophy without other complications, which was similar with early pathophysiological changes of hypertension. All these data indicated AK098656 as a new human VSMC-dominant lncRNA, which could promote hypertension through accelerating contractile protein degradation, increasing VSMC synthetic phenotype, and finally narrowed resistance arteries."	"Moyamoya-like cerebrovascular disease in a child with a novel mutation in myosin heavy chain 11. NA"	"Platelet-Derived Growth Factor Receptor-Alpha Expressing Cardiac Progenitor Cells Can Be Derived from Previously Cryopreserved Human Heart Samples. Cardiac progenitor cells (CPCs) are being developed as a promising treatment for heart failure. Although clinical trials have predominantly used donor cardiac biopsies to derive CPCs, a better solution could be to use previously cryopreserved human heart tissue. This would enable timely and convenient access to healthy and young heart samples for CPC production. However, few studies have attempted to isolate CPCs from previously cryopreserved heart tissue. In this study, we isolated CPCs from eight nondiseased human heart samples previously cryopreserved as part of the Sydney Heart Bank. Resulting cells were strongly positive for known fibroblast (DDR2, Vimentin), mesenchymal/CPC (PDGFRα, CD90) markers, and for pluripotency genes (SOX2, NANOG, MYC, KLF4), whereas being negative for the pan-hematopoietic marker (CD45). Outgrowth cells from aged hearts had decreased proliferative and self-renewing capacity that correlated with shorter telomere lengths compared with cells from young hearts. No telomerase activity was detected in any cells isolated. Colony-forming assays and fluorescence-activated cell sorting were used to enrich PDGFRα<sup>+</sup>/CD90<sup>+</sup>/CD31<sup>-</sup> CPCs. Multipotent potential was confirmed using in vitro differentiation assays with smooth muscle (MYH11<sup>+</sup>), endothelial cell (vWF<sup>+</sup>), and cardiomyocyte-like (cTnT<sup>+</sup>, α-actinin<sup>+</sup>) cell formation. Single cell assays demonstrated clonogenicity of PDGFRα<sup>+</sup> CPCs with maintenance of prolonged self-renewing capacity (&gt;2 months), and pluripotency gene expression at both early and late culture passages. Our results demonstrate that multipotent PDGFRα<sup>+</sup> CPCs can be harvested and expanded from previously banked cryopreserved human heart samples. These data support cardiac tissue banking as a strategy for improved access to CPCs for future clinical therapies."	"Coexistence of p210<sup>BCR-ABL</sup> and CBFβ-MYH11 fusion genes in myeloid leukemia: A report of 4 cases. Numerous acquired molecular and cytogenetic abnormalities are strongly associated with hematological malignancies. The breakpoint cluster region-ABL proto-oncogene 1 (BCR-ABL) rearrangement leads to a p210 chimeric protein in typical chronic myeloid leukemia (CML), whereas 17-25% of patients with acute lymphocytic leukemia and 0.9-3% patients with de novo acute myeloid leukemia (AML) carry a p190<sup>BCR-ABL</sup> fusion protein. Cases of patients with AML/CML carrying two specific primary molecular changes, BCR-ABL and core binding factor-β-myosin heavy chain 11 (CBFβ-MYH11) fusion genes have been rarely reported. The present study aimed to understand the nature and mechanism of this particular type of leukemia through case reports and literature review. A total of four patients who were diagnosed as AML/CML with BCR-ABL and CBFβ-MYH11 fusion genes in the First Affiliated Hospital of Soochow University (Suzhou, China) between January 2004 and December 2012 were examined. Morphological analysis of bone marrow cells, flow cytometry, quantitative polymerase chain reaction of p<sup>210BCR-ABL</sup> and CBFβ-MYH11 transcripts as well as cytogenetic and fluorescence in situ hybridization analyses were performed. A total of 4 patients who exhibited fusion of p<sup>210BCR-ABL</sup> and CBFβ-MYH11 were identified. A single patient (case 1) was first diagnosed CML-acute phase (AP), which progressed rapidly to CML-blast crisis (BC), and three patients (cases 2, 3 and 4) were diagnosed with AML with bone marrow eosinophilia at first presentation with no evidence of previous onset of CML. All cases achieved remission following conventional chemotherapy/hematological stem cell transplantation combined with the inhibitor of tyrosine kinase (TKI) maintenance therapy. The patients with CML carrying and expressing BCR-ABL and CBFβ-MYH11 fusion genes appeared more likely to rapidly progress to AP or BC. Therefore, the product of the CBFβ-MYH11 fusion gene may serve an important role in the transformation of CML. The co-expression of p<sup>210BCR-ABL</sup> and CBFβ-MYH11 fusion genes in myeloid leukemia may be a molecular event occurring not only during the development of CML, but also in AML."	"Identification of key genes, transcription factors and microRNAs involved in intracranial aneurysm. Intracranial aneurysm (IA) is a devastating disease, the pathogenesis of which remains to be elucidated. The present study aimed to determine the molecular mechanism of IA and to identify potential therapeutic targets using bioinformatics analysis. The GSE54083 dataset, which includes data from patients with ruptured IA and superficial temporal artery controls, was downloaded from the Gene Expression Omnibus, and differentially expressed genes (DEGs) were identified in the ruptured IA samples using the limma package in R. Subsequently, the Database for Annotation, Visualization and Integrated Discovery software was used to perform function and pathway enrichment analyses and the Search Tool for the Retrieval of Interacting Genes database was used to construct the protein‑protein interaction (PPI) network. Then, microRNA (miRNA) target and transcription factor (TF) target pairs were identified using the miR2Disease, MiRwalk2, ITFP and TRANSFAC databases. Finally, an integrated network of TF‑target‑miRNAs was constructed using Cytoscape. A total of 402 upregulated DEGs and 375 downregulated DEGs were identified from the ruptured IA samples compared with the superficial temporal artery samples. The majority of the upregulated DEGs were significantly enriched in the immune system development category, including CD40 ligand (CD40LG) and CD40 and the downregulated DEGs, such as striatin (STRN), were enriched in neuron projection development. In addition, nitric oxide synthase 1 (NOS1), a target of miRNA‑125b, and myosin heavy chain 11 (MYH11), a target of minichromosome maintenance complex component 4 (MCM4), had higher degree scores in the integrated network. These findings suggest that CD40, CD40LG, NOS1, STRN, MCM4, MYH11 and miR‑125b may be potential therapeutic targets for the treatment of IA."	"Multiplex fusion gene testing in pediatric acute myeloid leukemia. Gene abnormalities, particularly chromosome rearrangements generating gene fusion, are associated with clinical characteristics and prognosis in pediatric acute myeloid leukemia (AML). Karyotyping is generally performed to enable risk stratification, but the results are not always consistent with those of reverse transcription-polymerase chain reaction (RT-PCR), and more accurate and rapid methods are required. A total of 487 samples from de novo AML patients enrolled in the Japanese Pediatric Leukemia/Lymphoma Study Group (JPLSG) AML-05 study (n = 448), and from acute promyelocytic leukemia (APL) patients enrolled in the JPLSG AML-P05 study (n = 39) were available for this investigation. Multiplex quantitative RT-PCR was performed to detect eight important fusion genes: AML1(RUNX1)-ETO(RUNX1T1), CBFB-MYH11, MLL(KMT2A)-AF9(MLLT3), MLL-ELL, MLL-AF6(MLLT4), FUS(TLS)-ERG, NUP98-HOXA9, and PML-RARA. Fusion genes were detected in 207 (46.2%) of the 448 AML-05 patient samples. After exclusion of two samples with PML-RARA, no chromosomal abnormalities were identified on karyotyping in 19 of 205 patients (9.3%) positive for fusion genes on RT-PCR. Fusion genes were confirmed on fluorescence in situ hybridization (FISH) in 11 of these 19 patients. In contrast, fusion genes were detected in 37 of 39 patients (94.9%) from the AML-P05 study, and 33 of these results were consistent with the karyotyping. There were discrepancies in four patients (10.8%), three with normal karyotypes and one in whom karyotyping was not possible. All four of these patients were PML-RARA positive on FISH. Multiplex quantitative RT-PCR-based fusion gene screening may be effective for diagnosis of pediatric AML."	"Monitoring of fusion gene transcripts to predict relapse in pediatric acute myeloid leukemia. In acute myeloid leukemia (AML), accurate detection of minimal residual disease (MRD) enables better risk-stratified therapy. There are few studies, however, on the monitoring of multiple fusion transcripts and evaluation of their accuracy as indicators of MRD at multiple time points. We retrospectively examined RNA obtained from 82 pediatric AML patients enrolled in the Japanese Pediatric Leukemia/Lymphoma Study Group (JPLSG) AML-05 study. The expression of six important fusion transcripts (AML1(RUNX1)-ETO, CBFB-MYH11, MLL(KMT2A)-AF9, MLL-ELL, MLL-AF6, and FUS-ERG) was analyzed at five time points 30-40 days apart following diagnosis. In patients with AML1-ETO (n = 36 at time point 5), all six patients with &gt;3,000 copies and four of 30 patients with ≤3,000 copies relapsed. AML1-ETO transcripts persisted during treatment even in patients without relapse, as well as CBFB-MYH11 transcripts. In contrast, in patients with MLL-AF9 (n = 9 at time point 5), two patients were positive for MLL-AF9 expression (&gt;50 copies) and both relapsed. Only one of seven MLL-AF9-negative patients relapsed. In the AML1-ETO group, MRD-positive patients (&gt;3,000 copies at time point 5) had significantly lower relapse-free survival (RFS; P &lt; 0.0001) and overall survival (OS; P = 0.009) than MRD-negative patients. Similarly, in the MLL-AF9 group, MRD-positive patients (&gt;50 copies at time point 5) had significantly lower RFS (P = 0.002) and OS (P = 0.002) than MRD-negative patients. Detection of MLL-AF9 transcripts on real-time quantitative polymerase chain reaction is a promising marker of relapse in pediatric AML. In contrast, the clinical utility of detecting AML1-ETO and CBFB-MYH11 expression is limited, although higher AML1-ETO expression can be a potential predictor of relapse when assessed according to an optimal threshold."	"Idiopathic gastroparesis is associated with specific transcriptional changes in the gastric muscularis externa. The molecular changes that occur in the stomach that are associated with idiopathic gastroparesis are poorly described. The aim of this study was to use quantitative analysis of mRNA expression to identify changes in mRNAs encoding proteins required for the normal motility functions of the stomach. Full-thickness stomach biopsy samples were collected from non-diabetic control subjects who exhibited no symptoms of gastroparesis and from patients with idiopathic gastroparesis. mRNA was isolated from the muscularis externa and mRNA expression levels were determined by quantitative reverse transcriptase (RT)-PCR. Smooth muscle tissue from idiopathic gastroparesis patients had decreased expression of mRNAs encoding several contractile proteins, such as MYH11 and MYLK1. Conversely, there was no significant change in mRNAs characteristic of interstitial cells of Cajal (ICCs) such as KIT or ANO1. There was also a significant decrease in mRNA-encoding platelet-derived growth factor receptor α (PDGFRα) and its ligand PDGFB and in Heme oxygenase 1 in idiopathic gastroparesis subjects. In contrast, there was a small increase in mRNA characteristic of neurons. Although there was not an overall change in KIT expression in gastroparesis patients, KIT expression showed a significant correlation with gastric emptying whereas changes in MYLK1, ANO1 and PDGFRα showed weak correlations to the fullness/satiety subscore of patient assessment of upper gastrointestinal disorder-symptom severity index scores. Our findings suggest that idiopathic gastroparesis is associated with altered smooth muscle cell contractile protein expression and loss of PDGFRα<sup>+</sup> cells without a significant change in ICCs."	"Chd7 deficiency delays leukemogenesis in mice induced by Cbfb-MYH11. Inversion of chromosome 16 is a consistent finding in patients with acute myeloid leukemia subtype M4 with eosinophilia, which generates a CBFB-MYH11 fusion gene. Previous studies showed that the interaction between CBFβ-smooth muscle myosin heavy chain (SMMHC; encoded by CBFB-MYH11) and RUNX1 plays a critical role in the pathogenesis of this leukemia. Recently, it was shown that chromodomain helicase DNA-binding protein-7 (CHD7) interacts with RUNX1 and suppresses RUNX1-induced expansion of hematopoietic stem and progenitor cells. These results suggest that CHD7 is also critical for CBFB-MYH11-induced leukemogenesis. To test this hypothesis, we generated Chd7<sup>f</sup><sup>/f</sup>Mx1-CreCbfb<sup>+/56M</sup> mice, which expressed the Cbfb-MYH11 fusion gene and deactivated Chd7 in hematopoietic cells upon inducing Cre with polyinosinic-polycytidylic acid. The Lin<sup>-</sup>Sca1<sup>-</sup>c-Kit<sup>+</sup> (LK) population was significantly lower in Chd7<sup>f/f</sup>Mx1-CreCbfb<sup>+/56M</sup> mice than in Mx1-CreCbfb<sup>+/56M</sup> mice. In addition, there were fewer 5-bromo-2'-deoxyuridine-positive cells in the LK population in Chd7<sup>f/f</sup>Mx1-CreCbfb<sup>+/56M</sup> mice, and genes associated with cell cycle, cell growth, and proliferation were differentially expressed between Chd7<sup>f/f</sup>Mx1-CreCbfb<sup>+/56M</sup> and Mx1-CreCbfb<sup>+/56M</sup> leukemic cells. In vitro studies showed that CHD7 interacted with CBFβ-SMMHC through RUNX1 and that CHD7 enhanced transcriptional activity of RUNX1 and CBFβ-SMMHC on Csf1r, a RUNX1 target gene. Moreover, RNA sequencing of c-Kit<sup>+</sup> cells showed that CHD7 functions mostly through altering the expression of RUNX1 target genes. Most importantly, Chd7 deficiency delayed Cbfb-MYH11-induced leukemia in both primary and transplanted mice. These data indicate that Chd7 is important for Cbfb-MYH11-induced leukemogenesis by facilitating RUNX1 regulation of transcription and cellular proliferation."	"WT1 Is Necessary for the Proliferation and Migration of Cells of Renin Lineage Following Kidney Podocyte Depletion. Wilms' tumor suppressor 1 (WT1) plays an important role in cell proliferation and mesenchymal-epithelial balance in normal development and disease. Here, we show that following podocyte depletion in three experimental models, and in patients with focal segmental glomerulosclerosis (FSGS) and membranous nephropathy, WT1 increased significantly in cells of renin lineage (CoRL). In an animal model of FSGS in RenWt1<sup>fl/fl</sup> reporter mice with inducible deletion of WT1 in CoRL, CoRL proliferation and migration to the glomerulus was reduced, and glomerular disease was worse compared with wild-type mice. To become podocytes, CoRL undergo mesenchymal-to-epithelial transformation (MET), typified by reduced staining for mesenchymal markers (MYH11, SM22, αSMA) and de novo expression of epithelial markers (E-cadherin and cytokeratin18). Evidence for changes in MET markers was barely detected in RenWt1<sup>fl/fl</sup> mice. Our results show that following podocyte depletion, WT1 plays essential roles in CoRL proliferation and migration toward an adult podocyte fate."	"Acute myeloid leukaemia (FAB AML-M4Eo) with cryptic insertion of cbfb resulting in cbfb-Myh11 fusion. Inv(16)(p13q22) and t(16;16)(p13;q22) are cytogenetic hallmarks of acute myelomonoblastic leukaemia, most of them associated with abnormal bone marrow eosinophils [acute myeloid leukaemia French-American-British classification M4 with eosinophilia (FAB AML-M4Eo)] and a relatively favourable clinical course. They generate a 5'CBFB-3'MYH11 fusion gene. However, in a few cases, although RT-PCR identified a CBFB-MYH11 transcript, normal karyotype and/or fluorescent in situ hybridization (FISH) analyses using commercially available probes are found. We identified a 32-year-old woman with AML-M4Eo and normal karyotype and FISH results. Using two libraries of Bacterial Artificial Chromosome clones on 16p13 and 16q22, FISH analyses identified an insertion of 16q22 material in band 16p13, generating a CBFB-MYH11 type A transcript. Although very rare, insertions should be searched for in patients with discordant cytological and cytogenetic features because of the therapeutic consequences. Copyright © 2015 John Wiley &amp; Sons, Ltd."	"Distinct molecular subtypes of uterine leiomyosarcoma respond differently to chemotherapy treatment. Uterine leiomyosarcoma (ULMS) is an aggressive form of soft tissue tumors. The molecular heterogeneity and pathogenesis of ULMS are not well understood. Expression profiling data were used to determine the possibility and optimal number of ULMS molecular subtypes. Next, clinicopathological characters and molecular pathways were analyzed in each subtype to prospect the clinical applications and progression mechanisms of ULMS. Two distinct molecular subtypes of ULMS were defined based on different gene expression signatures. Subtype I ULMS recapitulated low-grade ULMS, the gene expression pattern of which resembled normal smooth muscle cells, characterized by overexpression of smooth muscle function genes such as LMOD1, SLMAP, MYLK, MYH11. In contrast, subtype II ULMS recapitulated high-grade ULMS with higher tumor weight and invasion rate, and was characterized by overexpression of genes involved in the pathway of epithelial to mesenchymal transition and tumorigenesis, such as CDK6, MAPK13 and HOXA1. We identified two distinct molecular subtypes of ULMS responding differently to chemotherapy treatment. Our findings provide a better understanding of ULMS intrinsic molecular subtypes, and will potentially facilitate the development of subtype-specific diagnosis biomarkers and therapy strategies for these tumors."	"Genetic abnormalities in core binding factor acute myeloid leukemia. Acute myeloid leukemia (AML) is a genetically heterogeneous disease, and its prognosis is stratified on the basis of chromosomal and genetic alterations. Core binding factor (CBF) leukemia consists of AML with t (8;21) (p22;q22) and inv16 (q16q16) /t (16;16) (q16;q16) and is included in AML with recurrent genetic abnormality according to WHO classification. Although CBF-AML is categorized as favorable-risk AML, approximately 40% of patients show relapse. The t (8;21) and inv16 (q16q16) /t (16;16) (q16;q16) result in RUNX1-RUNX1T1 and CBFB-MYH11 fusion genes, respectively; however, the fusion proteins encoded by these genes alone are insufficient for the development of leukemia. Activating kinase mutations in KIT, FLT3, and N-RAS have been frequently found, and their cooperation with RUNX1-RUNX1T1 or CBFB-MYH11 is thought to be crucial for leukemogenesis in CBF-AML. Recently, mutations in ASXL2, ZBTB7A, CCND2, and DHX15 have been frequently identified in t (8;21) AML, but their biological and clinical significance have not been elucidated. Thus, a combination of several genetic alterations is associated with the development of CBF-AML, and comprehensive genetic analysis is necessary for the stratification of this leukemia. CBF-AML is a still heterogeneous disease entity, and it is necessary to elucidate the combinations of genomic abnormalities and clonal evolutions for better understanding of the disease and to develop a new treatment strategy."	"Identification of Novel Clinically Relevant Variants in 70 Southern Chinese patients with Thoracic Aortic Aneurysm and Dissection by Next-generation Sequencing. Thoracic Aortic Aneurysm and Dissection (TAAD) is a life-threatening pathology and remains challenging worldwide. Up to 40% of TAAD are hereditary with complex heterogeneous genetic backgrounds. Recently, next-generation sequencing (NGS) has been successfully applied to identify genetic variants in an efficient and cost-effective manner. In our study, NGS coupled with DNA target-capture array was used to screen 11 known causative genes of TAAD in 70 patients from Southern China. All the identified variants were confirmed by Sanger sequencing. We identified forty variants in 36 patients (51.4%), including three known pathogenic (7.5%), 10 likely pathogenic variants (25%, 9 in FBN1, 1 in ACTA2), and 27 variants with uncertain significance (VUS) (67.5%). Among the 27 VUS, 14 (51.9%) were in the FBN1 gene, 3 in Col5A2, 2 in ACTA2, 2 in MYH11, 2 in MYLK, 2 in SLC2A10, 1 in MSTN and 1 in SMAD3 respectively. Based on the segregation data and independent reports, five known likely pathogenic variants and four VUS were upgraded to pathogenic variant and likely pathogenic variant respectively. Our data indicate that NGS is a highly efficient genetic method for identification of pathogenic variants in TAAD patients."	"An X-linked Myh11-CreER<sup>T2</sup> mouse line resulting from Y to X chromosome-translocation of the Cre allele. The Myh11-CreER<sup>T2</sup> mouse line (Cre<sup>+</sup> ) has gained increasing application because of its high lineage specificity relative to other Cre drivers targeting smooth muscle cells (SMCs). This Cre allele, however, was initially inserted into the Y chromosome (X/Y<sup>Cre+</sup> ), which excluded its application in female mice. Our group established a Cre<sup>+</sup> colony from male ancestors. Surprisingly, genotype screening identified female carriers that stably transmitted the Cre allele to the following generations. Crossbreeding experiments revealed a pattern of X-linked inheritance for the transgene (k &gt; 1000), indicating that these female carries acquired the Cre allele through a mechanism of Y to X chromosome translocation. Further characterization demonstrated that in hemizygous X/X<sup>Cre+</sup> mice Cre activity was restricted to a subset arterial SMCs, with Cre expression in arteries decreased by 50% compared to X/Y<sup>Cre+</sup> mice. This mosaicism, however, diminished in homozygous X<sup>Cre+</sup> /X<sup>Cre+</sup> mice. In a model of aortic aneurysm induced by a SMC-specific Tgfbr1 deletion, the homozygous X<sup>Cre+</sup> /X<sup>Cre+</sup> Cre driver unmasked the aortic phenotype that is otherwise subclinical when driven by the hemizygous X/X<sup>Cre+</sup> Cre line. In conclusion, the Cre allele carried by this female mouse line is located on the X chromosome and subjected to X-inactivation. The homozygous X<sup>Cre+</sup> /X<sup>Cre+</sup> mice produce uniform Cre activity in arterial SMCs."	"Therapy-related acute myeloid leukemia with inv(16) after successful therapy for de novo acute myeloid leukemia with t(8;21). NA"	"The C-terminal multimerization domain is essential for leukemia development by CBFβ-SMMHC in a mouse knockin model. NA"	"Amalaki rasayana, a traditional Indian drug enhances cardiac mitochondrial and contractile functions and improves cardiac function in rats with hypertrophy. We evaluated the cardioprotective effect of Amalaki Rasayana (AR), a rejuvenating Ayurvedic drug prepared from Phyllanthus emblica fruits in the reversal of remodeling changes in pressure overload left ventricular cardiac hypertrophy (LVH) and age-associated cardiac dysfunction in male Wistar rats. Six groups (aging groups) of 3 months old animals were given either AR or ghee and honey (GH) orally; seventh group was untreated. Ascending aorta was constricted using titanium clips in 3 months old rats (N = 24; AC groups) and after 6 months, AR or GH was given for further 12 months to two groups; one group was untreated. Histology, gene and protein expression analysis were done in heart tissues. Chemical composition of AR was analyzed by HPLC, HPTLC and LC-MS. AR intake improved (P &lt; 0.05) cardiac function in aging rats and decreased LVH (P &lt; 0.05) in AC rats as well as increased (P &lt; 0.05) fatigue time in treadmill exercise in both groups. In heart tissues of AR administered rats of both the groups, SERCA2, CaM, Myh11, antioxidant, autophagy, oxidative phosphorylation and TCA cycle proteins were up regulated. ADRB1/2 and pCREB expression were increased; pAMPK, NF-kB were decreased. AR has thus a beneficial effect on myocardial energetics, muscle contractile function and exercise tolerance capacity."	"Bioinformatics analysis of RNA-seq data revealed critical genes in colon adenocarcinoma. RNA-seq data of colon adenocarcinoma (COAD) were analyzed with bioinformatics tools to discover critical genes in the disease. Relevant small molecule drugs, transcription factors (TFs) and microRNAs (miRNAs) were also investigated. RNA-seq data of COAD were downloaded from The Cancer Genome Atlas (TCGA). Differential analysis was performed with package edgeR. False positive discovery (FDR) &lt; 0.05 and |log2 (fold change)|&gt;1 were set as the cut-offs to screen out differentially expressed genes (DEGs). Gene coexpression network was constructed with package Ebcoexpress. GO enrichment analysis was performed for the DEGs in the gene coexpression network with DAVID. Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analysis was also performed for the genes with KOBASS 2.0. Modules were identified with MCODE of Cytoscape. Relevant small molecules drugs were predicted by Connectivity map. Relevant miRNAs and TFs were searched by WebGestalt. A total of 457 DEGs, including 255 up-regulated and 202 down-regulated genes, were identified from 437 COAD and 39 control samples. A gene coexpression network was constructed containing 40 DEGs and 101 edges. The genes were mainly associated with collagen fibril organization, extracellular matrix organization and translation. Two modules were identified from the gene coexpression network, which were implicated in muscle contraction and extracellular matrix organization, respectively. Several critical genes were disclosed, such as MYH11, COL5A2 and ribosomal proteins. Nine relevant small molecule drugs were identified, such as scriptaid and STOCK1N-35874. Accordingly, a total of 17 TFs and 10 miRNAs related to COAD were acquired, such as ETS2, NFAT, AP4, miR-124A, MiR-9, miR-96 and let-7. Several critical genes and relevant drugs, TFs and miRNAs were revealed in COAD. These findings could advance the understanding of the disease and benefit therapy development."	"Detection and Quantification of Acute Myeloid Leukemia-Associated Fusion Transcripts. Real-time quantitative reverse transcription polymerase chain reaction (RT-qPCR)-based detection of abnormal fusion transcripts is an important strategy for the diagnosis and monitoring of patients with acute myeloid leukemia (AML) with t(8;21)(q22;q22); RUNX1-RUNX1T1, inv(16)(p13.1;q22); CBFB-MYH11 or t(15;17)(q22;q12); PML-RARA. In RT-qPCR assays, patient-derived cDNA is subjected to amplification using PCR primers directed against the fusion transcript of interest as well as a reference gene for normalization. Quantification is typically performed by constructing standard curves for each PCR run using a series of plasmid standards of known concentration that harbor the same fusion transcript or the same reference gene of interest. Fusion transcripts and reference gene copy numbers are then calculated in patient samples using these standard curves. The process of constructing standard curves is laborious and consumes additional reagents. In this chapter, we give the method details for a multiplex RT-qPCR strategy to detect and quantify the acute myeloid leukemia (AML)-associated fusion transcripts PML-RARA in patients with t(15;17) without the need for standard curves. This general method can also be applied to other AML-associated fusion transcripts such as CBFB-MYH11 and RUNX1-RUNX1T1."	"Loss-of-Function Variants in MYLK Cause Recessive Megacystis Microcolon Intestinal Hypoperistalsis Syndrome. Megacystis microcolon intestinal hypoperistalsis syndrome (MMIHS) is a congenital disorder characterized by loss of smooth muscle contraction in the bladder and intestine. To date, three genes are known to be involved in MMIHS pathogenesis: ACTG2, MYH11, and LMOD1. However, for approximately 10% of affected individuals, the genetic cause of the disease is unknown, suggesting that other loci are most likely involved. Here, we report on three MMIHS-affected subjects from two consanguineous families with no variants in the known MMIHS-associated genes. By performing homozygosity mapping and whole-exome sequencing, we found homozygous variants in myosin light chain kinase (MYLK) in both families. We identified a 7 bp duplication (c.3838_3844dupGAAAGCG [p.Glu1282_Glyfs<sup>∗</sup>51]) in one family and a putative splice-site variant (c.3985+5C&gt;A) in the other. Expression studies and splicing assays indicated that both variants affect normal MYLK expression. Because MYLK encodes an important kinase required for myosin activation and subsequent interaction with actin filaments, it is likely that in its absence, contraction of smooth muscle cells is impaired. The existence of a conditional-Mylk-knockout mouse model with severe gut dysmotility and abnormal function of the bladder supports the involvement of this gene in MMIHS pathogenesis. In aggregate, our findings implicate MYLK as a gene involved in the recessive form of MMIHS, confirming that this disease of the visceral organs is heterogeneous with a myopathic origin."	"Copy number alterations determined by single nucleotide polymorphism array testing in the clinical laboratory are indicative of gene fusions in pediatric cancer patients. Gene fusions resulting from structural rearrangements are an established mechanism of tumorigenesis in pediatric cancer. In this clinical cohort, 1,350 single nucleotide polymorphism (SNP)-based chromosomal microarrays from 1,211 pediatric cancer patients were evaluated for copy number alterations (CNAs) associated with gene fusions. Karyotype or fluorescence in situ hybridization studies were performed in 42% of the patients. Ten percent of the bone marrow or solid tumor specimens had SNP array-associated CNAs suggestive of a gene fusion. Alterations involving ETV6, ABL1-NUP214, EBF1-PDGFRB, KMT2A(MLL), LMO2-RAG, MYH11-CBFB, NSD1-NUP98, PBX1, STIL-TAL1, ZNF384-TCF3, P2RY8-CRLF2, and RUNX1T1-RUNX1 fusions were detected in the bone marrow samples. The most common alteration among the low-grade gliomas was a 7q34 tandem duplication resulting in a KIAA1549-BRAF fusion. Additional fusions identified in the pediatric brain tumors included FAM131B-BRAF and RAF1-QKI. COL1A1-PDGFB, CRTC1-MAML2, EWSR1, HEY1, PAX3- and PAX7-FOXO1, and PLAG1 fusions were determined in a variety of solid tumors and a novel potential gene fusion, FGFR1-USP6, was detected in an aneurysmal bone cyst. The identification of these gene fusions was instrumental in tumor diagnosis. In contrast to hematologic and solid tumors in adults that are predominantly driven by mutations, the majority of hematologic and solid tumors in children are characterized by CNAs and gene fusions. Chromosomal microarray analysis is therefore a robust platform to identify diagnostic and prognostic markers in the clinical setting."	"Acute Myeloid Leukemia With Inv(16)(p13q22) Associated With Hidden Systemic Mastocytosis: Case Report and Review of Literature. Systemic mastocytosis (SM) is a condition associated with clonal neoplastic proliferation of mast cells. In up to 40% of systemic mastocytosis cases, an associated clonal hematological disease of non-mast cell lineage, such as acute myeloid leukemia (AML), is diagnosed before, simultaneously with, or after the diagnosis of SM. Herein, we report a case of a 30-year-old man diagnosed with AML with inv(16) (p13;q22) CBFB:MYH11. Associated mastocytosis was not noted at diagnosis and was only detected in the bone marrow at time of remission after successful chemotherapy. The diagnosis of mastocytosis was based on the demonstration of a multifocal dense mast cell infiltrate in the marrow biopsy with aberrant immunophenotype, with coexpression of tryptase, CD117, and CD25. The mast cells showed atypical morphology mostly with irregular nuclear contour, bilobed or multilobed nuclei with cytoplasmic hypogranulation or irregular metachromatic granule distribution, and some cells with eccentric nucleus or spindle shape. Reexamination of the pretherapeutic bone marrow with immunostain for tryptase and CD25 revealed that mastocytosis was present from the start but masked by extensive blast proliferation. This case indicates that mast cell infiltrates are sometimes underappreciated at the original diagnosis of AML with inv(16) and that the concurrent diagnosis of SM with AML requires a high index of suspicion supported with comprehensive morphologic and immunohistochemical evaluation for a neoplastic mast cell proliferation."	"Quantitative assessment of Wilms tumor 1 expression by real-time quantitative polymerase chain reaction in patients with acute myeloblastic leukemia. The Wilms tumor 1 (WT1) gene is originally defined as a tumor suppressor gene and a transcription factor that overexpressed in leukemic cells. It is highly expressed in more than 80% of acute myeloid leukemia (AML) patients, both in bone marrow (BM) and in peripheral blood (PB), and it is used as a powerful and independent marker of minimal residual disease (MRD); we have determined the expression levels of the WT1 by real-time quantitative polymerase chain reaction (RQ-PCR) in PB and BM in 126 newly diagnosed AML patients. This study was done in molecular pathology and cancer research center from April 2014 to June 2015, RQ-PCR method was used to determine the WT1 gene expression in BM and/or PB samples from 126 patients of AML, we cloned both WT1 and ABL genes for creating a standard curve, and we calculate copy number of WT1 genes in patients. A total of 126 AML patients consist of 70 males (55.6%) and 56 females (44.4%), with a median age of 26 years; 104 (81%) patients out of 126 show overexpression of WT1 gene. We also concomitant monitoring of fusion transcripts (PML RARa, AML1-ETO, MLL-MLL, CBFb-MYH11, or DEK-CAN) in our patients, the AML1-ETO group showing remarkably low levels of WT1 compared with other fusion transcript and the CBFB-MYH11 showing high levels of WT1. We conclude that WT1 expression by RQ-PCR in AML patients may be employed as an independent tool to detect MRD in the majority of normal karyotype AML patients."	"Next generation sequencing analysis of patients with familial cervical artery dissection. The cause of cervical artery dissection is not well understood. We test the hypothesis that mutations in genes associated with known arterial connective tissue disorders are enriched in patients with familial cervical artery dissection. Patient duos from nine pedigrees with familial cervical artery dissection were analyzed by whole exome sequencing. Single nucleotide variants in a panel of 11 candidate genes (ACTA2, MYH11, FBN1, TGFBR1, TGFBR2, TGFB2, COL3A1, COL4A1, SMAD3, MYLK and SLC2A10) were prioritized according to functionality (stop-loss, nonsense, and missense variants with polyphen-2 score ≥0.95). Variants classified as &quot;benign&quot; or &quot;likely benign&quot; in the ClinVar database were excluded from further analysis. For comparison, non-benign stop-loss, nonsense and missense variants with polyphen-2 score ≥0.95 in the same panel of candidate genes were identified in the European non-Finnish population of the ExAC database (n = 33,370). Non-benign Single nucleotide variants in both affected patients were identified in four of the nine cervical artery dissection families (COL3A1; Gly324Ser, FBN1: Arg2554Trp, COL4A1: Pro116Leu, and TGFBR2: Ala292Thr) yielding an allele frequency of 22.2% (4/18). In the comparison group, 1782 variants were present in 33,370 subjects from the ExAC database (allele frequency: 1782/66,740 = 2.7%; p = 0.0008; odds ratio = 14.2; 95% confidence interval = 3.8-52.9). Cervical artery dissection families showed enrichment for non-benign variants in genes associated with arterial connective tissue disorders. The observation that findings differed across families indicates genetic heterogeneity of familial cervical artery dissection."	"Molecular Characterization of Pediatric Acute Myeloid Leukemia: Results of a Multicentric Study in Brazil. The biological characterization of childhood acute myeloid leukemia (c-AML) is an important outcome predictor. In Brazil, very little is known about the frequency of AML subgroups, although c-AML accounts for about 18% of leukemias. We carried out this study to investigate the contribution of type I and II gene mutations in the probability of overall survival (pOS) of c-AML in Brazil. Seven hundred and three de novo pediatric AML cases (2000-2015) were assessed throughout a multicentric network study. Mutations in hotspot regions of FLT3, NRAS, KRAS, PTPN11, and c-KIT genes were analyzed as well as fusion genes (RUNX1-RUNX1T1, MLL/KMT2A-r, CBFβ-MYH11, and PML-RARα) associated with AML. Patients were treated out of the clinical trial although following the BFM-AML2004 protocol. Acute promyelocytic leukemia (APL) was treated differently. AML with Down syndrome was excluded. There were significant differences in gene mutations among age ranges (≤2 years-old; &gt;2-10 years old and ≥11 years old) and the nonrandom association between type I/II mutations. Lower white blood cell count (≤50 × 10<sup>9</sup>/L) was associated with RUNX1-RUNX1T1, whereas higher WBC with CBFβ-MYH11 (p &lt;0.05). Cumulative pOS in 5 years was 37.7 ± 2.8% for total AMLs and 59.8 ± 6.2% for APL (p = 0.03). pOS differences were observed between Brazilian regions. The South-Southeast regions had a better 5-year pOS, whereas the Midwest region presented the poorest pOS (23.7 ± 4.9%). PTPN11 mutations conferred an adverse prognosis as an independent prognostic factor. Identification of genetic subgroups contributes to the molecular epidemiology and biology of AML worldwide, reflecting the profile of pediatric AML cases in Brazil."	"Enhancing acute myeloid leukemia therapy - monitoring response using residual disease testing as a guide to therapeutic decision-making. Current standards for monitoring the response of acute myeloid leukemia (AML) are based on morphologic assessments of the bone marrow and recovery of peripheral blood counts. A growing experience is being developed to enhance the detection of small amounts of AML, or minimal residual disease (MRD). Areas covered: Available techniques include multi-color flow cytometry (MFC) of leukemia associated immunophenotypes (LAIP), quantitative reverse transcriptase polymerase chain reaction (QRT-PCR) for detecting fusion and mutated genes (RUNX1-RUNX1T1, CBFB-MYH11, and NPM1), overexpression of genes such as WT1, and next generation sequencing (NGS) for MRD. Expert commentary: While MRD monitoring is standard of care in some leukemia subsets such as acute promyelocytic leukemia, this approach for the broader AML population does not universally predict outcomes as some patients may experience relapse in the setting of undetectable leukemia while others show no obvious disease progression despite MRD positivity. However, there are instances where MRD can identify patients at increased risk for relapse that may change recommended therapy. Currently, prospective investigations to define clinically relevant MRD thresholds are ongoing. Risk-adapted trials are needed to best define the use of MRD in the follow up of AML patients after initial induction therapy."	"An Autopsy Case of Sudden Unexpected Death of a Young Adult in a Hot Bath: Molecular Analysis Using Next-Generation DNA Sequencing. We report a case of sudden unexpected death of a young woman who was found in a bathtub of hot water. The autopsy concluded that all possible causes of sudden loss of consciousness, except cardiac origin, could be excluded. However, the heart did not show any obvious pathological changes. We used next-generation DNA sequencing (NGS) to examine 73 genes and detected 3 rare, potentially pathogenic variants with minor allele frequencies ⩽1.0%. The pathogenicity of these variants was evaluated using 8 in silico predictive algorithms, and SCN5A_p.Gly289Ser, CACNB2_p.Ser502Leu, and MYH11_p.Lys1573Glu were detected as possible pathogenic variants. Inherited heart disease is a likely cause of sudden unexpected deaths of young people in hot baths, even before the clinical manifestation of the disease. In the future, molecular analysis by NGS may help to predict young to early middle-aged people who could be at risk of sudden arrhythmogenic fatality in hot baths."	"Taxotere-induced elevated expression of IL8 in carcinoma-associated fibroblasts of breast invasive ductal cancer. Breast cancer is the most common malignant tumor in women worldwide, and accounts for an estimated 29% of new cases and 15% of cancer-associated mortalities each year. Invasive ductal carcinoma represents 70-80% of all breast cancer cases, which are responsible for the majority of breast cancer fatalities. Though great progress has been made in understanding the tumorigenesis and development of breast cancer, problems surrounding treatment persist. It was previously reported that carcinoma-associated fibroblasts (CAFs) may be closely associated with chemotherapy resistance. In the present study, primary-cultured CAFs from surgically resected breast invasive ductal cancer tissues were prepared and tested to clarify the change of gene expression profile following treatment with 20 ng/ml Taxotere<sup>®</sup> for 24 h through microarray analysis. In addition, quantitative polymerase chain reaction and western blotting were performed to compare the gene and protein expression of the candidate gene in CAFs prior to and following Taxotere treatment. Based on the obtained data, 35 differentially expressed genes were identified, including ACTA2, ACTC1, ACTG, ALDH1B1, AMY1A, C5orf13, CNN1, CXCR7, DDAH1, FGF1, PDLIM3, MAMLD1, MYH11, OXTR, PDLIM5, RARRES1, SERPINA3, TRIL, C14orf43, C1orf51, CXCL12, CXCL2, EGR2, EGR3, IER3, interleukin (IL)8, IRF1, JUNB, MMP1, NAV2, NFKBIA, NFKBIZ, TRIB1, WNT16 and ZC3H12A. It was observed that the expression of the candidate gene IL8 in the CAFs of breast invasive cancer following treatment with Taxotere was increased (P&lt;0.05). Overall, elevated expression of IL8 induced by Taxotere in CAFs potentially supports the association between IL8 and chemotherapy response."	"DNA Methylation Regulates Gene Expression in Intracranial Aneurysms. Different gene expression profiles are observed in intracranial aneurysm tissues. Understanding these genes and what regulates their expression will provide insight into the pathogenesis of intracranial aneurysms. We investigated whether differences in DNA methylation regulate gene expression in intracranial aneurysms. We compared 20 intracranial aneurysm tissue specimens with 20 matched specimens from the superficial temporal artery as controls. We identified the gene expression profiles in these samples using the GeneChip Human U133 Plus 2.0 array and evaluated DNA methylation modifications using the Infinium HumanMethylation450 BeadChip Kit. A total of 11,022 differentially methylated sites between aneurysm tissues and matched control tissues were identified, and 2142 differentially expressed gene transcripts were detected based on the 2 gene expression profiles. Gene Ontology and Kyoto Encyclopedia of Genes and Genomes analyses and verification analysis showed that the MYH11, LIFR, and TLR4 genes were associated with the occurrence and development of intracranial aneurysms. These genes mainly encode cell adhesion molecules or are involved in the NF-κB, JAK-STAT, and ERK/JNK signaling pathways. In the development of intracranial aneurysms, DNA methylation plays an important role in the regulation of genetic expression involved in immune and inflammatory reactions, cell function, cell maintenance, and cell signal transduction."	"Most Myeloid Neoplasms With Deletion of Chromosome 16q Are Distinct From Acute Myeloid Leukemia With Inv(16)(p13.1q22): A Bone Marrow Pathology Group Multicenter Study. Isolated deletion of the long arm of chromosome 16 (del(16q)) is rare in myeloid neoplasms (MNs) and was historically considered a variant of inv(16)(p13.1q22) (inv(16)), a subtype of acute myeloid leukemia (AML) associated with CBFB-MYH11 rearrangement and favorable prognosis. This study aims to determine clinicopathologic characteristics of patients with isolated del(16q) in MNs in comparison to AMLs with isolated inv(16). Clinicopathologic features were retrospectively reviewed in 18 MNs with del(16q) and 34 AMLs with inv(16) patients from seven institutions. MNs with del(16q) occurred in elderly patients, often as secondary MNs. Blood monocytes and marrow eosinophils were lower in del(16q) than inv(16). Deletion of CBFB but not CBFB-MYH11 rearrangement was confirmed by fluorescence in situ hybridization or reverse transcription polymerase chain reaction in 14 of 14 del(16q) patients. The median overall survival was shorter in del(16q) than in inv(16) patients (12 vs 94 months, log rank P = .0002). Myeloid neoplasms with isolated del(16q) with deletion of the CBFB but lacking CBFB-MYH11 rearrangement should not be considered a variant of the AML-defining inv(16)."	"Dual Function for Mature Vascular Smooth Muscle Cells During Arteriovenous Fistula Remodeling. The arteriovenous fistula (AVF) is the preferred form of hemodialysis access for patients with chronic kidney disease. However, AVFs are associated with significant problems including high incidence of both early and late failures, usually attributed to inadequate venous arterialization and neointimal hyperplasia, respectively. Understanding the cellular basis of venous remodeling in the setting of AVF could provide targets for improving AVF patency rates. A novel vascular smooth muscle cell (VSMC) lineage tracing reporter mouse, Myh11-Cre/ERT2-mTmG, was used to track mature VSMCs in a clinically relevant AVF mouse model created by a jugular vein branch end to carotid artery side anastomosis. Prior to AVF surgery, differentiated medial layer VSMCs were labeled with membrane green fluorescent protein (GFP) following tamoxifen induction. Four weeks after AVF surgery, we observed medial VSMC layer thickening in the middle region of the arterialized vein branch. This thickened medial VSMC layer was solely composed of differentiated VSMCs that were GFP+/MYH11+/Ki67-. Extensive neointimal hyperplasia occurred in the AVF region proximal to the anastomosis site. Dedifferentiated VSMCs (GFP+/MYH11-) were a major cellular component of the neointima. Examination of failed human AVF samples revealed that the processes of VSMC phenotypic modulation and intimal hyperplasia, as well as medial VSMC layer thickening, also occurred in human AVFs. We demonstrated a dual function for mature VSMCs in AVF remodeling, with differentiated VSMCs contributing to medial wall thickening towards venous maturation and dedifferentiated VSMCs contributing to neointimal hyperplasia. These results provide valuable insights into the mechanisms underlying venous adaptations during AVF remodeling."	"Identification of key pathways and genes influencing prognosis in bladder urothelial carcinoma. Genomic profiling can be used to identify the predictive effect of genomic subsets for determining prognosis in bladder urothelial carcinoma (BUC) after radical cystectomy. This study aimed to investigate potential gene and pathway markers associated with prognosis in BUC. A microarray dataset of BUC was obtained from The Cancer Genome Atlas database. Differentially expressed genes (DEGs) were identified by DESeq of the R platform. Kaplan-Meier analysis was applied for prognostic markers. Key pathways and genes were identified using bioinformatics tools, such as gene set enrichment analysis, gene ontology, the Kyoto Encyclopedia of Genes and Genomes, gene multiple association network integration algorithm (GeneMANIA), Search Tool for the Retrieval of Interacting Genes/Proteins, and Molecular Complex Detection. A comparative gene set enrichment analysis of tumor and adjacent normal tissues suggested BUC tumorigenesis resulted mainly from enrichment of cell cycle and DNA damage and repair-related biological processes and pathways, including TP53 and mitotic recombination. Two hundred and fifty-six genes were identified as potential prognosis-related DEGs. Gene ontology and Kyoto Encyclopedia of Genes and Genomes analyses showed that the potential prognosis-related DEGs were enriched in angiogenesis, including the cyclic adenosine monophosphate biosynthetic process, cyclic guanosine monophosphate-protein kinase G, mitogen-activated protein kinase, Rap1, and phosphoinositide-3-kinase-AKT signaling pathway. Nine hub genes, TAGLN, ACTA2, MYH11, CALD1, MYLK, GEM, PRELP, TPM2, and OGN, were identified from the intersection of protein-protein interaction and GeneMANIA networks. Module analysis of protein-protein interaction and GeneMANIA networks mainly showed enrichment of the cyclic guanosine monophosphate-protein kinase G signaling pathway, angiogenesis, cell proliferation, and differentiation, which are associated with tumor angiogenesis and cancer prognosis. Genes and pathways related to cell cycle and DNA damage and repair may play a crucial role in BUC pathogenesis, whereas those pertaining to tumor angiogenesis may be key factors in influencing BUC prognosis, especially in advanced disease stages."	"Molecular Basis and Targeted Inhibition of CBFβ-SMMHC Acute Myeloid Leukemia. Acute myeloid leukemia (AML) is characterized by recurrent chromosomal rearrangements that encode for fusion proteins which drive leukemia initiation and maintenance. The inv(16) (p13q22) rearrangement is a founding mutation and the associated CBFβ-SMMHC fusion protein is essential for the survival of inv(16) AML cells. This Chapter will discuss our understanding of the function of this fusion protein in disrupting hematopoietic homeostasis and creating pre-leukemic blasts, in its cooperation with other co-occurring mutations during leukemia initiation, and in leukemia maintenance. In addition, this chapter will discuss the current approaches used for the treatment of inv(16) AML and the recent development of AI-10-49, a selective targeted inhibitor of CBFβ-SMMHC/RUNX1 binding, the first candidate targeted therapy for inv(16) AML."	"Clinical Relevance of RUNX1 and CBFB Alterations in Acute Myeloid Leukemia and Other Hematological Disorders. The translocation t(8;21), leading to a fusion between the RUNX1 gene and the RUNX1T1 locus, was the first chromosomal translocation identified in cancer. Since the first description of this balanced rearrangement in a patient with acute myeloid leukemia (AML) in 1973, RUNX1 translocations and point mutations have been found in various myeloid and lymphoid neoplasms. In this chapter, we summarize the currently available data on the clinical relevance of core binding factor gene alterations in hematological disorders. In the first section, we discuss the prognostic implications of the core binding factor translocations RUNX1-RUNX1T1 and CBFB-MYH11 in AML patients. We provide an overview of the cooperating genetic events in patients with CBF-rearranged AML and their clinical implications, and review current treatment approaches for CBF AML and the utility of minimal residual disease monitoring. In the next sections, we summarize the available data on rare RUNX1 rearrangements in various hematologic neoplasms and the role of RUNX1 translocations in therapy-related myeloid neoplasia. The final three sections of the chapter cover the spectrum and clinical significance of RUNX1 point mutations in AML and myelodysplastic syndromes, in familial platelet disorder with associated myeloid malignancy, and in acute lymphoblastic leukemia."	"De-novo Williams-Beuren and inherited Marfan syndromes in a patient with developmental delay and lens dislocation. NA"	"Myeloid neoplasms with concurrent BCR-ABL1 and CBFB rearrangements: A series of 10 cases of a clinically aggressive neoplasm. Chronic myeloid leukemia (CML) is defined by the presence of t(9;22)(q34;q11.2)/BCR-ABL1. Additional chromosomal abnormalities confer an adverse prognosis and are particularly common in the blast phase of CML (CML-BP). CBFB rearrangement, particularly CBFB-MYH11 fusion resulting from inv(16)(p13.1q22) or t(16;16)(p13.1;q22), is an acute myeloid leukemia (AML)-defining alteration that is associated with a favorable outcome. The co-occurrence of BCR-ABL1 and CBFB rearrangement is extremely rare, and the significance of this finding remains unclear. We identified 10 patients with myeloid neoplasms harboring BCR-ABL1 and CBFB rearrangement. The study group included six men and four women with a median age of 51 years (range, 20-71 years). The sequence of molecular alterations could be determined in nine cases: BCR-ABL1 preceded CBFB rearrangement in seven, CBFB rearrangement preceded BCR-ABL1 in one, and both alterations were discovered simultaneously in one patient. BCR-ABL1 encoded for p210 kD in all cases in which BCR-ABL1 preceded CBFB rearrangement; a p190 kD was identified in the other three cases. Two patients were treated with the FLAG-IDA regimen (fludarabine, cytarabine, idarubicin, and G-CSF) and tyrosine kinase inhibitors (TKI); seven with other cytarabine-based regimens and TKIs, and one with ponatinib alone. At last follow up (median, 16 months; range 2-85), 7 of 10 patients had died. The co-existence of BCR-ABL1 and CBFB rearrangement is associated with poor outcome and a clinical course similar to that of CML-BP, and unlike de novo AML with CBFB rearrangement, suggesting that high-intensity chemotherapy with TKI should be considered in these patients."	"Multipotent Myoepithelial Progenitor Cells Are Born Early during Airway Submucosal Gland Development. Airway submucosal glands (SMGs) are facultative stem cell niches for the surface epithelium, but the phenotype of the SMG-derived progenitor cells remains unclear. In other organs, glandular myoepithelial cells (MECs) have been proposed to be multipotent progenitors for luminal cells. We sought to determine the developmental phase during which mouse tracheal glandular MECs are born and whether these MECs are progenitors for other cell phenotypes during SMG morphogenesis. To approach this question, we localized two MEC protein markers (α-smooth muscle actin [αSMA/ACTA2] and smooth muscle myosin heavy chain 11 [SMMHC/MYH11]) during various stages of SMG development (placode, elongation, branching, and differentiation) and used ACTA2-Cre<sup>ERT2</sup> and MYH11-Cre<sup>ERT2</sup> transgenic mice to fate map MEC-derived lineages during SMG morphogenesis. Both αSMA- and SMMHC-expressing cells emerged early after placode formation and during the elongation phase of SMG development. Lineage tracing in newborn mice demonstrated that lineage-positive MECs are born at the tips of invading tubules during the elongation phase of gland development. Lineage-positive MECs born within the first 7 days after birth gave rise to the largest percentage of multipotent progenitors capable of contributing to myoepithelial, serous, mucous, and ductal cell lineages. Serial tamoxifen-induction of both Cre-driver lines demonstrated that lineage-positive multipotent MECs contribute to ∼ 60% of glandular cells by 21 days after birth. In contrast, lineage-traced MECs did not contribute to cell types in the surface airway epithelium. These findings demonstrate that MECs born early during SMG morphogenesis are multipotent progenitors with the capacity to differentiate into other glandular cell types."	"Generation of a Mouse Model with Smooth Muscle Cell Specific Loss of the Expression of PPARγ. An inducible tissue-specific knockout (KO) technique has been used to study the role of genes in the adult heart. This KO technique circumvents the developmental effect that could otherwise be observed in a tissue-specific KO. The peroxisome proliferator-activated receptor (PPAR) γ is a transcription factor that when activated has been shown to improve vascular remodeling and endothelial function in hypertensive rodents. Here we describe an inducible tissue specific KO protocol used to study the role of PPARγ in smooth muscle cells (SMC) in angiotensin (Ang) II-induced hypertension in adult mice. Inducible VSMC Pparγ KO mice are generated by crossing mice expressing a fusion protein of Cre recombinase with the modified estrogen receptor ligand binding domain (CreER<sup>T2</sup>) under the control of the smooth muscle myosin heavy chain (smmhc, myh11) with mice having loxP sites flanking exon 2 of the Pparγ gene (Pparγ <sup>Flox/Flox</sup> ). The SMC Pparγ KO is induced by treating smMHC-CreER<sup>T2</sup>/Pparγ <sup>Flox/Flox</sup> mice with the estrogen receptor antagonist tamoxifen causing recombination of the two loxP site by CreER<sup>T2</sup>. SMC KO is confirmed by determining mRNA Pparγ levels in aortic media. Presence of the loxP sites is determined by sequencing genomic DNA. Tissue specific expression is assayed using smMHC-CreER<sup>T2</sup>/reporter crossed mice."	"Rare germline alterations in cancer-related genes associated with the risk of multiple primary tumor development. Multiple primary tumors (MPT) have been described in carriers of inherited cancer predisposition genes. However, the genetic etiology of a large proportion of MPT cases remains unclear. We reviewed 267 patients with hereditary cancer predisposition syndromes (HCPS) that underwent genetic counseling and selected 22 patients with MPT to perform genomic analysis (CytoScan HD Array, Affymetrix) aiming to identify new alterations related to a high risk of developing MPT. Twenty patients had a positive family history of cancer and 11 met phenotypic criteria for HCPS. Genetic testing for each of the genes associated with these syndromes revealed negative results for pathogenic mutations. Seventeen rare germline copy number variations (CNVs) covering 40 genes were identified in 11 patients, including an EPCAM/MSH2 deletion in one Lynch syndrome patient. An enrichment analysis revealed a significant number of genes (where the CNVs are mapped) associated with carcinogenesis and/or related to functions implicated with tumor development, such as proliferation and cell survival. An interaction network analysis highlighted the importance of TP53 pathway in cancer emergence. A high number of germline copy-neutral loss of heterozygosity (cnLOH) was identified in nine cases, particularly in two patients. Eighteen genes were covered by both rare CNVs and cnLOH, including 14 related to tumorigenesis and seven genes (ABCC1, KDM4C, KIAA0430, MYH11, NDE1, PIWIL2, and ULK2) specifically associated with cellular growth and proliferation. Overall, we identified 14 cases with rare CNVs and/or cnLOH that may contribute to the risk of MPT development. CNVs may explain the risk of hereditary cancer syndromes in MPT patients. CNVs affecting genes related to cancer are candidates to be involved in MPT risk. EPCAM/MSH2 deletions should be investigated in patients suspected to have LS. Gene enrichment related to the TP53 network is associated with MPT development. cnLOH and CNVs contribute to the risk of MPT development."	"Clinical Outcome of Autologous Hematopoietic Cell Transplantation in Adult Patients with Acute Myeloid Leukemia: Who May Benefit from Autologous Hematopoietic Cell Transplantation? The role of autologous hematopoietic cell transplantation (auto-HCT) for postremission therapy of acute myeloid leukemia is yet to be elucidated. We retrospectively analyzed 240 patients treated with auto-HCT in first remission. All patients were treated with standard induction chemotherapy, and CD34<sup>+</sup> stem cells were collected at each cycle of consolidation. Stem cells were infused after total body irradiation (1200 cGy), cytarabine (9 g/m<sup>2</sup>), and melphalan (100 mg/m<sup>2</sup>). Estimated 5-year overall survival, disease-free survival (DFS), cumulative incidence of relapse (CIR), and nonrelapse mortality were 58.4%, 55.3%, 38.8%, and 5.9%, respectively. We identified that poor-risk karyotype showed very poor outcome after auto-HCT, and then analyzed 85 patients with good to intermediate-risk molecular cytogenetics with available molecular study results and markers for minimal residual disease (MRD) such as WT1 and core-binding factor (CBF) associated MRD (ie, AML1/ETO and CBFβ/MYH11). Our data identified that old age, pre-HCT markers for MRD, and high post-HCT WT1, high dose of CD34<sup>+</sup> stem cell (≥4.5 × 10<sup>6</sup>/kg) infusion, and c-kit or FLT3-ITD mutations were associated with higher relapse rate and poor DFS. Using pre-HCT parameters, except for post-HCT WT1, multivariate analysis revealed that patients with young age (&lt;40 years old), no adverse mutations, and limited dose of CD34<sup>+</sup> stem cells might be good candidate for auto-HCT (3-year DFS and CIR were 83.4% and 16.6%, respectively). Young patients with good- to intermediate-risk molecular cytogenetics may benefit from auto-HCT if stem cell dose is limited."	"Transdifferentiation of Human Dermal Fibroblasts to Smooth Muscle-Like Cells to Study the Effect of MYH11 and ACTA2 Mutations in Aortic Aneurysms. Mutations in genes encoding proteins of the smooth muscle cell (SMC) contractile apparatus contribute to familial aortic aneurysms. To investigate the pathogenicity of these mutations, SMC are required. We demonstrate a novel method to generate SMC-like cells from human dermal fibroblasts by transdifferentiation to study the effect of variants in genes encoding proteins of the SMC contractile apparatus (ACTA2 and MYH11) in patients with aortic aneurysms. Dermal fibroblasts from seven healthy donors and cells from seven patients with MYH11 or ACTA2 variants were transdifferentiated into SMC-like cells within a 2-week duration using 5 ng/ml TGFβ1 on a scaffold containing collagen and elastin. The induced SMC were comparable to primary human aortic SMC in mRNA expression of SMC markers which was confirmed on the protein level by immunofluorescence quantification analysis and Western blotting. In patients with MYH11 or ACTA2 variants, the effect of intronic variants on splicing was demonstrated on the mRNA level in the induced SMC, allowing classification into pathogenic or nonpathogenic variants. In conclusion, direct conversion of human dermal fibroblasts into SMC-like cells is a highly efficient method to investigate the pathogenicity of variants in proteins of the SMC contractile apparatus."	"Contribution of Vascular Cells to Neointimal Formation. The de-differentiation and proliferation of smooth muscle cells (SMCs) are widely accepted as the major contributor to vascular remodeling. However, recent studies indicate that vascular stem cells (VSCs) also play an important role, but their relative contribution remains to be elucidated. In this study, we used genetic lineage tracing approach to further investigate the contribution of SMCs and VSCs to neointimal thickening in response to endothelium denudation injury or artery ligation. In vitro and in vivo analysis of MYH11-cre/Rosa-loxP-RFP mouse artery showed that SMCs proliferated at a much slower rate than non-SMCs. Upon denudation or ligation injury, two distinct types of neointima were identified: Type-I neointimal cells mainly involved SMCs, while Type II mainly involved non-SMCs. Using Sox10-cre/Rosa-loxP-LacZ mice, we found that Sox10+ cells were one of the cell sources in neointima. In addition, lineage tracing using Tie2-cre/Rosa-LoxP-RFP showed that endothelial cells also contributed to the neointimal formation, but rarely transdifferentiated into mesenchymal lineages. These results provide a novel insight into the contribution of vascular cells to neointima formation, and have significant impact on the development of more effective therapies that target specific vascular cell types."	"Inflammation and vascular smooth muscle cell dedifferentiation following carotid artery ligation. Following vascular injury medial smooth muscle cells dedifferentiate and migrate through the internal elastic lamina where they form a neointima. The goal of the current study was to identify changes in gene expression that occur before the development of neointima and are associated with the early response to injury. Vascular injury was induced in C57BL/6 mice and in Myh11-creER(T2) mTmG reporter mice by complete ligation of the left carotid artery. Reporter mice were used to visualize cellular changes in the injured vessels. Total RNA was isolated from control carotid arteries or from carotid arteries 3 days following ligation of C57BL/6 mice and analyzed by Affymetrix microarray and quantitative RT-PCR. This analysis revealed decreased expression of mRNAs encoding smooth muscle-specific contractile proteins that was accompanied by a marked increase in a host of mRNAs encoding inflammatory cytokines following injury. There was also marked decrease in molecules associated with BMP, Wnt, and Hedgehog signaling and an increase in those associated with B cell, T cell, and macrophage signaling. Expression of a number of noncoding RNAs were also altered following injury with microRNAs 143/145 being dramatically downregulated and microRNAs 1949 and 142 upregulated. Several long noncoding RNAs showed altered expression that mirrored the expression of their nearest coding genes. These data demonstrate that following carotid artery ligation an inflammatory cascade is initiated that is associated with the downregulation of coding and noncoding RNAs that are normally required to maintain smooth muscle cells in a differentiated state."	"Sertoli Cell Wt1 Regulates Peritubular Myoid Cell and Fetal Leydig Cell Differentiation during Fetal Testis Development. Sertoli cells play a significant role in regulating fetal testis compartmentalization to generate testis cords and interstitium during development. The Sertoli cell Wilms' tumor 1 (Wt1) gene, which encodes ~24 zinc finger-containing transcription factors, is known to play a crucial role in fetal testis cord assembly and maintenance. However, whether Wt1 regulates fetal testis compartmentalization by modulating the development of peritubular myoid cells (PMCs) and/or fetal Leydig cells (FLCs) remains unknown. Using a Wt1-/flox; Amh-Cre mouse model by deleting Wt1 in Sertoli cells (Wt1SC-cKO) at embryonic day 14.5 (E14.5), Wt1 was found to regulate PMC and FLC development. Wt1 deletion in fetal testis Sertoli cells caused aberrant differentiation and proliferation of PMCs, FLCs and interstitial progenitor cells from embryo to newborn, leading to abnormal fetal testis interstitial development. Specifically, the expression of PMC marker genes α-Sma, Myh11 and Des, and interstitial progenitor cell marker gene Vcam1 were down-regulated, whereas FLC marker genes StAR, Cyp11a1, Cyp17a1 and Hsd3b1 were up-regulated, in neonatal Wt1SC-cKO testes. The ratio of PMC:FLC were also reduced in Wt1SC-cKO testes, concomitant with a down-regulation of Notch signaling molecules Jag 1, Notch 2, Notch 3, and Hes1 in neonatal Wt1SC-cKO testes, illustrating changes in the differentiation status of FLC from their interstitial progenitor cells during fetal testis development. In summary, Wt1 regulates the development of FLC and interstitial progenitor cell lineages through Notch signaling, and it also plays a role in PMC development. Collectively, these effects confer fetal testis compartmentalization."	"AML associated oncofusion proteins PML-RARA, AML1-ETO and CBFB-MYH11 target RUNX/ETS-factor binding sites to modulate H3ac levels and drive leukemogenesis. Chromosomal translocations are one of the hallmarks of acute myeloid leukemia (AML), often leading to gene fusions and expression of an oncofusion protein. Over recent years it has become clear that most of the AML associated oncofusion proteins molecularly adopt distinct mechanisms for inducing leukemogenesis. Still these unique molecular properties of the chimeric proteins converge and give rise to a common pathogenic molecular mechanism. In the present study we compared genome-wide DNA binding and transcriptome data associated with AML1-ETO, CBFB-MYH11 and PML-RARA oncofusion protein expression to identify unique and common features. Our analyses revealed targeting of oncofusion binding sites to RUNX1 and ETS-factor occupied genomic regions. In addition, it revealed a highly comparable global histone acetylation pattern, similar expression of common target genes and related enrichment of several biological pathways critical for maintenance of AML, suggesting oncofusion proteins deregulate common gene programs despite their distinct binding signatures and mechanisms of action."	"Myocardin: A novel player in atherosclerosis. Myocardin (MYOCD) the most important coactivator of serum response factor (SRF), plays a critical role specifically in the development of cardiac myocytes and vascular smooth muscle cells (VSMCs). Binding of Myocardin to the SRF on the CArG box-containing target genes can transcriptionally activate a variety of downstream muscle-specific genes, such as Sm22α, Acta2, Myh11, and several other signaling pathways. Myocardin expression represents a contractile and differentiated SMC phenotype. Loss of Myocardin, however, represents a synthetic and dedifferentiated phenotype, a hallmark in atherosclerosis. Growing evidence shows that Myocardin is involved in lipid metabolism and vascular inflammation, the primary pathogenesis of atherosclerosis. Moreover, Myocardin expression level is altered in atherosclerotic patients and animal models, suggesting more extensive and important roles for Myocardin in atherosclerosis. In the current review, we summarized recent progress on the regulation and signaling of Myocardin, and highlighted its impacts on atherosclerotic disease."	"Investigation of the Effects and Mechanisms of Mai Tong Formula on Lower Limb Macroangiopathy in a Spontaneous Diabetic Rat Model. A new Chinese herbal formula called Mai Tong Formulae (MTF) has recently been used to treat lower limb macroangiopathy in type 2 diabetes mellitus (T2DM) patients. In this study, we investigated the effect of MTF on lower limb macroangiopathy in a spontaneous diabetic rat model (GK rats). We found that MTF treatment significantly reduced serum fasting blood glucose (FBG), triglycerides (TG), total cholesterol (TC), IL6, and VEGF and increased serum insulin in this model. Histological and ultrastructural observations showed that MTF treatment significantly reduced vascular endothelial cell shedding and improved endothelium injuries. We further detect proteome alteration following MTF treatment. 25 differential proteins (DPs) abnormally expressed in GK rats were normalized by MTF treatment. These DPs significantly are enriched in biological processes and pathways that regulate muscle contraction and cGMP-PKG signaling pathway and so on. Additional protein-protein interaction (PPI) network analyses of the DPs showed that Fasn and Prkar2a are involved in the AMPK signaling pathway, and Gnas, Myh11, and Myh6 are involved in vascular smooth muscle contraction; these 5 DPs were validated by Western blotting. These results indicate that MTF treatment effectively treats lower limb macroangiopathy by regulating key proteins involved in AMPK signaling pathway and vascular smooth muscle contraction."	"Angiotensin Ⅱ induces the differentiation of mouse epicardial progenitor cells into vascular smooth muscle-like cells. Epicardial progenitor cells (EpiCs) have a crucial role in cardiac development and vasculature formation. Here we detected the expression of Angiotensin II (Ang II) receptors AT1 and AT2 on EpiCs and demonstrated that AngII could increase the expression of smooth muscle specific markers, including α-smooth muscle actin (α-SMA) and myosin heavy chain 11 (Myh11) in EpiCs. Moreover, the expression of α-SMA and Myh11 induced by Ang II was blocked by pretreatment of EpiCs with the AT1 receptor antagonist losartan, but not the AT2 receptor antagonist PD123319. We further showed that the AngII-induced cells showed significant contractile responses to carbachol. These results implied that AngII could effectively induce EpiCs to differentiate into vascular smooth muscle-like cells through the AT1 receptor."	"Altered Smooth Muscle Cell Force Generation as a Driver of Thoracic Aortic Aneurysms and Dissections. The importance of maintaining contractile function in aortic smooth muscle cells (SMCs) is evident by the fact that heterozygous mutations in the major structural proteins or kinases controlling contraction lead to the formation of aneurysms of the ascending thoracic aorta that predispose to life-threatening aortic dissections. Force generation by SMC requires ATP-dependent cyclic interactions between filaments composed of SMC-specific isoforms of α-actin (encoded by ACTA2) and myosin heavy chain (MYH11). ACTA2 and MYH11 mutations are predicted or have been shown to disrupt this cyclic interaction predispose to thoracic aortic disease. Movement of the myosin motor domain is controlled by phosphorylation of the regulatory light chain on the myosin filament, and loss-of-function mutations in the dedicated kinase for this phosphorylation, myosin light chain kinase (MYLK) also predispose to thoracic aortic disease. Finally, a mutation in the cGMP-activated protein kinase (PRKG1) results in constitutive activation of the kinase in the absence of cGMP, thus driving SMC relaxation in part through increased dephosphorylation of the regulatory light chain and predisposes to thoracic aortic disease. Furthermore, SMCs cannot generate force without connections to the extracellular matrix through focal adhesions, and mutations in the major protein in the extracellular matrix, fibrillin-1, linking SMCs to the matrix also cause thoracic aortic disease in individuals with Marfan syndrome. Thus, disruption of the ability of the aortic SMC to generate force through the elastin-contractile units in response to pulsatile blood flow may be a primary driver for thoracic aortic aneurysms and dissections."	"Mutations in the CCND1 and CCND2 genes are frequent events in adult patients with t(8;21)(q22;q22) acute myeloid leukemia. Core-binding factor acute myeloid leukemia (CBF-AML) is defined by the presence of either t(8;21)(q22;q22)/RUNX1-RUNX1T1 or inv(16)(p13.1q22)/t(16;16)(p13.1;q22)/CBFB-MYH11. The resulting fusion genes require a 'second hit' to initiate leukemogenesis. Mutation assessment of 177 adults with CBF-AML, including 68 with t(8;21) and 109 with inv(16)/t(16;16), identified not only mutations well known in CBF-AML but also mutations in the CCND1 and CCND2 genes, which represent novel frequent molecular alterations in AML with t(8;21). Altogether, CCND1 (n=2) and CCND2 (n=8) mutations were detected in 10 (15%) patients with t(8;21) in our cohort. A single CCND2 mutation was also found in 1 (0.9%) patient with inv(16). In contrast, CCND1 and CCND2 mutations were detected in only 11 (0.77%) of 1426 non-CBF-AML patients. All CCND2 mutations cluster around the highly conserved amino-acid residue threonine 280 (Thr280). We show that Thr280Ala-mutated CCND2 leads to increased phosphorylation of the retinoblastoma protein, thereby causing significant cell cycle changes and increased proliferation of AML cell lines. The identification of CCND1 and CCND2 mutations as frequent mutational events in t(8;21) AML may provide further justification for cell cycle-directed therapy in this disease."	"A recurrence model for laryngeal cancer based on SVM and gene function clustering. A prognostic model was obtained for LC. Several critical genes were unveiled. They could be potentially applied for LC recurrence prediction. Gene expression data of laryngeal cancer (LC) were analyzed to identify critical genes associated with recurrence. Two gene expression datasets were downloaded from the Gene Expression Omnibus. Dataset GSE27020 is used as the training set, containing 75 non-recurred LC cases and 34 recurred LC cases. A total of 725 DEGs were identified from the training set. A total of 4126 gene pairs showed significant correlations in non-recurred LC only, corresponding to 533 genes. A total of 7235 gene pairs showed significant correlations in recurred LC only, corresponding to 608 genes. Besides, 1694 gene pairs showed significant correlations in both non-recurred and recurred LC, corresponding to 322 genes. Functional enrichment analysis was performed for the three groups of DEGs. Seven overlapping biological functions were revealed: positive regulation of chondrocyte differentiation, autoimmune thyroid disease, focal adhesion, linoleic acid metabolism, drug metabolism, organic cation transport, and ECM-receptor interaction. Eight feature genes (PDIA3, MYH11, PDK1, SDC3, RPE65, LAMC3, BTK, and UPK1B) were identified. Their prognostic effect was validated by independent test set as well as survival analysis."	"The genomic landscape of core-binding factor acute myeloid leukemias. Acute myeloid leukemia (AML) comprises a heterogeneous group of leukemias frequently defined by recurrent cytogenetic abnormalities, including rearrangements involving the core-binding factor (CBF) transcriptional complex. To better understand the genomic landscape of CBF-AMLs, we analyzed both pediatric (n = 87) and adult (n = 78) samples, including cases with RUNX1-RUNX1T1 (n = 85) or CBFB-MYH11 (n = 80) rearrangements, by whole-genome or whole-exome sequencing. In addition to known mutations in the Ras pathway, we identified recurrent stabilizing mutations in CCND2, suggesting a previously unappreciated cooperating pathway in CBF-AML. Outside of signaling alterations, RUNX1-RUNX1T1 and CBFB-MYH11 AMLs demonstrated remarkably different spectra of cooperating mutations, as RUNX1-RUNX1T1 cases harbored recurrent mutations in DHX15 and ZBTB7A, as well as an enrichment of mutations in epigenetic regulators, including ASXL2 and the cohesin complex. This detailed analysis provides insights into the pathogenesis and development of CBF-AML, while highlighting dramatic differences in the landscapes of cooperating mutations for these related AML subtypes."	"[Case Conference of Hematological Malignancies Based on the Morphology of Blood Cells: Chairmen's Introductory Remarks]. A case conference of hematological malignancies based on the morphology of blood cells was held as a Joint Symposium of the Japanese Society of Laboratory Medicine and Japanese Society of Laboratory Hematology. This style of joint symposium was held four times from 2012 to 2016, whereas child cases were presented for the first time this year. The 4 cases presented in this symposium were as follows: an infant with Down syn- drome showing an atypical clinical course of transient abnormal myelopoiesis (TAM) and myeloid leukemia, a relatively older girl with juvenile myelomonocytic leukemia (JMML), one adult with acute myeloid leukemia (AML) with inv (16) (p13.1q22); CBFB-MYH11 morphologically resembling AML with t (8;21) (q22;q22.1); RUNX1-RUNX1T1, and one adult with high-grade B-cell lymphoma showing t (14;18) (q32;q21); IGH/BCL2. Each case included pathological and interesting morphological findings that were carefully examined and in- tensively discussed by two experienced commentators and participants, including pediatric hemato- pathologists. The importance of the morphological evaluation of characteristic cells such as immature leukemic blasts or lymphomatous ones was reconfirmed at this conference. In addition, immunological, cytogenetic, and molecular examinations were also essential for the final diagnosis of these cases. [Review]."	"Smooth muscle cell-specific Tgfbr1 deficiency promotes aortic aneurysm formation by stimulating multiple signaling events. Transforming growth factor (TGF)-β signaling disorder has emerged as a common molecular signature for aortic aneurysm development. The timing of postnatal maturation plays a key role in dictating the biological outcome of TGF-β signaling disorders in the aortic wall. In this study, we investigated the impact of deficiency of TGFβ receptors on the structural homeostasis of mature aortas. We used an inducible Cre-loxP system driven by a Myh11 promoter to delete Tgfbr1, Tgfbr2, or both in smooth muscle cells (SMCs) of adult mice. TGFBR1 deficiency resulted in rapid and severe aneurysmal degeneration, with 100% penetrance of ascending thoracic aortas, whereas TGFBR2 deletion only caused mild aortic pathology with low (26%) lesion prevalence. Removal of TGFBR2 attenuated the aortic pathology caused by TGFBR1 deletion and correlated with a reduction of early ERK phosphorylation. In addition, the production of angiotensin (Ang)-converting enzyme was upregulated in TGFBR1 deficient aortas at the early stage of aneurysmal degeneration. Inhibition of ERK phosphorylation or blockade of AngII type I receptor AT1R prevented aneurysmal degeneration of TGFBR1 deficient aortas. In conclusion, loss of SMC-Tgfbr1 triggers multiple deleterious pathways, including abnormal TGFBR2, ERK, and AngII/AT1R signals that disrupt aortic wall homeostasis to cause aortic aneurysm formation."	"Comparison of gene expression profiles in aortic dissection and normal human aortic tissues. The aim of the present study was to compare the gene expression profiles in aortic dissection (AD) and healthy human aortic tissue samples by DNA microarray analysis in order to screen the differential genes. In total, five AD and four healthy aortic specimens were selected; the total RNA was extracted and reverse transcribed into cDNA and in vitro transcribed into aRNA, followed by microarray hybridization for analysis. Thereafter, the transcription levels of six differential genes, myosin light chain kinase (MYLK), polycystin 1, transient receptor potential channel interacting (PKD-1), myosin heavy chain 11 (MYH11), superoxide dismutase 3, extracellular (SOD3), filamin A (FLNA), and transgelin (TAGLN), screened from the expression profiles were quantitatively verified. Compared with the healthy aortic specimens, a total of 1,661 genes in the AD group demonstrated more than 2-fold differential expression, of which 997 genes were upregulated and 664 genes were downregulated. Thereafter, six AD-associated genes that showed downregulation in the microarray assay were selected for quantitatively verifying the gene transcription level using reverse transcription-quantitative polymerase chain reaction (RT-qPCR), which confirmed their downregulation compared with the healthy aortic tissue genes; of the six genes, the expression levels of MYLK, PKD-1, MYH11, SOD3 and TAGLN were significantly downregulated (P&lt;0.05), while the expression of FLNA was not significantly downregulated (P&gt;0.05). Thus, whole genome microarray may be used to screen differentially expressed genes between AD and healthy aortic tissues. When used in combination with RT-qPCR validation, this method may provide novel strategies for investigating AD."	"NUP98 is rearranged in 3.8% of pediatric AML forming a clinical and molecular homogenous group with a poor prognosis. Pediatric acute myeloid leukemia (AML) is a rare disease whose prognosis is highly variable according to factors such as chromosomal abnormalities. Recurrent genomic rearrangements are detected in half of pediatric AML by karyotype. NUcleoPorin 98 (NUP98) gene is rearranged with 31 different fusion partner genes. These rearrangements are frequently undetected by conventional cytogenetics, as the NUP98 gene is located at the end of the chromosome 11 short arm (11p15). By screening a series of 574 pediatric AML, we detected a NUP98 rearrangement in 22 cases (3.8%), a frequency similar to CBFB-MYH11 fusion gene (4.0%). The most frequent NUP98 fusion gene partner is NSD1. These cases are homogeneous regarding their biological and clinical characteristics, and associated with bad prognosis only improved by bone marrow transplantation. We detailed the biological characteristics of these AML by exome sequencing which demonstrated few recurrent mutations (FLT3 ITD, WT1, CEBPA, NBPF14, BCR and ODF1). The analysis of the clonal structure in these cases suggests that the mutation order in the NUP98-rearranged pediatric AML begins with the NUP98 rearrangement leading to epigenetic dysregulations then followed by mutations of critical hematopoietic transcription factors and finally, activation of the FLT3 signaling pathway."	"Monitoring of post-transplant CBFB-MYH11 as minimal residual disease, rather than KIT mutations, can predict relapse after allogeneic haematopoietic cell transplantation in adults with inv(16) acute myeloid leukaemia. NA"	"WES/WGS Reporting of Mutations from Cardiovascular &quot;Actionable&quot; Genes in Clinical Practice: A Key Role for UMD Knowledgebases in the Era of Big Databases. High-throughput next-generation sequencing such as whole-exome and whole-genome sequencing are being rapidly integrated into clinical practice. The use of these techniques leads to the identification of secondary variants for which decisions about the reporting or not to the patient need to be made. The American College of Medical Genetics and Genomics recently published recommendations for the reporting of these variants in clinical practice for 56 &quot;actionable&quot; genes. Among these, seven are involved in Marfan Syndrome And Related Disorders (MSARD) resulting from mutations of the FBN1, TGFBR1 and 2, ACTA2, SMAD3, MYH11 and MYLK genes. Here, we show that mutations collected in UMD databases for MSARD genes (UMD-MSARD) are rarely reported, including the most frequent ones, in global scale initiatives for variant annotation such as the NHLBI GO Exome Sequencing Project (ESP), the Exome Aggregation Consortium (ExAC), and ClinVar. The predicted pathogenic mutations reported in global scale initiatives but absent in locus-specific databases (LSDBs) mainly correspond to rare events. UMD-MSARD databases are therefore the only resources providing access to the full spectrum of known pathogenic mutations. They are the most comprehensive resources for clinicians and geneticists to interpret MSARD-related variations not only primary variants but also secondary variants."	"Multiplexed automated digital quantification of fusion transcripts: comparative study with fluorescent in-situ hybridization (FISH) technique in acute leukemia patients. The World Health Organization (WHO) classification system defines recurrent chromosomal translocations as the sole diagnostic and prognostic criteria for acute leukemia (AL). These fusion transcripts are pivotal in the pathogenesis of AL. Clinical laboratories universally employ conventional karyotype/FISH to detect these chromosomal translocations, which is complex, labour intensive and lacks multiplexing capacity. Hence, it is imperative to explore and evaluate some newer automated, cost-efficient multiplexed technologies to accommodate the expanding genetic landscape in AL. &quot;nCounter® Leukemia fusion gene expression assay&quot; by NanoString was employed to detect various fusion transcripts in a large set samples (n = 94) utilizing RNA from formalin fixed paraffin embedded (FFPE) diagnostic bone marrow biopsy specimens. This series included AL patients with various recurrent translocations (n = 49), normal karyotype (n = 19), or complex karyotype (n = 21), as well as normal bone marrow samples (n = 5). Fusion gene expression data were compared with results obtained by conventional karyotype and FISH technology to determine sensitivity/specificity, as well as positive /negative predictive values. Junction probes for PML/RARA; RUNX1-RUNX1T1; BCR/ABL1 showed 100 % sensitivity/specificity. A high degree of correlation was noted for MLL/AF4 (85 sensitivity/100 specificity) and TCF3-PBX1 (75 % sensitivity/100 % specificity) probes. CBFB-MYH11 fusion probes showed moderate sensitivity (57 %) but high specificity (100 %). ETV6/RUNX1 displayed discordance between fusion transcript assay and FISH results as well as rare non-specific binding in AL samples with normal or complex cytogenetics. Our study presents preliminary data with high correlation between fusion transcript detection by a throughput automated multiplexed platform, compared to conventional karyotype/FISH technique for detection of chromosomal translocations in AL patients. Our preliminary observations, mandates further vast validation studies to explore automated molecular platforms in diagnostic pathology."	"Targeting binding partners of the CBFβ-SMMHC fusion protein for the treatment of inversion 16 acute myeloid leukemia. Inversion of chromosome 16 (inv(16)) generates the CBFβ-SMMHC fusion protein and is found in nearly all patients with acute myeloid leukemia subtype M4 with Eosinophilia (M4Eo). Expression of CBFβ-SMMHC is causative for leukemia development, but the molecular mechanisms underlying its activity are unclear. Recently, there have been important advances in defining the role of CBFβ-SMMHC and its binding partners, the transcription factor RUNX1 and the histone deacetylase HDAC8. Importantly, initial trials demonstrate that small molecules targeting these binding partners are effective against CBFβ-SMMHC induced leukemia. This review will discuss recent advances in defining the mechanism of CBFβ-SMMHC activity, as well as efforts to develop new therapies for inv(16) AML."	"Visceral myopathy: Clinical and molecular survey of a cohort of seven new patients and state of the art of overlapping phenotypes. Visceral motility dysfunction is a key feature of genetic disorders such as megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS, MIM moved from 249210 to 155310), chronic intestinal pseudo-obstruction (CIPO, MIM609629), and multisystemic smooth muscle dysfunction syndrome (MSMDS, MIM613834). The genetic bases of these conditions recently begun to be clarified with the identification of pathogenic variants in ACTG2, ACTA2, and MYH11 in individuals with visceral motility dysfunction. The MMIHS was associated with the heterozygous variant in ACTG2 and homozygous variant in MYH11, while the heterozygous variant in ACTA2 was observed in patients with MSMDS. In this study, we describe the clinical data as well as the molecular investigation of seven individuals with visceral myopathy phenotypes. Five patients presented with MMIHS, including two siblings from consanguineous parents, one had CIPO, and the other had MSMDS. In three individuals with MMIHS and in one with CIPO we identified heterozygous variant in ACTG2, one being a novel variant (c.584C&gt;T-p.Thr195Ile). In the individual with MSMDS we identified a heterozygous variant in ACTA2. We performed the whole-exome sequencing in one sibling with MMIHS and her parents; however, the pathogenic variant responsible for her phenotype could not be identified. These results reinforce the clinical and genetic heterogeneity of the visceral myopathies. Although many cases of MMIHS are associated with ACTG2 variants, we suggest that other genes, besides MYH11, could cause the MMIHS with autosomal recessive pattern. © 2016 Wiley Periodicals, Inc."	"Incidence of preleukemic fusion genes in healthy subjects. The diagnostics of leukemia relies upon multi-parametric approach involving a number of different pathology disciplines such as flow cytometry, histopathology, cytogenetics and molecular genetics [fluorescent in situ hybridization (FISH) and polymerase chain reaction (PCR)]. Childhood leukemia is often determined by the presence of specific chromosomal translocation that entails the generation of preleukemic fusion genes (PFG). In the last two decades, several studies have reported observations that PFG are present in healthy population and not necessarily result in leukemia. The first such study by Limpens and colleagues on t(14/18)/ BCL2-JH [1] and next in line [2, 3] led to many questions regarding the significance of these chromosomal translocations in leukemogenesis. However, the data on the incidence of PFG are contradictive. This review aims to highlight the molecular genetic approaches used by various studies with regard to differences in diagnostics and incidence of PFG in healthy subjects. The focus is on the incidence and prevalence of the most common PFG such as TEL-AML1, MLL-AF4, BCR-ABL (p190), AML1-ETO, PML-RARA, and CBFB-MYH11 detected in umbilical cord blood, in neonatal blood spots (Guthrie cards (GC)), bone marrow, peripheral blood and tissues of amortized fetuses. We conclude that the incidence of PFG is significantly higher than incidence of leukemia and more sophisticated analysis of PFG in leukemogenic cell populations is warranted to relate the occurrence of PFG with leukemia. The emerging notion is that only those PFG may contribute to development of leukemia which arise in stem cells at specific time windows during development. Thus, screening of PFG in subpopulations of stem cells may be a challenge for assessment of predisposition to leukemia and for validation of cell transplant to minimize donor cell-derived leukemia."	"Development of a NanoString assay to detect leukemogenic fusion transcripts in acute myeloid leukemia. Detection of leukemogenic fusion transcripts in acute myeloid leukemia (AML) is critical for AML diagnosis. NanoString nCounter system is a novel probe-based gene expression platform capable of measuring up to 800 targets with advantages of reproducibility, accuracy, and sample type flexibility. To study the potential application of NanoString in leukemia at clinic, we used this technology to detect AML leukemogenic fusion transcripts and compared the performances with clinical molecular assays. We developed a NanoString assay to detect seven leukemogenic fusion transcripts, namely RUNX1-RUNX1T1 (e5e12), PML-RARA (bcr1, bcr2, and bcr3), and CBFB-MYH11 (e5e12, e5e8, and e5e7). We set up the cut-off value for each fusion transcript and tested 42 de novo AML samples. We compared the results with reverse transcriptase-polymerase chain reaction (RT-PCR) and TaqMan reverse quantitative-polymerase chain reaction (RQ-PCR), the molecular methods standardly used at clinic. We demonstrated that the NanoString and RT-PCR results correlate well (P &lt; 0.0001) and are highly concordant (95.2%). Using TaqMan RQ-PCR as a validation method and gold standard, we demonstrated superior accuracy and sensitivity of NanoString compared to RT-PCR and comparable specificity. Furthermore, we showed that NanoString is not as sensitive as TaqMan RQ-PCR in detecting very low level of fusion transcripts. NanoString can serve as a reliable and alternative molecular method to multiplexed RT-PCR for diagnosis of de novo AML with the perspective of screening/quantitation of a large number of leukemogenic fusion transcripts and prognostic genes. However, NanoString may not be an alternative method for monitoring minimal residual disease in AML."	"CBFβ-SMMHC creates aberrant megakaryocyte-erythroid progenitors prone to leukemia initiation in mice. Acute myeloid leukemia (AML) arises through multistep clonal evolution characterized by stepwise accumulation of successive alterations affecting the homeostasis of differentiation, proliferation, self-renewal, and survival programs. The persistence and dynamic clonal evolution of leukemia-initiating cells and preleukemic stem cells during disease progression and treatment are thought to contribute to disease relapse and poor outcome. Inv(16)(p13q22) or t(16;16)(p13.1;q22), one of the most common cytogenetic abnormalities in AML, leads to expression of a fusion protein CBFβ-SMMHC (CM) known to disrupt myeloid and lymphoid differentiation. Anemia is often observed in AML but is presumed to be a secondary consequence of leukemic clonal expansion. Here, we show that CM expression induces marked deficiencies in erythroid lineage differentiation and early preleukemic expansion of a phenotypic pre-megakaryocyte/erythrocyte (Pre-Meg/E) progenitor population. Using dual-fluorescence reporter mice in lineage tracking and repopulation assays, we show that CM expression cell autonomously causes expansion of abnormal Pre-Meg/E progenitors with compromised erythroid specification and differentiation capacity. The preleukemic Pre-Meg/Es display dysregulated erythroid and megakaryocytic fate-determining factors including increased Spi-1, Gata2, and Gfi1b and reduced Zfpm1, Pf4, Vwf, and Mpl expression. Furthermore, these abnormal preleukemic Pre-Meg/Es have enhanced stress resistance and are prone to leukemia initiation upon acquiring cooperative signals. This study reveals that the leukemogenic CM fusion protein disrupts adult erythropoiesis and creates stress-resistant preleukemic Pre-Meg/E progenitors predisposed to malignant transformation. Abnormality in Meg/E or erythroid progenitors could potentially be considered an early predictive risk factor for leukemia evolution."	"TWEAK favors phosphate-induced calcification of vascular smooth muscle cells through canonical and non-canonical activation of NFκB. Vascular calcification (VC) is associated with increased cardiovascular mortality in aging, chronic kidney disease (CKD), type 2 diabetes mellitus (T2DM) and atherosclerosis. TNF-like weak inducer of apoptosis (TWEAK) recently emerged as a new biomarker for the diagnosis and prognosis of cardiovascular diseases. TWEAK binding to its functional receptor Fn14 was reported to promote several steps of atherosclerotic plaque progression. However, no information is currently available on the role of TWEAK/Fn14 on the development of medial calcification, which is highly prevalent in aging, CKD and T2DM. This study explored the involvement of TWEAK in human vascular smooth muscle cells (h-VSMCs) calcification in vitro. We report that TWEAK binding to Fn14 promotes inorganic phosphate-induced h-VSMCs calcification, favors h-VSMCs osteogenic transition, decreasing acta2 and myh11 and increasing bmp2 mRNA and tissue non-specific alkaline phosphatase (TNAP), and increases MMP9 activity. Blockade of the canonical NFκB pathway reduced by 80% TWEAK pro-calcific properties and decreased osteogenic transition, TNAP and MMP9 activity. Blockade of non-canonical NFκB signaling by a siRNA targeting RelB reduced by 20% TWEAK pro-calcific effects and decreased TWEAK-induced loss of h-VSMCs contractile phenotype and MMP9 activity, without modulating bmp2 mRNA or TNAP activity. Inhibition of ERK1/2 activation by a MAPK kinase inhibitor did not influence TWEAK pro-calcific properties. Our results suggest that TWEAK/Fn14 directly favors inorganic phosphate-induced h-VSMCs calcification by activation of both canonical and non-canonical NFκB pathways. Given the availability of neutralizing anti-TWEAK strategies, our study sheds light on the TWEAK/Fn14 axis as a novel therapeutic target in the prevention of VC."	"Alpha-actin-2 mutations in Chinese patients with a non-syndromatic thoracic aortic aneurysm. Aortic aneurysms and/or dissection (AADs) in the aorta are a leading cause of human morbidity and mortality. To date, data on non-syndromic thoracic AADs (TAADs) have been mainly derived from Caucasians, and the genetic basis of TAADs remains to be elucidated. In this study, we assessed gene mutations in a Chinese population with TAADs. A cohort of 68 non-syndromic familial TAAD Chinese patients was screened for the most common TAAD-causing genes (ACTA2, MYH11, TGFBR1, TGFBR2, and SMAD3) using high-resolution melting (HRM) analysis. Thereafter, 142 unrelated non-syndromic sporadic cases were recruited and further analyzed using HRM analysis to estimate the prevalence of disease-causing mutations in these candidate genes. Two novel ACTA2 mutations (N117I and L348R) were identified in each familial TAAD proband separately, and an additional novel ACTA2 mutation (Y168N) was identified in one patient with sporadic TAADs. In contrast, none of the three mutations occurred in 480 control subjects. Also, no other gene mutations were identified in this cohort of Chinese TAAD patients. The current study identified three novel ACTA2 mutations in Chinese TAAD patients, and these mutations represented the most predominant genes responsible for non-syndromic TAADs. In addition, HRM analysis was shown to be a sensitive and high-throughput method for screening gene mutations."	"Utilization of Whole Exome Sequencing to Identify Causative Mutations in Familial Congenital Heart Disease. Congenital heart disease (CHD) is the most common type of birth defect with family- and population-based studies supporting a strong genetic cause for CHD. The goal of this study was to determine whether a whole exome sequencing (WES) approach could identify pathogenic-segregating variants in multiplex CHD families. WES was performed on 9 kindreds with familial CHD, 4 with atrial septal defects, 2 with patent ductus arteriosus, 2 with tetralogy of Fallot, and 1 with pulmonary valve dysplasia. Rare variants (&lt;1% minor allele frequency) that segregated with disease were identified by WES, and variants in 69 CHD candidate genes were further analyzed. These selected variants were subjected to in silico analysis to predict pathogenicity and resulted in the discovery of likely pathogenic mutations in 3 of 9 (33%) families. A GATA4 mutation in the transactivation domain, p.G115W, was identified in familial atrial septal defects and demonstrated decreased transactivation ability in vitro. A p.I263V mutation in TLL1 was identified in an atrial septal defects kindred and is predicted to affect the enzymatic functionality of TLL1. A disease-segregating splice donor site mutation in MYH11 (c.4599+1delG) was identified in familial patent ductus arteriosus and found to disrupt normal splicing of MYH11 mRNA in the affected individual. Our findings demonstrate the clinical utility of WES to identify causative mutations in familial CHD and demonstrate the successful use of a CHD candidate gene list to allow for a more streamlined approach enabling rapid prioritization and identification of likely pathogenic variants from large WES data sets. URL: https://clinicaltrials.gov; Unique Identifier: NCT0112048."	"Independent prognostic impact of CD15 on complete remission achievement in patients with acute myeloid leukemia. The prognostic role of CD15 in acute myeloid leukemia (AML) has been tested in different studies with conflicting results. To address this issue, we retrospectively evaluated a cohort of 460 AML patients of all ages with the exclusion of acute promyelocytic leukemia (M/F 243/217, median age 50.6 years [range 0.9-81.2]) intensively treated at our institute between January 1999 and December 2010. CD15 positivity was found in 171 of 406 evaluable patients (42.1%). Complete remission (CR) was achieved by 334 patients (72.6%), while 82 (17.8%) were resistant and 44 (9.6%) died during induction: the median CR duration was 15.5 months (range 0.6-176.0), with 2-year disease-free survival rate of 45.1% (95% confidence interval 39.6-50.6). The median overall survival was 14.4 months (range 0.3-177.0), with 2-year overall survival rate of 42.2% (95% confidence interval 37.5-46.9). At univariate analysis for CR achievement, age &lt; 60 years (P &lt; .001), World Health Organization classification (P = .045), low-risk karyotype (P &lt; .001), no high-risk karyotype (P = .006), positivity for AML-ETO (P = .004)/CBFβ-MYH11 (P = .003)/CD15 (P = .006)/CD11b (P = .013), negativity for FLT3-ITD (P = .001), Hb &gt; 8 g/dL (P = .020), and white blood cell &lt; 50 × 10<sup>9</sup> /L (P = .034) had a favorable impact. At a multivariate logistic regression model, CD15 positivity (P = .002), age &lt; 60 years (P = .008), white blood cell &lt; 50 × 10<sup>9</sup> /L (P = .017), and low-risk/no high-risk karyotype (P = .026/P = .025) retained an independent prognostic role on CR achievement. The baseline assessment of CD15 positivity appears to have a role in the risk evaluation for CR achievement in AML patients undergoing intensive chemotherapy and should be assessed in prospective studies together with other clinical and biologic features already reported."	"Differentiation defect in neural crest-derived smooth muscle cells in patients with aortopathy associated with bicuspid aortic valves. Individuals with bicuspid aortic valves (BAV) are at a higher risk of developing thoracic aortic aneurysms (TAA) than patients with trileaflet aortic valves (TAV). The aneurysms associated with BAV most commonly involve the ascending aorta and spare the descending aorta. Smooth muscle cells (SMCs) in the ascending and descending aorta arise from neural crest (NC) and paraxial mesoderm (PM), respectively. We hypothesized defective differentiation of the neural crest stem cells (NCSCs)-derived SMCs but not paraxial mesoderm cells (PMCs)-derived SMCs contributes to the aortopathy associated with BAV. When induced pluripotent stem cells (iPSCs) from BAV/TAA patients were differentiated into NCSC-derived SMCs, these cells demonstrated significantly decreased expression of marker of SMC differentiation (MYH11) and impaired contraction compared to normal control. In contrast, the PMC-derived SMCs were similar to control cells in these aspects. The NCSC-SMCs from the BAV/TAA also showed decreased TGF-β signaling based on phosphorylation of SMAD2, and increased mTOR signaling. Inhibition of mTOR pathway using rapamycin rescued the aberrant differentiation. Our data demonstrates that decreased differentiation and contraction of patient's NCSC-derived SMCs may contribute to that aortopathy associated with BAV. "	"Successful high-dose dexamethasone treatment of acquired pure red cell aplasia following ABO major mismatched allogeneic hematopoietic stem cell transplantation. A 46-year-old man was diagnosed with acute myelomonocytic leukemia involving inv(16)(p13.1q22) in August 2007. He received a human leukocyte antigen-identical, ABO major-mismatched (donor: A, recipient: O) bone marrow transplantation from an unrelated donor in June 2009. Cyclosporin A (CsA) and short-course methotrexate were used for graft versus host disease prophylaxis. Although granulocyte and platelet engraftment were achieved, the patient exhibited persistent anemia and was dependent on red blood cell (RBC) transfusions. Bone marrow aspiration on day 63 revealed the near absence of erythroid precursors, a finding consistent with pure red cell aplasia. No CBFβ-MYH11 transcripts were detected. The recipient's anti-A IgM antibody titer was 1:64, and his anti-A IgG antibody titer was 1:1024. The discontinuation of CsA, and the initiation of rituximab and donor lymphocyte infusions were all ineffective against his anemia. He was treated with high-dose dexamethasone (DEXA) (40 mg/day DEXA, days 657-660, days 757-760; 20 mg/day DEXA, days 764-767, days 772-775) in April 2010. A follow-up examination performed at 7 months after the high-dose DEXA treatment showed the patient's anti-A antibody titer to have dropped to an undetectable level. His hemoglobin levels also returned to normal (Hb: 13.4 g/dl), and he no longer required RBC transfusions."	"Aortic Aneurysm: Etiopathogenesis and Clinicopathologic Correlations. Aortic aneurysm (AA) is one of the life-threatening aortic diseases, leading to aortic rupture of any cause including atherosclerotic and non-atherosclerotic diseases. AA is diagnosed in a variable proportion of patients with dilated aorta by imaging modality. The etiopathogenesis of AA remains unclear in many aortic diseases. Furthermore, although it may be difficult to explain all phenotypes of patients even if genetic mutation could be identified in some proteins such as smooth muscle cell α-actin (ACTA2), myosin heavy chain 11 (MYH11) or SMAD3, individualized consideration of these factors in each patient is essential on the basis of clinicopathological characteristics. "	"Rapid de novo aneurysm formation after clipping of a ruptured middle cerebral artery aneurysm in an infant with an MYH11 mutation. The authors report the case of a previously healthy 6-month-old girl who presented with right arm and leg stiffening consistent with seizure activity. An initial CT scan of the head demonstrated acute subarachnoid hemorrhage in the basal cisterns extending into the left sylvian fissure. Computed tomography angiography demonstrated a 7 × 6 × 5-mm saccular aneurysm of the inferior M2 division of the left middle cerebral artery. The patient underwent left craniotomy and microsurgical clip ligation with wrapping of the aneurysm neck because the vessel appeared circumferentially dysplastic in the region of the aneurysm. Postoperative angiography demonstrated a small remnant, sluggish distal flow, but no significant cerebral vasospasm. Fifty-five days after the initial aneurysm rupture, the patient presented again with an acute intraparenchymal hemorrhage of the left anterior temporal lobe. Angiogram revealed a circumferentially dysplastic superior division of the M2 branch, with a new 5 × 4-mm saccular aneurysm distinct from the first, with 2 smaller aneurysms distal to the new ruptured aneurysm. Endovascular parent vessel occlusion with Onyx was performed. Genetic testing revealed a mutation of the MYH11. To the authors' knowledge, this is the first report of rapid de novo aneurysm formation in an infant with an MYH11 mutation. The authors review the patient's clinical presentation and management and comprehensively review the literature on this topic."	"Comparison of Multiparameter Flow Cytometry Immunophenotypic Analysis and Quantitative RT-PCR for the Detection of Minimal Residual Disease of Core Binding Factor Acute Myeloid Leukemia. To examine the value of minimal residual disease (MRD) by multiparameter flow cytometry (MFC) in core binding factor (CBF) acute myeloid leukemia (AML). We studied 42 patients with t(8;21)(q22;q22)/RUNX1-RUNX1T1 and 51 with inv(16)(p13.1q22)/CBFB-MYH11 Tandem MRD analyses by MFC and quantitative reverse transcription polymerase chain reaction (qRT-PCR) were performed in 281 bone marrow (BM) samples. Grouping qRT-PCR levels as ≤0.01, 0.01 to 0.1, 0.1 to 1, 1 to 10, and &gt;10%, and reporting MFC (sensitivity, 0.1%-0.01%) as positive or negative, κ coefficient test showed no agreement between qRT-PCR and MFC in BM samples obtained postinduction (n = 44, κ = 0.041), and only weak agreement during consolidation (n = 108, κ = 0.083), maintenance/follow-up (n = 107, κ = 0.164), and salvage chemotherapy (n = 24, 0.376). In the post induction BM samples, while qRT-PCR &lt;0.1% was associated with lower and ≥10% with higher AML relapse risk (P = .035), qRT-PCR between 0.1% to 1% and 1% to 10% failed to predict relapse. In the latter group with intermediate qRT-PCR results, MFC provided prognostic value for relapse (P = 0.006). MFC and qRT-PCR are complementary tests in monitoring CBF AML MRD."	"Hereditary Influence in Thoracic Aortic Aneurysm and Dissection. Thoracic aortic aneurysm is a potentially life-threatening condition in that it places patients at risk for aortic dissection or rupture. However, our modern understanding of the pathogenesis of thoracic aortic aneurysm is quite limited. A genetic predisposition to thoracic aortic aneurysm has been established, and gene discovery in affected families has identified several major categories of gene alterations. The first involves mutations in genes encoding various components of the transforming growth factor beta (TGF-β) signaling cascade (FBN1, TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3 and SKI), and these conditions are known collectively as the TGF-β vasculopathies. The second set of genes encode components of the smooth muscle contractile apparatus (ACTA2, MYH11, MYLK, and PRKG1), a group called the smooth muscle contraction vasculopathies. Mechanistic hypotheses based on these discoveries have shaped rational therapies, some of which are under clinical evaluation. This review discusses published data on genes involved in thoracic aortic aneurysm and attempts to explain divergent hypotheses of aneurysm origin."	"Myoepithelial cells in lobular carcinoma in situ: distribution and immunophenotype. Myoepithelial cells have important physical and paracrine roles in breast tissue development, maintenance, and tumor suppression. Recent molecular and immunohistochemical studies have demonstrated phenotypic alterations in ductal carcinoma in situ-associated myoepithelial cells. Although the relationship of lobular carcinoma in situ (LCIS) and myoepithelial cells was described in 1980, further characterization of LCIS-associated myoepithelial cells is lacking. We stained 27 breast specimens harboring abundant LCIS with antibodies to smooth muscle myosin heavy chain, smooth muscle actin, and calponin. Dual stains for E-cadherin/smooth muscle myosin heavy chain and CK7/p63 were also performed. In each case, the intensity and distribution of staining in LCIS-associated myoepithelial cells were compared with normal breast tissue on the same slide. In 78% of the cases, LCIS-associated myoepithelial cells demonstrated decreased staining intensity for one or more myoepithelial markers. The normal localization of myoepithelial cells (flat against the basement membrane, pattern N) was seen in 96% of LCIS, yet 85% of cases had areas with myoepithelial cell cytoplasm oriented perpendicular to the basement membrane (pattern P), and in 30% of cases, myoepithelial cells appeared focally admixed with LCIS cells (pattern C). This study characterizes detailed architectural and immunophenotypic alterations of LCIS-associated myoepithelial cells. The finding of variably diminished staining favors application of several myoepithelial immunostains in clinical practice. The interaction of LCIS with myoepithelial cells, especially in light of the perpendicular and central architectural arrangements, deserves further mechanistic investigation."	"Feasibility of the AML profiler (Skyline™ Array) for patient risk stratification in a multicentre trial: a preliminary comparison with the conventional approach. Deoxyribonucleic acid microarrays allow researchers to measure mRNA levels of thousands of genes in a single experiment and could be useful for diagnostic purposes in patients with acute myeloid leukaemia (AML). We assessed the feasibility of the AML profiler (Skyline™ Array) in genetic stratification of patients with de novo AML and compared the results with those obtained using the standard cytogenetic and molecular approach. Diagnostic bone marrow from 31 consecutive de novo AML cases was used to test MLL-PTD, FLT3-ITD and TKD, NPM1 and CEBPAdm mutations. Purified RNA was used to assess RUNX1-RUNX1T1, PML-RARα and CBFβ-MYH11 rearrangements. RNA remnants underwent gene expression profiling analysis using the AML profiler, which detects chromosomal aberrations: t(8;21), t(15;17), inv(16), mutations (CEBPAdm, ABD-NPM1) and BAALC and EVI1 expression. Thirty cases were successfully analysed with both methods. Five cases had FLT3-ITD. In one case, a t(8;21) was correctly detected by both methods. Four cases had inv(16); in one, the RNA quality was unsatisfactory and it was not hybridized, and in the other three, the AML profiler detected the genetic lesion - this being a rare type I translocation in one case. Two cases with acute promyelocytic leukaemia were diagnosed by both methods. Results for NPM1 mutations were concordant in all but two cases (2/11, non-ABD mutations). Analysis of costs and turnaround times showed that the AML profiler was no more expensive than the conventional molecular approach. These results suggest that the AML profiler could be useful in multicentre trials to rapidly identify patients with AML with a good prognosis. Copyright © 2016 John Wiley &amp; Sons, Ltd."	"[Phenotypic modulation of bladder smooth muscle in diabetic rats]. To investigate whether phenotypic modulation of bladder smooth muscle occurs in diabetic rats. Thirty-two male SD rats were randomly assigned into diabetic group and control group. Diabetic rat models were established by a single intraperitoneal injection of streptozotocin (60 mg/kg). Nine weeks later, the bladder tissues of the rats were examined for structural changes using HE and Masson's trichrome staining , and the expressions of myocardin, α-SMA, and SMMHC in bladder smooth muscles were detected with RT-PCR and Western blotting. Compared with the control group, the diabetic rats showed obvious polydipsia and polyuria with significantly increased collagenous fibers and lowered expressions of myocardin, α-SMA, and SMMHC in the bladder tissue (P&lt;0.05). s In rats at 9 weeks after diabetic model establishment, phenotypic transition of the bladder smooth muscles occurs to cause bladder contractile dysfunction, which may play an important role in the pathology of diabetic bladder dysfunction."	"Myh11-Cre is not limited to peritubular myoid cells and interaction between Sertoli and peritubular myoid cells needs investigation. NA"	"The genetic landscape of paediatric de novo acute myeloid leukaemia as defined by single nucleotide polymorphism array and exon sequencing of 100 candidate genes. Cytogenetic analyses of a consecutive series of 67 paediatric (median age 8 years; range 0-17) de novo acute myeloid leukaemia (AML) patients revealed aberrations in 55 (82%) cases. The most common subgroups were KMT2A rearrangement (29%), normal karyotype (15%), RUNX1-RUNX1T1 (10%), deletions of 5q, 7q and/or 17p (9%), myeloid leukaemia associated with Down syndrome (7%), PML-RARA (7%) and CBFB-MYH11 (5%). Single nucleotide polymorphism array (SNP-A) analysis and exon sequencing of 100 genes, performed in 52 and 40 cases, respectively (39 overlapping), revealed ≥1 aberration in 89%; when adding cytogenetic data, this frequency increased to 98%. Uniparental isodisomies (UPIDs) were detected in 13% and copy number aberrations (CNAs) in 63% (median 2/case); three UPIDs and 22 CNAs were recurrent. Twenty-two genes were targeted by focal CNAs, including AEBP2 and PHF6 deletions and genes involved in AML-associated gene fusions. Deep sequencing identified mutations in 65% of cases (median 1/case). In total, 60 mutations were found in 30 genes, primarily those encoding signalling proteins (47%), transcription factors (25%), or epigenetic modifiers (13%). Twelve genes (BCOR, CEBPA, FLT3, GATA1, KIT, KRAS, NOTCH1, NPM1, NRAS, PTPN11, SMC3 and TP53) were recurrently mutated. We conclude that SNP-A and deep sequencing analyses complement the cytogenetic diagnosis of paediatric AML."	"Comprehensive mutational profiling of core binding factor acute myeloid leukemia. Acute myeloid leukemia (AML) with t(8;21) or inv(16) have been recognized as unique entities within AML and are usually reported together as core binding factor AML (CBF-AML). However, there is considerable clinical and biological heterogeneity within this group of diseases, and relapse incidence reaches up to 40%. Moreover, translocations involving CBFs are not sufficient to induce AML on its own and the full spectrum of mutations coexisting with CBF translocations has not been elucidated. To address these issues, we performed extensive mutational analysis by high-throughput sequencing in 215 patients with CBF-AML enrolled in the Phase 3 Trial of Systematic Versus Response-adapted Timed-Sequential Induction in Patients With Core Binding Factor Acute Myeloid Leukemia and Treating Patients with Childhood Acute Myeloid Leukemia with Interleukin-2 trials (age, 1-60 years). Mutations in genes activating tyrosine kinase signaling (including KIT, N/KRAS, and FLT3) were frequent in both subtypes of CBF-AML. In contrast, mutations in genes that regulate chromatin conformation or encode members of the cohesin complex were observed with high frequencies in t(8;21) AML (42% and 18%, respectively), whereas they were nearly absent in inv(16) AML. High KIT mutant allele ratios defined a group of t(8;21) AML patients with poor prognosis, whereas high N/KRAS mutant allele ratios were associated with the lack of KIT or FLT3 mutations and a favorable outcome. In addition, mutations in epigenetic modifying or cohesin genes were associated with a poor prognosis in patients with tyrosine kinase pathway mutations, suggesting synergic cooperation between these events. These data suggest that diverse cooperating mutations may influence CBF-AML pathophysiology as well as clinical behavior and point to potential unique pathogenesis of t(8;21) vs inv(16) AML."	"Graded effects of unregulated smooth muscle myosin on intestinal architecture, intestinal motility and vascular function in zebrafish. Smooth muscle contraction is controlled by the regulated activity of the myosin heavy chain ATPase (Myh11). Myh11 mutations have diverse effects in the cardiovascular, digestive and genitourinary systems in humans and animal models. We previously reported a recessive missense mutation, meltdown (mlt), which converts a highly conserved tryptophan to arginine (W512R) in the rigid relay loop of zebrafish Myh11. The mlt mutation disrupts myosin regulation and non-autonomously induces invasive expansion of the intestinal epithelium. Here, we report two newly identified missense mutations in the switch-1 (S237Y) and coil-coiled (L1287M) domains of Myh11 that fail to complement mlt Cell invasion was not detected in either homozygous mutant but could be induced by oxidative stress and activation of oncogenic signaling pathways. The smooth muscle defect imparted by the mlt and S237Y mutations also delayed intestinal transit, and altered vascular function, as measured by blood flow in the dorsal aorta. The cell-invasion phenotype induced by the three myh11 mutants correlated with the degree of myosin deregulation. These findings suggest that the vertebrate intestinal epithelium is tuned to the physical state of the surrounding stroma, which, in turn, governs its response to physiologic and pathologic stimuli. Genetic variants that alter the regulation of smooth muscle myosin might be risk factors for diseases affecting the intestine, vasculature, and other tissues that contain smooth muscle or contractile cells that express smooth muscle proteins, particularly in the setting of redox stress."	"Leukemogenic potency of the novel FLT3-N676K mutant. The novel FMS-like tyrosine kinase 3 (FLT3)-N676K point mutation within the FLT3 kinase domain-1 was recently identified in 6 % of de novo acute myeloid leukemia (AML) patients with inv(16). Because FLT3-N676K was encountered almost exclusively in inv(16) AML, we investigated the transforming potential of FLT3-N676K, the cooperation between FLT3-N676K and core binding factor ß-smooth muscle myosin heavy chain (CBFß-SMMHC) (encoded by the inv(16) chimeric gene CBFB-MYH11) in inducing acute leukemia, and tested the sensitivity of FLT3-N676K-positive leukemic cells to FLT3 inhibitors. Retroviral expression of FLT3-N676K in myeloid 32D cells induced AML in syngeneic C3H/HeJ mice (n = 11/13, median latency 58 days), with a transforming activity similar to FLT3-internal tandem duplication (ITD) (n = 8/8), FLT3-TKD D835Y (n = 8/9), and FLT3-ITD-N676K (n = 9/9) mutations. Three out of 14 (21.4 %) C57BL/6J mice transplanted with FLT3-N676K-transduced primary hematopoietic progenitor cells developed acute leukemia (latency of 68, 77, and 273 days), while no hematological malignancy was observed in the control groups including FLT3-ITD. Moreover, co-expression of FLT3-N676K/CBFß-SMMHC did not promote acute leukemia in three independent experiments (n = 16). In comparison with FLT3-ITD, FLT3-N676K induced much higher activation of FLT3 and tended to trigger stronger phosphorylation of MAPK and AKT. Importantly, leukemic cells carrying the FLT3-N676K mutant in the absence of an ITD mutation were highly sensitive to FLT3 inhibitors AC220 and crenolanib, and crenolanib even retained activity against the AC220-resistant FLT3-ITD-N676K mutant. Taken together, the FLT3-N676K mutant is potent to transform murine hematopoietic stem/progenitor cells in vivo. This is the first report of acute leukemia induced by an activating FLT3 mutation in C57BL/6J mice. Moreover, further experiments investigating molecular mechanisms for leukemogenesis induced by FLT3-N676K mutation and clinical evaluation of FLT3 inhibitors in FLT3-N676K-positive AML seem warranted."	"Transdifferentiation of human endothelial progenitors into smooth muscle cells. Access to smooth muscle cells (SMC) would create opportunities for tissue engineering, drug testing, and disease modeling. Herein we report the direct conversion of human endothelial progenitor cells (EPC) to induced smooth muscle cells (iSMC) by induced expression of MYOCD. The EPC undergo a cytoskeletal rearrangement resembling that of mesenchymal cells within 3 days post initiation of MYOCD expression. By day 7, the reprogrammed cells show upregulation of smooth muscle markers ACTA2, MYH11, and TAGLN by qRT-PCR and ACTA2 and MYH11 expression by immunofluorescence. By two weeks, they resemble umbilical artery SMC in microarray gene expression analysis. The iSMC, in contrast to EPC control, show calcium transients in response to phenylephrine stimulation and a contractility an order of magnitude higher than that of EPC as determined by traction force microscopy. Tissue-engineered blood vessels constructed using iSMC show functionality with respect to flow- and drug-mediated vasodilation and vasoconstriction. "	"Choice of xenogenic-free expansion media significantly influences the myogenic differentiation potential of human bone marrow-derived mesenchymal stromal cells. Mesenchymal stromal cells (MSCs) have great potential for use in cell-based therapies for restoration of structure and function of many tissue types including smooth muscle. We compared proliferation, immunophenotype, differentiation capability and gene expression of bone marrow-derived MSCs expanded in different media containing human serum, plasma and platelet lysate in combination with commonly used protocols for myogenic, osteogenic, chondrogenic and adipogenic differentiation. Moreover, we developed a xenogenic-free protocol for myogenic differentiation of MSCs. Expansion of MSCs in media complemented with serum, serum + platelet lysate or plasma + platelet lysate were multipotent because they differentiated toward four mesenchymal (myogenic, osteogenic, chondrogenic, adipogenic) lineages. Addition of platelet lysate to expansion media increased the proliferation of MSCs and their expression of CD146. Incubation of MSCs in medium containing human serum or plasma plus 5% human platelet lysate in combination with smooth muscle cell (SMC)-inducing growth factors TGFβ1, PDGF and ascorbic acid induced high expression of ACTA2, TAGLN, CNN1 and/or MYH11 contractile SMC markers. Osteogenic, adipogenic and chondrogenic differentiations served as controls. Our study provides novel data on the myogenic differentiation potential of human MSCs toward the SMC lineage using different xenogenic-free cell culture expansion media in combination with distinct differentiation medium compositions. We show that the choice of expansion medium significantly influences the differentiation potential of human MSCs toward the smooth muscle cell, as well as osteogenic, adipogenic and chondrogenic lineages. These results can aid in designing studies using MSCs for tissue-specific therapeutic applications."	"Serum-resistant CpG-STAT3 decoy for targeting survival and immune checkpoint signaling in acute myeloid leukemia. Targeting oncogenic transcription factor signal transducer and activator of transcription 3 (STAT3) in acute myeloid leukemia (AML) can reduce blast survival and tumor immune evasion. Decoy oligodeoxynucleotides (dODNs), which comprise STAT3-specific DNA sequences are competitive inhibition of STAT3 transcriptional activity. To deliver STAT3dODN specifically to myeloid cells, we linked STAT3dODN to the Toll-like receptor 9 (TLR9) ligand, cytosine guanine dinucleotide (CpG). The CpG-STAT3dODN conjugates are quickly internalized by human and mouse TLR9(+)immune cells (dendritic cells, B cells) and the majority of patients' derived AML blasts, including leukemia stem/progenitor cells. Following uptake, CpG-STAT3dODNs are released from endosomes, and bind and sequester cytoplasmic STAT3, thereby inhibiting downstream gene expression in target cells. STAT3 inhibition in patients' AML cells limits their immunosuppressive potential by reduced arginase expression, thereby partly restoring T-cell proliferation. Partly chemically modified CpG-STAT3dODNs have &gt;60 hours serum half-life which allows for IV administration to leukemia-bearing mice (50% effective dose ∼ 2.5 mg/kg). Repeated administration of CpG-STAT3dODN resulted in regression of human MV4-11 AML in mice. The antitumor efficacy of this strategy is further enhanced in immunocompetent mice by combining direct leukemia-specific cytotoxicity with immunogenic effects of STAT3 blocking/TLR9 triggering. CpG-STAT3dODN effectively reducedCbfb/MYH11/MplAML burden in various organs and eliminated leukemia stem/progenitor cells, mainly through CD8/CD4 T-cell-mediated immune responses. In contrast, small-molecule Janus kinase 2/STAT3 inhibitor failed to reproduce therapeutic effects of cell-selective CpG-STAT3dODN strategy. These results demonstrate therapeutic potential of CpG-STAT3dODN inhibitors with broad implications for treatment of AML and potentially other hematologic malignancies."	"Structure of the Elastin-Contractile Units in the Thoracic Aorta and How Genes That Cause Thoracic Aortic Aneurysms and Dissections Disrupt This Structure. The medial layer of the aorta confers elasticity and strength to the aortic wall and is composed of alternating layers of smooth muscle cells (SMCs) and elastic fibres. The SMC elastin-contractile unit is a structural unit that links the elastin fibres to the SMCs and is characterized by the following: (1) layers of elastin fibres that are surrounded by microfibrils; (2) microfibrils that bind to the integrin receptors in focal adhesions on the cell surface of the SMCs; and (3) SMC contractile filaments that are linked to the focal adhesions on the inner side of the membrane. The genes that are altered to cause thoracic aortic aneurysms and aortic dissections encode proteins involved in the structure or function of the SMC elastin-contractile unit. Included in this gene list are the genes encoding protein that are structural components of elastin fibres and microfibrils, FBN1, MFAP5, ELN, and FBLN4. Also included are genes that encode structural proteins in the SMC contractile unit, including ACTA2, which encodes SMC-specific α-actin and MYH11, which encodes SMC-specific myosin heavy chain, along with MYLK and PRKG1, which encode kinases that control SMC contraction. Finally, mutations in the gene encoding the protein linking integrin receptors to the contractile filaments, FLNA, also predispose to thoracic aortic disease. Thus, these data suggest that functional SMC elastin-contractile units are important for maintaining the structural integrity of the aorta. "	"Smooth Muscle-Like Cells Generated from Human Mesenchymal Stromal Cells Display Marker Gene Expression and Electrophysiological Competence Comparable to Bladder Smooth Muscle Cells. The use of mesenchymal stromal cells (MSCs) differentiated toward a smooth muscle cell (SMC) phenotype may provide an alternative for investigators interested in regenerating urinary tract organs such as the bladder where autologous smooth muscle cells cannot be used or are unavailable. In this study we measured the effects of good manufacturing practice (GMP)-compliant expansion followed by myogenic differentiation of human MSCs on the expression of a range of contractile (from early to late) myogenic markers in relation to the electrophysiological parameters to assess the functional role of the differentiated MSCs and found that differentiation of MSCs associated with electrophysiological competence comparable to bladder SMCs. Within 1-2 weeks of myogenic differentiation, differentiating MSCs significantly expressed alpha smooth muscle actin (αSMA; ACTA2), transgelin (TAGLN), calponin (CNN1), and smooth muscle myosin heavy chain (SM-MHC; MYH11) according to qRT-PCR and/or immunofluorescence and Western blot. Voltage-gated Na+ current levels also increased within the same time period following myogenic differentiation. In contrast to undifferentiated MSCs, differentiated MSCs and bladder SMCs exhibited elevated cytosolic Ca2+ transients in response to K+-induced depolarization and contracted in response to K+ indicating functional maturation of differentiated MSCs. Depolarization was suppressed by Cd2+, an inhibitor of voltage-gated Ca2+-channels. The expression of Na+-channels was pharmacologically identified as the Nav1.4 subtype, while the K+ and Ca2+ ion channels were identified by gene expression of KCNMA1, CACNA1C and CACNA1H which encode for the large conductance Ca2+-activated K+ channel BKCa channels, Cav1.2 L-type Ca2+ channels and Cav3.2 T-type Ca2+ channels, respectively. This protocol may be used to differentiate adult MSCs into smooth muscle-like cells with an intermediate-to-late SMC contractile phenotype exhibiting voltage-gated ion channel activity comparable to bladder SMCs which may be important for urological regenerative medicine applications. "	"Developmental pathways and endothelial to mesenchymal transition in canine myxomatous mitral valve disease. Epithelial to mesenchymal transition (EMT) and the cardiovascular equivalent, endothelial to mesenchymal transition (EndoMT), contribute to a range of chronic degenerative diseases and cancer metastasis. Chronic valvulopathies exhibit some features of EndoMT and activation of developmental signalling pathways, such as osteogenesis and chondrogenesis, expression of cell differentiation markers, basement membrane damage and endothelial transformation. The aim of the present study was to investigate the potential role of developmental mechanisms in canine myxomatous mitral valve disease (MMVD) using a combination of transcriptomic array technology, RT-PCR and immunohistochemistry. There was significant differential expression for genes typically associated with valvulogenesis and EndoMT, including markers of inflammation (IL6, IL18 and TLR4), basement membrane disarray (NID1, LAMA2 and CTSS), mesenchymal and endothelial cell differentiation (MYH11 and TAGLN) and EndoMT (ACTA2, SNAI1, CTNNB1, HAS2, CDH5, and NOTCH1), with fold changes from +15.35 (ACTA2) to -5.52 (LAMA2). These changes in gene expression were confirmed using RT-PCR, except for HAS2. In silico analysis identified important gene networks and canonical pathways in MMVD that have associations with development and organogenesis, including inflammation, valve morphogenesis and EMT, as well as components of the basement membrane and extra-cellular matrix. Immunohistochemistry identified changes in the expression of hyaluronic acid synthase (Has2), Snai1, α-smooth muscle actin (α-SMA) and VE-cadherin (CDH5), and co-expression of Has2 with α-SMA. These research findings strongly suggest involvement of developmental signalling pathways and mechanisms, including EndoMT, in the pathogenesis of canine MMVD. "	"Genome-wide binding of transcription factors in inv(16) acute myeloid leukemia. The inv(16) translocation is associated with 5% of AML cases and gives rise to expression of the oncofusion protein CBFβ-MYH11. Although different molecular mechanisms for the oncogenic activity of this fusion protein have been proposed these were mostly based on in vitro experiments or single loci analysis. Recently, we investigated the genome-wide action of this fusion protein in the context of other hematopoietic transcription factors (Mandoli et al., 2014). Here, we describe in detail the ChIP-seq and RNA-seq methods used to generate the data associated with this study. Our analysis of CBFβ-MYH11 as well as multiple other hematopoietic transcription factors using ChIP-seq data revealed RUNX1 dependent binding of CBFβ-MYH11 as well as interaction of the RUNX1/CBFβ-MYH11 complex with other hematopoietic regulators. Further RNA-seq based analysis suggested that CBFβ-MYH11 can act both as activator and repressor. "	"Epigenetic Control of Smooth Muscle Cell Identity and Lineage Memory. Vascular smooth muscle cells (SMCs), like all cells, acquire a cell-specific epigenetic signature during development that includes acquisition of a unique repertoire of histone and DNA modifications. These changes are postulated to induce an open chromatin state (referred to as euchromatin) on the repertoire of genes that are expressed in differentiated SMC, including SMC-selective marker genes like Acta2 and Myh11, as well as housekeeping genes expressed by most cell types. In contrast, genes that are silenced in differentiated SMC acquire modifications associated with a closed chromatin state (ie, heterochromatin) and transcriptional silencing. Herein, we review mechanisms that regulate epigenetic control of the differentiated state of SMC. In addition, we identify some of the major limitations in the field and future challenges, including development of innovative new tools and approaches, for performing single-cell epigenetic assays and locus-selective editing of the epigenome that will allow direct studies of the functional role of specific epigenetic controls during development, injury repair, and disease, including major cardiovascular diseases, such as atherosclerosis, hypertension, and microvascular disease, associated with diabetes mellitus."	"Genetics of hereditary large vessel diseases. Recent progress in the study of hereditary large vessel diseases such as Marfan syndrome (MFS) have not only identified responsible genes but also provided better understanding of the pathophysiology and revealed possible new therapeutic targets. Genes identified for these diseases include FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, TGFB3, SKI, EFEMP2, COL3A1, FLNA, ACTA2, MYH11, MYLK and SLC2A10, as well as others. Their dysfunction disrupts the function of transforming growth factor-β (TGF-β) signaling pathways, as well as that of the extracellular matrix and smooth muscle contractile apparatus, resulting in progression of structural damage to large vessels, including aortic aneurysms and dissections. Notably, it has been shown that the TGF-β signaling pathway has a key role in the pathogenesis of MFS and related disorders, which may be important for development of strategies for medical and surgical treatment of thoracic aortic aneurysms and dissections. "	"Serum Response Factor Is Essential for Prenatal Gastrointestinal Smooth Muscle Development and Maintenance of Differentiated Phenotype. Smooth muscle cells (SMCs) characteristically express serum response factor (SRF), which regulates their development. The role of SRF in SMC plasticity in the pathophysiological conditions of gastrointestinal (GI) tract is less characterized. We generated SMC-specific Srf knockout mice and characterized the prenatally lethal phenotype using ultrasound biomicroscopy and histological analysis. We used small bowel partial obstruction surgeries and primary cell culture using cell-specific enhanced green fluorescent protein (EGFP) mouse lines to study phenotypic and molecular changes of SMCs by immunofluorescence, Western blotting, and quantitative polymerase chain reaction. Finally we examined SRF change in human rectal prolapse tissue by immunofluorescence. Congenital SMC-specific Srf knockout mice died before birth and displayed severe GI and cardiac defects. Partial obstruction resulted in an overall increase in SRF protein expression. However, individual SMCs appeared to gradually lose SRF in the hypertrophic muscle. Cells expressing low levels of SRF also expressed low levels of platelet-derived growth factor receptor alpha (PDGFRα(low)) and Ki67. SMCs grown in culture recaptured the phenotypic switch from differentiated SMCs to proliferative PDGFRα(low) cells. The immediate and dramatic reduction of Srf and Myh11 mRNA expression confirmed the phenotypic change. Human rectal prolapse tissue also demonstrated significant loss of SRF expression. SRF expression in SMCs is essential for prenatal development of the GI tract and heart. Following partial obstruction, SMCs down-regulate SRF to transition into proliferative PDGFRα(low) cells that may represent a phenotype responsible for their plasticity. These findings demonstrate that SRF also plays a critical role in the remodeling process following GI injury."	"Preexisting smooth muscle cells contribute to neointimal cell repopulation at an incidence varying widely among individual lesions. With the diverse origin of neointimal cells, previous studies have documented differences of neointimal cell lineage composition across models, but the animal-to-animal difference has not attracted much attention, although the cellular heterogeneity may impact neointimal growth and its response to therapeutic interventions. R26R(+);Myh11-CreER(+), and R26R(+);Scl-CreER(+) mice were used to attach LacZ tags to the preexisting smooth muscle cells (SMCs) and endothelial cells (ECs), respectively. Neointimal lesions were created via complete ligation of the common carotid artery (CCA) and transluminal injury to the femoral artery (FA). LacZ-tagged SMCs were physically relocated from media to neointima and changed to a dedifferentiated phenotype in both CCA and FA lesions. The content of SMCs in the neointimal tissue, however, varied widely among specimens, ranging from 5 to 70% and 0 to 85%, with an average at low levels of 27% and 29% in CCA (n = 15) and FA (n = 15) lesions, respectively. Bone marrow cells, although able to home to the injured arteries, did not differentiate fully into SMCs after either type of injury. Preexisting ECs were located in the subendothelial region and produced mesenchymal marker α-actin, indicating endothelial-mesenchymal transition (EndoMT); however, EC-derived cells represented only 7% and 3% of the total neointimal cell pool of CCA (n = 7) and FA (n = 7) lesions, respectively. ECs located on the luminal surface exhibited little evidence of EndoMT. Neointimal hyperplasia proceeds with a wide range of variation in its cellular composition between individual lesions. Relative to ECs, SMCs are major contributors to the lesion-to-lesion heterogeneity in neointimal cell lineage composition."	"Genetics, Pregnancy, and Aortic Degeneration. We present a case of familial thoracic aortic aneurysm and dissection (FTAAD) in a pregnant female. FTAAD is an inherited, nonsyndromic aortopathy resulting from several genetic mutations critical to aortic wall integrity have been identified. One such mutation is the myosin heavy chain gene (MYH11) which is responsible for 1-2% of all FTAAD cases. This mutation results in aortic medial degeneration, loss of elastin, and reticulin fiber fragmentation predisposing to TAAD. Aortic disease is more aggressive during pregnancy as a result of increased wall stress from hyperdynamic cardiovascular changes and estrogen-induced aortic media degeneration. Our patient was a 29-year-old G2P1 woman at 26 weeks gestation presenting with abdominal and back pain. Work-up revealed a 6.4-cm ascending aortic aneurysm with a type A dissection extending into all arch vessels, aortic coarctation at the isthmus, and a separate focal type B aortic dissection with visceral involvement. Surgical management included concomitant cesarean section with delivery of a live premature infant, tubal ligation, ascending aortic replacement with reconstruction of the arch vessels, and aortic valve resuspension. The type B dissection was managed medically without complication. This is the first reported case of aortic dissection in a patient with FTAAD/MYH11 mutation and pregnancy. This case highlights that FTAAD and pregnancy cause aortic degeneration via distinct mechanisms and that hyperdynamics of pregnancy increase aortic wall stress. Management of pregnancy associated with aortopathy requires early transfer to a tertiary center, careful investigation to identify familial aortopathy, fetal monitoring, and a multidisciplinary team approach."	"[Platelet-derived growth factor-BB induces phenotypic transformation of corpus cavernosum smooth muscle cells in SD rats]. To evaluate the effect of the platelet-derived growth factor-BB (PDGF-BB) on the phenotypic transformation of corpus cavernosum smooth muscle cells (CCSMC) in SD rats. CCSMCs were primarily cultured in the modified tissue sticking medium and subjected to immunofluorescence assay. The cells were divided into a blank control and four PDGF-BB groups, the latter exposed to 5, 10, 20, and 40 ng/ml of PDGF-BB, respectively, for 24 hours, and the cells in the 20 ng/ml PDGF-BB group treated for 24, 48, and 72 hours. The the relative expressions of α-SMA, SMMHC, calponin, and OPN mRNA were determined by real-time fluorescence quantitative RT-PCR (qRT-PCR). The α-SMA positive rate of the CCSMCs was over 95%. Compared with the blank control group, the expression levels of α-SMA, SMMHC, and calponin mRNA were significantly decreased (P &lt; 0.05) while that of OPN mRNA remarkably increased (P &lt; 0.05) in the PDGF-BB groups. The 20 ng/ml PDGF-BB group also showed significantly downregulated expressions of α-SMA, SMMHC, and calponin mRNA (P &lt; 0.05) and upregulated expression of OPN mRNA (P &lt; 0.05) at 24, 48, and 72 hours. PDGF-BB can induce the transformation of the phenotype of CCSMCs in SD rats from the contractile to the synthetic type."	"Incidence and Prognostic Value of Known Genetic Aberrations in Patients with Acute Myeloid Leukemia--a Two Year Study. In this work, we evaluated the incidence and prognostic value of several genetic aberrations in patients with a diagnosis of acute myeloid leukemia (AML). We analysed 90 patients: 42 males (mean age 54.5 years) and 48 females (mean age 59 years), with AML. The genetics of all leukemia samples was studied using conventional cytogenetics, the interphase fluorescence in situ hybridisation as well as the standardized RTPCR protocol. In 34.4% of patients, we detected at least one of the analysed genetic aberrations, except the CBFB MYH11, which we did not detect. Translocation t(8;21)/ AML1 ETO was found in 4.4% of patients with a mean age of 45.4 years, while none of these patients was older than 55 years. Translocation t(15;17)/ PMLRARA was found in 5.5% of patients with a mean age of 52.6 years and an almost equal distribution between younger and older patients. The MLL gene rearrangements were found in 6.6% of patients, the -5/ 5q- and/ or -7/ 7q- aberrations in 7.7% of patients, while the most frequent genetic abnormality in our study was trisomy 8 (10%). Moreover, we found a favorable clinical outcome in patients expressing fusion genes AML1-ETO or PMLRARA in contrast to an adverse clinical outcome with few remissions and death in AML patients with MLL, -5q/ -5 and -7q/ 7-. Finally, an intermediate prognosis was found in patients with trisomy 8. In this study, we found a good congruence with published literature on the incidence and prognostic value of several well established AML-associated genetic aberrations. This simple genetic-based classification system helps us to identify patients with a favorable, intermediate or unfavorable prognosis and to treat them with the best currently available therapy. However, analysis of new genetically defined abnormalities in AML is necessary for development of better therapeutic strategies and/or diagnostics."	"t(9;22) as secondary alteration in core-binding factor de novo acute myeloid leukemia. NA"	"[Effect of platelet-derived growth factor-BB on rat corpus cavernosum smooth muscle cell proliferation, migration and phenotypic modulation]. To study the effect of platelet-derived growth factor-BB (PDGFBBB) on rat corpus cavernosum smooth muscle (CCSM) cell proliferation, migration and phenotypic modulation and explore the underlying mechanisms. Wistar rat CCSM cells were obtained through a modified tissue culture method and identified by immunofluorescence assay. The effect of PDGFBB on the proliferation of CCSM cells was investigated using a CCK-8 kit and the optimum PDGFBB concentration for cell treatment was determined. CCSM cells were treated with vehicle or PDGF-BB at the optimum concentration, and the cell migration was examined using scratch assay; the mRNA expression of the transcription factor myocardin and the contractile phenotype markers αSMA and SMMHC in CCSM cells were determined by qRT-PCR at 24 h and 48 h. The protein expression of myocardin in CCSM cells incubated with PDGFBB for 0, 24 and 48 h was examined by Western blotting. In CCSM cell culture, 96.5%and 96% of the cells were positive for αSMA and smoothelin, respectively. PDGFBB at different concentrations markedly promoted the proliferation of CCSM cells; the optimum PDGFBB concentration for enhancing cell proliferation was 12.5 ng/mL, which induced the migration of CCSM cells and significantly reduced the mRNA expressions of myocardin, αSMA and SMMHC (P&lt;0.01). Exposure to PDGFBB decreased the protein expression of myocardin as the exposure time extended (within 48 h). CCSM cells of a high purity can be obtained by the modified tissue culture method. PDGFBB can promote the proliferation and migration of CCSM cells and cause a phenotypic conversion from the contractile to the synthetic type possibly by down-regulating myocardin."	"Routine Genetic Testing for Thoracic Aortic Aneurysm and Dissection in a Clinical Setting. Hereditary factors play an important etiologic role in thoracic aortic aneurysm and dissection (TAAD), with a number of genes proven to predispose to this condition. We initiated a clinical program for routine genetic testing of individuals for TAAD by whole exome sequencing (WES). Here we present our initial results. The WES was performed in 102 patients (mean age 56.8 years; range 13 to 83; 70 males [68.6%]) with TAAD. The following 21-gene panel was tested by WES: ACTA2, ADAMTS10, COL1A1, COL1A2, COL3A1, COL5A1, COL5A2, ELN, FBLN4, FLNA, FBN1, FBN2, MYH11, MYLK, NOTCH1, PRKG1, SLC2A10, SMAD3, TGFB2, TGFBR1, TGFBR2. Seventy-four patients (72.5%) had no medically important genetic alterations. Four patients (3.9%) had a deleterious mutation identified in the FBN1, COL5A1, MYLK, and FLNA genes. Twenty-two (21.6%) previously unreported suspicious variants of unknown significance were identified in 1 or more of the following genes: FBN1 (n = 5); MYH11 (n = 4); ACTA2 (n = 2); COL1A1 (n = 2); TGFBR1 (n = 2); COL3A1 (n = 1); COL5A1 (n = 1); COL5A2 (n = 1); FLNA (n = 1); NOTCH1 (n = 1); PRKG1 (n = 1); and TGFBR3 (n = 1). Identified mutations had implications for clinical management. Routine genetic screening of patients with TAAD provides information that enables genetically personalized care and permits identification of novel mutations responsible for aortic pathology. Analysis of large data sets of variants of unknown significance that include associated clinical features will help define the mutational spectrum of known genes underlying this phenotype and potential identify new candidate loci."	"Substrate-specific gene expression profiles in different kidney cell types are associated with Fabry disease. Fabry disease is an X-linked lysosomal storage disorder caused by mutations in the gene encoding the α-galactosidase A (α-Gal A) lysosomal enzyme, which results in globotriaosylceramide (Gb3) storage in vascular endothelial cells and different cell types throughout the body. Involvement of the kidney and heart is life threatening, and fibrosis of these organs is considered to be involved in the pathogenesis of Fabry disease. An increased concentration of deacylated Gb3 (lyso‑Gb3) in the plasma of symptomatic patients has also been suggested as a causative molecular event. To elucidate the molecular mechanisms involved in renal fibrosis in Fabry disease, the present analyzed the changes in global gene expression prior to and following Gb3 or lyso‑Gb3 treatment in two types of kidney cell lines, human proximal renal tubular epithelial (HK‑2) and mouse renal glomerular mesangial (SV40 MES 13) cells. Gb3 and lyso‑Gb3 treatment regulated the expression of 199 and 328 genes in each cell type, demonstrating a &gt;2.0‑fold change. The majority of the biological functions of the regulated genes were associated with fibrogenesis or epithelial‑mesenchymal transition (EMT). The gene expression patterns of sphingolipid‑treated HK‑2 cells were distinguishable from the patterns in the SV40 MES 13 cells. Several genes associated with the EMT were selected and evaluated further in kidney cells and in Fabry mouse kidney tissues. In the SV40 MES 13 cells, the DLL1, F8, and HOXA11 genes were downregulated, and FOXP2 was upregulated by treatment with Gb3 or lyso‑Gb3. In the HK‑2 cells, the ADAMTS6, BEST1, IL4, and MYH11 genes were upregulated. Upregulation of the FOXP2, COL15A1, IL4, and MYH11 genes was also observed in the Fabry mouse kidney tissues. The gene expression profiles in kidney cells following the addition of Gb3 or lyso‑Gb3 revealed substrate‑specific and cell‑specific patterns. These findings suggested that Gb3 and lyso‑Gb3 lead to renal fibrosis in Fabry disease through different biochemical modulations."	"A novel approach to quantitating leukemia fusion transcripts by qRT-PCR without the need for standard curves. Acute myeloid leukemia patients with recurrent cytogenetic abnormalities including inv(16);CBFB-MYH11 and t(15;17);PML-RARA may be assessed by monitoring the levels of the corresponding abnormal fusion transcripts by quantitative reverse transcription-PCR (qRT-PCR). Such testing is important for evaluating the response to therapy and for the detection of early relapse. Existing qRT-PCR methods are well established and in widespread use in clinical laboratories but they are laborious and require the generation of standard curves. Here, we describe a new method to quantitate fusion transcripts in acute myeloid leukemia by qRT-PCR without the need for standard curves. Our approach uses a plasmid calibrator containing both a fusion transcript sequence and a reference gene sequence, representing a perfect normalized copy number (fusion transcript copy number/reference gene transcript copy number; NCN) of 1.0. The NCN of patient specimens can be calculated relative to that of the single plasmid calibrator using experimentally derived PCR efficiency values. We compared the data obtained using the plasmid calibrator method to commercially available assays using standard curves and found that the results obtained by both methods are comparable over a broad range of values with similar sensitivities. Our method has the advantage of simplicity and is therefore lower in cost and may be less subject to errors that may be introduced during the generation of standard curves."	"A deletion mutation in myosin heavy chain 11 causing familial thoracic aortic dissection in two Japanese pedigrees. NA"	"[Clinical and laboratory characteristics of 12 Ph/BCR-ABL positive acute myeloid leukemia patients]. To explore the clinical and laboratory characteristics in favor of the diagnosis of Ph/BCR-ABL positive acute myeloid leukemia (Ph/BCR-ABL⁺ AML). Retrospectively analyzed the clinical and laboratory characteristics of 12 Ph/BCR-ABL⁺ AML cases from Feb, 2006 to Dec, 2013, with classic myeloid blast crisis of chronic myeloid leukemia (CML-MBC) as control, and followed-up the survival in these two cohorts of patients. The median age of 12 Ph/BCR-ABL⁺ AML was 27.5 years, 10 cases (83.3%) showed non/mild splenomegaly, and mainly comprised of M₂ and M₄ subtypes according to FAB classification. The median number of basophils and megakaryocytes in peripheral blood and bone marrow was lower than that of CML-CBC patients. All the cases expressed myeloid antigens, 8 cases (66.7%) expressed CD34, 11 cases were detected with t(9;22), 5 cases (45.5%) with additional chromosomal abnormalities, including 1 case of inv(16). All the cases had BCR-ABL transcripts at diagnosis:3(25.0%) cases were e1a2 type and the remaining was b2a2/b3a2type, among which 1 case coexpressed CBFβ-MYH11. Two out of 6 cases existed AML-like mutations:1 case of CEBPA and the other of FLT3-TKD. For all the patients, 7 cases achieved complete remission (CR), including 6 out of 7 cases receiving induction chemotherapy combined with tyrosine kinase inhibitor (TKI) achieved CR, and 1 out of 3 cases receiving chemotherapy alone achieved CR. The median overall survival was 16.5 months, that of allo-HSCT group was 33.5 months, which was higher than that of non-HSCT group (5.5 months). The expression of e1a2 type BCR-ABL, the coexpression of fusion genes which were more common in AML, the existence of AML-like mutations were all indications of a de novo Ph/BCR-ABL⁺ AML. Low induction CR rate and short survival of Ph/BCR-ABL⁺ AML implied that chemotherapy combined with TKI and followed by allo-HSCT in CR was the only effective way to improve their survival."	"First genetic analysis of aneurysm genes in familial and sporadic abdominal aortic aneurysm. Genetic causes for abdominal aortic aneurysm (AAA) have not been identified and the role of genes associated with familial thoracic aneurysms in AAA has not been explored. We analyzed nine genes associated with familial thoracic aortic aneurysms, the vascular Ehlers-Danlos gene COL3A1 and the MTHFR p.Ala222Val variant in 155 AAA patients. The thoracic aneurysm genes selected for this study were the transforming growth factor-beta pathway genes EFEMP2, FBN1, SMAD3, TGBF2, TGFBR1, TGFBR2, and the smooth muscle cells genes ACTA2, MYH11 and MYLK. Sanger sequencing of all coding exons and exon-intron boundaries of these genes was performed. Patients with at least one first-degree relative with an aortic aneurysm were classified as familial AAA (n = 99), the others as sporadic AAA. We found 47 different rare heterozygous variants in eight genes: two pathogenic, one likely pathogenic, twenty-one variants of unknown significance (VUS) and twenty-three unlikely pathogenic variants. In familial AAA we found one pathogenic and segregating variant (COL3A1 p.Arg491X), one likely pathogenic and segregating (MYH11 p.Arg254Cys), and fifteen VUS. In sporadic patients we found one pathogenic (TGFBR2 p.Ile525Phefs*18) and seven VUS. Thirteen patients had two or more variants. These results show a previously unknown association and overlapping genetic defects between AAA and familial thoracic aneurysms, indicating that genetic testing may help to identify the cause of familial and sporadic AAA. In this view, genetic testing of these genes specifically or in a genome-wide approach may help to identify the cause of familial and sporadic AAA."	"Down-regulation of miR-23b induces phenotypic switching of vascular smooth muscle cells in vitro and in vivo. Phenotypic switch of vascular smooth muscle cells (VSMCs) plays a key role in the pathogenesis of different vascular diseases, such as atherosclerosis and restenosis after coronary intervention. MicroRNAs have been identified as key regulators of VSMC biology. The miR-23b is highly expressed in VSMCs and it is involved in differentiation, proliferation, and migration of several non-vascular cell types. However, the role of miR-23b in vascular disease is currently unknown. Thus, the aim of the present study was to evaluate the role of miR-23b on VSMC phenotypic switch in vitro and after vascular injury in vivo. To determine the changes of miR-23b expression in the injured arterial wall, we used the standard rat carotid artery balloon injury model. In vivo studies demonstrated that miR-23b is down-regulated after vascular injury. Gain-of-function studies showed that overexpression of miR-23b inhibited VSMC proliferation and migration, whereas the opposite effect was obtained with the in vitro inhibition of miR-23b. We further demonstrated that miR-23b can significantly promote the expression of VSMC marker genes such as smooth muscle α-actin (ACTA2) and smooth muscle myosin heavy chain (MYH11). Overexpression of miR-23b in balloon-injured arteries by Ad-miR-23b markedly decreased neointimal hyperplasia. Finally, miR-23b specifically suppresses urokinase-type plasminogen activator, SMAD family member 3, and transcription factor forkhead box O4 (FoxO4) expression in phenotypically modulated VSMCs. By luciferase reporter assay, we validated the transcription factor FoxO4 as a direct target of miR-23b in VSMCs. We identify miR-23b as a novel regulator of VSMC phenotypic switch in vitro and following vascular injury in vivo."	"KLF4-dependent phenotypic modulation of smooth muscle cells has a key role in atherosclerotic plaque pathogenesis. Previous studies investigating the role of smooth muscle cells (SMCs) and macrophages in the pathogenesis of atherosclerosis have provided controversial results owing to the use of unreliable methods for clearly identifying each of these cell types. Here, using Myh11-CreER(T2) ROSA floxed STOP eYFP Apoe(-/-) mice to perform SMC lineage tracing, we find that traditional methods for detecting SMCs based on immunostaining for SMC markers fail to detect &gt;80% of SMC-derived cells within advanced atherosclerotic lesions. These unidentified SMC-derived cells exhibit phenotypes of other cell lineages, including macrophages and mesenchymal stem cells (MSCs). SMC-specific conditional knockout of Krüppel-like factor 4 (Klf4) resulted in reduced numbers of SMC-derived MSC- and macrophage-like cells, a marked reduction in lesion size, and increases in multiple indices of plaque stability, including an increase in fibrous cap thickness as compared to wild-type controls. On the basis of in vivo KLF4 chromatin immunoprecipitation-sequencing (ChIP-seq) analyses and studies of cholesterol-treated cultured SMCs, we identified &gt;800 KLF4 target genes, including many that regulate pro-inflammatory responses of SMCs. Our findings indicate that the contribution of SMCs to atherosclerotic plaques has been greatly underestimated, and that KLF4-dependent transitions in SMC phenotype are critical in lesion pathogenesis. "	"Conventional karyotyping and fluorescence in situ hybridization: an effective utilization strategy in diagnostic adult acute myeloid leukemia. Cytogenetics defines disease entities and predicts prognosis in acute myeloid leukemia (AML). Conventional karyotyping provides a comprehensive view of the genome, while fluorescence in situ hybridization (FISH) detects targeted abnormalities. The aim of this study was to compare the utility of karyotyping and FISH in adult AML. We studied 250 adult AML cases with concurrent karyotyping and FISH testing. Karyotyping was considered adequate when 20 or more metaphases were analyzed. In total, 220 cases had adequate karyotyping and were classified as normal karyotype/normal FISH (n = 92), normal karyotype/abnormal FISH (n = 4), abnormal karyotype/normal FISH (n = 8), and abnormal karyotype/abnormal FISH (n = 116). The overall karyotype/FISH concordance rate was 97.7% with five discordant cases identified, four from the normal karyotype/abnormal FISH group and one from the abnormal karyotype/abnormal FISH group. No karyotype/FISH discordance was seen in the abnormal karyotype/normal FISH group for the FISH probes evaluated. FISH lent prognostic information in one (0.5%) of 220 cases with normal karyotype/abnormal FISH: CBFB-MYH11 fusion, indicating favorable prognosis. In adult AML, FISH rarely provides additional information when karyotyping is adequate. We therefore propose an evidence-based, cost-effective algorithmic approach for routine conventional karyotype and FISH testing in adult AML workup."	"LRIG1 Regulates Ontogeny of Smooth Muscle-Derived Subsets of Interstitial Cells of Cajal in Mice. Interstitial cells of Cajal (ICC) control intestinal smooth muscle contraction to regulate gut motility. ICC within the plane of the myenteric plexus (ICC-MY) arise from KIT-positive progenitor cells during mouse embryogenesis. However, little is known about the ontogeny of ICC associated with the deep muscular plexus (ICC-DMP) in the small intestine and ICC associated with the submucosal plexus (ICC-SMP) in the colon. Leucine-rich repeats and immunoglobulin-like domains protein 1 (LRIG1) marks intestinal epithelial stem cells, but the role of LRIG1 in nonepithelial intestinal cells has not been identified. We sought to determine the ontogeny of ICC-DMP and ICC-SMP, and whether LRIG1 has a role in their development. Lrig1-null mice (homozygous Lrig1-CreERT2) and wild-type mice were analyzed by immunofluorescence and transit assays. Transit was evaluated by passage of orally administered rhodamine B-conjugated dextran. Lrig1-CreERT2 mice or mice with CreERT2 under control of an inducible smooth muscle promoter (Myh11-CreERT2) were crossed with Rosa26-LSL-YFP mice for lineage tracing analysis. In immunofluorescence assays, ICC-DMP and ICC-SMP were found to express LRIG1. Based on lineage tracing, ICC-DMP and ICC-SMP each arose from LRIG1-positive smooth muscle progenitors. In Lrig1-null mice, there was loss of staining for KIT in DMP and SMP regions, as well as for 2 additional ICC markers (anoctamin-1 and neurokinin 1 receptor). Lrig1-null mice had significant delays in small intestinal transit compared with control mice. LRIG1 regulates the postnatal development of ICC-DMP and ICC-SMP from smooth muscle progenitors in mice. Slowed small intestinal transit observed in Lrig1-null mice may be due, at least in part, to loss of the ICC-DMP population."	"Phenotypic switching of vascular smooth muscle cells in animal model of rat thoracic aortic aneurysm. To explore if there is phenotypic switching in the vascular smooth muscle cells (vSMCs) of rat thoracic aortic aneurysms and the role it plays in the process of aneurysm formation. Male SD white rats were assigned randomly to the aneurysm group (AG) and control group (CG). The animal aneurysm model was obtained by soaking the peri-adventitia with porcine pancreatic elastase (PPE). The rats in the CG were given saline to provide contrast. A vascular ultrasound was used to monitor the diameter of the aneurysm. Specimens were stained with haematoxylin and eosin (HE), and α-SMA, SM-MHC, matrix metalloproteinase (MMP)-2 and MMP-9 were detected with immunohistochemistry staining. α-SMA, SM-MHC, MMP-2 and MMP-9 were conducted with western blot. vSMCs taken from the descending aorta of both of the CG and AG were separated and cultured until Passage 3. 3-(4,5-Dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) method were used to analyse cell proliferation. Western blot was used to evaluate MMP-2, MMP-9 expression and flow cytometry was employed to assess cell apoptosis. Vascular ultrasound showed obvious dilatation of soaked descending aorta. HE staining showed thickening of thoracic aorta and disarrangement of cells after soaking with PPE. Immunohistochemistry staining showed high expression of MMP-2 and MMP-9 but low expression of SM-MHC and α-SMA in the AG. Tissue western blot analysis of the AG showed that the protein gray value was high in MMP-2 and MMP-9, but low in α-SMA and SM-MHC, which had statistical differences compared with CG with a P-value of &lt;0.05. MTT analysis showed vSMC proliferation activity was higher in the AG than in the CG. Flow cytometry analysis revealed that cell apoptosis between the control and aneurysm groups had significant statistical differences. There is vSMC phenotypic switching in animal models as seen through the rat thoracic aortic aneurysms. This may play an important role in the formation of aneurysms. Our findings are relevant to human aneurysms and may be conducive in the research of aortic aneurysm pathology and treatment."	"Allogeneic stem cell transplant may improve the outcome of adult patients with inv(16) acute myeloid leukemia in first complete remission with poor molecular responses to chemotherapy. Eighty-six adult patients with inv(16) acute myeloid leukemia (AML) in first complete remission (CR1) were serially monitored for CBFB-MYH11 transcript levels during the early courses of chemotherapy. Fifty-seven and 29 of them received chemotherapy/autologous stem cell transplant (SCT) and allogeneic (allo-)SCT after second consolidation, respectively. For patients receiving chemotherapy/autologous SCT, the sole independent adverse prognostic factor for the cumulative incidence of relapse (CIR), disease-free survival (DFS) and overall survival (OS) was a CBFB-MYH11 level &gt; 0.2% after course 2 consolidation (p = 0.003, 0.003 and 0.031), which was used to define a poor molecular response (MR). Allo-SCT significantly decreased the 3-year CIR and increased the DFS and OS of patients with a poor MR (p &lt; 0.0001, 0.0001 and 0.045) but did not improve the outcome of patients with good MR (all p &gt; 0.05) compared with chemotherapy/autologous SCT. Therefore, allo-SCT could improve the outcome of adult patients with inv(16) AML in CR1 with a poor MR during the early courses of chemotherapy. "	"Therapy-related leukemia with Inv(16)(p13.1q22) and type D CBFB/MYH11 developing after exposure to irinotecan-containing chemoradiotherapy. A 40-year-old woman developed therapy-related acute myeloid leukemia (t-AML) with inv(16)(p13.1q22) and a rare type D form of core-binding factor β-subunit gene-myosin heavy chain 11 gene (CBFB-MYH11) fusion transcript approximately 2.5 years after receiving chemoradiotherapy for uterine cervical cancer. t-AML with inv(16)(p13.1q22) and rare non-type A CBFB-MYH11 typically develops after exposure to a topoisomerase II inhibitor, with a short period of latency of one to five years. As the patient had no history of exposure to topoisomerase II inhibitors, among her previously used chemotherapeutics, the topoisomerase I inhibitor, irinotecan, was speculated to be the most plausible cause of t-AML in this case. The present case suggests that irinotecan may cause t-AML resembling that associated with topoisomerase II inhibitors. "	"Ehlers-Danlos syndrome type IV is associated with a novel G984R COL3A1 mutation. Ehlers-Danlos syndrome type IV is an autosomal dominant connective tissue disease. Mutations in COL3A1 have been identified to underlie this disease; however, to the best of our knowledge, no COL3A1 mutations have been reported in Ehlers-Danlos syndrome type IV patients with an ascending aortic aneurysm. In order to develop further understanding of COL3A1 mutations, an Ehlers-Danlos syndrome type IV patient diagnosed with an ascending aortic aneurysm and a familial history of sudden mortality was analyzed. Genomic DNA was isolated from the peripheral blood of the patient and his family members. All coding exons of eight aneurysm-related genes (FBN1, TGFBR1, TGFBR 2, MYH11, ACTA2, SLC2A10, NOTCH1 and COL3A1) were amplified using polymerase chain reaction (PCR). The PCR products were sequenced with the ABI 3100 Genetic Analyzer, and a mutation was predicted and identified using Polyphen-2, SIFT and Mutation Taster. The novel mutation was identified as c.2950G&gt;A in COL3A1, which results in p.G984R. All three programs predicted this mutation to be deleterous to the protein function. The novel mutation identified in this study is potentially responsible for Ehlers-Danlos syndrome type IV in this patient, and expands the spectrum of COL3A1 mutations."	"Runx1 is required for hematopoietic defects and leukemogenesis in Cbfb-MYH11 knock-in mice. CBFβ-SMMHC (core-binding factor β-smooth muscle myosin heavy chain), the fusion protein generated by the chromosome 16 inversion fusion gene, CBFB-MYH11, is known to initiate leukemogenesis. However, the mechanism through which CBFβ-SMMHC contributes to leukemia development is not well understood. Previously, it was proposed that CBFβ-SMMHC acts by dominantly repressing the transcription factor RUNX1 (Runt-related protein 1), but we recently showed that CBFβ-SMMHC has activities that are independent of RUNX1 repression. In addition, we showed that a modified CBFβ-SMMHC with decreased RUNX1-binding activity accelerates leukemogenesis. These results raise questions about the importance of RUNX1 in leukemogenesis by CBFβ-SMMHC. To test this, we generated mice expressing Cbfb-MYH11 in a Runx1-deficient background, resulting from either homozygous Runx1-null alleles (Runx1(-/-)) or a single dominant-negative Runx1 allele (Runx1(+/lz)). We found that loss of Runx1 activity rescued the differentiation defects induced by Cbfb-MYH11 during primitive hematopoiesis. During definitive hematopoiesis, RUNX1 loss also significantly reduced the proliferation and differentiation defects induced by Cbfb-MYH11. Importantly, Cbfb-MYH11-induced leukemia had much longer latency in Runx1(+/lz) mice than in Runx1-sufficient mice. These data indicate that Runx1 activity is critical for Cbfb-MYH11-induced hematopoietic defects and leukemogenesis. "	"The clinical significance of negative flow cytometry immunophenotypic results in a morphologically scored positive bone marrow in patients following treatment for acute myeloid leukemia. In a patient with acute myeloid leukemia (AML) following therapy, finding ≥5% bone marrow (BM) blasts is highly concerning for residual/relapsed disease. Over an 18-month period, we performed multicolor flow cytometry immunophenotyping (MFC) for AML minimal residual disease on &gt;4,000 BM samples, and identified 41 patients who had ≥5% myeloblasts by morphology but negative by MFC. At the time of a negative MFC study, an abnormal cytogenetic study converted to negative in 14 patients and remained positive at a low level (2.5-9.5%) by fluorescence in situ hybridization in 3 (14%), of the latter, abnormalities subsequently disappeared in the repeated BM in 2 patients. Positive pretreatment mutations, including FLT3, NPM1, IDH1, CEBPA, became negative in all 10 patients tested. Of the seven patients with favorable cytogenetics, PML/RARA, CBFB-MYH11 or RUNX1-RUNX1T1 fusion transcripts were detected at various levels in six patients but all patients remained in complete remission. With no additional chemotherapy given, 39 patients had BM repeated (median 2 weeks, range &lt;1-21), and all cases showed &lt;5% BM blasts and a continuously negative MFC. In the end of follow-up (median 10 months, range 1-22), 13 patients experienced relapse, 12/13 showing clonal cytogenetic evolution/switch and 11 demonstrating major immunophenotypic shifts. We conclude that MFC is useful in identifying a regenerating BM sample with ≥5% BM blasts that would otherwise be scored as positive using standard morphologic examination. We believe this conclusion is supported by the changes in molecular cytogenetic status and the patient clinical follow-up data."	"Chemical biology. A small-molecule inhibitor of the aberrant transcription factor CBFβ-SMMHC delays leukemia in mice. Acute myeloid leukemia (AML) is the most common form of adult leukemia. The transcription factor fusion CBFβ-SMMHC (core binding factor β and the smooth-muscle myosin heavy chain), expressed in AML with the chromosome inversion inv(16)(p13q22), outcompetes wild-type CBFβ for binding to the transcription factor RUNX1, deregulates RUNX1 activity in hematopoiesis, and induces AML. Current inv(16) AML treatment with nonselective cytotoxic chemotherapy results in a good initial response but limited long-term survival. Here, we report the development of a protein-protein interaction inhibitor, AI-10-49, that selectively binds to CBFβ-SMMHC and disrupts its binding to RUNX1. AI-10-49 restores RUNX1 transcriptional activity, displays favorable pharmacokinetics, and delays leukemia progression in mice. Treatment of primary inv(16) AML patient blasts with AI-10-49 triggers selective cell death. These data suggest that direct inhibition of the oncogenic CBFβ-SMMHC fusion protein may be an effective therapeutic approach for inv(16) AML, and they provide support for transcription factor targeted therapy in other cancers. "	"Drug discovery. Tying up a transcription factor. NA"	"Differentiated adipose-derived stem cells for bladder bioengineering. The aim of this study was to characterize and differentiate adipose-derived stem cells (ADSCs) to functional smooth muscle cells (SMCs) as an alternative cell source for bladder engineering. Rat ADSCs were differentiated into SMCs for 1-6 weeks using induction medium. The changes in contractile genes and protein expression were investigated by real-time polymerase chain reaction, fluorescence-activated cell sorting and Western blot at different time-points. Spontaneous and carbachol-induced contractions of engineered SMC tissue at different stages were investigated to define the optimal duration of induction. ADSCs differentiated into SMCs lost their capacity for expansion and their contractile phenotype, changing to a synthetic phenotype over time. Highest levels of calponin, smoothelin and MyH11 expression were observed in ADSCs induced for 3 weeks. Cells acquired typical SMC morphology when contractile proteins were expressed. However, SMC morphology was lost with reduction of contractile proteins, especially smoothelin and MyH11. The maximal spontaneous and carbachol-induced contraction of differentiated ADSCs was after 3 weeks. This study demonstrates that ADCSs are a suitable cell source for engineering tissues that require functional and contractile SMCs. An induction time of 3 weeks appears to be sufficient for ADSC differentiation to contractile SMCs suitable for urological tissue engineering."	"Emerging diagnostic and therapeutic approaches in core binding factor acute myeloid leukaemia. In acute myeloid leukaemia (AML), the presence of t(8;21)(q22;q22) and inv(16)(p13q22)/t(16;16)(p13;q22) and/or the corresponding molecular rearrangements RUNX1/RUNX1T1 and CBFB/MYH11 [collectively referred to as core binding factor (CBF) AML] predict for a more favourable outcome in patients receiving cytarabine-anthracycline based induction and upon achievement of complete remission, high-dose cytarabine consolidation chemotherapy. However, 40-45% of these patients eventually relapse and die of their disease. Here, we review emerging molecular and therapeutic results that may be used to guide the clinical management of this subset of patients. Integration of cytogenetic results with molecular genetic and epigenetic data refines the diagnosis, classification and risk-stratification of CBF AML. Clinical studies with targeting compounds (e.g. gemtuzumab ozogamicin, dasatinib) added to intensive chemotherapy appear beneficial both in younger and older patients, albeit the latter continue to have a significantly worse outcome than the former. Regularly molecular monitoring of disease during remission may provide a strategy for early therapeutic intervention before overt relapse. Emerging evidence supports that novel diagnostic, treatment and molecular disease monitoring approaches may improve the prognosis of CBF AML."	"miR-17 deregulates a core RUNX1-miRNA mechanism of CBF acute myeloid leukemia. Core Binding Factor acute myeloid leukemia (CBF-AML) with t(8;21) RUNX1-MTG8 or inv(16) CBFB-MYH11 fusion proteins often show upregulation of wild type or mutated KIT receptor. However, also non-CBF-AML frequently displays upregulated KIT expression. In the first part of this study we show that KIT expression can be also upregulated by miR-17, a regulator of RUNX1, the gene encoding a CBF subunit. Interestingly, both CBF leukemia fusion proteins and miR-17, which targets RUNX1-3'UTR, negatively affect a common core RUNX1-miRNA mechanism that forces myeloid cells into an undifferentiated, KIT-induced, proliferating state. In the second part of this study we took advantage of the conservation of the core RUNX1-miRNA mechanism in mouse and human, to mechanistically demonstrate in a mouse myeloid cell model that increased KIT-induced proliferation is per se a mechanism sufficient to delay myeloid differentiation. Human (U937) or mouse (32D) myeloid clonal lines were used, respectively, to test: 1) the effect of RUNX1-MTG8 and CBFB-MYH11 fusion proteins, or upregulation of miR-17, on KIT-induced proliferation and myeloid differentiation, and 2) the effect of upregulation of KIT-induced proliferation per se on myeloid cell differentiation. In the first part of this study we found that stable miR-17 upregulation affects, like the CBF-AML fusion proteins (RUNX1-MTG8 or CBFB-MYH11), a core RUNX1-miRNA mechanism leading to KIT-induced proliferation of differentiation-arrested U937 myeloid cells. In the second part of the study we harnessed the conservation of this core mechanism in human and mouse to demonstrate that the extent of KIT upregulation in 32D mouse myeloid cells with wild type RUNX1 can per se delay G-CSF-induced differentiation. The integrated information gathered from the two myeloid cell models shows that RUNX1 regulates myeloid differentiation not only by direct transcriptional regulation of coding and non-coding myeloid differentiation functions (e.g. miR-223), but also by modulating KIT-induced proliferation via non-coding miRNAs (e.g. miR-221). The novelty of this study is dual. On the one hand, miRNAs (e.g. miR-17) can mimic the effects of CBF-AML fusion proteins by affecting a core RUNX1-miRNA mechanism of KIT-induced proliferation of undifferentiated myeloid cells. On the other hand, the extent of KIT-induced proliferation itself can modulate myeloid differentiation of cells with wild type RUNX1 function."	"Detection of recurrent alternative splicing switches in tumor samples reveals novel signatures of cancer. The determination of the alternative splicing isoforms expressed in cancer is fundamental for the development of tumor-specific molecular targets for prognosis and therapy, but it is hindered by the heterogeneity of tumors and the variability across patients. We developed a new computational method, robust to biological and technical variability, which identifies significant transcript isoform changes across multiple samples. We applied this method to more than 4000 samples from the The Cancer Genome Atlas project to obtain novel splicing signatures that are predictive for nine different cancer types, and find a specific signature for basal-like breast tumors involving the tumor-driver CTNND1. Additionally, our method identifies 244 isoform switches, for which the change occurs in the most abundant transcript. Some of these switches occur in known tumor drivers, including PPARG, CCND3, RALGDS, MITF, PRDM1, ABI1 and MYH11, for which the switch implies a change in the protein product. Moreover, some of the switches cannot be described with simple splicing events. Surprisingly, isoform switches are independent of somatic mutations, except for the tumor-suppressor FBLN2 and the oncogene MYH11. Our method reveals novel signatures of cancer in terms of transcript isoforms specifically expressed in tumors, providing novel potential molecular targets for prognosis and therapy. Data and software are available at: http://dx.doi.org/10.6084/m9.figshare.1061917 and https://bitbucket.org/regulatorygenomicsupf/iso-ktsp. "	"RNA sequencing reveals a unique fusion of the lysine (K)-specific methyltransferase 2A and smooth muscle myosin heavy chain 11 in myelodysplastic syndrome and acute myeloid leukemia. NA"	"A deleterious MYH11 mutation causing familial thoracic aortic dissection. The L1264P and R1275L heterozygous mutations of the myosin heavy chain 11 (MYH11) gene, which are on the same allele, have been reported to cause thoracic aortic aneurysms and/or dissections (TAAD) complicated with patent ductus arteriosus (PDA); however, their contributions to the pathogenesis of TAAD/PDA have not been elucidated. Here we report the first familial case of TAAD with only a MYH11 L1264P mutation, in which PDA was not observed, indicating that L1264P, not R1275L, is responsible for TAAD formation. "	"Minimal residual disease monitored after induction therapy by RQ-PCR can contribute to tailor treatment of patients with t(8;21) RUNX1-RUNX1T1 rearrangement. NA"	"A novel cryptic insertion of CBFB into MYH11: importance of FISH probe design. NA"	"Myh11(R247C/R247C) mutations increase thoracic aorta vulnerability to intramural damage despite a general biomechanical adaptivity. Genetic studies in patients reveal that mutations to genes that encode contractile proteins in medial smooth muscle cells can cause thoracic aortic aneurysms and dissections. Mouse models of such mutations, including Acta2(-/-) and Myh11(R247C/R247C), surprisingly do not present with any severe vascular phenotype under normal conditions. This observation raises the question whether these mutations nevertheless render the thoracic aorta increasingly vulnerable to aneurysms or dissections in the presence of additional, epigenetic, factors such as hypertension, a known risk factor for thoracic aortic disease. Accordingly, we compared the structure and biaxial mechanical properties of the ascending and descending thoracic aorta from male wild-type and Myh11(R247C/R247C) mice under normotension and induced hypertension. On average, the mutant aortas exhibited near normal biomechanics under normotensive hemodynamics and near normal adaptations to hypertensive hemodynamics, yet the latter led to intramural delaminations or premature deaths in over 20% of these mice. Moreover, the delaminated vessels exhibited localized pools of mucoid material, similar to the common histopathologic characteristic observed in aortas from humans affected by thoracic aortic aneurysms and dissections. The present findings suggest, therefore, that mutations to smooth muscle cell contractile proteins may place the thoracic aorta at increased risk to epigenetic factors and that there is a need to focus on focal, not global, changes in aortic structure and properties, including the pooling of glycosaminoglycans/proteoglycans that may lead to thoracic aortic dissection. "	"A homozygous loss-of-function variant in MYH11 in a case with megacystis-microcolon-intestinal hypoperistalsis syndrome. Megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS) is characterized by marked dilatation of the bladder and microcolon and decreased intestinal peristalsis. Recent studies indicate that heterozygous variants in ACTG2, which codes for a smooth muscle actin, cause MMIHS. However, such variants do not explain MMIHS cases that show an autosomal recessive mode of inheritance. We performed exome sequencing in a newborn with MMIHS and prune belly phenotype whose parents are consanguineous and identified a homozygous variant (c.3598A&gt;T: p.Lys1200Ter) in MYH11, which codes for the smooth muscle myosin heavy chain. Previous studies showed that loss of Myh11 function in mice causes a bladder and intestinal phenotype that is highly reminiscent of MMIHS. All together, these observations strongly suggest that loss-of-function variants in MYH11 cause MMIHS. The documentation of variants in ACTG2 and MYH11 thus points to the involvement of the contractile apparatus of the smooth muscle in MMIHS. Interestingly, dominant-negative variants in MYH11 have previously been shown to cause thoracic aortic aneurism and dilatation. Different mechanisms of MYH11 disruption may thus lead to distinct patterns of smooth muscle dysfunction. "	"Prognosis and monitoring of core-binding factor acute myeloid leukemia: current and emerging factors. Core-binding factor acute myeloid leukemia (CBF-AML) - including AML with t(8;21) and AML with inv(16) - accounts for about 15% of adult AML and is associated with a relatively favorable prognosis. Nonetheless, relapse incidence may reach 40% in these patients. In this context, identification of prognostic markers is considered of great interest. Due to similarities between their molecular and prognostic features, t(8;21) and inv(16)-AML are usually grouped and reported together in clinical studies. However, considerable experimental evidences have highlighted that they represent two distinct entities and should be considered separately for further studies. This review summarizes recent laboratory and clinical findings in this particular subset of AML and how they could be used to improve management of patients in routine practice. "	"Previously differentiated medial vascular smooth muscle cells contribute to neointima formation following vascular injury. The origins of neointimal smooth muscle cells that arise following vascular injury remains controversial. Studies have suggested that these cells may arise from previously differentiated medial vascular smooth muscle cells, resident stem cells or blood born progenitors. In the current study we examined the contribution of the previously differentiated vascular smooth muscle cells to the neointima that forms following carotid artery ligation. We utilized transgenic mice harboring a cre recombinase-dependent reporter gene (mTmG). These mice express membrane targeted tandem dimer Tomato (mTomato) prior to cre-mediated excision and membrane targeted EGFP (mEGFP) following excision. The mTmG mice were crossed with transgenic mice expressing either smooth muscle myosin heavy chain (Myh11) or smooth muscle α-actin (Acta2) driven tamoxifen regulated cre recombinase. Following treatment of adult mice with tamoxifen these mice express mEGFP exclusively in differentiated smooth muscle cells. Subsequently vascular injury was induced in the mice by carotid artery ligation and the contribution of mEGFP positive cells to the neointima determined. Analysis of the cellular composition of the neointima that forms following injury revealed that mEGFP positive cells derived from either Mhy11 or Acta2 tagged medial vascular smooth muscle cells contribute to the majority of neointima formation (79 ± 17% and 81 ± 12%, respectively). These data demonstrate that the majority of the neointima that forms following carotid ligation is derived from previously differentiated medial vascular smooth muscle cells."	"CBFB-MYH11 hypomethylation signature and PBX3 differential methylation revealed by targeted bisulfite sequencing in patients with acute myeloid leukemia. Studying DNA methylation changes in the context of structural rearrangements and point mutations as well as gene expression changes enables the identification of genes that are important for disease onset and progression in different subtypes of acute myeloid leukemia (AML) patients. The aim of this study was to identify differentially methylated genes with potential impact on AML pathogenesis based on the correlation of methylation and expression data. The primary method of studying DNA methylation changes was targeted bisulfite sequencing capturing approximately 84 megabases (Mb) of the genome in 14 diagnostic AML patients and a healthy donors' CD34+ pool. Subsequently, selected DNA methylation changes were confirmed by 454 bisulfite pyrosequencing in a larger cohort of samples. Furthermore, we addressed gene expression by microarray profiling and correlated methylation of regions adjacent to transcription start sites with expression of corresponding genes. Here, we report a novel hypomethylation pattern, specific to CBFB-MYH11 fusion resulting from inv(16) rearrangement that is associated with genes previously described as upregulated in inv(16) AML. We assume that this hypomethylation and corresponding overexpresion occurs in the genes whose function is important in inv(16) leukemogenesis. Further, by comparing all targeted methylation and microarray expression data, PBX3 differential methylation was found to correlate with its gene expression. PBX3 has been recently shown to be a key interaction partner of HOX genes during leukemogenesis and we revealed higher incidence of relapses in PBX3-overexpressing patients. We discovered new genomic regions with aberrant DNA methylation that are associated with expression of genes involved in leukemogenesis. Our results demonstrate the potential of the targeted approach for DNA methylation studies to reveal new regulatory regions."	"Down-regulated MYH11 expression correlates with poor prognosis in stage II and III colorectal cancer. The MYH11 gene may be related to cell migration and adhesion, intracellular transport, and signal transduction. However, its relationship with prognosis is still uncertain. The aim of this study was to investigate correlations between MYH11 gene expression and prognosis in 58 patients with stage II and III colorectal cancer. Quantitative real-time polymerase chain reaction was performed in fresh CRC tissues to examine mRNA expression, and immunohistochemistry was performed with paraffin-embedded specimens for protein expression. On univariate analysis, MYH11 expression at both mRNA and protein levels, perineural invasion and lymphovascular invasion were related to disease-free survival (p&lt;0.05; log-rank test). Cancers with lower MYH11 expression were more likely to have a poor prognosis. Otherwise, MYH11 expression was unrelated to patient clinicopathological features. On multivariate analysis, low MYH11 expression proved to be an independent adverse prognosticator (p&lt;0.05). These findings show that MYH11 can contribute to predicting prognosis in stage II and III colorectal cancers. "	"Overexpression of myosin is associated with the development of uterine myoma. Myosin is involved in cell contraction and motility, but it is unclear whether it is involved in cell proliferation in uterine myoma. In this study therefore we aimed to explore the role of myosin in uterine myoma. Immunohistochemistry and real-time polymerase chain reaction were used to determine the expression of myosin light chain (MLC), myosin heavy chain (MHC) and myosin light chain kinase (MLCK) in patient uterine myoma and adjacent smooth muscle tissue. Human uterine fibroid cells were isolated and cultured in vitro, myosin heavy chain 11 (MHC subtype expressed in uterine fibroid cells) was knocked down by RNA interference to reduce the expression of myosin, then cell proliferation was determined by the methyl thiazol tetrazolium bromide method. To explore the possible mechanism of reduced cell proliferation after myosin heavy chain 11 knockdown, the downstream proteins collagen I, insulin-like growth factor-1, fibronectin and proteoglycans were analyzed. Expression of MLC, MHC, MLCK and p-MLCK in uterine myoma cells was significantly higher than in adjacent smooth muscle cells. After knockdown of MHC, smooth muscle cell proliferation decreased, and the production of collagen I, insulin-like growth factor-1 and fibronectin was also reduced, but proteoglycans did not show any significant change. Myosin is overexpressed in uterine myoma, and the overexpression of myosin is associated with both uterine contraction and tumor development of uterine myoma."	"Targeted analysis of whole genome sequence data to diagnose genetic cardiomyopathy. Cardiomyopathy is highly heritable but genetically diverse. At present, genetic testing for cardiomyopathy uses targeted sequencing to simultaneously assess the coding regions of &gt;50 genes. New genes are routinely added to panels to improve the diagnostic yield. With the anticipated $1000 genome, it is expected that genetic testing will shift toward comprehensive genome sequencing accompanied by targeted gene analysis. Therefore, we assessed the reliability of whole genome sequencing and targeted analysis to identify cardiomyopathy variants in 11 subjects with cardiomyopathy. Whole genome sequencing with an average of 37× coverage was combined with targeted analysis focused on 204 genes linked to cardiomyopathy. Genetic variants were scored using multiple prediction algorithms combined with frequency data from public databases. This pipeline yielded 1 to 14 potentially pathogenic variants per individual. Variants were further analyzed using clinical criteria and segregation analysis, where available. Three of 3 previously identified primary mutations were detected by this analysis. In 6 subjects for whom the primary mutation was previously unknown, we identified mutations that segregated with disease, had clinical correlates, and had additional pathological correlation to provide evidence for causality. For 2 subjects with previously known primary mutations, we identified additional variants that may act as modifiers of disease severity. In total, we identified the likely pathological mutation in 9 of 11 (82%) subjects. These pilot data demonstrate that ≈30 to 40× coverage whole genome sequencing combined with targeted analysis is feasible and sensitive to identify rare variants in cardiomyopathy-associated genes."	"Isolated duodenal myeloid sarcoma associated with the CBFβ/MYH11 fusion gene followed by acute myeloid leukemia progression: A case report and literature review. Myeloid sarcoma (MS) is a rare disease that presents as an extramedullary tumorous mass of immature myeloid precursors. The majority of MS are identified in acute myeloid leukemia (AML) patients and rarely present as a primary isolated MS without AML. In addition, inversion of chromosome 16 [inv(16)] and the CBFβ/MYH11 fusion gene are rarely associated with MS. The current study reports a female patient with an isolated duodenal MS, who developed AML-M4 associated with the CBFβ/MYH11 fusion gene and 48,XX,inv(16),+13,+22. A review of previously reported cases of isolated MS with the CBFβ/MYH11 fusion gene was also performed. Isolated MS with the CBFβ/MYH11 fusion gene was often observed in abdominal lesions, with the intestinal tract being the predominantly involved site. In addition, patients with isolated MS with the CBFβ/MYH11 fusion exhibited a high risk of developing systemic AML. The diagnosis of isolated MS may be particularly challenging and, therefore, determining the optimal standard treatment for isolated MS is required."	"Reverse-phase protein array for prediction of patients at low risk of developing bone metastasis from breast cancer. A biomarker that predicts bone metastasis based on a protein laboratory assay has not been demonstrated. Reverse-phase protein array (RPPA) enables quantification of total and phosphorylated proteins, providing information about their functional status. The aim of this study was to identify bone-metastasis-related markers in patients with primary breast cancer using RPPA analysis. Tumor samples were obtained from 169 patients with primary invasive breast carcinoma who underwent surgery. The patients were categorized by whether they developed breast cancer bone metastasis (BCBM) during follow-up. Clinical characteristics and protein expression by RPPA were compared and verified by leave-one-out cross-validation. Lymph node status (p = .023) and expression level of 22 proteins by RPPA were significantly correlated with BCBM in logistic regression analysis. These variables were used to build a logistic regression model. After filtering the variables through a stepwise algorithm, the final model, consisting of 8 proteins and lymph node status, had sensitivity of 30.0%, specificity of 90.5%, positive predictive value of 30.0%, and negative predictive value of 90.5% in the cross-validation. Most of the identified proteins were associated with cell cycle or signal transduction (CDK2, CDKN1A, Rb1, Src, phosphorylated-ribosomal S6 kinase, HER2, BCL11A, and MYH11). Our validated model, in which the primary tumor is tested with RPPA, can predict patients who are at low risk of developing BCBM and thus who likely would not benefit from receiving a bisphosphonate in the adjuvant setting. Clinical trials excluding these patients have the potential to clarify the benefit of bisphosphonates in the adjuvant setting."	"Total serum transforming growth factor-β1 is elevated in the entire spectrum of genetic aortic syndromes. Total serum transforming growth factor-beta 1 (tsTGF-β1) is increased in patients with Marfan syndrome (MFS), but it has not been assessed in thoracic aortic aneurysm and dissection (TAAD), Loeys-Dietz syndrome (LDS), and bicuspid aortic valve disease (BAVD). tsTGF-β1 is increased in genetic aortic syndromes including TAAD, LDS, MFS, and BAVD. We measured tsTGF-β1 and performed sequencing of the genes FBN1, TGFBR1, and TGFBR2 in 317 consecutive patients with suspected or known genetic aortic syndrome (167 men, 150 women; mean age 43 ± 14 years). TAAD was diagnosed in 20, LDS in 20, MFS in 128, and BAVD in 30 patients, and genetic aortic syndrome was excluded in 119 patients. Elevated tsTGF-β1 levels were associated with causative gene mutations (P = 0.008), genetic aortic syndrome (P = 0.009), and sporadic occurrence of genetic aortic syndrome (P = 0.048), whereas only genetic aortic syndrome qualified as an independent predictor of tsTGF-β1 (P = 0.001). The tsTGF-β1 levels were elevated in FBN1 and NOTCH1 mutations vs patients without mutations (both P = 0.004), and in NOTCH1 mutations vs ACTA2/MYH11 mutations (P = 0.015). Similarly, tsTGF-β1 levels were elevated in MFS (P = 0.003) and in BAVD (P = 0.006) vs patients without genetic aortic syndrome. In contrast to specific clinical features of MFS, FBN1 in-frame mutations (P = 0.019) were associated with increased tsTGF-β1 levels. tsTGF-β1 is elevated in the entire spectrum of genetic aortic syndromes. However, gradual differences in the increases of tsTGF-β1 levels may mirror different degrees of alteration of tsTGF-β1 signaling in different genetic aortic syndromes."	"Identification of molecular and cytogenetic risk factors for unfavorable core-binding factor-positive adult AML with post-remission treatment outcome analysis including transplantation. Emerging molecular studies have identified a subgroup of patients with unfavorable core-binding factor-positive (CBF)-AML who should be treated by intensified post-remission treatments. We analyzed 264 adults with CBF-AML from 2002 to 2011, and focused on 206 patients who achieved CR after standard '3+7' induction chemotherapy. Patients who achieved CR with an available donor were treated with allogeneic hematopoietic SCT (allo-HSCT, n=115) and the rest were treated with autologous (auto) HSCT (n=72) or chemotherapy alone (n=19). OS was not significantly different between CBFβ/MYH11 (n=62) and RUNX1/RUNX1T1 (n=144), and auto-HSCT showed favorable OS compared with allo-HSCT or chemotherapy alone. Cytogenetic analysis identified that inv(16) without trisomy had a favorable OS and t(8;21) with additional chromosomes had an unfavorable OS, but multivariate analysis revealed those were NS. Patients with c-kit mutation showed inferior OS. For transplanted patients, residual post-transplant CBF-minimal residual disease quantitative PCR with higher WT1 expression at D+60 showed the worst OS with a higher incidence of relapse. Conclusively, we found that unfavorable CBF-AML can be defined with risk stratification using cytogenetic and molecular studies, and a careful risk-adapted treatment approach using frontline transplantation with novel therapies should be evaluated for this particular risk subgroup. "	"Familial thoracic aortic aneurysm with dissection presenting as flash pulmonary edema in a 26-year-old man. We are reporting a case of familial thoracic aortic aneurysm and dissection in a 26-year-old man with no significant past medical history and a family history of dissecting aortic aneurysm in his mother at the age of 40. The patient presented with cough, shortness of breath, and chest pain. Chest X-ray showed bilateral pulmonary infiltrates. CT scan of the chest showed a dissection of the ascending aorta. The patient underwent aortic dissection repair and three months later he returned to our hospital with new complaints of back pain. CT angiography showed a new aortic dissection extending from the left carotid artery through the bifurcation and into the iliac arteries. The patient underwent replacement of the aortic root, ascending aorta, total aortic arch, and aortic valve. The patient recovered well postoperatively. Genetic studies of the patient and his children revealed no mutations in ACTA2, TGFBR1, TGFBR2, TGFB2, MYH11, MYLK, SMAD3, or FBN1. This case report focuses on a patient with familial TAAD and discusses the associated genetic loci and available screening methods. It is important to recognize potential cases of familial TAAD and understand the available screening methods since early diagnosis allows appropriate management of risk factors and treatment when necessary. "	"Common and distinctive pathogenetic features of arteriovenous malformations in hereditary hemorrhagic telangiectasia 1 and hereditary hemorrhagic telangiectasia 2 animal models--brief report. Hereditary hemorrhagic telangiectasia is a genetic disorder characterized by visceral and mucocutaneous arteriovenous malformations (AVMs). Clinically indistinguishable hereditary hemorrhagic telangiectasia 1 and hereditary hemorrhagic telangiectasia 2 are caused by mutations in ENG and ALK1, respectively. In this study, we have compared the development of visceral and mucocutaneous AVMs in adult stages between Eng- and Alk1-inducible knockout (iKO) models. Eng or Alk1 were deleted from either vascular endothelial cells (ECs) or smooth muscle cells in adult stages using Scl-CreER and Myh11-CreER lines, respectively. Latex perfusion and intravital spectral imaging in a dorsal skinfold window chamber system were used to visualize remodeling vasculature during AVM formation. Global Eng deletion resulted in lethality with visceral AVMs and wound-induced skin AVMs. Deletion of Alk1 or Eng in ECs, but not in smooth muscle cells, resulted in wound-induced skin AVMs. Visceral AVMs were observed in EC-specific Alk1-iKO but not in Eng-iKO. Intravital spectral imaging revealed that Eng-iKO model exhibited more dynamic processes for AVM development when compared with Alk1-iKO model. Both Alk1- and Eng-deficient models require a secondary insult, such as wounding, and ECs are the primary cell type responsible for the pathogenesis. However, Alk1 but not Eng deletion in ECs results in visceral AVMs."	"CBFβ and the leukemogenic fusion protein CBFβ-SMMHC associate with mitotic chromosomes to epigenetically regulate ribosomal genes. Mitotic bookmarking is an epigenetic control mechanism that sustains gene expression in progeny cells; it is often found in genes related to the maintenance of cellular phenotype and growth control. RUNX transcription factors regulate a broad spectrum of RNA Polymerase (Pol II) transcribed genes important for lineage commitment but also regulate RNA Polymerase I (Pol I) driven ribosomal gene expression, thus coordinating control of cellular identity and proliferation. In this study, using fluorescence microscopy and biochemical approaches we show that the principal RUNX co-factor, CBFβ, associates with nucleolar organizing regions (NORs) during mitosis to negatively regulate RUNX-dependent ribosomal gene expression. Of clinical relevance, we establish for the first time that the leukemogenic fusion protein CBFβ-SMMHC (smooth muscle myosin heavy chain) also associates with ribosomal genes in interphase chromatin and mitotic chromosomes to promote and epigenetically sustain regulation of ribosomal genes through RUNX factor interactions. Our results demonstrate that CBFβ contributes to the transcriptional regulation of ribosomal gene expression and provide further understanding of the epigenetic role of CBFβ-SMMHC in proliferation and maintenance of the leukemic phenotype."	"Whole exome sequencing for the identification of a new mutation in TGFB2 involved in a familial case of non-syndromic aortic disease. Non-syndromic aortic disease (NSAD) is a frequently asymptomatic but potentially lethal disease characterised by familial cases of thoracic aortic aneurysms and dissections. This monogenic but genetically heterogeneous condition is primarily inherited as an autosomal dominant disorder with low penetrance and variable expression. Mutations in ACTA2, TGFBR1, TGFBR2, MYH11, SMAD3, MYLK, and FBN1 genes have been described but still, there are many unresolved familial cases. The whole exome of two distantly related and affected members of a Spanish family with multiple cases of NSAD was analysed through 5500 SOLiD(™) System for the identification of shared and putative pathogenic variants. A new mutation termed c.C1042T:p.R348C (NM_001135599.2) was identified in TGFB2, a gene located in an evolutionary highly conserved region (Chr1: 218,519,577-218,617,961) that has been recently connected to this disease. The analysis of other family members using capillary sequencing confirmed cosegregation of the mutation with the disease and its incomplete penetrance. The repeated implication of TGFB2 in the development of thoracic aortic aneurysms and dissections suggests that this gene should be considered during genetic diagnosis of this disease. An accurate diagnosis of affected individuals and additional family members at risk allows for a personalised and more efficient gene-based follow-up and treatment. Finally, the reiterative presence of common musculoskeletal and craniofacial additional features in patients with TGFB2 mutations suggests the existence of a new yet undefined connective tissue syndrome responsible for not only aortic dilation, but also for the other extracardiac alterations present in the affected patients."	"A case with a cytogenetically cryptic variant of the inv(16)(p13q22)/t(16;16)(p13;q22). NA"	"Successful long-term management of iris flocculi and miosis in a patient with a strong family history of thoracic aortic aneurysms and dissections associated with an MYH11 mutation. NA"	"Recombination signal binding protein for Ig-κJ region regulates juxtaglomerular cell phenotype by activating the myo-endocrine program and suppressing ectopic gene expression. Recombination signal binding protein for Ig-κJ region (RBP-J), the major downstream effector of Notch signaling, is necessary to maintain the number of renin-positive juxtaglomerular cells and the plasticity of arteriolar smooth muscle cells to re-express renin when homeostasis is threatened. We hypothesized that RBP-J controls a repertoire of genes that defines the phenotype of the renin cell. Mice bearing a bacterial artificial chromosome reporter with a mutated RBP-J binding site in the renin promoter had markedly reduced reporter expression at the basal state and in response to a homeostatic challenge. Mice with conditional deletion of RBP-J in renin cells had decreased expression of endocrine (renin and Akr1b7) and smooth muscle (Acta2, Myh11, Cnn1, and Smtn) genes and regulators of smooth muscle expression (miR-145, SRF, Nfatc4, and Crip1). To determine whether RBP-J deletion decreased the endowment of renin cells, we traced the fate of these cells in RBP-J conditional deletion mice. Notably, the lineage staining patterns in mutant and control kidneys were identical, although mutant kidneys had fewer or no renin-expressing cells in the juxtaglomerular apparatus. Microarray analysis of mutant arterioles revealed upregulation of genes usually expressed in hematopoietic cells. Thus, these results suggest that RBP-J maintains the identity of the renin cell by not only activating genes characteristic of the myo-endocrine phenotype but also, preventing ectopic gene expression and adoption of an aberrant phenotype, which could have severe consequences for the control of homeostasis. "	"NrasG12D oncoprotein inhibits apoptosis of preleukemic cells expressing Cbfβ-SMMHC via activation of MEK/ERK axis. Acute myeloid leukemia (AML) results from the activity of driver mutations that deregulate proliferation and survival of hematopoietic stem cells (HSCs). The fusion protein CBFβ-SMMHC impairs differentiation in hematopoietic stem and progenitor cells and induces AML in cooperation with other mutations. However, the combined function of CBFβ-SMMHC and cooperating mutations in preleukemic expansion is not known. Here, we used Nras(LSL-G12D); Cbfb(56M) knock-in mice to show that allelic expression of oncogenic Nras(G12D) and Cbfβ-SMMHC increases survival of preleukemic short-term HSCs and myeloid progenitor cells and maintains the differentiation block induced by the fusion protein. Nras(G12D) and Cbfβ-SMMHC synergize to induce leukemia in mice in a cell-autonomous manner, with a shorter median latency and higher leukemia-initiating cell activity than that of mice expressing Cbfβ-SMMHC. Furthermore, Nras(LSL-G12D); Cbfb(56M) leukemic cells were sensitive to pharmacologic inhibition of the MEK/ERK signaling pathway, increasing apoptosis and Bim protein levels. These studies demonstrate that Cbfβ-SMMHC and Nras(G12D) promote the survival of preleukemic myeloid progenitors primed for leukemia by activation of the MEK/ERK/Bim axis, and define Nras(LSL-G12D); Cbfb(56M) mice as a valuable genetic model for the study of inversion(16) AML-targeted therapies. "	"High prognostic value of minimal residual disease detected by flow-cytometry-enhanced fluorescence in situ hybridization in core-binding factor acute myeloid leukemia (CBF-AML). Acute myeloid leukemia (AML) is generally regarded as a disorder of stem cells, known as leukemic initiating cells (LICs), which initiate the disease and contribute to relapses. Although the phenotype of these cells remains unclear in most patients, they are enriched within the CD34(+)CD38(-) population. In core-binding factor (CBF) AML, the cytogenetic abnormalities also exist in LIC. The aim of this study was to determine the prognostic power of minimal residual disease (MRD) measured by fluorescence in situ hybridization (FISH) in CD34(+)CD38(-) cells sorted by flow cytometry at different periods during therapy. Thirty-six patients under 65 years of age with de novo CBF-AML treated with intensive chemotherapy were retrospectively included in this study. Correlations with relapse-free survival (RFS) and overall survival were evaluated with univariate and multivariate analyses. FISH efficiently identified LICs in the CD34(+)CD38(-) population. The presence of FISH(+)CD34(+)CD38(-) cells before consolidation was negatively associated with cumulative incidence of relapse (64 vs 18 %, P = .012), which showed prognostic value for RFS (12 vs 68 %, P = .008) and OS (11 vs 75 %, P = .0005), and retained prognostic significance for RFS in multivariate analysis. The detection of FISH(+)CD34(+)CD38(-) cells before consolidation therapy significantly correlated with long-term survival. Fluorescence-activated cell sorting (FACS)-FISH could be potentially adopted as a MRD monitor approach in clinical practice to identify CBF-AML patients at risk of treatment failure during therapy."	"The genetic basis for aortic aneurysmal disease. Aortic aneurysms are an important cause of cardiovascular death in elderly patients. At present, little is known of the pathobiology of aneurysmal disease and this limits the ability to develop non-surgical treatments to stabilise aneurysms. Both thoracic and abdominal aortic aneurysms (AAA) demonstrate a strong genetic component in their aetiology. Determination of the genetic variants associated with aneurysmal disease is one approach to increasing the understanding the pathways leading to aneurysmal degeneration of the aorta. In this review, we aim to summarise the current knowledge of the genetics underlying the two most common disease phenotypes, thoracic aortic aneurysm (TAA) and AAA. Genetically, AAA represent a multifactorial disease, with the likelihood that there are multiple variants of very low effect sizes contributing to the overall genetic disease risk. Non-syndromic TAA appears to be associated with a smaller number of risk loci with higher individual effect sizes at these loci. Candidate gene and genome-wide approaches have identified robust associations between AAA and variants in/nearby the SORT1, low-density lipoprotein receptor, DAB2IP, LRP1, ELN, CRP, TGFB and various matrix metallo-proteinase genes suggesting that aberrations of lipid metabolism and proteolytic pathways are the key contributors to disease. Some of these associations (eg, LRP1) are not associated with atherosclerosis, suggesting pathways unique to AAA. Genetic variants associated with non-syndromic TAA (ACTA2 and MYH11) are related to the TGFβ pathway, strongly implicated in syndromic TAA, thus suggesting a common pathway between syndromic and non-syndromic TAA."	"Overexpression of myocardin induces partial transdifferentiation of human-induced pluripotent stem cell-derived mesenchymal stem cells into cardiomyocytes. Mesenchymal stem cells (MSCs) derived from human-induced pluripotent stem cells (iPSCs) show superior proliferative capacity and therapeutic potential than those derived from bone marrow (BM). Ectopic expression of myocardin further improved the therapeutic potential of BM-MSCs in a mouse model of myocardial infarction. The aim was of this study was to assess whether forced myocardin expression in iPSC-MSCs could further enhance their transdifferentiation to cardiomyocytes and improve their electrophysiological properties for cardiac regeneration. Myocardin was overexpressed in iPSC-MSCs using viral vectors (adenovirus or lentivirus). The expression of smooth muscle cell and cardiomyocyte markers, and ion channel genes was examined by reverse transcription-polymerase chain reaction (RT-PCR), immunofluorescence staining and patch clamp. The conduction velocity of the neonatal rat ventricular cardiomyocytes cocultured with iPSC-MSC monolayer was measured by multielectrode arrays recording plate. Myocardin induced the expression of α-MHC, GATA4, α-actinin, cardiac MHC, MYH11, calponin, and SM α-actin, but not cTnT, β-MHC, and MLC2v in iPSC-MSCs. Overexpression of myocardin in iPSC-MSC enhanced the expression of SCN9A and CACNA1C, but reduced that of KCa3.1 and Kir2.2 in iPSC-MSCs. Moreover, BKCa, IKir, ICl, Ito and INa.TTX were detected in iPSC-MSC with myocardin overexpression; while only BKCa, IKir, ICl, IKDR, and IKCa were noted in iPSC-MSC transfected with green florescence protein. Furthermore, the conduction velocity of iPSC-MSC was significantly increased after myocardin overexpression. Overexpression of myocardin in iPSC-MSCs resulted in partial transdifferentiation into cardiomyocytes phenotype and improved the electrical conduction during integration with mature cardiomyocytes. "	"Androgen dependent penile development and erection physiology-a molecular connection? NA"	"Characteristics of hematologic malignancies with coexisting t(9;22) and inv(16) chromosomal abnormalities. The coexistence of t(9;22)(q34;q11.2) and inv(16)(p13q22) chromosomal abnormalities is extremely uncommon, and only a small number of such cases have been reported. Here, we characterized 7 cases of hematologic malignancy exhibiting t(9;22) and inv(16) coexistence. We reviewed the cytogenetic data for hematologic malignancies treated at the Catholic Blood and Marrow Transplantation Center between January 2004 and June 2013. We identified 7 cases exhibiting t(9;22) and inv(16) coexistence. In addition, we analyzed mutations in the IKZF1, NPM1, FLT3, N-RAS, K-RAS, c-KIT, and TP53 genes. Four cases of chronic myelogenous leukemia (CML; 1 chronic phase, 2 accelerated phase, and 1 blast phase) and 3 cases of acute myeloid leukemia (AML; 1 de novo and 2 therapy-related) were identified. The percentages of circulating blasts and bone marrow eosinophils were higher in AML cases than in CML cases (53% vs. 5% and 30% vs. 5.5%, respectively). The proportions of each chromosomal abnormality were used along with follow-up karyotyping results to identify secondary changes. In BCR/ABL, a p210 fusion transcript was associated with CML, whereas a p190 fusion transcript was associated with AML. One patient with AML harbored 2 mutations: c-KIT D816V and TP53 E11Q. All patients except 1 with CML blast phase sustained clinical remission after treatment, which included an imatinib mesylate regimen. This study shows that observations of bone marrow morphology, initial and follow-up cytogenetic studies, and karyotyping of BCR/ABL1 and CBFB/MYH11 provide valuable information for characterizing hematologic malignancies exhibiting t(9;22) and inv(16) coexistence."	"Overexpression of smooth muscle myosin heavy chain leads to activation of the unfolded protein response and autophagic turnover of thick filament-associated proteins in vascular smooth muscle cells. Duplications spanning nine genes at the genomic locus 16p13.1 predispose individuals to acute aortic dissections. The most likely candidate gene in this region leading to the predisposition for dissection is MYH11, which encodes smooth muscle myosin heavy chain (SM-MHC). The effects of increased expression of MYH11 on smooth muscle cell (SMC) phenotypes were explored using mouse aortic SMCs with transgenic overexpression of one isoform of SM-MHC. We found that these cells show increased expression of Myh11 and myosin filament-associated contractile genes at the message level when compared with control SMCs, but not at the protein level due to increased protein degradation. Increased expression of Myh11 resulted in endoplasmic reticulum (ER) stress in SMCs, which led to a paradoxical decrease of protein levels through increased autophagic degradation. An additional consequence of ER stress in SMCs was increased intracellular calcium ion concentration, resulting in increased contractile signaling and contraction. The increased signals for contraction further promote transcription of contractile genes, leading to a feedback loop of metabolic abnormalities in these SMCs. We suggest that overexpression of MYH11 can lead to increased ER stress and autophagy, findings that may be globally implicated in disease processes associated with genomic duplications. "	"A smooth muscle-like origin for beige adipocytes. Thermogenic UCP1-positive cells, which include brown and beige adipocytes, transform chemical energy into heat and increase whole-body energy expenditure. Using a ribosomal profiling approach, we present a comprehensive molecular description of brown and beige gene expression from multiple fat depots in vivo. This UCP1-TRAP data set demonstrates striking similarities and important differences between these cell types, including a smooth muscle-like signature expressed by beige, but not classical brown, adipocytes. In vivo fate mapping using either a constitutive or an inducible Myh11-driven Cre demonstrates that at least a subset of beige cells arise from a smooth muscle-like origin. Finally, ectopic expression of PRDM16 converts bona fide vascular smooth muscle cells into Ucp1-positive adipocytes in vitro. These results establish a portrait of brown and beige adipocyte gene expression in vivo and identify a smooth muscle-like origin for beige cells. "	"Survival improvement of poor-prognosis AML/MDS patients by maintenance treatment with low-dose chemotherapy and differentiating agents. We evaluated a maintenance, post-remission treatment with low-dose chemotherapy plus differentiating agents on poor-prognosis acute myeloid leukemia (AML)/myelodysplastic syndrome (MDS) patients ineligible to allografting. Patients had either age over 60 and/or secondary AML, therapy-related AML, previous relapse, high-risk MDS. Forty-five patients received the maintenance therapy based on two alternated schedules: (a) 6-thioguanine + 13-cis retinoic acid + dihydroxylated vitamin D3 and (b) low-dose cytarabine + 6-mercaptopurine + all-trans retinoic acid + dihydroxylated vitamin D3. We compared their outcome, at a median follow-up of 52 months, to that of a matched population of 49 patients who stopped treatments after consolidation. Maintenance group had a lower relapse incidence (70.3 vs. 86.4 % at 5 years p = 0.007) and a longer disease-free survival (median 21.2 vs. 8.7 months, p = 0.017). The relapse reduction improved overall survival: median 40.4 months (35.9 % at 5 years) for maintenance group vs. 15.8 (14.2 % at 5 years) for controls (p = 0.005). At multivariate Cox analysis, both cytogenetic and maintenance therapies resulted independent outcome predictors for overall survival. Maintenance treatment also reduced minimal residual disease (detected by WT1 and CBFβ-MYH11) in five of eight evaluable patients. The present results suggest that our strategy of maintenance therapy might improve the outcome of poor-risk AML/MDS patients."	"Core binding factor β (CBFβ) is retained in the midbody during cytokinesis. Core Binding Factor β (CBFβ) is complexed with the RUNX family of transcription factors in the nucleus to support activation or repression of genes related to bone (RUNX2), hematopoiesis (RUNX1) and gastrointestinal (RUNX3) development. Furthermore, RUNX proteins contribute to the onset and progression of different types of cancer. Although CBFβ localizes to cytoskeletal architecture, its biological role in the cytoplasmic compartment remains to be established. Additionally, the function and localization of CBFβ during the cell cycle are important questions relevant to its biological role. Here we show that CBFβ dynamically distributes in different stages of cell division and importantly is present during telophase at the midbody, a temporal structure important for successful cytokinesis. A functional role for CBFβ localization at the midbody is supported by striking defects in cytokinesis that include polyploidy and abscission failure following siRNA-mediated downregulation of endogenous CBFβ or overexpression of the inv(16) fusion protein CBFβ-SMMHC. Our results suggest that CBFβ retention in the midbody during cytokinesis reflects a novel function that contributes to epigenetic control."	"Screening of key genes of unruptured intracranial aneurysms by using DNA microarray data analysis techniques. This study aimed to identify differentially expressed genes (DEGs) of unruptured intracranial aneurysms (IAs) and provide beneficial information for early diagnosis and treatment of IAs. The gene expression profile GSE26969 from the Gene Expression Omnibus database was downloaded, which included six human IA samples: three intracranial arterial aneurysm samples and three normal superficial temporal artery samples (control). Based on these data, we identified the DEGs between normal and disease samples with packages in the R language. The selected DEGs were further analyzed using bioinformatic methods. First, the STRING software was used to search co-expression relationships among DEGs, and the most important hub gene was found. We then used the plugins of the Cytoscape software, Mcode and Bingo, to conduct a module analysis. Next, pathways of the module genes were annotated using the FuncAssociate program. Compared with the control group, we obtained 169 DEGs in total, and by mining a module with the hub gene MYH11, we retrieved the ACTA2, MYH11, MYLK, and MYL9 genes, which were all in the module and were most significantly related to vascular smooth muscle contraction. We hypothesize that the genes identified here can be beneficial for early diagnosis and treatment of IAs. "	"[Coexistence of p210 BCR-ABL and CBFβ-MYH11 fusion genes in myeloid leukemia: two cases report and literatures review]. NA"	"[Application of multiplex nested RT- PCR assay for screening the fusion genes in acute myeloid leukemia and its clinical significance]. To investigate the clinical value of multiplex nested reverse transcription PCR (RT-nPCR) in screening acute myeloid leukemia(AML)fusion genes. A novel multiplex RT-nPCR assay was developed to detect 16 AML-related fusion genes (AML1-EVI1, AML1-ETO, AML1-MDS1, AML1-MTG16, MLL-AF9, MLL-AF6, MLL-AF10, MLL-ENL, MLL-MLL, PML-RARα, PLZFRARα, NPM1-RARα, CBFB-MYH11, DEK-CAN, SET-CAN and TLS-ERG) according to 2008 WHO classification of AML. The chromosome reciprocal translocations of 356 AML cases were detected by multiplex RT-nPCR and karyotyping. The positive samples were further confirmed by split- out PCR and FISH. The fusion genes were detected in 172 patients with the positive detection rate of 48.31%(172/356), which was higher than that of karyotyping (31.46%) (χ²=70.314, P&lt;0.01). Multiplex RT-nPCR is superior to karyotyping and FISH in identifying the rare, cryptic chromosome translocation (χ²=96.074, P&lt;0.01). The multiplex RT-nPCR used in this study can quickly, effectively and accurately screen the fusion genes in AML patients, which can provide important evidence for assessing diagnosis and treatment, and also provide necessary information for minimal residual disease (MRD) and prognosis."	"[Clinical characteristics of newly diagnosed acute myeloid leukemia patients with NPM1 mutation]. The purpose of this study was to investigate the clinical characteristics of newly diagnosed acute myeloid leukemia (AML) patients with NPM1 mutation in exon 12 and to explore the relationship between NPM1 mutation and FLT3-ITD, IDH1 mutation. The AML clinical data and bone marrow samples of patients were collected. The diagnosis and classification were based on WHO criteria. The genomic DNA was extracted and NPM1 mutation was detected by sequencing after PCR. The specimens of 389 AML patients were tested. The results showed that the NPM1 mutation was found in 14.1% samples (55/389). The incidence of FLT3-ITD mutation was 14.7% (57/389) . The incidence of IDH1 mutation was 6.4% (25/389) . NPM1 mutation was not detected in AML with AML1-ETO, PML-RARA or CBF-MYH11 fusion genes. The incidences of FLT3-ITD and IDH1 mutation were 29.1% and 12.7% respectively in AML with NPM1 mutation. The incidences of FLT3-ITD and IDH1 mutation were 12.3% and 5.4% respectively in AML without NPM1 mutation. The incidences of FLT3-ITD and IDH1 mutation were significantly higher in AML with NPM1 mutation than that in AML without NPM1 mutation. The incidence of NPM1 mutation in normal karyotype AML was 26.5% (35/132) which significantly higher than that in other AML. The AML with NPM1 mutation characterized by older age, high platelet number, higher incidence in AML-M5, lower CD34 positive cells, more possible co-existence with FLT3-ITD and IDH1 mutation and other clinical features. The complete remission rate after one cycle of induction chemotherapy was 69.8% in AML without NPM1 mutation. The complete remission rate after one cycle of induction chemotherapy was 72.2% in AML with NPM1 mutation, there was no significant difference between them (P = 0.07). It is concluded that AML with NPM1 mutation has distinct clinical features. NPM1 mutation can co-exists with FLT3-ITD and IDH1 mutation, but not with AML1-ETO, PML-RARA or CBF-MYH11 fusion genes."	"Wnt secretion from epithelial cells and subepithelial myofibroblasts is not required in the mouse intestinal stem cell niche in vivo. Wnt signaling is a crucial aspect of the intestinal stem cell niche required for crypt cell proliferation and differentiation. Paneth cells or subepithelial myofibroblasts are leading candidate sources of the required Wnt ligands, but this has not been tested in vivo. To abolish Wnt-ligand secretion, we used Porcupine (Porcn) conditional-null mice crossed to strains expressing inducible Cre recombinase in the epithelium, including Paneth cells (Villin-Cre (ERT2) ); in smooth muscle, including subepithelial myofibroblasts (Myh11-Cre (ERT2) ); and simultaneously in both compartments. Elimination of Wnt secretion from any of these compartments did not disrupt tissue morphology, cell proliferation, differentiation, or Wnt pathway activity. Thus, Wnt-ligand secretion from these cell populations is dispensable for intestinal homeostasis, revealing that a minor cell type or significant and unexpected redundancy is responsible for physiologic Wnt signaling in vivo. "	"Comprehensive analysis of genetic alterations and their prognostic impacts in adult acute myeloid leukemia patients. To clarify the cooperative roles of recurrently identified mutations and to establish a more precise risk classification system in acute myeloid leukemia (AML), we comprehensively analyzed mutations in 51 genes, as well as cytogenetics and 11 chimeric transcripts, in 197 adult patients with de novo AML who were registered in the Japan Adult Leukemia Study Group AML201 study. We identified a total of 505 mutations in 44 genes, while only five genes, FLT3, NPM1, CEBPA, DNMT3A and KIT, were mutated in more than 10% of the patients. Although several cooperative and exclusive mutation patterns were observed, the accumulated mutation number was higher in cytogenetically normal AML and lower in AML with RUNX1-RUNX1T1 and CBFB-MYH11, indicating a strong potential of these translocations for the initiation of AML. Furthermore, we evaluated the prognostic impacts of each sole mutation and the combinations of mutations and/or cytogenetics, and demonstrated that AML patients could be clearly stratified into five risk groups for overall survival by including the mutation status of DNMT3A, MLL-PTD and TP53 genes in the risk classification system of the European LeukemiaNet. These results indicate that the prognosis of AML could be stratified by the major mutation status in combination with cytogenetics."	"Analysis of class I and II aberrations in Iraqi childhood acute myeloid leukemia using filter paper cards. The lack of molecular diagnosis in the field of cancer in Iraq has motivated us to perform a genetic analysis of pediatric acute myelogenous leukemia (AML), including class I and II aberrations. Peripheral blood or bone marrow cells were collected from 134 AML children aged ≤15 years. Flinders Technology Associates (FTA) filter paper cards were used to transfer dried blood samples from five Iraqi hospitals to Japan. DNA sequencing was performed to identify class I mutations. Nested RT-PCR was used to detect class II aberrations, except that MLL rearrangement was detected according to long distance inverse-PCR. NPM1 and FMS-like tyrosine kinase 3-internal tandem duplication (FLT3-ITD) mutations were analyzed by GeneScan using DNA template. Among 134 Iraqi pediatric AML samples, the most prevalent FAB subtype was M2 (33.6 %) followed by M3 (17.9 %). Class I mutations: 20 (14.9 %), 8 (6.0 %), and 8 (6.0 %) patients had FLT3-ITD, FLT3-TKD, and KIT mutations, respectively. Class II mutations: 24 (17.9 %), 19 (14.2 %), and 9 (6.7 %) children had PML-RARA, RUNX1-RUNX1T1, and CBFB-MYH11 transcripts, respectively. MLL rearrangements were detected in 25 (18.7 %) patients. NPM1 mutation was detected in seven (5.2 %) cases. Collectively, approximately 30 % of AML children were proved to carry favorable prognostic genetic abnormalities, whereas approximately 10 % had high FLT3-ITD allelic burden and needed a special treatment plan including allogeneic hematopoietic stem cell transplantation. Acute promyelocytic leukemia (APL) was frequent among Iraqi pediatric AML. It is likely that molecular diagnosis using FTA cards in underdeveloped countries could guide doctors towards an appropriate treatment strategy. "	"[Inv(16)-type acute myeloid leukemia with repeated skin infiltration without bone marrow relapse before and after allogeneic hematopoietic stem cell transplantation]. We report a 40-year-old woman diagnosed as having acute myeloid leukemia with CBFB-MYH11. Before and after stem cell transplantation in the phase of molecular remission of the marrow, CBFB-MYH11-positive cells were detected by RT-PCR analysis in skin lesions. The former was pathologically diagnosed as leukemic infiltration, while the latter was considered to be graft-versus-host disease. We can speculate that a low level of leukemic stem cells not detectable by RT-PCR analysis remained in the bone marrow, at least prior to transplantation. This case may suggest interesting biological features of inv(16)-type acute myeloid leukemia. "	"Identification of differentially expressed genes in hypothalamus of chicken during cold stress. In order to discover the mechanism of cold stress and identify differentially expressed genes in hypothalamus during cold stress, 4 weeks of age Huainan partridge chickens, Chinese indigenous breed, were chosen for 24 h cold stress and then hypothalamus were isolated and labeled by reverse transcription reaction for cDNA. Labeled cDNA were hybridized with cDNA microarray. After scanning and image processing, the different gene expression profiling of hypothalamus and normal control was investigated. The differentially expressed genes included 334 down-regulated genes and 543 up-regulated genes. In these differentially regulated genes, myosin heavy chain polypeptide 11 (MYH11), light chain polypeptide 9 (MYL9) and tenascin-Y (TNXB), etc., which involved in muscle activity were significantly down-regulated. Genes like cholecystokinin (CCK), neuropeptide Y (NPY), neuropeptide Y receptor 5 (NPY5R), hypocretin receptor 2 (HCRTR2) and hypocretin neuropeptide precursor (HCRT) which responsible for regulation of feeding behavior were significantly up-regulated. In addition, genes responsible for lipid synthesis, like apolipoprotein (APOB) and agouti related protein homolog (AGRP), were also up-regulated. Through pathway analysis using the Kyoto Encyclopedia of Gene and Genomics, during 24 h cold stress, the neuroactive ligand-receptor interaction was firstly initiated in chickens for stimulation of central nervus for feed intake. Adipocytokine signaling pathway was in high activation for supplementation of body energy. Jak-STAT, Ca(2+) signaling pathway and other biological reactions were also initiated in response to cold stress. The biological pathways participated in cold stress would provide important information for clarify the mechanism of cold stress and the differentially expressed genes would give much help for screening of candidate genes in breeding of cold stress resistant lines."	"Acute myeloid leukemia with t(16;16) (p13;q22) showing a new CBFB-MYH11 fusion transcript associated with an atypical leukemic blasts morphology. Acute myeloid leukemia (AML) cases with inv(16)(p13q22) or t(16;16)(p13;q22) are characterized by multiple CBFB-MYH11 fusion transcripts, type A being the most frequent. Rare fusion variants are frequently correlated with an atypical cytomorphology, but their biologic and prognostic significance is unclear. We report a case of acute myeloid leukemia with a balanced t(16;16)(p13;q22) and additional monosomy 13 showing a new CBFB-MYH11 fusion transcript variant. The patient also showed an atypical morphology of bone marrow blasts, since about 15% of all blasts showed bilobed nuclei but there was no pathologic eosinophilia. The biologic and prognostic implications of this rare association are discussed. "	"Low androgen induced penile maldevelopment involves altered gene expression of biomarkers of smooth muscle differentiation and a key enzyme regulating cavernous smooth muscle cell tone. We determined the effects of low androgens in the neonatal period on biomarkers of smooth muscle cell differentiation, Myh11 and Acta2, and on Pde5A expression in the penis. One-day-old pups were treated daily with the gonadotropin-releasing hormone antagonist antide with or without dihydrotestosterone for 1 to 6 days. Tissues were collected at age day 7 and at adulthood at age 120 days. Penes were examined by quantitative reverse transcriptase-polymerase chain reaction, Western blot and immunohistochemistry. Testes were assayed for the intratesticular testosterone and steroidogenic enzymes Cyp17α1 and StAR. Gonadotropin-releasing hormone antagonist exposure suppressed the neonatal testicular testosterone surge 70% to 80%. Quantitative reverse transcriptase-polymerase chain reaction revealed 80% to 90% reductions in Cyp17α1 and StAR protein, and 40% to 60% reductions in Myh11 and ACTA2 as a result of gonadotropin-releasing hormone antagonist compared to controls. Dihydrotestosterone co-administration mitigated these decreases. Western blot confirmed the Myh11 decrease at the protein level. Immunohistochemistry of Acta2 confirmed cavernous smooth muscle cell loss at the tissue level. Also, gonadotropin-releasing hormone antagonist exposure decreased Pde5a expression and dihydrotestosterone co-administration mitigated the decrease. Comparison of data between 2 parts of the penis body (corpora cavernosa and corpus spongiosum) showed that antagonist induced decreases in Myh11, Acta2 and Pde5a expression occurred only in the corpora cavernosa, implying that the latter is the target site of low androgen action. As evidenced by gonadotropin-releasing hormone antagonist induced suppression of the neonatal testosterone surge and reduced steroidogenesis, low androgens in the neonatal period altered gene expression of biomarkers of smooth muscle cell differentiation. This led to loss of cavernous smooth muscle cells and consequently to penile maldevelopment."	"Heritable thoracic aortic disorders. Disease of the wall of the thoracic aorta has many causes: inflammation, infection and atherosclerosis are the most common 'acquired' causes, but even these have genetic predispositions. This article deals with aortic disease due to mutations in specific genes. The conditions can affect tissues and organs other than the aorta (syndromic) or be limited to the aorta (nonsyndromic). A classification scheme based on the gene is emerging, those that affect primarily the extracellular matrix (e.g., FBN1, COL3A1), TGF-β signaling (e.g., TGFBR1, TGFB2), or vascular smooth muscle cell contractility (e.g., ACTA2, MYH11). Understanding pathogenesis is driving the development of novel therapies, such as angiotensin receptor blockade, which is in clinical trial. However, recurrent imaging, restriction of exercise, β-adrenergic blockade, and prophylactic surgery remain effective in preventing dissection and sudden death."	"Tubular scaffolds of gelatin and poly(ε-caprolactone)-block-poly(γ-glutamic acid) blending hydrogel for the proliferation of the primary intestinal smooth muscle cells of rats. The proper regeneration of intestinal muscle for functional peristalsis is the most challenging aspect of current small intestine tissue engineering. This study aimed to fabricate a hydrogel scaffold for the proliferation of intestinal smooth muscle cells (ISMCs). Tubular porous scaffolds of 10-20 wt% gelatin and 0.05-0.1 wt% poly(ε-caprolactone)-block-poly(γ-glutamic acid) blending hydrogel were cross-linked by carbodiimide and succinimide in an annular space of a glass mold. The scaffolds with higher gelatin contents degraded slower in the phosphate buffer solution. In rheological measurements, the hydrated scaffolds were elastic (all tangent delta &lt;0.45); they responded differentially to frequency, indicating a complete viscoelastic property that is beneficial for soft tissue regeneration. Isolated rat ISMCs, with the characteristic biomarkers α-SMA, calponin and myh11, were loaded into the scaffolds by using either static or centrifugal methods. The average cell density inside the scaffolds increased in a time-dependent manner in most scaffolds of both seeding groups, although at early time points (seven days) the centrifugal seeding method trapped cells more efficiently and yielded a higher cell density than the static seeding method. The static seeding method increased the cell density from 7.5-fold to 16.3-fold after 28 days, whereas the centrifugal procedure produced a maximum increase of only 2.4-fold in the same period. In vitro degradation data showed that 50-80% of the scaffold was degraded by the 14th day. However, the self-secreted extracellular matrix maintained the integrity of the scaffolds for cell proliferation and spreading for up to 28 days. Confocal microscopic images revealed cell-cell contacts with the formation of a 3D network, demonstrating that the fabricated scaffolds were highly biocompatible. Therefore, these polymeric biomaterials hold great promise for in vivo applications of intestinal tissue engineering. "	"An analytical method for the quantification of hERG1 channel gene expression in human colorectal cancer. Cancer molecular investigation revealed a huge molecular heterogeneity between different types of cancers as well as among cancer patients affected by the same cancer type. This implies the necessity of a personalized approach for cancer diagnosis and therapy, on the basis of the development of standardized protocols to facilitate the application of molecular techniques in the clinical decision-making process. Ion channels encoding genes are acquiring increasing relevance in oncological translational studies, representing new candidates for molecular diagnostic and therapeutic purposes. Hence, the development of molecular protocols for the quantification of ion channels encoding genes in tumor specimens may have relevance for diagnostic and prognostic investigation. Two main hindrances must be overcome for these purposes: the use of formalin-fixed and paraffin-embedded samples for gene expression analysis and the physiological expression of ion channels in excitable cells, potentially present in the tumor sample. We here propose a method for hERG1 gene quantification in colorectal cancer samples in both cryopreserved and formalin-fixed and paraffin-embedded samples. An analytical method was developed to estimate hERG1 gene expression exclusively in epithelial cancer cells. Indeed, we found that the hERG1 gene was expressed at significant levels by myofibroblasts present in the tumor stroma. This method was based on the normalization on a smooth muscle-myofibroblast-specific gene, MYH11, with no need of microdissection. By applying this method, hERG1 expression turned out to correlate with VEGF-A expression, confirming previous immunohistochemical data. "	"Leukemia cell-targeted STAT3 silencing and TLR9 triggering generate systemic antitumor immunity. Signal transducer and activator of transcription 3 (STAT3) is an oncogene and immune checkpoint commonly activated in cancer cells and in tumor-associated immune cells. We previously developed an immunostimulatory strategy based on targeted Stat3 silencing in Toll-like receptor 9 (TLR9)-positive hematopoietic cells using CpG-small interfering RNA (siRNA) conjugates. Here, we assessed the therapeutic effect of systemic STAT3 blocking/TLR9 triggering in disseminated acute myeloid leukemia (AML). We used mouse Cbfb-MYH11/Mpl-induced leukemia model, which mimics human inv(16) AML. Our results demonstrate that intravenously delivered CpG-Stat3 siRNA, but not control oligonucleotides, can eradicate established AML and impair leukemia-initiating potential. These antitumor effects require host's effector T cells but not TLR9-positive antigen-presenting cells. Instead, CpG-Stat3 siRNA has direct immunogenic effect on AML cells in vivo upregulating major histocompatibility complex class-II, costimulatory and proinflammatory mediators, such as interleukin-12, while downregulating coinhibitory PD-L1 molecule. Systemic injections of CpG-Stat3 siRNA generate potent tumor antigen-specific immune responses, increase the ratio of tumor-infiltrating CD8(+) T cells to regulatory T cells in various organs, and result in CD8(+) T-cell-dependent regression of leukemia. Our findings underscore the potential of using targeted STAT3 inhibition/TLR9 triggering to break tumor tolerance and induce immunity against AML and potentially other TLR9-positive blood cancers. "	"Ten-eleven translocation-2 (TET2) is a master regulator of smooth muscle cell plasticity. Smooth muscle cells (SMCs) are remarkably plastic. Their reversible differentiation is required for growth and wound healing but also contributes to pathologies such as atherosclerosis and restenosis. Although key regulators of the SMC phenotype, including myocardin (MYOCD) and KLF4, have been identified, a unifying epigenetic mechanism that confers reversible SMC differentiation has not been reported. Using human SMCs, human arterial tissue, and mouse models, we report that SMC plasticity is governed by the DNA-modifying enzyme ten-eleven translocation-2 (TET2). TET2 and its product, 5-hydroxymethylcytosine (5-hmC), are enriched in contractile SMCs but reduced in dedifferentiated SMCs. TET2 knockdown inhibits expression of key procontractile genes, including MYOCD and SRF, with concomitant transcriptional upregulation of KLF4. TET2 knockdown prevents rapamycin-induced SMC differentiation, whereas TET2 overexpression is sufficient to induce a contractile phenotype. TET2 overexpression also induces SMC gene expression in fibroblasts. Chromatin immunoprecipitation demonstrates that TET2 coordinately regulates phenotypic modulation through opposing effects on chromatin accessibility at the promoters of procontractile versus dedifferentiation-associated genes. Notably, we find that TET2 binds and 5-hmC is enriched in CArG-rich regions of active SMC contractile promoters (MYOCD, SRF, and MYH11). Loss of TET2 and 5-hmC positively correlates with the degree of injury in murine models of vascular injury and human atherosclerotic disease. Importantly, localized TET2 knockdown exacerbates injury response, and local TET2 overexpression restores the 5-hmC epigenetic landscape and contractile gene expression and greatly attenuates intimal hyperplasia in vivo. We identify TET2 as a novel and necessary master epigenetic regulator of SMC differentiation."	"Effect of copy number variants on outcomes for infants with single ventricle heart defects. Human genomes harbor copy number variants (CNVs), which are regions of DNA gains or losses. Although pathogenic CNVs are associated with congenital heart disease (CHD), their effect on clinical outcomes is unknown. This study sought to determine whether pathogenic CNVs among infants with single ventricle physiology were associated with inferior neurocognitive and somatic growth outcomes. Genomic DNAs from 223 subjects of 2 National Heart, Lung, and Blood Institute-sponsored randomized clinical trials in infants with single ventricle CHD and 270 controls from The Cancer Genome Atlas project were analyzed for rare CNVs&gt;300 kb using array comparative genomic hybridization. Neurocognitive and growth outcomes at 14 months from the CHD trials were compared among subjects with and without pathogenic CNVs. Putatively pathogenic CNVs, comprising 25 duplications and 6 deletions, had a prevalence of 13.9%, significantly greater than the 4.4% rate of such CNVs among controls. CNVs associated with genomic disorders were found in 13 cases but not in controls. Several CNVs likely to be causative of single ventricle CHD were observed, including aberrations altering the dosage of GATA4, MYH11, and GJA5. Subjects with pathogenic CNVs had worse linear growth, and those with CNVs associated with known genomic disorders had the poorest neurocognitive and growth outcomes. A minority of children with pathogenic CNVs were noted to be dysmorphic on clinical genetics examination. Pathogenic CNVs seem to contribute to the cause of single ventricle forms of CHD in ≥10% of cases and are clinically subtle but adversely affect outcomes in children harboring them."	"CBFB-MYH11/RUNX1 together with a compendium of hematopoietic regulators, chromatin modifiers and basal transcription factors occupies self-renewal genes in inv(16) acute myeloid leukemia. Different mechanisms for CBFβ-MYH11 function in acute myeloid leukemia with inv(16) have been proposed such as tethering of RUNX1 outside the nucleus, interference with transcription factor complex assembly and recruitment of histone deacetylases, all resulting in transcriptional repression of RUNX1 target genes. Here, through genome-wide CBFβ-MYH11-binding site analysis and quantitative interaction proteomics, we found that CBFβ-MYH11 localizes to RUNX1 occupied promoters, where it interacts with TAL1, FLI1 and TBP-associated factors (TAFs) in the context of the hematopoietic transcription factors ERG, GATA2 and PU.1/SPI1 and the coregulators EP300 and HDAC1. Transcriptional analysis revealed that upon fusion protein knockdown, a small subset of the CBFβ-MYH11 target genes show increased expression, confirming a role in transcriptional repression. However, the majority of CBFβ-MYH11 target genes, including genes implicated in hematopoietic stem cell self-renewal such as ID1, LMO1 and JAG1, are actively transcribed and repressed upon fusion protein knockdown. Together these results suggest an essential role for CBFβ-MYH11 in regulating the expression of genes involved in maintaining a stem cell phenotype. "	"The genetics and genomics of thoracic aortic disease. Genetic studies over the past several decades have helped to better elucidate the genomics and inheritance of thoracic aortic diseases. Seminal work from various researchers have identified several genetic factors and mutations that predispose to aortic aneurysms, which will aid in better screening and early intervention, resulting in better clinical outcomes. Syndromic aneurysms have been associated with Marfan syndrome, Loeys-Dietz syndrome, aneurysm osteoarthritis syndrome, arterial tortuosity syndrome, Ehlers-Danlos Syndrome, and TGFβ mutation. Mutations in MYH11, TGFβR1, TGFβR2, MYLK, and ACTA2 genes have been linked to familial non-syndromic cases, although linkage analysis is limited by incomplete penetrance and/or locus heterogeneity. This overview presents a summary of key genetic and genomic factors that are associated with thoracic aortic diseases. "	"G-banding and fluorescence in situ hybridization in childhood acute myeloid leukemia from South India. The current WHO classification of hematologic malignancies defines distinct entities of myeloid disorders based on the presence of recurrent cytogenetic abnormalities. Diagnostic clonal chromosomal abnormalities provide important prognostic information and are among the most important factors in predicting initial response to chemotherapy, duration of remission and overall survival.  This study analyzed chromosomal abnormalities in bone marrow aspirates of 50 children diagnosed with acute myeloid leuckemia (AML).  The culture success rate was 94%, clonal chromosomal abnormalities constituted 62% and recurrent chromosomal abnormalities were 56%. In the favorable prognostic category, there were 51.6% of cases with t(8;21)(q22;q22), 16.1% had t(15;17)(q22;q21), and a total of 12.9% had chromosome 16 rearrangement. The adverse risk category showed a low frequency of t(9;11)(p22;q13); t(1;22)(p13;q13); inv(3)( q21q26); add 4(q35) and ring chromosome. According to fluorescent in situ hybridization (FISH) results in 16 cytogenetically normal patients, there were no CBFβ/MYH11 fusion genes observed in chromosome 16 rearrangements.  Larger studies of this kind may provide more information about chromosome 16 rearrangements in cytogenetically normal patients. The present analysis suggests that both age and cytogenetics are important strategies for risk stratification (outcome). Additional laboratory parameters should also be considered in childhood AML."	"Exome sequencing identifies recurring FLT3 N676K mutations in core-binding factor leukemia. The t(8;21) and inv(16)/t(16;16) rearrangements affecting the core-binding factors RUNX1 and CBFB, respectively, are found in 15% to 20% of adult de novo acute myeloid leukemia (AML) cases and are associated with a favorable prognosis. Since the expression of the fusion genes CBFB/MYH11 or RUNX1/RUNX1T1 alone is not sufficient to cause leukemia, we performed exome sequencing of an AML sample with an inv(16) to identify mutations, which may collaborate with the CBFB/MYH11 fusion during leukemogenesis. We discovered an N676K mutation in the adenosine triphosphate (ATP)-binding domain (tyrosine kinase domain 1 [TKD1]) of the fms-related tyrosine kinase 3 (FLT3) gene. In a cohort of 84 de novo AML patients with a CBFB/MYH11 rearrangement and in 36 patients with a RUNX1/RUNX1T1 rearrangement, the FLT3 N676K mutation was identified in 5 and 1 patients, respectively (5 [6%] of 84; 1 [3%] of 36). The FLT3-N676K mutant alone leads to factor-independent growth in Ba/F3 cells and, together with a concurrent FLT3-ITD (internal tandem duplication), confers resistance to the FLT3 protein tyrosine kinase inhibitors (PTKIs) PKC412 and AC220. Gene expression analysis of AML patients with CBFB/MYH11 rearrangement and FLT3 N676K mutation showed a trend toward a specific expression profile. Ours is the first report of recurring FLT3 N676 mutations in core-binding factor (CBF) leukemias and suggests a defined subgroup of CBF leukemias."	"Severe arterial tortuosity in an asymptomatic infant with coarctation. NA"	"BAALC and WT1 expressions from diagnosis to hematopoietic stem cell transplantation: consecutive monitoring in adult patients with core-binding-factor-positive AML. No consecutive analysis of BAALC and WT1 expressions associated with core-binding factor AML (CBF-AML) from diagnosis to hematopoietic stem cell transplantation (HSCT) has yet been reported. We investigated BAALC and WT1 expressions using a method of real-time quantitative polymerase chain reaction (RQ-PCR) at diagnosis, after induction chemotherapy, at pre-HSCT, and at post-HSCT period in 45 consecutive patients [t(8,21) (n = 28), inv(16) (n = 17)], who received HSCT as a post-remission treatment. BAALC and WT1 RQ-PCR decrement ratio (DR) was also calculated at post-induction chemotherapy, at pre-HSCT, and at post-HSCT compared with the diagnostic level. Higher BAALC expression at diagnosis showed significantly inferior OS (P = 0.031), EFS (P = 0.011), and higher CIR (P = 0.002) rates. At post-HSCT, both higher BAALC and WT1 expressions showed significantly inferior OS (P = 0.005, 0.016), EFS (P = 0.002, 0.006), and higher CIR (P = 0.001, 0.003) rates. A subgroup of t(8;21) showing higher BAALC and WT1 expressions at post-HSCT were also associated with inferior OS (P = 0.018, 0.015) and higher CIR rates (P = 0.019, 0.011). While BAALC DR showed no significant results on outcomes, WT1 DR more than 2-log at post-HSCT showed significantly lower CIR rate (P = 0.028). This study showed that higher post-HSCT BAALC and WT1 expressions in patients with CBF-AML may be good markers of minimal residual disease for the prediction of survival and relapse after HSCT."	"Core binding factor acute myeloid leukemia: the impact of age, leukocyte count, molecular findings, and minimal residual disease. Most patients with acute myeloid leukemia (AML) and genetic rearrangements involving the core binding factor (CBF) have favorable prognosis. In contrast, a minority of them still have a high risk of leukemia recurrence. This study investigated the adverse features of CBF AML that could justify investigational therapeutic approaches. One hundred and fifty patients (median age 42 yr, range 16-69) with CBF AML (RUNX1-RUNX1T1 n = 74; CBFB-MYH11 n = 76) were prospectively enrolled into two consecutive CETLAM protocols at 19 Spanish institutions. Main clinic and biologic parameters were analyzed in the whole series. In non-selected cases with available DNA samples, the impact of molecular characterization and minimal residual disease (MRD) was also studied. Overall, complete remission (CR) rate was 89% (94% in ≤50 yr old and 72% in &gt;50 yr, P = 0.002). At 5 yr, cumulative incidence of relapse (CIR) was 26 ± 1%, disease-free survival (DFS) 62 ± 6%, and overall survival (OS) 66 ± 4%. In multivariate analyses, leukocyte count above 20 × 10(9) /L, BAALC over-expression, and high copy numbers of RUNX1-RUNXT1 or CBFB-MYH11 after induction chemotherapy (CT) led to increased relapse rate. Regarding OS, age &gt;50 yr, leukocyte count above 20 × 10(9) /L, and increased MN1 expression were adverse features. Age, leukocyte counts, BAALC, and MN1 gene expressions as well as high copy numbers of RUNX1-RUNXT1 or CBFB-MYH11 after induction chemotherapy are useful tools to predict the outcome and should be considered for risk-adapted therapy."	"Male-biased autosomal effect of 16p13.11 copy number variation in neurodevelopmental disorders. Copy number variants (CNVs) at chromosome 16p13.11 have been associated with a range of neurodevelopmental disorders including autism, ADHD, intellectual disability and schizophrenia. Significant sex differences in prevalence, course and severity have been described for a number of these conditions but the biological and environmental factors underlying such sex-specific features remain unclear. We tested the burden and the possible sex-biased effect of CNVs at 16p13.11 in a sample of 10,397 individuals with a range of neurodevelopmental conditions, clinically referred for array comparative genomic hybridisation (aCGH); cases were compared with 11,277 controls. In order to identify candidate phenotype-associated genes, we performed an interval-based analysis and investigated the presence of ohnologs at 16p13.11; finally, we searched the DECIPHER database for previously identified 16p13.11 copy number variants. In the clinical referral series, we identified 46 cases with CNVs of variable size at 16p13.11, including 28 duplications and 18 deletions. Patients were referred for various phenotypes, including developmental delay, autism, speech delay, learning difficulties, behavioural problems, epilepsy, microcephaly and physical dysmorphisms. CNVs at 16p13.11 were also present in 17 controls. Association analysis revealed an excess of CNVs in cases compared with controls (OR = 2.59; p = 0.0005), and a sex-biased effect, with a significant enrichment of CNVs only in the male subgroup of cases (OR = 5.62; p = 0.0002), but not in females (OR = 1.19, p = 0.673). The same pattern of results was also observed in the DECIPHER sample. Interval-based analysis showed a significant enrichment of case CNVs containing interval II (OR = 2.59; p = 0.0005), located in the 0.83 Mb genomic region between 15.49-16.32 Mb, and encompassing the four ohnologs NDE1, MYH11, ABCC1 and ABCC6. Our data confirm that duplications and deletions at 16p13.11 represent incompletely penetrant pathogenic mutations that predispose to a range of neurodevelopmental disorders, and suggest a sex-limited effect on the penetrance of the pathological phenotypes at the 16p13.11 locus."	"Single-nucleotide polymorphism-array improves detection rate of genomic alterations in core-binding factor leukemia. Acute myeloid leukemia (AML) is a group of clonal diseases, resulting from two classes of mutation. Investigation for additional abnormalities associated with a well-recognized subtype, core-binding factor AML (CBF-AML) can provide further understanding and discrimination to this special group of leukemia. In order to better define genetic alterations in CBF-AML and identify possible cooperating lesions, a single-nucleotide polymorphism-array (SNP-array) analysis was performed, combined to KIT mutation screening, in a set of cases. Validation of SNP-array results was done by array comparative genomic hybridization and FISH. Fifteen cases were analyzed. Three cases had microscopic lesions better delineated by arrays. One case had +22 not identified by arrays. Submicroscopic abnormalities were mostly non-recurrent between samples. Of relevance, four regions were more frequently affected: 4q28, 9p11, 16q22.1, and 16q23. One case had an uncovered unbalanced inv(16) due to submicroscopic deletion of 5´MYH11 and 3´CBFB. Telomeric and large copy number neutral loss of heterozygosity (CNN-LOH) regions (&gt;25 Mb), likely representing uniparental disomy, were detected in four out of fifteen cases. Only three cases had mutation on KIT gene, enhancing the role of abnormalities by SNP-array as presumptive cooperating alterations. Molecular karyotyping can add valuable information to metaphase karyotype analysis, emerging as an important tool to uncover and characterize microscopic, submicroscopic genomic alterations, and CNN-LOH events in the search for cooperating lesions."	"[Clinical analysis of acute myeloid leukemia with CBFB-MYH11-positive]. The study was aimed to investigate the clinical characteristics of acute myeloid leukemia (AML) with CBFB-MYH11 gene. The clinical data of 12 cases were analyzed retrospectively, including age, clinical characteristics, immunophenotype, treatment protocols and efficacy as well as the prognosis. The results indicated that 12 patients with CBFB-MYH11 were detected in 293 AML patients. The median age of the 12 patients was 32.5 (21 - 57) years old. According to French-American-British (FAB) classification, 66.7% (8/12) patients was diagnosed as M4Eo and 33.3% patients was diagnosed as M4. At new diagnosis, the median WBC count was 19.8×10(9)/L (2.46 - 164.30×10(9)/L). The WBC count &gt; 100×10(9) was found in 16.7% patients (2/12). The complete remission (CR) rate after 1 and 2 cycles of induction chemotherapy were 83.3% and 16.7% respectively, so the total CR rate was 100%. Estimated 5-year relapse-free survival (RFS) and overall survival (OS) were 80% and 83%, respectively. It is concluded that patients with CBFB-MYH11 are usually M4Eo and M4. Patients with this fusion gene are often associated with high frequency of CD33, CD34, CD117, HLA-DR, CD15, CD64 and CD14 expression. Patients with CBFB-MYH11 have a tendency of higher CR rate, longer RFS and OS."	"Phenotype and steroidogenic potential of PDGFRα-positive rat neonatal peritubular cells. Platelet-derived growth factor receptor α (PDGFRα)-positive peritubular cells (PTCs) are suggested to be putative stem Leydig cells. At present little is known about their phenotype and steroidogenic potential. We isolated highly purified PDGFRα-positive neonatal PTCs by magnetic cell sorting (MACS) from 8dpp rat testes and characterized them in vitro. We have demonstrated that PDGFRα-positive PTCs have a mixed phenotype. They expressed PTC-specific genes (αSma, Myh11), pluripotency markers (Pou5f1, nestin, Lifr) and genes encoding steroidogenic enzymes. Treatment with the cAMP-analog (Bu)2cAMP for 7 days upregulated steroidogenic enzyme gene expression and significantly increased their steroidogenic potential. The main end-point steroid was progesterone due to rapid inactivation of CYP17 and 17βHSD. Long-term culturing of PDGFRα-positive PTCs increased the expression of Myh11, and treatment with (Bu)2cAMP attenuated this process. All together, our findings support the hypothesis that neonatal PDGFRα-positive PTCs are steroidogenic competent progeny of stem Leydig cells (SLCs) which give rise to the adult Leydig cell lineage."	"Partial loss of contractile marker proteins in human testicular peritubular cells in infertility patients. Fibrotic remodelling of the testicular tubular wall is common in human male infertility caused by impaired spermatogenesis. We hypothesized that this morphological change bears witness of an underlying fundamentally altered state of the cells building this wall, that is, peritubular smooth muscle-like cells. This could include a loss of the contractile abilities of these cells and thus be a factor in male infertility. Immune cells are increased in the tubular wall in these cases, hence local immune cell-related factors, including a prostaglandin (PG) metabolite may be involved. To explore these points in the human, we used testicular biopsies, in which tubules with normal spermatogenesis and impaired spermatogenesis are next to each other [mixed atrophy (MA)], normal biopsies and cultured human testicular peritubular cells. Proteins essential for contraction, myosin heavy chain (MYH11), calponin (Cal) and relaxation, cGMP-dependent protein kinase 1 (cGKI), were readily detected by immunohistochemistry and were equally distributed in all peritubular cells of biopsies with normal spermatogenesis. In all biopsies, vascular smooth muscle cells also stained and served as important intrinsic controls, which showed that in MA samples when spermatogenesis was impaired, staining was restricted to only few peritubular cells or was absent. When spermatogenesis was normal, regular peritubular staining became obvious. This pattern suggests complex regulatory influences, which in face of the identical systemic hormonal situation in MA patients, are likely caused by the local testicular micromilieu. The PG metabolite 15dPGJ2 may represent such a factor and it reduced Cal protein levels in peritubular cells from patients with/without impaired spermatogenesis. The documented phenotypic switch of peritubular, smooth muscle-like cells in MA patients may impair the abilities of the afflicted seminiferous tubules to contract and relax and must now be considered as a part of the complex events in male infertility."	"[Acute myeloid leukemia. Genetic diagnostics and molecular therapy]. Acute myeloid leukemia (AML) is a genetically heterogeneous disease. The genetic diagnostics have become an essential component in the initial work-up for disease classification, prognostication and prediction. More and more promising molecular targeted therapeutics are becoming available. A prerequisite for individualized treatment strategies is a fast pretherapeutic molecular screening including the fusion genes PML-RARA, RUNX1-RUNX1T1 and CBFB-MYH11 as well as mutations in the genes NPM1, FLT3 and CEBPA. Promising new therapeutic approaches include the combination of all- trans retinoic acid and arsentrioxid in acute promyelocytic leukemia, the combination of intensive chemotherapy with KIT inhibitors in core-binding factor AML and FLT3 inhibitors in AML with FLT3 mutation, as well as gemtuzumab ozogamicin therapy in patients with low and intermediate cytogenetic risk profiles. With the advent of the next generation sequencing technologies it is expected that new therapeutic targets will be identified. These insights will lead to a further individualization of AML therapy."	"Brg1 governs distinct pathways to direct multiple aspects of mammalian neural crest cell development. Development of the cerebral vessels, pharyngeal arch arteries (PAAs). and cardiac outflow tract (OFT) requires multipotent neural crest cells (NCCs) that migrate from the neural tube to target tissue destinations. Little is known about how mammalian NCC development is orchestrated by gene programming at the chromatin level, however. Here we show that Brahma-related gene 1 (Brg1), an ATPase subunit of the Brg1/Brahma-associated factor (BAF) chromatin-remodeling complex, is required in NCCs to direct cardiovascular development. Mouse embryos lacking Brg1 in NCCs display immature cerebral vessels, aberrant PAA patterning, and shortened OFT. Brg1 suppresses an apoptosis factor, Apoptosis signal-regulating kinase 1 (Ask1), and a cell cycle inhibitor, p21(cip1), to inhibit apoptosis and promote proliferation of NCCs, thereby maintaining a multipotent cell reservoir at the neural crest. Brg1 also supports Myosin heavy chain 11 (Myh11) expression to allow NCCs to develop into mature vascular smooth muscle cells of cerebral vessels. Within NCCs, Brg1 partners with chromatin remodeler Chromodomain-helicase-DNA-binding protein 7 (Chd7) on the PlexinA2 promoter to activate PlexinA2, which encodes a receptor for semaphorin to guide NCCs into the OFT. Our findings reveal an important role for Brg1 and its downstream pathways in the survival, differentiation, and migration of the multipotent NCCs critical for mammalian cardiovascular development."	"Detection of histone modifications at specific gene loci in single cells in histological sections. Chromatin immunoprecipitation assays have contributed greatly to our understanding of the role of histone modifications in gene regulation. However, they do not permit analysis with single-cell resolution, thus confounding analyses of heterogeneous cell populations. Here we present a method that permits visualization of histone modifications of single genomic loci with single-cell resolution in formaldehyde-fixed paraffin-embedded tissue sections based on combined use of in situ hybridization and proximity ligation assays. We show that dimethylation of lysine 4 of histone H3 (H3K4me2) at the MYH11 locus is restricted to the smooth muscle cell (SMC) lineage in human and mouse tissue sections and that the mark persists even in phenotypically modulated SMC in atherosclerotic lesions that show no detectable expression of SMC marker genes. This methodology has promise for broad applications in the study of epigenetic mechanisms in complex multicellular tissues in development and disease."	"Non-syndromic thoracic aortic aneurysms and dissections--a genetic review. Thoracic aortic aneurysm and dissections (TAADs) are associated with both high mortality and medical expense. Poor outcomes are preventable by surgical repair; however, identifying individuals at-risk is difficult. Researchers are scanning the human genome to characterize the genetic determinants of TAADs by identifying chromosomal regions, gene mutations, single nucleotide polymorphism (SNP), genomic copy number variants and micro-RNA variants, with the purpose of analyzing the risk of TAADs associated with these predisposing genes. The goal of this review is to develop screening tests to identify individuals at risk for non-syndromic TAADs. This genetic survey has significant clinical implications because high-risk individuals can be closely monitored and can benefit from preventative surgical repair."	"[Analysis of DNMT3a mutation in childhood acute myeloid leukemia]. Within the past few years, the invention of next-generation sequencing has revealed several new genes associated with tumor formation and development, for example DNMT3a. This gene is an independent prognostic factor for acute myeloid leukemia (AML). The objective of this study was to analyze the DNMT3a mutation in childhood AML in a single center. PCR amplification of the entire coding region of DNMT3a was performed using 23 overlapping primer pairs in 57 patients who were diagnosed in Blood Disease Hospital of Chinese Academy of Medical Sciences, then the directly sequencing was underwent. The results showed that no DNMT3a mutation was found in these patients including the hotspot R882. But AML1/ETO mutation was found in 10 patients, CBFB/MYH11 mutation in 3 patients, PML/RARa mutation in 13 patients, FLT3/ITD mutation in 5 patients, FLT3/TKD mutation in 1 patient, PML/RARa and FLT3/TKD mutation coexisted in 2 patients. It is concluded that DNMT3a mutations are rare in childhood AML, and different mechanisms of myeloid leukemogenesis between childhood and adults maybe involved."	"Acute myeloid leukemia with cryptic CBFB-MYH11 type D. A 77 year-old female was found with FAB M4Eo acute myeloid leukemia. Although CBFB-MYH11 mRNA was detected in RT-PCR, the conventional cytogenetic analysis failed to reveal inv(16). Fluorescence in situ hybridization (FISH) and the sequence analysis revealed a fusion between the exon 5 of CBFB and the exon 8 of MYH11, resulting in a minor variant fusion product previously reported as type D. In order to detect the cryptic inv(16) type D, both FISH and RT-PCR are required, and furthermore, the primers for the sequence analysis needs to be selected for the proper diagnosis."	"DNMT3A Mutations in Patients with Acute Myeloid Leukemia in South Brazil. Acute myeloid leukemia (AML) is a complex and heterogeneous hematopoietic tissue neoplasm. Several molecular markers have been described that help to classify AML patients into risk groups. DNA methyltransferase 3A (DNMT3A) gene mutations have been recently identified in about 22% of AML patients and associated with poor prognosis as an independent risk factor. Our aims were to determine the frequency of somatic mutations in the gene DNMT3A and major chromosomal translocations in a sample of patients with AML. We investigated in 82 samples of bone marrow from patients with AML for somatic mutations in DNMT3A gene by sequencing and sought major fusion transcripts by RT-PCR. We found mutations in the DNMT3A gene in 5 patients (6%); 3 were type R882H [corrected]. We found fusion transcripts in 19 patients, namely, AML1/ETO (n = 5; 6.1%), PML/RARα (n = 12; 14.6%), MLL/AF9 (0; 0%), and CBFβ/MYH11 (n = 2; 2.4%). The identification of recurrent mutations in the DNMT3A gene and their possible prognostic implications can be a valuable tool for making treatment decisions. This is the first study on the presence of somatic mutations of the DNMT3A gene in patients with AML in Brazil. The frequency of these mutations suggests a possible ethnogeographic variation."	"inv(16)/t(16;16) acute myeloid leukemia with non-type A CBFB-MYH11 fusions associate with distinct clinical and genetic features and lack KIT mutations. The inv(16)(p13q22)/t(16;16)(p13;q22) in acute myeloid leukemia results in multiple CBFB-MYH11 fusion transcripts, with type A being most frequent. The biologic and prognostic implications of different fusions are unclear. We analyzed CBFB-MYH11 fusion types in 208 inv(16)/t(16;16) patients with de novo disease, and compared clinical and cytogenetic features and the KIT mutation status between type A (n = 182; 87%) and non-type A (n = 26; 13%) patients. At diagnosis, non-type A patients had lower white blood counts (P = .007), and more often trisomies of chromosomes 8 (P = .01) and 21 (P &lt; .001) and less often trisomy 22 (P = .02). No patient with non-type A fusion carried a KIT mutation, whereas 27% of type A patients did (P = .002). Among the latter, KIT mutations conferred adverse prognosis; clinical outcomes of non-type A and type A patients with wild-type KIT were similar. We also derived a fusion-type-associated global gene-expression profile. Gene Ontology analysis of the differentially expressed genes revealed-among others-an enrichment of up-regulated genes involved in activation of caspase activity, cell differentiation and cell cycle control in non-type A patients. We conclude that non-type A fusions associate with distinct clinical and genetic features, including lack of KIT mutations, and a unique gene-expression profile."	"[Clinical and laboratory features of pediatric acute myeloid leukemia with inversion of chromosome 16]. To evaluate the clinical and laboratory features of pediatric inv(16) acute myeloid leukemia (AML) retrospectively. Dual color fluorescence in situ hybridization (D-FISH) using a LSI CBFβ inv(16) break apart probe labeled by Spectrum red and Spectrum green was performed in 15 acute myeloid leukemia cases, including 13 cases with or without abnormal eosinophils but with positive core binding factor β (CBFβ)-MYH11 fusion transcript detected by RT-PCR, and 2 cases with trisomy 8 (+8). The results were compared with the morphology, immunophenotype, karyotype and RT-PCR. Morphologically, 12 cases were diagnosed as M(4)EO, 2 as M(4), and 1 as M(2a). Immunophenotypically, all 13 AML cases with inv(16) showed positive expression of CD(13) and CD(33), but without the expression of any lymphoid lineage antigens. Karyotyping analysis with G-banding detected inv(16) in 10 AML cases, including 9 M(4)EO cases and 1 M(2a), but only 5 positive cases were detected using R-banding technique. Among them, 2 cases had simultaneous +8 and trisomy22 (+22), one had +22 only in addition to inv(16). D-FISH revealed a CBFβ-MYH11 rearrangement in 13 cases of AML with positive RT-PCR results, and the mean positive rate of cell detection was 55.15% (range 37.0% - 86.0%). The complete remission rate (CR) and median survival period in this series of inv(16) AML were 81.5%and 11 months, respectively, of whom, 8 cases were still in CR. Relapse and karyotypic evolution were seen in case 5 with +8, +22 in addition to inv(16). AML with inv(16) is a special subtype. Most cases belong to M(4)EO. Its prognosis is good in general, but it seems to be an unfavorable feature for AML with inv(16) and +8, +22 simultaneously, especially with karyotypic evolution. For detection of inv(16), G-banding technique is evidently superior to R-banding technique. D-FISH combined with RT-PCR are more sensitive and reliable than chromosome banding analysis."	"The C-terminus of CBFβ-SMMHC is required to induce embryonic hematopoietic defects and leukemogenesis. The C-terminus of CBFβ-SMMHC, the fusion protein produced by a chromosome 16 inversion in acute myeloid leukemia subtype M4Eo, contains domains for self-multimerization and transcriptional repression, both of which have been proposed to be important for leukemogenesis by CBFβ-SMMHC. To test the role of the fusion protein's C-terminus in vivo, we generated knock-in mice expressing a C-terminally truncated CBFβ-SMMHC (CBFβ-SMMHCΔC95). Embryos with a single copy of CBFβ-SMMHCΔC95 were viable and showed no defects in hematopoiesis, whereas embryos homozygous for the CBFβ-SMMHCΔC95 allele had hematopoietic defects and died in mid-gestation, similar to embryos with a single-copy of the full-length CBFβ-SMMHC. Importantly, unlike mice expressing full-length CBFβ-SMMHC, none of the mice expressing CBFβ-SMMHCΔC95 developed leukemia, even after treatment with a mutagen, although some of the older mice developed a nontransplantable myeloproliferative disease. Our data indicate that the CBFβ-SMMHC's C-terminus is essential to induce embryonic hematopoietic defects and leukemogenesis."	"High-density oligonucleotide-based resequencing assay for mutations causing syndromic and non-syndromic forms of thoracic aortic aneurysms and dissections. Thoracic aortic aneurysm and dissection is associated with increasing mortality rate that may occur as part of a syndrome or as an isolated familial condition. Several genes have been implicated in causing TAAD, though an appropriate genetic test for their parallel testing is not yet available. Herein, we describe the novel 117-kb &quot;MFSTAAD chip&quot; that may help to understand the genetic basis of TAAD. A custom duplicate resequencing assay was developed to cover eight genes previously described in TAAD; FBN1, TGFBR1&amp;2, COL3A1, MYH11, ACTA2, SLC2A10 and NOTCH1. GSEQ and SeqC software were used for data analysis. The analytical sensitivity of the assay was validated by the recognition of 182 known mutations (153 point mutations, 21 deletions, 7 insertions and 1 duplication) and a cohort of 28 patients were selected to determine the mutation yield, whereby 18 of them were previously negative for mutations in the genes FBN1 and TGFBR2. The assay had significantly higher sensitivity for point mutations (100%) and the largest deletion of 16 bp was detectable through a decline in the hybridization strength. The overall analytical sensitivity was 85%. Mutation testing of 28 unrelated TAAD patients revealed 4 known and 6 possibly pathogenic mutations with a mutation yield of 32%. The MFSTAAD chip is an alternative tool to next-generation sequencing that allows parallel analysis of several genes on a single platform. Refinements in the probe design and data analysis software will increase the analytical sensitivity of insertions and deletions making this assay even more applicable for clinical testing."	"Additional genomic aberrations identified by single nucleotide polymorphism array-based karyotyping in an acute myeloid leukemia case with isolated del(20q) abnormality. Prognosis is known to be better in cases with isolated chromosomal abnormalities than in those with complex karyotypes. Accordingly, del(20q) as an isolated abnormality must be distinguished from cases in which it is associated with other chromosomal rearrangements for a better stratification of prognosis. We report a case of an isolated del(20q) abnormality with additional genomic aberrations identified using whole-genome single nucleotide polymorphism array (SNP-A)-based karyotyping. A 39-yr-old man was diagnosed with AML without maturation. Metaphase cytogenetic analysis (MC) revealed del(20)(q11.2) as the isolated abnormality in 100% of metaphase cells analyzed, and FISH analysis using D20S108 confirmed the 20q deletion in 99% of interphase cells. Using FISH, other rearrangements such as BCR/ABL1, RUNX1/RUNX1T1, PML/RARA, CBFB/MYH11, and MLL were found to be negative. SNP-A identified an additional copy neutral loss of heterozygosity (CN-LOH) in the 11q13.1-q25 region. Furthermore, SNP-A allowed for a more precise definition of the breakpoints of the 20q deletion (20q11.22-q13.31). Unexpectedly, the terminal regions showed gain on chromosome 20q. The patient did not achieve complete remission; 8 months later, he died from complications of leukemic cell infiltrations into the central nervous system. This study suggests that a presumably isolated chromosomal abnormality by MC may have additional genomic aberrations, including CN-LOH, which could be associated with a poor prognosis. SNP-A-based karyotyping may be helpful for distinguishing true isolated cases from cases in combination with additional genomic aberrations not detected by MC."	"Secondary genetic lesions in acute myeloid leukemia with inv(16) or t(16;16): a study of the German-Austrian AML Study Group (AMLSG). In this study, we evaluated the impact of secondary genetic lesions in acute myeloid leukemia (AML) with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11. We studied 176 patients, all enrolled on prospective treatment trials, for secondary chromosomal aberrations and mutations in N-/KRAS, KIT, FLT3, and JAK2 (V617F) genes. Most frequent chromosomal aberrations were trisomy 22 (18%) and trisomy 8 (16%). Overall, 84% of patients harbored at least 1 gene mutation, with RAS being affected in 53% (45% NRAS; 13% KRAS) of the cases, followed by KIT (37%) and FLT3 (17%; FLT3-TKD [14%], FLT3-ITD [5%]). None of the secondary genetic lesions influenced achievement of complete remission. In multivariable analyses, KIT mutation (hazard ratio [HR] = 1.67; P = .04], log(10)(WBC) (HR = 1.33; P = .02), and trisomy 22 (HR = 0.54; P = .08) were relevant factors for relapse-free survival; for overall survival, FLT3 mutation (HR = 2.56; P = .006), trisomy 22 (HR = 0.45; P = .07), trisomy 8 (HR = 2.26; P = .02), age (difference of 10 years, HR = 1.46; P = .01), and therapy-related AML (HR = 2.13; P = .14) revealed as prognostic factors. The adverse effects of KIT and FLT3 mutations were mainly attributed to exon 8 and tyrosine kinase domain mutations, respectively. Our large study emphasizes the impact of both secondary chromosomal aberrations as well as gene mutations for outcome in AML with inv(16)/t (16;16)."	"[Diagnostic value of fluorescence in situ hybridization for children with acute myeloid leukemia]. This study was purposed to investigate the diagnostic value of fluorescence in situ hybridization (FISH) technique for the childhood acute myeloid leukemia (AML). The medical data of 179 children with AML (aged ≤ 16 years) were retrospectively studied, who were initially diagnosed in our hospital from April 2005 to April 2010. Through the analysis of the results of FISH, chromosome banding analysis and polymerase chain reaction, the difference and complementarity between FISH and other 2 methods for detecting the fusion genes were explored. The results indicated that the detection rate of genetic abnormality with FISH was higher. The PML/RARα probe was used in 27 AML-M3 patients, 22 out of whom were evaluated as PML/RARα positive. The AML1/ETO probe was used in 24 AML-M2b patients and all of them were evaluated as AML1/ETO positive. The CBFβ/MYH11 probe was used in 4 AML-M4Eo patients and all of them were evaluated as CBFβ/MYH11 positive. It is concluded that FISH is a sensitive method for detecting fusion genes and the results of FISH have a good correlation with the chromosome banding analysis and polymerase chain reaction. The combination of FISH with other 2 methods improves the detection rate of genetic abnormality, which is useful for the diagnosis and typing of childhood AML."	"[Establishment of a new method for screening of CBFB-MYH11 fusion gene in acute myeloid leukemia and its value in clinical use]. This study was purposed to establish new method for detecting CBFB-MYH11 fusion gene in acute myeloid leukemia (AML) and to evaluate its value in clinical use. All fusion types of reported CBFB-MYH11 fusion gene were defined by search of references and databank, then the primers and probes were designed on this basis, and 3 positive plasmids and negative cell line as control were established. GUSB gene was also amplified as an internal reference. The primer/probe sets were tested with 3 positive plasmids and HL-60 cDNA using quantitative real-time PCR (qPCR) assays, which were then combined as a multiplex qPCR for simultaneous detection of CBFB-MYH11 and GUSB. After optimization, the multiplex qPCR assay demonstrated both high sensitivity (10 copies for all the 3 plasmids) and high specificity. Finally, the multiplex qPCR assay was clinically evaluated with 58 AML patients, and 4 CBFB-MYH11-positive cases (6.9%) were detected, involving A type (3 cases) and J type (1 case). By comparison, the multiplex qPCR assay showed results concordant with sequencing results, and detected one case that was missed by cytogenetic analysis. It is concluded that a novel qPCR method for screening of CBFB-MYH11 fusion gene in AML is established. This method is fast, comprehensive, sensitive, specific, reliable, and should consider to be a robust tool for identification and management of AML patients with CBFB-MYH11 fusion gene."	"Marked eosinophilia with abnormal basophilic granules in acute graft-versus-host disease post-allogeneic haemopoietic stem cell transplant for acute myeloid leukaemia without CBFB-MYH11 mutation. NA"	"TGFβRIIb mutations trigger aortic aneurysm pathogenesis by altering transforming growth factor β2 signal transduction. Thoracic aortic aneurysm (TAA) is a common progressive disorder involving gradual dilation of the ascending and/or descending thoracic aorta that eventually leads to dissection or rupture. Nonsydromic TAA can occur as a genetically triggered, familial disorder that is usually transmitted in a monogenic autosomal dominant fashion and is known as familial TAA. Genetic analyses of families affected with TAA have identified several chromosomal loci, and further mapping of familial TAA genes has highlighted disease-causing mutations in at least 4 genes: myosin heavy chain 11 (MYH11), α-smooth muscle actin (ACTA2), and transforming growth factor β receptors I and II (TGFβRI and TGFβRII). We evaluated 100 probands to determine the mutation frequency in MYH11, ACTA2, TGFβRI, and TGFβRII in an unbiased population of individuals with genetically mediated TAA. In this study, 9% of patients had a mutation in one of the genes analyzed, 3% of patients had mutations in ACTA2, 3% in MYH11, 1% in TGFβRII, and no mutations were found in TGFβRI. Additionally, we identified mutations in a 75 base pair alternatively spliced TGFβRII exon, exon 1a that produces the TGFβRIIb isoform and accounted for 2% of patients with mutations. Our in vitro analyses indicate that the TGFβRIIb activating mutations alter receptor function on TGFβ2 signaling. We propose that TGFβRIIb expression is a regulatory mechanism for TGFβ2 signal transduction. Dysregulation of the TGFβ2 signaling pathway, as a consequence of TGFβRIIb mutations, results in aortic aneurysm pathogenesis."	"Rapid detection of prognostically significant fusion transcripts in acute leukemia using simplified multiplex reverse transcription polymerase chain reaction. Multiplex reverse transcription polymerase chain reaction (mRT-PCR) has recently emerged as an alternative to cytogenetics. We designed and used simplified mRT-PCR system as a molecular screen for acute leukemia. Fifteen fusion transcripts were included: BCR-ABL1, PML-RARA, ZBTB16-RARA, RUNX1-RUNX1T1, CBFB-MYH11, DEK-NUP214, TCF3-PBX1, ETV6-RUNX1, MLL-AFF1, MLL-MLLT4, MLL-MLLT3, MLL-MLLT10, MLL-ELL, MLL-MLLT1, and MLL-MLLT6. A total of 121 diagnostic acute leukemia specimens were studied, comparing the mRT-PCR system with standard cytogenetics. Fifty-six cases (46.3%) had fusion transcripts revealed by our mRT-PCR assay. The concordance rate between mRT-PCR and cytogenetics was 91.7%. However, false negative results were found in three cases who have inv(16), t(4;11) or t(11;19)(q23;p13.1), respectively. Seven cryptic translocations including ETV6-RUNX1, MLL-MLLT3, MLL-MLLT4, and PML-RARA were detected. This mRT-PCR assay is a useful screening tool in acute leukemia because it provides rapid and reliable detection of clinically important chimeric transcripts. In addition, cryptic translocations provide additional genetic information that could be clinically useful."	"A case of therapy-related acute myeloid leukemia with inv(16)(p13.1q22) after single low-dose iodine-131 treatment for thyroid cancer. Radioiodine is regularly used in the treatment of thyroid cancer to eliminate residual malignant tissue after thyroidectomy and to treat metastasis. Because of the low dose of radioiodine used to treat thyroid cancer patients, leukemia is an uncommon complication of exposure to radioiodine. Here, we present a patient who developed therapy-related acute myeloid leukemia with inv(16)(p13.1q22);CBFβ-MYH11, eosinophilia, and K-ras mutation and who had been treated with very low-dose radioiodine following total thyroidectomy."	"Over-expression of CYP2E1 mRNA and protein: implications of xenobiotic induced damage in patients with de novo acute myeloid leukemia with inv(16)(p13.1q22); CBFβ-MYH11. Environmental exposure to benzene occurs through cigarette smoke, unleaded gasoline and certain types of plastic. Benzene is converted to hematotoxic metabolites by the hepatic phase-I enzyme CYP2E1, and these metabolites are detoxified by the phase-II enzyme NQO1. The genes encoding these enzymes are highly polymorphic and studies of these polymorphisms have shown different pathogenic and prognostic features in various hematological malignancies. The potential role of different cytochrome p450 metabolizing enzymes in the pathogenesis of acute myeloid leukemia (AML) in an area of active interest. In this study, we demonstrate aberrant CYP2E1 mRNA over-expression by quantitative real-time polymerase chain reaction in 11 cases of de novo AML with inv(16); CBFβ-MYH11. CYP2E1 mRNA levels correlated with CBFβ-MYH11 transcript levels and with bone marrow blast counts in all cases. CYP2E1 over-expression correlated positively with NQO1 mRNA levels (R(2) = 0.934, n = 7). By immunohistochemistry, CYP2E1 protein was more frequently expressed in AML with inv(16) compared with other types of AML (p &lt; 0.001). We obtained serial bone marrow samples from two patients with AML with inv(16) before and after treatment. CYP2E1 mRNA expression levels decreased in parallel with CBFβ-MYH11 transcript levels and blast counts following chemotherapy. In contrast, CYP1A2 transcript levels did not change in either patient. This is the first study to demonstrate concurrent over-expression of CYP2E1 and NQO1 mRNA in AML with inv(16). These findings also suggest that a balance between CYP2E1 and NQO1 may be important in the pathogenesis of AML with inv(16)."	"p210 BCR/ABL1 as a secondary change in a patient with acute myelomonocytic leukemia (M4Eo) with inv(16). t(9;22) as a secondary change of inv(16) is a rare chromosome aberration in de novo acute myeloid leukemia (AML). Here, we report the case of a 31-year-old man with this rare abnormality. Karyotypic analysis showed a complex chromosome aberration:46,XY,der(8)t(8;10)(p23;q25),der(10)t(8;10)t(10;16)(p13;q22),der(16)inv(16)(p13q22)t(10;16)[4] and 46,XY,idem,t(9;22)(q34;q11)[6]. Fluorescence in situ hybridization detected both the CBFB and the BCR/ABL1 rearrangements. CBFB/MYH11 (A type) and BCR/ABL1 (b3a2) fusion transcripts were both detected by real-time quantitative RT-PCR. The patient was treated with standard AML chemotherapy and autologous peripheral blood stem cell transplantation. He also received imatinib (400 mg/day) during the chemotherapy intervals and after transplantation. Molecular remission was achieved at the beginning of the third chemotherapy and he remained in remission until the last follow-up (22 months after diagnosis). To our knowledge, this is the first reported case of de novo AML in which has p210(BCR/ABL1) occurred as a secondary change of inv(16)."	"A tetraploid minimally differentiated acute myeloblastic leukemia with extensive erythrophagocytosis: a case report and literature review. Tetraploidy is a rare chromosome number aberration in de novo acute myeloid leukemia (AML), and may be associated with erythrophagocytosis by leukemic blast cells. We report a 48-year-old female patient with minimally differentiated acute myeloblastic leukemia (AML-M0) exhibiting tetraploidy and erythrophagocytosis. The karyotype was 46,XX[2]/92,XXXX[18]. Bone marrow aspirate smears showed large and prominent nuclei, with erythrophagocytosis in leukemic cells. Fluorescence in situ hybridization using RUNX1 dual color break probes detected four fusion signals, accounting for 95 % (190/200), in one interphase nucleus. The mutations of TP53 and the fusion genes RUNX1/ETO, CBFβ/MYH11, and PML/RARα were all negative. This patient showed a poor response to chemotherapy, and died 66 days after the onset. To our knowledge, this is the first reported case of AML-M0 with tetraploidy and erythrophagocytosis and without additional chromosome aberrations. This case of tetraploid AML with poor prognosis suggests that further biological study of more cases of tetraploid AML will be of great importance in improving the understanding and prognosis of this tetraploid AML."	"KIT D816 mutation associates with adverse outcomes in core binding factor acute myeloid leukemia, especially in the subgroup with RUNX1/RUNX1T1 rearrangement. Core binding factor (CBF)-positive acute myeloid leukemia (AML) presents a favorable prognosis, except for patients with KIT mutation, especially D816 mutation. The current retrospective study attempted to validate a prognostic role of KIT mutation in 121 Korean patients with CBF AML. The study patients consisted of 121 patients with CBF AML (82 patients with RUNX1/RUNX1T1 [67.8 %] and 39 patients with CBFB/MYH11 [32.2 %]) recruited from eight institutions in Korea. All patients received idarubicin plus cytarabine or behenoyl cytosine arabinoside 3 + 7 induction chemotherapy. The KIT gene mutation status was determined by direct sequencing analyses. A KIT mutation was detected in 32 cases (26.4 %) in our series of patients. The KIT mutation was most frequent in exon 17 (n = 18, 14.9 %; n = 16 with D816 mutation), followed by exon 8 (n = 10, 8.3 %). The presence of KIT D816 mutation was associated with adverse outcomes for the event-free survival (p = 0.03) and for the overall survival (p = 0.02). The unfavorable impact of D816 mutation was more prominent when the analysis was confined to the RUNX1/RUNX1T1 subtype. The KIT mutation was detected in 26.4 % of Korean patients with CBF AML. The KIT D816 mutation demonstrated an unfavorable prognostic implication, particularly in the RUNX1/RUNX1T1 subtype."	"Importance of assessing cytogenetic and molecular risk factors in acute myeloid leukemia therapy. Acute myeloid leukemia (AML) is a heterogeneous disease in clinical presentation, outcome and therapeutic response. Cytogenetic and molecular characteristics are important prognostic indicators allowing the identification of distinct subtypes of AML, prognostic stratification and risk-adapted treatment. We present our experience during 5 years, in which we treated 245 patients with AML, of which we could genetically characterize 48 cases (26 females, 22 males) with a median age of 52 years. Cytogenetic analysis was performed by GTG banding on cultures of marrow cells treated with colcemid. Molecular analysis used RT-PCR performed on ABI 9700 platform in order to identify the following fusion genes: E2A-PBX1, TEL-AML1, AML1-ETO, PML-RARα, MLL-AF4, CBFC-MYH11, BCR-ABL, SIL-TAL, and MLL-AF9as well as mutations in Flt3, NPM1, WT1 genes. Fourteen patients were older than 60 years. In 12 we performed cytogenetic analysis showing 5 cases with complex karyotype, 2 normal karyotypes, 1 case of del(21), del (9), 11q- and t(3;15) respectively as well as 2 unevaluable karyotypes. These anomalies were associated with a high incidence of secondary AMLs (10/14) and with a low remission (CR) rate (5/14). Out of the 35 patients younger than 60 years, 25 were evaluated by cytogenetics showing a high incidence of favorable cytogenetic changes: 6 anomalies of chromosome 16 (5 inv (16) and 1 t (16; 16)), 3 t (15; 17), 3 cases of t (8; 21) of which 2 with additional abnormalities, 7 normal karyotypes and 1 case of 7q-, -y,-3 and respectively -8 associated with +18. In 25 cases molecular analysis was performed showing alterations in 21 patients: 6 cases with AML/ETO, 3 PML/RAR, 7 Flt3 mutations (2 associated with NPM1 mutation) as well as 1 case of isolated mutation of NPM1 and respectively WT1. CR rate was of 28/35. All cases with t (15; 17) and PML/RAR as well all cases with t (8; 21) and/or AML/ETO achieved CR. Out of the 7 cases with Flt3 mutations only 4 achieved CR including the 2 cases with associated NPM1 mutations. In our experience, genetic characteristics correlate with other prognostic markers such as age and secondary leukemia; &quot;favorable&quot; genetic anomalies were associated with a high CR rate; association of t (8; 21) with additional abnormalities did not influence CR rate."	"Estrogen-induced maldevelopment of the penis involves down-regulation of myosin heavy chain 11 (MYH11) expression, a biomarker for smooth muscle cell differentiation. Cavernous smooth muscle cells are essential components in penile erection. In this study, we investigated effects of estrogen exposure on biomarkers for smooth muscle cell differentiation in the penis. Neonatal rats received diethylstilbestrol (DES), with or without the estrogen receptor (ESR) antagonist ICI 182,780 (ICI) or the androgen receptor (AR) agonist dihydrotestosterone (DHT), from Postnatal Days 1 to 6. Tissues were collected at 7, 10, or 21 days of age. The smooth muscle cell biomarker MYH11 was studied in depth because microarray data showed it was significantly down-regulated, along with other biomarkers, in DES treatment. Quantitative real time-PCR and Western blot analyses showed 50%-80% reduction (P ≤ 0.05) in Myh11 expression in DES-treated rats compared to that in controls; and ICI and DHT coadministration mitigated the decrease. Temporally, from 7 to 21 days of age, Myh11 expression was onefold increased (P ≥ 0.05) in DES-treated rats versus threefold increased (P ≤ 0.001) in controls, implying the long-lasting inhibitory effect of DES on smooth muscle cell differentiation. Immunohistochemical localization of smooth muscle alpha actin, another biomarker for smooth muscle cell differentiation, showed fewer cavernous smooth muscle cells in DES-treated animals than in controls. Additionally, DES treatment significantly up-regulated Esr1 mRNA expression and suppressed the neonatal testosterone surge by 90%, which was mitigated by ICI coadministration but not by DHT coadministration. Collectively, results provided evidence that DES treatment in neonatal rats inhibited cavernous smooth muscle cell differentiation, as shown by down-regulation of MYH11 expression at the mRNA and protein levels and by reduced immunohistochemical staining of smooth muscle alpha actin. Both the ESR and the AR pathways probably mediate this effect."	"Incomplete segregation of MYH11 variants with thoracic aortic aneurysms and dissections and patent ductus arteriosus. Thoracic aortic aneurysms and dissections (TAAD) is a serious condition with high morbidity and mortality. It is estimated that 20% of non-syndromic TAAD cases are inherited in an autosomal-dominant pattern with variable expression and reduced penetrance. Mutations in myosin heavy chain 11 (MYH11), one of several identified TAAD genes, were shown to simultaneously cause TAAD and patent ductus arteriosus (PDA). We identified two large Dutch families with TAAD/PDA and detected two different novel heterozygote MYH11 variants in the probands. These variants, a heterozygote missense variant and a heterozygote in-frame deletion, were predicted to have damaging effects on protein structure and function. However, these novel alterations did not segregate with the TAAD/PDA in 3 out of 11 cases in family TAAD01 and in 2 out of 6 cases of family TAAD02. No mutation was detected in other known TAAD genes. Thus, it is expected that within these families other genetic factors contribute to the disease either by themselves or by interacting with the MYH11 variants. Such an oligogenic model for TAAD would explain the variable onset and progression of the disorder and its reduced penetrance in general. We conclude that in familial TAAD/PDA with an MYH11 variant in the index case caution should be exercised upon counseling family members. Specialized surveillance should still be offered to the non-carriers to prevent catastrophic aortic dissections or ruptures. Furthermore, our study underscores that segregation analysis remains very important in clinical genetics. Prediction programs and mutation evaluation algorithms need to be interpreted with caution."	"Comparative analysis of different approaches to measure treatment response in acute myeloid leukemia. In acute myeloid leukemia (AML), initial treatment response by morphologic analysis of bone marrow predicts long-term outcome. Response can now be assessed by minimal residual disease (MRD) monitoring with flow cytometry or polymerase chain reaction (PCR). We determined the relation among the results of these approaches and their prognostic value. In the multicenter AML02 study, follow-up bone marrow samples from 203 children and adolescents with newly diagnosed AML were examined by flow cytometry (n = 1,514), morphology (n = 1,382), and PCR amplification of fusion transcripts (n = 508). Results were correlated with treatment outcome. Among 1,215 samples with less than 5% leukemic myeloblasts by morphology, 100 (8.2%) were MRD positive (≥ 0.1%) by flow cytometry, whereas 96 (57.5%) of the 167 samples with ≥ 5% blasts were MRD negative. Virtually all (308 of 311; 99.0%) MRD-negative samples by PCR were also MRD negative by flow cytometry. However, only 19 (9.6%) of the 197 PCR-positive samples were flow cytometry positive, with analyses of AML1-ETO and CBFβ-MYH11 accounting for most discrepancies, whereas eight of 13 MLL-positive samples had detectable MRD by flow cytometry. MRD by flow cytometry after induction 1 or 2 predicted lower event-free survival and higher relapse rate (P &lt; .001) and was an independent prognostic factor in a multivariable analysis; prediction was not improved by morphologic information or molecular findings. In childhood AML, morphologic assessment of treatment response has limited value if MRD is measured by flow cytometry. MLL fusion transcripts can provide prognostic information in some patients, whereas monitoring of AML1-ETO and CBFβ-MYH11 transcripts is largely uninformative."	"Minimal screening analysis based algorithm for diagnosis and clinical stratification of patients with acute myeloid leukaemia (AML): single centre experience. In this paper we present our results from a study designed in order to establish and standardize a diagnostic algorithm for acute myeloid leukaemia (AML) in the Republic of Macedonia. A total of 146 consecutive adult patients (&gt;15 years) were enrolled in the study. First, we determined the correct lineage assignment of the blast cells and evaluated the incidence of the favourable PML/RARα, AML1/ETO, CBFβ/MYH11 genetic markers among the AML cases. Additionally, the obtained results were correlated with patients' age, comorbidities, and performance status, and each single AML patient was stratified to effective treatment strategy. Our results showed that morphology and cytochemistry established a lineage in 132 (89.1%) of the patients, but not in 16 cases that presented as acute leukaemia, of which 7 were assigned as myeloid, and in two a non-haematopoietic malignancy was indicated with immunophenotyping. Mulitparameter flow cytometry immunophenotyping also changed the assigned lineage based on morphology and cytochemistry in 5 (3.3%) of the patients from lymphoid to myeloid and improved diagnosis in 21 (14.1%) cases. By using a reverse transcriptase-polymerase chain reaction (RT-PCR) essay 28 (23.1%) patients were classified in the prognostically favourable AML genetic group; 8 patients expressed the fusion transcript PML/RARα AML1/ETO and 15 CBFβ/MYH11. Moreover, analyses of the age, performance status and comorbidities further strtified an additional 12.5% of the patients to a different risk-adapted therapy. The applied minimal screening-analysis-based diagnostic algorithm enabled improved and more precise diagnosis and clinical stratification in 37.2 % of AML patients from our study group."	"A novel hierarchical prognostic model of AML solely based on molecular mutations. The karyotype is so far the most important prognostic parameter in acute myeloid leukemia (AML). Molecular mutations have been analyzed to subdivide AML with normal karyotype into prognostic subsets. The aim of this study was to develop a prognostic model for the entire AML cohort solely based on molecular markers. One thousand patients with cytogenetic data were investigated for the following molecular alterations: PML-RARA, RUNX1-RUNX1T1, CBFB-MYH11, FLT3-ITD, and MLL-PTD, as well as mutations in NPM1, CEPBA, RUNX1, ASXL1, and TP53. Clinical data were available in 841 patients. Based on Cox regression and Kaplan-Meier analyses, 5 distinct prognostic subgroups were identified: (1) very favorable: PML-RARA rearrangement (n = 29) or CEPBA double mutations (n = 42; overall survival [OS] at 3 years: 82.9%); (2) favorable: RUNX1-RUNX1T1 (n = 35), CBFB-MYH11 (n = 31), or NPM1 mutation without FLT3-ITD (n = 186; OS at 3 years: 62.6%); (3) intermediate: none of the mutations leading to assignment into groups 1, 2, 4, or 5 (n = 235; OS at 3 years: 44.2%); (4) unfavorable: MLL-PTD and/or RUNX1 mutation and/or ASXL1 mutation (n = 203; OS at 3 years: 21.9%); and (5) very unfavorable: TP53 mutation (n = 80; OS at 3 years: 0%; P &lt; .001). This comprehensive molecular characterization provides a more powerful model for prognostication than cytogenetics."	"Identification of benzodiazepine Ro5-3335 as an inhibitor of CBF leukemia through quantitative high throughput screen against RUNX1-CBFβ interaction. Core binding factor (CBF) leukemias, those with translocations or inversions that affect transcription factor genes RUNX1 or CBFB, account for ~24% of adult acute myeloid leukemia (AML) and 25% of pediatric acute lymphocytic leukemia (ALL). Current treatments for CBF leukemias are associated with significant morbidity and mortality, with a 5-y survival rate of ~50%. We hypothesize that the interaction between RUNX1 and CBFβ is critical for CBF leukemia and can be targeted for drug development. We developed high-throughput AlphaScreen and time-resolved fluorescence resonance energy transfer (TR-FRET) methods to quantify the RUNX1-CBFβ interaction and screen a library collection of 243,398 compounds. Ro5-3335, a benzodiazepine identified from the screen, was able to interact with RUNX1 and CBFβ directly, repress RUNX1/CBFB-dependent transactivation in reporter assays, and repress runx1-dependent hematopoiesis in zebrafish embryos. Ro5-3335 preferentially killed human CBF leukemia cell lines, rescued preleukemic phenotype in a RUNX1-ETO transgenic zebrafish, and reduced leukemia burden in a mouse CBFB-MYH11 leukemia model. Our data thus confirmed that RUNX1-CBFβ interaction can be targeted for leukemia treatment and we have identified a promising lead compound for this purpose."	"Combination of cytogenetic analysis and molecular screening in patients with de novo acute myeloid leukemia. Nowadays the role of genetic findings in determining the diagnosis, therapy and prognosis of acute myeloid leukemia (AML) has become more valuable. To improve and validate the detection of clonal chromosomal aberrations in leukemia, we designed a combined application of karyotyping with multiplex reverse transcription-polymerase chain reaction (RT-PCR) and fluorescence in situ hybridization (FISH), and addressed the expression and distribution of fusion genes among the subtypes of Chinese adult patients with de novo AML. Multiplex RT-PCR assays were performed on 477 samples from newly diagnosed AML patients, and cytogenetic data were obtained from 373 of them by R or G banding techniques and those in some cases were confirmed by FISH. The PCR products in some suspected cases were tested by two-directional sequencing. The results showed that except unqualified samples, fusion genes were detected by multiplex RT-PCR in 211 of 474 patients (44.51%), including AML1-ETO, CBFβ-MYH11, PML-RARα, PLZF-RARα, NPM-RARα, MLL rearrangements, BCR-ABL, DEK-CAN, SET-CAN, TEL-PDGFR, TLS-ERG, AML1-MDS1 (EVI-1). In 373 patients, who took both multiplex RT-PCR and karyotype analysis, the detection rate of chromosomal aberrations by using multiplex RT-PCR and karyotyping was 160/373 (42.89%) and 179/373 (47.98%) respectively, and the combination could optimize the detection rate of clonal genetic abnormalities to 216/373 (57.90%). The PCR results from 11 cases &quot;normal&quot; in karyotyping but abnormal in RT-PCR for MLL rearrangements were confirmed by two-directional sequencing. It is concluded that karyotype studies remain the cornerstone for genetic testing; conventional cytogenetics and molecular-based methods are complementary tests for the detection of clonal genetic aberrations in AML, especially for the cryptic or submicroscopic aberrations. Once a genetic marker has been identified by combined analysis, it could be used to monitor residual disease during/after chemotherapy, by quantitative RT-PCR and/or FISH."	"Minimal residual disease monitoring by quantitative RT-PCR in core binding factor AML allows risk stratification and predicts relapse: results of the United Kingdom MRC AML-15 trial. The clinical value of serial minimal residual disease (MRD) monitoring in core binding factor (CBF) acute myeloid leukemia (AML) by quantitative RT-PCR was prospectively assessed in 278 patients [163 with t(8;21) and 115 with inv(16)] entered in the United Kingdom MRC AML 15 trial. CBF transcripts were normalized to 10(5) ABL copies. At remission, after course 1 induction chemotherapy, a &gt; 3 log reduction in RUNX1-RUNX1T1 transcripts in BM in t(8;21) patients and a &gt; 10 CBFB-MYH11 copy number in peripheral blood (PB) in inv(16) patients were the most useful prognostic variables for relapse risk on multivariate analysis. MRD levels after consolidation (course 3) were also informative. During follow-up, cut-off MRD thresholds in BM and PB associated with a 100% relapse rate were identified: for t(8;21) patients BM &gt; 500 copies, PB &gt; 100 copies; for inv(16) patients, BM &gt; 50 copies and PB &gt; 10 copies. Rising MRD levels on serial monitoring accurately predicted hematologic relapse. During follow-up, PB sampling was equally informative as BM for MRD detection. We conclude that MRD monitoring by quantitative RT-PCR at specific time points in CBF AML allows identification of patients at high risk of relapse and could now be incorporated in clinical trials to evaluate the role of risk directed/preemptive therapy."	"Involvement of a common progenitor cell in core binding factor acute myeloid leukaemia associated with mastocytosis. In core binding factor (CBF) acute myeloid leukaemia (AML), realtime quantitative PCR is useful to quantify the fusion transcript ratio (CBFβ-MYH11 and AML1-ETO, in case of inv(16) and t(8;21) respectively) in peripheral blood and bone marrow during the courses of chemotherapy, in order to monitor minimal residual disease (MRD). In two cases of CBF AML associated with systemic mastocytosis (SM), the persistence of mast cells and the detection of a high ratio of fusion transcript, in bone marrow, during the courses of chemotherapy, led us to determine whether the mast cell component of the disease carried the same molecular alterations as leukaemic blasts. We demonstrate that sorted mast cells carried CBF abnormality. These observations point out the lack of specificity of MRD monitoring by RQ-PCR in these exceptional AML cases with SM. Moreover, this suggests that leukaemic blasts and mast cells derive from a common malignant progenitor."	"Incidence of Common Fusion Transcripts in Adult and Pediatric Acute Myeloid Leukemia (AML) Cases: Experience of a Tertiary Care Research institute. The incidence of common fusion transcripts in AML is 40-45%, but data from Indian sub-continent is limited. AIMS #ENTITYSTARTX00026; The aim of the present study is to note the incidence of common fusion transcripts of AML1-ETO, PML-RARA and CBFβ-MYH11 in adult and pediatric AML cases. MATERIALS #ENTITYSTARTX00026; A total of 116 AML cases diagnosed on bone marrow, cytochemistry and Flow-cytometry over a period of 2 year were enrolled and bone marrow samples in EDTA were processed by multiplex RT-PCR assay. Of 116 cases, 96 (83%) were adult and 20 (17%) pediatric cases. A total of 39/116 (33.6%) cases showed positivity for fusion transcripts of which 28/96 (29.16%) were adult and 11/20 (55%) pediatric cases. Of the 28 positive adult cases, 14/96 (14.58%) were positive for AML1-ETO, 12/96 (12.5%) for PML-RARA and 2/96 (2.08%) for CBFβ-MYH11. In the 11 positive pediatric cases, 6/20 (30%) were positive for AML1-ETO, 3/20 (15%) for PML-RARA and 2/20 (10%) for CBFβ-MYH11. DISCUSSION #ENTITYSTARTX00026; The incidence of the common fusion transcripts in our pilot study is in accordance with that described in western studies. It is important to identify these transcripts as they provide useful prognostic information to the treating clinician."	"Rare, nonsynonymous variant in the smooth muscle-specific isoform of myosin heavy chain, MYH11, R247C, alters force generation in the aorta and phenotype of smooth muscle cells. Mutations in myosin heavy chain (MYH11) cause autosomal dominant inheritance of thoracic aortic aneurysms and dissections. At the same time, rare, nonsynonymous variants in MYH11 that are predicted to disrupt protein function but do not cause inherited aortic disease are common in the general population and the vascular disease risk associated with these variants is unknown. To determine the consequences of the recurrent MYH11 rare variant, R247C, through functional studies in vitro and analysis of a knock-in mouse model with this specific variant, including assessment of aortic contraction, response to vascular injury, and phenotype of primary aortic smooth muscle cells (SMCs). The steady state ATPase activity (actin-activated) and the rates of phosphate and ADP release were lower for the R247C mutant myosin than for the wild-type, as was the rate of actin filament sliding in an in vitro motility assay. Myh11(R247C/R247C) mice exhibited normal growth, reproduction, and aortic histology but decreased aortic contraction. In response to vascular injury, Myh11(R247C/R247C) mice showed significantly increased neointimal formation due to increased SMC proliferation when compared with the wild-type mice. Primary aortic SMCs explanted from the Myh11(R247C/R247C) mice were dedifferentiated compared with wild-type SMCs based on increased proliferation and reduced expression of SMC contractile proteins. The mutant SMCs also displayed altered focal adhesions and decreased Rho activation, associated with decreased nuclear localization of myocardin-related transcription factor-A. Exposure of the Myh11(R247C/R247C) SMCs to a Rho activator rescued the dedifferentiated phenotype of the SMCs. These results indicate that a rare variant in MYH11, R247C, alters myosin contractile function and SMC phenotype, leading to increased proliferation in vitro and in response to vascular injury."	"[Additional chromosomal abnormality of inv(16)(p13q22) to del(7)(q32) in a patient with acute myelomonocytic leukemia]. We report a 54-year-old man with acute myeloid leukemia (AML) carrying del(7)(q32) and inv(16)(p13q22). He was diagnosed as having AML M4Eo according to the FAB classification. RT-PCR for CBFβ/MYH11 gene was positive. Karyotype analysis revealed the primary chromosomal abnormality to be del(7)(q32) and inv(16)(p13q22) developed as a secondary abnormality. He achieved complete remission after one course of induction chemotherapy and remained in remission after several courses of consolidation therapy. del(7q) is classified into an intermediate risk group or an adverse risk group, while inv(16)/t(16;16) is classified into a favorable risk group. Some AML cases with inv(16)/t(16;16) exhibit del(7q) as an additional chromosomal abnormality. It was reported that such cases showed good prognosis despite the presence of del(7q). However, AML cases with del(7q) and inv(16)/t(16;16) as secondary chromosomal abnormalities are rare. Further study is needed to clarify the clinical manifestations of such cases."	"Genetics of thoracic aortic aneurysms. Understanding of the genetics of thoracic aortic aneurysm is increasing rapidly, due to discovery of novel genes, better definition of the phenotypes associated with mutations in a given gene and better understanding of the pathophysiology. Beyond Marfan syndrome, usually related to mutation in FBN1, mutations have been reported in TGFBR1, TGFBR2, ACTA2, MYH11, and SMAD3. All are transmitted as dominant autosomal traits. The importance of genetics in patients with bicuspid aortic valve and non-syndromic thoracic aortic aneurysm is also increasingly recognized. The following is a review of the phenotypes associated with the different mutations and the clinical consequences of this recent information."	"Genetics of patent ductus arteriosus susceptibility and treatment. The ductus arteriosus is a vital fetal structure designed to close shortly after birth. Although many physiologic and pharmacologic investigations have characterized the closure of this structure, genetic studies of persistent patency of the ductus arteriosus (patent ductus arteriosus, PDA) are relatively recent. Progress in the identification of specific genes associated with PDA is well behind that of many adult-onset diseases because of several reasons ranging from the lack of large biorepositories for this unique population to the belief that any genetic contribution to PDA is minimal. Viewing the PDA as a complex, developmentally influenced disease with both genetic and environmental risk factors has resulted in initial successes in some genetic studies. We will introduce several genetic approaches, which have been or are currently being applied to the study of PDA, that have been successful in identifying polymorphisms associated with adult diseases. Genetic investigations of PDA will be discussed with respect to heritability, in general, and to specific risk genes. Several animal models that have been used to study PDA-related genes will also be presented. Further advances in discovering genetic variation causing PDA will drive the more rational use of current therapies, and may help identify currently unknown targets for future therapeutic manipulation."	"Generation of human vascular smooth muscle subtypes provides insight into embryological origin-dependent disease susceptibility. Heterogeneity of embryological origins is a hallmark of vascular smooth muscle cells (SMCs) and may influence the development of vascular disease. Differentiation of human pluripotent stem cells (hPSCs) into developmental origin-specific SMC subtypes remains elusive. Here we describe a chemically defined protocol in which hPSCs were initially induced to form neuroectoderm, lateral plate mesoderm or paraxial mesoderm. These intermediate populations were further differentiated toward SMCs (&gt;80% MYH11(+) and ACTA2(+)), which displayed contractile ability in response to vasoconstrictors and invested perivascular regions in vivo. Derived SMC subtypes recapitulated the unique proliferative and secretory responses to cytokines previously documented in studies using aortic SMCs of distinct origins. Notably, this system predicted increased extracellular matrix degradation by SMCs derived from lateral plate mesoderm, which was confirmed using rat aortic SMCs from corresponding origins. This differentiation approach will have broad applications in modeling origin-dependent disease susceptibility and in developing bioengineered vascular grafts for regenerative medicine."	"The role of notch 1 activation in cardiosphere derived cell differentiation. Cardiosphere derived cells (CDC) are present in the human heart and include heterogeneous cell populations of cardiac progenitor cells, multipotent progenitors that play critical roles in the physiological and pathological turnover of heart tissue. Little is known about the molecular pathways that control the differentiation of CDC. In this study, we examined the role of Notch 1/J kappa-recombining binding protein (RBPJ) signaling, a critical cell-fate decision pathway, in CDC differentiation. We isolated CDC from mouse cardiospheres and analyzed the differentiation of transduced cells expressing the Notch1 intracellular domain (N1-ICD), the active form of Notch1, using a terminal differentiation marker polymerase chain reaction (PCR) array. We found that Notch1 primarily supported the differentiation of CDC into smooth muscle cells (SMC), as demonstrated by the upreguation of key SMC proteins, including smooth muscle myosin heavy chain (Myh11) and SM22α (Tagln), in N1-ICD expressing CDC. Conversely, genetic ablation of RBPJ in CDC diminished the expression of SMC differentiation markers, confirming that SMC differentiation CDC is dependent on RBPJ. Finally, in vivo experiments demonstrate enhanced numbers of smooth muscle actin-expressing implanted cells after an injection of N1-ICD-expressing CDC into ischemic myocardium (44±8/high power field (hpf) vs. 11±4/high power field (hpf), n=7 sections, P&lt;0.05). Taken together, these results provide strong evidence that Notch1 promotes SMC differentiation of CDC through an RBPJ-dependent signaling pathway in vitro, which may have important implications for progenitor cell-mediated angiogenesis."	"Characteristics of translocation (16;16)(p13;q22) acute myeloid leukemia. A subgroup of patients with core binding factor acute myeloid leukemias (AML) is characterized by the presence of the fusion gene CBFb-Myh11. At the cytogenetic level, most of these patients are identified by the presence of an inversion of chromosome 16 [inv(16)(p13q22)] and rarely by a translocation t(16;16)(p13;q22). The aim of this study is to describe the natural history of patients with t(16;16) [N = 6] treated at MD Anderson Cancer Center and compared them with a cohort of patients with inv(16)(p13q22) [n = 61]. In patients with t(16;16) the complete remission rate (CR) was 100% when treated with a combination of fludarabine and high-dose cytarabine. Median overall survival (OS) had not been achieved. There was no difference in response or OS or progression free survival between both groups. Presence of additional chromosomal abnormalities and molecular aberrations had no effect on prognosis. In conclusion, and consistent with previous reports, the natural history of patients with t(16:16)(p13;q22) is similar to that of classic patients with inv16 AML and therefore should be treated similarly."	"[Relationship between RAD51-g135C and XRCC3-C241T polymorphisms and prognosis of inv (16)/ t(16;16) (CBFbeta-MYH11) acute myeloid leukemia]. To investigate the impact of polymorphisms of DNA homologous recombination (HR) repair genes RAD51-G135C and XRCC3-C241T on the prognosis of acute myeloid leukemia (AML) with inv(16)/t(16;16)(CBFbeta-MYH1). One hundred and three de novo inv(16)/t(16;16) (CBFbeta-MYH11) AML patients were followed-up and retrospectively analyzed. Polymorphisms of RAD51-G135C and XRCC3-C241T were detected by PCR-RFLP. The prognostic factors,including sex, age, white blood cell count, platelet count, hemoglobin level, karyotype, KIT mutation, RAD51-G135C and XRCC3-C241T polymorphisms at diagnosis, for complete remission (CR) achievement, overall survival (OS) and relapse-free survival (RFS) were analyzed by univariate and multivariate analyses. The median follow-up of all patients was 28 (1 - 106) months. The overall CR rate was 92.2%. The estimated 5-year OS and RFS rates were 43.6% (95% CI 37.7% - 49.5%) and 26.4% (95% CI 21.1% - 31.7%), and the median OS and RFS were 53 (95% CI 133.4 - 72.7) and 27 (95% CI 22.9 - 31.1) months, respectively. In multivariate analysis, higher WBC (P = 0.004) and older than 30 years of age (P = 0.035) were independent poor factors for CR achievement, the XRCC3-241T variant (P = 0.007) and higher WBC (P = 0.009) were independent poor factors for 5-year RFS, and higher WBC (P = 0.002) and trisomy 8 (P = 0.035) were independent poor factors for 5-year survival. Polymorphism of RAD51-G135C had no significant impact on the prognosis. The XRCC3-241T variant is an independent poor prognostic factor for AML with inv(16)/t(16;16)/CBFbeta-MYH11."	"Prognostic value of monosomal karyotype in comparison to complex aberrant karyotype in acute myeloid leukemia: a study on 824 cases with aberrant karyotype. In acute myeloid leukemia (AML) the subset with complex karyotype (CK) is traditionally regarded as the worst prognostic group. However, ≥ 3, ≥ 4, or ≥ 5 abnormalities have been variably used for its definition. Recently, monosomal karyotype (MSK) was suggested to indicate an even inferior outcome. We tested which definition fits best to identify the most unfavorable subgroup. After excluding patients with t(15;17)/PML-RARA, t(8;21)/RUNX1-RUNX1T1, inv (16)/t(16;16)/CBFB-MYH11, and normal karyotype, 824 patients with AML with cytogenetic abnormalities were analyzed. Patients with MSK or CK defined as ≥ 3, ≥ 4, or ≥ 5 abnormalities showed an inferior overall survival compared with the respective remaining patients not fulfilling these criteria (for all, P &lt; .001). Hazard ratios were 1.93, 1.68, 1.94, and 1.92. CK ≥ 4 as a single parameter identified the largest proportion of patients with very poor risk. However, combining CK ≥ 4 and MSK detected an even larger number of patients with very unfavorable outcome (261 of 824; 31.7%)."	"Comparison between multiparameter flow cytometry and WT1-RNA quantification in monitoring minimal residual disease in acute myeloid leukemia without specific molecular targets. Despite a high remission rate, a significant number of patients with acute myeloid leukemia (AML) relapse. Thus, the evaluation of minimal residual disease (MRD) in AML is an important strategy to better identify high risk patients. Most sensitive methodology to detect MRD is molecular polymerase chain reaction (PCR) but its applicability is restricted to AML with leukemia-specific molecular targets (e.g. AML1-ETO, CBFB-MYH11, MLL, FLT-3). In our study, MRD was monitored at different time points with both MFC and WT1-RNA quantification in 23 AML patients who did not present specific molecular targets. As previously published, we considered values of 10(-3) (0.1%) in MFC and 90 WT1-RNA × 10(4) ABL copies as optimal thresholds. Receiver operating characteristics (ROC) analysis was used to confirm these data. To realize the methodology that better identify high risk patients, an analysis of sensitivity, specificity, predictive values (PV) and likelihood ratio (LR) was provided and similar results were showed. MRD levels ≥ 10(-3) in MFC as well MRD levels ≥ 90 WT1-RNA copies in RQ-PCR, identify risk groups of patients with poor prognosis. Therefore, MFC and WT1-RNA quantification showed a comparable capacity in terms of technical performance and clinical significance to identify high risk patients who eventually relapsed."	"[Fluorescence in situ hybridization study of acute myeloid leukemia with cryptic chromosome rearrangements]. To detect specific chromosome rearrangements in acute myeloid leukemia (AML) using interphase-fluorescence in situ hybridization (FISH). All cases were studied by R-band karyotypic analysis using direct method and/or short-term culture for chromosomes preparation. Interphase-FISH was performed in 108 cases of AML with M5, M4, M2, M3 subtypes including 103 cases with normal karyotypes, 4 cases with chromosomal abnormalities other than specific chromosomal rearrangements using chromosome translocation probe such as AML1/ETO, PML/RARα, CBFβ/MYH11 and MLL. Of 38 cases of M2-AML without t(8;21) on conventional cytogenetics(CC) analysis, 4 cases showed positivity for AML1/ETO fusion transcript, which included 2 cases with typical signal model and 2 with insertion. Of 9 cases of M3-AML without t(15;17) on CC analysis, 6 showed positivity for PML/RARα fusion transcript including 2 with typical signal model, 3 with insertion, one without PML/RARα rearrangement on reverse transcription-PCR and FISH assay using PML/RARα probe. FISH assay using the RARα dual color, break-apart rearrangement probe indicated a partial deletion of RARα. Of 23 cases with M4 or M4EO-AML without inv(16) on CC analysis, 3 showed positivity for CBFβ/MYH11 fusion transcript. Of 38 cases without 11q23 translocation on CC analysis, all cases were negative for MLL rearrangement. Interphase-FISH can detect specific chromosome rearrangements such as AML1/ETO, PML/RARα or CBFβ/MYH11 in some AML cases with normal karyotype, though it seemed less useful for the detection of MLL rearrangement."	"KIT with D816 mutations cooperates with CBFB-MYH11 for leukemogenesis in mice. KIT mutations are the most common secondary mutations in inv(16) acute myeloid leukemia (AML) patients and are associated with poor prognosis. It is therefore important to verify that KIT mutations cooperate with CBFB-MYH11, the fusion gene generated by inv(16), for leukemogenesis. Here, we transduced wild-type and conditional Cbfb-MYH11 knockin (KI) mouse bone marrow (BM) cells with KIT D816V/Y mutations. KIT transduction caused massive BM Lin(-) cell death and fewer colonies in culture that were less severe in the KI cells. D816Y KIT but not wild-type KIT enhanced proliferation in Lin(-) cells and led to more mixed lineage colonies from transduced KI BM cells. Importantly, 60% and 80% of mice transplanted with KI BM cells expressing D816V or D816Y KIT, respectively, died from leukemia within 9 months, whereas no control mice died. Results from limiting dilution transplantations indicate higher frequencies of leukemia-initiating cells in the leukemia expressing mutated KIT. Signaling pathway analysis revealed that p44/42 MAPK and Stat3, but not AKT and Stat5, were strongly phosphorylated in the leukemia cells. Finally, leukemia cells carrying KIT D816 mutations were sensitive to the kinase inhibitor PKC412. Our data provide clear evidence for cooperation between mutated KIT and CBFB-MYH11 during leukemogenesis."	"Systemic mastocytosis is uncommon in KIT D816V mutation positive core-binding factor acute myeloid leukemia. The KIT D816V mutation is detected in the vast majority of adult cases of systemic mastocytosis (SM). The mutation is also frequently detected in core-binding factor acute myeloid leukemia (CBF AML) defined by the presence of t(8;21)(q22;q22); RUNX1-RUNX1T1 or inv(16)(p13.1;q22)/t(16;16)(p13.1;q22); CBFB-MYH11 chromosomal rearrangements, but whether the mutation is indicative of associated SM is unclear. In the present study, patients with CBF AML were therefore analyzed for the KIT D816V mutation and mutation positive cases subsequently analyzed for the presence of SM. The KIT D816V mutation was detected in eight of 20 cases of CBF AML, with the frequency in t(8;21)(q22;q22) and inv(16)(p13.1;q22) positive cases being 31% and 57%, respectively. The fraction of KIT D816V mutation positive cells was highly variable among the eight mutation positive patients, with levels ranging from 0.04 to 98% in a pretreatment blood sample. Five of the eight cases carried the mutation in a cell fraction below one-tenth of the blast cell fraction, thus suggesting that KIT mutation is often a late event in leukemogenesis. None of the eight KIT D816V mutation positive cases fulfilled the World Health Organization diagnostic criteria of SM. The presence of the KIT D816V mutation in the CBF AML subgroup can therefore not be considered indicative of associated SM."	"Personalized oncology through integrative high-throughput sequencing: a pilot study. Individual cancers harbor a set of genetic aberrations that can be informative for identifying rational therapies currently available or in clinical trials. We implemented a pilot study to explore the practical challenges of applying high-throughput sequencing in clinical oncology. We enrolled patients with advanced or refractory cancer who were eligible for clinical trials. For each patient, we performed whole-genome sequencing of the tumor, targeted whole-exome sequencing of tumor and normal DNA, and transcriptome sequencing (RNA-Seq) of the tumor to identify potentially informative mutations in a clinically relevant time frame of 3 to 4 weeks. With this approach, we detected several classes of cancer mutations including structural rearrangements, copy number alterations, point mutations, and gene expression alterations. A multidisciplinary Sequencing Tumor Board (STB) deliberated on the clinical interpretation of the sequencing results obtained. We tested our sequencing strategy on human prostate cancer xenografts. Next, we enrolled two patients into the clinical protocol and were able to review the results at our STB within 24 days of biopsy. The first patient had metastatic colorectal cancer in which we identified somatic point mutations in NRAS, TP53, AURKA, FAS, and MYH11, plus amplification and overexpression of cyclin-dependent kinase 8 (CDK8). The second patient had malignant melanoma, in which we identified a somatic point mutation in HRAS and a structural rearrangement affecting CDKN2C. The STB identified the CDK8 amplification and Ras mutation as providing a rationale for clinical trials with CDK inhibitors or MEK (mitogen-activated or extracellular signal-regulated protein kinase kinase) and PI3K (phosphatidylinositol 3-kinase) inhibitors, respectively. Integrative high-throughput sequencing of patients with advanced cancer generates a comprehensive, individual mutational landscape to facilitate biomarker-driven clinical trials in oncology."	"[Clinical value of interphase fluorescent in situ hybridization in diagnosis of core-binding factor acute myelocytic leukemia]. The purpose of this study was to evaluate the clinical value of interphase fluorescence in situ hybridization (I-FISH) in diagnosis of core-binding factor acute myelocytic leukemia (CBF AML). The cytogenetic characteristics in leukemia cells from 82 cases of AML-M(2) and 43 cases of AML-M(4)/M(5) were detected by using I-FISH with AML1-ETO double color double fusion probe and double color break point isolated gene probe CBFβ-MYH11, and the detected results were compared with results detected by conventional cytogenetic R banding technique (CC). The results indicated that AML1-ETO fusion gene was detected in 30.5% cases (25/82) by FISH, and t(8;21)(q22;q22) karyotypic aberrations was found in 28.0% cases (23/82) by CC method. Among 25 FISH positive cases, typical FISH positive signal pattern (1R1G2F) was displayed in 22 cases and atypical signal pattern (1R2G1F and 2R1G2F) was found in the other 3 cases. Among all 43 AML-M(4)/M(5) cases, the CBFβ-MYH11 fusion gene was detected in 23.3% cases (10/43) by FISH, which sensitivity was significant higher than that by CC method (2/43) (p &lt; 0.05). It is concluded that some insufficiency of CC technique can be compensated by FISH, and combination of I-FISH with CC technique play a crucial role in diagnosis of CBF AML and in monitoring of minimal residual disease."	"Core-binding factor acute myeloid leukemia. Core-binding factor acute myeloid leukemia (AML) is cytogenetically defined by the presence of t(8;21)(q22;q22) or inv(16)(p13q22)/t(16;16)(p13;q22), commonly abbreviated as t(8;21) and inv(16), respectively. In both subtypes, the cytogenetic rearrangements disrupt genes that encode subunits of core-binding factor, a transcription factor that functions as an essential regulator of normal hematopoiesis. The rearrangements t(8;21) and inv(16) involve the RUNX1/RUNX1T1 ( AML1-ETO ) and CBFB/MYH11 genes, respectively. These 2 subtypes are categorized as AML with recurrent genetic abnormalities, and hence the cytogenetic fusion transcripts are considered diagnostic of acute leukemia even when the marrow blast count is less than 20%. The t(8;21) and inv(16) subtypes of AML have been usually grouped and reported together in clinical studies; however, recent studies have demonstrated genetic, clinical, and prognostic differences, supporting the notion that they represent 2 distinct biologic and clinical entities. This review summarizes the spectrum of this subset of AMLs, with particular emphasis on molecular genetics and pathologic findings."	"Rapid detection of gene mutations responsible for non-syndromic aortic aneurysm and dissection using two different methods: resequencing microarray technology and next-generation sequencing. Aortic aneurysm and/or dissection (AAD) is a life-threatening condition, and several syndromes are known to be related to AAD. In this study, two new technologies, resequencing array technology (ResAT) and next-generation sequencing (NGS), were used to analyze eight genes associated with syndromic AAD in 70 patients with non-syndromic AAD. Eighteen sequence variants were detected using both ResAT and NGS. In addition one of these sequence variants was detected by ResAT only and two additional variants by NGS only. Three of the 18 variants are likely to be pathogenic (in 4.3% of AAD patients and in 8.6% of a subset of patients with thoracic AAD), highlighting the importance of genetic analysis in non-syndromic AAD. ResAT and NGS similarly detected most, but not all, of the variants. Resequencing array technology was a rapid and efficient method for detecting most nucleotide substitutions, but was unable to detect short insertions/deletions, and it is impractical to update custom arrays frequently. Next-generation sequencing was able to detect almost all types of mutation, but requires improved informatics methods."	"Novel MYH11 and ACTA2 mutations reveal a role for enhanced TGFβ signaling in FTAAD. Thoracic aortic aneurysm/dissection (TAAD) is a common phenotype that may occur as an isolated manifestation or within the constellation of a defined syndrome. In contrast to syndromic TAAD, the elucidation of the genetic basis of isolated TAAD has only recently started. To date, defects have been found in genes encoding extracellular matrix proteins (fibrillin-1, FBN1; collagen type III alpha 1, COL3A1), proteins involved in transforming growth factor beta (TGFβ) signaling (TGFβ receptor 1 and 2, TGFBR1/2; and SMAD3) or proteins that build up the contractile apparatus of aortic smooth muscle cells (myosin heavy chain 11, MYH11; smooth muscle actin alpha 2, ACTA2; and MYLK). In 110 non-syndromic TAAD patients that previously tested negative for FBN1 or TGFBR1/2 mutations, we identified 7 ACTA2 mutations in a cohort of 43 familial TAAD patients, including 2 premature truncating mutations. Sequencing of MYH11 revealed an in frame splice-site alteration in one out of two probands with TAA(D) associated with PDA but none in the series of 22 probands from the cohort of 110 patients with non-syndromic TAAD. Interestingly, immunohistochemical staining of aortic biopsies of a patient and a family member with MYH11 and patients with ACTA2 missense mutations showed upregulation of the TGFβ signaling pathway. MYH11 mutations are rare and typically identified in patients with TAAD associated with PDA. ACTA2 mutations were identified in 16% of a cohort presenting familial TAAD. Different molecular defects in TAAD may account for a different pathogenic mechanism of enhanced TGFβ signaling."	"MicroRNAs in the regulation of interfacial behaviors of MSCs cultured on microgrooved surface pattern. Cell-substrate interaction is one of the most important aspects of tissue engineering. Changes of MSCs interfacial behaviors were found to be triggered by 10 μm wide grooved pattern on poly(3-hydroxybutyrate-co-3-hydroxyhexanoate) (PHBHHx). Global marker genes expression and miRNAs profiling analysis provided insights into the regulation network of the topography induced MSCs' cell responses including adhesion, proliferation, differentiation and apoptosis. Compared to MSCs cultured on the smooth substrates, MSCs incubated on microgrooved PHBHHx substrates showed increased expression of osteogenesis-related marker genes including cbfa1, col1a1 and bmp2, and decreased expression of vcl, vinculin encoding gene, adipogenesis-related genes including lpl, des and acta2, as well as myogenesis-related genes of myh11 and nse. The miRNA microarrays revealed that 18 differentially-expressed miRNAs on microgrooved pattern had multiple target genes, contributing comprehensively to the cellular regulation process. Similar to the topography-triggered ostegenenesis, co-transfection of the osteogenic miRNAs combination (miR-140, miR-214, miR-320, miR-351 and miR-674-5p) was able to stimulate the expression of osteogenic marker genes. This study elucidated the important roles of miRNAs in the regulation processes of the microenvironment triggered cell behaviors, and provided clues for the PHA biomedical materials development."	"Gene mutation patterns and their prognostic impact in a cohort of 1185 patients with acute myeloid leukemia. To evaluate the prognostic value of genetic mutations for acute myeloid leukemia (AML) patients, we examined the gene status for both fusion products such as AML1 (CBFα)-ETO, CBFβ-MYH11, PML-RARα, and MLL rearrangement as a result of chromosomal translocations and mutations in genes including FLT3, C-KIT, N-RAS, NPM1, CEBPA, WT1, ASXL1, DNMT3A, MLL, IDH1, IDH2, and TET2 in 1185 AML patients. Clinical analysis was mainly carried out among 605 cases without recognizable karyotype abnormalities except for 11q23. Of these 605 patients, 452 (74.7%) were found to have at least 1 mutation, and the relationship of gene mutations with clinical outcome was investigated. We revealed a correlation pattern among NPM1, DNMT3A, FLT3, IDH1, IDH2, CEBPA, and TET2 mutations. Multivariate analysis identified DNMT3A and MLL mutations as independent factors predicting inferior overall survival (OS) and event-free survival (EFS), whereas biallelic CEBPA mutations or NPM1 mutations without DNMT3A mutations conferred a better OS and EFS in both the whole group and among younger patients &lt; 60 years of age. The use of molecular markers allowed us to subdivide the series of 605 patients into distinct prognostic groups with potential clinical relevance."	"Blast-induced phenotypic switching in cerebral vasospasm. Vasospasm of the cerebrovasculature is a common manifestation of blast-induced traumatic brain injury (bTBI) reported among combat casualties in the conflicts in Afghanistan and Iraq. Cerebral vasospasm occurs more frequently, and with earlier onset, in bTBI patients than in patients with other TBI injury modes, such as blunt force trauma. Though vasospasm is usually associated with the presence of subarachnoid hemorrhage (SAH), SAH is not required for vasospasm in bTBI, which suggests that the unique mechanics of blast injury could potentiate vasospasm onset, accounting for the increased incidence. Here, using theoretical and in vitro models, we show that a single rapid mechanical insult can induce vascular hypercontractility and remodeling, indicative of vasospasm initiation. We employed high-velocity stretching of engineered arterial lamellae to simulate the mechanical forces of a blast pulse on the vasculature. An hour after a simulated blast, injured tissues displayed altered intracellular calcium dynamics leading to hypersensitivity to contractile stimulus with endothelin-1. One day after simulated blast, tissues exhibited blast force dependent prolonged hypercontraction and vascular smooth muscle phenotype switching, indicative of remodeling. These results suggest that an acute, blast-like injury is sufficient to induce a hypercontraction-induced genetic switch that potentiates vascular remodeling, and cerebral vasospasm, in bTBI patients."	"[Application of multiprobe fluorescence in situ hybridization panel in the diagnosis of acute myeloid leukemia]. To assess the value of multiprobe fluorescence in situ hybridization (FISH) panel in the diagnosis of acute myeloid leukemia (AML). The multiprobe AML/MDS panel comprising 8 different FISH probes for AML1/ETO transfusion gene, PML-RARα transfusion gene, CBFβ/MYH11 transfusion gene, MLL breakapart, P53 deletion, Del(5q), -7/Del(7q), and Del(20q) was tested in 40 cases of AML, and the results were compared with those by conventional cytogenetic G-banding (CCG) test. With multiprobe FISH panel, 22 of the 40 AML cases were found to carry 7 types of cytogenetic abnormalities, namely AML1/ETO transfusion gene, PML-RARα transfusion gene, MLL breakapart, P53 deletion, Del(5q), -7/Del(7q) and trisomy 8. The positive ratio of the multiprobe FISH was 57.5%. CCG only identified 8 cases with the corresponding cytogenetic abnormalities and 3 cases with other cytogenetic abnormalities, and the positive ratio was only 27.50%. Mutiprobe FISH panel is more rapid, accurate and effective than CCG in the diagnosis of AML."	"Inversion and deletion of 16q22 defined by array CGH, FISH, and RT-PCR in a patient with AML. Acute myelomonocytic leukemia with eosinophilia is commonly associated with pericentric inversions of chromosome 16, involving the core binding factor beta gene (CBFB) on 16q22 and the myosin heavy chain gene (MYH11) on 16p13. The inv(16)(p13q22) results in a fusion gene comprising the 5'CBFB gene and the 3'MYH11 gene on the short arm of chromosome 16. The fusion gene interferes with the normal transcription of the CBFA/CBFB heterodimer and disrupts myeloid differentiation. The inv(16) is associated with a good prognosis. The inv(16) with deletion of the 3'CBFB region of the gene is a very rare occurrence. Although the number of cases is small, inv(16) with a deleted 3'CBFB seems to be associated with a poorer prognosis than that generally associated with inv(16). Our patient was a 30-year-old man with newly diagnosed acute myeloid leukemia who was found to have a CBFB-MYH11 fusion by reverse transcriptase-polymerase chain reaction. The high blast count and lack of differentiation were not typical for this entity and suggested clonal progression. The initial karyotype by conventional cytogenetic analysis, in all metaphases examined, was 46,XY,del(7)(q32),del(16)(q22). Fluorescence in situ hybridization analysis with a dual-color, break-apart probe corresponding to the CBFB gene locus (Abbott, Des Plaines, IL) showed a derivative chromosome 16 resulting from an inversion of the CBFB gene with a deletion of the 3'CBFB probe region. Oligonucleotide array comparative genetic hybridization analysis was performed on this patient's diagnostic bone marrow DNA referenced to a normal male control DNA by using the DNAarray Heme Profile (CombiMatrix Diagnostics, Irvine, CA) microarray. This analysis showed a 1.2 Mb loss of 16q22.1, which did not include loss of the 3'CBFB gene locus, but rather sequences distal to this locus. The DNAarray Heme Profile results illustrate the importance of microarray in the correct identification of abnormalities that will affect prognosis."	"[Relationship between RAD51-G135C/XRCC3-C241T polymorphisms and development of acute myeloid leukemia with recurrent chromosome translocation]. To investigate the relationship between DNA homologous recombination (HR) repair genes RAD51-G135C/XRCC3-C241T polymorphisms and development of acute myeloid leukemia (AML) with recurrent chromosome translocation. Genomic DNA was extracted from bone marrow cells of 625 de novo AML patients and peripheral blood cells of 806 patient family members and 704 unrelated volunteers. Genotypes of RAD51-G135C and XRCC3-C241T were analyzed by PCR-RFLP. Cell lines with genotypes differed from XRCC3-C241T were selected and irradiated in vitro. The CBFβ-MYH11 fusion gene was detected by TaqMan real-time PCR. The XRCC3-C241T variant (C/T + T/T) showed 6.22-fold and 6.99-fold increase in the risk of developing the AML with inv(16)/t(16;16)/CBFβ-MYH11 as compared with the volunteer and family member controls respectively; the RAD51-G135C homozygote-type (C/C) variant showed 0.87-fold (P = 0.010) and 1.15-fold (P = 0.001) respectively increase in the risk of this subtype AML. In the irradiated group, the CBFβ-MYH11 mRNA level in HL-60 cells was 59.49 times increased than that in KG1a cells. However, the RAD51-G135C and XRCC3-C241T variants had no correlations with the risk of development of t(15;17)/PML-RARα(+)AML, t(8;21)/AML1-ETO(+) AML and 11q23 AML subtypes. The XRCC3-C241T variant and the RAD51-G135C homozygote-type significantly increase the risk of the development of AML with inv(16)/t(16;16)/CBFβ-MYH11."	"[Large sample clinical analysis of patients with children acute leukemia in single center]. In order to investigate the epidemiology of childhood acute leukemia (CAL), such as onset age and time, risk factor, subtypes distribution and genetics, 1236 CAL patients admitted in blood disease hospital of Chinese Academy of Medical Sciences for treatment from April 2004 to April 2010 were analyzed retrospectively. The results showed that the sex ratio of ALL and AML patients were 1.80:1 and 1.73:1 respectively; the average peak age of incidence lasted from 2 to 6 years with the median age of 6 years, while the ALL peak age of incidence lasted from 2 to 5 years but AML showed no significant peak age of incidence. Winter, especially January was the peak time for both onset and birth. Among all the 631 ALL patients who had already been immunophenotyped, B-ALL patients accounted for 83%, T-ALL patients accounted for 9%. Among 361 AML patients, sub-leukemia phenotype from M(0) to M(7) accounted for 0.3%, 2.2%, 29.8%, 20.9%, 8.1%, 25.2%, 4.1% and 4.6% respectively. Among 631 pediatric ALL patients who had been examined by using molecular biology technique, the positive rate of TEL/AML1, BCR/ABL, MLL and E2A/PBX1 were 23%, 7.4%, 4.1%, 2.1% respectively. Among 361 pediatric AML patients who had been examined by using molecular biology technique, 19% of the patients showed positive AML1/ETO fusion gene, 18% of the patients showed positive PML/RARα fusion gene, while 4.2% of patients showed positive CBFβ/MYH11. It is concluded that the onset of pediatric acute leukemia is influenced by age, season, environment and different genetic background."	"Unusually long survival of a 67-year-old patient with near-tetraploid acute myeloid leukemia m0 without erythroblastic and megakaryocytic dysplasia. Patients with near-tetraploid acute myeloid leukemia (NT-AML) typically have poor survival. We present the case of a 67-year-old Caucasian male with NT-AML M0 who had an unusually long first complete remission of 51 months and an overall survival of 80 months. The only characteristic distinguishing him from other previously described patients with NT-AML was the absence of erythroblastic and/or megakaryocytic dysplasia (EMD) at diagnosis. Molecular-genetic testing for AML fusion transcripts associated with a favorable prognosis (PML/RARα,AML1/ETO, and CBFβ/MYH11) were negative, as were other prognostic markers like MLL-PTD,FLT3-ITD, or mutations of FLT3-D835,NPM1, or CEBPA. Expression studies of ERG,MN1, and EVI1 revealed overexpression of ERG only. The absence of EMD may be a useful prognostic/diagnostic feature of this new rare subtype of NT-AML."	"Recurrent chromosome 16p13.1 duplications are a risk factor for aortic dissections. Chromosomal deletions or reciprocal duplications of the 16p13.1 region have been implicated in a variety of neuropsychiatric disorders such as autism, schizophrenia, epilepsies, and attention-deficit hyperactivity disorder (ADHD). In this study, we investigated the association of recurrent genomic copy number variants (CNVs) with thoracic aortic aneurysms and dissections (TAAD). By using SNP arrays to screen and comparative genomic hybridization microarrays to validate, we identified 16p13.1 duplications in 8 out of 765 patients of European descent with adult-onset TAAD compared with 4 of 4,569 controls matched for ethnicity (P = 5.0 × 10⁻⁵, OR = 12.2). The findings were replicated in an independent cohort of 467 patients of European descent with TAAD (P = 0.005, OR = 14.7). Patients with 16p13.1 duplications were more likely to harbor a second rare CNV (P = 0.012) and to present with aortic dissections (P = 0.010) than patients without duplications. Duplications of 16p13.1 were identified in 2 of 130 patients with familial TAAD, but the duplications did not segregate with TAAD in the families. MYH11, a gene known to predispose to TAAD, lies in the duplicated region of 16p13.1, and increased MYH11 expression was found in aortic tissues from TAAD patients with 16p13.1 duplications compared with control aortas. These data suggest chromosome 16p13.1 duplications confer a risk for TAAD in addition to the established risk for neuropsychiatric disorders. It also indicates that recurrent CNVs may predispose to disorders involving more than one organ system, an observation critical to the understanding of the role of recurrent CNVs in human disease and a finding that may be common to other recurrent CNVs involving multiple genes."	"[Multiprobe fluorescence in situ hybridization panel in detection of the common cytogenetic abnormalities of acute myeloid leukemia]. To evaluate the value of multiprobe Fluorescence in situ hybridization (FISH) panel in detection of the common cytogenetic abnormalities in acute myeloidleukemia( AML). And to investigate its association with clinical diagnosis, chemotherapy and prognosis. Using the multiprobe AML/MDS panel designed to detect upto eight different FISH probes, which was for AML1/ETO transfusion gene, PML-RARα transfusion gene, CBFβ/MYH11 transfusion gene, MLL breakapart, P53 deletion,Del(5q), Del(7q), Del(20q), 40 cases of AML were investigated. The conventional karyotype analysis and the in-formation about the treatment responses were also used for assessing. 22 of the 40 AML cases were found to carry 7 types of cytogenetic abnormalities by multiprobe FISH panel including AML1/ETO transfusion gene, PML-RARa transfusion gene, MLL breakapart, P53 deletion, Del (5q), Del7q and trisomy 8. However conventional karyotype analysis only discovered 11 cases with the corresponding cytogenetic abnormalities, the positive ratio was 57.5% in multiprobe FISH panel higher than that in karyotype analysis (27.50%). Patiens with AML1/ETO or PML-RARa transfusion gene are easily to reach CR in the first induction chemotherapy, while the Del(7q), MLL breakapart, complex cytogenetic abnormalities may indicate poor prognosis. Mutiprobe FISH panel is more rapid, accurate and effective for detecting the common cytogenetic abnormalities in AML, compared with the conventional karyotype analysis and common FISH analysis."	"CBFB and MYH11 in inv(16)(p13q22) of acute myeloid leukemia displaying close spatial proximity in interphase nuclei of human hematopoietic stem cells. To gain a better understanding of the mechanism of chromosomal translocations in cancer, we investigated the spatial proximity between CBFB and MYH11 genes involved in inv(16)(p13q22) found in patients with acute myeloid leukemia. Previous studies have demonstrated a role for spatial genome organization in the formation of tumorigenic abnormalities. The nonrandom localization of chromosomes and, more specifically, of genes appears to play a role in the mechanism of chromosomal translocations. Here, two-color fluorescence in situ hybridization and confocal microscopy were used to measure the interphase distance between CBFB and MYH11 in hematopoietic stem cells (HSCs), where inv(16)(p13q22) is believed to occur, leading to leukemia development. The measured distances in HSCs were compared with mesenchymal stem cells, peripheral blood lymphocytes, and fibroblasts, as spatial genome organization is determined to be cell-type specific. Results indicate that CBFB and MYH11 are significantly closer in HSCs compared with all other cell types examined. Furthermore, the CBFB-MYH11 distance is significantly reduced compared with CBFB and a control locus in HSCs, although separation between CBFB and the control is ∼70% of that between CBFB and MYH11 on metaphase chromosomes. HSCs were also treated with fragile site-inducing chemicals because both the genes contain translocation breakpoints within these regions. However, treatment with fragile site-inducing chemicals did not significantly affect the interphase distance. Consistent with previous studies, our results suggest that gene proximity may play a role in the formation of cancer-causing rearrangements, providing insight into the mechanism of chromosomal abnormalities in human tumors."	"Molecular pathogenesis of core binding factor leukemia: current knowledge and future prospects. Core binding factor (CBF) acute myeloid leukemia (AML) is the most common cytogenetic subtype of AML, defined by the presence of t(8;21) or inv(16)/t(16;16). The chromosomal aberrations create AML1-ETO and CBFβ-MYH11 fusion genes that disrupt the functions of CBF, an essential transcription factor in hematopoiesis. Despite the relatively good outcome of patients with CBF-AML, only approximately half of the patients are cured with current therapy, indicating the need for improved therapeutic strategies. In this review, we summarize current knowledge regarding altered transcriptional regulation, aberrant signaling pathways, and cooperating genetic events in CBF leukemia, and discuss challenges ahead for translating these findings into the clinic."	"Development of standardized approaches to reporting of minimal residual disease data using a reporting software package designed within the European LeukemiaNet. Quantitative PCR (qPCR) for detection of fusion transcripts and overexpressed genes is a promising tool for following minimal residual disease (MRD) in patients with hematological malignancies. Its widespread clinical use has to some extent been hampered by differences in data analysis and presentation that complicate multicenter clinical trials. To address these issues, we designed a highly flexible MRD-reporting software program, in which data from various qPCR platforms can be imported, processed, and presented in a uniform manner to generate intuitively understandable reports. The software was tested in a two-step quality control (QC) study; the first step involved eight centers, whose previous experience with the software ranged from none to extensive. The participants received cDNA from consecutive samples from a BCR-ABL+ chronic myeloid leukemia (CML) patient and an acute myeloid leukemia (AML) patient with both CBFβ-MYH11 and WT1 target genes, they conducted qPCR on their respective hardware platforms and generated a series of reports with pre-defined features. In step two, five centers used the software to report BCR-ABL+ MRD in a harmonized manner, applying their recently obtained CML international scale conversion factors. The QC study demonstrated that this MRD-reporting software is suitable for efficient handling of qPCR data, generation of MRD reports and harmonization of MRD data."	"Deficient CEBPA DNA binding function in normal karyotype AML patients is associated with favorable prognosis. CCAAT/enhancer binding protein-α (CEBPA) mutations in acute myeloid leukemia (AML) patients with a normal karyotype (NK) confer favorable prognosis, whereas NK-AML patients per se are of intermediate risk. This suggests that blocked CEBPA function characterizes NK-AML with favorable outcome. We determined the prognostic significance of CEBPA DNA binding function by enzyme-linked immunosorbent assay in 105 NK-AML patients. Suppressed CEBPA DNA binding was defined by 21 good-risk AML patients with inv(16) or t(8;21) (both abnormalities targeting CEBPA) and 8 NK-AML patients with dominant-negative CEBPA mutations. NK-AML patients with suppressed CEBPA function showed a better overall survival (P = .0231) and disease-free survival (P = .0069) than patients with conserved CEBPA function. Suppressed CEBPA DNA binding was an independent marker for better overall survival and disease-free survival in a multivariable analysis that included FLT3-ITD, NPM1 and CEBPA mutation status, white blood cell count, age and lactate dehydrogenase. These data indicate that suppressed CEBPA function is associated with favorable prognosis in NK-AML patients."	"Common leukemia- and lymphoma-associated genetic aberrations in healthy individuals. Leukemia- and lymphoma-associated (LLA) chromosomal rearrangements are critical in the process of tumorigenesis. These genetic alterations are also important biological markers in the diagnosis, prognosis, and treatment of hematopoietic malignant diseases. To detect the presence or absence of these genetic alterations in healthy individuals, sensitive nested RT-PCR analyses were performed on a large number of peripheral blood samples for selected markers including MLL partial tandem duplications (PTDs), BCR-ABL p190, BCR-ABL p210, MLL-AF4, AML1-ETO, PML-RARA, and CBFB-MYH11. Using nested RT-PCR, the presence of all of these selected markers was detected in healthy individuals at various prevalence rates. No correlation was observed between incidence and age except for BCR-ABL p210 fusion, the incidence of which rises with increasing age. In addition, nested RT-PCR was performed on a large cohort of umbilical cord blood samples for MLL PTD, BCR-ABL p190 and BCR-ABL p210. The results demonstrated the presence of these aberrations in cord blood from healthy neonates. To our knowledge, the presence of PML-RARA and CBFB-MYH11 in healthy individuals has not been previously described. The present study provides further evidence for the presence of LLA genetic alterations in healthy individuals and suggests that these mutations are not themselves sufficient for malignant transformation."	"[Genotyping and minimal residual disease study in children with acute myeloid leukemia: preliminary results]. The aim of the paper is to present the initial results of molecular examination which was started in 2006 for children with acute myeloid leukemia. Better knowledge of biology of this disease, can result in establishing of new risk factors what allows more precise patient stratification to different therapeutic groups. Study was obtained patients until to 18 years of age treated according to AML-BFM 2004 INTERIM protocol in 14 centers of the Polish Pediatric Leukemia/Lymphoma Study Group. Mononuclear cells were collected from bone marrow on time points established according to the AML-BFM 2004 INTERIM protocol. Collected cells were isolated on Ficoll gradient, and RNA and DNA were isolated using TRIZOL reagent. To synthesize cDNA an amount of 1 mg of total RNA was used. To perform quantitative RT-PCR and RQ-PCR reactions 4 fusion gene transcripts (AML1-ETO, CBFb-MYH11, PML-RARA /subtype bcrl and bcr3/) were used according to the protocol established by Europe Against Cancer Program. An expression of WT1 gene was tested additionally. An analysis of ABL control gene was used to normalize of achieved results. Determination of duplication of FLT3 gene in DNA sample was performed with starters complementary to JM region. Genotyping was performed in 75 patients with acute myeloid leukemia so far. AML1-ETO fusion gene transcript was found in 14 patients (19%). PML-RARA (subtype bcr3) and CBFB-MYH11 gene transcripts were detected in 3 (4%) and 3 (4%) patients, respectively. Duplication of FLT3 gene was found in 4 (5.3%) cases. Between 67 tested children over expression of WT1 was present in 51 patients (76%). Analysis of MRD level in subsequent time points showed systematic decrease of number of fusion gene transcript copies and gene WT1 expression. To establish the rate of molecular marker presence in AML in children and the influence of the presence of MRD on the treatment results as well, the study has to be conducted on a larger group of patients with longer follow-up."	"Some novel features of IDH1-mutated acute myeloid leukemia revealed in Chinese patients. Mutations of isocitrate dehydrogenase 1 (IDH1) have recently been reported in acute myeloid leukemia (AML). However, the characteristics of IDH1-mutated AML are still not known clearly. We analyzed 416 Chinese AML patients and found 28 patients (6.7%) carried this mutation. One homozygous IDH1 mutant in AML was found. The IDH1 mutations were associated with NPM1 mutations (P=0.043) and could coexist with recurrent transcription factor aberrations including AML1-ETO (6/50), PML-RARα (3/77) and CBFβ-MYH11 (1/15). For AML with AML1-ETO fusion gene, IDH1(mut) patients may have worse disease-free survival (DFS) than IDH1(wild-type) patients."	"RAD51 and XRCC3 polymorphisms: impact on the risk and treatment outcomes of de novo inv(16) or t(16;16)/CBFβ-MYH11(+) acute myeloid leukemia. DNA double-strand break repair via homologous recombination (HR) is essential in maintaining genetic integrity, and may modulate susceptibility to the development of acute myeloid leukemia (AML) and influence outcomes of AML. This study was designed to evaluate the effects of polymorphisms in HR repair genes RAD51 and XRCC3 on the risk and treatment outcomes of inv(16)/t(16;16)/CBFβ-MYH11(+) AML. The distribution of polymorphisms in RAD51-G135C and XRCC3-Thr241Met were studied by PCR-RFLP analysis in 625 cases of de novo AML, including 105 cases with inv(16)/t(16;16)/CBFβ-MYH11, 806 family controls and 704 volunteer controls. It was found that the XRCC3-241Met variant significantly increased the risk of the development of the AML with inv(16)/t(16;16) as compared with both the volunteer control (OR=7.22; 95% CI, 4.37-11.91) and the family control (OR=7.99; 95% CI, 5.03-12.69). A retrospective study conducted in 103 inv(16)/t(16;16) AML patients. In multivariate analysis for the potential prognostic factors, the XRCC3-241Met variant significantly reduced disease-free survival (DFS) in complete remission (CR) achieved patients (HR=2.34, 95% CI, 1.32-4.16). These data indicate that the XRCC3-241Met variant may not be only a susceptibility factor to the AML with inv(16)/t(16;16), but also an independent poor-prognostic factor for this AML subtype."	"De novo acute myeloid leukemia with Philadelphia chromosome (BCR-ABL) and inversion 16 (CBFB-MYH11): report of two cases and review of the literature. NA"	"Subclones with the t(9;22)/BCR-ABL1 rearrangement occur in AML and seem to cooperate with distinct genetic alterations. In AML, cooperation of mutations suppressing differentiation ('class-II-mutations') with 'class-I-mutations' increasing cell proliferation is frequent. In rare cases of myeloid malignancies, the BCR-ABL1 fusion was reported to cooperate as class-I-mutation with class-II-mutations, but most cases had to be classified as blast phase of chronic myeloid leukaemia (CML). We identified five cases of Philadelphia positive subclones in AML occurring in coincidence with other genetic lesions: 1:220 patients with inv(16)/CBFB-MYH11 (0·5%), 2:272 AML cases with t(8;21)/RUNX1-RUNX1T1 (0·7%), 1:1029 NPM1-mutated AML (0·1%), and one patient with s-AML following MDS with a 5q-deletion. Four patients had m-BCR (e1a2) BCR-ABL1 transcripts; one case only had an M-BCR (b3a2) breakpoint. These cases allow some interesting conclusions: The BCR-ABL1 rearrangement apparently can cooperate with the NPM1 mutation similar to other class-I-mutations. The identification of Philadelphia positive subclones in &lt;1% of patients with CBF-leukaemias fits well with previous observations that most CBF-AML are accompanied by activating mutations in genes enhancing proliferation. Since we observed the occurrence of the Philadelphia positive subclones at diagnosis, at relapse, or throughout the disease, the time point of the emergence of Philadelphia subclones seems variable in AML. Clinical research should further concentrate on Philadelphia positive subclones in AML to assess the clinical impact."	"The transcription factor PlagL2 activates Mpl transcription and signaling in hematopoietic progenitor and leukemia cells. Cytokine signaling pathways are frequent targets of oncogenic mutations in acute myeloid leukemia (AML), promoting proliferation and survival. We have previously shown that the transcription factor PLAGL2 promotes proliferation and cooperates with the leukemia fusion protein Cbfβ-SMMHC in AML development. Here, we show that PLAGL2 upregulates expression of the thrombopoietin receptor Mpl, using two consensus sites in its proximal promoter. We also show that Mpl overexpression efficiently cooperates with Cbfβ-SMMHC in development of leukemia in mice. Finally, we demonstrate that PlagL2-expressing leukemic cells show hyper-activation of Jak2 and downstream STAT5, Akt and Erk1/2 pathways in response to Thpo ligand. These results show that PlagL2 expression activates expression of Mpl in hematopoietic progenitors, and that upregulation of wild-type Mpl provides an oncogenic signal in cooperation with CBFβ-SMMHC in mice."	"Granulocytic sarcoma of the small bowel, greater omentum and peritoneum associated with a CBFβ/MYH11 fusion and inv(16) (p13q22): a case report. Granulocytic sarcoma (GS) is an extramedullary disease which is composed of immature myeloid cells or myeloblasts and usually occurs in association with acute myeloid leukemia (AML), as an initial presentation or a relapse. GS has been associated with various cytogenetic abnormalities, particularly with the t(8;21) translocation and less frequently the inv(16) type. We present a rare case of GS of the small bowel, greater omentum and peritoneum, which caused obstruction, in a patient with AML associated with a CBFβ/MYH11 fusion gene and an inv(16) (p13q22). In this patient there was only mild myeloid hyperplasia in bone marrow aspiration but molecular analysis identified a CBFβ-MYH11 fusion and inv(16) (p13;q22). Because of its nonspecific clinical and radiologic findings, this entity can be misdiagnosed and can mimic other solid neoplasms, making it a diagnostic challenge. In a GS with no or minimal morphological changes in bone marrow aspiration it is very important to perform a cytogenetic analysis to benefit from the diagnosis and therapeutic strategy."	"Incidence and prognostic importance of molecular genetic defects in children with acute myeloblastic leukemia. Acute myeloblastic leukemia (AML) accounts for 15 to 25 percent of childhood acute leukemias. The most common genetic abnormalities seen in pediatric AML patients are AML1-ETO, PML-RARα and CBFB-MYH11 genes resulting in t(8;21), t(15;17) and inv(16). These genetic defects are seen in approximately 20-25% of AML patients. We investigated in this study, incidence and prognostic significance of the AML1-ETO, PML-RARα and CBFB-MYH11 genes in children with AML. The authors analyzed 34 children with AML using the real time-polymerase chain reaction for AML1-ETO, PML-RARα and CBFB-MYH11 genes. Of the patients, 8.8% were positive for t(8;21), 8.8% for t(15;17) and 3% for inv(16). There were a statistically significant differences between 48 month overall survival rates of the patients positive and negative for t(8;21), t(15;17) and inv(16). It was concluded that t(15;17), t(8;21) and inv(16) impact on disease prognosis positively, but comprehensive studies with larger patient series are now needed for confirmation."	"Long-term survival after significant treatment reduction in a patient with CBF-AML. NA"	"Cross-species comparison of orthologous gene expression in human bladder cancer and carcinogen-induced rodent models. Genes differentially expressed by tumor cells represent promising drug targets for anti-cancer therapy. Such candidate genes need to be validated in appropriate animal models. This study examined the suitability of rodent models of bladder cancer in B6D2F1 mice and Fischer-344 rats to model clinical bladder cancer specimens in humans. Using a global gene expression approach cross-species analysis showed that 13-34% of total genes in the genome were differentially expressed between tumor and normal tissues in each of five datasets from humans, rats, and mice. About 20% of these differentially expressed genes overlapped among species, corresponding to 2.6 to 4.8% of total genes in the genome. Several genes were consistently dysregulated in bladder tumors in both humans and rodents. Notably, CNN1, MYL9, PDLIM3, ITIH5, MYH11, PCP4 and FM05 were found to commonly down-regulated; while T0P2A, CCNB2, KIF20A and RRM2 were up-regulated. These genes are likely to have conserved functions contributing to bladder carcinogenesis. Gene set enrichment analysis detected a number of molecular pathways commonly activated in both humans and rodent bladder cancer. These pathways affect the cell cycle, HIF-1 and MYC expression, and regulation of apoptosis. We also compared expression changes at mRNA and protein levels in the rat model and identified several genes/proteins exhibiting concordant changes in bladder tumors, including ANXA1, ANXA2, CA2, KRT14, LDHA, LGALS4, SERPINA1, KRT18 and LDHB. In general, rodent models of bladder cancer represent the clinical disease to an extent that will allow successful mining of target genes and permit studies on the molecular mechanisms of bladder carcinogenesis."	"Detection of fusion genes at the protein level in leukemia patients via the flow cytometric immunobead assay. Nowadays, the presence of specific genetic aberrations is progressively used for classification and treatment stratification, because acute leukemias with the same oncogenetic aberration generally form a clinically and diagnostically homogenous disease entity with comparable prognosis. Many oncogenetic aberrations in acute leukemias result in a fusion gene, which is transcribed into fusion transcripts and translated into fusion proteins, which are assumed to play a critical role in the oncogenetic process. Fusion gene aberrations are detected by karyotyping, FISH, or RT-PCR analysis. However, these molecular genetic techniques are laborious and time consuming, which is in contrast to flow cytometric techniques. Therefore we developed a flow cytometric immunobead assay for detection of fusion proteins in lysates of leukemia cell samples by use of a bead-bound catching antibody against one side of the fusion protein and fluorochrome-conjugated detection antibody. So far, we have been able to design such fusion protein immunobead assays for BCR-ABL, PML-RARA, TEL-AML1, E2A-PBX1, MLL-AF4, AML1-ETO and CBFB-MYH11. The immunobead assay for detection of fusion proteins can be performed within 3 to 4 hours in a routine diagnostic setting, without the need of special equipment other than a flow cytometer. The novel immunobead assay will enable fast and easy classification of acute leukemia patients that express fusion proteins. Such patients can be included at an early stage in the right treatment protocols, much faster than by use of current molecular techniques. The immunobead assay can be run in parallel to routine immunophenotyping and is particularly attractive for clinical settings without direct access to molecular diagnostics."	"Quantitative proteomic analysis of dexamethasone-induced effects on osteoblast differentiation, proliferation, and apoptosis in MC3T3-E1 cells using SILAC. The impairment of osteoblast differentiation is one cause of the glucocorticoid-induced osteoporosis (GCOP). The quantitative proteomic analysis of the dexamethasone (DEX)-induced effects of osteoblast differentiation, proliferation, and apoptosis using stable-isotope labeling by amino acids in cell culture (SILAC) demonstrated drastic changes of some key proteins in MC3T3-E1 cells. The impairment of osteoblast differentiation is one of the main explanations of GCOP. SILAC enables accurate quantitative proteomic analysis of protein changes in cells to explore the underlying mechanism of GCOP. Osteoprogenitor MC3T3-E1 cells were treated with or without 10(−6) M DEX for 7 days, and the differentiation ability, proliferation, and apoptosis of the cells were measured. The protein level changes were analyzed using SILAC and liquid chromatography-coupled tandem mass spectrometry. In this study, 10(−6) M DEX inhibited both osteoblast differentiation and proliferation but induced apoptosis in osteoprogenitor MC3T3-E1 cells on day 7. We found that 10(−6) M DEX increased the levels of tubulins (TUBA1A, TUBB2B, and TUBB5), IQGAP1, S100 proteins (S100A11, S100A6, S100A4, and S100A10), myosin proteins (MYH9 and MYH11), and apoptosis and stress proteins, while inhibited the protein levels of ATP synthases (ATP5O, ATP5H, ATP5A1, and ATP5F1), G3BP-1, and Ras-related proteins (Rab-1A, Rab-2A, and Rab-7) in MC3T3-E1 cells. Several members of the ATP synthases, myosin proteins, small GTPase superfamily, and S100 proteins may participate in functional inhibition of osteoblast progenitor cells by GCs. Such protein expression changes may be of pathological significance in coping with GCOP."	"[Mechanisms of leucemogenesis]. The genetic origins of the development of malignant haematological disorders have been established at the beginning of the 80ies. Systematic characterization of chromosomal structural abnormalities and, more recently by DNA microarray approaches and sequencing of tumour genomes have allowed the identification of a large number of genes that are mutated during malignant transformation in humans. Functional studies of these human oncogenes have shown that most of them were not able to transform a haematologic progenitor when acting alone and that cooperation with other oncogenic events was required. The present challenges are the evaluation of the role of each mutation in malignant transformation and the definition of the chronology of their emergence. From these data, the development of efficient therapeutic approaches will be possible by targeting the early oncogenic events which are at the origin of the malignant transformation."	"In vitro functional study of miR-126 in leukemia. MicroRNAs (miRNAs, miRs) are postulated to be important regulators in various cancers, including leukemia. In a large-scale miRNA expression profiling analysis of 435 human miRNAs in 52 acute myeloid leukemia (AML) samples, we found that miR-126 and its minor counterpart in biogenesis, namely, miR-126*, were specifically aberrantly overexpressed in core binding factor (CBF) AMLs including both t(8;21)/AML1-ETO and inv(16)/CBFB-MYH11 samples. Our in vitro gain- and loss-of-function experiments showed that forced expression of miR-126 inhibited apoptosis and increased the viability of AML cells, whereas the opposite effect was observed when endogenous expression of miR-126 was knocked down. In addition, through in vitro colony-forming/replating assays, we demonstrated that forced expression of miR-126 enhanced proliferation and colony-forming/replating capacity of mouse normal bone marrow progenitor cells alone and particularly, in cooperation with AML1-ETO, a fusion gene resulting from t(8;21). Thus, our data shows that miR-126 may play a critical role in the development of CBF leukemias. In the present chapter, the materials and protocols for the study of miR-126 in leukemia are described."	"DNA methylation profiles and their relationship with cytogenetic status in adult acute myeloid leukemia. Aberrant promoter DNA methylation has been shown to play a role in acute myeloid leukemia (AML) pathophysiology. However, further studies to discuss the prognostic value and the relationship of the epigenetic signatures with defined genomic rearrangements in acute myeloid leukemia are required. We carried out high-throughput methylation profiling on 116 de novo AML cases and we validated the significant biomarkers in an independent cohort of 244 AML cases. Methylation signatures were associated with the presence of a specific cytogenetic status. In normal karyotype cases, aberrant methylation of the promoter of DBC1 was validated as a predictor of the disease-free and overall survival. Furthermore, DBC1 expression was significantly silenced in the aberrantly methylated samples. Patients with chromosome rearrangements showed distinct methylation signatures. To establish the role of fusion proteins in the epigenetic profiles, 20 additional samples of human hematopoietic stem/progenitor cells (HSPC) transduced with common fusion genes were studied and compared with patient samples carrying the same rearrangements. The presence of MLL rearrangements in HSPC induced the methylation profile observed in the MLL-positive primary samples. In contrast, fusion genes such as AML1/ETO or CBFB/MYH11 failed to reproduce the epigenetic signature observed in the patients. Our study provides a comprehensive epigenetic profiling of AML, identifies new clinical markers for cases with a normal karyotype, and reveals relevant biological information related to the role of fusion proteins on the methylation signature."	"Resveratrol induces p53 and suppresses myocardin-mediated vascular smooth muscle cell differentiation. Resveratrol (RSVL), a polyphenolic antioxidant present in red wine, has been shown to provide cardiovascular protection by improving endothelial function and reducing myocardial ischemia. However, little is known about how RSVL affects vascular smooth muscle cells (VSMCs) differentiation. RSVL blocks VSMC proliferation in vitro and neointimal formation following artery injury in vivo. Thus, one might expect that RSVL will promote VSMC differentiation. Unexpectedly, our results in this study show that RSVL induces VSMCs phenotypic modulation; this is characterized by suppressed transcription of SMC-specific marker genes Tagln, Acta2, Myh11, and Smtn in a dose-dependent and time-dependent manner in cultured VSMCs. Consistent with previous studies, RSVL induces the nuclear translocation of p53 and the expression of p53-responsive genes such as Cdkn1a, Gadd45a, Gadd45, and Fas. In an effort to identify the molecular mechanisms whereby RSVL represses VSMC differentiation, we found that RSVL inhibits the transcription of Myocardin (myocd) and Srf, the key VSMC transcriptional regulators. However, knockingdown and overexpressing p53 did not affect RSVL-induced VSMCs phenotypic modulation: this suggests that RSVL may induce VSMC dedifferentiation via p53-independent mechanisms. This study provides the first evidence showing that RSVL induces VSMC dedifferentiation by regulating Myocardin and SRF-mediated VSMC gene transcription."	"Acute aortic dissection: clinician update. NA"	"Prognostic impact of minimal residual disease in CBFB-MYH11-positive acute myeloid leukemia. To evaluate the prognostic impact of minimal residual disease (MRD) in patients with acute myeloid leukemia (AML) expressing the CBFB-MYH11 fusion transcript. Quantitative reverse transcriptase polymerase chain reaction (PCR) was performed on 684 bone marrow (BM; n = 331) and/or peripheral blood (PB; n = 353) samples (median, 13 samples per patient) from 53 younger adult (16 to 60 years old) patients with AML treated in prospective German-Austrian AML Study Group treatment trials. Samples were obtained at diagnosis (BM, n = 45; PB, n = 48), during treatment course (BM, n = 153; PB, n = 122), and at follow-up (BM, n = 133; PB, n = 183). To evaluate the applicability of PB for MRD detection, 198 paired BM and PB samples obtained at identical time points were analyzed. The following three clinically relevant checkpoints were identified during consolidation and early follow-up that predicted relapse: achievement of PCR negativity in at least one BM sample during consolidation therapy (2-year relapse-free survival [RFS], 79% v 54% for PCR positivity; P = .035); achievement of PCR negativity in at least two BM or PB samples during consolidation therapy and early follow-up (&lt; or = 3 months; 2-year RFS, P = .001; overall survival, P = .01); and conversion from PCR negativity to PCR positivity with copy ratios of more than 10 after consolidation therapy. Analysis of paired BM and PB samples revealed BM samples to be more sensitive during the course of therapy, whereas for follow-up, PB samples were equally informative. We defined clinically relevant MRD checkpoints that allow for the identification of patients with CBFB-MYH11-positive AML who are at high risk of relapse. Monitoring of CBFB-MYH11 transcript levels should be incorporated into future clinical trials to guide therapeutic decisions."	"Differential effects of thin and thick filament disruption on zebrafish smooth muscle regulatory proteins.  The smooth muscle actin binding proteins Caldesmon and Tropomyosin (Tm) promote thin filament assembly by stabilizing actin polymerization, however, whether filament assembly affects either the stability or activation of these and other smooth muscle regulatory proteins is not known. Measurement of smooth muscle regulatory protein levels in wild type zebrafish larvae following antisense knockdown of smooth muscle actin (Acta2) and myosin heavy chain (Myh11) proteins, and in colourless mutants that lack enteric nerves. Comparison of intestinal peristalsis in wild type and colourless larvae. Knockdown of Acta2 led to reduced levels of phospho-Caldesmon and Tm. Total Caldesmon and phospho-myosin light chain (p-Mlc) levels were unaffected. Knockdown of Myh11 had no effect on the levels of either of these proteins. Phospho-Caldesmon and p-Mlc levels were markedly reduced in colourless mutants that have intestinal motility comparable with wild type larvae. These in vivo findings provide new information regarding the activation and stability of smooth muscle regulatory proteins in zebrafish larvae and their role in intestinal peristalsis in this model organism."	"RUNX1 repression-independent mechanisms of leukemogenesis by fusion genes CBFB-MYH11 and AML1-ETO (RUNX1-RUNX1T1). The core binding factor (CBF) acute myeloid leukemias (AMLs) are a prognostically distinct subgroup that includes patients with the inv(16) and t(8:21) chromosomal rearrangements. Both of these rearrangements result in the formation of fusion proteins, CBFB-MYH11 and AML1-ETO, respectively, that involve members of the CBF family of transcription factors. It has been proposed that both of these fusion proteins function primarily by dominantly repressing normal CBF transcription. However, recent reports have indicted that additional, CBF-repression independent activities may be equally important during leukemogenesis. This article will focus on these recent advances."	"Acute myeloid leukemia with inv(16) with CBFB-MYH11, 3'CBFB deletion, variant t(9;22) with BCR-ABL1, and del(7)(q22q32) in a pediatric patient: case report and literature review. Coexistence of inv(16) and t(9;22) is a rare chromosomal aberration, one that has been described in chronic myelogenous leukemia (CML), mainly in myeloid blast crisis, and de novo acute myeloid leukemia (AML). Approximately 14 cases have been reported, including only 1 pediatric case. Here we present the case of a 13-year-old boy with a new diagnosis of AML with some features of monocytic differentiation. Conventional cytogenetic analyses on unstimulated blood showed three related abnormal clones with inv(16) in the stemline: 46,XY,inv(16)(p13.1q22)[2]/46,idem,del(7)(q22q32)[16]/46,idem,t(9;22;19)(q34;q11.2;p13.1)[2]. Fluorescence in situ hybridization (FISH) studies on interphase nuclei and previously G-banded metaphases showed a 3'CBFB deletion and confirmed the presence of the Philadelphia chromosome in a t(9;22;19) rearrangement. Deletion 7q31 was also confirmed by interphase FISH analysis. The patient was treated with standard AML chemotherapy plus gemtuzumab as part of a clinical trial. At 10-months follow-up, he was in remission. To the best of our knowledge, this is the first description of a pediatric case of de novo AML with a stemline showing inv(16) along with 3'CBFB deletion, an abnormal clone revealing in addition a del(7)(q22q32), and another clone with a t(9;22;19)(q34;q11.2;p13.1) as an additional abnormality."	"Prognostic value of minimal residual disease by real-time quantitative PCR in acute myeloid leukemia with CBFB-MYH11 rearrangement: the French experience. NA"	"Senescence induction in human fibroblasts and hematopoietic progenitors by leukemogenic fusion proteins. Hematologic malignancies are typically associated with leukemogenic fusion proteins, which are required to maintain the oncogenic state. Previous studies have shown that certain oncogenes that promote solid tumors, such as RAS and BRAF, can induce senescence in primary cells, which is thought to provide a barrier to tumorigenesis. In these cases, the activated oncogene elicits a DNA damage response (DDR), which is essential for the senescence program. Here we show that 3 leukemogenic fusion proteins, BCR-ABL, CBFB-MYH11, and RUNX1-ETO, can induce senescence in primary fibroblasts and hematopoietic progenitors. Unexpectedly, we find that senescence induction by BCR-ABL and CBFB-MYH11 occurs through a DDR-independent pathway, whereas RUNX1-ETO induces senescence in a DDR-dependent manner. All 3 fusion proteins activate the p38 MAPK pathway, which is required for senescence induction. Our results reveal diverse pathways for oncogene-induced senescence and further suggest that leukemias harbor genetic or epigenetic alterations that inactivate senescence induction genes."	"The molecular signature of oncofusion proteins in acute myeloid leukemia. Acute myeloid leukemia (AML) associated translocations often cause gene fusions that encode oncofusion proteins. Although many of the breakpoints involved in chromosomal translocations have been cloned, in most cases the role of the chimeric proteins in tumorigenesis is not elucidated. Here we will discuss the fusion proteins of the 4 most common translocations associated with AML as well as the common molecular mechanisms that these four and other fusion proteins utilize to transform progenitor cells. Intriguingly, although the individual partners within the fusion proteins represent a wide variety of cellular functions, at the molecular level many commodities can be found."	"Autocrine production of TGF-beta1 promotes myofibroblastic differentiation of neonatal lung mesenchymal stem cells. We have isolated mesenchymal stem cells (MSCs) from tracheal aspirates of premature infants with respiratory distress. We examined the capacity of MSCs to differentiate into myofibroblasts, cells that participate in lung development, injury, and repair. Gene expression was measured by array, qPCR, immunoblot, and immunocytochemistry. Unstimulated MSCs expressed mRNAs encoding contractile (e.g., ACTA2, TAGLN), extracellular matrix (COL1A1 and ELN), and actin-binding (DBN1, PXN) proteins, consistent with a myofibroblast phenotype, although there was little translation into immunoreactive protein. Incubation in serum-free medium increased contractile protein (ACTA2, MYH11) gene expression. MSC-conditioned medium showed substantial levels of TGF-beta1, and treatment of serum-deprived cells with a type I activin receptor-like kinase inhibitor, SB-431542, attenuated the expression of genes encoding contractile and extracellular matrix proteins. Treatment of MSCs with TGF-beta1 further induced the expression of mRNAs encoding contractile (ACTA2, MYH11, TAGLN, DES) and extracellular matrix proteins (FN1, ELN, COL1A1, COL1A2), and increased the protein expression of alpha-smooth muscle actin, myosin heavy chain, and SM22. In contrast, human bone marrow-derived MSCs failed to undergo TGF-beta1-induced myofibroblastic differentiation. Finally, primary cells from tracheal aspirates behaved in an identical manner as later passage cells. We conclude that human neonatal lung MSCs demonstrate an mRNA expression pattern characteristic of myofibroblast progenitor cells. Autocrine production of TGF-beta1 further drives myofibroblastic differentiation, suggesting that, in the absence of other signals, fibrosis represents the &quot;default program&quot; for neonatal lung MSC gene expression. These data are consistent with the notion that MSCs play a key role in neonatal lung injury and repair."	"AML with CBFB-MYH11 rearrangement demonstrate RAS pathway alterations in 92% of all cases including a high frequency of NF1 deletions. NA"	"Spontaneous arterial dissection: phenotype and molecular pathogenesis. Arterial dissection (AD) is defined as the longitudinal splitting up of the arterial wall caused by intramural bleeding. It can occur as a spontaneous event in all large and medium sized arteries. The histological hallmark of AD is medial degeneration. Histological investigations, gene expression profiling and proteome studies of affected arteries reveal disturbances in many different biological processes including inflammation, proteolytic activity, cell proliferation, apoptosis and smooth muscle cell (SMC) contractile function. Medial degeneration can be caused by various rare dominant Mendelian disorders. Genetic linkage analysis lead to the identification of mutations in different disease-causing genes involved in the biosynthesis of the extracellular matrix (FBN1, COL3A1), in transforming growth factor (TGF) beta signaling (FBN1, TGFBR1, TGFBR2) and in the SMC contractile system (ACTA2, MYH11). Genome wide association studies suggest that the CDKN2A/CDKN2B locus plays a role in the etiology AD and other arterial diseases."	"15-Deoxy-delta 12-14-prostaglandin-J2 induces hypertrophy and loss of contractility in human testicular peritubular cells: implications for human male fertility. The wall of the seminiferous tubules contains contractile smooth-muscle-like peritubular cells, thought to be important for sperm transport. Impaired spermatogenesis in men typically involves remodeling of this wall, and we now found that smooth muscle cell (SMC) markers, namely myosin heavy chain (MYH11) and smooth muscle actin (SMA) are often lost or diminished in peritubular cells of testes of men with impaired spermatogenesis. This suggests reduced contractility of the peritubular wall, which may contribute to sub- or infertility. In these cases, testicular expression of cyclooxygenase-2 (COX-2) implies formation of prostaglandins (PGs). When screening different PGs for their ability to target human testicular peritubular cells (HTPCs), only a PG metabolite, 15-deoxy-Delta(12-14)-prostaglandin-J2 (15dPGJ2), was effective. In primary cultures of HTPCs, 15dPGJ2 increased cell size in a reversible manner. Importantly, 15dPGJ2 treatment resulted in a loss of typical differentiation markers for SMCs, namely MYH11, calponin, and SMA, whereas fibroblast markers were unchanged. Collagen gel contraction assays revealed that this loss correlates with a reduced ability to contract. Experiments with an antagonist (bisphenol A diglycidyl ether) and agonist (troglitazone) for a cognate 15dPGJ2 receptor (i.e. peroxisome proliferator-activated receptor-gamma) indicated that peroxisome proliferator-activated receptor-gamma is not directly involved. Rather, the mode of action of 15dPGJ2 involves reactive oxygen species. The antioxidant N-acetylcysteine not only blocked ROS formation but also prevented the increase in cell size and the loss of contractility in HTPCs challenged with 15dPGJ2. We conclude that 15dPGJ2, via reactive oxygen species, influences SMC phenotype and contractility of human peritubular cells and possibly is involved in the development of human male sub-/infertility."	"Cyclosporine up-regulates Krüppel-like factor-4 (KLF4) in vascular smooth muscle cells and drives phenotypic modulation in vivo. Cyclosporine A (CSA, calcineurin inhibitor) has been shown to block both vascular smooth muscle cell (VSMC) proliferation in cell culture and vessel neointimal formation following injury in vivo. The purpose of this study was to determine molecular and pathological effects of CSA on VSMCs. Using real-time reverse transcription-polymerase chain reaction, Western blot analysis, and immunofluorescence microscopy, we show that CSA up-regulated the expression of Krüppel-like factor-4 (KLF4) in VSMCs. KLF4 plays a key role in regulating VSMC phenotypic modulation. KLF4 antagonizes proliferation, facilitates migration, and down-regulates VSMC differentiation marker gene expression. We show that the VSMC differentiation marker genes smooth muscle alpha-actin (ACTA2), transgelin (TAGLN), smoothelin (SMTN), and myocardin (MYOCD) are all down-regulated by CSA in VSMC monoculture, whereas cyclin-dependent kinase inhibitor-1A (CDKN1A) and matrix metalloproteinase-3 (MMP3) are up-regulated. CSA did not affect the abundance of the VSMC microRNA (MIR) markers MIR143 and MIR145. Administration of CSA to rat carotid artery in vivo resulted in acute and transient suppression of ACTA2, TAGLN, SMTN, MYOCD, and smooth muscle myosin heavy chain (MYH11) mRNA levels. The tumor suppressor genes KLF4, p53, and CDKN1A, however, were up-regulated, as well as MMP3, MMP9, and collagen-VIII. CSA-treated arteries showed remarkable remodeling, including breakdown of the internal elastic lamina and reorientation of VSMCs, as well as increased KLF4 immunostaining in VSMCs and endothelial cells. Altogether, these data show that cyclosporin up-regulates KLF4 expression and promotes phenotypic modulation of VSMCs."	"The NDE1 gene is disrupted by the inv(16) in 90% of cases with CBFB-MYH11-positive acute myeloid leukemia. NA"	"DNA methylation signatures identify biologically distinct subtypes in acute myeloid leukemia. We hypothesized that DNA methylation distributes into specific patterns in cancer cells, which reflect critical biological differences. We therefore examined the methylation profiles of 344 patients with acute myeloid leukemia (AML). Clustering of these patients by methylation data segregated patients into 16 groups. Five of these groups defined new AML subtypes that shared no other known feature. In addition, DNA methylation profiles segregated patients with CEBPA aberrations from other subtypes of leukemia, defined four epigenetically distinct forms of AML with NPM1 mutations, and showed that established AML1-ETO, CBFb-MYH11, and PML-RARA leukemia entities are associated with specific methylation profiles. We report a 15 gene methylation classifier predictive of overall survival in an independent patient cohort (p &lt; 0.001, adjusted for known covariates)."	"Cbfb/Runx1 repression-independent blockage of differentiation and accumulation of Csf2rb-expressing cells by Cbfb-MYH11. It is known that CBFB-MYH11, the fusion gene generated by inversion of chromosome 16 in human acute myeloid leukemia, is causative for oncogenic transformation. However, the mechanism by which CBFB-MYH11 initiates leukemogenesis is not clear. Previously published reports showed that CBFB-MYH11 dominantly inhibits RUNX1 and CBFB, and such inhibition has been suggested as the mechanism for leukemogenesis. Here we show that Cbfb-MYH11 caused Cbfb/Runx1 repression-independent defects in both primitive and definitive hematopoiesis. During primitive hematopoiesis, Cbfb-MYH11 delayed differentiation characterized by sustained expression of Gata2, Il1rl1, and Csf2rb, a phenotype not found in Cbfb and Runx1 knockout mice. Expression of Cbfb-MYH11 in the bone marrow induced the accumulation of abnormal progenitor-like cells expressing Csf2rb in preleukemic mice. The expression of all 3 genes was detected in most human and murine CBFB-MYH11(+) leukemia samples. Interestingly, Cbfb-MYH11(+) preleukemic progenitors and leukemia-initiating cells did not express Csf2rb, although the majority of leukemia cells in our Cbfb-MYH11 knockin mice were Csf2rb(+). Therefore Csf2rb can be used as a negative selection marker to enrich preleukemic progenitor cells and leukemia-initiating cells from Cbfb-MYH11 mice. These results suggest that Cbfb/Runx1 repression-independent activities contribute to leukemogenesis by Cbfb-MYH11."	"Genetic tests to evaluate prognosis and predict therapeutic response in acute myeloid leukemia. Management of patients with acute myeloid leukemia relies on genetic tests that inform diagnosis and prognosis, predict response to therapy, and measure minimal residual disease. The value of genetics is reinforced in the revised 2008 World Health Organization acute myeloid leukemia classification scheme. The various analytic procedures-karyotype, fluorescence in situ hybridization, reverse transcription polymerase chain reaction, DNA sequencing, and microarray technology-each have advantages in certain clinical settings, and understanding their relative merits assists in specimen allocation and in effective utilization of health care resources. Karyotype and array technology represent genome-wide screens, whereas the other methods target specific prognostic features such as t(15;17) PML-RARA, t(8;21) RUNX1-RUNX1T1, inv(16) CBFB-MYH11, 11q23 MLL rearrangement, FLT3 internal tandem duplication, or NPM1 mutation. New biomarkers and pharmacogenetic tests are emerging. The pathologist's expertise is critical in 1) consulting with clinicians about test selection as well as specimen collection and handling; 2) allocating tissue for immediate testing and preserving the remaining specimen for any downstream testing that is indicated once morphology and other pertinent test results are known; 3) performing tests that maximize outcome based on the strengths and limitations of each assay in each available specimen type; and 4) interpreting and conveying results to the rest of the health care team in a format that facilitates clinical management. Acute myeloid leukemia leads the way for modern molecular medicine."	"Chronic administration of valproic acid inhibits activation of mouse hepatic stellate cells in vitro and in vivo. Hepatic stellate cell (HSC) activation is a pivotal step in the pathogenesis of liver fibrosis. The clarification of this transdifferentiation process is therefore important for the development of effective therapies for fibrosis. We analyzed the effect of a histone deacetylase inhibitor, valproic acid (VPA), on mouse HSC transdifferentiation in vitro and in vivo. The exposure of freshly isolated mouse HSCs to 2.5 mM VPA led to increased histone H4 acetylation and inhibited cell proliferation. Expression of stellate cell activation markers analyzed by quantitative polymerase chain reaction and western blotting revealed that treatment with VPA inhibited the induction of activation markers such as Acta2, Lox, Spp1, and Myh11. Treatment of mice with VPA decreased collagen deposition and in vivo activation of stellate cells in the livers of CCl(4)-treated mice. Class I histone deacetylase silencing through RNA interference in mouse HSCs only partially mimicked treatment with VPA. Chronic administration of VPA results in a marked decrease in stellate cell activation both in vitro and in vivo. We hypothesize that the VPA effect results partially from class I histone deacetylase inhibition, but that also non-histone deacetylase class I VPA targets are involved in the stellate cell activation process."	"Development of a biochip-based assay integrated in a global strategy for identification of fusion transcripts in acute myeloid leukemia: a work flow for acute myeloid leukemia diagnosis. Three major types of rearrangements are involved in acute myeloid leukemias (AML): t(8;21)(q22;q22), inv(16)(p13q22), and 11q23/MLL abnormalities. Their precise identification becomes essential for diagnosis, prognosis, and therapeutic choices. Resulting fusion transcripts (FT) are also powerful markers for monitoring the efficacy of treatment, the minimal residual disease (MRD) and could become therapeutic targets. Today, the challenge is to propose an individual follow-up for each patient even for those with a rare fusion event. In this study, we propose a biochip-based assay integrated in a global strategy for identification of rare FT in AML, after fluorescence in situ hybridization detection, as described by the World Health Organization classification. Using cell lines, we developed and validated a biochip-based assay called the AMLFusionChip that identifies every FT of AML1-ETO, CBFbeta-MYH11 as well as MLL-AF9, MLL-ENL, MLL-AF6, and MLL-AF10. The original design of our AMLFusionChip.v01 enables the identification of these FT wherever the breakpoint on the partner gene may be. In case of biochip negative result, our 3'RACE amplification strategy enables to clone and then sequence the new translocation partner. This AMLFusionChip strategy fits into the concept of personalized medicine for the largest number of patients."	"Strikingly different molecular relapse kinetics in NPM1c, PML-RARA, RUNX1-RUNX1T1, and CBFB-MYH11 acute myeloid leukemias. Early relapse detection in acute myeloid leukemia is possible using standardized real-time quantitative polymerase chain reaction (RQ-PCR) protocols. However, optimal sampling intervals have not been defined and are likely to vary according to the underlying molecular lesion. In 74 patients experiencing hematologic relapse and harboring aberrations amenable to RQ-PCR (mutated NPM1 [designated NPM1c], PML-RARA, RUNX1-RUNX1T1, and CBFB-MYH11), we observed strikingly different relapse kinetics. The median doubling time of the CBFB-MYH11 leukemic clone was significantly longer (36 days) than that of clones harboring other markers (RUNX1-RUNX1T1, 14 days; PML-RARA, 12 days; and NPM1c, 11 days; P &lt; .001). Furthermore, we used a mathematical model to determine frequency of relapse detection and median time from detection of minimal residual disease to hematologic relapse as a function of sampling interval length. For example, to obtain a relapse detection fraction of 90% and a median time of 60 days, blood sampling every sixth month should be performed for CBFB-MYH11 leukemias. By contrast, in NPM1c(+)/FLT3-ITD(-), NPM1c(+)/FLT3-ITD(+), RUNX1-RUNX1T1, and PML-RARA leukemias, bone marrow sampling is necessary every sixth, fourth, and fourth and second month, respectively. These data carry important implications for the development of optimal RQ-PCR monitoring schedules suitable for evaluation of minimal residual disease-directed therapies in future clinical trials."	"[Study on proteomic specificity of unstable angina with qi deficiency and blood stasis syndrome]. To seek the special plasma molecule in unstable angina (UA) patients of qi deficiency and blood stasis syndrome (QDBS) and method for explore the proteomic specificity of the disease. LC-MS(E) analysis was performed in UA patients of QDBS or non-QDBS and in healthy persons after the 6 proteins with optimal abundance in plasma being removed by polyclonal antibody affinity column (product of Agilent Co. USA). Actin were found only expressed, and FN, ApoH and ANXA6 were found highly expressed in plasma of patients with UA-QDBS, suggesting they might be the special molecules for the disease. Moreover, as compared with health persons, SAA, CP, MYH11 and C6 showed high expression, and the 6 proteins, e.g. A1BG, ApoA4, GSN, HBB, HBD and TF, showed low expression in the plasma of UA-QDBS patients. UA-QDBS might belong to a kind inflammatory reaction. There are simultaneous existence of myocardial injury, blood coagulation factor abnormality, lipid metabolic disorder and oxygen transport obstacle in patients of UA-QDBS, they influence and interact mutually. The newly discovered differential proteins might provide clues for studying or discovering new protein targets of angina relieving drugs. The new technique of label free quantitative proteomics is an efficient method for bio-marker research of diseases and syndromes."	"[Identification of gene rearrangements in childhood leukemia by using a multiplex polymerase chain reaction-microarray approach]. The aim of study was to investigate the application of a novel microarray approach for the eight most common leukemia translocations in children for routine molecular diagnostic hematopathology practice. Bone marrow samples from 84 children with leukemia were analyzed by multiplex nested RT-PCR combined with oligonucleotide microarray. The results showed that out of 84 leukemic samples, 31 (36. 90%) carried 8 types of fusion genes including tel/aml1, e2a/pbx1, bcr/ablp190, bcr/ablp210, mll/af4, aml1/eto, pml/raralpha, cbfbeta/myh11. The sensitivity and specificity of the assay is comparable with the RT-PCR technique. In conclusion, this multiplex nested RT-PCR could quickly screen 8 types of chromosome structural aberrations at the same time. It can provide reliable and helpful information for risk stratification, therapy evaluation and prognosis prediction in childhood leukemia. There are both advantages and disadvantages in applying this new method. The microarray-based assay will be an effective and reliable tool in the clinical screening of leukemia patients for the presence of specific gene rearrangements with important diagnostic and prognostic implications."	"Myeloid sarcoma of the small bowel associated with a CBFbeta/MYH11 fusion and inv(16)(p13q22): a case report. This report describes a case of aleukaemic myeloid sarcoma of the small intestine in a 50-year-old woman presenting with small bowel obstruction. Fluorescence in situ hybridisation analysis of interphase nuclei revealed a split CBFbeta signal, consistent with an underlying inversion of chromosome 16, inv(16)(p13q22). The resultant type A CBFbeta/MYH11 transcript was detected by reverse transcriptase PCR. Immunohistochemistry with the AH107 antibody to the CBFbeta-SMMHC chimeric protein showed strong nuclear staining of the tumour cell nuclei. This represents the first use of this antibody in the diagnosis of this subtype of myeloid sarcoma in the small intestine."	"Isolation of neural crest derived chromaffin progenitors from adult adrenal medulla. Chromaffin cells of the adrenal medulla are neural crest-derived cells of the sympathoadrenal lineage. Unlike the closely-related sympathetic neurons, a subpopulation of proliferation-competent cells exists even in the adult. Here, we describe the isolation, expansion, and in vitro characterization of proliferation-competent progenitor cells from the bovine adrenal medulla. Similar to neurospheres, these cells, when prevented from adherence to the culture dish, grew in spheres, which we named chromospheres. These chromospheres were devoid of mRNA specific for smooth muscle cells (MYH11) or endothelial cells (PECAM1). During sphere formation, markers for differentiated chromaffin cells, such as phenylethanolamine-N-methyl transferase, were downregulated while neural progenitor markers nestin, vimentin, musashi 1, and nerve growth factor receptor, as well as markers of neural crest progenitor cells such as Sox1 and Sox9, were upregulated. Clonal analysis and bromo-2'-deoxyuridine-incorporation analysis demonstrated the self-renewing capacity of chromosphere cells. Differentiation protocols using NGF and BMP4 or dexamethasone induced neuronal or endocrine differentiation, respectively. Electrophysiological analyses of neural cells derived from chromospheres revealed functional properties of mature nerve cells, such as tetrodotoxin-sensitive sodium channels and action potentials. Our study provides evidence that proliferation and differentiation competent chromaffin progenitor cells can be isolated from adult adrenal medulla and that these cells might harbor the potential for the treatment of neurodegenerative diseases, such as Parkinson's disease."	"[Effect of lingdankang composite combined dendritic cell-cytokine induced killer cells in treating leukemia]. To evaluate the effect and safety of Chinese herbal medicine Lingdankang Composite (LDK) combined dendritic cell-cytokine induced killer cells (DC-CIK) in treating leukemia. Subjects were selected from leukemia patients who achieved hematological complete remission (HCR) but not achieved molecular biological remission (MBR), or with minimal residual leukemia (MRL) positive. Twenty patients, 19 of acute leukemia and 1 of chronic myelocytic leukemia, were enrolled. DC and CIK from patient's peripheral blood monocyte were separated respectively by blood cell separator, then DC-CIK was obtained through respective culture followed with mixed cultivation of them, and was infused back to the patient self via intravenous injection. The back infusion of DC-CIK was performed once every 15-20 days for 4-6 times in total. Meantime, LDK was administered orally every day. In the 20 patients treated, 4 case of HCR achieved MBR, the negatively reversed marker gene was AML1/ETO in 1 case, CBFbeta/MYH11 in 1, bcr/abl in 1, and the other 1 was IgH gene rearrangement; 3 patients with positive MRL were reversed to negative. The 3-year CR rate was 75% with a medium CR period of 25 months (10-37 months). Except transient fever and chill in 5 cases, no other remarkable adverse reaction happened during or after DC-CIK infusion. The combined treatment of LDK and autologous DC-CIK in treating patients with HCR shows an obvious effect of clearing MRL, it is the appropriate choice for curing leukemia of HCR, and is safety for intravenous infusion, so it has potential clinical prospect."	"Haematological &amp; molecular profile of acute myelogenous leukaemia in India. Recurrent balanced translocations are generally recognized to be a major parameter for prognostication in acute myeloid leukaemia (AML). The chromosomal translocation t(15;17) results in PML/RARalpha fusion gene, t(8;21) results in AML1/ETO fusion gene and Inv 16 generates CBFbeta/MYH11 fusion gene. Patients with these mutations have a good prognosis unlike abnormalities in chromosome 5 or 7 or FLT3 genes. Therefore, we screened the AmL patients for known specific genetic abnormalities that could lead to more definitive prognoses. A total of 113 AML patients were evaluated at diagnosis based on routine morphology and cytochemistry and classified according to the WHO criteria. The distribution of AML subtypes was M1(1), M2(32), M3(57), M4(14), M5(1), M6(1) and seven cases where morphological subtype could not be classified. RT-PCR was performed to identify PML/RARalpha, AML1/ETO, CBFbeta/MYH11 and FLT3 nternal tandem duplication (ITD). Of the 57 patients with M3 subtype, 55 had the PML-RARalpha fusion transcript. The prevalence of bcr3 (short isoform) was higher (62%) than that of bcr1 (long isoform) (38%) and no correlation was found with age, sex or white blood cell count. FLT3 internal tandem duplication (ITD) mutations were more frequent in patients with APL than in other AML subtypes (17.5 vs. 8.9%), the frequency greater in patients with bcr3 isoform (70%) than in those with in bcr1 isoform (30%). Patients with FLT3/ ITD mutations had a significantly higher median white cell count than those without these mutations (55 x 10(9)/l vs. 6.3 x 10(9)/l P&lt;0.001). More patients with FLT3/ITD mutations died early (53%) than those without these mutations (16%) (P&lt;0.01). AML1-ETO fusion transcript was detected in 16 of 56 patients with no correlation with clinical or haematological parameters. The results of the present study showed presence of bcr3 (short isoform) higher than bcr1 (long isoform). FLT3 internal tandem duplication (ITD) mutation was predominant in acute promyelocytic leukaemia patients with bcr3 isoform. Thus, patients with APL who have FLT3 mutation appear to have a poorer prognosis. Therefore, rapid identification of specific translocations at diagnosis is important for prognostic purposes and their detection should be incorporated into routine assessment."	"Acute myeloid leukaemia with associated eosinophilia: justification for FIP1L1-PDGFRA screening in cases lacking the CBFB-MYH11 fusion gene. NA"	"Detection and treatment of molecular relapse in acute myeloid leukemia with RUNX1 (AML1), CBFB, or MLL gene translocations: frequent quantitative monitoring of molecular markers in different compartments and correlation with WT1 gene expression. Our objective was to determine the value of frequent minimal residual disease (MRD) monitoring in acute myeloid leukemia (AML) as a robust marker of impending relapse, and whether treatment benefits patients during the MRD-positive phase of their disease. Frequent MRD monitoring was performed in all AML treatment phases using real-time quantitative polymerase chain reaction for fusion transcripts (CBFB/MYH11; RUNX1/RUNX1T1 fusion transcripts of MLL gene) and for the Wilms' tumor (WT1) gene. A total of 2,664 samples, taken from 79 AML patients and 6 healthy volunteers, were examined. Presence of fusion gene was detected in 25 of 79 examined patients. Vast correlation was discovered for fusion transcripts as well as for the WT1 gene between levels in bone marrow (BM), peripheral blood, CD34(+) BM cells, and CD34(-) BM cells. WT1 expression, however, was usually positive for cases showing fusion transcripts negativity and in healthy volunteers. Moreover, no universal value of the WT1 expression could unequivocally discriminate between remission and relapse. Therefore, detection of molecular relapses relied on fusion transcripts only and was characterized by strong expression in CD34(+) cells. Considering relapsed patients, duration from molecular to hematological relapse was 8 to 79 days (median: 25.5 days). Twelve patients were treated (chemotherapy, gemtuzumab ozogamicin, or immunomodulation after allogeneic transplantation) for 21 molecular relapses and 14 responses to treatment were observed. Frequent quantitative monitoring of fusion transcripts is useful for reliably predicting hematological relapse in AML patients. Treatment for molecular relapse of AML can be successful."	"Both SEPT2 and MLL are down-regulated in MLL-SEPT2 therapy-related myeloid neoplasia. A relevant role of septins in leukemogenesis has been uncovered by their involvement as fusion partners in MLL-related leukemia. Recently, we have established the MLL-SEPT2 gene fusion as the molecular abnormality subjacent to the translocation t(2;11)(q37;q23) in therapy-related acute myeloid leukemia. In this work we quantified MLL and SEPT2 gene expression in 58 acute myeloid leukemia patients selected to represent the major AML genetic subgroups, as well as in all three cases of MLL-SEPT2-associated myeloid neoplasms so far described in the literature. Cytogenetics, fluorescence in situ hybridization (FISH) and molecular studies (RT-PCR, qRT-PCR and qMSP) were used to characterize 58 acute myeloid leukemia patients (AML) at diagnosis selected to represent the major AML genetic subgroups: CBFB-MYH11 (n = 13), PML-RARA (n = 12); RUNX1-RUNX1T1 (n = 12), normal karyotype (n = 11), and MLL gene fusions other than MLL-SEPT2 (n = 10). We also studied all three MLL-SEPT2 myeloid neoplasia cases reported in the literature, namely two AML patients and a t-MDS patient. When compared with normal controls, we found a 12.8-fold reduction of wild-type SEPT2 and MLL-SEPT2 combined expression in cases with the MLL-SEPT2 gene fusion (p = 0.007), which is accompanied by a 12.4-fold down-regulation of wild-type MLL and MLL-SEPT2 combined expression (p = 0.028). The down-regulation of SEPT2 in MLL-SEPT2 myeloid neoplasias was statistically significant when compared with all other leukemia genetic subgroups (including those with other MLL gene fusions). In addition, MLL expression was also down-regulated in the group of MLL fusions other than MLL-SEPT2, when compared with the normal control group (p = 0.023) We found a significant down-regulation of both SEPT2 and MLL in MLL-SEPT2 myeloid neoplasias. In addition, we also found that MLL is under-expressed in AML patients with MLL fusions other than MLL-SEPT2."	"WT1 monitoring in core binding factor AML: comparison with specific chimeric products. Minimal residual disease may help to establish clinical decisions in patients with AML. WT1 offers the possibility to analyze those cases without currently known underlying genetic abnormalities. To compare the value of chimeric specific quantitative PCR with WT1 PCR in CBF acute leukemia, 445 samples from 96 AML (49 AML1-ETO+ and 47 CBFB-MYH11+) cases were included in the study. For each sample AML1-ETO or CBFB-MYH11 levels obtained using the conditions of the BIOMED group were compared with the results of WT1 levels using sensitive primers and conditions. Simultaneously, normal range expression of WT1 was established using RNA obtained from eight healthy donors. WT1 mutations were also investigated both at RNA and at the genomic level. The majority of CBF samples showed rises in WT1 levels (88.7%) at diagnosis. However, 18% of AML1-ETO showed WT1 levels below 250 copies in contrast with 5% CBFB-MYH11 cases. WT1 mutation was not detected in any case (70 diagnostic samples). We found correlation between WT1 levels at diagnosis and the CD34 blast population estimated by flow cytometry in CBFB-MYH11+ cases. We found no association between WT1 levels and clinical outcome. There was a high concordance between chimeric transcript analysis and WT1 levels in CR patients. Concordance was also high in relapsed patients (78% in AML1-ETO and 98% in CBFB-MYH11+ cases). Both WT1 and specific chimeric transcript identified and rescued false negative results of the other test. Additional studies are needed to determine whether the rare discrepancies are a reflection of the cooperative nature of WT1 overexpression or a consequence of the uneven distribution in the leukemic population. WT1 is a powerful MRD tool even in cases with currently available molecular targets."	"Aleukemic bcr-abl positive granulocytic sarcoma. Granulocytic sarcoma (GS) can occur de novo or in association with intramedullary myeloid disorders. With the advent of sophisticated molecular detection techniques to detect diagnostic genes such as bcr-abl, PML-RARA and CBFB/MYH11 in bone marrow or peripheral blood, many cases of the so called 'primary' GS are questionable. We report a case of primary GS where the tumor mass bcr-abl translocation was demonstrated by fluorescent in situ hybridization in which there was no evidence of chronic myeloid leukemia (CML). This is an important finding as it highlights the possibility that CML may present as a sole extramedullary form, and illustrates potential treatment by tyrosine kinase inhibitor."	"Detection of a novel CBFB/MYH11 variant fusion transcript (K-type) showing partial insertion of exon 6 of CBFB gene using two commercially available multiplex RT-PCR kits. We report on a 20-year-old man with acute myeloid leukemia (AML) showing a distinct novel CBFB/MYH11 variant fusion transcript. Initial results of bone marrow, chromosome, and flow cytometric analyses were not in accordance with the diagnosis of acute myelomonocytic leukemia with eosinophilia (AML-M4Eo) or AML with a CBFB/MYH11 rearrangement. However, results from 2 commercially available multiplex reverse transcriptase-polymerase chain reaction (RT-PCR) tests repeatedly showed an unusual PCR product from his bone marrow specimen. Not only does this case show a partial insertion of exon 6 of the CBFB (ENSG00000067955) gene, but it also involves novel breakpoints within both exon 6 of the CBFB gene and exon 28 (previously exon 7) of the MYH11 (ENSG00000133392) gene, which is regarded as a previously non-reported, new type (K-type) of CBFB/MYH11 fusion transcript. In addition, our study result was in agreement with the recent report of Schnittger et al. that rare fusion transcripts of CBFB/MYH11 are correlated with an atypical cytomorphology and other aberrant characteristics. Therefore, multiplex RT-PCR and sequence analysis of these atypical products should be performed to diagnose atypical AML with CBFB/MYH11 rearrangement, to predict prognosis of these patients as well as to elucidate the molecular mechanism."	"Runx2 induces acute myeloid leukemia in cooperation with Cbfbeta-SMMHC in mice. The core-binding factor (CBF) is a master regulator of developmental and differentiation programs, and CBF alterations are frequently associated with acute leukemia. The role of the CBF member RUNX2 in hematopoiesis is poorly understood. Genetic evidence suggests that deregulation of Runx2 may cause myeloid leukemia in mice expressing the fusion oncogene Cbfb-MYH11. In this study, we show that sustained expression of Runx2 modulates Cbfbeta-smooth muscle myosin heavy chain (SMMHC)-mediated myeloid leukemia development. Expression of Runx2 is high in the hematopoietic stem cell compartment and decreases during myeloid differentiation. Sustained Runx2 expression hinders myeloid progenitor differentiation capacity and represses expression of CBF targets Csf1R, Mpo, Cebpd, the cell cycle inhibitor Cdkn1a, and myeloid markers Cebpa and Gfi1. In addition, full-length Runx2 cooperates with Cbfbeta-SMMHC in leukemia development in transplantation assays. Furthermore, we show that the nuclear matrix-targeting signal and DNA-binding runt-homology domain of Runx2 are essential for its leukemogenic activity. Conversely, Runx2 haplo-insufficiency delays the onset and reduces the incidence of acute myeloid leukemia. Together, these results indicate that Runx2 is expressed in the stem cell compartment, interferes with differentiation and represses CBF targets in the myeloid compartment, and modulates the leukemogenic function of Cbfbeta-SMMHC in mouse leukemia."	"Compliance and pulse wave velocity assessed by MRI detect early aortic impairment in young patients with mutation of the smooth muscle myosin heavy chain. To evaluate aortic elasticity with MRI on young asymptomatic individuals with mutation of the smooth muscle myosin heavy chain in whom aortic enlargement is not present. Aortic compliance, aortic distensibility, and pulse wave velocity (PWV) were semiautomatically measured from MRI in 8 asymptomatic subjects having a mutation of the MYH11 gene (M+) and 21 nonmutated relatives (M-) of similar age, sex, and blood pressure characteristics. Despite a similar aortic diameter in both groups, the aortic compliance and distensibility were significantly lower in M+ subjects compared with M- (0.84+/-0.33 versus 2.03+/-0.54 mm2/mmHg, 1.18+/-0.62 10(-3) versus 5.11+/-1.58 10(-3) mmHg(-1), respectively), and PWV was significantly higher (5.35+/-1.53 versus 3.60+/-0.64 m.s(-1)). A threshold aortic compliance value of 1.3 mm2/mmHg separated the two groups. The receiver operating characteristics curve analysis indicated an optimal threshold of 2.9 10(-3) mmHg(-1) for aortic distensibility (sensitivity: 87.5%, specificity: 90%), and of 4.4 m.s(-1) for PWV (sensitivity: 75%, specificity: 100%). Young asymptomatic adults with MYH11 mutation have an aortic compliance impairment which is not detectable by the sole measurement of the aortic size. Aortic compliance measurement might be part of routine examination in patients suspected of inherited aortic disease even with a normal aortic diameter."	"Smooth-muscle myosin mutations in hereditary non-polyposis colorectal cancer syndrome. We examined adenomas and cancers from hereditary non-polyposis colorectal cancer (HNPCC) syndrome patients for the presence of frameshift mutations in the smooth-muscle myosin gene, MYH11. Our results show that mutations in MYH11 occur more frequently in cancers than adenomas (P=0.008) and are dependent on microsatellite instability (MSI+)."	"Distinct microRNA expression profiles in acute myeloid leukemia with common translocations. MicroRNAs (miRNAs) are postulated to be important regulators in cancers. Here, we report a genome-wide miRNA expression analysis in 52 acute myeloid leukemia (AML) samples with common translocations, including t(8;21)/AML1(RUNX1)-ETO(RUNX1T1), inv(16)/CBFB-MYH11, t(15;17)/PML-RARA, and MLL rearrangements. Distinct miRNA expression patterns were observed for t(15;17), MLL rearrangements, and core-binding factor (CBF) AMLs including both t(8;21) and inv(16) samples. Expression signatures of a minimum of two (i.e., miR-126/126*), three (i.e., miR-224, miR-368, and miR-382), and seven (miR-17-5p and miR-20a, plus the aforementioned five) miRNAs could accurately discriminate CBF, t(15;17), and MLL-rearrangement AMLs, respectively, from each other. We further showed that the elevated expression of miR-126/126* in CBF AMLs was associated with promoter demethylation but not with amplification or mutation of the genomic locus. Our gain- and loss-of-function experiments showed that miR-126/126* inhibited apoptosis and increased the viability of AML cells and enhanced the colony-forming ability of mouse normal bone marrow progenitor cells alone and particularly, in cooperation with AML1-ETO, likely through targeting Polo-like kinase 2 (PLK2), a tumor suppressor. Our results demonstrate that specific alterations in miRNA expression distinguish AMLs with common translocations and imply that the deregulation of specific miRNAs may play a role in the development of leukemia with these associated genetic rearrangements."	"Mutation analysis of MYH11 in acute myeloid leukemia. NA"	"Somatic mutation analysis of MYH11 in breast and prostate cancer. MYH11 (also known as SMMHC) encodes the smooth-muscle myosin heavy chain, which has a key role in smooth muscle contraction. Inversion at the MYH11 locus is one of the most frequent chromosomal aberrations found in acute myeloid leukemia. We have previously shown that MYH11 mutations occur in human colorectal cancer, and may also be associated with Peutz-Jeghers syndrome. The mutations found in human intestinal neoplasia result in unregulated proteins with constitutive motor activity, similar to the mutant myh11 underlying the zebrafish meltdown phenotype characterized by disrupted intestinal architecture. Recently, MYH1 and MYH9 have been identified as candidate breast cancer genes in a systematic analysis of the breast cancer genome. The aim of this study was to investigate the role of somatic MYH11 mutations in two common tumor types; breast and prostate cancers. A total of 155 breast cancer and 71 prostate cancer samples were analyzed for those regions in MYH11 (altogether 8 exons out of 42 coding exons) that harboured mutations in colorectal cancer in our previous study. In breast cancer samples only germline alterations were observed. One prostate cancer sample harbored a frameshift mutation c.5798delC, which we have previously shown to result in a protein with unregulated motor activity. Little evidence for a role of somatic MYH11 mutations in the formation of breast or prostate cancers was obtained in this study."	"Composite small lymphocytic lymphoma and extra-medullary myeloid tumor: a potential diagnostic pitfall. Reported herein is a case of composite small lymphocytic lymphoma (SLL) and extramedullary myeloid tumor (EMT) occurring in the same lymph node. Routine morphologic examination revealed a diffuse proliferation of small mature lymphocytes with numerous irregularly dispersed nodules, closely resembling SLL with prominent proliferation centers or Richter's transformation. Flow cytometric immunophenotyping and immunohistochemical stains demonstrated the presence of SLL cells as well as myeloblasts, confirming the diagnosis of a composite SLL and EMT. Conventional cytogenetics and fluorescence in situ hybridization studies revealed inversion 16 chromosome involving the core binding factor beta and myosin heavy chain 11 genes, characteristic of acute myeloid leukemia with abnormal bone marrow eosinophils and inv(16) or t(16;16) [CBFbeta/MYH11]. In conclusion, the occurrence of SLL and EMT in the same lymph node is rare and multiparameter approach is essential for a definitive diagnosis."	"Small-molecule inhibitors of protein-protein interactions. Protein-protein interactions regulate almost all aspects of cellular signaling and aberrant protein-protein interactions have the potential to cause or contribute to human disease. The modulation of these interactions by drug-like molecules would offer previously unavailable opportunities to explore the relevance of pre-selected protein-protein interactions for cellular signaling, as well as benefits to patients. After an initial period of skepticism with regards to feasibility, there is now an encouraging set of data indicating that the effective and selective modulation of protein-protein interactions by drug-like molecules is attainable. This review highlights selected areas of current research that are aimed at identifying potent inhibitors of disease-relevant protein-protein interactions."	"Low expression of APAF-1XL in acute myeloid leukemia may be associated with the failure of remission induction therapy. Apoptotic protease activating factor 1 (APAF-1) has a critical role in the regulation of apoptosis. In the present study, the mRNA expression analysis of different APAF-1 transcripts (APAF-1S, APAF-1LC, APAF-1LN, and APAF-1XL) was analyzed in bone marrow samples from 37 patients with acute myeloid leukemia (newly diagnosed, with no previous treatment). APAF-1XL and APAF-1LN transcripts (with and without an extra WD-40 repeat region, respectively) were detected in all samples, although the major form expressed was APAF-1XL in 65% of the samples (group 1), while 35% of the samples expressed primarily APAF-1LN (group 2). Only 46% of the patients presented complete remission in response to remission induction therapy (represented by less than 5% marrow blasts and hematological recovery), all but 2 cases being from group 1, 21.6% did not attain complete remission (only 1 case from group 1), and 32.4% of the patients died early. Lower expression of APAF-1XL (APAF-1XL/APAF-1LN ratio &lt;1.2) was associated with a poor response to therapy (P = 0.0005, Fisher exact test). Both groups showed similar characteristics regarding white blood cell counts, cytogenetic data or presence of gene rearrangements associated with good prognosis as AML1-ETO, CBFB-MYH11 and PML/RARA. Since it has been shown that only the isoforms with the extra WD-40 repeat region activate procaspase-9, we suggest that low procaspase-9 activation may also be involved in the deregulation of apoptosis and chemotherapy resistance in acute myeloid leukemia."	"Identification and characterization of Myosin from rat testicular peritubular myoid cells. In the mammalian testis, peritubular myoid cells (PMCs) surround seminiferous tubules. These cells are contractile, express the cytoskeletal markers of true smooth muscle-alpha-isoactin and F-actin-and participate in the contraction of seminiferous tubules during the transport of spermatozoa and testicular fluid to the rete testis. Myosin from PMCs (PMC-myosin) was isolated from adult rat testis and purified by cycles of assembly-disassembly and sucrose gradient centrifugation. PMC-myosin was recognized by a monoclonal anti-smooth muscle myosin antibody, and the peptide sequence shared partial homology with rat smooth muscle myosin-II, MYH11 (also known as SMM-II). Most PMC-myosin (95%) was soluble in the PMC cytosol, and purified PMC-myosin did not assemble into filaments in the in vitro salt dialysis assay at 4 degrees C, but did at 20 degrees C. PMC-myosin filaments are stable to ionic strength to the same degree as gizzard MYH11 filaments, but PMC-myosin filaments were more unstable in the presence of ATP. When PMCs were induced to contract by endothelin 1, a fraction of the PMC-myosin was found to be involved in the contraction. From these results we infer that PMCs express an isoform of smooth muscle myosin-II that is characterized by solubility at physiological ionic strength, a requirement for high temperature to assemble into filaments in vitro, and instability at low ATP concentrations. PMC-myosin is part of the PMC contraction apparatus when PMCs are stimulated with endothelin 1."	"Simple multiplex RT-PCR for identifying common fusion transcripts in childhood acute leukemia. Nonrandom gene rearrangements have been demonstrated in leukemic cells at diagnosis. These genetic abnormalities are associated with specific types, clinical characteristics, and prognosis of acute leukemia. Common fusion transcripts in childhood acute lymphoblastic leukemia (ALL) are TEL-AML1, E2A-PBX, MLL-AF4, and BCR-ABL (p190) and in acute nonlymphoblastic leukemia (ANLL) are AML-ETO, PML-RARA, and CBFB-MYH11. Reverse transcription-polymerase chain reaction (RT-PCR) for detection of each individual fusion transcript is impractical and time consuming. The purpose of this study was to develop simple RT-PCR methods to identify common fusion transcripts of newly diagnosed acute leukemia in children. Total RNA was extracted from bone marrow samples of children diagnosed with acute leukemia. Multiplex RT-PCR panel A (ALL) included primers for TEL-AML1, E2A-PBX, MLL-AF4, and BCR-ABL (p190) whereas panel B (ANLL) composed of primers for AML-ETO, PML-RARA, and CBFB-MYH11. Known leukemic cell lines were used to serve as positive controls. Eighty three children diagnosed with ALL (n = 63) and ANLL (n = 20) were included in this study. Fusion transcripts could be identified using multiplex RT-PCR panel A for ALL and panel B for ANLL in 26/83 (31.3%) cases. In ALL samples, we found TEL-AML1 = 16/63 (25.4%), E2A-PBX = 3/63 (4.8%), MLL-AF4 = 1/63 (1.6%), and BCR-ABL = 1/63 (1.6%). Four cases of AML1-ETO (20%) and one PML-RARA (5%) were found in ANLL samples. In conclusion, our simple multiplex RT-PCR for detection of fusion transcripts in childhood acute leukemia was found to be a rapid, accurate, and effective method."	"Transcriptional repression of the RUNX3/AML2 gene by the t(8;21) and inv(16) fusion proteins in acute myeloid leukemia. RUNX3/AML2 is a Runt domain transcription factor like RUNX1/AML1 and RUNX2/AML3. Regulated by 2 promoters P1 and P2, RUNX3 is frequently inactivated by P2 methylation in solid tumors. Growing evidence has suggested a role of this transcription factor in hematopoiesis. However, genetic alterations have not been reported in blood cancers. In this study on 73 acute myeloid leukemia (AML) patients (44 children and 29 adults), we first showed that high RUNX3 expression among childhood AML was associated with a shortened event-free survival, and RUNX3 was significantly underexpressed in the prognostically favorable subgroup of AML with the t(8;21) and inv(16) translocations. We further demonstrated that this RUNX3 repression was mediated not by P2 methylation, but RUNX1-ETO and CBFbeta-MYH11, the fusion products of t(8;21) and inv(16), via a novel transcriptional mechanism that acts directly or indirectly in collaboration with RUNX1, on 2 conserved RUNX binding sites in the P1 promoter. In in vitro studies, ectopically expressed RUNX1-ETO and CBFbeta-MYH11 also inhibited endogenous RUNX3 expression. Taken together, RUNX3 was the first transcriptional target found to be commonly repressed by the t(8;21) and inv(16) fusion proteins and might have an important role in core-binding factor AML."	"Clinical significance of the most common chromosome translocations in adult acute myeloid leukemia. Acquired genetic alterations such as balanced and unbalanced chromosome aberrations and submicroscopic gene mutations and changes in gene expression strongly affect pretreatment features and prognosis of adults with acute myeloid leukemia (AML). The most frequent chromosome/molecular rearrangements, that is, t(8;21)(q22;q22)/RUNX1-RUNX1T1 and inv(16)(p13q22)/t(16;16)(p13;q22)/CBFB-MYH11 characteristic of core-binding factor (CBF) AML and t(15;17)(q22;q12-21)/PML-RARA characteristic of acute promyelocytic leukemia (APL), confer favorable clinical outcome when patients receive optimal treatment, that is, regimens that include high-dose cytarabine for CBF AML and all-trans-retinoic acid and/or arsenic trioxide for APL. Recently, mutations in such genes as KIT in CBF AML and FLT3 in APL have been correlated with clinical features and/or outcome of patients with these AML subtypes, and microarray gene expression profiling has been successfully used for diagnostic purposes and to provide biologic insights. These data underscore the value of genetic testing for common translocations for diagnosis, prognostication, and, increasingly, selecting therapy in acute leukemia."	"Spectral karyotyping and fluorescence in situ hybridization analyses identified a novel three-way translocation involving inversion 16 in therapy-related acute myeloid leukemia M4eo. We report a novel three-way translocation involving inversion 16 and chromosome 12 at bands 16p13, 16q22, and 12q24 in a patient with therapy-related acute myeloid leukemia (AML)-M4eo. Conventional G-banding of bone marrow cells at diagnosis was suggestive of inv(16)(p13q22) and a translocation of chromosomes 12 and 16. The presence of inv(16) was confirmed by reverse-transcription polymerase chain reaction (RT-PCR) analysis, which corresponded to the type A CBFB-MYH11 chimeric transcript. Spectral karyotyping (SKY) analysis clearly identified a reciprocal translocation between chromosomes 12 and 16. In addition, dual-color fluorescence in situ hybridization (FISH) analysis revealed a fusion signal for the CBFB and MYH11 probes and a signal for the MYH11 probe on the der(16) chromosome, as well as a signal for the CBFB probe on the der(12) chromosome. Thus, the karyotype was refined to 46,XX,der(12)t(12;16)(q24;q22),der(16)inv(16)(p13q22)t(12;16). Although we could not establish that this complex chromosomal aberration occurred either as a one-step, three-way event, or a sequential event with inv(16)(p13q22) followed by t(12;16)(q24;q22), SKY in combination with FISH and RT-PCR analyses successfully detected this complex chromosome abnormality in the patient."	"Complementing mutations in core binding factor leukemias: from mouse models to clinical applications. A great proportion of acute myeloid leukemias (AMLs) display cytogenetic abnormalities including chromosomal aberrations and/or submicroscopic mutations. These abnormalities significantly influence the prognosis of the disease. Hence, a thorough genetic work-up is an essential constituent of standard diagnostic procedures. Core binding factor (CBF) leukemias denote AMLs with chromosomal aberrations disrupting one of the CBF transcription factor genes; the most common examples are translocation t(8;21) and inversion inv(16), which result in the generation of the AML1-ETO and CBFbeta-MYH11 fusion proteins, respectively. However, in murine models, these alterations alone do not suffice to generate full-blown leukemia, but rather, complementary events are required. In fact, a substantial proportion of primary CBF leukemias display additional activating mutations, mostly of the receptor tyrosine kinase (RTK) c-KIT. The awareness of the impact and prognostic relevance of these 'second hits' is increasing with a wider range of mutations tested in clinical trials. Furthermore, novel agents targeting RTKs are emanating rapidly and entering therapeutic regimens. Here, we present a concise review on complementing mutations in CBF leukemias including pathophysiology, mouse models, and clinical implications."	"Gene array analysis reveals a common Runx transcriptional programme controlling cell adhesion and survival. The Runx genes are important in development and cancer, where they can act either as oncogenes or tumour suppressors. We compared the effects of ectopic Runx expression in established fibroblasts, where all three genes produce an indistinguishable phenotype entailing epithelioid morphology and increased cell survival under stress conditions. Gene array analysis revealed a strongly overlapping transcriptional signature, with no examples of opposing regulation of the same target gene. A common set of 50 highly regulated genes was identified after further filtering on regulation by inducible RUNX1-ER. This set revealed a strong bias toward genes with annotated roles in cancer and development, and a preponderance of targets encoding extracellular or surface proteins, reflecting the marked effects of Runx on cell adhesion. Furthermore, in silico prediction of resistance to glucocorticoid growth inhibition was confirmed in fibroblasts and lymphoid cells expressing ectopic Runx. The effects of fibroblast expression of common RUNX1 fusion oncoproteins (RUNX1-ETO, TEL-RUNX1 and CBFB-MYH11) were also tested. Although two direct Runx activation target genes were repressed (Ncam1 and Rgc32), the fusion proteins appeared to disrupt the regulation of downregulated targets (Cebpd, Id2 and Rgs2) rather than impose constitutive repression. These results elucidate the oncogenic potential of the Runx family and reveal novel targets for therapeutic inhibition."	"Genetic basis of thoracic aortic aneurysms and dissections: focus on smooth muscle cell contractile dysfunction. Thoracic aortic aneurysms leading to type A dissections (TAAD) can be inherited in isolation or in association with genetic syndromes, such as Marfan syndrome and Loeys-Dietz syndrome. When TAAD occurs in the absence of syndromic features, it is inherited in an autosomal dominant manner with decreased penetrance and variable expression, the disease is referred to as familial TAAD. Familial TAAD exhibits significant clinical and genetic heterogeneity. The first genes identified to cause TAAD were FBN1, TGFBR2, and TGFBR1. The identification and characterization of these genes suggested that increased TGF-beta signaling plays a role in pathogenesis. The recent discovery that mutations in the vascular smooth muscle cell (SMC)-specific beta-myosin (MYH11) and alpha-actin (ACTA2) can also cause this disorder has focused attention on the importance of the maintenance of SMC contractile function in preserving aortic structure and preventing TAAD."	"Mixed-lineage eosinophil/basophil crisis in MDS: a rare form of progression. Basophilic crisis and eosinophilia are well recognized features of advanced chronic myeloid leukaemia. In other myeloid neoplasms, however, transformation with marked basophilia and eosinophilia is considered unusual. We examined the long-term follow-up of 322 patients with de novo myelodysplastic syndromes (MDS) to define the frequency of basophilic, eosinophilic and mixed lineage (basophilic and eosinophilic) transformation. Of all patients, only one developed mixed lineage crisis (&gt;or= 20% basophils and &gt;or= 20% eosinophils). In this patient, who initially suffered from chronic myelomonocytic leukaemia, basophils increased to 48% and eosinophils up to 31% at the time of progression. Mixed lineage crisis was not accompanied by an increase in blast cells or organomegaly. The presence of BCR/ABL and other relevant fusion gene products (FIP1L1/PDGFRA, AML1/ETO, PML/RAR alpha, CBF beta/MYH11) were excluded by PCR. Myelomastocytic transformation/myelomastocytic leukaemia and primary mast cell disease were excluded by histology, KIT mutation analysis, electron microscopy and immunophenotyping. Basophils were thus found to be CD123+, CD203c+, BB1+, KIT- cells, and to express a functional IgE-receptor. Among the other patients with MDS examined, 4(1.2%) were found to have marked basophilia (&gt;or= 20%) and 7(2.1%) were found to have massive eosinophilia ( &gt;or= 20%), whereas mixed-lineage crisis was detected in none of them. Mixed basophil/eosinophil crisis may develop in patients with MDS but is an extremely rare event."	"The expression of DeltaNTP73, TATP73 and TP53 genes in acute myeloid leukaemia is associated with recurrent cytogenetic abnormalities and in vitro susceptibility to cytarabine cytotoxicity. TP73 encodes for two proteins: full-length TAp73 and DeltaNp73, which have little transcriptional activity and exert dominant-negative function towards TP53 and TAp73. We compared TATP73 and DeltaNTP73 expression in acute myeloid leukaemia (AML) samples and normal CD34(+) progenitors. Both forms were more highly expressed in leukaemic cells. Amongst AML blasts, TATP73 was more expressed in AML harbouring the recurrent genetic abnormalities (RGA): PML-RARA, RUNX1-RUNX1T1 and CBFB-MYH11, whereas higher DeltaNTP73 expression was detected in non-RGA cases. TP53 expression did not vary according to DeltaNTP73/TATP73 expression ratio. Leukaemic cells with higher DeltaNTP73/TATP73 ratios were significantly more resistant to cytarabine-induced apoptosis."	"Unregulated smooth-muscle myosin in human intestinal neoplasia. A recent study described a recessive ATPase activating germ-line mutation in smooth-muscle myosin (smmhc/myh11) underlying the zebrafish meltdown (mlt) phenotype. The mlt zebrafish develops intestinal abnormalities reminiscent of human Peutz-Jeghers syndrome (PJS) and juvenile polyposis (JP). To examine the role of MYH11 in human intestinal neoplasia, we searched for MYH11 mutations in patients with colorectal cancer (CRC), PJS and JP. We found somatic protein-elongating frameshift mutations in 55% of CRCs displaying microsatellite instability and in the germ-line of one individual with PJS. Additionally, two somatic missense mutations were found in one microsatellite stable CRC. These two missense mutations, R501L and K1044N, and the frameshift mutations were functionally evaluated. All mutations resulted in unregulated molecules displaying constitutive motor activity, similar to the mutant myosin underlying mlt. Thus, MYH11 mutations appear to contribute also to human intestinal neoplasia. Unregulated MYH11 may affect the cellular energy balance or disturb cell lineage decisions in tumor progenitor cells. These data challenge our view on MYH11 as a passive differentiation marker functioning in muscle contraction and add to our understanding of intestinal neoplasia."	"Banding and molecular cytogenetic studies detected a CBFB-MYH11 fusion gene that appeared as abnormal chromosomes 1 and 16 in a baby with acute myeloid leukemia FAB M4-Eo. The acute myeloid leukemia (AML) subtype M4Eo occurs in 5% of all AML cases and is usually associated with either an inv(16)(p13.1q22) or a t(16;16)(p13.1;q22) chromosomal abnormality. At the molecular level, these abnormalities generate a CBFB-MYH11 fusion gene. Patients with this genetic alteration are usually assigned to a low-risk group and thus receive standard chemotherapy. AML-M4Eo is rarely found in infants. We describe clinical, conventional banding, and molecular cytogenetic data for a 12-month-old baby with AML-M4Eo and a chimeric CBFB-MYH11 fusion gene masked by a novel rearrangement between chromosomes 1 and 16. This rearrangement characterizes a new type of inv(16)(p13.1q22) masked by a chromosome translocation."	"Therapy-associated genetic aberrations in patients treated for non-Hodgkin lymphoma. Therapy-associated myelodysplastic syndromes and acute myeloid leukaemia (t-AML/MDS) following high dose chemotherapy are significant problems, with a cumulative incidence of 20% or more in myeloablative treatment regimen. Retrospective findings indicated that t-AML/MDS associated genetic aberrations can be observed directly after exposure to chemotherapy and can precede t-AML by several months. To determine the incidence of post-therapeutic aberrations and their predictive value, we prospectively investigated 316 samples of 95 patients with non-Hodgkin lymphoma (NHL) who were treated with intermediate and high dose chemotherapy (Arm A and B of the megaCHOEP (cyclophosphamide, doxorubicin, etoposide, vincristine, prednisolone) trial of the German High Grade NHL study group). Molecular aberrations (RUNX1/RUNX1T1, PML-RARA, CBFB-MYH11, MLL-MLLT1, BCR-ABL1) were observed in 33.3% (Arm A) and 55.4% (Arm B) of patients and in 14.9% and 28.7% of respective samples. Cytogenetic analysis of 53 NHL patients after high dose therapy showed frequent chromosomal breakage. Clonal aberrations were found in three patients. None of these patients developed a t-AML/MDS during a 3-year clinical follow up period. We concluded that the high incidence of genetic aberrations reflected a dose-dependent, transient therapy-induced genetic damage which is not predictive of a t-AML/MDS."	"A &gt;or=1 log rise in RQ-PCR transcript levels defines molecular relapse in core binding factor acute myeloid leukemia and predicts subsequent morphologic relapse. Core binding factor acute myeloid leukemia (CBF AML), with t(8;21)(q22;q22), inv(16)(p13q22) or t(16;16)(p13;q22) and the associated fusion gene transcripts AML1/ETO or CBFbeta/MYH11, has a favourable clinical prognosis although significant numbers of patients still suffer relapse. We examined the prognostic utility of serial bone marrow minimal residual disease (MRD) monitoring by RQ-PCR in a cohort of patients with CBF AML with long term clinical follow-up. Twenty-nine patients were evaluated with a median follow of 34 months. Twelve relapses occurred at a median of 11 months (range 4 - 17) from diagnosis. RQ-PCR levels at diagnosis, post-induction chemotherapy and post-consolidation were not predictive of outcome. However, a &gt;or=1 log(10) rise at any stage in transcript level relative to the level from a remission bone marrow sample correlated with inferior leukemia free survival (LFS) and imminent morphologic relapse (hazard ratio 8.6). Relapses occurred a median of 60 days (range 45 - 272) after a log(10) rise. A &gt;or=1 log(10) rise in transcript levels strongly predicts subsequent morphologic relapse in CBF AML and therefore defines molecular relapse. Our data support a simple RQ-PCR model for prediction of impending relapse which has the potential for widespread clinical applicability. Prospective identification of high risk patients will enable clinical trials to assess the efficacy of treatment initiated at molecular relapse."	"Epigenetic-based treatments emphasize the biologic differences of core-binding factor acute myeloid leukemias. Acute myeloid leukemia (AML) is a heterogeneous group of disorders characterized by an abnormal proliferation of the myeloid precursors and a maturation block. The most common chromosomal lesions in AML are the t(8;21) and inv(16). To better understand the leukemogenic mechanism of these fusion proteins, we performed gene expression studies in samples from (8;21), AML1 mutated and inv(16) patients, as well as from the Kasumi-1 cell line and a U937 cell line expressing the AML1-ETO fusion gene. To assess the influence of associated epigenetic lesions, we performed gene expression studies in Kasumi-1 cells and cells extracted from an Inv(16) patient, both treated with demethylating and HDAC inhibitor agents. Shared deregulated genes in the different types of core-binding factor leukemias were identified. We found a tight link between Inv(16) and mutant AML1 samples. Furthermore, some of the genes deregulated by the leukemogenic process reverted to their normal expression with demethylating and HDAC inhibitor treatment, highlighting the role of chromatin remodeling processes in AML."	"Dual color FISH on CBF primary acute myeloid leukemia. In acute myeloid leukemia (AML), clonal chromosomal aberrations constitute markers of diagnostic value and the molecular characterization of numerous abnormalities has greatly improved the understanding of the biology of distinct subtypes of the disease. Two of the most common recurring chromosomal abnormalities in AML are t(8;21) and inversion of chromosome 16 or its variant which belong to core binding factor (CBF) AML group. We aimed to compare between cytogenetics and dual color Fluorescence In Situ Hybridization (FISH) regarding their sensitivity for detection of CBF AML associated translocations including t(8;21) and inv(16)/t(16;16). Fifty five consecutive patients diagnosed as de novo AML were studied by chromosome banding analysis. Among them 32 patients were studied by FISH for the detection of AML1/ETO fusion gene and 11 patients for the detection of CBFbeta/MYH11. Four cases of AML (M2) subtype were positive for t(8;21) and 1 (M4) subtype was positive for inv(16) by karyotyping analysis. When FISH was applied 6 cases all of AML (M2) subtype were positive for t(8;21), 2 of them were of normal karyotype, and 5 cases all of M4EO subtype were found to be positive for inv(16)/ t(16;16) and 4 of them showed normal karyotypes. In conclusion, FISH can be used as a complementary technique to identify t(8;21) and inv16/t(16;16) in de novo AML as these abnormalities are difficult to diagnose in most cases by conventional cytogenetics alone."	"[Detection of common fusion transcript levels in untreated leukemia patients by real-time quantitative RT-PCR technique]. To evaluate levels of common specific fusion transcripts M-bcr-abl, m-bcr-abl, TEL-AML1, AML1-ETO, PML-RAR alpha, CBF beta-MYH11 in untreated leukemia patients. Specific fusion transcript levels were detected by TaqMan-based real-time quantitative RT-PCR technique in a total of 208 samples, including 195 bone marrow samples from 50 M-bcr-abl(+) chronic phase-chronic myeloid leukemia (CML-CP), 10 M-bcr-abl(+) acute lymphoblastic leukemia (ALL), 19 m-bcr-abl(+) ALL, 11 TEL-AML1(+) ALL, 30 AML1-ETO(+) acute myeloid leukemia (AML), 58 PML-RAR alpha(+) acute promyelocytic leukemia (APL) and 17 CBF beta-MYH11(+) AML patients and 13 peripheral blood samples from 13 M-bcr-abl(+) CML-CP patients. abl was chosen as internal control gene. Fusion transcript level was calculated as fusion transcript copies/abl transcript copies in percentage. Bone marrow and peripheral blood samples of CML-CP patients had similar M-bcr-abl fusion transcript levels (median 30% vs 35%, P &gt; 0.05). M- and m-bcr-abl (median 64% vs 54%) levels were similar in ALL patients (P &gt; 0.05), M-bcr-abl level was significantly higher in ALL than CML-CP patients(P &lt; 0.001). Median TEL-AML1 level was 228% in ALL patients. Among AML patients, AML1-ETO level was significantly higher than CBF beta-MYH11 and PML-RAR alpha levels (median 388% vs 145%, 388% vs 47%, all P &lt; 0.001), CBF beta-MYH11 level was significantly higher than PML-RAR alpha level (P &lt; 0.001). Fusion transcript levels of L-, V- and S-type PML-RAR alpha were 45%, 44% and 55%, respectively. L-type was significantly lower than S-type (P = 0.04). Fusion transcript levels in untreated leukemia patients were different and patient-to-patient variations did exist. Detection of fusion transcript levels in untreated leukemia patients not only provides baseline for minimal residual disease monitoring and treatment evaluation but also enable the comparison in inter-laboratory data."	"Differential expression of ionic conductances in interstitial cells of Cajal in the murine gastric antrum. Two distinct populations of interstitial cells of Cajal (ICC) exist within the tunica muscularis of the gastric antrum, and these cells serve different physiological functions. One population of ICC generates and actively propagates electrical slow waves, and the other population of ICC is innervated by excitatory and inhibitory motor neurons and mediates enteric motor neurotransmission. In spite of the key role of ICC in gastric excitability, little is known about the ionic conductances that underlie the functional diversity of these cells. In the present study we isolated ICC from the murine gastric antrum and investigated the Ca(2+)-dependent ionic conductances expressed by these cells using the patch clamp technique. Conductances in ICC were compared with those expressed in smooth muscle cells. The cells studied were identified by RT-PCR using cell-specific primers that included Myh11 (smooth muscle cells), Kit (ICC) and Uchl1 (enteric neurons) following electrophysiolgical recordings. Distinct ionic conductances were observed in Kit-positive cells. One group of ICC expressed a basal non-selective cation conductance (NSCC) that was inhibited by an increase in [Ca(2+)](i) in a calmodulin (CaM)-dependent manner. A second population of ICC generated spontaneous transient inward currents (STICs) and expressed a basal noisy NSCC that was facilitated by an increase in [Ca(2+)](i) in a CaM-dependent manner. The [Ca(2+)](i)-facilitated NSCC in ICC was blocked by the Cl(-) channel antagonists 4,4'-diisothiocyanatostilbene-2,2'-disulphonic acid (DIDS), anthracene-9-carboxylate (9-AC) and niflumic acid. These data suggest that distinct NSCC are expressed in subpopulations of ICC and these conductances may underlie the functional differences of these cells within the gastric antrum."	"A case of acute myeloid leukemia with inv(16)(p13q22) reveals a novel MYH11 breakpoint and a new CBF beta-MYH11 transcript variant. We present a case of acute myeloid leukemia (AML) with a cytogenetically typical inv(16)(p13q22), M4 morphology and eosinophilia. However, studies revealed a CBF beta-MYH11 fusion transcript which did not correspond to any of the 10 known variants. Subsequent sequencing revealed a new in-frame transcript variant resulting from a novel MYH11 exon 32 breakpoint and a seven base insertion at the fusion point. The patient remains in complete remission following standard protocols. Prognostic implications cannot, therefore, be evaluated."	"Mutations in smooth muscle alpha-actin (ACTA2) lead to thoracic aortic aneurysms and dissections. The major function of vascular smooth muscle cells (SMCs) is contraction to regulate blood pressure and flow. SMC contractile force requires cyclic interactions between SMC alpha-actin (encoded by ACTA2) and the beta-myosin heavy chain (encoded by MYH11). Here we show that missense mutations in ACTA2 are responsible for 14% of inherited ascending thoracic aortic aneurysms and dissections (TAAD). Structural analyses and immunofluorescence of actin filaments in SMCs derived from individuals heterozygous for ACTA2 mutations illustrate that these mutations interfere with actin filament assembly and are predicted to decrease SMC contraction. Aortic tissues from affected individuals showed aortic medial degeneration, focal areas of medial SMC hyperplasia and disarray, and stenotic arteries in the vasa vasorum due to medial SMC proliferation. These data, along with the previously reported MYH11 mutations causing familial TAAD, indicate the importance of SMC contraction in maintaining the structural integrity of the ascending aorta."	"Association of B-chronic lymphocytic leukemia and acute myeloid leukemia. A 62-year-old man presented with fatigue, pallor and mild weight loss. Laboratory studies showed Hb 7.6 g/dl, Hct 21.8%, WBC 108x10(9)/1, PLT 143x10(9)/1. At morphological examination, circulating cells appeared as 60% blasts and 40% lymphocytes, with smudge cells. A bone marrow aspirate showed infiltration by blasts (50%) and lymphocytes (40%); alpha-naphtyl-acetate esterase was positive in 90% of blasts, while myeloperoxidase was positive in 10%. The immunologic phenotype of blasts was characterized by the co-expression of CD13, CD33, CD14, CD4, CD15, CD64, CD117, HLA-DR, CD11b. Lymphocytes were characterized by a B-CLL immunophenotype: CD19+, CD5+, CD23+, CD20+(dim), FMC7+(dim), K light chain+(dim). Karyotype was normal and PCR assays for AML-ETO, CBFbeta-MYH11, PML-RARalpha, BCR-ABL and bcl-1/JH translocation were negative. Coexistence of CLL and AML with monoblastic features was diagnosed. Simultaneous appearance of CLL and AML has rarely been described and represents a peculiar biological phenomenon."	"Inverted and deleted chromosome 16 with deletion of 3'CBFB identified by fluorescence in situ hybridization. NA"	"Gain of multiple copies of the CBFB gene: a new genetic aberration in a case of granulocytic sarcoma. Granulocytic sarcomas (GS) are tumor masses of immature myeloid cells presenting at an extramedullary site, mainly the skin, bone, and lymph node. They are often associated with acute myeloid leukemia (AML) with monoblastic or myelomonocytic differentiation, including either AML M2 with t(8;21)(q22;q22) or AML M4Eo with inv(16)(p13q22). We present a case diagnosed with GS associated with AML M4 that presented a normal karyotype with conventional cytogenetic analysis. Although the myeloblasts did not show the inv(16)(p13q22) (CBFB/MYH11), a gain of multiple copies of the CBFB gene was detected with fluorescence in situ hybridization analysis. To our knowledge, no cases with this rare genetic anomaly have been previously described."	"Investigation of the MYH11 gene in sporadic patients with an isolated persistently patent arterial duct. Persistent patency of the arterial duct is one of the most common congenital cardiac malformations. We recently showed that mutations in the MYH11 gene result in a disease combining familial thoracic aortic aneurysm and dissection, along with patency of the arterial duct. It is also known that the smooth muscle myosin heavy chain is involved in the physiological closure of the arterial duct. With this in mind, we investigated whether the MYH11 gene was a susceptibility gene for sporadic occurrence of isolated persistent patency of the arterial duct. We sequenced the entire coding sequence of the MYH11 gene in 60 Caucasian children with persistent patency born after 36 weeks of gestation. The frequencies of rare genetic variants, and single nucleotide polymorphisms, were compared with 192 normal controls. Two possible functional missense mutations were found in two affected individuals. Another rare variant, specifically p.Arg1535Gln, and two coding polymorphisms, namely p.Ala1234Thr and p.Val1289Ala, had allele frequencies similar to those in controls. Haplotype analysis after estimating linkage disequilibrium was carried out using six polymorphisms. Individual genotypes were distributed similarly among cases and controls. Only one of the seven major haplotypes was significantly less frequent among cases, at 0.07, than among controls, when the figure was 0.22 (OR 0.23 [0.08-0.27]). Our findings suggest that the MYH11 gene is involved in only rare instances when persistent patency of the arterial duct occurs in sporadic fashion."	"Identification of differentially expressed genes in microsatellite stable HNPCC and sporadic colon cancer. Some sporadic colon cancers and hereditary nonpolyposis colorectal cancer (HNPCC) have been known by a constitutional defect in mismatch gene repair (MMR) and dysfunction in of this MMR system, which lead to an aberrant phenotype that can cause microsatellite instability. However, the clinicopathologic features of still existing microsatellite stable (MSS) colon cancer remain to be investigated. We compared the gene expression patterns of nine tumor tissues of HNPCC and nine tumor tissues of sporadic colon cancer with their adjacent pathologically normal, MSS tissues by modified differential display-polymerase chain reaction, selected four potential marker genes, and confirmed their reproducibility by reverse transcriptase-polymerase chain reaction. Reg I, MLCK, and MYH11 in tumors of MSS HNPCC showed significant differences in gene expression pattern compared with the adjacent pathologically normal tissues (P = 0.028, P = 0.002, and P = 0.001, respectively). Similar differences in expression patterns for the same set of genes were seen between the sporadic colon cancer group and their adjacent pathologically normal tissues (P = 0.012, P = 0.003, and P = 0.002, respectively). We suggest that the three cancer-associated differentially expressed genes in MSS sporadic colon cancer or MSS HNPCC might be potential tumor markers."	"Cbfbeta-SMMHC impairs differentiation of common lymphoid progenitors and reveals an essential role for RUNX in early B-cell development. The core-binding factor (CBF)-associated leukemia fusion protein CBFbeta-SMMHC impairs myeloid and lymphoid differentiation. By inhibiting RUNX function, the fusion oncoprotein predisposes specifically to acute myeloid leukemia in both patients and mouse models. We have shown that Cbfbeta-SMMHC expression leads to a sustained reduction of circulating B lymphocytes in the mouse. In this study, we demonstrate that the activation of Cbfbeta-SMMHC reduces pre-pro-B cells approximately 3-fold and pre-B cells more than 10-fold and that this differentiation block is cell-autonomous. The reduction of pre-pro-B cells coincided with an increase in apoptosis in this population. The number of common lymphoid progenitors (CLPs) were not affected; however, the expression of critical early B-cell factors Ebf1, Tcfe2a, and Pax5 was significantly reduced. In addition, Cbfbeta-SMMHC reduced Rag1 and Rag2 expression and impaired V(D)J recombination in the CLPs. Furthermore, CLPs expressing Cbfbeta-SMMHC also show inhibition of B cell-specific genes Cd79a, Igll1, VpreB1, and Blk. These results demonstrate that CBF/RUNX function is essential for the function of CLPs, the survival of pre-pro-B cells, and the establishment of a B lineage-specific transcriptional program. This study also provides a mechanistic basis for the myeloid-lineage bias of CBFbeta-SMMHC-associated leukemia."	"[Combined application of multiplex reverse transcription-polymerase chain reaction and karyotype analysis to detection of clonal chromosomal aberrations in acute myeloid leukemia]. Cytogenetic analysis plays a critical role in the diagnosis and prognosis evaluation of leukemia, but karyotype analysis is time-consuming and difficult to yield sufficient metaphases; while polymerase chain reaction (PCR) is sensitive and efficient. This study was to investigate combined application of multiplex reverse transcription-polymerase chain reaction (RT-PCR) and karyotype analysis to the detection of clonal chromosomal aberrations in acute myeloid leukemia (AML), and explore the expression and distribution of fusion genes among the subtypes of AML. Sixty AML patients were examined by multiplex RT-PCR. Cytogenetic data were obtained from 37 of them by R or G banding techniques. Fusion genes, including AML1/ETO, PML/RARalpha, CBFbeta/MYH11, MLL gene rearrangements (that is, MLL/AF6, MLL/AF9, MLL/AF10, and MLL/MLL), DEK/CAN, TEL/PDGFR, and AML1/MDS1 (EVI-1), were detected in 28 (46.7%) patients by multiplex RT-PCR. In the 37 patients who received karyotype analysis, data were available in 30 patients and cytogenetic aberrations were detected in only 14 (46.7%) of them. The detection rate of clonal chromosomal aberrations was enhanced to 59.5% by combined application of multiplex RT-PCR and karyotype analysis. Multiplex RT-PCR combined with karyotype analysis can improve the detection rate of clonal chromosomal aberrations in AML."	"[Transient chromosomal abnormalities following autologous peripheral blood stem cell transplantation for acute myelogenous leukemia]. Twenty-three patients with acute myelogenous leukemia (AML) have received autologous hematopoietic stem cell transplantation (autoHSCT) in our institute from 1997 to 2005. Among them, 3 patients relapsed, and the other 4 patients (17%) showed cytogenetic abnormalities after the autoHSCT. In these 4 patients with AML1/MTG8 or CBFbeta/MYH11 AML, RT-PCR findings using bone marrow cells were all negative when a cytogenetic abnormality was detected. Myelodysplasia was not detected in the bone marrow and no abnormal findings were seen in the peripheral blood. Cytogenetic abnormalities were detected 12-48 months after AutoHSCT, which disappeared in three patients and decreased in the remaining one patient with a median follow up time of 51 months (30-72 months) after their detection. We present our finding together with a review of the literature on post-autoHSCT cytogenetic abnormalities not related to relapse or secondary leukemia/myelodysplastic syndrome."	"An unusual transduction pathway in human tonic smooth muscle myosin. The motor protein myosin binds actin and ATP, producing work by causing relative translation of the proteins while transducing ATP free energy. Smooth muscle myosin has one of four heavy chains encoded by the MYH11 gene that differ at the C-terminus and in the active site for ATPase due to alternate splicing. A seven-amino-acid active site insert in phasic muscle myosin is absent from the tonic isoform. Fluorescence increase in the nucleotide sensitive tryptophan (NST) accompanies nucleotide binding and hydrolysis in several myosin isoforms implying it results from a common origin within the motor. A wild-type tonic myosin (smA) construct of the enzymatic head domain (subfragment 1 or S1) has seven tryptophan residues and nucleotide-induced fluorescence enhancement like other myosins. Three smA mutants probe the molecular basis for the fluorescence enhancement. W506+ contains one tryptophan at position 506 homologous to the NST in other myosins. W506F has the native tryptophans except phenylalanine replaces W506, and W506+(Y499F) is W506+ with phenylalanine replacing Y499. W506+ lacks nucleotide-induced fluorescence enhancement probably eliminating W506 as the NST. W506F has impaired ATPase activity but retains nucleotide-induced fluorescence enhancement. Y499F replacement in W506+ partially rescues nucleotide sensitivity demonstrating the role of Y499 as an NST facilitator. The exceptional response of W506 to active site conformation opens the possibility that phasic and tonic isoforms differ in how influences from active site ATPase propagate through the protein network."	"Semiquantitative RT-PCR evaluation of the MDR1 gene expression in patients with acute myeloid leukemia. Resistance to chemotherapy is one of the major obstacles to effective treatment in acute myeloid leukemia (AML). The most extensively studied protein involved in multidrug resistance (MDR) is the transmembrane glycoprotein P (P-gp), the product of the multidrug resistance gene 1 (MDR1). MDR1/P-gp overexpression is frequently observed in hematological malignancies, especially in acute leukemia, and has been reported to correlate with poor prognosis in acute myeloid leukemia (AML). The aim of this study was to evaluate the level of MDR1 gene expression in bone marrow and/or peripheral blood samples in 92 AML patients in relation to their prognosis. The analyzed group was stratified according to presence or absence of prognostically favorable aberrations (PFAs), such as t(15;17) with PML/RARalpha fusion gene, t(8;21) with AML1/ETO fusion gene or inv(16)/ t(16;16) with CBFbeta/MYH11 fusion gene. These prognostically favorable aberrations were detected by RT-PCR and/or standard cytogenetic techniques. MDR1 expression was detected by semiquantitative comparative RT-PCR using software-based evaluation. The levels of MDR1 expression in the bone marrow predicted induction of complete remission in the whole group of analyzed patients (P = 0.032). They were significantly lower in PFA negative patients who achieved complete remission compared to those who failed to achieve complete remission (P = 0.008). In PFA negative patients, MDR1 expression was higher when compared to PFA positive patients (P = 0.055). No such difference was found when analyzing peripheral blood samples. Our experiments showed no impact of MDR1 expression in bone marrow or peripheral blood cells on overall survival (P = 1.000 and P = 0.903 respectively). In summary, the present study shows the prognostic impact of MDR1 expression on induction of complete remission in AML patients. We confirmed that MDR1 overexpression is an unfavorable prognostic factor in AML, which may help to stratify the risk rate of PFA negative patients. In future studies, quantitative detection of MDR1 expression might be a valuable tool to predict prognosis in this patient subset."	"Molecular methods used for detection of minimal residual disease following hematopoietic stem cell transplantation in myeloid disorders. Monitoring of minimal residual disease (MRD) in patients with acute or chronic myeloid disorders is routinely performed after allogeneic or autologous transplantation. The detection of MRD helps to identify patients who are at high risk for leukemic relapse after transplantation. The most commonly used techniques for MRD detection are qualitative and quantitative PCR methods, fluorescence in situ hybridization (FISH), fluorescence-activated cell sorting (FACS), and cytogenetic analysis, which are often performed complementary in order to assess more precisely MRD. Here, we describe the most used sensitive real-time reverse-transcription (RT)-PCR methods for chronic and acute myeloid disorders. Besides protocols for real-time RT-PCR and multiplex RT-PCR procedures for the most common fusion-gene transcripts in acute and chronic myeloid disorders, methods for detection of disease-specific genetic mutated alterations as FLT3 gene-length mutations, and aberrantly expressed genes as WT1 gene transcripts, are described in detail for daily use."	"MYH11 mutations result in a distinct vascular pathology driven by insulin-like growth factor 1 and angiotensin II. Non-syndromic thoracic aortic aneurysms and dissections (TAADs) are inherited in an autosomal dominant manner in approximately 20% of cases. Familial TAAD is genetically heterogeneous and four loci have been mapped for this disease to date, including a locus at 16p for TAAD associated with patent ductus arteriosus (PDA). The defective gene at the 16p locus has recently been identified as the smooth muscle cell (SMC)-specific myosin heavy chain gene (MYH11). On sequencing MYH11 in 93 families with TAAD alone and three families with TAAD/PDA, we identified novel mutations in two families with TAAD/PDA, but none in families with TAAD alone. Histopathological analysis of aortic sections from two individuals with MYH11 mutations revealed SMC disarray and focal hyperplasia of SMCs in the aortic media. SMC hyperplasia leading to significant lumen narrowing in some of the vessels of the adventitia was also observed. Insulin-like growth factor-1 (IGF-1) was upregulated in mutant aortas as well as explanted SMCs, but no increase in transforming growth factor-beta expression or downstream targets was observed. Enhanced expression of angiotensin-converting enzyme and markers of Angiotensin II (Ang II) vascular inflammation (macrophage inflammatory protein-1alpha and beta) were also found. These data suggest that MYH11 mutations are likely to be specific to the phenotype of TAAD/PDA and result in a distinct aortic and occlusive vascular pathology potentially driven by IGF-1 and Ang II."	"Comparative analysis of genes regulated in acute myelomonocytic leukemia with and without inv(16)(p13q22) using microarray techniques, real-time PCR, immunohistochemistry, and flow cytometry immunophenotyping. Acute myeloid leukemia with inv(16)(p13q22), also known as M4Eo, is a distinct type of leukemia with characteristic clinicopathologic and cytogenetic features. Patients with M4Eo have monocytosis, high blast counts, and abnormal bone marrow eosinophils that contain large basophilic granules. The inv(16)(p13q22) or, less commonly, the t(16;16)(p13;q22) causes fusion of the CBFbeta gene at 16q22 and the MYH11 gene at 16p13, creating the novel chimeric protein CBFbeta-MYH11. To understand the underlying molecular mechanisms unique to M4Eo biology, we determined the gene expression profile of M4Eo cases by using cDNA and long oligonucleotide microarrays. Cases of acute myelomonocytic leukemia without CBFbeta-MYH11 (M4) acted as our control. We found that in the gene expression profile of M4Eo, NF-kappaB activators and inhibitors were upregulated and downregulated, respectively, suggesting that the NF-kappaB signaling pathway is activated at a higher level in M4Eo than in acute myelomonocytic leukemia M4. In addition, the gene expression profile of M4Eo indicates high cell proliferation and low apoptosis. We used real-time PCR, immunohistochemistry, and flow cytometry immunophenotyping to confirm some of our microarray data. These findings most likely represent the functional consequences of the abnormal chimeric protein CBFbeta-MYH11, which is unique to this disease, and suggest that NF-kappaB is a potential therapeutic target for treating M4Eo patients."	"MN1 overexpression is an important step in the development of inv(16) AML. The gene encoding the transcriptional co-activator MN1 is the target of the reciprocal chromosome translocation (12;22)(p13;q12) in some patients with acute myeloid leukemia (AML). In addition, expression array analysis showed that MN1 was overexpressed in AML specified by inv(16), in some AML overexpressing ecotropic viral integration 1 site (EVI1) and in some AML without karyotypic abnormalities. Here we describe that mice receiving transplants of bone marrow (BM) overexpressing MN1 rapidly developed myeloproliferative disease (MPD). This BM also generated myeloid cell lines in culture. By mimicking the situation in human inv(16) AML, forced coexpression of MN1 and Cbfbeta-SMMHC rapidly caused AML in mice. These findings identify MN1 as a highly effective hematopoietic oncogene and suggest that MN1 overexpression is an important cooperative event in human inv(16) AML."	"[Real-time PCR array for simultaneous detection of 37 kinds of fusion genes in leukemia]. To develop a real-time PCR array for simultaneous quantitative detection of translocations/chromosomal aberrations in patients with leukemia, and to investigate the feasibility and utility thereof. By construction and optimization a set of specific primes (totally 82 primers), an array containing 66 parallel PCR reactions was developed. That array was used on the specimens of bone marrow or peripheral blood from 31 patients with leukemia to detect simultaneously 37 fusion genes and 4 proto-oncogene activations often occurring in patients with leukemia. Eva Green fluorescent dye method was chosen in the protocol. Relative quantification was performed by Ct analysis and the result was expressed as the ratio of the target gene versus the internal control gene (ABL). Six patients with chronic myelocytic leukemia (CML) among the 31 cases underwent prior to and after treatment so as to study the expression changes of fusion genes and/or proto-oncogene. The established PCR array showed high efficiency of amplification and good sensibility (232 copies/microl) in the fusion gene detected. The standard curve had a satisfying linear range (10(2) approximately 10(8) copies/microl), showing a good reproducibility. Fourteen fusion genes, including PML/RARalpha, PLZF/RARalpha, BCR/ABL, MLL/AF1, MLL/AF6, MLL/AF10, AML/Eto, CBFbeta/MYH11, TLS/ERG, TEL/AML1, MOZ/CBP, MLL/hCDCrel, LAF4/MLLT2, and FIP1L1/PDGFRalpha, and activation of all 4 proto-oncogenes were found in the 31 samples. In one patient, 5 fusion genes and activation of 2 proto-oncogenes were observed. Such results were compared with those of RT-nested PCR in 28 samples. The comparison showed that this array was a bit less sensitive than RT-nested PCR, however, without significant difference between them (P = 0.009). The expression of BCR/ABL fusion gene, WT1 gene, and EVI1 gene decreased after treatment in the 6 CML patients, which was in accordance with the clinical features. The PCR array newly-established successfully detects various leukemia related fusion genes and proto-oncogene activation. It is useful in molecule diagnosis and monitoring minimal residual disease in leukemia, and therapeutic effect monitoring."	"Lymphoplasmacytic lymphoma/Waldenström macroglobulinemia with inv(16)(p13q22) as a sole genetic abnormality. Inversion of chromosome 16, inv(16)(p13q22), juxtaposes the core binding factor beta (CBFB) and myosin heavy chain 11 (MYH11) genes, resulting in a myeloid leukemic disease phenotype characterized by increased bone marrow and peripheral blood blasts with myelomonocytic antigen expression and an accompanying eosinophilia. This cytogenetic abnormality has been reported in a variety of other neoplasms, in which it generally occurs as part of a complex karyotype, including rare B-lineage non-Hodgkin lymphomas. We report a case of clinically, morphologically, and immunologically typical lymphoplasmacytic lymphoma/Waldenström macroglobulinemia in which a majority of the malignant cells had an inv(16)(p13q22) as a sole abnormality. We review the literature and discuss the possible role of this genetic lesion in B-cell neoplasia."	"Rare CBFB-MYH11 fusion transcripts in AML with inv(16)/t(16;16) are associated with therapy-related AML M4eo, atypical cytomorphology, atypical immunophenotype, atypical additional chromosomal rearrangements and low white blood cell count: a study on 162 patients. The spectrum of CBFB-MYH11 fusion transcripts in acute myeloid leukemia (AML) M4eo with inv(16)/t(16;16) is heterogeneous. Approximately 85% show type A CBFB-MYH11 fusion transcripts. In addition, more than 10 different fusion transcripts have been reported. The prognostic impact and biological background of rare fusion transcripts remain open. In this study, a molecular characterization of CBFB-MYH11 transcripts in 162 patients with CBFB-MYH11 positive AML at diagnosis was performed. In total, 128 patients (79.0%) showed the fusion transcript type A, whereas nine different rare CBFB-MYH11 fusion genes were detected in 34 cases (21.0%). Rare fusion transcripts were found more frequently in therapy-related AML (P=0.0106). Numerical gains of the chromosomes 8, 21 and 22 were more frequently associated with type A (28.3%) than with rare fusions (12.9%) (P=0.012). Median white blood cell (WBC) count was higher in type A (35.4 G/l; range=1.1-279 G/l) than in cases with rare types (7.8 G/l; range=0.8-148.0 G/l) (P&lt;0.0001). Rare fusion transcripts were correlated with an atypical cytomorphology not primarily suggestive for the FAB subtype M4eo (P=0.0203). Immunophenotype revealed lower CD2, CD13, CD33 and CD90 levels than in type A fusion cases (P=0.036, 0.002, 0.029 and 0.045, respectively). However, the type of fusion was not an independent prognostic parameter."	"Dry-reagent disposable dipstick test for visual screening of seven leukemia-related chromosomal translocations. We report the first dry-reagent, disposable, dipstick test for molecular screening of seven chromosomal translocations associated with acute and chronic leukemia. The dipstick assay offers about 10 times higher detectability than agarose gel electrophoresis and, contrary to electrophoresis, allows confirmation of the sequence of the polymerase chain reaction (PCR) product by hybridization within a few minutes without the need of instrumentation. Biotinylated amplified DNA is hybridized with a dA-tailed probe and applied to the strip, which contains oligo(dT)-conjugated gold nanoparticles in dry form. Upon immersion of the strip in the appropriate buffer, the solution migrates and the hybrids are captured by immobilized streptavidin at the test zone generating a characteristic red line. The excess nanoparticles are captured by oligo(dA) strands immobilized at the control zone of the strip producing a second red line. We studied the: t(9;22)(q34;q11), t(15;17)(q22;q21), t(11;17)(q23;q21), t(5;17)(q32;q21), t(11;17)(q13;q21), t(8,21)(q22;q22) and inv(16)(p13;q22) that generate the BCR-ABL, PML-RARa, PLZF-RARa, NPM-RARa, NuMA-RARa, AML1-ETO and CBFbeta-MYH11 fusion genes, respectively. A single K562 cell was detectable amidst 10(6) normal leukocytes. A dipstick test was developed for actin, as a reference gene. The dipstick assay with appropriate probes can be used for identification of the fusion transcripts involved in the translocation."	"PET-imaging as a useful tool for early detection of the relapse site in the management of primary myeloid sarcoma. NA"	"CBFB-MYH11 hinders early T-cell development and induces massive cell death in the thymus. Recent studies suggest that the chromosome 16 inversion, associated with acute myeloid leukemia M4Eo, takes place in hematopoietic stem cells. If this is the case, it is of interest to know the effects of the resulting fusion gene, CBFB-MYH11, on other lineages. Here we studied T-cell development in mice expressing Cbfb-MYH11 and compared them with mice compound-heterozygous for a Cbfb null and a hypomorphic GFP knock-in allele (Cbfb(-/GFP)), which had severe Cbfb deficiency. We found a differentiation block at the DN1 stage of thymocyte development in Cbfb-MYH11 knock-in chimeras. In a conditional knock-in model in which Cbfb-MYH11 expression was activated by Lck-Cre, there was a 10-fold reduction in thymocyte numbers in adult thymus, resulting mainly from impaired survival of CD4+CD8+ thymocytes. Although Cbfb-MYH11 derepressed CD4 expression efficiently in reporter assays, such derepression was less pronounced in vivo. On the other hand, CD4 expression was derepressed and thymocyte development was blocked at DN1 and DN2 stages in E17.5 Cbfb(-/GFP) thymus, with a 20-fold reduction of total thymocyte numbers. Our data suggest that Cbfb-MYH11 suppressed Cbfb in several stages of T-cell development and provide a mechanism for CBFB-MYH11 association with myeloid but not lymphoid leukemia."	"Genetic basis of thoracic aortic aneurysms and dissections: potential relevance to abdominal aortic aneurysms. Ascending thoracic aortic aneurysms leading to type A dissections (TAAD) have long been known to occur in association with a genetic syndrome such as Marfan syndrome (MFS). More recently, TAAD has also been demonstrated to occur as an autosomal dominant disorder in the absence of syndromic features, termed familial TAAD. Familial TAAD demonstrates genetic heterogeneity, and linkage studies have identified TAAD loci at 5q13-14 (TAAD1), 11q23 (FAA1), 3p24-25 (TAAD2), and 16p12.2-13.13. The genetic heterogeneity of TAAD is reflected by variation in disease in terms of the age of onset, progression, penetrance, and association with additional cardiac and vascular features. The underlying genetic heterogeneity of TAAD is reflected in the phenotypic variation associated with familial TAAD with respect to age of onset, progression, penetrance, and association with additional cardiac and vascular features. Mutations in the TGFBR2 gene have been identified as the cause of disease linked to the 3p24-25 locus, implicating dysregulation of TGF-beta signaling in TAAD. Mutations in myosin heavy chain (MYH11), a smooth muscle cell-specific contractile protein, have been identified in familial TAAD associated with patent ductus arteriosus (PDA) linked to 16p12.2-12.13. The identification of these novel disease pathways has led to new directions for future research addressing the pathology and treatment of TAAD."	"Cbfbeta reduces Cbfbeta-SMMHC-associated acute myeloid leukemia in mice. The gene encoding for core-binding factor beta (CBFbeta) is altered in acute myeloid leukemia samples with an inversion in chromosome 16, expressing the fusion protein CBFbeta-SMMHC. Previous studies have shown that this oncoprotein interferes with hematopoietic differentiation and proliferation and participates in leukemia development. In this study, we provide evidence that Cbfbeta modulates the oncogenic function of this fusion protein. We show that Cbfbeta plays an important role in proliferation of hematopoietic progenitors expressing Cbfbeta-SMMHC in vitro. In addition, Cbfbeta-SMMHC-mediated leukemia development is accelerated in the absence of Cbfbeta. These results indicate that the balance between Cbfbeta and Cbfbeta-SMMHC directly affects leukemia development, and suggest that CBF-specific therapeutic molecules should target CBFbeta-SMMHC function while maintaining CBFbeta activity."	"Immunohistochemical analysis of CBFbeta-SMMHC protein reveals a unique nuclear localization in acute myeloid leukemia with inv(16)(p13q22). The inv(16)(p13q22) or, less commonly the t(16;16)(p13;q22), is characteristic of acute myeloid leukemia (AML) with abnormal bone marrow eosinophils, also known as AML-M4Eo. This abnormality creates a fusion gene, 5' core binding factor beta (CBF-beta) gene and the 3' MYH11 gene, the latter encoding smooth muscle myosin heavy chain gene (SMMHC). Detection of this abnormality is important for diagnosis and is most commonly done by cytogenetics or molecular methods. In this study, we determined the utility of immunohistochemical and immunofluorescence methods using a rabbit polyclonal antibody (AH107) against the C-terminus of the CBFbeta-SMMHC chimeric protein for diagnosis of AML-M4Eo. Thirty-nine AML-M4Eo cases and 55 cases of other types of AML were evaluated. Immunohistochemical analysis of routinely processed paraffin-embedded bone marrow sections showed that CBFbeta-SMMHC staining is predominantly nuclear in all cases of AML-M4Eo and is not nuclear in other AML types. Four cases of AML-M4Eo double-stained for CBFbeta-SMMHC and CD34 showed the fusion protein in CD34-positive blasts. Indirect immunofluorescence analysis of fresh bone marrow aspirate smears showed that AML-M4Eo blasts have a distinct nuclear microgranular or fine-speckled pattern of staining, with or without faint cytoplasmic staining. By contrast, other types of AML and normal bone marrow specimens were either negative or had a nonspecific pattern of staining. In summary, immunostaining for CBFbeta-SMMHC using either immunohistochemical or immunofluorescense analysis as described here reveals a distinctive pattern of staining for AML-M4Eo. This approach is a specific, reliable, and convenient alternative to cytogenetic and molecular methods for the diagnosis of AML-M4Eo and may be particularly helpful in cases with indeterminate histologic features or in cases in which cytogenetic and molecular studies are either uninformative or not available."	"Detection of the CBFB/MYH11 fusion gene in de novo acute myeloid leukemia (AML): a single-institution study of 224 Japanese AML patients. The cytogenetic findings in acute myeloid leukemia (AML) are a powerful prognostic indicator. Among these abnormalities, the World Health Organization has classified inv(16)(p13q22), which is closely associated with the M4E classification in the French-American-British system, as indicating a good-risk AML. However, this chromosomal abnormality can often be difficult to detect. In this study, we used RT-PCR and FISH analysis to examine 224 Japanese adult de novo AML patients for the presence of the CBFB/MYH11 fusion transcript at the time of diagnosis. The CBFB/MYH11 fusion gene was detected in 17 patients (7.6%): eight patients had the inv(16) chromosome and in all of them it was M4E; nine patients did not have abnormalities in chromosome 16. AML with the CBFB/MYH11 fusion gene but without inv(16) was found in M2, M4, and M5, but not in M4E patients. There were no statistically significant differences in the clinical features of patients with the inv(16) and those with the cryptic inv(16) chromosome. These results indicate that even if eosinophilia is not found, molecular screening for CBFB/MYH11 fusion gene should be performed in all AML patients at the time of diagnosis to help guide disease management."	"Common gene expression signatures in t(8;21)- and inv(16)-acute myeloid leukaemia. Human acute myeloid leukaemia (AML) involving a core-binding factor (CBF) transcription factor is called CBF leukaemia. In these leukaemias, AML1 (RUNX1, PEBP2alphaB, CBFalpha2)-MTG8 (ETO) and CBFbeta (PEBP2beta)-MYH11 chimaeric proteins are generated by t(8;21) and inv(16) respectively. We analysed gene expression profiles of leukaemic cells by microarray, and selected genes whose expression appeared to be modulated in association with t(8;21) and inv(16). In a pair-wise comparison, 15% of t(8;21)-associated transcripts exhibited high or low expression in inv(16)-AML, and 26% of inv(16)-associated transcripts did so equivalently in t(8;21)-AML. These common elements in gene expression profiles between t(8;21)- and inv(16)-AML probably reflect the situation that AML1-MTG8 and CBFbeta-MYH11 chimaeric proteins affect a common set of target genes in CBF leukaemic cells. On the other hand, 38% of t(8;21)-associated and 24% of inv(16)-associated transcripts were regulated in t(8;21)- and inv(16)-specific manners. These distinct features of t(8;21)- and inv(16)-associated genes correlate with the bimodular structures of the chimaeric proteins (CBF-related AML1 and CBFbeta portions, and CBF-unrelated MTG8 and MYH11 portions)."	"Acute leukemia: subtype discovery and prediction of outcome by gene expression profiling. Contemporary treatment of acute leukemia requires the accurate assignment of patients at diagnosis to specific risk groups. To determine whether gene expression profiling could enhance risk assignment, we used oligonucleotide microarrays to analyze the pattern of genes expressed in leukemic blasts from 360 pediatric ALL patients and 130 pediatric AML patients. Our analysis demonstrates that the single platform of gene expression profiling can accurately identify the known prognostically important genetic subtypes of ALL, including T-ALL, E2A-PBX1, TEL-AML1, MLL rearrangements, BCR-abl, and hyperdiploid &gt;50 chromosomes, and AML, including t(15;17)[PML-RARalpha], t(8;21)[AML1-ETO], inv(16)[CBFbeta-MYH11], MLL gene rearrangement, and cases with FAB-M7 morphology. In addition, within ALL, a novel subgroup was identified based on its unique expression profile. Examination of the gene expression signatures for the different genetic subtypes of acute leukemia provided important insights into the molecular pathology of these leukemias."	"Gene expression profiling of acute myeloid leukemia with translocation t(8;16)(p11;p13) and MYST3-CREBBP rearrangement reveals a distinctive signature with a specific pattern of HOX gene expression. Acute myeloid leukemia (AML) with translocation t(8;16)(p11;p13) is an infrequent leukemia subtype with characteristic clinicobiological features. This translocation leads to fusion of MYST3 (MOZ) and CREBBP (CBP) genes, probably resulting in a disturbed transcriptional program of a myelomonocytic precursor. Nonetheless, its gene expression profile is unknown. We have analyzed the gene expression profile of 23 AML patients, including three with molecularly confirmed MYST3-CREBBP fusion gene, using oligonucleotide U133A arrays (Affymetrix). MYST3-CREBBP cases clustered together and clearly differentiated from samples with PML-RARalpha, RUNX1-RUNX1T1, and CBFbeta-MYH11 rearrangements. The relative expression of 46 genes, selected according to their differential expression in the high-density array study, was analyzed by low-density arrays in an additional series of 40 patients, which included 7 MYST3-CREBBP AML cases. Thus, genes such as prolactin (PRL) and proto-oncogene RET were confirmed to be specifically overexpressed in MYST3-CREBBP samples whereas genes such as CCND2, STAT5A, and STAT5B were differentially underexpressed in this AML category. Interestingly, MYST3-CREBBP AML exhibited a characteristic pattern of HOX expression, with up-regulation of HOXA9, HOXA10, and cofactor MEIS1 and marked down-regulation of other homeobox genes. This profile, with overexpression of FLT3, HOXA9, MEIS1, AKR7A2, CHD3, and APBA2, partially resembles that of AML with MLL rearrangement. In summary, this study shows the distinctive gene expression profile of MYST3-CREBBP AML, with overexpression of RET and PRL and a specific pattern of HOX gene expression."	NA	NA
+"MYLK"	"familial thoracic aortic aneurysm and aortic dissection"	"Circular RNA MYLK Promotes Glycolysis and Proliferation of Non-Small Cell Lung Cancer Cells by Sponging miR-195-5p and Increasing Glucose Transporter Member 3 Expression. Circular RNAs (circRNAs) are deregulated in many types of human cancers, including non-small cell lung cancer (NSCLC). In this study, we aimed to explore the functional role of circMYLK in NSCLC. The expression levels of circMYLK and miR-195-5p in NSCLC tissues and cell lines were detected by RT-qPCR analysis. MTT assay, colony formation assay and transwell assay were performed to investigate the effects of circMYLK and miR-195-5p on the malignant phenotypes of NSCLC cells. The glucose consumption and lactate production of NSCLC cells were detected using commercial kits. The direct binding relation between circMYLK and miR-195-5p in NSCLC was predicted by bioinformatics analysis and validated by dual-luciferase reporter assay. The results showed that circMYLK was significantly up-regulated in NSCLC tissues and cell lines, and its high expression was closely associated with deleterious clinicopathological characteristics and poor prognosis of NSCLC patients. Knockdown of circMYLK remarkably inhibited the malignant phenotypes of NSCLC cells, including proliferation, migration, invasion, glucose consumption and lactate production. Moreover, circMYLK was identified as a molecule sponge for miR-195-5p, and glucose transporter member 3 (GLUT3) was shown to be a target gene of miR-195-5p in NSCLC. Further rescue experiments revealed that the oncogenic effects of circMYLK on NSCLC cells could be largely abrogated by co-transfection with miR-195-5p mimic. In summary, our study provides convincing evidence that circMYLK serves as a tumor promoter in NSCLC and can be used as a potential therapeutic target for NSCLC patients."	"Genomic landscape of metastatic breast cancer identifies preferentially dysregulated pathways and targets. Nearly all breast cancer deaths result from metastatic disease. Despite this, the genomic events that drive metastatic recurrence are poorly understood. We performed whole-exome and shallow whole-genome sequencing to identify genes and pathways preferentially mutated or copy-number altered in metastases compared with the paired primary tumors from which they arose. Seven genes were preferentially mutated in metastases - MYLK, PEAK1, SLC2A4RG, EVC2, XIRP2, PALB2, and ESR1 - 5 of which are not significantly mutated in any type of human primary cancer. Four regions were preferentially copy-number altered: loss of STK11 and CDKN2A/B, as well as gain of PTK6 and the membrane-bound progesterone receptor, PAQR8. PAQR8 gain was mutually exclusive with mutations in the nuclear estrogen and progesterone receptors, suggesting a role in treatment resistance. Several pathways were preferentially mutated or altered in metastases, including mTOR, CDK/RB, cAMP/PKA, WNT, HKMT, and focal adhesion. Immunohistochemical analyses revealed that metastases preferentially inactivate pRB, upregulate the mTORC1 and WNT signaling pathways, and exhibit nuclear localization of activated PKA. Our findings identify multiple therapeutic targets in metastatic recurrence that are not significantly mutated in primary cancers, implicate membrane progesterone signaling and nuclear PKA in metastatic recurrence, and provide genomic bases for the efficacy of mTORC1, CDK4/6, and PARP inhibitors in metastatic breast cancer."	"Examination of Molecular Effects of MYLK Deletion in a Patient with Extensive Aortic, Carotid, and Abdominal Dissections That Underlie the Genetic Dysfunction. We describe the phenotype of a patient with extensive aortic, carotid, and abdominal dissections. The proband was found to have a heterozygous deletion of exons 21-34 in MYLK, which is a rare finding, as deletions in this gene have been infrequently reported. We describe this finding following detection in a proband with an extensive history of aortic, carotid, and abdominal dissections. Neoteric molecular modeling techniques to help determine the impact of this deletion on protein function indicated loss of function due to lack of any kinase domain. We also provide the electrostatics calculations from the wild type and mutant variant. Through a combined multiomic approach of clinical, functional, and protein informatics, we arrive at a data fusion for determination of pathogenicity embedded within the genetic code for this particular genetic variant, which, as a platform, continues to broaden its scope across the field of variants of uncertain significance classification."	"Fetal megacystis-microcolon: Genetic mutational spectrum and identification of PDCL3 as a novel candidate gene. Megacystis-microcolon-intestinal-hypoperistalsis syndrome (MMIHS) is a severe congenital visceral myopathy characterized by an abdominal distension due to a large non-obstructed urinary bladder, a microcolon and intestinal hypo- or aperistalsis. Most of the patients described to date carry a sporadic heterozygous variant in ACTG2. More recently, recessive forms have been reported and mutations in MYH11, LMOD1, MYLK and MYL9 have been described at the molecular level. In the present report, we describe five patients carrying a recurrent heterozygous variant in ACTG2. Exome sequencing performed in four families allowed us to identify the genetic cause in three. In two families, we identified variants in MMIHS causal genes, respectively a nonsense homozygous variant in MYH11 and a previously described homozygous deletion in MYL9. Finally, we identified compound heterozygous variants in a novel candidate gene, PDCL3, c.[143_144del];[380G&gt;A], p.[(Tyr48Ter)];[(Cys127Tyr)]. After cDNA analysis, a complete absence of PDLC3 expression was observed in affected individuals, indicating that both mutated transcripts were unstable and prone to mediated mRNA decay. PDCL3 encodes a protein involved in the folding of actin, a key step in thin filament formation. Presumably, loss-of-function of this protein affects the contractility of smooth muscle tissues, making PDCL3 an excellent candidate gene for autosomal recessive forms of MMIHS."	"An autophagic deficit in the uterine vessel microenvironment provokes hyperpermeability through deregulated VEGFA, NOS1, and CTNNB1. The uterus undergoes vascular changes during the reproductive cycle and pregnancy. Steroid hormone deprivation induces macroautophagy/autophagy in major uterine cell types. Herein, we explored the functions of uterine autophagy using the Amhr2-Cre-driven atg7 deletion model. Deletion of Atg7 was confirmed by functional deficit of autophagy in uterine stromal, myometrial, and vascular smooth muscle cells, but not in endothelial cells. atg7<sup>d/d</sup> uteri exhibited enhanced stromal edema accompanied by dilation of blood vessels. Ovariectomized atg7<sup>d/d</sup> uteri showed decreased expression of endothelial junction-related proteins, such as CTNNB1/beta-catenin, with increased vascular permeability, and increased expression of VEGFA and NOS1. Nitric oxide (NO) was shown to mediate VEGFA-induced vascular permeability by targeting CTNNB1. NO involvement in maintaining endothelial junctional stability in atg7<sup>d/d</sup> uteri was confirmed by the reduction in extravasation following treatment with a NOS inhibitor. We also showed that atg7<sup>d/d</sup> uterine phenotype improved the fetal weight:placental weight ratio, which is one of the indicators of assessing the status of preeclampsia. We showed that autophagic deficit in the uterine vessel microenvironment provokes hyperpermeability through the deregulation of VEGFA, NOS1, and CTNNB1. ACTA2: actin, alpha 2, smooth muscle, aortic; Amhr2: anti-Mullerian hormone type 2 receptor; ANGPT1: angiopoietin 1; ATG: autophagy-related; CDH5: cadherin 5; CLDN5: claudin 5; COL1A1: collagen, type I, alpha 1; CSPG4/NG2: chondroitin sulfate proteoglycan 4; CTNNB1: catenin (cadherin associated protein), beta 1; DES: desmin; EDN1: endothelin 1; EDNRB: endothelin receptor type B; F3: coagulation factor III; KDR/FLK1/VEGFR2: kinase insert domain protein receptor; LYVE1: lymphatic vessel endothelial hyaluronan receptor 1; MAP1LC3B: microtubule-associated protein 1 light chain 3 beta; MCAM/CD146: melanoma cell adhesion molecule; MYL2: myosin, light polypeptide 2, regulatory, cardiac, slow; MYLK: myosin, light polypeptide kinase; NOS1/nNOS: nitric oxide synthase 1, neuronal; NOS2/iNOS: nitric oxide synthase 2, inducible; NOS3/eNOS: nitric oxide synthase 3, endothelial cell; OVX: ovariectomy; PECAM1/CD31: platelet/endothelial cell adhesion molecule 1; POSTN: periostin, osteoblast specific factor; SQSTM1: sequestosome 1; TEK/Tie2: TEK receptor tyrosine kinase; TJP1/ZO-1: tight junction protein 1; TUBB1, tubulin, beta 1 class VI; USC: uterine stromal cell; VEGFA: vascular endothelial growth factor A; VSMC: vascular smooth muscle cell."	"Identification of Potential Key Genes for Pathogenesis and Prognosis in Prostate Cancer by Integrated Analysis of Gene Expression Profiles and the Cancer Genome Atlas. Background: Prostate cancer (PCa)is a malignancy of the urinary system with a high incidence, which is the second most common male cancer in the world. There are still huge challenges in the treatment of prostate cancer. It is urgent to screen out potential key biomarkers for the pathogenesis and prognosis of PCa. Methods: Multiple gene differential expression profile datasets of PCa tissues and normal prostate tissues were integrated analysis by R software. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis of the overlapping Differentially Expressed Genes (DEG) were performed. The STRING online database was used in conjunction with Cytospace software for protein-protein interaction (PPI) network analysis to define hub genes. The relative mRNA expression of hub genes was detected in Gene Expression Profiling Interactive Analysis (GEPIA) database. A prognostic gene signature was identified by Univariate and multivariate Cox regression analysis. Results: Three hundred twelve up-regulated genes and 85 down-regulated genes were identified from three gene expression profiles (GSE69223, GSE3325, GSE55945) and The Cancer Genome Atlas Prostate Adenocarcinoma (TCGA-PRAD) dataset. Seven hub genes (FGF2, FLNA, FLNC, VCL, CAV1, ACTC1, and MYLK) further were detected, which related to the pathogenesis of PCa. Seven prognostic genes (BCO1, BAIAP2L2, C7, AP000844.2, ASB9, MKI67P1, and TMEM272) were screened to construct a prognostic gene signature, which shows good predictive power for survival by the ROC curve analysis. Conclusions: We identified a robust set of new potential key genes in PCa, which would provide reliable biomarkers for early diagnosis and prognosis and would promote molecular targeting therapy for PCa."	"circRNA MYLK Accelerates Cervical Cancer via Up-Regulation of RHEB and Activation of mTOR Signaling. Growing evidence directly suggested that circular RNAs (circRNAs) are crucial contributors in the course of cervical cancer (CC) onset and progression. Nevertheless, a large number of circRNAs have not been fully addressed in their function and underlying mechanisms during CC etiology. Our study focused on the function of circRNA MYLK (myosin light chain kinase), one novel tumor-related circRNA, in CC cell behaviors. Firstly, we evaluated the expression profile of circMYLK in CC cells and in normal Ect1/E6E7 cell line. Moreover, the accurate function of circMYLK in CC cells was assessed via colony formation, CCK-8, EdU, and TUNEL assay. The association among circRNAs, miRNA, and target mRNAs was predicated by bioinformatics methods and validated in mechanical assays. We disclosed that circMYLK was up-regulated in CC cell lines and acted as a sponge of miR-1301-3p. Besides, downstream miR-1301-3p was capable of reversing circMYLK-mediated CC cell growth and apoptosis. Furthermore, we validated that circMYLK bound to miR-1301-3p as a sponge to upregulate RHEB (Ras homolog, mTORC1 binding) expression. As annotated in prior works, RHEB was responsible for mTOR signaling transduction. Therefore, we investigated whether circMYLK functioned its tumor-facilitating impact in CC through a RHEB-dependent mTOR signaling activation. It was unveiled that circMYLK sponged miR-1301-3p to promote RHEB expression, which resulted in mTOR signaling activation and CC cell malignant growth."	"The circRNA-MYLK plays oncogenic roles in the Hep-2 cell line by sponging microRNA-145-5p. For the exploration of circular RNA light chain kinase (circRNA-MYLK), siRNA#1 and siRNA#2 targeting circRNA-MYLK as well as microRNA(miR)-145-5p inhibitor were transfected. Viability was valued with the CCK-8. The protein expression was examined relying on Western blot. The expression of circRNA-MYLK or miR-145-5p was tested depending on qRT-PCR. The apoptotic/migration/invasion rate was separately measured by the Annexin v-FITC/PI with flow cytometer or chambers assays. CircRNA-MYLK was overexpressed in tumor tissue. Silencing circRNA-MYLK induced the inhibitions of viability, invasion and migration, as well as the blocks of MEK/ERK and NF-κB cascades, however, silencing circRNA-MYLK led to provoking of apoptosis. Besides, circRNA-MYLK silencing stimulated the over-production of miR-145-5p, whose silencing abolished the effects of siRNA#1 and siRNA#2 of circRNA-MYLK on those factors above. The circRNA-MYLK had oncogenic roles via targeting miR-145-5p in the Hep-2 cell line via stimulating MEK/ERK and NF-κB cascades."	"CircRNA_MYLK promotes malignant progression of ovarian cancer through regulating microRNA-652. The purpose of this study was to investigate circRNA_MYLK level in ovarian cancer (OC), and to further investigate whether it could promote the malignant progression of OC via regulating microRNA-652. quantitative Real Time-Polymerase Chain Reaction (qRT-PCR) was performed to examine circRNA_MYLK level in 46 tumor tissue specimens and paracancerous normal ones collected from OC patients, and the interplay between circRNA_MYLK expression and clinical indicators of OC and patient prognosis was analyzed. Meanwhile, qPCR was also used to further verify circRNA_MYLK level in OC cell lines. In addition, circRNA_MYLK knockdown model was constructed using lentivirus in OC cell lines including A2780 and CAOV3, and the impacts of circRNA_MYLK on the biological functions of OC cells was evaluated using Cell Counting Kit-8 (CCK-8) and cloning experiments. Finally, Luciferase reporting assay and recovery experiment were performed to investigate the regulatory interplay between circRNA_MYLK and microRNA-652. qPCR results indicated that circRNA_MYLK level in OC patients was remarkably higher than that in adjacent ones, and the difference was statistically significant. Compared with patients with low expression of circRNA_MYLK, patients with high expression of circRNA_MYLK had a higher pathological staging and a lower overall survival rate. Compared with the control group (sh-NC), the OC cell proliferation ability was remarkably attenuated in the circRNA_MYLK knockdown group (sh-circRNA). In addition, qPCR verification revealed that the expression levels of microRNA-652 and circRNA_MYLK were negatively correlated in OC tissues. At the same time, bioinformatics analysis and Luciferase reporter gene assay results confirmed that circRNA_MYLK can be targeted by microRNA-652. Finally, it was found that simultaneous knockdown of circRNA_MYKK and microRNA-652 could reverse the enhanced OC cell proliferative capacity induced by downregulation of circRNA_MYLK alone. CircRNA_MYLK may promote the malignant progression of OC via regulating microRNA-652, and its expression was remarkably associated with pathological staging and poor prognosis in patients with OC."	"Kindlin-2 deficiency induces fatal intestinal obstruction in mice. Rationale: Smooth muscle-motility disorders are mainly characterized by impaired contractility and functional intestinal obstruction. Some of these cases are caused by genetic mutations of smooth muscle genes ACTA2, ACTG2, MYH11, MYLK and LMOD1. Still the etiology is complex and multifactorial and the underlying pathology is poorly understood. Integrin interaction protein Kindlin-2 is widely expressed in striated and smooth muscle cells (SMC). However, the function of Kindlin-2 in the smooth muscle remains elusive. Methods: We generated two mouse models using different cre promoter transgenic mice, Kindlin-2<sup>fl/fl</sup> SM22α-cre+ (cKO mice) and Kindlin-2<sup>fl/fl</sup>; MYH-cre+ (iKO mice). Embryos and adult tissues were prepared for hematoxylin and eosin (H&amp;E) staining, immunohistochemistry (IHC) and terminal deoxynucleotidyl transferase dUTP nick-end labeling (TUNEL) apoptosis assay. We investigated ultrastructure changes of mouse smooth muscle using transmission electron microscopy (TEM) and measured smooth muscle contractile force in mounting aortic and intestinal rings using the multiwire myograph system (DMT 620M). In addition, cell traction force microscopy (CTFM) was applied to observe the functional change of primary SMC after Kindlin-2 depletion by RNAi. Results: Depletion of Kindlin-2 encoding gene Fermt2 in embryonic smooth muscles leads to apoptosis, downregulates the key components of SMC, impairs smooth muscle development, and finally causes embryonic death at E14.5. Tamoxifen-induced Kindlin-2-specific knockout in adult mouse smooth muscle showed decreased blood pressure, intestinal hypoperistalsis, and eventually died of intestinal obstruction. Kindlin-2 depletion also leads to downregulated Myh11, α-SMA, and CNN, shortened myofilament, broken myofibrils, and impaired contractility of the smooth muscles in iKO mice. Mechanistically, loss of Kindlin-2 decreases Ca2<sup>+</sup> influx in primary vascular smooth muscle cells (PVSMC) by downregulating the expression of calcium-binding protein S100A14 and STIM1. Conclusion: We demonstrated that Kindlin-2 is essential for maintaining the normal structure and function of smooth muscles. Loss of Kindlin-2 impairs smooth muscle formation during embryonic development by inducing apoptosis and jeopardizes the contraction of adult smooth muscle by blocking Ca<sup>2+</sup> influx that leads to intestinal obstruction. Mice with Kindlin-2 depletion in adult smooth muscle could be a potent animal model of intestinal obstruction for disease research, drug treatment and prognosis."	"Right Ventricular Perforation Presenting as Tingling of the Left Breast. Pacemaker lead-associated cardiac perforation is a rare phenomenon. Lead perforations can be acute, subacute, or chronic following lead placement. Symptoms are typically nonspecific and depend on the location of the displaced lead. Diagnostic workup requires interrogation of the pacemaker and imaging studies. Management of lead displacement is dependent on multiple risk factors such as age, gender, corticosteroid use, and anticoagulation therapy. A 74-year-old female with a history of myosin light chain kinase (MYLK) 2 hypertrophic cardiomyopathy, Sjogren's syndrome, Raynaud's disease, and sick sinus syndrome was evaluated for an abnormal finding on pacemaker interrogation. The patient's only symptom was tingling of her left breast. Imaging studies confirmed pacemaker lead perforation. Right ventricle perforation due to a pacemaker lead displacement can cause severe complications. Early identification and treatment by physicians can reduce the risk of mortality."	"Inferring Virus-Host relationship between HPV and its host Homo sapiens using protein interaction network. Human papilloma virus (HPV) is a serious threat to human life globally with over 100 genotypes including cancer causing high risk HPVs. Study on protein interaction maps of pathogens with their host is a recent trend in 'omics' era and has been practiced by researchers to find novel drug targets. In current study, we construct an integrated protein interaction map of HPV with its host human in Cytoscape and analyze it further by using various bioinformatics tools. We found out 2988 interactions between 12 HPV and 2061 human proteins among which we identified MYLK, CDK7, CDK1, CDK2, JAK1 and 6 other human proteins associated with multiple viral oncoproteins. The functional enrichment analysis of these top-notch key genes is performed using KEGG pathway and Gene Ontology analysis, which reveals that the gene set is enriched in cell cycle a crucial cellular process, and the second most important pathway in which the gene set is involved is viral carcinogenesis. Among the viral proteins, E7 has the highest number of associations in the network followed by E6, E2 and E5. We found out a group of genes which is not targeted by the existing drugs available for HPV infections. It can be concluded that the molecules found in this study could be potential targets and could be used by scientists in their drug design studies."	"Long noncoding RNA MYLK-AS1 promotes growth and invasion of hepatocellular carcinoma through the EGFR/HER2-ERK1/2 signaling pathway. The epidermal growth factor receptor (EGFR) family members EGFR and HER2 play pivotal roles in oncogenesis and tumor progression. Anticancer drugs targeting EGFR and HER2 have been developed. Long noncoding RNAs (lncRNAs) have been reported to regulate cancer development and progression through signaling pathways. However, lncRNAs that regulate EGFR and HER2 expression remain unknown. Here, we show that lncRNA myosin light chain kinase-antisense RNA 1 (MYLK-AS1) promotes EGFR and HER2 expression and activates their downstream signaling pathway. MYLK-AS1 increases hepatocellular carcinoma (HCC) cell proliferation, migration, and invasion in vitro. Consistently, MYLK-AS1 knockdown hinders tumor growth in vivo. Mechanistically, MYLK-AS1 enhances HCC cell proliferation, migration, and invasion through stimulating the EGFR/HER2-extracellular signal-regulated kinase 1/2 (ERK1/2) signaling pathway. In addition, MYLK-AS1 is overexpressed in HCC patients and negatively correlated with HCC prognosis. Thus, MYLK-AS1 is an upstream regulator of EGFR/HER2, and acts as an oncogene, suggesting an additional target for cancer therapeutics."	"Got Mylk? The Emerging Role of Australian Plant-Based Milk Alternatives as A Cow's Milk Substitute. Growing ethical, environmental and health concerns have encouraged demand for novel plant-based milk alternatives, yet it remains nebulous whether these products are nutritionally adequate as cow's milk replacements. The aim of this study was to conduct a cross-sectional survey of plant-based milk alternatives available in major Australian supermarkets and selected niche food retailers from November 2019 to January 2020 and assess two dietary scenarios (adolescents and older women) where dairy serves were substituted for plant-based alternatives against Australian Estimated Average Requirements (EAR). We collected compositional data from nutrition panels in juxtaposition with derivatives from the Australian Food Composition database, with a total of 115 products, including tree nuts and seeds (n = 48), legumes (n = 27), coconut (n = 10), grains (n = 19) and mixed sources (n = 10). Just over 50% of products were fortified, but only 1/3 contained similar calcium content to cow's milk. Indiscriminate substitutions might reduce intakes of protein and micronutrients, particularly vitamin A, B2, B12, iodine and zinc, and lead to reductions &gt;50% of the EARs for protein, zinc and calcium in the chosen dietary scenarios. To avoid unintended dietary outcomes, it is vital that consumers make pragmatic decisions regarding dietary replacements for cow's milk."	"Circular RNA MYLK promotes tumour growth and metastasis via modulating miR-513a-5p/VEGFC signalling in renal cell carcinoma. Growing evidence indicates that circular RNAs (circRNAs) are promising biomarkers, as they play significant roles in the development of various cancers. The circular RNA MYLK (circMYLK) has been reported to be involved in the development of malignant tumours, including liver, prostate and bladder cancers. Nevertheless, the biological function of circMYLK in renal cell carcinoma (RCC) remains unclear. In this study, we observed that circMYLK is notably up-regulated in RCC. Increased circMYLK expression led to a larger tumour size, distant metastasis and poor prognosis of RCC patients. Moreover, circMYLK silencing repressed RCC growth and metastasis in vitro and in vivo. Mechanistically, circMYLK can capture miR-513a-5p to facilitate VEGFC expression and further promote the tumorigenesis of RCC cells. In summary, our findings demonstrate that circMYLK has an oncogenic role in RCC growth and metastasis by modulating miR-513a-5p/VEGFC signalling. Thus, circMYLK has potential as a diagnostic biomarker and therapeutic target in the treatment of RCC."	"Transcriptomic Study of Porcine Small Intestine Epithelial Cells Reveals Important Genes and Pathways Associated With Susceptibility to Escherichia coli F4ac Diarrhea. Diarrhea represents one of the most frequent major problems during piglets' neonatal and post-weaning periods leading to tremendous economic losses in the swine industry. Enterotoxigenic Escherichia coli (ETEC) F4 is regarded as the most important cause of diarrhea in piglets. However, some pigs are naturally resistant to those diarrheas caused by ETEC-F4, because they have no F4 receptors (F4R) on their small intestine epithelial cells that allow F4 fimbriae attachment. Thus, our study characterized a complete transcriptome of small intestine epithelial cells of Large White piglets using RNA-Seq. The aim of the study was to identify DEGs with regard to differences in the F4R phenotypes and SNP (C/T) genotypes at ITGB5 and important pathways associated with ETEC-F4ac susceptibility in small intestine epithelial cells of Large White piglets and derive molecular markers as a result of loss of F4acR in swine. A total of eight samples of small intestine epithelial cells obtained from Large White piglets (35 days old) used in this study were selected on the basis of two criteria. One was the adhesion phenotype to ETEC-F4ac fimbriae, and the other was the comparison of ITGB5 SNP (C &gt; T) genotype sequences across all the samples. The samples were then divided into two groups, non-adhesive with CC genotype (n = 4), and adhesive with TT genotype (n = 4). More down-regulated DEGs (p &lt; 0.05, |log2FC| &gt; 2) were detected in the comparison of non-adhesive vs. adhesive small intestine epithelial cells in the present study. Six genes, of which two (CNGA4, SLC25A31) exclusively expressed and four (HCN4, MYLK, KCNMA1, and KCNMB1) DEGs with up-regulation pattern in adhesive (F4R positive) pigs were involved in two pathways associated with diarrhea. The DEGs with up-regulation pattern in non-adhesive (F4R negative) pigs were mostly engaged in multiple immune response-related pathways. The results provide insights on the biology of the phenotypes of F4R positive and negative pigs. One gene (MYLK) located on SSC13 locus for F4acR strongly support that it might have played a role in the adhesion phenotype which was obviously detected by adhesion assay in adhesive (F4R positive) group."	"High polygenic burden is associated with blood DNA methylation changes in individuals with suicidal behavior. Suicidal behavior is result of the interaction of several contributors, including genetic and environmental factors. The integration of approaches considering the polygenic component of suicidal behavior, such as polygenic risk scores (PRS) and DNA methylation is promising for improving our understanding of the complex interplay between genetic and environmental factors in this behavior. The aim of this study was the evaluation of DNA methylation differences between individuals with high and low genetic burden for suicidality. The present study was divided into two phases. In the first phase, genotyping with the Psycharray chip was performed in a discovery sample of 568 Mexican individuals, of which 149 had suicidal behavior (64 individuals with suicidal ideation, 50 with suicide attempt and 35 with completed suicide). Then, a PRS analysis based on summary statistics from the Psychiatric Genomic Consortium was performed in the discovery sample. In a second phase, we evaluated DNA methylation differences between individuals with high and low genetic burden for suicidality in a sub-sample of the discovery sample (target sample) of 94 subjects. We identified 153 differentially methylated sites between individuals with low and high-PRS. Among genes mapped to differentially methylated sites, we found genes involved in neurodevelopment (CHD7, RFX4, KCNA1, PLCB1, PITX1, NUMBL) and ATP binding (KIF7, NUBP2, KIF6, ATP8B1, ATP11A, CLCN7, MYLK, MAP2K5). Our results suggest that genetic variants might increase the predisposition to epigenetic variations in genes involved in neurodevelopment. This study highlights the possible implication of polygenic burden in the alteration of epigenetic changes in suicidal behavior."	"UBASH3B Is a Novel Prognostic Biomarker and Correlated With Immune Infiltrates in Prostate Cancer. Background: UBASH3B (STS1) is an important gene that negatively regulates T-cell receptor signaling in activated T-lymphocytes that involved in cancers. However, the function of UBASH3B in prostate cancer (PCa) and the correlation between UBASH3B and tumor-infiltrating immune cells still remain unclear. Methods: Real-time PCR and immunohistochemistry were applied to detect mRNA and protein expression of UBASH3B in PCa patients and benign prostate hyperplasia patients (BPH). Clinical features of patients with PCa were recorded and Kaplan Meier curve was subsequently plotted. Based on mRNA expression of UBASH3B, patients with PCa from TCGA database were divided into low-UBASH3B-expression group and high-UBASH3B-expression group for construct lncRNA-miRNA-mRNA network and analyzing GO and KEGG pathways. Single gene analysis method was performed by using GSEA to interpret gene expression data in PCa. The PPI network was constructed using STRING and the correlation between UBASH3B and tumor-infiltrating immune cells was analyzed by TIMER and CIBERSORT. Results: The mRNA and protein expression of UBASH3B were upregulated in PCa. The abundant expression of UBASH3B is associated with poor prognosis in PCa. The subnetwork of UBASH3B contains three lncRNAs (MIAT, LINC01297, MYLK-AS1) and four miRNAs (hsa-miR-200a-3p, hsa-miR-455-5p, hsa-miR-192-5p, hsamiR- 215-5P). The mRNA expression of UBASH3B was involved in 28 KEGG pathways. GSEA analysis showed that 18 hallmark gene sets were significantly enriched in high-UBASH3B-expression, whereas 1 gene set was enriched in low-UBASH3B-expression. PPI network revealed a tightly interaction between UBASH3B and LCP2 (an immune related gene). TIMER and CIBERSORT database indicated that UBASH3B was correlated with 11 types of tumor-infiltrating immune cells (naïve B cell, memory B cells, resting CD4<sup>+</sup> memory T cell, activated CD4<sup>+</sup> memory T cell, regulatory T cell, activated NK cell, M2 macrophages, resting dendritic cells, activated dendritic cells, resting mast cells, neutrophils). Conclusions: In conclusion, UBASH3B may be a novel potential prognostic biomarker and is associated with tumor-infiltrating immune cells in tumor microenvironment, suggesting UBASH3B as a potential target for future treatment of PCa."	"CRISPR-Cas9/phosphoproteomics identifies multiple noncanonical targets of myosin light chain kinase. Prior studies have implicated myosin light chain kinase (MLCK) in the regulation of aquaporin-2 (AQP2) in the renal collecting duct. To discover signaling targets of MLCK, we used CRISPR-Cas9 to delete the MLCK gene (Mylk) to obtain MLCK-null mpkCCD cells and carried out comprehensive phosphoproteomics using stable isotope labeling with amino acids in cell culture for quantification. Immunocytochemistry and electron microscopy demonstrated a defect in the processing of AQP2-containing early endosomes to late endosomes. The phosphoproteomics experiments revealed that, of the 1,743 phosphopeptides quantified over multiple replicates, 107 were changed in abundance by MLCK deletion (29 decreased and 78 increased). One of the decreased phosphopeptides corresponded to the canonical target site in myosin regulatory light chain. Network analysis indicated that targeted phosphoproteins clustered into distinct structural/functional groups: actomyosin, signaling, nuclear envelope, gene transcription, mRNA processing, energy metabolism, intermediate filaments, adherens junctions, and tight junctions. There was significant overlap between the derived MLCK signaling network and a previously determined PKA signaling network. The presence of multiple proteins in the actomyosin category prompted experiments showing that MLCK deletion inhibits the normal effect of vasopressin to depolymerize F-actin, providing a potential explanation for the AQP2 trafficking defect. Changes in phosphorylation of multiple proteins in the nuclear envelope prompted measurement of nuclear size, showing a significant increase in average nuclear volume. We conclude that MLCK is part of a multicomponent signaling pathway in both the cytoplasm and nucleus that includes much more than simple regulation of conventional nonmuscle myosins through myosin regulatory light chain phosphorylation."	"Pediatric Intestinal Pseudo-obstruction in the Era of Genetic Sequencing. The purpose of this review is to discuss current knowledge on pediatric intestinal pseudo-obstruction. We will also review new mutations that have been identified through advancement in genetic testing, allowing for a better understanding of the underlying mechanisms of intestinal dysmotility and potential etiologies. With the advancements in genetic testing, new mutations have been identified in the diagnosis of megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS), a disorder leading to pediatric pseudo-obstruction. MYLK, LMOD1, MYL9, and MYH11 encode for various proteins within smooth muscle cells; abnormalities within these proteins lead to abnormal intestinal smooth muscle contractions. Chronic intestinal pseudo-obstruction (CIPO) is defined by symptoms of bowel obstruction in the absence of a lumen-occluding lesion. CIPO is a heterogeneous group of disorders caused by abnormalities in the enteric neurons, intestinal smooth muscle, and/or the interstitial cells of Cajal (ICC). Symptoms can be non-specific and etiologies include both primary and secondary causes of CIPO that contribute to the delay in recognizing this condition and making the correct diagnosis. Chronic intestinal pseudo-obstruction has been recognized in both adults and children with fundamental differences in the etiology, symptom onset, clinical features and natural history of this disorder. For this reason, it has been considered a separate entity referred to as pediatric intestinal pseudo-obstruction (PIPO)."	"Interplay between miRNAs and Genes Associated with Cell Proliferation in Endometrial Cancer. Endometrial cancer develops as a result of abnormal cell growth associated with uncontrolled cell proliferation, excessive activation of signaling pathways and miRNA activity. The aim of this study was to determine the expression profile of genes associated with cell proliferation and to assess which miRNAs can participate in the regulation of their expression. The study enrolled 40 patients with endometrial cancer and 10 patients without neoplastic changes. The expression profile of genes associated with cell proliferation and the expression profile of miRNAs were assessed using microarrays. RT-qPCR was performed to validate mRNA microarray results. The mirTAR tool was used to identify miRNAs that regulate the activity of genes associated with cell proliferation. Decreased expression of IGF1 and MYLK, as well as SOD2 overexpression, were observed in endometrial cancer using both mRNA microarrays and RT-qPCR. Microarray analysis showed low levels of NES and PRKCA, but this was only partially validated using RT-qPCR. Reduced activity of MYLK may be caused by increased miR-200c, miR-155 and miR-200b expression. Cell proliferation is disturbed in endometrial cancer, which may be associated with an overexpression of miR-200a, miR-200c, and miR-155, making it a potential diagnostic marker."	"Silencing of long noncoding RNA SRRM2-AS exerts suppressive effects on angiogenesis in nasopharyngeal carcinoma via activating MYLK-mediated cGMP-PKG signaling pathway. Long noncoding RNAs (lncRNAs) play a crucial role in several malignances, involving nasopharyngeal carcinoma (NPC), a heterogeneous disease. This study investigated mechanism of serine/arginine repetitive matrix protein 2-alternative splicing (SRRM2-AS) in NPC cell proliferation, differentiation, and angiogenesis. Initially, differentially expressed lncRNAs were screened out via microarray analysis. Vascular endothelial growth factor (VEGF) protein positive rate and microvessel density (MVD) were determined in NPC and adjacent tissues. NPC CNE-2 cells were treated with a series of vector and small interfering RNA to explore the effect of SRRM2-AS in NPC. The target relationship between myosin light chain kinase (MYLK) and SRRM2-AS was verified. Levels of SRRM2-AS, MYLK, cGMP, PKG, VEGF, PCNA, Ki-67, B-cell lymphoma-2 (Bcl-2), Bcl-2-associated X protein (Bax), and Caspase 3 were determined after transfection. Finally, the effect of SRRM2-AS on cell proliferation, colony formation, angiogenesis, cell cycle, and apoptosis in NPC was evaluated. SRRM2-AS was highly expressed and MYLK was poorly expressed in NPC tissues. VEGF protein positive rate and MVD were elevated in NPC tissues. MYLK was confirmed to be a target gene of SRRM2-AS. Silencing of SRRM2-AS elevated levels of MYLK, cGMP, PKG, Bax, and Caspase 3, but decreased levels of VEGF, PCNA, Ki-67, and Bcl-2. Especially, silencing of SRRM2-AS suppressed cell proliferation, colony formation and angiogenesis, blocked cell cycle, and enhanced cell apoptosis in NPC. Our results suggested that silencing of SRRM2-AS protected against angiogenesis of NPC cells by upregulating MYLK and activating the cGMP-PKG signaling pathway, which provides a new target for NPC treatment."	"Transcriptional characterisation of human lung cells identifies novel mesenchymal lineage markers. The lung mesenchyme gives rise to multiple distinct lineages of cells in the mature respiratory system, including smooth muscle cells of the airway and vasculature. However, a thorough understanding of the specification and mesenchymal cell diversity in the human lung is lacking. We completed single-cell RNA sequencing analysis of fetal human lung tissues. Canonical correlation analysis, clustering, cluster marker gene identification and t-distributed stochastic neighbour embedding representation was performed in Seurat. Cell populations were annotated using ToppFun. Immunohistochemistry and in situ hybridisation were used to validate spatiotemporal gene expression patterns for key marker genes. We identified molecularly distinct populations representing &quot;committed&quot; fetal human lung endothelial cells, pericytes and smooth muscle cells. Early endothelial lineages expressed &quot;classic&quot; endothelial cell markers (platelet endothelial cell adhesion molecule/CD31 and claudin 5), while pericytes expressed platelet-derived growth factor receptor-β, Thy-1 membrane glycoprotein and basement membrane molecules (collagen IV, laminin and proteoglycans). We observed a large population of &quot;nonspecific&quot; human lung mesenchymal progenitor cells characterised by expression of collagen I and multiple elastin fibre genes (ELN, MFAP2 and FBN1). We closely characterised the diversity of mesenchymal lineages defined by α2-smooth muscle actin (ACTA2) expression. Two cell populations, with the highest levels of ACTA2 transcriptional activity, expressed unique sets of markers associated with airway or vascular smooth muscle cells. Spatiotemporal analysis of these marker genes confirmed early and persistent spatial specification of airway (HHIP, MYLK and IGF1) and vascular (NTRK3 and MEF2C) smooth muscle cells in the developing human lung. Our data suggest that specification of distinct airway and vascular smooth muscle cell phenotypes is established early in development and can be identified using the markers we provide."	"Compound heterozygous variants in MYH11 underlie autosomal recessive megacystis-microcolon-intestinal hypoperistalsis syndrome in a Chinese family. Megacystis-microcolon-intestinal-hypoperistalsis syndrome (MMIHS) is a rare and severe disorder characterized by functional obstruction in the urinary and gastrointestinal tract. The molecular basis of this condition has been defined recently. Heterozygous variants in ACTG2, homozygous mutations in LMOD1, MYLK, and MYH9 were related to the pathogenesis of the syndrome, which encodes proteins involved in the process of smooth muscle contraction, supporting a myopathic basis for the disease. Recent studies have identified homozygous or compound heterozygous variants in MYH11 as a candidate gene of MMIHS. In this report, we described a nonconsanguineous Chinese family with three male fetuses affected with megacystis. Trio-targeted exome sequencing identified compound heterozygous variants, c.2051 G &gt; A (p.R684H) and c.3540_3541delinsTT (p.(E1180D, Q1181Ter)), in MYH11 (NM_001040114). The variants were inherited from the parents, respectively. Western blotting showed a marked decrease in MYH11 protein in the proband's umbilical cord tissue compared with the control sample. The study's results confirmed that MYH11 is a candidate gene for MMIHS with autosomal recessive (AR) inheritance and expanded the mutation spectrum for this clinical condition. Combining clinical phenotype with molecular diagnosis may enable the identification of candidate genes for potential monogenic diseases and facilitate accurate genetic counseling, informed decision-making, and prenatal diagnosis."	"Circular RNA MYLK serves as an oncogene to promote cancer progression via microRNA-195/cyclin D1 axis in laryngeal squamous cell carcinoma. Laryngeal squamous cell carcinoma (LSCC) is a common aggressive head and neck cancer. Circular RNAs (circRNAs) are implicated in numerous physiological and pathological processes, including tumorigenesis. The present study aimed to investigate the expression profile and biological role of circMYLK in LSCC. We found that circMYLK was highly expressed in LSCC tissues and cell lines. circMYLK overexpression promoted LSCC cell proliferation and G1/S cell cycle transition; whereas circMYLK knockdown had the contrary effects. Mechanistically, circMYLK can serve as a competing endogenous RNA for miR-195 to increase cyclin D1 expression in LSCC, and rescue experiments further showed that restoration of miR-195 could block the oncogenic role of circMYLK in LSCC. In conclusion, our findings indicate that the circMYLK/miR-195/cyclin D1 regulatory axis could affect the proliferation and cell cycle progression of LSCC cells, and may provide a novel therapeutic target for the treatment of LSCC."	"Circular RNA MYLK promotes hepatocellular carcinoma progression by increasing Rab23 expression by sponging miR-362-3p. CircRNA myosin light chain kinase (circRNA MYLK) has been shown to promote the progression of various tumor diseases. The purpose of this study was to explore the potential molecular mechanism of circMYLK in hepatocellular carcinoma (HCC). The quantitative Real-Time PCR (qRT-PCR) was used to measure the expressions of circMYLK, miR-362-3p and Rab23 in HCC tissues and cell lines. Huh7 and Hep3B cells were selected to explore the role of circMYLK in proliferation, invasion and migration of HCC cells in vitro. The interaction among circMYLK, miR-362-3p and Rab23 was investigated by biological information and dual luciferase gene reporter assay. The effect of circMYLK on HCC tumor growth in vivo was studied in a tumor xenograft model in mice. CircMYLK was highly expressed in HCC tissues and cell lines, which was associated with poor prognosis in HCC patients. In addition, knockdown of circMYLK remarkably inhibited the proliferation, invasion, and migration of Huh7 and Hep3B cells. MiR-362-3p was a direct target of circMYLK, and Rab23 was a direct target gene of miR-362-3p. Meanwhile, circMYLK was negatively correlated with the expression of miR-362-3p and positively correlated with Rab23 expression. Moreover, either overexpressed miR-362-3p or silencing Rab23 could observably suppress the enhanced proliferation, invasion, and migration induced by circMYLK in Huh7 and Hep3B cells. Finally, knockdown of circMYLK and overexpressed miR-362-3p could suppress the expression of Rab23, thus inhibiting the growth and proliferation of Hep3B cells in vivo. circMYLK promotes the occurrence and development of HCC by regulating the miR-362-3p/Rab23 axis, which provides a novel direction and theoretical basis for the early diagnosis and treatment of HCC."	"Absolute expressions of hypoxia-inducible factor-1 alpha (HIF1A) transcript and the associated genes in chicken skeletal muscle with white striping and wooden breast myopathies. Development of white striping (WS) and wooden breast (WB) in broiler breast meat have been linked to hypoxia, but their etiologies are not fully understood. This study aimed at investigating absolute expression of hypoxia-inducible factor-1 alpha subunit (HIF1A) and genes involved in stress responses and muscle repair using a droplet digital polymerase chain reaction. Total RNA was isolated from pectoralis major collected from male 6-week-old medium (carcass weight ≤ 2.5 kg) and heavy (carcass weight &gt; 2.5 kg) broilers. Samples were classified as &quot;non-defective&quot; (n = 4), &quot;medium-WS&quot; (n = 6), &quot;heavy-WS&quot; (n = 7) and &quot;heavy-WS+WB&quot; (n = 3) based on abnormality scores. The HIF1A transcript was up-regulated in all of the abnormal groups. Transcript abundances of genes encoding 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 (PFKFB4), lactate dehydrogenase-A (LDHA), and phosphorylase kinase beta subunit (PHKB) were increased in heavy-WS but decreased in heavy-WS+WB. Glyceraldehyde-3-phosphate dehydrogenase (GAPDH) was up-regulated in non-defective samples. The muscle-specific mu-2 isoform of glutathione S-transferases (GSTM2) was up-regulated in the abnormal samples, particularly in the heavy groups. The genes encoding myogenic differentiation (MYOD1) and myosin light chain kinase (MYLK) exhibited similar expression pattern, of which medium-WS and heavy-WS significantly increased compared to non-defective whereas expression in heavy-WS+WB was not different from either non-defective or WS-affected group. The greatest and the lowest levels of calpain-3 (CAPN3) and delta-sarcoglycan (SCGD) were observed in heavy-WS and heavy-WS+WB, respectively. Based on micrographs, the abnormal muscles primarily comprised fibers with cross-sectional areas ranging from 2,000 to 3,000 μm2. Despite induced glycolysis at the transcriptional level, lower stored glycogen in the abnormal muscles corresponded with the reduced lactate and higher pH within their meats. The findings support hypoxia within the abnormal breasts, potentially associated with oversized muscle fibers. Between WS and WB, divergent glucose metabolism, cellular detoxification and myoregeneration at the transcriptional level could be anticipated."	"Identification of a dominant MYH11 causal variant in chronic intestinal pseudo-obstruction: Results of whole-exome sequencing. Chronic Intestinal Pseudo-Obstruction (CIPO) is a rare gastrointestinal disorder, which affects the smooth muscle contractions of the gastrointestinal tract. Dominant mutations in the smooth muscle actin gene, ACTG2, accounts for 44%-50% of CIPO patients. Other recessive or X-linked genes, including MYLK, LMOD1, RAD21, MYH11, MYL9, and FLNA were reported in single cases. In this study, we used Whole-Exome Sequencing (WES) to study 23 independent CIPO families including one extended family with 13 affected members. A dominantly inherited rare mutation, c.5819delC (p.Pro1940HisfsTer91), in the smooth muscle myosin gene, MYH11, was found in the extended family, shared by 7 affected family members but not by 3 unaffected family members with available DNA, suggesting a high probability of genetic linkage. Gene burden analysis indicates that additional genes, COL4A1, FBLN1 and HK2, may be associated with the disease. This study expanded our understanding of CIPO etiology and provided additional genetic evidence to physicians and genetic counselors for CIPO diagnosis."	"Copy number variation of MYLK4 gene and its growth traits of Capra hircus (goat). Copy number variation (CNV) is a form of genetic variation caused by genome rearrangement, with abnormal fragments ranging from 50 bp to Mb. And, CNV is closely related to disease, growth and reproductive shape of livestock. As a member of myosin light chain kinase (MYLK) family with serine/threonine specificity, MYLK4 belongs to an enzyme encoded by MYLK4 gene. Although MYLK4 is a recognized kinase, its function has yet to be revealed in subsequent studies. This study aims to analyze CNV and genetic effects of MYLK4 gene in goats. We used qPCR to detect CNV of MYLK4 gene in African Nubian goat (n = 32), Guizhou black goat (n = 196) and Guizhou white goat (n = 95), respectively, and correlated CNV data of MYLK4 gene with goat growth traits in Chinese goats. The results showed that the effect of MYLK4 gene CNV on body weight, body length and body height of goats had significantly different (p &lt; 0.05, Q &lt; 0.05), in which CNV showed better growth traits in type of deletion. Therefore, CNV of MYLK4 gene can be used as a molecular marker for assisted selection of goat growth traits, which provides a theoretical basis for the genetic improvement of goat breeds in China."	"Integrated miRNA-mRNA transcriptomic analysis reveals epigenetic-mediated embryonic muscle growth differences between Wuzhishan and Landrace pigs1. Pig is one of the major dietary protein sources for human consumption, from which muscle is the largest protein origin. However, molecular mechanisms concerning early porcine embryonic muscle development distinctions between pig breeds are still unclear. In this study, an integrated analysis of transcriptome and miRNAome was conducted using longissimus dorsi muscle of 4 early embryonic stages around the primary myofiber formation time (18-, 21-, 28-, and 35-d post coitus) from 2 pig breeds (Landrace [LR] and Wuzhishan [WZS]) differing in meat mass. The global miRNA/mRNA expression profile showed that WZS prepared for myogenic developmental processes earlier than LR. After identifying and analyzing the interaction network of top 100 up-/down-regulated miRNA and their target genes, we were able to find 3 gene clusters: chromatin modification-related (Chd2, H3f3a, Chd6, and Mll1), myogenesis-related (Pax3, Pbx1, Mef2a, and Znf423), and myosin component-related (Mylk, Myo5a, Mylk4, Myh9, and Mylk2) gene clusters. These genes may involve in miRNA-gene myogenic regulatory network that plays vital role in regulating distinct early porcine embryonic myogenic processes between LR and WZS. In summary, our study reveals an epigenetic-mediated myogenic regulatory axial that will help us to decipher molecular mechanisms concerning early porcine embryonic muscle development distinctions between pig breeds."	"Insights into hypoxic adaptation in Tibetan chicken embryos from comparative proteomics. Tibetan chicken, an indigenous breed, is highly adapted to the extreme environment of the Qinghai-Tibet Plateau. It serves as a model organism to identify genetic differences between hypoxia-adapted and lowland breeds. However, the mechanisms underlying hypoxia adaptation are yet unclear. This study aimed to identify differently abundant proteins (DAPs) and elucidate the mechanisms involved in hypoxic adaptation in the Tibetan chicken. In this study, we obtained proteome data for the embryonic heart tissues of Tibetan and Chahua chickens incubated under hypoxia (TCH and CHH) and normoxia (TCN and CHN) using isobaric tags for relative and absolute quantitation (iTRAQ) technology. We identified 4210 proteins from 53,352 unique peptides in the heart tissue of chicken embryos. Pairwise TCH vs. CHH, TCH vs. TCN, CHH vs. CHN, and TCN vs. CHN comparisons revealed 118, 176, 103, and 162 differently abundant proteins, respectively. Several key proteins (EGLN1, MAP2K2, MYLK, QARS, NOTCH2, and MYH7) and pathways (glutathione metabolism, PPAR signaling pathway, and vascular smooth muscle contraction) were identified and considered important candidates for high-altitude adaptation in Tibetan chicken. This study provides novel insights into the chicken embryonic heart tissue and furthers the current understanding of the mechanisms of survival among animals in high-altitude environments."	"Contextual role of E2F1 in suppression of melanoma cell motility and invasiveness. The general transcription factor E2F1 reportedly functions in a protumorigenic manner in several cancer models. We show that the genetic context of cancer cells influence E2F1's role to impede the protumorigenic role. Thirty to fifty percent of melanoma patients carry mutant BRAF with about 90% of mutant BRAF melanomas being V<sup>600E</sup> mutation. Tissue microarrays from melanoma patients were used to establish an association between E2F1 and BRAF<sup>V600E</sup> . We show for the first time that low E2F1 levels in BRAF<sup>V600E</sup> melanomas are associated with lymph node metastasis. Genetic manipulation of E2F1 in BRAF<sup>V600E</sup> and BRAF<sup>wt</sup> cells were used to determine its role in malignant melanoma progression by examining effects on migration and invasion. E2F1-mediated negative regulation of myosin light chain kinase (MYLK) increased migration and invasion in BRAF<sup>V600E</sup> cells by phosphorylating myosin light chain and increased stress fiber formation. We show that E2F1 inhibits extracellular signal-regulated kinase (ERK) activation in BRAF<sup>V600E</sup> cells and provide evidence for a negative feedback loop between E2F1 and ERK in these cells. This study shows for the first time that E2F1 has a cancer protective role in oncogenic BRAF-activated melanoma cells and that loss of E2F1 can allow disease progression through a novel mechanism of E2F1-mediated MYLK regulation. This study has implications for oncogenic BRAF-activated tumors and resistance to targeted oncogenic BRAF therapy."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Integrated analysis of a competing endogenous RNA network reveals key long noncoding RNAs as potential prognostic biomarkers for hepatocellular carcinoma. Growing evidence has revealed that long noncoding RNAs (lncRNAs) have an important impact on tumorigenesis and tumor progression via a mechanism involving competing endogenous RNAs (ceRNAs). However, their use in predicting the survival of a patient with hepatocellular carcinoma (HCC) remains unclear. The aim of this study was to develop a novel lncRNA expression-based risk score system to accurately predict the survival of patients with HCC. In our study, using expression profiles downloaded from The Cancer Genome Atlas database, the differentially expressed messenger RNAs (mRNAs), lncRNAs, and microRNAs (miRNAs) were explored in patients with HCC and normal liver tissues, and then a ceRNA network constructed. A risk score system was established between lncRNA expression of the ceRNA network and overall survival (OS) or recurrence-free survival (RFS); it was further analyzed for associations with the clinical features of patients with HCC. In HCC, 473 differentially expressed lncRNAs, 63 differentially expressed miRNAs, and 1417 differentially expressed mRNAs were detected. The ceRNA network comprised 41 lncRNA nodes, 12 miRNA nodes, 24 mRNA nodes, and 172 edges. The lncRNA expression-based risk score system for OS was constructed based on six lncRNAs (MYLK-AS1, AL359878.1, PART1, TSPEAR-AS1, C10orf91, and LINC00501), while the risk score system for RFS was based on four lncRNAs (WARS2-IT1, AL359878.1, AL357060.1, and PART1). Univariate and multivariate Cox analyses showed the risk score systems for OS or RFS were significant independent factors adjusted for clinical factors. Receiver operating characteristic curve analysis showed the area under the curve for the risk score system was 0.704 for OS, and 0.71 for RFS. Our result revealed a lncRNA expression-based risk score system for OS or RFS can effectively predict the survival of patients with HCC and aid in good clinical decision-making."	"Assessment of Autozygosity Derived From Runs of Homozygosity in Jinhua Pigs Disclosed by Sequencing Data. Jinhua pig, a well-known Chinese indigenous breed, has evolved as a pig breed with excellent meat quality, greater disease resistance, and higher prolificacy. The reduction in the number of Jinhua pigs over the past years has raised concerns about inbreeding. Runs of homozygosity (ROH) along the genome have been applied to quantify individual autozygosity to improve the understanding of inbreeding depression and identify genes associated with traits of interest. Here, we investigated the occurrence and distribution of ROH using next-generation sequencing data to characterize autozygosity in 202 Jinhua pigs, as well as to identify the genomic regions with high ROH frequencies within individuals. The average inbreeding coefficient, based on ROH longer than 1 Mb, was 0.168 ± 0.052. In total, 18,690 ROH were identified in all individuals, among which shorter segments (1-5 Mb) predominated. Individual ROH autosome coverage ranged from 5.32 to 29.14% in the Jinhua population. On average, approximately 16.8% of the whole genome was covered by ROH segments, with the lowest coverage on SSC11 and the highest coverage on SSC17. A total of 824 SNPs (about 0.5%) and 11 ROH island regions were identified (occurring in over 45% of the samples). Genes associated with reproduction (HOXA3, HOXA7, HOXA10, and HOXA11), meat quality (MYOD1, LPIN3, and CTNNBL1), appetite (NUCB2) and disease resistance traits (MUC4, MUC13, MUC20, LMLN, ITGB5, HEG1, SLC12A8, and MYLK) were identified in ROH islands. Moreover, several quantitative trait loci for ham weight and ham fat thickness were detected. Genes in ROH islands suggested, at least partially, a selection for economic traits and environmental adaptation, and should be subject of future investigation. These findings contribute to the understanding of the effects of environmental and artificial selection in shaping the distribution of functional variants in the pig genome."	"Symptoms Matter: A Symptomatic but Radiographically Elusive Ascending Aortic Dissection. Symptoms attributable to a thoracic aortic aneurysm (TAA) are a separate indication for prophylactic repair, irrespective of aortic size. We present the case of a 56-year-old female with a history of a thoracic ascending aortic aneurysm (TAAA) and four other heart and arch vessel abnormalities who presented to us with chest pain radiating to her back. Computed Tomography and echocardiography showed no evidence of a dissection and revealed a maximal ascending aortic diameter of 4.2 cm. The patient subsequently underwent root-sparing ascending aortic and hemiarch replacement due to her threatening symptomatology. A focal dissection was discovered intraoperatively, resembling a similar case previously reported by our team."	"Androgen receptor variant 12 promotes migration and invasion by regulating MYLK in gastric cancer. Androgen receptor (AR) and its variants (AR-Vs) promote tumorigenesis and metastasis in many hormone-related cancers, such as breast, prostate and hepatocellular cancers. However, the expression patterns and underlying molecular mechanisms of AR in gastric cancer (GC) are not fully understood. This study aimed to detect the expression of AR-Vs in GC and explored their role in metastasis of GC. Here, the AR expression form was identified in GC cell lines and tissues by RT-PCR and qPCR. Transwell assays and experimental lung metastasis animal models were used to assess the function of AR in cell migration and invasion. Downstream targets of AR were screened by bioinformatics, and identified by luciferase reporter assays and electrophoretic mobility shift assays. AR-v12 was identified as the main expression form in GC cell lines and tissues. Different from full length of AR, AR-v12 was localized to the nucleus independent of androgen. Upregulation of AR-v12 in primary GC tissues was significantly associated with metastasis. Overexpression of AR-v12 promoted migration and invasion independent of androgen. Knockdown of AR-v12 inhibited migration and invasion in vitro, as well as metastasis in vivo. Furthermore, AR-v12, serving as a transcription factor, promoted metastasis through regulating the promoter activity of MYLK. In AR-v12 overexpressing cells, knockdown of MYLK inhibited cell migration and invasion, while in AR-v12 knocked-down cells, overexpression of MYLK promoted cell migration and invasion. Collectively, our study demonstrates that AR-v12 is highly expressed in GC tissues and promotes migration and invasion through directly regulating MYLK. Copyright © 2019 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Lipopolysaccharide-Induced Increase in Intestinal Permeability Is Mediated by TAK-1 Activation of IKK and MLCK/MYLK Gene. Lipopolysaccharides (LPSs) are a major component of Gram-negative bacterial cell wall and play an important role in promoting intestinal inflammatory responses. Recent studies have shown that physiologically relevant concentrations of LPS (0 to 2000 pg/mL) cause an increase in intestinal epithelial tight junction (TJ) permeability without causing cell death. However, the intracellular pathways and the mechanisms that mediate LPS-induced increase in intestinal TJ permeability remain unclear. The aim was to delineate the intracellular pathways that mediate the LPS-induced increase in intestinal permeability using in vitro and in vivo intestinal epithelial models. LPS-induced increase in intestinal epithelial TJ permeability was preceded by an activation of transforming growth factor-β-activating kinase-1 (TAK-1) and canonical NF-κB (p50/p65) pathways. The siRNA silencing of TAK-1 inhibited the activation of NF-κB p50/p65. The siRNA silencing of TAK-1 and p65/p50 subunit inhibited the LPS-induced increase in intestinal TJ permeability and the increase in myosin light chain kinase (MLCK) expression, confirming the regulatory role of TAK-1 and NF-κB p65/p50 in up-regulating MLCK expression and the subsequent increase in TJ permeability. The data also showed that toll-like receptor (TLR)-4/myeloid differentiation primary response (MyD)88 pathway was crucial upstream regulator of TAK-1 and NF-κB p50/p65 activation. In conclusion, activation of TAK-1 by the TLR-4/MyD88 signal transduction pathway and MLCK by NF-κB p65/p50 regulates the LPS-induced increase in intestinal epithelial TJ permeability."	"You are what you eat: Sequence analysis reveals how plant microRNAs may regulate the human genome. Nutrigenomic has revolutionized our understanding of nutrition. As plants make up a noticeable part of our diet, in the present study we chose microRNAs of edible plants and investigated if they can perfectly match human genes, indicating potential regulatory functionalities. miRNAs were obtained using the PNRD database. Edible plants were separated and microRNAs in common in at least four of them entered our analysis. Using vmatchPattern, these 64 miRNAs went through four steps of refinement to improve target prediction: Alignment with the whole genome (2581 results), filtered for those in gene regions (1371 results), filtered for exon regions (66 results) and finally alignment with the human CDS (41 results). The identified genes were further analyzed in-silico to find their functions and relations to human diseases. Four common plant miRNAs were identified to match perfectly with 22 human transcripts. The identified target genes were involved in a broad range of body functions, from muscle contraction to tumor suppression. We could also indicate some connections between these findings and folk herbology and botanical medicine. The food that we regularly eat has a great potential in affecting our genome and altering body functions. Plant miRNAs can provide means of designing drugs for a vast range of health problems including obesity and cancer, since they target genes involved in cell cycle (CCNC), digestion (GIPR) and muscular contractions (MYLK). They can also target regions of CDS for which we still have no sufficient information, to help boost our knowledge of the human genome."	"Down-regulation of miR-200c attenuates AngII-induced cardiac hypertrophy via targeting the MLCK-mediated pathway. MicroRNAs (miRNAs) have been shown to commonly contribute to cardiac hypertrophy (CH). The aim of this study was to test the hypothesis that miR-200c plays an important role in the progression of CH by targeting myosin light chain kinase (MLCK/MYLK). Cardiac hypertrophy was induced by aortic banding (AB) in rats. Cellular hypertrophy in neonatal rat cardiomyocytes (NCMs) was induced by AngII treatment. Echocardiography, histology and molecular measurements were used to assess the results of the experiments. The levels of apoptosis and reactive oxygen species (ROS) were also measured. Quantitative real-time PCR (qRT-PCR) and Western blotting were used to measure mRNA and protein levels respectively. The present results showed that miR-200c expression was increased in response to CH both in vivo and in vitro. The down-regulation of miRNA-200c by a specific inhibitor markedly ameliorated CH resulting from AngII treatment, and the mRNA levels of atrial natriuretic peptide, brain natriuretic peptide and β-myosin heavy chain were simultaneously decreased. Notably, minimal apoptosis and ROS accumulation were identified in AngII-induced hypertrophic cardiomyocytes. Conversely, the up-regulation of miR-200c using specific mimics reversed these effects. Mechanistic investigations demonstrated that the MLCK gene is a direct target of miR-200c; an increase in miR-200c levels led to a decrease in the expression of MLCK and its downstream effector, p-MLC2, while miR-200c inhibition increased the expression of these proteins. Furthermore, inhibiting MLCK impaired the anti-hypertrophic effects contributions produced by the knockdown of miR-200c. Our studies suggest that miR-200c may serve as a potential therapeutic target that could delay hypertrophy. We have also uncovered a relationship between miR-200c and MLCK, identifying MLCK as a direct mediator of miR-200c."	"An integrative systems approach identifies novel candidates in Marfan syndrome-related pathophysiology. Marfan syndrome (MFS) is an autosomal dominant genetic disorder caused by mutations in the FBN1 gene. Although many peripheral tissues are affected, aortic complications, such as dilation, dissection and rupture, are the leading causes of MFS-related mortality. Aberrant TGF-beta signalling plays a major role in the pathophysiology of MFS. However, the contributing mechanisms are still poorly understood. Here, we aimed at identifying novel aorta-specific pathways involved in the pathophysiology of MFS. For this purpose, we employed the Fbn1 under-expressing mgR/mgR mouse model of MFS. We performed RNA-sequencing of aortic tissues of 9-week-old mgR/mgR mice compared with wild-type (WT) mice. With a false discovery rate &lt;5%, our analysis revealed 248 genes to be differentially regulated including 20 genes previously unrelated with MFS-related pathology. Among these, we identified Igfbp2, Ccl8, Spp1, Mylk2, Mfap4, Dsp and H19. We confirmed the expression of regulated genes by quantitative real-time PCR. Pathway classification revealed transcript signatures involved in chemokine signalling, cardiac muscle contraction, dilated and hypertrophic cardiomyopathy. Furthermore, our immunoblot analysis of aortic tissues revealed altered regulation of pSmad2 signalling, Perk1/2, Igfbp2, Mfap4, Ccl8 and Mylk2 protein levels in mgR/mgR vs WT mice. Together, our integrative systems approach identified several novel factors associated with MFS-aortic-specific pathophysiology that might offer potential novel therapeutic targets for MFS."	"miR-15a-5p regulates expression of multiple proteins in the megakaryocyte GPVI signaling pathway. Essentials The action of microRNAs (miRs) in human megakaryocyte signaling is largely unknown. Cord blood-derived human megakaryocytes (MKs) were used to test the function of candidate miRs. miR-15a-5p negatively regulated MK GPVI-mediated αIIbβ3 activation and α-granule release. miR-15a-5p acts as a potential &quot;master-miR&quot; regulating genes in the MK GPVI signaling pathway. SUMMARY: Background Megakaryocytes (MKs) invest their progeny platelets with proteins and RNAs. MicroRNAs (miRs), which inhibit mRNA translation into protein, are abundantly expressed in MKs and platelets. Although platelet miRs have been associated with platelet reactivity and disease, there is a paucity of information on the function of miRs in human MKs. Objective To identify MK miRs that regulate the GPVI signaling pathway in the MK-platelet lineage. Methods Candidate miRs associated with GPVI-mediated platelet aggregation were tested for functionality in cultured MKs derived from cord blood. Results An unbiased, transcriptome-wide screen in 154 healthy donors identified platelet miR-15a-5p as significantly negatively associated with CRP-induced platelet aggregation. Platelet agonist dose-response curves demonstrated activation of αIIbβ3 in suspensions of cord blood-derived cultured MKs. Overexpression and knockdown of miR-15a-5p in these MKs reduced and enhanced, respectively, CRP-induced αIIbβ3 activation but did not alter thrombin or ADP stimulation. FYN, SRGN, FCER1G, MYLK. and PRKCQ, genes involved in GPVI signaling, were identified as miR-15a-5p targets and were inhibited or de-repressed in MKs with miR-15a-5p overexpression or inhibition, respectively. Lentiviral overexpression of miR-15a-5p also inhibited GPVI-FcRγ-mediated phosphorylation of Syk and PLCγ2, GPVI downstream signaling molecules, but effects of miR-15a-5p on αIIbβ3 activation did not extend to other ITAM-signaling receptors (FcγRIIa and CLEC-2). Conclusion Cord blood-derived MKs are a useful human system for studying the functional effects of candidate platelet genes. miR-15a-5p is a potential &quot;master-miR&quot; for specifically regulating GPVI-mediated MK-platelet signaling. Targeting miR-15a-5p may have therapeutic potential in hemostasis and thrombosis."	"Diagnosis of known sarcoma fusions and novel fusion partners by targeted RNA sequencing with identification of a recurrent ACTB-FOSB fusion in pseudomyogenic hemangioendothelioma. Integration of morphological, immunohistochemical, and molecular methods is often necessary for the precise diagnosis and optimal clinical management of sarcomas. We have validated and implemented a clinical molecular diagnostic assay, MSK- Fusion Solid, for detection of gene fusions in solid tumors, including sarcomas. Starting with RNA extracted from formalin-fixed paraffin-embedded tumor material, this targeted RNA sequencing assay utilizes anchored multiplex PCR to detect oncogenic fusion transcripts involving 62 genes known to be recurrently rearranged in solid tumors including sarcomas without prior knowledge of fusion partners. From 1/2016 to 1/2018, 192 bone and soft tissue tumors were submitted for MSK- Fusion Solid analysis and 96% (184/192) successfully passed all the pre-sequencing quality control parameters and sequencing steps. These sarcomas encompass 24 major tumor types, including 175 soft tissue tumors and 9 osteosarcomas. Ewing and Ewing-like sarcomas, rhabdomyosarcoma, and sarcoma-not otherwise specified were the three most common tumor types. Diagnostic in-frame fusion transcripts were detected in 43% of cases, including 3% (6/184) with novel fusion partners, specifically TRPS1-PLAG1, VCP-TFE3, MYLK-BRAF, FUS-TFCP2, and ACTB-FOSB, the latter in two cases of pseudomyogenic hemangioendothelioma, representing a novel observation in this sarcoma. Our experience shows that this targeted RNA sequencing assay performs in a robust and sensitive fashion on RNA extracted from most routine clinical specimens of sarcomas thereby facilitating precise diagnosis and providing opportunities for novel fusion partner discovery."	"RPA1 binding to NRF2 switches ARE-dependent transcriptional activation to ARE-NRE-dependent repression. NRF2 regulates cellular redox homeostasis, metabolic balance, and proteostasis by forming a dimer with small musculoaponeurotic fibrosarcoma proteins (sMAFs) and binding to antioxidant response elements (AREs) to activate target gene transcription. In contrast, NRF2-ARE-dependent transcriptional repression is unreported. Here, we describe NRF2-mediated gene repression via a specific seven-nucleotide sequence flanking the ARE, which we term the NRF2-replication protein A1 (RPA1) element (NRE). Mechanistically, RPA1 competes with sMAF for NRF2 binding, followed by interaction of NRF2-RPA1 with the ARE-NRE and eduction of promoter activity. Genome-wide in silico and RNA-seq analyses revealed this NRF2-RPA1-ARE-NRE complex mediates negative regulation of many genes with diverse functions, indicating that this mechanism is a fundamental cellular process. Notably, repression of MYLK, which encodes the nonmuscle myosin light chain kinase, by the NRF2-RPA1-ARE-NRE complex disrupts vascular integrity in preclinical inflammatory lung injury models, illustrating the translational significance of NRF2-mediated transcriptional repression. Our findings reveal a gene-suppressive function of NRF2 and a subset of negatively regulated NRF2 target genes, underscoring the broad impact of NRF2 in physiological and pathological settings."	"Leveraging the power of new molecular technologies in the clinical setting requires unprecedented awareness of limitations and drawbacks: experience of one diagnostic laboratory. Advances in molecular technologies and in-silico variant prediction tools offer wide-ranging opportunities in diagnostic settings, yet they also present with significant limitations. Here, we contextualise the limitations of next-generation sequencing (NGS), multiplex ligation-dependent probe amplification (MLPA) and in-silico prediction tools routinely used by diagnostic laboratories by reviewing specific experiences from our diagnostic laboratory. We investigated discordant annotations and/or incorrect variant 'callings' in exons of 56 genes constituting our cardiomyopathy and connective tissue disorder NGS panels. Discordant variants and segmental duplications (SD) were queried using the National Center for Biotechnology Information (NCBI) Basic Local Alignment Search Tool and the University of California Santa Cruz genome browser, respectively, to identify regions of high homology. Discrepant variant analyses by in-silico models were re-evaluated using updated file entries. We observed a 5% error rate in MYH7 variant 'calling' using MLPA, which resulted from &gt;90% homology of the MYH7 probe-binding site to MYH6. SDs were detected in TTN, PKP2 and MYLK. SDs in MYLK presented the highest risk (15.7%) of incorrect variant 'calling'. The inaccurate 'callings' and discrepant in-silico predictions were resolved following detailed investigation into the source of error. Recognising the limitations described here may help avoid incorrect diagnoses and leverage the power of new molecular technologies in diagnostic settings."	"Single nucleotide polymorphisms in the MYLKP1 pseudogene are associated with increased colon cancer risk in African Americans. Pseudogenes are paralogues of functional genes historically viewed as defunct due to either the lack of regulatory elements or the presence of frameshift mutations. Recent evidence, however, suggests that pseudogenes may regulate gene expression, although the functional role of pseudogenes remains largely unknown. We previously reported that MYLKP1, the pseudogene of MYLK that encodes myosin light chain kinase (MLCK), is highly expressed in lung and colon cancer cell lines and tissues but not in normal lung or colon. The MYLKP1 promoter is minimally active in normal bronchial epithelial cells but highly active in lung adenocarcinoma cells. In this study, we further validate MYLKP1 as an oncogene via elucidation of the functional role of MYLKP1 genetic variants in colon cancer risk. Proliferation and migration assays were performed in MYLKP1-transfected colon and lung cancer cell lines (H441, A549) and commercially-available normal lung and colon cells. Fourteen MYLKP1 SNPs (MAFs &gt;0.01) residing within the 4 kb MYLKP1 promoter region, the core 1.4 kb of MYLKP1 gene, and a 4 kb enhancer region were selected and genotyped in a colorectal cancer cohort. MYLKP1 SNP influences on activity of MYLKP1 promoter (2kb) was assessed by dual luciferase reporter assay. Cancer cell lines, H441 and A549, exhibited increased MYLKP1 expression, increased MYLKP1 luciferase promoter activity, increased proliferation and migration. Genotyping studies identified two MYLKP1 SNPs (rs12490683; rs12497343) that significantly increase risk of colon cancer in African Americans compared to African American controls. Rs12490683 and rs12497343 further increase MYLKP1 promoter activity compared to the wild type MYLKP1 promoter. MYLKP1 is a cancer-promoting pseudogene whose genetic variants differentially enhance cancer risk in African American populations."	"Genetic diagnosis of acute aortic dissection in South China Han population using next-generation sequencing. Acute aortic dissection (AAD) is a clinically &quot;silent,&quot; but emergent and life-threatening cardiovascular disease, and hereditary factors play an important etiologic role in the development of AAD. The purposes of this study are to definitize the diagnostic yield of 59 AAD patients, investigate the molecular pathological spectrum of AAD by NGS, and explore the future preclinical prospects of genetic diagnosis on AAD high-risk groups. We performed next-generation sequencing (NGS) based on screening of the 69 currently aortic dissections/aneurysms-associated genes on 59 sporadic AAD samples from South China. A Kaplan-Meier survival curve was constructed to compare the event-free survival depending on variant number. Overall, 67 variants were detected in 39 patients, among which 4 patients were identified with pathogenic variants and 13 patients were diagnosed with likely pathogenic variants. Seventeen genotype positive patients were identified in aggregate, and the diagnostic yield of our study is 28.8%. All genotype-positive variants were distributed in 11 genes, FBN1 variants were in the largest number among genotype-positive variants, which were detected for 4 times, ACTA2 for 3 times, ABCC6 and TGFBR1 twice, and NOS3, MYLK, XYLT1, TIMP4, TGFBR2, CNTN3, and PON1 once. Individuals with three or more variants showed shorter mean event-free survival than patients with fewer variants. Our observations broaden the genetic pathological spectrum of AAD. Furthermore, our research uncovered two susceptibility genes FBN1 and ACTA2 for Stanford type A AAD patients. Finally, our study concluded that the number of variants an individual harbored was an important consideration in risk stratification for individualized prediction and disease diagnosis."	"Variants of Unknown Significance in Genes Associated with Heritable Thoracic Aortic Disease Can Be Low Penetrant &quot;Risk Variants&quot;. Thoracic aortic aneurysms leading to acute aortic dissections are a preventable cause of premature deaths if individuals at risk can be identified. Individuals with early-onset aortic dissections without a family history or syndromic features have an increased burden of rare genetic variants of unknown significance (VUSs) in genes with pathogenic variants for heritable thoracic aortic disease (HTAD). We assessed the role of VUSs in the development of disease using both in vitro enzymatic assays and mouse models. VUSs in LOX and MYLK identified in individuals with acute aortic dissections were assayed to determine whether they disrupted enzymatic activity. A subset of VUSs reduced enzymatic activity compared to the wild-type proteins but less than pathogenic variants. Additionally, a Myh11 variant, p.Arg247Cys, which does not cause aortic disease in either humans or mice, was crossed with the Acta2<sup>-/-</sup> mouse, which has aortic enlargement with age while Acta2<sup>+/-</sup> mice do not. Acta2<sup>+/-</sup>Myh11<sup>R247C/R247C</sup> mice have aortic dilation by 3 months of age without medial degeneration, indicating that two variants not known to cause disease do lead to aortic enlargement in combination. Furthermore, the addition of Myh11<sup>R247C/R247C</sup> to the Acta2<sup>-/-</sup> mouse model accelerates aortic enlargement and increases medial degeneration. Therefore, our results emphasize the need for a classification system for variants in Mendelian genes that goes beyond the 5-tier system of pathogenic, likely pathogenic, VUS, likely benign, and benign, and includes a designation for low-penetrant &quot;risk variants&quot; that trigger disease either in combination with other risk factors or in a stochastic manner."	"Contractile Protein Expression and Phosphorylation and Contractility of Gastric Smooth Muscles from Obese Patients and Patients with Obesity and Diabetes. Ingested food is received, mixed, and ground into chyme by distinct gastric motility patterns. Diabetes impairs gastric muscle function, but the mechanisms underlying diabetes-induced gastric muscle dysfunction are unknown. Here, we compared the expression and phosphorylation of Ca<sup>2+</sup> sensitization and contractile proteins in human gastric muscles from obese nondiabetic and diabetic patients. We also compared the spontaneous phasic contractions and the contractile responses evoked by electrical field stimulation of cholinergic motor neurons. Fundus and antrum muscles were obtained from sleeve gastrectomies and were used in in vitro myobath contractile studies and for capillary electrophoresis and immunodetection of γ-actin, CPI-17, pT38-CPI-17, MYPT1, pT853-MYPT1, pT696-MYPT1, myosin light chain (MYL9), pS19-MYL9, myosin light chain kinase (MYLK), protein phosphatase-1δ (PP1δ), and Rho-associated kinase (ROCK2). In diabetic fundus muscles, MYLK, ROCK2, and PP1δ expression was unchanged; MYPT1 and CPI-17 expression was decreased; and the pT853/MYPT1 and pT38/CPI-17 ratios, but not the pT696/MYPT1 ratio, were increased. Although MYL9 expression was increased, the pS19/MYL9 ratio was unchanged in diabetic fundus muscles. In diabetic antrum muscles, MYLK and MYL9 expression was unchanged, but ROCK2, CPI-17, and PP1δ expression was decreased. The pT38/CPI-17 ratio was unchanged, while the pS19/MYL9, pT853/MYPT1, and pT696/MYPT1 ratios were decreased, consistent with the reduced ROCK2 expression. The frequencies of spontaneous phasic contractions from nondiabetic and diabetic gastric fundus and antrum muscles did not significantly differ from each other, regardless of age, sex, or diabetic status. The fold increases in the contractions of diabetic fundus and antrum muscles in response to increased frequencies of electrical field stimulation were significantly lower compared to nondiabetic fundus and antrum muscles. The altered contractile responses and the protein expression and phosphorylation in gastric muscles of obese patients with diabetes illustrate the importance of understanding how smooth muscle Ca<sup>2+</sup> sensitization mechanisms contribute to gastric motility."	"MYLK pathogenic variants aortic disease presentation, pregnancy risk, and characterization of pathogenic missense variants. Heritable thoracic aortic disease can result from null variants in MYLK, which encodes myosin light-chain kinase (MLCK). Data on which MYLK missense variants are pathogenic and information to guide aortic disease management are limited. Clinical data from 60 cases with MYLK pathogenic variants were analyzed (five null and two missense variants), and the effect of missense variants on kinase activity was assessed. Twenty-three individuals (39%) experienced an aortic event (defined as aneurysm repair or dissection); the majority of these events (87%) were aortic dissections. Aortic diameters were minimally enlarged at the time of dissection in many cases. Time-to-aortic-event curves showed that missense pathogenic variant (PV) carriers have earlier-onset aortic events than null PV carriers. An MYLK missense variant segregated with aortic disease over five generations but decreases MYLK kinase acitivity marginally. Functional Assays fail to identify all pathogenic variants in MYLK. These data further define the aortic phenotype associated with MYLK pathogenic variants. Given minimal aortic enlargement before dissection, an alternative approach to guide the timing of aortic repair is proposed based on the probability of a dissection at a given age."	"Results of next-generation sequencing gene panel diagnostics including copy-number variation analysis in 810 patients suspected of heritable thoracic aortic disorders. Simultaneous analysis of multiple genes using next-generation sequencing (NGS) technology has become widely available. Copy-number variations (CNVs) in disease-associated genes have emerged as a cause for several hereditary disorders. CNVs are, however, not routinely detected using NGS analysis. The aim of this study was to assess the diagnostic yield and the prevalence of CNVs using our panel of Hereditary Thoracic Aortic Disease (H-TAD)-associated genes. Eight hundred ten patients suspected of H-TAD were analyzed by targeted NGS analysis of 21 H-TAD associated genes. In addition, the eXome hidden Markov model (XHMM; an algorithm to identify CNVs in targeted NGS data) was used to detect CNVs in these genes. A pathogenic or likely pathogenic variant was found in 66 of 810 patients (8.1%). Of these 66 pathogenic or likely pathogenic variants, six (9.1%) were CNVs not detectable by routine NGS analysis. These CNVs were four intragenic (multi-)exon deletions in MYLK, TGFB2, SMAD3, and PRKG1, respectively. In addition, a large duplication including NOTCH1 and a large deletion encompassing SCARF2 were detected. As confirmed by additional analyses, both CNVs indicated larger chromosomal abnormalities, which could explain the phenotype in both patients. Given the clinical relevance of the identification of a genetic cause, CNV analysis using a method such as XHMM should be incorporated into the clinical diagnostic care for H-TAD patients."	"Quantitative protein profiling and pathway analysis of spinal arteriovenous malformations. Spinal arteriovenous malformations (sAVM) are rare and heterogeneous group of blood vessel disorders that affect spinal cord function directly or indirectly; however, the pathogenesis of sAVM is still unclear. In this study, we compared four sAVM specimens obtained during surgery and donated control samples in a Tandem Mass Tag (TMT)-labeled proteomic analysis. We identified 3101 proteins, 654 of which were differentially expressed in sAVM samples compared with the controls. Of these, 96 proteins were upregulated and 358 proteins were downregulated. Gene ontology (GO) analysis revealed that extracellular matrix organization in the biological process category and integrin-binding proteins in the molecular function category were the most enriched items. Two significant differentially expressed proteins (MYLK and MMP9) were verified by Western blot analysis. The pathway analysis indicated that the differentially expressed proteins in the pathways of angiogenesis, focal adhesion and cytoplasmic ribosome contributed to sAVM. The changes in protein profiles identified in this proteomic study provide an improved understanding of the pathogenesis of sAVM. The proteomics data are available via ProteomeXchange with identifier PXD007982."	"MicroRNA‑155 targets myosin light chain kinase to inhibit the migration of human bone marrow‑derived mesenchymal stem cells. Toll‑like receptors (TLRs) are expressed in human bone marrow‑derived mesenchymal stromal cells (BM‑MSCs). The activation of TLRs is important in the proliferation, differ-entiation, migration and hematopoiesis‑supporting functions of BM‑MSCs. MicroRNAs (miRNAs) are involved in various biological functions by mediating mRNA degradation or inhibiting the translation of target genes. Our previous study confirmed that TLRs regulate the migration ability of BM‑MSCs. It was also identified that multiple miRNAs were regulated by TLRs. In view of this, it was hypothesized that TLR‑regulated miRNAs may be important in regulating the migration of BM‑MSCs. The migration ability of BM‑MSCs was evaluated following transfection of the cells with the mimics or antagonists of miRNA (miR)‑27b, miR‑146a, miR‑155 and miR‑154. miR‑155 significantly inhibited cell migration. Myosin light chain kinase (MYLK) was identified as the direct target of miR‑155 in BM‑MSCs, which was further investigated using the luciferase reporter assay. However, miR‑155 did not affect the expression of upstream proteins of the RhoA pathway controlling the activity of MYLK, suggesting that miR‑155 directly suppressed the expression of MYLK without affecting the RhoA pathway. These results may facilitate the development and clinical use of BM‑MSCs in terms of their migration."	"MYLK promotes hepatocellular carcinoma progression through regulating cytoskeleton to enhance epithelial-mesenchymal transition. Myosin light chain kinase (MYLK) is found to catalyze the phosphorylation of myosin light chains (MLC) and regulate invasion and metastasis in some malignancies. However, there is little knowledge on the role of MYLK in hepatocellular carcinoma (HCC), and no studies have been conducted to investigate the mechanisms underlying MYLK-mediated promotion of HCC invasion and metastasis until now. In this study, we investigated the expression of MYLK in 50 pairs of human HCC and adjacent liver specimens. High MYLK expression was significantly correlated with aggressive clinicopathological features including tumor encapsulation, microvascular invasion and metastasis. In vitro assays showed that shRNA-induced MYLK knockdown significantly inhibited the wound-healing ability of HCC cells and the ability to migrate and invade through Matrigel. We next uncovered that MYLK knockdown resulted in a reduction in the number of F-actin stress fibers, disorganization of F-actin architectures and morphological alterations of HCC cells. Phosphorylated MLC, rather than total MLC, was found to be markedly reduced in response to downregulation of MYLK expression, and MYLK-regulated actin cytoskeleton through phosphorylating MLC in HCC cells. In addition, Western blotting assay revealed downregulation of the epithelial marker E-cadherin and upregulation of mesenchymal markers Vimentin, N-cadherin and Snail. Taken together, our findings indicate that MYLK promotes HCC progression by altering cytoskeleton to enhance epithelial-mesenchymal transition (EMT)."	"Circular RNA Myosin Light Chain Kinase (MYLK) Promotes Prostate Cancer Progression through Modulating Mir-29a Expression. BACKGROUND In developed countries, prostate cancer (PCa) is a frequently diagnosed cancer with the second highest fatality rate. Circular RNAs (circRNAs) are a class of endogenous non-coding RNAs (ncRNAs) stably expressed in cells and involved in a series of carcinomas. However, few research studies have reported on the role of circRNAs in PCa. MATERIAL AND METHODS We used qRT-PCR to detect the expression of circMYLK (circRNA ID: hsa_circ_0141940) and miR-29a in PCa tissues and cell lines. MTT, colony formation, and TUNEL assays were performed to analysis the cell viability of PCa cells. Transwell and wound scratch assays were performed to investigate the cell invasion and migration of PCa cells. RESULTS In the present study, we confirmed that circMYLK expression level was significantly higher in PCa samples and PCa cells than in normal tissues and normal prostatic cells. The upregulated circRNA-MYLK promoted PCa cells proliferation, invasion, and migration; however, si-circRNA-MYLK significantly accelerated the PCa cell apoptosis. We also observed that the aforementioned function of circRNA-MYLK on PCa cells was affected through targeting miR-29a. CONCLUSIONS We confirmed circRNA-MYLK was an oncogene in PCa and revealed a novel mechanism underlying circRNA-MYLK in PC progression."	"Variants in ACTG2 underlie a substantial number of Australasian patients with primary chronic intestinal pseudo-obstruction. Primary chronic intestinal pseudo-obstruction (CIPO) is a rare, potentially life-threatening disorder characterized by severely impaired gastrointestinal motility. The objective of this study was to examine the contribution of ACTG2, LMOD1, MYH11, and MYLK mutations in an Australasian cohort of patients with a diagnosis of primary CIPO associated with visceral myopathy. Pediatric and adult patients with primary CIPO and suspected visceral myopathy were recruited from across Australia and New Zealand. Sanger sequencing of the genes encoding enteric gamma-actin (ACTG2) and smooth muscle leiomodin (LMOD1) was performed on DNA from patients, and their relatives, where available. MYH11 and MYLK were screened by next-generation sequencing. We identified heterozygous missense variants in ACTG2 in 7 of 17 families (~41%) diagnosed with CIPO and its associated conditions. We also identified a previously unpublished missense mutation (c.443C&gt;T, p.Arg148Leu) in one family. One case presented with megacystis-microcolon-intestinal hypoperistalsis syndrome in utero with subsequent termination of pregnancy at 28 weeks' gestation. All of the substitutions identified occurred at arginine residues. No likely pathogenic variants in LMOD1, MYH11, or MYLK were identified within our cohort. ACTG2 mutations represent a significant underlying cause of primary CIPO with visceral myopathy and associated phenotypes in Australasian patients. Thus, ACTG2 sequencing should be considered in cases presenting with hypoperistalsis phenotypes with suspected visceral myopathy. It is likely that variants in other genes encoding enteric smooth muscle contractile proteins will contribute further to the genetic heterogeneity of hypoperistalsis phenotypes."	"Splice Wars: The Role of MLCK Isoforms in Ventilation-induced Lung Injury. NA"	"Comprehensive analysis of differential expression profiles of mRNAs and lncRNAs and identification of a 14-lncRNA prognostic signature for patients with colon adenocarcinoma. The objective of this study was to identify potentially significant genes and long non-coding RNAs (lncRNAs) in colon cancer for a panel of lncRNA signatures that could be used as prognostic markers for colon adenocarcinoma (COAD) based on the data from The Cancer Genome Atlas (TCGA). RNA-seq V2 exon data of COAD were downloaded from the TCGA data portal for 285 tumor samples and 41 normal tissue samples adjacent to tumors. Differentially expressed mRNAs and lncRNAs were identified. A functional enrichment analysis of differentially expressed mRNAs was performed, followed by protein-protein interaction (PPI) network construction and significant module selection. Additionally, the regulatory relationships in differentially expressed mRNAs and lncRNAs were assessed, and an lncRNA-lncRNA co-regulation and functional synergistic analysis were performed. Furthermore, the risk score model and Cox regression analysis based on the expression levels of lncRNAs were used to develop a prognostic lncRNA signature. A total of 976 differentially expressed mRNAs and 169 differentially expressed lncRNAs were identified. MDFI and MEOX2 were the PPI network hubs. We found these lncRNAs to be mainly involved in vascular smooth muscle contraction and the cGMP-PKG signaling pathway. Several lncRNA-lncRNA pairs had co-regulatory relationships or functional synergistic effects, including BVES-AS1/MYLK-AS1, ADAMTS9-AS1/MYLK-AS1 and FENDRR/MYLK-AS1. The differential expression profile analysis of four candidate lncRNAs (MYLK-AS1, BVES-AS1, ADAMTS9-AS1, and FENDRR) in COAD tumors were confirmed by reverse transcription-quantitative PCR. Moreover, this study identified a 14-lncRNA signature that could predict the survival for COAD patients."	"Fatal thoracic aortic aneurysm and dissection in a large family with a novel MYLK gene mutation: delineation of the clinical phenotype. Thoracic and abdominal aortic aneurysms and dissection often develop in hypertensive elderly patients. At higher risk are smokers and those who have a family history of aortic aneurysms. In most affected families, the aortic aneurysms and dissection is inherited in an autosomal dominant manner with decreased penetrance and variable expressivity. Mutations at two chromosomal loci, TAA1 at 11q23 and the TAA2 at 5q13-14, and eight genes, MYLK, MYH11, TGFBR2, TGFBR1, ACTA2, SMAD3, TGFB2, and MAT2A, have been identified as being responsible for the disease in 23% of affected families. Herein, we inform on the clinical, genetic and pathological characteristics of nine living and deceased members of a large consanguineous Arab family with thoracic aortic aneurysm and dissection who carry a missense mutation c.4471G &gt; T (Ala1491Ser), in exon 27 of MYLK gene. We show a reduced kinase activity of the Ala1491Ser protein compared to wildtype protein. This mutation is expressed as aortic aneurysm and dissection in one of two distinct phenotypes. A severe fatal and early onset symptom in homozygous or mild late onset in heterozygous genotypes. We found that MYLK gene Ala1491Ser mutation affect the kinase activity and clinically, it presents with vascular aneurysms and dissection. We describe a distinct genotype phenotype correlation where; heterozygous patients have mild late onset and incomplete penetrance disease compared with the early onset severe and generally fatal outcome in homozygous patients."	"Genetic Variant of MYLK4 Gene and its Association with Growth Traits in Chinese Cattle. As a member of MYLK family, MYLK4 gene may play a vital role in muscle development. In this study, one novel single-nucleotide polymorphism (SNP) was identified the bovine MYLK4 by sequencing pooled DNA samples (pool-Seq) and forced polymerase chain reaction-restriction fragment length polymorphism (forced PCR-RFLP) methods. Overall, we reported one mutation (SNP1) in the intron 10 region within the bovine MYLK4 gene in 559 individuals representing five main cattle breeds from China (Nanyang, NY; Qinchuan; Jiaxian, JX; Pinan cattle; and Caidamu cattle, CDM). Genotype AA and allele A were predominant in the QC, PN, and XN populations. Association analysis with growth traits in the QC breed showed that the animals with genotype GG had significantly greater chest breadth and hip width (P &lt; 0.05). Meanwhile, the genotype GG was strongly associated with withers height and body length than those with genotype AA (P &lt; 0.01 or P &lt; 0.05) at 12 months in the NY breed. These statistical results exhibited that the MYLK4 gene might be a potential candidate gene to improve cattle's growth traits, and the SNP could be used as molecular markers in early marker-assisted selection (MAS) in beef cattle breeding program."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"Genetic approaches to identify pathological limitations in aortic smooth muscle contraction. Aortic smooth muscle contains limiting amounts of myosin light chain kinase (MLCK) for myosin regulatory light chain (RLC) phosphorylation and contraction that predisposes to thoracic aortic disease in humans containing heterozygous loss-of-function mutations in MYLK. We tested the hypothesis that thoracic aortic smooth muscle contraction may also be susceptible to variations in the smooth muscle-specific isoform of the motor protein myosin where inactivation of one Myh11 allele or the presence of one Myh11 missense variant associated with an increased risk of human aortic disease may result in a reduced force development response. Additionally, other kinds of smooth muscles may be less sensitive to the effects of mutations in one smooth muscle myosin allele, similar to results obtained with Mylk. Force development responses were reduced in aortic tissue from a conditional knockout of smooth muscle myosin heavy chain in adult mice (Myh11+/- or Myh11-/-) with a greater reduction with homozygous vs heterozygous tissues. Similar reductions in force responses were obtained with tissues containing either a heterozygous or homozygous knockin mutation in smooth muscle myosin heavy chain (Myh11+/R247C or Myh11R247C/R247C mutations that cause human aortic disease) with no significant changes in RLC phosphorylation. Agonist-dependent force responses were not reduced significantly in urinary bladder, ileal, or tracheal tissues from Myh11+/- mice while only ileal tissue showed a reduced force response in Myh11R247C/R247C mice. Thus, heterozygous mutations in Myh11 associated with reduced myosin function result in compromised contractile function primarily in aortic smooth muscle."	"Myosin light chain kinase ( MYLK) coding polymorphisms modulate human lung endothelial cell barrier responses via altered tyrosine phosphorylation, spatial localization, and lamellipodial protrusions. Sphingosine 1-phosphate (S1P) is a potent bioactive endogenous lipid that signals a rearrangement of the actin cytoskeleton via the regulation of non-muscle myosin light chain kinase isoform (nmMLCK). S1P induces critical nmMLCK Y<sup>464</sup> and Y<sup>471</sup> phosphorylation resulting in translocation of nmMLCK to the periphery where spatially-directed increases in myosin light chain (MLC) phosphorylation and tension result in lamellipodia protrusion, increased cell-cell adhesion, and enhanced vascular barrier integrity. MYLK, the gene encoding nmMLCK, is a known candidate gene in lung inflammatory diseases, with coding genetic variants (Pro21His, Ser147Pro, Val261Ala) that confer risk for inflammatory lung injury and influence disease severity. The functional mechanisms by which these MYLK coding single nucleotide polymorphisms (SNPs) affect biologic processes to increase disease risk and severity remain elusive. In the current study, we utilized quantifiable cell immunofluorescence assays to determine the influence of MYLK coding SNPs on S1P-mediated nmMLCK phosphorylation and translocation to the human lung endothelial cell (EC) periphery . These disease-associated MYLK variants result in reduced levels of S1P-induced Y<sup>464</sup> phosphorylation, a key site for nmMLCK enzymatic regulation and activation. Reduced Y<sup>464</sup> phosphorylation resulted in attenuated nmMLCK protein translocation to the cell periphery. We further conducted EC kymographic assays which confirmed that lamellipodial protrusion in response to S1P challenge was retarded by expression of a MYLK transgene harboring the three MYLK coding SNPs. These data suggest that ARDS/severe asthma-associated MYLK SNPs functionally influence vascular barrier-regulatory cytoskeletal responses via direct alterations in the levels of nmMLCK tyrosine phosphorylation, spatial localization, and lamellipodial protrusions."	"Homozygous deletion in MYL9 expands the molecular basis of megacystis-microcolon-intestinal hypoperistalsis syndrome. Megacystis-microcolon-intestinal hypoperistalsis syndrome (MMIHS) is a severe disease characterized by functional obstruction in the urinary and gastrointestinal tract. The molecular basis of this condition started to be defined recently, and the genes related to the syndrome (ACTG2-heterozygous variant in sporadic cases; and MYH11 (myosin heavy chain 11), LMOD1 (leiomodin 1) and MYLK (myosin light chain (MLC) kinase)-autosomal recessive inheritance), encode proteins involved in the smooth muscle contraction, supporting a myopathic basis for the disease. In the present article, we described a family with two affected siblings with MMIHS born to consanguineous parents and the molecular investigation performed to define the genetic etiology. Previous whole exome sequencing of the affected child and parents did not identify a candidate gene for the disease in this family, but now we present a reanalysis of the data that led to the identification of a homozygous deletion encompassing the last exon of MYL9 (myosin regulatory light chain 9) in the affected individual. MYL9 gene encodes a regulatory myosin MLC and the phosphorylation of this protein is a crucial step in the contraction process of smooth muscle cell. Despite the absence of human or animal phenotype related to MYL9, a cause-effect relationship between MYL9 and the MMIHS seems biologically plausible. The present study reveals a strong candidate gene for autosomal recessive forms of MMIHS, expanding the molecular basis of this disease and reinforces the myopathic basis of this condition."	"The Splicing Factor hnRNPA1 Regulates Alternate Splicing of the MYLK Gene. Profound lung vascular permeability is a cardinal feature of acute respiratory distress syndrome (ARDS) and ventilator-induced lung injury (VILI), two syndromes known to centrally involve the nonmuscle isoform of myosin light chain kinase (nmMLCK) in vascular barrier dysregulation. Two main splice variants, nmMLCK1 and nmMLCK2, are well represented in human lung endothelial cells and encoded by MYLK, and they differ only in the presence of exon 11 in nmMLCK1, which contains critical phosphorylation sites (Y<sup>464</sup> and Y<sup>471</sup>) that influence nmMLCK enzymatic activity, cellular translocation, and localization in response to vascular agonists. We recently demonstrated the functional role of SNPs in altering MYLK splicing, and in the present study we sought to identify the role of splicing factors in the generation of nmMLCK1 and nmMLCK2 spliced variants. Using bioinformatic in silico approaches, we identified a putative binding site for heterogeneous nuclear ribonucleoprotein A1 (hnRNPA1), a recognized splicing factor. We verified hnRNPA1 binding to MYLK by gel shift analyses and that hnRNPA1 gene and protein expression is upregulated in mouse lungs obtained from preclinical models of ARDS and VILI and in human endothelial cells exposed to 18% cyclic stretch, a model that reproduces the excessive mechanical stress observed in VILI. Using an MYLK minigene approach, we established a direct role of hnRNPA1 in MYLK splicing and in the context of 18% cyclic stretch. In summary, these data indicate an important regulatory role for hnRNPA1 in MYLK splicing, and they increase understanding of MYLK splicing in the regulation of lung vascular integrity during acute lung inflammation and excessive mechanical stress, such as that observed in ARDS and VILI."	"Distinct molecular subtypes of uterine leiomyosarcoma respond differently to chemotherapy treatment. Uterine leiomyosarcoma (ULMS) is an aggressive form of soft tissue tumors. The molecular heterogeneity and pathogenesis of ULMS are not well understood. Expression profiling data were used to determine the possibility and optimal number of ULMS molecular subtypes. Next, clinicopathological characters and molecular pathways were analyzed in each subtype to prospect the clinical applications and progression mechanisms of ULMS. Two distinct molecular subtypes of ULMS were defined based on different gene expression signatures. Subtype I ULMS recapitulated low-grade ULMS, the gene expression pattern of which resembled normal smooth muscle cells, characterized by overexpression of smooth muscle function genes such as LMOD1, SLMAP, MYLK, MYH11. In contrast, subtype II ULMS recapitulated high-grade ULMS with higher tumor weight and invasion rate, and was characterized by overexpression of genes involved in the pathway of epithelial to mesenchymal transition and tumorigenesis, such as CDK6, MAPK13 and HOXA1. We identified two distinct molecular subtypes of ULMS responding differently to chemotherapy treatment. Our findings provide a better understanding of ULMS intrinsic molecular subtypes, and will potentially facilitate the development of subtype-specific diagnosis biomarkers and therapy strategies for these tumors."	"Identification of Novel Clinically Relevant Variants in 70 Southern Chinese patients with Thoracic Aortic Aneurysm and Dissection by Next-generation Sequencing. Thoracic Aortic Aneurysm and Dissection (TAAD) is a life-threatening pathology and remains challenging worldwide. Up to 40% of TAAD are hereditary with complex heterogeneous genetic backgrounds. Recently, next-generation sequencing (NGS) has been successfully applied to identify genetic variants in an efficient and cost-effective manner. In our study, NGS coupled with DNA target-capture array was used to screen 11 known causative genes of TAAD in 70 patients from Southern China. All the identified variants were confirmed by Sanger sequencing. We identified forty variants in 36 patients (51.4%), including three known pathogenic (7.5%), 10 likely pathogenic variants (25%, 9 in FBN1, 1 in ACTA2), and 27 variants with uncertain significance (VUS) (67.5%). Among the 27 VUS, 14 (51.9%) were in the FBN1 gene, 3 in Col5A2, 2 in ACTA2, 2 in MYH11, 2 in MYLK, 2 in SLC2A10, 1 in MSTN and 1 in SMAD3 respectively. Based on the segregation data and independent reports, five known likely pathogenic variants and four VUS were upgraded to pathogenic variant and likely pathogenic variant respectively. Our data indicate that NGS is a highly efficient genetic method for identification of pathogenic variants in TAAD patients."	"Circular RNA MYLK as a competing endogenous RNA promotes bladder cancer progression through modulating VEGFA/VEGFR2 signaling pathway. Accumulating evidences indicate that circular RNAs (circRNAs) play a vital role in modulating gene expression. However, the mechanisms underlying circRNAs remain largely elusive. Here, we screened circRNA and mRNA expression profiles of bladder carcinoma (BC) using microarray analysis. We found that circRNA-MYLK and VEGFA were significantly up-regulated and co-expressed in BC. Importantly, circRNA-MYLK levels were related to the progression of stage and grade of BC. Mechanistically, we demonstrated that circRNA-MYLK could directly bind to miR-29a and relieve suppression for target VEGFA, which activated VEGFA/VEGFR2 signaling pathway. Functionally, we found that ectopically expressing circRNA-MYLK accelerated cell proliferation, migration, tube formation of HUVEC and rearranged cytoskeleton. Moreover, up-regulating circRNA-MYLK promoted epithelial-mesenchymal transition (EMT). Whereas circRNA-MYLK knockdown decreased cell proliferation, motility, and induced apoptosis. Finally, up-regulating circRNA-MYLK promoted the growth, angiogenesis and metastasis of BC xenografts. Taken together, this study demonstrated for the first time that circRNA-MYLK might function as competing endogenous RNA (ceRNA) for miR-29a, which could contribute to EMT and the development of BC through activating VEGFA/VEGFR2 and downstream Ras/ERK signaling pathway. Our data suggest that circRNA-MYLK would be a promising target for BC diagnosis and therapy."	"Loss-of-Function Variants in MYLK Cause Recessive Megacystis Microcolon Intestinal Hypoperistalsis Syndrome. Megacystis microcolon intestinal hypoperistalsis syndrome (MMIHS) is a congenital disorder characterized by loss of smooth muscle contraction in the bladder and intestine. To date, three genes are known to be involved in MMIHS pathogenesis: ACTG2, MYH11, and LMOD1. However, for approximately 10% of affected individuals, the genetic cause of the disease is unknown, suggesting that other loci are most likely involved. Here, we report on three MMIHS-affected subjects from two consanguineous families with no variants in the known MMIHS-associated genes. By performing homozygosity mapping and whole-exome sequencing, we found homozygous variants in myosin light chain kinase (MYLK) in both families. We identified a 7 bp duplication (c.3838_3844dupGAAAGCG [p.Glu1282_Glyfs<sup>∗</sup>51]) in one family and a putative splice-site variant (c.3985+5C&gt;A) in the other. Expression studies and splicing assays indicated that both variants affect normal MYLK expression. Because MYLK encodes an important kinase required for myosin activation and subsequent interaction with actin filaments, it is likely that in its absence, contraction of smooth muscle cells is impaired. The existence of a conditional-Mylk-knockout mouse model with severe gut dysmotility and abnormal function of the bladder supports the involvement of this gene in MMIHS pathogenesis. In aggregate, our findings implicate MYLK as a gene involved in the recessive form of MMIHS, confirming that this disease of the visceral organs is heterogeneous with a myopathic origin."	"Loss of β-PIX inhibits focal adhesion disassembly and promotes keratinocyte motility via myosin light chain activation. During healing of the skin, the cytoskeleton of keratinocytes and their matrix adhesions, including focal adhesions (FAs), undergo reorganization. These changes are coordinated by small GTPases and their regulators, including the guanine nucleotide exchange factor β-PIX (also known as ARHGEF7). In fibroblasts, β-PIX activates small GTPases, thereby enhancing migration. In keratinocytes in vitro, β-PIX localizes to FAs. To study β-PIX functions, we generated β-PIX knockdown keratinocytes. During wound closure of β-PIX knockdown cell monolayers, disassembly of FAs is impaired, and their number and size are increased. In addition, in the β-PIX knockdown cells, phosphorylated myosin light chain (MLC; also known as MYL2) is present not only in the leading edge of cells at the wound front, but also in the cells following the front, while p21-activated kinase 2 (PAK2), a regulator of MLC kinase (MYLK), is mislocalized. Inhibition or depletion of MYLK restores FA distribution in β-PIX knockdown cells. Traction forces generated by β-PIX knockdown cells are increased relative to those in control cells, a result consistent with an unexpected enhancement in the migration of single β-PIX knockdown cells and monolayers of such cells. We propose that targeting β-PIX might be a means of promoting epithelialization of wounds in vivo."	"Next generation sequencing analysis of patients with familial cervical artery dissection. The cause of cervical artery dissection is not well understood. We test the hypothesis that mutations in genes associated with known arterial connective tissue disorders are enriched in patients with familial cervical artery dissection. Patient duos from nine pedigrees with familial cervical artery dissection were analyzed by whole exome sequencing. Single nucleotide variants in a panel of 11 candidate genes (ACTA2, MYH11, FBN1, TGFBR1, TGFBR2, TGFB2, COL3A1, COL4A1, SMAD3, MYLK and SLC2A10) were prioritized according to functionality (stop-loss, nonsense, and missense variants with polyphen-2 score ≥0.95). Variants classified as &quot;benign&quot; or &quot;likely benign&quot; in the ClinVar database were excluded from further analysis. For comparison, non-benign stop-loss, nonsense and missense variants with polyphen-2 score ≥0.95 in the same panel of candidate genes were identified in the European non-Finnish population of the ExAC database (n = 33,370). Non-benign Single nucleotide variants in both affected patients were identified in four of the nine cervical artery dissection families (COL3A1; Gly324Ser, FBN1: Arg2554Trp, COL4A1: Pro116Leu, and TGFBR2: Ala292Thr) yielding an allele frequency of 22.2% (4/18). In the comparison group, 1782 variants were present in 33,370 subjects from the ExAC database (allele frequency: 1782/66,740 = 2.7%; p = 0.0008; odds ratio = 14.2; 95% confidence interval = 3.8-52.9). Cervical artery dissection families showed enrichment for non-benign variants in genes associated with arterial connective tissue disorders. The observation that findings differed across families indicates genetic heterogeneity of familial cervical artery dissection."	"Two novel MYLK nonsense mutations causing thoracic aortic aneurysms/dissections in patients without apparent family history. NA"	"Identification of key pathways and genes influencing prognosis in bladder urothelial carcinoma. Genomic profiling can be used to identify the predictive effect of genomic subsets for determining prognosis in bladder urothelial carcinoma (BUC) after radical cystectomy. This study aimed to investigate potential gene and pathway markers associated with prognosis in BUC. A microarray dataset of BUC was obtained from The Cancer Genome Atlas database. Differentially expressed genes (DEGs) were identified by DESeq of the R platform. Kaplan-Meier analysis was applied for prognostic markers. Key pathways and genes were identified using bioinformatics tools, such as gene set enrichment analysis, gene ontology, the Kyoto Encyclopedia of Genes and Genomes, gene multiple association network integration algorithm (GeneMANIA), Search Tool for the Retrieval of Interacting Genes/Proteins, and Molecular Complex Detection. A comparative gene set enrichment analysis of tumor and adjacent normal tissues suggested BUC tumorigenesis resulted mainly from enrichment of cell cycle and DNA damage and repair-related biological processes and pathways, including TP53 and mitotic recombination. Two hundred and fifty-six genes were identified as potential prognosis-related DEGs. Gene ontology and Kyoto Encyclopedia of Genes and Genomes analyses showed that the potential prognosis-related DEGs were enriched in angiogenesis, including the cyclic adenosine monophosphate biosynthetic process, cyclic guanosine monophosphate-protein kinase G, mitogen-activated protein kinase, Rap1, and phosphoinositide-3-kinase-AKT signaling pathway. Nine hub genes, TAGLN, ACTA2, MYH11, CALD1, MYLK, GEM, PRELP, TPM2, and OGN, were identified from the intersection of protein-protein interaction and GeneMANIA networks. Module analysis of protein-protein interaction and GeneMANIA networks mainly showed enrichment of the cyclic guanosine monophosphate-protein kinase G signaling pathway, angiogenesis, cell proliferation, and differentiation, which are associated with tumor angiogenesis and cancer prognosis. Genes and pathways related to cell cycle and DNA damage and repair may play a crucial role in BUC pathogenesis, whereas those pertaining to tumor angiogenesis may be key factors in influencing BUC prognosis, especially in advanced disease stages."	"Myosin Light Chain Kinase MYLK1: Anatomy, Interactions, Functions, and Regulation. This review discusses and summarizes the results of molecular and cellular investigations of myosin light chain kinase (MLCK, MYLK1), the key regulator of cell motility. The structure and regulation of a complex mylk1 gene and the domain organization of its products is presented. The interactions of the mylk1 gene protein products with other proteins and posttranslational modifications of the mylk1 gene protein products are reviewed, which altogether might determine the role and place of MLCK in physiological and pathological reactions of cells and entire organisms. Translational potential of MLCK as a drug target is evaluated."	"Effects of estrogen on esophageal function through regulation of Ca<sup>2+</sup>-related proteins. The calcium ion is important for physiological functions in all tissues and organs and essential to many vital functions, including hormone secretion and muscle contraction. The intracellular concentration of calcium is regulated by calcium related proteins such as CaBP-9k, PMCA1, and NCX1. In this study, we investigated the relationship between calcium regulation and esophageal functions such as mucin secretion and smooth muscle contraction. To evaluate the influence of sex steroid hormones, immature rats were treated for 3 days with estradiol (E2), progesterone (P4), and their antagonists (ICI 182,780, and RU486). Esophageal function, transcription level, and localization of CaBP-9k, PMCA1, NCX1, ERα, and MUC2 were examined in the esophagus. Transcriptional level of Cabp-9k and Muc2 was increased by E2, but not by P4. CaBP-9k, PMCA1, and MUC2 were mainly localized in the mucosal layer. Acidic mucosubstances in the esophagus were increased by E2 and recovered by ICI treatment. Unlike the expression of Cabp-9k, mRNA levels of Pmca1, Ncx1, and Erα were only decreased in response to E2, and recovered by ICI co-treatment group. The contraction of the esophagus and mRNA level of Mylk were reduced by E2. Overall, E2 upregulated mucus secretion, but downregulated muscle contraction in the esophagus through regulation of the expression of calcium related genes and the resultant intracellular calcium level. The regulation of E2 in the function of esophagus may be applied to treat esophageal diseases such as reflux esophagitis, achalasia, and esophageal cancer."	"Colon cancer cell-derived 12(S)-HETE induces the retraction of cancer-associated fibroblast via MLC2, RHO/ROCK and Ca<sup>2+</sup> signalling. Retraction of mesenchymal stromal cells supports the invasion of colorectal cancer cells (CRC) into the adjacent compartment. CRC-secreted 12(S)-HETE enhances the retraction of cancer-associated fibroblasts (CAFs) and therefore, 12(S)-HETE may enforce invasivity of CRC. Understanding the mechanisms of metastatic CRC is crucial for successful intervention. Therefore, we studied pro-invasive contributions of stromal cells in physiologically relevant three-dimensional in vitro assays consisting of CRC spheroids, CAFs, extracellular matrix and endothelial cells, as well as in reductionist models. In order to elucidate how CAFs support CRC invasion, tumour spheroid-induced CAF retraction and free intracellular Ca<sup>2+</sup> levels were measured and pharmacological- or siRNA-based inhibition of selected signalling cascades was performed. CRC spheroids caused the retraction of CAFs, generating entry gates in the adjacent surrogate stroma. The responsible trigger factor 12(S)-HETE provoked a signal, which was transduced by PLC, IP3, free intracellular Ca<sup>2+</sup>, Ca<sup>2+</sup>-calmodulin-kinase-II, RHO/ROCK and MYLK which led to the activation of myosin light chain 2, and subsequent CAF mobility. RHO activity was observed downstream as well as upstream of Ca<sup>2+</sup> release. Thus, Ca<sup>2+</sup> signalling served as central signal amplifier. Treatment with the FDA-approved drugs carbamazepine, cinnarizine, nifedipine and bepridil HCl, which reportedly interfere with cellular calcium availability, inhibited CAF-retraction. The elucidation of signalling pathways and identification of approved inhibitory drugs warrant development of intervention strategies targeting tumour-stroma interaction."	"Phosphorylation of proteins during human myometrial contractions: A phosphoproteomic approach. Phasic myometrial contractility is a key component of human parturition and the contractions are driven by reversible phosphorylation of myosin light chains catalyzed by the calcium (Ca<sup>2+</sup>)-dependent enzyme myosin light chain kinase (MYLK). Other yet unknown phosphorylation or de-phosphorylation events may contribute to myometrial contraction and relaxation. In this study we have performed a global phosphoproteomic analysis of human myometrial tissue using tandem mass tagging to detect changes in the phosphorylation status of individual myometrial proteins during spontaneous and oxytocin-driven phasic contractions. We were able to detect 22 individual phosphopeptides whose relative ratio changed (fold &gt; 2 or &lt; 0.5) in response to spontaneous or oxytocin-stimulated contraction. The most significant changes in phosphorylation were to MYLK on serine 1760, a site associated with reductions in calmodulin binding and subsequent kinase activity. Phosphorylated MYLK (ser1760) increased significantly during spontaneous (9.83 ± 3.27 fold, P &lt; 0.05) and oxytocin -induced (18.56 ± 8.18 fold, P &lt; 0.01) contractions and we were able to validate these data using immunoblotting. Pathway analysis suggested additional proteins involved in calcium signalling, cGMP-PRKG signalling, adrenergic signalling and oxytocin signalling were also phosphorylated during contractions. This study demonstrates that a global phosphoproteomic analysis of myometrial tissue is a sensitive approach to detect changes in the phosphorylation of proteins during myometrial contractions, and provides a platform for further validation of these changes and for identification of their functional significance."	"Targeted myocardial gene expression in failing hearts by RNA sequencing. Myocardial recovery with left ventricular assist device (LVAD) therapy is highly variable and difficult to predict. Next generation ribonucleic acid (RNA) sequencing is an innovative, rapid, and quantitative approach to gene expression profiling in small amounts of tissue. Our primary goal was to identify baseline transcriptional profiles in non-ischemic cardiomyopathies that predict myocardial recovery in response to LVAD therapy. We also sought to verify transcriptional differences between failing and non-failing human hearts. RNA was isolated from failing (n = 16) and non-failing (n = 8) human hearts. RNA from each patient was reverse transcribed and quantitatively sequenced on the personal genome machine (PGM) sequencer (Ion torrent) for 95 heart failure candidate genes. Coverage analysis as well as mapping the reads and alignment was done using the Ion Torrent Browser Suite™. Differential expression analyses were conducted by empirical analysis of digital gene expression data in R (edgeR) to identify differential expressed genes between failing and non-failing groups, and between responder and non-responder groups respectively. Targeted cardiac gene messenger RNA (mRNA) expression was analyzed in proportion to the total number of reads. Gene expression profiles from the PGM sequencer were validated by performing RNA sequencing (RNAseq) with the Illumina Hiseq2500 sequencing system. The failing sample population was 75% male with an average age of 50 and a left ventricular ejection fraction (LVEF) of 16%. Myosin light chain kinase (MYLK) and interleukin (IL)-6 genes expression were significantly higher in LVAD responders compared to non-responders. Thirty-six cardiac genes were expressed differentially between failing and non-failing hearts (23 decreased, 13 elevated). MYLK, Beta-1 adrenergic receptor (ADRB1) and myosin heavy chain (MYH)-6 expression were among those significantly decreased in failing hearts compared to non-failing hearts. Natriuretic peptide B (NPPB) and IL-6 were significantly elevated. Targeted gene expression profiles obtained from the Ion torrent PGM sequencer were consistent with those obtained from Illumina HiSeq2500 sequencing system. Heart failure is associated with a network of transcriptional changes involving contractile proteins, metabolism, adrenergic receptors, protein phosphorylation, and signaling factors. Myocardial MYLK and IL-6 expression are positively correlated with ejection fraction (EF) response to LVAD placement. Targeted RNA sequencing of myocardial gene expression can be utilized to predict responders to LVAD therapy and to better characterize transcriptional changes in human heart failure."	"Altered Smooth Muscle Cell Force Generation as a Driver of Thoracic Aortic Aneurysms and Dissections. The importance of maintaining contractile function in aortic smooth muscle cells (SMCs) is evident by the fact that heterozygous mutations in the major structural proteins or kinases controlling contraction lead to the formation of aneurysms of the ascending thoracic aorta that predispose to life-threatening aortic dissections. Force generation by SMC requires ATP-dependent cyclic interactions between filaments composed of SMC-specific isoforms of α-actin (encoded by ACTA2) and myosin heavy chain (MYH11). ACTA2 and MYH11 mutations are predicted or have been shown to disrupt this cyclic interaction predispose to thoracic aortic disease. Movement of the myosin motor domain is controlled by phosphorylation of the regulatory light chain on the myosin filament, and loss-of-function mutations in the dedicated kinase for this phosphorylation, myosin light chain kinase (MYLK) also predispose to thoracic aortic disease. Finally, a mutation in the cGMP-activated protein kinase (PRKG1) results in constitutive activation of the kinase in the absence of cGMP, thus driving SMC relaxation in part through increased dephosphorylation of the regulatory light chain and predisposes to thoracic aortic disease. Furthermore, SMCs cannot generate force without connections to the extracellular matrix through focal adhesions, and mutations in the major protein in the extracellular matrix, fibrillin-1, linking SMCs to the matrix also cause thoracic aortic disease in individuals with Marfan syndrome. Thus, disruption of the ability of the aortic SMC to generate force through the elastin-contractile units in response to pulsatile blood flow may be a primary driver for thoracic aortic aneurysms and dissections."	"Comparison of gene expression profiles in aortic dissection and normal human aortic tissues. The aim of the present study was to compare the gene expression profiles in aortic dissection (AD) and healthy human aortic tissue samples by DNA microarray analysis in order to screen the differential genes. In total, five AD and four healthy aortic specimens were selected; the total RNA was extracted and reverse transcribed into cDNA and in vitro transcribed into aRNA, followed by microarray hybridization for analysis. Thereafter, the transcription levels of six differential genes, myosin light chain kinase (MYLK), polycystin 1, transient receptor potential channel interacting (PKD-1), myosin heavy chain 11 (MYH11), superoxide dismutase 3, extracellular (SOD3), filamin A (FLNA), and transgelin (TAGLN), screened from the expression profiles were quantitatively verified. Compared with the healthy aortic specimens, a total of 1,661 genes in the AD group demonstrated more than 2-fold differential expression, of which 997 genes were upregulated and 664 genes were downregulated. Thereafter, six AD-associated genes that showed downregulation in the microarray assay were selected for quantitatively verifying the gene transcription level using reverse transcription-quantitative polymerase chain reaction (RT-qPCR), which confirmed their downregulation compared with the healthy aortic tissue genes; of the six genes, the expression levels of MYLK, PKD-1, MYH11, SOD3 and TAGLN were significantly downregulated (P&lt;0.05), while the expression of FLNA was not significantly downregulated (P&gt;0.05). Thus, whole genome microarray may be used to screen differentially expressed genes between AD and healthy aortic tissues. When used in combination with RT-qPCR validation, this method may provide novel strategies for investigating AD."	"Genomic characterization of liver metastases from colorectal cancer patients. Metastatic dissemination is the most frequent cause of death of sporadic colorectal cancer (sCRC) patients. Genomic abnormalities which are potentially characteristic of such advanced stages of the disease are complex and so far, they have been poorly described and only partially understood. We evaluated the molecular heterogeneity of sCRC tumors based on simultaneous assessment of the overall GEP of both coding mRNA and non-coding RNA genes in primary sCRC tumor samples from 23 consecutive patients and their paired liver metastases. Liver metastases from the sCRC patients analyzed, systematically showed deregulated transcripts of those genes identified as also deregulated in their paired primary colorectal carcinomas. However, some transcripts were found to be specifically deregulated in liver metastases (vs. non-tumoral colorectal tissues) while expressed at normal levels in their primary tumors, reflecting either an increased genomic instability of metastatic cells or theiradaption to the liver microenvironment. Newly deregulated metastatic transcripts included overexpression of APOA1, HRG, UGT2B4, RBP4 and ADH4 mRNAS and the miR-3180-3p, miR-3197, miR-3178, miR-4793 and miR-4440 miRNAs, together with decreased expression of the IGKV1-39, IGKC, IGKV1-27, FABP4 and MYLK mRNAS and the miR-363, miR-1, miR-143, miR-27b and miR-28-5p miRNAs. Canonical pathways found to be specifically deregulated in liver metastatic samples included multiple genes related with intercellular adhesion and the metastatic processes (e.g., IGF1R, PIK3CA, PTEN and EGFR), endocytosis (e.g., the PDGFRA, SMAD2, ERBB3, PML and FGFR2), and the cell cycle (e.g., SMAD2, CCND2, E2F5 and MYC). Our results also highlighted the activation of genes associated with the TGFβ signaling pathway, -e.g. RHOA, SMAD2, SMAD4, SMAD5, SMAD6, BMPR1A, SMAD7 and MYC-, which thereby emerge as candidate genes to play an important role in CRC tumor metastasis."	"WES/WGS Reporting of Mutations from Cardiovascular &quot;Actionable&quot; Genes in Clinical Practice: A Key Role for UMD Knowledgebases in the Era of Big Databases. High-throughput next-generation sequencing such as whole-exome and whole-genome sequencing are being rapidly integrated into clinical practice. The use of these techniques leads to the identification of secondary variants for which decisions about the reporting or not to the patient need to be made. The American College of Medical Genetics and Genomics recently published recommendations for the reporting of these variants in clinical practice for 56 &quot;actionable&quot; genes. Among these, seven are involved in Marfan Syndrome And Related Disorders (MSARD) resulting from mutations of the FBN1, TGFBR1 and 2, ACTA2, SMAD3, MYH11 and MYLK genes. Here, we show that mutations collected in UMD databases for MSARD genes (UMD-MSARD) are rarely reported, including the most frequent ones, in global scale initiatives for variant annotation such as the NHLBI GO Exome Sequencing Project (ESP), the Exome Aggregation Consortium (ExAC), and ClinVar. The predicted pathogenic mutations reported in global scale initiatives but absent in locus-specific databases (LSDBs) mainly correspond to rare events. UMD-MSARD databases are therefore the only resources providing access to the full spectrum of known pathogenic mutations. They are the most comprehensive resources for clinicians and geneticists to interpret MSARD-related variations not only primary variants but also secondary variants."	"A novel variant in MYLK causes thoracic aortic dissections: genotypic and phenotypic description. Mutations in MYLK cause non-syndromic familial thoracic aortic aneurysms and dissections (FTAAD). Very little is known about the phenotype of affected families. We sought to characterize the aortic disease and the presence of other vascular abnormalities in FTAAD caused by a deletion in MYLK and to compare thoracic aortic diameter and stiffness in mutation carriers and non-carriers. We studied FTAAD in a 5-generation family that included 19 living members. Exome sequencing was performed to identify the underlying gene defect. Aortic elastic properties measured by TTE, MRI and pulse wave velocity were then compared between mutation carriers and non-carriers. Exome sequencing led to the identification of a 2-bp deletion in MYLK (c3272_3273del, p.Ser1091*) that led to a premature stop codon and nonsense-mediated decay. Eleven people were mutation carriers and eight people were non-carriers. Five aortic ruptures or dissections occurred in this family, with two survivors. There were no differences in aortic diameter or stiffness between carriers and non-carriers of the mutation. Individuals carrying this deletion in MYLK have a high risk of presenting with an acute aortic dissection or rupture. Aortic events occur over a wide range of ages and are not always preceded by obvious aortic dilatation. Aortic elastic properties do not differ between carriers and non-carriers of this mutation, rendering it uncertain whether and when carriers should undergo elective prophylactic surgery."	"Epigenetic contribution of the myosin light chain kinase gene to the risk for acute respiratory distress syndrome. Acute respiratory distress syndrome (ARDS) is a devastating clinical syndrome with a considerable case fatality rate (∼30%-40%). Health disparities exist with African descent (AD) subjects exhibiting greater mortality than European descent (ED) individuals. Myosin light chain kinase is encoded by MYLK, whose genetic variants are implicated in ARDS pathogenesis and may influence ARDS mortality. As baseline population-specific epigenetic changes, that is, cytosine modifications, have been observed between AD and ED individuals, epigenetic variations in MYLK may provide insights into ARDS disparities. We compared methylation levels of MYLK cytosine-guanine dinucleotides (CpGs) between ARDS patients and intensive care unit (ICU) controls overall and by ethnicity in a nested case-control study of 39 ARDS cases and 75 non-ARDS ICU controls. Two MYLK CpG sites (cg03892735 and cg23344121) were differentially modified between ARDS subjects and controls (P &lt; 0.05; q &lt; 0.25) in a logistic regression model, where no effect modification by ethnicity or age was found. One CpG site was associated with ARDS in patients aged &lt;58 years, cg19611163 (intron 19, 20). Two CpG sites were associated with ARDS in EDs only, gene body CpG (cg01894985, intron 2, 3) and CpG (cg16212219, intron 31, 32), with higher modification levels exhibited in ARDS subjects than controls. Cis-acting modified cytosine quantitative trait loci (mQTL) were identified using linear regression between local genetic variants and modification levels for 2 ARDS-associated CpGs (cg23344121 and cg16212219). In summary, these ARDS-associated MYLK CpGs with effect modification by ethnicity and local mQTL suggest that MYLK epigenetic variation and local genetic background may contribute to health disparities observed in ARDS."	"ROCK2 and MYLK variants and high-altitude pulmonary edema. NA"	"Mechanical Stress and Single Nucleotide Variants Regulate Alternative Splicing of the MYLK Gene. The nonmuscle (nm) myosin light-chain kinase isoform (MLCK), encoded by the MYLK gene, is a vital participant in regulating vascular barrier responses to mechanical and inflammatory stimuli. We determined that MYLK is alternatively spliced, yielding functionally distinct nmMLCK splice variants including nmMLCK2, a splice variant highly expressed in vascular endothelial cells (EC) and associated with reduced EC barrier integrity. We demonstrated previously that the nmMLCK2 variant lacks exon 11, which encodes a key regulatory region containing two differentially phosphorylated tyrosine residues (Y<sup>464</sup> and Y<sup>471</sup>) that influence vascular barrier function during inflammation. In this study, we used minigene constructs and RT-PCR to interrogate biophysical factors (mechanical stress) and genetic variants (MYLK single-nucleotide polymorphisms [SNPs]) that are potentially involved in regulating MYLK alternative splicing and nmMLCK2 generation. Human lung EC exposed to pathologic mechanical stress (18% cyclic stretch) produced increased nmMLCK2 expression relative to levels of nmMLCK1 with alternative splicing significantly influenced by MYLK SNPs rs77323602 and rs147245669. In silico analyses predicted that these variants would alter exon 11 donor and acceptor sites for alternative splicing, computational predictions that were confirmed by minigene studies. The introduction of rs77323602 favored wild-type nmMLCK expression, whereas rs147245669 favored alternative splicing and deletion of exon 11, yielding increased nmMLCK2 expression. Finally, lymphoblastoid cell lines selectively harboring these MYLK SNPs (rs77323602 and rs147245669) directly validated SNP-specific effects on MYLK alternative splicing and nmMLCK2 generation. Together, these studies demonstrate that mechanical stress and MYLK SNPs regulate MYLK alternative splicing and generation of a splice variant, nmMLCK2, that contributes to the severity of inflammatory injury."	"Expression of calmodulin-related genes in lead-exposed mice. The toxic metal lead is a widespread environmental polutant that can adversely affect human health. However, the underlying mechanisms of lead-induced toxicity are still largely unknown. The mechanism of lead toxicity was presumed to involve cross reaction between Pb(2+) and Ca(2+) with calmodulin dependent systems. The aim of the present study was thus to identify differential expression of calmodulin-related genes in the spleen of lead-exposed mice. We performed microarray analysis to identify differentially expressed genes. RNAs from spleen tissue of lead exposed animals (n=6) and controls (n=6) were converted to labeled cRNA and hybridized to Illumina mouse WG-6_v2_Bead Chip. Expression profiles were analyzed using Illumina BeadStudio Application. Real-time RT-PCR was conducted to validate the microarray data. By microarray analysis 5 calmodulin-related genes (MAP2K6, CAMKK2, CXCR4, PHKA2, MYLK) were found to be differently expressed in lead exposed compared with control mice (p&lt;0.05). The results of Real-time RT-PCR showed that MAP2K6 and CAMKK2 were up-regulated and CXCR4 was down-regulated in lead exposure, but there were no significant differences in PHKA2 and MYLK expression between the lead exposed and control group. These results show that lead exposure produced significant changes in expression of a variety of genes in the spleen and can affect calmodulin-related gene expression. "	"Structural and genomic variation in preterm birth. Runs of homozygosity (ROH) are consecutive homozygous genotypes, which may result from population inbreeding or consanguineous marriages. ROH enhance the expression of recessive traits. We mapped ROH in a case control study of women delivering at term compared with women delivering at or before 34 wk gestation. Gene sets known to be important in risk of preterm birth were examined for their overlap with identified ROH segments. While we found no evidence of increased burden of ROH or copy number variations in mothers delivering at or before 34 wk compared with term, we identified 424 genome-wide 50 kb segments with significant difference in abundance of overlapping ROH segments in cases vs. controls, P &lt; 0.05. These regions overlap 199 known genes. We found preterm birth associated genes (CXCR4, MYLK, PAK1) and genes shown to have an evolutionary link to preterm (CXCR4, PPP3CB, C6orf57, DUSP13, and SLC25A45) with significant differences in abundance of overlapping ROH blocks in cases vs. controls, P &lt; 0.001. We conclude, while we found no significant burden of ROH, we did identify genomic regions with significantly greater abundance of ROH blocks in women delivering preterm that overlapped genes known to be involved in preterm birth."	"12(S)-HETE increases intracellular Ca(2+) in lymph-endothelial cells disrupting their barrier function in vitro; stabilization by clinical drugs impairing calcium supply. Secretion of 12(S)-HETE by breast cancer emboli provokes &quot;circular chemorepellent induced defects&quot; (CCIDs) in the adjacent lymphatic vasculature facilitating their intravasation and lymph node metastasis which determines prognosis. Therefore, elucidating the mechanism of lymph endothelial cell (LEC) wall disintegration may provide cues for anti-metastatic intervention. The role of intracellular free Ca(2+) for CCID formation was investigated in LECs using MCF-7 or MDA-MB231 breast cancer cell spheroids in a three-dimensional cell co-culture model. 12(S)-HETE elevated the Ca(2+) level in LEC by activating PLC/IP3. Downstream, the Ca(2+)-calmodulin kinase MYLK contributed to the phosphorylation of Ser19-MLC2, LEC contraction and CCID formation. Approved clinical drugs, lidoflazine, ketotifen, epiandrosterone and cyclosporine, which reportedly disturb cellular calcium supply, inhibited 12(S)-HETE-induced Ca(2+) increase, Ser19-MLC2 phosphorylation and CCID formation. This treatment strategy may reduce spreading of breast cancer through lymphatics."	"Comprehensive analysis of differentially expressed profiles of lncRNAs and circRNAs with associated co-expression and ceRNA networks in bladder carcinoma. Accumulating evidences indicate that long noncoding RNAs (lncRNAs) and circular RNAs (circRNAs) play important roles in tumorigenesis. However, the mechanisms remain largely unknown. To explore lncRNAs and circRNAs expression profiling and their biological functions in bladder cancer, we surveyed the lncRNA/circRNA and mRNA expression profiles of bladder cancer and para-cancer tissues using microarray for four patients. Thousands of significantly changed lncRNAs and mRNAs as well as hundreds of circRNAs were identified. Five dysregulated lncRNAs and four mRNAs were confirmed by quantitative real-time PCR in 30 pairs of samples. GO and KEGG pathway enrichment analyses were executed to determine the principal functions of the significantly deregulated genes. Further more, we constructed correlated expression networks including coding-noncoding co-expression (CNC), competing endogenous RNAs (ceRNA), cis regulation, lncRNAs-transcription factor (TF)-mRNA with bioinformatics methods. Co-expression analysis showed lncRNA APLP2 expression is correlated with apoptosis-related genes, including PTEN and TP53INP1. CeRNA network inferred that lncRNA H19 and circRNA MYLK could bind competitively with miRNA-29a-3p increasing target gene DNMT3B, VEGFA and ITGB1 expressions. Moreover, the nearby genes pattern displayed that overexpressing ADAM2 and C8orf4 are cis-regulated by lncRNA RP11-359E19.2, involving in progression of bladder cancer. In addition, lncRNAs-TF-mRNA diagram indicated that lncRNA BC041488 could trans-regulate CDK1 mRNA expression through SRF transcription factor. Taken together, these results suggested lncRNAs and circRNAs could implicate in the pathogenesis and development of bladder cancer. Our findings provide a novel perspective on lncRNAs and circRNAs and lay the foundation for future research of potential roles of lncRNAs and circRNAs in bladder carcinoma."	"Hereditary Influence in Thoracic Aortic Aneurysm and Dissection. Thoracic aortic aneurysm is a potentially life-threatening condition in that it places patients at risk for aortic dissection or rupture. However, our modern understanding of the pathogenesis of thoracic aortic aneurysm is quite limited. A genetic predisposition to thoracic aortic aneurysm has been established, and gene discovery in affected families has identified several major categories of gene alterations. The first involves mutations in genes encoding various components of the transforming growth factor beta (TGF-β) signaling cascade (FBN1, TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3 and SKI), and these conditions are known collectively as the TGF-β vasculopathies. The second set of genes encode components of the smooth muscle contractile apparatus (ACTA2, MYH11, MYLK, and PRKG1), a group called the smooth muscle contraction vasculopathies. Mechanistic hypotheses based on these discoveries have shaped rational therapies, some of which are under clinical evaluation. This review discusses published data on genes involved in thoracic aortic aneurysm and attempts to explain divergent hypotheses of aneurysm origin."	"Transcriptome Analysis and Gene Identification in the Pulmonary Artery of Broilers with Ascites Syndrome. Pulmonary arterial hypertension, also known as Ascites syndrome (AS), remains a clinically challenging disease with a large impact on both humans and broiler chickens. Pulmonary arterial remodeling presents a key step in the development of AS. The precise molecular mechanism of pulmonary artery remodeling regulating AS progression remains unclear. We obtained pulmonary arteries from two positive AS and two normal broilers for RNA sequencing (RNA-seq) analysis and pathological observation. RNA-seq analysis revealed a total of 895 significantly differentially expressed genes (DEGs) with 437 up-regulated and 458 down-regulated genes, which were significantly enriched to 12 GO (Gene Ontology) terms and 4 KEGG (Kyoto Encyclopedia of Genes and Genomes) pathways (Padj&lt;0.05) regulating pulmonary artery remodeling and consequently occurrence of AS. These GO terms and pathways include ribosome, Jak-STAT and NOD-like receptor signaling pathways which regulate pulmonary artery remodeling through vascular smooth cell proliferation, inflammation and vascular smooth cell proliferation together. Some notable DEGs within these pathways included downregulation of genes like RPL 5, 7, 8, 9, 14; upregulation of genes such as IL-6, K60, STAT3, STAT5 Pim1 and SOCS3; IKKα, IkB, P38, five cytokines IL-6, IL8, IL-1β, IL-18, and MIP-1β. Six important regulators of pulmonary artery vascular remodeling and construction like CYP1B1, ALDH7A1, MYLK, CAMK4, BMP7 and INOS were upregulated in the pulmonary artery of AS broilers. The pathology results showed that the pulmonary artery had remodeled and become thicker in the disease group. Our present data suggested some specific components of the complex molecular circuitry regulating pulmonary arterial remodeling underlying AS progression in broilers. We revealed some valuable candidate genes and pathways that involved in pulmonary artery remodeling further contributing to the AS progression."	"[Mutation screening for the causative gene in a four-generation Chinese pedigree with progressive cardiac conduction defect]. To define the potential causative gene mutation in a Chinese pedigree with progressive cardiac conduction defect (PCCD). Sanger sequencing was performed to define potential causative gene mutation in a four-generation family with 68 members including seven PCCD patients (5 male) from 2010 to 2015.No causative gene was detected by screening known candidate genes related to PCCD including SCN5A, NKX2.5 and LMNA.High-throughput sequencing technology on exon-enriched DNA was then used to search the causative genes in 2 patients and one normal family member. Eight new non-synonymous single nucleotide variants including AQP7 gene (exon5: c.T343C: p.Y115H), CACNA1B gene (NM_001243812: exon19: c.A2986G: p.T996A), CATSPERB gene (exon27: c.C3254G: p.P1085R), CLCA2 gene (exon11: c.G1725T: p.W575C), CLCA3P gene (ncRNA_intronic), MYLK-AS1 gene (ncRNA_intronic), TTN gene (ncRNA_UTR3), LMNA gene (LMNA: NM_170708: exon5: c.C922T: p.Q308X) were identified by comparing and filtering the results with known public databases.Then, more detailed biological analysis on these 8 genes was conducted.Traditional Sanger sequencing validated the exome sequencing results, and found that the mutation c. 1725G﹥T in gene CLCA2 segregated with the phenotype of this PCCD pedigree.The mutation c. 1725G﹥T in gene CLCA2 was thus be considered as the causative PCCD gene in this pedigree from the perspective of genetics and genomics. The heterozygote mutation c. 1725G﹥T in gene CLCA2 might be causative gene in this PCCD pedigree.This finding adds new gene mutation variant responsible for PCCD."	"New Analytical Tool for the Detection of Ractopamine Abuse in Goat Skeletal Muscle by Potential Gene Expression Biomarkers. In this study, quantification of mRNA gene expression was examined as biomarkers to detect ractopamaine abuse and ractopamaine residues in cashmere goats. It was focused on the identification of potential gene expression biomarkers and describing the coreletionship between gene expression and residue level by 58 animals for 49 days. The results showed that administration periods and residue levels significantly influenced mRNA expressions of the β2-adrenergic receptor (β2AR), the enzymes PRKACB, ADCY3, ATP1A3, ATP2A3, PTH, and MYLK, and the immune factors IL-1β and TNF-α. Statistical analysis like principal components analysis (PCA), hierarchical cluster analysis (HCA), and discriminant analysis (DA) showed that these genes can serve as potential biomarkers for ractopamine in skeletal muscle and that they are also suitable for describing different residue levels separately. "	"Clinically relevant variants identified in thoracic aortic aneurysm patients by research exome sequencing. Thoracic aortic aneurysm (TAA) is a genetically heterogeneous disease involving subclinical and progressive dilation of the thoracic aorta, which can lead to life-threatening complications such as dissection or rupture. Genetic testing is important for risk stratification and identification of at risk family members, and clinically available genetic testing panels have been expanding rapidly. However, when past testing results are normal, there is little evidence to guide decision-making about the indications and timing to pursue additional clinical genetic testing. Results from research based genetic testing can help inform this process. Here we present 10 TAA patients who have a family history of disease and who enrolled in research-based exome testing. Nine of these ten patients had previous clinical genetic testing that did not identify the cause of disease. We sought to determine the number of rare variants in 23 known TAA associated genes identified by research-based exome testing. In total, we found 10 rare variants in six patients. Likely pathogenic variants included a TGFB2 variant in one patient and a SMAD3 variant in another. These variants have been reported previously in individuals with similar phenotypes. Variants of uncertain significance of particular interest included novel variants in MYLK and MFAP5, which were identified in a third patient. In total, clinically reportable rare variants were found in 6/10 (60%) patients, with at least 2/10 (20%) patients having likely pathogenic variants identified. These data indicate that consideration of re-testing is important in TAA patients with previous negative or inconclusive results."	"Structure of the Elastin-Contractile Units in the Thoracic Aorta and How Genes That Cause Thoracic Aortic Aneurysms and Dissections Disrupt This Structure. The medial layer of the aorta confers elasticity and strength to the aortic wall and is composed of alternating layers of smooth muscle cells (SMCs) and elastic fibres. The SMC elastin-contractile unit is a structural unit that links the elastin fibres to the SMCs and is characterized by the following: (1) layers of elastin fibres that are surrounded by microfibrils; (2) microfibrils that bind to the integrin receptors in focal adhesions on the cell surface of the SMCs; and (3) SMC contractile filaments that are linked to the focal adhesions on the inner side of the membrane. The genes that are altered to cause thoracic aortic aneurysms and aortic dissections encode proteins involved in the structure or function of the SMC elastin-contractile unit. Included in this gene list are the genes encoding protein that are structural components of elastin fibres and microfibrils, FBN1, MFAP5, ELN, and FBLN4. Also included are genes that encode structural proteins in the SMC contractile unit, including ACTA2, which encodes SMC-specific α-actin and MYH11, which encodes SMC-specific myosin heavy chain, along with MYLK and PRKG1, which encode kinases that control SMC contraction. Finally, mutations in the gene encoding the protein linking integrin receptors to the contractile filaments, FLNA, also predispose to thoracic aortic disease. Thus, these data suggest that functional SMC elastin-contractile units are important for maintaining the structural integrity of the aorta. "	"Sp1-mediated nonmuscle myosin light chain kinase expression and enhanced activity in vascular endothelial growth factor-induced vascular permeability. Despite the important role played by the nonmuscle isoform of myosin light chain kinase (nmMLCK) in vascular barrier regulation and the implication of both nmMLCK and vascular endothelial growth factor (VEGF) in the pathogenesis of acute respiratory distress syndrome (ARDS), the role played by nmMLCK in VEGF-induced vascular permeability is poorly understood. In this study, the role played by nmMLCK in VEGF-induced vascular hyperpermeability was investigated. Human lung endothelial cell barrier integrity in response to VEGF is examined in both the absence and the presence of nmMLCK small interfering RNAs. Levels of nmMLCK messenger RNA (mRNA), protein, and promoter activity expression were monitored after VEGF stimulation in lung endothelial cells. nmMYLK promoter activity was assessed using nmMYLK promoter luciferase reporter constructs with a series of nested deletions. nmMYLK transcriptional regulation was further characterized by examination of a key transcriptional factor. nmMLCK plays an important role in VEGF-induced permeability. We found that activation of the VEGF signaling pathway in lung endothelial cells increases MYLK gene product at both mRNA and protein levels. Increased nmMLCK mRNA and protein expression is a result of increased nmMYLK promoter activity, regulated in part by binding of the Sp1 transcription factor on triggering by the VEGF signaling pathway. Taken together, these findings suggest that MYLK is an important ARDS candidate gene and a therapeutic target that is highly influenced by excessive VEGF concentrations in the inflamed lung. "	"ROCK2 and MYLK variants under hypobaric hypoxic environment of high altitude associate with high altitude pulmonary edema and adaptation. To date, a major class of kinases, serine-threonine kinase, has been scantly investigated in stress-induced rare, fatal (if not treated early), and morbid disorder, high altitude pulmonary edema (HAPE). This study examined three major serine-threonine kinases, ROCK2, MYLK, and JNK1, along with six other genes, tyrosine hydroxylase, G-protein subunits GNA11 and GNB3, and alpha1 adrenergic receptor isoforms 1A, 1B, and 1D as candidate gene markers of HAPE and adaptation. For this, 57 variants across these nine genes were genotyped in HAPE patients (n=225), HAPE controls (n=210), and highlanders (n=259) by Sequenom MS (TOF)-based MassARRAY® platform using iPLEX™ Gold technology. In addition, to study the gene expression, quantitative real-time polymerase chain reaction was performed in human peripheral blood mononuclear cells of the three study groups. A significant association was observed for C allele (ROCK2 single-nucleotide polymorphism, rs10929728) with HAPE (P=0.03) and C, T, and A alleles (MYLK single-nucleotide polymorphisms, rs11717814, rs40305, and rs820336) with both HAPE and adaptation (P=0.001, P=0.006, and P=0.02, respectively). ROCK2 88 kb GGGTTGGT haplotype was associated with lower risk of HAPE (P=0.0009). MYLK 7 kb haplotype CTA, composed of variant alleles, was associated with higher risk of HAPE (P=0.0006) and lower association with adaptation (P=1E-06), whereas haplotype GCG, composed of wild-type alleles, was associated with lower risk of HAPE (P=0.001) and higher association with adaptation (P=1E-06). Haplotype-haplotype and gene-gene interactions demonstrated a correlation in working of ROCK2 and MYLK. The data suggest the association of ROCK2 with HAPE and MYLK with HAPE and adaptation in Indian population. The outcome has provided new insights into the physiology of HAPE and adaptation."	"Effects of Sequence Variations in Innate Immune Response Genes on Infectious Outcome in Trauma Patients: A Comprehensive Review. Infectious complications, sepsis, and multiple organ dysfunction syndrome (MODS) remain important causes for morbidity and mortality in patients who survive the initial trauma. Increasing evidence suggests that genetic variants, particularly single nucleotide polymorphisms (SNPs), are critical determinants for interindividual differences in both inflammatory responses and clinical outcome in sepsis patients. Although the effect of SNPs on sepsis and MODS has been studied in many populations and diseases, this review aimed to summarize the current knowledge on the effect of SNPs on infectious complication specifically in trauma patients. A review of available literature was performed in PubMed database. The following genes have been studied in populations of trauma patients: CD14, HMGB1, IFNG, IL1A, IL1B, IL1RN, IL4, IL6, IL8, IL10, IL17F, IL18, MBL2, MASP2, FCN2, TLR1, TLR2, TLR4, TLR9, TNF, LTA, GR, MYLK, NLRP3, PRDX6, RAGE, HSPA1B, HSPA1L, HSP90, SERPINE1, IRAK1, IRAK3, VEGFA, LY96, ANGPT2, LBP, MicroRNA, and mtDNA. In this review, we discuss the genes of the Pattern Recognition Receptors, Signal Transducing Adaptor Proteins, and Inflammatory Cytokines of the innate immune system. A number of genetic variations have so far been studied in cohorts of trauma patients. Studies are often unique and numbers sometimes small. No definitive conclusions can be reached at this time about the influence of specific sequence variations on outcome in trauma patients. "	"Genetics of hereditary large vessel diseases. Recent progress in the study of hereditary large vessel diseases such as Marfan syndrome (MFS) have not only identified responsible genes but also provided better understanding of the pathophysiology and revealed possible new therapeutic targets. Genes identified for these diseases include FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, TGFB3, SKI, EFEMP2, COL3A1, FLNA, ACTA2, MYH11, MYLK and SLC2A10, as well as others. Their dysfunction disrupts the function of transforming growth factor-β (TGF-β) signaling pathways, as well as that of the extracellular matrix and smooth muscle contractile apparatus, resulting in progression of structural damage to large vessels, including aortic aneurysms and dissections. Notably, it has been shown that the TGF-β signaling pathway has a key role in the pathogenesis of MFS and related disorders, which may be important for development of strategies for medical and surgical treatment of thoracic aortic aneurysms and dissections. "	"The ZEB1/miR-200c feedback loop regulates invasion via actin interacting proteins MYLK and TKS5. Epithelial to mesenchymal transition (EMT) is a developmental process which is aberrantly activated during cancer invasion and metastasis. Elevated expression of EMT-inducers like ZEB1 enables tumor cells to detach from the primary tumor and invade into the surrounding tissue. The main antagonist of ZEB1 in controlling EMT is the microRNA-200 family that is reciprocally linked to ZEB1 in a double negative feedback loop. Here, we further elucidate how the ZEB1/miR-200 feedback loop controls invasion of tumor cells. The process of EMT is attended by major changes in the actin cytoskeleton. Via in silico screening of genes encoding for actin interacting proteins, we identified two novel targets of miR-200c - TKS5 and MYLK (MLCK). Co-expression of both genes with ZEB1 was observed in several cancer cell lines as well as in breast cancer patients and correlated with low miR-200c levels. Depletion of TKS5 or MYLK in breast cancer cells reduced their invasive potential and their ability to form invadopodia. Whereas TKS5 is known to be a major component, we could identify MYLK as a novel player in invadopodia formation. In summary, TKS5 and MYLK represent two mediators of invasive behavior of cancer cells that are regulated by the ZEB1/miR-200 feedback loop. "	"Routine Genetic Testing for Thoracic Aortic Aneurysm and Dissection in a Clinical Setting. Hereditary factors play an important etiologic role in thoracic aortic aneurysm and dissection (TAAD), with a number of genes proven to predispose to this condition. We initiated a clinical program for routine genetic testing of individuals for TAAD by whole exome sequencing (WES). Here we present our initial results. The WES was performed in 102 patients (mean age 56.8 years; range 13 to 83; 70 males [68.6%]) with TAAD. The following 21-gene panel was tested by WES: ACTA2, ADAMTS10, COL1A1, COL1A2, COL3A1, COL5A1, COL5A2, ELN, FBLN4, FLNA, FBN1, FBN2, MYH11, MYLK, NOTCH1, PRKG1, SLC2A10, SMAD3, TGFB2, TGFBR1, TGFBR2. Seventy-four patients (72.5%) had no medically important genetic alterations. Four patients (3.9%) had a deleterious mutation identified in the FBN1, COL5A1, MYLK, and FLNA genes. Twenty-two (21.6%) previously unreported suspicious variants of unknown significance were identified in 1 or more of the following genes: FBN1 (n = 5); MYH11 (n = 4); ACTA2 (n = 2); COL1A1 (n = 2); TGFBR1 (n = 2); COL3A1 (n = 1); COL5A1 (n = 1); COL5A2 (n = 1); FLNA (n = 1); NOTCH1 (n = 1); PRKG1 (n = 1); and TGFBR3 (n = 1). Identified mutations had implications for clinical management. Routine genetic screening of patients with TAAD provides information that enables genetically personalized care and permits identification of novel mutations responsible for aortic pathology. Analysis of large data sets of variants of unknown significance that include associated clinical features will help define the mutational spectrum of known genes underlying this phenotype and potential identify new candidate loci."	"Exome sequencing in seven families and gene-based association studies indicate genetic heterogeneity and suggest possible candidates for fibromuscular dysplasia. Fibromuscular dysplasia (FMD) is a nonatherosclerotic vascular disease leading to stenosis, aneurysm and dissection, mainly of renal arteries and carotids. FMD occurs predominantly in women with nearly four out of 1000 prevalence and cause hypertension, renal ischemia or stroke. The pathogenesis of FMD is unknown and a genetic origin is suspected given its demonstrated familial aggregation. We performed whole exome sequencing (WES) in 16 cases (seven families). Coding variants in 3971 genes were prioritized on frequency (minor allele frequency &lt; 0.01) and in silico predicted functionality. No gene harbours variants that are shared among all affected members of at least three families. Variants from 16 genes of vascular and connective tissue diseases are excluded as causative in these families. Genes with at least four variants in the 16 patients and vascular genes were followed-up using genotypes from 249 unrelated cases and 689 controls. Gene-based association analyses using SKAT-O shows nominal significant association with multifocal FMD (N = 164) for myosin light chain kinase (MYLK, P = 0.01) previously involved in thoracic aortic aneurysm, obscurin (OBSCN), a sarcomeric protein (P = 0.003), dynein cytoplasmic heavy chain 1 (DYNC2H1, P = 0.02) and RNF213 previously associated with Moyamoya disease (P = 0.01). Our study indicates genetic heterogeneity and the unlikely existence of a major gene for FMD and excludes the role of several vascular genes in familial FMD. We also suggest four possible candidate genes for multifocal FMD, though these findings need further genetic and functional confirmation. More powerful WES and association studies [e.g. genome-wide association study (GWAS)] will better decipher the genetic basis of FMD."	"Structure-Function Analysis of the Non-Muscle Myosin Light Chain Kinase (nmMLCK) Isoform by NMR Spectroscopy and Molecular Modeling: Influence of MYLK Variants. The MYLK gene encodes the multifunctional enzyme, myosin light chain kinase (MLCK), involved in isoform-specific non-muscle and smooth muscle contraction and regulation of vascular permeability during inflammation. Three MYLK SNPs (P21H, S147P, V261A) alter the N-terminal amino acid sequence of the non-muscle isoform of MLCK (nmMLCK) and are highly associated with susceptibility to acute lung injury (ALI) and asthma, especially in individuals of African descent. To understand the functional effects of SNP associations, we examined the N-terminal segments of nmMLCK by 1H-15N heteronuclear single quantum correlation (HSQC) spectroscopy, a 2-D NMR technique, and by in silico molecular modeling. Both NMR analysis and molecular modeling indicated SNP localization to loops that connect the immunoglobulin-like domains of nmMLCK, consistent with minimal structural changes evoked by these SNPs. Molecular modeling analysis identified protein-protein interaction motifs adversely affected by these MYLK SNPs including binding by the scaffold protein 14-3-3, results confirmed by immunoprecipitation and western blot studies. These structure-function studies suggest novel mechanisms for nmMLCK regulation, which may confirm MYLK as a candidate gene in inflammatory lung disease and advance knowledge of the genetic underpinning of lung-related health disparities. "	"A nonmuscle myosin light chain kinase-dependent gene signature in peripheral blood mononuclear cells is linked to human asthma severity and exacerbation status. Asthma is increasingly recognized as a heterogeneous disease influenced by complex genetic and environmental contributions. Myosin light chain kinase (MLCK; gene symbol, MYLK), especially the nonmuscle isoform nmMLCK, is a cytoskeleton protein known to be related to human asthma susceptibility and severity, findings confirmed in preclinical models of asthmatic inflammation. In this study, we define the central capacity for a nmMLCK-influenced gene signature in human peripheral blood mononuclear cells to predict human asthma severity and exacerbation status. We refined this signature from a list of nmMLCK-influenced genes identified in lung tissues of nmMLCK knockout mice exposed to inflammatory stimuli (ventilator-induced lung injury), with subsequent identification of nmMLCK-influenced genes in a list of human asthma severity-related genes expressed in blood. The enriched nmMLCK-influenced gene signature successfully predicted human asthma severity and exacerbation status in both discovery and validation human asthma cohorts. These findings validate the central role played by nmMLCK in asthma susceptibility, severity, and exacerbation and further provide novel gene signatures as effective asthma biomarkers for severity, exacerbation, and prognosis. "	"Characterization of cells cultured from chylous effusion from a patient with sporadic lymphangioleiomyomatosis. Lymphangioleiomyomatosis (LAM) is a progressive, rare interstitial lung disease that almost exclusively affects women. It is caused by a mutation in one of the tuberous sclerosis genes, TSC1 or TSC2, and constitutive activation of the mammalian target of rapamycin (mTOR) pathway in smooth muscle-like cells (LAM cells). The heightened proliferation and accumulation of LAM cells leads to the destruction of lung tissue. In the present study, we developed a cell line (S-LAM1) derived from a chylous effusion obtained from a patient with sporadic, pulmonary LAM and evaluated its phenotype using immunofluorescence, flow cytometry, and an image stream system. Ultrastructure was assessed using a transmission electron microscope. To assess the ability of LAM cells to move and migrate (which is strictly associated with the ability to metastasize), we carried-out a real-time polymerase chain reaction (PCR) array analysis of 84 genes involved in cell motility. In order to evaluate the effect of rapamycin, a natural inhibitor of mTOR kinase, on S-LAM1 cells, a sulforhodamine B cell viability assay was performed with different concentrations of rapamycin. The phenotype of these cells is consistent with the biology of LAM cells. S-LAM1 cells present combined smooth muscle, melanocytic, and lymphatic endothelium lineage, as well as the presence of mesenchymal differentiation markers. A particular pattern of gene expression, including high expression of ezrin (EZR), myosin heavy chain 10, non-muscle (MYH10), and myosin light chain kinase (MYLK) and a greatly decreased expression of supervillin (SVIL), when compared to controls, indicates a high potential motility activity, especially of cell spreading. Rapamycin significantly, although only partially, inhibited S-LAM1 cell proliferation in vitro, and should, perhaps, be considered in the future in combination with other agents."	"Fine mapping of the myosin light chain kinase (MYLK) gene replicates the association with asthma in populations of Spanish descent. NA"	"First genetic analysis of aneurysm genes in familial and sporadic abdominal aortic aneurysm. Genetic causes for abdominal aortic aneurysm (AAA) have not been identified and the role of genes associated with familial thoracic aneurysms in AAA has not been explored. We analyzed nine genes associated with familial thoracic aortic aneurysms, the vascular Ehlers-Danlos gene COL3A1 and the MTHFR p.Ala222Val variant in 155 AAA patients. The thoracic aneurysm genes selected for this study were the transforming growth factor-beta pathway genes EFEMP2, FBN1, SMAD3, TGBF2, TGFBR1, TGFBR2, and the smooth muscle cells genes ACTA2, MYH11 and MYLK. Sanger sequencing of all coding exons and exon-intron boundaries of these genes was performed. Patients with at least one first-degree relative with an aortic aneurysm were classified as familial AAA (n = 99), the others as sporadic AAA. We found 47 different rare heterozygous variants in eight genes: two pathogenic, one likely pathogenic, twenty-one variants of unknown significance (VUS) and twenty-three unlikely pathogenic variants. In familial AAA we found one pathogenic and segregating variant (COL3A1 p.Arg491X), one likely pathogenic and segregating (MYH11 p.Arg254Cys), and fifteen VUS. In sporadic patients we found one pathogenic (TGFBR2 p.Ile525Phefs*18) and seven VUS. Thirteen patients had two or more variants. These results show a previously unknown association and overlapping genetic defects between AAA and familial thoracic aneurysms, indicating that genetic testing may help to identify the cause of familial and sporadic AAA. In this view, genetic testing of these genes specifically or in a genome-wide approach may help to identify the cause of familial and sporadic AAA."	"Performant Mutation Identification Using Targeted Next-Generation Sequencing of 14 Thoracic Aortic Aneurysm Genes. At least 14 causative genes have been identified for both syndromic and nonsyndromic forms of thoracic aortic aneurysm/dissection (TAA), an important cause of death in the industrialized world. Molecular confirmation of the diagnosis is increasingly important for gene-tailored patient management but consecutive, conventional molecular TAA gene screening is expensive and labor-intensive. To circumvent these problems, we developed a TAA gene panel for next-generation sequencing of 14 TAA genes. After validation, we applied the assay to 100 Marfan patients. We identified 90 FBN1 mutations, 44 of which were novel. In addition, Multiplex ligation-dependent probe amplification identified large deletions in six of the remaining samples, whereas false-negative results were excluded by Sanger sequencing of FBN1, TGFBR1, and TGFBR2 in the last four samples. Subsequently, we screened 55 syndromic and nonsyndromic TAA patients. We identified causal mutations in 15 patients (27%), one in each of the six following genes: ACTA2, COL3A1, TGFBR1, MYLK, SMAD3, SLC2A10 (homozygous), two in NOTCH1, and seven in FBN1. We conclude that our approach for TAA genetic testing overcomes the intrinsic hurdles of consecutive Sanger sequencing of all candidate genes and provides a powerful tool for the elaboration of clinical phenotypes assigned to different genes. "	"Intestinal organoids: a model of intestinal fibrosis for evaluating anti-fibrotic drugs. Intestinal fibrosis is a critical complication of Crohn's disease (CD). Current in vitro models of intestinal fibrosis cannot model the complex intestinal architecture, while in vivo rodent models do not fully recapitulate human disease and have limited utility for large-scale screening. Here, we exploit recent advances in stem cell derived human intestinal organoids (HIOs) as a new human model of fibrosis in CD. Human pluripotent stem cells were differentiated into HIOs. We identified myofibroblasts, the key effector cells of fibrosis, by immunofluorescence staining for alpha-smooth muscle actin (αSMA), vimentin, and desmin. We examined the fibrogenic response of HIOs by treatment with transforming growth factor beta (TGFβ) in the presence or absence of the anti-fibrotic drug spironolactone. Fibrotic response was assayed by expression of fibrogenic genes (COL1A1 (collagen, type I, alpha 1), ACTA2 (alpha smooth muscle actin), FN1 (fibronectin 1), MYLK (myosin light chain kinase), and MKL1 (megakaryoblastic leukemia (translocation) 1)) and proteins (αSMA). Immunofluorescent staining of organoids identified a population of myofibroblasts within the HIO mesenchyme. TGFβ stimulation of HIOs produced a dose-dependent pro-fibrotic response. Spironolactone treatment blocked the fibrogenic response of HIOs to TGFβ. HIOs contain myofibroblasts and respond to a pro-fibrotic stimulus in a manner that is consistent with isolated human myofibroblasts. HIOs are a promising model system that might bridge the gap between current in vitro and in vivo models of intestinal fibrosis in IBD."	"Actin depolymerisation and crosslinking join forces with myosin II to contract actin coats on fused secretory vesicles. In many secretory cells actin and myosin are specifically recruited to the surface of secretory granules following their fusion with the plasma membrane. Actomyosin-dependent compression of fused granules is essential to promote active extrusion of cargo. However, little is known about molecular mechanisms regulating actin coat formation and contraction. Here, we provide a detailed kinetic analysis of the molecules regulating actin coat contraction on fused lamellar bodies in primary alveolar type II cells. We demonstrate that ROCK1 and myosin light chain kinase 1 (MLCK1, also known as MYLK) translocate to fused lamellar bodies and activate myosin II on actin coats. However, myosin II activity is not sufficient for efficient actin coat contraction. In addition, cofilin-1 and α-actinin translocate to actin coats. ROCK1-dependent regulated actin depolymerisation by cofilin-1 in cooperation with actin crosslinking by α-actinin is essential for complete coat contraction. In summary, our data suggest a complementary role for regulated actin depolymerisation and crosslinking, and myosin II activity, to contract actin coats and drive secretion. "	"Sp1/Sp3 transcription factors regulate hallmarks of megakaryocyte maturation and platelet formation and function. Sp1 and Sp3 belong to the specificity proteins (Sp)/Krüppel-like transcription factor family. They are closely related, ubiquitously expressed, and recognize G-rich DNA motifs. They are thought to regulate generic processes such as cell-cycle and growth control, metabolic pathways, and apoptosis. Ablation of Sp1 or Sp3 in mice is lethal, and combined haploinsufficiency results in hematopoietic defects during the fetal stages. Here, we show that in adult mice, conditional pan-hematopoietic (Mx1-Cre) ablation of either Sp1 or Sp3 has minimal impact on hematopoiesis, whereas the simultaneous loss of Sp1 and Sp3 results in severe macrothrombocytopenia. This occurs in a cell-autonomous manner as shown by megakaryocyte-specific (Pf4-Cre) double-knockout mice. We employed flow cytometry, cell culture, and electron microscopy and show that although megakaryocyte numbers are normal in bone marrow and spleen, they display a less compact demarcation membrane system and a striking inability to form proplatelets. Through megakaryocyte transcriptomics and platelet proteomics, we identified several cytoskeleton-related proteins and downstream effector kinases, including Mylk, that were downregulated upon Sp1/Sp3 depletion, providing an explanation for the observed defects in megakaryopoiesis. Supporting this notion, selective Mylk inhibition by ML7 affected proplatelet formation and stabilization and resulted in defective ITAM receptor-mediated platelet aggregation. "	"A MYLK variant regulates asthmatic inflammation via alterations in mRNA secondary structure. Myosin light-chain kinase (MYLK) is a gene known to be significantly associated with severe asthma in African Americans. Here we further examine the molecular function of a single-nucleotide polymorphism (SNP), located in the non-muscle myosin light-chain kinase isoform (nmMLCK), in asthma susceptibility and pathobiology. We identified nmMLCK variant (reference SNP: rs9840993, NM_053025: 721C&gt;T, c.439C&gt;T) with a distinct mRNA secondary structure from the other variants. The nmMLCK variant (721C) secondary structure exhibits increased stability with an elongated half-life in the human endothelial cell, and greater efficiency in protein translation initiation owing to an increased accessibility to translation start site. Finally, nmMLCK expression of 721C- and 721T-containing MYLK transgenes were compared in nmMLCK(-/-) mice and confirmed deleterious effects of nmMLCK expression on asthmatic indices and implicated the augmented influence of MYLK 721C&gt;T (c.439C&gt;T) SNP on asthma severity. The confirmation of the novel mechanism of the regulation of asthmatic inflammation by a MYLK advances knowledge of the genetic basis for asthma disparities, and further suggests the potential of nmMLCK as a therapeutic target. Our study suggests that in addition to altering protein structure and function, non-synonymous SNPs may also lead to phenotypic disparity by altering protein expression. "	"Relocation of CLIC1 promotes tumor cell invasion and colonization of fibrin. Chloride intracellular channel 1 (CLIC1) has been shown to be upregulated in various malignancies but its exact function remains unclear. Here, it is revealed that CLIC1 is critical for the stability of invadopodia in endothelial and tumor cells embedded in a 3-dimensional (3D) matrix of fibrin. Invadopodia stability was associated with the capacity of CLIC1 to induce stress fiber and fibronectin matrix formation following its β3 integrin (ITGB3)-mediated recruitment into invadopodia. This pathway, in turn, was relevant for fibrin colonization as well as slug (SNAI2) expression and correlated with a significant role of CLIC1 in metastasis in vivo. Mechanistically, a reduction of myosin light chain kinase (MYLK) in CLIC1-depleted as well as β3 integrin-depleted cells suggests an important role of CLIC1 for integrin-mediated actomyosin dynamics in cells embedded in fibrin. Overall, these results indicate that CLIC1 is an important contributor to tumor invasion, metastasis, and angiogenesis. This study uncovers an important new function of CLIC1 in the regulation of cell-extracellular matrix interactions and ability of tumor cells to metastasize to distant organs."	"Overexpression of myosin is associated with the development of uterine myoma. Myosin is involved in cell contraction and motility, but it is unclear whether it is involved in cell proliferation in uterine myoma. In this study therefore we aimed to explore the role of myosin in uterine myoma. Immunohistochemistry and real-time polymerase chain reaction were used to determine the expression of myosin light chain (MLC), myosin heavy chain (MHC) and myosin light chain kinase (MLCK) in patient uterine myoma and adjacent smooth muscle tissue. Human uterine fibroid cells were isolated and cultured in vitro, myosin heavy chain 11 (MHC subtype expressed in uterine fibroid cells) was knocked down by RNA interference to reduce the expression of myosin, then cell proliferation was determined by the methyl thiazol tetrazolium bromide method. To explore the possible mechanism of reduced cell proliferation after myosin heavy chain 11 knockdown, the downstream proteins collagen I, insulin-like growth factor-1, fibronectin and proteoglycans were analyzed. Expression of MLC, MHC, MLCK and p-MLCK in uterine myoma cells was significantly higher than in adjacent smooth muscle cells. After knockdown of MHC, smooth muscle cell proliferation decreased, and the production of collagen I, insulin-like growth factor-1 and fibronectin was also reduced, but proteoglycans did not show any significant change. Myosin is overexpressed in uterine myoma, and the overexpression of myosin is associated with both uterine contraction and tumor development of uterine myoma."	"MYLK and MYL9 expression in non-small cell lung cancer identified by bioinformatics analysis of public expression data. Gene expression microarrays are widely used to investigate molecular targets in cancers, including lung cancer. In this study, we analyzed online non-small cell lung cancer (NSCLC) microarray databases, to screen the key genes and pathways related to NSCLC by bioinformatics analyses. And then, the expression levels of two selected genes in the down-regulated co-pathways, myosin light chain kinase (MYLK) and myosin regulatory light chain 9 (MYL9), were determined in tumor, paired paraneoplastic, and normal lung tissues. First, gene set enrichment analysis and meta-analysis were conducted to identify key genes and pathways that contribute to NSCLC carcinogenesis. Second, using the total RNA and protein extracted from lung cancer tissues (n = 240), adjacent non-cancer tissues (n = 240), and normal lung tissues (n = 300), we examined the MYLK and MYL9 expression levels by quantitative real-time PCR and Western blot. Finally, we explored the correlations between mRNA and protein expressions of these two genes and the clinicopathological parameters of NSCLC. Fifteen up-regulated and nine down-regulated co-pathways were observed. A number of differentially expressed genes (CALM1, THBS1, CSF3, BMP2, IL6ST, MYLK, ROCK2, IL3RA, MYL9, PPP2CA, CSF2RB, CNAQ, GRIA2, IL10RA, IL10RB, IL11RA, LIFR, PLCB4, and RAC3) were identified (P &lt; 0.01) in the down-regulated co-pathways. The expression levels of MYLK and MYL9, which act downstream of the vascular smooth muscle contraction signal pathway and focal adhesion pathway, were significantly lower in cancer tissue than those in the paraneoplastic and normal tissues (P &lt; 0.05). Moreover, the expression levels of these two genes in stages III and IV NSCLC were significantly increased, when compared to stages I and II, and expressions levels in NSCLC with lymphatic metastasis were higher than that without lymphatic metastasis (P &lt; 0.05). Additionally, significant lower expression levels of the two genes were found in smokers than in nonsmokers (P &lt; 0.05). In contrast, gender, differentiated degrees, and pathohistological type appeared to have no impact on these gene expressions (P &gt; 0.05). These findings suggested that low MYLK and MYL9 expressions might be associated with the development of NSCLC. These genes may be also relevant to NSCLC metastasis. Future investigations with large sample sizes needed to verify these findings. "	"Familial thoracic aortic aneurysm with dissection presenting as flash pulmonary edema in a 26-year-old man. We are reporting a case of familial thoracic aortic aneurysm and dissection in a 26-year-old man with no significant past medical history and a family history of dissecting aortic aneurysm in his mother at the age of 40. The patient presented with cough, shortness of breath, and chest pain. Chest X-ray showed bilateral pulmonary infiltrates. CT scan of the chest showed a dissection of the ascending aorta. The patient underwent aortic dissection repair and three months later he returned to our hospital with new complaints of back pain. CT angiography showed a new aortic dissection extending from the left carotid artery through the bifurcation and into the iliac arteries. The patient underwent replacement of the aortic root, ascending aorta, total aortic arch, and aortic valve. The patient recovered well postoperatively. Genetic studies of the patient and his children revealed no mutations in ACTA2, TGFBR1, TGFBR2, TGFB2, MYH11, MYLK, SMAD3, or FBN1. This case report focuses on a patient with familial TAAD and discusses the associated genetic loci and available screening methods. It is important to recognize potential cases of familial TAAD and understand the available screening methods since early diagnosis allows appropriate management of risk factors and treatment when necessary. "	"Whole exome sequencing for the identification of a new mutation in TGFB2 involved in a familial case of non-syndromic aortic disease. Non-syndromic aortic disease (NSAD) is a frequently asymptomatic but potentially lethal disease characterised by familial cases of thoracic aortic aneurysms and dissections. This monogenic but genetically heterogeneous condition is primarily inherited as an autosomal dominant disorder with low penetrance and variable expression. Mutations in ACTA2, TGFBR1, TGFBR2, MYH11, SMAD3, MYLK, and FBN1 genes have been described but still, there are many unresolved familial cases. The whole exome of two distantly related and affected members of a Spanish family with multiple cases of NSAD was analysed through 5500 SOLiD(™) System for the identification of shared and putative pathogenic variants. A new mutation termed c.C1042T:p.R348C (NM_001135599.2) was identified in TGFB2, a gene located in an evolutionary highly conserved region (Chr1: 218,519,577-218,617,961) that has been recently connected to this disease. The analysis of other family members using capillary sequencing confirmed cosegregation of the mutation with the disease and its incomplete penetrance. The repeated implication of TGFB2 in the development of thoracic aortic aneurysms and dissections suggests that this gene should be considered during genetic diagnosis of this disease. An accurate diagnosis of affected individuals and additional family members at risk allows for a personalised and more efficient gene-based follow-up and treatment. Finally, the reiterative presence of common musculoskeletal and craniofacial additional features in patients with TGFB2 mutations suggests the existence of a new yet undefined connective tissue syndrome responsible for not only aortic dilation, but also for the other extracardiac alterations present in the affected patients."	"Prospection of genomic regions divergently selected in racing line of Quarter Horses in relation to cutting line. Selection of Quarter Horses for different purposes has led to the formation of lines, including racing and cutting horses. The objective of this study was to identify genomic regions divergently selected in racing line of Quarter Horses in relation to cutting line applying relative extended haplotype homozygosity (REHH) analysis, an extension of extended haplotype homozygosity (EHH) analysis, and the fixation index (F ST) statistic. A total of 188 horses of both sexes, born between 1985 and 2009 and registered at the Brazilian Association of Quarter Horse Breeders, including 120 of the racing line and 68 of the cutting line, were genotyped using single nucleotide polymorphism arrays. On the basis of 27 genomic regions identified as selection signatures by REHH and F ST statistics, functional annotations of genes were made in order to identify those that could have been important during formation of the racing line and that could be used subsequently for the development of selection tools. Genes involved in muscle growth (n=8), skeletal growth (n=10), muscle energy metabolism (n=15), cardiovascular system (n=14) and nervous system (n=23) were identified, including the FKTN, INSR, GYS1, CLCN1, MYLK, SYK, ANG, CNTFR and HTR2B. "	"Detection of genome-wide copy number variations in two chicken lines divergently selected for abdominal fat content. The chicken (Gallus gallus) is an important model organism that bridges the evolutionary gap between mammals and other vertebrates. Copy number variations (CNVs) are a form of genomic structural variation widely distributed in the genome. CNV analysis has recently gained greater attention and momentum, as the identification of CNVs can contribute to a better understanding of traits important to both humans and other animals. To detect chicken CNVs, we genotyped 475 animals derived from two broiler chicken lines divergently selected for abdominal fat content using chicken 60 K SNP array, which is a high-throughput method widely used in chicken genomics studies. Using PennCNV algorithm, we detected 438 and 291 CNVs in the lean and fat lines, respectively, corresponding to 271 and 188 CNV regions (CNVRs), which were obtained by merging overlapping CNVs. Out of these CNVRs, 99% were confirmed also by the CNVPartition program. These CNVRs covered 40.26 and 30.60 Mb of the chicken genome in the lean and fat lines, respectively. Moreover, CNVRs included 176 loss, 68 gain and 27 both (i.e. loss and gain within the same region) events in the lean line, and 143 loss, 25 gain and 20 both events in the fat line. Ten CNVRs were chosen for the validation experiment using qPCR method, and all of them were confirmed in at least one qPCR assay. We found a total of 886 genes located within these CNVRs, and Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analyses showed they could play various roles in a number of biological processes. Integrating the results of CNVRs, known quantitative trait loci (QTL) and selective sweeps for abdominal fat content suggested that some genes (including SLC9A3, GNAL, SPOCK3, ANXA10, HELIOS, MYLK, CCDC14, SPAG9, SOX5, VSNL1, SMC6, GEN1, MSGN1 and ZPAX) may be important for abdominal fat deposition in the chicken. Our study provided a genome-wide CNVR map of the chicken genome, thereby contributing to our understanding of genomic structural variations and their potential roles in abdominal fat content in the chicken."	"Progressive loss of myogenic differentiation in leiomyosarcoma has prognostic value. Well-differentiated leiomyosarcomas show morphologically recognizable smooth muscle differentiation, whereas poorly differentiated tumours may form a spectrum with a subset of undifferentiated pleomorphic sarcomas. The expression of certain muscle markers has been reported to have prognostic impact. We investigated the correlation between the morphological spectrum and the muscle marker expression profile of leiomyosarcoma, and the impact of these factors on patient outcomes. Tissue microarrays including 202 non-uterine and 181 uterine leiomyosarcomas with a spectrum of tumour morphologies were evaluated for expression of immunohistochemical markers of muscle differentiation. Poorly differentiated tumours frequently lost one or more conventional smooth muscle markers [smooth muscle actin, desmin, h-caldesmon, and smooth muscle myosin (P &lt; 0.0001)], as well as the more recently described markers SLMAP, MYLK, and ACTG2 (P &lt; 0.0001). In primary tumours, both desmin and CFL2 expression predicted improved overall survival in multivariate analyses (P = 0.0111 and P = 0.043, respectively). Patients with muscle marker-enriched tumours (expressing all four conventional markers or any three of ACTG2, CFL2, CASQ2, MYLK, and SLMAP) had improved overall survival (P &lt; 0.05) in univariate analyses. Morphologically and immunohistochemically, poorly differentiated leiomyosarcomas can masquerade as undifferentiated pleomorphic sarcomas with progressive loss of muscle markers. The expression of muscle markers has prognostic significance in primary leiomyosarcomas independently of tumour morphology."	"Molecular and cellular basis of the regulation of lymphatic contractility and lymphatic absorption. Lymphatic absorption is a highly regulated process driven by both an extrinsic mechanism (external force) and an intrinsic mechanism (lymphatic vessel contractility). The lymphatic muscle is a specialized smooth muscle with unique mechanical properties. To understand the molecular mechanism and relative contribution of smooth muscle contraction in lymphatic absorption, we analyzed mice with a smooth muscle-specific deletion of Mylk, a critical gene for smooth muscle contraction. Interestingly, the knockout mice were significantly resistant to anesthesia reagents. Upon injection in the feet with FITC-dextran, the mutant mice displayed a 2-fold delay of the absorption peak in the peripheral circulation. Examining the ear lymphatic vessels of the mutant mice revealed a reduction in the amount of fluid in the lumens of the lymphangions, suggesting an impairment of lymph formation. The Mylk-deficient lymphatic muscle exhibited a significant reduction of peristalsis and of myosin light chain phosphorylation in response to depolarization. We thus concluded that MLCK and myosin light chain phosphorylation are required for lymphatic vessel contraction. Lymphatic contractility is not an exclusive requirement for lymphatic absorption, and external force appears to be necessary for absorption. "	"Screening of key genes of unruptured intracranial aneurysms by using DNA microarray data analysis techniques. This study aimed to identify differentially expressed genes (DEGs) of unruptured intracranial aneurysms (IAs) and provide beneficial information for early diagnosis and treatment of IAs. The gene expression profile GSE26969 from the Gene Expression Omnibus database was downloaded, which included six human IA samples: three intracranial arterial aneurysm samples and three normal superficial temporal artery samples (control). Based on these data, we identified the DEGs between normal and disease samples with packages in the R language. The selected DEGs were further analyzed using bioinformatic methods. First, the STRING software was used to search co-expression relationships among DEGs, and the most important hub gene was found. We then used the plugins of the Cytoscape software, Mcode and Bingo, to conduct a module analysis. Next, pathways of the module genes were annotated using the FuncAssociate program. Compared with the control group, we obtained 169 DEGs in total, and by mining a module with the hub gene MYH11, we retrieved the ACTA2, MYH11, MYLK, and MYL9 genes, which were all in the module and were most significantly related to vascular smooth muscle contraction. We hypothesize that the genes identified here can be beneficial for early diagnosis and treatment of IAs. "	"Non-muscle Mlck is required for β-catenin- and FoxO1-dependent downregulation of Cldn5 in IL-1β-mediated barrier dysfunction in brain endothelial cells. Aberrant elevation in the levels of the pro-inflammatory cytokine interleukin-1β (IL-1β) contributes to neuroinflammatory diseases. Blood-brain barrier (BBB) dysfunction is a hallmark phenotype of neuroinflammation. It is known that IL-1β directly induces BBB hyperpermeability but the mechanisms remain unclear. Claudin-5 (Cldn5) is a tight junction protein found at endothelial cell-cell contacts that are crucial for maintaining brain microvascular endothelial cell (BMVEC) integrity. Transcriptional regulation of Cldn5 has been attributed to the transcription factors β-catenin and forkhead box protein O1 (FoxO1), and the signaling molecules regulating their nuclear translocation. Non-muscle myosin light chain kinase (nmMlck, encoded by the Mylk gene) is a key regulator involved in endothelial hyperpermeability, and IL-1β has been shown to mediate nmMlck-dependent barrier dysfunction in epithelia. Considering these factors, we tested the hypothesis that nmMlck modulates IL-1β-mediated downregulation of Cldn5 in BMVECs in a manner that depends on transcriptional repression mediated by β-catenin and FoxO1. We found that treating BMVECs with IL-1β induced barrier dysfunction concomitantly with the nuclear translocation of β-catenin and FoxO1 and the repression of Cldn5. Most importantly, using primary BMVECs isolated from mice null for nmMlck, we identified that Cldn5 repression caused by β-catenin and FoxO1 in IL-1β-mediated barrier dysfunction was dependent on nmMlck."	"MiRNA-155 targets myosin light chain kinase and modulates actin cytoskeleton organization in endothelial cells. Previously, we identified a microRNA (miRNA) signature for endothelial cells (ECs) subjected to unidirectional shear stress (USS). MiR-155, a multifunctional miRNA that has been implicated in atherosclerosis, was among the shear stress-responsive miRNAs. Here, we examined the role of miR-155 in modulating EC phenotype and function. In vitro, increased miR-155 levels in human ECs induced changes in morphology and filamentous (F)-actin organization. In addition, ECs transfected with miR-155 mimic were less migratory and less proliferative and had less apoptosis compared with control ECs. In mouse aorta, miR-155 expression was increased in the intima of thoracic aorta, where blood flow produces steady and unidirectional shear stress, compared with the intima of the lower curvature of the aortic arch, which is associated with oscillatory and low shear stress. These differences in miR-155 expression were associated with distinct changes in EC morphology and F-actin. The effects of miR-155 in vitro were mediated through suppression of two key regulators of the EC cytoskeleton organization: RhoA and myosin light chain kinase (MYLK). A novel direct interaction between miR-155 and the MYLK 3'UTR was verified by luciferase-MYLK 3'UTR reporter assays. Furthermore, the intensity of immunofluorescence staining for RhoA and MYLK in mouse aorta correlated inversely with miR-155 expression. In conclusion, a prominent effect of the multifunctional miR-155 in ECs is modulation of phenotype through alterations in RhoA, MYLK expression, and actin cytoskeleton organization."	"Genome wide expression analysis suggests perturbation of vascular homeostasis during high altitude pulmonary edema. High altitude pulmonary edema (HAPE) is a life-threatening form of non-cardiogenic edema which occurs in unacclimatized but otherwise normal individuals within two to four days after rapid ascent to altitude beyond 3000 m. The precise pathoetiology and inciting mechanisms regulating HAPE remain unclear. We performed global gene expression profiling in individuals with established HAPE compared to acclimatized individuals. Our data suggests concurrent modulation of multiple pathways which regulate vascular homeostasis and consequently lung fluid dynamics. These pathways included those which regulate vasoconstriction through smooth muscle contraction, cellular actin cytoskeleton rearrangements and endothelial permeability/dysfunction. Some notable genes within these pathways included MYLK; rho family members ARGEF11, ARHGAP24; cell adhesion molecules such as CLDN6, CLDN23, PXN and VCAM1 besides other signaling intermediates. Further, several important regulators of systemic/pulmonary hypertension including ADRA1D, ECE1, and EDNRA were upregulated in HAPE. We also observed significant upregulation of genes involved in paracrine signaling through chemokines and lymphocyte activation pathways during HAPE represented by transcripts of TNF, JAK2, MAP2K2, MAP2K7, MAPK10, PLCB1, ARAF, SOS1, PAK3 and RELA amongst others. Perturbation of such pathways can potentially skew vascular homeostatic equilibrium towards altered vascular permeability. Additionally, differential regulation of hypoxia-sensing, hypoxia-response and OXPHOS pathway genes in individuals with HAPE were also observed. Our data reveals specific components of the complex molecular circuitry underlying HAPE. We show concurrent perturbation of multiple pathways regulating vascular homeostasis and suggest multi-genic nature of regulation of HAPE."	"Nonmuscle myosin light chain kinase regulates murine asthmatic inflammation. Myosin light chain kinase (MLCK; gene code, MYLK) is a multifunctional enzyme involved in isoform-specific nonmuscle (nm) and smooth muscle contraction, inflammation, and vascular permeability, processes directly relevant to asthma pathobiology. In this report, we highlight the contribution of the nm isoform (nmMLCK) to asthma susceptibility and severity, supported by studies in two lines of transgenic mice with knocking out nmMLCK or selectively overexpressing nmMLCK in endothelium. These mice were sensitized to exhibit ovalbumin-mediated allergic inflammation. Genetically engineered mice with targeted nmMLCK deletion (nmMLCK(-/-)) exhibited significant reductions in lung inflammation and airway hyperresponsiveness. Conversely, mice with overexpressed nmMLCK in endothelium (nmMLCK(ec/ec)) exhibited elevated susceptibility and severity in asthmatic inflammation. In addition, reduction of nmMLCK expression in pulmonary endothelium by small interfering RNA results in reduced asthmatic inflammation in wild-type mice. These pathophysiological assessments demonstrate the positive contribution of nmMLCK to asthmatic inflammation, and a clear correlation of the level of nmMLCK with the degree of experimental allergic inflammation. This study confirms MYLK as an asthma candidate gene, and verifies nmMLCK as a novel molecular target in asthmatic pathobiology. "	"The genetics and genomics of thoracic aortic disease. Genetic studies over the past several decades have helped to better elucidate the genomics and inheritance of thoracic aortic diseases. Seminal work from various researchers have identified several genetic factors and mutations that predispose to aortic aneurysms, which will aid in better screening and early intervention, resulting in better clinical outcomes. Syndromic aneurysms have been associated with Marfan syndrome, Loeys-Dietz syndrome, aneurysm osteoarthritis syndrome, arterial tortuosity syndrome, Ehlers-Danlos Syndrome, and TGFβ mutation. Mutations in MYH11, TGFβR1, TGFβR2, MYLK, and ACTA2 genes have been linked to familial non-syndromic cases, although linkage analysis is limited by incomplete penetrance and/or locus heterogeneity. This overview presents a summary of key genetic and genomic factors that are associated with thoracic aortic diseases. "	"Genome-wide analysis of three-way interplay among gene expression, cancer cell invasion and anti-cancer compound sensitivity. Chemosensitivity and tumor metastasis are two primary issues in cancer management. Cancer cells often exhibit a wide range of sensitivity to anti-cancer compounds. To gain insight on the genetic mechanism of drug sensitivity, one powerful approach is to employ the panel of 60 human cancer cell lines developed by the National Cancer Institute (NCI). Cancer cells also show a broad range of invasion ability. However, a genome-wide portrait on the contributing molecular factors to invasion heterogeneity is lacking. Our lab performed an invasion assay on the NCI-60 panel. We identified invasion-associated (IA) genes by correlating our invasion profiling data with the Affymetrix gene expression data on NCI-60. We then employed the recently released chemosensitivity data of 99 anti-cancer drugs of known mechanism to investigate the gene-drug correlation, focusing on the IA genes. Afterwards, we collected data from four independent drug-testing experiments to validate our findings on compound response prediction. Finally, we obtained published clinical and molecular data from two recent adjuvant chemotherapy cohorts, one on lung cancer and one on breast cancer, to test the performance of our gene signature for patient outcome prediction. First, we found 633 IA genes from the invasion-gene expression correlation study. Then, for each of the 99 drugs, we obtained a subset of IA genes whose expression levels correlated with drug-sensitivity profiles. We identified a set of eight genes (EGFR, ITGA3, MYLK, RAI14, AHNAK, GLS, IL32 and NNMT) showing significant gene-drug correlation with paclitaxel, docetaxel, erlotinib, everolimus and dasatinib. This eight-gene signature (derived from NCI-60) for chemosensitivity prediction was validated by a total of 107 independent drug tests on 78 tumor cell lines, most of which were outside of the NCI-60 panel. The eight-gene signature predicted relapse-free survival for the lung and breast cancer patients (log-rank P = 0.0263; 0.00021). Multivariate Cox regression yielded a hazard ratio of our signature of 5.33 (95% CI = 1.76 to 16.1) and 1.81 (95% CI = 1.19 to 2.76) respectively. The eight-gene signature features the cancer hallmark epidermal growth factor receptor (EGFR) and genes involved in cell adhesion, migration, invasion, tumor growth and progression. Our study sheds light on the intricate three-way interplay among gene expression, invasion and compound-sensitivity. We report the finding of a unique signature that predicts chemotherapy survival for both lung and breast cancer. Augmenting the NCI-60 model with in vitro characterization of important phenotype-like invasion potential is a cost-effective approach to power the genomic chemosensitivity analysis."	"Genetic polymorphisms associated with exertional rhabdomyolysis. Exertional rhabdomyolysis (ER) occurs in young, otherwise healthy, individuals principally during strenuous exercise, athletic, and military training. Although many risk factors have been offered, it is unclear why some individuals develop ER when participating in comparable levels of physical exertion under identical environmental conditions and others do not. This study investigated possible genetic polymorphisms that might help explain ER. DNA samples derived from a laboratory-based study of persons who had never experienced an episode of ER (controls) and clinical ER cases referred for testing over the past several years were analyzed for single nucleotide polymorphisms (SNPs) in candidate genes. These included angiotensin I converting enzyme (ACE), α-actinin-3 (ACTN3), creatine kinase muscle isoform (CKMM), heat shock protein A1B (HSPA1B), interleukin 6 (IL6), myosin light chain kinase (MYLK), adenosine monophosphate deaminase 1 (AMPD1), and sickle cell trait (HbS). Population included 134 controls and 47 ER cases. The majority of ER cases were men (n = 42/47, 89.4 %); the five women with ER were Caucasian. Eighteen African Americans (56.3 %) were ER cases. Three SNPs were associated with ER: CKMM Ncol, ACTN3 R577X, and MYLK C37885A. ER cases were 3.1 times more likely to have the GG genotype of CKMM (odds ratio/OR = 3.1, confidence interval/CI 1.33-7.10), 3.0 times for the XX genotype of ACTN3 SNP (OR = 2.97, CI 1.30-3.37), and 5.7 times for an A allele of MYLK (OR = 21.35, CI 2.60-12.30). All persons with HbS were also ER cases. Three distinct polymorphisms were associated with ER. Further work will be required to replicate these findings and determine the mechanism(s) whereby these variants might confer susceptibility."	"Meta-analysis of gene expression data identifies causal genes for prostate cancer. Prostate cancer is a leading cause of death in male populations across the globe. With the advent of gene expression arrays, many microarray studies have been conducted in prostate cancer, but the results have varied across different studies. To better understand the genetic and biologic mechanisms of prostate cancer, we conducted a meta-analysis of two studies on prostate cancer. Eight key genes were identified to be differentially expressed with progression. After gene co-expression analysis based on data from the GEO database, we obtained a co- expressed gene list which included 725 genes. Gene Ontology analysis revealed that these genes are involved in actin filament-based processes, locomotion and cell morphogenesis. Further analysis of the gene list should provide important clues for developing new prognostic markers and therapeutic targets."	"MicroRNA regulation of nonmuscle myosin light chain kinase expression in human lung endothelium. Increased lung vascular permeability, the consequence of endothelial cell (EC) barrier dysfunction, is a cardinal feature of inflammatory conditions such as acute lung injury and sepsis and leads to lethal physiological dysfunction characterized by alveolar flooding, hypoxemia, and pulmonary edema. We previously demonstrated that the nonmuscle myosin light chain kinase isoform (nmMLCK) plays a key role in agonist-induced pulmonary EC barrier regulation. The present study evaluated posttranscriptional regulation of MYLK expression, the gene encoding nmMLCK, via 3' untranslated region (UTR) binding by microRNAs (miRNAs) with in silico analysis identifying hsa-miR-374a, hsa-miR-374b, hsa-miR-520c-3p, and hsa-miR-1290 as miRNA candidates. We identified increased MYLK gene transcription induced by TNF-α (24 h; 4.7 ± 0.45 fold increase [FI]), LPS (4 h; 2.85 ± 0.15 [FI]), and 18% cyclic stretch (24 h; 4.6 ± 0.24 FI) that was attenuated by transfection of human lung ECs with mimics of hsa-miR-374a, hsa-miR-374b, hsa-miR-520c-3p, or hsa-miR-1290 (20-80% reductions by each miRNA). TNF-α, LPS, and 18% cyclic stretch each increased the activity of a MYLK 3'UTR luciferase reporter (2.5-7.0 FI) with induction reduced by mimics of each miRNA (30-60% reduction). MiRNA inhibitors (antagomirs) for each MYLK miRNA significantly increased 3'UTR luciferase activity (1.2-2.3 FI) and rescued the decreased MLCK-3'UTR reporter activity produced by miRNA mimics (70-110% increases for each miRNA; P &lt; 0.05). These data demonstrate that increased human lung EC expression of MYLK by bioactive agonists (excessive mechanical stress, LPS, TNF-α) is regulated in part by specific miRNAs (hsa-miR-374a, hsa-miR-374b, hsa-miR-520c-3p, and hsa-miR-1290), representing a novel therapeutic strategy for reducing inflammatory lung injury. "	"Non-syndromic thoracic aortic aneurysms and dissections--a genetic review. Thoracic aortic aneurysm and dissections (TAADs) are associated with both high mortality and medical expense. Poor outcomes are preventable by surgical repair; however, identifying individuals at-risk is difficult. Researchers are scanning the human genome to characterize the genetic determinants of TAADs by identifying chromosomal regions, gene mutations, single nucleotide polymorphism (SNP), genomic copy number variants and micro-RNA variants, with the purpose of analyzing the risk of TAADs associated with these predisposing genes. The goal of this review is to develop screening tests to identify individuals at risk for non-syndromic TAADs. This genetic survey has significant clinical implications because high-risk individuals can be closely monitored and can benefit from preventative surgical repair."	"TLR4 activation of TRPC6-dependent calcium signaling mediates endotoxin-induced lung vascular permeability and inflammation. Lung vascular endothelial barrier disruption and the accompanying inflammation are primary pathogenic features of acute lung injury (ALI); however, the basis for the development of both remains unclear. Studies have shown that activation of transient receptor potential canonical (TRPC) channels induces Ca(2+) entry, which is essential for increased endothelial permeability. Here, we addressed the role of Toll-like receptor 4 (TLR4) intersection with TRPC6-dependent Ca(2+) signaling in endothelial cells (ECs) in mediating lung vascular leakage and inflammation. We find that the endotoxin (lipopolysaccharide; LPS) induces Ca(2+) entry in ECs in a TLR4-dependent manner. Moreover, deletion of TRPC6 renders mice resistant to endotoxin-induced barrier dysfunction and inflammation, and protects against sepsis-induced lethality. TRPC6 induces Ca(2+) entry in ECs, which is secondary to the generation of diacylglycerol (DAG) induced by LPS. Ca(2+) entry mediated by TRPC6, in turn, activates the nonmuscle myosin light chain kinase (MYLK), which not only increases lung vascular permeability but also serves as a scaffold to promote the interaction of myeloid differentiation factor 88 and IL-1R-associated kinase 4, which are required for NF-κB activation and lung inflammation. Our findings suggest that TRPC6-dependent Ca(2+) entry into ECs, secondary to TLR4-induced DAG generation, participates in mediating both lung vascular barrier disruption and inflammation induced by endotoxin."	"Pathway-based classification of cancer subtypes. Molecular markers based on gene expression profiles have been used in experimental and clinical settings to distinguish cancerous tumors in stage, grade, survival time, metastasis, and drug sensitivity. However, most significant gene markers are unstable (not reproducible) among data sets. We introduce a standardized method for representing cancer markers as 2-level hierarchical feature vectors, with a basic gene level as well as a second level of (more stable) pathway markers, for the purpose of discriminating cancer subtypes. This extends standard gene expression arrays with new pathway-level activation features obtained directly from off-the-shelf gene set enrichment algorithms such as GSEA. Such so-called pathway-based expression arrays are significantly more reproducible across datasets. Such reproducibility will be important for clinical usefulness of genomic markers, and augment currently accepted cancer classification protocols. The present method produced more stable (reproducible) pathway-based markers for discriminating breast cancer metastasis and ovarian cancer survival time. Between two datasets for breast cancer metastasis, the intersection of standard significant gene biomarkers totaled 7.47% of selected genes, compared to 17.65% using pathway-based markers; the corresponding percentages for ovarian cancer datasets were 20.65% and 33.33% respectively. Three pathways, consisting of Type_1_diabetes mellitus, Cytokine-cytokine_receptor_interaction and Hedgehog_signaling (all previously implicated in cancer), are enriched in both the ovarian long survival and breast non-metastasis groups. In addition, integrating pathway and gene information, we identified five (ID4, ANXA4, CXCL9, MYLK, FBXL7) and six (SQLE, E2F1, PTTG1, TSTA3, BUB1B, MAD2L1) known cancer genes significant for ovarian and breast cancer respectively. Standardizing the analysis of genomic data in the process of cancer staging, classification and analysis is important as it has implications for both pre-clinical as well as clinical studies. The paradigm of diagnosis and prediction using pathway-based biomarkers as features can be an important part of the process of biomarker-based cancer analysis, and the resulting canonical (clinically reproducible) biomarkers can be important in standardizing genomic data. We expect that identification of such canonical biomarkers will improve clinical utility of high-throughput datasets for diagnostic and prognostic applications."	"Heterozygote genotypes at rs2222823 and rs2811712 SNP loci are associated with cerebral small vessel disease in Han Chinese population. With developments of etiology of cerebral small vessel disease (CSVD) and genome-wide association study (GWAS) of stroke, the genetic studies of CSVD are focused on genes related to blood-brain barrier (BBB) and aging. The project aims to investigate the association between CSVD and susceptibility loci and candidate genes. All study subjects admitted Beijing Tiantan Hospital from June 2009 to September 2010 including 197 cerebral small vessel disease patients(S), 198 large artery atherosclerosis control individuals (vascular stenotic rate ≥50% diameter reduction) (L), 200 hypertensive intracerebral hemorrhage control individuals (H) and 197 stroke-free control individuals (C). 15 SNPs in 4 genes (MYLK, AQP4, NINJ2, and INK4/ARF) were genotyped using Multiplex Snapshot assay. Each SNP was first examined between the groups S and C in different genetic models (codominant, dominant, recessive, overdominant, and log-additive). Permutation correction was used to adjust for multiple testing. The significant SNP loci were further analyzed in comparing S with L and H, respectively. Subgroup analysis was also performed for each risk-factor category. Among the 15 SNPs, rs2222823 and rs2811712 were found to be significantly associated with CSVD after multiple-testing adjustment. The heterozygote (A/T) of rs2222823 of MYLK has an odds ratio of 0.52 (95% CI =[0.35, 0.79], P= 0.002, adjusted P= 0.031) when compared with homozygotes. The heterozygote (C/T) of rs2811712 of INK4/ARF has an odds ratio of 1.75 (95% CI =[1.13-2.71], P= 0.004, adjusted P= 0.050). The SNP rs2222823 was significant (P= 0.035) in comparing S with H. In comparing S versus L, it is significant for the subgroups of patients without diabetes (P= 0.012) and drinking (P= 0.018). rs2811712 was significant in comparing S with L for the subgroups of patients with hyperlipidemia (P= 0.029) and drinking (P= 0.04). The heterozygotes (T/A) at the rs2222823 SNP locus of MYLK gene decreases the risk of having cerebral small vessel disease, while the heterozygotes (C/T) at the rs2811712 SNP locus of INK4/ARF gene increases the risk, suggesting that the MYLK and INK4/ARF are the associated genes of cerebral small vessel disease in Han Chinese population."	"Hypermethylated FAM5C and MYLK in serum as diagnosis and pre-warning markers for gastric cancer. Most cases of gastric cancer (GC) are not diagnosed at early stage which can be curable, so it is necessary to identify effective biomarkers for its diagnosis and pre-warning. We have used methylated DNA immunoprecipitation (MeDIP) to identify genes that are frequently methylated in gastric cancer cell lines. Promoter regions hypermethylation of candidate genes were tested by methylation-specific polymerase chain reaction (MSP) in serum samples, including GC (n=58), gastric precancerous lesions (GPL, n=46), and normal controls (NC, n=30). Eighty two hypermethylated genes were acquired by array analysis and 5 genes (BCAS4, CHRM2, FAM5C, PRAC and MYLK) were selected as the candidate genes. Three genes (CHRM2, FAM5C and MYLK) were further confirmed to show methylation rates increased with progression from NC to GPL, then to GC. There was obvious decrease in detection of FAM5C and MYLK hypermethylation, but not CHRM2, from preoperative to postoperative evaluation (P&lt; 0.001). Combined detection of FAM5C and MYLK hypermethylation had a higher sensitivity in GC diagnosis (77.6%,45/58) and pre-warning (30.4%,14/46) than one single gene detection and also had a high specificity of 90%. The combined hypermethylated status of FAM5C and MYLK correlated with tumor size (P&lt;0.001), tumor invasion depth (P=0.001) and tumor-node-metastasis (TNM) stage (P=0.003). Hypermethylated FAM5C and MYLK can be used as potential biomarkers for diagnosis and pre-warning of GC."	"The regulation of myosin phosphatase in pregnant human myometrium. Myometrial smooth muscle contractility is regulated predominantly through the reversible phosphorylation of MYLs (myosin light chains), catalysed by MYLK (MYL kinase) and MYLP (MYL phosphatase) activities. MYLK is activated by Ca2+-calmodulin, and most uterotonic agonists operate through myometrial receptors that increase [Ca2+]i (intracellular Ca2+ concentration). Moreover, there is substantial evidence for Ca2+-independent inhibition of MYLP in smooth muscle, leading to generation of increased MYL phosphorylation and force for a given [Ca2+]i, a phenomenon known as 'Ca2+-sensitization'. ROCK (Rho-associated kinase)-mediated phosphorylation and inhibition of MYLP has been proposed as a mechanism for Ca2+-sensitization in smooth muscle. However, it is unclear to date whether the mechanisms that sensitize the contractile machinery to Ca2+ are important in the myometrium, as they appear to be in vascular and respiratory smooth muscle. In the present paper, we discuss the signalling pathways regulating MYLP activity and the involvement of ROCK in myometrial contractility, and present recent data from our laboratory which support a role for Ca2+-sensitization in human myometrium."	"Phasic contractions of isolated human myometrium are associated with Rho-kinase (ROCK)-dependent phosphorylation of myosin phosphatase-targeting subunit (MYPT1). Force generation in smooth muscle is driven by phosphorylation of myosin light chains (MYL), which is regulated by the equilibrium between the activities of myosin light chain kinase (MYLK) and myosin phosphatase (MYLP). MYLK is activated by Ca(2+)-calmodulin whereas MYLP is inhibited by phosphorylation of its myosin-binding subunit (MYPT1) by Ca(2+)-independent mechanisms, leading to generation of increased MYL phosphorylation and force for a given intracellular Ca(2+) concentration, a phenomenon known as 'calcium-sensitization'. The regulation of MYPT1 phosphorylation in human myometrium, which shows increasing phasic contractility at the onset of labour, has yet to be fully investigated. Here, we explore phosphorylation of MYPT1 at Thr696 and Thr853, alongside phosphorylation of MYL, in fresh human myometrial tissue and cultured myometrial cells. We report that pMYPT1 (Thr853) levels are dependent on the activity of Rho-associated kinase (ROCK), determined using the ROCK inhibitor g-H-1152 and siRNA-mediated knockdown of ROCK1/2, and are highly correlated to ppMYL (Thr18/Ser19) levels. Pharmacological inhibition of ROCK was associated with a decrease in oxytocin (OXT)-stimulated contractility of myometrial strips in vitro. Moreover, we have measured pMYPT1 and pMYL levels between and during spontaneous and OXT-stimulated phasic contractions by rapidly freezing contracting muscle, and demonstrate for the first time functional coupling between increases in pMYPT1 (Thr853), ppMYL (Thr18/Ser19) and phasic contractility that is ROCK-dependent. The combined approach of measuring contractility and phosphorylation has demonstrated that the phosphorylation of MYPT1 (Thr853) changes dynamically with each contraction and has elucidated a defined role for ROCK in regulating myometrial contractility through MYLP, providing new insights into uterine physiology which will stimulate further research into treatments for preterm labour."	"An intronic MYLK variant associated with inflammatory lung disease regulates promoter activity of the smooth muscle myosin light chain kinase isoform. Intronic single-nucleotide polymorphisms (SNPs) are commonly associated with complex diseases but exhibit unknown biologic functionality. Myosin light-chain kinase (MLCK), a central cytoskeletal regulator encoded by MYLK, plays a key pathophysiological role in complex diseases including acute lung injury (ALI) and asthma. We studied the potential regulatory roles of two intronic MYLK SNPs (rs936170 and rs820336) previously associated with ALI and asthma. Due to their genomic location at the junction encoding the non-muscle and smooth muscle MLCK (smMLCK) isoforms, we first identified the transcription start site (TSS) of the smMLCK isoform, and isolated a 2,954-bp DNA fragment upstream of the smMLCK TSS. Serial 5' deletion of the fragment revealed a proximal promoter region exhibiting strong promoter activity with potential inhibitory elements in the distal region. Site-directed mutageneses and luciferase reporter assays showed no effect of the distal promoter SNP rs936170 on smMLCK promoter activity. In contrast, SNP rs820336, located in an enhancer/repressor region downstream of TSS, was identified to regulate smMLCK promoter activity in an allelic-dependent manner. The A allele interrupted the binding site for Forkhead box protein N1 (FOXN1), a transcription factor governing expression of immune response genes. Silencing of FOXN1 expression (siRNA) reduced FOXN1 interaction with cis-regulatory elements in proximity to rs820336 and significantly decreased smMLCK expression. These functional insights into the involvement of intronic MYLK SNPs further strengthen the concept that MYLK contributes to inflammatory disease susceptibility and represents an attractive molecular target in complex inflammatory disorders."	"Novel MYH11 and ACTA2 mutations reveal a role for enhanced TGFβ signaling in FTAAD. Thoracic aortic aneurysm/dissection (TAAD) is a common phenotype that may occur as an isolated manifestation or within the constellation of a defined syndrome. In contrast to syndromic TAAD, the elucidation of the genetic basis of isolated TAAD has only recently started. To date, defects have been found in genes encoding extracellular matrix proteins (fibrillin-1, FBN1; collagen type III alpha 1, COL3A1), proteins involved in transforming growth factor beta (TGFβ) signaling (TGFβ receptor 1 and 2, TGFBR1/2; and SMAD3) or proteins that build up the contractile apparatus of aortic smooth muscle cells (myosin heavy chain 11, MYH11; smooth muscle actin alpha 2, ACTA2; and MYLK). In 110 non-syndromic TAAD patients that previously tested negative for FBN1 or TGFBR1/2 mutations, we identified 7 ACTA2 mutations in a cohort of 43 familial TAAD patients, including 2 premature truncating mutations. Sequencing of MYH11 revealed an in frame splice-site alteration in one out of two probands with TAA(D) associated with PDA but none in the series of 22 probands from the cohort of 110 patients with non-syndromic TAAD. Interestingly, immunohistochemical staining of aortic biopsies of a patient and a family member with MYH11 and patients with ACTA2 missense mutations showed upregulation of the TGFβ signaling pathway. MYH11 mutations are rare and typically identified in patients with TAAD associated with PDA. ACTA2 mutations were identified in 16% of a cohort presenting familial TAAD. Different molecular defects in TAAD may account for a different pathogenic mechanism of enhanced TGFβ signaling."	"Organometallic Pyridylnaphthalimide Complexes as Protein Kinase Inhibitors. A new metal-containing scaffold for the design of protein kinase inhibitors is introduced. Key feature is a 3-(2-pyridyl)-1,8-naphthalimide &quot;pharmacophore chelate ligand&quot; which is designed to form two hydrogen bonds with the hinge region of the ATP-binding site and is at the same time capable of serving as a stable bidentate ligand through C-H-activation at the 4-position of the electron-deficient naphthalene moiety. This C-H-activation leads to a reduced demand for coordinating heteroatoms and thus sets the basis for a very efficient three-step synthesis starting from 1,8-naphthalic anhydride. The versatility of this ligand is demonstrated with the discovery of a ruthenium complex that functions as a nanomolar inhibitor for myosin light-chain kinase (MYLK or MLCK)."	"A transcribed pseudogene of MYLK promotes cell proliferation. Pseudogenes are considered nonfunctional genomic artifacts of catastrophic pathways. Recent evidence, however, indicates novel roles for pseudogenes as regulators of gene expression. We tested the functionality of myosin light chain kinase pseudogene (MYLKP1) in human cells and tissues by RT-PCR, promoter activity, and cell proliferation assays. MYLKP1 is partially duplicated from the original MYLK gene that encodes nonmuscle and smooth muscle myosin light chain kinase (smMLCK) isoforms and regulates cell contractility and cytokinesis. Despite strong homology with the smMLCK promoter (∼ 89.9%), the MYLKP1 promoter is minimally active in normal bronchial epithelial cells but highly active in lung adenocarcinoma cells. Moreover, MYLKP1 and smMLCK exhibit negatively correlated transcriptional patterns in normal and cancer cells with MYLKP1 strongly expressed in cancer cells and smMLCK highly expressed in non-neoplastic cells. For instance, expression of smMLCK decreased (19.5 ± 4.7 fold) in colon carcinoma tissues compared to normal colon tissues. Mechanistically, MYLKP1 overexpression inhibits smMLCK expression in cancer cells by decreasing RNA stability, leading to increased cell proliferation. These studies provide strong evidence for the functional involvement of pseudogenes in carcinogenesis and suggest MYLKP1 as a potential novel diagnostic or therapeutic target in human cancers."	"A knowledge-driven interaction analysis reveals potential neurodegenerative mechanism of multiple sclerosis susceptibility. Gene-gene interactions are proposed as an important component of the genetic architecture of complex diseases, and are just beginning to be evaluated in the context of genome-wide association studies (GWAS). In addition to detecting epistasis, a benefit to interaction analysis is that it also increases power to detect weak main effects. We conducted a knowledge-driven interaction analysis of a GWAS of 931 multiple sclerosis (MS) trios to discover gene-gene interactions within established biological contexts. We identify heterogeneous signals, including a gene-gene interaction between CHRM3 (muscarinic cholinergic receptor 3) and MYLK (myosin light-chain kinase) (joint P=0.0002), an interaction between two phospholipase C-β isoforms, PLCβ1 and PLCβ4 (joint P=0.0098), and a modest interaction between ACTN1 (actinin alpha 1) and MYH9 (myosin heavy chain 9) (joint P=0.0326), all localized to calcium-signaled cytoskeletal regulation. Furthermore, we discover a main effect (joint P=5.2E-5) previously unidentified by single-locus analysis within another related gene, SCIN (scinderin), a calcium-binding cytoskeleton regulatory protein. This work illustrates that knowledge-driven interaction analysis of GWAS data is a feasible approach to identify new genetic effects. The results of this study are among the first gene-gene interactions and non-immune susceptibility loci for MS. Further, the implicated genes cluster within inter-related biological mechanisms that suggest a neurodegenerative component to MS."	"Mutations in myosin light chain kinase cause familial aortic dissections. Mutations in smooth muscle cell (SMC)-specific isoforms of α-actin and β-myosin heavy chain, two major components of the SMC contractile unit, cause familial thoracic aortic aneurysms leading to acute aortic dissections (FTAAD). To investigate whether mutations in the kinase that controls SMC contractile function (myosin light chain kinase [MYLK]) cause FTAAD, we sequenced MYLK by using DNA from 193 affected probands from unrelated FTAAD families. One nonsense and four missense variants were identified in MYLK and were not present in matched controls. Two variants, p.R1480X (c.4438C&gt;T) and p.S1759P (c.5275T&gt;C), segregated with aortic dissections in two families with a maximum LOD score of 2.1, providing evidence of linkage of these rare variants to the disease (p = 0.0009). Both families demonstrated a similar phenotype characterized by presentation with an acute aortic dissection with little to no enlargement of the aorta. The p.R1480X mutation leads to a truncated protein lacking the kinase and calmodulin binding domains, and p.S1759P alters amino acids in the α-helix of the calmodulin binding sequence, which disrupts kinase binding to calmodulin and reduces kinase activity in vitro. Furthermore, mice with SMC-specific knockdown of Mylk demonstrate altered gene expression and pathology consistent with medial degeneration of the aorta. Thus, genetic and functional studies support the conclusion that heterozygous loss-of-function mutations in MYLK are associated with aortic dissections."	"Screening and identification of differentially expressed genes from chickens infected with Newcastle disease virus by suppression subtractive hybridization. Newcastle disease is an important viral infectious disease caused by Newcastle disease virus (NDV), which leads to severe economic losses in the poultry industry worldwide. The molecular mechanisms involved in the pathogenesis of NDV and the host-directed antiviral responses remain poorly understood. In this study, we screened and identified the differentially expressed transcripts from chicken spleen 36 h post NDV infection using suppression subtractive hybridization (SSH). From the SSH library, we obtained 140 significant differentially expressed sequence tags (ESTs), which could be divided into three categories: high homology genes (58), high homology ESTs (62) and novel ESTs (20). The 58 high homology genes could be grouped into nine clusters based on the best known function of their protein products, which involved signalling transduction (HSPC166, PDE7B, GRIA4, GARNL1), transcriptional regulation (ANP32A, LOC423724, SATB1, QKI, ETV6), cellular molecular dynamics (MYLK, MYO7A, DCTN6), cytoskeleton (LAMA4, LAMC1, COL4A1), stress response (DNAJC15, CIRBP), immune response (TIA1, TOX, CMIP), metabolism (RPS15A, RPL32, GLUT8, CYPR21, DPYD, LOC417295), oxidation-reduction (TXN, MSRB3, GCLC), and others. In addition, we found that the 20 novel ESTs provide a clue for the discovery of some new genes associated with infection. In summary, our findings demonstrate previously unrecognized changes in gene transcription that are associated with NDV infection in vivo, and many differentially expressed genes identified in the study clearly merit further investigation. Our data provide new insights into better understanding the molecular mechanism of host-NDV interaction."	"Kinase-related protein/telokin inhibits Ca2+-independent contraction in Triton-skinned guinea pig taenia coli. KRP (kinase-related protein), also known as telokin, has been proposed to inhibit smooth muscle contractility by inhibiting the phosphorylation of the rMLC (regulatory myosin light chain) by the Ca2+-activated MLCK (myosin light chain kinase). Using the phosphatase inhibitor microcystin, we show in the present study that KRP also inhibits Ca2+-independent rMLC phosphorylation and smooth muscle contraction mediated by novel Ca2+-independent rMLC kinases. Incubating KRP-depleted Triton-skinned taenia coli with microcystin at pCa&gt;8 induced a slow contraction reaching 90% of maximal force (Fmax) at pCa 4.5 after approximately 25 min. Loading the fibres with KRP significantly slowed down the force development, i.e. the time to reach 50% of Fmax was increased from 8 min to 35 min. KRP similarly inhibited rMLC phosphorylation of HMM (heavy meromyosin) in vitro by MLCK or by the constitutively active MLCK fragment (61K-MLCK) lacking the myosin-docking KRP domain. A C-terminally truncated KRP defective in myosin binding inhibited neither force nor HMM phosphorylation. Phosphorylated KRP inhibited the rMLC phosphorylation of HMM in vitro and Ca2+-insensitive contractions in fibres similar to unphosphorylated KRP, whereby the phosphorylation state of KRP was not altered in the fibres. We conclude that (i) KRP inhibits not only MLCK-induced contractions, but also those elicited by Ca2+-independent rMLC kinases; (ii) phosphorylation of KRP does not modulate this effect; (iii) binding of KRP to myosin is essential for this inhibition; and (iv) KRP inhibition of rMLC phosphorylation is most probably due to the shielding of the phosphorylation site on the rMLC."	"Modulation of factors affecting optic nerve head astrocyte migration. The authors investigated the role of myosin light chain kinase (MYLK) and transforming growth factor beta (TGFbeta) receptor pathways in optic nerve head (ONH) astrocyte migration. They further investigated how the expression of these genes is altered by elevated hydrostatic pressure (HP). PCR was used to determine the isoforms of MYLK expressed in ONH astrocytes. siRNAs against MYLK (all isoforms) and TGFbeta receptor 2 (TGFBR2) were prepared and tested for effects on the migration of cultured ONH astrocytes. Finally, the effects of elevated HP (24-96 hours) on the expression of MYLK isoforms and selected TGFbeta pathway components were measured. Multiple isoforms of MYLK are present in ONH astrocytes from Caucasian (CA) and African American (AA) donors. Both populations express the short form (MYLK-130) and the long form (MYLK-210) of MYLK and a splicing variant within MYLK-210. MYLK-directed siRNA decreased MYLK expression and cell migration compared with control siRNA. siRNA directed against TGFbeta receptor 2 also decreased cell migration compared with control and decreased extracellular matrix genes regulated by TGFbeta signaling. Elevated HP increased the expression of MYLK-130 and MYLK-210 in both populations of astrocytes. However, TGFbeta2 was uniquely upregulated by exposure to elevated HP in CA compared with AA astrocytes. Differential expression of TGFbeta pathway genes and MYLK isoforms observed in populations of glaucomatous astrocytes applies to the elevated HP model system. MYLK may be a new target for intervention in glaucoma to alter reactive astrocyte migration in the ONH."	"Downregulation of SS18-SSX1 expression in synovial sarcoma by small interfering RNA enhances the focal adhesion pathway and inhibits anchorage-independent growth in vitro and tumor growth in vivo. Synovial sarcoma (SS) is an aggressive soft-tissue malignancy characterized by a unique t(X;18) translocation resulting in expression of SS18-SSX fusion protein. In order to investigate the biological function of this fusion protein and to develop a novel therapeutic option, we examined downregulation of SS18-SSX1 expression by small interfering RNA targeting SS18-SSX1 in three human SS cell lines. Microarray analysis comparing SS18-SSX1-silenced cells with control cells in three SS cell lines showed that SS18-SSX1 mainly affected the focal adhesion pathway. In accord with the array data, silencing of SS18-SSX1 enhances adhesion to the extracellular matrix through the induction of expression of myosin light-chain kinase. Furthermore, the silencing of SS18-SSX1 inhibits anchorage-independent growth in vitro and systemic delivery of siRNA against SS18-SSX1 using a nanoparticle system inhibited tumor growth in a nude mouse xenograft model. Our results demonstrate that siRNA targeting of SS18-SSX1 has therapeutic potential for the treatment of SS."	"Non-muscle myosin light chain kinase isoform is a viable molecular target in acute inflammatory lung injury. Acute lung injury (ALI) and mechanical ventilator-induced lung injury (VILI), major causes of acute respiratory failure with elevated morbidity and mortality, are characterized by significant pulmonary inflammation and alveolar/vascular barrier dysfunction. Previous studies highlighted the role of the non-muscle myosin light chain kinase isoform (nmMLCK) as an essential element of the inflammatory response, with variants in the MYLK gene that contribute to ALI susceptibility. To define nmMLCK involvement further in acute inflammatory syndromes, we used two murine models of inflammatory lung injury, induced by either an intratracheal administration of lipopolysaccharide (LPS model) or mechanical ventilation with increased tidal volumes (the VILI model). Intravenous delivery of the membrane-permeant MLC kinase peptide inhibitor, PIK, produced a dose-dependent attenuation of both LPS-induced lung inflammation and VILI (~50% reductions in alveolar/vascular permeability and leukocyte influx). Intravenous injections of nmMLCK silencing RNA, either directly or as cargo within angiotensin-converting enzyme (ACE) antibody-conjugated liposomes (to target the pulmonary vasculature selectively), decreased nmMLCK lung expression (∼70% reduction) and significantly attenuated LPS-induced and VILI-induced lung inflammation (∼40% reduction in bronchoalveolar lavage protein). Compared with wild-type mice, nmMLCK knockout mice were significantly protected from VILI, with significant reductions in VILI-induced gene expression in biological pathways such as nrf2-mediated oxidative stress, coagulation, p53-signaling, leukocyte extravasation, and IL-6-signaling. These studies validate nmMLCK as an attractive target for ameliorating the adverse effects of dysregulated lung inflammation."	"Genetic variation in MYLK and lung injury in children and adults with community-acquired pneumonia. To investigate whether selected single nucleotide polymorphisms in the myosin light chain kinase gene are associated with more severe lung injury in children and adults with community-acquired pneumonia. Previous studies have demonstrated an association between single nucleotide polymorphisms in the myosin light chain kinase gene and increased severity of acute lung injury in adults. Prospective, case-control genetic association study. Three tertiary children's hospitals and one adult healthcare system. A total of 800 pediatric patients and 393 adult patients. None. Genetic variation in the myosin light chain kinase gene was examined. The pediatric cohort was predominantly composed of African American (n = 443) and Caucasian (n = 253) children. A total of 393 patients made up the adult cohort. Within the pediatric cohort, single nucleotide polymorphisms rs16834493, rs820463, and rs9840993 were genotyped in the African American patients, whereas single nucleotide polymorphisms rs960224, rs33264, rs11718105, and rs9289225 were genotyped in the Caucasian patients. One single nucleotide polymorphism (rs820336) was genotyped in both groups. Genotyping in the adult cohort included rs820336, rs860224, rs33264, and rs11718105. Genotyping was performed using the Taqman Assay. Data were analyzed separately for African Americans and Caucasians and for children and adults. No associations were observed between the myosin light chain kinase gene single nucleotide polymorphisms genotyped in children with community-acquired pneumonia and increased severity of lung injury. Similarly, no associations were observed between myosin light chain kinase gene single nucleotide polymorphisms genotyped in adults with community-acquired pneumonia and increased severity of lung injury. No association between the selected single nucleotide polymorphisms in the myosin light chain kinase gene and either the need for positive-pressure ventilation or the development of acute lung injury/acute respiratory distress syndrome was observed in children with community-acquired pneumonia. This suggests that variation in this gene may play less of a role in lung injury in children or adults with community-acquired pneumonia than in adults with sepsis or trauma."	"Discovery of molecular subtypes in leiomyosarcoma through integrative molecular profiling. Leiomyosarcoma (LMS) is a soft tissue tumor with a significant degree of morphologic and molecular heterogeneity. We used integrative molecular profiling to discover and characterize molecular subtypes of LMS. Gene expression profiling was performed on 51 LMS samples. Unsupervised clustering showed three reproducible LMS clusters. Array comparative genomic hybridization (aCGH) was performed on 20 LMS samples and showed that the molecular subtypes defined by gene expression showed distinct genomic changes. Tumors from the 'muscle-enriched' cluster showed significantly increased copy number changes (P=0.04). A majority of the muscle-enriched cases showed loss at 16q24, which contains Fanconi anemia, complementation group A, known to have an important role in DNA repair, and loss at 1p36, which contains PRDM16, of which loss promotes muscle differentiation. Immunohistochemistry (IHC) was performed on LMS tissue microarrays (n=377) for five markers with high levels of messenger RNA in the muscle-enriched cluster (ACTG2, CASQ2, SLMAP, CFL2 and MYLK) and showed significantly correlated expression of the five proteins (all pairwise P&lt;0.005). Expression of the five markers was associated with improved disease-specific survival in a multivariate Cox regression analysis (P&lt;0.04). In this analysis that combined gene expression profiling, aCGH and IHC, we characterized distinct molecular LMS subtypes, provided insight into their pathogenesis, and identified prognostic biomarkers."	"Validation study of genetic associations with coronary artery disease on chromosome 3q13-21 and potential effect modification by smoking. The CATHGEN study reported associations of chromosome 3q13-21 genes (KALRN, MYLK, CDGAP, and GATA2) with early-onset coronary artery disease (CAD). This study attempted to independently validate those associations. Eleven single nucleotide polymorphisms (SNPs) were examined (rs10934490, rs16834817, rs6810298, rs9289231, rs12637456, rs1444768, rs1444754, rs4234218, rs2335052, rs3803, rs2713604) in patients (N = 1618) from the Intermountain Heart Collaborative Study (IHCS). Given the higher smoking prevalence in CATHGEN than IHCS (41% vs. 11% in controls, 74% vs. 29% in cases), smoking stratification and genotype-smoking interactions were evaluated. Suggestive association was found for GATA2 (rs2713604, p = 0.057, OR = 1.2). Among smokers, associations were found in CDGAP (rs10934490, p = 0.019, OR = 1.6) and KALRN (rs12637456, p = 0.011, OR = 2.0) and suggestive association was found in MYLK (rs16834871, p = 0.051, OR = 1.8, adjusting for gender). No SNP association was found among non-smokers, but smoking/SNP interactions were detected for CDGAP (rs10934491, p = 0.017) and KALRN (rs12637456, p = 0.010). Similar differences in SNP effects by smoking status were observed on re-analysis of CATHGEN. CAD associations were suggestive for GATA2 and among smokers significant post hoc associations were found in KALRN, MYLK, and CDGAP. Genetic risk conferred by some of these genes may be modified by smoking. Future CAD association studies of these and other genes should evaluate effect modification by smoking."	"MYLK polymorphism associated with blood eosinophil level among asthmatic patients in a Korean population. The myosin light chain kinase (MYLK) gene encodes both smooth muscle and nonmuscle cell isoforms. Recently, polymorphisms in MYLK have been reported to be associated with several diseases. To examine the genetic effects of polymorphisms on the risk of asthma and related phenotypes, we scrutinized MYLK by re-sequencing/genotyping and statistical analysis in Korean population (n = 1,015). Seventeen common polymorphisms located in or near exons, having pairwise r ( 2 ) values less than 0.25, were genotyped. Our statistical analysis did not replicate the associations with the risk of asthma and log-transformed total IgE levels observed among African descendant populations. However, two SNPs in intron 16 (+89872C &gt; G and +92263T &gt;C), which were in tight LD (|D'| = 0.99), revealed significant association with log-transformed blood eosinophil level even after correction multiple testing (P = 0.002/P( corr )= 0.01 and P = 0.002/P( corr ) = 0.01, respectively). The log-transformed blood eosinophil levels were higher in individuals bearing the minor alleles for +89872C &gt; G and +92263T &gt; C, than in those bearing other allele. In additional subgroup analysis, the genetic effects of both SNPs were much more apparent among asthmatic patients and atopic asthma patients. Among atopic asthma patients, the log-transformed blood eosinophil levels were proportionally increased by gene-dose dependent manner of in both +89872C &gt; G and +92263T &gt; C (P = 0.0002 and P = 0.00007, respectively). These findings suggest that MYLK polymorphisms might be among the genetic factors underlying differential increases of blood eosinophil levels among asthmatic patients. Further biological and/or functional studies are needed to confirm our results."	"Multivariate gene expression analysis reveals functional connectivity changes between normal/tumoral prostates. Prostate cancer is a leading cause of death in the male population, therefore, a comprehensive study about the genes and the molecular networks involved in the tumoral prostate process becomes necessary. In order to understand the biological process behind potential biomarkers, we have analyzed a set of 57 cDNA microarrays containing approximately 25,000 genes. Principal Component Analysis (PCA) combined with the Maximum-entropy Linear Discriminant Analysis (MLDA) were applied in order to identify genes with the most discriminative information between normal and tumoral prostatic tissues. Data analysis was carried out using three different approaches, namely: (i) differences in gene expression levels between normal and tumoral conditions from an univariate point of view; (ii) in a multivariate fashion using MLDA; and (iii) with a dependence network approach. Our results show that malignant transformation in the prostatic tissue is more related to functional connectivity changes in their dependence networks than to differential gene expression. The MYLK, KLK2, KLK3, HAN11, LTF, CSRP1 and TGM4 genes presented significant changes in their functional connectivity between normal and tumoral conditions and were also classified as the top seven most informative genes for the prostate cancer genesis process by our discriminant analysis. Moreover, among the identified genes we found classically known biomarkers and genes which are closely related to tumoral prostate, such as KLK3 and KLK2 and several other potential ones. We have demonstrated that changes in functional connectivity may be implicit in the biological process which renders some genes more informative to discriminate between normal and tumoral conditions. Using the proposed method, namely, MLDA, in order to analyze the multivariate characteristic of genes, it was possible to capture the changes in dependence networks which are related to cell transformation."	"Variation in the myosin light chain kinase gene is associated with development of acute lung injury after major trauma. Single nucleotide polymorphisms in the myosin light chain kinase (MYLK) gene have been implicated in the risk of sepsis-related acute lung injury and asthma. MYLK encodes protein isoforms involved in multiple components of the inflammatory response, including apoptosis, vascular permeability, and leukocyte diapedesis. We tested the association of MYLK gene variation in the development of acute lung injury in major trauma patients. We conducted a prospective cohort study of 273 subjects with major trauma (injury severity score &gt; or = 16). All x-rays and clinical data were reviewed by three clinicians for acute lung injury classification. A total of 17 tagging single nucleotide polymorphisms in MYLK were genotyped. Single nucleotide polymorphisms were individually assessed at the genotype level, and multiple logistic regression models were used to adjust for baseline variables. Haplotype analyses of sliding windows including 2-5 single nucleotide polymorphisms were conducted. Ninety-one of the 273 subjects (33%) met criteria for acute lung injury within 5 days of traumatic insult. Three informative MYLK coding single nucleotide polymorphisms were individually associated with acute lung injury, with two informative risk-conferring genotypes His21Pro (CC genotype, odds ratio = 1.87, 95% confidence interval 1.06-3.33; p = 0.022) and Pro147Ser (TT, odds ratio = 2.13, 95% confidence interval 1.14-4.10; p = 0.011) more frequent than the noninformative Thr335Thr CC genotype (odds ratio = 0.42, 95% confidence interval 0.20-0.85; p = 0.010). Each of these genotypic associations was more pronounced in African Americans with trauma. Multivariate analyses demonstrated the association of each MYLK single nucleotide polymorphism with acute lung injury to be independent of age, injury severity score, Acute Physiology and Chronic Health Evaluation III, and the mechanism of trauma. Finally, haplotype analyses revealed strong acute lung injury associations with 2-4 single nucleotide polymorphism haplotypes, all involving His21Pro (p &lt; 0.008). Three MYLK coding single nucleotide polymorphisms previously associated with sepsis-induced acute lung injury and severe asthma in African Americans were associated with acute lung injury development after trauma in African Americans, although effect directions differed. These results confirm our prior studies implicating MYLK as a susceptibility gene in a distinct acute lung injury subset other than sepsis."	"Polymorphisms of three gene-derived STS on pig chromosome 13q41 are associated with susceptibility to enterotoxigenic Escherichia coli F4ab/ac in pigs. Neonatal diarrhea caused by enterotoxigenic Escherichia coli (ETEC) F4 is a common and serious disease, resulting in significant economical loss in the pig industry. The locus encoding ETEC F4 receptor has been mapped to pig chromosome (SSC) 13q41, and one of the most significantly linked markers is S0075. In this study, we selected three genes including SLC12A8, MYLK and KPNA1 from a chromosomal region flanking S0075 on SSC13 to develop pig specific sequence tagged sites (STS). Seven single nucleotide polymorphisms were identified in the three pig STS using DNA of four full-sib susceptible and resistant animals in a White Duroc x Erhualian intercross. All grandparents, parents and 755 offspring in the intercross were genotyped for three polymorphisms, including SLC12A8 g.159A&gt;G, MYLK g.1673A&gt;G and KPNA1 g.306A&gt;G. Family-based transmission disequilibrium test (TDT) revealed that all polymorphisms and the corresponding haplotypes are significantly associated with ETEC F4ab/ac (especially F4ac) brush border adhesion phenotypes, indicating that these polymorphism are in linkage disequlibrium with causal mutation(s) of the gene encoding ETEC F4ab/ac receptor. Our results strengthen the evidence for the involvement of SSC13q41 in high acquiring risk of ETEC F4ab/ac infection, and provide novel polymorphic markers for fine mapping of the ETEC F4ab/ac receptor locus."	"Susceptibility to glaucoma: differential comparison of the astrocyte transcriptome from glaucomatous African American and Caucasian American donors. Epidemiological and genetic studies indicate that ethnic/genetic background plays an important role in susceptibility to primary open angle glaucoma (POAG). POAG is more prevalent among the African-descent population compared to the Caucasian population. Damage in POAG occurs at the level of the optic nerve head (ONH) and is mediated by astrocytes. Here we investigated differences in gene expression in primary cultures of ONH astrocytes obtained from age-matched normal and glaucomatous donors of Caucasian American (CA) and African American (AA) populations using oligonucleotide microarrays. Gene expression data were obtained from cultured astrocytes representing 12 normal CA and 12 normal AA eyes, 6 AA eyes with POAG and 8 CA eyes with POAG. Data were normalized and significant differential gene expression levels detected by using empirical Bayesian shrinkage moderated t-statistics. Gene Ontology analysis and networks of interacting proteins were constructed using the BioGRID database. Network maps included regulation of myosin, actin, and protein trafficking. Real-time RT-PCR, western blots, ELISA, and functional assays validated genes in the networks. Cultured AA and CA glaucomatous astrocytes retain differential expression of genes that promote cell motility and migration, regulate cell adhesion, and are associated with structural tissue changes that collectively contribute to neural degeneration. Key upregulated genes include those encoding myosin light chain kinase (MYLK), transforming growth factor-beta receptor 2 (TGFBR2), rho-family GTPase-2 (RAC2), and versican (VCAN). These genes along with other differentially expressed components of integrated networks may reflect functional susceptibility to chronic elevated intraocular pressure that is enhanced in the optic nerve head of African Americans."	"Nonmuscle myosin light-chain kinase mediates neutrophil transmigration in sepsis-induced lung inflammation by activating beta2 integrins. Nonmuscle myosin light-chain kinase (MYLK) mediates increased lung vascular endothelial permeability in lipopolysaccharide-induced lung inflammatory injury, the chief cause of the acute respiratory distress syndrome. In a lung injury model, we demonstrate here that MYLK was also essential for neutrophil transmigration, but that this function was mostly independent of myosin II regulatory light chain, the only known substrate of MYLK. Instead, MYLK in neutrophils was required for the recruitment and activation of the tyrosine kinase Pyk2, which mediated full activation of beta(2) integrins. Our results demonstrate that MYLK-mediated activation of beta(2) integrins through Pyk2 links beta(2) integrin signaling to the actin motile machinery of neutrophils."	"A common cortactin gene variation confers differential susceptibility to severe asthma. Genomic regions with replicated linkage to asthma-related phenotypes likely harbor multiple susceptibility loci with relatively minor effects on disease susceptibility. The 11q13 chromosomal region has repeatedly been linked to asthma with five genes residing in this region with reported replicated associations. Cortactin, an actin-binding protein encoded by the CTTN gene in 11q13, constitutes a key regulator of cytoskeletal dynamics and contractile cell machinery, events facilitated by interaction with myosin light chain kinase; encoded by MYLK, a gene we recently reported as associated with severe asthma in African Americans. To evaluate potential association of CTTN gene variation with asthma susceptibility, CTTN exons and flanking regions were re-sequenced in 48 non-asthmatic multiethnic samples, leading to selection of nine tagging polymorphisms for case-control association studies in individuals of European and African descent. After ancestry adjustments, an intronic variant (rs3802780) was significantly associated with severe asthma (odds ratio [OR]: 1.71; 95% confidence interval [CI]: 1.20-2.43; p=0.003) in a joint analysis. Further analyses evidenced independent and additive effects of CTTN and MYLK risk variants for severe asthma susceptibility in African Americans (accumulated OR: 2.93, 95% CI: 1.40-6.13, p=0.004). These data suggest that CTTN gene variation may contribute to severe asthma and that the combined effects of CTTN and MYLK risk polymorphisms may further increase susceptibility to severe asthma in African Americans harboring both genetic variants."	"Interactions among genetic variants from contractile pathway of vascular smooth muscle cell in essential hypertension susceptibility of Chinese Han population. Recent study supports the hypothesis that the abnormalities of vascular smooth muscle cell (VSMC) that alter the intrinsic contractile state of the cell can directly cause abnormal vascular tone and disorders of blood pressure regulation, including hypertension. This study aimed to explore the individual and interactive effects of five genes from the contractile pathway of VSMC (KCNMB1, RGS2, PRKG, ROCK2, and MYLK) on the risk of essential hypertension. Potential functional polymorphisms of the five genes were analyzed in a large, representative Chinese Han sample of 4759 individuals, including 2411 hypertensive patients and 2348 age-matched and sex-matched healthy controls. Single locus analyses showed significant association of the alleles of RGS2-rs34717272 with hypertension (original P of chi2 test=0.005; P value of permutation=0.019). After the adjustment for covariates, the carriers of minor D allele of RGS2-rs34717272 had an increased hypertension risk (DD+ID vs. II; odds ratio=1.19; 95% confidence interval, 1.04-1.35; P value after the Bonferroni correction=0.009 x 5=0.045). We also found that the carriers of minor T allele of KCNMB1-rs11739136 had a significantly decreased risk for hypertension (TT+CT vs. CC; odds ratio=0.83; 95% confidence interval, 0.72-0.95; P value after the Bonferroni correction=0.008 x 5=0.040). Final interaction models were selected and evaluated by permutation test and/or cross-validation test. Both the multifactor-dimensionality reduction and classification and regression trees methods showed a high-order gene-gene interaction among KCNMB1, RGS2, PRKG, and MYLK genes (P value of permutation in multifactor-dimensionality reduction=0.012). The overall results supported that the genetic variants in the contractile pathway of VSMC could contribute to hypertension risk independently or in an interactive manner."	"Host defense genes in asthma and sepsis and the role of the environment. There is growing evidence that innate immunity genes contribute to asthma pathogenesis. At the core of the innate immune response are ubiquitous, soluble fragments of bacterial lipopolysaccharide or endotoxin, and chronic exposure to domestic endotoxin has been shown to influence asthma severity. Asthmatic and atopic individuals are more sensitive to endotoxin than nonallergic individuals, suggesting a role for genetics in the innate immunity response, and the potential for gene-environment interactions. Variants in genes associated with classic innate immunity-related disorders, such as sepsis, may be unique candidates for asthma susceptibility. Candidate genes for asthma and allergic diseases co-associated with sepsis including innate immunity receptors and related molecules (CD14, TLR4 and AOAH) and novel genes such as MYLK provide good examples of pleitropic effects of innate immunity genes, where variants conferring risk to specific traits (i.e. sepsis) under one set of genetic and environmental circumstances confer a reduced risk in a different (but possibly related) clinical outcome (i.e. allergic asthma), and support the 'common variant/multiple disease' hypothesis. Collectively, these observations suggest a greater role for the innate immunity response in allergic asthma than previously assumed, and implicate host defense genes in disease pathology."	"Nutrigenomics applied to an animal model of Inflammatory Bowel Diseases: transcriptomic analysis of the effects of eicosapentaenoic acid- and arachidonic acid-enriched diets. In vivo models of Inflammatory Bowel Diseases (IBD) elucidate important mechanisms of chronic inflammation. Complex intestinal responses to food components create a unique &quot;fingerprint&quot; discriminating health from disease. Five-week-old IL10(-/-) and C57BL/6J (C57; control) mice were inoculated orally with complex intestinal microflora (CIF) and/or pure cultures of Enterococcus faecalis and E. faecalis (EF) aiming for more consistent inflammation of the intestinal mucosa. Inoculation treatments were compared to non-inoculated IL10(-/-) and C57 mice, either kept in specific pathogen free (SPF) or conventional conditions (2x5 factorial design). At 12 weeks of age, mice were sacrificed for intestinal histological (HIS) and transcriptomic analysis using limma and Ingenuity Pathway Analysis Software. Colonic HIS was significantly affected (P&lt;0.05) in inoculated IL10(-/-) mice and accounted for approximately 60% of total intestinal HIS. Inoculation showed a strong effect on colonic gene expression, with more than 2000 genes differentially expressed in EF.CIF-inoculated IL10(-/-) mice. Immune response gene expression was altered (P&lt;0.05) in these mice. The second study investigated the effect of arachidonic (AA) and eicosapentaenoic acid (EPA) on colonic HIS and gene expression to test whether EPA, contrary to AA, diminished intestinal inflammation in EF.CIF IL10(-/-) mice (2 x 4 factorial design). AIN-76A (5% corn oil) and AIN-76A (fat-free) +1% corn oil supplemented with either 3.7% oleic acid (OA), AA or EPA were used. IL10(-/-) mice fed EPA- and AA-enriched diets had at least 40% lower colonic HIS (P&lt;0.05) than those fed control diets (AIN-76A and OA diets). The expression of immune response and 'inflammatory disease' genes (down-regulated: TNFalpha, IL6, S100A8, FGF7, PTGS2; up-regulated: PPARalpha, MGLL, MYLK, PPSS23, ABCB4 with EPA and/or AA) was affected in IL10(-/-) mice fed EPA- and AA-enriched diets, compared to those fed AIN-76A diet."	"Polymorphisms in the myosin light chain kinase gene that confer risk of severe sepsis are associated with a lower risk of asthma. Myosin light chain kinase (MYLK) is a multifunctional protein involved in regulation of airway hyperreactivity and other activities relevant to asthma. To determine the role of MYLK gene variants in asthma among African Caribbean and African American populations. We performed association tests between single nucleotide polymorphisms (SNPs) in the MYLK gene and asthma susceptibility and total serum IgE concentrations in 2 independent, family-based populations of African descent. Previously we identified variants/haplotypes in MYLK that confer risk for sepsis and acute lung injury; we compared findings from our asthma populations to findings in the African American sepsis and acute lung injury groups. Significant associations between MYLK SNPs and asthma and total serum IgE concentrations were observed in the African Caribbean families: a promoter SNP (rs936170) in the smooth muscle form gave the strongest association (P = .009). A haplotype including rs936170 corresponding to the actin-binding activity of the nonmuscle and smooth muscle forms was negatively associated with asthma (eg, decreased risk) in both the American (P = .005) and Caribbean families (P = .004), and was the same haplotype that conferred risk for severe sepsis (P = .002). RNA expression studies on PBMCs and rs936170 suggested a significant decrease in MYLK expression among patients with asthma with this variant (P = .025). MYLK polymorphisms may function as a common genetic factor in clinically distinct diseases involving bronchial smooth muscle contraction and inflammation. Genetic variants in MYLK are significantly associated with both asthma and sepsis in populations of African ancestry."	"Peakwide mapping on chromosome 3q13 identifies the kalirin gene as a novel candidate gene for coronary artery disease. A susceptibility locus for coronary artery disease (CAD) has been mapped to chromosome 3q13-21 in a linkage study of early-onset CAD. We completed an association-mapping study across the 1-LOD-unit-down supporting interval, using two independent white case-control data sets (CATHGEN, initial and validation) to evaluate association under the peak. Single-nucleotide polymorphisms (SNPs) evenly spaced at 100-kb intervals were screened in the initial data set (N=468). Promising SNPs (P&lt;.1) were then examined in the validation data set (N=514). Significant findings (P&lt;.05) in the combined initial and validation data sets were further evaluated in multiple independent data sets, including a family-based data set (N=2,954), an African American case-control data set (N=190), and an additional white control data set (N=255). The association between genotype and aortic atherosclerosis was examined in 145 human aortas. The peakwide survey found evidence of association in SNPs from multiple genes. The strongest associations were found in three SNPs from the kalirin (KALRN) gene, especially in patients with early-onset CAD (P=.00001-00028 in the combined CATHGEN data sets). In-depth investigation of the gene found that an intronic SNP, rs9289231, was associated with early-onset CAD in all white data sets examined (P&lt;.05). In the joint analysis of all white early-onset CAD cases (N=332) and controls (N=546), rs9289231 was highly significant (P=.00008), with an odds-ratio estimate of 2.1. Furthermore, the risk allele of this SNP was associated with atherosclerosis burden (P=.03) in 145 human aortas. KALRN is a protein with many functions, including the inhibition of inducible nitric oxide synthase and guanine-exchange-factor activity. KALRN and two other associated genes identified in this study (CDGAP and MYLK) belong to the Rho GTPase-signaling pathway. Our data suggest the importance of the KALRN gene and the Rho GTPase-signaling pathway in the pathogenesis of CAD."	"A variant of the myosin light chain kinase gene is associated with severe asthma in African Americans. Asthma is a complex phenotype influenced by environmental and genetic factors for which severe irreversible structural airway alterations are more frequently observed in African Americans. In addition to a multitude of factors contributing to its pathobiology, increased amounts of myosin light chain kinase (MLCK), the central regulator of cellular contraction, have been found in airway smooth muscle from asthmatics. The gene encoding MLCK (MYLK) is located in 3q21.1, a region noted by a number of genome-wide studies to show linkage with asthma and asthma-related phenotypes. We studied 17 MYLK genetic variants in European and African Americans with asthma and severe asthma and identified a single non-synonymous polymorphism (Pro147Ser) that was almost entirely restricted to African populations and which was associated with severe asthma in African Americans. These results remained highly significant after adjusting for proportions of ancestry estimated using 30 unlinked microsatellites (adjusted odds ratio: 1.76 [95% confidence interval, CI: 1.17-2.65], p = 0.005). Since all common HapMap polymorphisms in approximately 500 kb contiguous regions have low-to-moderate linkage disequilibrium with Pro147Ser, we speculate that this polymorphism is causally related to the severe asthma phenotype in African Americans. The association of this polymorphism, located in the N-terminal region of the non-muscle MLCK isoform, emphasizes the potential importance of the vascular endothelium, a tissue in which MLCK is centrally involved in multiple aspects of the inflammatory response, in the pathogenesis of severe asthma. This finding also offers a possible genetic explanation for some of the more severe asthma phenotype observed in African American asthmatics."	"[KRP/telokin differentially regulates filament assembly and phosphorylation of light chains of non-muscle myosin II in fibroblasts]. Transgenic 3T3 fibroblasts have been generated that express either the wild-type KRP or its truncated mutant lacking the C-terminal domain, which primarily contributes to myosin binding of KRP. It was found that KRP-expressing cells display a significantly increased content of myosin filaments and a reduced level of rMLC phosphorylation, whereas the mock transfected cells or cells expressing the C-terminally truncated KRP do not. Our results suggest that (1) KRP promotes the polymerization of myosin II and reduces the rMLC phosphorylation level in cells, (2) KRP acts through direct binding to myosin II, and (3) transgenic 3T3 fibroblasts stably expressing KRP represent a useful and versatile model to study the role of myosin II filament dynamics in cell motility."	"Mutational analysis of the kinase domain of MYLK2 gene in common human cancers. Genetic alterations of the genes encoding protein kinases have been implicated in the development of human cancers. Myosin light chain kinase 2, skeletal muscle (MYLK2) encodes a calcium/calmodulin-dependent serine/threonine kinase. In a recent study, MYLK2 gene was somatically mutated in colorectal carcinomas. The aim of this study was to explore the possibility that other common human carcinomas besides colorectal carcinomas harbored MYLK2 mutations in the kinase domain. We analyzed exons 6 and 7 eccoding the kinase domain of MYLK2 for somatic mutations in 60 gastric, 104 colorectal, 79 non-small cell lung, and 54 breast cancers using a polymerase chain reaction (PCR)-based single-strand conformation polymorphism (SSCP). We found one MYLK2 mutation in lung adenocarcinomas, but not in other cancers. The MYLK2 mutation detected was a missense mutation that would substitute an amino acid (E374D) However, there was no somatic mutation of the MYLK2 gene. These data suggest that the kinase domain of MYLK2 is rarely mutated in common human carcinomas and that it does not play a dominant role in cancer pathogenesis."	"130-kDa smooth muscle myosin light chain kinase is transcribed from a CArG-dependent, internal promoter within the mouse mylk gene. The 130-kDa smooth muscle myosin light chain kinase (smMLCK) is a Ca2+/CaM-regulated enzyme that plays a pivotal role in the initiation of smooth muscle contraction and regulation of cellular migration and division. Despite the critical importance of smMLCK in these processes, little is known about the mechanisms regulating its expression. In this study, we have identified the proximal promoter of smMLCK within an intron of the mouse mylk gene. The mylk gene encodes at least two isoforms of MLCK (130 and 220 kDa) and telokin. Luciferase reporter gene assays demonstrated that a 282-bp fragment (-167 to +115) of the smMLCK promoter was sufficient for maximum activity in A10 smooth muscle cells and 10T1/2 fibroblasts. Deletion of the 16 bp between -167 and -151, which included a CArG box, resulted in a nearly complete loss of promoter activity. Gel mobility shift assays and chromatin immunoprecipitation assays demonstrated that serum response factor (SRF) binds to this CArG box both in vitro and in vivo. SRF knockdown by short hairpin RNA decreased endogenous smMLCK expression in A10 cells. Although the SRF coactivator myocardin induced smMLCK expression in 10T1/2 cells, myocardin activated the promoter only two- to fourfold in reporter gene assays. Addition of either intron 1 or 6 kb of the 5' upstream sequence did not lead to any further activation of the promoter by myocardin. The proximal smMLCK promoter also contains a consensus GATA-binding site that bound GATA-6. GATA-6 binding to this site decreased endogenous smMLCK expression, inhibited promoter activity in smooth muscle cells, and blocked the ability of myocardin to induce smMLCK expression. Altogether, these data suggest that SRF and SRF-associated factors play a key role in regulating the expression of smMLCK."	"Novel polymorphisms in the myosin light chain kinase gene confer risk for acute lung injury. The genetic basis of acute lung injury (ALI) is poorly understood. The myosin light chain kinase (MYLK) gene encodes the nonmuscle myosin light chain kinase isoform, a multifunctional protein involved in the inflammatory response (apoptosis, vascular permeability, leukocyte diapedesis). To examine MYLK as a novel candidate gene in sepsis-associated ALI, we sequenced exons, exon-intron boundaries, and 2 kb of 5' UTR of the MYLK, which revealed 51 single-nucleotide polymorphisms (SNPs). Potential association of 28 MYLK SNPs with sepsis-associated ALI were evaluated in a case-control sample of 288 European American subjects (EAs) with sepsis alone, subjects with sepsis-associated ALI, or healthy control subjects, and a sample population of 158 African American subjects (AAs) with sepsis and ALI. Significant single locus associations in EAs were observed between four MYLK SNPs and the sepsis phenotype (P&lt;0.001), with an additional SNP associated with the ALI phenotype (P=0.03). A significant association of a single SNP (identical to the SNP identified in EAs) was observed in AAs with sepsis (P=0.002) and with ALI (P=0.01). Three sepsis risk-conferring haplotypes in EAs were defined downstream of start codon of smooth muscle MYLK isoform, a region containing putative regulatory elements (P&lt;0.001). In contrast, multiple haplotypic analyses revealed an ALI-specific, risk-conferring haplotype at 5' of the MYLK gene in both European and African Americans and an additional 3' region haplotype only in African Americans. These data strongly implicate MYLK genetic variants to confer increased risk of sepsis and sepsis-associated ALI."	"Calcium/calmodulin and calmodulin kinase II stimulate hyperactivation in demembranated bovine sperm. Hyperactivated motility is observed among sperm in the mammalian oviduct near the time of ovulation. It is characterized by high-amplitude, asymmetrical flagellar beating and assists sperm in penetrating the cumulus oophorus and zona pellucida. Elevated intracellular Ca2+ is required for the initiation of hyperactivated motility, suggesting that calmodulin (CALM) and Ca2+/CALM-stimulated pathways are involved. A demembranated sperm model was used to investigate the role of CALM in promoting hyperactivation. Ejaculated bovine sperm were demembranated and immobilized by brief exposure to Triton X-100. Motility was restored by addition of reactivation medium containing MgATP and Ca2+, and hyperactivation was observed as free Ca2+ was increased from 50 nM to 1 microM. However, when 2.5 mM Ca2+ was added to the demembranation medium to extract flagellar CALM, motility was not reactivated unless exogenous CALM was readded. The inclusion of anti-CALM IgG in the reactivation medium reduced the proportion hyperactivated in 1 microM Ca2+ to 5%. Neither control IgG, the CALM antagonist W-7, nor a peptide directed against the CALM-binding domain of myosin light chain kinase (MYLK2) inhibited hyperactivation. However, when sperm were reactivated in the presence of CALM kinase II (CAMK2) inhibiting peptides, hyperactivation was reduced by 75%. Furthermore, an inhibitor of CAMK2, KN-93, inhibited hyperactivation without impairing normal motility of intact sperm. CALM and CAMK2 were immunolocalized to the acrosomal region and flagellum. These results indicate that hyperactivation is stimulated by a Ca2+/CALM pathway involving CAMK2."	"Use of a randomized hybrid ribozyme library for identification of genes involved in muscle differentiation. We have employed the hybrid hammerhead ribozyme-based gene discovery system for identification of genes functionally involved in muscle differentiation using in vitro myoblast differentiation assay. The major muscle regulatory genes (MyoD1, Mylk, myosin, myogenin, and Myf5) were identified endorsing the validity of this method. Other gene targets included tumor suppressors and cell cycle regulators (p19ARF and p21WAF1), FGFR-4, fibronectin, Prkg2, Pdk4, fem, and six novel proteins. Functional involvement of three of the identified targets in myoblast differentiation was confirmed by their specific knockdown using ribozymes and siRNA. Besides demonstrating a simple and an effective method of isolation of gene functions involved in muscle differentiation, we report for the first time that overexpression of Fem, a member of the sex-determining family of proteins, caused accelerated myotube formation, and its targeting deferred myoblast differentiation. This functional gene screening is not only helpful in understanding the molecular pathways of muscle differentiation but also to design molecular strategies for myopathologic therapies."	"[Signaling regulatory mechanisms of the contractile activity of smooth muscle]. A comparative model been designed to study a contribution of proteinkinase C-(PKC)-activated intracellular signaling pathways in generation of different contractile responses of vascular (tonic) and visceral (phasic) smooth muscles. We have determined that, in tonic smooth muscle, PKC mediates activation of MAP-kinases that phosphorylate key regulatory proteins of the contractile system, myosin light chain kinase and caldesmon, leading to upregulation of actomyosine motor activity. In contrast, the MAP-kinase activation is uncoupled from the contractile machinery in phasic smooth muscles, which also reveal high levels of myosin light chain kinase-related protein KRP that contributes to relaxation. Phosphorylation of KRP following activation of PKC or cyclic nucleotide-dependent protein kinases enhances the KRP activity and further contributes to relaxion in phasic smooth muscle. A possibility is discussed for exploitation of the comparative model described herein for investigation of specific role of other regulatory intracellular pathways in generation of vascular tonic contraction."	"Actin turnover is required to prevent axon retraction driven by endogenous actomyosin contractility. Growth cone motility and guidance depend on the dynamic reorganization of filamentous actin (F-actin). In the growth cone, F-actin undergoes turnover, which is the exchange of actin subunits from existing filaments. However, the function of F-actin turnover is not clear. We used jasplakinolide (jasp), a cell-permeable macrocyclic peptide that inhibits F-actin turnover, to study the role of F-actin turnover in axon extension. Treatment with jasp caused axon retraction, demonstrating that axon extension requires F-actin turnover. The retraction of axons in response to the inhibition of F-actin turnover was dependent on myosin activity and regulated by RhoA and myosin light chain kinase. Significantly, the endogenous myosin-based contractility was sufficient to cause axon retraction, because jasp did not alter myosin activity. Based on these observations, we asked whether guidance cues that cause axon retraction (ephrin-A2) inhibit F-actin turnover. Axon retraction in response to ephrin-A2 correlated with decreased F-actin turnover and required RhoA activity. These observations demonstrate that axon extension depends on an interaction between endogenous myosin-driven contractility and F-actin turnover, and that guidance cues that cause axon retraction inhibit F-actin turnover."	"Integration of porcine chromosome 13 maps. In order to expand the comparative map between human chromosome 3 (HSA3) and porcine chromosome 13 (SSC13), seven genes from HSA3 were mapped on SSC13 by fluorescence in situ hybridisation (FISH), viz. ACAA1, ACPP, B4GALT4, LTF, MYLK, PDHB and RARB. With a view to integrating this expanded comparative map with the existing SSC13 linkage map, we used the INRA-University of Minnesota porcine Radiation Hybrid panel (IMpRH) to localize more precisely and to order 15 genes on the SSC13 map, viz. ACPP, ADCY5, APOD, BCHE, CD86, DRD3, GAP43, PCCB, RAF1, RHO, SI, TF, TFRC, TOP2B and ZNF148. In this way, we were able to create an integrated map, containing 38 type I and 81 type II markers, by correlating the linkage, radiation hybrid (RH) and cytogenetic maps of SSC13. This integrated map will give us the opportunity to take maximal advantage of the comparative mapping strategy for positional candidate cloning of genes responsible for economically important traits."	"The myosin light chain kinase gene is not duplicated in mouse: partial structure and chromosomal localization of Mylk. The gene encoding myosin light chain kinase (MYLK) is duplicated on human chromosome 3 (HSA3; 3p13;3q21) and on a chromosome with conserved synteny to HSA3 in most non-human primate species. In human, the functional copy resides on 3q21, whereas the 3p13 site contains a pseudogene. To trace the origin of the duplication, we characterized the mouse gene Mylk. A single sequence corresponding to the functional Mylk was detected. We sequenced a 180-kb bacterial artificial chromosome clone containing the 24 first exons of Mylk; the complete mouse gene is expected to span &gt;200 kb. Comparisons with the draft of the human genome revealed that the sequence and structure of MYLK are conserved in mammals. Fluorescence in situ hybridization (FISH) analysis indicated that the mouse gene localizes to a single site on chromosome 16B4-B5, a region with conserved synteny with HSA3q. Our study provides information on both the structure and the evolution of MYLK in mammals and suggests that it was duplicated after the divergence of rodents and primates."	"The functional myosin light chain kinase (MYLK) gene localizes with marker D3S3552 on human chromosome 3q21 in a &gt;5-Mb yeast artificial chromosome region and is not linked to olfactory receptor genes. The myosin light chain kinase (MYLK) gene is duplicated on human chromosome 3 (3q13--&gt;q21; 3p13), two sites known to contain olfactory receptor (OR) genes. The 3p13 site contains a MYLK pseudogene (MYLKP) associated with a cluster of OR pseudogenes and therefore could have arisen from the duplication of a large region in 3q13--&gt;q21. Here, we present the localization of the MYLK gene in a &gt;5-Mb region of the chromosome 3q21 integrated map. MYLK colocalizes with marker D3S3552. OR genes are absent from this region, suggesting that the 3p13 duplicated region incurred further rearrangements during evolution."	"Kinesin-II, the heteromeric kinesin. The kinesins constitute a large family of motor proteins which are responsible for the distribution of numerous organelles, vesicles and macromolecular complexes throughout the cell. One class of these molecular motors, kinesin-II, is unique in that these proteins are typically found as heterotrimeric complexes containing two different, though related, kinesin-like motor subunits, and a single nonmotor subunit. The heteromeric nature of these kinesins appears to have resulted in a class of combinatorial kinesins which can 'mix and match' different motor subunits. Another novel feature of these motors is that the activities of several kinesin-II representatives are essential in the assembly of motile and nonmotile cilia, a role not attributed to any other kinesin. This review presents a brief overview of the structure and biological functions of kinesin-II, the heteromeric kinesin."	"Analysis of the kinase-related protein gene found at human chromosome 3q21 in a multi-gene cluster: organization, expression, alternative splicing, and polymorphic marker. We report the amino acid sequence, genomic organization, tissue expression, and alternative splice patterns for the human kinase related protein (KRP) gene, as well as the discovery of a new CA repeat sequence polymorphic marker in an upstream intron of the myosin light chain kinase (MLCK) gene. The KRP/MLCK genetic locus is a prototype for a recently discovered paradigm in which an independently regulated gene for a non-enzymic protein is embedded within a larger gene for a signal transduction enzyme, and both classes of proteins are involved in the regulation of the same cellular structure. The MLCK/KRP gene cluster has been found only in higher vertebrates and is localized to human chromosome 3q21. The determination of the human KRP amino acid sequence through cDNA sequence analysis and its comparison to the exon/intron organization of the human KRP gene revealed an alternative splice pattern at the start of KRP exon 2, resulting in the insertion of a single glutamic acid in the middle of the protein. Examination of tissue distribution using Northern blot analysis revealed that the human expression pattern is more similar to the well-characterized chicken KRP gene expression pattern than to rodent or rabbit. Unexpected differences of the human gene from other species is the apparent expression of the human gene products in adult cardiac muscle, an observation that was pursued further by the production of a site-directed antiserum and immunohistochemistry analysis. The results reported here provide insight into the conserved and variable features of this late evolving genetic paradigm, raise new questions about the molecular aspects of cardiac muscle regulation, and provide tools needed for future clinical studies. The comparative analysis of the MLCK/KRP locus, combined with the recent discovery of a similar genomic relationship among other signal transduction proteins, suggest a diverse distribution of this theme among signal transduction systems in higher vertebrate genomes and indicate the utility of comparative genomics in revealing late evolving genetic paradigms."	"A single human myosin light chain kinase gene (MLCK; MYLK). The myosin light chain kinase (MLCK) gene, a muscle member of the immunoglobulin gene superfamily, yields both smooth muscle and nonmuscle cell isoforms. Both isoforms are known to regulate contractile activity via calcium/calmodulin-dependent myosin light chain phosphorylation. We previously cloned from a human endothelial cell (EC) cDNA library a high-molecular-weight nonmuscle MLCK isoform (EC MLCK (MLCK 1) with an open reading frame that encodes a protein of 1914 amino acids. We now describe four novel nonmuscle MLCK isoforms (MLCK 2, 3a, 3b, and 4) that are the alternatively spliced variants of an mRNA precursor that is transcribed from a single human MLCK gene. The primary structure of the cDNA encoding the nonmuscle MLCK isoform 2 is identical to the previously published human nonmuscle MLCK (MLCK 1) (J. G. N. Garcia et al., 1997, Am. J. Respir. Cell Mol. Biol. 16, 489-494) except for a deletion of nucleotides 1428-1634 (D2). The full nucleotide sequence of MLCK isoforms 3a and 3b and partial sequence for MLCK isoform 4 revealed identity to MLCK 1 except for deletions at nucleotides 5081-5233 (MLCK 3a, D3), double deletions of nucleotides 1428-1634 and 5081-5233 (MLCK 3b), and nucleotide deletions 4534-4737 (MLCK 4, D4). Northern blot analysis demonstrated the extended expression pattern of the nonmuscle MLCK isoform(s) in both human adult and human fetal tissues. RT-PCR using primer pairs that were designed to detect specifically nonmuscle MLCK isoforms 2, 3, and 4 deletions (D2, D3, and D4) confirmed expression in both human adult and human fetal tissues (lung, liver, brain, and kidney) and in human endothelial cells (umbilical vein and dermal). Furthermore, relative quantitative expression studies demonstrated that the nonmuscle MLCK isoform 2 is the dominant splice variant expressed in human tissues and cells. Further analysis of the human MLCK gene revealed that the MLCK 2 isoform represents the deletion of an independent exon flanked by 5' and 3' neighboring introns of 0.6 and 7.0 kb, respectively. Together these studies demonstrate for the first time that the human MLCK gene yields multiple nonmuscle MLCK isoforms by alternative splicing of its transcribed mRNA precursor with differential distribution of these isoforms in various human tissues and cells."	"A genomic region encompassing a cluster of olfactory receptor genes and a myosin light chain kinase (MYLK) gene is duplicated on human chromosome regions 3q13-q21 and 3p13. The olfactory receptor (OR) multigene family is widely distributed in the human genome. We characterize here a new cluster of four OR genes (HGMW-approved symbols OR7E20P, OR7E6P, OR7E21P, and OR7E22P) on human chromosome 3p13 that is contained in an approximately 250-kb region. This region has been physically mapped, and a 106-kb portion containing the OR genes has been sequenced. All the OR sequences are disrupted by frameshifts and stop codons and appear to have arisen through local duplications. A myosin light chain kinase pseudogene (HGMW-approved symbol MYLKP) lies at one end of the OR gene cluster. Sequences spanning the entire region are also present at 3q13-q21, the site of the functional MYLK gene. This region duplicated locally before the divergence of primates, and the two paralogous copies were later separated to sites on either side of the centromere. This study increases our understanding of the evolution of the human genome. The 3p13 cluster is the first example of a tandem array of OR pseudogenes, and duplications of such clusters may account for the accumulation of a large number of pseudogenes in the human genome."	"Isolation of cDNA for bovine stomach 155 kDa protein exhibiting myosin light chain kinase activity. Two proteins with myosin light chain kinase activity and electrophoretic molecular weights of 155,000 and 130,000 were each isolated from bovine stomach smooth muscle [Kuwayama, H., Suzuki, M., Koga, R., &amp; Ebashi, S. (1988) J. Biochem. 104, 862-866]. The 155 kDa component showed a much higher superprecipitation-inducing activity than the 130 kDa component, when compared on the basis of equivalent myosin light chain kinase activity. In this study, we isolated a cDNA for the entire coding region of the 155 kDa protein. The deduced amino acid sequence revealed a high degree of similarity to those of chicken and rabbit smooth muscle myosin light chain kinases. Multiple motifs, such as three repeats of an immunoglobulin C2-like domain, a fibronectin type III domain, and unusual 20 repeats of 12 amino acids were detected in the sequence. Part of the amino-terminal sequence was similar to that of the actin- and calmodulin-binding domain of smooth muscle caldesmon. These observations suggest that the 155 kDa protein has additional functions other than its enzymatic activity. Two mRNAs of 6.0 and 2.6 kb in length in the bovine stomach smooth muscle RNAs were hybridized with cDNA probes. The 2.6-kb RNA probably encodes telokin, which is the carboxyl terminus of smooth muscle myosin light chain kinase. mRNAs with identical lengths were also detected in bovine aorta."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PRKG1"	"familial thoracic aortic aneurysm and aortic dissection"	"An integration analysis of mRNAs and miRNAs microarray data to identify key regulators for ovarian endometriosis based on competing endogenous RNAs. This study aimed to uncover effects of non-coding RNA transcripts on ovarian endometriosis (OEM) development. Two transcription datasets (GSE105764 and GSE105765) about OME were downloaded from Gene Expression Omnibus (GEO) database and the differentially expressed mRNAs, lncRNAs and miRNAs (DEmRNAs, DElncRNAs and DEmiRNAs) between OEM cases and controls were identified followed by protein-protein interaction analysis. Then, co-expression analysis was conducted and DEmiRNAs-DEmRNAs as well as DElncRNAs-DEmiRNAs pairs were predicted to construct the ceRNA network followed by sub-ceRNA network associated with OEM extraction. Functional analyses of DEmRNAs in ceRNA and sub-module network and the survival analysis were also performed to evaluate the correlation of key regulators and OV outcomes. Totally, 1910 DEmRNAs, 158 DElncRNAs and 118 DEmiRNAs were screened between OEM cases and controls and the functional analyses of DEmRNAs showed that they were significantly enriched in cell adhesion. Furthermore, there were 505 nodes in PPI network and ceRNA network included 762 interaction pairs among 357 DEmRNAs, 28 DElncRNAs and 24 DEmiRNAs. The KEGG analysis suggested several genes including FOXO1, STAT5A and RUNX1 were predominately associated with pathways in cancer while IL15 was primarily enriched in cytokine-cytokine receptor interaction pathway. Importantly, these two pathways were also found to be implicated with OEM development. Finally, survival analysis implied that overexpression of ZFPM2-AS1 had a good clinical outcome while the under-expression levels of FOXO1, JUP, STAT5A, RUNX1 and PRKG1-AS1 exhibited a better prognosis for OV. FOXO1, STAT5A, RUNX1 and IL15, PRKG1-AS1 and ZFPM2-AS1 were promising diagnostic makers for OME."	"Genetically, Dietary Sodium Intake Is Causally Associated with Salt-Sensitive Hypertension Risk in a Community-Based Cohort Study: a Mendelian Randomization Approach. Excessive dietary salt intake is associated with an increased risk of hypertension. Salt sensitivity, i.e., an elevation in blood pressure in response to high dietary salt intake, has been associated with a high risk of cardiovascular disease and mortality. We investigated whether a causal association exists between dietary sodium intake and hypertension risk using Mendelian randomization (MR). We performed an MR study using data from a large genome-wide association study comprising 15,034 Korean adults in a community-based cohort study. A total of 1282 candidate single nucleotide polymorphisms associated with dietary sodium intake, such as rs2960306, rs4343, and rs1937671, were selected as instrumental variables. The inverse variance weighted method was used to assess the evidence for causality. Higher dietary sodium intake was associated with salt-sensitive hypertension risk. The variants of SLC8E1 rs2241543 and ADD1 rs16843589 were strongly associated with increased blood pressure. In the logistic regression model, after adjusting for age, gender, smoking, drinking, exercise, and body mass index, the GRK4 rs2960306TT genotype was inversely associated with hypertension risk (OR, 0.356; 95% CI, 0.236-0.476). However, the 2350GG genotype (ACE rs4343) exhibited a 2.11-fold increased hypertension risk (OR, 2.114; 95% CI, 2.004-2.224) relative to carriers of the 2350AA genotype, after adjusting for confounders. MR analysis revealed that the odds ratio for hypertension per 1 mg/day increment of dietary sodium intake was 2.24 in participants with the PRKG1 rs12414562 AA genotype. Our findings suggest that dietary sodium intake may be causally associated with hypertension risk."	"Upregulation of cGMP-dependent Protein Kinase (PRKG1) in the Development of Adolescent Idiopathic Scoliosis. To explore the molecular regulatory mechanisms underlying fibroblast differentiation and dysfunction in the development of adolescent idiopathic scoliosis (AIS) in an effort to identify candidate therapeutic targets for AIS. The GSE110359 dataset, obtained from the bone marrow stromal cells of 12 AIS patients and five healthy controls, was retrieved from the GEO database. The data were preprocessed and differentially expressed genes (DEGs) were identified. KEGG pathway and Gene Ontology (GO)-Biological Process (BP) enrichment analyses were performed to identify the function of the DEGs. A protein-protein interaction (PPI) and a microRNA-transcription factor (TF)-target co-regulatory network were constructed to identify hub genes in the development of AIS. In addition, hub DEGs were evaluated by quantitative PCR (qPCR) and immunohistochemical staining. A total of 188 DEGs including 100 up-regulated and 88 down-regulated genes were obtained. The up-regulated DEGs were related to &quot;p53 signaling pathway&quot;, &quot;FoxO signaling pathway&quot;, and &quot;cGMP-PKG signaling pathway&quot; terms, while the down-regulated DEGs were significantly enriched in seven terms including &quot;protein processing in endoplasmic reticulum&quot;. The key up-regulated genes, PRKG1, CCNG2, and KAT2B, and the key down-regulated genes, MAP2K1 and DUSP6, were identified by the PPI and miRNA-TF-Target regulatory network analyses. mRNA expression patterns for PRKG1, DUSP6, and KAT2B were successfully verified by qPCR. In addition, PRKG1 protein levels were found to be elevated during the immunohistochemical analysis. Increased expression of PRKG1 in AIS patients might be an attractive therapeutic target for AIS. However, further gain or loss-of-function studies should be conducted."	"A substitution in cGMP-dependent protein kinase 1 associated with aortic disease induces an active conformation in the absence of cGMP. Type 1 cGMP-dependent protein kinases (PKGs) play important roles in human cardiovascular physiology, regulating vascular tone and smooth-muscle cell phenotype. A mutation in the human PRKG1 gene encoding cGMP-dependent protein kinase 1 (PKG1) leads to thoracic aortic aneurysms and dissections. The mutation causes an arginine-to-glutamine (RQ) substitution within the first cGMP-binding pocket in PKG1. This substitution disrupts cGMP binding to the pocket, but it also unexpectedly causes PKG1 to have high activity in the absence of cGMP via an unknown mechanism. Here, we identified the molecular mechanism whereby the RQ mutation increases basal kinase activity in the human PKG1α and PKG1β isoforms. Although we found that the RQ substitution (R177Q in PKG1α and R192Q in PKG1β) increases PKG1α and PKG1β autophosphorylation in vitro, we did not detect increased autophosphorylation of the PKG1α or PKG1β RQ variant isolated from transiently transfected 293T cells, indicating that increased basal activity of the RQ variants in cells was not driven by PKG1 autophosphorylation. Replacement of Arg-177 in PKG1α with alanine or methionine also increased basal activity. PKG1 exists as a parallel homodimer linked by an N-terminal leucine zipper, and we show that the WT chain in WT-RQ heterodimers partly reduces basal activity of the RQ chain. Using hydrogen/deuterium-exchange MS, we found that the RQ substitution causes PKG1β to adopt an active conformation in the absence of cGMP, similar to that of cGMP-bound WT enzyme. We conclude that the RQ substitution in PKG1 increases its basal activity by disrupting the formation of an inactive conformation."	"Pharmacogenetics of Pediatric Asthma: Current Perspectives. Asthma is a chronic respiratory disease that affects 339 million people worldwide and has a considerable impact on the pediatric population. Asthma symptoms can be controlled by pharmacological treatment. However, some patients do not respond to therapy and continue suffering from symptoms, which impair the quality of life of patients and limit their daily activity. Genetic variation has been shown to have a role in treatment response. The aim of this review is to update the main findings described in pharmacogenetic studies of pediatric asthma published from January 1, 2018 to December 31, 2019. During this period, the response to short-acting beta-agonists and inhaled corticosteroids in childhood asthma has been evaluated by eleven candidate-gene studies, one meta-analysis of a candidate gene, and six pharmacogenomic studies. The findings have allowed validating the association of genes previously related to asthma treatment response (ADRB2, GSDMB, FCER2, VEGFA, SPAT2SL, ASB3, and COL2A1), and identifying novel associations (PRKG1, DNAH5, IL1RL1, CRISPLD2, MMP9, APOBEC3B-APOBEC3C, EDDM3B, and BBS9). However, some results are not consistent across studies, highlighting the need to conduct larger studies in diverse populations with more homogeneous definitions of treatment response. Once stronger evidence was established, genetic variants will have the potential to be applied in clinical practice as biomarkers of treatment response enhancing asthma management and improving the quality of life of asthma patients."	"Multiomics Analyses Identify Genes and Pathways Relevant to Essential Tremor. The genetic factors and molecular mechanisms predisposing to essential tremor (ET) remains largely unknown. The objective of this study was to identify pathways and genes relevant to ET by integrating multiomics approaches. Case-control RNA sequencing of 2 cerebellar regions was done for 64 samples. A phenome-wide association study (pheWAS) of the differentially expressed genes was conducted, and a genome-wide gene association study (GWGAS) was done to identify pathways overlapping with the transcriptomic data. Finally, a transcriptome-wide association study (TWAS) was done to identify novel risk genes for ET. We identified several novel dysregulated genes, including CACNA1A and SHF. Pathways including axon guidance, olfactory loss, and calcium channel activity were significantly enriched. The ET GWGAS data found calcium ion-regulated exocytosis of neurotransmitters to be significantly enriched. The TWAS also found calcium and olfactory pathways enriched. The pheWAS identified that the underexpressed differentially expressed gene, SHF, is associated with a blood pressure medication (P = 9.3E-08), which is used to reduce tremor in ET patients. Treatment of cerebellar DAOY cells with the ET drug propranolol identified increases in SHF when treated, suggesting it may rescue the underexpression. We found that calcium-related pathways were enriched across the GWGAS, TWAS, and transcriptome. SHF was shown to have significantly decreased expression, and the pheWAS showed it was associated with blood pressure medication. The treatment of cells with propranolol showed that the drug restored levels of SHF. Overall, our findings highlight the power of integrating multiple different approaches to prioritize ET pathways and genes. © 2020 International Parkinson and Movement Disorder Society."	"Aortic progression and reintervention in patients with pathogenic variants after a thoracic aortic dissection. To evaluate aortic disease progression and reintervention after an initial thoracic aortic dissection in pathogenic variant carriers. Of 175 participants diagnosed with thoracic aortic dissection, 31 had a pathogenic variant (pathogenic group) across 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, TGFBR2) identified by whole exome sequencing. Those with benign or normal variants (benign/normal group, n = 144) comprised the control group. Clinical data were collected through medical record review (1985-2018) and supplemented with the National Death Index database (December 2018). The entire cohort (n = 175) consisted of 108 type A aortic dissections and 67 type B aortic dissections, similarly distributed between groups. The pathogenic group was significantly younger (43 vs 56 years, P &lt; .0001) and had significantly more aortic root replacements and similar extents of arch replacement at initial type A aortic dissection repair. The median follow-up time was 7.5 (4.6-12) years. After initial treatment, the pathogenic group required significantly more aortic reinterventions (median 1 vs 0, P &lt; .0001) and mean cumulative aortic reinterventions for each patient (10 years: 1 vs 0.5, P = .029). Both incidence rate (12%/year vs 1.2%/year, P = .0001) and cumulative incidence of reinterventions (9 years: 70% vs 6%, P &lt; .0001) for the preserved native aortic root were significantly higher in the pathogenic group, but were similar for the preserved native aortic arch and distal aorta between groups. Ten-year survival was similar in the pathogenic and benign/normal groups (92% vs 85%). Aggressive aortic root replacement and similar arch management should be considered in pathogenic variant carriers at initial type A aortic dissection repair compared with benign/normal variant carriers."	"Expression profiles of PRKG1, SDF2L1 and PPP1R12A are predictive and prognostic factors for therapy response and survival in high-grade serous ovarian cancer. High-grade serous ovarian cancer (HGS-EOCs) is generally sensitive to front-line platinum (Pt)-based chemotherapy although most patients at an advanced stage relapse with progressive resistant disease. Clinical or molecular data to identify primary resistant cases at diagnosis are not yet available. HGS-EOC biopsies from 105 Pt-sensitive (Pt-s) and 89 Pt-resistant (Pt-r) patients were retrospectively selected from two independent tumor tissue collections. Pathway analysis was done integrating miRNA and mRNA expression profiles. Signatures were further validated in silico on a cohort of 838 HGS-EOC cases from a published dataset. In all, 131 mRNAs and 5 miRNAs belonging to different functionally related molecular pathways distinguish Pt-s from Pt-r cases. Then, 17 out of 23 selected elements were validated by orthogonal approaches (SI signature). As resistance to Pt is associated with a short progression-free survival (PFS) and overall survival (OS), the prognostic role of the SI signature was assessed, and 14 genes associated with PFS and OS, in multivariate analyses (SII signature). The prognostic value of the SII signature was validated in a third extensive cohort. The expression profiles of SDF2L1, PPP1R12A and PRKG1 genes (SIII signature) served as independent prognostic biomarkers of Pt-response and survival. The study identified a prognostic molecular signature based on the combined expression profile of three genes which had never been associated with the clinical outcome of HGS-EOC. This may lead to early identification, at the time of diagnosis, of patients who would not greatly benefit from standard chemotherapy and are thus eligible for novel investigational approaches."	"Epigenetic and miRNA Expression Changes in People with Pain: A Systematic Review. Accumulating evidence suggests that epigenetic mechanisms may hold great potential in the field of pain. We systematically reviewed the literature exploring epigenetic mechanisms in people with pain. Four databases have been interrogated: MEDLINE, The Cochrane Central Register of Controlled Trial, Scopus, and Web of Science, following PRISMA guidelines in conducting study selection and assessment. Thirty-seven studies were included. Studies explored epigenetics in conditions such as fibromyalgia, CRPS, neuropathies, or osteoarthritis. Research focussed on genome-wide and gene-specific DNA methylation, and miRNA expression. Bioinformatics analyses exploring miRNA-associated molecular pathways were also performed. Several genes already known for their role in pain (BDNF, HDAC4, PRKG1, IL-17, TNFRSF13B, etc.), and several miRNAs linked to inflammatory regulation, nociceptive signalling and protein kinases functions have been found to differ significantly between people with chronic pain and healthy controls. Although the studies included were cross-sectional in nature, and no conclusion on causal links between epigenetic changes and pain could be drawn, we summarised the large amount of data available in literature on the topic, highlighting results that have been replicated by independent investigations. The field of pain epigenetics appears very exciting and has all the potential to lead to remarkable scientific advances. However, high-quality, well-powered, longitudinal studies are warranted. PERSPECTIVE: Though more high-quality research is needed, available research exploring epigenetic mechanisms or miRNAs in people with pain shows that genes regulating synaptic plasticity and excitability, protein kinases, and elements of the immune system might hold great potential in understanding the pathophysiology of different conditions."	"The potential influence of long non-coding RNA PRKG1-AS1 on oral squamous cell carcinoma: A comprehensive study based on bioinformatics and in vitro validation. Oral squamous cell carcinoma (OSCC) is one of the most frequent malignancies in oral cancer. Herein, we aimed to investigate the influence of lncRNA protein kinase cGMP-dependent type I-Antisense RNA 1 (PRKG1-AS1) in OSCC progression. Basing on the data acquired from TCGA database, the expression and prognostic value of PRKG1-AS1 in OSCC patients were assessed. The expression of PRKG1-AS1 in OSCC cells was determined by quantitative real-time polymerase chain reaction (qRT-PCR). Cell growth was evaluated by Cell Counting Kit-8 (CCK8) and colony-forming assays. Transwell assay was employed to test cell invasion and migration. The protein expression of epithelial-mesenchymal transition (EMT)-related markers was detected by Western blotting. The consequences displayed that PRKG1-AS1 was highly expressed in OSCC tissues and high expression of PRKG1-AS1 predicted poor outcomes. The expression of PRKG1-AS1 was higher in CAL27, SCC-9, and SCC-4 than that in normal human oral keratinocytes (NHOK). The results of biological experiments showed that deficiency of PRKG1-AS1 suppressed cell growth, invasion, and migration in CAL27 cells, and over-expression of PRKG1-AS1 accelerated cell growth, invasion, and migration in SCC-4 cells. Finally, silencing of PRKG1-AS1 obviously facilitated the protein expression levels of E-cadherin and reduced levels of N-cadherin, Vimentin, and Snail in CAL27 cells whereas over-expression of PRKG1-AS1 led to opposite results in SCC-4 cells. These outcomes indicated that PRKG1-AS1 functioned as a facilitator in OSCC cell growth, migration, and invasion, which all might be achieved by regulating EMT."	"microRNA-mRNA network model in patients with achalasia. Achalasia is a rare idiopathic disease with a complex etio-pathogenesis still unknown. This study aimed to identify microRNA (miRNA)-mRNA regulatory networks underlying achalasia. The investigation was performed in tissue specimens from 11 patients and five controls using the microarray technology followed by an integrated bioinformatics analysis. One hundred and six miRNAs were significantly up-regulated and 64 were down-regulated in achalasia patients. The expression of the most 10 differential expressed miRNAs (miR-122-5p, miR-133a-3p, miR-504-5p, miR-187-3p, miR-133b, miR-200c-3p, miR-375, miR-200b-5p, miR-200b-3p, and miR203a) was confirmed by droplet digital PCR in an independent cohort. The interactions between the significant miRNAs and their targets uncovered 14 miRNA-mRNA interacting pairs with experimentally predicted genes (ie, FN1, ROCK2, DPYSL2), and 35 pairs with not experimentally target genes (ie, SULF1, MRVI1, PRKG1); all genes were involved in immune cell trafficking, skeletal and muscular system development, nervous system development macro-processes. The mRNA-miRNA regulatory networks described in this study provide new insights in the genetic background of the disease, suggesting further investigations in novel pathogenic mechanisms."	"cGMP-dependent protein kinase I in vascular smooth muscle cells improves ischemic stroke outcome in mice. Recent works highlight the therapeutic potential of targeting cyclic guanosine monophosphate (cGMP)-dependent pathways in the context of brain ischemia/reperfusion injury (IRI). Although cGMP-dependent protein kinase I (cGKI) has emerged as a key mediator of the protective effects of nitric oxide (NO) and cGMP, the mechanisms by which cGKI attenuates IRI remain poorly understood. We used a novel, conditional cGKI knockout mouse model to study its role in cerebral IRI. We assessed neurological deficit, infarct volume, and cerebral perfusion in tamoxifen-inducible vascular smooth muscle cell-specific cGKI knockout mice and control animals. Stroke experiments revealed greater cerebral infarct volume in smooth muscle cell specific cGKI knockout mice (males: 96 ± 16 mm<sup>3</sup>; females: 93 ± 12 mm<sup>3</sup>, mean±SD) than in all control groups: wild type (males: 66 ± 19; females: 64 ± 14), cGKI control (males: 65 ± 18; females: 62 ± 14), cGKI control with tamoxifen (males: 70 ± 8; females: 68 ± 10). Our results identify, for the first time, a protective role of cGKI in vascular smooth muscle cells during ischemic stroke injury. Moreover, this protective effect of cGKI was found to be independent of gender and was mediated via improved reperfusion. These results suggest that cGKI in vascular smooth muscle cells should be targeted by therapies designed to protect brain tissue against ischemic stroke."	"Aortic pathology from protein kinase G activation is prevented by an antioxidant vitamin B12 analog. People heterozygous for an activating mutation in protein kinase G1 (PRKG1, p.Arg177Gln) develop thoracic aortic aneurysms and dissections (TAAD) as young adults. Here we report that mice heterozygous for the mutation have a three-fold increase in basal protein kinase G (PKG) activity, and develop age-dependent aortic dilation. Prkg1<sup>R177Q/+</sup> aortas show increased smooth muscle cell apoptosis, elastin fiber breaks, and oxidative stress compared to aortas from wild type littermates. Transverse aortic constriction (TAC)-to increase wall stress in the ascending aorta-induces severe aortic pathology and mortality from aortic rupture in young mutant mice. The free radical-neutralizing vitamin B12-analog cobinamide completely prevents age-related aortic wall degeneration, and the unrelated anti-oxidant N-acetylcysteine ameliorates TAC-induced pathology. Thus, increased basal PKG activity induces oxidative stress in the aorta, raising concern about the widespread clinical use of PKG-activating drugs. Cobinamide could be a treatment for aortic aneurysms where oxidative stress contributes to the disease, including Marfan syndrome."	"Availability of public databases for triangulation of findings. NA"	"Reply to Lyon et al.: Self-regulation and the foraging gene: From flies to humans. NA"	"A post-GWAS confirming effects of PRKG1 gene on milk fatty acids in a Chinese Holstein dairy population. We previously conducted a genome-wide association study (GWAS) strategy for milk fatty acids in Chinese Holstein, and identified 83 genome-wide significant single nucleotide polymorphisms (SNPs) and 314 suggestive significant SNPs. Among them, two SNPs, BTB-01077939 and BTA-11275-no-rs associated with C10:0, C12:0, and C14 index (P = 0.000014 ~ 0.000024), were within and close to (0.85 Mb) protein kinase, cGMP-dependent, type І (PRKG1) gene on BTA26, respectively. PRKG1 gene plays a key role in lipolysis to release fatty acids and glycerol through the hydrolysis of triacyglycerol in adipocytes. We herein considered it as a promising candidate for milk fatty acids. The purpose of this study was to investigate whether PRKG1 had effects on milk fatty acids. By direct sequencing the PCR products of pooled DNA, we identified a total of six SNPs, including one in 5' flanking region, four in 3' untranslated region (UTR), and one in 3' flanking region. The single-locus association analysis was carried out, and showed that the six SNPs mainly had significant associations with C6:0, C8:0 and C17:1 (P &lt; 0.0001 ~ 0.0035). In addition, we observed a haplotype block formed by g.6903810G &gt; A and g.6904047G &gt; T with Haploview 4.1, and it was strongly associated with C8:0, C10:0, C16:1, C17:1, C20:0 and C16 index (P = &lt; 0.0001 ~ 0.0123). The SNP, g.8344262A &gt; T, was predicted to alter the binding site (BS) of transcription factor (TF) GAGA box with Genomatix software, and the subsequent luciferase assay verified that it really changed the transcriptional activity of PRKG1 gene (P = 0.0009). In conclusion, to our best of knowledge, we are the first who identified the significant effects of PRKG1 on milk fatty acids in dairy cattle."	"Clinical Implications of Identifying Pathogenic Variants in Individuals With Thoracic Aortic Dissection. Thoracic aortic dissection is an emergent life-threatening condition. Routine screening for genetic variants causing thoracic aortic dissection is not currently performed for patients or family members. We performed whole exome sequencing of 240 patients with thoracic aortic dissection (n=235) or rupture (n=5) and 258 controls matched for age, sex, and ancestry. Blinded to case-control status, we annotated variants in 11 genes for pathogenicity. Twenty-four pathogenic variants in 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, and TGFBR2) were identified in 26 individuals, representing 10.8% of aortic cases and 0% of controls. Among dissection cases, we compared those with pathogenic variants to those without and found that pathogenic variant carriers had significantly earlier onset of dissection (41 versus 57 years), higher rates of root aneurysm (54% versus 30%), less hypertension (15% versus 57%), lower rates of smoking (19% versus 45%), and greater incidence of aortic disease in family members. Multivariable logistic regression showed that pathogenic variant carrier status was significantly associated with age &lt;50 (odds ratio [OR], 5.5; 95% CI, 1.6-19.7), no history of hypertension (OR, 5.6; 95% CI, 1.4-22.3), and family history of aortic disease (mother: OR, 5.7; 95% CI, 1.4-22.3, siblings: OR, 5.1; 95% CI, 1.1-23.9, children: OR, 6.0; 95% CI, 1.4-26.7). Clinical genetic testing of known hereditary thoracic aortic dissection genes should be considered in patients with a thoracic aortic dissection, followed by cascade screening of family members, especially in patients with age-of-onset &lt;50 years, family history of thoracic aortic disease, and no history of hypertension."	"Regulated Phosphosignaling Associated with Breast Cancer Subtypes and Druggability. Aberrant phospho-signaling is a hallmark of cancer. We investigated kinase-substrate regulation of 33,239 phosphorylation sites (phosphosites) in 77 breast tumors and 24 breast cancer xenografts. Our search discovered 2134 quantitatively correlated kinase-phosphosite pairs, enriching for and extending experimental or binding-motif predictions. Among the 91 kinases with auto-phosphorylation, elevated EGFR, ERBB2, PRKG1, and WNK1 phosphosignaling were enriched in basal, HER2-E, Luminal A, and Luminal B breast cancers, respectively, revealing subtype-specific regulation. CDKs, MAPKs, and ataxia-telangiectasia proteins were dominant, master regulators of substrate-phosphorylation, whose activities are not captured by genomic evidence. We unveiled phospho-signaling and druggable targets from 113 kinase-substrate pairs and cascades downstream of kinases, including AKT1, BRAF and EGFR. We further identified kinase-substrate-pairs associated with clinical or immune signatures and experimentally validated activated phosphosites of ERBB2, EIF4EBP1, and EGFR. Overall, kinase-substrate regulation revealed by the largest unbiased global phosphorylation data to date connects driver events to their signaling effects."	"Oxidation of PKGIα mediates an endogenous adaptation to pulmonary hypertension. Chronic hypoxia causes pulmonary hypertension (PH), vascular remodeling, right ventricular (RV) hypertrophy, and cardiac failure. Protein kinase G Iα (PKGIα) is susceptible to oxidation, forming an interprotein disulfide homodimer associated with kinase targeting involved in vasodilation. Here we report increased disulfide PKGIα in pulmonary arteries from mice with hypoxic PH or lungs from patients with pulmonary arterial hypertension. This oxidation is likely caused by oxidants derived from NADPH oxidase-4, superoxide dismutase 3, and cystathionine γ-lyase, enzymes that were concomitantly increased in these samples. Indeed, products that may arise from these enzymes, including hydrogen peroxide, glutathione disulfide, and protein-bound persulfides, were increased in the plasma of hypoxic mice. Furthermore, low-molecular-weight hydropersulfides, which can serve as &quot;superreductants&quot; were attenuated in hypoxic tissues, consistent with systemic oxidative stress and the oxidation of PKGIα observed. Inhibiting cystathionine γ-lyase resulted in decreased hypoxia-induced disulfide PKGIα and more severe PH phenotype in wild-type mice, but not in Cys42Ser PKGIα knock-in (KI) mice that are resistant to oxidation. In addition, KI mice also developed potentiated PH during hypoxia alone. Thus, oxidation of PKGIα is an adaptive mechanism that limits PH, a concept further supported by polysulfide treatment abrogating hypoxia-induced RV hypertrophy in wild-type, but not in the KI, mice. Unbiased transcriptomic analysis of hypoxic lungs before structural remodeling identified up-regulation of endothelial-to-mesenchymal transition pathways in the KI compared with wild-type mice. Thus, disulfide PKGIα is an intrinsic adaptive mechanism that attenuates PH progression not only by promoting vasodilation but also by limiting maladaptive growth and fibrosis signaling."	"Genome-wide analysis of DNA methylation identifies novel differentially methylated regions associated with lipid accumulation improved by ethanol extracts of Allium tubersosum and Capsella bursa-pastoris in a cell model. Hepatic steatosis is the most common chronic liver disease in Western countries. Both genetic and environmental factors are known as causes of the disease although their underlying mechanisms have not been fully understood. This study investigated the association of DNA methylation with oleic acid-induced hepatic steatosis. It also examined effects of food components on DNA methylation in hepatic steatosis. Genome-wide DNA methylation of oleic acid (OA)-induced lipid accumulation in vitro cell model was investigated using reduced representation bisulfite sequencing. Changes of DNA methylation were also analyzed after treatment with food components decreasing OA-induced lipid accumulation in the model. We identified total 81 regions that were hypermethylated by OA but hypomethylated by food components or vice versa. We determined the expression of seven genes proximally located at the selected differentially methylated regions. Expression levels of WDR27, GNAS, DOK7, MCF2L, PRKG1, and CMYA5 were significantly different between control vs OA and OA vs treatment with food components. We demonstrated that DNA methylation was associated with expression of genes in the model of hepatic steatosis. We also found that food components reversely changed DNA methylation induced by OA and alleviated lipid accumulation. These results suggest that DNA methylation is one of the mechanisms causing the hepatic steatosis and its regulation by food components provides insights that may prevent or alleviate lipid accumulation."	"Associations between olfactory pathway gene methylation marks, obesity features and dietary intakes. Olfaction is an important sense influencing food preferences, appetite, and eating behaviors. This hypothesis-driven study aimed to assess associations between olfactory pathway gene methylation signatures, obesity features, and dietary intakes. A nutriepigenomic analysis was conducted in 474 adults from the Methyl Epigenome Network Association (MENA) project. Anthropometric measurements, clinical data, and serum metabolic profiles of the study population were obtained from structured databases of the MENA cohorts. Habitual dietary intake was assessed using a validated semiquantitative food frequency questionnaire. DNA methylation was measured in circulating white blood cells by microarray (Infinium Human Methylation 450 K BeadChips). FDR values (p &lt; 0.0001) were used to select those CpGs that showed the best correlation with body mass index (BMI) and waist circumference (WC). Pathway analyses involving the characterization of genes involved in the olfactory transduction system were performed using KEGG and pathDIP reference databases. Overall, 15 CpG sites at olfactory pathway genes were associated with BMI (p &lt; 0.0001) and WC (p &lt; 0.0001) after adjustments for potential confounding factors. Together, methylation levels at the15 CpG sites accounted for 22% and 20% of the variability in BMI and WC (r<sup>2</sup> = 0.219, p &lt; 0.001, and r<sup>2</sup> = 0.204, p &lt; 0.001, respectively). These genes encompassed olfactory receptors (OR4D2, OR51A7, OR2T34, and OR2Y1) and several downstream signaling molecules (SLC8A1, ANO2, PDE2A, CALML3, GNG7, CALML6, PRKG1, and CAMK2D), which significantly regulated odor detection and signal transduction processes within the complete olfactory cascade, as revealed by pathway enrichment analyses (p = 1.94 × 10<sup>-10</sup>). Moreover, OR4D2 and OR2Y1 gene methylation patterns strongly correlated with daily intakes of total energy (p &lt; 0.0001), carbohydrates (p &lt; 0.0001), protein (p &lt; 0.0001), and fat (p &lt; 0.0001). The results of this study suggest novel relationships between olfactory pathway gene methylation signatures, obesity indices, and dietary intakes."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"The natural history of type B aortic dissection in patients with PRKG1 mutation c.530G&gt;A (p.Arg177Gln). The c.530G&gt;A (p.Arg177Gln) mutation in PRKG1 has been shown to be associated with thoracic aortic aneurysms and dissections. This rare mutation accounts for an estimated 1% of nonsyndromic heritable thoracic aortic disease. We sought to describe the clinical presentation of type B aortic dissection (TBAD), management, and outcomes in patients with this mutation. This is a descriptive multi-institutional retrospective study of patients from six families with the PRKG1 mutation. Patients with TBAD were selected for analysis. Demographics, family histories, TBAD management, and outcomes were reviewed. Of the 29 individuals diagnosed with the PRKG1 mutation, 12 (41.3%) had TBAD (50% male, TBAD median age: 31 years [range, 16-58 years], median follow-up: 6 years [range, 3-15 years] after TBAD). All had a family history of aortic dissections and none had features of Marfan syndrome. The median size of the descending thoracic aorta (DTA) at TBAD was 4.1 cm (range, 3.8-5 cm). Most cases (9 acute TBAD, 1 incidental TBAD diagnosis during screening) were managed medically. One case had open DTA repair the acute phase. Repair for dissection-related aneurysmal degeneration was performed in seven cases (58.3%) in the chronic phase at a median of 2 years (range, 1-8 years) after TBAD. In four cases (33.3%), the DTA remained stable in size over a range of 1 to 7 years after TBAD. Type A aortic dissection subsequent to TBAD occurred in three cases (25%). There were four (33.3%) deaths in the series, all aortic related at a median age of 24 years (range, 19-43 years). The PRKG1 (p.Arg177Gln) mutation although rare is associated with nonsyndromic TBAD in young and middle-aged patients. Workup for this gene mutation should be included as part of the workup for TBAD etiology in relatively young patients and those with familial history of aortic dissections. Once diagnosed, testing of first-degree family members is warranted. In all individuals with a PRKG1 mutation, close follow-up for aortic root dilatation and hypertension control is essential to reduce the risk of type A or type B aortic dissection, and in cases of TBAD, to decrease the risk of dissection-related aneurysmal degeneration."	"Self-regulation and the foraging gene (PRKG1) in humans. Foraging is a goal-directed behavior that balances the need to explore the environment for resources with the need to exploit those resources. In Drosophila melanogaster, distinct phenotypes have been observed in relation to the foraging gene (for), labeled the rover and sitter. Adult rovers explore their environs more extensively than do adult sitters. We explored whether this distinction would be conserved in humans. We made use of a distinction from regulatory mode theory between those who &quot;get on with it,&quot; so-called locomotors, and those who prefer to ensure they &quot;do the right thing,&quot; so-called assessors. In this logic, rovers and locomotors share similarities in goal pursuit, as do sitters and assessors. We showed that genetic variation in PRKG1, the human ortholog of for, is associated with preferential adoption of a specific regulatory mode. Next, participants performed a foraging task to see whether genetic differences associated with distinct regulatory modes would be associated with distinct goal pursuit patterns. Assessors tended to hug the boundary of the foraging environment, much like behaviors seen in Drosophila adult sitters. In a patchy foraging environment, assessors adopted more cautious search strategies maximizing exploitation. These results show that distinct patterns of goal pursuit are associated with particular genotypes of PRKG1, the human ortholog of for."	"Exome sequencing reveals a de novo PRKG1 mutation in a sporadic patient with aortic dissection. Thoracic aortic aneurysm and dissection (TAAD) is a common condition associated with high mortality. It is predominantly inherited in an autosomal dominant manner with reduced penetrance and variable expression. The genetic basis of the majority of TAAD cases remains unknown. We described a 53 years old male presented with abdominal aortic dissection as well as aortic tortuosity. To investigate the genetic basis of the clinical presentation, whole-exome sequencing was performed. Exome sequencing identified a de novo heterozygous undescribed mutation in the PRKG1 gene (NM_001098512.2: c.1108 G &gt; A), predicted to cause the missense change p.Gly370Ser in the ATP binding motif of the protein. This mutation was not reported in the dbSNP, 1000 Genome Project, and Exome sequencing databases. Furthermore, the Glycine370 residue of PRKG1 is highly conserved among various species and it is predicted to be damaging by multiple in silico programs, suggesting that this substitution may cause a major disruption of protein function. To our knowledge, this is the second reported mutation locus of PRKG1 accounting for the disease. Our study expands the mutation spectrum of PRKG1 and clinical phenotype of mutation-carriers. Screening for PRKG1 mutations should be considered in patients with unexplained aortic disease, and identification of the causative gene will aid in individualized, gene-tailored management."	"Altered Global mRNA Expressions of Pain and Aggression Related Genes in the Blood of Children with Autism Spectrum Disorders. Autism spectrum disorder (ASD) is characterized by repetitive stereotypic behaviors, restricted interests, social withdrawal, and communication deficits. Aggression and insensitivity to pain are largely unexplained in these cases. We analyzed nine mRNA expressions of the candidate genes related to aggression and insensitivity to pain in the peripheral blood of patients with ASD. Whole blood samples were obtained from 40 autistic patients (33 boys, 7 girls) and 50 age- and sex-matched controls (37 boys and 13 girls) to isolate RNA. Gene expression was assessed by quantitative Real-Time PCR (qRT-PCR) in the Erciyes University Genome and Stem Cell Center (GENKOK). All of the gene expressions except CRHR1 and SLC6A4 were found to be statistically different between the ASD patients and controls. Gene expression also differed according to gender. Alterations in the mRNA expression patterns of the HTR1E, OPRL1, OPRM1, TACR1, PRKG1, SCN9A and DRD4 genes provide further evidence for a relevant effect of the respective candidate genes on the pathophysiology of ASD. Future studies may determine the sensitivity of these candidate markers in larger samples including further neuropsychiatric diagnosis."	"Candidate gene and pathway analyses identifying genetic variations associated with prasugrel pharmacokinetics and pharmacodynamics. We aimed to investigate the genetic polymorphisms and pharmacogenetic variability associated with the pharmacodynamics (PD) and pharmacokinetics (PK) of prasugrel, in healthy Han Chinese subjects. Healthy, native, Han Chinese subjects (n = 36) aged 18 to 45 years with unknown genotypes were included. All subjects received a loading dose (LD) on day 1 and a maintenance dose (MD) from day 2 until day 11. Candidate gene association and gene-set analysis of biological pathways related to prasugrel and platelet activity were analyzed. 28 SNPs of 17 candidate genes previously associated with prasugrel or platelet activity were selected after a literature search. In the 30 mg LD groups (n = 24), ITGA2-rs28095 was found to be significantly associated with the P2Y12 reaction unit (PRU) value at 24 h after the LD (p = 0.015). 165 study genes related to platelet activation-related processes and prasugrel activity were selected from the MSigDB database, including curated gene sets from KEGG, Bio Carta, and Gene Cards. 14 SNPs of 9 genes were found to be significantly correlated both at 24 h and 12 days after LD: ADAMTSL1, PRKCA, ITPR2, P2RY12, P2RY14, PLCB4, PRKG1, ADCY1, and LYN. Seven SNPs of 6 protein-coding genes associated with area under the concentration-time curve (AUC0-tlast) were significantly identified among the 47 selected genes, including ADAMTSL1, CD36, P2RY1, PCSK9, PON1, and SCD. These results show that genetic variation affects the PK and PD of prasugrel in normal individuals. Further studies with larger sample sizes are required to explore whether the SNPs are associated only with prasugrel activity or also with cardiovascular events and all-cause mortality."	"Managing the aorta in patients with a PRKG1 mutation. NA"	"Commentary: Timing for aortic surgery in rare genetic variants: When prevention warrants intervention? NA"	"Identification of 26 novel loci that confer susceptibility to early-onset coronary artery disease in a Japanese population. Early-onset coronary artery disease (CAD) has a strong genetic component. Although genome-wide association studies have identified various genes and loci significantly associated with CAD mainly in European populations, genetic variants that contribute toward susceptibility to this condition in Japanese patients remain to be definitively identified. In the present study, exome-wide association studies (EWASs) were performed to identify genetic variants that confer susceptibility to early-onset CAD in Japanese. A total of 7,256 individuals aged ≤65 years were enrolled in the present study. EWAS were conducted on 1,482 patients with CAD and 5,774 healthy controls. Genotyping of single nucleotide polymorphisms (SNPs) was performed using Illumina Human Exome-12 DNA Analysis BeadChip or Infinium Exome-24 BeadChip arrays. The association between allele frequencies for 31,465 SNPs that passed quality control and CAD was examined using Fisher's exact test. To compensate for multiple comparisons of allele frequencies with CAD, a false discovery rate (FDR) of &lt;0.05 was applied for statistically significant associations. The association between allele frequencies for 31,465 SNPs and CAD, as determined by Fisher's exact test, demonstrated that 170 SNPs were significantly (FDR &lt;0.05) associated with CAD. Multivariable logistic regression analysis with adjustment for age, sex, and the prevalence of hypertension, diabetes mellitus and dyslipidemia revealed that 162 SNPs were significantly (P&lt;0.05) associated with CAD. A stepwise forward selection procedure was performed to examine the effects of genotypes for the 162 SNPs on CAD. The 54 SNPs were significant (P&lt;0.05) and independent [coefficient of determination (R<sup>2</sup>), 0.0008 to 0.0297] determinants of CAD. These SNPs together accounted for 15.5% of the cause of CAD. Following examination of results from previous genome-wide association studies and linkage disequilibrium of the identified SNPs, 21 genes (RNF2, YEATS2, USP45, ITGB8, TNS3, FAM170B-AS1, PRKG1, BTRC, MKI67, STIM1, OR52E4, KIAA1551, MON2, PLUT, LINC00354, TRPM1, ADAT1, KRT27, LIPE, GFY and EIF3L) and five chromosomal regions (2p13, 4q31.2, 5q12, 13q34 and 20q13.2) that were significantly associated with CAD were newly identified in the present study. Gene ontology analysis demonstrated that various biological functions were predicted in the 18 genes identified in the present study. The network analysis revealed that the 18 genes had potential direct or indirect interactions with the 30 genes previously revealed to be associated with CAD or with the 228 genes identified in previous genome-wide association studies. The present study newly identified 26 loci that confer susceptibility to CAD. Determination of genotypes for the SNPs at these loci may prove informative for assessment of the genetic risk for CAD in Japanese patients."	"Replication of the Interaction of PRKG1 and Trauma Exposure on Alcohol Misuse in an Independent African American Sample. In the present study, we sought to replicate recent findings of Polimanti et al. (2017), who conducted a genome-wide gene-by-environment interaction study (GEWIS) and identified a gene-by-trauma interaction that predicts alcohol misuse among African Americans. Consistent with the findings published by Polimanti and colleagues, results of the current study demonstrated an interaction effect, b = 0.41, of trauma exposure and rs1729578 in the intron of PRKG1 on alcohol misuse in a subsample of ancestral African Americans. The minor allele (rs1729578*C) was positively associated with increased alcohol use disorder symptoms in trauma-exposed subjects and negatively associated in non-trauma-exposed subjects. This effect, however, was only significant for one out of three alcohol outcome measures we investigated, suggesting the interaction may be most salient when predicting higher severity of alcohol misuse. Additionally, the effect did not remain significant after we accounted for testing the effect on three different outcome variables. Also in line with the original study, the gene-by-environment effect was not demonstrated among the ancestral European subsample. The findings suggest this gene variant may increase an individual's susceptibility to environmental influences, both adverse and supportive."	"Combining Landscape Genomics and Ecological Modelling to Investigate Local Adaptation of Indigenous Ugandan Cattle to East Coast Fever. East Coast fever (ECF) is a fatal sickness affecting cattle populations of eastern, central, and southern Africa. The disease is transmitted by the tick Rhipicephalus appendiculatus, and caused by the protozoan Theileria parva parva, which invades host lymphocytes and promotes their clonal expansion. Importantly, indigenous cattle show tolerance to infection in ECF-endemically stable areas. Here, the putative genetic bases underlying ECF-tolerance were investigated using molecular data and epidemiological information from 823 indigenous cattle from Uganda. Vector distribution and host infection risk were estimated over the study area and subsequently tested as triggers of local adaptation by means of landscape genomics analysis. We identified 41 and seven candidate adaptive loci for tick resistance and infection tolerance, respectively. Among the genes associated with the candidate adaptive loci are PRKG1 and SLA2. PRKG1 was already described as associated with tick resistance in indigenous South African cattle, due to its role into inflammatory response. SLA2 is part of the regulatory pathways involved into lymphocytes' proliferation. Additionally, local ancestry analysis suggested the zebuine origin of the genomic region candidate for tick resistance."	"A shear-dependent NO-cGMP-cGKI cascade in platelets acts as an auto-regulatory brake of thrombosis. Mechanisms that limit thrombosis are poorly defined. One of the few known endogenous platelet inhibitors is nitric oxide (NO). NO activates NO sensitive guanylyl cyclase (NO-GC) in platelets, resulting in an increase of cyclic guanosine monophosphate (cGMP). Here we show, using cGMP sensor mice to study spatiotemporal dynamics of platelet cGMP, that NO-induced cGMP production in pre-activated platelets is strongly shear-dependent. We delineate a new mode of platelet-inhibitory mechanotransduction via shear-activated NO-GC followed by cGMP synthesis, activation of cGMP-dependent protein kinase I (cGKI), and suppression of Ca<sup>2+</sup> signaling. Correlative profiling of cGMP dynamics and thrombus formation in vivo indicates that high cGMP concentrations in shear-exposed platelets at the thrombus periphery limit thrombosis, primarily through facilitation of thrombus dissolution. We propose that an increase in shear stress during thrombus growth activates the NO-cGMP-cGKI pathway, which acts as an auto-regulatory brake to prevent vessel occlusion, while preserving wound closure under low shear."	"A genome-wide association and admixture mapping study of bronchodilator drug response in African Americans with asthma. Short-acting β2-adrenergic receptor agonists (SABAs) are the most commonly prescribed asthma medications worldwide. Response to SABAs is measured as bronchodilator drug response (BDR), which varies among racial/ethnic groups in the United States. However, the genetic variation that contributes to BDR is largely undefined in African Americans with asthma. To identify genetic variants that may contribute to differences in BDR in African Americans with asthma, we performed a genome-wide association study (GWAS) of BDR in 949 African-American children with asthma, genotyped with the Axiom World Array 4 (Affymetrix, Santa Clara, CA) followed by imputation using 1000 Genomes phase III genotypes. We used linear regression models adjusting for age, sex, body mass index (BMI) and genetic ancestry to test for an association between BDR and genotype at single-nucleotide polymorphisms (SNPs). To increase power and distinguish between shared vs. population-specific associations with BDR in children with asthma, we performed a meta-analysis across 949 African Americans and 1830 Latinos (total = 2779). Finally, we performed genome-wide admixture mapping to identify regions whereby local African or European ancestry is associated with BDR in African Americans. We identified a population-specific association with an intergenic SNP on chromosome 9q21 that was significantly associated with BDR (rs73650726, p = 7.69 × 10<sup>-9</sup>). A trans-ethnic meta-analysis across African Americans and Latinos identified three additional SNPs within the intron of PRKG1 that were significantly associated with BDR (rs7903366, rs7070958 and rs7081864, p ≤ 5 × 10<sup>-8</sup>). Our results failed to replicate in three additional populations of 416 Latinos and 1615 African Americans. Our findings indicate that both population-specific and shared genetic variation contributes to differences in BDR in minority children with asthma, and that the genetic underpinnings of BDR may differ between racial/ethnic groups."	"cGMP-dependent protein kinase I (cGKI) modulates human hepatic stellate cell activation. The activation of hepatic stellate cells (HSCs) plays a crucial role in liver fibrosis, however the role of HSCs is less understood in hepatic insulin resistance. Since in the liver cGMP-dependent protein kinase I (cGKI) was detected in HSC but not in hepatocytes, and cGKI-deficient mice that express cGKI selectively in smooth muscle but not in other cell types (cGKI-SM mice) displayed hepatic insulin resistance, we hypothesized that cGKI modulates HSC activation and insulin sensitivity. To study stellate cell activation in cGKI-SM mice, retinol storage and gene expression were studied. Moreover, in the human stellate cell line LX2, the consequences of cGKI-silencing on gene expression were investigated. Finally, cGKI expression was examined in human liver biopsies covering a wide range of liver fat content. Retinyl-ester concentrations in the liver of cGKI-SM mice were lower compared to wild-type animals, which was associated with disturbed expression of genes involved in retinol metabolism and inflammation. cGKI-silenced LX2 cells showed an mRNA expression profile of stellate cell activation, altered matrix degradation and activated chemokine expression. On the other hand, activation of LX2 cells suppressed cGKI expression. In accordance with this finding, in human liver biopsies, we observed a negative correlation between cGKI mRNA and liver fat content. These results suggest that the lack of cGKI possibly leads to stellate cell activation, which stimulates chemokine expression and activates inflammatory processes, which could disturb hepatic insulin sensitivity."	"Genetic variants of cGMP-dependent protein kinase genes and salt sensitivity of blood pressure: the GenSalt study. Genetic mechanisms involved in the susceptibility to salt sensitivity have not been completely clarified. This study aimed to comprehensively examine the association between genetic variants in the cyclic guanosine monophosphate (cGMP)-dependent protein kinase (PKG/PRKG) genes and blood pressure (BP) responses to dietary sodium intervention in a Chinese population. A 7-day low-sodium intervention followed by a 7-day high-sodium intervention was conducted among 1906 Han participants from rural areas of northern China. Nine BP measurements were obtained at baseline and each intervention using a random-zero sphygmomanometer. Linear mixed-effect models were used to assess the additive association of 213 tag single-nucleotide polymorphisms (SNPs) in two PRKG genes (PRKG1 and PRKG2) with salt sensitivity phenotypes. Gene-based analyses were conducted using the truncated product method. The Bonferroni method was used to adjust for multiple testing. Mean systolic BP response to low-sodium intervention significantly decreased with the number of minor T allele of marker rs10997916 in PRKG1 (P = 2.4 × 10<sup>-5</sup>). Mean systolic BP responses (95% confidence interval) among those with genotypes CC, CT, and TT were -5.6 (-6.0, -5.3), -3.7 (-4.7, -2.8), and -1.3 (-4.6, 2.0) mmHg, respectively, during the low-sodium intervention. Gene-based analyses demonstrated that PRKG1 was significantly associated with systolic BP response to low-sodium intervention (P = 1.2 × 10<sup>-3</sup>), whereas PRKG2 was nominally significantly associated with diastolic BP responses to high-sodium intervention (P = 2.6 × 10<sup>-2</sup>). The current study suggested a significant association of genetic variants in the PRKG genes with variation of BP response to dietary sodium intake in Han Chinese population. These novel findings merit further replication in future."	"TNF-α elicits phenotypic and functional alterations of vascular smooth muscle cells by miR-155-5p-dependent down-regulation of cGMP-dependent kinase 1. cGMP-dependent protein kinase 1 (PKG1) plays an important role in nitric oxide (NO)/cGMP-mediated maintenance of vascular smooth muscle cell (VSMC) phenotype and vasorelaxation. Inflammatory cytokines, including tumor necrosis factor-α (TNFα), have long been understood to mediate several inflammatory vascular diseases. However, the underlying mechanism of TNFα-dependent inflammatory vascular disease is unclear. Here, we found that TNFα treatment decreased PKG1 expression in cultured VSMCs, which correlated with NF-κB-dependent biogenesis of miR-155-5p that targeted the 3'-UTR of PKG1 mRNA. TNFα induced VSMC phenotypic switching from a contractile to a synthetic state through the down-regulation of VSMC marker genes, suppression of actin polymerization, alteration of cell morphology, and elevation of cell proliferation and migration. All of these events were blocked by treatment with an inhibitor of miR-155-5p or PKG1, whereas transfection with miR-155-5p mimic or PKG1 siRNA promoted phenotypic modulation, similar to the response to TNFα. In addition, TNFα-induced miR-155-5p inhibited the vasorelaxant response of de-endothelialized mouse aortic vessels to 8-Br-cGMP by suppressing phosphorylation of myosin phosphatase and myosin light chain, both of which are downstream signal modulators of PKG1. Moreover, TNFα-induced VSMC phenotypic alteration and vasodilatory dysfunction were blocked by NF-κB inhibition. These results suggest that TNFα impairs NO/cGMP-mediated maintenance of the VSMC contractile phenotype and vascular relaxation by down-regulating PKG1 through NF-κB-dependent biogenesis of miR-155-5p. Thus, the NF-κB/miR-155-5p/PKG1 axis may be crucial in the pathogenesis of inflammatory vascular diseases, such as atherosclerotic intimal hyperplasia and preeclamptic hypertension."	"Association of modifiers and other genetic factors explain Marfan syndrome clinical variability. Marfan syndrome (MFS) is a rare autosomal dominant connective tissue disorder related to variants in the FBN1 gene. Prognosis is related to aortic risk of dissection following aneurysm. MFS clinical variability is notable, for age of onset as well as severity and number of clinical manifestations. To identify genetic modifiers, we combined genome-wide approaches in 1070 clinically well-characterized FBN1 disease-causing variant carriers: (1) an FBN1 eQTL analysis in 80 fibroblasts of FBN1 stop variant carriers, (2) a linkage analysis, (3) a kinship matrix association study in 14 clinically concordant and discordant sib-pairs, (4) a genome-wide association study and (5) a whole exome sequencing in 98 extreme phenotype samples.Three genetic mechanisms of variability were found. A new genotype/phenotype correlation with an excess of loss-of-cysteine variants (P = 0.004) in severely affected subjects. A second pathogenic event in another thoracic aortic aneurysm gene or the COL4A1 gene (known to be involved in cerebral aneurysm) was found in nine individuals. A polygenic model involving at least nine modifier loci (named gMod-M1-9) was observed through cross-mapping of results. Notably, gMod-M2 which co-localizes with PRKG1, in which activating variants have already been described in thoracic aortic aneurysm, and gMod-M3 co-localized with a metalloprotease (proteins of extra-cellular matrix regulation) cluster. Our results represent a major advance in understanding the complex genetic architecture of MFS and provide the first steps toward prediction of clinical evolution."	"A genome scan for genes underlying adult body size differences between Central African hunter-gatherers and farmers. The evolutionary and biological bases of the Central African &quot;pygmy&quot; phenotype, a characteristic of rainforest hunter-gatherers defined by reduced body size compared with neighboring farmers, remain largely unknown. Here, we perform a joint investigation in Central African hunter-gatherers and farmers of adult standing height, sitting height, leg length, and body mass index (BMI), considering 358 hunter-gatherers and 169 farmers with genotypes for 153,798 SNPs. In addition to reduced standing heights, hunter-gatherers have shorter sitting heights and leg lengths and higher sitting/standing height ratios than farmers and lower BMI for males. Standing height, sitting height, and leg length are strongly correlated with inferred levels of farmer genetic ancestry, whereas BMI is only weakly correlated, perhaps reflecting greater contributions of non-genetic factors to body weight than to height. Single- and multi-marker association tests identify one region and eight genes associated with hunter-gatherer/farmer status, and 24 genes associated with the height-related traits. Many of these genes have putative functions consistent with roles in determining their associated traits and the pygmy phenotype, and they include three associated with standing height in non-Africans (PRKG1, DSCAM, MAGI2). We find evidence that European height-associated SNPs or variants in linkage disequilibrium with them contribute to standing- and sitting-height determination in Central Africans, but not to the differential status of hunter-gatherers and farmers. These findings provide new insights into the biological basis of the pygmy phenotype, and they highlight the potential of cross-population studies for exploring the genetic basis of phenotypes that vary naturally across populations."	"Whole exome sequencing identifies MRVI1 as a susceptibility gene for moyamoya syndrome in neurofibromatosis type 1. Moyamoya angiopathy is a progressive cerebral vasculopathy. The p.R4810K substitution in RNF213 has previously been linked to moyamoya disease in Asian populations. When associated with other medical conditions, such as neurofibromatosis type 1, this vasculopathy is frequently reported as moyamoya syndrome. Intriguingly, most cases of moyamoya-complicated neurofibromatosis type 1 have been described in Caucasians, inverting the population ratio observed in Asians, although prevalence of neurofibromatosis type 1 is constant worldwide. Our aim was to investigate whether, among Caucasians, additive genetic factors may contribute to the occurrence of moyamoya in neurofibromatosis type 1. Whole exome sequencing was carried out on an Italian family with moyamoya-complicated neurofibromatosis type 1 to identify putative genetic modifiers independent of the NF1 locus and potentially involved in moyamoya pathogenesis. Results were validated in an unrelated family of German ancestry. We identified the p.P186S substitution (rs35857561) in MRVI1 that segregated with moyamoya syndrome in both the Italian and German family. The rs35857561 polymorphism in MRVI1 may be a genetic susceptibility factor for moyamoya in European patients with neurofibromatosis type 1. MRVI1 is a functional partner of ITPR1, PRKG1 and GUCY1A3, which are involved in response to nitric oxide. Mutations in GUCY1A3 have been recently linked to a recessive syndromic form of moyamoya with esophageal achalasia."	"Small GTP-Binding Protein GDP Dissociation Stimulator Prevents Thoracic Aortic Aneurysm Formation and Rupture by Phenotypic Preservation of Aortic Smooth Muscle Cells. Thoracic aortic aneurysm (TAA) and dissection are fatal diseases that cause aortic rupture and sudden death. The small GTP-binding protein GDP dissociation stimulator (SmgGDS) is a crucial mediator of the pleiotropic effects of statins. Previous studies revealed that reduced force generation in aortic smooth muscle cells (AoSMCs) causes TAA and thoracic aortic dissection. To examine the role of SmgGDS in TAA formation, we used an angiotensin II (1000 ng·min<sup>-1</sup>·kg<sup>-1</sup>, 4 weeks)-induced TAA model. We found that 33% of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice died suddenly as a result of TAA rupture, whereas there was no TAA rupture in Apoe<sup>-/-</sup> control mice. In contrast, there was no significant difference in the ratio of abdominal aortic aneurysm rupture between the 2 genotypes. We performed ultrasound imaging every week to follow up the serial changes in aortic diameters. The diameter of the ascending aorta progressively increased in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice compared with Apoe<sup>-/-</sup> mice, whereas that of the abdominal aorta remained comparable between the 2 genotypes. Histological analysis of Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed dissections of major thoracic aorta in the early phase of angiotensin II infusion (day 3 to 5) and more severe elastin degradation compared with Apoe<sup>-/-</sup> mice. Mechanistically, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice showed significantly higher levels of oxidative stress, matrix metalloproteinases, and inflammatory cell migration in the ascending aorta compared with Apoe<sup>-/-</sup> mice. For mechanistic analyses, we primary cultured AoSMCs from the 2 genotypes. After angiotensin II (100 nmol/L) treatment for 24 hours, Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs showed significantly increased matrix metalloproteinase activity and oxidative stress levels compared with Apoe<sup>-/-</sup> AoSMCs. In addition, SmgGDS deficiency increased cytokines/chemokines and growth factors in AoSMCs. Moreover, expressions of fibrillin-1 ( FBN1), α-smooth muscle actin ( ACTA2), myosin-11 ( MYH11), MYLLK, and PRKG1, which are force generation genes, were significantly reduced in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> AoSMCs compared with Apoe<sup>-/-</sup> AoSMCs. A similar tendency was noted in AoSMCs from patients with TAA compared with those from control subjects. Finally, local delivery of the SmgGDS gene construct reversed the dilation of the ascending aorta in Apoe<sup>-/-</sup> SmgGDS<sup>+/-</sup> mice. These results suggest that SmgGDS is a novel therapeutic target for the prevention and treatment of TAA."	"Results of next-generation sequencing gene panel diagnostics including copy-number variation analysis in 810 patients suspected of heritable thoracic aortic disorders. Simultaneous analysis of multiple genes using next-generation sequencing (NGS) technology has become widely available. Copy-number variations (CNVs) in disease-associated genes have emerged as a cause for several hereditary disorders. CNVs are, however, not routinely detected using NGS analysis. The aim of this study was to assess the diagnostic yield and the prevalence of CNVs using our panel of Hereditary Thoracic Aortic Disease (H-TAD)-associated genes. Eight hundred ten patients suspected of H-TAD were analyzed by targeted NGS analysis of 21 H-TAD associated genes. In addition, the eXome hidden Markov model (XHMM; an algorithm to identify CNVs in targeted NGS data) was used to detect CNVs in these genes. A pathogenic or likely pathogenic variant was found in 66 of 810 patients (8.1%). Of these 66 pathogenic or likely pathogenic variants, six (9.1%) were CNVs not detectable by routine NGS analysis. These CNVs were four intragenic (multi-)exon deletions in MYLK, TGFB2, SMAD3, and PRKG1, respectively. In addition, a large duplication including NOTCH1 and a large deletion encompassing SCARF2 were detected. As confirmed by additional analyses, both CNVs indicated larger chromosomal abnormalities, which could explain the phenotype in both patients. Given the clinical relevance of the identification of a genetic cause, CNV analysis using a method such as XHMM should be incorporated into the clinical diagnostic care for H-TAD patients."	"Long-term inhibition of PDE5 ameliorates aging-induced changes in rat testis. NO-cGMP signaling pathway has been implicated in reduction of testicular steroidogenesis during aging. Here we analyzed the effect of PDE5 inhibition on old testicular phenotype formation. The old phenotype exhibited low testosterone and increased nitrite levels in circulation, increased cGMP accumulation in testicular interstitial fluid (TIF), progressive atrophy of testicular seminiferous tubules and enlargement of interstitial area followed by rise in blood vessel density and slight increase in the number of Leydig cells and macrophages. Leydig cells have reduced steroidogenic capacity, increased MAP kinases expression (MEK, ERK1/2, JNK) and antiapoptotic PRKG1 and AKT, suggesting increased proliferation/survival and accumulation of senescent Leydig cells in testis. In 12 month-old rats, a long-term treatment with sildenafil (PDE5 inhibitor) normalized testosterone/nitrite levels in circulation and cGMP accumulation in TIF; improved Leydig cell steroidogenic capacity; decreased MEK, ERK1/2 and PRKG1 expression; prevented an increase in the Leydig cells number and atrophy of seminiferous tubules leading to histological appearance of young rat testes. In 18 month-old rats, long-term PDE5 inhibition partially recovered testosterone and nitrite levels in serum; normalized PRKG1 expression without effect on MEK and ERK1/2; and slowed down Leydig cell and macrophage accumulation and regressive tubular changes. Culturing of primary Leydig cells from aged rats in presence of PDE5-inhibitor stimulated steroidogenic and MAPK gene expression. Taking together, results indicate that cGMP targeting alter both steroidogenesis and signaling pathways associated with cell proliferation/survival. The long-term PDE5 inhibition improves testicular steroidogenesis and slows-down regressive changes in testes during aging."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"Genetic Variation in SLC8A1 Gene Involved in Blood Pressure Responses to Acute Salt Loading. Salt sensitivity of blood pressure (SSBP) increases the risk of cardiovascular complications, and the heritability of SSBP is about 50% in Chinese population. However, studies identifying genes involved in BP responses to acute sodium loading and diuresis shrinkage are still limited. A total of 342 essential hypertensives from Beijing were recruited in our study. A modified Sullivan's acute oral saline load and diuresis shrinkage test was conducted to each individual. Medical history and lifestyle risk factors were obtained by questionnaire. Generalized linear model was used to examine the associations of 29 single-nucleotide polymorphisms (SNPs) with SSBP and false discovery rate (FDR) was used to correct P values for multiple testing. In the process of acute sodium loading, after adjusting for age and 24-hour urinary sodium concentration, SNPs in CYP11B2, PRKG1, SLC8A1 genes were significantly associated with systolic BP (SBP) rising in the additive and recessive model; SNPs in CYP4A11, PRKG1, SLC8A1, and ADRB2 genes were significantly associated with diastolic BP (DBP) rising. In the process of diuresis shrinkage, SNPs of CLCNKA, eNOS, PRKG1 gene were associated with SBP and DBP decreasing. After FDR correction, rs434082 in SLC8A1 gene was still significantly associated with blood pressure rising during salt load. In the additive model, A allele increased DBP of 2.8 mm Hg (FDR_q = 0.029) and MAP of 3.1 mm Hg (FDR_q = 0.029) after adjusting for age and 24-hour urinary sodium concentration. SLC8A1 gene may contribute to BP change in the process of acute sodium loading in a Han Chinese population."	"H- ras deletion protects against angiotensin II-induced arterial hypertension and cardiac remodeling through protein kinase G-Iβ pathway activation. Ras proteins regulate cell survival, growth, differentiation, blood pressure, and fibrosis in some organs. We have demonstrated that H- ras gene deletion produces mice hypotension via a soluble guanylate cyclase-protein kinase G (PKG)-dependent mechanism. In this study, we analyzed the consequences of H- ras deletion on cardiac remodeling induced by continuous angiotensin II (AngII) infusion and the molecular mechanisms implied. Left ventricular posterior wall thickness and mass and cardiomyocyte cross-sectional area were similar between AngII-treated H-Ras knockout (H -ras<sup>-/-</sup>) and control wild-type (H -ras<sup>+/+</sup>) mice, as were extracellular matrix protein expression. Increased cardiac PKG-Iβ protein expression in H -ras<sup>-/-</sup> mice suggests the involvement of this protein in heart protection. Ex vivo experiments on cardiac explants could support this mechanism, as PKG blockade blunted protection against AngII-induced cardiac hypertrophy and fibrosis markers in H -ras<sup>-/-</sup> mice. Genetic modulation studies in cardiomyocytes and cardiac and embryonic fibroblasts revealed that the lack of H-Ras down-regulates the B-RAF/MEK/ERK pathway, which induces the glycogen synthase kinase-3β-dependent activation of the transcription factor, cAMP response element-binding protein, which is responsible for PKG-Iβ overexpression in H -ras<sup>-/-</sup> mouse embryonic fibroblasts. This study demonstrates that H- ras deletion protects against AngII-induced cardiac remodeling, possibly via a mechanism in which PKG-Iβ overexpression could play a partial role, and points to H-Ras and/or downstream proteins as potential therapeutic targets in cardiovascular disease.-Martín-Sánchez, P., Luengo, A., Griera, M., Orea, M. J., López-Olañeta, M., Chiloeches, A., Lara-Pezzi, E., de Frutos, S., Rodríguez-Puyol, M., Calleros, L., Rodríguez-Puyol, D. H- ras deletion protects against angiotensin II-induced arterial hypertension and cardiac remodeling through protein kinase G-Iβ pathway activation."	"The Drosophila foraging gene human orthologue PRKG1 predicts individual differences in the effects of early adversity on maternal sensitivity. There is variation in the extent to which childhood adverse experience affects adult individual differences in maternal behavior. Genetic variation in the animal foraging gene, which encodes a cGMP-dependent protein kinase, contributes to variation in the responses of adult fruit flies, Drosophila melanogaster, to early life adversity and is also known to play a role in maternal behavior in social insects. Here we investigate genetic variation in the human foraging gene (PRKG1) as a predictor of individual differences in the effects of early adversity on maternal behavior in two cohorts. We show that the PRKG1 genetic polymorphism rs2043556 associates with maternal sensitivity towards their infants. We also show that rs2043556 moderates the association between self-reported childhood adversity of the mother and her later maternal sensitivity. Mothers with the TT allele of rs2043556 appeared buffered from the effects of early adversity, whereas mothers with the presence of a C allele were not. Our study used the Toronto Longitudinal Cohort (N=288 mother-16 month old infant pairs) and the Maternal Adversity and Vulnerability and Neurodevelopment Cohort (N=281 mother-18 month old infant pairs). Our findings expand the literature on the contributions of both genetics and gene-environment interactions to maternal sensitivity, a salient feature of the early environment relevant for child neurodevelopment."	"Loss of nitric oxide-mediated inhibition of purine neurotransmitter release in the colon in the absence of interstitial cells of Cajal. Regulation of colonic motility depends on the integrity of enteric inhibitory neurotransmission mediated by nitric oxide (NO), purine neurotransmitters, and neuropeptides. Intramuscular interstitial cells of Cajal (ICC-IM) and platelet-derived growth factor receptor-α-positive (PDGFRα<sup>+</sup>) cells are involved in generating responses to NO and purine neurotransmitters, respectively. Previous studies have suggested a decreased nitrergic and increased purinergic neurotransmission in Kit<sup>W</sup>/Kit<sup>W-v</sup> (W/W<sup>v</sup> ) mice that display lesions in ICC-IM along the gastrointestinal tract. However, contributions of NO to these phenotypes have not been evaluated. We used small-chamber superfusion assays and HPLC to measure the spontaneous and electrical field stimulation (EFS)-evoked release of nicotinamide adenine dinucleotide (NAD<sup>+</sup>)/ADP-ribose, uridine adenosine tetraphosphate (Up4A), adenosine 5'-triphosphate (ATP), and metabolites from the tunica muscularis of human, monkey, and murine colons and circular muscle of monkey colon, and we tested drugs that modulate NO levels or blocked NO receptors. NO inhibited EFS-evoked release of purines in the colon via presynaptic neuromodulation. Colons from W/W<sup>v</sup>, Nos1<sup>-/-</sup> , and Prkg1<sup>-/-</sup> mice displayed augmented neural release of purines that was likely due to altered nitrergic neuromodulation. Colons from W/W<sup>v</sup> mice demonstrated decreased nitrergic and increased purinergic relaxations in response to nerve stimulation. W/W<sup>v</sup> mouse colons demonstrated reduced Nos1 expression and reduced NO release. Our results suggest that enhanced purinergic neurotransmission may compensate for the loss of nitrergic neurotransmission in muscles with partial loss of ICC. The interactions between nitrergic and purinergic neurotransmission in the colon provide novel insight into the role of neurotransmitters and effector cells in the neural regulation of gastrointestinal motility.NEW &amp; NOTEWORTHY This is the first study investigating the role of nitric oxide (NO) and intramuscular interstitial cells of Cajal (ICC-IM) in modulating neural release of purines in colon. We found that NO inhibited release of purines in human, monkey, and murine colons and that colons from Kit<sup>W</sup>/Kit<sup>W-v</sup> (W/W<sup>v</sup> ) mice, which present with partial loss of ICC-IM, demonstrated augmented neural release of purines. Interactions between nitrergic and purinergic neurotransmission may affect motility in disease conditions with ICC-IM deficiencies."	"Genetic correlation and genome-wide association study (GWAS) of the length of productive life, days open, and 305-days milk yield in crossbred Holstein dairy cattle. In this study, we estimated the genetic parameters and identified the putative quantitative trait loci (QTL) associated with the length of productive life (LPL), days open (DO), and 305-day milk yield for the first lactation (FM305) of crossbred Holstein dairy cattle. Data comprising 4,739 records collected between 1986 and 2004 were used to estimate the variance-covariance components using the multiple-trait animal linear mixed models based on the average information restricted maximum likelihood (AI-REML) algorithm. Thirty-six animals were genotyped using the Illumina BovineSNP50 Bead Chip [&gt;50,000 single nucleotide polymorphisms (SNPs)] to identify the putative QTL in a genome-wide association study. The heritability of the production trait FM305 was 0.25 and that of the functional traits, LPL and DO, was low (0.10 and 0.06, respectively). The genetic correlation estimates demonstrated favorable negative correlations between LPL and DO (-0.02). However, we observed a favorable positive correlation between FM305 and LPL (0.43) and an unfavorable positive correlation between FM305 and DO (0.1). The GWAS results indicated that 23 QTLs on bovine chromosomes 1, 4, 5, 8, 15, 26, and X were associated with the traits of interest, and the putative QTL regions were identified within seven genes (SYT1, DOCK11, KLHL13, IL13RA1, PRKG1, GNA14, and LRRC4C). In conclusion, the heritability estimates of the LPL and DO were low. Therefore, the approach of multiple-trait selection indexes should be applied, and the QTL identified here should be considered for use in marker-assisted selection in the future."	"A global analysis of CNVs in swine using whole genome sequence data and association analysis with fatty acid composition and growth traits. Copy number variations (CNVs) are important genetic variants complementary to SNPs, and can be considered as biomarkers for some economically important traits in domestic animals. In the present study, a genomic analysis of porcine CNVs based on next-generation sequencing data was carried out to identify CNVs segregating in an Iberian x Landrace backcross population and study their association with fatty acid composition and growth-related traits. A total of 1,279 CNVs, including duplications and deletions, were detected, ranging from 106 to 235 CNVs across samples, with an average of 183 CNVs per sample. Moreover, we detected 540 CNV regions (CNVRs) containing 245 genes. Functional annotation suggested that these genes possess a great variety of molecular functions and may play a role in production traits in commercial breeds. Some of the identified CNVRs contained relevant functional genes (e.g., CLCA4, CYP4X1, GPAT2, MOGAT2, PLA2G2A and PRKG1, among others). The variation in copy number of four of them (CLCA4, GPAT2, MOGAT2 and PRKG1) was validated in 150 BC1_LD (25% Iberian and 75% Landrace) animals by qPCR. Additionally, their contribution regarding backfat and intramuscular fatty acid composition and growth-related traits was analyzed. Statistically significant associations were obtained for CNVR112 (GPAT2) for the C18:2(n-6)/C18:3(n-3) ratio in backfat and carcass length, among others. Notably, GPATs are enzymes that catalyze the first step in the biosynthesis of both triglycerides and glycerophospholipids, suggesting that this CNVR may contribute to genetic variation in fatty acid composition and growth traits. These findings provide useful genomic information to facilitate the further identification of trait-related CNVRs affecting economically important traits in pigs."	"Genetic susceptibility to salt-sensitive hypertension in a Han Chinese population: a validation study of candidate genes. Salt-sensitive hypertension is a complex disease associated with genetic factors. This study aimed to identify the association between 29 candidate single-nucleotide polymorphisms and salt-sensitive hypertension in a Han Chinese population. Sixty-three participants with salt-sensitive hypertension and 279 controls with salt-resistant hypertension were recruited. A modified Sullivan's acute oral saline load and diuresis shrinkage test was used to detect blood pressure salt sensitivity. Lifestyle risk factors were obtained via a questionnaire. We used the Sequenom Mass ARRAY Platform to genotype the 29 candidate single-nucleotide polymorphisms, and the cumulative genetic risk score was used to evaluate the joint genetic effect. The frequencies of eight genotypes and five alleles in CYP11B2, PRKG1, ADRB2, FGF5, SLC8A1 and BCAT1 genes differed significantly between the salt-sensitive and salt-resistant hypertension groups. Multiple logistic regression adjusted for age and sex showed that subjects carrying rs7897633-A (PRKG1), rs434082-A (SLC8A1) and rs1042714-G (ADRB2) risk alleles had 1.83-, 2.84- and 2.40-fold increased risk for salt-sensitive hypertension, respectively. Combined risk allele analysis using the cumulative genetic risk score showed that subjects carrying one risk had 2.30-fold increased risk, and those carrying 2-4 risks had 3.32-fold increased risk for salt-sensitive hypertension. Among 29 candidate single-nucleotide polymorphisms, rs7897633-A in PRKG1, rs434082-A in SLC8A1 and rs1042714-G in ADRB2 were significantly associated with salt-sensitive hypertension. A joint effect of single-nucleotide polymorphisms from different pathways contributed to a high risk of salt-sensitive hypertension."	"Two pathways of rod photoreceptor cell death induced by elevated cGMP. Cyclic-GMP is a second messenger in phototransduction, a G-protein signaling cascade that conveys photon absorption by rhodopsin to a change in current at the rod photoreceptor outer segment plasma membrane. Basal cGMP level is strictly controlled by the opposing actions of phosphodiesterase (PDE6) and retinal guanylyl cyclases (GCs), and mutations in genes that disrupt cGMP homeostasis leads to retinal degeneration in humans through mechanisms that are incompletely understood. The purpose of this study is to examine two distinct cellular targets of cGMP: the cGMP-gated (CNG) channels and protein kinase G (PRKG), and how each may contribute to rod cell death. Using a mouse genetic approach, we found that abolishing expression of CNG channels prolongs rod survival caused by elevated cGMP in a PDE6 mutant mouse model. This observation supports the use of channel blockers to delay rod death, which is expected to prolong useful vision through enhanced cone survival. However, the absence of CNG channel alone also caused abnormal cGMP accumulation. In a mouse model of CNG channel loss-of-function, abolishing PRKG1 expression had a long-lasting effect in promoting rod cell survival. Our data strongly implicate two distinct cGMP-mediated cell death pathways, and suggest that therapeutic designs targeting both pathways will be more effective at slowing photoreceptor cell death caused by elevated cGMP."	"An algorithm for direct causal learning of influences on patient outcomes. This study aims at developing and introducing a new algorithm, called direct causal learner (DCL), for learning the direct causal influences of a single target. We applied it to both simulated and real clinical and genome wide association study (GWAS) datasets and compared its performance to classic causal learning algorithms. The DCL algorithm learns the causes of a single target from passive data using Bayesian-scoring, instead of using independence checks, and a novel deletion algorithm. We generate 14,400 simulated datasets and measure the number of datasets for which DCL correctly and partially predicts the direct causes. We then compare its performance with the constraint-based path consistency (PC) and conservative PC (CPC) algorithms, the Bayesian-score based fast greedy search (FGS) algorithm, and the partial ancestral graphs algorithm fast causal inference (FCI). In addition, we extend our comparison of all five algorithms to both a real GWAS dataset and real breast cancer datasets over various time-points in order to observe how effective they are at predicting the causal influences of Alzheimer's disease and breast cancer survival. DCL consistently outperforms FGS, PC, CPC, and FCI in discovering the parents of the target for the datasets simulated using a simple network. Overall, DCL predicts significantly more datasets correctly (McNemar's test significance: p&lt;0.0001) than any of the other algorithms for these network types. For example, when assessing overall performance (simple and complex network results combined), DCL correctly predicts approximately 1400 more datasets than the top FGS method, 1600 more datasets than the top CPC method, 4500 more datasets than the top PC method, and 5600 more datasets than the top FCI method. Although FGS did correctly predict more datasets than DCL for the complex networks, and DCL correctly predicted only a few more datasets than CPC for these networks, there is no significant difference in performance between these three algorithms for this network type. However, when we use a more continuous measure of accuracy, we find that all the DCL methods are able to better partially predict more direct causes than FGS and CPC for the complex networks. In addition, DCL consistently had faster runtimes than the other algorithms. In the application to the real datasets, DCL identified rs6784615, located on the NISCH gene, and rs10824310, located on the PRKG1 gene, as direct causes of late onset Alzheimer's disease (LOAD) development. In addition, DCL identified ER category as a direct predictor of breast cancer mortality within 5 years, and HER2 status as a direct predictor of 10-year breast cancer mortality. These predictors have been identified in previous studies to have a direct causal relationship with their respective phenotypes, supporting the predictive power of DCL. When the other algorithms discovered predictors from the real datasets, these predictors were either also found by DCL or could not be supported by previous studies. Our results show that DCL outperforms FGS, PC, CPC, and FCI in almost every case, demonstrating its potential to advance causal learning. Furthermore, our DCL algorithm effectively identifies direct causes in the LOAD and Metabric GWAS datasets, which indicates its potential for clinical applications."	"A genome-wide gene-by-trauma interaction study of alcohol misuse in two independent cohorts identifies PRKG1 as a risk locus. Traumatic life experiences are associated with alcohol use problems, an association that is likely to be moderated by genetic predisposition. To understand these interactions, we conducted a gene-by-environment genome-wide interaction study (GEWIS) of alcohol use problems in two independent samples, the Army STARRS (STARRS, N=16 361) and the Yale-Penn (N=8084) cohorts. Because the two cohorts were assessed using different instruments, we derived separate dimensional alcohol misuse scales and applied a proxy-phenotype study design. In African-American subjects, we identified an interaction of PRKG1 rs1729578 with trauma exposure in the STARRS cohort and replicated its interaction with trauma exposure in the Yale-Penn cohort (discovery-replication meta-analysis: z=5.64, P=1.69 × 10<sup>-8</sup>). PRKG1 encodes cyclic GMP-dependent protein kinase 1, which is involved in learning, memory and circadian rhythm regulation. Considering the loci identified in stage-1 that showed same effect directions in stage-2, the gene ontology (GO) enrichment analysis showed several significant results, including calcium-activated potassium channels (GO:0016286; P=2.30 × 10<sup>-5</sup>), cognition (GO:0050890; P=1.90 × 10<sup>-6</sup>), locomotion (GO:0040011; P=6.70 × 10<sup>-5</sup>) and Stat3 protein regulation (GO:0042517; P=6.4 × 10<sup>-5</sup>). To our knowledge, this is the largest GEWIS performed in psychiatric genetics, and the first GEWIS examining risk for alcohol misuse. Our results add to a growing body of literature highlighting the dynamic impact of experience on individual genetic risk."	"Whole genome scan reveals the genetic signature of African Ankole cattle breed and potential for higher quality beef. Africa is home to numerous cattle breeds whose diversity has been shaped by subtle combinations of human and natural selection. African Sanga cattle are an intermediate type of cattle resulting from interbreeding between Bos taurus and Bos indicus subspecies. Recently, research has asserted the potential of Sanga breeds for commercial beef production with better meat quality as compared to Bos indicus breeds. Here, we identified meat quality related gene regions that are positively selected in Ankole (Sanga) cattle breeds as compared to indicus (Boran, Ogaden, and Kenana) breeds using cross-population (XP-EHH and XP-CLR) statistical methods. We identified 238 (XP-EHH) and 213 (XP-CLR) positively selected genes, of which 97 were detected from both statistics. Among the genes obtained, we primarily reported those involved in different biological process and pathways associated with meat quality traits. Genes (CAPZB, COL9A2, PDGFRA, MAP3K5, ZNF410, and PKM2) involved in muscle structure and metabolism affect meat tenderness. Genes (PLA2G2A, PARK2, ZNF410, MAP2K3, PLCD3, PLCD1, and ROCK1) related to intramuscular fat (IMF) are involved in adipose metabolism and adipogenesis. MB and SLC48A1 affect meat color. In addition, we identified genes (TIMP2, PKM2, PRKG1, MAP3K5, and ATP8A1) related to feeding efficiency. Among the enriched Gene Ontology Biological Process (GO BP) terms, actin cytoskeleton organization, actin filament-based process, and protein ubiquitination are associated with meat tenderness whereas cellular component organization, negative regulation of actin filament depolymerization and negative regulation of protein complex disassembly are involved in adipocyte regulation. The MAPK pathway is responsible for cell proliferation and plays an important role in hyperplastic growth, which has a positive effect on meat tenderness. Results revealed several candidate genes positively selected in Ankole cattle in relation to meat quality characteristics. The genes identified are involved in muscle structure and metabolism, and adipose metabolism and adipogenesis. These genes help in the understanding of the biological mechanisms controlling beef quality characteristics in African Ankole cattle. These results provide a basis for further research on the genomic characteristics of Ankole and other Sanga cattle breeds for quality beef."	"Brown Adipose Tissue Regulates Small Artery Function Through NADPH Oxidase 4-Derived Hydrogen Peroxide and Redox-Sensitive Protein Kinase G-1α. Biomedical interest in brown adipose tissue (BAT) has increased since the discovery of functionally active BAT in adult humans. Although white adipose tissue (WAT) influences vascular function, vascular effects of BAT are elusive. Thus, we investigated the regulatory role and putative vasoprotective effects of BAT, focusing on hydrogen peroxide, nicotinamide adenine dinucleotide phosphate oxidase 4 (Nox4), and redox-sensitive signaling. Vascular reactivity was assessed in wild-type and Nox4-knockout mice (Nox4<sup>-/-</sup>) by wire myography in the absence and presence of perivascular adipose tissue of different phenotypes from various adipose depots: (1) mixed WAT/BAT (inguinal adipose tissue) and (2) WAT (epididymal visceral fat) and BAT (intrascapular fat). In wild-type mice, epididymal visceral fat and perivascular adipose tissue increased EC50 to noradrenaline without affecting maximum contraction. BAT increased EC50 and significantly decreased maximum contraction, which were prevented by a hydrogen peroxide scavenger (polyethylene glycated catalase) and a specific cyclic GMP-dependent protein kinase G type-1α inhibitor (DT-3), but not by inhibition of endothelial nitric oxide synthase or guanylate cyclase. BAT induced dimerization of cyclic GMP-dependent protein kinase G type-1α and reduced phosphorylation of myosin light chain phosphatase subunit 1 and myosin light chain 20. BAT from Nox4-knockout mice displayed reduced hydrogen peroxide levels and no anticontractile effects. Perivascular adipose tissue from β3 agonist-treated mice displayed browned perivascular adipose tissue and an increased anticontractile effect. We identify a novel vasoprotective action of BAT through an anticontractile effect that is mechanistically different to WAT. Specifically, BAT, via Nox4-derived hydrogen peroxide, induces cyclic GMP-dependent protein kinase G type-1α activation, resulting in reduced vascular contractility. BAT may constitute an interesting therapeutic target to restore vascular function and prevent vascular complications in cardiovascular diseases."	"Aging has the opposite effect on cAMP and cGMP circadian variations in rat Leydig cells. The Leydig cell physiology displays a circadian rhythm driven by a complex interaction of the reproductive axis hormones and circadian system. The final output of this regulatory process is circadian pattern of steroidogenic genes expression and testosterone production. Aging gradually decreases robustness of rhythmic testosterone secretion without change in pattern of LH secretion. Here, we analyzed effect of aging on circadian variation of cAMP and cGMP signaling in Leydig cells. Results showed opposite effect of aging on cAMP and cGMP daily variation. Reduced amplitude of cAMP circadian oscillation was probably associated with changed expression of genes involved in cAMP production (increased circadian pattern of Adcy7, Adcy9, Adcy10 and decreased Adcy3); cAMP degradation (increased Pde4a, decreased Pde8b, canceled rhythm of Pde4d, completely reversed circadian pattern of Pde7b and Pde8a); and circadian expression of protein kinase A subunits (Prkac/PRKAC and Prkar2a). Aging stimulates expression of genes responsible for cGMP production (Nos2, Gucy1a3 and Gucy1b3/GUCYB3) and degradation (Pde5a, Pde6a and Pde6h) but the overall net effect is elevation of cGMP circadian oscillations in Leydig cells. In addition, the expression of cGMP-dependent kinase, Prkg1/PRKG1 is up-regulated. It seems that aging potentiate cGMP- and reduce cAMP-signaling in Leydig cells. Since both signaling pathways affect testosterone production and clockwork in the cells, further insights into these signaling pathways will help to unravel disorders linked to the circadian timing system, aging and reproduction."	"Altered Smooth Muscle Cell Force Generation as a Driver of Thoracic Aortic Aneurysms and Dissections. The importance of maintaining contractile function in aortic smooth muscle cells (SMCs) is evident by the fact that heterozygous mutations in the major structural proteins or kinases controlling contraction lead to the formation of aneurysms of the ascending thoracic aorta that predispose to life-threatening aortic dissections. Force generation by SMC requires ATP-dependent cyclic interactions between filaments composed of SMC-specific isoforms of α-actin (encoded by ACTA2) and myosin heavy chain (MYH11). ACTA2 and MYH11 mutations are predicted or have been shown to disrupt this cyclic interaction predispose to thoracic aortic disease. Movement of the myosin motor domain is controlled by phosphorylation of the regulatory light chain on the myosin filament, and loss-of-function mutations in the dedicated kinase for this phosphorylation, myosin light chain kinase (MYLK) also predispose to thoracic aortic disease. Finally, a mutation in the cGMP-activated protein kinase (PRKG1) results in constitutive activation of the kinase in the absence of cGMP, thus driving SMC relaxation in part through increased dephosphorylation of the regulatory light chain and predisposes to thoracic aortic disease. Furthermore, SMCs cannot generate force without connections to the extracellular matrix through focal adhesions, and mutations in the major protein in the extracellular matrix, fibrillin-1, linking SMCs to the matrix also cause thoracic aortic disease in individuals with Marfan syndrome. Thus, disruption of the ability of the aortic SMC to generate force through the elastin-contractile units in response to pulsatile blood flow may be a primary driver for thoracic aortic aneurysms and dissections."	"Tetrandrine prevents monocrotaline-induced pulmonary arterial hypertension in rats through regulation of the protein expression of inducible nitric oxide synthase and cyclic guanosine monophosphate-dependent protein kinase type 1. Pulmonary arterial hypertension (PAH) is a fatal disease characterized by a persistent elevation of pulmonary artery pressure and ventricular hypertrophy. Tetrandrine is a bisbenzylisoquinoline alkaloid that can decrease blood pressure, inhibit the proliferation of vascular smooth muscle cells, and block cardiac hypertrophy, but whether it has a therapeutic effect on PAH remains poorly defined. This study was undertaken to investigate the efficacy of tetrandrine on PAH. Forty-eight male Sprague-Dawley rats were randomly and equally divided into four groups. The control group was injected with normal saline; the others were injected with monocrotaline (MCT) to induce PAH, then treated with saline, tetrandrine, and vardenafil, respectively, from day 21 to day 42. On day 43, we measured the mean pulmonary artery pressure under general anesthesia, dissected the rat, and calculated the right ventricular hypertrophy index [right ventricle/(left ventricle plus septum)]. Later we observed the changes in the pulmonary vascular wall; measured the expression of cyclic guanosine monophosphate-dependent protein kinase type 1 and inducible nitric oxide synthase; measured the levels of superoxide dismutase, glutathione, malondialdehyde, and catalase; and then compared the results among groups. Compared with the MCT group, rats treated with tetrandrine had attenuated mean pulmonary artery pressure (20.48 ± 1.49 vs 30.07 ± 1.51; P &lt; .01) and right ventricular hypertrophy index (49.19 ± 2.45 vs 68.50 ± 1.95; P &lt; .01), inhibited proliferation of pulmonary artery smooth muscle cells, and improved endothelial function. Tetrandrine also upregulated the expression of protein kinase type 1 (90.86 ± 1.95 vs 67.34 ± 1.50; P &lt; .01); downregulated the expression of inducible nitric oxide synthase (74.76 ± 1.48 vs 80.19 ± 0.28; P &lt; .01); increased levels of superoxide dismutase (245.54 ± 12.98 vs 166.16 ± 21.42; P &lt; .01), glutathione (0.699 ± 0.032 vs 0.514 ± 0.056; P &lt; .01), and catalase (32.13 ± 2.33 vs 27.19 ± 2.72; P &lt; .01); and decreased malondialdehyde (1.027 ± 0.039 vs 1.462 ± 0.055; P &lt; .01). Tetrandrine alleviated MCT-induced PAH through regulation of nitric oxide signaling pathway and antioxidant and antiproliferation effects."	"Reversibility of glioma stem cells' phenotypes explains their complex in vitro and in vivo behavior: Discovery of a novel neurosphere-specific enzyme, cGMP-dependent protein kinase 1, using the genomic landscape of human glioma stem cells as a discovery tool. Glioma cells grow in two phenotypic forms, as adherent monolayers and as free floating &quot;neurospheres/tumorspheres&quot;, using specific media supplements. Whether each phenotype is irreversible remains unknown. Herein we show that both states are reversible using patient derived glioblastoma cell cultures (i.e., HF2303, IN859, MGG8, IN2045). Both phenotypic states differ in proliferation rate, invasion, migration, chemotaxis and chemosensitivity. We used microarrays to characterize gene expression across the patient derived glioblastoma cell cultures, to find specific inhibitors of the sphere population. Traditional chemotherapeutics (i.e., doxorubicin or paclitaxel) inhibit rapidly dividing adherent cells; it has been more challenging to inhibit the growth of the sphere phenotype. PRKG1, known to induce apoptosis when activated, is increased in all patient derived glioblastoma spheres. Stimulation of PRKG1 activity preferentially reduced cell viability in the sphere phenotype. Computational network and gene ontology analysis identified novel potential target genes linked to the PRKG1 expression node."	"PRKG1 and genetic diagnosis of early-onset thoracic aortic disease. The 20% of thoracic aortic aneurysms and dissections independent from the main connective tissue syndromes and expected to be familial has gained importance over the past years. The more frequent pattern of inheritance of these nonsyndromic cases is autosomal dominant with incomplete penetrance and variable expression. Although many candidate genes exist, unresolved familial cases suggest still unravelled genetic variation. The main purpose of this study was to establish the genetic diagnosis of one of those. To begin with, we applied a candidate gene approach based on both traditional and a customized massive parallel sequencing panel, followed by Illumina HiSeq 2000 whole exome sequencing of four family members affected by early-onset thoracic aortic disease and two unaffected relatives. We prioritized whole exome sequencing results based on variant location, type and frequency in general population databases and performed segregation analysis in 14 family members using traditional sequencing. After the negative results we obtained with candidate gene approaches, the analysis and prioritization of whole exome sequencing results brought out the heterozygote c.530G&gt;A:p.Arg177Gln PRKG1 variant (NM_001098512), located in one of the aortic smooth muscle cell contractile apparatus genes. This candidate variant segregated with thoracic aortic disease, as it was present in seven affected and absent in five unaffected family members, further supporting its causality. This was the second time PRKG1 was associated with thoracic aortic disease, highlighting and reaffirming it as a strong candidate for gene-based diagnosis of nonsyndromic early-onset cases."	"Hereditary Influence in Thoracic Aortic Aneurysm and Dissection. Thoracic aortic aneurysm is a potentially life-threatening condition in that it places patients at risk for aortic dissection or rupture. However, our modern understanding of the pathogenesis of thoracic aortic aneurysm is quite limited. A genetic predisposition to thoracic aortic aneurysm has been established, and gene discovery in affected families has identified several major categories of gene alterations. The first involves mutations in genes encoding various components of the transforming growth factor beta (TGF-β) signaling cascade (FBN1, TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3 and SKI), and these conditions are known collectively as the TGF-β vasculopathies. The second set of genes encode components of the smooth muscle contractile apparatus (ACTA2, MYH11, MYLK, and PRKG1), a group called the smooth muscle contraction vasculopathies. Mechanistic hypotheses based on these discoveries have shaped rational therapies, some of which are under clinical evaluation. This review discusses published data on genes involved in thoracic aortic aneurysm and attempts to explain divergent hypotheses of aneurysm origin."	"Validation of Reference Genes for Quantitative Real-Time PCR in Bovine PBMCs Transformed and Non-transformed by Theileria annulata. Theileria annulata is a tick-borne intracellular protozoan parasite that causes tropical theileriosis, a fatal bovine lymphoproliferative disease. The parasite predominantly invades bovine B lymphocytes and macrophages and induces host cell transformation by a mechanism that is not fully comprehended. Analysis of signaling pathways by quantitative real-time PCR (qPCR) could be a highly efficient means to understand this transformation mechanism. However, accurate analysis of qPCR data relies on selection of appropriate reference genes for normalization, yet few papers on T. annulata contain evidence of reference gene validation. We therefore used the geNorm and NormFinder programs to evaluate the stability of 5 candidate reference genes; 18S rRNA, glyceraldehyde-3-phosphate dehydrogenase (GAPDH), ACTB (β-actin), PRKG1 (protein kinase cGMP-dependent, type I) and TATA box binding protein (TBP). The results showed that 18S rRNA was the reference gene most stably expressed in bovine PBMCs transformed and non-transformed with T. annulata, followed by GAPDH and TBP. While 18S rRNA and GAPDH were the best combination, these 2 genes were chosen as references to study signaling pathways involved in the transformation mechanism of T. annulata. "	"Prediction of Genes Related to Positive Selection Using Whole-Genome Resequencing in Three Commercial Pig Breeds. Selective sweep can cause genetic differentiation across populations, which allows for the identification of possible causative regions/genes underlying important traits. The pig has experienced a long history of allele frequency changes through artificial selection in the domestication process. We obtained an average of 329,482,871 sequence reads for 24 pigs from three pig breeds: Yorkshire (n = 5), Landrace (n = 13), and Duroc (n = 6). An average read depth of 11.7 was obtained using whole-genome resequencing on an Illumina HiSeq2000 platform. In this study, cross-population extended haplotype homozygosity and cross-population composite likelihood ratio tests were implemented to detect genes experiencing positive selection for the genome-wide resequencing data generated from three commercial pig breeds. In our results, 26, 7, and 14 genes from Yorkshire, Landrace, and Duroc, respectively were detected by two kinds of statistical tests. Significant evidence for positive selection was identified on genes ST6GALNAC2 and EPHX1 in Yorkshire, PARK2 in Landrace, and BMP6, SLA-DQA1, and PRKG1 in Duroc.These genes are reportedly relevant to lactation, reproduction, meat quality, and growth traits. To understand how these single nucleotide polymorphisms (SNPs) related positive selection affect protein function, we analyzed the effect of non-synonymous SNPs. Three SNPs (rs324509622, rs80931851, and rs80937718) in the SLA-DQA1 gene were significant in the enrichment tests, indicating strong evidence for positive selection in Duroc. Our analyses identified genes under positive selection for lactation, reproduction, and meat-quality and growth traits in Yorkshire, Landrace, and Duroc, respectively. "	"Structure of the Elastin-Contractile Units in the Thoracic Aorta and How Genes That Cause Thoracic Aortic Aneurysms and Dissections Disrupt This Structure. The medial layer of the aorta confers elasticity and strength to the aortic wall and is composed of alternating layers of smooth muscle cells (SMCs) and elastic fibres. The SMC elastin-contractile unit is a structural unit that links the elastin fibres to the SMCs and is characterized by the following: (1) layers of elastin fibres that are surrounded by microfibrils; (2) microfibrils that bind to the integrin receptors in focal adhesions on the cell surface of the SMCs; and (3) SMC contractile filaments that are linked to the focal adhesions on the inner side of the membrane. The genes that are altered to cause thoracic aortic aneurysms and aortic dissections encode proteins involved in the structure or function of the SMC elastin-contractile unit. Included in this gene list are the genes encoding protein that are structural components of elastin fibres and microfibrils, FBN1, MFAP5, ELN, and FBLN4. Also included are genes that encode structural proteins in the SMC contractile unit, including ACTA2, which encodes SMC-specific α-actin and MYH11, which encodes SMC-specific myosin heavy chain, along with MYLK and PRKG1, which encode kinases that control SMC contraction. Finally, mutations in the gene encoding the protein linking integrin receptors to the contractile filaments, FLNA, also predispose to thoracic aortic disease. Thus, these data suggest that functional SMC elastin-contractile units are important for maintaining the structural integrity of the aorta. "	"Novel kinase fusion transcripts found in endometrial cancer. Recent advances in RNA-sequencing technology have enabled the discovery of gene fusion transcripts in the transcriptome of cancer cells. However, it remains difficult to differentiate the therapeutically targetable fusions from passenger events. We have analyzed RNA-sequencing data and DNA copy number data from 25 endometrial cancer cell lines to identify potential therapeutically targetable fusion transcripts, and have identified 124 high-confidence fusion transcripts, of which 69% are associated with gene amplifications. As targetable fusion candidates, we focused on three in-frame kinase fusion transcripts that retain a kinase domain (CPQ-PRKDC, CAPZA2-MET, and VGLL4-PRKG1). We detected only CPQ-PRKDC fusion transcript in three of 122 primary endometrial cancer tissues. Cell proliferation of the fusion-positive cell line was inhibited by knocking down the expression of wild-type PRKDC but not by blocking the CPQ-PRKDC fusion transcript expression. Quantitative real-time RT-PCR demonstrated that the expression of the CPQ-PRKDC fusion transcript was significantly lower than that of wild-type PRKDC, corresponding to a low transcript allele fraction of this fusion, based on RNA-sequencing read counts. In endometrial cancers, the CPQ-PRKDC fusion transcript may be a passenger aberration related to gene amplification. Our findings suggest that transcript allele fraction is a useful predictor to find bona-fide therapeutic-targetable fusion transcripts. "	"The mutational landscape of cutaneous T cell lymphoma and Sézary syndrome. Sézary syndrome is a leukemic and aggressive form of cutaneous T cell lymphoma (CTCL) resulting from the malignant transformation of skin-homing central memory CD4(+) T cells. Here we performed whole-exome sequencing of tumor-normal sample pairs from 25 patients with Sézary syndrome and 17 patients with other CTCLs. These analyses identified a distinctive pattern of somatic copy number alterations in Sézary syndrome, including highly prevalent chromosomal deletions involving the TP53, RB1, PTEN, DNMT3A and CDKN1B tumor suppressors. Mutation analysis identified a broad spectrum of somatic mutations in key genes involved in epigenetic regulation (TET2, CREBBP, KMT2D (MLL2), KMT2C (MLL3), BRD9, SMARCA4 and CHD3) and signaling, including MAPK1, BRAF, CARD11 and PRKG1 mutations driving increased MAPK, NF-κB and NFAT activity upon T cell receptor stimulation. Collectively, our findings provide new insights into the genetics of Sézary syndrome and CTCL and support the development of personalized therapies targeting key oncogenically activated signaling pathways for the treatment of these diseases. "	"Routine Genetic Testing for Thoracic Aortic Aneurysm and Dissection in a Clinical Setting. Hereditary factors play an important etiologic role in thoracic aortic aneurysm and dissection (TAAD), with a number of genes proven to predispose to this condition. We initiated a clinical program for routine genetic testing of individuals for TAAD by whole exome sequencing (WES). Here we present our initial results. The WES was performed in 102 patients (mean age 56.8 years; range 13 to 83; 70 males [68.6%]) with TAAD. The following 21-gene panel was tested by WES: ACTA2, ADAMTS10, COL1A1, COL1A2, COL3A1, COL5A1, COL5A2, ELN, FBLN4, FLNA, FBN1, FBN2, MYH11, MYLK, NOTCH1, PRKG1, SLC2A10, SMAD3, TGFB2, TGFBR1, TGFBR2. Seventy-four patients (72.5%) had no medically important genetic alterations. Four patients (3.9%) had a deleterious mutation identified in the FBN1, COL5A1, MYLK, and FLNA genes. Twenty-two (21.6%) previously unreported suspicious variants of unknown significance were identified in 1 or more of the following genes: FBN1 (n = 5); MYH11 (n = 4); ACTA2 (n = 2); COL1A1 (n = 2); TGFBR1 (n = 2); COL3A1 (n = 1); COL5A1 (n = 1); COL5A2 (n = 1); FLNA (n = 1); NOTCH1 (n = 1); PRKG1 (n = 1); and TGFBR3 (n = 1). Identified mutations had implications for clinical management. Routine genetic screening of patients with TAAD provides information that enables genetically personalized care and permits identification of novel mutations responsible for aortic pathology. Analysis of large data sets of variants of unknown significance that include associated clinical features will help define the mutational spectrum of known genes underlying this phenotype and potential identify new candidate loci."	"EphA7 regulates spiral ganglion innervation of cochlear hair cells. During the development of periphery auditory circuitry, spiral ganglion neurons (SGNs) form a spatially precise pattern of innervation of cochlear hair cells (HCs), which is an essential structural foundation for central auditory processing. However, molecular mechanisms underlying the developmental formation of this precise innervation pattern remain not well understood. Here, we specifically examined the involvement of Eph family members in cochlear development. By performing RNA-sequencing for different types of cochlear cell, in situ hybridization, and immunohistochemistry, we found that EphA7 was strongly expressed in a large subset of SGNs. In EphA7 deletion mice, there was a reduction in the number of inner radial bundles originating from SGNs and projecting to HCs as well as in the number of ribbon synapses on inner hair cells (IHCs), as compared with wild-type or heterozygous mutant mice, attributable to fewer type I afferent fibers. The overall activity of the auditory nerve in EphA7 deletion mice was also reduced, although there was no significant change in the hearing intensity threshold. In vitro analysis further suggested that the reduced innervation of HCs by SGNs could be attributed to a role of EphA7 in regulating outgrowth of SGN neurites as knocking down EphA7 in SGNs resulted in diminished SGN fibers. In addition, suppressing the activity of ERK1/2, a potential downstream target of EphA7 signaling, either with specific inhibitors in cultured explants or by knocking out Prkg1, also resulted in reduced SGN fibers. Together, our results suggest that EphA7 plays an important role in the developmental formation of cochlear innervation pattern through controlling SGN fiber ontogeny. Such regulation may contribute to the salience level of auditory signals presented to the central auditory system."	"Structures of cGMP-Dependent Protein Kinase (PKG) Iα Leucine Zippers Reveal an Interchain Disulfide Bond Important for Dimer Stability. cGMP-dependent protein kinase (PKG) Iα is a central regulator of smooth muscle tone and vasorelaxation. The N-terminal leucine zipper (LZ) domain dimerizes and targets PKG Iα by interacting with G-kinase-anchoring proteins. The PKG Iα LZ contains C42 that is known to form a disulfide bond upon oxidation and to activate PKG Iα. To understand the molecular details of the PKG Iα LZ and C42-C42' disulfide bond, we determined crystal structures of the PKG Iα wild-type (WT) LZ and C42L LZ. Our data demonstrate that the C42-C42' disulfide bond dramatically stabilizes PKG Iα and that the C42L mutant mimics the oxidized WT LZ structurally. "	"Genome-wide association study of posttraumatic stress disorder in a cohort of Iraq-Afghanistan era veterans. Posttraumatic stress disorder (PTSD) is a psychiatric disorder that can develop after experiencing traumatic events. A genome-wide association study (GWAS) design was used to identify genetic risk factors for PTSD within a multi-racial sample primarily composed of U.S. veterans. Participants were recruited at multiple medical centers, and structured interviews were used to establish diagnoses. Genotypes were generated using three Illumina platforms and imputed with global reference data to create a common set of SNPs. SNPs that increased risk for PTSD were identified with logistic regression, while controlling for gender, trauma severity, and population substructure. Analyses were run separately in non-Hispanic black (NHB; n = 949) and non-Hispanic white (NHW; n = 759) participants. Meta-analysis was used to combine results from the two subsets. SNPs within several interesting candidate genes were nominally significant. Within the NHB subset, the most significant genes were UNC13C and DSCAM. Within the NHW subset, the most significant genes were TBC1D2, SDC2 and PCDH7. In addition, PRKG1 and DDX60L were identified through meta-analysis. The top genes for the three analyses have been previously implicated in neurologic processes consistent with a role in PTSD. Pathway analysis of the top genes identified alternative splicing as the top GO term in all three analyses (FDR q &lt; 3.5 × 10(-5)). No individual SNPs met genome-wide significance in the analyses. This multi-racial PTSD GWAS identified biologically plausible candidate genes and suggests that post-transcriptional regulation may be important to the pathology of PTSD; however, replication of these findings is needed."	"Genetic and phenotypic differentiation of an Andean intermediate altitude population. Highland populations living permanently under hypobaric hypoxia have been subject of extensive research because of the relevance of their physiological adaptations for the understanding of human health and disease. In this context, what is considered high altitude is a matter of interpretation and while the adaptive processes at high altitude (above 3000 m) are well documented, the effects of moderate altitude (below 3000 m) on the phenotype are less well established. In this study, we compare physiological and anthropometric characteristics as well as genetic variations in two Andean populations: the Calchaquíes (2300 m) and neighboring Collas (3500 m). We compare their phenotype and genotype to the sea-level Wichí population. We measured physiological (heart rate, oxygen saturation, respiration rate, and lung function) as well as anthropometric traits (height, sitting height, weight, forearm, and tibia length). We conducted genome-wide genotyping on a subset of the sample (n = 74) and performed various scans for positive selection. At the phenotypic level (n = 179), increased lung capacity stood out in both Andean groups, whereas a growth reduction in distal limbs was only observed at high altitude. At the genome level, Calchaquíes revealed strong signals around PRKG1, suggesting that the nitric oxide pathway may be a target of selection. PRKG1 was highlighted by one of four selection tests among the top five genes using the population branch statistic. Selection tests results of Collas were reported previously. Overall, our study shows that some phenotypic and genetic differentiation occurs at intermediate altitude in response to moderate lifelong selection pressures. "	"Prevention of PKG1α oxidation augments cardioprotection in the stressed heart. The cGMP-dependent protein kinase-1α (PKG1α) transduces NO and natriuretic peptide signaling; therefore, PKG1α activation can benefit the failing heart. Disease modifiers such as oxidative stress may depress the efficacy of PKG1α pathway activation and underlie variable clinical results. PKG1α can also be directly oxidized, forming a disulfide bond between homodimer subunits at cysteine 42 to enhance oxidant-stimulated vasorelaxation; however, the impact of PKG1α oxidation on myocardial regulation is unknown. Here, we demonstrated that PKG1α is oxidized in both patients with heart disease and in rodent disease models. Moreover, this oxidation contributed to adverse heart remodeling following sustained pressure overload or Gq agonist stimulation. Compared with control hearts and myocytes, those expressing a redox-dead protein (PKG1α(C42S)) better adapted to cardiac stresses at functional, histological, and molecular levels. Redox-dependent changes in PKG1α altered intracellular translocation, with the activated, oxidized form solely located in the cytosol, whereas reduced PKG1α(C42S) translocated to and remained at the outer plasma membrane. This altered PKG1α localization enhanced suppression of transient receptor potential channel 6 (TRPC6), thereby potentiating antihypertrophic signaling. Together, these results demonstrate that myocardial PKG1α oxidation prevents a beneficial response to pathological stress, may explain variable responses to PKG1α pathway stimulation in heart disease, and indicate that maintaining PKG1α in its reduced form may optimize its intrinsic cardioprotective properties."	"Pharmacological Inhibition of Protein Kinase G1 Enhances Bone Formation by Human Skeletal Stem Cells Through Activation of RhoA-Akt Signaling. Development of novel approaches to enhance bone regeneration is needed for efficient treatment of bone defects. Protein kinases play a key role in regulation of intracellular signal transduction pathways, and pharmacological targeting of protein kinases has led to development of novel treatments for several malignant and nonmalignant conditions. We screened a library of kinase inhibitors to identify small molecules that enhance bone formation by human skeletal (stromal or mesenchymal) stem cells (hMSC). We identified H-8 (known to inhibit protein kinases A, C, and G) as a potent enhancer of ex vivo osteoblast (OB) differentiation of hMSC, in a stage- and cell type-specific manner, without affecting adipogenesis or osteoclastogenesis. Furthermore, we showed that systemic administration of H-8 enhances in vivo bone formation by hMSC, using a preclinical ectopic bone formation model in mice. Using functional screening of known H-8 targets, we demonstrated that inhibition of protein kinase G1 (PRKG1) and consequent activation of RhoA-Akt signaling is the main mechanism through which H-8 enhances osteogenesis. Our studies revealed PRKG1 as a novel negative regulator of OB differentiation and suggest that pharmacological inhibition of PRKG1 in hMSC implanted at the site of bone defect can enhance bone regeneration. Stem Cells 2015;33:2219-2231. "	"MiR-20a regulates the PRKG1 gene by targeting its coding region in pulmonary arterial smooth muscle cells. Chronic hypoxia triggers pulmonary vascular remodeling, which is associated with de-differentiation of pulmonary artery smooth muscle cells (PASMC). Here, we show that miR-20a expression is up-regulated in response to hypoxia in both mouse and human PASMC. We also observed that miR-20a represses the protein kinase, cGMP-dependent, type I (PRKG1) gene and we identified two crucial miR-20a binding sites within the coding region of PRKG1. Functional studies showed that miR-20a promotes the proliferation and migration of human PASMC, whereas it inhibits their differentiation. In summary, we provided a possible mechanism by which hypoxia results in decreased PRKG1 expression and in the phenotypic switching of PASMC. "	"Genetic analysis of the pathogenic molecular sub-phenotype interferon-alpha identifies multiple novel loci involved in systemic lupus erythematosus. Systemic lupus erythematosus (SLE) is a chronic autoimmune disorder characterized by inflammation of multiple organ systems and dysregulated interferon responses. SLE is both genetically and phenotypically heterogeneous, greatly reducing the power of case-control studies in SLE. Elevated circulating interferon-alpha (IFN-α) is a stable, heritable trait in SLE, which has been implicated in primary disease pathogenesis. About 40-50% of patients have high IFN-α, and high levels correspond with clinical differences. To study genetic heterogeneity in SLE, we performed a case-case study comparing patients with high vs low IFN-α in over 1550 SLE cases, including genome-wide association study and replication cohorts. In meta-analysis, the top associations in European ancestry were protein kinase, cyclic GMP-dependent, type I (PRKG1) rs7897633 (P(Meta) = 2.75 × 10(-8)) and purine nucleoside phosphorylase (PNP) rs1049564 (P(Meta) = 1.24 × 10(-7)). We also found evidence for cross-ancestral background associations with the ankyrin repeat domain 44 (ANKRD44) and pleckstrin homology domain containing, family F member 2 gene (PLEKHF2) loci. These loci have not been previously identified in case-control SLE genetic studies. Bioinformatic analyses implicated these loci functionally in dendritic cells and natural killer cells, both of which are involved in IFN-α production in SLE. As case-control studies of heterogeneous diseases reach a limit of feasibility with respect to subject number and detectable effect size, the study of informative pathogenic sub-phenotypes becomes an attractive strategy for genetic discovery in complex disease."	"Quantitative proteome profiling of human myoma and myometrium tissue reveals kinase expression signatures with potential for therapeutic intervention. Uterine leiomyomas are benign tumors affecting a large proportion of the female population. Despite the very high prevalence, the molecular basis for understanding the onset and development of the disease are still poorly understood. In this study, we profiled the proteomes and kinomes of leiomyoma as well as myometrium samples from patients to a depth of &gt;7000 proteins including 200 kinases. Statistical analysis identified a number of molecular signatures distinguishing healthy from diseased tissue. Among these, nine kinases (ADCK4, CDK5, CSNK2B, DDR1, EPHB1, MAP2K2, PRKCB, PRKG1, and RPS6KA5) representing a number of cellular signaling pathways showed particularly strong discrimination potential. Preliminary statistical analysis by receiver operator characteristics plots revealed very good performance for individual kinases (area under the curve, AUC of 0.70-0.94) as well as binary combinations thereof (AUC 0.70-1.00) that might be used to assess the activity of signaling pathways in myomas. Of note, the receptor tyrosine kinase DDR1 holds future potential as a drug target owing to its strong links to collagen signaling and the excessive formation of extracellular matrix typical for leiomyomas in humans. "	"Human exosomal placenta-associated miR-517a-3p modulates the expression of PRKG1 mRNA in Jurkat cells. During pregnancy, human placenta-associated microRNAs (miRNAs) derived from the miRNA cluster in human chromosome 19 are expressed in villous trophoblasts and secreted into maternal circulation via exosomes; however, little is known about whether circulating placenta-associated miRNAs are transferred into maternal immune cells via exosomes, and modulate expression of target genes in the recipient cells. We employed an in vitro model of trophoblast-immune cell communication using BeWo cells (a human trophoblast cell line) and Jurkat cells (a human leukemic T-cell line) and investigated whether BeWo exosomal placenta-associated miRNAs can suppress expression of target genes in the recipient Jurkat cells. Using this system, we identified PRKG1 as a target gene of placenta-associated miRNA miR-517a-3p. Moreover, we demonstrated that BeWo exosomal miR-517a-3p was internalized into Jurkat cells and subsequently suppressed the expression of PRKG1 in recipient Jurkat cells. Furthermore, using peripheral blood natural killer (NK) cells in vivo, we confirmed that circulating miR-517a-3p was delivered into maternal NK cells as it was into Jurkat cells in vitro. Placenta-associated miR-517a-3p was incorporated into maternal NK cells in the third trimester, and it was rapidly cleared after delivery. Expression levels of miR-517a-3p and its target mRNA PRKG1 were inversely correlated in NK cells before and after delivery. These in vitro and in vivo results suggest that exosome-mediated transfer of placenta-associated miRNAs and subsequent modulation of their target genes occur in maternal NK cells. The present study provides novel insight into our understanding of placenta-maternal communication. "	"Neutron diffraction reveals hydrogen bonds critical for cGMP-selective activation: insights for cGMP-dependent protein kinase agonist design. High selectivity of cyclic-nucleotide binding (CNB) domains for cAMP and cGMP are required for segregating signaling pathways; however, the mechanism of selectivity remains unclear. To investigate the mechanism of high selectivity in cGMP-dependent protein kinase (PKG), we determined a room-temperature joint X-ray/neutron (XN) structure of PKG Iβ CNB-B, a domain 200-fold selective for cGMP over cAMP, bound to cGMP (2.2 Å), and a low-temperature X-ray structure of CNB-B with cAMP (1.3 Å). The XN structure directly describes the hydrogen bonding interactions that modulate high selectivity for cGMP, while the structure with cAMP reveals that all these contacts are disrupted, explaining its low affinity for cAMP. "	"PKG-1α leucine zipper domain defect increases pulmonary vascular tone: implications in hypoxic pulmonary hypertension. Pulmonary hypertension (PH) is a chronic disease characterized by a progressive increase in vasomotor tone, narrowing of the vasculature with structural remodeling, and increase in pulmonary vascular resistance. Current treatment strategies include nitric oxide therapy and methods to increase cGMP-mediated vasodilatation. cGMP-dependent protein kinases (PKG) are known mediators of nitric oxide- and cGMP-induced vasodilatation. Deletion of PKG-1 in mice has been shown to induce PH, however, the exact mechanisms by which loss of PKG-1 function leads to PH is not known. In a mouse model with a selective mutation in the NH2-terminus leucine zipper protein interaction domain of PKG-1α [leucine zipper mutant (LZM)], we found a progressive increase in right ventricular systolic pressure and right heart hypertrophy compared with wild-type (WT) mice and increased RhoA-GTPase activity in the lungs. When exposed to chronic hypoxia, LZM mice developed modestly enhanced right ventricular remodeling compared with WT mice. Tadalafil, a phosphodiesterase-5 inhibitor that increases cGMP levels, significantly attenuated hypoxia-induced cardiopulmonary remodeling in WT mice but had no effect in LZM mice. We conclude that a functional leucine zipper domain in PKG-1α is essential for maintenance of a low pulmonary vascular tone in normoxia and for cGMP-mediated beneficial effects of phosphodiesterase-5 inhibition in hypoxic cardiopulmonary remodeling."	"Alterations in the cerebellar (Phospho)proteome of a cyclic guanosine monophosphate (cGMP)-dependent protein kinase knockout mouse. The cyclic nucleotide cyclic guanosine monophosphate (cGMP) plays an important role in learning and memory, but its signaling mechanisms in the mammalian brain are not fully understood. Using mass-spectrometry-based proteomics, we evaluated how the cerebellum adapts its (phospho)proteome in a knockout mouse model of cGMP-dependent protein kinase type I (cGKI). Our data reveal that a small subset of proteins in the cerebellum (∼3% of the quantified proteins) became substantially differentially expressed in the absence of cGKI. More changes were observed at the phosphoproteome level, with hundreds of sites being differentially phosphorylated between wild-type and knockout cerebellum. Most of these phosphorylated sites do not represent known cGKI substrates. An integrative computational network analysis of the data indicated that the differentially expressed proteins and proteins harboring differentially phosphorylated sites largely belong to a tight network in the Purkinje cells of the cerebellum involving important cGMP/cAMP signaling nodes (e.g. PDE5 and PKARIIβ) and Ca(2+) signaling (e.g. SERCA3). In this way, removal of cGKI could be linked to impaired cerebellar long-term depression at Purkinje cell synapses. In addition, we were able to identify a set of novel putative (phospho)proteins to be considered in this network. Overall, our data improve our understanding of cerebellar cGKI signaling and suggest novel players in cGKI-regulated synaptic plasticity. "	"Relevant role of PKG in the progression of fibrosis induced by TNF-like weak inducer of apoptosis. TNF-like weak inducer of apoptosis (TWEAK) is an inflammatory cytokine that activates the FGF-inducible 14 receptor. Both TWEAK and the FGF-inducible 14 receptor are constitutively expressed in the kidney. TWEAK has been shown to modulate several biological responses, such as inflammation, proliferation, differentiation, and apoptosis, that contribute to kidney injury. However, the role of TWEAK in fibrosis and TWEAK-activated intracellular signaling pathways remain poorly understood. We tested the hypothesis that TWEAK can be a potent inducer of renal fibrosis by increasing transforming growth factor (TGF)-β1 expression (a well-known switch in the fibrosis process) through PKG-I downregulation. We showed that in human mesangial cells, TWEAK increased TGF-β1 expression and activity, leading to higher levels of the extracellular matrix protein fibronectin and decreased PKG-I expression and activity via the Ras pathway. PKG-I activation with 8-bromo-cGMP, Ras inactivation with dominant negative Ras, or Ras pathway inhibition with the ERK1/2 inhibitor PD-98059 resulted in the prevention of TWEAK-induced TGF-β1 upregulation. In vivo, exogenous administration of TWEAK to wild-type mice downregulated kidney PKG-I and increased kidney TGF-β1 expression. These effects were blunted in H-Ras knockout mice. Together, these data demonstrate, for the first time, the key role of PKG-I in TGF-β1 induction by TWEAK in kidney cells. "	"Genome wide association study identifies 20 novel promising genes associated with milk fatty acid traits in Chinese Holstein. Detecting genes associated with milk fat composition could provide valuable insights into the complex genetic networks of genes underling variation in fatty acids synthesis and point towards opportunities for changing milk fat composition via selective breeding. In this study, we conducted a genome-wide association study (GWAS) for 22 milk fatty acids in 784 Chinese Holstein cows with the PLINK software. Genotypes were obtained with the Illumina BovineSNP50 Bead chip and a total of 40,604 informative, high-quality single nucleotide polymorphisms (SNPs) were used. Totally, 83 genome-wide significant SNPs and 314 suggestive significant SNPs associated with 18 milk fatty acid traits were detected. Chromosome regions that affect milk fatty acid traits were mainly observed on BTA1, 2, 5, 6, 7, 9, 13, 14, 18, 19, 20, 21, 23, 26 and 27. Of these, 146 SNPs were associated with more than one milk fatty acid trait; most of studied fatty acid traits were significant associated with multiple SNPs, especially C18:0 (105 SNPs), C18 index (93 SNPs), and C14 index (84 SNPs); Several SNPs are close to or within the DGAT1, SCD1 and FASN genes which are well-known to affect milk composition traits of dairy cattle. Combined with the previously reported QTL regions and the biological functions of the genes, 20 novel promising candidates for C10:0, C12:0, C14:0, C14:1, C14 index, C18:0, C18:1n9c, C18 index, SFA, UFA and SFA/UFA were found, which composed of HTR1B, CPM, PRKG1, MINPP1, LIPJ, LIPK, EHHADH, MOGAT1, ECHS1, STAT1, SORBS1, NFKB2, AGPAT3, CHUK, OSBPL8, PRLR, IGF1R, ACSL3, GHR and OXCT1. Our findings provide a groundwork for unraveling the key genes and causal mutations affecting milk fatty acid traits in dairy cattle. "	"Genome-wide analysis of cold adaptation in indigenous Siberian populations. Following the dispersal out of Africa, where hominins evolved in warm environments for millions of years, our species has colonised different climate zones of the world, including high latitudes and cold environments. The extent to which human habitation in (sub-)Arctic regions has been enabled by cultural buffering, short-term acclimatization and genetic adaptations is not clearly understood. Present day indigenous populations of Siberia show a number of phenotypic features, such as increased basal metabolic rate, low serum lipid levels and increased blood pressure that have been attributed to adaptation to the extreme cold climate. In this study we introduce a dataset of 200 individuals from ten indigenous Siberian populations that were genotyped for 730,525 SNPs across the genome to identify genes and non-coding regions that have undergone unusually rapid allele frequency and long-range haplotype homozygosity change in the recent past. At least three distinct population clusters could be identified among the Siberians, each of which showed a number of unique signals of selection. A region on chromosome 11 (chr11:66-69 Mb) contained the largest amount of clustering of significant signals and also the strongest signals in all the different selection tests performed. We present a list of candidate cold adaption genes that showed significant signals of positive selection with our strongest signals associated with genes involved in energy regulation and metabolism (CPT1A, LRP5, THADA) and vascular smooth muscle contraction (PRKG1). By employing a new method that paints phased chromosome chunks by their ancestry we distinguish local Siberian-specific long-range haplotype signals from those introduced by admixture. "	"Genetic testing in cardiovascular diseases. The review is designed to outline the major developments in genetic testing in the cardiovascular arena in the past year or so. This is an exciting time in genetic testing as whole exome and whole genome approaches finally reach the clinic. These new approaches offer insight into disease causation in families in which this might previously have been inaccessible, and also bring a wide range of interpretative challenges. Among the most significant recent findings has been the extent of physiologic rare coding variation in the human genome. New disease genes have been identified through whole exome studies in neonatal arrhythmia, congenital heart disease and coronary artery disease that were simply inaccessible with other techniques. This has not only shed light on the challenges of genetic testing at this scale, but has also sharply defined the limits of prior gene-panel focused testing. As novel therapies targeting specific genetic subsets of disease become available, genetic testing will become a part of routine clinical care. The pace of change in sequencing technologies has begun to transform clinical medicine, and cardiovascular disease is no exception. The complexity of such studies emphasizes the importance of real-time communication between the genetics laboratory and genetically informed clinicians. New efforts in data and knowledge management will be central to the continued advancement of genetic testing."	"Aberrant hypomethylated STAT3 was identified as a biomarker of chronic benzene poisoning through integrating DNA methylation and mRNA expression data. Chronic occupational benzene exposure is associated with an increased risk of hematological malignancies such as aplastic anemia and leukemia. The new biomarker and action mechanisms of chronic benzene poisoning are still required to be explored. Aberrant DNA methylation, which may lead to genomic instability and the altered gene expression, is frequently observed in hematological cancers. To gain an insight into the new biomarkers and molecular mechanisms of chronic benzene poisoning, DNA methylation profiles and mRNA expression pattern from the peripheral blood mononuclear cells of four chronic benzene poisoning patients and four health controls that matched age and gender without benzene exposure were performed using the high resolution Infinium 450K methylation array and Gene Chip Human Gene 2.0ST Arrays, respectively. By integrating DNA methylation and mRNA expression data, we identified 3 hypermethylated genes showing concurrent down-regulation (PRKG1, PARD3, EPHA8) and 2 hypomethylated genes showing increased expression (STAT3, IFNGR1). Signal net analysis of differential methylation genes associated with chronic benzene poisoning showed that two key hypomethylated STAT3 and hypermethylated GNAI1 were identified. Further GO analysis and pathway analysis indicated that hypomethylated STAT3 played central roles through regulation of transcription, DNA-dependent, positive regulation of transcription from RNA polymerase II promoter, JAK-STAT cascade and adipocytokine signaling pathway, Acute myeloid leukemia, and JAK-STAT signaling pathway. In conclusion, the aberrant hypomethylated STAT3 might be a potential biomarker of chronic benzene poisoning. "	"Increasing cGMP-dependent protein kinase activity attenuates unilateral ureteral obstruction-induced renal fibrosis. Our previous studies support the protective effect of cGMP and cGMP-dependent protein kinase I (PKG-I) pathway on the development of renal fibrosis. Therefore, in the present studies, we determined whether pharmacologically or genetically increased PKG activity attenuates renal fibrosis in a unilateral ureteral obstruction (UUO) model and also examined the mechanisms involved. To increase PKG activity, we used the phosphodiesterase 5 inhibitor sildenafil and PKG transgenic mice. UUO model was induced in wild-type or PKG-I transgenic mice by ligating the left lateral ureteral and the renal fibrosis was observed after 14 days of ligation. Sildenafil was administered into wild-type UUO mice for 14 days. In vitro, macrophage and proximal tubular cell function was also analyzed. We found that sildenafil treatment or PKG transgenic mice had significantly reduced UUO-induced renal fibrosis, which was associated with reduced TGF-β signaling and reduced macrophage infiltration into kidney interstitial. In vitro data further demonstrated that both macrophages and proximal tubular cells were important sources of UUO-induced renal TGF-β levels. The interaction between macrophages and tubular cells contributes to TGF-β-induced renal fibrosis. Taken together, these data suggest that increasing PKG activity ameliorates renal fibrosis in part through regulation of macrophage and tubular cell function, leading to reduced TGF-β-induced fibrosis."	"Genome wide association and linkage analyses identified three loci-4q25, 17q23.2, and 10q11.21-associated with variation in leukocyte telomere length: the Long Life Family Study. Leukocyte telomere length is believed to measure cellular aging in humans, and short leukocyte telomere length is associated with increased risks of late onset diseases, including cardiovascular disease, dementia, etc. Many studies have shown that leukocyte telomere length is a heritable trait, and several candidate genes have been identified, including TERT, TERC, OBFC1, and CTC1. Unlike most studies that have focused on genetic causes of chronic diseases such as heart disease and diabetes in relation to leukocyte telomere length, the present study examined the genome to identify variants that may contribute to variation in leukocyte telomere length among families with exceptional longevity. From the genome wide association analysis in 4,289 LLFS participants, we identified a novel intergenic SNP rs7680468 located near PAPSS1 and DKK2 on 4q25 (p = 4.7E-8). From our linkage analysis, we identified two additional novel loci with HLOD scores exceeding three, including 4.77 for 17q23.2, and 4.36 for 10q11.21. These two loci harbor a number of novel candidate genes with SNPs, and our gene-wise association analysis identified multiple genes, including DCAF7, POLG2, CEP95, and SMURF2 at 17q23.2; and RASGEF1A, HNRNPF, ANF487, CSTF2T, and PRKG1 at 10q11.21. Among these genes, multiple SNPs were associated with leukocyte telomere length, but the strongest association was observed with one contiguous haplotype in CEP95 and SMURF2. We also show that three previously reported genes-TERC, MYNN, and OBFC1-were significantly associated with leukocyte telomere length at p empirical &lt; 0.05. "	"Genetic and epigenetic control of metabolic health. Obesity is characterized as an excess accumulation of body fat resulting from a positive energy balance. It is the major risk factor for type 2 diabetes (T2D). The evidence for familial aggregation of obesity and its associated metabolic diseases is substantial. To date, about 150 genetic loci identified in genome-wide association studies (GWAS) are linked with obesity and T2D, each accounting for only a small proportion of the predicted heritability. However, the percentage of overall trait variance explained by these associated loci is modest (~5-10% for T2D, ~2% for BMI). The lack of powerful genetic associations suggests that heritability is not entirely attributable to gene variations. Some of the familial aggregation as well as many of the effects of environmental exposures, may reflect epigenetic processes. This review summarizes our current knowledge on the genetic basis to individual risk of obesity and T2D, and explores the potential role of epigenetic contribution. "	"Upregulation of the microRNA cluster at the Dlk1-Dio3 locus in lung adenocarcinoma. Mice in which lung epithelial cells can be induced to express an oncogenic Kras(G12D) develop lung adenocarcinomas in a manner analogous to humans. A myriad of genetic changes accompany lung adenocarcinomas, many of which are poorly understood. To get a comprehensive understanding of both the transcriptional and post-transcriptional changes that accompany lung adenocarcinomas, we took an omics approach in profiling both the coding genes and the non-coding small RNAs in an induced mouse model of lung adenocarcinoma. RNAseq transcriptome analysis of Kras(G12D) tumors from F1 hybrid mice revealed features specific to tumor samples. This includes the repression of a network of GTPase-related genes (Prkg1, Gnao1 and Rgs9) in tumor samples and an enrichment of Apobec1-mediated cytosine to uridine RNA editing. Furthermore, analysis of known single-nucleotide polymorphisms revealed not only a change in expression of Cd22 but also that its expression became allele specific in tumors. The most salient finding, however, came from small RNA sequencing of the tumor samples, which revealed that a cluster of ∼53 microRNAs and mRNAs at the Dlk1-Dio3 locus on mouse chromosome 12qF1 was markedly and consistently increased in tumors. Activation of this locus occurred specifically in sorted tumor-originating cancer cells. Interestingly, the 12qF1 RNAs were repressed in cultured Kras(G12D) tumor cells but reactivated when transplanted in vivo. These microRNAs have been implicated in stem cell pleuripotency and proteins targeted by these microRNAs are involved in key pathways in cancer as well as embryogenesis. Taken together, our results strongly imply that these microRNAs represent key targets in unraveling the mechanism of lung oncogenesis. "	"Genetic interactions within inositol-related pathways are associated with longitudinal changes in ventricle size. The genetic etiology of late-onset Alzheimer's disease (LOAD) has proven complex, involving clinical and genetic heterogeneity and gene-gene interactions. Recent genome wide association studies in LOAD have led to the discovery of novel genetic risk factors; however, the investigation of gene-gene interactions has been limited. Conventional genetic studies often use binary disease status as the primary phenotype, but for complex brain-based diseases, neuroimaging data can serve as quantitative endophenotypes that correlate with disease status and closely reflect pathological changes. In the Alzheimer's Disease Neuroimaging Initiative cohort, we tested for association of genetic interactions with longitudinal MRI measurements of the inferior lateral ventricles (ILVs), which have repeatedly shown a relationship to LOAD status and progression. We performed linear regression to evaluate the ability of pathway-derived SNP-SNP pairs to predict the slope of change in volume of the ILVs. After Bonferroni correction, we identified four significant interactions in the right ILV (RILV) corresponding to gene-gene pairs SYNJ2-PI4KA, PARD3-MYH2, PDE3A-ABHD12B, and OR2L13-PRKG1 and one significant interaction in the left ILV (LILV) corresponding to SYNJ2-PI4KA. The SNP-SNP interaction corresponding to SYNJ2-PI4KA was identical in the RILV and LILV and was the most significant interaction in each (RILV: p = 9.13 × 10(-12); LILV: p = 8.17 × 10(-13)). Both genes belong to the inositol phosphate signaling pathway which has been previously associated with neurodegeneration in AD and we discuss the possibility that perturbation of this pathway results in a down-regulation of the Akt cell survival pathway and, thereby, decreased neuronal survival, as reflected by increased volume of the ventricles."	"Left ventricular radial function associated with genetic variation in the cGMP-dependent protein kinase. cGMP-dependent protein kinase type I is a major mediator of cGMP signaling in the cardiovascular system. Recent studies on cardiac-specific PRKG1 knockout mice demonstrated that cGMP-dependent protein kinase type I mediates the negative inotropic effect of cGMP in the myocardium. We therefore investigated the association between left ventricular (LV) function and common polymorphisms in the PRKG1 gene in a general population. In 609 randomly selected participants (51.2% women; mean age, 48.8 years; 36.6% hypertensive) who were free from overt cardiac disease, we performed echocardiography and genotyped intronic tag single-nucleotide polymorphisms (SNPs) rs1904694, rs7897633, and rs7905063 in PRKG1. On the basis of color Doppler myocardial motion data, we calculated end-systolic longitudinal and radial deformation (strain) of the LV inferolateral wall. In multivariable-adjusted analyses accounting for confounders and relatedness, systolic radial strain was significantly (P ≤ 0.005) higher in homozygotes for rs1904694 (GG), rs7897633 (AA), and rs7905063 (TT) compared with heterozygotes or noncarriers. Haplotype analysis confirmed that LV radial strain was significantly higher in GAT homozygotes than in noncarriers (62.3% versus 56.0%; P = 0.0005). Transmission of the PRKG1 GAT haplotype to informative offspring was associated with higher LV radial strain (effect size, 6.11%; P = 0.017). For other LV phenotypes, none of the phenotype-genotype associations reached statistical significance. In conclusion, LV systolic radial function was associated with common polymorphisms in PRKG1. If experimental studies and longitudinal follow-up of LV function confirm the causality of this association, interference with cGMP-dependent protein kinase type I function might be a target for pharmacological intervention."	"cGMP-dependent protein kinase 1 polymorphisms underlie renal sodium handling impairment. Defective pressure-natriuresis related to abnormalities in the natriuretic response has been associated with hypertension development. A major signaling pathway mediating pressure natriuresis involves the cGMP-dependent protein kinase 1 (PRKG1) that, once activated by Src kinase, inhibits renal Na(+) reabsorption via a direct action on basolateral Na-K ATPase and luminal Na-H exchanger type 3, as shown in renal tubuli of animals. Because a clear implication of PRKG1 in humans is still lacking, here we addressed whether PRKG1 polymorphisms affect pressure-natriuresis in patients. Naive hypertensive patients (n = 574), genotyped for PRKG1 rs1904694, rs7897633, and rs7905063 single nucleotide polymorphisms (SNPs), underwent an acute Na(+) loading, and the slope of the pressure-natriuresis relationship between blood pressure and Na(+) excretion was calculated. The underlying molecular mechanism was investigated by immunoblotting protein quantifications in human kidneys. The results demonstrate that the PRKG1 risk haplotype GAT (rs1904694, rs7897633, rs7905063, respectively) associates with a rightward shift of the pressure-natriuresis curve (0.017 ± 0.004 μEq/mm Hg per minute) compared with the ACC (0.0013 ± 0.003 μEq/mm Hg per minute; P = 0.001). In human kidneys, a positive correlation of protein expression levels between PRKG1 and Src (r = 0.83; P&lt;0.001) or α1 Na-K ATPase (r = 0.557; P&lt;0.01) and between α1 Na-K ATPase and Na-H exchanger type 3 (r = 0.584; P&lt;0.01) or Src (r = 0.691; P&lt;0.001) was observed in patients carrying PRKG1 risk GAT (n = 23) but not ACC (n = 14) variants. A functional signaling complex among PRKG1, α1 Na-K ATPase, and Src was shown by immunoprecipitation from human renal caveolae. These findings indicate that PRKG1 risk alleles associate with salt-sensitivity related to a loss of the inhibitory control of renal Na(+) reabsorption, suggestive of a blunt pressure-natriuresis response."	"Epigenetic alterations and an increased frequency of micronuclei in women with fibromyalgia. Fibromyalgia (FM), characterized by chronic widespread pain, fatigue, and cognitive/mood disturbances, leads to reduced workplace productivity and increased healthcare expenses. To determine if acquired epigenetic/genetic changes are associated with FM, we compared the frequency of spontaneously occurring micronuclei (MN) and genome-wide methylation patterns in women with FM (n = 10) to those seen in comparably aged healthy controls (n = 42 (MN); n = 8 (methylation)). The mean (sd) MN frequency of women with FM (51.4 (21.9)) was significantly higher than that of controls (15.8 (8.5)) (χ (2) = 45.552; df = 1; P = 1.49 × 10(-11)). Significant differences (n = 69 sites) in methylation patterns were observed between cases and controls considering a 5% false discovery rate. The majority of differentially methylated (DM) sites (91%) were attributable to increased values in the women with FM. The DM sites included significant biological clusters involved in neuron differentiation/nervous system development, skeletal/organ system development, and chromatin compaction. Genes associated with DM sites whose function has particular relevance to FM included BDNF, NAT15, HDAC4, PRKCA, RTN1, and PRKG1. Results support the need for future research to further examine the potential role of epigenetic and acquired chromosomal alterations as a possible biological mechanism underlying FM. "	"Association study of 167 candidate genes for schizophrenia selected by a multi-domain evidence-based prioritization algorithm and neurodevelopmental hypothesis. Integrating evidence from multiple domains is useful in prioritizing disease candidate genes for subsequent testing. We ranked all known human genes (n=3819) under linkage peaks in the Irish Study of High-Density Schizophrenia Families using three different evidence domains: 1) a meta-analysis of microarray gene expression results using the Stanley Brain collection, 2) a schizophrenia protein-protein interaction network, and 3) a systematic literature search. Each gene was assigned a domain-specific p-value and ranked after evaluating the evidence within each domain. For comparison to this ranking process, a large-scale candidate gene hypothesis was also tested by including genes with Gene Ontology terms related to neurodevelopment. Subsequently, genotypes of 3725 SNPs in 167 genes from a custom Illumina iSelect array were used to evaluate the top ranked vs. hypothesis selected genes. Seventy-three genes were both highly ranked and involved in neurodevelopment (category 1) while 42 and 52 genes were exclusive to neurodevelopment (category 2) or highly ranked (category 3), respectively. The most significant associations were observed in genes PRKG1, PRKCE, and CNTN4 but no individual SNPs were significant after correction for multiple testing. Comparison of the approaches showed an excess of significant tests using the hypothesis-driven neurodevelopment category. Random selection of similar sized genes from two independent genome-wide association studies (GWAS) of schizophrenia showed the excess was unlikely by chance. In a further meta-analysis of three GWAS datasets, four candidate SNPs reached nominal significance. Although gene ranking using integrated sources of prior information did not enrich for significant results in the current experiment, gene selection using an a priori hypothesis (neurodevelopment) was superior to random selection. As such, further development of gene ranking strategies using more carefully selected sources of information is warranted."	"Recurrent gain-of-function mutation in PRKG1 causes thoracic aortic aneurysms and acute aortic dissections. Gene mutations that lead to decreased contraction of vascular smooth-muscle cells (SMCs) can cause inherited thoracic aortic aneurysms and dissections. Exome sequencing of distant relatives affected by thoracic aortic disease and subsequent Sanger sequencing of additional probands with familial thoracic aortic disease identified the same rare variant, PRKG1 c.530G&gt;A (p.Arg177Gln), in four families. This mutation segregated with aortic disease in these families with a combined two-point LOD score of 7.88. The majority of affected individuals presented with acute aortic dissections (63%) at relatively young ages (mean 31 years, range 17-51 years). PRKG1 encodes type I cGMP-dependent protein kinase (PKG-1), which is activated upon binding of cGMP and controls SMC relaxation. Although the p.Arg177Gln alteration disrupts binding to the high-affinity cGMP binding site within the regulatory domain, the altered PKG-1 is constitutively active even in the absence of cGMP. The increased PKG-1 activity leads to decreased phosphorylation of the myosin regulatory light chain in fibroblasts and is predicted to cause decreased contraction of vascular SMCs. Thus, identification of a gain-of-function mutation in PRKG1 as a cause of thoracic aortic disease provides further evidence that proper SMC contractile function is critical for maintaining the integrity of the thoracic aorta throughout a lifetime. "	"In vivo blockade of α1-adrenergic receptors mitigates stress-disturbed cAMP and cGMP signaling in Leydig cells. The molecular mechanism of stress-associated reproductive dysfunction is complex and largely unknown. This study was designed to systematically analyze molecular effects of systemic in vivo blockade of α1-adrenergic receptors (α1-ADRs) on stress-induced disturbance of cAMP/cGMP signaling in testosterone-producing Leydig cells using the following parameters (i) level of circulating stress hormones, LH and testosterone; (ii) level of main molecular markers of Leydig cell functionality (testosterone, Insl3, cAMP); (iii) expression of cAMP signaling (cAMP 'producers'/'effectors'/'removers') and (iv) expression of NO-cGMP signaling (NO-cGMP 'producers'/'effectors'/'removers'). The results showed that oral administration of α1-ADR blocker before stress increased cGMP and diminished stress-reduced cAMP production in Leydig cells. In the same cells, stress-induced effects on cAMP/cGMP signaling pathways elements were changed. Sustained in vivo α1-ADR blockade completely abolished stress-increased transcription of most abundantly expressed phosphodiesterase that remove cAMP (Pde4b) and potentiated stress-increased expression of PRKA, the main stimulator of Leydig cell steroidogenesis. In the same Leydig cells, stress-decreased NOS3 expression was abolished, while stress-increased GUCY1 (cGMP 'producer') and PRKG1 (cGMP 'effector') were potentiated. It is possible that all molecules mentioned could contribute, at least in part, in recovery of Leydig cell testosterone production. Presented data provide new role of α1-ADRs in stress-triggered disturbance of cAMP/cGMP signaling, and new molecular insights into the relationship between stress and mammalian reproduction. Regardless of whether the effects of α1-blocker + stress are direct or indirect, the results are important in terms of human reproductive health and the wide use of α1-ADR antagonists, alone or in combination, to treat post-traumatic stress disorders, hypertension, benign prostatic hyperplasia symptoms and potential drugs for prostate cancer prevention/treatment. "	"The opposing roles of nitric oxide and cGMP in the age-associated decline in rat testicular steroidogenesis. The molecular mechanism of the aging-associated dysfunction of Leydig cells (LCs) is complex and poorly understood. In this study, we analyzed the contribution of nitric oxide (NO) and cGMP signaling to the age-dependent decline in LC function. Significant (&gt;50%) decreases in serum, intratesticular, and LC androgens in aging rats (15-24 months) were accompanied by a proportional increase in NO production, an up-regulation of cGMP levels, and the expression of soluble guanylyl cyclase-1B and protein kinase G1 in LCs. In contrast, LC cAMP levels decreased with age, most likely reflecting the up-regulation of cAMP-specific phosphodiesterase expression. Moreover, the expression of genes encoding enzymes responsible for cholesterol transport and its conversion to T were reduced. Exposing LCs from aged animals to NO further increased cGMP levels and decreased cAMP and androgen production, whereas the addition of cell-permeable 8-bromoguanosine-cGMP alone had the opposite effect. In vivo inhibition of cGMP-specific phosphodiesterase-5 for 3 and 6 months in aged rats led to a partial restoration of androgens, NO, and cyclic nucleotide levels, as well as the expression of steroidogenic and NO/cGMP signaling genes. These results indicate that a progressive increase in NO production contributes to the age-dependent decrease in steroidogenesis in a cGMP-independent manner, whereas the sustained elevation in cGMP levels significantly slows the decline in LC function. "	"Steroid-sensitive gene 1 is a novel cyclic GMP-dependent protein kinase I substrate in vascular smooth muscle cells. NO, via its second messenger cGMP, activates protein kinase GI (PKGI) to induce vascular smooth muscle cell relaxation. The mechanisms by which PKGI kinase activity regulates cardiovascular function remain incompletely understood. Therefore, to identify novel protein kinase G substrates in vascular cells, a λ phage coronary artery smooth muscle cell library was constructed and screened for phosphorylation by PKGI. The screen identified steroid-sensitive gene 1 (SSG1), which harbors several predicted PKGI phosphorylation sites. We observed direct and cGMP-regulated interaction between PKGI and SSG1. In cultured vascular smooth muscle cells, both the NO donor S-nitrosocysteine and atrial natriuretic peptide induced SSG1 phosphorylation, and mutation of SSG1 at each of the two predicted PKGI phosphorylation sites completely abolished its basal phosphorylation by PKGI. We detected high SSG1 expression in cardiovascular tissues. Finally, we found that activation of PKGI with cGMP regulated SSG1 intracellular distribution. "	"Atrial natriuretic peptide-mediated inhibition of microcirculatory endothelial Ca2+ and permeability response to histamine involves cGMP-dependent protein kinase I and TRPC6 channels. Histamine increases microvascular endothelial leakage by activation of complex calcium-dependent and -independent signaling pathways. Atrial natriuretic peptide (ANP) via its cGMP-forming guanylyl cyclase-A (GC-A) receptor counteracts this response. Here, we characterized the molecular mechanisms underlying this interaction, especially the role of cGMP-dependent protein kinase I (cGKI). We combined intravital microscopy studies of the mouse cremaster microcirculation with experiments in cultured microvascular human dermal endothelial cells. In wild-type mice, ANP had no direct effect on the extravasation of fluorescent dextran from postcapillary venules, but strongly reduced the histamine-provoked vascular leakage. This anti-inflammatory effect of ANP was abolished in mice with endothelial-restricted inactivation of GC-A or cGKI. Histamine-induced increases in endothelial [Ca(2+)]i in vitro and of vascular leakage in vivo were markedly attenuated by the Ca(2+)-entry inhibitor SKF96365 and in mice with ablated transient receptor potential canonical (TRPC) 6 channels. Conversely, direct activation of TRPC6 with hyperforin replicated the hyperpermeability responses to histamine. ANP, via cGKI, stimulated the inhibitory phosphorylation of TRPC6 at position Thr69 and prevented the hyperpermeability responses to hyperforin. Moreover, inhibition of cGMP degradation by the phosphodiesterase 5 inhibitor sildenafil prevented the edematic actions of histamine in wild types but not in mice with endothelial GC-A or cGKI deletion. ANP attenuates the inflammatory actions of histamine via endothelial GC-A/cGMP/cGKI signaling and inhibitory phosphorylation of TRPC6 channels. The therapeutic potential of this novel regulatory pathway is indicated by the observation that sildenafil improves systemic endothelial barrier functions by enhancing the endothelial effects of endogenous ANP."	"Characterization of a chemical affinity probe targeting Akt kinases. Protein kinases are key regulators of cellular processes, and aberrant function is often associated with human disease. Consequently, kinases represent an important class of therapeutic targets and about 20 kinase inhibitors (KIs) are in clinical use today. Detailed knowledge about the selectivity of KIs is important for the correct interpretation of their pharmacological and systems biological effects. Chemical proteomic approaches for systematic kinase inhibitor selectivity profiling have emerged as important molecular tools in this regard, but the coverage of the human kinome is still incomplete. Here, we describe a new affinity probe targeting Akt and many other members of the AGC kinase family that considerably extends the scope of KI profiling by chemical proteomics. In combination with the previously published kinobeads, the synthesized probe was applied to selectivity profiling of the Akt inhibitors GSK690693 and GSK2141795 in human cancer cells. The results confirmed the inhibition of all Akt isoforms and of a number of known as well as CDC42BPB as a novel putative target for GSK690693. This work also established, for the first time, the kinase selectivity profile of the clinical phase I drug GSK2141795 and identified PRKG1 as a low nanomolar kinase target as well as the ATP-dependent 5'-3' DNA helicase ERCC2 as a potential new non-kinase off-target. "	"Protein kinase g positively regulates proteasome-mediated degradation of misfolded proteins. Proteasome functional insufficiency is implicated in a large subset of cardiovascular diseases and may play an important role in their pathogenesis. The regulation of proteasome function is poorly understood, hindering the development of effective strategies to improve proteasome function. Protein kinase G (PKG) was manipulated genetically and pharmacologically in cultured cardiomyocytes. Activation of PKG increased proteasome peptidase activities, facilitated proteasome-mediated degradation of surrogate (enhanced green fluorescence protein modified by carboxyl fusion of degron CL1) and bona fide (CryAB(R120G)) misfolded proteins, and attenuated CryAB(R120G) overexpression-induced accumulation of ubiquitinated proteins and cellular injury. PKG inhibition elicited the opposite responses. Differences in the abundance of the key 26S proteasome subunits Rpt6 and β5 between the PKG-manipulated and control groups were not statistically significant, but the isoelectric points were shifted by PKG activation. In transgenic mice expressing a surrogate substrate (GFPdgn), PKG activation by sildenafil increased myocardial proteasome activities and significantly decreased myocardial GFPdgn protein levels. Sildenafil treatment significantly increased myocardial PKG activity and significantly reduced myocardial accumulation of CryAB(R120G), ubiquitin conjugates, and aberrant protein aggregates in mice with CryAB(R120G)-based desmin-related cardiomyopathy. No discernible effect on bona fide native substrates of the ubiquitin-proteasome system was observed from PKG manipulation in vitro or in vivo. PKG positively regulates proteasome activities and proteasome-mediated degradation of misfolded proteins, likely through posttranslational modifications to proteasome subunits. This may be a new mechanism underlying the benefit of PKG stimulation in treating cardiac diseases. Stimulation of PKG by measures such as sildenafil administration is potentially a new therapeutic strategy to treat cardiac proteinopathies."	"The cyclic GMP-dependent protein kinase Iα suppresses kidney fibrosis. Cyclic guanosine monophosphate (cGMP) is synthesized by nitric oxide or natriuretic peptide-stimulated guanylyl cyclases and exhibits pleiotropic regulatory functions in the kidney. Hence, integration of cGMP signaling by cGMP-dependent protein kinases (cGKs) might play a critical role in renal physiology; however, detailed renal localization of cGKs is still lacking. Here, we performed an immunohistochemical analysis of cGKIα and cGKIβ isozymes in the mouse kidney and found both in arterioles, the mesangium, and within the cortical interstitium. In contrast to cGKIα, the β-isoform was not detected in the juxtaglomerular apparatus or medullary fibroblasts. Since interstitial fibroblasts play a prominent role in interstitial fibrosis, we focused our study on cGKI function in the interstitium, emphasizing a functional differentiation of both isoforms, and determined whether cGKIs influence renal fibrosis induced by unilateral ureter obstruction. Treatment with the guanylyl cyclase activators YC1 or isosorbide dinitrate showed stronger antifibrotic effects in wild-type than in cGKI-knockout or in smooth muscle-cGKIα-rescue mice, which are cGKI deficient in the kidney except in the renal vasculature. Moreover, fibrosis influenced the mRNA and protein expression levels of cGKIα more strongly than cGKIβ. Thus, our results indicate that cGMP, acting primarily through cGKIα, is an important suppressor of kidney fibrosis. "	"cGMP-dependent protein kinases (cGK). cGMP-dependent protein kinases (cGK) are serine/threonine kinases that are widely distributed in eukaryotes. Two genes-prkg1 and prkg2-code for cGKs, namely, cGKI and cGKII. In mammals, two isozymes, cGKIα and cGKIβ, are generated from the prkg1 gene. The cGKI isozymes are prominent in all types of smooth muscle, platelets, and specific neuronal areas such as cerebellar Purkinje cells, hippocampal neurons, and the lateral amygdala. The cGKII prevails in the secretory epithelium of the small intestine, the juxtaglomerular cells, the adrenal cortex, the chondrocytes, and in the nucleus suprachiasmaticus. Both cGKs are major downstream effectors of many, but not all, signalling events of the NO/cGMP and the ANP/cGMP pathways. cGKI relaxes smooth muscle tone and prevents platelet aggregation, whereas cGKII inhibits renin secretion, chloride/water secretion in the small intestine, the resetting of the clock during early night, and endochondral bone growth. This chapter focuses on the involvement of cGKs in cardiovascular and non-cardiovascular processes including cell growth and metabolism."	"A molecular mechanism for therapeutic effects of cGMP-elevating agents in pulmonary arterial hypertension. Pulmonary arterial hypertension (PAH) is a progressive, usually fatal disease with abnormal vascular remodeling. Pulmonary artery smooth muscle cells (PASMCs) from PAH patients are hyperproliferative and apoptosis-resistant and demonstrate decreased signaling in response to bone morphogenetic proteins (BMPs). Cyclic GMP-elevating agents are beneficial in PAH, but their mechanism(s) of action are incompletely understood. Here we show that BMP signaling via Smad1/5/8 requires cGMP-dependent protein kinase isotype I (PKGI) to maintain PASMCs in a differentiated, low proliferative state. BMP cooperation with cGMP/PKGI was crucial for transcription of contractile genes and suppression of pro-proliferative and anti-apoptotic genes. Lungs from mice with low or absent PKGI (Prkg1(+/-) and Prkg1(-/-) mice) exhibited impaired BMP signaling, decreased contractile gene expression, and abnormal vascular remodeling. Conversely, cGMP stimulation of PKGI restored defective BMP signaling in rats with hypoxia-induced PAH, consistent with cGMP-elevating agents reversing vascular remodeling in this PAH model. Our results provide a mechanism for the therapeutic effects of cGMP-elevating agents in PAH and suggest that combining them with BMP mimetics may provide a novel, disease-modifying approach to PAH therapy."	"Interstitial cells of Cajal integrate excitatory and inhibitory neurotransmission with intestinal slow-wave activity. The enteric nervous system contains excitatory and inhibitory neurons, which control contraction and relaxation of smooth muscle cells as well as gastrointestinal motor activity. Little is known about the exact cellular mechanisms of neuronal signal transduction to smooth muscle cells in the gut. Here we generate a c-Kit(CreERT2) knock-in allele to target a distinct population of pacemaker cells called interstitial cells of Cajal. By genetic loss-of-function studies, we show that interstitial cells of Cajal, which generate spontaneous electrical slow waves and thus rhythmic contractions of the smooth musculature, are essential for transmission of signals from enteric neurons to gastrointestinal smooth muscle cells. Interstitial cells of Cajal, therefore, integrate excitatory and inhibitory neurotransmission with slow-wave activity to orchestrate peristaltic motor activity of the gut. Impairment of the function of interstitial cells of Cajal causes severe gastrointestinal motor disorders. The results of our study show at the genetic level that these disorders are not only due to loss of slow-wave activity but also due to disturbed neurotransmission."	"Insulin increases glomerular filtration barrier permeability through dimerization of protein kinase G type Iα subunits. The increase in the permeability of the glomerular barrier filtration to albumin is a well-known feature of diabetic microvasculature and a negative prognostic factor for vascular complications. However, the underlying mechanisms are incompletely understood. We demonstrated recently that superoxide anion generation increases dimerization of protein kinase G type Iα (PKGIα) subunits, leading to podocyte dysfunction. Here we investigated whether high insulin concentration is involved in PKGI-dependent hyperpermeability of the diabetic glomerular filtration barrier. We assessed changes in insulin-induced glomerular permeability by measuring glomerular capillary permeability to albumin in isolated glomeruli from Wistar and obese and lean Zucker rats and transmembrane albumin flux in cultured rat podocytes. Expression of PKGIα and upstream proteins was confirmed in the podocytes using Western blotting and immunofluorescence. Insulin (300nM, 5min) increased NAD(P)H-dependent glomerular albumin permeability in Wistar rats and PKGI-dependent transmembrane albumin flux in cultured podocytes. Podocyte exposure to insulin in non-reducing conditions increased PKGIα interprotein disulfide bond formation, altered the phosphorylation of the PKG target proteins MYPT1 and MLC, and disrupted the actin cytoskeleton. The role of NADPH oxidase (NOX) in insulin-induced reactive oxygen species (ROS) generation and insulin-evoked increases in albumin permeability in podocytes was confirmed with NOX2 and NOX4 siRNA. Glomerular albumin permeability was increased in hyperinsulinemic Zucker obese rats with isolated glomeruli showing increased expression of PKGIα and NOX4. Taken together, these data demonstrate that insulin increases glomerular barrier albumin permeability via a PKGI-dependent mechanism involving NAD(P)H-dependent generation of superoxide anion. These findings reveal a role for insulin in the pathophysiology of diabetic glomerular nephropathy."	"Orally applied doxazosin disturbed testosterone homeostasis and changed the transcriptional profile of steroidogenic machinery, cAMP/cGMP signalling and adrenergic receptors in Leydig cells of adult rats. Doxazosin (Doxa) is an α1-selective adrenergic receptor (ADR) antagonist widely used, alone or in combination, to treat high blood pressure, benign prostatic hyperplasia symptoms, and recently has been suggested as a potential drug for prostate cancer prevention/treatment. This study was designed to evaluate the effect of in vivo Doxa po-application, in clinically relevant dose, on: (i) steroidogenic machinery homeostasis; (ii) cAMP/cGMP signalling; (iii) transcription profile of ADR in Leydig cells of adult rats. The results showed that po-application of Doxa for once (1×Doxa), or for two (2×Doxa) or 10 (10×Doxa) consecutive days significantly disturbed steroidogenic machinery homeostasis in Leydig cells. Doxa po-application significantly decreased circulating luteinizing hormone and androgens levels. The level of androgens in testicular interstitial fluid and that extracted from testes obtained from 1×Doxa/2×Doxa rats decreased, although it remained unchanged in 10×Doxa rats. Similarly, the ex vivo basal androgen production followed in testes isolated from 1×Doxa/2×Doxa rats decreased, while remained unchanged in 10×Doxa rats. Differently, ex vivo testosterone production and steroidogenic capacity of Leydig cells isolated from 1×Doxa/2×Doxa rats was stimulated, while 10×Doxa had opposite effect. In the same cells, cAMP content/release showed similar stimulatory effect, but back to control level in Leydig cells of 10×Doxa. 1×Doxa/2×Doxa decreased transcripts for cAMP specific phosphodiesterases Pde7b/Pde8b, whereas 10×Doxa increased Pde4d. All types of treatment reduced the expression of genes encoding protein kinase A (PRKA) regulatory subunit (Prkar2b), whereas only 10×Doxa stimulated catalytic subunit (Prkaca). Doxa application more affected cGMP signalling: stimulated transcription of constitutive nitric oxide synthases (Nos1, Nos3) in time-dependent manner, whereas reduced inducible Nos2. 10×Doxa increased guanylyl cyclase 1 transcript and PRKG1 protein in Leydig cells. Orally applied Doxa significantly disturbed the transcriptional 'signature' of steroidogenic machinery, cAMP/cGMP signalling and ADRs and β-ADRs kinases in Leydig cells, thus giving new molecular insights into the role of cAMP/cGMP/adrenalin signalling in Leydig cells homeostasis."	"Sildenafil potentiates bone morphogenetic protein signaling in pulmonary arterial smooth muscle cells and in experimental pulmonary hypertension. Mutations in the bone morphogenetic protein type II receptor (BMPR-II) are responsible for the majority of cases of heritable pulmonary arterial hypertension (PAH), and BMPR-II deficiency contributes to idiopathic and experimental forms of PAH. Sildenafil, a potent type-5 nucleotide-dependent phosphodiesterase inhibitor, is an established treatment for PAH, but whether sildenafil affects bone morphogenetic protein (BMP) signaling in the pulmonary circulation remains unknown. Studies were undertaken in human pulmonary arterial smooth muscle cells (PASMCs) and in vivo in the monocrotaline rat model of PAH. In PASMCs, sildenafil enhanced BMP4-induced phosphorylation of Smad1/5, Smad nuclear localization, and Inhibitor of DNA binding protein 1 gene and protein expression. This effect was mimicked by 8-bromo-cyclic GMP. Pharmacological inhibition or small interfering RNA knockdown of cyclic GMP-dependent protein kinase I inhibited the effect of sildenafil on BMP signaling. In functional studies, we observed that sildenafil potentiated the antiproliferative effects of BMP4 on PASMC proliferation. Furthermore, sildenafil restored the antiproliferative response to BMP4 in PASMCs harboring mutations in BMPR-II. In the monocrotaline rat model of PAH, which is characterized by BMPR-II deficiency, sildenafil prevented the development of pulmonary hypertension and vascular remodeling, and partly restored Smad1/5 phosphorylation and Inhibitor of DNA binding protein 1 gene expression in vivo in monocrotaline exposed rat lungs. Sildenafil enhances canonical BMP signaling via cyclic GMP and cyclic GMP-dependent protein kinase I in vitro and in vivo, and partly restores deficient BMP signaling in BMPR-II mutant PASMCs. Our findings demonstrate a novel mechanism of action of sildenafil in the treatment of PAH and suggest that targeting BMP signaling may be beneficial in this disease."	"Nitroglycerin fails to lower blood pressure in redox-dead Cys42Ser PKG1α knock-in mouse. Although nitroglycerin has remained in clinical use since 1879, the mechanism by which it relaxes blood vessels to lower blood pressure remains incompletely understood. Nitroglycerin undergoes metabolism that generates several reaction products, including oxidants, and this bioactivation process is essential for vasodilation. Protein kinase G (PKG) mediates classic nitric oxide-dependent vasorelaxation, but the 1α isoform is also independently activated by oxidation that involves interprotein disulfide formation within this homodimeric protein complex. We hypothesized that nitroglycerin-induced vasodilation is mediated by disulfide activation of PKG1α. Treating smooth muscle cells or isolated blood vessels with nitroglycerin caused PKG1α disulfide dimerization. PKG1α disulfide formation was increased in wild-type mouse aortas by in vivo nitroglycerin treatment, but this oxidation was lost as tolerance developed. To establish whether kinase oxidation underlies nitroglycerin-induced vasodilation in vivo, we used a Cys42Ser PKG1α knock-in mouse that cannot transduce oxidant signals because it does not contain the vital redox-sensing thiol. This redox-dead knock-in mouse was substantively deficient in hypotensive response to nitroglycerin compared with wild-type littermates as measured in vivo by radiotelemetry. Resistance blood vessels from knock-ins were markedly less sensitive to nitroglycerin-induced vasodilation (EC(50)=39.2 ± 10.7 μmol/L) than wild-types (EC(50)=12.1 ± 2.9 μmol/L). Furthermore, after ≈24 hours of treatment, wild-type controls stopped vasodilating to nitroglycerin, and the vascular sensitivity to nitroglycerin was decreased, whereas this tolerance phenomenon, which routinely hampers the management of hypertensive patients, was absent in knock-ins. PKG1α disulfide formation is a significant mediator of nitroglycerin-induced vasodilation, and tolerance to nitroglycerin is associated with loss of kinase oxidation."	"[Genome-wide association study with memory measures as a quantitative trait locus for schizophrenia]. To assess the association between gene polymorphisms and memory function through a genome-wide association study (GWAS) of schizophrenia and control group. Memory cognition was used as a quantitative trait (QT). Ninty-eight subjects with chronic schizophrenia and 60 matched controls were genotyped with HumanHap660 Bead Array. The results were correlated with quantitative traits including memory and memory delay. Five candidate genes, including RASGRF2 (rs401758, P = 8.03×10(-5)), PLCG2 (rs7185362, P= 4.54×10(-5)), LMO1 (rs484161, P=9.80×10(-7), CSMD1 (rs2469383, P= 2.77×10(-6)) and PRKG1 (rs7898516, P=6.94×10(-5)) were associated with memory cognition deficits. Using memory cognition as a quantitative trait, this Genome- wide association study has identified 5 susceptibility loci. With their association with nervous system development, neuronal growth, axon guidance and plasticity, brain development, above loci may play a role in the development of memory dysfunction in schizophrenia."	"Protein kinase G-I deficiency induces pulmonary hypertension through Rho A/Rho kinase activation. Protein kinase G (PKG) plays an important role in the regulation of vascular smooth cell contractility and is a critical mediator of nitric oxide signaling, which regulates cardiovascular homeostasis. PKG-I-knockout (Prkg1(-/-)) mice exhibit impaired nitric oxide/cGMP-dependent vasorelaxation and systemic hypertension. However, it remains unknown whether PKG-I deficiency induces pulmonary hypertension. In this study, we characterized the hypertensive pulmonary phenotypes in Prkg1(-/-) mice and delineated the underlying molecular basis. We observed a significant increase in right ventricular systolic pressure in Prkg1(-/-) mice in the absence of systemic hypertension and left-sided heart dysfunction. In addition, we observed marked muscularization of distal pulmonary vessels in Prkg1(-/-) mice. Microangiography revealed impaired integrity of the pulmonary vasculature in Prkg1(-/-) mice. Mechanistically, PKG-I-mediated phosphorylation of Rho A Ser188 was markedly decreased, and the resultant Rho A activation was significantly increased in Prkg1(-/-) lung tissues, which resulted in Rho kinase activation. The i.t. administration of fasudil, a Rho kinase inhibitor, reversed the hypertensive pulmonary phenotype in Prkg1(-/-) mice. Taken together, these data show that PKG-I deficiency induces pulmonary hypertension through Rho A/Rho kinase activation-mediated vasoconstriction and pulmonary vascular remodeling."	"cGMP-dependent protein kinase I promotes cell apoptosis through hyperactivation of death-associated protein kinase 2. cGMP-dependent protein kinase-I (cGK-I) induces apoptosis in various cancer cell lines. However, the signaling mechanisms involved remain unknown. Using protein microarray technology, we identified a novel cGK substrate, death-associated protein kinase 2 (DAPK2), which is a Ca(2+)/calmodulin-regulated serine/threonine kinase. cGK-I phosphorylated DAPK2 at Ser(299), Ser(367) and Ser(368). Interestingly, a phospho-mimic mutant, DAPK2 S299D, significantly enhanced its kinase activity in the absence of Ca(2+)/calmodulin, while a S367D/S368D mutant did not. Overexpression of DAPK2 S299D also resulted in a twofold increase in apoptosis of human breast cancer MCF-7 cells as compared with wild-type DAPK2. These results suggest that DAPK2 is one of the targets of cGK-I in apoptosis induction."	"cGMP-dependent protein kinase I is involved in neurite outgrowth via a Rho effector, rhotekin, in Neuro2A neuroblastoma cells. Although the cGMP/cGMP-dependent protein kinase (cGK) signaling is involved in the regulation of neurite outgrowth, its mechanism remains to be clarified. In this study, we identified a Rho effector, rhotekin, as a cGK-I-interacting protein. Rhotekin was also a substrate for cGK-Iα. In neurite-extended Neuro2A neuroblastoma cells, cGK-Iα and rhotekin were colocalized in the plasma membrane and extended neurites, while treatment with cGMP resulted in translocation of rhotekin to the cytoplasm. In addition, we found that cGK-Iα and rhotekin synergistically suppressed Rho-induced neurite retraction. Our findings suggest that cGK-Iα interacts with and phosphorylates rhotekin, thereby contributing to neurite outgrowth regulation."	"Mechanisms for enhanced endothelium-derived hyperpolarizing factor-mediated responses in microvessels in mice. Endothelium-derived relaxing factors play an important role in cardiovascular homeostasis. Among them, endothelium-derived hyperpolarizing factor (EDHF) is important especially in microcirculation. It has previously been demonstrated that endothelium-derived hydrogen peroxide (H(2)O(2)) is an EDHF in animals and humans and that endothelial nitric oxide synthase (eNOS) plays diverse roles as a nitric oxide (NO) generating system in conduit arteries and as an EDHF/H(2)O(2) generating system in microvessels. As compared with NO-mediated responses, those by EDHF are resistant to atherosclerosis, contributing to the maintenance of cardiovascular homeostasis. The aim of this study is to elucidate the molecular mechanisms for enhanced EDHF-mediated responses in microvessels. This study used male wild-type mice and caveolin-1-deficient mice (caveolin-1(-/-) mice). In the endothelium, eNOS was functionally suppressed in mesenteric arteries (microvessels) compared with the aorta (conduit arteries), for which Ca(2+)/calmodulin-dependent protein kinase kinase β (CaMKKβ) and caveolin-1 are involved, as EDHF-mediated responses were inhibited by STO-609 (an inhibitor of CaMKKβ) and in caveolin-1(-/-) mice, respectively. In vascular smooth muscle, relaxation responses to H(2)O(2) were enhanced through a protein kinase G1α (PKG1α)-mediated mechanism in mesenteric arteries compared with the aorta, as they were inhibited by Rp-8-Br-cGMPS (an inhibitor of PKG1α). These results indicate that CaMKKβ, caveolin-1, and PKG1α are substantially involved in the mechanisms for the enhanced EDHF-mediated responses in microvessels in mice."	"Transient rise of serum testosterone level after single sildenafil treatment of adult male rats. Phosphodiesterase type 5 (PDE5) inhibitors have been established in therapy for a variety of physiological disorders including erectile dysfunction. Despite its popularity and wide usage in erectile dysfunction treatment, the short-term effect of PDE5 inhibition on Leydig cell functionality and testosterone dynamics is missing. This study was designed to assess the acute in vivo effects of sildenafil citrate (Viagra) treatment on testosterone production. Male adult rats were given sildenafil (1.25 mg/kg BW) per os, and testosterone production were analyzed 30, 60, 120, and 180 minutes after treatment. Additionally, in vitro effect of sildenafil extract on Leydig cell steroidogenesis was estimated. The formation of testicular interstitial fluid (TIF), and testosterone, cyclic guanosine monophosphate (cGMP), cyclic adenosine monophosphate (cAMP) content was followed. Occurrence and phosphorylation of mature steroidogenic acute regulatory protein (StAR) and interaction with protein kinase G 1 (PRKG1) were assessed by immunoprecipitation and Western blot. Serum testosterone was increased 60 and 120 minutes after sildenafil treatment. In 60 minutes, TIF volume was doubled and stayed increased till the end of the experimental period. cGMP and testosterone content in TIF were increased 30 minutes after treatment, and cAMP decreased in 60 minutes. Further, sildenafil-induced stimulation of testosterone production was abolished by ex vivo addition of PRKG1 inhibitor but not by protein kinase A inhibitor. Sildenafil treatment increased the level of phosphorylated and total StAR protein. Moreover, co-immunoprecipitation of StAR and PRKG1 was increased following sildenafil treatment suggesting the active role of this kinase in initiation of testosterone synthesis. Additionally, sildenafil extract applied in vitro on primary Leydig cell culture increased cGMP accumulation and testosterone production in time- and dose-dependent manner without effect on cAMP level. Acute sildenafil treatment enlarged TIF volume but also stimulated testosterone production which may be significant considering the positive testosterone effect in regulation of sexual activity."	"Presynaptically localized cyclic GMP-dependent protein kinase 1 is a key determinant of spinal synaptic potentiation and pain hypersensitivity. Synaptic long-term potentiation (LTP) at spinal neurons directly communicating pain-specific inputs from the periphery to the brain has been proposed to serve as a trigger for pain hypersensitivity in pathological states. Previous studies have functionally implicated the NMDA receptor-NO pathway and the downstream second messenger, cGMP, in these processes. Because cGMP can broadly influence diverse ion-channels, kinases, and phosphodiesterases, pre- as well as post-synaptically, the precise identity of cGMP targets mediating spinal LTP, their mechanisms of action, and their locus in the spinal circuitry are still unclear. Here, we found that Protein Kinase G1 (PKG-I) localized presynaptically in nociceptor terminals plays an essential role in the expression of spinal LTP. Using the Cre-lox P system, we generated nociceptor-specific knockout mice lacking PKG-I specifically in presynaptic terminals of nociceptors in the spinal cord, but not in post-synaptic neurons or elsewhere (SNS-PKG-I(-/-) mice). Patch clamp recordings showed that activity-induced LTP at identified synapses between nociceptors and spinal neurons projecting to the periaqueductal grey (PAG) was completely abolished in SNS-PKG-I(-/-) mice, although basal synaptic transmission was not affected. Analyses of synaptic failure rates and paired-pulse ratios indicated a role for presynaptic PKG-I in regulating the probability of neurotransmitter release. Inositol 1,4,5-triphosphate receptor 1 and myosin light chain kinase were recruited as key phosphorylation targets of presynaptic PKG-I in nociceptive neurons. Finally, behavioural analyses in vivo showed marked defects in SNS-PKG-I(-/-) mice in several models of activity-induced nociceptive hypersensitivity, and pharmacological studies identified a clear contribution of PKG-I expressed in spinal terminals of nociceptors. Our results thus indicate that presynaptic mechanisms involving an increase in release probability from nociceptors are operational in the expression of synaptic LTP on spinal-PAG projection neurons and that PKG-I localized in presynaptic nociceptor terminals plays an essential role in this process to regulate pain sensitivity."	"cGMP-dependent protein kinase Iα transfection inhibits hypoxia-induced migration, phenotype modulation and annexins A1 expression in human pulmonary artery smooth muscle cells. Our previous work has demonstrated that the cellular phenotype changes of human pulmonary artery smooth muscle cells (PASMCs) play an important role during pulmonary vascular remodelling. However, little is known about the role of PASMCs phenotype modulation in the course of hypoxia-induced migration and its behind molecular mechanisms. In this study, we have shown that cGMP-dependent protein kinase (PKG) Iα transfection significantly attenuated the hypoxia-induced down-regulation of the expressions of SM-α-actin, MHC and calponin. Hypoxia-induced PASMC migration was also suppressed by PKGIα overexpression. Furthermore, this overexpression attenuated ANX A1 upregulation under hypoxic conditions. All those effects were reversed by a PKG inhibitor KT5823. Our data indicate that manipulating upstream entity e.g., PKGIa, may have a potential therapeutic value to prevent hypoxia-associated pulmonary arterial remodeling for pulmonary hypertension development."	"cGMP-Prkg1 signaling and Pde5 inhibition shelter cochlear hair cells and hearing function. Noise-induced hearing loss (NIHL) is a global health hazard with considerable pathophysiological and social consequences that has no effective treatment. In the heart, lung and other organs, cyclic guanosine monophosphate (cGMP) facilitates protective processes in response to traumatic events. We therefore analyzed NIHL in mice with a genetic deletion of the gene encoding cGMP-dependent protein kinase type I (Prkg1) and found a greater vulnerability to and markedly less recovery from NIHL in these mice as compared to mice without the deletion. Prkg1 was expressed in the sensory cells and neurons of the inner ear of wild-type mice, and its expression partly overlapped with the expression profile of cGMP-hydrolyzing phosphodiesterase 5 (Pde5). Treatment of rats and wild-type mice with the Pde5 inhibitor vardenafil almost completely prevented NIHL and caused a Prkg1-dependent upregulation of poly (ADP-ribose) in hair cells and the spiral ganglion, suggesting an endogenous protective cGMP-Prkg1 signaling pathway that culminates in the activation of poly (ADP-ribose) polymerase. These data suggest vardenafil or related drugs as possible candidates for the treatment of NIHL."	"Neuronal cGMP kinase I is essential for stimulation of duodenal bicarbonate secretion by luminal acid. Brief contact of the duodenal mucosa with luminal acid elicits a long-lasting bicarbonate (HCO(3)(-)) secretory response, which is believed to be the primary protective mechanism against mucosal damage. Here, we show that cGMP-dependent protein kinase type I-knockout (cGKI(-/-)) mice are unable to respond to a physiological H(+) stimulus with a HCO(3)(-) secretory response and spontaneously develop duodenal ulcerations. Smooth muscle-selective cGKI knock-in rescued the motility disturbance but not the defective HCO(3)(-) secretion. Proton-induced HCO(3)(-) secretion was not attenuated by selective inactivation of the cGKI gene in interstitial cells of Cajal or in enterocytes, but was abolished by inactivation of cGKI in neurons (ncGKI(-/-)). cGKI was expressed in the brainstem nucleus tractus solitarius that connects the afferent with the efferent N. vagus. Accordingly, truncation of the subdiaphragmal N. vagus significantly diminished proton-induced HCO(3)(-) secretion in wild-type mice, whereas stimulation of the subdiaphragmal N. vagus elicited a similar HCO(3)(-) secretory response in cGKI(-/-), ncGKI(-/-) and wild-type mice. These findings show that protection of the duodenum from acid injury requires neuronal cGKI."	"Single atom substitution in mouse protein kinase G eliminates oxidant sensing to cause hypertension. Blood pressure regulation is crucial for the maintenance of health, and hypertension is a risk factor for myocardial infarction, heart failure, stroke and renal disease. Nitric oxide (NO) and prostacyclin trigger well-defined vasodilator pathways; however, substantial vasorelaxation in response to agents such as acetylcholine persists when the synthesis of these molecules is prevented. This remaining vasorelaxation activity, termed endothelium-derived hyperpolarizing factor (EDHF), is more prevalent in resistance than in conduit blood vessels and is considered a major mechanism for blood pressure control. Hydrogen peroxide (H2O2) has been shown to be a major component of EDHF in several vascular beds in multiple species, including in humans. H2O2 causes the formation of a disulfide bond between the two α subunits of protein kinase G I-α (PKGI-α), which activates the kinase independently of the NO-cyclic guanosine monophosphate (cGMP) pathway and is coupled to vasodilation. To test the importance of PKGI-α oxidation in the EDHF mechanism and blood pressure control in vivo, we generated a knock-in mouse expressing only a C42S 'redox-dead' version of PKGI-α. This amino acid substitution, a single-atom change (an oxygen atom replacing a sulfur atom), blocked the vasodilatory action of H2O2 on resistance vessels and resulted in hypertension in vivo."	"Regulator of G-protein signaling 18 integrates activating and inhibitory signaling in platelets. Regulator of G-protein signaling 18 (RGS18) is a GTPase-activating protein for the G-α-q and G-α-i subunits of heterotrimeric G-proteins that turns off signaling by G-protein coupled receptors. RGS18 is highly expressed in platelets. In the present study, we show that the 14-3-3γ protein binds to phosphorylated serines 49 and 218 of RGS18. Platelet activation by thrombin, thromboxane A2, or ADP stimulates the association of 14-3-3 and RGS18, probably by increasing the phosphorylation of serine 49. In contrast, treatment of platelets with prostacyclin and nitric oxide, which trigger inhibitory cyclic nucleotide signaling involving cyclic AMP-dependent protein kinase A (PKA) and cyclic GMP-dependent protein kinase I (PKGI), induces the phosphorylation of serine 216 of RGS18 and the detachment of 14-3-3. Serine 216 phosphorylation is able to block 14-3-3 binding to RGS18 even in the presence of thrombin, thromboxane A2, or ADP. 14-3-3-deficient RGS18 is more active compared with 14-3-3-bound RGS18, leading to a more pronounced inhibition of thrombin-induced release of calcium ions from intracellular stores. Therefore, PKA- and PKGI-mediated detachment of 14-3-3 activates RGS18 to block Gq-dependent calcium signaling. These findings indicate cross-talk between platelet activation and inhibition pathways at the level of RGS18 and Gq."	"Brief hyperoxia increases mitochondrial oxidation and increases phosphodiesterase 5 activity in fetal pulmonary artery smooth muscle cells. Oxygen is a pulmonary vasodilator, but data suggest high O(2) concentrations impede that response. We previously reported 24 h of 100% O(2) increased phosphodiesterase 5 (PDE5) activity in fetal pulmonary artery smooth muscle cells (FPASMC) and in ventilated neonatal lambs. PDE5 degrades cyclic GMP (cGMP) and inhibits nitric oxide (NO)-mediated cGMP-dependent vasorelaxation. We sought to determine the mechanism by which hyperoxia initiates reactive oxygen species (ROS) production and regulates PDE5. Thirty minutes of hyperoxia increased mitochondrial ROS versus normoxia (30.3±1.7% vs. 21.1±2.8%), but had no effect on cytosolic ROS, measured by roGFP, a ratiometric protein thiol redox sensor. Hyperoxia increased PDE5 activity (220±39%) and decreased cGMP responsiveness to NO (37±17%). Mitochondrial catalase overexpression attenuated hyperoxia-induced mitochondrial roGFP oxidation, compared to FPASMC infected with empty adenoviral vector (50±3% of control) or mitochondrial superoxide dismutase. MitoTEMPO, mitochondrial catalase, and DT-3, a cGMP-dependent protein kinase I alpha inhibitor, decreased PDE5 activity (32±13%, 26±21%, and 63±10% of control, respectively), and restored cGMP responsiveness to NO (147±16%,172±29%, and 189±43% of control, respectively). C57Bl6 mice exposed to 90%-100% O(2) for 45 min±mechanical ventilation had increased PA PDE5 activity (206±39% and 235±75%, respectively). This is the first description that hyperoxia induces ROS in the mitochondrial matrix prior to the cytosol. Our results indicate that short hyperoxia exposures can produce significant changes in critical cellular signaling pathways. These results indicate that mitochondrial matrix oxidant signals generated during hyperoxia, specifically H(2)O(2), activate PDE5 in a cGMP-dependent protein kinase-dependent manner in pulmonary vascular smooth muscle cells."	"Over-expression of PKGIα inhibits hypoxia-induced proliferation, Akt activation, and phenotype modulation of human PASMCs: the role of phenotype modulation of PASMCs in pulmonary vascular remodeling. The proliferation of pulmonary artery smooth muscle cells (PASMCs) plays a role in pulmonary vascular remodeling (PVR). Recently, it was shown that vascular smooth muscular cell phenotype modulation is important for their proliferation in other diseases. However, little is known about the role of human PASMC phenotype modulation in the proliferation induced by hypoxia and its molecular mechanism during PVR. In this study, we found using primary cultured human PASMCs that hypoxia suppressed the expression of endogenous PKGIα, which was reversed by transfection with a recombinant adenovirus containing the full-length cDNA of PKGIα (Ad-PKGIα). Ad-PKGIα transfection significantly attenuated the hypoxia-induced downregulation of the expression of smooth muscle α-actin (SM-α-actin), myosin heavy chain (MHC) and calponin in PASMCs, indicating that hypoxia-induced phenotype modulation was blocked. Furthermore, flow cytometry and (3)H-TdR incorporation demonstrated that hypoxia-induced PASMC proliferation was suppressed by upregulation of PKGIα. These results suggest that enhanced PKGIα expression inhibited hypoxia-induced PASMC phenotype modulation and that it could reverse the proliferation of PASMCs significantly. Moreover, our previous work has demonstrated that Akt protein is activated in the process of hypoxia-induced proliferation of human PASMCs. Interestingly, we found that Akt was not activated by hypoxia when PASMC phenotype modulation was blocked by Ad-PKGIα. This result suggests that blocking phenotype modulation might be a key up-stream regulatory target."	"Induction of apoptosis by type Iβ protein kinase G in the human breast cancer cell lines MCF-7 and MDA-MB-468. Activation of protein kinase G (PKG) by cyclic guanosine 3,5-monophosphate (cGMP) has become of considerable interest as a novel molecular approach for the induction of apoptosis in cancer cells. This study was conducted to investigate the role of PKG isoforms in the regulation of cell growth in human breast cancer cell lines MCF-7 and MDA-MB468. The expression levels of PKG isoforms were also examined using real-time reverse transcriptase polymerase chain reaction. No differences in the gene expression of PKG isoforms were observed between MCF-7 and MDA-MB-468 cells. To investigate the effects of PKG isoforms on the regulation of cell growth, the cGMP analogues 8-APT-cGMP (PKGIα activator), 8-Br-PET-cGMP (PKGIβ activator) and 8-pCPT-cGMP (PKGII activator) were employed. Apoptosis was assessed with the Annexin-V-propidium iodide (PI) staining, cell cycle analysis and caspase-3/9 activity assay. Treatment of MCF-7 and MDA-MB-468 cells with 8-Br-PET-cGMP resulted in a concentration-dependent cell growth inhibition and apoptosis, whereas neither PKGIα nor PKGII activators had any effect on the cell growth. The role of PKGIβ in the inhibition of cell growth was confirmed using PKGI and PKGII inhibitors. The present study is the first to demonstrate the involvement of PKGIβ in the inhibition of cell growth and induction of apoptosis in breast cancer cells."	"The structural determinations of the leucine zipper coiled-coil domains of the cGMP-dependent protein kinase Iα and its interaction with the myosin binding subunit of the myosin light chains phosphase. Physiologic relaxation of vascular smooth muscle is induced by the cyclic guanosine monophosphate (cGMP)- dependent protein kinase Iα enzyme (cGKIα), which activates myosin phosphatase (MLCP). This activation process is thought to occur through the interaction involving both N- and C-terminal leucine zipper coiled-coil (LZCC) domains of the kinase enzyme (cGKIα) with the myosin binding subunit (MBS) of MLCP. In this review, I summarize how to define the LZCC domains in both N-terminal cGKIα(1-59) and C-terminal MBS proteins using predictive and experimental methods, how to make a rapid and accurate structure determination of a cGKIα(1-59) molecule using NMR's residual dipolar coupling (RDC) measurements, and how to indentify the existence of a weak protein interaction between N-terminal LZCC domain (cGKIα(1-59)) and a LZCC domain (MBSCT42) within the C-terminal MBS. In addition, the location and orientation of the residues in LZCC proteins can be readily visualized using a novel diagram, the so-called &quot;wenxiang diagram&quot;, which is more advantageous than traditional helical wheel diagrams in analyzing LZCC protein structures and their action mechanisms. Using the composed wenxiang diagrams, we have characterized the interaction between cGKIα(1- 59) and another LZCC molecule (MBSCT42), and deduced that the most affected residues of these two LZCC molecules might be at the positions d, a, e and g. These studies and findings are also covered in this review. It is intriguing to see that the successful incorporation of wenxiang diagrams and NMR spectroscopy in the LZCC structural and functional studies may provide some insights into protein-protein interaction mechanisms."	"Genes involved in vasoconstriction and vasodilation system affect salt-sensitive hypertension. The importance of excess salt intake in the pathogenesis of hypertension is widely recognized. Blood pressure is controlled primarily by salt and water balance because of the infinite gain property of the kidney to rapidly eliminate excess fluid and salt. Up to fifty percent of patients with essential hypertension are salt-sensitive, as manifested by a rise in blood pressure with salt loading. We conducted a two-stage genetic analysis in hypertensive patients very accurately phenotyped for their salt-sensitivity. All newly discovered never treated before, essential hypertensives underwent an acute salt load to monitor the simultaneous changes in blood pressure and renal sodium excretion. The first stage consisted in an association analysis of genotyping data derived from genome-wide array on 329 subjects. Principal Component Analysis demonstrated that this population was homogenous. Among the strongest results, we detected a cluster of SNPs located in the first introns of PRKG1 gene (rs7897633, p = 2.34E-05) associated with variation in diastolic blood pressure after acute salt load. We further focused on two genetic loci, SLC24A3 and SLC8A1 (plasma membrane sodium/calcium exchange proteins, NCKX3 and NCX1, respectively) with a functional relationship with the previous gene and associated to variations in systolic blood pressure (the imputed rs3790261, p = 4.55E-06; and rs434082, p = 4.7E-03). In stage 2, we characterized 159 more patients for the SNPs in PRKG1, SLC24A3 and SLC8A1. Combined analysis showed an epistatic interaction of SNPs in SLC24A3 and SLC8A1 on the pressure-natriuresis (p interaction = 1.55E-04, p model = 3.35E-05), supporting their pathophysiological link in cellular calcium homeostasis. In conclusions, these findings point to a clear association between body sodium-blood pressure relations and molecules modulating the contractile state of vascular cells through an increase in cytoplasmic calcium concentration."	"Co-crystal structures of PKG Iβ (92-227) with cGMP and cAMP reveal the molecular details of cyclic-nucleotide binding. Cyclic GMP-dependent protein kinases (PKGs) are central mediators of the NO-cGMP signaling pathway and phosphorylate downstream substrates that are crucial for regulating smooth muscle tone, platelet activation, nociception and memory formation. As one of the main receptors for cGMP, PKGs mediate most of the effects of cGMP elevating drugs, such as nitric oxide-releasing agents and phosphodiesterase inhibitors which are used for the treatment of angina pectoris and erectile dysfunction, respectively. We have investigated the mechanism of cyclic nucleotide binding to PKG by determining crystal structures of the amino-terminal cyclic nucleotide-binding domain (CNBD-A) of human PKG I bound to either cGMP or cAMP. We also determined the structure of CNBD-A in the absence of bound nucleotide. The crystal structures of CNBD-A with bound cAMP or cGMP reveal that cAMP binds in either syn or anti configurations whereas cGMP binds only in a syn configuration, with a conserved threonine residue anchoring both cyclic phosphate and guanine moieties. The structure of CNBD-A in the absence of bound cyclic nucleotide was similar to that of the cyclic nucleotide bound structures. Surprisingly, isothermal titration calorimetry experiments demonstrated that CNBD-A binds both cGMP and cAMP with a relatively high affinity, showing an approximately two-fold preference for cGMP. Our findings suggest that CNBD-A binds cGMP in the syn conformation through its interaction with Thr193 and an unusual cis-peptide forming residues Leu172 and Cys173. Although these studies provide the first structural insights into cyclic nucleotide binding to PKG, our ITC results show only a two-fold preference for cGMP, indicating that other domains are required for the previously reported cyclic nucleotide selectivity."	"Cyclic GMP signaling in rat urinary bladder, prostate, and epididymis: tissue-specific changes with aging and in response to Leydig cell depletion. Aging of the male reproductive system leads to changes in endocrine signaling and is frequently associated with the emergence of prostate hyperplasia and bladder dysfunctions. Recent reports highlight prostate and bladder as promising targets for therapeutic interventions with inhibitors of the cyclic GMP (cGMP)-degrading phosphodiesterase 5 (PDE5). However, the cGMP signaling system in these organs is as yet poorly characterized, and the possibility of age-related alterations has not been addressed. This study investigates key proteins of cGMP pathways in bladder, prostate, and epididymis of young (3 months) and old (23-24 months) Wistar rats. Local differences in the abundance of PDE5, soluble guanylyl cyclase (sGC) and particulate guanylyl cyclases (GC-A, GC-B), endothelial nitric oxide synthase, and cGMP-dependent protein kinase I (PRKG1 (cGKI)) revealed pronounced tissue-specific peculiarities. Although cGMP-generating enzymes were not affected by age in all organs, we recognized age-related decreases of PDE5 expression in bladder and a selective diminishment of membrane-associated PRKG1 in epididymis. In disagreement with published data, all cGMP pathway proteins including PDE5 are poorly expressed in prostate. However, prostatic PRKG1 expression increases with aging. Androgen withdrawal during temporary Leydig cell elimination induced a massive (&gt;12-fold) upregulation of PRKG1 in prostate but not in other (penis and epididymis) androgen-dependent organs. These findings identify PRKG1 as a key androgen-sensitive signaling protein in prostate of possible importance for growth regulation. The elucidated effects may have significance for age-associated pathologies in the male lower-urinary tract."	"Genetic ablation of cGMP-dependent protein kinase type I causes liver inflammation and fasting hyperglycemia. The nitric oxide/cGMP/cGMP-dependent protein kinase type I (cGKI) signaling pathway regulates cell functions that play a pivotal role in the pathogenesis of type 2 diabetes. However, the impact of a dysfunction of this pathway for glucose metabolism in vivo is unknown. The expression of cGKI in tissues relevant to insulin action was analyzed by immunohistochemistry. The metabolic consequences of a genetic deletion of cGKI were studied in mice that express cGKI selectively in smooth muscle but not in other cell types (cGKI-SM mice). In wild-type mice, cGKI protein was detected in hepatic stellate cells, but not in hepatocytes, skeletal muscle, fat cells, or pancreatic β-cells. Compared with control animals, cGKI-SM mice had higher energy expenditure in the light phase associated with lower body weight and fat mass and increased insulin sensitivity. Mutant mice also showed higher fasting glucose levels, whereas insulin levels and intraperitoneal glucose tolerance test results were similar to those in control animals. Interleukin (IL)-6 signaling was strongly activated in the liver of cGKI-SM mice as demonstrated by increased levels of IL-6, phospho-signal transducer and activator of transcription 3 (Tyr 705), suppressor of cytokine signaling-3, and serum amyloid A2. Insulin-stimulated tyrosine phosphorylation of the insulin receptor in the liver was impaired in cGKI-SM mice. The fraction of Mac-2-positive macrophages in the liver was significantly higher in cGKI-SM mice than in control mice. In contrast with cGKI-SM mice, conditional knockout mice lacking cGKI only in the nervous system were normal with respect to body weight, energy expenditure, fasting glucose, IL-6, and insulin action in the liver. Genetic deletion of cGKI in non-neuronal cells results in a complex metabolic phenotype, including liver inflammation and fasting hyperglycemia. Loss of cGKI in hepatic stellate cells may affect liver metabolism via a paracrine mechanism that involves enhanced macrophage infiltration and IL-6 signaling."	"Phosphodiesterase-5A (PDE5A) is localized to the endothelial caveolae and modulates NOS3 activity. It has been well demonstrated that phosphodiesterase-5A (PDE5A) is expressed in smooth muscle cells and plays an important role in regulation of vascular tone. The role of endothelial PDE5A, however, has not been yet characterized. The present study was undertaken to determine the presence, localization, and potential physiologic significance of PDE5A within vascular endothelial cells. We demonstrate primary location of human, mouse, and bovine endothelial PDE5A at or near caveolae. We found that the spatial localization of PDE5A at the level of caveolin-rich lipid rafts allows for a feedback loop between endothelial PDE5A and nitric oxide synthase (NOS3). Treatment of human endothelium with PDE5A inhibitors resulted in a significant increase in NOS3 activity, whereas overexpression of PDE5A using an adenoviral vector, both in vivo and in cell culture, resulted in decreased NOS3 activity and endothelium-dependent vasodilation. The molecular mechanism responsible for these interactions is primarily regulated by cGMP-dependent second messenger. PDE5A overexpression also resulted in a significant decrease in protein kinase 1 (PKG1) activity. Overexpression of PKG1 rapidly activated NOS3, whereas silencing of the PKG1 gene with siRNA inhibited both NOS3 phosphorylation (S1179) and activity, indicating a novel role for PKG1 in direct regulation of NOS3. Our data collectively suggest another target for PDE5A inhibition in endothelial dysfunction and provide another physiologic significance for PDE5A in the modulation of endothelial-dependent flow-mediated vasodilation. Using both in vitro and in vivo models, as well as human data, we show that inhibition of endothelial PDE5A improves endothelial function."	"Functional regulation of transient receptor potential canonical 7 by cGMP-dependent protein kinase Iα. The cGMP/cGMP-dependent protein kinase (cGK) signaling pathway is implicated in the functional regulation of intracellular calcium levels. In the present study, we investigated the regulation of transient receptor potential canonical 7 (TRPC7) by the cGMP/cGK-I pathway. TRPC7 contains three putative cGK phosphorylation sites (Arg-Arg/Lys-Xaa-Ser/Thr). However, the role of cGK-I in the regulation of TRPC7 activity remains unclear. In vitro and in vivo kinase assays have revealed that cGK-Iα phosphorylates mouse TRPC7 but not mouse TRPC3. Site-directed mutagenesis analysis revealed that TRPC7 was phosphorylated by cGK-Iα at threonine 15. Phosphorylation of TRPC7 significantly suppressed carbachol-induced calcium influx and CREB phosphorylation. Furthermore, co-immunoprecipitation assay demonstrated that cGK-Iα interacted with the ankyrin repeat domain in the N terminus of TRPC7. cGK-Iβ also bound to TRPC7, while the type II regulatory subunit of cAMP-dependent protein kinase did not bind. These data indicate that cGK-Iα interacts with and phosphorylates TRPC7, contributing to the quick and accurate regulation of calcium influx and CREB phosphorylation."	"A guanosine 3',5'-cyclic monophosphate (cGMP) reporter system based on the G-kinase/CREB/CRE signal transduction pathway. Guanylate cyclases constitute a gene family of enzymes that synthesize the second messenger guanosine 3',5'-cyclic monophosphate (cGMP) and play important roles in diverse physiological functions. Here we report a novel, simple and highly sensitive method for measurement intracellular cGMP concentrations using a cAMP-responsive element (CRE) and cGMP-dependent protein kinase (cGK). Transient transfection of the CRE reporter plasmid, encoding a luciferase reporter gene under the control of a modified promoter containing a CRE, and a cGK expression vector into HEK293 cells followed by treatment with 8-bromo-cGMP showed a dose dependent increase in luciferase activity. Moreover, HEK293 cells expressing GC-A or GC-B natriuretic peptide receptors and harboring this reporter system responded to specific ligands in a dose dependent manner. Our results indicate that this reporter gene method enables high throughput screening of receptor-type GC selective agonists in the treatment of cardiovascular diseases and homeostatic dysfunctions."	"Essential roles of the nitric oxide (no)/cGMP/protein kinase G type-Iα (PKG-Iα) signaling pathway and the atrial natriuretic peptide (ANP)/cGMP/PKG-Iα autocrine loop in promoting proliferation and cell survival of OP9 bone marrow stromal cells. Inappropriate signaling conditions within bone marrow stromal cells (BMSCs) can lead to loss of BMSC survival, contributing to the loss of a proper micro-environmental niche for hematopoietic stem cells (HSCs), ultimately causing bone marrow failure. In the present study, we investigated the novel role of endogenous atrial natriuretic peptide (ANP) and the nitric oxide (NO)/cGMP/protein kinase G type-Iα (PKG-Iα) signaling pathway in regulating BMSC survival and proliferation, using the OP9 BMSC cell line commonly used for facilitating the differentiation of HSCs. Using an ANP-receptor blocker, endogenously produced ANP was found to promote cell proliferation and prevent apoptosis. NO donor SNAP (S-nitroso-N-acetylpenicillamine) at low concentrations (10 and 50 µM), which would moderately stimulate PKG activity, protected these BMSCs against spontaneous apoptosis. YC-1, a soluble guanylyl cyclase (sGC) activator, decreased the levels of apoptosis, similar to the cytoprotective effects of low-level NO. ODQ (1H-[1,2,4]oxadiazolo[4,3,-a]quinoxalin-1-one), which blocks endogenous NO-induced activation of sGC and thus lowers endogenous cGMP/PKG activity, significantly elevated apoptotic levels by 2.5- and three-fold. Pre-incubation with 8-Bromo-cGMP or ANP, which bypass the ODQ block, almost completely prevented the ODQ-induced apoptosis. A highly-specific PKG inhibitor, DT-3, at 20, and 30 µM, caused 1.5- and two-fold increases in apoptosis, respectively. ODQ and DT-3 also decreased BMSCs proliferation and colony formation. Small Interfering RNA gene knockdown of PKG-Iα increased apoptosis and decreased proliferation in BMSCs. The data suggest that basal NO/cGMP/PKG-Iα activity and autocrine ANP/cGMP/PKG-Iα are necessary for preserving OP9 cell survival and promoting cell proliferation and migration."	"Genome-wide analysis of Ollier disease: Is it all in the genes? Ollier disease is a rare, non-hereditary disorder which is characterized by the presence of multiple enchondromas (ECs), benign cartilaginous neoplasms arising within the medulla of the bone, with an asymmetric distribution. The risk of malignant transformation towards central chondrosarcoma (CS) is increased up to 35%. The aetiology of Ollier disease is unknown. We undertook genome-wide copy number and loss of heterozygosity (LOH) analysis using Affymetrix SNP 6.0 array on 37 tumours of 28 Ollier patients in combination with expression array using Illumina BeadArray v3.0 for 7 ECs of 6 patients. Non-recurrent EC specific copy number alterations were found at FAM86D, PRKG1 and ANKS1B. LOH with copy number loss of chromosome 6 was found in two ECs from two unrelated Ollier patients. One of these patients also had LOH at chromosome 3. However, no common genomic alterations were found for all ECs. Using an integration approach of SNP and expression array we identified loss as well as down regulation of POU5F1 and gain as well as up regulation of NIPBL. None of these candidate regions were affected in more than two Ollier patients suggesting these changes to be random secondary events in EC development. An increased number of genetic alterations and LOH were found in Ollier CS which mainly involves chromosomes 9p, 6q, 5q and 3p. We present the first genome-wide analysis of the largest international series of Ollier ECs and CS reported so far and demonstrate that copy number alterations and LOH are rare and non-recurrent in Ollier ECs while secondary CS are genetically unstable. One could predict that instead small deletions, point mutations or epigenetic mechanisms play a role in the origin of ECs of Ollier disease."	"miR-605 joins p53 network to form a p53:miR-605:Mdm2 positive feedback loop in response to stress. In cancers with wild-type (WT) p53 status, the function of p53 is inhibited through direct interaction with Mdm2 oncoprotein, a negative feedback loop to limit the function of p53. In response to cellular stress, p53 escapes the p53:Mdm2 negative feedback to accumulate rapidly to induce cell cycle arrest and apoptosis. We demonstrate herein that an microRNA miR-605 is a new component in the p53 gene network, being transcriptionally activated by p53 and post-transcriptionally repressing Mdm2. Activation of p53 upregulated miR-605 via interacting with the promoter region of the gene. Overexpression of miR-605 directly decreased Mdm2 expression at the post-transcriptional level but indirectly increased the transcriptional activity of p53 on miR-34a via downregulating Mdm2; knockdown of miR-605 did the opposite. Mdm2 inhibitor upregulated expression of both miR-34a and miR-605, which was mitigated by p53 inhibitor. miR-605 preferentially induced apoptosis in WT p53-expressing cells, an effect abolished by p53 inhibition. These results indicate that miR-605 acts to interrupt p53:Mdm2 interaction to create a positive feedback loop aiding rapid accumulation of p53 to facilitate its function in response to stress."	"Fibronectin upregulates cGMP-dependent protein kinase type Iβ through C/EBP transcription factor activation in contractile cells. The nitric oxide (NO)-soluble guanylate cyclase (sGC) pathway exerts most of its cellular actions through the activation of the cGMP-dependent protein kinase (PKG). Accumulation of extracellular matrix is one of the main structural changes in pathological conditions characterized by a decreased activity of this pathway, such as hypertension, diabetes, or aging, and it is a well-known fact that extracellular matrix proteins modulate cell phenotype through the interaction with membrane receptors such as integrins. The objectives of this study were 1) to evaluate whether extracellular matrix proteins, particularly fibronectin (FN), modulate PKG expression in contractile cells, 2) to analyze the mechanisms involved, and 3) to evaluate the functional consequences. FN increased type I PKG (PKG-I) protein content in human mesangial cells, an effect dependent on the interaction with β(1)-integrin. The FN upregulation of PKG-I protein content was due to increased mRNA expression, determined by augmented transcriptional activity of the PKG-I promoter region. Akt and the transcription factor CCAAT enhancer-binding protein (C/EBP) mediated the genesis of these changes. FN also increased PKG-I in another type of contractile cell, rat vascular smooth muscle cells (RVSMC). Tirofiban, a pharmacological analog of FN, increased PKG-I protein content in RVSMC and rat aortic walls and magnified the hypotensive effect of dibutyryl cGMP in conscious Wistar rats. The present results provide evidence of a mechanism able to increase PKG-I protein content in contractile cells. Elucidation of this novel mechanism provides a rationale for future pharmacotherapy in certain vascular diseases."	"A novel fluorescent transcriptional reporter for cell-based microarray assays. Cell-based microarrays have been used for a wide variety of assays including gain-of-function, loss-of-function and compound screening. Many of these assays have employed fluorescent proteins as reporters. These fluorescent reporter proteins can be monitored in living cells but have low sensitivity of detection compared to enzymatic reporters. Here we have described a novel transcriptional reporter assay using the alkaline phosphatase reporter enzyme and a fluorescent substrate (ELF-97) to screen for gain-of-function mutations in the type-I cGMP-dependent protein kinase (PRKG1). We have identified a constitutively active mutant of this enzyme in which a conserved Glu at position 81 was mutated to Lys."	"Myristoylation of cGMP-dependent protein kinase dictates isoform specificity for serotonin transporter regulation. By transporting serotonin (5-HT) into neurons and other cells, serotonin transporter (SERT) modulates the action of 5-HT at cell surface receptors. SERT itself is modulated by several processes, including the cGMP signaling pathway. Activation of SERT by cGMP requires the cGMP-dependent protein kinase (PKG). Here we show that in HeLa cells lacking endogenous PKG, expression of PKGIα or PKGIβ was required for 8-bromoguanosine-3',5'-cyclic monophosphate (8-Br-cGMP) to stimulate SERT phosphorylation and 5-HT influx. Catalytically inactive PKG mutants and wild-type PKGII did not support this stimulation. However, a mutant PKGII (G2A) that was not myristoylated substituted for functional PKGI, suggesting that myristoylation and subsequent membrane association blocked productive interaction with SERT. PKG also influenced SERT expression and localization. PKGI isoforms increased total and cell surface SERT levels, and PKGII decreased cell surface SERT without altering total expression. Remarkably, these changes did not require 8-Br-cGMP or functional kinase activity and were also observed with a SERT mutant resistant to activation by PKG. Both PKGIα and PKGIβ formed detergent-stable complexes with SERT, and this association did not require catalytic activity. The nonmyristoylated PKGII G2A mutant stimulated SERT expression similar to PKGI isoforms. These results suggest multiple mechanisms by which PKG can modulate SERT and demonstrate that the functional difference between PKG isoforms results from myristoylation of PKGII."	"Cyclic GMP kinase I modulates glucagon release from pancreatic α-cells. The physiologic significance of the nitric oxide (NO)/cGMP signaling pathway in islets is unclear. We hypothesized that cGMP-dependent protein kinase type I (cGKI) is directly involved in the secretion of islet hormones and glucose homeostasis. Gene-targeted mice that lack cGKI in islets (conventional cGKI mutants and cGKIα and Iβ rescue mice [α/βRM] that express cGKI only in smooth muscle) were studied in comparison to control (CTR) mice. cGKI expression was mapped in the endocrine pancreas by Western blot, immuno-histochemistry, and islet-specific recombination analysis. Insulin, glucagon secretion, and cytosolic Ca²(+) ([Ca²(+)](i)) were assayed by radioimmunoassay and FURA-2 measurements, respectively. Serum levels of islet hormones were analyzed at fasting and upon glucose challenge (2 g/kg) in vivo. Immunohistochemistry showed that cGKI is present in α- but not in β-cells in islets of Langerhans. Mice that lack α-cell cGKI had significantly elevated fasting glucose and glucagon levels, whereas serum insulin levels were unchanged. High glucose concentrations strongly suppressed the glucagon release in CTR mice, but had only a moderate effect on islets that lacked cGKI. 8-Br-cGMP reduced stimulated [Ca²(+)](i) levels and glucagon release rates of CTR islets at 0.5 mmol/l glucose, but was without effect on [Ca²(+)](i) or hormone release in cGKI-deficient islets. We propose that cGKI modulates glucagon release by suppression of [Ca²(+)](i) in α-cells."	"Nitric oxide stimulates human sperm motility via activation of the cyclic GMP/protein kinase G signaling pathway. Nitric oxide (NO), a modulator of several physiological processes, is involved in different human sperm functions. We have investigated whether NO may stimulate the motility of human spermatozoa via activation of the soluble guanylate cyclase (sGC)/cGMP pathway. Sperm samples obtained by masturbation from 70 normozoospermic patients were processed by the swim-up technique. The kinetic parameters of the motile sperm-rich fractions were assessed by computer-assisted sperm analysis. After a 30-90 min incubation, the NO donor S-nitrosoglutathione (GSNO) exerted a significant enhancing effect on progressive motility (77, 78, and 78% vs 66, 65, and 62% of the control at the corresponding time), straight linear velocity (44, 49, and 48 μm/s vs 34, 35, and 35.5 μm/s), curvilinear velocity (81, 83, and 84 μm/s vs 68 μm/s), and average path velocity (52, 57, and 54 μm/s vs 40, 42, and 42 μm/s) at 5 μM but not at lower concentrations, and in parallel increased the synthesis of cGMP. A similar effect was obtained with the NO donor spermine NONOate after 30 and 60 min. The GSNO-induced effects on sperm motility were abolished by 1H-[1,2,4]oxadiazolo-[4,3-a]quinoxalin-1-one (a specific sGC inhibitor) and mimicked by 8-bromo-cGMP (8-Br-cGMP; a cell-permeating cGMP analog); the treatment with Rp-8-Br-cGMPS (an inhibitor of cGMP-dependent protein kinases) prevented both the GSNO- and the 8-Br-cGMP-induced responses. On the contrary, we did not observe any effect of the cGMP/PRKG1 (PKG) pathway modulators on the onset of hyperactivated sperm motility. Our results suggest that NO stimulates human sperm motility via the activation of sGC, the subsequent synthesis of cGMP, and the activation of cGMP-dependent protein kinases."	"A whole-genome SNP association study of NCI60 cell line panel indicates a role of Ca2+ signaling in selenium resistance. Epidemiological studies have suggested an association between selenium intake and protection from a variety of cancer. Considering this clinical importance of selenium, we aimed to identify the genes associated with resistance to selenium treatment. We have applied a previous methodology developed by our group, which is based on the genetic and pharmacological data publicly available for the NCI60 cancer cell line panel. In short, we have categorized the NCI60 cell lines as selenium resistant and sensitive based on their growth inhibition (GI50) data. Then, we have utilized the Affymetrix 125K SNP chip data available and carried out a genome-wide case-control association study for the selenium sensitive and resistant NCI60 cell lines. Our results showed statistically significant association of four SNPs in 5q33-34, 10q11.2, 10q22.3 and 14q13.1 with selenium resistance. These SNPs were located in introns of the genes encoding for a kinase-scaffolding protein (AKAP6), a membrane protein (SGCD), a channel protein (KCNMA1), and a protein kinase (PRKG1). The knock-down of KCNMA1 by siRNA showed increased sensitivity to selenium in both LNCaP and PC3 cell lines. Furthermore, SNP-SNP interaction (epistasis) analysis indicated the interactions of the SNPs in AKAP6 with SGCD as well as SNPs in AKAP6 with KCNMA1 with each other, assuming additive genetic model. These genes were also all involved in the Ca(2+) signaling, which has a direct role in induction of apoptosis and induction of apoptosis in tumor cells is consistent with the chemopreventive action of selenium. Once our findings are further validated, this knowledge can be translated into clinics where individuals who can benefit from the chemopreventive characteristics of the selenium supplementation will be easily identified using a simple DNA analysis."	"Case-control genome-wide association study of attention-deficit/hyperactivity disorder. Although twin and family studies have shown attention-deficit/hyperactivity disorder (ADHD) to be highly heritable, genetic variants influencing the trait at a genome-wide significant level have yet to be identified. Thus additional genomewide association studies (GWAS) are needed. We used case-control analyses of 896 cases with DSM-IV ADHD genotyped using the Affymetrix 5.0 array and 2,455 repository controls screened for psychotic and bipolar symptoms genotyped using Affymetrix 6.0 arrays. A consensus SNP set was imputed using BEAGLE 3.0, resulting in an analysis dataset of 1,033,244 SNPs. Data were analyzed using a generalized linear model. No genome-wide significant associations were found. The most significant results implicated the following genes: PRKG1, FLNC, TCERG1L, PPM1H, NXPH1, PPM1H, CDH13, HK1, and HKDC1. The current analyses are a useful addition to the present literature and will make a valuable contribution to future meta-analyses. The candidate gene findings are consistent with a prior meta-analysis in suggesting that the effects of ADHD risk variants must, individually, be very small and/or include multiple rare alleles."	"[Adenovirus-mediated protein-kinase-GIalpha suppresses the hypoxia-induced proliferation and phenotype-switching of pulmonary arterial smooth muscle cell]. To observe the proliferation and phenotype-switching of pulmonary arterial smooth muscle cell (PASMC) induced by hypoxia and interfered by Ad-PKGIα. And to investigate the potential regulative role of PKGIα gene in the molecule mechanism of hypoxia pulmonary vessel remodeling (HPVR). To establish the pure PASMC cultured by tissue-sticking methods. Semi-quantitative reverse transcription and polymerase chain reaction (RT-PCR) and Western blot were used to examine the PKGIα mRNA and protein expression after PASMC were transfected by Ad-PKG. The mRNA and protein expressive change of smooth muscle alpha actin (SM-alpha-actin) determined the degree of cell phenotype-switching. The changes of PASMC proliferation were determined by flow cytometry and ³H-TdR incorporated way. Ad-PKGIα could transfect into PASMC and highly express. Hypoxia down-regulated the expression of SM-alpha-actin protein (44.25 ± 5.34 in normoxia, 32.18 ± 4.19 in 12 h hypoxia condition, 21.90 ± 2.44 in 24 h hypoxia condition, P &lt; 0.05), that could be blocked by the transfection of Ad-PKGIα. Hypoxia could push PASMC mitosis and proliferating (³H-TdR incorporated way: 7570 ± 371 in normoxia, 12,020 ± 831 in 12 h hypoxia condition, 14,924 ± 1491 in 24 h hypoxia condition, P &lt; 0.05), that could be blocked by the transfection of Ad-PKGIα, too. The results suggested that PKGIα signaling pathway might play an important role in the molecule mechanism of HPVR. And PKGIα gene might be a target point of gene therapy."	"Profiling the changes in signaling pathways in ascorbic acid/β-glycerophosphate-induced osteoblastic differentiation. Despite numerous reports on the ability of ascorbic acid and β-glycerophosphate (AA/β-GP) to induce osteoblast differentiation, little is known about the molecular mechanisms involved in this phenomenon. In this work, we used a peptide array containing specific consensus sequences (potential substrates) for protein kinases and traditional biochemical techniques to examine the signaling pathways modulated during AA/β-GP-induced osteoblast differentiation. The kinomic profile obtained after 7 days of treatment with AA/β-GP identified 18 kinase substrates with significantly enhanced or reduced phosphorylation. Peptide substrates for Akt, PI3K, PKC, BCR, ABL, PRKG1, PAK1, PAK2, ERK1, ERBB2, and SYK showed a considerable reduction in phosphorylation, whereas enhanced phosphorylation was observed in substrates for CHKB, CHKA, PKA, FAK, ATM, PKA, and VEGFR-1. These findings confirm the potential usefulness of peptide microarrays for identifying kinases known to be involved in bone development in vivo and in vitro and show that this technique can be used to investigate kinases whose function in osteoblastic differentiation is poorly understood."	"Regulation and role of myocyte cyclic GMP-dependent protein kinase-1. NA"	"Testosterone-induced modulation of nitric oxide-cGMP signaling pathway and androgenesis in the rat Leydig cells. Testosterone, acting as a systemic and local factor, is one of the major regulatory molecules that initiate and maintain testicular function. In the present study, different experimental approaches were used to evaluate the role of testosterone in regulation of the nitric oxide (NO)-cGMP pathway in Leydig cells derived from normal and hypogonadotropic male rats treated with testosterone for 24 h and 2 wk. Real-time quantitative PCR and Western blot analysis revealed increased inducible NO synthase (NOS2) expression followed by increased NO secretion from Leydig cells ex vivo after continuous treatment with testosterone for 2 wk in vivo. The cGMP-specific phosphodiesterases Pde5, Pde6, and Pde9 were up-regulated, whereas PRKG1 protein was decreased after a 2-wk testosterone treatment. Induction of Nos2 and Pde5 in Leydig cells was blocked by androgen receptor antagonist. In experimental hypogonadotropic hypogonadism, expression of NOS2 was significantly reduced, and treatment with testosterone increased NOS2 expression above control levels. PDE5 protein level was unchanged in hypogonadal rats, whereas treatment of hypogonadal rats with testosterone significantly increased it. In contrast, hypogonadism and testosterone replacement reduced PRKG1 protein in Leydig cells. In vitro treatment with testosterone caused gradually increased Nos2 gene expression followed by increased nitrite and cGMP production by purified Leydig cells. In summary, testosterone up-regulated NO signaling via increased NOS2 expression and contributed to down-regulation of cGMP signaling in Leydig cells. Thus, testosterone-induced modulation of NO-cGMP signaling may serve as a potent autocrine regulator of testicular steroidogenesis."	"Aromatic L-amino acid decarboxylase phosphorylation and activation by PKGIalpha in vitro. Brain aromatic L-amino acid decarboxylase (AAAD) is subject to regulation, and phosphorylation might be involved in the short-term activation of the enzyme. Sites for serine/threonine phosphorylation are present in the deduced amino acid sequence of AAAD, and cAMP-dependent protein kinase phosphorylates and activates neuronal AAAD in vitro. We now report that cGMP-dependent protein kinase (PKG) is able to phosphorylate and activate neuronal AAAD. In an in vitro kinase assay, immunoprecipitated native and recombinant mouse brain AAAD was rapidly phosphorylated by exogenous PKGIalpha. When added to striatal homogenates, PKGIalpha increased AAAD activity in a temporal fashion similar to phosphorylation. Recombinant AAAD was also activated by the kinase demonstrating a direct effect. Native enzyme activation was moderate and characterized by increased V(max) and K(m) for L-DOPA. A PKG peptide inhibitor prevented AAAD phosphorylation and activation providing specificity, and causally linking the two events. Together, the findings provide evidence for PKGIalpha-dependent phosphorylation and activation of neuronal AAAD in vitro, and introduce AAAD as a putative PKGIalpha substrate. Neuronal AAAD is best known for its role in the biosynthesis of catecholamines, indoleamines and trace amines in the nervous system, and the biological importance of PKGIalpha phosphorylation in these processes remains to be determined."	"cGMP increases antioxidant function and attenuates oxidant cell death in mouse lung microvascular endothelial cells by a protein kinase G-dependent mechanism. Increasing evidence suggests that endothelial cytotoxicity from reactive oxygen species (ROS) contributes to the pathogenesis of acute lung injury. Treatments designed to increase intracellular cGMP attenuate ROS-mediated apoptosis and necrosis in several cell types, but the mechanisms are not understood, and the effect of cGMP on pulmonary endothelial cell death remains controversial. In the current study, increasing intracellular cGMP by either 8pCPT-cGMP (50 microM) or atrial natriuretic peptide (10 nM) significantly attenuated cell death in H(2)O(2)-challenged mouse lung microvascular (MLMVEC) monolayers. 8pCPT-cGMP also decreased perfusate LDH release in isolated mouse lungs exposed to H(2)O(2) or ischemia-reperfusion. The protective effect of increasing cGMP in MLMVECs was accompanied by enhanced endothelial H(2)O(2) scavenging (measured by H(2)O(2) electrode) and decreased intracellular ROS concentration (measured by 2',7'-dichlorofluorescin fluorescence) as well as decreased phosphorylation of p38 MAPK and Akt. The cGMP-mediated cytoprotection and increased H(2)O(2) scavenging required &gt;2 h of 8pCPT-cGMP incubation in wild-type MLMVEC and were absent in MLMVEC from protein kinase G (PKG(I))-/- mice suggesting a PKG(I)-mediated effect on gene regulation. Catalase and glutathione peroxidase 1 (Gpx-1) protein were increased by cGMP in wild-type but not PKG(I)-/- MLMVEC monolayers. Both the cGMP-mediated increases in antioxidant proteins and H(2)O(2) scavenging were prevented by inhibition of translation with cycloheximide. 8pCPT-cGMP had minimal effects on catalase and Gpx-1 mRNA. We conclude that cGMP, through PKG(I), attenuated H(2)O(2)-induced cytotoxicity in MLMVEC by increasing catalase and Gpx-1 expression through an unknown posttranscriptional effect."	"Adenosine analogue-oligo-arginine conjugates (ARCs) serve as high-affinity inhibitors and fluorescence probes of type I cGMP-dependent protein kinase (PKGIalpha). Type I cGMP-dependent protein kinase (PKGIalpha) belongs to the family of cyclic nucleotide-dependent protein kinases and is one of the main effectors of cGMP. PKGIalpha is involved in regulation of cardiac contractility, vasorelaxation, and blood pressure; hence, the development of potent modulators of PKGIalpha would lead to advances in the treatment of a variety of cardiovascular diseases. Representatives of ARC-type compounds previously characterized as potent inhibitors and high-affinity fluorescent probes of PKA catalytic subunit (PKAc) were tested towards PKGIalpha to determine that ARCs could serve as activity regulators and sensors for the latter protein kinase both in vitro and in complex biological systems. Structure-activity profiling of ARCs with PKGIalpha in vitro demonstrated both similarities as well as differences to corresponding profiling with PKAc, whereas ARC-903 and ARC-668 revealed low nanomolar displacement constants and inhibition IC(50) values with both cyclic nucleotide-dependent kinases. The ability of ARC-based fluorescent probes to penetrate cell plasma membrane was demonstrated in the smooth muscle tissue of rat cerebellum isolated arteries, and the compound with the highest affinity in vitro (ARC-903) showed also potential for in vivo applications, fully abolishing the PKG1alpha-induced vasodilation."	"Nitric oxide lacks direct effect on TRPC5 channels but suppresses endogenous TRPC5-containing channels in endothelial cells. TRPC5 is a member of the canonical transient receptor potential (TRPC) family of proteins that forms cationic channels either through homomultimeric assembly or heteromultimeric coordination with other TRPC proteins. It is expressed in a variety of cells including central neurones and endothelial cells and has susceptibility to stimulation by multiple factors. Here we investigated if TRPC5 is sensitive to nitric oxide. Mouse TRPC5 or human TRPC5 was over-expressed in HEK293 cells, and TRPC5 activity was determined by measuring the cytosolic Ca(2+) concentration with an indicator dye or by recording membrane current under voltage clamp. TRPC5 activity could be evoked by carbachol acting at muscarinic receptors, lanthanum, or a reducing agent. However, S-nitroso-N-acetylpenicillamine (SNAP) and diethylamine NONOate (DEA-NONOate) failed to stimulate or inhibit TRPC5 at concentrations that generated nitric oxide, caused vasorelaxation, or suppressed activity of TRPC6 via protein kinase G. At high concentrations, SNAP (but not DEA-NONOate) occasionally stimulated TRPC5 but the effect was confounded by background TRPC5-independent Ca(2+) signals. Endogenous Ca(2+)-entry in bovine aortic endothelial cells (BAECs) was suppressed by SNAP; TRPC5 blocking antibody or dominant-negative mutant TRPC5 suppressed this Ca(2+) entry and occluded the effect of SNAP. The data suggest that nitric oxide is not a direct modulator of homomeric TRPC5 channels but may inhibit endogenous BAEC channels that contain TRPC5."	"Protein kinase G type Ialpha activity in human ovarian cancer cells significantly contributes to enhanced Src activation and DNA synthesis/cell proliferation. Previously, we showed that basal activity of nitric oxide (NO)/cyclic GMP (cGMP)/protein kinase G (PKG) signaling pathway protects against spontaneous apoptosis and confers resistance to cisplatin-induced apoptosis in human ovarian cancer cells. The present study determines whether basal PKG kinase activity regulates Src family kinase (SFK) activity and proliferation in these cells. PKG-Ialpha was identified as predominant isoform in both OV2008 (cisplatin-sensitive, wild-type p53) and A2780cp (cisplatin-resistant, mutated p53) ovarian cancer cells. In both cell lines, ODQ (inhibitor of endogenous NO-induced cGMP biosynthesis), DT-2 (highly specific inhibitor of PKG-Ialpha kinase activity), and PKG-Ialpha knockdown (using small interfering RNA) caused concentration-dependent inhibition of DNA synthesis (assessed by bromodeoxyuridine incorporation), indicating an important role of basal cGMP/PKG-Ialpha kinase activity in promoting cell proliferation. DNA synthesis in OV2008 cells was dependent on SFK activity, determined using highly selective SFK inhibitor, 4-(4'-phenoxyanilino)-6,7-dimethoxyquinazoline (SKI-1). Studies using DT-2 and PKG-Ialpha small interfering RNA revealed that SFK activity was dependent on PKG-Ialpha kinase activity. Furthermore, SFK activity contributed to endogenous tyrosine phosphorylation of PKG-Ialpha in OV2008 and A2780cp cells. In vitro coincubation of recombinant human c-Src and PKG-Ialpha resulted in c-Src-mediated tyrosine phosphorylation of PKG-Ialpha and enhanced c-Src autophosphorylation/activation, suggesting that human c-Src directly tyrosine phosphorylates PKG-Ialpha and the c-Src/PKG-Ialpha interaction enhances Src kinase activity. Epidermal growth factor-induced stimulation of SFK activity in OV2008 cells increased PKG-Ialpha kinase activity (indicated by Ser(239) phosphorylation of the PKG substrate vasodilator-stimulated phosphoprotein), which was blocked by both SKI-1 and SU6656. The data suggest an important role of Src/PKG-Ialpha interaction in promoting DNA synthesis/cell proliferation in human ovarian cancer cells. The NO/cGMP/PKG-Ialpha signaling pathway may provide a novel therapeutic target for disrupting ovarian cancer cell proliferation."	"Cardiac hypertrophy is not amplified by deletion of cGMP-dependent protein kinase I in cardiomyocytes. It has been suggested that cGMP kinase I (cGKI) dampens cardiac hypertrophy. We have compared the effect of isoproterenol (ISO) and transverse aortic constriction (TAC) on hypertrophy in WT [control (CTR)] mice, total cGKI-KO mice, and cGKIbeta rescue mice (betaRM) lacking cGKI specifically in cardiomyocytes (CMs). Infusion of ISO did not change the expression of cGKI in the hearts of CTR mice or betaRM but raised the heart weight by approximately 20% in both. An identical hypertrophic growth response was measured in CMs from CTR mice and betaRM and in isolated adult CMs cultured with or without 1 muM ISO. In both genotypes, ISO infusion induced similar changes in the expression of hypertrophy-associated cardiac genes and significant elevation of serum atrial natriuretic peptide and total cardiac cGMP. No differences in cardiac hypertrophy were obtained by 7-day ISO infusion in 4- to 6-week-old conventional cGKI-KO and CTR mice. Furthermore, TAC-induced hypertrophy of CTR mice and betaRM was not different and did not result in changes of the cGMP-hydrolyzing phosphodiesterase activities in hypertropic hearts or CMs. These results strongly suggest that cardiac myocyte cGKI does not affect the development of heart hypertrophy induced by pressure overload or chronic ISO infusion."	"Modulation of cardiac ERG1 K(+) channels by cGMP signaling. Different K(+) currents have been implicated in the myocardial action potential repolarization including the I(Kr). ERG1 alpha subunits, identified as the molecular correlate of I(Kr), have been shown to form heteromultimeric channels in the heart and their activity is modulated by a complex interplay of signal transduction events. Using electrophysiological techniques, we examined the effects of the cGMP-analogue 8-Br-cGMP on rat and guinea-pig papillary action potential duration (APD), on the biophysical properties of heterologously expressed homo- and heteromeric ERG1 channels, and on cardiac I(Kr). 8-Br-cGMP prolonged APD by about 25% after pharmacological inhibition of L-type Ca(2+) currents and I(Ks). The prolongation was completely abolished by prior application of the hERG channel blocker E-4031 or the protein kinase G (PKG) inhibitor Rp-8-Br-cGMPS. Expression analysis revealed the presence of both ERG1a and -1b subunits in rat papillary muscle. Both 8-Br-cGMP and ANP inhibited heterologously expressed ERG1b and even stronger ERG1a/1b channels, whereas ERG1a channels remained unaffected. The inhibitory 8-Br-cGMP effects were PKG-dependent and involved a profound ERG current reduction, which was also observed with cardiac AP clamp recordings. Measurements of I(Kr) from isolated mouse cardiomyocytes using Cs(+) as charge carrier exhibited faster deactivation kinetics in atrial than in ventricular myocytes consistent with a higher relative expression of ERG1b transcripts in atria than in ventricles. 8-Br-cGMP significantly reduced I(Kr) in atrial, but not in ventricular myocytes. These findings provide first evidence that through heteromeric assembly ERG1 channels become a critical target of cGMP-PKG signaling linking cGMP accumulation to cardiac I(Kr) modulation."	"Fine mapping of the chromosome 10q11-q21 linkage region in Alzheimer's disease cases and controls. We have previously reported strong linkage on chromosome 10q in pedigrees transmitting Alzheimer's disease through the mother, overlapping with many significant linkage reports including the largest reported study. Here, we report the most comprehensive fine mapping of this region to date. In a sample of 638 late-onset Alzheimer's disease (LOAD) cases and controls including 104 maternal LOAD cases, we genotyped 3,884 single nucleotide polymorphisms (SNPs) covering 15.2 Mb. We then used imputations and publicly available data to generate an extended dataset including 4,329 SNPs for 1,209 AD cases and 839 controls in the same region. Further, we screened eight genes in this region for rare alleles in 283 individuals by nucleotide sequencing, and we tested for possible monoallelic expression as it might underlie our maternal parent of origin linkage. We excluded the possibility of multiple rare coding risk variants for these genes and monoallelic expression when we could test for it. One SNP, rs10824310 in the PRKG1 gene, showed study-wide significant association without a parent of origin effect, but the effect size estimate is not of sufficient magnitude to explain the linkage, and no association is observed in an independent genome-wide association studies (GWAS) report. Further, no causative variants were identified though sequencing. Analysis of cases with maternal disease origin pointed to a few regions of interest that included the genes PRKG1 and PCDH15 and an intergenic interval of 200 Kb. It is likely that non-transcribed rare variants or other mechanisms involving these genomic regions underlie the observed linkage and parent of origin effect. Acquiring additional support and clarifying the mechanisms of such involvement is important for AD and other complex disorder genetics research."	"cGMP-dependent protein kinase type I promotes CREB/CRE-mediated gene expression in neurons of the lateral amygdala. The process transforming newly learned information into stable long-term memory is called memory consolidation and, like the underlying long-term synaptic plasticity, critically depends on de novo RNA and protein synthesis. We have shown recently that the cGMP-dependent protein kinase Type I (cGKI) plays an important role for the consolidation of amygdala-dependent fear memory and long-term potentiation (LTP) in the lateral amygdala. Signalling downstream of cGKI at the level of transcriptional regulation remained unclear. A transcription factor of major importance for learning and memory is the cAMP-response element binding protein (CREB). The representation of fear memory in the lateral amygdala strikingly depends on the activity of CREB in individual neurons. Moreover, findings from in vitro experiments demonstrate CREB phosphorylation by cGK. In the hippocampus, CREB phosphorylation increases following activation of NO/cGMP signalling contributing to the late phase of LTP. To demonstrate a link from cGKI to activation of CREB and CREB-dependent transcription in neurons of the lateral amygdala as a possible mechanism for cGKI-mediated fear memory consolidation, we examined the effect of cGMP on activation of CREB/CRE using immunohistochemical staining specific for phospho-CREB and a reporter gene in control and cGKI-deficient mice, respectively. Supporting our hypothesis, marked CREB phosphorylation and CRE-mediated transcription was induced by cGMP in the lateral amygdala of control mice, but not in cGKI-deficient mice. It has been proposed that activation of cGKI is followed by its nuclear translocation that would allow direct phosphorylation of CREB. Therefore, we examined the cellular localisation of cGKI in neurons of the lateral amygdala in the presence of cGMP by double staining for cGKI and a nuclear marker in sections from areas showing prominent CREB phosphorylation, and did not observe prominent nuclear translocation of the enzyme. In summary, we provide evidence that cytosolic cGKI can support fear memory consolidation and LTP in neurons of the lateral amygdala via activation of CREB and CRE-dependent transcription."	"IRAG determines nitric oxide- and atrial natriuretic peptide-mediated smooth muscle relaxation. Nitric oxide (NO) and atrial natriuretic peptide (ANP) signalling via cGMP controls smooth muscle tone. One important signalling pathway of cGMP-dependent protein kinase type I (cGKI) is mediated by IRAG (IP(3) receptor associated cGKI substrate) which is highly expressed in smooth muscle tissues. To elucidate the role of IRAG for NO- and ANP-mediated smooth muscle tone regulation, cGKI localization, and for its possible function in blood pressure adjustment, we generated IRAG-knockout mice by targeted deletion of exon 3. IRAG deletion prevented stable interaction of IP(3) receptor type I (IP(3)RI) with cGKIbeta determined by cGMP affinity chromatography. Confocal microscopy in vascular smooth muscle cells (VSMCs) showed that localization of cGKIbeta and cGKIalpha did not change in absence of IRAG. NO-, ANP-, and cGMP-dependent relaxation of hormone-contracted aortic vessels and colon was significantly affected in IRAG-knockout mice. The suppression of cGMP-induced relaxation was not rescued by selective expression of cGKIbeta in smooth muscle from cGKIbeta-transgenic mice. NO-, ANP-, and cGMP-mediated inhibition of the hormone-induced increase in intracellular calcium concentration measured by Fura2 was suppressed in IRAG-deficient VSMC. Telemetric measurements revealed that IRAG-deficient animals exhibited normal basal tone, but were resistant to blood pressure reduction induced by lipopolysaccharide-treatment. These findings indicate that signalling of cGKIbeta via IRAG is an essential functional part for regulation of smooth muscle tone and of intracellular calcium by NO (exogenously applicated or endogenously synthesized) and by ANP. IRAG signalling does not modulate basal tone but might be important for blood pressure regulation under pathophysiological conditions."	"Cyclic nucleotides converge on brown adipose tissue differentiation. Brown adipose tissue (BAT) is rich in mitochondria and can uncouple oxidative phosphorylation to produce heat as a by-product of fatty acid metabolism. This thermogenic effect helps to maintain body temperature and also plays a critical role in energy homeostasis and the regulation of body weight. Both cyclic adenosine monophosphate and cyclic guanosine monophosphate (cGMP) contribute to the intracellular regulation of mitochondrial biogenesis and the differentiation of BAT. New evidence has defined the essential role of the cGMP-dependent protein kinase I in a pathway that modulates the RhoA-ROCK pathway and insulin receptor signaling to elicit BAT differentiation and stimulate thermogenesis."	"Protein kinase G activity prevents pathological-level nitric oxide-induced apoptosis and promotes DNA synthesis/cell proliferation in vascular smooth muscle cells. Protein kinase G (PKG), a recognized downstream mediator of nitric oxide, is a key regulator of cardiovascular physiology and pathology. High-level stimulation of cyclic guanosine monophosphate/PKG signaling using high concentrations of nitric oxide donors, mimicking pathological conditions, induces apoptosis in vascular smooth muscle cells. In contrast, we have found that PKG at basal and moderately elevated activity prevents both spontaneous and toxin-induced apoptosis in many other cells. We hypothesized that PKG's apoptosis-regulatory role in vascular smooth muscle cells depends on PKG activation levels [low/basal-level activation prevents apoptosis, whereas high-level activation (hyperactivation) causes apoptosis]. Furthermore, we hypothesized that, although PKG hyperactivation inhibits vascular smooth muscle cell proliferation (potentially causing anti-atherogenic effects), basal PKG activity may promote vascular smooth muscle cell proliferation/atherogenesis. Involvement of PKG in apoptosis and proliferation was determined in unpassaged vascular smooth muscle cells from mouse aorta. Western blot analysis was used to determine PKG expression, and activators/inhibitors of PKG activity were used to determine involvement in apoptosis (Hoechst staining and DNA-fragmentation ELISAs) and proliferation (cell count, MTT assay, and BrdU incorporation). Both PKG-Iα and PKG-Iβ isoforms were expressed. Lower-level stimulation of PKG using the nitric oxide donor S-nitroso-acetylpenacillamine (10, 50 μM) significantly (P&lt;.05) lowered spontaneous apoptosis, whereas S-nitroso-acetylpenacillamine at higher concentrations (500, 1000 μM) elevated apoptosis. Twenty-four-hour pretreatment with atrial natriuretic peptide, a PKG activator, completely prevented high-concentration, nitric oxide-induced apoptosis. Inhibition of basal PKG activity using highly selective PKG inhibitors, DT-2 and DT-3, significantly (P&lt;.001) increased apoptosis and inhibited DNA synthesis/proliferation. The data suggest that basal/moderately elevated PKG activity protects against high/pathological-level nitric oxide-induced apoptosis and promotes DNA synthesis/proliferation in vascular smooth muscle cells, potentially important for atherogenesis."	"Protein kinase G type-Ialpha phosphorylates the apoptosis-regulating protein Bad at serine 155 and protects against apoptosis in N1E-115 cells. Previous studies from our laboratory have shown that the cGMP/protein kinase G (PKG) signaling pathway plays an essential role in preventing spontaneous apoptosis in neural cells; however, the mechanism is not understood. A potential downstream target of PKG is the apoptosis-regulating protein Bad, which contains a sequence around its serine 155 (ser155 in mouse Bad, equivalent to ser118 in human Bad) predicted to be a consensus motif for PKG-catalyzed phosphorylation. Using both in vitro and cell-based experiments, we determined if PKG phosphorylates Bad at ser155 and if blocking/stimulating PKG-catalyzed Bad phosphorylation causes pro-apoptotic/anti-apoptotic responses. Recombinant PKG type-Ialpha (PKG-Ialpha) was found to directly phosphorylate recombinant Bad at ser155 in vitro. In N1E-115 mouse neural cells, which naturally express PKG-Ialpha as the predominant PKG isoform, addition of 8-Br-cGMP (0.1-1.0 mM), a cell-permeable direct PKG-Ialpha activator, increased ser155 phosphorylation of Bad. ODQ (50 microM), a soluble guanylyl cyclase inhibitor that lowers cGMP/PKG activity, decreased serum-induced ser155 phosphorylation of Bad and induced apoptosis in N1E-115 cells. Treatment with DT-2 and DT-3, selective PKG-Ialpha inhibitors, both decreased Bad ser155 phosphorylation and induced apoptosis. The data indicate that PKG-Ialpha directly phosphorylates Bad at ser155, which may participate in cGMP/PKG-induced anti-apoptotic/cytoprotective effects in neural cells."	"Transforming growth factor-beta modulates the expression of nitric oxide signaling enzymes in the injured developing lung and in vascular smooth muscle cells. Nitric oxide signaling has an important role in regulating pulmonary development and function. Expression of soluble guanylate cyclase (sGC) and cGMP-dependent protein kinase I (PKGI), both critical mediators of nitric oxide (NO) signaling, is diminished in the injured newborn lung through unknown mechanisms. Recent studies suggest that excessive transforming growth factor-beta (TGF-beta) activity inhibits injured newborn lung development. To explore mechanisms that regulate pulmonary NO signaling, we tested whether TGF-beta decreases sGC and PKGI expression in the injured developing lung and pulmonary vascular smooth muscle cells (SMC). We found that chronic oxygen-induced lung injury decreased pulmonary sGCalpha(1) and PKGI immunoreactivity in mouse pups and that exposure to a TGF-beta-neutralizing antibody prevented this reduction of sGC and PKGI protein expression. In addition, TGF-beta(1) decreased expression of NO signaling enzymes in freshly isolated pulmonary microvascular SMC/myofibroblasts, suggesting that TGF-beta has a direct role in modulating NO signaling in the pup lung. Moreover, TGF-beta(1) decreased sGC and PKGI expression in pulmonary artery and aortic SMC from adult rats and mice, suggesting a general role for TGF-beta in modulating NO signaling in vascular SMC. Although other cytokines decrease sGC mRNA stability, TGF-beta did not modulate sGCalpha(1) or PKGIbeta mRNA turnover in vascular SMC. These studies indicate for the first time that TGF-beta decreases NO signaling enzyme expression in the injured developing lung and pulmonary vascular SMC. Moreover, they suggest that TGF-beta-neutralizing molecules might counteract the effects of injury on NO signaling in the newborn lung."	"(D)-Amino acid analogues of DT-2 as highly selective and superior inhibitors of cGMP-dependent protein kinase Ialpha. The cGMP-dependent protein kinase type I (PKG I) is an essential regulator of cellular function in blood vessels throughout the body. DT-2, a peptidic inhibitor of PKG, has played a central role in determining the molecular mechanisms of vascular control involving PKG and its signaling partners. Here, we report the development of (d)-amino acid DT-2 derivatives, namely the retro-inverso ri-(d)-DT-2 and the all (d)-amino acid analog, (d)-DT-2. Both peptide analogs were potent PKG Ialpha inhibitors with K(i) values of 5.5 nM (ri-(d)-DT-2) and 0.8 nM ((d)-DT-2) as determined using a hyperbolic mixed-type inhibition model. Also, both analogs were proteolytically stable in vivo, showed elevated selectivity, and displayed enhanced membrane translocation properties. Studies on isolated arteries from the resistance vasculature demonstrated that intraluminally perfused (d)-DT-2 significantly inhibited vasodilation induced by 8-Br-cGMP. Furthermore, in vivo application of (d)-DT-2 established a uniform translocation pattern in the resistance vasculature, with exception of the brain. Thus, (d)-DT-2 caused significant increases in mean arterial blood pressure in unrestrained, awake mice. Further, mesenteric arteries isolated from (d)-DT-2 treated animals showed a markedly reduced dilator response to 8-Br-cGMP in vitro. Our results clearly demonstrate that (d)-DT-2 is a superior inhibitor of PKG Ialpha and its application in vivo leads to sustained inhibition of PKG in vascular smooth muscle cells. The discovery of (d)-DT-2 may help our understanding of how blood vessels constrict and dilate and may also aid the development of new strategies and therapeutic agents targeted to the prevention and treatment of vascular disorders such as hypertension, stroke and coronary artery disease."	"Correlation of a set of gene variants, life events and personality features on adult ADHD severity. Increasing evidence suggests that symptoms of attention deficit hyperactivity disorder (ADHD) could persist into adult life in a substantial proportion of cases. The aim of the present study was to investigate the impact of (1) adverse events, (2) personality traits and (3) genetic variants chosen on the basis of previous findings and (4) their possible interactions on adult ADHD severity. One hundred and ten individuals diagnosed with adult ADHD were evaluated for occurrence of adverse events in childhood and adulthood, and personality traits by the Temperament and Character Inventory (TCI). Common polymorphisms within a set of nine important candidate genes (SLC6A3, DBH, DRD4, DRD5, HTR2A, CHRNA7, BDNF, PRKG1 and TAAR9) were genotyped for each subject. Life events, personality traits and genetic variations were analyzed in relationship to severity of current symptoms, according to the Brown Attention Deficit Disorder Scale (BADDS). Genetic variations were not significantly associated with severity of ADHD symptoms. Life stressors displayed only a minor effect as compared to personality traits. Indeed, symptoms' severity was significantly correlated with the temperamental trait of Harm avoidance and the character trait of Self directedness. The results of the present work are in line with previous evidence of a significant correlation between some personality traits and adult ADHD. However, several limitations such as the small sample size and the exclusion of patients with other severe comorbid psychiatric disorders could have influenced the significance of present findings."	"The tumor suppressor p53 transcriptionally regulates cGKI expression during neuronal maturation and is required for cGMP-dependent growth cone collapse. The cGMP-dependent protein kinase type I (cGKI) has multiple functions including a role in axonal growth and pathfinding of sensory neurons, and counteracts Semaphorin 3A (Sema3A)-induced growth cone collapse. Within the nervous system, however, the transcriptional regulation of cGKI is still obscure. Recently, the transcription factor and tumor suppressor p53 has been reported to promote neurite outgrowth by regulating the gene expression of factors that promote growth cone extension, but specific p53 targets genes that may counteract growth cone collapse have not been identified so far. Here, we show that p53 promotes cGKI expression in neuronal-like PC-12 cells and primary neurons by occupying specific regulatory elements in a chromatin environment during neuronal maturation. Importantly, we demonstrate that p53-dependent expression of cGKI is required for the ability of cGMP to counteract growth cone collapse. Growth cone retraction mediated by Sema3A is overcome by cGMP only in wild-type, but not in p53-null dorsal root ganglia. Reconstitution of p53 levels is sufficient to recover both cGKI expression and the ability of cGMP to counteract growth cone collapse, while cGKI overexpression rescues growth cone collapse in p53-null primary neurons. In conclusion, this study identifies p53 as a transcription factor that regulates the expression of cGKI during neuronal maturation and cGMP-dependent inhibition of growth cone collapse."	"cGMP-dependent protein kinase I, the circadian clock, sleep and learning. The second messenger cGMP controls cardiovascular and gastrointestinal homeostasis in mammals. However, its physiological relevance in the nervous system is poorly understood.1 Now, we have reported that the cGMP-dependent protein kinase type I (PRKG1) is implicated in the regulation of the timing and quality of sleep and wakefulness.2Prkg1 mutant mice showed altered distribution of sleep and wakefulness as well as reduction in rapid-eye-movement sleep (REMS) duration and in non-REMS consolidation. Furthermore, the ability to sustain waking episodes was compromised. These observations were also reflected in wheel-running and drinking activity. A decrease in electroencephalogram power in the delta frequency range (1-4 Hz) under baseline conditions was observed, which was normalized after sleep deprivation. Together with the finding that circadian clock amplitude is reduced in Prkg1 mutants these results indicate a decrease of the wake-promoting output of the circadian system affecting sleep. Because quality of sleep might affect learning we tested Prkg1 mutants in several learning tasks and find normal spatial learning but impaired object recognition memory in these animals. Our findings indicate that Prkg1 impinges on circadian rhythms, sleep and distinct aspects of learning."	"cGMP-dependent protein kinase Ialpha associates with the antidepressant-sensitive serotonin transporter and dictates rapid modulation of serotonin uptake. The Na(+)/Cl(-)-dependent serotonin (5-hydroxytryptamine, 5-HT) transporter (SERT) is a critical element in neuronal 5-HT signaling, being responsible for the efficient elimination of 5-HT after release. SERTs are not only targets for exogenous addictive and therapeutic agents but also can be modulated by endogenous, receptor-linked signaling pathways. We have shown that neuronal A3 adenosine receptor activation leads to enhanced presynaptic 5-HT transport in vitro and an increased rate of SERT-mediated 5-HT clearance in vivo. SERT stimulation by A3 adenosine receptors derives from an elevation of cGMP and subsequent activation of both cGMP-dependent protein kinase (PKG) and p38 mitogen-activated protein kinase. PKG activators such as 8-Br-cGMP are known to lead to transporter phosphorylation, though how this modification supports SERT regulation is unclear. In this report, we explore the kinase isoform specificity underlying the rapid stimulation of SERT activity by PKG activators. Using immortalized, rat serotonergic raphe neurons (RN46A) previously shown to support 8-Br-cGMP stimulation of SERT surface trafficking, we document expression of PKGI, and to a lower extent, PKGII. Quantitative analysis of staining profiles using permeabilized or nonpermeabilized conditions reveals that SERT colocalizes with PKGI in both intracellular and cell surface domains of RN46A cell bodies, and exhibits a more restricted, intracellular pattern of colocalization in neuritic processes. In the same cells, SERT demonstrates a lack of colocalization with PKGII in either intracellular or surface membranes. In keeping with the ability of the membrane permeant kinase inhibitor DT-2 to block 8-Br-cGMP stimulation of SERT, we found that DT-2 treatment eliminated cGMP-dependent kinase activity in PKGI-immunoreactive extracts resolved by liquid chromatography. Similarly, treatment of SERT-transfected HeLa cells with small interfering RNAs targeting endogenous PKGI eliminated 8-Br-cGMP-induced regulation of SERT activity. Co-immunoprecipitation studies show that, in transporter/kinase co-transfected cells, PKGIalpha specifically associates with hSERT. Our findings provide evidence of a physical and compartmentalized association between SERT and PKGIalpha that supports rapid, 8-Br-cGMP-induced regulation of SERT. We discuss a model wherein SERT-associated PKGIalpha supports sequentially the mobilization of intracellular transporter-containing vesicles, leading to enhanced surface expression, and the production of catalytic-modulatory SERT phosphorylation, leading to a maximal enhancement of 5-HT clearance capacity."	"Regulation of epithelial sodium channels by cGMP/PKGII. Airway and alveolar fluid clearance is mainly governed by vectorial salt movement via apically located rate-limiting Na(+) channels (ENaC) and basolateral Na(+)/K(+)-ATPases. ENaC is regulated by a spectrum of protein kinases, i.e. protein kinase A (PKA), C (PKC), and G (PKG). However, the molecular mechanisms for the regulation of ENaC by cGMP/PKG remain to be elucidated. In the present study, we studied the pharmacological responses of native epithelial Na(+) channels in human Clara cells and human alphabetagammadelta ENaCs expressed in oocytes to cGMP. 8-pCPT-cGMP increased amiloride-sensitive short-circuit current (I(sc)) across H441 monolayers and heterologously expressed alphabetagammadelta ENaC activity in a dose-dependent manner. Similarly, 8-pCPT-cGMP (a PKGII activator) but not 8-Br-cGMP (a PKGI activator) increased amiloride-sensitive whole cell currents in H441 cells in the presence of CFTRinh-172 and diltiazem. In all cases, the cGMP-activated Na(+) channel activity was inhibited by Rp-8-pCPT-cGMP, a specific PKGII inhibitor. This was substantiated by the evidence that PKGII was the sole isoform expressed in H441 cells at the protein level. Importantly, intratracheal instillation of 8-pCPT-cGMP in BALB/c mice increased amiloride-sensitive alveolar fluid clearance by approximately 30%, consistent with the in vitro results. We therefore conclude that PKGII is an activator of lung epithelial Na(+) channels, which may expedite the resolution of oedematous fluid in alveolar sacs."	"Regulate axon branching by the cyclic GMP pathway via inhibition of glycogen synthase kinase 3 in dorsal root ganglion sensory neurons. Cyclic GMP has been proposed to regulate axonal development, but the molecular and cellular mechanisms underlying the formation of axon branches are not well understood. Here, we report the use of rodent embryonic sensory neurons from the dorsal root ganglion (DRG) to demonstrate the role of cGMP signaling in axon branching and to identify the downstream molecular pathway mediating this novel regulation. Pharmacologically, a specific cGMP analog promotes DRG axon branching in culture, and this activity can be achieved by activating the endogenous soluble guanylyl cyclase that produces cGMP. At the molecular level, the cGMP-dependent protein kinase 1 (PrkG1) mediates this activity, as DRG neurons isolated from the kinase-deficient mouse fail to respond to cGMP activation to make branches, whereas overexpression of a PrkG1 mutant with a higher-than-normal basal kinase activity is sufficient to induce branching. In addition, cGMP activation in DRG neurons leads to phosphorylation of glycogen synthase kinase 3 (GSK3), a protein that normally suppresses branching. This interaction is direct, because PrkG1 binds GSK3 in heterologous cells and the purified kinase can phosphorylate GSK3 in vitro. More importantly, overexpression of a dominant active form of GSK3 suppresses cGMP-dependent branching in DRG neurons. Thus, our study establishes an intrinsic signaling cascade that links cGMP activation to GSK3 inhibition in controlling axon branching during sensory axon development."	"Cyclic GMP specifically suppresses Type-Ialpha cGMP-dependent protein kinase expression by ubiquitination. Type I cGMP-dependent protein kinase (PKG-I) mediates nitric oxide (NO) and hormone dependent smooth muscle relaxation and stimulates smooth muscle cell-specific gene expression. Expression of PKG-I in cultured smooth muscle cells depends on culture conditions and is inhibited by inflammatory cytokines such as interleukin-I and tumor necrosis factor-alpha, which are known to stimulate Type II NO synthase (iNOS) expression. We report here that the suppression of PKG-I protein levels in smooth muscle cells is triggered by the ubiquitin/26S proteasome pathway. Incubation of vascular smooth muscle cells with phosphodiesterase-resistant cyclic GMP analogs (e.g., 8-bromo-cGMP) decreases PKG-I protein level in a time- and concentration-dependent manner. To study this process, we tested the effects of 8-Br-cGMP on PKG-I protein level in Cos7 cells, which do not express endogenous type I PKG mRNA. 8-Br-cGMP induced the ubiquitination and down-regulation of PKG-Ialpha, but not PKG-Ibeta. Treatment of cells with the 26S proteasome inhibitor, MG-132, increased ubiquitination of PKG. Blocking PKG-I catalytic activity using the cell-permeant specific PKG-I inhibitor, DT-2, inhibited cGMP-induced PKG-I ubiquitination and down-regulation, suggesting that PKG catalytic activity and autophosphorylation were required for suppression of PKG-I level. Mutation of the known autophosphorylation sites of PKG-Ialpha to alanine uncovered a specific role for autophosphorylation of serine-64 in cGMP-dependent ubiquitination and suppression of PKG-I level. The results suggest that chronic elevation of cGMP, as seen in inflammatory conditions, triggers ubiquitination and degradation of PKG-Ialpha in smooth muscle."	"cGMP-dependent protein kinase type I is implicated in the regulation of the timing and quality of sleep and wakefulness. Many effects of nitric oxide (NO) are mediated by the activation of guanylyl cyclases and subsequent production of the second messenger cyclic guanosine-3',5'-monophosphate (cGMP). cGMP activates cGMP-dependent protein kinases (PRKGs), which can therefore be considered downstream effectors of NO signaling. Since NO is thought to be involved in the regulation of both sleep and circadian rhythms, we analyzed these two processes in mice deficient for cGMP-dependent protein kinase type I (PRKG1) in the brain. Prkg1 mutant mice showed a strikingly altered distribution of sleep and wakefulness over the 24 hours of a day as well as reductions in rapid-eye-movement sleep (REMS) duration and in non-REM sleep (NREMS) consolidation, and their ability to sustain waking episodes was compromised. Furthermore, they displayed a drastic decrease in electroencephalogram (EEG) power in the delta frequency range (1-4 Hz) under baseline conditions, which could be normalized after sleep deprivation. In line with the re-distribution of sleep and wakefulness, the analysis of wheel-running and drinking activity revealed more rest bouts during the activity phase and a higher percentage of daytime activity in mutant animals. No changes were observed in internal period length and phase-shifting properties of the circadian clock while chi-squared periodogram amplitude was significantly reduced, hinting at a less robust oscillator. These results indicate that PRKG1 might be involved in the stabilization and output strength of the circadian oscillator in mice. Moreover, PRKG1 deficiency results in an aberrant pattern, and consequently a reduced quality, of sleep and wakefulness, possibly due to a decreased wake-promoting output of the circadian system impinging upon sleep."	"Regulator of G protein signaling 2 mediates cardiac compensation to pressure overload and antihypertrophic effects of PDE5 inhibition in mice. The heart initially compensates for hypertension-mediated pressure overload by enhancing its contractile force and developing hypertrophy without dilation. Gq protein-coupled receptor pathways become activated and can depress function, leading to cardiac failure. Initial adaptation mechanisms to reduce cardiac damage during such stimulation remain largely unknown. Here we have shown that this initial adaptation requires regulator of G protein signaling 2 (RGS2). Mice lacking RGS2 had a normal basal cardiac phenotype, yet responded rapidly to pressure overload, with increased myocardial Gq signaling, marked cardiac hypertrophy and failure, and early mortality. Swimming exercise, which is not accompanied by Gq activation, induced a normal cardiac response, while Rgs2 deletion in Galphaq-overexpressing hearts exacerbated hypertrophy and dilation. In vascular smooth muscle, RGS2 is activated by cGMP-dependent protein kinase (PKG), suppressing Gq-stimulated vascular contraction. In normal mice, but not Rgs2-/- mice, PKG activation by the chronic inhibition of cGMP-selective phosphodiesterase 5 (PDE5) suppressed maladaptive cardiac hypertrophy, inhibiting Gq-coupled stimuli. Importantly, PKG was similarly activated by PDE5 inhibition in myocardium from both genotypes, but PKG plasma membrane translocation was more transient in Rgs2-/- myocytes than in controls and was unaffected by PDE5 inhibition. Thus, RGS2 is required for early myocardial compensation to pressure overload and mediates the initial antihypertrophic and cardioprotective effects of PDE5 inhibitors."	"Signaling through cGMP-dependent protein kinase I in the amygdala is critical for auditory-cued fear memory and long-term potentiation. Long-term potentiation (LTP) of inputs relaying sensory information from cortical and thalamic neurons to principal neurons in the lateral amygdala (LA) is thought to serve as a cellular mechanism for associative fear learning. Nitric oxide (NO), a messenger molecule widely implicated in synaptic plasticity and behavior, has been shown to enhance LTP in the LA as well as consolidation of associative fear memory. Additional evidence suggests that NO-induced enhancement of LTP and amygdala-dependent learning requires signaling through soluble guanylyl cyclase (sGC) and cGMP-dependent protein kinase (cGK). Mammals possess two genes for cGK: the prkg1 gene gives rise to the cGK type I isoforms, cGKIalpha and cGKIbeta, and the prkg2 gene encodes the cGK type II. Reportedly, both cGKI and cGKII are expressed in the amygdala, and cGKII is involved in controlling anxiety-like behavior. Because selective pharmacological tools for individual cGK isoforms are lacking, we used different knock-out mouse models to examine the function of cGKI and cGKII for LTP in the LA and pavlovian fear conditioning. We found robust expression of the cGKI specifically in the LA with cGKIbeta as the prevailing isoform. We further show a marked reduction of LTP at both thalamic and cortical inputs to the LA and a selective impairment of auditory-cued fear memory in cGKI-deficient mutants. In contrast, cGKII null mutants lack these phenotypes. Our data suggest a function of cGKI, likely the beta isoform, in the LA, supporting synaptic plasticity and consolidation of fear memory."	"cGK substrates. Signalling of cGK (cGMP-dependent protein kinases) are mediated through phosphorylation of specific substrates. Several substrates of cGKI and cGKII were identified meanwhile. Some cGKI substrates are specifically regulated by the cGKIalpha or the cGKIbeta isozyme. In various cells and tissues, different cGK substrates exist that are essential for the regulation of diverse functions comprising tissue contractility, cell motility, cell contact, cellular secretion, cell proliferation, and cell differentiation. On the molecular level, cGKI substrates fulfill various cellular functions regulating e.g. the intracellular calcium and potassium concentration, the calcium sensitivity, and the organisation of the intracellular cytoskeleton. cGKII substrates are involved e.g. in chloride transport, sodium/proton transport and transcriptional regulation. The understanding of cGK signalling and function depends strongly on the identification of further specific substrates. In the last years, diverse approaches ranging from biochemistry to genetic deletion lead to the identification and establishment of several substrates, which raised new insights in the molecular mechanisms of cGK functions and elucidated new cellular cGK functions. However, the analysis of the dynamic signalling of cGK in tissues and cells will be necessary to discover new signalling pathways and substrates."	"cGMP regulated protein kinases (cGK). cGMP-dependent protein kinases (cGK) are serine/threonine kinases that are widely distributed in eukaryotes. Two genes--prkg1 and prkg2--code for cGKs, namely cGKI and cGKII. In mammals, two isozymes, cGKIalpha and cGKIbeta, are generated from the prkg1 gene. The cGKI isozymes are prominent in all types of smooth muscle, platelets, and specific neuronal areas such as cerebellar Purkinje cells, hippocampal neurons, and the lateral amygdala. The cGKII prevails in the secretory epithelium of the small intestine, the juxta-glomerular cells, the adrenal cortex, the chondrocytes, and in the nucleus suprachiasmaticus. Both cGKs are major downstream effectors of many, but not all signalling events of the NO/cGMP and the ANP/cGMP pathways. cGKI relaxes smooth muscle tone and prevents platelet aggregation, whereas cGKII inhibits renin secretion, chloride/water secretion in the small intestine, the resetting of the clock during early night, and endochondreal bone growth. cGKs are also modulators of cell growth and many other functions."	"cGMP produced by NO-sensitive guanylyl cyclase essentially contributes to inflammatory and neuropathic pain by using targets different from cGMP-dependent protein kinase I. A large body of evidence indicates that the release of nitric oxide (NO) is crucial for the central sensitization of pain pathways during both inflammatory and neuropathic pain. Here, we investigated the distribution of NO-sensitive guanylyl cyclase (NO-GC) in the spinal cord and in dorsal root ganglia, and we characterized the nociceptive behavior of mice deficient in NO-GC (GC-KO mice). We show that NO-GC is distinctly expressed in neurons of the mouse dorsal horn, whereas its distribution in dorsal root ganglia is restricted to non-neuronal cells. GC-KO mice exhibited a considerably reduced nociceptive behavior in models of inflammatory or neuropathic pain, but their responses to acute pain were not impaired. Moreover, GC-KO mice failed to develop pain sensitization induced by intrathecal administration of drugs releasing NO or carbon monoxide. Surprisingly, during spinal nociceptive processing, cGMP produced by NO-GC may activate signaling pathways different from cGMP-dependent protein kinase I (cGKI), whereas cGKI can be activated by natriuretic peptide receptor-B dependent cGMP production. Together, our results provide evidence that NO-GC is crucially involved in the central sensitization of pain pathways during inflammatory and neuropathic pain."	"Are the mechanisms for NO-dependent vascular remodeling different from vasorelaxation in vivo? NA"	"The heart communicates with the endothelium through the guanylyl cyclase-A receptor: acute handling of intravascular volume in response to volume expansion. Atrial natriuretic peptide (ANP) regulates arterial blood pressure and volume. Its guanylyl cyclase-A (GC-A) receptor is expressed in vascular endothelium and mediates increases in cGMP, but the functional relevance is controversial. Notably, mice with endothelial-restricted GC-A deletion [EC GC-A knockout (KO) mice] exhibit significant chronic hypervolemic hypertension. The present study aimed to characterize the endothelial effects of ANP and their relevance for the acute regulation of intravascular fluid volume. We studied the effect of ANP on microvascular permeability to fluorescein isothiocyanate-labeled albumin (BSA) using intravital microscopy on mouse dorsal skinfold chambers. Local superfusion of ANP (100 nm) increased microvascular fluorescein isothiocyanate-BSA extravasation in control but not EC GC-A KO mice. Intravenous infusion of synthetic ANP (500 ng/kg x min) caused immediate increases in hematocrit in control mice, indicating intravascular volume contraction. In EC GC-A KO mice, the hematocrit responses were not only abolished but even reversed. Furthermore, acute vascular volume expansion, which caused release of endogenous cardiac ANP, did not affect resting central venous pressure of control mice but rapidly and significantly increased central venous pressure of EC GC-A KO mice. In cultured lung endothelial cells, ANP provoked cGMP-dependent protein kinase I-mediated phosphorylation of vasodilator-stimulated phosphoprotein. We conclude that ANP, via GC-A, enhances microvascular endothelial macromolecule permeability in vivo. This effect might be mediated by cGMP-dependent protein kinase I-dependent phosphorylation of vasodilator-stimulated phosphoprotein. Modulation of transcapillary protein and fluid transport may represent one of the most important hypovolemic actions of ANP."	"High blood pressure arising from a defect in vascular function. Hypertension, a major cardiovascular risk factor and cause of mortality worldwide, is thought to arise from primary renal abnormalities. However, the etiology of most cases of hypertension remains unexplained. Vascular tone, an important determinant of blood pressure, is regulated by nitric oxide, which causes vascular relaxation by increasing intracellular cGMP and activating cGMP-dependent protein kinase I (PKGI). Here we show that mice with a selective mutation in the N-terminal protein interaction domain of PKGIalpha display inherited vascular smooth muscle cell abnormalities of contraction, abnormal relaxation of large and resistance blood vessels, and increased systemic blood pressure. Renal function studies and responses to changes in dietary sodium in the PKGIalpha mutant mice are normal. These data reveal that PKGIalpha is required for normal VSMC physiology and support the idea that high blood pressure can arise from a primary abnormality of vascular smooth muscle cell contractile regulation, suggesting a new approach to the diagnosis and therapy of hypertension and cardiovascular diseases."	"Anemia and splenomegaly in cGKI-deficient mice. To explore the functional significance of cGMP-dependent protein kinase type I (cGKI) in the regulation of erythrocyte survival, gene-targeted mice lacking cGKI were compared with their control littermates. By the age of 10 weeks, cGKI-deficient mice exhibited pronounced anemia and splenomegaly. Compared with control mice, the cGKI mutants had significantly lower red blood cell count, packed cell volume, and hemoglobin concentration. Anemia was associated with a higher reticulocyte number and an increase of plasma erythropoietin concentration. The spleens of cGKI mutant mice were massively enlarged and contained a higher fraction of Ter119(+) erythroid cells, whereas the relative proportion of leukocyte subpopulations was not changed. The Ter119(+) cGKI-deficient splenocytes showed a marked increase in annexin V binding, pointing to phosphatidylserine (PS) exposure at the outer membrane leaflet, a hallmark of suicidal erythrocyte death or eryptosis. Compared with control erythrocytes, cGKI-deficient erythrocytes exhibited in vitro a higher cytosolic Ca(2+) concentration, a known trigger of eryptosis, and showed increased PS exposure, which was paralleled by a faster clearance in vivo. Together, these results identify a role of cGKI as mediator of erythrocyte survival and extend the emerging concept that cGMP/cGKI signaling has an antiapoptotic/prosurvival function in a number of cell types in vivo."	"Role of smooth muscle cGMP/cGKI signaling in murine vascular restenosis. Nitric oxide (NO) is of crucial importance for smooth muscle cell (SMC) function and exerts numerous, and sometimes opposing, effects on vascular restenosis. Although cGMP-dependent protein kinase type I (cGKI) is a principal effector of NO, the molecular pathway of vascular NO signaling in restenosis is unclear. The purpose of this study was to examine the functional role of the smooth muscle cGMP/cGKI signaling cascade in restenosis of vessels. Tissue-specific mouse mutants were generated in which the cGKI protein was ablated in SMCs. We investigated whether the absence of cGKI in SMCs would affect vascular remodeling after carotid ligation or removal of the endothelium. No differences were detected between the tissue-specific cGKI mutants and control mice at different time points after vascular injury on a normolipidemic or apoE-deficient background. In line with these results, chronic drug treatment of injured control mice with the phosphodiesterase-5 inhibitor sildenafil elevated cGMP levels but had no influence on the ligation-induced remodeling. The genetic and pharmacological manipulation of the cGMP/cGKI signaling indicates that this pathway is not involved in the protective effects of NO, suggesting that NO affects vascular remodeling during restenosis via alternative mechanisms."	"Cysteine-rich protein 2, a novel downstream effector of cGMP/cGMP-dependent protein kinase I-mediated persistent inflammatory pain. The cGMP/cGMP-dependent protein kinase I (cGKI) signaling pathway plays an important role in spinal nociceptive processing. However, downstream targets of cGKI in this context have not been identified to date. Using a yeast two-hybrid screen, we isolated cysteine-rich protein 2 (CRP2) as a novel cGKI interactor in the spinal cord. CRP2 is expressed in laminas I and II of the mouse spinal cord and is colocalized with cGKI, calcitonin gene-related peptide, and isolectin B4. Moreover, the majority of CRP2 mRNA-positive dorsal root ganglion (DRG) neurons express cGKI and peripherin. CRP2 is phosphorylated in a cGMP-dependent manner, and its expression increases in the spinal cord and in DRGs after noxious stimulation of a hindpaw. To elucidate the functional role of CRP2 in nociception, we analyzed mice with a targeted deletion of CRP2. CRP2-deficient (CRP2-/-) mice demonstrate normal behavioral responses to acute nociception and after axonal injury of the sciatic nerve, but increased nociceptive behavior in models of inflammatory hyperalgesia compared with wild-type mice. Intrathecal administration of cGMP analogs increases the nociceptive behavior in wild-type but not in CRP2-/- mice, indicating that the presence of CRP2 is important for cGMP-mediated nociception. These data suggest that CRP2 is a new downstream effector of cGKI-mediated spinal nociceptive processing and point to an inhibitory role of CRP2 in the generation of inflammatory pain."	"Expression and distribution of cyclic GMP-dependent protein kinase-1 isoforms in human penile erectile tissue. Besides the bioavailability of nitric oxide (NO), downstream guanine monophosphate (cGMP) effector proteins are also considered to play a significant role in penile vascular disease. In animal studies, a downregulation of the cGMP-dependent protein kinase-1 (cGKI) alpha isoform has been linked to erectile dysfunction and diabetes mellitus. So far, the expression of cGKI alpha and beta isoforms has not been evaluated in human penile erectile tissue. To evaluate the expression of cGKI alpha and beta isoforms in relation to smooth muscle alpha-actin, cGMP, and endothelial NO synthase (eNOS) in human cavernous arteries (HCAs) and human corpus cavernosum (HCC). Cryostat sections of HCA and HCC were incubated with primary antibodies directed against alpha-actin, cGMP, eNOS, cGKI, cGKI alpha, and cGKI beta. Visualization of double-labeled immunofluorescent stainings was achieved by laser microscopy. Western blot analysis was performed in order to confirm the expression of cGKI isoforms. Expression of cGKI alpha and beta isoforms in relation to smooth muscle alpha-actin, cGMP, and eNOS in human penile erectile tissue. Immunoreactivities specific for cGKI, cGKI alpha, and cGKI beta were observed within the smooth musculature and the endothelium of cavernous arteries and sinusoids. Double stainings revealed the colocalization of alpha-actin, cGMP, eNOS, and cGKI isoforms. The expression of cGKI isoforms was confirmed by Western blot analysis. Our results demonstrate, for the first time, the expression of both cGKI alpha and beta isoforms in the smooth musculature of HCA and HCC. Corresponding to recent findings from animal studies, the presence of cGKI alpha and beta provides further evidence for a significant role of these enzymes in the control of smooth muscle function in human penile erectile tissue."	"cGMP-dependent protein kinase I and smooth muscle relaxation: a tale of two isoforms. NA"	"Rescue of cGMP kinase I knockout mice by smooth muscle specific expression of either isozyme. Smooth muscle expresses the Ialpha and the Ibeta isoforms of cGMP-dependent protein kinase I (cGKI). Inactivation of the murine cGKI gene prkg1 leads to multiple phenotypes and premature death at approximately 6 weeks. We reconstituted mice with the cGKIalpha or -Ibeta isozyme to test which isozyme was needed to support basic smooth muscle functions. Mice were generated by gene targeting. The cGKIalpha or the -Ibeta coding sequences were placed under the control of the SM22alpha promoter to express either isoform selectively in smooth muscle cells (SM-Ialpha or SM-Ibeta transgene). To generate smooth muscle-specific cGKIalpha or cGKIbeta rescue mice, the SM-Ialpha or SM-Ibeta transgenes were crossed on a cGKI-/- genetic background. The levels of cGKIalpha or -Ibeta expression were comparable to endogenous cGKI expression in wild-type aortic and intestinal smooth muscles. In cGKIalpha or -Ibeta rescue mice, expression of the isozymes was not detectable in non-smooth muscle tissues and cells. Median survival time of the Ialpha and Ibeta rescue mice was 52 weeks. Both isozymes mediated the 8-bromo-cGMP-induced relaxation of precontracted jejunum and aorta muscle strips. Activation of both isozymes reduced hormone- or K+-induced [Ca2+]i levels. The cGKIalpha and cGKIbeta rescue mice did not show a significant difference in intestinal passage time of BaSO4 in comparison with wild-type animals. Telemetric blood pressure measurements in conscious freely moving animals did not show differences between rescues and control mice in basal blood pressure and its regulation by DETA-NO, sodium nitroprusside, carbachol, or Y-27632. These results show that cGKI in smooth muscle is essential and that either cGKI isozyme alone can rescue basic vascular and intestinal smooth muscle functions."	"Cysteine redox sensor in PKGIa enables oxidant-induced activation. Changes in the concentration of oxidants in cells can regulate biochemical signaling mechanisms that control cell function. We have found that guanosine 3',5'-monophosphate (cGMP)-dependent protein kinase (PKG) functions directly as a redox sensor. The Ialpha isoform, PKGIalpha, formed an interprotein disulfide linking its two subunits in cells exposed to exogenous hydrogen peroxide. This oxidation directly activated the kinase in vitro, and in rat cells and tissues. The affinity of the kinase for substrates it phosphorylates was enhanced by disulfide formation. This oxidation-induced activation represents an alternate mechanism for regulation along with the classical activation involving nitric oxide and cGMP. This mechanism underlies cGMP-independent vasorelaxation in response to oxidants in the cardiovascular system and provides a molecular explantion for how hydrogen peroxide can operate as an endothelium-derived hyperpolarizing factor."	"cGMP-dependent protein kinase I interacts with TRIM39R, a novel Rpp21 domain-containing TRIM protein. Nitric oxide modulates vascular smooth muscle cell (SMC) cytoskeletal kinetics and phenotype, in part, by stimulating cGMP-dependent protein kinase I (PKGI). To identify molecular targets of PKGI, an interaction trap screen in yeast was performed using a cDNA encoding the catalytic region of PKGI and a human lung cDNA library. We identified a cDNA that encodes a putative PKGI-interactor that is a novel variant of TRIM39, a member of the really interesting new gene (RING) finger family of proteins. Although this TRIM39 variant encodes the NH(2)-terminal RING finger (RF), B-box, and coiled-coil (RBBC) domains of TRIM39, instead of a complete COOH-terminal B30.2 domain, this TRIM39 isoform contains the COOH-terminal portion of Rpp21, a component of RNase P. RT-PCR demonstrated that the TRIM39 variant, which we refer to as TRIM39R, is transcribed in the human fetal lung and in rat pulmonary artery SMC. Indirect immunofluorescence using an antibody generated against the conserved domains of TRIM39 and TRIM39R revealed the proteins in speckled intranuclear structures in human acute monocytic leukemia (THP-1) and human epidermal carcinoma line (HEp-2) cells. PKGI phosphorylated a typical PKGI/PKA phosphorylation domain in a conserved region of TRIM39 and TRIM39R. Additional studies demonstrated that PKGI interacts with both isoforms of TRIM39 in yeast cells and phosphorylates both isoforms of TRIM39 in human cell lines. Although PKGI has been observed to interact with proteins that regulate cytoskeletal function and gene expression, this investigation shows for the first time that PKGI interacts with tripartite motif (TRIM) proteins, which, through diverse molecular pathways, are often observed to regulate important aspects of cellular homeostasis."	"Glucose down-regulation of cGMP-dependent protein kinase I expression in vascular smooth muscle cells involves NAD(P)H oxidase-derived reactive oxygen species. Reduced levels of cGMP-dependent protein kinase I (PKG-I) in vasculature have been shown to contribute to diabetic vascular dysfunctions. However, the underlying mechanisms remain unknown. In this report, using primary rat aortic smooth muscle cells (VSMC), we investigated the mechanisms of glucose-mediated regulation of PKG-I expression. Our data showed that high glucose (30 mM glucose) exposure significantly reduced PKG-I production (protein and mRNA levels) as well as PKG-I activity in cultured VSMC. Glucose-mediated decreases in PKG-I levels were inhibited by a superoxide scavenger (tempol) or NAD(P)H oxidase inhibitors (diphenylene iodonium or apocynin). High glucose exposure time-dependently increased superoxide production in VSMC, which was abolished by tempol or apocynin treatment, but not by other inhibitors of superoxide-producing enzymes (L-NAME, rotenone, or oxypurinol). Total protein levels and phosphorylated levels of p47phox (an NADPH oxidase subunit) were increased in VSMC after high glucose exposure. Transfection of cells with siRNA-p47phox abolished glucose-induced superoxide production and restored PKG-I protein levels in VSMC. Treatment of cells with PKC inhibitor prevented glucose-induced p47phox expression/phosphorylation and superoxide production and restored the PKG-I levels. Decreased PKG-I protein levels were also found in femoral arteries from diabetic mice, which were associated with the decreased DEA-NONOate-induced vasorelaxation. Taken together, the present results suggest that glucose-mediated down-regulation of PKG-I expression in VSMC occurs through PKC-dependent activation of NAD(P)H oxidase-derived superoxide production, contributing to diabetes-associated vessel dysfunctions."	"Inhibition of cGMP-dependent protein kinase reduces the response to sonic hedgehog in neuralized embryoid bodies. Previously, we have shown that increasing the intracellular cGMP concentration enhances the sonic hedgehog (Shh) response in neural plate cells. The use of two mouse embryonic stem (ES) cell lines allowed a highly sensitive and reproducible quantification of the Shh response in neuralized embryoid bodies. Here we demonstrate that the specific, membrane-permeable cGMP-dependent protein kinase G-Ialpha (PKG-Ialpha) inhibitor DT-2 prevents an efficient Shh response, indicating that the effects of cGMP on the Shh response are mediated via PKG. We also demonstrate that the PKG acts upon the Shh response upstream of the Ptc1 promoter, which is up-regulated invariably and early in response to Shh, significantly limiting the targets for PKG phosphorylation to molecules involved in the early steps of the Shh response. These effects of cGMP and PKG are antagonistic to those of cAMP and PKA, and thus provide a mechanism by which the sensitivity of cells to the effects of Shh can be regulated, by modulating the intracellular cyclic nucleotide concentration."	"cGMP-dependent protein kinase type I inhibits TAB1-p38 mitogen-activated protein kinase apoptosis signaling in cardiac myocytes. Cardiac myocyte apoptosis during ischemia and reperfusion (I/R) is tightly controlled by a complex network of stress-responsive signaling pathways. One pro-apoptotic pathway involves the interaction of the scaffold protein TAB1 with p38 mitogen-activated protein kinase (p38 MAPK) leading to the autophosphorylation and activation of p38 MAPK. Conversely, NO and its second messenger cGMP protect cardiac myocytes from apoptosis during I/R. We provide evidence that the cGMP target cGMP-dependent protein kinase type I (PKG I) interferes with TAB1-p38 MAPK signaling to protect cardiac myocytes from I/R injury. In isolated neonatal cardiac myocytes, activation of PKG I inhibited the interaction of TAB1 with p38 MAPK, p38 MAPK phosphorylation, and apoptosis induced by simulated I/R. During I/R in vivo, mice with a cardiac myocyte-restricted deletion of PKG I displayed a more pronounced interaction of TAB1 with p38 MAPK and a stronger phosphorylation of p38 MAPK in the myocardial area at risk during reperfusion and more apoptotic cardiac myocytes in the infarct border zone as compared with wild-type littermates. Notably, adenoviral expression of a constitutively active PKG I mutant truncated at the N terminus(PKGI-DeltaN1-92) did not inhibit p38 MAPK phosphorylation and apoptosis induced by simulated I/R in vitro, indicating that the N terminus of PKG I is required. As shown by co-immunoprecipitation experiments in HEK293 cells, cGMP-activated PKG I, but not constitutively active PKG I-DeltaN1-92 or PKG I mutants carrying point mutations in the N-terminal leucine-isoleucine zipper, interacted with p38 MAPK, and prevented the binding of TAB1 to p38 MAPK. Together, our data identify a novel interaction between the cGMP target PKG I and the TAB1-p38 MAPK signaling pathway that serves as a defense mechanism against myocardial I/R injury."	"Comparative integromics on BMP/GDF family. WNT, Notch, FGF, Hedgehog and BMP signaling pathways network together during embryogenesis, tissue regeneration, and carcinogenesis. BMP2, BMP3, BMP4, BMP5, BMP6, BMP7, BMP8A, BMP8B, BMP10, BMP15, AMH, GDF1, GDF2, GDF3, GDF5, GDF6, GDF7, GDF8, GDF9, GDF10, GDF11, and GDF15 are BMP/GDF family genes within the human genome; however, transcriptional regulation of BMP/GDF family members by the canonical WNT signaling pathway remains unclear. We searched for the TCF/LEF-binding site within the promoter region of BMP/GDF family genes by using bioinformatics and human intelligence. Because four TCF/LEF-binding sites were identified within human GDF10 promoter, comparative genomics analyses on GDF10 orthologs were further performed. Chimpanzee GDF10 gene, encoding a 477-amino-acid protein, was identified within NW_112875.1 genome sequence. AY412135.1 was not the correct coding sequence for chimpanzee GDF10. Chimpanzee GDF10 showed 99.2%, 83.2% and 47.4% total amino-acid identity with human GDF10, mouse Gdf10 and human BMP3, respectively. RASGEF1A-GDF10-PRKG1 locus at human chromosome 10q11 and BMP3-PRKG2-RASGEF1B locus at human chromosome 4q21 were paralogous regions with insertions/deletions and recombination. Human GDF10 mRNA was expressed in fetal cochlea, fetal lung, testis, retina, pineal gland, other neural tissues, head and neck tumors, while mouse Gdf10 mRNA was expressed in fetal liver, inner ear, cerebellum, other neural tissues, prostate and blood vessels. Four TCF/LEF-binding sites in human GDF10 promoter were conserved in chimpanzee GDF10 promoter, but not in the mouse Gdf10 promoter; however, another TCF/LEF-binding site occurred in mouse Gdf10 promoter. Four bHLH-binding sites in human GDF10 promoter were conserved in chimpanzee GDF10 promoter, but only one in mouse Gdf10 promoter. Primate GDF10 promoters were divergent from mouse Gdf10 promoter. Because GDF10 was characterized as a potential target of canonical WNT signaling pathway in neural tissues, GDF10 is one of the targets of systems medicine, especially in the field of regenerative medicine."	"A sensitive method for determining the phosphorylation status of natriuretic peptide receptors: cGK-Ialpha does not regulate NPR-A. Natriuretic peptide receptor A (NPR-A) and natriuretic peptide receptor B (NPR-B) are transmembrane guanylyl cyclases that catalyze the synthesis of cGMP in response to natriuretic peptides. Phosphorylation and dephosphorylation regulate these receptors and have been traditionally studied by (32)PO(4) labeling of transfected cells. However, this approach cannot be used to determine the phosphorylation state of receptors isolated from unlabeled sources. Here, we use Pro-Q Diamond and SYPRO Ruby dyes to quantify the phosphorylation status and protein levels, respectively, of natriuretic peptide receptors from tissues and cells. Strong Pro-Q Diamond signals for NPR-A and NPR-B were obtained when receptors were isolated from lung tissue, liver tissue and overexpressing cells. The level of NPR-A Pro-Q staining was also high in kidney but was much lower in heart tissue. In contrast, the SYPRO Ruby protein signal was weaker and more variable. In a direct comparison, Pro-Q Diamond staining was as sensitive as but more specific than the (32)PO(4) labeling method. The two approaches were highly correlated (R(2) = 0.98). We exploited these techniques to measure the effect of cGMP-dependent protein kinase Ialpha on the phosphate content and guanylyl cyclase activity of NPR-A. Neither value was significantly affected in cells overexpressing cGK-Ialpha or in tissues from mice lacking cGK-I. We conclude that cGK-I does not regulate the cyclase activity or phosphorylation state of NPR-A. Furthermore, we find that Pro-Q Diamond staining is a sensitive method for measuring the phosphate levels of natriuretic peptide receptors, but protein levels are best detected by Western blot analysis, not SYPRO Ruby staining."	"Isolated regulatory domains of cGMP-dependent protein kinase Ialpha and Ibeta retain dimerization and native cGMP-binding properties and undergo isoform-specific conformational changes. Molecular mechanisms that provide for cGMP activation of cGMP-dependent protein kinase (PKG) are unknown. PKGs are dimeric; each monomer contains a regulatory (R) and catalytic (C) domain. In this study, isolated recombinant R domains of PKGIalpha-(Delta349-670) and PKGIbeta-(Delta364-685) containing the dimerization and autoinhibitory subdomains and two allosteric cGMP-binding sites were expressed in Sf9 cells. Both R domains were dimers with elongated conformations (Stokes radii of 44 and 51 A, respectively, and frictional coefficients of 1.6 and 1.8, respectively). Exchange dissociation kinetics and K(D) values for cGMP were similar for each holoenzyme and its isolated R domain, indicating that under these conditions the C domain does not appreciably alter cGMP-binding functions of the R domain. As determined by gel filtration chromatography, cGMP binding caused elongation of the PKGIalpha-isolated R domain and contraction of the PKGIbeta-isolated R domain. Cyclic GMP-bound forms of the isoforms have similar physical dimensions that may reflect a common conformation of active isoforms. Elongation of the PKGIbeta holoenzyme associated with cGMP binding and PKG activation cannot be explained solely by conformational change in its R domain, but elongation of the PKGIalpha R domain may partially account for the elongation of wild type PKGIalpha associated with cGMP binding. The cGMP-induced conformational changes in the respective R domains are likely to be critical for kinase activation."	"Fluorescent sensors for rapid monitoring of intracellular cGMP. Sensors based on fluorescence resonance energy transfer (FRET) are powerful tools to monitor signaling events in living mammalian cells. Here we describe development and use of new sensors for cyclic GMP (cGMP) based on cGMP binding domains from cGMP-dependent protein kinase I (GKI) and from phosphodiesterases (PDEs). The temporal and spatial resolution attained with the new sensors is superior to that of existing techniques, and permits direct recording and imaging of rapid cGMP-signaling events."	"NO-dependent osteoclast motility: reliance on cGMP-dependent protein kinase I and VASP. The osteoclast degrades bone in cycles; between cycles, the cell is motile. Resorption occurs by acid transport into an extracellular compartment defined by an alphavbeta3 integrin ring. NO has been implicated in the regulation of bone turnover due to stretch or via estrogen signals, but a specific mechanism linking NO to osteoclastic activity has not been described. NO stimulates osteoclast motility, and at high concentrations NO causes detachment and terminates resorption. Here we demonstrate that NO regulates attachment through the cGMP-dependent protein kinase I (PKG I) via phosphorylation of the intermediate protein VASP. VASP colocalized with the alphavbeta3 ring in stationary cells, but alternating bands of VASP and alphavbeta3 occurred when motility was induced by NO donors or cGMP. Redistribution of VASP correlated with its phosphorylation. Dependency of NO-induced motility on PKG I and on VASP was shown by siRNA knockdown of each protein. VASP knockdown also altered distribution of alphavbeta3 at the attachment site. We conclude that PKG I and VASP are essential for reorganization of attachment and cytoplasmic proteins in motility induced by NO or by cGMP."	"Cyclic guanosine 5'-monophosphate-dependent protein kinase II is induced by luteinizing hormone and progesterone receptor-dependent mechanisms in granulosa cells and cumulus oocyte complexes of ovulating follicles. Cyclic GMP (cGMP)-dependent protein kinase II (Prkg2, cGK II) was identified as a potential target of the progesterone receptor (Nr3c3) in the mouse ovary based on microarray analyses. To document this further, the expression patterns of cGK II and other components of the cGMP signaling pathway were analyzed during follicular development and ovulation using the pregnant mare serum gonadotropin (PMSG)-human chorionic gonadotropin (hCG)-primed immature mice. Levels of cGK II mRNA were low in ovaries of immature mice, increased 4-fold in response to pregnant mare serum gonadotropin and 5-fold more within 12 h after hCG, the time of ovulation. In situ hybridization localized cGK II mRNA to granulosa cells and cumulus oocyte complexes of periovulatory follicles. In progesterone receptor (PR) null mice, cGK II mRNA was reduced significantly at 12 h after hCG in contrast to heterozygous littermates. In primary granulosa cell cultures, cGK II mRNA was induced by phorbol 12-myristate 13-acetate enhanced by adenoviral expression of PR-A and blocked by RU486 and trilostane. PR-A in the absence of phorbol 12-myristate 13-acetate was insufficient to induce cGK II. Expression of cGK I (Prkg1) was restricted to the residual tissue and not regulated by hormones. Guanylate cyclase-A (Npr1; GC-A) mRNA expression increased 6-fold by 4 h after hCG treatment in contrast to pregnant mare serum gonadotropin alone and was localized to granulosa cells of preovulatory follicles. Collectively, these data show for the first time that cGK II (not cGK I) and GC-A are selectively induced in granulosa cells of preovulatory follicles by LH- and PR-dependent mechanisms, thereby providing a pathway for cGMP function during ovulation."	"Elevated blood pressure and cardiac hypertrophy after ablation of the gly96/IEX-1 gene. gly96/IEX 1 is a growth- and apoptosis-regulating, immediate early gene that is widely expressed in epithelial and vascular tissues. In vascular tissues, expression of the gene is induced by mechanical stretch, and overexpression of the gene prevents injury-induced vascular smooth muscle hypertrophy and neointimal hyperplasia. We now show that deletion of the gly96/IEX-1 gene in mice is associated with development of elevated blood pressure, cardiac hypertrophy, and diminished fractional shortening of the left ventricle. Systolic blood pressure in conscious male gly96/IEX-1-/- mice is 20-25 mmHg higher than in gly96/IEX-1+/+ mice. Serum and/or urine concentrations of sodium, potassium, creatinine, angiotensin II, corticosterone, aldosterone, epinephrine, norepinephrine, prostaglandin E2, thromboxane B2, prostaglandin-6-keto-1alpha, nitrites and nitrates, cAMP, and cGMP are normal in gly96/IEX-1-/- mice. Alterations in dietary sodium intake do not alter blood pressure in gly96/IEX-1-/- mice. Aortic mRNAs for endothelial nitric oxide synthase, guanylate cyclase-alpha, and cGMP kinase-1 are increased in gly96/IEX-1-/- mice. Treatment with Nomega-nitro-L-arginine methyl ester or L-arginine does not alter blood pressure in gly96/IEX-1-/- mice. Gly96/IEX-1-/- mice respond to infused sodium nitroprusside with decrements in blood pressure similar to those seen in wild-type littermate mice. In contrast to gly96/IEX-1 transgenic mice that have abnormalities in immune function, gly96/IEX-1-/- mice have normal lymphoid tissue architecture and a normal complement of T and B cells in lymphoid tissues. Ablation of the gly96/IEX-1 gene results in hypertension and cardiac hypertrophy, suggesting a novel role for this gene in cardiovascular physiology."	"Distribution of cGMP-dependent protein kinase type I and its isoforms in the mouse brain and retina. Nitric oxide (NO) modulates a variety of processes in the mammalian brain, but the mechanisms of neuronal NO signaling are poorly understood. In the periphery, many effects of NO are mediated via the generation of the second messenger cyclic guanosine-3',5'-monophosphate (cGMP) and activation of the cGMP-dependent protein kinase type I (cGKI). However, previous studies suggested that the expression of cGKI in the nervous system is rather restricted, thus, questioning the functional significance of the cGMP/cGKI pathway as a mediator of NO signaling in the brain. Here we have performed a detailed immunohistochemical study to elucidate the distribution of cGKI in the CNS and eye of the mouse. Expression of cGKI protein was detected not only in the previously described areas (cerebellum, hippocampus, dorsomedial hypothalamus) but also in a number of additional regions, such as medulla, subcommissural organ, cerebral cortex, amygdala, habenulae, various hypothalamic regions, olfactory bulb, pituitary gland, and retina. Immunoblotting with isoform-specific antibodies indicated that the cGKIalpha isoform is prominent in the cerebellum and medulla, whereas the cGKIbeta isoform is predominant in the cortex, hippocampus, hypothalamus, and olfactory bulb. Similar levels of the isoforms were detected in the pituitary gland and eye. Thus, it appears that distinct brain regions express distinct cGKI isoforms that signal via distinct pathways. Together, these results improve our understanding of the cellular and molecular mechanisms of NO/cGMP/cGKI signaling and indicate that the distribution and functional relevance of this pathway in the mammalian brain is broader than previously thought."	"Abnormal neocortical development in mice lacking cGMP-dependent protein kinase I. Cyclic GMP-dependent protein kinase type I (cGKI) is a key signaling intermediate important for synaptic potentiation in the hippocampus and cerebellum, but its expression and function in cortical development have not been elucidated. The expression of cGKI in the developing mouse neocortex was evaluated by immunofluorescence labeling, and effect of cGKI deletion on cortical development was studied in adult cGKI knockout mice. cGKI was expressed at highest levels at embryonic stages in young neurons and radial glial fibers, corresponding to the major period of radial migration and laminar development of pyramidal neurons (embryonic day E13.5-E14.5), declining upon maturation (E17.5-postnatal day P28). The cerebral cortex of homozygous null mutant mice lacking cGKI exhibited heterotopic collections of neurons in the upper cortical layers and abnormal invaginations of layer I, in accord with a neuronal migration or positioning defect. Some cGKI mutant mice displayed defects in midline development resulting in partial fusion of cerebral hemispheres with adjacent neuronal heterotopias. Apical dendrites of cortical pyramidal neurons were misoriented in the cerebral cortex of cGKI null mutants, as shown in reporter mice expressing yellow fluorescent protein in layer V pyramidal neurons and by Golgi impregnation. These results demonstrate a role for cGKI signaling in cortical development related to neuronal migration/positioning that is important for dendritic orientation and connectivity."	"Rapid and accurate structure determination of coiled-coil domains using NMR dipolar couplings: application to cGMP-dependent protein kinase Ialpha. Coiled-coil motifs play essential roles in protein assembly and molecular recognition, and are therefore the targets of many ongoing structural and functional studies. However, owing to the dynamic nature of many of the smaller coiled-coil domains, crystallization for X-ray studies is very challenging. Determination of elongated structures using standard NMR approaches is inefficient and usually yields low-resolution structures due to accumulation of small errors over long distances. Here we describe a solution NMR approach based on residual dipolar couplings (RDCs) for rapid and accurate structure determination of coiled-coil dimers. Using this approach, we were able to determine the high-resolution structure of the coiled-coil domain of cGMP-dependent protein kinase Ialpha, a protein of previously unknown structure that is critical for physiological relaxation of vascular smooth muscle. This approach can be extended to solve coiled-coil structures with higher order assemblies."	"Lack of association between polymorphism of the human cyclic GMP-dependent protein kinase gene and obesity. To investigate whether genetic variation in the cyclic GMP-dependent protein kinase gene (PRKG1) is associated with obesity. The study included 143 individuals from New York City area, NY, USA. The subjects were sampled on the basis of body mass index (BMI): obese (BMI ranging from 33.8 to 89.5 kg/m(2)), and nonobese (BMI ranging from 16.0 to 29.4 kg/m(2)). The association between C2276T polymorphism in PRKG1 gene and obesity was tested using linear regression analysis. BMI levels were predicted by linear regression models adjusted for demographic factors. An analysis was performed twice: in individuals of all ethnic backgrounds and in European-Americans only. In both cases, genotype did not have a significant effect. We found no evidence that the C2276T polymorphism in the PKRG1 gene is associated with obesity."	"Function of cGMP-dependent protein kinases in the nervous system. The second messenger cyclic guanosine-3',5'-monophosphate (cGMP) mediates many effects of nitric oxide in the nervous system. cGMP may act through various intracellular receptors, among them a family of serine/threonine kinases, the cGMP-dependent protein kinases (cGKs). Hitherto, three mammalian cGKs have been identified: cGKIalpha, cGKIbeta and cGKII. Discrete functions of cGKI and cGKII are determined by their distinct expression patterns and targeting to specific substrates. This review provides an overview about the expression and functions of cGKs in the nervous system. Main emphasis is put on the discussion of phenotypes observed in cGK-deficient mouse models that lack cGKI and/or cGKII globally or selectively in brain regions of interest. Recent data demonstrate important functions of cGKI in (1) the development and sensitization of nociceptive neurons, and (2) synaptic plasticity and learning. There is also evidence suggesting that cGKII in the suprachiasmatic nucleus of the hypothalamus is involved in the regulation of circadian rhythmicity. Thus, cGKs serve key functions in the transduction of cGMP signals into cellular responses in distinct regions of the nervous system.-"	"Tracking functions of cGMP-dependent protein kinases (cGK). The options available for distinguishing the effects of cGMP mediated by cGK versus those mediated by other cGMP targets are discussed and evaluated. These include the unnecessary but often sole reliance on synthetic, small-molecule activators and inhibitors of cGK which are increasingly recognized as deficient in specificity. Other important adjunct options include cGK overexpression using adenoviral vectors and transgenic animals, or use of cGK-deficient systems, i.e. cells which have spontaneously lost cGK during repetitive passaging in cell culture, cells treated with siRNA, or genetically-engineered cGK-deficient mice. Finally, cGK-dependent phosphorylation of substrates such as vasodilator stimulated phosphoprotein (VASP) and phosphodiesterase 5 (PDE 5) is described as a useful monitor of cGK presence and activity associated with physiological functions or dysfunctions of signaling pathways."	"Insights into cGMP signalling derived from cGMP kinase knockout mice. cGMP signalling plays an important physiological role in diverse organs including the vasculature, the GI-tract and the nervous system. Furthermore, cGMP-elevating substances such as glyceryl trinitrate are important drugs used in cardiovascular diseases. Physiologically, cGMP synthesis is induced by nitric oxide (NO) and natriuretic peptides through the stimulation of guanylyl cyclases. Major mediators of cGMP signalling are the cGMP-dependent protein kinases type I and II (cGKI and cGKII). The functional significance of each kinase type in diverse organs was determined using total and tissue-specific cGKI- and cGKII-deficient mice. These studies established that cGKI plays a major role in the regulation of the cardiovascular and the gastrointestinal system, hippocampal and cerebellar learning and pain perception. cGKII is involved in intestinal water secretion, bone growth and circardian rhythmicity. The cGK mutant mice are important tools to obtain detailed insights into cGMP-mediated signalling pathways in health and disease."	"Upstream stimulatory factors (USF-1/USF-2) regulate human cGMP-dependent protein kinase I gene expression in vascular smooth muscle cells. Cyclic GMP-dependent protein kinase I plays a pivotal role in regulating smooth muscle cell relaxation, growth, and differentiation. Expression of the enzyme varies greatly in smooth muscle and in other tissues and cell types, yet little is known regarding the mechanisms regulating cGMP-dependent protein kinase gene expression. The present work was undertaken to characterize the mechanisms controlling kinase gene expression in vascular smooth muscle cells. A 2-kb human cGMP-dependent protein kinase I 5'-noncoding promoter sequence was characterized by serial deletion, and functional studies demonstrated that a 591-bp 5'-promoter construct possessed the highest activity compared with all other constructs generated from the larger promoter. Analysis of the sequence between -472 and -591 bp from the transcriptional start site revealed the existence of two E-like boxes known to bind upstream stimulatory factors. Electrophoretic mobility shift assays and functional studies using luciferase reporter gene assays identified upstream stimulatory factors as the transcription factors bound to the E-boxes in the 591-bp promoter. Site-directed mutagenesis of the E-boxes abolished the binding of upstream stimulatory factor proteins and decreased the activity of the cGMP-dependent protein kinase I 591-bp promoter, thus confirming the involvement of these transcription factors in mediating gene expression. Cotransfection experiments demonstrated that overexpression of upstream stimulatory factors 1 and 2 increased cGMP-dependent protein kinase I promoter activity. Collectively, these data suggest that the human proximal cGMP-dependent protein kinase I promoter is regulated by tandem E-boxes that bind upstream stimulatory factors."	"The NO/cGMP pathway inhibits Rap 1 activation in human platelets via cGMP-dependent protein kinase I. The NO/cGMP signalling pathway strongly inhibits agonist-induced platelet aggregation. However, the molecular mechanisms involved are not completely defined. We have studied NO/cGMP effects on the activity of Rap 1, an abundant guanine-nucleotidebinding protein in platelets. Rap 1-GTP levels were reduced by NO-donors and activators of NO-sensitive soluble guanylyl cyclase. Four lines of evidence suggest that NO/cGMP effects are mediated by cGMP-dependent protein kinase (cGKI): (i) Rap 1 inhibition correlated with cGKI activity as measured by the phosphorylation state of VASP, an established substrate of cGKI, (ii) 8-pCPT-cGMP, a membrane permeable cGMP-analog and activator of cGKI, completely blocked Rap1 activation, (iii) Rp-8pCPT-cGMPS, a cGKI inhibitor, reversed NO effects and (iv) expression of cGKI in cGKI-deficient megakaryocytes inhibited Rap1 activation. NO/cGMP/cGKI effects were independent of the type of stimulus used for Rap1 activation. Thrombin-,ADP- and collagen-induced formation of Rap 1-GTP in platelets as well as turbulence-induced Rap 1 activation in megakaryocytes were inhibited. Furthermore, cGKI inhibited ADP-induced Rap 1 activation induced by the Galpha(i)-coupled P2Y12 receptor alone, i.e. independently of effects on Ca2+-signalling. From these studies we conclude that NO/cGMP inhibit Rap 1 activation in human platelets and that this effect is mediated by cGKI. Since Rap1 controls the function of integrin alpha(IIb)beta3, we propose that Rap 1 inhibition might play a central role in the anti-aggregatory actions of NO/cGMP."	"Expression and function of cGMP-dependent protein kinase type I during medaka fish embryogenesis. We isolated and characterized cDNA clones (PKG Ialpha and PKG Ibeta) for medaka fish cGMP-dependent protein kinase (PKG) Ialpha and Ibeta, and demonstrated that both are expressed in the embryos after late gastrula stage. Whole-mount in situ hybridization using each isoform-specific probe revealed that the transcripts of the PKG Ialpha gene were present in the spinal cord and gill arch, whereas those of the PKG Ibeta gene were only weakly expressed in these organs, but highly expressed in the otic vesicles. Injection of PKG Ialpha-specific morpholino antisense oligonucleotides (Ialpha-MO) into two-cell stage medaka fish embryos caused severe abnormalities in the developing embryos, such as the development of a hammer-like head, fusion of the developing eyes, and degeneration of cells around the eyes, whereas injection of PKG Ibeta-specific morpholino antisense oligonucleotides (Ibeta-MO) caused fewer abnormalities in the embryos, even when injected at higher concentrations than Ialpha-MO. The PKG I-overexpressing embryos exhibited smaller eyes and enlargement of the forebrain, a phenotype similar to that observed in the cAMP-dependent protein kinase (PKA)-depressed embryos. In the PKG-deficient embryos, a sonic hedgehog (shh)-target gene, HNF-3beta, was expressed weakly, and this phenotype was similar to that observed in the PKA-overexpressing embryos suggesting that the cGMP/PKG signaling pathway is involved in some steps of shh signaling. We also demonstrated that Gli proteins, shh-downstream molecules, are phosphorylated by the NO/cGMP signaling pathway, probably by PKG in NG108-15 neuroblastoma cells. These results imply that PKG and PKA share common substrates and work in an opposite manner during the early embryogenesis of medaka fish."	"Viagra: now mending hearts. NA"	"Activation of the cGMP pathway in dopaminergic structures reduces cocaine-induced EGR-1 expression and locomotor activity. Nitric oxide (NO) and the C-type natriuretic peptide (CNP) exert their action on brain via the cGMP signaling pathway. NO, by activating soluble guanylyl cyclase, and CNP, by stimulating membrane-bound guanylyl cyclase, cause intracellular increases of cGMP, activating cGMP-dependent protein kinases (PKGs). We show here that injection of CNP into the rat ventral tegmental area strongly reduced cocaine-induced egr-1 expression in the nucleus accumbens in a dose-dependent manner. The effect of CNP was reversed by the previous injection of a selective PKG inhibitor, KT5823. Activation of PKG by 8-bromo-cGMP reduced, like CNP, cocaine-induced gene transcription in dopaminergic structures. To confirm the involvement of PKG, this was overexpressed in either the mesencephalon or the caudate-putamen. Using the polyethyleneimine delivery system, an active protein was expressed by injecting a plasmid vector containing the human PKG-Ialpha cDNA. PKG was overexpressed in dopaminergic and GABAergic neurons when the plasmid was injected in the ventral tegmental area, whereas overexpression was observed in medium spiny GABAergic neurons and in both cholinergic and GABAergic interneurons when the PKG vector was injected into the caudate-putamen. Activation of the overexpressed PKG reduced cocaine-induced egr-1 expression in dopaminergic structures and affected behavior (i.e., locomotor activity). These effects were again reversed by previous injection of the selective PKG inhibitor. The current data suggest that NO and the neuropeptide CNP are potential regulators of cocaine-related effects on behavior."	"cGMP-dependent protein kinase mediates NO- but not acetylcholine-induced dilations in resistance vessels in vivo. cGMP and cGMP-dependent protein kinase type I (cGKI) mediate the dilation of large vessels in response to NO and acetylcholine (ACh). However, the physiological significance of the NO/cGMP/cGKI pathway in resistance vessels is controversial. Here, we analyzed NO- and ACh-induced dilations of arterioles in cGKI-deficient (cGKI-/-) or endothelial NO synthase-deficient (eNOS-/-) mice. Mean arterial pressure was similar in cGKI-/- and wild-type mice (105 mm Hg). Pressure drops in response to intracarotid bolus application of the NO donor sodium nitroprusside (SNP) were almost abolished in cGKI-/- mice, whereas ACh-induced pressure decreases remained intact in cGKI-/- and eNOS-/- mice. The direct observation of arterioles in the cremaster muscle by intravital microscopy showed impaired SNP-induced dilations in cGKI-/- mice (by 80%) and normal ACh-induced dilations in cGKI-/- and eNOS-/- mice. ACh-induced dilations in eNOS-/- mice were attenuated by iberiotoxin (by 50%), indicating that they were mediated in part by Ca2+-activated K+ channels, but not by inhibitors of cyclooxygenase or p450-monooxygenases. We conclude that cGMP and cGKI are the major effectors of NO to induce acute dilations of murine resistance vessels. However, the NO/cGMP/cGKI pathway is not essential for ACh-induced dilation of arterioles and for basal blood pressure regulation in mice."	"Distribution of IRAG and cGKI-isoforms in murine tissues. cGMP kinase I (cGKI) signaling modulates multiple physiological processes including smooth muscle relaxation. The expression of cGKI and its substrate IRAG (Inositol 1,4,5-trisphosphate receptor associated cGMP kinase substrate) was studied. IRAG and cGKI were colocalized in the smooth muscle of aorta and colon. IRAG was present in the thalamus and in most of the myenteric plexus in the absence of cGKI. Coexpression of IRAG and cGKIbeta or cGKIalpha in COS-7 cells revealed that IRAG recruits cGKIbeta but not cGKIalpha to the endoplasmic reticulum. These results suggest that IRAG may be involved in cGKI-dependent and -independent pathways."	"Physiology and pathophysiology of vascular signaling controlled by guanosine 3',5'-cyclic monophosphate-dependent protein kinase. Recent medical advances suggest that the cellular natriuretic peptide/cGMP and NO/cGMP effector systems represent important signal transduction pathways especially in the cardiovascular system. These pathways also appear to be very interesting targets for the possible prevention of cardiovascular diseases. Exciting candidates for prevention include cGMP-dependent signaling networks initiated by natriuretic peptides (NP) and nitric oxide (NO) which are currently explored for their diagnostic and therapeutic potential. cGMP signaling contributes to the function and interaction of several vascular cell types, and its dysfunction is involved in the progression of major cardiovascular diseases such as atherosclerosis, hypertension and diabetic complications. This review will take a focussed look at key elements of the cGMP signaling cascade in vascular tissue. Recent advances in our knowledge of cGMP-dependent protein kinases (cGK, also known as PKG), the potential for assessing the functional status of cGMP signaling and the possible cross talk with insulin signaling will be reviewed."	"Formin homology domain protein (FHOD1) is a cyclic GMP-dependent protein kinase I-binding protein and substrate in vascular smooth muscle cells. Cyclic GMP-dependent protein kinase I (PKGI) mediates vascular relaxation by nitric oxide and related nitrovasodilators and inhibits vascular smooth muscle cell (VSMC) migration. To identify VSMC proteins that interact with PKGI, the N-terminal protein interaction domain of PKGIalpha was used to screen a yeast two-hybrid human aortic cDNA library. The formin homology (FH) domain-containing protein, FHOD1, was found to interact with PKGIalpha in this screen. FH domain-containing proteins bind Rho-family GTPases and regulate actin cytoskeletal dynamics, cell migration, and gene expression. Antisera to FHOD1 were raised and used to characterize FHOD1 expression and distribution in vascular cells. FHOD1 is highly expressed in human coronary artery, aortic smooth muscle cells, and in human arterial and venous endothelial cells. In glutathione S-transferase pull-down experiments, the FHOD1 C terminus (amino acids 964-1165) binds full-length PKGI. Both in vitro and intact cell studies demonstrate that the interaction between FHOD1 and PKGI is decreased 3- to 5-fold in the presence of the PKG activator, 8Br-cGMP. Immunofluorescence studies of human VSMC show that FHOD1 is cytoplasmic and is concentrated in the perinuclear region. PKGI also directly phosphorylates FHOD1, and studies with wild-type and mutant FHOD1-derived peptides identify Ser-1131 in the FHOD1 C terminus as the unique PKGI phosphorylation site in FHOD1. These studies demonstrate that FHOD1 is a PKGI-interacting protein and substrate in VSMCs and show that cyclic GMP negatively regulates the FHOD1-PKGI interaction. Based on the known functions of FHOD1, the data are consistent with a role for FHOD1 in cyclic GMP-dependent inhibition of VSMC stress fiber formation and/or migration."	"Involvement of the cGMP signalling pathway in the regulation of viability in insulin-secreting BRIN-BD11 cells. We have evaluated the hypothesis that cGMP may serve as an intracellular messenger regulating the viability of pancreatic beta-cells. A direct activator of soluble guanylyl cyclase, YC-1, caused a time- and dose-dependent loss of viability in clonal BRIN-BD11 beta-cells. This was accompanied by a rise in cGMP and was antagonised by Rp-8-pCPT-cGMPS, a selective inhibitor of protein kinase G (PKG). Reverse transcription polymerase chain reaction analysis confirmed that BRIN-BD11 cells (and human islets) express all three known isoforms of PKG (PKG-Ialpha, -Ibeta and II). Cell death induced by YC-1 was not sensitive to cell-permeable caspase inhibitors and was not accompanied by oligonucleosomal DNA fragmentation. The response was, however, inhibited by actinomycin D, suggesting that a transcription-dependent pathway of programmed cell death is involved in the actions of cGMP."	"Vasodilator-stimulated phosphoprotein activation of serum-response element-dependent transcription occurs downstream of RhoA and is inhibited by cGMP-dependent protein kinase phosphorylation. Vasodilator-stimulated phosphoprotein (VASP) associates with cytoskeletal structures and promotes F-actin formation. RhoA, a member of the Ras superfamily of proteins, activates serum response element (SRE)-dependent transcription through changes in actin dynamics. We now show that the F-actin binding region of VASP is required for VASP stimulation of SRE-dependent transcription, and that VASP is downstream of RhoA in stimulating SRE-dependent transcription. The isolated carboxyl-terminal coiled-coil region of VASP mediates protein tetramerization and has been used as a dominant negative form of VASP; we found that it forms complexes with endogenous VASP in vivo and inhibits in a dose-dependent fashion serum-, RhoA-, and VASP-stimulated SRE-dependent transcription. Cyclic GMP-dependent protein kinase (G-kinase) inhibits RhoA activation of SRE-dependent transcription (Gudi, T., Chen, J. C., Casteel, D. E., Seasholtz, T. M., Boss, G. R., and Pilz, R. B. (2002) J. Biol. Chem. 277, 37382-37393). We now show that the G-kinase inhibition that occurs downstream of RhoA can be explained, at least in part, by G-kinase phosphorylation of VASP on Ser(239) at the carboxyl-terminal end of the G-actin binding site, with some contribution by phosphorylation of Ser(157), which is proximal to the profilin binding site. A phosphorylation-deficient VASP mutant can partly prevent cGMP/G-kinase inhibition of serum- and RhoA-induced SRE-dependent transcription. These studies show that VASP, an important component of the cellular microfilament system, plays a major role in regulating SRE-dependent transcription, and that G-kinase regulates VASP activity."	"Increased effects of C-type natriuretic peptide on contractility and calcium regulation in murine hearts overexpressing cyclic GMP-dependent protein kinase I. 1. C-type natriuretic peptide (CNP) and its receptor guanylyl cyclase (GC-B) are expressed in the heart and modulate cardiac contractility in a cGMP-dependent manner. Since the distal cellular signalling pathways remain unclear, we evaluated the peptide effects on cardiac function and calcium regulation in wild-type (WT) and transgenic mice with cardiac overexpression of cGMP-dependent protein kinase I (PKG ITG). 2. In isolated, perfused working WT hearts, CNP (10 nm) provoked an immediate increase in the maximal rates of contraction and relaxation, a small increase in the left ventricular systolic pressure and a decrease in the time of relaxation. These changes in cardiac function were accompanied by a marked increase in the levels of Ser16-phosphorylated phospholamban (PLB). 3. In PKG ITG hearts, the effects of CNP on cardiac contractility and relaxation as well as on PLB phosphorylation were markedly enhanced. 4. CNP increased cell shortening and systolic Cai2+ levels, and accelerated Cai2+ decay in isolated, Indo-1/AM-loaded WT cardiomyocytes, and these effects were enhanced in PKG I-overexpressing cardiomyocytes. 5. 8-pCPT-cGMP, a membrane-permeable PKG activator, mimicked the contractile and molecular actions of CNP, the effects again being more pronounced in PKG ITG hearts. In contrast, the cardiac responses to beta-adrenergic stimulation were not different between genotypes. 6. Taken together, our data indicate that PKG I is a downstream target activated by the CNP/GC-B/cGMP-signalling pathway in cardiac myocytes. cGMP/PKG I-stimulated phosphorylation of PLB and subsequent activation of the sarcoplasmic reticulum Ca2+ pump appear to mediate the positive inotropic and lusitropic responses to CNP."	"Regulator of G-protein signaling-2 mediates vascular smooth muscle relaxation and blood pressure. Nitric oxide (NO) inhibits vascular contraction by activating cGMP-dependent protein kinase I-alpha (PKGI-alpha), which causes dephosphorylation of myosin light chain (MLC) and vascular smooth muscle relaxation. Here we show that PKGI-alpha attenuates signaling by the thrombin receptor protease-activated receptor-1 (PAR-1) through direct activation of regulator of G-protein signaling-2 (RGS-2). NO donors and cGMP cause cGMP-mediated inhibition of PAR-1 and membrane localization of RGS-2. PKGI-alpha binds directly to and phosphorylates RGS-2, which significantly increases GTPase activity of G(q), terminating PAR-1 signaling. Disruption of the RGS-2-PKGI-alpha interaction reverses inhibition of PAR-1 signaling by nitrovasodilators and cGMP. Rgs2-/- mice develop marked hypertension, and their blood vessels show enhanced contraction and decreased cGMP-mediated relaxation. Thus, PKGI-alpha binds to, phosphorylates and activates RGS-2, attenuating receptor-mediated vascular contraction. Our study shows that RGS-2 is required for normal vascular function and blood pressure and is a new drug development target for hypertension."	"Impairment of LTD and cerebellar learning by Purkinje cell-specific ablation of cGMP-dependent protein kinase I. The molecular basis for cerebellar plasticity and motor learning remains controversial. Cerebellar Purkinje cells (PCs) contain a high concentration of cGMP-dependent protein kinase type I (cGKI). To investigate the function of cGKI in long-term depression (LTD) and cerebellar learning, we have generated conditional knockout mice lacking cGKI selectively in PCs. These cGKI mutants had a normal cerebellar morphology and intact synaptic calcium signaling, but strongly reduced LTD. Interestingly, no defects in general behavior and motor performance could be detected in the LTD-deficient mice, but the mutants exhibited an impaired adaptation of the vestibulo-ocular reflex (VOR). These results indicate that cGKI in PCs is dispensable for general motor coordination, but that it is required for cerebellar LTD and specific forms of motor learning, namely the adaptation of the VOR."	"Dimerization of cGMP-dependent protein kinase Ibeta is mediated by an extensive amino-terminal leucine zipper motif, and dimerization modulates enzyme function. All mammalian cGMP-dependent protein kinases (PKGs) are dimeric. Dimerization of PKGs involves sequences located near the amino termini, which contain a conserved, extended leucine zipper motif. In PKG Ibeta this includes eight Leu/Ile heptad repeats, and in the present study, deletion and site-directed mutagenesis have been used to systematically delete these repeats or substitute individual Leu/Ile. The enzymatic properties and quaternary structures of these purified PKG mutants have been determined. All had specific enzyme activities comparable to wild type PKG. Simultaneous substitution of alanine at four or more of the Leu/Ile heptad repeats ((L3A/L10A/L17A/I24A), (L31A/I38A/L45A/I52A), (L17A/I24A/L31A/I38A/L45A/I52A), and (L3A/L10A/L45A/I52A)) of the motif produces a monomeric PKG Ibeta. Mutation of two Leu/Ile heptad repeats can produce either a dimeric (L3A/L10A) or monomeric (L17A/I24A and L31A/I38A) PKG. Point mutation of Leu-17 or Ile-24 (L17A or I24A) does not disrupt dimerization. These results suggest that all eight Leu/Ile heptad repeats are involved in dimerization of PKG Ibeta. Six of the eight repeats are sufficient to mediate dimerization, but substitutions at some positions (Leu-17, Ile-24, Leu-31, and Ile-38) appear to have greater impact than others on dimerization. The Ka of cGMP for activation of monomeric mutants (PKG Ibeta (delta1-52) and PKG Ibeta L17A/I24A/L31A/I38A/L45A/I52A) is 2- to 3-fold greater than that for wild type dimeric PKG Ibeta, and there is a corresponding 2- to 3-fold increase in cGMP-dissociation rate of the high affinity cGMP-binding site (site A) of these monomers. These results indicate that dimerization increases sensitivity for cGMP activation of the enzyme."	"Hippocampal cGMP-dependent protein kinase I supports an age- and protein synthesis-dependent component of long-term potentiation but is not essential for spatial reference and contextual memory. cGMP-dependent protein kinase I (cGKI) is expressed in the hippocampus, but its role in hippocampal long-term potentiation (LTP) is controversial. In addition, whether cGKI is involved in spatial learning has not been investigated. To address these issues, we generated mice with a hippocampus-specific deletion of cGKI (cGKIhko mice). Unlike conventional cGKI knock-out mice, cGKIhko mice lack gastrointestinal and cardiovascular phenotypes and have a normal life expectancy, which enables us to analyze hippocampal synaptic plasticity and learning in young and adult animals. Hippocampal LTP after repetitive episodes of theta burst stimulation was impaired in adult (12-14 weeks of age) but not in juvenile (3-4 weeks of age) cGKIhko mice. The difference in LTP between adult control and cGKIhko mice was abolished by the protein synthesis inhibitor anisomycin, suggesting that the impairment of LTP in adult cGKIhko mice reflects a defect in late-phase LTP. Despite their deficit in LTP, adult cGKIhko mutants showed normal performance in a discriminatory water maze and had intact contextual fear conditioning. These results suggest that hippocampal cGKI supports an age- and protein synthesis-dependent form of hippocampal LTP, whereas it is dispensable for hippocampus-dependent spatial reference and contextual memory."	"Optimization of quantitative real-time RT-PCR parameters for the study of lymphoid malignancies. Real-time quantitative reverse transcription polymerase chain reaction (RT-PCR) is a powerful method for measurement of gene expression for diagnostic and prognostic studies of non-Hodgkin's lymphomas (NHL). In order for this technique to gain wide applicability, it is critically important to establish a uniform method for normalization of RNA input. In this study, we have determined the best method to quantify the RNA/cDNA input per reaction and searched for the most useful endogenous control genes for normalization of the measurements, based on their abundance and lowest variability between different types of lymphoid cells. To accomplish these aims, we have analyzed the RNA expression of 11 potential endogenous control genes (glyceraldehyde-3-phosphate dehydrogenase, beta-actin, peptidylprolyl isomerase A, beta 2 microglobulin, protein kinase cGMP-dependent, type I, hypoxanthine phosphoribosyltransferase 1, TATA box binding protein, transferrin receptor, large ribosomal protein, beta-glucoronidase and 18S ribosomal RNA). In all, 12 different B- and T-cell lymphoma/leukemia cell lines, 80 B- and T-cell NHL specimens, and resting and activated normal B and T lymphocytes were screened. Normalization of the nucleic acid input by spectrophotometric OD(260) measurement of RNA proved more reliable than spectrophotometric or fluorometric measurements of cDNA or than electrophoretic estimation of the ribosomal and mRNA fractions. The protein kinase cGMP-dependent, type I (PRKG1) and the TBP genes were expressed at common abundance and exhibited the lowest variability among the cell specimens. We suggest that for further lymphoma studies based on the real-time RT-PCR quantification of gene expression, that RNA input in each reaction be equalized between the specimens by spectrophotometric OD(260) measurements. The expression of the gene of interest in different samples should be normalized by concomitant measurement of the PRKG1 and/or the TBP gene products."	"Downregulation of cytoskeletal muscle LIM protein by nitric oxide: impact on cardiac myocyte hypertrophy. In chronic heart failure, myocardial expression of the inducible isoform of nitric oxide (NO) synthase (NOS2) is enhanced, leading to a sustained production of NO. We postulated that NO modulates expression of genes in cardiac myocytes that may be functionally important in the context of cardiac hypertrophy and failure. As revealed by cDNA expression array analyses, the NO donor SNAP, which has been shown previously to inhibit agonist-induced cardiac myocyte hypertrophy, downregulates expression of the cytoskeleton-associated muscle LIM protein (MLP) in endothelin-1 (ET-1)-stimulated neonatal rat cardiac myocytes. Northern blotting and immunoblotting experiments confirmed this finding and established that SNAP negatively controls MLP mRNA (-49%, P&lt;0.01) and protein (-52%, P&lt;0.01) abundance in ET-1-treated cardiomyocytes via cGMP-dependent protein kinase and superoxide/peroxynitrite-dependent signaling pathways. Treatment of cardiac myocytes with IL-1beta and IFN-gamma downregulated MLP expression levels via induction of NOS2. Moreover, expression levels of NOS2 and MLP were inversely correlated in the failing human heart, indicating that NOS2 may regulate MLP abundance in vitro and in vivo. Antisense oligonucleotides were used to explore the functional consequences of reduced MLP expression levels in cardiac myocytes. Like SNAP, antisense downregulation of MLP protein expression (-52%, P&lt;0.01) blunted the increases in protein synthesis, cell size, and sarcomere organization in response to ET-1 stimulation. Conversely, overexpression of MLP augmented cell size and sarcomere organization in cardiac myocytes. NO negatively controls MLP expression in cardiac myocytes. Because MLP is necessary and sufficient for hypertrophy and sarcomere assembly, MLP downregulation may restrain hypertrophic growth in pathophysiological situations with increased cardiac NO production."	"A drosophila model for attention deficit hyperactivity disorder (ADHD): No evidence of association with PRKG1 gene. Attention deficit hyperactivity disorder (ADHD) is a prevalent psychiatric condition in children and follow up studies have indicated that 22-33% of patients continue to suffer from ADHD during late adolescence and adulthood. The action of psychostimulant drugs may be determined by additional mechanisms beyond the dopamine transporter and receptors. We are exploring new methodology for discovering these mechanisms. For example, in Drosophila, such an additional determinant of psychostimulant action could be protein kinase G (PKG) that affects food-search behavior. Here we initiated studies with the human homologue of PKG, the PRKG1 gene. The aim of this study was to investigate for the presence of linkage disequilibrium between the protein kinase G gene (PRKG1) and adult ADHD in a sample of nuclear families. Genotyping data for the C2276T polymorphism were analyzed using the Transmission Disequilibrium Test (TDT). Sixty three nuclear families were informative for the TDT on C2276T polymorphism, which showed no preferential transmission of either allele (chi-square = 0.778, df = 1, p = 0.316). These findings exclude a direct involvement of this genetic marker of the Protein kinase G gene in the pathogenesis of ADHD."	"Activation of cGMP-dependent protein kinase by protein kinase C. The cGMP-dependent protein kinases (PKG) are emerging as important components of mainstream signal transduction pathways. Nitric oxide-induced cGMP formation by stimulation of soluble guanylate cyclase is generally accepted as being the most widespread mechanism underlying PKG activation. In the present study, PKG was found to be a target for phorbol 12-myristate 13-acetate (PMA)-responsive protein kinase C (PKC). PKG1alpha became phosphorylated in HEK-293 cells stimulated with PMA and also in vitro using purified components. PKC-dependent phosphorylation was found to activate PKG as measured by phosphorylation of vasodilator-stimulated phosphoprotein, and by in vitro kinase assays. Although there are 11 potential PKC substrate recognition sites in PKG1alpha, threonine 58 was examined due to its proximity to the pseudosubstrate domain. Antibodies generated against the phosphorylated form of this region were used to demonstrate phosphorylation in response to PMA treatment of the cells with kinetics similar to vasodilator-stimulated phosphoprotein phosphorylation. A phospho-mimetic mutation at this site (T58E) generated a partially activated PKG that was more sensitive to cGMP levels. A phospho-null mutation (T58A) revealed that this residue is important but not sufficient for PKG activation by PKC. Taken together, these findings outline a novel signal transduction pathway that links PKC stimulation with cyclic nucleotide-independent activation of PKG."	"Direct activation of PDE5 by cGMP: long-term effects within NO/cGMP signaling. In platelets, the nitric oxide (NO)-induced cGMP response is indicative of a highly regulated interplay of cGMP formation and cGMP degradation. Recently, we showed that within the NO-induced cGMP response in human platelets, activation and phosphorylation of phosphodiesterase type 5 (PDE5) occurred. Here, we identify cyclic GMP-dependent protein kinase I as the kinase responsible for the NO-induced PDE5 phosphorylation. However, we demonstrate that cGMP can directly activate PDE5 without phosphorylation in platelet cytosol, most likely via binding to the regulatory GAF domains. The reversal of activation was slow, and was not completed after 60 min. Phosphorylation enhanced the cGMP-induced activation, allowing it to occur at lower cGMP concentrations. Also, in intact platelets, a sustained NO-induced activation of PDE5 for as long as 60 min was detected. Finally, the long-term desensitization of the cGMP response induced by a low NO concentration reveals the physiological relevance of the PDE5 activation within NO/cGMP signaling. In sum, we suggest NO-induced activation and phosphorylation of PDE5 as the mechanism for a long-lasting negative feedback loop shaping the cGMP response in human platelets in order to adapt to the amount of NO available."	"Mechanisms associated with cGMP binding and activation of cGMP-dependent protein kinase. Using small-angle x-ray scattering, we have observed the cGMP-induced elongation of an active, cGMP-dependent, monomeric deletion mutant of cGMP-dependent protein kinase (Delta(1-52)PKG-I beta). On saturation with cGMP, the radius of gyration of Delta(1-52)PKG-I beta increases from 29.4 +/- 0.1 A to 40.1 +/- 0.7 A, and the maximum linear dimension increases from 90 A +/- 10% to 130 A +/- 10%. The elongation is due to a change in the interaction between structured regulatory (R) and catalytic (C) domains. A model of cGMP binding to Delta(1-52)PKG-I beta indicates that elongation of Delta(1-52)PKG-I beta requires binding of cGMP to the low-affinity binding site of the R domain. A comparison with cAMP-dependent protein kinase suggests that both elongation and activation require cGMP binding to both sites; cGMP binding to the low-affinity site therefore seems to be a necessary, but not sufficient, condition for both elongation and activation of Delta(1-52)PKG-I beta. We also predict that there is little or no cooperativity in cGMP binding to the two sites of Delta(1-52)PKG-I beta under the conditions used here. Results obtained by using the Delta(1-52)PKG-I beta monomer indicate that a previously observed elongation of PKG-I alpha is consistent with a pure change in the interaction between the R domain and the C domain, without alteration of the dimerization interaction. This study has revealed important features of molecular mechanisms in the biochemical network describing PKG-I beta activation by cGMP, yielding new insight into ligand activation of cyclic nucleotide-dependent protein kinases, a class of regulatory proteins that is key to many cellular processes."	"Association of phospholamban with a cGMP kinase signaling complex. The cGMP kinase signaling complex identified previously in tracheal smooth muscle membranes contains a number of cGMP kinase substrates termed G0 through G4. G0, G1, and G2 were identified as IP(3) receptor I (IP(3)RI), IRAG, and cGMP kinase I. Sequencing of purified G3 and G4 showed that these proteins were proteolytic cleavage products of IRAG. However, the purified cGMP kinase signaling complex contained following additional proteins: alpha-actin, calponin H1, and phospholamban (PLB) as verified by MALDI-TOF as well as MS/MS sequencing and immune detection. The complex of these six proteins was immune precipitated by antibodies to each protein. The proteins were phosphorylated by the endogenous cGMP kinase I with the exception of alpha-actin and calponin H1. The complex did not contain the Ca(2+)-ATPase SERCA II. PLB, IP(3)RI, and cGMP kinase Ibeta were co-immune precipitated after expression in COS-7 cells. These results suggest that PLB may have additional functions to regulate the activity of SERCA II."	"Insulin inhibits PDGF-directed VSMC migration via NO/ cGMP increase of MKP-1 and its inactivation of MAPKs. In this study, we examined the role of insulin in the control of vascular smooth muscle cell (VSMC) migration in the normal vasculature. Platelet-derived growth factor (PDGF) increased VSMC migration, which was inhibited by pretreatment with insulin in a dose-dependent manner. Insulin also caused a 60% decrease in PDGF-stimulated mitogen-activated protein kinase (MAPK) phosphorylation and activation. Insulin inhibition of MAPK was accompanied by a rapid induction of MAPK phosphatase (MKP-1), which inactivates MAPKs by dephosphorylation. Pretreatment with inhibitors of the nitric oxide (NO)/cGMP pathway, blocked insulin-induced MKP-1 expression and restored PDGF-stimulated MAPK activation and migration. In contrast, adenoviral infection of VSMCs with MKP-1 or cGMP-dependent protein kinase Ialpha (cGK Ialpha), the downstream effector of cGMP signaling, blocked the activation of MAPK and prevented PDGF-directed VSMC migration. Expression of antisense MKP-1 RNA prevented insulin's inhibitory effect and restored PDGF-directed VSMC migration and MAPK phosphorylation. We conclude that insulin inhibition of VSMC migration may be mediated in part by NO/cGMP/cGK Ialpha induction of MKP-1 and consequent inactivation of MAPKs."	"cGMP-dependent protein kinase inhibits serum-response element-dependent transcription by inhibiting rho activation and functions. RhoA, in its active GTP-bound form, stimulates transcription through activation of the serum-response factor (SRF). We found that cGMP inhibited serum-induced Rho.GTP loading and transcriptional activation of SRF-dependent reporter genes in smooth muscle and glial cells in a cGMP-dependent protein kinase (G-kinase)-dependent fashion. Serum stimulation of the SRF target gene vinculin was also blocked by cGMP/G-kinase. G-kinase activation inhibited SRF-dependent transcription induced by upstream RhoA activators including Galpha(13) and p115RhoGEF, with Galpha(13)-induced Rho.GTP loading inhibited by G-kinase. G-kinase had no effect on the high activation levels of RhoA(63L) or the double mutant RhoA(63L,188A) but inhibited transcriptional activation by these two RhoA mutants to a similar extent, suggesting an effect downstream of RhoA and independent of RhoA Ser(188) phosphorylation. Constitutively active forms of the Rho effectors Rho kinase (ROK), PKN, and PRK-2 induced SRF-dependent transcription in a cell type-specific fashion with ROK being the most efficient; G-kinase inhibited transcription induced by all three effectors without affecting ROK catalytic activity. G-kinase had no effect on RhoA(63L)-induced morphological changes in glial cells, suggesting distinct transcriptional and cytoskeletal effectors of RhoA. We conclude that G-kinase inhibits SRF-dependent transcription by interfering with RhoA signaling; G-kinase acts both upstream of RhoA, inhibiting serum- or Galpha(13)-induced Rho activation, and downstream of RhoA, inhibiting steps distal to the Rho targets ROK, PKN, and PRK-2."	"Autoinhibition and isoform-specific dominant negative inhibition of the type II cGMP-dependent protein kinase. In the absence of cyclic nucleotides, the cAMP-dependent protein kinase and cGMP-dependent protein kinases (cGKs) suppress phosphotransfer activity at the catalytic cleft by competitive inhibition of substrate binding with a pseudosubstrate sequence within the holoenzyme. The magnitude of inhibition can be diminished by autophosphorylation near this pseudosubstrate sequence. Activation of type I cGK (cGKI) and type II cGK (cGKII) are differentially regulated by their cyclic nucleotide-binding sites. To address the possibility that the distinct activation mechanisms of cGKII and cGKI result from differences in the autophosphorylation of the inhibitory domain, we investigated the effects of autophosphorylation on the kinetics of activation. Unlike the type I cGKs (cGKIalpha and Ibeta), cGKII autophosphorylation did not alter the basal activity, nor the sensitivity of the enzyme to cyclic nucleotide activation. To determine residues responsible for autoinhibition of cGKII, Ala was substituted for basic residues (Lys(122), Arg(118), and Arg(119)) or a hydrophobic residue (Val(125)) within the putative pseudosubstrate domain of cGKII. The integrity of these residues was essential for full cGKII autoinhibition. Furthermore, a cGKII truncation mutant containing this autoinhibitory region demonstrated a nanomolar IC(50) toward a constitutively active form of cGKII. Finally, we present evidence that the dominant negative properties of this truncation mutant are specific to cGKII when compared with cAMP-dependent protein kinase Calpha and cGKIbeta. These findings extend the known differences in the activation mechanisms among cGK isoforms and allow the design of an isoform-specific cGKII inhibitor."	"Inhibition of cGMP-dependent protein kinase II by its own splice isoform. cGMP- and cAMP-dependent protein kinases (cGK I, cGK II, and cAK) are important mediators of many signaling pathways that increase cyclic nucleotide concentrations and ultimately phosphorylation of substrates vital to cellular functions. Here we demonstrate a novel mRNA splice isoform of cGK II arising from alternative 5' splicing within exon 11. The novel splice variant encodes a protein (cGK II Delta(441-469)) lacking 29 amino acids of the cGK II Mg-ATP-binding/catalytic domain, including the conserved glycine-rich loop consensus motif Gly-x-Gly-x-x-Gly-x-Val which interacts with ATP in the protein kinase family of enzymes. cGK II Delta(441-469) has no intrinsic enzymatic activity itself, however, it antagonizes cGK II and cGK I, but not cAK. Thus, the activation and cellular functions of cGK II may be determined not only by intracellular cGMP levels but also by alternative splicing which may regulate the balance of expression of cGK II versus its own inhibitor, cGK II Delta(441-469)."	"Functional reconstitution of vascular smooth muscle cells with cGMP-dependent protein kinase I isoforms. The cGMP-dependent protein kinase type I (cGKI) is a major mediator of NO/cGMP-induced vasorelaxation. Smooth muscle expresses two isoforms of cGKI, cGKIalpha and cGKIbeta, but the specific role of each isoform in vascular smooth muscle cells (VSMCs) is poorly understood. We have used a genetic deletion/rescue strategy to analyze the functional significance of cGKI isoforms in the regulation of the cytosolic Ca(2+) concentration by NO/cGMP in VSMCs. Cultured mouse aortic VSMCs endogenously expressed both cGKIalpha and cGKIbeta. The NO donor diethylamine NONOate (DEA-NO) and the membrane-permeable cGMP analogue 8-bromo-cGMP inhibited noradrenaline-induced Ca(2+) transients in wild-type VSMCs but not in VSMCs genetically deficient for both cGKIalpha and cGKIbeta. The defective Ca(2+) regulation in cGKI-knockout cells could be rescued by transfection of a fusion construct consisting of cGKIalpha and enhanced green fluorescent protein (EGFP) but not by a cGKIbeta-EGFP construct. Fluorescence imaging indicated that the cGKIalpha-EGFP fusion protein was concentrated in the perinuclear/endoplasmic reticulum region of live VSMCs, whereas the cGKIbeta-EGFP protein was more homogeneously distributed in the cytoplasm. These results suggest that one component of NO/cGMP-induced smooth muscle relaxation is the activation of the cGKIalpha isoform, which decreases the noradrenaline-stimulated cytosolic Ca(2+) level."	"Can we apply results from large to small arteries? NA"	"Functional and biochemical analysis of endothelial (dys)function and NO/cGMP signaling in human blood vessels with and without nitroglycerin pretreatment. In experimental animal models, long-term in vivo treatment with nitroglycerin (NTG) induces both endothelial dysfunction and tolerance to nitrates. However, it is still controversial whether nitrate tolerance in humans is associated with both endothelial dysfunction and impaired vascular response to nitrovasodilator-derived NO. Patients undergoing elective bypass surgery were randomized to receive 48 hours of continuous NTG infusion (NTG group) or no nitrate therapy (control group). Segments of surgically removed arteria mammaria, vena saphena, and arteria radialis not required for the bypass procedure were used to examine (1) the vascular responsiveness to NTG and the endothelium-dependent vasodilator acetylcholine; (2) the expression of the NO target, the soluble guanylyl cyclase; (3) the expression of the soluble guanylyl cyclase/cGMP effector target, the cGMP-dependent protein kinase (cGK); and (4) the cGK activity as assessed by the phosphorylation state of its vascular substrate, the vasodilator-stimulated phosphoprotein at serine(239) (P-VASP). NTG treatment caused a marked degree of nitrate tolerance in all 3 vessel types studied and a significant cross-tolerance to the endothelium-dependent vasodilator acetylcholine in A. mammaria and A. radialis. Although soluble guanylyl cyclase, cGK-I, and VASP expression levels were not modified by NTG treatment, a marked decrease of P-VASP, a surrogate parameter for in-vivo cGK-I activity, was observed. We conclude that long-term NTG treatment induces endothelial dysfunction and impaired vascular NO/cGMP signaling in humans, which can be monitored by measuring P-VASP levels."	"Effects of angiotensin II infusion on the expression and function of NAD(P)H oxidase and components of nitric oxide/cGMP signaling. Angiotensin II infusion causes endothelial dysfunction by increasing NAD(P)H oxidase-mediated vascular superoxide production. However, it remains to be elucidated how in vivo angiotensin II treatment may alter the expression of the gp91(phox) isoforms and the endothelial nitric oxide synthase (NOS III) and subsequent signaling events and whether, in addition to the NAD(P)H oxidase, NOS III contributes to vascular superoxide formation. We therefore studied the influence of in vivo angiotensin II treatment (7 days) in rats on endothelial function and on the expression of the NAD(P)H oxidase subunits p22(phox), nox1, nox4, and gp91(phox) and NOS III. Further analysis included the expression of NO-downstream targets, the soluble guanylyl cyclase (sGC), the cGMP-dependent protein kinase I (cGK-I), and the expression and phosphorylation of the vasodilator-stimulated phosphoprotein (VASP) at Ser239 (P-VASP). Angiotensin II caused endothelial dysfunction and increased vascular superoxide. Likewise, we found an increase in vascular protein kinase C (PKC) activity, in the expression of nox1 (6- to 7-fold), gp91(phox) (3-fold), p22(phox) (3-fold), NOS III mRNA, and protein. NOS-inhibition with N(G)-nitro-L-arginine decreased superoxide in vessels from angiotensin II-treated animals, compatible with NOS-uncoupling. Vascular NO assessed with electron paramagnetic resonance was markedly reduced. Likewise, a decrease in sGC-expression and P-VASP levels was found. In vivo PKC-inhibition with chelerythrine reduced angiotensin II-induced superoxide production and markedly inhibited upregulation of NAD(P)H oxidase subunits. We therefore conclude that angiotensin II-induced increases in the activity and the expression of NAD(P)H oxidase are at least in part PKC-dependent. NADPH oxidase-induced superoxide production may trigger NOS III uncoupling, leading to impaired NO/cGMP signaling and to endothelial dysfunction in this animal model. The full text of this article is available at http://www.circresaha.org."	"Sp1 transcription factor as a molecular target for nitric oxide-- and cyclic nucleotide--mediated suppression of cGMP-dependent protein kinase-Ialpha expression in vascular smooth muscle cells. cGMP-dependent protein kinase (PKG) expression is highly variable and decreases in cultured vascular smooth muscle cells (VSMCs), exposure of cells to nitric oxide (NO), or in response to balloon catheter injury in vivo. In this study, the mechanisms of human type I PKG-alpha (PKG-Ialpha) gene expression were examined. Three structurally unrelated NO donors decreased PKG-Ialpha promoter activity after transfection of a promoter/luciferase construct in VSMCs. Promoter deletion analysis demonstrated that (1) a 120-bp promoter containing tandem Sp1 sites was sufficient to drive basal PKG-Ialpha promoter activity, and (2) NO was inhibitory at this site. Cyclic nucleotide analogues also suppressed PKG-Ialpha promoter activity with cAMP being more potent than cGMP. The effects of cyclic nucleotides to suppress PKG-Ialpha promoter activity were attenuated by a specific cAMP-dependent protein kinase (PKA) inhibitor. Single or double mutation of Sp1 binding sites abolished PKG-Ialpha expression. Moreover, Sp1 binding activity on the PKG-Ialpha promoter was detected in A7r5 cells, and this binding was inhibited by NO and cyclic nucleotides. These results indicate that PKG-Ialpha gene expression is driven by an Sp1 transcription mechanism, and that NO and cAMP inhibit Sp1-mediated PKG-Ialpha gene expression through separate mechanisms."	"Purification and molecular characterization of cGMP-dependent protein kinase from Apicomplexan parasites. A novel chemotherapeutic target. The trisubstituted pyrrole 4-[2-(4-fluorophenyl)-5-(1-methylpiperidine-4-yl)-1H-pyrrol-3-yl]pyridine (Compound 1) inhibits the growth of Eimeria spp. both in vitro and in vivo. The molecular target of Compound 1 was identified as cGMP-dependent protein kinase (PKG) using a tritiated analogue to purify a approximately 120-kDa protein from lysates of Eimeria tenella. This represents the first example of a protozoal PKG. Cloning of PKG from several Apicomplexan parasites has identified a parasite signature sequence of nearly 300 amino acids that is not found in mammalian or Drosophila PKG and which contains an additional, third cGMP-binding site. Nucleotide cofactor regulation of parasite PKG is remarkably different from mammalian enzymes. The activity of both native and recombinant E. tenella PKG is stimulated 1000-fold by cGMP, with significant cooperativity. Two isoforms of the parasite enzyme are expressed from a single copy gene. NH(2)-terminal sequence of the soluble isoform of PKG is consistent with alternative translation initiation within the open reading frame of the enzyme. A larger, membrane-associated isoform corresponds to the deduced full-length protein sequence. Compound 1 is a potent inhibitor of both soluble and membrane-associated isoforms of native PKG, as well as recombinant enzyme, with an IC(50) of &lt;1 nm."	"Gene transfer of cGMP-dependent protein kinase I enhances the antihypertrophic effects of nitric oxide in cardiomyocytes. NO acting through soluble guanylyl cyclase and cGMP formation is a negative regulator of cardiomyocyte hypertrophy. Downstream targets mediating the inhibitory effects of NO/cGMP on cardiomyocyte hypertrophy have not been elucidated. In addition to its antihypertrophic effects, NO promotes apoptosis in cardiomyocytes, presumably through cGMP-independent pathways. We investigated the role of cGMP-dependent protein kinase (PKG) in the antihypertrophic and proapoptotic effects of NO. Incubation of neonatal rat cardiomyocytes with the NO donor S-nitroso-N-acetyl-D,L-penicillamine (SNAP) (250 micromol/L) or the PKG-selective cGMP analog 8-pCPT-cGMP (500 micromol/L) activated endogenous PKG type I, as shown by the site-specific phosphorylation of vasodilator-stimulated phosphoprotein, a well-characterized PKG substrate. SNAP (250 micromol/L) and 8-pCPT-cGMP (500 micromol/L) modestly attenuated the hypertrophic response to alpha(1)-adrenergic stimulation with phenylephrine. Although a high concentration of SNAP (1000 micromol/L) promoted apoptosis in cardiomyocytes, as evidenced by the formation of histone-associated DNA fragments, antihypertrophic concentrations of SNAP (250 micromol/L) and 8-pCPT-cGMP (500 micromol/L) did not promote cell death. Because chronic activation downregulated endogenous PKG I, we explored whether gene transfer of PKG I would enhance the sensitivity of cardiomyocytes to the antihypertrophic effects of NO/cGMP. Indeed, after adenoviral overexpression of PKG Ibeta, SNAP (250 micromol/L) and 8-pCPT-cGMP (500 micromol/L) completely suppressed the hypertrophic response to alpha(1)-adrenergic stimulation. As observed in noninfected cells, SNAP (250 micromol/L) and 8-pCPT-cGMP (500 micromol/L) did not promote apoptosis in cardiomyocytes overexpressing PKG Ibeta. Moreover, overexpression of PKG Ibeta did not enhance the proapoptotic effects of 1000 micromol/L SNAP, implying PKG-independent effects of NO on apoptosis. Endogenous PKG I mediates antihypertrophic but not proapoptotic effects of NO in a cell culture model of cardiomyocyte hypertrophy. Adenoviral gene transfer of PKG I selectively enhances the antihypertrophic effects of NO without increasing the susceptibility to apoptosis."	"Activation of cGMP-dependent protein kinase Ibeta inhibits interleukin 2 release and proliferation of T cell receptor-stimulated human peripheral T cells. Several major functions of type I cGMP-dependent protein kinase (cGK I) have been established in smooth muscle cells, platelets, endothelial cells, and cardiac myocytes. Here we demonstrate that cGK Ibeta is endogenously expressed in freshly purified human peripheral blood T lymphocytes and inhibits their proliferation and interleukin 2 release. Incubation of human T cells with the NO donor, sodium nitroprusside, or the membrane-permeant cGMP analogs PET-cGMP and 8-pCPT-cGMP, activated cGK I and produced (i) a distinct pattern of phosphorylation of vasodilator-stimulated phosphoprotein, (ii) stimulation of the mitogen-activated protein kinases ERK1/2 and p38 kinase, and, upon anti-CD3 stimulation, (iii) inhibition of interleukin 2 release and (iv) inhibition of cell proliferation. cGK I was lost during in vitro culturing of primary T cells and was not detectable in transformed T cell lines. The proliferation of these cGK I-deficient cells was not inhibited by even high cGMP concentrations indicating that cGK I, but not cGMP-regulated phosphodiesterases or channels, cAMP-dependent protein kinase, or other potential cGMP mediators, was responsible for inhibition of T cell proliferation. Consistent with this, overexpression of cGK Ibeta, but not an inactive cGK Ibeta mutant, restored cGMP-dependent inhibition of cell proliferation of Jurkat cells. Thus, the NO/cGMP/cGK signaling system is a negative regulator of T cell activation and proliferation and of potential significance for counteracting inflammatory or lymphoproliferative processes."	"Binding and phosphorylation of a novel male germ cell-specific cGMP-dependent protein kinase-anchoring protein by cGMP-dependent protein kinase Ialpha. cGMP-dependent protein kinase (cGK) is a major cellular receptor of cGMP and plays important roles in cGMP-dependent signal transduction pathways. To isolate the components of the cGMP/cGK signaling pathway such as substrates and regulatory proteins of cGK, we employed the yeast two-hybrid system using cGK-Ialpha as a bait and isolated a novel male germ cell-specific 42-kDa protein, GKAP42 (42-kDa cGMP-dependent protein kinase anchoring protein). Although the N-terminal region (amino acids 1-66) of cGK-Ialpha is sufficient for the association with GKAP42, GKAP42 could not interact with cGK-Ibeta, cGK-II, or cAMP-dependent protein kinase. GKAP42 mRNA is specifically expressed in testis, where it is restricted to the spermatocytes and early round spermatids. Endogenous cGK-I is co-immunoprecipitated with anti-GKAP42 antibody from mouse testis tissue, suggesting that cGK-I physiologically interacts with GKAP42. Immunocytochemical observations revealed that GKAP42 is localized to the Golgi complex and that cGK-Ialpha is co-localized to the Golgi complex when coexpressed with GKAP42. Although both cGK-Ialpha and -Ibeta, but not cAMP-dependent protein kinase, phosphorylated GKAP42 in vitro, GKAP42 was a good substrate only for cGK-Ialpha in intact cells, suggesting that the association with kinase protein is required for the phosphorylation in vivo. Finally, we demonstrated that the kinase-deficient mutant of cGK-Ialpha stably associates with GKAP42 and that binding of cGMP to cGK-Ialpha facilitates their release from GKAP42. These findings suggest that GKAP42 functions as an anchoring protein for cGK-Ialpha and that cGK-Ialpha may participate in germ cell development through phosphorylation of Golgi-associated proteins such as GKAP42."	"Identification of a conserved residue responsible for the autoinhibition of cGMP-dependent protein kinase Ialpha and beta. We isolated a constitutively active form of cGMP-dependent protein kinase Ialpha (cGK Ialpha) by PCR-driven random mutagenesis. The replacement of Ile-63 by Thr in the autoinhibitory domain results in the enhancement of autophosphorylation and the basal kinase activity in the absence of cGMP. The hydrophobicity at position 63 is essential for the inactive state of cGK Ialpha, and Ile-78 of cGK Ibeta is also required for the autoinhibitory property. Furthermore, cGK Ialpha (Ile-63-Thr) is constitutively active in vivo. These findings suggest that a conserved residue in the autoinhibitory domain was involved in the autoinhibition of both cGK Is."	"Nitric oxide and cGMP regulate gene expression in neuronal and glial cells by activating type II cGMP-dependent protein kinase. Nitric oxide (NO) and cGMP have been implicated in many neuronal functions, including regulation of gene expression, but little is known about the downstream targets of NO/cGMP in the nervous system. We found that type II cGMP-dependent protein kinase (G-kinase), which is widely expressed in the brain, mediated NO- and cGMP-induced activation of the fos promoter in cells of neuronal and glial origin; the enzyme was ineffective in regulating gene expression in fibroblast-like cells. The effect of G-kinase II on gene expression did not require calcium uptake but was synergistically enhanced by calcium. G-kinase II was membrane associated and did not translocate to the nucleus; however, a soluble G-kinase II mutant translocated to the nucleus and regulated gene expression in fibroblast-like cells. Soluble G-kinase I also regulates fos promoter activity, but membrane targeting of G-kinase I prevented the enzyme from translocating to the nucleus and regulating transcription in multiple cell types, including glioma cells; this suggests that cell type-specific factor(s) that mediate the transcriptional effects of extranuclear G-kinase II are not regulated by G-kinase I. Our results suggest that G-kinase I and II control gene expression by different mechanisms and that NO effects on neuronal plasticity may involve G-kinase II regulation of gene expression.-Gudi, T., Hong, G. K.-P., Vaandrager, A. B., Lohmann, S. M., Pilz, R. B. Nitric oxide and cGMP regulate gene expression in neuronal and glial cells by activating type II cGMP-dependent protein kinase."	"Regulation of myosin phosphatase by a specific interaction with cGMP- dependent protein kinase Ialpha. Contraction and relaxation of smooth muscle are regulated by myosin light-chain kinase and myosin phosphatase through phosphorylation and dephosphorylation of myosin light chains. Cyclic guanosine monophosphate (cGMP)-dependent protein kinase Ialpha (cGKIalpha) mediates physiologic relaxation of vascular smooth muscle in response to nitric oxide and cGMP. It is shown here that cGKIalpha is targeted to the smooth muscle cell contractile apparatus by a leucine zipper interaction with the myosin-binding subunit (MBS) of myosin phosphatase. Uncoupling of the cGKIalpha-MBS interaction prevents cGMP-dependent dephosphorylation of myosin light chain, demonstrating that this interaction is essential to the regulation of vascular smooth muscle cell tone."	"Nitric oxide regulation of gene transcription via soluble guanylate cyclase and type I cGMP-dependent protein kinase. Nitric oxide (NO) regulates the expression of multiple genes but in most cases its precise mechanism of action is unclear. We used baby hamster kidney (BHK) cells, which have very low soluble guanylate cyclase and cGMP-dependent protein kinase (G-kinase) activity, and CS-54 arterial smooth muscle cells, which express these two enzymes, to study NO regulation of the human fos promoter. The NO-releasing agent Deta-NONOate (ethanamine-2,2'-(hydroxynitrosohydrazone)bis-) had no effect on a chloramphenicol acetyltransferase (CAT) reporter gene under control of the fos promoter in BHK cells transfected with an empty vector or in cells transfected with a G-kinase Ibeta expression vector. In BHK cells transfected with expression vectors for guanylate cyclase, Deta-NONOate markedly increased the intracellular cGMP concentration and caused a small (2-fold) increase in CAT activity; the increased CAT activity appeared to be from cGMP activation of cAMP-dependent protein kinase. In BHK cells co-transfected with guanylate cyclase and G-kinase expression vectors, CAT activity was increased 5-fold in the absence of Deta-NONOate and 7-fold in the presence of Deta-NONOate. Stimulation of CAT activity in the absence of Deta-NONOate appeared to be largely from endogenous NO since we found that: (i) BHK cells produced high amounts of NO; (ii) CAT activity was partially inhibited by a NO synthase inhibitor; and (iii) the inhibition by the NO synthase inhibitor was reversed by exogenous NO. In CS-54 cells, we found that NO increased fos promoter activity and that the increase was prevented by a guanylate cyclase inhibitor. In summary, we found that NO activates the fos promoter by a guanylate cyclase- and G-kinase-dependent mechanism."	"Deficient post-translational processing of Rap 1A in variant HL-60 cells. Variant HL-60 cells resistant to differentiation induced by nitroprusside and cGMP analogs have normal guanylate cyclase and cGMP-dependent protein kinase (G-kinase) activity (J. Biol. Chem. 269, 32155-32161, 1994). We found decreased phosphorylation of a low molecular weight protein (pp23) in the variant cells and by co-migration on two-dimensional polyacrylamide gels, phosphopeptide mapping, immunoprecipitation and immunoblotting, we showed that pp23 was one of three post-translationally modified forms of Rap 1A expressed in HL-60 cells. Using an in vitro transcription/translation system, we studied each of the posttranslational processing steps of Rap 1A and we showed that pp23 represented fully processed Rap 1A. By immunoprecipitation, immunoblotting and 35S-methionine/cysteine incorporation, we showed that the variant cells were deficient in pp23, and thus in fully processed Rap 1A, but that these cells did express normal amounts of completely unprocessed Rap 1A and geranylgeranylated Rap 1A; the lack of Rap 1A processing beyond geranylgeranylation in the variant cells was not secondary to a change in Rap 1A's amino acid sequence. The variant cells had normal carboxyl methyltransferase activity suggesting they are deficient in proteolytic cleavage of Rap 1A. The deficient post-translational processing of Rap 1A had no effect on Rap 1A's subcellular distribution and we found no evidence for altered post-translational processing of H-Ras."	"Inhibition of Na,K-ATPase activity by cGMP is isoform-specific in brain endothelial cells. cGMP has been shown to either activate or inhibit Na,K-ATPase activity. Using mouse brain endothelial cells which express both ouabain-resistant alpha1 and ouabain-sensitive alpha2 and alpha3 isoforms, we show that cGMP reduces total Na,KATPase activity to about 58%. The inhibition is prevented by the protein kinase G (PKG)-specific inhibitor KT5823, indicating that cGMP-mediated activation of PKG leads to inhibition of the pump. A similar extent of inhibition is obtained with nitric oxide. cGMP-induced inhibition acts mainly on alpha1 isoforms but hardly affects alpha2/alpha3 isoforms. These data suggest that inhibition of Na,K-ATPase activity by cGMP occurs in an isoform-selective manner in brain endothelial cells."	"Role of cGMP-kinase II in the control of renin secretion and renin expression. To investigate the roles of the cGMP-dependent protein kinases (cGKs) in the control of the renin system, we studied the regulation of renin in cGKI- or cGKII-deficient mice in vivo and in vitro. Renal renin mRNA levels both under stimulatory (low-salt diet plus ramipril) and inhibitory (high-salt diet) conditions were not different between wild-type and cGKI-/- mice, but were significantly elevated in cGKII-/- mice under all experimental conditions. In primary cultures of renal juxtaglomerular cells (JG) established from wild-type, cGKI-/-, and cGKII-/- mice, the adenylate cyclase activator forskolin stimulated renin secretion similarly in all genotypes tested. 8-bromo-cGMP attenuated basal and forskolin-stimulated renin secretion in cultures from wild-type and cGKI-/-, but had no effect in cells isolated from cGKII-/- mice. Activation of cGKs by 8-bromo-cGMP decreased renin secretion from the isolated perfused rat kidney, independent of prestimulation by beta-adrenoreceptor activation, macula densa inhibition, reduced perfusion pressure, or by a nominally calcium-free perfusate. Taken together, these findings suggest that activation of cGKII has a general inhibitory effect on renin secretion from renal JG cells."	"Chemotactic peptide-induced changes of intermediate filament organization in neutrophils during granule secretion: role of cyclic guanosine monophosphate. In neutrophils activated to secrete with formyl-methionyl-leucyl-phenylalanine, intermediate filaments are phosphorylated transiently by cyclic guanosine monophosphate (cGMP)-dependent protein kinase (G-kinase). cGMP regulation of vimentin organization was investigated. During granule secretion, cGMP levels were elevated and intermediate filaments were transiently assembled at the pericortex to areas devoid of granules and microfilaments. Microtubule and microfilament inhibitors affected intermediate filament organization, granule secretion, and cGMP levels. Cytochalasin D and nocodazole caused intermediate filaments to assemble at the nucleus, rather than at the pericortex. cGMP levels were elevated in neutrophils by both inhibitors; however, with cytochalasin D, cGMP was elevated earlier and granule secretion was excessive. Nocodazole did not affect normal cGMP elevations, but specific granule secretion was delayed. LY83583, a guanylyl cyclase antagonist, inhibited granule secretion and intermediate filament organization, but not microtubule or microfilament organization. Intermediate filament assembly at the pericortex and secretion were partially restored by 8-bromo-cGMP in LY83583-treated neutrophils, suggesting that cGMP regulates these functions. G-kinase directly induced intermediate filament assembly in situ, and protein phosphatase 1 disassembled filaments. However, in intact cells stimulated with formyl-methionyl-leucyl-phenylalanine, intermediate filament assembly is focal and transient, suggesting that vimentin phosphorylation is compartmentalized. We propose that, in addition to changes in microfilament and microtubule organization, granule secretion is also accompanied by changes in intermediate filament organization, and that cGMP regulates vimentin filament organization via activation of G-kinase."	"The involvement of protein kinase G in stimulation of neutrophil migration by endothelins. Activation of human neutrophil migration by endothelin-1 and endothelin-3 is inhibited by guanylate cyclase inhibitors, by antagonists of protein kinase G (G-kinase), and by KT-5823, an inhibitor of G-kinase. Although no direct effect of endothelins on cGMP level could be established, these results suggest that the effect of these endothelins on migration is mediated by cGMP, and that the effect of cGMP proceeds via a G-kinase. There was little or no effect of guanylate cyclase inhibitors and G-kinase antagonists on endothelin-2-activated migration, indicating that the role of cGMP and G-kinase in endothelin-2-induced activation was either absent or at least different from that of the other endothelins. As compared with other activators, the role of G-kinase in formyl-methionyl-leucyl-phenylalanyl(fMLP-)activated migration resembled that of endothelin-activated migration, while the role of G-kinase in interleukin-8- or leukotriene B4-activated migration was less pronounced."	"Investigation of the role of nitric oxide and cyclic GMP in both the activation and inhibition of human neutrophils. 1. The aim of this study was to establish the role of nitric oxide (NO) and cyclic GMP in chemotaxis and superoxide anion generation (SAG) by human neutrophils, by use of selective inhibitors of NO and cyclic GMP pathways. In addition, inhibition of neutrophil chemotaxis by NO releasing compounds and increases in neutrophil nitrate/nitrite and cyclic GMP levels were examined. The ultimate aim of this work was to resolve the paradox that NO both activates and inhibits human neutrophils. 2. A role for NO as a mediator of N-formyl-methionyl-leucyl-phenylalanine (fMLP)-induced chemotaxis was supported by the finding that the NO synthase (NOS) inhibitor L-NMMA (500 microM) inhibited chemotaxis; EC50 for fMLP 28.76 +/- 5.62 and 41.13 +/- 4.77 pmol/10(6) cells with and without L-NMMA, respectively. Similarly the NO scavenger carboxy-PTIO (100 microM) inhibited chemotaxis; EC50 for fMLP 19.71 +/- 4.23 and 31.68 +/- 8.50 pmol/10(6) cells with and without carboxy-PTIO, respectively. 3. A role for cyclic GMP as a mediator of chemotaxis was supported by the finding that the guanylyl cyclase inhibitor LY 83583 (100 microM) completely inhibited chemotaxis and suppressed the maximal response; EC50 for fMLP 32.53 +/- 11.18 and 85.21 +/- 15.14 pmol/10(6) cells with and without LY 83583, respectively. The same pattern of inhibition was observed with the G-kinase inhibitor KT 5823 (10 microM); EC50 for fMLP 32.16 +/- 11.35 and &gt; 135 pmol/10(6) cells with and without KT 5823, respectively. 4. The phosphatase inhibitor, 2,3-diphosphoglyceric acid (DPG) (100 microM) which inhibits phospholipase D, attenuated fMLP-induced chemotaxis; EC50 for fMLP 19.15 +/- 4.36 and 61.52 +/- 16.2 pmol/10(6) cells with and without DPG, respectively. 5. Although the NOS inhibitors L-NMMA and L-canavanine (500 microM) failed to inhibit fMLP-induced SAG, carboxy-PTIO caused significant inhibition (EC50 for fMLP 36.15 +/- 7.43 and 86.31 +/- 14.06 nM and reduced the maximal response from 22.14 +/- 1.5 to 9.8 +/- 1.6 nmol O2-/10(6) cells/10 min with and without carboxy-PTIO, respectively). This suggests NO is a mediator of fMLP-induced SAG. 6. A role for cyclic GMP as a mediator of SAG was supported by the effects of G-kinase inhibitors KT 5823 (10 microM) and Rp-8-pCPT-cGMPS (100 microM) which inhibited SAG giving EC50 for fMLP of 36.26 +/- 8.77 and 200.01 +/- 43.26 nM with and without KT 5823, and 28.35 +/- 10.8 and 49.25 +/- 16.79 nM with and without Rp-8-pCTP-cGMPS. 7. The phosphatase inhibitor DPG (500 microM) inhibited SAG; EC50 for fMLP 33.93 +/- 4.23 and 61.12 +/- 14.43 nM with and without DPG, respectively. 8. The NO releasing compounds inhibited fMLP-induced chemotaxis with a rank order of potency of GEA 3162 (IC50 = 14.72 +/- 1.6 microM) &gt; GEA 5024 (IC50 = 18.44 +/- 0.43 microM) &gt; SIN-1 (IC50 &gt; 1000 microM). This order of potency correlated with their ability to increase cyclic GMP levels rather than the release of NO, where SIN-1 was most effective (SIN-1 (EC50 = 37.62 +/- 0.9 microM) &gt; GEA 3162 (EC50 = 39.7 +/- 0.53 microM) &gt; GEA 5024 (EC50 = 89.86 +/- 1.62 microM)). 9. In conclusion, chemotaxis and SAG induced by fMLP can be attenuated by inhibitors of phospholipase D, NO and cyclic GMP, suggesting a role for these agents in neutrophil activation. However, the increases in cyclic GMP and NO induced by fMLP, which are associated with neutrophil activation, are very small. In contrast much larger increases in NO and cyclic GMP, as observed with NO releasing compounds, inhibit chemotaxis."	"Regulation of gene expression by cyclic GMP-dependent protein kinase requires nuclear translocation of the kinase: identification of a nuclear localization signal. We recently demonstrated that cyclic GMP (cGMP)-dependent protein kinase (G-kinase) activates the human fos promoter in a strictly cGMP-dependent manner (T. Gudi et al., J. Biol. Chem. 271:4597-4600, 1996). Here, we demonstrate that G-kinase translocates to the nucleus by an active transport mechanism which requires a nuclear localization signal (NLS) and is regulated by cGMP. Immunofluorescent staining of G-kinase was predominantly cytoplasmic in untreated cells, but intense nuclear staining appeared in 8-bromo (Br)-cGMP-treated cells. We identified a putative NLS in the G-kinase ATP binding domain which resembles the NLS of the interleukin-1alpha precursor. Fusion of the G-kinase NLS to the N terminus of beta-galactosidase produced a chimeric protein which localized to the nucleus. Mutation of a single amino acid residue (K407--&gt;E) within the G-kinase NLS produced an enzyme with normal cGMP-dependent activity in vitro which did not translocate to the nucleus and did not transactivate the fos promoter in the presence of 8-Br-cGMP in vivo. In contrast, N-terminally truncated versions of G-kinase with constitutive, cGMP-independent activity in vitro localized to the nucleus and transactivated the fos promoter in the absence of 8-Br-cGMP. These results indicate that nuclear localization of G-kinase is required for transcriptional activation of the fos promoter and suggest that a conformational change of the kinase, induced by cGMP binding or by removal of the N-terminal autoinhibitory domain, functionally activates an otherwise cryptic NLS."	"A cyclic GMP- and G-kinase-dependent effect of azathioprine on migration by human neutrophils. Relatively high concentrations of azathioprine had an inhibitory effect on interleukin 8 (IL-8)- or formyl-methionyl-leucyl-phenylalanine-activated (fMLP)-chemotaxis by human neutrophils. However, application of low concentrations of azathioprine in a concentration gradient gave a chemotactic stimulation to random migration. Stimulation of migration was maximal at a concentration of 5 microM azathioprine; at higher concentrations stimulation decreased again. The activating effect of azathioprine is located in the mercaptopurine moiety of the molecule, since mercaptopurine also stimulated neutrophil migration. In contrast to some other chemotactic agents such as fMLP and IL-8, an activating concentration (5 microM) of azathioprine did not cause an upregulation of CD11b expression on neutrophils in suspension. High concentrations of azathioprine (1 mM) inhibited CD11b expression of fMLP- or IL-8- activated neutrophils; the latter could explain the inhibitory effect of azathioprine. Azathioprine caused a transient stimulation of cGMP level; inhibitors of guanylate cyclase inhibited azathioprine-stimulated migration, suggesting that cGMP was associated with the stimulating effect of azathioprine on migration. Antagonists of cGMP-dependent protein kinase (G-kinase) strongly inhibited azathioprine-activated migration, indicating that the effect of azathioprine proceeds via G-kinase. The antagonists had only a marginal effect on inhibition of IL-8-activated chemotaxis by high concentrations of azathioprine, thus the G-kinase seems not to be of great importance on the inhibitory effect of azathioprine."	"Characterization of the human gene encoding the type I alpha and type I beta cGMP-dependent protein kinase (PRKG1). The type I cGMP-dependent protein kinase (cGK) has been shown to play a crucial role in the relaxation of vascular smooth muscle by lowering the intracellular level of calcium. Two isoforms of type I cGK have been described, type I alpha and type I beta, differing only in their N-terminal parts. This report describes the cloning of the gene PRKG1 encoding both human type I cGK isoforms. PRKG1 is a single-copy gene consisting of 19 exons encompassing at least 220 kb. Several of the splice sites previously observed in the Drosophila melanogaster DG2 gene have been conserved in PRKG1, and these conserved splice sites correlated well with the boundaries between several of the previously proposed functional domains of type I cGK. The first two exons of the type I cGK gene were shown to encode the type I alpha- and type I beta-specific parts of the cGK. Using 5'-rapid amplification of cDNA ends, potential sites for transcription initiation were identified 5' upstream of both these exons. Northern blot analyses demonstrated distinct patterns of expression of the isoforms of type I alpha and I beta cGK in different human tissues."	"Cyclic guanosine monophosphate-dependent protein kinase is targeted to intermediate filaments and phosphorylates vimentin in A23187-stimulated human neutrophils. The effects of the calcium ionophore, A23187, on human neutrophil activation were studied in relation to the signaling mechanism of cyclic guanosine monophosphate (cGMP)-dependent protein kinase (G-kinase). Immunocytochemistry demonstrated that G-kinase translocated from a diffuse localization in the cytoplasm to the cytoskeleton after stimulation with A23187. Over a period of 5 minutes, G-kinase was transiently colocalized with the intermediate filament protein, vimentin. At 3 minutes' stimulation with A23187, colocalization of G-kinase and vimentin was predominantly confined to filaments that extended into the uropod. The time of colocalization of G-kinase and vimentin was reduced in the A23187-stimulated cell from 3 minutes to 1 minute by 8-Br-cGMP. Coincident with colocalization was an increase in cGMP levels and transient phosphorylation of vimentin in adhered A23187-stimulated cells. Phosphorylation of vimentin was maximal after 3 minutes with A23187, and was essentially over at 5 minutes. The time of phosphorylation of vimentin was also reduced from 3 minutes to 1 minute when cells were preincubated with 8-Br-cGMP and then stimulated with A23187, which suggests that cyclic adenosine monophosphate (cAMP)-dependent protein kinase does not phosphorylate vimentin in A23187-treated neutrophils. Phosphorylation of vimentin was not observed in nonactivated cells treated only with 8-Br-cGMP. The presence of the protein kinase C inhibitors, staurosporine or H-7, did not inhibit vimentin phosphorylation in A23187-treated cells, which provides supportive data that protein kinase C is not the phosphorylating enzyme. These results suggest that vimentin and G-kinase are colocalized in a Ca(2+)-dependent manner in neutrophils, and that vimentin is transiently phosphorylated by G-kinase in response to the colocalization of the two proteins. The transient redistribution of compartmentalized G-kinase represents one type of neutrophil activation mechanism."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SMAD3"	"familial thoracic aortic aneurysm and aortic dissection"	"VASH-1 Regulates Oxidative Stress and Fibrosis in Diabetic Kidney Disease via SIRT1/HIF1α and TGFβ1/Smad3 Signaling Pathways. Aims: To investigate the role of Vasohibin-1 (VASH-1), silence information adjustment factor 2-related enzyme 1 (SIRT1)/hypoxic-inducible factor 1α (HIF1α) and transforming growth factor-β1 (TGFβ1) /Smad3 signaling pathways in oxidative stress and fibrosis of diabetic kidney disease (DKD). Materials and Methods: A diabetic rat model was established in vivo and rat mesangial cells (RMCs) were cultured in vitro with high glucose via transfection with Vash1 small interfering RNA (siRNA), Hif1a siRNA, Sirt1 siRNA and TGFβ1/Smad3 pathway inhibitor (SB431542). Renal histology was used to detect renal changes. Real-time PCR and western blot were used to analyze the expression of VASH-1, SIRT1, HIF1α, TGFβ1, Smad3, vascular endothelial growth factor (VEGF), connective tissue growth factor (CTGF) and fibronectin (FN). Expression levels of tumor necrosis factor-α (TNFα), TGFβ1, superoxide dismutase (SOD), catalase (CAT), glutathione peroxidase (GSH-PX), and malondialdehyde (MDA) in rat tissues and cell culture supernatant were detected by ELISA and chemiluminescence assay, while cell proliferation was detected by CCK-8. Results: The level of VASH-1 in renal tissues of diabetic rats was decreased, while both high glucose and Vash1 siRNA inhibited the expression of VASH-1 and SIRT1, increased the levels of HIF1α, TGFβ1, and Smad3 in RMCs, thus up-regulating oxidative stress and fibrosis factors, and abnormally increasing cell proliferation activity (P &lt; 0.05). However, inhibition of SIRT1/HIF1α signaling pathway only reduced TGFβ1 and Smad3 (P &lt; 0.05), while VASH-1 remained unchanged (P &gt; 0.05). Conclusion: VASH-1 was under-expressed in renal tissues of diabetic rats and regulated the pathological process of oxidative stress and fibrosis in DKD via downstream SIRT1/HIF1α and TGFβ1/Smad3 signaling pathways."	"Baicalin inhibits the TGF-β1/p-Smad3 pathway to suppress epithelial-mesenchymal transition-induced metastasis in breast cancer. TGF-β1 is an epithelial-mesenchymal transition (EMT)-inducing factor that is critical in tumor progression. However, whether the effect of TGF-β1 on breast cancer is through the EMT pathway remains to be determined, and drug development based on this mechanism needs to be improved. Results of this study showed that TGF-β1 dysregulation significantly correlated with the expression levels of EMT-associated markers and transcriptional factors. Exogenous expression of TGF-β1 promoted breast cancer cell metastasis and EMT progression. In addition, direct binding of baicalin to TGF-β1 caused its inactivation, which subsequently blocked signal transduction and inhibited breast cancer cell metastasis. In vivo experiment results further invalidated the inhibitory effect of baicalin on TGF-β1-induced tumor metastasis. These results suggest that baicalin, an active ingredient used in traditional Chinese medicine, exhibits a potential therapeutic effect on breast cancer metastasis by regulating TGF-β1-dependent EMT progression."	"PD-1 does not mark tumor-infiltrating CD8+ T cell dysfunction in human gastric cancer. Overexpression of programmed cell death protein 1 (PD-1) is linked to CD8+ T cell dysfunction and contributes to tumor immune escape. However, the prevalence and functional regulations of PD-1 expression on CD8+ T cells in human gastric cancer (GC) remain largely unknown. Flow cytometry was performed to analyze the level, phenotype, functional and clinical relevance of PD-1+CD8+ T cells in GC patients. Peripheral blood CD8+ T cells were purified and subsequently exposed to culture supernatants from digested primary GC tumor tissues (TSN) in vitro for PD-1 expression and functional assays. Tumor responses to adoptively transferred TSN-stimulated CD8+ T cells or to the TSN-stimulated CD8+ T cell transfer combined with an anti-PD-1 antibody injection were measured in an in vivo xenograft mouse model. GC patients' tumors showed a significantly increased PD-1+CD8+ T cell infiltration. However, these GC-infiltrating PD-1+CD8+ T cells showed equivalent function to their PD-1-CD8+ counterparts and they did not predict tumor progression. High level of transforming growth factor-β1 (TGF-β1) in tumors was positively correlated with PD-1+CD8+ T cell infiltration, and in vitro GC-derived TGF-β1 induced PD-1 expression on CD8+ T cells via Smad3 signaling, whereas Smad2 signaling was involved in GC-derived TGF-β1-mediated CD8+ T cell dysfunction. Furthermore, GC-derived TGF-β1-mediated CD8+ T cell dysfunction contributed to tumor growth in vivo that could not be attenuated by PD-1 blockade. Our data highlight that GC-derived TGF-β1 promotes PD-1 independent CD8+ T cell dysfunction. Therefore, restoring CD8+ T cell function by a combinational PD-1 and TGF-β1 blockade might benefit future GC immunotherapy."	"Integrative Omics Analyses Reveal Epigenetic Memory in Diabetic Renal Cells Regulating Genes Associated With Kidney Dysfunction. Diabetic kidney disease (DKD) is a major complication of diabetes and the leading cause of end-stage renal failure. Epigenetics has been associated with metabolic memory, in which prior periods of hyperglycemia enhance the future risk of developing DKD despite subsequent glycemic control. To understand the mechanistic role of such epigenetic memory in human DKD and identify new therapeutic targets, we profiled gene expression, DNA methylation, and chromatin accessibility in kidney proximal tubule epithelial cells (PTECs) derived from non-diabetic and Type-2 diabetic (T2D) subjects. T2D-PTECs displayed persistent gene expression and epigenetic changes with and without TGFβ1 treatment, even after culturing in vitro under similar conditions as non-diabetic PTECs, signified by deregulation of fibrotic and transport associated genes (TAGs). Motif-analysis of differential DNA methylation and chromatin accessibility regions associated with genes differentially regulated in T2D revealed enrichment for SMAD3, HNF4A, and CTCF transcription factor binding sites. Furthermore, the downregulation of several TAGs in T2D (including CLDN10, CLDN14, CLDN16, SLC16A2, SLC16A5) was associated with promoter hypermethylation, decreased chromatin accessibility and reduced enrichment of HNF4A, histone H3-lysine-27-acetylation, and CTCF. Together, these integrative analyses reveal epigenetic memory underlying the deregulation of key target genes in T2D-PTECs that may contribute to sustained renal dysfunction in DKD."	"LEFTY2 alleviates hepatic stellate cell activation and liver fibrosis by regulating the TGF-β1/Smad3 pathway. Activated hepatic stellate cells (HSCs) are the major cell type involved in the deposition of extracellular matrix (ECM) during the development of hepatic fibrosis. In this study, we revealed that left-right determination factor 2 (LEFTY2), one of the proteins belonging to the transforming growth factor-β (TGF-β) protein superfamily, was remarkedly decreased in human hepatic fibrosis tissues and in a carbon tetrachloride (CCl4)-induced liver fibrosis mouse model. In addition, TGF-β1 treatment markedly reduced the level of LEFTY2 in HSCs. Importantly, overexpression of LEFTY2 suppressed the activation and proliferation of HSCs. LEFTY2 inhibited the expression of TGF-β1-induced fibrosis-associated genes (α-SMA and COL1a1) in human (LX-2) and rat (HSC-T6) HSC cell lines in vitro. Mechanistically, we demonstrated, for the first time, the role of LEFTY2 in inhibiting TGF-β1/Smad3 signaling, suggesting that there is a mutual antagonism between LEFTY2 and TGF-β1/Smad3 signaling during liver fibrosis. Similarly, we observed that LEFTY2 has a negative effect on its downstream genes, including c-MYC, CDK4, and cyclin D1, in liver fibrosis. Collectively, our data strongly indicated that LEFTY2 plays an important role in controlling the proliferation and activation of HSCs in the progression of liver fibrosis and this could be a potential therapeutic target for its treatment."	"Natural alkaloid 8-oxo-epiberberine inhibited TGF-β1-triggred epithelial-mesenchymal transition by interfering Smad3. Epithelial-mesenchymal transition (EMT), the transition of epithelial cells into mesenchymal cells, plays important roles in the metastasis of solid tumors. 8-Oxo-epiberberine (OPB) is a natural alkaloid extracted from the roots of Coptis chinensis Franch. In this study, The effect and the underlying mechanism of OPB on EMT in a TGF-β1-induced model and the inhibitory effect of OPB on lung metastasis were investigated. TGF-β1-stimulated lung cancer cells were co-treated with OPB, the morphological changes were examined. The protein expression of EMT biomarkers E-cadherin and N-cadherin was determined by Western blotting and immunofluorescence. The transcription activity of smad2/3 promoter was analyzed by a luciferase reporter assay. The effect of OPB on cell migration, invasion, and adhesion was detected by wound-healing, adhesion, and transwell assays. The in vivo anti-metastatic effect of OPB was evaluated using a 4 T1 cell xenograft mouse model. Results showed that OPB significantly reversed TGF-β1-triggered morphological changes, expression of EMT biomarkers, and migration, adhesion, and invasion. Furthermore, OPB suppressed TGF-β1-induced Smad2/3 activation, Smad3 phosphorylation and nuclear translocation, and interaction of Smad3 with Smad4. Besides, OPB dramatically decreased the metastatic nodules in the lung without affecting the growth of primary tumors. In conclusion, OPB inhibited TGF-β1-induced EMT possibly by interfering with Smad3. OPB might have therapeutic potentials for the treatment of metastatic cancers."	"Role of Smad3 inhibitor and the pyroptosis pathway in spinal cord injury. The aim of the present study was to investigate the role of Smad3 inhibitors and the pyroptosis pathway in spinal cord injury, and to determine the underlying mechanism. The pyroptosis signaling pathway may be involved in spinal cord injury during the recovery period. Smad3 inhibitor may serve a role in alleviating spinal cord injury by reducing the pyroptosis of neurons, which is induced by caspase-1, absent in melanoma-2 or NOD-like receptors protein-1 during the recovery period of spinal cord injury. In the present study, spinal cord injury was alleviated by caspase-1 and Smad3 inhibitors. Therefore, a Smad3 inhibitor could relieve spinal cord injury in mice by directly downregulating caspase-1 and reducing neuron pyroptosis following spinal cord injury during the recovery period."	"Podocyte and endothelial-specific elimination of BAMBI identifies differential transforming growth factor-β pathways contributing to diabetic glomerulopathy. Transforming growth factor-β (TGF-β) is a central mediator of diabetic nephropathy. The effect of TGF-β, mediated by the type I TGF-β receptor, ALK5, and subsequent Smad2/3 activation results in podocyte apoptosis and loss. Previously, we demonstrated that the genetic deletion of the BMP and Activin Membrane-Bound Inhibitor (BAMBI), a negative modulator TGF-β signaling, accelerates diabetic nephropathy in mice. This was associated with heightened ALK1-mediated activation of Smad1/5 in the glomerular endothelial cells (ECs). Therefore, to evaluate the glomerular cell-specific effects of TGF-β in diabetic nephropathy we examined the effects of the podocyte- or EC-specific loss of Bambi (Pod-Bambi-/- or EC-Bambi-/-) in streptozotocin-induced diabetic mice with endothelial nitric oxide synthase deficiency. Interestingly, although hyperglycemia and body weight loss were similar in all groups of diabetic mice, significant hypertension was present only in the diabetic EC-Bambi-/- mice. While the podocyte or EC-specific loss of BAMBI both accelerated the progression of diabetic nephropathy, the worsened podocyte injury and loss observed in the diabetic Pod-Bambi-/- mice were associated with enhanced Smad3 activation. Increased Smad1/5 activation and EC proliferation were apparent only in the glomeruli of diabetic EC-Bambi-/- mice. The enhanced Smad1/5 activation in diabetic EC-Bambi-/- mice was associated with increased glomerular expression of plasmalemma vesicle-associated protein, pointing to the involvement of immature or dedifferentiated glomerular ECs in diabetic nephropathy. Notably, diabetic EC-Bambi-/- mice displayed podocyte injury and loss that were comparable to diabetic Pod-Bambi-/- mice. Thus, our results highlight the glomerular cell-specific contribution of TGF-β signaling and the intricate cross-talk between injured glomerular cells in the progression of diabetic nephropathy."	"Discovery of a novel selective water-soluble SMAD3 inhibitor as an antitumor agent. Targeting the SMAD3 protein is an attractive therapeutic strategy for treating cancer, as it avoids the potential toxicities due to targeting the TGF-β signaling pathway upstream. Compound SIS3 was the first selective SMAD3 inhibitor developed that had acceptable activity, but its poor water solubility limited its development. Here, a series of SIS3 analogs was created to investigate the structure-activity relationship for inhibiting the activation of SMAD3. On the basis of this SAR, further optimization generated a water-soluble compound, 16d, which was capable of effectively blocking SMAD3 activation in vitro and had similar NK cell-mediated anticancer effects in vivo to its parent SIS3. This study not only provided a preferable lead compound, 16d, for further drug discovery or a potential tool to study SMAD3 biology, but also proved the effectiveness of our strategy for water-solubility driven optimization."	"Keratoconus-susceptibility gene identification by corneal thickness genome-wide association study and artificial intelligence IBM Watson. Keratoconus is a common ocular disorder that causes progressive corneal thinning and is the leading indication for corneal transplantation. Central corneal thickness (CCT) is a highly heritable characteristic that is associated with keratoconus. In this two-stage genome-wide association study (GWAS) of CCT, we identified a locus for CCT, namely STON2 rs2371597 (P = 2.32 × 10<sup>-13</sup>), and confirmed a significant association between STON2 rs2371597 and keratoconus development (P = 0.041). Additionally, strong STON2 expression was observed in mouse corneal epithelial basal cells. We also identified SMAD3 rs12913547 as a susceptibility locus for keratoconus development using predictive analysis with IBM's Watson question answering computer system (P = 0.001). Further GWAS analyses combined with Watson could effectively reveal detailed pathways underlying keratoconus development."	"PDLIM5 inhibits STUB1-mediated degradation of SMAD3 and promotes the migration and invasion of lung cancer cells. Transforming growth factor β (TGFβ) signaling plays an important role in regulating tumor malignancy, including in non-small cell lung cancer (NSCLC). The major biological responses of TGFβ signaling are determined by the effector proteins SMAD2 and SMAD3. However, the regulators of TGFβ-SMADs signaling are not completely revealed yet. Here, we showed that the scaffolding protein PDZ and LIM domain protein 5 (PDLIM5, ENH) critically promotes TGFβ signaling by maintaining SMAD3 stability in NSCLC. Firstly, PDLIM5 was highly expressed in NSCLC compared with that in adjacent normal tissues, and high PDLIM5 expression was associated with poor outcome. Knockdown of PDLIM5 in NSCLC cells decreased migration and invasion in vitro, and lung metastasis in vivo. In addition, TGFβ signaling and TGFβ-induced epithelial-mesenchymal transition (EMT) was repressed by PDLIM5 knockdown. Mechanistically, PDLIM5 knockdown resulted in a reduction of SMAD3 protein levels. Overexpression of SMAD3 reversed the TGFβ-signaling-repressing and anti-migration effects induced by PDLIM5 knockdown. Notably, PDLIM5 interacted with SMAD3 but not SMAD2, and competitively suppressed the interaction between SMAD3 and its E3 ubiquitin ligase STUB1. Therefore, PDLIM5 protected SMAD3 from STUB1-mediated proteasome degradation. STUB1 knockdown restored SMAD3 protein levels, cell migration and invasion in PDLIM5-knockdown cells. Collectively, our findings indicate that PDLIM5 is a novel regulator of basal SMAD3 stability, with implications for controlling TGFβ signaling and NSCLC progression."	"Si-Miao-Yong-An Decoction attenuates isoprenaline-induced myocardial fibrosis in AMPK-driven Akt/mTOR and TGF-β/SMAD3 pathways. Myocardial fibrosis is well-known to be the aberrant deposition of extracellular matrix (ECM), which may cause cardiac dysfunction, morbidity, and death. Traditional Chinese medicine formula Si-Miao-Yong-An Decoction (SMYAD), which is used clinically in cardiovascular diseases has been recently reported to able to resist myocardial fibrosis. The anti-fibrosis effects of SMYAD have been evaluated; however, its intricate mechanisms remain to be clarified. Here, we found that SMYAD treatment reduced the fibrosis injury and collagen fiber deposition that could improve cardiac function in isoprenaline (ISO)-induced fibrosis rat models. Combined with our systematic RNA-seq data of SMYAD treatment, we demonstrated that the remarkable up-regulation or down-regulation of several genes were closely related to the functional enrichment of TGF-β and AMPK pathways that were involved in myocardial fibrosis. Accordingly, we further explored the molecular mechanisms of SMYAD were mainly caused by AMPK activation and thereby suppressing its downstream Akt/mTOR and TGF-β/SMAD3 pathways. Moreover, we showed that the ECM deposition and secretion process were attenuated, suggesting that the fibrosis pathological features are changed. Interestingly, we found the similar AMPK-driven pathways in NIH-3T3 mouse fibroblasts treated with ISO. Taken together, these results demonstrate that SMYAD may be a new candidate agent by regulating AMPK-driven Akt/mTOR and TGF-β/SMAD3 pathways for potential therapeutic implications of myocardial fibrosis."	"Differential Role of Smad2 and Smad3 in the Acquisition of an Endovascular Trophoblast-Like Phenotype and Preeclampsia. During placental development, cytotrophoblast progenitor cells differentiate into the syncytiotrophoblast and invasive extravillous trophoblasts (EVTs). Some EVTs further differentiate into endovascular trophoblasts (enEVTs) which exhibit endothelial-like properties. Abnormal placental development, including insufficient enEVT-mediated remodeling of the uterine spiral arteries, is thought to be a precipitating factor in the onset of preeclampsia (PE), a pregnancy-related hypertensive disorder. Several members of the transforming growth factor-β (TGF-β) superfamily, such as TGF-βs, Nodal, and Activin have been reported to either promote or inhibit the invasive EVT pathway. These ligands signal through serine/threonine receptor complexes to activate downstream signaling mediators, Smad2 and Smad3. In this study, we determined Smad2 and Smad3 expression pattern in placenta and their effects on trophoblast invasion and differentiation. Total Smad2/3 levels were relatively constant across gestation while the ratio of active phosphorylated forms to their total levels varied with gestational stages, with a higher pSmad2/total Smad2 in later gestation and a higher pSmad3/total Smad3 in early gestation. Immunofluorescent staining revealed that pSmad3 was localized in nuclei of EVTs in anchoring villi. On the other hand, pSmad2 was mostly absent in this invasive EVT population. In addition, pSmad3/total Smad3, but not pSmad2/total Smad2, was significantly lower in both early onset and late onset PE cases, as compared to gestational age-matched controls. Functional studies carried out using a first trimester trophoblast cell line, HTR-8/SVneo, and first trimester human placental explants showed that Smad2 and Smad3 had differential roles in the invasive pathway. Specifically, siRNA-mediated knockdown of Smad2 resulted in an increase in trophoblast invasion and an upregulation of mRNA levels of enEVT markers while the opposite was observed with Smad3 knockdown. In addition, Smad2 siRNA accelerated the EVT outgrowth in first trimester placental explants while the Smad3 siRNA reduced the outgrowth of EVTs when compared to the control. Furthermore, knockdown of Smad2 enhanced, whereas overexpression of Smad2 suppressed, the ability of trophoblasts to form endothelial-like networks. Conversely, Smad3 had opposite effects as Smad2 on network formation. These findings suggest that Smad2 and Smad3 have opposite functions in the acquisition of an enEVT-like phenotype and defects in Smad3 activation are associated with PE."	"Ephedrine causes liver toxicity in SD rats via oxidative stress and inflammatory responses. Ephedrine abuse has spread in many parts of the world and severely threatens human health. The mechanism of ephedrine-induced toxicity still remains unclear. This study was performed to investigate the effects of ephedrine treatment on the liver and explore the underlying mechanisms. Sprague Dawley rats were divided into saline and ephedrine groups. Rats were treated with ephedrine at 20 mg/kg or 40 mg/kg (n = 10) by oral gavage daily for 7 days. Pathological changes were examined by hematoxylin and eosin staining and terminal deoxynucleotidyl transferase deoxyuridine triphosphate nick end labeling assay. Enzyme-linked immunosorbent assays were used to measure the liver functional markers, oxidative stress markers, and inflammatory cytokines. Real-time polymerase chain reaction and Western blot were used to measure gene and protein expression, respectively. Our data showed that ephedrine treatment increased hepatocellular cell apoptosis and impaired liver function. Moreover, ephedrine treatment increased oxidative stress and inflammatory responses, which may be due to the increase of transforming growth factor β (TGF-β)/Smad3 expression. Our study demonstrated that short-term treatment of ephedrine caused liver toxicity in rats through regulating TGF-β/Smad pathway."	"Toxoplasma gondii excreted-secreted antigens suppress Foxp3 promoter activity via a SP1-dependent mechanism. Toxoplasma gondii excreted-secreted antigens (ESA) could result in adverse outcomes of pregnancy including abortion, stillbirth, foetal infection or teratogenesis in mice during early stage of pregnancy. Defective generation or function of regulatory T cells (Tregs) may account for those adverse pregnancy outcomes. Forkhead box p3 (Foxp3), which is the key transcriptional factor of Tregs, modulates its development and maintains inhibitory function. We previously demonstrated that ESA inhibited Foxp3 expression by attenuating transforming growth factor β RII/Smad2/Smad3/Smad4 pathway. In this study, we propose to study the role of ESA on the activity of Foxp3 promoter and explore potential mechanisms. We demonstrated that ESA suppressed Foxp3 promoter activity using dual-luciferase reporter assay. ESA functioned at -443/-96 region of Foxp3 promoter to suppress its activity using truncated fragments of Foxp3 promoter. Further analysis revealed that suppressive role of ESA on Foxp3 promoter activity is related to specificity protein 1 (SP1). Transfection of expression plasmid of pcDNA3.1-SP1 could restore the down-regulation of Foxp3 induced by ESA. In conclusion, this study provides a new mechanism by which ESA could inhibit the Foxp3 promoter activity via SP1."	"[Up-regulation of connexin 43 (Cx43) by angiotensin II promotes the proliferation and migration of human pulmonary artery smooth muscle cells]. Objective To explore the role of Cx43 in the proliferation and migration of human pulmonary arterial smooth muscle cells (HPASMCs) induced by angiotensin II (Ang II). Methods HPASMCs were cultured in vitro and randomly divided into four groups: control group, Ang II group, Ang II combined with DMSO group, and Ang II combined with candesartan group, and cells were collected in logarithmic growth phase. Cell viability was detected by CCK-8 assay; the migration ability of HPASMCs were measured by wound-healing and Transwell<sup>TM</sup> assay. The protein levels of Cx43, osteopontin (OPN), proliferating cell nuclear antigen (PCNA), SMAD2 and SMAD3 in HPASMCs were detected by Western blot analysis. Results Compared with the control group, the expression of OPN and PCNA proteins significantly went up in Ang II group, and the cell proliferation and migration ability increased. The cell proliferation and migration ability of the Ang II combined with candesartan group were significantly lower than that in the Ang II group. Compared with the control group, the Cx43 protein and its phosphorylation level increased significantly in the Ang II group, and the protein expression of SMAD2 and SMAD3 increased, while the expression of each protein in the Ang II combined with candesartan group was significantly lower than those in the Ang II group. Conclusion Ang II up-regulates the expression of Cx43 protein to promote the proliferation and migration of HPASMCs, which may be related to the activation of SMAD2/3 signaling pathway."	"Expression of Concern: Transforming growth factor-β1 up-regulates connexin43 expression in osteocytes via canonical Smad-dependent signaling pathway. NA"	"Targeting the Notch and TGF-β signaling pathways to prevent retinal fibrosis in vitro and in vivo. Rationale: The Notch and transforming growth factor-β (TGFβ) signaling pathways are two intracellular mechanisms that control fibrosis in general but whether they play a major role in retinal fibrosis is less clear. Here we study how these two signaling pathways regulate Müller cell-dominated retinal fibrosis in vitro and in vivo. Methods: Human MIO-M1 Müller cells were treated with Notch ligands and TGFβ1, either alone or in combination. Western blots were performed to study changes in γ-secretase proteases, Notch downstream effectors, endogenous TGFβ1, phosphorylated Smad3 (p-Smad3) and extracellular matrix (ECM) proteins. We also studied the effects of RO4929097, a selective γ-secretase inhibitor, on expression of ECM proteins after ligand stimulation. Müller cell viability was studied by AlamarBlue and cytotoxicity by lactate cytotoxicity assays. Finally, we studied changes in Notch and TGFβ signaling and tested the effect of intravitreal injections of the Notch pathway inhibitor RO4929097 on retinal fibrosis resulted from Sodium iodate (NaIO3)-induced retinal injury in mice. We also studied the safety of intravitreal injections of RO4929097 in normal mice. Results: Treatment of Müller cells with Notch ligands upregulated γ-secretase proteases and Notch downstream effectors, with increased expression of endogenous TGFβ1, TGFβ receptors and p-Smad3. TGFβ1 upregulated the expression of proteins associated with both signaling pathways in a similar manner. Notch ligands and TGFβ1 had additive effects on overexpression of ECM proteins in Müller cells which were inhibited by RO4929097. Notch and TGFβ ligands stimulated Müller cell proliferation which was inhibited by RO4929097 without damaging the cells. NaIO3-induced retinal injury activated both Notch and TGFβ signaling pathways in vivo. Intravitreal injection of RO4929097 prevented Müller cell gliosis and inhibited overexpression of ECM proteins in this murine model. We found no safety concerns for up to 17 days after an intravitreal injection of RO4929097. Conclusions: Inhibiting Notch signaling might be an effective way to prevent retinal fibrosis. This study is of clinical significance in developing a treatment for preventing fibrosis in proliferative vitreoretinopathy, proliferative diabetic retinopathy and wet age-related macular degeneration."	"Curcumin Inhibits Hepatocellular Carcinoma via Regulating miR-21/TIMP3 Axis. Curcumin exhibits anticancer effects against various types of cancer including hepatocellular carcinoma (HCC). miR-21 has been reported to be involved in the malignant biological properties of HCC. However, whether miR-21 plays a role in curcumin-mediated treatment of HCC is unknown. The purpose of this study was to identify the potential functions and mechanisms of miR-21 in curcumin-mediated treatment of HCC. The anticancer effects of curcumin were assessed in vivo and in vitro. The underlying mechanism of miR-21 in curcumin-mediated treatment of HCC was assessed by quantitative real-time PCR (RT-qPCR), western blot, and Dual-Luciferase Reporter assays. The present study revealed that curcumin suppressed HCC growth in vivo and inhibited HCC cell proliferation and induced cell apoptosis in a dose-dependent manner in vitro. Meanwhile, the curcumin treatment can downregulate miR-21 expression, upregulate TIMP3 expression, and inhibit the TGF-β1/smad3 signaling pathway. miR-21 inhibition enhanced the effect of curcumin on cell proliferation inhibition, apoptosis, and TGF-β1/smad3 signaling pathway inhibition in HepG2 and HCCLM3 cells. It demonstrated that TIMP3 was a direct target gene of miR-21. Interestingly, the effect of miR-21 inhibition on cell proliferation, apoptosis, and TGF-β1/smad3 signaling pathway in HepG2 and HCCLM3 cells exposed to curcumin was attenuated by TIMP3 silencing. Taken together, the present study suggests that miR-21 is involved in the anticancer activities of curcumin through targeting TIMP3, and the mechanism possibly refers to the inhibition of TGF-β1/smad3 signaling pathway."	"Combination of pomegranate extract and curcumin ameliorates thioacetamide-induced liver fibrosis in rats: Impact on TGF-β/Smad3 and NF-κB signaling pathways. Protection against liver injury and its consequences is considered an essential issue to minimize the number of annual deaths caused by liver diseases. The present study was designed to evaluate the potential role of pomegranate extract (PE) and/or curcumin in regression of thioacetamide (TAA)-induced liver fibrosis, focusing on their modulatory effects on Nrf2/HO-1, NF-κB, and TGF-β/Smad3 signaling pathways. Liver fibrosis was induced in male Wistar rats by intraperitoneal injection of TAA (100 mg/kg) three times a week, for 8 weeks. To assess the protective effects of PE and/or curcumin against TAA-induced liver fibrosis, rats were treated on a daily basis with oral doses of PE (200 mg/kg) and/or curcumin (200 mg/kg) for 8 weeks. The results indicated that PE and/or curcumin attenuated TAA-induced liver fibrogenesis, as evidenced by significant improvement in the liver function tests (AST, ALT, ALP, and albumin), oxidative stress biomarkers (MDA, SOD, and GSH), and inflammatory biomarkers (NF-ĸB, TNF-α, IL-1β, iNOS, TGF-β, and MPO), compared to TAA group. Moreover, treatment with PE and/or curcumin exerted a significant upregulation of Nrf2/HO-1 gene expressions along with significant downregulation of NF-ĸB, TGF-β, and phospho-Smad3 protein expressions, as well as α-SMA and collagen-1 gene expressions. The histopathological examination has corroborated these findings. In conclusion, hepatoprotective activities of PE and/or curcumin could be linked to their abilities to modulate Nrf2/HO-1, NF-κB, and TGF-β/Smad3 signaling pathways. It is worth noting that the combination of PE and curcumin exerted superior hepatoprotective effects against TAA-induced liver fibrosis, as compared to monotherapy."	"Heat Shock Protein 90 Involvement in the Development of Idiopathic Epiretinal Membranes. This work was aimed to further characterize cells of idiopathic epiretinal membranes (iERMs). We wanted to determine the contribution of 90-kDa heat shock protein (HSP90) to sustain the transforming growth factor-β (TGF-β)-mediated signal transduction pathway in iERM. Immunofluorescence and confocal microscopy were carried out on deplasticized sections from 36 epiretinal membranes processed for electron microscopy and on frozen sections from five additional samples with antibodies against α-smooth muscle actin (αSMA), vimentin, glial fibrillary acidic protein (GFAP), SMAD2, HSP90α, type-II TGF-β1 receptor (TβRII), type-I collagen, and type-IV collagen. In addition, Müller MIO-M1 cells were transfected with HSP90 and challenged with TGF-β1. Double and triple labeling experiments showed that a variable number of TβRII+ cells were present in 94.1% of tested iERMs and they were mostly GFAP-/αSMA+/vimentin+/HSP90α+. In almost half of the cases these cells contained type-I collagen, suggesting their involvement in matrix deposition. HSP90 overexpressing MIO-M1 cells challenged with TGF-β1 showed increased levels of TβRII, SMAD2, SMAD3, and phosphor-SMAD2. Nuclear SMAD2 staining could be observed in HSP90α+ cells on frozen sections of iERMs. Cells in iERMs that express TβRII are also HSP90α+ and show the antigenic profile of myofibroblast-like cells as they are GFAP-/αSMA+/vimentin+. HSP90α-overexpressing MIO-M1 cells challenged with TGF-β1 showed an increased activation of the SMAD pathway implying that HSP90α might play a role in sustaining the TGF-β1-induced fibrotic response of iERM cells."	"Hirudin Ameliorates Renal Interstitial Fibrosis via Regulating TGF-β1/Smad and NF-κB Signaling in UUO Rat Model. Hirudin, a polypeptide structure containing 65 amino acids, is a potent natural thrombin inhibitor with anticoagulant property extracted from Hirudo medicinalis. It has been reported to have anti-inflammatory and antifibrotic property. Here we explored the renoprotective effect of hirudin on unilateral ureteral obstruction (UUO) induced renal interstitial fibrosis (RIF). Rats were randomly divided into five groups: sham group, UUO alone group, and three UUO + hirudin-treatment groups (10, 20, or 40 IU/kg/d, for 14 continuous days). At the end of the experiment period, animals were sacrificed. Pathologic changes in renal specimens were observed using hematoxylin and eosin (HE) staining and Masson staining. The expressions of collagen III (Col III), fibronectin (FN), α-smooth muscle actin (α-SMA), protease-activated receptor 1 (PAR-1), and proteins in the TGF-β1/Smad and NF-κB pathways in renal tissues were examined by immunohistochemistry and/or Western blotting. HE and Masson staining showed that hirudin-treated UUO rats had lower extent of renal injury and deposition of extracellular matrix (ECM) in renal interstitium than those in the UUO group. The results of immunohistochemistry and WB indicated decreased protein expressions of Col III, FN, α-SMA, PAR-1, and inflammatory markers such as tumor necrosis factor-α and interleukin-6 after hirudin treatment. Furthermore, hirudin reduced the expressions of transforming growth factor β1 (TGF-β1), phosphorylated-Smad2, and phosphorylated-Smad3 in the UUO model. In parallel, we found inhibited nuclear factor-κB (NF-κB) signaling after hirudin treatment, with downregulated protein expressions of P65, phosphorylated-P65, and phosphorylated-iκBα and increased iκBα. Hirudin improves kidney injury and suppresses inflammatory response and ECM accumulation in UUO rats; its underlying mechanism may be associated with the inhibition of TGF-β1/Smad and NF-κB signaling."	"TGF-β1-induced miR-424 promotes pulmonary myofibroblast differentiation by targeting Slit2 protein expression. Idiopathic pulmonary fibrosis (IPF) is a devastating interstitial lung disease with irreversible loss of lung tissue and function. Myofibroblasts in the lung are key cellular mediators of IPF progression. Transforming growth factor (TGF)-β1, a major profibrogenic cytokine, induces pulmonary myofibroblast differentiation, and emerging evidence has established the importance of microRNAs (miRs) in the development of IPF. The objective of this study was to define the pro-fibrotic roles and mechanisms of miRs in TGF-β1-induced pulmonary myofibroblast differentiation. Using RNA sequencing, we identified miR-424 as an important TGF-β1-induced miR in human lung fibroblasts (HLFs). Quantitative RT-PCR confirmed that miR-424 expression was increased by 2.6-fold in HLFs in response to TGF-β1 and was 1.7-fold higher in human fibrotic lung tissues as compared to non-fibrotic lung tissues. TGF-β1-induced upregulation of miR-424 was blocked by the Smad3 inhibitor SIS3, suggesting the involvement of this canonical TGF-β1 signaling pathway. Transfection of a miR-424 hairpin inhibitor into HLFs reduced TGF-β1-induced expression of classic myofibroblast differentiation markers including ɑ-smooth muscle actin (ɑ-SMA) and connective tissue growth factor (CTGF), whereas a miR-424 mimic significantly enhanced TGF-β1-induced myofibroblast differentiation. In addition, TGF-β1 induced Smad3 phosphorylation in HLFs, and this response was reduced by the miR-424 inhibitor. In silico analysis identified Slit2, a protein that inhibits TGF-β1 profibrogenic signaling, as a putative target of regulation by miR-424. Slit2 is less highly expressed in human fibrotic lung tissues than in non-fibrotic lung tissues, and knockdown of Slit2 by its siRNA enhanced TGF-β1-induced HLF differentiation. Overexpression of a miR-424 mimic down-regulated expression of Slit2 but not the Slit2 major receptor ROBO1 in HLFs. Luciferase reporter assays showed that the miR-424 mimic represses Slit2 3' untranslated region (3'-UTR) reporter activity, and mutations at the seeding regions in the 3'-UTR of Slit2 abolish this inhibition. Together, these data demonstrate a pro-fibrotic role of miR-424 in TGF-β1-induced HLF differentiation. It functions as a positive feed-back regulator of the TGF-β1 signaling pathway by reducing expression of the negative regulator Slit2. Thus, targeting miR-424 may provide a new therapeutic strategy to prevent myofibroblast differentiation and IPF progression."	"EWSR1-SMAD3 fibroblastic tumour of bone: expanding the clinical spectrum. EWSR1-SMAD3 fibroblastic tumour is a recently described soft tissue lesion. To date, eight cases have been reported, all sited in superficial soft tissue, typically occurring in the hands and feet with a tendency for local recurrence if incompletely excised. No metastatic spread has been reported, and hence, these tumours are currently considered benign. Herein, we present the radiological and histological features of the first reported occurrence of this entity in bone: a 44-year-old man with a tumour in the right tibia, treated with en bloc resection and showing no signs of relapse at 7 years. This tumour should be added to the differential diagnosis of bone lesions which harbour EWSR1 gene rearrangement."	"Inhibition of miRNA‑135a‑5p ameliorates TGF‑β1‑induced human renal fibrosis by targeting SIRT1 in diabetic nephropathy. miRNA‑135a‑5p upregulation has been identified in renal fibrosis in diabetic nephropathy (DN) with an incompletely known mechanism. Previous data showed that Sirtuin 1 (SIRT1) serves as a novel therapeutic target for DN and interact with the transforming growth factor‑β/mothers against decapentaplegic homolog (TGF‑β/Smad) signaling pathway. The aim of this study was to investigate the regulatory relationship between miR‑135a‑5p and SIRT1. The expression of miR‑135a‑5p and SIRT1 was detected using reverse transcription‑quantitative PCR and western blotting. The renal fibrosis and Smad3 signaling pathway were assessed by western blotting, by analyzing protein expression of collegen1A1, α‑smooth muscle actin (α‑SMA), fibronectin (FN), epithelial‑cadherin, Smad3 and phosphorylated Smad3 (p‑Smad3). The target binding between miR‑135a‑5p and SIRT1 was predicted on TargetScan Human software, and confirmed by dual‑luciferase reporter assay and RNA immunoprecipitation. The results demonstrated miR‑135a‑5p is upregulated and SIRT1 was downregulated in the serum and renal tissue of DN patients, and TGFβ1‑induced DN cell models in human HK‑2 and HMCs. Knockdown of miR‑135a‑5p and overexpression of SIRT1 could inhibit TGFβ1‑induced renal fibrosis in vitro. Moreover, SIRT1 was a downstream target for miR‑135a‑5p. Silencing of SIRT1 could abolish the suppressive role of miR‑135a‑5p knockdown in TGFβ1‑induced HK‑2 and HMCs. The TGFβ1 induced p‑Smad3 expression in HK‑2 and HMCs, which could be attenuated by miR‑135a‑5p knockdown via SIRT1. In conclusion, knockdown of miR‑135a‑5p inhibits TGFβ1‑induced renal fibrosis by targeting SIRT1 and inactivating Smad3 signaling, providing a novel insight into miR‑135a‑5p as a potential therapeutic approach for DN."	"Montelukast improves bronchopulmonary dysplasia by inhibiting epithelial‑mesenchymal transition via inactivating the TGF‑β1/Smads signaling pathway. The present study investigated the role of montelukast (MK) during the progression of bronchopulmonary dysplasia (BPD) and the underlying mechanism of action. A rat model of BPD was induced by hyperoxia and subsequently, the rats were treated with 10 mg/kg MK. On day 14 post‑hyperoxia induction, lung function was assessed by detecting the mean linear intercept (MLI; the average alveolar diameter), the radial alveolar count (RAC; alveolar septation and alveologenesis) and the lung weight/body weight (LW/BW) ratio. Type II alveolar epithelial (AEC II) cells were isolated from normal rats to investigate the mechanism underlying the effect of MK on BPD in vitro. Western blotting and reverse transcription‑quantitative PCR were performed to measure the expression levels of surfactant protein C (SP‑C), E‑cadherin, N‑cadherin, Vimentin, collagen I (Col I), matrix metallopeptidase (MMP)1/3, transforming growth factor (TGF)‑β1 and Smad3. MK significantly reduced the MLI and the LW/BW ratio, and increased the RAC of the BPD group compared with the control group. MK upregulated the expression of SP‑C and E‑cadherin, and downregulated the expression levels of N‑cadherin and Vimentin in the lung tissues of the rat model of BPD, as well as in TGF‑β1‑ and hyperoxia‑induced AEC II cells. In addition, MK reduced the expression of Col I, MMP1, MMP3, TGF‑β1 and Smad3 in the lung tissues of the rat model of BPD, as well as in TGF‑β1‑ and hyperoxia‑induced AEC II cells. The present study demonstrated that MK improved BPD by inhibiting epithelial‑mesenchymal transition via inactivating the TGF‑β1/Smads signaling pathway."	"Tubular HIPK2 is a key contributor to renal fibrosis. Using the global Hipk2-null mice in various models of kidney disease, we previously demonstrated the central role of homeodomain interacting protein kinase 2 (HIPK2) in the development of renal fibrosis. However, whether the renal tubular epithelial cell (RTEC)-specific HIPK2 function significantly contributed to renal fibrogenesis had not been established. Herein, using RTEC-specific HIPK2 null mice and transgenic mice with RTEC-specific overexpression of the wildtype (WT) or kinase-dead (KD) mutant of HIPK2, we now show that the modulation of tubular HIPK2 expression and activity can profoundly affect renal fibrosis development in vivo. The loss of HIPK2 expression in RTECs resulted in a marked diminution of renal fibrosis in mouse models of unilateral obstruction (UUO) and HIV-associated nephropathy (HIVAN) in Tg26 mice, which was associated with the reduction of Smad3 activation and downstream expression of profibrotic markers. Conversely, the overexpression of WT HIPK2 in RTECs accentuated the extent of renal fibrosis in the setting of UUO, HIVAN, and folic acid nephropathy (FAN) in mice. Importantly, the overexpression of HIPK2 KD mutant or administration of BT173, an allosteric inhibitor of HIPK2-Smad3 interaction, markedly attenuated the renal fibrosis in these mouse models of kidney disease, indicating that HIPK2 requires both the kinase activity and its interaction with Smad3 to promote TGF--mediated renal fibrosis. Together, these results establish an important RTEC-specific role of HIPK2 in kidney fibrosis and further substantiates the inhibition of HIPK2 as a therapeutic approach toward renal fibrosis."	"Nucleosome Assembly Protein 1-Like 3 Enhances Cisplatin Resistance of Ovarian Cancer Cell by Activating Transforming Growth Factor-Beta Pathway. Chemotherapy resistance is one of the main reasons for tumor-related death. In particular, ovarian cancer patients often acquire drug resistance after chemotherapy. In this study, we found that the histone chaperone, nucleosome assembly protein 1-like 3 (NAP1L3), was significantly upregulated in tissues with cisplatin resistance compared with cisplatin-sensitive tissues. Patients with high NAP1L3 levels had poor prognosis, suggesting that NAP1L3 might regulate ovarian cancer resistance. Colony formation and terminal deoxynulceotidyl transferase nick-end-labeling (TUNEL) assays showed cells with high NAP1L3 had high cisplatin resistance, whereas cells with low NAP1L3 had poor cisplatin resistance. NAP1L3 overexpression significantly increased cisplatin resistance, whereas NAP1L3 knockdown significantly reduced cisplatin resistance, suggesting that NAP1L3 promoted cisplatin resistance. Mechanistically, gene set enrichment analysis and luciferase reporter assays showed that NAP1L3 regulated the transforming growth factor-beta (TGF-β) pathway. NAP1L3 overexpression increased the phosphorylation and nuclear translocation of SMAD family member 2 (SMAD2) and SMAD3, confirming that NAP1L3 activated the TGF-β pathway. Therefore, NAP1L3 might represent a novel target to overcome ovarian cancer chemoresistance."	"SUV39H1-Mediated DNMT1 is Participated in the Epigenetic Regulation of Smad3 in Cervical Cancer. Smad3 is a pivotal intracellular mediator for participating in the activation of multiple immune signal pathway. The epigenetic regulation mechanism of the positive immune factor Smad3 in cervical cancer remains unknown. Therefore, the epigenetic regulation on Smad3 is investigated in this study. The methylation status of SMAD3 was detected by Methylation-specific PCR (MS-PCR) and Quantitative Methylation-specific PCR (MS-qPCR) in cervical cancer tissues and cell lines. The underlying molecular mechanisms of SUV39H1-DNMT1-Smad3 regulation was elucidated using cervical cancer cell lines containing siRNA or/and overexpression system. Confirmation of the regulation of DNMT1 by SUV39H1 used Chromatin immunoprecipitation-qPCR (ChIP-qPCR). The statistical methods used for comparing samples between groups were paired t tests and one-way ANOVAs. H3K9me3 protein which regulated by SUV39H1 directly interacts with the DNMT1 promoter region to regulate its expression in cervical cancer cells, resulting in the reduce expression of the downstream target gene DNMT1. In addition, DNMT1 mediates the epigenetic modulation of the SMAD3 gene by directly binding to its promoter region. The depletion of DNMT1 effectively restores the expression of Smad3 in vitro. Moreover, in an in vivo assay, the expression profile of SUV39H1-DNMT1 was found to correlate with Smad3 expression in accordance with the expression at the cellular level. Notably, the promoter region of SMAD3 was hypermethylated in cervical cancer tissues, and this hypermethylation inhibits the subsequent gene expression. These results indicate that SUV39H1-DNMT1 is a crucial Smad3 regulatory axis in cervical cancer. SUV39H1-DNMT1 axis may provide a potential therapeutic target for the treatment of cervical cancer."	"[Monocrotaline pyrrole induces A549 cells and activates TGF-β1/SMAD2/SMAD3 pathway to promote proliferation and migration of human pulmonary artery smooth muscle cells]. Objective To explore the effects of A549 cells on the proliferation and migration of human pulmonary arterial smooth muscle cells (HPASMCs) and its mechanism. Methods A549 cells and HPASMCs were cultured in vitro. The A549 cells were randomly divided into four groups: control group, dimethylformamide (DMF) solvent group, monocrotaline pyrrole (MCTP) group, MCTP combined with SB431542 group. The cells were assigned into four groups: HPASMC group, A549 and HPASMC co-culture group, MCTP-stimulated A549 and HPASMC co-culture group, MCTP and SB431542-stimulated A549 and HPASMC co-culture group, and IL-6-stimulated HPASMC group. A549 cell viability was detected by CCK-8 assay. The level of IL-6 in the A549 cell culture supernatant was tested by ELISA. The mRNA levels of SMAD2 and SMAD3 in the A549 cells were detected by real-time PCR. The protein levels of TGF-β1, SMAD2, SMAD3 and p-SMAD2, p-SMAD3 in the A549 cells were detected by Western blot analysis. The protein levels of TGF-β1, SMAD2, SMAD3 and p-SMAD2, p-SMAD3 in the A549 cells were examined by Western blot analysis. The protein levels of osteopontin (OPN) and proliferating nuclear antigen (PCNA) in the HPASMCs were determined by Western blot analysis. The migration ability of HPASMCs was measured by wound healing and Transwell<sup>TM</sup> assay. Results In the A549 cells, compared with the control group, the cell proliferation ability decreased, the production of IL-6 increased, the mRNA levels of SMAD2 and SMAD3, and the expression of TGF-β1, SMAD2, SMAD3, p-SMAD2, p-SMAD3 proteins significantly increased in the MCTP group. Compared with the MCTP group, the cell proliferation ability increased, the production of IL-6 decreased, the mRNA levels of SMAD 2 and SMAD3, and the expression of TGF-β1, SMAD2, SMAD3, p-SMAD2, p-SMAD3 proteins significantly decreased in the MCTP and SB431542-stimulated group. In the co-culture system, compared with the HPASMC group, the expression of PCNA and OPN proteins and migration ability did not change significantly in the A549 and HPASMC co-cultured group. The expression of PCNA and OPN proteins significantly increased in the MCTP-stimulated A549 and HPASMC co-culture group, and the cell migration ability increased. Compared with the MCTP-stimulated A549 and HPASMC co-culture group, the expression of PCNA and OPN proteins significantly decreased in MCTP and SB431542-stimulated A549 and HPASMC co-culture group, and the cell migration ability decreased. Compared with the HPASMC group, the migration ability of HPASMCs increased and the expression of PCNA and OPN proteins increased in the IL-6 control group. Conclusion Activation of the TGF-β1/SMAD2/SMAD3 signaling pathway in A549 cells induced by MCTP increases IL-6 secretion, thus promoting the proliferation and migration of HPASMCs."	"Nodakenin alleviated obstructive nephropathy through blunting Snail1 induced fibrosis. Tubulointerstitial fibrosis plays an important role in end-stage renal failure, and there are only limited therapeutic options available to preserve organ function. In the present study, we identified that nodakenin, a coumarin isolated from the roots of Angelicae gigas, functions effectively against unilateral ureteral obstruction (UUO)-induced fibrosis via down-regulating Snail1 expression. We established UUO-induced renal fibrosis in mice and then administered with nodakenin orally ata a dose of 1 and 10 mg/kg. The in-vivo results indicated that nodakenin protected obstructive nephropathy through its anti-inflammatory and anti-fibrotic properties. Nodakenin prevented the infiltration of inflammatory cells, alleviated the levels of pro-inflammatory cytokines, reduced the polarization of macrophages and down-regulating the aberrant deposition of extracellular matrix at the site of injury. Of note, nodakenin dramatically impeded Smad3, NF-κB p65 phosphorylation and Snail1 expression. In line with in vivo studies, nodakenin suppressed the expression of Snail1, Smad3 phosphorylation and fibrogenesis in TGF-β1-treated renal epithelial cells in-vitro. Furthermore, we found that the effect of nodaknin against fibrosis was reversed in Snail1 overexpressing cells, whereas nodakenin could not further reduce expression of fibrogenesis in Snail1 silenced cells, suggesting that nodaknein may function through a Snail1-dependent manner. Collectively, this study reveal a critical role of nodakenin in the cure of renal fibrosis."	"Epithelial-mesenchymal transition polarization in ovarian carcinomas from patients with high social isolation. Social isolation has shown robust associations with clinical outcomes in the general population and in patients with cancer. In patients with ovarian cancer, social isolation has been found to be related to decreased survival and multiple biomarkers supporting tumor progression. However, to the authors' knowledge, little is known regarding the relationship between social isolation and the molecular characteristics of ovarian tumors. Herein, the authors have used genome-wide transcriptional profiling to quantify associations between social isolation and epithelial-mesenchymal transition (EMT) polarization in ovarian tumors and transcriptome-driven, promoter-based bioinformatics analyses to identify gene regulatory pathways that may potentially underlie these changes. Tumor was sampled during primary surgical resection and immediately frozen in liquid nitrogen. After RNA extraction, microarray analysis of the transcriptome was performed and samples were analyzed to assess associations between EMT-related gene transcripts and social isolation (as indicated by a Social Provisions Scale Attachment subscale score &lt;15). Convergent validation was provided by a promoter-based bioinformatic analysis of transcription factor activity. Primary analyses of 99 women demonstrated a lower average expression of gene transcripts previously associated with epithelial differentiation in women with high social isolation (-0.143 ± 0.048 log2 mRNA abundance; P = .004), but no difference in mesenchymal differentiation as a function of social isolation (+0.007 ± 0.0064 log2 mRNA abundance; P = .900). Upregulated activity was shown for 3 of the 4 targeted EMT-related transcription factors, including GATA4 (P = .014); SMAD2, SMAD3, and/or SMAD4 (P &lt; .001); and TWIST1 (P &lt; .001). Analyses of SNAIL2/SLUG activity indicated a directional trend toward increased activity that did not reach statistical significance (P = .123). The findings of the current study demonstrated differential EMT polarization and EMT-related transcription factor activity according to social isolation, a known socioenvironmental risk factor. Social isolation has shown robust associations with clinical outcomes in the general population and in patients with cancer. Herein, the authors examined the relationship between social isolation and the molecular characteristics of ovarian tumors. The authors investigated the epithelial-mesenchymal transition (EMT), a process whereby tumor cells lose epithelial characteristics and become more embryonic (mesenchymal), thereby enhancing invasiveness. Primary analyses demonstrated lower expression of genes previously associated with epithelial differentiation and increased activity of specific EMT-related transcription factors in individuals with high social isolation, indicating increased EMT polarization in these patients. These findings extend the understanding of how socioenvironmental factors may modulate tumor growth."	"Nano nickel oxide promotes epithelial-mesenchymal transition through transforming growth factor β1/smads signaling pathway in A549 cells. Our previous study demonstrated that nano nickel oxide (NiO) induce pulmonary fibrosis in rats and collagen excessive formation in A549 cells, which mechanism was related with the increasing transforming growth factor β1 (TGF-β1) secretion. However, it remains unclear understanding the role of TGF-β1 in collagen excessive formation. Here, we found nano NiO could directly promote epithelial-mesenchymal transition (EMT) via the TGF-β1/Smads pathway in A549 cells. First, cytotoxicity induced by nano NiO has a dose- and time-dependent manner according to methylthiaozol tetrazolium assay. Second, nano NiO led to the increased contents of type I collagen (Col-I), TGF-β1, p-Smad2, p-Smad3, alpha-smooth muscle actin (α-SMA), vimentin, and fibronectin, indicating Smads pathway activation and EMT occurence. Third, to verify whether TGF-β1 activated Smads signaling pathway and EMT occurence, A549 cells were exposed to nano NiO and TGF-β1 inhibitors (10 μM SB431542). The results showed that TGF-β1 inhibitors alleviated the nano NiO-induced cytotoxicity and Col-I excessive formation. Meanwhile, TGF-β1 inhibitors reversed the proteins expression trends of Col-I, p-Smad2, p-Smad3, α-SMA, vimentin, fibronectin, and E-cadherin. These observations suggested that EMT occurrence via TGF-β1/Smads pathway might play an important role in the collagen excessive formation induced by nano NiO in A549 cells."	"Effects of ZnT8 on epithelial-to-mesenchymal transition and tubulointerstitial fibrosis in diabetic kidney disease. Zinc transporter 8 (ZnT8) transports zinc ions for crystallization and storage of insulin in pancreatic beta-cells and ZnT8 dysfunction is involved in pathogenesis of diabetes. The current study aimed to investigate whether ZnT8 has effects in pathophysiology of diabetic kidney disease (DKD) by using animal models for diabetes, including STZ-induced diabetic, db/db, ZnT8-KO, ZnT8-KO-STZ and ZnT8-KO-db/db mice. Results demonstrated that urine albumin to creatinine ratio and epithelial-to-mesenchymal transition (EMT) were increased in kidneys of ZnT8-KO-STZ and ZnT8-KO-db/db mice compared with C57BL/6 J and ZnT8-KO mice, while serum TGF-β1, IL-6, and TNF-α levels were elevated in parallel. In kidneys of mice intercrossed between ZnT8-KO and STZ-induced diabetic or db/db mice, these three inflammatory factors, ACR and EMT were also found to be increased compared with C57BL/6J, db/db and ZnT8-KO mice. Furthermore, ZnT8 up-regulation by hZnT8-EGFP reduced the levels of high glucose (HG)-induced EMT and inflammatory factors in normal rat kidney tubular epithelial cell (NRK-52E cells). Expression of phosphorylated Smad2/Smad3 was up-regulated after HG stimulation and further enhanced by ZnT8 siRNA but down-regulated after hZnT8-EGFP gene transfection. The current study thus provides the first evidence that ZnT8 protects against EMT-tubulointerstitial fibrosis though the restrain of TGF-β1/Smads signaling activation in DKD."	"Mechanistic insights into the effects of SREBP1c on hepatic stellate cell and liver fibrosis. Sterol regulatory element-binding protein 1c (SREBP1c) plays key roles in maintenance of hepatic stellate cell (HSC) quiescence. The present researches investigated the mechanisms underlying the effects of SREBP1c on HSCs and liver fibrogenesis by HSC-targeted overexpression of the active SREBP1c using adenovirus in vitro and in vivo. Results demonstrated that SREBP1c exerted inhibitory effects on TAA-induced liver fibrosis. SREBP1c down-regulated TGFβ1 level in liver, reduced the receptors for TGFβ1 and PDGFβ, and interrupted the signalling pathways of Smad3 and Akt1/2/3 but not ERK1/2 in HSCs. SREBP1c also led to the decreases in the protein levels of the bromodomain-containing chromatin-modifying factor bromodomain protein 4, methionine adenosyltransferase 2B (MAT2B) and TIMP1 in HSCs. In vivo activated HSCs did not express cyclin D1 and cyclin E1 but SREBP1c down-regulated both cyclins in vitro. SREBP1c elevated PPARγ and MMP1 protein levels in the model of liver fibrosis. The effect of SREBP1c on MAT2B expression was associated with its binding to MAT2B1 promoter. Taken together, the mechanisms underlying the effects of SREBP1c on HSC activation and liver fibrosis were involved in its influences on TGFβ1 level, the receptors for TGFβ1 and PDGFβ and their downstream signalling, and the molecules for epigenetic regulation of genes."	"Sox21 Regulates Anapc10 Expression and Determines the Fate of Ectodermal Organ. The transcription factor Sox21 is expressed in the epithelium of developing teeth. The present study aimed to determine the role of Sox21 in tooth development. We found that disruption of Sox21 caused severe enamel hypoplasia, regional osteoporosis, and ectopic hair formation in the gingiva in Sox21 knockout incisors. Differentiation markers were lost in ameloblasts, which formed hair follicles expressing hair keratins. Molecular analysis and chromatin immunoprecipitation sequencing indicated that Sox21 regulated Anapc10, which recognizes substrates for ubiquitination-mediated degradation, and determined dental-epithelial versus hair follicle cell fate. Disruption of either Sox21 or Anapc10 induced Smad3 expression, accelerated TGF-β1-induced promotion of epithelial-to-mesenchymal transition (EMT), and resulted in E-cadherin degradation via Skp2. We conclude that Sox21 disruption in the dental epithelium leads to the formation of a unique microenvironment promoting hair formation and that Sox21 controls dental epithelial differentiation and enamel formation by inhibiting EMT via Anapc10."	"Curcumin downregulates Smad pathways and reduces hepatic stellate cells activation in experimental fibrosis. Curcumin, a polyphenol, is a natural compound that has been widely studied as a hepatoprotector; however, only a few studies have examined its ability to reduce fibrosis in previously established cirrhosis. The objective of this study was to investigate whether curcumin could reduce carbon tetrachloride (CCl4)-induced fibrosis and if so, to determine the action mechanisms involved in the reduction process. CCl4 was administered to male Wistar rats (400 mg/kg, three times a week, i. p.) for 12 weeks; curcumin (100 mg/kg body weight twice per day, p. o.) was administered from week 9-12 of CCl4 treatment. Biochemical markers of hepatic injury and oxidative stress were evaluated. Hematoxylin and eosin, Masson's trichrome stains, transmission electron microscopy; immunohistochemistry, and zymography assays were carried out. Moreover, Smad3 and α-SMA mRNA and protein levels were studied. Western blotting by TGF-β, CTGF, Col-I, MMP-13, NF-κB, IL-1, IL-10, Smad7, pSmad3, and pJNK proteins was developed. Curcumin reduced liver damage, oxidative stress, fibrosis, and restored normal activity of MMP-9 and MMP-2. Besides, curcumin restored NF-κB, IL-1, IL-10, TGF-β, CTGF, Col-I, MMP-13, and Smad7 protein levels. On the other hand, curcumin decreased JNK and Smad3 phosphorylation. Furthermore, curcumin treatment decreased α-SMA and Smad3 protein and mRNA levels. Curcumin normalized GSH, and NF-κB, JNK-Smad3, and TGF-β-Smad3 pathways, leading to a decrement in activated hepatic stellate cells, thereby producing its antifibrotic effects."	"MiR-216b/Smad3/BCL-2 Axis Is Involved in Smoking-Mediated Drug Resistance in Non-Small Cell Lung Cancer. Epidemiologic studies have shown that vast majority of lung cancers (85-90%) are causally linked to tobacco smoking. Although much information has been gained about the effects of smoking on various signaling pathways, little is known about how deregulation of miRNAs leads to activation of oncogenes and inhibition of tumor suppressor genes in non-small cell lung cancer (NSCLC). Our previous study showed that smoking inhibits TGF-β-induced tumor suppressor functions through downregulation of Smad3 in lung cancer cells. In order to understand the upstream mechanism of downregulation of Smad3 by smoking, we performed miRNA microarray analyses after treating human lung adenocarcinoma A549 and immortalized peripheral lung epithelial HPL1A cells with cigarette smoke condensate (CSC). We identified miR-216b as being upregulated in CSC treated cells. MiR-216b overexpression decreases Smad3 protein expression by binding to its 3'-UTR, and attenuates transforming growth factor beta (TGF-β) signaling and target gene expression. MiR-216b increases B-cell lymphoma 2 (BCL-2) expression and promotes chemoresistance of NSCLC cells by decreasing apoptosis. Increased acetylation of histones H3 and H4 in miR-216b gene promoter plays a role in CSC induced miR-216b expression. Taken together, these results suggest that smoking-mediated upregulation of miR-216b increases NSCLC cell growth by downregulating Smad3 and inhibiting TGF-β-induced tumor suppressor function, and induces resistance to platinum-based therapy."	"Quantification of the CM-Dil-labeled human umbilical cord mesenchymal stem cells migrated to the dual injured uterus in SD rat. Human umbilical cord mesenchymal stem cell (hUC-MSC) therapy is considered as a promising approach in the treatment of intrauterine adhesions (IUAs). Considerable researches have already detected hUC-MSCs by diverse methods. This paper aims at exploring the quantitative distribution of CM-Dil-labeled hUC-MSCs in different regions of the uterus tissue of the dual injury-induced IUAs in rats and the underlying mechanism of restoration of fertility after implantation of hUC-MSCs in the IUA model. In this study, we investigated the quantification of the CM-Dil-labeled hUC-MSCs migrated to the dual injured uterus in Sprague Dawley rats. Additionally, we investigated the differentiation of CM-Dil-labeled hUC-MSCs. The differentiation potential of epithelial cells, vascular endothelial cells, and estrogen receptor (ER) cells were assessed by an immunofluorescence method using CK7, CD31, and ERα. The therapeutic impact of hUC-MSCs in the IUA model was assessed by hematoxylin and eosin, Masson, immunohistochemistry staining, and reproductive function test. Finally, the expression of TGF-β1/Smad3 pathway in uterine tissues was determined by qRT-PCR and Western blotting. The CM-Dil-labeled cells in the stroma region were significantly higher than those in the superficial myometrium (SM) (71.67 ± 7.98 vs. 60.92 ± 3.96, p = 0.005), in the seroma (71.67 ± 7.98 vs. 23.67 ± 8.08, p = 0.000) and in the epithelium (71.67 ± 7.98 vs. 4.17 ± 1.19, p = 0.000). From the 2nd week of treatment, hUC-MSCs began to differentiate into epithelial cells, vascular endothelial cells, and ER cells. The therapeutic group treated with hUC-MSCs exhibited a significant decrease in fibrosis (TGF-β1/Smad3) as well as a significant increase in vascularization (CD31) compared with the untreated rats. Our findings suggested that the distribution of the migrated hUC-MSCs in different regions of the uterine tissue was unequal. Most cells were in the stroma and less were in the epithelium of endometrium and gland. Injected hUC-MSCs had a capacity to differentiate into epithelial cells, vascular endothelial cells, and ER cells; increase blood supply; inhibit fibration; and then restore the fertility of the IUA model."	"Inhibitory effect of oyster hydrolysate on wrinkle formation against UVB irradiation in human dermal fibroblast via MAPK/AP-1 and TGFβ/Smad pathway. The skin keeps the human body healthy from extrinsic stimuli such as ultraviolet (UV) irradiation. However, chronic exposure of these stimuli reduces the number of proteins that constitute the extracellular matrix (ECM) and causes wrinkle formation. The amount of collagen, the main protein that constitutes connective tissue, is reduced in the human skin due to UV radiation. When human dermal fibroblasts were damaged by UVB, UVB increased the MMPs expressions and degraded type I collagen and other ECM proteins. Oyster (Crassostrea gigas) hydrolysate (OH) is known to have anticancer, antioxidant, and anti-apoptotic effects. To scrutinize the anti-wrinkle effect of the OH in the viewpoint of the balance between collagen degradation and synthesis, we conducted the study in UVB damaged human dermal fibroblasts. We determined type I procollagen, MMPs and related proteins using ELISA kit, qRT-PCR and western blot. In our study, we discovered that OH inhibits collagen degradation by regulating MAPKs, AP-1 and MMPs expression. Also, we found that OH promotes collagen production by enhancing TGFβ receptor II expression and Smad3 phosphorylation. These results showed that OH regulates collagen degradation and stimulates collagen synthesis. Through this study, we found that OH is effective in inhibiting wrinkle formation and restore photo-aged human skin. It indicates that OH can be one of the functional materials in the fields of anti-wrinkle research."	"Ma Xing Shi Gan Decoction Protects against PM2.5-Induced Lung Injury through Suppression of Epithelial-to-Mesenchymal Transition (EMT) and Epithelial Barrier Disruption. This research was designed to explore the effect of Ma Xing Shi Gan decoction (MXD) in alleviating particulate matter less than 2.5 μm in diameter (PM2.5) induced lung injury from the perspective of epithelial barrier protection and inhibition of epithelial-to-mesenchymal transition (EMT). Rats were exposed to PM2.5 to establish a lung injury model in vivo, and a PM2.5-stimulated primary cultured type II alveolar epithelial cell model was introduced in vitro. Our results indicated that MXD alleviated the weight loss and pathologic changes and improved the epithelial barrier dysfunction. MXD also significantly inhibited the TGF-β/Smad3 pathway, increased the level of ZO-1 and claudin-5, and reversed the EMT process. Notably, the protection of MXD was abolished by TGF-β in vitro. Our results indicated that MXD has a protection against PM2.5-induced lung injury. The proposed mechanism is reversing PM2.5-induced EMT through inhibiting TGF-β/Smad3 pathway and then upregulating the expression of tight-junction proteins."	"LncRNA-OBFC2A targeted to Smad3 regulated Cyclin D1 influences cell cycle arrest induced by 1,4-benzoquinone. Long-term exposure to benzene is associated with adverse health effects such as leukemia. Abnormal cell cycle progression has been reported participating in tumorigenesis. Our previous study found that lncRNA-OBFC2A was involved in benzene toxicity through regulating cell proliferation. However, the function of lncRNA-OBFC2A in the regulation of cell cycle remains obscure and the precise mechanisms need to be explored. In vitro study, results showed that benzene metabolic, 1,4-Benzoquinone (1,4-BQ), induced cell cycle arrest at the G1 phase accompanied with decreased expression of Cyclin D1 in a dose-dependently manner. Interestingly, lncRNA-OBFC2A overexpression was found in AHH-1 cells treated with 1,4-BQ and while interference with lncRNA-OBFC2A, the expression of Cyclin D1 were reversed. Further, we found that lncRNA-OBFC2A can interact with Smad3 to control cell cycle via modulating Cyclin D1 expression. In benzene exposed workers, the expression of lncRNA-OBFC2A and Smad3 increased while cyclin D1 decreased which was consistent with the in vitro experiment, meanwhile, the significant associations among them were also found. Thus, these findings indicate that lncRNA-OBFC2A targeted to Smad3 regulated cyclin D1 influences cell cycle arrest induced by 1,4-BQ. LncRNA-OBFC2A, Smad3 and Cyclin D1 as a set of biomarkers play important roles in benzene haematotoxicity."	"Protective effect of trimetazidine in radiation-induced cardiac fibrosis in mice. Radiation-induced heart damage is a serious side effect caused by radiotherapy, especially during the treatment of cancer near the chest. Trimetazidine is effective at reducing inflammation in the heart, but how it affects radiation-induced cardiac fibrosis (RICF) is unknown. To investigate the potential effect and molecular mechanism, we designed this project with a C57BL6 male mouse model supposing trimetazidine could inhibit RICF in mice. During the experiment, mice were randomly divided into six groups including a control group (Con), radiation-damaged model group (Mod) and four experimental groups receiving low-dose (10 mg/kg/day) or high-dose (20 mg/kg/day) trimetazidine before or after radiation treatment. Apart from the control group, all mice chests were exposed to 6 MV X-rays at a single dose of 20 Gy to induce RICF, and tissue analysis was done at 8 weeks after irradiation. Fibroblast or interstitial tissues and cardiac fibrosis-like characteristics were determined using haematoxylin and eosin and Masson staining, which can be used to assess myocardial fibrosis. Immunohistochemical analysis and RT-PCR were used to determine gene expression and study the molecular mechanism. As a result, this study suggests that trimetazidine inhibits RICF by reducing gene expression related to myocyte apoptosis and fibrosis formation, i.e. connective tissue growth factor (CTGF), transforming growth factor (TGF)-β1, smad2 and smad3. In conclusion, by regulating the CTGF/TGF-β1/Smad pathway, trimetazidine could be a prospective drug for clinical treatment of RICF."	"Effect of phenylacetamide isolated from lepidium apetalum on myocardial injury in spontaneously hypertensive rats and its possible mechanism. Context: In the antihypertensive study of phenylacetamide (PA) on spontaneously hypertensive rats (SHR), it was occasionally found that PA prevents myocardial injury.Objective: Clarify the protective mechanism of PA on myocardial injury in SHR rats.Materials and methods:In vivo, SHR rats were treated with or without PA (15, 30, 45 mg/kg) for 3 weeks (12 per group). In vitro, H9c2 cells were treated with PA (1, 5, 10 μM) for 24 h, and then stimulated with H2O2 (300 μM) for 4 h. Molecular mechanisms were explored through cardiac pathology, cardiac function and biochemical markers.Results:In vivo, PA (15, 30, 45 mg/kg) reduced CVF from 14.8 ± 1.62 to 9.94 ± 1.56, 8.6 ± 1.33, 8.14 ± 1.45%; increased the LVEF relative level from 0.8 ± 0.06 to 0.83 ± 0.04, 0.86 ± 0.05, 0.9 ± 0.04. All three doses can improve the cardiac pathological structure and function (LVEDD, LVESD, LVFS, heart index, NT-proBNP, CKMB, SBP); however, 45 mg/kg works best. But different doses show different molecular mechanisms. PA (15 mg/kg) improves RAAS system (REN, ACE), inflammation (ET-1, IL-1β) and MAPK pathway (p-ERK/ERK, p-JNK/JNK) better. PA (45 mg/kg) improves oxidative stress (SOD, NOX1) and TGF-β pathway (Smad3) better. In vitro, PA improved cell viability, oxidative stress (SOD, NOX1) and Smad3 protein expression.Discussion and conclusions: PA regulates different mechanisms at different concentrations to improve myocardial injury, and high dose is the best. This experiment provides a theoretical basis for the development of new clinical drugs for cardiovascular disease."	"Small molecule inhibition of non-canonical (TAK1-mediated) BMP signaling results in reduced chondrogenic ossification and heterotopic ossification in a rat model of blast-associated combat-related lower limb trauma. Heterotopic ossification (HO) is defined as ectopic bone formation around joints and in soft tissues following trauma, particularly blast-related extremity injuries, thermal injuries, central nerve injuries, or orthopaedic surgeries, leading to increased pain and diminished quality of life. Current treatment options include pharmacotherapy with non-steroidal anti-inflammatory drugs, radiotherapy, and surgical excision, but these treatments have limited efficacy and have associated complication profiles. In contrast, small molecule inhibitors have been shown to have higher specificity and less systemic cytotoxicity. Previous studies have shown that bone morphogenetic protein (BMP) signaling and downstream non-canonical (SMAD-independent) BMP signaling mediated induction of TGF-β activated kinase-1 (TAK1) contributes to HO. In the current study, small molecule inhibition of TAK1, NG-25, was evaluated for its efficacy in limiting ectopic bone formation following a rat blast-associated lower limb trauma and a murine burn tenotomy injury model. A significant decrease in total HO volume in the rat blast injury model was observed by microCT imaging with no systemic complications following NG-25 therapy. Furthermore, tissue-resident mesenchymal progenitor cells (MPCs) harvested from rats treated with NG-25 demonstrated decreased proliferation, limited osteogenic differentiation capacity, and reduced gene expression of Tac1, Col10a1, Ibsp, Smad3, and Sox2 (P &lt; 0.05). Single cell RNA-sequencing of murine cells harvested from the injury site in a burn tenotomy injury model showed increased expression of these genes in MPCs during stages of chondrogenic differentiation. Additional in vitro cell cultures of murine tissue-resident MPCs and osteochondrogenic progenitors (OCPs) treated with NG-25 demonstrated reduced chondrogenic differentiation by 10.2-fold (P &lt; 0.001) and 133.3-fold (P &lt; 0.001), respectively, as well as associated reduction in chondrogenic gene expression. Induction of HO in Tak1 knockout mice demonstrated a 7.1-fold (P &lt; 0.001) and 2.7-fold reduction (P &lt; 0.001) in chondrogenic differentiation of murine MPCs and OCPs, respectively, with reduced chondrogenic gene expression. Together, our in vivo models and in vitro cell culture studies demonstrate the importance of TAK1 signaling in chondrogenic differentiation and HO formation and suggest that small molecule inhibition of TAK1 is a promising therapy to limit the formation and progression of HO."	"The induction and function of the anti-inflammatory fate of TH17 cells. TH17 cells exemplify environmental immune adaptation: they can acquire both a pathogenic and an anti-inflammatory fate. However, it is not known whether the anti-inflammatory fate is merely a vestigial trait, or whether it serves to preserve the integrity of the host tissues. Here we show that the capacity of TH17 cells to acquire an anti-inflammatory fate is necessary to sustain immunological tolerance, yet it impairs immune protection against S. aureus. Additionally, we find that TGF-β signalling via Smad3/Smad4 is sufficient for the expression of the anti-inflammatory cytokine, IL-10, in TH17 cells. Our data thus indicate a key function of TH17 cell plasticity in maintaining immune homeostasis, and dissect the molecular mechanisms explaining the functional flexibility of TH17 cells with regard to environmental changes."	"EWSR1-SMAD3-Positive Fibroblastic Tumor. EWSR1-SMAD3-positive fibroblastic tumor is a recently characterized neoplasm with distinct clinicopathologic features and recurrent EWSR1-SMAD3 gene fusion. ESFT typically presents as a small, painless tumor in extremity subcutaneous tissues. Their behavior is benign, although they are prone to local recurrence. They typically comprise two components: intersecting fascicles of overlapping, uniform plump spindle cells, and less cellular hyalinized areas containing stippled calcifications. Immunohistochemically, the cells consistently show diffuse ERG nuclear expression, while other markers are negative. The morphology of this neoplasm can lead to histologic confusion with both benign and malignant soft tissue tumors, including monophasic synovial sarcoma, malignant peripheral nerve sheath tumor, and spindle cell sarcoma, not otherwise specified. Correct identification of ESFT is critical, most importantly to avoid unnecessary overtreatment as sarcoma."	"Gemigliptin Inhibits Interleukin-1β-Induced Endothelial-Mesenchymal Transition via Canonical-Bone Morphogenetic Protein Pathway. Endothelial-to-mesenchymal transition (EndMT) contributes to inflammatory conditions inducing conversion of endothelial cells (ECs) into activated fibroblasts, promoting fibrotic diseases. Pro-inflammatory cytokine is the most potent inducer of EndMT. We investigated inhibition of interleukin-1β (IL-1β)-induced EndMT by gemigliptin, a dipeptidyl peptidase-IV inhibitor. We exposed human umbilical vein endothelial cells (HUVECs) to 10 ng/mL IL-1β/20 μM gemigliptin and analyzed the expression of endothelial, smooth muscle, mesenchymal, and osteoblastic markers, bone morphogenetic protein (BMP), Smad, and non-Smad signaling pathway proteins. Morphological changes showed gemigliptin blocked IL-1β-induced EndMT, upregulated EC markers, and downregulated smooth muscle and mesenchymal markers. IL-1β activation of HUVECs is initiated by the BMP/Smad and non-smad BMP signaling pathways. Gemigliptin inhibited IL-1β induction of BMP2 and 7, activin receptor type IA, BMP receptor type IA, and BMP receptor type II. Reversal of IL-1β-mediated inhibition of BMP-induced Smad1/5/8, Smad2, and Smad3 phosphorylation by gemigliptin suggests involvement of the Smad pathway in gemigliptin action. In the non-Smad BMP pathway, gemigliptin treatment significantly increased the deactivation of extracellular regulated protein kinase (ERK), p38, and JNK by IL-1β. Gemigliptin treatment suppressed BMP-2-induced expression of key osteoblastic markers including osterix, runt-related transcription factor 2, and hepcidin during IL-1β-induced EndMT. We demonstrated a novel protective mechanism of gemigliptin against fibrosis by suppressing IL-1β-induced EndMT."	"Empagliflozin Protects Against Proximal Renal Tubular Cell Injury Induced by High Glucose via Regulation of Hypoxia-Inducible Factor 1-Alpha. Evidence from both animal and human studies clearly supports the renal beneficial effects of empagliflozin (emp), a sodium glucose co-transporter 2 (SGLT2) inhibitor, but the mechanism in which it exerts its effect is not well understood. In this study, we investigated the capability of emp on reducing hyperglycemia-induced renal proximal tubular epithelial cells injury and we evaluated if the renoprotective effect of emp associates with hypoxia-inducible factor-1α (HIF-1α). Human kidney cell lines (HK-2 cells) were incubated in normoxia, high glucose with or without emp treatment for 72 hours to evaluate the induction of HIF-1α, glucose transporter-1, SGLT2, the fibrosis signal pathway and epithelial-mesenchymal transition (EMT) markers. High glucose (HG) increased expression of Collagen IV, Fibronectin, transforming growth factor-beta1 (TGF-β1). However, emp treatment remarkably decreased expression of TGF-β1, accumulation of extracellular matrix proteins (Fibronectin, Collagen IV), as well as (phosphorylated-smad3) P-smad3. HG increased SGLT2 protein expression compared to normal glucose (NG) while emp significantly decreased SGLT2 expression. Furthermore, emp decreased high glucose-induced alpha-smooth muscle actin (α-SMA) expression and reversed epithelial marker (E-catherin) suppression induced by high glucose. In addition, emp treatment for 72 h increased expression of HIF-1α protein (95% CI: -0.5918 to -0.002338, at 100nM, P &lt; 0.05, 95% CI -0.6631 to -0.07367 at 500nM, P &lt; 0.05) in hyperglycemic normoxic HK-2 cells. Furthermore, we observed increased expression of GLUT-1 protein after emp treatment and remarkably decreased cell proliferation. Emp treatment protected proximal renal tubular cells injury induced by high glucose. Induction of HIF-1α expression by emp may play an essential role in the protection of high glucose-induced proximal renal tubular epithelial cells injury."	"Expression of ApoA5 and its function in the right ventricular failing and remodeling secondary to pulmonary hypertension. Right heart failure and right ventricular (RV) remodeling were the main reason for mortality of pulmonary hypertension (PH) patients. Apolipoprotein AV (ApoA5) is a key regulator of plasma triglyceride and have multifunction in several target organs. We detected decreased ApoA5 in serum of patients with PH and both in serum and RV of monocrotaline-induced PH model. Exogenously, overexpression ApoA5 by adenovirus showed protective effects on RV failure and RV fibrosis secondary to PH. In addition, in vitro experiments showed ApoA5 attenuated the activation of fibroblast induced by transforming growth factor β1 and synthesis and secretion of extracellular matrix by inhibiting focal adhesion kinase-c-Jun N-terminal kinase-Smad3 pathway. Finally, we suggest that ApoA5 may potentially be a pivotal target for RV failure and fibrosis secondary of PH."	"Identification of novel splice mutation in SMAD3 in two Cypriot families with nonsyndromic thoracic aortic aneurysm. Two case reports. Thoracic aortic aneurysm and dissection (TAA/D) represents a potentially lethal disease group characterized by an increased risk of dissection or rupture. Only a small percentage (approximately 30%) of individuals with nonsyndromic familial TAA/D have a pathogenic variant in one of the genes that have been found to be associated with the disease. A targeted sequencing panel and direct sequencing approach were used to identify causative mutations in the index patients and other family members. In this study we report two apparently unrelated Cypriot families with nonsyndromic familial TAA/D. The proband A is a female patient diagnosed with TAA/D and intracranial aneurysm and opted for an elective intervention. The proband B is a male patient who was diagnosed with TAA/D and underwent cardiac surgery. Sequencing analysis identified a novel splice site variant (c.871+1G&gt;A) in SMAD3 which is shown to be associated with the disease. Analysis of mRNA from the patient's tissue confirmed aberrant splicing and exon 6 skipping. Our findings expand the mutation spectrum of variants that have been shown to be associated with nonsyndromic familial TAA/D. This study demonstrates the importance of a comprehensive clinical and genetic evaluation aiming at early diagnosis and intervention."	"Anti-fibrotic effect of iguratimod on pulmonary fibrosis by inhibiting the fibroblast-to-myofibroblast transition. Pulmonary fibrosis (PF) is a severe lung disease causing significant morbidity and mortality. PF pathogenesis is attributed to the fibroblast-to-myofibroblast transition (FMT) driven by the most potent pro-fibrogenic factor TGF-β1 activating the Smad3-dependent TGF-β1 canonical pathway. Iguratimod (IGU) is a novel anti-rheumatic drug that suppresses the secretion of inflammatory factors, but is also able to modulate the differentiation of multiple cells. Therefore, the aim of this work was to investigate the effect of IGU on FMT. PF mouse model was induced in C57BL/6 male mice by bleomycin. The effect of IGU was assessed through the evaluation of lung morphology by H&amp;E and through the collagen accumulation in the lung by Masson staining. Primary human lung fibroblasts (pHLFs) were also used to evaluate the effect of IGU in vitro on TGF-β1-stimulated cells, and proliferation, migration and invasion were measured, together with genes and proteins involved in FMT. IGU attenuated bleomycin-induced PF in mice and improved the pathological changes in their lungs. In addition, IGU significantly inhibited proliferation, migration and invasion in TGF-β1-stimulated pHLFs without causing apoptosis. Moreover, IGU significantly reduced TGF-β1-induced increase of collagen I and III mRNA expression, thus reducing lung function impairment, and α-SMA, Smad2 and Smad3 phosphorylation, fibronectin expression and F-actin microfilament formation, thus attenuating FMT through the inhibition of the Smad3 pathway. Our results collectively revealed the beneficial effect of IGU on the inhibition of FMT, thus suggesting that it might act as an effective anti-fibrotic agent in preventing the progression of PF."	"Gene expression profiling of tumor stroma interactions in retinoblastoma. We aimed to identify the critical molecular pathways altered upon tumor stroma interactions in retinoblastoma (RB). In vitro 2 D cocultures of RB tumor cells (Weri-Rb-1 and NCC-RbC-51) with primary bone marrow stromal cells (BMSC) was established. Global gene expression patterns in coculture samples were assessed using Affymetrix Prime view human gene chip microarray and followed with bioinformatics analyses. Key upregulated genes from Weri-Rb-1 + BMSC and NCC-RbC-51 + BMSC coculture were validated using qRT-PCR to ascertain their role in RB progression. Whole genome microarray experiments identified significant (P ≤ 0.05, 1.1 log 2 FC) transcriptome level changes induced upon coculture of RB cells with BMSC. A total of 1155 genes were downregulated and 1083 upregulated in Weri-Rb-1 + BMSC coculture. Similarly, 1865 genes showed downregulation and 1644 genes were upregulation in NCC-RbC-51 + BMSC coculture. The upregulated genes were significantly associated with pathways of focal adhesion, PI3K-Akt signalling, ECM-receptor interaction, JAK-STAT, TGF-β signalling thus contributing to RB progression. Validation of key genes by qRT-PCR revealed significant overexpression of IL8, IL6, MYC and SMAD3 in the case of Weri-Rb-1 + BMSC coculture and IL6 in the case of NCC-RbC-51 + BMSC coculture. The microarray expression study on in vitro RB coculture models revealed the pathways that could be involved in the progression of RB. The gene signature obtained in a stimulated model when a growing tumor interacts with its microenvironment may provide new horizons for potential targeted therapy in RB."	"Puromycin aminonucleoside-induced podocyte injury is ameliorated by the Smad3 inhibitor SIS3. Smad3 signaling and transgelin expression are often activated during puromycin aminonucleoside (PAN)-induced podocyte injury. Here, we investigated whether the Smad3 inhibitor SIS3 can ameliorate damage to injured podocytes. A model of PAN-induced podocyte injury was constructed using the MPC5 cell line. The effects of SIS3 on the expression of the podocyte cytoskeletal proteins transgelin, p15<sup>INK4B</sup> , phosphor-smad3, phosphor-JAK/stat3, the apoptotic marker cleaved caspase 3, and c-myc were investigated using western blot. The distribution of F-actin in PAN-induced podocyte injury was observed under an immunofluorescence microscope. PAN-induced podocyte injury altered the distribution of F-actin and transgelin, and colocalization of these two proteins was observed. Transgelin expression and Smad3 phosphorylation were increased in the MPC5 cell line with prolonged PAN treatment. In addition, c-myc expression, p15<sup>INK4B</sup> , and JAK phosphorylation were all increased after treatment with PAN. Treatment with the Smad3 inhibitor SIS3 reversed these phenomena and protected against PAN-induced podocyte injury. Moreover, stimulating podocytes directly with TGFβ-1 also led to enhanced expression of transgelin or phosphor-JAK/stat3, and this could be inhibited by SIS3. In conclusion, transgelin expression was induced through the Smad3 signaling pathway during PAN-induced podocyte injury, and the resulting abnormal distribution of F-actin and the enhanced expression of transgelin could be reversed by blockade of this pathway."	"Deciphering the Novel Target Genes Involved in the Epigenetics of Hepatocellular Carcinoma Using Graph Theory Approach. Even after decades of research, cancer, by and large, remains a challenge and is one of the major causes of death worldwide. For a very long time, it was believed that cancer is simply an outcome of changes at the genetic level but today, it has become a well-established fact that both genetics and epigenetics work together resulting in the transformation of normal cells to cancerous cells. In the present scenario, researchers are focusing on targeting epigenetic machinery. The main advantage of targeting epigenetic mechanisms is their reversibility. Thus, cells can be reprogrammed to their normal state. Graph theory is a powerful gift of mathematics which allows us to understand complex networks. In this study, graph theory was utilized for quantitative analysis of the epigenetic network of hepato-cellular carcinoma (HCC) and subsequently finding out the important vertices in the network thus obtained. Secondly, this network was utilized to locate novel targets for hepato-cellular carcinoma epigenetic therapy. The vertices represent the genes involved in the epigenetic mechanism of HCC. Topological parameters like clustering coefficient, eccentricity, degree, etc. have been evaluated for the assessment of the essentiality of the node in the epigenetic network. The top ten novel epigenetic target genes involved in HCC reported in this study are cdk6, cdk4, cdkn2a, smad7, smad3, ccnd1, e2f1, sf3b1, ctnnb1, and tgfb1."	"Alterations in TGF-β signaling leads to high HMGA2 levels potentially through modulation of PJA1/SMAD3 in HCC cells. Recently, we observed that the TGF-β pathway is altered in 39% of HCCs. The alterations are correlated with a raised HMGA2 level. Therefore, we compared genetic alterations of HMGA2 and 43 TGF-β pathway core genes in HCC patients from TCGA database. Genetic alterations of 15 genes, including INHBE, INHBC, GDF11, ACVRL and TGFB2 out of 43 core genes, highly-moderately matched that of HMGA2. Co-occurrences of mutation amplification, gains, deletions and high/low mRNA of HMGA2 with those of the core genes were highly significant in INHBE, INHBC, ACVR1B, ACVRL and GDF11. Mass spectrometry studies revealed that HMGA2 interacted with an E3 ligase, PJA1, and that this interaction is enhanced by TGF-β treatment in the nuclear of HCC cells. Co-localization of nuclear PJA1 and HMGA2 in HCC cells increased upon TGF-β treatment. Raised HMGA2 levels that occur with alterations in the TGF-β signaling pathway may reflect an altered activity of E3 ligases, such as PJA1, and potentially contribute to the tumor-promoting roles of TGF-β signaling. Here, we report that the co-occurrence of genetic alterations in HMGA2 and TGF-β pathway core genes is implicated in HCC progression, and propose that HMGA2 and PJA1 may be potential novel targets in dysfunctional TGF-β signaling in HCC."	"TGFβ activity released from platelet-rich fibrin adsorbs to titanium surface and collagen membranes. Platelet-rich fibrin (PRF) contains a broad spectrum of bioactive molecules that can trigger several cellular responses. However, these molecules along with their upstream responses remain mostly uninvestigated. By means of proteomics we revealed that PRF lysates contain more than 650 proteins, being TGF-β one of the few growth factors found. To uncover the major target genes regulated by PRF lysates, gingival fibroblasts were exposed to lysates obtained from PRF membranes followed by a whole genome array. We identified 51 genes strongly regulated by PRF including IL11, NOX4 and PRG4 which are characteristic TGF-β target genes. RT-PCR and immunoassay analysis confirmed the TGF-β receptor I kinase-dependent increased expression of IL11, NOX4 and PRG4. The PRF-derived TGF-β activity was verified by the translocation of Smad2/3 into the nucleus along with the increased phosphorylation of Smad3. Considering that PRF is clinically used in combination with dental implants and collagen membranes, we showed here that PRF-derived TGF-β activity adsorbs to titanium implants and collagen membranes indicated by the changes in gene expression and immunoassay analysis. Our study points towards TGF-β as major target of PRF and suggest that TGF-β activity released by PRF adsorbs to titanium surface and collagen membranes."	"A combined CaMKII inhibition and mineralocorticoid receptor antagonism via eplerenone inhibits functional deterioration in chronic pressure overloaded mice. In the diseased and remodelled heart, increased activity and expression of Ca<sup>2+/</sup> calmodulin-dependent protein kinase II (CaMKII), an excess of fibrosis, and a decreased electrical coupling and cellular excitability leads to disturbed calcium homeostasis and tissue integrity. This subsequently leads to increased arrhythmia vulnerability and contractile dysfunction. Here, we investigated the combination of CaMKII inhibition (using genetically modified mice expressing the autocamtide-3-related-peptide (AC3I)) together with eplerenone treatment (AC3I-Epler) to prevent electrophysiological remodelling, fibrosis and subsequent functional deterioration in a mouse model of chronic pressure overload. We compared AC3I-Epler mice with mice only subjected to mineralocorticoid receptor (MR) antagonism (WT-Epler) and mice with only CaMKII inhibition (AC3I-No). Our data show that a combined CaMKII inhibition together with MR antagonism mitigates contractile deterioration as was manifested by a preservation of ejection fraction, fractional shortening, global longitudinal strain, peak strain and contractile synchronicity. Furthermore, patchy fibrosis formation was reduced, potentially via inhibition of pro-fibrotic TGF-β/SMAD3 signalling, which related to a better global contractile performance and a slightly depressed incidence of arrhythmias. Furthermore, the level of patchy fibrosis appeared significantly correlated to eplerenone dose. The addition of eplerenone to CaMKII inhibition potentiates the effects of CaMKII inhibition on pro-fibrotic pathways. As a result of the applied strategy, limiting patchy fibrosis adheres to a higher synchronicity of contraction and an overall better contractile performance which fits with a tempered arrhythmogenesis."	"Adipocytokine expression, platelet-to-lymphocyte ratio and TGF-β1/Smad signaling activity in diabetic patients complicated with pulmonary infection. To investigate adipocytokine expression levels, platelet-to-lymphocyte ratio (PLR) and transforming growth factor (TGF)-β1/Smad signaling activity in diabetic patients with pulmonary infection. Eighty-two type 2 diabetic patients with pulmonary infection were included in the observation group and 75 patients with simple type 2 diabetes were recruited into the control group. The fasting blood glucose (FBG), glycated hemoglobin (HbA1c), and PLR in the two groups were compared. Complement-C1q/tumor necrosis factor related protein 3 (CTRP-3), complement-C1q/tumor necrosis factor related protein 9 (CTRP-9), leptin, adiponectin, and TGF-β1/Smad signaling pathway activity in peripheral blood mononuclear cells (PBMCs) was detected. Compared with patients in the control group, patients in the observation group presented with increased levels of FGB, HbA1c, and leptin, an increase in the PLR, and decreased serum CTRP-3, CTRP-9, and adiponectin levels. TGF-β1, p-Smad2, and p-Smad3 protein expression levels were up-regulated in PBMCs from patients in the observation group compared with the control group. These results show that in type 2 diabetic patients with pulmonary infection, adipocytokine expression is altered, PLR is disturbed, and the TGF-β1/Smad signaling pathways in PBMCs are significantly activated."	"Inhibitory effect of dihydromyricetin on the proliferation of JAR cells and its mechanism of action. Dihydromyricetin (DMY) is a novel natural drug with antitumor activity against some cancer cells without obvious toxicity. Previously, its apoptotic effect on human choriocarcinoma was detected. The present study further investigated the therapeutic potential of DMY as a new drug for the treatment of choriocarcinoma, as well as its anti-proliferative effect and mechanism of action. The short-term proliferation of JAR cells was determined by MTT assay, whereas the effect of DMY on long-term cell proliferation was determined by colony forming assay. Flow cytometry was used to detect changes in the cell cycle. Furthermore, western blotting was used to detect the expression levels of proliferation-associated proteins such as cyclin A1, cyclin D1, SMAD3 and SMAD4. Reverse transcription-quantitative PCR (RT-qPCR) was used to quantify mRNA expression levels. The results indicated that DMY inhibited short and long-term proliferation of JAR cells in a concentration-dependent manner. Flow cytometry demonstrated S/G2/M cell cycle arrest, and western blotting revealed the downregulation of SMAD3, SMAD4, cyclin A1 and cyclin D1 expression levels. The results of RT-qPCR and western blotting were consistent. Overall, the findings of the present study suggest that DMY inhibits the proliferation of human choriocarcinoma JAR cells, potentially through cell cycle arrest via the downregulation of cyclin A1, cyclin D1, SMAD3 and SMAD4 expression levels."	"Alleviation of TGF-β1 induced tubular epithelial-mesenchymal transition via the δ-opioid receptor. Renal fibrosis is a common pathological feature of progressive chronic kidney disease (CKD). It is indicated that transforming growth factor-β1 (TGF-β1) plays as a central mediator in renal fibrosis. The present study aimed to investigate the role of δ-opioid receptor (DOR) on renal fibrosis of the rat renal proximal tubular epithelial cell line (NRK-52E) induced by TGF-β1 and to elucidate its underlying mechanism, as well as its involvement in signaling pathways. Cells were treated with TGF-β1 (10 ng·mL<sup>-1</sup> ), along with a specific DOR agonist (UFP-512) or naltrindole (a DOR antagonist). Cell viability and morphology, as well as cell migration, were measured after drug administration. Western blotting was employed to examine the extracellular matrix (ECM) protein Fibronectin, and the tubular epithelial-mesenchymal transition (EMT) markers (E-cadherin and α-smooth muscle actin (α-SMA)), signal transducer (p-Smad3), and EMT-regulatory gene (Snail). The expression level of phosphorylated Akt and p38 was also examined. Our results showed that TGF-β1 induced fibroblastic appearance and increased the expression of Fibronectin, α-SMA, P-Smad3, and Snail, while it decreased the expression of E-cadherin in NRK-52E cells. Moreover, TGF-β1 induced the activation of Akt and p38 MAPK signaling pathways. DOR activation was found to efficiently block morphological changes and cell migration, as long as the expression changes of Fibronectin, E-cadherin, α-SMA, P-Smad3, Snail, P-Akt, and P-p38 were induced by TGF-β1. These findings suggest that DOR may serve as an antifibrotic factor for renal proximal tubule cells by inhibiting the fibrosis process via TGF-β/Smad, Akt, and p38 MAPK signaling pathways."	"Microcurrent and adipose-derived stem cells modulate genes expression involved in the structural recovery of transected tendon of rats. Tendon injuries are common and have a high incidence of re-rupture that can cause loss of functionality. Therapies with adipose-derived stem cells (ASC) and the microcurrent (low-intensity electrical stimulation) application present promising effects on the tissue repair. We analyzed the expression of genes and the participation of some molecules potentially involved in the structural recovery of the Achilles tendon of rats, in response to the application of both therapies, isolated and combined. The tendons were distributed in five groups: normal (N), transected (T), transected and ASC (C) or microcurrent (M) or with ASC, and microcurrent (MC). Microcurrent therapy was beneficial for tendon repair, as it was observed a statistically significant increase in the organization of the collagen fibers, with involvement of the TNC, CTGF, FN, FMDO, and COL3A1 genes as well as PCNA, IL-10, and TNF-α. ASC therapy significantly increased the TNC and FMDO genes expression with no changes in the molecular organization of collagen. With the association of therapies, a significant greater collagen fibers organization was observed with involvement of the FMOD gene. The therapies did not affect the expression of COL1A1, SMAD2, SMAD3, MKX, and EGR1 genes, nor did they influence the amount of collagen I and III, caspase-3, tenomodulin (Tnmd), and hydroxyproline. In conclusion, the application of the microcurrent isolated or associated with ASC increased the organization of the collagen fibers, which can result in a greater biomechanical resistance in relation to the tendons treated only with ASC. Future studies will be needed to demonstrate the biological effects of these therapies on the functional recovery of injured tendons."	"Study on the effect of regulation of Cordyceps militaris polypeptide on the immune function of mice based on a transcription factor regulatory network. The pathogenesis of the abnormality of the immune system is still not clear at present. Chemosynthetic drugs, human or animal immune products and microbiological drugs are used as the main drugs in clinics currently, but these drugs have different side effects. So researchers turned to safer natural products in order to find immunomodulatory active substances from natural products and their extracts. Immunosuppressed mice were induced by cyclophosphamide and administered with Cordyceps militaris polypeptide (CMP) for the study on the effect of CMP on the immune function of mice and its mechanism. Based on the 1748 differential gene sets selected in our previous work, the transcription factors and their corresponding target genes were screened by integrating the TRED (Transcriptional Regulatory Element Database), a transcriptional factor-target gene regulatory network was constructed, then the role of transcription factors in the regulatory network was elucidated by statistically analyzing the key nodes, and finally, the correlation of network genes with diseases was analyzed by using the DAVID database. The results of animal experiments showed that CMP could increase the immune organ indexes, the number of white blood cells, the degree of delayed allergy and the content of hemolysin in the serum of mice. CMP was found to be involved in the regulation of immune function in mice through genes Kdr, Spp1, Ptgs2, Rel, and Smad3, and transcription factors Ets1, E2f2 and E2f1. E2F2 and E2F1 are members of the E2F family, so we speculated that the E2F family might play an important role, and its main regulatory pathways were the PI3K-Akt signaling pathway and TNF signaling pathway. CMP can improve the immunity of mice. CMP can regulate the immune function of mice through multiple genes and transcription factors, and may also play a role in immune-related diseases, such as cancer."	"Delayed treatment with an autophagy inhibitor 3-MA alleviates the progression of hyperuricemic nephropathy. Autophagy is a cell self-renewal process that relies on the degradation of the cytoplasmic proteins or organelles of lysosomes and is associated with development of numerous diseases. However, the therapeutic effect of autophagy inhibition on hyperuricemic nephropathy (HN) and the underlying mechanisms are still unknown. Here, we investigated the effect of delayed treatment with 3-methyladenine (3-MA), a specific autophagy inhibitor, on the development of HN in a rat model. Administration of 3-MA at 21 days following after uric acid injury protected kidney from hyperuricemic-related injuries, as demonstrated by improving renal dysfunction and architecture damage, blocking Beclin-1 and LC3II/I and decreasing the number of autophagic vacuoles. Late treatment with 3-MA was also effective in attenuating renal fibrosis as evidenced by reducing ECM protein deposition, blocking epithelial-to-mesenchymal transition (EMT) and decreasing the number of renal epithelial cells arrested at the G2/M phase of cell cycle. Injury to the kidney resulted in increased expression of TGFβ receptor I, and phosphorylation of Smad3, 3-MA significantly abrogated all these responses. Moreover, inhibition of autophagy suppressed mitochondrial fission, downregulated the expression of Dynamin-related protein 1 (Drp-1), Cofilin and F-actin, and alleviated cell apoptosis. Finally, 3-MA effectively blocked STAT3 and NF-κB phosphorylation and suppressed infiltration of macrophages and lymphocytes as well as release of multiple profibrogenic cytokines/chemokines in the injured kidney. Taken together, these findings indicate that hyperuricemia-induced autophagy is critically involved in the activation of renal fibroblasts, EMT, mitochondrial fission and apoptosis of tubular epithelial cells and development of renal fibrosis. Thus, this study provides evidence for autophagy inhibitors as the treatment of HN patients."	"Chinese herbal medicine Baoyuan Jiedu decoction inhibits the accumulation of myeloid derived suppressor cells in pre-metastatic niche of lung via TGF-β/CCL9 pathway. Baoyuan Jiedu (BYJD for short) decoction, a traditional Chinese medicine formula, is composed of Astragalus, Ginseng, Aconite root, Honeysuckle, Angelica, Licorice, which has the functions of nourishing qi and blood, enhancing immune function, improving quality of life and prolonging survival time of tumor patients. The present study aimed to investigate the effect and mechanism of BYJD decoction on reversing the pre-metastatic niche. We showed that BYJD decoction could prolong the survival time of 4T1 tumor-bearing mice. Moreover, we found that the BYJD decoction inhibited the formation of lung pre-metastatic niche and inhibited recruitment of myeloid derived suppressor cells (MDSCs) in the lung. Mechanistically, we showed that the proteins and genes expression of TGF-β, Smad2, Smad3, p-Smad2/3, Smad4, CCL9 in the TGF-β/CCL9 signaling pathway were suppressed by BYJD decoction. In line with the above findings, our results confirm that BYJD decoction inhibits the accumulation of MDSC in pre-metastatic niche of lung via TGF-β/CCL9 pathway."	"Quantitative and network pharmacology: A case study of rhein alleviating pathological progress of renal interstitial fibrosis. The current network pharmacology model focuses mainly on static and qualitative characterisation between drugs and targets or molecular pathway networks, but it does not reflect the multi-scale, dynamic and quantitative process of drug action. In this study, we developed a new model known as quantitative and network pharmacology (QNP) to characterise the dynamic and quantitative interventions of drugs within a multi-scale biological network. Firstly, we used a systems biology method to construct a molecule-cell dynamic network model to simulate the pathological processes of diseases. Secondly, according to the principles of enzymatic kinetics, we generated a multi-scale drug intervention model to simulate the intervention of drugs in multi-scale networks at different concentrations and pathological stages. Finally, we took rhein treatment of renal interstitial fibrosis (RIF) as an example to illustrate the QNP model. We successfully constructed the a QNP model that includes both a multi-scale dynamic network disease model and drug intervention model. The QNP model accurately simulated the pathological process of RIF, and the simulation results were validated by a series of cell and animal experiments. Meanwhile, the QNP model demonstrated that rhein can delay the pathological process at the studied concentrations of 5 nM, 10 nM, and 20 nM, and can also exert a better therapeutic effect on fibrosis before the proliferation stage of RIF. Furthermore, through uncertainty and sensitivity analysis, we identified that FAK and Smad3 may be potential targets for RIF. Our QNP model provides a molecular-cellular understanding of the pathological mechanisms of RIF, serving as a new approach and strategy for the construction of dynamic multi-scale network model of diseases and drug intervention."	"Metformin attenuates TGF-β1-induced pulmonary fibrosis through inhibition of transglutaminase 2 and subsequent TGF-β pathways. The purpose of this study was to confirm whether metformin can attenuate TGF-β1-induced pulmonary fibrosis through inhibition of transglutaminase 2 (TG2) and subsequent TGF-β pathways. In vitro, MTT assay and Annexin V-FITC/PI staining assay were performed to determine the effect of metformin on the proliferation and apoptosis of human fetal lung fibroblasts (HFL-1 cell). Protein expression of TG2, Collagen I (Col I) and α-smooth muscle actin (α-SMA) were determined by western blot. To further confirm the relationship between TG2 and the anti-fibrotic effect of metformin, TG2 siRNA and TG2 overexpression plasmid were used to interfere the expression of TG2. A bleomycin-induced pulmonary fibrosis model was employed to determine the in vivo inhibitory effect of metformin. The concentrations of TG2, both in supernatants of cells and serum of rats, were determined by ELISA assay. Our results showed that metformin concentration-dependently inhibited the proliferation and promoted the apoptosis of TGF-β1-stimulated HFL-1 cells. The protein expressions of TG2, Col I and α-SMA stimulated by TGF-β1 were decreased after metformin intervention, which was confirmed in both siRNAs and plasmids treatment conditions. In vivo, metformin attenuated bleomycin-induced pulmonary fibrosis as demonstrated by H&amp;E and Masson staining, as well as the protein expressions of Col I and α-SMA. Besides, phosphorylated SMAD2, phosphorylated SMAD3, phosphorylated Akt and phosphorylated ERK1/2 were all significantly increased after bleomycin treatment and decreased to normal levels after metformin intervention. Taken together, our results demonstrated that metformin can attenuate TGF-β1-induced pulmonary fibrosis, at least partly, through inhibition of TG2 and subsequent TGF-β pathways."	"Alisol B 23-acetate attenuates CKD progression by regulating the renin-angiotensin system and gut-kidney axis. Increasing evidence suggests a link between the gut microbiome and various diseases including hypertension and chronic kidney disease (CKD). However, studies examining the efficacy of controlling blood pressure and inhibiting the renin-angiotensin system (RAS) in preventing CKD progression are limited. In the present study, we used 5/6 nephrectomised (NX) and unilateral ureteral obstructed (UUO) rat models and cultured renal tubular epithelial cells and fibroblasts to test whether alisol B 23-acetate (ABA) can attenuate renal fibrogenesis by regulating blood pressure and inhibiting RAS. ABA treatment re-established dysbiosis of the gut microbiome, lowered blood pressure, reduced serum creatinine and proteinuria, suppressed expression of RAS constituents and inhibited the epithelial-to-mesenchymal transition in NX rats. Similarly, ABA treatment inhibited expression of collagen I, fibronectin, vimentin, α-smooth muscle actin and fibroblast-specific protein 1 at both mRNA and protein levels in UUO rats. ABA was also effective in suppressing activation of the transforming growth factor-β (TGF-β)/Smad3 and preserving Smad7 expression in both NX and UUO rats. In vitro experiments demonstrated that ABA treatment inhibited the Wnt/β-catenin and mitochondrial-associated caspase pathways. These data suggest that ABA attenuated renal fibrosis through a mechanism associated with re-establishing dysbiosis of the gut microbiome and regulating blood pressure, and Smad7-mediated inhibition of Smad3 phosphorylation. Thus, we demonstrate ABA as a promising candidate for treatment of CKD by improving the gut microbiome and regulating blood pressure."	"RAC1B Induces SMAD7 via USP26 to Suppress TGFβ1-Dependent Cell Migration in Mesenchymal-Subtype Carcinoma Cells. The small GTPase RAC1B has been shown to act as a powerful inhibitor of the transforming growth factor (TGF)β type I receptor ALK5 and TGFβ1/ALK5-induced epithelial-mesenchymal transition and cell motility. However, the precise mechanism has remained elusive. RNAi-mediated knockdown of RAC1B in the pancreatic ductal adenocarcinoma (PDAC)-derived cell line Panc1 failed to alter transcriptional activity from a transfected ALK5 promoter-reporter construct. In contrast, pharmacological inhibition of the proteasome decreased the abundance of ALK5 protein in cell lines of the mesenchymal subtype (Panc1, IMIM-PC-1, and breast cancer MDA-MB-231), but not in a PDAC cell line of the epithelial subtype (Colo357). Here, we focused on the inhibitory Smad protein, SMAD7, as a potential candidate for RAC1B-mediated inhibition of cell migration. In Panc1 cells devoid of RAC1B, SMAD7 protein was dramatically reduced and these cells were refractory to TGFβ1-induced upregulation of SMAD7 protein but not mRNA expression. Intriguingly, RNAi-mediated knockdown or ectopic overexpression of SMAD7 in Panc1 cells up- or downregulated, respectively, ALK5 protein expression and mimicked the suppressive effect of RAC1B on TGFβ/SMAD3-dependent transcriptional activity, target gene expression and cell migration. Transfection of SMAD7 was further able to partially rescue cells from the RAC1B knockdown-mediated increase in migratory properties. Conversely, knockdown of SMAD7 was able to partially rescue Panc1 and MDA-MB-231 cells from the antimigratory effect of ectopically expressed RAC1B. Finally, we demonstrate that RAC1B upregulation of SMAD7 protein requires intermittent transcriptional induction of the deubiquitinating enzyme USP26. Our data suggest that RAC1B induces SMAD7 by promoting its deubiquitination and establishes this Smad as one of RAC1B's downstream effectors in negative regulation of ALK5 and TGFβ1-induced cell migration in mesenchymal-type carcinoma cells."	"[Effects of maslinic acid on isoproterenol-induced myocardial fibrosis in mice]. Objective: To investigate the effect of maslinic acid (MA) on isoproterenol (ISO)-induced myocardial fibrosis in mice. Methods: ISO was used to induce myocardial fibrosis in adult male C57BL/6 mice, and MA was administered for two weeks to detect the effects of MA on cardiac function and fibrosis. Molecular changes of fibrosis markers and signaling pathways were detected by RT-PCR and western blotting. Phosphate buffer saline (PBS), PBS+SB203580 (p38 MAPK inhibitor), PBS+MA, ISO, ISO+SB203580, ISO+MA were added to the primary cultured rat fibroblasts. Cells were collected after 48 h for subsequent detection. Results: In this study, the mouse model of myocardial fibrosis was successfully established. The left ventricular faction shortening (FS) and maximum rate of rise and maximum rate of fall of pressure in left ventricular chamber (±dp/dt) of the ISO+MA group were significantly higher than those of the ISO group ((35.1±1.8)% vs (28.5±2.6)%, (7 256±153) mmHg/s vs (6 402±240) mmHg/s, (7 156±163) mmHg/s vs (6 319±219) mmHg/s, all P&lt;0.05). The levels of interstitial and perivascular collagen deposition in the ISO+MA group were higher than those in the ISO group (P&lt;0.05), the relative mRNA levels of COL-1, COL-3 and TGF-β in the ISO+MA group were significantly lower than those in the ISO group, with the relative expression levels of 1.70±0.24 vs 3.69±0.34, 1.72±0.56 vs 4.84±0.82, 1.52±0.19 vs 2.64±0.29, respectively (all P&lt;0.05). The phosphorylation levels of p38 MAPK, Smad3 and protein expression level of TGF-β1 in ISO+MA group were lower than those in ISO group (relative expression levels were 1.67±0.35 vs 2.61±0.58, 1.68±0.23 vs 2.52±0.19,1.56±0.15 vs 2.48±0.26, respectively, all P&lt;0.05). The results of in vitro cell experiments showed that the mRNA levels of COL-1, COL-3 and TGF-β in the SB203580 and MA groups were significantly lower than those in the ISO group (relative expression levels were 2.25±0.51, 2.16±0.48 vs 5.29±1.21; 1.58±0.34, 1.69±0.29 vs 4.97±1.32; 1.41±0.31, 1.55±0.38 vs 3.53±0.56, respectively, all P&lt;0.05). The phosphorylation levels of p38 MAPK and Smad3 in the SB203580 MA groups was significantly lower than those in the ISO group, and the protein expression level of TGF-β1 was lower than that in the ISO group (1.81±0.18, 1.77±0.16 vs 2.56±0.32; 1.85±0.21, 1.81±0.17 vs 2.48±0.37; 1.84±0.24, 1.72±0.17 vs 2.52±0.29, all P&lt;0.05). Conclusion: Maslinic acid can inhibit the phosphorylation of p38 MAPK, thereby preventing the canonical TGF-β1/Smads fibrosis signaling pathway to achieve an anti-fibrosis role. 目的: 探讨山楂酸(MA)对异丙肾上腺素(ISO)诱导的小鼠心肌纤维化的影响。 方法: 使用ISO诱导成年雄性C57BL/6小鼠心肌纤维化,MA给药2周,检测MA对心功能和纤维化的影响。RT-PCR和免疫印迹检测纤维化标志物和信号通路分子变化。将原代培养的大鼠成纤维细胞中分别加入磷酸缓冲盐溶液(PBS)、PBS+p38 MAPK抑制剂(SB203580)、PBS+MA、ISO、ISO+SB203580、ISO+MA。48 h后收集细胞进行后续检测。 结果: 本研究成功制备心肌纤维化小鼠模型,ISO+MA组的左心室短轴缩短率(FS)和左心室内压最大上升速率和最大下降速率(±dp/dt)显著高于ISO组[分别为(35.1±1.8)%比(28.5±2.6)%、(7 256±153)mmHg/s比(6 402±240)mmHg/s、(7 156±163)mmHg/s比(6 319±219)mmHg/s,P&lt;0.05];ISO+MA组间质和血管周胶原沉积程度高于ISO组(P&lt;0.05),ISO+MA组的COL-1、COL-3和TGF-β mRNA相对水平显著低于ISO组(1.70±0.24比3.69±0.34、1.72±0.56比4.84±0.82、1.52±0.19比2.64±0.29,P&lt;0.05);ISO+MA组的p38 MAPK和Smad3的磷酸化水平和TGF-β1蛋白表达水平低于ISO组(1.67±0.35比2.61±0.58、1.68±0.23比2.52±0.19、1.56±0.15比2.48±0.26,P&lt;0.05);体外细胞实验结果显示,p38 MAPK特异性抑制剂(SB203580)组和MA组的COL-1、COL-3、TGF-β mRNA水平均显著低于ISO组(分别为2.25±0.51,2.16±0.48比5.29±1.21;1.58±0.34,1.69±0.29比4.97±1.32;1.41±0.31,1.55±0.38比3.53±0.56,P&lt;0.05);SB203580组和MA组的p38 MAPK、Smad3的磷酸化水平均显著低于ISO组,TGF-β1的蛋白表达低于ISO组(分别为1.81±0.18,1.77±0.16比2.56±0.32;1.85±0.21,1.81±0.17比2.48±0.37;1.84±0.24,1.72±0.17比2.52±0.29,P&lt;0.05)。 结论: MA可抑制p38 MAPK的磷酸化,进而抑制经典的TGF-β1/Smads纤维化信号通路来发挥抗纤维化的作用。."	"Roxadustat attenuates experimental pulmonary fibrosis in vitro and in vivo. Roxadustat is the first orally administered, small-molecule hypoxia-inducible factor (HIF) prolyl hydroxylase inhibitor that has been submitted for FDA regulatory approval to treat anemia secondary to chronic kidney diseases. Its usage has also been suggested for pulmonary fibrosis; however, the corresponding therapeutic effects remain to be investigated. The in vitro effects of roxadustat on cobalt chloride (CoCl2)-stimulated pulmonary fibrosis with L929 mouse fibroblasts as well as on an in vivo pulmonary fibrosismice model induced with bleomycin (BLM; intraperitoneal injection, 50 mg/kg twice a week for 4 continuous weeks) were investigated. It found that the proliferation of L929 cells was inhibited and the production of collagen I, collagen III, prolyl hydroxylase domain protein 2 (PHD2), HIF-1α, α-smooth muscle actin (α-SMA), connective tissue growth factor (CTGF), transforming growth factor-β1 (TGF-β1) and p-Smad3 were reduced relative to that in the CoCl2 or BLM group after roxadustat treatment. Roxadustat ameliorated pulmonary fibrosis by reducing the pathology score and collagen deposition as well as decreasing the expression of collagen I, collagen III, PHD2, HIF-1α, α-SMA, CTGF, TGF-β1 and p-Smad3/Smad3. Our cumulative results demonstrate that roxadustat administration can attenuate experimental pulmonary fibrosis via the inhibition of TGF-β1/Smad activation."	"Role of phosphorylated Smad3 signal components in intraductal papillary mucinous neoplasm of pancreas. Malignant intraductal papillary mucinous neoplasm (IPMN) has poor prognosis. The carcinogenesis of IPMN is not clear. The aim of this study was to clarify transitions in phosphorylated Smad3 signaling during IPMN carcinogenesis. By using immunohistochemistry, we examined the expression of pSmad3C and pSmad3L from 51 IPMN surgical specimens resected at our institution between 2010 and 2013. We also examined the expression of Ki-67, c-Myc and p-JNK. The median immunostaining index of pSmad3C was 79.2% in low-grade dysplasia, 74.9% in high-grade dysplasia, and 42.0% in invasive carcinoma (P &lt;0.01), whereas that of pSmad3L was 3.4%, 4.3%, and 42.4%, respectively (P &lt;0.01). There was a negative relationship between the expression of pSmad3C and c-Myc (P&lt;0.001, r = -0.615) and a positive relationship between the expression of pSmad3L and c-Myc (P&lt;0.001, r = 0.696). Negative relationship between the expression of pSmad3C and Ki-67 (P&lt;0.01, r = -0.610) and positive relationship between the expression of pSmad3L and Ki-67 (P&lt;0.01, r = 0.731) were confirmed. p-JNK-positive cells were frequently observed among pSmad3L-positive cancer cells. The median of pSmad3L/pSmad3C ratio in the non-recurrence group and the recurrence group were 0.58 (range, 0.05-0.93), 3.83 (range, 0.85-5.96), respectively (P = 0.02). The median immunostaining index of c-Myc in the non-recurrence group and the recurrence group were 2.91 (range, 0-36.9) and 82.1 (range, 46.2-97.1), respectively (P = 0.02). The median immunostaining index of Ki-67 in the non-recurrence group and the recurrence group were 12.9 (range 5.69-30.8) and 90.9 (range 52.9-98.5), respectively (P = 0.02). pSmad3L was upregulated in malignant IPMN. pSmad3L/pSmad3C ratio may be a useful prognostic factor in IPMN."	"The Follistatin-like Protein 1 Pathway Is Important for Maintaining Healthy Articular Cartilage. We sought to determine whether follistatin-like protein 1 (FSTL1), a protein produced by articular chondrocytes, promotes healthy articular cartilage and prevents chondrocytes from undergoing terminal differentiation to hypertrophic cells. In vitro experiments were performed with immortalized human articular chondrocytes. The cells were transduced with a lentivirus encoding human FSTL1 small hairpin RNA or with an adenovirus encoding FSTL1. A quantitative polymerase chain reaction was used for gene expression analysis. Protein expression was assessed by Western blotting. Co-immunoprecipitation was used to identify interacting partners of FSTL1. FSTL1 expression in human articular cartilage was analyzed using confocal microscopy. Downregulation of FSTL1 expression in transforming growth factor β (TGFβ)-stimulated chondrocyte pellet cultures led to chondrocyte terminal differentiation characterized by poor production of cartilage extracellular matrix and altered expression of genes and proteins involved in cartilage homeostasis, including MMP13, COL10A1, RUNX2, COL2A1, ACAN, Sox9, and phospho-Smad3. We also showed that FSTL1 interacts with TGFβ receptor proteins, Alk1 and endoglin, suggesting a potential mechanism for its effects on chondrocytes. Transduction of chondrocytes with an FSTL1 transgene increased COL2A1 expression, whereas it did not affect MMP13 expression. FSTL1 protein expression was decreased in human osteoarthritic cartilage in situ. Our data suggest that FSTL1 plays an important role in maintaining healthy articular cartilage and the FSTL1 pathway may represent a therapeutic target for degenerative diseases of cartilage."	"Identification of a Pathogenic TGFBR2 Variant in a Patient With Loeys-Dietz Syndrome. Loeys-Dietz syndrome (LDS) is a rare connective tissue genetic disorder that is caused by a pathogenic variant in genes of transforming growth factor (TGF) beta receptor 1 (TGFBR1), TGFBR2, mothers against decapentaplegic homolog 2 (SMAD2), SMAD3, TGFB2, or TGFB3. It is characterized by aggressive vascular pathology, aneurysms, arterial tortuosity, bifid uvula, hypertelorism, and cleft palate. Here we present a 42-year-old female patient with LDS. The patient underwent rapidly progressing artery aneurysms and life-threatening aortic dissection. Spontaneous fracture of the first metatarsal bone was noted in her medical record. Physical examination revealed a delayed wound healing on her left abdomen. Considering these clinical manifestations, we speculated that there was a genetic defect in the connective tissue, which provides strength and flexibility to structures such as bones, skins, ligaments, and blood vessels. Thus, whole exome sequencing (WES) was performed on the proband and revealed a heterozygous missense pathogenic variant (c.1613T &gt; C/p.Val538Ala) in TGFBR2, which was a de novo variant in the proband as confirmed by the segregation analysis in parental samples. Although this variant was discovered and associated with the phenotype of LDS previously, the pathogenicity of the variant had not been confirmed by cellular functional assay yet. To further validate the effects of the variant in vitro, we assessed the canonical TGF-β signaling pathway in mutant cells. Our results showed that the p.Val538Ala variant significantly decreased TGF-β-induced gene transcription and the phosphorylation of Smad2, which were consistent with other pathogenic variants of TGFBR2. In conclusion, this study demonstrates that the p.Val538Ala pathogenic variant in TGFBR2 leads to aberrant TGF-β signaling and LDS in this patient."	"Curcumin blunts epithelial-mesenchymal transition of hepatocytes to alleviate hepatic fibrosis through regulating oxidative stress and autophagy. The massive production and activation of myofibroblasts (MFB) is key to the development of liver fibrosis. In many studies, it has been proven that hepatocytes are an important part of MFB, and can be transformed into MFB through epithelial-mesenchymal transition (EMT) during hepatic fibrogenesis. In our previous study, we confirmed that curcumin inhibited EMT procession and differentiation of hepatocytes into MFB. In addition, in previous studies, it has been shown that autophagy plays an important role in the regulation of cellular EMT procession. In the current study, we showed that curcumin inhibited TGF-β/Smad signaling transmission by activating autophagy, thereby inhibiting EMT. The mechanism of degradative polyubiquitylation of Smad2 and Smad3 is likely through inhibiting tetratricopeptide repeat domain 3 (TTC3) and by inducing ubiquitylation and proteasomal degradation of Smad ubiquitination regulatory factor 2 (SMURF2), which on account of the increase of autophagy in hepatocytes. Curcumin inhibits levels of reactive oxygen species (ROS) and oxidative stress in hepatocytes by activating PPAR-α, and regulates upstream signaling pathways of autophagy AMPK and PI3K/AKT/mTOR, leading to an increase of the autophagic flow in hepatocytes. In this study, we confirm that curcumin effectively reduced the occurrence of EMT in hepatocytes and inhibited production of the extracellular matrix (ECM) by activating autophagy, which provides a potential novel therapeutic strategy for hepatic fibrosis."	"BMP-6 and SMAD4 gene expression is altered in cumulus cells from women with endometriosis-associated infertility. Oocyte competence and quality depend on communication between the oocyte and the cumulus and theca cells. In the preantral phase, the members of the transforming growth factor β (TGF-β) superfamily are responsible for this communication and play an important role in folliculogenesis. Members of the TGF-β superfamily are related to endometriosis (overexpression in the ectopic endometrium); however, few studies have explored these proteins as influencing fertility in endometriosis. Considering endometriosis-related infertility and to better understand the role of the TGF-β superfamily members in the antral phase in women with endometriosis, this research investigated the gene expression of the genes for ligands AMH, BMP-6, GDF-9, INHA, INHBB, and TGFβ3; receptors AMHR2, BMPR2, and TGFβR3; and intracellular signalling: SMAD3 and SMAD4. The gene expression of AMH, BMP-6, GDF-9, INHA, INHBB, TGFβ3, AMHR2, BMPR2, TGFβR3, SMAD3, and SMAD4 in cumulus cells was investigated through quantitative real-time PCR in a case-control study including infertile women with and without peritoneal endometriosis undergoing in vitro fertilization. Age and outcomes of assisted reproduction were similar between the groups (P &gt; .05). However, women with endometriosis showed reduced expression of BMP-6 and SMAD4 (P &lt; .05) in cumulus cells compared with the control group, other genes did not present altered gene expression in women with endometriosis (P &gt; .05). The reduced expression of BMP-6 and SMAD4 in women with peritoneal endometriosis compared with the control group indicates that granulosa (cumulus) cell function could be altered in these women."	"Paclitaxel inhibits transforming growth factor-β-increased urokinase-type plasminogen activator expression through p38 MAPK and RAW 264.7 macrophage migration. Transforming growth factor-β (TGF-β) induces alternative macrophage activation that favors tumor progression and immunosuppression. Meanwhile, paclitaxel (PTx) induces macrophage (Mφ) polarization towards antitumor phenotype. TGF-β also increases tumor stroma macrophage recruitment by mechanisms that include cell motility enhancement and extracellular matrix degradation. In this study, we aimed to determine whether PTx regulates macrophage migration and urokinase-type plasminogen activator (uPA) expression induced by TGF-β. We used mouse macrophage RAW 264.7 cells treated with PTx and TGF-β combinations. Proliferation was analyzed by MTT and cell cycle assays. Immunofluorescence was performed to determine tubulin cytoskeleton and Smad3 nuclear localization. Western blot and transcriptional luciferase reporters were used to measure signal transduction activation. Migration was determined by wound healing assay. uPA activity was determined by zymography assay. PTx decreased RAW 264.7 cell proliferation by inducing G2/M cell cycle arrest and profoundly modified the tubulin cytoskeleton. Also, PTx inhibited TGF-β-induced Smad3 activation. Furthermore, PTx decreased cell migration and uPA expression stimulated by TGF-β. Remarkably, p38 MAPK mediated PTx inhibition of uPA activity induced by TGF-β but it was not implicated on cell migration inhibition. PTx inhibits TGF-β induction of mouse Mφ migration and uPA expression, suggesting that PTx, as TGF-β targeting therapy, may enhance Mφ anticancer action within tumors."	"SIRT7-mediated modulation of glutaminase 1 regulates TGF-β-induced pulmonary fibrosis. In the current work we show that the profibrotic actions of TGF-β are mediated, at least in part, through a metabolic maladaptation in glutamine metabolism and how the inhibition of glutaminase 1 (GLS1) reverses pulmonary fibrosis. GLS1 was found to be highly expressed in fibrotic vs normal lung fibroblasts and the expression of profibrotic targets, cell migration, and soft agar colony formation stimulated by TGF-β required GLS1 activity. Moreover, knockdown of SMAD2 or SMAD3 as well as inhibition of PI3K, mTORC2, and PDGFR abrogated the induction of GLS1 by TGF-β. We further demonstrated that the NAD-dependent protein deacetylase, SIRT7, and the FOXO4 transcription factor acted as endogenous brakes for GLS1 expression, which are inhibited by TGF-β. Lastly, administration of the GLS1 inhibitor CB-839 attenuated bleomycin-induced pulmonary fibrosis. Our study points to an exciting and unexplored connection between epigenetic and transcriptional processes that regulate glutamine metabolism and fibrotic development in a TGF-β-dependent manner."	"Embryonic Program Activated during Blast Crisis of Chronic Myelogenous Leukemia (CML) Implicates a TCF7L2 and MYC Cooperative Chromatin Binding. Chronic myeloid leukemia (CML) is characterized by an inherent genetic instability, which contributes to the progression of the disease towards an accelerated phase (AP) and blast crisis (BC). Several cytogenetic and genomic alterations have been reported in the progression towards BC, but the precise molecular mechanisms of this event are undetermined. Transcription Factor 7 like 2 (TFC7L2) is a member of the TCF family of proteins that are known to activate WNT target genes such as Cyclin D1. TCF7L2 has been shown to be overexpressed in acute myeloid leukemia (AML) and represents a druggable target. We report here that TCF7L2 transcription factor expression was found to be correlated to blast cell numbers during the progression of the disease. In these cells, TCF7L2 CHIP-sequencing highlighted distal cis active enhancer, such as elements in SMAD3, ATF5, and PRMT1 genomic regions and a proximal active transcriptional program of 144 genes. The analysis of CHIP-sequencing of MYC revealed a significant overlapping of TCF7L2 epigenetic program with MYC. The β-catenin activator lithium chloride and the MYC-MAX dimerization inhibitor 10058-F4 significantly modified the expression of three epigenetic targets in the BC cell line K562. These results suggest for the first time the cooperative role of TCF7L2 and MYC during CML-BC and they strengthen previous data showing a possible involvement of embryonic genes in this process."	"The testis protein ZNF165 is a SMAD3 cofactor that coordinates oncogenic TGFβ signaling in triple-negative breast cancer. Cancer/testis (CT) antigens are proteins whose expression is normally restricted to germ cells yet aberrantly activated in tumors, where their functions remain relatively cryptic. Here we report that ZNF165, a CT antigen frequently expressed in triple-negative breast cancer (TNBC), associates with SMAD3 to modulate transcription of transforming growth factor β (TGFβ)-dependent genes and thereby promote growth and survival of human TNBC cells. In addition, we identify the KRAB zinc finger protein, ZNF446, and its associated tripartite motif protein, TRIM27, as obligate components of the ZNF165-SMAD3 complex that also support tumor cell viability. Importantly, we find that TRIM27 alone is necessary for ZNF165 transcriptional activity and is required for TNBC tumor growth in vivo using an orthotopic xenograft model in immunocompromised mice. Our findings indicate that aberrant expression of a testis-specific transcription factor is sufficient to co-opt somatic transcriptional machinery to drive a pro-tumorigenic gene expression program in TNBC."	"Astragaloside IV attenuates high glucose-induced EMT by inhibiting the TGF-β/Smad pathway in renal proximal tubular epithelial cells. In the present study, we examined the molecular mechanism of astragaloside IV (AS-IV) in high glucose (HG)-induced epithelial-to-mesenchymal transition (EMT) in renal proximal tubular epithelial cells (PTCs). NRK-52E cell viability and apoptosis were determined by the cell counting kit-8 (CCK-8) assay and flow cytometric analysis, respectively. Expressions of E-cadherin, N-cadherin, vimentin, and occludin were measured by Western blot, and those of E-cadherin and N-cadherin were additionally measured by immunofluorescence analysis. Transforming growth factor-β1 (TGF-β1) and α-smooth muscle actin (α-SMA) expressions were detected by quantitative real-time polymerase chain reaction (qRT-PCR) and Western blot. The expressions of Smad2, Smad3, phosphorylated-Smad2 (p-Smad2), and p-Smad3 were measured using Western blot. We found that AS-IV could recover NRK-52E cell viability and inhibit HG-induced cell apoptosis. TGF-β1, α-SMA, Smad2, Smad3, p-Smad2, and p-Smad3 expressions were decreased in the AS-IV-treated groups compared with the HG group. Moreover, the expressions of E-cadherin and occludin were remarkably up-regulated and those of N-cadherin and vimentin were down-regulated in the AS-IV-treated groups compared with the HG group. Interestingly, the TGF-β1 activator SRI-011381 hydrochloride had an antagonistic effect to AS-IV on HG-induced EMT behavior. In conclusion, AS-IV attenuates HG-induced EMT by inhibiting the TGF-β/Smad pathway in renal PTCs."	"Molecular mechanisms of coronary disease revealed using quantitative trait loci for TCF21 binding, chromatin accessibility, and chromosomal looping. To investigate the epigenetic and transcriptional mechanisms of coronary artery disease (CAD) risk, as well as the functional regulation of chromatin structure and function, we create a catalog of genetic variants associated with three stages of transcriptional cis-regulation in primary human coronary artery vascular smooth muscle cells (HCASMCs). We use a pooling approach with HCASMC lines to map regulatory variants that mediate binding of the CAD-associated transcription factor TCF21 with ChIPseq studies (bQTLs), variants that regulate chromatin accessibility with ATACseq studies (caQTLs), and chromosomal looping with Hi-C methods (clQTLs). We examine the overlap of these QTLs and their relationship to smooth muscle-specific genes and transcription factors. Further, we use multiple analyses to show that these QTLs are highly associated with CAD GWAS loci and correlate to lead SNPs where they show allelic effects. By utilizing genome editing, we verify that identified functional variants can regulate both chromatin accessibility and chromosomal looping, providing new insights into functional mechanisms regulating chromatin state and chromosomal structure. Finally, we directly link the disease-associated TGFB1-SMAD3 pathway to the CAD-associated FN1 gene through a response QTL that modulates both chromatin accessibility and chromosomal looping. Together, these studies represent the most thorough mapping of multiple QTL types in a highly disease-relevant primary cultured cell type and provide novel insights into their functional overlap and mechanisms that underlie these genomic features and their relationship to disease risk."	"Activation of Nrf2/AREs-mediated antioxidant signalling, and suppression of profibrotic TGF-β1/Smad3 pathway: a promising therapeutic strategy for hepatic fibrosis - A review. Hepatic fibrosis (HF) is a wound-healing response that occurs during chronic liver injury and features by an excessive accumulation of extracellular matrix (ECM) components. Activation of hepatic stellate cell (HSC), the leading effector in HF, is responsible for overproduction of ECM. It has been documented that transforming growth factor-β1 (TGF-β1) stimulates superfluous accumulation of ECM and triggers HSCs activation mainly via canonical Smad-dependent pathway. Also, the pro-fibrogenic TGF-β1 is correlated with generation of reactive oxygen species (ROS) and inhibition of antioxidant mechanisms. Moreover, involvement of oxidative stress (OS) can be clearly elucidated as a fundamental event in liver fibrogenesis. Nuclear factor erythroid 2-related factor 2-antioxidant response elements (Nrf2-AREs) pathway, a group of OS-mediated transcription factors with diverse downstream targets, is associated with the induction of diverse detoxifying enzymes and the most pivotal endogenous antioxidative system. More specifically, Nrf2-AREs pathway has recently assigned as a new therapeutic target for cure of HF. The overall goal of this review will focus on recent findings about activation of Nrf2-AREs-mediated antioxidant and suppression of profibrotic TGF-β1/Smad3 pathway in the liver, providing an overview of recent advances in transcriptional repressors that dislocated during HF formation, and highlighting possible novel therapeutic targets for liver fibrosis."	"Chrysophanol ameliorates renal interstitial fibrosis by inhibiting the TGF-β/Smad signaling pathway. Renal interstitial fibrosis (RIF) is a major pathological feature of chronic kidney disease at middle and end stages. Chrysophanol (CP), 1,8-dihydroxy-3-methyl-9,10-anthraquinone, is an anthraquinone isolated from Rheum palmatum L. with a variety of pharmacological activities including the suppression of RIF. However, the effect of CP on renal fibrosis and its potential mechanism have not been elucidated. We conducted a comprehensive study by determining the expression levels of fibrotic markers and proteins including TGF-β1, α-SMA, and Smad3 related to transforming growth factor-beta/Smad (TGF-β/Smad) pathway in unilateral ureteral obstruction (UUO) mice and TGF-β1-stimulated HK-2 cells with the treatment of CP using western blotting and RT-qPCR analyses. Using small interfering RNA and co-immunoprecipitation, we evaluated the influences of CP on the interactions between Smad3 and Smad7 proteins and also on TGF-β RI and TGF-βR II. We found that CP administration significantly ameliorated UUO-induced kidney damage by reversing abnormal serum and urine biochemical parameters and decreasing the production of fibrotic markers including collagen I, collagen III, fibronectin, and α-SMA. Our results showed that TGF-β1 and phospho-Smad3 (p-Smad3) expression was significantly down-regulated and Smad7 expression was up-regulated by CP in UUO mice compared to the model group; however, the expression of Smad2, Smad4, and TGF-β receptors was not affected. Furthermore, CP modulated these fibrotic markers as well as p-Smad3 and Smad7 in TGF-β1-induced HK-2 cells. The inhibitory effect of CP was markedly reduced in TGF-β1-treated HK-2 cells transfected with Smad3 siRNA. Additionally, co-immunoprecipitation analysis indicated that CP blocked the interaction between Smad3 and TGF-β receptor I to suppress p-Smad3 expression. These findings demonstrated that CP alleviated RIF by inhibiting Smad3 phosphorylation, which provides a molecular basis for a new drug candidate for the treatment of RIF."	"Characterization and Significance of Monocytes in Acute Stanford Type B Aortic Dissection. Acute aortic dissection (AAD) is one of the most common fatal diseases noted in vascular surgery. Human monocytes circulate in dynamic equilibrium and display a considerable heterogeneity. However, the role of monocytes in AAD remains elusive. In our recent study, we firstly obtained blood samples from 22 patients with Stanford type B AAD and 44 age-, sex-, and comorbidity-matched control subjects. And the monocyte proportions were evaluated by flow cytometry. Results showed that the percentage of total CD14<sup>+</sup> monocytes in the blood samples of Stanford AAD patients was increased significantly compared with that of normal volunteers (P &lt; 0.0005), and the absolute numbers of CD14<sup>bright</sup>CD16<sup>+</sup> and CD14<sup>bright</sup>CD16<sup>-</sup> monocytes both increased significantly regardless of the percentage of PBMC or CD14<sup>+</sup> cells, while CD14<sup>dim</sup>CD16<sup>+</sup> monocytes displayed the opposite tendency. However, the percentage of CD14<sup>+</sup> cells and its three subsets demonstrated no correlation with D-dimer (DD) and C-reactive protein (CRP). Then, blood mononuclear cell (PBMC) samples were collected by Ficoll density gradient centrifugation, followed with CD14<sup>+</sup> magnetic bead sorting. After the purity of CD14<sup>+</sup> cells was validated over 90%, AAD-related genes were concentrated in CD14<sup>+</sup> monocytes. There were no significant differences observed with regard to the mRNA expression levels of MMP1 (P = 0.0946), MMP2 (P = 0.3941), MMP9 (P = 0.2919), IL-6 (P = 0.4223), and IL-10 (P = 0.3375) of the CD14<sup>+</sup> monocytes in Stanford type B AAD patients compared with those of normal volunteers. The expression levels of IL-17 (P &lt; 0.05) was higher in Stanford type B AAD patients, while the expression levels of TIMP1(P&lt;0.05), TIMP2(P&lt;0.01), TGF-β1 (P &lt; 0.01), SMAD3 (P &lt; 0.01), ACTA2 (P &lt; 0.001), and ADAMTS-1 (P &lt; 0.001) decreased. The data suggested that monocytes might play an important role in the development of Stanford type B AAD. Understanding of the production, differentiation, and function of monocyte subsets might dictate future therapeutic avenues for Stanford type B AAD treatment and can aid the identification of novel biomarkers or potential therapeutic targets for decreasing inflammation in AAD."	"CDCA2 Inhibits Apoptosis and Promotes Cell Proliferation in Prostate Cancer and Is Directly Regulated by HIF-1α Pathway. Prostate cancer (PCa) is a major serious malignant tumor and is commonly diagnosed in older men. Identification of novel cancer-related genes in PCa is important for understanding its tumorigenesis mechanism and developing new therapies against PCa. Here, we used RNA sequencing to identify the specific genes, which are upregulated in PCa cell lines and tissues. The cell division cycle associated protein (CDCA) family, which plays a critical role in cell division and proliferation, is upregulated in the PCa cell lines of our RNA-Sequencing data. Moreover, we found that CDCA2 is overexpressed, and its protein level positively correlates with its histological grade, clinical stage, and Gleason Score. CDCA2 was further found to be upregulated and correlated with poor prognosis and patient survival in multiple cancer types in The Cancer Genome Atlas (TCGA) dataset. The functional study suggests that inhibition of CDCA2 will lead to apoptosis and lower proliferation in vitro. Silencing of CDCA2 also repressed tumor growth in vivo. Loss of CDCA2 affects several oncogenic pathways, including MAPK signaling. In addition, we further demonstrated that CDCA2 was induced in hypoxia and directly regulated by the HIF-1α/Smad3 complex. Thus, our data indicate that CDCA2 could act as an oncogene and is regulated by hypoxia and the HIF-1αpathway. CDCA2 may be a useful prognostic biomarker and potential therapeutic target for PCa."	"Melatonin ameliorates hyperglycaemia-induced renal inflammation by inhibiting the activation of TLR4 and TGF-β1/Smad3 signalling pathway. Melatonin (MT), a hormone secreted from the pineal gland, has beneficial effects on the development of diabetic nephropathy (DN). In our study, we aimed to determine the effects of melatonin on renal inflammation and fibrosis in diabetic nephropathy. In vivo, we evaluated the blood and urine indices of metabolic and renal function, renal inflammation and renal fibrosis in db/db mice after melatonin treatment. Melatonin treatment significantly decreased urinary albumin excretion and reduced the morphological changes in kidney. Additionally, Melatonin reduced the levels of inflammatory factors in kidney such as interleukin-1β, monocyte chemotactic protein-1 and active nuclear factor-κB though toll-like receptor 4 signaling pathway (TLR4). Melatonin also reduced collagen type IV, fibronectin, transforming growth factor-β1 (TGF-β1) and decreased the phosphorylation of Smad3 in the renal tissue. These results indicated that melatonin reduced the inflammation and fibrosis in diabetic nephropathy though TLR4 and TGF-β1/Smad3 signaling pathway. In vitro, melatonin treatment reduced the cell proliferation, inflammatory factors releasing, TLR4 and TGF-β1/Smad3 signaling pathway. Our findings indicated that melatonin may provide a new perspective intervention to halt the hyperglycemia-induced inflammatory response of DN."	"Hypoallergenic infant formula lacks transforming growth factor beta activity and has a lower anti-inflammatory activity than regular infant formula. Hypoallergenic formulas are recommended for infants who are not breastfed and cannot tolerate cow milk formulas due to allergy. These formulas are hydrolyzed to break down larger protein chains into shorter, easy-to-digest, and potentially less allergenic proteins. Hydrolysis, however, possibly occurs at the expense of the transforming growth factor beta (TGF-β) and anti-inflammatory activity that is inherent in regular formula. Our objective was to determine the TGF-β and the anti-inflammatory activity of commercially available hypoallergenic and regular formulas. Human gingival fibroblasts were incubated with reconstituted formulas followed by detection of TGF-β target genes and activation of Smad2/3 signaling. Gingival fibroblasts and the oral squamous cell carcinoma cell line HSC-2 were also exposed to formulas before adding interleukin (IL)1β and tumor necrosis factor (TNF)α to provoke expression of pro-inflammatory cytokines. For murine bone marrow-derived macrophages, pro-inflammatory cytokine expression was stimulated with saliva. Changes in p65 nuclear translocation and phosphorylation of smad3 and p38 were analyzed by immunostaining. Our study demonstrated that regular formula, but not hypoallergenic formula, enhanced the expression of TGF-β target genes IL11, PRG4, and NOX4 in gingival fibroblasts. Hypoallergenic formulas also failed to initiate nuclear translocation of Smad2/3 and phosphorylation of Smad3. Moreover, regular formulas were more potent than hypoallergenic formulas in reducing the expression of pro-inflammatory cytokines in gingival fibroblasts, HSC-2 epithelial cells, and murine bone marrow macrophages. Hypoallergenic and regular formulas had a similar capacity to reduce p65 nuclear translocation and phosphorylation of p38 in fibroblasts. These findings suggest that hypoallergenic formulas lack in vitro TGF-β activity and have a lower anti-inflammatory activity compared with regular formulas."	"FOXF1 ameliorates angiotensin II-induced cardiac fibrosis in cardiac fibroblasts through inhibiting the TGF-β1/Smad3 signaling pathway. Cardiac fibrosis is a pathological feature common to a variety of heart diseases such as myocardial infarction, arrhythmias, cardiomyopathies and heart failure. The molecular mechanism underlying the cardiac fibrosis is still unclear. Forkhead box F1 (FOXF1), a member of the forkhead transcription factor superfamily, plays critical roles in the development of hepatic fibrosis. However, whether FOXF1 is involved in the pathogenesis of cardiac fibrosis remains to be elucidated. The present study aimed to investigate the role of FOXF1 and its mechanisms in regulating cardiac fibrosis. The results demonstrated that FOXF1 was downregulated in Ang II-induced CFs. Overexpression of FOXF1 inhibited angiotensin II (Ang II)-induced proliferation, migration and oxidative stress in cardiac fibroblasts (CFs). Overexpression of FOXF1 also reduced the expression of alpha-smooth muscle actin (a-SMA) in Ang II-induced CFs, suggesting that overexpression of FOXF1 prevented the differentiation of CFs to myofibroblasts. Furthermore, the production of extracellular matrix (ECM) components including type I collagen and fibronectin were reduced by overexpression of FOXF1 in Ang II-induced CFs. Furthermore, overexpression of FOXF1 prevented Ang II-induced activation of transforming growth factor beta 1 (TGF-β1)/Smad3 pathway in CFs. In conclusion, the results of the present study indicated that FOXF1 acted as a key regulator of pathological cardiac fibrosis, and overexpression of FOXF1 ameliorated cardiac fibrosis by inhabiting the TGF-β1/Smad3 signaling pathway. These results indicated that FOXF1 may be a novel target for attenuating cardiac fibrosis."	"Inhibition of Smad3 promotes the healing of rotator cuff injury in a rat model. To investigate the effect of inhibiting transforming growth factor-β (TGF-β1)/Smad2/3 signaling on rotator cuff (RC) healing. A bilateral supraspinatus tendon detachment-repair model of Sprague-Dawley (SD) rats was utilized. A total of 120 SD rats were randomly assigned to six groups and each group received the subacromial injection of normal saline, empty vectors, or lentiviral vectors containing small interfering RNA against TGF-β1, Smad2, Smad3 at the bone-tendon junction. Biomechanical and histological analyses were performed to evaluate bone-tendon junction healing quality at 8 weeks after repair. Histologically, scar healing was found in all surgical groups. Animals with inhibited Smad3 exhibited better bone-tendon junction structures with higher density, parallel orientation, and collagen fiber continuity than other surgical group animals. Immunohistochemistry revealed that the protein expression level of collagen I in animals with inhibited Smad3 was more prominent compared with all other surgical groups. Biomechanically, Animals with inhibited Smad3 showed better results in the maximum load at 4, 6, and 8 weeks after surgery compared with other surgical groups. Besides, C3H10T1/2 (Smad3-) cells increased TT-D6 cell migration and tendon-associated genes expression (scleraxis, tenascin C, collagen I) in coculture system. We conclude that inhibition of Smad3 promotes RC tendon healing in the rat supraspinatus model."	"Exercise Partially Rejuvenates Muscle Stem Cells. Exercise has long been known to extend health and lifespan in humans and other mammals. However, typically exercise is thought to slow the loss of function that accompanies aging. Brett et al. have now shown that exercise restores functional competency to regenerate muscle stem cells (MuSCs) in mice as well as restore a significant portion of the transcriptional signature associated with young MuSCs. The mechanism involves the likely induction of plasma-borne factors that upregulate cell cycle regulator cyclin D1, which otherwise decreases with increasing age. Cyclin D1, in turn, through its noncanonical attenuation of TGF-beta/Smad3 signaling, helps maintain the regenerative capacity of MuSCs, which is lost as TGF-beta signaling increases with age. Interestingly, elevated levels of some proinflammatory regulators including NF-κB, TNF-alpha, and interleukin 6 (IL-6) are also reduced by exercise or ectopic expression of cyclin D1. Importantly, the rejuvenation is not complete, as Notch signaling, which also decreases with age, remains at old levels and the rejuvenative effect is not permanent: wearing off in ∼2 weeks after cessation of exercise. Understanding the limitations of the rejuvenative effect of exercise on MuSCs at the molecular level, including changes in the epigenome such as altered DNA methylation age, will be critical in developing more significant rejuvenative therapies including some for aged people wherein morbidities limit exercise."	"Network-based Transcriptome-wide Expression Study for Postmenopausal Osteoporosis. Menopause is a crucial physiological transition during a woman's life, and it occurs with growing risks of health issues like osteoporosis. To identify postmenopausal osteoporosis-related genes, we performed transcriptome-wide expression analyses for human peripheral blood monocytes (PBMs) using Affymetrix 1.0 ST arrays in 40 Caucasian postmenopausal women with discordant bone mineral density (BMD) levels. We performed multiscale embedded gene coexpression network analysis (MEGENA) to study functionally orchestrating clusters of differentially expressed genes in the form of functional networks. Gene sets net correlations analysis (GSNCA) was applied to assess how the coexpression structure of a predefined gene set differs in high and low BMD groups. Bayesian network (BN) analysis was used to identify important regulation patterns between potential risk genes for osteoporosis. A small interfering ribonucleic acid (siRNA)-based gene silencing in vitro experiment was performed to validate the findings from BN analysis. MEGENA showed that the &quot;T cell receptor signaling pathway&quot; and the &quot;osteoclast differentiation pathway&quot; were significantly enriched in the identified compact network, which is significantly correlated with BMD variation. GSNCA revealed that the coexpression structure of the &quot;Signaling by TGF-beta receptor complex pathway&quot; is significantly different between the 2 BMD discordant groups; the hub genes in the postmenopausal low and high BMD group are FURIN and SMAD3 respectively. With siRNA in vitro experiments, we confirmed the regulation relationship of TGFBR2-SMAD7 and TGFBR1-SMURF2. The present study suggests that biological signals involved in monocyte recruitment, monocyte/macrophage lineage development, osteoclast formation, and osteoclast differentiation might function together in PBMs that contribute to the pathogenesis of postmenopausal osteoporosis."	"Xiaoyaosan decoction alleviated rat liver fibrosis via the TGFβ/Smad and Akt/FoxO3 signaling pathways based on network pharmacology and transcriptomic analysis. Liver fibrosis is an outcome of many chronic liver diseases and often results in cirrhosis, liver failure, and even hepatocarcinoma. Xiaoyaosan decoction (XYS) as a classical Traditional Chinese Medicine (TCM) formula is used to liver fibrosis in clinical practice while its mechanism is unclear. The aim of this study was to investigate the anti-fibrosis effect of XYS and to explore the molecular mechanisms by combining network pharmacology and transcriptomic technologies. The carbon tetrachloride (CCl4)-induced liver fibrosis rat were treated with three doses of XYS. The liver fibrosis and function were evaluated by histopathological examination and serum biochemical detection. The fibrosis related protein a-SMA and collagen I were assessed by Western blot. Different expressed genes (DEGs) between XYS-treated group and model group were analysed. The herb-component-target network was constructed combined the network pharmacology. The predict targets and pathways were validated by in vitro and in vivo experiments. With XYS treatment, the liver function was significantly improved, and fibrotic changes were alleviated. The a-SMA and collagen I expression levels in the liver were also decreased in XYS-treated rats compared with CCl4 model rats. 108 active components and 42 targets from 8 herbs constituted herb-compound-target network by transcriptomics and network pharmacology analysis. The KEGG pathway and GO enrichment analyses showed that the FoxO, TGFβ, AMPK, MAPK, PPAR, and hepatitis B and C pathways were involved in the anti-fibrosis effects of XYS. In the liver tissues, p-FoxO3a and p-Akt expression levels were significantly increased in the CCl4 model group but decreased in the XYS-treated group. And TGFβ1/Smad pathway were verified in LX2 cells by inhibiting Smad3 activity. Our findings suggested that XYS markedly alleviated CCl4-induced liver fibrosis in histopathological and serum liver function analyses, and this effect may occur via the TGFβ1/Smad and Akt/FoxO signaling pathways."	"Chinese Dragon's Blood EtOAc Extract Inhibits Liver Cancer Growth Through Downregulation of Smad3. Hepatocellular carcinoma (HCC) is one of the most prevalent malignancies, which ranks the third leading cause of cancer-related death worldwide. The screening of anti-HCC drug with high efficiency and low toxicity from traditional Chinese medicine (TCM) has attracted more and more attention. As a TCM, Chinese dragon's blood has been used for the treatment of cardiovascular illness, gynecological illness, skin disorder, otorhinolaryngological illness, and diabetes mellitus complications for many years. However, the anti-tumor effect and underlying mechanisms of Chinese dragon's blood remain ill-defined. Herein we have revealed that Chinese dragon's blood EtOAc extract (CDBEE) obviously suppressed the growth of human hepatoma HepG2 and SK-HEP-1 cells. Moreover, CDBEE inhibited the migration and invasion of HepG2 and SK-HEP-1 cells. Additionally, CDBEE displayed good in vitro anti-angiogenic activity. Importantly, CDBEE treatment significantly blunted the oncogenic capability of HepG2 cells in nude mice. Mechanistically, CDBEE inhibited Smad3 expression in human hepatoma cells and tumor tissues from nude mice. Using RNA interference, we demonstrated that CDBEE exerted anti-hepatoma activity partially through down-regulation of Smad3, one of major members in TGF-β/Smad signaling pathway. Therefore, CDBEE may be a promising candidate drug for HCC treatment, especially for liver cancer with aberrant TGF-β/Smad signaling pathway."	"Astragalus polysaccharides protect renal function and affect the TGF-β/Smad signaling pathway in streptozotocin-induced diabetic rats. The objective was to observe the effects of Astragalus polysaccharides on diabetes and on regulation of the TGF-β/Smad signaling pathway. A type 2 diabetic rat model was established with a high-fat diet in combination with low-dose streptozotocin (35 mg/kg). Astragalus polysaccharides were applied as treatment intervention and changes in blood glucose and kidney morphology and function were assessed. Eight weeks after model establishment, kidney weight as a proportion of total weight (KW/TW) in the high-, medium-, and low-dose Astragalus polysaccharide groups was significantly lower than that in the model group, and the KW/TW value gradually decreased with increasing dose of polysaccharides in each treatment group. Fasting blood glucose in the low- and medium-dose Astragalus polysaccharide groups was numerically lower than that in the model group and fasting blood glucose in rats in the high-dose group was significantly lower than that in the model group. Levels of 24-hour urinary microalbumin, creatinine, blood urea nitrogen, collagens I, III, and IV, α-smooth muscle actin, transforming growth factor-β1, and Smad3 in Astragalus polysaccharide groups (all doses) were significantly lower than those in the model group. Astragalus polysaccharide significantly improved blood glucose and protected kidney function in a rat diabetes model."	"Exendin-4 Attenuates Remodeling in the Remote Myocardium of Rats After an Acute Myocardial Infarction by Activating β-Arrestin-2, Protein Phosphatase 2A, and Glycogen Synthase Kinase-3 and Inhibiting β-Catenin. This study tested if the protective anti-remodeling effect of GLP-1 agonist Exendin-4 after an acute myocardial infarction (MI) in rats involves inhibition of the Wnt1/β-catenin signaling pathway. Rats were divided into sham, sham + Exendin-4 (10 μg/day, i.p), MI, and MI + Exendin-4. MI was introduced to rats by permanent left anterior descending coronary artery (LAD) ligation. On day 7 post-infraction, MI rats showed LV dysfunction with higher serum levels of cardiac markers. Their remote myocardia showed increased mRNA and protein levels of collagen I/III with higher levels of reactive oxygen species (ROS) and inflammatory cytokines, as well as protein levels of Wnt1, phospho-Akt, transforming growth factor (TGF-β1), Smad, phospho-Smad3, α-SMA, caspase-3, and Bax. They also showed higher protein levels of phospho-glycogen synthase kinase-3β (p-GSK3β), as well as total, phosphorylated, and nuclear β-catenin with a concomitant decrease in the levels of cyclic adenosine monophosphate (cAMP), mRNA of manganese superoxide dismutase (MnSOD), and protein levels of Bcl-2, β-arrestin-2, and protein phosphatase-2 (PP2A). Administration of Exendin-4 to MI rats reduced the infarct size and reversed the aforementioned signaling molecules without altering protein levels of TGF-1β and Wnt1 or Akt activation. Interestingly, Exendin-4 increased mRNA levels of MnSOD, protein levels of β-arrestin-2 and PP2A, and β-catenin phosphorylation but reduced the phosphorylation of GSK3β and Smad3, and total β-catenin levels in the LV of control rats. Exendin-4 inhibits the remodeling in the remote myocardium of rats following acute MI by attenuating β-catenin activation and activating β-arrestin-2, PP2A, and GSK3β. Graphical Abstract A graphical abstract that illustrates the mechanisms by which Exendin-4 inhibits cardiac remodeling in remote myocardium of left ventricle MI-induced rats. Mechanisms are assumed to occur in the cardiomyocytes and/or other resident cells such as fibroblast. Β-catenin activation and nuclear translocation are associated with increased synthesis of inflammatory cytokines and transforming growth factor β-1 (TGF-β1). GSK3β is inhibited by phosphorylation at Ser<sup>9</sup>. Under normal conditions, β-catenin is degraded in the cytoplasm by the active GSK3β-dependent degradation complex (un-phosphorylated) which usually phosphorylates β-catenin at Ser<sup>33/37/</sup>Thr<sup>41</sup>. After MI, TGF-β1, and Wnt 1 levels are significantly increased, the overproduction of Wnt1 induces β-catenin stabilization and nuclear translocation through increasing the phosphorylation of disheveled (DVL) protein which in turn phosphorylates and inhibits GSK3β. TGF-β1 stimulates the phosphorylation of Smad-3 and subsequent nuclear translocation to activate the transcription of collage 1/III and α-smooth muscle actin (α-SMA). Besides, TGF-β1 stabilizes cytoplasmic β-catenin levels indirectly by phosphorylation of Akt at Thr<sup>308</sup>-induced inhibition of GSK3β by increasing phosphorylation of Ser<sup>9</sup>. Exendin-4, and possibly through G protein-coupled receptors (GPCRs), increases levels of cAMP and upregulates β-arrestin-2 levels. Both can result in a positive inotropic effect. Besides, β-arrestin-2 can stimulate PP2A to dephosphorylation Smad3 (inhibition) and GSK3β (activation), thus reduces fibrosis and prevents the activation of β-catenin and collagen deposition."	"Melatonin Ameliorates Renal Fibrosis Though the Inhibition of NF-κB and TGF-β1/Smad3 Pathways in db/db Diabetic Mice. To investigate the effects and molecular mechanism of melatonin (MT) on NF-κB and TGF-β/Smad3 signaling pathways in db/db diabetic mice. db/db diabetic mice were divided into five groups treated with melatonin at doses of 50, 100, 200 μg/kg, the urinary concentration was detected by ELISA, renal histology was observed in PAS paining. Mouse mesangial cells were divided into mannitol control group, normal control group, normal control + MT group, high glucose group, high glucose + different concentrations (10, 100, 1000) μmol/L MT group. The proliferation of mesangial cells was detected by EdU kit; the expression of NF-κBp65, ColⅣ and Fn were detected by laser confocal system; the concentrations and mRNA levels of ColⅣ and Fn were detected by ELISA and qRT-PCR. the expressions of ColⅣ, Fn, IκB, p-IκB, TGF-β1, Smad3 and p-Smad3 were detected by Western blot in renal tissues and mesangial cells. MT treatment could markedly improve the kidney histopathologic lesions. Compared with the db/m mice, 24 h urinary albumin excretion rate (UAER) and the expressions of ColIV, Fn, p-IκB/IκB, NF-κBp65, TGF-β1 and p-Smad3/Smad3 were decreased after melatonin treatment (p &lt;0.05). Compared with the control group, the proliferation function of mesangial cells in high glucose group was significantly enhanced, and the expressions of ColIV, Fn, p-IκB/IκB, NF-κBp65, TGF-β1 and p-Smad3/Smad3 in mesangial cells were significantly up-regulated (p &lt;0.05), and these changes were significantly lowered in MT treatment. Melatonin can inhibit renal inflammation and fibrosis by inhibiting the NF-κB and TGF-β1/Smad3 signaling pathways, and melatonin may be a promising therapeutic target in diabetic nephropathy."	"TGF-β1-mediated repression of SLC7A11 drives vulnerability to GPX4 inhibition in hepatocellular carcinoma cells. System xc<sup>-</sup> contributes to glutathione (GSH) synthesis and protects cells against ferroptosis by importing cystine and exchanging it with glutamate. Transforming growth factor β1 (TGF-β1) induces redox imbalance; however, its role in system xc<sup>-</sup> regulation remains poorly understood. The present study was the first to show that TGF-β1 repressed the protein and mRNA levels of xCT, a catalytic subunit of system xc<sup>-</sup>, in PLC/PRF/5, Huh7, Huh6, and HepG2 cells with an early TGF-β1 gene signature but not in SNU387, SNU449, SNU475, and SK-Hep1 cells with a late TGF-β1 gene signature. TGF-β1 treatment for 24 h reduced xCT expression in a dose-dependent manner but this TGF-β1-induced repression was blunted by pretreatment with a TGF-β1 receptor inhibitor. TGF-β1-mediated xCT repression was prevented by Smad3, but not Smad2 or Smad4, knockdown, whereas it was enhanced by Smad3 overexpression. TGF-β1 decreased GSH levels in control cells but not xCT-overexpressed cells. Furthermore, TGF-β1 increased reactive oxygen species (ROS) levels in PLC/PRF/5 cells and enhanced tert-butyl hydroperoxide-induced ROS levels in Huh7 cells; these changes were reversed by xCT overexpression. TGF-β1 treatment ultimately induced the ferrostatin-1- and deferoxamine-dependent lipid peroxidation after 2 days and 8 days in PLC/PRF/5 and Huh7 cells but not in SNU475 and SK-Hep1 cells. Pre-treatment of TGF-β1 for 2 days enhanced the reduction of cell viability induced by RSL3, a GSH peroxidase 4 (GPX4) inhibitor, in PLC/PRF/5 and Huh7 cells. In conclusion, TGF-β1 represses xCT expression via Smad3 activation and enhances lipid peroxidation in hepatocellular carcinoma cells with an early TGF-β1 signature, which would benefit from the targeting of GPX4."	"Immune gene expression profiles in high-grade urothelial carcinoma of the bladder: a NanoString study. The advent of immune checkpoint inhibitor therapy has proven beneficial in a subset of high-grade urothelial carcinomas (HGUC) of the bladder. Although treatment selection is currently largely determined by programmed death-ligand 1 (PD-L1) status, multiple factors in the immune system may modulate the host immune response to HGUC and immunotherapy. In this pilot study, we used a transcriptomic approach to identify the immune milieu associated with PD-L1 expression to enhance our understanding of the HGUC immune evasion network. The immune transcriptome of 40 HGUC cystectomy cases was profiled using the NanoString nCounter Human V.1.1 PanCancer Panel. All cases were assessed for associated PD-L1 status (SP263) using whole tissue sections. PD-L1 status was determined as high or low using 25% tumour and/or immune cell staining. The most significantly differentially expressed gene was PD-L1 messenger RNA (CD274), which strongly correlated with protein expression (r=0.720, p&lt;0.001). The sensitivity, specificity, positive and negative predictive values of CD274 for PD-L1 expression were 85%, 96%, 92% and 93%, respectively. The PD-L1 associated gene signature also included complement components C1QA and CD46 and NOD2 (innate immune system), proinflammatory cytokines CXCL14, CXCL16, CCL3, CCL3L1 and OSM along with the immune response mediator SMAD3, among others. Pathway analysis determined enrichment of these genes in interleukin-10 production, lymphocyte chemotaxis and aberrant IFNγ, NF-κB and ERK signalling networks. We report key genes and pathways in the immune transcriptome and their association with PD-L1 status, which may be involved in immune evasion of HGUC and warrants further investigation."	"Atorvastatin attenuates TGF‑β1‑induced fibrogenesis by inhibiting Smad3 and MAPK signaling in human ventricular fibroblasts. Excessive proliferation and myofibroblasts transformation of cardiac fibroblasts play a critical role in the process of cardiac fibrosis. Atorvastatin (ATV), a 3‑hydroxy‑3‑methyl‑glutaryl‑coenzyme A reductase inhibitor, is commonly used to treat hypercholesterolemia. It has previously been shown that ATV has potential anti‑fibrotic effects. However, the underlying mechanisms of ATV against cardiac fibrosis remain to be fully elucidated, and to the best of our knowledge, there are no reports focusing on the effects of ATV on transforming growth factor‑β1 (TGF‑β1)‑induced human ventricular fibroblasts (hVFs) activation. In the present study, hVFs were stimulated with TGF‑β1 with or without pretreatment with ATV. Subsequently, hVF proliferation, cytotoxicity, myofibroblast differentiation and pro‑fibrotic gene expression were assessed. Canonical and non‑canonical signaling downstream of TGF‑β1, such as Smad3 and mitogen‑activated protein kinase (MAPK) signaling, were investigated by evaluating the phosphorylation levels of Smad3, extracellular signal‑regulated kinase 1/2, p38 MAPK and c‑Jun N‑terminal kinase. The results indicated that ATV significantly prevented TGF‑β1‑induced cell proliferation, myofibroblast differentiation and production of extracellular matrix proteins, such as matrix metalloproteinase‑2, collagen I and collagen III, in hVFs. Furthermore, ATV effectively inhibited TGF‑β1‑induced activation of Smad3 and MAPK signaling in hVFs. In conclusion, the present results demonstrated that ATV prevented TGF‑β1‑induced fibrogenesis in hVFs, at least in part by inhibiting the Smad3 and MAPK signaling pathways. Therefore, these results imply that ATV may be a promising agent to treat myocardial fibrosis."	"Ellagic acid induces cell cycle arrest and apoptosis via the TGF‑β1/Smad3 signaling pathway in human colon cancer HCT‑116 cells. Colorectal carcinoma (CRC) is a major type of malignancy worldwide. Ellagic acid (EA), a natural phenolic constituent, has been shown to exhibit anticancer effects. In our previous study, it was shown that EA inhibited proliferation of CRC cells. Additionally, microarray analysis revealed 4,738 differentially expressed genes (DEGs) which were associated with multiple cellular events, including cell growth, apoptosis and angiogenesis. However, the associated pathways had not been validated. In the present study, it was shown that EA induced G0/G1 cell cycle arrest in HCT‑116 cells, and increased apoptosis. Furthermore, DEGs identified by cDNA microarray analysis were investigated, and showed changes in five genes which were associated with the TGF‑β1/Smad3 signaling pathway. TGF‑β1 small interfering RNA and SIS3, a Smad3 inhibitor, were used to assess the role of TGF‑β1 and Smad3, respectively, and it was shown that the they reduced the effects of EA on HCT‑116 CRC cells. In addition, the expression patterns of downstream DEGs of the TGF‑β1/Smad3 pathway were altered. Thus, this pathway may underlie the molecular mechanism by which EA exhibits its effects in vitro in CRC cells. Accordingly, targeting the TGF‑β1/Smad3 pathway with anticancer agents such as EA may be potentially used to treat CRC."	"Probucol recovers pathological damage in viral Myocarditis through improvement of myocardium-related proteins. This study explored the effects of probucol on myocardial injury, oxidative stress, and Cav-3 and Smad3 expression in myocardial tissues by establishing VMC rat models, in order to provide a basis for exploring the mechanism of probucol in treatment of VMC. Sixty rats were randomly divided into control group, model group, probucollowdose group, andprobucol highdose group, with 15 in each group. Except for the control group, rats in each group were intraperitoneally injected coxsackievirus B3 diluent (0.2 ml) to replicate VMC models every 4 days. The results showed that Caspase-3 and Caspase-9, myocardial enzymes, cTn I, and MDA levels in the model group significantly increased (P &lt; 0.05), while the SOD level significantly decreased (P &lt; 0.05); and after probucol treatment, Caspase-3 and Caspase-9, myocardial enzymes, cTn I and MDA levels significantly decreased (P &lt; 0.05), and the SOD level significantly increased (P &lt; 0.05). Compared with the control group, there was an increase in myocardial fibers with significant lesions in the model group, and the pathological scores and the mRNA and protein expression levels of Cav-3 and Smad3 in myocardial cells significantly increased (P &lt; 0.05). Compared with the control group, the myocardial tissue lesions were improved in the probucol low dose group and highdose group, and the pathological scores and the mRNA and protein expression levels of Cav-3 and Smad3 in myocardial cells were significantly reduced (P &lt; 0.05). In conclusion, probucol can significantly improve the pathological damage of myocardial tissue in VMC rats, and its mechanism may be related to improving the expression of myocardium-related proteins Caspase-3 and Caspase-9, inhibiting oxidative stress response, and down-regulating Cav-3 and Smad3 gene expression in myocardial tissue of VMC rats."	"Amelioration of paraquat-induced pulmonary fibrosis in mice by regulating miR-140-5p expression with the fibrogenic inhibitor Xuebijing. Intravenous Xuebijing (XBJ) therapy suppresses paraquat (PQ)-induced pulmonary fibrosis. However, the mechanism underlying this suppression remains unknown. This work aimed to analyze the miR-140-5p-induced effects of XBJ injection on PQ-induced pulmonary fibrosis in mice. The mice were arbitrarily assigned to four groups. The model group was administered with PQ only. The PQ treatment group was administered with PQ and XBJ. The control group was administered with saline only. The control treatment group was administered with XBJ only. The miR-140-5p and miR-140-5p knockout animal models were overexpressed. The gene expression levels of miR-140-5p, transglutaminase-2 (TG2), β-catenin, Wnt-1, connective tissue growth factor (CTGF), mothers against decapentaplegic homolog (Smad), and transforming growth factor-β1 (TGF-β1) in the lungs were assayed with quantitative reverse transcription polymerase chain reaction (qRT-PCR) and Western blot analysis. The levels of TGF-β1, CTGF, and matrix metalloproteinase-9 (MMP-9) in the bronchoalveolar lavage fluid were assessed by enzyme-linked immunosorbent assay (ELISA). Hydroxyproline (Hyp) levels and pulmonary fibrosis were also scored. After 14 days of PQ induction of pulmonary fibrosis, AdCMV-miR-140-5p, and XBJ upregulated miR-140-5p expression; blocked the expressions of TG2, Wnt-1, and β-catenin; and decreased p-Smad2, p-Smad3, CTGF, MMP-9, and TGF-β1 expressions. In addition, Hyp and pulmonary fibrosis scores in XBJ-treated mice decreased. Histological results confirmed that PQ-induced pulmonary fibrosis in XBJ-treated lungs was attenuated. TG2 expression and the Wnt-1/β-catenin signaling pathway were suppressed by the elevated levels of miR-140-5p expression. This inhibition was pivotal in the protective effect of XBJ against PQ-induced pulmonary fibrosis. Thus, XBJ efficiently alleviated PQ-induced pulmonary fibrosis in mice."	"Ectopia lentis in Loeys-Dietz syndrome type 4. Loeys-Dietz syndrome is a heritable disorder of the connective tissue leading to multisystem involvement including craniofacial features, skeletal abnormalities, cutaneous findings and early-onset and aggressive disease of the aorta and its branches. There are multiple types of Loeys-Dietz syndrome related to pathogenic variants in TGFBR1, TGFBR2, SMAD3, TGFB2, and TGFB3. Individuals with Loeys-Dietz syndrome may be misdiagnosed as having Marfan syndrome due to shared phenotypic features and aortic root dilation. However, ectopia lentis has been an important discriminating feature, being unique to Marfan syndrome and not reported to be associated with Loeys-Dietz syndrome. We report the case of a 46-year-old woman with Loeys-Dietz syndrome type 4 due to a pathogenic variant in TGFB2 who was diagnosed with ectopia lentis at age 44. The patient underwent whole exome sequencing and no other pathogenic variants were found to explain the ectopia lentis. Our findings indicate that ectopia lentis may be an uncommon finding in Loeys-Dietz syndrome type 4 and emphasize the importance of genetic testing in familial thoracic aortic aneurysm disease."	"Poricoic acid A activates AMPK to attenuate fibroblast activation and abnormal extracellular matrix remodelling in renal fibrosis. In chronic kidney disease, although fibrosis prevention is beneficial, few interventions are available that specifically target fibrogenesis. Poricoic acid A (PAA) isolated from Poria cocos exhibits anti-fibrotic effects in the kidney, however the underlying mechanisms remain obscure. We isolated PAA and investigated its effects and the underlying mechanisms in renal fibrosis. Unilateral ureteral obstruction (UUO) and 5/6 nephrectomy (Nx) animal models and TGF-β1-induced renal fibroblasts (NRK-49F) were used to investigate the anti-fibrotic activity of PAA and its underlying mechanisms. Western blots, qRT-PCR, immunofluorescence staining, co-immunoprecipitation and molecular docking methods were used. Knock-down and knock-in of adenosine monophosphate-activated protein kinase (AMPK) in the UUO model and cultured NRK-49F cells were employed to verify the mechanisms of action of PAA. PAA improved renal function and alleviated fibrosis by stimulating AMPK and inhibiting Smad3 specifically in Nx and UUO models. Reduced AMPK activity was associated with Smad3 induction, fibroblast activation, and the accumulation and aberrant remodelling of extracellular matrix (ECM) in human renal puncture samples and cultured NRK-49F cells. PAA stimulated AMPK activity and decreased fibrosis in a dose-dependent manner, thus showing that AMPK was essential for PAA to exert its anti-fibrotic effects. AMPK deficiency reduced the anti-fibrotic effects of PAA, while AMPK overexpression enhanced its effect. PAA activated AMPK and further inhibited Smad3 specifically to suppress fibrosis by preventing aberrant ECM accumulation and remodelling and facilitating the deactivation of fibroblasts."	"Smad2/4 Signaling Pathway Is Critical for Epidermal Langerhans Cell Repopulation Under Inflammatory Condition but Not Required for Their Homeostasis at Steady State. Epidermal Langerhans cells (LCs) are skin-resident dendritic cells that are essential for the induction of skin immunity and tolerance. Transforming growth factor-β 1 (TGFβ1) is a crucial factor for LC maintenance and function. However, the underlying TGFβ1 signaling pathways remain unclear. Our previous research has shown that the TGFβ1/Smad3 signaling pathway does not impact LC homeostasis and maturation. In this study, we generated mice with conditional deletions of either individual Smad2, Smad4, or both Smad2 and Smad4 in the LC lineage or myeloid lineage, to further explore the impact of TGFβ1/Smad signaling pathways on LCs. We found that interruption of Smad2 or Smad4 individually or simultaneously in the LC lineage did not significantly impact the maintenance, maturation, antigen uptake, and migration of LCs in vivo or in vitro during steady state. However, the interruption of both Smad2 and Smad4 pathways in the myeloid lineage led to a dramatic inhibition of bone marrow-derived LCs in the inflammatory state. Overall, our data suggest that canonical TGFβ1/Smad2/4 signaling pathways are dispensable for epidermal LC homeostasis and maturation at steady state, but are critical for the long-term LC repopulation directly originating from the bone marrow in the inflammatory state."	"RNA Sequencing Analyses Reveal the Potential Mechanism of Pulmonary Injury Induced by Gallium Arsenide Particles in Human Bronchial Epithelioid Cells. Extensive use of gallium arsenide (GaAs) has led to increased exposure to humans working in the semiconductor industry. This study employed physicochemical characterization of GaAs obtained from a workplace, cytotoxicity analysis of damage induced by GaAs in 16HBE cells, RNA-seq and related bioinformatic analysis, qRT-PCR verification and survival analysis to comprehensively understand the potential mechanism leading to lung toxicity induced by GaAs. We found that GaAs-induced abnormal gene expression was mainly related to the cellular response to chemical stimuli, the regulation of signalling, cell differentiation and the cell cycle, which are involved in transcriptional misregulation in cancer, the MAPK signalling pathway, the TGF-β signalling pathway and pulmonary disease-related pathways. Ten upregulated genes (FOS, JUN, HSP90AA1, CDKN1A, ESR1, MYC, RAC1, CTNNB1, MAPK8 and FOXO1) and 7 downregulated genes (TP53, AKT1, NFKB1, SMAD3, CDK1, E2F1 and PLK1) related to GaAs-induced pulmonary toxicity were identified. High expression of HSP90AA1, RAC1 and CDKN1A was significantly associated with a lower rate of overall survival in lung cancers. The results of this study indicate that GaAs-associated toxicities affected the misregulation of oncogenes and tumour suppressing genes, activation of the TGF-β/MAPK pathway, and regulation of cell differentiation and the cell cycle. These results help to elucidate the molecular mechanism underlying GaAs-induced pulmonary injury."	"Glycyrrhetinic Acid-Induced MiR-663a Alleviates Hepatic Stellate Cell Activation by Attenuating the TGF-β/Smad Signaling Pathway. Glycyrrhetinic acid (GA), a hydrolysate of glycyrrhizic acid from licorice root extract, has been used to treat liver fibrotic diseases. However, the molecular mechanism involved in the antifibrotic effects of GA remains unclear. The involvement of miR-663a and its roles in TGF-β-1-induced hepatic stellate cell (HSC) activation remains unclear. In this study, we investigated the roles of miR-663a in the activation of HSCs and the antifibrosis mechanism of GA. MiR-663a expression was downregulated in TGF-β-treated HSCs. The overexpression of miR-663a inhibited HSC proliferation. TGF-β-1was confirmed as a direct target gene of miR-663a. MiR-663a alleviated HSC activation, concomitant with decreased expression of α-smooth muscle actin (α-SMA), human α2 (I) collagen (COL1A2), TGF-β1, TGF-βRI, Smad4, p-Smad2, and p-Smad3. GA upregulated miR-663a expression and inhibited the TGF-β/Smad pathway in HSCs. Further studies showed that miR-663a inhibitor treatment reversed GA-mediated downregulation of TGF-β1, TGF-βRI, Smad4, p-Smad2, p-Smad3, α-SMA, and CoL1A2 in TGF-β1-treated HSCs. These results show that miR-663a suppresses HSC proliferation and activation and the TGF-β/Smad signaling pathway, highlighting that miR-663a can be utilized as a therapeutic target for hepatic fibrosis. GA inhibits, at least in part, HSC proliferation and activation via targeting the miR-663a/TGF-β/Smad signaling pathway."	"Early pathological signs in young dysf<sup>-/-</sup> mice are improved by halofuginone. Dysferlinopathies are a non-lethal group of late-onset muscular dystrophies. Here, we evaluated the fusion ability of primary myoblasts from young dysf<sup>-/-</sup> mice and the muscle histopathology prior to, and during early stages of disease onset. The ability of primary myoblasts of 5-week-old dysf<sup>-/-</sup> mice to form large myotubes was delayed compared to their wild-type counterparts, as evaluated by scanning electron microscopy. However, their fusion activity, as reflected by the presence of actin filaments connecting several cells, was enhanced by the antifibrotic drug halofuginone. Early dystrophic signs were already apparent in 4-week-old dysf<sup>-/-</sup> mice; their collagen level was double that in wild-type mice and continued to rise until 5 months of age. Continuous treatment with halofuginone from 4 weeks to 5 months of age reduced muscle fibrosis in a phosphorylated-Smad3 inhibition-related manner. Halofuginone also enhanced myofiber hypertrophy, reduced the percentage of centrally nucleated myofibers, and increased muscle performance. Together, the data suggest an inhibitory effect of halofuginone on the muscle histopathology at very early stages of dysferlinopathy, and enhancement of muscle performance. These results offer new opportunities for early pharmaceutical treatment in dysferlinopathies with favorable outcomes at later stages of life."	"Human bone marrow mesenchymal stem cell-derived exosomes stimulate cutaneous wound healing mediates through TGF-β/Smad signaling pathway. Cutaneous wound healing represents a morphogenetic response to injury and is designed to restore anatomic and physiological function. Human bone marrow mesenchymal stem cell-derived exosomes (hBM-MSC-Ex) are a promising source for cell-free therapy and skin regeneration. In this study, we investigated the cell regeneration effects and its underlying mechanism of hBM-MSC-Ex on cutaneous wound healing in rats. In vitro studies, we evaluated the role of hBM-MSC-Ex in the two types of skin cells: human keratinocytes (HaCaT) and human dermal fibroblasts (HDFs) for the proliferation. For in vivo studies, we used a full-thickness skin wound model to evaluate the effects of hBM-MSC-Ex on cutaneous wound healing in vivo. The results demonstrated that hBM-MSC-Ex promote both two types of skin cells' growth effectively and accelerate the cutaneous wound healing. Interestingly, we found that hBM-MSC-Ex significantly downregulated TGF-β1, Smad2, Smad3, and Smad4 expression, while upregulated TGF-β3 and Smad7 expression in the TGF-β/Smad signaling pathway. Our findings indicated that hBM-MSC-Ex effectively promote the cutaneous wound healing through inhibiting the TGF-β/Smad signal pathway. The current results provided a new sight for the therapeutic strategy for the treatment of cutaneous wounds."	"Functional analysis of miRNAs combined with TGF-β1/Smad3 inhibitor in an intrauterine rat adhesion cell model. In this study, we aimed to study the role of miRNAs in intrauterine adhesion (IUA) disease. An IUA cell model was constructed by TGF-β1. Smad3 inhibitor (SIS3) can inhibit the Smad3 signaling pathway and affect the role of TGF-β1; thus, it was used to identify the role of Smad3 and related miRNAs in IUA. Cell number significantly increased in the TGF-β1 group after 72 h and 96 h, respectively, compared with that in the control group (P &lt; 0.05). However, cell proliferation was significantly decreased in the TGF-β1 + SIS3 group (P &lt; 0.0001). Cell apoptosis was increased in the TGF-β1 + SIS3 group compared with that in the TGF-β1 group. Western Blot (WB) analysis suggested that TGF-β1 treatment could effectively increase the expression of α-SMA, COL1, Smad3, and p-Smad3, which could be inhibited by SIS3 treatment. A total of 235 and 530 differentially expressed miRNAs in the TGF-β1 + SIS3 group were significantly up- and downregulated compared with those in the TGF-β1 group, respectively. These differentially expressed miRNAs were enriched in the MAPK and PI3K-AKT pathways. The ten most differentially expressed miRNAs were selected to verify their expressions using quantitative real-time polymerase chain reaction (qPCR). Furthermore, overexpression of rno-miR-3586-3p and rno-miR-455-5p can promote cell proliferation and exacerbate the IUA pathogenic process. However, overexpression of rno-miR-204-3p and rno-miR-3578 can inhibit cell behavior and IUA progression. The above results can provide detailed information for the understanding of IUA molecular mechanisms."	"Logic-based analysis of gene expression data predicts association between TNF, TGFB1 and EGF pathways in basal-like breast cancer. For breast cancer, clinically important subtypes are well characterized at the molecular level in terms of gene expression profiles. In addition, signaling pathways in breast cancer have been extensively studied as therapeutic targets due to their roles in tumor growth and metastasis. However, it is challenging to put signaling pathways and gene expression profiles together to characterize biological mechanisms of breast cancer subtypes since many signaling events result from post-translational modifications, rather than gene expression differences. We designed a logic-based computational framework to explain the differences in gene expression profiles among breast cancer subtypes using Pathway Logic and transcriptional network information. Pathway Logic is a rewriting-logic-based formal system for modeling biological pathways including post-translational modifications. Our method demonstrated its utility by constructing subtype-specific path from key receptors (TNFR, TGFBR1 and EGFR) to key transcription factor (TF) regulators (RELA, ATF2, SMAD3 and ELK1) and identifying potential association between pathways via TFs in basal-specific paths, which could provide a novel insight on aggressive breast cancer subtypes. Codes and results are available at http://epigenomics.snu.ac.kr/PL/."	"TGFβ1-Smad3 signaling mediates the formation of a stable serine racemase dimer in microglia. d-serine is synthesized by serine racemase (SR), a fold type II class of pyridoxal-5'-phosphate (PLP)-dependent enzyme. Whereas X-ray crystallography reveals that SR can be monomeric, reversible dimers having the highest racemase activity, or stable SR dimers resistant to both denaturation and reductive treatment, showing reduced racemase activity have been detected in microglia and astrocytes; the latter especially in oxidative or inflammatory environments. The microglial inflammatory environment depends largely on the TGFβ1-mediated regulation of inflammatory cytokines such as TNFα and IL1β. Here we evaluated the participation of TGFβ1 in the regulation of SR, and whether that regulation is associated with the induction of stable SR dimers in the microglia from adult mice. In contrast to the effect of lipopolysaccharide (LPS), TGFβ1 increased the formation of stable SR dimers and reduced the detection of monomers in microglia in culture. LPS or TGFβ1 did not change the amount of total SR. The increase of stable SR dimer was abolished when TGFβ1 treatment was done in the presence of the Smad inhibitor SIS3, showing that Smad3 has a role in the induction of stable dimers. Treatment with TGFβ1 + SIS3 also reduced total SR, indicating that the canonical TGFβ1 pathway participates in the regulation of the synthesis or degradation of SR. In addition, the decrease of IL1β, but not the decrease of TNFα induced by TGFβ1, was mediated by Smad3. Our results reveal a mechanism for the regulation of d-serine through the induction of stable SR dimers mediated by TGFβ1-Smad3 signaling in microglia."	"miR-136 improves renal fibrosis in diabetic rats by targeting down-regulation of tyrosine kinase SYK and inhibition of TGF-β1/Smad3 signaling pathway. Objective: To investigate the way that miR-136 regulated spleen tyrosine kinase (SYK) and transforming growth factor-β1 (TGF-β1)/Smad3 signaling pathways on renal fibrosis.Methods: 100 male SD (Sprague-Dawley) rats were randomly divided into diabetic nephropathy (DN) group, normal control (NC) group, miR-136 mimics group, and control group. The renal fibrosis model of diabetic rats was established by streptozotocin (STZ) method. NRK-52E cells were transfected into six groups: HG group, HG + miR-136 group, HG + miR-NC group, miR-136 + SYK group, miR-136 + NC group, and control group. Histopathological examination, the expressions of miR-136 and SYK mRNA, the expression of mTOR, blood glucose, urine protein, body weight, creatinine level, blood urea nitrogen (BUN), and KW/BW were detected in each group. Transfection efficiency, the targeted binding, and regulation between miR-136 and SYK, as well as the expression level of related inflammatory factors, the expression levels of SYK, E-Cad (E-cadherin), Vimentin, Collagen I, α-smooth muscle actin (α-SMA), and vascular endothelial growth factor A (VEGFA) were detected.Results: It was shown that the expression level of miR-136 in DN group significantly decreased. The blood glucose and urine protein concentrations in the DN group and miR-136 mimics group significantly increased and the body weight was decreased, but the blood glucose concentration in the miR-136 mimics group increased with time. The prolongation of the decline significantly decreased, and the growth rate of urinary protein reduced. Creatinine, BUN, and the kidney weight to body weight ratio (KW/BW) in DN group increased significantly. Cell culture results showed that SYK was a target gene of miR-136 and miR-136/SYK-mediated renal fibrosis by activating TGF-β1/Smad3 signal.Conclusion: SYK activates TGF-β1/Smad3 signaling, while miR-136 inhibits TGF-β1/Smad3 signaling mediating tubular epithelial cell fibrosis by down-regulating SYK."	"β-arrestin2 deficiency protects against hepatic fibrosis in mice and prevents synthesis of extracellular matrix. Hepatic fibrosis is a disease of the wound-healing response following chronic liver injury, and activated hepatic stellate cells (HSCs) play a crucial role in the progression of hepatic fibrosis. β-arrestin2 functions as a multiprotein scaffold to coordinate complex signal transduction networks. Although β-arrestin2 transduces diverse signals in cells, little is known about its involvement in the regulation of liver fibrosis. Our current study utilized a porcine serum-induced liver fibrosis model and found increased expression of β-arrestin2 in hepatic tissues with the progression of hepatic fibrosis, which was positively correlated with collagen levels. Furthermore, changes in human fibrotic samples were also observed. We next used β-arrestin2<sup>-/-</sup> mice to demonstrate that β-arrestin2 deficiency ameliorates CCl4-induced liver fibrosis and decreases collagen deposition. The in vitro depletion and overexpression experiments showed that decreased β-arrestin2 inhibited HSCs collagen production and elevated TβRIII expression, thus downregulating the TGF-β1 pathway components Smad2, Smad3 and Akt. These findings suggest that β-arrestin2 deficiency ameliorates liver fibrosis in mice, and β-arrestin2 may be a potential treatment target in hepatic fibrosis."	"Statin inhibits large hepatitis delta antigen-Smad3 -twist-mediated epithelial-to-mesenchymal transition and hepatitis D virus secretion. Hepatitis D virus (HDV) infection may induce fulminant hepatitis in chronic hepatitis B patients (CHB) or rapid progression of CHB to cirrhosis or hepatocellular carcinoma. There is no effective treatment for HDV infection. HDV encodes small delta antigens (S-HDAg) and large delta antigens (L-HDAg). S-HDAg is essential for HDV replication. Prenylated L-HDAg plays a key role in HDV assembly. Previous studies indicate that L-HDAg transactivates transforming growth factor beta (TGF-β) and induces epithelial-mesenchymal transition (EMT), possibly leading to liver fibrosis. However, the mechanism is unclear. The mechanisms of the activation of Twist promoter by L-HDAg were investigated by luciferase reporter assay, chromatin immunoprecipitation, and co-immunoprecipitation analysis. ELISA and Western blotting were used to analyze L-HDAg prenylation, TGF-β secretion, expression of EMT markers, and to evaluate efficacy of statins for HDV treatment. We found that L-HDAg activated Twist expression, TGF-β expression and consequently induced EMT, based on its interaction with Smad3 on Twist promoter. The treatment of statin, a prenylation inhibitor, resulted in reduction of Twist promoter activity, TGF-β expression, and EMT, and reduces the release of HDV virions into the culture medium. We demonstrate that L-HDAg activates EMT via Twist and TGF-β activation. Treatment with statins suppressed Twist expression, and TGF-β secretion, leading to downregulation of EMT. Our findings clarify the mechanism of HDV-induced EMT, and provide a basis for possible novel therapeutic strategies against HDV infection."	"The effect of exosomes derived from mesenchymal stem cells in the treatment of induced type 1 diabetes mellitus in rats. The aim of the current study was to evaluate the therapeutic and regenerative effects of MSCs derived exosomes in the treatment of type 1 DM and to compare its effects with MSCs themselves. The experiment was done on forty albino rats grouped as follows, group (1): Ten healthy rats, group (2): Ten induced type 1 DM rats, group (3): Ten induced type 1 DM rats received exosomes intraperitoneally, and group (4): Ten induced type 1 DM rats received MSCs intraperitoneally. Serum glucose and plasma insulin levels were assessed weekly. QRT-PCR was done to assess regeneration of pancreatic beta cells by measuring insulin, Pdx1, Smad2, Smad3 and TGFβ genes. Additionally, histopathological and immune-histochemical examinations were done to confirm pancreatic tissue regeneration. Regarding the assessed genes (insulin, Pdx1, Smad2, Smad3 and Tgfβ) gene expression in MSCs treated group showed significant increase compared to diabetic group (p value &lt; 0.001) and gene expression in exosomes treated group was increased significantly compared to diabetic and MSCs treated groups (p value &lt; 0.001). Histopathological and immune-histochemical examination revealed regeneration of pancreatic islets in both treated groups. MSCs Derived exosomes showed superior therapeutic and regenerative results than MSCs themselves."	"Qiliqiangxin improves cardiac function and attenuates cardiac remodelling in doxorubicin-induced heart failure rats. Context: Therapeutic doxorubicin administration is restricted as this anticancer drug may be cardiotoxic. The traditional Chinese medicine qiliqiangxin has been approved for clinical treatment of chronic heart failure.Objective: To explore the protective effects and molecular mechanisms of qiliqiangxin on doxorubicin-induced congestive heart failure (CHF) in rats.Materials and methods: A CHF rat model was established via intraperitoneal DOX injections (2.5 mg/kg/week) for 6 weeks. The rats were randomly assigned to control, CHF, CHF + QL (1.0 g/kg/d), or captopril (3.8 mg/kg/d) treatment groups (n = 10) for 4 weeks. MicroRNA sequencing elucidated the molecular mechanisms of qiliqiangxin on doxorubicin-induced CHF in rats.Results: Unlike in the CHF group, QL significantly reduced Bax:Bcl-2 (2.05 ± 0.23 vs. 0.94 ± 0.09, p &lt; 0.05) and the levels of collagen I (0.19 ± 0.02 vs. 0.15 ± 0.01, p &lt; 0.05), collagen III (0.19 ± 0.02 vs. 0.14 ± 0.02, p &lt; 0.05), TGF-β1 (5.28 ± 0.89 vs. 2.47 ± 0.51, p &lt; 0.05), Smad3 (1.23 ± 0.12 vs. 0.78 ± 0.09, p &lt; 0.05), MMP-2 (0.89 ± 0.01 vs. 0.53 ± 0.05, p &lt; 0.05), and TIMP-2 (0.24 ± 0.03 vs. 0.44 ± 0.03, p &lt; 0.05). QL also upregulated TGF-β3 (0.65 ± 0.06 vs. 0.96 ± 0.10, p &lt; 0.05) and Smad7 (0.09 ± 0.01 vs. 0.19 ± 0.023, p &lt; 0.05). Moreover, Smad3 was a target of miR-345-3p.Discussion and Conclusions: The beneficial effects of QL on DOX-induced CHF in rats are mediated by reduction in myocardial fibrosis, promotion of TGF-β3/Smad7, and inhibition of TGF-β1/Smad3. QL may also modulate specific miRNAs. These results provide evidence that QL might be an effective treatment for DOX-induced CHF."	"CTRP15 derived from cardiac myocytes attenuates TGFβ1-induced fibrotic response in cardiac fibroblasts. Cardiac fibrosis is characterized by net accumulation of extracellular matrix (ECM) components in the myocardium and facilitates the development of heart failure. C1q/tumor necrosis factor-related protein 15 (CTRP15) is a novel member of the CTRP family, and its gene expression is detected in adult mouse hearts. The present study was performed to determine the effect of CTRP15 on pressure overload-induced fibrotic remodeling. Mice were subjected to transverse aortic constriction (TAC) surgery, and adeno-associated virus serotype 9 (AAV9)-carrying mouse CTRP15 gene was injected into mice to achieve CTRP15 overexpression in the myocardium. Adenovirus carrying the gene encoding CTRP15 or small interfering RNA (siRNA) of interest was infected into cultured neonatal mouse ventricular cardiomyocytes (NMVCs) or cardiac fibroblasts (CFs). Gene expression was measured by quantitative real-time PCR, and protein expression and distribution were determined by Western blotting, immunocytochemistry, and immunofluorescence staining. CTRP15 was predominantly produced by cardiac myocytes. CTRP15 expression in the left ventricles was downregulated in mice that underwent TAC. AAV9-mediated CTRP15 overexpression alleviated ventricular remodeling and dysfunction in the pressure-overloaded mice. Treatment of CFs with recombinant CTRP15 or the conditioned medium containing CTRP15 inhibited transforming growth factor (TGF)-β1-induced Smad3 activation and myofibroblast differentiation. CTRP15 increased phosphorylation of insulin receptor (IR), insulin receptor substrate-1 (IRS-1), and Akt. Blockade of IR/IRS-1/Akt pathway reversed the inhibitory effect of CTRP15 on TGF-β1-induced Smad3 activation. CTRP15 exerts an anti-fibrotic effect on pressure overload-induced cardiac remodeling. The activation of IR/IRS-1/Akt pathway contributes to the anti-fibrotic effect of CTRP15 through targeting Smad3."	"FOXF2 deficiency accelerates the visceral metastasis of basal-like breast cancer by unrestrictedly increasing TGF-β and miR-182-5p. The mesenchymal transcription factor forkhead box F2 (FOXF2) is a critical regulator of embryogenesis and tissue homeostasis. Our previous studies demonstrated that FOXF2 is ectopically expressed in basal-like breast cancer (BLBC) cells and that FOXF2 deficiency promotes the epithelial-mesenchymal transition and aggressiveness of BLBC cells. In this study, we found that FOXF2 controls transforming growth factor-beta (TGF-β)/SMAD signaling pathway activation through transrepression of TGF-β-coding genes in BLBC cells. FOXF2-deficient BLBC cells adopt a myofibroblast-/cancer-associated fibroblast (CAF)-like phenotype, and tend to metastasize to visceral organs by increasing autocrine TGF-β signaling and conferring aggressiveness to neighboring cells by increasing paracrine TGF-β signaling. In turn, TGF-β silences FOXF2 expression through upregulating miR-182-5p, a posttranscriptional regulator of FOXF2 and inducer of metastasis. In addition to mediating a reciprocal repression loop between FOXF2 and TGF-β through direct transrepression by SMAD3, miR-182-5p forms a reciprocal repression loop with FOXF2 that directly transrepresses MIR182 expression. Therefore, FOXF2 deficiency accelerates the visceral metastasis of BLBC through unrestricted increases in autocrine and paracrine TGF-β signaling, and miR-182-5p expression. Our findings provide novel mechanisms underlying the roles of TGF-β, miR-182-5p, and FOXF2 in accelerating BLBC dissemination and metastasis, and may facilitate the development of therapeutic strategies for aggressive BLBC."	"Deregulation of miRNAs-cMYC circuits is a key event in refractory celiac disease type-2 lymphomagenesis. A percentage of celiac disease (CD) patients develop refractory type-2 disease (RCD2), a condition associated with increased risk of enteropathy-associated T-cell-lymphoma (EATL) and without therapeutic option. Therefore, we profiled the miRNome in series of peripheral T-cell lymphomas (PTCLs), CD, RCD1 or 2 and in the murine interleukin-15 (IL15)-transgenic (TG) model of RCD. The transcriptome was analyzed in 18 intestinal T-cell lymphomas (ITLs). Bioinformatics pipelines provided significant microRNA (miRNA) lists and predicted targets that were confirmed in a second set of patients. Our data show that ITLs have a unique miRNA profile with respect to other PTCLs. The c-MYC regulated miR-17/92 cluster distinguishes monomorphic epitheliotropic ITL (MEITL) from EATL and prognosticates EATL outcome. These miRNAs are decreased in IL15-TG mice upon Janus kinase (JAK) inhibition. The random forest algorithm identified a signature of 38 classifier miRNAs, among which, the miR-200 and miR-192/215 families were progressively lost in RCD2 and ITL-CD, whereas miR-17/92 and C19MC miRNAs were up-regulated. Accordingly, SMAD3, MDM2, c-Myc and activated-STAT3 were increased in RCD2 and EATL tissues while JAK inhibition in IL15-TG mice restored their levels to baseline. Our data suggest that miRNAs circuit supports activation of STAT3 and c-Myc oncogenic signaling in RCD2, thus contributing to lymphomagenesis. This novel understanding might pave the way to personalized medicine approaches for RCD and EATL."	"Screening and Identification of Differentially Expressed Genes Expressed among Left and Right Colon Adenocarcinoma. Colon adenocarcinoma (COAD) is the third most common malignancy globally and is further categorized as left colon adenocarcinoma (LCOAD) or right colon adenocarcinoma (RCOAD) depending on the location of the primary tumor. The therapeutic outcome and long-term prognosis for patients with COAD are less than satisfactory, and this may be associated with tumor location. Therefore, it is important to investigate the genetic differences in COAD at different sites. Patients and Methods. Public data associated with COAD were downloaded from the Gene Expression Omnibus (GEO) database. Differentially expressed genes (DEGs) were identified using R software (version 3.5.3), and functional annotation of DEGs was performed using Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) analyses. A protein-protein interaction network was constructed, hub genes were identified and analyzed, and data mining using Gene Expression Profiling Interactive Analysis (GEPIA) was conducted. A total of 286 DEGs were identified between LCOAD and RCOAD. Additionally, 10 hub genes associated with COAD at different locations were screened, namely, CDKN2A, IGF1R, MDM2, SMAD3, SLC2A1, GRM5, PLCB4, FGFR1, UBE2V2, and TNFRSF10B. The expression of cyclin-dependent kinase inhibitor 2A (CDKN2A) and solute carrier family 2 member 1 (SLC2A1) was significantly associated with pathological stage (P &lt; 0.05). COAD patients with high expression levels of CDKN2A exhibited poorer overall survival (OS) times than those with low expression levels (P &lt; 0.05). CDKN2A expression was significantly different between LCOAD and RCOAD and was closely related to the prognosis of COAD. It is of great value for further understanding of the pathogenesis of LCOAD and RCOAD."	"A comprehensive evaluation of differentially expressed mRNAs and lncRNAs in cystitis glandularis with gene ontology, KEGG pathway, and ceRNA network analysis. Cystitis glandularis (CG) is a proliferative disorder of the urinary bladder characterized by transitional cells that have undergone glandular metaplasia. The underlying mechanism associated with this transformation is poorly understood. The expression of messenger RNA (mRNA) and long non-coding RNA (lncRNA) from normal bladder mucosa and CG were compared using microarray analysis. Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis was used to describe molecular interactions. Microarray analysis identified 809 significantly dysregulated mRNAs in CG tissues; 606 were up-regulated and 203 were down-regulated (greater than 2-fold difference in expression from normal tissue, P&lt;0.05). KEGG pathway analysis showed that the mRNAs that co-expressed with lncRNAs were enriched in the cell cycle regulation pathway. Four up-regulated lncRNAs (ENST00000596379, ENST00000463397, NR_001446 and NR_015395) were identified in the coding-non-coding co-expression (CNC) network analysis as being associated with the expression of four mRNAs (SMAD3, ORC1, CCNA2 and CCNB2). NR_015395 was revealed to be a competing endogenous RNA (ceRNA) of miR-133a-3p that targets SMAD3. This is the first work to measure the expression of dysregulated lncRNA and ceRNA in CG and identify the crosstalk between mRNA and lncRNA expression patterns in the pathogenesis of CG."	"Effect of astragaloside IV on cognitive dysfunction in rats with cerebrally infarcted via TGF-β / Smad signaling pathway. Cerebral infarction is an acute cerebrovascular disease caused by abnormal blood circulation in the brain. In the present study, we investigate the effect of astragaloside IV on cognitive dysfunction in cerebrally infarcted rats via transforming growth factor-β (TGF-β) / Smad signaling pathway. For this purpose, 45 rats were divided into three groups including astragaloside, model, and control. 30 of 45 healthy adult male SD rats were randomly selected to establish an acute cerebral infarction model. 15 modeled rats were enrolled as a model and astragaloside group, and another 15 rats as a blank control group. The rats in the astragaloside group were fed with astragaloside IV according to 1.08 g/kg body weight, and those in the blank group and model group were given matching normal saline. The levels of TGF-β, Smad1, Smad3 and Smad7 of TGF-β/Smad signaling transduction pathway at T0 (week 0), T1 (week 3) and T2 (week 6) were determined by enzyme-linked immunosorbent assay (ELISA). The modified neurological severity score (mNSS) was used to evaluate the improvement of cognitive dysfunction in rats. The mNSS of rats with cerebral infarction in the astragaloside group was lower than that in the control group and model group (P&amp;lt; 0.05). While the levels of TGF-β, Smad1, Smad3 and Smad7 in the astragaloside group were higher than those in the control group and model group (P&amp;lt; 0.05). Astragaloside IV plays an important role in improving cognitive dysfunction in rats with cerebral infarction while affecting the levels of TGF-β, Smad1, Smad3 and Smad7 and activating TGF-β / Smad signaling pathway."	"Synovial and pulmonary dysfunctions are induced by crosstalk of Smad and Erk pathways in an arthritis model. In the current experiment, the effects of transforming growth factor (TGF)-β1/Smad and ERK pathway crosstalk on synovial and pulmonary systems during rheumatoid arthritis have been investigated. For this purpose, rats were divided into normal control (NC) and model control (MC) groups. In the MC group, 0.1 ml Freund's complete adjuvant was injected intradermally into the right hind paw, and the resulting inflammation represented a rheumatoid arthritis model. Joint swelling and changes in lung functions were observed in arthritic rats. Synovial and lung were observed by light and electron microscopies. Enzyme-linked immunosorbent assays were used to detect TGF-β1, interleukin (IL)-1β, IL-4, IL-10, interferon-γ (IFN-γ), connective tissue growth factor (CTGF), and fibroblast growth factor (FGF). PCR, immunohistochemistry, and immunoblotting were used to detect changes in Smad and ERK pathways of synovial and lung tissues. Compared with the NC group, toe swelling was elevated in the MC group. Pulmonary functions FEV1, FEF50, FEF75, MMF, and PEF were decreased (P&amp;lt; 0.01). Serum cytokines IL-1β, IL-4, TGF-β1, and CTGF were increased, while IFN-γ, IL-10, Th1/Th2 cell ratio, and FGF were decreased (P&amp;lt; 0.01 or P&amp;lt; 0.05). Expression of TGF-β1 and Smad2/3/4 mRNAs and TGF-β1, TβRI, TβRII, Smad2/3, p-Smad2/3, and Smad4 proteins in the synovial membrane and lung tissue were increased, and expression of Smad7 mRNA and protein was decreased (P&amp;lt;0.01) or P&amp;lt;0.05). Expression of ERK2 mRNA and p-ERK1/2 protein was increased in the synovial membrane and lung tissue, and expression of ERK1/2 mRNAs and ERK1/2 and p-ERK1/2 proteins was increased in lung tissue (P&amp;lt; 0.01 or P&amp;lt; 0.05). Correlation analysis showed that FEV1 was negatively correlated with TGF-β1 mRNA and protein in arthritic rats, FEF25 was negatively correlated with Smad4 protein, and FEF50 was negatively correlated with the TβRII protein, and FEF75, TGF-β1 and Smad3 mRNAs. There was a negative correlation between Smad2/3 protein and a negative correlation between PEF and TGF-β1 protein (P&amp;lt; 0.05). FEF50 and MMF were positively correlated with Smad7 mRNA (P&amp;lt; 0.05). FEV1 was negatively correlated with ERK2 mRNA, and FEF25 was negatively correlated with p-ERK1/2 protein. FEF75 and MMF were negatively correlated with ERK1/2 and p-ERK1/2, respectively (P&amp;lt; 0.05). ERK1 mRNA was positively correlated with Smad3 mRNA and TβRII protein, ERK2 mRNA was positively correlated with p-Smad2/3, and ERK1/2 protein was positively correlated with Smad2 mRNA, Smad4 protein, p-ERK1/2 protein, Smad4 mRNA, and p-Smad2/3 protein (P&amp;lt; 0.05). p-ERK1/2 protein was negatively correlated with Smad7 protein (P&amp;lt; 0.05). It is concluded that arthritic rats have synovial and systemic pulmonary damage. Smad and ERK pathway crosstalk leads to systemic lesions. Smad and ERK pathways are gradually activated by phosphorylation under the induction of the TGF-β1 promoter, and then participate in transcriptional activities, leading to the increase in synovial inflammation of arthritis, pulmonary lesions, and decreases in lung functions."	"TGF-β Pathway Inhibition Protects the Diaphragm From Sepsis-Induced Wasting and Weakness in Rat. Sepsis is a frequent complication in patients in intensive care units (ICU). Diaphragm weakness, one of the most common symptoms observed, can lead to weaning problems during mechanical ventilation. Over the last couple of years, members of the transforming growth factor (TGF) β family, such as myostatin, activin A, and TGF-β1, have been reported to strongly trigger the activation of protein breakdown involved in muscle wasting. The aim of this study was to investigate the effect of TGF-β inhibitor LY364947 on the diaphragm during chronic sepsis.Rats were separated into four groups exposed to different experimental conditions: Control group, Septic group, Septic group with inhibitor from day 0 (LY D0), and Septic group with inhibitor from day 1 (LY D1). Sepsis was induced in rats by cecal ligation and puncture, and carried out for 7 days.Chronic sepsis was responsible for a decrease in body weight, food intake and diaphragm's mass. The inhibitor was able to abolish diaphragm wasting only in the LY D1 group. Similarly, LY364947 had a beneficial effect on the diaphragm contraction only for the LY D1 group. SMAD3 was over-expressed and phosphorylated within rats in the Septic group; however, this effect was reversed by LY364947. Calpain-1 and -2 as well as MAFbx were over-expressed within individuals in the Septic group. Yet, calpain-1 and MAFbx expressions were decreased by LY364947.With this work, we demonstrate for the first time that the inhibition of TGF-β pathway during chronic sepsis protects the diaphragm from wasting and weakness as early as one day post infection. This could lead to more efficient treatment and care for septic patients in ICU."	"Alteration of miR-21, miR-433 and miR-590 tissue expression related to the TGF-β signaling pathway in ulcerative colitis patients. Ulcerative colitis (UC) is an inflammatory disease, and studies have suggested a role for TGF-β signalling pathway in the pathogenesis of UC. In the present study, we evaluated expression of TGF-β signalling genes and their regulatory microRNAs in patients with UC and control subjects. The expression of TGF-β1, SMAD2, SMAD3, miR-21, miR-101, miR-433, and miR-590 were evaluated using real-time PCR in biopsy samples of the patients and controls. Results showed increased expression of TGF-β1 and SMAD3 in the patients compared to controls. In addition, miR-21 and miR-433 were found to be higher in the patients compared to controls; however, miR-590 was found to be lower. Moreover, miR-433 was demonstrated to have positive correlation with SMAD3 and TGF-β while miR-21 was positively correlated with TGF-β1. MiR-590 was negatively correlated with SMAD2 and SMAD3. Results of the present study suggested a role for TGF-β signalling pathway related microRNAs in pathogenesis of UC."	"Improved tendon healing by a combination of Tanshinone IIA and miR-29b inhibitor treatment through preventing tendon adhesion and enhancing tendon strength. Background: Despite significant advances in the materials and methods development used in surgical repair and postoperative rehabilitation, the adhesion formation remains the most common clinical problem in tendon injuries. Therefore, the development of novel therapies is necessary for targeting at preventing tendon adhesion formation and improving tendon strength. Methods: We used rat fibroblasts for in vitro experiments to determine the optimal concentration of TSA in rats, and then set up negative control group, TSA intervention group, mir-29b interference adenovirus intervention group and TSA and mir-29b interference adenovirus co-intervention group. By comparing cell proliferation and protein expression in different group, we verified the effect and mechanism of drugs on fibroblast function. At the same time, the Sprague-Dawley rat Achilles tendon model in vivo was established in this study, which was divided into sham operation group and operation group. Afterwards in the operation group, mir-29b inhibitor and placebo were injected every 3 days respectively. Then the injection inhibitor group was divided into 5 groups which mean TSA was injected into the marked area at 0, 6, 24 and 72 hours after operation for 1 week, finally all of the rats were died at 3 weeks after operation. Through the observation of general properties, histological observation of Achilles tendon injury, biomechanical test and cell and protein expression in rats' tendon cell, the effect of drugs on tendon adhesion formation was analyzed. Results: We demonstrated that the combination of miR-29b inhibitor and tanshinone IIA(TSA) could prevent tendon adhesion and also enhance tendon strength. Mechanically, the miR-29b inhibitor could activate the TGF-β/Smad3 pathway to trigger endogenous pathways and induce a high proliferation of fibroblast. Subsequently, we also found adding TSA after 6 hours of miR-29b treatment gave less cell cytotoxicity in our rat model with better outcome of less tendon adhesion and enhanced strength. Conclusion: We conclude that the use of miR-29b inhibitor at the end of the tendon break could initiate endogenous repair mechanism and subsequently use of TSA should be able to inhibit the exogenous repair mechanism. Therefore, the combination of both treatments could prevent tendon adhesion and ensure tendon strength. Our findings suggested that this approach would be a feasible approach for tendon repair."	"MiR-596 inhibits osteoblastic differentiation and cell proliferation by targeting Smad3 in steroid-induced osteonecrosis of femoral head. It is reported that miR-596 has a potential diagnostic value for non-traumatic osteonecrosis of the femoral head (NOFH), but its underlying mechanisms in NOFH is unclear. The expression of miR-596 and Smad3 was detected by western blot and quantitative real-time PCR. The relationship between the two molecules was explored using Dual-Luciferase Reporter Assay. Glucocorticoid (GC)-dexamethasone, was used to induce bone marrow mesenchymal stem cell (BMSC) osteogenic differentiation, and the effects of miR-596 on BMSC osteogenic differentiation and proliferation were determined. MiR-596 expression was upregulated, while Smad3 expression was inhibited in the bone marrow samples of patients with steroid-induced osteonecrosis of femoral head (SANFH). Overexpression of miR-596 inhibited the proliferation and osteogenic differentiation of BMSCs induced by GC. Meanwhile, the opposite results were observed in the miR-596 inhibitor group. In addition, Smad3 was a target gene of miR-596, and negatively regulated by miR-596. The promotion effect of the miR-596 inhibitor on BMSC proliferation and osteogenic differentiation was reversed by si-Smad3. MiR-596 can suppress GC-BMSC osteoblastic differentiation and proliferation by regulating Smad3 expression."	"Dissociation of the AhR/ARNT complex by TGF-β/Smad signaling represses CYP1A1 gene expression and inhibits benze[a]pyrene-mediated cytotoxicity. Cytochrome P450 1A1 (CYP1A1) catalyzes the metabolic activation of polycyclic aromatic hydrocarbons (PAHs) such as benzo[a]pyrene (B[a]P) and is transcriptionally regulated by the aryl hydrocarbon receptor (AhR)/AhR nuclear translocator (ARNT) complex upon exposure to PAHs. Accordingly, inhibition of CYP1A1 expression reduces production of carcinogens from PAHs. Although transcription of the CYP1A1 gene is known to be repressed by transforming growth factor-β (TGF-β), how TGF-β signaling is involved in the suppression of CYP1A1 gene expression has yet to be clarified. In this study, using mammalian cell lines, along with shRNA-mediated gene silencing, CRISPR/Cas9-based genome editing, and reporter gene and quantitative RT-PCR assays, we found that TGF-β signaling dissociates the B[a]P-mediated AhR/ARNT heteromeric complex. Among the examined Smads, Smad family member 3 (Smad3) strongly interacted with both AhR and ARNT via its MH2 domain. Moreover, hypoxia-inducible factor 1α (HIF-1α), which is stabilized upon TGF-β stimulation, also inhibited AhR/ARNT complex formation in the presence of B[a]P. Thus, TGF-β signaling negatively regulated the transcription of the CYP1A1 gene in at least two different ways. Of note, TGF-β abrogated DNA damage in B[a]P-exposed cells. We therefore conclude that TGF-β may protect cells against carcinogenesis because it inhibits CYP1A1-mediated metabolic activation of PAHs as part of its anti-tumorigenic activities."	"Smad3 gene C-terminal phosphorylation site mutation aggravates CCl4 -induced inflammation in mice. The expression of C-terminal phosphorylated Smad3 (pSmad3C) is down-regulated with the progression of liver disease. Thus, we hypothesized that pSmad3C expression may be negatively related to liver disease. To develop novel therapeutic strategies, a suitable animal model is required that will allow researchers to study the effect of Smad3 domain-specific phosphorylation on liver disease progression. The current study aimed to construct a new mouse model with the Smad3 C-terminal phosphorylation site mutation and to explore the effects of this mutation on CCl4 -induced inflammation. Smad3 C-terminal phosphorylation site mutant mice were generated using TetraOne™ gene fixed-point knock-in technology and embryonic stem cell microinjection. Resulting mice were identified by genotyping, and the effects on inflammation were explored in the presence or absence of CCl4 . No homozygous mice were born, indicating that the mutation is embryonic lethal. There was no significant difference in liver phenotype and growth between the wild-type (WT) and heterozygous (HT) mice in the absence of reagent stimulation. After CCl4 -induced acute and chronic liver damage, liver pathology, serum transaminase (ALT/AST) expression and levels of inflammatory factors (IL-6/TNF-α) were more severely altered in HT mice than in WT mice. Furthermore, pSmad3C protein levels were lower in liver tissue from HT mice. These results suggest that Smad3 C-terminal phosphorylation may have a protective effect during the early stages of liver injury. In summary, we have generated a new animal model that will be a novel tool for future research on the effects of Smad3 domain-specific phosphorylation on liver disease progression."	"Proteoglycan-4 regulates fibroblast to myofibroblast transition and expression of fibrotic genes in the synovium. Synovial tissue fibrosis is common in advanced OA with features including the presence of stress fiber-positive myofibroblasts and deposition of cross-linked collagen type-I. Proteoglycan-4 (PRG4) is a mucinous glycoprotein secreted by synovial fibroblasts and is a major component of synovial fluid. PRG4 is a ligand of the CD44 receptor. Our objective was to examine the role of PRG4-CD44 interaction in regulating synovial tissue fibrosis in vitro and in vivo. OA synoviocytes were treated with TGF-β ± PRG4 for 24 h and α-SMA content was determined using immunofluorescence. Rhodamine-labeled rhPRG4 was incubated with OA synoviocytes ± anti-CD44 or isotype control antibodies and cellular uptake of rhPRG4 was determined following a 30-min incubation and α-SMA expression following a 24-h incubation. HEK-TGF-β cells were treated with TGF-β ± rhPRG4 and Smad3 phosphorylation was determined using immunofluorescence and TGF-β/Smad pathway activation was determined colorimetrically. We probed for stress fibers and focal adhesions (FAs) in TGF-β-treated murine fibroblasts and fibroblast migration was quantified ± rhPRG4. Synovial expression of fibrotic markers: α-SMA, collagen type-I, and PLOD2 in Prg4 gene-trap (Prg4<sup>GT</sup>) and recombined Prg4<sup>GTR</sup> animals were studied at 2 and 9 months of age. Synovial expression of α-SMA and PLOD2 was determined in 2-month-old Prg4<sup>GT/GT</sup>&amp;Cd44<sup>-/-</sup> and Prg4<sup>GTR/GTR</sup>&amp;Cd44<sup>-/-</sup> animals. PRG4 reduced α-SMA content in OA synoviocytes (p &lt; 0.001). rhPRG4 was internalized by OA synoviocytes via CD44 and CD44 neutralization attenuated rhPRG4's antifibrotic effect (p &lt; 0.05). rhPRG4 reduced pSmad3 signal in HEK-TGF-β cells (p &lt; 0.001) and TGF-β/Smad pathway activation (p &lt; 0.001). rhPRG4 reduced the number of stress fiber-positive myofibroblasts, FAs mean size, and cell migration in TGF-β-treated NIH3T3 fibroblasts (p &lt; 0.05). rhPRG4 inhibited fibroblast migration in a macrophage and fibroblast co-culture model without altering active or total TGF-β levels. Synovial tissues of 9-month-old Prg4<sup>GT/GT</sup> animals had higher α-SMA, collagen type-I, and PLOD2 (p &lt; 0.001) content and Prg4 re-expression reduced these markers (p &lt; 0.01). Prg4 re-expression also reduced α-SMA and PLOD2 staining in CD44-deficient mice. PRG4 is an endogenous antifibrotic modulator in the joint and its effect on myofibroblast formation is partially mediated by CD44, but CD44 is not required to demonstrate an antifibrotic effect in vivo."	"In Vitro Lineage-Specific Differentiation of Vascular Smooth Muscle Cells in Response to SMAD3 Deficiency: Implications for SMAD3-Related Thoracic Aortic Aneurysm. SMAD3 pathogenic variants are associated with the development of thoracic aortic aneurysms. We sought to determine the role of SMAD3 in lineage-specific vascular smooth muscle cells (VSMCs) differentiation and function. Approach and Results: SMAD3 c.652delA, a frameshift mutation and nonsense-mediated decay, was introduced in human-induced pluripotent stem cells using CRISPR-Cas9. The wild-type and SMAD3<sup>-/-</sup> (c.652delA) human-induced pluripotent stem cells were differentiated into cardiovascular progenitor cells or neural crest stem cells and then to lineage-specific VSMCs. Differentiation, contractility, extracellular matrix synthesis, and TGF-β (transforming growth factor-β) signaling of the differentiated VSMCs were analyzed. The homozygous frameshift mutation resulted in SMAD3 deficiency and was confirmed in human-induced pluripotent stem cells by Sanger sequencing and immunoblot analysis. In cardiovascular progenitor cell-VSMCs, SMAD3 deletion significantly disrupted canonical TGF-β signaling and decreased gene expression of VSMC markers, including SM α-actin, myosin heavy chain 11, calponin-1, SM22α, and key controlling factors, SRF and myocardin, but increased collagen expression. The loss of SMAD3 significantly decreased VSMC contractility. In neural crest stem cells-VSMCs, SMAD3 deficiency did not significantly affect the VSMC differentiation but decreased ELN (elastin) expression and increased phosphorylated SMAD2. Expression of mir-29 was increased in SMAD3<sup>-/-</sup> VSMCs, and inhibition of mir-29 partially rescued ELN expression. SMAD3-dependent TGF-β signaling was essential for the differentiation of cardiovascular progenitor cell-VSMCs but not for the differentiation of neural crest stem cell-VSMCs. The lineage-specific TGF-β responses in human VSMCs may potentially contribute to the development of aortic root aneurysms in patients with SMAD3 mutations."	"Si-Miao-Yong-An decoction attenuates cardiac fibrosis via suppressing TGF-β1 pathway and interfering with MMP-TIMPs expression. Myocardial fibrosis is an important pathological feature of pressure overload cardiac remodeling. Si-Miao-Yong-An decoction (SMYAD), a traditional Chinese formula, is now clinically used in the treatment of cardiovascular diseases in China. However, its mechanisms in the prevention of heart failure are not fully revealed. To determine whether treatment with SMYAD for 4 weeks would lead to changes in collagen metabolism and ventricular remodeling in a mice model of heart failure. Mice were subjected to transverse aorta constriction to generate pressure overload induced cardiac remodeling and then were administered SMYAD (14.85 g/kg/day) or captopril (16.5 mg/kg/day) intragastrically for 4 weeks after surgery. Echocardiography and immunohistochemical examination were used to evaluate the effects of SMYAD. The mRNA of collagen metabolism biomarkers were detected. Protein expression of TGF-β1/Smad and TGF-β1/TAK1/p38 pathway were assessed by Western blot. SMYAD significantly improved cardiac function, increased left ventricle ejection fraction, and decreased fibrosis area and αSMA expression. Moreover, SMYAD reduced proteins expression related to collagen metabolism, including Col1, Col3, TIMP2 and CTGF. The increased levels of TGF-β1, Smad2, and Smad3 phosphorylation were attenuated in SMYAD group. In addition, SMYAD reduced the levels of TGF-β1, p-TAK1 and p-p38 compared with TAC group. SMYAD improved cardiac fibrosis and heart failure by inhibition of TGF-β1/Smad and TGF-β1/TAK1/p38 pathway. SMYAD protected against cardiac fibrosis and maintained collagen metabolism balance by regulating MMP-TIMP expression. Taken together, these results indicate that SMYAD might be a promising therapeutic agent against cardiac fibrosis."	"Autophagy in the physiological endometrium and cancer. Autophagy is a highly conserved catabolic process and a major cellular pathway for the degradation of long-lived proteins and cytoplasmic organelles. An increasing body of evidence has unveiled autophagy as an indispensable biological function that helps to maintain normal tissue homeostasis and metabolic fitness that can also lead to severe consequences for the normal cellular functioning when altered. Recent accumulating data point to autophagy as a key player in a wide variety of physiological and pathophysiological conditions in the human endometrium, one of the most proficient self-regenerating tissues in the human body and an instrumental player in placental species reproductive function. The current review highlights the most recent findings regarding the process of autophagy in the normal and cancerous endometrial tissue. Current research efforts aiming to therapeutically exploit autophagy and the methodological approaches used are discussed. 3-MA: 3-methyladenine; ACACA (acetyl-CoA carboxylase alpha); AICAR: 5-aminoimidazole-4-carboximide riboside; AKT: AKT serine/threonine kinase; AMPK: AMP-activated protein kinase; ATG: autophagy related; ATG12: autophagy related 12; ATG16L1: autophagy related 16 like 1; ATG3: autophagy related 3; ATG4C: autophagy related 4C cysteine peptidase; ATG5: autophagy related 5; ATG7: autophagy related 7; ATG9: autophagy related 9; Baf A1: bafilomycin A1; BAX: BCL2 associated X, apoptosis regulator; BCL2: BCL2 apoptosis regulator; BECN1: beclin 1; CACNA1D: calcium voltage-gated channel subunit alpha1 D; CASP3: caspase 3; CASP7: caspase 7; CASP8: caspase 8; CASP9: caspase 9; CD44: CD44 molecule (Indian blood group); CDH1: cadherin 1; CDKN1A: cyclin dependent kinase inhibitor 1A; CDKN2A: cyclin dependent kinase inhibitor 2A; CMA: chaperone-mediated autophagy; CQ: chloroquine; CTNNB1: catenin beta 1; DDIT3: DNA damage inducible transcript 3; EC: endometrial cancer; EGFR: epidermal growth factor receptor; EH: endometrial hyperplasia; EIF4E: eukaryotic translation initiation factor 4E; EPHB2/ERK: EPH receptor B2; ER: endoplasmic reticulum; ERBB2: er-b2 receptor tyrosine kinase 2; ERVW-1: endogenous retrovirus group W member 1, envelope; ESR1: estrogen receptor 1; FSH: follicle-stimulating hormone; GCG/GLP1: glucagon; GFP: green fluorescent protein; GIP: gastric inhibitory polypeptide; GLP1R: glucagon-like peptide-1 receptor; GLS: glutaminase; H2AX: H2A.X variant histone; HIF1A: hypoxia inducible factor 1 alpha; HMGB1: high mobility group box 1; HOTAIR: HOX transcript antisense RNA; HSPA5: heat shock protein family A (HSP70) member 5; HSPA8: heat shock protein family A (HSP70) member 8; IGF1: insulin like growth factor 1; IL27: interleukin 27; INS: insulin; ISL: isoliquiritigenin; KRAS: KRAS proto-oncogene, GTPase; LAMP2: lysosomal-associated membrane protein 2; lncRNA: long-non-coding RNA; MAP1LC3A/LC3A: microtubule associated protein 1 light chain 3 alpha; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; MAPK8: mitogen-activated protein kinase 8; MAPK9: mitogen-activated protein kinase 9; MPA: medroxyprogesterone acetate; MTOR: mechanistic target of rapamycin kinase; MTORC1: mechanistic target of rapamycin kinase complex 1; MTORC2: mechanistic target of rapamycin kinase complex 2; MYCBP: MYC-binding protein; NFE2L2: nuclear factor, erythroid 2 like 2; NFKB: nuclear factor kappa B; NFKBIA: NFKB inhibitor alpha; NK: natural killer; NR5A1: nuclear receptor subfamily 5 group A member 1; PARP1: poly(ADP-ribose) polymerase 1; PAX2: paired box 2; PDK1: pyruvate dehydrogenase kinase 1; PDX: patient-derived xenograft; PIK3C3/Vps34: phosphatidylinositol 3-kinase catalytic subunit type 3; PIK3CA: phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha; PIK3R1: phosphoinositide-3-kinase regulatory subunit 1; PIKFYVE: phosphoinositide kinase, FYVE-type zinc finger containing; PPD: protopanaxadiol; PRKCD: protein kinase C delta; PROM1/CD133: prominin 1; PtdIns3K: class III phosphatidylinositol 3-kinase; PtdIns3P: phosphatidylinositol-3-phosphate; PTEN: phosphatase and tensin homolog; RB1CC1/FIP200: RB1 inducible coiled-coil 1; RFP: red fluorescent protein; RPS6KB1/S6K1: ribosomal protein S6 kinase B1; RSV: resveratrol; SGK1: serum/glucocorticoid regulated kinase 1; SGK3: serum/glucocorticoid regulated kinase family member 3; SIRT: sirtuin; SLS: stone-like structures; SMAD2: SMAD family member 2; SMAD3: SMAD family member 3; SQSTM1: sequestosome 1; TALEN: transcription activator-like effector nuclease; TGFBR2: transforming growth factor beta receptor 2; TP53: tumor protein p53; TRIB3: tribbles pseudokinase 3; ULK1: unc-51 like autophagy activating kinase 1; ULK4: unc-51 like kinase 4; VEGFA: vascular endothelial growth factor A; WIPI2: WD repeat domain, phosphoinositide interacting 2; XBP1: X-box binding protein 1; ZFYVE1: zinc finger FYVE domain containing 1."	"The transcriptional regulator ZNF398 mediates pluripotency and epithelial character downstream of TGF-beta in human PSCs. Human pluripotent stem cells (hPSCs) have the capacity to give rise to all differentiated cells of the adult. TGF-beta is used routinely for expansion of conventional hPSCs as flat epithelial colonies expressing the transcription factors POU5F1/OCT4, NANOG, SOX2. Here we report a global analysis of the transcriptional programme controlled by TGF-beta followed by an unbiased gain-of-function screening in multiple hPSC lines to identify factors mediating TGF-beta activity. We identify a quartet of transcriptional regulators promoting hPSC self-renewal including ZNF398, a human-specific mediator of pluripotency and epithelial character in hPSCs. Mechanistically, ZNF398 binds active promoters and enhancers together with SMAD3 and the histone acetyltransferase EP300, enabling transcription of TGF-beta targets. In the context of somatic cell reprogramming, inhibition of ZNF398 abolishes activation of pluripotency and epithelial genes and colony formation. Our findings have clear implications for the generation of bona fide hPSCs for regenerative medicine."	"Kidney-targeted baicalin-lysozyme conjugate ameliorates renal fibrosis in rats with diabetic nephropathy induced by streptozotocin. Diabetic nephropathy (DN) is one of the most common and serious complications of diabetes, and is the most important cause of death for diabetic patients. Baicalin (BAI) has anti-oxidative, anti-inflammatory and anti-apoptotic activities, which play a role in attenuating insulin resistance and protecting the kidney. Moreover, cell-specific targeting of renal tubular cells is an approach to enhance drug accumulation in the kidney. Forty-five Sprague-Dawley rats were divided into four groups. A diabetes model was created using streptozotocin (STZ) intraperitoneally injection. The four groups included: Control group (n = 10), DN (n = 15), BAI treatment (BAI; n = 10) and BAI-LZM treatment (BAI-LZM; n = 10) groups. In the current study, the renoprotection and anti-fibrotic effects of BAI-lysozyme (LZM) conjugate were further investigated in rats with DN induced by STZ compared with BAI treatment alone. The results suggest that BAI-LZM better ameliorates renal impairment, metabolic disorder and renal fibrosis than BAI alone in rats with DN, and the potential regulatory mechanism likely involves inhibiting inflammation via the nuclear factor-κB signaling pathway, inhibiting extracellular matrix accumulation via the transforming growth factor-β/Smad3 pathway and regulating cell proliferation via the insulin-like growth factor (IGF)-1/IGF-1 receptor/p38 Mitogen-activated protein kinase (MAPK) pathway. BAI and the kidney-targeted BAI-LZM can utilize the body's cytoprotective pathways to reactivate autophagy (as indicated by the autophagy markers mechanistic target of rapamycin and sirtuin 1 to ameliorate DN outcomes. Our data support the traditional use of S. baicalensis as an important anti-DN traditional chinese medicine (TCM), and BAI, above all BAI-LZM, is a promising source for the identification of molecules with anti-DN effects."	"Chondrocyte suppression is mediated by miR-129-5p via GDF11/SMAD3 signaling in developmental dysplasia of the hip. Recent studies have shown that developmental dysplasia of the hip (DDH) during childhood and in animal models is associated with impaired endochondral ossification of the roof of the acetabulum, yet the molecular mechanism of this pathology remains unknown. To address this, an animal model of DDH was established in 4-week-old New Zealand white rabbits by cast immobilization of knee extension. Fifty-six rabbits of DDH were involved in this study, including 21 male rabbits and 25 female rabbits. High-throughput RNA sequencing identified 18 differentially expressed microRNAs; miR-129-5p downregulation was further confirmed by quantitative polymerase chain reaction. Bioinformatics and luciferase reporter assay identified growth differentiation factor 11 (GDF11) as the target gene of miR-129-5p in vitro. miR-129-5p downregulation increased GDF11 expression, which induced the phosphorylation of SMAD family member 3. As a result, the expression of runt-related transcription factor 2, Indian hedgehog homolog, and collagen type X was inhibited in vitro. Meanwhile, Alizarin Red S and Von Kossa staining revealed reduced formation of mineralized nodules by chondrocytes after miR-129-5P downregulation compared with the control. Additionally, proliferation assays and flow cytometry confirmed the suppression of chondrocyte proliferation and G1 cell cycle arrest following miR-129-5p downregulation. These findings indicate that miR-129-5p is able to suppress chondrocyte proliferation and hypertrophic differentiation and decrease mineralization via the miR-129-5p/GDF11/SMAD3 axis. This could present the underlying cause for the observed DDH-associated ossification impairment of the acetabular roof."	"A multi-omics approach expands the mutational spectrum of MAP2K1-related melorheostosis. Melorheostosis is a very rare sclerosing bone dysplasia characterized by asymmetrical and progressive cortical hyperostosis, usually with involvement of soft tissues surrounding the lesions. Recently Kang et al. identified somatic mosaicism for variants (p.Gln56Pro, p.Lys57Asn, or p.Lys57Glu) in the negative regulatory domain of MAP2K1, resulting in increased ERK1/2 signalling in affected tissues. In our study, we employed several sequencing technologies to unravel genetic variants (only present in affected tissues) from four sporadic melorheostosis patients. In the exome of two patients, we identified the same variants (p.K57N and p.K57E) as previously described by Kang et al. WGS and RNAseq analysis in a third patient demonstrated the presence of a novel variant (p.Cys121Ser) in the catalytic domain of MAP2K1. In addition, gene set enrichment analysis of the transcriptome data demonstrated upregulation of proliferative pathways. Interestingly, increased proliferation of MAP2K1 p.Lys57Asn-positive osteoblasts has been reported by Kang et al. The variants located in the hotspot region of the negative regulatory domain as well as this newly identified p.Cys121Ser variant have all been classified as MAP2K1 variants that can constitutively activate the downstream effector Erk. Finally, in a fourth patient with classical radiographic features of melorheostosis, no pathogenic variants could be identified in MAP2K1 or the other candidate genes for melorheostosis (SMAD3; LEMD3; KRAS). In conclusion, our study strongly suggests that not only somatic variants in the regulatory domain of MAP2K1 but also in the catalytic domain can cause melorheostosis. Our observations confirm that mutations in MAP2K1 are a major cause of melorheostosis and also suggest further locus heterogeneity for this disorder."	"E2F5 promotes prostate cancer cell migration and invasion through regulation of TFPI2, MMP-2 and MMP-9. Previously, our laboratory demonstrated that a deregulated E2F5/p38/SMAD3 axis was associated with uncontrolled cellular proliferation in prostate cancer (PCa). Here we investigate the role of E2F5 in PCa in further details. RNAi-mediated E2F5 knockdown and pathway-focused gene expression profiling in PC3 cells identified TFPI2 as a downstream target of E2F5. Manipulation of E2F5 expression was also found to alter MMP-2 and MMP-9 levels as detected by Proteome-Profiler Array, western-blot and qRT-PCR. Site-directed mutagenesis, dual-luciferase assays and chromatin-immunoprecipitation with anti-E2F5-IgG coupled with qPCR confirmed recruitment of E2F5 on TFPI2, MMP-2 and MMP-9 promoters. RNAi-mediated knockdown of E2F5 expression in PC3 caused a significant alteration of cell migration while that of TFFI2 resulted in a modest change. Abrogation of E2F5 and TFPI2 expression was associated with significant changes in the gelatinolytic activity of active forms of MMP-2 and MMP-9. Moreover, E2F5, MMP-2 and MMP-9 levels were elevated in biopsies of PCa patients relative to that of benign hyperplasia, while TFPI2 expression was reduced. MMP-9 was co-immunoprecipitated with anti-TFPI2-IgG in PCa tissue samples suggesting a direct interaction between the proteins. Finally, Artemisinin treatment in PC3 cells repressed E2F5 along with MMP-2/MMP-9 while triggering TFPI2 expression which alleviated PC3 aggressiveness possibly through inhibition of MMP activities. Together, our study reinstates an oncogenic role of E2F5 which operates as a dual-function transcription factor for its targets TFPI2, MMP-2 and MMP-9 and promotes cellular invasiveness. This study also indicates a therapeutic potential of artemisinin, a natural compound which acts by correcting dysfunctional E2F5/TFPI2/MMP axis in PCa."	"Fetuin-B regulates vascular plaque rupture via TGF-β receptor-mediated Smad pathway in vascular smooth muscle cells. Fetuin-B is a serum protein linked to the regulation of physiological or pathophysiological events such as fertility, energy metabolism, and liver disease. Recently, fetuin-B has been reported to be involved in the modulation of the rupture of atherosclerotic plaques associated with acute myocardial infarction. However, the exact mechanism involved in the modulation of atherosclerotic plaque rupture event by fetuin-B is not fully elucidated yet. In the present study, we investigated whether fetuin-B could influence atherosclerotic plaque rupture through vascular smooth muscle cells (VSMCs). Immunoprecipitation assay using membrane proteins from VSMCs revealed that fetuin-B tightly bound to transforming growth factor-β receptor (TGF-βR). Fetuin-B treatment elevated TGF-βR signals (e.g., phosphorylation of Smad2 and Smad3) in VSMCs. Fetuin-B also stimulated nuclear translocation of phosphorylated Smads. Phosphorylation of Smad and its nuclear translocation by treatment with fetuin-B were inhibited in VSMCs by treatment with SB431542, a selective inhibitor of TGF-βR. Fetuin-B enhanced expression levels of plasminogen activator inhibitor-1 (PAI-1) and matrix metalloproteinase-2 (MMP-2) in VSMCs through its epigenetic modification including recruitments of both histone deacetylase 1 and RNA polymerase II. These epigenetic alterations in VSMCs were also inhibited by treatment with SB431542. In vivo administration of fetuin-B protein increased expression levels of PAI-1 and MMP-2 in the vascular plaque. However, these increases in expression were inhibited by the administration of SB43154. These results indicate that fetuin-B may modulate vascular plaque rupture by promoting expression of PAI-1 and MMP-2 in VSMCs via TGF-βR-mediated Smad pathway."	"Functional and histological evaluation of bone marrow stem cell-derived exosomes therapy on the submandibular salivary gland of diabetic Albino rats through TGFβ/ Smad3 signaling pathway. To prevail over diabetes mellitus and its numerous complications, researchers are seeking new therapies. Exosomes are natural cargo of functional proteins and can be used as a therapeutic delivery of these molecules. The aim of this study was to evaluate the effect of exosomes derived from bone marrow mesenchymal stem cells (BM-MSCs) as a therapeutic intervention in salivary gland diabetic complications. Ten adult healthy male Albino rats, weighing about 150-200 g were grouped into 2 groups. Diabetic group I: consisted of 5 streptozotocin (STZ)-induced diabetic rats. Exosomes treated group II: consisted of 5 STZ-induced diabetic rats, each animal received a single injection of exosomes (100 μg/kg/dose suspended in 0.2 ml PBS) through the tail vein. All animals were sacrificed after 5 weeks from the beginning of the experiment. Submandibular salivary gland samples were excised and processed for histological, ultrastructural examination and PCR for TGFβ, Smad2 and Smad3. Blood glucose level was monitored weekly, salivary IgA and serum amylase were evaluated before and after diabetes induction and at the end of the experiment. Histological and ultrastructural results of the exosomes treated group were promising regarding the glandular and ductal elements with less fibrosis observed. Results of PCR supported the role of exosomes to inhibit the diabetic sequalae in salivary gland and its complications through inhibiting TGFβ and its related pathway via Smad2 and Smad3. Blood glucose levels were reduced. In addition, salivary glands' function was improved as evidenced by reduction in serum amylase and salivary IgA. BM-MSC-derived exosomes could be a novel therapeutic strategy for diabetic complications involving salivary glands."	"Radix Angelica Sinensis and Radix Hedysari Ultrafiltration Extract Protects against X-Irradiation-Induced Cardiac Fibrosis in Rats. Radiation-induced myocardial fibrosis (RIMF) is the main pathological change associated with radiation-induced heart toxicity after radiation therapy in patients with thoracic tumors. There is an antifibrosis effect of Radix Angelica Sinensis and Radix Hedysari (RAS-RH) ultrafiltration extract from Danggui Buxue decoction (DBD) in X-irradiation-induced rat myocardial fibrosis, and this study aimed to investigate whether that effect correlated with apoptosis and oxidative stress damage in primary rat cardiac fibroblasts; further, the potential mechanisms were also explored. In this study, we first found that the RAS-RH antifibrosis effect was associated with the upregulation of microRNA-200a and the downregulation of TGF-β1/smad3 and COL1α. In addition, we also found that the antifibrosis effect of RAS-RH was related to the induction of apoptosis in primary rat cardiac fibroblasts and to the prevention of damage caused by reactive oxygen species (ROS). Interestingly, primary rat cardiac fibroblasts exposed to X-ray radiation underwent apoptosis less frequently in the absence of RAS-RH. Therefore, RAS-RH has the ability to protect against fibrosis, which could be occurring through the induction of apoptosis and the resistance to oxidative stress in rats with X-irradiation-induced myocardial fibrosis; thus, in a model of RIMF, RAS-RH acts against X-irradiation-induced cardiac toxicity."	"MicroRNA Profiling Reveals an Abundant miR-200a-3p Promotes Skeletal Muscle Satellite Cell Development by Targeting TGF-β2 and Regulating the TGF‑β2/SMAD Signaling Pathway. MicroRNAs (miRNAs) are evolutionarily conserved, small noncoding RNAs that play critical post-transcriptional regulatory roles in skeletal muscle development. Chicken is an optimal model to study skeletal muscle formation because its developmental anatomy is similar to that of mammals. In this study, we identified potential miRNAs in the breast muscle of broilers and layers at embryonic day 10 (E10), E13, E16, and E19. We detected 1836 miRNAs, 233 of which were differentially expressed between broilers and layers. In particular, miRNA-200a-3p was significantly more highly expressed in broilers than layers at three time points. In vitro experiments showed that miR-200a-3p accelerated differentiation and proliferation of chicken skeletal muscle satellite cells (SMSCs) and inhibited SMSCs apoptosis. The transforming growth factor 2 (TGF-β2) was identified as a target gene of miR-200a-3p, and which turned out to inhibit differentiation and proliferation, and promote apoptosis of SMSCs. Exogenous TGF-β2 increased the abundances of phosphorylated SMAD2 and SMAD3 proteins, and a miR-200a-3p mimic weakened this effect. The TGFβ2 inhibitor treatment reduced the promotional and inhibitory effects of miR-200a-3p on SMSC differentiation and apoptosis, respectively. Our results indicate that miRNAs are abundantly expressed during embryonic skeletal muscle development, and that miR-200a-3p promotes SMSC development by targeting TGF-β2 and regulating the TGFβ2/SMAD signaling pathway."	"A HGF‑derived peptide suppresses EMT in human lens epithelial cells via the TGF‑β/Smad and Akt/mTOR signaling pathways. Posterior capsule opacification (PCO) as a result of proliferation and fibrogenesis of lens epithelial cells (LECs) is the most frequent long‑term complication of modern cataract surgery. LECs may undergo epithelial‑mesenchymal transition (EMT) that resembles the morphological and molecular characteristics of PCO. A pre‑identified novel, hepatocyte growth factor (HGF)‑derived peptide H‑RN, was reported to exhibit anti‑angiogenic activity and anti‑inflammatory effects in ocular cells both in vitro and in vivo. However, the role of H‑RN in the promotion of the development of EMT in LECs is unknown. In the present study, the effects of H‑RN on the development of EMT induced by transforming growth factor (TGF)‑β in human LECs, and the possible signaling pathways participating in this process were investigated. The results showed that H‑RN promoted the expression of the EMT‑associated markers, α‑smooth muscle actin and fibronectin, whereas the expression of E‑cadherin and connexin 43 were reduced. The morphological changes typically associated with EMT seen in LECs induced by TGF‑β2 were inhibited by H‑RN, which was consistent with the effects of a TGF‑β2 inhibitor, SB431542. Smad2 and Smad3 phosphorylation induced by TGF‑β2 were reduced by H‑RN, and phosphorylation of Akt, mTOR and P70S6K induced by TGF‑β2 were also notably reduced by H‑RN in LECs. Therefore, the results of the present study showed that H‑RN treatment significantly suppressed the development of EMT induced by TGF‑β2, at least partially through the TGF‑β/Smad and Akt/mTOR signaling pathways in human LECs. The present study highlights that H‑RN, a novel HGF‑derived peptide, may be a novel therapeutic agent for prevention and treatment of PCO."	"miR-211 alleviates ischaemia/reperfusion-induced kidney injury by targeting TGFβR2/TGF-β/SMAD3 pathway. MicroRNA-211 (miR-211) is closely related to apoptosis and plays an important role in ischemia/reperfusion (I/R) injury. Whether miR-211 is involved in the protective effects in renal I/R injury is unknown. In this study, we evaluated the role of miR-211 in human tubular epithelial cells in response to hypoxia-reoxygenation (H/R) stimulation and I/R injury in vitro and in vivo. The results revealed that miR-211 was down-regulated and TGFβR2 was up-regulated in human kidney (HK-2) cells subjected to H/R. Luciferase reporter assay showed that TGFβR2 was a direct target of miR-211. Enforced miR-211 expression decreased H/R-induced HK-2 cell apoptosis and increased cell viability, and targeting miR-211 further increased H/R-induced HK-2 cell apoptosis and decreased cell viability. However, the effect of miR-211 was reversed by targeting TGFβR2 or enforced TGFβR2 expression in miR-211 overexpressing cells or miR-211 downexpressing cells. Moreover, we confirmed that miR-211 interacted with TGFβR2, and regulating TGF-β/SMAD3 signal. In vivo in mice, miR-211 overexpression ameliorates biochemical and histological kidney injury, reduces apoptosis in mice following I/R. On the contrary, miR-211 downexpressing promoted histological kidney injury and increased apoptosis in mice following I/R. Inhibition of miR-211 or miR-211 overexpression inhibited TGF-β/SMAD3 pathways or activated TGF-β/SMAD3 signal pathways in vitro and in vivo, which are critical for cell survival. Our findings suggested that miR-211 suppress apoptosis and relieve kidney injury following H/R or I/R via targeting TGFβR2/TGF-β/SMAD3 signals. Therefore, miR-211 may be as therapeutic potential for I/R- induced kidney injury."	"LncRNA GAS5 attenuates fibroblast activation through inhibiting Smad3 signaling. Transforming growth factor-β (TGF-β)-induced fibroblast activation is a key pathological event during tissue fibrosis. Long noncoding RNA (lncRNA) is a class of versatile gene regulators participating in various cellular and molecular processes. However, the function of lncRNA in fibroblast activation is still poorly understood. In this study, we identified growth arrest-specific transcript 5 (GAS5) as a novel regulator for TGF-β-induced fibroblast activation. GAS5 expression was downregulated in cultured fibroblasts by TGF-β and in resident fibroblasts from bleomycin-treated skin tissues. Overexpression of GAS5 suppressed TGF-β-induced fibroblast to myofibroblast differentiation. Mechanistically, GAS5 directly bound mothers against decapentaplegic homolog 3 (Smad3) and promoted Smad3 binding to Protein phosphatase 1A (PPM1A), a Smad3 dephosphatase, and thus accelerated Smad3 dephosphorylation in TGF-β-treated fibroblasts. In addition, GAS5 inhibited fibroblast proliferation. Importantly, local delivery of GAS5 via adenoviral vector suppressed bleomycin-induced skin fibrosis in mice. Collectively, our data revealed that GAS5 suppresses fibroblast activation and fibrogenesis through inhibiting TGF-β/Smad3 signaling, which provides a rationale for an lncRNA-based therapy to treat fibrotic diseases."	"LncRNA HAGLR accelerates femoral neck fracture healing through negatively regulating miRNA-19a-3p. This study aims to uncover the function of long non-coding RNA (lncRNA) HAGLR in the healing process of femoral neck fracture and the underlying mechanism. Expression levels of HAGLR, microRNA-19a-3p (miRNA-19a-3p) and TGFBR2 in fractured femoral neck tissues and adjacent normal tissues were detected by quantitative Real Time-Polymerase Chain Reaction (qRT-PCR). Regulatory effects of HAGLR on viability, apoptosis, migration, and protein levels of BALP and Osteocalcin in MC3T3-E1 cells were determined. Dual-Luciferase reporter gene assay was conducted to assess the binding in HAGLR/miRNA-19a-3p/TGFBR2. In addition, relative levels of TGFBR2, p-smad2, p-smad3, and RUNX2 in MSCs influenced by HAGLR were detected. HAGLR was downregulated in fractured femoral neck tissues. Knockdown of HAGLR reduced viability and migration, enhanced apoptotic rate, as well as downregulated BALP and Osteocalcin in MC3T3-E1 cells. HAGLR served as miRNA-19a-3p sponge, and miRNA-19a-3p directly targeted 3'-untranslated region (3'-UTR) of TGFBR2. Knockdown of HAGLR downregulated expressions of TGFBR2, p-smad2, p-smad3, and RUNX2 in MC3T3-E1 cells, indicating the inhibited TGF-β pathway. LncRNA HAGLR/miRNA-19a-3p/TGFBR2 regulatory loop accelerates the healing process of femoral neck fracture by inhibiting the TGF-β pathway."	"The Integrated Landscape of Biological Candidate Causal Genes in Coronary Artery Disease. Genome-wide association studies (GWASs) have identified more than 150 genetic loci that demonstrate robust association with coronary artery disease (CAD). In contrast to the success of GWAS, the translation from statistical signals to biological mechanism and exploration of causal genes for drug development remain difficult, owing to the complexity of gene regulatory and linkage disequilibrium patterns. We aim to prioritize the plausible causal genes for CAD at a genome-wide level. We integrated the latest GWAS summary statistics with other omics data from different layers and utilized eight different computational methods to predict CAD potential causal genes. The prioritized candidate genes were further characterized by pathway enrichment analysis, tissue-specific expression analysis, and pathway crosstalk analysis. Our analysis identified 55 high-confidence causal genes for CAD, among which 15 genes (LPL, COL4A2, PLG, CDKN2B, COL4A1, FES, FLT1, FN1, IL6R, LPA, PCSK9, PSRC1, SMAD3, SWAP70, and VAMP8) ranked the highest priority because of consistent evidence from different data-driven approaches. GO analysis showed that these plausible causal genes were enriched in lipid metabolic and extracellular regions. Tissue-specific enrichment analysis revealed that these genes were significantly overexpressed in adipose and liver tissues. Further, KEGG and crosstalk analysis also revealed several key pathways involved in the pathogenesis of CAD. Our study delineated the landscape of CAD potential causal genes and highlighted several biological processes involved in CAD pathogenesis. Further studies and experimental validations of these genes may shed light on mechanistic insights into CAD development and provide potential drug targets for future therapeutics."	"Myricetin Possesses Anthelmintic Activity and Attenuates Hepatic Fibrosis via Modulating TGFβ1 and Akt Signaling and Shifting Th1/Th2 Balance in Schistosoma japonicum-Infected Mice. Schistosomiasis is a zoonotic and debilitating parasitic disease caused by Schistosoma japonicum. Praziquantel remains the choice for treating schistosomiasis, but its efficacy could be hampered by emergence of resistance. In this study, using large-scale drug screening, we selected out myricetin, a natural flavonol compound, having a good anti-schistosome effect. We found that myricetin exhibited dose and time-dependent insecticidal effect on S. japonicum in vitro, with an LC50 of 600 μM for 24 h, and inhibited female spawning. The drug mainly destroyed the body structure of the worms and induced apoptosis of the worm cells, which in turn led to death. In addition, oral administration of myricetin in mice infected with S. japonicum showed a deworming effect in vivo, as evidenced by a significant reduction in the liver egg load. H&amp;E staining, quantitative RT-PCR, and Western blotting assays showed that myricetin significantly alleviated liver fibrosis in mice infected with S. japonicum. Myricetin also effectively inhibited the expression of TGFβ1, Smad2, phospho-Smad2, Smad3, phospho-Smad3, ERK, phospho-ERK, Akt, and phospho-Akt in the liver of infected mice, suggesting that myricetin attenuated liver fibrosis in mice via modulating TGFβ1 and Akt signaling. Flow cytometric analysis of Th subtypes (Th1/Th2/Th17/Treg) in the mouse spleen further revealed that myricetin significantly increased the percentage Th1 cells in infected mice and reduced the proportion of Th2 cells and Th17 cells. Immunology multiplex assay further showed that myricetin attenuated S. japonicum-induced rise in the plasma levels of IL-4, IL-5, IL-10, IL-13, and IL-17A in infected mice while increasing the plasma contents of IFN-γ, IL-12, and IL-7. In conclusion, our study provides the first direct evidence that myricin possesses potent anti-schistosome activities in vitro and in vivo, and offers new insights into the mechanisms of action by myricetin. The present findings suggest that myricetin could be further explored as a therapeutic agent for S. japonicum."	"The β-catenin/TCF-4-LINC01278-miR-1258-Smad2/3 axis promotes hepatocellular carcinoma metastasis. Hepatocellular carcinoma (HCC) metastasis is largely responsible for HCC-associated recurrence and mortality. We aimed to identify metastasis-related long non-coding RNAs (lncRNAs) to understand the molecular mechanism of HCC metastasis. We first identified that miR-1258 was downregulated in HCC tissues both in The Cancer Genome Atlas (TCGA) and Sun Yat-sen University Cancer Center (SYSUCC) dataset. MiR-1258 expression negatively correlated with recurrence-free survival and overall survival of HCC patients. MiR-1258 overexpression inhibited migration and invasion of HCC cells both in vitro and in vivo, whereas miR-1258 downregulation promoted cell metastasis. Luciferase assays verified direct binding of miR-1258 to Smad2 and Smad3, thereby attenuating TGF-β/Smad signaling. We further established that lncRNA LINC01278 was a negative regulator of miR-1258. In vivo and in vitro assays demonstrated that LINC01278-mediated HCC metastasis was dependent on miR-1258 expression. Furthermore, miR-1258 downregulation in turn increased LINC01278 expression. We also observed that TCF-4 could bind to the LINC01278 promoter site. In addition, LINC01278 downregulation decreased migration and invasion of HCC cells induced by β-catenin and TGF-β1 both in vitro and in vivo. We uncovered a novel mechanism for β-catenin/TCF-4-LINC01278-miR-1258-Smad2/3 feedback loop activation in HCC metastasis, and the study indicated that LINC01278 could serve as a therapeutic target for HCC metastasis."	"The evolutionarily conserved deubiquitinase UBH1/UCH-L1 augments DAF7/TGF-β signaling, inhibits dauer larva formation, and enhances lung tumorigenesis. Modification of the transforming growth factor β (TGF-β) signaling components by (de)ubiquitination is emerging as a key regulatory mechanism that controls cell signaling responses in health and disease. Here, we show that the deubiquitinating enzyme UBH-1 in Caenorhabditis elegans and its human homolog, ubiquitin C-terminal hydrolase-L1 (UCH-L1), stimulate DAF-7/TGF-β signaling, suggesting that this mode of regulation of TGF-β signaling is conserved across animal species. The dauer larva-constitutive C. elegans phenotype caused by defective DAF-7/TGF-β signaling was enhanced and suppressed, respectively, by ubh-1 deletion and overexpression in the loss-of-function genetic backgrounds of daf7, daf-1/TGF-βRI, and daf4/R-SMAD, but not of daf-8/R-SMAD. This suggested that UBH-1 may stimulate DAF-7/TGF-β signaling via DAF-8/R-SMAD. Therefore, we investigated the effect of UCH-L1 on TGF-β signaling via its intracellular effectors, i.e. SMAD2 and SMAD3, in mammalian cells. Overexpression of UCH-L1, but not of UCH-L3 (the other human homolog of UBH1) or of the catalytic mutant UCH-L1<sup>C90A</sup>, enhanced TGF-β/SMAD-induced transcriptional activity, indicating that the deubiquitination activity of UCH-L1 is indispensable for enhancing TGF-β/SMAD signaling. We also found that UCH-L1 interacts, deubiquitinates, and stabilizes SMAD2 and SMAD3. Under hypoxia, UCH-L1 expression increased and TGF-β/SMAD signaling was potentiated in the A549 human lung adenocarcinoma cell line. Notably, UCH-L1-deficient A549 cells were impaired in tumorigenesis, and, unlike WT UCH-L1, a UCH-L1 variant lacking deubiquitinating activity was unable to restore tumorigenesis in these cells. These results indicate that UCH-L1 activity supports DAF-7/TGF-β signaling and suggest that UCH-L1's deubiquitination activity is a potential therapeutic target for managing lung cancer."	"TOP2A Promotes Tumorigenesis of High-grade Serous Ovarian Cancer by Regulating the TGF-β/Smad Pathway. Background: High-grade serous ovarian cancer (HGS) is the most aggressive form of ovarian cancer due to its rapid spread, insidious onset, and early dissemination throughout the abdominal cavity. However, the molecular pathogenesis of HGS remains unclear. This study aimed to identify key pathogenic genes and explore the underlying molecular mechanisms of HGS using bioinformatics analysis and biological experiments. Methods: Two datasets were downloaded from the Gene Expression Omnibus databases to find differentially expressed genes (DEGs) between HGS and normal tissue samples. Gene Ontology and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analyses were applied to investigate the primary functions of the DEGs. The protein-protein interaction network of the DEGs was constructed, and the interactions of various genes were ranked. Results: Topoisomerase IIα (TOP2A) was identified as the hub gene associated with survival and mutation. Gene Set Enrichment Analysis and Gene Set Variation Analysis were conducted to predict the potential biological functions of TOP2A. Furthermore, the TOP2A expression level was significantly up-regulated in HGS cell lines, SKOV3 and HEY. Moreover, the proliferation, migration, and invasion capacities of SKOV3 and HEY cells were strongly suppressed after TOP2A knockdown. In addition, the levels of phosphorylated Smad2 and Smad3, the key members of the transforming growth factor-β (TGF-β)/Smad pathway that regulate HGS tumorigenesis, strongly decreased after knockdown of TOP2A. Conclusions: This study identified that TOP2A was up-regulated in HGS, and it accelerated HGS progression via the TGF-β/Smad pathway. The findings provided a blueprint for TOP2A serving as a therapeutic target and a treatment response prediction biomarker for HGS."	"TGF-β signaling regulates SPOP expression and promotes prostate cancer cell stemness. SPOP, a substrate binding adaptor of E3 ubiquitin ligase Cullin3, is frequently mutated in human prostate cancer (PCa). However, whether and how SPOP is regulated at transcriptional level in PCa remain unclear. Here, we report that SPOP is down-regulated in PCa stem-like cells (CSCs) and tissues. Our study reveals that SPOP expression is repressed by TGF-β / SMAD signaling axis in PCa CSCs. SPOP promoter contains SMAD-binding elements (SBEs), which can interact with SMAD3. Moreover, TGF-β signaling inhibitor SB431542 promotes the SPOP expression and abrogates PCa stemness. Clinically, SPOP expression is downregulated in PCa patients, which is significantly related to a poor prognosis and lower survival rate. Thus, our findings uncover a mechanism of how SPOP expression is mediated in PCa CSCs via TGF-β/ SMAD3 signaling."	"Transforming growth factor β (TGF-β) receptor signaling regulates kinase networks and phosphatidylinositol metabolism during T-cell activation. The cytokine content in tissue microenvironments shapes the functional capacity of a T cell. This capacity depends on the integration of extracellular signaling through multiple receptors, including the T-cell receptor (TCR), co-receptors, and cytokine receptors. Transforming growth factor β (TGF-β) signals through its cognate receptor, TGFβR, to SMAD family member proteins and contributes to the generation of a transcriptional program that promotes regulatory T-cell differentiation. In addition to transcription, here we identified specific signaling networks that are regulated by TGFβR. Using an array of biochemical approaches, including immunoblotting, kinase assays, immunoprecipitation, and flow cytometry, we found that TGFβR signaling promotes the formation of a SMAD3/4-protein kinase A (PKA) complex that activates C-terminal Src kinase (CSK) and thereby down-regulates kinases involved in proximal TCR activation. Additionally, TGFβR signaling potentiated CSK phosphorylation of the P85 subunit in the P85-P110 phosphoinositide 3-kinase (PI3K) heterodimer, which reduced PI3K activity and down-regulated the activation of proteins that require phosphatidylinositol (3,4,5)-trisphosphate (PtdIns(3,4,5)P3) for their activation. Moreover, TGFβR-mediated disruption of the P85-P110 interaction enabled P85 binding to a lipid phosphatase, phosphatase and tensin homolog (PTEN), aiding in the maintenance of PTEN abundance and thereby promoting elevated PtdIns(4,5)P2 levels in response to TGFβR signaling. Taken together, these results highlight that TGF-β influences the trajectory of early T-cell activation by altering PI3K activity and PtdIns levels."	"Saroglitazar attenuates renal fibrosis induced by unilateral ureteral obstruction via inhibiting TGF-β/Smad signaling pathway. Obstructive nephropathy is a common clinical case that causes chronic kidney disease and ultimately progresses to end-stage renal disease. The activation of peroxisome proliferator-activated receptor-α (PPAR-α) reduces tubulointerstitial fibrosis and inflammation associated with obstructive nephropathy. This study was carried out to investigate the potential effect of saroglitazar, dual PPAR-α/γ agonist, in alleviating renal fibrosis induced by unilateralureteral obstruction (UUO). Twenty-four male Sprague Dawley rats were haphazardly divided into four groups of six rats each, including sham operated group, vehicle- or saroglitazar-treated UUO and saroglitazar groups. Rats received oral gavage of saroglitazar (3 mg/kg/day) for 13 days. On day 14, all rats were sacrificed; blood and renal tissues were collected. Saroglitazar inhibited UUO-induced oxidative stress; it decreased the elevated levels of MDA and nitric oxide and increased levels of GSH and SOD in renal tissue. Moreover, saroglitazar repressed UUO-induced inflammation; it decreased the renal levels of nuclear factor kappa B (NF-κB) and interleukin-6 (IL-6). Furthermore, saroglitazar inhibited the accumulation of extracellular matrix via decreasing collagen, hydroxylproline and matrix metalloproteinase-9 (MMP-9) levels. Saroglitazar also decreased the expression of both the alpha smooth muscle actin (α-SMA) and tumor growth factor-beta (TGF-β). These effects were in parallel with reduction in mothers against decapentaplegic homolog 3 (smad3) expression and plasminogen activator inhibitor-1 (PAI-1) levels. Collectively, the protective impact of saroglitazar might be attributed to its antioxidant, anti-inflammatory and anti-fibrotic effects against UUO-induced tubulointerstitial fibrosis through its regulatory effect on TGF-β1/Smad3 signaling pathway."	"IL-37 As a Potential Biotherapeutics of Inflammatory Diseases. Interleukin-37 (IL-37) was discovered as a new member of pro-inflammatory IL-1 superfamily. However, further studies suggested that IL-37 plays a critical anti-inflammatory role in innate and adaptive immunity. IL-37 may suppress the inflammatory process via intracellular SMAD family member 3 (SMAD3) and extracellular IL-18 Receptor alpha (IL-18Rα) signaling pathway, respectively. Meanwhile, the abnormal expression of IL-37 was observed in immune-mediated inflammatory diseases, such as inflammatory bowel disease, rheumatoid arthritis, atherosclerosis, systemic lupus erythematosus, asthma, and multiple sclerosis, which suggest IL-37 is a potential therapeutic target for these diseases. In this review, we summarize the anti-inflammatory mechanism of IL-37 and discuss the critical roles of IL-37 in the pathogenesis of these diseases. Further studies are required to confirm the effectiveness of IL-37 as a novel target for these inflammatory diseases."	"A novel role of VEPH1 in regulating AoSMC phenotypic switching. Abdominal aortic aneurysm (AAA) is a potentially lethal disease featured by focal dilatation in the aorta. The transition of vascular smooth muscle cells (SMCs) from a contractile/differentiated to a synthetic/dedifferentiated phenotype is considered to contribute to AAA formation and expansion. Our previous gene microarray data showed that Ventricular Zone Expressed PH Domain Containing 1 (VEPH1) expression increased in angiotensin II (Ang II)-infused aortic tissues. This study was thus performed to further explore the role of VEPH1. Herein, we first demonstrate that VEPH1 increases in the SMCs of Ang II-treated abdominal aortas. As in vivo, Ang II also upregulated VEPH1 expression in cultured hAoSMCs. The dedifferentiation of human aortic SMCs (hAoSMCs) was induced by a 24-hr stimulation of Ang II (1 μM)-the expression of contractile SMC markers, MYH11 and α-smooth muscle actin (α-SMA) decreased and that of synthetic markers, proliferating cell nuclear antigen and Vimentin increased. Inhibition of VEPH1 prevented Ang II-induced pathological dedifferentiation of hAoSMCs as indicated by the restored expression of MYH11 and α-SMA. In contrast, the forced overexpression of VEPH1 aggravated Ang II's effects. Furthermore, we demonstrated that VEPH1 and transforming growth factor-β1 (TGF-β1), a key regulator responsible for vascular SMC differentiation, negatively regulated each other's transcription. In contrast to VEPH1 silencing, its overexpression inhibited recombinant TGF-β1-induced increases in MYH11 and α-SMA and suppressed Smad3 phosphorylation and nuclear accumulation. Collectively, our study demonstrates that VEPH1 elevation promotes the synthetic phenotype switching of AoSMCs and suppressed the TGF-β1/Smad3 signaling pathway. Identification of VEPH1 as a pathogenic molecule for AAA formation provides novel insights into this disease."	"Pirfenidone anti-fibrotic effects are partially mediated by the inhibition of MUC1 bioactivation. Pirfenidone is a pleiotropic molecule approved to treat idiopathic pulmonary fibrosis (IPF). Pirfenidone has demonstrated to downregulate transforming growth factor-β1 (TGF-β1) cellular effects. However, its anti-fibrotic mechanism remains unclear. Here, we aim to analyze the effects of pirfenidone on the TGF-β1 canonical and non-canonical pathways, as well as, on the most characteristic IPF cellular processes. Results observed in this work showed that TGF-β1-induced canonical SMAD3 and non-canonical ERK1/2 phosphorylations were not inhibited by pirfenidone in alveolar A549 and lung fibroblasts MRC5 cells. In contrast, pirfenidone inhibited TGF-β1-induced MUC1-CT Thr<sup>41</sup> (1224) and Tyr<sup>46</sup> (1229) phosphorylations, thus reducing the β-catenin activation. Additionally, immunoprecipitation and immunofluorescence studies in ATII cells and lung fibroblasts showed that pirfenidone inhibited the formation and nuclear translocation of the transcriptional fibrotic TGF-β1-induced phospho-SMAD3/MUC1-CT/active-β-catenin complex, and consequently the SMAD-binding element activation (SBE). This study provided also evidence of the inhibitory effect of pirfenidone on the TGF-β1-induced ATII to mesenchymal and fibroblast to myofibroblast transitions, fibroblast proliferation and ATII and fibroblast senescence. Therefore, it indicates that pirfenidone's inhibitory effect on TGF-β1-induced fibrotic cellular processes is mediated by the inhibition of MUC1-CT phosphorylation, β-catenin activation, nuclear complex formation of phospho-SMAD3/MUC1-CT/active β-catenin and SBE activation, which may be of value to further develop anti-fibrotic IPF therapies."	"Type A Aortic Dissection Caused by Loeys-Dietz Syndrome with Novel Variation. Loeys-Dietz syndrome (LDS) is a rare autosomal-dominant connective tissue disorder that can lead to aortic aneurysm and dissection. There are 5 different types caused by mutations in TGFβR1 (transforming growth factor β receptor), TGFβR2, SMAD3, TGFβ2 (transforming growth factor β), and TGFβ3 respectively. The prevalence of LDS is estimated to be less than 1 in 100,000. There is considerable variability in the phenotype of LDS, from mild features to severe systemic abnormalities. There is overlap in the manifestations of LDS and Marfan syndrome, including increased risk of ascending aortic aneurysm and aortic dissection, as well as abnormally long limbs and fingers. Management can be very challenging with a high risk of complications with revascularization. We report a 60-year-old female who presented with a type A aortic dissection that originated from the aortic root and extended to the bilateral common femoral arteries. Genetic testing revealed a novel alteration of the TGFβR1 gene (c689 C&gt;A in exon 4) that to our knowledge has not been previously reported or found in large population cohorts. She was managed through a Bentall procedure that was complicated by a graft tear and stenosis of the distal anastomosis site, in addition to requiring a temporary pacemaker implantation and hemodialysis after the procedure. Ultimately, the patient was able to recover fully."	"Design, synthesis and discovery of 2(1H)-quinolone derivatives for the treatment of pulmonary fibrosis through inhibition of TGF-β/smad dependent and independent pathway. Idiopathic pulmonary fibrosis (IPF) is a progressive, life-threatening and interstitial lung disease with the median survival of only 3-5 years. However, due to the unclear etiology and problems in accurate diagnosis, up to now only two drugs were approved by FDA for the treatment of IPF and their outcome responses are limited. Numerous studies have shown that TGF-β is the most important cytokine in the development of pulmonary fibrosis and plays a role through its downstream signaling molecule TGF-binding receptor Smads protein. In this paper, compounds bearing 2(1H)-quinolone scaffold were designed and their anti-fibrosis effects were evaluated. Of these compounds, 20f was identified as the most active one and could inhibit TGF-β-induced collagen deposition of NRK-49F cells and mouse fibroblasts migration with comparable activity and lower cytotoxicity than nintedanib in vitro. Further mechanism studies indicated that 20f reduced the expression of fibrogenic phenotypic protein α-SMA and collagen Ⅰ by inhibiting the TGF-β/Smad dependent pathways and ERK1/2 and p38 pathways. Moreover, compared with the nintedanib, 20f (100 mg/kg/day, p.o) more effectively alleviated collagen deposition in lung tissue and delayed the destruction of lung tissue structure both in bleomycin-induced prevention and treatment mice pulmonary fibrosis models. The immunohistochemical experiments further showed that 20f could block the expression level of phosphorylated Smad3 in the lung tissue cells, which resulted in its anti-fibrosis effects in vivo. In addition, 20f demonstrated good bioavailability (F = 41.55% vs 12%, compare with nintedanib) and an appropriate elimination half-life (T1/2 = 3.5 h), suggesting that 20f may be a potential drug candidate for the treatment of pulmonary fibrosis."	"TGF-β1-driven reduction of cytoglobin leads to oxidative DNA damage in stellate cells during non-alcoholic steatohepatitis. Cytoglobin (CYGB) is a respiratory protein that acts as a scavenger of reactive oxygen species. The molecular role of CYGB in human hepatic stellate cell (HSC) activation and human liver disease remains uncharacterised. The aim of this study was to reveal the mechanism by which the TGF-β1/SMAD2 pathway regulates the human CYGB promoter and the pathophysiological function of CYGB in human non-alcoholic steatohepatitis (NASH). Immunohistochemical staining was performed using human NASH biopsy specimens. Molecular and biochemical analyses were performed by western blotting, quantitative PCR, and luciferase and immunoprecipitation assays. Hydroxyl radicals (<sup>•</sup>OH) and oxidative DNA damage were measured using an <sup>•</sup>OH-detectable probe and 8-hydroxy-2'-deoxyguanosine (8-OHdG) ELISA. In culture, TGF-β1-pretreated human HSCs exhibited lower CYGB levels - together with increased NADPH oxidase 4 (NOX4) expression - and were primed for H2O2-triggered <sup>•</sup>OH production and 8-OHdG generation; overexpression of human CYGB in human HSCs reversed these effects. Electron spin resonance demonstrated the direct <sup>•</sup>OH scavenging activity of recombinant human CYGB. Mechanistically, pSMAD2 reduced CYGB transcription by recruiting the M1 repressor isoform of SP3 to the human CYGB promoter at nucleotide positions <sup>+</sup>2-<sup>+</sup>13 from the transcription start site. The same repression did not occur on the mouse Cygb promoter. TGF-β1/SMAD3 mediated αSMA and collagen expression. Consistent with observations in cultured human HSCs, CYGB expression was negligible, but 8-OHdG was abundant, in activated αSMA<sup>+</sup>pSMAD2<sup>+</sup>- and αSMA<sup>+</sup>NOX4<sup>+</sup>-positive hepatic stellate cells from patients with NASH and advanced fibrosis. Downregulation of CYGB by the TGF-β1/pSMAD2/SP3-M1 pathway brings about <sup>•</sup>OH-dependent oxidative DNA damage in activated hepatic stellate cells from patients with NASH. Cytoglobin (CYGB) is a respiratory protein that acts as a scavenger of reactive oxygen species and protects cells from oxidative DNA damage. Herein, we show that the cytokine TGF-β1 downregulates human CYGB expression. This leads to oxidative DNA damage in activated hepatic stellate cells. Our findings provide new insights into the relationship between CYGB expression and the pathophysiology of fibrosis in patients with non-alcoholic steatohepatitis."	"MiR-34 promotes apoptosis of lens epithelial cells in cataract rats via the TGF-β/Smads signaling pathway. To discuss the effect of micro ribonucleic acid (miR)-34 on the lens epithelial cell functions in the cataract rats. Differentially expressed miRNAs in the lens epithelial cells of the cataract rats were screened out by analyzing microarrays. The lens epithelial cells of the cataract rats transfected with miR-34 mimics were set as transfection group. Cells with silenced transforming growth factor-β (TGF-β) using RepSox were regarded as the transfection + inhibitor group, and the cells transfected with NC constituted control group. Relative expressions of miR-34, key genes in the TGF-β/Smads signaling pathway and apoptosis-related proteins [B-cell lymphoma-2 (Bcl-2), Bcl-2 associated X protein (Bax), Bcl-2 associated K protein (Bak), caspase-9 and surviving] in the control group, transfection group, and transfection + inhibitor group were detected. The proportions of apoptotic cells in the three groups were determined via flow cytometry. The differentially expressed miRNAs in the lens epithelial cells of the cataract rats included miR-5, miR-128, etc. Among the tested miRNAs, miR-34 presented remarkably downregulated expression [log2 fold change (FC) =-2.11, p=0.000]. After the lens epithelial cells of the cataract rats were transfected with miR-34 mimics, the expression of miR-34 was evidently elevated (p=0.000), while the expressions of TGF-β, Smad1, and Smad3 were significantly up-regulated. Following the treatment with the TGF-β inhibitor RepSox, the expressions of TGF-β, Smad1, and Smad3 were downregulated. After transfection of miR-34 mimics in lens epithelial cells of the cataract rats, upregulated Bax and Bak, downregulated Bcl-2 and surviving, and elevated apoptosis rate were observed. After the TGF-β inhibitor RepSox was added, the expressions of Bax and Bak declined prominently, while those of Bcl-2 and survivin were on the contrary, manifesting a declining cell apoptosis rate. The expression of caspase-9 had no significant change among the three groups. The proportion of apoptotic cells in control group, transfection group, and transfection + inhibitor group was 2.33%, 38.14%, and 16.88%, respectively, displaying differences among the three groups (p=0.002). MiR-34 can promote the apoptosis in lens epithelial cells of cataract rats via the TGF-β/Smads signaling pathway."	"Effect of miR-195-5p on cardiomyocyte apoptosis in rats with heart failure by regulating TGF-β1/Smad3 signaling pathway. The present study set out to investigate the effect of miR-195-5p on cardiomyocyte apoptosis in rats with heart failure (HF) and its mechanism. HF rat model and hypoxia/reoxygenation (H/R) cardiomyocyte model were established. miR-195-5p expression and transforming growth factor-β1 (TGF-β1)/signal transduction protein (Smad)3 signaling pathway in HF rats and H/R cardiomyocytes were interfered. miR-195-5p expression was tested by Rt-PCR, TGF-β1/Smad3 signaling pathway related proteins were detected by Western Blot, apoptosis of HF rat cardiomyocytes was tested by TUNEL, and apoptosis of cardiomyocytes induced by H/R was checked by flow cytometry. miR-195-5p was lowly expressed in myocardium of HF rats, while TGF-β1 and Smad3 proteins were high-expressed. Up-regulating miR-195-5p expression could obviously inhibit cardiomyocyte apoptosis of HF rats, improve their cardiac function, and inhibit activation of TGF-β1/Smad3 signaling pathway. Up-regulation of miR-195-5p expression or inhibition of TGF-β1/Smad3 signaling pathway could obviously inhibit H/R-induced cardiomyocyte apoptosis. Dual-luciferase reporter enzyme verified the targeted relationship between miR-195-5p and Smad3. miR-195-5p can inhibit cardiomyocyte apoptosis and improve cardiac function in HF rats by regulating TGF-β1/Smad3 signaling pathway, which may be a potential target for HF therapy."	"CXCR4 antagonist alleviates proliferation and collagen synthesis of cardiac fibroblasts induced by TGF-β1. We aimed to investigate the effects of CX-C chemokine receptor type 4 (CXCR4) on transforming growth factor (TGF)-β1-induced cardiac fibrosis in Human cardiac fibroblasts (HCFs). HCFs were stimulated with TGF-β1, and the level of α-smooth muscle actin (α-SMA) was assessed by immunofluorescence assay. The expression of CXCR4 was detected by Western blotting. Then the cells were incubated with CXCR4 antagonist AMD 3465. Cell viability was measured by CCK-8 assay. The expression of α-SMA, proliferating cell nuclear antigen (PCNA) and Ki67 were examined. Collagen synthesis was detected by sirius red staining. Moreover, the expression of phpspho-Smad2 (p-Smad2) and p-Smad3 were determined. We found that the level of α-SMA was increased after induction with TGF-β1. The expression of CXCR4 was upregulated in TGF-β1-treated HCFs. Following treatment with AMD 3465, cell proliferation was inhibited coupled with a decrease in PCNA and Ki67 expression. Additionally, the expression of α-SMA was decreased after being intervened with AMD 3465. Concurrently, the levels of collagen were reduced accompanied by downregulation of Collagen I and III. Furthermore, AMD 3465 treatment decreased the expression of p-Smad2 and p-Smad3. Our findings suggested that CXCR4 antagonist AMD 3465 could alleviate cardiac fibrosis via blocking TGF-β1-induced activation of Smad2/3 in HCFs."	"Discovery of Potent Inhibitors against P-Glycoprotein-Mediated Multidrug Resistance Aided by Late-Stage Functionalization of a 2-(4-(Pyridin-2-yl)phenoxy)pyridine Analogue. SIS3 is a specific inhibitor of Smad3 that inhibits the TGFβ1-induced phosphorylation of Smad3. In this article, a variety of SIS3 derivatives were designed and synthesized to discover potential inhibitors against P-glycoprotein-mediated multidrug resistance aided by late-stage functionalization of a 2-(4-(pyridin-2-yl)phenoxy)pyridine analogue. A novel class of potent P-gp reversal agents were investigated, and a lead compound 37 was identified as a potent P-gp reversal agent with strong bioactivity and outstanding affinity for P-gp."	"Adiponectin-Based Peptide (ADP355) Inhibits Transforming Growth Factor-β1-Induced Fibrosis in Keloids. Keloids, benign cutaneous overgrowths of dermal fibroblasts, are caused by pathologic scarring of wounds during healing. Current surgical and therapeutic modalities are unsatisfactory. Although adiponectin has shown an antifibrotic effect, its large size and insolubility limit its potential use in keloid treatment. We investigated the effect of a smaller and more stable adiponectin-based peptide (ADP355) on transforming growth factor β1 (TGF-β1)-induced fibrosis in a primary culture of keloid fibroblasts prepared from clinically obtained keloid samples. Xenograft of keloid tissues on athymic nude mice was used to investigate the effect of intralesional injection of ADP355. ADP355 significantly attenuated the TGF-β1-induced expression of procollagen type 1 in keloid fibroblasts (p &lt; 0.05). Moreover, it inhibited the TGF-β1-induced phosphorylation of SMAD3 and ERK, while amplifying the phosphorylation of AMP-activated protein kinase (p &lt; 0.05). Knockdown of adiponectin receptor 1 reversed the attenuation of procollagen expression in ADP355-treated TGF-β1-induced fibrosis (p &lt; 0.05). ADP355 also significantly reduced the gross weight and procollagen expression of keloid tissues in xenograft mice compared to control animals. These results demonstrate the therapeutic potential of the adiponectin peptide ADP355 for keloids."	"[Retracted] MicroRNA‑21 promotes the progression of peritoneal fibrosis through the activation of the TGF‑β/Smad signaling pathway: An in vitro and in vivo study. Int J Mol Med 41: [Related article:] 1030‑1038, 2018; DOI: 10.3892/ijmm.2017.3268. An interested reader drew to our attention the fact that the western blots featured in Fig. 2B in the above article contained duplicated data: The data shown for the TGF‑β and vimentin protein bands were apparently identical; furthermore, there was a strong likelihood that the protein bands featured for the ZO‑1 and SMAD‑3 experiments were also the same, but flipped horizontally relative to the other. Following an investigation, the Journal was able to confirm that this duplication of the research data had probably occurred. On those grounds, the Editor of International Journal of Molecular Medicine has decided that the above paper should be retracted. We were unable to make contact with the authors of the article published in International Journal of Molecular Medicine, despite every effort to do so. The Editor deeply regrets any inconvenience that this retraction has caused to the the readership of the Journal."	"Aspirin inhibits endometrial fibrosis by suppressing the TGF‑β1‑Smad2/Smad3 pathway in intrauterine adhesions. Intrauterine adhesions (IUAs) represent one of the most common diseases in women of reproductive age. Patients with moderate‑to‑severe IUA can experience a decrease in normal menstrual patterns, amenorrhea and even infertility. At present, the first‑line treatment strategies for IUAs in the clinical practice are hysteroscopic transuterine resection of adhesion and postoperative adjuvant therapy, including oestrogen. However, a high recurrence rate of IUAs remains. In recent years, studies have demonstrated that aspirin combined with oestrogen may significantly prevent the postoperative disease recurrence rate, improve endometrial receptivity and improve the conception rate by increasing endometrial blood supply and angiogenesis more effectively. The TGF‑β1‑Smad2/Smad3 pathway is one of the important mechanisms involved in endometrial fibrosis. However, whether aspirin can inhibit endometrial fibrosis through the TGF‑β1‑Smad2/Smad3 pathway to prevent postoperative re‑adhesion remains to be elucidated. The results of the present study suggested that aspirin inhibits endometrial fibrosis by suppressing the TGF‑β1‑Smad2/Smad3 pathway, which may provide new hypotheses for the mechanism of action of aspirin in the treatment of IUAs."	"Identification of the Key Molecular Drivers of Phosphorus Utilization Based on Host miRNA-mRNA and Gut Microbiome Interactions. Phosphorus is an essential mineral for all living organisms and a limited resource worldwide. Variation and heritability of phosphorus utilization (PU) traits were observed, indicating the general possibility of improvement. Molecular mechanisms of PU, including host and microbial effects, are still poorly understood. The most promising molecules that interact between the microbiome and host are microRNAs. Japanese quail representing extremes for PU were selected from an F2 population for miRNA profiling of the ileal tissue and subsequent association with mRNA and microbial data of the same animals. Sixty-nine differentially expressed miRNAs were found, including 21 novel and 48 known miRNAs. Combining miRNAs and mRNAs based on correlated expression and target prediction revealed enrichment of transcripts in functional pathways involved in phosphate or bone metabolism such as RAN, estrogen receptor and Wnt signaling, and immune pathways. Out of 55 genera of microbiota, seven were found to be differentially abundant between PU groups. The study reveals molecular interactions occurring in the gut of quail which represent extremes for PU including miRNA-16-5p, miR-142b-5p, miR-148a-3p, CTDSP1, SMAD3, IGSF10, Bacteroides, and Alistipes as key indicators due to their trait-dependent differential expression and occurrence as hub-members of the network of molecular drivers of PU."	"CO2 lattice laser reverses skin aging caused by UVB. The carbon dioxide (CO2) lattice laser has been successfully used to treat facial skin photoaging induced by UV light. In this study, we analyzed the effect of CO2 lattice laser irradiation on skin photoaging, and investigated the underlying mechanisms. Our results demonstrate that the laser promoted collagen synthesis and proliferation of primary human skin fibroblasts, inhibited cell senescence, and induced expression of superoxide dismutase (SOD) and the signaling protein SMAD3. In addition, this laser reversed cell cycle arrest and fibroblast apoptosis induced by UVB irradiation, and restored fibroblast proliferation inhibited by SMAD3 silencing. Using a rat model of photoaging, our results show that the laser increased collagen expression and dermal thickness, demonstrating that the CO2 lattice laser has a profound therapeutic effect on photoaged skin. Together, our in vitro and in vivo data show that the CO2 lattice laser can reverse the skin aging caused by UVB, and indicate that this effect is mediated through SMAD3."	"How much do we know about the role of osteocytes in different phases of fracture healing? A systematic review. Although emerging studies have provided evidence that osteocytes are actively involved in fracture healing, there is a general lack of a detailed understanding of the mechanistic pathway, cellular events and expression of markers at different phases of healing. This systematic review describes the role of osteocytes in fracture healing from early to late phase. Literature search was performed in PubMed and Embase. Original animal and clinical studies with available English full-text were included. Information was retrieved from the selected studies. A total of 23 articles were selected in this systematic review. Most of the studies investigated changes of various genes and proteins expression patterns related to osteocytes. Several studies have described a constant expression of osteocyte-specific marker genes throughout the fracture healing cascade followed by decline phase with the progress of healing, denoting the important physiological role of the osteocyte and the osteocyte lacuno-canalicular network in fracture healing. The reports of various markers suggested that osteocytes could trigger coordinated bone healing responses from cell death and expression of proinflammatory markers cyclooxygenase-2 and interleukin 6 at early phase of fracture healing. This is followed by the expression of growth factors bone morphogenetic protein-2 and cysteine-rich angiogenic inducer 61 that matched with the neo-angiogenesis, chondrogenesis and callus formation during the intermediate phase. Tightly controlled regulation of osteocyte-specific markers E11/Podoplanin (E11), dentin matrix protein 1 and sclerostin modulate and promote osteogenesis, mineralisation and remodelling across different phases of fracture healing. Stabilised fixation was associated with the finding of higher number of osteocytes with little detectable bone morphogenetic proteins expressions in osteocytes. Sclerostin-antibody treatment was found to result in improvement in bone mass, bone strength and mineralisation. To further illustrate the function of osteocytes, additional longitudinal studies with appropriate clinically relevant model to study osteoporotic fractures are crucial. Future investigations on the morphological changes of osteocyte lacuno-canalicular network during healing, osteocyte-mediated signalling molecules in the transforming growth factor-beta-Smad3 pathway, perilacunar remodelling, type of fixation and putative biomarkers to monitor fracture healing are highly desirable to bridge the current gaps of knowledge.The translational potential of this article: This systematic review provides an up-to-date chronological overview and highlights the osteocyte-regulated events at gene, protein, cellular and tissue levels throughout the fracture healing cascade, with the hope of informing and developing potential new therapeutic strategies that could improve the timing and quality of fracture healing in the future."	"Smad3 Regulates Neuropilin 2 Transcription by Binding to its 5' Untranslated Region. Background Vascular smooth muscle cell phenotypic change and consequential intimal hyperplasia (IH) cause arterial stenosis and posttreatment restenosis. Smad3 is a master transcription factor, yet its underlying functional mechanisms in this disease context are not well defined. Methods and Results In cultured smooth muscle cells, Smad3 silencing and overexpression respectively reduced and increased the mRNA and protein of NRP2 (neuropilin 2), a recently reported pro-IH signaling factor. Smad3 silencing attenuated pro-IH smooth muscle cell phenotypes including proliferation, migration, and dedifferentiation (reduced smooth muscle α-actin). While increased Smad3 enhanced these phenotypes, NRP2 silencing abolished this enhancement. Interestingly, the 5' untranslated region but not the promoter of NRP2 was indispensable for Smad3-enhanced transcriptional activity (luciferase assay); both chromatin immunoprecipitation and electrophoretic mobility shift assay showed predominant Smad3 binding in the +51 to +78 bp region of NRP2's 5' untranslated region. In vivo, Smad3 haploinsufficiency reduced NRP2 (immunostaining) and IH (by 47%) in wire-injured mouse femoral arteries. Conclusions Smad3 controls NRP2 expression by occupying its 5' untranslated region in promoting smooth muscle cell phenotypic change in vitro. This and in vivo results shed new light on the long-debated role of Smad3 in IH."	"SIRT6 Protects Against Liver Fibrosis by Deacetylation and Suppression of SMAD3 in Hepatic Stellate Cells. Nonalcoholic steatohepatitis (NASH) is a chronic liver disease that is manifested clinically by an increase in hepatic triglycerides, inflammation, and fibrosis. The pathogenesis of NASH remains incompletely understood. Sirtuin 6 (Sirt6), a nicotinamide adenine dinucleotide-dependent deacetylase, has been implicated in fatty liver disease; however, the underlying molecular mechanisms in the NASH pathogenesis are elusive. The aims of this study were to elucidate the role of hepatic Sirt6 in NASH. Wild-type, liver-specific Sirt6 knockout (KO), hepatic stellate cell (HSC)-specific Sirt6 knockout (HSC-KO), and Sirt6 transgenic mice were subjected to a Western diet for 4 weeks. Hepatic phenotypes were characterized and underlying mechanisms were investigated. Remarkably, both the liver-KO and HSC-KO mice developed much worse NASH than the wild-type mice, whereas the transgenic mice were protected from the diet-induced NASH. Our cell signaling analysis showed that Sirt6 negatively regulates the transforming growth factor β-Smad family member 3 (Smad3) pathway. Biochemical analysis showed a physical interaction between Sirt6 and Smad3 in hepatic stellate cells. Moreover, our molecular data further showed that Sirt6 deacetylated Smad3 at key lysine residues K333 and K378, and attenuated its transcriptional activity induced by transforming growth factor β in hepatic stellate cells. Our data suggest that SIRT6 plays a critical role in the protection against NASH development and it may serve as a potential therapeutic target for NASH."	"LncRNA CDKN2B-AS1 promotes the progression of ovarian cancer by miR-143-3p/SMAD3 axis and predicts a poor prognosis. Long noncoding RNAs (LncRNAs) show great potential as the therapeutic targets attributing to their implication in the progression of various human cancers, including ovarian cancer (OC). Here, we aimed to explore the biological function of lncRNA cyclin-dependent kinase inhibitor 2B antisense RNA 1 (CDKN2B-AS1) in OC and its mechanism of action. The abundances of CDKN2B-AS1, miR-143-3p, and SMAD3 mRNA were determined by quantitative real-time polymerase chain reaction (qRT-PCR). Cell Counting Kit-8 (CCK8) was performed to analyze cell proliferation. Cell apoptosis was assessed by flow cytometry and western blot analyses. Transwell assay was utilized to analyze cell migration and invasion abilities. Tumor xenograft was performed to confirm the role of CDKN2B-AS1 in ovarian tumor growth in vivo. The protein level of SMAD3 was examined by western blot assay. The interaction between CDKN2B-AS1 and miR-143-3p, or miR-143-3p and SMAD3 was demonstrated by bioinformatic, luciferase reporter, qRT-PCR and western blot analyses. CDKN2B-AS1 was upregulated in OC and correlated with clinicopathologic features. The knockdown of CDKN2B-AS1 hampered the development of OC, as reflected by the suppression of cell proliferation, migration, and invasion, and the enhancement of cell apoptosis, whereas the effects could be rescued by the overexpression of SMAD3. The absence of CDKN2B-AS1 blocked tumor growth in vivo. CDKN2B-AS1 served as a molecular sponge for miR-143-3p, leading to the derepression of miR-143-3p target SMAD3, which eventually triggered the progression of OC. In conclusion, CDKN2B-AS1 promoted tumor growth, invasion, and migration of OC by regulation of miR-143-3p/SMAD3 axis, hinting that CDKN2B-AS1 might be a potential biomarker for OC diagnosis and treatment."	"Protein diaphanous homolog 1 (Diaph1) promotes myofibroblastic activation of hepatic stellate cells by regulating Rab5a activity and TGFβ receptor endocytosis. TGFβ induces the differentiation of hepatic stellate cells (HSCs) into tumor-promoting myofibroblasts but underlying mechanisms remain incompletely understood. Because endocytosis of TGFβ receptor II (TβRII), in response to TGFβ stimulation, is a prerequisite for TGF signaling, we investigated the role of protein diaphanous homolog 1 (known as Diaph1 or mDia1) for the myofibroblastic activation of HSCs. Using shRNA to knockdown Diaph1 or SMIFH2 to target Diaph1 activity of HSCs, we found that the inactivation of Diaph1 blocked internalization and intracellular trafficking of TβRII and reduced SMAD3 phosphorylation induced by TGFβ1. Mechanistic studies revealed that the N-terminal portion of Diaph1 interacted with both TβRII and Rab5a directly and that Rab5a activity of HSCs was increased by Diaph1 overexpression and decreased by Diaph1 knockdown. Additionally, expression of Rab5aQ79L (active Rab5a mutant) increased whereas the expression of Rab5aS34N (inactive mutant) reduced the endosomal localization of TβRII in HSCs compared to the expression of wild-type Rab5a. Functionally, TGFβ stimulation promoted HSCs to express tumor-promoting factors, and α-smooth muscle actin, fibronection, and CTGF, markers of myofibroblastic activation of HSCs. Targeting Diaph1 or Rab5a suppressed HSC activation and limited tumor growth in a tumor implantation mouse model. Thus, Dipah1 and Rab5a represent targets for inhibiting HSC activation and the hepatic tumor microenvironment."	"TGFβ1 regulates prolactin secretion during postnatal development: gender differences. Serum prolactin levels gradually increase from birth to puberty in both male and female rats, with higher levels observed in female since the first days of life. The increase in lactotroph secretion was attributed to the maturation of prolactin-inhibiting and prolactin-releasing factors; however, those mechanisms could not fully explain the gender differences observed. Prolactin secretion from isolated lactotrophs, in the absence of hypothalamic control, also increases during the first weeks of life, suggesting the involvement of intra-pituitary factors. We postulate that pituitary transforming growth factor beta 1 (TGFβ1) is involved in the regulation of prolactin secretion as well as in the gender differences observed at early postnatal age. Several components of the local TGFβ1 system were evaluated during postnatal development (11, 23, and 45 days) in female and male Sprague-Dawley rats. In vivo assays were performed to study local TGFβ1 activation and its impact on prolactin secretion. At day 11, female pituitaries present high levels of active TGFβ1, concomitant with the highest expression of TGFβ1 target genes and the phospho-Smad3 immunostaining in lactotrophs. The steady increase in prolactin secretion inversely correlates with active TGFβ1 levels only in females. Dopamine and estradiol induce TGFβ1 activation at day 11, in both genders, but its activation induces the inhibition of prolactin secretion only in females. Our findings demonstrate that: (1) TGFβ1 activation is regulated by dopamine and estradiol; (2) the inhibitory regulation of local TGFβ1 on prolactin secretion is gender specific; and (3) this mechanism is responsible, at least partially, for the gender differences observed being relevant during postnatal development."	"Pleiotropic tumor suppressor functions of WWOX antagonize metastasis. Tumor progression and metastasis are the major causes of death among cancer associated mortality. Metastatic cells acquire features of migration and invasion and usually undergo epithelia-mesenchymal transition (EMT). Acquirement of these various hallmarks rely on different cellular pathways, including TGF-β and Wnt signaling. Recently, we reported that WW domain-containing oxidoreductase (WWOX) acts as a tumor suppressor and has anti-metastatic activities involving regulation of several key microRNAs (miRNAs) in triple-negative breast cancer (TNBC). Here, we report that WWOX restoration in highly metastatic MDA-MB435S cancer cells alters mRNA expression profiles; further, WWOX interacts with various proteins to exert its tumor suppressor function. Careful alignment and analysis of gene and miRNA expression in these cells revealed profound changes in cellular pathways mediating adhesion, invasion and motility. We further demonstrate that WWOX, through regulation of miR-146a levels, regulates SMAD3, which is a member of the TGF-β signaling pathway. Moreover, proteomic analysis of WWOX partners revealed regulation of the Wnt-signaling activation through physical interaction with Disheveled. Altogether, these findings underscore a significant role for WWOX in antagonizing metastasis, further highlighting its role and therapeutic potential in suppressing tumor progression."	"Paeoniflorin ameliorates antipsychotic-induced hyperprolactinemia in rats by attenuating impairment of the dopamine D2 receptor and TGF-β1 signaling pathways in the hypothalamus and pituitary. Paeoniflorin, a prominent component in some Chinese formulas for hyperprolactinemia-associated disorders, has been found to inhibit prolactin secretion in prolactinoma cells. To examine the efficacy of paeoniflorin on hyperprolactinemia and the underlying mechanisms of action. Hyperprolactinemia in female rats was generated by administration of olanzapine (5 mg/kg, by a gavage method, once daily, × 13 weeks). The rats were co-treated with paeoniflorin (10 and 50 mg/kg). Prolactin and TGF-β1 concentrations were detected by ELISA. Protein expression was determined by Western blot. The effect in MMQ cells was also examined. Paeoniflorin inhibited olanzapine-induced increases in plasma prolactin concentration and prolactin protein overexpression in the pituitary and hypothalamus of rats. Further, paeoniflorin restored olanzapine-induced downregulation of pituitary and hypothalamic dopamine D2 receptor (D2R) protein expression. More importantly, paeoniflorin attenuated olanzapine-suppressed protein expression of transforming growth factor (TGF)-β1 and its downstream genes, type II TGF-β receptor, type I TGF-β receptor and phosphorylated SMAD3 in the tissues. However, paeoniflorin did not affect plasma TGF-β1 concentration and hepatic TGF-β1 protein expression. In accord, olanzapine-induced increase in prolactin concentration, upregulation of prolactin protein expression, and downregulation of protein expression of the D2R and TGF-β1 signals in MMQ cells were attenuated. This study demonstrates that paeoniflorin ameliorates olanzapine-induced hyperprolactinemia in rats by attenuating impairment of the D2R and TGF-β1 signaling pathways in the hypothalamus and pituitary. Our findings may provide evidence to support the use of paeoniflorin-contained Chinese herbs and formulas for hyperprolactinemia and its associated disorders."	"Hide and seek: Somatic SMAD3 mutations in melorheostosis. In the current issue of JEM, Kang et al. (https://doi.org/10.1084/jem.20191499) describe somatic mutations in the SMAD3 gene causing endosteal melorheostosis. Using osteoblast models, the identified mutations are demonstrated to exert a gain-of-function mechanism, augmenting transforming growth factor (TGF) β signaling. These findings provide further insights into the genetic etiology of melorheostosis and consolidate the importance of the TGFβ pathway in skeletal disorders."	"Delayed application of silver nanoparticles reveals the role of early inflammation in burn wound healing. Burn injury is common, and antimicrobial agents are often applied immediately to prevent wound infection and excessive inflammatory response. Although inflammation is essential for clearing bacteria and creating an environment conducive to the healing process, it is unclear what time-frame inflammation should be present for optimal wound healing. This study critically investigated the role of early inflammation in burn wound healing, and also revealed the molecular mechanisms underlying the pro-healing effects of silver nanoparticles (AgNPs). We created a burn injury mouse model using wild-type and Smad3-/- mice, which were topically treated with AgNPs at different post-burn days, and examined the healing processes of the various groups. We also delineated the molecular pathways underlying the anti-inflammation and pro-healing effects of AgNPs by morphological and histological analysis, immuno-histochemistry, and western blotting. Our results showed that (1) AgNPs regulated pro-inflammatory cytokine IL-6 production of keratinocytes and neutrophils infiltration through KGF-2/p38 signaling pathway, (2) Topical AgNPs treatment immediately after burn injury significantly supressed early inflammation but resulted in delayed healing, (3) A short delay in AgNPs application (post-burn day 3 in our model) allowed early inflammation in a controlled manner, and led to optimal burn wound healing. Thus, our current study showed that some degree of early inflammation was beneficial, but prolonged inflammation was detrimental for burn wound healing. Further evaluation and clinical translation of this finding is warranted."	"Identification of histone deacetylase 8 as a novel therapeutic target for renal fibrosis. Histone deacetylases (HDACs) have been shown to alleviate renal fibrosis, however, the role of individual HDAC isoforms in this process is poorly understood. In this study, we examined the role of HDAC8 in the development of renal fibrosis and partial epithelial-mesenchymal transitions (EMT). In a murine model of renal fibrosis induced by unilateral ureteral obstruction (UUO), HDAC8 was primarily expressed in renal tubular epithelial cells and time-dependently upregulated. This occurred in parallel with the deacetylation of cortactin, a nonhistone substrate of HDAC8, and increased expression of three fibrotic markers: α-smooth muscle actin, collagen 1, and fibronectin. Administration of PCI34051, a highly selective inhibitor of HDAC8, restored acetylation of contactin and reduced expression of those proteins. PCI34051 treatment also reduced the number of renal tubular epithelial cells arrested at the G2/M phase of the cell cycle and suppressed phosphorylation of Smad3, STAT3, β-catenin, and expression of Snail after ureteral obstruction. In contrast, HDAC8 inhibition reversed UUO-induced downregulation of BMP7 and Klotho, two renoprotective proteins. In cultured murine proximal tubular cells, treatment with PCI34051 or specific HDAC8 siRNA was also effective in inhibiting transforming growth factor β1 (TGFβ1)-induced deacetylation of contactin, EMT, phosphorylation of Smad3, STAT3, and β-catenin, upregulation of Snail, and downregulation of BMP7 and Klotho. Collectively, these results suggest that HDAC8 activation is required for the EMT and renal fibrogenesis by activation of multiple profibrotic signaling and transcription factors, and suppression of antifibrotic proteins. Therefore, targeting HDAC8 may be novel therapeutic approach for treatment of renal fibrosis."	"Gallic acid and ferulic acid protect the liver from thioacetamide-induced fibrosis in rats via differential expression of miR-21, miR-30 and miR-200 and impact on TGF-β1/Smad3 signaling. This study evaluates the possible protective effects of gallic acid (GaA) and ferulic acid (FeA) against an experimentally induced liver fibrosis by thioacetamide (TAA) in rats. Animals were divided into: Control group, GaA group (20 mg/kg/day, p.o), FeA (20 mg/kg/day, p.o), TAA group (receiving 250 mg/kg twice/week, I.P), TAA + GaA group, TAA + FeA group (received the same previous doses) and TAA+silymarin group (received silymarin at 100 mg/kg/day+TAA as mentioned above). After 6 consecutive weeks, animals were sacrificed and the assessment of liver functions, oxidative stress biomarkers and histopathological examination of the liver tissues were performed. In addition, the effect on TGF-β1/Smad3 signaling and the expression of miR-21, miR-30 and miR-200 were evaluated. The results showed that administration of GaA or FeA with TAA induced a significant reduction in serum ALT, AST and ALP activities and protected the integrity of liver tissues. Furthermore, they increased the activities of the hepatic antioxidant enzymes; superoxide dismutase and catalase while decreased malondialdehyde content to a normal level. The hepatic expression of TGF-β1, phosphorylated and total Smad3 proteins were significantly decreased. In addition, miR-21 expression was downregulated while miR-30 and miR-200 expressions were upregulated by administration of gallic acid or ferulic acid. In conclusion, gallic and ferulic acids exhibit hepatoprotective and antioxidant effects against TAA-induced liver fibrosis in rats. These effects are mediated through inhibition of TGF-β1/Smad3 signaling and differentially regulating the hepatic expression level of miR-21, miR-30 and miR-200."	"IL-37 is protective in allergic contact dermatitis through mast cell inhibition. Allergic contact dermatitis (ACD), characterized predominantly by erythema, vesiculation, and pruritus, is a T cell-mediated skin inflammatory condition. Among immune cells involved in ACD, mast cells (MCs) play an essential role in its pathogenesis. As an inhibitor of proinflammatory IL-1 family members, interleukin 37 (IL-37) has been shown to ameliorate inflammatory responses in various allergic diseases. In this study, we assessed the immunomodulatory effect of IL-37 on allergic inflammation using a 2,4-dinitrofluorobenzene (DNFB)-induced ACD rat model and isolated rat peritoneal mast cells (RPMCs). Systematic application of IL-37 significantly relieved ear swelling, reduced inflammatory cell infiltration, decreased inflammatory cytokine production (TNF-α, IL-1β, IFN-γ, and IL-13), inhibited MC recruitment, lowered IgE levels, and reduced IL-33 production in the local ear tissues with DNFB challenge. Additionally, RPMCs isolated from ACD rats with IL-37 intervention showed downregulation of IL-6, TNF-α, IL-13, and MCP-1 production following IL-33 stimulation, and reduction of β-hexosaminidase and histamine release under DNP-IgE/HSA treatment. Moreover, IL-37 treatment also significantly restrained NF-κB activation and P38 phosphorylation in ACD RPMCs. SIS3, a specific Smad3 inhibitor, abolished the suppressive effects of IL-37 on MC-mediated allergic inflammation, suggesting the participation of Smad3 in the anti-ACD effect of IL-37. These findings indicated that IL-37 protects against IL-33-regulated MC inflammatory responses via inhibition of NF-κB and P38 MAPK activation accompanying the regulation of Smad3 in rats with ACD."	"TRPV4 Mediates Cardiac Fibrosis via the TGF-β1/Smad3 Signaling Pathway in Diabetic Rats. Emerging evidence shows that the transient receptor potential vanilloid 4 (TRPV4) channel is involved in fibrosis in many organs. However, its role in diabetic cardiac fibrosis remains unclear. Our aim was to evaluate the expression level of TRPV4 in the diabetic heart and clarify its role in diabetes-induced cardiac fibrosis. A diabetic animal model was induced by a single intraperitoneal injection of streptozotocin into Sprague-Dawley rats. We also investigated cardiac fibroblasts isolated from neonatal Sprague-Dawley rats. TRPV4 expression was significantly upregulated in both diabetic myocardium and cardiac fibroblasts cultured in high-glucose medium. Masson's trichrome staining revealed that the TRPV4 antagonist HC067047 attenuated the diabetes-induced cardiac fibrosis. Furthermore, HC067047 reduced collagen Ι synthesis and suppressed the transforming growth factor beta 1 (TGF-β1) level as well as the phosphorylation of Smad3 in the diabetic heart. In addition, the TRPV4 antagonist inhibited the proliferation of cardiac fibroblasts, collagen Ι synthesis, and activation of the TGF-β1/Smad3 signaling pathway induced by high-glucose culture medium. Our findings demonstrate that the upregulation of TRPV4 expression mediates diabetic cardiac fibrosis via activation of the TGF-β1/Smad3 signaling pathway."	"Oxidant/Antioxidant Profile in the Thoracic Aneurysm of Patients with the Loeys-Dietz Syndrome. Patients with the Loeys-Dietz syndrome (LDS) have mutations in the TGF-βR1, TGF-βR2, and SMAD3 genes. However, little is known about the redox homeostasis in the thoracic aortic aneurysms (TAA) they develop. Here, we evaluate the oxidant/antioxidant profile in the TAA tissue from LDS patients and compare it with that in nondamaged aortic tissue from control (C) subjects. We evaluate the enzymatic activities of glutathione peroxidase (GPx), glutathione S-transferase (GST), glutathione reductase (GR), catalase (CAT), superoxide dismutase (SOD) isoforms, and thioredoxin reductase (TrxR). We also analyze some antioxidants from a nonenzymatic system such as selenium (Se), glutathione (GSH), and total antioxidant capacity (TAC). Oxidative stress markers such as lipid peroxidation and carbonylation, as well as xanthine oxidase (ORX) and nuclear factor erythroid 2-related factor 2 (Nrf2) expressions, were also evaluated. TAA from LDS patients showed a decrease in GSH, Se, TAC, GPx, GST, CAT, and TrxR. The SOD activity and ORX expressions were increased, but the Nrf2 expression was decreased. The results suggest that the redox homeostasis is altered in the TAA from LDS patients, favoring ROS overproduction that contributes to the decrease in GSH and TAC and leads to LPO and carbonylation. The decrease in Se and Nrf2 alters the activity and/or expression of some antioxidant enzymes, thus favoring a positive feedback oxidative background that contributes to the TAA formation."	"Involvement of TGF-β and ROS in G1 Cell Cycle Arrest Induced by Titanium Dioxide Nanoparticles Under UVA Irradiation in a 3D Spheroid Model. As one of the most widely produced engineered nanomaterials, titanium dioxide nanoparticles (nano-TiO2) are used in biomedicine and healthcare products, and as implant scaffolds; therefore, the toxic mechanism of nano-TiO2 has been extensively investigated with a view to guiding application. Three-dimensional (3D) spheroid models can simplify the complex physiological environment and mimic the in vivo architecture of tissues, which is optimal for the assessment of nano-TiO2 toxicity under ultraviolet A (UVA) irradiation. In the present study, the toxicity of nano-TiO2 under UVA irradiation was investigated in 3D H22 spheroids cultured in fibrin gels. A significant reduction of approximately 25% in spheroid diameter was observed following treatment with 100 μg/mL nano-TiO2 under UVA irradiation after seven days of culture. Nano-TiO2 under UVA irradiation triggered the initiation of the TGF-β/Smad signaling pathway, increasing the expression levels of TGF-β1, Smad3, Cdkn1a, and Cdkn2b at both the mRNA and protein level, which resulted in cell cycle arrest in the G1 phase. In addition, nano-TiO2 under UVA irradiation also triggered the production of reactive oxygen species (ROS), which were shown to be involved in cell cycle regulation and the induction of TGF-β1 expression. Nano-TiO2 under UVA irradiation induced cell cycle arrest in the G1 phase and the formation of smaller spheroids, which were associated with TGF-β/Smad signaling pathway activation and ROS generation. These results reveal the toxic mechanism of nano-TiO2 under UVA irradiation, providing the possibility for 3D spheroid models to be used in nanotoxicology studies."	"Long-term effect of extracorporeal shock wave therapy on attenuating radiation-induced chronic cystitis in rat. This study tested the long-term effect of extracorporeal shock wave (ECSW) therapy on ameliorating radiotherapy-induced chronic cystitis (CC) in rat. Adult-female SD rats (n = 24) were equally categorized into group 1 (normal control), group 2 (CC induced by radiotherapy with 450 cGy twice with a four-hour interval to the urinary bladder), group 3 [CC with ECSW treatment (0.1 mJ/mm<sup>2</sup>/120 impulses once every 3 days after radiotherapy)]. Bladder specimens were harvested by day 60 after radiotherapy. By day 60, the degree of detrusor contraction was significantly reduced in group 2 than groups 1 and 3, and significantly reduced in group 3 than in group 1 (P &lt; 0.0001). Number of WBC, occulted blood and bacteria were significantly higher in group 2 than in groups 1 and 3 (P &lt; 0.01), but they showed no difference between the latter two groups (P &gt; 0.3). The protein expressions of oxidative stress (NOX-1/NOX-2/oxidized protein), apoptosis (cleaved-caspase-3/cleaved-PARP), DNA-damaged marker (γ-H2AX), fibrosis (TGF-β/Smad3) and inflammatory signaling (TLR-4/MYD88/Mal/TRAF6/p-IκBα/p-NFκB/TNF-α/MMP-9/COX-2) were significantly higher in group 2 than in group 1, and were significantly reduced in group 3 (all P &lt; 0.001). The cellular expressions of inflammatory (CD14+/CD68+/MIF+/MMP-9), immunoreactive (CD4+/CD8+) and cytokeratin (CK17/CK18) biomarkers, and collagen-deposition/fibrotic areas as well as bladder-damaged score/disruption of the bladder mucosa displayed an identical pattern compared to that of oxidative stress among the three groups (all P &lt; 0.0001). The long-term effect of ECSW treatment was reliable on protecting the urinary bladder from radiation-induced CC."	"The Antiproliferative and Antifibrotic Effects of Cisplatin on Primary Human Vocal Fold Fibroblasts. Vocal fold scarring and laryngeal stenosis are major clinical challenges. Current drugs do not efficiently reduce scarring. We examined the antiproliferative and antifibrotic effects of cisplatin on primary human vocal fold fibroblasts (HVFFs). HVFFs were cultured in vitro and identified by immunocytochemistry. The relative viability of HVFFs was analyzed by Cell Counting Kit-8 assays (CCK-8). The fibrogenic phenotype was induced by transforming growth factor-β1 (TGF-β1) and reversed by cisplatin as shown by immunocytochemistry. Real-time PCR and Western blotting assessed collagen III and I. Western blotting for Smad2, p-Smad2, Smad-3, p-Smad3 and caspase-3 were performed. CCK-8 results showed that cisplatin decreased the relative viability of HVFFs, and Western blots revealed elevation of the apoptosis-related protein caspase-3 in HVFFs. Cisplatin treatment reduced α-smooth muscle actin staining intensity in the presence of TGF-β1. Real-time PCR revealed the downregulation of collagen III and I in cisplatin-treated HVFFs. The TGF-β1-induced increased fibrogenic protein levels were decreased by cisplatin. Reduced levels were detected at late time points. Cisplatin induces antiproliferative and antifibrotic alterations in HVFFs. Cisplatin may prevent postoperative vocal fold scarring and laryngeal stenosis in patients treated with CO2 laser microsurgery and undergoing delayed wound healing."	"Autophagy inhibition potentiates the anti-EMT effects of alteronol through TGF-β/Smad3 signaling in melanoma cells. Accumulating evidence demonstrated that alteronol, a novel compound that has a similar structure with paclitaxel, exerts anticancer effects against diversified tumors. However, whether alteronol induces autophagy and the relationship between its anticancer effects and autophagy in melanoma remains elusive. In this study, we show that alteronol induces not only anti-proliferation activity and apoptosis but also autophagy in A375 and UACC62 cells. In addition, alteronol inhibits A375 and UACC62 cells invasion and migration by preventing the epithelial-mesenchymal transition (EMT). Blocking autophagy enhances alteronol-induced apoptosis and anti-EMT effects in vitro and in vivo. Mechanistically, we find that alteronol significantly inhibits Akt/mTOR and TGFβ/Smad3 pathways, and co-treatment with autophagy inhibitor 3-MA further potentiate these effects. Our results suggest that alteronol induces cyto-protective autophagy in melanoma cells through inhibition of Akt/mTOR pathway, thus attenuates apoptosis and promotes melanoma cell EMT through TGF-β/Smad3 pathway. Combination with alteronol and autophagy inhibitor 3-MA may be a potential treatment for melanoma as it not only significantly inhibited tumor growth but also suppressed tumor invasion and migration as anti-metastasis agent."	"Diverse Role of TGF-β in Kidney Disease. Inflammation and fibrosis are two pathological features of chronic kidney disease (CKD). Transforming growth factor-β (TGF-β) has been long considered as a key mediator of renal fibrosis. In addition, TGF-β also acts as a potent anti-inflammatory cytokine that negatively regulates renal inflammation. Thus, blockade of TGF-β inhibits renal fibrosis while promoting inflammation, revealing a diverse role for TGF-β in CKD. It is now well documented that TGF-β1 activates its downstream signaling molecules such as Smad3 and Smad3-dependent non-coding RNAs to transcriptionally and differentially regulate renal inflammation and fibrosis, which is negatively regulated by Smad7. Therefore, treatments by rebalancing Smad3/Smad7 signaling or by specifically targeting Smad3-dependent non-coding RNAs that regulate renal fibrosis or inflammation could be a better therapeutic approach. In this review, the paradoxical functions and underlying mechanisms by which TGF-β1 regulates in renal inflammation and fibrosis are discussed and novel therapeutic strategies for kidney disease by targeting downstream TGF-β/Smad signaling and transcriptomes are highlighted."	"LncRNA np_5318 promotes renal ischemia-reperfusion injury through the TGF-β/Smad signaling pathway. Long noncoding (Lnc)RNA np_5318 has been proved to be involved in renal injury, while its functionality in renal ischemia-reperfusion (I/R) injury is unknown. Therefore, the present study aimed to investigate the role of lncRNA np_5318 in the development of renal I/R injury. Renal I/R injury model and I/R cell model were established in vitro. The expression of np_5318 in I/R cell was inhibited by small interfering (si)-np_5318 and increased by pc-np_5318. Renal function was detected and evaluated by automatic biochemical tests. Immunohistochemical staining was performed to detect the expression cluster of differentiation (CD)31, transforming growth factor (TGF)-β1 and (mothers against decapentaplegic homolog 3) Smad3 in renal tissue. The interaction between np_5318 and Smad3 was verified by chromatin immunoprecipitation (ChIP). Western blotting was performed to detect the expression levels of TGF-β1, Smad3 and phosphorylated (p)-Smad3 in renal tissue and renal cells. Expression of np_5318 in renal tissue and renal cells was detected by reverse transcription-quantitative PCR. Relative cell viability was confirmed by MTT assay. Renal function was impaired and pathological changes in renal tissue were observed in the renal I/R injury group, indicating the renal I/R injury model was successfully established. Compared with the sham group, the expression level of np_5318 significantly increased in the renal I/R injury group. ChIP data confirmed the interaction between np_5318 and Smad3. The expression of TGF-β1, Smad3 and p-Smad3 in renal tissue was also significantly increased in the renal I/R injury group. Furthermore, the I/R cell model in vitro was successfully constructed and np_5318 in I/R group was significantly increased compared with the control group. Cell growth was significantly suppressed in the I/R group compared with the control group. Additionally, transfection with pc-np_5318 significantly inhibited cell growth of I/R cells at 48 and 72 h. While inhibition of np_5318 by si-np_5318 significantly increased the cell growth of I/R cells at 48 and 72 h. Moreover, the level of TGF-β1, p-Smad3 and Smad3 was significantly increased in the I/R group compared with the control group, and transfection with pc-np_5318 significantly increased the level of TGF-β1, p-Smad3 and Smad3. While inhibition of np_5318 by si-np_5318 significantly suppressed the level of TGF-β1, p-Smad3 and Smad3. LncRNA np_5318 may participate in the development of renal I/R injury through TGF-β/Smad signaling pathway."	"Failure to Down-Regulate miR-154 Expression in Early Postnatal Mouse Lung Epithelium Suppresses Alveologenesis, with Changes in Tgf-β Signaling Similar to those Induced by Exposure to Hyperoxia. Bronchopulmonary dysplasia (BPD) is a lung disease of preterm born infants, characterized by alveolar simplification. MicroRNA (miR) are known to be involved in many biological and pathological processes in the lung. Although a changed expression has been described for several miR in BPD, a causal role remains to be established. Our results showed that the expression level of miR-154 increases during lung development and decreases postnatally. Further, hyperoxia treatment maintains high levels of miR-154 in alveolar type 2 cells (AT2). We hypothesized that the decrease in miR-154 expression in AT2 cells is required for normal alveologenesis. To test this hypothesis, we generated a novel transgenic mouse allowing doxycycline-based miR-154 overexpression. Maintenance of miR-154 expression in the postnatal distal lung epithelium under normoxia conditions is sufficient to reproduce the hypoalveologenesis phenotype triggered by hyperoxia. Using a pull-down assay, we identified Caveolin1 as a key downstream target of miR-154. Caveolin1 protein is downregulated in response to overexpression of miR-154. This is associated with increased phosphorylation of Smad3 and Tgf-ß signaling. We found that AT2 cells overexpressing miR-154 display decreased expression of AT2 markers and increased expression of AT1 markers. Our results suggest that down-regulation of miR-154 in postnatal lung may function as an important physiological switch that permits the induction of the correct alveolar developmental program, while conversely, failure to down-regulate miR-154 suppresses alveolarization, leading to the common clinically observed phenotype of alveolar simplification."	"A new sesquiterpenoid from the shoots of Iranian Daphne mucronata Royle with selective inhibition of STAT3 and Smad3/4 cancer-related signaling pathways. Daphne mucronata Royle grown in Iran has shown anticancer activities against different cancer cell lines. Therefore, within this study, we investigate the phytochemical pattern of this plant. Phytochemical investigation was done using standard column chromatography system: The structures were recognized by the interpretation of one and two-dimensional nuclear magnetic resonance (NMR) spectra and the help of High-Resolution Electrospray Ionization Mass spectroscopy (HR-ESIMS) and Infrared spectroscopy (IR) data. Stereochemistry was determined using 2D and 3D NOESY, and comparison of coupling constant values with literature. The absolute configuration was determined and confirmed using specific rotation and electronic circular dichroism experiments. Cytotoxicity was done against HeLa cells by standard MTT (3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide) assay. Luciferase assay was used to check if the compounds can inhibit the activation of cancer-related signaling pathways. Molecular docking simulation was done for biological activity evaluation and to examine the interaction of the ligand with each of the proteins. A new sesquiterpenoid, 4,11(12)-guiadiene-1-ol-3-one (4), together with eight specialized metabolites, betulinic acid (1), coniferyl aldehyde (2), oleanolic acid (3), daphnetoxin (5), apigenin (7), syringin (8), and genkwanol A (9) were isolated and reported for the first time from the shoots of the plant. Compound 4 as an undescribed compound was submitted for cytotoxicity assay and showed moderate activity with the IC50 value of 51.3 ± 4.2 μM against HeLa cancer cells. It showed selective inhibition of Interleukin-6 mediated signal transducer and activator of transcription 3 pathway (STAT-3/ IL-6), and Smad protein / transforming growth factor beta (TGF-β) transcription factors when screened through an array of cancer signaling pathways. Molecular docking confirmed biological tests and showed the interaction with STAT3 and Smad proteins. An undescribed sesquiterpenoid: 4,11(12)-guiadiene-1-ol-3-one in addition to eight known compounds were isolated. The new sesquiterpene was evaluated for the luciferase assay on 14 main cancer-related signaling pathways and showed selective inhibition of STAT3/IL6, and Smad/ TGF-β transcription factors. Molecular docking simulation showed more interactions with STAT3 than Smad, which confirms better interaction of compound 4 with STAT3 than Smad proteins. Graphical abstract."	"Identification and characterization of an R-Smad homologue (Hco-DAF-8) from Haemonchus contortus. Smad proteins are essential cellular mediators within the transforming growth factor-β (TGF-β) superfamily. They directly transmit incoming signals from the cell surface receptors to the nucleus. In spite of their functional importance, almost nothing is known about Smad proteins in parasitic nematodes including Haemonchus contortus, an important blood-sucking nematode of small ruminants. Based on genomic and transcriptome data for H. contortus and using bioinformatics methods, a Smad homologue (called Hco-daf-8) was inferred from H. contortus and the structural characteristics of this gene and its encoded protein Hco-DAF-8 established. Using real-time PCR and immunofluorescence assays, temporal transcriptional and spatial expression profiles of Hco-daf-8 were studied. Gene rescue in Caenorhabditis elegans was then applied to assess the function of Hco-daf-8 and a specific inhibitor of human Smad3 (called SIS3) was employed to evaluate the roles of Hco-DAF-8 in H. contortus development. The features of Hco-DAF-8 (502 amino acids), including conserved R-Smad domains and residues of the L3-loop that determine pathway specificity, are consistent with a TGF-β type I receptor-activated R-Smad. The Hco-daf-8 gene was transcribed in all developmental stages of H. contortus studied, with a higher level of transcription in the fourth-stage larval (L4) females and the highest level in adult males. Hco-DAF-8 was expressed in the platymyarian muscular cells, intestine and reproductive system of adult stages. Gene rescue experiments showed that Hco-daf-8 was able to partially rescue gene function in a daf-8 deficient mutant strain of C. elegans, leading to a resumption of normal development. In H. contortus, SIS3 was shown to affect H. contortus development from the exsheathed third-stage larvae (L3s) to L4s in vitro. These findings suggest that Hco-DAF-8, encoded by the gene Hco-daf-8, is an important cellular mediator of H. contortus development via the TGF-β signalling pathway. They provide a basis for future explorations of Hco-DAF-8 and associated pathways in H. contortus and other important parasitic nematodes."	"Danggui Buxue Tang ameliorates bleomycin-induced pulmonary fibrosis in rats through inhibiting transforming growth factor-β1/Smad3/ plasminogen activator inhibitor-1 signaling pathway. To investigate the effect of Danggui Buxue Tang (DBT), a decoction from Traditional Chinese Medicine, on bleomycin-induced pulmonary fibrosis in rats, and to propose the possible underlying mechanism. Forty male Sprague-Dawley rats were randomly divided into sham group, model group, prednisone group and DBT group. Pulmonary fibrosis rat model was established by intratracheal injection with bleomycin. Body weight and lung index were monitored. Histopathologic examination and collagen deposition were determined using Hematoxylin and eosin (HE) and Masson's trichrome staining. Immunohistochemistry staining was applied to observe the expression of alpha-smooth muscle actin (α-SMA). mRNA expression of α-SMA, collagen Ⅰ and collagen Ⅲ were measured by real-time fluorescence quantitative PCR (RT-qPCR). Inflammatory cytokines, including tumor necrosis factor alpha (TNF-α), interleukin-6 (IL-6) and IL-1β in serum were detected by Enzyme-linked immunosorbent assay. Alkali hydrolysis method was conducted to investigate the content of hydroxyproline (HYP). Transforming growth factor-β1 (TGF-β1), Smad3 and plasminogen activator inhibitor-1 (PAI-1) protein level were examined by Western blot assay. DBT significantly reduced the severity of bleomycin-induced pulmonary fibrosis and inflammation as indicated by minimizing the lost of weight, and by lowering the levels of lung index, inflammation score, Ashcroft score, collagen volume fraction (%), HYP, α-SMA, collagen Ⅰ, collagen Ⅲ, TNF-α, IL-6, IL-1β, TGF-β1, Smad3 and PAI-1, consistent with the effect of prednisone. Our findings suggest that DBT is able to ameliorate the pulmonary fibrosis, the possible mechanism may involve inhibition of pulmonary inflammation and collagen deposition, possibly via suppressing TGF-β1/Smad3/PAI-1 signaling pathway."	"[Mechanism of transcriptional regulation of Meox1 by transforming growth factor β (1) and its effect on cell migration of adult human dermal fibroblasts]. Objective: To explore the transcriptional regulation mechanism of transforming growth factor β(1) (TGF-β(1)) on Meox1 and its effect on cell migration of adult human dermal fibroblasts (HDF-a). Methods: (1) HDF-a cells were cultured in RPMI 1640 complete medium (hereinafter referred to as routinely cultured). The cells were divided into TGF-β(1) stimulation group and blank control group. The cells in TGF-β(1) stimulation group were stimulated with 10 μL TGF-β(1) in the mass concentration of 1 mg/μL, while the cells in blank control group were stimulated with the equal volume of phosphate buffer solution. After 72 hours in culture, partial cells in both groups were collected for transcriptome sequencing. The genes with differential expression ratio greater than or equal to 2 and P&lt;0.01 between the two groups were selected to perform enrichment analysis and analysis of metabolic pathways of the Kyoto Gene and Genome Encyclopedia with, and the expression value of Meox1 per million transcripts (TPM) was recorded (n=3). Partial cells from the two groups were used to detect the Meox1 mRNA expression by real-time fluorescent quantitative reverse transcription polymerase chain reaction (RT-PCR) (n=3). (2) Cultured HDF-a cells in the logarithmic growth phase (the same growth phase of cells below) were divided into empty plasmid group, Smad2 overexpression (OE) group, Smad3 OE group, and Smad4 OE group, which were transfected respectively with 2 μg empty pcDNA3.1 plasmid and pcDNA3.1 plasmids separately carrying Smad2, Smad3, and Smad4 for 6 hours, and then were routinely cultured for 48 hours. The Meox1 mRNA expression in the transfected cells of each group was detected by real-time fluorescent quantitative RT-PCR (n=3). (3) HDF-a cells were routinely cultured and grouped the same as in experiment (1). After 72 hours in culture, the enrichment of Smad2, Smad3, and Smad4 protein on the Meox1 promoter in the cells of each group was detected by chromatin immunoprecipitation-quantitative PCR (ChIP-qPCR) (n=3). (4) HDF-a cells were routinely cultured and divided into negative interference group, small interference RNA (siRNA)-Smad2 group, siRNA-Smad3 group, siRNA-Smad4 group, empty plasmid group, Smad2 OE group, Smad3 OE group, and Smad4 OE group, which were transfected respectively with 50 μmol/L random siRNA, siRNA-Smad2, siRNA-Smad3, siRNA-Smad4, 2 μg empty pcDNA3.1 plasmid and pcDNA3.1 plasmids separately carrying Smad2, Smad3, and Smad4 for 6 hours and then routinely cultured for 48 hours. The enrichment of Smad2, Smad3, and Smad4 protein on the Meox1 promoter in the cells of corresponding group was detected by ChIP-qPCR (n=3). (5) Two batches of HDF-a cells were cultured and divided into negative interference group, siRNA-Meox1 group, empty plasmid group, and Meox1 OE group, which were transfected respectively with 50 μmol/L random siRNA, siRNA-Meox1, 2 μg empty pcDNA3.1 plasmid and pcDNA3.1 plasmid carrying Meox1 for 6 hours and then routinely cultured for 24 hours. One batch of cells were subjected to scratch test with the scratch width being observed 24 hours after scratching and compared with the initial width for scratch wound healing; the other batch of cells were subjected to Transwell assay, in which the migrated cells were counted after being routinely cultured for 24 hours (n=3). (6) From January 2018 to June 2019, 3 hypertrophic scar patients (2 males and 1 female, aged 35-56 years) were admitted to the First Affiliated Hospital of Army Medical University (the Third Military Medical University) 8-12 months after burns. The scar tissue and normal skin tissue along the scar margin resected during surgery were taken, and immunohistochemical staining was performed to observe the distribution of Meox1 protein expression. Data were statistically analyzed with one-way analysis of variance and independent sample t test. Results: (1) After 72 hours in culture, a total of 843 genes were obviously differentially expressed between the two groups, being related to tissue repair, cell migration, inflammatory cell chemotaxis induction process and potential signaling pathways such as tumor necrosis factor, interleukin 17, extracellular matrix receptor. The TPM value of Meox1 in the cells of blank control group was 45.9±1.9, which was significantly lower than 163.1±29.5 of TGF-β(1) stimulation group (t=6.88, P&lt;0.01) with RNA-sequencing. After 72 hours in culture, the Meox1 mRNA expression levels in the cells of blank control group was 1.00±0.21, which was significantly lower than 11.00±3.61 of TGF-β(1) stimulation group (t=4.79, P&lt;0.01). (2) After 48 hours in culture, the Meox1 mRNA expression levels in the cells of Smad2 OE group, Smad3 OE group, and Smad4 OE group were 198.70±11.02, 35.47±4.30, 20.27±2.50, respectively, which were significantly higher than 1.03±0.19 of empty plasmid group (t=31.07, 13.80, 13.12, P&lt;0.01). (3) After 72 hours in culture, the enrichment of Smad2, Smad3, and Smad4 protein on the promoter of Meox1 in the cells of TGF-β(1) stimulation group was significantly higher than that of blank control group respectively (t=12.99, 41.47, 29.10, P&lt;0.01). (4) After 48 hours in culture, the enrichment of Smad2 protein on the promoter of Meox1 in the cells of negative interference group was (0.200 000±0.030 000)%, significantly higher than (0.000 770±0.000 013)% of siRNA-Smad2 group (t=11.67, P&lt;0.01); the enrichment of Smad2 protein on the promoter of Meox1 in the cells of empty plasmid group was (0.200 000±0.040 000)%, significantly lower than (0.700 000±0.090 000)% of Smad2 OE group (t=8.85, P&lt;0.01). The enrichment of Smad3 protein on the promoter of Meox1 in the cells of negative interference group was (0.500 0±0.041 3)%, significantly higher than (0.006 0±0.001 3)% of siRNA-Smad3 group (t=17.79, P&lt;0.01); the enrichment of Smad3 protein on the promoter of Meox1 in the cells of empty plasmid group was (0.470 0±0.080 0)%, which was significantly lower than (1.100 0±0.070 0)% of Smad3 OE group (t=9.93, P&lt;0.01). The enrichment of Smad4 protein on the promoter of Meox1 in the cells of negative interference group was similar to that of siRNA-Smad4 group (t=2.11, P&gt;0.05); the enrichment of Smad4 protein on the promoter of Meox1 in the cells of empty plasmid group was similar to that of Smad4 OE group (t=0.60, P&gt;0.05). (5) Twenty-four hours after scratching, the scratch healing width of cells in siRNA-Meox1 group was narrower than that of negative interference group, while that of Meox1 OE group was wider than that of empty plasmid group. After 24 hours in culture, the number of migration cells in negative interference group was significantly higher than that in siRNA-Meox1 group (t=9.12, P&lt;0.01), and that in empty plasmid group was significantly lower than that in Meox1 OE group (t=8.99, P&lt;0.01). (6) The expression of Meox1 protein in the scar tissue was significantly higher than that in normal skin of patients with hypertrophic scars. Conclusions: TGF-β(1) transcriptionally regulates Meox1 expression via Smad2/3 in HDF-a cells, thus promoting cell migration. 目的: 探讨成人真皮成纤维细胞(HDF-a)中转化生长因子β(1)(TGF-β(1))对Meox1的转录调控机制及细胞迁移功能的影响。 方法: (1)取HDF-a系细胞,用RPMI 1640完全培养基培养(下称常规培养),将细胞分为TGF-β(1)刺激组和空白对照组。TGF-β(1)刺激组细胞加入10 μL质量浓度为1 mg/μL的TGF-β(1)刺激,空白对照组加入等量磷酸盐缓冲液。培养72 h,取2组部分细胞进行转录组测序,筛选出2组差异表达比值≥2且P&lt;0.01的基因,对差异基因进行功能富集分析与京都基因和基因组百科全书代谢途径分析,记录Meox1每百万转录本(TPM)表达值,样本数为3;取2组部分细胞,采用实时荧光定量反转录PCR(RT-PCR)法检测Meox1 mRNA表达,样本数为3。(2)取对数生长期HDF-a系细胞(细胞生长期下同)常规培养,分为空质粒组和Smad2过表达组、Smad3过表达组、Smad4过表达组,分别转染2 μg pcDNA3.1空质粒和各自搭载Smad2、Smad3、Smad4的pcDNA3.1质粒,转染6 h后常规培养48 h,实时荧光定量RT-PCR法检测各组细胞中Meox1 mRNA的表达,样本数为3。(3)取HDF-a系细胞常规培养,同实验(1)分组处理,常规培养72 h,采用染色质免疫共沉淀-定量PCR(ChIP-qPCR)法检测2组细胞中Smad2、Smad3和Smad4蛋白在Meox1启动子上的富集度,样本数为3。(4)取HDF-a系细胞常规培养,分为阴性干扰组、小干扰RNA(siRNA)-Smad2组、siRNA-Smad3组、siRNA-Smad4组和空质粒组、Smad2过表达组、Smad3过表达组、Smad4过表达组,分别转染50 μmol/L随机siRNA、siRNA-Smad2、siRNA-Smad3、siRNA-Smad4和2 μg pcDNA3.1空质粒及各自搭载Smad2、Smad3、Smad4的pcDNA3.1质粒,转染6 h后常规培养48 h,ChIP-qPCR法检测相应组别细胞中Smad2、Smad3和Smad4蛋白在Meox1启动子上的富集度,样本数为3。(5)取2个批次HDF-a系细胞常规培养,均分为阴性干扰组、siRNA-Meox1组、空质粒组、Meox1过表达组,分别转染50 μmol/L随机siRNA、siRNA-Meox1和2 μg pcDNA3.1空质粒、搭载Meox1的pcDNA3.1质粒,转染6 h后常规培养24 h,1个批次细胞进行划痕实验,划痕后24 h观察划痕宽度,与划痕后即刻对比划痕愈合宽度;1个批次细胞进行Transwell实验,常规培养24 h,计数迁移细胞,样本数为3。(6)2018年1月—2019年6月,陆军军医大学(第三军医大学)第一附属医院收治3例烧伤后8~12个月增生性瘢痕患者(男2例、女1例,年龄35~56岁),取其术中切除的瘢痕组织和瘢痕边缘附带正常皮肤组织,行免疫组织化学染色,观察Meox1蛋白表达分布。对数据行单因素方差分析、独立样本t检验。 结果: (1)培养72 h,2组细胞差异表达明显的基因共843个,涉及组织修复、细胞迁移、炎性细胞趋化诱导过程等功能以及肿瘤坏死因子、白细胞介素17、细胞外基质受体等潜在的信号通路;空白对照组细胞测序结果的Meox1 TPM表达值为45.9±1.9,显著低于TGF-β(1)刺激组的163.1±29.5(t=6.88,P&lt;0.01)。培养72 h,空白对照组细胞Meox1 mRNA表达量为1.00±0.21,显著低于TGF-β(1)刺激组的11.00±3.61(t=4.79,P&lt;0.01)。(2)培养48 h,Smad2过表达组、Smad3过表达组和Smad4过表达组细胞中Meox1 mRNA表达量分别为198.70±11.02、35.47±4.30、20.27±2.50,均显著高于空质粒组的1.03±0.19(t=31.07、13.80、13.12,P&lt;0.01)。(3)培养72 h,TGF-β(1)刺激组细胞中Smad2、Smad3和Smad4蛋白在Meox1启动子上的富集度均显著高于空白对照组(t=12.99、41.47、29.10,P&lt;0.01)。(4)培养48 h,阴性干扰组细胞中Smad2蛋白在Meox1启动子上的富集度为(0.200 000±0.030 000)%,显著高于siRNA-Smad2组的(0.000 770±0.000 013)%(t=11.67,P&lt;0.01);空质粒组细胞中Smad2蛋白在Meox1启动子上的富集度为(0.200 000±0.040 000)%,显著低于Smad2过表达组的(0.700 000±0.090 000)%(t=8.85,P&lt;0.01)。阴性干扰组细胞中Smad3蛋白在Meox1启动子上的富集度为(0.500 0±0.041 3)%,显著高于siRNA-Smad3组的(0.006 0±0.001 3)%(t=17.79,P&lt;0.01);空质粒组细胞中Smad3蛋白在Meox1启动子上的富集度为(0.470 0±0.080 0)%,显著低于Smad3过表达组的(1.100 0±0.070 0)%(t=9.93,P&lt;0.01)。阴性干扰组细胞中Smad4蛋白在Meox1启动子上的富集度与siRNA-Smad4组相近(t=2.11,P&gt;0.05),空质粒组细胞中Smad4蛋白在Meox1启动子上的富集度与Smad4过表达组相近(t=0.60,P&gt;0.05)。(5)划痕后24 h,siRNA-Meox1组细胞划痕愈合宽度较阴性干扰组窄,Meox1过表达组细胞划痕愈合宽度较空质粒组宽。培养24 h,阴性干扰组迁移细胞数显著多于siRNA-Meox1组(t=9.12,P&lt;0.01),空质粒组迁移细胞数显著少于Meox1过表达组(t=8.99,P&lt;0.01)。(6)烧伤后增生性瘢痕患者瘢痕组织中Meox1蛋白表达明显高于正常皮肤组织。 结论: 在HDF-a系细胞中,TGF-β(1)通过Smad2/3转录调控Meox1表达,进而促进细胞迁移。."	"LncRNA CRNDE affects the proliferation and apoptosis of vascular smooth muscle cells in abdominal aortic aneurysms by regulating the expression of Smad3 by Bcl-3. Previous studies show that Long non-coding RNAs (LncRNAs) are involved in the regulation of various human diseases. This study aimed to reveal how LncRNA CRNDE regulated vascular smooth muscle cells (VSMCs) proliferation and apoptosis in abdominal aortic aneurysms (AAA). Here, we found CRNDE was down-regulated in AAA tissues and AngII-stimulated VSMCs. The overexpression of CRNDE promoted VSMCs proliferation and inhibited cell apoptosis. The interaction between CRNDE and Bcl-3 or Bcl-3 and Smad3 was verified. The interference with Bcl-3 or CRNDE reduced Smad3 stability or promoted Smad3 ubiquitination. After pcDNA-CRNDE or pcDNA-CRNDE+si-Bcl-3 was transfected into VSMCs and stimulated with AngII, CRNDE affected VSMCs proliferation and apoptosis via regulating Smad3 via Bcl-3. Vivo experiments showed the overexpression of CRNDE repressed AAA growth. Therefore, we concluded that CRNDE was down-regulated in AAA tissues and AngII-stimulated VSMCs. Furthermore, the overexpression of CRNDE promoted VSMCs proliferation and repressed cell apoptosis in AAA by up-regulating Smad3 via Bcl-3."	"Dysregulation of nuclear factor erythroid 2-related factor 2 signaling and activation of fibrogenic pathways in hearts of high fat diet-fed rats. High fat diet (HFD)-induced obesity adversely affects cardiac outcomes; however the effect of HFD consumption on myocardial remodeling and the underlying mechanisms are still elusive. This study aimed to examine the histological and molecular changes in cardiac tissue of HFD-fed rats. Eight-week old male Wistar rats were fed either HFD or normal chow diet for 16 weeks and then assessed for changes in metabolic and cardiac homeostasis (n = 10 each group). 16 weeks on HFD resulted in obesity, dyslipidemia and altered glucose tolerance but no hypertension. Histological examination of Masson's trichrome stained-cardiac sections revealed massive fibrotic changes, while immunoblotting analysis showed higher expressions of collagens I and III, and fibronectin in cardiac tissue of HFD-fed rats. The expressions of transforming growth factor beta1 and the phosphorylation of its downstream target, Smad3, were significantly increased in cardiac tissue of HFD-fed rats. Activation of endothelial-mesenchymal transition was promoted in hearts of HFD-fed rats, as evidenced by down-regulation of platelet endothelial cell adhesion molecule-1, while upregulation of α-smooth muscle actin and vimentin. Consumption of HFD induced dysregulation of AMP-activated protein kinase/glycogen synthase kinase-3 beta signaling in cardiac tissue of rats. This was coupled with down-regulation of nuclear factor erythroid-2-related factor 2 (Nrf2) and its downstream targets in cardiac tissue of HFD-fed rats, as well as enhanced the oxidative stress and inflammatory burden. These results demonstrate that moderate-term consumption of HFD can enhance oxidative stress, induce inflammation, and activate the fibrogenic pathways in cardiac tissue of rats which stimulate fibrotic remodeling. Our findings may implicate the dysregulation of Nrf2 signaling as a putative mechanism for this effect."	"Elevated intracellular copper contributes a unique role to kidney fibrosis by lysyl oxidase mediated matrix crosslinking. Copper ions play various roles in mammalian cells, presumably due to their involvement in different enzymatic reactions. Some studies indicated that serum copper correlates with fibrosis in organs, such as liver and lung. However, the mechanism is unknown. Here, we explored the role of copper in kidney fibrosis development and possible underlying mechanisms. We found that copper transporter 1 (CTR1) expression was increased in the kidney tissues in two fibrosis models and in patients with kidney fibrosis. Similar results were also found in renal tubular epithelial cells and fibroblast cells treated with transforming growth factor beta (TGF-β). Mechanistically, the upregulation of CTR1 required Smads-dependent TGF-β signaling pathway and Smad3 directly binded to the promoter of CTR1 in renal fibroblast cells using chromatin immunoprecipitation. Elevated CTR1 induced increase of copper intracellular influx. The elevated intracellular copper ions activated lysyl oxidase (LOX) to enhance the crosslinking of collagen and elastin, which then promoted kidney fibrosis. Reducing intracellular copper accumulation by knocking down CTR1 ameliorated kidney fibrosis in unilateral ureteral obstruction induced renal fibrosis model and renal fibroblast cells stimulated by TGF-β. Treatment with copper chelator tetrathiomolybdate (TM) also alleviated renal fibrosis in vivo and in vitro. In conclusion, intracellular copper accumulation plays a unique role to kidney fibrosis by activating LOX mediated collagen and elastin crosslinking. Inhibition of intracellular copper overload may be a potential portal to alleviate kidney fibrosis."	"Somatic SMAD3-activating mutations cause melorheostosis by up-regulating the TGF-β/SMAD pathway. Melorheostosis is a rare sclerosing dysostosis characterized by asymmetric exuberant bone formation. Recently, we reported that somatic mosaicism for MAP2K1-activating mutations causes radiographical &quot;dripping candle wax&quot; melorheostosis. We now report somatic SMAD3 mutations in bone lesions of four unrelated patients with endosteal pattern melorheostosis. In vitro, the SMAD3 mutations stimulated the TGF-β pathway in osteoblasts, enhanced nuclear translocation and target gene expression, and inhibited proliferation. Osteoblast differentiation and mineralization were stimulated by the SMAD3 mutation, consistent with higher mineralization in affected than in unaffected bone, but differing from MAP2K1 mutation-positive melorheostosis. Conversely, osteoblast differentiation and mineralization were inhibited when osteogenesis of affected osteoblasts was driven in the presence of BMP2. Transcriptome profiling displayed that TGF-β pathway activation and ossification-related processes were significantly influenced by the SMAD3 mutation. Co-expression clustering illuminated melorheostosis pathophysiology, including alterations in ECM organization, cell growth, and interferon signaling. These data reveal antagonism of TGF-β/SMAD3 activation by BMP signaling in SMAD3 mutation-positive endosteal melorheostosis, which may guide future therapies."	"Vemurafenib downmodulates aggressiveness mediators of colorectal cancer (CRC): LMWPTP, PTP1B and TGFβ. Colorectal Cancer (CRC) therapy confronts challenges as chemoresistance and side effects. Therefore, drugs with antitumor properties that downmodulate aggressiveness mediators are required. Studies have shown the relevance of Low Molecular Weight Tyrosine Phosphatase (LMWPTP), Protein Tyrosine Phosphatase 1B (PTP1B), and Transforming Growth Factor β (TGFβ) in mediating proliferation, chemoresistance, and metastasis. In this study, we aimed to investigate the responsiveness of colorectal cancer lines (HT29 and HCT116) towards Vemurafenib and whether this treatment could modulate these aggressiveness mediators. Cytotoxicity Assays (MTT and Trypan Exclusion Test) were performed to evaluate the viability of HT29 and HCT116 cells treated with Vemurafenib. Western blotting was performed to analyze the amount and/or the activity of mediators (LMWPTP, PTP1B, TGFβ, SMAD3), and the immunoprecipitation was performed to evaluate LMWPTP activity. This study brought up novel aspects of Vemurafenib action in colorectal cancer, which can decrease the activity of protein tyrosine phosphatases (LMWPTP and PTP1B) and the TGFβ pathway, making them important in the CRC aggressiveness. By downmodulating colorectal cancer hallmarks, Vemurafenib appears as an interesting candidate for CRC therapeutic protocols."	"TGFβ1 orchestrates renal fibrosis following Escherichia coli pyelonephritis. Renal scarring after pyelonephritis is linked to long-term health risks for hypertension and chronic kidney disease. Androgen exposure increases susceptibility to, and severity of, uropathogenic Escherichia coli (UPEC) pyelonephritis and resultant scarring in both male and female mice, while anti-androgen therapy is protective against severe urinary tract infection (UTI) in these models. This work employed androgenized female C57BL/6 mice to elucidate the molecular mechanisms of post-infectious renal fibrosis and to determine how these pathways are altered by the presence of androgens. We found that elevated circulating testosterone levels primed the kidney for fibrosis by increasing local production of TGFβ1 before the initiation of UTI, altering the ratio of transcription factors Smad2 and Smad3 and increasing the presence of mesenchymal stem cell (MSC)-like cells and Gli1 + activated myofibroblasts, the cells primarily responsible for deposition of scar components. Increased production of TGFβ1 and aberrations in Smad2:Smad3 were maintained throughout the course of infection in the presence of androgen, correlating with renal scarring that was not observed in non-androgenized female mice. Pharmacologic inhibition of TGFβ1 signaling blunted myofibroblast activation. We conclude that renal fibrosis after pyelonephritis is exacerbated by the presence of androgens and involves activation of the TGFβ1 signaling cascade, leading to increases in cortical populations of MSC-like cells and the Gli1 + activated myofibroblasts that are responsible for scarring."	"[Effect of Silencing FMOD on Proliferation and Migration of H322 Cells and Its Mechanism]. To investigate the regulation of fibromodulin (FMOD) on proliferation, adhesion and migration of non-small cell lung cancer cell line H322, and discuss its action mechanism. H322 cells were randomly divided into control group, small interfering RNA (siRNA) silencing FMOD ( FMOD siRNA) group and control siRNA (Con siRNA) group. FMOD siRNA and Con siRNA were transfected into H322 cells. The cell viability of each group was detected by CCK-8 method. The adhesion ability of cells was detected by fluorescein diacetate (FDA) fluorescent staining. The cell migration ability was detected by Transwell method. Real time-PCR was used to detect the mRNA expressions of Cyclin D1, intercellular adhesion molecule -1 (ICAM-1), E-cadherin, FMOD, transforming growth factor-β (TGF-β), Smad2, Smad3, Smad4 and Smad7 in cells. The protein expressions of Cyclin D1, ICAM-1, E-cadherin, FMOD, TGF-β1, Smad2, Smad3, Smad4 and Smad7 were detected by Western blot. Compared with the Con siRNA group, the cell viability, cell adhesion and migration ability of the FMOD siRNA group were decreased, and the difference was statistically significant ( P&lt;0.01). There was no significant difference between the control group and the Con siRNA group. Real time-PCR and Western blot results showed that the mRNA and protein expression levels of Cyclin D1, ICAM-1, TGF-β1, Smad2, Smad3 and Smad4 were decreased in FMOD siRNA group, compared with Con siRNA group, while the mRNA and protein expression levels of E-cadherin and Smad7 are elevated. Silencing of the FMOD gene significantly reduces the proliferation, adhesion and migration of H322 cells, which may be conducted by inhibiting the TGF-β/Smad signaling pathway."	"SMAD3 promotes ELK3 expression following transforming growth factor β-mediated stimulation of MDA-MB231 cells. Transforming growth factor-β (TGFβ) is a secreted cytokine whose aberrant spatiotemporal expression is related to cancer progression and metastasis. While TGFβ acts as a tumor suppressor in normal and premalignant stages, TGFβ functions as a tumor promoter during the malignant phases of tumor progression by prompting cancer cells to undergo epithelial-mesenchymal transition (EMT), which enhances tumor cell invasion and ultimately promotes metastasis to other organs. Extensive studies have been performed to uncover the molecular and cellular mechanisms underlying TGFβ inducing EMT in cancer cells. Here, we suggested that ELK3, which encodes a protein that orchestrates invasion and metastasis of triple negative breast cancer cells, is a downstream target of TGFβ-SMAD3 in MDA-MB231 cells. ELK3 expression was increased in a time-dependent manner upon TGFβ treatment. Chemical and molecular inhibition of the TGFβ receptor blocked the ability of TGFβ to induce ELK3 expression. Small interfering RNA-mediated suppression analysis revealed that SMAD3 induces TGFβ signaling to express ELK3. Moreover, the results of the luciferase reporter assay and chromatin immunoprecipitation analysis showed that SMAD3 directly binds to the SMAD-binding element on the promoter of ELK3 to activate gene expression following TGFβ stimulation. We concluded that ELK3 is a novel downstream target of TGFβ-SMAD3 signaling in aggressive breast cancer cells."	"Inhibiting of self-renewal, migration and invasion of ovarian cancer stem cells by blocking TGF-β pathway. To investigate the effect and mechanism of SB525334 on self-renewal, migration and invasion of ovarian cancer stem cells. ALDHhigh-expressing cancer stem cells (CSCs) were isolated from human ovarian cancer cell line SKOV-3 by flow cytometry and treated with 2μg/mL SB525334 for 6h. The sphere forming assay was used to detect the ability of self-renewal of CSCs and the colony formation assay was used to detect the tumorigenicity in vitro. Transwell migration and invasion assay were used to detect the migration and invasion ability of CSCs. To further explore the mechanism, real-time quantitative PCR and flow cytometry were used to detect the mRNA and protein expression of TGF-β, Smad2, Smad3, phosphorylated Smad2, phosphorylated Smad3 and Smad4, respectively. Expressions of epithelial-mesenchymal transition (EMT)-related genes E-cadherin, Snail, Vimentin were also assessed. The self-renewal ability, tumorigenicity in vitro, migration and invasion ability of CSCs were significantly attenuated after SB525334 treatment. The expressions of TGF-β, phosphorylated Smad2, phosphorylated Smad3, Snail, and Vimentin were decreased, while Smad4 and E-cadherin expressions were increased. SB525334 may inhibit the self-renewal, invasion and migration of ovarian CSCs by blocking the TGF-β/Smad/EMT pathway."	"Activation of BK Channels Prevents Hepatic Stellate Cell Activation and Liver Fibrosis Through the Suppression of TGFβ1/SMAD3 and JAK/STAT3 Profibrotic Signaling Pathways. Large-conductance and Ca<sup>2+</sup>-activated K<sup>+</sup> (BK) channels are expressed in human hepatic stellate cells (HSCs), where they have roles in normal hepatic microcirculation, as well as in portal hypertension in liver cirrhosis through the regulation of contractility in activated HSCs. Nevertheless, whether BK channel activity exerts protective effects against aberrant HSC activation and hepatic fibrosis is unknown. Here, we report that BK channels are expressed in activated primary rat HSCs as well as in a human HSC line. Moreover, whole-cell K<sup>+</sup> currents recorded from activated HSCs were markedly increased by exposure to rottlerin, a BK channel-specific activator, but were inhibited by treatment with the BK channel-specific inhibitor, paxilline, suggesting that BK channels are functional in activated HSCs. Overexpression but not downregulation of the BK channel pore-forming alpha subunit, KCNMA1, led to reduced migration and collagen expression in activated HSCs. Consistently, rottlerin treatment suppressed the fibrogenic cell function both in vitro and in CCl4-induced liver fibrosis in vivo. Microarray and pathway analysis, combined with a luciferase reporter assay and western blotting, further showed that rottlerin treatment led to a significant downregulation of the profibrotic TGFβ1/SMAD3 and JAK/STAT3 signaling pathways, both in vitro and in vivo. Our findings not only link BK channel function to profibrotic signaling pathways, but also provide evidence that BK channel activation represents a promising therapeutic strategy for the treatment of liver fibrosis."	"MSTN Mutant Promotes Myogenic Differentiation by Increasing Demethylase TET1 Expression via the SMAD2/SMAD3 Pathway. Myostatin (MSTN) is mostly expressed in skeletal muscle and plays crucial roles in the negative regulation of muscle mass development. The methylation and demethylation of myogenesis-specific genes are major regulatory factors in muscle satellite cell differentiation. The present study was designed to investigate the mechanism of myogenic differentiation regulated by MSTN mutation (MT) and the methylation/demethylation state of downstream genes. The results showed that, in the MSTN<sup>-/+</sup> satellite cells, a higher myotube fusion index and a larger myotube length were observed compared to the wild type controls; the genes associated with myogenesis were all up-regulated compared to the WT controls. The methylation of the promoters and gene bodies of PAX3, PAX7, MyoD, and MyoG were all down-regulated, while the expression of the key demethylase TET1 was significantly promoted. ChIP-qPCR was used to demonstrate that the SMAD2/SMAD3 complex combined with the promoter of TET1 to inhibit the activity of TET1 promoter, indicating that MSTN may regulate TET1 via SMAD2/SMAD3. The overexpression of TET1 in wild type cells promoted myogenic differentiation, increased the myotube index, and reduced the methylation of the associated genes. On the contrary, the knockdown of TET1 in the MSTN mutant cells resulted in the opposite phenomena as in the overexpressed cells. In conclusion, the myostatin mutant showed an increased transcriptional activity of TET1, inducing higher levels of demethylation and improving the transcriptional activity levels of myogenic differentiation-associated genes. The binding of SMAD2/SMAD3 directly to the TET1 promoter region indicated that the MSTN mutant demethylated the myogenesis-specific genes by up-regulating TET1, which is directly controlled by SMAD2/SMAD3."	"Computational model predicts paracrine and intracellular drivers of fibroblast phenotype after myocardial infarction. The fibroblast is a key mediator of wound healing in the heart and other organs, yet how it integrates multiple time-dependent paracrine signals to control extracellular matrix synthesis has been difficult to study in vivo. Here, we extended a computational model to simulate the dynamics of fibroblast signaling and fibrosis after myocardial infarction (MI) in response to time-dependent data for nine paracrine stimuli. This computational model was validated against dynamic collagen expression and collagen area fraction data from post-infarction rat hearts. The model predicted that while many features of the fibroblast phenotype at inflammatory or maturation phases of healing could be recapitulated by single static paracrine stimuli (interleukin-1 and angiotensin-II, respectively), mimicking the reparative phase required paired stimuli (e.g. TGFβ and endothelin-1). Virtual overexpression screens simulated with either static cytokine pairs or post-MI paracrine dynamic predicted phase-specific regulators of collagen expression. Several regulators increased (Smad3) or decreased (Smad7, protein kinase G) collagen expression specifically in the reparative phase. NADPH oxidase (NOX) overexpression sustained collagen expression from reparative to maturation phases, driven by TGFβ and endothelin positive feedback loops. Interleukin-1 overexpression had mixed effects, both enhancing collagen via the TGFβ positive feedback loop and suppressing collagen via NFκB and BAMBI (BMP and activin membrane-bound inhibitor) incoherent feed-forward loops. These model-based predictions reveal network mechanisms by which the dynamics of paracrine stimuli and interacting signaling pathways drive the progression of fibroblast phenotypes and fibrosis after myocardial infarction."	"Identification of clinically relevant variants by whole exome sequencing in Chinese patients with sporadic non-syndromic type A aortic dissection. Thoracic aortic aneurysm and dissection (TAAD) is a life-threatening disease, of which genetic abnormalities are considered as important risk factors. The present research aims at identifying causal variants in Chinese patients with sporadic non-syndromic type A TAAD (ATAAD). Whole exome sequencing (WES) was performed on 73 sporadic Chinese patients with ATAAD, 30 TAAD associated genes were curated for bioinformatic analyses. Clinical differences were compared between patients with and without causal variants. 15 pathogenic/likely pathogenic variants were identified (8 novel and 7 previously described) in 4 known TAAD-causal genes (FBN1, TGFBR2, SMAD3 and ACTA2) in 15 individuals, including 11 variants in FBN1 (7 missense, 3 truncating, and 1 splicing variants), 2 missense variants in TGFBR2, 1 ACTA2 frameshift variant and 1 SMAD3 frameshift variant. Significant clinical differences were found between patients with and without causal variants. Patients with TAAD-causal variants proved to have an earlier onset age, a more dilated aorta, and relatively intractable subtypes. Even without risk factor like hypertension, they might still suffer from TAAD with TAAD-causal variants. The variants identified in our research might not only result in the occurrence of ATAAD, but also add complexities and difficulties to the clinical practice. Our data demonstrated that WES was an effective tool for determining genetic etiologies of non-syndromic ATAAD and could be helpful in genetic counseling for ATAAD patients and their at-risk family members."	"Effects of endothelial progenitor cells transplantation on hyperlipidemia associated kidney damage in ApoE knockout mouse model. Hyperlipidaemia causes kidney damage over the long term. We investigated the effect of the administration of endothelial progenitor cells (EPCs) on the progression of kidney damage in a mouse model of hyperlipidaemia. Apolipoprotein E-knockout (ApoE<sup>-/-</sup>) mice were treated with a high-cholesterol diet after spleen resection. Twenty-four weeks later, the mice were divided into two groups and intravenously injected with PBS or EPCs. Six weeks later, the recruitment of EPCs to the kidney was monitored by immunofluorescence. The lipid, endothelial cell, and collagen contents in the kidney were evaluated by specific immunostaining. The protein expression levels of transforming growth factor-β (TGF-β), Smad2/3, and phospho-Smad3 (p-smad3) were detected by western blot analysis. ApoE<sup>-/-</sup> mice treated with a high-fat diet demonstrated glomerular lipid deposition, enlargement of the glomerular mesangial matrix, endothelial cell enlargement accompanied by vacuolar degeneration and an area of interstitial collagen in the kidney. Six weeks after EPC treatment, only a few EPCs were detected in the kidney tissues of ApoE<sup>-/-</sup> mice, mainly in the kidney interstitial area. No significant differences in TGF-β, p-smad3 or smad2/3 expression were found between the PBS group and the EPC treatment group (TGF-β expression, PBS group: 1.06 ± 0.09, EPC treatment group: 1.09 ± 0.17, P = 0.787; p-smad3/smad2/3 expression: PBS group: 1.11 ± 0.41, EPC treatment group: 1.05 ± 0.33, P = 0.861). Our findings demonstrate that hyperlipidaemia causes basement membrane thickening, glomerulosclerosis and the vascular degeneration of endothelial cells. The long-term administration of EPCs substantially has limited effect in the progression of kidney damage in a mouse model of hyperlipidaemia."	"A new target for the treatment of inflammatory bowel disease: Interleukin-37. Interleukin (IL)-37 belongs to the IL-1 cytokine family. It has anti-inflammatory effects on numerous autoimmune diseases such as asthma, psoriasis, inflammatory bowel disease (IBD), systemic lupus erythematosus (SLE), multiple sclerosis (MS) and rheumatoid arthritis (RA). Mechanistically, IL-37 plays an anti-inflammatory role by regulating the expression of inflammatory factors in two ways: binding extracellular receptors IL-18R or transferring into the nucleus with Smad3. IBD is a kind of idiopathic intestinal inflammatory disease with unknown etiology and pathogenesis. Recent researches had proved that IL-37 is negatively involved in the pathogenesis and development of IBD. Among various inflammatory diseases, IL-37 has been shown to regulate inflammatory development by acting on various immune cells such as neutrophils, macrophages (Mϕ), dendritic cells (DCs), T cells and intestinal epithelial cells. This review summarizes the biological role of IL-37, and its immunoregulatory effects on the immune cells, especially anti-inflammatory function in both human and experimental models of IBD."	"miR-29a-5p Targets SATB2 and Regulates the SIRT1/Smad3 Deacetylation Pathway to Inhibit Thoracic Ligamentum Flavum Cell Osteogenesis. Experimental analysis of the thoracic ligamentum flavum cell osteogenic differentiation process. This study aimed to explore the role of miR-29a-5p and special AT-rich sequence-binding protein 2 (SATB2) in a pathological osteogenic process. Thoracic ossification of the ligamentum flavum (TOLF) is an uncommon disease wherein ligaments within the spine undergo progressive ossification, resulting in stenosis of the spinal canal and myelopathy. MiR-29a-5p was found to be downregulated in ligament cells from ossified ligament tissue in a previous study. However, whether miR-29a-5p is involved in the process of TOLF has not been investigated. The expression of miR-29a-5p in ligament tissues or in the context of TOLF osteogenic cell differentiation were measured via qRT-PCR. Alkaline phosphatase (ALP) activity assay and Alizarin red staining were used to analyze cellular osteogenesis. The protein-level expression of SATB2, SIRT1 and Smad3 were measured via immunohistochemistry or western blotting. Dual luciferase reporter assays and western blotting were used to confirm that miR-29a targets SATB2. SATB2 was found to be upregulated and miR-29a-5p was downregulated in TOLF tissue. We additionally observed decreased miR-29a-5p expression during the process of TOLF osteogenic cell differentiation, and there was a marked reduction in the expression of key mediators of osteogenesis when miR-29a-5p was overexpressed. Consistent with this, when miR-29a-5p was inhibited this led to enhanced osteogenic cell differentiation of these cells. We further found miR-29a-5p to directly target and suppress the expression of SATB2. Knock down of SATB2 was sufficient to reduce the ability of miR-29a-5p to inhibit osteogenesis, and this also led to decreased SIRT1 expression and Smad3 acetylation. Together our findings indicate that miR-29a-5p is able to prevent thoracic ligamentum flavum cell osteogenesis at least in part via targeting SATB2 and thereby suppressing the SIRT1/Smad3 deacetylation pathway. N/A."	"Injectable double-crosslinked hydrogels with kartogenin-conjugated polyurethane nano-particles and transforming growth factor β3 for in-situ cartilage regeneration. Articular cartilage has a limited ability for self-repair after injury. Implantation of scaffolds functionalized with bioactive molecules that could induce the migration and chondrogenesis of endogenous mesenchymal stem cells (MSCs) provides a convenient alternative for in-situ cartilage regeneration. In this study, we found the synergistic effects of kartogenin (KGN) and transforming growth factor β3 (TGF-β3) on chondrogenesis of MSCs in vitro, indicating that KGN and TGF-β3 are a good match for cartilage regeneration. Furthermore, we confirmed that KGN promoted the chondrogenesis of MSCs through attenuating the degradation of Runx1, which physically interacted with p-Smad3 in nuclei of MSCs. Meanwhile, we designed an injectable double-crosslinked hydrogel with superior mechanical property and longer support for cartilage regeneration by modifying sodium alginate and gelatin. When loaded with KGN conjugated polyurethane nanoparticles (PN-KGN) and TGF-β3, this hydrogel showed biological functions by the release of KGN and TGF-β3, which promoted the MSC migration and cartilage regeneration in one system. In conclusion, the cell-free hydrogel, along with PN-KGN and TGF-β3, provides a promising strategy for cartilage repair by attracting endogenous MSCs and inducing chondrogenesis of recruited cells in a single-step procedure."	"Increased fibrotic signaling in a murine model for intra-arterial contrast-induced acute kidney injury. Contrast-induced acute kidney injury (CI-AKI) is a vexing problem, and more than 70 million patients undergo studies using iodinated contrast. The molecular mechanisms responsible for CI-AKI are poorly understood. The goal of the present article was to determine the role of transforming growth factor-β1 (TGF-β1)/mothers against decapentaplegic homolog (SMAD)3 and associated collagen expression in a murine model of intra-arterial CI-AKI. The murine model of CI-AKI after intra-arterial contrast agent administration was created by first performing a partial nephrectomy to induce chronic kidney disease. Twenty-eight days later, 100 μL of contrast agent [iodixanol (320 mg/mL)] or saline were administered via the carotid artery. Two days after contrast administration, compared with saline, average serum creatinine was significantly elevated (P &lt; 0.05). In the cortex, there was a significant increase in phosphorylated SMAD3 and gene expression of TGF-β1, TGF-β receptor type I, and TGF-β receptor type II at day 2 in the contrast group compared with the saline group. Average gene expressions of connective tissue growth factor, matrix metalloproteinase-2 and -9, and collagen type I-α and type IV-α were significantly increased at 2 days after contrast administration (all P &lt; 0.05). Moreover, there was a decrease in Ki-67 staining in the cortex, with an increase in terminal deoxynucleotidyl transferase dUTP nick-end labeling in the cortex and medulla after contrast administration (P &lt; 0.05). In the murine intra-arterial CI-AKI model, there was increased hypoxia and TGF-β1/SMAD3 pathway activation and collagen expression, resulting in renal fibrosis. Together, these results suggest that the TGF-β1/SMAD3 pathway could be a potential target in alleviating tissue fibrosis in CI-AKI."	"Aortic progression and reintervention in patients with pathogenic variants after a thoracic aortic dissection. To evaluate aortic disease progression and reintervention after an initial thoracic aortic dissection in pathogenic variant carriers. Of 175 participants diagnosed with thoracic aortic dissection, 31 had a pathogenic variant (pathogenic group) across 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, TGFBR2) identified by whole exome sequencing. Those with benign or normal variants (benign/normal group, n = 144) comprised the control group. Clinical data were collected through medical record review (1985-2018) and supplemented with the National Death Index database (December 2018). The entire cohort (n = 175) consisted of 108 type A aortic dissections and 67 type B aortic dissections, similarly distributed between groups. The pathogenic group was significantly younger (43 vs 56 years, P &lt; .0001) and had significantly more aortic root replacements and similar extents of arch replacement at initial type A aortic dissection repair. The median follow-up time was 7.5 (4.6-12) years. After initial treatment, the pathogenic group required significantly more aortic reinterventions (median 1 vs 0, P &lt; .0001) and mean cumulative aortic reinterventions for each patient (10 years: 1 vs 0.5, P = .029). Both incidence rate (12%/year vs 1.2%/year, P = .0001) and cumulative incidence of reinterventions (9 years: 70% vs 6%, P &lt; .0001) for the preserved native aortic root were significantly higher in the pathogenic group, but were similar for the preserved native aortic arch and distal aorta between groups. Ten-year survival was similar in the pathogenic and benign/normal groups (92% vs 85%). Aggressive aortic root replacement and similar arch management should be considered in pathogenic variant carriers at initial type A aortic dissection repair compared with benign/normal variant carriers."	"Long Non-coding RNA MIR570MG Causes Regorafenib Resistance in Colon Cancer by Repressing miR-145/SMAD3 Signaling. An increasing number of studies have shown that long non-coding RNA (lncRNA) dysregulation plays a fundamental role in the development of various cancers, including colon cancer. Nonetheless, the mechanisms of lncRNA in regorafenib-resistance remain unclear. Our research revealed the lncRNA MIR570MG increased in regorafenib-resistant colon cancer cells compared to the regorafenib-sensitive cells. Furthermore, MIR570MG sponged miR-145, which declined in regorafenib-resistant colon cancer cell lines. More importantly, overexpression of miR-145 hampered cell proliferation and retrieved colon cancer regorafenib-sensitivity, contrary to the function of MIR570MG. Dual-luciferase reporter assay confirmed that miR-145 bound to 3'-UTR of SMAD3, a transcriptional modulator activated by TGFβ, resulting in blockage of TGFβ /SMAD3-mediated cell growth and cycle progression. Besides, ectopic expression of miR-145 inhibitor in the parental cells endowed resistance to regorafenib. Inversely, knockdown of MIR570MG impoverished resistance against regorafenib. Additionally, overexpression of MIR570MG conquered the suppression of tumor growth by miR-146 and rehabilitated the resistance to regorafenib in HCT116R human colon cancer mouse models. In summary, our findings suggested that MIR570MG promoted regorafenib resistance via releasing SMAD3 from miR-145, leading to activation of SMAD3-mediated signaling pathways."	"Ginsenoside Rg1 protects against cigarette smoke-induced airway remodeling by suppressing the TGF-β1/Smad3 signaling pathway. Chronic obstructive pulmonary disease (COPD) is a devastating and common respiratory disease characterized by chronic inflammation and progressive airway remodeling. Ginsenoside Rg1 (GRg1), a major active component of Panax ginseng, has been found to possess beneficial properties against acute lung injury and respiratory diseases. However, the effects of GRg1 on airway remodeling in COPD remain unclear. In this study, we aimed to investigate the potential protective effects of GRg1 on airway remodeling induced by cigarette smoke (CS) and the underlying mechanism. A rat model of COPD was established in which the animals were subjected to CS and GRg1 daily for 12 weeks. Subsequently, we evaluated lung function, inflammatory responses, along with airway remodeling and associated signaling factors. GRg1 treatment was found to improve pulmonary function, reduce airway collagen volume fraction, and markedly reduce the expression of IL-6, TNF-α, α-SMA, and collagen I. Moreover, GRg1 treatment decreased the expression of TGF-β1, TGF-βR1, and phosphorylated-Smad3. In vitro, pretreatment of MRC5 human lung fibroblasts with GRg1 prior to exposure to cigarette smoke extract (CSE) reversed the cell ultrastructure disorder, decreased the expression of IL-6 and TNF-α, and significantly attenuated transdifferentiation of MRC5 cells by suppressing α-SMA and collagen I expression. Additionally, GRg1 suppressed the TGF-β1/Smad3 signaling pathway in CSE-stimulated MRC5 cells, whereas Smad3 over-expression abolished the anti-transdifferentiation effect of GRg1. In conclusion, the results of our study demonstrated that GRg1 improves lung function and protects against CS-induced airway remodeling, in part by down-regulating the TGF-β1/Smad3 signaling pathway."	"Fatty acid extracts facilitate cutaneous wound healing through activating AKT, ERK, and TGF-β/Smad3 signaling and promoting angiogenesis. Fatty acids (FAs) are potential therapeutic agents for cutaneous wound healing; however, the mechanisms underlying this effect have not been clearly defined. In this study, we extracted and characterized FAs from dried Lucilia sericata larvae and investigated the molecular basis by which FAs promote cutaneous wound healing. We first confirmed that FA sodium salts (FASSs) stimulated proliferation, migration, and tube formation of cultured human umbilical vein endothelial cells (HUVECs) in a dose-dependent manner. We then showed that FASSs promoted endothelial-to-mesenchymal transition (EndMT), which plays an important role in stabilizing the neovasculature during angiogenesis. Mechanistically, FASSs up-regulated the expression of angiogenesis-related growth factors, platelet-derived growth factor (PDGF), transforming growth factor-β1 (TGF-β1), and vascular endothelial growth factor A (VEGFA), and activated angiogenesis-related signaling pathways, AKT, ERK, and TGF-β/Smad3. In a rat acute cutaneous-wound model, FAs promoted wound healing. Following treatment, we further found that expression of anti-apoptosis-related factors (c-Myc and Bcl-2) was up-regulated and expression of apoptosis-related factors (p53 and Bad) was down-regulated. Our findings suggest that FAs can promote cutaneous wound healing by inducing angiogenesis, partly by activating AKT, ERK, and TGF-β/Smad3 signaling."	"Exendin-4 Ameliorates Cardiac Remodeling in Experimentally Induced Myocardial Infarction in Rats by Inhibiting PARP1/NF-κB Axis in A SIRT1-Dependent Mechanism. Sirt1 is a potent inhibitor of both poly(ADP-ribose) polymerases1 (PARP1) and NF-kB. This study investigated the cardioprotective effect of exendin-4 on cardiac function and remodeling in rats after an expreimentally-induced myocardial infarction (MI) and explored if this protection involves SIRT1/PARP1 axis. Rats were divided into five groups (n = 10/each): sham, sham + exendin-4 (25 nmol/kg/day i.p.), MI (induced by LAD occlusion), MI + exendin-4, and sham + exendin-4 + EX527 (5 mg/2×/week) (a SIRT1 inhibitor). All treatments were given for 6 weeks post the induction of MI. In sham-operated and MI-induced rats, exendin-4 significantly upregulated Bcl-2 levels, enhanced activity, mRNA, and levels of SIRT1, inhibited activity, mRNA, and levels of PARP1, and reduced ROS generation and PARP1 acetylation. In MI-treated rats, these effects were associated with improved cardiac architectures and LV function, reduced collagen deposition, and reduced mRNA and total levels of TNF-α and IL-6, as well as, the activation of NF-κB p65. In addition, exendin-4 inhibited the interaction of PARP1 with p300, TGF-β1, Smad3, and NF-κB p65 and signficantly reduced mRNA and protein levels of collagen I/III and protein levels of MMP2/9. In conclusion, exendin-4 is a potent cardioprotective agent that prevents post-MI inflammation and cardiac remodeling by activating SIRT1-induced inhibition of PARP1."	"The effects of inhibiting the activation of hepatic stellate cells by lignan components from the fruits of Schisandra chinensis and the mechanism of schisanhenol. Liver fibrosis is a pathological manifestation induced by chronic liver injury and may cause cirrhosis and liver cancer with the chronic progression of fibrosis. During the onset and progression of liver fibrosis, the activation of hepatic stellate cells (HSCs) is the core mechanism for the secretion of many extracellular matrices to induce fibrosis. Lignans are reportedly the main effective components of Schisandra chinensis with good anti-fibrosis effects. In this study, we compared the inhibiting effects of the seven lignan components from S. chinensis on HSC activation. We found that the seven lignans inhibited the activation of human HSCs (LX-2) in various degrees. Among all lignans, schisanhenol showed the best effect in inhibiting the activation of LX-2 with a dose-effect relationship. Sal also inhibited the phosphorylations of Smad1, Smad2, Smad3, extracellular regulated protein kinase (ERK), c-Jun N-terminal kinase (JNK), p38, and nuclear transcription factor-κB (NF-κB), as well as downregulated Smad4. All these findings suggested that schisanhenol may ameliorate liver fibrosis by inhibiting the transforming growth factor β (TGF-β)/Smad and mitogen-activated protein kinase (MAPK) signaling pathways. Remarkably, schisanhenol may be a potential anti-liver fibrosis drug and warrants further research."	"Cyanidin-3-glucoside from Black Rice Ameliorates Diabetic Nephropathy via Reducing Blood Glucose, Suppressing Oxidative Stress and Inflammation, and Regulating Transforming Growth Factor β1/Smad Expression. Diabetic nephropathy (DN) is one of the serious complications in diabetes. Cyanidin-3-glucoside (C3G) from black rice was reported to have hypoglycemic effects and an anti-osteoporosis effect in diabetic rats. Whether it has preventive effects on DN has not been reported. In this study, we established a rat model of DN, and C3G at two doses (10 and 20 mg kg<sup>-1</sup> day<sup>-1</sup>) were administered to see its anti-DN effect. A total of 8 weeks of C3G supplementation decreased blood glucose and serum insulin, improved the renal function, and relieved renal glomerular sclerosis and interstitial fibrosis of DN rats. Also, the kidneys of DN rats had improved the oxidative defense system. Pro-inflammatory mediators were markedly reduced in serum and kidneys of the C3G-treated groups. Transforming growth factor β1 (TGF-β1), phosphor-Smad2, and phosphor-Smad3 protein expression levels were significantly decreased in the kidney of the C3G-treated group, whereas the Smad7 expression level was upregulated by C3G. Our results indicate that C3G can ameliorate DN via antioxidative stress and anti-inflammation and regulate the TGF-β1/Smad2/3 pathway. Our results suggest that C3G from black rice might be used as a renal-protective nutrient in DN."	"Human Follicle-Stimulating Hormone ß Subunit Expression Depends on FOXL2 and SMAD4. Follicle-stimulating hormone (FSH), an essential regulator of mammalian fertility, is synthesized by pituitary gonadotrope cells in response to activins. In mice, activins signal via SMAD3, SMAD4, and FOXL2 to regulate transcription of the FSHβ subunit (Fshb) gene. Gonadotrope-specific deletion of Foxl2, alone or in combination with Smad4, renders mice FSH-deficient. Whether human FSHB expression is similarly regulated is not known. Here, we used a combination of transgenic and conditional knockout mouse strains to assess the roles of activins, FOXL2, and SMAD4 in regulation of the human FSHB gene. First, we cultured pituitaries from mice harboring a human FSHB transgene (hFSHB mice) and measured both murine Fshb and human FSHB messenger ribonucleic acid (mRNA) expression in response to exogenous activins or two antagonists of endogenous activin-like signaling (follistatin-288 and SB431542). Both murine Fshb and human FSHB expression were stimulated by activins and reduced by the inhibitors. Next, we analyzed human FSHB expression in hFSHB mice carrying floxed Foxl2 and Smad4 alleles. Cre-mediated ablation of FOXL2 and SMAD4 strongly reduced basal and activin-stimulated murine Fshb and human FSHB expression in cultured pituitaries. Finally, the hFSHB transgene was previously shown to rescue FSH production and fertility in Fshb knockout mice. However, gonadotrope-specific Foxl2/Smad4 knockout females carrying the hFSHB transgene have significantly reduced murine Fshb and human FSHB pituitary mRNA levels and are hypogonadal. Collectively, these data suggest that similar to Fshb regulation in mice, FOXL2 and SMAD4 play essential roles in human FSHB expression."	"Effect of chrysanthemum extract on myocardial fibrosis in rats with renovascular hypertension. To investigate the inhibitory effect of chrysanthemum extract on myocardial fibrosis in rats with renovascular hypertension, and explore the possible mechanism underlying this effect. Sixty Wistar rats were randomly divided into six groups: sham operation, model, positive control, and low-, medium-, and high-dose Huai chrysanthemum extract groups (ten rats per group). With the exception of the sham operation group, a renal hypertensive model was established in rats using the &quot;two-kidney, one clip&quot; method. After 6 weeks, low-, medium-, and high-dose groups were intragastrically administered chrysanthemum extract at 1, 2, or 4 g/kg, respectively, once daily for 4 weeks. The positive control group was administered Kato Pury at 50 mg/kg once daily for 4 weeks, while sham operation and model groups received an equal volume of distilled water once daily for 4 weeks. Blood pressure changes were examined before modeling, 6 weeks after modeling, and after 4 weeks of treatment administration. Ventricular remodeling indexes were measured by high frequency echocardiography after 4 weeks of treatment administration. Pathological changes were observed by hematoxylin and eosin, and Masson's trichrome staining methods. Collagen typeⅠ (Col Ⅰ) and type Ⅲ (Col Ⅲ) expression were examined by enzyme-linked immunosorbent assays. Transforming growth factor-β1 (TGF-β1), sma mad 3 (Smad3), Smad7, Ras homolog gene family, member A (RhoA), and Rho-associated protein kinase 1 (ROCK1) protein expression were detected by Western blot. Compared with the model group, chrysanthemum-administered groups and the positive control group showed significant improvement of arterial blood pressure, echocardiography indicators, and degree of myocardial fibrosis (P &lt; 0.05). In addition, these groups exhibited decreased expression of Col Ⅰ, Col Ⅲ, RhoA, ROCK1, TGF-β1, and Smad3, and increased Smad7 expression. Such improvements were most obvious in the high-dose chrysanthemum extract group (P &lt; 0.05). Chrysanthemum extract could effectively reduce myocardial fibrosis in rats with renovascular hypertension by a mechanism that potentially involves inhibition of RhoA/ROCK1 and TGF-β1/Smad signaling pathways."	"Tartrate-Resistant Acid Phosphatase 5/ACP5 Interacts with p53 to Control the Expression of SMAD3 in Lung Adenocarcinoma. Tartrate-resistant acid phosphatase 5 (TRAP/ACP5) has been shown to involve the development and prognosis of multiple tumors in previous studies; however, the mechanism in lung cancer is still unclear, and thus this study investigated the role of ACP5 in the progression of lung adenocarcinoma. After a series of in vitro and in vivo experiments, we observed that ACP5 expression was increased in lung adenocarcinomas (40/69, 57.97%); importantly, an increased ACP5 level was associated with patient age (p = 0.044) and lymph node metastasis (p = 0.0385). ACP5 overexpression significantly enhanced A549 and NCI-H1975 cell proliferation, migration, invasion, and epithelial-mesenchymal transition (EMT) and reduced cell apoptosis. Knocking down the expression of ACP5 could rescue the above cell phenotypes. Furthermore, enhancing ACP5 expression promoted lung adenocarcinoma cell hyperplasia and intrapulmonary metastasis in a mouse model. Additionally, mechanistic studies revealed that ACP5 might regulate p53 phosphorylation at Ser392, thereby enhancing the ubiquitination of p53, which then underwent degradation. Reducing the levels of p53 intensified the transcription of SMAD3, which promotes EMT in lung adenocarcinoma cells. In summary, the present study provides a theoretical basis and important scientific evidence on the key role of ACP5 in lung adenocarcinoma progression by inducing EMT via the regulation of p53/SMAD3 signaling."	"Tandospirone enhances the anti-myocardial fibrosis effect of valsartan in spontaneously hypertensive rats. Myocardial fibrosis (MF) is an unavoidable complication in patients with hypertensive heart disease. Valsartan, a widely used antihypertensive drug, was reported to inhibit MF. Deficiency in the 5-hydroxytryptamine (5-HT, serotonin) transporter gene has been proven to cause MF. Long-term sympathetic nerve excitability activates renin angiotensin aldosterone system leading to MF. Tandospirone, a partial agonist of the 5-HT1A receptor, has been commonly used to relieve psychiatric symptoms. However, there is limited evidence on the combination of valsartan and tandospirone for the treatment of MF. Therefore, we investigated the synergistic effect of tandospirone on the anti-MF activity of valsartan in spontaneously hypertensive rats (SHRs). Systolic blood pressure (SBP) of SHRs (12-week-old) was measured weekly using the tail-cuff method for eight weeks; the left ventricular was collected and weighted for calculation of the left ventricular mass index (LVMI). The myocardial histopathology of left ventricle was evaluated in rats by hematoxylin and eosin (H&amp;E) and Mason's trichrome staining assays. The mRNA and protein expressions of transforming growth factor β (TGF-β1), Sma- and Mad-related protein 3 (Smad3), and fibronectin (Fn) were investigated by real time PCR, immunohistochemistry, and Western blotting analysis, respectively. Tandospirone (40 mg/kg) could significantly improve the effect of valsartan (30 mg/kg) in decreasing the SBP of SHRs and lower the ratio of the LVMI in SHRs, compared to that of rats treated with valsartan or tandospirone alone. Tandospirone could also enhance the valsartan-induced reduction in collagen deposition in the myocardial tissues of SHRs. Furthermore, tandospirone could enhance the effect of valsartan on downregulating the expression levels of TGF-β1, Smad3, and Fn at both mRNA and protein levels. We report for the first time that tandospirone could improve the anti-MF efficacy of valsartan via the TGF-β1/Smad3 signaling pathway in SHRs. Our findings may provide valuable insight into the scientific rationale for combining tandospirone and valsartan in the treatment of MF clinically."	"The role of Smad2 and Smad3 in regulating homeostatic functions of fibroblasts in vitro and in adult mice. The heart contains an abundant fibroblast population that may play a role in homeostasis, by maintaining the extracellular matrix (ECM) network, by regulating electrical impulse conduction, and by supporting survival and function of cardiomyocytes and vascular cells. Despite an explosion in our understanding of the role of fibroblasts in cardiac injury, the homeostatic functions of resident fibroblasts in adult hearts remain understudied. TGF-β-mediated signaling through the receptor-activated Smads, Smad2 and Smad3 critically regulates fibroblast function. We hypothesized that baseline expression of Smad2/3 in fibroblasts may play an important role in cardiac homeostasis. Smad2 and Smad3 were constitutively expressed in normal mouse hearts and in cardiac fibroblasts. In cultured cardiac fibroblasts, Smad2 and Smad3 played distinct roles in regulation of baseline ECM gene synthesis. Smad3 knockdown attenuated collagen I, collagen IV and fibronectin mRNA synthesis and reduced expression of the matricellular protein thrombospondin-1. Smad2 knockdown on the other hand attenuated expression of collagen V mRNA and reduced synthesis of fibronectin, periostin and versican. In vivo, inducible fibroblast-specific Smad2 knockout mice and fibroblast-specific Smad3 knockout mice had normal heart rate, preserved cardiac geometry, ventricular systolic and diastolic function, and normal myocardial structure. Fibroblast-specific Smad3, but not Smad2 loss modestly but significantly reduced collagen content. Our findings suggest that fibroblast-specific Smad3, but not Smad2, may play a role in regulation of baseline collagen synthesis in adult hearts. However, at least short term, these changes do not have any impact on homeostatic cardiac function."	"Pim1 Maintains Telomere Length in Mouse Cardiomyocytes by Inhibiting TGFβ Signaling. Telomere attrition in cardiomyocytes is associated with decreased contractility, cellular senescence, and upregulation of proapoptotic transcription factors. Pim1 is a cardioprotective kinase that antagonizes the aging phenotype of cardiomyocytes and delays cellular senescence by maintaining telomere length, but the mechanism remains unknown. Another pathway responsible for regulating telomere length is the transforming growth factor beta (TGFβ) signaling pathway where inhibiting TGFβ signaling maintains telomere length. The relationship between Pim1 and TGFβ has not been explored. This study delineates the mechanism of telomere length regulation by the interplay between Pim1 and components of TGFβ signaling pathways in proliferating A549 cells and post-mitotic cardiomyocytes. Telomere length was maintained by lentiviral-mediated overexpression of PIM1 and inhibition of TGFβ signaling in A549 cells. Telomere length maintenance was further demonstrated in isolated cardiomyocytes from mice with cardiac-specific overexpression of PIM1 and by pharmacological inhibition of TGFβ signaling. Mechanistically, Pim1 inhibited phosphorylation of Smad2, preventing its translocation into the nucleus and repressing expression of TGFβ pathway genes. Pim1 maintains telomere lengths in cardiomyocytes by inhibiting phosphorylation of the TGFβ pathway downstream effectors Smad2 and Smad3, which prevents repression of TERT. Findings from this study demonstrate a novel mechanism of telomere length maintenance and provide a potential target for preserving cardiac function. Telomere maintenance is associated with preservation of cardiomyocyte functional competency and survival, with telomeric shortening linked to cardiomyopathic disease. Aging also contributes to telomere erosion that contributes to deterioration of myocardial performance. Pim1 kinase mediates beneficial effects to preserve cardiomyocyte survival and function and this report demonstrates a novel molecular mechanism of Pim1 action to mitigate telomeric shortening. Findings linking Pim1 to telomere biology introduce another facet of cardioprotection that can be developed as a molecular interventional approach to treat myocardial injury and heart failure."	"T-Cell Proapoptotic and Antifibrotic Activity Against Autologous Skin Fibroblasts in vitro Is Associated With IL-17A Axis Upregulation in Systemic Sclerosis. Background: Systemic sclerosis (SSc) T cells can induce apoptosis of autologous skin fibroblasts in vitro. Th17 cells have been reported to increase in SSc patients, and interleukin-17A (IL-17A) has a profibrotic function. We used a system based on T-cell-autologous fibroblast co-cultures to further investigate a possible role of IL-17A in SSc. Methods: T cells from diffuse SSc patients were co-cultured with autologous skin fibroblasts. IL17A mRNA was assessed by real-time PCR in co-cultured and control T cells, while IL17RA, CXCL1, CCL2, CCL3, COL1A1, COL3A1, CTGF, TGFBR2, and SMAD3 mRNAs were assessed in co-cultured and control fibroblasts. In subset experiments, co-cultures and control cells were treated with either IL-17A or IL-17A plus anti-IL17 receptor monoclonal antibody (α-IL-17RA mAb). Chemokine and procollagen type I (PCI) production was further investigated at the protein level in cell culture supernatants by multiple suspension immunoassay and sandwich ELISA, respectively. Co-cultured and control fibroblasts were also stained with Annexin V and analyzed by flow cytometry. Results: T cell-fibroblast co-cultures overexpressed IL17A and IL17RA. Furthermore, co-cultured fibroblasts upregulated IL-17A targets CXCL1, CCL2, and CCL3, while COL1A1, COL3A1, CTGF, and two key effectors of the TGF-β signaling, TGFBR2 and SMAD3, were found downregulated. Consistently, chemokine concentrations were increased in co-culture supernatants, while PCI levels were reduced, especially after stimulation with ectopic IL-17A. Finally, simultaneous α-IL-17RA mAb treatment restored PCI levels and reduced fibroblast apoptosis in IL-17A-stimulated co-cultures. Conclusion: These data suggest that IL-17A upregulation might play a role in modulating T cell-mediated antifibrotic and proapoptotic effects in co-cultured autologous skin fibroblasts."	"The long noncoding RNA Ptprd-IR is a novel molecular target for TGF-β1-mediated nephritis. The role of microRNAs (miRNAs) in chronic kidney disease (CKD) is relatively well established, but much less is known about the role(s) of long noncoding RNAs (lncRNAs). Transforming growth factor β1 (TGF-β1) mediates inflammatory and fibrogenic signaling in CKD via the transcription factor Smad3; however, the extent of lncRNAs-based regulation of TGF-β1 signaling in CKD remains unknown. Herein, we identified np_4334, a lncRNA we named Ptprd-IR, whose promoter contains a highly-conserved site for Smad3 binding. Smad3 knockout (KO) eliminated Ptprd-IR upregulation in a murine model of obstructive nephropathy. Furthermore, Ptprd-IR KO in renal tubular epithelial cell cultures blocked TGF-β1- and interleukin-1β (IL-1β)-mediated NF-κB inflammatory signaling but did not impact TGF-β1-triggered Smad3 pathway activity and fibrosis. Accordingly, Ptprd-IR overexpression (OE) upregulated TGF-β1- and IL-1β-mediated NF-κB pathway activation and production of pro-inflammatory cytokines but did not influence TGF-β1-mediated fibrogenic signaling. Additionally, transfection of obstructed kidneys with Ptprd-IR-directed shRNA attenuated the inflammatory response via NF-κB but did not impact TGF-β1/Smad3-mediated fibrogenesis. Overall, our findings demonstrate that the lncRNA Ptprd-IR stimulates the inflammatory response in kidneys and advocate Ptprd-IR as a possible therapeutic target for CKD."	"Exogenous hydrogen sulfide donor NaHS alleviates nickel-induced epithelial-mesenchymal transition and the migration of A549 cells by regulating TGF-β1/Smad2/Smad3 signaling. Nickel compounds are known to be common environmental and occupational carcinogens which also promote the migration of lung cancer cells. However, the molecular mechanism yet remains to be clarified. Hydrogen sulfide (H2S) is involved in cancer biological processes. However, the exact effect and functionality of H2S on nickel, towards the promotion of the migration ability of lung cancer cells, remains to be unknown. In this study, we have found that the nickel chloride (NiCl2) treatment significantly downregulates the protein levels of endogenous H2S enzyme cystathionine β-synthase (CBS), cystathionine γ-lyase (CSE) and 3-Mercaptopyruvate sulfurtransferase (3-MST). A correlation between NiCl2-induced epithelial-mesenchymal transition (EMT) and the migration ability of lung cancer A549 cells has been observed. Exogenous H2S donor, sodium hydrogen sulfide (NaHS) (100 μmol/L), can reverse NiCl2-induced EMT as well as the migration ability of A549 cells. NiCl2 treatment is able to upregulate the protein level of transforming growth factor-β1 (TGF-β1), p-Smad2, p-Smad3, p-JNK, p-ERK and p-P38 in a time-dependent fashion, indicating that both TGF-β1/Smad2/Smad3 and mitogen-activated protein kinase (MAPK) signaling cascades (a non-Smad pathway) may play essential roles in NiCl2-dependent EMT as well as cell migration of human lung cancer cells. Furthermore, exogenous NaHS alleviates the NiCl2-induced EMT and the migration ability of A549 cells only by regulating TGF-β1/Smad2/Smad3, rather than the MAPK, signaling pathway. These results indicate that the exogenous administration of NaHS might be a potential therapeutic strategy against nickel-induced lung cancer progression."	"Combined exposure of fine particulate matter and high-fat diet aggravate the cardiac fibrosis in C57BL/6J mice. Cardiac fibrosis is associated with fine particulate matter (PM2.5) exposure. In addition, whether high-fat diet (HFD) could exacerbate the PM2.5-induced cardiac injury was unevaluated. Thus, this study was aimed to investigate the combined effects of PM2.5 and HFD on cardiac fibrosis. The echocardiography and histopathological analysis showed that co-exposure of PM2.5 and HFD had a significant deleterious effect on both cardiac systolic and diastolic function accompanied the myofibril disorder and myocardial fibrosis in C57BL/6 J mice than exposed to PM2.5 or HFD alone. The augmented oxidative damage and increased α-SMA area percentage were detected in heart tissue of mice exposed to PM2.5 and HFD together. PM2.5 upregulated the expressions of cardiac fibrosis-related special markers, including collagen-I, collagen-III, TGF-β1, p-Smad3 and total Smad3, which had more pronounced activations in co-exposure group. Meanwhile, the factorial analysis exhibited the synergistic interaction regarded to the combined exposure of PM2.5 and HFD. Simultaneously, PM2.5 and palmitic acid increased intracellular ROS generation and activated the TGF-β1/Smad3 signaling pathway in cardiomyocytes. While the ROS scavenger NAC had effectively attenuated the ROS level and suppressed the TGF-β1/Smad3 signaling pathway. Taken together, our results demonstrated combined exposure to PM2.5 and HFD could aggravate cardiac fibrosis via activating the ROS/TGF-β1/Smad3 signaling pathway."	"Protection from β-cell apoptosis by inhibition of TGF-β/Smad3 signaling. Prevailing insulin resistance and the resultant hyperglycemia elicits a compensatory response from pancreatic islet beta cells (β-cells) that involves increases in β-cell function and β-cell mass. However, the sustained metabolic stress eventually leads to β-cell failure characterized by severe β-cell dysfunction and progressive loss of β-cell mass. Whereas, β-cell dysfunction is relatively well understood at the mechanistic level, the avenues leading to loss of β-cell mass are less clear with reduced proliferation, dedifferentiation, and apoptosis all potential mechanisms. Butler and colleagues documented increased β-cell apoptosis in pancreas from lean and obese human Type 2 diabetes (T2D) subjects, with no changes in rates of β-cell replication or neogenesis, strongly suggesting a role for apoptosis in β-cell failure. Here, we describe a permissive role for TGF-β/Smad3 in β-cell apoptosis. Human islets undergoing β-cell apoptosis release increased levels of TGF-β1 ligand and phosphorylation levels of TGF-β's chief transcription factor, Smad3, are increased in human T2D islets suggestive of an autocrine role for TGF-β/Smad3 signaling in β-cell apoptosis. Smad3 phosphorylation is similarly increased in diabetic mouse islets undergoing β-cell apoptosis. In mice, β-cell-specific activation of Smad3 promotes apoptosis and loss of β-cell mass in association with β-cell dysfunction, glucose intolerance, and diabetes. In contrast, inactive Smad3 protects from apoptosis and preserves β-cell mass while improving β-cell function and glucose tolerance. At the molecular level, Smad3 associates with Foxo1 to propagate TGF-β-dependent β-cell apoptosis. Indeed, genetic or pharmacologic inhibition of TGF-β/Smad3 signals or knocking down Foxo1 protects from β-cell apoptosis. These findings reveal the importance of TGF-β/Smad3 in promoting β-cell apoptosis and demonstrate the therapeutic potential of TGF-β/Smad3 antagonism to restore β-cell mass lost in diabetes."	"Role of FoxO3a as a negative regulator of the cardiac myofibroblast conversion induced by TGF-β1. Cardiac fibroblasts (CFs) are necessary to maintain extracellular matrix (ECM) homeostasis in the heart. Normally, CFs are quiescent and secrete small amounts of ECM components, whereas, in pathological conditions, they differentiate into more active cells called cardiac myofibroblasts (CMF). CMF conversion is characteristic of cardiac fibrotic diseases, such as heart failure and diabetic cardiomyopathy. TGF-β1 is a key protein involved in CMF conversion. SMADs are nuclear factor proteins activated by TGF-β1 that need other proteins, such as forkhead box type O (FoxO) family members, to promote CMF conversion. FoxO1, a member of this family protein, is necessary for TGF-β1-induced CMF conversion, whereas the role of FoxO3a, another FoxO family member, is unknown. FoxO3a plays an important role in many fibrotic processes in the kidney and lung. However, the participation of FoxO3a in the conversion of CFs into CMF is not clear. In this paper, we demonstrate that TGF-β1 decreases the activation and expression of FoxO3a in CFs. FoxO3a regulation by TGF-β1 requires activated SMAD3, ERK1/2 and Akt. Furthermore, we show that FoxO1 is crucial in the FoxO3a regulation induced by TGF-β1, as shown by overexpressed FoxO1 enhancing and silenced FoxO1 suppressing the effects of TGF-β1 on FoxO3a. Finally, the regulation of TGF-β1-induced CMF conversion was enhanced by FoxO3a silencing and suppressed by inhibited FoxO3a degradation. Considering these collective findings, we suggest that FoxO3a acts as a negative regulator of the CMF conversion that is induced by TGF-β1."	"Platelet-derived microvesicles promote endothelial progenitor cell proliferation in intimal injury by delivering TGF-β1. Intimal injury is an early stage of several cardiovascular diseases. Endothelial progenitor cells (EPCs) play a significant role in endothelial repair following vascular injury. Once the intima is damaged, EPCs are mobilized from the bone marrow to the injury site. Meanwhile, the injury to the intimal surface triggers platelet degranulation, aggregation, and adhesion to the damaged endothelium, and exposed collagen stimulates platelet to secrete platelet-derived microvesicles (PMVs). However, the role of PMVs in EPC function during this process remains unknown. In an in vivo study, EPCs and platelets were found to adhere to the injury site in Sprague-Dawley (SD) rat vascular injury model. In vitro, collagen stimulation induced the release of PMVs, and collagen-activated PMVs (ac.PMVs) significantly promoted EPC proliferation. Transforming growth factor-β1 (TGF-β1) content was increased in ac.PMVs. Activated PMVs significantly upregulated Smad3 phosphorylation in EPCs and increased Smad3 nuclear translocation from the cytoplasm. TGF-β1 knockdown ac.PMVs downregulated EPC proliferation. Recombinant TGF-β1 enhanced EPC proliferation. The TGF-β1 inhibitor SB431542 significantly repressed the intracellular signal triggered by ac.PMVs. Furthermore, the Smad3-specific phosphorylation inhibitor SIS3 effectively reversed the cell proliferation induced by ac.PMVs. Smad3 translocated to the nucleus and enhanced EPC proliferation via its downstream genes tenascin C (TNC), CDKN1A, and CDKN2A. r-TGF-β1 promoted reendothelialization and EPC proliferation in vivo. Our data demonstrate that activated PMVs deliver TGF-β1 from collagen-activated platelets to EPCs, which in turn activates Smad3 phosphorylation and regulates TNC, CDKN1A, and CDKN2A expression to promote EPC proliferation, suggesting that PMVs act as a key transporter and a potential therapeutic target for vascular injury."	"Circulating MiR-29a, Possible Use as a Biomarker for Monitoring IgA Nephropathy. Previous studies have shown that TGF-β1/Smad3 signaling promotes renal fibrosis by inhibiting miR-29. To date, only few studies have reportedon circulating microRNAs in IgA nephropathy (IgAN). However, the plasma expression of miR-29a and its role in patients with IgAN remains unclear. In this study, we attempted to elucidate whether plasma miR-29a expression can be used as a biomarker for monitoring disease states. For this study, 15 healthy subjects, 36 patients with untreated renal biopsy-proven IgAN, and 79 patients with IgAN, who were under treatment for a period of 1 year on an average, all of whom had similar age and gender distributions, were included. The plasma expression of miR-29a in each group was explored by real-time PCR, and the relationship between miR-29a expression and clinical, pathological, and prognostic indicators of IgAN was further evaluated. Relative plasma expression of miR-29a in patients with IgAN was significantly lower than that in healthy controls (P &lt; .001), and these changes in plasma miR-29a could be suppressed by treatment (P &lt; .05). Plasma miR-29a was positively correlated with eGFR and negatively correlated with proteinuria and serum creatinine, irrespective of whether or not the patients with IgAN accepted treatment (P &lt; .05). Plasma miR-29a level was negatively correlated with primary pathological parameters such as crescent formation, Lee's and Oxford classification (P &lt; .05). Kaplan-Meier analysis revealed that patients with high plasma expression of miR-29a had better renal function and better response to treatment compared to those with low expression (P &lt; .05). Plasma miR-29a could be considered as a biological marker that reflects renal damage and function, to predict the progression of IgAN."	"The Effects of Follistatin on the Differentiation of Human Bone Marrow Mesenchymal Stem Cells into Neurons-Like Cells. The present study was designed to evaluate the effects of Follistatin (FST) on the differentiation of human bone marrow mesenchymal stem cells (hBMSCs) into neuron-like cells. hBMSCs were isolated and characterized by cell surface markers including CD29, CD44, CD166, CD34, CD14, and CD45. Subsequently, 0.3, 3, and 10 nmol/L recombinant human FST (rhFST) were used to stimulate hBMSCs, respectively. Neuron-like cell differentiation and Nissl's body within the cytoplasm of hBMSCs were investigated by a transmission electron microscope (TEM). Meanwhile, nestin and NSE were determined by immunofluorescence. The expression level of Activin A, BMP4, Moysatin, and Smad3 were detected by Western blotting. The isolated hBMSCs were positive for CD29, CD44, and CD166, but negative for CD34, CD14, and CD45. The level of nestin and NSE mRNAs were significantly higher than those before induction (both P&lt;0.05). Additionally, immunofluorescence revealed that nestin and NSE positive cells significantly increased as the rhFST concentration increased. With the increase of rhFST concentration, the expression level of Activin A gradually decreased accordingly, but the expression levels of BMP4 and Moysatin did not change significantly. Furthermore, the expression level of Smad3 gradually decreased with the increase of rhFST concentration. Our study indicates that FST could effectively induce hBMSCs to differentiate into neuron-like cells in vitro. This differentiation mechanism may be related to the Activin A signalling pathway, partially through binding to Activin receptors and inhibiting expression of Smad3."	"In vitro Conversion into CD4+CD25+Foxp3+ Induced Regulatory T Cells Is Reduced in Atopic Dermatitis Patients. Atopic dermatitis (AD) is one of the most common inflammatory skin diseases, with an increasing incidence in clinical practice. AD models have demonstrated that TGF-β signaling is compromised in regulatory T cells (Tregs). This study aimed to investigate the TGF-β-dependent in vitro conversion of CD4+CD25- T cells derived from AD-patients into CD4+CD25+Foxp3+ induced Tregs (iTregs) in comparison to healthy controls. To analyze in vitro iTreg conversion, human CD4+CD25- T cells were cultured on anti-CD3-coated plates in the presence of TGF-β and IL-2 for up to 3 days. Consequently, the underlying mechanism of impaired CD4+CD25+Foxp3+ iTreg generation was explored by focusing on TGF-β signaling. Finally, the functionality of iTregs was investigated. Conversion of CD4+CD25-Foxp3- into CD4+CD25+Foxp3+ iTregs was diminished in AD individuals. Impaired iTreg generation was accompanied by a reduced surface expression of GARP (glycoprotein A repetitions predominant), a marker for activated Tregs. A reduced expression of Smad3 mRNA was revealed in CD4+CD25- T cells. Interestingly, the suppressive quality of iTregs was found to be equal in cells derived from AD and healthy donors. The signaling effect of TGF-β receptors on the suppressor quality of iTreg conversion is conserved. Impaired iTreg generation might be a reason for the lack of immune suppression in AD patients and contributes to the chronicity of the disease."	"Clinical and genetic data of 22 new patients with SMAD3 pathogenic variants and review of the literature. Pathogenic SMAD3 variants are responsible for a cardiovascular phenotype, mainly thoracic aortic aneurysms and dissections. Precocious identification of the vascular risk such as aortic dilatation in mutated patients has a major impact in terms of management, particularly to avoid dissection and sudden death. These vascular damages are classically associated with premature osteoarthritis and skeletal abnormalities. However, variable expressivity and incomplete penetrance are common with SMAD3 variants. To investigate the clinical variability observed within SMAD3 patients, we reviewed the phenotypic and genetic data of 22 new patients from our Centre and of 133 patients reported in the literature. From this cohort of 155 mutated individuals, we first aimed to delineate an estimated frequency of the main clinical signs associated with SMAD3 pathogenic variants and, then, to look for genotype-phenotype correlations, mainly to see if the aortic phenotype (AP) could be predicted by the SMAD3 variant type. We showed, herein, the absence of correlation between the SMAD3 variant type and the occurrence of an AP in patients. Therefore, this report brings additional data for the genotype-phenotype correlations of SMAD3 variants and the need to explore in more detail the effects of genetic modifiers that could influence the phenotype."	"Parathyroid hormone ameliorates temporomandibular joint osteoarthritic-like changes related to age. Ageing could be a contributing factor to the progression of temporomandibular joint osteoarthritis (TMJ OA), whereas its pathogenesis and potential therapeutic strategy have not been comprehensively investigated. We generated ageing mouse models (45-week and 60-week; 12-week mice as control) and intermittently injected 45-week mice with parathyroid hormone (PTH(1-34)) or vehicle for 4 weeks. Cartilage and subchondral bone of TMJ were analysed by microCT, histological and immunostaining. Western blot, qRT-PCR, ChIP, ELISA and immunohistochemical analysis were utilized to examination the mechanism of PTH(1-34)'s function. We showed apparent OA-like phenotypes in ageing mice. PTH treatment could ameliorate the degenerative changes and improve bone microarchitecture in the subchondral bone by activating bone remodelling. Moreover, PTH inhibited phosphorylation level of Smad3, which can combine with p16<sup>ink4a</sup> gene promoter region, resulting in reduced senescent cells accumulation and increased cellular proliferation of marrow mesenchymal stem cells (MSCs). ELISA also showed relieved levels of specific senescent-associated secretory phenotype (SASP) in ageing mice after PTH treatment. In summary, PTH may reduce the accumulation of senescent cells in subchondral bone by inhibiting p16<sup>ink4a</sup> and improve bone marrow microenvironment to active bone remodelling process, indicating PTH administration could be a potential preventative and therapeutic treatment for age-related TMJ OA."	"[The effect and mechanism of heat shock protein 47 on streptozotocin-induced diabetic cardiomyopathy]. Objective: To investigate the effect and specific mechanism of heat shock protein 47 (HSP47) on streptozotocin (STZ)-induced diabetic cardiomyopathy (DCM). Methods: A mouse model of type 1 diabetic cardiomyopathy was established by intraperitoneal injection of STZ. After 8 weeks of successful modeling, HSP47 was overexpressed by tail vein injection, and the heart of the mouse was harvested after 6 weeks. Hematoxylin-eosin (HE) staining and Sirius red (PSR) staining were used to detect the cross-sectional area of myocardial cells and myocardial fibrosis, respectively. Immunofluorescence staining with α-smooth muscle actin (α-SMA) and collagen Ⅰ was used to detect the degree of fibrosis activation. The expression level of fibrosis-related proteins was determined by Western blot. Results: The expression level of HSP47 in the myocardium of the diabetic group up-regulated (2.014±0.264 vs 1.004±0.064, P&lt;0.001). The area of myocardial cells in the diabetic group was increased compared with the control group [(235.3±20.7) μm(2) vs (172.8±13.6) μm(2), P&lt;0.001] and the cross-sectional area of myocardial cells in the HSP47 overexpression-diabetes group was further increased [(302.2±41.0) μm(2) vs (235.3±20.7) μm(2), P=0.009], while the mRNA levels of mouse cardiac hypertrophic markers atrial natriuretic peptide (ANP), type B brain natriuretic peptide (BNP), myosin heavy chain β (β-MHC) further upregulated (all P&lt;0.001). Compared with the control group, the myocardial fibrosis content in the diabetic group increased [(7.333±1.127)% vs (4.837±0.775)%, P=0.002] and the left ventricular fibrosis content of the HSP47 overexpressing diabetic group further increased [(9.175±1.008)% vs (7.333±1.127)%, P=0.025] and the mRNA levels of fibrosis index collagenⅠ, collagen Ⅲ, connective tissue growth factor (CTGF) and transforming growth factor β (TGFβ) further up-regulated (all P&lt;0.001). Immunofluorescence results showed that compared with the control group, the expression of collagenⅠ up-regulated in the endothelial stroma of the diabetic group and the content of collagenⅠ in the HSP47 over-expressing diabetic group was higher (P&lt;0.001). Western blot results indicated that the phosphorylation level of Smad3 and the protein levels of α-SMA and TGFβ in HSP47 overexpressing diabetic group increased, compared with those of diabetic group (all P&lt;0.001). Conclusion: HSP47 ameliorates STZ-induced diabetic myocardial fibrosis by activating the TGFβ/Smad3 signaling pathway. 目的: 探讨热休克蛋白47(HSP47)对链脲佐菌素(STZ)诱导的糖尿病心肌病的影响及具体机制。 方法: 采用8~10周龄C57BL/6雄性小鼠,随机分为对照组、HSP47过表达对照组、糖尿病组、HSP47过表达糖尿病组,每组12只。通过STZ腹腔注射的方法建立1型糖尿病心肌病小鼠模型,造模成功8周后应用小鼠尾静脉注射的方式过表达HSP47基因,6周后每组取出小鼠心脏6只用于病理和分子生物学分析。应用苏木精-伊红(HE)染色和天狼星红(PSR)染色分别检测心肌细胞横截面积和心肌组织纤维化程度;应用CD31和Ⅰ型胶原蛋白免疫荧光染色检测纤维化程度;采用免疫印迹法测定纤维化相关蛋白的表达水平。 结果: 与对照组比较,糖尿病组小鼠心肌HSP47表达水平上调(2.014±0.264比1.004±0.064,P&lt;0.001)。糖尿病组小鼠心肌细胞横截面积较对照组增加[(235.3±20.7)μm(2)比(172.8±13.6)μm(2),P&lt;0.001],HSP47过表达糖尿病组的心肌细胞横截面积进一步增加[(302.2±41.0)μm(2)比(235.3±20.7)μm(2),P=0.009]。同时,小鼠心肌肥厚标志物心房钠尿肽(ANP)、脑钠肽(BNP)、肌球蛋白重链β(β-MHC)mRNA表达水平进一步上调(均P&lt;0.001)。与对照组比较,糖尿病组小鼠心肌胶原纤维含量增加[(7.333±1.127)%比(4.837±0.775)%,P=0.002],HSP47过表达糖尿病组的心肌纤维含量进一步增加[(9.175±1.008)%比(7.333±1.127)%,P=0.025],同时纤维化指标Ⅰ型胶原蛋白、Ⅲ型胶原蛋白、结缔组织生长因子(CTGF)和转化生长因子β(TGFβ)的mRNA水平进一步上调(均P&lt;0.001)。Western印迹结果显示,与糖尿病组相比,HSP47过表达糖尿病组Smad3的磷酸化水平上调,同时α-平滑肌肌动蛋白(α-SMA)和TGFβ的蛋白水平增加(P&lt;0.001)。 结论: HSP47可通过激活TGFβ/Smad3信号通路恶化STZ诱导的糖尿病心肌纤维化。."	"TGFβ-mediated expression of TGFβ-activating integrins in SSc monocytes: disturbed activation of latent TGFβ? The pathophysiology of systemic sclerosis (SSc) is closely linked to overactive TGFβ signaling. TGFβ is produced and circulates in latent form, making its activation crucial for signaling. This activation can be mediated via integrins. We investigated the balance between active and latent TGFβ in serum of SSc patients and investigated if this correlates with integrin expression on monocytes. A TGFβ/SMAD3- or BMP/SMAD1/5-luciferase reporter construct was expressed in primary human skin fibroblasts. Both acidified and non-acidified sera of ten SSc patients and ten healthy controls were tested on these cells to determine total and active TGFβ and BMP levels respectively. A pan-specific TGFβ1/2/3 neutralizing antibody was used to confirm TGFβ signaling. Monocytes of 20 SSc patients were isolated using CD14+ positive selection, and integrin gene expression was measured using qPCR. Integrin expression was modulated using rhTGFβ1 or a small molecule inhibitor of TGFBR1: SB-505124. SSc sera induced 50% less SMAD3-reporter activity than control sera. Serum acidification increased reporter activity, but a difference between healthy control and SSc serum was no longer observed, indicating that total TGFβ levels were not different. Addition of a pan-specific TGFβ1/2/3 neutralizing antibody fully inhibited SMAD3-reporter activity of both acidified and not-acidified control and SSc sera. Both HC and SSc sera induced similar SMAD1/5-reporter activity, and acidification increased this, but not differently between groups. Interestingly, expression of two integrin alpha subunits ITGA5 and ITGAV was significantly reduced in monocytes obtained from SSc patients. Furthermore, ITGB3, ITGB5, and ITGB8 expression was also reduced in SSc monocytes. Stimulation of monocytes with TGFβ1 induced ITGA5 and ITGAV but lowered ITGB8 expression, whereas the use of the TGFβ receptor inhibitor SB-505124 had the opposite effect. Total TGFβ serum levels are not different between SSc patients and controls, but TGFβ activity is. This coincides with a reduced expression of TGFβ-activating integrins in monocytes of SSc patients. Because TGFβ regulates expression of these integrins in monocytes, a negative feedback mechanism possibly underlies these observations."	"Smad3 promotes AKI sensitivity in diabetic mice via interaction with p53 and induction of NOX4-dependent ROS production. The incidence and severity of acute kidney injury (AKI) is increased yearly in diabetic patients. Although the mechanisms for this remain unclear, the prevention of AKI in diabetic nephropathy is feasible and of value. As we detected highly activation of TGF-β/Smad3 signaling in both human biopsy and mouse model of diabetic nephropathy, we hypothesized that Smad3 activation in diabetic kidneys may increase AKI sensitivity. We tested our hypothesis in vitro using TGF-β type II receptor (TGF-βRII) disrupted tubular epithelial cells (TECs) and in vivo in mice with streptozotocin (STZ)-induced diabetic nephropathy before the induction of ischemia/reperfusion (I/R) injury. We found that high glucose (HG)-cultured TECs showed increased inflammation, apoptosis and oxidative stress following hypoxia/reoxygenation (H/R) injury. Disruption of TGF-βRII attenuated cell injury induced by H/R in HG-treated TECs. Consistently, Smad3 knockdown in diabetic kidney attenuated I/R-induced AKI. Mechanistically, Smad3 binds to p53 and enhances p53 activity in cells treated with HG and H/R, which may lead to TECs apoptosis. Additionally, ChIP assay showed that Smad3 bound with the promoter region of NOX4 and induced ROS production and inflammation. In conclusion, our results demonstrate that Smad3 promotes AKI susceptibility in diabetic mice by interacting with p53 and NOX4."	"TGFBR2 mediated phosphorylation of BUB1 at Ser-318 is required for transforming growth factor-β signaling. BUB1 (budding uninhibited by benzimidazoles-1) is required for efficient TGF-β signaling, through its role in stabilizing the TGFBR1 and TGFBR2 complex. Here we demonstrate that TGFBR2 phosphorylates BUB1 at Serine-318, which is conserved in primates. S318 phosphorylation abrogates the interaction of BUB1 with TGFBR1 and SMAD2. Using BUB1 truncation domains (1-241, 241-482 and 482-723), we demonstrate that multiple contact points exist between BUB1 and TGF-β signaling components and that these interactions are independent of the BUB1 tetratricopeptide repeat (TPR) domain. Moreover, substitutions in the middle domain (241-482) encompassing S318 reveals that efficient interaction with TGFBR2 occurs only in its dephosphorylated state (241-482 S318A). In contrast, the phospho-mimicking mutant (241-482 S318D) exhibits efficient binding with SMAD2 and its over-expression results in a decrease in TGFBR1-TGFBR2 and TGFBR1-SMAD2 interactions. These findings suggest that TGFBR2 mediated BUB1 phosphorylation at S318 may serve as a switch for the dissociation of the SMAD2-TGFBR complex, and therefore represents a regulatory event for TGF-β signaling. Finally, we provide evidence that the BUB1-TGF-β signaling axis may mediate aggressive phenotypes in a variety of cancers."	"Sirtuin 6 attenuates epithelial-mesenchymal transition by suppressing the TGF-β1/Smad3 pathway and c-Jun in asthma models. Allergic asthma is a chronic inflammatory airway disease involving airway remodeling. The histone deacetylase sirtuin6 (SIRT6) has protective effects in cardiac and liver fibrosis; however, its role in airway remodeling is unclear. In this study, we investigated the expression of SIRT6 in a rat model of airway remodeling and observed its effects on the epithelial-mesenchymal transition (EMT) in human bronchial epithelial 16HBE cells. Sprague-Dawley rats were sensitized and challenged with ovalbumin to induce airway remodeling or with phosphate-buffered saline as a control for different periods. Morphological changes, cell counts in the bronchoalveolar lavage fluid, and SIRT6 expression were assessed. 16HBE cells were transfected with plasmids to silence or overexpress SIRT6. Western blotting, quantitative polymerase chain reaction, Transwell assays, and cell proliferation assays were performed to examine the transforming growth factor (TGF)-β1-induced changes in EMT indicators and EMT-related cell behaviors. SIRT6 expression was upregulated in bronchial epithelial cells from rats with airway remodeling and in TGF-β1-treated 16HBE cells. SIRT6 overexpression affected TGF-β1-induced changes in EMT markers and EMT-like cell behaviors. In particular, SIRT6 overexpression alleviated the reduction in E-cadherin and the increases in N-cadherin, vimentin, alpha-smooth muscle actin, and metalloproteinase-9 levels in TGF-β1-treated 16HBE cells. Forced expression of SIRT6 also decreased the rates of cell migration and proliferation, reduced activation of phosphorylated Smad3 induced by TGF-β1 treatment, suppressed the acetylation level at histone H3K9, and inhibited the transcriptional activity of the c-Jun promotor. These results suggested that SIRT6 expression is upregulated during airway remodeling and modulates EMT in bronchial epithelial cells targeting Smad3 and c-Jun, highlighting a new therapeutic candidate for improving airway remodeling in asthma."	"miR-4286/TGF-β1/Smad3-Negative Feedback Loop Ameliorated Vascular Endothelial Cell Damage by Attenuating Apoptosis and Inflammatory Response. Atherosclerosis (AS), known as the chronic inflammatory disease, results from the dysfunction of vascular endothelial cells (VECs). Transforming growth factor-β1 (TGF-β1) has been reported to be induced by oxidized low-density lipoprotein (ox-LDL) and contribute to AS-related vascular endothelial cell damage. This work planned to study the mechanism of TGF-β1 in vascular endothelial cell damage. We found that TGF-β1 was activated by ox-LDL in human umbilical vascular endothelial cells (HUVECs). Silence of TGF-β1 reversed the inductive effect of ox-LDL on apoptosis and inflammatory response of HUVECs. Mechanistically, microRNA-4286 (miR-4286) targeted and inhibited TGF-β1 to inhibit Smad3, and Smad3 bound to the promoter of miR-4286 to repress its transcription. Rescue assays indicated that miR-4286 ameliorated the ox-LDL-induced apoptosis and inflammatory response through inhibiting TGF-β1. In conclusion, our study first demonstrated that miR-4286/TGF-β1/Smad3-negative feedback loop ameliorated vascular endothelial cell damage by attenuating apoptosis and inflammatory response, providing new thoughts for promoting the treatment of AS."	"Knockdown of SMAD3 inhibits the growth and enhances the radiosensitivity of lung adenocarcinoma via p21 in vitro and in vivo. Radiotherapy is an effective approach for the treatment of lung adenocarcinoma. However, evidence suggests that lung adenocarcinoma can easily develop tolerance to radiotherapy. The purpose of this study was to investigate the effect and mechanism of SMAD3 on the radiosensitivity of lung adenocarcinoma in vitro and in vivo. We found that knockdown of SMAD3 using two short hairpin RNAs in lentivirus vectors significantly inhibited cell growth and increased radiosensitivity of the lung adenocarcinoma cell lines A549, H1299, and H1975. Using RNA sequencing and bioinformatics analyses, we found that the significantly differentially expressed genes in SMAD3 knockdown cells were mainly enriched in the cell cycle process. We then showed that knockdown of SMAD3 significantly reduced expression of cyclin-dependent kinase inhibitor 1 (p21) and increased the proportion of G2/M phase cells and the radiosensitivity of lung adenocarcinoma. Chromatin immunoprecipitation results in the Gene Expression Omnibus (GEO) database and our luciferase assay verified that SMAD3 directly bound the p21 promoter. A series of rescue experiments showed that overexpression of p21 partly reversed the effect of SMAD3 on proliferation and radioresistance in vitro and in vivo. Moreover, we found that the expression levels of SMAD3 and p21 were highly correlated, and both correlated with the patients' survival in online databases and clinical specimens. Expression of SMAD3 and p21 was also significantly different between radioresistant and radiosensitive patients in our hospital. Our results indicate that SMAD3 is a potential prognosis and radiosensitivity indicator as well as a target for radiotherapy and other treatments of patients with lung adenocarcinoma."	"EIF5A2 is highly expressed in anaplastic thyroid carcinoma and is associated with tumor growth by modulating TGF-β signals. Anaplastic thyroid carcinoma (ATC) are resistant to standard therapies and has no effective treatment. Eukaryotic translation initiation factor 5A2 (EIF5A2) has shown to be upregulated inmany malignant tumors and proposed to be a critical gene involved in tumor metastasis. In thisstudy, we aim to investigate the expression status of EIF5A2 in human ATC tissues, and to study therole and mechanisms of EIF5A2 in ATC tumorigenesis in vitro and in vivo. Expression of EIF5A2protein were analyzed in paraffin-embedded human ATC tissues and adjacent nontumorous tissues(ANCT) (n=24) by immunochemistry. Expression of EIF5A2 mRNA and protein were analyzed infresh-matched ATC and ANCT (n=23) and ATC cell lines by real-time PCR and western blotting. Theeffect of targeting EIF5A2 with short hairpin RNA (shRNA) or EIF5A2 overexpression on the ATCtumorigenesis and TGF-&amp;beta;/Smad2/3 signals in vitro and in vivo was investigated. Expression ofEIF5A2 was significantly upregulated in ATC tissues and cell lines compared with ANCT and normalfollicular epithelial cell line. Functional studies found that targeting EIF5A2 induced SW1736 celldeath in vitro and in vivo, followed by significantly downregulated phosphorylation of Smad2/3(p-Smad2/3) in SW1736 cells at the protein level. Ectopic expression of EIF5A2 could promoted8505C cell growth in vitro and in vivo, followed by significantly upregulated p-Smad3 at the proteinlevel. Recombinant human TGF-&amp;beta;1 (hTGF-β1) treatment decreased the anti-proliferative activity ofthe EIF5A2 downexpressing 8505C cells through reversing p-Smad2/3. Using the specific inhibitorSB431542 to block TGF-&amp;beta; pathway or Smad3 siRNA to knockdown of Smad3 increased theanti-proliferative activity of the EIF5A2 overexpressing 8505C cells through inhibiting p-Smad2/3.Our findings indicated that EIF5A2 controled cell growth in ATC cells, and EIF5A/TGF-&amp;beta;/Smad2/3signal may be as a potential therapeutic target for ATC treatment."	"TGF-β3/Smad3 Contributes to Isoflurane Postconditioning Against Cerebral Ischemia-Reperfusion Injury by Upregulating MEF2C. Isoflurane postconditioning alleviates cerebral ischemic-reperfusion injury (CIRI), but the underlying mechanism has not been fully clarified. We previously demonstrated that the transforming growth factor beta-1 (TGF-β1)/Smads signaling pathway is involved in the neuroprotective effect of isoflurane postconditioning. TGF-β3 has a highly homologous sequence relative to that of TGF-β1. In this study, we explored the roles of the TGF-β3/Smad3 signaling pathway and myocyte enhancer factor 2C (MEF2C) in neuroprotection induced by isoflurane postconditioning. A CIRI rat model was established by middle cerebral artery occlusion for 1.5 h, followed by 24 h of reperfusion. Isoflurane postconditioning led to lower infarct volumes and neurologic deficit scores, more surviving neurons, and less damaged and apoptotic neurons as compared with those of CIRI rats. Moreover, isoflurane postconditioning upregulated the expressions of TGF-β3, p-Smad3, and MEF2C. However, the neuroprotective effect was reversed by pirfenidone, a TGF-β3/Smad3 signaling pathway inhibitor. Also, pirfenidone treatment downregulated the expression of MEF2C. These results indicate that the TGF-β3/Smad3 signaling pathway contributes to the neuroprotection of isoflurane postconditioning after CIRI and is possibly related to MEF2C."	"Targeting the E3 Ubiquitin Ligase PJA1 Enhances Tumor-Suppressing TGFβ Signaling. RING-finger E3 ligases are instrumental in the regulation of inflammatory cascades, apoptosis, and cancer. However, their roles are relatively unknown in TGFβ/SMAD signaling. SMAD3 and its adaptors, such as β2SP, are important mediators of TGFβ signaling and regulate gene expression to suppress stem cell-like phenotypes in diverse cancers, including hepatocellular carcinoma (HCC). Here, PJA1, an E3 ligase, promoted ubiquitination and degradation of phosphorylated SMAD3 and impaired a SMAD3/β2SP-dependent tumor-suppressing pathway in multiple HCC cell lines. In mice deficient for SMAD3 (Smad3<sup>+/-</sup>), PJA1 overexpression promoted the transformation of liver stem cells. Analysis of genes regulated by PJA1 knockdown and TGFβ1 signaling revealed 1,584 co-upregulated genes and 1,280 co-downregulated genes, including many implicated in cancer. The E3 ligase inhibitor RTA405 enhanced SMAD3-regulated gene expression and reduced growth of HCC cells in culture and xenografts of HCC tumors, suggesting that inhibition of PJA1 may be beneficial in treating HCC or preventing HCC development in at-risk patients.Significance: These findings provide a novel mechanism regulating the tumor suppressor function of TGFβ in liver carcinogenesis."	"A hepatocyte differentiation model reveals two subtypes of liver cancer with different oncofetal properties and therapeutic targets. Clinical observation of the association between cancer aggressiveness and embryonic development stage implies the importance of developmental signals in cancer initiation and therapeutic resistance. However, the dynamic gene expression during organogenesis and the master oncofetal drivers are still unclear, which impeded the efficient elimination of poor prognostic tumors, including human hepatocellular carcinoma (HCC). In this study, human embryonic stem cells were induced to differentiate into adult hepatocytes along hepatic lineages to mimic liver development in vitro. Combining transcriptomic data from liver cancer patients with the hepatocyte differentiation model, the active genes derived from different hepatic developmental stages and the tumor tissues were selected. Bioinformatic analysis followed by experimental assays was used to validate the tumor subtype-specific oncofetal signatures and potential therapeutic values. Hierarchical clustering analysis revealed the existence of two subtypes of liver cancer with different oncofetal properties. The gene signatures and their clinical significance were further validated in an independent clinical cohort and The Cancer Genome Atlas database. Upstream activator analysis and functional screening further identified E2F1 and SMAD3 as master transcriptional regulators. Small-molecule inhibitors specifically targeting the oncofetal drivers extensively down-regulated subtype-specific developmental signaling and inhibited tumorigenicity. Liver cancer cells and primary HCC tumors with different oncofetal properties also showed selective vulnerability to their specific inhibitors. Further precise targeting of the tumor initiating steps and driving events according to subtype-specific biomarkers might eliminate tumor progression and provide novel therapeutic strategy."	"SMAD7 enhances adult β-cell proliferation without significantly affecting β-cell function in mice. The interplay between the transforming growth factor β (TGF-β) signaling proteins, SMAD family member 2 (SMAD2) and 3 (SMAD3), and the TGF-β-inhibiting SMAD, SMAD7, seems to play a vital role in proper pancreatic endocrine development and also in normal β-cell function in adult pancreatic islets. Here, we generated conditional SMAD7 knockout mice by crossing insulin1<sup>Cre</sup> mice with SMAD7<sup>fx/fx</sup> mice. We also created a β cell-specific SMAD7-overexpressing mouse line by crossing insulin1<sup>Dre</sup> mice with HPRT-SMAD7/RosaGFP mice. We analyzed β-cell function in adult islets when SMAD7 was either absent or overexpressed in β cells. Loss of SMAD7 in β cells inhibited proliferation, and SMAD7 overexpression enhanced cell proliferation. However, alterations in basic glucose homeostasis were not detectable following either SMAD7 deletion or overexpression in β cells. Our results show that both the absence and overexpression of SMAD7 affect TGF-β signaling and modulates β-cell proliferation but does not appear to alter β-cell function. Reversible SMAD7 overexpression may represent an attractive therapeutic option to enhance β-cell proliferation without negative effects on β-cell function."	"Src Inhibition Attenuates Liver Fibrosis by Preventing Hepatic Stellate Cell Activation and Decreasing Connetive Tissue Growth Factor. The SRC kinase family comprises non-receptor tyrosine kinases that are ubiquitously expressed in all cell types. Although Src is reportedly activated in pulmonary and renal fibrosis, little is known regarding its role in liver fibrosis. This study investigated whether the inhibition of Src protects against liver fibrosis. The expression of Src was upregulated in thioacetamide (TAA)-induced fibrotic mouse liver and cirrhosis of patients, and phospho-Src was upregulated during activation of hepatic stellate cells (HSC). In addition, Src inhibition reduced the expression of α-smooth muscle actin (αSMA) in primary HSCs and suppressed transforming growth factor β (TGF-β)-induced expression of connective tissue growth factor (CTGF) in hepatocytes. Src inhibitor Saracatinib also attenuated TAA-induced expression of type I collagen, αSMA, and CTGF in mouse liver tissues. The antifibrotic effect of Src inhibitors was associated with the downregulation of smad3, but not of signal transducer and activator of transcription 3 (STAT3). In addition, Src inhibition increased autophagy flux and protected against liver fibrosis. These results suggest that Src plays an important role in liver fibrosis and that Src inhibitors could be treat liver fibrosis."	"Protective Effect of Low-Molecular-Weight Fucoidan on Radiation-Induced Fibrosis Through TGF-β1/Smad Pathway-Mediated Inhibition of Collagen I Accumulation. Radiation-induced fibrosis (RIF) occurs after radiation therapy in normal tissues due to excessive production and deposition of extracellular matrix proteins and collagen, possibly resulting in organ function impairment. This study investigates the effects of low-molecular-weight fucoidan (LMF) on irradiated NIH3T3 cells. Specifically, we quantified cellular metabolic activity, fibrosis-related mRNA expression, transforming growth factor beta-1 (TGF-β1), and collagen-1 protein expression, and fibroblast contractility in response to LMF. LMF pre + post-treatment could more effectively increase cellular metabolic activity compared with LMF post-treatment. LMF pre + post-treatment inhibited TGF-β1 expression, which mediates negative activation of phosphorylated Smad3 (pSmad3) and Smad4 complex formation and suppresses downstream collagen I accumulation. In addition, LMF pre + post-treatment significantly reduced actin-stress fibers in irradiated NIH3T3 cells. LMF, a natural substance obtained from brown seaweed, may be a candidate agent for preventing or inhibiting RIF."	"Dihydroquercetin protects against renal fibrosis by activating the Nrf2 pathway. Dihydroquercetin (DHQ) is an antifibrotic agent. However, whether DHQ can prevent renal fibrosis remains unknown. This study aimed to investigate the effects of DHQ on tubulointerstitial fibrosis and its underlying mechanisms in unilateral ureteral obstruction (UUO) mice in vivo and NRK-49F cells in vitro. In vivo, UUO mice received vehicle or DHQ treatment. In vitro, NRK-49F cells were pretreated with DHQ and exposed to transforming growth factor-β1 (TGF-β1). Changes in fibroblast activation, collagen synthesis, oxidative stress, and related signaling pathways were assessed by immunohistochemical staining, Western blot analysis, real-time reverse transcription-PCR, and fluorescence microscopy. UUO induced tubular atrophy, inflammation, fibroblast differentiation into myofibroblast, and collagen deposition, whereas DHQ ameliorated these effects. UUO also resulted in decreased levels of nuclear factor-erythroid-2-related factor 2 (Nrf2), catalase, and heme oxygenase-1, but increased H2O2 and malondialdehyde levels. DHQ treatment corrected these changes. In vitro, the intracellular Nrf2 level of NRK-49F exposed to TGF-β1 decreased. However, DHQ rescued intracellular Nrf2 level and promoted nuclear translocation of Nrf2. DHQ scavenged TGF-β1-induced accumulation of reactive oxygen species, inhibited TGF-β1-induced Smad3 phosphorylation, and prevented TGF-β1-induced fibroblast activation and collagen synthesis in NRK-49F. Nrf2 knockdown could suppress the DHQ-mediated inhibitory effects on oxidative stress, Smad3 phosphorylation, fibroblast activation, and collagen deposition. Furthermore, DHQ ameliorated established renal fibrosis in UUO mice. DHQ posed remarkable preventive and therapeutic effects on UUO-induced renal fibrosis and suppressed fibroblast activation by reducing oxidative stress and Smad3 phosphorylation via Nrf2 signaling. This study provided a mechanistic basis for the clinical application of DHQ in renal fibrosis treatment."	"Prenatal ultrasound features of Loeys-Dietz syndrome Type 4. Loeys-Dietz (LDS) syndromes (types 1-5) are autosomal dominant conditions with pathogenic variants in TGFβR1, TGFβR2, SMAD3, TGFβ2 and TGFβ3 that affect the cardiovascular, musculoskeletal and craniofacial systems. Aortic root dissection is a major cause of mortality in these individuals. Aortic root dilation is often present in childhood and may be recognized in utero. Our case highlights the prenatal ultrasound features of LDS. This article is protected by copyright. All rights reserved."	"Exosomal miR-19a from adipose-derived stem cells suppresses differentiation of corneal keratocytes into myofibroblasts. In this study, we investigated the effects of exosomal microRNAs (miRNAs) from adipose-derived stem cells (ADSCs) on the differentiation of rabbit corneal keratocytes. Keratocytes grown in 10% FBS differentiated into myofibroblasts by increasing HIPK2 kinase levels and activity. HIPK2 enhanced p53 and Smad3 pathways in FBS-induced keratocytes. Keratocytes grown in 10% FBS also showed increased levels of pro-fibrotic proteins, including collagen III, MMP9, fibronectin, and α-SMA. These effects were reversed by knocking down HIPK2. Moreover, ADSCs and exosomes derived from ADSCs (ADSCs-Exo) suppressed FBS-induced differentiation of keratocytes into myofibroblasts by inhibiting HIPK2. Quantitative RT-PCR analysis showed that ADSCs-Exos were significantly enriched in miRNA-19a as compared to ADSCs. Targetscan and dual luciferase reporter assays confirmed that the HIPK2 3'UTR is a direct binding target of miR-19a. Keratocytes treated with 10% FBS and ADSCs-Exo-miR-19a-agomir or ADSCs-Exo-NC-antagomir showed significantly lower levels of HIPK2, phospho-Smad3, phospho-p53, collagen III, MMP9, fibronectin and α-SMA than those treated with 10% FBS plus ADSCs-Exo-NC-agomir or ADSCs-Exo-miR-19a-antagomir. Thus, exosomal miR-19a derived from the ADSCs suppresses FBS-induced differentiation of rabbit corneal keratocytes into myofibroblasts by inhibiting HIPK2 expression. This suggests their potential use in the treatment of corneal fibrosis."	"Th2 cells as an intermediate for the differentiation of naïve T cells into Th9 cells, associated with the Smad3/Smad4 and IRF4 pathway. Type 9 T-helper (Th9) cells are associated with atopic and inflammatory diseases. Their increased levels and functions contribute to a number of inflammatory disorders, where they are accompanied by enhanced Th2-cell activity. However, there is currently no consensus regarding the association between Th9 and Th2 cells. Th9 cells may be induced from naïve T (Th0) cells under specific polarization conditions in vitro, a process driven by the addition of specific cytokines. In the present study, Th0 cells were cultured under Th9-polarizing conditions to promote differentiation into interleukin (IL)-4<sup>+</sup> IL-9<sup>-</sup> or IL-4<sup>-</sup> IL-9<sup>+</sup> T cells after 3 or 5 days in culture, respectively; the mRNA expression levels of IL-9 and IL-4 were consistent with the induced cell types. Simultaneously, the levels of interferon-regulatory factor 4 (IRF-4) and Smad3/Smad4 were significantly increased following Th9-cell polarization. It was therefore proposed that Th2 cells may be generated in the early stages of Th9-cell differentiation, and then ultimately differentiate into Th9 cells via the Smad3/Smad4 and IRF-4 activation pathway."	"Expression and Prognostic Value of Id-4 in Patients with Esophageal Squamous Cell Carcinoma. Our previous study demonstrated that Id-1 may promote the tumorigenicity of esophageal squamous cell carcinoma (ESCC). Id-4 is another member of Id family, which is rare to be studied in ESCC. In this study, we investigated the expression of Id-4 in human ESCC specimens and determined whether Id-4 expression was associated with the clinicopathologic characteristic and the prognosis of ESCC patients. We examined Id-4 expression using immunohistochemistry in 92 ESCC tissues and adjacent normal tissues. The association between Id-4 expression and clinical parameters and survival was evaluated by statistical analysis. Cox regression analyses were conducted to identify prognostic factors associated with overall survival (OS). In addition, we explored the functional mechanism of Id-4 in ESCC. Id-4 expression was significantly downregulated in ESCC tissues compared with adjacent normal tissues. The expression of Id-4 was associated negatively with pT stage (p=0.002), AJCC stage (p=0.008) and histologic differentiation (p&lt;0.001). OS was more unfavorable in patients with low expression of Id-4 than those with high expression of ESCC patients (p=0.007). In subgroup analysis, low expression of Id-4 could reveal unfavorable OS of patients with pT1b/T2 stage (p=0.024) or with pN0/N1 stage (p=0.004). By univariate analysis, pT stage and Id-4 expression showed statistically significant associations with OS (p=0.025, p=0.01, respectively). By multivariate analysis, Id-4 expression was an independent prognostic factor in ESCC (p =0.038). In addition, we observed that Id-4 could decrease the levels of the p-Smad2, p-Smad3 and TGF-β1 in both Eca109 and TE1 cells, indicating Id-4 may inactivate the TGF-β signaling pathway. Low expression of Id-4 suggested unfavorable prognosis for ESCC patients and could identify the prognosis in patients of early-stage tumors. The potential mechanism for Id-4's tumor suppressor role in ESCC may be related to its inhibitory effect on TGF-β signaling pathway. Thus, we believe that Id-4 may be a promising prognostic marker and a therapeutic target in ESCC."	"Renoprotective effect of vildagliptin following hepatic ischemia/reperfusion injury. Remote renal injury is a drastic consequence of hepatic ischemia/reperfusion (IR) injury. Vildagliptin (V) is a dipeptidyl peptidase-4 inhibitor that has a hepatorenal protective effect against models of liver and renal IR. This research was done to explore the protective role of vildagliptin against renal injury following hepatic IR injury as well as the possible involvement of transforming growth factor-beta (TGF-β)/Smad/alpha-smooth muscle actin (α-SMA) expressions in the pathophysiological mechanism of the remote renal injury. Three groups of male Wistar rats were organized into: sham group, IR group, and V + IR group in which 10 mg/kg/day of vildagliptin was pretreated for 10 days intraperitoneally. Blood in addition to renal and hepatic tissue samples was used for biochemical and histopathological studies. Hepatic IR induced a marked increase in serum creatinine, blood urea nitrogen, liver enzymes, renal nitric oxide, malondialdehyde, tumor necrosis factor-alpha levels with a marked upregulation of renal mRNA expressions of TGF-β, Smad2, Smad3, and α-SMA in addition to a marked decline in renal catalase content comparing to the sham group. Abnormal histopathological findings of hepatic and renal injury were detected in the IR group. Vildagliptin significantly improved these biochemical markers as well as the histopathological changes. The upregulation of renal TGF-β/Smad/α-SMA mRNA expressions was involved for the first time in the pathogenesis of the renal injury following hepatic IR and vildagliptin ameliorated this renal injury through blocking these expressions."	"Expanding the spectrum of SMAD3-related phenotypes to agnathia-otocephaly. Agnathia-otocephaly is a rare and lethal anomaly affecting craniofacial structures derived from the first pharyngeal arch. It is characterized by agnathia, microstomia, aglossia, and abnormally positioned auricles with or without associated anomalies. Variants affecting function of OTX2 and PRRX1, which together regulate the neural crest cells and the patterning of the first pharyngeal arch as well as skeletal and limb development, were identified to be causal for the anomaly in a few patients. Family-based exome sequencing (ES) on a fetus with severe agnathia-otocephaly, cheilognathopalatoschisis, laryngeal hypoplasia, fused lung lobes and other organ abnormalities and mRNA expression analysis were performed. Exome sequencing detected a de novo SMAD3 missense variant in exon 6 (c.860G&gt;A) associated with decreased mRNA expression. Variants in SMAD3 cause Loeys-Dietz syndrome 3 presenting with craniofacial anomalies such as mandibular hypoplasia, micro- or retro-gnathia, bifid uvula and cleft palate as well as skeletal anomalies and arterial tortuosity. The SMAD3 protein acts as a transcriptional regulator in the transforming growth factor β (TGFB) and bone morphogenetic (BMP) signaling pathways, which play a key role in the development of craniofacial structures originating from the pharyngeal arches. Agnathia-otocephaly with or without associated anomalies may represent the severe end of a phenotypic spectrum related to variants in genes in the interacting SMAD/TGFB/BMP/SHH/FGF developmental pathways."	"Secretome Analysis of Cardiomyocytes Identifies PCSK6 (Proprotein Convertase Subtilisin/Kexin Type 6) as a Novel Player in Cardiac Remodeling After Myocardial Infarction. Acute occlusion of a coronary artery results in swift tissue necrosis. Bordering areas of the infarcted myocardium can also experience impaired blood supply and reduced oxygen delivery, leading to altered metabolic and mechanical processes. Although transcriptional changes in hypoxic cardiomyocytes are well studied, little is known about the proteins that are actively secreted from these cells. We established a novel secretome analysis of cardiomyocytes by combining stable isotope labeling and click chemistry with subsequent mass spectrometry analysis. Further functional validation experiments included ELISA measurement of human samples, murine left anterior descending coronary artery ligation, and adeno-associated virus 9-mediated in vivo overexpression in mice. The presented approach is feasible for analysis of the secretome of primary cardiomyocytes without serum starvation. A total of 1026 proteins were identified to be secreted within 24 hours, indicating a 5-fold increase in detection compared with former approaches. Among them, a variety of proteins have not yet been explored in the context of cardiovascular pathologies. One of the secreted factors most strongly upregulated upon hypoxia was PCSK6 (proprotein convertase subtilisin/kexin type 6). Validation experiments revealed an increase of PCSK6 on mRNA and protein level in hypoxic cardiomyocytes. PCSK6 expression was elevated in hearts of mice after 3 days of ligation of the left anterior descending artery, a finding confirmed by immunohistochemistry. ELISA measurements in human serum also indicate distinct kinetics for PCSK6 in patients with acute myocardial infarction, with a peak on postinfarction day 3. Transfer of PCSK6-depleted cardiomyocyte secretome resulted in decreased expression of collagen I and III in fibroblasts compared with control treated cells, and small interfering RNA-mediated knockdown of PCSK6 in cardiomyocytes impacted transforming growth factor-β activation and SMAD3 (mothers against decapentaplegic homolog 3) translocation in fibroblasts. An adeno-associated virus 9-mediated, cardiomyocyte-specific overexpression of PCSK6 in mice resulted in increased collagen expression and cardiac fibrosis, as well as decreased left ventricular function, after myocardial infarction. A novel mass spectrometry-based approach allows investigation of the secretome of primary cardiomyocytes. Analysis of hypoxia-induced secretion led to the identification of PCSK6 as being crucially involved in cardiac remodeling after acute myocardial infarction."	"Photoperiodic effect on the testicular transcriptome in broiler roosters. Information about the effects of photoperiod on the testicular transcriptome of broiler roosters is limited. The aim of the present study was to explore the effect of different photoperiodic regimes on gene expression in the testes of broiler breeder roosters. One hundred and twenty Arbor Acres broiler breeder roosters aged 20 weeks were assigned to one of three groups (n = 40) and subjected to different photoperiodic regimes: control (CTR; 12.5 L:11.5 D), short day (SD; 8 L:16 D) and long day (LD; 16 L:8 D). After 4 weeks, the testes of 10 randomly selected birds from each group were dissected, sliced and haematoxylin-eosin stained. The testicular transcriptome of roosters from the SD and LD groups was determined by RNA sequencing (RNA-Seq), and the results were confirmed using quantitative real-time PCR. The seminiferous tubule area and sperm count increased significantly with the prolongation of photoperiod (p &lt; .01). Additionally, the RNA-Seq results indicated that 387 genes were upregulated and 1,052 genes were downregulated in the LD group compared with those in the SD group. Several crucial genes involved in rooster testicular development and reproduction were also screened, including heat shock proteins 90, extracellular regulated protein kinases 1, phosphatidylinositol 3-kinase, adenosine 5'-monophosphate -activated protein kinase, BCL-6 and Smad3. The differentially expressed genes were enriched in the mammalian targets of rapamycin (mTOR), forkhead box (FoxO), transforming growth factor beta (TGF-β) and insulin signalling pathway. In conclusion, a 16 hr photoperiod for 4 weeks increased the seminiferous tubule duct area and promoted spermatogenesis in the rooster's testicles, and the mTOR, FoxO, TGF-β and insulin signalling pathways may be involved."	"Paeonol Inhibits Pancreatic Cancer Cell Migration and Invasion Through the Inhibition of TGF-β1/Smad Signaling and Epithelial-Mesenchymal-Transition. Paeonol, a natural product derived from the root of Cynanchum paniculatum (Bunge) K. Schum and the root of Paeonia suffruticosa Andr. (Ranunculaceae) has attracted extensive attention for its anti-cancer proliferation effect in recent years. The present study examined the role of paeonol in suppressing migration and invasion in pancreatic cancer cells by inhibiting TGF-β1/Smad signaling. Cell viability was evaluated by MTT and colonial formation assay. Migration and invasion capabilities were examined by cell scratch-wound healing assay and the Boyden chamber invasion assay. Western Blot and qRT-PCR were used to measure the protein and RNA levels of vimentin, E-cadherin, N-cadherin, and TGF-β1/Smad signaling. At non-cytotoxic dose, 100 μΜ and 150 μΜ of paeonol showed significant anti-migration and anti-invasion effects on Panc-1 and Capan-1 cells (p&lt;0.01). Paeonol inhibited epithelial-mesenchymal-transition by upregulating E-cadherin, and down regulating N-cadherin and vimentin expressions. Paeonol inhibited TGF-β1/Smad signaling pathway by downregulating TGF-β1, p-Smad2/Smad2 and p-Smad3/Smad3 expressions. Further, TGF-β1 attenuated the anti-migration and anti-invasion capacities of paeonol in Panc-1 and Capan-1 cells. These findings revealed that paeonol could suppress proliferation and inhibit migration and invasion in Panc-1 and Capan-1 cells by inhibiting the TGF-β1/Smad pathway and might be a promising novel anti-pancreatic cancer drug."	"Identification of Smad-dependent and -independent signaling with transforming growth factor-β type 1/2 receptor inhibition in palatogenesis. TGF-β signaling is one of important function during palatal fusion. Three types of TGF-β receptor (TβR1, TβR2, and TβR3) have been identified, and play essential roles in mechanisms leading to palatal fusion. However, the balance between Smad-dependent/-independent signaling during palatal fusion with inhibited TβR1/2 functions is not fully understood. The objective of this study was to investigate palatal fusion via TGF-β signaling when TβR1 and TβR2, but not TβR3, were inhibited. In addition, the present study examined the functional balance between Smad-dependent/-independent signaling and related gene expression. Palatal organ cultures were treated with TβR1/2 inhibitor in vitro. Control palates were cultured without inhibitor. We observed histological phenotype of palatal fusion, and evaluation of expression pattern by Western blot or real time RT-PCR. Palatal organ cultures treated with the inhibitor did not fuse and the medial edge epithelium remained at embryonic 13 day +72 h in culture. The inhibitor decreased TβR1 and TβR2 expression by approximately 90%, but did not affect TβR3 expression. The expression of p-Smad2 and p-Smad3 was significantly decreased in treated palates compared with controls. The expression of p-Smad4 was slightly decreased in treated palates compared with controls. Smad-independent signaling was also affected by the inhibitor; p-ERK, p-JNK, and p-p38 expressions was significantly reduced in treated palates compared with controls. The expression of transcription factors (Runx1 and Msx1) and extracellular matrix proteins (MMP2/13) was also significantly decreased by inhibitor exposure. Treatment with TβR1/2 inhibitor altered the patterns of the Smad-dependent and -independent signaling pathways during palatal fusion."	"Fibrocytes, Wound Healing, and Corneal Fibrosis. This review highlights the roles of fibrocytes-their origin, markers, regulation and functions-including contributions to corneal wound healing and fibrosis. Literature review. Peripheral blood fibroblast-like cells, called fibrocytes, are primarily generated as mature collagen-producing cells in the bone marrow. They are likely derived from the myeloid lineage, although the exact precursor remains unknown. Fibrocytes are identified by a combination of expressed markers, such as simultaneous expression of CD34 or CD45 or CD11b and collagen type I or collagen type III. Fibrocytes migrate into the wound from the blood where they participate in pathogen clearance, tissue regeneration, wound closure and angiogenesis. Transforming growth factor beta 1 (TGF-β1) and adiponectin induce expression of α-smooth muscle actin and extracellular matrix proteins through activation of Smad3 and adenosine monophosphate-activated protein kinase pathways, respectively. Fibrocytes are important contributors to the cornea wound healing response and there are several mechanisms through which fibrocytes contribute to fibrosis in the cornea and other organs, such as their differentiation into myofibroblasts, production of matrix metalloproteinase, secretion of tissue inhibitor of metalloproteinase, and release of TGF-β1. In some tissues, fibrocytes may also contribute to the basement membrane regeneration and to the resolution of fibrosis. New methods that block fibrocyte generation, fibrocyte migration, and their differentiation into myofibroblasts, as well as their production of matrix metalloproteinases, tissue inhibitor of metalloproteinase, and TGF-β1, have therapeutic potential to reduce the accumulation of collagens, maintain tissue integrity and retard or prevent the development of fibrosis."	"Cell immaturity and white/beige adipocyte potential of primary human adipose-derived stromal cells are restrained by culture-medium TGFβ1. Human adipose-derived stem/stromal cells (hASCs) can differentiate into specialized cell types and thereby contribute to tissue regeneration. As such, hASCs have drawn increasing attention in cell therapy and regenerative medicine, not to mention the ease to isolate them from donors. Culture conditions are critical for expanding hASCs while maintaining optimal therapeutic capabilities. Here, we identified a role for transforming growth factor β1 (TGFβ1) in culture medium in influencing the fate of hASCs during in vitro cell expansion. Human ASCs obtained after expansion in standard culture medium (Standard-hASCs) and in endothelial cell growth medium 2 (EGM2-hASCs) were characterized by high-throughput transcriptional studies, gene set enrichment analysis and functional properties. EGM2-hASCs exhibited enhanced multipotency capabilities and an immature phenotype compared with Standard-hASCs. Moreover, the adipogenic potential of EGM2-hASCs was enhanced, including toward beige adipogenesis, compared with Standard-hASCs. In these conditions, TGFβ1 acts as a critical factor affecting the immaturity and multipotency of Standard-hASCs, as suggested by small mother of decapentaplegic homolog 3 (SMAD3) nuclear localization and phosphorylation in Standard-hASCs vs EGM2-hASCs. Finally, the typical priming of Standard-hASCs into osteoblast, chondroblast, and vascular smooth muscle cell (VSMC) lineages was counteracted by pharmacological inhibition of the TGFβ1 receptor, which allowed retention of SMAD3 into the cytoplasm and a decrease in expression of osteoblast and VSMC lineage markers. Overall, the TGFβ1 pathway appears critical in influencing the commitment of hASCs toward osteoblast, chondroblast, and VSMC lineages, thus reducing their adipogenic potential. These effects can be counteracted by using EGM2 culture medium or chemical inhibition of the TGFβ1 pathway."	"p90RSK Inhibition Ameliorates TGF-β1 Signaling and Pulmonary Fibrosis by Inhibiting Smad3 Transcriptional Activity. Idiopathic pulmonary fibrosis (IPF) is a specific form of progressive and chronic interstitial lung disease of unknown cause. IPF is characterized by excessive deposition of extracellular matrix (ECM) and destructive pathological remodeling due to epithelial-to-mesenchymal transition (EMT). Eventually, lung interstitium thickens and stiffens and breathing becomes difficult. It has been well established that the transforming growth factor-β1 (TGF-β1)/Smad signaling pathway plays a critical role in the pathogenesis of pulmonary fibrosis. TGF-β1-mediated activation of mitogen activated protein kinase (MAPK) family affects Smad signaling. p90RSK is a serine/threonine kinase and is activated by the extracellular signal-regulated kinase (ERK) signaling pathway. However, the roles played by p90RSK in TGF-β1 signaling and the pathogenesis of pulmonary fibrosis remain unknown. We investigated whether p90RSK regulates the pathogenesis of pulmonary fibrosis using in vitro and in vivo systems and Western blotting, real-time quantitative PCR, transcriptional activity assays and immunofluorescence studies. Pharmacological inhibition of p90RSK by FMK or inhibition of p90RSK with adenoviral vector encoding a dominant negative form of p90RSK suppressed TGF-β1-induced ECM accumulation and EMT in lung epithelial cells and fibroblasts. Interestingly, FMK significantly inhibited TGF-β1-induced Smad3 nuclear translocation and smad binding element-dependent transcriptional activity, but not Smad3 phosphorylation. Furthermore, in a mouse model of bleomycin-induced lung fibrosis, FMK ameliorated pulmonary fibrosis. These findings indicate that p90RSK plays critical roles in pulmonary fibrosis, which suggests it be viewed as a novel therapeutic target for the treatment of lung fibrosis."	"Down-regulation of microRNA-203a suppresses IL-1β-induced inflammation and cartilage degradation in human chondrocytes through Smad3 signaling. Osteoarthritis (OA) is a chronic and prevalent degenerative musculoskeletal disorder, which is characterized by articular cartilage degradation and joint inflammation. MicroRNA-203a (miR-203a) has been shown to be involved in multiple pathological processes during OA, but little is known about its function in chondrocyte extracellular matrix (ECM) degradation. In the present study, we aimed to elucidate the effects of miR-203a on articular cartilage degradation and joint inflammation. We observed that the miR-203a level was significantly up-regulated in OA tissues and in an in vitro model of OA, respectively. Inhibition of miR-203a significantly alleviated the interleukin (IL)-1β-induced inflammatory response and ECM degradation in chondrocytes. Moreover, mothers against decapentaplegic homolog 3 (Smad3), a key factor in maintaining chondrocyte homeostasis, was identified as a putative target of miR-203a in chondrocytes. More importantly, inhibition of Smad3 impaired the inhibitory effects of the miR-203a on IL-1β-induced inflammatory response and ECM degradation. Collectively, these results demonstrated that miR-203a may contribute to articular cartilage degradation of OA by targeting Smad3, suggesting a novel therapeutic target for the treatment of OA."	"TGF-β3 Induces Autophagic Activity by Increasing ROS Generation in a NOX4-Dependent Pathway. Higher concentrations of reactive oxygen species (ROS) have been associated with epithelial cell damage, cell shedding, and airway hyperresponsiveness. Previous studies have indicated that transforming growth factor-beta (TGF-β) mediates ROS production and NADPH oxidase (NOX) activity. In our previous study, we also observed that TGF-β3 increases mucus secretion in airway epithelial cells in an autophagy-dependent fashion. Although it is well known that the relationship between ROS and autophagy is cell context-dependent, the exact mechanism of action remains unclear. The following study examined whether ROS act as upstream of autophagy activation in response to TGF-β3 induction. Using an allergic inflammation mouse model induced by house dust mite (HDM), we observed elevated lung amounts of TGF-β3 accompanied by increased ROS levels. And we found that ROS levels were elevated and NOX4 expression was increased in TGF-β3-induced epithelial cells, while the lack of NOX4 in the epithelial cells could reduce ROS generation and autophagy-dependent MUC5AC expression treated with TGF-β3. Furthermore, our studies demonstrated that the Smad2/3 pathway was involved in TGF-β3-induced ROS generation by promoting NOX4 expression. The inhibition of ROS generation by N-Acetyl-L-cysteine (NAC) resulted in a decrease in mucus expression and autophagy activity in vivo as well as in vitro. Finally, TGF-β3-neutralizing antibody significantly reduced the ROS generation, mucus expression, and autophagy activity and also decreased the phosphorylation of Smad2 and Smad3. Taken together, the obtained results revealed that persistent TGF-β3 activation increased ROS levels in a NOX4-dependent pathway and subsequently induced autophagy as well as MUC5AC expression in the epithelial cells."	"Angiocrine FSTL1 (Follistatin-Like Protein 1) Insufficiency Leads to Atrial and Venous Wall Fibrosis via SMAD3 Activation. Angiocrine factors, mediating the endothelial-mural cell interaction in vascular wall construction as well as maintenance, are incompletely characterized. This study aims to investigate the role of endothelial cell-derived FSTL1 (follistatin-like protein 1) in vascular homeostasis. Approach and Results: Using conditional knockout mouse models, we show that loss of FSTL1 in endothelial cells (Fstl1<sup> ECKO </sup>) led to an increase of pulmonary vascular resistance, resulting in the heart regurgitation especially with tricuspid valves. However, this abnormality was not detected in mutant mice with Fstl1 knockout in smooth muscle cells or hematopoietic cells. We further showed that there was excessive αSMA (α-smooth muscle actin) associated with atrial endocardia, heart valves, veins, and microvessels after the endothelial FSTL1 deletion. There was also an increase in collagen deposition, as demonstrated in livers of Fstl1<sup> ECKO </sup> mutants. The SMAD3 (mothers against decapentaplegic homolog 3) phosphorylation (pSMAD3) was significantly enhanced, and pSMAD3 staining was colocalized with αSMA in vein walls, suggesting the activation of TGFβ (transforming growth factor β) signaling in vascular mural cells of Fstl1<sup> ECKO </sup> mice. Consistently, treatment with a TGFβ pathway inhibitor reduced the abnormal association of αSMA with the atria and blood vessels in Fstl1<sup> ECKO </sup> mutant mice. The findings imply that endothelial FSTL1 is critical for the homeostasis of vascular walls, and its insufficiency may favor cardiovascular fibrosis leading to heart failure."	"Curdione ameliorates bleomycin-induced pulmonary fibrosis by repressing TGF-β-induced fibroblast to myofibroblast differentiation. Idiopathic pulmonary fibrosis (IPF) is a progressive and irreversible disease characterized by excessive fibroblast to myofibroblast differentiation with limited therapeutic options. Curdione, a sesquiterpene compound extracted from the essential oil of Curcuma aromatica Salisb, has anti-inflammatory and anti-tumor effects. However, the role of curdione in IPF is still unclear. The effects of curdione were evaluated in a bleomycin (BLM)-induced pulmonary fibrosis mouse model. C57BL/6 mice were treated with BLM on day 0 by intratracheal injection and intraperitoneal administered curdione or vehicle. In vitro study, expression of fibrotic protein was examined and the transforming growth factor (TGF)-β-related signaling was evaluated in human pulmonary fibroblasts (HPFs) treated with curdione following TGF-β1 stimulation. Histological and immunofluorescent examination showed that curdione alleviated BLM-induced lung injury and fibrosis. Specifically, curdione significantly attenuated fibroblast to myofibroblast differentiation in the lung in BLM induced mice. Furthermore, curdione also decreased TGF-β1 induced fibroblast to myofibroblast differentiation in vitro, as evidenced by low expression of α-SMA, collagen 1 and fibronectin in a dose dependent manner. Mechanistically, curdione suppressed the phosphorylation of Smad3 following TGF-β1 treatment, thereby inhibiting fibroblast differentiation. Overall, curdione exerted therapeutic effects against pulmonary fibrosis via attenuating fibroblast to myofibroblast differentiation. As curdione had been shown to be safe and well-tolerated in BLM-induced mouse model, curdione might be useful for developing novel therapeutics for IPF."	"Transactivation of miR-202-5p by Steroidogenic Factor 1 (SF1) Induces Apoptosis in Goat Granulosa Cells by Targeting TGFβR2. MicroRNAs play key roles during ovary development, with emerging evidence suggesting that miR-202-5p is specifically expressed in female animal gonads. Granulosa cells (GCs) are somatic cells that are closely related to the development of female gametes in mammalian ovaries. However, the biological roles of miR-202-5p in GCs remain unknown. Here, we show that miR-202-5p is specifically expressed in GCs and accumulates in extracellular vesicles (EVs) from large growth follicles in goat ovaries. In vitro assays showed that miR-202-5p induced apoptosis and suppressed the proliferation of goat GCs. We further revealed that miR-202-5p is a functional miRNA that targets the transforming growth factor-beta type II receptor (TGFβR2). MiR-202-5p attenuated TGF-β/SMAD signaling through the degradation of TGFβR2 at both the mRNA and protein level, decreasing p-SMAD3 levels in GCs. Moreover, we verified that steroidogenic factor 1 (SF1) is a transcriptional factor that binds to the promoters of miR-202 and cytochrome P450 family 19 subfamily A member 1 (CYP19A1) through luciferase reporter and chromatin immunoprecipitation (ChIP) assays. That contributed to positive correlation between miR-202-5p and CYP19A1 expression and estradiol (E2) release. Furthermore, SF1 repressed TGFβR2 and p-SMAD3 levels in GCs through the transactivation of miR-202-5p. Taken together, these results suggest a mechanism by which miR-202-5p regulates canonical TGF-β/SMAD signaling through targeting TGFβR2 in GCs. This provides insight into the transcriptional regulation of miR-202 and CYP19A1 during goat ovarian follicular development."	"Pathogenesis and Development of Patellar Tendon Fibrosis in a Rabbit Overuse Model. The pathogenesis of patellar tendon fibrosis caused by overuse remains unclear. In an effort to further investigate effective treatments for patellar tendon fibrosis attributed to overuse, it is necessary to construct a reliable animal model. A rabbit patellar tendon fibrosis model was developed with the use of electrical stimulation to induce jumping. The pathogenesis and development of patellar tendon fibrosis were subsequently investigated with this model. Controlled laboratory study. A total of 32 New Zealand White rabbits were randomly divided into a jumping group and a control group. Rabbits in the control group did not receive any treatment, while those in the jumping group jumped 150 times daily, 5 days per week. At 2, 4, 6, and 8 weeks after the initiation of treatment, the patellar tendons of 4 rabbits from each group were harvested and subjected to hematoxylin and eosin staining, immunohistochemical staining, and real-time polymerase chain reaction. The influence of jumping training on the expressions of histology- and fibrosis-related factors in the patellar tendon was assessed. The histological changes of patellar tendon fibrosis in the jumping group were most pronounced at 4 weeks. When compared with the control group at corresponding time points, the mRNA and protein expressions of TGF-β1, CTGF, COL-I, and COL-III were upregulated significantly in the patellar tendon after jumping training for 4 weeks (P &lt; .05). Intragroup comparison at different time points indicated that the mRNA and protein expressions of TGF-β1, COL-I, and COL-III were the highest at 4 weeks in the jumping group (P &lt; .01). It was found that patellar tendon fibrosis occurred because of overuse and the peak changes occurred at 4 weeks. Jumping load increased the secretions of TGF-β1 and Smad3 in the patellar tendon, with CTGF upregulation and higher synthesis of COL-I and COL-III, which were considered the pathogenesis of fibrosis. This study simulated the effects of jumping load on tendon fibrosis at different time points. Moreover, the time course relationship between jumping training and patellar tendon fibrosis in the rabbit model was determined, which provided a new animal model for the study of patellar tendon fibrosis."	"The crosstalk between RNA m<sup>6</sup>A epitranscriptome and TGFβ signaling pathway contributes to the arrest of cell cycle. TGFβ signaling pathway is critical for the cell division, differentiation and apoptosis, the aberrant regulation of which will result in severe diseases including cancer. N6-methyl-adenosine (m<sup>6</sup>A) is one of the most abundant modifications on mRNA, it is unclear yet how m<sup>6</sup>A epitranscriptome response to stimulation of TGFβ. Here, we found that cellular m<sup>6</sup>A level of RNA was elevated after TGFβ treatment, which might be regulated by upregulation of WTAP and METTL3. MeRIP-Seq of mRNAs of MCF7 with or without treated by TGFβ showed that mRNA with upregulated m<sup>6</sup>A modification level after TGFβ treatment were enriched in TGFβ signaling pathway. Phosphorylated level of SMAD2 or SMAD3 induced by TGFβ was impaired when WTAP was silenced. Moreover, the m<sup>6</sup>A modification and mRNA level of JunB, which is known as a cell cycle inhibitor, both were increased after induction of TGFβ and decreased after knockdown of WTAP. Intriguingly, growth inhibition caused by TGFβ was rescued in WTAP-knockdown cells. Collectively, these results reveal the key role that m<sup>6</sup>A pathway playing in the cell cycle arrest induced by TGFβ signaling, providing new mechanisms explanation for growth inhibition mediated by TGFβ."	"TGF-β pathway activation by idiopathic pulmonary fibrosis (IPF) fibroblast derived soluble factors is mediated by IL-6 trans-signaling. Idiopathic pulmonary fibrosis (IPF) is a chronic and ultimately fatal disease characterized by a progressive decline in lung function. Fibrotic diseases, such as IPF, are characterized by uncontrolled activation of fibroblasts. Since the microenvironment is known to affect cell behavior, activated fibroblasts can in turn activate healthy neighboring cells. Thus, we investigated IPF paracrine signaling in human lung fibroblasts (HLFs) derived from patients with IPF. Primary human fibroblast cultures from IPF (IPF-HLF) and control donor (N-HLF) lung tissues were established and their supernatants were collected. These supernatants were then added to N-HLFs for further culture. Protein and RNA were extracted from IPF/ N-HLFs at baseline. Interleukin-6 (IL-6) and TGF-β-related signaling factors (e.g. STAT3, Smad3) were evaluated by western blot and qPCR. IL-6 levels were measured by ELISA. IL-6 signaling was blocked by Tocilizumab (TCZ) (10 ng/ml). IPF-HLFs were found to significantly overexpress IL-6 receptor (IL-6R), suppressor of cytokine signaling 3 (SOCS3), phospho-STAT3-Y705 and phospho-Smad3 in comparison to N-HLFs (p &lt; 0.05). In addition, they were found to proliferate faster, secrete more IL-6 and express higher levels of the soluble IL-6R. IPF-HLF increased proliferation was inhibited by TCZ. Moreover, IPF-HLF derived supernatants induced both direct and indirect STAT3 activation that resulted in Smad3 phosphorylation and elevated Gremlin levels in N-HLFs. These effects were also successfully blocked by TCZ. IPF-HLF paracrine signaling leads to IL-6R overexpression, which in turn, affects N-HLF survival. The IL-6/STAT3/Smad3 axis facilitates cellular responses that could potentially promote fibrotic disease. This interplay was successfully blocked by TCZ."	"MiR-182 inhibits kidney fibrosis by regulating transforming growth factor β1/Smad3 pathway in autosomal dominant polycystic kidney disease. The aim of the present study was to investigate the molecular mechanism of miR-182 in kidney fibrosis in polycystic kidney disease (PKD). We measured the expression of miR-182 in kidney tissue of autosomal dominant PKD. Additionally, we investigated the relationship between miR-182 and fibrotic protein by transfecting miR-182 mimics and miR-182 inhibitor into polycystic kidney cyst-lined epithelial cells, respectively. Furthermore, we observed the interaction between transforming growth factor β1 (TGF-β1) and miR-182 and fibrinogen factors of cyst-lined epithelial cells after TGF-β1 intervention, and measured the expression of Smad2 and Smad3 protein. Results are presented as follows: (a) MiR-182 was positively correlated with fibrosis of cyst-lined epithelial cells; (b) TGF-β1 could induce fibrosis of cyst-lined epithelial cells; (c) the expression of miR-182 had a remarkably impact on the fibrosis induced by TGF-β1, but had little effect on the expression of TGF-β1; (d) the expression of Smad3 protein in TGF-β1 induce-cyst-lined epithelial cells was increased. TGF-β1 and miR-182 promoting the fibrosis of polycystic kidney cyst-lined epithelial cells may be mediated by the TGF-β1/Smad3 signaling pathway, of which Smad3 was an important regulator."	"Melatonin alleviates cardiac fibrosis via inhibiting lncRNA MALAT1/miR-141-mediated NLRP3 inflammasome and TGF-β1/Smads signaling in diabetic cardiomyopathy. Melatonin is a hormone produced by the pineal gland, and it has extensive beneficial effects on various tissue and organs; however, whether melatonin has any effect on cardiac fibrosis in the pathogenesis of diabetic cardiomyopathy (DCM) is still unknown. Herein, we found that melatonin administration significantly ameliorated cardiac dysfunction and reduced collagen production by inhibiting TGF-β1/Smads signaling and NLRP3 inflammasome activation, as manifested by downregulating the expression of TGF-β1, p-Smad2, p-Smad3, NLRP3, ASC, cleaved caspase-1, mature IL-1β, and IL-18 in the heart of melatonin-treated mice with diabetes mellitus (DM). Similar beneficial effects of melatonin were consistently observed in high glucose (HG)-treated cardiac fibroblasts (CFs). Moreover, we also found that lncRNA MALAT1 (lncR-MALAT1) was increased along with concomitant decrease in microRNA-141 (miR-141) in DM mice and HG-treated CFs. Furthermore, we established NLRP3 and TGF-β1 as target genes of miR-141 and lncR-MALAT1 as an endogenous sponge or ceRNA to limit the functional availability of miR-141. Finally, we observed that knockdown of miR-141 abrogated anti-fibrosis action of melatonin in HG-treated CFs. Our findings indicate that melatonin produces an antifibrotic effect via inhibiting lncR-MALAT1/miR-141-mediated NLRP3 inflammasome activation and TGF-β1/Smads signaling, and it might be considered a potential agent for the treatment of DCM."	"MiR-203a-3p regulates TGF-β1-induced epithelial-mesenchymal transition (EMT) in asthma by regulating Smad3 pathway through SIX1. Asthma is a common chronic airway disease with increasing prevalence. MicroRNAs act as vital regulators in cell progressions and have been identified to play crucial roles in asthma. The objective of the present study is to clarify the molecular mechanism of miR-203a-3p in the development of asthma. The expression of miR-203a-3p and Sine oculis homeobox homolog 1 (SIX1) were detected by quantitative real-time polymerase chain reaction (qRT-PCR). The protein levels of SIX1, fibronectin, E-cadherin, vimentin, phosphorylated-drosophila mothers against decapentaplegic 3 (p-Smad3) and Smad3 were measured by Western blot. The interaction between miR-203a-3p and SIX1 was confirmed by dual-luciferase reporter assay and RNA immunoprecipitation (RIP) assay. MiR-203a-3p was down-regulated and SIX1 was up-regulated in asthma serums, respectively. Transforming growth factor-β1 (TGF-β1) treatment induced the reduction of miR-203a-3p and the enhancement of SIX1 in BEAS-2B and 16HBE cells in a time-dependent manner. Subsequently, functional experiments showed the promotion of epithelial-mesenchymal transition (EMT) induced by TGF-β1 treatment could be reversed by miR-203a-3p re-expression or SIX1 deletion in BEAS-2B and 16HBE cells. SIX1 was identified as a target of miR-203a-3p and negatively regulated by miR-203a-3p. Then rescue assay indicated that overexpressed miR-203a-3p ameliorated TGF-β1 induced EMT by regulating SIX1 in BEAS-2B and 16HBE cells. Moreover, miR-203a-3p/SIX1 axis regulated TGF-β1 mediated EMT process in bronchial epithelial cells through phosphorylating Smad3. These results demonstrated that MiR-203a-3p modulated TGF-β1-induced EMT in asthma by regulating Smad3 pathway through targeting SIX1."	"Dual role of RACK1 in airway epithelial mesenchymal transition and apoptosis. Airway epithelial apoptosis and epithelial mesenchymal transition (EMT) are two crucial components of asthma pathogenesis, concomitantly mediated by TGF-β1. RACK1 is the downstream target gene of TGF-β1 shown to enhancement in asthma mice in our previous study. Balb/c mice were sensitized twice and challenged with OVA every day for 7 days. Transformed human bronchial epithelial cells, BEAS-2B cells were cultured and exposed to recombinant soluble human TGF-β1 to induced apoptosis (30 ng/mL, 72 hours) and EMT (10 ng/mL, 48 hours) in vitro, respectively. siRNA and pharmacological inhibitors were used to evaluate the regulation of RACK1 protein in apoptosis and EMT. Western blotting analysis and immunostaining were used to detect the protein expressions in vivo and in vitro. Our data showed that RACK1 protein levels were significantly increased in OVA-challenged mice, as well as TGF-β1-induced apoptosis and EMT of BEAS-2B cells. Knockdown of RACK1 (siRACK1) significantly inhibited apoptosis and decreased TGF-β1 up-regulated EMT related protein levels (N-cadherin and Snail) in vitro via suppression of JNK and Smad3 activation. Moreover, siSmad3 or siJNK impaired TGF-β1-induced N-cadherin and Snail up-regulation in vitro. Importantly, JNK gene silencing (siERK) also impaired the regulatory effect of TGF-β1 on Smad3 activation. Our present data demonstrate that RACK1 is a concomitant regulator of TGF-β1 induces airway apoptosis and EMT via JNK/Smad/Snail signalling axis. Our findings may provide a new insight into understanding the regulation mechanism of RACK1 in asthma pathogenesis."	"Miltefosine suppression of Pten null T-ALL leukemia via β-catenin degradation through inhibition of pT308-Akt and TGFβ1/Smad3. Pten deletion in the hematopoietic stem cells (HSC) causes a myeloproliferative disorder, which may subsequently develop into a T-cell acute lymphoblastic leukemia (T-ALL). β-catenin expression was dramatically increased in the c-Kit<sup>mid</sup>CD3<sup>+</sup>Lin<sup>-</sup> leukemia stem cells (LSC) and was critical for T-ALL development. Therefore, the inactivation of β-catenin in LSC may have a potential to eliminate the LSC. In this study, we investigated the mechanism of enhancement of the β-catenin expression and subsequently used a drug to inactivate β-catenin expression in T-ALL. Western blot (WB) analysis revealed an increased level of β-catenin in the leukemic cells, but not in the pre-leukemic cells. Furthermore, the WB analysis of the thymic cells from different stages of leukemia development showed that increased expression of β-catenin was not via the pS9-GSK3β signaling, but was dependent on the pT308-Akt activation. Miltefosine (Hexadecylphosphocholine) is the first oral anti-Leishmania drug, which is a phospholipid agent and has been shown to inhibit the PI3K/Akt activity. Treatment of the Pten<sup>Δ/Δ</sup> leukemic mice with Miltefosine for different durations demonstrated that the pT308-Akt and the β-catenin expressions were inhibited in the leukemia blast cells. Miltefosine treatment also suppressed the TGFβ1/Smad3 signaling pathway. Analysis of TGFβ1 in the sorted subpopulations of the blast cells showed that TGFβ1 was secreted by the CD3<sup>+</sup>CD4<sup>-</sup> subpopulation and may exert effects on the subpopulations of both CD3<sup>+</sup>CD4<sup>+</sup> and CD3<sup>+</sup>CD4<sup>-</sup> leukemia blast cells. When a TGFβR1 inhibitor, SB431542 was injected into the Pten<sup>Δ/Δ</sup> leukemic mice, the Smad3 and β-catenin expressions were down-regulated. On the basis of the results, we conclude that Miltefosine can suppress leukemia by degrading β-catenin through repression of the pT308-Akt and TGFβ1/Smad3 signaling pathways. This study demonstrates a possibility to inhibit Pten loss-associated leukemia genesis via targeting Akt and Smad3."	"Low-intensity pulsed ultrasound protects subchondral bone in rabbit temporomandibular joint osteoarthritis by suppressing TGF-β1/Smad3 pathway. Transforming growth factor β1(TGF-β1)/Smad3 pathway promotes the pathological progression of subchondral bone in osteoarthritis. The aim of this study is to determine the effect of low-intensity pulsed ultrasound (LIPUS) on the pathological progression and TGF-β1/Smad3 pathway of subchondral bone in temporomandibular joint osteoarthritis (TMJOA). Rabbit TMJOA model was established by type II collagenase induction. The left joint in this model was continuously stimulated with LIPUS for 3 and 6 weeks (1 MHz; 30 mW/cm<sup>2</sup> ) for 20 min/day. The morphological and histological features of subchondral bone were respectively examined by microcomputed tomography and Safranin-O staining. The number of osteoclasts was quantitatively assessed by tartrate-resistant acid phosphatase staining. Immunohistochemistry and Western blot analysis were conducted to evaluate the protein expression of Cathepsin K and TGF-β1/Smad3 pathway. The results indicated that LIPUS could improve the trabecular microstructure and histological characteristics of subchondral bone in rabbit TMJOA. It also suppressed abnormal subchondral bone resorption and activation of TGF-β1/Smad3 pathway, characterized by the number of osteoclasts, protein expression levels of Cathepsin K, TGF-β1, type II TGFβ receptor, and phosphorylated Smad3 (pSmad3) were decreased. In conclusion, LIPUS promoted the quality of subchondral bone by suppressing osteoclast activity and TGF-β1/Smad3 pathway in rabbit TMJOA."	"A TGF-β- and p63-Responsive Enhancer Regulates IFN-κ Expression in Human Keratinocytes. Type I IFNs have antiviral and immune-modulating activities. IFN-α/-β have very low basal expression levels but are strongly induced upon activation of pattern recognition receptors. In contrast, IFN-κ is constitutively expressed in uninfected keratinocytes and responds only weakly to pattern recognition receptor activation. IFN-κ expression has been implicated in the pathogenesis of inflammatory skin diseases and in limiting human papillomavirus replication in human keratinocytes. We have identified an enhancer ∼5 kb upstream of the IFNK gene driving its expression in keratinocytes. The enhancer consists of binding sites for the transcription factors jun-B, SMAD3/4, AP-2α/γ, and p63, of which the latter two are key regulators of keratinocyte biology. The jun-B and SMAD3/4 elements confer activation by the TGF-β pathway. Furthermore, inhibition of ERK1/2 kinases activates IFN-κ expression. Our study provides a framework for the cell type-specific, constitutive expression of IFN-κ and its modulation by signal transduction pathways in human keratinocytes."	"Dysfunction of Tregs contributes to FGR pathogenesis via regulating Smads signalling pathway. Fetal growth restriction (FGR) is ranked number two of most common complication of abnormal pregnancy worldwide. The pathogenesis of FGR is complicated due to multiple aetiologies and the exact mechanism for FGR development is currently unknown. T regulatory cells (Tregs) are proven to play central roles in the maintenance of normal pregnancy. Peripheral blood samples of 102 pregnant human were collected analysed using flow cytometry to identify Tregs. We found that reduced Tregs and down-regulation of Foxp3 were observed in peripheral blood of FGR patients. In FGR mouse model, we have found that Tregs were not only reduced in spleen but also in placenta. In vitro, Foxp3 and its transcription regulatory signalling molecules, including P-Smad2, P-Smad3 and Smad4, were diminished as well. Inhibition on Foxp3 expression was partially reversed by overexpression of Smad2 and Smad4. In FGR patients, Western blot results revealed that Foxp3, P-Smad2, P-Smad3 and Smad4 expression was inhibited in placenta. Our preliminary result suggests that maternal-foetal immune tolerance mediated by Tregs plays an essential role in the development of FGR. The inhibited expression of Foxp3 and down-regulated Smad2/Smad3/Smad4 signalling pathway were involved in the FGR pathogenesis. Targeting maternal-foetal immune tolerance through Tregs might represent a novel therapeutic option for FGR."	"High-Expression of Neuropilin 1 Correlates to Estrogen-Induced Epithelial-Mesenchymal Transition of Endometrial Cells in Adenomyosis. Epithelial-mesenchymal transition (EMT) induced by estrogen contributes to the development of adenomyosis. However, the exact underlying mechanism remains mostly obscure. We hypothesized that a transmembrane glycoprotein neuropilin 1 (NRP1) was critical in the EMT induced by estrogen, accelerating the development of adenomyosis. We firstly investigated the expression pattern of NRP1 in endometrium samples from women with adenomyosis. We found that NRP1 expression was significantly increased in the endometrium of uterine adenomyosis, especially in the ectopic endometrium. To determine the role of NRP1 in the EMT in endometrial cells, we used an NRP1 overexpression retrovirus to up-regulate the NPR1 expression in human endometrial cells (HEC-1-A). Endometrial cells infected with NRP1 retroviruses showed a high expression of NRP1 and exerted a mesenchymal phenotype, characterized by down-regulation of E-cadherin and Occludin, up-regulation of α-SMA and N-cadherin, and enhanced migration. Then, we found that 17β-estradiol (E2) up-regulated the expression of NRP1 in endometrial cells in a dose-dependent manner, which was eliminated by raloxifene, a selective estrogen receptor inhibitor. Importantly, NRP1 shRNA significantly suppressed the EMT induced by E2 in endometrial cells. And NRP1 shRNA significantly inhibited the phosphorylation of Smad3 and restored the expressions of Slug and Snail1 mRNA. Collectively, these data highlight the possible role of NRP1 in the EMT in the development of adenomyosis and provide a potential therapeutic target for adenomyosis patients."	"Inflammatory breast cancer cells are characterized by abrogated TGFβ1-dependent cell motility and SMAD3 activity. Inflammatory breast cancer (IBC) is an aggressive form of breast cancer with elevated metastatic potential, characterized by tumor emboli in dermal and parenchymal lymph vessels. This study has investigated the hypothesis that TGFβ signaling is implicated in the molecular biology of IBC. TGFβ1-induced cell motility and gene expression patterns were investigated in three IBC and three non-IBC (nIBC) cell lines. Tissue samples from IBC and nIBC patients were investigated for the expression of nuclear SMAD2, SMAD3, and SMAD4. SMAD protein levels were related to gene expression data. TGFβ1-induced cell motility was strongly abrogated in IBC cells (P = 0.003). Genes differentially expressed between IBC and nIBC cells post TGFβ1 exposure revealed attenuated expression of SMAD3 transcriptional regulators, but overexpression of MYC target genes in IBC. IBC patient samples demonstrated a near absence of SMAD3 and -4 expression in the primary tumor compared to nIBC patient samples (P &lt; 0.001) and a further reduction of staining intensity in tumor emboli. Integration of gene and protein expression data revealed that a substantial fraction of the IBC signature genes correlated with SMAD3 and these genes are indicative of attenuated SMAD3 signaling in IBC. We demonstrate attenuated SMAD3 transcriptional activity and SMAD protein expression in IBC, together with obliterated TGFβ1-induced IBC cell motility. The further reduction of nuclear SMAD expression levels in tumor emboli suggests that the activity of these transcription factors is involved in the metastatic dissemination of IBC cells, possibly by enabling collective invasion after partial EMT."	"Smad3 signalling affects high glucose-induced podocyte injury via regulation of the cytoskeletal protein transgelin. The aim of the present study was to characterize the role of Smad3 signalling on high glucose-induced podocyte injury. Synchronized conditionally immortalized mouse podocyte cell line (MPC5) cells were treated with either D-glucose alone or D-glucose plus the Smad3 inhibitor SIS3. The distribution of F-actin and transgelin in a high glucose-induced model of podocyte injury were examined by immunofluorescence. Levels of transgelin and Smad3 signalling proteins in MPC5 cells were determined by Western blot. A disordered distribution of F-actin, as well as co-localization of F-actin and transgelin, was observed in podocytes exposed to high glucose. Increased levels of transgelin were first observed 10 minutes after treatment with glucose, suggesting that this protein is sensitive to hyperglycaemic injury. Levels of phosphorylated Smad3 and cleaved caspase 3 increased significantly with glucose stimulation. Moreover, expression of the downstream protein c-Myc, but not JAK1/STAT3, was induced in conditions of high glucose. The Smad3-specific inhibitor SIS3 prevented the effects of high glucose on Smad3 phosphorylation, expression of transgelin and c-Myc, caspase 3 cleavage and cytoskeletal organization. Expression of the tumour suppressor protein p15<sup>INK4B</sup> increased after podocyte injury but was unaffected by Smad3 inhibition, suggesting that Smad3 regulation of high glucose-induced podocyte injury occurs through a p15<sup>INK4B</sup> -independent mechanism. Smad3 signalling plays a critical role in the modulation of hyperglycaemic injury. Targeted inhibition of the Smad3 pathway may offer a novel route for treatment of podocyte damage, especially in cases of diabetic nephropathy."	"LOC646329 long non-coding RNA sponges miR-29b-1 and regulates TGFβ signaling in colorectal cancer. Non-coding RNAs (ncRNAs) are reported to be regulators of signaling pathways that are involved in colorectal cancer (CRC) progression. Aiming at finding ncRNAs (miRNAs) that are differentially expressed in tumor versus normal colorectal tissue samples, online RNA-seq data were analyzed. Of between 18 candidate miRNAs, hsa-miR-29b-1 (miR-29b-1) represented the highest fold change of expression level. Hsa-miR-29b-1 is encoded from the third intron of LOC646329 long ncRNA gene. Surprisingly, two miR-29b sponging sites were predicted within exons of LOC646329 gene. Then, dual luciferase assay supported the interaction of miR-29b-1 with LOC646329-variant D transcript. Also, a direct indication of miR-29b-1 with 3'UTR sequence of SMAD3 gene was verified through dual luciferase assay and RT-qPCR analysis. Furthermore, a reverse pattern of expression was detected between miR-29b-1 and LOC646329-variant D transcript in about 25 pairs of CRC tumor samples, detected by RTqPCR. Consistently, overexpression of LOC646329-variant D transcript was followed by increased SMAD3 and p21 genes expression level and downregulation of CyclinD1 genes in HCT116 cells, detected by RT-qPCR, and western analysis. Also, overexpression of it was followed by increased G1 cell population of HCT-116 cells. All of these data suggested a tumor suppressor effect for LOC646329-variant D in CRC tumor tissue samples, consistent to its reduced expression level at late stages of CRC progression. Data also indicated that LOC646329-variant D exerts its suppression effect on CRC progression through sponging miR-29b, which in turn regulates Wnt and TGFB signaling pathways. This makes LOC646329-variant D transcript as a novel potential therapy target."	"C/EBPɑ is crucial determinant of epithelial maintenance by preventing epithelial-to-mesenchymal transition. Extracellular signals such as TGF-β can induce epithelial-to-mesenchymal transition (EMT) in cancers of epithelial origin, promoting molecular and phenotypical changes resulting in pro-metastatic characteristics. We identified C/EBPα as one of the most TGF-β-mediated downregulated transcription factors in human mammary epithelial cells. C/EBPα expression prevents TGF-β-driven EMT by inhibiting expression of known EMT factors. Depletion of C/EBPα is sufficient to induce mesenchymal-like morphology and molecular features, while cells that had undergone TGF-β-induced EMT reverted to an epithelial-like state upon C/EBPα re-expression. In vivo, mice injected with C/EBPα-expressing breast tumor organoids display a dramatic reduction of metastatic lesions. Collectively, our results show that C/EBPα is required for maintaining epithelial homeostasis by repressing the expression of key mesenchymal markers, thereby preventing EMT-mediated tumorigenesis. These data suggest that C/EBPα is a master epithelial &quot;gatekeeper&quot; whose expression is required to prevent unwarranted mesenchymal transition, supporting an important role for EMT in mediating breast cancer metastasis."	"Maintenance of the Undifferentiated State in Myogenic Progenitor Cells by TGFβ Signaling is Smad Independent and Requires MEK Activation. Transforming growth factor β (TGFβ) is a pluripotent cytokine and regulates a myriad of biological processes. It has been established that TGFβ potently inhibits skeletal muscle differentiation; however, the molecular mechanism is not clearly defined. Previously, we reported that inhibition of the TGFβ canonical pathway by an inhibitory Smad, Smad7, does not reverse this effect on differentiation, suggesting that activation of receptor Smads (R-Smads) by TGFβ is not responsible for repression of myogenesis. In addition, pharmacological blockade of Smad3 activation by TGFβ did not reverse TGFβ's inhibitory effect on myogenesis. In considering other pathways, we observed that TGFβ potently activates MEK/ERK, and a pharmacological inhibitor of MEK reversed TGFβ's inhibitory effect on myogenesis, as indicated by a myogenin promoter-reporter gene, sarcomeric myosin heavy chain accumulation, and phenotypic myotube formation. Furthermore, we found that c-Jun, a known potent repressor of myogenesis, which is coincidently also a down-stream target of MEK/ERK signaling, was phosphorylated and accumulates in the nucleus in response to TGFβ activation. Taken together, these observations support a model in which TGFβ activates a MEK/ERK/c-Jun pathway to repress skeletal myogenesis, maintaining the pluripotent undifferentiated state in myogenic progenitors."	"3-methyladenine inhibits procollagen-1 and fibronectin expression in dermal fibroblasts independent of autophagy. Autophagy is deeply associated with aging, but little is known about its association with the extracellular matrix (ECM). 3-methyladenine (3-MA) is a commonly used autophagy inhibitor. We used this compound to investigate the role of autophagy in dermal ECM protein synthesis. Normal human dermal fibroblasts (NHDFs) were treated with 3-MA for 24 h, and mRNA encoding several ECM proteins was analyzed in addition to the protein expression of procollagen-1 and fibronectin. Several phosphoinositide 3-kinase (PI3K) inhibitors, an additional autophagy inhibitor, and small interfering RNA (siRNA) targeting autophagy-related genes were additionally used to confirm the role of autophagy in ECM synthesis. Only 3-MA, but not other chemical compounds or autophagy-related gene-targeting siRNA, inhibited the transcription of procollagen-1- and fibronectin-encoding genes. Further, 3-MA did not affect the activation of regulatory Smads, but inhibited the interaction between Smad3 with p300. Moreover, 3-MA treatment increased the phosphorylation of cAMP response element-binding protein (CREB); however, CREB knock-down did not recover 3-MA-induced procollagen-1 and fibronectin downregulation. We revealed that 3-MA might inhibit procollagen-1 and fibronectin synthesis in an autophagy-independent manner by interfering with the binding between Smad3 and p300. Therefore, 3-MA could be a candidate for the treatment of diseases associated with the accumulation of ECM proteins."	"MYOCD and SMAD3/SMAD4 form a positive feedback loop and drive TGF-β-induced epithelial-mesenchymal transition in non-small cell lung cancer. Myocardin (MYOCD) promotes Smad3-mediated transforming growth factor-β (TGF-β) signaling in mouse fibroblast cells. Our previous studies show that TGF-β/SMADs signaling activation enhances epithelial-mesenchymal transition (EMT) in human non-small cell lung cancer (NSCLC) cells. However, whether and how MYOCD contributes to TGF-β-induced EMT of NSCLC cells are poorly elucidated. Here, we found that TGF-β-induced EMT was accompanied by increased MYOCD expression. Interestingly, MYOCD overexpression augmented EMT and invasion of NSCLC cells induced by TGF-β, whereas knockdown of MYOCD expression attenuated these effects. Overexpression and knockdown of MYOCD resulted in the upregulation and downregulation of TGF-β-induced Snail mRNA, respectively. Moreover, MYOCD overexpression promoted TGF-β-stimulated NSCLC cell metastasis in vivo. MYOCD was highly expressed and positively correlated with Snail in metastatic NSCLC tissues. Mechanistically, MYOCD directly interacted with SMAD3 and sustained the formation of TGF-β-induced nuclear SMAD3/SMAD4 complex, facilitating TGF-β/SMAD3-induced transactivation of Snail. Importantly, MYOCD was transcriptionally activated by TGF-β-induced SMAD3/SMAD4 complex and CRISPR/Cas9-mediated silencing of SMAD3/SMAD4 led to a reduction in MYOCD mRNA expression. Taken together, our findings indicate that MYOCD promotes TGF-β-induced EMT and metastasis of NSCLC and identify a positive feedback loop between MYOCD and SMAD3/SMAD4 driving TGF-β-induced EMT."	"TGF-Beta-Activated Cancer-Associated Fibroblasts Limit Cetuximab Efficacy in Preclinical Models of Head and Neck Cancer. Most head and neck cancer (HNC) patients are resistant to cetuximab, an antibody against the epidermal growth factor receptor. Such therapy resistance is known to be mediated, in part, by stromal cells surrounding the tumor cells; however, the mechanisms underlying such a resistance phenotype remain unclear. To identify the mechanisms of cetuximab resistance in an unbiased manner, RNA-sequencing (RNA-seq) of HNC patient-derived xenografts (PDXs) was performed. Comparing the gene expression of HNC-PDXs before and after treatment with cetuximab indicated that the transforming growth factor-beta (TGF-beta) signaling pathway was upregulated in the stromal cells of PDXs that progressed on cetuximab treatment (Cetuximab<sup>Prog</sup>-PDX). However, in PDXs that were extremely sensitive to cetuximab (Cetuximab<sup>Sen</sup>-PDX), the TGF-beta pathway was downregulated in the stromal compartment. Histopathological analysis of PDXs showed that TGF-beta-activation was detected in cancer-associated fibroblasts (CAFs) of Cetuximab<sup>Prog</sup>-PDX. These TGF-beta-activated CAFs were sufficient to limit cetuximab efficacy in vitro and in vivo. Moreover, blocking the TGF-beta pathway using the SMAD3 inhibitor, SIS3, enhanced cetuximab efficacy and prevented the progression of Cetuximab<sup>Prog</sup>-PDX. Altogether, our findings indicate that TGF-beta-activated CAFs play a role in limiting cetuximab efficacy in HNC."	"Protective effects and mechanisms of Rehmannia glutinosa leaves total glycoside on early kidney injury in db/db mice. The spontaneous db/db mice were used to elucidate the biological effects and mechanisms of Rehmannia glutinosa leaves total glycoside (DHY) on kidney injury through biochemical indicators, kidney pathological section analysis, metabolic profiling, intestinal flora analysis and in vitro Human renal tubular epithelial (HK-2) cell model induced by high glucose. It was found that DHY can decrease the blood sugar level (insulin, INS; fasting blood glucose, FBG), blood lipid level (Total Cholesterol, T-CHO; Triglyceride, TG) significantly and improve kidney injury level (blood urea nitrogen, BUN; urine microalbumin, mALB; serum creatinine, Scr). It can also alleviate kidney tubular epithelial cell oedema and reduce interstitial connective tissue hyperplasia of the injury kidney induced by high glucose. 13 endogenous metabolites were identified in serum, which involved of ether lipid metabolism, sphingolipid metabolism, glyoxylic acid and dicarboxylic acid metabolism and arachidonic acid metabolism. High glucose can also lead to the disorder of intestinal flora, especially Firmicutes and Bacteroides. Meanwhile, DHY also inhibited the expression of α-SMA, TGF- β1, Smad3 and Smad4 in the kidney tissues of db/db mice and HK-2 cells. To sum up, DHY may restore the dysfunctional intestinal flora to normal and regulate glycolipid level of db/db mice as well as TGF-β/Smad signalling pathway regulation to improve early kidney damage caused by diabetes."	"Remote Ischemic Preconditioning Ameliorates Renal Fibrosis After Ischemia-Reperfusion Injury via Transforming Growth Factor beta1 (TGF-β1) Signalling Pathway in Rats. BACKGROUND The present study was conducted to explore the influence of remote ischemic preconditioning (RIPC) on the adjustment of renal fibrosis after ischemia-reperfusion injury (IRI). MATERIAL AND METHODS Male Sprague-Dawley rats were randomly assigned to 3 groups following right-side nephrectomy: the Sham group (without renal artery clamping), the IRI group (45 min left renal artery clamping), and the RIPC group (rats were treated daily with 3 cycles of 5 min of limb ischemia and 5 min of reperfusion on 3 consecutive days before left renal artery occlusion). After 3 months of reperfusion, the renal function and the extent of tubular injury and renal fibrosis were assessed. The expressions of transforming growth factor beta1 (TGF-ß1), p-Smad2, Smad2, p-Smad3, and Smad3 were also evaluated. RESULTS There was no significant difference in renal function and tubular damage among the 3 groups after 45 min of kidney ischemia followed by 3 months of reperfusion. However, an obvious increase of extracellular matrix components and alpha-SMA could be observed in the kidney tissues of the IRI group, and the changes were significantly ameliorated in rats treated with enhanced RIPC. Compared with the IRI group, the expression of TGF-ß1 and the level of p-Smad2 and p-Smad3 were decreased after the intervention of enhanced RIPC. CONCLUSIONS Enhanced RIPC ameliorated renal fibrosis after IRI in rats, which appears to be associated with inhibition of the TGF-ß1/p-Smad2/3 signalling pathway."	"Novel SMAD3 p.Arg386Thr genetic variant co-segregating with thoracic aortic aneurysm and dissection. Pathogenic variants in the SMAD3 gene affecting the TGF-β/SMAD3 signaling pathway with aortic vessel involvement cause Loeys-Dietz syndrome 3, also known as aneurysms-osteoarthritis syndrome. Description of clinical history of a family in Sweden using clinical data, DNA sequencing, bioinformatics, and pedigree analysis. We report a novel SMAD3 variant, initially classified as a genetic variant of uncertain clinical significance (VUS), and later found to be co-segregating with aortic dissection in the family. The index patient presented with a dissecting aneurysm of the aorta including the ascending, descending, and abdominal parts. Genotype analysis revealed a heterozygous missense SMAD3 variant: NM_005902.3(SMAD3): c.11576G &gt; C (p.Arg386Thr). The same variant was also identified in a 30 years old formalin-fixed paraffin-embedded block of tissue from a second cousin, who died at 26 years of age from a dissecting aneurysm of the aorta. A &quot;variant of uncertain significance&quot; according to the ACMG guidelines has always a scope for reappraisal. Genetic counselling to relatives, and the offering of surveillance service is important to families with aortic aneurysm disease. The report also highlight the potential use of FFPE analysis from deceased relatives to help in the interpretation of variants."	"circRIP2 accelerates bladder cancer progression via miR-1305/Tgf-β2/smad3 pathway. Increasing evidences indicate that circular RNAs exert critical function in regulating bladder cancer progression. However, the expressive patterns and roles of circular RNAs in bladder cancer remain less investigated. circRIP2 was identified and evaluated by RNA-sequencing and qPCR; in vitro effects of circRIP2 were determined by CCK8, clone forming, wound healing and trans-well assays; while mice subcutaneous tumor model was designed for in vivo analysis. Western blot, RNA pulldown assay, miRNA capture and dual luciferase assessment were applied for mechanistic studies. circRIP2 was identified as a conserved and dramatically repressed circular RNA in bladder cancer. Patients that displayed higher circRIP2 expression negatively associate with the grade, stage, metastasis as well as outcome of bladder cancer. In vitro and in vivo studies suggest that circRIP2 enables to promote bladder cancer progression via inducing EMT. Regarding the mechanism, we performed RNA-sequencing analysis, RNA pulldown with biotin-labeled circRIP2-specific probe, dual luciferase reporter assay. It was found that circRIP2 enables to sponge miR-1305 to elevate Tgf-β2 in bladder cancer, and inducing EMT via Tgf-β2/smad3 pathway. Blocking Tgf-β2 in bladder cancer deprives circRIP2 induced cancer progression and EMT. Taken together, our study provides the first evidence that circRIP2 expresses differentially in bladder cancer and negatively along with the cancer progression; effective circRIP2 activity accelerates bladder cancer progression via inducing EMT by activating miR-1305/Tgf-β2/smad3 pathway. The research implies that circRIP2 might be a potential biomarker and therapeutic target for bladder cancer patients."	"Inhibition of HDAC6 by tubastatin A disrupts mouse oocyte meiosis via regulating histone modifications and mRNA expression. Histone deacetylase 6 (HDAC6) participates in mouse oocyte maturation by deacetylating α-tubulin. However, how HDAC6 expression is regulated in oocytes remains unknown. In the present study, we discovered that mouse oocytes had a high level of HDAC6 expression and a low level of DNA methylation status in their promoter region. Then, a selective HDAC6 inhibitor, tubastatin A (Tub-A) was chosen to investigate the role of HDAC6 in oocyte maturation. Our results revealed that inhibition of HDAC6 caused meiotic progression arrest, disturbed spindle/chromosome organization, and kinetochore-microtubule attachments without impairing spindle assembly checkpoint function. Moreover, inhibition of HDAC6 not only increased the acetylation of α-tubulin but also elevated the acetylation status of H4K16 and decreased the phosphorylation level of H3T3 and H3S10. Conversely, depressed H3T3 phosphorylation by its kinase inhibitor increased the acetylation level of H4K16. Finally, single cell RNA-seq analysis revealed that the cell cycle-related genes CCNB1, CDK2, SMAD3, YWHAZ and the methylation-related genes DNMT1 and DNMT3B were strongly repressed in Tub-A treated oocytes. Taken together, our results indicate that HDAC6 plays important roles in chromosome condensation and kinetochore function via regulating several key histone modifications and messenger RNA transcription during oocyte meiosis."	"The anti-fibrotic and anti-inflammatory effects of 2,4-diamino-5-(1-hydroxynaphthalen-2-yl)-5H-chromeno[2,3-b] pyriine-3-carbonitrile in corneal fibroblasts. Although several studies had addressed the anti-inflammatory effects of derivatives of 4H-chromene and chromeno[2,3-b]pyridine in the different types of cells, whether these derivatives would exert beneficial anti-fibrotic effects during corneal fibrotic scar formation was unclear. We examined the cyclooxygenase-2 (COX-2) expression of 2,4-diamino-5-(1-hydroxynaphthalen-2-yl)-5H-chromeno[2,3-b]pyridine-3-carbonitrile (N1) in the human corneal fibroblasts (HCFs) under the treatment TGF-β1. Signaling pathways underlying the mechanism of the N1 effect on the HCFs were determined. Application of N1 significantly decreased COX-2 expression after 2 h and 4 h in the HCFs stimulated with TGF-β1. Notably, reduced production of extracellular matrix proteins under N1 treatment was found, including fibronectin, collagen I, and matrix metallopeptidase 9. Immunoblot analysis showed that treatment with N1 significantly attenuated phosphorylation of both STAT3 and Smad 2 in the TGF-β1-stimulated HCFs. Upregulated mRNA of Smad2 and downregulated mRNA of Smad3 were observed using the quantitative real-time polymerase chain reaction. In addition, N1 induced significant increases in HO-1 and Nrf2 expression, but inhibited phosphorylation of NF-κB in the HCFs treated with TGF-β1. Our findings show for the first time that N1 exerts anti-fibrotic and anti-inflammatory effects through suppression of COX-2, Smad2, STAT3, iNOS and NF-κB expressions as well as upregulation of Nrf2 and HO-1 expressions, which suggests they are potential therapeutic targets in the treatment of corneal fibrosis."	"Impact of fecal microbiota transplantation on TGF-β1/Smads/ERK signaling pathway of endotoxic acute lung injury in rats. Acute lung injury (ALI) is a common clinical disease with high morbidity in both humans and animals. Studies have shown that intestinal microbiota affect the pathology and immune function of respiratory diseases through the &quot;gut-lung axis&quot;. The authors investigated the therapeutic effect of fecal microbiota transplantation (FMT) in rats with ALI induced by lipopolysaccharide (LPS). Rats were treated with FMT, and then measured lung wet/dry ratio, PaO2 in artery, proinflammatory marker, and TGF-β1, Smad3, Smad7, and phosphorylated ERK (p-ERK) protein levels, as well as a histopathologic analysis and high-throughput sequencing of intestinal microbiota. FMT significantly reduced lung wet/dry ratio and TNF-α, IL-1β, and IL-6 levels, but increased the levels of PaO2 in artery. In addition, FMT significantly decreased the expression of TGF-β1, Smad3, and p-ERK, while increased the levels of Smad7. Lung histopathological analyses showed that FMT reduced the inflammatory cell infiltration and interstitial lung exudates. High-throughput sequencing of intestinal microbiota analyses showed that FMT reconstructed the structure of intestinal microbiota, and increased the gene abundance of the bacterial community. Therefore, FMT may act on the TGF-β1/Smads/ERK pathway by regulating intestinal microbiota, inhibiting immune inflammation, reducing the production of inflammatory markers in the body and release, and reducing alveolar epithelial damage and repair, thereby improving the endotoxic ALI in rats induced by LPS."	"Effect of Chronic Vitamin D Deficiency on the Development and Severity of DSS-Induced Colon Cancer in Smad3<sup>-/-</sup> Mice. Both human epidemiologic data and animal studies suggest that low serum vitamin D increases the risk of inflammatory bowel disease (IBD) and consequently IBD-associated colorectal cancer. We tested the hypothesis that vitamin D deficiency increases the risk for colitis-associated colon cancer (CAC) by using an established CAC mouse model, 129-Smad3<sup>tm1Par</sup>/J (Smad3<sup>-/-</sup>) mice, which have defective transforming growth factor β-signaling and develop colitis and CAC after the administration of dextran sodium sulfate (DSS). After determining a dietary regimen that induced chronic vitamin D deficiency in Smad3<sup>-/-</sup> mice, we assessed the effects of vitamin D deficiency on CAC. Decreasing dietary vitamin D from 1 IU/g diet (control diet) to 0.2 IU /g diet did not decrease serum 25-hydroxyvitamin D (25(OH)D) levels in Smad3<sup>-/-</sup> mice. A diet devoid of vitamin D (&lt; 0.02 IU/g diet [no added vitamin D]; vitamin D-null) significantly decreased serum 25(OH)D levels in mice after 2 wk (null compared with control diet: 8.4 mg/mL compared with 12.2 ng/mL) and further decreased serum levels to below the detection limit after 9 wk but did not affect weight gain, serum calcium levels, bone histology, or bone mineral density. In light of these results, Smad3<sup>-/-</sup> mice were fed a vitamin D-null diet and given DSS to induce colitis. Unexpectedly, DSS-treated Smad3<sup>-/-</sup> mice fed a vitamin D-null diet had improved survival, decreased colon tumor incidence (8% compared with 36%), and reduced the incidence and severity of colonic dysplasia compared with mice fed the control diet. These effects correlated with increased epithelial cell proliferation and repair early in the disease, perhaps reducing the likelihood of developing chronic colitis and progression to cancer. Our results indicate that vitamin D deficiency is beneficial in some cases of CAC, possibly by promoting intestinal healing."	"Osteopontin contributes to late-onset asthma phenotypes in adult asthma patients. Patients with late-onset asthma (LOA) have poor clinical outcomes. Osteopontin (OPN) is associated with airway inflammation and remodeling. To investigate the role of OPN in LOA compared to early-onset asthma (EOA), serum OPN levels were compared between 131 adult asthma patients (48 LOA and 83 EOA patients) and 226 healthy controls (HCs). BALB/c mice were sensitized with ovalbumin with/without polyinosinic-polycytidylic acid (poly(I:C)) from week 6 (A6 mice) or week 12 (A12 mice) after birth. Airway hyperresponsiveness (AHR), bronchoalveolar lavage fluid (BALF), cell counts, histology, and Spp1 expression were assessed. The levels of OPN, transforming growth factor β1 (TGF-β1), chitinase 3-like 1 (CH3L1), and interleukin (IL) 5 were measured by ELISA. The expression of Smad3 phosphorylation and tissue transglutaminase 2 (TGM2) was evaluated by Western blot. The serum OPN levels were significantly higher in asthma patients than in HCs and in LOA patients than in those with EOA (P &lt; 0.05) and were positively correlated with serum TGF-β1 and CH3L1 (r = 0.174, r = 0.264; P &lt; 0.05). A12 mice showed elevated AHR with increased levels of OPN/TGF-β1/IL-5 in BALF and Spp1 compared to A6 mice. Poly(I:C) induced remarkable TGF-β1, CH3L1, Th2 cytokine, and OPN levels in BALF and the expression of phosphorylated Smad3, TGM2, and Spp1 in the lungs. OPN triggered TGF-β1/Smad3 signaling in the lungs, which was suppressed by dexamethasone and anti-IL5 antibody. In conclusion, aging and exposure to viral infections may induce OPN release and consequently modulate inflammation and TGF-β1/Smad3-related remodeling, contributing to the development of LOA."	"Cooperative Regulation of the Mucosal Mast Cell-Specific Protease Genes Mcpt1 and Mcpt2 by GATA and Smad Transcription Factors. Mouse mast cell proteases (mMCP)-1 and -2 are specifically expressed in mucosal mast cells (MCs). However, the transcriptional regulation mechanism of the Mcpt1 and Mcpt2 genes induced in mucosal MCs is largely unknown. In the current study, we found that TGF-β stimulation drastically induced upregulation of Mcpt1 and Mcpt2 mRNA in mouse bone marrow-derived MCs (BMMCs). TGF-β-induced expression of Mcpt1 and Mcpt2 was markedly suppressed by transfection with small interfering RNA targeting Smad2 or Smad4 and moderately reduced by Smad3 small interfering RNA. We next examined the roles of the hematopoietic cell-specific transcription factors GATA1 and GATA2 in the expression of Mcpt1 and Mcpt2 and demonstrated that knockdown of GATA1 and GATA2 reduced the mRNA levels of Mcpt1 and Mcpt2 in BMMCs. The recruitment of GATA2 and acetylation of histone H4 of the highly conserved GATA-Smad motifs, which were localized in the distal regions of the Mcpt1 and Mcpt2 genes, were markedly increased by TGF-β stimulation, whereas the level of GATA2 binding to the proximal GATA motif was not affected by TGF-β. A reporter assay showed that TGF-β stimulation upregulated GATA2-mediated transactivation activity in a GATA-Smad motif-dependent manner. We also observed that GATA2 and Smad4 interacted in TGF-β-stimulated BMMCs via immunoprecipitation and Western blotting analysis. Taken together, these results demonstrate that TGF-β induced mMCP-1 and -2 expression by accelerating the recruitment of GATA2 to the proximal regions of the Mcpt1 and Mcpt2 genes in mucosal MCs."	"3,3-Dimethyl-1-butanol attenuates cardiac remodeling in pressure-overload-induced heart failure mice. Trimethylamine N-oxide (TMAO) is closely related to cardiovascular diseases, particularly heart failure (HF). Recent studies shows that 3,3-dimethyl-1-butanol (DMB) can reduce plasma TMAO levels. However, the role of DMB in overload-induced HF is not well understood. In this research study, we explored the effects and the underlying mechanisms of DMB in overload-induced HF. Aortic banding (AB) surgery was performed in C57BL6/J mice to induce HF, and a subset group of mice underwent a sham operation. After surgery, the mice were fed with a normal diet and given water supplemented with or without 1% DMB for 6 weeks. Cardiac function, plasma TMAO level, cardiac hypertrophy and fibrosis, expression of inflammatory, electrophysiological studies and signaling pathway were analyzed at the sixth week after AB surgery. DMB reduced TMAO levels in overload-induced HF mice. Adverse cardiac structural remodeling, such as cardiac hypertrophy, fibrosis and inflammation, was elevated in overload-induced HF mice. Susceptibility to ventricular arrhythmia also significantly increased in overload-induced HF mice. However, these changes were prevented by DMB treatment. DMB attenuated all of these changes by reducing plasma TMAO levels, hence negatively inhibiting the p65 NF-κB signaling pathway and TGF-β1/Smad3 signaling pathway. DMB plays an important role in attenuating the development of cardiac structural remodeling and electrical remodeling in overload-induced HF mice. This may be attributed to the p65 NF-κB signaling pathway and TGF-β1/Smad3 signaling pathway inhibition."	"Bta-miR-149-5p inhibits proliferation and differentiation of bovine adipocytes through targeting CRTCs at both transcriptional and posttranscriptional levels. MicroRNAs are small, single stranded, and noncoding RNAs that have been proven to be potent regulators of adipogenesis. However, the role of bta-miR-149-5p in regulating bovine adipogenesis is still unclear. Expression profiling in different stages of adipogenesis revealed that bta-miR-149-5p was enriched in the proliferation stage, and also on Day 9 of differentiation in bovine adipocytes. Our gain of function study showed that bta-miR-149-5p can negatively regulate both bovine adipocyte proliferation and differentiation. Overexpression of bta-miR-149-5p suppressed the expression of proliferation marker genes at both the messenger RNA (mRNA) and protein levels, markedly decreased the percentage of S-phase cells, decreased the number of EdU-stained cells, and substantially reduced adipocyte proliferation vitality in the cell count assay. Collectively, these findings elucidated that bta-miR-149-5p inhibits adipocyte proliferation. Furthermore, overexpression of bta-miR-149-5p also suppressed the expression of adipogenic genes at both the mRNA and protein levels, inhibited lipid accumulation, and reduced the secretion of adiponectin in bovine adipocytes. Furthermore, a luciferase activity assay explored how bta-miR-149-5p targeted CRTCs (CRTC1 and CRTC2) directly. This targeting was further validated by the mRNA and protein level expression of CRTC1 and CRTC2, which were down regulated by bta-miR-149-5p overexpression. Moreover, bta-miR-149-5p indirectly targeted CRTC1 and CRTC2 through regulating their key transcription factors. Overexpression of bta-miR-149-5p suppressed the expression of SMAD3, while enriched the expression of NRF1, which are the key transcription factors and proven regulators of CRTC1. Overexpression of bta-miR-149-5p also repressed the expression of C/EBPγ, XBP1, INSM1, and ZNF263, which are the key regulators of CRTCs, at both the mRNA and protein levels. These findings suggest that bta-miR-149-5p is a negative regulator of CRTC1 and CRTC2 both at transcriptional and posttranscriptional level. Taken together, these findings suggest that bta-miR-149-5p can regulate adipogenesis, which implies that bta-miR-149-5p could be a target for increasing intramuscular fat in beef cattle."	"p130Cas induces bone invasion by oral squamous cell carcinoma by regulating tumor epithelial-mesenchymal transition and cell proliferation. Bone invasion is a critical factor in determining the prognosis of oral squamous cell carcinoma (OSCC) patients. Transforming growth factor β (TGF-β) is abundantly expressed in the bone matrix and is involved in the acquisition of aggressiveness by tumors. TGF-β) is also important to cytoskeletal changes during tumor progression. In this study, we examined the relationship between TGF-β signaling and cytoskeletal changes during bone invasion by OSCC. Immunohistochemical staining of OSCC samples from 5 patients showed the expression of p130Cas (Crk-associated substrate) in the cytoplasm and phosphorylated Smad3 expression in the nucleus in OSCC cells. TGF-β1 induced the phosphorylation of Smad3 and p130Cas as well as epithelial-mesenchymal transition (EMT) accompanied by the downregulation of the expression of E-cadherin, a marker of epithelial cells, and the upregulation of the expression of N-cadherin, or Snail, a marker of mesenchymal cells, in human HSC-2 cells and mouse SCCVII cells. SB431542, a specific inhibitor of Smad2/3 signaling, abrogated the TGF-β1-induced phosphorylation of p130Cas and morphological changes. Silencing p130Cas using an shRNA or siRNA in SCCVII cells suppressed TGF-β1-induced cell migration, invasion, EMT, and matrix metalloproteinase-9 (MMP-9) production. Compared with control SCCVII cells, SCCVII cells with silenced p130Cas strongly suppressed zygomatic and mandibular destruction in vivo by reducing the number of osteoclasts, cell proliferation and MMP-9 production. Taken together, these results showed the expression of TGF-β/p130Cas might be a new target for the treatment of OSCC bone invasion (233 words)."	"The long-noncoding RNA MALAT1 regulates TGF-β/Smad signaling through formation of a lncRNA-protein complex with Smads, SETD2 and PPM1A in hepatic cells. Recent studies have demonstrated the implication of long noncoding RNAs (lncRNAs) in a variety of physiological and pathological processes. However, the majority of lncRNAs are functionally unknown. The current study describes that the lncRNA MALAT1 regulates TGF-β/Smad signaling pathway through formation of a lncRNA-protein complex containing Smads, SETD2 and PPM1A. Our data show that this lncRNA-proteins complex facilitates the dephosphorylation of pSmad2/3 by providing the interaction niche for pSmad2/3 and their specific phosphatase PPM1A, thus terminating TGF-β/Smad signaling in hepatic cells. Based on these mechanistic studies, we performed further experiments to determine whether depletion of MALAT1 would augment cellular TGF-β/Smad signaling. We observed that MALAT1 depletion enhanced TGF-β/Smad signaling response, as reflect by amplification of Smad-mediated differentiation of induced pluripotent stem (iPS) cells to hepatocytes. Our experimental results demonstrate an important role of MALAT1 for regulation of TGF-β/Smad signaling in hepatic cells. Given the diverse functions of TGF-β/Smad pathway in various physiological and pathogenic processes, our results described in the current study will have broad implications for further understanding the role of MALAT1 in TGF-β/Smad pathway in human biology and disease."	"Smad Phospho-Isoforms for Hepatocellular Carcinoma Risk Assessment in Patients with Nonalcoholic Steatohepatitis. Nonalcoholic steatohepatitis (NASH)-related hepatocellular carcinoma (HCC) sometimes occurs in mildly fibrotic livers, while HCC incidence in NASH-related cirrhosis is lower than and less predictable than in hepatitis C virus (HCV)-related cirrhosis. Transforming growth factor (TGF)-β signaling in hepatocytic nuclei is implicated in fibrosis and carcinogenesis. TGF-βtype I receptor (TβRI) and c-Jun N-terminal kinase (JNK) differentially phosphorylate the mediator Smad3, resulting in 2 distinct phospho-isoforms: C-terminally phosphorylated Smad3 (pSmad3C) and linker-phosphorylated Smad3 (pSmad3L). In mature hepatocytes, oncogenic signaling via the JNK/pSmad3L pathway antagonizes signaling via the tumor-suppressive TβRI/pSmad3C pathway. We immunohistochemically examined domain-specific Smad3 phosphorylation in liver biopsy specimens from 30 NASH patients representing different fibrotic stages and 20 chronically infected hepatitis C patients as controls, correlating Smad3 phosphorylation with clinical course. HCC occurred during follow-up in 11 of 12 NASH patients with abundant pSmad3L and limited pSmad3C but in only 2 of 18 with limited pSmad3L. In contrast, HCC developed in 12 of 15 NASH patients with limited pSmad3C but only 1 of 15 with abundant pSmad3C. Two of fourteen NASH patients with mild fibrosis developed HCC, their hepatocytic nuclei showed abundant pSmad3L and limited pSmad3C. Five of sixteen patients with severe fibrosis did not develop HCC, their hepatocytic nuclei showed limited pSmad3L and abundant pSmad3C. Smad phospho-isoforms may represent important biomarkers predicting HCC in NASH and potential therapeutic targets for preventing NASH-related HCC."	"Alterations in activin A-myostatin-follistatin system associate with disease activity in inflammatory myopathies. The aim of this study was to investigate the systemic and skeletal muscle levels of atrophy-associated myokines in patients with idiopathic inflammatory myopathies (IIM) and their association with clinical characteristics of myositis. A total of 94 IIM patients and 162 healthy controls were recruited. Of those, 20 IIM patients and 28 healthy controls underwent a muscle biopsy. Circulating concentrations of myostatin, follistatin, activin A and TGF-β1 were assessed by ELISA. The expression of myokines and associated genes involved in the myostatin signalling pathway in muscle tissue was determined by real-time PCR. We report decreased levels of circulating myostatin (median 1817 vs 2659 pg/ml; P = 0.003) and increased follistatin (1319 vs 1055 pg/ml; P = 0.028) in IIM compared with healthy controls. Activin A levels were also higher in IIM (414 vs 309 pg/ml; P = 0.0005) compared with controls. Myostatin was negatively correlated to muscle disease activity assessed by physician on visual analogue scale (MDA) (r = -0.289, P = 0.015) and positively to manual muscle testing of eight muscles (r = 0.366, P = 0.002). On the other hand, follistatin correlated positively with MDA (r = 0.235, P = 0.047). Gene expression analysis showed higher follistatin (P = 0.003) and myostatin inhibitor follistatin-like 3 protein (FSTL3) (P = 0.008) and lower expression of activin receptor type 1B (ALK4) (P = 0.034), signal transducer SMAD3 (P = 0.023) and atrophy marker atrogin-1 (P = 0.0009) in IIM muscle tissue compared with controls. This study shows lower myostatin and higher follistatin levels in circulation and attenuated expression of myostatin pathway signalling components in skeletal muscle of patients with myositis, a newly emerging pattern of the activin A-myostatin-follistatin system in muscle wasting diseases."	"Can the AGE/RAGE/ERK signalling pathway and the epithelial-to-mesenchymal transition interact in the pathogenesis of chronic rhinosinusitis with nasal polyps? Chronic rhinosinusitis with nasal polyps (CRSwNP) is a persistent sinonasal mucosa inflammatory disease with still unclear pathophysiologic mechanisms that imply events of tissue repair and structural remodelling. Several cascades seem to have a considerable role in the onset and progression of mucosa hyperproliferation in nasal polyps including transforming growth factor β/Small mother against decapentaplegic (TGFβ/Smads), mitogenactivated protein kinases (MAPKs), advanced glycosylation end-products (AGEs) together with epithelial-tomesenchymal transition (EMT). Since many inflammatory mediators are reported to play important roles in the development of nasal polyps (NP) disease, this study aimed to analyse the correlation between the AGEs/receptor of advanced glycosylation end-products (RAGE)/extracellular signal-regulated kinase (ERK) signalling pathway and the main markers of EMT to better understand the influence that they exert on the remodelling of nasal mucous membranes in patients affected by CRSwNP vs normal controls. A total of 30 patients were enrolled in this study. Immunohistochemical analysis, using AGE, RAGE, p-ERK, MMP-3, TGF-β1, Smad2/3, Collagen I-III, α-SMA, E-cadherin, IL-6 and Vimentin antibodies, was performed. AGE, RAGE, ERK, p-ERK and MMP3 were also evaluated using western blot analysis. We observed an overexpression of the AGE/RAGE/p-ERK and the main mesenchymal markers of EMT (Vimentin and IL-6) in CRSwNP vs controls whereas the TGF-β/Smad3 pathway did not show any significant differences between the two groups of patients. These observations suggest a complex network of processes in the pathogenesis of NP, and the AGE/RAGE/ERK pathway and EMT might work together in promoting tissue remodelling in the formation of CRSwNP."	"ALK4-SMAD3/4 mediates the effects of activin A on the upregulation of PAI-1 in human granulosa lutein cells. In the mammalian ovary, the proteolysis of the extracellular matrix is dynamically regulated by plasminogen activator and plasminogen activator inhibitor (PAI), and it is a critical event that influences various physiological and pathological processes. Activin A is a member of the transforming growth factor-β superfamily and is expressed at a high level in human luteal cells that play an essential role in the regulation of the luteal function. At present, it is not known whether activin A can regulate the expression and production of PAI in human granulosa lutein (hGL) cells. The present study aimed to examine the effects of activin A on the expression and production of intraovarian PAI-1 and the underlying molecular mechanisms. Using primary and immortalized hGL cells as the cell model, we demonstrated that activin A upregulated the expression of PAI-1 and increased the production of PAI-1 in an autocrine/paracrine manner. Additionally, using a dual inhibition approach (molecular inhibitors and siRNA-mediated knockdown), we showed that this biological function is mediated by the ALK4-mediated SMAD3-SMAD4-dependent signaling pathway. Our findings suggest that activin A may be involved in the regulation of luteal function via the induction of PAI-1 expression and an increase in PAI-1 production."	"Fendrr involves in the pathogenesis of cardiac fibrosis via regulating miR-106b/SMAD3 axis. Cardiovascular diseases (CVDs) is the first cause of death worldwide, generally exhibiting a high morbidity, high disability rate and high mortality especially in the elderly persons (&gt;50 years old). Previously, extensive studies have demonstrated that cardiac fibrosis plays cardinal roles in the pathogenesis of CVDs. However, due to the unclear underlying mechanisms of cardiac fibrosis, its clinical intervention remains very lacking. Long non-coding RNAs (lncRNAs), a class of non-coding RNA but differing from microRNAs, are generally considered as transcripts with a length ranging 200 to 100 nucleotides. Recently, accumulating evidence showed that lncRNAs involve in the pathogenesis of cardiac fibrosis. Fendrr (FOXF1 adjacent non-coding developmental regulatory RNA), is a spliced long non-coding RNA transcribed bi-directionally with FOXF1 on the opposite strand. Fendrr has been demonstrated to be essential for normal development of the heart and body wall in mouse, and shows a good anti-fibrotic activity in pulmonary fibrosis. In this study, we aimed to explore the effects of Fendrr on cardiac fibrosis. Intriguingly, we first observed that lncRNA Fendrr was up-regulated in the heart tissues of transverse aortic constriction (TAC) induced cardiac fibrosis mouse models, determined by RT-QPCR. Loss-function of Fendrr significantly alleviated the cardiac fibrosis phenotypes induced by TAC, indicating that Fendrr is required for the pathogenesis of cardiac fibrosis. In mechanism, we demonstrated experimentally that Fendrr directly targeting miR-106b, by which the lncRNA promotes cardiac fibrosis (indicated by the elevation of Col1a1, Col3a1, CTGF and ACTA2 expression) in a miR-106b mediated manner. Collectively, our findings highlight the axis of Fendrr/miR-106b/Samd3 in the pathogenesis of cardiac fibrosis, which may be a promising target for clinical intervention target of cardiac fibrosis."	"Function and characterization of the promoter region of perilipin 1 (PLIN1): Roles of E2F1, PLAG1, C/EBPβ, and SMAD3 in bovine adipocytes. Perilipin 1 (PLIN1) protein, also known as lipid droplet-associated protein, is encoded by the PLIN1 gene and is able to anchor itself to the membranes of lipid droplets. The phosphorylation of PLIN1 is critical for the mobilization of fat in adipose tissue and plays an important role in regulating lipolysis and lipid storage in adipocytes. However, research on the synthesis and lipid metabolism of lipid droplets by PLIN1 in bovine adipocytes is limited. In the present study, we found that bovine PLIN1 was highly expressed in subcutaneous adipose tissue. The highest level of PLIN1 mRNA expression in bovine adipocytes was observed on day 6 of differentiation. Moreover, the cytoplasmic subcellular localization of PLIN1 was observed in bovine preadipocytes. To elucidate the molecular mechanism of bovine PLIN1 transcriptional regulation, we cloned eight fragments containing the 5' regulatory region of the PLIN1 gene. The results showed that the -209/-17 bp region of the bovine PLIN1 gene was the core promoter region. Based on the transcriptional activities of the promoter vector fragments, the luciferase activity of the mutated fragment, the siRNA interference, and the results of the electrophoretic mobility shift assay (EMSA), we identified the binding sites of E2F transcription factor 1 (E2F1), pleiomorphic adenoma gene 1 (PLAG1), CCAAT enhancer binding protein beta (C/EBPβ), and SMAD family member 3 (SMAD3) as the transcriptional activators or repressors of the core promoter region. Further experiments confirmed that the knockdown of the PLIN1 gene affected the ability of these transcription factors to regulate the lipid metabolism in bovine adipocytes. In conclusion, our results reveal a potential mechanism for the transcriptional regulation of PLIN1 in bovine adipocytes."	"Class C1 decoy oligodeoxynucleotide inhibits profibrotic genes expression in rat hepatic stellate cells. The aim of the present study was to investigate whether class C1 decoy oligodeoxynucleotides (ODNs) can inhibit the expression of pro‑fibrotic genes associated with rat hepatic stellate cell (HSC) activation and hepatic fibrosis. Luciferase reporter assays were performed to test the promoter activities of transforming growth factor (TGF)‑β and its downstream target genes following transfection of decoy ODNs and plasmids into HSC‑T6 cells, and western blot assays were performed to measure the protein expression of those genes following decoy ODN transfection. Class C1 decoy ODNs were confirmed to inhibit the promoter activity of TGF‑β and its downstream target genes, such as type 1 collagen (COLI)α1, tissue inhibitor of metalloproteinases (TIMP)1 and α‑smooth muscle actin by Gaussia luciferase reporter assay, and to further downregulate the expression of TGF‑β, SMAD3, COLIα1 and TIMP1 by western blotting in activated HSC‑T6 cells. In conclusion, class C1 decoy ODNs inhibited pro‑fibrotic gene expression in rat HSCS by downregulating TGF‑β signaling."	"Potential effect of non-thermal plasma for the inhibition of scar formation: a preliminary report. Non-thermal plasma (NTP) is a promising biomedical tool for application to wound healing. However, there is limited scientific evidence that confirms its efficacy to inhibit scar formation. This study aims to investigate the role of non-thermal plasma in scar formation. Two full-thickness dorsal cutaneous wounds of rats were treated with either a non-thermal helium plasma jet or helium. It was determined that the non-thermal plasma jet accelerated the wound healing process from 5 days after surgery (day 5: 41.27% ± 2.351 vs 54.7% ± 5.314, p &lt; 0.05; day 7: 56.05% ± 1.881 vs 75.28% ± 3.914, p &lt; 0.01; day 14: 89.85% ± 2.991 vs 98.07% ± 0.839, p &lt; 0.05). The width of the scars for the NTP group was narrower than those of control group (4.607 ± 0.416 mm vs 3.260 ± 0.333 mm, p &lt; 0.05). In addition, a lower level of TGF-β1, p-Smad2 and p-Smad3 were detected in the NTP treated wounds (p &lt; 0.05, p &lt; 0.01 and p &lt; 0.01). As expected, α-SMA was also significantly decreased in the NTP treatment group (p &lt; 0.01). Moreover, the expression of type I collagen and the proportion of type I to III collagen were lower in the NTP group (p &lt; 0.05). The results of the study suggest that NTP may play a potential role in scar formation by inhibiting the TGF β1 signal pathway and reducing the levels of α-SMA and type I collagen, and may have clinical utility in the future."	"HDAC8 cooperates with SMAD3/4 complex to suppress SIRT7 and promote cell survival and migration. NAD+-dependent SIRT7 deacylase plays essential roles in ribosome biogenesis, stress response, genome integrity, metabolism and aging, while how it is transcriptionally regulated is still largely unclear. TGF-β signaling is highly conserved in multicellular organisms, regulating cell growth, cancer stemness, migration and invasion. Here, we demonstrate that histone deacetylase HDAC8 forms complex with SMAD3/4 heterotrimer and occupies SIRT7 promoter, wherein it deacetylates H4 and thus suppresses SIRT7 transcription. Treatment with HDAC8 inhibitor compromises TGF-β signaling via SIRT7-SMAD4 axis and consequently, inhibits lung metastasis and improves chemotherapy efficacy in breast cancer. Our data establish a regulatory feedback loop of TGF-β signaling, wherein HDAC8 as a novel cofactor of SMAD3/4 complex, transcriptionally suppresses SIRT7 via local chromatin remodeling and thus further activates TGF-β signaling. Targeting HDAC8 exhibits therapeutic potential for TGF-β signaling related diseases."	"Human Skin Keratinocytes on Sustained TGF-β Stimulation Reveal Partial EMT Features and Weaken Growth Arrest Responses. Defects in wound closure can be related to the failure of keratinocytes to re-epithelize. Potential mechanisms driving this impairment comprise unbalanced cytokine signaling, including Transforming Growth Factor-β (TFG-β). Although the etiologies of chronic wound development are known, the relevant molecular events are poorly understood. This lack of insight is a consequence of ethical issues, which limit the available evidence to humans. In this work, we have used an in vitro model validated for the study of epidermal physiology and function, the HaCaT cells to provide a description of the impact of sustained exposure to TGF-β. Long term TGF-β1 treatment led to evident changes, HaCaT cells became spindle-shaped and increased in size. This phenotype change involved conformational re-arrangements for actin filaments and E-Cadherin cell-adhesion structures. Surprisingly, the signs of consolidated epithelial-to-mesenchymal transition were absent. At the molecular level, modified gene expression and altered protein contents were found. Non-canonical TGF-β pathway elements did not show relevant changes. However, R-Smads experienced alterations best characterized by decreased Smad3 levels. Functionally, HaCaT cells exposed to TGF-β1 for long periods showed cell-cycle arrest. Yet, the strength of this restraint weakens the longer the treatment, as revealed when challenged by pro-mitogenic factors. The proposed setting might offer a useful framework for future research on the mechanisms driving wound chronification."	"Differential Expression of SMAD Genes and S1PR1 on Circulating CD4+ T Cells in Multiple Sclerosis and Crohn's Disease. The Th17 immune response plays a key role in autoimmune diseases such as multiple sclerosis (MS) and inflammatory bowel disease (IBD). Expression of Th17-related genes in inflamed tissues has been reported in autoimmune diseases. However, values are frequently obtained using invasive methods. We aimed to identify biomarkers of MS in an accessible sample, such as blood, by quantifying the relative expression of 91 Th17-related genes in CD4+ T lymphocytes from patients with MS during a relapse or during a remitting phase. We also compared our findings with those of healthy controls. After confirmation in a validation cohort, expression of SMAD7 and S1PR1 mRNAs was decreased in remitting disease (-2.3-fold and -1.3-fold, respectively) and relapsing disease (-2.2-fold and -1.3-fold, respectively). No differential expression was observed for other SMAD7-related genes, namely, SMAD2, SMAD3, and SMAD4. Under-regulation of SMAD7 and S1PR1 was also observed in another autoimmune disease, Crohn's disease (CD) (-4.6-fold, -1.6-fold, respectively), suggesting the presence of common markers for autoimmune diseases. In addition, expression of TNF, SMAD2, SMAD3, and SMAD4 were also decreased in CD (-2.2-fold, -1.4-fold, -1.6-fold, and -1.6-fold, respectively). Our study suggests that expression of SMAD7 and S1PR1 mRNA in blood samples are markers for MS and CD, and TNF, SMAD2, SMAD3, and SMAD4 for CD. These genes could prove useful as markers of autoimmune diseases, thus obviating the need for invasive methods."	"Inhibition mechanism of lung cancer cell metastasis through targeted regulation of Smad3 by miR-15a. Effect of targeted regulation of mothers against decapentaplegic homolog 3 (Smad3) by microRNA-15a (miR-15a) on the proliferation, invasion and metastasis of non-small cell lung cancer (NSCLC) cells and its related mechanisms were investigated. Fifty pairs of NSCLC and para-cancerous tissues were collected to identify the expression level of miR-15a in NSCLC, para-cancerous tissue, and cell lines A549, H1299, H1975 and BEAS-2B by real-time fluorescence quantitative PCR (RT-PCR); A549 cells were transfected with miR-15a mimic; the MTT assay was performed to detect the role of miR-15a transfection in proliferation of A549 cells, the wound healing assay was carried out to identify the role of miR-15a in migration of A549 cells; Transwell invasion assay was conducted to analyze the role of miR-15a in invasion of A549 cells; western blotting was carried out to find the effect of miR-15a on Smad3 expression, and Spearman's rank correlation was used to analyze the correlation between miR-15a and Smad3 expression. NSCLC tissues and cells showed significantly lower miR-15a expression, compared with para-cancerous tissues and normal cell lines (P=0.023). miR-15a was significantly more expressed in A549 cells transfected with miR-15a mimic (P=0.043). Overexpression of miR-15a can significantly inhibit A549 cell proliferation (P=0.038), migration (P=0.033) and invasion (P=0.025), and significantly reduced the expression level of Smad3 (P=0.031) in A549 cells. Spearman's rank correlation showed negative correlation of miR-15a expression with Smad3, which may indicate negative regulation (r=-0.34, P&lt;0.0001). Inhibition of proliferation, migration and invasion of NSCLC cells can be achieved with targeted regulation of Smad3 by miR-15a."	"Effects of miR-129-3p on biological functions of prostate cancer cells through targeted regulation of Smad3. Effects of miR-129-3p on the biological functions of prostate cancer cells through the targeted regulation of Smad3 were investigated. RT-PCR was used to detect the expression levels of miR-129-3p in prostate cancer tissues and cells and its target gene Smad3 mRNA determined by bioinformatics prediction. Correlation between miR-129-3p and Smad3 was analyzed. MTT assay, cell invasion detection, and apoptosis detection were conducted to detect the effects of miR-129-3p and Smad3 on the proliferation, invasion, and apoptosis of prostate cancer cells. The results of RT-qPCR showed that the expression level of miR-129-3p decreased but that of Smad3 increased in the prostate cancer tissue, and the expression levels of the two were significantly and negatively correlated. Additionally, the expression levels were closely related to the degree of tumor differentiation, TNM staging, and lymph node metastasis (P&lt;0.05). Bioinformatics prediction and subsequent experiments proved that Smad3 was the direct target gene of miR-129-3p. Cell detection confirmed that the overexpression of miR-129-3p or the inhibition of Smad3 expression inhibited the proliferation and invasion of prostate cancer cells, promoting apoptosis, and increased the expression level of pro-apoptotic protein Bax, as well as decreased the expression level of anti-apoptotic protein Bcl-2. Inhibition of miR-129-3p expression had the opposite effect to overexpression. miR-129-3p, which may be a new and potential target for the treatment of prostate cancer, can inhibit the proliferation and invasion of prostate cancer cells and promote their apoptosis by directly targeting Smad3."	"Endothelial autophagy deficiency induces IL6 - dependent endothelial mesenchymal transition and organ fibrosis. Macroautophagy/autophagy plays a vital role in the homeostasis of diverse cell types. Vascular endothelial cells contribute to vascular health and play a unique role in vascular biology. Here, we demonstrated that autophagy defects in endothelial cells induced IL6 (interleukin 6)-dependent endothelial-to-mesenchymal transition (EndMT) and organ fibrosis with metabolic defects in mice. Inhibition of autophagy, either by a specific inhibitor or small interfering RNA (siRNA) for ATG5 (autophagy related 5), in human microvascular endothelial cells (HMVECs) induced EndMT. The IL6 level was significantly higher in ATG5 siRNA-transfected HMVECs culture medium compared with the control HMVECs culture medium, and neutralization of IL6 by a specific antibody completely inhibited EndMT in ATG5 siRNA-transfected HMVECs. Similar to the in vitro data, endothelial-specific atg5 knockout mice (Atg5 Endo; Cdh5-Cre Atg5 flox/flox mice) displayed both EndMT-associated kidney and heart fibrosis when compared to littermate controls. The plasma level of IL6 was higher in Atg5 Endo compared to that of control mice, and fibrosis was accelerated in Atg5 Endo treated with a HFD; neutralization of IL6 by a specific antibody inhibited EndMT and fibrosis in HFD-fed Atg5 Endo associated with the amelioration of metabolic defects. These results revealed the essential role of autophagy in endothelial cell integrity and revealed that the disruption of endothelial autophagy could lead to significant pathological IL6-dependent EndMT and organ fibrosis.Abbreviations: 3-MA: 3-methyladenine; ATG5: autophagy related 5; EndMT: endothelial-to-mesenchymal transition; HES: hematoxylin and eosin stain; HFD: high-fat diet; HMVECs: human microvascular endothelial cells; IFNG: interferon gamma; IL6: interleukin 6; MTS: Masson's trichrome staining; NFD: normal-fat diet; siRNA: small interfering RNA; SMAD3: SMAD family member 3; TGFB: transforming growth factor β; TNF: tumor necrosis factor; VEGFA: vascular endothelial growth factor A."	"TGF-β/Smad3 Signalling Modulates GABA Neurotransmission: Implications in Parkinson's Disease. γ-Aminobutiryc acid (GABA) is found extensively in different brain nuclei, including parts involved in Parkinson's disease (PD), such as the basal ganglia and hippocampus. In PD and in different models of the disorder, an increase in GABA neurotransmission is observed and may promote bradykinesia or L-Dopa-induced side-effects. In addition, proteins involved in GABAA receptor (GABAAR) trafficking, such as GABARAP, Trak1 or PAELR, may participate in the aetiology of the disease. TGF-β/Smad3 signalling has been associated with several pathological features of PD, such as dopaminergic neurodegeneration; reduction of dopaminergic axons and dendrites; and α-synuclein aggregation. Moreover, TGF-β/Smad3 intracellular signalling was recently shown to modulate GABA neurotransmission in the context of parkinsonism and cognitive alterations. This review provides a summary of GABA neurotransmission and TGF-β signalling; their implications in PD; and the regulation of GABA neurotransmission by TGF-β/Smad3. There appear to be new possibilities to develop therapeutic approaches for the treatment of PD using GABA modulators."	"TGF-β1 promotes vitamin D-induced prostaglandin E2 synthesis by upregulating vitamin D receptor expression in human granulosa-lutein cells. There is increasing evidence showing the importance of vitamin D (Vit D) and its nuclear receptor, the Vit D receptor (VDR), in female reproductive health. Transforming growth factor-β1 (TGF-β1) and its functional receptors are expressed in human oocytes and granulosa cells that participate in follicular development and ovulation. Recently, Sma- and Mad-related protein 3 (SMAD3; a downstream effector of TGF-β1) has been proposed to mediate crosstalk between the Vit D and TGF-β1 signaling pathways, but this relationship has not been fully explored and has yet to be tested in human granulosa-lutein (hGL) cells. In this study, we showed that TGF-β1 significantly promoted the expression of VDR, and this stimulatory effect occurred through the activin receptor-like kinase 5 type I receptor-mediated SMAD3 and ERK1/2 signaling pathways in hGL cells. Additionally, we showed that Vit D increased the expression of cyclooxygenase 2 (COX-2) and the synthesis of prostaglandin E2 (PGE2) in a time- and dose-dependent manner. Furthermore, we demonstrated a synergistic effect of TGF-β1 and Vit D on the expression of COX-2 and synthesis of PGE2, and this effect could be attenuated by silencing the expression of VDR. Our findings indicate that TGF-β1 upregulates the expression of VDR, which promotes Vit D-induced COX-2 expression and subsequent PGE2 production by activating the SMAD3 and ERK1/2 signaling pathways in hGL cells."	"Resistance training-induced muscle hypertrophy is mediated by TGF-β1-Smad signaling pathway in male Wistar rats. The TGF-β1-Smad pathway is a well-known negative regulator of muscle growth; however, its potential role in resistance training-induced muscle hypertrophy is not clear. The present study proposed to determine whether and how this pathway may be involved in resistance training-induced muscle hypertrophy. Skeletal muscle samples were collected from the control, trained (RT), control + SB431542 (CITGF ), and trained + SB431542 (RTITGF ) animals following 3, 5, and 8 weeks of resistance training. Inhibition of the TGF-β1-Smad pathway by SB431542 augmented muscle satellite cells activation, upregulated Akt/mTOR/S6K1 pathway, and attenuated FOXO1 and FOXO3a expression in the CITGF group (all p &lt; .01), thereby causing significant muscle hypertrophy in animals from the CITGF . Resistance training significantly decreased muscle TGF-β1 expression and Smad3 (P-Smad3<sup>S423/425</sup> ) phosphorylation at COOH-terminal residues, augmented Smad2 (P-Smad2-L<sup>S245/250/255</sup> ) and Smad3 (P-Smad3-L<sup>Ser208</sup> ) phosphorylation levels at linker sites (all p &lt; .01), and led to a muscle hypertrophy which was unaffected by SB431542, suggesting that the TGF-β1-Smad signaling pathway is involved in resistance training-induced muscle hypertrophy. The effects of inhibiting the TGF-β1-Smad signaling pathway were not additive to the resistance training effects on FOXO1 and FOXO3a expression, muscle satellite cells activation, and the Akt/mTOR/S6K1 pathway. Resistance training effect of satellite cell differentiation was independent of the TGF-β1-Smad signaling pathway. These results suggested that the effect of the TGF-β1-Smad signaling pathway on resistance training-induced muscle hypertrophy can be attributed mainly to its diminished inhibitory effects on satellite cell activation and protein synthesis. Suppressed P-Smad3<sup>S423/425</sup> and enhanced P-Smad2-L<sup>S245/250/255</sup> and P-Smad3-L<sup>Ser208</sup> are the molecular mechanisms that link the TGF-β1-Smad signaling pathway to resistance training-induced muscle hypertrophy."	"Eighty-eight variants highlight the role of T cell regulation and airway remodeling in asthma pathogenesis. Asthma is one of the most common chronic diseases affecting both children and adults. We report a genome-wide association meta-analysis of 69,189 cases and 702,199 controls from Iceland and UK biobank. We find 88 asthma risk variants at 56 loci, 19 previously unreported, and evaluate their effect on other asthma and allergic phenotypes. Of special interest are two low frequency variants associated with protection against asthma; a missense variant in TNFRSF8 and 3' UTR variant in TGFBR1. Functional studies show that the TNFRSF8 variant reduces TNFRSF8 expression both on cell surface and in soluble form, acting as loss of function. eQTL analysis suggests that the TGFBR1 variant acts through gain of function and together with an intronic variant in a downstream gene, SMAD3, points to defective TGFβR1 signaling as one of the biological perturbations increasing asthma risk. Our results increase the number of asthma variants and implicate genes with known role in T cell regulation, inflammation and airway remodeling in asthma pathogenesis."	"Prevention and possible mechanism of a purified Laminaria japonica polysaccharide on adriamycin-induced acute kidney injury in mice. The present work aims to investigate the effects and underlying mechanism of a homogeneous Laminaria japonica polysaccharide (LJP61A) on acute kidney injury (AKI) in mice. According to the results of biochemical and pathological analysis, we concluded that LJP61A could protect kidney from the damage of adriamycin in AKI mice. Compared to the model group, the mRNA level of cytokines (TNF-α, IL-1β and MCP-1) and protein level of mesenchymal markers demsin were decrease by the treatment of LJP61A while the protein levels of podocyte structure markers (Nephrin and WT-1) were increased. Moreover, the adriamycin-induced enhancement of phosphor-p65, phosphor-p38, phosphor-ERK1/2 and phosphor-JNK in the kidney of AKI mice were significantly suppressed by LJP61A. Similar variation was observed in the mRNA and protein levels of TGF-β1 and Smad3. These results suggested that LJP61A prevented acute kidney injury possibly via regulating TGF-β1-mediated Smad3, MAPKs and NF-κB signaling pathways."	"CircRNA 010567 improves myocardial infarction rats through inhibiting TGF-β1. To observe the intervention effect of circular ribonucleic acid (circRNA) 010567 on myocardial infarction (MI)-induced myocardial fibrosis (MF) in rats, and to explore whether its mechanism of action is related to the regulation on the transforming growth factor-β1 (TGF-β1) signaling pathway. The rat model of acute MI was established using ligation of the left anterior descending coronary artery. Model rats were randomly divided into circRNA 010567 siRNA group and Model group, with sham operation group as Control group. The effects of circRNA 010567 on the cardiac function, MF, myocardial apoptosis, mRNA, and protein expression levels of TGF-β1 and Smad3 in heart tissues of MI rats were detected using the small animal ultrasound system, Masson staining, terminal deoxynucleotidyl transferase-mediated dUTP nick end labeling (TUNEL) staining, reverse transcription-polymerase chain reaction (RT-PCR), and Western blotting, respectively. Compared with Control group, Model group had significantly decreased cardiac function, significantly lower left ventricular ejection fraction (LVEF), and left ventricular fractional shortening (LVFS), markedly increased left ventricular end-diastolic diameter (LVDd), and left ventricular end-systolic diameter (LVDs), severe MF, as well as a significantly higher apoptosis rate of myocardial cells, and evidently increased mRNA and protein levels of TGF-β1 and Smad3 in heart tissues. Compared with Model group, circRNA 010567 siRNA group had evidently improved cardiac function, significantly higher LVEF and LVFS, markedly decreased LVDd and LVDs, alleviated MF, a significantly lower apoptosis rate of myocardial cells, and evidently decreased mRNA and protein levels of TGF-β1 and Smad3 in heart tissues. CircRNA 010567 siRNA can improve the cardiac function, alleviate the MF, and inhibit the myocardial apoptosis, thereby further suppressing MI-induced MF, whose mechanism may be related to the inhibition on the TGF-β1 signaling pathway."	"Differential expression of BMP/SMAD signaling and ovarian-associated genes in the granulosa cells of FecB introgressed GMM sheep. The present study was conducted to analyze the mRNA expression of the BMP/SMAD signaling and steroidogenesis associated genes in the granulosa cells (GCs) of newly developed Booroola homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ) ewes through qRT-PCR. Results showed that the expression of BMP2 (P &lt; 0.05) and BMP6 (P &lt; 0.01) was significantly higher in the GCs of the homozygous carrier GMM (FecB<sup>BB</sup> ) than the non-carrier GMM (FecB<sup>++</sup> ) ewes, while the expression of BMP4 was significantly higher (P &lt; 0.001) in the GCs of non-carrier GMM (FecB<sup>++</sup> ) than the homozygous carrier GMM (FecB<sup>BB</sup> ). In comparison, the expression of TGFβR1, BMPR1A, BMPR1B, and BMPRII was not significantly different between GCs of the homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ) ewes. Similarly, the expression of SMAD1, SMAD2, SMAD3, SMAD4, and SMAD5 was not significantly different between GCs of homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ). Further, expression of the INHIBIN, P4R, CYP11A1, and 3βHSD1 genes were not significantly different among the GCs of homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ), while the expression of StAR was significantly higher (P &lt; 0.01) in the GCs of homozygous carrier GMM (FecB<sup>BB</sup> ) than that of GCs of non-carrier GMM (FecB<sup>++</sup> ) ewes. It is concluded that the FecB mutation significantly up-regulates the expression of BMP2, BMP6, and StAR genes and down-regulate the expression of BMP2 in granulosa cells of newly developed GMM ewes. BMP: Bone morphogenetic protein; TGFβ: Transforming growth factor-beta; SMAD: Fusion of Caenorhabditis elegans Sma genes and the Drosophila Mad, Mothers against decapentaplegic; GCs: Granulosa cells; GMM: Garole x Malpura x Malpura; FecB: Booroola fecundity; BMPR: Bone morphogenetic protein receptor; CYP11A1: Cytochrome P450 family 11 subfamily A member 1; StAR (Steroidogenic acute regulatory protein); 3βHSD1: 3 Beta-hydroxysteroid dehydrogenase; IGF: Insulin-like growth factor; ActR2: Activin receptor 2; ACVR1: Activin A receptor, type I; ACVR2: Activin A receptor, type II; ACVRL1: Activin A receptor like type 1; ACVR1B: Activin A receptor type 1B; ACVR1C: Activin A receptor type 1C; RFLP-PCR: Restriction fragment length polymorphism-polymerase chain reaction; qRT-PCR: Quantitative real-time PCR; ANOVA: Analysis of variance; P4R: Progesterone receptor: AMH: Anti mullerian hormone; RT-PCR: Reverse transcriptase-polymerase chain reaction; ER: Estrogen receptor; FSHR: Follicle stimulating hormone receptor."	"LMP1 Up-regulates Calreticulin to Induce Epithelial-mesenchymal Transition via TGF-β/Smad3/NRP1 Pathway in Nasopharyngeal Carcinoma Cells. Background: Latent membrane protein 1 (LMP1) is known as an oncogenic protein encoded by the EBV genome. The purpose of this study was to investigate the mechanism of LMP1-induced cell epithelial-mesenchymal transition (EMT). Methods: The NP69 cell line of nasopharyngeal epithelial cells with high expression of LMP1 was established to observe the effect of high expression of LMP1 on cell growth, proliferation, cycle, apoptosis, migration and invasion. We used proteomics to screen and identify differentially expressed proteins related to LMP1-mediated epithelial cell transformation. Then, we analyzed the expression and significance of differentially expressed calreticulin (CRT) in nasopharyngeal carcinoma (NPC), and observed the effect of CRT expression on EMT in CNE2 cells of NPC. Finally, the expression of neuropilin-1 (NRP1), which is a protein downstream of the EMT-related signaling pathway TGF-β (transforming growth factor β), was detected. Results: LMP1 promoted NP69 cells proliferation, inhibited apoptosis and induced EMT. We identified 22 differentially expressed proteins associated with LMP1-induced EMT. Among them, CRT expression level was significantly increased in NPC compared with adjacent tissues, and was interrelated with TNM staging and lymph node metastasis of NPC. After knockdown of CRT expression, the phenomenon of cell EMT was reduced and the ability of cell migration and invasion was weakened. CRT regulated NRP1 expression by affecting SMAD3 phosphorylation. Conclusion: LMP1 induced cell EMT via TGF-β/Smad3/NRP1 pathway, which promoted migration and invasion of NPC cells."	"Silibinin enhances anti-renal fibrosis effect of MK-521 via downregulation of TGF-β signaling pathway. Renal fibrosis is a common characteristic of chronic kidney disease (CKD), and it can lead to end-stage renal disease. It has been reported that silibinin or lisinopril (MK-521) can inhibit the progression of renal fibrosis. However, the effect of combination of silibinin with MK-521 on renal fibrosis remains unclear. Therefore, this study aimed to explore the combination of silibinin with MK-521 on renal fibrosis in vitro and in vivo. The cell viability of HK-2 was detected by CCK-8. The gene and protein expression in HK-2 cells were detected by qRT-PCR and Western blot, respectively. Moreover, HFD-induced renal fibrosis mouse model was established to investigate the effect of silibinin in combination with MK-521 on renal fibrosis in vivo. The expressions of collagen I, α-SMA, Smad2 and Smad3 in TGF-β-treated HK-2 cells were notably decreased by MK-521, which was further inhibited in the presence of silibinin. In addition, we found that silibinin significantly enhanced anti-fibrotic effect of MK-521 on HFD-induced renal fibrosis mice. These findings demonstrated that silibinin could significantly increase anti-fibrotic effect of MK-521 in vitro and in vivo. Therefore, the combination of silibinin with MK-521 may serve as a potential strategy for the treatment of renal fibrosis."	"AT-MSCs Antifibrotic Activity is Improved by Eugenol through Modulation of TGF-β/Smad Signaling Pathway in Rats. For hepatic failure, stem cell transplantation has been chosen as an alternative therapy, especially for mesenchymal stem cells (MSCs). The aim of this study was to investigate the effect of eugenol (EUG) on the in vivo antifibrotic activity of adipose tissue-derived MSCs (AT-MSCs) and the underlying mechanism. After characterization of MSCs, rats were divided into five groups, Group 1 (normal control), Group 2 (CCl4), Group 3 (CCl4 + AT-MSCs), Group 4 (CCl4 + EUG) and Group 5 (CCl4 + AT-MSCs + EUG). Biochemical and histopathological investigations were performed. Furthermore, expression of type 1 collagen, α-SMA, TGF-β1, Smad3 and P-Smad3 was estimated. Compared to the single treatment with AT-MSCs, the combination treatment of the fibrotic rats with AT-MSCs and EUG significantly improved the plasma fibrinogen concentration, IL-10 level and proliferating cell nuclear antigen expression, and also significantly decreased the serum levels of liver enzymes, IL-6, IL-1β, TNF-α, type III collagen, hyaluronic acid, hydroxyproline and the TGF-β growth factor. Furthermore, the combination treatment significantly decreased the hepatic expression of fibrotic markers genes (Type 1 collagen and α-SMA) and proteins (α-SMA, TGF-β1 and phospho-Smad3) more than the treatment with AT-MSCs alone. We demonstrated that the combination treatment with EUG and AT-MSCs strongly inhibited the advancement of CCl4-induced hepatic fibrosis, compared with AT-MSCs alone, through TGF-β/Smad pathway inhibition. This approach is completely novel, so more investigations are necessary to improve our perception of the underlying molecular mechanisms accountable for the effects of EUG on the antifibrotic potential of AT-MSCs."	"Human Cytomegalovirus Latency and Myelosuppression: A microRNA-Dependent Yin and Yang Regulatory Loop. In this issue of Cell Host &amp; Microbe, Hancock et al., 2020 show that latent HCMV infection, and specifically miR-US5-2, induces TGF-β secretion, which inhibits myelopoiesis in uninfected HPCs. They also show that HCMV-infected cells become resistant to TGF-β signaling through targeting of SMAD3 by miR-UL22-A-3p and -5p."	"TGF-β1/Smad3 signaling promotes collagen synthesis in pulmonary artery smooth muscle by down-regulating miR-29b. Deposition of fibronectin and collagen in the extracellular matrix (ECM) and the proliferation, migration, and hypertrophy of vascular smooth muscle cells (VSMCs) result in pulmonary arterial (PA) hypertrophy and muscularization, leading to increased pulmonary vascular resistance in pulmonary arterial hypertension (PAH). MicroRNA29 (miR-29) is reported to be associated with diseases such as liver fibrosis, renal fibrosis, pulmonary fibrosis, and cardiac fibrosis in which collagen synthesis plays an important role. Due to the possible link between PAH and collagen, in this study, we examined the role and therapeutic potential of miR-29b in vitro and in a rat model of pulmonary hypertension induced by monocrotaline (MCT). Results revealed that miR-29b treatment PAH rats showed a lower level of collagen synthesis. Furthermore, in pulmonary arterial smooth muscle cells (PASMCs), TGFβ1/Smad3 signaling negatively regulated the expression of miR-29b, and miR-29b suppressed collagen synthesis by directly targeting collagen I and blocking PI3K/AKT signaling. In addition, TGF-β1/Smad3 signaling promoted collagen synthesis in PASMCs by down-regulating miR-29b. Interestingly, Smad3 decreased the expression of miR-29b by interacting with its promotor. In conclusion, our results revealed that miR-29b plays an important role in collagen synthesis and may be a therapeutic target for PAH when regulated by the TGF-β1/Smad3 pathway."	"GDF3 Protects Mice against Sepsis-Induced Cardiac Dysfunction and Mortality by Suppression of Macrophage Pro-Inflammatory Phenotype. Macrophages are critical for regulation of inflammatory response during endotoxemia and septic shock. However, the mediators underlying their regulatory function remain obscure. Growth differentiation factor 3 (GDF3), a member of transforming growth factor beta (TGF-β) superfamily, has been implicated in inflammatory response. Nonetheless, the role of GDF3 in macrophage-regulated endotoxemia/sepsis is unknown. Here, we show that serum GDF3 levels in septic patients are elevated and strongly correlate with severity of sepsis and 28-day mortality. Interestingly, macrophages treated with recombinant GDF3 protein (rGDF3) exhibit greatly reduced production of pro-inflammatory cytokines, comparing to controls upon endotoxin challenge. Moreover, acute administration of rGDF3 to endotoxin-treated mice suppresses macrophage infiltration to the heart, attenuates systemic and cardiac inflammation with less pro-inflammatory macrophages (M1) and more anti-inflammatory macrophages (M2), as well as prolongs mouse survival. Mechanistically, GDF3 is able to activate Smad2/Smad3 phosphorylation, and consequently inhibits the expression of nod-like receptor protein-3 (NLRP3) in macrophages. Accordingly, blockade of Smad2/Smad3 phosphorylation with SB431542 significantly offsets rGDF3-mediated anti-inflammatory effects. Taken together, this study uncovers that GDF3, as a novel sepsis-associated factor, may have a dual role in the pathophysiology of sepsis. Acute administration of rGDF3 into endotoxic shock mice could increase survival outcome and improve cardiac function through anti-inflammatory response by suppression of M1 macrophage phenotype. However, constitutive high levels of GDF3 in human sepsis patients are associated with lethality, suggesting that GDF3 may promote macrophage polarization toward M2 phenotype which could lead to immunosuppression."	"Ganoderic Acid A Inhibits Bleomycin-Induced Lung Fibrosis in Mice. To study the protective effects of ganoderic acid A (GAA) on bleomycin (BLM)-induced pulmonary fibrosis. ICR mice were intratracheally instilled with BLM to induce pulmonary fibrosis on day 0. Then the mice were orally given GAA (25, 50 mg/kg) or dexamethasone (2 mg/kg). After treatment for 21 days, the mice were sacrificed. Wet dry weight (W/D) ratio of lung was used to detect pulmonary edema. Myeloperoxidase (MPO), interleukin-1β (IL-1β), IL-6, tumor necrosis factor-α (TNF-α), malondialdehyde (MDA), and superoxide dismutase (SOD) were detected by enzyme-linked immunosorbent assay. Hematoxylin and eosin staining was used to evaluate the pathological changes. The levels of transforming growth factor β (TGF-β), phosphorylated-smad3 (p-smad3), p-IκB, and p-nuclear factor-kappa B (NF-κB) in lung tissue were detected by western blot. GAA treatment significantly improved MPO activity, W/D ratio, and lung histopathology. The protective effect of GAA may be related to downregulation of TNF-α, IL-1β, IL-6, MDA and upregulation of SOD. In addition, GAA significantly decreased the levels of TGF-β, p-smad3, p-IκB, and p-NF-κB, compared with those in BLM group. GAA has protective effect on BLM-induced lung injury, and TGF-β/Smad-3/NF-κB signaling pathway may play an important role in the pathogenesis of BLM-induced lung injury."	"The ancient Chinese formula Longdan Xiegan Tang improves antipsychotic-induced hyperprolactinemia by repairing the hypothalamic and pituitary TGF-β1 signaling in rats. Antipsychotics often induce hyperprolactinemia. The transforming growth factor (TGF)-beta1 signaling in the pituitary and hypothalamus inhibits prolactin synthesis and secretion, and its impairment is implicated in neuropsychiatric disorders. Longdan Xiegan Tang (LXT) alone or together with antipsychotics have been used to treat various neuropsychiatric diseases and hyperprolactinemia-associated disorders. To investigate the effect of LXT on hyperprolactinemia and involvement of the TGF-beta1 signaling. Male rats were co-administered with olanzapine (5 mg/kg) and LXT extract (50 and 500 mg/kg) (p.o., × 8 weeks). Plasma concentrations of prolactin and TGF-beta1 were determined by ELISA. Protein expression was analyzed by Western blot. Treatment of rats with LXT extract suppressed olanzapine-induced increase in plasma prolactin concentration and overexpression of pituitary and hypothalamic prolactin protein. Importantly, LXT restored olanzapine-induced decrease in protein expression of the key components of the TGF-beta1 signaling, TGF-beta1, type II TGF-beta receptor, type I TGF-beta receptor and phosphorylated SMAD3 in the pituitary and hypothalamus. Further, it antagonized downregulation of pituitary and hypothalamic dopamine D2 receptor (D2R) protein level, and inhibited pituitary estrogen receptor (ER) alpha and ERbeta protein expression. The present results suggest that LXT ameliorates antipsychotic-induced hyperprolactinemia in rats by repairing the pituitary and hypothalamic TGF-beta1 signaling possibly via D2R, ERs or/and other pathways. Our findings may also provide scientific elucidation for use of the ancient Chinese formula to treat the impaired TGF-beta1 signaling-associated neuropsychiatric disorders."	"Hematoporphyrin monomethyl ether-mediated photodynamic therapy inhibits the growth of keloid graft by promoting fibroblast apoptosis and reducing vessel formation. Photodynamic therapy (PDT) has been shown to significantly inhibit fibroblast activity. However, the effect of PDT mediated by the photosensitizer hematoporphyrin monomethyl ether (HMME) on keloids is not known well. The aim of our study was to examine the efficacy of HMME-PDT in cellular and animal models of keloids. Keloid fibroblasts (KFbs) were isolated from human keloid specimens and the proliferation, invasion, and migration of KFbs after HMME-PDT treatment was examined in vitro. Apoptosis in cells was measured by flow cytometry. Cysteinyl aspartate specific proteinase 3 (Caspase3) expression was determined by immunofluorescence staining and western blot. HMME-PDT inhibited KFbs proliferation, invasion, migration, increased apoptosis rate and enhanced caspase3 and cleaved caspase3 expression. The keloid graft transplantation was performed by using nude mice. The growth of the graft was monitored every third day. Interleukin-6 (IL-6) and tumor necrosis factor-α (TNF-α) mRNA expression were detected by quantitative real time PCR. It was observed that HMME-PDT attenuated graft growth and reduced vessel density in the keloid grafts. However, HMME-PDT did not alter IL-6 and TNF-α mRNA expression in the keloid grafts. Moreover, HMME-PDT suppressed transforming growth-β1 (TGF-β1) and small phenotype and Drosophila Mothers Against Decapentaplegic 3 (Smad3) expression in both KFbs and keloid grafts. Collectively, the evidence suggests that HMME-PDT inhibits the growth of the keloid graft by promoting the apoptosis of fibroblasts and reducing vessel formation of the keloid graft."	"EPA attenuates epithelial-mesenchymal transition and fibrosis through the TGF-β1/Smad3/ILK pathway in renal tubular epithelial HK-2 cells by up-regulating miR-541. It was reported that eicosapentaenoic acid (EPA) could prevent tubulointerstitial injury in kidney. EPA could also inhibit the epithelial-mesenchymal transition (EMT) of HK-2 cells stimulated by albumin (Alb) in vitro. However, the regulating molecular mechanism of EPA remains to be elucidated. An immortalized human proximal tubular cell line (human kidney-2 (HK-2) cells) was used in all experiments. MTT assay was employed to determine the effect of Alb or EPA on the cell viability of HK-2 cells. The miR-541 expression, the mRNA levels of EMT markers E-cadherin, α-smooth muscle actin (α-SMA), and fibrogenesis markers Collagen I and fibronectin (FN) were examined by RT-qPCR assay. The protein levels of E-cadherin, α-SMA and Collagen I, transforming growth factor β1 (TGF-β1)/Smad3/integrin-linked kinase (ILK) pathway-related protein TGF-β1, pSmad2/3, Smad7 and ILK were measured by western blot. Enzyme-linked immunosorbent assay (ELISA) was performed to detect FN expression. The target relationship between miR-541 and TGF-β1 was confirmed by bioinformatics, luciferase reporter assay and western blot. Low doses of Alb had no effect on the cell viability of HK-2 cells, while EPA repressed the cell viability of HK-2 cells in a concentration-dependent manner. EPA could inhibit EMT and fibrosis and increase the miR-541 expression of HK-2 cells exposed to Alb. Interestingly, introduction of miR-541 effectively abolished the EMT and fibrosis of HK-2 cells stimulated by Alb. Bioinformatics analysis predicted TGF-β1 as a target gene of miR-541, and subsequent luciferase reporter assay and western blot further supported the prediction. miR-541 counter-regulated TGF-β1 expression, and inhibited the TGF-β1/Smad3/ILK pathway. Alb treatment activated the TGF-β1/Smad3/ILK pathway, while EPA inhibited the activation of the pathway. miR-541 inhibitors reversed the effects of EPA on EMT, fibrosis, and TGF-β1/Smad3/ILK pathway-related protein expression induced by Alb. EPA attenuates EMT and renal fibrosis through the TGF-β1/Smad3/ILK pathway in renal epithelial cells by targeting miR-541."	"Inhibition of the TGF-β/Smads signaling pathway attenuates pulmonary fibrosis and induces anti-proliferative effect on synovial fibroblasts in rheumatoid arthritis. We explored whether transforming growth factor (TGF-β)/Smads signaling pathway influences rheumatoid arthritis (RA)-associated pulmonary fibrosis (PF) and proliferation of RA synovial fibroblast (RA-SF). Expression levels of TGF-β1 in RA + PF patients, RA patients and healthy controls were determined. Rat models of RA were successfully induced and assigned into groups. The mRNA, phosphorylation and protein expressions of TGF-β1, Smad2 and Smad3 were detected. The serum expressions of inflammatory factors were measured by ELISA. Tissue sections were observed using hematoxylin-eosin (HE) and Masson staining. The SF cells were separated and grouped. Cell viability and migration were determined. The highest expressions of TGF-β1 were found in RA + PF patients, followed by RA patients and then healthy controls. RA + PF rats were characterized by less activity, worse appetite, messy and less shining hair, thin sloppy stool and increased joint swelling. Compared with the normal group, the expressions of TGF-β1, Smad2, Smad3, IL-6 and TNF-α were elevated in the RA + PF group. Meanwhile, the swelling and pulmonary fibrosis of lung tissues was worse, the lung capacity and serum level of IL-10 were decreased. However, SB431542 can reverse the above results. The cell activity and cell migration ability of cells in the RA + PF + SB431542 group were inhibited compared to those in the blank group. Based on above findings, the inhibition of the TGF-β/Smads signaling pathway alleviates the pulmonary fibrosis in rats with RA and suppresses cell viability and migration of synovial fibroblasts."	"MiR-149-5p regulates cisplatin chemosensitivity, cell growth, and metastasis of oral squamous cell carcinoma cells by targeting TGFβ2. Oral squamous cell carcinoma (OSCC) is a public health problem worldwide. MicroRNAs, acting as either oncogenes or tumor suppressors, have gathered much attention. The aim of this study was to characterize the role of miR-149-5p in drug resistance, cell growth, and metastasis and its underlying mechanism in oral squamous cell carcinoma. The expressions of miR-149-5p and TGFβ2 were measured by quantitative real-time polymerase chain reaction. The survival rate of cells treated with different concentrations of CDDP was checked by CCK-8. The cell proliferation and apoptosis was determined by CCK-8 and flow cytometry, respectively. Cell migration and invasion were examined using transwell assay. The interaction of miR-149-5p and TGFβ2 was predicted by online software Targetscan and confirmed by luciferase reporter assay. The protein expression of TGFβ2, p-SMAD2 and p-SMAD3 was quantified using western blot. The expression of miR-149-5p was obviously decreased in OSCC tissues and cell lines, and its expression was lower in a cisplatin resistant cell line (CAL-27/CDDP) than that of a normal OSCC cell line (CAL-27). CCK-8 assay suggested that miR-149-5p increased drug sensitivity in CAL-27 and CAL-27/CDDP cells. miR-149-5p attenuated proliferation, migration and invasion, and promoted apoptosis of CAL-27 and CAL-27/CDDP cells. In addition, TGFβ2 was up-regulated in OSCC cells at both mRNA and protein levels. Moreover, miR-149-5p promoted cisplatin chemosensitivity and regulated cell proliferation, apoptosis, migration and invasion by targeting TGFβ2 in CAL-27 and CAL-27/CDDP cells. miR-149-5p regulates cisplatin chemosensitivity, cell growth, apoptosis and metastasis by targeting TGFβ2. miR-149-5p/TGFβ2 axis has potential for therapy of OSCC."	"Hypoxia-inducible factor 1α (HIF-1α) mediates the epithelial-mesenchymal transition in benign prostatic hyperplasia. Epithelial-mesenchymal transition (EMT) based cancer cell invasion and metastasis has been thoroughly studied in prostate cancer. It was well known that EMT markers which have been found in benign prostatic hyperplasia (BPH) tissues, but system descriptions have not been described. First, in order to construct the epithelial cells to mesenchymal cell transformation model, BPH-1 cells were cultured with supernatant of prostate matrix normal prostate stromal WPMY-1 cells, after obtaining the culture medium through a filter. After that, we observed the morphology of cells cultured for a period of time by microscopy, detected cell invasion ability by transwell assay, detected cell proliferation ability by MTT, and detected EMT marker expression by western. Finally, we treated the cells with anti-HIF-1α drugs to study their effects on EMT, and then tested several related proteins simultaneously. The results showed that the morphology of BPH-1 cells gradually changed to fusiform after cultured with WSCM. At the same time, E-cadherin and cytokeratin levels were significantly lower than those in normal medium. Simultaneous detection of vimentin (SMA) and Snail was positive compared to normal cultured cells. At the same time, the cells were cultured with WSCM and the invasive ability was up-regulated. After treatment with anti-HIF-1α drug, E-cadherin and CK5/8 protein expression was up-regulated, but vimentin, α-SMA, and Snail expression was down-regulated, and in addition, p-Smad3 protein expression was also down-regulated after anti-HIF-1α drug was added. The above results indicated that WSCM-1 stromal cell supernatant WSCM can induced BPH-1 cell interstitialization, and at the same time, by inducing EMT, secreting HIF-1α activates Smad3 signaling. Our study shows that inhibition of HIF-1α expression provides a new reference for clinical treatment of BPH."	"Ameliorate effects of soybean soluble polysaccharide on adenine-induced chronic renal failure in mice. In the present study, the kidney protection effects of soluble soybean polysaccharide (SSPS) were evaluated. To address the issues, a mice model of Chronic renal failure (CRF) was established by gavage 0.2% (w/w) adenine for 3 weeks. In vivo results showed that SSPS could change the concentrations of blood urea nitrogen (BUN), creatinine (CRE), total protein (TP) and albumin (ALB), thereby affecting kidney function. In addition, Masson histopathology analysis indicated that SSPS could decrease the area of collagen fiber in the kidney tissues of CRF mice. Moreover, the results of mRNA expression and western experiment suggested that SSPS treatment could increase the expression of transforming growth factor-β (TGF-β), Smad3 and P-Smad3, while reduce the expression of α smooth muscle actin (α-SMA) when compared with the model group. These results indicated that SSPS potentially improve kidney function through TGF/Smad pathway in CRF mice."	"Effect of Jiawei Fengshining on Synovial Cell Apoptosis and TGF-β1/Smad Signaling Pathway in Rats with Rheumatoid Arthritis. Jiawei Fengshining (JWFSN) is a new formula originated from Fengshining, a classic formula for the treatment of rheumatoid arthritis (RA). The mechanism of JWFSN in the treatment of RA is still unclear. The aim of this study was to evaluate the effect of JWFSN formula on the inflammatory mediator levels in the serum and the TGF-β1/Smad pathway in the synovium and to explore the underlying mechanisms of JWFSN formula to ameliorate synovial hyperplasia and apoptosis inhibition of synovium in rats with RA. SPF female Wistar rats were randomly divided into 6 groups: the blank control group, the model control group, the positive drug group, and the low-, medium-, and high- dose JWFSN groups, with 8 rats in each group. Enzyme-linked immunosorbent assay (ELISA) was used to detect inflammatory mediators, anti-inflammatory mediators, and rheumatoid factor (RF). The pathological condition and apoptosis of the synovial tissue were detected by hematoxylin and eosin (HE) and TUNEL staining, respectively. TGF-β1, p-Smad2, p-Smad3, and Smad7 protein expressions in synovial tissue were measured by western blot assay. In addition, human rheumatoid arthritis fibroblast-like synoviocytes cell line MH7A was treated with 20% JWFSN-containing serum to obtain in vitro data. The administration of JWFSN was found to ameliorate synovial hyperplasia and promote apoptosis; increase the serum contents of anti-inflammatory mediators; reduce inflammatory mediators and RF contents; and inhibit the TGF-β1/Smad signaling pathway in CIA rats. In vitro JWFSN treatment increased the apoptosis of MH7A cells and decreased cell viability. Additionally, JWFSN treatment inhibited the TGF-β1/Smad signaling pathway in MH7A cells. Interestingly, kartogenin (TGF-β1/Smad pathway activator) treament reversed the effects of JWFSN treatment. JWFSN may ameliorate inflammatory factors' abnormality, synovial hyperplasia, and apoptosis inhibition of synovium via the TGF-β1/Smad signaling pathway."	"Hypoxia and transforming growth factor β1 regulation of long non-coding RNA transcriptomes in human pulmonary fibroblasts. One of the key characteristics of idiopathic pulmonary fibrosis (IPF) is accumulation of excess fibrous tissue in the lung, which leads to hypoxic conditions. Transforming growth factor (TGF) β is a major mediator that promotes the differentiation of fibroblasts to myofibroblasts. However, how hypoxia and TGFβ together contribute the pathogenesis of IPF is poorly understood. Long non-coding RNAs (lncRNAs) have regulatory effects on certain genes and are involved in many diseases. In this study, we determined the effects of hypoxia and/or TGFβ on mRNA and lncRNA transcriptomes in pulmonary fibroblasts. Hypoxia and TGFβ1 synergistically increased myofibroblast marker expression. RNA sequencing revealed that hypoxia and TGFβ1 treatment resulted in significant changes in 669 lncRNAs and 2,676 mRNAs compared to 150 lncRNAs and 858 mRNAs in TGFβ1 alone group and 222 lncRNAs and 785 mRNAs in hypoxia alone group. TGFβ1 induced the protein expression of HIF-1α, but not HIF-2α. On the other hand, hypoxia enhanced the TGFβ1-induced phosphorylation of Smad3, suggesting a cross-talk between these two signaling pathways. In all, 10 selected lncRNAs (five-up and five-down) in RNA sequencing data were validated using real-time PCR. Two lncRNAs were primarily located in cytoplasm, three in nuclei and five in both nuclei and cytoplasm. The silencing of HIF-1α and Smad3, but not Smad2 and HIF-2α rescued the downregulation of FENDRR by hypoxia and TGFβ1. In conclusion, hypoxia and TGFβ1 synergistically regulate mRNAs and lncRNAs involved in several cellular processes, which may contribute to the pathogenesis of IPF."	"SMAD3/SP1 complex-mediated constitutive active loop between lncRNA PCAT7 and TGF-β signaling promotes prostate cancer bone metastasis. Bone metastasis is associated with cancer-related death in patients with prostate cancer (PCa). Long noncoding RNAs (lncRNAs) play critical roles in tumor progression of PCa. Nevertheless, the biological function of lncRNAs in PCa bone metastasis remains unclear. PCAT7 was identified as a bone metastasis-related lncRNA via analyzing TCGA dataset. Meanwhile, PCAT7 was found to be elevated in primary PCa tissues with bone metastasis and associated with bone metastasis status and poor prognosis of patients with PCa. Functionally, our results reveal that PCAT7 overexpression promotes PCa bone metastasis in vivo, as well as migration, invasion, and EMT of PCa cells in vitro; on the contrary, PCAT7 knockdown has an inverse effect. Mechanistically, PCAT7 activates TGF-β/SMAD signaling by upregulating TGFBR1 expression via sponging miR-324-5p. In turn, TGF-β signaling forms a positive feedback loop with PCAT7 via SMAD3/SP1 complex-induced PCAT7 upregulation. Finally, the clinical positive correlation between PCAT7 and TGFBR1 and TGF-β signaling activity, and the negative association with miR-324-5p are further demonstrated in PCa tissues and clinical primary PCa cells. This study reveals a novel mechanism that is responsible for the constitutive activation of TGF-β signaling in PCa bone metastasis, implying that PCAT7 can act as a potential therapeutic target against bone metastasis of PCa via disrupting the constitutive active loop between PCAT7 and TGF-β signaling."	"The AHR pathway represses TGFβ-SMAD3 signalling and has a potent tumour suppressive role in SHH medulloblastoma. Sonic Hedgehog (SHH) medulloblastomas are brain tumours that arise in the posterior fossa. Cancer-propagating cells (CPCs) provide a reservoir of cells capable of tumour regeneration and relapse post-treatment. Understanding and targeting the mechanisms by which CPCs are maintained and expanded in SHH medulloblastoma could present novel therapeutic opportunities. We identified the aryl hydrocarbon receptor (AHR) pathway as a potent tumour suppressor in a SHH medulloblastoma mouse model. Ahr-deficient tumours and CPCs grown in vitro, showed elevated activation of the TGFβ mediator, SMAD3. Pharmacological inhibition of the TGFβ/SMAD3 signalling axis was sufficient to inhibit the proliferation and promote the differentiation of Ahr-deficient CPCs. Human SHH medulloblastomas with high expression of the AHR repressor (AHRR) exhibited a significantly worse prognosis compared to AHRR<sup>low</sup> tumours in two independent patient cohorts. Together, these findings suggest that reduced AHR pathway activity promotes SHH medulloblastoma progression, consistent with a tumour suppressive role for AHR. We propose that TGFβ/SMAD3 inhibition may represent an actionable therapeutic approach for a subset of aggressive SHH medulloblastomas characterised by reduced AHR pathway activity."	"Recombinant adiponectin peptide promotes neuronal survival after intracerebral haemorrhage by suppressing mitochondrial and ATF4-CHOP apoptosis pathways in diabetic mice via Smad3 signalling inhibition. Low levels of adiponectin (APN), a biomarker of diabetes mellitus, have been implicated in the poor outcome of intracerebral haemorrhage (ICH). Herein, we aimed to demonstrate the neuroprotective effects of a blood-brain barrier-permeable APN peptide (APNp) on ICH injury in diabetic mice and explore the underlying mechanisms. Recombinant APNp was administrated intraperitoneally to mice with collagenase-induced ICH. Neurological deficits, brain water content and neural apoptosis were assessed. Western blotting, immunofluorescence staining, quantitative RT-PCR and transmission electron microscopy were used to determine the signalling pathways affected by APNp. Adiponectin peptide significantly alleviated neural apoptosis, neurological deficits and brain oedema following ICH in diabetic mice. Mechanistically, APNp promoted the restoration of peroxisome proliferator-activated receptor gamma coactivator (PGC)-1α related mitochondrial function and suppressed activating transcription factor 4 (ATF4)-CCAAT-enhancer-binding protein homologous protein (CHOP)-induced neural apoptosis. Furthermore, Smad3 signalling was found to play a regulatory role in this process by transcriptionally regulating the expression of PGC-1α and ATF4. APNp significantly suppressed the elevated phosphorylation and nuclear translocation of Smad3 after ICH in diabetic mice, while the protective effects of APNp on mitochondrial and ATF4-CHOP apoptosis pathways were counteracted when Smad3 was activated by exogenous transforming growth factor (TGF)-β1 treatment. Our study provided the first evidence that APNp promoted neural survival following ICH injury in the diabetic setting and revealed a novel mechanism by which APNp suppressed mitochondrial and ATF4-CHOP apoptosis pathways in a Smad3 dependent manner."	"KLF15 is a protective regulatory factor of heart failure induced by pressure overload. The aim of the present study was to investigate the protective effect of Kruppel‑like factor 15 (KLF15) overexpression on heart failure (HF) induced by left ventricular (LV) pressure overload in mice. Wild‑type (WT) mice and cardiac‑specific KLF15‑overexpressed transgenic (TG) mice were selected as research subjects, and an LV pressure overload model was constructed by ascending aortic constriction surgery. Changes in cardiac morphology and function, and ultrastructure and molecular expression were observed via M‑mode echocardiography, histological and immunohistochemical staining, ELISA and western blotting at 2 and 6 weeks of LV overload. WT and TG mice subjected to 2 weeks of overload displayed adaptive LV hypertrophy characterized by ventricular thickness, cardiomyocyte size, ejection fraction and fractional shortening of heart‑lung weight ratio and KLF15, and increases in vascular endothelial growth factor (VEGF) expression without other pathological changes. WT mice subjected to 6 weeks of overload displayed enlargement of the LV chamber, severe interstitial remodeling, and HW/LW, cardiac capillary and heart function decline, accompanied by downregulated expression of KLF15 and VEGF, and upregulated expression of connective tissue growth factor, phosphorylated p38 (p‑p38) and phosphorylated Smad3 (p‑Smad3). In contrast, TG mice exhibited improved resistance to 6 weeks of overload and a slighter molecular expression response compared with WT mice. KLF15 was revealed to be a critical factor regulating the expression of CTGF, VEGF, p‑p38 and p‑Smad3, and could alleviate the progression from adaptive LV hypertrophy to decompensatory cardiac insufficiency."	"Role of TGF-β/Smad Pathway in the Transcription of Pancreas-Specific Genes During Beta Cell Differentiation. Autoimmune destruction of pancreatic beta cells causes absolute insulin deficiency and results in type 1 diabetes mellitus (T1DM). The substitution of healthy pancreatic beta cells for damaged cells would be the ideal treatment for T1DM; thus, the generation of pancreatic beta cells from adult stem cells represents an attractive avenue for research. In this study, a cocktail of factors was used to induce the differentiation of pancreatic beta cells from mesenchymal stem cells (MSCs). The differentiation program was divided into five stages, and the roles of the cocktail factors used during each stage were systematically elucidated. Activin A was found to phosphorylate Smad2 and Smad3 in stage III, thereby activating the TGF-β/Smad pathway. Meanwhile, the endocrine-specific transcription factor, Ngn3, and the pancreas-specific miRNAs, miR-375 and miR-26a, were dramatically elevated in stage III. We next demonstrated that Smad4, an important transcription factor in the TGF-β/Smad pathway, could bind to the promoter sequences of target genes and enhance their transcription to initiate the differentiation of beta cells. Use of SB-431542, an inhibitor of the TGF-β/Smad pathway, demonstrated in vivo and in vitro that this pathway plays a critical role in the production of pancreatic beta cells and in modulating insulin secretion. Thus, the TGF-β/Smad pathway is involved in the production of beta cells from adult stem cells by enhancing the transcription of Ngn3, miR-375, and miR-26a. These findings further underline the significant promise of cell transplant therapies for type 1 diabetes mellitus."	"Salidroside enhances proliferation and maintains phenotype of articular chondrocytes for autologous chondrocyte implantation (ACI) via TGF-β/Smad3 Signal. Autologous chondrocyte implantation (ACI) is commonly used for the treatment of cartilage defects. Since the cell number for transplantation is limited, the expand culture of chondrocytes in vitro is needed. However, the phenotype of chondrocytes is easy to lose in monolayer cultured in vitro. Traditional growth factors such as transformation growth factor -β1 (TGF-β1) have been used for promoting the proliferation and maintained the phenotype of chondrocytes, but the high cost and functional heterogeneity limit their clinical application. It is of significant to develop substitutes that can accelerate proliferation and prevent dedifferentiation of chondrocytes for further study. In our present study, the effect of salidroside on proliferation and phenotype maintenance of chondrocytes and cartilage repair was investigated by performing the cell viability, morphology, glycosaminoglycan (GAG) synthesis, cartilage relative genes expression, macroscopic and histological analyzsis. The TGF-β/smad3 signal which may involve in the protective effect of salidroside on chondrocytes was also detected by ELISA and qRT-PCR assays. The results indicated that salidroside could promote chondrocytes proliferation and enhance synthesis of cartilage extracellular matrix (ECM). Expression of collagen type I was significantly down-regulated which suggesting that salidroside could prevent chondrocytes from dedifferentiation. The in vivo experiments for cartilage repair also indicated that in the treatment of salidroside, chondrocytes used for ACI significantly accelerated the hyaline cartilage repair. While in the absence of salidroside, the repaired cartilage is mainly the fibrous cartilage. Additional experiments demonstrated that salidroside promotes the proliferation and maintain the phenotype of chondrocytes by activate the TGF-β/smad3 signal. Salidroside may be a potential agent for ACI to promote the proliferation and maintain the phenotype of chondrocytes expansion in vitro."	"The role of IL-37 in skin and connective tissue diseases. IL-37 was discovered as an anti-inflammatory and immunosuppressive cytokine of the IL-1 family. Significant advancements in the understanding of signaling pathways associated with IL-37 have been made in recent years. IL-37 binds to IL-18R and recruits IL-1R8 to form the IL-37/IL-1R8/IL-18Rα complex. Capase-1 plays a key role in the nuclear transduction of IL-37 signal, processing precursor IL-37 into the mature isoform, and interacting with Smad3. IL-37 exerts its role by activating anti-inflammation pathways including AMPK, PTEN, Mer, STAT3 and p62, and promoting tolerogenic dendritic cells and Tregs. In addition, IL-37 inhibits pro-inflammatory cytokines such as IL-1, IL-6, IL-8, IL-17, IL-23, TNF-α, and IFN-γ, and suppresses Fyn, MAPK, TAK1, NFκB, and mTOR signaling. The final effects of IL-37 depend on the interaction among IL-18R, IL-1R8, IL-37 and IL-18BP. Previous studies have deciphered the role of IL-37 in the development and pathogenesis of autoimmune diseases, chronic infections and cancer. In this review, we discuss the role of IL-37 in psoriasis, atopic dermatitis, Behcet's diseases, systemic lupus erythematosus, and other skin and connective tissue diseases."	"Smad2 and Smad3 play antagonistic roles in high glucose-induced renal tubular fibrosis via the regulation of SnoN. Diabetic nephropathy (DN) is a serious microvascular complication of diabetes mellitus.The main pathological features of DN include glomerular sclerosis and renal tubular interstitial fibrosis, which results in epithelial mesenchymal transition (EMT) and excessive extracellular matrix (ECM) deposition.Transforming growth factor-β1(TGF-β1) is a critical factor that regulates the manifestation of renal fibrosis.Smad2 and Smad3 are the main downstream of the TGF-β1 pathway. Ski-related novel protein N(SnoN) is a negative regulator of TGF-β1, and inhibits the activation of the TGF-β1/Smad2/3 signalling pathway. In this study, the expression of Smad2 and Smad3 proteins, SnoN mRNA, SnoN proteins, and the ubiquitination levels of SnoN were determined in DN rats and renal tubular epithelial cells(NRK52E cells). Knockdown and overexpression of Smad2 or Smad3 in NRK52E cells were used to investigate the specific roles of Smad2 and Smad3 in the development of high glucose-induced renal tubular fibrosis, with a specific focus on their effect on the regulation of SnoN expression. Our study demonstrated that Smad3 could inhibit SnoN expression and increase ECM deposition in NRK52E cells, to promote high glucose-induced renal tubular fibrosis. In contrast, Smad2 could induce SnoN expression and reduce ECM deposition, to inhibit high glucose-induced fibrosis. The underlying mechanism involves regulation of SnoN expression. These findings provide a novel mechanism to understanding the significant role of the TGF-β1/ Smad2/3 pathway in DN."	"Smad4 promotes diabetic nephropathy by modulating glycolysis and OXPHOS. Diabetic nephropathy (DN) is the leading cause of end-stage kidney disease. TGF-β1/Smad3 signalling plays a major pathological role in DN; however, the contribution of Smad4 has not been examined. Smad4 depletion in the kidney using anti-Smad4 locked nucleic acid halted progressive podocyte damage and glomerulosclerosis in mouse type 2 DN, suggesting a pathogenic role of Smad4 in podocytes. Smad4 is upregulated in human and mouse podocytes during DN. Conditional Smad4 deletion in podocytes protects mice from type 2 DN, independent of obesity. Mechanistically, hyperglycaemia induces Smad4 localization to mitochondria in podocytes, resulting in reduced glycolysis and oxidative phosphorylation and increased production of reactive oxygen species. This operates, in part, via direct binding of Smad4 to the glycolytic enzyme PKM2 and reducing the active tetrameric form of PKM2. In addition, Smad4 interacts with ATPIF1, causing a reduction in ATPIF1 degradation. In conclusion, we have discovered a mitochondrial mechanism by which Smad4 causes diabetic podocyte injury."	"Antiapoptosis and Antifibrosis Effects of Qishen Granules on Heart Failure Rats via Hippo Pathway. Qishen granules (QSG) are a famous formula with cardioprotective properties to heart failure (HF). The aim of this study was to investigate the underlying mechanism of QSG on apoptosis and fibrosis in the treatment of HF. HF model was induced by left anterior descending artery ligation on Sprague-Dawley rats. Transcriptome analysis was used to investigate the regulatory pathways of QSG on HF. Interestingly, downregulated genes of QSG were significantly enriched in Hippo pathway which plays a crucial role in regulating cell apoptosis and proliferation. We found that QSG inhibited the expressions of proapoptotic key proteins P-53 and fibrosis-related proteins TGF-β1, SMAD3, and CTGF. Further, we conducted research on the key proteins in the Hippo pathway upstream of CTGF and P-53. The results showed that MST1, P-MST1, P-LATS1, and RASSF1A that exert proapoptotic function were downregulated after QSG intervention. Similarly, P-YAP and P-TAZ, mediating self-degradation and apoptosis, were both observably decreased after QSG administration. Taken together, QSG are shown to be likely to exert cardioprotective effects by inhibiting the progression of apoptosis and fibrosis through Hippo pathway."	"Genetic profiling and cardiovascular phenotypic spectrum in a Chinese cohort of Loeys-Dietz syndrome patients. Loeys-Dietz syndrome (LDS) is a rare connective tissue disorder for which 6 genes in the TGF-β pathway have been identified as causative. With the widespread use of genetic testing, the range of known clinical and genetic profiles has broadened, but these features have not been fully elucidated thus far. Using gene panel sequencing or whole exome sequencing, we identified 54 unique rare variants in LDS genes in 57 patients with thoracic aneurysms/dissections, including 27 pathogenic mutations (P + LP) and 27 variants of unknown significance (VUS<sup>LP</sup> + VUS). Genotype-phenotype correlation analysis revealed that carriers with P/LP/ VUS<sup>LP</sup> variants in TGFBR1/TGFBR2/SMAD3 genes had significantly more severe cardiovascular features (cardiovascular death/dissection) than carriers with VUSs in these 3 genes at an early age and had less favorable event-free survival. Additionally, carriers with VUS in combination with other risk factors, such as hypertension, might be prone to developing an aortic dissection, as indicated by the fact that 5/8 (62.5%) patients with VUSs in our cohort developed aortic dissections in the presence of hypertension, compared with 25.0% (3/12) in the absence of hypertension (p = 0.047). To date, this was the largest cohort of LDS patients ever reported in China, and the present study expanded the known mutation and phenotypic spectra of LDS, which might help refine our knowledge of LDS."	"Luspatercept in Patients with Lower-Risk Myelodysplastic Syndromes. Patients with anemia and lower-risk myelodysplastic syndromes in whom erythropoiesis-stimulating agent therapy is not effective generally become dependent on red-cell transfusions. Luspatercept, a recombinant fusion protein that binds transforming growth factor β superfamily ligands to reduce SMAD2 and SMAD3 signaling, showed promising results in a phase 2 study. In a double-blind, placebo-controlled, phase 3 trial, we randomly assigned patients with very-low-risk, low-risk, or intermediate-risk myelodysplastic syndromes (defined according to the Revised International Prognostic Scoring System) with ring sideroblasts who had been receiving regular red-cell transfusions to receive either luspatercept (at a dose of 1.0 up to 1.75 mg per kilogram of body weight) or placebo, administered subcutaneously every 3 weeks. The primary end point was transfusion independence for 8 weeks or longer during weeks 1 through 24, and the key secondary end point was transfusion independence for 12 weeks or longer, assessed during both weeks 1 through 24 and weeks 1 through 48. Of the 229 patients enrolled, 153 were randomly assigned to receive luspatercept and 76 to receive placebo; the baseline characteristics of the patients were balanced. Transfusion independence for 8 weeks or longer was observed in 38% of the patients in the luspatercept group, as compared with 13% of those in the placebo group (P&lt;0.001). A higher percentage of patients in the luspatercept group than in the placebo group met the key secondary end point (28% vs. 8% for weeks 1 through 24, and 33% vs. 12% for weeks 1 through 48; P&lt;0.001 for both comparisons). The most common luspatercept-associated adverse events (of any grade) included fatigue, diarrhea, asthenia, nausea, and dizziness. The incidence of adverse events decreased over time. Luspatercept reduced the severity of anemia in patients with lower-risk myelodysplastic syndromes with ring sideroblasts who had been receiving regular red-cell transfusions and who had disease that was refractory to or unlikely to respond to erythropoiesis-stimulating agents or who had discontinued such agents owing to an adverse event. (Funded by Celgene and Acceleron Pharma; MEDALIST ClinicalTrials.gov number, NCT02631070; EudraCT number, 2015-003454-41.)."	"TGFβ receptor endocytosis and Smad signaling require synaptojanin1, PI3K-C2α-, and INPP4B-mediated phosphoinositide conversions. Phosphoinositide conversion regulates a diverse array of dynamic membrane events including endocytosis. However, it is not well understood which enzymes are involved in phosphoinositide conversions for receptor endocytosis. We found by small interfering RNA (siRNA)-mediated knockdown (KD) that class II PI3K α-isoform (PI3K-C2α), the 5'-phosphatase synaptojanin1 (Synj1), and the 4'-phosphatase INPP4B, but not PI3K-C2β, Synj2, or INPP4A, were required for TGFβ-induced endocytosis of TGFβ receptor. TGFβ induced rapid decreases in PI(4,5)P2 at the plasma membrane (PM) with increases in PI(4)P, followed by increases in PI(3,4)P2, in a TGFβ receptor kinase ALK5-dependent manner. TGFβ induced the recruitment of both synaptojanin1 and PI3K-C2α to the PM with their substantial colocalization. Knockdown of synaptojanin1 abolished TGFβ-induced PI(4,5)P2 decreases and PI(4)P increases. Interestingly, PI3K-C2α KD abolished not only TGFβ-induced PI(3,4)P2 increases but also TGFβ-induced synaptojanin1 recruitment to the PM, PI(4,5)P2 decreases, and PI(4)P increases. Finally, the phosphoinositide conversions were necessary for TGFβ-induced activation of Smad2 and Smad3. These observations demonstrate that the sequential phosphoinositide conversions mediated by Synj1, PI3K-C2α, and INPP4B are essential for TGFβ receptor endocytosis and its signaling."	"Long non-coding RNA Arid2-IR affects advanced glycation end products-induced human retinal endothelial cell injury by binding to Smad3. Long non-coding RNAs (lncRNAs) have been reported to play significant roles in the pathogenesis of diabetic retinopathy (DR). The aim of the present study was to investigate the role of lncRNA Arid2-IR in advanced glycation end product (AGE)-induced human retinal endothelial cells (HRECs) injury. Cell viability was determined by Cell Counting Kit-8 assay following induction with AGEs. The expression of Arid2-IR and Smad3 was detected by reverse transcription-quantitative PCR or western blotting. A luciferase reporter assay was conducted to determine the interaction between Arid2-IR and Smad3. The levels of inflammation-related and oxidative stress-related factors were evaluated by respective kits. The expression of extracellular matrix (ECM)-related and apoptosis-related proteins was detected by western blotting. Immunofluorescence assay was used to detect the level of vascular endothelial growth factor, and flow cytometry was applied to measure the levels of apoptosis. The results revealed that AGE treatment decreased HREC proliferation and upregulated the expression of Arid2-IR and Smad3. The luciferase assay indicated that Smad3 was able to bind to the promoter region sequence of Arid2-IR. Moreover, Arid2-IR silencing reduced inflammation, oxidative stress and ECM production induced by AGEs in HRECs, and Smad3 inhibition further reduced the levels of the aforementioned factors, while Smad3 overexpression exerted the opposite effect. Furthermore, apoptosis of HRECs induced by AGEs was decreased following Arid2-IR silencing, which was further reduced following treatment with Smad3 inhibitor, but was reversed after transfection with Smad3 pcDNA3.1. The findings demonstrated that Arid2-IR affects AGE-induced HREC injury by binding to Smad3."	"Protein phosphatase Mg<sup>2+</sup> /Mn<sup>2+</sup> dependent-1A and PTEN deregulation in renal fibrosis: Novel mechanisms and co-dependency of expression. PPM1A and PTEN emerged as novel suppressors of chronic kidney disease (CKD). Since loss of PPM1A and PTEN in the tubulointerstitium promotes fibrogenesis, defining molecular events underlying PPM1A/PTEN deregulation is necessary to develop expression rescue as novel therapeutic strategies. Here we identify TGF-β1 as a principle repressor of PPM1A, as conditional renal tubular-specific induction of TGF-β1 in mice dramatically downregulates kidney PPM1A expression. TGF-β1 similarly attenuates PPM1A and PTEN expression in human renal epithelial cells and fibroblasts, via a protein degradation mechanism by promoting their ubiquitination. A proteasome inhibitor MG132 rescues PPM1A and PTEN expression, even in the presence of TGF-β1, along with decreased fibrogenesis. Restoration of PPM1A or PTEN similarly limits SMAD3 phosphorylation and the activation of TGF-β1-induced fibrotic genes. Concurrent loss of PPM1A and PTEN levels in aristolochic acid nephropathy further suggests crosstalk between these repressors. PPM1A silencing in renal fibroblasts, moreover, results in PTEN loss, while PTEN stable depletion decreases PPM1A expression with acquisition of a fibroproliferative phenotype in each case. Transient PPM1A expression, conversely, elevates cellular PTEN levels while lentiviral PTEN introduction increases PPM1A expression. PPM1A and PTEN, therefore, co-regulate each other's relative abundance, identifying a previously unknown pathological link between TGF-β1 repressors, contributing to CKD."	"Fzd2 Contributes to Breast Cancer Cell Mesenchymal-Like Stemness and Drug Resistance. Cancer cell stemness is responsible for cancer relapse, distal metastasis, and drug resistance. Here we identified that Frizzled 2 (Fzd2), one member of Wnt receptor Frizzled family, induced human breast cancer (BC) cell stemness via noncanonical Wnt pathways. Fzd2 was overexpressed in human BC tissues, and Fzd2 overexpression was associated with an unfavorable outcome. Fzd2 knockdown (KD) disturbed the mesenchymal-like phenotype, migration, and invasion of BC cells. Moreover, Fzd2 KD impaired BC cell mammosphere formation, reduced Lgr5<sup>+</sup> BC cell subpopulation, and enhanced sensitivity of BC cells to chemical agents. Mechanistically, Fzd2 modulated and bound with Wnt5a/b and Wnt3 to activate several oncogenic pathways such as interleukin-6 (IL-6)/Stat3, Yes-associated protein 1 (Yap1), and transforming growth factor-β1 (TGF-β1)/Smad3. These data indicate that Fzd2 contributes to BC cell mesenchymal-like stemness; targeting Fzd2 may inhibit BC recurrence, metastasis, and chemoresistance."	"Inhibition of TGF-β Signaling in Gliomas by the Flavonoid Diosmetin Isolated from Dracocephalum peregrinum L. Background:Dracocephalum peregrinum L., a traditional Kazakh medicine, has good expectorant, anti-cough, and to some degree, anti-asthmatic effects. Diosmetin (3',5,7-trihydroxy-4'-methoxyflavone), a natural flavonoid found in traditional Chinese herbs, is the main flavonoid in D. peregrinum L. and has been used in various medicinal products because of its anticancer, antimicrobial, antioxidant, estrogenic, and anti-inflammatory effects. The present study aimed to investigate the effects of diosmetin on the proliferation, invasion, and migration of glioma cells, as well as the possible underlying mechanisms. Methods: 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT), scratch wound, and Transwell assays were used to demonstrate the effects of diosmetin in glioma. Protein levels of Bcl-2, Bax, cleaved caspase-3, transforming growth factor-β (TGF-β), E-cadherin, and phosphorylated and unphosphorylated smad2 and smad3 were determined by Western blots. U251 glioma cell development and progression were measured in vivo in a mouse model. Results: Diosmetin inhibited U251 cell proliferation, migration, and invasion in vitro, the TGF-β signaling pathway, and Bcl-2 expression. In contrast, there was a significant increase in E-cadherin, Bax, and cleaved caspase-3 expression. Furthermore, it effectively reduced the tumorigenicity of glioma cells and promoted apoptosis in vivo. Conclusion: The results of this study suggest that diosmetin suppresses the growth of glioma cells in vitro and in vivo, possibly by activating E-cadherin expression and inhibiting the TGF-β signaling pathway."	"Particulate Matter Increases the Severity of Bleomycin-Induced Pulmonary Fibrosis through KC-Mediated Neutrophil Chemotaxis. Although particular matter (PM) increases incidence and severity of idiopathic pulmonary fibrosis, the underlying mechanism remains elusive. The effects of PM were evaluated in a murine model of bleomycin-induced pulmonary fibrosis. Mice were divided into four groups, receiving: (1) Saline (control), (2) bleomycin, (3) PM, or (4) bleomycin plus PM (Bleo+PM). Additional groups of Bleo+PM mice were treated with sivelestat (an inhibitor of neutrophil elastase) or reparixin (a C-X-C motif chemokine receptor 2 antagonist), or were genetically modified with keratinocyte chemoattractant (KC) deletion. Pulmonary fibrosis was not observed in the control or PM groups. Bleomycin induced pulmonary fibrosis within 14 days. The Bleo+PM group showed worse pulmonary fibrosis when compared to the bleomycin group. Analyses of immune cell profile and chemokine/cytokine concentrations at day 2-bronchoalveolar lavage fluid (BALF) revealed that the Bleo+PM group had increased neutrophil number and elastase level and KC concentration compared to the bleomycin group. Neutrophil elastase activated the Smad2/Smad3/α-SMA pathway to induce collagen deposition, while sivelestat abrogated the increased severity of pulmonary fibrosis caused by PM. Chemotaxis assay revealed that BALF of the Bleo+PM group recruited neutrophil, which was dependent on KC. Further, genetic KC deletion or pharmaceutical inhibition of KC binding to CXCR2 with reparixin ameliorated the PM-induced increased severity of pulmonary fibrosis. These data provide evidence that the PM-induced increased severity of pulmonary fibrosis depends on KC-mediated neutrophil chemotaxis and give additional mechanic insight that will aid in the development of therapeutic strategies."	"PTPRε Acts as a Metastatic Promoter in Hepatocellular Carcinoma by Facilitating Recruitment of SMAD3 to TGF-β Receptor 1. Transforming growth factor beta (TGF-β) suppresses early stages of tumorigenesis, but contributes to migration and metastasis of cancer cells. However, the role of TGF-β signaling in invasive prometastatic hepatocellular carcinoma (HCC) is poorly understood. In this study, we investigated the roles of canonical TGF-β/SMAD3 signaling and identified downstream effectors on HCC migration and metastasis. By using in vitro trans-well migration and invasion assays and in vivo metastasis models, we demonstrated that SMAD3 and Protein Tyrosine Phosphatase Receptor Epsilon (PTPRε) promotes migration, invasion and metastasis of HCC cells in vitro and in vivo. Further mechanistic studies revealed that, upon TGF-β stimulation, SMAD3 binds directly to PTPRε promoters to activate its expression. PTPRε interacts with TGFBR1/SMAD3 and facilitates recruitment of SMAD3 to TGFBR1, resulting a sustained SMAD3 activation status. The tyrosine phosphatase activity of PTPRε is important for binding with TGFBR1, recruitment and activation of SMAD3, and its prometastatic role in vitro. A positive correlation between pSMAD3/SMAD3 and PTPRε expression were determined in HCC samples, and high expression of SMAD3 or PTPRε was associated with poor prognosis of HCC patients. Conclusion PTPRε positively feedback regulates TGF-β/SMAD3 signaling to promote HCC metastasis."	"Interleukin-17A induces renal fibrosis through the ERK and Smad signaling pathways. Interleukin (IL)-17A is upregulated in several renal diseases and plays a crucial role in renal inflammation. However, it remains unclear how IL-17A contributes to renal fibrosis. Our result demonstrated that IL-17A expression was upregulated in the obstructed kidney of unilateral ureter obstruction (UUO) mice when compared to the contralateral control kidney. Inhibition of IL-17A functions by the intravenous administration of an anti-IL-17A receptor antibody (100 μg) 2 h prior to UUO and on post-UUO day 1 and 3 significantly reduced fibronectin expression in the UUO kidney. The addition of IL-17A (25-100 μg) to human renal proximal tubular cells or renal fibroblasts caused an increase in fibronectin production and extracellular signal-regulated kinase (ERK)1/2 activation, which were reduced upon pretreatment with the ERK inhibitor U0126. The level of phosphorylated (p)-ERK1/2 was increased in the UUO kidney, but reduced by the administration of the anti-IL-17A receptor antibody, verifying the importance of the ERK pathway in vivo. TGF-β1 mRNA expression and protein were increased in the UUO kidney and in IL-17A-stimulated cultured cells. The administration of an anti-TGF-β1 neutralizing antibody or TGF-β1 receptor I inhibitor (SB431542) to cells abrogated the IL-17A-mediated increase of fibronectin production. IL-17A induced an increase in p-Smad2 and p-Smad3 expression at 7.5 min and 24 h and pretreatment with the anti-TGF-β1 neutralizing antibody, and SB431542 reduced the IL-17A-stimulated increase of p-Smad2. Knockdown of Smad2 or Smad3 expression inhibited the IL-17A-enhanced production of fibronectin. These results suggest an essential role for the TGF-β/Smad pathway in the IL-17A-mediated increase of fibronectin production. This study demonstrates that IL-17A contributes to the production of extracellular matrix, and targeting its associated signaling pathways could provide a therapeutic target for preventing renal fibrosis."	"Astragaloside IV Synergizes with Ferulic Acid to Alleviate Hepatic Fibrosis in Bile Duct-Ligated Cirrhotic Rats. Due to the multi-factorial etiology of hepatic fibrosis, multi-target therapeutics based on combinatory drugs is known to be a promising strategy for the disease. The present study attempted to test the hypothesis that astragaloside IV combined with ferulic acid synergistically inhibits activation of hepatic stellate cells in vivo. Bile duct-ligated rats were treated with astragaloside IV or/and ferulic acid for 28 days. Liver fibrosis was measured by histological examination. The oxidative stress-related biomarkers were measured with spectrophotometry. Expressions of mRNA and protein were measured by real-time PCR and Western blotting. Bile duct-ligated rat treatment with astragaloside IV and ferulic acid in combination resulted in synergistic alleviation of hepatic fibrosis. Simultaneously, activation of hepatic stellate cells was significantly inhibited by the combination therapy when compared with astragaloside IV or ferulic acid alone. Interestingly, astragaloside IV, but not ferulic acid, induced accumulation of Nrf2 in the nucleus, synthesized antioxidant enzymes through negative regulation of glycogen synthase kinase-3β, scavenged reactive oxygen species, and, in turn, suppressed hepatic stellate cells activation in bile duct-ligated rats. Conversely, ferulic acid, but not astragaloside IV, suppressed TGF-β1 and its receptors expression, which resulted in downregulation of Smad3 and Smad4. These findings suggest that the combination of astragaloside IV and ferulic acid synergistically induces deactivation of hepatic stellate cells through inhibition of the TGF-β pathway and activation of the Nrf2 pathway, and suggest that combination of astragaloside IV and ferulic acid is a promising candidate for the treatment of hepatic fibrosis."	"Circular RNA circ_0003204 inhibits proliferation, migration and tube formation of endothelial cell in atherosclerosis via miR-370-3p/TGFβR2/phosph-SMAD3 axis. Circular RNAs (circRNAs) represent a class of non-coding RNAs (ncRNAs) which are widely expressed in mammals and tissue-specific, of which some could act as critical regulators in the atherogenesis of cerebrovascular disease. However, the underlying mechanisms by which circRNA regulates the ectopic phenotype of endothelial cells (ECs) in atherosclerosis remain largely elusive. CCK-8, transwell, wound healing and Matrigel assays were used to assess cell viability, migration and tube formation. QRT-qPCR and Immunoblotting were used to examine targeted gene expression in different groups. The binding sites of miR-370-3p (miR-370) with TGFβR2 or hsa_circ_0003204 (circ_0003204) were predicted using a series of bioinformatic tools, and validated using dual luciferase assay and RNA immunoprecipitation (RIP) assay. The localization of circ_0003204 and miR-370 in ECs were investigated by fluorescence in situ hybridization (FISH). Gene function and pathways were enriched through Metascape and gene set enrichment analysis (GSEA). The association of circ_0003204 and miR-370 in extracellular vesicles (EVs) with clinical characteristics of patients were investigated using multiple statistical analysis. Circ_0003204, mainly located in the cytoplasm of human aorta endothelial cells (HAECs), was upregulated in the ox-LDL-induced HAECs. Functionally, the ectopic expression of circ_0003204 inhibited proliferation, migration and tube formation of HAECs exposed to ox-LDL. Mechanically, circ_0003204 could promote protein expression of TGFβR2 and its downstream phosph-SMAD3 through sponging miR-370, and miR-370 targeted the 3' untranslated region (UTR) of TGFβR2. Furthermore, the expression of circ_0003204 in plasma EVs was upregulated in the patients with cerebral atherosclerosis, and represented a potential biomarker for diangnosis and prognosis of cerebrovascular atherogenesis. Circ_0003204 could act as a novel stimulator for ectopic endothelial inactivation in atherosclerosis and a potential biomarker for cerebral atherosclerosis."	"Alcohol promotes renal fibrosis by activating Nox2/4-mediated DNA methylation of Smad7. Alcohol consumption causes renal injury and compromises kidney function. The underlying mechanism of the alcoholic kidney disease remains largely unknown. In the present study, an alcoholic renal fibrosis animal model was first employed which mice received liquid diet containing alcohol for 4 to 12 weeks. The Masson's Trichrome staining analysis showed that kidney fibrosis increased at week 8 and 12 in the animal model that was further confirmed by albumin assay, Western blot, immunostaining and real-time PCR of fibrotic indexes (collagen I and α-SMA). In vitro analysis also confirmed that alcohol significantly induced fibrotic response (collagen I and α-SMA) in HK2 tubular epithelial cells. Importantly, both in vivo and in vitro studies showed alcohol treatments decreased Smad7 and activated Smad3. We further determined how the alcohol affected the balance of Smad7 (inhibitory Smad) and Smad3 (regulatory Smad). Genome-wide methylation sequencing showed an increased DNA methylation of many genes and bisulfite sequencing analysis showed an increased DNA methylation of Smad7 after alcohol ingestion. We also found DNA methylation of Smad7 was mediated by DNMT1 in ethyl alcohol (EtOH)-treated HK2 cells. Knockdown of Nox2 or Nox4 decreased DNMT1 and rebalanced Smad7/Smad3 axis, and thereby relieved EtOH-induced fibrotic response. The inhibition of reactive oxygen species by the intraperitoneal injection of apocynin attenuated renal fibrosis and restored renal function in the alcoholic mice. Collectively, we established novel in vivo and in vitro alcoholic kidney fibrosis models and found that alcohol induces renal fibrosis by activating oxidative stress-induced DNA methylation of Smad7. Suppression of Nox-mediated oxidative stress may be a potential therapy for long-term alcohol abuse-induced kidney fibrosis."	"CD105 overexpression mediates drug-resistance in choriocarcinoma cells through BMP9/Smad pathway. Background: CD105 (endoglin, ENG) is a membranous protein that is overexpressed in tumor-associated endothelial cells and some actual tumor cells and is associated with poor prognosis. However, the association between CD105 and response to chemoresistance in choriocarcinoma cells has not been clearly defined. The present study aimed to investigate the effects of targeting CD105 in drug-resistant choriocarcinoma. Methods: CD105 expression was evaluated in drug-resistant and parental choriocarcinoma cells by qRT-PCR, western blotting, and immunofluorescence. CD105 overexpressing and knockdown cells were established by lentiviral transfection. CCK8, transwell, and flow cytometric assays were used to measure changes in drug-sensitivity, invasion, migration, and apoptosis. Drug-sensitivity and Smad1/5/8, Smad2, and Smad3 expression were also detected after BMP9 treatment. Immunohistochemical staining for CD105 and BMP9 was performed on choriocarcinoma tissues and the relationships between clinical and pathological characteristics were analysed. Results: Data demonstrated that CD105 overexpression could decrease drug sensitivity, promote invasion and migration, and inhibit apoptosis in choriocarcinoma cells, and this protein was confirmed to mediate drug resistance through the BMP9/Smad pathway. Further experiments showed that the expression of CD105 and BMP9 was consistent in choriocarcinoma tissues and significantly associated with disease recurrence. Conclusions: This study provides evidence suggesting that CD105 is critical for the development of drug-resistance in choriocarcinoma and might serve as a therapeutic target for reversing chemoresistance in choriocarcinoma patients."	"Identification of an activation-related protein in B cells in the ABO incompatible condition. In ABO-incompatible (ABOi) kidney transplantation (KT), antibodies can mediate immunological accommodation or immune rejection, but the mechanism by which B cells are induced to produce antibodies with different functions is still unclear. Previous research established an ABOi kidney cell model and identified that haptoglobin (HP) is associated with the activation of lymphocytes. In the present study, the results of a flow cytometric assay demonstrated that HP was expressed by B cells. Moreover, dot-ELISA and ELISA analyses showed that the concentrations of total IgG, blood group B antibody, IgG1, IgG2 and IgG4 were all significantly increased in the cell model. In addition, dot-ELISA and haptoglobin level analyses showed that HP protein expression was significantly increased, while RT-qPCR assay indicated that HP was significantly reduced at the mRNA level. Furthermore, bioinformatics analysis showed that HP could interact with Smad3, and the HP-Smad3 complex was detected in a peripheral blood mononuclear cell (PBMC) protein extract by a dot-ELISA method. This research revealed that HP was involved in the process of B-cell activation by interacting with Smad3, and the results will be helpful to reveal the mechanism of B-cell activation in ABOi-KT."	"Impacts of a Specific Cyclooxygenase-2 Inhibitor on Pressure Overload-Induced Myocardial Hypertrophy in Rats. The aim of this study was to observe the impacts of the specific cyclooxygenase-2 inhibitor celecoxib on cardiac structures, functions, and inflammatory factors during the process of pressure overload-induced myocardial hypertrophy. Twenty-four male Sprague Dawley rats were randomly divided into 3 groups: the sham operation group, the surgery group, and the celecoxib group. The model was established according to the abdominal aortic coarctation method. At 16 weeks, rats in the celecoxib group were fed a celecoxib-mixed diet (10 mg/kg) for 8 consecutive weeks. At week 24 after model establishment, the cardiac structures and functions were observed; changes in the levels of tumor necrosis factor (TNF)-α, transforming growth factor (TGF)-β, prostaglandin E2 (PGE2), C-reactive protein (CRP), and uric acid (UA) were detected; and the contents of Smad1/2/3 proteins (Smad1, Smad2, and Smad3) were determined. Left ventricular mass index, the heart weight/body weight ratio, and TNF-α, TGF-β, PGE2, CRP, and UA levels of the celecoxib group were all significantly decreased relative to those of the surgery group (P &lt; .05); moreover, the cardiac functions were significantly improved compared to those of the surgery group (P &lt; .05). These results show that inflammatory factors are involved in the myocardial hypertrophy process and that celecoxib may reverse myocardial hypertrophy through a variety of pathways."	"Altered expression of fucosylation pathway genes is associated with poor prognosis and tumor metastasis in non‑small cell lung cancer. Fucosylation is a post‑translational modification that attaches fucose residues to protein‑ or lipid‑bound oligosaccharides. Certain fucosylation pathway genes are aberrantly expressed in several types of cancer, including non‑small cell lung cancer (NSCLC), and this aberrant expression is associated with poor prognosis in patients with cancer. However, the molecular mechanism by which these fucosylation pathway genes promote tumor progression has not been well‑characterized. The present study analyzed public microarray data obtained from NSCLC samples. Multivariate analysis revealed that altered expression of fucosylation pathway genes, including fucosyltransferase 1 (FUT1), FUT2, FUT3, FUT6, FUT8 and GDP‑L‑fucose synthase (TSTA3), correlated with poor survival in patients with NSCLC. Inhibition of FUTs by 2F‑peracetyl‑fucose (2F‑PAF) suppressed transforming growth factor β (TGFβ)‑mediated Smad3 phosphorylation and nuclear translocation in NSCLC cells. In addition, wound‑healing and Transwell migration assays demonstrated that 2F‑PAF inhibited TGFβ‑induced NSCLC cell migration and invasion. Furthermore, in vivo bioluminescence imaging analysis revealed that 2F‑PAF attenuated the metastatic capacity of NSCLC cells. These results may help characterize the oncogenic role of fucosylation in NSCLC biology and highlight its potential for developing cancer therapeutics."	"Mechanism of epithelial‑mesenchymal transition inhibited by miR‑203 in non‑small cell lung cancer. The aim of the present study was to investigate whether miR‑203 can inhibit transforming growth factor‑β (TGF‑β)‑induced epithelial‑mesenchymal transition (EMT), and the migration and invasion ability of non‑small cell lung cancer (NSCLC) cells by targeting SMAD3. In the present study, the expression levels of miR‑203, SMAD3 mRNA and protein in NSCLC tissues were examined, as well as their corresponding paracancerous samples. The miR‑203 mimics and miR‑203 inhibitor were transfected into the H226 cell line. RT‑qPCR was used to assess the expression levels of E‑cadherin, Snail, N‑cadherin and vimentin mRNA, and western blotting was performed to detect the expression levels of p‑SMAD2, SMAD2, p‑SMAD3, SMAD3 and SMAD4. The cell migration and invasion abilities were detected by Transwell assays. The target site of SMAD3 was predicted by the combined action between miR‑203 and dual luciferase. The results revealed that the RNA levels of miR‑203, compared with paracancerous tissues, were decreased in NSCLC tissues, while SMAD3 mRNA and protein levels were upregulated, and miR‑203 inhibited SMAD3 expression. Induction of TGF‑β led to decreased E‑cadherin mRNA levels, upregulation of Snail, N‑cadherin and vimentin mRNA levels (P&lt;0.05), and significant increase in cell migration and invasion, whereas transfection of miR‑203 mimics reversed the aforementioned results (P&lt;0.05). Conversely, miR‑203 inhibitor could further aggravate the aforementioned results (P&lt;0.05). Western blot results revealed that transfection of miR‑203 mimics significantly reduced the protein expression of SMAD3 and p‑SMAD3 (P&lt;0.05). Furthermore, the results of the Dual‑Luciferase assay revealed that miR‑203 inhibited SMAD3 expression by interacting with specific regions of its 3'‑UTR. Overall, a novel mechanism is revealed, in which, miR‑203 can inhibit SMAD3 by interacting with specific regions of the 3'‑UTR of SMAD3, thereby restraining TGF‑β‑induced EMT progression and migration and invasion of NSCLC cells."	"Implementing Efficient Peptoid-Mediated Delivery of RNA-Based Therapeutics to the Vocal Folds. We hypothesize that Smad3 is a master regulator of fibrosis in the vocal folds (VFs) and RNA-based therapeutics targeting Smad3 hold therapeutic promise. Delivery remains challenging. We previously described a novel synthetic peptoid oligomer, lipitoid L0, complexed with siRNA to improve stability and cellular uptake. An advantage of these peptoids, however, is tremendous structural and chemical malleability to optimize transfection efficiency. Modifications of L0 were assayed to optimize siRNA-mediated alteration of gene expression. In vitro, Smad3 knockdown by various lipitoid variants was evaluated via quantitative real-time polymerase chain reaction in human VF fibroblasts. Cytotoxicity was quantified via colorimetric assays. In vivo, a rabbit model of VF injury was employed to evaluate the temporal dynamics of Smad3 knockdown following injection of the L0-siRNA complex. In vitro, similar reductions in Smad3 expression were established by all lipitoid variants, with one exception. Sequence variants also exhibited similar nontoxic characteristics; no statistically significant differences in cell proliferation were observed. In vivo, Smad3 expression was significantly reduced in injured VFs following injection of L0-complexed Smad3 siRNA at 1 day postinjection. Qualitative suppression of Smad3 expression persisted to 3 days following injury, but did not achieve statistical significance. In spite of the chemical diversity of these peptoid transfection reagents, the sequence variants generally provided consistently efficient reductions in Smad3 expression. L0 yielded effective, yet temporally limited knockdown of Smad3 in vivo. Peptoids may provide a versatile platform for the discovery of siRNA delivery vehicles optimized for clinical application. NA."	"Transcriptomic changes during TGF-β-mediated differentiation of airway fibroblasts to myofibroblasts. Asthma is the most common chronic lung disease in children and young adults worldwide. Airway remodelling (including increased fibroblasts and myofibroblasts in airway walls due to chronic inflammation) differentiates asthmatic from non-asthmatic airways. The increase in airway fibroblasts and myofibroblasts occurs via epithelial to mesenchymal transition (EMT) where epithelial cells lose their tight junctions and are transdifferentiated to mesenchymal cells, with further increases in myofibroblasts occurring via fibroblast-myofibroblast transition (FMT). Transforming growth factor (TGF)-β is the central EMT- and FMT-inducing cytokine. In this study, we have used next generation sequencing to delineate the changes in the transcriptome induced by TGF-β treatment of WI-38 airway fibroblasts in both the short term and after differentiation into myofibroblasts, to gain an understanding of the contribution of TGF-β induced transdifferentiation to the asthmatic phenotype. The data obtained from RNAseq analysis was confirmed by quantitative PCR (qPCR) and protein expression investigated by western blotting. As expected, we found that genes coding for intermediates in the TGF-β signalling pathways (SMADs) were differentially expressed after TGF-β treatment, SMAD2 being upregulated and SMAD3 being downregulated as expected. Further, genes involved in cytoskeletal pathways (FN1, LAMA, ITGB1) were upregulated in myofibroblasts compared to fibroblasts. Importantly, genes that were previously shown to be changed in asthmatic lungs (ADAMTS1, DSP, TIMPs, MMPs) were similarly differentially expressed in myofibroblasts, strongly suggesting that TGF-β mediated differentiation of fibroblasts to myofibroblasts may underlie important changes in the asthmatic airway. We also identified new intermediates of signalling pathways (PKB, PTEN) that are changed in myofibroblasts compared to fibroblasts. We have found a significant number of genes that are altered after TGF-β induced transdifferentiation of WI-38 fibroblasts into myofibroblasts, many of which were expected or predicted. We also identified novel genes and pathways that were affected after TGF-β treatment, suggesting additional pathways are activated during the transition between fibroblasts and myofibroblasts and may contribute to the asthma phenotype."	"Inhibition of miR-182-5p attenuates pulmonary fibrosis via TGF-β/Smad pathway. Idiopathic pulmonary fibrosis (IPF) is a chronic and progressive lung disease with high morbidity and mortality. miR-182-5p is overexpressed in several fibrosis-related diseases but its effect in pulmonary fibrosis has not been reported yet. To investigate the function of miR-182-5p in pulmonary fibrosis, we established bleomycin (BLM)-induced fibrotic mice model and transforming growth factor-β1 (TGF-β1)-treated human embryonic lung fibroblasts model. In this study, miR-182-5p was highly expressed in pulmonary tissues of BLM-induced fibrotic mice. The content of hydroxyproline and TGF-β1 was decreased by downregulating the expression of miR-182-5p, indicating that fibrosis was alleviated in mice treated with Lentivirus-anti-miR-182-5p.Quantification of fibrosis-related proteins demonstrated that downregulation of miR-182-5p inhibited the expression of profibrotic proteins (fibronectin, α-smooth muscle actin, p-Smad2/p-Smad3) as well as enhanced the level of Smad7. In vitro assays validated that miR-182-5p was induced by TGF-β1 with the function of promoting fibrosis. In dual-luciferase reporter assay, Smad7 was demonstrated to be negatively regulated by miR-182-5p. Moreover, the effect of knocking down miR-182-5p on inhibiting fibrosis was achieved by upregulating the expression of Smad7. Therefore, miR-182-5p can be regarded as a biomarker of IPF and its inhibition may be a promising therapeutic approach in treating IPF."	"Qingxuan Jiangya Decoction () Prevents Blood Pressure Elevation and Ameliorates Vascular Structural Remodeling via Modulating TGF-β 1/Smad Pathway in Spontaneously Hypertensive Rats. To elevate the effects of Qingxuan Jiangya Decoction (, QXJYD) on hypertension and vascular structural remodeling (VSR) in spontaneously hypertensive rats (SHRs), and investigate the underlying mechanisms. SHRs (n=8) were given intra-gastric administration with 60 mg/kg of QXJYD or saline, daily for 8 weeks, while rats in SHR-control (n=8) and WKY (n=8) groups were received equal volumes of saline solution. Systolic blood pressures (SBP), diastolic blood pressures (DBP) and mean blood pressures (MBP) were measured once a week. The levels of angiotensin II (Ang II), endothelin 1 (ET-1) and plasma renin activity (PRA) were tested by enzyme-linked immunosorbent assay (ELISA) and radioimmunoassay, respectively. The effect of QXJYD on VSR was determined by examining the media thickness and the ex vivo contractility of thoracic aortic. The proliferation and fibrosis of vascular smooth muscle cells (VSMCs) were examined via immunohistochemical (IHC) staining for proliferating cell nuclear antigen (PCNA), collagen I and collagen III, respectively. The mRNA and protein expressions of transforming growth factor β 1 (TGF-β 1), Smad3 and phosphorylation of Smad3 in thoracic aorta tissues were determined by real-time polymerase chain reaction (PCR) and Western blot assay, respectively. QXJYD treatment led to a significant decrease of the elevation of blood pressure in SHRs and reduced the levels of Ang II, ET-1 and PRA in the serum (P&lt;0.05). In addition, QXJYD treatment remarkably ameliorated VSR and vascular function in SHRs. Moreover, QXJYD inhibited VSMC proliferation and fibrosis by suppressing the expression of PCNA, collagen I and collagen III in thoracic aortic. Furthermore, QXJYD inhibited the expression of TGF-β 1, Smad3 and the phosphorylation of Smad3, respectively (P&lt;0.05). QXJYD reversed VSR by inhibiting VSMC proliferation and collagen deposition via regulation of TGF-β 1/Smad signaling pathway, which may, in part, illuminate its anti-hypertensive activities."	"[Preventive effect and mechanism of ultrafine powder of Dendrobium candidum on photoaging model mice]. Chinese herbal medicine ultrafine powder has become a research hotspot for the addition of cosmetic raw materials. Dendrobium candidum is a traditional Chinese herbal medicine. Its extract and stem extract are already cosmetic raw materials and its water extract has the effect of preventing photoaging,but D. candidum ultrafine powder has not been accepted as a raw material for cosmetics,and no relevant research on photoaging prevention has been reported. In this experiment,the ultra-fine powder and fine powder of D. candidum to prevent photoaging were observed and compared,and its mechanism of action was discussed to provide a basis for the prevention of skin photoaging products. Seventy-two female ICR mice were randomly divided into normal group,model group,solvent group,titanium dioxide(Ti O2) group,isooctyl salicylate(2-ES) group,D. candidum ultrafine powder 1(DP1),ultrafine powder 2(DP2) and fine powder(DP3) groups. The photoaging model was established by ultraviolet irradiation for 8 weeks,and the model was intervened while modeling. The skin wrinkle grade,elastic parameters,skin microcirculation blood flow,skin structure and pathological changes(skin thickness,skin collagen fiber,elastic fiber) were observed,the skin transforming growth factor-β1(TGF-β1),Smad3 levels were determined,and the type Ⅰ and type Ⅲ collagen,matrix metalloproteinase-1(MMP-1),activated protein-1(AP-1),VEGF expression were detected. The results showed that ultrafine powder(DP1,DP2) significantly reduced the wrinkle level and skin blood flow of the model mice(P&lt;0. 05,P&lt;0. 01); DP1,DP2 and DP3 could significantly reduce the thickness of the epidermis(P&lt;0. 001),improve collagen fiber,elastic fiber hyperplasia,and distortion and decrease VEGF expression,and DP1 is better than DP2 and DP3; each group could up-regulate type Ⅰ collagen,down-regulate type Ⅲ collagen,AP-1,MMP-1 protein expression,and DP1 improvement optimal. However,it has no obvious effect on TGF-β1 and Smad3. The ultrafine powder and fine powder of D. candidum have certain preventive effect on photoaging,and the effect of ultrafine powder is better than that of fine powder. Ultrafine powder may down-regulate the expression of type Ⅲ collagen,AP-1 and MMP-1 by up-regulating type Ⅰ collagen. Inhibition of collagen degradation plays a role in preventing photoaging."	"Upregulation of Transient Receptor Potential Canonical Type 3 Channel via AT1R/TGF-β1/Smad2/3 Induces Atrial Fibrosis in Aging and Spontaneously Hypertensive Rats. Fibroblast proliferation and migration are central in atrial fibrillation (AF) promoting structure remodeling, which is strongly associated with aging and hypertension. Transient receptor potential canonical-3 channel (TRPC3) is a key mediator of cardiac fibrosis and the pathogenesis of AF. Here, we have observed the increased TRPC3 expression that induced atrial fibrosis which possibly is either mediated by the aging process or related to hypertensive progression. In this study, we measured the pathological structure remodeling by H&amp;E staining, Masson staining, and transmission electron microscope (TEM). The protein expression levels of fibrotic biomarkers and TRPC3 were measured by Western blotting with atrial tissues from normotensive Wistar Kyoto rats (WKY 4m-o (4 months old)), old WKY (WKY 24m-o (24 months old)), spontaneously hypertensive rat (SHR 4m-o (4 months old)), and old SHR (SHR 24m-o (24 months old)). To illuminate the molecular mechanism of TRPC3 in atrial fibrosis of aging rats and SHR, we detected the inhibited role of TRPC3 selective blocker ethyl-1-(4-(2,3,3-trichloroacrylamide) phenyl)-5-(trifluoromethyl)-1H-pyrazole-4-carboxylate,pyrazole-3 (Pyr3) on angiotensin II (Ang II) induced fibrosis in neonatal rat atrial fibroblasts. The pathological examination showed that the extracellular matrix (ECM) and collagen fibrils were markedly increased in atrial tissues from aged and hypertensive rats. The protein expressions of fibrotic biomarkers (collagen I, collagen III, and transforming growth factor-β1 (TGF-β1)) were significantly upregulated in atrial tissues from the WKY 24m-o group, SHR 4m-o group, and SHR 24m-o group compared with the WKY 4m-o group. Meanwhile, the expression level of TRPC3 was significantly upregulated in WKY 24m-o and SHR 4m-o atrial tissues compared to WKY 4m-o rats. In isolated and cultured neonatal rat atrial fibroblasts, Ang II induced the atrial fibroblast migration and proliferation and upregulated the expression levels of TRPC3 and fibrotic biomarkers. TRPC3 selected blocker Pyr3 attenuated the migration and proliferation in neonatal rat atrial fibroblasts. Furthermore, Pyr3 significantly alleviated Ang II-induced upregulation of TRPC3, collagen I, collagen III, and TGF-β1 through the molecular mechanism of the TGF-β/Smad2/3 signaling pathway. Similarly, knocking down TRPC3 using short hairpin RNA (shTRPC3) also attenuated Ang II-induced upregulation of TGF-β1. Pyr3 preconditioning decreased Ang II-induced intracellular Ca<sup>2+</sup> transient amplitude elevation. Furthermore, AT1 receptor was involved in Ang II-induced TRPC3 upregulation. Hence, upregulation of TRPC3 in aging and hypertension is involved in an atrial fibrosis process. Inhibition of TRPC3 contributes to reverse Ang II-induced fibrosis. TRPC3 may be a potential therapeutic target for preventing fibrosis in aging and hypertension."	"Effects of suppressing Smads expression on wound healing in Hyriopsis cumingii. As a specific pearl mussel in China, Hyriopsis cumingii has enormous economic value. However, the organism damage caused by pearl insertion is immeasurable. TGF-β/Smad signal transduction pathways are involved in all phases of wound healing. We have previously reported on two cytoplasmic signal transduction factors, Smad3 and Smad5 in mussel H. cumingii (named HcSmads), suggesting their involvements in wound healing. Here, Smad4 was cloned and described. The full length cDNA of HcSmad4 was 2543 bp encoded 515 amino acids. Deduced HcSmad4 protein possessed conserved MH1 and MH2 domains, nuclear location signals (NLS), nuclear exput signals (NES) and Smad activation domain (SAD). Transcripts of Smad3, 4 and 5 were constitutively expressed in all detected tissues, at highest levels in muscles. Furthermore, HcSmad4 mRNA levels were significantly increased at incision site post wounding, and expression of downstream target genes of Smad4, such as HcMMP1, HcMMP19, HcTIMP1 and HcTIMP2 were upregulated to a certain extent. Whatever knocked down HcSmad3/4 or treated by specific inhibitors of Smad 3 (SIS3), expression levels of these genes displayed a significantly downregulated tendency compared with the wound group. In addition, histological evaluation suggested that Smad3 knockdown or SIS3 treatment was accelerated wound healing, and then Smad4 knockdown delayed the process of wound healing in mussels. These data implicate that Smad3/4 play an important role in tissue repair in mollusks."	"Human Cytomegalovirus miRNAs Regulate TGF-β to Mediate Myelosuppression while Maintaining Viral Latency in CD34<sup>+</sup> Hematopoietic Progenitor Cells. Infection with human cytomegalovirus (HCMV) remains a significant cause of morbidity and mortality following hematopoietic stem cell transplant (HSCT) because of various hematologic problems, including myelosuppression. Here, we demonstrate that latently expressed HCMV miR-US5-2 downregulates the transcriptional repressor NGFI-A binding protein (NAB1) to induce myelosuppression of uninfected CD34<sup>+</sup> hematopoietic progenitor cells (HPCs) through an increase in TGF-β production. Infection of HPCs with an HCMVΔmiR-US5-2 mutant resulted in decreased TGF-β expression and restoration of myelopoiesis. In contrast, we show that infected HPCs are refractory to TGF-β signaling as another HCMV miRNA, miR-UL22A, downregulates SMAD3, which is required for maintenance of latency. Our data suggest that latently expressed viral miRNAs manipulate stem cell homeostasis by inducing secretion of TGF-β while protecting infected HPCs from TGF-β-mediated effects on viral latency and reactivation. These observations provide a mechanism through which HCMV induces global myelosuppression following HSCT while maintaining lifelong infection in myeloid lineage cells."	"Platelet-derived factors impair placental chorionic gonadotropin beta-subunit synthesis. During histiotrophic nutrition of the embryo, maternal platelets may be the first circulating maternal cells that find their way into the placental intervillous space through narrow intertrophoblastic gaps within the plugs of spiral arteries. Activation of platelets at the maternal-fetal interface can influence trophoblast behavior and has been implicated in serious pregnancy pathologies. Here, we show that platelet-derived factors impaired expression and secretion of the human chorionic gonadotropin beta-subunit (βhCG) in human first trimester placental explants and the trophoblast cell line BeWo. Impaired βhCG synthesis was not the consequence of hampered morphological differentiation, as assessed by analysis of differentiation-associated genes and electron microscopy. Platelet-derived factors did not affect intracellular cAMP levels and phosphorylation of CREB, but activated Smad3 and its downstream-target plasminogen activator inhibitor (PAI)-1 in forskolin-induced BeWo cell differentiation. While TGF-β type I receptor inhibitor SB431542 did not restore impaired βhCG production in response to platelet-derived factors, Smad3 inhibitor SIS3 interfered with CREB activation, suggesting an interaction of cAMP/CREB and Smad3 signaling. Sequestration of transcription co-activators CBP/p300, known to bind both CREB and Smad3, may limit βhCG production, since CBP/p300 inhibitor C646 significantly restricted its forskolin-induced upregulation. In conclusion, our study suggests that degranulation of maternal platelets at the early maternal-fetal interface can impair placental βhCG production, without substantially affecting morphological and biochemical differentiation of villous trophoblasts. KEY MESSAGES: Maternal platelets can be detected on the surface of the placental villi and in intercellular gaps of trophoblast cell columns from gestational week 5 onwards. Platelet-derived factors impair hCG synthesis in human first trimester placenta. Platelet-derived factors activate Smad3 in trophoblasts. Smad3 inhibitor SIS3 interferes with forskolin-induced CREB signaling. Sequestration of CBP/p300 by activated Smad3 may limit placental hCG production."	"Application of pharmacogenomics and bioinformatics to exemplify the utility of human ex vivo organoculture models in the field of precision medicine. Here we describe a collaboration between industry, the National Health Service (NHS) and academia that sought to demonstrate how early understanding of both pharmacology and genomics can improve strategies for the development of precision medicines. Diseased tissue ethically acquired from patients suffering from chronic obstructive pulmonary disease (COPD), was used to investigate inter-patient variability in drug efficacy using ex vivo organocultures of fresh lung tissue as the test system. The reduction in inflammatory cytokines in the presence of various test drugs was used as the measure of drug efficacy and the individual patient responses were then matched against genotype and microRNA profiles in an attempt to identify unique predictors of drug responsiveness. Our findings suggest that genetic variation in CYP2E1 and SMAD3 genes may partly explain the observed variation in drug response."	"MicroRNA-30d-5p promotes ovarian granulosa cell apoptosis by targeting Smad2. Polycystic ovarian syndrome (PCOS) is one of the leading causes of female infertility. MicroRNA-30d-5p (miR-30d-5p) has been reported to be significantly increased during follicle stimulating hormone (FSH)-mediated progesterone secretion of cultured granulosa cells. However, its role in the proliferation and apoptosis of ovarian granulosa cells is unclear. The present study aimed to investigate the role of miR-30d-5p in the proliferation and apoptosis of ovarian granulosa cells. Bioinformatic analysis and dual-luciferase reporter assay were used to predict and confirm the direct target of miR-30d-5p. The levels of miR-30d-5p were detected via reverse transcription-quantitative PCR (RT-qPCR), cell proliferation was detected via an MTT assay and cell apoptosis was measured via flow cytometry. The levels of phosphorylated (p)-Smad2, Smad2, p-Smad3 and Smad3 were detected by performing a western blot assay or RT-qPCR. In the present results, Smad2 was identified as the direct and functional target of miR-30d-5p. Compared with the control and control plasmid groups, the Smad2 plasmid significantly enhanced Smad2 mRNA levels in rat ovarian granulosa cells, enhanced rat ovarian granulosa cell viability and reduced cell apoptosis. In addition, the results demonstrated that overexpression of miR-30d-5p significantly decreased the level of Smad2, the effect of which was reversed by the Smad2-plasmid. Furthermore, it was demonstrated that the enhanced expression of miR-30d-5p significantly inhibited ovarian granulosa cell proliferation and promoted cell apoptosis. Restoration of Smad2 reversed the effect of miR-30d-5p on ovarian granulosa cell proliferation and apoptosis. Transfection with miR-30d-5p mimics significantly decreased the expression of Smad2 and increased the relative p-Smad2/Smad2 and p-Smad3/Smad3 levels in ovarian granulosa cells, which was reversed by overexpressing Smad2. The present study demonstrated that the overexpression of miR-30d-5p reduced proliferation and induced the apoptosis of granulosa cells by targeting Smad2. The molecular mechanism of ovarian granulosa cell apoptosis may therefore be explained by the newly identified miR-30d-5p/Smad2 axis, which represents a novel potential treatment target for PCOS."	"Association of cord blood methylation with neonatal leptin: An epigenome wide association study. Neonatal adiposity is a risk factor for childhood obesity. Investigating contributors to neonatal adiposity is important for understanding early life obesity risk. Epigenetic changes of metabolic genes in cord blood may contribute to excessive neonatal adiposity and subsequent childhood obesity. This study aims to evaluate the association of cord blood DNA methylation patterns with anthropometric measures and cord blood leptin, a biomarker of neonatal adiposity. A cross-sectional study was performed on a multiethnic cohort of 114 full term neonates born to mothers without gestational diabetes at a university hospital. Cord blood was assayed for leptin and for epigenome-wide DNA methylation profiles via the Illumina 450K platform. Neonatal body composition was measured by air displacement plethysmography. Multivariable linear regression was used to analyze associations between individual CpG sites as well as differentially methylated regions in cord blood DNA with measures of newborn adiposity including anthropometrics (birth weight, fat mass and percent body fat) and cord blood leptin. False discovery rate was estimated to account for multiple comparisons. 247 CpG sites as well as 18 differentially methylated gene regions were associated with cord blood leptin but no epigenetic changes were associated with birth weight, fat mass or percent body fat. Genes of interest identified in this study are DNAJA4, TFR2, SMAD3, PLAG1, FGF1, and HNF4A. Epigenetic changes in cord blood DNA are associated with cord blood leptin levels, a measure of neonatal adiposity."	"TGF-β Signaling Induces the Expression of OPN in Blood Vessel Endothelial Cells. The mechanism of blood vessel formation and degeneration still remains unclear. Transforming growth factor-β1 (TGF-β1) signaling is a critical pathway in this progression and can induce multiple biological effects. Osteopontin (OPN) is involved in mineral metabolism and the inflammatory response associated with vascular calcification. To identify the relationship between TGF-β signaling pathway and OPN, we stimulated human vascular endothelial cells (HVECs) and human aortic endothelial cells (HAECs) using various concentration of TGF-β1 in vitro. As assessed by flow cytometry and western blots, apoptosis levels were significantly increased with TGF-β1 treatment. We also demonstrated that OPN increased in vitro with TGF-β signaling by western blot and quantitative real time polymerase chain reaction (qRT-PCR) analyses. The inhibitory phosphorylation of endothelial nitric-oxide synthase (eNOS) (Thr495) was also up-regulated by TGF-β signaling. Meanwhile, the anti-inflammatory factor Nrf2 and the activating phosphorylation of eNOS (Ser1177) were down-regulated. Taken together, our findings demonstrate that TGF-β signaling can induce the expression of OPN, which may play an important role in the dysfunction of the vascular wall."	"Salacia chinensis L. Stem Extract Exerts Antifibrotic Effects on Human Hepatic Stellate Cells Through the Inhibition of the TGF-β1-Induced SMAD2/3 Signaling Pathway. :Salacia chinensis L. (SC) stems have been used as an ingredient in Thai traditional medicine for treating patients with hepatic fibrosis and liver cirrhosis. However, there is no scientific evidence supporting the antifibrotic effects of SC extract. Therefore, this study aimed to determine the antifibrotic activity of SC stem extract in human hepatic stellate cell-line called LX-2. We found that upon TGF-β1 stimulation, LX-2 cells transformed to a myofibroblast-like phenotype with a noticeable increase in α-SMA and collagen type I production. Interestingly, cells treated with SC extract significantly suppressed α-SMA and collagen type I production and reversed the myofibroblast-like characteristics back to normal. Additionally, TGF-β1 also influenced the development of fibrogenesis by upregulation of MMP-2, TIMP-1, and TIMP-2 and related cellular signaling, such as pSmad2/3, pErk1/2, and pJNK. Surprisingly, SC possesses antifibrotic activity through the suppression of TGF-β1-mediated production of collagen type 1, α-SMA, and the phosphorylation status of Smad2/3, Erk1/2, and JNK. Taken together, the present study provides accumulated information demonstrating the antifibrotic effects of SC stem extract and revealing its potential for development for hepatic fibrosis patients."	"Activation of Uterine Smad3 Pathway Is Crucial for Embryo Implantation. Embryo implantation is a complicated physiological process tightly regulated by multiple biological molecules including growth factors. Transforming growth factor-betas (TGF-βs) and their most specific signal transduction factors, Smads, are expressed in the endometrium during the window of implantation. Recent researches indicated that Smad dependent TGF-β signaling may play an important role in the process of embryo implantation. In this study, we measured the expression of TGF-β1, TGF-β receptor type I (TβRI), Smad3 and p-Smad3 in the endometrium of mice and observed their elevation on day 4, 5 and 6 of pseudopregnancy. Then we administrated a specific Smad3 inhibitor (Sis3) into the uterine cavity of mice on day 3 of pregnancy. The results showed a reduction in insulin-like growth factor-1 (IGFBP-1) expression and the decreased number of implanted embryo after the administration. In addition, Sis3 was found to reduce the IGFBP-1 secretion in decidualized endometrial stromal cells. Taken all together, our findings demonstrated that TGF-β/Smad3 signaling is involved in the process of embryo implantation."	"Effects of thalidomide on Th17, Treg cells and TGF-β1/Smad3 pathway in a mouse model of systemic sclerosis. To evaluate the immune regulatory and anti-fibrosis function of thalidomide (Thal) in systemic sclerosis (SSc), we investigated the effects of Thal on: (a) Th17 and Treg cell production; (b) related factors expression; and (c) transforming growth factor (TGF)-β1/Smad3 pathway, using a mouse model of SSc. Forty female BALB/c mice were randomly divided into a normal control (NC) group, SSc group (bleomycin [BLM]-induced experimental SSc), BLM + Thal (10 mg/kg/day) group, BLM + Thal (20) group, and BLM + Thal (30) group. Thal was administered a day after BLM. At the end of the animal experiments, mouse tissues were collected for detection of pathological changes and hydroxyproline content. Flow cytometry, real-time polymerase chain reaction, enzyme-linked immunosorbent assay, immunohistochemistry, Western blot and other methods were used to measure Th17, Treg cell population and their related factors, as well as TGF-β1/Smad3 pathway expression. Thal treatment: (a) reduced skin, and pulmonary tissue fibrosis, inflammation score, and hydroxyproline content (P &lt; .001) in BLM-induced SSc mice; (b) reduced the percentages of Th17 cells and associated interleukin (IL)-17A expression (both P &lt; .05) but increased the percentages of Treg cells and its transcription factor Foxp3 expression (both P &lt; .05); (c) correlation analysis found positive correlations between Th17/Treg ratio, the inflammatory score of the skin and pulmonary tissues, hydroxyproline content, and type I collagen messenger RNA expression (r = .8546, .8656, .6902, .6807, .8118, and .8424, respectively, P &lt; .01); (d) Thal inhibited TGF-β1 expression and Smad3 phosphorylation (both P &lt; .05); (e) TGF-β1 was positively correlated with the IL-17A and Th17/Treg ratio (r = .5856, P = .005; r = .6684, P = .0107, respectively). Thal can effectively prevent skin and pulmonary tissue fibrosis in a mouse model of SSc through the TGF-β1/Smad3 signaling pathway and can rectify the distortion of the Th17/Treg balance in SSc by potentially regulating Th17 and Treg cell production, as well as their related factors expression."	"Parthenolide, an NF-κB inhibitor, alleviates peritoneal fibrosis by suppressing the TGF-β/Smad pathway. Transforming growth factor (TGF)-β/Smad signalling plays a central role in the pathogenesis of peritoneal fibrosis related to peritoneal dialysis (PD). Parthenolide (PTL), a naturally occurring phytochemical, is isolated from the shoots of feverfew (Tanacetum parthenium) and displays analgesia, anti-inflammation and anticancer activities. In this study, we examined the therapeutic potential of PTL on PD-related peritoneal fibrosis induced by daily intraperitoneal injection of 4.25% dextrose-containing PD fluid (PDF) in vivo and TGF-β1-induced epithelial-mesenchymal transition (EMT) in vitro. PTL was administered daily before PDF injection or after 14 days of PDF injection. Both PTL treatments showed a protective effect on peritoneal fibrosis and prevented peritoneal dysfunction. Similarly, PTL suppressed the expression of fibrotic markers (fibronectin and collagen I) and restored the expression of the epithelial marker (E-cadherin) in TGF-β1-treated HMrSV5 cells. Furthermore, PTL inhibited TGF-β1-induced Smad2 and Smad3 phosphorylation and nuclear translocation but did not influence Smad1/5/9 phosphorylation or activate other downstream signalling pathways of TGF-β1, including AKT, extracellular signal-regulated kinase (ERK) or p38. In conclusion, PTL treatment may represent an effective and novel therapy for PD-associated peritoneal fibrosis by suppressing the TGF-β/Smad pathway."	"Betaglycan (TβRIII) is a Key Factor in TGF-β2 Signaling in Prepubertal Rat Sertoli Cells. Transforming growth factor-βs (TGF-βs) signal after binding to the TGF-β receptors TβRI and TβRII. Recently, however, betaglycan (BG) was identified as an important co-receptor, especially for TGF-β2. Both proteins are involved in several testicular functions. Thus, we analyzed the importance of BG for TGF-β1/2 signaling in Sertoli cells with ELISAs, qRT-PCR, siRNA silencing and BrdU assays. TGF-β1 as well as TGF-β2 reduced shedding of membrane-bound BG (mBG), thus reducing the amount of soluble BG (sBG), which is often an antagonist to TGF-β signaling. Treatment of Sertoli cells with GM6001, a matrix metalloproteinases (MMP) inhibitor, also counteracted BG shedding, thus suggesting MMPs to be mainly involved in shedding. Interestingly, TGF-β2 but not TGF-β1 enhanced secretion of tissue inhibitor of metalloproteinases 3 (TIMP3), a potent inhibitor of MMPs. Furthermore, recombinant TIMP3 attenuated BG shedding. Co-stimulation with TIMP3 and TGF-β1 reduced phosphorylation of Smad3, while a combination of TIMP3/TGF-β2 increased it. Silencing of BG as well as TIMP3 reduced TGF-β2-induced phosphorylation of Smad2 and Smad3 significantly, once more highlighting the importance of BG for TGF-β2 signaling. In contrast, this effect was not observed with TIMP3/TGF-β1. Silencing of BG and TIMP3 decreased significantly Sertoli cell proliferation. Taken together, BG shedding serves a major role in TGF-β2 signaling in Sertoli cells."	"GdCl3 attenuates the glomerular sclerosis of streptozotocin (STZ) induced diabetic rats via inhibiting TGF-β/Smads signal pathway. Diabetic nephropathy (DN) is the most serious end-stage renal disease which characterized by renal glomerular sclerosis including glomerular hypertrophy, glomerular basement membrane (GBM) thickening, mesangial expansion and renal fibrosis. TGF-β/Smads signal pathway plays a crucial role in the development of renal fibrosis. In this study, we found that GdCl3 which was an agonist of Calcium-sensing receptor (CaSR) could repress the activation of TGF-β/Smads signal pathway induced by TGF-β1 or high glucose and then alleviated the accumulation of extracellular matrix (ECM) in mesangial cells and the kidney of type1 diabetic rats. Further study indicated that GdCl3 could induce the binding of CaSR and TβR II and then both of these two receptors translocated from cell membrane to cytoplasm, in this case, TβR II on the cell membrane was decreased and then desensitized to the stimulation of its ligand TGF-β1, so that the activation of its downstream factors such as Smad2 and Smad3 were blocked, finally, ECM expression in mesangial cells were inhibited. We concluded that GdCl3 could alleviate the accumulation of ECM in mesangial cells via antagonizing TGF-β/Smads signal pathway in diabetes mellitus."	"Albumin self-modified liposomes for hepatic fibrosis therapy via SPARC-dependent pathways. Activated hepatic stellate cells (HSCs) have a central role in the progression of liver fibrosis and express a large amount of secreted protein, acidic and rich in cysteine (SPARC), a specific protein-binding protein. In this study, we reported the preparation and evaluation of naringenin (Nar) -loaded albumin self-modified liposomes (NaAlLs), which delivered Nar, a specific Smad3 inhibitor that blocked the TGF-β/Smad3 signaling pathway and played an anti-fibrosis role. After a series of characterization, it was found that NaAlLs had favorable dispersion (PDI &lt; 0.15) with an average particle size of about 120 nm and high entrapment efficiency (&gt;85%), albumin coated the surface of liposomes or embedded in phospholipid bilayer by interaction with the encapsulated naringenin and phospholipid molecules during the preparation of liposomes. The amount of albumin modified to the surface of NaAlLs by this method is not only more than that of the physical adsorption method, but also the binding force between albumin and liposomes is stronger. The albumin modified to the surface of NaAlLs greatly reduced the aggregation of liposomes and drug leakage and increased the stability of liposomes. More importantly, the uptake of NaAlLs by activated HSCs was 1.5 times higher than that of Nar-loaded liposomes (NaLs), suggesting that NaAlLs specifically increased targeting of activated HSCs via albumin and SPARC-dependent pathways. As expected, NaAlLs was more effective in improving liver fibrosis than the NaLs or the inclusion complex solution of Nar and Hydroxypropyl-β-cyclodextrin (NaICS). The results suggested that NaAlLs was a promising drug delivery system, which could target drug delivery to activated HSC for the treatment of liver fibrosis."	"Lysine-specific demethylase-1 regulates fibroblast activation in pulmonary fibrosis via TGF-β1/Smad3 pathway. Pulmonary fibrosis is a progressive and fatal fibrotic lung disease with mysterious pathogenesis and limited effective therapies. The aberrantly activated lung myofibroblasts with resultant excessive accumulation of extracellular matrix is a central event in the progression of pulmonary fibrosis. Lysine-specific demethylase 1 (LSD1) has been suggested to epigenetically regulate cell differentiation, migration and invasion in tumor microenvironment. However, its function in pulmonary fibrosis remains unclear. The present study aimed to investigate the potential effect and underlying mechanisms of LSD1 in pulmonary fibrosis. Here, we found that LSD1 expression was elevated in lung tissues of mice with bleomycin-induced pulmonary fibrosis and lung fibroblasts treated with transforming growth factor-β1 (TGF-β1). In vivo knockdown of LSD1 by lentiviral shRNA transfection attenuated pulmonary fibrosis in mice, as evidenced by improved lung morphology, decreased lung coefficient and collagen secretion, and down-regulated α-SMA, collagen type I alpha and fibronectin expression in lungs. Additionally, in vitro knockdown of LSD1 inhibited the differentiation of fibroblasts to myofibroblasts, and decreased myofibroblast migration. By further mechanistic analysis, we demonstrated that knockdown of LSD1 prevented fibroblast--to-myofibroblast differentiation and subsequent pulmonary fibrosis by suppressing TGF-β1/Smad3 signaling pathway through modulation of a balance between histone H3 lysine 9 methylation and histone H3 lysine 4 methylation. Together, our data indicate that LSD1 activation contributes to pulmonary myofibroblast differentiation and fibrosis by targeting TGF-β1/Smad3 signaling, and suggest LSD1 as a therapeutic target for the treatment of pulmonary fibrosis."	"CD155 contributes to the mesenchymal phenotype of triple-negative breast cancer. Patients with triple-negative breast cancer (TNBC) lack molecular targets and have an unfavorable outcome. CD155 is overexpressed in human cancers, but whether it plays a role in TNBC is unexplored. Here we found that CD155 was enriched in both TNBC cell lines and tumor tissues. High CD155 expression was related to poor prognosis of breast cancer patients. CD155 was associated with a mesenchymal phenotype. CD155 knockdown induced a mesenchymal-epithelial transition in TNBC cells, and suppressed TNBC cell migration, invasion and metastasis in vitro and in vivo. Mechanistically, CD155 cross-talked with oncogenic IL-6/Stat3 and TGF-β/Smad3 pathways. Moreover, CD155 knockdown inhibited TNBC cell growth and survival. Taken together, these data indicate that CD155 contributes to the aggressive behavior of TNBC; targeting CD155 may be beneficial to these patients."	"Glucocorticoids counteract hypertrophic effects of myostatin inhibition in dystrophic muscle. Duchenne muscular dystrophy (DMD) is a devastating genetic muscle disease resulting in progressive muscle degeneration and wasting. Glucocorticoids, specifically prednisone/prednisolone and deflazacort, are commonly used by DMD patients. Emerging DMD therapeutics include those targeting the muscle-wasting factor, myostatin (Mstn). The aim of this study was to investigate how chronic glucocorticoid treatment impacts the efficacy of Mstn inhibition in the D2.mdx mouse model of DMD. We report that chronic treatment of dystrophic mice with prednisolone (Pred) causes significant muscle wasting, entailing both activation of the ubiquitin-proteasome degradation pathway and inhibition of muscle protein synthesis. Combining Pred with Mstn inhibition, using a modified Mstn propeptide (dnMstn), completely abrogates the muscle hypertrophic effects of Mstn inhibition independently of Mstn expression or SMAD3 activation. Transcriptomic analysis identified that combining Pred with dnMstn treatment affects gene expression profiles associated with inflammation, metabolism, and fibrosis. Additionally, we demonstrate that Pred-induced muscle atrophy is not prevented by Mstn ablation. Therefore, glucocorticoids interfere with potential muscle mass benefits associated with targeting Mstn, and the ramifications of glucocorticoid use should be a consideration during clinical trial design for DMD therapeutics. These results have significant implications for past and future Mstn inhibition trials in DMD."	"What's new in fibroblastic tumors? Over the last 10 years, a number of advances have been made in our understanding of fibroblastic and myofibroblastic tumors. The rapidly evolving field of molecular diagnostics has resulted in the recognition of new entities and better understanding of tumor pathogenesis, while careful clinicopathologic correlative analyses have led to improvements in modeling tumor behavior. This review will discuss new and emerging entities in fibroblastic neoplasia and provide updates on the pathogenesis, diagnosis, and prognostication of these diverse and challenging tumors."	"[Inhibition of the TGF-β/Smad3 signaling pathway by SB431542: A study of the intervention effect of SB431542 on silicotic fibrosis in rats]. Objective: To investigate the intervention effect of SB431542, which inhibits the TGF-β/Smad3 signaling pathway, on silicotic fibrosis in rats. Methods: A total of 40 specific pathogen-free Sprague-Dawley rats were divided into normal saline control group, model group, SB431542 inhibitor group, and SB431542 inhibitor control group using a random number table, with 10 rats in each group. All rats except those in the normal saline control group were given non-exposed single intratracheal instillation of free silicon dioxide dust suspension 1 mL (50 mg/mL) ; the rats in the SB431542 inhibitor group were given intraperitoneal injection of SB431542 (5 mg/kg) on days 7 and 30 after dust exposure, those in the SB431542 inhibitor control group were given intraperitoneal injection of SB431542 cosolvent (5 mg/kg) on days 7 and 30 after dust exposure, and those in the normal saline control group were given intratracheal instillation of an equal volume of normal saline (5 mg/kg). On day 60 after dust exposure, the paraffin-embedded section of the right upper lobe of lung was collected for HE staining; the left upper lobe of lung was collected to measure the mRNA levels of fibronectin (FN) , collagen type I (COL-I) , and collagen type III (COL-III) by quantitative real-time PCR; the right inferior lobe of lung was collected to measure the protein levels of FN, COL-I, COL-III, phosphorylated Smad3 (p-Smad3) , and Smad3. Results: Compared with the normal saline control group, the model group had nodules with various sizes in lung tissue, with rupture of some alveolar septa, emphysema changes, and pulmonary interstitial fibrosis, as well as significant increases in the mRNA expression of FN, COL-I, and COL-III and the protein expression of FN, COL-I, COL-III, p-Smad3, and Smad3 in lung tissue (P&lt;0.05) . Compared with the SB431542 inhibitor control group, the SB431542 inhibitor group had a relatively complete structure of lung tissue without marked nodules and with a small amount of exudate in alveolar space and the lumen of bronchioles, as well as significant reductions in the mRNA expression of FN, COL-I, and COL-III and the protein expression of FN, COL-I, COL-III, p-Smad3, and Smad3 in lung tissue (P&lt;0.05) . There were no significant differences in the mRNA expression of FN, COL-I, and COL-III and the protein expression of FN, COL-I, COL-III, p-Smad3, and Smad3 between the model group and the SB431542 inhibitor control group (P&gt;0.05) . Conclusion: SB431542 exerts an intervention effect on silicotic fibrosis by blocking the TGF-β/Smad3 signaling pathway and reducing the expression of the downstream fibrosis factors FN, COL-I, and COL-III. 目的: 探索SB431542抑制转化生长因子β(TGF-β)/Smad3信号通路在大鼠矽肺纤维化中的干预作用。 方法: 将40只SPF级SD大鼠按随机数字表法分为4组:生理盐水对照组、模型组、SB431542抑制剂组和SB431542抑制剂对照组,每组10只。除生理盐水对照组外,其他3组采用非暴露气管注入法一次性气管内注入游离二氧化硅(SiO(2))粉尘悬浊液1 ml(50 mg/ml);SB431542抑制剂组于染尘后第7、30天腹腔注射(5 mg/kg)SB431542;SB431542抑制剂对照组同样于染尘后第7、30天腹腔注射(5 mg/kg)SB431542助溶剂;生理盐水对照组气管内注入等量生理盐水(5 mg/kg)。在染尘后第60天,取大鼠右上叶肺组织石蜡包埋切片行苏木素-伊红(HE)染色;取左上叶肺组织用于实时荧光定量聚合酶链反应(qPCR)法检测纤维黏连蛋白(FN)和胶原蛋白(COL)Ⅰ、COLⅢ mRNA水平;取右肺下叶经蛋白免疫印记(Western blot)法检测肺组织中FN、COLⅠ、COLⅢ、磷酸化Smad3(p-Smad3)和Smad3蛋白水平。 结果: 与生理盐水对照组比较,模型组大鼠肺组织有大小不等的结节状结构,部分肺泡间隔断裂,呈肺气肿改变,肺间质纤维化,肺组织FN、COLⅠ、COLⅢ mRNA表达水平均升高,FN、COLⅠ、COLⅢ、p-Smad3和Smad3蛋白表达水平均升高,差异均有统计学意义(P&lt;0.05);与SB431542抑制剂对照组比较,SB431542抑制剂组肺组织基本结构完整,未见明显结节,肺泡腔及细支气管腔内可见少量渗出物,肺组织FN、COLⅠ、COLⅢ mRNA表达水平均降低,FN、COLⅠ、COLⅢ、p-Smad3和Smad3蛋白表达水平均降低,差异均有统计学意义(P&lt;0.05);模型组和SB431542抑制剂对照组各因子mRNA和蛋白水平差异均无统计学意义(P&gt;0.05)。 结论: SB431542可能通过阻断TGF-β/Smad3信号通路降低下游纤维化因子FN、COLⅠ、COLⅢ的表达,进而干预大鼠矽肺纤维化过程。."	"Qishen Granule Improved Cardiac Remodeling via Balancing M1 and M2 Macrophages. Macrophages play a pivotal role in myocardial remodeling (MR) process which could eventually lead to heart failure. Splenic monocytes could be mobilized and recruited under inflammatory conditions and differentiated into different types of macrophages in heart tissues. Inflammatory M1 macrophages could aggravate tissue damage whereas M2 macrophages could promote angiogenesis and tissue repair process. Unbalanced ratio of M1/M2 macrophages may eventually lead to adverse remodeling. Therefore, regulating differentiation and activities of macrophages are potential strategies for the management of myocardial remodeling. Qishen Granule (QSG) is an effective Chinese medicine for treating heart failure. Our previous studies demonstrated that QSG could inhibit myocardial fibrosis through regulating secretion of cytokines and activation of macrophages. However, the detailed effects of QSG on had not been elucidated yet. In this study, we aimed to explore the effect of QSG on the release of splenic monocytes, the recruitment of monocytes into heart tissues and the differentiation of macrophages under ischemic conditions. Our results showed that QSG could suppress the release of monocytes from the spleen and recruitment of monocytes to heart tissues via inhibiting splenic angiotensin (Ang) II/AT1-cardiac monocyte chemotactic protein (MCP)-1/CC chemokine receptor 2 (CCR2) pathway. The anti-fibrotic effect of QSG was exerted by inhibiting M1 macrophage-activated transforming growth factor (TGF)-β1/Smad3 pathway. Meanwhile, QSG could promote angiogenesis by promoting differentiation of M1 macrophages into M2 macrophages. Our results suggest that compounds of Chinese medicine have synergistic effects on cardiac and splenic organs through regulating differentiation of monocytes/macrophages in inhibiting myocardial remodeling."	"Icariside II improves myocardial fibrosis in spontaneously hypertensive rats by inhibiting collagen synthesis. We aimed to investigate the effects of icariside II (ICS II) on myocardial fibrosis in spontaneously hypertensive rats (SHRs) and to explore the possible mechanisms. We used SHRs as animal models, and we administered ICS II (4, 8 or 16 mg/kg) orally by gavage for 12 consecutive weeks (Fu et al., Biomed Pharmacother 2018; 100: 64). The left ventricular morphology of the rats was observed using haematoxylin-eosin (HE) staining. The occurrence of myocardial interstitial fibrosis was detected by Masson's trichrome staining. The protein levels of alpha smooth muscle actin (α-SMA), Collagen I, III, matrix metalloproteinases 2 and 9 (MMP-2 and MMP-9, respectively), tissue inhibitor of metalloproteinase 1 (TIMP-1), transforming growth factor-β1 (TGF-β1), phospho-Smad2 (p-Smad2), phospho-Smad3 (p-Smad3) and phospho-p38 (p-p38) were examined by Western blotting. The results suggested that ICS II improved myocardial interstitial and perivascular collagen deposition and decreased Collagen I/III and α-SMA expression. ICS II (8 and 16 mg/kg) downregulated the expression of MMP-2 and MMP9 and upregulated the expression of TIMP1. In addition, the protein levels of p-Smad2/3, TGF-β1 and p-p38 were decreased by ICS II treatment. The results suggest that ICS II can inhibit the expression of Collagen I and Collagen III through the MMP/TIMP-1 and TGF-β1/Smad2,3/p-p38 signalling pathways and that it has therapeutic effects on myocardial fibrosis."	"Steroidogenic acute regulatory protein/aldosterone synthase mediates angiotensin II-induced cardiac fibrosis and hypertrophy. Aldosterone produced in adrenal glands by angiotensin II (Ang II) is known to elicit myocardial fibrosis and hypertrophy. This study was designed to test the hypothesis that Ang II causes cardiac morphological changes through the steroidogenic acute regulatory protein (StAR)/aldosterone synthase (AS)-dependent aldosterone synthesis primarily initiated in the heart. Sprague-Dawley rats were randomized to following groups: Ang II infusion for a 4-week period, treatment with telmisartan, spironolactone or adrenalectomy during Ang II infusion. Sham-operated rats served as control. Relative to Sham rats, Ang II infusion significantly increased the protein levels of AT1 receptor, StAR, AS and their tissue expression in the adrenal glands and heart. In coincidence with reduced aldosterone level in the heart, telmisartan, an AT1 receptor blocker, significantly down-regulated the protein level and expression of StAR and AS. Ang II induced changes in the expression of AT1/StAR/AS were not altered by an aldosterone receptor antagonist spironolactone. Furthermore, Ang II augmented migration of macrophages, protein level of TGFβ1, phosphorylation of Smad2/3 and proliferation of myofibroblasts, accompanied by enhanced perivascular/interstitial collagen deposition and cardiomyocyte hypertrophy, which all were significantly abrogated by telmisartan or spironolactone. However, adrenalectomy did not fully suppress Ang II-induced cell migration/proliferation and fibrosis/hypertrophy, indicating a role of aldosterone synthesized within the heart in pathogenesis of Ang II induced injury. These results indicate that myocardial fibrosis and hypertrophy stimulated by Ang II is associated with tissue-specific activation of aldosterone synthesis, primarily mediated by AT1/StAR/AS signaling pathways."	"Upregulation Of miR-149-3p Suppresses Spinal Chordoma Malignancy By Targeting Smad3. Dysregulation of miRNAs plays an important role in the malignancy of different tumors including chordoma. Expression of miR-149-3p was earlier reported to be downregulated in chordoma tissue. However, its biological role remains to be unrevealed in chordoma, especially in spinal chordoma. Expression of miR-149-3p and Smad3 was detected by RT-qPCR and Western blot. Chordoma malignancy was evaluated by cell proliferation, migration, invasion, and apoptosis using MTT assay, transwell assay, flow cytometry analyzing apoptosis rate, and Western blot-determined expression of Bcl-2, Bax, and cleaved caspase 3, respectively. The target binding between miR-149-3p and Smad3 was predicted by TargetScan Human website and confirmed by luciferase reporter assay and RNA immunoprecipitation. Xenograft tumors were generated, and expression of miR-149-3p and Smad3 was investigated in vivo. miR-149-3p was downregulated in spinal chordoma tissues and cells, and its overexpression promoted chordoma cell apoptosis and inhibited proliferation, migration, and invasion in U-CH1 and MUG-Chor1 cells. Unexpectedly, Smad3 was a downstream target of miR-149-3p and negatively correlated with miR-149-3p expression in chordoma tissues. Besides, Smad3 was upregulated in chordoma tissues and its silencing had a similar effect as miR-149-3p overexpression in U-CH1 and MUG-Chor1 cells. Moreover, Smad3 upregulation could partially reverse the tumor-suppressive effect of miR-149-3p in chordoma cells. In vivo, the tumorigenesis of U-CH1 and MUG-Chor1 cells was impaired by upregulated miR-149-3p through decreasing Smad3 expression. miR-149-3p could serve as a tumor suppressor in spinal chordoma through targeting and downregulating Smad3."	"Negative Control of Cell Migration by Rac1b in Highly Metastatic Pancreatic Cancer Cells Is Mediated by Sequential Induction of Nonactivated Smad3 and Biglycan. Expression of the small GTPase, Ras-related C3 botulinum toxin substrate 1B (RAC1B), a RAC1-related member of the Rho GTPase family, in tumor tissues of pancreatic ductal adenocarcinoma (PDAC) has been shown previously to correlate positively with patient survival, but the underlying mechanism(s) and the target genes involved have remained elusive. Screening of a panel of established PDAC-derived cell lines by immunoblotting indicated that both RAC1B and Mothers against decapentaplegic homolog 3 (SMAD3) were more abundantly expressed in poorly metastatic and well-differentiated lines as opposed to highly metastatic, poorly differentiated ones. Both siRNA-mediated RAC1B knockdown in the transforming growth factor (TGF)-β-sensitive PDAC-derived cell lines, Panc1 and PaCa3, or CRISPR/Cas-mediated knockout of exon 3b of RAC1 in Panc1 cells resulted in a dramatic decrease in the expression of SMAD3. Unexpectedly, the knockdown of SMAD3 reproduced the promigratory activity of a RAC1B knockdown in Panc1 and PaCa3, but not in TGF-β-resistant BxPC3 and Capan1 cells, while forced expression of SMAD3 alone was able to mimic the antimigratory effect of ectopic RAC1B overexpression in Panc1 cells. Moreover, overexpression of SMAD3 was able to rescue Panc1 cells from the RAC1B knockdown-induced increase in cell migration, while knockdown of SMAD3 prevented the RAC1B overexpression-induced decrease in cell migration. Using pharmacological and dominant-negative inhibition of SMAD3 C-terminal phosphorylation, we further show that the migration-inhibiting effect of SMAD3 is independent of its activation by TGF-β. Finally, we provide evidence that the antimigratory program of RAC1B-SMAD3 in Panc1 cells is executed through upregulation of the migration and TGF-β inhibitor, biglycan (BGN). Together, our data suggest that a RAC1B-SMAD3-BGN axis negatively controls cell migration and that SMAD3 can induce antimigratory genes, i.e., BGN independent of its role as a signal transducer for TGF-β. Therefore, targeting this novel pathway for activation is a potential therapeutic strategy in highly metastatic PDAC to interfere with invasion and metastasis."	"PPARγ is a gatekeeper for extracellular matrix and vascular cell homeostasis: beneficial role in pulmonary hypertension and renal/cardiac/pulmonary fibrosis. Pulmonary arterial hypertension (PAH) is characterized by pulmonary arterial endothelial cell (PAEC) dysfunction and apoptosis, pulmonary arterial smooth muscle cell (PASMC) proliferation, inflammation, vasoconstriction, and metabolic disturbances that include disrupted bone morphogenetic protein receptor (BMPR2)-peroxisome proliferator-activated receptor gamma (PPARγ) axis and DNA damage. Activation of PPARγ improves many of these mechanisms, although erroneous reports on potential adverse effects of thiazolidinedione (TZD)-class PPARγ agonists reduced their clinical use in the past decade. Here, we review recent findings in heart, lung, and kidney research related to the pathobiology of vascular remodeling and tissue fibrosis, and also potential therapeutic effects of the PPARγ agonist pioglitazone. Independent of its metabolic effects (improved insulin sensitivity and fatty acid handling), PPARγ activation rescues BMPR2 dysfunction, inhibits TGFβ/Smad3/CTGF and TGFβ/pSTAT3/pFoxO1 pathways, and induces the PPARγ/apoE axis, inhibiting vascular remodeling. PPARγ activation dampens mtDNA damage via PPARγ/UBR5/ATM pathway, improves function of endothelial progenitor cells (EPCs), and decrease renal fibrosis by repressing TGFβ/pSTAT3 and TGFβ/EGR1. Pharmacological PPARγ activation improves many hallmarks of PAH, including dysfunction of BMPR2-PPARγ axis, PAEC, PASMC, EPC, mitochondria/metabolism, and inflammation. Recent randomized controlled trials, including IRIS (Insulin Resistance Intervention After Stroke Trial), emphasize the beneficial effects of PPARγ agonists in PAH patients, leading to recent revival for clinical use."	"Effect of c-Ski on atrial remodelling in a rapid atrial pacing canine model. Atrial fibrosis is an important factor in the initiation and maintenance of atrial fibrillation (AF); therefore, understanding the pathogenesis of atrial fibrosis may reveal promising therapeutic targets for AF. In this study, we successfully established a rapid atrial pacing canine model and found that the inducibility and duration of AF were significantly reduced by the overexpression of c-Ski, suggesting that this approach may have therapeutic effects. c-Ski was found to be down-regulated in the atrial tissues of the rapid atrial pacing canine model. We artificially up-regulated c-Ski expression with a c-Ski-overexpressing adenovirus. Haematoxylin and eosin, Masson's trichrome and picrosirius red staining showed that c-Ski overexpression alleviated atrial fibrosis. Furthermore, we found that the expression levels of collagen III and α-SMA were higher in the groups of dogs subjected to right-atrial pacing, and this increase was attenuated by c-Ski overexpression. In addition, c-Ski overexpression decreased the phosphorylation of smad2, smad3 and p38 MAPK (p38α and p38β) as well as the expression of TGF-β1 in atrial tissues, as shown by a comparison of the right-atrial pacing + c-Ski-overexpression group to the control group with right-atrial pacing only. These results suggest that c-Ski overexpression improves atrial remodelling in a rapid atrial pacing canine model by suppressing TGF-β1-Smad signalling and p38 MAPK activation."	"Protein arginine methyltransferase 1 mediates renal fibroblast activation and fibrogenesis through activation of Smad3 signaling. Protein arginine methyltransferase 1 (PRMT1), which primarily causes asymmetric arginine methylation of histone and nonhistone proteins, has been found to activate gene expression and mediate multiple pathological processes. Its role in renal fibrosis, however, remains unclear. In the present study, we observed that PRMT1 and its specific epigenetic marker, asymmetric di-methylated histone 4 arginine 3 (H4R3Me2a), were highly expressed in cultured renal interstitial fibroblasts. Treatment of PRMT1 with AMI-1, a selective inhibitor of PRMT1, or silencing PRMT1 with siRNA inhibited serum-induced and transforming growth factor (TGF)-β1-induced expression of α-smooth muscle actin (α-SMA) and collagen type I, two hallmarks of renal fibroblast activation, in a dose-dependent and time-dependent manner. In a murine model of renal fibrosis induced by unilateral ureteral obstruction, PRMT1 expression and H4R3Me2a were also upregulated, which was coincident with increased expression of α-SMA, collagen type I, and fibronectin. Administration of AMI-1 reduced PRMT1 and H4R3Me2a expression, attenuated extracellular matrix protein deposition, and inhibited renal fibroblast activation and proliferation. Moreover, AMI-1 treatment inhibited Smad3 phosphorylation and TGF-β receptor I expression but prevented Smad7 downregulation both in the kidney after unilateral ureteral obstruction injury and in cultured renal interstitial fibroblasts exposed to TGF-β1. Collectively, these results demonstrate that PRMT1 may mediate renal fibroblast activation and renal fibrosis development through activation of the TGF-β/Smad3 signaling pathway. They also suggest that PRMT1 inhibition may be a potential therapeutic approach for the treatment of fibrotic kidney disease."	"Spleen Tyrosine Kinase (SYK) in the Progression of Peritoneal Fibrosis Through Activation of the TGF-β1/Smad3 Signaling Pathway. BACKGROUND Long-term exposure to hypertonic and high glucose in peritoneal dialysis fluid can result in peritoneal fibrosis. Spleen tyrosine kinase (SYK) has a role in inflammation and fibrosis. This study aimed to investigate the role of SYK in an in vivo rat model of peritoneal fibrosis and in rat peritoneal mesothelial cells (PMCs) in vitro and to investigate the underlying mechanisms. MATERIAL AND METHODS Sprague-Dawley rats (N=24) were randomized into the sham control group (N=6); the peritoneal fibrosis group (N=6) treated with intraperitoneal chlorhexidine digluconate; the SYK inhibitor group (N=6), treated with chlorhexidine digluconate and fostamatinib; and the TGF-ß inhibitor group (N=6), treated with chlorhexidine digluconate and LY2109761. The rat model underwent daily intraperitoneal injection with 0.5 ml of 0.1% chlorhexidine digluconate. Rat peritoneal mesothelial cells (PMCs) were cultured in vitro in high glucose. SYK expression was measured by quantitative reverse transcription-polymerase chain reaction (qRT-PCR) and Western blot. Enzyme-linked immunosorbent assay (ELISA) and qRT-PCR measured inflammatory mediators. Transforming growth factor-ß1 (TGF-ß1) and Smad3 were detected by Western blot. Short hairpin RNA (shRNA) was used to target the SYK gene. RESULTS SYK was upregulated in the rat model of peritoneal fibrosis and was induced rat PMCs cultured in high glucose. Knockdown of SYK and inhibition of TGF-ß1 significantly reduced fibrosis and inflammation. Findings in the in vivo rat model confirmed that SYK mediated peritoneal fibrosis by regulating TGF-ß1/Smad3 signaling. CONCLUSIONS In a rat model and in rat PMCs, expression of SYK increased peritoneal fibrosis through activation of the TGF-ß1/Smad3 signaling pathway."	"DNA-PKcs Mediates An Epithelial-Mesenchymal Transition Process Promoting Cutaneous Squamous Cell Carcinoma Invasion And Metastasis By Targeting The TGF-β1/Smad Signaling Pathway. DNA-dependent protein kinase catalytic subunit (DNA-PKcs) has attracted extensive attention in various types of malignant tumors. However, the role of DNA-PKcs in cutaneous squamous cell carcinoma (cSCC) development has not been elucidated. In this study, we investigated the role of DNA-PKcs in cSCC and the molecular mechanisms of TGF-β1-induced cSCC progression mediated by DNA-PKcs. We performed bioinformatic analysis and RT-PCR to examine the DNA-PKcs expression level in cSCC. Then, we downregulated DNA-PKcs using a DNA-PK-specific inhibitor or small interfering RNA (siRNA) to explore the effects of DNA-PKcs on SCL-1 cell migration and invasion. To further investigate the mechanism by which DNA-PKcs promotes cSCC progression, TGF-β1 and the TGF-β receptor (TGF-βR) I/II dual inhibitor LY2109761 were used to examine whether DNA-PKcs participates in TGF-β1/Smad signaling. DNA-PKcs expression was upregulated in cSCC. DNA-PK inhibition or expression knockdown resulted in inhibited migration and invasion and altered epithelial-mesenchymal transition (EMT) marker expression patterns in SCL-1 cells. Importantly, TGF-β1 mediated EMT induction in cSCC cells, and DNA-PKcs was identified as a TGF-β1-responsive gene. TGF-β1 promoted DNA-PKcs transcription, and DNA-PKcs enhanced the TGF-β1-induced EMT program involved in cSCC invasion and metastasis by phosphorylating Smad3. This study is the first to show that DNA-PKcs mediates EMT to promote cSCC aggressiveness by targeting the TGF-β1/Smad signaling pathway, which provides insight into how DNA-PKcs impacts cSCC progression and identifies a new therapeutic target."	"Long noncoding RNA LINC00958 accelerates the proliferation and matrix degradation of the nucleus pulposus by regulating miR-203/SMAD3. Emerging evidence suggests that long noncoding RNAs (lncRNAs) play important roles in the development of intervertebral disc degeneration (IDD). LncRNA LINC00958 has recently been shown to play crucial roles in the development of tumors. However, the role of LINC00958 in IDD remains unclear. We showed that the expression of lncRNA LINC00958 was upregulated in degenerative NP samples, and LINC00958 expression increased gradually along with the grade of exacerbation of disc degeneration. Ectopic expression of LINC00958 promoted nucleus pulposus (NP) cell proliferation, inhibited aggrecan and Col II expression and promoted MMP-2 and MMP-13 expression. In addition, we showed that miR-203 expression was downregulated in degenerative NP samples, and miR-203 expression reduced gradually along with the grade of exacerbation of disc degeneration. Moreover, we demonstrated that the expression of miR-203 was inversely related with LINC00958 expression in NP samples. Ectopic expression of miR-203 inhibited NP cell growth and inhibited ECM degradation. Furthermore, we showed that ectopic expression of miR-203 suppressed the luciferase activity of the wild-type LINC00958 3'-UTR but not the mutant LINC00958 3'-UTR. Elevated expression of LINC00958 inhibited the expression of miR-203 and promoted the expression of SMAD3. In addition, we demonstrated that lncRNA LINC00958 exerted its function by targeting miR-203 in the NP cells. These data suggested that dysregulated lncRNA LINC00958 expression might play an important role in the development of IDD."	"Over-Expression of Inhibitor of Differentiation 2 Attenuates Post-Infarct Cardiac Fibrosis Through Inhibition of TGF-β1/Smad3/HIF-1α/IL-11 Signaling Pathway. Background: Cardiac fibrosis after myocardial infarction mainly causes cardiac diastolic and systolic dysfunction, which results in fatal arrhythmias or even sudden death. Id2, a transcriptional repressor, has been shown to play an important role in the development of fibrosis in various organs, but its effects on cardiac fibrosis remain unclear. This study aimed to explore the effects of Id2 on cardiac fibrosis after myocardial infarction and its possible mechanisms. Methods: This study was performed in four experimental groups: control group, treatment group (including TGF-β1, hypoxia or MI), treatment+GFP group and treatment+Id2 group. In vitro anoxic and fibrotic models were established by subjecting CFs or NRVMs to a three-gas incubator or TGF-β1, respectively. An animal myocardial infarction model was established by ligating of the left anterior descending coronary artery followed by directly injecting of Id2 adenovirus into the myocardial infarct's marginal zone. Results: The results showed that Id2 significantly improved cardiac EF and attenuated cardiac hypertrophy. The mRNA and protein levels of α-SMA, Collagen I, Collagen III, MMP2 and TIMP1 were higher in treatment+Id2 group than those in treatment group as well as in treatment+GFP group both in vivo and in vitro. Immunofluorescence revealed that both α-SMA and vimentin were co-expressed in the treatment group and GFP group, but the co-expression were not detected in the control group and Id2 group. Additionally, our findings illustrated that Id2 had protective effects demonstrated by its ability to inhibit the TGF-β1/Smad3/HIF-1α/IL-11 signaling pathways. Besides, over-expression of Id2 reduced cardiomyocytes apoptosis. Conclusion: In conclusion, this study demonstrated that over-expression of Id2 preserved cardiac function and ameliorated adverse cardiac remodeling, which might be a promising treatment target for cardiac fibrosis and apoptosis."	"MUC1 intracellular bioactivation mediates lung fibrosis. Serum KL6/mucin 1 (MUC1) has been identified as a potential biomarker in idiopathic pulmonary fibrosis (IPF), but the role of MUC1 intracellular bioactivation in IPF is unknown. To characterise MUC1 intracellular bioactivation in IPF. The expression and phosphorylation of Thr<sup>41</sup> and Tyr<sup>46</sup> on the intracellular MUC1-cytoplasmic tail (CT) was increased in patients with IPF (n=22) compared with healthy subjects (n=21) and localised to fibroblasts and hyperplastic alveolar type II cells. Transforming growth factor (TGF)-β1 phosphorylated SMAD3 and thereby increased the phosphorylation of MUC1-CT Thr<sup>41</sup> and Tyr<sup>46</sup> in lung fibroblasts and alveolar type II cells, activating β-catenin to form a phospho-Smad3/MUC1-CT and MUC1-CT/β-catenin nuclear complex. This nuclear complex promoted alveolar epithelial type II and fibroblast to myofibroblast transitions, as well as cell senescence and fibroblast proliferation. The inhibition of MUC1-CT nuclear translocation using the inhibitor, GO-201 or silencing MUC1 by siRNA, reduced myofibroblast transition, senescence and proliferation in vitro. Bleomycin-induced lung fibrosis was reduced in mice treated with GO-201 and in MUC1-knockout mice. The profibrotic lectin, galectin-3, directly activated MUC1-CT and served as a bridge between the TGF-β receptor and the MUC1-C domain, indicating TGF-β1-dependent and TGF-β1-independent intracellular bioactivation of MUC1. MUC1 intracellular bioactivation is enhanced in IPF and promotes fibrotic processes that could represent potential druggable targets for IPF."	"Increased Smad3 and reduced Smad2 levels mediate the functional switch of TGF-β from growth suppressor to growth and metastasis promoter through TMEPAI/PMEPA1 in triple negative breast cancer. Screening of several TNBC cell lines showed altered Smad2 and Smad3 protein levels compared to normal mammary epithelial cells, suggesting the possibility that it could play an important role in the escape of cancer cells from TGF-β mediated growth inhibition. To assess the functional relevance of these endogenous molecules, Smad2 or Smad3 expression was knocked down individually and assessed their effects on pro-oncogenic properties of TGF-β. Smad3 deficiency reduced growth and invasion capacity of breast cancer cells in comparison to Smad2 which had no effect. Smad3 deficiency was also found to be associated with a reduction in the expressions of TMEPAI/PMEPA1 and EMT inducing transcription factors, E-Cadherin and increased expression of cell cycle inhibitors and Vimentin. On the other hand, Smad2 deficiency had opposite effect on these regulators. Interestingly, the decreased growth, invasion and associated gene expressions were largely reversed by overexpressing TMEPAI in Smad3 knockdown cells, suggesting that Smad3-TMEPAI axis may be involved in subverting growth suppressive effects of TGF-β into growth promotion. Similarly, altered levels of Smad proteins and TMEPAI were also noted in primary TNBC tumor tissues. Analysis of the existing databases provided additional support in terms of TMEPAI and Smad2 expression impacting the survival of TNBC patients. Taken together, our data demonstrate a novel role for Smad3 in cancer transformation and cancer progression through TMEPAI and further suggest that selective targeting of TGF-β-Smad3-TMEPAI axis may be beneficial in triple negative breast cancer therapy and prevention."	"Chitinase-like protein YKL-40 regulates human bronchial epithelial cells proliferation, apoptosis, and migration through TGF-β1/Smads pathway. In order to study the effects of chitinase-like protein YKL-40 on proliferation, apoptosis, and migration of human bronchial epithelial cell line (BEAS-2B), and the underlying mechanisms, we cultured BEAS-2B alone or with different concentrations of YKL-40. thiazolyl blue tetrazolium bromide (MTT) assay was used to examine the cell proliferation. Annexin V-fluorescein isothiocyanate isomer (FITC)/propidium iodide staining and scratch assay were performed to test the cell apoptosis and migration. The concentrations of transforming growth factor-β1 (TGF-β1), Smad3, Smad7, alpha-smooth muscle actin (α-SMA), interleukin-4 (IL-4), IL-6, and IL-8 in the cell culture supernatant were detected by enzyme-linked immunosorbent assay. The messenger RNA and protein levels of YKL-40, TGF-β1, Smad3, Smad7, and α-SMA were detected by reverse transcription polymerase chain reaction and Western blot. BEAS-2B cells cultured with different concentrations of YKL-40 showed significantly higher cell proliferation and migration and inflammatory cytokines compared with that of control group, while the cell apoptosis was significantly lower than that of control group (p &lt; 0.05). In addition, BEAS-2B cells cultured with YKL-40 had increased TGF-β1, Smad3, Smad7, and α-SMA levels in the supernatant, compared with that of BEAS-2B cells cultured alone (p &lt; 0.05). Furthermore, LY364947, as TGF-β1/Smads signaling pathway inhibitor, decreased cell proliferation and migration ability and enhanced cell apoptosis of BEAS-2B cells compared with control group (p &lt; 0.05). However, YKL-40 administration reversed the effect of LY364947 on the biological behavior of BEAS-2B cells. YKL-40 could affect the biological behaviors of BEAS-2B cells, which might be related to the TGF-β1/Smads pathway."	"Case-matched Comparison of Cardiovascular Outcome in Loeys-Dietz Syndrome versus Marfan Syndrome. Background: Pathogenic variants in TGFBR1, TGFBR2 and SMAD3 genes cause Loeys-Dietz syndrome, and pathogenic variants in FBN1 cause Marfan syndrome. Despite their similar phenotypes, both syndromes may have different cardiovascular outcomes. Methods: Three expert centers performed a case-matched comparison of cardiovascular outcomes. The Loeys-Dietz group comprised 43 men and 40 women with a mean age of 34 ± 18 years. Twenty-six individuals had pathogenic variants in TGFBR1, 40 in TGFBR2, and 17 in SMAD3. For case-matched comparison we used 83 age and sex-frequency matched individuals with Marfan syndrome. Results: In Loeys-Dietz compared to Marfan syndrome, a patent ductus arteriosus (p = 0.014) was more prevalent, the craniofacial score was higher (p &lt; 0.001), the systemic score lower (p &lt; 0.001), and mitral valve prolapse less frequent (p = 0.003). Mean survival for Loeys-Dietz and Marfan syndrome was similar (75 ± 3 versus 73 ± 2 years; p = 0.811). Cardiovascular outcome was comparable between Loeys-Dietz and Marfan syndrome, including mean freedom from proximal aortic surgery (53 ± 4 versus 48 ± 3 years; p = 0.589), distal aortic repair (72 ± 3 versus 67 ± 2 years; p = 0.777), mitral valve surgery (75 ± 4 versus 65 ± 3 years; p = 0.108), and reintervention (20 ± 3 versus 14 ± 2 years; p = 0.112). In Loeys-Dietz syndrome, lower age at initial presentation predicted proximal aortic surgery (HR = 0.748; p &lt; 0.001), where receiver operating characteristic analysis identified ≤33.5 years with increased risk. In addition, increased aortic sinus diameters (HR = 6.502; p = 0.001), and higher systemic score points at least marginally (HR = 1.175; p = 0.065) related to proximal aortic surgery in Loeys-Dietz syndrome. Conclusions: Cardiovascular outcome of Loeys-Dietz syndrome was comparable to Marfan syndrome, but the severity of systemic manifestations was a predictor of proximal aortic surgery."	"Homeobox protein Hhex negatively regulates Treg cells by inhibiting Foxp3 expression and function. Regulatory T (Treg) cells play an essential role in maintaining immune homeostasis, but the suppressive function of Treg cells can be an obstacle in the treatment of cancer and chronic infectious diseases. Here, we identified the homeobox protein Hhex as a negative regulator of Treg cells. The expression of Hhex was lower in Treg cells than in conventional T (Tconv) cells. Hhex expression was repressed in Treg cells by TGF-β/Smad3 signaling. Retroviral overexpression of Hhex inhibited the differentiation of induced Treg (iTreg) cells and the stability of thymic Treg (tTreg) cells by significantly reducing Foxp3 expression. Moreover, Hhex-overexpressing Treg cells lost their immunosuppressive activity and failed to prevent colitis in a mouse model of inflammatory bowel disease (IBD). Hhex expression was increased; however, Foxp3 expression was decreased in Treg cells in a delayed-type hypersensitivity (DTH) reaction, a type I immune reaction. Hhex directly bound to the promoters of Foxp3 and other Treg signature genes, including Il2ra and Ctla4, and repressed their transactivation. The homeodomain and N-terminal repression domain of Hhex were critical for inhibiting Foxp3 and other Treg signature genes. Thus, Hhex plays an essential role in inhibiting Treg cell differentiation and function via inhibition of Foxp3."	"Inhibition of microRNA-221-5p induces osteogenic differentiation by directly targeting smad3 in myeloma bone disease mesenchymal stem cells. Myeloma bone disease (MBD) is one of the clinical features of multiple myeloma, which contributes to the attenuation of osteoblast function. Bone marrow mesenchymal stem cells exhibit a high potential for differentiation into osteoblasts. A number of studies have reported that microRNAs (miRs) serve a vital role in mesenchymal stem cell (MSC) osteogenesis; however, the role of miR-221-5p in the osteogenic differentiation of MBD-MSCs remains unclear. The present study revealed that the osteogenic differentiation capacity of MBD-MSCs was reduced compared with that of normal (N)-MSCs. Further experiments demonstrated that miR-221-5p expression was downregulated in N-MSCs following osteoblast induction while no obvious alterations in expression levels were observed in MBD-MSCs. The inhibition of miR-221-5p promoted the osteogenic differentiation of MBD-MSCs. Bioinformatics, luciferase reporter assays, reverse transcription-quantitative PCR and western blotting assays indicated that smad family member 3 (smad3) was a direct target of miR-221-5p in MBD-MSCs. A negative association was identified between the expression levels of smad3 and miR-221-5p. Investigations of the molecular mechanism indicated that suppressed miR-221-5p could regulate the osteogenic differentiation of MBD-MSCs by upregulating smad3 expression. It was also identified that the PI3K/AKT/mTOR signaling pathway was activated following miR-221-5p inhibition, and this increased the osteogenic differentiation capacity of MBD-MSCs. The present study may improve the understanding regarding the role of miR-221-5p in the regulation of osteogenic differentiation, and may contribute to the development of a novel therapy for MBD."	"Decidual Small Extracellular Vesicles induce Trophoblast Invasion by upregulating N-cadherin. Small extracellular vesicles (sEVs) are important mediators of cell-to-cell communication involved in successful establishment of a pregnancy. Human decidual stromal cells play a key role in regulating trophoblast invasion. Nevertheless, the regulatory functions of decidual stromal cells-derived sEVs in human trophoblast cells are still unclear. In this study, primary human decidual stromal cells were isolated and immortalized human endometrial stromal cell line (HESCs) were decidualised into human decidual stromal cells (HDSC) using hormonal cocktail containing Medroxy progesterone 17-acetate (MPA), estrogen and cAMP analog. HDSC-sEVs were isolated from both primary human decidual stromal cells and immortal HDSCs respectively, and identified by transmission electron microscopy and western blotting. EVs up-taken assay indicated that HDSC-sEVs could be up-taken by trophoblast cells. HDSC-sEVs could increase the invasiveness and the expression level of N-cadherin of trophoblast cells with elevated phosphorylation of SMAD2 and SMAD3 in the cells. Silencing of N-cadherin could block cell invasion induced by HDSC-sEVs, while knockdown of SMAD2 and SMAD3 could inhibit the up-regulation of N-cadherin in trophoblast cells. Taken together, our results suggested a regulatory effect of HDSC-sEVs in the invasion of trophoblast cells, and HDSC-sEVs may be important mediators of trophoblasts during embryo implantation and placentation."	"Chronic mucocutaneous candidiasis and connective tissue disorder in humans with impaired JNK1-dependent responses to IL-17A/F and TGF-β. Genetic etiologies of chronic mucocutaneous candidiasis (CMC) disrupt human IL-17A/F-dependent immunity at mucosal surfaces, whereas those of connective tissue disorders (CTDs) often impair the TGF-β-dependent homeostasis of connective tissues. The signaling pathways involved are incompletely understood. We report a three-generation family with an autosomal dominant (AD) combination of CMC and a previously undescribed form of CTD that clinically overlaps with Ehlers-Danlos syndrome (EDS). The patients are heterozygous for a private splice-site variant of MAPK8, the gene encoding c-Jun N-terminal kinase 1 (JNK1), a component of the MAPK signaling pathway. This variant is loss-of-expression and loss-of-function in the patients' fibroblasts, which display AD JNK1 deficiency by haploinsufficiency. These cells have impaired, but not abolished, responses to IL-17A and IL-17F. Moreover, the development of the patients' TH17 cells was impaired ex vivo and in vitro, probably due to the involvement of JNK1 in the TGF-β-responsive pathway and further accounting for the patients' CMC. Consistently, the patients' fibroblasts displayed impaired JNK1- and c-Jun/ATF-2-dependent induction of key extracellular matrix (ECM) components and regulators, but not of EDS-causing gene products, in response to TGF-β. Furthermore, they displayed a transcriptional pattern in response to TGF-β different from that of fibroblasts from patients with Loeys-Dietz syndrome caused by mutations of TGFBR2 or SMAD3, further accounting for the patients' complex and unusual CTD phenotype. This experiment of nature indicates that the integrity of the human JNK1-dependent MAPK signaling pathway is essential for IL-17A- and IL-17F-dependent mucocutaneous immunity to Candida and for the TGF-β-dependent homeostasis of connective tissues."	"Rosiglitazone Suppresses Calcium Oxalate Crystal Binding and Oxalate-Induced Oxidative Stress in Renal Epithelial Cells by Promoting PPAR-γ Activation and Subsequent Regulation of TGF-β1 and HGF Expression. Peroxisome proliferator-activated receptor- (PPAR-) γ is a ligand-dependent transcription factor, and it has become evident that PPAR-γ agonists have renoprotective effects, but their influence and mechanism during the development of calcium oxalate (CaOx) nephrolithiasis remain unknown. Rosiglitazone (RSG) was used as a representative PPAR-γ agonist in our experiments. The expression of transforming growth factor-β1 (TGF-β1), hepatocyte growth factor (HGF), c-Met, p-Met, PPAR-γ, p-PPAR-γ (Ser112), Smad2, Smad3, pSmad2/3, and Smad7 was examined in oxalate-treated Madin-Darby canine kidney (MDCK) cells and a stone-forming rat model. A CCK-8 assay was used to evaluate the effects of RSG on cell viability. In addition, intracellular reactive oxygen species (ROS) levels were monitored, and lipid peroxidation in renal tissue was detected according to superoxide dismutase and malondialdehyde levels. Moreover, the location and extent of CaOx crystal deposition were evaluated by Pizzolato staining. Our results showed that, both in vitro and in vivo, oxalate impaired PPAR-γ expression and phosphorylation, and then accumulative ROS production was observed, accompanied by enhanced TGF-β1 and reduced HGF. These phenomena could be reversed by the addition of RSG. RSG also promoted cell viability and proliferation and decreased oxidative stress damage and CaOx crystal deposition. However, these protective effects of RSG were abrogated by the PPAR-γ-specific inhibitor GW9662. Our results revealed that the reduction of PPAR-γ activity played a critical role in oxalate-induced ROS damage and CaOx stone formation. RSG can regulate TGF-β1 and HGF/c-Met through PPAR-γ to exert antioxidant effects against hyperoxaluria and alleviate crystal deposition. Therefore, PPAR-γ agonists may be expected to be a novel therapy for nephrolithiasis, and this effect is related to PPAR-γ-dependent suppression of oxidative stress."	"Wnt4 negatively regulates the TGF-β1-induced human dermal fibroblast-to-myofibroblast transition via targeting Smad3 and ERK. Abnormal activation of Wnt signaling has been demonstrated in the wound healing process and the pathogenesis of fibrotic disorders, with Wnt4 specifically identified as having a key role in the pathogenesis of renal, pulmonary and liver fibrosis. Wnt4 also was found to be upregulated by transforming growth factor-β1 (TGF-β1) in fetal and postnatal murine fibroblasts and bone marrow mesenchymal cells, suggesting an underlying cooperation between Wnt4 and TGF-β1 in fibrosis. However, the specific roles of Wnt4 in TGF-β1-induced skin myofibroblast transition and hypertrophic scar formation remain unclear. In the present study, we first observed reduced Wnt4 expression in hypertrophic scar tissue compared with that in normal skin tissue. Following upregulation by TGF-β1, Wnt4 inhibited the TGF-β1-induced transdifferentiation of fibroblasts into myofibroblasts. Using fibroblast-populated collagen lattice contraction assays, we showed that the increased contractility induced by TGF-β1 was significantly blocked by exogenous Wnt4 and the α-smooth muscle actin (α-SMA) expression was decreased in fibroblasts in the collagen lattices. In addition, knockdown of Wnt4 resulted in further increases in α-SMA and collagen I expressions. Further investigation showed that Wnt4 could inhibit the autocrine effect of TGF-β1 as well as block the phosphorylation of Smad3 and ERK but not of AKT or JNK. Lastly, using hypertrophic scar-derived fibroblasts, we showed that the elevated α-SMA and collagen I levels were markedly reduced after treatment with Wnt4. Taken together, our results suggest that Wnt4 negatively regulates TGF-β1-induced fibroblast activation, which may represent a novel therapeutic strategy for the treatment and prevention of hypertrophic scars."	"Vitamin D deficiency exacerbates bleomycin-induced pulmonary fibrosis partially through aggravating TGF-β/Smad2/3-mediated epithelial-mesenchymal transition. Our earlier report indicated that active vitamin D3 inhibited epithelial-mesenchymal transition (EMT) in bleomycin (BLM)-induced pulmonary fibrosis. The objective of this study was to further investigate whether vitamin D deficiency exacerbates BLM-induced pulmonary fibrosis. This study consists of two independent experiments. Experiment 1, male mice were fed with vitamin D deficient (VDD) fodder. Experiment 2, Cyp27b1<sup>+/+</sup>, Cyp27b1<sup>+/-</sup> and Cyp27b1<sup>-/-</sup> mice were fed with standard diet. For pulmonary fibrosis, mice were intratracheally instilled with a single dose of BLM (1.5 mg/kg). Serum 25(OH) D level was measured. Pulmonary collagen deposition was assessed by Sirius red staining. EMT was measured and transforming growth factor-beta (TGF-β)/Smad3 signaling was evaluated in the lungs of BLM-treated mice. The relative weight of lungs was elevated in BLM-treated mice. Col1α1 and Col1α2, two collagen protein genes, were upregulated, and collagen deposition, as determined by Sirius red staining, was observed in the lungs of BLM-treated mice. E-cadherin, an epithelial marker, was downregulated. By contrast, vimentin and α-SMA, two EMT markers, were upregulated in the lungs of BLM-treated mice. Pulmonary TGF-β/Smad3 signaling was activated in BLM-induced lung fibrosis. Further analysis showed that feeding VDD diet, leading to vitamin D deficiency, aggravated elevation of BLM-induced relative lung weight. Moreover, feeding VDD diet aggravated BLM-induced TGF-β/Smad3 activation and subsequent EMT in the lungs. In addition, feeding VDD diet exacerbated BLM-induced pulmonary fibrosis. Additional experiment showed that Cyp27b1 gene knockout, leading to active vitamin D3 deficiency, exacerbated BLM-induced pulmonary fibrosis. Moreover, Cyp27b1 gene knockout aggravated pulmonary TGF-β/Smad2/3 activation and subsequent EMT in BLM-induced lung fibrosis. Vitamin D deficiency exacerbates BLM-induced pulmonary fibrosis partially through aggravating TGF-β/Smad2/3-mediated EMT in the lungs."	"MicroRNA-140's inhibition on the cell migration and invasion of non-small cell lung cancer by down-regulating Smad3 expression. To investigate the effect of miR-140 on migration and invasion of non-small cell lung cancer (NSCLC) A549 cell and its regulatory mechanism. The NSCLC cell lines A549, H1650, NCI-H838, and normal lung epithelial cells BEAS-2B were purchased, and the expression of miR-140 and Smad3 in cells was detected by RT-PCR. MiR-140-inhibitor, miR-140-mimincs, miR-NC, sh-Smad3, Si-Smad3, and NC were transfected into A549 cells. Quantitative Real Time-Polymerase Chain Reaction (QRT-PCR) was used to detect the expression of miR-140 and Smad3. Transwell and cell scratch assay were used to detect cell invasion and migration. Dual-Luciferase report assay was used to study the relationship between mir-140 and Smad3. MiR-140 was lowly expressed and Smad3 was highly expressed in NSCLC cells. Cell researches showed that the overexpression of miR-140 can inhibit cell invasion and migration. The downregulation of Smad3 expression inhibits cell invasion and migration. Dual-Luciferase reporter assay showed that miR-140 is a Smad3 targeting site. MiR-140 can inhibit the invasion and migration of NSCLC cells by regulating Smad3, and it is expected to become a potential clinical target."	"MiR-106a-5p modulates apoptosis and metabonomics changes by TGF-β/Smad signaling pathway in cleft palate. The molecular mechanisms of abnormal palatogenesis were investigated in this study. A key regulator, miR-106a-5p, and its target pathway were analyzed. This research is trying to clarify the underlying mechanism of the modulation of miRNA transcription during the formation of cleft palate by 7T and 9.4T NMR metabolomic platforms. Differentially expressed miRNAs and mRNAs were analyzed by microarray analysis and verified by qRT-PCR. The protein expression in TGFβ signaling pathways were analyzed by Western Blotting. The relationship between miR-106a-5p and TGFβ were analyzed by luciferase reporter assay. Cell apoptosis were analyzed by flow cytometer. And finally, the metabonomics were analyzed by NMR and multivariate data analysis models (MVDA). The expression of miR-106a-5p increased in cleft palatal tissue and negatively correlated with the protein level of Tgfbr2. The luciferase assay further proved that the tgfbr2 was a direct target of miR-106a-5p. In another aspect, miR-106a-5p increased apoptosis level in palatal mesenchymal cells, possibly because its inhibition of TGFβ signaling pathway. Moreover, low cholesterol and choline levels with high citric acid and lipid levels were observed by 7T and 9.4T NMR metabonomic analysis, which inferred the disorder of cell membrane synthesis in cleft palate formation. Furthermore, transformation from choline to phosphatidylcholine regulated by miR-106a-5p was also disrupted, resulting in phosphatidic choline synthesis disorder and reduced cell membrane synthesis. The regulatory mechanism of cleft palate was studied at transcriptional and metabolomics levels, which may provide important information in understanding the primary cause of this abnormality."	"DLC-1 tumor suppressor regulates CD105 expression on human non-small cell lung carcinoma cells through inhibiting TGF-β1 signaling. Acquisition of features of mesenchymal cells represents a key step of metastatic progression of cancer cells and searching for mechanisms underlying the acquisition will help design novel clinical strategies for suppressing the metastatic progression. The Deleted in Liver Cancer-1 (DLC-1) gene is a p122/RhoGAP tumor/metastatic suppressor gene. However, the mechanism underlying DLC-1's inhibition of metastasis still remains largely unknown. In this study, we revealed that the DLC-1-deficient, but not the DLC-1-competent, human non-small cell lung carcinoma cells (NSCLCs) could acquire the TGF-β1-induced expression of CD105, a common surface marker of mesenchymal stem cells, with consequent increase in CD105-associated cell motility. Interestingly, the induced CD105 expression and cell motility were subjected to the inhibition by the DLC-1-RhoA-Rock1 signaling through inhibiting the serine phosphorylation at a linker region, but not at the C-terminus, of the Smad3 protein and Smad3 protein nuclear translocation down the canonical TGF-β1 signaling. In addition, the evidence suggested that DLC-1 very likely exerted its inhibitory effects on the TGF-β1 signaling and the associated CD105 acquisition in both the cytoplasm and the nucleus. Consistent to the in vitro findings, a reverse correlation between CD105 and DLC-1 in protein expression was identified in primary NSCLC tissues and their surrounding non-tumor tissues. In summary, this study revealed a novel anti-metastasis mechanism governed by the DLC-1 tumor/metastasis suppressor, thus helping design new diagnostic and therapeutic approaches for NSCLCs."	"Flavonol glycosides of Rosa multiflora regulates intestinal barrier function through inhibiting claudin expression in differentiated Caco-2 cells. Eijitsu, the fruits of Rosa multiflora Thunberg, is a traditional Japanese natural medicine and used as purgatives. The active constituents were identified as flavonol glycosides, multiflorin A (MF), and multinoside A (MSA), but mechanism of the purgative action is still unknown. We hypothesized that the flavonol glycosides 1 and 2 may exhibit the purgative actions through modulating intestinal epithelial barrier function. Then, this study aimed to investigate their effects on intestinal epithelial barrier function and possible molecular mechanisms in human intestinal Caco-2 cells. MF and MSA decreased transepithelial electrical resistance and increased paracellular permeability of Caco-2 cell monolayers. Expression of claudins (CLDNs) involved in paracellular permeability of ions and low-molecular substances was significantly decreased by the treatment with MF or MSA. The compounds increased the ratio of N-cadherin/E-cadherin, expression of transforming growth factor-β and Slug, and phosphorylation level of Smad3, suggesting epithelial-mesenchymal transition activation, and epithelial-mesenchymal transition inhibition by transforming growth factor-β receptor kinase inhibitors completely recovered the decreased CLDNs expression caused by MF and MSA. Moreover, the increased paracellular permeability and the decreased CLDNs expression by the treatment with MF or MSA for 24 hours recovered to the same extent as the untreated group with the compounds by continuous culture in the growth medium alone for 48 hours. These results suggest that Eijitsu may be effective in preventing or relieving constipation symptoms, unless used chronically."	"High Prevalence of Connective Tissue Gene Variants in Professional Ballet. There is a high prevalence of hypermobility spectrum disorder (HSD) in dancers. While there is no known genetic variant for HSD, hypermobile Ehlers-Danlos syndrome is a genetic disorder that exists within HSD. There are many connective tissue disorders (CTDs) with known (and unknown) genes associated with hypermobility. Hypermobility has distinct advantages for participation in flexibility sports, including ballet. To determine the prevalence of gene variants associated with hypermobility in a large professional ballet company. Cross-sectional study; Level of evidence, 3. In this cross-sectional investigation, 51 professional male and female dancers from a large metropolitan ballet company were eligible and offered participation after an oral and written informed consent process. Whole blood was obtained from peripheral venipuncture, and DNA was isolated. Isolated DNA was subsequently enriched for the coding exons of 60 genes associated with CTD that included hypermobility as a phenotype, including Ehlers-Danlos syndromes, osteogenesis imperfecta, Marfan syndrome, and others. Genes were targeted with hybrid capture technology. Prepared DNA libraries were then sequenced with next-generation sequencing technology. Genetic database search tools (Human Gene Mutation Database and e!Ensembl, http://useast.ensembl.org/ ) were used to query specific variants. Descriptive statistics were calculated. Of 51 dancers, 32 (63%) agreed to participate in DNA analysis (mean ± SD age, 24.3 ± 4.4 years; 18 men, 14 women). Twenty-eight dancers had at least 1 variant in the 60 genes tested, for an 88% prevalence. A total of 80 variants were found. A variant in 26 of the 60 genes was found in at least 1 dancer. Among the 28 dancers with variants, 16 were found in the TTN gene; 10 in ZNF469; 5 in RYR1; 4 in COL12A1; 3 in ABCC6 and COL6A2; 2 in ADAMTS2, CBS, COL1A2, COL6A3, SLC2A10, TNC, and TNXB; and 1 in ATP6V0A2, B4GALT7, BMP1, COL11A1, COL5A2, COL6A1, DSE, FBN1, FBN2, NOTCH1, PRDM5, SMAD3, and TGFBR1. Nine variants found in this population have never been reported. No identified variant was identical to any other variant. No identified variant was known to be disease causing. In the general population, the prevalence of each variant ranges from never reported to 0.33%. In the study population, the prevalence of each variant was 3.13%. There was no association between hypermobility scores and genetic variants. Genetic variants in CTD-associated genes are highly prevalent (88%) in professional ballet dancers. This may significantly account for the high degree of motion in this population."	"TAF and TDF attenuate liver fibrosis through NS5ATP9, TGFβ1/Smad3, and NF-κB/NLRP3 inflammasome signaling pathways. This study aimed to investigate the roles and mechanisms of tenofovir alafenamide fumarate (TAF)/tenofovir disoproxil fumarate (TDF) in treating liver fibrosis. The effects of TAF/TDF on carbon tetrachloride (CCl4)-induced liver fibrosis in C57BL/6 wild-type or nonstructural protein 5A transactivated protein 9 (NS5ATP9) knockout mice were studied. The differentiation, activation, and proliferation of LX-2 cells after TAF/TDF treatment were tested in vitro. The expression of NS5ATP9 and activities of transforming growth factor-β1 (TGFβ1)/Sekelsky mothers against decapentaplegic homolog 3 (Smad3) and NF-κB/NOD-like receptor pyrin domain containing 3 (NLRP3) inflammasome signaling pathways were detected in TAF/TDF-treated mice and LX-2 cells. The genes related to extracellular matrix accumulation were detected in vivo and in vitro after NS5ATP9 silencing or knockout. TAF/TDF significantly inhibited CCl4-induced liver fibrosis in mice, and regulated the differentiation, activation, and proliferation of hepatic stellate cells (HSCs). Furthermore, TAF/TDF suppressed the activities of TGFβ1/Smad3 and NF-κB/NLRP3 inflammasome signaling pathways in vivo and in vitro. NS5ATP9 inhibited liver fibrosis through TGFβ1/Smad3 and NF-κB signaling pathways. TAF/TDF upregulated the expression of NS5ATP9 in vivo and in vitro. Finally, TAF/TDF could only show marginal therapeutic effects when NS5ATP9 was silenced and knocked out in vivo and in vitro. TAF/TDF prevented progression and promoted reversion of liver fibrosis through assembling TGFβ1/Smad3 and NF-κB/NLRP3 inflammasome signaling pathways via upregulating the expression of NS5ATP9. TAF/TDF also regulated the differentiation, activation, and proliferation of HSCs. The findings provided strong evidence for the role of TAF/TDF as a new promising therapeutic strategy in liver fibrosis."	"TOPK promotes epithelial-mesenchymal transition and invasion of breast cancer cells through upregulation of TBX3 in TGF-β1/Smad signaling. TOPK has been suggested to contribute to invasion of lung, prostate, gastric, pancreatic or breast cancer cells. However, how TOPK mediates TGF-β1/Smad signaling leading to epithelial-mesenchymal transition (EMT) and invasion of breast cancer cells remains unknown. Here we report that TOPK upregulates T-box transcription factor TBX3 to enhance TGF-β1-induced EMT and invasion of MDA-MB-231 breast cancer cells. Expression of endogenous TOPK was promoted by TGF-β1 treatment of MDA-MB-231 cells time-dependently. In addition, knockdown of TOPK attenuated TGF-β1-induced phosphorylation or transcriptional activity of Smad3. Meanwhile, levels of both mRNA and protein of TBX3 induced by TGF-β1 were abolished by TOPK depletion. Also, knockdown of TBX3 inhibited TGF-β1 induction of EMT-related genes Snail, Slug or Fibronectin. Furthermore, ablation of TOPK or TBX3 suppressed TGF-β1-induced MDA-MB-231 cell invasion. Collectively, we conclude that TOPK positively regulates TBX3 in TGF-β1/Smad signaling pathway, thereby enhancing EMT and invasion of breast cancer cells, implying a mechanistic role of TOPK in TGF-β1/Smad signaling."	"Conditional knockout of TGF-βRII /Smad2 signals protects against acute renal injury by alleviating cell necroptosis, apoptosis and inflammation. Rationale: TGF-β/Smad signaling is the central mediator for renal fibrosis, however, its functional role in acute kidney injury (AKI) is not fully understood. We previously showed Smad2 protects against renal fibrosis by limiting Smad3 signaling, but details on its role in acute phase are unclear. Recent evidence showed that TGF-β/Smad3 may be involved in the pathogenesis of AKI, so we hypothesized that Smad2 may play certain roles in AKI due to its potential effect on programmed cell death. Methods: We established a cisplatin-induced AKI mouse model with TGF-β type II receptor or Smad2 specifically deleted from renal tubular epithelial cells (TECs). We also created stable in vitro models with either Smad2 knockdown or overexpression in human HK2 cells. Importantly, we evaluated whether Smad2 could serve as a therapeutic target in both cisplatin- and ischemic/reperfusion (I/R)-induced AKI mouse models by silencing Smad2 in vivo. Results: Results show that disruption of TGF-β type II receptor suppressed Smad2/3 activation and attenuated renal injury in cisplatin nephropathy. Furthermore, we found that conditional knockout of downstream Smad2 in TECs protected against loss of renal function, and alleviated p53-mediated cell apoptosis, RIPK-mediated necroptosis and p65 NF-κB-driven renal inflammation in cisplatin nephropathy. This was further confirmed in cisplatin-treated Smad2 knockdown and overexpression HK2 cells. Additionally, lentivirus-mediated Smad2 knockdown protected against renal injury and inflammation while restoring renal function in established nephrotoxic and ischemic AKI models. Conclusions: These findings show that unlike its protective role in renal fibrosis, Smad2 promoted AKI by inducing programmed cell death and inflammation. This may offer a novel therapeutic target for acute kidney injury."	"RUNX1 contributes to the mesenchymal subtype of glioblastoma in a TGFβ pathway-dependent manner. Runt-Related Transcription Factor 1 (RUNX1) is highly expressed in the Mesenchymal (Mes) subtype of glioblastoma (GBM). However, the specific molecular mechanism of RUNX1 in Mes GBM remains largely elusive. In this study, cell and tumor tissue typing were performed by RNA-sequencing. Co-immunoprecipitation (co-IP) and immunofluorescence (IF) were employed to identify members of the RUNX1 transcriptional protein complex. Bioinformatics analysis, chromatin immunoprecipitation (ChIP), and luciferase reporter experiments were utilized to verify target genes. Analyses of The Cancer Genome Atlas (TCGA) and Chinese Glioma Genome Atlas (CGGA) verified the expression levels and prognoses associated with RUNX1/p-SMAD3/SUV39H1 target genes. In vivo patient-derived xenograft (PDX) studies and in vitro functional studies verified the impact of RUNX1 on the occurrence and development of GBM. The results showed that RUNX1 was upregulated in Mes GBM cell lines, tissues and patients and promoted proliferation and invasion in GBM in a TGFβ pathway-dependent manner in vivo and in vitro. We found and verified that BCL3 and MGP are transcriptionally activated by p-SMAD3 /RUNX1, while MXI1 is transcriptionally suppressed by the RUNX1/SUV39H1-H3K9me3 axis. This finding offers a theoretical rationale for using molecular markers and choosing therapeutic targets for the Mes type of GBM."	"Inhibitory Effect of Corilagin on miR-21-Regulated Hepatic Fibrosis Signaling Pathway. Corilagin is a polyphenol that can be extracted from many medicinal plants and shows multiple pharmacological effects. We aimed to investigate the role of corilagin on miR-21-regulated hepatic fibrosis, especially miR-21-regulated TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1/Smad signaling pathway, in hepatic stellate LX2 cell line and Sprague-Dawley rats. The mRNA or protein levels of miR-21, Smad7, connective tissue growth factor (CTGF), <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>α</mml:mi> </mml:math>-smooth muscle actin (<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>α</mml:mi> </mml:math>-SMA), tissue inhibitor of metalloproteinase-1 (TIMP-1), matrix metalloproteinase-9 (MMP-9), collagen type I alpha 1 (COL1A1), Smad2, Smad3, Smad2/3, p-Smad2, p-Smad3, p-Smad2/3, and transforming growth factor-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1 (TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1) in LX2 cells and liver tissues were determined. Furthermore, gain-of and loss-of function of miR-21 in miR-21-regulated TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1/Smad signaling pathway were analyzed in LX2 cells. Liver tissues and serum were collected for pathological analysis, immunohistochemical staining, and enzyme-linked immunosorbent assay (ELISA). Corilagin treatment reduced mRNA or protein levels of miR-21, CTGF, <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>α</mml:mi> </mml:math>-SMA, TIMP-1, TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1, COL1A1, p-Smad2, p-Smad3, and p-Smad2/3 both in vitro and in vivo. While corilagin increased mRNA and protein levels of Smad7 and MMP-9. After gain-of and loss-of function of miR-21, the downstream effectors of miR-21-regulated TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1/Smad signaling pathway in LX2 cells changed accordingly, and the changes were inhibited by corilagin. Simultaneously, administration of corilagin not only ameliorated pathological manifestation of liver fibrosis but also reduced levels of <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>α</mml:mi> </mml:math>-SMA and COL1A1 in liver tissues and TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1, ALT levels in serum. Corilagin is able to potentially prevent liver fibrosis by blocking the miR-21-regulated TGF-<mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>β</mml:mi> </mml:math>1/Smad signaling pathway in LX2 cells and CCl4-induced liver fibrosis rats, which may provide a novel therapeutic strategy for liver fibrosis."	"The Chromatin Remodeler Brg1 Integrates ROS Production and Endothelial-Mesenchymal Transition to Promote Liver Fibrosis in Mice. Trans-differentiation of endothelial cells to myofibroblast contributes to liver fibrosis. Reactive oxygen species (ROS) plays a key role in endothelial-mesenchymal transition (EndMT) although the underlying epigenetic mechanism is unclear. Here we report that endothelial conditional knockout of Brg1, a chromatin remodeling protein, attenuated liver fibrosis in mice. Brg1 deficiency in endothelial cells was paralleled by a decrease in ROS production and blockade of EndMT both in vivo and in vitro. The ability of BRG1 to regulate ROS production and EndMT was abolished by NOX4 depletion or inhibition. Further analysis revealed that BRG1 interacted with SMAD3 and AP-1 to mediate TGF-β induced NOX4 transcription in endothelial cells. Mechanistically, BRG1 recruited various histone modifying enzymes to alter the chromatin structure surrounding the NOX4 locus thereby activating its transcription. In conclusion, our data uncover a novel epigenetic mechanism that links NOX4-dependent ROS production to EndMT and liver fibrosis. Targeting the BRG1-NOX4 axis may yield novel therapeutics against liver fibrosis."	"A FXYD5/TGF‑β/SMAD positive feedback loop drives epithelial‑to‑mesenchymal transition and promotes tumor growth and metastasis in ovarian cancer. Epithelial ovarian cancer is aggressive and lacks effective prognostic indicators or therapeutic targets. In the present study, using immunohistochemistry and bioinformatics analysis on ovarian cancer tissue data from The Obstetrics and Gynecology Hospital of Fudan University and The Cancer Genome Atlas database, it was identified that FXYD domain‑containing ion transport regulator 5 (FXYD5) expression was upregulated in the SKOV3‑IP cell line compared with its parental cell line, SKOV3, and in ovarian cancer tissues compared with in normal tissues. In addition, FXYD5 upregulation was predictive of poor patient survival. Furthermore, through various in vitro (Transwell assay, clonogenic assay and western blot analysis) and in vivo (nude mouse model) experiments, it was demonstrated that FXYD5 promoted the metastasis of ovarian cancer cells. Mechanistically, RNA sequencing, western blot analysis, a luciferase reporter assay and chromatin immunoprecipitation were performed to reveal that FXYD5 dispersed the SMAD7‑SMAD specific E3 ubiquitin protein ligase 2‑TGF‑β receptor 1 (TβR1) complex, deubiquitinated and stabilized TβR1, and subsequently enhanced transforming growth factor‑β (TGF‑β) signaling and sustained TGF‑β‑driven epithelial‑mesenchymal transition (EMT). The TGF‑β‑activated SMAD3/SMAD4 complex was in turn directly recruited to the FXYD5 promoter region, interacted with specific SMAD‑binding elements, and then promoted FXYD5 transcription. In brief, FXYD5 positively regulated TGF‑β/SMADs signaling activities, which in turn induced FXYD5 expression, creating a positive feedback loop to drive EMT in the process of ovarian cancer progression. Collectively, the findings of the present study suggested a mechanism through which FXYD5 serves a critical role in the constitutive activation of the TGF‑β/SMADs signaling pathways in ovarian cancer, and provided a promising therapeutic target for human ovarian cancer."	"[Corrigendum] Hypoxia drives the transition of human dermal fibroblasts to a myofibroblast‑like phenotype via the TGF‑β1/Smad3 pathway. Following the publication of this article, the authors noticed that the published versions of Figs. 2, 7 and 8 contained incorrect western bands. In examining their raw data, the authors realized that they had used the fibroblasts of keloids [high expression of alpha‑smooth muscle actin (α‑SMA)] instead of adult dermal fibroblasts (low expression of α‑SMA) in certain experiments. Note that no significant differences in morphology exist between myofibroblasts (from keloids) and fibroblasts (from normal dermal tissue). These errors were brought to light since the authors identified that the expression of α‑SMA in Fig. 8 was higher compared with that in Fig. 4. After careful scrutiny, they established that the first author, Bin Zhao, who performed the experiments and analyzed the data shown in Figs. 2, 7 and 8, had mislabelled the myofibroblasts as fibroblasts. However, for all the other experiments in the above‑mentioned article, the cells had been used correctly. The authors regret that these errors were featured in the above‑mentioned article, which may possibly have caused confusion for the readers, and the corrected versions of Figs. 2, 7 and 8 are shown opposite and on the next page. These changes did not affect either the results or the conclusions reported in this paper. The authors apologize to the Editor of International Journal of Molecular Medicine and to the readership for any inconvenience caused. [the original article was published in International Journal of Molecular Medicine 39: 153‑159, 2017; DOI: 10.3892/ijmm.2016.2816]."	"Sirtuin 6 deficiency transcriptionally up-regulates TGF-β signaling and induces fibrosis in mice. Caloric restriction has been associated with increased life span and reduced aging-related disorders and reduces fibrosis in several diseases. Fibrosis is characterized by deposition of excess fibrous material in tissues and organs and is caused by aging, chronic stress, injury, or disease. Myofibroblasts are fibroblast-like cells that secrete high levels of extracellular matrix proteins, resulting in fibrosis. Histological studies have identified many-fold increases of myofibroblasts in aged organs where myofibroblasts are constantly generated from resident tissue fibroblasts and other cell types. However, it remains unclear how aging increases the generation of myofibroblasts. Here, using mouse models and biochemical assays, we show that sirtuin 6 (SIRT6) deficiency plays a major role in aging-associated transformation of fibroblasts to myofibroblasts, resulting in tissue fibrosis. Our findings suggest that SIRT6-deficient fibroblasts transform spontaneously to myofibroblasts through hyperactivation of transforming growth factor β (TGF-β) signaling in a cell-autonomous manner. Importantly, we noted that SIRT6 haploinsufficiency is sufficient for enhancing myofibroblast generation, leading to multiorgan fibrosis and cardiac dysfunction in mice during aging. Mechanistically, SIRT6 bound to and repressed the expression of key TGF-β signaling genes by deacetylating SMAD family member 3 (SMAD3) and Lys-9 and Lys-56 in histone 3. SIRT6 binding to the promoters of genes in the TGF-β signaling pathway decreased significantly with age and was accompanied by increased binding of SMAD3 to these promoters. Our findings reveal that SIRT6 may be a potential candidate for modulating TGF-β signaling to reduce multiorgan fibrosis during aging and fibrosis-associated diseases."	"Computational investigation of a ternary model of SnoN-SMAD3-SMAD4 complex. The transforming growth factor β (TGFβ) plays an essential role in the regulation of cellular processes such as cell proliferation, migration, differentiation, and apoptosis by association with SMAD transcriptional factors that are regulated by the transcriptional regulator SnoN. The crystal structure of SnoN-SMAD4 reveals that SnoN can adopt two binding modes, the open and closed forms, at the interfaces of SMAD4 subunits. Accumulating evidence indicates that SnoN can interact with both SMAD3 and SMAD4 to form a ternary SnoN-SMAD3-SMAD4 complex in the TGFβ signaling pathway. However, how the interaction of SnoN with the SMAD3 and SMAD4 remains unclear. Here, molecular dynamics (MD) simulations and molecular modeling methods were performed to figure out this issue. The simulations reveal that SnoN<sup>open</sup> exists in two, open and semi-closed, conformations. Molecular modeling and MD simulation studies suggest that the SnoN<sup>closed</sup> form interferes with the SMAD3-SMAD4 protein; in contract, the SnoN<sup>open</sup> can form a stable SnoN-SMAD3-SMAD4 complex. These mechanistic mechanisms may help elucidate the detailed engagement of SnoN with two SMAD3 and SMAD4 transcriptional factors in the regulation of TGFβ signaling pathway."	"Prediction of clusters of miRNA binding sites in mRNA candidate genes of breast cancer subtypes. The development of breast cancer (BC) subtypes is controlled by distinct sets of candidate genes, and the expression of these genes is regulated by the binding of their mRNAs with miRNAs. Predicting miRNA associations and target genes is thus essential when studying breast cancer. The MirTarget program identifies the initiation of miRNA binding to mRNA, the localization of miRNA binding sites in mRNA regions, and the free energy from the binding of all miRNA nucleotides with mRNA. Candidate gene mRNAs have clusters (miRNA binding sites with overlapping nucleotide sequences). mRNAs of EPOR, MAZ and NISCH candidate genes of the HER2 subtype have clusters, and there are four clusters in mRNAs of MAZ, BRCA2 and CDK6 genes. Candidate genes of the triple-negative subtype are targets for multiple miRNAs. There are 11 sites in CBL mRNA, five sites in MMP2 mRNA, and RAB5A mRNA contains two clusters in each of the three sites. In SFN mRNA, there are two clusters in three sites, and one cluster in 21 sites. Candidate genes of luminal A and B subtypes are targets for miRNAs: there are 21 sites in FOXA1 mRNA and 15 sites in HMGA2 mRNA. There are clusters of five sites in mRNAs of ITGB1 and SOX4 genes. Clusters of eight sites and 10 sites are identified in mRNAs of SMAD3 and TGFB1 genes, respectively. Organizing miRNA binding sites into clusters reduces the proportion of nucleotide binding sites in mRNAs. This overlapping of miRNA binding sites creates a competition among miRNAs for a binding site. From 6,272 miRNAs studied, only 29 miRNAs from miRBase and 88 novel miRNAs had binding sites in clusters of target gene mRNA in breast cancer. We propose using associations of miRNAs and their target genes as markers in breast cancer subtype diagnosis."	"Clusterin Attenuates Hepatic Fibrosis by Inhibiting Hepatic Stellate Cell Activation and Downregulating the Smad3 Signaling Pathway. Clusterin is a glycoprotein that is expressed in most human tissues and found in body fluids. In our previous studies we demonstrated that clusterin has a protective effect against hepatic lipid accumulation and renal fibrosis; however, the role of clusterin in hepatic fibrosis is unknown. Here, we examined whether clusterin had protective effects against hepatic fibrosis using in vitro and in vivo models. Clusterin was upregulated in the livers of human cirrhotic patients and in thioacetamide (TAA)-induced and bile duct ligation mouse models of liver fibrosis. Loss and overexpression of clusterin promoted and attenuated hepatic fibrosis after TAA injection, respectively. In addition, we found that clusterin attenuates hepatic fibrosis by inhibiting the activation of hepatic stellate cells and Smad3 signaling pathways. Thus, clusterin plays an important role in hepatic fibrosis."	"Long Noncoding RNA ASLNC07322 Functions in VEGF-C Expression Regulated by Smad4 during Colon Cancer Metastasis. Deletion and mutation of the Smad4 gene are favorable events for the progression of colon cancer, which is related to the negative regulation of vascular endothelial growth factor C (VEGF-C). However, the regulatory mechanism between Smad4 and VEGF-C remains unclear. We reported first that Smad4 can increase the transcription of miR-128-3p, a microRNA targeting VEGF-C mRNA, resulting in a negative correlation between Smad4 and VEGF-C. Moreover, we found that Smad4 combined with Smad3 can positively regulate VEGF-C during colon cancer metastasis through binding to VEGF-C gene promoter. Further, results revealed a mechanism that long noncoding RNA (lncRNA) ASLNC07322 increased specifically in metastatic colon cancer and decreased miR-128-3p as a sponge, leading to a subsequent elevation of VEGF-C. In a word, there are two pathways in the progression of colon cancer, including Smad4/miR-128-3p/VEGF-C and Smad4/VEGF-C pathways in non-metastatic and metastatic colon cancer, respectively. ASLNC07322 crucially controlled this negative and positive regulatory transformation between them. Additionally, ASLNC07322 knockdown combined with Smad4 overexpression could efficiently inhibit lymphatic endothelial cells (LECs) proliferation and tube formation in vitro, as well as tumor growth and lymphangiogenesis in vivo. These data explained the underlying mechanism of Smad4 contribution on VEGF-C expression during metastasis where ASLNC07322 functions vitally as a switch in colon cancer."	"TGF-β1 mediated Smad signaling pathway and EMT in hepatic fibrosis induced by Nano NiO in vivo and in vitro. Nickel oxide nanoparticles (Nano NiO) bears hepatotoxicity, while whether it leads to liver fibrosis remains unclear. The aim of this study was to establish the Nano NiO-induced hepatic fibrosis model in vivo and investigate the roles of transforming growth factor β1 (TGF-β1) in Smad pathway activation, epithelial-mesenchymal transition (EMT) occurrence, and extracellular matrix (ECM) deposition in vitro. Male Wistar rats were exposed to 0.015, 0.06, and 0.24 mg/kg Nano NiO by intratracheal instilling twice a week for 9 weeks. HepG2 cells were treated with 100 μg/mL Nano NiO and TGF-β1 inhibitor (SB431542) to explore the mechanism of collagen formation. Results of Masson staining as well as the elevated levels of type I collagen (Col-I) and Col-III suggested that Nano NiO resulted in hepatic fibrosis in rats. Furthermore, Nano NiO increased the protein expression of TGF-β1, p-Smad2, p-Smad3, alpha-smooth muscle actin (α-SMA), matrix metalloproteinase9 (MMP9), and tissue inhibitors of metalloproteinase1 (TIMP1), while decreased the protein content of E-cadherin and Smad7 in rat liver and HepG2 cells. Most importantly, Nano NiO-triggered the abnormal expression of the abovementioned proteins were all alleviated by co-treatment with SB431542, implying that TGF-β1-mediated Smad pathway, EMT and MMP9/TIMP1 imbalance were involved in overproduction of collagen in HepG2 cells. In conclusion, these findings indicated that Nano NiO induced hepatic fibrosis via TGF-β1-mediated Smad pathway activation, EMT occurrence, and ECM deposition."	"Deletion of Smad3 prevents renal fibrosis and inflammation in type 2 diabetic nephropathy. Transforming growth factor (TGF)-β/Smad3 signaling is highly activated in kidneys of patients with type 2 diabetic nephropathy (T2DN), however, the precise role of Smad3 in the pathogenesis of diabetic nephropathy remains unclear. Smad3 knockout (KO)-db/db mice were generated by intercrossing of male and female double-heterozygous Smad3<sup>+/</sup><sup>-</sup> db/m mice. Renal functions including urinary albumin excretion and serum creatinine were determined. Renal histological injury including renal fibrosis and inflammation were examined by periodic acid Schiff (PAS), periodic acid-silver methenamine (PASM), and immunohistochemistry (IHC) staining. Smad3 knockout (KO)-db/db mice were protected from the development of diabetic kidney injury, characterized by the normal levels of urinary albumin excretion and serum creatinine without any evidence for renal fibrosis and inflammation. In contrast, Smad3 wild-type (WT) db/db and Smad3<sup>+/</sup><sup>-</sup> db/db mice developed progressively decline in renal function over the 12 to 32-week time course, including increased microalbuminuria and elevated levels of serum creatinine. Pathologically, Smad3 WT db/db and Smad3<sup>+/</sup><sup>-</sup> db/db mice exhibited a marked deposition of collagen-I (colI), collagen-IV(col-IV), and an increased infiltration of F4/80<sup>+</sup> macrophages in kidney. Mechanistically, Smad3 deficiency decreased the lncRNA Erbb4-IR transcription, while increased miR-29b transcription and therefore protected the kidney from progressive renal injury in db/db mice. Results from this study imply that Smad3 may represent as a novel and effective therapeutic target for T2DN."	"miR-145-5p attenuates hypertrophic scar via reducing Smad2/Smad3 expression. The study was designed to explore the underlying mechanism of micro ribonucleic acids (miR)-145-5p in the process of hypertrophic scar (HS). The difference in the relative content of miR-145-5p between HS and adjacent normal skin collected from 5 patients was detected via RT-PCR. Expressions of Smad2 and Smad3 with or without TGF-β1 was detected by western blotting. Fibroblasts apoptosis rate was examined by Annexin V/Propidium Iodide double staining. HS fibroblasts (HSFs) were isolated from HS tissues, cultured and then divided into control group, miR-145-5p inhibitor group (transfected with miR-145-5p inhibitor) and miR-145-5p mimic group (transfected with miR-145-5p plasmid) based on different treatment methods. Next, CCK-8 was employed to examine the function of miR-145-5p in HSF proliferation. Luciferase assay was conducted to confirm whether Smad2/3 were direct targets of miR-145-5p, and RT-PCR was done to measure the expression of miR-145-5p, Smad2/Smad3 and fibrosis-related genes of fibroblasts in three groups. Wound injury mice model was established to determine the function of miR-145-5p in regulating scar formation. miR-145-5p was found lowly expressed in HS tissues. Compared with Control group, miR-145-5p mimic decreased the levels of Smad2/3, arrested the activation and proliferation of HSFs and induced HSFs apoptosis. Overexpressing miR-145-5p achieved the contrary results. Smad2/3 was confirmed as the target of miR-145-5p. Moreover, miR-145-5p mimic decreased the recruitment of fibroblasts in vivo and decreased the expression of fibrosis-related genes after wound injury. In conclusion, miR-145-5p arrests the development of fibrogenesis and decreases HS formation by reducing the expression of Smad2/3. miR-145-5p may be an optional novel molecular target for treating HS."	"TGF-β1 activates RSC96 Schwann cells migration and invasion through MMP-2 and MMP-9 activities. Following peripheral nerve injury, remnant Schwann cells adopt a migratory phenotype and remodel the extracellular matrix allowing axonal regrowth. Although much evidence has demonstrated that TGF-β1 promotes glioma cell motility and induces the expression of extracellular matrix proteins, the effects of TGF-β1 on Schwann cell migration has not yet been studied. We therefore investigated the cellular effects and the signal transduction pathways evoked by TGF-β1 in rattus norvegicus neuronal Schwann RSC96 cell. TGF-β1 significantly increased migration and invasion of Schwann cells assessed by the wound-healing assay and by cell invasion assay. TGF-β1-enhanced migration/invasion was blocked by inhibition of MMP-2 and MMP-9. Consistently, by real-time and western blot analyses, we demonstrated that TGF-β1 increased MMP-2 and MMP-9 mRNA and protein levels. TGF-β1 also increased MMPs activities in cell growth medium, as shown by gelatin zymography. The selective TGF-β Type I receptor inhibitor SB431542 completely abrogated any effects by TGF-β1. Indeed, TGF-β1 Type I receptor activation provoked the cytosol-to-nucleus translocation of SMAD2 and SMAD3. SMAD2 knockdown by siRNA blocked MMP-2 induction and cell migration/invasion due to TGF-β1. TGF-β1 also provoked phosphorylation of MAPKs extracellular regulated kinase 1/2 and JNK1/2. Both MAPKs were upstream to p65/NF-kB inasmuch as both MAPKs' inhibitors PD98059 and SP600125 or their down-regulation by siRNA significantly blocked the TGF-β1-induced nuclear translocation of p65/NF-kB. In addition, p65/NF-κB siRNA knockdown inhibited the effects of TGF-β1 on both MMP-9 and cell migration/invasion. We conclude that TGF-β1 controls RSC96 Schwann cell migration and invasion through MMP-2 and MMP-9 activities. MMP-2 is controlled by SMAD2 whilst MMP-9 is controlled via an ERK1/2-JNK1/2-NF-κB dependent pathway."	"Calcitriol inhibits migration and invasion of renal cell carcinoma cells by suppressing Smad2/3-, STAT3- and β-catenin-mediated epithelial-mesenchymal transition. Low vitamin D status is associated with progression in patients with renal cell carcinoma (RCC). The present study found that vimentin, a mesenchymal marker, was accordingly upregulated, and E-cadherin, an epithelial marker, was downregulated in RCC patients with low vitamin D status. Thus, we investigated the effects of calcitriol or vitamin D3, an active form of vitamin D, on epithelial-mesenchymal transition (EMT) in RCC cells. RCC cells were treated by two models. In model 1, three RCC cell lines, ACHN, 786-O and CAKI-2, were incubated with either LPS (2.0 μg/mL) or transforming growth factor (TGF)-β1 (10 ng/mL) in the presence or absence of calcitriol (200 nmol/L). In model 2, two RCC cell lines, ACHN and CAKI-2, were incubated with calcitriol (200 nmol/L) only. Calcitriol inhibited migration and invasion not only in TGF-β1-stimulated but also in TGF-β1-unstimulated RCC cells. Moreover, calcitriol suppressed E-cadherin downregulation and vimentin upregulation not only in TGF-β1-stimulated but also in TGF-β1-unstimulated ACHN and CAKI-2 cells. Calcitriol attenuated LPS-induced upregulation of MMP-2, MMP-7, MMP-9, MMP-26 and urokinase-type plasminogen activator (u-PA) in ACHN cells. In addition, calcitriol blocked TGF-β1-induced nuclear translocation of ZEB1, Snail and Twist1 in ACHN and CAKI-2 cells. Mechanistically, calcitriol suppressed EMT through different signaling pathways: (i) calcitriol suppressed Smad2/3 phosphorylation by reinforcing physical interaction between vitamin D receptor (VDR) and Smad3 in TGF-β1-stimulated RCC cells; (ii) calcitriol inhibited signal transducer and activator of transcription (STAT)3 activation in LPS-stimulated RCC cells; (iii) calcitriol inhibited β-catenin/TCF-4 activation by promoting integration of VDR with β-catenin in TGF-β1-unstimulated RCC cells. Taken together, calcitriol inhibits migration and invasion of RCC cells partially by suppressing Smad2/3-, STAT3- and β-catenin-mediated EMT."	"Delayed administration of suramin attenuates peritoneal fibrosis in rats. Peritoneal fibrosis is the most common complication of peritoneal dialysis, but there is currently no effective treatment. We previously reported that suramin pretreatment prevents the development of peritoneal fibrosis in a rat model of peritoneal fibrosis induced by chlorhexidine gluconate (CG). Here, we further examined the effectiveness of delayed administration of suramin on peritoneal fibrosis and the mechanism (s) involved in this process. In the rat model of peritoneal fibrosis induced by CG, suramin or saline was administered at day 21 and 28. All rats were then sacrificed to collect peritoneal tissues for Western blot analysis and histological staining at day 35. Our results demonstrated that delayed administration of suramin starting at 21 days following CG injection can ameliorate peritoneal damage, with greater efficacy after two injections. Suramin also reduced the expression of α-smooth muscle actin, Collagen 1, and Fibronectin and suppressed phosphorylation of Smad-3, epidermal growth factor receptor (EGFR), signal transducers, activator of transcription 3 (STAT3) as well as extracellular signal-regulated kinases 1/2 (ERK 1/2) in the peritoneum injured with CG. Moreover, delayed administration of suramin inhibited overproduction of transforming growth factor-β1(TGF-β1) and expression of several pro-inflammatory cytokines, including monocyte chemoattractant protein-1, tumor necrosis factor-α, interleukin-1, and interleukin-6. Our results indicated that suramin can attenuate progression of peritoneal fibrosis by a mechanism involving inhibition of the TGF-β1/Smad3 and EGFR signaling pathways as well as suppression of multiple proinflammatory cytokines. Thus, suramin may have the potential to offer an effective treatment for peritoneal fibrosis."	"TGF-β1 relieves epithelial-mesenchymal transition reduction in hypospadias induced by DEHP in rats. To investigate the potential mechanism of hypospadias induced by DEHP in rats to reveal the preventative effect of TGF-β1 in hypospadias induced by DEHP via the reduction of EMT. Time-mated Sprague-Dawley rats underwent cesarean section, and the penises of male pups were collected after exposure to corn oil or DEHP to establish a rat model of hypospadias and to further study the molecular mechanisms of hypospadias in vivo. In addition, the penises were cultured and treated with MEHP or MEHP+TGF-β1 in vitro. Subsequently, histomorphology and elements in TGF-β/Smad signaling pathway changes were evaluated using scanning electron microscopy, immunofluorescence, polymerase chain reaction, and western blot. The development of rat penis and urethral seam fusion were delayed after the treatment with DEHP in vivo or MEHP in vitro compared with the Control group. Moreover, TGF-β1, Smad2/Smad3, and the mesenchymal biomarkers, including α-SMA, N-cadherin, and Vimentin, were decreased. However, the epithelial biomarkers, including E-cadherin, ZO-1, β-catenin, and occludin, were increased. In addition, TGF-β1 could relieve all of the above changes. Gestational DEHP exposure could lead to hypospadias by reducing urethral EMT. Moreover, TGF-β1 could prevent it by regenerating EMT through activating the TGF-β/Smad signal pathway."	"Ras inhibits TGF-β-induced KLF5 acetylation and transcriptional complex assembly via regulating SMAD2/3 phosphorylation in epithelial cells. Acetylated Kruppel-like factor 5 (KLF5) is essential for transforming growth factor-β (TGF-β) to properly regulate gene transcription in the inhibition of cell proliferation and tumor growth. Ras oncogenic signaling can convert TGF-β from a tumor suppressor to a tumor promoter; however, its ability to utilize the KLF5 transcription factor to modulate TGF-β functions is still unknown. Therefore, in this study, we sought to determine whether Ras signaling altered TGF-β-induced KLF5 acetylation and the assembly of the p300-KLF5-SMADs transcriptional complex in gene regulation. Not only did we determine that Ras signaling inhibited TGF-β-induced KLF5 acetylation and interfered with TGF-β function in p15 induction and Myc repression, but also TGF-β-induced SMAD3 C-terminal region phosphorylation was necessary for TGF-β to induce KLF5 acetylation. Moreover, Ras activation further interrupted the interactions amongst p300, KLF5, and SMAD4, as well as the binding of p300-KLF5-SMADs complex onto the TGF-β-responsive promoter elements for both p15 and Myc. These findings suggested that KLF5 mediated the crosstalk between TGF-β and Ras signaling, and that suppression of TGF-β-induced KLF5 acetylation by Ras activation; this altered TGF-β-induced assembly of p300-KLF5-SMADs complex onto gene promoters to convert the function of TGF-β in gene regulation."	"MiR-26b Suppresses the Development of Stanford Type A Aortic Dissection by Regulating HMGA2 and TGF-β/Smad3 Signaling Pathway. Stanford type A aortic dissection (TAAD) is one of the most dangerous cardiovascular diseases. MicroRNAs (miRNAs) have been considered as potential therapeutic targets for TAAD. In this present study, we aimed to investigate the functional role and regulatory mechanism of miR-26b in TAAD development. MiR-26b mRNA expression was detected by real-time polymerase chain reaction (RT-PCR) and protein levels were measured by Western blot. Verifying the direct target of miR-26b was used by dual luciferase assay, RT-PCR, and Western blot. Cell Counting Kit-8 (CCK-8) and TUNEL staining assays were applied for detecting rat aortic vascular smooth muscle cells (VSMCs) viability and apoptosis, respectively. We found that miR-26b was under-expressed in TAAD patients and closely associated with the poor prognosis of TAAD patients. Re-expression of miR-26b facilitated while knockdown of miR-26b inhibited VSMC proliferation. However, miR-26b showed the opposite effect on cell apoptosis. More importantly, high-mobility group AT-hook 2 (HMGA2) was verified as the direct target of miR-26b. Furthermore, transforming growth factor beta (TGF-β)/Smad3 signaling pathway was involved in the development of TAAD modulated by miR-26b. miR-26b impeded TAAD development by regulating HMGA2 and TGF-β/Smad3 signaling pathway, which provided a potential biomarker for TAAD treatment."	"Epidermal growth factor receptor signaling suppresses αvβ6 integrin and promotes periodontal inflammation and bone loss. In periodontal disease (PD), bacterial biofilms cause gingival inflammation, leading to bone loss. In healthy individuals, αvβ6 integrin in junctional epithelium maintains anti-inflammatory transforming growth factor-β1 (TGF-β1) signaling, whereas its expression is lost in individuals with PD. Bacterial biofilms suppress β6 integrin expression in cultured gingival epithelial cells (GECs) by attenuating TGF-β1 signaling, leading to an enhanced pro-inflammatory response. In the present study, we show that GEC exposure to biofilms induced activation of mitogen-activated protein kinases and epidermal growth factor receptor (EGFR). Inhibition of EGFR and ERK stunted both the biofilm-induced ITGB6 suppression and IL1B stimulation. Furthermore, biofilm induced the expression of endogenous EGFR ligands that suppressed ITGB6 and stimulated IL1B expression, indicating that the effects of the biofilm were mediated by autocrine EGFR signaling. Biofilm and EGFR ligands induced inhibitory phosphorylation of the TGF-β1 signaling mediator Smad3 at S208. Overexpression of a phosphorylation-defective mutant of Smad3 (S208A) reduced the β6 integrin suppression. Furthermore, inhibition of EGFR signaling significantly reduced bone loss and inflammation in an experimental PD model. Thus, EGFR inhibition may provide a target for clinical therapies to prevent inflammation and bone loss in PD."	"Tanshinone IIA attenuates silica-induced pulmonary fibrosis via inhibition of TGF-β1-Smad signaling pathway. Transforming growth factor-β 1 (TGF-β1) is a key mediator in fibrogenesis, and is upregulated and activated in fibrotic diseases. The exact role of TGF-β1-Smad signaling in the progression of silicosis fibrosis is yet to be conclusively determined. Using a Wistar rat silicosis model, we examined whether tanshinone IIA (Tan IIA) could meliorate silicosis fibrosis. The pulmonary fibroblasts of rats from the normal control group and silicosis-induced model group were extracted and examined so as to further explore the disruption of TGF-β1-Smad signaling pathway in silicosis pathogenesis and the intervention of Tan IIA in this pathway. Using RT-PCR, immunohistochemical staining, and immunofluorescence analysis, we determined that Tan IIA could ameliorate silicosis fibrosis, downregulate collagen I, collagen III, and α-SMA expression both, in vivo and in vitro. In silicosis fibroblasts, TGF-β1 induced phosphorylation of Smad2, Smad3, and negative feedback Smad7 inhibition in a dose dependent manner, and the phosphorylation of Smad3 persisted when the upstream signal was blocked. Tan IIA treatment effectively inhibited the TGF-β1-induced phosphorylation of Smads, especially the persistent phosphorylation of Smad3 in the nucleus, and upregulated the expression of Smad7 in silicosis fibroblasts, leading to a reduction in ECM deposition. Our findings indicate that dysregulation of the TGF-β1-Smad signaling pathway may play an important role in the pathological process of silicosis. Tan IIA thus ameliorates silicosis fibrosis partially by suppressing activation of TGF-β1-Smad signaling pathway, which may turn out to be a potential therapeutic approach to prevent silicosis fibrosis."	"Extract of Averrhoacarambola L. (Oxalidaceae) roots ameliorates carbon tetrachloride-induced hepatic fibrosis in rats. The root of Averrhoa carambola L. (Oxalidaceae), a traditional Chinese medicine, was mainly used in ancient times in the treatment of urinary calculi, recurrent headache and joint pain. Our aims were to explore the potential therapeutic effect of the extract of Averrhoa carambola L. (Oxalidaceae) roots (EACR) against hepatic fibrosis in CCl4-treated rats and to understand the underlying molecular mechanism. Six groups of male Sprague Dawley rats were treated as follows: vehicle (olive oil), CCl4 alone, CCl4+colchicine, CCl4+EACR 1.0 g/kg, CCl4+EACR 0.5 g/kg and CCl4+EACR 0.25 g/kg. At the end of the 12<sup>th</sup> week, biomarkers of liver function, liver fibrosis, hepatic oxidative stress and antioxidant status were assayed, and histopathological and immunohistochemical evaluation of liver tissue were conducted to investigate the liver damage and fibrosis degree. Furthermore, expressions of COL-1a1, α-SMA, TGF-β1, Smad2, smad3, Smad4 and TIMP2 were examined by qPCR and/or western blot. The expressions of apoptosis-related proteins were also detected using western blot analysis. EACR treatment markedly reduced the CCl4-induced elevation of serum aminotransferase activities, liver fibrosis indexes, and the extent of oxidative stress. EACR treatment also significantly reduced the accumulation of collagen and the immunostaining of α-SMA, TGF-β1 and Smad2, 4 and 7 in the liver of CCl4 treated rats. In addition, EACR treatment markedly reversed the CCl4-induced increase in mRNA expression of COL-1a1, α-SMA, TIMP2, TGF-β1, Smad2 and Smad4 and suppressed the expressions of α-SMA, TIMP2, TGF-β1, smad2, 3 and 4, BAX and cleaved caspase-3 proteins. Meanwhile, EACR treatment also significantly elevated the mRNA expression of Smad7 and the protein expression of Smad7 and Bcl-2. These results suggest that EACR has protective activity against liver fibrosis. The anti-fibrotic activity of EACR in vivo is associated with enhanced antioxidant, apoptosis-inhibition and increased MMP-2/TIMP-2 expression ratio, and with modulation of TGF-β1/Smad signaling pathway."	"Hydrogen sulfide attenuates cigarette smoke-induced airway remodeling by upregulating SIRT1 signaling pathway. Airway remodeling is one of the characteristics for chronic obstructive pulmonary disease (COPD). The mechanism underlying airway remodeling is associated with epithelial-mesenchymal transition (EMT) in the small airways of smokers and patients with COPD. Sirtuin 1 (SIRT1) is able to reduce oxidative stress, and to modulate EMT. Here, we investigated the effects and mechanisms of hydrogen sulfide (H2S) on pulmonary EMT in vitro and in vivo. We found that H2S donor NaHS inhibited cigarette smoke (CS)-induced airway remodeling, EMT and collagen deposition in mouse lungs. In human bronchial epithelial 16HBE cells, NaHS treatment also reduced CS extract (CSE)-induced EMT, collagen deposition and oxidative stress. Mechanistically, NaHS upregulated SIRT1 expression, but inhibited activation of TGF-β1/Smad3 signaling in vivo and in vitro. SIRT1 inhibition by a specific inhibitor EX527 significantly attenuated or abolished the ability of NaHS to reverse the CSE-induced oxidative stress. SIRT1 inhibition also abolished the protection of NaHS against CSE-induced EMT. Moreover, SIRT1 activation attenuated CSE-induced EMT by modifying TGF-β1-mediated Smad3 transactivation. In conclusion, H2S prevented CS-induced airway remodeling in mice by reversing oxidative stress and EMT, which was partially ameliorated by SIRT1 activation. These findings suggest that H2S may have therapeutic potential for the prevention and treatment of COPD."	"Evogliptin, a Dipeptidyl Peptidase-4 Inhibitor, Attenuates Renal Fibrosis Caused by Unilateral Ureteral Obstruction in Mice. Renal fibrosis is considered to be the final common outcome of chronic kidney disease. Dipeptidyl peptidase-4 (DPP-4) inhibitors have demonstrated protective effects against diabetic kidney disease. However, the anti-fibrotic effect of evogliptin, a DPP-4 inhibitor, has not been studied. Here, we report the beneficial effects of evogliptin on unilateral ureteral obstruction (UUO)-induced renal fibrosis in mice. Evogliptin attenuated UUO-induced renal atrophy and tubulointerstitial fibrosis. Immunohistochemistry and Western blotting demonstrated that evogliptin treatment inhibits pro-fibrotic gene expressions and extracellular matrix production. In vitro findings showed that the beneficial effects of evogliptin on renal fibrosis are mediated by inhibition of the transforming growth factor-β/Smad3 signaling pathway. The present study demonstrates that evogliptin is protective against UUO-induced renal fibrosis, suggesting that its clinical applications could extend to the treatment of kidney disease of non-diabetic origin."	"FOXO1 Negates the Cooperative Action of FOXL2<sup>C134W</sup> and SMAD3 in CYP19 Expression in HGrC1 Cells by Sequestering SMAD3. Adult granulosa cell tumor (aGCT) is a rare type of ovarian cancer characterized by estrogen excess. Interestingly, only the single somatic mutation FOXL2<sup> C134W </sup> was found across virtually all aGCTs. We previously reported that FOXL2<sup>C134W</sup> stimulates CYP19 transcription synergistically with SMAD3, leading to elevated estradiol synthesis in a human granulosa cell line (HGrC1). This finding suggested a key role for FOXL2<sup>C134W</sup> in causing the typical estrogen overload in patients with aGCTs. We have now investigated the effect of FOXO1, a tumor suppressor, on CYP19 activation by FOXL2<sup>C134W</sup> in the presence of SMAD3. Intriguingly, FOXO1 antagonized the positive, synergistic effect of FOXL2<sup>C134W</sup> and SMAD3 on CYP19 transcription. Similar to FOXL2<sup>C134W</sup>, FOXO1 binds SMAD3 but not the proximal FOXL2<sup>C134W</sup> binding site (-199 bp) of the CYP19 promoter identified in our earlier studies. The results of a competitive binding assay suggested a possible underlying mechanism in which FOXO1 sequesters SMAD3 away from FOXL2<sup>C134W</sup>, thereby negating the cooperative action of FOXL2<sup>C134W</sup> and SMAD3 in inducing CYP19 expression. To our knowledge, this study is the first to demonstrate the ability of FOXO1 to restore an altered CYP19 expression by FOXL2<sup>C134W</sup> and SMAD3 and provides insight as to why FOXO1 deficiency promotes GCT development in mice."	"PQQ ameliorates skeletal muscle atrophy, mitophagy and fiber type transition induced by denervation via inhibition of the inflammatory signaling pathways. Skeletal muscle atrophy involves and requires widespread changes in skeletal muscle gene expression and signaling pathway, resulting in excessive loss of muscle mass and strength, which is associated with poor prognosis and the decline of life quality in several diseases. However, the treatment of skeletal muscle atrophy remains an unresolved challenge to this day. The aim of the present study was to investigate the influence of pyrroloquinoline quinone (PQQ), a redox-active o-quinone found in various foods and mammalian tissues, on skeletal muscle atrophy, and to explore the underlying molecular mechanism. After denervation, mice were injected intraperitoneally with saline plus PQQ (5 mg/kg/d) or saline only for 14 days. The level of inflammatory cytokines in tibialis anterior (TA) muscles was determined by quantitative real-time polymerase chain reaction (qRT-PCR) and enzyme-linked immunosorbent assay (ELISA), and the level of signaling proteins of Janus kinase 2/signal transduction and activator of transcription 3 (Jak2/STAT3), TGF-β1/Smad3, JNK/p38 MAPK, and nuclear factor κB (NF-κB) signaling pathway were detected by Western blot. The skeletal muscle atrophy was evaluated by muscle wet weight ratio and cross-sectional areas (CSAs) of myofibers. The mitophagy was observed through transmission electron microscopy (TEM) analysis, and muscle fiber type transition was analyzed through fast myosin skeletal heavy chain antibody staining. The proinflammatory cytokines IL-6, IL-1β and TNF-α were largely induced in TA muscles after sciatic nerve transection. PQQ can significantly reverse this phenomenon, as evidenced by the decreased levels of proinflammatory cytokines IL-6, IL-1β and TNF-α. Moreover, PQQ could significantly attenuate the signal activation of Jak2/STAT3, TGF-β1/Smad3, JNK/p38 MAPK, and NF-κB in skeletal muscles after sciatic nerve transection. Furthermore, PQQ alleviated skeletal muscle atrophy, mitigated mitophagy and inhibited slow-to-fast muscle fiber type transition. These results suggested that PQQ could attenuate denervation-induced skeletal muscle atrophy, mitophagy and fiber type transition through suppressing the Jak2/STAT3, TGF-β1/Smad3, JNK/p38 MAPK, and NF-κB signaling pathways."	"Gremlin-1: An endogenous BMP antagonist induces epithelial-mesenchymal transition and interferes with redifferentiation in fetal RPE cells with repeated wounds. To investigate the role of Gremlin-1, which is an endogenous antagonist of the bone morphogenetic protein (BMP) signaling pathway, in inducing epithelium-mesenchymal transition (EMT) in fetal RPE cells after repeated wounds. Subconfluent repetitive passages in fetal RPE cells were regarded as a model of repeated wounds. A phase contrast microscope was used to observe the morphology and pigment formation in cells. The expression of GREM1 (Gene ID: 26585; OMIM 603054) and EMT- or RPE-related genes in cells was evaluated with quantitative PCR (qPCR). Recombinant human protein Gremlin-1 (0.1 μg/ml) was added every day to investigate the molecular effects of Gremlin-1 on fetal RPE cells. The cell migration rate was investigated using a cell wound scratch assay, and western blotting was used to analyze the representative proteins (P-cadherin, ZO-1, vimentin, Smad4, and phosphorylated-Smads). In addition, transfection of siRNA was used to explore the rescue effects on EMT cells through the downregulation of GREM1. Finally, LDN193189, which is a type of pan-inhibitor of BMP receptors, was used to verify whether complete blocking of the BMP pathway interferes with the redifferentiation in low-passage fetal cells, even if the cells were treated with transforming growth factor beta 1 (TGF-β) inhibitors. In fetal RPE cells, the expression of GREM1 were gradually upregulated with repetitive passages, and at the same time, the function-specific genes in fetal RPE cells (TJP1, PMEL, BEST1, RPE65, and MERTK) were downregulated while the EMT-specific genes were upregulated. In addition, GREM1 had a similar expression pattern as SNAI1, which is a key transcription factor to trigger EMT. Recombinant human Gremlin-1 promoted EMT with the upregulation of SNAI1 and elevated the cell migration rate in a cell scratch assay, as well as decreased the expression of two key transcription factors of RPE embryonic development (MITF and OTX2) and the RPE marker, RPE65. Furthermore, the EMT marker, vimentin, and the TGF-β pathway downstream transcription factor phosphorylated-Smad2 (p-Smad2) increased, but the epithelial marker, ZO-1, was reduced. Additionally, Smad4, which plays a role as a Snail1 cooperator by binding Smad3, was also increased. In contrast, GREM1 silencing increased the expression of MITF and OTX2, which means there was better redifferentiation in subconfluent fetal RPE cells, but it had little influence on p-Smad2 compared to the negative control group. Finally, by adding LDN193189, the BMP signaling pathway was blocked, and this block led to poor redifferentiation in low-passage cells, although the cells were treated with TGF-β inhibitors. In addition, as positive feedback to block the BMP pathway, GREM1 was subsequently upregulated. In fetal RPE cells, Gremlin-1 induces EMT and inhibits redifferentiation by promoting the TGF-β pathway and inhibiting the BMP pathway. GREM1 silencing alleviates EMT and increases the redifferentiation of cells by relieving the blockade of the BMP pathway. However, GREM1 silencing has no effects on the TGF-β pathway. Thus, Gremlin-1 may serve as a novel target to treat proliferative vitreoretinopathy (PVR) and inhibit subretinal fibrosis, which is a risk factor for influencing the therapeutic effects of anti-vascular endothelial growth factor (anti-VEGF) on neovascular age-related macular degeneration (nAMD)."	"Synthesis and discovery of new compounds bearing coumarin scaffold for the treatment of pulmonary fibrosis. Idiopathic pulmonary fibrosis, characterized by excess accumulation of extracellular matrix, involved in many chronic diseases or injuries, threatens human health greatly. We have reported a series of compounds bearing coumarin scaffold which potently inhibited TGF-β-induced total collagen accumulation in NRK-49F cell line and migration of macrophages. Compound 9d also suppressed the TGF-β-induced protein expression of COL1A1, α-SMA, and p-Smad3 in vitro. Meanwhile, 9d at a dose of 100 mg/kg/day through oral administrations for 4 weeks effectively alleviated infiltration of inflammatory cells in lung tissue and fibrotic degree in bleomycin-induced pulmonary fibrosis model, which may related to its inhibition of TGF-β/Smad3 pathway and anti-inflammation efficacy. In addition, 9d demonstrated decent bioavailability (F = 39.88%) and suitable eliminated half-life time (T1/2 = 13.09 h), suggesting that 9d could be a potential drug candidate for the treatment of fibrotic diseases."	"Platelets promote breast cancer cell MCF-7 metastasis by direct interaction: surface integrin α2β1-contacting-mediated activation of Wnt-β-catenin pathway. Integrin-mediated platelet-tumor cell contacting plays an important role in promoting epithelial-mesenchymal transition (EMT) transformation of tumor cells and cancer metastasis, but whether it occurs in breast cancer cells is not completely clear. The purpose of this study was to investigate the role of integrin α2β1 in platelet contacting to human breast cancer cell line MCF-7 and its effect on the EMT and the invasion of MCF-7 cells. Human platelets were activated by thrombin, and separated into pellets and releasates before the co-incubation with MCF-7 cells. Cell invasion was evaluated by transwell assay. The surface integrins on pellets and MCF-7 cells were inhibited by antibodies. The effect of integrin α2β1 on Wnt-β-catenin pathway was assessed by integrin α2β1-silencing and Wnt-β-catenin inhibitor XAV. The therapeutic effect of integrin α2β1-silencing was confirmed in the xenograft mouse model. Pellets promote the invasion and EMT of MCF-7 cells via direct contacting of surface integrin α2β1. The integrin α2β1 contacting activates Wnt-β-catenin pathway and promotes the expression of EMT proteins in MCF-7 cells. The activated Wnt-β-catenin pathway also promotes the autocrine of TGF-β1 in MCF-7 cells. Both Wnt-β-catenin and TGF-β1/pSmad3 pathways promote the expression of EMT proteins. Integrin α2β1-silencing inhibits breast cancer metastasis in vivo. The direct interaction between platelets and tumor cells exerts its pro-metastatic function via surface integrin α2β1 contacting and Wnt-β-catenin activation. Integrin α2β1-silencing has the potential effect of inhibiting breast cancer metastasis."	"Long Noncoding RNA FENDRR Exhibits Antifibrotic Activity in Pulmonary Fibrosis. Abnormal activation of lung fibroblasts contributes to the initiation and progression of idiopathic pulmonary fibrosis (IPF). The objective of the present study was to investigate the role of fetal-lethal noncoding developmental regulatory RNA (FENDRR) in the activation of lung fibroblasts. Dysregulated long noncoding RNAs in IPF lungs were identified by next-generation sequencing analysis from the two online datasets. FENDRR expression in lung tissues from patients with IPF and mice with bleomycin-induced pulmonary fibrosis was determined by quantitative real-time PCR. IRP1 (iron-responsive element-binding protein 1), a protein partner of FENDRR, was identified by RNA pulldown-coupled mass spectrometric analysis and confirmed by RNA immunoprecipitation. The interaction region between FENDRR and IRP1 was determined by cross-linking immunoprecipitation. The in vivo role of FENDRR in pulmonary fibrosis was studied using adenovirus-mediated gene transfer in mice. The expression of FENDRR was downregulated in fibrotic human and mouse lungs as well as in primary lung fibroblasts isolated from bleomycin-treated mice. TGF-β1 (transforming growth factor-β1)-SMAD3 signaling inhibited FENDRR expression in lung fibroblasts. FENDRR was preferentially localized in the cytoplasm of adult lung fibroblasts and bound IRP1, suggesting its role in iron metabolism. FENDRR reduced pulmonary fibrosis by inhibiting fibroblast activation by reducing iron concentration and acting as a competing endogenous RNA of the profibrotic microRNA-214. Adenovirus-mediated FENDRR gene transfer in the mouse lung attenuated bleomycin-induced lung fibrosis and improved lung function. Our data suggest that FENDRR is an antifibrotic long noncoding RNA and a potential therapeutic target for pulmonary fibrosis."	"MicroRNA-330-5p promotes the development of osteosarcoma by regulating SPRY2. MicroRNA is an endogenous, non-coding small RNA that has a significant role in regulating organisms and pathology. Previous studies have demonstrated that microRNA-330-5p was a cancer-promoting gene. However, the role of microRNA-330-5p in osteosarcoma (OS) has not been reported. The aim of this work was to explore the characteristics of microRNA-330-5p expression in OS, and to further study its expression in OS and its relationship with clinicopathological parameters and prognosis. Quantitative Real Time-Polymerase Chain Reaction (qRT-PCR) was performed to investigate the expression of microRNA-330-5p in 48 pairs of OS tissues and paracancer tissues, and to analyze the relationship between the expression of microRNA-330-5p and OS clinical indicators and patient prognosis. Meanwhile, qRT-PCR was performed to verify the microRNA-330-5p expression in OS cells. In addition, the microRNA-330-5p knockdown expression model was constructed using lentivirus in OS cell lines U2OS and MG63. The effects of microRNA-330-5p on the biological function of OS cells were analyzed by Cell Counting Kit-8 (CCK-8) and transwell experiments. The potential mechanism was explored by Western blot. In this paper, qRT-PCR results showed that the expression of microRNA-330-5p in OS was higher than that in paracancer tissues, and the difference was statistically significant. Compared with microRNA-330-5p low expression group, patients with high expression of microRNA -330-5p had a higher prevalence of distant metastasis and a lower overall survival rate. In vitro experiment showed that the proliferation, invasion and metastasis abilities of the cells in the microRNA-330-5p silencing group were markedly decreased compared with the negative control group (NC group). Western blot results demonstrated that microRNA-330-5p inhibitor can activate SPRY2 and regulate the expression of key proteins, such as p-Smad2, p-Smad3, TGF-β1, MMP9 and Vimentin in the TGF-β1/Smad signaling pathway. It was found that there was a mutual regulation between microRNA-330-5p and SPRY2, which promoted the malignant progression of OS. The expression of microRNA-330-5p was markedly increased in OS, which was associated with distant metastasis and poor prognosis. Furthermore, we found that microRNA-330-5p may promote the vicious progression of OS by inter-modulating SPRY2 and the TGF-β1/Smad signaling pathways."	"Epigenetic SMAD3 Repression in Tumor-Associated Fibroblasts Impairs Fibrosis and Response to the Antifibrotic Drug Nintedanib in Lung Squamous Cell Carcinoma. The tumor-promoting fibrotic stroma rich in tumor-associated fibroblasts (TAF) is drawing increased therapeutic attention. Intriguingly, a trial with the antifibrotic drug nintedanib in non-small cell lung cancer reported clinical benefits in adenocarcinoma (ADC) but not squamous cell carcinoma (SCC), even though the stroma is fibrotic in both histotypes. Likewise, we reported that nintedanib inhibited the tumor-promoting fibrotic phenotype of TAFs selectively in ADC. Here we show that tumor fibrosis is actually higher in ADC-TAFs than SCC-TAFs in vitro and patient samples. Mechanistically, the reduced fibrosis and nintedanib response of SCC-TAFs was associated with increased promoter methylation of the profibrotic TGFβ transcription factor SMAD3 compared with ADC-TAFs, which elicited a compensatory increase in TGFβ1/SMAD2 activation. Consistently, forcing global DNA demethylation of SCC-TAFs with 5-AZA rescued TGFβ1/SMAD3 activation, whereas genetic downregulation of SMAD3 in ADC-TAFs and control fibroblasts increased TGFβ1/SMAD2 activation, and reduced their fibrotic phenotype and antitumor responses to nintedanib in vitro and in vivo. Our results also support that smoking and/or the anatomic location of SCC in the proximal airways, which are more exposed to cigarette smoke particles, may prime SCC-TAFs to stronger SMAD3 epigenetic repression, because cigarette smoke condensate selectively increased SMAD3 promoter methylation. Our results unveil that the histotype-specific regulation of tumor fibrosis in lung cancer is mediated through differential SMAD3 promoter methylation in TAFs and provide new mechanistic insights on the selective poor response of SCC-TAFs to nintedanib. Moreover, our findings support that patients with ADC may be more responsive to antifibrotic drugs targeting their stromal TGFβ1/SMAD3 activation. SIGNIFICANCE: This study implicates the selective epigenetic repression of SMAD3 in SCC-TAFs in the clinical failure of nintedanib in SCC and supports that patients with ADC may benefit from antifibrotic drugs targeting stromal TGFβ1/SMAD3."	"MiR-92a regulates brown adipocytes differentiation, mitochondrial oxidative respiration, and heat generation by targeting SMAD7. Brown adipocytes are rich in mitochondria and linked to the body's blood fat levels and obesity. MiR-92a is negatively correlated with the activity of brown adipocytes. This study aimed to explore the mechanism of miR-92a on brown adipocytes. The expression of miR-92a in C2C12 cell was detected by a quantitative real-time-polymerase chain reaction (qRT-PCR). C2C12 cells were induced to brown adipocytes. The direct target gene of miR-92a was determined using the dual-luciferase reporter assay. Brown adipocytes were treated with isoprenaline (Iso) and transfected by miR-92a inhibitor and siSMAD7. The expression of heat-producing genes and adipose differentiation genes related to brown adipocytes were detected by qRT-PCR and Western blot analysis. The expression of SMAD7, p-SMAD2, and p-SMAD3 were detected using Western blot analysis. The mitochondrial content was measured by mitotracker fluorescent staining. MiR-92a inhibitor significantly decreased the expression of miR-92a in C2C12 cells. MiR-92a inhibitor could upregulate the expression of Ucp1, Cox7a1, Elovl3, Ppargc1α, PPARγ, and FABP4, and its effect on Ucp1 was increased after the treatment of isoprenaline. Moreover, miR-92a inhibitor increased mitochondrial content, oxygen consumption rate (OCR) and the expression of SMAD7 and suppressed the expressions of p-SMAD2 and p-SMAD3, whereas miR-92a directly targeted SMAD7 to exert its inhibitory effects. SiSMAD7 reversed the effects of the inhibitor on heat-producing genes, mitochondrial content, OCR and the expressions of SMAD7, p-SMAD2, and p-SMAD3 in brown adipocytes. Blocking miR-92a might promote brown adipocytes differentiation, mitochondrial oxidative respiration, and thermogenesis by targeting SMAD7 to inhibit the expressions of p-SMAD2 and p-SMAD3."	"Xiaokeping Mixture Attenuates Diabetic Kidney Disease by Modulating TGF-β/Smad Pathway in db/db Mice. Xiaokeping mixture (XKP), a traditional Chinese medicine compound preparation, has achieved widespread use for diabetes mellitus and its kidney damage in clinical practice. The current study was carried out to assess the protective effect of XKP in spontaneous diabetic db/db mice and the underlying mechanism whereby XKP regulates TGF-β/Smad pathway. Male C57BLKS/J db/db mice, 12 weeks old, were randomly divided into 3 groups: the model group, 17.5 mg/kg irbesartan-treated group (IST group), and 8 g/kg XKP-treated group (XKP group), while age-matched db/m mice were selected as a control group. After 8 weeks of administration, serum and urea samples were collected from mice for biochemical tests, while the kidneys were removed for histological analysis. The expression of TGF-β/Smad pathway-related mRNA and protein were measured by RT-PCR and western blot analysis. Treatment with XKP significantly improved renal function and attenuated the pathological change of diabetic kidney disease (DKD) in renal histopathology. Furthermore, the overexpression of TGF-β1, Smad3, and p-Smad3 was inhibited, as well as the reduction of Smad7 and SIP1 was weakened by XKP. In conclusion, these results suggest that XKP could attenuate DKD by modulating TGF-β/Smad pathway."	"The inhibitory effect of oridonin on colon cancer was mediated by deactivation of TGF-β1/Smads-PAI-1 signaling pathway in vitro and vivo. Oridonin, the main active component of Rabdosia rubescens, has been demonstrated to have anti-tumor effect on all kinds of cancer cells through various mechanisms and it has shown antitumor activity in some tumors partially via the suppression of TGF-β/Smads signaling pathway. The aim of this study was to explore the anticancer effect of oridonin on human colon carcinoma and underlying mechanism in vitro and vivo. CCK-8 assay was employed to assess cell viability. The key target genes and proteins involved in TGF-β/Smads pathway was detected by RT-PCR, Western blotting and immunohistochemistry. The orthotopic transplantation tumor model of colon cance LOVO cell was introduced to detect anti-cancer effects in vivo. Oridonin inhibited the proliferation of colon cancer LOVO cells in a concentration and time dependent manner. In addition, oridonin reduced the levels of Smad2, Smad3, Smad4, PAI-1 and the phosphorylation of Smad2 and Smad3 induced by TGF-β1 in vitro. Subsequently, we established an orthotopically implanted tumor model in nude mice and found that oridonin treatment significantly suppressed tumor growth, and which was accompanied by the down-regulation of Smad2, Smad3, Smad4, PAI-1 and p-Smad2, p-Smad3 expression levels. Our present study demonstrated that the growth inhibition of colon cancer by oridonin could be partially mediated through discontinuing TGF-β1/Smads-PAI-1 signaling pathway, suggesting it as a promising agent in treating colorectal cancer."	"Transcription Factors Targeted by miRNAs Regulating Smooth Muscle Cell Growth and Intimal Thickening after Vascular Injury. Neointima formation after percutaneous coronary intervention (PCI) is a manifestation of &quot;phenotype switching&quot; by vascular smooth muscle cells (SMC), a process that involves de-differentiation from a contractile quiescent phenotype to one that is richly synthetic. In response to injury, SMCs migrate, proliferate, down-regulate SMC-specific differentiation genes, and later, can revert to the contractile phenotype. The vascular response to injury is regulated by microRNAs (or miRNAs), small non-coding RNAs that control gene expression. Interactions between miRNAs and transcription factors impact gene regulatory networks. This article briefly reviews the roles of a range of miRNAs in molecular and cellular processes that control intimal thickening, focusing mainly on transcription factors, some of which are encoded by immediate-early genes. Examples include Egr-1, junB, KLF4, KLF5, Elk-1, Ets-1, HMGB1, Smad1, Smad3, FoxO4, SRF, Rb, Sp1 and c-Myb. Such mechanistic information could inform the development of strategies that block SMC growth, neointima formation, and potentially overcome limitations of lasting efficacy following PCI."	"Dietary phosphate restriction attenuates polycystic kidney disease in mice. Studies in rodents with reduced nephron mass have suggested a strong positive correlation between dietary phosphate consumption and CKD progression. Prior work by our group demonstrated that dietary phosphate restriction can prevent tubular injury and microcyst formation in rodents with glomerulonephritis. Tubular injury and cystic dilation of tubules are key contributors to kidney function decline in polycystic kidney disease (PKD). Here, we determined whether dietary phosphate restriction slows renal cyst growth and fibrosis in a mouse model of PKD. Pcy/pcy mice received a normal phosphate (0.54%) or a phosphate-restricted (0.02%) diet (n = 10/group) from 7 to 20 wk of age. All of the other major dietary constituents, including protein source and content, were comparable between the two diets. At 20 wk, body weight, kidney weight-to-body weight ratio (KW/BW), cystic area, cyst number, and kidney fibrosis were quantified. Pcy/pcy mice fed a phosphate-restricted diet had lower serum phosphate, fibroblast growth factor 23, and parathyroid hormone levels, along with elevated serum calcium levels and increased kidney Klotho gene expression compared with mice that consumed the control diet. Dietary phosphate restriction resulted in a 25% lower KW/BW ratio and reduced the cyst number, cystic index, and gene expression for the tubular injury markers neutrophil gelatinase-associated lipocalin and interleukin-18. Mice fed the phosphate-restricted diet exhibited lower kidney expression for pathways involved in collagen deposition and myofibroblast activation (collagen type I-α1, phosphorylated SMAD3, and α-smooth muscle actin); however, histological differences in kidney fibrosis were not appreciated. Dietary phosphate restriction slows cystogenesis and inhibits the activation of key pathways in the generation of kidney fibrosis in PKD mice."	"Inhibition of miR-21 alleviated cardiac perivascular fibrosis via repressing EndMT in T1DM. In type 1 and type 2 diabetes mellitus, increased cardiac fibrosis, stiffness and associated diastolic dysfunction may be the earliest pathological phenomena in diabetic cardiomyopathy. Endothelial-mesenchymal transition (EndMT) in endothelia cells (ECs) is a critical cellular phenomenon that increases cardiac fibroblasts (CFs) and cardiac fibrosis in diabetic hearts. The purpose of this paper is to explore the molecular mechanism of miR-21 regulating EndMT and cardiac perivascular fibrosis in diabetic cardiomyopathy. In vivo, hyperglycaemia up-regulated the mRNA level of miR-21, aggravated cardiac dysfunction and collagen deposition. The condition was recovered by inhibition of miR-21 following with improving cardiac function and decreasing collagen deposition. miR-21 inhibition decreased cardiac perivascular fibrosis by suppressing EndMT and up-regulating SMAD7 whereas activating p-SMAD2 and p-SMAD3. In vitro, high glucose (HG) up-regulated miR-21 and induced EndMT in ECs, which was decreased by inhibition of miR-21. A highly conserved binding site of NF-κB located in miR-21 5'-UTR was identified. In ECs, SMAD7 is directly regulated by miR-21. In conclusion, the pathway of NF-κB/miR-21/SMAD7 regulated the process of EndMT in T1DM, in diabetic cardiomyopathy, which may be regarded as a potential clinical therapeutic target for cardiac perivascular fibrosis."	"Salvianolic acid B exerts anti-liver fibrosis effects via inhibition of MAPK-mediated phospho-Smad2/3 at linker regions in vivo and in vitro. To investigate anti-liver fibrosis effects of Salvianolic acid B (Sal B) from Salvia miltiorrhiza Bunge involved mitogen-activated protein kinase (MAPK)-mediated transforming growth factor-beta (TGF-β) signaling. Diethylnitrosamine (DEN)-induced liver fibrosis in mice and TGF-β1-activated hepatic stellate cells (HSCs) were established and treated with dosage/concentration-graded Sal B and/or MAPK activator (Vacquinol-1: MKK4-specific activator)/inhibitors (PD98059: ERK-specific inhibitor; SP600125: JNK-specific inhibitor; SB203580: p38-specific inhibitor). Histopathological characteristics and cell migration were assessed, α-SMA, Collagen I and members of TGF-β/MAPK/Smad signal transduction pathway were measured. Results in vivo showed that Sal B alleviated DEN-caused liver fibrosis embodied in ameliorative histopathological characteristics and decreased protein levels of hepatic fibrosis related markers (α-SMA, Collagen I, TGF-β1), its molecular mechanisms of action were correlative with inhibited activation of MAPK and phosphorylation of Smad2/3 at linker regions (P-Smad2/3L) and Smad2 at C-terminal (P-Smad2C) while increased phosphorylation of Smad3 at C-terminal (P-Smad3C). Results in vitro showed that Sal B restrained TGF-β1-induced HSCs activation, Collagen I production and cell migration; Sal B inhibited activation of MAPK and markedly decreased protein levels of P-Smad2/3L and P-Smad2C while slightly increased P-Smad3C in TGF-β1-stimulated HSCs, the expression of PAI-1 was inhibited by Sal B; activating MAPK receded inhibitory effects of Sal B on α-SMA, Collagen I, P-Smad2L and P-Smad3L expression while inhibited activation of MAPK reinforced those. Sal B attenuates liver fibrosis via mediation of TGF-β/Smad and MAPK pathways, especially inhibition of MAPK-mediated P-Smad2/3L signaling, which maybe provides theoretical foundation of Sal B for treating clinically liver fibrosis."	"Ampelopsin attenuates carbon tetrachloride-induced mouse liver fibrosis and hepatic stellate cell activation associated with the SIRT1/TGF-β1/Smad3 and autophagy pathway. Ampelopsin (Amp), a natural flavonoid found in the vine tea of Ampelopsis grossedentata, exhibited anti-cancer, anti-oxidant, anti-inflammatory, anti-apoptosis and hepatoprotective properties. The current study instigates the protective effect of Amp on carbon tetrachloride (CCl4)-induced hepatic fibrosis and explores its underlying mechanisms. The results indicated Amp decreased the levels of liver injury markers. Amp inhibited liver fibrosis, as indicated by decreases in hepatic collagen deposition, extracellular matrix (ECM) deposition and α-smooth muscle actin (α-SMA). Amp blocked the activation of hepaticstellate cells (HSCs) by decreasing the expression of collage I, α-SMA, tissue inhibitor of matrix metalloproteinases (TIMPs) 1, transforming growth factor (TGF)-β1, phosphorylated Smad3 (p-Smad3) and increasing the expression of matrix metalloproteinases (MMPs) 9 and SIRT1 in the model of liver fibrosis and cultured HSCs. The sirtuin 1 (SIRT1) specific inhibitor Sirtinol activated the TGF-β1/Smad3 pathway and enhanced ECM accumulation. Attractively, Amp up-regulates the expression of autophagy-related proteins microtubule-associated protein light chain three II (LC3-II) and Beclin-1 in vivo and in vitro. However, depletion of autophagy by specific inhibitor 3-MA obviously abolished the inhibiting effect of Amp on HSC activation and hepatic fibrosis. Conclusively, these results suggest that Amp could decrease CCl4-induced hepatic fibrosis through regulating the SIRT1/TGF-β1/Smad3 and autophagy pathway."	"Insight into interleukin-37: The potential therapeutic target in allergic diseases. Allergic diseases are ubiquitous diseases with detrimental effects on the quality of life of people worldwide. Common allergic diseases include asthma, allergic rhinitis (AR) and allergic dermatitis (AD). Recently, studies have shown that interleukin (IL)-37, a novel cytokine in the IL-1 family, exhibits broad protective properties in various diseases, such as autoimmune diseases and cancer. IL-37 displays its anti-inflammatory effect on diseases by curbing innate and acquired immunity as well as inflammatory reactions. IL-37 functions by forming a complex with IL-18Rα and IL-1R8 extracellularly and can be translocated to the nucleus upon forming a complex with mothers against decapentaplegic homolog 3 (Smad3) intracellularly, thereby affecting gene transcription and signaling pathway activation. In addition, increasing evidence confirms that IL-37 expression is aberrant in asthma, AR and AD, which indicates that IL-37 may also play essential roles in allergic diseases. Furthermore, accumulating data obtained from recombinant IL-37 (rIL-37)-treated mice and from IL-37 transgenic (IL-37tg) mice suggest a protective role for IL-37. This review will detail the role of IL-37 in the occurrence and development of allergic diseases and discuss the potential of IL-37 as a therapeutic target in allergic diseases."	"Obeticholic acid prevents carbon tetrachloride-induced liver fibrosis through interaction between farnesoid X receptor and Smad3. Liver fibrosis results from sustained liver injury and is characterized by inflammation, hepatic stellate cell (HSC) activation, extracellular matrix (ECM) accumulation and liver structure destruction. The Farnesoid-X receptor (FXR) antagonizes toxic liver injury and fibrosis, yet the mechanism in liver fibrosis remains unclear. We investigated the effects of FXR agonist obeticholic acid (OCA) on liver fibrosis in mice. Mice were injected with carbon tetrachloride (CCl4) for 3 weeks or 6 weeks to induce liver fibrosis. OCA (5 mg/kg) or PBS is administered daily during CCl4-treatment. At sacrifice, biochemical parameters and fibrosis were assessed. Pretreatment with OCA alleviated hepatic injury in 6 weeks group but not in 3 weeks group of CCl4 liver cirrhosis. At same time, pretreatment with OCA exhibit a dramatic protection of liver fibrosis in both 3 weeks group and 6 weeks group. Further experiments found that OCA pretreatment inhibited α-SMA expression and the activation of hepatic pSmad3 in 3 weeks group and 6 weeks group of CCl4-induced liver cirrhosis. Moreover, OCA activated FXR nuclear translocation and increased the interaction between liver FXR and pSmad3. This led to the discovery of a novel role for FXR in regulating fibrosis through interaction with pSmad3. Our data suggest that CCl4-induced liver fibrosis is protected by OCA through interaction between farnesoid X receptor and Smad3."	"TGF-β1 facilitates cell-cell communication in osteocytes via connexin43- and pannexin1-dependent gap junctions. Connexins and pannexins are two families of channel forming proteins that are able to pass small molecules to achieve communication between cells. While connexins have been recognized to mediate gap junctional intercellular communication (GJIC), pannexins are far less known. Our previous study reported the potential role of TGF-β1 in mediating of connexins in osteocytes in vitro. Herein, we aimed to elucidate the influence of TGF-β1 on cell-cell communication based on gap junctions assembled by connexins and pannexins in vitro and ex vivo. We first showed that TGF-β1 positively affected the elongation of dendritic processes of osteocytes. Our data indicated that TGF-β1 increased expressions of connexin43 (Cx43) and pannexin1 (panx1), which are indispensable for hemichannel formation in gap junctions, in osteocytes in vitro and ex vivo. TGF-β1 enhanced gap junction formation and impacted cell-cell communication in living osteocytes, as indicated by the scrape loading and Lucifer yellow transfer assays. TGF-β1 enhanced the expressions of Cx43 and panx1 via activation of ERK1/2 and Smad3/4 signalling. The TGF-β1-restored expressions of Cx43 and panx1 in osteocytes in the presence of an ERK inhibitor, U0126, further demonstrated the direct participation of Smad3/4 signalling. TGF-β1 increased the accumulation of Smad3 in the nuclear region (immunofluorescence assay) and promoted the enrichment of Smad3 at the binding sites of the promoters of Gja1 (Cx43) and Panx1 (ChIP assay), thereby initiating the enhanced gene expression. These results provide a deep understanding of the molecular mechanisms involved in the modulation of cell-cell communication in osteocytes induced by TGF-β1."	"Fisetin Alleviates Atrial Inflammation, Remodeling, and Vulnerability to Atrial Fibrillation after Myocardial Infarction. Atrial inflammation and fibrosis are the critical processes involved in atrial fibrillation (AF) after myocardial infarction (MI). Fisetin is a dietary flavonoid that has shown forceful anti-inflammatory and anti-proliferative properties in diverse models of disease. However, fisetin's role in atrial inflammation, fibrosis, and AF vulnerability post-MI remains completely unknown.Rats were subjected to MI surgery, by left anterior descending coronary artery ligation or sham operation, and treated with DMSO or fisetin via intraperitoneal injection. After 28 days, echocardiographic parameters were performed, and AF inducibility was tested. We further evaluated the inflammation, fibrosis of left atria (LA), and related signal pathways by RT-PCR, Western blot, and staining analysis.Compared to the MI group, fisetin treatment improved cardiac function, inhibited macrophage recruitment into the LA and production of IL-1β and TNF-α, and attenuated adverse atrial fibrosis following acute myocardial infarction (AMI). Electrophysiological recordings, using an isolated perfused heart, showed that MI-induced higher inducibility of AF and prolonged AF duration, interatrial conduction time (IACT), atrial effective refractory period (AERP) were significantly alleviated by fisetin. Mechanistically, fisetin markedly increased phosphorylated AMPK (p-AMPK) levels and suppressed NF-κB p65, p38MAPK, and smad3 phosphorylation in the LA post-MI.We demonstrate that fisetin improves LA expansion, cardiac function, atrial inflammation, fibrosis, and vulnerability to AF following MI by possibly regulating AMPK/NF-κB p65 and p38MAPK/smad3 signaling pathways."	"Anlotinib attenuated bleomycin-induced pulmonary fibrosis via the TGF-β1 signalling pathway. Anlotinib hydrochloride (AL3818) is a novel multitarget tyrosine kinase inhibitor which has the same targets as nintedanib, an effective drug has been approved for the treatment of idiopathic pulmonary fibrosis. Here, we examined whether anlotinib could also attenuate bleomycin-induced pulmonary fibrosis in mice and explored the antifibrosis mechanism. We have evaluated the effect of anlotinib on bleomycin-induced pulmonary fibrosis in mice. Inflammatory cytokines in alveolar lavage fluid including IL-1β, IL-4, IL-6 and TNF-α were determined by ELISA. Biomarkers of oxidative stress were measured by corresponding kit. Histopathologic examination was analysed by H&amp;E staining and immunohistochemistry. In vitro, we investigated whether anlotinib inhibited TGFβ/Smad3 and non-Smad pathways by luciferase assay or Western blotting. We also evaluated whether anlotinib inhibited TGF-β1-induced epithelial-mesenchymal transition (EMT) and promoted myofibroblast apoptosis in order to explore the possible molecular mechanism. The results indicated that anlotinib treatment remarkably attenuated inflammation, oxidative stress and pulmonary fibrosis in mouse lungs. Anlotinib could inhibit the TGF-β1 signalling pathway. Additionally, anlotinib not only profoundly inhibited TGF-β1-induced EMT in alveolar epithelial cells, but also simultaneously reduced the proliferation and promoted the apoptosis in fibroblasts. In summary, the results suggest that anlotinib-mediated suppression of pulmonary fibrosis is related to the inhibition of TGF-β1 signalling pathway."	"Resveratrol Attenuates Pressure Overload-Induced Cardiac Fibrosis and Diastolic Dysfunction via PTEN/AKT/Smad2/3 and NF-κB Signaling Pathways. Cardiac fibrosis is a key feature of cardiac remodeling. Recently, a protective role for resveratrol (RES) in pressure-overload-induced cardiac hypertrophy and contractile dysfunction has been demonstrated. However, the effect of RES on cardiac fibrosis and diastolic function in this model remains unclear. Cardiac remodeling is induced in mice by transverse aortic constriction (TAC) for 2-4 weeks. RES is administered at dose of 5 or 50 mg kg<sup>-1</sup> d<sup>-1</sup> for 2 weeks. It is found that RES administration at 50 mg kg<sup>-1</sup> d<sup>-1</sup> significantly attenuates TAC-induced adverse cardiac systolic and diastolic function, fibrosis, inflammation, and oxidative stress via inhibiting PTEN degradation and the downstream mediators. However, RES at 5 mg kg<sup>-1</sup> d<sup>-1</sup> has no significant effects. RES at 50 mg kg<sup>-1</sup> d<sup>-1</sup> also ameliorates pre-established adverse cardiac function and remodeling induced by TAC. Treatment with PTEN inhibitor VO-OHpic (10 mg kg<sup>-1</sup> d<sup>-1</sup> ) for 2 weeks abolishes RES-mediated protective effects. Additionally, the effect of RES (100 µm) on inhibition of Ang II-induced fibroblast proliferation and activation in vitro is verified. The findings provide new evidence that RES plays a critical role in the progression of cardiac fibrosis and diastolic dysfunction, and suggest that RES may be a promising therapeutic agent for cardiac fibrosis."	"BMP-7 inhibits renal fibrosis in diabetic nephropathy via miR-21 downregulation. Epithelial-mesenchymal transition (EMT) and extracellular matrix (ECM) deposition in renal tubular epithelial cells are critical to diabetic nephropathy (DN) pathogenesis, but the underlying mechanisms remain undefined. Bone morphogenetic protein 7 (BMP-7) inhibits EMT and ECM accumulation in renal tubular epithelial cells cultured in presence of high glucose. Meanwhile, miRNA-21 (miR-21) downregulates Smad7, promoting EMT and ECM deposition. However, the association of BMP-7 with miR-21/Smad7 in DN is unknown. Here, NRK-52E cells incubated in presence of high glucose and STZ-induced C57BL diabetic mice were considered in vitro and in vivo models of DN, respectively. In both models, BMP-7 (mRNA/protein) amounts were decreased as well as Smad7 protein expression, while miR-21 expression and TGF-β1/Smad3 pathway activation were enhanced, accompanied by enhanced EMT and ECM deposition. Further, addition of BMP-7 human recombinant cytokine (rhBMP-7) and injection of the BMP-7 overexpression plasmid in diabetic mice markedly downregulated miR-21 and upregulated Smad7, reduced Smad3 activation without affecting TGF-β1 amounts, and prevented EMT and ECM accumulation. MiR-21 overexpression in the in vitro model downregulated Smad7, promoted EMT and ECM accumulation without affecting BMP-7 amounts, and miR-21 downregulation reversed it. By interfering with BMP-7 and miR-21 expression in high glucose conditions, miR-21 amounts and Smad3 phosphorylation were further decreased. Smad7 was then upregulated, and EMT and ECM deposition were inhibited; these effects were reversed after miR-21 overexpression. These findings suggest that BMP-7 decreases renal fibrosis in DN by regulating miR-21/Smad7 signaling, providing a theoretical basis for the development of novel and effective therapeutic drugs for DN."	"GDF11 impairs liver regeneration in mice after partial hepatectomy. Growth differentiation factor 11 (GDF11) is a member of the transforming growth factor (TGF)-β superfamily. The rejuvenative effect of GDF11 has been called into question recently, and its role in liver regeneration is unclear. Here, we investigated the pathophysiologic role of GDF11, as well as its plausible signaling mechanisms in a mouse model of partial hepatectomy (PH). We demonstrated that both serum and hepatic GDF11 protein expression increased following PH. Treatment with adeno-associated viruses-GDF11 and recombinant GDF11 protein severely impaired liver regeneration, whereas inhibition of GDF11 activity with neutralizing antibodies significantly improved liver regeneration after PH. In vitro, GDF11 treatment significantly delayed cell proliferation and induced cell-cycle arrest in α mouse liver 12 (AML12) cells. Moreover, GDF11 activated TGF-β-SMAD2/3 signaling pathway. Inhibition of GDF11-induced SMAD2/3 activity significantly blocked GDF11-mediated reduction in cell proliferation both in vivo and in vitro. In the clinical setting, GDF11 levels were significantly elevated in patients after hepatectomy. Collectively, these results indicate that rather than a 'rejuvenating' agent, GDF11 impairs liver regeneration after PH. Suppression of cell-cycle progression via TGF-β-SMAD2/3 signaling pathway may be a key mechanism by which GDF11 inhibits liver regeneration."	"Role of the autotaxin-lysophosphatidic acid axis in glaucoma, aqueous humor drainage and fibrogenic activity. Ocular hypertension due to impaired aqueous humor (AH) drainage through the trabecular meshwork (TM) is a major risk factor for glaucoma, a leading cause of irreversible blindness. However, the etiology of ocular hypertension remains unclear. Although autotaxin, a secreted lysophospholipase D and its catalytic product lysophosphatidic acid (LPA) have been shown to modulate AH drainage through TM, we do not have a complete understanding of their role and regulation in glaucoma patients, TM and AH outflow. This study reports a significant increase in the levels of autotaxin, lysophosphatidylcholine (LPC), LPA and connective tissue growth factor (CTGF) in the AH of Caucasian and African American open angle glaucoma patients relative to age-matched non-glaucoma patients. Treatment of human TM cells with dexamethasone, tumor necrosis factor-α (TNF-α) and interleukin-1β (IL-1β) increased the levels of autotaxin protein, a response that was mitigated by inhibitors of glucocorticoid receptor, NF-kB and SMAD3. Dexamethasone, TNF-α, IL-1β and LPC treatment of TM cells also led to an increase in the levels of CTGF, fibronectin and collagen type 1 in an autotaxin dependent manner. Additionally, in perfused enucleated mouse eyes, autotaxin and LPC were noted to decrease, while inhibition of autotaxin was increased aqueous outflow through the TM. Taken together, these results provide additional evidence for dysregulation of the autotaxin-LPA axis in the AH of glaucoma patients, reveal molecular insights into the regulation of autotaxin expression in TM cells and the consequences of autotaxin inhibitors in suppressing the fibrogenic response and resistance to AH outflow through the TM."	"The Anti-fibrotic and Anti-inflammatory Potential of Bone Marrow-Derived Mesenchymal Stem Cells and Nintedanib in Bleomycin-Induced Lung Fibrosis in Rats. Idiopathic pulmonary fibrosis (IPF) is a chronic lung disease characterized by progressive lung damage. Tyrosine kinase inhibitors are approved to treat people with IPF while bone marrow-derived mesenchymal stem cell therapy was previously suggested to inhibit pulmonary fibrosis through the alveolar epithelial cell repair. The present study aimed to evaluate the anti-inflammatory and anti-fibrotic effect of the bone marrow-derived mesenchymal stem cell (BM-MSC) therapy in comparison with nintedanib, a tyrosine kinase inhibitor, on improving survival in bleomycin-induced lung fibrosis in rats. Moreover, the combined therapy of BM-MSCs and nintedanib will be evaluated. In the present study, IPF was induced through intra-tracheal instillation of bleomycin (5 mg/kg) in rats then treatments were administered 14 days thereafter. Nintedanib (100 mg/kg, I.P.) was administered daily for 28 days, while BM-MSCs were injected once intravenously in tail vein in the dose 1 × 10<sup>6</sup> cells/ml/rat. In the present study, both treatment regimens effectively inhibited lung fibrosis through several pathways, suppressing tumor growth factor-β (TGF-β)/SMAD3 expression which is considered the master signaling pathway. Nintedanib and BLM-MSCs exerted their anti-inflammatory effect through minimizing the expression of TNF-α and IL-6. In addition, the histopathological examination of the lung tissue showed a significant decrease in the alveolar wall thickening, in the inflammatory infiltrate, and in the collagen fiber deposition in response to either nintedanib or BM-MSC and their combination. In conclusion, the therapeutic pulmonary anti-fibrotic activity of nintedanib or BM-MSC is mediated through their anti-inflammatory properties and inhibition of SMAD-3/TGF-β expression."	"ETS2 promotes epithelial-to-mesenchymal transition in renal fibrosis by targeting JUNB transcription. Epithelial-to-mesenchymal transition (EMT) plays an important role in the progression of renal tubulointerstitial fibrosis, a common mechanism leading to end-stage renal failure. V-ets erythroblastosis virus E26 oncogene homolog 2 (ETS2), a transcription factor, exhibits diverse roles in pathogenesis; however, its role in renal fibrosis is not yet fully understood. In this study, we detected the expression of ETS2 in an animal model of renal fibrosis and evaluated the potential role of ETS2 in tubular EMT induced by TGF-β1. We found that ETS2 and profibrogenic factors, alpha-smooth muscle actin (α-SMA) and fibronectin (FN), were significantly increased in the unilateral ureteral obstruction (UUO)-induced renal fibrosis model in mice. In vitro, TGF-β1 induced a high expression of ETS2 dependent on Smad3 and ERK signaling pathway in human proximal tubular epithelial cells (HK2). Knockdown of ETS2 abrogated TGF-β1-mediated expression of profibrogenic factors vimentin, α-SMA, collagen I, and FN in HK2 cells. Mechanistically, ETS2 promoted JUNB expression in HK2 cells after TGF-β1 stimulation. Furthermore, luciferase and Chromatin Immunoprecipitation (ChIP) assays revealed that the binding of ETS2 to three EBS motifs on the promoter of JUNB triggered its transcription. Notably, silencing JUNB reversed the ETS2-induced upregulation of the profibrogenic factors in HK2 cells after TGF-β1 stimulation. These findings suggest that ETS2 mediates TGF-β1-induced EMT in renal tubular cells through JUNB, a novel pathway for preventing renal fibrosis."	"CREB activity is required for epidermal growth factor-induced mouse cumulus expansion. The release of a fertilizable oocyte from the ovary is dependent upon the expansion of the cumulus cells. The expansion requires cooperation between epidermal growth factor (EGF) family peptide-activated mitogen-activated protein kinase (MAPK)3/1 and oocyte paracrine factor-activated-Sma- and Mad-related protein (SMAD)2/3 signaling in cumulus cells. However, the mechanism underlying (MAPK)3/1 signaling is unclear. In the present study, the EGF-activation of EGF receptor (EGFR) induced cyclic adenosine 3',5'-monophosphate (cAMP) response element-binding protein (CREB) phosphorylation in cumulus cells, and the interruption of CREB functional complex formation by naphthol AS-E phosphate (KG-501) completely blocked the EGF-stimulated expansion-related gene expression. EGF-stimulated phosphorylation of CREB was completely inhibited by MAPK3/1 inhibitor U0126, suggesting that EGF-activated MAPK3/1 results in the activation of CREB for cumulus expansion. Also, the role of EGF-stimulated calcium signaling was studied. Calcium-elevating reagents ionomycin and sphingosine-1-phosphate mimicked, but calcium chelators bis-(o'aminophenoxy)-ethane-N,N,N,N-tetraacetic acid, tetra(acetoxymethyl)-ester, and 8-(N,N-diethylamino)-octyl-3,4,5-trimethoxybenzoate abolished the activity of EGF on CREB phosphorylation, cumulus expansion, and expansion-related gene expression. Furthermore, EGF-induced cumulus expansion was inhibited by calmodulin (CaM)-dependent protein kinase II (CaMKII) inhibitors, KN-93 and autocamtide-2-related inhibitory peptide. However, the inhibition of SMAD2/3 activity by removal of oocyte from cumulus-oocyte complexes did not affect the EGF-induced CREB phosphorylation, indicating that EGF-activated CREB is independent of oocyte-activated SMAD2/3 signaling. Therefore, EGF-induced CREB activity by MAPK3/1 and Ca<sup>2+</sup> /CaMKII signaling pathways promotes the expansion-related gene expression and consequent cumulus expansion."	"Involvement of CHOP in activin A‑induced myeloma NS‑1 cell apoptosis. Activin A, a multifunctional cytokine, is a member of transforming growth factor‑β (TGF‑β) superfamily. It is associated with a variety of pathophysiological processes, including inflammation, fibrosis, and tumorigenesis. Chronic or prolonged endoplasmic reticulum (ER) stress can lead to cells apoptosis. However, whether ER stress‑related proteins, such as CHOP, GADD34 are involved in activin A‑induced myeloma cell apoptosis remains unknown. In the present study, it was revealed that activin A inhibited the proliferation of myeloma cell line NS‑1 cells and induced NS‑1 cell apoptosis. Activin A upregulated the expression of CHOP, GADD34, caspase‑3, and caspase‑12. Moreover, both Smad3 and p‑Smad3 levels were increased with treatment of activin A. Further studies revealed that the overexpression of activin signaling protein Smad3 in NS‑1 cells increased the levels of CHOP, caspase‑3, and p‑Smad3. These data indicated that the CHOP protein of the ER stress pathway may be involved in activin A‑induced NS‑1 cell apoptosis, and also indicated the potential therapy of activin A‑induced apoptosis via CHOP signaling for multiple myeloma."	"The role of miR-145 in promoting the fibrosis of pulmonary fibroblasts. The effects of miR-145 (microRNA 145) on M. pneumoniae (MP)-infected MRC-5 (Medical Research Council cell strain 5) cell TGF-β/Smad (transforming growth factor beta/Smad) fibrosis pathway were explored through constructing MP-infected MRC-5 cell models. In addition, the qPCR (quantitative real-time polymerase chain reaction) and Western blot were applied to detect the mRNA and protein expressions of miR-145, TGF-β1 (transforming growth factor beta 1), Smad3, Smad4, MMP2 (matrix metalloproteinase 2), FN1 (fibronectin 1), ELN (elastin) and COLI α1 (collagen type I alpha 1) signaling molecules in TGF-β/Smad fibrosis pathway. The results showed that the expression of miR-145 in MRC-5 cells was significantly increased after MP infection. In addition, miR-145 inhibited the fibrosis promoting TGF-β/Smad pathway by targeting Smad3, a key factor in the TGF-β/Smad pathway. It can be concluded that, in the process of MP infection, the expression of miR-145 is stimulated to negatively regulate the fibrosis-promoting pathway of TGF-β/Smad."	"MKL1 mediates TGF-β-induced CTGF transcription to promote renal fibrosis. Aberrant fibrogenesis impairs the architectural and functional homeostasis of the kidneys. It also predicts poor diagnosis in patients with end-stage renal disease (ESRD). Renal tubular epithelial cells (RTEC) can trans-differentiate into myofibroblasts to produce extracellular matrix proteins and contribute to renal fibrosis. Connective tissue growth factor (CTGF) is a cytokine upregulated in RTECs during renal fibrosis. In the present study, we investigated the regulation of CTGF transcription by megakaryocytic leukemia 1 (MKL1). Genetic deletion or pharmaceutical inhibition of MKL1 in mice mitigated renal fibrosis following the unilateral ureteral obstruction procedure. Notably, MKL1 deficiency in mice downregulated CTGF expression in the kidneys. Likewise, MKL1 knockdown or inhibition in RTEs blunted TGF-β induced CTGF expression. Further, it was discovered that MKL1 bound directly to the CTGF promoter by interacting with SMAD3 to activate CTGF transcription. In addition, MKL1 mediated the interplay between p300 and WDR5 to regulate CTGF transcription. CTGF knockdown dampened TGF-β induced pro-fibrogenic response in RTEs. MKL1 activity was reciprocally regulated by CTGF. In conclusion, we propose that targeting the MKL1-CTGF axis may generate novel therapeutic solutions against aberrant renal fibrogenesis."	"Extended Molecular Profiling Improves Stratification and Prediction of Survival After Resection of Colorectal Liver Metastases. The aim of this study was to assess the effect of cancer-related genes and their mutations analyzed by next-generation sequencing (NGS) on the oncological outcome after resection of colorectal liver metastases (CRLM). Traditional prognostic scores include clinical and pathological parameters of primary tumor and metastases. The modified clinical risk score (m-CS), based on size of metastases, primary tumor nodal status, and RAS mutation status outperformed traditional scores. We hypothesized to further improve the scoring system based on the results of NGS. Cancer tissues of 139 patients with CRLM were used for NGS. The work-up included the analysis of recurrent somatic mutations and copy number changes of 720 genes. Clinical data were extracted from a prospectively collected institutional liver database. Depending on significance, the following cancer-related genes and their alterations (%) were further investigated: APC (86%), TP53 (78%), KRAS (29%), SMAD4 (15%), PIK3CA (14%), BRAF (8%), ERBB2 (6%), SMAD3 (5%), SMAD2 (4%), and NRAS (4%). The most predictive parameters for poor oncological outcome were alterations in the SMAD family (P = 0.0186) and RAS-RAF pathway (P = 0.032). Refining the m-CS by replacing RAS with RAS-RAF pathway and adding SMAD family resulted in an extended clinical risk score which is highly predictive for oncological outcome (P &lt; 0.0001). In conclusion, mutations of the SMAD family revealed a strong prognostic effect after surgery for CRLM. Integration of alterations of the SMAD family as well as the RAS/RAF pathway resulted in a new, still simple but highly prognostic score."	"The Interaction Between Nodal, Hypoxia-Inducible Factor 1 Alpha, and Thrombospondin 1 Promotes Luteolysis in Equine Corpus Luteum. The regulation of corpus luteus (CL) luteolysis is a complex process involving a myriad of factors. Previously, we have shown the involvement of Nodal in functional luteolysis in mares. Presently, we ask the extent of which Nodal mediation of luteolysis is done through regulation of angioregression. We demonstrated the interaction between Nodal and hypoxia-inducible factor 1 α (HIF1α) and thrombospondin 1/thrombospondin receptor (TSP1/CD36) systems, could mediate angioregression during luteolysis. First, we demonstrated the inhibitory effect of Nodal on the vascular marker platelet/endothelial cell adhesion molecule 1 (CD31). Also, treatment of mid CL explants with vascular endothelial growth factor A (VEGFA) showed a trend on activin-like kinase 7 (Alk7) protein inhibition. Next, Nodal was also shown to activate HIF1α and in vitro culture of mid CL explants under decreased oxygen level promoted Nodal expression and SMAD family member 3 (Smad3) phosphorylation. In another experiment, the crosstalk between Nodal and TSP1/CD36 was investigated. Indeed, Nodal increased the expression of the anti-angiogenic TSP1 and its receptor CD36 in mid CL explants. Finally, the supportive effect of prostaglandin F2α (PGF2α) on TSP1/CD36 was blocked by SB431542 (SB), a pharmacological inhibitor of Nodal signaling. Thus, we evidenced for the first time the in vitro interaction between Nodal and both HIF1α and TSP1 systems, two conserved pathways previously shown to be involved in vascular regression during luteolysis. Considering the given increased expression of Nodal in mid CL and its role on functional luteolysis, the current results suggest the additional involvement of Nodal in angioregression during luteolysis in the mare, particularly in the activation of HIF1α and TSP1/CD36."	"Upregulation of microRNA-141 suppresses epithelial-mesenchymal transition and lymph node metastasis in laryngeal cancer through HOXC6-dependent TGF-β signaling pathway. Laryngeal cancer is one of the most malignant cancers among the head and neck malignant tumors. Abnormal expression of microRNAs (miRNAs) contributes to cancer development through regulating proliferation and apoptosis of cancer cells. In this study, we aim to explore the roles of microRNA-141 (miR-141), Homeobox C6 (HOXC6) and TGF-β signaling pathway in epithelial-mesenchymal transition (EMT) and lymph node metastasis in laryngeal cancer. Initially, we identified differentially expressed genes in laryngeal cancer, among which HOXC6 was identified. Then the target miRNA of HOXC6 was predicted and verified. Next, expression of miR-141, HOXC6, TGF-β1, Smad3, Vimentin and Snail in cancer tissues was detected. Then, AMC-HN-8 cells were transfected with miR-141 mimic, miR-141 inhibitor and HOXC6-siRNA to investigate specific role of miR-141, HOXC6 and TGF-β signaling pathway in laryngeal cancer in vivo and in vitro. Our results showed that HOXC6 was a target gene of miR-141, which was downregulated in laryngeal cancer. Besides, overexpression of miR-141 could downregulate HOXC6 and inhibit the TGF-β signaling pathway. Upregulation of miR-141 or silencing of HOXC6 can repress EMT, viability, migration and invasion abilities of laryngeal cancer cells. In addition, upregulation of miR-141 inhibited the tumor growth and lymph node metastasis in vivo. In summary, our findings demonstrated that upregulated miR-141 decreased HOXC6 expression, and inhibited the TGF-β signaling pathway, EMT and lymph node metastasis in laryngeal cancer, which is of clinical significance in the treatment of laryngeal cancer."	"Gene expression profiling in the hippocampus of adolescent rats after chronic alcohol administration. In South Korea, the average age of onset of alcohol drinking is 13.3 years and half of adolescents drink alcohol more than once a month; 8.45% of the Korean adolescent population become future high-risk alcohol drinkers. Chronic alcohol abuse causes physical and psychiatric health problems such as alcohol addiction, liver disease, stroke and cognitive impairments. This study aimed to investigate the effect of alcohol on gene expression and their function in the hippocampus of adolescent rats. After chronic alcohol administration in male (control, n = 6; alcohol, n = 6) Sprague-Dawley rats for 6 weeks, we analysed up- or down-regulated genes using RNA-sequencing technology. We found 83 genes more than 1.5-fold up- or down-regulated in the alcohol-treated group. Among them, genes (Dnai1, Cfap206 and Dnah1) associated with cilium movement were up-regulated in the alcohol-treated group. Mlf1, related to cell cycle arrest, was also up-regulated in the alcohol-treated group. On the other hand, genes (Smad3 and Plk5) involved in negative regulation of cell proliferation were down-regulated in the hippocampus by chronic alcohol administration. In addition, expression levels of genes associated with oxidative stress (Krt8 and Car3) and migration (Vim) were changed by chronic alcohol administration. These results pave a path for a better understanding of the neuromolecular mechanisms mediated by chronic alcohol exposure in the hippocampus of adolescents and negative pathology due to chronic alcohol abuse."	"Dichotomous role of TGF-β controls inducible regulatory T-cell fate in allergic airway disease through Smad3 and TGF-β-activated kinase 1. Inducible CD4<sup>+</sup>CD25<sup>+</sup> regulatory T (iTreg) cells can become pathogenic effector cells, enhancing lung allergic responses. We aimed to define the underlying cellular and molecular pathways activated by TGF-β, which determine the suppressor or enhancing activities of iTreg cells. Sensitized wild-type and CD8-deficient (CD8<sup>-/-</sup>) mice were challenged with allergen. Isolated CD4<sup>+</sup>CD25<sup>-</sup> T cells were activated by using anti-CD3/anti-CD28. To generate suppressor iTreg cells, cells were then differentiated in the presence of TGF-β, whereas IL-17-producing effector T cells were additionally exposed to IL-6. After TGF-β, Smad3 and TGF-β-activated kinase 1 (TAK1) kinase levels were monitored. The consequences of inhibiting either kinase were determined in vitro and after transfer into CD8<sup>-/-</sup> recipients. Quantitative PCR and chromatin immunoprecipitation were used to monitor gene expression and histone modifications at the retinoic acid-related orphan receptor γt (Rorγt) locus. In wild-type mice, iTreg cells suppressed lung allergic responses linked to Smad3-dependent forkhead box P3 (Foxp3) expression and IL-10 production. In the presence of IL-6, iTreg cells converted to TH17 cells, mediating a neutrophil-dependent enhancement of lung allergic responses in CD8<sup>-/-</sup> mice. Conversion was regulated by TAK1. Inhibition or silencing of TAK1 prevented expression of Rorγt and TH17 differentiation through histone modifications of Rorγt; Foxp3 expression and iTreg cell-mediated suppression remained intact. In the same cell, TGF-β induced coexpression of Smad3 and TAK1 proteins; in the presence of IL-6, expression of Smad3 and Foxp3 but not TAK1 decreased. TGF-β regulates iTreg cell outcomes through 2 distinct signal transduction pathways: one Smad3 dependent and the other TAK1 dependent. The balance of these pathways has important implications in TH17-mediated autoimmune diseases and neutrophil-dependent asthma."	"LncRNA PVT1 promotes proliferation and invasion through enhancing Smad3 expression by sponging miR-140-5p in cervical cancer. Background Cervical cancer is one of the most frequent malignancies among females worldwide. Increasing evidence have indicated the participation of long noncoding RNAs (lncRNAs) in the progression and metastasis of cervical cancer. Our present study was conducted to explore the effects of lncRNA plasmacytoma variant translocation 1 (PVT1) on the progression of cervical cancer and the underlying mechanisms. Materials and methods Expressions of PVT1, miR-140-5p and Smad3 in cervical cancer cell lines were detected by qRT-PCR and western blotting. Bioinformatics analysis and luciferase assays were used to elucidate the potential correlations between PVT1, miR-140-5p and Smad3. The roles of PVT1 on the progression of cervical cancer cells were determined by transfecting sh-RNA through series function assays such as colony formation assay, wound healing assay, transwell assay. Results PVT1 and Smad3 were upregulated, and miR-140-5p was downregulated in cervical cancer cells. PVT1 could bind directly with miR-140-5p, and Smad3 was a downstream target of miR-140-5p. Inhibition of PVT1 could enhance expression of miR-140-5p, inhibit the expression of Smad3, significantly inhibited the proliferation, migration, invasion in cervical cancer cells. While transfection of miR-140-5p inhibitor could partially reverse the above changes in cervical cancer cells. Conclusions The results revealed that PVT1 could promote the proliferation and metastasis via increasing the Smad3 expression by sponging miR-140-5p, which might be a promising prognostic and therapeutic target for cervical cancer."	"The saturated fatty acid palmitate induces insulin resistance through Smad3-mediated down-regulation of FNDC5 in myotubes. Elevated plasma free fatty acid (FFA) levels are associated with insulin resistance and can cause lipotoxicity in skeletal muscles. In response to FFAs, skeletal muscle can secrete a variety of cytokines. Irisin, one such muscle-secreted cytokine, can improve glucose tolerance, glucose uptake, and lipid metabolism. It is produced by the transmembrane protein fibronectin type Ⅲ domain containing 5 (FNDC5) by specific proteases. The purpose of this study was to investigate the regulatory mechanisms of the FNDC5 response to palmitate and their relationships with insulin resistance in C2C12 myotubes. RNA sequencing analysis results from C2C12 myotubes treated with palmitate showed that palmitate could activate the TGF-β signaling pathway. Palmitate directly affected the expression of Smad3, but not its phosphorylation level, in C2C12 myotubes. Furthermore, knockdown and knockout of Smad3 alleviated the inhibitory effect of palmitate on the expression of FNDC5. In contrast, overexpression of Smad3 aggravated the inhibition of FNDC5 expression. There is a Smad3 binding motif in the -660 bp to -649 bp region of the Fndc5 promoter. CRISPR/Cas9 knockout of this region also alleviated the inhibition of FNDC5 expression in response to palmitate. More importantly, inhibition of FNDC5 expression mediated by Smad3 led to a decrease in insulin sensitivity in C2C12 myotubes. Collectively, these findings suggest that palmitate could induce insulin resistance through Smad3-mediated down-regulation of the Fndc5 gene."	"Naringenin attenuates the progression of liver fibrosis via inactivation of hepatic stellate cells and profibrogenic pathways. There is no effective treatment for hepatic fibrosis. Previously, we demonstrated that naringenin possesses the ability to prevent experimental chronic liver damage. Therefore, the objective of this work was to investigate whether naringenin could reverse carbon tetrachloride (CCl4)-induced fibrosis in rats and, if so, to search for the mechanisms involved. CCl4 was given to male Wistar rats (400 mg/kg, three times per week, i. p.) for 12 weeks; naringenin (100 mg/kg twice per day, p. o.) was administered from weeks 9-12 of the CCl4 treatment. Liver damage and oxidative stress markers were measured. Masson's trichrome, hematoxylin-eosin staining and immunohistochemistry were performed. Zymography assays for MMP-9 and MMP-2 were carried out. TGF-β, CTGF, Col-I, MMP-13, NF-κB, IL-1β, IL-10, Smad7, pSmad3 and pJNK protein levels were determined by western blotting. In addition, α-SMA and Smad3 protein and mRNA levels were studied. Naringenin reversed liver damage, biochemical and oxidative stress marker elevation, and fibrosis and restored normal MMP-9 and MMP-2 activity. The flavonoid also preserved NF-κB, IL-1β, IL-10, TGF-β, CTGF, Col-I, MMP-13 and Smad7 protein levels. Moreover, naringenin decreased JNK activation and Smad3 phosphorylation in the linker region. Finally, α-SMA and Smad3 protein and mRNA levels were reduced by naringenin administration. The results of this study demonstrate that naringenin blocks oxidative stress, inflammation and the TGF-β-Smad3 and JNK-Smad3 pathways, thereby carrying out its antifibrotic effects and making it a good candidate to treat human fibrosis, as previously demonstrated in toxicological and clinical studies."	"Shikonin suppresses progression and epithelial-mesenchymal transition in hepatocellular carcinoma (HCC) cells by modulating miR-106b/SMAD7/TGF-β signaling pathway. Shikonin is a natural naphthoquinone component with antioxidant and anti-tumor function and has been used for hepatocellular carcinoma (HCC) treatment. According to the previous study, many herbs can regulate cancer cell progression by targeting specific microRNA (miRNA) (Liu, 2016). However, the underlying pathological mechanism of shikonin in HCC therapy is still unclear. The detection of cell growth and death rate were performed by hemacytometry and trypan blue staining, respectively. The expression of miR-106b and SMAD7 messenger RNA (mRNA) in HCC cells was evaluated by quantitative real-time polymerase chain reaction. Cell proliferation, apoptosis, and migration ability were measured by cell counting kit-8 (CCK-8), flow cytometry, and transwell assay. The expression of proteins E-cadherin, N-cadherin, vimentin, SMAD7, TGF-β1, p-SMAD3, SMAD3, and GAPDH was examined by western blot. The interaction between SMAD7 and miR-106b was assessed by luciferase reporter system. Shikonin inhibited Huh7 and HepG2 cell growth in a dose-dependent manner while induced cell death in a time-dependent manner. In addition, the expression of miR-106b was reduced after shikonin treatment. Moreover, miR-106b attenuated the suppressive effects of shikonin on HCC cell migration and epithelial-mesenchymal transition (EMT). SMAD7 was predicted as a target of miR-106b and the prediction was confirmed by luciferase reporter system. Additionally, we observed that SMAD7 reversed the promotive effects of miR-106b on HCC cell progression and EMT. The subsequent western blot assay revealed that shikonin could modulate SMAD7/TGF-β signaling pathway by targeting miR-106b. In conclusion, Shikonin suppresses cell progression and EMT and accelerates cell death of HCC cells via modulating miR-106b/SMAD7/TGF-β signaling pathway, suggesting shikonin could be an effective agent for HCC treatment."	"Increased androgen receptor levels and signaling in ovarian cancer cells by VEPH1 associated with suppression of SMAD3 and AKT activation. Studies indicate androgens contribute to initiation or progression of epithelial ovarian cancer through poorly understood mechanisms. We provide evidence that the androgen receptor (AR) interacts in a ligand-independent manner with the putative armadillo repeat domain of ventricular zone expressed PH domain-containing 1 (VEPH1). This interaction was increased by mutation of the two nuclear receptor-interacting LxxLL motifs present within the VEPH1 armadillo repeat domain. Androgen treatment did not result in nuclear co-localization of VEPH1 with AR, suggesting that VEPH1 does not function as a nuclear co-regulatory protein. VEPH1 expression decreased SMAD3 and activated AKT levels in ovarian cancer cell lines and increased AR activity and protein levels, consistent with an impact on receptor stability. Treatment of cells with dihydrotestosterone (DHT) increased AR protein levels measured 24 h after treatment, an effect augmented in VEPH1-transfected cells, and inhibited by knock-down of endogenous VEPH1. SMAD3 overexpression decreased AR protein levels and prevented the VEPH1-dependent increase in AR; however, silencing of SMAD3 paradoxically also decreased AR levels. DHT treatment led to a rapid and sustained decrease in phosphorylated AKT (pAKT) levels that was enhanced by VEPH1 expression. Inhibition of PI3K resulted in increased AR protein levels. These studies indicate that VEPH1 acts to enhance AR activity in ovarian cancer cells by decreasing SMAD3 and pAKT levels, resulting in increased levels of AR protein."	"Retinol dehydrogenase 10 promotes metastasis of glioma cells via the transforming growth factor-β/SMAD signaling pathway. Glioma is the most common primary malignant tumor in the central nervous system. Because of the resistance of glioma to chemoradiotherapy and its aggressive growth, the survival rate of patients with glioma has not improved. This study aimed to disclose the effect of retinol dehydrogenase 10 (RDH10) on the migration and invasion of glioma cells, and to explore the potential mechanism. Reverse transcription-polymerase chain reaction (RT-PCR) was used to determine the expression levels of RDH10 in healthy glial cells and glioma cells. Human glioma cell strains, U87 and U251, were infected with negative control or RDH10-interfering lentiviruses. RT-PCR and Western blotting were performed to determine the knockdown efficiency. Scratch and transwell assays were used to assess cell migration and invasion after RDH10 knockdown. Finally, changes in transforming growth factor-β (TGF-β)/SMAD signaling pathway-related expression were examined by Western blotting. Differences between groups were analyzed by one-way analysis of variance. RDH10 was highly expressed in glioma cells. Compared with the control group, RDH10 knockdown significantly reduced RDH10 messenger RNA and protein expression levels in U87 and U251 glioma cells (U87: 1.00 ± 0.08 vs. 0.22 ± 0.02, t = 16.55, P &lt; 0.001; U251: 1.00 ± 0.17 vs. 0.39 ± 0.01, t = 6.30, P &lt; 0.001). The scratch assay indicated that compared with the control group, RDH10 knockdown significantly inhibited the migration of glioma cells (U87: 1.00% ± 0.04% vs. 2.00% ± 0.25%, t = 6.08, P &lt; 0.01; U251: 1.00% ± 0.11% vs. 2.48% ± 0.31%, t = 5.79, P &lt; 0.01). Furthermore, RDH10 knockdown significantly inhibited the invasive capacity of glioma cells (U87: 97.30 ± 7.01 vs. 13.70 ± 0.58, t = 20.36, P &lt; 0.001; U251: 96.20 ± 7.10 vs. 18.30 ± 2.08, t = 18.51, P &lt; 0.001). Finally, Western blotting demonstrated that compared with the control group, downregulation of RDH10 significantly inhibited TGF-β expression, phosphorylated SMAD2, and phosphorylated SMAD3 (TGF-β: 1.00 ± 0.10 vs. 0.53 ± 0.06, t = 7.05, P &lt; 0.01; phosphorylated SMAD2: 1.00 ± 0.20 vs. 0.42 ± 0.17, t = 4.01, P &lt; 0.01; phosphorylated SMAD3: 1.00 ± 0.18 vs. 0.41 ± 0.12, t = 4.12, P &lt; 0.01). RDH10 knockdown might inhibit metastasis of glioma cells via the TGF-β/SMAD signaling pathway."	"Berberine Attenuates Cigarette Smoke Extract-induced Airway Inflammation in Mice: Involvement of TGF-β1/Smads Signaling Pathway. Although several studies confirmed that berberine may attenuate airway inflammation in mice with chronic obstructive pulmonary disease (COPD), its underlying mechanisms were not clear until now. We aimed to establish an experiment mouse model for COPD and to investigate the effects of berberine on airway inflammation and its possible mechanism in COPD model mice induced by cigarette smoke extract (CSE). Twenty SPF C57BL/6 mice were randomly divided into PBS control group, COPD model group, low-dose berberine group and high-dose berberine group, 5 mice in each group. The neutrophils and macrophages were examined by Wright's staining. The levels of inflammatory cytokines TNF-α and IL-6 in bronchoalveolar lavage fluid (BALF) were determined by enzyme-linked immunosorbent assay. The expression levels of TGF-β1, Smad2 and Smad3 mRNA and proteins in lung tissues were respectively detected by quantitative real-time polymerase chain reaction and Western blotting. It was found that CSE increased the number of inflammation cells in BALF, elevated lung inflammation scores, and enhanced the TGF-β1/Smads signaling activity in mice. High-dose berberine restrained the alterations in the COPD mice induced by CSE. It was concluded that high-dose berberine ameliorated CSE-induced airway inflammation in COPD mice. TGF-β1/Smads signaling pathway might be involved in the mechanism. These findings suggested a therapeutic potential of high-dose berberine on the CSE-induced airway inflammation."	"Hesperidin ameliorates bleomycin-induced experimental pulmonary fibrosis via inhibition of TGF-beta1/Smad3/AMPK and IkappaBalpha/NF-kappaB pathways. Bleomycin (BLM) is a chemotherapeutic agent which is associated with Idiopathic pulmonary fibrosis (IPF) due to its chronic administration. Hesperidin, a bioflavonoid has been reported to possess antioxidant, anti-inflammatory, wound healing, and antiapoptotic potential. To evaluate the therapeutic potential of hesperidin against BLM-induced pulmonary fibrosis and decipher its possible mechanism of action. Intraperitoneal administration of BLM (6 IU/kg) caused induction of IPF in Sprague-Dawley rats. Rats were treated with hesperidin (25, 50, and 100 mg/kg, p.o.) for 28 days, followed by estimation of various parameters in bronchoalveolar lavage fluid (BALF) and lung. Hesperidin (50 and 100 mg/kg) administration significantly ameliorated (p &lt; 0.05) alterations induced by BLM in lung index, percent oxygen saturation, serum ALP and LDH levels, BALF differential cell count, and lung function test. Elevated levels of oxido-nitrosative stress, hydroxyproline, and myeloperoxidase levels in BALF and lung were significantly decreased by hesperidin on day 14. Hesperidin significantly inhibited BLM-induced down-regulated lung Nrf2 and HO-1 as well as up-regulated TNF-α, IL-1β, IL-6, collagen-1, TGF-β, and Smad-3 mRNA expressions. Western blot analysis showed that alteration in lung NF-κB, IκBα, AMPK, and PP2C-α protein expressions were ameliorated by hesperidin on day 28. Furthermore, BLM induced histological and ultrastructural aberrations in the lung which were attenuated by hesperidin treatment. Hesperidin alleviates BLM-induced IPF via inhibition of TGF-β1/Smad3/AMPK and IκBα/NF-κB pathways which in turn ameliorate the modulation of oxido-inflammatory markers (Nrf2 and HO-1) and pro-inflammatory markers (TNF-α, IL-1β, and IL-6) to reduce collagen deposition during pulmonary fibrosis. See also Figure 1(Fig. 1)."	"Overexpression of microRNA-21 mediates Ang II-induced renal fibrosis by activating the TGF-β1/Smad3 pathway via suppressing PPARα. Angiotensin II (Ang II) is an important profibrotic factor, and the tumor-promoting microRNA miR-21 was recently linked to fibrotic disorders. We aimed to investigate whether and how miR-21 mediates Ang II-induced renal fibrosis. In renal tubular epithelial cells, Ang II upregulated miR-21 and fibrosis-related indicators but decreased PPARα expression. miR-21 overexpression promoted PPARα downregulation, activated the TGF-β1/Smad3 pathway and induced fibrogenesis, while miR-21 suppression exerted opposite effects. In Ang II-treated cells, reduced PPARα expression, TGF-β1/Smad3 pathway activation and fibrogenesis were all exacerbated by miR-21 upregulation but alleviated by miR-21 inhibition. The dual-luciferase assay confirmed PPARα as the target of miR-21. PPARα silencing alone could overactivate the TGF-β1/Smad3 pathway in the presence or absence of Ang II. Importantly, the regulatory effects of miR-21 knockdown and the angiotensin type 1 receptor blocker losartan alone or in combination on the PPARα/TGF-β1/Smad3 pathway in Ang II-treated cells were almost the same. More crucially, PPARα restoration abolished the profibrotic effect of miR-21 overexpression. In addition, inhibiting miR-21 in Ang II-treated mice effectively ameliorated the abnormally activated PPARα/TGF-β1/Smad3 pathway, albuminuria, and renal fibrosis without lowering blood pressure. These results demonstrated that miR-21 extensively mediates Ang II-induced kidney fibrosis via amplifying the TGF-β1/Smad3 pathway by targeting PPARα."	"Protein arginine methyltransferase 1 promotes epithelial-mesenchymal transition via TGF-β1/Smad pathway in hepatic carcinoma cells. Protein arginine methyltransferase 1 (PRMT1) is dysregulated in a number of human cancers. Herein, we report that PRMT1 expression is directly associated with epithelial-mesenchymal transition (EMT) in hepatic carcinoma cells. Firstly, we find that PRMT1 expression is higher in hepatic carcinoma tissues than that in normal liver tissues at both mRNA and protein levels, and higher expression of PRMT1 correlates with poor survival in liver tumors. The data in vitro reveals that PRMT1 knockdown inhibits the abilities of proliferation, migration and invasion, while PRMT1 overexpression promotes the above behaviors in hepatic carcinoma cells. Further studies indicate that PRMT1 knockdown remarkably decreases the expression of mesenchymal markers including Vimentin, Snail and N-cadherin, and upregulates expression of epithelial markers E-cadherin. Conversely, PRMT1 overexpression results in the opposite effects. Additionally, we identified that PRMT1 knockdown resulted in downregulation of TGF-β1, p-Smad2 and p-Smad3, while PRMT1 overexpression activated TGF-β1, p-Smad2 and p-Smad3. These findings suggest that PRMT1 promotes EMT in hepatic carcinoma cells probably via TGF-β1/Smad pathway, and might represent a novel anti-liver cancer strategy."	"In vitro screening for compounds from Hypericum longistylum with anti-pulmonary fibrosis activity. Idiopathic pulmonary fibrosis (IPF) is a progressive lung disease with a poor prognosis and limited therapies, and transforming growth factor-β1 (TGF-β1) plays a central role in the pathogenesis of IPF. Here, we aimed to investigate the chemical constituents and biological activities of Hypericum longistylum and detect whether the isolated compounds inhibit the TGF-β1/Smad3 signaling pathway to identify candidate compounds for the treatment of pulmonary fibrosis. Fifteen compounds (1-15) were isolated from H. longistylum and their structures were elucidated on the basis of spectroscopic analyses. An in vitro MTT assay was used to test the effect of these fifteen compounds on fibroblast cytotoxicity and vitality. Furthermore, their bioactivities were screened using a TGF-β1/Smad3 pathway luciferase reporter in vitro. MTT screening found that compounds 1-15 had no deleterious effects on normal mouse lung fibroblasts and no significant inhibition of vitality. Luciferase assay showed that compounds 14 and 15 could significantly inhibit the TGF-β1/Smad3 pathway with the inhibition rates of 67.92% and 93.10%, respectively. Both compounds can be used as lead compounds for structural modification and optimization to obtain more drug candidates for the treatment of pulmonary fibrosis."	"Endothelial specific deletion of FOXO1 alters pericyte coverage in the developing retina. Pericytes are mural cells that cover small blood vessels. While defects in pericyte coverage are known to be involved in various vessel related pathologies, including diabetic retinopathy, the molecular mechanisms underlying pericyte coverage are not fully understood. In this study, we investigated the contribution of the forkhead transcription factor FOXO1 in endothelial cells to pericyte coverage in the developing retina. We observed retinal pericytes in tamoxifen-inducible endothelium-specific Foxo1 deletion mice. Tamoxifen was injected at postnatal day 1-3 and the retinas were harvested at P21. Our results demonstrated that Foxo1 deletion in the endothelium affected arteriole pericyte morphology without altering pericyte number, proliferation, and apoptosis. We hypothesized that abnormal pericyte morphogenesis in the knockout retina was caused by impaired pericyte differentiation. FOXO1 silencing by siRNA in the primary artery endothelium further revealed that THBS1 (thrombospondin 1), which promotes pericyte differentiation via TGFβ activation, was reduced in the FOXO1-deficient endothelium. Immunohistochemistry of FOXO1 knockout mice showed reduced numbers of phospho-Smad3<sup>+</sup> arteriole pericytes compared with wild-type mice. In addition, endothelium-pericyte co-culture analysis revealed that pericytes cultured with FOXO1-deficient endothelial cells failed to differentiate sufficiently; this failure was partially rescued by the addition of recombinant THBS1 to the supernatant. The findings suggest that endothelial FOXO1 contributes to pericyte differentiation via regulation of THBS1 expression. This study provides new insights into the molecular mechanism of pericyte coverage in the context of endothelium-derived regulation and highlights a new therapeutic target for pericyte-related pathology."
+"TGFB2"	"familial thoracic aortic aneurysm and aortic dissection"	"Anti-fibrotic effects of rosmarinic acid on Tenon's capsule fibroblasts stimulated with TGF-β: therapeutic potential in ocular surgery. Collagen deposition and myofibroblast differentiation are critical factors related to excessive scarring in ocular surgeries. This study evaluated the anti-fibrotic activity of rosmarinic acid on rabbit Tenon's capsule fibroblasts stimulated with transforming growth factor- β2. Primary cultures of rabbit Tenon's capsule fibroblasts were treated with various concentrations of rosmarinic acid for 12 h, in the presence and absence of transforming growth factor-β2. After 48 h, the proliferation index of rabbit Tenon's capsule fibroblasts and the differentiation of myofibroblasts were investigated through immunofluorescence staining for proliferating cell nuclear antigen and alpha smooth muscle actin. An automated cell counter and colorimetric metabolic activity assay were used to evaluate cell number and viability. Collagen expression and production were determined by quantitative real-time polymerase chain reaction and hydroxyproline assay, respectively. Unstimulated rabbit Tenon's capsule fibroblasts treated with any concentration of rosmarinic acid exhibited diminished collagen expression (p&lt;0.01) but showed no differences in proliferation index. Transforming growth factor-β2 exposure induced myofibroblast differentiation and increased collagen production. Exposure to rosmarinic acid at 1.0 and 3.0 µM concentrations reduced the proliferation index (p&lt;0.02), as well as the collagen expression and hydroxyproline content (p&lt;0.05). Exposure to 3.0 µM rosmarinic acid reduced viability (p=0.035) in unstimulated rabbit Tenon's capsule fibroblasts and cell numbers (p=0.001) in both stimulated and unstimulated rabbit Tenon's capsule fibroblast cultures. Exposure to 1.0 µM rosmarinic acid was noncytotoxic and led to reduced collagen expression and proliferation of stimulated rabbit Tenon's capsule fibroblasts. These findings suggest that rosmarinic acid is a relatively non-injurious anti-fibrotic compound to rabbit Tenon's capsule fibroblasts, with potential application as an adjunctive agent in ocular procedures, particularly in glaucoma surgeries."	"lncRNA MIAT increases cell viability, migration, EMT and ECM production in age-related cataracts by regulating the miR-181a/CTGF/ERK signaling pathway. Age-related cataract (ARC) is a common cause of blindness in elderly individuals. Long non-coding RNA (lncRNA) myocardial infarction associated transcript (MIAT) has been reported to participate in various biological processes in a number of diseases; however, the biological mechanism underlying MIAT during ARC is not completely understood. The expression levels of MIAT, microRNA (miR)-181a and connective tissue growth factor (CTGF) were measured by reverse transcription-quantitative PCR. The protein expression levels of CTGF, α-smooth muscle actin, fibronectin, collagen type I, ERK, phosphorylated (p)-ERK, mitogen-activated protein kinase (MEK), and p-MEK were detected by western blotting. Cell viability and migration were assessed using MTT and Transwell assays, respectively. Moreover, a dual-luciferase reporter assay was performed to investigate the interaction between miR-181a and MIAT or CTGF. MIAT and CTGF were upregulated, while miR-181a was significantly downregulated in ARC tissues compared with normal tissues. MIAT or CTGF knockdown decreased cell viability, migration, epithelial-mesenchymal transition and extracellular matrix production in TGF-β2-treated SRA01/04 cells. It was hypothesized that miR-181a may be sponged by MIAT and may target CTGF. Furthermore, the miR-181a inhibitor reversed the inhibitory effect of MIAT knockdown on the progression of TGF-β2-treated SRA01/04 cells. Moreover, CTGF knockdown also reversed MIAT overexpression-mediated progression of TGF-β2-treated SRA01/04 cells. In addition, MIAT and CTGF regulated the activity of the ERK signaling pathway. The results suggested that MIAT may regulate the progression of ARC via the miR-181a/CTGF/ERK signaling pathway, which may serve as a novel therapeutic target for ARC."	"Potential adverse effects of ciprofloxacin and tetracycline on ARPE-19 cell lines. We aim to determine the possible adverse effects of ciprofloxacin (CPFX) and tetracycline (TETRA), as examples of bactericidal and bacteriostatic agents, respectively, on cultured human retinal pigment epithelial cells (ARPE-19). Cells were treated with 30, 60 and 120 µg/mL of CPFX and TETRA. Cell metabolism was measured by 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay. JC-1 dye (5',6,6'-tetrachloro-1,1',3,3'-tetraethylbenzimidazolylcarbocyanine iodide) assay was conducted to measure the mitochondrial membrane potential (MMP). The level of reactive oxygen species (ROS) was measured using the -2',7'-dichlorodihydrofluorescein diacetate assay (H2DCFDA). Quantitative real-time PCR was performed to analyse the gene expression levels associated with apoptosis (BAX, BCL2-L13, BCL2, Caspase 3, Caspase 7 and Caspase 9), inflammatory (interleukin-1β (IL-1β), IL-6, IL-33, transforming growth factor-α (TGF-α), TGF-β1 and TGF-β2) and antioxidant pathways (SOD2, SOD3, GPX3 and NOX4), along with the mitochondrial DNA (mtDNA) copy numbers. Results illustrated that while all three concentrations of CPFX decreased cellular viability of ARPE-19 during all incubation periods, the 120 µg/mL TETRA resulted in increased cellular viability. At 48 and 72 hours, levels of MMP and ROS decreased significantly with each antibiotic. BAX, BCL2-L13, CASP-7, CASP-9, SOD2 and GPX3 genes overexpressed by either antibiotics. There was higher expression of IL-6 and IL-1B with TETRA treatment. The level of mtDNA decreased using both treatments. Clinically relevant concentrations of CPFX and TETRA have detrimental impacts on ARPE-19 cell lines in vitro, including upregulation of genes related to apoptosis, inflammation and antioxidant pathways. Additional studies are warranted to investigate if these harmful effects might be seen in retinal degeneration models in vivo."	"Bull seminal plasma stimulates in vitro production of TGF-β, IL-6 and IL-8 from bovine endometrial epithelial cells, depending on dose and bull fertility. Seminal plasma (SP) regulates immune responses in the female reproductive tract through specific cytokines. It is not known whether SP from high fertility bulls (H) differs from SP from low fertility bulls (L). In this study, the cytokine response of bovine endometrial epithelial cells (bEEC) in culture was investigated after challenge with SP from two bulls of below average (L) or three bulls of above average fertility (H). The bEECs were challenged with 1% or 4% SP from l- or H-fertility bulls (L1, L4, H1, H4, respectively) or 1% or 4% PBS as control (C1, C4) for 72 h. The culture media were analysed for concentrations (pg/million cells) of transforming growth factor beta (TGF-β1, TGF-β2 and TGF-β3) by Luminex, and Interleukin 6 and 8 (IL-6, IL-8) by ELISA. Challenge significantly affected production of TGF-ß1, TGF-ß2 and IL-8 compared to controls and was affected by bull fertility (p &lt; 0.0001), SP concentration (p &lt; 0.0001) and their interaction (p &lt; 0.0001). A higher production of TGF-β1, TGF-β2 and IL-8 (p &lt; 0.0001), and also IL-6 (p &lt; 0.01), resulted from challenge with high doses of SP, being higher for L than H (p &lt; 0.05). For TGF-β3, fertility of bull (p &lt; 0.05). For TGF-B3, fertility of bull (p &lt; 0.05) and the interaction between fertility and concentration of SP were significant (p &lt; 0.01). In conclusion, 4% SP from L bulls stimulated more TGF-β1, TGF-β2, TGF-β3, IL-6 and IL-8 production than SP from H bulls, indicating that stimulation of the endometrium is relevant for fertility. Seminal plasma from high fertility bulls seems to affect cytokine production in utero positively in inseminated cows."	"Integrated analysis of ultra-deep proteomes in cortex, cerebrospinal fluid and serum reveals a mitochondrial signature in Alzheimer's disease. Based on amyloid cascade and tau hypotheses, protein biomarkers of different Aβ and tau species in cerebrospinal fluid (CSF) and blood/plasma/serum have been examined to correlate with brain pathology. Recently, unbiased proteomic profiling of these human samples has been initiated to identify a large number of novel AD biomarker candidates, but it is challenging to define reliable candidates for subsequent large-scale validation. We present a comprehensive strategy to identify biomarker candidates of high confidence by integrating multiple proteomes in AD, including cortex, CSF and serum. The proteomes were analyzed by the multiplexed tandem-mass-tag (TMT) method, extensive liquid chromatography (LC) fractionation and high-resolution tandem mass spectrometry (MS/MS) for ultra-deep coverage. A systems biology approach was used to prioritize the most promising AD signature proteins from all proteomic datasets. Finally, candidate biomarkers identified by the MS discovery were validated by the enzyme-linked immunosorbent (ELISA) and TOMAHAQ targeted MS assays. We quantified 13,833, 5941, and 4826 proteins from human cortex, CSF and serum, respectively. Compared to other studies, we analyzed a total of 10 proteomic datasets, covering 17,541 proteins (13,216 genes) in 365 AD, mild cognitive impairment (MCI) and control cases. Our ultra-deep CSF profiling of 20 cases uncovered the majority of previously reported AD biomarker candidates, most of which, however, displayed no statistical significance except SMOC1 and TGFB2. Interestingly, the AD CSF showed evident decrease of a large number of mitochondria proteins that were only detectable in our ultra-deep analysis. Further integration of 4 cortex and 4 CSF cohort proteomes highlighted 6 CSF biomarkers (SMOC1, C1QTNF5, OLFML3, SLIT2, SPON1, and GPNMB) that were consistently identified in at least 2 independent datasets. We also profiled CSF in the 5xFAD mouse model to validate amyloidosis-induced changes, and found consistent mitochondrial decreases (SOD2, PRDX3, ALDH6A1, ETFB, HADHA, and CYB5R3) in both human and mouse samples. In addition, comparison of cortex and serum led to an AD-correlated protein panel of CTHRC1, GFAP and OLFM3. In summary, 37 proteins emerged as potential AD signatures across cortex, CSF and serum, and strikingly, 59% of these were mitochondria proteins, emphasizing mitochondrial dysfunction in AD. Selected biomarker candidates were further validated by ELISA and TOMAHAQ assays. Finally, we prioritized the most promising AD signature proteins including SMOC1, TAU, GFAP, SUCLG2, PRDX3, and NTN1 by integrating all proteomic datasets. Our results demonstrate that novel AD biomarker candidates are identified and confirmed by proteomic studies of brain tissue and biofluids, providing a rich resource for large-scale biomarker validation for the AD community."	"TGFβ2-mediated epithelial-mesenchymal transition and NF-κB pathway activation contribute to osimertinib resistance. Osimertinib (AZD9291) has been widely used for the treatment of EGFR mutant non-small cell lung cancer. However, resistance to osimertinib is inevitable. In this study we elucidated the molecular mechanisms of resistance in osimertinib-resistant NCI-H1975/OSIR cells. We showed that NCI-H1975/OSIR cells underwent epithelial-mesenchymal transition (EMT), which conferred sensitivity to the GPX4 inhibitor 1S, 3R-RSL3 to induce ferroptotic cell death. The EMT occurrence resulted from osimertinib-induced upregulation of TGFβ2 that activated SMAD2. On the other hand, we revealed that NCI-H1975/OSIR cells were highly dependent on NF-κB pathway for survival, since treatment with the NF-κB pathway inhibitor BAY 11-7082 or genetic silence of p65 caused much greater cell death as compared with the parental NCI-H1975 cells. In NCI-H1975 cells, osimertinib activated NF-κB pathway, evidenced by the increased p65 nuclear translocation, which was abolished by knockdown of TGFβ2. In the cancer genome atlas lung adenocarcinoma data, TGFB2 transcript abundance significantly correlated with EMT-associated genes and NF-κB pathway. In addition, coexistence of EMT and activation of NF-κB pathway was observed in several NCI-H1975/OSIR clones. These findings shed new light on distinct roles of TGFβ2 in osimertinib-resistant cells and provide new strategies for treatment of this resistant status."	"An Inverse Relationship Between c-Kit/CD117 and mTOR Confers NK Cell Dysregulation Late After Severe Injury. Major trauma-induced tissue injury causes a dysregulation of the immune system. Severe systemic inflammation occurs early after the insult. Later on, an enhanced risk for life-threatening opportunistic infections develops that culminates at the end of the first week after trauma. CD56<sup>bright</sup> Natural killer (NK) cells play a key role in the defense against infection due to their rapid release of Interferon (IFN) γ in response to Interleukin (IL) 12. NK cells are impaired in IFN-γ synthesis after severe injury due to a disturbed IL-12/IFN-γ axis. Thereby, a circulating factor mediates extrinsic suppression of NK cells. Yet unknown cell-intrinsic mechanisms manifest by day 8 after trauma and render NK cells unresponsive to stimulatory cytokines. In the present study, we investigated the origin of such late NK cell-intrinsic suppression after major trauma. Peripheral blood mononuclear cells (PBMC) were isolated from patients 8 day after severe injury and from healthy control subjects and were stimulated with inactivated Staphylococcus aureus. The expression of diverse cytokine receptors, intracellular signaling molecules, and the secretion of IFN-γ by CD56<sup>bright</sup> NK cells were examined. After stimulation with S. aureus, NK cells from patients expressed enhanced levels of c-kit/CD117 that inversely correlated with IFN-γ synthesis and IL-12 receptor (IL-12R) β2 expression. Supplementation with IL-15 and inhibition of the transforming growth factor receptor (TGF-βR) I reduced CD117 expression and increased the level of IL-12Rβ2 and IFN-γ. NK cells from patients showed reduced phosphorylation of mammalian target of rapamycin (mTOR). Addition of IL-15 at least partly restored mTOR phosphorylation and increased IL-12Rβ2 expression. The reduced mTOR phosphorylation after severe injury was cell-intrinsic as it was not induced by serum factors. Inhibition of mTOR in purified NK cells from healthy donors by rapamycin decreased the synthesis of IFN-γ. Thus, impaired mTOR phosphorylation in response to a microbial challenge contributes to the cell-intrinsic mechanisms that underlie NK cell dysregulation after trauma. Restoration of the mTOR phosphorylation capacity along with inhibition of the TGF-βRI signaling in NK cells after severe injury might improve the immune defense against opportunistic infections."	"PTEN Inhibition Accelerates Corneal Endothelial Wound Healing through Increased Endothelial Cell Division and Migration. To investigate the role of phosphatase and tensin homologue deleted on chromosome 10 (PTEN) in the regulation of corneal endothelial cell (CECs) focusing on proliferation and migration, and to further evaluate the application of PTEN inhibitors in the treatment of corneal endothelial dysfunction in a rat model. Expression of PTEN in human and rat corneal endothelium was determined by immunocytochemistry, western blotting, and ELISA. A small molecular inhibitor of PTEN, bpV(pic), was applied in the culture of human CEC cell line B4G12 and organ-cultured rat cornea in the presence of transforming growth factor beta 2 (TGF-β2). Cell cycle status was detected by flow cytometry and BrdU staining. Subcellular localization for endogenous p27Kip1 was detected by immunocytochemistry and western blotting. Moreover, exogenous transfected YFP-p27Kip1 was observed under a fluorescent microscope. Cell migration was examined with a wound scratch model and transwell invasion assay. Finally, bpV(pic) was intracamerally injected in a rat corneal endothelial injury model. The wound healing process was evaluated by slit lamp biomicroscopy, optical coherence tomography, histological and scanning electron microscope examination. The expression of PTEN in human corneal endothelium was higher compared with rat, which we speculate was mostly responsible for the relatively less proliferation capacity of human CEC than rat. PTEN inhibition by bpV(pic) could reverse TGF-β2-induced CEC G1-arrest by alleviating p27Kip1 nuclear accumulation and decreasing total p27Kip1 expression. In addition, bpV(pic) promoted CEC migration, which acted synergistically with TGF-β2. Finally, intracameral injection of bpV(pic) could promote corneal endothelial wound healing in a rat model. Our study provided experimental basis for the development of therapeutic agent targeting on PTEN for the treatment of corneal endothelial dysfunction."	"MicroRNA-148a-3p alleviates high glucose-induced diabetic retinopathy by targeting TGFB2 and FGF2. Diabetic retinopathy (DR), a common complication of type 1 or type 2 diabetes mellitus, has become the leading cause of blindness among adults in working age. The dysregulation of microRNA has been reported to be strongly related to the initiation or progression of DR. However, neither the biological role nor the molecular mechanism of miR-148a-3p has been researched in DR. This study is designed to investigate the function and mechanism of miR-148a-3p in DR. The bioinformatics analysis (Targetscan: https://www.targetscan.org/vert_72/ ) and numerous experiments including real-time quantitative polymerase chain reaction, terminal deoxynucleotidyltransferase dUTP nick end labeling, CCK-8, western blot, vasculogenesis and luciferase reporter assays were used to research the function and mechanism of miR-148a-3p in DR. We constructed DR cell model by treating human retinal microvascular endothelial cells (HRECs) with different concentration gradients of high glucose (HG). Additionally, HG treatment reduced miR-148a-3p level in HRECs. In function, overexpression of miR-148a-3p caused an increase in cell viability and a decrease in cell apoptosis. Besides, miR-148a-3p overexpression led to a damage on blood-retinal barrier (BRB) and suppressed angiogenesis. In mechanism, miR-148a-3p specifically bound to 3' untranslated region of TGFB2 and FGF2. At least, rescue assays demonstrated that the inhibitive influence of miR-148a-3p mimics on BRB injury was offset by overexpression of TGFB2 and the attenuation of angiogenesis resulting from miR-148a-3p mimics was abrogated by overexpression of FGF2 CONCLUSIONS: In a word, we discovered that miR-148a-3p alleviated HG-induced DR by targeting TGFB2 and FGF2. This novel discovery indicated miR-148a-3p as a potential target for DR diagnosis or treatment."	"Effects of Clostridium perfringens beta2 toxin on apoptosis, inflammation, and barrier function of intestinal porcine jejunum epithelial cells. Clostridium perfringens beta2 (CPB2) toxin is an important virulence factor that causes enteric diseases in both humans and animals. To investigate the underlying mechanism in CPB2-induced inflammation and damage in the small intestinal epithelium, intestinal porcine epithelial cells (IPEC-J2) were treated with recombinant CPB2 (rCPB2) toxin. The results showed that IPEC-J2 cell viability was decreased by rCPB2 toxin treatment in a dose- and time-dependent manner. Analysis of cell morphology and Annexin V-FTIC/PI staining revealed that rCPB2 toxin induces cell apoptosis. Indeed, the expression of caspase-3, caspase-8, and caspase-9 was significantly increased at both the mRNA and protein levels in IPEC-J2 cells treated with rCPB2 toxin. The caspase-3 inhibitor Ac-DEVD-CHO reduced rCPB2 toxin-induced cell apoptosis. Moreover, exposure to the toxin increased the expression of interleukin (IL)-6, IL-7, IL-12, and IL-1β, while decreasing that of transforming growth factor beta 1 (TGFβ1). Additionally, rCPB2 toxin treatment also induced intestinal barrier dysfunction, as evidenced by the degradation of zonula occludens (ZO)-1, claudin-1, and E-cadherin, as well as an increase in paracellular permeability. Overall, the results indicated that rCPB2 toxin induces apoptosis and inflammation, in addition to impairing intestinal barrier function in IPEC-J2 cells. Our findings provide a foundation to better understand the pathogenesis of C. perfringens infection and inform strategies to effectively prevent and treat C. perfringens-induced enteric diseases."	"Transcriptomic Profile of Primary Culture of Skeletal Muscle Cells Isolated from Semitendinosus Muscle of Beef and Dairy Bulls. The aim of the study was to identify differences in the transcriptomic profiles of primary muscle cell cultures derived from the semitendinosus muscle of bulls of beef breeds (Limousin (LIM) and Hereford (HER)) and a dairy breed (Holstein-Friesian (HF)) (n = 4 for each breed). Finding a common expression pattern for proliferating cells may point to such an early orientation of the cattle beef phenotype at the transcriptome level of unfused myogenic cells. To check this hypothesis, microarray analyses were performed. The analysis revealed 825 upregulated and 1300 downregulated transcripts similar in both beef breeds (LIM and HER) and significantly different when compared with the dairy breed (HF) used as a reference. Ontological analyses showed that the largest group of genes were involved in muscle organ development. Muscle cells of beef breeds showed higher expression of genes involved in myogenesis (including erbb-3, myf5, myog, des, igf-1, tgfb2) and those encoding proteins comprising the contractile apparatus (acta1, actc1, myh3, myh11, myl1, myl2, myl4, tpm1, tnnt2, tnnc1). The obtained results confirmed our hypothesis that the expression profile of several groups of genes is common in beef breeds at the level of proliferating satellite cells but differs from that observed in typical dairy breeds."	"Alpha lipoic acid promotes development of hematopoietic progenitors derived from human embryonic stem cells by antagonizing ROS signals. Antagonism of ROS signaling can inhibit cell apoptosis and autophagy, thus favoring the maintenance and expansion of hematopoietic stem cells. Alpha lipoic acid (ALA), a small antioxidant molecule, affects cell apoptosis by lowering the ROS level. In this study, we show that ALA promoted production of human pluripotent stem cells (hPSCs) derived hemogenic endothelial cells and hematopoietic stem/progenitor cells in vitro. Transcriptome analysis of hPSCs derived hemogenic endothelial cells showed that ALA promoted endothelial-to-hematopoietic transition by up-regulating RUNX1, GFI1, GFI1B, MEIS2, and HIF1A and down-regulating SOX17, TGFB1, TGFB2, TGFB3, TGFBR1, and TGFBR2. ALA also up-regulated sensor genes of ROS signals, including HIF1A, FOXO1, FOXO3, ATM, PETEN, SIRT1, and SIRT3, during the process of hPSCs derived hemogenic endothelial cells generation. However, in more mature hPSC-derived hematopoietic stem/progenitor cells, ALA reduced ROS levels and inhibited apoptosis. In particular, ALA enhanced development of hPSCs derived hematopoietic stem/progenitor cells by up-regulating HIF1A in response to a hypoxic environment. Furthermore, addition of ALA in ex vivo culture greatly improved the maintenance of functional cord blood HSCs by in vivo transplantation assay. Our findings support the conjecture that ALA plays an important role in efficient regeneration of hematopoietic stem/progenitor cells from hPSCs and maintenance of functional HSCs, providing insight into understanding of regeneration of early hematopoiesis for engineering clinically useful hPSCs derived hematopoietic stem/progenitor cells transplantation. Thus, ALA can be used in the study of hPSCs derived HSCs."	"Differential Effects of TGF-β2 on the Low-Density Lipoprotein Receptor Expression in Three Types of Human Subconjunctival Fibroblasts. To investigate whether TGF-β2 had a different effect on the expression levels of low-density lipoprotein receptor (LDLr) in the subconjunctival fibroblasts from glaucoma patients who underwent a reoperation (RGSFs) compared with those from glaucoma patients who underwent first filtering surgery (GSFs) and control patients with cataracts (HSFs). Human subconjunctival fibroblasts were obtained from the three groups of patients. Different concentrations of TGF-β2 were added to the fibroblasts for 1, 3, and 5 days. The proliferation of the fibroblasts was determined by CCK-8 assays. Real-time PCR and western blotting were performed to analyze the mRNA and protein levels of LDLr. The uptake of DiI-labeled LDL was determined by confocal microscopy. The results revealed that under TGF-β2 exposure, fibroblast proliferation was positively correlated with LDLr expression (all p &lt; .001). The LDLr mRNA and protein levels were affected by TGF-β2 in a concentration-dependent and time-dependent manner in the RGSFs, GSFs and HSFs. The maximal expression of LDLr after TGF-β2 stimulation was consistent with the peak uptake of DiI-LDL, which was obviously highest in the RGSFs, followed by the GSFs, and then the HSFs (all p &lt; .05). All 3 groups took up DiI-LDL in a similar time-dependent manner, with maximal uptake at 6 h following DiI-LDL incubation (all p &lt; .05). In addition, there were significant differences in the LDLr protein levels in the subconjunctival tissues isolated from the glaucoma patients during reoperation, the glaucoma patients during first filtering surgery and the control patients at day 3 (p &lt; .05). The highest protein expression of LDLr was observed in the RG group. These data suggested that the RGSFs had the highest LDLr expression and the highest peak uptake of LDL among three groups. The LDLr-drug-LDL delivery system could potentially be used for targeted delivery of antimetabolite agents in anti-scarring therapy for glaucoma patients after filtering surgery."	"Targeting all transforming growth factor-β isoforms with a Fc chimeric receptor impairs tumor growth and angiogenesis of oral squamous cell cancer. Tumor progression is governed by various growth factors and cytokines in the tumor microenvironment (TME). Among these, transforming growth factor-β (TGF-β) is secreted by various cell types residing in the TME and promotes tumor progression by inducing the epithelial-to-mesenchymal transition (EMT) of cancer cells and tumor angiogenesis. TGF-β comprises three isoforms, TGF-β1, -β2, and -β3, and transduces intracellular signals via TGF-β type I receptor (TβRI) and TGF-β type II receptor (TβRII). For the purpose of designing ligand traps that reduce oncogenic signaling in the TME, chimeric proteins comprising the ligand-interacting ectodomains of receptors fused with the Fc portion of immunoglobulin are often used. For example, chimeric soluble TβRII (TβRII-Fc) has been developed as an effective therapeutic strategy for targeting TGF-β ligands, but several lines of evidence indicate that TβRII-Fc more effectively traps TGF-β1 and TGF-β3 than TGF-β2, whose expression is elevated in multiple cancer types. In the present study, we developed a chimeric TGF-β receptor containing both TβRI and TβRII (TβRI-TβRII-Fc) and found that TβRI-TβRII-Fc trapped all TGF-β isoforms, leading to inhibition of both the TGF-β signal and of TGF-β-induced EMT of oral cancer cells, whereas TβRII-Fc failed to trap TGF-β2. Furthermore, we found that TβRI-TβRII-Fc suppresses tumor growth and angiogenesis more effectively than TβRII-Fc in a subcutaneous xenograft model of oral cancer cells with high TGF-β expression. These results suggest that TβRI-TβRII-Fc may be a promising tool for targeting all TGF-β isoforms in the TME."	"The autophagy protein Ambra1 regulates gene expression by supporting novel transcriptional complexes. Ambra1 is considered an autophagy and trafficking protein with roles in neurogenesis and cancer cell invasion. Here we report that Ambra1 also localises to the nucleus of cancer cells, where it has a novel nuclear scaffolding function that controls gene expression. Using biochemical fractionation and proteomics, we found that Ambra1 binds to multiple classes of proteins in the nucleus, including nuclear pore proteins, adaptor proteins such as FAK and Akap8, chromatin modifying proteins and transcriptional regulators like Brg1 and Atf2. We identified biologically-important genes such as Angpt1, Tgfb2, Tgfb3, Itga8 and Itgb7 whose transcription is regulated by Ambra1-scaffolded complexes, likely by altering histone modifications and Atf2 activity. Therefore, in addition to its recognised roles in autophagy and trafficking, Ambra1 scaffolds protein complexes at chromatin, regulating transcriptional signalling in the nucleus. This novel function for Ambra1, and the specific genes impacted, may help to explain the wider role of Ambra1 in cancer cell biology."	"Index of Cancer-Associated Fibroblasts Is Superior to the Epithelial-Mesenchymal Transition Score in Prognosis Prediction. In many solid tumors, tissue of the mesenchymal subtype is frequently associated with epithelial-mesenchymal transition (EMT), strong stromal infiltration, and poor prognosis. Emerging evidence from tumor ecosystem studies has revealed that the two main components of tumor stroma, namely, infiltrated immune cells and cancer-associated fibroblasts (CAFs), also express certain typical EMT genes and are not distinguishable from intrinsic tumor EMT, where bulk tissue is concerned. Transcriptomic analysis of xenograft tissues provides a unique advantage in dissecting genes of tumor (human) or stroma (murine) origins. By transcriptomic analysis of xenograft tissues, we found that oral squamous cell carcinoma (OSCC) tumor cells with a high EMT score, the computed mesenchymal likelihood based on the expression signature of canonical EMT markers, are associated with elevated stromal contents featured with fibronectin 1 (Fn1) and transforming growth factor-β (Tgfβ) axis gene expression. In conjugation with meta-analysis of these genes in clinical OSCC datasets, we further extracted a four-gene index, comprising FN1, TGFB2, TGFBR2, and TGFBI, as an indicator of CAF abundance. The CAF index is more powerful than the EMT score in predicting survival outcomes, not only for oral cancer but also for the cancer genome atlas (TCGA) pan-cancer cohort comprising 9356 patients from 32 cancer subtypes. Collectively, our results suggest that a further distinction and integration of the EMT score with the CAF index will enhance prognosis prediction, thus paving the way for curative medicine in clinical oncology."	"Modulation of the Systemic Immune Response in Suckling Rats by Breast Milk TGF-β2, EGF and FGF21 Supplementation. Breast milk is a rich fluid containing bioactive compounds such as specific growth factors (GF) that contribute to maturation of the immune system in early life. The aim of this study was to determine whether transforming growth factor-β2 (TGF-β2), epidermal growth factor (EGF) and fibroblast growth factor 21 (FGF21), compounds present in breast milk, could promote systemic immune maturation. For this purpose, newborn Wistar rats were daily supplemented with these GF by oral gavage during the suckling period (21 days of life). At day 14 and 21 of life, plasma for immunoglobulin (Ig) quantification was obtained and spleen lymphocytes were isolated, immunophenotyped and cultured to evaluate their ability to proliferate and release cytokines. The main result was obtained at day 14, when supplementation with EGF increased B cell proportion to reach levels observed at day 21. At the end of the suckling period, all GF increased the plasma levels of IgG1 and IgG2a isotypes, FGF21 balanced the Th1/Th2 cytokine response and both EGF and FGF21 modified splenic lymphocyte composition. These results suggested that the studied milk bioactive factors, mainly EGF and FGF21, may have modulatory roles in the systemic immune responses in early life, although their physiological roles remain to be established."	"Changes in Aqueous Cytokine Levels Following Intravitreal Aflibercept in Treatment-Naive Patients with Diabetic Macular Edema.  Purpose:  To investigate the changes in aqueous humor cytokine levels in response to short-term aflibercept therapy in treatment-naive patients with center-involving diabetic macular edema (DME).  Methods:  This is a prospective cohort study that included patients with treatment-naive DME with central subfield macular thickness ≥310 μm on optical coherence tomography from July 2015 to May 2017. Patients received 3 monthly intravitreal aflibercept injections. Aqueous samples for cytokine analysis were obtained before the first and third injections. Levels of various cytokines were measured using multiplex immunoassay. Main outcome measures were changes in aqueous cytokine levels from baseline to month 2.  Results:  A total of 17 patients were enrolled and 16 completed the study. The mean age was 57.2 ± 8.1 years. The following cytokines were significantly higher at month 2 versus baseline: transforming growth factor-beta (TGF-β)1 (P = 0.004), TGF-β2 (P = 0.017), inducible protein (IP)-10 (P = 0.011), and hepatocyte growth factor (HGF) (P = 0.02). There were significant reductions in the levels of vascular endothelial growth factor (VEGF) (P &lt; 0.001), placental growth factor (PlGF) (P = 0.028), interleukin (IL)-6 (P = 0.011), and platelet-derived growth factor-AA (PDGF-AA) (P = 0.003).  Conclusions:  In treatment-naive patients with DME, short-term aflibercept therapy not only results in VEGF and PlGF suppression, but also leads to reduced levels of IL-6 and PDGF-AA and higher concentrations of TGF-β1, TGF-β2, HGF, and IP-10."	"Cytokine Profile in Striated Muscle Laminopathies: New Promising Biomarkers for Disease Prediction. Laminopathies are a wide and heterogeneous group of rare human diseases caused by mutations of the LMNA gene or related nuclear envelope genes. The variety of clinical phenotypes and the wide spectrum of histopathological changes among patients carrying an identical mutation in the LMNA gene make the prognostic process rather difficult, and classical genetic screens appear to have limited predictive value for disease development. The aim of this study was to evaluate whether a comprehensive profile of circulating cytokines may be a useful tool to differentiate and stratify disease subgroups, support clinical follow-ups and contribute to new therapeutic approaches. Serum levels of 51 pro- and anti-inflammatory molecules, including cytokines, chemokines and growth factors, were quantified by a Luminex multiple immune-assay in 53 patients with muscular laminopathy (Musc-LMNA), 10 with non-muscular laminopathy, 22 with other muscular disorders and in 35 healthy controls. Interleukin-17 (IL-17), granulocyte colony-stimulating factor (G-CSF) and transforming growth factor beta (TGF-β2) levels significantly discriminated Musc-LMNA from controls; interleukin-1β (IL-1β), interleukin-4 (IL-4) and interleukin-8 (IL-8) were differentially expressed in Musc-LMNA patients compared to those with non-muscular laminopathies, whereas IL-17 was significantly higher in Musc-LMNA patients with muscular and cardiac involvement. These findings support the hypothesis of a key role of the immune system in Musc-LMNA and emphasize the potential use of cytokines as biomarkers for these disorders."	"Ex-vivo cultured human corneoscleral segment model to study the effects of glaucoma factors on trabecular meshwork. Glaucoma is the second leading cause of irreversible blindness worldwide. Primary open angle glaucoma (POAG), the most common form of glaucoma, is often associated with elevation of intraocular pressure (IOP) due to the dysfunction of trabecular meshwork (TM) tissues. Currently, an ex vivo human anterior segment perfusion cultured system is widely used to study the effects of glaucoma factors and disease modifying drugs on physiological parameters like aqueous humor (AH) dynamics and IOP homeostasis. This system requires the use of freshly enucleated intact human eyes, which are sparsely available at very high cost. In this study, we explored the feasibility of using human donor corneoscleral segments for modeling morphological and biochemical changes associated with POAG. Among the number of corneas donated each year, many are deemed ineligible for transplantation due to stringent acceptance criteria. These ineligible corneoscleral segments were obtained from the Lions Eye Bank, Tampa, Florida. Each human donor anterior corneoscleral segment was dissected into four equal quadrants and cultured for 7 days by treating with the glaucoma factors dexamethasone (Dex) or recombinant transforming growth factor (TGF) β2 or transduced with lentiviral expression vectors containing wild type (WT) and mutant myocilin. Hematoxylin and Eosin (H&amp;E) staining analysis revealed that the TM structural integrity is maintained after 7 days in culture. Increased TUNEL positive TM cells were observed in corneoscleral quadrants treated with glaucoma factors compared to their respective controls. However, these TUNEL positive cells were mainly confined to the scleral region adjacent to the TM. Treatment of corneoscleral quadrants with Dex or TGFβ2 resulted in glaucomatous changes at the TM, which included increased extracellular matrix (ECM) proteins and induction of endoplasmic reticulum (ER) stress. Western blot analysis of the conditioned medium showed an increase in ECM (fibronectin and collagen IV) levels in Dex- or TGFβ2-treated samples compared to control. Lentiviral transduction of quadrants resulted in expression of WT and mutant myocilin in TM tissues. Western blot analysis of conditioned medium revealed decreased secretion of mutant myocilin compared to WT myocilin. Moreover, increased ECM deposition and ER stress induction was observed in the TM of mutant myocilin transduced quadrants. Our findings suggest that the ex-vivo cultured human corneoscleral segment model is cost-effective and can be used as a pre-screening tool to study the effects of glaucoma factors and anti-glaucoma therapeutics on the TM."	"Alterations in TGF-β signaling leads to high HMGA2 levels potentially through modulation of PJA1/SMAD3 in HCC cells. Recently, we observed that the TGF-β pathway is altered in 39% of HCCs. The alterations are correlated with a raised HMGA2 level. Therefore, we compared genetic alterations of HMGA2 and 43 TGF-β pathway core genes in HCC patients from TCGA database. Genetic alterations of 15 genes, including INHBE, INHBC, GDF11, ACVRL and TGFB2 out of 43 core genes, highly-moderately matched that of HMGA2. Co-occurrences of mutation amplification, gains, deletions and high/low mRNA of HMGA2 with those of the core genes were highly significant in INHBE, INHBC, ACVR1B, ACVRL and GDF11. Mass spectrometry studies revealed that HMGA2 interacted with an E3 ligase, PJA1, and that this interaction is enhanced by TGF-β treatment in the nuclear of HCC cells. Co-localization of nuclear PJA1 and HMGA2 in HCC cells increased upon TGF-β treatment. Raised HMGA2 levels that occur with alterations in the TGF-β signaling pathway may reflect an altered activity of E3 ligases, such as PJA1, and potentially contribute to the tumor-promoting roles of TGF-β signaling. Here, we report that the co-occurrence of genetic alterations in HMGA2 and TGF-β pathway core genes is implicated in HCC progression, and propose that HMGA2 and PJA1 may be potential novel targets in dysfunctional TGF-β signaling in HCC."	"Clinical Management and Therapeutic Strategies for the Thyroid-Associated Ophthalmopathy: Current and Future Perspectives. TAO is an organ specific autoimmune disease associated with thyroid, and inflammation of the orbit and periorbital tissues, which is different from systemic autoimmune diseases such as SLE. However, Grave's disease is a kind of systemic autoimmune syndrome which might involve the thyroid, the eye ball and the anterior tibial tissue. Considering the inexplicable understanding of TAO pathogenesis, the disease worsens for the patients. Therefore, this manuscript provides insights into the recent advancements of clinical features, epidemiology, pathogenesis with gene-interactions, diagnosis, including available and novel treatment options for TAO, based on available data including RCTs, meta-analyses, and systematic reviews. Articles with clinical features, epidemiology, pathogenesis, diagnosis, and treatment of the disease were thoroughly studied. To perform the gene expression and pathway analysis, articles were searched on PubMed, MEDLINE Cochrane Library and ClinicalTrial.gov from 1982 to 2020. To predict novel TAO-specific therapeutic molecule, structure-based drug design (SBDD) was performed. We observed gene expression and pathway analysis and SBDD approaches might bring new insights in the field of TAO pathogenesis, diagnosis, and treatment. A genome-wide map of human genetic interactions revealed involvement of crucial cell-signalling pathways, such as TNF-mediated signalling pathway, type-I interferon signalling pathway, toll-like receptor signalling pathway, transforming growth factor-beta receptor signalling pathway etc. Recently, FDA-approved teprotumumab a breakthrough, first drug for the treatment of active thyroid eye disease, which reduces proptosis and the need for orbital decompression surgery. Furthermore, our SBDD results revealed that cost-effective Curcumin, Withaferin A, Resveratrol, Scopolamine, Quercetin, and Berberine may have significant binding affinity for hyaluronan protein and may be exploited for therapeutic purposes in TAO. Considering the increasing risk and nature of disease, novel drug therapies and markers for prognosis need to be investigated. Moreover, evidence-based non-invasive/minimal surgical therapies should be developed for the better management of the disease. ADIPOQ: Adiponectin; CAS: Clinical Activity Score; CCL5: C-C Motif Chemokine Ligand 5; CT: Computed Tomography; DON: Dysthyroid Optic Neuropathy; EUGOGO: European Group of Graves' Orbitopathy; FDA: U.S. Food and Drug Administration; FOS: Fos Proto-Oncogene, AP-1 Transcription Factor Subunit; HLA: Human Leukocyte Antigen; HLA-DRA: Major Histocompatibility Complex, Class II, DR Alpha; ICAM1: Intercellular Adhesion Molecule 1; IFNG: Interferon Gamma; IGF-1: Insulin-like Growth Factor 1; IGF-1R: Insulin-like Growth Factor-1 Receptor; IL12B: Interleukin 12B; IL23R: Interleukin 23 Receptor; IL6: Interleukin 6; IOP: Intraocular Pressure; IRF1: Interferon Regulatory Factor 1; IRF5: Interferon Regulatory Factor 5; IRF7: Interferon Regulatory Factor 7; IRF9: Interferon Regulatory Factor 9; JUN: Jun Proto-Oncogene, AP-1 Transcription Factor Subunit; JUNB: JunB Proto-Oncogene, AP-1 Transcription Factor Subunit; MHC: Major Histocompatibility Complex; MRI: Magnetic Resonance Imaging; NFKB1: Nuclear Factor Kappa B Subunit 1; NFKBIA: Nuclear Factor Kappa B Inhibitor Alpha; OADSCs: Orbital Adipose Derived Stromal Cells; PDGFB: Platelet Derived Growth Factor Subunit B; PPARG: Peroxisome Proliferator Activated Receptor Gamma; RANTES: Regulated on Activation Normal T cell Expressed and Secreted; RARA: Retinoic Acid Receptor Alpha; RCTs (Randomized Controlled Trials; SLE: Systemic lupus erythematosus; SOCS3: Suppressor of Cytokine Signaling 3; STAT1: Signal Transducer and Activator of Transcription 1; TAO: Thyroid-Associated Ophthalmopathy; TED: Thyroid eye disease; TGFB1: Transforming Growth Factor Beta 1; TGFB2: Transforming Growth Factor Beta 2; TGF-β: Transforming Growth Factor-beta; TLR7: Toll like Receptor 7; TLR9: Toll like Receptor 9; TNFRSF18: Tumor Necrosis Factor Receptor Superfamily Member 18; TNFSF11: Tumor Necrosis Factor Receptor Superfamily Member 11; TNF-α: Tumor Necrosis Factor-alpha; TSHR: Thyroid Stimulating Hormone Receptor; TSIs: Thyroid Stimulating Immunoglobulin; WNT5A: Wingless-Type MMTV Integration Site Family, Member 5A."	"3-Methyladenine Alleviates Experimental Subretinal Fibrosis by Inhibiting Macrophages and M2 Polarization Through the PI3K/Akt Pathway.  Purpose:  To explore the effects of 3-methyladenine (3-MA), a selective inhibitor of phosphatidylinositol-3-kinase (PI3K), on experimental subretinal fibrosis (SRF) in mice.  Methods:  The SRF mouse model was established by 532 nm laser photocoagulation at each fundus of mice on day 0. 3-MA was administered every 2 days from day 0 to 35. Immunofluorescence of choroidal flat mounts was performed to evaluate the size of SRF area, local macrophages, and polarization, respectively. Besides, Western blot analysis was carried out to assess the expression levels of macrophage polarization-related genes, Arg-1, Ym-1, and transforming growth factor-β2 (TGF-β2). Co-culture and migration experiments were used to demonstrate the inhibitory effect of 3-MA on fibroblasts. The gene knockout and Western blot analysis were used to explore the signal pathways related to macrophage polarization.  Results:  Compared with the control group, the 3-MA-treated group showed significantly less size of SRF area. 3-MA treatment reduced both circulating and local macrophages, and counteracted M2 polarization. Moreover, 3-MA inhibited fibroblast recruitment. Mechanistically, we proved that 3-MA inhibits macrophage M2 polarization by suppressing PI3K/Akt signal pathway rather than the PI3K-autophagy-related signal pathway.  Conclusions:  3-MA exerts antifibrotic effects on experimental SRF by targeting circulating and local macrophages and M2 polarization, through PI3K/Akt signal pathway. These results support the potential use of 3-MA as a new therapeutic modality for SRF associated with neovascular age-related macular degeneration."	"Nur77 deficiency exacerbates cardiac fibrosis after myocardial infarction by promoting endothelial-to-mesenchymal transition. Cardiac fibrosis is a reparative process after myocardial infarction (MI), which leads to cardiac remodeling and finally heart failure. Endothelial-to-mesenchymal transition (EndMT) is induced after MI and contributes to cardiac fibrosis after MI. Orphan nuclear receptor Nur77 is a key regulator of inflammation, angiogenesis, proliferation, and apoptosis in vascular endothelial cells. Here, we investigated the role of orphan nuclear receptor Nur77 in EndMT and cardiac fibrosis after MI. Cardiac fibrosis was induced through MI by ligation of the left anterior descending coronary artery. We demonstrated that Nur77 knockout aggravated cardiac dysfunction and cardiac fibrosis 30 days after MI. Moreover, Nur77 deficiency resulted in enhanced EndMT as shown by increased expression of FSP-1, SM22α, Snail, and decreased expression of PECAM-1 and eNOS compared with wild-type mice after MI. Then, we found overexpression Nur77 in human coronary artery endothelial cells significantly inhibited interleukin 1β and transforming growth factor β2-induced EndMT, as shown by a reduced transition to a fibroblast-like phenotype and preserved angiogenesis potential. Mechanistically, we demonstrated that Nur77 downregulated EndMT by inhibiting the nuclear factor-κB-dependent pathway. In conclusion, Nur77 is involved in cardiac fibrosis by inhibiting EndMT and may be a promising target for therapy of cardiac fibrosis after MI."	"Identification of a Pathogenic TGFBR2 Variant in a Patient With Loeys-Dietz Syndrome. Loeys-Dietz syndrome (LDS) is a rare connective tissue genetic disorder that is caused by a pathogenic variant in genes of transforming growth factor (TGF) beta receptor 1 (TGFBR1), TGFBR2, mothers against decapentaplegic homolog 2 (SMAD2), SMAD3, TGFB2, or TGFB3. It is characterized by aggressive vascular pathology, aneurysms, arterial tortuosity, bifid uvula, hypertelorism, and cleft palate. Here we present a 42-year-old female patient with LDS. The patient underwent rapidly progressing artery aneurysms and life-threatening aortic dissection. Spontaneous fracture of the first metatarsal bone was noted in her medical record. Physical examination revealed a delayed wound healing on her left abdomen. Considering these clinical manifestations, we speculated that there was a genetic defect in the connective tissue, which provides strength and flexibility to structures such as bones, skins, ligaments, and blood vessels. Thus, whole exome sequencing (WES) was performed on the proband and revealed a heterozygous missense pathogenic variant (c.1613T &gt; C/p.Val538Ala) in TGFBR2, which was a de novo variant in the proband as confirmed by the segregation analysis in parental samples. Although this variant was discovered and associated with the phenotype of LDS previously, the pathogenicity of the variant had not been confirmed by cellular functional assay yet. To further validate the effects of the variant in vitro, we assessed the canonical TGF-β signaling pathway in mutant cells. Our results showed that the p.Val538Ala variant significantly decreased TGF-β-induced gene transcription and the phosphorylation of Smad2, which were consistent with other pathogenic variants of TGFBR2. In conclusion, this study demonstrates that the p.Val538Ala pathogenic variant in TGFBR2 leads to aberrant TGF-β signaling and LDS in this patient."	"A Review of Last Decade Developments on Epiretinal Membrane Pathogenesis. Epiretinal membrane (ERM) is a pathologic tissue that develops at the vitreoretinal interface. ERM is responsible for pathological changes of vision with varying degrees of clinical significance. It is either idiopathic or secondary to a wide variety of diseases such as proliferative diabetic retinopathy (PDR) and proliferative vitreoretinopathy (PVR). A great variation in the prevalence of idiopathic ERM among different ethnic groups proposed that genetic and lifestyle factors may play a role in ERM occurrence. Histopathological studies demonstrate that various cell types including retinal pigment epithelium (RPE) cells, fibrocytes, fibrous astrocytes, myofibroblast-like cells, glial cells, endothelial cells (ECs) and macrophages, as well as trophic and transcription factors, including transforming growth factor (TGF), vascular endothelial growth factor (VEGF), platelet-derived growth factor (PDGF) etc., are directly or indirectly involved in the pathogenesis of idiopathic or secondary ERMs. These processes are driven (on the last count) by more than 50 genes, such as Tumor Necrosis Factor (TNF), CCL2 (chemokine (C-C motif) ligand )), Metastasis Associated Lung Adenocarcinoma Transcript 1 )MALAT1(, transforming growth factor (TGF)-β1, TGF-β2, Interleukin-6 (IL-6), IL-10, VEGF and glial fibrillary acidic protein (GFAP), some of which have been studied more intensely than others. The present paper tried to summarize, highlight and cross-correlate the major findings made in the last decade on the function of these genes and their association with different types of cells, genes and gene expression products in the ERM formation."	"Expression of transforming growth factor beta in oral submucous fibrosis. Oral submucous fibrosis (OSMF) is a premalignant condition mainly caused by areca nut chewing and is characterized by progressive fibrosis of submucosal tissues and epithelial atrophy. Activation of transforming growth factor beta (TGF-β) signaling is considered main causative event for increased collagen production and fibrosis. In this study, molecular pathogenesis of OSMF was investigated based on the expression of the TGF-β genes in OSMF tissues compared to normal controls. A total of 33 OSMF and 10 normal tissues were collected from patients and their clinic-epidemiological data was recorded. The expression of TGF-β isoform genes- TGF β1, TGF β2, TGF β3 and its receptor TGF βR1, TGF βR2 was studied by real time polymerase chain reaction (PCR). Comparison of the expression of these genes among normal controls and OSMF patients was done. The PCR results were confirmed by histopathological and immunohistochemical staining. The histological changes included atrophic epithelium, loss of rete ridges, presence of inflammatory cells and dense collagen bundles in connective tissue. PCR showed statistically significant upregulation of TGF-β isoforms in OSMF as compared to normal tissues. Of the three isoforms, maximum fold change was observed in TGF-β1. Similarly, both TGF-βR1 and TGF-βR2 were found to be elevated in OSMF tissues compared to normal. The semi-quantitative analysis by immunohistochemical staining revealed statistically significant difference between normal and OSMF tissues. TGF-β signaling plays a major role in the molecular pathogenesis of OSMF as shown by increased mRNA expression of all the three TGF-β isotypes and their receptors."	"Ectopia lentis in Loeys-Dietz syndrome type 4. Loeys-Dietz syndrome is a heritable disorder of the connective tissue leading to multisystem involvement including craniofacial features, skeletal abnormalities, cutaneous findings and early-onset and aggressive disease of the aorta and its branches. There are multiple types of Loeys-Dietz syndrome related to pathogenic variants in TGFBR1, TGFBR2, SMAD3, TGFB2, and TGFB3. Individuals with Loeys-Dietz syndrome may be misdiagnosed as having Marfan syndrome due to shared phenotypic features and aortic root dilation. However, ectopia lentis has been an important discriminating feature, being unique to Marfan syndrome and not reported to be associated with Loeys-Dietz syndrome. We report the case of a 46-year-old woman with Loeys-Dietz syndrome type 4 due to a pathogenic variant in TGFB2 who was diagnosed with ectopia lentis at age 44. The patient underwent whole exome sequencing and no other pathogenic variants were found to explain the ectopia lentis. Our findings indicate that ectopia lentis may be an uncommon finding in Loeys-Dietz syndrome type 4 and emphasize the importance of genetic testing in familial thoracic aortic aneurysm disease."	"Transcriptional Analysis Reveals Key Genes in the Pathogenesis of Nifedipine-Induced Gingival Overgrowth. Nifedipine-induced gingival overgrowth (NGO) is a multifactorial pathogenesis with increased extracellular matrix including collagen and glycans, inflammatory cytokines, and phenotype changes of fibroblasts. However, the molecular etiology of NGO is not well understood. The objective of this study is to investigate the key genes in the pathogenesis of NGO. In this study, we examined the proliferation and migration abilities of fibroblasts derived from patients with chronic periodontitis, nifedipine nonresponder gingival overgrowth, gingival overgrowth caused by nifedipine, and healthy normal gingiva. We conducted RNA-Seq on these four groups of fibroblasts and analysed the differentially expressed genes (DEGs). Fibroblasts derived from NGO patients had higher proliferation and migration abilities than those of the other groups. Protein-protein interaction network analysis indicated that TGFB2, ITGA8, ITGA11, FGF5, PLA2G4D, PLA2G2F, PTGS1, CSF1, LPAR1, CCL3, and NKX3-1 are involved in the development of NGO. These factors are related to the arachidonic acid metabolism and PI3K/AKT signaling pathways. Transcriptional gene expression analysis identified a number of DEGs that might be functionally related to gingival overgrowth induced by nifedipine. Our study provides important information on the molecular mechanism underlying nifedipine-induced gingival overgrowth."	"Dietary phytic acid weakened the antimicrobial activity and aggravated the inflammatory status of head kidney, spleen and skin in on-growing grass carp (Ctenopharyngodon idella). The present study aimed to explore the effects of phytic acid (PA) on the antimicrobial activity and inflammatory response in three immune organs (head kidney, spleen and skin) of on-growing grass carp (Ctenopharyngodon idella). To achieve this goal, we first conducted a 60-day growth trial by feeding fish with graded levels of PA (0, 0.8, 1.6, 2.4, 3.2 and 4.0%). Then, the fish were challenged with Aeromonas hydrophila for 6 days. Compared with the control group, the following results were obtained regarding supplementation with certain levels of PA in the diet. (1) There was an increase in skin haemorrhage and lesion morbidity in fish. (2) There was a decrease in activities or contents of immune factors, including lysozyme (LZ), complement 3 (C3), C4 and immunoglobulin M (IgM), and there was downregulation of gene expression levels of hepcidin, liver-expressed antimicrobial peptide 2A (LEAP-2A), LEAP-2B, and β-defensin-1 in immune organs. (3) There was upregulation in the gene expression of the following pro-inflammatory cytokines: tumour necrosis factor α (TNF-α), interleukin 1β (IL-1β) (except in the spleen), interferon γ2 (IFN-γ2), IL-6 (except in the spleen), IL-8, IL-12p40, IL-15 and IL-17D. These changes were partly related to the nuclear factor kappa B (NF-κB) signalling pathway, but downregulation of mRNA levels of anti-inflammatory cytokines (transforming growth factor β1 (TGF-β1), TGF-β2, IL-413/A, IL-413/B, IL-10 (except in the skin) and IL-11) occurred in a manner partially related to the target of rapamycin (TOR) signalling pathway. Finally, based on the broken-line analysis of skin haemorrhage and lesion morbidity and IgM content in the head kidney, the maximum tolerance levels of PA for on-growing grass carp (120.56-452.00 g) were estimated to be 1.79 and 1.31% of the diet, respectively."	"Acidosis-Induced TGF-β2 Production Promotes Lipid Droplet Formation in Dendritic Cells and Alters Their Potential to Support Anti-Mesothelioma T Cell Response. For poorly immunogenic tumors such as mesothelioma there is an imperious need to understand why antigen-presenting cells such as dendritic cells (DCs) are not prone to supporting the anticancer T cell response. The tumor microenvironment (TME) is thought to be a major contributor to this DC dysfunction. We have reported that the acidic TME component promotes lipid droplet (LD) formation together with epithelial-to-mesenchymal transition in cancer cells through autocrine transforming growth factor-β2 (TGF-β2) signaling. Since TGF-β is also a master regulator of immune tolerance, we have here examined whether acidosis can impede immunostimulatory DC activity. We have found that exposure of mesothelioma cells to acidosis promotes TGF-β2 secretion, which in turn leads to LD accumulation and profound metabolic rewiring in DCs. We have further documented how DCs exposed to the mesothelioma acidic milieu make the anticancer vaccine less efficient in vivo, with a reduced extent of both DC migratory potential and T cell activation. Interestingly, inhibition of TGF-β2 signaling and diacylglycerol O-acyltransferase (DGAT), the last enzyme involved in triglyceride synthesis, led to a significant restoration of DC activity and anticancer immune response. In conclusion, our study has identified that acidic mesothelioma milieu drives DC dysfunction and altered T cell response through pharmacologically reversible TGF-β2-dependent mechanisms."	"Statins Suppress TGF-β2-Mediated MMP-2 and MMP-9 Expression and Activation Through RhoA/ROCK Inhibition in Astrocytes of the Human Optic Nerve Head. Matrix metalloproteinases (MMPs) are involved in extracellular matrix (ECM) maintenance and remodeling. The present study aimed to determine whether transforming growth factor (TGF)-β2 regulates MMP-2 and MMP-9 levels and activities in astrocytes derived from the optic nerve head (ONH) and the role of statins in such modulation. Primary astrocytes cultured from the lamina cribrosa of human donor ONHs were incubated with three types of statins (5 µg/mL) for 1 hour followed by recombinant TGF-β2 (5 ng/mL) for various periods to test their effects. Levels and activities of MMP-2 and MMP-9 in astrocytes in vitro were determined by western blotting and zymography, respectively. Levels of phosphorylated myosin phosphatase target subunit 1 (MYPT1) in astrocyte lysates were determined by western blotting, and those of phosphorylated myosin light chain (MLC) were determined by western blotting and immunocytochemistry. MMP-2 and MMP-9 levels were upregulated by TGF-β2 in human ONH astrocytes. Prior incubation with simvastatin, lovastatin, and atorvastatin inhibited TGF-β2-mediated MMP-2 and MMP-9 expression and activities. Prior incubation with statins downregulated the TGF-β2-induced phosphorylation of MYPT1 and MLC, which are downstream substrates of RhoA and ROCKs. Statins inhibited the TGF-β2-mediated regulation of MMP-2 and MMP-9 by inhibiting the RhoA/ROCK signaling pathway. Considering the role of MMP in ECM remodeling, the present findings support the notion that statins positively impact ECM remodeling within the ONH."	"The angiogenic effects of exosomes secreted from retinal pigment epithelial cells on endothelial cells. Exosomes are informative microvesicles associated with intercellular communication via the transfer of many molecular constituents such as proteins, lipids, and nucleic acids; environmental changes and the cellular status around cells greatly affect exosome components. Cells of the retinal pigment epithelium (RPE) are key players in retinal homeostasis. Transforming growth factor (TGF)-β and tumour necrosis factor (TNF)-α are increased in the vitreous and retina in several retinal diseases and activate and undergo epithelial-mesenchymal transition (EMT) in RPE cells. EMT is closely associated with mechanisms of wound healing, including fibrosis and related angiogenesis; however, whether exosome components depend on the cell status, epithelium or mesenchyme and whether these exosomes have pro- or anti-angiogenic roles in the retina are unknown. We performed this study to investigate whether these EMT inducers affect the kinds of components in exosomes secreted from RPE cells and to assess their angiogenic effects. Exosomes were collected from culture media supernatants of a human RPE cell line (ARPE-19) stimulated with or without 10 ng/ml TNF-α and/or 5 ng/ml TGF-β2. NanoSight tracking analysis and immunoblot analysis using exosome markers were used to qualify harvested vesicles. Angiogenic factor microarray analysis revealed that exosomes derived from ARPE-19 cells cultured with TNF-α alone (Exo-TNF) and co-stimulated with TNF-α and TGF-β2 (Exo-CO) contained more angiogenic factors than exosomes derived from control cells (Exo-CTL) or ARPE-19 cells cultured with TGF-β2 alone (Exo-TGF). To assess the effect on angiogenesis, we performed chemotaxis, tube formation, and proliferation assays of human umbilical vein endothelial cells (HUVECs) stimulated with or without exosomes. HUVECs migrated to RPE-derived exosomes, and exosomes derived from ARPE-19 cells accelerated HUVEC tube formation. In contrast, Exo-TNF and Exo-CO reduced HUVEC proliferation. Our findings provide insight into the mechanisms underlying the relation between angiogenesis and exosomes derived from RPE cells."	"Cross-talk between microRNA-let7c and transforming growth factor-β2 during epithelial-to-mesenchymal transition of retinal pigment epithelial cells. To explore the roles of microRNA-let7c (miR-let7c) and transforming growth factor-β2 (TGF-β2) and cellular signaling during epithelial-to-mesenchymal transition (EMT) of retinal pigment epithelial cells. Retinal pigment epithelial (ARPE-19) cells were cultured with no serum for 12h, and then with recombinant human TGF-β2 for different lengths of time. ARPE-19 cells were transfected with 1×10<sup>6</sup> TU/mL miR-let7c mimcs (miR-let7cM), miR-let7c mimcs negative control (miR-let7cMNC) and miR-let7c inhibitor (miR-let7cI) using the transfection reagent. The expression of keratin-18, vimentin, N-cadherin, IKB alpha, p65 were detected by Western blot, quantitative polymerase chain reaction and immunofluorescence. The expression of miR-let7c was dramatically reduced and the nuclear factor-kappa B (NF-κB) signaling pathway was activated after induction by TGF-β2 (P&lt;0.05). In turn, overexpressed miR-let7c significantly inhibited TGF-β2-induced EMT (P&lt;0.05). However, miR-let7c was unable to inhibit TGF-β2-induced EMT when the NF-κB signaling pathway was inhibited by BAY11-7082 (P&lt;0.01). The miR-let7c regulates TGF-β2-induced EMT through the NF-κB signaling pathway in ARPE-19 cells."	"High-pressure homogenization and high hydrostatic pressure processing of human milk: Preservation of immunological components for human milk banks. Human milk (HM) constitutes the first immunological barrier and the main source of nutrients and bioactive components for newborns. Immune factors comprise up to 10% of the protein content in HM, where antibodies are the major components (mainly IgA, IgG, and IgM). In addition, antibacterial enzymes such as lysozyme and immunoregulatory factors such as soluble cluster of differentiation 14 (sCD14) and transforming growth factor β2 (TGF-β2) are also present and play important roles in the protection of the infant's health. Donor milk processed in HM banks by Holder pasteurization (HoP; 62.5°C, 30 min) is a safe and valuable resource for preterm newborns that are hospitalized, but is reduced in major immunological components due to thermal inactivation. We hypothesized that high hydrostatic pressure (HHP) and high-pressure homogenization (HPH) are 2 processes that can be used on HM to reduce total bacteria counts while retaining immunological components. We studied the effects of HHP (400, 450, and 500 MPa for 5 min applied at 20°C) and HPH (200, 250, and 300 MPa, milk inlet temperature of 20°C) applied to mature HM, on microbiological and immunological markers (IgA, IgG, IgM, sCD14, and TGF-β2), and compared them with those of traditional HoP in HM samples from healthy donors. The HHP processing between 400 and 500 MPa at 20°C reduced counts of coliform and total aerobic bacteria to undetectable levels (&lt;1.0 log cfu/mL) while achieving approximately 100% of immunological component retention. In particular, comparing median percentages of retention of immunological components for 450 MPa versus HoP, we found 101.5 versus 50.5% for IgA, 89.5 versus 26.0% for IgM, 104.5 versus 75.5% for IgG, 125.0 versus 72.5% for lysozyme, 50.6 versus 0.1% for sCD14, and 88.5 versus 61.1% for TGF-β2, respectively. Regarding HPH processing, at a pressure of 250 MPa and inlet temperature of 20°C, the process showed good potential to reduce coliforms to undetectable levels and total aerobic bacteria to levels slightly above those obtained by HoP. The median percentages of retention of immunological markers for HPH versus HoP were 71.5 versus 52.0%, 71.0 versus 27.0%, 104.0 versus 66.5%, and 30.9 versus 0.2%, for IgA, IgM, IgG, and sCD14, respectively; results did not significantly differ for lysozyme and TGF-β2. The HPH at 300 MPa produced higher inactivation of immunological components, similar to values achieved with HoP."	"CREBH knockout accelerates hepatic fibrosis in mouse models of diet-induced nonalcoholic fatty liver disease. The primary focus of this study was to explore the effects of cyclic AMP response element-binding protein H (CREBH) on the development of nonalcoholic fatty liver disease (NAFLD). CREBH knockout (KO) and wildtype (WT) mice were averagely divided into a methionine and choline-deficient (MCD) or high fat (HF) diet group and respective chow diet (CD) groups. Mice were sacrificed after 4-week treatment for MCD model and 24-week treatment for HF model. Characteristics of nonalcoholic steatohepatitis-related liver fibrosis in KO-MCD/HF group were verified by hepatic histological analyses. Compared with WT-MCD/HF group, levels of plasma ALT and hepatic hydroxyproline increased in KO-MCD/HF group. Significantly higher levels of MCP-1, αSMA, Desmin, COL-1, TIMP-1, TGF-β1, TGF-β2 were found while MMP-9 and FGF21 mRNA levels decreased in KO-MCD/HF group. There was also a distinct difference of mRNA levels of TNFα, CTGF and CCND1 in KO-HF group compared with controls. Protein levels of MCP-1, BAX, αSMA, COL-1, TGF-β1 and SMAD2/3 significantly increased in KO-MCD/HF group and CCND1 was also upregulated in KO-HF group compared to their counterparts. CREBH knockout may primarily regulate the TGF-β1 signaling pathway via TGF-β2 and FGF21 resulting in more severe inflammation and fibrosis in NAFLD."	"Identification of microRNA-mRNA regulatory networks and pathways related to retinoblastoma across human and mouse. To explore the mRNA and pathways related to retinoblastoma (RB) genesis and development. Microarray datasets GSE29683 (human) and GSE29685 (mouse) were downloaded from NCBI GEO database. Homologous genes between the two species were identified using WGCNA, followed by protein-protein interaction (PPI) network construction and gene enrichment analysis. Disease-related miRNAs and pathways were retrieved from miR2Disease database and Comparative Toxicogenomics Database (CTD), respectively. A total of 352 homologous genes were identified. Two pathways including &quot;cell cycle&quot; and &quot;pathway in cancer&quot; in CTD and enrichment analysis were identified and seven miRNAs (including hsa-miR-373, hsa-miR-34a, hsa-miR-129, hsa-miR-494, hsa-miR-503, hsa-let-7 and hsa-miR-518c) were associated with RB. miRNAs modulate &quot;cell cycle&quot; and &quot;pathway in cancer&quot; pathways via regulating 13 genes (including CCND1, CDC25C, E2F2, CDKN2D and TGFB2). These results suggest that these miRNAs play crucial roles in RB genesis through &quot;cell cycle&quot; and &quot;pathway in cancer&quot; pathways by regulating their targets including CCND1, CDC25C, E2F2 and CDKN2D."	"[Overlapping Phenotype: Left Ventricular non-Compaction and Hypertrophic Cardiomyopathy]. Aim To study the clinical course of the mixed phenotype (hypertrophic cardiomyopathy, HCMP, and left ventricular noncompaction, LVNC); to determine its genetic causes; and to evaluate incidence of cardiovascular complications (CVC) during the follow-up period.Material and methods In screening of 286 patients with HCMP, 8 of them (2.8 %; median age, 41.5 years; 4 men and 4 women) from unrelated families were found to have the mixed phenotype (combination of HCMP and LVNC). For their 10 first-degree relatives, the most frequent phenotype was HCMP without LVNC; however, both isolated LVNC and the mixed phenotype were also observed. Criteria for HCMP and LVNC were confirmed by echocardiography and cardiac magnetic resonance imaging Genotyping was performed by high-throughput sequencing NGT using the TruSight Cardio Sequencing Panel kit.Results Probands with the HCMP+LVNC combination compared to first-degree relatives with isolated HCMP and LVNC were characterized by more pronounced left ventricular dysfunction (ejection fraction, 43.57±7.6 and 53.64±6.51 %, respectively; p&amp;lt;0.001), a higher risk of CVC, and a higher incidence of ventricular tachyarrhythmias (7.9 and 2.2 %, respectively; p&amp;lt;0.01). 11 mutations in 5 genes were found in 8 patients with the mixed phenotype. 72.7 % of mutations were in the MYH7 and MYBPC3 genes that encode the heavy chain of β-myosin and myosin-binding protein C, respectively; however, in some cases, replacements in other genes (DTNA, TGFB2) were also found.Conclusion The mixed phenotype (HCMP and LVNC) is associated with more severe clinical course of the disease and unfavorable CVC."	"TGFB2 serves as a link between epithelial-mesenchymal transition and tumor mutation burden in gastric cancer. Immune checkpoint blockade (ICB) has been a major breakthrough in various cancers including gastric cancer (GC), yet the clinical outcomes remain poor. Currently, epithelial-mesenchymal transition (EMT) has been reported to be associated with tumor mutational burden (TMB), which can cause lack of response to ICB. However, the underlying mechanism remains unknown. Members of the transforming growth factorβ (TGFB) family are regarded as the main mediators of EMT, yet how TGFB2 drives EMT in GC is not fully understood. In this study, we found that overexpression of TGFB2 was correlated with poor prognosis in TGCA-STAD and four GEO GC datasets.Gene set enrichment analysis revealed that the EMT pathway was significantly enriched in the high TGFB2 expression group, whilst the TMB-related pathways including mismatch repair, base excision repair, and DNA replication were strongly enriched in the low expression group. Furthermore, EMT score analysis, WGCNA and functional analysis showed that TGFB2 was co-expressed with neurite-related pathways that might drive EMT. Also, CIBERSORT analysis revealed that tumor-infiltrating immune cells like T follicular helper cells might participate in the process of TGFB2 affecting TMB levels in GC. Moreover, in other various cancers, TGFB2 was also negatively correlated with TMB levels as well as ICB response. Overall, these results revealed that TGFB2 could play a vital role in linking EMT and TMB in GC, suggesting that TGFB2 may be a predictive therapeutic target for GC."	"MicroRNA Profiling Reveals an Abundant miR-200a-3p Promotes Skeletal Muscle Satellite Cell Development by Targeting TGF-β2 and Regulating the TGF‑β2/SMAD Signaling Pathway. MicroRNAs (miRNAs) are evolutionarily conserved, small noncoding RNAs that play critical post-transcriptional regulatory roles in skeletal muscle development. Chicken is an optimal model to study skeletal muscle formation because its developmental anatomy is similar to that of mammals. In this study, we identified potential miRNAs in the breast muscle of broilers and layers at embryonic day 10 (E10), E13, E16, and E19. We detected 1836 miRNAs, 233 of which were differentially expressed between broilers and layers. In particular, miRNA-200a-3p was significantly more highly expressed in broilers than layers at three time points. In vitro experiments showed that miR-200a-3p accelerated differentiation and proliferation of chicken skeletal muscle satellite cells (SMSCs) and inhibited SMSCs apoptosis. The transforming growth factor 2 (TGF-β2) was identified as a target gene of miR-200a-3p, and which turned out to inhibit differentiation and proliferation, and promote apoptosis of SMSCs. Exogenous TGF-β2 increased the abundances of phosphorylated SMAD2 and SMAD3 proteins, and a miR-200a-3p mimic weakened this effect. The TGFβ2 inhibitor treatment reduced the promotional and inhibitory effects of miR-200a-3p on SMSC differentiation and apoptosis, respectively. Our results indicate that miRNAs are abundantly expressed during embryonic skeletal muscle development, and that miR-200a-3p promotes SMSC development by targeting TGF-β2 and regulating the TGFβ2/SMAD signaling pathway."	"Identifying Therapies to Combat Epithelial Mesenchymal Plasticity-Associated Chemoresistance to Conventional Breast Cancer Therapies Using An shRNA Library Screen. Breast cancer (BC) is a heterogeneous disease for which the commonly used chemotherapeutic agents primarily include the anthracyclines (doxorubicin, epirubicin), microtubule inhibitors (paclitaxel, docetaxel, eribulin), and alkylating agents (cyclophosphamide). While these drugs can be highly effective, metastatic tumours are frequently refractory to treatment or become resistant upon tumour relapse. We undertook a cell polarity/epithelial mesenchymal plasticity (EMP)-enriched short hairpin RNA (shRNA) screen in MDA-MB-468 breast cancer cells to identify factors underpinning heterogeneous responses to three chemotherapeutic agents used clinically in breast cancer: Doxorubicin, docetaxel, and eribulin. shRNA-transduced cells were treated for 6 weeks with the EC10 of each drug, and shRNA representation assessed by deep sequencing. We first identified candidate genes with depleted shRNA, implying that their silencing could promote a response. Using the Broad Institute's Connectivity Map (CMap), we identified partner inhibitors targeting the identified gene families that may induce cell death in combination with doxorubicin, and tested them with all three drug treatments. In total, 259 shRNAs were depleted with doxorubicin treatment (at p &lt; 0.01), 66 with docetaxel, and 25 with eribulin. Twenty-four depleted hairpins overlapped between doxorubicin and docetaxel, and shRNAs for TGFB2, RUNX1, CCDC80, and HYOU1 were depleted across all the three drug treatments. Inhibitors of MDM/TP53, TGFBR, and FGFR were identified by CMap as the top pharmaceutical perturbagens and we validated the combinatorial benefits of the TGFBR inhibitor (SB525334) and MDM inhibitor (RITA) with doxorubicin treatment, and also observed synergy between the inhibitor SB525334 and eribulin in MDA-MB-468 cells. Taken together, a cell polarity/EMP-enriched shRNA library screen identified relevant gene products that could be targeted alongside current chemotherapeutic agents for the treatment of invasive BC."	"Nintedanib inhibits epithelial-mesenchymal transition in A549 alveolar epithelial cells through regulation of the TGF-β/Smad pathway. Idiopathic pulmonary fibrosis (IPF) is a progressive fibrotic lung disorder. Recent studies have suggested that epithelial-mesenchymal transition (EMT) of alveolar epithelial cells influences development of pulmonary fibrosis, which is mediated by transforming growth factor β (TGF-β). Tumor necrosis factor α (TNF-α), an important proinflammatory cytokine in IPF, has been shown to enhance TGF-β-induced EMT. Nintedanib, a multiple tyrosine kinase inhibitor that is currently used to treat IPF, has been shown to suppress EMT in various cancer cell lines. However, the mechanism of EMT inhibition by nintedanib and its effect on TGF-β and TNF-α signaling pathways in alveolar epithelial cells have not been fully elucidated. A549 alveolar epithelial cells were stimulated with TGF-β2 and TNF-α, and the effects of nintedanib on global gene expression were evaluated using microarray analysis. Furthermore, Smad2/3 phosphorylation was assessed using western blotting. We found that in A549 cells, TGF-β2 and TNF-α treatment induces EMT, which was inhibited by nintedanib. Gene ontology analysis showed that nintedanib significantly attenuates the gene expression of EMT-related cellular pathways and the TGF-β signaling pathway, but not in the TNF-α-mediated signaling pathway. Furthermore, hierarchical cluster analysis revealed that EMT-related genes were attenuated in nintedanib-treated cells. Additionally, nintedanib was found to markedly suppress phosphorylation of Smad2/3. Nintedanib inhibits EMT by mediating EMT-related gene expression and the TGF-β/Smad pathway in A549 alveolar epithelial cells."	"TGF-beta and TNF-alpha cooperatively induce mesenchymal transition of lymphatic endothelial cells via activation of Activin signals. Lymphatic systems play important roles in the maintenance of fluid homeostasis and undergo anatomical and physiological changes during inflammation and aging. While lymphatic endothelial cells (LECs) undergo mesenchymal transition in response to transforming growth factor-β (TGF-β), the molecular mechanisms underlying endothelial-to-mesenchymal transition (EndMT) of LECs remain largely unknown. In this study, we examined the effect of TGF-β2 and tumor necrosis factor-α (TNF-α), an inflammatory cytokine, on EndMT using human skin-derived lymphatic endothelial cells (HDLECs). TGF-β2-treated HDLECs showed increased expression of SM22α, a mesenchymal cell marker accompanied by increased cell motility and vascular permeability, suggesting HDLECs to undergo EndMT. Our data also revealed that TNF-α could enhance TGF-β2-induced EndMT of HDLECs. Furthermore, both cytokines induced the production of Activin A while decreasing the expression of its inhibitory molecule Follistatin, and thus enhancing EndMT. Finally, we demonstrated that human dermal lymphatic vessels underwent EndMT during aging, characterized by double immunostaining for LYVE1 and SM22α. These results suggest that both TGF-β and TNF-α signals play a central role in EndMT of LECs and could be potential targets for senile edema."	"MicroRNA-184 is a key molecule responsible for the transforming growth factor-β2 -induced epithelial-mesenchymal transition in human lens epithelial-B3 cells. TGF-β2-induced epithelial-mesenchymal transition (EMT) is an important mechanism for posterior capsule opacity (PCO) in lens epithelial cells (LECs). This study aimed to investigate if MicroRNA-184 (miR-184) plays a role in the TGF-β2-induced EMT in LECs. Human LECs (HLE-B3 cells) were used in this study. Quantitative real-time polymerase chain reaction (PCR) (qRT-PCR) was performed to analyse miR-184 expressions in HLE-B3 treated with TGF-β2 at different concentrations (0-15 ng/mL) and different time (10 ng/mL, 0-48 hours). After transfection of miR-184 mimics or miR-184 inhibitor, cells were treated with 10 ng/mL TGF-β2 for 24 hours, and the expression levels of miR-184, E-cadherin, vimentin, zinc finger E-box binding homeobox 2 (ZEB2), α-Smooth muscle actin (α-SMA), Collagen 1 and bin3 were determined by qRT-PCR and Western blot, respectively. TGF-β2 treatment significantly downregulated E-cadherin and upregulated vimentin generally in a dose-dependent and time-dependent manner. TGF-β2 treatment significantly elevated the level of miR-184 in both dose- and time-dependent manners. In addition, transfection of miR-184 inhibitor RNA significantly attenuated TGF-β2-induced downregulation of E-cadherin as well as upregulation of vimentin, ZEB2, α-SMA and Collagen 1, whereas transfection of miR-184 mimic further enhanced the effects of TGF-β2 on the expressions of these markers. Furthermore, TGF-β2 treatment significantly downregulated bin3, and transfection of miR-184 mimic and miR-184 inhibitor significantly enhanced and attenuated the inhibition effect of TGF-β2 on bin3, respectively. miR-184 plays a key role in the TGF-β2-induced EMT in LECs, and bin3 may be a downstream protein."	"Prognostic Values of Transforming Growth Factor-Beta Subtypes in Ovarian Cancer. To explore the potential role of the transforming growth factor-beta (TGF-β) subtypes in the prognosis of ovarian cancer patients. Materials and Methods. The prognostic roles of individual TGF-β subtypes in women with ovarian cancer were retrieved from the Kaplan-Meier plotter (KM plotter) database. In addition, the Oncomine database and immunohistochemistry were used to observe the mRNA and protein expression of TGF-β subtypes between human ovarian carcinoma and normal ovarian samples, respectively. TGF-β1 and TGF-β4 were totally uncorrelated with survival outcomes in women with ovarian cancer. Increased TGF-β2 and TGF-β3 mRNA expression was markedly related to unfavorable prognosis, especially in women with serous, poorly differentiated, and late-stage ovarian carcinoma. High expression levels of TGF-β2 were related to worse progression-free survival (PFS) while TGF-β3 was linked to unfavorable overall survival (OS) and PFS in women with TP53-mutated ovarian cancer. TGF-β2 was associated with poor OS and PFS from treatment with chemotherapy with platins, Taxol, or a platin+Taxol. However, overexpression of TGF-β3 was associated with poor OS from the use of platins and poor PFS of Taxol or a platin+Taxol in women with ovarian carcinoma. Furthermore, the expression of TGF-β2 mRNA and protein was higher but only TGF-β3 mRNA expression was higher in cancerous tissues than in normal ovarian samples. Higher expression of TGF-β2 functioned as a significant predictor of poor prognosis in women with ovarian cancer, especially those with TP53 mutations or who were undergoing chemotherapy with platins, Taxol, or a platin+Taxol."	"Let-7a-5p represses proliferation, migration, invasion and epithelial-mesenchymal transition by targeting Smad2 in TGF-b2-induced human lens epithelial cells. Transforming growth factor β2 (TGF-β2)/Smad signaling is widely accepted as a key inducer of proliferation and epithelial-mesenchymal transition (EMT) of human lens epithelial cells (LECs), contributing to the development of posterior capsule opacification (PCO). Increasing evidence shows that microRNAs (miRNAs) play important roles in PCO pathogenesis. Herein, we aimed to explore the role and molecular mechanism of let-7a-5p on TGF-β2-induced proliferation and EMT in LECs. qRT-PCR was performed to detect the expression of let-7a-5p and Smad2 mRNA. Western blot was used to determine the Smad2 level and the induction of EMT. The targeted correlation between let-7a-5p and Smad2 was confirmed using dual-luciferase reporter and RNA immunoprecipitation assays. CCK-8 assay was employed to determine cell proliferation, and transwell assays were performed to assess cell migration and invasion. We found that TGF-β2 induced EMT of LECs, and TGF-β2 upregulated Smad2 expression and reduced let-7a-5p expression in LECs. Smad2 was a direct target of let-7a-5p. Moreover, let-7a-5p upregulation repressed proliferation, migration, invasion and EMT in TGF-β2-induced LECs. But, Smad2 expression restoration abrogated the inhibitory effect of let-7a-5p upregulation. In conclusion, our data indicated that let-7a-5p upregulation repressed TGF-β2-induced proliferation, migration, invasion and EMT at least partly by targeting Smad2 in LECs, highlighting that let-7a-5p might act as a promising therapeutic target to intervene to the progression of PCO."	"The Role of Th17/Treg Axis in the Traditional Chinese Medicine Intervention on Immune-Mediated Inflammatory Diseases: A Systematic Review. The Th17/Treg axis plays a crucial role in immune-mediated inflammatory diseases (IMID) and might represent an interesting drug target of treatment strategy for these diseases. Accumulating evidence suggests a role for traditional Chinese medicine (TCM) in the modulation of Th17/Treg axis, but a comprehensive overview which summarizes this field hitherto is lacked. This paper performs a systematic literature review of the regulatory effects of TCM on the imbalance of Th17/Treg axis and its potential mechanisms. In addition, the frequency analysis and network pharmacology for the collected TCM herbs from clinical trial data were performed. The studies reported the changes in the ratio of Th17 and/or Treg cells as well as their transcription factor and related cytokines were included. Frequency analysis of composition of the 39 assessed TCM prescriptions showed that Astragalus membranaceus var.mongholicus (5.20%), Glycyrrhiza uralensis (3.67%), Paeonia obovate (3.06%), Salvia digitaloides (3.06%), and Angelica sinensis (2.75%) were the top five herbal components, which were closely associated to the treatment of IMID. Network pharmacology showed that six target proteins (transforming growth factor (TGF)-beta receptor type-1, TGF-beta receptor type-2, retineic-acid-receptor-related orphan nuclear receptor gamma (ROR-gamma), TGFB2, IL-17 and IL-2, respectively) might be involved in the regulatory effects of TCM on Th17/Treg axis. Moreover, there were nine active ingredients (including Oxymatrine, Baicalin, Triptolide, Paeoniflorin, Sinomenine, Celastrol, Emodin, Diosgenin and Chlorogenic acid) originating from TCM reported to have an immunological regulation effect on the Th17/Treg axis. The highlight of this systematic review is to reveal the pharmacological basis of TCM treating IMID and is helpful for supporting future pharmacologic-driven studies. Further research elucidates the immune-modulating mechanisms on Th17/Treg axis by TCM might provide a broader insight for the treatment of IMID."	"Increase in Free and Total Plasma TGF-β1 Following Physical Activity. To evaluate effects of physical activity and food consumption on plasma concentrations of free and total transforming growth factor beta-1 (TGF-β1), beta-2 (TGF-β2), and beta-3 (TGF-β3) in individuals with knee osteoarthritis (OA). Participants (n = 40 in 2 cohorts of 20; mean age 70 years) with radiographic knee OA were admitted overnight for serial blood sampling. Cohorts 1 and 2 assessed the impacts of food intake and activity, respectively, on TGF-β concentrations. Cohort 1 blood draws included 2 hours postprandial the evening of day 1 (T3), fasting before rising on day 2 (T0), nonfasting 1 hour after rising (T1B), and 4 hours after rising (T2). Cohort 2 blood draws included T3, T0, fasting 1 hour after rising and performing activities of daily living (T1A), and nonfasting 2 hours after rising (T1B). By sandwich ELISAs, we quantified plasma free and total TGF-β1 concentrations in all samples, and plasma total TGF-β2 and TGF-β3 in cohort 2. Free TGF-β1 represented a small fraction of the total systemic concentration (mean 0.026%). In cohort 2, free and total TGF-β1 and total TGF-β2 concentration significantly increased in fasting samples collected after an hour (T1A) of activities of daily living (free TGF-β1: P = 0.006; total TGF-β1: P &lt; 0.001; total TGF-β2: P = 0.001). Total TGF-β3 increased nonsignificantly following activity (P = 0.590) and decreased (P = 0.035) after food consumption while resting (T1B). Increased plasma concentrations of TGF-β with physical activity suggests activity should be standardized prior to TGF-β1 analyses."	"Does Caesarean Section or Preterm Delivery Influence TGF-β2 Concentrations in Human Colostrum? Human colostrum (HC) is a rich source of immune mediators that play a role in immune defences of a newly born infant. The mediators include transforming growth factor β (TGF-β) which exists in three isoforms that regulate cellular homeostasis and inflammation, can induce or suppress immune responses, limit T helper 1 cells (Th1) reactions and stimulate secretory immunoglobulin A (IgA) production. Human milk TGF-β also decreases apoptosis of intestinal cells and suppresses macrophage cytokine expression. The aim of the study was to determine the concentration of TGF-β2 in HC obtained from the mothers who delivered vaginally (VD) or by caesarean section (CS), and to compare the concentrations in HC from mothers who delivered at term (TB) or preterm (PB). In this study, 56% of preterm pregnancies were delivered via CS. The concentrations of TGF-β2 were measured in HC from 299 women who delivered in the 1st Department of Obstetrics and Gynaecology, Medical University of Warsaw: 192 (VD), 107 (CS), 251 (TB), and 48 (PB). The colostrum samples were collected within 5 days post-partum. TGF-β2 levels in HC were measured by the enzyme-linked immunosorbent assay (ELISA) test with the Quantikine ELISA Kit-Human TGF-β2 (cat.no. SB250). Statistical significance between groups was calculated by the Student t-test using StatSoft Statistica 13 software. The mean TGF-β2 concentration in patients who delivered at term or preterm were comparable. The levels of TGF-β2 in HC were higher after preterm than term being 4648 vs. 3899 ng/mL (p = 0.1244). The delivery via CS was associated with higher HC concentrations of TGF-β2. The levels of TGF-β2 were significantly higher in HC after CS than VD (7429 vs. 5240 ng/mL; p = 0.0017). The data from this study suggest: caesarean section was associated with increased levels of TGF-β2 in HC. The increased levels of TGF-β2 in HC of women who delivered prematurely require further research. Early and exclusive breast-feeding by mothers after caesarean section and premature births with colostrum containing high TGF-β2 levels may prevent the negative impact of pathogens which often colonize the gastrointestinal tract and may reduce the risk of chronic diseases in this group of patients."	"Pirfenidone ameliorates the formation of choroidal neovascularization in mice. The formation and development of choroidal neovascularization (CNV) is accompanied by inflammation and fibrosis. Existing treatments are expensive and can cause irreversible complications. Pirfenidone (PFD) exerts anti‑inflammatory and anti‑fibrotic effects; however, its applications in the eye remain unclear. Male C57BL/6J mice (aged 6‑8 weeks) were used to explore whether PFD can inhibit the formation of laser‑induced CNV. The localization of transforming growth factor β2 (TGFβ2) was determined through immunofluorescent staining. After laser photocoagulation, the vehicle and PFD groups were intravitreally injected with 1 µl PBS and 1 µl 0.5% PFD, respectively. At day 7 after intravitreal injection, the expression of TGFβ2 and vascular endothelial growth factor (VEGF) was assessed. Fundus fluorescein angiography was performed to investigate the extent of fluorescence leakage, and the CNV areas were analyzed using a choroidal flat mount. The results demonstrated that, on day 7 after photocoagulation, the expression of TGFβ2 and VEGF was reduced in the experimental group. In addition, fluorescein angiography showed that the leakage area of CNV was significantly smaller in the PFD injection group than those observed in the control and vehicle groups. Moreover, the areas of CNV in the PFD injection group were smaller compared with those reported in the other two injection groups. Histopathological and TUNEL analyses performed on day 28 revealed that there were no notable abnormalities on the layers of the neural retina of PFD‑treated mice. In conclusion, intravitreal injection of PFD inhibited the formation of CNV in mice, likely via the downregulation of VEGF and TGFβ2, which did not cause damage to the mouse retina after 28 days of treatment."	"Exosomal communication by metastatic osteosarcoma cells modulates alveolar macrophages to an M2 tumor-promoting phenotype and inhibits tumoricidal functions. Osteosarcoma metastasizes to the lung, and there is a link between the predominance of tumor-promoting immunosuppressive M2 macrophages in the metastases and poor patient survival. By contrast, M1 macrophage predominance correlates with longer survival. M2 macrophages can be induced by various stimuli in the tumor microenvironment, including exosomes, which are 40- to 150-nm vesicles that are involved in intercellular communication and contribute to tumor progression and immune evasion. Recognizing that tumor cells can influence the tumor microenvironment to make it more permissive and because of the link between M2 dominance and curtailed patient survival, we evaluated the effect of exosomes from non-metastatic K7 and Dunn osteosarcoma cells and the metastatic sublines K7M3 and DLM8 on macrophage phenotype and function. Incubating MHS mouse alveolar macrophages with K7M3 and DLM8 exosomes induced expression of IL10, TGFB2, and CCL22 mRNA (markers of M2 macrophages) and decreased phagocytosis, efferocytosis, and macrophage-mediated tumor cell killing. In contrast, exosomes from non-metastatic K7 or Dunn cells did not inhibit phagocytosis, efferocytosis, and macrophage-mediated cytotoxicity or induce increased expression of IL10, TGFB2 or CCL22 mRNA. In addition, metastatic osteosarcoma cell exosomes significantly increased the secretion of TGFB2, a key signaling pathway associated with tumor- mediated immune suppression. Finally, the inhibition of TGFB2 reversed the suppressive activity of alveolar macrophages exposed to metastatic osteosarcoma cell exosomes. Our data suggest that the exosomes from metastatic osteosarcoma cells can modulate cellular signaling of tumor-associated macrophages, thereby promoting the M2 phenotype and creating an immunosuppressive, tumor-promoting microenvironment through the production of TGFB2."	"Corneal thinning and cornea guttata in patients with mutations in TGFB2. Human genome-wide association studies and animal models suggest a role for TGFB2 in contributing to the corneal thickness phenotype. No specific mutations, however, have been reported in this gene that affect corneal thickness. We sought to determine if haploinsufficiency of TGFB2 in humans associated with Loeys-Dietz syndrome type 4 is associated with corneal thinning. Observational cohort study of families with Loeys-Dietz syndrome type 4, caused specifically by TGFB2 mutations, in a tertiary care setting. Three probands with pathogenic mutations in TGFB2 and family members underwent comprehensive ophthalmic examination. Clinical assessment included Scheimpflug imaging, specular microscopy, and slit-lamp biomicroscopy. We measured visual acuity, axial length, refractive error, and central corneal thickness. Clinical evaluation of 2 probands identified corneal thinning and cornea guttata, despite a young age and distinct mutations in TGFB2 (c.905G&gt;A, p.Arg302His; c.988C&gt;A, p.Arg330Ser). In the third family, corneal thinning co-segregated with a TGFB2 mutation (c.1103G&gt;A, p.Gly368Glu), although without apparent guttae. In this series, participants with TGFB2 mutations associated with Loeys-Dietz syndrome type 4 demonstrated decreased corneal thickness, and in 2 cases with splice site mutations, also demonstrated cornea guttata. The data demonstrate the importance of considering distinct phenotype-genotype correlations within this condition."	"9-Methyl-β-carboline inhibits monoamine oxidase activity and stimulates the expression of neurotrophic factors by astrocytes. β-Carbolines (BC) are pyridoindoles, which can be found in various exogenous and endogenous sources. Recent studies revealed neurostimulative, neuroprotective, neuroregenerative and anti-inflammatory effects of 9-methyl-BC (9-Me-BC). Additionally, 9-me-BC increased neurite outgrowth of dopaminergic neurons independent of dopamine uptake into these neurons. In this study, the role of astrocytes in neurostimulative, neuroregenerative and neuroprotective properties of 9-me-BC was further explored.9-Me-BC exerted anti-proliferative effects without toxic properties in dopaminergic midbrain and cortical astrocyte cultures. The organic cation transporter (OCT) but not the dopamine transporter seem to mediate at least part the effect of 9-me-BC on astrocytes. Remarkably, 9-me-BC stimulated the gene expression of several important neurotrophic factors for dopaminergic neurons like Artn, Bdnf, Egln1, Tgfb2 and Ncam1. These factors are well known to stimulate neurite outgrowth and to show neuroprotective and neuroregenerative properties to dopaminergic neurons against various toxins. Further, we show that effect of 9-me-BC is mediated through phosphatidylinositol 3-kinase (PI3K) pathway. Additionally, 9-me-BC showed inhibitory properties to monoamine oxidase (MAO) activity with an IC50 value of 1 µM for MAO-A and of 15.5 µM for MAO-B. The inhibition of MAO by 9-me-BC might contribute to the observed increased dopamine content and anti-apoptotic properties in cell culture after 9-me-BC treatment in recent studies. Thus, 9-me-BC have a plethora of beneficial effects on dopaminergic neurons warranting its exploration as a new multimodal anti-parkinsonian medication."	"New effects of caffeine on corticotropin-releasing hormone (CRH)-induced stress along the intrafollicular classical hypothalamic-pituitary-adrenal (HPA) axis (CRH-R1/2, IP3 -R, ACTH, MC-R2) and the neurogenic non-HPA axis (substance P, p75<sup>NTR</sup> and TrkA) in ex vivo human male androgenetic scalp hair follicles. Human hair is highly responsive to stress, and human scalp hair follicles (HFs) contain a peripheral neuroendocrine equivalent of the systemic hypothalamic-pituitary-adrenal (HPA) stress axis. Androgenetic alopecia (AGA) is supposed to be aggravated by stress. We used corticotropin-releasing hormone (CRH), which triggers the HPA axis, to induce a stress response in human ex vivo male AGA HFs. Caffeine is known to reverse testosterone-mediated hair growth inhibition in the same hair organ culture model. To investigate whether caffeine would antagonize CRH-mediated stress in these HFs. HFs from balding vertex area scalp biopsies of men affected by AGA were incubated with CRH (10<sup>-7</sup> mol L<sup>-1</sup> ) with or without caffeine (0·001% or 0·005%). Compared to controls, CRH significantly enhanced the expression of catagen-inducing transforming growth factor-β2 (TGF-β2) (P &lt; 0·001), CRH receptors 1 and 2 (CRH-R1/2) (P &lt; 0·01), adrenocorticotropic hormone (ACTH) (P &lt; 0·001) and melanocortin receptor 2 (MC-R2) (P &lt; 0·001), and additional stress-associated parameters, substance P and p75 neurotrophin receptor (p75<sup>NTR</sup> ). CRH inhibited matrix keratinocyte proliferation and expression of anagen-promoting insulin-like growth factor-1 (IGF-1) and the pro-proliferative nerve growth factor receptor NGF-tyrosine kinase receptor A (TrkA). Caffeine significantly counteracted all described stress effects and additionally enhanced inositol trisphosphate receptor (IP3 -R), for the first time detected in human HFs. These findings provide the first evidence in ex vivo human AGA HFs that the stress mediator CRH induces not only a complex intrafollicular HPA response, but also a non-HPA-related stress response. Moreover, we show that these effects can be effectively antagonized by caffeine. Thus, these data strongly support the hypothesis that stress can impair human hair physiology and induce hair loss, and that caffeine may effectively counteract stress-induced hair damage and possibly prevent stress-induced hair loss. What is already known about this topic? Caffeine stimulates hair growth in male and female human hair follicles (HFs) in vitro. What does this study add? For the first time, corticotropin-releasing hormone induction of the hypothalamic-pituitary-adrenal (HPA) stress axis is documented in male human HFs from biopsies (balding vertex area) of men with androgenetic alopecia. First time, the non-HPA neurogenic stress axis is shown in the same male human HFs. Caffeine counteracts both stress axes. Inositol trisphosphate receptor was newly identified in human HFs. What is the translational message? Stress can impair human hair physiology and induce hair loss. Caffeine may effectively counteract stress-induced hair damage and possibly prevent stress-induced hair loss."	"Gene suppression of the ClC-2 chloride channel suppressed TGF-β1-induced proliferation, collagen synthesis, and collagen gel contraction mediated by conjunctival fibroblasts. Background: Excessive scarring of filtering blebs is the main cause of surgical failure in glaucoma. Previous studies have highlighted the role of chloride channels in scar formation , whereas the role of chloride channels in scarring of filtering blebs has not been studied. To investigate the effects of the ClC-2 chloride channel on scar formation of filtering blebs after glaucoma filtering surgery. ClC-2 siRNA-transfected Human conjunctival fibroblasts (HconFs) were cultured in type I collagen gels in the presence of transforming growth factor (TGF)-β1. Collagen gel contraction was evaluated based on the gel area. 3D-cultured HConFs were treated with the chloride channel blocker NPPB in the presence of TGF-β1, and cell proliferation collagen synthesis and contractility were measured. The expression levels of matrix metalloproteinases (MMPs) and tissue inhibitors of metalloproteinases (TIMPs) in HConFs were assessed by western blotting and q-PCR. TGF-β1induced cell proliferation, cell cycle progression, collagen synthesis, and collagen gel contraction in HConFs. TGF-β1 increased MMP-2 and MMP-9 levels but inhibited the expression of TIMPs. NPPB and ClC-2 siRNA transfection inhibited TGF-β2-induced cell proliferation, cell cycle progression, collagen synthesis, and collagen gel contraction, mediated by HConFs. TGF-β2-induced increases in MMP-2 and MMP-9 were also inhibited by NPPB and ClC-2 siRNA transfection, but TIMP expression was increased by NPPB and ClC-2 siRNA transfection. These findings demonstrate that ClC-2 chloride channels modulate TGF-β1-induced cell proliferation, collagen synthesis, and collagen gel contraction of HConFs by attenuating MMP-2 and MMP-9 production and by stimulating TIMP-1 production. NPPB may therefore prove to be of clinical value for the inhibition of scar formation of filtering blebs."	"Comparative Secretome Analysis of Mesenchymal Stem Cells From Dental Apical Papilla and Bone Marrow During Early Odonto/Osteogenic Differentiation: Potential Role of Transforming Growth Factor-β2. To understand the functions of secretory proteins in odontogenesis and to further the understanding of the different molecular events during odontogenesis and osteogenesis, we induced the odonto/osteogenic differentiation of stem cells from dental apical papilla (SCAPs) and bone marrow-derived stem cells (BMSCs) in vitro and compared the expression of secretory proteins during early odonto/osteogenic differentiation using high-performance liquid chromatography with tandem mass spectrometry. The results revealed significant changes by at least 50% in 139 SCAP proteins and 203 BMSC proteins during differentiation. Of these, 92 were significantly upregulated and 47 were significantly downregulated during the differentiation of SCAPs. Most of these proteins showed the same trend during the differentiation of BMSCs. Among the proteins that showed significantly changes during the differentiation of SCAPs and BMSCs, we found that transforming growth factor-β2 (TGFβ2) is a key protein in the network with powerful mediation ability. TGFβ2 was secreted more by SCAPs than BMSCs, was significantly upregulated during the differentiation of SCAPs and was significantly downregulated during the differentiation of BMSCs. Furthermore, the effects of recombinant human TGFβ2 and TGFβ1 on the odonto/osteogenic differentiation of SCAPs and BMSCs were investigated. Real-time reverse transcription polymerase chain reaction (RT-PCR) and western blotting data revealed that TGFβ2 enhanced the odontogenic-related markers [dentin sialophosphoprotein (DSPP), dentin matrix protein 1 (DMP1)] and inhibited the osteogenic-related marker bone sialoprotein (BSP) in SCAPs, whereas TGFβ1 enhanced the BSP expression and inhibited the DSPP and DMP1 expression at early odonto/osteogenic differentiation of SCAPs. However, in BMSCs, TGFβ2 enhanced the expression of alkaline phosphatase (ALP), runt-related transcription factor 2 (RUNX2), DSPP, and DMP1, whereas TGFβ1 enhanced the expression of ALP and RUNX2, with no significant intergroup difference of DSPP at the early odonto/osteogenic differentiation of BMSCs. TGFβ2 is a potentially important molecule with a distinct function in the regulation of odontogenesis and osteogenesis."	"Fli-1 Activation through Targeted Promoter Activity Regulation Using a Novel 3', 5'-diprenylated Chalcone Inhibits Growth and Metastasis of Prostate Cancer Cells. The friend leukemia integration 1 (Fli-1) gene is involved in the expression control of key genes in multiple pathogenic/physiological processes, including cell growth, differentiation, and apoptosis; this implies that Fli-1 is a strong candidate for drug development. In our previous study, a 3',5'-diprenylated chalcone, (E)-1-(2-hydroxy-4-methoxy-3,5-diprenyl) phenyl-3-(3-pyridinyl)-propene-1-one (C10), was identified as a novel anti-prostate cancer (PCa) agent. Here, we investigated the molecular mechanisms underlying the anti-cancer effects of C10 on the growth, metastasis, and invasion of PC3 cells in vitro. Our results show that C10 exhibited a strong inhibitory effect on proliferation and metastasis of PC3 cells via several cellular and flow cytometric analyses. Further mechanism studies revealed that C10 likely serves as an Fli-1 agonist for regulating the expression of Fli-1 target genes including phosphatidylinositol 3-kinase (P110), murine double minute2 (MDM2), B-cell lymphoma-2 (Bcl-2), Src homology-2 domain-containing inositol 5-phosphatase 1 (SHIP-1), and globin transcription factor-1 (Gata-1) as well as the phosphorylation of extracellular-regulated protein kinases 1 (ERK1). Further, we confirmed that C10 can regulate the expressions of vascular endothelial growth factor 1 (VEGF-1), transforming growth factor-β2 (TGF-β2), intercellular cell adhesion molecule-1 (ICAM-1), p53, and matrix metalloproteinase 1 (MMP-1) genes associated with tumor apoptosis, migration, and invasion. Thus, C10 exhibits stronger anticancer activity with novel molecular targets and regulatory molecular mechanisms, indicating its great potency for development as a novel targeted anticancer drug."	"Integrated bioinformatics analysis of aberrantly-methylated differentially-expressed genes and pathways in age-related macular degeneration. Age-related macular degeneration (AMD) represents the leading cause of visual impairment in the aging population. The goal of this study was to identify aberrantly-methylated, differentially-expressed genes (MDEGs) in AMD and explore the involved pathways via integrated bioinformatics analysis. Data from expression profile GSE29801 and methylation profile GSE102952 were obtained from the Gene Expression Omnibus database. We analyzed differentially-methylated genes and differentially-expressed genes using R software. Functional enrichment and protein-protein interaction (PPI) network analysis were performed using the R package and Search Tool for the Retrieval of Interacting Genes online database. Hub genes were identified using Cytoscape. In total, 827 and 592 genes showed high and low expression, respectively, in GSE29801; 4117 hyper-methylated genes and 511 hypo-methylated genes were detected in GSE102952. Based on overlap, we categorized 153 genes as hyper-methylated, low-expression genes (Hyper-LGs) and 24 genes as hypo-methylated, high-expression genes (Hypo-HGs). Four Hyper-LGs (CKB, PPP3CA, TGFB2, SOCS2) overlapped with AMD risk genes in the Public Health Genomics and Precision Health Knowledge Base. KEGG pathway enrichment analysis indicated that Hypo-HGs were enriched in the calcium signaling pathway, whereas Hyper-LGs were enriched in sphingolipid metabolism. In GO analysis, Hypo-HGs were enriched in fibroblast migration, membrane raft, and coenzyme binding, among others. Hyper-LGs were enriched in mRNA transport, nuclear speck, and DNA binding, among others. In PPI network analysis, 23 nodes and two edges were established from Hypo-HGs, and 151 nodes and 73 edges were established from Hyper-LGs. Hub genes (DHX9, MAPT, PAX6) showed the greatest overlap. This study revealed potentially aberrantly MDEGs and pathways in AMD, which might improve the understanding of this disease."	"Immunogenetics of Kawasaki disease. Kawasaki disease (KD) is a medium vessel vasculitis that affects young children. Despite extensive research over the last 50 years, the etiology of KD remains an enigma. Seasonal change in wind patterns was shown to have correlation with the epidemics of KD in Japan. Occurrence of disease in epidemiological clusters, seasonal variation, and a very low risk of recurrence suggest that KD is triggered by an infectious agent. The identification of oligoclonal IgA response in the affected tissues suggests an antigen-driven inflammation. The recent identification of a viral antigen in the cytoplasm of bronchial ciliated epithelium also favors infection as the main trigger for KD. Pointers that suggest a genetic basis of KD include a high disease prevalence in North-East Asian populations, a high risk among siblings, and familial occurrence of cases. Dysregulated innate and adaptive immune responses are evident in the acute stages of KD. In addition to the coronary wall inflammation, endothelial dysfunction and impaired vascular remodeling contribute to the development of coronary artery abnormalities (CAAs) and thrombosis. Genetic aberrations in certain intracellular signaling pathways involving immune effector functions are found to be associated with increased susceptibility to KD and development of coronary artery abnormalities (CAAs). Several susceptible genes have been identified through genome-wide association studies (GWAS) and linkage studies (GWLS). The genes that are studied in KD can be classified under 4 major groups-enhanced T cell activation (ITPKC, ORAI1, STIM1), dysregulated B cell signaling (CD40, BLK, FCGR2A), decreased apoptosis (CASP3), and altered transforming growth factor beta signaling (TGFB2, TGFBR2, MMP, SMAD). The review aims to highlight the role of several genetic risk factors that are linked with the increased susceptibility to KD."	"Integrated analysis of circular RNA-associated ceRNA network in pancreatic ductal adenocarcinoma. Circular RNAs (circRNAs) have displayed dysregulated expression in several types of cancer. However, the functions of the majority of circRNAs in pancreatic ductal adenocarcinoma (PDAC) remain unknown. The present study aimed to investigate the expression, functions and molecular mechanisms of circRNAs in PDAC. The circRNAs, mRNAs and the microRNA (miRNAs) expression profiles were obtained from three Gene Expression Omnibus microarray datasets, and a circRNA-miRNA-mRNA and circRNA-miRNA-hubgene network was established. The interactions between proteins were analyzed using the Search Tool for the Retrieval of Interacting Genes/Proteins database, and hubgenes were identified using the MCODE plugin. A total of eight differentially expressed circRNAs (DEcircRNAs), 44 differentially expressed miRNAs (DEmiRNAs), and 2,052 differentially expressed mRNAs (DEmRNAs) were identified. The present study successfully constructed a circRNA-miRNA-mRNA competing endogenous RNA (ceRNA) network based on four circRNAs, six miRNAs and 111 mRNAs in PDAC. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes pathways analyses indicated that DEmRNAs may participate in the pathogenesis and progression of PDAC. The protein-protein interaction network and module analysis identified six hubgenes (THBS1, FN1, TIMP3, TGFB2, ITGA1 and ITGA3). Furthermore, the circRNA-miRNA-hubgene regulatory modules were constructed based on the three DEcircRNAs, one DEmiRNAs and five DEmRNAs. In conclusion, the results of the present study improve the current understanding of the pathogenesis of PDAC."	"Tumor-associated macrophages regulate gastric cancer cell invasion and metastasis through TGFβ2/NF-κB/Kindlin-2 axis. Recent studies have shown that tumor-associated macrophages (TAMs) play an important role in cancer invasion and metastasis. Our previous studies have reported that TAMs promote the invasion and metastasis of gastric cancer (GC) cells through the Kindlin-2 pathway. However, the mechanism needs to be clarified. THP-1 monocytes were induced by PMA/interleukin (IL)-4/IL-13 to establish an efficient TAM model in vitro and M2 macrophages were isolated via flow cytometry. A dual luciferase reporter system and chromatin immunoprecipitation (ChIP) assay were used to investigate the mechanism of transforming growth factor β2 (TGFβ2) regulating Kindlin-2 expression. Immunohistochemistry was used to study the relationships among TAM infiltration in human GC tissues, Kindlin-2 protein expression, clinicopathological parameters and prognosis in human GC tissues. A nude mouse oncogenesis model was used to verify the invasion and metastasis mechanisms in vivo. We found that Kindlin-2 expression was upregulated at both mRNA and protein levels in GC cells cocultured with TAMs, associated with higher invasion rate. Kindlin-2 knockdown reduced the invasion rate of GC cells under coculture condition. TGFβ2 secreted by TAMs regulated the expression of Kindlin-2 through the transcription factor NF-кB. TAMs thus participated in the progression of GC through the TGFβ2/NF-κB/Kindlin-2 axis. Kindlin-2 expression and TAM infiltration were significantly positively correlated with TNM stage, and patients with high Kindlin-2 expression had significantly poorer overall survival than patients with low Kindlin-2 expression. Furthermore, Kindlin-2 promoted the invasion of GC cells in vivo. This study elucidates the mechanism of TAMs participating in GC cell invasion and metastasis through the TGFβ2/NF-κB/Kindlin-2 axis, providing a possibility for new treatment options and approaches."	"TGFβ2-Hepcidin Feed-Forward Loop in the Trabecular Meshwork Implicates Iron in Glaucomatous Pathology. Elevated levels of transforming-growth-factor (TGF)-β2 in the trabecular meshwork (TM) and aqueous humor are associated with primary open-angle glaucoma (POAG). The underlying mechanism includes alteration of extracellular matrix homeostasis through Smad-dependent and independent signaling. Smad4, an essential co-Smad, upregulates hepcidin, the master regulator of iron homeostasis. Here, we explored whether TGF-β2 upregulates hepcidin, implicating iron in the pathogenesis of POAG. Primary human TM cells and human and bovine ex vivo anterior segment organ cultures were exposed to bioactive TGF-β2, hepcidin, heparin (a hepcidin antagonist), or N-acetyl carnosine (an antioxidant), and the change in the expression of hepcidin, ferroportin, ferritin, and TGF-β2 was evaluated by semiquantitative RT-PCR, Western blotting, and immunohistochemistry. Increase in reactive oxygen species (ROS) was quantified with dihydroethidium, an ROS-sensitive dye. Primary human TM cells and bovine TM tissue synthesize hepcidin locally, which is upregulated by bioactive TGF-β2. Hepcidin downregulates ferroportin, its downstream target, increasing ferritin and iron-catalyzed ROS. This causes reciprocal upregulation of TGF-β2 at the transcriptional and translational levels. Heparin downregulates hepcidin, and reduces TGF-β2-mediated increase in ferritin and ROS. Notably, both heparin and N-acetyl carnosine reduce TGF-β2-mediated reciprocal upregulation of TGF-β2. The above observations suggest that TGF-β2 and hepcidin form a self-sustained feed-forward loop through iron-catalyzed ROS. This loop is partially disrupted by a hepcidin antagonist and an anti-oxidant, implicating iron and ROS in TGF-β2-mediated POAG. We propose that modification of currently available hepcidin antagonists for ocular use may prove beneficial for the therapeutic management of TGF-β2-associated POAG."	"Effects of chronic heat stress on mRNA and miRNA expressions in dairy cows. Heat stress has a negative impact on dairy cow productivity. In order to reveal the mechanisms of heat-stress response, the mRNA and miRNA expression profiles of five cows under chronic heat-stress and thermoneutral conditions were assayed in blood by high-throughput sequencing technology. A total of 540 mRNAs and 9 miRNAs were expressed differently under heat-stress and thermoneutral conditions. Functional analyses revealed that MAPK signaling pathway, cellular senescence, circadian entrainment, aldosterone synthesis and secretion, and pathways in cancer were enriched for differently expressed mRNAs; meanwhile cGMP-PKG signaling pathway, thermogenesis, and protein digestion and absorption were enriched for differently expressed miRNAs. In addition, GADD45G, TGFB2, and GNG11 may play roles in the heat stress, and bta-miR-423-5p might be one of the regulators of heat-stress response in cows as potential mediators of chronic heat-stress response. In conclusion, the present study described the mRNA and miRNA expression patterns in blood extracted from cows during the transition from heat-stress to thermoneutral conditions. The results provide new data that could help in identifying mechanisms that mediate cows' response to chronic heat stress."	"Role of Isocitrate Dehydrogenase 2 on DNA Hydroxymethylation in Human Airway Smooth Muscle Cells. Global DNA hydroxymethylation mediated by the TET (ten-eleven translocation) enzyme was induced in allergen-induced airway hyperresponsiveness in mouse lung tissues and specifically in isolated airway smooth muscle (ASM) cells. TET is an α-ketoglutarate (α-KG)-dependent enzyme, and the production of α-KG is catalyzed by IDH (isocitrate dehydrogenase). However, the role of IDH in the regulation of DNA hydroxymethylation in ASM cells is unknown. In comparison with nonasthmatic cells, asthmatic ASM cells exhibited higher TET activity and IDH2 (but not IDH-1 or IDH-3) gene expression levels. We modified the expression of IDH2 in ASM cells from humans with asthma by siRNA and examined the α-KG levels, TET activity, global DNA hydroxymethylation, cell proliferation, and expression of ASM phenotypic genes. Inhibition of IDH2 in asthmatic ASM cells decreased the α-KG levels, TET activity, and global DNA hydroxymethylation, and reversed the aberrant ASM phenotypes (including decreased cell proliferation and ASM phenotypic gene expression). Specifically, asthmatic cells transfected with siRNA against IDH2 showed decreased 5hmC (5-hydroxymethylcytosine) levels at the TGFB2 (transforming growth factor-β2) promoter determined by oxidative bisulfite sequencing. Taken together, our findings reveal that IDH2 plays an important role in the epigenetic regulation of ASM phenotypic changes in asthmatic ASM cells, suggesting that IDH2 is a potential therapeutic target for reversing the abnormal phenotypes seen in asthma."	"Oxidative stress enhanced the transforming growth factor-β2-induced epithelial-mesenchymal transition through chemokine ligand 1 on ARPE-19 cell. Fibroblast-like transformation of retinal pigment epithelial (RPE) cells is a pathological feature of proliferative vitreoretinopathy (PVR) that may cause blindness. The effect of oxidative stress alone or together with transforming growth factor-beta 2 (TGF-β2) on epithelial-mesenchymal transformation (EMT) is not fully understood in RPE. TGF-β2 induced the upregulation EMT markers including α-smooth muscle actin (α-SMA), Snail, and Slug and downregulation of E-cadherin (E-cad) in ARPE-19 cells. Hydrogen peroxide (H2O2) not only upregulated α-SMA but also enhanced the effect of TGF-β2 on the expression of Snail and Slug. The CXCL family of cytokines could be the mediators of EMT induced by H2O2 and TGF-β2. H2O2 induced CXCL1, that upregulated α-SMA and fibronectin. Both SB225002, an inhibitor of CXCR2, and antioxidant N-acetylcysteine suppressed the TGF-β2-induced EMT in ARPE-19 cells. Taken together, the results suggest that oxidative stress enhanced TGF-β2-induced EMT through the possible autocrine effect of CXCL1 on CXCR2 in ARPE-19 cells."	"Gremlin mediates the TGF-β-induced induction of profibrogenic genes in human retinal pigment epithelial cells. Proliferative vitreoretinopathy (PVR) is characterised by the contraction and growth of fibrotic membranes on the retina and within the vitreous body. Retinal pigment epithelial (RPE) cells, a major cellular component of the fibrotic membrane, is one of the cell types that have been previously reported to associate with PVR pathogenesis. During PVR, RPE cells undergo increased cell proliferation, migration and the secretion of extracellular matrix molecules, such as fibronectin and type I collagen. A variety of cytokines and growth factors are involved in the formation of the fibrotic membrane. Although gremlin has been reported to serve an important role in the regulation of epithelial-to-mesenchymal transition in PVR, the relationship between gremlin and the expression of profibrogenic factors in human RPE cells remains unclear. In the present study, gremlin promoted RPE cell proliferation and the expression of type I collagen and fibronectin. In addition, knocking down gremlin expression by siRNA significantly suppressed the transforming growth factor (TGF)-β1- and TGF-β2-induced expression of type I collagen and fibronectin in RPE cells. These findings suggest that gremlin may serve an important role in the development of PVR."	"The Effect of Omega-3 Fatty Acids on Capsular Tissue around the Breast Implants. One of the most common complications of the use of foreign material, in both reconstructive and cosmetic breast surgery, is capsular contracture. Historically, research on capsular contracture has focused mainly on reducing bacterial contamination through antibiotic solutions. Only secondary studies have focused on pharmacological control of the inflammation process, with particular attention paid to the main inflammation pathway, the arachidonic acid cascade. An important role in the arachidonic acid cascade is played by the omega-3 fatty acids, which are found mainly in oily fish and food supplements. The goal of the present study was to investigate the effects of omega-3 supplements on capsule contraction. Female C57BL/6 mice were implanted with custom-made silicone gel implants and divided into two groups. The treated group received omega-3 oil daily while the control group received water daily by gavage. After mice were euthanized, samples of capsules were collected to evaluate thickness and transforming growth factor (TGF)-β expression. The results showed that capsules in the omega-3 group were thinner and more transparent than those found in the control group. In addition, a significant downregulation of the TGF-β2 gene transcript was observed in the omega-3 group. Omega-3 supplementation seems to be effective in reducing the occurrence of capsular formation, mainly through inhibition of the TGF-β pathway and impairment of collagen deposit. Omega-3 supplementation is a simple and promising method that could be used to prevent or at least reduce capsular contracture after silicone implant surgery."	"Upregulation of miR-101a Suppresses Chronic Renal Fibrosis by Regulating KDM3A via Blockade of the YAP-TGF-β-Smad Signaling Pathway. Renal fibrosis denotes a common complication of diabetic nephropathy and is a predominant cause of end-stage renal disease. Despite the association between microRNAs (miRNAs or miRs) and renal fibrosis, miRNAs have been reported to play a vital role in the development of chronic renal fibrosis. Therefore, the aim of the present study was to investigate the possible function of miR-101a in chronic renal fibrosis. Initially, microarray-based gene expression profiling of renal fibrosis was employed to screen the differentially expressed genes. An in vivo mouse model of chronic renal fibrosis induced by a unilateral ureteral obstruction (UUO) and an in vitro cell model induced by aristolochic acid (AA) were constructed. miR-101a expression was examined using a fluorescence in situ hybridization (FISH) assay and quantitative reverse transcription polymerase chain reaction (qRT-PCR). Then, the interaction between miR-101a and KDM3A was identified using an online website combined with a dual-luciferase reporter assay. Finally, gain- and loss-of-function experiments were conducted to elucidate the effect of miR-101a on the expression of Col1a1, fibronectin, α-smooth muscle actin (α-SMA), and YAP-TGF-β (transforming growth factor β)-Smad signaling pathway-related genes, as well as the degree of renal fibrosis. miR-101a was poorly expressed while KDM3A was robustly induced in chronic renal fibrosis tissues and cells. In addition, miR-101a could target and downregulate KDM3A expression, which led to elevated TGIF1, inhibited expression of Collagen I (Col1a1), fibronectin, α-SMA, YAP1, and TGF-β2 along with the extent of Smad2/3 phosphorylation, as well as delayed renal fibrosis degree. Besides, overexpressed YAP/TGF-β2 or inhibited TGIF1 partially restored the inhibitory effect of miR-101a on chronic renal fibrosis. Taken together, miR-101a could potentially slow down chronic renal fibrosis by the inactivation of the YAP-TGF-β-Smad signaling pathway via KDM3A, highlighting the potential of miR-101a as a therapeutic target for chronic renal fibrosis treatment."	"Down-regulated microRNA-141 facilitates osteoblast activity and inhibits osteoclast activity to ameliorate osteonecrosis of the femoral head via up-regulating TGF-β2. Osteonecrosis of the femoral head (ONFH) is a pathological process that initially occurs in the weight-bearing field of the femoral head. Due to the unknown pathogenesis, this study was for the investigation of the effect of microRNA-141 (miR-141) targeting transforming growth factor-β2 (TGF-β2) on regulating osteoblast activity and osteoclast activity in steroid-induced ONFH.Tissues of ONFH and normal femoral head were collected for detecting the expression of miR-141 and TGF-β2. A rat model of ONFH was constructed by injection of hormones, and transfected with miR-141 inhibitors and overexpressed TGF-β2. The apoptosis of bone cells was detected by TUNEL staining. The expression of osteoprotegerin (OPG), osteoprotegerin ligand (OPGL), Bcl-2, Bax, Runx2, BMP2 and RANK were detected.Highly expressed miR-141 and lowly expressed TGF-β2 existed in femoral head tissues in ONFH. Inhibited miR-141 resulted in elevated TGF-β2 in femoral head tissues in ONFH of rats. Depressed miR-141 or overexpressed TGF-β2 inhibited the apoptosis of bone cells of rats with ONFH and induced elevated OPG, Bcl-2, BMP2, Runx2 and declined OPGL, Bax and RANK expression in the femoral head tissues of rats with ONFH.Altogether, we find that down-regulated miR-141 promotes osteoblast activity and inhibits osteoclast activity to ameliorate ONFH via up-regulated TGF-β2 expression."	"Transforming growth factor-β plasma levels and its role in amyotrophic lateral sclerosis. Amyotrophic lateral sclerosis (ALS) is a neurodegenerative disease characterized by progressive muscle paralysis. Respiratory complications are the main cause of death in ALS. For this reason, initial respiratory status and its decline over disease progression are strong independent predictors of survival. Riluzole, a glutamatergic neurotransmission inhibitor, is the only drug that has shown to extend survival. Therefore, both novel molecular biomarkers and treatment strategies are needed. Transforming growth factor-β (TGF-β) family cytokines are important regulators of cell fate affecting both neurogenesis and neurodegeneration. Several studies demonstrate that TGF-β signalling protects neurons from glutamate-mediated excitotoxicity, a recognized mechanism underlying the pathogenesis of various neurodegenerative disorders such as ALS. Recent studies report dysregulations of the TGF-β system as a common feature of neurodegenerative disorders. The upregulation of this system has been linked with ALS progression. We have quantified TGF-β1, TGF-β2 and TGF-β3 serum levels in 23 ALS patients and 12 healthy controls, our preliminary results support the hypothesis that TGF-β3 levels can be a marker disease severity ALS. Further results are necessary to confirm this hypothesis."	"Low doses of ionizing radiation enhance angiogenesis and consequently accelerate post-embryonic development but not regeneration in zebrafish. Low doses of ionizing radiation (LDIR) activate endothelial cells inducing angiogenesis. In zebrafish, LDIR induce vessel formation in the sub-intestinal vessels during post-embryonic development and enhance the inter-ray vessel density in adult fin regeneration. Since angiogenesis is a crucial process involved in both post-embryonic development and regeneration, herein we aimed to understand whether LDIR accelerate these physiological conditions. Our data show that LDIR upregulate the gene expression of several pro-angiogenic molecules, such as flt1, kdr, angpt2a, tgfb2, fgf2 and cyr61in sorted endothelial cells from zebrafish larvae and this effect was abrogated by using a vascular endothelial growth factor receptor (VEGFR)-2 tyrosine kinase inhibitor. Irradiated zebrafish present normal indicators of developmental progress but, importantly LDIR accelerate post-embryonic development in a VEGFR-2 dependent signaling. Furthermore, our data show that LDIR do not accelerate regeneration after caudal fin amputation and the gene expression of the early stages markers of regeneration are not modulated by LDIR. Even though regeneration is considered as a recapitulation of embryonic development and LDIR induce angiogenesis in both conditions, our findings show that LDIR accelerate post-embryonic development but not regeneration. This highlights the importance of the physiological context for a specific phenotype promoted by LDIR."	"Activity of fibroblast-like synoviocytes in rheumatoid arthritis was impaired by dickkopf-1 targeting siRNA. Fibroblast-like synoviocytes (FLSs), resident mesenchymal cells of synovial joints, play an important role in the pathogenesis of rheumatoid arthritis (RA). Dickkopf-1 (DKK-1) has been proposed to be a master regulator of bone remodeling in inflammatory arthritis. Here, potential impairation on the activity of FLSs derived from RA to small interfering RNAs (siRNAs) targeting DKK-1 was investigated. siRNAs targeting DKK-1 were transfected into FLSs of patients with RA. Interleukin (IL)-1β, IL-6, IL-8, matrix metalloproteinase (MMP) 2, MMP3, MMP9, transforming growth factor (TGF)-β1, TGF-β2 and monocyte chemoattractant protein (MCP)-1 levels in the cell culture supernatant were detected by enzyme-linked immunosorbent assay (ELISA). Invasion assay and H incorporation assay were utilized to investigate the effects of siRNAs targeting DKK-1 on FLSs invasion and cell proliferation, respectively. Western blotting was performed to analyze the expression of nuclear factor (NF)-κB, interleukin-1 receptor-associated kinase (IRAK)1, extracellular regulated protein kinases (ERK)1, Jun N-terminal kinase (JNK) and β-catenin in FLSs. DKK-1 targeting siRNAs inhibited the expression of DKK-1 in FLSs (P &lt; 0.01). siRNAs induced a significant reduction of the levels of IL-6, IL-8, MMP2, MMP3 and MMP9 in FLSs compared to the control group (P &lt; 0.05). DKK-1 targeting siRNAs inhibited the proliferation and invasion of FLSs (P &lt; 0.05). Important molecules of pro-inflammatory signaling in FLSs, including IRAK1 and ERK1, were decreased by the inhibition of DKK-1 in FLSs. In contrast, β-catenin, a pivotal downstream molecule of the Wnt signaling pathway was increased. By inhibiting DKK-1, we were able to inhibit the proliferation, invasion and pro-inflammatory cytokine secretion of FLSs derived from RA, which was mediated by the ERK or the IRAK-1 signaling pathway. These data indicate the application of DKK-1 silencing could be a potential therapeutic approach to RA."	"Comparative analysis of inflammatory signature profiles in eosinophilic and noneosinophilic chronic rhinosinusitis with nasal polyposis. Chronic rhinosinusitis with nasal polyposis (CRSwNP) represents a heterogeneous disorder that can be classified into either eosinophilic or noneosinophilic endotypes. However, the immunological mechanisms of each remain unclear. The purpose of the present study was to compare and analyze inflammatory signatures of eosinophilic CRSwNP (ECRSwNP) and noneosinophilic CRSwNP (NECRSwNP). Cytokine antibody array was used to identify inflammatory mediators that were differentially expressed among ECRSwNP, NECRSwNP, and control groups. Then, bioinformatics approaches were conducted to explore biological functions and signaling pathways. In addition, pairwise correlation analyses were performed among differential levels of inflammatory mediators and tissue eosinophil infiltration. The results showed that nine mediators were significantly up-regulated in ECRSwNP, including eotaxin-2, eotaxin-3, CCL18, IL-4, IL-5, IL-10, IL-12p70, IL-13, and IL-15. Bioinformatics analysis indicated that these mediators were mainly enriched in leukocyte chemotaxis and proliferation, JAK-STAT cascade, asthma, and Th1 and Th2 cell differentiation. Furthermore, seven mediators were identified to be significantly up-regulated in NECRSwNP, including CCL20, resistin, transforming growth factor (TGF)-β2, triggering receptor expressed on myeloid cells 1 (TREM-1), CD14, glucocorticoid-induced tumor necrosis factor receptor related protein (GITR), and lipocalin-2. These mediators were closely associated with LPS responses, neutrophil chemotaxis and migration, and IL-17 signaling pathway. In addition, pairwise correlation analyses indicated that differential levels of inflammatory mediators in ECRSwNP and NECRSwNP were broadly correlated with each other and with tissue eosinophil infiltration. In conclusion, we found that ECRSwNP and NECRSwNP exhibited different patterns of inflammatory signatures. These findings may provide further insights into heterogeneity of CRSwNP."	"The histone demethylase JMJD2B regulates endothelial-to-mesenchymal transition. Endothelial cells play an important role in maintenance of the vascular system and the repair after injury. Under proinflammatory conditions, endothelial cells can acquire a mesenchymal phenotype by a process named endothelial-to-mesenchymal transition (EndMT), which affects the functional properties of endothelial cells. Here, we investigated the epigenetic control of EndMT. We show that the histone demethylase JMJD2B is induced by EndMT-promoting, proinflammatory, and hypoxic conditions. Silencing of JMJD2B reduced TGF-β2-induced expression of mesenchymal genes, prevented the alterations in endothelial morphology and impaired endothelial barrier function. Endothelial-specific deletion of JMJD2B in vivo confirmed a reduction of EndMT after myocardial infarction. EndMT did not affect global H3K9me3 levels but induced a site-specific reduction of repressive H3K9me3 marks at promoters of mesenchymal genes, such as Calponin (CNN1), and genes involved in TGF-β signaling, such as AKT Serine/Threonine Kinase 3 (AKT3) and Sulfatase 1 (SULF1). Silencing of JMJD2B prevented the EndMT-induced reduction of H3K9me3 marks at these promotors and further repressed these EndMT-related genes. Our study reveals that endothelial identity and function is critically controlled by the histone demethylase JMJD2B, which is induced by EndMT-promoting, proinflammatory, and hypoxic conditions, and supports the acquirement of a mesenchymal phenotype."	"Comparison of the Effects of Acellular Dermal Matrix and Montelukast on Radiation-Induced Peri-implant Capsular Formation in Rabbits. Capsular contracture (CC) is a troublesome complication after breast surgery with breast implants, and the risk increases in breast cancer patients after radiotherapy. Studies investigating leukotriene antagonists (eg, montelukast, zafirlukast) found that the acellular dermal matrix (ADM) can help prevent CC. We aimed to compare the effects of ADM and montelukast on CC after irradiation. Eighteen New Zealand white rabbits were randomly divided into 3 groups of 6 each. Miniature cohesive gel implants were inserted into the pocket under the latissimus dorsi muscle. The lateral part was uncovered by the latissimus dorsi muscle. Six animals were included in the control group. In experimental group A (EG-A) (n = 6), the site was partially wrapped with ADM but not covered with muscle. Montelukast (Singulair, 0.2 mg/kg) was administered in experimental group B (EG-B) (n = 6) daily. Groups were irradiated at postoperative day 21 with Co-60 γ rays (25 Gy, single fraction) at the peri-implant area. Rabbits were sacrificed 12 weeks after surgery; implants with peri-implant capsule were harvested. Capsule thickness, collagen pattern, myofibroblast, and transforming growth factor (TGF) β1/2 levels in the peri-implant capsule were evaluated. On histological evaluation, the capsule was thinner on the lateral aspect (covered with ADM) in EG-A (P = 0.004) and the entire capsule in EG-B (P = 0.004) than in the control group. However, there was no significant difference between EG-A and EG-B (P = 0.073). The collagen distribution pattern was more parallel with low density in the lateral capsular aspect in EG-A, but in the entire capsule in EG-B. The myofibroblast amount (EG-A, P = 0.031; EG-B, P = 0.016) and levels of TGF-β1 and TGF-β2 were reduced in the experimental groups (TGF-β1, EG-A, P = 0.019; TGF-β1, EG-B, P = 0.045; TGF-β2, EG-A, P = 0.018; TGF-β2, EG-B, P = 0.022). There was no significant difference between EG-A and EG-B (myofibroblast, P = 0.201; TGF-β1, P = 0.665; TGF-β2, P = 0.665). Acellular dermal matrix and montelukast have a prophylactic effect for CC even when the breast is irradiated. There was no significant difference between ADM and montelukast in preventing capsular formation. The difference is that ADM will only have the effect of covering the capsular formation with ADM and montelukast can cause systemic effects or complications."	"miRNA repertoire and host immune factor regulation upon avian coronavirus infection in eggs. Avian infectious bronchitis virus (IBV) is a coronavirus with great economic impact on the poultry industry, causing an acute and highly contagious disease in chickens that primarily affects the respiratory and reproductive systems. The cellular regulation of IBV pathogenesis and the host immune responses involved remain to be fully elucidated. MicroRNAs (miRNAs) have emerged as a class of crucial regulators of numerous cellular processes, including responses to viral infections. Here, we employed a high-throughput sequencing approach to analyze the miRNA composition of the spleen and the lungs of chicken embryos upon IBV infection. Compared to healthy chicken embryos, 13 and six miRNAs were upregulated in the spleen and the lungs, respectively, all predicted to influence viral transcription, cytokine production, and lymphocyte functioning. Subsequent downregulation of NFATC3, NFAT5, SPPL3, and TGFB2 genes in particular was observed only in the spleen, demonstrating the biological functionality of the miRNAs in this lymphoid organ. This is the first study that describes the modulation of miRNAs and the related host immune factors by IBV in chicken embryos. Our data provide novel insight into complex virus-host interactions and specifically highlight components that could affect the host's immune response to IBV infection."	"Congenital cystic adenomatoid malformations of the lung: an epithelial transcriptomic approach. The pathophysiology of congenital cystic adenomatoid malformations (CCAM) of the lung remains poorly understood. This study aimed to identify more precisely the molecular mechanisms limited to a compartment of lung tissue, through a transcriptomic analysis of the epithelium of macrocystic forms. Tissue fragments displaying CCAM were obtained during planned surgical resections. Epithelial mRNA was obtained from cystic and normal areas after laser capture microdissection (LCM). Transcriptomic analyses were performed and the results were confirmed by RT-PCR and immunohistochemistry in independent samples. After controlling for RNA quality, we analysed the transcriptomes of six cystic areas and five control areas. In total, 393 transcripts were differentially expressed in the epithelium, between CCAM and control areas. The most highly redundant genes involved in biological functions and signalling pathways differentially expressed between CCAM and control epithelium included TGFB2, TGFBR1, and MAP 2 K1. These genes were considered particularly relevant as they have been implicated in branching morphogenesis. RT-qPCR analysis confirmed in independent samples that TGFBR1 was more strongly expressed in CCAM than in control tissues (p &lt; 0.03). Immunohistochemistry analysis showed TGFBR1 (p = 0.0007) and TGFB2 (p &lt; 0.02) levels to be significantly higher in the epithelium of CCAM than in that of control tissues. This compartmentalised transcriptomic analysis of the epithelium of macrocystic lung malformations identified a dysregulation of TGFB signalling at the mRNA and protein levels, suggesting a possible role of this pathway in CCAM pathogenesis. ClinicalTrials.gov Identifier: NCT01732185."	"TGF-β2 silencing to target biliary-derived liver diseases. TGF-β2 (TGF-β, transforming growth factor beta), the less-investigated sibling of TGF-β1, is deregulated in rodent and human liver diseases. Former data from bile duct ligated and MDR2 knockout (KO) mouse models for human cholestatic liver disease suggested an involvement of TGF-β2 in biliary-derived liver diseases. As we also found upregulated TGFB2 in liver tissue of patients with primary sclerosing cholangitis (PSC) and primary biliary cholangitis (PBC), we now fathomed the positive prospects of targeting TGF-β2 in early stage biliary liver disease using the MDR2-KO mice. Specifically, the influence of TgfB2 silencing on the fibrotic and inflammatory niche was analysed on molecular, cellular and tissue levels. TgfB2-induced expression of fibrotic genes in cholangiocytes and hepatic stellate cellswas detected. TgfB2 expression in MDR2-KO mice was blunted using TgfB2-directed antisense oligonucleotides (AON). Upon AON treatment, reduced collagen deposition, hydroxyproline content and αSMA expression as well as induced PparG expression reflected a significant reduction of fibrogenesis without adverse effects on healthy livers. Expression analyses of fibrotic and inflammatory genes revealed AON-specific regulatory effects on Ccl3, Ccl4, Ccl5, Mki67 and Notch3 expression. Further, AON treatment of MDR2-KO mice increased tissue infiltration by F4/80-positive cells including eosinophils, whereas the number of CD45-positive inflammatory cells decreased. In line, TGFB2 and CD45 expression correlated positively in PSC/PBC patients and localised in similar areas of the diseased liver tissue. Taken together, our data suggest a new mechanistic explanation for amelioration of fibrogenesis by TGF-β2 silencing and provide a direct rationale for TGF-β2-directed drug development."	"Parenteral Nutrition-Dependent Children With Short-Bowel Syndrome Lack Duodenal-Adaptive Hyperplasia but Show Molecular Signs of Altered Mucosal Function. Although adaptive mucosal growth of the remaining small intestine is an essential compensatory mechanism to bowel resection in experimental short-bowel syndrome (SBS), only scarce clinical data are available. We studied structural and molecular mechanisms of intestinal adaptation in children with SBS. Fourteen patients, who had been dependent on parenteral nutrition (PN) since neonatal period for a median (interquartile range)1.4 (0.7-6.5) years, were studied at the age of 1.5 (1.0-6.5) years. Median length of remaining small bowel was 33 (12-60) cm, and 6 patients had their ileocecal valve preserved. Six children without gastrointestinal disorders served as age-matched and gender-matched controls. All patients underwent duodenal biopsies. Mucosal microarchitecture, proliferation, apoptosis, inflammation, and epithelial-barrier function were addressed using histology, immunohistochemistry, and quantitative real-time polymerase chain reaction. Villus height, crypt depth, enterocyte proliferation, and apoptosis were similar in patients and matched controls. Messenger RNA (mRNA) expression of numerous genes regulating gut epithelial-barrier function (TGFB2, CAV1, CLDN1, MUC2, and NLRC4) was significantly altered. Of various nutrient transporters studied, only expression of SLC2A1 encoding facilitative glucose transporter GLUT1 was increased among patients, whereas RNA expression of genes encoding sodium-dependent glucose, sterol, fatty-acid, and peptide transport remained unchanged. Duodenal mucosal hyperplasia has a limited role in mediating physiological adaptation following intestinal resection among PN-dependent children with SBS. Further clinical studies addressing functional significance of the observed alterations in mucosal RNA expression are warranted."	"CircCTDP1 promotes nasopharyngeal carcinoma progression via a microRNA‑320b/HOXA10/TGFβ2 pathway. Circular RNAs have been reported to play a vital role in the development and progression of various types of cancer. However, the underlying molecular role of circular RNA CTDP1 (circCTDP1) in the tumorigenesis of nasopharyngeal carcinoma (NPC) remains unknown. In the present study, circCTDP1 expression was found to be markedly upregulated in NPC tissues and cell lines (SUNE1, SUNE2 and 6‑10B cell lines). Knockdown of circCTDP1 resulted in inhibition of proliferation, migration and invasion, and promoted apoptosis of NPC cells. Moreover, circCTDP1 directly interacted with microRNA (miR)‑320b based on bioinformatics prediction and dual luciferase assay, and transfection with an miR‑320b inhibitor reversed the effects of circCTDP1 knockdown on NPC cells. Furthermore, circCTDP1/miR‑320b promoted NPC progression by regulating the expression of homeobox A10 (HOXA10). In addition, it was demonstrated that HOXA10 may exert its oncogenic role in NPC by regulating the expression of transforming growth factor β2 (TGFβ2). Taken together, these results revealed a novel regulatory mechanism, which may provide an improved understanding of NPC tumorigenesis and be useful in the development of potential targets for NPC therapy."	"TGFβ2-induced formation of lipid droplets supports acidosis-driven EMT and the metastatic spreading of cancer cells. Acidosis, a common characteristic of the tumor microenvironment, is associated with alterations in metabolic preferences of cancer cells and progression of the disease. Here we identify the TGF-β2 isoform at the interface between these observations. We document that acidic pH promotes autocrine TGF-β2 signaling, which in turn favors the formation of lipid droplets (LD) that represent energy stores readily available to support anoikis resistance and cancer cell invasiveness. We find that, in cancer cells of various origins, acidosis-induced TGF-β2 activation promotes both partial epithelial-to-mesenchymal transition (EMT) and fatty acid metabolism, the latter supporting Smad2 acetylation. We show that upon TGF-β2 stimulation, PKC-zeta-mediated translocation of CD36 facilitates the uptake of fatty acids that are either stored as triglycerides in LD through DGAT1 or oxidized to generate ATP to fulfill immediate cellular needs. We also address how, by preventing fatty acid mobilization from LD, distant metastatic spreading may be inhibited."	"Co-transfection of hepatocyte growth factor and truncated TGF-β type II receptor inhibit scar formation. Wound scarring remains a major challenge for plastic surgeons. Transforming growth factor (TGF)-β plays a key role in the process of scar formation. Previous studies have demonstrated that truncated TGF-β type II receptor (t-TGF-βRII) is unable to continue signal transduction but is still capable of binding to TGF-β, thereby blocking the TGF-β signaling pathway. Hepatocyte growth factor (HGF) is a multifunctional growth factor that promotes tissue regeneration and wound healing. Theoretically, the combination of HGF and t-TGF-βRII would be expected to exert a synergistic effect on promoting wound healing and reducing collagen formation. In the present study, lentivirus-mediated transfection of the two genes (t-TGF-βRII/HGF) into fibroblasts in vitro and in a rat model in vivo was used. The results demonstrated that the expression of t-TGF-βRII and HGF in NIH-3T3 cells was successfully induced. The expression of both molecules significantly reduced collagen I and III expression, and also inhibited fibroblast proliferation. Furthermore, histological examination and scar quantification revealed less scarring in the experimental wound in a rat model. Moreover, on macroscopic inspection, the experimental wound exhibited less visible scarring compared with the control. Therefore, the present study demonstrated that the combination gene therapy of t-TGF-βRII and HGF promoted wound healing, with less scarring and more epithelial tissue formation, not only by suppressing the overgrowth of collagen due to its antifibrotic effect, but also by promoting tissue regeneration."	"Transcriptome Analysis Reveals Potential Regulatory Genes Related to Heat Tolerance in Holstein Dairy Cattle. Heat stress affects the physiology and production performance of Chinese Holstein dairy cows. As such, the selection of heat tolerance in cows and elucidating its underlying mechanisms are vital to the dairy industry. This study aimed to investigate the heat tolerance associated genes and molecular mechanisms in Chinese Holstein dairy cows using a high-throughput sequencing approach and bioinformatics analysis. Heat-induced physiological indicators and milk yield changes were assessed to determine heat tolerance levels in Chinese Holstein dairy cows by Principal Component Analysis method following Membership Function Value Analysis. Results indicated that rectal temperature (RT), respiratory rate (RR), and decline in milk production were significantly lower (p &lt; 0.05) in heat tolerant (HT) cows while plasma levels of heat shock protein (HSP: HSP70, HSP90), and cortisol were significantly higher (p &lt; 0.05) when compared to non-heat tolerant (NHT) Chinese Holstein dairy cows. By applying RNA-Seq analysis, we identified 200 (81 down-regulated and 119 up-regulated) significantly (|log2fold change| ≥ 1.4 and p ≤ 0.05) differentially expressed genes (DEGs) in HT versus NHT Chinese Holstein dairy cows. In addition, 14 of which were involved in protein-protein interaction (PPI) network. Importantly, several hub genes (OAS2, MX2, IFIT5 and TGFB2) were significantly enriched in immune effector process. These findings might be helpful to expedite the understanding for the mechanism of heat tolerance in Chinese Holstein dairy cows."	"Nuclear factor-kappa beta signaling is required for transforming growth factor Beta-2 induced ocular hypertension. A major risk for the development of primary open-angle glaucoma (POAG) is elevated intraocular pressure (IOP). Elevated IOP is caused by increased outflow resistance due in part to excessive extracellular matrix (ECM) deposition in the trabecular meshwork (TM). The role of transforming growth factor beta 2 (TGFβ2) in inducing ECM production is well understood. Recent studies suggest that toll-like receptor 4 (TLR4) plays an important role in fibrogenesis. We have previously described a crosstalk between TGFβ2 and TLR4 in the development of ocular hypertension and glaucomatous TM damage. Nuclear factor-kappa beta (NF-κB) is critical for TLR4 signaling. To determine the transactivation of NF-κB, TM cells were stimulated with cellular fibronectin containing the EDA isoform (cFN-EDA), TGFβ2, or lipopolysaccharide (LPS) in combination with a selective TLR4 inhibitor. cFN-EDA, TGFβ2, and LPS all induced transactivation of NF-κB and inhibition of TLR4 blocked the effect of each treatment paradigm. To evaluate the role of NF-κB in IOP regulation, we utilized our inducible mouse model of ocular hypertension by injection of Ad5.TGFβ2 in mice harboring a mutation in NF-κB and wild-type controls. IOP was measured over time and eyes accessed by immunohistochemistry for the ECM protein FN and the specific FN-EDA isoform. Ad5.TGFβ2 induced ocular hypertension and expression of FN and FN-EDA in wild-type mice, but mutation in NF-κB blocked the effect. These data suggest that NF-κB is necessary for TGFβ2-induced ECM production and ocular hypertension and the transactivation of NF-κB is dependent on both TGFβ2 and TLR4."	"Differences in microRNA-29 and Pro-fibrotic Gene Expression in Mouse and Human Hypertrophic Cardiomyopathy. Background: Hypertrophic cardiomyopathy (HCM) is characterized by myocyte hypertrophy and fibrosis. Studies in two mouse models (R92W-TnT/R403Q-MyHC) at early HCM stage revealed upregulation of endothelin (ET1) signaling in both mutants, but TGFβ signaling only in TnT mutants. Dysregulation of miR-29 expression has been implicated in cardiac fibrosis. But it is unknown whether expression of miR-29a/b/c and profibrotic genes is commonly regulated in mouse and human HCM. Methods: In order to understand mechanisms underlying fibrosis in HCM, and examine similarities/differences in expression of miR-29a/b/c and several profibrotic genes in mouse and human HCM, we performed parallel studies in rat cardiac myocyte/fibroblast cultures, examined gene expression in two mouse models of (non-obstructive) HCM (R92W-TnT, R403Q-MyHC)/controls at early (5 weeks) and established (24 weeks) disease stage, and analyzed publicly available mRNA/miRNA expression data from obstructive-HCM patients undergoing septal myectomy/controls (unused donor hearts). Results: Myocyte cultures: ET1 increased superoxide/H2O2, stimulated TGFβ expression/secretion, and suppressed miR-29a expression in myocytes. The effect of ET1 on miR-29 and TGFβ expression/secretion was antagonized by N-acetyl-cysteine, a reactive oxygen species scavenger. Fibroblast cultures: ET1 had no effect on pro-fibrotic gene expression in fibroblasts. TGFβ1/TGFβ2 suppressed miR-29a and increased collagen expression, which was abolished by miR-29a overexpression. Mouse and human HCM: Expression of miR-29a/b/c was lower, and TGFB1/collagen gene expression was higher in TnT mutant-LV at 5 and 24 weeks; no difference was observed in expression of these genes in MyHC mutant-LV and in human myectomy tissue. TGFB2 expression was higher in LV of both mutant mice and human myectomy tissue. ACE2, a negative regulator of the renin-angiotensin-aldosterone system, was the most upregulated transcript in human myectomy tissue. Pathway analysis predicted upregulation of the anti-hypertrophic/anti-fibrotic liver X receptor/retinoid X receptor (LXR/RXR) pathway only in human myectomy tissue. Conclusions: Our in vitro studies suggest that activation of ET1 signaling in cardiac myocytes increases reactive oxygen species and stimulates TGFβ secretion, which downregulates miR-29a and increases collagen in fibroblasts, thus contributing to fibrosis. Our gene expression studies in mouse and human HCM reveal allele-specific differences in miR-29 family/profibrotic gene expression in mouse HCM, and activation of anti-hypertrophic/anti-fibrotic genes and pathways in human HCM."	"Indoleamine 2,3-dioxgenase-transfected mesenchymal stem cells suppress heart allograft rejection by increasing the production and activity of dendritic cells and regulatory T cells. Expression of indoleamine 2,3-dioxygenase (IDO) in mesenchymal stem cells (MSC) is thought to contribute to MSC-mediated immunosuppression. A lentiviral-based transgenic system was used to generate bone marrow stem cells (BMSC) which stably expressed IDO (IDO-BMSCs). Coculture of IDO-BMSCs with dendritic cells (DC) or T cells was used to evaluate the immunomodulatory effect of IDO-BMSCs. A heterotopic heart transplant model in rats was used to evaluate allograft rejection after IDO-BMSC treatment. Mechanisms of IDO-BMSC-mediated immunosuppression were investigated by evaluating levels of proinflammatory and anti-inflammatory cytokines, and production of Tregs. A significant decrease in DC marker-positive cells and a significant increase in Tregs were observed in IDO-BMSC cocultured. Treatment of transplanted rats with IDO-BMSCs was associated with significantly prolonged graft survival. Compared with the control groups, transplanted animals treated with IDO-BMSCs had a (1) significantly higher ejection fraction and fractional shortening, (2) significantly lower expression of CD86, CD80, and MHCII, and significantly higher expression in CD274, and Tregs, and (3) significantly higher levels of interleukin-10 (IL-10), transforming growth factor beta-1 (TGF-β1), TGF-β2, and TGF-β3, and significantly lower levels of IL-2 and interferon gamma. Our results expand our understanding of the molecular mechanisms underlying suppression of heart allograft rejection via IDO-expressing BMSCs."	"Increased expression of periostin and tenascin-C in eyes with neovascular glaucoma secondary to PDR. To investigate periostin (PN) and tenascin-C (TNC) expression in the aqueous humor and trabeculectomy specimens of patients with neovascular glaucoma (NVG) secondary to proliferative diabetic retinopathy (PDR). This study enrolled 37 eyes of 37 patients who were grouped into (1) NVG secondary to PDR (NVG; n = 8); (2) PDR without NVG (PDR; n = 9); (3) primary open-angle glaucoma (POAG; n = 11); and (4) cataract surgery patients as a control group (CG; n = 9). Aqueous humor samples were collected from the anterior chamber at the start of surgery or intravitreal injection of anti-VEGF drug. The concentrations of PN, TNC, VEGF, and TGF-β2 (transforming growth factor-beta 2) were measured by ELISA. Sclerostomy tissues containing trabecular meshwork were obtained from two NVG patients and a POAG patient who underwent trabeculectomy surgery. Immunohistochemical analyses were performed to determine the localization of PN and TNC expression in the sclerostomy tissues. PN and TNC-C levels were below detection threshold in the POAG and CG groups. The NVG group had significantly higher levels of PN and TNC compared with the PDR group (84.7 ng/ml vs 2.2 ng/ml and 18.5 ng/ml vs 4.6 ng/ml, respectively; p &lt; 0.05). There was a significant correlation between the levels of PN and TNC-C in the NVG group (r = 0.86, p &lt; 0.05). We found significant expression of PN in the trabecular meshwork and Schlemm's canal of sclerostomy tissues excised from patients with NVG. Increased PN and TNC expression suggests their possible involvement in the pathogenesis of NVG secondary to PDR."	"miR-324-5p inhibits gallbladder carcinoma cell metastatic behaviours by downregulation of transforming growth factor beta 2 expression. Increasing studies have demonstrated that microRNAs (miRNAs) are associated with the metastasis of gallbladder carcinoma (GBC). Recently, miR-324-5p has been reported to be a tumour-suppressive miRNA in many types of malignant cancer. However, the biological function and molecular mechanism of miR-324-5p in GBC still remain largely unknown. Here, we found that miR-324-5p expression was notably down-regulated in both GBC tissues and cells compared with that in normal controls. Downregulated miR-324-5p expression was negatively associated with the status of local invasion and lymph node metastasis and predicted a poor prognosis in GBC patients. Further functional assays revealed that restoration of miR-324-5p significantly suppressed GBC cell migration, invasion and epithelial-mesenchymal transition (EMT) in vitro and impeded the metastasis of GBC cells in vivo. Moreover, RNA immunoprecipitation (RIP) and dual-luciferase reporter assay confirmed that the transforming growth factor beta 2 (TGFB2) was a direct target gene of miR-324-5p in GBC cells. Mechanically, small interfering RNA (siRNA)-mediated knockdown of TGFB2 partially phenocopied the inhibitory effects of miR-324-5p overexpression on GBC cell metastatic phenotypes. In summary, our findings demonstrated that miR-324-5p targets TGFB2 expression to inhibit GBC cell metastatic behaviors, and implying miR-324-5p as a potential biomarker for diagnostic and therapeutic strategies in GBC."	"Dietary biotin deficiency decreased growth performance and impaired the immune function of the head kidney, spleen and skin in on-growing grass carp (Ctenopharyngodon idella). The aim of this study was to investigate the effects of dietary biotin deficiency on the growth performance and immune function of the head kidney, spleen and skin in on-growing grass carp (Ctenopharyngodon idella). A total of 540 on-growing grass carp (117.11 ± 0.48 g) were fed six diets containing increasing levels of biotin (0.012, 0.110, 0.214, 0.311, 0.427 and 0.518 mg/kg diet) for 70 days. Subsequently, a challenge experiment was performed by infecting them with Aeromonas hydrophila for six days. Our results showed that compared with the appropriate biotin level, (1) biotin deficiency (0.012 mg/kg diet) reduced the activities of lysozyme (LZ) and acid phosphatase (ACP), decreased the contents of complement 3 (C3), C4 and immunoglobulin M (IgM), as well as reduced the mRNA levels of antimicrobial peptides in the head kidney, spleen and skin of on-growing grass carp; (2) biotin deficiency reduced the mRNA levels of anti-microbial substances: liver-expressed antimicrobial peptide (LEAP) -2A, LEAP-2B, hepcidin, β-defensin-1 and mucin 2 in the head kidney, spleen and skin of on-growing grass carp; (3) biotin deficiency increased the mRNA levels of pro-inflammatory cytokines interleukin 1β (IL-1β), IL-6, IL-8, IL-12p40, IL-15, IL-17D, tumour necrosis factor α (TNF-α) and interferon γ2 (IFN-γ2) partially in association with nuclear factor-kappa B (NF-κB) signalling and reduced anti-inflammatory IL-4/13A, IL-10, IL-11 and transforming growth factor β1 (TGF-β1) mRNA levels partially in association with target of rapamycin (TOR) signalling in the head kidney, spleen and skin of on-growing grass carp. Interestingly, biotin deficiency had no effect on the expression of IL-12p35, IL-4/13B, TGF-β2, 4E-BP1 (skin only) or IKKα in the head kidney, spleen and skin of on-growing grass carp. In conclusion, the results indicated that biotin deficiency impaired the immune function of the head kidney, spleen and skin in fish. Finally, based on the percent weight gain (PWG), the ability to prevent skin haemorrhages and lesions, the LZ activity in the head kidney and the C4 content in the spleen, the optimal dietary biotin levels for on-growing grass carp (117-534 g) were estimated as 0.210, 0.230, 0.245 and 0.238 mg/kg diet, respectively."	"The role of mechanical stretch and TGF-β2 in epithelial-mesenchymal transition of retinal pigment epithelial cells. To explore the effects and mechanisms of mechanical stress and transforming growth factor-beta2 (TGF-β2) on epithelial-mesenchymal transition (EMT) in cultured human retinal pigment epithelial (RPE) cells. Human RPE cells were inoculated on BioFex 6-well plates and RPE cells received 0, 1, 2, 3, or 4 mild stretch injuries delivered 3h apart after 24h of culture. The device of mechanical stress parameters were set to sine wave, frequency 1 Hz, stretch strength 20%. For treatment with TGF-β2, when the inoculated RPE cells in 6-well plates were around 60% confluent, serum was reduced to 0 for 12h and recombinant human TGF-β2 (0, 1, 5, 10 ng/mL) was added for 48h. α-SMA, Vimentin and N-Cadherin, fibronectin proteins expressions were detected by Western blotting, confocal cell immunofluorescence and quantitative real-time polymerase chain reaction (qRT-PCR). Then we detected the change of miRNA-29b and ascertained the changes of phosphatidylinositol 3-kinase-serine threonine protein kinase (PI3K/Akt) pathway after RPE cells were stretched by the device of mechanical stress and induced by TGF-β2 by Western blotting, confocal cell immunofluorescence and qRT-PCR. Mechanical stress induce EMT and activate the PI3K/Akt pathway in ways that lead to the EMT process. TGF-β2 induce RPE cells EMT and in a certain range and TGF-β2 decrease the miRNA-29b expression in RPE cells, and the inhibitory effect is more obvious with the increase of TGF-β2 concentration. Our findings are crucial steps in determining the critical roles of the PI3K/Akt signaling pathway and miRNA-29b in pathogenesis of proliferative vitreoretinopathy (PVR) which may be a potential target for preventing or treating PVR."	"Effect of Oral Nutrition Supplements and TGF-β2 on Nutrition and Inflammatory Patterns in Patients With Active Crohn's Disease. Crohn's disease (CD) is often associated with nutrition disorders. Many nutrition therapeutic alternatives have been studied. Nevertheless, the actual role of nutrition therapy is still controversial. The objective of this study was to assess the effects of nutrition supplementation with and without transforming growth factor-beta 2 (TGF-β2) on inflammatory, endoscopic, histopathologic, and nutrition parameters in active CD. Thirty-eight patients were allocated into 3 groups: group 1 (patients who received only nutrition orientation), group 2 (nutrition orientation and a normoproteic, normocaloric nutrition supplement), and group 3 (nutrition orientation and the nutritional supplement with TGF-β2). Clinical and nutrition evaluation, C-reactive protein (CRP) levels, and assessment of endoscopic and histologic parameters in the intestinal mucosa were performed before and after nutrition intervention. The mean follow-up period was 3 months. In the beginning of the study, groups were homogeneous regarding age, gender, CD behavior and localization, and medication in use. In the end of the study, the Clinical Disease Activity Index score was reduced in groups 2 and 3; in group 3, a reduction in CRP levels and an improvement in histologic findings were observed. Among patients who received nutritional supplement, some anthropometric patterns were improved. The results of the study indicate that nutritional supplementation improved nutrition and inflammatory patterns in patients with active CD. However, only patients receiving TGF-β2-enriched formula showed improvement in histologic parameters and significant reduction in CRP levels."	"Soluble HLA-G and TGF-β in couples attending assisted reproduction - A possible role of TGF-β isoforms in semen? Soluble isoforms of the non-classical Human Leukocyte Antigen (HLA)-G as well as Transforming Growth Factor (TGF)-β is expressed in seminal plasma possibly influencing the pregnancy potential. We wanted to examine the association of seminal plasma sHLA-G, TGF-β1, TGF-β2 and TGFβ3 with pregnancy success in a cohort of 127 couples and 4 single women attending fertility treatment with the use of assisted reproduction technologies (ART). Soluble HLA-G, TGF-β1, TGF-β2 and TGF-β3 in seminal plasma did not fluctuate significantly over time. We did not find any impact of seminal plasma sHLA-G, TGF-β1, TGF-β2 and TGF-β3 on time-to-pregnancy measured as number of treatment cycles. There was a significant association between concentrations of seminal plasma sHLA-G and HLA-G variations in the 3'untranslated region (3'UTR) of the HLA-G gene, supporting and extending previous findings. Furthermore, by comparing seminal plasma concentrations of sHLA-G, TGF-β1, TGF-β2 and TGF-β3 in male subjects with reduced semen quality, male subjects with normal semen quality, and sperm donors, we found that TGF-β2 was significantly lower, and TGF-β3 was significantly higher, in seminal plasma from sperm donors. These findings suggest that TGF-β isoforms may influence semen quality and fertility."	"Betaglycan (TβRIII) is a Key Factor in TGF-β2 Signaling in Prepubertal Rat Sertoli Cells. Transforming growth factor-βs (TGF-βs) signal after binding to the TGF-β receptors TβRI and TβRII. Recently, however, betaglycan (BG) was identified as an important co-receptor, especially for TGF-β2. Both proteins are involved in several testicular functions. Thus, we analyzed the importance of BG for TGF-β1/2 signaling in Sertoli cells with ELISAs, qRT-PCR, siRNA silencing and BrdU assays. TGF-β1 as well as TGF-β2 reduced shedding of membrane-bound BG (mBG), thus reducing the amount of soluble BG (sBG), which is often an antagonist to TGF-β signaling. Treatment of Sertoli cells with GM6001, a matrix metalloproteinases (MMP) inhibitor, also counteracted BG shedding, thus suggesting MMPs to be mainly involved in shedding. Interestingly, TGF-β2 but not TGF-β1 enhanced secretion of tissue inhibitor of metalloproteinases 3 (TIMP3), a potent inhibitor of MMPs. Furthermore, recombinant TIMP3 attenuated BG shedding. Co-stimulation with TIMP3 and TGF-β1 reduced phosphorylation of Smad3, while a combination of TIMP3/TGF-β2 increased it. Silencing of BG as well as TIMP3 reduced TGF-β2-induced phosphorylation of Smad2 and Smad3 significantly, once more highlighting the importance of BG for TGF-β2 signaling. In contrast, this effect was not observed with TIMP3/TGF-β1. Silencing of BG and TIMP3 decreased significantly Sertoli cell proliferation. Taken together, BG shedding serves a major role in TGF-β2 signaling in Sertoli cells."	"Effects of Toll-Like Receptor 4 Inhibition on Transforming Growth Factor-β2 Signaling in the Human Trabecular Meshwork.  Purpose:  Transforming growth factor-β2 (TGFβ2) and Toll-like receptor 4 (TLR4) crosstalk have been implicated in extracellular matrix regulation in the trabecular meshwork (TM) and ocular hypertension in mice. We investigated TLR4 expression in normal and glaucomatous human trabecular meshwork (HTM) sections and utilized a human perfusion organ culture model to determine TGFβ2-TLR4 signaling crosstalk in glaucoma.  Methods:  Expression of TLR4 was determined in TM of normal and glaucomatous human eyes. Anterior segments of paired human eyes were perfused at a constant flow rate (2.5 μL/min) for 4 days to acquire stable baseline intraocular pressures (IOPs). We treated paired eyes with two different treatment paradigms: (1) TGFβ2 in one eye and vehicle control in the paired eye, (2) TGFβ2 in one eye and TGFβ2 + TLR4 inhibitor TAK-242 in the paired eye. Perfusate and TM tissue were collected and analyzed for fibronectin (FN) and collagen IV (COLIV) expression.  Results:  We observed increased TLR4 expression in glaucomatous HTM sections compared to normal (age-matched) (P &lt; 0.05). Significant elevation of IOP was detected in 47% of TGFβ2-treated anterior segments (P &lt; 0.01) compared to control, and in TGFβ2 treated compared with co-treatment with TGFβ2 + TLR4 inhibitor (P &lt; 0.0001). An increase in FN and COLIV expression was observed after TGFβ2 treatment, and inhibition of TLR4 signaling decreased TGFβ2-induced FN and COLIV expression in perfusate (P &lt; 0.05).  Conclusions:  These studies identify TGFβ2-TLR4 crosstalk as a novel pathway in glaucoma. They provide a potential new target to lower IOP and explore glaucoma pathogenesis."	"Condensed tannins decreased the growth performance and impaired intestinal immune function in on-growing grass carp (Ctenopharyngodon idella). The present study investigated the effects of condensed tannins (CT) on intestinal immune function in on-growing grass carp (Ctenopharyngodon idella). A total of 540 healthy grass carp were fed six diets containing different levels of CT (0, 10·00, 20·00, 30·00, 40·00 and 50·00 g/kg diet) for 70 d and then challenged with Aeromonas hydrophila for 14 d. The results showed that, compared with the control group, dietary CT (1) induced intestinal histopathological lesions and aggravated enteritis; (2) decreased lysozyme and acid phosphatase activities, complement 3 (C3), C4 and IgM contents and down-regulated the Hepcidin, liver-expressed antimicrobial peptide (LEAP)-2A, LEAP-2B, Mucin2 and β-defensin-1 mRNA levels in the proximal intestine (PI), mid intestine (MI) and distal intestine (DI) (P &lt; 0·05); (3) down-regulated the mRNA levels of anti-inflammatory cytokines transforming growth factor (TGF)-β1, TGF-β2 (not in MI and DI), IL-4/13A (not IL-4/13B), IL-10 and IL-11 partly correlated with target of rapamycin (TOR) signalling; and (4) up-regulated the mRNA levels of pro-inflammatory cytokines interferon-γ2, IL-1β, IL-6, IL-8 (not in PI), IL-12p35, IL-12p40, IL-15 and IL-17D partly related to NF-κB signalling in the intestine of on-growing grass carp. Overall, the results indicated that CT could impair the intestinal immune function, and its potential regulation mechanisms were partly associated with the TOR and NF-κB signalling pathways. Finally, based on the percentage weight gain and enteritis morbidity, the maximum allowable levels of CT for on-growing grass carp (232·22-890·11 g) were estimated to be 18·6 and 17·4 g/kg diet, respectively."	"Aspirin inhibits TGFβ2-induced epithelial to mesenchymal transition of lens epithelial cells: selective acetylation of K56 and K122 in histone H3. Posterior capsule opacification (PCO) is a complication after cataract surgery that can disrupt vision. The epithelial to mesenchymal transition (EMT) of lens epithelial cells (LECs) in response to transforming growth factor β2 (TGFβ2) has been considered an obligatory mechanism for PCO. In this study, we tested the efficacy of aspirin in inhibiting the TGFβ2-mediated EMT of human LECs, LECs in human lens capsular bags, and lensectomized mice. In human LECs, the levels of the EMT markers α-smooth muscle actin (α-SMA) and fibronectin were drastically reduced by treatment with 2 mM aspirin. Aspirin also halted the EMT response of TGFβ2 when introduced after EMT initiation. In human capsular bags, treatment with 2 mM aspirin significantly suppressed posterior capsule wrinkling and the expression α-SMA in capsule-adherent LECs. The inhibition of TGFβ2-mediated EMT in human LECs was not dependent on Smad phosphorylation or MAPK and AKT-mediated signaling. We found that aspirin significantly increased the acetylation of K56 and K122 in histone H3 of human LECs. Chromatin immunoprecipitation assays using acetyl-H3K56 or acetyl-H3K122 antibody revealed that aspirin blocked the TGFβ2-induced acetylation of H3K56 and H3K122 at the promoter regions of ACTA2 and COL1A1. After lensectomy in mice, we observed an increase in the proliferation and α-SMA expression of the capsule-adherent LECs, which was ameliorated by aspirin administration through drinking water. Taken together, our results showed that aspirin inhibits TGFβ2-mediated EMT of LECs, possibly from epigenetic down-regulation of EMT-related genes."	"Study on miR-384-5p activates TGF-β signaling pathway to promote neuronal damage in abutment nucleus of rats based on deep learning. Any ailment in our organs can be visualized by using different modality signals and images. Hospitals are encountering a massive influx of large multimodality patient data to be analysed accurately and with context understanding. The deep learning techniques, like convolution neural networks (CNN), long short-term memory (LSTM), autoencoders, deep generative models and deep belief networks have already been applied to efficiently analyse possible large collections of data. Application of these methods to medical signals and images can aid the clinicians in clinical decision making. The aim of this study was to explore its potential application mechanism to the abalone basal ganglia neurons in rats based on deep learning. Firstly, in the GEO database, we obtained data on rat anesthesia, performing differential analysis, co-expression analysis, and enrichment analysis, and then we received the relevant module genes. Besides, the potential regulation of multi-factors on the module was calculated by hypergeometric test, and a series of ncRNA and TF were identified. Finally, we screened the target genes of anesthetized rats to gain insight into the potential role of anesthesia in rat basal lateral nucleus neurons. A total of 535 differentially expressed genes in rats were obtained, involving Mafb and Ryr2. These genes are clustered into 17 anesthesia-related expression disorder modules. At the same time, the biological processes favored by the module are regulation of neuron apoptotic process and transforming growth factor beta2 production. Pivot analysis found that 39 ncRNAs and 4 TFs drive anesthesia-related disorders. Finally, the mechanism of action was analyzed and predicted. The module was regulated by Acvr1. We believe that miR-384-5p in anesthetized rats can activate the TGF-beta signaling pathway. Further, it promotes anesthesia and causes exposure to the basal ganglia neuron damage of the amygdala. In this study, the imbalance module was used to explore the multi-factor-mediated anesthesia application mechanism, which provided new methods and ideas for subsequent research. The results suggest that miR-384-5p can promote anesthesia damage to the abalone basal ganglia neurons in rats through a variety of biological processes and signaling pathways. This result lays a solid theoretical foundation for biologists to explore the application mechanism of anesthesiology further."	"The integrative knowledge base for miRNA-mRNA expression in colorectal cancer. &quot;miRNA colorectal cancer&quot; (https://mirna-coadread.omics.si/) is a freely available web application for studying microRNA and mRNA expression and their correlation in colorectal cancer. To the best of our knowledge, &quot;miRNA colorectal cancer&quot; has the largest knowledge base of miRNA-target gene expressions and correlations in colorectal cancer, based on the largest available sample size from the same source of data. Data from high-throughput molecular profiling of 295 colon and rectum adenocarcinoma samples from The Cancer Genome Atlas was analyzed and integrated into our knowledge base. The objective of developing this web application was to help researchers to discover the behavior and role of miRNA-target gene interactions in colorectal cancer. For this purpose, results of differential expression and correlation analyses of miRNA and mRNA data collected in our knowledge base are available through web forms. To validate our knowledge base experimentally, we selected genes FN1, TGFB2, RND3, ZEB1 and ZEB2 and miRNAs hsa-miR-200a/b/c-3p, hsa-miR-141-3p and hsa-miR-429. Both approaches revealed a negative correlation between miRNA hsa-miR-200b/c-3p and its target gene FN1 and between hsa-miR-200a-3p and its target TGFB2, thus supporting the usefulness of the developed knowledge base."	"Hsa_circ_0000285 functions as a competitive endogenous RNA to promote osteosarcoma progression by sponging hsa-miRNA-599. Circular RNA (circRNA) is important in the pathogenesis of many diseases. By analyzing the GSE96964 microarray, hsa_circ_0000285 (circ-0000285) was found to be highly expressed in osteosarcoma. Recent studies have shown that circ-0000285 is capable of regulating proliferative and migratory potentials. Here, we investigated the potential functions in regulating osteosarcoma cells to proliferate and migrate. First of all, qRT-PCR data revealed a higher level of circ-0000285 in osteosarcoma cell lines relative to normal osteoblasts. Through dual-luciferase reporter gene assay and RIP assay, we confirmed that both circ-0000285 and TGFB2 could directly bind to miRNA-599. Regulatory effects of circ-0000285 and miRNA-599 on proliferative and migratory potentials were evaluated by EdU assay and transwell migration assay. It is indicated that circ-0000285 overexpression enhanced the proliferative and migratory potentials of osteosarcoma, which could be reversed by miRNA-599 overexpression. This study revealed a vital role of circ-0000285/miRNA-599/TGFB2 axis in regulating the progression of osteosarcoma, providing a novel perspective for clarifying its pathogenesis."	"Increased Cell Detachment Ratio of Mesenchymal-Type Lung Cancer Cells on pH-Responsive Chitosan through the β3 Integrin. Chitosan is sensitive to environmental pH values due to its electric property. This study investigates whether the pH-responsive chitosan assay can provide a simple method to evaluate the aggressive behavior of cancer cells with cell detachment ratio. The epithelial-mesenchymal transition (EMT) is induced with transforming growth factor-β1 (TGF-β1) in the human non-small cell lung cancer cell line (A549). EMT-induced cells and untreated cells are cultured on chitosan substrates at pH 6.99 for 24 h, followed by pH 7.65 for 1 h. The cell detachment ratio (CDR) on pH-responsive chitosan rises with an increasing of the TGF-β1 concentration. The protein array reveals that the expression levels of the α2, α3, α5, β2, and β3 integrins are higher in EMT-induced A549 cells than in untreated cells. A further inhibition assay shows that adding β3 integrin blocking antibodies significantly decreases the CDR of EMT-induced cells from 32.7 ± 5.7% to 17.8 ± 2.1%. The CDR of mesenchymal-type lung cancer cells increases on pH-responsive chitosan through the β3 integrin. Notably, the CDR can be theoretically predicted according to the individual CDR on the pH-responsive chitosan surface, irrespective of heterogeneous cell mixture. The pH-responsive chitosan assay serves as a simple in vitro model to investigate the aggressive behavior of lung cancer including the heterogeneous cell population."	"Arginine accelerates intestinal health through cytokines and intestinal microbiota. Arginine supplementation improves intestinal damage and intestinal immunity, but the underlying mechanism of the effects of arginine supplementation on intestinal SIgA secretion is largely unknown. Therefore, this study was conducted to investigate the underlying pathway on the effects of arginine supplementation in secretory IgA (SIgA) production in mice. The results showed that 0.4% arginine supplementation promoted (P &lt; 0.05) SIgA production in intestinal lumina and IgA<sup>+</sup> plasma cell numbers in the ileum of mouse. Arginine supplementation significantly increased (P &lt; 0.05) cytokines expression in mouse ileal associated with T cell-dependent and T cell-independent pathways of SIgA induction, including IL-5, IL-6, IL-13, transforming growth factor (TGF-)β2, TGF-β3, TGF-βR2, a proliferation-inducing ligand (APRIL), B cell-activating factor (BAFF), vasoactive intestinal peptide (VIP) receptor, and retinal dehydrogenases. Further study showed that 0.4% arginine supplementation markly decreased (P &lt; 0.05) bacterial loads in mouse mesenteric lymph nodes and increased bacterial invasion into the mouse ileal wall, while supplementation of antibiotic abrogated the influence of arginine supplementation on SIgA secretion. Therefore, these data suggest that arginine supplementation might promote SIgA secretion through cytokines and intestinal microbiota might play an important role in SIgA secretion by arginine supplementation in the mouse intestine."	"SNAI1 interacts with HDAC1 to control TGF‑β2‑induced epithelial‑mesenchymal transition in human lens epithelial cells. The opacity of the lens capsule after cataract surgery is caused by epithelial‑to‑mesenchymal transition (EMT) of lens epithelial cells. Snail family transcriptional repressor 1 (SNAI1) is a transcriptional repressor that recruits multiple chromatin enzymes including lysine‑specific histone demethylase 1A, histone deacetylase (HDAC) 1/2, polycomb repressive complex 2, euchromatic histone lysine methyltransferase 2 and suppressor of variegation 3‑9 homolog 1 to the E‑cadherin promoter, thereby suppressing E‑cadherin expression. However, the functional relationship between SNAI1 and HDAC in the induction of EMT in human lens epithelial cells (HLECs) is still unclear. Therefore, the objective of the present study was to explore the possible functional relationship between SNAI1 and HDAC1 in the induction of EMT in HLECs. In the present study, SNAI1 was found to be increased in HLECs during transforming growth factor‑β2 (TGF‑β2)‑induced EMT. Knockdown of SNAI1 by siRNA reversed TGF‑β2‑induced downregulation of E‑cadherin and upregulation of α‑Smooth Muscle Actin. Furthermore, SNAI1 was found to be associated with HDAC1 in the E‑cadherin promoter in TGF‑β2‑treated HLECs. Inhibition of HDAC by trichostatin A and suberoylanilide hydroxamic acid could prevent TGF‑β2‑induced EMT in HLECs. Collectively, SNAI1 interacted with HDAC1 to repress E‑cadherin in the TGF‑β2‑induced EMT in HLECs, suggesting that HDAC inhibitors may have potential therapeutic value for the prevention of EMT in HLECs."	"Pharmacological Targeting of BET Bromodomains Inhibits Lens Fibrosis via Downregulation of MYC Expression. Lens fibrosis involves aberrant growth, migration, and transforming growth factorβ (TGFβ)-induced epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs). In this study, we investigated the role of the bromo- and extra-terminal domain (BET) inhibitor in lens fibrotic disorder to identify drug-based therapies. Rat lens explants, rabbit primary lens epithelial cells (rLECs), human lens explants and human SRA01/04 cells were treated with TGFβ2 in the presence or absence of the BET bromodomain inhibitor JQ1 or the MYC inhibitor 10058-F4. Proliferation was determined by MTS assay. Cell migration was measured by wound healing and transwell assays. The expression levels of fibronectin (FN), α-smooth muscle actin (α-SMA), E-cadherin, and phosphorylated downstream Smads were analyzed by Western blot, qRT-PCR, and immunocytochemical experiments. Transcriptome analysis was conducted to explore the molecular mechanism. Blockage of BET bromodomains with JQ1 significantly suppressed rLECs proliferation by inducing G1 cell cycle arrest. Furthermore, JQ1 attenuated TGFβ2-dependent upregulation of mesenchymal gene expression and phosphorylation of Smad2/3 during the progression of EMT, whereas E-cadherin expression was preserved. JQ1 repressed MYC expression, which was dose- and time-dependently upregulated by TGFβ2. Inhibiting MYC with either the small-molecule inhibitor 10058-F4 or genetic knockdown phenocopied the effects of JQ1 treatment. MYC overexpression partially reversed the JQ1-regulated EMT-related alteration of gene expression. Both JQ1 and 10058-F4 blocked the expression of TGFβ receptor II and integrin αv in rLECs and abolished TGFβ2-induced opacification and subcapsular plaque formation in rat lens explants. Our results demonstrate the antifibrotic role of JQ1 in maintaining the epithelial characteristics of LECs and blocking TGFβ2-induced EMT, possibly by downregulating MYC, thereby providing new avenues for treating lens fibrosis."	"NG2 glia regulate brain innate immunity via TGF-β2/TGFBR2 axis. Brain innate immunity is vital for maintaining normal brain functions. Immune homeostatic imbalances play pivotal roles in the pathogenesis of neurological diseases including Parkinson's disease (PD). However, the molecular and cellular mechanisms underlying the regulation of brain innate immunity and their significance in PD pathogenesis are still largely unknown. Cre-inducible diphtheria toxin receptor (iDTR) and diphtheria toxin-mediated cell ablation was performed to investigate the impact of neuron-glial antigen 2 (NG2) glia on the brain innate immunity. RNA sequencing analysis was carried out to identify differentially expressed genes in mouse brain with ablated NG2 glia and lipopolysaccharide (LPS) challenge. Neurotoxin 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine (MPTP)-treated mice were used to evaluate neuroinflammatory response in the presence or absence of NG2 glia. The survival of dopaminergic neurons or glial cell activation was evaluated by immunohistochemistry. Co-cultures of NG2 glia and microglia were used to examine the influence of NG2 glia to microglial activation. We show that NG2 glia are required for the maintenance of immune homeostasis in the brain via transforming growth factor-β2 (TGF-β2)-TGF-β type II receptor (TGFBR2)-CX3C chemokine receptor 1 (CX3CR1) signaling, which suppresses the activation of microglia. We demonstrate that mice with ablated NG2 glia display a profound downregulation of the expression of microglia-specific signature genes and remarkable inflammatory response in the brain following exposure to endotoxin lipopolysaccharides. Gain- or loss-of-function studies show that NG2 glia-derived TGF-β2 and its receptor TGFBR2 in microglia are key regulators of the CX3CR1-modulated immune response. Furthermore, deficiency of NG2 glia contributes to neuroinflammation and nigral dopaminergic neuron loss in MPTP-induced mouse PD model. These findings suggest that NG2 glia play a critical role in modulation of neuroinflammation and provide a compelling rationale for the development of new therapeutics for neurological disorders."	"Lowered Decorin With Aberrant Extracellular Matrix Remodeling in Aqueous Humor and Tenon's Tissue From Primary Glaucoma Patients. To evaluate the inflammatory cytokine, growth factors, extracellular matrix (ECM) remodeling genes, profibrotic and antifibrotic molecules in patients undergoing glaucoma filtration surgery (GFS). Additionally, the effect of preoperative antiglaucoma medications (AGMs) and postoperative bleb status were related to these parameters. Tenon's tissue and aqueous humour (AH) were collected from 207 patients undergoing GFS with primary open-angle glaucoma (POAG) (n = 77), primary angle-closure glaucoma (PACG) (n = 62), and cataract controls (n = 68). Monocyte chemoattractant protein-1 (MCP-1), connective tissue growth factor (CTGF), transforming growth factor β1/2 (TGF-β1/2), lysyl oxidase (LOX), lysyl oxidase L2 (LOXL2), elastin (ELN), collagen type 1 α 1 (COL1A1), secreted protein acidic and rich in cysteine (SPARC), α-smooth muscle actin (α-SMA), and decorin (DCN) were determined in tenon's tissue by real-time PCR and in AH using ELISA. A significant increase was observed in the transcripts of MCP-1, TGF-β2, and SPARC in POAG and PACG (P &lt; 0.05); CTGF, TGF-β1, LOX, LOXL2, ELN, COL1A1, and α-SMA in PACG (P &lt; 0.05) compared with control. DCN transcript was significantly decreased in POAG and PACG (P &lt; 0.05) compared with control. The protein levels of CTGF, TGF-β1/β2, ELN, SPARC, and LOXL2 was significantly elevated in POAG and PACG (P &lt; 0.05); DCN was decreased (P &lt; 0.05) compared with control. These parameters showed significant association with duration of preoperative AGMs and postoperative bleb status. This study demonstrates increased expression of growth factors and ECM molecules, both at protein and transcript levels in GFS patients. A decreased DCN in AH seems striking, and if restored might have a therapeutic role in minimizing postoperative scarring to improve GFS outcome."	"Bone Formation of Titanium Implant Surfaces Treated with Submicron Poly(lactide-co-glycolide)/Recombinant Human Transforming Growth Factor- β2 Particles by the Electrospray Method: An In Vivo Study. This study evaluated the effect of anodized titanium implants coated with submicron-sized poly(lactide-co-glycolide) (PLGA)/recombinant human transforming growth factor- β2 (rhTGF- β2) particles via electrospray on osseointegration in an in vivo model. An experimental group of anodized titanium implants coated with submicron PLGA/rhTGF-β2 particles by electrospray was compared topographically and histomorphometrically to noncoated anodized implants. Forty-eight anodized titanium implants were inserted into the tibias of 12 New Zealand rabbits. The histomorphometric specimens were prepared after sacrificing at 3 and 6 weeks after implant placement. Bone-to-implant contact percentage (BIC%) and bone area percentage (BA%) were calculated. The surface roughness and histomorphometric values were statistically analyzed, with a P value &lt; .05 defined as statistically significant. The implant surfaces showed a uniform submicron-sized coating of PLGA/rhTGF-β2 particles. There was no significant difference in surface roughness between the groups. Both BIC% and BA% of the three best consecutive threads in the experimental group (3 weeks postplacement) were significantly higher than those of the control group (P = .045 and P = .048, respectively), whereas only the BIC% of the three best consecutive threads of the experimental group (6 weeks postplacement) was higher than that of the control group (P = .033). None of the groups tested showed any statistically significant differences in these metrics along the total length of the implant. Within the limitations of this study, coating rhTGF-β2 on implants with the help of PLGA carriers by electrospray may have enhanced osseointegration during the early stage of implant healing period in in-vivo rabbit tibia model."	"The genetic variants in calcium signaling related genes influence anti-tuberculosis drug induced liver injury: A prospective study. Although many genetic variants related to anti-tuberculosis drug induced liver injury (ATDILI) have been identified, the prediction and personalized treatment of ATDILI have failed to achieve, indicating there remains an area for further exploration. This study aimed to explore the influence of single nucleotide polymorphisms (SNPs) in Bradykinin receptor B2 (BDKRB2), Teneurin transmembrane protein 2 (TENM2), transforming growth factor beta 2 (TGFB2), and solute carrier family 2 member 13 (SLC2A13) on the risk of ATDILI.The subjects comprised 746 Chinese tuberculosis (TB) patients. Custom-by-design 2x48-Plex SNPscanTM kit was employed to genotype 28 selected SNPs. The associations of SNPs with ATDILI risk and clinical phenotypes were analyzed according to the distributions of allelic and genotypic frequencies and different genetic models. The odds ratio (OR) with corresponding 95% confidence interval (CI) was calculated.Among subjects with successfully genotyped, 107 participants suffered from ATDILI during follow-up. In BDKRB2, patients with rs79280755 G allele or rs117806152 C allele were more vulnerable to ATDILI (PBonferronicorrection = .002 and .03, respectively). Rs79280755 increased the risk of ATDILI significantly whether in additive (OR = 3.218, 95% CI: 1.686-6.139, PBonferroni correction = .003) or dominant model (PBonferroni correction = .003), as well as rs117806152 (Additive model: PBonferroni correction = .05; dominant model: PBonferroni correction = .03). For TENM2, rs80003210 G allele contributed to the decreased risk of ATDILI (PBonferroni correction = .02), while rs2617972 A allele conferred susceptibility to ATDILI (PBonferroni correction = .01). Regarding rs2617972, significant findings were also observed in both additive (OR = 3.203, 95% CI: 1.487-6.896, PBonferroni correction = .02) and dominant model (PBonferroni correction = .02). Moreover, rs79280755 and rs117806152 in BDKRB2 significantly affected some laboratory indicators. However, no meaningful SNPs were observed in TGFB2 and SLC2A13.Our study revealed that both BDKRB2 and TENM2 genetic polymorphisms were interrogated in relation to ATDILI susceptibility and some laboratory indicators in the Western Chinese Han population, shedding a new light on exploring novel biomarkers and targets for ATDILI."	"Celastrol inhibits migration, proliferation and transforming growth factor-β2-induced epithelial-mesenchymal transition in lens epithelial cells. To investigate the mechanism of celastrol in inhibiting lens epithelial cells (LECs) fibrosis, which is the pathological basis of cataract. Human LEC line SRA01/04 was treated with celastrol and transforming growth factor-β2 (TGF-β2). Wound-healing assay, proliferation assay, flow cytometry, real-time polymerase chain reaction (PCR), Western blot and immunocytochemical staining were used to detect the pathological changes of celastrol on LECs. Then, we cultured Sprague-Dawley rat lens in medium as a semi-in vivo model to find the function of celastrol further. We found that celastrol inhibited the migration of LECs, as well as proliferation (P&lt;0.05). In addition, it induced the G2/M phase arrest by cell cycle-related proteins (P&lt;0.01). Moreover, celastrol inhibited epithelial-mesenchymal transition (EMT) by the blockade of TGF-β/Smad and Jagged/Notch signaling pathways. Our study demonstrates that celastrol could inhibit TGF-β2-induced lens fibrosis and raises the possibility that celastrol could be a potential novel drug in prevention and treatment of fibrotic cataract."	"Epithelial-Mesenchymal Transition-Related MicroRNAs and Their Target Genes in Colorectal Cancerogenesis. MicroRNAs of the miR-200 family have been shown experimentally to regulate epithelial-mesenchymal transition (EMT). Although EMT is the postulated mechanism of development and progression of colorectal cancer (CRC), there are still limited and controversial data on expression of miR-200 family and their target genes during CRC cancerogenesis. Our study included formalin-fixed paraffin-embedded biopsy samples of 40 patients (10 adenomas and 30 cases of CRC with corresponding normal mucosa). Expression of miR-141, miR-200a/b/c and miR-429 and their target genes (CDKN1B, ONECUT2, PTPN13, RND3, SOX2, TGFB2 and ZEB2) was analysed using quantitative real-time PCR. Expression of E-cadherin was analysed using immunohistochemistry. All miRNAs were down-regulated and their target genes showed the opposite expression in CRC compared to adenoma. Down-regulation of the miR-200 family at the invasive front in comparison to the central part of tumour was observed as well as a correlation of expression of miR-200b, CDKN1B, ONECUT2 and ZEB2 expression to nodal metastases. Expression of the miR-200 family and SOX2 also correlated with E-cadherin staining. These results suggest that the miR-200 family and their target genes contribute to progression of adenoma to CRC, invasive properties and development of metastases. Our results strongly support the postulated hypotheses of partial EMT and intra-tumour heterogeneity during CRC cancerogenesis."	"The Role of the TGF-β Superfamily in Myocardial Infarction. The members of the transforming growth factor β (TGF-β) superfamily are essential regulators of cell differentiation, phenotype and function, and have been implicated in the pathogenesis of many diseases. Myocardial infarction is associated with induction of several members of the superfamily, including TGF-β1, TGF-β2, TGF-β3, bone morphogenetic protein (BMP)-2, BMP-4, BMP-10, growth differentiation factor (GDF)-8, GDF-11 and activin A. This manuscript reviews our current knowledge on the patterns and mechanisms of regulation and activation of TGF-β superfamily members in the infarcted heart, and discusses their cellular actions and downstream signaling mechanisms. In the infarcted heart, TGF-β isoforms modulate cardiomyocyte survival and hypertrophic responses, critically regulate immune cell function, activate fibroblasts, and stimulate a matrix-preserving program. BMP subfamily members have been suggested to exert both pro- and anti-inflammatory actions and may regulate fibrosis. Members of the GDF subfamily may also modulate survival and hypertrophy of cardiomyocytes and regulate inflammation. Important actions of TGF-β superfamily members may be mediated through activation of Smad-dependent or non-Smad pathways. The critical role of TGF-β signaling cascades in cardiac repair, remodeling, fibrosis, and regeneration may suggest attractive therapeutic targets for myocardial infarction patients. However, the pleiotropic, cell-specific, and context-dependent actions of TGF-β superfamily members pose major challenges in therapeutic translation."	"Spatiotemporal Role of Transforming Growth Factor Beta 2 in Developing and Mature Mouse Hindbrain Serotonergic Neurons. Transforming growth factor betas are integral molecular components of the signalling cascades defining development and survival of several neuronal groups. Among TGF-β ligands, TGF-β2 has been considered as relatively more important during development. We have generated a conditional knockout mouse of the Tgf-β2 gene with knock-in of an EGFP reporter and subsequently a mouse line with cell-type specific deletion of TGF-β2 ligand from Krox20 expressing cells (i.e., in cells from rhombomeres r3 and r5). We performed a phenotypic analysis of the hindbrain serotonergic system during development and in adulthood, determined the neurochemical profile in hindbrain and forebrain, and assessed behavioural performance of wild type and mutant mice. Mutant mice revealed significantly decreased number of caudal 5-HT neurons at embryonic day (E) 14, and impaired development of caudal dorsal raphe, median raphe, raphe magnus, and raphe obscurus neurons at E18, a phenotype that was largely restored and even overshot in dorsal raphe of mutant adult mice. Serotonin levels were decreased in hindbrain but significantly increased in cortex of adult mutant mice, though without any behavioural consequences. These results highlight differential and temporal dependency of developing and adult neurons on TGF-β2. The results also indicate TGF-β2 being directly or indirectly potent to modulate neurotransmitter synthesis and metabolism. The novel floxed TGF-β2 mouse model is a suitable tool for analysing the in vivo functions of TGF-β2 during development and in adulthood in many organs."	"Signatures of selection for resistance to Haemonchus contortus in sheep and goats. Gastrointestinal nematode infection (GNI) is the most important disease affecting the small ruminant industry in U.S. The environmental conditions in the southern United States are ideal for the survival of the most pathogenic gastrointestinal nematode, Haemonchus contortus. Host genetic variation for resistance to H. contortus allows selective breeding for increased resistance of animals. This selection process increases the prevalence of particular alleles in sheep and goats and creates unique genetic patterns in the genome of these species. The aim of this study was to identify loci with divergent allelic frequencies in a candidate gene panel of 100 genes using two different approaches (frequentist and Bayesian) to estimate Fst outliers in three different breeds of sheep and goats exposed to H. contortus. Our results for sheep populations showed SNPs under selection in C3AR1, CSF3, SOCS2, NOS2, STAT5B, TGFB2 and IL2RA genes using frequentist and Bayesian approaches. For goats, SNPs in CD1D, ITGA9, IL12A, IL13RA1, CD86 and TGFB2 genes were under selection. Common signatures of selection in both species were observed in NOS2, TGFB2 and TLR4 genes. Directional selection was present in all SNPs evaluated in the present study. A total of 13 SNPs within 7 genes of our candidate gene panel related to H. contortus exposure were identified under selection in sheep populations. For goats, 11 SNPs within 7 genes were identified under selection. Results from this study support the hypothesis that resistance to H. contortus is likely to be controlled by many loci. Shared signatures of selection related to mechanisms of immune protection against H. contortus infection in sheep and goats could be useful targets in breeding programs aimed to produce resistant animals with low FEC."	"Interleukin-2 induces extracellular matrix synthesis and TGF-β2 expression in retinal pigment epithelial cells. Macular fibrosis is a vital obstacle of vision acuity improvement of age-related macular degeneration patients. This study was to investigate the effects of interleukin 2 (IL-2) on epithelial-mesenchymal transition (EMT), extracellular matrix (ECM) synthesis and transforming growth factor β2 (TGF-β2) expression in retinal pigment epithelial (RPE) cells. 10 μg/L IL-2 was used to induce fibrosis in RPE cells for various times. Western blot was used to detect the EMT marker α-smooth muscle actin (α-SMA), ECM markers fibronectin (Fn) and type 1 collagen (COL-1), TGF-β2, and the activation of the JAK/STAT3 and NF-κB signaling pathway. Furthermore, JAK/STAT3 and NF-κB signaling pathways were specifically blocked by WP1066 or BAY11-7082, respectively, and the expression of α-SMA, COL-1, Fn and TGF-β2 protein were detected. Wound healing and Transwell assays were used to measure cell migration ability of IL-2 with or without WP1066 or BAY11-7082. After induction of IL-2, the expressions of Fn, COL-1, TGF-β2 protein were significantly increased, and this effect was correlated with IL-2 treatment duration, while α-SMA protein expression did not change significantly. Both WP1066 and BAY11-7082 could effectively downregulate the expression of Fn, COL-1 and TGF-β2 induced by IL-2. What's more, both NF-κB and JAK/STAT3 inhibitors could suppress the activation of the other signaling pathway. Additionally, JAK/STAT3 inhibitor WP1066 and NF-κB inhibitor BAY 11-7082 could obviously decrease RPE cells migration capability induced by IL-2. IL-2 promotes cell migration, ECM synthesis and TGF-β2 expression in RPE cells via JAK/STAT3 and NF-κB signaling pathways, which may play an important role in proliferative vitreoretinopathy."	"Methylation Markers in Prostate Biopsies Are Prognosticators for Late Biochemical Recurrence and Therapy after Surgery in Prostate Cancer Patients. After diagnosis of prostate cancer is confirmed by a positive biopsy, the tumor may be surgically removed via radical prostatectomy (RP). However, many prostate cancer patients experience biochemical recurrence after surgery and/or undergo salvage radiotherapy or hormone therapy. Timely treatment is required to prevent the spread of disease in these cases, and biopsy tissue may hold potential for disease prognostication before surgery is ever performed. We previously developed a prognostic multigene methylation panel in RP specimens, including APC, CRIP3, HOXD3, and TGFB2. In the current study, this panel was applied to a cohort of biopsy specimens (n = 86), which were assessed for DNA methylation using the real-time quantitative PCR-based multiplex MethyLight. The biopsy-based methylation panel is significantly associated with biochemical recurrence when combined with the current clinical parameter of prostate-specific antigen (PSA) levels at diagnosis and is able to prognosticate the initiation of salvage radiotherapy, where it outperforms PSA, and/or hormone therapy after RP. In addition, this methylation panel is significantly associated with late recurrence occurring within 5 and 7 years after surgery, when combined with PSA at diagnosis. Combining DNA methylation and clinicopathologic markers at the biopsy stage will not only increase their prognostic ability but will also ensure effective patient management."	"Interaction of tumor cells and astrocytes promotes breast cancer brain metastases through TGF-β2/ANGPTL4 axes. Metastatic outcomes depend on the interactions of metastatic cells with a specific organ microenvironment. Our previous studies have shown that triple-negative breast cancer (TNBC) MDA-MB-231 cells passaged in astrocyte-conditioned medium (ACM) show proclivity to form brain metastases, but the underlying mechanism is unknown. The combination of microarray analysis, qPCR, and ELISA assay were carried out to demonstrate the ACM-induced expression of angiopoietin-like 4 (ANGPTL4) in TNBC cells. A stable ANGPTL4-knockdown MDA-MB-231 cell line was generated by ANGPTL4 short-hairpin RNA (shRNA) and inoculated into mice via left ventricular injection to evaluate the role of ANGPTL4 in brain metastasis formation. The approaches of siRNA, neutralizing antibodies, inhibitors, and immunoprecipitation were used to demonstrate the involved signaling molecules. We first found that ACM-conditioned TNBC cells upregulated the expression of ANGPTL4, a secreted glycoprotein whose effect on tumor progression is known to be tumor microenvironment- and tumor-type dependent. Knockdown of ANGPTL4 in TNBC MDA-MB-231 cells with shRNA decreased ACM-induced tumor cell metastatic growth in the brain and attributed to survival in a mouse model. Furthermore, we identified that astrocytes produced transforming growth factor-beta 2 (TGF-β2), which in part is responsible for upregulation of ANGPTL4 expression in TNBC through induction of SMAD signaling. Moreover, we identified that tumor cells communicate with astrocytes, where tumor cell-derived interleukin-1 beta (IL-1β) and tumor necrosis factor alpha (TNF-α) increased the expression of TGF-β2 in astrocytes. Collectively, these findings indicate that the invading TNBC cells interact with astrocytes in the brain microenvironment that facilitates brain metastases of TNBC cells through a TGF-β2/ANGPTL4 axis. This provides groundwork to target ANGPTL4 as a treatment for breast cancer brain metastases."	"Glucosamine impedes transforming growth factor β1-mediated corneal fibroblast differentiation by targeting Krüppel-like factor 4. Transforming growth factor (TGF) family members play important roles in the regulation of corneal integrity, and the pathogenesis of corneal fibrosis. Currently, there are no effective agents targeting TGF-β signaling to diminish corneal fibrosis. Glucosamine (GlcN), which is widely used in the treatment of osteoarthritis, abrogates the morphologic effects of TGF-β2 on retinal pigmented epithelial cells in a mouse disease model. Here, we sought to determine whether GlcN would exert beneficial effects against TGF-β1-induced corneal fibrosis. In human corneal fibroblasts (HCFs) treated with GlcN, the expression of Krüppel-like factor 4 (KLF4) and its downstream signaling effects were determined in the presence and absence of TGF-β1 using immunoblot analysis. We further explored GlcN inhibition of fibroblast-to-myofibroblast differentiation via KLF4 siRNA. The effect of cycloheximide on KLF4 protein levels with or without GlcN administration was assessed to determine whether GlcN affects the stability of the KLF4 protein. In HCFs, GlcN induced the expression of KLF4, which regulated the maturation and maintenance of the ocular surface. GlcN partially suppressed the TGF-β1-induced expression of alpha-smooth muscle actin (α-SMA) and reduced the collagen contraction capacity in HCFs, suggesting a decrease in fibroblast-to-myofibroblast differentiation. This effect appeared to be mediated through suppression of Smad2 phosphorylation and ERK-dependent signaling. The levels of KLF4 mRNA were increased by GlcN and decreased by TGF-β1 and the TGF-β1-induced α-SMA mRNA expression was upregulated when the KLF4 gene was silenced. GlcN also appeared to stabilize the KLF4 protein, reducing its turnover in corneal fibroblasts. These findings shed light on a novel mechanism by which GlcN suppresses TGF-β1-induced fibroblast-to-myofibroblast differentiation through the upregulation of KLF4 expression. Current strategies for treating corneal fibrosis were not effective. Elevating KLF4 levels through the use of GlcN might provide an effective alternative to alleviate the development and progression of corneal fibrosis."	"Intermittent compressive force promotes osteogenic differentiation in human periodontal ligament cells by regulating the transforming growth factor-β pathway. Mechanical force regulates periodontal ligament cell (PDL) behavior. However, different force types lead to distinct PDL responses. Here, we report that pretreatment with an intermittent compressive force (ICF), but not a continuous compressive force (CCF), promoted human PDL (hPDL) osteogenic differentiation as determined by osteogenic marker gene expression and mineral deposition in vitro. ICF-induced osterix (OSX) expression was inhibited by cycloheximide and monensin. Although CCF and ICF significantly increased extracellular adenosine triphosphate (ATP) levels, pretreatment with exogenous ATP did not affect hPDL osteogenic differentiation. Gene-expression profiling of hPDLs subjected to CCF or ICF revealed that extracellular matrix (ECM)-receptor interaction, focal adhesion, and transforming growth factor beta (TGF-β) signaling pathway genes were commonly upregulated, while calcium signaling pathway genes were downregulated in both CCF- and ICF-treated hPDLs. The TGFB1 mRNA level was significantly increased, while those of TGFB2 and TGFB3 were decreased by ICF treatment. In contrast, CCF did not modify TGFB1 expression. Inhibiting TGF-β receptor type I or adding a TGF-β1 neutralizing antibody attenuated the ICF-induced OSX expression. Exogenous TGF-β1 pretreatment promoted hPDL osteogenic marker gene expression and mineral deposition. Additionally, pretreatment with ICF in the presence of TGF-β receptor type I inhibitor attenuated the ICF-induced mineralization. In conclusion, this study reveals the effects of ICF on osteogenic differentiation in hPDLs and implicates TGF-β signaling as one of its regulatory mechanisms."	"Thrombospondin-2 is up-regulated by TGFβ2 and increases fibronectin expression in human trabecular meshwork cells. Elevated intraocular pressure (IOP) is a major risk factor for the development of primary open-angle glaucoma (POAG). This is from an increased aqueous humour (AH) outflow resistance through the trabecular meshwork (TM). The pathogenic mechanisms leading to the increase in TM outflow resistance are poorly understood but are thought to be from a dysregulation of the TM extracellular matrix (ECM) environment. ECM modification and turnover are crucial in regulating the resistance to aqueous outflow. ECM turnover is influenced by a complex interplay of growth factors such as transforming growth factors (TGFβ) family and matrix metalloproteinases (MMPs). Elevated TGFβ2 levels result in an increase in ECM deposition such as fibronectin leading to increased resistance. Fibronectin is a major component of TM ECM and plays a key role in its maintenance. Thrombospondins (TSP)-1 and -2 are important regulators of the ECM environment. TSP-1 has been implicated in the pathogenesis of POAG through activation of TGFβ2 within the TM. TSP-2 does not contain the catalytic domain to activate latent TGFβ, but is able to mediate the activities of MMP 2 and 9, thereby influencing ECM turnover. TSP-2 knock out mice show lower IOP levels compared to their wild type counterparts, suggesting the involvement of TSP-2 in the pathogenesis of POAG but its role in the pathogenesis of POAG remains unclear. The purpose of this study was to investigate the role of TSP-2 in trabecular meshwork ECM regulation and hence the pathogenesis of POAG. TSP-1 and TSP-2 expressions in immortalised glaucomatous TM cells (GTM3) and primary human non-glaucomatous (NTM) and glaucomatous cells (GTM) were determined by immunocytochemistry, immuno-blot analysis and qPCR following treatment with TGFβ2 and Dexamethasone. The level of ECM protein fibronectin was determined in TM cells using immuno-blot analysis following treatment with TSP-1 or -2. TM cells secrete TSP-1 and -2 under basal conditions at the protein level and TSP-2 mRNA and protein levels were increased in response to TGFβ2 three days post treatment. Exogenous treatment with TSP-2 up-regulated the expression of fibronectin protein in GTM3 cells, primary NTM and GTM cells. TSP-1 did not affect fibronectin protein levels in GTM3 cells. This suggests that the role of TSP-2 might be distinct from that of TSP-1 in the regulation of the TM cell ECM environment. TSP-2 may be involved in the pathogenesis of POAG and contribute to increased IOP levels by increasing the deposition of fibronectin within the ECM in response to TGFβ2."	"Fibrosis Mediators in the Colonic Mucosa of Acute and Healed Ulcerative Colitis. A healed intestinal mucosa is the aim of therapy in acute ulcerative colitis (UC). Disruption of mucosal wound healing may lead to severe complications including intestinal fibrosis. This study examined mucosal gene expression in the healing process of acute UC with a special focus on known mediators of fibrosis. Endoscopic biopsies from patients with acute, moderate to severe UC were analyzed with a quantitative polymerase chain reaction array for 84 genes involved in fibrosis pathways. All patients were treated with infliximab (anti- tumor necrosis factor). Biopsies were taken before therapy and when disease remission was reached, defined as a Mayo score of ≤2, with an endoscopic subscore of 0 or 1. A healthy control group was included. Immunostaining of matrix metallopeptidase 9 and smooth muscle actin was performed. Mucosal biopsies from acute UC (n = 28), remission UC (n = 28), and healthy controls (n = 13) were analyzed. Fibrosis and extracellular matrix-associated genes were upregulated in the endoscopically healed UC mucosa vs controls, with collagen type III alpha 1 chain, actin alpha 2, lysyl oxidase, TIMP metallopeptidase inhibitor 3, and caveolin 1 uniquely showing no overlap with acute disease. Pro- and antifibrotic mediators (interleukin [IL]13 receptor subunit alpha 2, IL1B, IL10, tumor necrosis factor, snail family transcriptional repressor 1, and C-C motif chemokine ligand 2) were upregulated in both acute and healed UC compared with controls. An attenuated pattern of the canonical transforming growth factor beta (TGFB) pathway was observed in acute UC and to a lesser extent in the healed mucosa, except for TGFB2, which was enhanced. The endoscopically healed mucosa of UC showed a persisting dysregulation of fibrosis-associated mediators compared with controls, including extracellular matrix remodeling, profibrotic cytokines, and TGFB signaling pathways."	"Potentiation of Glucagon-Like Peptide-2 Dynamics by Methotrexate Administration in Rat Small Intestine. The aim of this study was to clarify the relationship between chemotherapy-induced mucositis and endogenous glucagon-like peptide-2 (GLP-2) dynamics in the small intestine following treatment with either methotrexate or 5-fluorouracil. Rats were injected intraperitoneally with a single dose of either 50 mg/kg methotrexate or 100 mg/kg 5-fluorouracil. At 24 and 72 h after drug administration, ileal tissues and plasma were used to investigate GLP-2 dynamics. Administration of methotrexate caused moderate but not significant intestinal injury within 72 h, while administration of 5-fluorouracil caused severe injury in a time-dependent manner. Methotrexate significantly increased proglucagon mRNA expression and the number of anti-GLP-2 antibody-positive cells in the ileal tissue at 24 h after administration. Methotrexate also significantly induced GLP-2 receptor, insulin-like growth factor-1 (IGF-1), and transforming growth factor-β2 (TGF-β2) mRNA expression in ileal tissue. In contrast, 5-fluorouracil significantly inhibited proglucagon, GLP-2 receptor, IGF-1, and TGF-β2 mRNA expression as well as the number of anti-GLP-2 antibody-positive cells. Methotrexate slightly increased dipeptidyl peptidase IV (DPP-4) mRNA expression, whereas 5-fluorouracil significantly increased DPP-4 mRNA expression. These results suggest that potentiation of endogenous GLP-2 dynamics by methotrexate is associated with a mechanism that preserves gastrointestinal mucosal integrity at a moderate level."	"[Influence of fibrosis mediators on the outcomes of endoscopic endonasal dacryocystorhinostomy]. Fibrosis is the most important pathologic condition involved in undesirable outcomes of dacryocystorhinostomy. A number of biochemical factors are currently known to have an effect on wound healing by promoting excessive scarring. Isoforms of transforming growth factor β (TGF-β1) are considered the 'main' pro-fibrotic factor, but wound healing is also affected by other cytokines such as connective tissue growth factor (CTGF), which stimulates fibrosis, and fibroblast growth factor (FGF-2), which acts as antagonist to it. To investigate correlations between endoscopic endonasal dacryocystorhinostomy outcomes and certain mediators of fibrosis. The study included 45 cases of endoscopic endonasal dacryocystorhinostomy. The patients were grouped according to surgery outcome: patients with unsuccessful surgical treatment were assigned to group 1 (n=10); patients with successful surgical treatment - to group 2 (n=34). One patient was excluded from the study. Full-layer biopsy specimen were taken from patients' nasal mucosa before the surgery. TGF-β1, TGF-β2, TGF-β3, CTGF, FGF-2 concentrations were evaluated using ELISA and normalized by total protein concentration. Surgical failure was observed in 10 cases (22.72%). CTGF concentration was significantly correlated with negative outcome (p&lt;0.05) and was elevated in most specimen obtained from group 1. No significant correlation was noted between the concentrations of other evaluated cytokines in nasal mucosa specimens and the surgical outcome. The study found a correlation between CTGF concentration in nasal mucosa and dacryocystorhinostomy outcome, which supports the hypothesis suggested by several authors linking dacryocystorhinostomy failure with chronic inflammation in nasal mucosa. Введение. Фиброз является наиболее важным патологическим состоянием, приводящим к неудачному результату оперативного вмешательства при дакриоцисториностомии. В настоящее время известно множество биохимических факторов, оказывающих влияние на течение процесса заживления, активность которых может являться причиной избыточного рубцевания. 'Центральными' медиаторами фиброза считаются изоформы трансформирующего фактора роста (TGF-β), но в процессе заживления ран также участвуют и другие цитокины, такие как фактор роста соединительной ткани (CTGF), обладающий профибротическим действием, и фактор роста фибробластов (FGF-2), обладающий антифибротическим действием. Цель исследования - изучить корреляцию результата эндоназальной эндоскопической дакриоцисториностомии с концентрацией некоторых медиаторов фиброза. Материал и методы. В исследование было включено 45 случаев эндоназальной эндоскопической дакриоцисториностомии. В соответствии с результатом оперативного вмешательства пациентов разделили на две группы: в 1-ю группу (n=10) вошли пациенты с неблагоприятным результатом операции; во 2-группу (n=34) - пациенты с благоприятным результатом. Из исследования исключен 1 пациент. До начала оперативного вмешательства осуществляли забор полнослойных биоптатов слизистой оболочки полости носа. Исследование концентрации цитокинов TGF-β1, TGF-β2, TGF-β3, CTGF, FGF-2 выполняли методом твердофазного иммуноферментного анализа (ELISA) с последующей нормировкой показателей по содержанию общего белка. Результаты. Неблагоприятный результат оперативного вмешательства наблюдали в 10 (22,72%) случаях. Концентрация цитокина CTGF повышена у большинства пациентов 1-й группы и статистически значимо коррелировала с неблагоприятным результатом хирургического вмешательства (p&lt;0,05). Корреляции между результатом оперативного вмешательства и содержанием других исследованных цитокинов в образцах слизистой оболочки полости носа не обнаружено. Заключение. В настоящем исследовании выявлена корреляция между концентрацией цитокина CTGF в слизистой оболочке полости носа и результатом эндоназальной эндоскопической дакриоцисториностомии; это поддерживает выдвинутую рядом авторов гипотезу, что хроническое воспаление в полости носа обусловливает неблагоприятный результат оперативного вмешательства."	"Genotypic Categorization of Loeys-Dietz Syndrome Based on 24 Novel Families and Literature Data. Loeys-Dietz syndrome (LDS) is a connective tissue disorder first described in 2005 featuring aortic/arterial aneurysms, dissections, and tortuosity associated with craniofacial, osteoarticular, musculoskeletal, and cutaneous manifestations. Heterozygous mutations in 6 genes (TGFBR1/2, TGFB2/3, SMAD2/3), encoding components of the TGF-β pathway, cause LDS. Such genetic heterogeneity mirrors broad phenotypic variability with significant differences, especially in terms of the age of onset, penetrance, and severity of life-threatening vascular manifestations and multiorgan involvement, indicating the need to obtain genotype-to-phenotype correlations for personalized management and counseling. Herein, we report on a cohort of 34 LDS patients from 24 families all receiving a molecular diagnosis. Fifteen variants were novel, affecting the TGFBR1 (6), TGFBR2 (6), SMAD3 (2), and TGFB2 (1) genes. Clinical features were scored for each distinct gene and matched with literature data to strengthen genotype-phenotype correlations such as more severe vascular manifestations in TGFBR1/2-related LDS. Additional features included spontaneous pneumothorax in SMAD3-related LDS and cervical spine instability in TGFB2-related LDS. Our study broadens the clinical and molecular spectrum of LDS and indicates that a phenotypic continuum emerges as more patients are described, although genotype-phenotype correlations may still contribute to clinical management."	"HLA-B27 alters BMP/TGFβ signalling in Drosophila, revealing putative pathogenic mechanism for spondyloarthritis. The human leucocyte antigen (HLA)-B27 confers an increased risk of spondyloarthritis (SpA) by unknown mechanism. The objective of this work was to uncover HLA-B27 non-canonical properties that could explain its pathogenicity, using a new Drosophila model. We produced transgenic Drosophila expressing the SpA-associated HLA-B*27:04 or HLA-B*27:05 subtypes, or the non-associated HLA-B*07:02 allele, alone or in combination with human β2-microglobulin (hβ2m), under tissue-specific drivers. Consequences of transgenes expression in Drosophila were examined and affected pathways were investigated by the genetic interaction experiments. Predictions of the model were further tested in immune cells from patients with SpA. Loss of crossveins in the wings and a reduced eye phenotype were observed after expression of HLA-B*27:04 or HLA-B*27:05 in Drosophila but not in fruit flies expressing the non-associated HLA-B*07:02 allele. These HLA-B27-induced phenotypes required the presence of hβ2m that allowed expression of well-folded HLA-B conformers at the cell surface. Loss of crossveins resulted from a dominant negative effect of HLA-B27 on the type I bone morphogenetic protein (BMP) receptor saxophone (Sax) with which it interacted, resulting in elevated mothers against decapentaplegic (Mad, a Drosophila receptor-mediated Smad) phosphorylation. Likewise, in immune cells from patients with SpA, HLA-B27 specifically interacted with activin receptor-like kinase-2 (ALK2), the mammalian Sax ortholog, at the cell surface and elevated Smad phosphorylation was observed in response to activin A and transforming growth factor β (TGFβ). Antagonistic interaction of HLA-B27 with ALK2, which exerts inhibitory functions on the TGFβ/BMP signalling pathway at the cross-road between inflammation and ossification, could adequately explain SpA development."	"All-Trans Retinoic Acid Attenuates Fibrotic Processes by Downregulating TGF-β1/Smad3 in Early Diabetic Nephropathy. Diabetic nephropathy (DN) involves damage associated to hyperglycemia and oxidative stress. Renal fibrosis is a major pathologic feature of DN. The aim of this study was to evaluate anti-fibrogenic and renoprotective effects of all-trans retinoic acid (ATRA) in isolated glomeruli and proximal tubules of diabetic rats. Diabetes was induced by single injection of streptozotocin (STZ, 60 mg/Kg). ATRA (1 mg/Kg) was administered daily by gavage, from days 3-21 after STZ injection. ATRA attenuated kidney injury through the reduction of proteinuria, renal hypertrophy, increase in natriuresis, as well as early markers of damage such as β2-microglobulin, kidney injury molecule-1 (KIM-1), and neutrophil gelatinase-associated lipocalin (NGAL). The following parameters increased: macrophage infiltration, localization of alpha-smooth muscle actin (αSMA)-positive cells in renal tissue, and pro-fibrotic proteins such as transforming growth factor-β (TGF-β1), laminin beta 1 (LAM-β1), and collagens IV and I. Remarkably, ATRA treatment ameliorated these alterations and attenuated expression and nuclear translocation of Smad3, with increment of glomerular and tubular Smad7. The diabetic condition decreased expression of retinoic acid receptor alpha (RAR-α) through phosphorylation in serine residues mediated by the activation of c-Jun N-terminal kinase (JNK). ATRA administration restored the expression of RAR-α and inhibited direct interactions of JNK/RAR-α. ATRA prevented fibrogenesis through down-regulation of TGF-β1/Smad3 signaling."	"Human basal cell carcinoma: the induction of anagen hair follicle differentiation. Consistent with cancer stem cell driven pattern of growth, human basal cell carcinomas (BCCs) demonstrate differentiation along hair follicle (HF) lineages. To define the pattern of differentiation and therapeutic targets that promote BCC differentiation and therefore BCC cancer stem cell exhaustion. An alkaline phosphatase substrate kit was used to determine dermal papilla cells within the BCC stroma. Autonomous HF cycle-dependent gene expression was identified by analysis of the human homologues of a murine gene set (total 2289 genes) that is differentially expressed in hair cycle phases. The findings were validated by quantitative real-time PCR and immunofluorescence, as well as in vitro transforming growth factor (TGF)-β2 stimulation of BCC cancer stem cell colonies. As in the HF, keratin expression in the inner root sheath and matrix in BCC correlated with proliferative index and was tightly regulated, despite the absence of dermal papilla cells. Cross-species microarray analysis comparing human BCC and murine synchronous HF growth cycle datasets revealed 74% concordance with telogen differentiation compared with anagen (23%, P &lt; 0.01) and catagen (49%; P &lt; 0.01). Incomplete anagen differentiation within BCC was characterized by reduced expression of the anagen master regulator DLX3 (-5.5-fold), and increased expression of telogen-associated genes: AEBP1 (2.2-fold), DEFB8 (35.3-fold), MMP3 (106.0-fold) and MMP12 (12.9-fold). Restoration of dermal papilla signals by in vitro addition of TGF-β2 enhanced anagen differentiation. Our findings show that BCC cells differentiate along HF lineages and may be susceptible to exogenous HF cycle modulators."	"TGF-β2/Smad3 Signaling Pathway Activation Through Enhancing VEGF and CD34 Ameliorates Cerebral Ischemia/Reperfusion Injury After Isoflurane Post-conditioning in Rats. Evidence has shown the therapeutic potential of isoflurane (ISO) in cerebral stroke. The present study investigated the mechanism of ISO on vascular endothelial growth factor (VEGF) and CD34 expression in a rat model of stroke. Transient focal cerebral ischemia was established by middle cerebral artery occlusion (MCAO) for 1 h followed by reperfusion for 24 h in rats. ISO was administered for 1.5 h when the reperfusion was initiated. Neurologic deficit scores, infarct volumes, HE staining, Nissl staining, and TUNEL staining were evaluated at 24 h after reperfusion. The levels of transforming growth factor (TGF)-β2, Smad3, p-Smad3, VEGF, and CD34 proteins were detected by immunofluorescence (IF) staining and Western blot assay. Administration of ISO significantly reduced the neurologic deficit scores, infarct volumes, and damaged and apoptotic cells after cerebral ischemia/reperfusion (I/R) injury (P &lt; 0.05). Meanwhile, ISO post-conditioning significantly increased the expression levels of TGF-β2, p-Smad3, VEGF, and CD34 (P &lt; 0.05), whereas the expression of Smad3 showed no difference (P &gt; 0.05). However, Pirfenidone, a TGF-β2 inhibitor, decreased the expression levels of TGF-β2, p-Smad3, VEGF, and CD34 (P &lt; 0.05). Moreover, the protective effects of ISO post-conditioning were negated by the inhibitor. The present study indicated that ISO attenuates brain damage by activating the TGF-β2/Smad3 signaling pathway and increasing the protein expression of VEGF and CD34 in the rat MCAO model."	"Effects of Probiotic Supplementation on TGF-β1, TGF-β2, and IgA Levels in the Milk of Japanese Women: An Open-Label Pilot Study. Background: Dietary probiotics supplementation in lactating mothers may help prevent allergic disease in infants. However, owing to a lack of consistency in nutritional and safety outcomes associated with probiotics, this topic remains controversial. Methods: In this open-label pilot trial conducted between April 2013 and December 2013, we evaluated the safety of probiotic supplementation with 5 × 10<sup>9</sup> CFU of Lactobacillus casei LC5, 5 × 10<sup>9</sup> CFU of Bifidobacterium longum BG7, and 2 × 10<sup>8</sup> CFU of Bacillus coagulans SANK70258 in lactating women who exhibited allergies for 2 months (1-3 months postpartum); we also evaluated the effects of probiotic supplementation on transforming growth factor-β (TGF-β) and immunoglobulin A (IgA) levels in human milk. Participants self-selected to join the probiotic (n = 41; age [median (interquartile range [IQR]), y] 33 [27-39], body mass index [BMI] [median (IQR), kg/m<sup>2</sup>] 21.8 [19.5-22.8]) or no supplementation control group (n = 19; age [median (IQR), y] 33 [23-43], BMI [median (IQR), kg/m<sup>2</sup>) 19.6 [18.4-22.1]). Probiotics (three tablets) received were taken as daily supplements. Milk samples were collected at 1, 2, and 3 months postpartum, and TGF-β1, TGF-β2, and IgA levels were measured. Results: No adverse effects were observed in the probiotic group, according to the self-recorded diary during the study period. Milk IgA decreased with increasing postpartum months in both groups. In contrast, TGF- β1 and β2 were not affected by lactation periods, and showed different patterns over time between the two groups. TGF-β1, TGF-β1, and IgA levels were significantly correlated at baseline (respectively p &lt; 0.05). However, the correlation between TGF-β1 and IgA became non-significant by the end of the intervention (p = 0.063). Conclusion: Altogether, probiotic supplementation was tolerated with respect to no dropout and 91.5% adherence. Although probiotic supplementation might affect human milk TGF-β levels, a positive effect of probiotic supplementation was not entirely supported. Future placebo-controlled studies are needed to further support the efficacy and safety of probiotic supplementation. Clinical Trial Registration: www.umin.ac.jp/ctr/, identifier: UMIN000036059."	"[MicroRNA-328 regulates embryonic stem cells differentiation into insulin-producing cells by targeting TGF-β2 in vitro]. Objective: To explore the role and its molecular mechanism of miR-328 during the differentiation of embryonic stem cells (ESCs) into insulin-producing cells (IPCs) in vitro. Method: Mouse embryonic stem cell line-mESCs-Nanog-GFP was induced in conditioned medium and divided into negative control group, miR-328 agomir transfected group, miR-328 antagomir transfected group and transforming growth factor β2 (TGF-β2) siRNA transfected group. The function of IPCs was identified by real-time quantitative PCR (qPCR) detecting system and immunofluorescence in above-mentioned groups. Methods of qPCR, immunofluorescence and enzyme-linked immunosorbent assay (ELISA) were used to detect effects of overexpression and inhibition of miR-328 on differentiation of multilineage precursor cells. We predicted the binding sites of miR-328 and TGF-β2 by performing the bioinformatics analysis. Dual luciferase reporter gene and Western blotting were employed to identify the regulatory relationship between miR-328 and TGF-β2. Results: mESCs could be transfected with miR-328 agomir, with an efficacy of 70%-80%. Up-regulated miR-328 in MPCs reduced the RNA expression of several key transcription factors which were crucial for early pancreatic development. Additionally, the insulin released by IPCs decreased in response to glucose stimulation (all P&lt;0.05). However, overexpression of miR-328 led to the decrease of protein level of insulin and Nkx6.1 (all P&lt;0.05). Transfection of miR-328 antagomir had the opposite effects (P&lt;0.05). The dual luciferase reporter gene assay revealed that miR-328 functioned via binding to the 3' non-coding region (3'-UTR) of the TGF-β2. Western blotting indicated that miR-328 regulated protein expression. After knockdown of miR-328, the relative expression of TGF-β2 was 1.00±0.01. After co-transfection of miR-328 antagomir and TGF-β2 siRNA, the relative expression of TGF-β2 was 0.80±0.03. After downregulating TGF-β2, the relative expression of TGF-β2 was 0.20±0.01. Knockdown of TGF-β2 down-regulated the expression of early pancreatic transcription factors (P&lt;0.05) and inhibited Pdx1(+)cell differentiation. Conclusion: miR-328 can inhibit the differentiation of ESCs into IPCs via binding to 3' UTR of TGF-β2, and provide a new regulatory pathway for the treatment of diabetes with stem cells. 目的: 探讨miR-328在小鼠胚胎干细胞体外分化胰岛素分泌细胞过程中的调控作用及分子机制。 方法: 小鼠胚胎干细胞系mESCs-Nanog-GFP经条件培养基诱导后,分为阴性对照组、转染miR-328激动剂组、转染miR-328拮抗剂组和转染转化生长因子β2(TGF-β2)小干扰RNA组。通过实时荧光定量PCR(qPCR)、免疫荧光鉴定胰岛素分泌细胞功能;qPCR、免疫荧光及酶联免疫吸附(ELISA)检测多系前体细胞过表达及抑制miR-328对胰岛素分泌细胞分化的影响;生信分析预测miR-328与TGF-β2结合位点,双荧光素酶报告基因及Western印迹法验证两者调控关系。 结果: miR-328激动剂可成功转染小鼠胚胎干细胞,转染效率为70%~80%,使胰岛功能相关基因表达均有不同程度下降,且葡萄糖刺激胰岛素释放量减少,胰岛素、NK6同源盒1蛋白表达下降(均P&lt;0.05);转染miR-328拮抗剂上调胰岛功能相关基因及转录因子表达(均P&lt;0.05)。双荧光素酶报告基因实验发现miR-328可结合至TGF-β2的3′端非编码区(3′-UTR),Western印迹检测显示转染miR-328拮抗剂组TGF-β2蛋白相对表达量1.00±0.01,共转染miR-328拮抗剂组和TGF-β2小干扰RNA组蛋白相对表达量0.80±0.03,转染TGF-β2小干扰RNA组蛋白相对表达量0.20±0.01。敲降TGF-β2下调胰腺早期转录因子表达(P&lt;0.05),抑制Pdx1(+)细胞分化。 结论: miR-328能够靶向TGF-β2抑制小鼠胚胎干细胞向胰岛素分泌细胞的分化,为糖尿病干细胞治疗提供了新的调控途径。."	"Quercetin alleviates rat osteoarthritis by inhibiting inflammation and apoptosis of chondrocytes, modulating synovial macrophages polarization to M2 macrophages. Osteoarthritis (OA) is a progressive joint disorder that is primarily characterized by the degeneration and destruction of the articular cartilage. Cartilage matrix degradation, production of proinflammatory mediators, chondrocyte apoptosis and activation of macrophages in the synovial are involved in OA pathogenesis. Current non-surgical therapies for OA mainly aim at relieving pain but can barely alleviate the progression of OA. Quercetin, a naturally occurring flavonoid has shown potent anti-inflammatory effects, however, its effects and underlying mechanisms on OA have seldom been systematically illuminated. In this study, we explored the protective effects of quercetin on repairing OA-induced cartilage injuries and its possible mechanisms. In vitro, quercetin remarkably suppressed the expression of matrix degrading proteases and inflammatory mediators, meantime promoted the production of cartilage anabolic factors in interleukin-1β-induced (IL-1β) rat chondrocytes. In addition, quercetin exhibited anti-apoptotic effects by decreasing intracellular reactive oxygen species (ROS), restoring mitochondrial membrane potential (MMP) and inhibiting the Caspase-3 pathway in apoptotic rat chondrocytes. Moreover, quercetin induced M2 polarization of macrophages and upregulated the expression of transforming growth factor β (TGF-β) and insulin-like growth factor (IGF), which in turn created a pro-chondrogenic microenvironment for chondrocytes and promoted the synthesis of glycosaminoglycan (GAG) in chondrocytes. In vivo, intra-articular injection of quercetin alleviated the degradation of the cartilage and the apoptosis of chondrocytes in a rat OA model. Moreover, the expression of TGF-β1 and TGF-β2 in the synovial fluid and the ratio of M2 macrophages in the synovial membrane were elevated. In summary, our study proves that quercetin exerts chondroprotective effects by inhibiting inflammation and apoptosis of chondrocytes, modulating synovial macrophages polarization to M2 macrophages and creating a pro-chondrogenic environment for chondrocytes to enhance cartilage repair under OA environment. It is suggested that quercetin may serve as a potential drug for OA treatment."	"Transforming Growth Factor-β Receptor Internalization via Caveolae Is Regulated by Tubulin-β2 and Tubulin-β3 during Endothelial-Mesenchymal Transition. Fibrotic disorders, which are caused by long-term inflammation, are observed in numerous organs. These disorders are regulated mainly through transforming growth factor (TGF)-β family proteins by a fundamental cellular mechanism, known as the endothelial-mesenchymal transition. Therefore, there is a pressing need to identify the mechanisms and potential therapeutic targets that enable the inhibition of endothelial transdifferentiation. This study is the first to demonstrate that glycosylation of tubulin-β2 and tubulin-β3 in microtubules enhances sensitivity to TGF-β1 stimulation in human microvascular endothelial cells. We observed that the microtubules enriched in glycosylated tubulin-β2 and tubulin-β3 were necessary for caveolae-dependent TGF-β receptor internalization. Post-translational modulation is critical for the generation of myofibroblasts through endothelial-mesenchymal transition during fibrosis development. We suggest that microtubule glycosylation may become the target of new effective therapies for patients with recognized fibrotic diseases."	"KLF4 prevents epithelial to mesenchymal transition in human corneal epithelial cells via endogenous TGF-β2 suppression. Krüppel-like factor 4 (KLF4) is considered one of the Yamanaka factors, and recently, we and others have shown that KLF4 is one of the transcription factors essential for reprogramming non-human corneal epithelial cells (HCECs) into HCECs. Since epithelial to mesenchymal transition (EMT) suppression is vital for homeostasis of HCECs via regulation of transcription factors, in this study, we aimed to investigate whether KLF4 prevents EMT in HCECs and to elucidate the underlying mechanism within the canonical TGF-β signalling pathway, which is involved in corneal epithelial wound healing. HCECs were collected from cadaver donors and cultivated. We generated KLF4-knockdown (KD) HCECs using siRNA transfection and analysed morphology, gene or protein expression, and endogenous TGF-β secretion. KLF4 was overexpressed using lentiviral KLF4 expression vectors and underwent protein expression analyses after TGF-β2 treatment. KLF4-KD HCECs showed a fibroblastic morphology, downregulation of the epithelial markers, keratin 12 and keratin 14, and upregulation of the mesenchymal markers, fibronectin 1, vimentin, N-cadherin, and SLUG. Although E-cadherin expression remained unchanged in KLF4-KD HCECs, immunocytochemical analysis showed that E-cadherin-positive adherens junctions decreased in KLF4-KD HCECs as well as the decreased total protein levels of E-cadherin analysed by immunoblotting. Moreover, within the TGF-β canonical signalling pathway, TGF-β2 secretion by HCECs increased up to 5 folds, and several TGF-β-associated markers (TGFB1, TGFB2, TGFBR1, and TGFBR2) were significantly upregulated up to 6 folds in the KLF4-KD HCECs. SMAD2/3, the main signal transduction molecules of the TGF-β signalling pathway, were found to be localised in the nucleus of KLF4-KD HCECs. When KLF4 was overexpressed, cultivated HCECs showed upregulation of epithelial markers, keratin 14 and E-cadherin, indicating the contributory role of KLF4 in the homeostasis of human corneal epithelium in vivo. In addition, KLF4 overexpression in HCECs resulted in decreased SMAD2 phosphorylation and altered nuclear localisation of SMAD2/3, even after TGF-β2 treatment. These results show that KLF4 prevents EMT in HCECs and suggest a novel role of KLF4 as an endogenous TGF-β2 suppressor in the human corneal epithelium, thus highlighting the potential of KLF4 to prevent EMT and subsequent corneal fibrotic scar formation by attenuating TGF-β signalling."	"The TGFB2-AS1 lncRNA Regulates TGF-β Signaling by Modulating Corepressor Activity. Molecular processes involving lncRNAs regulate cell function. By applying transcriptomics, we identify lncRNAs whose expression is regulated by transforming growth factor β (TGF-β). Upon silencing individual lncRNAs, we identify several that regulate TGF-β signaling. Among these lncRNAs, TGFB2-antisense RNA1 (TGFB2-AS1) is induced by TGF-β through Smad and protein kinase pathways and resides in the nucleus. Depleting TGFB2-AS1 enhances TGF-β/Smad-mediated transcription and expression of hallmark TGF-β-target genes. Increased dose of TGFB2-AS1 reduces expression of these genes, attenuates TGF-β-induced cell growth arrest, and alters BMP and Wnt pathway gene profiles. Mechanistically, TGFB2-AS1, mainly via its 3' terminal region, binds to the EED adaptor of the Polycomb repressor complex 2 (PRC2), promoting repressive histone H3K27me<sup>3</sup> modifications at TGF-β-target gene promoters. Silencing EED or inhibiting PRC2 methylation activity partially rescues TGFB2-AS1-mediated gene repression. Thus, the TGF-β-induced TGFB2-AS1 lncRNA exerts inhibitory functions on TGF-β/BMP signaling output, supporting auto-regulatory negative feedback that balances TGF-β/BMP-mediated responses."	"Resveratrol Inhibits Wound Healing and Lens Fibrosis: A Putative Candidate for Posterior Capsule Opacification Prevention. Posterior capsule opacification (PCO) is a common complication of cataract surgery. In addition to improved surgical methods and IOL designs, it is likely additional agents will be needed to improve patient outcomes. Presently no pharmacological agent is in clinical use to prevent PCO. Here we investigate the putative ability of resveratrol (RESV), a naturally occurring polyphenol, as a therapeutic agent. The human lens epithelial cell line FHL124, a human lens capsular bag model, and central anterior epithelium were used as experimental systems. Standard culture was in 5% fetal calf serum Eagle's minimum essential medium; 10 ng/mL transforming growth factor-β2 (TGFβ2) was used to induce fibrotic changes. A scratch wound assay was used to measure cell migration and the patch assay was used to assess matrix contraction by FHL124 cells. Protein expression was assessed by immunocytochemistry and Western blot and gene expression by quantitative RT-PCR. In capsular bags, cell growth across the posterior lens capsule, capsular wrinkling, and epithelial-to-mesenchymal transition were determined by image analysis. In FHL124 cells, addition of 30 μM RESV significantly impeded cell migration in a wound-healing assay. RESV significantly inhibited TGFβ2-induced expression of the myofibroblast marker alpha-smooth muscle actin (α-SMA) at both the message and protein levels, as well as significantly inhibiting matrix contraction induced by TGFβ2. In human capsular bags, 30 μM RESV significantly inhibited cell growth. TGFβ2-induced α-SMA expression and capsular wrinkling were also significantly inhibited by RESV treatment. RESV significantly suppressed expression of TGFβ2-induced genes associated with fibrotic disease, including matrix metalloproteinase-2 in FHL124 cells, capsular bags, and central anterior epithelium. RESV can counter PCO-related physiological events in two human lens model systems. RESV therefore has the potential to be used as a candidate agent for the prevention of PCO, which in turn could benefit millions of cataract patients."	"Role of TGF‑β in the motility of ShcD‑overexpressing 293 cells. The newly identified Src homology and collagen (Shc) family member ShcD was observed to be upregulated in 50% of vertical growth phase and metastatic melanomas. The aim of the present study was to investigate the mechanism by which ShcD mediates cell motility. 293 cell lines were altered to stably express GFP (GF) or GFP‑ShcD (G5). Treatment of the cells with transforming growth factor (TGF)β2 promoted extracellular signal‑regulated kinase (ERK) phosphorylation and, to a lesser extent, Smad2 phosphorylation in GFP‑ShcD‑expressing cells but not in GFP‑overexpressing cells. GFP‑ShcD‑expressing cells exhibited upregulated expression of certain epithelial‑mesenchymal transition‑related genes, such as snail family transcriptional repressor 1 and SLUG, than GFP‑expressing cells. Higher levels of ERK were found in the nuclear fraction of GFP‑ShcD‑expressing cells than that of GFP‑expressing cells. Overall, GFP‑ShcD‑expressing cells demonstrated enhanced migration compared with GFP‑expressing cells. A slight increase in cell migration was observed in both cell lines (GF and G5) when the cells were allowed to migrate towards conditioned medium derived from TGFβ2‑treated GFP‑ShcD expressing cells. Collectively, ShcD upregulation was proposed to induce cell migration by affecting the expression of certain epithelial‑mesenchymal transition‑related genes. Thus, our findings may improve understanding of the role of ShcD in cell migration."	"DNA methyltransferase inhibitor suppresses fibrogenetic changes in human conjunctival fibroblasts. This study aimed to clarify the effects of a DNA methyltransferase inhibitor on fibrogenetic changes in human conjunctival fibroblasts (HConF). HConF were pretreated with the DNA methyltransferase inhibitor 5-aza-2'-deoxycytidine (5-Aza-dC) for 48 h. After one passage, the cells were treated with 5 ng/ml of transforming growth factor (TGF)-β2 for 48 h, and the expression levels of α-smooth muscle actin (α-SMA), extracellular matrix proteins, and phosphorylated Smad3 were evaluated with western blotting. A fusion construct between the COL1A2 promoter and the luciferase gene was introduced into the HConF after the first passage, and the construct's activity was detected via a luciferase reporter gene assay. TGF-β2-induced upregulation of α-SMA was suppressed by pretreatment with 5-Aza-dC (0.1, 1.0, and 10 μM) in a dose-dependent manner. Upregulation of type I collagen was also suppressed by 10 μM 5-Aza-dC pretreatment. In contrast, 5-Aza-dC had no inhibitory effect on the expression of fibronectin or phosphorylated Smad3. However, COL1A2 promoter activity was suppressed with 5-Aza-dC pretreatment. In HConF, fibrogenetic changes were partly suppressed with a DNA methyltransferase inhibitor, suggesting an indirect inhibitory effect of the inhibitor on the COL1A2 promoter in HConF."	"Reduced matrix metalloproteinase and collagen transcription mediated by the TGF-β/Smad pathway in passaged normal human dermal fibroblasts. Transforming growth factor-β (TGF-β) is a major regulator of extracellular matrix (ECM) events, particularly collagen production. We explored whether the expression of matrix metalloproteinases (MMPs) and collagen are transcriptionally regulated by the TGF-β and Smad signaling pathways, and the roles played by NF-κB and mitogen-activated protein kinase (MAPK) signaling in normal, aged, human dermal fibroblasts. We quantified mRNA and protein expression using real-time PCR and immunoblotting of proteins from cells in passage 5-15. The levels of mRNAs encoding TGF-β1, TGF-β3, and TGF-β receptor type I (TGFβ RI) decreased with increasing passage number. The levels of mRNAs encoding TGF-β2, TGFβ RII, and TGFβ RIII increased to passage 10 but decreased by passage 15. The levels of mRNAs encoding Smad-2, -3, -4, and -7 decreased with increasing passage number. The level of mRNA encoding MMP-1 increased with increasing passage number, and the levels of mRNAs encoding MMP-2, TIMP-1, and TIMP-2 increased to passage 10 but decreased by passage 15. The levels of mRNAs encoding collagen types I and II decreased with increasing passage number. At the protein level, NF-κB, IκBα, p38, ERK, Akt, and JNK became increasingly phosphorylated at higher passage numbers. Our results suggest that reductions in the expression levels of MMPs and collagen types I and III in aging human dermal fibroblasts reflect reduced expression of TGF-β/Smad and TGF-β receptors, thus compromising the TGF-β receptor-binding capacity of fibroblasts; the NF-κB and Akt-JNK/MAPK signaling pathways may play active roles in this process."	"Differentiation of equine induced pluripotent stem cells into mesenchymal lineage for therapeutic use. In previous work, we established an equine induced pluripotent stem cell line (E-iPSCs) from equine adipose-derived stem cells (ASCs) using a lentiviral vector encoding four transcription factors: Oct4, Sox2, Klf4, and c-Myc. In the current study, we attempted to differentiate these established E-iPSCs into mesenchymal stem cells (MSCs) by serial passaging using MSC-defined media for stem cell expansion. Differentiation of the MSCs was confirmed by analyzing expression levels of the MSC surface markers CD44 and CD29, and the pluripotency markers Nanog and Oct4. Results indicated that the E-iPSC-derived MSCs (E-iPSC-MSCs) retained the characteristics of MSCs, including the ability to differentiate into chondrogenic, osteogenic, or myogenic lineages. E-iPSC-MSCs were rendered suitable for therapeutic use by inhibiting immune rejection through exposure to transforming growth factor beta 2 (TGF-β2) in culture, which down-regulated the expression of major histocompatibility complex class I (MHC class I) proteins that cause immune rejection if they are incompatible with the MHC antigen of the recipient. We reported 16 cases of E-iPSC-MSC transplantations into injured horses with generally positive effects, such as reduced lameness and fraction lines. Our findings indicate that E-iPSC-MSCs can demonstrate MSC characteristics and be safely and practically used in the treatment of musculoskeletal injuries in horses."	"Hepatocyte Stress Increases Expression of Yes-Associated Protein and Transcriptional Coactivator With PDZ-Binding Motif in Hepatocytes to Promote Parenchymal Inflammation and Fibrosis. Activated hepatocytes are hypothesized to be a major source of signals that drive cirrhosis, but the biochemical pathways that convert hepatocytes into such a state are unclear. We examined the role of the Hippo pathway transcriptional coactivators Yes-associated protein (YAP) and transcriptional coactivator with PDZ-binding motif (TAZ) in hepatocytes to facilitate cell-cell interactions that stimulate liver inflammation and fibrosis. Using a variety of genetic, metabolic, and liver injury models in mice, we manipulated Hippo signaling in hepatocytes and examined its effects in nonparenchymal cells to promote liver inflammation and fibrosis. YAP-expressing hepatocytes rapidly and potently activate the expression of proteins that promote fibrosis (collagen type I alpha 1 chain, tissue inhibitor of metalloproteinase 1, platelet-derived growth factor c, transforming growth factor β2) and inflammation (tumor necrosis factor, interleukin 1β). They stimulate expansion of myofibroblasts and immune cells, followed by aggressive liver fibrosis. In contrast, hepatocyte-specific YAP and YAP/TAZ knockouts exhibit limited myofibroblast expansion, less inflammation, and decreased fibrosis after CCl4 injury despite a similar degree of necrosis as controls. We identified cellular communication network factor 1 (CYR61) as a chemokine that is up-regulated by hepatocytes during liver injury but is expressed at significantly lower levels in mice with hepatocyte-specific deletion of YAP or TAZ. Gain-of-function and loss-of-function experiments with CYR61 in vivo point to it being a key chemokine controlling liver fibrosis and inflammation in the context of YAP/TAZ. There is a direct correlation between levels of YAP/TAZ and CYR61 in liver tissues of patients with high-grade nonalcoholic steatohepatitis. Liver injury in mice and humans increases levels of YAP/TAZ/CYR61 in hepatocytes, thus attracting macrophages to the liver to promote inflammation and fibrosis."	"[Proteomic analysis of aqueous humor in acute primary angle-closure glaucoma]. Objective: To analyze the difference among expression of aqueous humor proteins in acute primary angle-closure glaucoma (APACG). Methods: Case-control study. The patients with APACG combined cataract (APACG with cataract group) and patients with cataract (cataract group), who had undertaken surgical treatment at the Tianjin Medical University Eye Hospital from October 2016 to June2017 were collected. Upon receipt of patient's consent, 50 μl of aqueous humor were collected with 1 ml syringe and No.1 needle through the surgical access during the surgery, and then injected into a sterile collection tube to be stored at -80 ℃. Those proteins extracted from aqueous humor were analyzed by quantitative proteomic mass spectrometry. The differential significance test was performed by Maxquant significances A approach. The differential proteins of the two groups were screened and determined with the conditions of P&lt;0.05 and difference multiple&gt;2. The functions and signal pathway of differential proteins in aqueous humor were annotated in biological big data, on the basis gene ontology (GO) and the Kyoto gene and genomic encyclopedia (KEGG) analyses. Results: There were 3 males and 7 females with an average age of (68±6) years in the APACG group. The cataract group included 2 males and 8 females with an average age of (71±8) years. There were no statistical differences in gender ratio and age between the two groups (both P&gt;0.05). A total of 91 differential proteins were detected in this experiment, including 50 up-regulated proteins (annexinA1, vimentin, S100 calcium binding protein A8, interleukin 6, C reactive protein, laminin β2, etc.) and 41 down-regulated (keratin 85, γ-crystallin D, syntaxin-binding protein 5, semaphoring 4B, matrilin 2, cathepsin O, cadherin 4, semaphoring 3B, platelet-derived growth factor D, transforming growth factor β, etc.). On one hand, the functions of differential proteins involved in many aspects. AnnexinA1, CD163, S100 calcium-binding protein A8, C reactive protein, interleukin 6 are involved in the inflammatory reaction, cadherin 4 and laminin β2 regulate cell adhesion, matrilin 2, vimentin and laminin β2 participate in tissue fibrosis; on the other hand, KEGG analysis showed that the differential proteins participate diverse signaling pathways such as phosphatidylinositol-3-kinase-protein kinase B signaling pathway, transformation growth factor β signaling pathway, mitogen activated protein kinase signaling pathway, Toll-like receptor signaling pathway, the nuclear factor κ-light chain enhancer of the activated B cells signaling pathway, focal adhension and extracellular matrix receptor interaction pathway and so on. Conclusions: The expression of annexin A1 is significantly up-regulated in the aqueous humor in APACG, while some other factors such as transformation growth factor β, cadherin-4, and matrilin 2 are down-regulated. The change of proteins in aqueous humor is related with the outbreak of APACG. (Chin J Ophthalmol, 2019, 55: 687-694). 目的: 分析急性原发性闭角型青光眼(APACG)急性发作期房水蛋白表达差异。 方法: 病例对照研究。收集2016年10月至2017年6月在天津医科大学眼科医院拟手术治疗的APACG急性发作期合并白内障患者(APACG合并白内障组)与白内障患者(白内障组)各10例(10只眼)。征得患者知情同意后,术中借助手术通道用1号针头接1 ml针筒进入前房中部吸取50 μl房水,注入无菌收集管中,-80 ℃保存。通过非标记定量蛋白质组学质谱分析技术分析房水中提取的蛋白,采用Maxquant significances A的方法进行差异显著性检验,以P&lt;0.05、差异倍数&gt;2的标准筛选得到两组患者的差异蛋白,并将生物学大数据通过基因本体(GO)功能分析、京都基因与基因组百科全书(KEGG)信号通路显著性富集分析对两组患者房水差异蛋白的功能及调控的信号通路加以注解。 结果: APACG合并白内障组男性3例,女性7例,年龄(68±6)岁;白内障组男性2例,女性8例,年龄(71±8)岁,两组性别分布及年龄差异均无统计学意义(均P&gt;0.05)。蛋白质组学分析显示与白内障组比,APACG合并白内障组房水中共检测到91个差异蛋白,包括50个上调蛋白(如膜联蛋白A1、波形蛋白、S100钙结合蛋白A8、白细胞介素6、C反应蛋白、层黏连蛋白β2等)和41个下调蛋白(如角蛋白85、γ-晶状体蛋白D、突触结合蛋白5、脑信号蛋白4B、母系蛋白2、组织蛋白酶O、钙黏蛋白4、脑信号蛋白3B、血小板衍生生长因子D、转化生长因子β等)。GO分析显示两组房水中差异蛋白功能涉及诸多方面,其中膜联蛋白A1、CD163、S100钙结合蛋白A8、C反应蛋白、白细胞介素6参与炎性反应,钙黏蛋白4、层黏连蛋白β2介导细胞黏附,母系蛋白2、波形蛋白、层黏连蛋白β2等参与组织纤维化。KEGG显著性富集分析显示两组房水中差异蛋白主要参与磷脂酰肌醇3-激酶-蛋白激酶B信号通路、转化生长因子β相关信号通路、丝裂原活化蛋白激酶信号通路、Toll样受体信号通路、核因子-κB信号通路、黏附斑激酶信号通路和细胞外基质受体相互作用通路。 结论: APACG急性发作期房水中膜联蛋白A1的表达显著上调,转化生长因子β、钙黏蛋白4和母系蛋白2等蛋白因子下调,房水中蛋白的改变可能与APACG急性发作有关。(中华眼科杂志,2019,55:687-694)."	"Adipose tissue-derived stromal cells' conditioned medium modulates endothelial-mesenchymal transition induced by IL-1β/TGF-β2 but does not restore endothelial function. Endothelial cells undergo TGF-β-driven endothelial-mesenchymal transition (EndMT), representing up to 25% of cardiac myofibroblasts in ischaemic hearts. Previous research showed that conditioned medium of adipose tissue-derived stromal cells (ASC-CMed) blocks the activation of fibroblasts into fibrotic myofibroblasts. We tested the hypothesis that ASC-CMed abrogates EndMT and prevents the formation of adverse myofibroblasts. Human umbilical vein endothelial cells (HUVEC) were treated with IL-1β and TGF-β2 to induce EndMT, and the influence of ASC-CMed was assessed. As controls, non-treated HUVEC or HUVEC treated only with IL-1β in the absence or presence of ASC-CMed were used. Gene expression of inflammatory, endothelial, mesenchymal and extracellular matrix markers, transcription factors and cell receptors was analysed by RT-qPCR. The protein expression of endothelial and mesenchymal markers was evaluated by immunofluorescence microscopy and immunoblotting. Endothelial cell function was measured by sprouting assay. IL-1β/TGF-β2 treatment induced EndMT, as evidenced by the change in HUVEC morphology and an increase in mesenchymal markers. ASC-CMed blocked the EndMT-related fibrotic processes, as observed by reduced expression of mesenchymal markers TAGLN (P = 0.0008) and CNN1 (P = 0.0573), as well as SM22α (P = 0.0501). The angiogenesis potential was impaired in HUVEC undergoing EndMT and could not be restored by ASC-CMed. We demonstrated that ASC-CMed reduces IL-1β/TGF-β2-induced EndMT as observed by the loss of mesenchymal markers. The present study supports the anti-fibrotic effects of ASC-CMed through the modulation of the EndMT process."	"Visual arrestin modulates gene expression in the retinal pigment epithelium: Implications for homeostasis in the retina. The retinal pigment epithelium (RPE) is essential for maintaining retinal homeostasis by removing and recycling photoreceptor outer segment (POS) in membranes. It also produces and secretes growth factors involved in retinal homeostasis. Arrestin 1 (ARR1) is specifically expressed in photoreceptors (PRs) and a vital molecule for keeping visual cycle between PRs and RPE. In the present study, we showed the expression of ARR1 was decreased by form-deprivation (FD) in retina of rat. The ARR1 was detected in the RPE of the controls but not in the RPE of FD, which indicates RPE phagocytes POS containing ARR1. Furthermore, we overexpressed ARR1 in cultured human RPE and revealed the ARR1 upregulates bFGF expression and downregulates TGF-β1, -β2 and bone morphogenetic protein-2 (BMP-2). The upregulation of bFGF by ARR1 directly works for PR survival and the downregulation of TGF-βs by ARR1 inhibits epithelial mesenchymal transition (EMT) of RPE, which is the underlying mechanism of keeping retinal homeostasis. Our results also indicate the regulation of ARR1 expression in RPE might become a novel therapeutic option for various ocular diseases."	"A PD-L2-based immune marker signature helps to predict survival in resected pancreatic ductal adenocarcinoma. Programmed cell death protein 1 (PD-1) is a key immune checkpoint that regulates peripheral tolerance and protects against autoimmunity. Programmed death ligand-2 (PD-L2) is a less studied ligand to PD-1 and has yet to be fully explored, especially in pancreatic ductal adenocarcinoma (PDAC). In this study, we performed immunohistochemistry to detect the PD-L2, CD3, CD8, transforming growth factor-β2 (TGF-β2) and FOXP3 levels in paraffin sections from 305 patients with resected PDAC as a training set. Expression levels of intratumoral and stromal immune markers were compared in relation to survival using Kaplan-Meier curves, random survival forest model and survival tree analysis. A multivariable Cox proportional-hazards model of associated markers was used to calculate the risk scores. PD-L2 was expressed in 71.5% of PDAC samples and showed strong correlations with CD3+, CD8+ T cells and FOXP3+ regulatory T cell densities. High levels of intratumoral PD-L2 and FOXP3 were related to poor survival; only stromal FOXP3 overexpression was associated with worse prognosis. Four patterns generated from survival tree analysis demonstrated that PD-L2<sup>low</sup>stromalFOXP3<sup>low</sup> patients had the longest survival, while PD-L2<sup>high</sup>intratumoralCD3<sup>low</sup> patients had the shortest survival (P &lt; 0.001). The area under the curve was 0.631(95% confidence interval (CI): 0.447-0.826) for the immune marker-based signature and 0.549 (95% CI: 0.323-0.829; P &lt; 0.001) for the clinical parameter-based signature, which was consistent with the results in the validation set including 150 patients (P &lt; 0.001). A higher risk score indicated shorter survival and could serve as an independent prognostic factor. PD-L2 was also showed associated with TGF-β2 and other immune molecules based on bioinformatics analysis. Our work highlighted PD-L2 as a promising immunotherapeutic target with prognostic value combined with complex tumor infiltrating cells in PDAC."	"Localization of the ultraviolet-sensor Opn5m and its effect on myopia-related gene expression in the late-embryonic chick eye. Recent studies show that exposure to ultraviolet (UV) light suppresses ocular elongation, which causes myopia development. However, the specific mechanisms of this process have not been elucidated. A UV-sensor, Opsin 5 (Opn5) mRNA was shown to be present in extraretinal tissues. To test the possibility that UV-signals mediated by Opn5 would have a direct effect on the outer connective tissues of the eye, we first examined the expression patterns of a mammalian type Opn5 (Opn5m) in the late-embryonic chicken eye. Quantitative PCR showed Opn5m mRNA expression in the cornea and sclera. The anti-Opn5m antibody stained a small subset of cells in the corneal stroma and fibrous sclera. We next assessed the effect of UV-A (375 nm) irradiation on the chicken fibroblast cell line DF-1 overexpressing chicken Opn5m. UV-A irradiation for 30 min significantly increased the expression of Early growth response 1 (Egr1), known as an immediate early responsive gene, and of Matrix metalloproteinase 2 (Mmp2) in the presence of retinal chromophore 11-cis-retinal. In contrast, expression of Transforming growth factor beta 2 and Tissue inhibitor of metalloproteinase 2 was not significantly altered. These results indicate that UV-A absorption by Opn5m can upregulate the expression levels of Egr1 and Mmp2 in non-neuronal, fibroblasts. Taken together with the presence of Opn5m in the cornea and sclera, it is suggested that UV-A signaling mediated by Opn5 in the extraretinal ocular tissues could influence directly the outer connective tissues of the chicken late-embryonic eye."	"Blockade of MDM2 with inactive Cas9 prevents epithelial to mesenchymal transition in retinal pigment epithelial cells. Epithelial to mesenchymal transition (EMT) plays an important role in the pathogenesis of proliferative vitreoretinopathy (PVR). We aimed to demonstrate the role of mouse double minute 2 (MDM2) in transforming growth factor-beta 2 (TGF-β2)-induced EMT in human retinal pigment epithelial cells (RPEs). Immunofluorescence was used to assess MDM2 expression in epiretinal membranes (ERMs) from patients with PVR. A single guide (sg)RNA targeting the second promoter of MDM2 was cloned into a mutant lentiviral Clustered Regularly Interspaced Short Palindromic Repeats (lentiCRISPR) v2 (D10A and H840A) vector for expressing nuclease dead Cas9 (dCas9)/MDM2-sgRNA in RPEs. In addition, MDM2-sgRNA was also cloned into a pLV-sgRNA-dCas9-Kruppel associated box (KRAB) vector for expressing dCas9 fused with a transcriptional repressor KRAB/MDM2-sgRNA. TGF-β2-induced expression of MDM2 and EMT biomarkers were assessed by quantitative polymerase chain reaction (q-PCR), western blot, or immunofluorescence. Wound-healing and proliferation assays were used to evaluate the role of MDM2 in TGF-β2-induced responses in RPEs. As a result, we found that MDM2 was expressed obviously in ERMs, and that TGF-β2-induced expression of MDM2 and EMT biomarkers Fibronectin, N-cadherin and Vimentin in RPEs. Importantly, we discovered that the dCas9/MDM2-sgRNA blocked TGF-β2-induced expression of MDM2 and the EMT biomarkers without affecting their basal expression, whereas the dCas9-KRAB/MDM2-sgRNA suppressed basal MDM2 expression in RPEs. These cells could not be maintained continuously because their viability was greatly reduced. Next, we found that Nutlin-3, a small molecule blocking the interaction of MDM2 with p53, inhibited TGF-β2-induced expression of Fibronectin and N-cadherin but not Vimentin in RPEs, indicating that MDM2 functions in both p53-dependent and -independent pathways. Finally, our experimental data demonstrated that dCas9/MDM2-sgRNA suppressed TGF-β2-dependent cell proliferation and migration without disturbing the unstimulated basal activity. In conclusion, the CRISPR/dCas9 capability for blocking TGF-β2-induced expression of MDM2 and EMT biomarkers can be exploited for a therapeutic approach to PVR."	"Mitochondrial-Targeted Antioxidants Attenuate TGF-β2 Signaling in Human Trabecular Meshwork Cells. POAG is a progressive optic neuropathy that is currently the leading cause of irreversible blindness worldwide. While the underlying cause of POAG remains unclear, TGF-β2-dependent remodeling of the extracellular matrix (ECM) within the trabecular meshwork (TM) microenvironment is considered an early pathologic consequence associated with impaired aqueous humor (AH) outflow and elevated IOP. Early studies have also demonstrated markedly elevated levels of oxidative stress markers in AH from POAG patients along with altered expression of antioxidant defenses. Here, using cultured primary or transformed human TM cells, we investigated the role oxidative stress plays at regulating TGF-β2-mediated remodeling of the ECM. Primary or transformed (GTM3) human TM cells conditioned in serum-free media were incubated in the absence or presence of TGF-β2 and relative changes in intracellular reactive oxygen species (ROS) were measured using oxidation-sensitive fluorogenic dyes CellROX green or 6-carboxy-2',7'-dichlorodihydrofluorescein diacetate (carboxy-H2DCFDA). TGF-β2-mediated changes in the content of connective tissue growth factor (CTGF) and collagen types 1α1 (COL1A1) and 4α1 (COL4A1) mRNA or collagens I and IV isoform proteins were determined in the absence or presence of mitochondrial-targeted antioxidants (XJB-5-131 or MitoQ) and quantified by quantitative PCR or by immunoblot and immunocytochemistry. Smad-dependent canonic signaling was determined by immunoblot, whereas Smad-dependent transcriptional activity was quantified using a Smad2/3-responsive SBE-luciferase reporter assay. Primary or transformed human TM cells cultured in the presence of TGF-β2 (5 ng/mL; 2 hours) exhibited marked increases in CellROX or fluorescein fluorescence. Consistent with previous reports, challenging cultured human TM cells with TGF-β2 elicited measurable increases in regulated Smad2/3 signaling as well as increases in CTGF, COL1A1, and COL4A1 mRNA and collagen protein content. Pretreating human TM cells with mitochondrial-targeted antioxidants XJB-5-131 (10 μM) or MitoQ (10 nM) attenuated TGF-β2-mediated changes in Smad-dependent transcriptional activity. The multifunctional profibrotic cytokine TGF-β2 elicits a marked increase in oxidative stress in human TM cells. Mitochondrial-targeted antioxidants attenuate TGF-β2-mediated changes in Smad-dependent transcriptional activity, including marked reductions in CTGF and collagen isoform gene and protein expression. These findings suggest that mitochondrial-targeted antioxidants, when delivered directly to the TM, exhibit potential as a novel strategy by which to slow the progression of TGF-β2-mediated remodeling of the ECM within the TM."	"Combinatorial role of two G-quadruplexes in 5' UTR of transforming growth factor β2 (TGFβ2). Albeit most studies demonstrate the inhibitory role of G-quadruplex in the 5' Untranslated Region (5' UTR), our previous report depicted its completely contrasting activating role in the 5' UTR of transforming growth factor β2 (TGFβ2) mRNA. Therefore, we screened the 5' UTR of TGFβ2 manually and identified a second putative G-quadruplex sequence. Our in vitro experiments encompassing CD and UV spectroscopy confirmed the ability of this sequence to form a G-quadruplex and in cellulo studies further indicated its activating role in modulation of TGFβ2 gene expression. Our study suggests that these two 5' UTR G-quadruplexes most probably operate additively to substantially increase gene expression of TGFβ2. Neither of the two G-quadruplex alone is sufficient enough to drastically augment protein production. Both G-quadruplexes are essential for increasing protein output. To the best of our knowledge, our study is the first report showcasing the combinatorial role of two G-quadruplexes in the 5' UTR of an mRNA."	"Dietary iron deficiency impaired intestinal immune function of on-growing grass carp under the infection of Aeromonas hydrophila: Regulation of NF-κB and TOR signaling. Iron is an important mineral element for fish. In this study, we investigated the influences of dietary iron deficiency on intestinal immune function as well as underlying signaling of on-growing grass carp (Ctenopharyngodon idella). Fish were fed with six graded level of dietary iron for sixty days, and a fourteen days' challenge test under infection of Aeromonas hydrophila thereafter. Results showed that compared with optimal iron level, iron deficiency increased enteritis morbidity, decreased lysozyme (LZ) and acid phosphatase (ACP) activities, complement 3 (C3), C4 and immunoglobulin M (IgM) concentrations and down-regulated mRNA levels of hepcidin, liver expressed antimicrobial peptide 2A (LEAP-2A), LEAP-2B, Mucin2, β-defensin-1, anti-inflammatory cytokines transforming growth factor β1 (TGF-β1), TGF-β2, interleukin 4/13A (IL-4/13A), IL-4/13B, IL-10, IL-11 and IL-15, inhibitor of κBα (IκBα), target of rapamycin (TOR) and ribosomal protein S6 kinase 1 (S6K1), whereas up-regulated mRNA levels of pro-inflammatory cytokines IL-1β, interferon γ2 (IFN-γ2), IL-8, IL-12p35, IL-12p40 and IL-17D, nuclear factor kappa B (NF-κB) p65, IκB kinases α (IKKα), IKKβ and eIF4E-binding protein (4E-BP) in intestine of on-growing grass carp, indicating that iron deficiency impaired intestinal immune function of fish under infection of A. hydrophila. Besides, iron excess also increased enteritis morbidity and impaired immune function of fish under infection of A. hydrophila. In addition, the effect of ferrous fumarate on intestinal immune function of on-growing grass carp is more efficient than ferrous sulfate. Finally, based on ability against enteritis, LZ activities in mid intestine and distal intestine, we recommended adding 83.37, 86.71 and 85.39 mg iron/kg into diet, respectively."	"Overactivity or blockade of transforming growth factor-β each generate a specific ureter malformation. Transforming growth factor-β (TGFβ) has been reported to be dysregulated in malformed ureters. There exists, however, little information on whether altered TGFβ levels actually perturb ureter development. We therefore hypothesised that TGFβ has functional effects on ureter morphogenesis. Tgfb1, Tgfb2 and Tgfb3 transcripts coding for TGFβ ligands, as well as Tgfbr1 and Tgfbr2 coding for TGFβ receptors, were detected by quantitative polymerase chain reaction in embryonic mouse ureters collected over a wide range of stages. As assessed by in situ hybridisation and immunohistochemistry, the two receptors were detected in embryonic urothelia. Next, TGFβ1 was added to serum-free cultures of embryonic day 15 mouse ureters. These organs contain immature smooth muscle and urothelial layers and their in vivo potential to grow and acquire peristaltic function can be replicated in serum-free organ culture. Such organs therefore constitute a suitable developmental stage with which to define roles of factors that affect ureter growth and functional differentiation. Exogenous TGFβ1 inhibited growth of the ureter tube and generated cocoon-like dysmorphogenesis. RNA sequencing suggested that altered levels of transcripts encoding certain fibroblast growth factors (FGFs) followed exposure to TGFβ. In serum-free organ culture exogenous FGF10 but not FGF18 abrogated certain dysmorphic effects mediated by exogenous TGFβ1. To assess whether an endogenous TGFβ axis functions in developing ureters, embryonic day 15 explants were exposed to TGFβ receptor chemical blockade; growth of the ureter was enhanced, and aberrant bud-like structures arose from the urothelial tube. The muscle layer was attenuated around these buds, and peristalsis was compromised. To determine whether TGFβ effects were limited to one stage, explants of mouse embryonic day 13 ureters, more primitive organs, were exposed to exogenous TGFβ1, again generating cocoon-like structures, and to TGFβ receptor blockade, again generating ectopic buds. As for the mouse studies, immunostaining of normal embryonic human ureters detected TGFβRI and TGFβRII in urothelia. Collectively, these observations reveal unsuspected regulatory roles for endogenous TGFβ in embryonic ureters, fine-tuning morphogenesis and functional differentiation. Our results also support the hypothesis that the TGFβ up-regulation reported in ureter malformations impacts on pathobiology. Further experiments are needed to unravel the intracellular signalling mechanisms involved in these dysmorphic responses. © 2019 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Aqueous humor levels of TGFβ2 and SFRP1 in different types of glaucoma. To assess bioactive transforming growth factor-β2 (TGFβ2) and secreted frizzled-related protein-1 (SFRP1) levels in aqueous humor (AH) of different types of glaucoma. AH samples were obtained immediately before ophthalmic surgery with a 27-gauge needle attached to a microsyringe from 126 eyes (105 patients) divided into five groups: cataract (control), primary open-angle glaucoma (POAG), chronic angle-closure glaucoma (CACG), primary angle-closure suspects (PACS), and acute angle-closure glaucoma (AACG). Bioactive TGFβ2 and SFRP1 levels were assayed by ELISA. The concentration of TGFβ2 in AH of POAG patients, but not CACG, PACS, or AACG patients, was significantly higher than control eyes. However, within the AACG group, although the TGFβ2 levels in AH did not differ significantly from the control level when all AACG patients were grouped together, there were differences when the AACG patients were divided into high and normal intraocular pressure (IOP); TGFβ2 of AACG patients with high IOP (&gt; 21 mmHg) was significantly higher than those with normal IOP. AH levels of SFRP1 were not significantly different among the groups. However, a statistical significant, negative correlation between SFRP1 and IOP existed in the POAG group. POAG patients with high IOP had lower levels of SFRP1 than those with normal IOP. In contrast, a significant, positive correlation between SFRP1 level and IOP was detected in the AACG group. AACG patients with high IOP had a higher level of SFRP1 than those with normal IOP. Concentrations of TGFβ2 and SFRP1 did not correlate significantly with each other, or with age. These results indicate that AH levels of TGFβ2 and SFRP1 showed different profiles in different types of glaucomas."	"Low doses of ionizing radiation activate endothelial cells and induce angiogenesis in peritumoral tissues. During radiotherapy the peritumoral tissues are daily exposed to subtherapeutic doses of ionizing radiation. Herein, the biological and molecular effects of doses lower than 0.8 Gy per fraction (LDIR), previously described as angiogenesis inducers, were assessed in human peritumoral tissues. Paired biopsies of preperitoneal adipose tissue were surgically collected from 16 patients diagnosed with locally advanced rectal cancer who underwent neo-adjuvant radiotherapy. One of the biopsies is located in the vicinity of the region where the tumor received the prescribed dose of radiation, and thus exposed to LDIR; the other specimen, outside all beam apertures, was used as an internal calibrator (IC). Microvessel density (MDV) was quantified by immunohistochemistry and the expression of several pro-angiogenic genes was assessed by quantitative RT-PCR using exclusively endothelial cells (ECs) isolated by laser capture microdissection microscopy. LDIR activated peritumoral ECs by significantly up-regulating the expression of several pro-angiogenic genes such as VEGFR1, VEGFR2, ANGPT2, TGFB2, VWF, FGF2, HGF and PDGFC. Accordingly, the MVD was significantly increased in peritumoral tissues exposed to LDIR, compared to the IC. The patients that yielded a larger pro-angiogenic response, also showed the highest MVD. LDIR activate ECs in peritumoral tissues that are associated with increased MVD. Although the technological advances in radiotherapy have contributed to reduce the damage to healthy tissues over the past years, the anatomical regions receiving LDIR should be taken into account in the treatment plan report for patient follow-up and in future studies to correlate these doses with tumor dissemination."	"TGF-β2 antagonizes IL-6-promoted cell survival. Transforming growth factor beta is a key cytokine involved in the pathogenesis of fibrosis in many organs, whereas interleukin-6 plays an important role in the regulation of inflammation. They are both potent angiogenesis inducers with opposite effects on cell survival and apoptosis. TGF-β2 induces apoptosis; in contrast, IL-6 protects cells from apoptosis. The possible interaction between these two cytokines is indicated in various disease states. In this study, we have assessed the effect of TGF-β2 on IL-6 signaling and found that TGF-β2 could strongly inhibit IL-6-induced STAT3 activation and synergy with IL-6 resulting in enhanced SOCS3 expression. Interestingly, IL-6 also slows down the decay of TGF-β2 mRNA. Consistent with this mechanism, we found that TGF-β2 could antagonize IL-6 effect on cell survival in both γ-irradiation and UV light-induced apoptosis. Taken together, the finding shows that TGF-β2 serves as a negative regulator of IL-6 signaling and antagonizes the anti-apoptosis effect of IL-6."	"Identification of an emphysema-associated genetic variant near TGFB2 with regulatory effects in lung fibroblasts. Murine studies have linked TGF-β signaling to emphysema, and human genome-wide association studies (GWAS) studies of lung function and COPD have identified associated regions near genes in the TGF-β superfamily. However, the functional regulatory mechanisms at these loci have not been identified. We performed the largest GWAS of emphysema patterns to date, identifying 10 GWAS loci including an association peak spanning a 200 kb region downstream from TGFB2. Integrative analysis of publicly available eQTL, DNaseI, and chromatin conformation data identified a putative functional variant, rs1690789, that may regulate TGFB2 expression in human fibroblasts. Using chromatin conformation capture, we confirmed that the region containing rs1690789 contacts the TGFB2 promoter in fibroblasts, and CRISPR/Cas-9 targeted deletion of a ~ 100 bp region containing rs1690789 resulted in decreased TGFB2 expression in primary human lung fibroblasts. These data provide novel mechanistic evidence linking genetic variation affecting the TGF-β pathway to emphysema in humans."	"Pirfenidone suppresses the abnormal activation of human Müller cells after platelet-derived growth factor-BB stimulation. To determine the effect of pirfenidone on the activated human Müller cells by platelet-derived growth factor-BB (PDGF-BB). The primary human Müller cells were separated from retinal tissues and established the pathogenic model by stimulated with PDGF-BB. The Müller cells behaviour of normal group and the model group was measured by MTT assay, Trypan blue assay, cell migration assay, and collagen contraction assay. The expression of transforming growth factor (TGF)-β1, -β2, and pigment epithelium-derived factor (PEDF) was estimated with real-time polymerase chain reaction (PCR), Western blot and immunofluorescence analyses. A pathogenic/proliferative model of Müller cells was established by stimulating normal cultured Müller cells with 10 ng/mL PDGF-BB for 48h. After treated with 0.2 and 0.3 mg/mL pirfenidone, the proliferation, migration and collagen contraction was statistically significantly depressed in the model group compared with the normal groups. The expression levels of TGF-β1 and TGF-β2 were significantly down-regulated, while the PEDF expression was significantly up-regulated after treated with 0.2 and 0.3 mg/mL pirfenidone in the model group. Pirfenidone effectively suppress the proliferation, migration and collagen contraction of the human Müller cells stimulated with PDGF-BB through down-regulation of TGF-β1/TGF-β2 and up-regulation of PEDF."	"Transforming growth factor-β is involved in maintaining oocyte meiotic arrest by promoting natriuretic peptide type C expression in mouse granulosa cells. Natriuretic peptide type C (NPPC) secreted by mural granulosa cells (MGCs) maintains oocyte meiotic arrest via the activation of guanylyl cyclase-linked natriuretic peptide receptor 2 (NPR2). Here, we investigated the effect of transforming growth factor (TGF)-β on NPPC expression in MGCs and oocyte maturation. TGF-β ligands (TGFB1 and TGFB3, but not TGFB2) and receptors (TGFBR1 and TGFBR2) were predominantly expressed in MGCs. The activation of the follicle-stimulating hormone (FSH) receptor by FSH/equine chorionic gonadotropin (eCG) increased the levels of TGFB1, TGFBR2, and TGF-β downstream SMAD proteins in MGCs, which were decreased following the activation of the luteinizing hormone (LH) receptor by human chorionic gonadotropin (hCG). TGF-β significantly increased the gene and protein levels of NPPC in cultured MGCs through SMAD3 binding to Nppc promoter regions. In the presence of FSH, TGF-β further increased NPPC levels and inhibited oocyte meiotic resumption of cumulus-oocyte complexes (COCs). Moreover, Tgfbr2-specific depletion in granulosa cells using Fshr-Cre mice reduced NPPC mRNA and protein levels, resulting in the weak maintenance of oocyte meiotic arrest within large antral follicles. Tgfbr2 depletion also impaired follicle development, ovulation, and female fertility. Taken together, TGF-β-promoted NPPC in MGCs is involved in maintaining oocyte meiotic arrest. FSH and LH could regulate NPPC levels in MGCs via TGF-β and then control the process of oocyte meiosis."	"Structural Adaptation in Its Orphan Domain Engenders Betaglycan with an Alternate Mode of Growth Factor Binding Relative to Endoglin. Betaglycan (BG) and endoglin (ENG), homologous co-receptors of the TGF-β family, potentiate the signaling activity of TGF-β2 and inhibin A, and BMP-9 and BMP-10, respectively. BG exists as monomer and forms 1:1 growth factor (GF) complexes, while ENG exists as a dimer and forms 2:1 GF complexes. Herein, the structure of the BG orphan domain (BGO) reveals an insertion that blocks the region that the endoglin orphan domain (ENGO) uses to bind BMP-9, preventing it from binding in the same manner. Using binding studies with domain-deleted forms of TGF-β and BGO, as well as small-angle X-ray scattering data, BGO is shown to bind its cognate GF in an entirely different manner compared with ENGO. The alternative interfaces likely engender BG and ENG with the ability to selectively bind and target their cognate GFs in a unique temporal-spatial manner, without interfering with one another or other TGF-β family GFs."	"TGF-β2 Induces Gli1 in a Smad3-Dependent Manner Against Cerebral Ischemia/Reperfusion Injury After Isoflurane Post-conditioning in Rats. Isoflurane (ISO) post-conditioning attenuates cerebral ischemia/reperfusion (I/R) injury, but the underlying mechanism is incompletely elucidated. Transforming growth factor beta (TGF-β) and hedgehog (Hh) signaling pathways govern a wide range of mechanisms in the central nervous system. We aimed to investigate the effect of the TGF-β2/Smad3 and sonic hedgehog (Shh)/Glioblastoma (Gli) signaling pathway and their crosstalk in the hippocampus of rats with ISO post-conditioning after cerebral I/R injury. Adult male Sprague-Dawley rats were subjected to middle cerebral artery occlusion (MCAO), 1.5 h occlusion and 24 h reperfusion (MCAO/R). To assess the effect of ISO after I/R injury, various approaches were used, including neurobehavioral tests, TTC staining, HE staining, Nissl staining, TUNEL staining, immunofluorescence (IF), qRT-PCR (quantitative real-time polymerase chain reaction) and Western blot. The ISO post-conditioning group (ISO group) received 1 h ISO post-conditioning when reperfusion was initiated, leading to lower infarct volumes and neurologic deficit scores, more surviving neurons, and less damaged and apoptotic neurons. IF staining, qRT-PCR and Western blot showed high expression levels of TGF-β2, Shh and Gli1 in the hippocampal CA1 of the ISO group. Phosphorylated Smad3 (p-Smad3), Patched (Ptch), and Smoothed (Smo) were also increased at protein level in the ISO group, whereas total Smad3 expression did not change in all groups. When TGF-β2 inhibitor, pirfenidone, or Smad3 inhibitor, SIS3 HCl, were administered, the expression levels of p-Smad3 and Gli1 were reduced, and surviving pyramidal neurons decreased. By contrast, the expression levels of TGF-β2 and p-Smad3 did not change significantly after pre-injection of Smo inhibitor cyclopamine, but reduced the expression levels of Shh, Ptch, and Gli1. Moreover, Gli showed the lowest expression levels with pirfenidone combined with cyclopamine. These findings indicate that the TGF-β and hedgehog signaling pathways mediate the neuroprotection of ISO post-conditioning after cerebral I/R injury, and crosstalk between two pathways at the Gli1 level."	"LncRNA MIR503HG is downregulated in Han Chinese with colorectal cancer and inhibits cell migration and invasion mediated by TGF-β2. In this study we investigated the role of lncRNA MIR503HG in colorectal cancer (CRC). We found that MIR503HG was downregulated and TGF-β2 was upregulated in CRC included in this study. Low levels of MIR503HG were associated with poor survival of CRC patients within 5 years after admission. MIR503HG and TGF-β2 were inversely correlated in CRC tissues, and in CRC cells, MIR503HG overexpression was accompanied by TGF-β2 downregulation, while TGF-β2 overexpression did not affect MIR503HG. TGF-β2 overexpression mediated the increased migration and invasion rates of CRC cells. MIR503HG overexpression mediated the decreased migration and invasion rates of CRC cells. Moreover, TGF-β2 overexpression reduced the effects of MIR503HG overexpression. Therefore, MIR503HG overexpression inhibits CRC cell migration and invasion mediated by TGF-β2."	"Tumour-derived transforming growth factor-β signalling contributes to fibrosis in patients with cancer cachexia. Cachexia is a paraneoplastic syndrome related with poor prognosis. The tumour micro-environment contributes to systemic inflammation and increased oxidative stress as well as to fibrosis. The aim of the present study was to characterise the inflammatory circulating factors and tumour micro-environment profile, as potentially contributing to tumour fibrosis in cachectic cancer patients. 74 patients (weight stable cancer n = 31; cachectic cancer n = 43) diagnosed with colorectal cancer were recruited, and tumour biopsies were collected during surgery. Multiplex assay was performed to study inflammatory cytokines and growth factors. Immunohistochemistry analysis was carried out to study extracellular matrix components. Higher protein expression of inflammatory cytokines and growth factors such as epidermal growth factor, granulocyte-macrophage colony-stimulating factor, interferon-α, and interleukin (IL)-8 was observed in the tumour and serum of cachectic cancer patients in comparison with weight-stable counterparts. Also, IL-8 was positively correlated with weight loss in cachectic patients (P = 0.04; r = 0.627). Immunohistochemistry staining showed intense collagen deposition (P = 0.0006) and increased presence of α-smooth muscle actin (P &lt; 0.0001) in tumours of cachectic cancer patients, characterizing fibrosis. In addition, higher transforming growth factor (TGF)-β1, TGF-β2, and TGF-β3 expression (P = 0.003, P = 0.05, and P = 0.047, respectively) was found in the tumour of cachectic patients, parallel to p38 mitogen-activated protein kinase alteration. Hypoxia-inducible factor-1α mRNA content was significantly increased in the tumour of cachectic patients, when compared with weight-stable group (P = 0.005). Our results demonstrate TGF-β pathway activation in the tumour in cachexia, through the (non-canonical) mitogen-activated protein kinase pathway. The results show that during cachexia, intratumoural inflammatory response contributes to the onset of fibrosis. Tumour remodelling, probably by TGF-β-induced transdifferentiation of fibroblasts to myofibroblasts, induces unbalanced inflammatory cytokine profile, angiogenesis, and elevation of extracellular matrix components (EMC). We speculate that these changes may affect tumour aggressiveness and present consequences in peripheral organs."	"Supplementation exogenous bile acid improved growth and intestinal immune function associated with NF-κB and TOR signalling pathways in on-growing grass carp (Ctenopharyngodon idella): Enhancement the effect of protein-sparing by dietary lipid. This study investigated the effects of bile acid (BA) supplementation on growth performance, intestinal immune function and the mRNA expression of the related signalling molecules in on-growing grass carp (Ctenopharyngodon idella). A total of 540 healthy grass carp (mean weight 179.85 ± 1.34 g) were fed a normal protein and lipid (NPNL) diet containing 29% crude protein (CP) and 5% ether extract (EE), and five low-protein and high-lipid (LPHL) diets (26% CP, 6% EE) with graded levels of BA (0-320 mg/kg diet) for 50 days. The fish were then challenged with Aeromonas hydrophila for 14 days. The results indicated that compared with the NPNL diet, the LPHL diet (unsupplemented BA) suppressed the growth performance, intestinal development and enteritis resistance capability and impaired the partial intestinal immune function of on-growing grass carp. Whereas in the LPHL diet, optimal BA supplementation significantly improved fish growth performance (percent weight gain, specific growth rate, feed intake and feed efficiency) and intestinal growth and function (intestine weight, intestine length and intestosomatic index), increased beneficial bacteria Lactobacillus and Bifidobacterium amounts, decreased harmful bacteria Aeromonas and Escherichia coli amounts, elevated lysozyme and acid phosphatase activities, increased complement (C3 and C4) and immunoglobulin M contents, and upregulated β-defensin-1, hepcidin, liver expressed antimicrobial peptide 2A (LEAP-2A), LEAP-2B, Mucin2, interleukin 10 (IL-10), IL-11, transforming growth factor (TGF)-β1, TGF-β2, IL-4/13A (not IL-4/13B), TOR, S6K1 and inhibitor of κBα (IκBα) mRNA levels. In addition, optimal BA supplementation in the LPHL diet downregulated tumour necrosis factor α (TNF-α), interferon γ2 (IFN-γ2), IL-1β, IL-6, IL-8, IL-15, IL-17D, IL-12p35, IL-12p40 (rather than proximal intestine (PI) or mid intestine (MI), nuclear factor kappa B p65 (NF-κB p65) (except NF-κB p52), c-Rel, IκB kinase β (IKKβ), IKKγ (except IKKα), eIF4E-binding proteins (4E-BP)1 and 4E-BP2 mRNA levels in all three intestinal segments of on-growing grass carp (P &lt; 0.05). These findings suggest that BA supplementation in the LPHL diet improves growth and intestinal immune function of fish. Furthermore, 240 mg/kg BA supplementation in the LPHL diet was superior to the NPNL diet in improving growth and enhancing intestinal immune function of fish. Finally, based on percent weight gain, feed intake, protecting fish against enteritis, lysozyme activity in MI and acid phosphatase activity in distal intestine (DI), the optimal BA supplementation for on-growing grass carp were estimated to be 168.98, 170.23, 166.67, 176.50 and 191.97 mg/kg diet, respectively."	"NOTCH Activation Promotes Valve Formation by Regulating the Endocardial Secretome. The endocardium is a specialized endothelium that lines the inner surface of the heart. Functional studies in mice and zebrafish have established that the endocardium is a source of instructive signals for the development of cardiac structures, including the heart valves and chambers. Here, we characterized the NOTCH-dependent endocardial secretome by manipulating NOTCH activity in mouse embryonic endocardial cells (MEEC) followed by mass spectrometry-based proteomics. We profiled different sets of soluble factors whose secretion not only responds to NOTCH activation but also shows differential ligand specificity, suggesting that ligand-specific inputs may regulate the expression of secreted proteins involved in different cardiac development processes. NOTCH signaling activation correlates with a transforming growth factor-β2 (TGFβ2)-rich secretome and the delivery of paracrine signals involved in focal adhesion and extracellular matrix (ECM) deposition and remodeling. In contrast, NOTCH inhibition is accompanied by the up-regulation of specific semaphorins that may modulate cell migration. The secretome protein expression data showed a good correlation with gene profiling of RNA expression in embryonic endocardial cells. Additional characterization by in situ hybridization in mouse embryos revealed expression of various NOTCH candidate effector genes (Tgfβ2, Loxl2, Ptx3, Timp3, Fbln2, and Dcn) in heart valve endocardium and/or mesenchyme. Validating these results, mice with conditional Dll4 or Jag1 loss-of-function mutations showed gene expression alterations similar to those observed at the protein level in vitro These results provide the first description of the NOTCH-dependent endocardial secretome and validate MEEC as a tool for assaying the endocardial secretome response to a variety of stimuli and the potential use of this system for drug screening."	"Drugs Targeting Epigenetic Modifications and Plausible Therapeutic Strategies Against Colorectal Cancer. Genetic variations along with epigenetic modifications of DNA are involved in colorectal cancer (CRC) development and progression. CRC is the fourth leading cause of cancer-related deaths worldwide. Initiation and progression of CRC is the cumulation of a variety of genetic and epigenetic changes in colonic epithelial cells. Colorectal carcinogenesis is associated with epigenetic aberrations including DNA methylation, histone modifications, chromatin remodeling, and non-coding RNAs. Recently, epigenetic modifications have been identified like association of hypermethylated gene Claudin11 (CLDN11) with metastasis and prognosis of poor survival of CRC. DNA methylation of genes CMTM3, SSTR2, MDF1, NDRG4 and TGFB2 are potential epigenetic biomarkers for the early detection of CRC. Tumor suppressor candidate 3 (TUSC3) mRNA expression is silenced by promoter methylation, which promotes epidermal growth factor receptor (EGFR) signaling and rescues the CRC cells from apoptosis and hence leading to poor survival rate. Previous scientific evidences strongly suggest epigenetic modifications that contribute to anticancer drug resistance. Recent research studies emphasize development of drugs targeting histone deacetylases (HDACs) and DNA methyltransferase inhibitors as an emerging anticancer strategy. This review covers potential epigenetic modification targeting chemotherapeutic drugs and probable implementation for the treatment of CRC, which offers a strong rationale to explore therapeutic strategies and provides a basis to develop potent antitumor drugs."	"Recombinant production of human α2-macroglobulin variants and interaction studies with recombinant G-related α2-macroglobulin binding protein and latent transforming growth factor-β2. α2-Macroglobulins (α2Ms) regulate peptidases, hormones and cytokines. Mediated by peptidase cleavage, they transit between native, intact forms and activated, induced forms. α2Ms have been studied over decades using authentic material from primary sources, which was limited by sample heterogeneity and contaminants. Here, we developed high-yield expression systems based on transient transfection in Drosophila Schneider 2 and human Expi293F cells, which produced pure human α2M (hα2M) at ~1.0 and ~0.4 mg per liter of cell culture, respectively. In both cases, hα2M was mainly found in the induced form. Shorter hα2M variants encompassing N-/C-terminal parts were also expressed and yielded pure material at ~1.6/~1.3 and ~3.2/~4.6 mg per liter of insect or mammalian cell culture, respectively. We then analyzed the binding of recombinant and authentic hα2M to recombinant latent human transforming growth factor-β2 (pro-TGF-β2) and bacterial G-related α2M binding protein (GRAB) by surface plasmon resonance, multiple-angle laser light scattering, size-exclusion chromatography, fluorogenic labelling, gel electrophoresis and Western-blot analysis. Two GRAB molecules formed stable complexes of high affinity with native and induced authentic hα2M tetramers. The shorter recombinant hα2M variants interacted after preincubation only. In contrast, pro-TGF-β2 did not interact, probably owing to hindrance by the N-terminal latency-associated protein of the cytokine."	"Role of Lipid Rafts in Hematopoietic Stem Cells Homing, Mobilization, Hibernation, and Differentiation. Hematopoietic stem cells (HSCs) are multipotent, self-renewing cells that can differentiate into myeloid or lymphoid cells. The mobilization and differentiation processes are affected by the external environment, such as extracellular matrix and soluble molecules in the niche, where the lipid rafts (LRs) of the HSCs act as the receptors and control platforms for these effectors. LRs are membrane microdomains that are enriched in cholesterol, sphingolipid, and proteins. They are involved in diverse cellular processes including morphogenesis, cytokinesis, signaling, endocytic events, and response to the environment. They are also involved in different types of diseases, such as cancer, Alzheimer's, and prion disease. LR clustering and disruption contribute directly to the differentiation, homing, hibernation, or mobilization of HSCs. Thus, characterization of LR integrity may provide a promising approach to controlling the fate of stem cells for clinical applications. In this review, we show the critical role of LR modification (clustering, disruption, protein incorporation, and signal responding) in deciding the fate of HSCs, under the effect of soluble cytokines such as stem cell factor (SCF), transforming growth factor- β (TGF-β), hematopoietic-specific phospholipase Cβ2 (PLC-β2), and granulocyte colony-stimulating factor (G-CSF)."	"Aplnra/b Sequentially Regulate Organ Left-Right Patterning via Distinct Mechanisms. The G protein-coupled receptor APJ/Aplnr has been widely reported to be involved in heart and vascular development and disease, but whether it contributes to organ left-right patterning is largely unknown. Here, we show that in zebrafish, aplnra/b coordinates organ LR patterning in an apela/apln ligand-dependent manner using distinct mechanisms at different stages. During gastrulation and early somitogenesis, aplnra/b loss of function results in heart and liver LR asymmetry defects, accompanied by disturbed KV/cilia morphogenesis and disrupted left-sided Nodal/spaw expression in the LPM. In this process, only aplnra loss of function results in KV/cilia morphogenesis defect. In addition, only apela works as the early endogenous ligand to regulate KV morphogenesis, which then contributes to left-sided Nodal/spaw expression and subsequent organ LR patterning. The aplnra-apela cascade regulates KV morphogenesis by enhancing the expression of foxj1a, but not fgf8 or dnh9, during KV development. At the late somite stage, both aplnra and aplnrb contribute to the expression of lft1 in the trunk midline but do not regulate KV formation, and this role is possibly mediated by both endogenous ligands, apela and apln. In conclusion, our study is the first to identify a role for aplnra/b and their endogenous ligands apela/apln in LR patterning, and it clarifies the distinct roles of aplnra-apela and aplnra/b-apela/apln in orchestrating organ LR patterning."	"Epigenetic activation and memory at a TGFB2 enhancer in systemic sclerosis. In systemic sclerosis (SSc), previously healthy adults develop an inflammatory prodrome with subsequent progressive fibrosis of the skin and viscera. SSc has a weak signature for genetic contribution, and there are few pathogenic insights or targeted treatments for this condition. Here, chromatin accessibility and transcriptome profiling coupled with targeted epigenetic editing revealed constitutive activation of a previously unannotated transforming growth factor-β2 (TGFB2) enhancer maintained through epigenetic memory in SSc. The resulting autocrine TGFβ2 signaling enforced a profibrotic synthetic state in ex vivo fibroblasts from patients with SSc. Inhibition of NF-κB or BRD4 achieved sustained inhibition of TGFB2 enhancer activity, mitigated profibrotic gene expression, and reversed dermal fibrosis in patient skin explants. These findings suggest a potential epigenetic mechanism of fibrosis in SSc and inform a regulatory mechanism of TGFB2, a major profibrotic cytokine."	"LncRNA XIST enhanced TGF-β2 expression by targeting miR-141-3p to promote pancreatic cancer cells invasion. The level of expression of long non-coding RNA (LncRNA) X-inactive specific transcript (XIST) is up-regulated in pancreatic cancer (PC). However, the role of XIST in PC and the underlying mechanism are still unknown. The present study aimed to elucidate how XIST participates in PC and its potential target, miR-141-3p. We detected the XIST expression in PC tissues and cells by qRT-PCR. Cell proliferation was measured using a CCK8 kit, and the migration and invasion of cells was measured by Transwell assay. Silencing XIST and miR-141-3p was performed with transfection by Lipofectamine kit. Binding assay was conducted by luciferase reporter assay. Protein expression was examined by Western blot. These results indicate that (i) XIST is highly expressed in tumor tissues while miR-141-3p is down-regulated. (ii) Silencing XIST inhibits the pancreatic cell proliferation, migration and invasion. (iii) MiR-141-3p inhibitor alleviates the inhibitory effect by siXIST in PC cell lines. (iv) MiR-141-3p directly interacts with XIST and also negatively regulates transforming growth factor-β 2 (TGF-β2) expression. (v) Overexpression of XIST attenuates the inhibition of TGF-β2 expression by miR-141-3p. The conclusion, is that XIST could promote proliferation, migration and invasion of PC cells via miR-141-5p/TGF-β2 axis."	"Recombinant production, purification, crystallization, and structure analysis of human transforming growth factor β2 in a new conformation. Transforming growth factor β is a disulfide-linked dimeric cytokine that occurs in three highly related isoforms (TGFβ1-TGFβ3) engaged in signaling functions through binding of cognate TGFβ receptors. To regulate this pathway, the cytokines are biosynthesized as inactive pro-TGFβs with an N-terminal latency-associated protein preceding the mature moieties. Due to their pleiotropic implications in physiology and pathology, TGFβs are privileged objects of in vitro studies. However, such studies have long been limited by the lack of efficient human recombinant expression systems of native, glycosylated, and homogenous proteins. Here, we developed pro-TGFβ2 production systems based on human Expi293F cells, which yielded &gt;2 mg of pure histidine- or Strep-tagged protein per liter of cell culture. We assayed this material biophysically and in crystallization assays and obtained a different crystal form of mature TGFβ2, which adopted a conformation deviating from previous structures, with a distinct dimeric conformation that would require significant rearrangement for binding of TGFβ receptors. This new conformation may be reversibly adopted by a certain fraction of the mature TGβ2 population and represent a hitherto undescribed additional level of activity regulation of the mature growth factor once the latency-associated protein has been separated."	"Application of PD-1 Blockade in Cancer Immunotherapy. The programmed cell death protein 1 (PD-1) pathway has received considerable attention due to its role in eliciting the immune checkpoint response of T cells, resulting in tumor cells capable of evading immune surveillance and being highly refractory to conventional chemotherapy. Application of anti-PD-1/PD-L1 antibodies as checkpoint inhibitors is rapidly becoming a promising therapeutic approach in treating tumors, and some of them have successfully been commercialized in the past few years. However, not all patients show complete responses and adverse events have been noted, suggesting a better understanding of PD-1 pathway mediated immunosuppression is needed to predict patient response and improve treatment efficacy. Here, we review the progresses on the studies of the mechanistic role of PD-1 pathway in the tumor immune evasion, recent clinical development and commercialization of PD-1 pathway inhibitors, the toxicities associated with PD-1 blockade observed in clinical trials as well as how to improve therapeutic efficacy and safety of cancer immunotherapy."	"Enhanced EGF receptor-signaling potentiates TGFβ-induced lens epithelial-mesenchymal transition. The ocular lens is exposed to numerous growth factors that influence its behavior in diverse ways. While many of these, such as FGF and EGF promote normal cell behavior, TGFβ is unique in that it can also induce lens cell pathology, namely, the epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs) leading to fibrotic cataract formation. The present study explores how EGF impacts on TGFβ-induced EMT in the lens. LECs in explants prepared from 21-day-old Wistar rats were treated with either 200 pg/ml TGFβ2, 5 ng/ml EGF, or a combination of these, with or without a 2-h pre-treatment of an EGFR inhibitor (PD153035), MEK inhibitor (U0126) or Smad3 inhibitor (SIS3). Co-treatment of LECs with TGFβ2 and EGF, compared with TGFβ2 alone, resulted in a more pronounced elongation and transdifferentiation of the LECs into myofibroblastic cells, with higher protein levels of mesenchymal cell markers (α-SMA and tropomyosin). Combining EGF with a less potent lower dose of TGFβ2 (50 pg/ml) induced LECs to undergo EMT equivalent to treatment with a higher dose of TGFβ2 (200 pg/ml) within 5 days of culture. EGF alone, nor the lower dose of TGFβ2, were able to induce EMT in LECs within 5 days. Co-treatment of LECs with EGF and TGFβ2 induced a temporal shift in the phosphorylation levels of Smad2/3, ERK1/2 and EGFR and changed the expression patterns of downstream EMT target genes, compared to treatment of LECs with either growth factor alone. Inhibition of EGFR-signaling with PD153035 blocked the EMT response induced by co-treatment with EGF and TGFβ2. Taken together, our data demonstrate that EGF can potentiate TGFβ2 activity to enhance EMT in LECs, further highlighting the importance of EGFR-signaling in cataract formation. By directly blocking EGFR signaling, the activity of both EGF and TGFβ2 can be simultaneously reduced, thereby serving as a potential target for cataract prevention."	"A novel NADPH oxidase inhibitor targeting Nox4 in TGFβ-induced lens epithelial to mesenchymal transition. Many of the small molecule-based inhibitors of NADPH oxidase activity are largely inadequate to substantiate broad claims, often exhibiting a lack of Nox-isoform-specificity, and sometimes only acting as scavengers of reactive oxygen species (ROS). In the present study, we use a newly developed highly selective Nox4 inhibitor, GLX7013114, to modulate TGFβ-induced lens epithelial to mesenchymal transition (EMT). Rat lens epithelial explants were pre-treated with 0.3 μM of GLX7013114, and then treated with 200 pg/ml of TGF-β2 to induce lens EMT. ROS production was visualized microscopically using the superoxide fluorogenic probe, dihydroethidium (DHE). The EMT process was documented using phase-contrast microscopy, and molecular EMT markers were immunolabeled. qPCR was also performed to observe changes in EMT-associated genes. TGFβ-induced ROS was evident at 8 h of culture and its intensity was found to be significantly reduced when GLX7013114 was applied, comparable to ROS levels measured in untreated explants. Using phase-contrast microscopy to follow TGFβ-induced EMT over 5 days in the presence of the inhibitor, lens epithelial cells in explants became myofibroblastic by day 2 and underwent progressive apoptosis to reveal a bare lens capsule by day 5. Explants treated with TGFβ and GLX7013114 had some increased cell survival; however, these differences were not significant. For the first time, Nox4 inhibition by GLX7013114 was shown to reduce the TGFβ-induced gene expression of α-smooth muscle actin (αSMA), collagen 1a and fibronectin. GLX7013114, given that it appears to block aspects of TGFβ-induced EMT, including ROS production, may be a new useful Nox4-selective inhibitor for further studies."	"Withaferin A ameliorates renal injury due to its potent effect on inflammatory signaling. Chronic kidney disease (CKD) is one of the major global health concerns and is responsible for end-stage renal disease (ESRD) complications. Inflammation plays a pivotal role in the progression of CKD. In the present study, we evaluated the renoprotective effects of a potent immunomodulator steroidal lactone, Withaferin A (WfA), in an animal model of renal injury (unilateral ureteral obstruction, UUO) and further investigated if the inhibition of inflammatory signaling can be a useful approach to reduce renal injury. Animals were randomly divided into five groups: Sham control, UUO control, WfA control, WfA low dose (1 mg/kg), and WfA high dose (3 mg/kg). Oxidative stress was measured by the estimation of reduced glutathione and lipid peroxidation levels. H&amp;E and Picrosirius Red staining were performed to assess the extent of histological damage and collagen deposition. Furthermore, the molecular mechanism of the WfA effects was explored by immunohistochemistry, enzyme-linked immunosorbent assay, multiplex analysis of transforming growth factor β (TGF-β) pathway, and an array of inflammatory cytokines/chemokines. Interestingly, our pharmacological intervention significantly attenuated tissue collagen, inflammatory signaling, and macrophage signaling. WfA intervention abrogated the inflammatory signaling as evident from the modulated levels of chemokines and cytokines. The levels of TGF-β along with downstream signaling molecules were also attenuated by WfA treatment as revealed by inhibition in the expression of TGF-β1, TGF-β2, p-Smad2, p-Smad3, total Smad4, p-Akt, and p-ERK. We, to the best of our knowledge, prove for the first time that WfA has potential renoprotective activity against UUO-induced nephropathy due to its outstanding anti-inflammatory properties."	"Expression of transforming growth factor β and matrix metalloproteinases in the aqueous humor of patients with congenital ectopia lentis. It is well known that transforming growth factor β (TGFβ), which is able to stimulate multiple intracellular signaling pathways, exerts an important role in Marfan syndrome, although the effects of TGFβ on congenital ectopia lentis (CEL) have yet to be fully elucidated. In the present study, the expression levels of TGFβ and matrix metalloproteinases (MMPs) were investigated in the aqueous humor of patients with ectopic lentis who differed in terms of the severity of the disease. A total of 17 CEL patients with 21 eyes (aged 12.76±9.37 years) and 12 congenital cataract (CC) patients with 17 eyes (aged 6.82±9.18 years) were randomized in the present study. The levels of active TGFβ and MMPs in the aqueous humor were analyzed with Luminex xMAP® technology by using commercially available Bio‑Plex Pro™ Human MMP and TGFβ assays. The distance from the lens edge to the pupil edge and the white to white corneal diameter (i.e. the horizontal distance between the borders of the corneal limbus) were measured, and the ratio was calculated as the degree of lens dislocation. The association between TGFβ and MMP levels and the degree of lens dislocation was analyzed using Spearman's correlation test. Compared with the patients with CC, the level of TGFβ2 in the patients with CEL was increased significantly. Specifically, the level of TGFβ2 in the CEL patients was 855.19 pg/ml (744.33, 1,009.24), whereas it was 557.08 (438.24, 692.71) pg/ml in the CC patients (P&lt;0.001). In addition, it was noted that the levels of MMP‑2 and ‑10 in the aqueous humor of the patients with CEL were higher compared with those in the CC patients, although this increase did not reach the level of statistical significance. Notably, the levels of MMP‑8 and ‑9 in the aqueous humor of patients with CEL were significantly lower compared with those in the CC patients (P=0.014 and P=0.002, respectively). Furthermore, a marginal correlation was identified between the severity of ectopic lentis and the levels of TGFβ2 in the aqueous humor (r2=0.379; P=0.003) of the patients with CEL. Taken together, these results demonstrated that a significant correlation existed between high levels of aqueous humor TGFβ2 and the severity of ectopia lentis in patients with CEL. In addition, aqueous humor TGFβ2 levels in the CEL patients were significantly higher compared with those in CC patients."	"The Smad3-miR-29b/miR-29c axis mediates the protective effect of macrophage migration inhibitory factor against cardiac fibrosis. Although macrophage migration inhibitory factor (MIF) is known to have antioxidant property, the role of MIF in cardiac fibrosis has not been well understood. We found that MIF was markedly increased in angiotension II (Ang-II)-infused mouse myocardium. Myocardial function was impaired and cardiac fibrosis was aggravated in Mif-knockout (Mif-KO) mice. Functionally, overexpression of MIF and MIF protein could inhibit the expression of fibrosis-associated collagen (Col) 1a1, COL3A1 and α-SMA, and Smad3 activation in mouse cardiac fibroblasts (CFs). Consistently, MIF deficiency could exacerbate the expression of COL1A1, COL3A1 and α-SMA, and Smad3 activation in Ang-II-treated CFs. Interestingly, microRNA-29b-3p (miR-29b-3p) and microRNA-29c-3p (miR-29c-3p) were down-regulated in the myocardium of Ang-II-infused Mif-KO mice but upregulated in CFs with MIF overexpression or by treatment with MIF protein. MiR-29b-3p and miR-29c-3p could suppress the expression of COL1A1, COL3A1 and α-SMA in CFs through targeting the pro-fibrosis genes of transforming growth factor beta-2 (Tgfb2) and matrix metallopeptidase 2 (Mmp2). We further demonstrated that Mif inhibited reactive oxygen species (ROS) generation and Smad3 activation, and rescued the decrease of miR-29b-3p and miR-29c-3p in Ang-II-treated CFs. Smad3 inhibitors, SIS3 and Naringenin, and Smad3 siRNA could reverse the decrease of miR-29b-3p and miR-29c-3p in Ang-II-treated CFs. Taken together, our data demonstrated that the Smad3-miR-29b/miR-29c axis mediates the inhibitory effect of macrophage migration inhibitory factor on cardiac fibrosis."	"Serum coding and non-coding RNAs as biomarkers of NAFLD and fibrosis severity. In patients with non-alcoholic fatty liver disease (NAFLD), liver biopsy is the gold standard to detect non-alcoholic steatohepatitis (NASH) and stage liver fibrosis. We aimed to identify differentially expressed mRNAs and non-coding RNAs in serum samples of biopsy-diagnosed mild and severe NAFLD patients with respect to controls and to each other. We first performed a whole transcriptome analysis through microarray (n = 12: four Control: CTRL; four mild NAFLD: NAS ≤ 4 F0; four severe NAFLD NAS ≥ 5 F3), followed by validation of selected transcripts through real-time PCRs in an independent internal cohort of 88 subjects (63 NAFLD, 25 CTRL) and in an external cohort of 50 NAFLD patients. A similar analysis was also performed on liver biopsies and HepG2 cells exposed to oleate:palmitate or only palmitate (cellular model of NAFL/NASH) at intracellular/extracellular levels. Transcript correlation with histological/clinical data was also analysed. We identified several differentially expressed coding/non-coding RNAs in each group of the study cohort. We validated the up-regulation of UBE2V1, BNIP3L mRNAs, RP11-128N14.5 lncRNA, TGFB2/TGFB2-OT1 coding/lncRNA in patients with NAS ≥ 5 (vs NAS ≤ 4) and the up-regulation of HBA2 mRNA, TGFB2/TGFB2-OT1 coding/lncRNA in patients with Fibrosis stages = 3-4 (vs F = 0-2). In in vitro models: UBE2V1, RP11-128N14.5 and TGFB2/TGFB2-OT1 had an increasing expression trend ranging from CTRL to oleate:palmitate or only palmitate-treated cells both at intracellular and extracellular level, while BNIP3L was up-regulated only at extracellular level. UBE2V1, RP11-128N14.5, TGFB2/TGFB2-OT1 and HBA2 up-regulation was also observed at histological level. UBE2V1, RP11-128N14.5, BNIP3L and TGFB2/TGFB2-OT1 correlated with histological/biochemical data. Combinations of TGFB2/TGFB2-OT1 + Fibrosis Index based on the four factors (FIB-4) showed an Area Under the Curve (AUC) of 0.891 (P = 3.00E-06) or TGFB2/TGFB2-OT1 + Fibroscan (AUC = 0.892, P = 2.00E-06) improved the detection of F = 3-4 with respect to F = 0-2 fibrosis stages. We identified specific serum coding/non-coding RNA profiles in severe and mild NAFLD patients that possibly mirror the molecular mechanisms underlying NAFLD progression towards NASH/fibrosis. TGFB2/TGFB2-OT1 detection improves FIB-4/Fibroscan diagnostic performance for advanced fibrosis discrimination."	"MicroRNA-34a inhibits epithelial-mesenchymal transition of lens epithelial cells by targeting Notch1. Posterior capsule opacification (PCO) is a common long-term complication of modern cataract surgery. The epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs) is a crucial process in the development of PCO. The purpose of this study is to investigate the role of microRNA-34a (miR-34a) in the regulation of EMT and its target gene. Human LECs were treated with TGFβ2 to induce EMT as a model for PCO. The mRNA levels of miR-34a and EMT markers were examined by real-time quantitative polymerase chain reaction (qPCR). The expression level of miR-34a was downregulated, whereas that of Notch1 was upregulated in TGFβ2-induced EMT of LECs. Overexpression of miR-34a by transfection with miR-34a inhibited EMT of LECs and reduced the expression of Notch1; while, inhibition of miR-34a upregulated the expression of both Notch1 and its ligand Jagged1 in LECs. Luciferase reporter assays revealed that Notch1 gene was direct target of miR-34a. Moreover, DAPT, a specific inhibitor of Notch signaling pathway, reversed LEC-EMT. In addition, the expression level of miR-34a was downregulated, whereas that of Notch1 was upregulated in capsular opacification from cataract samples. MiR-34a can negatively regulate EMT of LECs by targeting Notch1. Therefore, miR-34a/Notch1 could serve as a potential therapeutic approach for the treatment of PCO."	"N-acetylcysteine prevents bladder tissue fibrosis in a lipopolysaccharide-induced cystitis rat model. Therapeutic options for non-Hunner type interstitial cystitis (IC), which is histologically characterized by fibrosis and mast cell infiltration, are limited. We developed a rat model that replicates chronic inflammation and fibrosis and evaluated the therapeutic effect of N-acetylcysteine (NAC), a well-known anti-fibrotic agent, on the model. Intravesical instillation of lipopolysaccharide (LPS, 750 μg) after protamine sulfate (10 mg) was conducted twice per week for five consecutive weeks. One week after final instillation, 200 mg/kg NAC (n = 10, IC + NAC group) or phosphate-buffered saline (n = 10, IC group) was daily injected intraperitoneally once daily for 5 days. LPS instillation induced bladder fibrosis, mast cell infiltration, and apoptotic tissue damage. Functionally, LPS insult led to irregular micturition, decreased inter-contraction intervals, and decreased micturition volume. NAC significantly improved most of the voiding parameters and reversed histological damages including fibrosis. NAC inhibited the induction and nuclear localization of phospho-Smad2 protein in bladder tissues and the upregulation of genes related to fibrosis, such as Tgfb2, Tgfb3, Smad2, Smad3, Cxcl10, and Card10. This is the first study to demonstrate the beneficial effects on NAC in restoring voiding function, relieving tissue fibrosis and related bladder injuries, in the LPS-induced cystitis rat model."	"Determination of neuroinflammatory biomarkers in autistic and neurotypical Saudi children. To identify neuroinflammatory biomarkers in patients with various severity of autism spectrum disorder (ASD) increases the insight about the pathogenesis and pathophysiology of this neurodevelopmental disorder. The aim of the present study was to analyze the levels in plasma of TGFβ2, Heat shock protein 70 (HSP70), and hematopoietic prostaglandin D2 synthase (H-PGDS) in Saudi ASD children and healthy age-matched neurotypical controls. Also, it was in the present study examined the correlation among these neuroinflammatory biomarkers and the sensory deficit exhibited by the ASD children. Blood samples from 38 Saudi children with ASD and 32 age-matched neurotypical controls were withdrawn after an overnight fast. For the blood taking 3 mL EDTA containing blood collection tubes was used. The samples were centrifuged for 20 min (4 °C; 3000×g) directly after the blood sampling. The harvested plasma was used for in vitro quantification of TGF-β2, HSP70, and H-PGDS by using the sandwich enzyme immunoassay. Receiver operating characteristic (ROC) analysis and predictiveness curves showed that each of TGF-β2, HSP70 or H-PGDS alone could not be used as a predictive neuroinflammatory biomarker for ASD. However, when TGF-β2 and HSP70 were combined in one ROC curve, the AUC was increased to an appreciable value that makes them together robust predictors of variation between the ASD and neurotypical control groups. Overall, it was in the present study found significant differences for TGF-β2 and HSP70 when the ASD and neurotypical control groups were compared, independently of the sensory deficit level. In conclusion, the present study highlights the usefulness of TGF-β2, HSP70, and H-PGDS as diagnostic tools to differentiate between ASD and neurotypical control children, but not among subgroups of ASD children exhibiting different severity levels of sensory dysfunction. The presented data also suggest the effectiveness of ROC as a powerful statistical tool, which precisely can measure a combined effect of neuroinflammatory biomarkers intended for diagnostic purposes."	"Long Noncoding RNA MALAT1 Acts as a Competing Endogenous RNA to Regulate TGF-β2 Induced Epithelial-Mesenchymal Transition of Lens Epithelial Cells by a MicroRNA-26a-Dependent Mechanism. The aim of the present study was to characterize whether the long noncoding RNA metastasis-associated lung adenocarcinoma transcript 1 (MALAT1)/miR-26a/Smad4 axis is involved in epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs). Primary human LECs were separated and cultured. Microarray analysis showed that a total of 568 lncRNAs are differentially expressed in primary HLECs in the presence of TGF-β2 and MALAT1 is mostly significantly dysregulated lncRNAs, which is increased by nearly 17-fold. In addition, upregulation of MALAT1 and downregulation of miR-26a were detected in human posterior capsule opacification (PCO) attached LECs and the LECs obtained from patients with anterior polar cataracts by quantitative RT-PCR (qRT-PCR). Next, our results showed that TGF-β2 induces overexpression of EMT markers in primary HLECs via a MALAT1-dependent mechanism. The mechanism is that MALAT1 negatively regulates miR-26a and miR-26a directly targets Smad4 by luciferase reporter assays and RNA-binding protein immunoprecipitation assay. In summary, TGF-β2 induces MALAT1 overexpression, which in turn MALAT1 acts as a ceRNA targeting Smad4 by binding miR-26a and promotes the progression of EMT of LECs."	"Differential microglia and macrophage profiles in human IDH-mutant and -wild type glioblastoma. Microglia and macrophages are the largest component of the inflammatory infiltrate in glioblastoma (GBM). However, whether there are differences in their representation and activity in the prognostically-favorable isocitrate dehydrogenase (IDH)-mutated compared to -wild type GBMs is unknown. Studies on human specimens of untreated IDH-mutant GBMs are rare given they comprise 10% of all GBMs and often present at lower grades, receiving treatments prior to dedifferentiation that can drastically alter microglia and macrophage phenotypes. We were able to obtain large samples of four previously untreated IDH-mutant GBM. Using flow cytometry, immunofluorescence techniques with automated segmentation protocols that quantify at the individual-cell level, and comparison between single-cell RNA-sequencing (scRNA-seq) databases of human GBM, we discerned dissimilarities between GBM-associated microglia and macrophages (GAMMs) in IDH-mutant and -wild type GBMs. We found there are significantly fewer GAMM in IDH-mutant GBMs, but they are more pro-inflammatory, suggesting this contributes to the better prognosis of these tumors. Our pro-inflammatory score which combines the expression of inflammatory markers (CD68/HLA-A, -B, -C/TNF/CD163/IL10/TGFB2), Iba1 intensity, and GAMM surface area also indicates that more pro-inflammatory GAMMs are associated with longer overall survival independent of IDH status. Interrogation of scRNA-seq databases demonstrates microglia in IDH-mutants are mainly pro-inflammatory, while anti-inflammatory macrophages that upregulate genes such as FCER1G and TYROBP predominate in IDH-wild type GBM. Taken together, these observations are the first head-to-head comparison of GAMMs in treatment-naïve IDH-mutant versus -wild type GBMs. Our findings highlight biological disparities in the innate immune microenvironment related to IDH prognosis that can be exploited for therapeutic purposes."	"Investigating the effect of chitosan/ polycaprolactone blends in differentiation of corneal endothelial cells and extracellular matrix compositions. This study aimed to investigate the underlying mechanisms of corneal endothelial cells (CECs) differentiation and identify the extracellular matrix (ECM) compositions using chitosan/polycaprolactone (PCL) blended membrane, hence exploring the potential use of chitosan/PCL blends in tissue engineering of CECs. We utilized the chitosan/PCL blends named as PCL25 consisting of PCL at 25% by weight. The surface characteristics of PCL25 were confirmed by using Fourier Transform Infrared Spectroscopy (FTIR) and Atomic Force Microscope (AFM). Bovine CECs were cultured on the blends, compared with TCPS and pure chitosan membrane. Cell behaviors in terms of cell attachment, proliferation, differentiation phenotype and expression of differentiation proteins were examined. Furthermore, ECM protein productions were also analyzed. From the experiments, we found the topography (roughness) of PCL25 membrane examined by AFM was greater than pure chitosan membrane. FTIR results confirmed the functional groups of C=O bond of PCL. The CECs displayed hexagonal morphology and similar proliferation rate on both PCL25 membrane and TCPS. In addition, the immunofluorescence evidence showed well-localized ZO-1 and Na<sup>+</sup>/K<sup>+</sup> ATPase expression of membrane proteins. ECM protein productions of CECs on PCL were no inferior to TCPS. Moreover, western blot results verified the higher amount of collagen type IV, and reduced TGF-β2 expression on PCL25 membrane compared to TCPS substrate. In conclusions, chitosan/PCL blends membrane provided a favorable environment for CECs in terms of ECM compositions, therefore enhancing the growth and differentiation. Accordingly, for CEC tissue engineering applications, PCL 25 might be a suitable alternative for cadaveric cornea transplantation in the near future."	"Interleukin-10 and Transforming Growth Factor Beta1 Gene Polymorphisms in Chronic Heart Failure. As cytokines, including interleukin-10 (IL-10) and transforming growth factor beta 1(TGF-β1) seem to contribute towards the pathogenesis of chronic heart failure (CHF), this study was performed to assess the associations of certain single nucleotide polymorphisms (SNPs) of these genes in a case control study. This investigation was carried out to determine the frequency of alleles, genotypes and haplotypes of TGF-β1 and IL-10 single-nucleotide polymorphisms (SNPs) in 57 Iranian patients with CHF compared with 140 healthy subjects using polymerase chain reaction with sequence-specific primers method. Results of the analyzed data divulged a negative association for both TGF-β1 GC genotype at codon 25 (P=0.047) and CT genotype at codon 10 (P=0.018) and CHF proneness. Although, TGF-β1 CC genotype at codon 10 was found to be positively associated with CHF (P=0.011). Moreover, the frequency of IL-10 (-1082, -819, -592) ATA haplotype and TGF-β1 (codon 10, codon 25) TG haplotype were significantly lower in the patients group (P=0.004 and P=0.040, respectively), while TGF-β1 (codon 10, codon 25) CG haplotype was overrepresented in patients with CHF (P=0.007). Cytokine gene polymorphisms might affect vulnerability to CHF. Particular genotypes and haplotypes in IL-10 and TGF-β1 genes could render individuals more susceptible to CHF."	"Effect of Low-Intensity Pulsed Ultrasound Stimulation, Extracorporeal Shockwaves and Radial Pressure Waves on Akt, BMP-2, ERK-2, FAK and TGF-β1 During Bone Healing in Rat Tibial Defects. An experimental study was conducted to determine whether low-intensity pulsed ultrasound stimulation (LIPUS), extracorporeal shockwave treatment (ESWT) and radial pressure wave treatment (RPWT) modulate Akt, bone morphogenetic protein-2 (BMP-2), extracellular signal-regulated kinase-2 (ERK-2), focal adhesion kinase (FAK) and transforming growth factor-β1 (TGF-β1) during bone healing in rat tibial defects. Rat tibial defects were exposed to 500 shots of ESWT delivered at 0.12 mJ/mm<sup>2</sup>, 500 impulses of RPWT operated at 2.0 bar or to daily 20-min 30 mW/cm<sup>2</sup> LIPUS. Following 1, 3 and 6 wk, bones were harvested to determine the expression and activity of Akt, BMP-2, ERK-2, FAK and TGF-β1. Animals exposed to ultrasound were followed up to 3 wk. Protein expression and activity were unchanged following LIPUS treatment. ESWT increased Akt activity 2.11-fold (p = 0.043) and TGF-β1 expression 9.11-fold (p = 0.016) at 1 wk and increased FAK activity 2.16-fold (p = 0.047) at 3 wk. RPWT increased FAK activity 2.6-fold (p = 0.028) at 3 wk and decreased Akt expression 0.52-fold (p = 0.05) at 6 wk. In conclusion, the protocols employed for ESWT and RPWT modulated distinct signaling pathways during fracture healing, while LIPUS standard protocol did not change the usual signaling pathways of the proteins investigated. Future studies are required to monitor osteogenesis so that the biologic meaning of our results can be clarified."	"Fibroblast growth factor signals regulate transforming growth factor-β-induced endothelial-to-myofibroblast transition of tumor endothelial cells via Elk1. The tumor microenvironment contains various components, including cancer cells, tumor vessels, and cancer-associated fibroblasts, the latter of which are comprised of tumor-promoting myofibroblasts and tumor-suppressing fibroblasts. Multiple lines of evidence indicate that transforming growth factor-β (TGF-β) induces the formation of myofibroblasts and other types of mesenchymal (non-myofibroblastic) cells from endothelial cells. Recent reports show that fibroblast growth factor 2 (FGF2) modulates TGF-β-induced mesenchymal transition of endothelial cells, but the molecular mechanisms behind the signals that control transcriptional networks during the formation of different groups of fibroblasts remain largely unclear. Here, we studied the roles of FGF2 during the regulation of TGF-β-induced mesenchymal transition of tumor endothelial cells (TECs). We demonstrated that auto/paracrine FGF signals in TECs inhibit TGF-β-induced endothelial-to-myofibroblast transition (End-MyoT), leading to suppressed formation of contractile myofibroblast cells, but on the other hand can also collaborate with TGF-β in promoting the formation of active fibroblastic cells which have migratory and proliferative properties. FGF2 modulated TGF-β-induced formation of myofibroblastic and non-myofibroblastic cells from TECs via transcriptional regulation of various mesenchymal markers and growth factors. Furthermore, we observed that TECs treated with TGF-β were more competent in promoting in vivo tumor growth than TECs treated with TGF-β and FGF2. Mechanistically, we showed that Elk1 mediated FGF2-induced inhibition of End-MyoT via inhibition of TGF-β-induced transcriptional activation of α-smooth muscle actin promoter by myocardin-related transcription factor-A. Our data suggest that TGF-β and FGF2 oppose and cooperate with each other during the formation of myofibroblastic and non-myofibroblastic cells from TECs, which in turn determines the characteristics of mesenchymal cells in the tumor microenvironment."	"Effects of Salidroside on Trabecular Meshwork Cell Extracellular Matrix Expression and Mouse Intraocular Pressure. Excessive accumulation of extracellular matrix (ECM) in the trabecular meshwork (TM) reduces aqueous humor outflow, which likely contributes to elevation of IOP in primary open-angle glaucoma (POAG). Salidroside, a phenolic glycoside isolated from Rhodiola rosea is reported to prevent profibrotic responses by inhibiting Smad signaling pathway activated by TGF-β in liver, lung, and kidney tissues. We tested if salidroside can (1) inhibit TGF-β2-induced ECM expression in cultured human TM cells, and (2) lower TGF-β2-induced ocular hypertension in the mouse. Cultured human TM cells stimulated with 5 ng/mL TGF-β2 for 48 hours were treated with salidroside for 24 hours. The expressions of fibronectin (FN), collagen type IV (COL-IV), and laminin (LN) were evaluated by quantitative PCR, Western blot, and immunocytochemistry. BALB/cJ mice were injected intravitreally with an adenoviral vector encoding a bioactive mutant of TGF-β2 (Ad.hTGF-β2226/228) in one eye to induce ocular hypertension, with the uninjected contralateral or Ad.Empty-injected eyes serving as controls. Mice were treated with a daily intraperitoneal injection of 40 mg/kg salidroside. Conscious mouse IOP values were measured using a TonoLab rebound tonometer. In cultured human TM cells, treatment with TGF-β2 increased expressions of FN, COL-IV, and LN, as assessed by quantitative PCR, Western blotting, and immunocytochemistry, all of which were significantly and completely ameliorated by 30 μM salidroside. Daily intraperitoneal injections of salidroside (40 mg/kg), starting either at day 0 (same day as Ad.hTGF-β2226/228 injection) or at day 14, significantly lowered TGF-β2-induced ocular hypertension in the mouse. In contrast, salidroside did not affect IOP of control eyes. These results demonstrated that salidroside is capable of minimizing TGF-β2-induced ECM expression in cultured human TM cells. It also reduced TGF-β2-induced ocular hypertension in the mouse. These findings indicate that this phenolic glycoside may be useful as a novel treatment for POAG."	"Distinct roles of myofibroblast-specific Smad2 and Smad3 signaling in repair and remodeling of the infarcted heart. TGF-βs regulate fibroblast responses, by activating Smad2 or Smad3 signaling, or via Smad-independent pathways. We have previously demonstrated that myofibroblast-specific Smad3 is critically implicated in repair of the infarcted heart. However, the role of fibroblast Smad2 in myocardial infarction remains unknown. This study investigates the role of myofibroblast-specific Smad2 signaling in myocardial infarction, and explores the mechanisms responsible for the distinct effects of Smad2 and Smad3. In a mouse model of non-reperfused myocardial infarction, Smad2 activation in infarct myofibroblasts peaked 7 days after coronary occlusion. In vitro, TGF-β1, -β2 and -β3, but not angiotensin 2 and bone morphogenetic proteins-2, -4 and -7, activated fibroblast Smad2. Myofibroblast-specific Smad2 and Smad3 knockout mice (FS2KO, FS3KO) and corresponding control littermates underwent non-reperfused infarction. In contrast to the increase in rupture rates and adverse remodeling in FS3KO mice, FS2KO animals had mortality comparable to Smad2 fl/fl controls, and exhibited a modest but transient improvement in dysfunction after 7 days of coronary occlusion. At the 28 day timepoint, FS2KO and Smad2 fl/fl mice had comparable adverse remodeling. Although both FS3KO and FS2KO animals had increased myofibroblast density in the infarct, only FS3KO mice exhibited impaired scar organization, associated with perturbed alignment of infarct myofibroblasts. In vitro, Smad3 but not Smad2 knockdown downmodulated fibroblast α2 and α5 integrin expression. Moreover, Smad3 knockdown reduced expression of the GTPase RhoA, whereas Smad2 knockdown markedly increased fibroblast RhoA levels. Smad3-dependent integrin expression may be important for fibroblast activation, whereas RhoA may transduce planar cell polarity pathway signals, essential for fibroblast alignment. Myofibroblast-specific Smad3, but not Smad2 is required for formation of aligned myofibroblast arrays in the infarct. The distinct in vivo effects of myofibroblast Smad2 and Smad3 may involve Smad3-dependent integrin synthesis, and contrasting effects of Smad2 and Smad3 on RhoA expression."	"Evaluation of pro‑ and anti‑tumor effects induced by three colony‑stimulating factors, G‑CSF, GM‑CSF and M‑CSF, in bladder cancer cells: Is G‑CSF a friend of bladder cancer cells? Cytotoxic chemotherapy is the standard treatment for patients with advanced bladder cancer. However, this treatment can cause transient and prolonged neutropenia, which can result in fatal infection. Three recombinant human colony‑stimulating factors (CSFs), granulocyte CSF (G‑CSF), granulocyte‑macrophage CSF (GM‑CSF), and macrophage CSF (M‑CSF), are currently available to reduce the duration and degree of neutropenia. The present study investigated the pro‑ and anti‑tumor effects of these three CSFs and the changes in molecular profiles. Xenograft tumors in athymic mice were generated by subcutaneously inoculating the human bladder cancer cell lines MGH‑U3 and UM‑UC‑3. A total of 2 weeks after cell inoculation, mice were randomly divided into four groups (control, G‑CSF, GM‑CSF and M‑CSF) and treated thrice a week for 2 weeks. Tumor growth during monitoring and tumor weight at the time of euthanization were significantly higher in mice treated with G‑CSF and lower in mice treated with GM‑CSF compared with the control mice. Tumors were examined by immunostaining with antibodies against proteins associated tumor proliferation (Ki‑67), angiogenesis [CD31 and vascular endothelial growth factor (VEGF)], anti‑immunity (CD204) and epithelial‑mesenchymal transition (EMT; E‑cadherin). Immunohistochemical staining revealed that tumor proliferation, angiogenesis, recruitment of M2 macrophages and EMT were promoted by G‑CSF, whereas lymphangiogenesis and recruitment of M2 macrophages were inhibited by GM‑CSF. Treatment‑associated changes in serum pro‑ and anti‑tumoral cytokines and chemokines were evaluated by enzyme‑linked immunosorbent assay (ELISA)‑based arrays. In the ELISA for serum, the levels of cytokines associated with angiogenesis (interleukin‑6 and VEGF), and EMT (transforming growth factor‑β1 and ‑β2) were elevated in mice treated with G‑CSF. Treatment with GM‑CSF and M‑CSF also affected the level of these cytokines characteristically. The current results indicate that administration of exogenous G‑CSF to patients with bladder cancer promotes tumor growth through promotion of cell proliferation, angiogenesis, recruitment of M2 macrophages and enhancement of EMT through the modulation of the tumor microenvironment."	"Hyper-O-GlcNAcylation promotes epithelial-mesenchymal transition in endometrial cancer cells. Diabetic women have a 2-3 fold increased risk of developing endometrial cancer, however, the molecular aspects of this risk are not fully understood. This study investigated the alteration of cellular O-GlcNAcylation of proteins as the potential mechanistic connection between these two conditions. The endometrial cancer cell line (Ishikawa) was utilized to study the effect of dysregulation of O-GlcNAcylation on epithelial mesenchymal transition (EMT). Hyper-O-GlcNAcylation (via 1 μM Thiamet-G/ThmG or 25 mM Glucose) enhanced the expression of EMT-associated genes (WNT5B and FOXC2), and protein expression of the EMT adhesion molecule, N-Cadherin. Reorganization of stress filaments (actin filaments), consistent with EMT, was also noted in ThmG-treated cells. Interestingly, Hypo-O-GlcNAcylation (via 50 μM OSMI-1) also upregulated WNT5B, inferring that any disruption to O-GlcNAc cycling impacts EMT. However, Hypo-O-GlcNAcylation reduced overall cellular proliferation/migration and the expression of pro-EMT genes (AHNAK, TGFB2, FGFBP1, CALD1, TFPI2). In summary, disruption of O-GlcNAc cycling (i.e., Hyper- or Hypo-O-GlcNAcylation) promoted EMT at both the molecular and cellular levels, but only Hyper-O-GlcNAcylation provoked cellular proliferation/migration, and cytoskeletal reorganization."	"Down-regulation expression of TGFB2-AS1 inhibits the proliferation, migration, invasion and induces apoptosis in HepG2 cells. Hepatocellular carcinoma (HCC) is the leading cause of cancer mortality and without effective prognosis. Previous study has been confirmed that the abnormal expression of long non-coding RNAs (lncRNAs) TGFB2-AS1 was involved in tumorigenesis. However, the biological functions of TGFB2-AS1 in hepatocellular carcinoma (HCC) remain largely unclear. We comprehensively assess the clinical significance of TGFB2-AS1 and investigate the biological functions of TGFB2-AS1 on HCC HepG2 cells. We firstly confirmed the expression of TGFB2-AS1 between tumor and normal tissues using public available transcriptome data. We analyzed the clinical significance of TGFB2-AS1 using the TCGA HCC datasets. The biological functions of TGFB2-AS1 on HCC HepG2 cells were explored by multiple in vitro assays. We found that TGFB2-AS1 was remarkably increased in HCC tissues (P = 0.00148) and exhibited a potential predictive marker for HCC, with an area under curve (AUC) of 0.708 (P = 0.0034) using the fifty pairs of matched HCC tissues of TCGA. Besides, higher expression of TGFB2-AS1 in HCC tissues was identified as being positively associated with advanced tumor (P = 0.012) and disease stage (P = 0.009) in 355 HCC cases using independent sample nonparametric test. Downregulation of TGFB2-AS1 expression significantly restrained proliferation (P &lt; 0.01) and impaired colony formation (P &lt; 0.05). Furthermore, TGFB2-AS1 depletion remarkably promoted the apoptosis of HepG2 cells (P &lt; 0.05) and inhibited migration and invasion (P &lt; 0.01). Taken together, these findings suggested that TGFB2-AS1 might serve as a potential therapeutic target for HCC."	"Transforming growth factor beta in human milk and allergic outcomes in children: A systematic review. Human milk (HM) transforming growth factor beta (TGF-β) is critical for inflammation regulation and oral tolerance promotion. Previous reports suggested that variations in HM TGF-β levels are associated with allergic outcomes. We undertook a systematic review (PROSPERO 2017 CRD42017069920) to reassess the evidence on the relationships between HM TGF-β and allergic outcomes in children. Electronic bibliographic databases (MEDLINE, EMBASE and Cochrane Library) were systematically searched. Two independent reviewers screened reference lists, extracted the data and assessed risk of bias using the National Institute for Clinical Excellence methodological checklist. A total of 21 studies were identified. Sixteen studies assessed relationships between HM TGF-β and risk of eczema; 14, allergic sensitization; nine, wheezing/asthma; six, food allergy; three, allergic rhinitis/conjunctivitis. Five cohorts (5/18, 28%) reported a protective effect of TGF-β1, while 3 (3/10, 30%) suggested increased risk of allergic outcomes development and 1 (1/10, 10%), a protective effect of TGF-β2 on eczema. Meta-analysis was not possible due to significant heterogeneity in methodology, age of outcome assessment and differing statistical approaches. 71% (15/21) of studies carried a high risk of bias. In contrast with previous findings, we did not find strong evidence of associations between HM TGF-β and allergic outcomes. Differences in studies' methodology and outcomes do not allow unconditional rejection or acceptance of the hypothesis that HM TGF-β influences the risk of allergy development. Future studies on diverse populations employing standardized methods, accurate phenotyping of outcomes and evaluation of the effect of TGF-β in combination with other HM immune markers, microbiome and oligosaccharides are required."	"miR-30a reverses TGF-β2-induced migration and EMT in posterior capsular opacification by targeting Smad2. Posterior capsular opacification (PCO) leads to secondary vision loss following cataract surgery. TGF-β2 and miRNA play important roles in PCO. The aim of this study was to investigate the reciprocal crosstalk between miR-30a and TGF-β2/Smad2 during PCO progression. The expressions of and relationship between miR-30a and Smad2 were detected by RT-qPCR. Migration and epithelial-mesenchymal transition (EMT) were used to evaluate the functions of miR-30a and TGF-β2/Smad2. We found that miR-30a was downregulated by TGF-β2 and that it suppressed migration and EMT induced by TGF-β2. Moreover, we identified Smad2 as a direct target of miR-30a, suggesting that miR-30a may function partly through regulating Smad2. Altogether, we verified the function of and crosstalk between miR-30a and TGF-β2. We also provide evidence that miR-30a may serve as a potential candidate for PCO treatment."	"TGF-β2 is an exercise-induced adipokine that regulates glucose and fatty acid metabolism. Exercise improves health and well-being across diverse organ systems, and elucidating mechanisms underlying the beneficial effects of exercise can lead to new therapies. Here, we show that transforming growth factor-β2 (TGF-β2) is secreted from adipose tissue in response to exercise and improves glucose tolerance in mice. We identify TGF-β2 as an exercise-induced adipokine in a gene expression analysis of human subcutaneous adipose tissue biopsies after exercise training. In mice, exercise training increases TGF-β2 in scWAT, serum, and its secretion from fat explants. Transplanting scWAT from exercise-trained wild type mice, but not from adipose tissue-specific Tgfb2-/- mice, into sedentary mice improves glucose tolerance. TGF-β2 treatment reverses the detrimental metabolic effects of high fat feeding in mice. Lactate, a metabolite released from muscle during exercise, stimulates TGF-β2 expression in human adipocytes. Administration of the lactate-lowering agent dichloroacetate during exercise training in mice decreases circulating TGF-β2 levels and reduces exercise-stimulated improvements in glucose tolerance. Thus, exercise training improves systemic metabolism through inter-organ communication with fat via a lactate-TGF-β2-signaling cycle."	"Silencing fibroblast growth factor 7 inhibits krypton laser-induced choroidal neovascularization in a rat model. Choroidal neovascularization (CNV), a characteristic of age-related macular degeneration, is an underlying cause of severe vision loss among elderly patients. Fibroblast growth factor (FGF) is suggested to exert an important role in the pathogenesis of CNV. However, the molecular mechanisms governing this event are not fully elucidated. Herein, we identified the potential role of FGF7 in CNV. To examine the roles of FGF7 in the progression of CNV, rat CNV models were established and treated with small interfering RNA (siRNA) against FGF7 or FGF7 overexpression, followed by identification of expression of FGF7 in the CNV modeled rats. Next, proliferation and migration, and in vitro tube formation of human umbilical vein endothelial cells, as well as expression of vascular endothelial growth factor (VEGF) and transforming growth factor-beta 2 (TGF-β2) were evaluated. CNV led to upregulated FGF7 expression. Cells in the presence of FGF7 siRNA showed suppressed proliferation, migration, and tube formation, along with downregulated VEGF and TGF-β2 expression. Taken together, functional suppression of FGF7 inhibited the onset of CNV, ultimately highlighting a novel therapeutic target for suppressing CNV progression."	"NEAT1 regulates neuroglial cell mediating Aβ clearance via the epigenetic regulation of endocytosis-related genes expression. The accumulation of intracellular β-amyloid peptide (Aβ) is important pathological characteristic of Alzheimer's disease (AD). However, the exact underlying molecular mechanism remains to be elucidated. Here, we reported that Nuclear Paraspeckle Assembly Transcript 1 (NEAT1), a long n on-coding RNA, exhibits repressed expression in the early stage of AD and its down-regulation declines neuroglial cell mediating Aβ clearance via inhibiting expression of endocytosis-related genes. We find that NEAT1 is associated with P300/CBP complex and its inhibition affects H3K27 acetylation (H3K27Ac) and H3K27 crotonylation (H3K27Cro) located nearby to the transcription start site of many genes, including endocytosis-related genes. Interestingly, NEAT1 inhibition down-regulates H3K27Ac but up-regulates H3K27Cro through repression of acetyl-CoA generation. NEAT1 also mediates the binding between STAT3 and H3K27Ac but not H3K27Cro. Therefore, the decrease of H3K27Ac and/or the increase of H3K27Cro declines expression of multiple related genes. Collectively, this study first reveals the different roles of H3K27Ac and H3K27Cro in regulation of gene expression and provides the insight of the epigenetic regulatory mechanism of NEAT1 in gene expression and AD pathology."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Circulating growth/differentiation factor 15 is associated with human CD56<sup>bright</sup> natural killer cell dysfunction and nosocomial infection in severe systemic inflammation. Systemic inflammation induced by sterile or infectious insults is associated with an enhanced susceptibility to life-threatening opportunistic, mostly bacterial, infections due to unknown pathogenesis. Natural killer (NK) cells contribute to the defence against bacterial infections through the release of Interferon (IFN) γ in response to Interleukin (IL) 12. Considering the relevance of NK cells in the immune defence we investigated whether the function of NK cells is disturbed in patients suffering from serious systemic inflammation. NK cells from severely injured patients were analysed from the first day after the initial inflammatory insult until the day of discharge in terms of IL-12 receptor signalling and IFN-γ synthesis. During systemic inflammation, the expression of the IL-12 receptor β2 chain, phosphorylation of signal transducer and activation 4, and IFN-γ production on/in NK cells was impaired upon exposure to Staphylococcus aureus. The profound suppression of NK cells developed within 24 h after the initial insult and persisted for several weeks. NK cells displayed signs of exhaustion. Extrinsic changes were mediated by the early and long-lasting presence of growth/differentiation factor (GDF) 15 in the circulation that signalled through the transforming growth factor β receptor I and activated Smad1/5. Moreover, the concentration of GDF-15 in the serum inversely correlated with the IL-12 receptor β2 expression on NK cells and was enhanced in patients who later acquired septic complications. GDF-15 is associated with the development of NK cell dysfunction during systemic inflammation and might represent a novel target to prevent nosocomial infections. FUND: The study was supported by the Department of Orthopaedics and Trauma Surgery, University Hospital Essen."	"Higher TGF-β2 Level in the Aqueous Humor of the Second Eye Versus the First Eye in the Course of Sequential Cataract Surgery. Purpose: To assess the differences in cytokine levels in the aqueous humor (AH) of bilateral eyes receiving sequential phacoemulsification and intraocular lens implantation.Methods: The levels of 33 cytokines in AH samples collected from separate single-eye operations of 26 age-related cataract patients who experiencing sequential cataract surgery were compared between the first-eye and second-eye groups.Results: The AH level of transforming growth factor beta 2 (TGF-β2), an immunosuppression regulator, in the second-eye group was significantly higher than that in the first-eye group (p = 0.002). No differences in the concentrations or detection rates of other cytokines were observed between the first- and second-eye groups.Conclusion: During bilateral sequential cataract surgery, the AH of the second eye had a higher level of TGF-β2 but not of proinflammatory cytokines or chemokines compared with those in the first eye, implying a protective mechanism preventing the sympathetic immune reaction induced by the first-eye cataract surgery."	"Lung cancer deficient in the tumor suppressor GATA4 is sensitive to TGFBR1 inhibition. Lung cancer is the leading cause of cancer-related deaths worldwide. Tumor suppressor genes remain to be systemically identified for lung cancer. Through the genome-wide screening of tumor-suppressive transcription factors, we demonstrate here that GATA4 functions as an essential tumor suppressor in lung cancer in vitro and in vivo. Ectopic GATA4 expression results in lung cancer cell senescence. Mechanistically, GATA4 upregulates multiple miRNAs targeting TGFB2 mRNA and causes ensuing WNT7B downregulation and eventually triggers cell senescence. Decreased GATA4 level in clinical specimens negatively correlates with WNT7B or TGF-β2 level and is significantly associated with poor prognosis. TGFBR1 inhibitors show synergy with existing therapeutics in treating GATA4-deficient lung cancers in genetically engineered mouse model as well as patient-derived xenograft (PDX) mouse models. Collectively, our work demonstrates that GATA4 functions as a tumor suppressor in lung cancer and targeting the TGF-β signaling provides a potential way for the treatment of GATA4-deficient lung cancer."	"Bioreactor-Controlled Physoxia Regulates TGF-β Signaling to Alter Extracellular Matrix Synthesis by Human Chondrocytes. Culturing articular chondrocytes under physiological oxygen tension exerts positive effects on their extracellular matrix synthesis. The underlying molecular mechanisms which enhance the chondrocytic phenotype are, however, still insufficiently elucidated. The TGF-β superfamily of growth factors, and the prototypic TGF-β isoforms in particular, are crucial in maintaining matrix homeostasis of these cells. We employed a feedback-controlled table-top bioreactor to investigate the role of TGF-β in microtissues of human chondrocytes over a wider range of physiological oxygen tensions (i.e., physoxia). We compared 1%, 2.5%, and 5% of partial oxygen pressure (pO₂) to the 'normoxic' 20%. We confirmed physoxic conditions through the induction of marker genes (PHD3, VEGF) and oxygen tension-dependent chondrocytic markers (SOX9, COL2A1). We identified 2.5% pO₂ as an oxygen tension optimally improving chondrocytic marker expression (ACAN, COL2A1), while suppressing de-differentiation markers (COL1A1,COL3A1). Expression of TGF-β isoform 2 (TGFB2) was, relatively, most responsive to 2.5% pO₂, while all three isoforms were induced by physoxia. We found TGF-β receptors ALK1 and ALK5 to be regulated by oxygen tension on the mRNA and protein level. In addition, expression of type III co-receptors betaglycan and endoglin appeared to be regulated by oxygen tension as well. R-Smad signaling confirmed that physoxia divergently regulated phosphorylation of Smad1/5/8 and Smad2/3. Pharmacological inhibition of canonical ALK5-mediated signaling abrogated physoxia-induced COL2A1 and PAI-1 expression. Physoxia altered expression of hypertrophy markers and that of matrix metalloproteases and their activity, as well as expression ratios of specific proteins (Sp)/Krüppel-like transcription factor family members SP1 and SP3, proving a molecular concept of ECM marker regulation. Keeping oxygen levels tightly balanced within a physiological range is important for optimal chondrocytic marker expression. Our study provides novel insights into transcriptional regulations in chondrocytes under physoxic in vitro conditions and may contribute to improving future cell-based articular cartilage repair strategies."	"Aqueous Humor Cytokines and Long-Term Response to Anti-Vascular Endothelial Growth Factor Therapy in Diabetic Macular Edema. To determine the association of aqueous humor cytokine concentrations with long-term treatment response to anti-vascular endothelial growth factor (VEGF) agents in diabetic macular edema (DME). Retrospective case series. Pooled data of aqueous humor cytokine concentrations collected at baseline and 2-month follow-up (2 injections) for treatment-naïve eyes with center-involving DME previously enrolled in a prospective study were reviewed. Subjects receiving intravitreal anti-VEGF injections outside of study protocol as per standard of care were classified into Responders versus Nonresponders based on qualitative assessment of optical coherence tomography for persistence of DME at longitudinal follow-up visits. Of the 41 eyes, 85% were classified as Responders with a significant decline in baseline central subfield thickness and macular volume (P values &lt; .001), and 15% were identified as Nonresponders to anti-VEGF therapy over 51.4 ± 18.7 months of follow-up. No significant difference in baseline aqueous humor VEGF concentration was noted, while at the 2-month follow-up the Nonresponder group had a significantly higher VEGF concentration compared with the Responder group (451.5 ± 690.9 pg/mL vs 113.7 ± 211.4 pg/mL; P = .02). The Responder group also demonstrated a significant decline from baseline to 2-month follow-up in concentration of intercellular adhesion molecule-1 (P &lt; .001), interleukin-10 (P = .041), monocyte chemotactic protein-1 (P = .046), placental growth factor (P = .027), and transforming growth factor-β2 (P = .017). Aqueous humor cytokine concentrations serve as an early biomarker for long-term response to anti-VEGF therapy and may enable more effective treatment regimens that improve anatomical outcomes in eyes with DME."	"Long noncoding RNA CA7-4 promotes autophagy and apoptosis via sponging MIR877-3P and MIR5680 in high glucose-induced vascular endothelial cells. Vascular endothelial cells (VECs) that form the inner wall of blood vessels can be injured by high glucose-induced autophagy and apoptosis. Although the role of long noncoding RNA in regulating cell fate has received widespread attention, long noncoding RNAs (lncRNAs) that can both regulate autophagy and apoptosis need to be discovered. In this study, we identified that a small chemical molecule, 3-benzyl-5-([2-nitrophenoxy] methyl)-dihydrofuran-2(3H)-one (3BDO), synthesized by us, could inhibit VEC autophagy and apoptosis induced by a high concentration of glucose. To find new lncRNAs that regulate autophagy and apoptosis in VECs, we performed lncRNA microarray analysis. We found and verified an upregulated lncRNA named CA7-4 that was induced by a high concentration of glucose could be downregulated by 3BDO most obviously among all of the detected lncRNAs. Meanwhile, we investigated the mechanism of CA7-4 in regulating VEC autophagy and apoptosis. The results showed that CA7-4 facilitated endothelial autophagy and apoptosis as a competing endogenous RNA (ceRNA) by decoying MIR877-3P and MIR5680. Further study elucidated that MIR877-3P could trigger the decrease of CTNNBIP1 (catenin beta interacting protein 1) by combining with its 3' UTR and then upregulating CTNNB1 (catenin beta 1); MIR5680 inhibited the phosphorylation of AMP-activated protein kinase (AMPK) by targeting and decreasing DPP4 (dipeptidyl peptidase 4). Therefore, CA7-4, MIR877-3P and MIR5680 represent new signal pathways that regulate VEC autophagy and apoptosis under the high-glucose condition.Abbreviations: 3BDO: 3-benzyl-5-([2-nitrophenoxy] methyl)-dihydrofuran-2(3H)-one; 3' UTR: 3' untranslated region; AGO2: argonaute RISC catalytic component 2; AMPK: AMP-activated protein kinase/protein kinase AMP-activated; BAX/BCL2L4: BCL2 associated X, apoptosis regulator; BCL2: BCL2 apoptosis regulator; CASP3: caspase 3; ceRNA: competing endogenous RNA; CTNNB1: catenin beta 1; CTNNBIP1/ICAT: catenin beta interacting protein 1; DPP4: dipeptidyl peptidase 4; FGF2/FGF-2: fibroblast growth factor 2; HG: high concentration glucose (30 mM glucose); lncRNA: long noncoding RNA; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; miRNA: microRNA; MIR4778-3P: microRNA 4778-3p; MIR561-3P: microRNA 561-3p; MIR5680: microRNA 5680; MIR877-3P: microRNA 877-3p; MTOR: mechanistic target of rapamycin kinase; Mut: mutant; NC: negative control; NG: normal concentration glucose (5.5 mM glucose); PARP1: poly(ADP-ribose) polymerase 1; qPCR: quantitative real-time PCR; RNA-FISH: RNA-fluorescence in situ hybridization; ROS: reactive oxygen species; RT-PCR: reverse transcription polymerase chain reaction; siRNA: small interfering RNA; SQSTM1: sequestosome 1; TGFB2-OT1: TGFB2 overlapping transcript 1; TUNEL: terminal deoxynucleotidyl transferase dUTP nick end labeling; VECs: vascular endothelial cells; WT: wild type."	"miR-193a/b-3p relieves hepatic fibrosis and restrains proliferation and activation of hepatic stellate cells. MicroRNAs (miRNAs) have been confirmed to participate in liver fibrosis progression and activation of hepatic stellate cells (HSCs). In this study, the role of miR-193a/b-3p in concanavalin A (ConA)-induced liver fibrosis in mice was evaluated. According to the results, the expression of miR-193a/b-3p was down-regulated in liver tissues after exposure to ConA. Lentivirus-mediated overexpression of miR-193a/b-3p reduced ConA-induced liver injury as demonstrated by decreasing ALT and AST levels. Moreover, ConA-induced liver fibrosis was restrained by the up-regulation of miR-193a/b-3 through inhibiting collagen deposition, decreasing desmin and proliferating cell nuclear antigen (PCNA) expression and lessening the content of hydroxyproline, transforming growth factor-β1 (TGF-β1) and activin A in liver tissues. Furthermore, miR-193a/b-3p mimics suppressed the proliferation of human HSCs LX-2 via inducing the apoptosis of LX-2 cells and lowering the levels of cell cycle-related proteins Cyclin D1, Cyclin E1, p-Rb and CAPRIN1. Finally, TGF-β1 and activin A-mediated activation of LX-2 cells was reversed by miR-193a/b-3p mimics via repressing COL1A1 and α-SMA expression, and restraining the activation of TGF-β/Smad2/3 signalling pathway. CAPRIN1 and TGF-β2 were demonstrated to be the direct target genes of miR-193a/b-3p. We conclude that miR-193a/b-3p overexpression attenuates liver fibrosis through suppressing the proliferation and activation of HSCs. Our data suggest that miR-193a-3p and miR-193b-3p may be new therapeutic targets for liver fibrosis."	"Potential function of TGF-β isoforms in maturation-stage ameloblasts. To investigate potential functions of transforming growth factor-beta (TGF-β) isoforms in maturation-stage ameloblasts during amelogenesis. In vivo activation of TGF-β was characterized by using matrix metalloproteinase 20 null (Mmp20<sup>-/-</sup>) and wild-type (Mmp20<sup>+/+</sup>) mice. Using mHAT9d cells cultured in the presence of each TGF-β isoform, (1) cell proliferation was determined by MTS assay, (2) immunostaining with anti-cleaved caspase-3 monoclonal antibody was performed and apoptotic indices were measured, (3) gene expression was analyzed by RT-qPCR, and (4) the uptake of amelogenin into mHAT9d cells was directly observed using a fluorescence microscope. TGF-β1 and TGF-β3 were present in the enamel matrix of developing teeth which were activated by MMP20 in vivo. A genetic study revealed that the three TGF-β isoforms upregulate kallikrein 4 (KLK4) mRNA levels but downregulate carbonic anhydrase II. Moreover, TGF-β1 and TGF-β2 significantly upregulated the mRNA level of amelotin, whereas TGF-β3 dramatically downregulated the mRNA levels of odontogenic ameloblast-associated protein (ODAM), family with sequence similarity 83 member H (FAM83H), and alkaline phosphatase (ALP). Immunostaining analysis showed that the apoptosis of mHAT9d cells is induced by three TGF-β isoforms, with TGF-β3 being most effective. Both TGF-β1 and TGF-β3 induced endocytosis of amelogenin. We propose that TGF-β is regulated in an isoform-specific manner to perform multiple biological functions such as gene expression related to the structure of basal lamina/ameloblasts, mineral ion transport, apoptosis, and endocytosis in maturation-stage ameloblasts."	"MiR-378a suppresses tenogenic differentiation and tendon repair by targeting at TGF-β2. Tendons are a crucial component of the musculoskeletal system and responsible for transmission forces derived from muscle to bone. Patients with tendon injuries are often observed with decreased collagen production and matrix degeneration, and healing of tendon injuries remains a challenge as a result of limited understanding of tendon biology. Recent studies highlight the contribution of miR-378a on the regulation gene expression during tendon differentiation. We examined the tendon microstructure and tendon repair with using miR-378a knock-in transgenic mice, and the tendon-derived stem cells were also isolated from transgenic mice to study their tenogenic differentiation ability. Meanwhile, the expression levels of tenogenic markers were also examined in mouse tendon-derived stem cells transfected with miR-378a mimics during tenogenic differentiation. With using online prediction software and luciferase reporter assay, the binding target of miR-378a was also studied. Our results indicated miR-378a impairs tenogenic differentiation and tendon repair by inhibition collagen and extracellular matrix production both in vitro and in vivo. We also demonstrated that miR-378a exert its inhibitory role during tenogenic differentiation through binding at TGFβ2 by luciferase reporter assay and western blot. Our investigation suggests that miR-378a could be considered as a new potential biomarker for tendon injury diagnosis or drug target for a possible therapeutic approach in future clinical practice."	"High olive oil diets enhance cervical tumour growth in mice: transcriptome analysis for potential candidate genes and pathways. Numerous epidemiologic studies have found a close association between obesity and cancer. Dietary fat is a fundamental contributor to obesity and is a risk factor for cancer. Thus far, the impact of dietary olive oil on cancer development remains inconclusive, and little is known about its underlying mechanisms. Nude mouse xenograft models were used to examine the effects of high olive oil diet feeding on cervical cancer (CC) development and progression. Cell proliferation, migration and invasion were observed by the methods of EdU incorporation, Wound healing and Transwell assay, separately. RNA-sequencing technology and comprehensive bioinformatics analyses were used to elucidate the molecular processes regulated by dietary fat. Differentially expressed genes (DEGs) were identified and were functionally analyzed by Gene Ontology (GO), Kyoto Enrichment of Genes and Genomes (KEGG). Then, protein-protein interaction (PPI) network and sub-PPI network analyses were conducted using the STRING database and Cytoscape software. A high olive oil diet aggravated tumourigenesis in an experimental xenograft model of CC. Oleic acid, the main ingredient of olive oil, promoted cell growth and migration in vitro. Transcriptome sequencing analysis of xenograft tumour tissues was then performed to elucidate the regulation of molecular events regulated by dietary fat. Dietary olive oil induced 648 DEGs, comprising 155 up-regulated DEGs and 493 down-regulated DEGs. GO and pathway enrichment analysis revealed that some of the DEGs including EGR1 and FOXN2 were involved in the transcription regulation and others, including TGFB2 and COL4A3 in cell proliferation. The 15 most strongly associated DEGs were selected from the PPI network and hub genes including JUN, TIMP3, OAS1, OASL and EGR1 were confirmed by real-time quantitative PCR analysis. Our study suggests that a high olive oil diet aggravates CC progression in vivo and in vitro. We provide clues to build a potential link between dietary fat and cancerogenesis and identify areas requiring further investigation."	"The predictive value of β2-MG and TGF-β for elderly hypertensive nephropathy. Predictive value of β2-microglobulin (β2-MG) and transforming growth factor-β (TGF-β) for elderly hypertensive nephropathy was investigated. The clinical data of 56 patients with hypertensive nephropathy and admitted to Affiliated Hospital of Chengde Medical College from December 2015 to December 2017, were retrospectively analyzed and the clinical data were used as the study group, the clinical data of 50 patients with hypertension, but not nephropathy, were selected as the control group. The expression levels of β2-MG and TGF-β in the serum were detected by ELISA. The correlation between β2-MG and TGF-β was analyzed by Pearson's correlation. The sensitivity and specificity of β2-MG, TGF-β and combined application in the diagnosis of hypertensive nephropathy were analyzed by ROC curve. The expression levels of β2-MG and TGF-β in the serum of the patients in the study group were significantly higher than those in the control group (P&lt;0.001). There was a positive correlation between the expression levels of β2-MG and TGF-β in the serum of the patients in the study group (r=0.619, P&lt;0.001). The AUC of β2-MG in the diagnosis of hypertensive nephropathy was 0.786. The AUC of TGF-β in the diagnosis of hypertensive nephropathy was 0.793. The AUC of the combined application of β2-MG and TGF-β in the diagnosis of hypertensive nephropathy was 0.860. β2-MG and TGF-β were highly expressed in the patients with hypertensive nephropathy, and the expression levels of β2-MG and TGF-β were positively correlated (r=0.619, P&lt;0.001). The combined application of β2-MG and TGF-β in the diagnosis of hypertensive nephropathy could reduce or even avoid the missed diagnosis caused by single detection. The two indicators complemented and confirmed each other, which had a great significance for improving the positive diagnosis rate of hypertensive nephropathy."	"Causative glaucoma treatment: promising targets and delivery systems. Glaucoma is one of the most common causes of blindness worldwide. Elevated intraocular pressure (IOP) is the major modifiable risk factor of the disease. Conventional therapy suffers from poor compliance, low bioavailability, and the lack of causative treatment options. To improve therapeutic success, it is crucial to identify major mediators of pathological changes associated with elevated IOP and to intervene at the molecular level. Here, we discuss relevant key functions of transforming growth factor-β2 (TGF-β2), connective tissue growth factor (CTGF), integrins, Rho-associated kinase (ROCK), and nitric oxide (NO) with regard to the onset of glaucoma, highlighting new drug delivery approaches for causative treatment."	"Deletion of Osteopontin Enhances β₂-Adrenergic Receptor-Dependent Anti-Fibrotic Signaling in Cardiomyocytes. Cardiac β₂-adrenergic receptors (ARs) are known to inhibit collagen production and fibrosis in cardiac fibroblasts and myocytes. The β₂AR is a Gs protein-coupled receptor (GPCR) and, upon its activation, stimulates the generation of cyclic 3',5'-adenosine monophosphate (cAMP). cAMP has two effectors: protein kinase A (PKA) and the exchange protein directly activated by cAMP (Epac). Epac1 has been shown to inhibit cardiac fibroblast activation and fibrosis. Osteopontin (OPN) is a ubiquitous pro-inflammatory cytokine, which also mediates fibrosis in several tissues, including the heart. OPN underlies several cardiovascular pathologies, including atherosclerosis and cardiac adverse remodeling. We found that the cardiotoxic hormone aldosterone transcriptionally upregulates OPN in H9c2 rat cardiac myoblasts-an effect prevented by endogenous β₂AR activation. Additionally, CRISPR-mediated OPN deletion enhanced cAMP generation in response to both β₁AR and β₂AR activation in H9c2 cardiomyocytes, leading to the upregulation of Epac1 protein levels. These effects rendered β₂AR stimulation capable of completely abrogating transforming growth factor (TGF)-β-dependent fibrosis in OPN-lacking H9c2 cardiomyocytes. Finally, OPN interacted constitutively with Gαs subunits in H9c2 cardiac cells. Thus, we uncovered a direct inhibitory role of OPN in cardiac β₂AR anti-fibrotic signaling via cAMP/Epac1. OPN blockade could be of value in the treatment and/or prevention of cardiac fibrosis."	"An initial genetic analysis of gemcitabine-induced high-grade neutropenia in pancreatic cancer patients in CALGB 80303 (Alliance). One of the standard of care regimens for advanced pancreatic cancer is gemcitabine-based chemotherapy. The efficacy of gemcitabine is limited by dose-limiting hematologic toxicities especially neutropenia. Uncovering the variability of these toxicities attributed to germline DNA variation is of great importance. CALGB 80303 was a randomized study in advanced pancreatic cancer patients treated with gemcitabine with or without bevacizumab. The study protocol included genotyping of genes of gemcitabine disposition (CDA, DCTD, SLC29A1, SLC28A1, and SLC29A2), as well as a genome-wide analysis. The clinical phenotype was time to early high-grade neutropenia event accounting for progression or death or other treatment-terminating adverse events as competing for informative events. The inference was carried out on the basis of the association between genotype and cause-specific hazard of a neutropenic event. The primary analyses were carried out on the basis of 294 genetically estimated European pancreatic cancer patients. For CDA rs2072671 (A&gt;C), AC and CC patients had a lower risk of neutropenia than AA patients (P=0.01, hazard ratio: 0.61, 95% confidence interval: 0.41-0.89). For SLC28A1 rs3825876 (G&gt;A), AA patients have a higher risk of neutropenia than GA and GG patients (P=0.02, hazard ratio: 1.51, 95% confidence interval: 1.06-2.16). CDA rs2072671 was associated with increased mRNA expression in whole blood in three studies (P=2.7e-14, 6.61e-62, and 9.70e-65). In the genome-wide analysis, variants in TGFB2 were among the top hits (lowest P=1.62e-06) but had no effect in luciferase assays. This is the first genetic analysis of gemcitabine-induced neutropenia using a competing risk model in a prospective randomized clinical study has proposed a potentially novel mechanism of the protective effect of the CDA rs2072671 variant. Further confirmation is needed."	"p27 transcriptionally coregulates cJun to drive programs of tumor progression. p27 shifts from CDK inhibitor to oncogene when phosphorylated by PI3K effector kinases. Here, we show that p27 is a cJun coregulator, whose assembly and chromatin association is governed by p27 phosphorylation. In breast and bladder cancer cells with high p27pT157pT198 or expressing a CDK-binding defective p27pT157pT198 phosphomimetic (p27CK-DD), cJun is activated and interacts with p27, and p27/cJun complexes localize to the nucleus. p27/cJun up-regulates TGFB2 to drive metastasis in vivo. Global analysis of p27 and cJun chromatin binding and gene expression shows that cJun recruitment to many target genes is p27 dependent, increased by p27 phosphorylation, and activates programs of epithelial-mesenchymal transformation and metastasis. Finally, human breast cancers with high p27pT157 differentially express p27/cJun-regulated genes of prognostic relevance, supporting the biological significance of the work."	"Effect of baicalin on renal function in patients with diabetic nephropathy and its therapeutic mechanism. The present study observed the effect of baicalin on blood glucose and renal function in patients with diabetic nephropathy and explored its mechanism of action. A total of 95 patients diagnosed with diabetic nephropathy by clinical and laboratory examinations were selected and randomly divided into a control and treatment group. The control group included 45 patients who were treated with routine symptomatic treatment. The remaining 50 patients in the treatment group received baicalin, in addition to routine symptomatic treatment. The treatment course was 6 months. Following this, the changes of indicators such as fasting plasma glucose (FPG), glycosylated hemoglobin (HBA1c), aldose reductase (AR) activity, 24-h urinary microalbumin, urinary β2-microglobulin (β2-MG) and urinary albumin excretion rate (UAER) were compared before and after treatment; at the same time, the variations of indexes, including superoxide dismutase (SOD), glutathione peroxidase (GSH-px), nuclear factor κ-light-chain-enhancer of activated B cells (NF-κB), transforming growth factor-β1 (TGF-β1) and vascular endothelial growth factor (VEGF) were detected. Compared with those in the control group, baicalin had little effect on the treatment group's FPG and HBA1c, but it clearly reduced the AR activity and the difference was significant (P&lt;0.05). Baicalin visibly decreased the 24-h urinary microalbumin, urinary β2-MG and UAER (P&lt;0.05) and had notable effect on improving renal function. Following treatment, compared with those in the control group, baicalin distinctly increased the levels of SOD and GSH-px (P&lt;0.05) and decreased the content of NF-κB and VEGF (P&lt;0.05), however, its impact on the expression of TGF-β1 was not statistically significant (P&gt;0.05). The results showed that baicalin may improve the renal function in patients with diabetic nephropathy and delay the progression of diabetic nephropathy through various ways, including anti-inflammation and anti-oxidation."	"Transcript abundance of stromal and thecal cell related genes during bovine ovarian development. Movement and expansion of mesonephric-derived stroma appears to be very important in the development of the ovary. Here, we examined the expression of 24 genes associated with stroma in fetal ovaries during gestation (n = 17; days 58-274) from Bos taurus cattle. RNA was isolated from ovaries for quantitative RT-PCR. Expression of the majority of genes in TGFβ signalling, stromal transcription factors (NR2F2, AR), and some stromal matrix genes (COL1A1, COL3A1 and FBN1, but not FBN3) showed a positive linear increase with gestational age. Expression of genes associated with follicles (INSL3, CYP17A1, CYP11A1 and HSD3B1), was low until mid-gestation and then increased with gestational age. LHCGR showed an unusual bimodal pattern; high levels in the first and last trimesters. RARRES1 and IGFBP3 also increased with gestational age. To relate changes in gene expression in stromal cells with that in non stromal cells during development of the ovary we combined the data on the stromal genes with another 20 genes from non stromal cells published previously and then performed hierarchical clustering analysis. Three major clusters were identified. Cluster 1 genes (GATA4, FBN3, LHCGR, CYP19A1, ESR2, OCT4, DSG2, TGFB1, CCND2, LGR5, NR5A1) were characterised by high expression only in the first trimester. Cluster 2 genes (FSHR, INSL3, HSD3B1, CYP11A1, CYP17A1, AMH, IGFBP3, INHBA) were highly expressed in the third trimester and largely associated with follicle function. Cluster 3 (COL1A1, COL3A1, FBN1, TGFB2 TGFB3, TGFBR2, TGFBR3, LTBP2, LTBP3, LTBP4, TGFB1I1, ALDH1A1, AR, ESR1, NR2F2) had much low expression in the first trimester rising in the second trimester and remaining at that level during the third trimester. Cluster 3 contained members of two pathways, androgen and TGFβ signalling, including a common member of both pathways namely the androgen receptor cofactor TGFβ1 induced transcript 1 protein (TGFB1I1; hic5). GATA4, FBN3 and LHCGR, were highly correlated with each other and were expressed highly in the first trimester during stromal expansion before follicle formation, suggesting that this could be a critical phase in the development of the ovarian stroma."	"Significant Association and Increased Risk of Primary Open Angle Glaucoma with TGFB2 Rs991967 Gene Polymorphism in North Eastern Iranian Patients. Glaucoma is one of the main causes of irreversible blindness. The most common type of glaucoma is primary open angle glaucoma (POAG). TGF-β2, the main TGF-β isoform in the eye, is critical for extracellular matrix production and angiogenesis. Genetic studies have shown that TGF-β2 gene (TGFB2) polymorphisms affect its expression in the eye. The aim of this study was to investigate the presence of the TGFB2 rs991967 polymorphism in POAG, and the effect of this polymorphism on clinical characteristics in POAG patients. This case-control study was conducted on 112 control participants and 112 POAG patients referred to Khatam-Al-Anbia Eye Hospital, Mashhad, Iran. The TGFB2 rs991967 polymorphism was genotyped by the PCR-restriction fragment length polymorphism (PCR-RFLP) method. The genotyping results and clinical findings were analyzed using SPSS version 16. The most common genotype was AA, observed in 54.5% of the patients (P &lt; 0.0001, OR 12.2, CI 95% for OR: 5.25 to 28.31). Moreover, the highest and lowest frequencies of the mutant A allele were seen in the patient and control groups with percentages of 73 and 40%, respectively. This difference was significant (P &lt; 0.0001, OR: 3.9, CI 95% for OR: 2.6 to 5.9). No significant association was seen between the frequencies of the TGFB2 rs991967 polymorphism genotypes and clinical characteristics in POAG patients. The TGFB2 rs991967 polymorphism has a direct and significant association with POAG and significantly increases the risk of developing POAG."	"Activation of IGF/IGF-IR signaling pathway fails to induce epithelial-mesenchymal transition in pancreatic cancer cells. Pancreatic cancer stromal cells produce various protein factors, which presumably provide cancer cells with drug resistance and may influence their ability to form metastasis via induction of epithelial-mesenchymal transition (ЕМТ). The goal of our project was to study the effects of IGF-I on expression of protein markers of epithelial and mesenchymal differentiation, and on expression of transcriptional regulators of EMT in pancreatic cancer cell lines. We used Western blot analysis to study the expression patterns of epithelial and mesenchymal protein markers in pancreatic cancer cell lines, which have been stimulated with IGF-I for various periods of time. The ELISA technique was employed to determine the concentration of IGF-I in conditioned media. Additionally, the effect of IGF-I on proliferation of pancreatic cancer cells was measured via MTS technique. We investigated the effect of IGF/IGF-IR signaling pathway activation on expression levels of cell differentiation markers in five pancreatic cancer cell lines (AsPC-1, BxPC-3, Capan-2, MiaPaCa-2 and Panc1). The IGF-I stimulation led to phosphorylation of IGF-IR and activation of PI-3K/Akt signaling cascade. At the same time our results reveal that the activation of IGF/IGF-IR signaling pathway in pancreatic cancer cells does not induce a significant shift in cell phenotype towards mesenchymal differentiation and does not induce a decrease in expression levels of epithelial protein markers. Our results demonstrate that IGF-I does not function as an effective inductor of EMT in pancreatic cancer cell lines and that stimulation of IGF-I/IGF-IR signaling pathway does not lead to EMT associated changes in cell differentiation."	"KLF4 Regulates Corneal Epithelial Cell Cycle Progression by Suppressing Canonical TGF-β Signaling and Upregulating CDK Inhibitors P16 and P27. Krüppel-like factor 4 (KLF4) promotes corneal epithelial (CE) cell fate while suppressing mesenchymal properties. TGF-β plays a crucial role in cell differentiation and development, and if dysregulated, it induces epithelial-mesenchymal transition (EMT). As KLF4 and TGF-β regulate each other in a context-dependent manner, we evaluated the role of the crosstalk between KLF4 and TGF-β-signaling in CE homeostasis. We used spatiotemporally regulated ablation of Klf4 within the adult mouse CE in ternary transgenic Klf4Δ/ΔCE (Klf4LoxP/LoxP/ Krt12rtTA/rtTA/ Tet-O-Cre) mice and short hairpin RNA (shRNA)-mediated knockdown or lentiviral vector-mediated overexpression of KLF4 in human corneal limbal epithelial (HCLE) cells to evaluate the crosstalk between KLF4 and TGF-β-signaling components. Expression of TGF-β signaling components and cyclin-dependent kinase (CDK) inhibitors was quantified by quantitative PCR, immunoblots, and/or immunofluorescent staining. CE-specific ablation of Klf4 resulted in (1) upregulation of TGF-β1, -β2, -βR1, and -βR2; (2) downregulation of inhibitory Smad7; (3) hyperphosphorylation of Smad2/3; (4) elevated nuclear localization of phospho-Smad2/3 and Smad4; and (5) downregulation of CDK inhibitors p16 and p27. Consistently, shRNA-mediated knockdown of KLF4 in HCLE cells resulted in upregulation of TGF-β1 and -β2, hyperphosphorylation and nuclear localization of SMAD2/3, downregulation of SMAD7, and elevated SMAD4 nuclear localization. Furthermore, overexpression of KLF4 in HCLE cells resulted in downregulation of TGF-β1, -βR1, and -βR2 and upregulation of SMAD7, p16, and p27. Collectively, these results demonstrate that KLF4 regulates CE cell cycle progression by suppressing canonical TGF-β signaling and overcomes the undesirable concomitant decrease in TGF-β-dependent CDK inhibitors p16 and p27 expression by directly upregulating them."	"Increased TGF-β and BMP Levels and Improved Chondrocyte-Specific Marker Expression In Vitro under Cartilage-Specific Physiological Osmolarity. During standard expansion culture (i.e., plasma osmolarity, 280 mOsm) human articular chondrocytes dedifferentiate, making them inappropriate for autologous chondrocyte implantation to treat cartilage defects. Increasing the osmolarity of culture media to physiological osmolarity levels of cartilage (i.e., 380 mOsm), increases collagen type II (COL2A1) expression of human articular chondrocytes in vitro, but the underlying molecular mechanism is not fully understood. We hypothesized that TGF-β superfamily signaling may drive expression of COL2A1 under physiological osmolarity culture conditions. Human articular chondrocytes were cultured in cytokine-free medium of 280 or 380 mOsm with or without siRNA mediated TGF-β2 knockdown (RNAi). Expression of TGF-β isoforms, and collagen type II was evaluated by RT-qPCR and immunoblotting. TGF-β2 protein secretion was evaluated using ELISA and TGF-β bioactivity was determined using an established reporter assay. Involvement of BMP signaling was investigated by culturing human articular chondrocytes in the presence or absence of BMP inhibitor dorsomorphin and BMP bioactivity was determined using an established reporter assay. Physiological cartilage osmolarity (i.e., physosmolarity) most prominently increased TGF-β2 mRNA expression and protein secretion as well as TGF-β bioactivity. Upon TGF-β2 isoform-specific knockdown, gene expression of chondrocyte marker COL2A1 was induced. TGF-β2 RNAi under physosmolarity enhanced TGF-β bioactivity. BMP bioactivity increased upon physosmotic treatment, but was not related to TGF-β2 RNAi. In contrast, dorsomorphin inhibited COL2A1 mRNA expression in human articular chondrocytes independent of the osmotic condition. Our data suggest a role for TGF-β superfamily member signaling in physosmolarity-induced mRNA expression of collagen type II. As physosmotic conditions favor the expression of COL2A1 independent of our manipulations, contribution of other metabolic, post-transcriptional or epigenetic factors cannot be excluded in the underlying complex and interdependent regulation of marker gene expression. Dissecting these molecular mechanisms holds potential to further improve future cell-based chondral repair strategies."	"Association of recurrent venous thromboembolism and circulating microRNAs. Patients with unprovoked first venous thromboembolism (VTE) are at a high risk of recurrence. Although circulating microRNAs (miRNAs) have been found to be associated with VTE and are markers of hypercoagulability, this study is the first to examine whether circulating miRNAs are associated with the risk of VTE recurrence. A nested case-control study design was used where plasma samples were obtained from 78 patients with unprovoked VTE from the Malmö Thrombophilia Study (MATS). A total of 39 VTE patients with recurrent VTE (cases) were matched with 39 VTE patients without recurrent VTE (controls) defined by age and sex (MATS population). Plasma levels of 179 different miRNAs were evaluated in the 78 samples (after anticoagulant treatment was stopped) using qPCR. A total of 110 miRNAs were detected in all samples. Among those, 12 miRNAs (miR-15b-5p, miR-106a-5p, miR-197-3p, miR-652-3p, miR-361-5p, miR-222-3p, miR-26b-5p, miR-532-5p, miR-27b-3p, miR-21-5p, miR-103a-3p, and miR-30c-5p) were found to be associated with recurrent VTE after multiple correction test and conditional logistic regression analysis. A further analysis showed that miR-15b-5p, miR-197-3p, miR-27b-3p, and miR-30c-5p exhibited a trend over time, with a larger difference in miRNA levels between cases and controls for earlier recurrence. Of these 12 miRNAs, 8 miRNAs significantly correlated with circulating transforming growth factor β1/2 (TGFβ1/2). Three of them correlated with platelet count. We have identified 12 plasma miRNAs that may have the potential to serve as novel, non-invasive predictive biomarkers for VTE recurrence."	"Transforming Growth Factor-β1 Decreases β2-Agonist-induced Relaxation in Human Airway Smooth Muscle. Helper T effector cytokines implicated in asthma modulate the contractility of human airway smooth muscle (HASM) cells. We have reported recently that a profibrotic cytokine, transforming growth factor (TGF)-β1, induces HASM cell shortening and airway hyperresponsiveness. Here, we assessed whether TGF-β1 affects the ability of HASM cells to relax in response to β2-agonists, a mainstay treatment for airway hyperresponsiveness in asthma. Overnight TGF-β1 treatment significantly impaired isoproterenol (ISO)-induced relaxation of carbachol-stimulated, isolated HASM cells. This single-cell mechanical hyporesponsiveness to ISO was corroborated by sustained increases in myosin light chain phosphorylation. In TGF-β1-treated HASM cells, ISO evoked markedly lower levels of intracellular cAMP. These attenuated cAMP levels were, in turn, restored with pharmacological and siRNA inhibition of phosphodiesterase 4 and Smad3, respectively. Most strikingly, TGF-β1 selectively induced phosphodiesterase 4D gene expression in HASM cells in a Smad2/3-dependent manner. Together, these data suggest that TGF-β1 decreases HASM cell β2-agonist relaxation responses by modulating intracellular cAMP levels via a Smad2/3-dependent mechanism. Our findings further define the mechanisms underlying β2-agonist hyporesponsiveness in asthma, and suggest TGF-β1 as a potential therapeutic target to decrease asthma exacerbations in severe and treatment-resistant asthma."	"miR-618 Suppresses Metastasis in Gastric Cancer by Downregulating the Expression of TGF-β2. Recent studies have demonstrated that microRNAs regulate gene expression and are related to cancer progression. Increasing evidence shows that miR-618 plays an important role in a variety of tumors, including thyroid carcinomas, breast cancer and lymphoma cancer. However, no studies have examined the expression or function of miR-618 in gastric cancer (GC). In this study, we examined the effects and molecular mechanisms of miR-618 in GC. We compared the expression levels of miR-618 in 90 paired GC tissues and adjacent noncancerous tissues. Cell cycle, apoptosis and transwell assays were performed in GC cells with miR-618 mimic or inhibitor in vitro. We first used quantitative PCR(qPCR) to show that miR-618 expression levels were downregulated in GC tissues, which showed statistical significance. Next we used transwell assays to prove that miR-618 suppressed the invasion and migration capacity of GC cells. Furthermore, screening of the miRDB and Target Scan Human databases indicated TGF-β2 as a downstream target of miR-618. In further research, we identified TGF-β2 as a target gene of miR-618 by the luciferase reporter assay. Western blot analysis confirmed that TGF-β2 expression was inversely correlated with miR-618 expression. In situ hybridization showed that miR-618 expression level was downregulated in GC tissues. In conclusion, our findings suggest that miR-618 may function as a tumor suppressor in GC and suppresses metastasis in GC by negatively regulating the transcriptional level of TGF-β2. Anat Rec, 302:931-940, 2019. © 2019 Wiley Periodicals, Inc."	"Differentiation and isolation of iPSC-derived remodeling ductal plate-like cells by use of an AQP1-GFP reporter human iPSC line. Cholangiocytes are the epithelial cells that line bile ducts, and ductal plate malformation is a developmental anomaly of bile ducts that causes severe congenital biliary disorders. However, because of a lack of specific marker genes, methods for the stepwise differentiation and isolation of human induced pluripotent stem cell (hiPSC)-derived cholangiocyte progenitors at ductal plate stages have not been established. We herein generated an AQP1-GFP reporter hiPSC line and developed a combination treatment with transforming growth factor (TGF) β2 and epidermal growth factor (EGF) to induce hiPSC-derived hepatoblasts into AQP1<sup>+</sup> cells in vitro. By confirming that the isolated AQP1<sup>+</sup> cells showed similar gene expression patterns to cholangiocyte progenitors at the remodeling ductal plate stage around gestational week (GW) 20, we established a differentiation protocol from hiPSCs through SOX9<sup>+</sup>CK19<sup>+</sup>AQP1<sup>-</sup> ductal plate-like cells into SOX9<sup>+</sup>CK19<sup>+</sup>AQP1<sup>+</sup> remodeling ductal plate-like cells. We further generated 3D bile duct-like structures from the induced ductal plate-like cells. These results suggest that AQP1 is a useful marker for the generation of remodeling ductal plate cells from hiPSCs. Our methods may contribute to elucidating the differentiation mechanisms of ductal plate cells and the pathogenesis of ductal plate malformation."	"Dual inhibition of endothelial miR-92a-3p and miR-489-3p reduces renal injury-associated atherosclerosis. Cardiovascular disease (CVD) is the leading cause of death in chronic kidney disease (CKD) patients, however, the underlying mechanisms that link CKD and CVD are not fully understood and limited treatment options exist in this high-risk population. microRNAs (miRNA) are critical regulators of gene expression for many biological processes in atherosclerosis, including endothelial dysfunction and inflammation. We hypothesized that renal injury-induced endothelial miRNAs promote atherosclerosis. Here, we demonstrate that dual inhibition of endothelial miRNAs inhibits atherosclerosis in the setting of renal injury. Aortic endothelial miRNAs were analyzed in apolipoprotein E-deficient (Apoe<sup>-/-</sup>) mice with renal damage (5/6 nephrectomy, 5/6Nx) by real-time PCR. Endothelial miR-92a-3p and miR-489-3p were inhibited by locked-nucleic acid (LNA) miRNA inhibitors complexed to HDL. Renal injury significantly increased endothelial miR-92a-3p levels in Apoe<sup>-/-</sup>;5/6Nx mice. Dual inhibition of miR-92a-3p and miR-489-3p in Apoe<sup>-/-</sup>;5/6Nx with a single injection of HDL + LNA inhibitors significantly reduced atherosclerotic lesion area by 28.6% compared to HDL + LNA scramble (LNA-Scr) controls. To examine the impact of dual LNA treatment on aortic endothelial gene expression, total RNA sequencing was completed, and multiple putative target genes and pathways were identified to be significantly altered, including the STAT3 immune response pathway. Among the differentially expressed genes, Tgfb2 and Fam220a were identified as putative targets of miR-489-3p and miR-92a-3p, respectively. Both Tgfb2 and Fam220a were significantly increased in aortic endothelium after miRNA inhibition in vivo compared to HDL + LNA-Scr controls. Furthermore, Tgfb2 and Fam220a were validated with gene reporter assays as direct targets of miR-489-3p and miR-92a-3p, respectively. In human coronary artery endothelial cells, over-expression and inhibition of miR-92a-3p decreased and increased FAM220A expression, respectively. Moreover, miR-92a-3p overexpression increased STAT3 phosphorylation, likely through direct regulation of FAM220A, a negative regulator of STAT3 phosphorylation. These results support endothelial miRNAs as therapeutic targets and dual miRNA inhibition as viable strategy to reduce CKD-associated atherosclerosis."	"Impact of epidural analgesia on the systemic biomarker response after hepatic resection. Perioperative inflammation is associated with poor oncologic outcomes. Regional analgesia has been shown mitigate some of these inflammatory changes and be associated with better oncologic outcomes in patients with hepatic malignancies. The mechanism for this effect, however, remains unclear. The authors sought to compare systemic biomarker concentrations in a comprehensive and oncologically relevant panel in the perioperative setting between patients undergoing thoracic epidural analgesia (TEA) and intra-venous patient- controlled analgesia (IV-PCA) for resection of hepatic metastatic disease. Clinicopathologic variables and baseline biomarkers were similar between TEA (n = 46) and IV-PCA (n = 16) groups. Of the biomarkers which were significantly changed from baseline, there was a lower fold change from baseline in the TEA patients compared to IV-PCA including IL-6 (13.5vs19.1), MCP-1 (1.9vs3.0), IL-8 (2.4vs3.0), and Pentraxin-3 (10.8vs15.6). Overall decreased systemic concentrations of TGFb signaling were noted in TEA patients on POD1 TGFb3 (243.2 vs. 86.0, p = 0.005), POD3 TGFb1 (6558.0 vs. 2063.3, p = 0.004), POD3 TGFb2 (468.3 vs. 368.9, p = 0.036), POD3 TGFb3 (132.2 vs. 77.8, p = 0.028), and POD5 TGFb3 (306.5 vs. 92.2, p = 0.032). POD1 IL-12p70 concentrations were significantly higher in TEA patients (8.3 vs. 1.6, p = 0.024). Epidural analgesia damped the postoperative inflammatory response and systemic immunosuppressive signaling, as well as promoted Th1 systemic signaling early in the post-operative period after hepatic resection for metastatic disease. These differences elaborate on known mechanisms for improved oncologic outcomes with regional anesthesia, and may be considered for biomarker monitoring of effective regional anesthesia in oncologic surgery. Patient data, including clinicopathologic variables were collected for this study from the database of a randomized controlled trial comparing perioperative outcomes in patients undergoing hepatic resection with TEA vs. IV-PCA. Patients undergoing resection for metastatic disease were selected for this study. Plasma concentrations (pg/mL) of well-studied biomarkers (IL-1b/2/4/5/6/7/8/10/12p70/13/17, MCP-1 IFNγ, TNFα, MIP-1b, GM-CSF, G-CSF, VEGF, Resistin, TGFb1, TGFb2, and TGFb3), as well as novel perioperative markers (CXCL12, CXCL10, Omentin-1, sLeptin R, Vaspin, Pentraxin-3, Galactin-3, FGF-23, PON-1, FGF-21) were measured preoperatively, and on postoperative day (POD)1, POD3, and POD5 using multiplex bead assays. Clinicopathologic variables and perioperative variations in these biomarkers were compared between TEA vs IV-PCA groups."	"TGF-β and HSP70 profiles during transformation of yak hair follicles from the anagen to catagen stage. Transforming growth factor-β (TGF-β) and heat shock protein 70 (HSP70) are important for the hair follicle (HF) cycle, but it is unclear whether they participate in HF regression in yak skin. In this study, we investigated the role of TGF-β, TGF-βRII, and HSP70 in the transition from anagen to catagen of HFs. The results showed that TGF-β2 transcription was significantly higher than that of TGF-β1 and TGF-β3 in the same periods. Meanwhile, the expressions of TGF-β2, TGF-βRII, and caspase-3 were higher in the catagen phase than that in mid-anagen, and some TGF-βRII-positive HF cells were terminal deoxynucleotidyl transferase-mediated deoxyuridine triphosphate-biotin nick end labeling (TUNEL)-positive. Moreover, the HSP70 protein levels in mid-anagen were higher than those in late-anagen and catagen. These results suggested that TGF-β2 plays a major role in catagen induction in yak HFs, which might be achieved via TGF-βRII-mediated apoptosis in HF epithelial cells. In contrast, HSP70 might protect epithelial cells from apoptosis and ultimately inhibit HF regression. In conclusion, TGF-β2 has positive effects, whereas HSP70 has negative effects, on catagen induction."	"Inhibitory role of transforming growth factor β2 in experimental autoimmune anterior uveitis. Experimental autoimmune anterior uveitis (EAAU) is a clinically relevant animal model for human idiopathic anterior uveitis (IAU). The role of the immunomodulator transforming growth factor β2 (TGF-β2) in EAAU pathology is unknown. In this study, we investigated the regulatory role of TGF-β2 in EAAU. EAAU was induced in male Lewis rats by footpad injection of melanin-associated antigen (MAA). TGF-β2 was administered intravenously (iv) in MAA-sensitized rats during the induction of EAAU, or after the clinical onset of uveitis. MAA-sensitized rats injected similarly with an equal volume of PBS served as control. Animals were examined daily between days 7 and 30 post-injection for the clinical signs of uveitis using slit lamp biomicroscopy. Animals were sacrificed at various time points and eyes were harvested for histological analysis to assess the course and severity of inflammation. For histopathological analysis, paraffin sections of harvested eyes were stained with hematoxylin and eosin. Popliteal lymph nodes (LNs) were used for CD4<sup>+</sup>CD25<sup>+</sup>FoxP3<sup>+</sup> T regulatory (Tregs) population analysis and for CD4<sup>+</sup> T cell proliferation assay. Administration of recombinant TGF-β2 during the early stages of EAAU prevented the induction of uveitis. Compared to PBS, the presence of TGF-β2 in the cell culture significantly (p &lt; 0.05) inhibited the proliferation of CD4<sup>+</sup> T cells in response to MAA. In MAA-sensitized Lewis rats, iv treatment with recombinant TGF-β2 resulted in significantly (p &lt; 0.05) increased percentage of Tregs compared to animals treated similarly with PBS. Thus, TGF-β2 inhibited the induction of EAAU by inhibiting CD4<sup>+</sup> T cell proliferation and increasing the number of Tregs. Injection of TGF-β2 in rats with active EAAU resulted in diminished disease activity. Unfortunately, this treatment did not lead to the early resolution of EAAU. TGF-β2 plays a critical role in regulation of intraocular inflammation in EAAU. Findings reported in this study improve our understanding of immunopathology of IAU and suggest that recombinant TGF-β2 may be a promising therapeutic agent for human IAU."	"Suppression of Epithelial-Mesenchymal Transition in Retinal Pigment Epithelial Cells by an MRTF-A Inhibitor. Epithelial-mesenchymal transition (EMT) in retinal pigment epithelial (RPE) cells is related to the pathogenesis of subretinal fibrosis such as that associated with macular degeneration. The role of myocardin-related transcription factor A (MRTF-A) in EMT of RPE cells and subretinal fibrosis was investigated. The migratory activity of human RPE-1 cells in culture was evaluated using a scratch assay. The subcellular distribution of MRTF-A in RPE-1 cells, as well as the extent of subretinal fibrosis in a mouse model, were determined by immunofluorescence analysis. Expression of α-smooth muscle actin (α-SMA), collagen type I (COL1), connective tissue growth factor (CTGF), and paxillin was examined by immunoblot analysis or reverse transcription and quantitative polymerase chain reaction analysis, whereas that of pro-matrix metalloproteinase-2 (MMP-2) was assessed by gelatin zymography. The MRTF-A signaling inhibitor CCG-1423 suppressed RPE-1 cell migration in a concentration-dependent manner. Transforming growth factor-beta (TGF-β2) induced MRTF-A translocation from the cytoplasm to the nucleus of RPE-1 cells, and this effect was attenuated by CCG-1423. TGF-β2 up-regulated the abundance of α-SMA, paxillin, and pro-MMP-2 proteins as well as the amounts of α-SMA, COL1, and CTGF mRNAs in a manner sensitive to inhibition by CCG-1423. Finally, intravitreal injection of CCG-1423 markedly attenuated the development of subretinal fibrosis induced by photocoagulation in vivo. Our results implicate MRTF-A in EMT of RPE cells and in the development of subretinal fibrosis in vivo, suggesting that MRTF-A is a potential therapeutic target for retinal diseases characterized by subretinal fibrosis."	"Genome-Wide Association Analysis of Single-Breath DlCO. DlCO is a widely used pulmonary function test in clinical practice and a particularly useful measure for assessing patients with chronic obstructive pulmonary disease (COPD). We hypothesized that elucidating genetic determinants of DlCO could lead to better understanding of the genetic architecture of COPD. We estimated the heritability of DlCO using common genetic variants and performed genome-wide association analyses in four cohorts enriched for subjects with COPD (COPDGene [Genetic Epidemiology of COPD], NETT [National Emphysema Treatment Trial], GenKOLS [Genetics of Chronic Obstructive Lung Disease study], and TESRA [Treatment of Emphysema With a Gamma-Selective Retinoid Agonist study]) using a combined European ancestry white dataset and a COPDGene African American dataset. We assessed our genome-wide significant and suggestive associations for DlCO in previously reported genome-wide association studies of COPD and related traits. We also characterized associations of known COPD-associated variants and DlCO. We estimated the SNP-based heritability of DlCO in the European ancestry white population to be 22% (P = 0.0004). We identified three genome-wide significant associations with DlCO: variants near TGFB2, CHRNA3, and PDE11A loci (P &lt; 5 × 10<sup>-8</sup>). In addition, 12 loci were suggestively associated with DlCO in European ancestry white (P &lt; 1 × 10<sup>-5</sup> in the combined analysis and P &lt; 0.05 in both COPDGene and GenKOLS), including variants near NEGR1, CADM2, PCDH7, RETREG1, DACT2, NRG1, ANKRD18A, KRT86, NTN4, ARHGAP28, INSR, and PCBP3. Some DlCO-associated variants were also associated with COPD, emphysema, and/or spirometric values. Among 25 previously reported COPD loci, TGFB2, CHRNA3/CHRNA5, FAM13A, DSP, and CYP2A6 were associated with DlCO (P &lt; 0.001). We identified several genetic loci that were significantly associated with DlCO and characterized effects of known COPD-associated loci on DlCO. These results could lead to better understanding of the heterogeneous nature of COPD."	"Topical administration of a ROCK inhibitor prevents anterior subcapsular cataract induced by UV-B irradiation. The deposition of extracellular matrix (ECM)-which is mainly composed of type I collagen-in anterior subcapsular cataracts (ASCs) during epithelial-to-mesenchymal transition (EMT) of lens epithelial cells (LECs) decreases visual function. Transforming growth factor (TGF)-β is a key factor in the induction of EMT in LECs. Although Rho kinase (ROCK) plays an important role in EMT induced by TGF-β, it is unknown whether ROCK inhibition affects type I collagen expression in TGF-β-stimulated LECs and ASC formation. This was investigated in the present study both in vitro using human lens epithelium (HLE)-B3 cells and in vivo using mice with ultraviolet radiation (UVR)-B-induced cataracts. We found that TGF-β2 increased type I collagen mRNA expression in HLE-B3 cells; this was inhibited in a dose-dependent manner by treatment with the ROCK inhibitor Y-27632. UVR-B exposure caused ASC formation in mice. A histopathological examination revealed that LECs in the anterior subcapsular area were flattened and multi-layered, and had a spindle shape in cross section. Immunohistochemical analysis revealed the presence of α-smooth muscle actin and type I collagen around these flattened LECs; these opacities were reduced by topical instillation of Y-27632. These findings suggest that suppression of TGF-β signaling in LECs by topical application of a ROCK inhibitor can prevent the formation of ASCs."	"Divergent expression of liver transforming growth factor superfamily cytokines after successful portoenterostomy in biliary atresia. Pathogenesis of progressive liver fibrosis in biliary atresia after successful portoenterostomy remains unclear. We related hepatic expression of transforming growth factor beta (TGF-β) superfamily cytokines to histologic liver injury after successful portoenterostomy. Enrolled in our study were 28 patients with biliary atresia who had liver biopsies obtained during and after successful portoenterostomy, which normalized serum bilirubin (&lt;20 µmol/l). Biopsies were evaluated for cholestasis, inflammation, ductal reaction, and fibrosis and were stained immunohistochemically for transforming growth factor beta 1, transforming growth factor beta 2, connective tissue growth factor, and decorin. Respective gene expression (TGFB1, TGFB2, TGFB3, CTGF, DCN) was analyzed at follow-up using quantitative reverse transcription polymerase chain reaction (qRT-PCR). Results were compared with fibrotic and healthy control livers. After median follow-up of 3.0 years, histologic cholestasis resolved, whereas fibrosis had progressed only in isolated biliary atresia. Liver protein expression of transforming growth factor beta 1 and connective tissue growth factor (P &lt; .001 for both), but not that of transforming growth factor beta 2 or decorin, decreased after successful portoenterostomy, although expression of all four cytokines remained elevated. In accordance with postportoenterostomy changes in protein expression, follow-up ribonucleic acid expression of TGFB2 and DCN, but not that of TGFB1 and CTGF, was upregulated when compared with the controls. Both protein and gene expression of transforming growth factor beta 1 and protein expression of transforming growth factor beta 2, connective tissue growth factor and decorin correlated with METAVIR fibrosis stage. Syndromic patients (n = 12) showed milder fibrosis and lower transforming growth factor beta 1 expression than patients with isolated biliary atresia. These findings support a central role of transforming growth factor beta superfamily in mediating continuing liver fibrogenesis after successful portoenterostomy. Transforming growth factor beta pathway cytokines responded divergently to clearance of jaundice, which was reflected by differential progression of fibrosis between syndromic and isolated patients."	"Protective Effects of Activated Myofibroblasts in the Pressure-Overloaded Myocardium Are Mediated Through Smad-Dependent Activation of a Matrix-Preserving Program. The heart contains abundant interstitial and perivascular fibroblasts. Traditional views suggest that, under conditions of mechanical stress, cytokines, growth factors, and neurohumoral mediators stimulate fibroblast activation, inducing ECM (extracellular matrix) protein synthesis and promoting fibrosis and diastolic dysfunction. Members of the TGF (transforming growth factor)-β family are upregulated and activated in the remodeling myocardium and modulate phenotype and function of all myocardial cell types through activation of intracellular effector molecules, the Smads (small mothers against decapentaplegic), and through Smad-independent pathways. To examine the role of fibroblast-specific TGF-β/Smad3 signaling in the remodeling pressure-overloaded myocardium. We examined the effects of cell-specific Smad3 loss in activated periostin-expressing myofibroblasts using a mouse model of cardiac pressure overload, induced through transverse aortic constriction. Surprisingly, FS3KO (myofibroblast-specific Smad3 knockout) mice exhibited accelerated systolic dysfunction after pressure overload, evidenced by an early 40% reduction in ejection fraction after 7 days of transverse aortic constriction. Accelerated systolic dysfunction in pressure-overloaded FS3KO mice was associated with accentuated matrix degradation and generation of collagen-derived matrikines, accompanied by cardiomyocyte myofibrillar loss and apoptosis, and by enhanced macrophage-driven inflammation. In vitro, TGF-β1, TGF-β2, and TGF-β3 stimulated a Smad3-dependent matrix-preserving phenotype in cardiac fibroblasts, suppressing MMP (matrix metalloproteinase)-3 and MMP-8 synthesis and inducing TIMP (tissue inhibitor of metalloproteinases)-1. In vivo, administration of an MMP-8 inhibitor attenuated early systolic dysfunction in pressure-overloaded FS3KO mice, suggesting that the protective effects of activated cardiac myofibroblasts in the pressure-overloaded myocardium are, at least in part, because of suppression of MMPs and activation of a matrix-preserving program. MMP-8 stimulation induces a proinflammatory phenotype in isolated macrophages. In the pressure-overloaded myocardium, TGF-β/Smad3-activated cardiac fibroblasts play an important protective role, preserving the ECM network, suppressing macrophage-driven inflammation, and attenuating cardiomyocyte injury. The protective actions of the myofibroblasts are mediated, at least in part, through Smad-dependent suppression of matrix-degrading proteases."	"Interaction of germline variants in a family with a history of early-onset clear cell renal cell carcinoma. Identification of genetic factors causing predisposition to renal cell carcinoma has helped improve screening, early detection, and patient survival. We report the characterization of a proband with renal and thyroid cancers and a family history of renal and other cancers by whole-exome sequencing (WES), coupled with WES analysis of germline DNA from additional affected and unaffected family members. This work identified multiple predicted protein-damaging variants relevant to the pattern of inherited cancer risk. Among these, the proband and an affected brother each had a heterozygous Ala45Thr variant in SDHA, a component of the succinate dehydrogenase (SDH) complex. SDH defects are associated with mitochondrial disorders and risk for various cancers; immunochemical analysis indicated loss of SDHB protein expression in the patient's tumor, compatible with SDH deficiency. Integrated analysis of public databases and structural predictions indicated that the two affected individuals also had additional variants in genes including TGFB2, TRAP1, PARP1, and EGF, each potentially relevant to cancer risk alone or in conjunction with the SDHA variant. In addition, allelic imbalances of PARP1 and TGFB2 were detected in the tumor of the proband. Together, these data suggest the possibility of risk associated with interaction of two or more variants."	"Endothelial Cells Tissue-Specific Origins Affects Their Responsiveness to TGF-β2 during Endothelial-to-Mesenchymal Transition. The endothelial-to-mesenchymal transition (EndMT) is a biological process where endothelial cells (ECs) acquire a fibroblastic phenotype after concomitant loss of the apical-basal polarity and intercellular junction proteins. This process is critical to embryonic development and is involved in diseases such as fibrosis and tumor progression. The signaling pathway of the transforming growth factor β (TGF-β) is an important molecular route responsible for EndMT activation. However, it is unclear whether the anatomic location of endothelial cells influences the activation of molecular pathways responsible for EndMT induction. Our study investigated the molecular mechanisms and signaling pathways involved in EndMT induced by TGF-β2 in macrovascular ECs obtained from different sources. For this purpose, we used four types of endothelial cells (coronary artery endothelial cells, CAECs; primary aortic endothelial cells PAECs; human umbilical vein endothelia cells, HUVECs; and human pulmonary artery endothelial cells, HPAECs) and stimulated with 10 ng/mL of TGF-β2. We observed that among the ECs analyzed in this study, PAECs showed the best response to the TGF-β2 treatment, displaying phenotypic changes such as loss of endothelial marker and acquisition of mesenchymal markers, which are consistent with the EndMT activation. Moreover, the PAECs phenotypic transition was probably triggered by the extracellular signal⁻regulated kinases 1/2 (ERK1/2) signaling pathway activation. Therefore, the anatomical origin of ECs influences their ability to undergo EndMT and the selective inhibition of the ERK pathway may suppress or reverse the progression of diseases caused or aggravated by the involvement EndMT activation."	"Construction of microRNA-messenger networks for human osteosarcoma. Osteosarcoma is the most common bone tumor in children and young adults. Although the microRNAs (miRNA) expression analyses of osteosarcoma have been performed previously, the construction of miRNA-messenger RNA (mRNA) networks for osteosarcoma is needed. This study aimed to identify osteosarcoma-related miRNAs through analyzing the microarray datasets and to construct the regulatory network of miRNA-mRNA for human osteosarcoma. The datasets were extracted from the Gene Expression Omnibus and the differentially expressed miRNAs were screened through the limma package in Bioconductor. Genes targeted by the differentially expressed miRNAs were screened out by using the Miranda, MirTarget2, PicTar, PITA, and TargetScan databases. The predicted target genes were further analyzed by Gene Ontology and pathway enrichment analysis and a regulatory network of differentially expressed miRNAs and their target osteosarcoma-associated genes was constructed. A total of 36 downregulated miRNAs and 182 upregulated miRNAs were identified in osteosarcoma samples compared with normal samples and 397 target genes for upregulated miRNAs and 222 target genes for downregulated miRNAs were obtained. The enriched pathways for target genes of differentially expressed miRNAs included transcriptional misregulation in cancer, the AMPK signaling pathway, and MAPK signaling pathway. In the regulatory network, has-miR-199a-5p targeted the highest number of genes and nemo-like kinase (NLK) was targeted by five miRNAs (hsa-miR-140-5p, hsa-miR-107, hsa-miR-324-5p, hsa-miR-199a-5p, and hsa-miR-28-5p). The has-miR-324-5p targets NLK, TGFB2, and PPARG. These miRNAs and their target genes may serve as potential therapeutic targets of osteosarcoma."	"Modulation of Inflammation-Related Genes in the Cornea of a Mouse Model of Dry Eye upon Treatment with Cyclosporine Eye Drops. Purpose/Aim: Inflammation is recognized as playing an etiological role in dry eye disease. This study aimed to assess the efficacy of various topical cyclosporine A (CsA) formulations on cornea inflammatory markers in a mouse model of dry eye. Six- to 7-week-old mice treated with scopolamine were housed in a controlled environment room to induce dry eye. Following dry eye confirmation by corneal fluorescein staining (CFS), the mice were treated three times a day with: 0.05%CsA (Restasis, Allergan), 0.1%CsA (Ikervis, Santen), 1%CsA oil solution, and 0.5% loteprednol etabonate (LE, Lotemax, Baush+Lomb), or left untreated. Aqueous tear production and CFS scores were assessed during the treatment period, and corneas were collected to measure the expression profile of a selection of inflammatory genes. After 7 days of treatment, the CFS scores were reduced by 21%, 31%, and 44% with 0.05%CsA, 0.1%CsA, and 1%CsA eye drops, respectively. By contrast, 0.5% LE did not decrease corneal fluorescein staining at day 10. A statistically significant dose-dependent CFS reduction was observed only between the 0.05% and 1%CsA formulations. The gene expression profiles indicated that 12, 18, 17 genes were downregulated by 0.05%CsA, 0.1%CsA, 1%CsA, respectively. Among them, the genes significantly downregulated were: IL1A, IL1R1, and TLR4 with 0.05%CsA; H2-Eb1, IL1A, IL1B, IL1RN, IL6, TGFB2, TGFB3, TLR2, TLR3, and TLR4 with 0.1%CsA; IL1B, IL6, TGFB3, and TLR4 with 1%CsA. TGFB1 and TGFBR1 were the only genes upregulated in all groups, but only TGFB1 upregulation reached significance. IL6RA was significantly upregulated by 0.05%CsA. This study indicates that the three CsA formulations effectively modulated TLR4, TGFβ1, IL1, and IL6 pathways to reduce corneal epithelium lesions in a mouse model of severe dry eye. The study also suggests that the different anti-inflammatory eye drops modulated inflammatory genes in a slightly different manner."	"The prognosis of trabeculectomy in primary angle-closure glaucoma patients. To evaluate whether the level of thrombospondin-1 (TSP-1) in aqueous humor can predict the prognosis of trabeculectomy in patients with primary angle-closure glaucoma (PACG). This case-control study involved 26 patients with PACG who experienced a failed trabeculectomy (case group) and 78 age- and sex-matched patients with PACG who underwent successful trabeculectomy (control group). Aqueous humor was collected at the time of trabeculectomy and tested for TSP-1 and TGF-β2 levels with an enzyme-linked immunosorbent assay method. Logistic regression modeling was used to assess the risk factors for failed trabeculectomy. The mean TSP-1 aqueous concentrations were significantly higher in the case group (20.67±9.79 ng/mL) than the control group (5.17±2.29 ng/mL) (P&lt;0.001). The transforming growth factor-β2 (TGF-β2) aqueous concentrations were significantly different between the case and control group, at 3633.25 and 1090.24 pg/mL, respectively (P&lt;0.001). Logistic regression analysis revealed TSP-1 level as an independent risk factor for a failed trabeculectomy (OR=3.540; 95%CI=1.092-11.482). The aqueous humor TSP-1 and TGF-β2 levels are higher in PACG eyes with failed trabeculectomy than with successful trabeculectomy at one year. The aqueous humor TSP-1 level is an independent risk factor associated with failed trabeculectomy."	"Endothelial cells from different anatomical origin have distinct responses during SNAIL/TGF-β2-mediated endothelial-mesenchymal transition. Endothelial-mesenchymal transition (EndMT) is a complex process whereby differentiated endothelial cells undergo phenotypic transition to mesenchymal cells. EndMT can be stimulated by several factors and the most common are the transforming growth factor-beta (TGF-β) and SNAIL transcription factor. Given the diversity of the vascular system, it is unclear whether endothelial cells lining different vessels are able to undergo EndMT through the same mechanisms. Here we evaluate the molecular and functional changes that occur in different types of endothelial cells following induction of EndMT by overexpression of SNAIL and TGF-β2. We found that responses to induction by SNAIL are determined by cell origin and marker expression. Human coronary endothelial cells (HCAECs) showed the greatest EndMT responses evidenced by significant reciprocal changes in the expression of mesenchymal and endothelial markers, effects that were potentiated by a combination of SNAIL and TGF-β2. Key molecular events associated with EndMT driven by SNAIL/TGF-β2 involved extracellular-matrix remodeling and inflammation (IL-8, IL-12, IGF-1, and TREM-1 signaling). Notch signaling pathway members DLL4, NOTCH3 and NOTCH4 as well as members of the Wnt signaling pathway FZD2, FZD9, and WNT5B were altered in the combination treatment strategy, implicating Notch and Wnt signaling pathways in the induction process. Our results provide a foundation for understanding the roles of specific signaling pathways in mediating EndMT in endothelial cells from different anatomical origins."	"All-trans retinoic acid stimulates the secretion of TGF-β2 via the phospholipase C but not the adenylyl cyclase signaling pathway in retinal pigment epithelium cells. By investigating that (i) all-trans retinoic acid (ATRA) affects human retinal pigment epithelium (RPE) in expressing and secreting transforming growth factor (TGF)-β2 and (ii) U73122 (phospholipase C inhibitor) and SQ22536 (adenylyl cyclase inhibitor) regulate the ATRA-induced secretion of TGF-β2 in human RPE, we sought to interpret the signaling pathway of ATRA in promoting the development of myopia. The RPE cell line (D407) was treated with (i) ATRA (10 μM), (ii) U73122 (5-40 μM) and ATRA (10 μM), or (iii) SQ22536 (5-40 μM) and ATRA (10 μM). The control group was no-treated. After stimulated at 2, 4, 8, 16, 24, and 48 h, The expression and secretion of TGF-β2 was detected. TGF-β2 in the cytoplasm was time-dependent increased by ATRA (p &lt; 0.001). A time-dependent increase in the TGF-β2 protein of the supernatant was induced by ATRA (p &lt; 0.001). U73122 (in the range of 5 to 40 μM) could suppress the secretion of TGF-β2 induced by ATRA (p &lt; 0.001), and 40 μM U73122 could completely inhibit the up-regulated effect of 10 μM ATRA. However, SQ22536 (in the range of 5 to 40 μM) had no impact on the secretion of TGF-β2 induced by ATRA (p &gt; 0.05). In RPE cells, ATRA stimulates the secretion of TGF-β2 via the phospholipase C signaling pathway but not the adenylyl cyclase signaling pathway. U73122 may inhibit the promotion of ATRA in the development of myopia."	"MicroRNA-153 affects nasopharyngeal cancer cell viability by targeting TGF-β2. The aim of the present study was to determine the function of microRNA-153 (miR-153) in the viability of nasopharyngeal cancer (NPC) cells and determine the underlying molecular mechanism. The expression of miR-153 in patients with NPC was markedly decreased compared with that in paracarcinoma tissue. miR-153 upregulation observably decreased cell viability, induced apoptosis, increased caspase-3 and -9 activity, and increased the B-cell lymphoma 2 (Bcl-2)-associated X protein/Bcl-2 protein expression ratio in 13-9B cells. miR-153 upregulation also suppressed transforming growth factor-β2 (TGF-β2) and Smad2 protein expression in 13-9B cells. TGF-β2 inhibitor enhanced the effect of miR-153 upregulation on the inhibition of cell viability, induction of apoptosis, increase in caspase-3 and -9 activity, and increase in Bax/Bcl-2 protein expression ratio in 13-9B cells. The results of the present study indicate that miR-153 affects the progression of NPC by targeting the TGF-β2/Smad2 signaling pathway."	"TGF-β2, catalase activity, H2O2 output and metastatic potential of diverse types of tumour. Theileria annulata is a protozoan parasite that infects and transforms bovine macrophages causing a myeloid-leukaemia-like disease called tropical theileriosis. TGF-β2 is highly expressed in many cancer cells and is significantly increased in Theileria-transformed macrophages, as are levels of Reactive Oxygen Species (ROS), notably H2O2. Here, we describe the interplay between TGF-β2 and ROS in cellular transformation. We show that TGF-β2 drives expression of catalase to reduce the amount of H2O2 produced by T. annulata-transformed bovine macrophages, as well as by human lung (A549) and colon cancer (HT-29) cell lines. Theileria-transformed macrophages attenuated for dissemination express less catalase and produce more H2O2, but regain both virulent migratory and matrigel traversal phenotypes when stimulated either with TGF-β2, or catalase to reduce H2O2 output. Increased H2O2 output therefore, underpins the aggressive dissemination phenotype of diverse tumour cell types, but in contrast, too much H2O2 can dampen dissemination."	"The Role of TGF-β Signaling Regulatory MicroRNAs in the Pathogenesis of Colorectal Cancer. Colorectal cancer (CRC) is one of the most common cancers globally and is associated with a high mortality rate. The transforming growth factor beta (TGF-β) signaling pathway plays an important role in normal intestinal tissue function, but has also been implicated in the development of CRC. MicroRNAs (miRNAs) have also recently emerged as important regulators of cancer development and progression. They act by targeting multiple signaling pathways including the TGF-β signaling pathway. There is growing evidence demonstrating that miRNAs target various components of the TGF-β signaling pathway, including TGF-β1, TGF-β2, regulatory SMADs (SMAD1, 2, 3, 5 and 9), co-mediator SMAD4, inhibitory SMADs (SMAD6 and 7) and the TGF-β receptors, and thereby alter the proliferation and migration of CRC cells. In this review, we summarize the data concerning the interaction between TGF-β signaling pathway and miRNAs with the aim to better understanding the CRC molecular mechanisms and hence better management of this disease."	"Notoginsenoside R1 Protects db/db Mice against Diabetic Nephropathy via Upregulation of Nrf2-Mediated HO-1 Expression. Diabetic nephropathy (DN) is a leading cause of end-stage renal failure, and no effective treatment is available. Notoginsenoside R1 (NGR1) is a novel saponin that is derived from Panax notoginseng, and our previous studies showed the cardioprotective and neuroprotective effects of NGR1. However, its role in protecting against DN remains unexplored. Herein, we established an experimental model in db/db mice and HK-2 cells exposed to advanced glycation end products (AGEs). The in vivo investigation showed that NGR1 treatment increased serum lipid, β2-microglobulin, serum creatinine, and blood urea nitrogen levels of db/db mice. NGR1 attenuated histological abnormalities of kidney, as evidenced by reducing the glomerular volume and fibrosis in diabetic kidneys. In vitro, NGR1 treatment was further found to decrease AGE-induced mitochondria injury, limit an increase in reactive oxygen species (ROS), and reduce apoptosis in HK-2 cells. Mechanistically, NGR1 promoted nucleus nuclear factor erythroid 2-related factor 2 (Nrf2) and heme oxygenase-1 (HO-1) expressions to eliminate ROS that induced apoptosis and transforming growth factor beta (TGF-β) signaling. In summary, these observations demonstrate that NGR1 exerts renoprotective effects against DN through the inhibition of apoptosis and renal fibrosis caused by oxidative stress. NGR1 might be a potential therapeutic medicine for the treatment of DN."	"Variation in Expression of Inflammation-Related Signaling Molecules with Profibrotic and Antifibrotic Effects in Cutaneous and Oral Mucosa Scars. Wound healing is a complex biologic process evolving in three phases: inflammation, proliferation, and tissue remodeling controlled by numerous growth factors and cytokines. Oral mucosa wounds heal with significantly less important scars with less numerous macrophages and mast cells and more numerous myofibroblasts than cutaneous counterparts. We analyzed 32 cutaneous and 32 oral mucosa scars for TGFbeta1, TGFbeta2, TGFbeta3, TNFalpha, PDGF BB and FGF1 expression in mesenchymal cells, endothelial cells, macrophages, and multinucleated giant cells. We identified differences in the expression of profibrotic and antifibrotic factors in oral mucosa and skin scars; TGFbeta2 was positive in cutaneous multinucleated giant cells, TNFalpha was positive in cutaneous macrophages, and both were negative in oral mucosa while TGFbeta3 was positive in oral macrophages and mostly negative in cutaneous ones. PDGF BB and FGF1 were positive in oral endothelial cells and oral macrophages and negative in macrophages with opposite positivity pattern in cutaneous scars. Based on these findings, macrophage seems to be the key player in modulating pro- and antifibrotic processes in wound regeneration."	"PRRX1 Regulates Cellular Phenotype Plasticity and Dormancy of Head and Neck Squamous Cell Carcinoma Through miR-642b-3p. Dormancy is one characteristic of cancer cells to make patients remain asymptomatic before metastasis and relapse, which is closely related to the survival rate of cancer patients, including head and neck squamous cell carcinoma (HNSCC). PRRX1 has previously been implicated in the invasion and metastasis of the epithelial-mesenchymal transition (EMT) process in different types of human carcinoma. However, whether PRRX1 can regulate cancer dormancy and its reactivation, leading to the migration and invasion of HNSCC cells, remains elusive. The aim of this study was to determine the role of PRRX1 in cellular phenotype plasticity and cancer dormancy of HNSCC cells and its association with miRNAs in HNSCC. The expression of PRRX1 was detected by immunohistochemical staining in primary HNSCC samples and the metastatic lymph nodes. Meanwhile, the role of PRRX1 and its relationship with miR-642b-3p and EMT in cellular phenotype plasticity and cancer dormancy of HNSCC were investigated in vitro and in vivo. PRRX1 was significantly higher at the invasive front of HNSCC samples compared with the metastatic lymph nodes, and such switch process was accompanied by the cellular phenotype plasticity and cell dormancy activation. In HNSCC cell lines, PRRX1 positively promoted the expression of known EMT inducers and cooperated with activated TGF-β1 to contribute to EMT and migration and invasion of HNSCC cells. Then, we found that overexpression of miR-642b-3p, one of the most significantly downregulated miRNAs in PRRX1-overexpressed cells, significantly reduced the migration and invasion, and increased cell proliferation and apoptosis. And miR-642b-3p restoration reversed PRRX1-induced cell dormancy and EMT of HNSCC cells through TGF-β2 and p38. Finally, we demonstrated that overexpressed PRRX1 was closely correlated with miR-642b-3p downregulation and the upregulation of TGF-β2 and p38 in a xenograft model of HNSCC. Our findings showed that PRRX1 may be one of the main driving forces for the cellular phenotype plasticity and tumor dormancy of HNSCC. Therefore, we can raise the possibility that EMT may help to keep cancer cell in dormant state and mesenchymal-epithelial transition may resurge dormancy in HNSCC."	"Roles of Toll-Like Receptor 4 for Cellular Pathogenesis in Primary Open-Angle Glaucoma: A potential therapeutic strategy. In recent years, glaucoma has been proposed as an autoimmune disease and an understanding immune-regulation concept has been applied for novel glaucoma therapy. Current evidence suggests an innate immunity is a keystone step for primary open angle glaucoma (POAG) pathogenesis resulting from trabecular meshwork (TM) cell fibrosis and retinal ganglion cell (RGC) death. Toll-like receptor 4 (TLR4) is a common player in the innate immunity, which appears on the TM and RGC of POAG. The activation of TLR4 regulates several molecules involving both fibrosis and cell death. Inhibition of TLR4 decreases TGF-β2-induced fibrosis in TM cells and enhances cell survival of RGC in both optic nerve crush and ischemia models. In this review, we will summarize the molecular mechanisms of TLR4 related to POAG pathogenesis. An understanding of this mechanism may provide novel development of therapeutic strategies for POAG."	"Knockdown of KDM2A inhibits proliferation associated with TGF-β expression in HEK293T cell. Lysine-specific demethylase 2A (KDM2A, also known as JHDM1A or FBXL11) plays an important role in regulating cell proliferation. However, the mechanisms on KDM2A controlling cell proliferation are varied among cell types, even controversial conclusions have been drawn. In order to elucidate the functions and underlying mechanisms for KDM2A controlling cell proliferation and apoptosis, we screened a KDM2A knockout HEK293T cell lines by CRISPR-Cas9 to illustrate the effects of KDM2A on both biological process. The results indicate that knocking down expression of KDM2A can significantly weaken HEK293T cell proliferation. The cell cycle analysis via flow cytometry demonstrate that knockdown expression of KDM2A will lead more cells arrested at G2/M phase. Through the RNA-seq analysis of the differential expressed genes between KDM2A knockdown HEK293T cells and wild type, we screened out that TGF-β pathway was significantly downregulated in KDM2A knockdown cells, which indicates that TGF-β signaling pathway might be the downstream target of KDM2A to regulate cell proliferation. When the KDM2A knockdown HEK293T cells were transient-transfected with KDM2A overexpression plasmid or treated by TGF-β agonist hydrochloride, the cell proliferation levels can be partial or completely rescued. However, the TGF-β inhibitor LY2109761 can significantly inhibit the KDM2A WT cells proliferation, but not the KDM2A knockdown HEK293T cells. Taken together, these findings suggested that KDM2A might be a key regulator of cell proliferation and cell cycle via impacting TGF-β signaling pathway."	"TGF-β2 uses the concave surface of its extended finger region to bind betaglycan's ZP domain via three residues specific to TGF-β and inhibin-α. Betaglycan (BG) is a membrane-bound co-receptor of the TGF-β family that selectively binds transforming growth factor-β (TGF-β) isoforms and inhibin A (InhA) to enable temporal-spatial patterns of signaling essential for their functions in vivo Here, using NMR titrations of methyl-labeled TGF-β2 with BG's C-terminal binding domain, BGZP-C, and surface plasmon resonance binding measurements with TGF-β2 variants, we found that the BGZP-C-binding site on TGF-β2 is located on the inner surface of its extended finger region. Included in this binding site are Ile-92, Lys-97, and Glu-99, which are entirely or mostly specific to the TGF-β isoforms and the InhA α-subunit, but they are unconserved in other TGF-β family growth factors (GFs). In accord with the proposed specificity-determining role of these residues, BG bound bone morphogenetic protein 2 (BMP-2) weakly or not at all, and TGF-β2 variants with the corresponding residues from BMP-2 bound BGZP-C more weakly than corresponding alanine variants. The BGZP-C-binding site on InhA previously was reported to be located on the outside of the extended finger region, yet at the same time to include Ser-112 and Lys-119, homologous to TGF-β2 Ile-92 and Lys-97, on the inside of the fingers. Therefore, it is likely that both TGF-β2 and InhA bind BGZP-C through a site on the inside of their extended finger regions. Overall, these results identify the BGZP-C-binding site on TGF-β2 and shed light on the specificity of BG for select TGF-β-type GFs and the mechanisms by which BG influences their signaling."	"[Zinc deficiency induces exfoliation of round spermatids by decreasing the expressions of TGF-β1 and FAK in the mouse testis]. To investigate the mechanisms of zinc deficiency inducing spermatogenic disorders. Forty 4-week-old CD-1 male mice were randomly divided into two groups of equal number: experimental and control, the former fed on a low-zinc diet and the latter on a normal diet, both for 5 weeks. Then all the mice were sacrificed and their testes and epididymides harvested for detection of the concentration of zinc ion in the testis by atomic absorption spectrophotometry, observation of the histopathological changes in the testis and epididymis by HE staining, examination of the properties of the exfoliated cells by dual immunofluorescence staining and determination of the expressions of ZO-1, FAK, TGF-β1, TGF-β2, TNF-α and Par6 proteins in the testicular tissue by Western blot. The concentration of zinc ion in the testis was significantly lower in the experimental than in the control group ([140.59 ± 16.22] vs [218.44 ± 31.29] μg/g, P &lt; 0.05). HE staining showed normal testicular tissue structure, dense seminiferous tubules and intact seminiferous epithelium, with clear and orderly arrangement of spermatogenic cells at all levels in the control group. The ratio of the abnormal seminiferous tubules to the total number was 0.01 ± 0.01. The mice in the experimental group, however, exhibited degeneration of seminiferous epithelium, reduced number of spermatids, vacuolated cytoplasm of Sertoli cells, occluded seminiferous tubules, and a remarkably larger number of abnormal seminiferous tubules than that in the control (0.75 ± 0.04 vs 0.25 ± 0.04, P &lt; 0.01). Exfoliated cells were observed in the abnormal tubules and the caput, corpus and cauda of the epididymis in the experimental group, which were shown to be immature round spermatids in H1T2 and TRA54 dual-immunofluore-scence staining. Western blot manifested that the protein expression of ZO-1 was 0.904 ± 0.052 vs 1.130 ± 0.054 in the experimental and control groups, that of Par6 was 0.129 ± 0.049 vs 0.145 ± 0.047, that of TGF-β2 was 0.116 ± 0.047 vs 0.142 ± 0.048, and that of TNF-α was 0.469 ± 0.022 vs 0.458 ± 0.023, with significant decreases in the former group as compared with the latter in the levels of FAK (0.144 ± 0.047 vs 0.219 ± 0.048, P &lt; 0.05) and TGF-β1 (0.024 ± 0.058 vs 0.586 ± 0.048, P &lt; 0.01). Zinc deficiency can induce histopathological changes in the testis of the mouse, leading to exfoliation of round spermatids, in which FAK and TGF-β1 may play an essential contributive role."	"Persistent Erectile Dysfunction after Discontinuation of 5-Alpha Reductase Inhibitor Therapy in Rats Depending on the Duration of Treatment. The current study is aimed to assess whether a longer duration of 5α-reductase inhibitor (5α-RI) exposure was associated with higher rate of permanent erectile dysfunction (ED) in a rat model. Male Sprague-Dawley rats (n=76) were assigned to five groups: (i) normal control group; (ii) dutasteride (0.5 mg/rat/d) for 4-weeks group; (iii) dutasteride for 4-weeks plus 2-weeks of resting group; (iv) dutasteride for 8-weeks group; and (v) dutasteride for 8-weeks plus 2-weeks of resting group. In vivo erectile responses to electrical stimulation, and changes of fibrotic factors and smooth muscle/collagen contents in the corpus cavernosum were evaluated in each group. Dutasteride administration for 4 and 8 weeks significantly decreased erectile parameters compared with the control group. Reduced erectile responses were recovered during 2 weeks of drug-free time in the 4-week treatment group, but were not in the 8-week group. Protein levels of fibrosis-related factors transforming growth factor (TGF)-β1, TGF-β2, and p-Smad/Smad (Smad 2/3) in the corpus cavernosum showed no significant change after 4 weeks of dutasteride oral administration, but were enhanced after 8 weeks. Dutasteride markedly decreased smooth muscle content and increased collagen after 4 and 8 weeks of use, but no nuclear size changes; however, neither group showed significant improvement in the smooth muscle to collagen ratio after the rest period. Our study showed that recovery from ED depended on the duration of medication, and administration of dutasteride for more than 8-weeks in rats could result in irreversible ED even after discontinuation of medication."	"Deficiency of IL12p40 (Interleukin 12 p40) Promotes Ang II (Angiotensin II)-Induced Abdominal Aortic Aneurysm. Objective- Abdominal aortic aneurysm is caused by the accumulation of inflammatory cells in the aortic wall. Our recent studies demonstrated that inhibition of Notch signaling attenuates abdominal aortic aneurysm formation by shifting the macrophage balance towards anti-inflammatory (M2) phenotype. Using IL12p40<sup>-/-</sup> (interleukin 12 p40) mice, we investigated the effects of M2-predominant macrophages on the development of abdominal aortic aneurysm. Approach and Results- Male (8-10 week-old) wild-type and IL12p40<sup>-/-</sup> mice (n=15) on C57BL/6 background were infused with Ang II (angiotensin II, 1000 ng/kg per minute) by implanting osmotic pumps subcutaneously for 28 days. In the IL12p40<sup>-/-</sup> mice, Ang II significantly increased the maximal intraluminal diameter (9/15) as determined by transabdominal ultrasound imaging. In addition, IL12p40-deletion significantly increased aortic stiffness in response to Ang II as measured by pulse wave velocity and atomic force microscopy. Histologically, IL12p40<sup>-/-</sup> mice exhibited increased maximal external diameter of aorta and aortic lesions associated with collagen deposition and increased elastin fragmentation compared with wild-type mice infused with Ang II. Mechanistically, IL12p40 deficiency by siRNA (small interfering RNA) augmented the Tgfβ2-mediated Mmp2 expression in wild-type bone marrow-derived macrophages without affecting the expression of Mmp9. No such effects of IL12p40 deficiency on MMP2/MMP9 was observed in human aortic smooth muscle cells or fibroblasts. Depletion of macrophages in IL12p40<sup>-/-</sup> mice by clodronate liposomes significantly decreased the maximal external diameter of aorta and aortic stiffness in response to Ang II as determined by imaging and atomic force microscopy. Conclusions- IL12p40 depletion promotes the development of abdominal aortic aneurysm, in part, by facilitating recruitment of M2-like macrophages and potentiating aortic stiffness and fibrosis mediated by Tgfβ2."	"Radio resistance in breast cancer cells is mediated through TGF-β signalling, hybrid epithelial-mesenchymal phenotype and cancer stem cells. A major obstacle for effective cancer treatment by radiation therapy is the development of radio-resistance and identification of underlying mechanisms and activated pathways will lead to better combination therapies. Irradiated MCF-7 and MDA-MB-231 breast cancer cell lines were characterised following different recovery periods. Proliferation was assessed by MTT, BrdU and clonogenic assays and apoptosis by Annexin V/ propidium iodide staining and flow cytometry. Gene expression was monitored by real time PCR/ELISA/antibody labelling and migration using transwell inserts. Breast cancer cell lines exposed to 6 Gy followed by recovery period for 7 days (D7-6 G) had increased ability for proliferation as well as apoptosis. D7-6 G from both cell lines had increased expression of transforming growth factor isoforms (TGF)-β1, β2 and β3, their receptors TGF-βR1 and TGF-βR2 which are known for such dual effects. The expression of downstream transcription factors Snail, Zeb-1 and HMGA2 also showed a differential pattern in D7-6 G cells with upregulation of at least two of these transcription factors. D7-6 G cells from both cell lines displayed hybrid epithelial-mesenchymal (E/M) phenotype with increased expression of E/M markers and migration. D7-6 G cells had increased expression of cancer stem cells markers Oct4, Sox2, and Nanog; aldehyde dehydrogenase expression and activity; proportion of CD44<sup>+</sup>CD24<sup>-</sup>cells. This was accompanied by radio resistance when exposed to a challenge dose of radiation. Treatment with TGF-βRI inhibitor abrogated the increase in proliferation of D7-6 G cells. Blocking of TGF-β signalling may therefore be an effective strategy for overcoming radio resistance induced by radiation exposure."	"Topical Application of TGF-β-Activating Peptide, KRFK, Prevents Inflammatory Manifestations in the TSP-1-Deficient Mouse Model of Chronic Ocular Inflammation. Chronic inflammation of the ocular surface poses a risk of vision impairment. The understanding of the molecular mechanisms that are involved in the inflammatory response is critical to identify novel molecular targets. Recently, thrombospondin-1 (TSP-1) has emerged as a key player in ocular surface homeostasis that efficiently activates the TGF-β2 isoform that is predominantly expressed in the ocular mucosa. Here, the potential of the peptide derived from TSP-1 (KRFK), that can activate TGF-β, is proposed as a potentially applicable therapeutic for chronic ocular surface inflammatory disorders. Our in vitro results confirm that the chosen peptide activates TGF-β, reducing the expression of co-stimulatory molecules on dendritic cells, driving them towards a tolerogenic phenotype. For the in vivo studies, the TSP-1<sup>-/-</sup> mouse is used as a pre-clinical model of chronic ocular inflammation. We observe that the topical application of KRFK alters the peripheral balance of effectors by reducing the proportion of pathogenic Th1 and Th17 cells while increasing Treg cell proportion in cervical lymph nodes. In line with these findings, the development of chronic ocular surface inflammation is significantly prevented in KRFK-treated TSP-1<sup>-/-</sup> mice, as assessed by clinical parameters and inflammatory cytokine expression in conjunctival and lacrimal gland tissues. Together, our results identify the KRFK peptide as a novel therapeutic option to prevent the development of chronic inflammatory manifestations of the ocular surface."	"The topography and proliferative activity of cells immunoreactive to various growth factors in rat femoral bone tissues after experimental fracture and implantation of titanium implants with bioactive biodegradable coatings. Biodegradable implant coatings promote proliferation and expression of BMP-2, VEGF, and TGF-β2 genes and enhance BMP-2, VEGF, and TGF-β2 regulatory effects at different stages of reparative osteogenesis. To study the topography and ratio of PCNA-, VEGF-, BMP-2-, and TGF-β2-immunoreactive cells in rat femoral bone after closed fracture and implantation of titanium implants with biodegradable calcium phosphate and hydroxyapatite coatings. Standard titanium implant screws and similar implants with bioactive coatings were used. A total of 18 rats were randomly divided into three groups, two experimental and a control one. The rats in the first experimental group were implanted with implants without specific coating, while those in the second group, with implants with specific coatings. The control rats were subjected to the same fracture as the experimental ones without subsequent implantation. On days 7, 14, and 30 of experiment, the rats were sampled for histological examination. Histological sections were prepared and processed for PCNA, BMP-2, VEGF, and TGF-β2 immunoreactivity. In the regeneration zone, PCNA-immunoreactive cells substantially outnumbered other immunoreactive cell types. During the first two weeks after fracture, in the immediate vicinity of implant surface, the rate of VEGF production increased in osteoblast subpopulations and level of TGF-32 immunoreactivity decreased in chondroblasts. The level of TGF-32 was maximum on day 30 of experiment. BMP-2-immunoreactive osteocytes were found in the zone of external general plates. They accumulated at implants with calcium phosphate coating. Their number gradually increased by day 30 of experiment. The present data suggest that biodegradable implant coatings promote proliferation and expression of BMP-2, VEGF, and TGF-β2 genes and enhance BMP-2, VEGF, and TGF-β2 regulatory effects at different stages of reparative osteogenesis."	"Characterization of cytokine gene expression in uterine cytobrush samples of non-endometritic versus endometritic postpartum dairy cows. To better understand uterine inflammation in postpartum dairy cows we collected sequential cytobrush samples at 29-35 and at 49-55 d in milk (DIM). Based on the uterine cytology, cows were classified as Non-endometritic (n = 23; &lt;18% neutrophils) or Endometritic (n = 12; ≥18% neutrophils) at 29-35 DIM and Non-endometritic (n = 17; &lt;10% neutrophils) or Endometritic (n = 9; ≥10% neutrophils) at 49-55 DIM. Cows defined as Sham Controls (n = 6) were examined by vaginoscopy at 29-35 DIM and identified as Non-endometritic (&lt;10% neutrophils) at 49-55 DIM. Cytokine gene expression in cytobrush samples was assessed using qRT-PCR. Sham Controls did not differ significantly (P &gt; 0.17) from Non-endometritic cows at 49-55 DIM and these data were combined (n = 23). Uterine cytology-based classification using the aforementioned thresholds effectively separated cows into groups with Endometritic cows having significantly higher expression of pro-inflammatory (interleukin (IL)-1α, IL-1β, IL-6, IL-8, IL-17A CSF-1; P &lt; 0.01) and regulatory (IL-1RA and IL-10; P &lt; 0.03) cytokines, relative to Non-endometritic cows. Furthermore, Non-endometritic cows showed a significant decline (P &lt; 0.03) in the expression of pro-inflammatory (IL-1α, IL-6, IL-8) and regulatory (IL-10) cytokine genes as the postpartum period progressed; whereas Endometritic cows exhibited a sustained elevation in transcript abundance throughout the sample period for both pro-inflammatory and regulatory cytokine genes. Expression of transforming growth factor (TGF) genes was more complex with TGF-β3 expression significantly (P &lt; 0.01) lower at 29-35 DIM and TGF-β1 gene expression significantly (P &lt; 0.03) increased at 49-55 DIM in Endometritic versus Non-endometritic cows. Expression of TGF-β2 gene was 2.7-fold higher (P &lt; 0.01) at 29-35 DIM in cows that remained Endometritic when compared to cows recovering by 49-55 DIM. Some Non-endometritic cows (n = 4) at 29-35 DIM were reclassified as Endometritic at 49-55 DIM. The sampling procedures at 29-35 DIM did not alter either the cellular response (P &gt; 0.43) or cytokine gene expression (P &gt; 0.17) at 49-55 DIM. In conclusion, normal uterine involution is characterized by a progressive decline in pro-inflammatory and regulatory cytokine gene expression, while cows with endometritis show a dysregulated inflammatory process characterized by a sustained elevation in pro-inflammatory and regulatory cytokine gene expression. This analysis also shows that decreased TGF-β2 gene expression at 29-35 DIM may be an indicator of recovery from endometritis."	"CD71+VISTA+ erythroid cells promote the development and function of regulatory T cells through TGF-β. Cell-surface transferrin receptor (CD71+) erythroid cells are abundant in newborns with immunomodulatory properties. Here, we show that neonatal CD71+ erythroid cells express significant levels of V-domain Immunoglobulin (Ig) Suppressor of T Cell Activation (VISTA) and, via constitutive production of transforming growth factor (TGF)- β, play a pivotal role in promotion of naïve CD4+ T cells into regulatory T cells (Tregs). Interestingly, we discovered that CD71+VISTA+ erythroid cells produce significantly higher levels of TGF-β compared to CD71+VISTA- erythroid cells and CD71+ erythroid cells from the VISTA knock-out (KO) mice. As a result, CD71+VISTA+ erythroid cells-compared to CD71+VISTA- and CD71+ erythroid cells from the VISTA KO mice-significantly exceed promotion of naïve CD4+ T cells into induced Tregs (iTreg) via TGF-β in vitro. However, depletion of CD71+ erythroid cells had no significant effects on the frequency of Tregs in vivo. Surprisingly, we observed that the remaining and/or newly generated CD71+ erythroid cells following anti-CD71 antibody administration exhibit a different gene expression profile, evidenced by the up-regulation of VISTA, TGF-β1, TGF-β2, and program death ligand-1 (PDL-1), which may account as a compensatory mechanism for the maintenance of Treg population. We also observed that iTreg development by CD71+ erythroid cells is mediated through the inhibition of key signaling molecules phosphorylated protein kinase B (phospho-Akt) and phosphorylated mechanistic target of rapamycin (phospho-mTOR). Finally, we found that elimination of Tregs using forkhead box P3 (FOXP3)-diptheria toxin receptor (DTR) mice resulted in a significant expansion in the frequency of CD71+ erythroid cells in vivo. Collectively, these studies provide a novel, to our knowledge, insight into the cross-talk between CD71+ erythroid cells and Tregs in newborns. Our results highlight the biological role of CD71+ erythroid cells in the neonatal period and possibly beyond."	"TGFβ Superfamily Members as Regulators of B Cell Development and Function-Implications for Autoimmunity. The TGFβ superfamily is composed of more than 33 growth and differentiation factors, including TGFβ1, β2, β3, BMPs, GDFs, nodal-related proteins, and activins. These members usually exert pleiotropic actions on several tissues and control multiple cellular processes, such as cell growth, cell survival, cell migration, cell fate specification, and differentiation, both during embryonic development and postnatal life. Although the effects of these factors on immune responses were elucidated long ago, most studies have been focused on the actions of TGFβs on T cells, as major regulators of adaptive immunity. In this review, we discuss new findings about the involvement of TGFβ superfamily members in the control of B cell development and function. Moreover, the potential contribution of TGFβ signaling to control B cell-mediated autoimmune diseases and its utility in the design of new therapies are also discussed."	"Dietary gossypol reduced intestinal immunity and aggravated inflammation in on-growing grass carp (Ctenopharyngodon idella). The present study explored the effects of dietary gossypol on the gut health of on-growing grass carp. The fish were fed six diets containing different levels of free gossypol (0, 121.38, 243.94, 363.89, 759.93 and 1162.06 mg/kg diet) from gossypol-acetic acid for 60 days and then challenged with Aeromonas hydrophila for 14 days. The results showed that dietary gossypol (1) could aggravate enteritis and damage the structure of intestinal epithelial cells, (2) decreased the lysozyme (LZ) and Acid phosphatase (ACP) activities, complement 3 (C3), C4 and immunoglobulin M (IgM) contents, and it down-regulated the Hepcidin (rather than distal intestine (DI)), immunoglobulin Z (IgZ), liver-expressed antimicrobial peptide (LEAP)-2B, Mucin2 and β-defensin-1 mRNA levels in the proximal intestine (PI), mid intestine (MI) and DI, (3) up-regulated intestinal pro-inflammatory cytokines tumor necrosis factor α (TNF-α), interferon γ2 (IFN-γ2), interleukin 1β (IL-1β), IL-6 (only in PI), IL-8 and IL-12p35 mRNA levels partly related to nuclear factor kappa B (NF-κB) signalling, and (4) down-regulated the mRNA levels of anti-inflammatory cytokines such as transforming growth factor (TGF)-β1, TGF-β2, interleukin 4/13A (IL-4/13A) (except IL-4/13B), IL-10 and IL-11 partly relating to target of rapamycin (TOR) signalling in the intestines of on-growing grass carp. Moreover, the dietary gossypol had no impact on the LEAP-2A, IL-12P40, IL-17D, IL-10, NF-κBp52, IKKα and eIF4E-binding proteins 2 (4E-BP2) mRNA levels in the intestines. Finally, based on the intestinal histopathological results, enteritis morbidity, LZ activity and IgM content, the safe dose of gossypol in the diets for on-growing grass carp should be less than 103.42 mg/kg diet."	"TGF-β downregulation-induced cancer cell death is finely regulated by the SAPK signaling cascade. Transforming growth factor (TGF)-β signaling is increasingly recognized as a key driver in cancer. In progressive cancer tissues, TGF-β promotes tumor formation, and its increased expression often correlates with cancer malignancy. In this study, we utilized adenoviruses expressing short hairpin RNAs against TGF-β1 and TGF-β2 to investigate the role of TGF-β downregulation in cancer cell death. We found that the downregulation of TGF-β increased the phosphorylation of several SAPKs, such as p38 and JNK. Moreover, reactive oxygen species (ROS) production was also increased by TGF-β downregulation, which triggered Akt inactivation and NOX4 increase-derived ROS in a cancer cell-type-specific manner. We also revealed the possibility of substantial gene fluctuation in response to TGF-β downregulation related to SAPKs. The expression levels of Trx and GSTM1, which encode inhibitory proteins that bind to ASK1, were reduced, likely a result of the altered translocation of Smad complex proteins rather than from ROS production. Instead, both ROS and ROS-mediated ER stress were responsible for the decrease in interactions between ASK1 and Trx or GSTM1. Through these pathways, ASK1 was activated and induced cytotoxic tumor cell death via p38/JNK activation and (or) induction of ER stress."	"TGFβ2-induced tenogenesis impacts cadherin and connexin cell-cell junction proteins in mesenchymal stem cells. Tenogenic differentiation of stem cells is needed for tendon tissue engineering approaches. A current challenge is the limited information on the cellular-level changes during tenogenic induction. Tendon cells in embryonic and adult tendons possess an array of cell-cell junction proteins that include cadherins and connexins, but how these proteins are impacted by tenogenic differentiation is unknown. Our objective was to explore how tenogenic induction of mesenchymal stem cells (MSCs) using the transforming growth factor (TGF)β2 impacted protein markers of tendon differentiation and protein levels of N-cadherin, cadherin-11 and connexin-43. MSCs were treated with TGFβ2 for 21 days. At 3 days, TGFβ2-treated MSCs developed a fibroblastic morphology and significantly decreased levels of N-cadherin protein, which were maintained through 21 days. Similar decreases in protein levels were found for cadherin-11. Connexin-43 protein levels significantly increased at 3 days, but then decreased below control levels, though not significantly. Protein levels of scleraxis and tenomodulin were significantly increased at day 14 and 21, respectively. Taken together, our results indicate that TGFβ2 is an inducer of tendon marker proteins (scleraxis and tenomodulin) in MSCs and that tenogenesis alters the protein levels of N-cadherin, cadherin-11 and connexin-43. These findings suggest a role for connexin-43 early in tenogenesis, and show that early-onset and sustained decreases in N-cadherin and cadherin-11 may be novel markers of tenogenesis in MSCs."	"Epithelial-Mesenchymal Transdifferentiation in Pediatric Lens Epithelial Cells. Posterior capsule opacification (PCO) is a complication after cataract surgery, particularly in children. Epithelial-mesenchymal transition (EMT) of lens epithelial cells, mediated by transforming growth factor beta (TGFβ), contributes to PCO. However, its pathogenesis in children is poorly understood. We correlated cell growth in culture with patient characteristics, studied gene expression of pediatric lens epithelial cells (pLEC), and examined the effects of TGFβ-2 on these cells in vitro. Clinical characteristics of children with cataracts correlated with growth behavior of pLEC in vitro. mRNA expression of epithelial (αB-crystallin, connexin-43) and mesenchymal (αV-integrin, α-smooth muscle actin, collagen-Iα2, fibronectin-1) markers was quantified in pLEC and in cell line HLE-B3 in the presence and absence of TGFβ-2. Fifty-four anterior lens capsules from 40 children aged 1 to 180 months were obtained. Cell outgrowth occurred in 44% of the capsules from patients ≤ 12 months and in 33% of capsules from children aged 13 to 60 months, but in only 6% of capsules from children over 60 months. TGFβ-2 significantly upregulated expression of αB-crystallin (HLE-B3), αV-integrin (HLE-B3), collagen-Iα2, and fibronectin-1 (in pLEC and HLE-B3 cells). Patient characteristics correlated with growth behavior of pLEC in vitro, paralleling a higher clinical incidence of PCO in younger children. Gene expression profiles of pLEC and HLE-B3 suggest that upregulation of αV-integrin, collagen-Iα2, and fibronectin-1 are involved in EMT."	"Serum Levels of miR-148a and miR-21-5p Are Increased in Type 1 Diabetic Patients and Correlated with Markers of Bone Strength and Metabolism. Type 1 diabetes (T1D) is characterized by bone loss and altered bone remodeling, resulting into reduction of bone mineral density (BMD) and increased risk of fractures. Identification of specific biomarkers and/or causative factors of diabetic bone fragility is of fundamental importance for an early detection of such alterations and to envisage appropriate therapeutic interventions. MicroRNAs (miRNAs) are small non-coding RNAs which negatively regulate genes expression. Of note, miRNAs can be secreted in biological fluids through their association with different cellular components and, in such context, they may represent both candidate biomarkers and/or mediators of bone metabolism alterations. Here, we aimed at identifying miRNAs differentially expressed in serum of T1D patients and potentially involved in bone loss in type 1 diabetes. We selected six miRNAs previously associated with T1D and bone metabolism: miR-21; miR-24; miR-27a; miR-148a; miR-214; and miR-375. Selected miRNAs were analyzed in sera of 15 T1D patients (age: 33.57 ± 8.17; BMI: 21.4 ± 1.65) and 14 non-diabetic subjects (age: 31.7 ± 8.2; BMI: 24.6 ± 4.34). Calcium, osteocalcin, parathormone (PTH), bone ALkaline Phoshatase (bALP), and Vitamin D (VitD) as well as main parameters of bone health were measured in each patient. We observed an increased expression of miR-148a (p = 0.012) and miR-21-5p (p = 0.034) in sera of T1D patients vs non-diabetic subjects. The correlation analysis between miRNAs expression and the main parameters of bone metabolism, showed a correlation between miR-148a and Bone Mineral Density (BMD) total body (TB) values (p = 0.042) and PTH circulating levels (p = 0.033) and the association of miR-21-5p to Bone Mineral Content-Femur (BMC-FEM). Finally, miR-148a and miR-21-5p target genes prediction analysis revealed several factors involved in bone development and remodeling, such as MAFB, WNT1, TGFB2, STAT3, or PDCD4, and the co-modulation of common pathways involved in bone homeostasis thus potentially assigning a role to both miR-148a and miR-21-5p in bone metabolism alterations. In conclusion, these results lead us to hypothesize a potential role for miR-148a and miR-21-5p in bone remodeling, thus representing potential biomarkers of bone fragility in T1D."	"Kidney injury by cyclosporine A is aggravated in heme oxygenase-1 deficient mice and involves regulation of microRNAs. Cyclosporine A (CsA), a widely used immunosuppressive drug, exerts nephrotoxic activities, as demonstrated by increased tubulointerstitial fibrosis, inflammation and podocyte damage. Recently, a number of microRNAs expressed in the kidney have been reported to be elevated during renal damage. Our aim was to investigate the effect of CsA on selected microRNAs in the mouse kidney after CsA treatment. Moreover, as heme oxygenase-1 (HO-1, encoded by the Hmox1 gene) was shown to play a protective role during kidney disorders, we assessed whether HO-1 deficiency in vivo influences the CsA-regulated microRNAs' expression. We have observed that the pro-fibrotic miR-21 and pro-apoptotic miR-34a expression was upregulated in kidneys of HO-1 deficient mice and it was further enhanced by CsA. Concomitantly, the level of anti-fibrotic microRNAs, belonging to miR-29 and miR-200 families, was down-regulated after CsA treatment. Generally, Hmox1 knock-out (Hmox1-/-) animals were more susceptible to CsA treatment, as the mortality rate was 4 out of 9 Hmox1-/- mice, and increased fibrosis (Tgfb2, Pai1), inflammation (Il6) and apoptosis (Cdkn1a-p21) were noticed in the HO-1 deficient kidneys. In summary, our data demonstrate that CsA induces significant changes in the expression of renal microRNAs and emphasize HO-1 deficiency as an important factor contributing to the CsA-mediated renal toxicity."	"Forced turnover of aged microglia induces an intermediate phenotype but does not rebalance CNS environmental cues driving priming to immune challenge. Microglia are the resident innate immune cells of the central nervous system. Limited turnover throughout the lifespan leaves microglia susceptible to age-associated dysfunction. Indeed, we and others have reported microglia develop a pro-inflammatory or &quot;primed&quot; profile with age, characterized by increased expression of inflammatory mediators (e.g., MHC-II, CD68, IL-1β). Moreover, immune challenge with lipopolysaccharide (LPS) causes an exaggerated and prolonged neuroinflammatory response mediated by primed microglia in the aged brain. Recent studies show colony-stimulating factor 1 receptor (CSF1R) antagonism results in rapid depletion of microglia without significant complications. Therefore, we hypothesized that CSF1R antagonist-mediated depletion of microglia in the aged brain would result in repopulation with new and unprimed microglia. Here we provide novel evidence that microglia in the brain of adult (6-8 weeks old) and aged (16-18 months old) BALB/c mice were depleted following 3-week oral PLX5622 administration. When CSF1R antagonism was stopped, microglia repopulated equally in the adult and aged brain. Microglial depletion and repopulation reversed age-associated increases in microglial CD68<sup>+</sup> lysosome enlargement and lipofuscin accumulation. Microglia-specific RNA sequencing revealed 511 differentially expressed genes with age. Of these, 117 genes were reversed by microglial repopulation (e.g., Apoe, Tgfb2, Socs3). Nevertheless, LPS challenge still induced an exaggerated microglial inflammatory response in the aged brain compared to adults. RNA sequencing of whole-brain tissue revealed an age-induced inflammatory signature, including reactive astrocytes, that was not restored by microglial depletion and repopulation. Furthermore, the microenvironment of the aged brain produced soluble factors that influenced developing microglia ex vivo and induced a profile primed to LPS challenge. Thus, the aged brain microenvironment promotes microglial priming despite repopulation of new microglia. Collectively, aged microglia proliferate and repopulate the brain, but these new cells still adopt a pro-inflammatory profile in the aged brain."	"Expression, purification, and evaluation of in vivo anti-fibrotic activity for soluble truncated TGF-β receptor II as a cleavable His-SUMO fusion protein. Excessive production of transforming growth factor-β1 (TGF-β1) and its binding to transforming growth factor-β receptor type II (TGF-βRII) promotes fibrosis by activation of the TGF-β1-mediated signaling pathway. Thus, the truncated extracellular domain of TGF-βRII (tTβRII) is a promising anti-fibrotic candidate, as it lacks the signal transduction domain. In this work, the native N-terminal tTβRII was prepared as a His-SUMO fusion protein (termed His-SUMO-tTβRII) in Escherichia coli strain BL21 (DE3). His-SUMO-tTβRII was expressed as a soluble protein under optimal conditions (6 h of induction with 0.5 mM IPTG at 37 °C). His-SUMO-tTβRII was purified by Ni-NTA resin chromatography, and then cleaved with SUMO protease to release native tTβRII, which was re-purified using a Ni-NTA column. Approximately 12 mg of native tTβRII was obtained from a one liter fermentation culture with no less than 95% purity. In vivo studies demonstrated that tTβRII prevented CCl4-induced liver fibrosis, as evidenced by the inhibition of fibrosis-related Col I and α-SMA protein expression in C57BL/6 mice. In addition, tTβRII downregulated phosphorylation of SMAD2/3, which partly repressed TGF-β1-mediated signaling. These data indicate that the His-SUMO expression system is an efficient approach for preparing native tTβRII that possesses anti-liver fibrotic activity, allowing for the large-scale production of tTβRII, which potentially could serve as an anti-fibrotic candidate for treatment of TGF-β1-related diseases."	"Effect of Myricetin on Primary Open-angle Glaucoma. Primary open angle glaucoma (POAG) is the most common form of glaucoma, with a multifactorial etiology that results in retinal ganglion cell death and loss of vision. In this study, we assessed the effects of myricetin on the trabecular meshwork cells in POAG. In the in-vivo model, glaucoma was induced in Sprague-Dawley rats by injecting hyaluronic acid into the anterior chamber of the eye (every week for six-weeks). Treatment group rats were administered myricetin (25, 50 or 100 mg/ kg body weight via oral gavage) each day for of six weeks. POAG TM cells exposed to myricetin (25, 50 or 100 μM) exhibited significantly lowered reactive oxidative species (ROS) levels and lipid peroxidation products. The expressions of transforming growth factors (TGFβ1/β2), vascular endothelial growth factor, and senescence markers (senescence associated-β-galactosidase, cyclin-dependent kinase inhibitors-p16 and p21) were substantially down-regulated in POAG TM cells exposed to myricetin. Myricetin effectively prevented IOP elevation in glaucoma-induced rats and decreased inflammatory cytokines (IL-1α, IL-1β, IL-6, Il-8, TNF-α) in the aqueous humor and POAG TM cells of glaucoma-induced rats. The observations of the study illustrate the protective effects of myricetin in glaucomatous TM cells."	"Laryngeal inflammatory response to smoke and vape in a murine model. To build a murine model for tobacco smoke and electronic cigarette vapor exposure to characterize the inflammatory and immune responses in the larynx. In this pilot study, twenty-four wild-type C57BL/6 mice were divided into four groups: smoke, vapor with nicotine, vapor without nicotine, and air only. Following daily exposure for 4 months, larynges were dissected and processed with cytokine detection arrays. Each laryngeal cytokine level between the four different groups was analyzed statistically by using statistical analysis software (SAS) to calculate the analysis of variance (ANOVA). IL-4 was the only cytokine found to achieve statistically significant different levels in this study, with elevated levels of IL-4 in the tobacco smoke and vapor with nicotine groups compared to the levels found in the vapor without nicotine and air only groups (p = 0.0418). While statistically non-significant, prominent findings revealed up-regulation of TGF-β2 and TGF-β3 in the smoke group, but near-normal levels of TGF-β2 and TGF-β3 and suppression of IL-10 in the vapor groups (p &gt; 0.05). The potential utility of the murine model is established for studying the inflammatory and immune effects of tobacco smoke and vapor on the mammalian larynx. IL-4 levels in mice larynges were significantly elevated in the tobacco smoke and vapor with nicotine groups."	"Indian Hedgehog links obesity to development of hepatocellular carcinoma. Obesity increases the risk of hepatocellular carcinoma (HCC), but precise identification and characterization of druggable oncogenic pathways that contribute to the progression of NAFLD to HCC, and hence to the increased incidence and aggressiveness of HCC in obese individuals is lacking. In this regard, we demonstrate that the Indian Hedgehog (Ihh) signaling pathway is upregulated in the fatty livers of mice consuming a high fat diet, and furthermore sustained in HCC tumors specifically within the context of a NAFLD microenvironment. Using a diet-induced mouse model of HCC wherein only obese mice develop HCC, targeted ablation of hepatocyte-secreted Ihh results in a decreased tumor burden and lower grade tumors. Ihh activation regulates the transdifferentiation of ciliated stellate cells and proliferation of Epcam<sup>+</sup> ductal cells to promote fibrosis. Mechanistically, increased expression of hitherto uncharacterized effectors of Hh pathway, namely Myc and Tgf-β2 is critical to the observed physiology. This pro-tumorigenic response is driven by increased expression of Wnt5a to effect a poorly-differentiated and invasive tumor phenotype. Wnt5a secreted from activated stellate cells act on Ror2-expressing hepatocytes. We further demonstrate that Wnt5a expression is also elevated in poorly-differentiated HCC cells, suggesting that these ligands are also able to function in an autocrine positive feedback manner to sustain poorly-differentiated tumors. Taken together, our study provides a mechanistic understanding for how Ihh signaling promotes HCC tumorigenesis specifically in obese mice. We propose that therapeutic targeting of the Hh pathway offers benefit for patients with dietary / NAFLD-driven steatotic HCC."	"Aberrant transcriptomes and DNA methylomes define pathways that drive pathogenesis and loss of brain laterality/asymmetry in schizophrenia and bipolar disorder. Although the loss of brain laterality is one of the most consistent modalities in schizophrenia (SCZ) and bipolar disorder (BD), its molecular basis remains elusive. Our limited previous studies indicated that epigenetic modifications are key to the asymmetric transcriptomes of brain hemispheres. We used whole-genome expression microarrays to profile postmortem brain samples from subjects with SCZ, psychotic BD [BD[+]] or non-psychotic BD [BD(-)], or matched controls (10/group) and performed whole-genome DNA methylation (DNAM) profiling of the same samples (3-4/group) to identify pathways associated with SCZ or BD[+] and genes/sites susceptible to epigenetic regulation. qRT-PCR and quantitative DNAM analysis were employed to validate findings in larger sample sets (35/group). Gene Set Enrichment Analysis (GSEA) demonstrated that BMP signaling and astrocyte and cerebral cortex development are significantly (FDR q &lt; 0.25) coordinately upregulated in both SCZ and BD[+], and glutamate signaling and TGFβ signaling are significantly coordinately upregulated in SCZ. GSEA also indicated that collagens are downregulated in right versus left brain of controls, but not in SCZ or BD[+] patients. Ingenuity Pathway Analysis predicted that TGFB2 is an upstream regulator of these genes (p = .0012). While lateralized expression of TGFB2 in controls (p = .017) is associated with a corresponding change in DNAM (p ≤ .023), lateralized expression and DNAM of TGFB2 are absent in SCZ or BD. Loss of brain laterality in SCZ and BD corresponds to aberrant epigenetic regulation of TGFB2 and changes in TGFβ signaling, indicating potential avenues for disease prevention/treatment."	"MOTS-c improves osteoporosis by promoting osteogenic differentiation of bone marrow mesenchymal stem cells via TGF-β/Smad pathway. To explore whether MOTS-c could improve osteoporosis by promoting osteogenic differentiation of rat bone mesenchymal stem cells (BMSCs) via transforming growth factor-β (TGF-β)/Smad pathway. Rat BMSCs were isolated and cultured, followed by osteogenic and lipid differentiation. CCK-8 (cell counting kit-8) assay was performed to detect the highest treatment dose of MOTS-c that did not affect cell proliferation. Expressions of osteogenesis-related genes (ALP, Bglap, and Runx2) were detected by qRT-PCR (quantitative Real-Time Polymerase Chain Reaction) and Western blot, respectively. Alizarin red staining and alkaline phosphatase (ALP) cytochemical staining were carried out to evaluate the effect of MOTS-c on BMSCs osteogenesis. TGF-β/Smad pathway-related genes (TGF-β1, TGF-β2, and Smad7) in BMSCs treated with MOTS-c were detected. Finally, TGF-β1 was knocked down to investigate the regulatory effect of MOTS-c on BMSCs osteogenesis. BMSCs exhibited an elongated morphology and was identified with a high purity by flow cytometry. After osteogenic differentiation, alizarin red staining and ALP staining were all positive. MOTS-c treatment could remarkably stimulate the formation of calcified nodules in BMSCs. Besides, TGF-β/Smad pathway-related genes were significantly upregulated after BMSCs were treated with MOTS-c. Promoted osteogenesis by MOTS-c treatment was reversed by the TGF-β1 knockdown. MOTS-c promotes cell differentiation of BMSCs to osteoblasts via TGF-β/Smad pathway."	"The regulation of CIRBP by transforming growth factor beta during heat shock-induced testicular injury. Cold-inducible RNA-binding protein (CIRBP) is associated with cell stress. However, its upstream regulatory factors are still largely unknown. This study investigated whether CIRBP expression was regulated by transforming growth factor beta (TGF-β) during the process of heat-induced testicular damage. Ten male adult ICR mice were allocated to heat treatment (scrotal hyperthermia at 43 °C for 30 min, n = 5) and control group (n = 5); CIRBP and TGF-β1, TGF-β2, and TGF-β3 expression levels in the testis in mRNA and protein were analyzed. Then, we conducted in vivo and in vitro studies to investigate the regulatory effects of TGF-β on CIRBP. In the in vivo study, male adult ICR mice were subjected to testicular hyperthermia followed by a local testicular injection of TGF-β antagonist (non-selective TGF-β I/II receptor inhibitor, 5 μg or 10 μg). In the in vitro study, GC2-spd cells were cultured under 43 °C for 30 min or with different TGF-β isoforms (10 ng/mL), and CIRBP expression levels in the testis and GC2-spd cells were analyzed 24 and 48 h, respectively, after treatment. As a result, heat treatment significantly downregulated the relative CIRBP mRNA and protein expression (p = 0.006 and 0.011), and significantly upregulated TGF-β2 and TGF-β3 expression levels (p = 0.022 and 0.04, for mRNA, and p = 0.001 for both protein levels). Local testicular injection of 10 μg TGF-β antagonist significantly attenuated heat-induced histological damage to the testes and CIRBP downregulation (p = 0.038). Furthermore, TGF-β2 and TGF-β3 significantly downregulated CIRBP mRNA and protein expression in GC2-spd cells (all p &lt; 0.01), exerting a similar effect to heat treatment. Our in vivo and in vitro experiments demonstrated that heat-induced CIRBP downregulation in the testes was mediated by the upregulation of TGF-β. Further studies are needed to clarify the molecular mechanisms underlying these processes."	"Combination of Ginsenoside Rg1 and Astragaloside IV reduces oxidative stress and inhibits TGF-β1/Smads signaling cascade on renal fibrosis in rats with diabetic nephropathy. Anti-oxidative stress and inhibition of TGF-β1/Smads signaling cascade are essential therapeutic strategies for diabetic nephropathy (DN). In this study, we aimed to explore the effect of combination of Ginsenoside Rg1 and Astragaloside IV on oxidative stress and TGF-β1/Smads signaling in DN rats. Wistar rats were divided into five groups: N group, M group (streptozotocin [STZ], intraperitoneally), G group (STZ rats with Ginsenoside Rg1, intragastrically [ig]), A group (STZ rats with Astragaloside IV, ig) and C group (STZ rats with Ginsenoside Rg1 and Astragaloside IV, ig). The levels of methane dicarboxylic aldehyde (MDA), catalase (CAT), glutathione peroxidase (GSH-PX), total anti-oxidative capacity (T-AOC), blood urea nitrogen (BUN), β2-microglobulin (β2-MG), serum creatinine (SCr) and urinary creatinine (UCr) were detected in all the groups. The left kidneys of the rats were harvested to detect the expression of TGF-β1, Smad2/3, Smad7 and CTGF by immunohistochemical staining, while the right kidneys were used to detect the mRNA expression of TGF-β1, Smad7 and CTGF by real-time PCR. Rats in G group, A group and C group had lower level of MDA but higher levels of CAT, GSH-PX and T-AOC compared with rats in M group. Rats in C group showed the best anti-oxidative stress level. G group, A group and C group treatments significantly decreased the levels of BUN, SCr, β2-MG and UCr. In addition, C group treatment showed the best kidney protective effect. G group, A group and C group treatments significantly diminish ED both factor and mRNA overexpression of TGF-β1 and CTGF but increase Smad7 expression in kidney tissue. The combination of Ginsenoside Rg1 and Astragaloside IV may potentially protect against DN by reducing oxidative stress and inhibiting TGF-β1/Smads signaling cascade."	"Effect of Endothelial Microparticles Induced by Hypoxia on Migration and Angiogenesis of Human Umbilical Vein Endothelial Cells by Delivering MicroRNA-19b. Microparticles (MPs) are small extracellular plasma membrane particles shed by activated and apoptotic cells, which are involved in the development of atherosclerosis. Our previous study found that microRNA (miR)-19b encapsulated within endothelial MPs (EMPs) may contribute to the upregulation of circulating miR-19b in unstable angina patients. Hypoxia is involved in atherosclerosis as a critical pathological stimulus. However, it still remains unclear whether the increase of miR-19b levels in EMPs is related to hypoxia and if the effect of miR-19b - wrapped within EMPs - stimulates hypoxia on vascular endothelial cells. This study aimed to explore the changes of miR-19b in EMPs induced by hypoxia as well as their effects on endothelial cells. Human umbilical vein endothelial cells (HUVECs) were cultured in vitro and arranged to harvest EMPs in two parts: the first part consisted of EMP<sup>control</sup> and EMP<sup>hypoxia</sup> and the second part included EMP<sup>vehicle</sup>, EMP<sup>NC mimic</sup>, and EMP<sup>miR-19b mimic</sup>. Cell migration was detected by scratch migration and transwell chamber migration. Angiogenesis was assessed by tube formation assays. Furthermore, we predicted the target gene of miR-19b by bioinformatics analysis, and luciferase assay was used to verify the targeted gene of miR-19b. Data were analyzed by one-way analysis of variance. Student's t-test was used when two groups were compared. Compared with EMP<sup>control</sup>- and EMP<sup>hypoxia</sup>-inhibited migration of cells by scratch migration assay (80.77 ± 1.10 vs. 28.37 ± 1.40, P &lt; 0. 001) and transwell chamber migration assay (83.00 ± 3.46 vs. 235.00 ± 16.52, P &lt; 0.01), the number of tube formations was markedly reduced by 70% in the EMP<sup>hypoxia</sup> group (P &lt; 0.001) in vitro analysis of HUVECs. Meanwhile, a strong inhibition of migration and tube formation of HUVECs in the presence of miR-19b-enriched EMP<sup>miR-19b mimic</sup> was observed. This effect might be due to the delivery of miR-19b in EMPs. Transforming growth factor-β2 (TGFβ2) was predicted to be one of the target genes of miR-19b, and we further confirmed that TGFβ2 was a direct target gene of miR-19b using the luciferase assay. The expression of TGFβ2 in HUVECs was inhibited by treatment with EMP<sup>hypoxia</sup> and EMP<sup>miR-19b mimic</sup>. MiR-19b in EMPs induced by hypoxia could reduce endothelial cell migration and angiogenesis by downregulating TGFβ2 expression, which may have inhibited the progression of atherosclerosis. 缺氧诱导的内皮微颗粒携带microRNA-19b作用于TGFβ2基因抑制内皮细胞迁移及血管新生摘要背景:微颗粒(Microparticles ,MPs)是细胞激活或者凋亡状态下,从细胞膜上脱落下来的颗粒物质。MPs已被证实与动脉粥样硬化的发生发展有密切联系。本课题组前期研究发现,不稳定型心绞痛患者循环中miRNA-19b水平的升高,主要是由于内皮细胞来源的微颗粒(endothelial microparticles,EMPs)中携带miRNA-19b含量增加所致。但是,这些患者血液循环中EMPs的升高及EMPs内miR-19b水平的升高是否与缺氧状态有关,目前尚不清楚。本研究旨在探讨缺氧诱导的EMPs中miR-19b的变化及其对内皮细胞发挥的生物学作用。 方法:人脐静脉内皮细胞在体外培养后获得两组EMPs:第一组是在常氧和缺氧条件下分别培养获得的EMPcontrol和EMPhypoxia;第二组是携带不同miR-19b水平的EMPvehicle、EMPNC mimic and EMPmiR-19b mimic。细胞迁移功能研究选择划痕试验和Transwell小室试验。血管新生功能研究通过成管试验。此外,我们运用生物信息学分析预测了miR-19b的靶基因,荧光素酶报告基因实验来验证miR-19b的靶基因。数据分析采用单因素方差分析,组间比较采用t检验。 结果:与EMPcontrol相比,EMPhypoxia能显著抑制划痕试验(80.77±1.10 vs 28.37±1.40, P&lt;0. 001)及Transwell小室试验(83.00±3.46 vs 235.00±16.52, P&lt;0.01)中内皮细胞迁移。EMPhypoxia组的细胞管型数量减少约70%。与此同时,在EMPmiR-19b mimic组中也观察到内皮细胞迁移及血管新生功能被抑制。生物信息学预测分析预测TGFβ2(transforming growth factor β2)为miRNA-19b发挥上述作用的潜在靶基因,并且通过荧光素酶报告基因实验证实其发挥直接调控作用。TGFβ2在 HUVECs中的表达受到EMPhypoxia和EMPmiR-19b-mimic的抑制。 结论:缺氧诱导产生的内皮微颗粒携带高水平miRNA-19b进入内皮细胞,通过直接抑制其靶基因TGFβ2的表达,抑制内皮细胞迁移以及血管新生,抑制早期动脉粥样硬化的进展。."	"DDB2 regulates Epithelial-to-Mesenchymal Transition (EMT) in Oral/Head and Neck Squamous Cell Carcinoma. DDB2 is a sensor of DNA damage and it plays an important role in Global Genomic Repair (GG-NER). Our previous studies show that DDB2 is involved in the regulation of metastasis in colon adenocarcinoma. Squamous Cell Carcinomas in the Oral/Head &amp; Neck region (HNSCC) are particularly aggressive due to high incidence of recurrence and distant metastasis. In this study, we show that DDB2 expression is downregulated in advanced HNSCCs and loss of DDB2 expression coincides with reduced survival. Recent meta-analysis of gene expression data characterized the mesenchymal-type (EMT-type) as one most aggressive cancer cluster in HNSCC. Here, we report that DDB2 constitutively represses mRNA expression of the EMT- regulatory transcription factors SNAIL, ZEB1, and angiogenic factor VEGF in HNSCC cells. As a result, re-expression of DDB2 in metastatic cells reversed EMT with transcriptional upregulation of epithelial marker E-cadherin, and downregulation of mesenchymal markers N-cadherin, Vimentin, and Fibronectin. Interestingly, in a reverse assay, depletion of DDB2 in non-metastatic cells induced expression of the same EMT-regulatory transcription factors. TGFβs are major regulators of Snail and Zeb1, and we observed that DDB2 transcriptionally regulates expression of TGFB2 in HNSCC cells. Re-expression of DDB2 in mouse embryonic fibroblasts (MEFs) isolated from Ddb2 (-/-) knockout-mice resulted in repression of EMT-regulatory factors Zeb1, Snail and Tgfb2. Taken together, these results support the active role of DDB2 as a candidate suppressor of the EMT-process in HNSCC. Early detection leads to significantly higher survival in HNSCC and DDB2 expression in tumors can be a predictor of EMT progression."	"Dexamethasone-induced inhibition of miR-132 via methylation promotes TGF-β-driven progression of pancreatic cancer. Glucocorticoids (GCs) such as dexamethasone (DEX) are administered as cancer co‑treatment for palliative purposes due to their pro‑apoptotic effects in lymphoid cancer and limited side effects associated with cancer growth and chemotherapy. However, there is emerging evidence that GCs induce therapy resistance in most epithelial tumors. Our recent data reveal that DEX promotes the progression of pancreatic ductal adenocarcinoma (PDA). In the present study, we examined 1 primary and 2 established PDA cell lines, and 35 PDA tissues from patients who had received (n=14) or not received (n=21) GCs prior to surgery. Through microRNA microarray analysis, in silico, and RT‑qPCR analyses, we identified 268 microRNAs differentially expressed between DEX‑treated and untreated cells. With a focus on cancer progression, we selected miR‑132 and its target gene, transforming growth factor-β2 (TGF‑β2), as top candidates. miR‑132 mimics directly bound to the 3' untranslated region (3'UTR) of a TGF‑β2 luciferase construct and enhanced expression, as shown by increased luciferase activity. By contrast, DEX inhibited miR‑132 expression via promoter methylation. miR‑132 mimics also reduced DEX‑induced clonogenicity, migration and expression of vimentin and E‑cadherin in vitro and in tumor xenografts. In patients, GC intake prior to surgery enhanced global hypermethylation and expression of TGF‑β2 in tissues; expression of miR‑132 was detected but could not be quantified. Our results demonstrate that DEX‑mediated inhibition of miR‑132 is a key mediator in the progression of pancreatic cancer, and the findings provide a foundation for miRNA‑based therapies."	"BMP7 antagonizes proliferative vitreoretinopathy through retinal pigment epithelial fibrosis in vivo and in vitro. The major pathogenesis of proliferative vitreoretinopathy (PVR) is that retinal pigment epithelial (RPE) cells undergo epithelial-mesenchymal transition (EMT) because of disordered growth factors, such as TGF-β, in the vitreous humor. Bone morphogenetic proteins (BMPs) are pluripotent growth factors. In this study, we identified the antifibrotic activity of BMP7 in a PVR model both in vivo and in vitro. BMP7 expression was confirmed on the PVR proliferative membranes. BMP7 was down-regulated in the PVR vitreous humor and TGF-β-induced RPE cell EMT. In the in vivo studies, BMP7 injection attenuated PVR progression in the eyes of the rabbit model. Additionally, BMP7 treatment maintained RPE cell phenotypes and relieved TGF-β2-induced EMT, migration, and gel contraction in vitro. BMP7 inhibited the TGF-β2-induced up-regulation of fibronectin and α-smooth muscle actin and the down-regulation of E-cadherin and zona occludens-1 by balancing the TGF-β2/Smad2/3 and BMP7/Smad1/5/9 pathways. These findings provide direct evidence of the ability of BMP7 in PVR inhibition and the potential of BMP7 for use in PVR therapeutic intervention.-Yao, H., Ge, T., Zhang, Y., Li, M., Yang, S., Li, H., Wang, F. BMP7 antagonizes proliferative vitreoretinopathy through retinal pigment epithelial fibrosis in vivo and in vitro."	"Foxm1 is a critical driver of TGF-β-induced EndMT in endothelial cells through Smad2/3 and binds to the Snail promoter. Endothelial-to-mesenchymal transition (EndMT) was first reported in heart development. Recent studies have shown that EndMT also occurs in the progression of cardiac fibrosis. Herein, we demonstrated a critical role of the Forkhead Box M1 (Foxm1) transcription factor in transforming growth factor beta (TGF-β)-induced EndMT in endothelial cells (ECs) and a possible underlying molecular mechanism. Foxm1 was induced in ECs following TGF-β stimulation. Using both pharmacological and molecular approaches to inhibit Foxm1 function can attenuate the TGF-β-induced EndMT and cell migration. In contrast, lentivirus-mediated overexpression of Foxm1 allowed EndMT to proceed despite the absence of TGF-β in ECs. Moreover, we found that the activation of the Smad2/3 signaling pathway and EndMT-related transcription factors played important roles in the pathogenesis of Foxm1-mediated EndMT. Further analysis revealed that Foxm1 bound to and increased the promoter activity of the Snail gene encoding a critical transcriptional regulator of EndMT. In conclusion, our results identify FOXM1 as a driver of TGF-β-induced EndMT and underscore the therapeutic potential of targeting FOXM1 for cardiac fibrosis."	"Effect of transforming growth factor-β2 on biological regulation of multilayer primary chondrocyte culture. Cytokines are extremely potent biomolecules that regulate cellular functions and play multiple roles in initiation and inhibition of disease. These highly specialised macromolecules are actively involved in control of cellular proliferation, apoptosis, cell migration and adhesion. This work, investigates the effect of transforming growth factor-beta2 (TGF-β2) on the biological regulation of chondrocyte and the repair of a created model wound on a multilayer culture system. Also the effect of this cytokine on cell length, proliferation, and cell adhesion has been investigated. Chondrocytes isolated from knee joint of rats and cultured at 4 layers. Each layer consisted of 2 × 10<sup>5</sup> cells/ml with and without TGF-β2. The expression of mRNA and protein levels of TGF-β receptors and Smad1, 3, 4, and 7 have been analysed by RT-PCR and western blot analysis. The effect of different supplementations in chondrocyte cell proliferation, cell length, adhesion, and wound repair was statistically analysed by One-way ANOVA test. Our results showed that the TGFβ2 regulates mRNA levels of its own receptors, and of Smad3 and Smad7. Also the TGF-β2 caused an increase in chondrocyte cell length, but decreased its proliferation rate and the wound healing process. TGF-β2 also decreased cell adhesion ability to the surface of the culture flask. Since, TGF-β2 increased the cell size, but showed negative effect on cell proliferation and adhesion of CHC, the effect of manipulated TGF-β2 with other growth factors and/or proteins needs to be investigated to finalize the utilization of this growth factor and design of scaffolding in treatment of different types of arthritis."	"Abnormal Expression of miR-21 in Kidney Tissue of Dogs With X-Linked Hereditary Nephropathy: A Canine Model of Chronic Kidney Disease. MicroRNAs (miRNAs) are a group of small noncoding RNAs that act as regulators of posttranslational gene/protein expression and are known to play a key role in physiological and pathological processes. The objective of our study was to compare expression of miR-21 in renal tissue from dogs affected with chronic kidney disease (CKD) caused by X-linked hereditary nephropathy (XLHN), a disease equivalent to human Alport syndrome, to that from unaffected dogs. Additionally, we sought to characterize changes in relative mRNA expression of various genes associated with miR-21 function. miRNA was isolated from kidney tissue collected from both affected dogs and unaffected, age-matched littermates at defined milestones of disease progression, including end-stage renal disease (ESRD). Additionally, autopsy samples from affected dogs at ESRD and corresponding unaffected dogs were evaluated. Samples were scored based on histological changes, and relative expression of miR-21 and kidney disease-related genes was determined using quantitative real-time polymerase chain reaction. In affected dogs, significant upregulation of kidney miR-21 was first detected at the milestone corresponding with increased serum creatinine. Furthermore, miR-21 expression correlated significantly with urine protein: urine creatinine ratio, serum creatinine concentration, glomerular filtration rate, and histologic lesions (glomerular damage, tubular damage, chronic inflammation, and fibrosis). At end-stage disease, COL1A1, TGFB1 and its receptor, TGFB2, and Serpine1 were upregulated, while PPARA, PPARGC1A, ACADM, SOD1, and EGF were downregulated. In conclusion, miR-21 is abnormally upregulated in the kidneys of dogs with CKD caused by XLHN, which may play an important pathologic role in the progression of disease by dysregulating multiple pathways."	"The involvement of multifunctional TGF-β and related cytokines in pathogenesis of endometriosis. Transforming growth factor β (TGF-β) is one of the major immune and inflammation factors responsible for regulating cell proliferation, differentiation, angiogenesis, and immune responses. Deregulated TGF-β activity, especially its influence in peritoneal cytokine cross-talk, has been implicated in pathologies of endometriosis. The aim of this study was to determine whether TGF-β could be involved in the pathogenesis of endometriosis. For this purpose, we evaluated concentrations of TGFβ1, TGF-β2, TGF-β3 and interleukin (IL)-1β, IL-6, IL-10, IL-17, IL-21 and IL-22 in peritoneal fluid (PF) and serum of women with endometriosis. A total of 66 women of reproductive age were involved in the study, 51 endometriosis patients, and 15 women from the control group. PF and serum levels of all cytokines were measured with ELISA in women with or without endometriosis. Higher PF and serum levels of TGF-β1, TGF-β2, TGF-β3, presented also as a total TGF-β in women with endometriosis compared to control were observed. The biggest increase was measured in the case of TGF-β1. The higher levels of IL-1β, IL-6, IL-10, and IL-17 in PF and serum of endometriosis women than control was observed. Higher PF levels of studied parameters in comparison with serum levels were found. In endometriosis, TGF-β could affect differentiation of T helper (Th) cells, hence produce more IL-17 and IL-10 to PF and might have an indirect influence on inflammation, which is associated with higher IL-1β and IL-6 levels. In consequent, TGF-β in peritoneal fluid may promote an environment favorable to ectopic lesion formation."	"Gene expression profile analysis of U251 glioma cells with shRNA-mediated SOX9 knockdown. In glioma, the sex-determining region Y-box 9 gene (SOX9) is overexpressed and its downregulation leads to inhibition of cell proliferation, invasion and increased cell apoptosis. To further evaluate the molecular and signal pathways associated with the function of SOX9 and SOX9 target genes, a global gene expression profile of the established SOX9-knockdown U251 cells was investigated. The molecular function and biological pathways of differentially expressed genes (DEGs) were identified by gene ontology (GO) analysis and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis. The interactome networks of DEGs were constructed using the STRING online tool. The genes were further validated by RT-qPCR. GO analysis revealed that a set of 194 DEGs was shared in both the SOX9 KD-1 and SOX9 KD-2 U251 cells. GO analysis and KEGG pathway analysis showed that the DEGs were associated with biological processes involving cellular responses to hypoxia, osteoblast differentiation and angiogenesis, and special biological pathways, such as a TGF-beta signaling pathway and a HIF-1 signaling pathway. In addition, computational network of novel identified potential target genes linked to SOX9, including TGFB2, VEGFA, EGLN3 (PHD3), CA9 and HIF-1a. All of these genes were downregulated in the SOX9 knockdown U251 cells. SOX9 may be a key regulator impacting the glioma cellular processes by influencing the cellular response to hypoxia and HIF-1 signaling pathway. TGFB2, VEGFA, EGLN3 (PHD3), CA9, and HIF-1a may be the target genes of SOX9."	"β-arrestin2 regulates the anti-inflammatory effects of Salmeterol in lipopolysaccharide-stimulated BV2 cells. Microglial activation contributes to chronic inflammation and neuronal loss in progressive neurodegenerative disorders such as Parkinson's disease (PD). Thus, treatments suppressing microglial activation may have therapeutic benefits to prevent neuronal loss in neurodegenerative diseases. Our previous findings show that Salmeterol, a long-acting β2-adrenergic receptor (β2-AR) agonist, is neuroprotective in two distinct animal models of PD, including where lipopolysaccharide (LPS) from E. coli was used to initiate chronic neurodegeneration. Salmeterol was found to be a potent inhibitor of dopaminergic neurodegeneration by regulating the production of pro-inflammatory mediators from activated microglial cells. In the present study, we investigated the molecular basis of the anti-inflammatory effects of Salmeterol on LPS-activated murine microglial BV2 cells. BV2 cells were pretreated with Salmeterol and followed by stimulation with LPS. Salmeterol inhibited LPS-induced release of the pro-inflammatory mediators such as tumor necrosis factor-α (TNF-α), interleukin-1β (IL-1β) and nitric oxide from BV2 cells. Additionally, Salmeterol suppressed nuclear translocation of nuclear factor kappa-B (NF-κB) p65 by inhibiting the IκB-α degradation and TAK1 (transforming growth factor-beta-activated kinase1) phosphorylation. We have also found that Salmeterol increases the expression of β-arrestin2 and enhances the interaction between β-arrestin2 and TAB1 (TAK1-binding protein), reduced TAK1/TAB1 mediated activation of NFκB and expression of pro-inflammatory genes. Furthermore, silencing of β-arrestin2 abrogates the anti-inflammatory effects of Salmeterol in LPS-stimulated BV2 cells. Our findings suggest that the anti-inflammatory properties of Salmeterol is β-arrestin2 dependent and also offers novel therapeutics targeting inflammatory pathways to prevent microglial cell activation and neuronal loss in neuroinflammatory diseases like PD."	"Clinical and molecular evaluation of therapy with the use of cyclosporine A in patients with psoriasis vulgaris. Psoriasis course involves increased secretion of pro-inflammatory cytokines, among others, a beta transforming growth factor (TGFβs) and its receptors. Cyclosporine A (CsA), an immunosuppressive medicine with the molecular mechanism of operation connected with the properties of cell cycle suppression, is often used in the treatment of severe forms of psoriasis. The efficacy of therapy is assessed based on the disease clinical progression indexes - Psoriasis Area and Severity Index (PASI), body surface area (BSA), and Dermatology Life Quality Index (DLQI). The aim of the study was the evaluation of the efficacy of the CsA treatment of patients with psoriasis vulgaris, based on the clinical parameters and an assessment of the expression profiles of TGFβs and TGFβRs, depending on the concurrent diabetes and metabolic syndrome. The group under study composed of 32 patients (15 with the metabolic syndrome, seven with diabetes) treated with CsA for 84 days. The molecular analysis included extraction of RNA, assessment of TGβF1-3, TGFβRI-III gene expression with the use of the RTqPCR method. The clinical assessment of the effects of this pharmacotherapy involved evaluation of the parameters: PASI, BSA, DLQI before therapy commencement, on the 42nd and 84th days of therapy. A statistically significant change in the transcription activity of TGFβ1 in patients with and without diabetes (P = 0.018) and patients with and without metabolic syndrome (P = 0.023) was shown that on the 84th day of therapy. TGFb1 may be claimed as the supplementary molecular marker to evaluate the efficacy of CsA therapy. It seems that systemic diseases have an effect on the efficacy of the applied pharmacotherapy and the course of psoriasis."	"Altered Decorin Biology in Proliferative Vitreoretinopathy: A Mechanistic and Cohort Study. To determine if vitreous levels of the pro-fibrotic cytokine transforming growth factor beta2 (TGF-β2) and its opposing regulator decorin predict subsequent proliferative vitreoretinopathy (PVR) development in patients with rhegmatogenous retinal detachment (RRD). We examined the effect of TGF-β2 and decorin on epithelial-mesenchymal transition (EMT) and collagen expression in vitro using ARPE-19 cells, and we analyzed extracellular matrix marker expression in PVR membrane and internal limiting membrane patient samples. We performed a prospective noninterventional cohort study, recruiting 125 patients undergoing vitrectomy for RRD and macular hole surgery, measured vitreous levels of TGF-β2 and decorin by ELISA, and followed them up for 6 months. Patients who did not develop PVR were compared to those who did, in order to determine whether vitreous TGF-β2 and decorin levels predicted PVR development. In vitro, TGF-β2 induced EMT and collagen production. Decorin strongly inhibited EMT and collagen production at high levels. PVR membranes expressed high levels of fibrosis-associated proteins, consistent with EMT. Vitreous TGF-β2 levels were unchanged between patients with macular holes and RRD who did or did not subsequently develop PVR. Average decorin levels were higher in the vitreous of RRD patients who subsequently developed PVR compared to those who did not, but at the measured vitreous concentrations (1-2 μg/mL), decorin did not demonstrate an in vitro inhibitory effect on EMT. In vitro, high concentrations of decorin inhibited EMT and fibrosis. At the levels seen in human vitreous, decorin did not prevent fibrosis or EMT in vitro, and higher initial vitreous decorin levels were associated with the development of postoperative PVR after vitrectomy to treat RRD, but did not reliably predict the outcome."	"Deoxynivalenol decreased intestinal immune function related to NF-κB and TOR signalling in juvenile grass carp (Ctenopharyngodon idella). Deoxynivalenol (DON) is one of the most common mycotoxins in animal feed worldwide and causes significant threats to the animal production. The intestine is an important mucosal immune organ in teleost, and it is also the first target for feed-borne toxicants in animal. However, studies concerning the effect of DON on fish intestine are scarce. This study explored the effects of DON on intestinal immune function in juvenile grass carp (Ctenopharyngodon idella). A total of 1440 juvenile grass carp (12.17 ± 0.01 g) were fed six diets containing graded levels of DON (27, 318, 636, 922, 1243 and 1515 μg/kg diet) for 60 days. After the growth trial, fish were challenged with Aeromonas hydrophila. The results were analysed by the Duncan's multiple-range test (P &lt; 0.05), indicating that compared with the control group (27 μg/kg diet), dietary DON levels up to 318 μg/kg diet: (1) decreased lysozyme (LZ) and acid phosphatase (ACP) activities, as well as complement 3 (C3), C4 and immunoglobulin M (IgM) content in the proximal intestine (PI), middle intestine (MI) and distal intestine (DI) of juvenile grass carp (P &lt; 0.05); (2) down-regulated the mRNA levels of anti-microbial substance: liver expressed antimicrobial peptide (LEAP) -2A, LEAP-2B, hepcidin, β-defensin-1 and mucin2 in the PI, MI and DI of juvenile grass carp (P &lt; 0.05); (3) up-regulated the mRNA levels of pro-inflammatory cytokines [interleukin 1β (IL-1β), tumour necrosis factor α (TNF-α), interferon γ2 (INF-γ2), IL-6 (only in PI), IL-8, IL-12p35, IL-12p40, IL-15 and IL-17D] in the PI, MI and DI of juvenile grass carp (P &lt; 0.05), which might be partly related to nuclear factor kappa B (NF-κB) signalling [IκB kinase β (IKKβ) and IKKγ/inhibitor of κBα (IκBα)/NF-κB (p65 and c-Rel)]; and (4) down-regulated the mRNA levels of anti-inflammatory cytokines [IL-10, IL-11, IL-4/13A (not IL-4/13B), transforming growth factor β1 (TGF-β1) (not TGF-β2)] in the PI, MI and DI of juvenile grass carp (P &lt; 0.05), which might be partly related to target of rapamycin (TOR) signalling [TOR/ribosomal protein S6 kinases 1 (S6K1) and eIF4E-binding proteins (4E-BP)]. All data indicated that DON could impair the intestinal immune function, and its potential regulation mechanisms were partly associated with NF-κB and TOR signalling pathways. Finally, based on the enteritis morbidity, and the LZ and ACP activities as well as IgM content in the PI, the reasonable dose of DON for grass carp were estimated to be 251.66, 305.83, 252.34 and 309.94 μg/kg diet, respectively."	"Effect of HTST and Holder Pasteurization on the Concentration of Immunoglobulins, Growth Factors, and Hormones in Donor Human Milk. Donor human milk (DHM) is submitted to Holder pasteurization (HoP) to ensure its microbiological safety in human milk banks but this treatment affects some of its bioactive compounds. The objective of this work was to compare the effects of HoP and high temperature short time (HTST) treatments on some bioactive compounds found in DHM. A total of 24 DHM batches were processed in a continuous HTST system (70, 72, and 75°C for 5-25 s) and by HoP (62.5°C for 30 min). The concentrations of immunoglobulins (Igs) A, G, and M, transforming growth factor-beta 2 (TGF-β2), adiponectine, ghrelin, and leptin were measured using a multiplex system, whereas the concentration of epidermal growth factor (EGF) was determined by ELISA. In relation to Igs, IgG showed the highest preservation rates (87-101%) after HTST treatments, followed by IgA (54-88%) and IgM (25-73%). Ig retention after any of the HTST treatments was higher than after HoP (p &lt; 0.001). Treatment times required to reduce the concentration of IgM by 90% (D-value) were 130, 88, and 49 s at 70, 72, and 75°C, while the number of degrees Celsius required to change the D-value by one factor of 10 (z-value) was 11.79°C. None of the heat treatments had a significant effect on the concentrations of TGF-β2, EGF, adiponectin, and ghrelin. In contrast, leptin was detected only in 4 of the samples submitted to HoP, whereas it was present in all samples after the different HTST treatments, with retention rates ranging between 34 and 68%. Globally, the concentration of IgA, IgG, IgM, and leptin in DHM was significantly higher after HTST pasteurization performed in a continuous system designed to be used in human milk banks than after the HoP procedure that is routinely applied at present."	"Roles of TGF β and FGF Signals in the Lens: Tropomyosin Regulation for Posterior Capsule Opacity. Transforming growth factor (TGF) β and fibroblast growth factor (FGF) 2 are related to the development of posterior capsule opacification (PCO) after lens extraction surgery and other processes of epithelial⁻mesenchymal transition (EMT). Oxidative stress seems to activate TGF β1 largely through reactive oxygen species (ROS) production, which in turn alters the transcription of several survival genes, including lens epithelium-cell derived growth factor (LEDGF). Higher ROS levels attenuate LEDGF function, leading to down-regulation of peroxiredoxin 6 (Prdx6). TGF β is regulated by ROS in Prdx6 knock-out lens epithelial cells (LECs) and induces the up-regulation of tropomyosins (Tpms) 1/2, and EMT of LECs. Mouse and rat PCO are accompanied by elevated expression of Tpm2. Further, the expression of Tpm1/2 is induced by TGF β2 in LECs. Importantly, we previously showed that TGF β2 and FGF2 play regulatory roles in LECs in a contrasting manner. An injury-induced EMT of a mouse lens as a PCO model was attenuated in the absence of Tpm2. In this review, we present findings regarding the roles of TGF β and FGF2 in the differential regulation of EMT in the lens. Tpms may be associated with TGF β2- and FGF2-related EMT and PCO development."	"TGF-β2 downregulates osteogenesis under inflammatory conditions in dental follicle stem cells. Bone formation is important for the reconstruction of bone-related structures in areas that have been damaged by inflammation. Inflammatory conditions such as those that occur in patients with rheumatoid arthritis, cystic fibrosis, and periodontitis have been shown to inhibit osteoblastic differentiation. This study focussed on dental follicle stem cells (DFSCs), which are found in developing tooth germ and participate in the reconstruction of alveolar bone and periodontal tissue in periodontal disease. After bacterial infection of inflamed dental tissue, the destruction of bone was observed. Currently, little is known about the relationship between the inflammatory environment and bone formation. Osteogenic differentiation of inflamed DFSCs resulted in decreased alkaline phosphatase (ALP) activity and alizarin red S staining compared to normal DFSCs. Additionally, in vivo transplantation of inflamed and normal DFSCs demonstrated severe impairment of osteogenesis by inflamed DFSCs. Protein profile analysis via liquid chromatography coupled with tandem mass spectrometry was performed to analyse the differences in protein expression in inflamed and normal tissue. Comparison of inflamed and normal DFSCs showed significant changes in the level of expression of transforming growth factor (TGF)-β2. Porphyromonas gingivalis (P.g.)-derived lipopolysaccharide (LPS) was used to create in vitro inflammatory conditions similar to periodontitis. The osteogenic differentiation of LPS-treated DFSCs was suppressed, and the cells displayed low levels of TGF-β1 and high levels of TGF-β2. DFSCs treated with TGF-β2 inhibitors showed significant increases in alizarin red S staining and ALP activity. TGF-β1 expression was also increased after inhibition of TGF-β2. By examining inflamed DFSCs and LPS-triggered DFSCs, these studies showed both clinically and experimentally that the increase in TGF-β2 levels that occurs under inflammatory conditions inhibits bone formation."	"Effect of Increased Convection Volume by Mid-Dilution Hemodiafiltration on the Subclinical Chronic Inflammation in Maintenance Hemodialysis Patients. Mid-dilution hemodiafiltration (MID) is a dialytic technique that might improve systemic inflammation of patients in chronic hemodialysis (HD) by increasing substitution volumes. To verify this hypothesis, we performed a prospective cross-over study comparing the effect on inflammatory biomarkers of higher convection by MID versus standard convection by post-dilution hemodiafiltration (HDF). Patients under chronic HD were therefore treated by MID and HDF by crossover design. Each treatment period lasted 4 months, with 1 month of wash-out where patients were treated by HD, for a total of 9 months. Primary outcome was the change of serum pre-dialytic C-Reactive Protein (CRP), interleukin 6 (IL-6), IL-1, IL-10, transforming growth factor-β (TGF-β), tumor necrosis factor-α, albumin and pre-albumin. Samples were obtained monthly. Ten HD patients were enrolled (age: 64.9 ± 12.6 years; 70% males; dialytic vintage: 10.6 [2.7-16.2] years). Mean convection volume was 40.1 ± 2.5 L/session in MID and 20.1 ± 2.6 L/session in HDF. A significant reduction of β2-Microglobulin was detected as a result of either treatment. In MID, CRP decreased from 11.3 (3.2-31.0) to 3.1 (1.4-14.4) mg/L (p = 0.007), IL-6 from 12.7 (5.0-29.7) to 8.3 (4.4-14.0) pg/mL (p = 0.003), and TGF-β from 10.6 (7.4-15.6) to 7.4 (5.9-9.3) ng/mL (p = 0.001). A significant reduction of CRP from 8.5 (3.2-31.0) to 4.6 (3.2-31.0) mg/L was also detected in HDF (p = 0.037), whereas no significant reduction of IL-6 (p = 0.147) and TGF-β (p = 0.094) was found. Percentage reduction of IL-6 correlated with mean convective volume in HDF (R = 0.666; p = 0.036) and in MID (R = 0.760; p = 0.020). Therefore, MID and HDF are associated with an attenuation of inflammatory pattern that is correlated with a high convective volume."	"Effect of N-carbamoylglutamate supplementation on the growth performance, antioxidant status and immune response of mirror carp (Cyprinus carpio) fed an arginine-deficient diet. The present study was conducted to determine the effect of dietary N-carbamoylglutamate (NCG) supplementation on the growth performance, antioxidant capability and immune responses of mirror carp (Cyprinus carpio) fed an arginine (Arg)-deficient diet. A total of 630 mirror carp (41.65 ± 0.14 g) were fed diets (Arg 1.24% of the diet) that were supplemented with 0.50% Arg (control diet) or graded levels of NCG at 0 (Arg deficiency diet), 0.04%, 0.08%, 0.12%, 0.16% and 0.20% for 8 weeks. The results showed that, compared with the control diet, the Arg-deficient diet supplementation with 0 NCG (1) decreased the final body weight (FWB), the weight gain rate (WGR) or the protein efficiency ratio (PER) and increased the feed conversion ratio (FCR); (2) decreased the concentration of Arg and nitric oxide (NO) and the activity of total nitric oxide synthetase (T-NOS) in the plasma; (3) decreased the activities of superoxide dismutase (SOD) in the proximal intestine (PI), catalase (CAT) in the PI and distal intestine (DI), and glutathione peroxidase (GPx) in PI and mid-intestine (MI) and increased the concentration of malondialdehyde (MDA) in the PI, MI and DI; and (4) decreased the activity of lysozyme in the plasma, increased the relative mRNA expression of tumor necrosis factor-α (TNF-α), interleukin1β (IL-1β) and interleukin 8 (IL-8) in the PI, MI and DI, and decreased the relative mRNA expression of interleukin 10 (IL-10) in the PI and MI, and transforming growth factor β2 (TGF-β2) in the PI, MI and DI. Compared with the Arg deficient-diet supplementation with 0 NCG, (1) 0.12% or 0.16% NCG increased the FBW, WGR and PER, and 0.16% NCG increased the FCR; (2) 0.08%-0.20% NCG increased the concentration of Arg, NO and the activity of T-NOS; (3) 0.08% NCG increased the activities of SOD in the PI and MI, and 0.12% NCG increased activities of CAT and GPx in the PI, MI and DI; and (4) 0.04%-0.20% NCG increased the activity of lysozyme, 0.04%-0.20% NCG decreased the relative mRNA expression of TNF-α, IL-1β and IL-8 in the PI and MI, and 0.04%-0.20% NCG increased the relative mRNA expression of IL-10 and TGF-β2 in the PI and MI. The present results indicated that dietary 0.12% or 0.16% NCG improved the growth performance, feed utilization, intestinal antioxidant capacity and immune response of mirror carp fed an Arg-deficient diet."	"ERK1/2-mediated EGFR-signaling is required for TGFβ-induced lens epithelial-mesenchymal transition. Epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs) plays a critical role in the pathogenesis of fibrotic cataract. Transforming growth factor-beta (TGFβ) is a potent inducer of this fibrotic process in lens. Recent studies in cancer progression have shown that in addition to activating the canonical Smad signaling pathway, TGFβ can also transactivate the epidermal growth factor receptor (EGFR) to enhance invasive cell migration. The present study aims to elucidate the involvement of EGFR-signaling in TGFβ-induced EMT in LECs. Treatment with TGFβ2 induced transdifferentiation of LECs into myofibroblastic cells, typical of an EMT. TGFβ2 induced the phosphorylation of the EGFR and upregulation of Egfr and Hb-egf gene expression. Pharmacologic inhibition of EGFR-signaling using PD153035 inhibited TGFβ-induced EMT, including the upregulation of mesenchymal markers and downregulation of epithelial markers. Crosstalk between TGFβ2-induced EGFR and ERK1/2 was evident, with both pathways impacting on Smad2/3-signaling. Our finding that TGFβ2 transactivates downstream EGFR-signaling reveals a previously unknown mechanism in the pathogenesis of cataract. Understanding the complex interplay between divergent canonical and non-canonical signaling pathways, as well as downstream target genes involved in TGFβ-induced EMT, will enable the development of more effective targeted therapies in the pharmacological treatment of cataract."	"The role of focal adhesion kinase in transforming growth factor-β2 induced migration of human lens epithelial cells. The migration of lens epithelial cells towards the posterior capsule is a key event in the development of posterior capsule opacification (PCO). Accumulating evidence has described crosstalk between growth factors and adhesive signaling pathways in wound healing and cell migration. The aim of the present study was to elucidate an aberrant transforming growth factor (TGF)‑β2 signaling pathway that regulated the migration of lens epithelial cells in the pathological context of PCO. The expression of fibronectin, focal adhesion kinase (FAK) and phosphorylated (p)‑FAK in HLE‑B3 cells following TGF‑β2 treatment was determined by western blot analysis and the expression of integrin α5β1 was detected by flow cytometry. Cell migration capacity was measured by wound healing and Transwell assays in the presence of 1,2,4,5‑tetraaminobenzene tetrahydrochloride, a selective FAK inhibitor, fibronectin small interfering RNA interference, arginylglycylaspartic acid peptides or α5β1‑integrin neutralizing antibodies. The 1,2,4,5‑tetraaminobenzene tetrahydrochloride was administered daily to 16 rabbits following cataract surgery. Fibronectin and TGF‑β expression were increased in the PCO group, demonstrated by immunofluorescence assays. PCO grading was conducted by slit‑lamp biomicroscopy and evaluation of posterior capsule opacification software. It was observed that TGF‑β2 promoted HLE‑B3 cell migration and upregulated fibronectin expression, which was followed by an increased phosphorylation of FAK. In addition, TGF‑β2 treatment and fibronectin surface coating significantly increased cell migration and FAK activation, which was inhibited by disrupting fibronectin‑integrin α5β1 interaction with the arginylglycylaspartic acid peptide, α5β1‑integrin neutralizing antibody or fibronectin depletion. Finally, suppression of FAK signaling by its inhibitor significantly decreased cell migration in vitro and attenuated PCO development in vivo. In summary, TGF‑β2 was indicated to promote the migration of lens epithelial cells through the TGF‑β2/fibronectin/integrin/FAK axis. Inhibition of FAK activity decreased TGF‑β2‑mediated cell migration in vitro and improved the symptoms of PCO in a rabbit model."	"Zoledronate inhibits fibroblasts' proliferation and activation via targeting TGF-β signaling pathway. Previous preclinical and clinical studies have demonstrated that zoledronate might inhibit neointimal hyperplasia at least partly by inhibiting the proliferation, adhesion and migration of vascular smooth muscle cells (VSMCs). However, whether zoledronate influences fibroblasts' proliferation and activation, which also play a key role in neointimal hyperplasia and vascular remodeling, remains largely unknown. In the present study, the effect of zoledronate on fibroblasts was investigated and the underlying molecular mechanisms were examined. After treatment with zoledronate, changes in biological behaviors, including the morphology, proliferation, cell-cycle distribution and migration of fibroblasts (NIH3T3 cells), were observed. The expression of α-SMA, TGF-β1 and TGF-β2 and the level of Smad2/3 phosphorylation in cultured fibroblasts were examined by Western blot. In vivo expression of α-SMA and TGF-β1 was assessed by immunohistochemical staining. It was shown that the typical fibroblast cell morphology was altered after zoledronate exposure. Cultured fibroblasts treated with zoledronate displayed dose-dependent inhibition of cell proliferation due to cell-cycle arrest in the S phase. Cell migration activities were also dose dependently suppressed by zoledronate treatment. Expression of α-SMA in cultured fibroblasts was significantly reduced by zoledronate treatment. Further analysis showed decreased expression of TGF-β1 and α-SMA by periadventitial delivery of zoledronate in the rat carotid balloon-injury model. The expression of TGF-β1 and TGF-β2 and the phosphorylation of Smad2/3 in cultured fibroblasts were significantly inhibited by zoledronate treatment. Our findings demonstrated that zoledronate can inhibit the proliferation, migration and activation of fibroblasts via the TGF-β signaling pathway and revealed a novel mechanism of zoledronate action against neointimal hyperplasia."	"Retinal pigment epithelium-derived transforming growth factor-β2 inhibits the angiogenic response of endothelial cells by decreasing vascular endothelial growth factor receptor-2 expression. Transforming growth factor-β (TGF-β) is a multifunctional cytokine that is known to modulate various aspects of endothelial cell (EC) biology. Retinal pigment epithelium (RPE) is important for regulating angiogenesis of choriocapillaris and one of the main cell sources of TGF-β secretion, particularly TGF-β2. However, it is largely unclear whether and how TGF-β2 affects angiogenic responses of ECs. In the current study, we demonstrated that TGF-β2 reduces vascular endothelial growth factor receptor-2 (VEGFR-2) expression in ECs and thereby inhibits vascular endothelial growth factor (VEGF) signaling and VEGF-induced angiogenic responses such as EC migration and tube formation. We also demonstrated that the reduction of VEGFR-2 expression by TGF-β2 is due to the suppression of JNK signaling. In coculture of RPE cells and ECs, RPE cells decreased VEGFR-2 levels in ECs and EC migration. In addition, we showed that TGF-β2 derived from RPE cells is involved in the reduction of VEGFR-2 expression and inhibition of EC migration. These results suggest that TGF-β2 plays an important role in inhibiting the angiogenic responses of ECs during the interaction between RPE cells and ECs and that angiogenic responses of ECs may be amplified by a decrease in TGF-β2 expression in RPE cells under pathologic conditions."	"SIRT3 deficiency leads to induction of abnormal glycolysis in diabetic kidney with fibrosis. The regulation of aberrant glucose metabolism in diabetes associated-kidney fibrosis is not well known. In this study we found the suppression of SIRT3 protein level in diabetic kidney, displays responsibility in fibrogenic programming associated with aberrant glycolysis and such abnormal glycolysis is the therapeutic target in diabetes associated-kidney fibrosis. When analyzing different strains of streptozotocin-induced diabetic mice model (fibrotic model: CD-1, less fibrotic model: C57Bl6), we found SIRT3 suppression was associated with kidney fibrosis in fibrotic CD-1; further SIRT3 suppression by systemic administration of SIRT3 siRNA in the diabetic mice, showed profound fibrogenic phenotype in the kidney. Such suppression in SIRT3 was associated with the induction of transforming growth factor-β (TGF-β)/smad signaling, higher level of HIF1α accumulation and PKM2 dimer formation; these alterations subsequently led to abnormal glycolysis and linked abnormal mesenchymal transformations in vivo and in vitro. Inhibition of such aberrant glycolysis suppressed fibrogenic programming and restored SIRT3 level as well. Such aberrant glycolysis was confirmed in the KK/Ta-Ins2Akita mouse, the mouse model of progressive diabetic kidney disease. These data demonstrate that SIRT3 deficiency promotes abnormal glycolysis which is responsible for the fibrogenic pathway in diabetic kidney. Restoration of SIRT3 could be an alternative strategy in combating diabetes associated-kidney fibrosis via inhibition of aberrant glycolysis."	"Sex Differences in Correlation with Gene Expression Levels between Ifi200 Family Genes and Four Sets of Immune Disease-Relevant Genes. The HIN-200 family genes in humans have been linked to several autoimmune diseases-particularly to systemic lupus erythematosus (SLE) and rheumatoid arthritis (RA). Recently, its human counterpart gene cluster, the Ifi200 family in mice, has been linked to spontaneous arthritis disease (SAD). However, many immune-mediated diseases (including RA and SLE) show gender difference. Understanding whether or not and how these genes play a role in sex difference in immune-mediated diseases is essential for diagnosis/treatment. This study takes advantage of the whole genome gene expression profiles of recombinant inbred (RI) strain populations from female and male mice to analyze potential sex differences in a variety of genes in disease pathways. Expression levels and regulatory QTL of Ifi200 family genes between female and male mice were first examined in a large mouse population, including RI strains derived from C57BL/6J, DBA/2J (BXD), and classic inbred strains. Sex similarities and differences were then analyzed for correlations with gene expression levels between genes in the Ifi200 family and four selected gene sets: known immune Ifi200 pathway-related genes, lupus-relevant genes, osteoarthritis- (OA-) and RA-relevant genes, and sex hormone-related genes. The expression level of Ifi202b showed the most sex difference in correlation with known immune-related genes (the P value for Ifi202b is 0.0004). Ifi202b also showed gender difference in correlation with selected sex hormone genes, with a P value of 0.0243. When comparing coexpression levels between Ifi200 genes and lupus-relevant genes, Ifi203 and Ifi205 showed significant sex difference (P values: 0.0303 and 0.002, resp.). Furthermore, several key genes (e.g., Csf1r, Ifnb1, IL-20, IL-22, IL-24, Jhdm1d, Csf1r, Ifnb1, IL-20, IL-22, IL-24, and Tgfb2 that regulate sex differences in immune diseases) were discovered. Different genes in the Ifi200 family play different roles in sex difference among dissimilar pathways of these four gene groups."	"LncRNA HOTAIR mediates TGF-β2-induced cell growth and epithelial-mesenchymal transition in human lens epithelial cells. Posterior capsule opacification (PCO) results from the proliferation, migration, and epithelial-mesenchymal transition (EMT) of residual lens epithelial cells (LECs) and fibers in the capsular bag. Previous reports have demonstrated that transforming growth factor β2 (TGF-β2) affects the cellular processes via modulation of EMT in LECs. However, the mechanisms that underlie the TGF-β2-induced EMT in LECs are still largely unknown. In this study, we confirmed that TGF-β2 induces EMT in SRA01/04 cells via the up-regulation of the long non-coding RNA (lncRNA) HOTAIR. To study the effects of HOTAIR on the proliferation, migration and EMT of SRA01/04 cells as well as the underlying mechanism, we used small interfering RNA (siRNA) to specifically attenuate HOTAIR expression in SRA01/04 cells. CCK8 cell-counting kit was used to examine SRA01/04 cell viability; EdU cell proliferation kit was used to examine SRA01/04 cell proliferation; Transwell system and scratch assays were used to observe cell migration; and qPCR and western blot analysis were used to evaluate EMT progression. We found that inhibition of HOTAIR expression repressed SRA01/04 cell viability, proliferation, migration and prevented the TGF-β2-induced changes in cellular processes via modulation of EMT. Ultimately, we found that HOTAIR affected the TGF-β/Smad signaling pathway. In summary, we elucidated that HOTAIR affected the cell viability, proliferation, and migration in the TGF-β2-induced EMT in SRA01/04 cells and suggested that modulation of HOTAIR may be helpful in PCO prevention and therapy."	"ΔNp63α Suppresses TGFB2 Expression and RHOA Activity to Drive Cell Proliferation in Squamous Cell Carcinomas. The transcriptional repressor ΔNp63α is a potent oncogene widely overexpressed in squamous cell carcinomas (SCCs) of diverse tissue origins, where it promotes malignant cell proliferation and survival. We report here the results of a genome-wide CRISPR screen to identify pathways controlling ΔNp63α-dependent cell proliferation, which revealed that the small GTPase RHOA blocks cell division upon ΔNp63α knockdown. After ΔNp63α depletion, RHOA activity is increased, and cells undergo RHOA-dependent proliferation arrest along with transcriptome changes indicative of increased TGF-β signaling. Mechanistically, ΔNp63α represses transcription of TGFB2, which induces a cell cycle arrest that is partially dependent on RHOA. Ectopic TGFB2 activates RHOA and impairs SCC proliferation, and TGFB2 neutralization restores cell proliferation during ΔNp63α depletion. Genomic data from tumors demonstrate inactivation of RHOA and the TGFBR2 receptor and ΔNp63α overexpression in more than 80% of lung SCCs. These results reveal a signaling pathway controlling SCC proliferation that is potentially amenable to pharmacological intervention."	"P311 Promotes Lung Fibrosis via Stimulation of Transforming Growth Factor-β1, -β2, and -β3 Translation. Interstitial lung fibrosis, a frequently idiopathic and fatal disease, has been linked to the increased expression of profibrotic transforming growth factor (TGF)-βs. P311 is an RNA-binding protein that stimulates TGF-β1, -β2, and -β3 translation in several cell types through its interaction with the eukaryotic translation initiation factor 3b. We report that P311 is switched on in the lungs of patients with idiopathic pulmonary fibrosis (IPF) and in the mouse model of bleomycin (BLM)-induced pulmonary fibrosis. To assess the in vivo role of P311 in lung fibrosis, BLM was instilled into the lungs of P311-knockout mice, in which fibrotic changes were significantly decreased in tandem with a reduction in TGF-β1, -β2, and -β3 concentration/activity compared with BLM-treated wild-type mice. Complementing these findings, forced P311 expression increased TGF-β concentration/activity in mouse and human lung fibroblasts, thereby leading to an activated phenotype with increased collagen production, as seen in IPF. Consistent with a specific effect of P311 on TGF-β translation, TGF-β1-, -β2-, and -β3-neutralizing antibodies downregulated P311-induced collagen production by lung fibroblasts. Furthermore, treatment of BLM-exposed P311 knockouts with recombinant TGF-β1, -β2, and -β3 induced pulmonary fibrosis to a degree similar to that found in BLM-treated wild-type mice. These studies demonstrate the essential function of P311 in TGF-β-mediated lung fibrosis. Targeting P311 could prove efficacious in ameliorating the severity of IPF while circumventing the development of autoimmune complications and toxicities associated with the use of global TGF-β inhibitors."	"Copy Number Alterations with Prognostic Potential in Clear Cell Renal Cell Carcinoma. To detect chromosomal aberrations in a genome-wide manner with potential value for prognosis in groups of patients with different histopathological grading in clear cell renal carcinoma (ccRCC). We performed a copy number alteration analysis using the Affymetrix platform and SNP 6.0 mapping arrays with samples from 48 ccRCC-patients. The data analysis was done using 3 different Software Platforms: Affymetrix Genotyping Console (version 4.1.3.840) and 2 open-source packages for validation: PennCNV and PICNIC. Consistent changes were found to divide the tumors into 4 groups: first group showed typical losses on 3p, second group losses on 3p plus gains on 5q, third group gains on chromosome 7 plus losses on chromosome 8; fourth group did not show any major changes. We selected the affected genes with the highest consistency and identified 13 different genes mapping in the SNP 6.0 results and Kyoto Encyclopedia of Genes and Genomes. Remarkable for further consideration were the phosphatidylinositol 3-kinase pathway, BRAF, MET, EGLN1; growth factors, for example, HGF, PGF and TGFB2. A multimodal approach with a well-defined workflow for detecting genomic aberrations by using array technologies and comparing the findings with different comprehensive databases may provide insights into functional tumor processes and help to identify potential new targets for more individualized future treatment."	"Melatonin Attenuates Endothelial-to-Mesenchymal Transition of Glomerular Endothelial Cells via Regulating miR-497/ROCK in Diabetic Nephropathy. Endothelial-to-mesenchymal transition (EndMT) of glomerular endothelial cells (GEnCs) can induce albuminuria in diabetic nephropathy. Melatonin attenuates diabetic nephropathy, but its role and mechanism in EndMT of GEnCs in diabetic nephropathy remain unknown. The effect of melatonin on EndMT induced by transforming growth factor (TGF)-β2 in human renal GEnCs was determined by assaying the expression of endothelial marker cells (VE-cadherin and CD31) and mesenchymal cells (α-SMA and Snail), as well as monolayer permeability. The molecular mechanism of melatonin in these processes was focused on miR-497/ROCK signaling. Furthermore, the effect and mechanism of melatonin in EndMT were confirmed in glomeruli of rats with streptozotocin-induced diabetes. Melatonin increased expression of VE-cadherin and CD31 and inhibited α-SMA and Snail levels that were altered by TGF-β2 in GEnCs. Melatonin treatment reduced expression and activity of ROCK1 and ROCK2, which suppressed TGF-β2-induced hyperpermeability of GEnCs and EndMT of GEnCs. Melatonin reduced ROCK1 and ROCK2 expression and activity in TGF-β2-stimulated GEnCs by enhancing expression of miR-497, which targets ROCK1 and ROCK2. Furthermore, we found that melatonin inhibited EndMT in glomeruli and albuminuria in rats with streptozotocin-induced diabetes. MiR-497 expression increased, whereas ROCK1 and ROCK2 expression and activity decreased in melatonin-treated diabetic rats. Melatonin attenuated EndMT of GEnCs via regulating miR-497/ROCK signaling in diabetic nephropathy. This study improves understanding of EndMT and the role of melatonin in diabetic nephropathy."	"In vivo evaluation of chitosan based local delivery systems for atorvastatin in treatment of periodontitis. Periodontitis is a local inflammatory disease initiated by bacteria accumulation and results in cytokine mediated alveolar bone resorption and tissue destruction. In this study, the effect of locally delivered atorvastatin (2% w/v) containing chitosan formulations in the treatment of periodontitis was evaluated in rats with ligature induced periodontitis. The levels of interleukin-1beta (IL-1β), IL-6, IL-8, IL-10, transforming growth factor-β1 (TGF-β1), TGF-β2 and TGF-β3 were measured after treatment with formulations. Histomorphometric analysis included the measurements of the area of alveolar bone and the distance between cemento-enamel junction (CEJ) and connective tissue attachment to tooth. Inflammatory and osteoclastic activity scores were given semiquantitatively. Following the administration of atorvastatin, release of pro-inflammatory (IL-1β, IL-6 and IL-8) and anti-inflammatory (TGF-β1 and TGF-β2) cytokines was found to decrease, with a significant alveolar bone healing, when compared to that of control. The anti-inflammatory effect was observed to enhance in presence of chitosan. These findings suggest that chitosan based delivery system for a statin group drug, atorvastatin is a promising for the treatment of periodontal disease."	"Levels of Growth Factors and IgA in the Colostrum of Women from Burundi and Italy. Colostrum is produced in the first days postpartum. It is a known source of immune mediators for a newborn within the first week of life. Although it is still unclear if colostrum composition varies between populations, recent data suggest differences. Hepatocyte growth factor (HGF); transforming growth factor-β (TGF-β) 1, 2, and 3; and immunoglobulin A (IgA) are key immunological components of colostrum that stimulate neonatal gastrointestinal and immune system development. We aimed to investigate the differences in the concentration between immune markers in the colostrum of mothers living in Burundi and Italy, and to identify the factors associated with differences. In this cross-sectional birth cohort study, a total of 99 colostrum samples from Burundian (n = 23) and Italian (n = 76) women were collected at 0 to 6 days postpartum. A clinical chemistry analyser was used for IgA quantification and electro-chemiluminescence, for HGF and TGFβ1-3 assessment. A univariate analysis and multivariate linear regression model were used for statistical testing. The concentrations of TGF-β2 (p = 0.01) and IgA (p &lt; 0.01) were significantly higher in the colostrum from the women residing in Burundi than in Italy, both in a univariate analysis and upon the adjustment for confounding factors. A similar trend is seen for HGF, reaching statistical significance upon a multivariate analysis. We found a moderate to strong positive correlation between the TGF-β isoforms and IgA concentration in both countries (p &lt; 0.01), with stronger concentration in the colostrum from Burundi. The results of this study are in support of previous data, suggesting that concentration of the immune active molecules is higher in the human milk of women residing in developing countries. However, with a small sample size, caution must be applied, as the findings require further confirmation. Future work should also be focused on other factors (e.g., lipid and microbial composition), as well as the investigation into colostrum and between populations comparison, adjusting for potential confounders."	"IOP lowering effect of topical trans-resveratrol involves adenosine receptors and TGF-β2 signaling pathways. Trans-resveratrol was earlier shown to lower intraocular pressure (IOP) in rats; however, its mechanisms of action remain unclear. It has been shown to modulate adenosine receptor (AR) and TGF-β2 signaling, both of which play a role in regulating IOP. Hence, we investigated effects of trans-resveratrol on AR and TGF-β2 signaling. Steroid-induced ocular hypertensive (SIOH) rats were pretreated with A1AR, phospholipase C (PLC) and ERK1/2 inhibitors and were subsequently treated with single drop of trans-resveratrol. Metalloproteinases (MMP)-2 and -9 were measured in aqueous humor (AH). In another set of experiments, effect of trans-resveratrol on AH level of tissue plasminogen activator (tPA) and urokinase plasminogen activator (uPA) was determined after single and multiple drop administration in SIOH rats. Effect of trans-resveratrol on ARs expression, PLC and pERK1/2 activation and MMPs, tPA and uPA secretion was determined using human trabecular meshwork cells (HTMC). Further, effect of trans-resveratrol on TGF-β2 receptors, SMAD signaling molecules and uPA and tPA expression by HTMC was determined in the presence and absence of TGF-β2. Pretreatment with A1AR, PLC and ERK1/2 inhibitors antagonized the IOP lowering effect of trans-resveratrol and caused significant reduction in the AH level of MMP-2 in SIOH rats. Trans-resveratrol increased A1AR and A2AAR expression, cellular PLC, pERK1/2 levels and MMP-2, tPA and uPA secretion by HTMC. Additionally, it produced TGFβRI downregulation and SMAD 7 upregulation. In conclusion, IOP lowering effect of trans-resveratrol involves upregulation of A1AR expression, PLC and ERK1/2 activation and increased MMP-2 secretion. It downregulates TGFβRI and upregulates SMAD7 hence, inhibits TGF-β2 signaling."	"miR-328 prevents renal fibrogenesis by directly targeting TGF-β2. MicroRNAs have been shown to be crucial in the post-transcriptional regulation of various cellular biological functions. They also play important roles in various human diseases. In renal fibrosis, aberrant miRNA expression is observed. However, little is known about the roles of miR-328 in renal fibrogenesis and its regulating mechanisms. In the present study, we investigated the miR-328 expression profile in TGF-β1-induced renal fibrogenesis cell model using qRT-PCR. The results showed that TGF-β1 could induce EMT expression and fibrogenesis and significantly down-regulated the expression of miR-328. Through bioinformatical analysis, we identified that TGF-β2 was a direct target gene of miR-328. Luciferase reporter assay was conducted to further confirm this finding. The results also demonstrated that miR-328 mimics transfection could significantly upregulate miR-328 expression. Furthermore, upregulation of miR-328 could further repress the expression of TGF-β2 and ECM proteins. In conclusion, this study demonstrated that miR-328 could prevent renal fibrogenesis by directly targeting TGF-β2. Our findings suggested that elevated renal miR-328 levels might be a novel therapeutic strategy for treating renal fibrosis (Fig. 4, Ref. 36)."	"TGF-β2, EGF, and FGF21 Growth Factors Present in Breast Milk Promote Mesenteric Lymph Node Lymphocytes Maturation in Suckling Rats. Breast milk, due to its large number of nutrients and bioactive factors, contributes to optimal development and immune maturation in early life. In this study, we aimed to assess the influence of some growth factors present in breast milk, such as transforming growth factor-β2 (TGF-β2), epidermal growth factor (EGF), and fibroblast growth factor 21 (FGF21), on the immune response development. Newborn Wistar rats were supplemented daily with TGF-β2, EGF, or FGF21, throughout the suckling period. At day 14 and 21 of life, lymphocytes from mesenteric lymph nodes (MLNs) were isolated, immunophenotyped, and cultured to evaluate their ability to proliferate and release cytokines. The main results demonstrated that supplementation with TGF-β2, EGF, or FGF21 modified the lymphocyte composition in MLNs. At day 14, all supplementations were able to induce a lower percentage of natural killer (NK) cells with the immature phenotype (CD8⁺), and they reduced the CD8αα/CD8αβ ratio at day 21. Moreover, the cytokine pattern was modified by the three treatments, with a down regulation of interleukin (IL)-13 secretion. These results showed the contribution of these growth factors in the lymphocytes MLNs immune maturation during the neonatal period."	"Src mediates TGF-β-induced intraocular pressure elevation in glaucoma. Glaucoma, a progressive and irreversible optic neuropathy, is one of the leading causes of vision impairment worldwide. Elevation of intraocular pressure (IOP) due to transforming growth factor-β (TGF-β)-induced dysfunction of the trabecular meshwork is a risk factor for glaucoma, but the underlying molecular mechanisms remain elusive. Here, we show that Src kinase is involved in TGF-β-induced IOP elevation. We observed that dasatinib, a potent Src inhibitor, suppressed TGF-β2-induced IOP in rat eyes. Mechanistic analyses in human trabecular meshwork cells showed that TGF-β2 activated Src signaling and concomitantly increased cytoskeletal remodeling, cell adhesion, and extracellular matrix (ECM) accumulation. Src was activated via TGF-β2-induced upregulation of the Src scaffolding protein CasL, which mediates the assembly of focal adhesions, cytoskeletal remodeling, and ECM deposition. Activation of Src suppressed the expression of tissue plasminogen activator, thereby attenuating ECM degradation. Furthermore, the Src inhibitor ameliorated TGF-β2-induced changes in the contractile and adhesive characteristics of trabecular meshwork cells, and ECM deposition. These findings underscore the crucial role of Src activity in TGF-β-induced IOP elevation and identify Src signaling as a potential therapeutic target in glaucoma."	"In vitro inhibition of proliferation, migration and epithelial-mesenchymal transition of human lens epithelial cells by fasudil. To study the potential role of fasudil as a treatment for posterior capsular opacification (PCO) of the human crystalline lens. Human lens epithelial cells (HLECs; line SRA01/04) was exposed to transforming growth factor-β2 (TGF-β2) to induce the process of epithelial-mesenchymal transition (EMT). Fasudil was applied to the cell samples. Its effect on overall HLECs proliferation and migration was studied, as was its influence on EMT induction by TGF-β2 using cell migration assay, MTT colorimetric assay and Western blot assay. Fasudil inhibited the proliferation of SRA01/04. Its effect was time- and concentration-dependent. The migration of SRA01/04 cells was significantly reduced 24-72h after fasudil treatment, and the half maximal inhibitory concentration (IC50) was 22.37 µmol/mL at 72h. Reversal of the elongated, fibroblast-like shape changes induced by TGF-β2 in SRA01/04 cells was observed. Fasudil up-regulated the expression of Connexin43 protein and down-regulated the expression of α-SMA protein compared with the cells treated with TGF-β2. Furthermore, when exposed to fasudil, the phosphorylation of Rho-associated protein kinase (Rock) and myosin light chain (MLC) could not be activated in the cell preparations. Fasudil suppresses the proliferation and migration of SRA01/04 cells, and inhibits the process of EMT induced by TGF-β2. These results suggest that fasudil may serve as a therapeutic agent for PCO."	"Serum biomarkers of fibrosis and extracellular matrix remodeling in patients with nonalcoholic fatty liver disease: association with liver histology. We sought to explore the interplay of multiple serum biomarkers of fibrosis and extracellular matrix remodeling with the results of liver histology in patients with nonalcoholic fatty liver disease (NAFLD). Venous blood samples were collected from 80 patients with biopsy-proven NAFLD and 59 age-matched and sex-matched healthy controls. Serum levels of transforming growth factor (TGF)-β1, TGF-β2, matrix metalloproteinases (MMP)-1, MMP-2, MMP-7, MMP-9, MMP-10, tissue inhibitors of metalloproteinase (TIMP)-1, and TIMP-2 were determined by using the Luminex MagPix technology on a MAGPIX analyzer. We documented significant differences in the levels of TGF-β1, TGF-β2, MMP-2, MMP-7, MMP-9, TIMP-1, and TIMP-2 between NAFLD patients and controls. However, none of these biomarkers was able to distinguish between nonalcoholic steatohepatitis and nonalcoholic fatty liver. TIMP-1 levels were significantly higher in patients with significant fibrosis (fibrosis stage ≥2; 2624±1261 pg/ml) than in those without (fibrosis stage 0-1; 2096±906 pg/ml; P=0.03). Moreover, serum levels of TIMP-1 were identified as the only independent predictor of histological fibrosis (β=0.298, t=2.7, P=0.007). Our study provides insights into the association of multiple serum biomarkers of fibrosis and extracellular matrix remodeling with NAFLD histology. Notably, serum levels of TIMP-1 were identified as a clinically useful marker for distinguishing NAFLD patients with and without significant fibrosis."	"Extrahepatic Upregulation of Transforming Growth Factor Beta 2 in HCV Genotype 4-Induced Liver Fibrosis. Elevated levels of transforming growth factor-β (TGF-β) family mediate myofibroblast generation and extracellular matrix deposition, thus making TGF-β recognized as major profibrogenic cytokines. In this article, we provide evidence that extrahepatic TGF-β2 expression at RNA and protein levels in peripheral leucocytes and serum, respectively, correlate with hepatic fibrogenesis. Current study includes a total of 110 subjects [89 naive hepatitis C virus (HCV)-infected patients (f0-f4) and 21 healthy controls]. Array profiling of 84 fibrosis-related transcripts revealed that TGF-β2 RNA was significantly upregulated compared with controls. Transcription results were confirmed by specific qRT-PCR on TGF-β2 RNA in peripheral leucocytes and TGF-β2 protein by ELISA in serum. PCR array and qRT-PCR for TGF-β2 RNA in peripheral leucocytes revealed that HCV-infected patients, regardless of the degree of fibrosis, had significantly elevated TGF-β2 RNA levels compared with controls (P = 0.018 and 0.047, respectively). This extrahepatic upregulation of TGF-β2 RNA was confirmed by elevated levels of secretory TGF-β2 protein in infected sera (P = 0.001). The Area Under the Curve of the receiver operating characteristic curve for the TGF-β2 protein between patients and controls was 0.80, a value that renders serum TGF-β2 protein a promising biomarker for liver fibrosis."	"Excreted-secreted antigens of Toxoplasma gondii inhibit Foxp3 via IL-2Rγ/JAK3/Stats pathway. Toxoplasma gondii excreted-secreted antigens (ESA) could lead to the fetal abortion especially in the early stage of pregnancy. Deficit in regulatory T cells is a critical event in the fetal abortion. Transcription factor forkhead box p3 (Foxp3) mediates differentiation and functional roles on regulatory T cells. Previously, we revealed that ESA inhibited Foxp3 through the suppression of transforming growth factor-β type II receptor, phosphorylation of Smad2, Smad3, and Smad4. Knockdown of Smad2 collaborated with ESA to further inhibit Foxp3. The decrease in Foxp3 caused by ESA reversed via forced expression of Smad2, Smad3, and Smad4, respectively. In this study, we investigate whether other signaling pathways are implicated in ESA-induced Foxp3 downregulation. EL4 cells were cultured and stimulated with ESA. Interleukin-2 receptor γ (IL-2Rγ) chain, Janus kinase 3 (JAK3), signal transducer and activator of transcription 5 (Stat5), Stat3, phosphorylation of Stat5 and Stat3 were assayed by Western blot analysis. Phosphorylation of Stat5 and Stat3 was further measured by cellular immunofluorescence. The expression plasmid of pcDNA3.1-Stat3 and pcDNA3.1-Stat5b was constructed, respectively. The concentration of interleukin-2 (IL-2) in the culture supernatants was detected by enzyme-linked immunosorbent assay. ESA inhibited the level of JAK3, phosphorylation of Stat5 and Stat3, and Foxp3 in EL4 cells. The suppressive effects of ESA on Foxp3 were attenuated by forced expression of Stat5 and Stat3. In addition, ESA suppressed IL-2Rγ in EL4 cells, while IL-2Rγ agonist could markedly reverse the diminished Foxp3 caused by ESA. Furthermore, ESA directly influenced the expression of IL-2Rγ, rather than the availability of IL-2 indirectly. ESA suppressed the level of Foxp3 via inhibiting IL-2Rγ/JAK3/Stats signaling pathway in EL4 cells."	"Interactions Between Disseminated Tumor Cells and Bone Marrow Stromal Cells Regulate Tumor Dormancy. To succinctly summarize recent findings concerning dormancy regulating interactions between bone marrow stromal cells and disseminated tumor cells. Recent studies have highlighted roles of the bone marrow microenviroment, including osteoblasts, mesenchymal stem cells (MSCs), and endothelial cells, in inducing or maintaining cancer cell dormancy. Key pathways of interest include: osteoblast-induced transforming growth factor (TGF)-β2 signaling, transfer of MSC-derived exosomes containing dormancy inducing microRNA, cancer cell cannibalism of MSCs, and endothelial cell secretion of thrombospondin 1 (TSP1). The bone marrow is a common site of metastatic disease recurrence following a period of cancer cell dormancy. Understanding why disseminated tumor cells enter into dormancy and later resume cell proliferation and growth is vital to developing effective therapeutics against these cells. The bone marrow stroma and the various pathways through which it participates in crosstalk with cancer cells are essential to furthering understanding of how dormancy is regulated."	"Regulation of connexin 43 expression in human gingival fibroblasts. Abundance of connexin 43 (Cx43), a transmembrane protein that forms hemichannels (HCs) and gap junctions (GJs), is dynamically regulated in human gingival fibroblasts (GFBLs) during wound healing. This may be important for fast and scarless gingival wound healing as Cx43 is involved in key cell functions important during this process. Our aim was to uncover the factors that regulate Cx43 expression and abundance in GFBLs. We hypothesized that cytokines and growth factors released during wound healing coordinately regulate Cx43 abundance in GFBLs. TGF-β1, -β2, -β3, PGE2 and IL-1β significantly upregulated, while TNF-α and IFN-γ downregulated Cx43 in cultured GFBLs. TGF-β1, -β2, -β3, IL-1β and IFN-γ modulated Cx43 abundance at both mRNA and protein levels, while TNF-α and PGE2 regulated only Cx43 protein abundance, suggesting involvement of distinct transcriptional/post-transcriptional and translational/post-translational mechanisms, respectively. TGF-β1-induced upregulation of Cx43 was mediated by TGFβRI (ALK5) and SMAD2/3 signaling, and this was potently suppressed by PGE2, IL-1β, TNF-α and IFN-γ that inhibited SMAD2/3 phosphorylation. Regulation of Cx43 abundance in GFBLs involves transcriptional/post-transcriptional and translational/post-translational mechanisms that are distinctly modulated by an interplay between TGF-β isoforms and PGE2, IL-1β, TNF-α and IFN-γ."	"Histological investigation of human glaucomatous eyes: Extracellular fibrotic changes and galectin 3 expression in the trabecular meshwork and optic nerve head. Glaucoma is a leading cause of irreversible vision loss and is associated with fibrotic changes in two ocular tissues-the optic nerve head (ONH) and trabecular meshwork (TM). We investigated the differences in extracellular matrix components (ECM) including collagen, elastin, transforming growth factor beta-2, type-II receptor (TGFβRII) and Galectin3 (Gal3) in the glaucomatous human eyes to quantify fibrotic changes in ONH and TM. Glaucomatous and control human donor eyes were prepared for chemical and immunological staining to quantify ECM protein expression in the TM and ONH. Chemical staining included: Trichrome (collagen), Vernhoeff-Van Giesen (elastin) and Sirius Red (collagen). Immunohistochemistry was used to determine levels of Gal3 and TGFβ2RII. Quantitative analyses were performed using Image J software. Student's t-test was used to compare groups and Pearson's test was used to determine correlations P-values of 0.05 (or less) were considered statistically significant. Deposition of ECM proteins was elevated in glaucomatous tissues. There was increased collagen (P = 0.0469), Gal3 (P &lt; 0.0001) and TGFβ2RII (P = 0.0005) in the TM of glaucomatous eyes. Likewise, collagen (P = 0.0517) and Galectin3 (P = 0.041) were increased in the ONH glaucomatous eyes. There was a correlation of TGFβRII with Gal3 in the TM (P &lt; 0.0001) and optic nerve (P = 0.0003). The TM and ONH of glaucomatous eyes showed increased expression of ECM proteins supporting a fibrotic pathology. Galectin3 and TGFβ-2R II showed a positive correlation in TM and optic nerve supporting co-localization and suggesting their potential role in the glaucoma fibrotic process. Clin. Anat. 31:1031-1049, 2018. © 2018 The Authors. Clinical Anatomy published by Wiley Periodicals, Inc. on behalf of American Association of Clinical Anatomists."	"Modulation of porcine microRNAs associated with apoptosis and NF-κB signaling pathways in response to Salmonella enterica serovar Typhimurium. MicroRNAs (miRNAs) are small, non-coding RNAs that regulate eukaryotic gene expression at the post-transcriptional level. In addition to their involvement in a variety of biological processes, miRNAs are implicated in the eukaryotic response to bacterial pathogens. The objective of this study was to identify miRNAs involved in the regulation of the porcine response to the human foodborne pathogen, Salmonella enterica serovar Typhimurium (S. Typhimurium). Differential expression analysis from the whole blood of pigs over a 7-day period following S. Typhimurium challenge identified 50 miRNAs, many of which are implicated in functional pathways associated with NF-κB signaling and apoptosis (e.g., ssc-let-7c, ssc-miR-21). Transcriptional analyses of whole blood mRNA identified the differential expression of several genes involved in NF-κB signaling and apoptosis (e.g., IL10, CBX4, TGFB2) whose mRNAs are predicted targets of miRNAs identified in our study. Overall, our data identified porcine miRNAs that are differentially expressed following S. Typhimurium challenge, thereby defining regulatory factors to target for controlling the porcine response to this human foodborne pathogen."	"The Corneal Basement Membranes and Stromal Fibrosis. The purpose of this review was to provide detailed insights into the pathophysiology of myofibroblast-mediated fibrosis (scarring or late haze) after corneal injury, surgery, or infection. Literature review. The epithelium and epithelial basement membrane (EBM) and/or endothelium and Descemet's basement membrane (BM) are commonly disrupted after corneal injuries, surgeries, and infections. Regeneration of these critical regulatory structures relies on the coordinated production of BM components, including laminins, nidogens, perlecan, and collagen type IV by epithelial, endothelial, and keratocyte cells. Whether a cornea, or an area in the cornea, heals with transparency or fibrosis may be determined by whether there is injury to one or both corneal basement membranes (EBM and/or Descemet's BM) and delayed or defective regeneration or replacement of the BM. These opaque myofibroblasts, and the disordered extracellular matrix these cells produce, persist in the stroma until the EBM and/or Descemet's BM is regenerated or replaced. Corneal stromal fibrosis (also termed &quot;stromal scarring&quot; or &quot;late haze&quot;) occurs as a consequence of BM injury and defective regeneration in both the anterior (EBM) and posterior (Descemet's BM) cornea. The resolution of fibrosis and return of stromal transparency depends on reestablished BM structure and function. It is hypothesized that defective regeneration of the EBM or Descemet's BM allows key profibrotic growth factors, including transforming growth factor beta-1 (TGF-β1) and TGF-β2, to penetrate the stroma at sustained levels necessary to drive the development and maintenance of mature opacity-producing myofibroblasts from myofibroblast precursors cells, and studies suggest that perlecan and collagen type IV are the critical components in EBM and Descemet's BM that bind TGF-β1, TGF-β2, platelet-derived growth factor, and possibly other growth factors, and regulate their bioavailability and function during homeostasis and corneal wound healing."	"Trichostatin A Restores Expression of Adherens and Tight Junction Proteins during Transforming Growth Factor β-Mediated Epithelial-to-Mesenchymal Transition. Adherens junctions and polarity markers play an important role in maintaining epithelial phenotype but get altered during the epithelial-mesenchymal transition (EMT). Alterations of these markers during EMT of lens epithelial cell (LEC) can lead to vision compromising conditions. The aim of this study was to examine if Trichostatin-A (TSA), a histone deacetylase inhibitor, can prevent EMT by restoring the adherens junction complex in LEC. Fetal human lens epithelial cell line (FHL124) was used. Cells were treated with 10 ng/ml TGF-β2 in the presence or absence of TSA. Real time-PCR and western blotting were carried out for HDAC1, HDAC2, CDH1 (E-cad), TJP1 (ZO-1) and CTNNB1 (β-cat). Level of histone acetylation was analyzed by western blotting. Chromatin Immunoprecipitation was carried out to study the level of acetylated histone H4 and HDAC2 at the promoter regions of CDH1, TJP1, and CTNNB1. E-cad, ZO-1, and β-cat were localized using immunofluorescence. Kruskal-Wallis test was used for statistical analysis. TSA down-regulated HDAC1 and HDAC2 and led to an increase in global acetylation. The mRNA and protein levels of E-cad, ZO-1, and β-cat decreased during EMT but were up-regulated by TSA treatment. TSA also helped in stabilizing these proteins at cell-cell junctions during EMT. TSA decreases association of HDAC2 at the promoter regions of adherens junction genes while increasing histone H4 acetylation status. TSA increases histone acetylation and restores the adherens junction complex in LECs. TSA helps in preventing EMT and thus shows potential against lens fibrosis and vision compromising conditions."	"Increased β2-adrenoceptor phosphorylation in airway smooth muscle in severe asthma: possible role of mast cell-derived growth factors. The purpose of this study was to investigate whether growth factors produced by activated human lung mast cells (HLMCs) impair β2 -adrenoceptor (β2 -AR) function in human airway smooth muscle (ASM) cells. Protein array analysis confirmed the presence of various growth factors, including transforming growth factor (TGF)-β1, in the supernatants of high-affinity IgE receptor (FcεRI)-activated HLMCs which, when applied to ASM cells, impaired albuterol-induced cyclic adenosine monophosphate (cAMP) production, an effect that was prevented following neutralization of TGF-β1. This blunted β2 -AR response was reproduced by treating ASM cells with TGF-β1 or fibroblast growth factor (FGF)-2, which induced β2 -AR phosphorylation at tyrosine residues Tyr<sup>141</sup> and Tyr<sup>350</sup> , and significantly reduced the maximal bronchorelaxant responses to isoproterenol in human precision cut lung slices (PCLS). Finally, ASM cells isolated from severe asthmatics displayed constitutive elevated β2 -AR phosphorylation at both Tyr<sup>141</sup> and Tyr<sup>350</sup> and a reduced relaxant response to albuterol. This study shows for the first time that abnormal β2 -AR phosphorylation/function in ASM cells that is induced rapidly by HLMC-derived growth factors, is present constitutively in cells from severe asthmatics."	"MicroRNA-218-5p Promotes Endovascular Trophoblast Differentiation and Spiral Artery Remodeling. Preeclampsia (PE) is the leading cause of maternal and neonatal morbidity and mortality. Defects in trophoblast invasion, differentiation of endovascular extravillous trophoblasts (enEVTs), and spiral artery remodeling are key factors in PE development. There are no markers clinically available to predict PE, leaving expedited delivery as the only effective therapy. Dysregulation of miRNA in clinical tissues and maternal circulation have opened a new avenue for biomarker discovery. In this study, we investigated the role of miR-218-5p in PE development. miR-218-5p was highly expressed in EVTs and significantly downregulated in PE placentas. Using first-trimester trophoblast cell lines and human placental explants, we found that miR-218-5p overexpression promoted, whereas anti-miR-218-5p suppressed, trophoblast invasion, EVT outgrowth, and enEVT differentiation. Furthermore, miR-218-5p accelerated spiral artery remodeling in a decidua-placenta co-culture. The effect of miR-218-5p was mediated by the suppression of transforming growth factor (TGF)-β2 signaling. Silencing of TGFB2 mimicked, whereas treatment with TGF-β2 partially reversed, the effects of miR-218-5p. Taken together, these findings demonstrate that miR-218-5p promotes trophoblast invasion and enEVT differentiation through a novel miR-218-5p-TGF-β2 pathway. This study elucidates the role of an miRNA in enEVT differentiation and spiral artery remodeling and suggests that downregulation of miR-218-5p contributes to PE development."	"Exploring miRNA-mRNA regulatory network in cardiac pathology in Na<sup>+</sup>/H<sup>+</sup> exchanger isoform 1 transgenic mice. Numerous studies have demonstrated that Na<sup>+</sup>/H<sup>+</sup> exchanger isoform 1 (NHE1) is elevated in myocardial diseases and its effect is detrimental. To better understand the involvement of NHE1, we have previously studied cardiac-specific NHE1 transgenic mice and shown that these mice develop cardiac hypertrophy, interstitial fibrosis, and cardiac dysfunction. The purpose of current study was to identify microRNAs and their mRNA targets involved in NHE1-mediated cardiac injury. An unbiased high-throughput sequencing study was performed on both microRNAs and mRNAs. RNA sequencing showed that differentially expressed genes were enriched in hypertrophic cardiomyopathy pathway by Kyoto Encyclopedia of Genes and Genomes annotation in NHE1 transgenic hearts. These genes were classified as contraction defects (e.g., Myl2, Myh6, Mybpc3, and Actb), impaired intracellular Ca<sup>2+</sup> homeostasis (e.g., SERCA2a, Ryr2, Rcan1, and CaMKII delta), and signaling molecules for hypertrophic cardiomyopathy (e.g., Itga/b, IGF-1, Tgfb2/3, and Prkaa1/2). microRNA sequencing revealed that 15 microRNAs were differentially expressed (2-fold, P &lt; 0.05). Six of them (miR-1, miR-208a-3p, miR-199a-5p, miR-21-5p, miR-146a-5p, and miR-30c-5p) were reported to be related to cardiac pathological functions. The integrative analysis of microRNA and RNA sequencing data identified several crucial microRNAs including miR-30c-5p, miR-199a-5p, miR-21-5p, and miR-34a-5p as well as 10 of their mRNA targets that may affect the heart via NFAT hypertrophy and cardiac hypertrophy signaling. Furthermore, important microRNAs and mRNA targets were validated by quantitative PCR. Our study comprehensively characterizes the expression patterns of microRNAs and mRNAs, establishes functional microRNA-mRNA pairs, elucidates the potential signaling pathways, and provides novel insights on the mechanisms underlying NHE1-medicated cardiac injury."	"YAP/TAZ Are Essential for TGF-β2-Mediated Conjunctival Fibrosis. To investigate the roles of Yes-associated protein (YAP)/transcriptional co-activator with PDZ-binding motif (TAZ), the major effector molecules of the Hippo pathway, in TGF-β2-mediated conjunctival fibrosis. Primary human conjunctival fibroblasts were treated with TGF-β2. The expression of YAP/TAZ was examined by Western blot analyses and immunocytochemistry. The expression of fibrotic proteins and genes were evaluated by Western blot analyses and quantitative real-time PCR, respectively. The effects of YAP/TAZ on fibrotic changes were examined by knockdown experiments and the YAP/TAZ inhibitor, verteporfin. TGF-β2 stabilized YAP/TAZ and subsequently activated Smad2/3, which led to the transcription of fibrotic genes in human primary conjunctival fibroblasts. These fibrotic genes were differently regulated by YAP/TAZ. Notably, α-smooth muscle actin, fibronectin, collagen I, and collagen IV were primarily regulated by YAP. In contrast, CCN family proteins (CTGF and CYR61) depended on both YAP and TAZ. Mechanistically, YAP/TAZ were located in close proximity to Smad2/3, and in particular, YAP was required for TGF-β2-mediated phosphorylation and the nuclear translocation of Smad2/3. Furthermore, a YAP/TAZ inhibitor markedly suppressed TGF-β2-mediated fibrotic changes in conjunctival fibroblasts. YAP/TAZ acted as a molecular hub of TGF-β2 signaling in a cellular model of conjunctival fibrosis. Moreover, verteporfin, a YAP/TAZ inhibitor exerted potent antifibrosis effects by suppressing TGF-β2-YAP/TAZ-Smad signaling. Our study highlights YAP/TAZ as essential regulators of conjunctival fibrosis and shows that inhibition of YAP/TAZ might potentially improve the outcomes of glaucoma filtration surgery."	"Optimal α-lipoic acid strengthen immunity of young grass carp (Ctenopharyngodon idella) by enhancing immune function of head kidney, spleen and skin. This study was for the first time to investigate the effects of α-lipoic acid (LA) on growth and immune function of head kidney, spleen and skin in young grass carp (Ctenopharyngodon idella). A total of 540 healthy grass carp (with initial body weight at 216.59 ± 0.33 g) were randomly divided into six groups and fed six separate diets with graded dietary levels of LA for 70 days. Un-supplemented group did not find LA and its concentrations in the other five diets were 203.25, 403.82, 591.42, 781.25 and 953.18 mg kg<sup>-1</sup>, respectively. After the growth trial, fish were challenged with A. hydrophila for 14 days. The results showed that, compared with the un-supplemented group, optimal LA improved lysozyme (LZ) and acid phosphatase (ACP) activities, enhanced complement 3 (C3), C4 and immunoglobulin (Ig) M contents and up-regulated hepcidin, liver expressed antimicrobial peptide (LEAP)-2A, LEAP-2B and β-defensin-1 mRNA levels in the head kidney, spleen and skin of young grass carp; meanwhile, optimal LA up-regulated anti-inflammatory cytokines transforming growth factor (TGF)-β1, TGF-β2, interleukin (IL)-4/13A (not IL-4/13B), IL-10 and IL-11 mRNA levels partly related to target of rapamycin (TOR) signaling and down-regulated pro-inflammatory cytokines tumor necrosis factor (TNF)-α, interferon (IFN)-γ2, IL-1β, IL-6, IL-8, IL-12p40 (not IL-12p35), IL-15 (not in the skin) and IL-17D mRNA levels partially associated with nuclear factor-kappa B (NF-κB) signaling in the head kidney, spleen and skin of young grass carp. Above results indicated that optimal LA enhanced the immune function of head kidney, spleen and skin in fish. Interestingly, excessive LA decreased the growth and impaired the immune function of head kidney, spleen and skin in fish. Finally, on the basis of the percent weight gain (PWG), the ability against skin hemorrhage and lesion, the IgM content in the head kidney and the LZ activity in the spleen, the optimal dietary LA levels were estimated to be 315.37, 382.33, 353.19 and 318.26 mg kg<sup>-1</sup> diet, respectively."	"Exchange protein activated by cyclic-adenosine monophosphate (Epac) regulates atrial fibroblast function and controls cardiac remodelling. Heart failure (HF) produces left atrial (LA)-selective fibrosis and promotes atrial fibrillation. HF also causes adrenergic activation, which contributes to remodelling via a variety of signalling molecules, including the exchange protein activated by cAMP (Epac). Here, we evaluate the effects of Epac1-signalling on LA fibroblast (FB) function and its potential role in HF-related atrial remodelling. HF was induced in adult male mongrel dogs by ventricular tachypacing (VTP). Epac1-expression decreased in LA-FBs within 12 h (-3.9-fold) of VTP onset. The selective Epac activator, 8-pCPT (50 µM) reduced, whereas the Epac blocker ESI-09 (1 µM) enhanced, collagen expression in LA-FBs. Norepinephrine (1 µM) decreased Epac1-expression, an effect blocked by prazosin, and increased FB collagen production. The β-adrenoceptor (AR) agonist isoproterenol increased Epac1 expression, an effect antagonized by ICI (β2-AR-blocker), but not by CGP (β1-AR-blocker). β-AR-activation with isoproterenol decreased collagen expression, an effect mimicked by the β2-AR-agonist salbutamol and blocked by the Epac1-antagonist ESI-09. Transforming growth factor-β1, known to be activated in HF, suppressed Epac1 expression, an effect blocked by the Smad3-inhibitor SIS3. To evaluate effects on atrial fibrosis in vivo, mice subjected to myocardial infarction (MI) received the Epac-activator Sp-8-pCPT or vehicle for 2 weeks post-MI; Sp-8-pCPT diminished LA fibrosis and attenuated cardiac dysfunction. HF reduces LA-FB Epac1 expression. Adrenergic activation has complex effects on FBs, with α-AR-activation suppressing Epac1-expression and increasing collagen expression, and β2-AR-activation having opposite effects. Epac1-activation reduces cardiac dysfunction and LA fibrosis post-MI. Thus, Epac1 signalling may be a novel target for the prevention of profibrillatory cardiac remodelling."	"Antiangiogenic cytokines as potential new therapeutic targets for resveratrol in diabetic retinopathy. Diabetes mellitus (DM) affects &gt;350 million people worldwide. With many complications that can reduce the patient's quality of life, vision loss is one of the most debilitating disorders it can cause. Active research in the field of diabetes includes microvascular complications in diabetic retinopathy (DR). Disturbances in the balance of pro-angiogenesis and anti-angiogenesis factors can lead to the progression of DR. The retinal pigment epithelium (RPE) is the outermost layer of the retina, and it is essential in maintaining the visual function. The RPE produces and secretes growth factors as well as protective agents which maintain structural integrity of the retina. Small natural molecules, such as resveratrol, may influence neurotrophic factors of the retina. The pigment epithelium-derived factor (PEDF) and thrombospondin-1 (TSP-1) are secreted by RPE cells. These two proteins inhibit angiogenesis and inflammation in RPE cells. An alteration of their production contributes to various eye diseases. There is a critical balance between two important factors secreted on opposite sides of the RPE: at the basal side, vascular endothelial growth factor (VEGF; acts on the choroidal endothelium) and, on the apical side, PEDF (acts on neurons and photoreceptors). Resveratrol inhibits VEGF expression in human adult RPE cells and limits the development of proliferative vitreoretinopathy, by attenuating transforming growth factor-β2-induced wound closure and cell migration. Possible new mechanisms could include PEDF and TSP-1 expression alterations under physiological and pathological conditions. Resveratrol is currently of interest due to its capacity to influence the cell's secretory activity. Some limitations arise from its low bioavailability. Several drug delivery systems are currently tested, promising to improve tissue concentrations. This article reviews biological pathways involved in the pathogenesis of DR that could be influenced by resveratrol. A study of these pathways could identify new potential targets for the reduction of diabetic complications."	"Transforming Growth Factor Beta (TFG-β) Concentration Isoforms are Diminished in Acute Coronary Syndrome. Acute coronary syndrome (ACS) is the leading cause of death in elderly patients worldwide. Due its participation in apoptosis, fibrosis, and angiogenesis, transforming growth factor-β (TGF-β) isoforms had been categorized as risk factors for cardiovascular diseases. However, due their contradictory activities, a cardioprotective role has been suggested. The aim was to measure the plasma levels of TGF-β1, 2, and 3 proteins in patients with ACS. This was a case-control study including 225 subjects. The three activated isoforms were measured in serum using the Bio-Plex Pro TGF-β assay by means of magnetic beads; the fluorescence intensity of reporter signal was read in a Bio-Plex Magpix instrument. We observed a significant reduction of the three activated isoforms of TGF-β in patients with ACS. The three TGF-β isoforms were positively correlated with each other in moderate-to-strong manner. TGFβ-2 was inversely correlated with glucose and low-density lipoprotein (LDL)-cholesterol, whereas TGF-β3 was inversely correlated with the serum cholesterol concentration. The production of TGF-β1, TGF-β2, and TGF-β3 are decreased in the serum of patients with ACS. Further follow-up controlled studies with a larger sample size are needed, in order to test whether TGF-β isoforms could be useful as biomarkers that complement the diagnosis of ACS."	"The TGFβ-signaling pathway and colorectal cancer: associations between dysregulated genes and miRNAs. The TGFβ-signaling pathway plays an important role in the pathogenesis of colorectal cancer (CRC). Loss of function of several genes within this pathway, such as bone morphogenetic proteins (BMPs) have been seen as key events in CRC progression. In this study we comprehensively evaluate differential gene expression (RNASeq) of 81 genes in the TGFβ-signaling pathway and evaluate how dysregulated genes are associated with miRNA expression (Agilent Human miRNA Microarray V19.0). We utilize paired carcinoma and normal tissue from 217 CRC cases. We evaluate the associations between differentially expressed genes and miRNAs and sex, age, disease stage, and survival months. Thirteen genes were significantly downregulated and 14 were significantly upregulated after considering fold change (FC) of &gt; 1.50 or &lt; 0.67 and multiple comparison adjustment. Bone morphogenetic protein genes BMP5, BMP6, and BMP2 and growth differentiation factor GDF7 were downregulated. BMP4, BMP7, INHBA (Inhibin beta A), TGFBR1, TGFB2, TGIF1, TGIF2, and TFDP1 were upregulated. In general, genes with the greatest dysregulation, such as BMP5 (FC 0.17, BMP6 (FC 0.25), BMP2 (FC 0.32), CDKN2B (FC 0.32), MYC (FC 3.70), BMP7 (FC 4.17), and INHBA (FC 9.34) showed dysregulation in the majority of the population (84.3, 77.4, 81.1, 80.2, 82.0, 51.2, and 75.1% respectively). Four genes, TGFBR2, ID4, ID1, and PITX2, were un-associated or slightly upregulated in microsatellite-stable (MSS) tumors while downregulated in microsatellite-unstable (MSI) tumors. Eight dysregulated genes were associated with miRNA differential expression. E2F5 and THBS1 were associated with one or two miRNAs; RBL1, TGFBR1, TGIF2, and INHBA were associated with seven or more miRNAs with multiple seed-region matches. Evaluation of the joint effects of mRNA:miRNA identified interactions that were stronger in more advanced disease stages and varied by survival months. These data support an interaction between miRNAs and genes in the TGFβ-signaling pathway in association with CRC risk. These interactions are associated with unique clinical characteristics that may provide targets for further investigations."	"Global gene expression analysis identifies Mef2c as a potential player in Wnt16-mediated transcriptional regulation. Wnt16 is a major Wnt ligand involved in the regulation of postnatal bone homeostasis. Previous studies have shown that Wnt16 promotes bone formation and inhibits bone resorption, suggesting that this molecule could be targeted for therapeutic interventions to treat bone thinning disorders such as osteoporosis. However, the molecular mechanisms by which Wnt16 regulates bone metabolism is not yet fully understood. To better understand the molecular mechanisms by which Wnt16 promotes bone formation and to identify the target genes regulated by Wnt16 in osteoblasts, we treated calvarial osteoblasts purified from C57Bl/6 mice with recombinant Wnt16 and profiled the gene expression changes by RNA-seq at 24 h post-treatment. We also compared gene expression profiles of Wnt16-treated osteoblasts to canonical Wnt3a- and non-canonical Wnt5a-treated osteoblasts. This study identified 576 genes differentially expressed in Wnt16-treated osteoblasts compared to sham-treated controls; these included several members of Wnt pathway (Wnt2b, Wnt7b, Wnt11, Axin2, Sfrp2, Sfrp4, Fzd5 etc.) and TGF-β/BMP signaling pathway (Bmp7, Inhba, Inhbb, Tgfb2 etc.). Wnt16 also regulated a large number of genes with known bone phenotypes. We also found that about 37% (215/576) of the Wnt16 targets overlapped with Wnt3a targets and ~15% (86/576) overlapped with Wnt5a targets, suggesting that Wnt16 activates both canonical and non-canonical Wnt signaling targets in osteoblasts. Transcription factor binding motif enrichment analysis in the promoter regions of Wnt16 targets identified noncanonical Wnt/JNK pathway activated transcription factors Fosl2 and Fosl1 as two of the most significantly enriched transcription factors associated with genes activated by Wnt16 while Mef2c was the most significantly enriched transcription factor associated with genes repressed by Wnt16. We also found that a large number of Mef2c targets overlapped with genes down-regulated by Wnt16 and Mef2c itself was transcriptionally repressed by Wnt16 suggesting that Mef2c plays a role in Wnt16-mediated transcriptional regulation."	"Transforming Growth Factor-β Protects against Inflammation-Related Atherosclerosis in South African CKD Patients. Transforming growth factor-β (TGF-β) may inhibit the development of atherosclerosis. We evaluated serum levels of TGF-β isoforms concurrently with serum levels of endotoxin and various inflammatory markers. In addition, we determined if any association exists between polymorphisms in the TGF-β1 gene and atherosclerosis in South African CKD patients. We studied 120 CKD patients and 40 healthy controls. Serum TGF-β1, TGF-β2, TGF-β3, endotoxin, and inflammatory markers were measured. Functional polymorphisms in the TGF-β1 genes were genotyped using a polymerase chain reaction-sequence specific primer method and carotid intima media thickness (CIMT) was assessed by B-mode ultrasonography. TGF-β isoforms levels were significantly lower in the patients with atherosclerosis compared to patients without atherosclerosis (p&lt;0.001). Overall, TGF-β isoforms had inverse relationships with CIMT. TGF-β1 and TGF-β2 levels were significantly lower in patients with carotid plaque compared to those without carotid plaque [TGF-β1: 31.9 (17.2 - 42.2) versus 45.9 (35.4 - 58.1) ng/ml, p=0.016; and TGF-β2: 1.46 (1.30 - 1.57) versus 1.70 (1.50 - 1.87) ng/ml, p=0.013]. In multiple logistic regression, age, TGF-β2, and TGF-β3 were the only independent predictors of subclinical atherosclerosis in CKD patients [age: odds ratio (OR), 1.054; 95% confidence interval (CI): 1.003 - 1.109, p=0.039; TGF-β2: OR, 0.996; 95% CI: 0.994-0.999, p=0.018; TGF-β3: OR, 0.992; 95% CI: 0.985-0.999, p=0.029). TGF-β1 genotypes did not influence serum levels of TGF-β1 and no association was found between the TGF-β1 gene polymorphisms and atherosclerosis risk. TGF-β isoforms seem to offer protection against the development of atherosclerosis among South African CKD patients."	"Urothelial bladder cancer may suppress perforin expression in CD8+ T cells by an ICAM-1/TGFβ2 mediated pathway. The immune system plays a significant role in urothelial bladder cancer (UBC) progression, with CD8+ T cells being capable to directly kill tumor cells using perforin and granzymes. However, tumors avoid immune recognition by escape mechanisms. In this study, we aim to demonstrate tumor immune escape mechanisms that suppress CD8+ T cells cytotoxicity. 42 patients diagnosed with UBC were recruited. CD8+ T cells from peripheral blood (PB), sentinel nodes (SN), and tumor were analyzed in steady state and in vitro-stimulated conditions by flow cytometry, RT-qPCR, and ELISA. Mass spectrometry (MS) was used for identification of proteins from UBC cell line culture supernatants. Perforin was surprisingly found to be low in CD8+ T cells from SN, marked by 1.8-fold decrease of PRF1 expression, with maintained expression of granzyme B. The majority of perforin-deficient CD8+ T cells are effector memory T (TEM) cells with exhausted Tc2 cell phenotype, judged by the presence of PD-1 and GATA-3. Consequently, perforin-deficient CD8+ T cells from SN are low in T-bet expression. Supernatant from muscle invasive UBC induces perforin deficiency, a mechanism identified by MS where ICAM-1 and TGFβ2 signaling were causatively validated to decrease perforin expression in vitro. Thus, we demonstrate a novel tumor escape suppressing perforin expression in CD8+ T cells mediated by ICAM-1 and TGFβ2, which can be targeted in combination for cancer immunotherapy."	"Serenoa repens extracts promote hair regeneration and repair of hair loss mouse models by activating TGF-β and mitochondrial signaling pathway. Plenty of plant extracts have been used for treating hair loss. This study aims to investigate the effects of liposterolic extracts of Serenoa repens (LSESr) on hair cell growth and regeneration of hair, and clarify the associated mechanisms. Human keratinocyte cells (HACAT) were cultured, incubated with dihydrotestosterone (DHT) and treated with LSESr. Cell viability was examined by using 3-(4,5-dimethyl-2-thiazolyl)-2,5-diphenyl-2-H- tetrazolium bromide (MTT) assay. Hair loss C57BL/6 mouse model was established by inducing with DHT. Hair growth, density, and thickness were evaluated. Back skin samples were collected and stained with hematoxylin and eosin (HE) assay. B-cell lymphoma-2 (Bcl-2), Bcl-2 associated protein X (Bax), cleaved caspase 3 and transforming growth factor β2 (TGF-β2) were examined using Western blot assay. LSESr treatment significantly increased HACAT cell viabilities compared to DHT-only treated cells (p&lt;0.05). LSESr treatment post injection of DHT significantly converted skin color from pink to gray and increased hair density, weight and thickness compared to DHT-only treated mice (p&lt;0.05). LSESr treatment significantly triggered follicle growth and decreased inflammatory response. LSESr treatment significantly decreased TGF-β2 and cleaved caspase 3 expression of hair loss mouse models compared to that of DHT treated mice (p&lt;0.05). LSESr treatment significantly enhanced Bcl-2 expression and reduced Bax expression compared to that of DHT treated mice (p&lt;0.05). Meanwhile, effects of LSESr were substantial even achieving to the potential of finasteride. LSESr promoted the hair regeneration and repair of hair loss mouse models by activating TGF-β signaling and mitochondrial signaling pathway."	"Transforming Growth Factor Beta 2 Inhibits Growth and Proliferation Potential of Smad4 and p53 Mutated Human Colon Adenocarcinoma Cells. NA"	"Hedgehog-GLI signaling in Foxd1-positive stromal cells promotes murine nephrogenesis via TGFβ signaling. Normal kidney function depends on the proper development of the nephron: the functional unit of the kidney. Reciprocal signaling interactions between the stroma and nephron progenitor compartment have been proposed to control nephron development. Here, we show that removal of hedgehog intracellular effector smoothened (Smo-deficient mutants) in the cortical stroma results in an abnormal renal capsule, and an expanded nephron progenitor domain with an accompanying decrease in nephron number via a block in epithelialization. We show that stromal-hedgehog-Smo signaling acts through a GLI3 repressor. Whole-kidney RNA sequencing and analysis of FACS-isolated stromal cells identified impaired TGFβ2 signaling in Smo-deficient mutants. We show that neutralization and knockdown of TGFβ2 in explants inhibited nephrogenesis. In addition, we demonstrate that concurrent deletion of Tgfbr2 in stromal and nephrogenic cells in vivo results in decreased nephron formation and an expanded nephrogenic precursor domain similar to that observed in Smo-deficient mutant mice. Together, our data suggest a mechanism whereby a stromal hedgehog-TGFβ2 signaling axis acts to control nephrogenesis."	"MicroRNA 200b is upregulated in the lungs of fetal rabbits with surgically induced diaphragmatic hernia. Profiling of miR-200b expression and its targets (transforming growth factor [TGF]-β2 and ZEB2) in the surgical rabbit congenital diaphragmatic hernia (DH) model before and after tracheal occlusion (TO). Thirty-eight timed-pregnant rabbits had left DH creation on gestational day (GD) 23. On GD28, 17 randomly selected fetuses had TO. We harvested fetuses at GD23, GD28, or GD30. We calculated lung-to-body weight ratios, processed lungs for miR-200b in situ hybridization and real-time quantitative polymerase chain reaction, and evaluated effects on downstream targets TGF-β2 or ZEB2. We obtained 16 DH fetuses (n = 7 GD28 and n = 9 GD30), 13 TO fetuses (GD30), and 38 control fetuses (n = 15 GD23, n = 11 GD28, and n = 12 GD30). Diaphragmatic hernia lungs were hypoplastic, and TO resulted in control lung-to-body weight ratio levels. Term miR-200b-3p levels were significantly upregulated in the hypoplastic compared with control ipsilateral lung (1.906 ± 0.90 vs 0.7429 ± 0.44) (P &lt; .01). Fetal TO ipsilateral lungs displayed a variable miR-200b response on in situ hybridization and polymerase chain reaction, with levels similar to control and congenital DH lungs. The TGF-β2 was unchanged in hypoplastic and TO lungs, and ZEB2 tended to be reduced in TO compared with DH lungs (1.79 [0.4-2.9] vs 0.73 [0.5-1.4]). Hypoplastic fetal rabbit lungs display upregulation of miR-200b expression although downstream targets are not different from controls. Following TO, fetal rabbit lungs display a variable miR-200b response."	"Comparison of growth factor and interleukin content of adult peripheral blood and cord blood serum eye drops for cornea and ocular surface diseases. Various blood-derived products have been proposed for the topical treatment of ocular surface diseases. The aim of the study was to compare the different content of Growth Factors (GFs) and Interleukins (ILs) in peripheral blood (PB-S) and Cord Blood (CB-S) sera. Sera were obtained from 105 healthy adult donors (PB-S) and 107 umbilical/placental veins at the time of delivery (CB-S). The levels of epithelial-GF (EGF), fibroblast-GF (FGF), platelet-derived-GF (PDGF), insulin-GF (IGF), transforming-GF alpha (TGF-α,) and beta 1-2-3 (TGF-β1-β2-β3), vascular endothelial-GF (VEGF), nerve-GF (NGF), Interleukin (IL)-1β,IL-4,IL-6,IL-10, and IL-13 were assessed by Bio-Plex Protein Array System (Bio-Rad Laboratories, CA, USA). The Mann-Whitney test for unpaired data was applied to compare GFs and ILs levels in the two sources. The associations among each GF/IL level and the obstetric data for CB-S and hematological characteristics for PB-S were also investigated. The levels of EGF, TGF-α, TGF-β2, FGF, PDGF, VEGF, NGF, IL-1B, IL-4, IL-6, IL-10, and IL-13 were significantly higher in CB-S compared to PB-S. Conversely, the levels of IGF-1, IGF-2, and TGF-β1 were significantly higher in PB-S. The female sex and the weight of the child showed a significant association in predicting EGF and PDGF levels. A significantly different content in those GFs and ILs was demonstrated in the two blood sources. Since each GF/IL selectively regulates different cellular processes involved in corneal healing, the use of PB-S or CB-S should be chosen on the basis of the cellular mechanism to be promoted in each clinical case."	"TGF-β Concentration in Breast Milk is Associated With the Development of Eczema in Infants. Background: Transforming growth factor (TGF)-β in breast milk is crucial for mucosal immune system in the neonatal period. We hypothesized that the level of exposure to TGF-β from breast milk in the first month of life is related to the development of eczema later in life. Thus, the present study investigated whether changes in TGF-β levels between colostrum and mature milk are associated with such occurrence in a birth cohort study. Methods: Colostrum and 1-month breast milk samples were collected from mothers who participated in our birth cohort study. TGF-β1 and TGF-β2 levels in breast milk were measured using a commercial ELISA kit. The development of eczema in the first 6 months after birth was assessed based on parent's response to a questionnaire. Levels of TGF-β1 and TGF-β2 were compared in breast milk from mothers of infants with and without eczema. Results: In children with eczema, TGF-β1 levels were higher in colostrum, but lower in 1-month milk. A lower TGF-β1 ratio (1-month milk/colostrum) was related to the development of eczema during the first 6 months of life. There was no difference in TGF-β2 ratio (1-month milk/colostrum) between eczema group and control group. Conclusions: Concentration of TGF-β1 but not TGF-β2 in breast milk during the first month after birth may be associated with eczema later in life. Factors that increase TGF-β1 levels in breast milk may play a role in preventing allergic disease."	"Results of next-generation sequencing gene panel diagnostics including copy-number variation analysis in 810 patients suspected of heritable thoracic aortic disorders. Simultaneous analysis of multiple genes using next-generation sequencing (NGS) technology has become widely available. Copy-number variations (CNVs) in disease-associated genes have emerged as a cause for several hereditary disorders. CNVs are, however, not routinely detected using NGS analysis. The aim of this study was to assess the diagnostic yield and the prevalence of CNVs using our panel of Hereditary Thoracic Aortic Disease (H-TAD)-associated genes. Eight hundred ten patients suspected of H-TAD were analyzed by targeted NGS analysis of 21 H-TAD associated genes. In addition, the eXome hidden Markov model (XHMM; an algorithm to identify CNVs in targeted NGS data) was used to detect CNVs in these genes. A pathogenic or likely pathogenic variant was found in 66 of 810 patients (8.1%). Of these 66 pathogenic or likely pathogenic variants, six (9.1%) were CNVs not detectable by routine NGS analysis. These CNVs were four intragenic (multi-)exon deletions in MYLK, TGFB2, SMAD3, and PRKG1, respectively. In addition, a large duplication including NOTCH1 and a large deletion encompassing SCARF2 were detected. As confirmed by additional analyses, both CNVs indicated larger chromosomal abnormalities, which could explain the phenotype in both patients. Given the clinical relevance of the identification of a genetic cause, CNV analysis using a method such as XHMM should be incorporated into the clinical diagnostic care for H-TAD patients."	"Comparison of efficacy, complications and TGF-β2 expression between DHS and PFNA in elderly patients with osteoporotic femoral intertrochanteric fracture. The aim of the present study was to compare the efficacy and complications of two fixation techniques, namely dynamic hip screw (DHS) and proximal femoral nail antirotation (PFNA), in the treatment of osteoporotic femoral intertrochanteric fracture in elderly patients, and to detect changes in transforming growth factor β2 (TGF-β2) expression in the two groups. A total of 100 elderly patients with femoral intertrochanteric fracture were randomly divided into two groups that were treated with either DHS or PFNA. Peri-operative complications were observed in the patients and ELISA was used to detect TGF-β2 expression levels at 1, 7, 15 and 30 days after surgical treatment. The clinical efficacy and the incidence rate of complications at 3 months after the operation were compared. In comparison with the DHS group, the PFNA group had a shorter operation time, a lower bleeding volume and a shorter post-operative weight-bearing time. The contents of TGF-β2 in the two groups at 7 days after the operation were higher than those at 1 day, reached a peak at 15 days and had gradually decreased again at 30 days after the operation. The contents of TGF-β2 at 1, 7 and 15 days in the PFNA group were higher than those at the identical time-points in the DHS group (P&lt;0.01). Regarding the clinical efficacy in the two groups at 3 months of post-surgery, the rate of excellent/good efficacy in the PFNA fixation group (90.0%) was higher than that in the DHS fixation group (74.0%). Of note, PFNA fixation had a higher clinical efficacy, a shorter operation time, less intra-operative trauma, a relatively faster fracture healing process and fewer complications in comparison with DHS fixation, and is therefore more suitable for treating osteoporotic femoral intertrochanteric fracture in the elderly. PFNA fixation is superior to DHS fixation, which may be associated with the higher level of TGF-β2 expression in comparison with that in the DHS group."	"Hypoxic tumor microenvironment activates GLI2 via HIF-1α and TGF-β2 to promote chemoresistance in colorectal cancer. Colorectal cancer patients often relapse after chemotherapy, owing to the survival of stem or progenitor cells referred to as cancer stem cells (CSCs). Although tumor stromal factors are known to contribute to chemoresistance, it remains not fully understood how CSCs in the hypoxic tumor microenvironment escape the chemotherapy. Here, we report that hypoxia-inducible factor (HIF-1α) and cancer-associated fibroblasts (CAFs)-secreted TGF-β2 converge to activate the expression of hedgehog transcription factor GLI2 in CSCs, resulting in increased stemness/dedifferentiation and intrinsic resistance to chemotherapy. Genetic or small-molecule inhibitor-based ablation of HIF-1α/TGF-β2-mediated GLI2 signaling effectively reversed the chemoresistance caused by the tumor microenvironment. Importantly, high expression levels of HIF-1α/TGF-β2/GLI2 correlated robustly with the patient relapse following chemotherapy, highlighting a potential biomarker and therapeutic target for chemoresistance in colorectal cancer. Our study thus uncovers a molecular mechanism by which hypoxic colorectal tumor microenvironment promotes cancer cell stemness and resistance to chemotherapy and suggests a potentially targeted treatment approach to mitigating chemoresistance."	"Synergistic effects of TGFβ2, WNT9a, and FGFR4 signals attenuate satellite cell differentiation during skeletal muscle development. Satellite cells play a key role in the aging, generation, and damage repair of skeletal muscle. The molecular mechanism of satellite cells in these processes remains largely unknown. This study systematically investigated for the first time the characteristics of mouse satellite cells at ten different ages. Results indicated that the number and differentiation capacity of satellite cells decreased with age during skeletal muscle development. Transcriptome analysis revealed that 2,907 genes were differentially expressed at six time points at postnatal stage. WGCNA and GO analysis indicated that 1,739 of the 2,907 DEGs were mainly involved in skeletal muscle development processes. Moreover, the results of WGCNA and protein interaction analysis demonstrated that Tgfβ2, Wnt9a, and Fgfr4 were the key genes responsible for the differentiation of satellite cells. Functional analysis showed that TGFβ2 and WNT9a inhibited, whereas FGFR4 promoted the differentiation of satellite cells. Furthermore, each two of them had a regulatory relationship at the protein level. In vivo study also confirmed that TGFβ2 could regulate the regeneration of skeletal muscle, as well as the expression of WNT9a and FGFR4. Therefore, we concluded that the synergistic effects of TGFβ2, WNT9a, and FGFR4 were responsible for attenuating of the differentiation of aging satellite cells during skeletal muscle development. This study provided new insights into the molecular mechanism of satellite cell development. The target genes and signaling pathways investigated in this study would be useful for improving the muscle growth of livestock or treating muscle diseases in clinical settings."	"Activation of the Regulatory T-Cell/Indoleamine 2,3-Dioxygenase Axis Reduces Vascular Inflammation and Atherosclerosis in Hyperlipidemic Mice. T-cell activation is characteristic during the development of atherosclerosis. While overall T-cell responses have been implicated in disease acceleration, regulatory T cells (Tregs) exhibit atheroprotective effects. The expression of the enzyme indoleamine 2,3-dioxygenase-1 (IDO1), which catalyzes the degradation of tryptophan (Trp) along the kynurenine pathway, has been implicated in the induction and expansion of Treg populations. Hence, Tregs can reciprocally promote IDO1 expression in dendritic cells (DCs) via reverse signaling mechanisms during antigen presentation. In this study, we hypothesize that triggering the &quot;Treg/IDO axis&quot; in the artery wall is atheroprotective. We show that apolipoprotein B100-pulsed tumor growth factor beta 2-treated tolerogenic DCs promote de novo FoxP3<sup>+</sup> Treg expansion in vivo. This local increase in Treg numbers is associated with increased vascular IDO1 expression and a robust reduction in the atherosclerotic burden. Using human primary cell cultures, we show for the first time that IDO1 expression and activity can be regulated by cytotoxic T-lymphocyte associated protein-4, which is a constitutive molecule expressed and secreted by Tregs, in smooth muscle cells, endothelial cells, and macrophages. Altogether, our data suggest that Tregs and IDO1-mediated Trp metabolism can mutually regulate one another in the vessel wall to promote vascular tolerance mechanisms that limit inflammation and atherosclerosis."	"Comparison of SNP Genotypes Related to Proliferative Vitreoretinopathy (PVR) across Slovenian and European Subpopulations. The present study investigated the distribution of genotypes within single nucleotide polymorphisms (SNPs) in genes, related to PVR pathogenesis across European subpopulations. Genotype distributions of 42 SNPs among 96 Slovenian healthy controls were investigated and compared to genotype frequencies in 503 European individuals (Ensembl database) and their subpopulations. Furthermore, a case-control status was simulated to evaluate effects of allele frequency changes on statistically significant results in gene-association studies investigating functional polymorphisms. In addition, 96 healthy controls were investigated within 4 SNPs: rs17561 (IL1A), rs2069763 (IL2), rs2229094 (LTA), and rs1800629 (TNF) in comparison to PVR patients. Significant differences (P &lt; 0.05) in distribution of genotypes among 96 Slovenian participants and a European population were found in 10 SNPs: rs3024498 (IL10), rs315952 (IL1RN), rs2256965 (LST1), rs2256974 (LST1), rs909253 (LTA), rs2857602 (LTA), rs3138045 (NFKB1A), rs3138056 (NFKB1A), rs7656613 (PDGFRA), and rs1891467 (TGFB2), which additionally showed significant differences in genotype distribution among European subpopulations. This analysis also showed statistically significant differences in genotype distributions between healthy controls and PVR patients in rs17561 of the IL1A gene (OR, 3.00; 95% CI, 0.77-11.75; P = 0.036) and in rs1800629 of the TNF gene (OR, 0.48; 95% CI, 0.27-0.87; P = 0.014). Furthermore, we have shown that a small change (0.02) in minor allele frequency (MAF) significantly affects the statistical p value in case-control studies. In conclusion, the study showed differences in genotype distributions in healthy populations across different European countries. Differences in distribution of genotypes may have had influenced failed replication results in previous PVR-related SNP-association studies."	"Isoform-specific effects of transforming growth factor β on endothelial-to-mesenchymal transition. Endothelial-to-mesenchymal transition (EndMT) was first reported in the embryogenesis. Recent studies show that EndMT also occurs in the disease progression of atherosclerosis, cardiac and pulmonary fibrosis, pulmonary hypertension, diabetic nephropathy, and cancer. Although transforming growth factor β (TGFβ) is crucial for EndMT, it is not clear which isoform elicits a predominant effect. The current study aims to directly compare the dose-dependent effects of TGFβ1, TGFβ2, and TGFβ3 on EndMT and characterize the underlying mechanisms. In our results, all three TGFβ isoforms induced EndMT in human microvascular endothelial cells after 72 hr, as evidenced by the increased expression of mesenchymal markers N-cadherin and α-smooth muscle actin as well as the decreased expression of endothelial nitric oxide synthase. Interestingly, the effect of TGFβ2 was the most pronounced. At 1 ng/ml, only TGFβ2 treatment resulted in significantly increased phosphorylation (activation) of Smad2/3 and p38-MAPK and increased expression of mesenchymal transcription factors Snail and FoxC2. Intriguingly, we observed that treatment with 1 ng/ml TGFβ1 and TGFβ3, but not TGFβ2, resulted in an increased expression of TGFβ2, thus indicating that EndMT with TGFβ1 and TGFβ3 treatments was due to the secondary effects through TGFβ2 secretion. Furthermore, silencing TGFβ2 using small interfering RNA blunted the expression of EndMT markers in TGFβ1- and TGFβ3-treated cells. Together, our results indicate that TGFβ2 is the most potent inducer of EndMT and that TGFβ1- and TGFβ3-induced EndMT necessitates a paracrine loop involving TGFβ2."	"Immunological monitoring for prediction of clinical response to antitumor vaccine therapy. Immunotherapy has shown promising results in a variety of cancers, including melanoma. However, the responses to therapy are usually heterogeneous, and understanding the factors affecting clinical outcome is still not achieved. Here, we show that immunological monitoring of the vaccine therapy for melanoma patients may help to predict the clinical course of the disease. We studied cytokine profile of cellular Th1 (IL-2, IL-12, IFN-γ) and humoral Th2 (IL-4, IL-10) immune response, vascular endothelial growth factor (VEGFA), transforming growth factor-β 2 (TGF-β 2), S100 protein (S100A1B and S100BB), adhesion molecule CD44 and serum cytokines β2-microglobulin to analyze different peripheral blood mononuclear cell subpopuations of patients treated with dendritic vaccines and/or cyclophosphamide in melanoma patients in the course of adjuvant treatment. The obtained data indicate predominance of cellular immunity in the first adjuvant group of patients with durable time to progression and shift to humoral with low cellular immunity in patients with short-term period to progression (increased levels of IL-4 and IL- 10). Beta-2 microglobulin was differentially expressed in adjuvant subgroups: its higher levels correlated with shorter progression-free survival and the total follow-up time. Immunoregulatory index was overall higher in patients with disease progression compared to the group of patients with no signs of disease progression."	"Mast Cells Exert Anti-Inflammatory Effects in an IL10<sup>-/-</sup> Model of Spontaneous Colitis. Mast cells are well established as divergent modulators of inflammation and immunosuppression, but their role in inflammatory bowel disease (IBD) remains to be fully defined. While previous studies have demonstrated a proinflammatory role for mast cells in acute models of chemical colitis, more recent investigations have shown that mast cell deficiency can exacerbate inflammation in spontaneous colitis models, thus suggesting a potential anti-inflammatory role of mast cells in IBD. Here, we tested the hypothesis that in chronic, spontaneous colitis, mast cells are protective. We compared colitis and intestinal barrier function in IL10<sup>-/-</sup> mice to mast cell deficient/IL10<sup>-/-</sup> (double knockout (DKO): Kit<sup>Wsh/Wsh</sup> × IL10<sup>-/-</sup>) mice. Compared with IL10<sup>-/-</sup> mice, DKO mice exhibited more severe colitis as assessed by increased colitis scores, mucosal hypertrophy, intestinal permeability, and colonic cytokine production. PCR array analyses demonstrated enhanced expression of numerous cytokine and chemokine genes and downregulation of anti-inflammatory genes (e.g., Tgfb2, Bmp2, Bmp4, Bmp6, and Bmp7) in the colonic mucosa of DKO mice. Systemic reconstitution of DKO mice with bone marrow-derived mast cells resulted in significant amelioration of IL10<sup>-/-</sup>-mediated colitis and intestinal barrier injury. Together, the results presented here demonstrate that mast cells exert anti-inflammatory properties in an established model of chronic, spontaneous IBD. Given the previously established proinflammatory role of mast cells in acute chemical colitis models, the present findings provide new insight into the divergent roles of mast cells in modulating inflammation during different stages of colitis. Further investigation of the mechanism of the anti-inflammatory role of the mast cells may elucidate novel therapies."	"IDH mutation status is associated with distinct vascular gene expression signatures in lower-grade gliomas. Vascular gene expression patterns in lower-grade gliomas (LGGs; diffuse World Health Organization [WHO] grades II-III gliomas) have not been thoroughly investigated. The aim of this study was to molecularly characterize LGG vessels and determine if tumor isocitrate dehydrogenase (IDH) mutation status affects vascular phenotype. Gene expression was analyzed using an in-house dataset derived from microdissected vessels and total tumor samples from human glioma in combination with expression data from 289 LGG samples available in the database of The Cancer Genome Atlas. Vascular protein expression was examined by immunohistochemistry in human brain tumor tissue microarrays (TMAs) representing WHO grades II-IV gliomas and nonmalignant brain samples. Regulation of gene expression was examined in primary endothelial cells in vitro. Gene expression analysis of WHO grade II glioma indicated an intermediate stage of vascular abnormality, less severe than that of glioblastoma vessels but distinct from normal vessels. Enhanced expression of laminin subunit alpha 4 (LAMA4) and angiopoietin 2 (ANGPT2) in WHO grade II glioma was confirmed by staining of human TMAs. IDH wild-type LGGs displayed a specific angiogenic gene expression signature, including upregulation of ANGPT2 and serpin family H (SERPINH1), connected to enhanced endothelial cell migration and matrix remodeling. Transcription factor analysis indicated increased transforming growth factor beta (TGFβ) and hypoxia signaling in IDH wild-type LGGs. A subset of genes specifically induced in IDH wild-type LGG vessels was upregulated by stimulation of endothelial cells with TGFβ2, vascular endothelial growth factor, or cobalt chloride in vitro. IDH wild-type LGG vessels are molecularly distinct from the vasculature of IDH-mutated LGGs. TGFβ and hypoxia-related signaling pathways may be potential targets for anti-angiogenic therapy of IDH wild-type LGG."	"MicroRNA-148b Targets the TGF-β Pathway to Regulate Angiogenesis and Endothelial-to-Mesenchymal Transition during Skin Wound Healing. Transforming growth factor beta (TGF-β) is crucial for regulation of the endothelial cell (EC) homeostasis. Perturbation of TGF-β signaling leads to pathological conditions in the vasculature, causing cardiovascular disease and fibrotic disorders. The TGF-β pathway is critical in endothelial-to-mesenchymal transition (EndMT), but a gap remains in our understanding of the regulation of TGF-β and related signaling in the endothelium. This study applied a gain- and loss-of function approach and an in vivo model of skin wound healing to demonstrate that miR-148b regulates TGF-β signaling and has a key role in EndMT, targeting TGFB2 and SMAD2. Overexpression of miR-148b increased EC migration, proliferation, and angiogenesis, whereas its inhibition promoted EndMT. Cytokine challenge decreased miR-148b levels in ECs while promoting EndMT through the regulation of SMAD2. Finally, in a mouse model of skin wound healing, delivery of miR-148b mimics promoted wound vascularization and accelerated closure. In contrast, inhibition of miR-148b enhanced EndMT in wounds, resulting in impaired wound closure that was reversed by SMAD2 silencing. Together, these results demonstrate for the first time that miR-148b is a key factor controlling EndMT and vascularization. This opens new avenues for therapeutic application of miR-148b in vascular and tissue repair."	"BMP and Activin Membrane Bound Inhibitor Regulates the Extracellular Matrix in the Trabecular Meshwork. The trabecular meshwork (TM) has an important role in the regulation of aqueous humor outflow and IOP. Regulation of the extracellular matrix (ECM) by TGFβ2 has been studied extensively. Bone morphogenetic protein (BMP) and activin membrane-bound inhibitor (BAMBI) has been shown to inhibit or modulate TGFβ2 signaling. We investigate the role of TGFβ2 and BAMBI in the regulation of TM ECM and ocular hypertension. Mouse TM (MTM) cells were isolated from B6;129S1-Bambitm1Jian/J flox mice, characterized for TGFβ2 and dexamethasone (DEX)-induced expression of fibronectin, collagen-1, collagen-4, laminin, α-smooth muscle actin, cross-linked actin networks (CLANs) formation, and DEX-induced myocilin (MYOC) expression. MTM cells were transduced with Ad5.GFP to identify transduction efficiency. MTM cells and mouse eyes were transduced with Ad5.Null, Ad5.Cre, Ad5.TGFβ2, or Ad5.TGFβ2 + Ad5.Cre to evaluate the effect on ECM production, IOP, and outflow facility. MTM cells express TM markers and respond to DEX and TGFβ2. Ad5.GFP at 100 MOI had the highest transduction efficiency. Bambi knockdown by Ad5.Cre and Ad5.TGFβ2 increased fibronectin, collagen-1, and collagen-4 in TM cells in culture and tissue. Ad5.Cre, Ad5.TGFβ2, and Ad5.TGFβ2 + Ad5.Cre each significantly induced ocular hypertension and lowered aqueous humor outflow facility in transduced eyes. We show for the first time to our knowledge that knockdown of Bambi alters ECM expression in cultured cells and mouse TM, reduces outflow facility, and causes ocular hypertension. These data provide a novel insight into the development of glaucomatous TM damage and identify BAMBI as an important regulator of TM ECM and ocular hypertension."	"TGF-β2 induces proliferation and inhibits apoptosis of human Tenon capsule fibroblast by miR-26 and its targeting of CTGF. The aim of this study was to research the effect of TGF-β2 on human enon capsule fibroblasts proliferation and apoptosis and its potential mechanism. Human eyeball fascia tissues (n = 45) were derived from ocular fascia tissues of patients who were underwent glaucoma filtration surgery, and Tenon capsule fibroblasts were obtained from these tissues. Liposome-mediated transfection, CCK8 assay, Hoechst33258 staining, qRT-PCR detection, western blot, and luciferase reporter assay were performed. TGF-β2 promoted proliferation and inhibited apoptosis of human Tenon capsule fibroblasts in a dose-dependent manner. TGF-β2 induced down-regulation of miR-26 and up-regulation of CTGF in a dose-dependent manner. CTGF was the target gene of miR-26 and miR-26 had a negative regulatory effect on CTGF expression. miR-26 up-regulation could significantly decrease proliferation and increase apoptosis of human Tenon capsule fibroblasts after induced by TGF-β2 (P &lt; 0.05). Down-regulation of CTGF could markly decrease proliferation and increase apoptosis of human Tenon capsule fibroblasts after induced by TGF-β2 (P &lt; 0.05). miR-26 could inhibit proliferation and promote apoptosis of human Tenon capsule fibroblasts after they were induced by TGF-β2 through suppressing CTGF expression."	"TGF-β concentrations and activity are down-regulated in the aqueous humor of patients with neovascular age-related macular degeneration. Controversy still exists regarding the role of the TGF-β in neovascular age-related macular degeneration (nAMD), a major cause of severe visual loss in the elderly in developed countries. Here, we measured the concentrations of active TGF-β1, TGF-β2, and TGF-β3 by ELISA in the aqueous humor of 20 patients affected by nAMD, who received 3 consecutive monthly intravitreal injections of anti-VEGF-A antibody. Samples were collected at baseline (before the first injection), month 1 (before the second injection), and month 2 (before the third injection). The same samples were used in a luciferase-based reporter assay to test the TGF-β pathway activation. Active TGF-β1 concentrations in the aqueous humor were below the minimum detectable dose. Active TGF-β2 concentrations were significantly lower at baseline and at month 1, compared to controls. No significant differences in active TGF-β3 concentration were found among the sample groups. Moreover, TGF-β pathway activation was significantly lower at baseline compared to controls. Our data corroborate an anti-angiogenic role for TGF-β2 in nAMD. This should be considered from the perspective of a therapy using TGF-β inhibitors."	"Impact of targeting transforming growth factor β-2 with antisense OT-101 on the cytokine and chemokine profile in patients with advanced pancreatic cancer. Overexpression of the cytokine - transforming growth factor-beta 2 (TGF-β2) - has been implicated in the malignant progression of pancreatic cancer (PAC). OT-101 (trabedersen) is an antisense oligodeoxynucleotide designed to target the human TGF-β2 mRNA. In a Phase I/II study, OT-101 treatment with subsequent chemotherapy was characterized by outstanding overall survival (OS) in patients with PAC. This study sought to identify 1) co-regulated sets of cyto-/chemokines; 2) potential mechanisms that link TGF-β receptor type 2 receptor inhibition that may result in the induction of a cytokine storm; and 3) predictive biomarkers for OS outcome in OT-101-treated patients with PAC. Plasma levels of 31 cyto-/chemokines were tracked over three cycles of OT-101 therapy (140 mg/m<sup>2</sup>/day) in 12 PAC patients. Samples were acquired before onset of OT-101 therapy and at eight selected time points during therapy. A mixed ANCOVA model was developed for 19 cyto-/chemokines with median expression &gt;1 following OT-101 therapy. Regression and hierarchical clustering analyses were performed to identify correlated expressions in each patient across cyto-/chemokines or in each cyto-/chemokine across patients. Plasma cyto-/chemokine levels were compared with OS with and without subsequent chemotherapy. Three highly correlated subsets of cyto-/chemokines (Cluster 1: EGF, MIP-1α, MIP-1β; Cluster 2: FGF-2, MIG, IP-10, IL-15, IFN-α, IL-12; and Cluster 3: HGF, IL-6, IL-8) were identified following OT-101 therapy. Suppression of TGF-β signaling by OT-101 led to upregulation of IL-8, IL-15, IP-10, and HGF. Protein-protein interaction networks constructed using STRING10 algorithm identified a relationship between IL-8, IL-15, and TGF-β receptor type 2 inhibition. The mixed analysis of covariance model that examined the levels of 19 cyto-/chemokines with OS as the covariate at each of the time points resulted in IL-8 and IL-15 exhibiting a significant association with OS during Cycle 1 of therapy. In the whole-blood culture model, the cytokines with the most pronounced increase after OT-101 treatment were IL-1β, IL-8, and MCP-1. No consistent responses in cyto-/chemokine levels were observed due to OT-101 treatment. Levels of IL-8 and IL-15 during Cycle 1 were positively associated with OS across 12 patients with PAC and served as potential biomarkers for treatment outcome following OT-101 therapy."	"Cross-ancestry genome-wide association analysis of corneal thickness strengthens link between complex and Mendelian eye diseases. Central corneal thickness (CCT) is a highly heritable trait associated with complex eye diseases such as keratoconus and glaucoma. We perform a genome-wide association meta-analysis of CCT and identify 19 novel regions. In addition to adding support for known connective tissue-related pathways, pathway analyses uncover previously unreported gene sets. Remarkably, &gt;20% of the CCT-loci are near or within Mendelian disorder genes. These included FBN1, ADAMTS2 and TGFB2 which associate with connective tissue disorders (Marfan, Ehlers-Danlos and Loeys-Dietz syndromes), and the LUM-DCN-KERA gene complex involved in myopia, corneal dystrophies and cornea plana. Using index CCT-increasing variants, we find a significant inverse correlation in effect sizes between CCT and keratoconus (r = -0.62, P = 5.30 × 10<sup>-5</sup>) but not between CCT and primary open-angle glaucoma (r = -0.17, P = 0.2). Our findings provide evidence for shared genetic influences between CCT and keratoconus, and implicate candidate genes acting in collagen and extracellular matrix regulation."	"Interleukin-6-mediated trans-signaling inhibits transforming growth factor-β signaling in trabecular meshwork cells. Glaucoma is one of the major causes of blindness, and transforming growth factor-β2 (TGF-β2) has been found to be elevated in the aqueous humor of eyes with primary open-angle glaucoma (POAG). TGF-β2 in aqueous humor causes the glaucoma-related fibrosis of human trabecular meshwork (HTM), suggesting an important role of TGF-β in POAG pathogenesis. Here, we sought to elucidate the effects of IL-6 trans-signaling on TGF-β signaling in HTM cells. Using a multiplex immunoassay, POAG patients decreased IL-6 levels and increased soluble IL-6 receptor (sIL-6R) levels compared with the controls. In in vitro experiments, we observed that the IL-6 level was increased in the conditioned medium of HTM cells after TGF-β2 stimulation. To elucidate the relationship between TGF-β2 and IL-6 in HTM cells, we conducted Western blotting and immunohistochemical analyses, and we noted that the combination of IL-6 and sIL-6R (IL6/sIL-6R) suppressed TGF-β-induced up-regulation of α-smooth muscle actin in HTM cells, whereas IL-6 alone did not. This suggests that trans-signaling, not classic signaling, of IL-6 suppresses TGF-β-induced fibrosis of HTM. IL6/sIL-6R also suppressed TGF-β-mediated activation of myosin light chain 2 (MLC2), Smad2, and p38. Of note, these inhibitory effects of IL6/sIL-6R on TGF-β were partly reduced by siRNA-mediated knockdown of STAT3. Moreover, IL-6/sIL-6R partly inhibited TGF-β-induced activation of the Smad-sensitive promoter detected with luciferase reporter gene assays and up-regulation of TGFRI and TGFRII, evaluated by quantitative real-time RT-PCR. Strikingly, overexpression of TGFRI and TGFRII diminished these inhibitory effects of IL-6/sIL-6R. We conclude that of IL-6-mediated trans-signaling potently represses TGF-β signaling in HTM cells."	"Transforming growth factor β2 (TGFβ2) signaling plays a key role in glucocorticoid-induced ocular hypertension. Elevation of intraocular pressure (IOP) is a serious adverse effect of glucocorticoid (GC) therapy. Increased extracellular matrix (ECM) accumulation and endoplasmic reticulum (ER) stress in the trabecular meshwork (TM) is associated with GC-induced IOP elevation. However, the molecular mechanisms by which GCs induce ECM accumulation and ER stress in the TM have not been determined. Here, we show that a potent GC, dexamethasone (Dex), activates transforming growth factor β (TGFβ) signaling, leading to GC-induced ECM accumulation, ER stress, and IOP elevation. Dex increased both the precursor and bioactive forms of TGFβ2 in conditioned medium and activated TGFβ-induced SMAD signaling in primary human TM cells. Dex also activated TGFβ2 in the aqueous humor and TM of a mouse model of Dex-induced ocular hypertension. We further show that Smad3<sup>-/-</sup> mice are protected from Dex-induced ocular hypertension, ER stress, and ECM accumulation. Moreover, treating WT mice with a selective TGFβ receptor kinase I inhibitor, LY364947, significantly decreased Dex-induced ocular hypertension. Of note, knockdown of the ER stress-induced activating transcription factor 4 (ATF4), or C/EBP homologous protein (CHOP), completely prevented Dex-induced TGFβ2 activation and ECM accumulation in TM cells. These observations suggested that chronic ER stress promotes Dex-induced ocular hypertension via TGFβ signaling. Our results indicate that TGFβ2 signaling plays a central role in GC-induced ocular hypertension and provides therapeutic targets for GC-induced ocular hypertension."	"LSD1 coordinates with the SIN3A/HDAC complex and maintains sensitivity to chemotherapy in breast cancer. Lysine-specific demethylase 1 (LSD1) was the first histone demethylase identified as catalysing the removal of mono- and di-methylation marks on histone H3-K4. Despite the potential broad action of LSD1 in transcription regulation, recent studies indicate that LSD1 may coordinate with multiple epigenetic regulatory complexes including CoREST/HDAC complex, NuRD complex, SIRT1, and PRC2, implying complicated mechanistic actions of this seemingly simple enzyme. Here, we report that LSD1 is also an integral component of the SIN3A/HDAC complex. Transcriptional target analysis using ChIP-on-chip technology revealed that the LSD1/SIN3A/HDAC complex targets several cellular signalling pathways that are critically involved in cell proliferation, survival, metastasis, and apoptosis, especially the p53 signalling pathway. We have demonstrated that LSD1 coordinates with the SIN3A/HDAC complex in inhibiting a series of genes such as CASP7, TGFB2, CDKN1A(p21), HIF1A, TERT, and MDM2, some of which are oncogenic. Our experiments also found that LSD1 and SIN3A are required for optimal survival and growth of breast cancer cells while also essential for the maintenance of epithelial homoeostasis and chemosensitivity. Our data indicate that LSD1 is a functional alternative subunit of the SIN3A/HDAC complex, providing a molecular basis for the interplay of histone demethylation and deacetylation in chromatin remodelling, and suggest that the LSD1/SIN3A/HDAC complex could be a target for breast cancer therapeutic strategies."	"Downregulation of LINC00894-002 Contributes to Tamoxifen Resistance by Enhancing the TGF-β Signaling Pathway. Tamoxifen is a widely used personalized medicine for estrogen receptor (ER)-positive breast cancer, but approximately 30% of patients receiving the treatment relapse due to tamoxifen resistance (TamR). Recently, several reports have linked lncRNAs to cancer drug resistance. However, the role of lncRNAs in TamR is unclear. To identify TamR-related lncRNAs, we first used a bioinformatic approach to predict whether they have connection with known TamR-associated genes by starBase v2.0 and divided them into two groups. Group A contains lncRNAs that connect with known TamR genes and group B contains lncRNAs that show no predicted interaction. Among the 12 lncRNAs in group A, 58.3% of them are either up- or downregulated in MCF-7/TamR cells compared to the sensitive cells. In contrast, the expression levels of all group B lncRNAs are not changed in MCF-7/TamR cells. LINC00894-002 exhibits the most sophisticated network pattern and is the most downregulated lncRNA in MCF-7/TamR cells. Moreover, we find that LINC00894-002 is directly upregulated by ERα. Knocking down LINC00894-002 downregulates expression of miR-200a-3p and miR-200b-3p, upregulates the expression of TGF-β2 and ZEB1, and finally contributes to TamR. Herein, we report the first case of an inhibitory lncRNA against TamR through the miR-200-TGF-β2-ZEB1 signaling pathway."	"Early Immune Response to Acute Gastric Fluid Aspiration in a Rat Model of Lung Transplantation. Chronic aspiration of gastric fluid contents can decrease long-term survival of pulmonary transplants due to development of obliterative bronchiolitis. However, little is known about the early immune response and the cascade of events involved in the development of obliterative bronchiolitis. We utilized a rat orthotopic pulmonary transplant model and a single aspiration of either gastric fluid or normal saline to investigate the histologic, cellular, and cytokine changes associated with an acute gastric fluid aspiration event compared with normal saline at 2 and 10 days after aspiration. Our observations included a decrease in pulmonary compliance and increased airway inflammation and acute rejection of the transplanted lung, as well as increases in macrophages, granulocytes, and proinflammatory cytokines such as interleukin 1β, transforming growth factor β1 and β2, and tumor necrosis factor α in bronchoalveolar lavage fluid from the transplanted lung of gastric fluid-aspirated rats compared with normal saline-aspirated rats. The acute inflammatory response observed in the present study is consistent with changes found in chronic models of aspiration-associated injury and suggests a potentially important role for mast cells in the development of obliterative bronchiolitis."	"Elevated TGF β2 serum levels in Emery-Dreifuss Muscular Dystrophy: Implications for myocyte and tenocyte differentiation and fibrogenic processes. Among rare diseases caused by mutations in LMNA gene, Emery-Dreifuss Muscular Dystrophy type 2 and Limb-Girdle muscular Dystrophy 1B are characterized by muscle weakness and wasting, joint contractures, cardiomyopathy with conduction system disorders. Circulating biomarkers for these pathologies have not been identified. Here, we analyzed the secretome of a cohort of patients affected by these muscular laminopathies in the attempt to identify a common signature. Multiplex cytokine assay showed that transforming growth factor beta 2 (TGF β2) and interleukin 17 serum levels are consistently elevated in the vast majority of examined patients, while interleukin 6 and basic fibroblast growth factor are altered in subgroups of patients. Levels of TGF β2 are also increased in fibroblast and myoblast cultures established from patient biopsies as well as in serum from mice bearing the H222P Lmna mutation causing Emery-Dreifuss Muscular Dystrophy in humans. Both patient serum and fibroblast conditioned media activated a TGF β2-dependent fibrogenic program in normal human myoblasts and tenocytes and inhibited myoblast differentiation. Consistent with these results, a TGF β2 neutralizing antibody avoided fibrogenic marker activation and myogenesis impairment. Cell intrinsic TGF β2-dependent mechanisms were also determined in laminopathic cells, where TGF β2 activated AKT/mTOR phosphorylation. These data show that TGF β2 contributes to the pathogenesis of Emery-Dreifuss Muscular Dystrophy type 2 and Limb-Girdle muscular Dystrophy 1B and can be considered a potential biomarker of those diseases. Further, the evidence of TGF β2 pathogenetic effects in tenocytes provides the first mechanistic insight into occurrence of joint contractures in muscular laminopathies."	"The role of HIF-1α in the TGF-β2-mediated epithelial-to-mesenchymal transition of human lens epithelial cells. Human lens epithelial cells (HLE) undergo mesenchymal transition and become fibrotic during posterior capsule opacification (PCO), which is a frequent complication after cataract surgery. TGF-β2 has been implicated in this fibrosis. Previous studies have focused on the role of hypoxia-inducible factor-1α (HIF-1α) in fibrotic diseases, but the role of HIF-1α in the TGF-β2-mediated fibrosis in HLE is not known. TGF-β2 treatment (10 ng/mL, 48 h) increased the HIF-1α levels along with the EMT markers in cultured human lens epithelial cells (FHL124 cells). The increase in HIF-1α corresponded to an increase in VEGF-A in the culture medium. However, exogenous addition of VEGF-A (up to 10 ng/mL) did not alter the EMT marker levels in HLE. Addition of a prolyl hydroxylase inhibitor, dimethyloxalylglycine (DMOG, up to 10 µM), enhanced the levels of HIF-1α, and secreted VEGF-A but did not alter the EMT marker levels. However, treatment of cells with a HIF-1α translational inhibitor, KC7F2, significantly reduced the TGF-β2-mediated EMT response. This was accompanied by a reduction in the ERK phosphorylation and nuclear translocation of Snail and Slug. Together, these data suggest that HIF-1α is important for the TGF-β2-mediated EMT of human lens epithelial cells."	"TGF-β Signaling Regulates Development of Midbrain Dopaminergic and Hindbrain Serotonergic Neuron Subgroups. Molecular and functional diversity within midbrain dopaminergic (mDA) and hindbrain serotonergic (5-HT) neurons has emerged as a relevant feature that could underlie selective vulnerability of neurons in clinical disorders. We have investigated the role of transforming growth factor beta (TGF-β) during development of mDA and 5-HT subgroups. We have generated TβRII<sup>flox/flox</sup>::En1<sup>cre/+</sup> mice where type II TGF-β receptor is conditionally deleted from engrailed 1-expressing cells and have investigated the hindbrain serotonergic system of these mice together with Tgf-β2<sup>-/-</sup> mice. The results show a significant decrease in the number of 5-HT neurons in TGF-β2-deficient mice at embryonic day (E) 12 and a selective significant decrease in the hindbrain paramedian raphe 5-HT neurons at E18, compared to wild type. Moreover, conditional deletion of TGF-β signaling from midbrain and rhombomere 1 leads to inactive TGF-β signaling in cre-expressing cells, impaired development of mouse mDA neuron subgroups and of dorsal raphe 5-HT neuron subgroups in a temporal manner. These results highlight a selective growth factor dependency of individual rostral hindbrain serotonergic subpopulations, emphasize the impact of TGF-β signaling during development of mDA and 5-HT subgroups, and suggest TGF-βs as potent candidates to establish diversity within the hindbrain serotonergic system. Thus, the data contribute to a better understanding of development and degeneration of mDA neurons and 5-HT-associated clinical disorders."	"miR-466a Targeting of TGF-β2 Contributes to FoxP3<sup>+</sup> Regulatory T Cell Differentiation in a Murine Model of Allogeneic Transplantation. The promise of inducing immunological tolerance through regulatory T cell (Treg) control of effector T cell function is crucial for developing future therapeutic strategies to treat allograft rejection as well as inflammatory autoimmune diseases. In the current study, we used murine allograft rejection as a model to identify microRNA (miRNA) regulation of Treg differentiation from naïve CD4 cells. We performed miRNA expression array in CD4<sup>+</sup> T cells in the draining lymph node (dLN) of mice which received syngeneic or allogeneic grafts to determine the molecular mechanisms that hinder the expansion of Tregs. We identified an increase in miRNA cluster 297-669 (C2MC) after allogeneic transplantation, in CD4<sup>+</sup> T cells, such that 10 of the 27 upregulated miRNAs were all from this cluster, with one of its members, mmu-miR-466a-3p (miR-466a-3p), targeting transforming growth factor beta 2 (TGF-β2), as identified through reporter luciferase assay. Transfection of miR-466a-3p in CD4<sup>+</sup> T cells led to a decreased inducible FoxP3<sup>+</sup> Treg generation while inhibiting miR-466a-3p expression through locked nucleic acid resulting in increased Tregs and a reduction in effector T cells. Furthermore, in vivo inhibition of miR-466a-3p in an allogeneic skin-graft model attenuated T cell response against the graft through an increase in TGF-β2. TGF-β2 was as effective as TGF-β1 at both inducing Tregs and through adoptive transfer, mitigating host effector T cell response against the allograft. Together, the current study demonstrates for the first time a new role for miRNA-466a-3p and TGF-β2 in the regulation of Treg differentiation and thus offers novel avenues to control inflammatory disorders."	"Low or excess levels of dietary cholesterol impaired immunity and aggravated inflammation response in young grass carp (Ctenopharyngodon idella). The present study explored the effect of cholesterol on the immunity and inflammation response in the immune organs (head kidney, spleen and skin) of young grass carp (Ctenopharyngodon idella) fed graded levels of dietary cholesterol (0.041-1.526%) for 60 days and then infected with Aeromonas hydrophila for 14 days. The results showed that low levels of cholesterol (1) depressed the innate immune components [lysozyme (LZ), acid phosphatase (ACP), complements and antimicrobial peptides] and adaptive immune component [immunoglobulin M (IgM)], (2) up-regulated the mRNA levels of pro-inflammatory cytokines [interleukin 1β (IL-1β), IL-6, IL-8, IL-12p35, IL-12p40, IL-15, IL-17D, tumor necrosis factor α (TNF-α) and interferon γ2 (IFN-γ2)], partly due to the activated nuclear factor kappa B (NF-κB) signalling, and (3) down-regulated the mRNA levels of anti-inflammatory cytokines [IL-4/13B, IL-10, IL-11, transforming growth factor (TGF)-β1 and TGF-β2], partly due to the suppression of target of rapamycin (TOR) signalling in the immune organs of young grass carp. Interestingly, dietary cholesterol had no influences on the IκB kinase α (IKKα) and IL-4/13A mRNA levels in the head kidney, spleen and skin, the IL-1β and IL-12p40 mRNA levels in the spleen and skin, or the β-defensin-1 mRNA level in the skin of young grass carp. Additionally, low levels of cholesterol increased the skin haemorrhage and lesion morbidity. In summary, low levels of cholesterol impaired immunity by depressing the innate and adaptive immune components, and low levels of cholesterol aggravated the inflammation response via up-regulating the expression of pro-inflammatory cytokines as well as down-regulating the expression of anti-inflammatory cytokines partly through the modulation of NF-κB and TOR signalling in the immune organs of fish. Similar to the low level of cholesterol, the excess level of dietary cholesterol impaired immunity and aggravated inflammation response in the immune organs of fish. Finally, based on the percent weight gain (PWG), the ability against skin haemorrhage and lesions as well as the LZ activity in the head kidney and the ACP activity in the spleen, the optimal dietary cholesterol levels for young grass carp were estimated as 0.721, 0.826, 0.802 and 0.772% diet, respectively."	"HOXC10 promotes proliferation and invasion and induces immunosuppressive gene expression in glioma. The prognosis for patients with malignant glioma is very poor and thus the identification of new potential therapeutic targets is critically important. In this work, we report a previously unknown role for the homeobox transcription factor HOXC10 in regulating immunosuppressive gene expression in glioma cell lines and their proliferative and invasive capacities. Although HOXC10 expression is dysregulated in several types of tumors, its potential function in glioma was not known. We found that HOXC10 expression was upregulated in glioma compared with normal tissue, and that HOXC10 expression positively associated with high grading of glioma. In three independent datasets (REMBRANDT glioma, The Cancer Genome Atlas glioblastoma multiforme and GSE4412), HOXC10 upregulation was associated with short overall survival. In two glioma cell lines, HOXC10 knock-down inhibited cell proliferation, colony formation, migration and invasion, and promoted apoptosis. In addition, HOXC10 knock-down suppressed the expression of genes that are involved in tumor immunosuppression, including those for transforming growth factor-β 2, PD-L2, CCL2 and TDO2. A ChIP assay showed that HOXC10 directly bound to the PD-L2 and TDO2 promoter regions. In summary, our results suggest that HOXC10 upregulation in glioma promotes an aggressive phenotype and induces immunosuppressive gene expression, supporting further investigation of the potential of HOXC10 as a therapeutic target in glioma."	"Study of lung toxicity in rats exposed to silica powder with different hard metal constituents. The objective of this study was to assess the lung toxicity induced by the inhalation of different hard metal constituents and silica powder and screen for potential toxicity biomarkers. Rats were randomly divided into saline, cobalt, tungsten carbide, silica, and hard metal (HM) groups and were administered a single 10-mg dose of the respective treatments. After 8 weeks, the lung tissue structure in the HM group was deformed, numerous nucleated giant and epithelial-like cells appeared in the stroma, and the computed tomography scanning images appeared abnormal. Krebs von den Lungen-6 (KL-6), transforming growth factor (TGF)-β1, and TGF-β2 expression in bronchoalveolar lavage fluid (BALF) significantly differed between the groups ( p &lt; 0.05). Serum KL-6 and TGF-β1, but not TGF-β2, levels significantly differed between some groups ( p &lt; 0.05). We observed multinucleated giant cells in the rat lung tissue. While the serum and BALF levels of KL-6 and TGF-β2 are not highly specific, TGF-β1 may be a valuable reference diagnostic marker in HM lung disease."	"ERK1/2-Dependent Gene Expression Contributing to TGFβ-Induced Lens EMT. This study aims to highlight some of the genes that are differentially regulated by ERK1/2 signaling in TGFβ-induced EMT in lens, and their potential contribution to this pathological process. Rat lens epithelial explants were cultured with or without TGFβ over a 3-day-culture period to induce EMT, in the presence or absence of UO126 (ERK1/2 signaling inhibitor), both prior to TGFβ-treatment, or 24 or 48 hours after TGFβ treatment. Smad2/3-nuclear immunolabeling was used to indicate active TGFβ signaling, and quantitative RT-PCR was used to analyze changes in the different treatment groups in expression of the following representative genes: TGFβ signaling (Smad7, Smurf1, and Rnf111), epithelial markers (Pax6, Cdh1, Zeb1, and Zeb2), cell survival/death regulators (Bcl2, Bax, and Bad) and lens mesenchymal markers (Mmp9, Fn1, and Col1a1), over the 3 days of culture. ERK1/2 was found to regulate the expression of Smurf1, Smad7, Rnf11, Cdh1, Pax6, Zeb1, Bcl2, Bax, and Bad genes in lens cells. TGFβ signaling was evident by nuclear localization of Smad2/3 and this was effectively blocked by pre-treatment with UO126, but not by post-treatment with this ERK1/2 signaling inhibitor. TGFβ induced the expression of its signaling partners (Smad7, Smurf1, and Rnf111), as well as lens mesenchymal genes (Mmp9, Fn1, and Col1a1), consistent with its role in inducing an EMT. These TGFβ-responsive signaling genes, as well as the mesenchymal markers, were all positively regulated by ERK1/2-activity. The expression levels of the lens epithelial genes we examined, and genes that were associated with cell death/survival, were not directly impacted by TGFβ. TGFβ-mediated ERK1/2 signaling positively modulates the expression of mesenchymal genes in lens epithelial explants undergoing EMT, in addition to regulating TGFβ-mediated regulatory genes. Independent of TGFβ, ERK1/2 activity can also regulate the expression of endogenous lens epithelial genes, highlighting its potential key role in regulation of both normal and pathological lens cellular processes."	"Super enhancer inhibitors suppress MYC driven transcriptional amplification and tumor progression in osteosarcoma. Osteosarcoma is the most common primary bone sarcoma that mostly occurs in young adults. The causes of osteosarcoma are heterogeneous and still not fully understood. Identification of novel, important oncogenic factors in osteosarcoma and development of better, effective therapeutic approaches are in urgent need for better treatment of osteosarcoma patients. In this study, we uncovered that the oncogene MYC is significantly upregulated in metastastic osteosarcoma samples. In addition, high MYC expression is associated with poor survival of osteosarcoma patients. Analysis of MYC targets in osteosarcoma revealed that most of the osteosarcoma super enhancer genes are bound by MYC. Treatment of osteosarcoma cells with super enhancer inhibitors THZ1 and JQ1 effectively suppresses the proliferation, migration, and invasion of osteosarcoma cells. Mechanistically, THZ1 treatment suppresses a large group of super enhancer containing MYC target genes including CDK6 and TGFB2. These findings revealed that the MYC-driven super enhancer signaling is crucial for the osteosarcoma tumorigenesis and targeting the MYC/super enhancer axis represents as a promising therapeutic strategy for treatment of osteosarcoma patients."	"Identification and Evolution of TGF-β Signaling Pathway Members in Twenty-Four Animal Species and Expression in Tilapia. Transforming growth factor β (TGF-β) signaling controls diverse cellular processes during embryogenesis as well as in mature tissues of multicellular animals. Here we carried out a comprehensive analysis of TGF-β pathway members in 24 representative animal species. The appearance of the TGF-β pathway was intrinsically linked to the emergence of metazoan. The total number of TGF-β ligands, receptors, and smads changed slightly in all invertebrates and jawless vertebrates analyzed. In contrast, expansion of the pathway members, especially ligands, was observed in jawed vertebrates most likely due to the second round of whole genome duplication (2R) and additional rounds in teleosts. Duplications of TGFB2, TGFBR2, ACVR1, SMAD4 and SMAD6, which were resulted from 2R, were first isolated. Type II receptors may be originated from the ACVR2-like ancestor. Interestingly, AMHR2 was not identified in Chimaeriformes and Cypriniformes even though they had the ligand AMH. Based on transcriptome data, TGF-β ligands exhibited a tissue-specific expression especially in the heart and gonads. However, most receptors and smads were expressed in multiple tissues indicating they were shared by different ligands. Spatial and temporal expression profiles of 8 genes in gonads of different developmental stages provided a fundamental clue for understanding their important roles in sex determination and reproduction. Taken together, our findings provided a global insight into the phylogeny and expression patterns of the TGF-β pathway genes, and hence contribute to the greater understanding of their biological roles in the organism especially in teleosts."	"Effect of Cinnamomum osmophloeum Kanehira Leaf Aqueous Extract on Dermal Papilla Cell Proliferation and Hair Growth. In this study, we explored the effect of the water extract of Cinnamomum osmophloeum Kanehira (COK) leaves on hair growth by in vitro and in vivo assays. Using an in vitro 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyl tetrazolium bromide (MTT) assay, it was found that the proliferation of rat vibrissae and human hair dermal papilla cells (hDPCs) was significantly enhanced by the COK leaf extract treatment. As determined by quantitative real-time polymerase chain reaction (RT-PCR), the messenger RNA (mRNA) levels of some hair growth-related factors including vascular endothelial growth factor, keratinocyte growth factor (KGF), and transforming growth factor-β2 were found to be higher in the cultured hDPCs exposed to COK leaf extract than those in the untreated control group. In the hair-depilated C57BL/6 mouse model, the stimulation of hair growth was demonstrated in the group of COK leaf extract treatment. Both photographical and histological observations revealed the promotion of the anagen phase in the hair growth cycle by the COK leaf extract in the C57BL/6 mice. Finally, the ultra performance liquid chromatography (UPLC) showed that the COK extract contained mostly cinnamic aldehyde and a small amount of cinnamic acid. The results suggest that the COK leaf extract may find use for the treatment of hair loss."	"The complex alteration in the network of IL-17-type cytokines in patients with hereditary angioedema. Hereditary angioedema (HAE) is a rare autosomic-dominant disorder characterized by a deficiency of C1 esterase inhibitor which causes episodic swellings of subcutaneous tissues, bowel walls and upper airways that are disabling and potentially life-threatening. We evaluated n = 17 patients with confirmed HAE diagnosis during attack and remission state and n = 19 healthy subjects. The samples were tested for a panel of IL (Interleukin)-17-type cytokines (IL-1β, IL-6, IL-10, granulocyte-macrophage colony stimulating factor (GM-CSF), IL-17, IL-21, IL-22, IL-23) and transforming growth factor-beta (TGF-β) subtypes. Data indicate that there are variations of cytokine levels in HAE subjects comparing the condition during the crisis respect to the value in the remission phase, in particular type 17 signature cytokines are increased, whereas IL-23 is unmodified and TGF-β3 is significantly reduced. When comparing healthy and HAE subjects in the remission state, we found a significant difference for IL-17, GM-CSF, IL-21, TGF-β1 and TGF-β2 cytokines. These results confirm and extend our previous findings indicating that in HAE there is operating an inflammatory activation process, which involves also T helper 17 (Th17) cytokines and TGF-β isoforms, associated with localized angioedema attacks and characterized by elevated bradykinin levels."	"Novel NADPH oxidase inhibitor VAS2870 suppresses TGF‑β‑dependent epithelial‑to‑mesenchymal transition in retinal pigment epithelial cells. NADPH oxidases (NOXs) are important in the pathophysiology of fibrotic diseases. The expression and activity of NOXs are regulated by growth factors, including transforming growth factor (TGF‑β). The proliferation of retinal pigment epithelial (RPE) cells following epithelial‑ to‑mesenchymal transition (EMT) is a major pathological change involved in proliferative vitreoretinopathy (PVR). The aim of the present study was to determine the effects of the novel NOX inhibitor VAS2870 on the TGF‑β‑dependent expression of NOX4 and associated cellular events in RPE cells. Cell viability was examined using a Cell Counting Kit‑8 assay and cell cycle progression was detected by flow cytometric analysis. Immunofluorescence analysis and western blot analysis were performed to assess EMT. It was found that TGF‑β increased the expression of NOX4 and that pre‑incubation with VAS2870 eliminated this effect. Additionally, TGF‑β promoted RPE migration and increased EMT. Pre‑incubation with VAS2870 significantly prevented TGF‑β2‑induced EMT by decreasing the levels of α‑smooth muscle actin and E‑cadherin, and also inhibited the migratory ability of the RPE cells, as demonstrated by scratch assays. Finally, VAS2870 suppressed the proliferation of RPE cells, and led to G1‑phase cell cycle arrest and a significant downregulation of the expression of cyclin D1. In conclusion, the pharmacological inhibition of NOX may be a promising tool for the treatment of PVR."	"Decreased PECAM1-mediated TGF-β1 expression in the mid-secretory endometrium in women with recurrent implantation failure. Is recurrent implantation failure (RIF) associated with decreased expression of platelet and endothelial cell adhesion molecule 1 (PECAM1) and transforming growth factor β1 (TGF-β1) in the endometrium during the implantation window? The present study demonstrates that the expression of PECAM1 and TGF-β1 is significantly decreased in the mid-secretory endometrium in women with RIF, which may account for embryo implantation failure. RIF has become a bottleneck issue that hampers the improvement of pregnancy rates in IVF-embryo transfer (IVF-ET). The causes of RIF are complex and may involve the dysregulation of various growth factors, metabolites, and inflammatory cytokines. At present, the precise pathogenesis of RIF has not been elucidated. This was a prospective case-control study. Endometrial tissue samples were obtained from January 2014 to December 2016 from two groups of women who had undergone IVF (RIF group, 22 women who underwent ≥3 ETs including a total of ≥4 good-quality embryos without pregnancy, control group, 18 women who conceived in their first treatment cycle). At the same time, samples were obtained from 18 women with infertility secondary to tubal factor in the early proliferative, late proliferative and mid-secretory phases of the menstrual cycle (n = 6 per group). Samples used for isolation of primary human endometrial epithelial cells and stromal cells (HEECs and HESCs) were collected in December 2017 from six women with infertility secondary to tubal factor. We investigated gene expression using integrative whole genome expression microarray analysis, including differentially expressed gene screening, principal component analysis, and functional enrichment analysis. RT-qPCR, western blotting, immunohistochemistry, immunofluorescence co-localization analysis and short hairpin RNA (shRNA) plasmid transfection in Ishikawa cell line, HEECs and HESCs were used to investigate the expression of PECAM1 and TGF-β1. Integrative data mining of whole-genome expression profiles identified cell adhesion as a key regulator in RIF. Database retrieval and literature review screened several novel cell adhesion-related genes that might participate in embryo implantation, which include PECAM1, intercellular adhesion molecule 2 (ICAM2), integrin subunit β2 (ITGB2), selectin P (SELP) and TEK receptor tyrosine kinase (TEK). Among these targets, the mRNA and protein levels of PECAM1 were significantly lower in the RIF group than those in the control group. During the menstrual cycles of women with secondary infertility, the protein expression level of PECAM1 was the lowest in early proliferative phase, slightly increased in late proliferative phase and was the highest in mid-secretory phase. While the expression level of HOXA10, an endometrial receptivity marker, kept at a low level in early proliferative phase and increased in late proliferative phase, then maintained at a high level in the mid-secretory phase. Furthermore, TGF-β1, mediated by PECAM1, was also decreased significantly in the RIF group. Using shRNA-based approach, we demonstrated that the depletion of PECAM1 significantly decreased the expression of TGF-β1 in Ishikawa cells, as well as in primary HEECs and HESCs. These results indicated that PECAM1 and TGF-β1 might play a pivotal role in modulating endometrial receptivity. Although we have shown that PECAM1 and TGF-β1 were down-regulated in the women with RIF, the molecular mechanism of the effect of the factors on the endometrial receptivity remain unclear. Our findings provide insight into the contribution of PECAM1 and TGF-β1 in regulating implantation, which could be used to develop potential therapeutic methods for RIF. This work was supported by grants from the National Natural Science Foundation of China (Nos. 81771656 and 81370763), Special fund for clinical research of the Chinese Medical Association (No. 16020480664), and the Merck Serono China Research Fund for Fertility Agreement. The authors have no competing interests."	"VR-10 Thrombospondin-1 Synthetic Polypeptide's Impact on Rhesus Choroid-Retinal Endothelial Cells. This study aimed to investigate the effects of the VR-10 TSP-1 synthetic polypeptide on cytokines and the proliferation and migration of endothelial cells, as well as exploring a new method for anti-ocular neoangiogenesis. We measured the proliferation of RF/6A cells by an MTT assay and investigated the migration of RF/6A cells by a Transwell chamber assay. We examined the mRNA transcript levels of TGF-β2, VEGF, PEDF, Bcl-2 and FasL in RF/6A cells by RT-PCR and evaluated the expression of Fas and caspase-3 proteins in RF/6A cells by western blot analysis. 1. TSP-1 (1 µg/ml) and synthetic peptide VR-10 (0.1 µg/ml, 1 µg/ml and 10 µg/ml) inhibited the proliferation of RF/6A cells in a time and dose-dependent way. 2. TSP-1 and synthetic peptide VR-10 could inhibit the migration of RF/6A cells in a Transwell chamber (P &lt; 0.001). It was demonstrated that 10 µg/ml synthetic peptide VR-10 had the strongest effect. 3. The expression of TGF-β2 mRNA in RF/6A cells increased after treatment with 1 µg/ml TSP-1 (P &lt; 0.0001). However, there was no significant difference between the synthetic peptide VR-10 and the control group (P &gt; 0.05). Expression of PEDF mRNA in RF/6A cells was increased after treatment with 1 µg/ml TSP-1 and synthetic peptide VR-10. We demonstrated that 10 µg/ml synthetic peptide VR-10 had the strongest effect (P &lt; 0.001). There were significant differences between groups (P &lt; 0.001). Expression of TGF-β2 mRNA in RF/6A cells increased after treatment with 1 µg/ml TSP-1 (P = 0.000). There was no significant difference between the synthetic peptide VR-10 and the control group (P &gt; 0.05). PEDF mRNA expression in RF/6A cells decreased after 1 µg/ml TSP-1 and synthetic peptide VR-10 therapy, among which 10 µg/ml synthetic peptide VR-10 demonstrated the strongest effect (P &lt; 0.001). There were significant differences between groups (P &lt; 0.001), except for the 1 µg/ml synthetic peptide VR-10 and 1 µg/ml synthetic peptide VR-10 groups (P = 0.615). 4. Compared with the control group, FasL mRNA expression was significantly increased in the 10 µg/ml synthetic peptide VR-10 treatment group; however, Bcl-2 mRNA expression was decreased. 5. Western blotting showed that RF/6A cells in the control group mainly expressed the 32 kD procaspase-3 forms. For the 10 µg/ml synthetic peptide, VR-10 treatment group, it showed decreased expression of procaspase-3 (32 kD) and concomitant increased expression of its shorter pro apoptotic forms (20 kD). Compared with the control group, Fas protein expression significantly increased in the 10 µg/ml synthetic peptide VR-10 treatment group. Synthetic peptide VR-10 had an inhibitory action on the proliferation and migration of RF/6A cells. VR-10 inhibited angiogenesis by its combined actions, which included up-regulating the expression of an anti-angiogenesis gene, namely, pigment epithelium-derived factor (PEDF), down-regulating the expression of the pro-angiogenic vascular endothelial growth factor (VEGF), and mediated endothelial cell apoptosis."	"Effects of Interleukin-6 on posterior capsular opacification. The purpose of this work was to determine the effects of interleukin-6 (IL-6) on the development of posterior capsular opacification (PCO) in vitro and in vivo. Western blot and real-time PCR were used to test the IL-6-induced epithelial-mesenchymal transition (EMT) marker α-smooth muscle actin (α-SMA), the extracellular matrix (ECM) markers fibronectin (Fn) and type I collagen (COL-1), transforming growth factor β2 (TGF-β2), and the activation and role of the JAK/STAT3 signaling pathway in human lens epithelial cells (HLECs). Immunocytofluorescence staining was performed to detect gp130 and IL-6Rα expression in HLECs. Rat PCO models were then established to examine the impact of STAT3 knockdown by shRNA adeno-associated virus on PCO development, and immunohistochemical staining was performed to detect the expression of Fn in the anterior and posterior capsule in vivo. We found that IL-6 promotes the expression of Fn, COL-1, TGF-β2, p-JAK2 and p-STAT3 in HLECs but exerts little effect on α-SMA. The JAK/STAT3 inhibitor WP1066 effectively suppressed the IL-6-induced expression of Fn and COL-1 in lens epithelial cells. STAT3 knockdown effectively inhibited the development of PCO in rats and significantly reduced the expression of Fn in the anterior and posterior capsule. These data suggest that IL-6 contributes to the development of PCO by promoting TGF-β2 activation and ECM synthesis through a JAK/STAT3 signaling-dependent mechanism. Furthermore, inhibiting JAK/STAT3 signaling effectively impairs both PCO development in rats and ECM synthesis in the lens capsule."	"TGFβ-facilitated optic fissure fusion and the role of bone morphogenetic protein antagonism. The optic fissure is a transient gap in the developing vertebrate eye, which must be closed as development proceeds. A persisting optic fissure, coloboma, is a major cause for blindness in children. Although many genes have been linked to coloboma, the process of optic fissure fusion is still little appreciated, especially on a molecular level. We identified a coloboma in mice with a targeted inactivation of transforming growth factor β2 (TGFβ2). Notably, here the optic fissure margins must have touched, however failed to fuse. Transcriptomic analyses indicated an effect on remodelling of the extracellular matrix (ECM) as an underlying mechanism. TGFβ signalling is well known for its effect on ECM remodelling, but it is at the same time often inhibited by bone morphogenetic protein (BMP) signalling. Notably, we also identified two BMP antagonists among the downregulated genes. For further functional analyses we made use of zebrafish, in which we found TGFβ ligands expressed in the developing eye, and the ligand binding receptor in the optic fissure margins where we also found active TGFβ signalling and, notably, also gremlin 2b (grem2b) and follistatin a (fsta), homologues of the regulated BMP antagonists. We hypothesized that TGFβ is locally inducing expression of BMP antagonists within the margins to relieve the inhibition from its regulatory capacity regarding ECM remodelling. We tested our hypothesis and found that induced BMP expression is sufficient to inhibit optic fissure fusion, resulting in coloboma. Our findings can likely be applied also to other fusion processes, especially when TGFβ signalling or BMP antagonism is involved, as in fusion processes during orofacial development."	"Matrix-bound AGEs enhance TGFβ2-mediated mesenchymal transition of lens epithelial cells via the noncanonical pathway: implications for secondary cataract formation. Advanced glycation end products (AGEs) are post-translational modifications formed from the reaction of reactive carbonyl compounds with amino groups in proteins. Our laboratory has previously shown that AGEs in extracellular matrix (ECM) proteins promote TGFβ2 (transforming growth factor-beta 2)-mediated epithelial-to-mesenchymal transition (EMT) of lens epithelial cells (LECs), which could play a role in fibrosis associated with posterior capsule opacification. We have also shown that αB-crystallin plays an important role in TGFβ2-mediated EMT of LECs. Here, we investigated the signaling mechanisms by which ECM-AGEs enhance TGFβ2-mediated EMT in LECs. We found that in LECs cultured on AGE-modified basement protein extract (AGE-BME), TGFβ2 treatment up-regulated the mesenchymal markers α-SMA (α-smooth muscle actin) and αB-crystallin and down-regulated the epithelial marker E-cadherin more than LECs cultured on unmodified BME and treated with TGFβ2. Using a Multiplex Assay, we found that AGE-BME significantly up-regulated the noncanonical pathway by promoting phosphorylation of ERK (extracellular signal-regulated kinases), AKT, and p38 MAPK (mitogen-activated protein kinases) during TGFβ2-mediated EMT. This EMT response was strongly suppressed by inhibition of AKT and p38 MAPK phosphorylation. The AKT inhibitor LY294002 also suppressed TGFβ2-induced up-regulation of nuclear Snail and reduced phosphorylation of GSK3β. Inhibition of Snail expression suppressed TGFβ2-mediated α-SMA expression. αB-Crystallin was up-regulated in an AKT-dependent manner during AGE-BME/TGFβ2-mediated EMT in LECs. The absence of αB-crystallin in LECs suppressed TGFβ2-induced GSK3β phosphorylation, resulting in lower Snail levels. Taken together, these results show that ECM-AGEs enhance the TGFβ2-mediated EMT response through activation of the AKT/Snail pathway, in which αB-crystallin plays an important role as a linker between the TGFβ2 and AGE-mediated signaling pathways."	"Possible role of ginsenoside Rb1 in skin wound healing via regulating senescent skin dermal fibroblast. Cellular senescence suppresses cancer by inducing irreversible cell growth arrest. Nevertheless, senescent cells is proposed as causal link with aging and aging-related pathologies. The physiological beneficial functions of senescent cells are still of paucity. Here we show that senescent human dermal fibroblast accelerates keratinocytes scratch wound healing and stimulates differentiation of fibroblast. Using oxidative stress (100 μM H2O2 exposure for 1 h) induction, we successfully triggered fibroblast senescence and developed senescence associated secretory phenotype (SASP). The induction of SASP was regulated by p38MAPK/MSK2/NF-κB pathway. Interestingly, inhibition of p38MAPK activation only partially suppressed SASP. However, SASP was significantly inhibited by SB747651A, a specific MSK inhibitor. Additionally, we demonstrate that SASP stimulates migration of keratinocytes and myofibroblast transition of fibroblast, through fold-increased secretion of growth factors, platelet-derived growth factor AA (PDGF-AA) and AB (PDGF-AB), transforming growth factor beta 1 (TGF-β1) and beta 2 (TGF-β2), vascular endothelial growth factor A (VEGF-A) and D (VEGF-D), vascular endothelial growth factor receptor 2 (VEGFR2) and 3 (VEGFR3). Importantly, we also confirmed ginsenoside Rb1 promoted SASP-mediated healing process via p38MAPK/MSK2/NF-κB pathway. The results pointed to senescent fibroblast as a potential mechanism of wound healing control in human skin. Further, it provided a candidate targeted for wound therapy."	"The effects of cobalt and chromium ions on transforming growth factor-beta patterns and mineralization in human osteoblast-like MG63 and SaOs-2 cells. Bone homeostasis, the balance of bone formation and resorption is affected by numerous influences, such as, hormones, inflammation, mechanical load, and external stimuli. The transforming growth factor-beta (TGF-β), which exists in three isoforms in humans, is a major factor in the maintenance of this balance by regulating osteoblast and osteoclast maturation, development, and function. In artificial joint replacements, release of particles or ions from arthroplasties may exert local effects on the periprosthetic tissue and modulate the expression of bone specific genes and functions. Therefore, the influence of cobalt (II) and chromium (III) ions on the expression levels of the three TGF-β isoforms in human osteosarcoma cell lines MG63 and SaOs-2 was analyzed and the impact on mineralization was studied. The osteosarcoma cell lines expressed all three TGF-β isoforms, with TGF-β1 being the most abundant isoform. A dose dependent reduction of all TGF-β isoforms by Co<sup>2+</sup> ions was observed, the strongest effect was found on TGF-β2. The effect was lesser pronounced in SaOs-2 cells. However, the Cr<sup>3+</sup> ions had no significant effect on the expression of all TGF-β isoforms. In contrast, Co<sup>2+</sup> ions in a concentration range of 50-250 µM did not impair the mineralization, but Cr<sup>3+</sup> exerted a strong inhibitory effect on the mineralization in a dose dependent fashion. These data suggest that the influence of cobalt ions on bone homeostasis may in part result from the inhibitory effect on the transcription of the bone regulating cytokines TGF-β1-3 whereas the chromium ions affect the process of mineralization. © 2018 Wiley Periodicals, Inc. J Biomed Mater Res Part A: 106A: 2105-2115, 2018."	"β2 spectrin-mediated differentiation repressed the properties of liver cancer stem cells through β-catenin. βII-Spectrin (β2SP), a Smad3/4 adaptor protein during transforming growth factor (TGF) β/Smad signal pathway, plays a critical role in suppressing hepatocarcinogenesis. Dedifferentiation is a distinctive feature of cancer progression. Therefore, we investigated whether the disruption of β2SP contributed to tumorigenesis of hepatocellular carcinoma (HCC) through the dedifferentiation. Down-regulation of β2SP in hepatocytes was observed in cirrhotic liver and HCC. The level of β2SP expression was closely associated with the differentiation status of hepatocytes in rat model of hepatocarcinogenesis and clinical specimens. Transgenic expression of β2SP in HCC cells promoted the differentiation of HCC cells and suppressed the growth of HCC cells in vitro. Efficient transduction of β2SP into liver CSCs resulted in a reduction in colony formation ability, spheroid formation capacity, invasive activity, chemo-resistance properties, tumorigenicity in vivo. In addition, β2 spectrin exerted its effect through β catenin in liver CSCs. In conclusion, β2 spectrin repressed the properties of liver CSCs through inducing differentiation; thus, strategies to restore its levels and activities would be a novel strategy for HCC prevention and differentiation therapy."	"Activation, function and content of platelets in burn patients. Burn injury has severe impact on the physiologic homeostasis. Platelet counts show a distinct course post-burn injury, with a nadir at day 3 followed by a thrombocytotic period with at peak at day 15, with a gradual return to normal. So far, it is unknown how the functionality and activational status of platelets develop post burn. In this study, we investigated if the function, activation and growth factor content of platelets of burn patients are affected and how this evolves in time. Six burn patients with over 15% total burned surface area were followed during 1 month. Standard hematological and coagulation analyses, thromboelastography (TEG), platelet-function analyzer-100 (PFA), several platelet activation parameters (CD62P-CD63, AnnexinV) and growth factors (TGFb1, VEGF, PDGF-AB/BB, EGF, TGFb2, FGF-2, PDGF-AA) analyses were performed. TEG analyses showed procoagulant changes. PFA-100 analyses were nearly all within normal range. CD62P and CD63 and Annexin-V indicated no clear activation of platelets. Growth factor content followed the same course as the platelet count, reflecting a constant growth factor per platelet ratio. Concluding, platelets post burn-injury appears to be functional and not overly activated. However, burn patients seem to remain in a procoagulant state for an extensive period, which may impact their pathology."	"Heparin functionalization increases retention of TGF-β2 and GDF5 on biphasic silk fibroin scaffolds for tendon/ligament-to-bone tissue engineering. The tendon/ligament-to-bone transition (enthesis) is a highly specialized interphase tissue with structural gradients of extracellular matrix composition, collagen molecule alignment and mineralization. These structural features are essential for enthesis function, but are often not regenerated after injury. Tissue engineering is a promising strategy for enthesis repair. Engineering of complex tissue interphases such as the enthesis is likely to require a combination of biophysical, biological and chemical cues to achieve functional tissue regeneration. In this study, we cultured human primary adipose-derived mesenchymal stem cells (AdMCs) on biphasic silk fibroin scaffolds with integrated anisotropic (tendon/ligament-like) and isotropic (bone/cartilage like) pore alignment. We functionalized those scaffolds with heparin and explored their ability to deliver transforming growth factor β2 (TGF-β2) and growth/differentiation factor 5 (GDF5). Heparin functionalization increased the amount of TGF-β2 and GDF5 remaining attached to the scaffold matrix and resulted in biological effects at low growth factor doses. We analyzed the combined impact of pore alignment and growth factors on AdMSCs. TGF-β2 and pore anisotropy synergistically increased the expression of tendon/ligament markers and collagen I protein content. In addition, the combined delivery of TGF-β2 and GDF5 enhanced the expression of cartilage markers and collagen II protein content on substrates with isotropic porosity, whereas enthesis markers were enhanced in areas of mixed anisotropic/isotropic porosity. Altogether, the data obtained in this study improves current understanding on the combined effects of biological and structural cues on stem cell fate and presents a promising strategy for tendon/ligament-to-bone regeneration. Regeneration of the tendon/ligament-to-bone interphase (enthesis) is of significance in the repair of ruptured tendons/ligaments to bone to improve implant integration and clinical outcome. This study proposes a novel approach for enthesis regeneration based on a biomimetic and integrated tendon/ligament-to-bone construct, stem cells and heparin-based delivery of growth factors. We show that heparin can keep growth factors local and biologically active at low doses, which is critical to avoid supraphysiological doses and associated side effects. In addition, we identify synergistic effects of biological (growth factors) and structural (pore alignment) cues on stem cells. These results improve current understanding on the combined impact of biological and structural cues on the multi-lineage differentiation capacity of stem cells for regenerating complex tissue interphases."	"Fatal thoracic aortic aneurysm and dissection in a large family with a novel MYLK gene mutation: delineation of the clinical phenotype. Thoracic and abdominal aortic aneurysms and dissection often develop in hypertensive elderly patients. At higher risk are smokers and those who have a family history of aortic aneurysms. In most affected families, the aortic aneurysms and dissection is inherited in an autosomal dominant manner with decreased penetrance and variable expressivity. Mutations at two chromosomal loci, TAA1 at 11q23 and the TAA2 at 5q13-14, and eight genes, MYLK, MYH11, TGFBR2, TGFBR1, ACTA2, SMAD3, TGFB2, and MAT2A, have been identified as being responsible for the disease in 23% of affected families. Herein, we inform on the clinical, genetic and pathological characteristics of nine living and deceased members of a large consanguineous Arab family with thoracic aortic aneurysm and dissection who carry a missense mutation c.4471G &gt; T (Ala1491Ser), in exon 27 of MYLK gene. We show a reduced kinase activity of the Ala1491Ser protein compared to wildtype protein. This mutation is expressed as aortic aneurysm and dissection in one of two distinct phenotypes. A severe fatal and early onset symptom in homozygous or mild late onset in heterozygous genotypes. We found that MYLK gene Ala1491Ser mutation affect the kinase activity and clinically, it presents with vascular aneurysms and dissection. We describe a distinct genotype phenotype correlation where; heterozygous patients have mild late onset and incomplete penetrance disease compared with the early onset severe and generally fatal outcome in homozygous patients."	"The dynamics of TGF-β in dental pulp, odontoblasts and dentin. Transforming growth factor-beta (TGF-β) is critical for cell proliferation and differentiation in dental pulp. Here, we show the dynamic mechanisms of TGF-β in porcine dental pulp, odontoblasts and dentin. The mRNA of latent TGF-β1 and TGF-β3 is predominantly expressed in odontoblasts, whereas the mRNA expression level of latent TGF-β2 is high in dental pulp. TGF-β1 is a major isoform of TGF-β, and latent TGF-β1, synthesized in dental pulp, is primarily activated by matrix metalloproteinase 11 (MMP11). Activated TGF-β1 enhances the mRNA expression levels of MMP20 and full-length dentin sialophosphoprotein (DSPP) in dental pulp cells, coinciding with the induction of odontoblast differentiation. Latent TGF-β1 synthesized in odontoblasts is primarily activated by MMP2 and MMP20 in both odontoblasts and dentin. The activity level of TGF-β1 was reduced in the dentin of MMP20 null mice, although the amount of latent TGF-β1 expression did not change between wild-type and MMP20 null mice. TGF-β1 activity was reduced with the degradation of DSPP-derived proteins that occurs with ageing. We propose that to exert its multiple biological functions, TGF-β1 is involved in a complicated dynamic interaction with matrix metalloproteinases (MMPs) and/or DSPP-derived proteins present in dental pulp, odontoblasts and dentin."	"Knockout of tissue transglutaminase ameliorates TGFβ2-induced ocular hypertension: A novel therapeutic target for glaucoma? Glaucoma is a vision threatening optic neuropathy that affects millions of people worldwide. In primary open angle, increased intraocular pressure (IOP) is the main risk factor for the development of this disease. Studies investigating the causes and mechanisms of increased IOP show fibrotic changes in the trabecular meshwork (TM) that are different from those of age-matched controls. Tissue transglutaminase (TGM2), an extracellular matrix (ECM) crosslinking enzyme, covalently crosslinks ECM proteins and causes excessive ECM protein deposition in the TM that could cause increased IOP. Previous literature reports increased expression of TGM2 in glaucomatous eyes compared to controls. We recently have shown that overexpression of TGM2 causes increased ECM crosslinking in the TM, increases IOP, and decreases aqueous humor (AH) outflow facility in mouse eyes. Therefore, we wanted to study the effect of TGM2 knockout (KO) on IOP in TGM2 floxed mice. Ad5.Cre transduction caused partial KO of TGM2, which decreased TGM2 expression in the TM region of mouse eyes. TGM2 KO significantly decreased IOP by itself and also in TGFβ2 induced ocular hypertensive mice. TGM2 KO also restores the outflow facility in TGFβ2 transduced eyes. Overall, TGM2 KO rescued the TGFβ2-induced ocular hypertensive phenotype. Thus, TGM2 may offer potential as a new therapeutic target for glaucoma."	"Emodin inhibits TGF-β2 by activating the FOXD3/miR‑199a axis in ovarian cancer cells in vitro. Ovarian cancer is a highly metastatic malignancy and a leading cause of cancer-related death in postmenopausal women. Emodin is a natural anthraquinone isolated from several traditional Chinese medicines including Rhubarb and Polygonum cuspidatum. Recently, emodin was demonstrated to reduce the growth of human ovarian carcinoma cells. However, the mechanism remains unclear. In the present study, we identified that transforming growth factor (TGF)-β2 was significantly affected by emodin treatment in A2780 cells using microarray analysis. MicroRNA (miR)-199a was predicted as a potential miRNA targeting TGF-β2 by in silico prediction using TargetScan. The mRNA and protein levels of TGF-β2 were both significantly reduced by miR-199a. Spearman's correlation analysis revealed a significant correlation between the expression level of miR-199a and TGF-β2 in human ovarian cancer specimens. Silencing of miR-199a with miR-199a inhibitor significantly restored the reduction in TGF-β2 expression induced by emodin. Additionally, cell viability and colony formation of A2780 cells were markedly inhibited by emodin treatment, which was mediated by miR-199a. We analyzed the primary mature miR-199a-1 and miR-199a-2 transcripts in A2780 cells treated with emodin or dimethyl sulfoxide (DMSO) and found that only pri-miR-199a-1 was regulated by emodin. A conserved binding site of Forkhead box D3 (FOXD3) was identified within pri-miR‑199a-1. We further revealed that miR-199a expression was significantly regulated by FOXD3. Taken together, the present study demonstrated that emodin may directly promote FOXD3 expression and sequentially activates miR-199a, which in turn suppresses the expression of TGF-β2 to reduce cell viability and colony formation of A2780 cells."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"TGF-β Signaling Accelerates Senescence of Human Bone-Derived CD271 and SSEA-4 Double-Positive Mesenchymal Stromal Cells. It is generally thought that the proliferative capacity and differentiation potential of somatic stem cells, including mesenchymal stromal/stem cells (MSCs) and hematopoietic stem cells, decline with age. We investigated the effects of aging on human bone-derived MSCs expressing CD271 and SSEA-4 (double-positive MSCs [DPMSCs]). The percentages of DPMSCs in bone tissue decreased significantly with age. The DPMSCs from elderly patients (old DPMSCs) showed cellular senescence, which was evidenced by low growth potential, high senescence-associated β-galactosidase activity, and elevated p16 and p21 CDK inhibitor levels. Moreover, old DPMSCs showed weak osteogenic differentiation potential and less hematopoiesis-supporting activity in comparison with young DPMSCs. Interestingly, the addition of transforming growth factor β2 (TGF-β2) induced cellular senescence in young DPMSCs. With the exception of the adipogenic differentiation potential, all of the aging phenomena observed in old DPMSCs were reversed by the addition of anti-TGF-β antibodies. These results suggest that, in part, old DPMSCs accelerate cellular senescence through TGF-β signaling."	"TGF-β2-induced EMT is dampened by inhibition of autophagy and TNF-α treatment. Hepatocellular carcinoma (HCC) typically develops in a chronic inflammatory setting causal to release of a plethora of growth factors and cytokines. However, the molecular effect of these cytokines on HCC progression is poorly understood. In this study, we exposed HCC cells to TGF-β2 (Transforming Growth Factor-β2), which resulted in a significant elevation of EMT (Epithelial to Mesenchymal Transition) like features. Molecular analysis of EMT markers showed an increase at both RNA and protein levels upon TGF-β2 administration along with up-regulation of TGF-β-induced Smad signaling. Induction of EMT was associated with a simultaneous increase in reactive oxygen species (ROS) and cytostasis of TGF-β2-treated cells. Importantly, quenching of ROS resulted in a significant promotion of TGF-β2-induced EMT. Furthermore, cells treated with TGF-β2 also showed an enhanced autophagic flux. Interestingly, inhibition of autophagy by chloroquine-di-phosphate (CQDP) or siRNA-mediated ablation of ATG5 drastically inhibited TGF-β2-induced EMT. Autophagy inhibition significantly increased ROS levels promoting apoptosis. It was further observed that pro-inflammatory cytokine like, TNF-α (Tumor Necrosis Factor-α) can antagonize TGF-β2-induced response by down-regulating autophagy, increasing ROS levels and thus inhibiting EMT in HCC cells. This inhibitory effect of TNF-α is serum-independent. Transcriptomic analysis through RNA sequencing was further performed which validated that TGF-β2-induced autophagic genes are inhibited by TNF-α treatment suppressing EMT. Our study suggests that autophagy plays a pro-metastatic role facilitating EMT by regulating ROS levels in HCC cells and TNF-α can suppress EMT by inhibiting autophagy. We provide unique mechanistic insights into the role of TGF-β2 in HCC cells, along with appropriate cues to effectively control the disease."	"The role of zinc plus octenidine in the regulation of gene expression: an in vitro study. Zinc was known in ancient times, and is diffused in the environment. The potential benefits offered by zinc supplementary therapy have been demonstrated in numerous clinical trials using oral or topical zinc products. The benefit of zinc can be in principle increased through association with other actives. The aim of this study is to evaluate the effect on primary human gingival fibroblast cell of a new formulation containing zinc and octenidine cations. Human gingival fibroblast cells were obtained from three healthy patients (14-year-old man, 15-year-old woman and 20-year-old man) during extraction of teeth. The gene expression of 14 genes (ELANE, FN1, FBN, ITGA1, HAS1, ELN, DSP, ITGB1, HYAL1,TGFB1, TGFB2, TGFB3, TGFBR1 and TGFBR2) was investigated in HGF cell culture treated with 80μm of Octenidine, 1000μm of Zinc, 80μm Octenidine + Zinc solution and the medium alone at 30 min. Prestoblue™ data showed that as the active concentration increases (Octenidine, Zinc and Octenidine + Zinc) the percentage of cell vitality compared to that of untreated cells decrease. In this study, no statistically significant gene expression was observed between cells, treated with difference substances, and control cells. Our results points out that zinc plus octenidine shows a positive potential in periodontal disease treatment."	"Decreased MCP-1/CCR2 axis-mediated chemotactic effect of conjunctival fibroblasts after transdifferentiation into myofibroblasts. The purpose of this study is to investigate the change in chemotactic effects of human conjunctival fibroblasts (HConFs) after transdifferentiation into myofibroblasts, and to explore related molecular mechanisms. HConFs were treated with 5 ng/mL transforming growth factor (TGF)-β2 for 48 h to induce transdifferentiation into myofibroblasts. The cytokine concentrations in the conditioned media of HConFs were measured by multiplex bead-based immunoassays. The Boyden chamber assay was used to assess the chemotactic effects using the monocyte cell line, THP-1 cells. The concentration of monocyte chemoattractant protein (MCP)-1 in the conditioned media was decreased after transdifferentiation into myofibroblasts (P &lt; 0.001). The conditioned media of HConFs exerted a chemotactic effect on THP-1 cells, but this effect decreased after transdifferentiation into myofibroblasts (P = 0.032). The number of migrated THP-1 cells decreased significantly upon treatment with neutralizing anti-MCP-1 antibodies (P = 0.006) and tended to decrease upon treatment with C-C chemokine receptor (CCR) 2 antagonist. The chemotactic effect of HConFs mediated by the MCP-1/CCR2 axis was decreased after transdifferentiation into myofibroblasts."	"Crim1 is required for maintenance of the ocular lens epithelium. The development and growth of the vertebrate ocular lens is dependent on the regulated proliferation of an anterior monolayer of epithelial cells, and their subsequent differentiation into elongate fiber cells. The growth factor rich ocular media that bathes the lens mediates these cellular processes, and their respective intracellular signaling pathways are in turn regulated to ensure that the proper lens architecture is maintained. Recent studies have proposed that Cysteine Rich Motor Neuron 1 (Crim1), a transmembrane protein involved in organogenesis of many tissues, might influence cell adhesion, polarity and proliferation in the lens by regulating integrin-signaling. Here, we characterise the lens and eyes of the Crim1<sup>KST264</sup> mutant mice, and show that the loss of Crim1 function in the ocular tissues results in inappropriate differentiation of the lens epithelium into fiber cells. Furthermore, restoration of Crim1 levels in just the lens tissue of Crim1<sup>KST264</sup> mice is sufficient to ameliorate most of the dysgenesis observed in the mutant animals. Based on our findings, we propose that tight regulation of Crim1 activity is required for maintenance of the lens epithelium, and its depletion leads to ectopic differentiation into fiber cells, dramatically altering lens structure and ultimately leading to microphthalmia and aphakia."	"Obesity and High-Fat Diet Induce Distinct Changes in Placental Gene Expression and Pregnancy Outcome. Obese women are at high risk of pregnancy complications, including preeclampsia, miscarriage, preterm birth, stillbirth, and neonatal death. In the current study, we aimed to determine the effects of obesity on pregnancy outcome and placental gene expression in preclinical mouse models of genetic and nutritional obesity. The leptin receptor (LepR) null-reactivatable (LepRloxTB), LepR-deficient (Leprdb/+), and high-fat diet (HFD)-fed mice were assessed for fertility, pregnancy outcome, placental morphology, and placental transcriptome using standard quantitative polymerase chain reaction (qPCR) and qPCR arrays. The restoration of fertility of LepRloxTB was performed by stereotaxic delivery of adeno-associated virus-Cre into the hypothalamic ventral premammillary nucleus. Fertile LepRloxTB females were morbidly obese, whereas the wild-type mice-fed HFD showed only a mild increase in body weight. Approximately 80% of the LepRloxTB females had embryo resorptions (∼40% of the embryos). In HFD mice, the number of resorptions was not different from controls fed a regular diet. Placentas of resorbed embryos from obese mice displayed necrosis and inflammatory infiltrate in the labyrinth and changes in the expression of genes associated with angiogenesis and inflammation (e.g., Vegfa, Hif1a, Nfkbia, Tlr3, Tlr4). In contrast, placentas from embryos of females on HFD showed changes in a different set of genes, mostly associated with cellular growth and response to stress (e.g., Plg, Ang, Igf1, Igfbp1, Fgf2, Tgfb2, Serpinf1). Sexual dimorphism in gene expression was only apparent in placentas from obese LepRloxTB mice. Our findings indicate that an obese environment and HFD have distinct effects on pregnancy outcome and the placental transcriptome."	"microRNA-193a stimulates pancreatic cancer cell repopulation and metastasis through modulating TGF-β2/TGF-βRIII signalings. Pancreatic cancer characterizes high recurrence and poor prognosis. In clinical practice, radiotherapy is widely used for pancreatic cancer treatment. However, the outcome remains undesirable due to tumor repopulation and following recurrence and metastasis after radiation. So, it is highly needed to explore the underlying molecular mechanisms and accordingly develop therapeutic strategies. Our previous studies revealed that dying cells from chemoradiation could stimulate repopulation of surviving pancreatic cancer cells. However, we still knew little how dying cells provoke pancreatic cancer cell repopulation. We herein would explore the significance of TGF-β2 changes and investigate the modulation of microRNA-193a (miR-193a), and identify their contributions to pancreatic cancer repopulation and metastasis. In vitro and in vivo repopulation models were established to mimic the biological processes of pancreatic cancer after radiation. Western blot, real-time PCR and dual-luciferase reporter assays were accordingly used to detect miR-193a and TGF-β2/TGF-βRIII signalings at the level of molecular, cellular and experimental animal model, respectively. Flow cytometry analysis, wound healing and transwell assay, vascular endothelial cell penetration experiment, and bioluminescence imaging were employed to assessthe biological behaviors of pancreatic cancer after different treatments. Patient-derived tumor xenograft (PDX) mice models were established to evaluate the therapeutic potential of miR-193a antagonist on pancreatic cancer repopulation and metastasis after radiation. miR-193a was highly expressed in the irradiated pancreatic cancer dying cells, accordingly elevated the level of miR-193a in surviving cells, and further promoted pancreatic cancer repopulation and metastasis in vitro and in vivo. miR-193a accelerated pancreatic cancer cell cycle and stimulated cell proliferation and repopulation through inhibiting TGF-β2/TGF-βRIII/SMADs/E2F6/c-Myc signaling, and even destroyed normal intercellular junctions and promoted metastasis via repressing TGF-β2/TGF-βRIII/ARHGEF15/ABL2 pathway. Knockdown of miR-193a or restoration of TGF-β2/TGF-βRIII signaling in pancreatic cancer cells was found to block pancreatic cancer repopulation and metastasis after radiation. In PDX models, the treatment in combination with miR-193a antagonist and radiation was found to dramatically inhibit pancreatic cancer cell repopulation and metastasis, and further improved the survival after radiation. Our findings demonstrated that miR-193a stimulated pancreatic cancer cell repopulation and metastasis through modulating TGF-β2/TGF-βRIII signalings, and miR-193a might be a potential therapeutic target for pancreatic cancer repopulation and metastasis."	"Functional Implications of Cross-Linked Actin Networks in Trabecular Meshwork Cells. The Trabecular meshwork (TM) is the tissue responsible for outflow resistance and therefore intraocular pressure. TM cells contain a contractile apparatus that is composed of actin stress fibres which run parallel to the axis of the cell and are responsible for facilitating contraction. Cross-Linked Actin Networks (CLANs) are polygonal arrangements of actin that form a geodesic network found predominantly in TM cells both in situ and in vitro. The aim of this work is to determine the functional significance of CLANs in TM cells and to assess the effect of mechanical stretch stimulation on the induction (or not) of CLANs. We used collagen gel contraction models to demonstrate functional impairment of cells when induced to express CLANs in situ. Cyclic mechanical stretch was used to stimulate cells and measure CLANs Results: CLANs inhibited contraction and cyclic mechanical stretch induced CLANs. Furthermore, we also demonstrated that using shape alone we could predict the appearance of CLANs using a simple light microscopy technique. Taken together we have now shown, for the first time, a functional deficit In TM cells with CLANs Furthermore that shape alone can predict the appearance of CLAN containing cells. CLANs can now be linked to a functional effect and may underlie the appearance of CLANs with the pathology of primary open angle glaucoma (POAG)."	"Berberine Suppresses Cell Motility Through Downregulation of TGF-β1 in Triple Negative Breast Cancer Cells. Transforming growth factor-beta proteins (TGF-βs) are multifunctional growth factors and powerful modulators of the epithelial-mesenchymal transition (EMT) in a variety of cancer types including breast and lung cancer cells. Here, we demonstrated the inhibitory effect of berberine (BBR) on tumor growth and metastasis of triple negative breast cancer (TNBC) cells via suppression of TGF-β1 expression. The levels of mRNA expression were analyzed by real-time PCR. The levels of MMP-2, MMP-9 and TGF-β1 protein expression were analyzed by zymography and confocal microscopy, respectively. Cell migration was analyzed by wound healing assay. Tumorigenicity of TNBC cells such as tumor growth and metastasis was analyzed using xenograft models. In a clinical data set, aberrant TGF-β1 expression was associated with poor prognosis of breast cancer patients. Our in vitro results using TNBC cells showed that the expression levels of matrix metalloproteinase (MMP)-2 and MMP-9 and the capacity for cell migration were increased by TGF-β1 treatment. In contrast, basal levels of MMP-2 and MMP-9 were suppressed by a specific TGF-β receptor I inhibitor, SB431542. In addition, TGF-β1-induced MMP-2 and MMP-9 expression and cell migration were decreased by SB431542. Interestingly, we showed for the first time that BBR decreased the level of TGF-β1, but not TGF-β2, in TNBC cells. Furthermore, BBR significantly decreased the level of MMP-2 expression as well as the capacity for cell migration in TNBC cells. Finally, we examined the effect of BBR on in vivo tumor growth and lung metastasis in MDA-MB231 and 4T1 breast cancer xenograft models and showed that both were significantly decreased following BBR treatment. BBR suppresses tumorigenicity of TNBC cells through inhibition of TGF-β1 expression. Therefore, we demonstrate that BBR could be a promising drug for treatment of TNBC."	"Differing House Finch Cytokine Expression Responses to Original and Evolved Isolates of Mycoplasma gallisepticum. The recent emergence of the poultry bacterial pathogen Mycoplasma gallisepticum (MG) in free-living house finches (Haemorhous mexicanus), which causes mycoplasmal conjunctivitis in this passerine bird species, resulted in a rapid coevolutionary arms-race between MG and its novel avian host. Despite extensive research on the ecological and evolutionary dynamics of this host-pathogen system over the past two decades, the immunological responses of house finches to MG infection remain poorly understood. We developed seven new probe-based one-step quantitative reverse transcription polymerase chain reaction assays to investigate mRNA expression of house finch cytokine genes (IL1B, IL6, IL10, IL18, TGFB2, TNFSF15, and CXCLi2, syn. IL8L). These assays were then used to describe cytokine transcription profiles in a panel of 15 house finch tissues collected at three distinct time points during MG infection. Based on initial screening that indicated strong pro-inflammatory cytokine expression during MG infection at the periorbital sites in particular, we selected two key house finch tissues for further characterization: the nictitating membrane, i.e., the internal eyelid in direct contact with MG, and the Harderian gland, the secondary lymphoid tissue responsible for regulation of periorbital immunity. We characterized cytokine responses in these two tissues for 60 house finches experimentally inoculated either with media alone (sham) or one of two MG isolates: the earliest known pathogen isolate from house finches (VA1994) or an evolutionarily more derived isolate collected in 2006 (NC2006), which is known to be more virulent. We show that the more derived and virulent isolate NC2006, relative to VA1994, triggers stronger local inflammatory cytokine signaling, with peak cytokine expression generally occurring 3-6 days following MG inoculation. We also found that the extent of pro-inflammatory interleukin 1 beta signaling was correlated with conjunctival MG loads and the extent of clinical signs of conjunctivitis, the main pathological effect of MG in house finches. These results suggest that the pathogenicity caused by MG infection in house finches is largely mediated by host pro-inflammatory immune responses, with important implications for the dynamics of host-pathogen coevolution."	"Aberrantly expressed long noncoding RNAs in hypertrophic scar fibroblasts in vitro: A microarray study. A hypertrophic scar is the result of abnormal repair of the body after trauma. Histopathologically, it is mostly the result of the excessive proliferation of fibroblasts and the accumulation of extracellular matrix. Accumulating evidence has demonstrated that long non‑coding RNAs (lncRNAs) have a critical role in the regulation of gene expression and in the pathogenesis of diseases. However, the roles of lncRNAs in hypertrophic scars have remained elusive. The present study investigated the profiles of differentially expressed lncRNAs between fibroblasts derived from a hypertrophic scar and normal skin, and explored the possible mechanisms underlying the development of hypertrophic scars. Microarray data indicated that 6,104 lncRNAs and 2,952 mRNAs were differentially expressed. A set of differentially expressed transcripts as confirmed by reverse transcription‑quantitative polymerase chain reaction. Gene Ontology and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analyses were performed to determine the principal functions of the significantly deregulated genes. Furthermore, associated expression networks, including subgroup analysis, competing endogenous RNAs (ceRNAs) and coding‑noncoding co‑expression networks were constructed using bioinformatics methods. The homology between differentially expressed lncRNAs and mRNAs was assessed and two exon lncRNA were selected to explore their regulatory mechanisms. The ceRNA network inferred that NR_125715 acted as a competing endogenous RNA, bound to microRNA (miR)‑141‑3p, miR‑200a‑3p and miR‑29 to regulate the expression of the miRs' targets, including transforming growth factor β2 (TGFB2). Similarly, NR_046402 acted as a competing endogenous RNA, which bound to miR‑133a‑3p.1 and miR‑4469 to then regulate the expression of the miRs' targets, including DNA polymerase δ1, catalytic subunit (POLD1). In addition, co‑expression analysis indicated that the expression of lncRNAs NR_125715 and NR_046402 was correlated with that of TGFB2 and POLD1 mRNA. The identification of these differentially expressed lncRNAs in the hypertrophic scar‑derived fibroblasts in the present study, may provide novel insight into the functional interactions of lncRNA, miRNA and mRNA, and lead to novel theories for the pathogenesis and treatment of hypertrophic scars."	"A mutation update on the LDS-associated genes TGFB2/3 and SMAD2/3. The Loeys-Dietz syndrome (LDS) is a connective tissue disorder affecting the cardiovascular, skeletal, and ocular system. Most typically, LDS patients present with aortic aneurysms and arterial tortuosity, hypertelorism, and bifid/broad uvula or cleft palate. Initially, mutations in transforming growth factor-β (TGF-β) receptors (TGFBR1 and TGFBR2) were described to cause LDS, hereby leading to impaired TGF-β signaling. More recently, TGF-β ligands, TGFB2 and TGFB3, as well as intracellular downstream effectors of the TGF-β pathway, SMAD2 and SMAD3, were shown to be involved in LDS. This emphasizes the role of disturbed TGF-β signaling in LDS pathogenesis. Since most literature so far has focused on TGFBR1/2, we provide a comprehensive review on the known and some novel TGFB2/3 and SMAD2/3 mutations. For TGFB2 and SMAD3, the clinical manifestations, both of the patients previously described in the literature and our newly reported patients, are summarized in detail. This clearly indicates that LDS concerns a disorder with a broad phenotypical spectrum that is still emerging as more patients will be identified. All mutations described here are present in the corresponding Leiden Open Variant Database."	"Decreased TGFBR3/betaglycan expression enhances the metastatic abilities of renal cell carcinoma cells through TGF-β-dependent and -independent mechanisms. TGF-β regulates both the tumor-forming and migratory abilities of various types of cancer cells. However, it is unclear how the loss of TGF-β signaling components affects these abilities in clear-cell renal cell carcinoma (ccRCC). In this study, we investigated the role of TGFBR3 (TGF-β type III receptor, also known as betaglycan) in ccRCC. Database analysis revealed decreased expression of TGFBR3 in ccRCC tissues, which correlated with poor prognosis in patients. Orthotopic inoculation experiments using immunocompromised mice indicated that low TGFBR3 expression in ccRCC cells enhanced primary tumor formation and lung metastasis. In the presence of TGFBR3, TGF-β2 decreased the aldehyde dehydrogenase (ALDH)-positive ccRCC cell population, in which renal cancer-initiating cells are enriched. Loss of TGFBR3 also enhanced cell migration in cell culture and induced expression of several mesenchymal markers in a TGF-β-independent manner. Increased lamellipodium formation by FAK-PI3K signaling was observed with TGFBR3 downregulation, and this contributed to TGF-β-independent cell migration in ccRCC cells. Taken together, our findings reveal that loss of TGFBR3 endows ccRCC cells with multiple metastatic abilities through TGF-β-dependent and independent pathways."	"Three-generation family with novel contiguous gene deletion on chromosome 2p22 associated with thoracic aortic aneurysm syndrome. Latent transforming growth factor binding proteins (LTBP) are a family of extracellular matrix glycoproteins that play an important role in the regulation of transforming growth factor beta (TGF-ß) activation. Dysregulation of the TGF-ß pathway has been implicated in the pathogenesis of inherited disorders predisposing to thoracic aortic aneurysms syndromes (TAAS) including Marfan syndrome (MFS; FBN1) and Loeys-Dietz syndrome (LDS; TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3). While these syndromes have distinct clinical criteria, they share clinical features including aortic root dilation and musculoskeletal findings. LTBP1 is a component of the TGF-ß pathway that binds to fibrillin-1 in the extracellular matrix rendering TGF-ß inactive. We describe a three-generation family case series with a heterozygous ∼5.1 Mb novel contiguous gene deletion of chromosome 2p22.3-p22.2 involving 11 genes, including LTBP1. The deletion has been identified in the proband, father and grandfather, who all have a phenotype consistent with a TAAS. Findings include thoracic aortic dilation, ptosis, malar hypoplasia, high arched palate, retrognathia, pes planus, hindfoot deformity, obstructive sleep apnea, and low truncal tone during childhood with joint laxity that progressed to reduced joint mobility over time. While the three affected individuals did not meet criteria for either MFS or LDS, they shared features of both. Although the deletion includes 11 genes, given the relationship between LTBP1, TGF-ß, and fibrillin-1, LTBP1 stands out as one of the possible candidate genes for the clinical syndrome observed in this family. More studies are necessary to evaluate the potential role of LTBP1 in the pathophysiology of TAAS."	"Differential expression of TGFβ isoforms in breast cancer highlights different roles during breast cancer progression. While TGFβ plays a critical role in tumor formation and progression, the role and contribution of its three different isoforms remain unclear. In this study, we aimed at elucidating the prognostic value of the TGFβ isoforms and assessed their expression levels in breast cancer patients at different stages of the disease. We found higher levels of TGFβ1 and TGFβ3 in cancer patients compared to normal tissues, with no significant changes in TGFβ2 expression. Similarly, TGFβ1 and TGFβ3, but not TGFβ2, showed higher expression levels in advanced lymph node-positive and metastatic tumors, suggesting different roles for the different isoforms in tumor progression and the metastatic process, while in the least aggressive molecular subtype (luminal A), expression of the three TGFβ isoforms significantly correlated with expression of both TGFβ receptors, such correlation only occurred between TGFβ1 and TGFβ3 and the TGFβ type II receptor (TβRII) in the highly aggressive basal-like subtype. Interestingly, a distinct and somehow opposite pattern was observed in HER-2 tumors, only showing significant association pattern between TGFβ2 and the TGFβ type I receptor (TβRI). Finally, the three TGFβ isoforms showed distinct association patterns with patient outcome depending on the different molecular subtype, highlighting context-dependent, differential prognostic values."	"Phase I Trial of M7824 (MSB0011359C), a Bifunctional Fusion Protein Targeting PD-L1 and TGFβ, in Advanced Solid Tumors. Purpose: M7824 (MSB0011359C) is an innovative first-in-class bifunctional fusion protein composed of a mAb against programmed death ligand 1 (PD-L1) fused to a TGFβ &quot;trap.&quot;Experimental Design: In the 3+3 dose-escalation component of this phase I study (NCT02517398), eligible patients with advanced solid tumors received M7824 at 1, 3, 10, or 20 mg/kg once every 2 weeks until confirmed progression, unacceptable toxicity, or trial withdrawal; in addition, a cohort received an initial 0.3 mg/kg dose to evaluate pharmacokinetics/pharmacodynamics, followed by 10 mg/kg dosing. The primary objective is to determine the safety and maximum tolerated dose (MTD); secondary objectives include pharmacokinetics, immunogenicity, and best overall response.Results: Nineteen heavily pretreated patients with ECOG 0-1 have received M7824. Grade ≥3 treatment-related adverse events occurred in four patients (skin infection secondary to localized bullous pemphigoid, asymptomatic lipase increase, colitis with associated anemia, and gastroparesis with hypokalemia). The MTD was not reached. M7824 saturated peripheral PD-L1 and sequestered any released plasma TGFβ1, -β2, and -β3 throughout the dosing period at &gt;1 mg/kg. There were signs of efficacy across all dose levels, including one ongoing confirmed complete response (cervical cancer), two durable confirmed partial responses (PR; pancreatic cancer; anal cancer), one near-PR (cervical cancer), and two cases of prolonged stable disease in patients with growing disease at study entry (pancreatic cancer; carcinoid).Conclusions: M7824 has a manageable safety profile in patients with heavily pretreated advanced solid tumors. Early signs of efficacy are encouraging, and multiple expansion cohorts are ongoing in a range of tumors. Clin Cancer Res; 24(6); 1287-95. ©2018 AACR."	"The improved growth performance and enhanced immune function by DL-methionyl-DL-methionine are associated with NF-κB and TOR signalling in intestine of juvenile grass carp (Ctenopharyngodon idella). The present study investigated the effects of dietary DL-methionyl-DL-methionine (Met-Met) on growth performance, intestinal immune function and the underlying signalling molecules in juvenile grass carp (Ctenopharyngodon idella). Fish were fed one DL-methionine (DL-Met) group (2.50 g/kg diet) and six graded levels of Met-Met groups (0, 0.79, 1.44, 1.84, 2.22 and 2.85 g/kg diet) for 10 weeks, and then challenged with Aeromonas hydrophila for 14 days. Results indicated that the optimal Met-Met supplementation: (1) increased fish growth performance, intestinal lysozyme (LZ) and acid phosphatase (ACP) activities, complement (C3 and C4) and immunoglobulin M (IgM) contents, up-regulated hepcidin, liver expressed antimicrobial peptide 2A (LEAP-2A), LEAP-2B, β-defensin-1 and Mucin2 mRNA levels; (2) down-regulated tumour necrosis factor α (TNF-α), interferon γ2 (IFN-γ2), interleukin 1β (IL-1β), IL-8 [only in the distal intestine (DI)], IL-12p35, IL-12p40 and IL-15 (not IL-17D) mRNA levels partially related to the down-regulation of IκB kinase β (IKKβ) and IKKγ (rather than IKKα), nuclear factor kappa B (NF-κB) p65 and c-Rel (rather than NF-κB p52) mRNA levels and the up-regulation of inhibitor of κBα (IκBα) mRNA levels; (3) up-regulated IL-4/13A, IL-4/13B, IL-6, IL-10, IL-11 and transforming growth factor (TGF)-β1 (not TGF-β2) mRNA levels partially associated with the target of rapamycin (TOR) signalling pathway [TOR/ribosomal protein S6 kinases 1 (S6K1), eIF4E-binding proteins (4E-BP)] in three intestinal segments of juvenile grass carp. These results suggest that Met-Met supplementation improves growth and intestinal immune function in fish. Furthermore, according to a positive effect, the optimal Met-Met supplementation was superior to the optimal DL-Met supplementation at improving the growth performance and enhancing the intestinal immune function in fish. Finally, based on percent weight gain (PWG), protection against enteritis morbidity and immune index (LZ activity), the optimal Met-Met supplementation for juvenile grass carp was estimated as 1.61, 1.64 and 1.68 g/kg diet, respectively, as the basal diet contains 8.03 g/kg total sulfur amino acids (TSAA) (4.26 g methionine/kg and 3.77 g cysteine/kg)."	"Synergistic effect of estradiol and testosterone protects against IL-6-inducedcardiomyocyte apoptosismediated by TGF-β1. Basic studies have verified that estradiol or androgen is influential on cardioprotection, howeversynergistic effects of estradiol and testosterone on heart failure (HF) are still unknown. This study aimed to evaluate the association among sex hormones and heart failure risk factors. 142 controls and 196 patients with HF were selected for this study. Serum levels of estradiol, testosterone, Brain natriuretic peptide precursor, transforming growth factor-β1, β2 and β3, lipid-lipoprotein profile, glucose, high-sensitivity C-reactive protein, serum creatinine, microglobulin, uric acid, alanine aminotransferase, aspartate aminotransferase were determined. H9c2 cardiac myocytes were used to investigate the effect of estradiol and testosterone on cardiomyocytes apoptotic involved in TGF-β1. Signaling pathway of caspase 3, Bax, Bcl-2, caspase 8 and TGF-β was determined during the IL-6 induced apoptotic. First, our results showed that compared with the control, the E2/T ratio decreased from 6.32±9.89 to 3.43±3.16 (P &lt;0.001) in female, from 4.00±8.14 to 7.80±11.35 (P&lt;0.001) in male with heart failure, and the level of TGF-β1 increased. What's more, these changes were favorably associated with the cardiac function classification. Univariate and multivariate logistic regression analysis showed that serum E2/T ratio, TGF-β1 and NT-proBNP were independent risk factor in heart failure patients. Second, we found that TGF-β1 was upregulated in rat H9c2 cardiomyocyte induced by IL-6, and TGF-β1 regulates the apoptosis of rat H9c2 cardiomyocyte. Furthermore, we verified the beneficial effects of the defined appropriate E2/T ratio on cardiomyocyte apoptotic mediated by TGF-β1. The balance of the serum E2/T ratio was broken in patients with heart failure, and an imbalanced E2/T ratio showed a strong association with heart failure risk factors, and E2 combined with T play a synergistic effect on anti-apoptosis involved in TGF-β1."	"Gene expression analysis to identify mechanisms underlying heart failure susceptibility in mice and humans. Genetic factors are known to modulate cardiac susceptibility to ventricular hypertrophy and failure. To determine how strain influences the transcriptional response to pressure overload-induced heart failure (HF) and which of these changes accurately reflect the human disease, we analyzed the myocardial transcriptional profile of mouse strains with high (C57BL/6J) and low (129S1/SvImJ) susceptibility for HF development, which we compared to that of human failing hearts. Following transverse aortic constriction (TAC), C57BL/6J mice developed overt HF while 129S1/SvImJ did not. Despite a milder aortic constriction, impairment of ejection fraction and ventricular remodeling (dilation, fibrosis) was more pronounced in C57BL/6J mice. Similarly, changes in myocardial gene expression were more robust in C57BL/6J (461 genes) compared to 129S1/SvImJ mice (71 genes). When comparing these patterns to human dilated cardiomyopathy (1344 genes), C57BL/6J mice tightly grouped to human hearts. Overlay and bioinformatic analysis of the transcriptional profiles of C57BL/6J mice and human failing hearts identified six co-regulated genes (POSTN, CTGF, FN1, LOX, NOX4, TGFB2) with established link to HF development. Pathway enrichment analysis identified angiotensin and IGF-1 signaling as most enriched putative upstream regulator and pathway, respectively, shared between TAC-induced HF in C57BL/6J mice and in human failing hearts. TAC-induced heart failure in C57BL/6J mice more closely reflects the gene expression pattern of human dilated cardiomyopathy compared to 129S1/SvImJ mice. Unbiased as well as targeted gene expression and pathway analyses identified periostin, angiotensin signaling, and IGF-1 signaling as potential causes of increased HF susceptibility in C57BL/6J mice and as potentially useful drug targets for HF treatment."	"Autophagy regulates TGF-β2-induced epithelial-mesenchymal transition in human retinal pigment epithelium cells. Transforming growth factor (TGF)-β2-induced epithelial-mesenchymal transition (EMT) in human retinal pigment epithelium (RPE) cells has an important role in the pathophysiology of intraocular fibrotic disorders, which may cause vision impairment and blindness. Autophagy, an intracellular homeostatic pathway, contributes to the physiological and pathological processes of RPE. Furthermore, autophagy has previously been reported to function in the EMT process in numerous tissue and cell types. However, the association between autophagy and the EMT process in RPE cells has not yet been fully determined. The present study demonstrated that TGF‑β2‑treated human RPE cells (ARPE‑19 cell line) exhibited a significantly increased autophagic flux compared with control cells, as determined by western blot analysis of the protein levels of microtubule‑associated protein 1 light chain 3‑II and p62 (also termed sequestosome 1). Furthermore, it was demonstrated that autophagy activation enhanced the TGF‑β2‑induced EMT process in ARPE‑19 cells, and inhibition of autophagy by chloroquine administration attenuated TGF‑β2‑induced EMT, which was determined by analyzing the expression of mesenchymal and epithelial markers by reverse transcription‑quantitative polymerase chain reaction and/or western blotting. A transwell migration and invasion assays was also performed that demonstrated that autophagy activation by rapamycin enhanced TGF‑β2‑stimulated RPE cell migration and invasion, and inhibition of autophagy reduced TGF‑β2‑stimulated RPE cell migration and invasion. These results also demonstrated that autophagy activation enhanced the TGF‑β2‑induced EMT process in ARPE‑19 cells, and inhibition of autophagy attenuated TGF‑β2‑induced EMT. Overall, the results of the present study demonstrated that TGF‑β2‑induced EMT may be regulated by autophagy, thus indicating that autophagy may serve as a potential therapeutic target for the attenuation of EMT in intraocular fibrotic disorders."	"TGF-β2 and TGF-β3 from cultured β-amyloid-treated or 3xTg-AD-derived astrocytes may mediate astrocyte-neuron communication. Astrocytes participate in the development and resolution of neuroinflammation in numerous ways, including the release of cytokines and growth factors. Among many, astrocytes release transforming growth factors beta (TGF-β) TGF-β1, TGF-β2 and TGF-β3. TGF-β1 is the most studied isoform, while production and release of TGF-β2 and TGF-β3 by astrocytes have been poorly characterized. Here, we report that purified cultures of hippocampal astrocytes produce mainly TGF-β3 followed by TGF-β2 and TGF-β1. Furthermore, astrocytes release principally the active form of TGF-β3 over the other two. Changes in release of TGF-β were sensitive to the calcineurin (CaN) inhibitor FK506. Starvation had no effect on TGF-β1 and TGF-β3 while TGF-β2 mRNA was significantly up-regulated in a CaN-dependent manner. We further investigated production and release of astroglial TGF-β in Alzheimer's disease-related conditions. Oligomeric β-amyloid (Aβ) down-regulated TGF-β1, while up-regulating TGF-β2 and TGF-β3, in a CaN-dependent manner. In cultured hippocampal astrocytes from 3xTg-AD mice, TGF-β2 and TGF-β3, but not TGF-β1, were up-regulated, and this was CaN-independent. In hippocampal tissues from symptomatic 3xTg-AD mice, TGF-β2 was up-regulated with respect to control mice. Finally, treatment with recombinant TGF-βs showed that TGF-β2 and TGF-β3 significantly reduced PSD95 protein in cultured hippocampal neurons, and this effect was paralleled by conditioned media from Aβ-treated astrocytes or from astrocytes from 3xTg-AD mice. Taken together, our data suggest that TGF-β2 and TGF-β3 are produced by astrocytes in a CaN-dependent manner and should be investigated further in the context of astrocyte-mediated neurodegeneration."	"Transcriptional Analysis of Endothelial Cell Alternation Induced by Atrial Natriuretic Polypeptide in Human Umbilical Vein Endothelial Cells. The aim of this study was to explore how atrial natriuretic polypeptide (ANP) affects the properties and function of endothelial cells. Gene expression data GSE56976 generated at 0, 1, and 6 hours after ANP incubation in human umbilical vein endothelial cells (HUVEC) was used. Microarray data were preprocessed for differentially expressed genes (DEGs) in each time-dependent group. Next, gene ontology (GO), pathway analysis, and transcriptional regulation were performed. Co-expression clustering analysis of DEGs and functional enrichment analysis of co-expression modules were processed. RT-PCR analysis was performed to validate gene expression. DEGs were obtained and their counts were increased from 0 hours to 6 hours. No overlapping DEGs were obtained among the 3 groups. The DEGs of ANP_6hours, including TGFB2 (transforming growth factor, beta 2), LTF (lactotransferrin/lactoferrin), and ETV7 (Ets variant 7) were mainly related with cell apoptosis and immune responses. The DEGs in the network of ANP_0hour were mainly associated with epithelial ion transport processes. In addition, 3 co-expressed modules were detected. CSF2 (colony stimulating factor 2) and PF4 (platelet factor 4) of the blue module were related with cytolysis, while FXYD1 (FXYD domain containing ion transport regulator 1) and TGFB2 of the yellow module were mainly enriched in ion transport and the ovulation cycle. The expression of TGFB2 obtained by microarray analysis was consistent with that of RT-PCR. Ion transport could be affected promptly after ANP treatment, and subsequently, the cytolysis of vein endothelial cells may be promoted and endothelial permeability would be enhanced, followed by activated immune responses."	"Plasmacytoid Dendritic Cell Function and Cytokine Network Profiles in Patients with Acute or Chronic Hepatitis B Virus Infection. Plasmacytoid dendritic cells (pDCs) and cytokines play an important role in occurrence and recovery of hepatitis B virus (HBV) infection. The aim of this study was to explore the frequency and function of pDC and serum cytokine network profiles in patients with acute or chronic HBV infection. The healthy individuals (HI group), hepatitis B envelope antigen (HBeAg)-positive chronic HBV patients in immune tolerance (IT) phase (IT group), HBeAg-positive chronic HBV patients (CHB group), and acute HBV patients (AHB group) were enrolled in this study. The frequency of cluster of differentiation antigen 86 (CD86) + pDC and the counts of CD86 molecular expressed on surface of pDC were tested by flow cytometer. The quantitative determinations of cytokines, including Fms-like tyrosine kinase 3 ligand (Flt-3L), interferon (IFN)-α2, IFN-γ, interleukin (IL)-17A, IL-6, IL-10, transforming growth factor (TGF)-β1 and TGF-β2, were performed using Luminex multiplex technology. In this study, there were 13 patients in HI group, 30 in IT group, 50 in CHB group, and 32 in AHB group. Compared with HI group, HBV infected group (including all patients in IT, CHB and AHB groups) had significantly higher counts of CD86 molecular expressed on the surface of pDC (4596.5 ± 896.5 vs. 7097.7 ± 3124.6; P &lt; 0.001). The counts of CD86 molecular expressed on the surface of pDC in CHB group (7739.2 ± 4125.4) was significantly higher than that of IT group (6393.4 ± 1653.6, P = 0.043). Compared with IT group, the profile of cytokines of Flt-3L, IFN-γ, and IL-17A was decreased, IFN-α2 was significantly increased (P = 0.012) in CHB group. The contents of IL-10, TGF-β1, and TGF-β2 in AHB group were significantly increased compared with IT and CHB groups (all P &lt; 0.05). This study demonstrated that the function of pDC was unaffected in HBV infection. The enhanced function of pDC and IFN-α2 might involve triggering the immune response from IT to hepatitis active phase in HBV infection. Acute patients mainly presented as down-regulation of the immune response by enhanced IL-10 and TGF-β."	"Differences in manifestations of Marfan syndrome, Ehlers-Danlos syndrome, and Loeys-Dietz syndrome. Many different heritable connective tissue disorders (HCTD) have been described over the past decades. These syndromes often affect the connective tissue of various organ systems, including heart, blood vessels, skin, joints, bone, eyes, and lungs. The discovery of these HCTD was followed by the identification of mutations in a wide range of genes encoding structural proteins, modifying enzymes, or components of the TGFβ-signaling pathway. Three typical examples of HCTD are Marfan syndrome (MFS), Ehlers-Danlos syndrome (EDS), and Loeys-Dietz syndrome (LDS). These syndromes show some degree of phenotypical overlap of cardiovascular, skeletal, and cutaneous features. MFS is typically characterized by cardiovascular, ocular, and skeletal manifestations and is caused by heterozygous mutations in FBN1, coding for the extracellular matrix (ECM) protein fibrillin-1. The most common cardiovascular phenotype involves aortic aneurysm and dissection at the sinuses of Valsalva. LDS is caused by mutations in TGBR1/2, SMAD2/3, or TGFB2/3, all coding for components of the TGFβ-signaling pathway. LDS can be distinguished from MFS by the unique presence of hypertelorism, bifid uvula or cleft palate, and widespread aortic and arterial aneurysm and tortuosity. Compared to MFS, LDS cardiovascular manifestations tend to be more severe. In contrast, no association is reported between LDS and the presence of ectopia lentis, a key distinguishing feature of MFS. Overlapping features between MFS and LDS include scoliosis, pes planus, anterior chest deformity, spontaneous pneumothorax, and dural ectasia. EDS refers to a group of clinically and genetically heterogeneous connective tissue disorders and all subtypes are characterized by variable abnormalities of skin, ligaments and joints, blood vessels, and internal organs. Typical presenting features include joint hypermobility, skin hyperextensibility, and tissue fragility. Up to one quarter of the EDS patients show aortic aneurysmal disease. The latest EDS nosology distinguishes 13 subtypes. Many phenotypic features show overlap between the different subtypes, which makes the clinical diagnosis rather difficult and highlights the importance of molecular diagnostic confirmation."	"Altered ADAMTS5 Expression and Versican Proteolysis: A Possible Molecular Mechanism in Barlow's Disease. We hypothesized that gene expression profiles of mitral valve (MV) leaflets from patients with Barlow's disease (BD) are distinct from those with fibroelastic deficiency (FED). MVs were obtained from patients with BD (7 men, 3 women; 61.4 ± 12.7 years old) or FED (6 men, 5 women; 54.5 ± 6.0 years old) undergoing operations for severe mitral regurgitation (MR). Normal MVs were obtained from 6 donor hearts unmatched for transplant (3 men, 3 women; 58.3 ± 7.5 years old), and gene expression was assessed using cDNA microarrays. Select transcripts were validated by quantitative reverse-transcription polymerase chain reaction, followed by an assessment of protein levels by immunostaining. The global gene expression profile for BD was clearly distinct from normal and FED groups. A total of 4,684 genes were significantly differential (fold-difference &gt;1.5, p &lt; 0.05) among the three groups, 1,363 of which were commonly altered in BD and FED compared with healthy individuals (eg TGFβ2 [transforming growth factor β2] and TGFβ3 were equally upregulated in BD and FED). Most interesting were 329 BD-specific genes, including ADAMTS5 (a disintegrin-like and metalloprotease domain with thrombospondin-type 5), which was uniquely downregulated in BD based on microarrays and quantitative reverse-transcription polymerase chain reaction. Consistent with this finding, the ADAMTS5 substrate versican was increased in BD and conversely lower in FED. MV leaflets in BD and FED exhibit distinct gene expression patterns, suggesting different pathophysiologic mechanisms are involved in leaflet remodeling. Moreover, downregulation of ADAMTS5 in BD, along with the accumulation of its substrate versican in the valvular extracellular matrix, might contribute to leaflet thickening and enlargement."	"Molecular systematics and biogeography of lowland antpittas (Aves, Grallariidae): The role of vicariance and dispersal in the diversification of a widespread Neotropical lineage. We infer phylogenetic relationships, divergence times, and the diversification history of the avian Neotropical antpitta genera Hylopezus and Myrmothera (Grallariidae), based on sequence data (3,139 base pairs) from two mitochondrial (ND2 and ND3) and three nuclear nuclear introns (TGFB2, MUSK and FGB-I5) from 142 individuals of the 12 currently recognized species in Hylopezus and Myrmothera and 5 outgroup species. Phylogenetic analyses recovered 19 lineages clustered into two major clades, both distributed in Central and South America. Hylopezus nattereri, previously considered a subspecies of H. ochroleucus, was consistently recovered as the most divergent lineage within the Grallaricula/Hylopezus/Myrmothera clade. Ancestral range estimation suggested that modern lowland antpittas probably originated in the Amazonian Sedimentary basin during the middle Miocene, and that most lineages within the Hylopezus/Myrmothera clade appeared in the Plio-Pleistocene. However, the rate of diversification in the Hylopezus/Myrmothera clade appeared to have remained constant through time, with no major shifts over the 20 million years. Although the timing when most modern lineages of the Hylopezus/Myrmothera clade coincides with a period of intense landscape changes in the Neotropics (Plio-Pleistocene), the absence of any significant shifts in diversification rates over the last 20 million years challenges the view that there is a strict causal relationship between intensification of landscape changes and cladogenesis. The relative old age of the Hylopezus/Myrmothera clade coupled with an important role ascribed to dispersal for its diversification, favor an alternative scenario whereby long-term persistence and dispersal across an ever-changing landscape might explain constant rates of cladogenesis through time."	"MicroRNA-486-5p suppresses TGF-β2-induced proliferation, invasion and epithelial-mesenchymal transition of lens epithelial cells by targeting Smad2. The pathological development of lens epithelial cells (LECs) leads to posterior capsular opacification (PCO). This study was undertaken to investigate the effects of microRNA-486-5p (miR-486-5p) on TGF-β2-induced proliferation, invasion and epithelial-mesenchymal transition (EMT) in the lens epithelial cell line SRA01/04, and to explore the underlying molecular mechanisms. The expression of miR-486-5p in TGF-β2-induced SRA01/04 cells was down-regulated, and the expression of Smad2, p-Smad2 and p-Smad3 was up-regulated. A dual-luciferase reporter assay revealed that miR-486-5p directly targets the 30'-UTR of Smad2. MiR-486-5p mimic transfection markedly down-regulated the expression levels of Smad2, thus inhibiting the expression of p-Smad2 and p-Smad3. MiR-486-5p overexpression in SRA01/04 cells markedly suppressed TGF-β2-induced proliferation and invasion, inhibited protein expression of CDK2 and CDK4, down-regulated fibronectin, α-SMA and vimentin and up-regulated E-cadherin; these effects were partly reversed by Smad2 overexpression. In short, these data show that miR-486-5p overexpression can inhibit TGF-β2-induced proliferation, invasion and EMT in SRA01/04 cells by repressing Smad2/Smad3 signalling, implying that miR-486-5p may be an effective target to interfere in the progression of PCO."	"Effect of tamoxifen on fibrosis, collagen content and transforming growth factor-β1, -β2 and -β3 expression in common bile duct anastomosis of pigs. End-to-end anastomosis in the treatment for bile duct injury during laparoscopic cholecystectomy has been associated with stricture formation. The aim of this study was to experimentally investigate the effect of oral tamoxifen (tmx) treatment on fibrosis, collagen content and transforming growth factor-β1, -β2 and -β3 expression in common bile duct anastomosis of pigs. Twenty-six pigs were divided into three groups [sham (n = 8), control (n = 9) and tmx (n = 9)]. The common bile ducts were transected and anastomosed in the control and tmx groups. Tmx (40 mg/day) was administered orally to the tmx group, and the animals were euthanized after 60 days. Fibrosis was analysed by Masson's trichrome staining. Picrosirius red was used to quantify the total collagen content and collagen type I/III ratio. mRNA expression of transforming growth factor (TGF)-β1, -β2 and -β3 was quantified using real-time polymerase chain reaction (qRT-PCR). The control and study groups exhibited higher fibrosis than the sham group, and the study group showed lower fibrosis than the control group (P = 0.011). The control and tmx groups had higher total collagen content than the sham group (P = 0.003). The collagen type I/III ratio was higher in the control group than in the sham and tmx groups (P = 0.015). There were no significant differences in the mRNA expression of TGF-β1, -β2 and -β3 among the groups (P &gt; 0.05). Tmx decreased fibrosis and prevented the change in collagen type I/III ratio caused by the procedure."	"Transforming growth factor beta (TGF-β) in adolescent chronic fatigue syndrome. Chronic fatigue syndrome (CFS) is a prevalent and disabling condition among adolescent. The disease mechanisms are unknown. Previous studies have suggested elevated plasma levels of several cytokines, but a recent meta-analysis of 38 articles found that of 77 different cytokines measured in plasma, transforming growth factor beta (TGF-β) was the only one that was elevated in patients compared to controls in a sufficient number of articles. In the present study we therefore compared the plasma levels of the three TGF-β isoforms in adolescent CFS patients and healthy controls. In addition, the study explored associations between TGF-β levels, neuroendocrine markers, clinical markers and differentially expressed genes within the CFS group. CFS patients aged 12-18 years (n = 120) were recruited nation-wide to a single referral center as part of the NorCAPITAL project (ClinicalTrials ID: NCT01040429). A broad case definition of CFS was applied, requiring 3 months of unexplained, disabling chronic/relapsing fatigue of new onset, whereas no accompanying symptoms were necessary. Healthy controls (n = 68) were recruited from local schools. The three isoforms of TGF-β (TGF-β1, TGF-β2, TGF-β3) were assayed using multiplex technology. Neuroendocrine markers encompassed plasma and urine levels of catecholamines and cortisol, as well as heart rate variability indices. Clinical markers consisted of questionnaire scores for symptoms of post-exertional malaise, inflammation, fatigue, depression and trait anxiety, as well as activity recordings. Whole blood gene expression was assessed by RNA sequencing in a subgroup of patients (n = 29) and controls (n = 18). Plasma levels of all three isoforms of TGF-β were equal in the CFS patients and the healthy controls. Subgrouping according to the Fukuda and Canada 2003 criteria of CFS did not reveal differential results. Within the CFS group, all isoforms of TGF-β were associated with plasma cortisol, urine norepinephrine and urine epinephrine, and this association pattern was related to fatigue score. Also, TGF-β3 was related to expression of the B cell annotated genes TNFRSF13C and CXCR5. Plasma levels of all TGF-β isoforms were not altered in adolescent CFS. However, the TGF-β isoforms were associated with neuroendocrine markers, an association related to fatigue score. Furthermore, TGF-β3 might partly mediate an association between plasma cortisol and B cell gene expression. Trial registration Clinical Trials NCT01040429."	"Aldose reductase modulates acute activation of mesenchymal markers via the β-catenin pathway during cardiac ischemia-reperfusion. Aldose reductase (AR: human, AKR1B1; mouse, AKR1B3), the first enzyme in the polyol pathway, plays a key role in mediating myocardial ischemia/reperfusion (I/R) injury. In earlier studies, using transgenic mice broadly expressing human AKR1B1 to human-relevant levels, mice devoid of Akr1b3, and pharmacological inhibitors of AR, we demonstrated that AR is an important component of myocardial I/R injury and that inhibition of this enzyme protects the heart from I/R injury. In this study, our objective was to investigate if AR modulates the β-catenin pathway and consequent activation of mesenchymal markers during I/R in the heart. To test this premise, we used two different experimental models: in vivo, Akr1b3 null mice and wild type C57BL/6 mice (WT) were exposed to acute occlusion of the left anterior descending coronary artery (LAD) followed by recovery for 48 hours or 28 days, and ex-vivo, WT and Akr1b3 null murine hearts were perfused using the Langendorff technique (LT) and subjected to 30 min of global (zero-flow) ischemia followed by 60 min of reperfusion. Our in vivo results reveal reduced infarct size and improved functional recovery at 48 hours in mice devoid of Akr1b3 compared to WT mice. We demonstrate that the cardioprotection observed in Akr1b3 null mice was linked to acute activation of the β-catenin pathway and consequent activation of mesenchymal markers and genes linked to fibrotic remodeling. The increased activity of the β-catenin pathway at 48 hours of recovery post-LAD was not observed at 28 days post-infarction, thus indicating that the observed increase in β-catenin activity was transient in the mice hearts devoid of Akr1b3. In ex vivo studies, inhibition of β-catenin blocked the cardioprotection observed in Akr1b3 null mice hearts. Taken together, these data indicate that AR suppresses acute activation of β-catenin and, thereby, blocks consequent induction of mesenchymal markers during early reperfusion after myocardial ischemia. Inhibition of AR might provide a therapeutic opportunity to optimize cardiac remodeling after I/R injury."	"First-in-human phase I study of ISTH0036, an antisense oligonucleotide selectively targeting transforming growth factor beta 2 (TGF-β2), in subjects with open-angle glaucoma undergoing glaucoma filtration surgery. To evaluate the safety and tolerability of intravitreal ISTH0036, an antisense oligonucleotide selectively targeting transforming growth factor beta 2 (TGF-β2), in patients with primary open angle glaucoma (POAG) undergoing trabeculectomy (TE; glaucoma filtration surgery). In this prospective phase I trial glaucoma patients scheduled for TE with mitomycin C (MMC) received a single intravitreal injection of ISTH0036 at the end of surgery in escalating total doses of 6.75 μg, 22.5 μg, 67.5 μg or 225 μg, resulting in calculated intraocular ISTH0036 concentrations in the vitreous humor of approximately 0.3 μM, 1 μM, 3 μM or 10 μM after injection, respectively. Outcomes assessed included: type and frequency of adverse events (AEs), intraocular pressure (IOP), numbers of interventions post trabeculectomy, bleb survival, visual acuity, visual field, electroretinogram (ERG), slit lamp biomicroscopy and optic disc assessment. In total, 12 patients were treated in the 4 dose groups. Main ocular AEs observed were corneal erosion, corneal epithelium defect, or too high or too low IOP, among others. No AE was reported to be related to ISTH0036. All other safety-related analyses did not reveal any toxicities of concern, either. The mean medicated preoperative IOP at decision time-point for surgery was 27.3 mmHg +/- 12.6 mmHg (SD). Mean IOP (±SD) for dose levels 1, 2, 3, and 4 were at Day 43 9.8 mmHg ± 1.0 mmHg, 11.3 mmHg ± 6.7 mmHg, 5.5 mmHg ± 3.0 mmHg and 7.5 mmHg ± 2.3 mmHg SD; and at Day 85 9.7 mmHg ± 3.3 mmHg, 14.2 mmHg ± 6.5 mmHg, 5.8 mmHg ± 1.8 mmHg and 7.8 mmHg ± 0.6 mmHg, respectively. In contrast to IOP values for dose levels 1 and 2, IOP values for dose levels 3 and 4 persistently remained below 10 mmHg throughout the observation period. This first-in-human trial demonstrates that intravitreal injection of ISTH0036 at the end of TE is safe. Regarding IOP control, single-dose ISTH0036 administration of 67.5 μg or 225 μg at the time of TE resulted in IOP values persistently &lt; 10 mmHg over the three month postoperative observation period."	"Human aqueous humor levels of transforming growth factor-β2: Association with matrix metalloproteinases/tissue inhibitors of matrix metalloproteinases. The present study aims to investigate the association of transforming growth factor-β2 (TGF-β2) and matrix metalloproteinases (MMPs), MMP-2 and MMP-3, and tissue inhibitors of matrix metalloproteinases (TIMPs), TIMP-1, TIMP-2 and TIMP-3 in the aqueous humor of patients with high myopia or cataracts. The levels of TGF-β2 and MMPs/TIMPs were measured with the Luminex xMAP Technology using commercially available Milliplex xMAP kits. The association between TGF-β2 and MMPs/TIMPs levels was analyzed using the Spearmans correlation test. The levels of TGF-β2 were identified to be positively correlated with the levels of TIMP-1 and TIMP-3 (TIMP-1: r=0.334; P=0.007; TIMP-3: r=0.309; P=0.012). The levels of MMP-2, MMP-3 and TIMP-2 did not significantly correlate with TGF-β2 levels (P&gt;0.05). A positive correlation was identified between TGF-β2 and TIMPs in the aqueous humor of human eyes with elongated axial length. It appears that TGF-β2 stimulates the expression of TIMPs as a compensatory reaction to the development of high myopia."	"Strontium Promotes Transforming Growth Factors β1 and β2 Expression in Rat Chondrocytes Cultured In Vitro. The transforming growth factors β1 (TGF-β1) and TGF-β2, as two distinct homodimers of TGF-β superfamily, involve in chondrocyte growth and differentiation. Emerging evidence has implied that strontium (Sr) plays an important role in the bone formation and resorption, and has strong effects on stimulating human cartilage matrix formation in vitro. However, the direct effects of Sr on TGF-β1 and TGF-β2 expressions in chondrocytes are not entirely clear. The purpose of this study was to evaluate the influence of different Sr concentrations on the expression of TGF-β1 and TGF-β2 in rat chondrocytes in vitro. Chondrocytes were isolated from Wistar rat articular by enzymatic digestion. Strontium chloride hexahydrate (SrCl2·6H2O) was used as a Sr source in this study. Sr was added to the culture solution at final concentrations of 0, 0.5, 1.0, 2.0, 5.0, 20.0, and 100 μg/mL. After 72 h of continuous culture, TGF-β1 and TGF-β2 mRNA abundance and protein expression levels in the chondrocytes were determined by real-time polymerase chain reaction (real-time PCR) and Western blot, respectively. The results showed that TGF-β1 and TGF-β2 expressions in chondrocytes increased dose-dependently with Sr concentration. The mRNA abundance of TGF-β1 and TGF-β2 were markedly higher than those observed for control (P &lt; 0.01) when the Sr-treated concentration exceeded 1.0 and 5.0 μg/mL, respectively. The TGF-β1 and TGF-β2 protein expression levels were extremely significantly higher than those in the control group (P &lt; 0.01) at above 5.0 μg/mL Sr-treatment. These results indicated that Sr could involve in the chondrocytes metabolism via regulating TGF-β1 and TGF-β2 signalling."	"Altered downstream target gene expression of the placental Vitamin D receptor in human idiopathic fetal growth restriction. Fetal growth restriction (FGR) affects up to 5% of pregnancies and is associated with significant perinatal complications. Maternal deficiency of vitamin D, a secosteroid hormone, is common in FGR-affected pregnancies. We recently demonstrated that decreased expression of the vitamin D receptor (VDR) in idiopathic FGR placentae could impair trophoblast growth. As strict regulation of cell-cycle genes in trophoblast cells is critical for optimal feto-placental growth, we hypothesised that pathologically decreased placental VDR contributes to aberrant regulation of cell-cycle genes. The study aims were to (i) identify the downstream cell-cycle regulatory genes of VDR in trophoblast cells, and (ii) determine if expression was changed in cases of FGR. Targeted cell-cycle gene cDNA arrays were used to screen for downstream targets of VDR in VDR siRNA-transfected BeWo and HTR-8/SVneo trophoblast-derived cell lines, and in third trimester placentae from FGR and gestation-matched control pregnancies (n = 25 each). The six candidate genes identified were CDKN2A, CDKN2D, HDAC4, HDAC6, TGFB2 and TGFB3. TGFB3 was prioritised for further validation, as its expression is largely unknown in FGR. Significantly reduced mRNA and protein expression of TGFB3 was verified in FGR placentae and the BeWo and HTR-8/SVneo trophoblast cell lines, using real-time PCR and immunoblotting respectively. In summary, decreased placental VDR expression alters the expression of regulatory cell-cycle genes in FGR placentae. Aberrant regulation of cell-cycle genes in the placental trophoblast cells may constitute a mechanistic pathway by which decreased placental VDR reduces feto-placental growth."	"PAX3d mRNA over 2.76 copies/µL in the bloodstream predicts cutaneous malignant melanoma relapse. The aim of this study was to evaluate if our molecular algorithm, based on tumor circulating transcripts, may predict relapse risk in cutaneous malignant melanoma (CMM). The multi-marker panel was able to differentiate patients with CMM from HC with high diagnostic sensitivity and specificity, especially for MITF-m and TGFB2 (91-100%) whose levels decreased during follow-up of recurrence-free patients, and remained stable in the case of relapse. PAX3d higher than 2.76 copies/µL emerged as a promising biomarker [specificity = 75-93% and negative predictive value = 75-98%] to stratify subjects at high risk of CMM recurrence independently of age, gender and AJCC staging [OD = 9.5(3.2-28.0), p &lt; 0.001]. The survival analysis confirmed PAX3d performance in relapse prediction with significant differences in recurrence risk 12 months after the basal time-point (p = 0.008). Peripheral blood was collected from 111 CMM patients and from 87 healthy controls (HC) randomly selected. Each specimen was examined by qRT-PCR analysis for the expression of 3 tumor-related transcripts (PAX3d, MITF-m and TGFB2) at diagnosis, and at the following 6 and 12 months during clinical monitoring. We demonstrated the usefulness of our molecular algorithm to indirectly detect circulating melanoma cells in blood, along with PAX3d capability to assess patients' progression and relapse prediction."	"Role of Transforming Growth Factor β in Uterine Fibroid Biology. Uterine fibroids (UFs) are benign tumors of the female genital tract made of the smooth muscle of the uterus. UF growth depends mostly on the influence of the steroid hormones and selected growth factors. Transforming growth factor β (TGF-βs) is a polypeptide that consists of three isoforms: TGF-β1, TGF-β2, and TGF-β3. At present, TGF-β is considered to be one of the key factors in the pathophysiology of UFs. It plays a major role in cellular migration within the tumor, stimulates tumor growth, and enhances tumor metabolism. As a consequence of various dependencies, the synthesis and release of TGF-β in a UF tumor is increased, which results in excessive extracellular matrix production and storage. High concentrations or overexpression of TGF-β mediators may be responsible for clinically symptomatic UFs. The aim of this review was to check the available evidence for the influence of the TGF-β family on UF biology. We conducted their search in PubMed of the National Library of Medicine with the use of the following selected keywords: &quot;uterine fibroid&quot;, &quot;leiomyoma&quot;, and &quot;transforming growth factor β&quot;. After reviewing the titles and abstracts, more than 115 full articles were evaluated. We focused on the TGF-β-related molecular aspects and their influence on the most common symptoms that are associated with UFs. Also, we described how the available data might implicate the current medical management of UFs."	"TGF-β2 initiates autophagy via Smad and non-Smad pathway to promote glioma cells' invasion. Glioblastoma multiforme (GBM) is characterized by lethal aggressiveness and patients with GBM are in urgent need for new therapeutic avenues to improve quality of life. Current studies on tumor invasion focused on roles of cytokines in tumor microenvironment and numerous evidence suggests that TGF-β2 is abundant in glioma microenvironment and vital for glioma invasion. Autopagy is also emerging as a critical factor in aggressive behaviors of cancer cells; however, the relationship between TGF-β2 and autophagy in glioma has been poorly understood. U251, T98 and U87 GBM cell lines as well as GBM cells from a primary human specimen were used in vitro and in vivo to evaluate the effect of TGF-β2 on autophagy. Western blot, qPCR, immunofluorescence and transmission-electron microscope were used to detect target molecular expression. Lentivirus and siRNA vehicle were introduced to establish cell lines, as well as mitotracker and seahorse experiment to study the metabolic process in glioma. Preclinical therapeutic efficacy was evaluated in orthotopic xenograft mouse models. Here we demonstrated that TGF-β2 activated autophagy in human glioma cell lines and knockdown of Smad2 or inhibition of c-Jun NH2-terminal kinase, attenuated TGF-β2-induced autophagy. TGF-β2-induced autophagy is important for glioma invasion due to the alteration of epithelial-mesenchymal transition and metabolism conversion, particularly influencing mitochondria trafficking and membrane potential (△Ψm). Autopaghy also initiated a feedback on TGF-β2 in glioma by keeping its autocrine loop and affecting Smad2/3/7 expression. A xenograft model provided additional confirmation on combination of TGF-β inhibitor (Galunisertib) and autophagy inhibitor (CQ) to better &quot;turn off&quot; tumor growth. Our findings elucidated a potential mechanism of autophagy-associated glioma invasion that TGF-β2 could initiate autophagy via Smad and non-Smad pathway to promote glioma cells' invasion."	"Amphotericin B-copper (II) complex alters transcriptional activity of genes encoding transforming growth factor-beta family members and related proteins in renal cells. Several chemical modifications have been developed to overcome the toxicity of amphotericin B (AmB). Oxidized forms of AmB (AmB-ox), which may occur in patient's circulation during therapy, are as toxic as AmB. Complexes with copper (II) ions (AmB-Cu<sup>2+</sup>) have been reported to be less toxic to human cells. Previous studies showed that AmB changed the expression of transforming growth factor-beta (TGF-β). Therefore, the objective of this study was to investigate the influence of AmB and its modified forms on the expression of genes encoding for TGF-β family members and related proteins in renal cells. Human renal proximal tubule cells (RPTEC) were treated with AmB-Cu<sup>2+</sup>, AmB, or the oxidized form AmB-ox. The expression of TGF-β family members and related genes was determined using oligonucleotide microarrays. TGF-β1 protein level was determined using ELISA method. The mRNA level of TGF-β isoforms, TGF-β receptors and differentiating genes was evaluated by real-time RT-qPCR. AmB-Cu<sup>2+</sup> increased the mRNA levels of TGF-β1 and TGF-β2 isoforms and two genes encoding receptors: TGFBR1 and TGFBR2. TGF-β1 protein level in culture medium was not increased after stimulation with AmB-Cu<sup>2+</sup>. Microarray analysis revealed changes in both pro-fibrotic and anti-fibrotic genes. These results suggest that AmB-Cu<sup>2+</sup> may induce repair mechanisms in renal proximal tubule cells via changes in the expression of genes involved in intracellular signaling."	"Immunohistochemical Analysis on Cortex-to-Cortex Healing After Mandibular Vertical Ramus Osteotomy: A Preliminary Study. The present study analyzed the expression of specific cytokines in the transforming growth factor (TGF)-β superfamily postoperatively after mandibular vertical ramus osteotomy (VRO). Four beagle dogs were enrolled and euthanized at 1, 2, 4, and 8 weeks postoperatively for immunohistochemical analysis using 6 specific antibodies (bone morphogenetic protein [BMP]-2/4, BMP-7, TGF-β2, TGF-β3, matrix metalloproteinase-3, and vascular endothelial growth factor [VEGF]). The results from the surgical site and control (adjacent area) were compared. Generalized upregulation of BMP-2/4 was observed in all healing periods, and the strongest expression of BMP-7 was observed at 1 week postoperatively. The strongest expression of TGF-β2 was observed at 8 weeks with increasing pattern. The strong expression of TGF-β3 was observed at 1 and 4 weeks, with the strongest expression of VEGF at 1 week, with a decreasing pattern. No notable uptake was detected with the 6 specific antibodies in the adjacent bone (control). The absence of internal fixation after VRO led to dynamic healing with a specific expression pattern of BMP-7 and TGF-β2. The anatomic factors, including sufficient preexisting vascularity, led to the earlier expression pattern of VEGF."	"Inflammatory Gene Expression in Whole Peripheral Blood at Early Stages of Sporadic Amyotrophic Lateral Sclerosis. Characterization of altered expression of selected transcripts linked to inflammation in the peripheral blood of sporadic amyotrophic lateral sclerosis (sALS) patients at early stage of disease to increase knowledge about peripheral inflammatory response in sALS. RNA expression levels of 45 genes were assessed by RT-qPCR in 22 sALS cases in parallel with 13 age-matched controls. Clinical and serum parameters were assessed at the same time. Upregulation of genes coding for factors involved in leukocyte extravasation (ITGB2, INPP5D, SELL, and ICAM1) and extracellular matrix remodeling (MMP9 and TIMP2), as well as downregulation of certain chemokines (CCL5 and CXC5R), anti-inflammatory cytokines (IL10, TGFB2, and IL10RA), pro-inflammatory cytokines (IL-6), and T-cell regulators (CD2 and TRBC1) was found in sALS cases independently of gender, clinical symptoms at onset (spinal, respiratory, or bulbar), progression, peripheral leukocyte number, and integrity of RNA. MMP9 levels positively correlated with age, whereas CCR5, CCL5, and TRBC1 negatively correlated with age in sALS but not in controls. Relatively higher TNFA expression levels correlate with higher creatinine kinase protein levels in plasma. Present findings show early inflammatory responses characterized by upregulation of factors enabling extravasation of leukocytes and extracellular matrix remodeling in blood in sALS cases, in addition to increased TNFA levels paralleling skeletal muscle damage."	"Chronic Venous Insufficiency: Transforming Growth Factor-β Isoforms and Soluble Endoglin Concentration in Different States of Wound Healing. Venous leg ulcer (VLU) is a huge healthcare problem with poorly understood pathophysiology. Transforming growth factor-β (TGF-β) and endoglin (Eng), are inflammatory and wound healing mediators. Eng, co-receptor for TGF-β type-II receptors, may be cleaved forming soluble Eng (sEng), antagonizing TGF-β signaling, a crucial process in vascular pathologies. We evaluated the accumulation in wound fluid (WF) of TGF-β isoforms and sEng in healing stages, showing the effects of sulodexide treatments, a glycosaminoglycan with clinical efficacy in VLU healing. Patients with inflammatory (Infl) and granulating (Gran) VLU were recruited. WFs and THP-1 monocytes exposed to Infl and Gran WF (treated/untreated with sulodexide) were analyzed for TGF-β isoforms and sEng by multiplex immunoassay. In both Infl and Gran WF, TGF-β1 and β2 were similar; TGF-β3 was significantly increased in Infl compared to Gran WFs (p = 0.033). sEng was significantly elevated in Gran compared to Infl WFs (p = 0.002). In THP-1 monocytes there was a significant increase in sEng after co-treatment of WF and sulodexide. The increase in TGF-β3 found in Infl WF highlights its negative effect on wound healing, while the increased levels of sEng in Gran WF affects the leukocyte adhesion/transmigration through the endothelium, reducing the inflammatory response and favoring the wound healing. Glycosaminoglycan sulodexide potentiates the effects of sEng release from monocyte, representing an important therapeutic option for wound healing."	"Transforming growth factor-β signaling pathway-associated genes SMAD2 and TGFBR2 are implicated in metabolic syndrome in a Taiwanese population. The transforming growth factor-β (TGF-β) signaling pathway and its relevant genes have been correlated with an increased risk of developing various hallmarks of metabolic syndrome (MetS). In this study, we assessed whether the TGF-β signaling pathway-associated genes of SMAD family member 2 (SMAD2), SMAD3, SMAD4, transforming growth factor beta 1 (TGFB1), TGFB2, TGFB3, transforming growth factor beta receptor 1 (TGFBR1), and TGFBR2 are associated with MetS and its individual components independently, through complex interactions, or both in a Taiwanese population. A total of 3,000 Taiwanese subjects from the Taiwan Biobank were assessed. Metabolic traits such as waist circumference, triglyceride, high-density lipoprotein cholesterol, systolic and diastolic blood pressure, and fasting glucose were measured. Our results showed a significant association of MetS with the two single nucleotide polymorphisms (SNPs) of SMAD2 rs11082639 and TGFBR2 rs3773651. The association of MetS with these SNPs remained significant after performing Bonferroni correction. Moreover, we identified the effect of SMAD2 rs11082639 on high waist circumference. We also found that an interaction between the SMAD2 rs11082639 and TGFBR2 rs3773651 SNPs influenced MetS. Our findings indicated that the TGF-β signaling pathway-associated genes of SMAD2 and TGFBR2 may contribute to the risk of MetS independently and through gene-gene interactions."	"Suppressive role of miR-592 in breast cancer by repressing TGF-β2. The function of miR-592 has been investigated in many types of cancer, however its roles in breast cancer remain unclear. We therefore investigated the biological function and underlying mechanism of miR-592 in breast cancer. In the present study, a marked downregulation of miR-592 was observed in breast cancer tissues and cell lines compared to the matched adjacent non-tumor tissues and normal breast cell line. Statistical analysis revealed that decreased miR-592 was negatively associated with advanced clinical stage, distant metastasis and lymph node metastases. Function analysis demonstrated that overexpression of miR-592 significantly inhibited cell proliferation, clone formation, migration and invasion in breast cancer cells in vitro, as well as suppressed tumor growth in vivo. Furthermore, transforming growth factor β-2 (TGFβ-2), a known oncogene, was identified as a direct target of miR-592, and its mRNA expression level was inversely correlated with the expression level of miR-592 in human breast cancer specimens. Restoration of TGFβ-2 expression rescued the inhibitory effect in breast cancer cells caused by miR-592. Collectively, these data suggest that miR-592 may exert it suppressive role in breast cancer, at least in part, by targeting TGFβ-2, and that miR-592 may be a novel target for breast cancer treatment."	"Branching morphogenesis in the developing kidney is governed by rules that pattern the ureteric tree. Metanephric kidney development is orchestrated by the iterative branching morphogenesis of the ureteric bud. We describe an underlying patterning associated with the ramification of this structure and show that this pattern is conserved between developing kidneys, in different parts of the organ and across developmental time. This regularity is associated with a highly reproducible branching asymmetry that is consistent with locally operative growth mechanisms. We then develop a class of tip state models to represent elaboration of the ureteric tree and describe rules for 'half-delay' branching morphogenesis that describe almost perfectly the patterning of this structure. Spatial analysis suggests that the observed asymmetry may arise from mutual suppression of bifurcation, but not extension, between the growing ureteric tips, and demonstrates that disruption of patterning occurs in mouse mutants in which the distribution of tips on the surface of the kidney is altered. These findings demonstrate that kidney development occurs by way of a highly conserved reiterative pattern of asymmetric bifurcation that is governed by intrinsic and locally operative mechanisms."	"MicroRNA-30b controls endothelial cell capillary morphogenesis through regulation of transforming growth factor beta 2. The importance of microRNA (miRNA) to vascular biology is becoming increasingly evident; however, the function of a significant number of miRNA remains to be determined. In particular, the effect of growth factor regulation of miRNAs on endothelial cell morphogenesis is incomplete. Thus, we aimed to identify miRNAs regulated by pro-angiogenic vascular endothelial growth factor (VEGF) and determine the effects of VEGF-regulated miRNAs and their targets on processes important for angiogenesis. Human umbilical vein endothelial cells (HUVECs) were thus stimulated with VEGF and miRNA levels assessed using microarrays. We found that VEGF altered expression of many miRNA, and for this study focused on one of the most significantly down-regulated miRNA in HUVECs following VEGF treatment, miR-30b. Using specific miRNA mimics, we found that overexpression of miR-30b inhibited capillary morphogenesis in vitro, while depletion of endogenous miR-30b resulted in increased capillary morphogenesis indicating the potential significance of down-regulation of miR-30b as a pro-angiogenic response to VEGF stimulation. MiR-30b overexpression in HUVEC regulated transforming growth factor beta 2 (TGFβ2) production, which led to increased phosphorylation of Smad2, indicating activation of an autocrine TGFβ signaling pathway. Up-regulation of TGFβ2 by miR-30b overexpression was found to be dependent on ATF2 activation, a transcription factor known to regulate TGFβ2 expression, as miR-30b overexpressing cells exhibited increased levels of phosphorylated ATF2 and depletion of ATF2 inhibited miR-30b-induced TGFβ2 expression. However, miR-30b effects on ATF2 were indirect and found to be via targeting of the known ATF2 repressor protein JDP2 whose mRNA levels were indirectly correlated with miR-30b levels. Increased secretion of TGFβ2 from HUVEC was shown to mediate the inhibitory effects of miR-30b on capillary morphogenesis as treatment with a neutralizing antibody to TGFβ2 restored capillary morphogenesis to normal levels in miR-30b overexpressing cells. These results support that the regulation of miR-30b by VEGF in HUVEC is important for capillary morphogenesis, as increased miR-30b expression inhibits capillary morphogenesis through enhanced expression of TGFβ2."	"Crocetin inhibits the proliferation, migration and TGF-β2-induced epithelial-mesenchymal transition of retinal pigment epithelial cells. Retinal pigment epithelial (RPE) cells, the major cell type in the fibrotic membrane of proliferative vitreoretinopathy, display enhanced proliferative and migratory capacities and epithelial-mesenchymal transition (EMT). In this study, we investigated the potential impact of crocetin on the proliferation, migration and EMT of cultured ARPE-19 cells. The cells were treated with crocetin alone or in combination with transforming growth factor-β2 (TGF-β2). Cell proliferation was examined using the CCK-8 assay. Cell cycle distribution was analyzed by flow cytometry after propidium iodide staining. The expression levels of proliferating cell nuclear antigen (PCNA), p21 and p53 were examined by Western blot analysis. Cell migration was assessed by in vitro scratch and Transwell assays. Real-time PCR, Western blotting and immunofluorescence were used to assess EMT features. Treatment of ARPE-19 cells with crocetin (50-200μM) significantly inhibited their proliferation and migration in a concentration- and time-dependent manner. Crocetin induced G1 arrest, reduced PCNA protein expression and increased the p21 and p53 accumulation in ARPE-19 cells. Crocetin inhibited TGF-β2-induced EMT in ARPE-19 cells by maintaining the expression of E-cadherin and ZO-1 and by reducing the expression of vimentin and α-SMA through the suppression of phosphorylation of p38. These results indicate that crocetin is an effective inhibitor of the proliferation, migration and TGF-β2-mediated EMT of ARPE-19 cells."	"Genome-wide analysis of DNA Methylation profiles on sheep ovaries associated with prolificacy using whole-genome Bisulfite sequencing. Ovulation rate and litter size are important reproductive traits in sheep with high economic value. Recent work has revealed a potential link between DNA methylation and prolificacy. However, a genome-wide study that sought to identify potential DNA methylation sites involved in sheep prolificacy indicated that it is still unknown. Here, we aimed to investigate the genome-wide DNA methylation profiles of Hu sheep ovaries by comparing a high-prolificacy group (HP, litter size of three for at least 2 consecutive lambings) and low prolificacy group (LP, litter size of one for at least 2 consecutive lambings) using deep whole-genome bisulfite sequencing (WGBS). First, our results demonstrated lower expression levels of DNA methyltransferase (DNMT) genes in the ovaries of the HP group than that in the ovaries of the LP group. Both groups showed similar proportions of methylation at CpG sites but different proportions at non-CpG sites. Subsequently, we identified 70,899 differential methylated regions (DMRs) of CG, 16 DMRs of CHG, 356 DMRs of CHH and 12,832 DMR-related genes(DMGs). Gene Ontology (GO) analyses revealed that some DMGs were involved in regulating female gonad development and ovarian follicle development. Finally, we found that 10 DMGs, including BMP7, BMPR1B, CTNNB1, FST, FSHR, LHCGR, TGFB2 and TGFB3, are more likely to be involved in prolificacy of Hu sheep, as assessed by correlation analysis and listed in detail. This study revealed the global DNA methylation pattern of sheep ovaries associated with high and low prolificacy groups, which may contribute to a better understanding of the epigenetic regulation of sheep reproductive capacity."	"Adrenaline promotes epithelial-to-mesenchymal transition via HuR-TGFβ regulatory axis in pancreatic cancer cells and the implication in cancer prognosis. Psychological stress has recently been described as a risk factor in the development of pancreatic cancer. Here, we reported that increased neurotransmitter adrenaline was associated with the poor survival in pancreatic cancer patients. Moreover, in the cell model study, we found adrenaline promoted pancreatic cell PANC-1 migration in a dose dependent manner. Block of the β2-adrenoreceptor with ICI118,551, significantly reduced cell migration. Further study found that adrenaline induced a cytoplasmic translocation of RNA binding protein HuR, which in turn activated TGFβ, as shown by the SBE luciferase assay and phosphorylation of Smad2/3. Either HuR knockdown or TGFβ inhibition reduced cell migration induced by adrenaline. Taken together, our study here revealed that adrenaline-HuR-TGFβ regulatory axis at least partially contributes to the psychological stress induced metastasis in PANC-1 cells, shedding light on therapeutic targeting psychological stress in improving the prognosis of pancreatic cancer."	"Neural precursor cell-secreted TGF-β2 redirects inflammatory monocyte-derived cells in CNS autoimmunity. In multiple sclerosis, the pathological interaction between autoreactive Th cells and mononuclear phagocytes in the CNS drives initiation and maintenance of chronic neuroinflammation. Here, we found that intrathecal transplantation of neural stem/precursor cells (NPCs) in mice with experimental autoimmune encephalomyelitis (EAE) impairs the accumulation of inflammatory monocyte-derived cells (MCs) in the CNS, leading to improved clinical outcome. Secretion of IL-23, IL-1, and TNF-α, the cytokines required for terminal differentiation of Th cells, decreased in the CNS of NPC-treated mice, consequently inhibiting the induction of GM-CSF-producing pathogenic Th cells. In vivo and in vitro transcriptome analyses showed that NPC-secreted factors inhibit MC differentiation and activation, favoring the switch toward an antiinflammatory phenotype. Tgfb2-/- NPCs transplanted into EAE mice were ineffective in impairing MC accumulation within the CNS and failed to drive clinical improvement. Moreover, intrathecal delivery of TGF-β2 during the effector phase of EAE ameliorated disease severity. Taken together, these observations identify TGF-β2 as the crucial mediator of NPC immunomodulation. This study provides evidence that intrathecally transplanted NPCs interfere with the CNS-restricted inflammation of EAE by reprogramming infiltrating MCs into antiinflammatory myeloid cells via secretion of TGF-β2."	"Overexpression of immunomodulatory mediators in oral precancerous lesions. Human leukocyte antigen (HLA) G and E, programmed cell death 1 ligand 1 (PD-L1), IL-10 and TGF-β are proteins involved in failure of the antitumor immune response. We investigated the expression of these immunomodulatory mediators in oral precancerous lesions (oral leukoplakia-OL; n=80) and whether these molecules were related to the risk of malignant transformation. Samples of normal mucosa (n=20) and oral squamous cells carcinoma (OSCC, n=20) were included as controls. Tissue and saliva samples were analyzed by immunohistochemistry and ELISA respectively. Fifteen OL samples showed severe dysplasia (18.7%) and 40 samples (50%) presented combined high Ki-67/p53. Irrespective of the degree of epithelial dysplasia and the proliferation/apoptosis index of OL, the expression of HLA-G, -E, PD-L1, IL-10, TGF-β2 and -β3 was higher to control (P&lt;0.05) and similar to OSCC (P&gt;0.05). The number of granzyme B<sup>+</sup> cells in OL was similar to control (P=0.28) and lower compared to OSCC (P&lt;0.01). Salivary concentrations of sHLA-G, IL-10 and TGF-β did not allow for a distinction between OL and healthy individuals. Overexpression of immunosuppressive mediators in the OL reflects the immune evasion potential of this lesion, which is apparently independent of at cytological and proliferation/apoptosis status."	"Optimizing a 3D model system for molecular manipulation of tenogenesis. Tendon injuries are clinically challenging due to poor healing. A better understanding of the molecular events that regulate tendon differentiation would improve current strategies for repair. The mouse model system has been instrumental to tendon studies and several key molecules were initially established in mouse. However, the study of gene function has been limited by the absence of a standard in vitro tendon system for efficiently testing multiple mutations, physical manipulations, and mis-expression. The purpose of this study is therefore to establish such a system. We adapted an existing design for generating three-dimensional (3D) tendon constructs for use with mouse progenitor cells harboring the ScxGFP tendon reporter and the Rosa26-TdTomato Cre reporter. Using these cells, we optimized the parameters for construct formation, inducing tenogenesis via transforming growth factor-β2 (TGFβ2), and genetic recombination via an adenovirus encoding Cre recombinase. Finally, for proof of concept, we used Smad4 floxed cells and tested the robustness of the system for gene knockdown. We found that TGFβ2 treatment induced a tenogenic phenotype depending on the timing of initiation. Addition of TGFβ2 after 3D &quot;tensioning&quot; enhanced tendon differentiation. Interestingly, while TGFβ2-induced proliferation depended on Smad4, tenogenic parameters such as ScxGFP expression and fibril diameter were independent of Smad4. Our results demonstrate the feasibility of this optimized system for harnessing the power of mouse genetics for in vitro applications."	"Increase Concentration of Transforming Growth Factor Beta (TGF-β) in Breast Milk of Mothers With Psychological Disorders. Several studies have shown an imbalance between proinflammatory and anti-inflammatory cytokines in depression and anxiety disorders. However, less attention has been paid to the role of cytokines in psychological disorder in mothers who breastfeed. This study looks at whether concentration levels of TGF-β2 are altered in anxious and depressive breastfeeding mothers. This study checked the concentration level of TGF-B2 in relation with psychological symptoms on 110 breastfeeding mothers; based on random sampling method with using of Beck Depression Inventory (BDI), General Health Questionnaire (GHQ) and Spielberger Stress Scale (STAI) in 2015 also TGF-β2 was measured in breast milk using ELISA. We used of Pearson Correlation Method, independent t-test and one-way analysis of variance (ANOVA) to analyze the data. Psychological symptoms (Anxiety and depression) showed positive correlation with TGF-Beta level in which relationships were significant (P=0.01). Psychological problems may be uniquely associated with the level of TGF-β in breast milk. More attention should be paid to the mental health of mothers during breastfeeding, and more research needs to be done in this subject to clarify the relationship between psychological variables with the level of TGF-β in breast milk."	"Tartrate-resistant acid phosphatase (TRAP/ACP5) promotes metastasis-related properties via TGFβ2/TβR and CD44 in MDA-MB-231 breast cancer cells. Tartrate-resistant acid phosphatase (TRAP/ACP5), a metalloenzyme that is characteristic for its expression in activated osteoclasts and in macrophages, has recently gained considerable focus as a driver of metastasis and was associated with clinically relevant parameters of cancer progression and cancer aggressiveness. MDA-MB-231 breast cancer cells with different TRAP expression levels (overexpression and knockdown) were generated and characterized for protein expression and activity levels. Functional cell experiments, such as proliferation, migration and invasion assays were performed as well as global phosphoproteomic and proteomic analysis was conducted to connect molecular perturbations to the phenotypic changes. We identified an association between metastasis-related properties of TRAP-overexpressing MDA-MB-231 breast cancer cells and a TRAP-dependent regulation of Transforming growth factor (TGFβ) pathway proteins and Cluster of differentiation 44 (CD44). Overexpression of TRAP increased anchorage-independent and anchorage-dependent cell growth and proliferation, induced a more elongated cellular morphology and promoted cell migration and invasion. Migration was increased in the presence of the extracellular matrix (ECM) proteins osteopontin and fibronectin and the basement membrane proteins collagen IV and laminin I. TRAP-induced properties were reverted upon shRNA-mediated knockdown of TRAP or treatment with the small molecule TRAP inhibitor 5-PNA. Global phosphoproteomics and proteomics analyses identified possible substrates of TRAP phosphatase activity or signaling intermediates and outlined a TRAP-dependent regulation of proteins involved in cell adhesion and ECM organization. Upregulation of TGFβ isoform 2 (TGFβ2), TGFβ receptor type 1 (TβR1) and Mothers against decapentaplegic homolog 2 (SMAD2), as well as increased intracellular phosphorylation of CD44 were identified upon TRAP perturbation. Functional antibody-mediated blocking and chemical inhibition demonstrated that TRAP-dependent migration and proliferation is regulated via TGFβ2/TβR, whereas proliferation beyond basal levels is regulated through CD44. Altogether, TRAP promotes metastasis-related cell properties in MDA-MB-231 breast cancer cells via TGFβ2/TβR and CD44, thereby identifying a potential signaling mechanism associated to TRAP action in breast cancer cells."	"Periostin in vitreoretinal diseases. Proliferative vitreoretinal diseases such as diabetic retinopathy, proliferative vitreoretinopathy (PVR), and age-related macular degeneration are a leading cause of decreased vision and blindness in developed countries. In these diseases, retinal fibro(vascular) membrane (FVM) formation above and beneath the retina plays an important role. Gene expression profiling of human FVMs revealed significant upregulation of periostin. Subsequent analyses demonstrated increased periostin expression in the vitreous of patients with both proliferative diabetic retinopathy and PVR. Immunohistochemical analysis showed co-localization of periostin with α-SMA and M2 macrophage markers in FVMs. In vitro, periostin blockade inhibited migration and adhesion induced by PVR vitreous and transforming growth factor-β2 (TGF-β2). In vivo, a novel single-stranded RNAi agent targeting periostin showed the inhibitory effect on experimental retinal and choroidal FVM formation without affecting the viability of retinal cells. These results indicated that periostin is a pivotal molecule for FVM formation and a promising therapeutic target for these proliferative vitreoretinal diseases."	"An antisense oligonucleotide targeting TGF-β2 inhibits lung metastasis and induces CD86 expression in tumor-associated macrophages. The transforming growth factor (TGF)-β pathway is a well-described inducer of immunosuppression and can act as an oncogenic factor in advanced tumors. Several preclinical and clinical studies show that the TGF-β pathway can be considered a promising molecular target for cancer therapy. The human genome has three TGF-β isoforms and not much is known about the oncogenic response to each of the isoforms. Here, we studied the antitumor response to ISTH0047, a recently developed locked nucleic acid-modified antisense oligonucleotide targeting TGF-β2. We have studied the anticancer response to ISTH0047 using gymnotic delivery in tumor cell cultures and in in vivo preclinical orthotopic mouse models for primary tumors (breast and kidney tumors) and lung metastasis. We observed that ISTH0047 is able to significantly reduce TGF-β2 mRNA and protein levels without altering the levels of TGF-β1 and TGF-β3. ISTH0047 prevented lung metastasis in syngeneic orthotopic renal cell carcinoma (RENCA) and breast cancer (4T1) tumor models. In addition, using an orthotopic xenograft model of a lung cancer cell line (CRL5807) that mainly expresses TGF-β2, we observed that ISTH0047 had an important effect on the lung microenvironment inhibiting the growth of lung lesions. ISTH0047 treatment re-educated macrophages in the lung parenchyma to express the tumor-suppressive factor, CD86. Overall, our data point to TGF-β2 as a therapeutic target and ISTH0047 as a novel anticancer drug to prevent lung metastasis by impacting on the tumor niche, in part, through the induction of CD86 in tumor-associated macrophages."	"Mechanism of Proliferation of Cultured Human Corneal Endothelial Cells. Because human corneal endothelial cells (HCECs) do not proliferate once the endothelial monolayer has formed, corneal wound healing is believed to be mediated by cell enlargement or migration, rather than by proliferation. However, the cellular mechanisms involved in wound healing by HCECs have not been fully determined. In this review, we focus on the effects of promyelocytic leukemia zinc finger (PLZF), a DNA-binding transcription factor, and transforming growth factor (TGF)-β2 on the proliferation and migration of cultured HCECs. Involvement of the mitogen-activated protein kinase (MAPK) signaling pathway in the migration of HCECs was also investigated. Expression of PLZF mRNA decreased as cell-cell contact was disrupted and returned to the original level as cell-cell contact was re-formed. Assessment with a real-time cell electronic sensing system revealed that proliferation of cultured HCECs was inhibited after infection with Ad-PLZF and exposure to TGF-β2. Migration of cultured HCECs was increased by TGF-β2 through p38 MAPK activation. We conclude that PLZF expression in cultured HCECs is closely related to the formation of cell-cell contact and that TGF-β2 suppresses proliferation of cultured HCECs, while promoting their migration through p38 MAPK activation."	"Neuroprotective effects of curcumin alleviate lumbar intervertebral disc degeneration through regulating the expression of iNOS, COX‑2, TGF‑β1/2, MMP‑9 and BDNF in a rat model. Curcumin is a natural product with antimutagenic, antitumor, antioxidant and neuroprotective properties. However, to the best of our knowledge, curcumin has yet to be investigated for the treatment of lumbar intervertebral disc degeneration LIDD). The aim of the present study was to investigate whether curcumin can alleviate LIDD through regulating the expression of inducible nitric oxide synthase (iNOS), cyclooxygenase (COX)‑2, transforming growth factor (TGF)‑β1/2, matrix metalloproteinase (MMP)‑9 and brain‑derived neurotrophic factor (BDNF) in a rat model of LIDD. The results of the present study suggest that pretreatment with curcumin can prevent the development of LIDD in rats. It was revealed that treatment with curcumin significantly reduced interleukin (IL)‑1β and IL‑6, iNOS, COX‑2 and MMP‑9 levels in rats with LIDD. In addition, treatment with curcumin reduced the mRNA expression levels of TGF‑β1 and TGF‑β2, whereas it increased the mRNA expression levels of BDNF in rats with LIDD. In conclusion, the present findings indicate that curcumin may exert protective effects on LIDD development, exerting its action through the regulation of iNOS, COX‑2, TGF‑β1/2, MMP‑9 and BDNF."	"Region-specific differential corneal and scleral mRNA expressions of MMP2, TIMP2, and TGFB2 in highly myopic-astigmatic chicks. Myopia and astigmatism, two common refractive errors frequently co-exist, are affecting vision at all working distances in the affected populations worldwide. Eyeballs having these refractive errors are known to exhibit abnormal eye shape at the anterior and posterior eye segments, but whether the outer coats of these abnormal eyeballs, cornea anteriorly and sclera posteriorly, are regulated by region-specific molecular mechanism remains unclear. Here we presented the changes in mRNA expression levels of three genes (MMP2, TIMP2, and TGFB2), all known to participate in extracellular matrix organization, at five regions of the cornea and sclera in chickens developing high myopia and astigmatism induced by form deprivation. We found that, compared to normal chicks, the highly myopic-astigmatic chicks had significantly higher expression of all three genes in the superior sclera (Mann-Whitney tests, all p ≤ 0.05), as well as higher TIMP2 expression in the central cornea and nasal sclera (Mann-Whitney tests, both p ≤ 0.05). Strikingly, the superior scleral region stood out as showing the strongest and most widespread correlations between mRNA expression and biometry parameters including axial and astigmatic components (r = + 0.52~ + 0.85, all p &lt; 0.05). These results imply that local molecular mechanism may manipulate the eye shape remodeling across the globe during refractive-error development."	"The Effects of Periostin in a Rat Model of Isoproterenol: Mediated Cardiotoxicity. Periostin is an extracellular matrix protein from fasciclin family, and it plays an important role in the cell adhesion, migration, and growth of the organism. Periostin prevents apoptosis while stimulating cardiomyocytes. The present study was designed to investigate cardioprotective effects of the recombinant murine periostin peptide administration in a rat model of isoproterenol (ISO)-induced myocardial injury. The experiment was performed on 84 adult male Sprague Dawley rats in 4 groups (n = 21): control group (1), periostin-treated group (2), ISO-treated group (3), and ISO + periostin-treated group (4). The groups were further divided into three subgroups based on the duration of the experiment in which rats were killed on days 1, 7, and 28 (n = 7). Growth factors (VEGF, ANGPT, FGF-2, TGFβ), mitosis and apoptosis (Bcl-2, Bax, PCNA, Ki-67, phospho-histone H3), cell cycle activators and inhibitors (cyclin D1, D2, A2, Cdc2), the origin of regenerating cells (cKit and CD45) mRNA were detected using quantitative real-time polymerase chain reaction (PCR) and PCR array. Immunohistochemistry staining was used to directly detect protein level and distribution in the heart tissues. Administration of periostin following ISO-induced cardiotoxicity revealed that periostin alleviated deleterious effects of ISO through several pathways: (1) periostin induced mitotic activity of endothelial/fibroblastic cells, (2) periostin drives cardiomyocytes into S and M phases, thus promoting proliferation of cardiomyocytes, (3) periostin contributed to collagen degradation, tissue remodeling, and reduced cardiac fibrosis during the healing process following myocardial damage while preserving tissue matrix, (4) periostin stimulated angiogenesis by upregulating THBS1, TGFB2, and HGF genes, (5) periostin regulated cell growth and proliferation while maintaining cell shape and cellular muscle contractions (ACTB) and functioned as chemoattractant factor (CCL2) at the beginning of myocardial damage."	"The ILK-MMP9-MRTF axis is crucial for EndMT differentiation of endothelial cells in a tumor microenvironment. Increasing evidence indicates that the tumor microenvironment is a critical factor supporting cancer progression, chemoresistance and metastasis. Recently, cancer-associated fibroblasts (CAFs) have been recognized as a crucial tumor stromal component promoting cancer growth and invasiveness via modulation of the extracellular matrix (ECM) structure, tumor metabolism and immune reprogramming. One of the main sources of CAFs are endothelial cells undergoing the endothelial-mesenchymal transition (EndMT). EndMT is mainly promoted by the Transforming Growth Factor-β (TGF-β) family secreted by tumor cells, though the role of particular members in EndMT regulation remains poorly understood. Our findings demonstrate that TGF-β2 induces mesenchymal transdifferentiation of human microvascular endothelial cells (HMEC-1 cells) to CAF-like cells in association with elongated cell morphology, modulation of stress fiber organization, higher α-SMA protein levels and activation of RhoA and Rac-1 pathways. Such regulation is similar to that observed in cells maintained using conditioned medium from invasive colorectal cancer cell line culture. Furthermore, TGF-β2 stimulation resulted in myocardin-related transcription factor (MRTF) activation and upregulation. Our results demonstrate for the first time that such interaction is sufficient for integrin-linked kinase (ILK) overexpression. ILK upregulation also enhanced MRTF activation via RhoA and Rac-1-MMP9 via inside-out integrin activation. Herein, we propose a new ILK-MMP9-MRTF axis that appears to be critical for EndMT differentiation of endothelial to CAF-like cells. Thus, it might be an attractive target for cancer treatment."	"Methionine-supplemented diet affects the expression of cardiovascular disease-related genes and increases inflammatory cytokines in mice heart and liver. Some important environmental factors that influence the development of cardiovascular diseases (CVD) include tobacco, excess alcohol, and unhealthy diet. Methionine obtained from the diet participates in the synthesis of DNA, proteins, lipids and affects homocysteine levels, which is associated with the elevated risk for CVD development. Therefore, the aim of this study was to investigate the manner in which dietary methionine might affect cellular mechanisms underlying CVD occurrence. Swiss albino mice were fed either control (0.3% DL-methionine), methionine-supplemented (2% DL-methionine), or a methionine-deprived diet (0% DL-methionine) over a 10-week period. The parameters measured included plasma homocysteine concentrations, oxidative stress by reduced glutathione (GSH)/oxidized glutathione (GSSG) ratio, levels of inflammatory cytokines IL-1ß, TNF-α, and IL-6, as well as expression of genes associated with CVD. The levels of apolipoprotein A5 (APOA5), a regulator of plasma triglycerides, were measured. The methionine-supplemented diet increased oxidative stress by lowering the GSH/GSSG ratio in heart tissues and decreased expression of the genes Apob, Ctgf, Serpinb2, Spp1, Il1b, and Sell, but elevated expression of Thbs4, Tgfb2, Ccr1, and Vegfa. Methionine-deprived diet reduced expression of Col3a1, Cdh5, Fabp3, Bax, and Hbegf and increased expression of Sell, Ccl5, Itga2, Birc3, Msr1, Bcl2a1a, Il1r2, and Selp. Methionine-deprived diet exerted pro-inflammatory consequences as evidenced by elevated levels of cytokines IL-1ß, TNF-α, and IL-6 noted in liver. Methionine-supplemented diet increased hepatic IL-6 and cardiac TNF-α. Both methionine supplementation and deprivation lowered hepatic levels of APOA5. In conclusion, data demonstrated that a methionine-supplemented diet modulated important biological processes associated with high risk of CVD development."	"Silencing of SOCS-1 and SOCS-3 suppresses renal interstitial fibrosis by alleviating renal tubular damage in a rat model of hydronephrosis. Our study was performed to elucidate how SOCS-1/3 silencing suppresses renal interstitial fibrosis (RIF) by alleviating renal tubular damage in rat models affected by hydronephrosis. Male Wistar rats were randomly selected to establish hydronephrosis rat model, after which all rats were classified into normal, model, negative control (NC), siRNA-SOCS-1, siRNA-SOCS-3, and siRNA-SOCS-1 + siRNA-SOCS-3 groups. The levels of urine protein, serum creatinine (Scr), and blood urea nitrogen (BUN) were detected. ELISA was performed to determine levels of cystatin (CysC), β2-microglobulin (β2-MG), interleukin (IL)-6, and tumor necrosis factor (TNF)-α. RT-qPCR and Western blotting were used for mRNA and protein expressions of SOCS-1, SOCS-3, α-smooth muscle actin (α-SMA), and transforming Growth Factor (TGF)-β1. Compared with the normal group, the levels of Scr, BUN, urine protein, NAG, CysC, β2-MG, IL-6, and TNF-α were increased in other groups, as well as elevated mRNA and protein expressions of SOCS-1, SOCS-3, α-SMA, and TGF-β1. The siRNA-SOCS-1, siRNA-SOCS-3, and siRNA-SOCS-1 + siRNA-SOCS-3 groups were found with decreased levels of Scr, BUN, urine protein, NAG, CysC, β2-MG, IL-6, and TNF-α, as well as mRNA and protein expressions of SOCS-1, SOCS-3, α-SMA, and TGF-β1, including positive rates of SOCS-1 and SOCS-3 proteins in comparison with the model and NC groups. In comparison with the siRNA-SOCS-1 and siRNA-SOCS-3 groups, the siRNA-SOCS-1 + siRNA-SOCS-3 group exhibited decreased levels of Scr, BUN, urine protein, NAG, CysC, β2-MG, IL-6, and TNF-α. Our study demonstrated that silencing of SOCS-1/3 may suppress RIF by alleviating the renal tubular damage in rat models affected by hydronephrosis."	"Transforming Growth Factor Beta is regulated by a Glucocorticoid-Dependent Mechanism in Denervation Mouse Bone. Bone growth and remodeling is inhibited by denervation in adults and children, resulting in alterations of linear growth and bone mass and increased risk for osteoporosis and pathologic fractures. Transforming growth factor beta (TGF-β) isoforms are a key group of growth factors that enhance bone formation. To explore the relation between denervation-induced reduction of bone formation and TGF-β gene expression, we measured mRNA levels of TGF-β in denervation mouse bone and found decreased mRNA levels of TGF-β1, TGF-β2 and TGF-β3. These changes were accompanied by diminishing weight loss, bone mineral density (BMD), trabecular thickness, trabecular separation and trabecular number of femur and lumbar, serum osteocalcin, total calcium, intact parathyroid hormone, and increased serum C telopeptide. Recombinant human TGF-β1 (rhTGF-β1) prevented denervation-induced reduction of BMD further supporting our hypothesis that denervation-induced reduction of bone formation is a result of inhibition of TGF-β gene expression. In addition, antiprogestins RU 38486 blunted the denervation-induced decrease in mRNA levels of TGF-β group, while dexamethasone (DEX) decreased TGF-β group mRNA levels in normal mice. Furthermore, the denervated-mice exhibited a threefold increase in plasma corticosterone. These results suggest that denervation-induced reduction of bone formation may be regulated by glucocorticoids via inhibition of TGF-β gene expression at least in part."	"Featured Article: In vitro development of personalized cartilage microtissues uncovers an individualized differentiation capacity of human chondrocytes. Personalized features in the treatment of knee injuries and articular replacement therapies play an important role in modern life with increasing demand. Therefore, cell-based therapeutic approaches for the regeneration of traumatic defects of cartilage tissue were developed. However, great variations in the quality of repair tissue or therapeutic outcome were observed. The aim of the study was to capture and visualize individual differentiation capacities of chondrocytes derived from different donors with regard to a possible personal regeneration capacity using a cell-based therapy. The redifferentiation potential of monolayer cultured cells was analyzed in a scaffold-free three-dimensional tissue model. Furthermore, stimulating options using cartilage maturation factors such as L-ascorbic acid and transforming growth factor beta 2 (TGF-β2) on this process were of special interest. Cells and tissues were analyzed via histological and immunohistochemical methods. Gene expression was measured by quantitative real-time polymerase chain reaction. In monolayer culture, cells from all donors showed an almost identical differentiation profile. In contrast, the differentiation state of cartilage-like three-dimensional microtissues revealed clear differences with respect to individual donors. Analyses at the protein and mRNA levels showed high variations regarding cartilage-typical matrix components (e.g. proteoglycans, collagen type II) and intracellular proteins (e.g. S100). Interestingly, only donor chondrocytes with a basic tendency to re-differentiate in a three-dimensional environment were able to increase this tissue-specific maturation when exposed to L-ascorbic acid and/or TGF-β2. Our approach revealed clear-cut possibilities for classification of individual donors into responders or non-responders. On the basis of these results an in vitro platform could be designed to discriminate responders from non-responders. This in vitro three-dimensional test system may be a suitable basis to establish a &quot;personalized diagnostic tool&quot; with the opportunity to assess the capacity of expanded chondrocytes to respond to an autologous cell-based therapy. Impact statement A challenge in cell-based cartilage regeneration therapies is the identification of a &quot;personalized diagnostic tool&quot; to predict the chondrogenic potency of cells from patients who are going to be treated with autologous cells. Comparing the phenotype of isolated chondrocytes from different donors in vitro revealed an individual cartilage-specific differentiation capacity. These personalized features are not detectable in vitro until the monolayer cells have the possibility to rearrange in 3D tissues. Cells from articular cartilage in monolayer culture may not be a suitable basis to discriminate responders from non-responders with respect to a personalized cell-based therapy to treat cartilage defects. A more physiological 3D (micro-)environment enable the cells to present their individual differentiation capacity. The here described microtissue model might be the basis for an in vitro platform to predict the therapeutic outcome of autologous cell-based cartilage repair and/or a suitable tool to identify early biomarkers to classify the patients."	"Breast Milk Transforming Growth Factor β Is Associated With Neonatal Gut Microbial Composition. Breast milk is a complex bioactive fluid that varies across numerous maternal and environmental conditions. Although breast-feeding is known to affect neonatal gut microbiome, the milk components responsible for this effect are not well-characterized. Given the wide range of immunological activity breast milk cytokines engage in, we investigated 3 essential breast milk cytokines and their association with early life gut microbiota. A total of 52 maternal-child pairs were drawn from a racially diverse birth cohort based in Detroit, Michigan. Breast milk and neonatal stool specimens were collected at 1-month postpartum. Breast milk transforming growth factor (TGF)β1, TGFβ2, and IL-10 were assayed using enzyme-linked immunosorbent assays, whereas neonatal gut microbiome was profiled using 16S rRNA sequencing. Individually, immunomodulators TGFβ1 and TGFβ2 were significantly associated with neonatal gut microbial composition (R = 0.024, P = 0.041; R = 0.026, P = 0.012, respectively) and increased richness, evenness, and diversity, but IL-10 was not. The effects of TGFβ1 and TGFβ2, however, were not independent of one another, and the effect of TGFβ2 was stronger than that of TGFβ1. Higher levels of TGFβ2 were associated with the increased relative abundance of several bacteria, including members of Streptococcaceae and Ruminococcaceae, and lower relative abundance of distinct Staphylococcaceae taxa. Breast milk TGFβ concentration explains a portion of variability in gut bacterial microbiota composition among breast-fed neonates. Whether TGFβ acts in isolation or jointly with other bioactive components to alter bacterial composition requires further investigation. These findings contribute to an increased understanding of how breast-feeding affects the gut microbiome-and potentially immune development-in early life."	"Threonine deficiency decreased intestinal immunity and aggravated inflammation associated with NF-κB and target of rapamycin signalling pathways in juvenile grass carp (Ctenopharyngodon idella) after infection with Aeromonas hydrophila. This study aimed to investigate the impacts of dietary threonine on intestinal immunity and inflammation in juvenile grass carp. Six iso-nitrogenous semi-purified diets containing graded levels of threonine (3·99-21·66 g threonine/kg) were formulated and fed to fishes for 8 weeks, and then challenged with Aeromonas hydrophila for 14 d. Results showed that, compared with optimum threonine supplementation, threonine deficiency (1) decreased the ability of fish against enteritis, intestinal lysozyme activities (except in the distal intestine), acid phosphatase activities, complement 3 (C3) and C4 contents and IgM contents (except in the proximal intestine (PI)), and it down-regulated the transcript abundances of liver-expressed antimicrobial peptide (LEAP)-2A, LEAP-2B, hepcidin, IgZ, IgM and β-defensin1 (except in the PI) (P&lt;0·05); (2) could up-regulate intestinal pro-inflammatory cytokines TNF-α, IL-1β, IL-6, IL-8 and IL-17D mRNA levels partly related to NF-κB signalling; (3) could down-regulate intestinal anti-inflammatory cytokine transforming growth factor (TGF)-β1, TGF-β2, IL-4/13A (not IL-4/13B) and IL-10 mRNA levels partly by target of rapamycin signalling. Finally, on the basis of the specific growth rate, against the enteritis morbidity and IgM contents, the optimum threonine requirements were estimated to be 14·53 g threonine/kg diet (4·48 g threonine/100 g protein), 15.05 g threonine/kg diet (4·64 g threonine/100 g protein) and 15·17 g threonine/kg diet (4·68 g threonine/100 g protein), respectively."	"Olodaterol shows anti-fibrotic efficacy in in vitro and in vivo models of pulmonary fibrosis. Idiopathic pulmonary fibrosis (IPF) is a fatal respiratory disease characterized by excessive fibroblast activation ultimately leading to scarring of the lungs. Although, the activation of β2 -adrenoceptors (β2 -AR) has been shown to inhibit pro-fibrotic events primarily in cell lines, the role of β2 -adrenoceptor agonists has not yet been fully characterized. The aim of our study was to explore the anti-fibrotic activity of the long-acting β2 -adrenoceptor agonist olodaterol in primary human lung fibroblasts (HLF) and in murine models of pulmonary fibrosis. We assessed the activity of olodaterol to inhibit various pro-fibrotic mechanisms, induced by different pro-fibrotic mediators, in primary HLF from control donors and patients with IPF (IPF-LF). The in vivo anti-fibrotic activity of olodaterol, given once daily by inhalation in either a preventive or therapeutic treatment regimen, was explored in murine models of lung fibrosis induced by either bleomycin or the overexpression of TGF-β1. In both HLF and IPF-LF, olodaterol attenuated TGF-β-induced expression of α-smooth muscle actin, fibronectin and endothelin-1 (ET-1), FGF- and PDGF-induced motility and proliferation and TGF-β/ET-1-induced contraction. In vivo olodaterol significantly attenuated the bleomycin-induced increase in lung weight, reduced bronchoalveolar lavage cell counts and inhibited release of pro-fibrotic mediators (TGF-ß, MMP-9 and tissue inhibitor of metalloproteinase-1). Forced vital capacity was increased only with the preventive treatment regimen. In the TGF-β-overexpressing model, olodaterol additionally reduced the Col3A1 mRNA expression. Olodaterol showed anti-fibrotic properties in primary HLF from control and IPF patients and in murine models of lung fibrosis."	"Role of GARP in the activation of latent TGF-β1. TGF-β1, 2 and 3 cytokines are involved in many cellular processes including cell proliferation, differentiation, migration and survival. Whereas TGF-β2 and 3 play important roles in embryonic development, TGF-β1 is mostly implicated in controlling immune responses after birth. The production of TGF-β1 is a tightly regulated process, occurring mostly at a post-translational level. Virtually all cells produce the latent, inactive form of TGF-β1. In latent TGF-β1, the mature TGF-β1 dimer is non-covalently associated to the Latency Associated Peptide, or LAP, which prevents binding to the TGF-β1 receptor. Activation of the cytokine implies release of mature TGF-β1 from LAP. Only a few cell types activate latent TGF-β1, via mechanisms that are cell type specific. Proteins such as integrins, proteases and thrombospondin-1 activate TGF-β1 in epithelial cells, fibroblasts and dendritic cells. More recently, the protein GARP was shown to be involved in TGF-β1 activation by regulatory T cells (Treg), a subset of CD4<sup>+</sup> T lymphocytes specialized in suppression of immune responses. GARP is a transmembrane protein that binds latent-TGF-β1 and tethers it on the Treg surface. The role of GARP was studied mostly in Tregs, and this was recently reviewed in L. Sun, H. Jin and H. Li, Oncotarget, 2016, 7, 42826-42836. However, GARP is also expressed in non-immune cells. This review focuses on the roles of GARP in latent TGF-β1 activation by immune and non-immune cells."	"Differentiation of Mesenchymal Stem Cells Towards Nephrogenic Lineage and Their Enhanced Resistance to Oxygen Peroxide-induced Oxidative Stress. Mesenchymal stem cells (MSCs) have been publicized to ameliorate kidney injury both in vitro and in vivo. However, very less is known if MSCs can be differentiated towards renal lineages and their further application potential in kidney injuries. The present study developed a conditioning system of growth factors fibroblast growth factor 2, transforming growth factor-β2, and leukemia inhibitory factor for in vitro differentiation of MSCs isolated from different sources towards nephrogenic lineage. Less invasively isolated adipose-derived MSCs were also compared to bone marrow-derived MSCs for their differentiation potential to induce renal cell. Differentiated MSCs were further evaluated for their resistance to oxidative stress induced by oxygen peroxide. A combination of growth factors successfully induced differentiation of MSCs. Both types of differentiated cells showed significant expression of pronephrogenic markers (Wnt4, Wt1, and Pax2) and renal epithelial markers (Ecad and ZO1). In contrast, expression of mesenchymal stem cells marker Oct4 and Vim were downregulated. Furthermore, differentiated adipose-derived MSCs and bone marrow-derived MSCs showed enhanced and comparable resistance to oxygen peroxide-induced oxidative stress. Adipose-derived MSC provides a promising alternative to bone marrow-derived MSC as a source of autologous stem cells in human kidney injuries. In addition, differentiated MSCs with further in vivo investigations may serve as a cell source for tissue engineering or cell therapy in different renal ailments."	"Statins reduce TGF-beta2-modulation of the extracellular matrix in cultured astrocytes of the human optic nerve head. Statins are cholesterol lowering drugs and have shown beneficial effects on glaucoma. With regard to the mechanism of statin action on glaucoma, we investigated the effects of statins on transforming growth factor-beta 2 (TGF-β2)-induced expression of extracellular matrix (ECM) proteins in human astrocytes of the optic nerve head (ONH) lamina cribrosa (LC). By using primary human ONH astrocytes, we found that both simvastatin and lovastatin inhibited TGF-β2-mediated expression of ECM proteins such as connective tissue growth factor, collagen I, fibronectin, and plasminogen activator inhibitor-1. Suppression of ECM related proteins is due to inhibition of Smad2/3 activation as statins inhibit TGF-β2-induced Smad2 phosphorylation and Smad2/3 nuclear accumulation. In ONH astrocytes, TGF-β2 does not induce MAPK activation. In this study we found an anti-fibrotic effect of statins in human astrocytes of the ONH and identified TGF-β2 as a mediator of statin action, which may support a beneficial role for statins in blocking glaucomatous axonal damage induced by ECM remodeling."	"Pilot Evaluation of Angiogenesis Signaling Factor Response after Transcatheter Arterial Embolization for Hepatocellular Carcinoma. Purpose To identify changes in a broad panel of circulating angiogenesis factors after bland transcatheter arterial embolization (TAE), a purely ischemic treatment for hepatocellular carcinoma (HCC). Materials and Methods This prospective HIPAA-compliant study was approved by the institutional review board. Informed written consent was obtained from all participants prior to entry into the study. Twenty-five patients (21 men; mean age, 61 years; range, 30-81 years) with Liver Imaging Reporting and Data System category 5 or biopsy-proven HCC and who were undergoing TAE were enrolled from October 15, 2014, through December 2, 2015. Nineteen plasma angiogenesis factors (angiopoietin 2; hepatocyte growth factor; platelet-derived growth factor AA and BB; placental growth factor; vascular endothelial growth factor A and D; vascular endothelial growth factor receptor 1, 2, and 3; osteopontin; transforming growth factor β1 and β2; thrombospondin 2; intercellular adhesion molecule 1; interleukin 6 [IL-6]; stromal cell-derived factor 1; tissue inhibitor of metalloproteinases 1; and vascular cell adhesion molecule 1 [VCAM-1]) were measured by using enzyme-linked immunosorbent assays at 1 day, 2 weeks, and 5 weeks after TAE and were compared with baseline levels by using paired Wilcoxon tests. Tumor response was assessed according to modified Response Evaluation Criteria in Solid Tumors (mRECIST). Angiogenesis factor levels were compared between responders and nonresponders by mRECIST criteria by using unpaired Wilcoxon tests. Results All procedures were technically successful with no complications. Fourteen angiogenesis factors showed statistically significant changes following TAE, but most changes were transient. IL-6 was upregulated only 1 day after the procedure, but showed the largest increases of any factor. Osteopontin and VCAM-1 demonstrated sustained upregulation at all time points following TAE. At 3-month follow-up imaging, 11 patients had responses to TAE (complete response, n = 6; partial response, n = 5) and 11 patients were nonresponders (stable disease, n = 9; progressive disease, n = 2). In nonresponders, the percent change in IL-6 on the day after TAE (P = .033) and the mean percent change in osteopontin after TAE (P = .024) were significantly greater compared with those of responders. Conclusion Multiple angiogenesis factors demonstrated significant upregulation after TAE. VCAM-1 and osteopontin demonstrated sustained upregulation, whereas the rest were transient. IL-6 and osteopontin correlated significantly with radiologic response after TAE. <sup>©</sup> RSNA, 2017."	"DNA methylation of CMTM3, SSTR2, and MDFI genes in colorectal cancer. Colorectal cancer (CRC) is increasingly common worldwide, including in China. Therefore, there is an increasing need to detect CRC at an early stage and to discover and evaluate diagnostic and prognostic biomarkers. DNA methylation of genes in CRC is a potential epigenetic biomarker for the early detection of CRC. This study was performed to analyze the methylation frequency of six candidate genes, CMTM3, SSTR2, MDFI, NDRG4, TGFB2, and BCL2L11, in fresh-frozen CRC tissues and adjacent normal colorectal tissues, from 42 patients with CRC. DNA isolation, bisulphite modification, and pyrosequencing were performed. The sensitivity, specificity, and the area under the receiver operator characteristic (ROC) curve (AUC) were evaluated to determine whether these genes showed any associations with tumor grade, stage, or diagnostic features. Among the tested genes, three genes, CMTM3, SSTR2, and MDFI were significantly methylated in CRC tissues when compared with adjacent normal colorectal tissues. The ROC analysis showed that a multigene model, including CMTM3, SSTR2, and MDFI, had a sensitivity of 81% and a specificity of 91% with an AUC value of 0.92. The findings of this study have shown that DNA methylation of the genes, CMTM3, SSTR2, and MDFI should be studied further with a view to determining their potential role as biomarkers for CRC."	"Role of the TGF-β pathway in dedifferentiation of human mature adipocytes. Dedifferentiation of adipocytes contributes to the generation of a proliferative cell population that could be useful in cellular therapy or tissue engineering. Adipocytes can dedifferentiate into precursor cells to acquire a fibroblast-like phenotype using ceiling culture, in which the buoyancy of fat cells is exploited to allow them to adhere to the inner surface of a container. Ceiling culture is usually performed in flasks, which limits the ability to test various culture conditions. Using a new six-well plate ceiling culture approach, we examined the relevance of TGF-β signaling during dedifferentiation. Adipose tissue samples from patients undergoing bariatric surgery were digested with collagenase, and cell suspensions were used for ceiling cultures. Using the six-well plate approach, cells were treated with SB431542 (an inhibitor of TGF-β receptor ALK5) or human TGF-β1 during dedifferentiation. Gene expression was measured in these cultures and in whole adipose tissue, the stromal-vascular fraction (SVF), mature adipocytes, and dedifferentiated fat (DFAT) cells. TGF-β1 and collagen type I alpha 1 (COL1A1) gene expression was significantly higher in DFAT cells compared to whole adipose tissue samples and SVF cells. TGF-β1, COL1A1, and COL6A3 gene expression was significantly higher at day 12 of dedifferentiation compared to day 0. In the six-well plate model, treatment with TGF-β1 or SB431542, respectively, stimulated and inhibited the TGF-β pathway as shown by increased TGF-β1, TGF-β2, COL1A1, and COL6A3 gene expression and decreased expression of TGF-β1, COL1A1, COL1A2, and COL6A3, respectively. Treatment of DFAT cells with TGF-β1 increased the phosphorylation level of SMAD 2 and SMAD 3. Thus, a new six-well plate model for ceiling culture allowed us to demonstrate a role for TGF-β in modulating collagen gene expression during dedifferentiation of mature adipocytes."	"Overexpression of integrin α11 induces cardiac fibrosis in mice. To understand the role of the collagen-binding integrin α11 in vivo, we have used a classical approach of creating a mouse strain overexpressing integrin α11. A transgenic mouse strain overexpressing α11 in muscle tissues was analysed in the current study with special reference to the heart tissue. We generated and phenotyped integrin α11 transgenic (TG) mice by echocardiography, magnetic resonance imaging and histology. Wild-type (WT) mice were subjected to aortic banding (AB) and the expression of integrin α11 was measured in flow cytometry-sorted cardiomyocytes and non-myocytes. TG mice developed left ventricular concentric hypertrophy by 6 months, with increased collagen deposition and reactivation of mRNA encoding foetal genes associated with cardiovascular pathological remodelling compared to WT mice. Masson's trichrome staining revealed interstitial fibrosis, confirmed additionally by magnetic resonance imaging and was found to be most prominent in the cardiac septum of TG but not WT mice. TG hearts expressed increased levels of transforming growth factor-β2 and transforming growth factor-β3 and upregulated smooth muscle actin. Macrophage infiltration coincided with increased NF-κB signalling in TG but not WT hearts. Integrin α11 expression was increased in both cardiomyocytes and non-myocyte cells from WT AB hearts compared to sham-operated animals. We report for the first time that overexpression of integrin α11 induces cardiac fibrosis and left ventricular hypertrophy. This is a result of changes in intracellular hypertrophic signalling and secretion of soluble factors that increase collagen production in the heart."	"Effects of the combined extracts of Herba Epimedii and Fructus Ligustrilucidi on airway remodeling in the asthmatic rats with the treatment of budesonide. Asthma is characterized by chronic airway inflammation, leading to structura1 changes in the airway, collectively termed airway remodeling. Airway remodeling is thought to contribute to airway hyper responsiveness and irreversible airflow limitation. The combination of Herba Epimedii (HE) and Fructus Ligustri Lucidi (FLL) decoction and the systemic administration of glucocorticoids (GC) had a synergistic inhibitory action on airway inflammation in the asthmatic model rats. However, the effects of the combination on airway remodeling have not been studied and compared. In the present study, we investigated the effects of the co-administration of combined extracts of HE and FLL with inhaled GC (budesonide) on airway remodeling in the rat asthmatic model induced by ovalbumin (OVA). Male Sprague-Dawley rats were sensitized to intraperitoneal OVA followed by repetitive OVA challenge for 7 weeks. Treatments included extracts of HE and FLL (Extracts for short, 100 mg/kg by gastric perfusion), budesonide (1 mg budesonide suspension in 50 ml sterile physiological saline, 3 rats in an ultrasonic nebulizer by nebulized inhabation with a flow of 1.6 ml/min for 30 min), and co-administration of extracts of HE and FLL with budesonide (Co-administration for short) for 4 weeks. Lung histomorphometry and bronchoalveolar lavage fluid (BALF) cell count were assessed 24 h after the final OVA challenge. Levels of interleukin (IL)-4, IL-5 and IgE were measured by ELISA. Expressions of Collagen I and Collagen III were tested by immunohistology. Expressions of transforming growth factor (TGF) -β1, TGF-β2 and Smads mRNA were measured by quantitative real-time PCR. Extracts, budesonide and Co-administration significantly reduced allergen-induced increases in the serum levels of IL-4, IL-5 and IgE, the number of eosinophils in BALF, goblet cell hyperplasia, Collagen III integral optical density (IOD) and the mRNA expression of TGF-β2 and Smad2. Extracts and Co-administration could depress the IOD level of Collagen I and the positive area of Collagen I and Collagen III. Budesonide and Co-administration significantly alleviated the thickening of airway wall. Only Co-administration significantly decreased collagen deposition according to the morphometry of Masson's-stained lung sections, the thickening of airway smooth muscle layer, the number of lymphocytes in BALF and the mRNA expression of TGF-β1 and Smad3, and this was associated with a significant increase in levels of Smad7 mRNA. The findings suggested that the combination of budesonide and the herbal extracts had a better synergistic effect on airway remodeling in OVA-reduced asthma rats than the single use of budesonide."	"Ratios of T-helper 2 Cells to T-helper 1 Cells and Cytokine Levels in Patients with Hepatitis B. Hepatitis B is an immune response-mediated disease. The aim of this study was to explore the differences of ratios of T-helper (Th) 2 cells to Th1 cells and cytokine levels in acute hepatitis B (AHB) patients and chronic hepatitis B virus (HBV)-infected patients in immune-tolerance and immune-active phases. Thirty chronic HBV-infected patients in the immune-tolerant phase (IT group) and 50 chronic hepatitis B patients in the immune-active (clearance) phase (IC group), 32 AHB patients (AHB group), and 13 healthy individuals (HI group) were enrolled in the study. Th cell proportions in peripheral blood, cytokine levels in plasma, and serum levels of HBV DNA, hepatitis B surface antigen, and hepatitis B e antigen were detected. The Th1 cell percentage and Th2/Th1 ratio in the HBV infection group (including IT, IC, and AHB groups) were significantly different from those in HI group (24.10% ± 8.66% and 1.72 ± 0.61 vs. 15.16% ± 4.34% and 2.40 ± 0.74, respectively; all P &lt; 0.001). However, there were no differences in the Th1 cell percentages and Th2/Th1 ratios among the IT, IC, and AHB groups. In HBV infection group, the median levels of Flt3 ligand (Flt3L), interferon (IFN)-γ, and interleukin (IL)-17A were significantly lower than those in HI group (29.26 pg/ml, 33.72 pg/ml, and 12.27 pg/ml vs. 108.54 pg/ml, 66.48 pg/ml, and 35.96 pg/ml, respectively; all P &lt; 0.05). IFN-α2, IL-10, and transforming growth factor (TGF)-β2 median levels in hepatitis group (including patients in AHB and IC groups) were significantly higher than those in IT group (40.14 pg/ml, 13.58 pg/ml, and 557.41 pg/ml vs. 16.74 pg/ml, 6.80 pg/ml, and 419.01 pg/ml, respectively; all P &lt; 0.05), while patients in hepatitis group had significant lower Flt3L level than IT patients (30.77 vs. 59.96 pg/ml, P = 0.021). Compared with IC group, patients in AHB group had significant higher median levels of IL-10, TGF-β1, and TGF-β2 (22.77 pg/ml, 10,447.00 pg/ml, and 782.28 pg/ml vs. 8.66 pg/ml, 3755.50 pg/ml, and 482.87 pg/ml, respectively; all P &lt; 0.05). Compared with chronic HBV-infected patients in immune-tolerance phase, chronic HBV-infected patients in immune-active phase and AHB patients had similar Th2/Th1 ratios, significantly higher levels of IFN-α2, IL-10, and TGF-β. AHB patients had significantly higher IL-10 and TGF-β levels than chronic HBV-infected patients in immune-active phase."	"Expressions of TGF-β2, bFGF and ICAM-1 in lens epithelial cells of complicated cataract with silicone oil tamponade. To investigate the expression differences of transforming growth factor-β2 (TGF-β2), basic fibroblast growth factor (bFGF) and intercellular cell-adhesion molecule-1 (ICAM-1) in lens epithelial cells (LECs) of complicated cataract with silicone oil tamponade and age-related cataract. Totally 150 eyes of 150 patients (aged 35 to 77y) were investigated, including 75 patients with complicated cataract after silicone oil tamponade and 75 patients with age-related cataract. The central piece of anterior capsules was collected during cataract surgery. TGF-β2, bFGF and ICAM-1 were detected in the 60 specimens of the two groups by immunohistochemistry. The expression levels of the three kinds of messenger ribonucleic acid (mRNA) were determined by real-time quantitative reverse transcription-polymerase chain reaction in the 90 specimens of the two groups. TGF-β2 was detected in the cytomembrane and cytoplasm of the LECs and bFGF was detected in the nucleus. ICAM-1 was positive in the cytomembrane of the LECs and the distribution of positive cells was uneven. The mRNA genes expression of the TGF-β2, bFGF and ICAM-1 was significant differences between the two groups and markedly increased in complicated cataract group (P&lt;0.05). The up-regulated TGF-β2, bFGF and ICAM-1 maybe associate with the occurrence and development of complicated cataract with silicone oil tamponade."	"TGF-β (Transforming Growth Factor-β) Signaling Protects the Thoracic and Abdominal Aorta From Angiotensin II-Induced Pathology by Distinct Mechanisms. The role of TGF-β (transforming growth factor-β) signaling in abdominal aortic aneurysm (AAA) formation is controversial. Others reported that systemic blockade of TGF-β by neutralizing antibodies accelerated AAA development in angiotensin II-infused mice. This result is consistent with other studies suggesting that TGF-β signaling prevents AAA. Development of a therapy for AAA that exploits the protective actions of TGF-β would be facilitated by identification of the mechanisms through which TGF-β prevents AAA. We hypothesized that TGF-β signaling prevents AAA by its actions on aortic medial smooth muscle cells. We compared the prevalence, severity, and histopathology of angiotensin II-induced AAA among control mice (no TGF-β blockade), mice with antibody-mediated systemic neutralization of TGF-β, and mice with genetically based smooth muscle-specific loss of TGF-β signaling. Surprisingly, we found that systemic-but not smooth muscle-specific-TGF-β blockade significantly increased the prevalence of AAA and tended to increase AAA severity, adventitial thickening, and aortic wall macrophage accumulation. In contrast, abdominal aortas of mice with smooth muscle-specific loss of TGF-β signaling differed from controls only in having a thinner media. We examined thoracic aortas of the same mice. Here we found that smooth muscle-specific loss of Tgfbr2-but not systemic TGF-β neutralization-significantly accelerated development of aortic pathology, including increased prevalence of intramural hematomas, medial thinning, and adventitial thickening. Our results suggest that TGF-β signaling prevents both abdominal and thoracic aneurysmal disease but does so by distinct mechanisms. Smooth muscle extrinsic signaling protects the abdominal aorta and smooth muscle intrinsic signaling protects the thoracic aorta."	"Suppressive effect of AMP-activated protein kinase on the epithelial-mesenchymal transition in retinal pigment epithelial cells. The epithelial-mesenchymal transition (EMT) in retinal pigment epithelial (RPE) cells plays a central role in the development of proliferative vitreoretinopathy (PVR). The purpose of this study was to investigate the effect of AMP-activated protein kinase (AMPK), a key regulator of energy homeostasis, on the EMT in RPE cells. In this study, EMT-associated formation of cellular aggregates was induced by co-stimulation of cultured ARPE-19 cells with tumor necrosis factor (TNF)-α (10 ng/ml) and transforming growth factor (TGF)-β2 (5 ng/ml). 5-Aminoimidazole-4-carboxamide-1-β-D-ribofuranoside (AICAR), a potent activator of AMPK, significantly suppressed TNF-α and TGF-β2-induced cellular aggregate formation (p &lt; 0.01). Dipyridamole almost completely reversed the suppressive effect of AICAR, whereas 5'-amino-5'-deoxyadenosine restored aggregate formation by approximately 50%. AICAR suppressed the downregulation of E-cadherin and the upregulation of fibronectin and α-smooth muscle actin by TNF-α and TGF-β2. The levels of matrix metalloproteinase (MMP)-2, MMP-9, interleukin-6, and vascular endothelial growth factor were significantly decreased by AICAR. Activation of the mitogen-activated protein kinase and mammalian target of rapamycin pathways, but not the Smad pathway, was inhibited by AICAR. These findings indicate that AICAR suppresses the EMT in RPE cells at least partially via activation of AMPK. AMPK is a potential target molecule for the prevention and treatment of PVR, so AICAR may be a promising candidate for PVR therapy."	"Klf8 regulates left-right asymmetric patterning through modulation of Kupffer's vesicle morphogenesis and spaw expression. Although vertebrates are bilaterally symmetric organisms, their internal organs are distributed asymmetrically along a left-right axis. Disruption of left-right axis asymmetric patterning often occurs in human genetic disorders. In zebrafish embryos, Kupffer's vesicle, like the mouse node, breaks symmetry by inducing asymmetric expression of the Nodal-related gene, spaw, in the left lateral plate mesoderm (LPM). Spaw then stimulates transcription of itself and downstream genes, including lft1, lft2, and pitx2, specifically in the left side of the diencephalon, heart and LPM. This developmental step is essential to establish subsequent asymmetric organ positioning. In this study, we evaluated the role of krüppel-like factor 8 (klf8) in regulating left-right asymmetric patterning in zebrafish embryos. Zebrafish klf8 expression was disrupted by both morpholino antisense oligomer-mediated knockdown and a CRISPR-Cas9 system. Whole-mount in situ hybridization was conducted to evaluate gene expression patterns of Nodal signalling components and the positions of heart and visceral organs. Dorsal forerunner cell number was evaluated in Tg(sox17:gfp) embryos and the length and number of cilia in Kupffer's vesicle were analyzed by immunocytochemistry using an acetylated tubulin antibody. Heart jogging, looping and visceral organ positioning were all defective in zebrafish klf8 morphants. At the 18-22 s stages, klf8 morphants showed reduced expression of genes encoding Nodal signalling components (spaw, lft1, lft2, and pitx2) in the left LPM, diencephalon, and heart. Co-injection of klf8 mRNA with klf8 morpholino partially rescued spaw expression. Furthermore, klf8 but not klf8△zf overexpressing embryos showed dysregulated bilateral expression of Nodal signalling components at late somite stages. At the 10s stage, klf8 morphants exhibited reductions in length and number of cilia in Kupffer's vesicle, while at 75% epiboly, fewer dorsal forerunner cells were observed. Interestingly, klf8 mutant embryos, generated by a CRISPR-Cas9 system, showed bilateral spaw expression in the LPM at late somite stages. This observation may be partly attributed to compensatory upregulation of klf12b, because klf12b knockdown reduced the percentage of klf8 mutants exhibiting bilateral spaw expression. Our results demonstrate that zebrafish Klf8 regulates left-right asymmetric patterning by modulating both Kupffer's vesicle morphogenesis and spaw expression in the left LPM."	"The production of fibroblast growth factor 23 is controlled by TGF-β2. Transforming growth factor-β (TGF-β) is a cytokine produced by many cell types and implicated in cell growth, differentiation, apoptosis, and inflammation. It stimulates store-operated calcium entry (SOCE) through the calcium release-activated calcium (CRAC) channel Orai1/Stim1 in endometrial Ishikawa cells. Bone cells generate fibroblast growth factor (FGF) 23, which inhibits renal phosphate reabsorption and 1,25(OH)2D3 formation in concert with its co-receptor Klotho. Moreover, Klotho and FGF23 counteract aging and age-related clinical conditions. FGF23 production is dependent on Orai1-mediated SOCE and inflammation. Here, we explored a putative role of TGF-β2 in FGF23 synthesis. To this end, UMR106 osteoblast-like cells were cultured, Fgf23 transcript levels determined by qRT-PCR, FGF23 protein measured by ELISA, and SOCE analyzed by fluorescence optics. UMR106 cells expressed TGF-β receptors 1 and 2. TGF-β2 enhanced SOCE and potently stimulated the production of FGF23, an effect significantly attenuated by SB431542, an inhibitor of the transforming growth factor-β (TGF-β) type I receptor activin receptor-like kinases ALK5, ALK4, and ALK7. Furthermore, the TGF-β2 effect on FGF23 production was blunted by SOCE inhibitor 2-APB. We conclude that TGF-β2 induces FGF23 production, an effect involving up-regulation of SOCE."	"Inhibition of Monocyte Chemoattractant Protein 1 Prevents Conjunctival Fibrosis in an Experimental Model of Glaucoma Filtration Surgery. To evaluate the effect of treatment with monocyte chemoattractant protein-1 receptor inhibitor (MCP-Ri) to maintain bleb survival and prevent fibrosis in an experimental model of glaucoma filtration surgery (GFS). GFS was performed on one eye of C57/Bl6 mice (n = 36) that was treated with MCP-Ri, mitomycin-C (MMC), or vehicle at the time of surgery. Real-time polymerase chain reaction was used to evaluate conjunctival expression of monocyte chemoattractant protein-1 (MCP-1), TGFB1, TGFB2, collagen 1a1 (Col1a1), sparc (Sparc), and fibronectin at 2 and 7 days following surgery. Anterior segment slit-lamp examination, optical coherence tomography, and confocal microscopy were performed in vivo at day 14. Eyes were processed for immunohistochemical staining of F4/80, a monocyte-macrophage marker, at day 2. In vitro experiments were also performed to compare the effect of MMC, MCP-Ri, and vehicle on the viability of mouse Tenon's fibroblasts. Treatment with MCP-Ri results in a greater reduction in the percentage of F4/80-positive cells in conjunctival blebs and lesser MCP-1 gene expression following experimental GFS than MMC or control. Both MMC and MCP-Ri reduced Col1a1 and Sparc expression, but not fibronectin. TGFB1 decreased with MCP-Ri but not MMC; MMC but not MCP-Ri reduced TGFB2. MMC and MCP-Ri treatment resulted in the preservation of bleb height at day 14, as compared to control. MCP-Ri was less toxic to mouse Tenon's fibroblasts in comparison with MMC. Targeting MCP-1 results in prolonged bleb survival following experimental GFS with less cellular toxicity as compared to MMC. MCP inhibition could provide a safer alternative to conventional antifibrotic adjunctive treatments in GFS."	"SRGN-TGFβ2 regulatory loop confers invasion and metastasis in triple-negative breast cancer. Patients with triple-negative breast cancers (TNBC) are at a high risk for a recurrent or metastatic disease, and the molecular mechanisms associated with this risk are unclear. Proteoglycan serglycin (SRGN) proteins are involved in tumor metastasis, but their role in TNBC has not yet been elucidated. This study investigates the SRGN gene expression and how it regulates TGFβ2 and the downstream signaling of TGFβ2 in TNBC cells and tissues. Our results show that SRGN mRNA and protein expression levels were significantly higher in TNBC cell lines and tumor tissues than that in non-TNBC cells and tissues. We inhibited SRGN expression and protein secretion using shRNA and we observed this inhibited the invasive motility of TNBC cancer cells in vitro and metastasis of TNBC cancer cells in vivo. SRGN protein treatment increased the expression and secretion of transforming growth factor-β2 (TGFβ2) by activating CD44/CREB1 signaling and promoted epithelial-to-mesenchymal transition in TNBC cells. Moreover, TGFβ2 treatment increased the mRNA and protein expression of the SRGN gene by activating Smad3 to target the SRGN relative promoter domain in TNBC cells. Our findings demonstrate that SRGN interacts with TGFβ2 which regulates TNBC metastasis via the autocrine and paracrine routes. SRGN could serve as a potential target for development of agents or therapeutics for the TNBC."	"Changes in the cytokine profile in first-episode, drug-naïve patients with psychosis after short-term antipsychotic treatment. An increasing body of evidence suggests that antipsychotic medication can cause immunological changes that could be attributed to the amelioration of psychotic symptoms or the metabolic side effects of the drugs. So far, the results of the studies remain controversial. Our aim was to compare the levels of interleukin (IL) IL-2, IL-6 and transforming growth factor-β2 (TGF-β2) in drug-naïve, first-episode patients with psychosis before and after six weeks of antipsychotic medication. Thirty-nine first-episode patients with psychosis were enrolled in the study. Serum levels of IL-2, IL-6 and TGF-β2 were measured by enzyme linked immunosorbent assay (ELISA) before and six weeks after the initiation of antipsychotics. In addition, clinical psychopathology was assessed using Positive and Negative Syndrome Scale (PANSS) before and after treatment. Serum levels of IL-2 were significantly increased six weeks after the initiation of antipsychotic treatment (p &lt;0.001) while TGF-β2 levels were decreased (p &lt;0.001). IL-6 levels were overall increased (p &lt;0.004), but this occurred in a non-linear way. These findings, although preliminary, provide further evidence that antipsychotic treatment in patients with psychosis may be correlated with immunological changes but further research is needed."	"Isoforms of TGF-β in the aqueous humor of patients with pseudoexfoliation syndrome and a possible association with the long-term stability of the capsular bag after cataract surgery. Pseudoexfoliation syndrome (PEXS) may go along with capsular bag shrinkage and luxation. In the present study, we focus on an association of isoforms of TGF-β with capsular bag luxation. Aqueous humor was collected intraoperatively from 20 healthy controls and from 73 otherwise healthy patients with PEXS [PEXS without complications (PEX, n = 33), late PEXS with glaucoma (PEXG, n = 30) and with IOL and capsular bag luxation (PEXL, n = 10)]. The concentrations of TGF-β1, TGF-β2 and TGF-β3 were compared using the Bio-Plex® multiplex beads system based on the non-parametric Kruskal-Wallis H test (p &lt; 0.01). Concentrations of TGF-β 1, TGF-β 2 and TGF-β 3 were higher in the sub-groups PEX and PEXG than in controls (TGF-β 1; p = 0.009 and 0.0005; TGF-β 2; p = 0.002 and 0.005 and TGF-β 3; 0.0005 and 0.0005; respectively), whereas for TGF β2, no significant difference between controls and PEXL was revealed (p = 1.0). TGF-β2 concentrations were elevated in a similar degree in early PEX and PEXG, but not in PEXL compared to controls (p = 0.002). The concentrations of of TGF-β 1 and TGF-β 3 increased in parallel with the progression of disease. The levels of TGF-β 3, however, did not attain pathophysiological levels (&gt;100 pg/ml) in any group. A stage-dependent increase in the concentrations of TGF-β1 and TGF-β3, but not of TGF-β2, accords to the shrinkage of the capsular bag. This could increase the tension on the zonular fibers and contribute to luxation of the capsular bag."	"Transforming Growth Factor-β2 Downregulates Major Histocompatibility Complex (MHC) I and MHC II Surface Expression on Equine Bone Marrow-Derived Mesenchymal Stem Cells Without Altering Other Phenotypic Cell Surface Markers. Allogeneic mesenchymal stem cells (MSCs) are a promising cell source for treating musculoskeletal injuries in horses. Effective and safe allogeneic therapy may be hindered, however, by recipient immune recognition and rejection of major histocompatibility complex (MHC)-mismatched MSCs. Development of strategies to prevent immune rejection of MHC-mismatched MSCs in vivo is necessary to enhance cell survival and potentially increase the efficacy and safety of allogeneic MSC therapy. The purposes of this study were to evaluate if transforming growth factor-β2 (TGF-β2) downregulated MHC expression on equine MSCs and to determine if TGF-β2 treatment altered the phenotype of MSCs. Equine bone marrow-derived MSCs from 12 horses were treated with 1, 5, or 10 ng/ml TGF-β2 from initial isolation until MHC expression analysis. TGF-β2-treated MSCs had reduced MHC I and MHC II surface expression compared to untreated controls. TGF-β2 treatment also partially blocked IFN-γ-induced upregulation of MHC I and MHC II. Constitutive and IFN-γ-induced MHC I and MHC II expression on equine MSCs was dynamic and highly variable, and the effect of TGF-β2 was significantly dependent on the donor animal and baseline MHC expression. TGF-β2 treatment did not appear to change morphology, surface marker expression, MSC viability, or secretion of TGF-β1, but did significantly increase the number of cells obtained from culture. These results indicate that TGF-β2 treatment has promise for regulating MHC expression on MSCs to facilitate allogeneic therapy, but further work is needed to maintain MHC stability when exposed to an inflammatory stimulus."	"Candidate Gene Resequencing in a Large Bicuspid Aortic Valve-Associated Thoracic Aortic Aneurysm Cohort: SMAD6 as an Important Contributor. Bicuspid aortic valve (BAV) is the most common congenital heart defect. Although many BAV patients remain asymptomatic, at least 20% develop thoracic aortic aneurysm (TAA). Historically, BAV-related TAA was considered as a hemodynamic consequence of the valve defect. Multiple lines of evidence currently suggest that genetic determinants contribute to the pathogenesis of both BAV and TAA in affected individuals. Despite high heritability, only very few genes have been linked to BAV or BAV/TAA, such as NOTCH1, SMAD6, and MAT2A. Moreover, they only explain a minority of patients. Other candidate genes have been suggested based on the presence of BAV in knockout mouse models (e.g., GATA5, NOS3) or in syndromic (e.g., TGFBR1/2, TGFB2/3) or non-syndromic (e.g., ACTA2) TAA forms. We hypothesized that rare genetic variants in these genes may be enriched in patients presenting with both BAV and TAA. We performed targeted resequencing of 22 candidate genes using Haloplex target enrichment in a strictly defined BAV/TAA cohort (n = 441; BAV in addition to an aortic root or ascendens diameter ≥ 4.0 cm in adults, or a Z-score ≥ 3 in children) and in a collection of healthy controls with normal echocardiographic evaluation (n = 183). After additional burden analysis against the Exome Aggregation Consortium database, the strongest candidate susceptibility gene was SMAD6 (p = 0.002), with 2.5% (n = 11) of BAV/TAA patients harboring causal variants, including two nonsense, one in-frame deletion and two frameshift mutations. All six missense mutations were located in the functionally important MH1 and MH2 domains. In conclusion, we report a significant contribution of SMAD6 mutations to the etiology of the BAV/TAA phenotype."	"Fibroblast-derived exosomes promote epithelial cell proliferation through TGF-β2 signalling pathway in severe asthma. Bronchial fibroblasts play a key role in airway remodelling in asthma. They regulate epithelial cell functions such as proliferation through growth factors, cytokines, chemokines and exosomes. The role of exosomes in the communication between epithelial cells and fibroblasts by vehiculing these mediators in asthma remains to be determined. To evaluate the role of exosomes released by bronchial fibroblasts on epithelial cell proliferation in severe asthma. Exosomes were obtained from culture media of primary bronchial fibroblasts and characterized using Western blot, electron microscopy and flow cytometry. Uptake profile of fluorescent-labelled exosomes in epithelial cells was assessed by flow cytometry. Exosome cytokine content was analysed by Cytokine Arrays. Bronchial epithelial cell proliferation was evaluated by BrdU incorporation test. Exosome biogenesis/release was blocked using sphingomyelinase inhibitor. Plasmid transfection was used to modulate transforming growth factor beta 2 (TGF-β2) gene expression. We showed that bronchial fibroblasts secreted exosomes, which were internalized by bronchial epithelial cells. Exosomes of severe asthmatic subjects' fibroblasts showed a lower level of TGF-β2 and significantly increased the epithelial cell proliferation of both healthy and severe asthmatic subjects compared to healthy controls' exosomes. Overexpression of TGF-β2 in severe asthmatics' fibroblasts induced enhanced TGF-β2 in exosomes leading to a reduced proliferation of epithelial cells, whereas knockdown of TGF-β2 enhanced epithelial cell proliferation. Our study shows that exosomes are involved in fine-tuning intercellular communication in asthma. Exosomes of severe eosinophilic asthmatics' fibroblasts can contribute to airway remodelling, at least in part, by modulating epithelial cell proliferation observed in severe asthma."	"Endothelial angiogenesis is directed by RUNX1T1-regulated VEGFA, BMP4 and TGF-β2 expression. Tissue angiogenesis is intimately regulated during embryogenesis and postnatal development. Defected angiogenesis contributes to aberrant development and is the main complication associated with ischemia-related diseases. We previously identified the increased expression of RUNX1T1 in umbilical cord blood-derived endothelial colony-forming cells (ECFCs) by gene expression microarray. However, the biological relevance of RUNX1T1 in endothelial lineage is not defined clearly. Here, we demonstrate RUNX1T1 regulates the survival, motility and tube forming capability of ECFCs and EA.hy926 endothelial cells by loss-and gain-of function assays, respectively. Second, embryonic vasculatures and quantity of bone marrow-derived angiogenic progenitors are found to be reduced in the established Runx1t1 heterozygous knockout mice. Finally, a central RUNX1T1-regulated signature is uncovered and VEGFA, BMP4 as well as TGF-β2 are demonstrated to mediate RUNX1T1-orchested angiogenic activities. Taken together, our results reveal that RUNX1T1 serves as a common angiogenic driver for vaculogenesis and functionality of endothelial lineage cells. Therefore, the discovery and application of pharmaceutical activators for RUNX1T1 will improve therapeutic efficacy toward ischemia by promoting neovascularization."	"TGF-β1 Suppresses IL-33-Induced Mast Cell Function. TGF-β1 is involved in many pathological conditions, including autoimmune disorders, cancer, and cardiovascular and allergic diseases. We have previously found that TGF-β1 can suppress IgE-mediated mast cell activation of human and mouse mast cells. IL-33 is a member of the IL-1 family capable of inducing mast cell responses and enhancing IgE-mediated activation. In this study, we investigated the effects of TGF-β on IL-33-mediated mast cell activation. Bone marrow-derived mast cells cultured in TGF-β1, β2, or β3 showed reduced IL-33-mediated production of TNF, IL-6, IL-13, and MCP-1 in a concentration-dependent manner. TGF-β1 inhibited IL-33-mediated Akt and ERK phosphorylation as well as NF-κB- and AP-1-mediated transcription. These effects were functionally important, as TGF-β1 injection suppressed IL-33-induced systemic cytokines in vivo and inhibited IL-33-mediated cytokine release from human mast cells. TGF-β1 also suppressed the combined effects of IL-33 and IgE-mediated activation on mouse and human mast cells. The role of IL-33 in the pathogenesis of allergic diseases is incompletely understood. These findings, consistent with our previously reported effects of TGF-β1 on IgE-mediated activation, demonstrate that TGF-β1 can provide broad inhibitory signals to activated mast cells."	"Multiple Soluble TGF-β Receptors in Addition to Soluble Endoglin Are Elevated in Preeclamptic Serum and They Synergistically Inhibit TGF-β Signaling. Preeclampsia (PE) can be classified into early-onset (&lt;34 weeks of gestation) and late-onset (&gt;34 weeks of gestation) subtypes. Soluble endoglin, an auxiliary receptor for transforming growth factor (TGF)-β ligands, is increased in PE circulation and believed to inhibit TGF-β action by sequestering the ligands. However, soluble endoglin, with a low affinity to TGF-β ligands, has been demonstrated to have little effect by itself on TGF-β action. We examined whether multiple soluble TGF-β receptors are elevated in PE circulation and whether they synergistically block TGF-β signaling. TGF-β receptors were measured using enzyme-linked immunosorbent assay in sera collected from preeclamptic pregnancies and gestation-age-matched controls. TGF-β signaling was assessed using an in vitro bioassay and a tube formation assay. TGF-β type I, II, and III receptors were all identified in pregnant serum; all were substantially elevated in early-onset but not late-onset PE. Endoglin was increased in both subtypes. At the greatest concentrations detected in PE, none of these soluble TGF-β receptors alone, including endoglin, inhibited TGF-β signaling. However, when all four soluble receptors were present, signaling of both TGF-β1 and TGF-β2 was substantially reduced. Removal of any one of these soluble receptors alleviated TGF-β1 inhibition; however, removal of soluble TGFβRIII was necessary to relieve TGF-β2 inhibition. Multiple soluble TGF-β receptors are present in pregnant circulation and elevated in early-onset PE; they synergistically inhibit TGF-β signaling, which might be more likely to occur in early-onset than late-onset PE. Reducing soluble TGFβRIII, rather than endoglin, would be more effective in alleviating the inhibition of both TGF-β1 and TGF-β2 signaling in PE."	"Transforming Growth Factor Beta-2 Mutations in Barlow's Disease and Aortic Dilatation. We report on a patient operated on for degenerative myxomatous mitral and tricuspid valve disease (Barlow's disease) and aortic root dilatation. A valve repair operation and the postoperative course were uneventful. Multigenerational genetic analyses revealed two different mutations in the transforming growth factor beta-2 gene in the same patient. The two mutations in different exons were inherited from both parents each. None of the parents presented with either valve dysfunction or aortic root dilatation. This rare case illustrates potentially common genetic and signaling pathways of concomitant myxomatous valve disease and aortic root dilatation."	"Immune Tolerance Effect in Mesenteric Lymph Node Lymphocytes of Geniposide on Adjuvant Arthritis Rats. Rheumatoid arthritis (RA) is a systemic, Th1 cytokine-predominant autoimmune disease result in a chronic and inflammatory disorder. Geniposide (GE), an iridoid glycoside compound that is purified from Gardenia jasminoides Ellis, has antiinflammatory and other immunoregulatory effects, but its exact mechanism of actions on RA is unknown. The aim of this study was to elucidate antiinflammation effects of GE on adjuvant arthritis (AA) rats and its possible immune tolerance mechanisms. Male Sprague-Dawley rats were administered with GE (30, 60, and 120 mg/kg) orally from day 17 to 24 after immunization. Lymphocyte proliferation was assessed by MTT. Levels of interleukin-2 (IL-2), IL-4, and transforming growth factor-β1 were tested by ELISA. The expression of β2-AR, GRK2, and β-arrestin-1 and β-arrestin-2 was detected by western blot. Geniposide was found to relieve the secondary hind paw swelling and arthritis scores, along with attenuating histopathologic changes and decreasing IL-2 and increasing IL-4, transforming growth factor-β1 in mesenteric lymph node (MLN) lymphocytes of AA rats. In addition, GE in vivo increased the expression of β2-AR and decreased the expression of GRK2, β-arrestin-1 and β-arrestin-2, and level of cyclic adenosine monophosphate of MLN lymphocytes in AA rats. From these results, we can infer that GE on immune tolerance effects, β2-AR desensitization, and β2-AR-AC-cyclic adenosine monophosphate transmembrane signal transduction of MLN lymphocytes plays crucial roles in antiinflammatory and immunoregulatory pathogeneses of RA. Copyright © 2017 John Wiley &amp; Sons, Ltd."	"An Integrative Developmental Genomics and Systems Biology Approach to Identify an In Vivo Sox Trio-Mediated Gene Regulatory Network in Murine Embryos. Embryogenesis is an intricate process involving multiple genes and pathways. Some of the key transcription factors controlling specific cell types are the Sox trio, namely, Sox5, Sox6, and Sox9, which play crucial roles in organogenesis working in a concerted manner. Much however still needs to be learned about their combinatorial roles during this process. A developmental genomics and systems biology approach offers to complement the reductionist methodology of current developmental biology and provide a more comprehensive and integrated view of the interrelationships of complex regulatory networks that occur during organogenesis. By combining cell type-specific transcriptome analysis and in vivo ChIP-Seq of the Sox trio using mouse embryos, we provide evidence for the direct control of Sox5 and Sox6 by the transcriptional trio in the murine model and by Morpholino knockdown in zebrafish and demonstrate the novel role of Tgfb2, Fbxl18, and Tle3 in formation of Sox5, Sox6, and Sox9 dependent tissues. Concurrently, a complete embryonic gene regulatory network has been generated, identifying a wide repertoire of genes involved and controlled by the Sox trio in the intricate process of normal embryogenesis."	"Comparative transcriptomic and proteomic analyses provide insights into the key genes involved in high-altitude adaptation in the Tibetan pig. Tibetan pigs that inhabit the Tibetan Plateau exhibit striking phenotypic and physiological differences from lowland pigs, and have adapted well to extreme conditions. However, the mechanisms involved in regulating gene expression at high altitude in these animals are not fully understood. In this study, we obtained transcriptomic and proteomic data from the heart tissues of Tibetan and Yorkshire pigs raised in the highlands (TH and YH) and lowlands (TL and YL) via RNA-seq and iTRAQ (isobaric tags for relative and absolute quantitation) analyses, respectively. Comparative analyses of TH vs. YH, TH vs.TL, TL vs. YL, and YH vs. YL yielded 299, 169, 242, and 368 differentially expressed genes (DEGs), and 473, 297, 394, and 297 differentially expressed proteins (DEPs), respectively. By functional annotation of these DEGs and DEPs, genes that were enriched in the HIF-1 signaling pathway (NPPA, ERK2, ENO3, and EGLN3), VEGF signaling pathway (ERK2, A2M, FGF1, CTGF, and DPP4), and hypoxia-related processes (CRYAB, EGLN3, TGFB2, DPP4, and ACE) were identified as important candidate genes for high-altitude adaptation in the Tibetan pig. This study enhances our understanding of the molecular mechanisms involved in hypoxic adaptation in pigs, and furthers our understanding of human hypoxic diseases."	"MicroRNA-26a and -26b inhibit lens fibrosis and cataract by negatively regulating Jagged-1/Notch signaling pathway. Fibrosis is a chronic process involving development and progression of multiple diseases in various organs and is responsible for almost half of all known deaths. Epithelial-mesenchymal transition (EMT) is the vital process in organ fibrosis. Lens is an elegant biological tool to investigate the fibrosis process because of its unique biological properties. Using gain- and loss-of-function assays, and different lens fibrosis models, here we demonstrated that microRNA (miR)-26a and miR-26b, members of the miR-26 family have key roles in EMT and fibrosis. They can significantly inhibit proliferation, migration, EMT of lens epithelial cells and lens fibrosis in vitro and in vivo. Interestingly, we revealed that the mechanisms of anti-EMT effects of miR-26a and -26b are via directly targeting Jagged-1 and suppressing Jagged-1/Notch signaling. Furthermore, we provided in vitro and in vivo evidence that Jagged-1/Notch signaling is activated in TGFβ2-stimulated EMT, and blockade of Notch signaling can reverse lens epithelial cells (LECs) EMT and lens fibrosis. Given the general involvement of EMT in most fibrotic diseases, cancer metastasis and recurrence, miR-26 family and Notch pathway may have therapeutic uses in treating fibrotic diseases and cancers."	"Critical role of CREBH-mediated induction of transforming growth factor β2 by hepatitis C virus infection in fibrogenic responses in hepatic stellate cells. Mechanisms of hepatic fibrogenesis induced by hepatitis C virus (HCV), one of the leading causes of liver fibrosis, are not fully understood. We studied transcriptional up-regulation of transforming growth factor β (TGF-β), especially TGF-β2, which is mediated by activation of liver-enriched transcription factor cAMP-responsive element-binding protein, hepatocyte specific (CREBH) triggered by HCV infection and its functional significance for induction of profibrogenic phenotypes by interaction of HCV-infected cells with hepatic stellate cells (HSCs). Compared to TGF-β1, expression of TGF-β2 mRNA was induced faster and to a higher level upon HCV infection. Serum TGF-β2 levels in hepatitis C patients were higher compared to those in healthy individuals and were positively correlated with hepatic fibrosis stages F0-F2. TGF-β2 promoter activity was decreased and increased, respectively, by silencing and overexpression of CREBH. CREBH recognition sites were identified in the TGF-β2 promoter. CREBH binding to the promoter and its increase in cells expressing HCV Core-NS2 were shown by gel mobility shift and chromatin immunoprecipitation, respectively. The active form of CREBH was detectable in HCV-infected chimeric mice with human livers and cells expressing HCV proteins. Involvement of CREBH in HCV-induced fibrogenic response was further demonstrated in the CREBH null-mutant mouse model. Fibrogenic phenotypes were assessed using co-cultures of HCV-infected cells and HSCs. Expressions of fibrogenic factors and TGF-β1 increasing in the co-cultures was prevented by TGF-β2- or CREBH silencing. CREBH was identified as a key positive regulator of TGF-β2 transcription in HCV-infected cells. TGF-β2 released from infected cells potentially contributes to cross-induction of TGF-β in an autocrine manner through its own signaling pathway, leading to an increase in fibrogenic responses in adjacent HSCs. (Hepatology 2017;66:1430-1443)."	"[Study on the establishment of HMLD model and the expression of KL-6/TGF-beta in rat]. Objective: To establish an animal model of hard metal lung disease (HMLD) in rats, and to screen the indications for diagnosis of HMLD. Methods: The rats were randomly divided into 5 groups, each group included 8 rats: saline group, pure cobalt group, pure tungsten carbide group, silica group and hard metal (HM) group. 10 mg subjects were administered in each group by using the pulmonary endotracheal tube. After 8 week, the lung CT scan and lung tissue pathology were observed, the serum and bronchoalveolar lavage fluid (BALF) were collected for KL-6, TGF-beta1 and TGF-beta2. Results: The lung tissue structure of HM group was destroyed, a large number of nuclear giant cells and epithelial like cells appeared in the stroma, and uncommon CT scan images appeared in the lung. KL-6, TGF-beta1, TGF-beta2 expression in each group was not the same, the difference was statistically significant (P&lt;0.05) . The expression of KL-6 and TGF-beta1 in serum was not identical in all the groups, the difference was statistically significant (P&lt;0.05) . The expression of TGF-beta2 had no significant difference between the groups (P&gt;0.05) . Conclusion: Rats can be successfully established HMLD model, rats in vivo lung CT scan images appear abnormal, which are provided with assistant diagnostic value for HMLD. The expression of KL-6 and TGF-beta2 in serum and BALF on HMLD rats are not highly specific, and TGF-beta1 has reference value in the rat HMLD auxiliary diagnosis. 目的: 建立大鼠硬金属肺病(HMLD)动物模型,筛选HMLD的诊断指征,探讨硬金属肺病的发病机制。 方法: SPF级SD大鼠随机分为5组,每组8只,分别为生理盐水组、纯钴组、纯碳化钨组、二氧化硅组和硬质合金(HM)组。各组大鼠用肺部气管雾化滴注给药套装分别给予10 mg/只生理盐水、纯钴、纯碳化钨、二氧化硅和硬质合金混悬液。8周后进行肺部CT扫描及肺组织进行病理学观察,同时取血清及肺泡灌洗液(BALF)进行唾液酸化糖蛋白(KL)-6、转化生长因子(TGF)-β1以及TGF-β2的酶联免疫吸附测定(ELISA)。 结果: 染毒8周大鼠HM组肺组织结构破坏,间质出现大量多核巨细胞及类上皮细胞,且肺部CT扫描影像出现阴影异常。BALF中KL-6、TGF-β1、TGF-β2表达各组存在差异,差异均有统计学意义(P&lt;0.05)。血清中KL-6、TGF-β1表达各组存在差异,差异均有统计学意义(P&lt;0.05);TGF-β2表达各组差异无统计学意义(P&gt;0.05)。 结论: 成功建立大鼠HMLD动物模型,大鼠活体肺部CT扫描可作为HMLD诊断的辅助手段;血清及BALF中KL-6、TGF-β2表达对大鼠HMLD疾病模型的特异性不高,而TGF-β1对大鼠HMLD的确定有辅助诊断参考价值。."	"Discovery and Preclinical Development of Netarsudil, a Novel Ocular Hypotensive Agent for the Treatment of Glaucoma. Rho-associated protein kinase (ROCK) inhibitors lower intraocular pressure (IOP) by increasing aqueous outflow through the trabecular meshwork (TM). The preclinical characterization of netarsudil, a new ROCK/norepinephrine transporter (NET) inhibitor currently in clinical development, is presented herein. The kinase inhibitory activity of netarsudil was compared to its esterase metabolite, netarsudil-M1, and 3 other ROCK inhibitors using a commercially available kinase assay kit. Disruption of actin stress fibers was measured in primary porcine TM cells and disruption of focal adhesions in transformed human TM (HTM) cells. Induction of fibrosis markers after exposure to transforming growth factor-β2 (TGF-β2) was conducted in primary HTM cells. Ocular hypotensive activity and tolerability of topical formulations were evaluated in normotensive Dutch Belted rabbits and Formosan Rock monkeys. In vitro corneal metabolism assays were conducted using dog, pig, rabbit, monkey, and human corneas. In vivo ocular pharmacokinetics was studied in Dutch Belted rabbits. Netarsudil inhibited kinases ROCK1 and ROCK2 with a Ki of 1 nM each, disrupted actin stress fibers and focal adhesions in TM cells with IC50s of 79 and 16 nM, respectively, and blocked the profibrotic effects of TGF-β2 in HTM cells. Netarsudil produced large reductions in IOP in rabbits and monkeys that were sustained for at least 24 h after once daily dosing, with transient, mild hyperemia observed as the only adverse effect. Netarsudil is a novel ROCK/NET inhibitor with high potency in biochemical and cell-based assays, an ability to produce large and durable IOP reductions in animal models, and favorable pharmacokinetic and ocular tolerability profiles."	"Identification of gene markers associated with metastasis in clear cell renal cell carcinoma. The present study aimed to screen potential target genes for the early diagnosis and treatment of early metastatic clear cell renal cell carcinoma (ccRCC) using the microarray data of early metastatic and non-metastatic ccRCC samples. The DNA microarray dataset GSE47352 was downloaded from Gene Expression Omnibus and included 4 early metastatic and 5 non-metastatic ccRCC samples. Differentially expressed genes (DEGs) were screened using the limma package. Then, pheatmap package was used to conduct two-way clustering for the DEGs. Subsequently, MAPPFinder and GenMAPP were employed separately to perform functional and pathway enrichment analysis for the DEGs. Additionally, a protein-protein interaction (PPI) network was constructed using Cytoscape, and small drug molecules were searched using Connectivity map (cmap). In total, 196 upregulated and 163 downregulated genes were identified. DEGs, including JUN, tumor necrosis factor (TNF), Ras homolog family member B (RHOB) and transforming growth factor β2 (TGFβ2) were significantly enriched in the signaling pathway of renal cell carcinoma. Furthermore, nuclear receptor subfamily 4 group A member 1 (NR4A1) was significantly enriched in the mitogen-activated protein kinase signaling pathway; in addition, laminin subunit α (LAMA) 1, LAMA2 and LAMA4 were significantly enriched in extracellular matrix-receptor interaction. JUN (degree=6) had the highest degree in the PPI network. Thapsigargin (score=-0.913) possessed the highest performance in terms of the treatment of early metastatic ccRCC. In the present study, it was discovered that certain DEGs, including JUN, TNF, RHOB, NR4A1, TGFβ2, LAMA1, LAMA2 and LAMA4 were potential target genes associated with early metastatic ccRCC. In addition, thapsigargin could be used as an efficient small drug molecule for the treatment of early metastatic ccRCC."	"Next generation sequencing analysis of patients with familial cervical artery dissection. The cause of cervical artery dissection is not well understood. We test the hypothesis that mutations in genes associated with known arterial connective tissue disorders are enriched in patients with familial cervical artery dissection. Patient duos from nine pedigrees with familial cervical artery dissection were analyzed by whole exome sequencing. Single nucleotide variants in a panel of 11 candidate genes (ACTA2, MYH11, FBN1, TGFBR1, TGFBR2, TGFB2, COL3A1, COL4A1, SMAD3, MYLK and SLC2A10) were prioritized according to functionality (stop-loss, nonsense, and missense variants with polyphen-2 score ≥0.95). Variants classified as &quot;benign&quot; or &quot;likely benign&quot; in the ClinVar database were excluded from further analysis. For comparison, non-benign stop-loss, nonsense and missense variants with polyphen-2 score ≥0.95 in the same panel of candidate genes were identified in the European non-Finnish population of the ExAC database (n = 33,370). Non-benign Single nucleotide variants in both affected patients were identified in four of the nine cervical artery dissection families (COL3A1; Gly324Ser, FBN1: Arg2554Trp, COL4A1: Pro116Leu, and TGFBR2: Ala292Thr) yielding an allele frequency of 22.2% (4/18). In the comparison group, 1782 variants were present in 33,370 subjects from the ExAC database (allele frequency: 1782/66,740 = 2.7%; p = 0.0008; odds ratio = 14.2; 95% confidence interval = 3.8-52.9). Cervical artery dissection families showed enrichment for non-benign variants in genes associated with arterial connective tissue disorders. The observation that findings differed across families indicates genetic heterogeneity of familial cervical artery dissection."	"Sodium butyrate improved intestinal immune function associated with NF-κB and p38MAPK signalling pathways in young grass carp (Ctenopharyngodon idella). The present study evaluated the effect of dietary sodium butyrate (SB) supplementation on the growth and immune function in the proximal intestine (PI), middle intestine (MI) and distal intestine (DI) of young grass carp (Ctenopharyngodon idella). The fish were fed one powdery sodium butyrate (PSB) diet (1000.0 mg kg<sup>-1</sup> diet) and five graded levels of microencapsulated sodium butyrate (MSB) diets: 0.0 (control), 500.0, 1000.0, 1500.0 and 2000.0 mg kg<sup>-1</sup> diet for 60 days. Subsequently, a challenge test was conducted by injection of Aeromonas hydrophila. The results indicated that optimal SB supplementation improved the fish growth performance (percent weight gain, specific growth rate, feed intake and feed efficiency) and intestinal growth and function (intestine weight, intestine length, intestinal somatic index, folds height, trypsin, chymotrypsin, lipase and amylase activities), increased beneficial bacteria lactobacillus amount and butyrate concentration, decreased baneful bacteria Aeromonas and Escherichia coli amounts, reduced acetate and propionate concentrations, elevated lysozyme and acid phosphatase activities, increased complement (C3 and C4) and immunoglobulin M contents, and up-regulated β-defensin-1 (rather than DI), hepcidin, liver expressed antimicrobial peptide 2B (LEAP-2B) (except LEAP-2A), Mucin2, interleukin 10 (IL-10), IL-11 (rather than PI), transforming growth factor β1 (rather than PI), transforming growth factor β2 (rather than PI), IL-4/13A, IL-4/13B and inhibitor of κBα (IκBα) mRNA levels, whereas it down-regulated tumor necrosis factor α, interferon γ2, IL-1β (rather than PI), IL-6, IL-8, IL-15 (rather than PI), IL-17D (rather than PI), IL-12p35, IL-12p40 (rather than PI or MI), nuclear factor kappa B p65 (NF-κB p65) (except NF-κB p52), c-Rel (rather than PI or MI), IκB kinase β (IKKβ) (rather than PI), IKKγ (except IKKα), p38 mitogen-activated protein kinase (p38MAPK) and MAPK kinase 6 mRNA levels in three intestinal segments of young grass carp (P &lt; 0.05), suggesting that SB supplementation improves growth and intestinal immune function of fish. Furthermore, according to the positive effect, MSB was superior to PSB on improving growth and enhancing intestinal immune function of fish, and based on feed efficiency of young grass carp, the efficacy of MSB was 3.5-fold higher than that of PSB. Finally, based on percent weight gain, protecting fish against enteritis morbidity and lysozyme activity, the optimal SB supplementation (MSB as SB source) of young grass carp were estimated to be 160.8, 339.9 and 316.2 mg kg<sup>-1</sup> diet, respectively."	"4.7 Mb deletion encompassing TGFB2 associated with features of Loeys-Dietz syndrome and osteoporosis in adulthood. NA"	"Molecular insights into melanoma brain metastases. Substantial proportions of patients with metastatic melanoma develop brain metastases during the course of their disease, often resulting in significant morbidity and death. Despite recent advances with BRAF/MEK and immune-checkpoint inhibitors in the treatment of patients who have melanoma with extracerebral metastases, patients who have melanoma brain metastases still have poor overall survival, highlighting the need for further therapy options. A deeper understanding of the molecular pathways involved in the development of melanoma brain metastases is required to develop more brain-specific therapies. Here, the authors summarize the currently known preclinical data and describe steps involved in the development of melanoma brain metastases. Only by knowing the molecular background is it possible to design new therapeutic agents that can be used to improve the outcome of patients with melanoma brain metastases. Cancer 2017;123:2163-75. © 2017 American Cancer Society."	"Immune Components in Human Milk Are Associated with Early Infant Immunological Health Outcomes: A Prospective Three-Country Analysis. The role of breastfeeding in improving allergy outcomes in early childhood is still unclear. Evidence suggests that immune mediators in human milk (HM) play a critical role in infant immune maturation as well as protection against atopy/allergy development. We investigated relationships between levels of immune mediators in colostrum and mature milk and infant outcomes in the first year of life. In a large prospective study of 398 pregnant/lactating women in the United Kingdom, Russia and Italy, colostrum and mature human milk (HM) samples were analysed for immune active molecules. Statistical analyses used models adjusting for the site of collection, colostrum collection time, parity and maternal atopic status. Preliminary univariate analysis showed detectable interleukin (IL) 2 and IL13 in HM to be associated with less eczema. This finding was further confirmed in multivariate analysis, with detectable HM IL13 showing protective effect OR 0.18 (95% CI 0.04-0.92). In contrast, a higher risk of eczema was associated with higher HM concentrations of transforming growth factor β (TGFβ) 2 OR 1.04 (95% CI 1.01-1.06) per ng/mL. Parental-reported food allergy was reported less often when IL13 was detectable in colostrum OR 0.10 (95% CI 0.01-0.83). HM hepatocyte growth factor (HGF) was protective for common cold incidence at 12 months OR 0.19 (95% CI 0.04-0.92) per ng/mL. Data from this study suggests that differences in the individual immune composition of HM may have an influence on early life infant health outcomes. Increased TGFβ2 levels in HM are associated with a higher incidence of reported eczema, with detectable IL13 in colostrum showing protective effects for food allergy and sensitization. HGF shows some protective effect on common cold incidence at one year of age. Future studies should be focused on maternal genotype, human milk microbiome and diet influence on human milk immune composition and both short- and long-term health outcomes in the infant."	"Wnt Signaling-Related Osteokines and Transforming Growth Factors Before and After a Single Bout of Plyometric Exercise in Child and Adolescent Females. This study examined resting levels of catabolic and anabolic osteokines related to Wnt signaling and their responses to a single bout of plyometric exercise in child and adolescent females. Fourteen premenarcheal girls [10.5 (1.8) y old] and 12 postmenarcheal adolescent girls [15.0 (1.0) y old] performed a plyometric exercise trial. One resting and 3 postexercise blood samples (5 min, 1 h, and 24 h postexercise) were analyzed for sclerostin, dickkopf-1 (DKK-1), osteoprotegerin (OPG), receptor activator of nuclear factor kappa-β ligand (RANKL), and transforming growth factors (TGF-β1, TGF-β2, and TGF-β3). Premenarcheal girls had significantly higher resting sclerostin, TGF-β1, TGF-β2, and TGF-β3 than the postmenarcheal girls, with no significant time effect or group-by-time interaction. DKK-1 was higher in premenarcheal compared with postmenarcheal girls. There was an overall significant DKK-1 decrease from baseline to 1 h postexercise, which remained lower than baseline 24 h postexercise in both groups. There was neither a significant group effect nor group-by-time interaction in OPG, RANKL, and their ratio. RANKL decreased 5 min postexercise compared with baseline and remained significantly lower from baseline 24 h following the exercise. No changes were observed in OPG. OPG/RANKL ratio was significantly elevated compared with resting values 1 h postexercise. In young females, high-impact exercise induces an overall osteogenic effect through a transitory suppression of catabolic osteokines up to 24 h following exercise."	"Diverse Requirements for Microglial Survival, Specification, and Function Revealed by Defined-Medium Cultures. Microglia, the resident macrophages of the CNS, engage in various CNS-specific functions that are critical for development and health. To better study microglia and the properties that distinguish them from other tissue macrophage populations, we have optimized serum-free culture conditions to permit robust survival of highly ramified adult microglia under defined-medium conditions. We find that astrocyte-derived factors prevent microglial death ex vivo and that this activity results from three primary components, CSF-1/IL-34, TGF-β2, and cholesterol. Using microglial cultures that have never been exposed to serum, we demonstrate a dramatic and lasting change in phagocytic capacity after serum exposure. Finally, we find that mature microglia rapidly lose signature gene expression after isolation, and that this loss can be reversed by engrafting cells back into an intact CNS environment. These data indicate that the specialized gene expression profile of mature microglia requires continuous instructive signaling from the intact CNS."	"Long noncoding RNA expression profile in HLE B-3 cells during TGF-β2-induced epithelial-mesenchymal transition. Recent evidence has shown that long noncoding RNAs (lncRNAs) are involved in the process of epithelial-mesenchymal transition (EMT). However, little research has focused on the expression profile of lncRNAs during EMT in human lens epithelial cells (LECs) and their functions have not yet been described. Dysregulated lncRNAs and mRNAs in normal human lens epithelial B-3(HLE B-3) cells and during transforming growth factor β2(TGF-β2)-induced EMT were analyzed via lncRNA microarray. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) Pathway analyses of differentially expressed mRNAs were performed to identify their functions and pathologic pathways. Six candidate lncRNAs were validated via quantitative real-time reverse transcription polymerase chain reaction(qRT-PCR) to confirm the microarray data. A total of 775 lncRNAs (325 up-regulated and 450 down-regulated) and 935 mRNAs (329 up-regulated and 606 down-regulated) were differentially expressed in HLE B-3 cells during TGF-β2-induced EMT compared to normal HLE B-3 cells. GO and KEGG Pathway analyses indicated the functions of differentially expressed mRNAs in the TGF-β2-induced EMT in HLE B-3 cells. qRT-PCR confirmed the trends indicated in microarray analysis for all 6 candidate lncRNAs. Our study lays the foundation for future research in lncRNAs related to EMT in HLE B-3 cells and could provide new avenues for the prevention and treatment of posterior capsule opacification (PCO)."	"Characterization of genetic aberrations in a single case of metastatic thymic adenocarcinoma. Thymic adenocarcinoma is an extremely rare subtype of thymic epithelial tumors. Due to its rarity, there is currently no sequencing approach for thymic adenocarcinoma. We performed whole exome and transcriptome sequencing on a case of thymic adenocarcinoma and performed subsequent validation using Sanger sequencing. The case of thymic adenocarcinoma showed aggressive behaviors with systemic bone metastases. We identified a high incidence of genetic aberrations, which included somatic mutations in RNASEL, PEG10, TNFSF15, TP53, TGFB2, and FAT1. Copy number analysis revealed a complex chromosomal rearrangement of chromosome 8, which resulted in gene fusion between MCM4 and SNTB1 and dramatic amplification of MYC and NDRG1. Focal deletion was detected at human leukocyte antigen (HLA) class II alleles, which was previously observed in thymic epithelial tumors. We further investigated fusion transcripts using RNA-seq data and found an intergenic splicing event between the CTBS and GNG5 transcript. Finally, enrichment analysis using all the variants represented the immune system dysfunction in thymic adenocarcinoma. Thymic adenocarcinoma shows highly malignant characteristics with alterations in several cancer-related genes."	"Interleukin-13 and age-related macular degeneration. o identify the effects of interleukin (IL)-13 on retinal pigment epithelial (RPE) cells and the IL-13 level in aqueous humor of age-related macular degeneration (AMD) patients. IL-13 levels in aqueous humor specimens from AMD patients were detected with enzyme-linked immunosorbent assay (ELISA). ARPE-19 cells were treated with 10 ng/mL IL-13 for 12, 24, and 48h. The cell proliferaton was evaluated by the MTS method. The mRNA and protein levels of α-SMA and ZO-1 were evaluated with quantitative real-time polymerase chain reaction (qRT-PCR) and Western blot respectively. The expression of tumor necrosis factor-α (TNF-α), transforming growth factor-β (TGF-β) and vascular endothelial growth factor (VEGF) were assessed by ELISA. IL-13 levels in the aqueous humor of patients with AMD were significantly higher than those in the control (167.33±17.64 vs 27.12±5.65 pg/mL; P&lt;0.01). In vitro, IL-13 of high concentrations (10, 15, and 20 ng/mL) inhibited ARPE-19 cell proliferation. α-SMA mRNA in ARPE-19 cell were increased (1.017±0.112 vs 1.476±0.168; P&lt;0.001) and ZO-1 decreased (1.051±0.136 vs 0.702±0.069; P&lt;0.001) after treated with 10 ng/mL IL-13 for 48h. The protein expression of α-SMA and ZO-1 also showed the same tendency (α-SMA: P=0.038; ZO-1: P=0.008). IL-13 significantly reduced the level of TNF-α (44.70±1.67 vs 31.79±3.53 pg/mL; P=0.005) at 48h, but the level of TGF-β2 was significantly increased from 34.44±2.92 to 57.61±6.31 pg/mL at 24h (P=0.004) and from 61.26±1.11 to 86.91±3.59 pg/mL at 48h (P&lt;0.001). While expressions of VEGF didn't change after IL-13 treatment. IL-13 in vitro inhibit ARPE-19 cell proliferation and expression in the aqueous may be associated with AMD."	"Quercetin inhibited epithelial mesenchymal transition in diabetic rats, high-glucose-cultured lens, and SRA01/04 cells through transforming growth factor-β2/phosphoinositide 3-kinase/Akt pathway. Diabetic cataract (DC), an identified life-threatening secondary complication of diabetes mellitus, has proven to be a dilemma because of its multifactorial caused and progression. An increasing number of studies have shown that in addition to the maillard reaction, enhanced polyol pathway, and oxidative insults, epithelial mesenchymal transition (EMT) is related to the prevalence of DC. Quercetin, a classic flavonoid with multiple pharmacological effects has been reported to possess therapeutic efficacy in the management and treatment of this disease. However, the mechanism underlying its therapeutic efficacy in EMT of lens epithelial cells (SRA01/04) and contribution to resolving DC remains a mystery. Therefore, in this study, we investigated the effects of quercetin on EMT of SRA01/04 and high-glucose (HG)-induced lens opacity accompanied by lens fibrosis induced by type-1 diabetes. Furthermore, we sought to clarify the specific mechanisms underlying these effects. At week 14 after streptozotocin (STZ) intraperitoneal administration, diabetic rats showed lens opacity accompanied with diminished antioxidant function, enhanced polyol pathway activity, and non-enzymatic glycation. Western blotting confirmed EMT in rat SRA01/04 cells with significantly increased α-smooth muscle actin (α-SMA) and decreased E-cadherin expressions. Treatment of the lens with quercetin ameliorated the oxidative stress, inhibited aldose reductase (AR) activation, reduced advanced glycation end product (AGE) production, and finally suppressed EMT in the early stages. Our in vitro results showed that high-glucose activated the transforming growth factor-β2/phosphoinositide 3-kinase/protein kinase B (TGF-β2/PI3K/Akt) signalling and EMT in SRA01/04 cells. Further, induced oxidative stress, activation of aldose reductase, and accumulation of advanced glycation end products were also involved in this process. Quercetin was potent enough to effectively ameliorate the high glucose (HG)-induced EMT of SRA01/04 cells by inhibiting the activation of TGF-β2/PI3K/Akt, enhancing the antioxidant capacity, inhibiting AR activity, and reducing AGE production. From the whole animal to tissues, and finally the cellular level, our results provide considerable evidence of the therapeutic potential of quercetin for DC. This might be due to its inhibition of EMT mediated through inhibition of the TGF-β/PI3K/Akt pathway."	"HMEC-1 adopt the mixed amoeboid-mesenchymal migration type during EndMT. The contribution of endothelial cells to scar and fibrotic tissue formation is undisputedly connected to their ability to undergo the endothelial-to-mesenchymal transition (EndMT) towards fibroblast phenotype-resembling cells. The migration model of fibroblasts and fibroblast-resembling cells is still not fully understood. It may be either a Rho/ROCK-independent, an integrin- and MMP-correlated ECM degradation-dependent, a mesenchymal model or Rho/ROCK-dependent, integrin adhesion- and MMP activity-independent, an amoeboid model. Here, we hypothesized that microvascular endothelial cells (HMEC-1) undergoing EndMT adopt an intermediate state of drifting migration model between the mesenchymal and amoeboid protrusive types in the early stages of fibrosis. We characterized the response of HMEC-1 to TGF-β2, a well-known mediator of EndMT within the microvasculature. We observed that TGF-β2 induces up to an intermediate mesenchymal phenotype in HMEC-1. In parallel, MMP-2 is upregulated and is responsible for most proteolytic activity. Interestingly, the migration of HMEC-1 undergoing EndMT is dependent on both ECM degradation and invadosome formation associated with MMP-2 proteolytic activity and Rho/ROCK cytoskeleton contraction. In conclusion, the transition from mesenchymal towards amoeboid movement highlights a molecular plasticity mechanism in endothelial cell migration in skin fibrosis."	"Cutting Edge: ERK1 Mediates the Autocrine Positive Feedback Loop of TGF-β and Furin in Glioma-Initiating Cells. Glioblastoma is the most common and aggressive intrinsic brain tumor in adults. Self-renewing, highly tumorigenic glioma-initiating cells (GIC) have been linked to glioma invasive properties, immunomodulation, and increased angiogenesis, leading to resistance to therapy. TGF-β signaling has been associated with the tumorigenic activity of GIC. TGF-β is synthesized as a precursor molecule and proteolytically processed to the mature form by members of the family of the proprotein convertases subtilisin/kexin. In this study we report that furin is unique among the proprotein convertases subtilisin/kexin in being highly expressed in human GIC. Furin cleaves and promotes activation of pro-TGF-β1 and pro-TGF-β2, and TGF-β2 in turn increases furin levels. Notably, TGF-β2 controls furin activity in an ALK-5-dependent manner involving the ERK/MAPK pathway. We thus uncover a role of ERK1 in the regulation of furin activity by supporting a self-sustaining loop for high TGF-β activity in GIC."	"Molecular analysis of endometrial inflammation in preterm birth. Spontaneous preterm birth (sPTB) represents the 35%-45% of all preterm birth (PTB) cases and its etiology is unknown. We investigated if the expression level of endometrial cytokines and angiogenetic factors is related to the onset of sPTB.Endometrial tissues from non-pregnant women who experienced sPTB and from non-pregnant women who did not experience sPTB were collected and examined for their expression profile. With this aim, the PCR Array analysis was performed and data were confirmed by Real-Time PCR. Differential gene expression measurements (pathological vs control tissues) showed a significant up-regulation for genes codifying for two angiogenetic factors known as connective tissue growth factor (CTGF), and coagulation factor III (F3). An increased level of expression was detected both for tyrosine kinase endothelial (TEK) and for transforming growth factor beta 2 (TGF-β2) genes but without reaching the statistical significance. The expression level of interleukin 10 receptor alpha (IL10RA) gene was slightly decreased in pathological group compared to control one but, as well as forTEK and TGF-β2 measurements, without reaching the statistical significance. Our work is the first to correlate the imbalance in endometrial district of non -pregnant women with sPTB. These data could suggest a new point of view whence to read sPTB. We need additional clinical and biological studies to clarify sPTB pathogenesis."	"Intratumoral Morphological Heterogeneity of Breast Cancer As an Indicator of the Metastatic Potential and Tumor Chemosensitivity. Breast cancer (BC) demonstrates considerable intratumoral morphological heterogeneity. The aim of this work was to evaluate the relationship among different morphological structures, the rate of metastasis, and efficacy of neoadjuvant chemotherapy (NAC) in NAC-treated (n = 427) and NAC-naïve (n = 249) BC patients. We also studied the involvement of an epithelial-mesenchymal transition (EMT) in the development of the intratumoral morphological heterogeneity of BC. We found a significant association between the intratumoral morphological heterogeneity and the rate of BC metastasis and response to NAC, which, in most cases, correlated with the presence of alveolar and trabecular structures. In particular, the rate of lymph node metastasis in tumors containing alveolar and trabecular structures was higher compared to that in tumors lacking such structures. NAC-treated patients with alveolar and trabecular structures had a high distant metastasis rate and a low metastasis-free survival rate. Furthermore, alveolar and trabecular structures were found to be associated with a lack of response to NAC. Interestingly, the association between alveolar structures and a high distant metastasis rate was found only in NAC-unresponsive patients, whereas the association between trabecular structures and an increased distant metastasis was revealed in responders. Alveolar structures were associated with chemoresistance only in patients with lymph node metastases, whereas trabecular structures were associated with chemoresistance only in patients without lymph node metastases. In general, increased intratumoral morphological diversity correlated with considerable chemoresistance and a high metastasis rate of BC. We found variable expressions of epithelial (EPCAM and CDH1) and mesenchymal (ITGA5, ITGB5, CDH2, CDH11, TGFb2, ZEB1, MMP2, DCN, MST1R) markers and, thus, different EMT manifestations in different morphological structures. Therefore, intratumoral morphological heterogeneity of BC may serve as an indicator of the metastatic potential and tumor chemosensitivity."	"Autophagy regulates Endothelial-Mesenchymal transition by decreasing the phosphorylation level of Smad3. Transforming growth factor-beta2 (TGF-β2) induces Endothelial-Mesenchymal transition (EndoMT) and autophagy in a variety of cells. Previous studies have indicated that activation of autophagy might decrease TGF-β2 induced EndoMT. However, the precise role remains unclear. In the present study, we found that TGF-β2 could induce EndoMT and autophagy in human retinal microvascular endothelial cells (hRMECs). Activation of autophagy by Rapamycin or Trehalose could reduce the expression of Snail, demonstrating a role of autophagy in regulating Snail production both by transcriptional and post-transcriptional mechanism. Co-immunoprecipitation (CoIP) demonstrated that LC3 co-immunoprecipitated with Smad3 and western blot showed that autophagy inducers, Rapamycin and Trehalose, could decrease the phosphorylation level of Smad3. Therefore, our results demonstrate that autophagy counteracts the EndoMT process triggered by TGF-β2 by decreasing the phosphorylation level of Smad3."	"Molecular Mechanisms Underlying the Filtration Bleb-Maintaining Effects of Suberoylanilide Hydroxamic Acid (SAHA). Suberoylanilide hydroxamic acid (SAHA) has been shown to support the maintenance of experimental filtration blebs in animal models. This study was performed to investigate the molecular mechanisms underlying the bleb-maintaining effects of SAHA in modulating wound healing activities of conjunctival fibroblasts. Human conjunctival fibroblasts (HConFs) were pretreated with SAHA before treatment with TGF-β2. Microarray-based screening was used to investigate the gene expression profiles. Gene ontology (GO) analysis was conducted to categorize the gene functions. The expression of TGF-β-induced signaling molecules, α-smooth muscle actin, and extracellular matrix (ECM) proteins were evaluated by Western blot analyses. Multiplex immunoassay was performed to evaluate supernatant cytokine concentrations. Tube formation assay was used to evaluate angiogenesis using human umbilical vein endothelial cells. GO analysis showed that SAHA, in the presence of TGF-β2, induced changes in expression of genes involved in the TGF-β receptor signaling pathway, cell proliferation, extracellular matrix organization, inflammatory responses, and angiogenesis. Subsequent in vitro experiments showed that SAHA partly inhibited the phosphorylation of Smad2, Smad3, and Akt. SAHA pretreatment potently suppressed TGF-β2-driven cell proliferation, myofibroblast differentiation, contraction, ECM production, and angiogenic cytokine expression. The supernatant of HConFs treated with SAHA inhibited tube formation. SAHA has been shown to suppress angiogenesis and activation of conjunctival fibroblasts partly via inhibition of Smad and non-Smad TGF-β signaling. This in vitro study provides new evidence for the molecular basis of the potential bleb-maintaining effects of SAHA, a novel candidate drug in modulating scar formation after glaucoma filtration surgery."	"Gene expression profile in human induced pluripotent stem cells: Chondrogenic differentiation in vitro, part B. The development of human induced pluripotent stem cells (hiPSCs) is considered a turning point in tissue engineering. However, more data are required to improve understanding of key aspects of the cell differentiation process, including how specific chondrogenic processes affect the gene expression profile of chondrocyte‑like cells and the relative value of cell differentiation markers. The main aims of the present study were as follows: To determine the gene expression profile of chondrogenic‑like cells derived from hiPSCs cultured in mediums conditioned with HC‑402‑05a cells or supplemented with transforming growth factor β3 (TGF‑β3), and to assess the relative utility of the most commonly‑used chondrogenic markers as indicators of cell differentiation. These issues are relevant with regard to the use of human fibroblasts in the reprogramming process to obtain hiPSCs. Human fibroblasts are derived from mesoderm and thus share a wide range of properties with chondrocytes, which originate from the mesenchyme. The hiPSCs were obtained from human primary dermal fibroblasts during a reprogramming process. Two methods, both involving embryoid bodies (EB), were used to obtain chondrocytes from the hiPSCs: EBs formed in the presence of a chondrogenic medium with TGF‑β3 (10 ng/ml) and EBs formed in a medium conditioned with growth factors from HC‑402‑05a cells. Based on reverse transcription-quantitative polymerase chain reaction analysis, the results demonstrated that hiPSCs are capable of effective chondrogenic differentiation, with the cells obtained in the HC‑402‑05a medium presenting with morphological features and markers characteristic of mature human chondrocytes. In contrast, cells differentiated in the presence of TGF‑β3 presented with certain undesirable hypertrophic characteristics. Several genes, most notably runt‑related transcription factor 2, transforming growth factor β2 and transforming growth factor β3, were good markers of advanced and late hiPSC chondrogenic differentiation, whereas transforming growth factor β3I, II, III receptors and bone morphogenetic protein-2, bone morphogenetic protein-4 and growth differentiation factor 5 were less valuable. These findings provide valuable data on the use of stem cells in cartilage tissue regeneration."	NA	NA
+"TGFBR1"	"familial thoracic aortic aneurysm and aortic dissection"	"Osteosarcoma-Derived Extracellular Vesicles Induce Lung Fibroblast Reprogramming. Tumor-secreted extracellular vesicles (EVs) have been identified as mediators of cancer-host intercellular communication and shown to support pre-metastatic niche formation by modulating stromal cells at future metastatic sites. While osteosarcoma, the most common primary malignant bone tumor in children and adolescents, has a high propensity for pulmonary metastases, the interaction of osteosarcoma cells with resident lung cells remains poorly understood. Here, we deliver foundational in vitro evidence that osteosarcoma cell-derived EVs drive myofibroblast/cancer-associated fibroblast differentiation. Human lung fibroblasts displayed increased invasive competence, in addition to increased α-smooth muscle actin expression and fibronectin production upon EV treatment. Furthermore, we demonstrate, through the use of transforming growth factor beta receptor 1 (TGFBR1) inhibitors and CRISPR-Cas9-mediated knockouts, that TGFβ1 present in osteosarcoma cell-derived EVs is responsible for lung fibroblast differentiation. Overall, our study highlights osteosarcoma-derived EVs as novel regulators of lung fibroblast activation and provides mechanistic insight into how osteosarcoma cells can modulate distant cells to potentially support metastatic progression."	"Heterogeneous addiction to TGFβ signalling in recessive dystrophic epidermolysis bullosa associated cutaneous squamous cell carcinoma. Recessive dystrophic epidermolysis bullosa (RDEB) is associated with a high mortality rate due to the development of life threatening, metastatic cutaneous squamous cell carcinoma (cSCC). Elevated transforming growth factor β (TGFβ) signalling is implicated in cSCC development and progression in RDEB patients. To determine the effect of exogenous and endogenous TGFβ signalling in RDEB cSCC with a view to assess the potential of targeting TGFβ signalling for RDEB cSCC therapy. A panel of 11 patient derived RDEB cSCC primary tumour keratinocyte cell lines (SCCRDEBs) were tested for their signalling and proliferation responses to exogenous TGFβ. Their responses to TGFBR1 kinase inhibitors (SB-431542 and AZ12601011(AZA01)) was tested using in vitro proliferation, clonogenicity, migration, 3D invasion assays and in vivo tumour xenograft assays. All SCCRDEBs respond to exogenous TGFβ by activation of canonical SMAD signalling and proliferative arrest. Blocking endogenous signalling by treatment with SB-431542 and AZ12601011 significantly inhibited proliferation (n=7/11), clonogenicity (n=6/11), migration (n=8/11) and invasion (6/11) of SCCRDEBs. However, these TGFBR1 kinase inhibitors also promoted proliferation and clonogenicity in 2/11 SCCRDEBs. Pre-treatment of in vitro TGFBR1 addicted SCCRDEB70 cells with SB-431542 enhanced overall survival and reduced tumour volume in subcutaneous xenografts but had no effect on non-addicted SCCRDEB2 cells in these assays. Targeting TGFBR1 kinase activity may have therapeutic benefit in the majority of RDEB cSCCs, however, the potential tumour suppressive role of TGFβ signalling in a subset of RDEB cSCCs necessitates biomarker identification to enable patient stratification before clinical intervention."	"The Cytokine TGF-β Induces Interleukin-31 Expression from Dermal Dendritic Cells to Activate Sensory Neurons and Stimulate Wound Itching. Cutaneous wound healing is associated with the unpleasant sensation of itching. Here we investigated the mechanisms underlying this type of itch, focusing on the contribution of soluble factors released during healing. We found high amounts of interleukin 31 (IL-31) in skin wound tissue during the peak of itch responses. Il31<sup>-/-</sup> mice lacked wound-induced itch responses. IL-31 was released by dermal conventional type 2 dendritic cells (cDC2s) recruited to wounds and increased itch sensory neuron sensitivity. Transfer of cDC2s isolated from late-stage wounds into healthy skin was sufficient to induce itching in a manner dependent on IL-31 expression. Addition of the cytokine TGF-β1, which promotes wound healing, to dermal DCs in vitro was sufficient to induce Il31 expression, and Tgfbr1<sup>f/f</sup> CD11c-Cre mice exhibited reduced scratching and decreased Il31 expression in wounds in vivo. Thus, cDC2s promote itching during skin would healing via a TGF-β-IL-31 axis with implications for treatment of wound itching."	"Genetic Variants Associated With Rotator Cuff Tearing Utilizing Multiple Population-Based Genetic Resources. The etiology of rotator cuff tearing is likely multifactorial including a potential genetic predisposition. The purpose of the study was to identify genetic variants associated with rotator cuff tearing utilizing the UK Biobank (UKB) cohort, confirm variants using a separate genetic database as well as evaluate tissue expression of genes with associated variants following rotator cuff tearing using RNA sequencing. GWA Study: A GWAS was performed using data from UKB with 5,701 cases of rotator cuff injury. RNA sequencing analyses: rotator cuff biopsies were obtained from 24 patients with full thickness rotator cuff tears that underwent arthroscopic rotator cuff repair (cases) and 9 patients that underwent open reduction internal fixation for a proximal humerus fracture (controls). Total RNA was extracted and differential gene expression was measured by RNA seq for genes with variants associated with rotator cuff tearing. The results of the UKB GWAS identified three loci that reached genome-wide statistical significance: two loci on chromosome 7 in GLCCI1 (rs4725069; p=5.0e-09) and THSD7A (rs575224171; p=5.3e-09), and one locus on chromosome 2 in ZNF804A (rs775583810; p=3.9e-09). The association with rotator cuff injury of the GLCCI1 SNP (rs4725069) was confirmed in the KPRB cohort (p=0.008). Twenty previously reported SNPs in 12 genes were evaluated using summary statistics from the UKB GWAS, which confirmed three SNPs in TNC with rotator cuff injury (rs1138545, rs72758637, rs7021589; all p&lt;0.0024). Of 17 genes with variants associated with rotator cuff injury (14 previously from literature plus 3 new genes from current UKB GWAS), TIMP2, Col5A1, TGFBR1 and TNC were upregulated (p&lt;0.001 for all) and THSD7A was downregulated (p=0.005) in tears versus controls in the RNA sequencing dataset. The UKB GWAS has identified three novel loci associated with rotator cuff tearing (ZNF804A, GLCCI1, THSD7A). Expression of the THSD7A gene was significantly downregulated in rotator cuff tears versus controls supporting a potential functional role. Three previously reported SNPs in the TNC gene were validated in the UKB GWAS supporting a role for this gene in rotator cuff tearing. Finally, TIMP2, Col5A1, TGFBR1 and TNC genes were found to have significantly upregulated tissue expression in cases versus controls supporting a biologic role in tearing for these genes."	"Novel long non-coding RNA LINC02323 promotes epithelial-mesenchymal transition and metastasis via sponging miR-1343-3p in lung adenocarcinoma. We have previously developed a unique metastasis-associated signature consisting of six long non-coding RNAs (lncRNAs), including a novel lncRNA, namely LINC02323. In the present study, we aimed to investigate the underlying roles of LINC02323 in the migration, invasion and TGF-β-induced epithelial-mesenchymal transition (EMT) of lung adenocarcinoma (LUAD) cells. The distribution of LINC02323 was detected by the nuclear-plasma separation experiment. Cell proliferation was assessd by MTT assay, and cell migration and invation were detected by transwell assays. EMT was detected by RT-qPCR and western blotting. Interaction between miRNA and LINC02323 was predicted by starBase v2.0 and confirmed by the double luciferase reporting system. LINC02323 was distributed in the cytoplasm and nucleus. The overexpression or deletion of LINC02323 did not affect the proliferation of LUAD cells, while significantly affected the migration and invasion of LUAD cells. TGF-β-induced EMT process was significantly affected by both RNA interference (RNAi) and overexpression of LINC02323. The predicted results showed that there were binding sites between LINC02323 and miR-1343-3p. The expression of LINC02323 was found to be negatively correlated with miR-1343-3p in LUAD by analyzing The Cancer Genome Atlas (TCGA) database. The double luciferase reporting system, RT-qPCR and western blotting experiments confirmed that LINC02323 could bind to miR-1343-3p, which bound to TGF-β receptor 1 (TGFBR1). Inhibition of miR-1343-3p reversed LINC02323 silencing-mediated suppression of migration, invasion and EMT. LINC02323 acts as a competing endogenous RNA (ceRNA), which sponged miR-1343-3p to upregulate the TGFBR1 expression and promote the EMT and metastasis in LUAD. SIGNIFICANT FINDINGS OF THE STUDY: LINC02323 promotes epithelial-mesenchymal transition and metastasis via sponging miR-1343-3p in lung adenocarcinoma. LINC02323 is a key molecule in the process of invasion and metastasis of LUAD and might be used as a potential target in metastatic cancer."	"Alpha lipoic acid promotes development of hematopoietic progenitors derived from human embryonic stem cells by antagonizing ROS signals. Antagonism of ROS signaling can inhibit cell apoptosis and autophagy, thus favoring the maintenance and expansion of hematopoietic stem cells. Alpha lipoic acid (ALA), a small antioxidant molecule, affects cell apoptosis by lowering the ROS level. In this study, we show that ALA promoted production of human pluripotent stem cells (hPSCs) derived hemogenic endothelial cells and hematopoietic stem/progenitor cells in vitro. Transcriptome analysis of hPSCs derived hemogenic endothelial cells showed that ALA promoted endothelial-to-hematopoietic transition by up-regulating RUNX1, GFI1, GFI1B, MEIS2, and HIF1A and down-regulating SOX17, TGFB1, TGFB2, TGFB3, TGFBR1, and TGFBR2. ALA also up-regulated sensor genes of ROS signals, including HIF1A, FOXO1, FOXO3, ATM, PETEN, SIRT1, and SIRT3, during the process of hPSCs derived hemogenic endothelial cells generation. However, in more mature hPSC-derived hematopoietic stem/progenitor cells, ALA reduced ROS levels and inhibited apoptosis. In particular, ALA enhanced development of hPSCs derived hematopoietic stem/progenitor cells by up-regulating HIF1A in response to a hypoxic environment. Furthermore, addition of ALA in ex vivo culture greatly improved the maintenance of functional cord blood HSCs by in vivo transplantation assay. Our findings support the conjecture that ALA plays an important role in efficient regeneration of hematopoietic stem/progenitor cells from hPSCs and maintenance of functional HSCs, providing insight into understanding of regeneration of early hematopoiesis for engineering clinically useful hPSCs derived hematopoietic stem/progenitor cells transplantation. Thus, ALA can be used in the study of hPSCs derived HSCs."	"miR-96-5p regulated TGF-β/SMAD signaling pathway and suppressed endometrial cell viability and migration via targeting TGFBR1. We previously performed high throughput RNA-seq in paired eutopic and ectopic endometrial specimen of endometriosis patients, and validated the results by qRT-PCR in endometriosis endometrial tissues. MiR-96-5p was significantly downregulated in ectopic endometrial tissues compared to eutopic tissues. In order to identify the role of miR-96-5p in endometriosis and endometrial cells, and investigate the underlying mechanisms, the Ishikawa and End1/E6E7 cell lines were transfected with miR-96-5p mimics, miR-96-5p inhibitors or TGFBR1 siRNA. The expression of TGF-β/SMAD signaling pathway components and epithelial-mesenchymal transition (EMT) markers were examined by qRT-PCR and western blot, and cell viability and migration were determined by CCK-8, transwell and wound healing assays, respectively. We discovered miR-96-5p to be significantly downregulated while TGFBR1 was distinctly up-regulated in endometriosis. Overexpression of miR-96-5p inhibited endometrial cells viability and migration, while inhibition of miR-96-5p had opposite effect. Furthermore, we confirmed TGFBR1 was a direct target of miR-96-5p. Overexpression of miR-96-5p could block the TGF-β/SMAD signaling pathway via targeting TGFBR1 and reverse the TGF-β1 induced EMT in endometrial cell lines. In conclusion, we demonstrated that miR-96-5p interacted with TGF-β/SMAD signaling pathway and blocked the TGF-β1 induced EMT in endometrial cells via directly targeting TGFBR1."	"A Tgfbr1/Snai1-dependent developmental module at the core of vertebrate axial elongation. Formation of the vertebrate postcranial body axis follows two sequential but distinct phases. The first phase generates pre-sacral structures (the so-called primary body) through the activity of the primitive streak on axial progenitors within the epiblast. The embryo then switches to generate the secondary body (post-sacral structures), which depends on axial progenitors in the tail bud. Here we show that the mammalian tail bud is generated through an independent functional developmental module, concurrent but functionally different from that generating the primary body. This module is triggered by convergent Tgfbr1 and Snai1 activities that promote an incomplete epithelial to mesenchymal transition on a subset of epiblast axial progenitors. This EMT is functionally different from that coordinated by the primitive streak, as it does not lead to mesodermal differentiation but brings axial progenitors into a transitory state, keeping their progenitor activity to drive further axial body extension."	"A daf-7-related TGF-β ligand (Hc-tgh-2) shows important regulations on the development of Haemonchus contortus. In most multicellular organisms, the transforming growth factor-β (TGF-β) signalling pathway is involved in regulating the growth and stem cell differentiation. Previous studies have demonstrated the importance of three key molecules in this pathway in the parasitic nematode Haemonchus contortus, including one TGF-β type I receptor (Hc-tgfbr1), one TGF-β type II receptor (Hc-tgfbr2), and one co-Smad (Hc-daf-3), which regulated the developmental transition from the free-living to the parasitic stages of this parasite. However, almost nothing is known about the function of the TGF-β ligand (Hc-tgh-2) of H. contortus. Here, the temporal transcription profiles of Hc-tgh-2 at eight different developmental stages and spatial expression patterns of Hc-TGH-2 in adult female and male worms of H. contortus have been examined by real-time PCR and immunohistochemistry, respectively. In addition, RNA interference (RNAi) by soaking was employed to assess the importance of Hc-tgh-2 in the development from exsheathed third-stage larvae (xL3s) to fourth-stage larvae (L4s) in H. contortus. Hc-tgh-2 was continuously transcribed in all eight developmental stages of H. contortus studied with the highest level in the infective third-stage larvae (iL3) and Hc-TGH-2 was located in the muscle of the body wall, intestine, ovary of adult females and testes of adult males. Silencing Hc-tgh-2 by the specific double-stranded RNA (dsRNA), decreased the transcript level of Hc-tgh-2 and resulted in fewer xL3s developing to L4s in vitro. These results suggested that the TGF-β ligand, Hc-TGH-2, could play important roles in the developmental transition from the free-living (L3s) to the parasitic stage (L4s). Furthermore, it may also take part in the processes such as digestion, absorption, host immune response and reproductive development in H. contortus adults."	"Genetic Tracing of Clonal Expansion and Progression of Pancreatic Ductal Adenocarcinoma: A Case Report and Multi-Region Sequencing Analysis. Pancreatobiliary tumors frequently contain multiple malignant and precancerous lesions; however, the origin of the driver mutations and the mechanisms that underlie the generation of distinct clones within an organ field remain unclear. Herein, we describe a 76-year-old male suffering from moderately differentiated adenocarcinomas of the pancreas that primarily involved the distal bile duct and multiple &quot;dispersing&quot; invasive lesions in the pancreatic head. The patient underwent pylorus-preserving pancreaticoduodenectomy with superior mesenteric vein resection, and targeted sequencing of 18 genes associated with pancreatic tumorigenesis and immunohistochemical analysis of RNF43 and ARID1A were performed on each tumor compartment, including the invasive and non-invasive areas. Multi-region sequencing revealed shared KRAS and TGFBR1 mutations in all invasive foci, including those involving the distal bile duct. Distinct KRAS variants were found to be present in other non-continuous and non-invasive lesions in the pancreas. Intraductal lesions with KRAS G12D and RNF43 V50R mutations were evident in the main pancreatic duct. This appeared to be a founder clone, given that the mutation profile was common to the invasive foci as well as the additional high-grade dysplasia harboring ARID1A mutations, thereby suggesting a clonal branch-off during tumor evolution. In addition, we also observed independent intraductal papillary mucinous neoplasms with KRAS G12V and GNAS R201H mutations. Our theory, learned from this patient, was that lesions skipped dissemination and wide-spread movement potentially through the pancreatic ductal system as a process of pancreatic cancer development."	"Farnesoid X receptor activation inhibits TGFBR1/TAK1-mediated vascular inflammation and calcification via miR-135a-5p. Chronic inflammation plays a crucial role in vascular calcification. However, only a few studies have revealed the mechanisms underlying the development of inflammation under high-phosphate conditions in chronic kidney disease (CKD) patients. Here, we show that inflammation resulting from the activation of the TGFBR1/TAK1 pathway is involved in calcification in CKD rats or osteogenic medium-cultured human aortic smooth muscle cells (HASMCs). Moreover, miR-135a-5p is demonstrated to be a key regulator of the TGFBR1/TAK1 pathway, which has been reported to be decreased in CKD rats. We further reveal that farnesoid X receptor (FXR) activation increases miR-135a-5p expression, thereby inhibiting the activation of the TGFBR1/TAK1 pathway, ultimately resulting in the attenuation of vascular inflammation and calcification in CKD rats. Our findings provide advanced insights into the mechanisms underlying the development of inflammation in vascular calcification, and evidence that FXR activation could serve as a therapeutic strategy for retarding vascular calcification in CKD patients."	"Post-hoc analysis of single nucleotide polymorphism profile for eyes with vascularized pigment epithelial detachment due to ARMD. This post-hoc case-control study compares single nucleotide polymorphism (SNP) profile of eyes with vascularized pigment epithelial detachment (vPED) due to age-related macular degeneration (ARMD) with: (1) Control-1 eyes (no ARMD and AREDS Severity Scale 0); and (2) Control-2 eyes (drusen or AREDS Severity Scale 2). SNP profile of High Responders (HR) was also compared with Low Responders (LR) to ranibizumab. Blood samples from 40 patients with vPED treated with ranibizumab were sent for SNP-specific genotype analysis for comparison of variant allele frequencies of 23 SNPs associated with ARMD (VAF) to VAF in 184 Control-1 eyes, and VAF in 85 Control-2 eyes. VAF of HR-50 (⩾50% decrease in PED height) and VAF of HR-75 (⩾75% decrease in PED height) were also compared with VAF of LR. These SNPs were more frequent in vPED than Control-1 eyes: APOE rs4420638 (A/G), HTRA1 rs104904924 (G/T), VEGF rs943080 (T/C), CFH rs1061170 (T/C), CFH rs2274700 (C/T), CFH rs10737680 (A/C), CFH rs10801555 (G/A). These SNPs were more frequent in vPED than Control-2 eyes: APOE rs4420638 (A/G), CFI rs4698775 (G/T), COL15A1/TGFBR1 rs334353 (T/G). FRK rs3812111 (T/A) was more frequent in HR-50 and HR-75 eyes compared with LR. Seven SNPs were more frequent in vPED eyes than non-ARMD eyes, and three SNPs were more frequent in vPED eyes than drusen eyes. Adjusting for multiplicity, only CFH rs2274700 (C/T) was significant for first comparison, and only COL15A1/TGFBR1 rs334353 (T/G) was significant for second comparison. APOE rs4420638 (A/G) was the single SNP more frequently linked to vPED eyes for both comparisons. FRK rs3812111 (T/A) was consistently associated with high responders."	"MicroRNA-183 exerts a protective role in lupus nephritis through blunting the activation of TGF-β/Smad/TLR3 pathway via reducing Tgfbr1. The role of microRNA (miR)-183 has been elucidated in systemic lupus erythematosus, while whether it is also engaged in the lupus nephritis (LN) development remains opaque. The intention of this study is to examine the relevance of miR-183 downregulation in the pathogenesis of LN. The expression of miR-183 was first detected in MRL/lpr mice at weeks 8 and 12, followed by the assessment the effects of miR-183 on renal fibrosis and inflammatory response after overexpression or silencing of miR-183 in mice with LN. We further overexpressed or knocked-down miR-183 in human renal glomerular endothelial cells (HRGECs), and detected the expression patterns of inflammatory factors and Vimentin and α-SMA in the cells. Differentially expressed genes in HRGECs overexpressing miR-183 by microarrays were intersected with targeting mRNAs of miR-183 predicted by bioinformatics websites. The effects of transforming growth factor beta receptor 1 (Tgfbr1) and TGF-β/Smad/TLR3 pathway on renal damage in mice were verified by rescue experiments. miR-183 expression was notably lower in MRL/lpr mice, and increased miR-183 expression inhibited renal fibrosis and inflammatory response in mice with LN. Moreover, miR-183 inhibitor in HRGECs remarkably promoted the expression of Vimentin and α-SMA and the secretion of inflammatory factors. miR-183 protected the mouse kidney from pathological damages by targeting and inhibiting Tgfbr1 expression. miR-183 inhibited the expression of Tgfbr1 by direct targeting to disrupt the TGF-β/Smad/TLR3 pathway, thus repressing renal fibrosis and the secretion of inflammatory factors in LN."	"Islet-cell autoantigen 69 accelerates liver regeneration by downregulating Tgfbr1 and attenuating Tgfβ signaling in mice. Regeneration is a unique defense mechanism of liver tissue in response to functional cell loss induced by toxic chemicals or surgical resection. In this study, we found that Islet-cell autoantigen 69 (Ica69) accelerates liver regeneration in mice. Following 70% partial hepatectomy, both Ica69 mRNA and protein are significantly upregulated in mouse hepatocytes at the early stage of liver regeneration. Compared with the wild-type mice, Ica69-deficient mice have more severe liver injury, delayed liver regeneration and high surgical accidental mortality following hepatectomy. Mechanistically, Ica69 interacts with Pick1 protein to regulate Tgfbr1 protein expression and Tgfβ-induced Smad2 phosphorylation. Our findings suggest that Ica69 in liver tissue is a new potential target for promoting liver regeneration."	"Long Noncoding RNA SOX2-OT Exacerbates Hypoxia-Induced Cardiomyocytes Injury by Regulating miR-27a-3p/TGFβR1 Axis. Myocardial infarction (MI) was a severe cardiovascular disease resulted from acute, persistent hypoxia, or ischemia condition. Additionally, MI generally led to heart failure, even sudden death. A multitude of research studies proposed that long noncoding RNAs (lncRNAs) frequently participated in the regulation of heart diseases. The specific function and molecular mechanism of SOX2-OT in MI remained unclear. Aim of the Study. The current research was aimed to explore the role of SOX2-OT in MI. Bioinformatics analysis (DIANA tools and Targetscan) and a wide range of experiments (CCK-8, flow cytometry, RT-qPCR, luciferase reporter, RIP, caspase-3 activity, trans-well, and western blot assays) were adopted to investigate the function and mechanism of SOX2-OT. We discovered that hypoxia treatment decreased cell viability but increased cell apoptosis. Besides, lncRNA SOX2-OT expression was upregulated in hypoxic HCMs. Hereafter, we confirmed that SOX2-OT could negatively regulate miR-27a-3p levels by directly binding with miR-27a-3p, and miR-27a-3p also could negatively regulate SOX2-OT levels. Furthermore, knockdown of SOX2-OT promoted cell proliferation, migration, and invasion, but limited cell apoptosis. However, these effects were reversed by anti-miR-27a-5p. Besides, we verified that miR-27a-3p binding with the 3'UTR of TGFBR1 and SOX2-OT regulated TGFβR1 level by collaborating with miR-27a-3p in HCMs. Eventually, rescue assays validated that the influence of SOX2-OT silence or miR-27a-3p overexpression on cellular processes in cardiomyocytes injury was counteracted by TGFBR1 overexpression. Long noncoding RNA SOX2-OT exacerbated hypoxia-induced cardiomyocytes injury by regulating miR-27a-3p/TGFβR1 axis, which may provide a novel insight for heart failure treatment."	"Identification of a Pathogenic TGFBR2 Variant in a Patient With Loeys-Dietz Syndrome. Loeys-Dietz syndrome (LDS) is a rare connective tissue genetic disorder that is caused by a pathogenic variant in genes of transforming growth factor (TGF) beta receptor 1 (TGFBR1), TGFBR2, mothers against decapentaplegic homolog 2 (SMAD2), SMAD3, TGFB2, or TGFB3. It is characterized by aggressive vascular pathology, aneurysms, arterial tortuosity, bifid uvula, hypertelorism, and cleft palate. Here we present a 42-year-old female patient with LDS. The patient underwent rapidly progressing artery aneurysms and life-threatening aortic dissection. Spontaneous fracture of the first metatarsal bone was noted in her medical record. Physical examination revealed a delayed wound healing on her left abdomen. Considering these clinical manifestations, we speculated that there was a genetic defect in the connective tissue, which provides strength and flexibility to structures such as bones, skins, ligaments, and blood vessels. Thus, whole exome sequencing (WES) was performed on the proband and revealed a heterozygous missense pathogenic variant (c.1613T &gt; C/p.Val538Ala) in TGFBR2, which was a de novo variant in the proband as confirmed by the segregation analysis in parental samples. Although this variant was discovered and associated with the phenotype of LDS previously, the pathogenicity of the variant had not been confirmed by cellular functional assay yet. To further validate the effects of the variant in vitro, we assessed the canonical TGF-β signaling pathway in mutant cells. Our results showed that the p.Val538Ala variant significantly decreased TGF-β-induced gene transcription and the phosphorylation of Smad2, which were consistent with other pathogenic variants of TGFBR2. In conclusion, this study demonstrates that the p.Val538Ala pathogenic variant in TGFBR2 leads to aberrant TGF-β signaling and LDS in this patient."	"Network-based Transcriptome-wide Expression Study for Postmenopausal Osteoporosis. Menopause is a crucial physiological transition during a woman's life, and it occurs with growing risks of health issues like osteoporosis. To identify postmenopausal osteoporosis-related genes, we performed transcriptome-wide expression analyses for human peripheral blood monocytes (PBMs) using Affymetrix 1.0 ST arrays in 40 Caucasian postmenopausal women with discordant bone mineral density (BMD) levels. We performed multiscale embedded gene coexpression network analysis (MEGENA) to study functionally orchestrating clusters of differentially expressed genes in the form of functional networks. Gene sets net correlations analysis (GSNCA) was applied to assess how the coexpression structure of a predefined gene set differs in high and low BMD groups. Bayesian network (BN) analysis was used to identify important regulation patterns between potential risk genes for osteoporosis. A small interfering ribonucleic acid (siRNA)-based gene silencing in vitro experiment was performed to validate the findings from BN analysis. MEGENA showed that the &quot;T cell receptor signaling pathway&quot; and the &quot;osteoclast differentiation pathway&quot; were significantly enriched in the identified compact network, which is significantly correlated with BMD variation. GSNCA revealed that the coexpression structure of the &quot;Signaling by TGF-beta receptor complex pathway&quot; is significantly different between the 2 BMD discordant groups; the hub genes in the postmenopausal low and high BMD group are FURIN and SMAD3 respectively. With siRNA in vitro experiments, we confirmed the regulation relationship of TGFBR2-SMAD7 and TGFBR1-SMURF2. The present study suggests that biological signals involved in monocyte recruitment, monocyte/macrophage lineage development, osteoclast formation, and osteoclast differentiation might function together in PBMs that contribute to the pathogenesis of postmenopausal osteoporosis."	"Gene Expression and Cellular Markers of Occupational Radiation Exposure in Chernobyl Shelter Construction Workers. Low-dose radiation effects were studied in Ukrainian personnel of the Chernobyl exclusion zone. The aim of this study was to determine the influence of borderline exposure to annual professional limits and age on expression of molecular markers. Study groups included 300 radiation workers performing construction work on the New Safe Confinement (Arch) upon the Chernobyl &quot;Shelter&quot; [external dose, 26.1 ± 18.1 mSv; age, 43.1 ± 10.3 y overall and 48.7 ± 5.9 y for 69 control persons]. Methods included gene expression using RT-PCR, flow cytometry of lymphocyte antigens, gamma-H2AX, Cyclin D1 expression, and relative telomere length using flow-FISH. A statistically significant upregulation of VEGFA BAX, DDB2, NFKB1 was shown at doses below 35 mSv. In workers aged under 40 y with doses higher than 35 mSv, an upregulation of 16 genes was revealed-VEGFA, TERF2, TERF1, BIRC5, BAX, TP53, DDB2, CDKN1B, CDKN2A, NFKB2, MAPK14, TGFBR1, MKNK2, CDKN1A, NFKB1, TP53I3; and four genes were downregulated-MADD, FASL, CSF2, and TERT. In workers older than 40 y, 8 genes were upregulated and 12 were downregulated. All groups showed an increased and dose-dependent gamma-H2AX expression. Downregulation of CCND1 genes in older groups was accompanied by lower numbers of Cyclin D1 protein expression and lower CD3 and CD4 cell counts. Upregulation of CSF2 in those over 40 y old positively correlated with B-cell and NK-cell counts. A non-linear type of gene expression response was demonstrated: in doses over 35 mSv for those over 40 y, the increased expression of gamma-H2AX is associated with upregulation of cell survival positive regulators-BIRC5, BRCA1, DDB2, CCND1, TERT genes, and longer telomeres; the younger age group was characterized by TERF1 and TERF2 upregulation and telomere shortening."	"TGFBR1 Rare Variant Associated With Thoracic Aortic Aneurysm, Double Chamber Left Ventricle, Coronary Anomaly, and Inducible Ventricular Tachycardia. NA"	"miR-196b-5p controls adipocyte differentiation and lipogenesis through regulating mTORC1 and TGF-β signaling. MicroRNAs have been reported to play a role in adipogenesis and obesity. This study was performed to investigate the role of miR-196b-5p in adipogenesis and the mechanism involved. The data revealed that miR-196b-5p expression increased in primary or established marrow stromal progenitor cells after adipogenic treatment. Supplementing miR-196b-5p in the progenitor cells stimulated adipogenic differentiation and lipogenesis, along with the induction of adipogenic and lipogenic factors. Conversely, inhibition of endogenous miR-196b-5p blocked adipogenesis and lipogenesis. Tuberous sclerosis 1 (Tsc1) and transforming growth factor-β receptor 1 (TGFBR1) were demonstrated to be the direct target genes of miR-196b-5p. Supplementing miR-196b-5p activity in progenitor cells reduced the protein level of TSC1 and activated mammalian target of rapamycin complex 1 (mTORC1) signaling. We further demonstrated that the perturbation of TSC1 in progenitor cells altered the trend of adipogenic differentiation and lipogenesis. Overexpression of Tsc1 or inactivation of mTORC1 signaling attenuated the stimulation of adipogenic differentiation and lipogenesis by miR-196b-5p. Overexpression of Tgfbr1 also partially blocked the adipogenic effect of miR-196b-5p. Further investigations demonstrated that zinc finger E-box-binding homeobox 1 (ZEB1) transcriptionally upregulated miR-196b-5p expression. The current study suggests that miR-196b-5p promotes adipogenic differentiation and lipogenesis in progenitor cells through targeting TSC1 and TGFBR1 and therefore regulating mTORC1 and TGF-β signaling."	"Ectopia lentis in Loeys-Dietz syndrome type 4. Loeys-Dietz syndrome is a heritable disorder of the connective tissue leading to multisystem involvement including craniofacial features, skeletal abnormalities, cutaneous findings and early-onset and aggressive disease of the aorta and its branches. There are multiple types of Loeys-Dietz syndrome related to pathogenic variants in TGFBR1, TGFBR2, SMAD3, TGFB2, and TGFB3. Individuals with Loeys-Dietz syndrome may be misdiagnosed as having Marfan syndrome due to shared phenotypic features and aortic root dilation. However, ectopia lentis has been an important discriminating feature, being unique to Marfan syndrome and not reported to be associated with Loeys-Dietz syndrome. We report the case of a 46-year-old woman with Loeys-Dietz syndrome type 4 due to a pathogenic variant in TGFB2 who was diagnosed with ectopia lentis at age 44. The patient underwent whole exome sequencing and no other pathogenic variants were found to explain the ectopia lentis. Our findings indicate that ectopia lentis may be an uncommon finding in Loeys-Dietz syndrome type 4 and emphasize the importance of genetic testing in familial thoracic aortic aneurysm disease."	"In-silico investigations of selective miRNA-gene targets and their validation studies in obstructive sleep apnea (OSA) patient cohorts. Obstructive sleep apnoea (OSA) is a prevalent form of sleep disordered breathing which results in sleep fragmentation and deprivation. Obesity and cardiovascular disorders are the major risk factors associated with OSA. Molecular analysis of the factors associated with OSA could demarcate the clinical analysis pattern in a population. This study pertains to in-silico analyses of miRNA and their gene targets with validation for their potential role in OSA as putative biomarker candidates. miRDB, TargetScan and miRanda databases were used to identify targets of miR-27 and let-7 that have documented role in OSA and co-related obesity and cardiovascular disorders. Quantitative PCR was used to analyze expression pattern of miR-27 and let-7 in obese and non-obese OSA patient cohorts with respective controls. In-silico analysis was done using PatchDoc to obtain atomic contact energy (ACE) scores that indicated the docked gene targets to the predicted miRNA structures. The docked structures were analysed using Maestro Suite 11 for the hydrogen and aromatic interactions. Downregulation of miR-27 and let-7 in OSA compared to controls was observed. In-silico data analysis was performed for gene targets (TGFBR1, TGFBR2, SMAD2, SMAD4, CRY2 and CNR1) of the selected miRNAs (miR-27 and let-7). Among all, CNR1 and CRY2 were found to be better targets for miR-27 and let-7 respectively as per ACE scores, ROC scores and expression fold change in OSA. Our study gives insights to the expression profiling of miR-27 and let-7 and explore a set of potential target genes (CNR1 and CRY2) of these two miRNAs for a promising clinical relevance in OSA."	"Logic-based analysis of gene expression data predicts association between TNF, TGFB1 and EGF pathways in basal-like breast cancer. For breast cancer, clinically important subtypes are well characterized at the molecular level in terms of gene expression profiles. In addition, signaling pathways in breast cancer have been extensively studied as therapeutic targets due to their roles in tumor growth and metastasis. However, it is challenging to put signaling pathways and gene expression profiles together to characterize biological mechanisms of breast cancer subtypes since many signaling events result from post-translational modifications, rather than gene expression differences. We designed a logic-based computational framework to explain the differences in gene expression profiles among breast cancer subtypes using Pathway Logic and transcriptional network information. Pathway Logic is a rewriting-logic-based formal system for modeling biological pathways including post-translational modifications. Our method demonstrated its utility by constructing subtype-specific path from key receptors (TNFR, TGFBR1 and EGFR) to key transcription factor (TF) regulators (RELA, ATF2, SMAD3 and ELK1) and identifying potential association between pathways via TFs in basal-specific paths, which could provide a novel insight on aggressive breast cancer subtypes. Codes and results are available at http://epigenomics.snu.ac.kr/PL/."	"Dysregulation of miR-3607 predicts prognosis of hepatocellular carcinoma and regulates tumor cell proliferation, migration and invasion. Hepatocellular carcinoma (HCC) is one of the most common global malignancies with increasing morbidity and mortality. The purpose of this study was to investigate the expression levels and prognostic value of microRNA-3607 (miR-3607) in patients with HCC. The expression of miR-3607 was estimated by quantitative real-time RT-PCR. Survival analysis using the Kaplan-Meier method and Cox regression analysis was conducted to evaluate the prognostic value of miR-3607. The functional role of miR-3607 in HCC progression was further assessed using gain- and loss-of-function experiments. Bioinformatics analysis and a dual-luciferase reporter assay were used to explore the direct targets of miR-3607. miR-3607 expression was found to be significantly decreased in HCC tissues and cells compared with the matched tissues and cells (P &lt; 0.001). The decreased expression of miR-3607 was associated with the patients' tumor size and TNM stage (all P &lt; 0.05). According to the survival curves, patients with low miR-3607 expression had poorer overall survival than those with high levels (log-rank P = 0.012). Moreover, the Cox analysis results indicated that miR-3607 expression was an independent prognostic factor for HCC. The results of cell experiments revealed that the overexpression of miR-3607 in HCC cells led to the inhibited cell proliferation, migration, and invasion. TGFBR1 was identified as a direct target of miR-3607. The data of this study indicated that the decreased expression of miR-3607 in HCC predicts poor prognosis and the overexpression of miR-3607 in HCC cells can suppress the tumor progression by targeting TGFBR1. This study provides a novel insight into the prognosis and treatment of HCC, and miR-3607 serves as a candidate prognostic biomarker and therapeutic target of HCC."	"Astragaloside IV protects human cardiomyocytes from hypoxia/reoxygenation injury by regulating miR-101a. Astragaloside IV (AS/IV) is one of the extracted components from the traditional Chinese medicine Astragalus which has been demonstrated to have potential capacity for anti-inflammation activity and for treating cardiovascular disease. Our purpose was to determine the function and underlying molecular mechanism of AS/IV in hypoxia/reoxygenation (H/R) injured in cardiomyocytes. Differentially expressed genes (DEGs) were screened using bioinformatic analysis, and the molecular targeting relationship was verified by the dual-luciferase report system. H/R injured cardiomyocytes were employed to explore the effect of AS/IV. QRT-PCR and Western blot analysis were applied to detect the expression of mRNA and proteins, respectively. Additionally, superoxide dismutase (SOD), lactic dehydrogenase (LDH) and MDA (malondialdehyde) levels were detected to determine the oxidative damage. Cell viability was assessed by CCK-8, and flow cytometry was used to evaluate cell apoptosis ratio. TGFBR1 and TLR2 were selected as DEGs. Additionally, AS/IV could enhance cell proliferation and upregulated miR-101a expression, which suppressed TGFBR1 and TLR2 expression in H/R injured cardiomyocytes. Moreover, the results of Western blot exhibited that the downstream genes (p-ERK and p-p38) in the MAPK signaling pathway were suppressed, which meant AS/IV could inhibit this pathway in H/R injured cardiomyocytes. Overall, this study demonstrated AS/IV could attenuate H/R injury in human cardiomyocytes via the miR-101a/TGFBR1/TLR2/MAPK signaling pathway axis, which means that it could serve as a possible alternate for H/R treatment."	"In-depth characterization of the tumor microenvironment in central nervous system lymphoma reveals implications for immune-checkpoint therapy. Primary central nervous system lymphoma (PCNSL) is a rare type of non-Hodgkin lymphoma with an aggressive clinical course. To investigate the potential of immune-checkpoint therapy, we retrospectively studied the tumor microenvironment (TME) using high-plex immunohistochemistry in 22 PCNSL and compared to 7 secondary CNS lymphomas (SCNSL) and 7 &quot;other&quot; CNSL lymphomas with the presence of the Epstein-Barr virus and/or compromised immunity. The TME in PCNSL was predominantly composed of CD8+ cytotoxic T cells and CD163+ phagocytes. Despite molecular differences between PCNSL and SCNSL, the cellular composition and the functional spectrum of cytotoxic T cells were similar. But cytotoxic T cell activation was significantly influenced by pre-biopsy corticosteroids intake, tumor expression of PD-L1 and the presence of EBV. The presence of low numbers of CD8+ T cells and geographic-type necrosis each predicted inferior outcome in PCNSL. Both M1-like (CD68 + CD163<sup>low</sup>) and M2-like (CD68 + CD163<sup>high</sup>) phagocytes were identified, and an increased ratio of M1-like/M2-like phagocytes was associated with a better survival. PD-L1 was expressed in lymphoma cells in 28% of cases, while PD1 was expressed in only 0.4% of all CD8+ T cells. TIM-3, a marker for T cell exhaustion, was significantly more expressed in CD8<sup>pos</sup>PD-1<sup>pos</sup> T cells compared to CD8<sup>pos</sup>PD-1<sup>neg</sup> T cells, and a similar increased expression was observed in M2-like pro-tumoral phagocytes. In conclusion, the clinical impact of TME composition supports the use of immune-checkpoint therapies in PCNSL. Based on observed differences in immune-checkpoint expression, combinations that boost cytotoxic T cell activation (by blocking TIM-3 or TGFBR1) prior to the administration of PD-L1 inhibition could be of interest."	"Circ_0002770, acting as a competitive endogenous RNA, promotes proliferation and invasion by targeting miR-331-3p in melanoma. Melanoma is a kind of tumor that originates from melanocytes and is characterized by chemoresistance and distant metastasis. Although the complete pathogenesis of melanoma remains unclear, increasing evidence suggests that circular RNAs (circRNAs) may be involved. In the present study, we identified a circular RNA, circ_0002770, which is produced from the well-known oncogene MDM2, and was sharply increased in melanoma and correlated with a poor prognosis. Knockdown of circ_0002770 suppressed melanoma cell invasion, migration and proliferation. Mechanistically, circ_0002770 acted as a sponge of miR-331-3p and could indirectly regulate DUSP5 and TGFBR1. Inhibition of miR-331-3p reversed the inhibitory effect of si-circ_0002770 on melanoma cell proliferation and invasion. In vivo evidence further confirmed that silencing circ_0002770 inhibited melanoma tumor formation. In conclusion, circ_0002770 facilitated melanoma cell proliferation, invasion and migration by sponging miR-331-3p and modulating DUSP5 and TGFBR1."	"miR-4458 inhibits the epithelial-mesenchymal transition of hepatocellular carcinoma cells by suppressing the TGF-β signaling pathway via targeting TGFBR1. Hepatocellular carcinoma (HCC) is one of the most lethal cancers in the world. MicroRNAs play a pivotal role in the progression of various cancers. To date, very little attention has been paid to miR-4458. Therefore, the aim of our study was to explore the function and underlying molecular mechanism of miR-4458 in HCC. We found that the expression of miR-4458 was reduced in HCC tissues and cell lines. Forced overexpression of miR-4458 inhibited the migration, invasion, and epithelial-mesenchymal transition (EMT) of HCC cells, while downregulation of miR-4458 promoted the aggressive phenotype. Furthermore, transforming growth factor beta receptor 1 (TGFBR1), the modulator of the TGF-β signaling pathway, was verified to be a novel target gene of miR-4458 by dual-luciferase reporter gene assay. Upregulated miR-4458 dramatically abolished TGFBR1 and p-Smad2/3 expression, thus blocking the TGF-β signaling pathway. Moreover, restoration of TGFBR1 partially rescued the miR-4458-mediated suppressive effect on the migration, invasion, and EMT and reactivated the TGF-β signaling pathway in HCC cells. In summary, our findings first demonstrated a mechanism of miR-4458 in HCC cell migration, invasion, and EMT by regulating the TGF-β signaling pathway via directly targeting TGFBR1."	"Metformin and Inhibition of TGF-β Stimulate In Vitro Transport in Primary Renal Tubule Cells. Patient-oriented applications of cell culture include cell therapy of organ failure like chronic renal failure. Clinical deployment of a cell-based device for artificial renal replacement requires qualitative and quantitative fidelity of a cultured cell to its in vivo counterpart. Active specific apicobasal ion transport reabsorbs 90-99% of the filtered load of salt and water in the kidney. In a bioengineered kidney, tubular transport concentrates wastes and eliminates the need for hemodialysis, but renal tubule cells in culture transport little or no salt and water. We previously identified TGF-β as a signaling pathway necessary for in vitro differentiation of renal tubule cells. Inhibition of TGFBR1 led to active inhabitable electrolyte and water transport by primary human renal tubule epithelial cells in vitro. Addition of metformin increased transport, in the context of a transient effect on AMPK phosphorylation. The signals that undermine in vitro differentiation are complex but susceptible to pharmacologic intervention. This achievement overcomes a major hurdle limiting the development of a bioreactor of cultured cells for renal replacement therapy that encompasses not only endocrine and metabolic functions, but also transport and excretion."	"Clinical Efficacy and Transcriptomic Analysis of Congrong Shujing Granules () in Patients with Parkinson's Disease and Syndrome of Shen (Kidney) Essence Deficiency. To evaluate the clinical efficacy and safety of Congrong Shujing Granules ( , CSGs) in treating patients with Parkinson's disease (PD) and Chinese medicine (CM) syndrome of Shen (Kidney) essence deficiency, and to investigate the potential mechanism involving efficacy through a transcriptome sequencing approach. Eligible PD patients with syndrome of Shen essence defificiency were randomly assigned to a treatment group or a control group by a random number table, and were treated with CSGs combined with Western medicine (WM), or placebo combined with WM, respectively. Both courses of treatment lasted for 12 weeks. The Unifified Parkinson's Disease Rating Scale (UPDRS) score, the PD Question-39 (PDQ-39) score, CM Syndrome Scale score, and drug usage of all patients were evaluated before and after treatment. Safety was evaluated by clinical laboratory tests and electrocardiographs. Blood samples from 6 patients in each group were collected before and after the trial and used for transcriptomic analysis by gene ontology analysis and Kyoto Encyclopedia of Genes and Genomes pathway analysis. Differentially expressed genes were validated using reverse transcription-polymerase chain reaction. A total of 86 PD patients were selected from the Third Affifiliated People's Hospital of Fujian University of Traditional Chinese Medicine between January 2017 and December 2017. Finally, 72 patients completed the trial, including 35 in the treatment group and 37 in the control group. When compared with the control group after treatment, patients in the treatment group showed signifificant decreases in UPDRS sub-II score, PDQ-39 score, CM syndrome score, and Levodopa equivalent dose (P&lt;0.05). During the treatment course, no signifificant changes were observed in safety indicators between the two groups (P&gt;0.05). A possible mechanism of clinical effificacy was proposed that involved regulating cell metabolism-related processes and ribosome-related pathways. Treatment with CSGs had shown to affect relevant gene loci for PD, including AIDA, ANKRD36BP2, BCL2A1, BCL2L11, FTH1P2, GCH1, HPRT1, NFE2L2, RMRP, RPS7, TGFBR1, WIPF2, and COX7B. CSGs combined with WM can be used to treat PD patients with CM syndrome of Shen essence defificiency with a good safety. The possible mechanism of action and relevant gene loci were proposed. (Registration No. ChiCTR-IOR-16008394)."	"Dominant regulation of long-term allograft survival is mediated by microRNA-142. Organ transplantation is often lifesaving, but the long-term deleterious effects of combinatorial immunosuppression regimens and allograft failure cause significant morbidity and mortality. Long-term graft survival in the absence of continuing immunosuppression, defined as operational tolerance, has never been described in the context of multiple major histocompatibility complex (MHC) mismatches. Here, we show that miR-142 deficiency leads to indefinite allograft survival in a fully MHC mismatched murine cardiac transplant model in the absence of exogenous immunosuppression. We demonstrate that the cause of indefinite allograft survival in the absence of miR-142 maps specifically to the T cell compartment. Of therapeutic relevance, temporal deletion of miR-142 in adult mice prior to transplantation of a fully MHC mismatched skin allograft resulted in prolonged allograft survival. Mechanistically, miR-142 directly targets Tgfbr1 for repression in regulatory T cells (TREG ). This leads to increased TREG sensitivity to transforming growth factor - beta and promotes transplant tolerance via an augmented peripheral TREG response in the absence of miR-142. These data identify manipulation of miR-142 as a promising approach for the induction of tolerance in human transplantation."	"P27 deletion enhances hematopoiesis by paracrine action of IL22 secreted from bone marrow mesenchymal stem cells. Previous studies have reported that p27 deletion stimulates the proliferation of bone marrow mesenchymal stem cells (BM-MSCs) and their differentiation into osteoblasts, it also increases bone marrow hematopoietic progenitor cells (HPCs). However, it is unknown whether the enhanced hematopoiesis induced by p27 deficiency was associated with releasing hematopoietic stem cell (HSC) and HPC supporting factors by BM-MSCs. To answer this question, we cultured the BM-MSCs from wild-type (WT) or p27 knockout (KO) mice, analyzed their proliferation, apoptosis and osteogenesis and harvested their conditioned medium (CM); We also cultured the bone marrow cells (BMCs) with normal medium or CM from WT or KO BM-MSCs and analyzed changes of HSCs and HPCs and colony forming cells (CFCs). Our results showed that the proliferation and osteogenic differentiation of BM-MSCs were increased significantly and their apoptosis was reduced significantly in p27 deficient mice. Simultaneously, we demonstrated that the CM from p27 deficient BM-MSCs stimulated the expansion of HSCs/HPCs more dramatically than that from WT BM-MSCs. Five 2-fold up-regulated proteins were identified in the CM from p27 deficient BM-MSCs by protein chip assays, including interleukin-22 (IL-22), transforming growth factor-β type I receptor, tumor necrosis factor-related Apoptosis-inducing ligands, VE-cadherin and vascular endothelial growth factor B. We confirmed that expression of IL22 at both mRNA and protein levels were up-regulated significantly in p27 deficient BM-MSCs. The treatment of IL22 increased the percentages of HSCs and HPCs in BMC cultures and the number of CFCs in the colony formation assay, whereas the increased HSC/HPC expansion induced by the CM derived from p27 deficient BM-MSCs was blocked by the addition of anti-IL22 antibody in a dose dependent manner. We also found that the percentages of IL22R1, Stat3 and p-Stat3-S727 positive HSCs and HPCs were increased significantly in p27 deficient BMCs. Our findings in this study indicate that p27 deficiency stimulates HSC/HPC expansion by increasing secretion of IL22 by BM-MSCs and activating IL22-Stat3 signaling in HSCs and HPCs."	"Exploratory Analysis of Circulating miRNA Signatures in Atrial Fibrillation Patients Determining Potential Biomarkers to Support Decision-Making in Anticoagulation and Catheter Ablation. Novel biomarkers are desired to improve risk management for patients with atrial fibrillation (AF). We measured 179 plasma miRNAs in 83 AF patients using multiplex qRT-PCR. Plasma levels of eight (i.e., hsa-miR-22-3p, hsa-miR-128-3p, hsa-miR-130a-3p, hsa-miR-140-5p, hsa-miR-143-3p, hsa-miR-148b-3p, hsa-miR-497-5p, hsa-miR-652-3p) and three (i.e., hsa-miR-144-5p, hsa-miR-192-5p, hsa-miR-194-5p) miRNAs showed positive and negative correlations with CHA2DS2-VASc scores, respectively, which also showed negative and positive correlations with catheter ablation (CA) procedure, respectively, within the follow-up observation period up to 6-month after enrollment. These 11 miRNAs were functionally associated with TGF-β signaling and androgen signaling based on pathway enrichment analysis. Seven of possible target genes of these miRNAs, namely TGFBR1, PDGFRA, ZEB1, IGFR1, BCL2, MAPK1 and DICER1 were found to be modulated by more than four miRNAs of the eleven. Of them, TGFBR1, PDGFRA, ZEB1 and BCL2 are reported to exert pro-fibrotic functions, suggesting that dysregulations of these eleven miRNAs may reflect pro-fibrotic condition in the high-risk patients. Although highly speculative, these miRNAs may potentially serve as potential biomarkers, providing mechanistic and quantitative information for pathophysiology in daily clinical practice with AF such as possible pro-fibrotic state in left atrium, which would enhance the risk of stroke and reduce the preference for performing CA."	"Mechanical strain affects collagen metabolism-related gene expression in scleral fibroblasts. We previously demonstrated that collagen metabolism affects scleral mechanical properties and scleral remodeling. Scleral remodeling changes the mechanical strain on sclera and scleral fibroblasts. We postulated that mechanical strain changes affect collagen metabolism in scleral fibroblasts. To understand the differences in collagen metabolism in scleral fibroblasts related to mechanical strain changes, scleral fibroblasts were isolated and cultured under different mechanical strains using the FX-4000 system or were treated with the TGF-β1 and TGFBR1 inhibitor LY364947. The collagen metabolism-related gene expression levels were detected. The results showed that the appropriate (lower) mechanical strain improved collagen synthesis and reduced collagen decomposition. In contrast, higher mechanical strain reduced collagen synthesis and enhanced collagen decomposition, especially a sustained higher strain. Furthermore, the effect of a transitory higher strain was recoverable, and collagen metabolism in scleral fibroblasts was regulated by TGF-β1. These results suggested that mechanical strain mediates TGF-β1 expression to regulate collagen metabolism in scleral fibroblasts, thereby affect scleral tissue remodeling."	"Biomarkers and overall survival in patients with advanced hepatocellular carcinoma treated with TGF-βRI inhibitor galunisertib. Transforming growth factor beta (TGF-β) signalling is involved in the development of hepatocellular carcinoma (HCC). We followed changes in biomarkers during treatment of patients with HCC with the TGF-βRI/ALK5 inhibitor galunisertib. This phase 2 study (NCT01246986) enrolled second-line patients with advanced HCC into one of two cohorts of baseline serum alpha-fetoprotein (AFP): Part A (AFP ≥1.5x ULN) or Part B (AFP &lt;1.5x ULN). Baseline and postbaseline levels of AFP, TGF-β1, E-cadherin, selected miRNAs, and other plasma proteins were monitored. The study enrolled 149 patients (Part A, 109; Part B, 40). Median OS was 7.3 months in Part A and 16.8 months in Part B. Baseline AFP, TGF-β1, E-cadherin, and an additional 16 plasma proteins (such as M-CSF, IL-6, ErbB3, ANG-2, neuropilin-1, MIP-3 alpha, KIM-1, uPA, IL-8, TIMP-1, ICAM-1, Apo A-1, CA-125, osteopontin, tetranectin, and IGFBP-1) were found to correlate with OS. In addition, a range of miRs were found to be associated with OS. In AFP responders (21% of patients in Part A with decrease of &gt;20% from baseline) versus non-responders, median OS was 21.5 months versus 6.8 months (p = 0.0015). In TGF-β1 responders (51% of all patients) versus non-responders, median OS was 11.2 months versus 5.3 months (p = 0.0036). Consistent with previous findings, both baseline levels and changes from baseline of circulating AFP and TGF-β1 function as prognostic indicators of survival. Future trials are needed to confirm and extend these results."	"Overexpression of miR-133a-3p inhibits fibrosis and proliferation of keloid fibroblasts by regulating IRF5 to inhibit the TGF-β/Smad2 pathway. Keloid is a benign dermal tumor with excessive hyperplasia and deposition of collagen. As a common tumor suppressor gene, miR-133a-3p has not been studied in keloid. This study will delve into the specific mechanism of miR-133a-3p in keloid. Normal skin fibroblasts and keloid fibroblasts (KFs) were first isolated from patients' normal skin and keloid, and cells were identified by morphological observation and immunofluorescence. The expressions of miR-133a-3p and extracellular matrix (ECM)-associated markers (Collagen I, III and α smooth muscle activin) were detected by Quantitative Real Time-Polymerase Chain Reaction (qRT-PCR). Cell viability and apoptosis of KFs were examined by Cell Counting Kit-8 assay, flow cytometry, and Caspase-3 colorimetry. TargetScan predicted target gene for miR-133a-3p was verified by luciferase assay, qRT-PCR and Western Blot (WB). WB was used to study protein expression of TGFBR1, phosphorylated -Smad2 (p-Smad2) and Smad2. Finally, a series of rescue experiments were performed to verify the intervention of target genes on miR-133a-3p. MiR-133a-3p was lowly expressed in keloid tissue and KFs. Overexpression of miR-133a-3p inhibited the expression of ECM-associated markers, reduced KFs viability, and promoted apoptosis. It was verified that interference regulator 5 (IRF5) is miR-133a-3p target gene. The rescue experiments showed that IRF5 reversed the effect of miR-133a-3p mimic on inhibiting fibrosis, and reversed the effects on promoting apoptosis and reducing cell proliferation. Overexpressed miR-133a-3p inhibits fibrosis by down-regulating IRF5 and thus inhibiting the TGF-β/Smad2 pathway. And it also promotes KFs apoptosis and reduces proliferation."	"Increased fibrotic signaling in a murine model for intra-arterial contrast-induced acute kidney injury. Contrast-induced acute kidney injury (CI-AKI) is a vexing problem, and more than 70 million patients undergo studies using iodinated contrast. The molecular mechanisms responsible for CI-AKI are poorly understood. The goal of the present article was to determine the role of transforming growth factor-β1 (TGF-β1)/mothers against decapentaplegic homolog (SMAD)3 and associated collagen expression in a murine model of intra-arterial CI-AKI. The murine model of CI-AKI after intra-arterial contrast agent administration was created by first performing a partial nephrectomy to induce chronic kidney disease. Twenty-eight days later, 100 μL of contrast agent [iodixanol (320 mg/mL)] or saline were administered via the carotid artery. Two days after contrast administration, compared with saline, average serum creatinine was significantly elevated (P &lt; 0.05). In the cortex, there was a significant increase in phosphorylated SMAD3 and gene expression of TGF-β1, TGF-β receptor type I, and TGF-β receptor type II at day 2 in the contrast group compared with the saline group. Average gene expressions of connective tissue growth factor, matrix metalloproteinase-2 and -9, and collagen type I-α and type IV-α were significantly increased at 2 days after contrast administration (all P &lt; 0.05). Moreover, there was a decrease in Ki-67 staining in the cortex, with an increase in terminal deoxynucleotidyl transferase dUTP nick-end labeling in the cortex and medulla after contrast administration (P &lt; 0.05). In the murine intra-arterial CI-AKI model, there was increased hypoxia and TGF-β1/SMAD3 pathway activation and collagen expression, resulting in renal fibrosis. Together, these results suggest that the TGF-β1/SMAD3 pathway could be a potential target in alleviating tissue fibrosis in CI-AKI."	"A Highly Selective Chemical Probe for Activin Receptor-like Kinases ALK4 and ALK5. The transforming growth factor beta-receptor I/activin receptor-like kinase 5 (TGFBR1/ALK5) and its close homologue ALK4 are receptor protein kinases associated with the development of diverse diseases, including cancer, fibrosis, heart diseases, and dysfunctional immune response. Therefore, ALK4/5 are among the most studied kinases, and several inhibitors have been developed. However, current commercially available inhibitors either lack selectivity or have not been comprehensively characterized, limiting their value for studying ALK4/5 function in cellular systems. To this end, we report the characterization of the 2-oxo-imidazopyridine, TP-008, a potent chemical probe with dual activity for ALK4 and ALK5 as well as the development of a matching negative control compound. TP-008 has excellent cellular potency and strongly abrogates phosphorylation of the substrate SMAD2 (mothers against decapentaplegic homologue 2). Thus, this chemical probe offers an excellent tool for mechanistic studies on the ALK4/5 signaling pathway and the contribution of these targets to disease."	"TGFβ-mediated expression of TGFβ-activating integrins in SSc monocytes: disturbed activation of latent TGFβ? The pathophysiology of systemic sclerosis (SSc) is closely linked to overactive TGFβ signaling. TGFβ is produced and circulates in latent form, making its activation crucial for signaling. This activation can be mediated via integrins. We investigated the balance between active and latent TGFβ in serum of SSc patients and investigated if this correlates with integrin expression on monocytes. A TGFβ/SMAD3- or BMP/SMAD1/5-luciferase reporter construct was expressed in primary human skin fibroblasts. Both acidified and non-acidified sera of ten SSc patients and ten healthy controls were tested on these cells to determine total and active TGFβ and BMP levels respectively. A pan-specific TGFβ1/2/3 neutralizing antibody was used to confirm TGFβ signaling. Monocytes of 20 SSc patients were isolated using CD14+ positive selection, and integrin gene expression was measured using qPCR. Integrin expression was modulated using rhTGFβ1 or a small molecule inhibitor of TGFBR1: SB-505124. SSc sera induced 50% less SMAD3-reporter activity than control sera. Serum acidification increased reporter activity, but a difference between healthy control and SSc serum was no longer observed, indicating that total TGFβ levels were not different. Addition of a pan-specific TGFβ1/2/3 neutralizing antibody fully inhibited SMAD3-reporter activity of both acidified and not-acidified control and SSc sera. Both HC and SSc sera induced similar SMAD1/5-reporter activity, and acidification increased this, but not differently between groups. Interestingly, expression of two integrin alpha subunits ITGA5 and ITGAV was significantly reduced in monocytes obtained from SSc patients. Furthermore, ITGB3, ITGB5, and ITGB8 expression was also reduced in SSc monocytes. Stimulation of monocytes with TGFβ1 induced ITGA5 and ITGAV but lowered ITGB8 expression, whereas the use of the TGFβ receptor inhibitor SB-505124 had the opposite effect. Total TGFβ serum levels are not different between SSc patients and controls, but TGFβ activity is. This coincides with a reduced expression of TGFβ-activating integrins in monocytes of SSc patients. Because TGFβ regulates expression of these integrins in monocytes, a negative feedback mechanism possibly underlies these observations."	"TGFBR2 mediated phosphorylation of BUB1 at Ser-318 is required for transforming growth factor-β signaling. BUB1 (budding uninhibited by benzimidazoles-1) is required for efficient TGF-β signaling, through its role in stabilizing the TGFBR1 and TGFBR2 complex. Here we demonstrate that TGFBR2 phosphorylates BUB1 at Serine-318, which is conserved in primates. S318 phosphorylation abrogates the interaction of BUB1 with TGFBR1 and SMAD2. Using BUB1 truncation domains (1-241, 241-482 and 482-723), we demonstrate that multiple contact points exist between BUB1 and TGF-β signaling components and that these interactions are independent of the BUB1 tetratricopeptide repeat (TPR) domain. Moreover, substitutions in the middle domain (241-482) encompassing S318 reveals that efficient interaction with TGFBR2 occurs only in its dephosphorylated state (241-482 S318A). In contrast, the phospho-mimicking mutant (241-482 S318D) exhibits efficient binding with SMAD2 and its over-expression results in a decrease in TGFBR1-TGFBR2 and TGFBR1-SMAD2 interactions. These findings suggest that TGFBR2 mediated BUB1 phosphorylation at S318 may serve as a switch for the dissociation of the SMAD2-TGFBR complex, and therefore represents a regulatory event for TGF-β signaling. Finally, we provide evidence that the BUB1-TGF-β signaling axis may mediate aggressive phenotypes in a variety of cancers."	"miR-1-5p targets TGF-βR1 and is suppressed in the hypertrophying hearts of rats with pulmonary arterial hypertension. The microRNA miR-1 is an important regulator of muscle phenotype including cardiac muscle. Down-regulation of miR-1 has been shown to occur in left ventricular hypertrophy but its contribution to right ventricular hypertrophy in pulmonary arterial hypertension are not known. Previous studies have suggested that miR-1 may suppress transforming growth factor-beta (TGF-β) signalling, an important pro-hypertrophic pathway but only indirect mechanisms of regulation have been identified. We identified the TGF-β type 1 receptor (TGF-βR1) as a putative miR-1 target. We therefore hypothesized that miR-1 and TGF-βR1 expression would be inversely correlated in hypertrophying right ventricle of rats with pulmonary arterial hypertension and that miR-1 would inhibit TGF-β signalling by targeting TGF-βR1 expression. Quantification of miR-1 and TGF-βR1 in rats treated with monocrotaline to induce pulmonary arterial hypertension showed appropriate changes in miR-1 and TGF-βR1 expression in the hypertrophying right ventricle. A miR-1-mimic reduced enhanced green fluorescent protein expression from a reporter vector containing the TGF-βR1 3'- untranslated region and knocked down endogenous TGF-βR1. Lastly, miR-1 reduced TGF-β activation of a (mothers against decapentaplegic homolog) SMAD2/3-dependent reporter. Taken together, these data suggest that miR-1 targets TGF-βR1 and reduces TGF-β signalling, so a reduction in miR-1 expression may increase TGF-β signalling and contribute to cardiac hypertrophy."	"EW-7197, a Transforming Growth Factor-Beta Type I Receptor Kinase Inhibitor, Ameliorates Acquired Lymphedema in a Mouse Tail Model.  Background:  Acquired lymphedema is a common consequence of cancer surgery. Fibrosis is one of the main causes of chronic lymphedema since it hinders lymphatic regeneration and this causes a significant decrease in lymphatic flow and accumulation of excessive protein-rich fluid. The transforming growth factor-β1 (TGF-β1) signaling pathway is known in a process of wound repair and fibrosis. In our study, the purpose was to evaluate the efficacy of EW-7197, a peroral TGF-β type I receptor kinase inhibitor, in treating acquired lymphedema.  Methods and Results:  For lymphedema mouse tail model, we used 10- to 12-week-old female C57BL/6 mice. The skin was circumferentially excised, making a circular band followed by cauterization of lymphatic collecting vessels. Two groups were made in this study: control and treatment. The treatment group (n = 12) received a solution consisting of 0.1 mL of artificial gastric juice and 20 mg/kg EW-7197 by gavage once daily. For evaluation, tail diameter measurement, fluorescence lymphography, and immunofluorescence images were used. EW-7197 treatment ameliorates acquired lymphedema in a mouse tail model by increasing lymphangiogenesis and interstitial flow of the lymphatics by inhibition of the fibrosis. The differences in maximal tail thicknesses between the control and treatment groups were statistically significant from 2 to 4 weeks after surgery. The treatment group showed a greater number of lymphatic vessels at the surgery site than the control group. The treatment group also showed more FITC coverage area at the surgery site.  Conclusion:  EW-7197 treatment ameliorates acquired lymphedema in a mouse tail model by increasing lymphangiogenesis and interstitial flow."	"The relation between anti-TGBFR1 immunohistochemical reaction and low Ki67, small tumor size and high estrogen receptor expression in invasive breast cancer. Most breast cancers are derived from the luminal epithelium, which composes the inside of the breast ductal structure. Ductal carcinoma in situ (DCIS) leads to invasive ductal carcinoma, but noncancerous intraductal proliferative lesions are also a risk factor for ductal carcinoma. The transforming growth factor beta (TGFB) signaling pathway behaves as a tumor suppressor in the early stage of cancer, and conversely as a tumor growth factor in invasive stages in several cancers. In this study, we performed immunohistochemistry with an antibody that detects the cytoplasmic region of TGFB receptor 1 (TGFBR1) and elucidated TGFBR1 protein expression in luminal epithelial cells of noncancerous breast ducts and in several cases of DCIS and invasive carcinoma. TGFBR1 expression was higher in noncancerous breast tissue than in cancerous tissue, and a difference in expression was also seen among histological subtypes. Comparing the expression level of TGFBR1 in cancer cells and clinico-pathological parameters, cases expressing low TGFBR1 tended to show low estrogen receptor expression, large tumor size (≥10 mm), and a high Ki67 labeling index. These data suggested that TGFBR1 protein expression may be related to the suppression of breast cancer cell growth."	"Deficient Regulatory Innate Lymphoid Cells and Differential Expression of miRNAs in Acute Myeloid Leukemia Quantified by Next Generation Sequence. A new regulatory subpopulation of ILCs, ILCreg has been identified in mouse and human intestines. ILCregs share characteristics with both innate lymphoid cells and regulatory cells; however, the significance of CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>+</sup> ILCregs in patients with AML remains unclear. Intriguingly, ILCregs constitutively express id2, id3, sox4, tgfbr1, tgfbr2, il2rb and il2rg, but the significance of miRNAs associated with these genes has yet to be explored. In this study, we evaluate ILCreg frequency, ILCreg gene-associated miRNA quantification, and its significance in patients with AML and normal donors. Using 4 color combinations of surface and intracellular antibody staining, the CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>+</sup> ILCregs from 12 normal donors and 42 patients newly diagnosed with AML were measured by flow cytometry. Plasma samples and bone marrow cells from 6 normal donors and 9 patients with AML were studied by next-generation sequence miRNAs quantification. Our results showed that the frequency of ILCregs was 0.8924±1.3791% in bone marrow (BM) cells from normal donors and 0.2434±0.5344% in BM cells from AML patients. The frequency of ILCreg cells in AML patients was significantly lower than that in normal donors (P&lt;0.01). Furthermore, the frequency of the CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>-</sup> subset was 4.0869±6.7701% and 0.2769±0.2526% from normal donors and AML patients, respectively. There was a statistically significant difference of CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>-</sup> cells between normal donors and AML patients (p&lt;0.01). miRNA detection results showed 376 miRNAs from plasma and 182 miRNAs from BM cell samples with expression levels with a statistically significant difference between AML patients and normal donors (both Q and P-value &lt; 0.001). Analysis of miRNAs from ILCregs associated genes including id2, id3, sox4, tgfbr1, tgfbr2, il2rb, and il3rg, from normal donors and AML patients demonstrated 34 miRNA from plasma samples and 14 miRNA segments from BM cell samples with a statistically significant difference between AML patients and normal donors (both Q and P-value &lt;0.001). Among them, 4 miRNAs (hsa-miR-193b-3p, hsa-miR-1270, hsa-miR-210-3p, and hsa-miR-486-3p) were detected in both plasma and BM cell samples. Our study enumerated ILCregs, then measured miRNAs from those ILCregs in AML samples for the first time. The results demonstrated the deficiency of ILCreg and differential expression of miRNAs in patients with AML."	"Nucleolar and Spindle Associated Protein 1 (NUSAP1) Promotes Bladder Cancer Progression Through the TGF-β Signaling Pathway. NUSAP1 has been reported to be involved in the progression of several types of cancer. However, its expression and exact role in bladder cancer (BLCA) remains elusive. The aim of this study was to determine the expression and role of NUSAP1 in BLCA. Tissue microarray, real-time PCR, Western blot and immunohistochemistry assays were carried out to determine NUSAP1 expression in BLCA tissues and cells. The biological roles of NUSAP1 were investigated using CCK-8, EdU labeling, flow cytometry, Transwell, and wound healing assays. Additionally, the effect of NUSAP1 on epithelial-mesenchymal transition (EMT) was investigated by Western blotting and real-time PCR. We found that NUSAP1 was upregulated in BLCA, and its expression was closely related to the poor prognosis of patients. Subsequently, we transfected 5637 and T24 cell lines with NUSAP1 siRNA and an NUSAP1 overexpression plasmid, respectively. NUSAP1 downregulation in 5637 cells inhibited cell proliferation, migration, and invasiveness and enhanced chemosensitivity to gemcitabine, while NUSAP1 overexpression in T24 cells resulted in the inverse effects. Moreover, NUSAP1 regulated EMT via the TGF-β signaling pathway, and when TGF-beta receptor 1 (TGFBR1) was inhibited with the inhibitor SB525334, the invasion and metastasis ability of BLCA cells was significantly suppressed, as well as p-Smad2/3 and vimentin expression. Our above data demonstrate that NUSAP1 contributes to BLCA progression via the TGF-β signaling pathway."	"Essential role of microglial transforming growth factor-β1 in antidepressant actions of (R)-ketamine and the novel antidepressant TGF-β1. In rodent models of depression, (R)-ketamine has greater potency and longer-lasting antidepressant effects than (S)-ketamine; however, the precise molecular mechanisms underlying the antidepressant actions of (R)-ketamine remain unknown. Using RNA-sequencing analysis, we identified novel molecular targets that contribute to the different antidepressant effects of the two enantiomers. Either (R)-ketamine (10 mg/kg) or (S)-ketamine (10 mg/kg) was administered to susceptible mice after chronic social defeat stress (CSDS). RNA-sequencing analysis of prefrontal cortex (PFC) and subsequent GSEA (gene set enrichment analysis) revealed that transforming growth factor (TGF)-β signaling might contribute to the different antidepressant effects of the two enantiomers. (R)-ketamine, but not (S)-ketamine, ameliorated the reduced expressions of Tgfb1 and its receptors (Tgfbr1 and Tgfbr2) in the PFC and hippocampus of CSDS susceptible mice. Either pharmacological inhibitors (i.e., RepSox and SB431542) or neutralizing antibody of TGF-β1 blocked the antidepressant effects of (R)-ketamine in CSDS susceptible mice. Moreover, depletion of microglia by the colony-stimulating factor 1 receptor (CSF1R) inhibitor PLX3397 blocked the antidepressant effects of (R)-ketamine in CSDS susceptible mice. Similar to (R)-ketamine, the recombinant TGF-β1 elicited rapid and long-lasting antidepressant effects in animal models of depression. Our data implicate a novel microglial TGF-β1-dependent mechanism underlying the antidepressant effects of (R)-ketamine in rodents with depression-like phenotype. Moreover, TGF-β1 and its receptor agonists would likely constitute a novel rapid-acting and sustained antidepressant in humans."	"Generation of three induced pluripotent stem cell lines (MHHi012-A, MHHi013-A, MHHi014-A) from a family with Loeys-Dietz syndrome carrying a heterozygous p.M253I (c.759G&gt;A) mutation in the TGFBR1 gene. Loeys-Dietz syndrome (LDS) is a rare connective tissue disorder characterized by a genetic predisposition for thoracic aortic aneurysm and dissection. Despite heterozygous loss-of-function mutations in genes for ligand, receptor, or downstream mediators of the transforming growth factor β (TGFβ) pathway, LDS is associated with a signature of high TGFβ signaling. We generated induced pluripotent stem cell (iPSC) lines from three adult LDS-patients (two male, one female) of a family with a heterozygous point mutation in exon 4 of the TGFβ-receptor1 (TGFBR1) gene (p.M253I; c.759G&gt;A). The lines offer a valuable resource for modeling the pathophysiology of genetically mediated aortic disease."	"TGF-β Regulates Collagen Type I Expression in Myoblasts and Myotubes via Transient Ctgf and Fgf-2 Expression. Transforming Growth Factor β (TGF-β) is involved in fibrosis as well as the regulation of muscle mass, and contributes to the progressive pathology of muscle wasting disorders. However, little is known regarding the time-dependent signalling of TGF-β in myoblasts and myotubes, as well as how TGF-β affects collagen type I expression and the phenotypes of these cells. Here, we assessed effects of TGF-β on gene expression in C2C12 myoblasts and myotubes after 1, 3, 9, 24 and 48 h treatment. In myoblasts, various myogenic genes were repressed after 9, 24 and 48 h, while in myotubes only a reduction in Myh3 expression was observed. In both myoblasts and myotubes, TGF-β acutely induced the expression of a subset of genes involved in fibrosis, such as Ctgf and Fgf-2, which was subsequently followed by increased expression of Col1a1. Knockdown of Ctgf and Fgf-2 resulted in a lower Col1a1 expression level. Furthermore, the effects of TGF-β on myogenic and fibrotic gene expression were more pronounced than those of myostatin, and knockdown of TGF-β type I receptor Tgfbr1, but not receptor Acvr1b, resulted in a reduction in Ctgf and Col1a1 expression. These results indicate that, during muscle regeneration, TGF-β induces fibrosis via Tgfbr1 by stimulating the autocrine signalling of Ctgf and Fgf-2."	"MicroRNA-181a inhibition relieves cerebral ischemia/reperfusion injury via regulation of TGFBR1. NA"	"Congenital cystic adenomatoid malformations of the lung: an epithelial transcriptomic approach. The pathophysiology of congenital cystic adenomatoid malformations (CCAM) of the lung remains poorly understood. This study aimed to identify more precisely the molecular mechanisms limited to a compartment of lung tissue, through a transcriptomic analysis of the epithelium of macrocystic forms. Tissue fragments displaying CCAM were obtained during planned surgical resections. Epithelial mRNA was obtained from cystic and normal areas after laser capture microdissection (LCM). Transcriptomic analyses were performed and the results were confirmed by RT-PCR and immunohistochemistry in independent samples. After controlling for RNA quality, we analysed the transcriptomes of six cystic areas and five control areas. In total, 393 transcripts were differentially expressed in the epithelium, between CCAM and control areas. The most highly redundant genes involved in biological functions and signalling pathways differentially expressed between CCAM and control epithelium included TGFB2, TGFBR1, and MAP 2 K1. These genes were considered particularly relevant as they have been implicated in branching morphogenesis. RT-qPCR analysis confirmed in independent samples that TGFBR1 was more strongly expressed in CCAM than in control tissues (p &lt; 0.03). Immunohistochemistry analysis showed TGFBR1 (p = 0.0007) and TGFB2 (p &lt; 0.02) levels to be significantly higher in the epithelium of CCAM than in that of control tissues. This compartmentalised transcriptomic analysis of the epithelium of macrocystic lung malformations identified a dysregulation of TGFB signalling at the mRNA and protein levels, suggesting a possible role of this pathway in CCAM pathogenesis. ClinicalTrials.gov Identifier: NCT01732185."	"PRDM16 orchestrates angiogenesis via neural differentiation in the developing brain. Angiogenesis plays crucial roles in maintaining the complex operation of central nervous system (CNS) development. The architecture of communication between neurogenesis and angiogenesis is essential to maintain normal brain development and function. Hence, any disruption of neuron-vascular communications may lead to the pathophysiology of cerebrovascular diseases and blood-brain barrier (BBB) dysfunction. Here we demonstrate that neural differentiation and communication are required for vascular development. Regarding the cellular and molecular mechanism, our results show that PRDM16 activity determines the production of mature neurons and their specific positions in the neocortex. In the cortical plate (CP), aberrant neurons fail to secrete modular calcium-binding protein 1 (SMOC1), an important neuronal signal that participates in neurovascular communication to regulate CNS angiogenesis. Neuronal SMOC1 interacts with TGFBR1 by activating the transcription factors phospho-Smad2/3 to convey intercellular signals to endothelial cells (ECs) in the TGF-β-Smad signaling pathway. Together, our results highlight a crucial coordinated neurovascular development process orchestrated by PRDM16 and reveal the importance of intimate communication for building the neurovascular network during brain development."	"Effects of zoledronic acid and geranylgeraniol on angiogenic gene expression in primary human osteoclasts. Bisphosphonate-related osteonecrosis of the jaw (BRONJ) is a serious complication associated with bisphosphonate treatment. Zoledronic acid (ZA) is a commonly used bisphosphonate due to its effectiveness in increasing bone density and reducing skeletal events, with evidence that it alters angiogenesis. Replacement of the mevalonate pathway using geranylgeraniol (GGOH) was studied to determine the effects of ZA on angiogenic gene expression in primary human osteoclasts. Osteoclast cultures were generated from peripheral blood mononuclear cells of three patients using the peripheral blood mononuclear cell isolation. These cells were phenotyped by phase-contrast microscopy, tartrate-resistant acid phosphatase staining, and pit assays. Primary osteoclasts were found to express a number of key angiogenic molecules at very high levels. Gene expression levels for 84 human angiogenic factors were determined using PCR arrays. Three genes with significant fold regulation (FR) in response to ZA were as follows: tumor necrosis factor (FR = +2.57, P = 0.050), CXCL9 (FR = +39.48, P = 0.028), and CXCL10 (FR = +18.52, P = 0.0009). The co-addition of geranylgeraniol with ZA resulted in the significant down-regulation of these three genes along with CCL2, TGFBR1, ENG, and CXCL1. GGOH reversed the gene changes induced by ZA and may offer a promising treatment for BRONJ."	"Deregulated bone morphogenetic proteins and their receptors are associated with disease progression of gastric cancer. Bone morphogenetic proteins (BMP) are members of the transforming growth factor β superfamily (TGF-β). BMPs are involved in tumourigenesis and disease progression of certain malignancies. To date, the role played by BMPs in gastric cancer (GC) remains largely unknown. In the present study, we systematically analysed the expression and clinical significance of BMP and BMP receptors (BMPR) in TCGA gastric cancer database and GEO database and explored the possible mechanism of action. BMP5 is reduced in gastric cancer tissues, while ACVRL1, ACVR1, TGFBR1, and BMPR2 were significantly increased in the gastric tumours. BMP3, ACVR1, TGFBR1, BMPR1B (also known as ALK6), TGFBR2 and BMPR2 were significantly associated with poorer overall survival of GC patients. A negative correlation was seen between BMP/BMPR and proliferation markers which was supported by their correlation with the cell cycle promoters and inhibitors. More interestingly, further analyses showed that BMPs and their receptors are positively correlated with matrix metalloproteinases (MMPs), epithelial mesenchymal transition (EMT) markers and stemness in GC. Furthermore, positive correlations were also frequently seen between BMP receptors and markers/regulators of angiogenesis and lymphangiogenesis in the gastric tumours. Taken together, these findings suggest that BMPs play dual roles in GC. They may inhibit proliferation of GC cells. On the other hand, they can also promote disease progression through a promotion of invasion, EMT and stemness. The elevated expression of BMP receptors in GC were also highly associated with tumour associated angiogenesis and lymphangiogenesis which facilitate tumour growth, expansion and spread."	"Dact2 is involved in the regulation of epithelial-mesenchymal transition. Dishevelled-associated antagonist of beta-catenin 2 (Dact2) is involved in the regulation of intracellular signaling pathways during development. It negatively regulates the Nodal signaling pathway, possibly by promoting lysosomal degradation of Nodal receptors such as TGFBR1, and plays an inhibitory role during the re-epithelialization of skin wounds by attenuating transforming growth factor-β signaling. Dact2 is known to act as a functional tumor suppressor in colon cancer; reduced Dact2 can promote liver cancer progression and suppress gastric cancer proliferation, invasion, and metastasis by inhibiting Wnt signaling. Zebrafish is used as a model of cancer biology because it shows similar tumorigenesis and morphogenesis as in humans and gene manipulation in this organism is possible. This study was performed to explore phenotypic changes in Dact2 knockout zebrafish and investigate the function of Dact2. A 10-base pair deletion Dact2 knockout zebrafish was prepared using the CRISPR-Cas9 genome editing system. Dact2 knockout enhanced the expression of the MMP2 and MMP9 genes, which are related to tumor invasion and migration, and the Snail, VEGF, and ZEB genes, which are related to epithelial-mesenchymal transition (EMT). The absence of Dact2 also resulted in hyperplasia of the gastrointestinal epithelium, fibrosis in the pancreas and liver, increased proliferation of the pancreatic and hepatic bile ducts, and invasive proliferation into the pancreas. A wound healing assay confirmed that the absence of Dact2 enhanced EMT, thus accelerating wound healing. This study suggests that a loss of function of Dact2 impacts EMT-related gene regulation and tumor generation in a zebrafish knockout model, which is a useful model for exploring the mechanisms of these processes."	"Eighty-eight variants highlight the role of T cell regulation and airway remodeling in asthma pathogenesis. Asthma is one of the most common chronic diseases affecting both children and adults. We report a genome-wide association meta-analysis of 69,189 cases and 702,199 controls from Iceland and UK biobank. We find 88 asthma risk variants at 56 loci, 19 previously unreported, and evaluate their effect on other asthma and allergic phenotypes. Of special interest are two low frequency variants associated with protection against asthma; a missense variant in TNFRSF8 and 3' UTR variant in TGFBR1. Functional studies show that the TNFRSF8 variant reduces TNFRSF8 expression both on cell surface and in soluble form, acting as loss of function. eQTL analysis suggests that the TGFBR1 variant acts through gain of function and together with an intronic variant in a downstream gene, SMAD3, points to defective TGFβR1 signaling as one of the biological perturbations increasing asthma risk. Our results increase the number of asthma variants and implicate genes with known role in T cell regulation, inflammation and airway remodeling in asthma pathogenesis."	"SMAD3/SP1 complex-mediated constitutive active loop between lncRNA PCAT7 and TGF-β signaling promotes prostate cancer bone metastasis. Bone metastasis is associated with cancer-related death in patients with prostate cancer (PCa). Long noncoding RNAs (lncRNAs) play critical roles in tumor progression of PCa. Nevertheless, the biological function of lncRNAs in PCa bone metastasis remains unclear. PCAT7 was identified as a bone metastasis-related lncRNA via analyzing TCGA dataset. Meanwhile, PCAT7 was found to be elevated in primary PCa tissues with bone metastasis and associated with bone metastasis status and poor prognosis of patients with PCa. Functionally, our results reveal that PCAT7 overexpression promotes PCa bone metastasis in vivo, as well as migration, invasion, and EMT of PCa cells in vitro; on the contrary, PCAT7 knockdown has an inverse effect. Mechanistically, PCAT7 activates TGF-β/SMAD signaling by upregulating TGFBR1 expression via sponging miR-324-5p. In turn, TGF-β signaling forms a positive feedback loop with PCAT7 via SMAD3/SP1 complex-induced PCAT7 upregulation. Finally, the clinical positive correlation between PCAT7 and TGFBR1 and TGF-β signaling activity, and the negative association with miR-324-5p are further demonstrated in PCa tissues and clinical primary PCa cells. This study reveals a novel mechanism that is responsible for the constitutive activation of TGF-β signaling in PCa bone metastasis, implying that PCAT7 can act as a potential therapeutic target against bone metastasis of PCa via disrupting the constitutive active loop between PCAT7 and TGF-β signaling."	"Genetic profiling and cardiovascular phenotypic spectrum in a Chinese cohort of Loeys-Dietz syndrome patients. Loeys-Dietz syndrome (LDS) is a rare connective tissue disorder for which 6 genes in the TGF-β pathway have been identified as causative. With the widespread use of genetic testing, the range of known clinical and genetic profiles has broadened, but these features have not been fully elucidated thus far. Using gene panel sequencing or whole exome sequencing, we identified 54 unique rare variants in LDS genes in 57 patients with thoracic aneurysms/dissections, including 27 pathogenic mutations (P + LP) and 27 variants of unknown significance (VUS<sup>LP</sup> + VUS). Genotype-phenotype correlation analysis revealed that carriers with P/LP/ VUS<sup>LP</sup> variants in TGFBR1/TGFBR2/SMAD3 genes had significantly more severe cardiovascular features (cardiovascular death/dissection) than carriers with VUSs in these 3 genes at an early age and had less favorable event-free survival. Additionally, carriers with VUS in combination with other risk factors, such as hypertension, might be prone to developing an aortic dissection, as indicated by the fact that 5/8 (62.5%) patients with VUSs in our cohort developed aortic dissections in the presence of hypertension, compared with 25.0% (3/12) in the absence of hypertension (p = 0.047). To date, this was the largest cohort of LDS patients ever reported in China, and the present study expanded the known mutation and phenotypic spectra of LDS, which might help refine our knowledge of LDS."	"A network analysis revealed the essential and common downstream proteins related to inguinal hernia. Although more than 1 in 4 men develop symptomatic inguinal hernia during their lifetime, the molecular mechanism behind inguinal hernia remains unknown. Here, we explored the protein-protein interaction network built on known inguinal hernia-causative genes to identify essential and common downstream proteins for inguinal hernia formation. We discovered that PIK3R1, PTPN11, TGFBR1, CDC42, SOS1, and KRAS were the most essential inguinal hernia-causative proteins and UBC, GRB2, CTNNB1, HSP90AA1, CBL, PLCG1, and CRK were listed as the most commonly-involved downstream proteins. In addition, the transmembrane receptor protein tyrosine kinase signaling pathway was the most frequently found inguinal hernia-related pathway. Our in silico approach was able to uncover a novel molecular mechanism underlying inguinal hernia formation by identifying inguinal hernia-related essential proteins and potential common downstream proteins of inguinal hernia-causative proteins."	"PTPRε Acts as a Metastatic Promoter in Hepatocellular Carcinoma by Facilitating Recruitment of SMAD3 to TGF-β Receptor 1. Transforming growth factor beta (TGF-β) suppresses early stages of tumorigenesis, but contributes to migration and metastasis of cancer cells. However, the role of TGF-β signaling in invasive prometastatic hepatocellular carcinoma (HCC) is poorly understood. In this study, we investigated the roles of canonical TGF-β/SMAD3 signaling and identified downstream effectors on HCC migration and metastasis. By using in vitro trans-well migration and invasion assays and in vivo metastasis models, we demonstrated that SMAD3 and Protein Tyrosine Phosphatase Receptor Epsilon (PTPRε) promotes migration, invasion and metastasis of HCC cells in vitro and in vivo. Further mechanistic studies revealed that, upon TGF-β stimulation, SMAD3 binds directly to PTPRε promoters to activate its expression. PTPRε interacts with TGFBR1/SMAD3 and facilitates recruitment of SMAD3 to TGFBR1, resulting a sustained SMAD3 activation status. The tyrosine phosphatase activity of PTPRε is important for binding with TGFBR1, recruitment and activation of SMAD3, and its prometastatic role in vitro. A positive correlation between pSMAD3/SMAD3 and PTPRε expression were determined in HCC samples, and high expression of SMAD3 or PTPRε was associated with poor prognosis of HCC patients. Conclusion PTPRε positively feedback regulates TGF-β/SMAD3 signaling to promote HCC metastasis."	"PARP-1 deregulation in multiple sclerosis. Poly (ADP-ribose) polymerase 1 (PARP-1) plays pivotal roles in immune and inflammatory responses. Accumulating evidence suggests PARP-1 as a promising target for immunomodulation in multiple sclerosis and natalizumab-associated progressive multifocal leukoencephalopathy. This study explores expression of PARP-1 and downstream effectors in multiple sclerosis and during natalizumab treatment. Transcriptional expressions were studied by real-time reverse transcriptase polymerase chain reaction on CD4<sup>+</sup>T/CD8<sup>+</sup>T/CD14<sup>+</sup>/B cells and peripheral blood mononuclear cells from healthy volunteers, untreated and natalizumab-treated non-progressive multifocal leukoencephalopathy and progressive multifocal leukoencephalopathy multiple sclerosis patients. PARP-1 expression was higher in CD4<sup>+</sup>T, CD8<sup>+</sup>T and B cells from untreated patients compared to healthy volunteers. Natalizumab treatment restored deregulated PARP-1 expression in T cells but not in B cells. Sustained upregulation of PARP-1 was associated with decreased expression of downstream PARP-1 factors such as TGFBR1/TGFBR2/BCL6 in B cells. Notably, a higher expression of PARP-1 was detected in progressive multifocal leukoencephalopathy patients. Given the importance of PARP-1 in inflammatory processes, its upregulation in multiple sclerosis lymphocyte populations suggests a potential role in the immune pathogenesis of multiple sclerosis. Strikingly higher PARP-1 expression in progressive multifocal leukoencephalopathy cases suggests its involvement in progressive multifocal leukoencephalopathy disease pathomechanisms. These results further support the value of PARP-1 inhibitors as a potential novel therapeutic strategy for multiple sclerosis and natalizumab-associated progressive multifocal leukoencephalopathy."	"Activin type II receptor ligand signaling inhibition after experimental ischemic heart failure attenuates cardiac remodeling and prevents fibrosis. Myostatin (MSTN) is a transforming growth factor (TGF)-β superfamily member that acts as a negative regulator of muscle growth and may play a role in cardiac remodeling. We hypothesized that inhibition of activin type II receptors (ACTRII) to reduce MSTN signaling would reduce pathological cardiac remodeling in experimental heart failure (HF). C57BL/6J mice underwent left anterior descending coronary artery ligation under anesthesia to induce myocardial infarction (MI) or no ligation (sham). MI and sham animals were each randomly divided into groups (n ≥ 10 mice/group) receiving an ACTRII or ACTRII/TGFβ receptor-signaling inhibiting strategy: 1) myo-Fc group (weekly 10 mg/kg Myo-Fc) or 2) Fol + TGFi group (daily 12 µg/kg follistatin plus 2 mg/kg TGFβ receptor inhibitor), versus controls. ACTRII/TGFBR signaling inhibition preserved cardiac function by echocardiography and prevented an increase in brain natriuretic peptide (BNP). ACTRII/TGFBR inhibition resulted in increased phosphorylation (P) of Akt and decreased P-p38 mitogen-activated protein kinase (MAPK) in MI mice. In vitro, Akt contributed to P-SMAD2,3, P-p38, and BNP regulation in cardiomyocytes. ACTRII/TGFBR inhibition increased sarco/endoplasmic reticulum Ca<sup>2+</sup>-ATPase (SERCA2a) levels and decreased unfolded protein response (UPR) markers in MI mice. ACTRII/TGFBR inhibition was associated with a decrease in cardiac fibrosis and fibrosis markers, connective tissue growth factor (CTGF), type I collagen, fibronectin, α-smooth muscle actin, and matrix metalloproteinase (MMP)-12 in MI mice. MSTN exerted a direct regulation on the UPR marker eukaryotic translation initiation factor-2α (eIf2α) in cardiomyocytes. Our study suggests that ACTRII ligand inhibition has beneficial effects on cardiac signaling and fibrosis after ischemic HF.NEW &amp; NOTEWORTHY Activin type II receptor ligand inhibition resulted in preserved cardiac function, a decrease in cardiac fibrosis, improved SERCA2a levels, and a prevention of the unfolded protein response in mice with myocardial infarction."	"Suppression of transforming growth factor-beta signaling enhances spermatogonial proliferation and spermatogenesis recovery following chemotherapy. Could small molecules (SM) which target (or modify) signaling pathways lead to increased proliferation of undifferentiated spermatogonia following chemotherapy? Inhibition of transforming growth factor-beta (TGFb) signaling by SM can enhance the proliferation of undifferentiated spermatogonia and spermatogenesis recovery following chemotherapy. Spermatogonial stem cells (SSCs) hold great promise for fertility preservation in prepubertal boys diagnosed with cancer. However, the low number of SSCs limits their clinical applications. SM are chemically synthesized molecules that diffuse across the cell membrane to specifically target proteins involved in signaling pathways, and studies have reported their ability to increase the proliferation or differentiation of germ cells. In our experimental study, spermatogonia were collected from four brain-dead individuals and used for SM screening in vitro. For in vivo assessments, busulfan-treated mice were treated with the selected SM (or vehicle, the control) and assayed after 2 (three mice per group) and 5 weeks (two mice per group). We investigated the effect of six SM on the proliferation of human undifferentiated spermatogonia in vitro using a top-bottom approach for screening. We used histological, hormonal and gene-expression analyses to assess the effect of selected SM on mouse spermatogenesis. All experiments were performed at least in triplicate and were statistically evaluated by Student's t-test and/or one-way ANOVA followed by Scheffe's or Tukey's post-hoc. We found that administration of SB431542, as a specific inhibitor of the TGFb1 receptor (TGFbR1), leads to a two-fold increase in mouse and human undifferentiated spermatogonia proliferation. Furthermore, injection of SB to busulfan-treated mice accelerated spermatogenesis recovery as revealed by increased testicular size, weight and serum level of inhibin B. Moreover, SB administration accelerated both the onset and completion of spermatogenesis. We demonstrated that SB promotes proliferation in testicular tissue by regulating the cyclin-dependent kinase (CDK) inhibitors 4Ebp1 and P57 (proliferation inhibitor genes) and up-regulating Cdc25a and Cdk4 (cell cycle promoting genes). The availability of human testis was the main limitation in this study. This is the first study to report acceleration of spermatogenesis recovery following chemotherapy by administration of a single SM. Our findings suggest that SB is a promising SM and should be assessed in future clinical trials for preservation of fertility in men diagnosed with cancer or in certain infertility cases (e.g. oligospermia). This study was supported by Royan Institute and National Institute for Medical Research Development (NIMAD, grant no 963337) granted to H.B. The authors have no conflict of interest to report."	"Exploring the Pharmacological Mechanism of the Herb Pair &quot;HuangLian-GanJiang&quot; against Colorectal Cancer Based on Network Pharmacology. Since the herb pair Huang Lian-Gan Jiang (HL-GJ) was put forward as conventional compatibility for cold-heat regulation in the middle energizer in the theory of Traditional Chinese Medicine (TCM), their therapeutic effects were observed on the prevention and treatment of intestinal inflammation and tumors including colorectal cancer (CRC). However, the active compounds, crucial targets, and related pathways of HL-GJ against CRC remained unclear. The purpose of this research was to establish a comprehensive and systemic approach that could identify the active compounds, excavate crucial targets, and reveal anti-CRC mechanisms of HL-GJ against CRC based on network pharmacology. We used methods including chemical compound screening based on absorption, distribution, metabolism, and excretion (ADME), compound target prediction, CRC target collection, network construction and analysis, Gene Ontology (GO), and pathway analysis. In this study, eight main active compounds of HL-GJ were identified, including Gingerenone C, Isogingerenone B, 5,8-dihydroxy-2-(2-phenylethyl) Chromone, 2,3,4-trihydroxy-benzenepropanoic acid, 3,4-dihydroxyphenylethyl Alcohol Glucoside, 3-carboxy-4-hydroxy-phenoxy Glucoside, Moupinamide, and Obaculactone. HRAS, KRAS, PIK3CA, PDE5A, PPARG, TGFBR1, and TGFBR2 were identified as crucial targets of HL-GJ against CRC. There were mainly 500 biological processes and 70 molecular functions regulated during HL-GJ against CRC (P &lt; 0.001). There were mainly 162 signaling pathways contributing to therapeutic effects (P &lt; 0.001), the top 10 of which included DAP12 signaling, signaling by PDGF, signaling by EGFR, NGF signaling via TRKA from the plasma membrane, signaling by NGF, downstream signal transduction, DAP12 interactions, signaling by VEGF, signaling by FGFR3, and signaling by FGFR4. The study established a comprehensive and systematic paradigm to understand the pharmacological mechanisms of multiherb compatibility such as an herb pair, which might accelerate the development and modernization of TCM."	"Different expression of Defensin-B gene in the endometrium of mares of different age during the breeding season. Despite being one of the major causes of infertility in mares, the mechanisms responsible for equine endometrosis are still unclear and controversial. In the last few years, many investigations focused on local immune response modulation. Since it is generally accepted that endometrial fibrosis increases with age, we hypothesize that older mares could show altered local immune modulation, initiating a pro-inflammatory and tissue remodeling cascade of events that could lead to endometrosis. The aim of this study, indeed, is to evaluate and describe the local gene expression of genes involved in acute inflammatory response and fibrosis (COL1A1, COL3A1, TNFA, MMP9, IL6, TGFB1 and TGFBR1), together with others associated to immune modulation (DEFB4B, IDO1 and FOXP3), in uterine specimens from mares of different age. Twenty-five Standardbred mares were involved in the study with age ranging from 7 to 19 years (mean 10.40 ± 4.42). They were divided by age into two groups: G1 (n = 15, less than 10 years old) and G2 (N = 10, greater than 11 years old). Specimens from the uterus' right horn-body junction were collected and processed for histology evaluation and RT-qPCR assay.Gene expression of DEFB4B, MMP9 and TNFA was higher in younger mares, suggesting a balance in immune modulation and tissue remodeling. Interleukin-6 and COL3A1 gene expressions were greater in older animals, probably indicating inflammatory pathways activation and fibrosis increase. Although no differences in fibrosis and inflammation distribution could be found with histological examination among G1 and G2, our results suggest a possible involvement of DEF4BB in regulating the local immune response in younger mare's uterus (G1); age may contribute to the dis-regulation of DEFB4B transcription and, indirectly, influence the extracellular matrix homeostasis. Transcription of IDO1 and FOXP3 genes, instead, does not seem to be age related, or to be involved in local immune-response and tissue remodeling functions. Further investigations are needed in order to clarify the interactions between the expression of DEFB4B, IL6, TNFA, COL3A1 and MMP9 and other local signals of immune-modulation and tissue remodeling, in mares in a prospective study design."	"Activation of Uterine Smad3 Pathway Is Crucial for Embryo Implantation. Embryo implantation is a complicated physiological process tightly regulated by multiple biological molecules including growth factors. Transforming growth factor-betas (TGF-βs) and their most specific signal transduction factors, Smads, are expressed in the endometrium during the window of implantation. Recent researches indicated that Smad dependent TGF-β signaling may play an important role in the process of embryo implantation. In this study, we measured the expression of TGF-β1, TGF-β receptor type I (TβRI), Smad3 and p-Smad3 in the endometrium of mice and observed their elevation on day 4, 5 and 6 of pseudopregnancy. Then we administrated a specific Smad3 inhibitor (Sis3) into the uterine cavity of mice on day 3 of pregnancy. The results showed a reduction in insulin-like growth factor-1 (IGFBP-1) expression and the decreased number of implanted embryo after the administration. In addition, Sis3 was found to reduce the IGFBP-1 secretion in decidualized endometrial stromal cells. Taken all together, our findings demonstrated that TGF-β/Smad3 signaling is involved in the process of embryo implantation."	"TGFβRI antagonist inhibits HIV-1 Nef-induced CC chemokine family ligand 2 (CCL2) in the brain and prevents spatial learning impairment. HIV-1-associated neurocognitive disorders (HAND) progression is related to continued inflammation despite undetectable viral loads and may be caused by early viral proteins expressed by latently infected cells. Astrocytes represent an HIV reservoir in the brain where the early viral neurotoxin negative factor (Nef) is produced. We previously demonstrated that astrocytic expression of Nef in the hippocampus of rats causes inflammation, macrophage infiltration, and memory impairment. Since these processes are affected by TGFβ signaling pathways, and TGFβ-1 is found at higher levels in the central nervous system of HIV-1+ individuals and is released by astrocytes, we hypothesized a role for TGFβ-1 in our model of Nef neurotoxicity. To test this hypothesis, we compared cytokine gene expression by cultured astrocytes expressing Nef or green fluorescent protein. To determine the role of Nef and a TGFβRI inhibitor on memory and learning, we infused astrocytes expressing Nef into the hippocampus of rats and then treated them daily with an oral dose of SD208 (10 mg/kg) or placebo for 7 days. During this time, locomotor activity was recorded in an open field and spatial learning tested in the novel location recognition paradigm. Postmortem tissue analyses of inflammatory and signaling molecules were conducted using immunohistochemistry and immunofluorescence. TGFβ-1 was induced in cultures expressing Nef at 24 h followed by CCL2 induction which was prevented by blocking TGFβRI with SD208 (competitive inhibitor). Interestingly, Nef seems to change the TGFβRI localization as suggested by the distribution of the immunoreactivity. Nef caused a deficit in spatial learning that was recovered upon co-administration of SD208. Brain tissue from Nef-treated rats given SD208 showed reduced CCL2, phospho-SMAD2, cluster of differentiation 163 (CD163), and GFAP immunoreactivity compared to the placebo group. Consistent with our previous findings, rats treated with Nef showed deficits in spatial learning and memory in the novel location recognition task. In contrast, rats treated with Nef + SD208 showed better spatial learning suggesting that Nef disrupts memory formation in a TGFβ-1-dependent manner. The TGFβRI inhibitor further reduced the induction of inflammation by Nef which was concomitant with decreased TGFβ signaling. Our findings suggest that TGFβ-1 signaling is an intriguing target to reduce neuroHIV."	"Do age-related macular degeneration genes show association with keratoconus? Keratoconus (KC) is a common corneal condition with an unknown gender predominance. Although numerous studies have investigated the genetic component of KC, no specific genes have yet been attributed to the condition. We recently reported posterior segment changes occurring in the eyes of KC patients. However, it is not clear whether these changes are part of KC pathogenesis or reflect changes in anatomical features of the eye manifested by changes at the cornea. Given retinal changes represent the main characteristics observed in age-related macular degeneration (AMD) and that pleiotropy has been demonstrated between different eye diseases, we wished to assess if known AMD associated genes were also associated with KC. A total of 248 KC subjects and 366 non-KC (control) subjects were recruited from public and private clinics in Melbourne for this analysis. Nineteen single nucleotide polymorphisms (SNPs) previously associated with AMD, including rs10490924 (ARMS2/HTRA1), rs10737680 (CFH), rs13278062 (TNFRSF10A), rs1864163 (CETP), rs2230199 (C3), rs3130783 (IER3/DDR1), rs334353 (TGFBR1), rs3812111 (COL10A1), rs429608 (C2/CFB), rs4420638 (APOE), rs4698775 (CFI), rs5749482 (TIMP3), rs6795735 (ADAMTS9), rs8017304 (RAD51B), rs8135665 (SLC16A8), rs920915 (LIPC), rs943080 (VEGFA), rs9542236 (B3GALTL) and rs13081855 (COL8A1/FILIP1L), were genotyped in this cohort. Logistic regression was applied to evaluate the association between these SNPs and KC on both genders together, as well as each gender separately. Linear regression was also applied to assess the association between SNPs and corneal curvature. Bonferroni correction was applied to adjust for multiple testing. Genotyping data were available for 18 SNPs. The SNP, rs6795735 (ADAMTS9) was significantly associated with KC (p = 3.5 × 10<sup>- 4</sup>) when both genders were assessed, whereas rs5749482 (TIMP3) was only associated in males (p = 7.7 × 10<sup>- 4</sup>) following Bonferroni multiple correction. However, when the covariates of age and gender were included, the associations became non-significant. In addition, none of the SNPs appeared significant for corneal curvature. Our study suggested a potential association of rs6795735 in the ADAMTS9 gene and rs5749482 in the TIMP3 gene in KC and that different associations may be gender specific. Overall, SNPs initially identified as associated with AMD following multiple correction may be further impacted by other factors such as age or gender and further studies are needed to resolve this issue."	"Effect of sex differences in treatment response to angioplasty in a murine arteriovenous fistula model. Failure to mature and venous neointimal hyperplasia formation are the two major causes of hemodialysis arteriovenous fistula (AVF) vascular access failure. Percutaneous transluminal angioplasty (PTA) is the firstline treatment for both of these conditions, but, clinically, women have decreased patency rates compared with men. The hypothesis to be tested in the present study was that female mice after PTA of venous areas of higher intimal thickening have increased gene expression of transforming growth factor-β1 (TGF-β1) and TGF-β receptor 1 (TGFβ-R1) accompanied with histological changes of fibrosis compared with male mice. Seventeen male and eighteen female C57BL/6J mice were used in this study. Chronic kidney disease was induced by partial nephrectomy, and, 28 days later, an AVF was created to connect the left carotid artery to the right jugular vein. Two weeks later, the higher intimal thickening area was treated with PTA, and mice were euthanized 3 days later for gene expression analysis or 14 days later for histopathological analysis. Doppler ultrasound was performed weekly after AVF creation. At day 3, female AVF had significantly higher average gene expression of TGF-β1 and TGFβ-R1 compared with male AVF. At day 14, female outflow veins had a smaller venous diameter, lumen vessel area, decreased wall shear stress, lower average peak systolic velocity, and an increased neointima area-to-media area ratio. Moreover, female outflow veins showed a significant increase in α-smooth muscle actin and fibroblast-specific protein-1. There was a decrease in M1/M2 with an increase in CD68."	"Pre-miR-27a rs895819 polymorphism and risk of diffuse large B-cell lymphoma. Recently, several studies have investigated the relationship between Pre-miR-27a rs895819 polymorphism and risk of various cancers. However, the relationship between rs895819 and diffuse large B-cell lymphoma (DLBCL) has not been well known. In this study, we conducted a case-control study to explore the role of Pre-miR-27a rs895819 in risk of DLBCL. The PCR-TaqMan and luciferase assays and in vitro experiments were used to evaluate polymorphism function. As a result, we found subjects carrying with rs895819 AG/GG genotype had a significantly decreased risk when compared with those carrying the AA genotype. Further qPCR assay showed that the DLBCL patients carrying AG/GG genotypes showed a lower level of mature miR-27a when compared with patients carrying AA genotype. Moreover, miR-27a levels were upregulated in DLBCL tissues compared with normal lymphoid tissues. Further in vitro experiments showed that miR-27a might function as an oncogene through target TGFBR1. In addition, TGFBR1 overexpression rescues effects of miR-27a inhibitor on DLBCL cells phenotypes. In conclusion, these findings indicate that rs895819 A &gt; G might reduce the expression of mature miR-27a, and leading a higher level of TGFBR1, ultimately inhibiting the development of DLBCL."	"Case-matched Comparison of Cardiovascular Outcome in Loeys-Dietz Syndrome versus Marfan Syndrome. Background: Pathogenic variants in TGFBR1, TGFBR2 and SMAD3 genes cause Loeys-Dietz syndrome, and pathogenic variants in FBN1 cause Marfan syndrome. Despite their similar phenotypes, both syndromes may have different cardiovascular outcomes. Methods: Three expert centers performed a case-matched comparison of cardiovascular outcomes. The Loeys-Dietz group comprised 43 men and 40 women with a mean age of 34 ± 18 years. Twenty-six individuals had pathogenic variants in TGFBR1, 40 in TGFBR2, and 17 in SMAD3. For case-matched comparison we used 83 age and sex-frequency matched individuals with Marfan syndrome. Results: In Loeys-Dietz compared to Marfan syndrome, a patent ductus arteriosus (p = 0.014) was more prevalent, the craniofacial score was higher (p &lt; 0.001), the systemic score lower (p &lt; 0.001), and mitral valve prolapse less frequent (p = 0.003). Mean survival for Loeys-Dietz and Marfan syndrome was similar (75 ± 3 versus 73 ± 2 years; p = 0.811). Cardiovascular outcome was comparable between Loeys-Dietz and Marfan syndrome, including mean freedom from proximal aortic surgery (53 ± 4 versus 48 ± 3 years; p = 0.589), distal aortic repair (72 ± 3 versus 67 ± 2 years; p = 0.777), mitral valve surgery (75 ± 4 versus 65 ± 3 years; p = 0.108), and reintervention (20 ± 3 versus 14 ± 2 years; p = 0.112). In Loeys-Dietz syndrome, lower age at initial presentation predicted proximal aortic surgery (HR = 0.748; p &lt; 0.001), where receiver operating characteristic analysis identified ≤33.5 years with increased risk. In addition, increased aortic sinus diameters (HR = 6.502; p = 0.001), and higher systemic score points at least marginally (HR = 1.175; p = 0.065) related to proximal aortic surgery in Loeys-Dietz syndrome. Conclusions: Cardiovascular outcome of Loeys-Dietz syndrome was comparable to Marfan syndrome, but the severity of systemic manifestations was a predictor of proximal aortic surgery."	"Upconversion Nanoparticle Powered Microneedle Patches for Transdermal Delivery of siRNA. Microneedles (MNs) permit the delivery of nucleic acids like small interfering RNA (siRNA) through the stratum corneum and subsequently into the skin tissue. However, skin penetration is only the first step in successful implementation of siRNA therapy. These delivered siRNAs need to be resistant to enzymatic degradation, enter target cells, and escape the endosome-lysosome degradation axis. To address this challenge, this article introduces a nanoparticle-embedding MN system that contains a dissolvable hyaluronic acid (HA) matrix and mesoporous silica-coated upconversion nanoparticles (UCNPs@mSiO2 ). The mesoporous silica (mSiO2 ) shell is used to load and protect siRNA while the upconversion nanoparticle (UCNP) core allows the tracking of MN skin penetration and NP diffusion through upconversion luminescence imaging or optical coherence tomography (OCT) imaging. Once inserted into the skin, the HA matrix dissolves and UCNPs@mSiO2 diffuse in the skin tissue before entering the cells for delivering the loaded genes. As a proof of concept, this system is used to deliver molecular beacons (MBs) and siRNA targeting transforming growth factor-beta type I receptor (TGF-βRI) that is potentially used for abnormal scar treatment."	"Temporal Control of the TGF-β Signaling Network by Mouse ESC MicroRNA Targets of Different Affinities. Although microRNAs (miRNAs) function in the control of embryonic stem cell (ESC) pluripotency, a systems-level understanding is still being developed. Through the analysis of progressive Argonaute (Ago)-miRNA depletion and rescue, including stable Ago knockout mouse ESCs, we uncover transforming growth factor beta (TGF-β) pathway activation as a direct and early response to ESC miRNA reduction. Mechanistically, we link the derepression of weaker miRNA targets, including TGF-β receptor 1 (Tgfbr1), to the sensitive TGF-β pathway activation. In contrast, stronger miRNA targets impart a more robust repression, which dampens concurrent transcriptional activation. We verify such dampened induction for TGF-β antagonist Lefty. We find that TGF-β pathway activation contributes to the G1 cell-cycle accumulation of miRNA-deficient ESCs. We propose that miRNA target affinity is a determinant of the temporal response to miRNA changes, which enables the coordination of gene network responses."	"High Prevalence of Connective Tissue Gene Variants in Professional Ballet. There is a high prevalence of hypermobility spectrum disorder (HSD) in dancers. While there is no known genetic variant for HSD, hypermobile Ehlers-Danlos syndrome is a genetic disorder that exists within HSD. There are many connective tissue disorders (CTDs) with known (and unknown) genes associated with hypermobility. Hypermobility has distinct advantages for participation in flexibility sports, including ballet. To determine the prevalence of gene variants associated with hypermobility in a large professional ballet company. Cross-sectional study; Level of evidence, 3. In this cross-sectional investigation, 51 professional male and female dancers from a large metropolitan ballet company were eligible and offered participation after an oral and written informed consent process. Whole blood was obtained from peripheral venipuncture, and DNA was isolated. Isolated DNA was subsequently enriched for the coding exons of 60 genes associated with CTD that included hypermobility as a phenotype, including Ehlers-Danlos syndromes, osteogenesis imperfecta, Marfan syndrome, and others. Genes were targeted with hybrid capture technology. Prepared DNA libraries were then sequenced with next-generation sequencing technology. Genetic database search tools (Human Gene Mutation Database and e!Ensembl, http://useast.ensembl.org/ ) were used to query specific variants. Descriptive statistics were calculated. Of 51 dancers, 32 (63%) agreed to participate in DNA analysis (mean ± SD age, 24.3 ± 4.4 years; 18 men, 14 women). Twenty-eight dancers had at least 1 variant in the 60 genes tested, for an 88% prevalence. A total of 80 variants were found. A variant in 26 of the 60 genes was found in at least 1 dancer. Among the 28 dancers with variants, 16 were found in the TTN gene; 10 in ZNF469; 5 in RYR1; 4 in COL12A1; 3 in ABCC6 and COL6A2; 2 in ADAMTS2, CBS, COL1A2, COL6A3, SLC2A10, TNC, and TNXB; and 1 in ATP6V0A2, B4GALT7, BMP1, COL11A1, COL5A2, COL6A1, DSE, FBN1, FBN2, NOTCH1, PRDM5, SMAD3, and TGFBR1. Nine variants found in this population have never been reported. No identified variant was identical to any other variant. No identified variant was known to be disease causing. In the general population, the prevalence of each variant ranges from never reported to 0.33%. In the study population, the prevalence of each variant was 3.13%. There was no association between hypermobility scores and genetic variants. Genetic variants in CTD-associated genes are highly prevalent (88%) in professional ballet dancers. This may significantly account for the high degree of motion in this population."	"Activated Endothelial TGFβ1 Signaling Promotes Venous Thrombus Nonresolution in Mice Via Endothelin-1: Potential Role for Chronic Thromboembolic Pulmonary Hypertension. Chronic thromboembolic pulmonary hypertension (CTEPH) is characterized by defective thrombus resolution, pulmonary artery obstruction, and vasculopathy. TGFβ (transforming growth factor-β) signaling mutations have been implicated in pulmonary arterial hypertension, whereas the role of TGFβ in the pathophysiology of CTEPH is unknown. To determine whether defective TGFβ signaling in endothelial cells contributes to thrombus nonresolution and fibrosis. Venous thrombosis was induced by inferior vena cava ligation in mice with genetic deletion of TGFβ1 in platelets (Plt.TGFβ-KO) or TGFβ type II receptors in endothelial cells (End.TGFβRII-KO). Pulmonary endarterectomy specimens from CTEPH patients were analyzed using immunohistochemistry. Primary human and mouse endothelial cells were studied using confocal microscopy, quantitative polymerase chain reaction, and Western blot. Absence of TGFβ1 in platelets did not alter platelet number or function but was associated with faster venous thrombus resolution, whereas endothelial TGFβRII deletion resulted in larger, more fibrotic and higher vascularized venous thrombi. Increased circulating active TGFβ1 levels, endothelial TGFβRI/ALK1 (activin receptor-like kinase), and TGFβRI/ALK5 expression were detected in End.TGFβRII-KO mice, and activated TGFβ signaling was present in vessel-rich areas of CTEPH specimens. CTEPH-endothelial cells and murine endothelial cells lacking TGFβRII simultaneously expressed endothelial and mesenchymal markers and transcription factors regulating endothelial-to-mesenchymal transition, similar to TGFβ1-stimulated endothelial cells. Mechanistically, increased endothelin-1 levels were detected in TGFβRII-KO endothelial cells, murine venous thrombi, or endarterectomy specimens and plasma of CTEPH patients, and endothelin-1 overexpression was prevented by inhibition of ALK5, and to a lesser extent of ALK1. ALK5 inhibition and endothelin receptor antagonization inhibited mesenchymal lineage conversion in TGFβ1-exposed human and murine endothelial cells and improved venous thrombus resolution and pulmonary vaso-occlusions in End.TGFβRII-KO mice. Endothelial TGFβ1 signaling via type I receptors and endothelin-1 contribute to mesenchymal lineage transition and thrombofibrosis, which were prevented by blocking endothelin receptors. Our findings may have relevant implications for the prevention and management of CTEPH."	"Identification of Potentially Functional CircRNA-miRNA-mRNA Regulatory Network in Gastric Carcinoma using Bioinformatics Analysis. BACKGROUND As all we know, gastric cancer (GC) is a highly aggressive disease. Recently, circular RNA (circRNA) was found to play a vital role in regulation of GC. Some circRNAs could regulate messenger RNA (mRNA) expression by functioning as a microRNA (miRNA) sponge. Nevertheless, the circRNA-miRNA-mRNA regulatory network involved GC rarely has been explored and researched. MATERIAL AND METHODS All the differentially expressed circRNAs, miRNAs, and mRNA were derived from Gene Expression Omnibus (GEO) microarray data (GSE78092, GSE89143, GSE93415, and GSE54129). GC level 3 miRNA-sequencing data and clinical information were downloaded from The Cancer Genome Atlas (TCGA) database. Furthermore, a circRNA-miRNA-mRNA regulatory network was constructed by Cytoscape (version 3.6.1). Gene Ontology (GO) analysis and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway revealed the functions and signaling pathways associated with these target genes. Hub genes of protein-protein interaction (PPI) network were identified by STRING database and cytoHubba. RESULTS The regulatory network consists of 3 circRNAs, 22 miRNAs, and 128 mRNAs. Only 3 miRNAs of the network were consistent with the expression of TCGA and were associated with some clinical features. The results of the functional analysis of 128 mRNAs showed that GO analysis and KEGG pathways of inclusion criteria were 49 and 24, respectively. PPI network and Cytoscape showed that the top 10 hub genes were MYC, CTGF, TGFBR2, TGFBR1, SERPINE1, KRAS, ZEB1, THBS1, CDK6, and TNS1; 4 of which were verified by GEPIA based on TCGA. Highly expressed SERPINE1 had a poor OS (over survival) and DFS (disease-free survival), and TGFBR1 expression increased along with the increase of clinical stages. CONCLUSIONS This study looked at a circRNA-miRNA-mRNA regulatory network associated with GC and explored the potential functions of mRNA in the network, then identified a new molecular marker for prediction, prognosis, and therapeutic targets for clinical patients."	"miR-181b-5p inhibits endothelial-mesenchymal transition in monocrotaline-induced pulmonary arterial hypertension by targeting endocan and TGFBR1. Endothelial-mesenchymal transition (EndMT) is a frequent event in endothelial dysfunction, which is associated with pulmonary arterial hypertension (PAH). MiR-181 family members exert diverse effects in multiple biological processes. However, the relationships between miR-181b-5p (miR-181b) and EndMT in PAH are not well understood. In this study, Sprague-Dawley (SD) rats were injected with monocrotaline (MCT) to establish PAH model, and primary rat pulmonary arterial endothelial cells (rPAECs) were treated with TNF-α, TGFβ1 and IL-1β in combination to induce EndMT (I-EndMT). Then we explored miR-181b expression and examined its functional role in PAH. Our data showed that miR-181b was down-expressed in PAH, and its overexpression attenuated the hemodynamics, pulmonary vascular hypertrophy, right ventricular remodeling and EndMT process in MCT-induced PAH rats. In I-EndMT rPAECs, we observed that inducing miR-181b reversed the decrease of endothelial markers and increase of mesenchymal markers. However, knockdown of miR-181b induced similar effects to EndMT. In addition, endocan and TGFBR1 levels were also increased in EndMT, which were negatively regulated by miR-181b. Luciferase activity results indicated that endocan and TGFBR1 were direct target genes of miR-181b. In summary, our findings firstly demonstrate that the beneficial effect of miR-181b on PAH may be associated with endocan/TGFBR1-mediated EndMT, providing a new insight into the diagnosis and treatment of PAH."	"Sterol-O acyltransferase 1 is inhibited by gga-miR-181a-5p and gga-miR-429-3p through the TGFβ pathway in endodermal epithelial cells of Japanese quail. Nutrients are utilized and re-constructed by endodermal epithelial cells (EECs) of yolk sac membrane (YSM) in avian species during embryonic development. Sterol O-acyltransferase 1 (SOAT1) is the key enzyme to convert cholesterol to cholesteryl ester for delivery to growing embryos. During embryonic development, yolk absorption is concomitant with significant changes of SOAT1 mRNA concentration and enzyme activity in YSM. Presence of microRNAs (miRNAs) are observed in the embryonic liver and muscle during avian embryogenesis. However, the expression of miRNAs in YSM during embryogenesis and the involvement of miRNAs in lipid utilization are not known. Using a miRNA sequencing technique, we found several miRNA candidates and confirmed their expression patterns individually by real time PCR. MiRNA candidates were selected based on the expression pattern and their possible roles in inhibiting transforming growth factor beta receptor type 1 (TGFBR1) that would regulate the function of SOAT1. Similar to SOAT1 mRNA, the gga-miR-181a-5p expression was gradually elevated during embryonic development. However, the expression of gga-miR-429-3p in YSM was gradually decreased during embryonic development. The inhibitory effects of gga-miR-181a-5p or gga-miR-429-3p on the potential targets (SOAT1 and TGFBR1) were demonstrated by transient miRNA transfections in EECs. We also found that mutated TGFBR1 3'UTR prevented the direct pairings of gga-miR-181a-5p and gga-miR-429-3p. Treatment of TGFBR1 inhibitor, LY364947, further decreased SOAT1 transcription. Similar results were also observed by the miRNA transfection studies. The results showed the vital participations of gga-miR-181a-5p and gga-miR-429-3p in regulating TGFβ pathway, and affecting downstream SOAT1 expression and function in the YSM. This is indicative of possible regulation of avian yolk lipid utilization by changing YSM miRNA expressions."	"ROS directly activates transforming growth factor β type 1 receptor signalling in human vascular smooth muscle cells. Widely used NAPDH oxidase (Nox) inhibitor, apocynin is a prodrug that needs to be converted to its pharmacologically active form by myeloperoxidase. In myeloperoxidase deficient non phagocytic cells such as vascular smooth muscle cells (VSMCs) apocynin stimulates the production of ROS. ROS is generated by the activation of many signalling pathways, thus we have used apocynin as a pharmacological tool to characterise the role of endogenous ROS in activating the transforming growth factor beta receptor (TGFBR1) without the activation of other pathways. The in vitro study utilized human VSMCs. Western blotting and quantitative real time PCR were performed to assess signalling pathways and gene expression, respectively. Intracellular ROS levels was measured using fluorescence detection assay. Treatment with apocynin of human VSMCs stimulated ROS production and the phosphorylation of TGFBR1 and subsequent activation of TGFBR1 signalling leading to the formation of phosphorylated Smad2 which consequently upregulates the mRNA expression of glycosaminoglycan synthesizing enzyme. These findings outline a specific involvement of ROS production in TGFBR1 activation. Furthermore, because apocynin stimulates Nox and ROS production, apocynin must be used with considerable care in vitro as its actions clearly extend beyond the stimulation of Nox enzymes and it has consequences for cellular signalling. Apocynin can stimulate Nox leading to the production of ROS and the outcome is completely dependent upon the redox properties of the cell."	"LncRNA PCAT6 promotes tumor progression in osteosarcoma via activation of TGF-β pathway by sponging miR-185-5p. Long noncoding RNAs (lncRNAs) play crucial roles in tumor development of osteosarcoma (OS). LncRNA PCAT6 was involved in the progression of multiple human cancers. However, the biological function of PCAT6 in OS remains largely unknown. We found that PCAT6 was elevated in OS tissues relative to that in their adjacent normal tissues. The upregulation of PCAT6 was positively associated with metastasis status and advanced stages and predicted poor overall and progression-free survivals in patients with OS. Functionally, silencing PCAT6 inhibited the proliferation, migration and invasion abilities of OS cells. Mechanistically, PCAT6, acting as a competitive endogenous RNA, upregulated expression of TGFBR1 and TGFBR2 to activate TGF-β pathway via sponging miR-185-5p. This study uncovers a novel underlying molecular mechanism of PCAT6-miR-185-5p-TGFBR1/2-TGF-β signaling axis in promoting tumor progression in OS, which indicates that PCAT6 may serve as a promising prognostic factor and therapeutic target again OS."	"Population pharmacokinetics of vactosertib, a new TGF-β receptor type Ι inhibitor, in patients with advanced solid tumors. Vactosertib, a novel inhibitor of transforming growth factor-β type Ι receptor, is under development for the treatment of various cancers. The objective of this study was to characterize the population pharmacokinetics of vactosertib in patients with solid tumors. Vactosertib population pharmacokinetics was assessed by nonlinear mixed-effects modelling of plasma concentration-time data obtained from a first-in-human phase 1 trial conducted in patients with advanced solid tumors. The final population pharmacokinetic model was constructed by assessing the effect of covariates on pharmacokinetic parameters including demographic characteristics, laboratory values, hepatic and renal function, and concomitant medications. The robustness of the final model was evaluated using a bootstrap method as well as visual predictive check based on Monte Carlo simulations and goodness-of-fit plots. A total of 559 concentrations from 29 patients were available for pharmacokinetic analysis. A two-compartment linear model with first-order absorption and absorption lag time adequately described the population pharmacokinetics of vactosertib. The estimates of apparent clearance (CL/F) and volume of central compartment (Vc/F) were 31.9 L/h (inter-individual variability, 0.481) and 82.9 L (inter-individual variability, 0.534), respectively. The mixture model accounts for both typical absorption profile in the majority of patients and distinct profile in some patients with uncommon gastrointestinal conditions. Body mass index was significantly associated with Vc/F. The model developed in this study adequately describes the population pharmacokinetics of vactosertib in patients with advanced solid tumors. The pharmacokinetic characteristics assessed using the model would provide useful quantitative information to assist the future clinical development of vactosertib."	"Prognostic value of transforming growth factor beta receptor 1 polymorphisms in patients with oral cancer. To investigate possible associations between disease-specific survival (DSS) of oral cancer and single nucleotide polymorphisms (SNPs) in transforming growth factor beta receptor 1 (TGFBR1). Using iPLEX Sequenom MassARRAY platform, three SNPs in TGFBR1 gene were genotyped in 356 newly diagnosed patients with histologically confirmed primary oral cancer. Demographic and clinical information of all cases were obtained from face-to-face interviews and electronic medical records, and telephone interviews were carried out every 6 months to timely gain follow-up data. Univariate and multivariate Cox proportional hazards model were used to assess the association between the polymorphisms of tagging loci and DSS of oral cancer. TGFBR1 rs33438 polymorphism was protective against death of oral cancer in codominant (AG vs AA: HR = 0.55, 95% CI = 0.35-0.88) and dominant (GG + AG vs AA: HR = 0.57, 95% CI = 0.38-0.87) models. Moreover, better DSS was particularly significant in radiotherapy patients who carrying GG + AG genotype. There also existed a positive multiplicative interaction on DSS between the polymorphism of TGFBR1 rs334348 and radiotherapy (P = .001). Not any associations between TGFBR1 rs334354 or rs3739798 polymorphism and DSS were observed. This preliminary prospective study suggests that polymorphism of TGFBR1 rs334348 may act as a potentially independent factor and novel genetic biomarker to predict oral cancer DSS especially for patients with radiotherapy. A much more extensive investigation will need to confirm our findings."	"Dynamic mechanical loading and growth factors influence chondrogenesis of induced pluripotent mesenchymal progenitor cells in a cartilage-mimetic hydrogel. Human induced pluripotent stem cells (iPSCs) have emerged as a promising alternative to bone-marrow derived mesenchymal stem/stromal cells for cartilage tissue engineering. However, the effect of biochemical and mechanical cues on iPSC chondrogenesis remains understudied. This study evaluated chondrogenesis of induced pluripotent mesenchymal progenitor cells (iPS-MPs) encapsulated in a cartilage-mimetic hydrogel under different culture conditions: free swelling versus dynamic compressive loading and different growth factors (TGFβ3 and/or BMP2). Human iPSCs were differentiated into iPS-MPs and chondrogenesis was evaluated by gene expression (qPCR) and protein expression (immunohistochemistry) after three weeks. In pellet culture, both TGFβ3 and BMP2 were required to promote chondrogenesis. However, the hydrogel in growth factor-free conditions promoted chondrogenesis, but rapidly progressed to hypertrophy. Dynamic loading in growth factor-free conditions supported chondrogenesis, but delayed the transition to hypertrophy. Findings were similar with TGFβ3, BMP2, and TGFβ3 + BMP2. Dynamic loading with TGFβ3, regardless of BMP2, was the only condition that promoted a stable chondrogenic phenotype (aggrecan + collagen II) accompanied by collagen X down-regulation. Positive TGFβRI expression with load-enhanced Smad2/3 signaling and low SMAD1/5/8 signaling was observed. In summary, this study reports a promising cartilage-mimetic hydrogel for iPS-MPs that when combined with appropriate biochemical and mechanical cues induces a stable chondrogenic phenotype."	"Novel Association of a Familial TGFBR1 Mutation in Loeys-Dietz Syndrome with Concomitant Hematologic Malignancy. Concomitant Loeys-Dietz syndrome (LDS) and hematologic malignancies are exceptionally rare. This is the first report of a patient operated on for aortic root dilation who had been previously diagnosed with LDS and B-cell-lymphoma. After completion of chemotherapy and complete remission, an elective valve-sparing aortic root replacement (using the David-V method) was performed. Due to the positive family history, pre-operative genetic counseling was conducted, and revealed LDS with a TGFBR1 (transforming growth factor beta receptor type I) mutation in 6 probands of the family, albeit in 1 of them posthumously. This missense mutation has been previously described in relation to aortic dissection, but a causative relationship to malignancy has so far neither been proposed nor proven."	"PGC-1α Suppresses the Activation of TGF-β/Smad Signaling via Targeting TGFβRI Downregulation by let-7b/c Upregulation. TGF-β/Smad signaling is a major pathway in progressive fibrotic processes, and further studies on the molecular mechanisms of TGF-β/Smad signaling are still needed for their therapeutic targeting. Recently, peroxisome proliferator-activated receptor γ coactivator-1α (PGC-1α) was shown to improve renal fibrosis, making it an attractive target for chronic kidney diseases (CKDs). Here, we show the mechanism by which PGC-1α regulates the TGF-β/Smad signaling pathway using HK-2 cell lines stably overexpressing empty vector (mock cells) or human PGC1α (PGC1α cells). Stable PGC-1α overexpression negatively regulated the expression of TGF-β-induced epithelial-mesenchymal transition (EMT) markers (fibronectin, E-cadherin, vimentin, and α-SMA) and EMT-related transcription factors (Snail and Slug) compared to mock cells, inhibiting fibrotic progression. Interestingly, among molecules upstream of Smad2/3 activation, the gene expression of only TGFβRI, but not TGFβRII, was downregulated in PGC-1α cells. In addition, the downregulation of TGFβRI by PGC-1α was associated with the upregulation of let-7b/c, miRNA for which the 3' untranslated region (UTR) of TGFβRI contains a binding site. In conclusion, PGC-1α suppresses TGF-β/Smad signaling activation via targeting TGFβRI downregulation by let-7b/c upregulation."	"Let-7f-5p regulates TGFBR1 in glucocorticoid-inhibited osteoblast differentiation and ameliorates glucocorticoid-induced bone loss. Previous studies indicated that let-7 enhances osteogenesis and bone formation of human adipose-derived mesenchymal stem cells (MSCs). We also have confirmed that let-7f-5p expression was upregulated during osteoblast differentiation in rat bone marrow-derived MSCs (BMSCs) and was downregulated in the vertebrae of patients with glucocorticoid (GC)-induced osteoporosis (GIOP). The study was performed to determine the role of let-7f-5p in GC-inhibited osteogenic differentiation of murine BMSCs in vitro and in GIOP in vivo. Here, we report that dexamethasone (Dex) inhibited osteogenic differentiation of BMSCs and let-7f-5p expression, while increasing the expression of transforming growth factor beta receptor 1 (TGFBR1), a direct target of let-7f-5p during osteoblast differentiation under Dex conditions. In addition, let-7f-5p promoted osteogenic differentiation of BMSCs, as indicated by the promotion of alkaline phosphatase (ALP) staining and activity, Von Kossa staining, and osteogenic marker expression (Runx2,Osx, Alp, and Ocn), but decreased TGFBR1 expression in the presence of Dex. However, overexpression of TGFBR1 reversed the upregulation of let-7f-5p during Dex-treated osteoblast differentiation. Knockdown of TGFBR1 reversed the effect of let-7f-5p downregulation during Dex-treated osteogenic differentiation of BMSCs. We also found that glucocorticoid receptor (GR) mediated transcriptional silencing of let-7f-5p and its knockdown enhanced Dex-inhibited osteogenic differentiation. Further, when injected in vivo, agomiR-let-7f-5p significantly reversed bone loss induced by Dex, as well as increased osteogenic marker expression (Runx2, Osx, Alp, and Ocn) and decreased TGFBR1 expression in bone extracts. These findings indicated that the regulatory axis of GR/let-7f-5p/TGFBR1 may be important for Dex-inhibited osteoblast differentiation and that let-7f-5p may be a useful therapeutic target for GIOP."	"Mutated CEACAMs Disrupt Transforming Growth Factor Beta Signaling and Alter the Intestinal Microbiome to Promote Colorectal Carcinogenesis. We studied interactions among proteins of the carcinoembryonic antigen-related cell adhesion molecule (CEACAM) family, which interact with microbes, and transforming growth factor beta (TGFB) signaling pathway, which is often altered in colorectal cancer cells. We investigated mechanisms by which CEACAM proteins inhibit TGFB signaling and alter the intestinal microbiome to promote colorectal carcinogenesis. We collected data on DNA sequences, messenger RNA expression levels, and patient survival times from 456 colorectal adenocarcinoma cases, and a separate set of 594 samples of colorectal adenocarcinomas, in The Cancer Genome Atlas. We performed shotgun metagenomic sequencing analyses of feces from wild-type mice and mice with defects in TGFB signaling (Sptbn1<sup>+/-</sup> and Smad4<sup>+/-</sup>/Sptbn1<sup>+/-</sup>) to identify changes in microbiota composition before development of colon tumors. CEACAM protein and its mutants were overexpressed in SW480 and HCT116 colorectal cancer cell lines, which were analyzed by immunoblotting and proliferation and colony formation assays. In colorectal adenocarcinomas, high expression levels of genes encoding CEACAM proteins, especially CEACAM5, were associated with reduced survival times of patients. There was an inverse correlation between expression of CEACAM genes and expression of TGFB pathway genes (TGFBR1, TGFBR2, and SMAD3). In colorectal adenocarcinomas, we also found an inverse correlation between expression of genes in the TGFB signaling pathway and genes that regulate stem cell features of cells. We found mutations encoding L640I and A643T in the B3 domain of human CEACAM5 in colorectal adenocarcinomas; structural studies indicated that these mutations would alter the interaction between CEACAM5 and TGFBR1. Overexpression of these mutants in SW480 and HCT116 colorectal cancer cell lines increased their anchorage-independent growth and inhibited TGFB signaling to a greater extent than overexpression of wild-type CEACAM5, indicating that they are gain-of-function mutations. Compared with feces from wild-type mice, feces from mice with defects in TGFB signaling had increased abundance of bacterial species that have been associated with the development of colon tumors, including Clostridium septicum, and decreased amounts of beneficial bacteria, such as Bacteroides vulgatus and Parabacteroides distasonis. We found expression of CEACAMs and genes that regulate stem cell features of cells to be increased in colorectal adenocarcinomas and inversely correlated with expression of TGFB pathway genes. We found colorectal adenocarcinomas to express mutant forms of CEACAM5 that inhibit TGFB signaling and increase proliferation and colony formation. We propose that CEACAM proteins disrupt TGFB signaling, which alters the composition of the intestinal microbiome to promote colorectal carcinogenesis."	"MiR-195 and miR-497 suppress tumorigenesis in lung cancer by inhibiting SMURF2-induced TGF-β receptor I ubiquitination. SMURF2 is a member of the HECT family of E3 ubiquitin ligases that have important roles as a negative regulator of transforming growth factor-β (TGF-β) signaling through ubiquitin-mediated degradation of TGF-β receptor I. However, the regulatory mechanism of SMURF2 is largely unknown. In this study, we identified that micro(mi)R-195 and miR-497 putatively target SMURF2 using several target prediction databases. Both miR-195 and miR-497 bind to the 3'-UTR of the SMURF2 mRNA and inhibit SMURF2 expression. Furthermore, miR-195 and miR-497 regulate SMURF2-dependent TβRI ubiquitination and cause the activation of the TGF-β signaling pathway in lung cancer cells. Upregulation of miR-195 and miR-497 significantly reduced cell viability and colony formation through the activation of TGF-β signaling. Interestingly, miR-195 and miR-497 also reduced the invasion ability of lung cancer cells when cells were treated with TGF-β1. Subsequent in vivo studies in xenograft nude mice model revealed that miR-195 and miR-497 repress tumor growth. These findings demonstrate that miR-195 and miR-497 act as a tumor suppressor by suppressing ubiquitination-mediated degradation of TGF-β receptors through SMURF2, and suggest that miR-195 and miR-497 are potential therapeutic targets for lung cancer."	"miR-181a promotes porcine granulosa cell apoptosis by targeting TGFBR1 via the activin signaling pathway. Activin/Smad3 signaling plays a pivotal role in follicle development and atresia. However, the precise mechanisms underlying this process are not yet fully understood. Herein, we identified miR-181a as a central component of activin/Smad3-mediated follicle atresia. miR-181a was strikingly upregulated in porcine atretic follicles, which induced the apoptosis of porcine granulosa cells (GCs) in vitro. Furthermore, the transforming growth factor-β type 1 receptor (TGFBR1) was confirmed as a direct target of miR-181a by bioinformatics analysis and luciferase assays. Transfection with an miR-181a agomir repressed the TGFBR1 mRNA and protein levels. In addition, TGFBR1 overexpression repressed GC apoptosis, whereas TGFBR1 inhibition promoted GC apoptosis. miR-181a overexpression downregulated the phosphorylation of Smad3 and blocked the activation of TGF-β signaling. Moreover, activin A downregulated miR-181a expression and upregulated the TGFBR1 and p-Smad3 protein levels. Collectively, these data suggest that miR-181a regulates porcine GC apoptosis by targeting TGFBR1 via the activin signaling pathway."	"Identification of a transforming growth factor-β type I receptor transcript in Eriocheir sinensis and its molting-related expression in muscle tissues. The transforming growth factor-β (TGF-β) signaling pathway is conserved across animals, and knowledge of its roles during the molt cycle in crustaceans is presently very limited. This study investigates the roles of the TGF-β receptor in molting-related muscle growth in Eriocheir sinensis. Using the RT-PCR and RACE techniques, we obtained a 1722 bp cDNA sequence encoding a transforming growth factor-β type I receptor in Eriocheir sinensis, designated EsTGFBRI, which contains a 124 bp 5'-untranslated region, a 20 bp partial 3'-untranslated region and a 1578 bp open reading frame encoding 525 amino acids. The deduced EsTGFBRI contains an N-terminal 24 amino acid signal peptide, an activin type I and II receptor domain, a transmembrane helix region, a glycine-serine-rich motif, and a conserved serine/threonine kinase catalytic domain including an activation loop. The qRT-PCR results showed that EsTGFBRI gene was highly expressed in the intermolt testis and ovary in mature crabs. In juvenile crabs, the mRNA levels of EsTGFBRI in claw and abdominal muscles in the later premolt D3-4 stage were significantly higher than those in the intermolt C and postmolt A-B stages. There was no significant change in EsTGFBRI mRNA levels in walking leg muscles during the molt cycle. The results suggest that EsTGFBRI is probably play roles in molting-related muscle growth in E. sinensis. This study provides a necessary basis for elucidating the functions of TGF-β-like signaling mediated by TGFBRI in molting-related muscle growth in crustaceans."	"Genotypic Categorization of Loeys-Dietz Syndrome Based on 24 Novel Families and Literature Data. Loeys-Dietz syndrome (LDS) is a connective tissue disorder first described in 2005 featuring aortic/arterial aneurysms, dissections, and tortuosity associated with craniofacial, osteoarticular, musculoskeletal, and cutaneous manifestations. Heterozygous mutations in 6 genes (TGFBR1/2, TGFB2/3, SMAD2/3), encoding components of the TGF-β pathway, cause LDS. Such genetic heterogeneity mirrors broad phenotypic variability with significant differences, especially in terms of the age of onset, penetrance, and severity of life-threatening vascular manifestations and multiorgan involvement, indicating the need to obtain genotype-to-phenotype correlations for personalized management and counseling. Herein, we report on a cohort of 34 LDS patients from 24 families all receiving a molecular diagnosis. Fifteen variants were novel, affecting the TGFBR1 (6), TGFBR2 (6), SMAD3 (2), and TGFB2 (1) genes. Clinical features were scored for each distinct gene and matched with literature data to strengthen genotype-phenotype correlations such as more severe vascular manifestations in TGFBR1/2-related LDS. Additional features included spontaneous pneumothorax in SMAD3-related LDS and cervical spine instability in TGFB2-related LDS. Our study broadens the clinical and molecular spectrum of LDS and indicates that a phenotypic continuum emerges as more patients are described, although genotype-phenotype correlations may still contribute to clinical management."	"MALAT1 is involved in the pathophysiological process of PCOS by modulating TGFβ signaling in granulosa cells. Polycystic ovary syndrome (PCOS) is an endocrine disorder, the etiology of which is complex and unclear. Metastasis-associated lung adenocarcinoma transcript 1 (MALAT1) is a conserved long non-coding RNA which has been found to play a role in the pathophysiological process of reproductive system diseases, such as endometriosis and pregnancy loss. However, the role of MALAT1 in PCOS is still unknown. In this study, reduced MALAT1 expression was found in granulosa cells (GCs) from 68 patients with PCOS and 30 healthy controls, which relates to upregulated cell proliferation and downregulated apoptosis. Using phosphorylation pathway profiling array, MALAT1 reduction was identified to contribute to the repression of transforming growth factor beta (TGFβ) signaling in GCs. Subsequently, MALAT1 was confirmed to function as a competing endogenous RNA (ceRNA), interacting with miR-125b and miR-203a. Meanwhile, miR-125b and miR-203a was identified as two novel TGFβ signaling negative regulators by targeting TGFBR1 and TGFBR2. Finally, MALAT1 knockdown was found to induce the upregulation of miR-125b and miR-203a, which further repressed TGFβ signaling, changed some downstream gene expression, and resulted in a disordered cell cycle. In conclusion, MALAT1 reduction was identified in GCs, which may contribute to the pathophysiological processes of PCOS by regulating TGFβ signaling through sponging miR-125b and miR-203a."	"Cross-Linked Polyphenol-Based Drug Nano-Self-Assemblies Engineered to Blockade Prostate Cancer Senescence. Cellular senescence is one of the prevailing issues in cancer therapeutics that promotes cancer relapse, chemoresistance, and recurrence. Patients undergoing persistent chemotherapy often develop drug-induced senescence. Docetaxel, an FDA-approved treatment for prostate cancer, is known to induce cellular senescence which often limits the overall survival of patients. Strategic therapies that counter the cellular and drug-induced senescence are an unmet clinical need. Towards this an effort was made to develop a novel therapeutic strategy that targets and removes senescent cells from the tumors, we developed a nanoformulation of tannic acid-docetaxel self-assemblies (DSAs). The construction of DSAs was confirmed through particle size measurements, spectroscopy, thermal, and biocompatibility studies. This formulation exhibited enhanced in vitro therapeutic activity in various biological functional assays with respect to native docetaxel treatments. Microarray and immunoblot analysis results demonstrated that DSAs exposure selectively deregulated senescence associated TGFβR1/FOXO1/p21 signaling. Decrease in β-galactosidase staining further suggested reversion of drug-induced senescence after DSAs exposure. Additionally, DSAs induced profound cell death by activation of apoptotic signaling through bypassing senescence. Furthermore, in vivo and ex vivo imaging analysis demonstrated the tumor targeting behavior of DSAs in mice bearing PC-3 xenograft tumors. The antisenescence and anticancer activity of DSAs was further shown in vivo by inhibiting TGFβR1 proteins and regressing tumor growth through apoptotic induction in the PC-3 xenograft mouse model. Overall, DSAs exhibited such advanced features due to a natural compound in the formulation as a matrix/binder for docetaxel. Overall, DSAs showed superior tumor targeting and improved cellular internalization, promoting docetaxel efficacy. These findings may have great implications in prostate cancer therapy."	"miR‑141 inhibits proliferation, migration and invasion in human hepatocellular carcinoma cells by directly downregulating TGFβR1. MicroRNAs (miRNAs) have been demonstrated to have crucial roles in modulating various human cancers. The present study examined the involvement of miR‑141 in modulating the proliferation, migration, and invasion of hepatocellular carcinoma (HCC) cells. Notably, the results demonstrated that miR‑141 was significantly downregulated in primary liver tumor tissues from patients compared with adjacent non‑tumor tissues. Overexpression of miR‑141 in HCC cells robustly impaired migration and invasion and suppressed proliferation in vitro, by arresting cells at the G2/M phase. Further analyses revealed that miR‑141 overexpression downregulated transforming growth factor β receptor 1 (TGFβR1) by directly binding to its 3' untranslated region. In addition, the mRNA and protein levels of TGFβR1 were both significantly increased in HCC patient tissues compared with matched adjacent non‑tumor tissues. Silencing of TGFβR1 produced similar effects in vitro to miR‑141 overexpression. Furthermore, the downstream protein SMAD family member 2 was downregulated following overexpression of miR‑141 or silencing of TGFβR1. These findings indicated that miR‑141 inhibited HCC cell proliferation and invasion by directly downregulating TGFβR1 and its downstream signaling cascade, providing insights into a potential novel strategy for HCC therapy."	"MicroRNA‑133b targets TGFβ receptor I to inhibit TGF‑β‑induced epithelial‑to‑mesenchymal transition and metastasis by suppressing the TGF‑β/SMAD pathway in breast cancer. Breast cancer (BC) is one of the most common types of cancer and the leading cause of cancer‑associated mortality among women worldwide. Accumulating evidence indicates that microRNA (miR)‑133b inhibits the proliferation and invasion of cancer cells. Considering that transforming growth factor (TGF)‑β signaling plays a key role in cellular epithelial‑to‑mesenchymal transition (EMT) and cancer metastasis, it is crucial to explore the roles and underlying molecular mechanisms of miR‑133b in regulating TGF‑β‑induced EMT during progression of BC. In the present study, an inverse correlation was observed between the expression of miR‑133b and TGFβ receptor I (TGFβR1) mRNA in BC cells and tissues. Furthermore, miR‑133b expression was found to be decreased in the BC tissues of patients with lymph node metastasis and advanced tumor‑node‑metastasis stage, while the expression of TGFβR1 was upregulated. Overexpression of miR‑133b significantly decreased the expression of TGFβR1, an indispensable receptor of TGF‑β/SMAD signaling, and suppressed TGF‑β‑induced EMT and BC cell invasion in vitro, whereas miR‑133b knockdown exerted the opposite effects. Mechanistically, TGFβR1 was verified as a direct target of miR‑133b as determined by bioinformatics analysis and a dual‑luciferase reporter assay. In addition, small interfering RNA‑mediated knockdown of TGFβR1 mimicked the phenotype of miR‑133b overexpression in BC cells. Furthermore, miR‑133b overexpression suppressed BC cell invasion in vivo. Collectively, the findings of the present study indicated that miR‑133b acts as a tumor suppressor, inhibiting TGF‑β‑induced EMT and metastasis by directly targeting TGFβR1, and suppressing the TGF‑β/SMAD pathway. Therefore, miR‑133b may be of value as a diagnostic biomarker of BC."	"KLF4 prevents epithelial to mesenchymal transition in human corneal epithelial cells via endogenous TGF-β2 suppression. Krüppel-like factor 4 (KLF4) is considered one of the Yamanaka factors, and recently, we and others have shown that KLF4 is one of the transcription factors essential for reprogramming non-human corneal epithelial cells (HCECs) into HCECs. Since epithelial to mesenchymal transition (EMT) suppression is vital for homeostasis of HCECs via regulation of transcription factors, in this study, we aimed to investigate whether KLF4 prevents EMT in HCECs and to elucidate the underlying mechanism within the canonical TGF-β signalling pathway, which is involved in corneal epithelial wound healing. HCECs were collected from cadaver donors and cultivated. We generated KLF4-knockdown (KD) HCECs using siRNA transfection and analysed morphology, gene or protein expression, and endogenous TGF-β secretion. KLF4 was overexpressed using lentiviral KLF4 expression vectors and underwent protein expression analyses after TGF-β2 treatment. KLF4-KD HCECs showed a fibroblastic morphology, downregulation of the epithelial markers, keratin 12 and keratin 14, and upregulation of the mesenchymal markers, fibronectin 1, vimentin, N-cadherin, and SLUG. Although E-cadherin expression remained unchanged in KLF4-KD HCECs, immunocytochemical analysis showed that E-cadherin-positive adherens junctions decreased in KLF4-KD HCECs as well as the decreased total protein levels of E-cadherin analysed by immunoblotting. Moreover, within the TGF-β canonical signalling pathway, TGF-β2 secretion by HCECs increased up to 5 folds, and several TGF-β-associated markers (TGFB1, TGFB2, TGFBR1, and TGFBR2) were significantly upregulated up to 6 folds in the KLF4-KD HCECs. SMAD2/3, the main signal transduction molecules of the TGF-β signalling pathway, were found to be localised in the nucleus of KLF4-KD HCECs. When KLF4 was overexpressed, cultivated HCECs showed upregulation of epithelial markers, keratin 14 and E-cadherin, indicating the contributory role of KLF4 in the homeostasis of human corneal epithelium in vivo. In addition, KLF4 overexpression in HCECs resulted in decreased SMAD2 phosphorylation and altered nuclear localisation of SMAD2/3, even after TGF-β2 treatment. These results show that KLF4 prevents EMT in HCECs and suggest a novel role of KLF4 as an endogenous TGF-β2 suppressor in the human corneal epithelium, thus highlighting the potential of KLF4 to prevent EMT and subsequent corneal fibrotic scar formation by attenuating TGF-β signalling."	"Oxidative Stress and TGF-β1/Smads Signaling Are Involved in Rosa roxburghii Fruit Extract Alleviating Renal Fibrosis. Fibrosis is involved in the pathogenesis of kidney diseases. We previously discovered that Rosa roxburghii fruit (Cili) possesses antifibrosis property in chronic renal disease, but the mechanisms are unknown. We hypothesized that Cili might prevent fibrosis development through mediating TGF-β/Smads signaling, which is known to be involved in renal fibrosis. This study aimed to confirm the effects of freeze-dried Cili powder in a rat model of unilateral ureteral obstruction (UUO) and examine TGF-β/Smads signaling. Rats were randomized to (n=12/group): sham operation, UUO, UUO with losartan, UUO with moderate Cili dose (3 g/kg/d), and UUO with high Cili dose (6 g/kg/d). The rats were sacrificed after 14 days of treatment. Collagen deposition was tested using Masson's staining. TGF-β/Smads signaling was examined by qRT-PCR, western blot, and immunohistochemistry. Rats in the UUO group showed excessive deposition of collagen in kidney interstitium, accompanied with high levels of renal 8-hydroxy-2'-deoxyguanosine, renal malondialdehyde, blood urea nitrogen (BUN), serum creatinine (Scr), and proteinuria (all P&lt;0.05). Cili powder efficiently alleviated the pathological changes and oxidative stress in the kidneys of UUO rats, and decreased BUN, Scr and proteinuria (all P&lt;0.05). Cili powder also inhibited the upregulation of TGFB1, TGFBR1, TGFBR2, SMAD2, and SMAD3 and reversed the downregulation of SMAD7 in obstructed kidneys (mRNA and protein) (all P&lt;0.05). In summary, the results suggest that Cili freeze-dried powder effectively prevents renal fibrosis and impairment in UUO rats, which is associated with the inhibition of oxidative stress and TGF-β1/Smads signaling."	"NSD2 inhibition suppresses metastasis in cervical cancer by promoting TGF-β/TGF-βRI/SMADs signaling. The molecular mechanisms revealing cervical cancer progression remain unclear. NSD2 belongs to the NSD family of histone lysine methyltransferases (HMTases), and is a histone methyltransferase that regulates dimethylation of histone 3 lysine 36 (H3K36me2). In this study, we explored the effects of NSD2 on the tumorigenesis and metastasis in cervical cancer. We found that NSD2 exhibited a pattern of gradual up-regulation from normal cervix (NC) to cervical carcinoma in situ (CIS) and then to invasive cervical cancer (ICC). NSD2 knockdown markedly reduced the cervical cancer cell proliferation. Loss of function assay in vitro suggested that NSD2 deletion markedly prevented the cervical cancer cell migration and invasion. Consistently, the in vivo results demonstrated that NSD2 knockdown not only reduced tumor growth, but also prevented the development of tumor metastasis. In addition, NSD2 knockdown clearly reduced the expression levels of transforming growth factor-β1 (TGF-β1), TGF-βRI, phosphorylated SMAD2 and SMAD3 in cervical cancer cells, accompanied with the decreased expression of genes that promoted tumor metastasis. Importantly, we found that NSD2 knockdown-regulated expression levels of metastasis-associated genes were reversed by TGF-β1 incubation. Therefore, our findings demonstrated that NSD2-modulated activation of TGF-β1/TGF-βRI/SMADs signaling pathway was crucial for cervical cancer progression, which might be a promising therapeutic strategy to overcome metastasis in cervical cancer."	"Role of TGF‑β in the motility of ShcD‑overexpressing 293 cells. The newly identified Src homology and collagen (Shc) family member ShcD was observed to be upregulated in 50% of vertical growth phase and metastatic melanomas. The aim of the present study was to investigate the mechanism by which ShcD mediates cell motility. 293 cell lines were altered to stably express GFP (GF) or GFP‑ShcD (G5). Treatment of the cells with transforming growth factor (TGF)β2 promoted extracellular signal‑regulated kinase (ERK) phosphorylation and, to a lesser extent, Smad2 phosphorylation in GFP‑ShcD‑expressing cells but not in GFP‑overexpressing cells. GFP‑ShcD‑expressing cells exhibited upregulated expression of certain epithelial‑mesenchymal transition‑related genes, such as snail family transcriptional repressor 1 and SLUG, than GFP‑expressing cells. Higher levels of ERK were found in the nuclear fraction of GFP‑ShcD‑expressing cells than that of GFP‑expressing cells. Overall, GFP‑ShcD‑expressing cells demonstrated enhanced migration compared with GFP‑expressing cells. A slight increase in cell migration was observed in both cell lines (GF and G5) when the cells were allowed to migrate towards conditioned medium derived from TGFβ2‑treated GFP‑ShcD expressing cells. Collectively, ShcD upregulation was proposed to induce cell migration by affecting the expression of certain epithelial‑mesenchymal transition‑related genes. Thus, our findings may improve understanding of the role of ShcD in cell migration."	"TGFBI Protein Is Increased in the Urine of Patients with High-Grade Urothelial Carcinomas, and Promotes Cell Proliferation and Migration. Here, we discovered TGFBI as a new urinary biomarker for muscle invasive and high-grade urothelial carcinoma (UC). After biomarker identification using antibody arrays, results were verified in urine samples from a study population consisting of 303 patients with UC, and 128 urological and 58 population controls. The analyses of possible modifying factors (age, sex, smoking status, urinary leukocytes and erythrocytes, and history of UC) were calculated by multiple logistic regression. Additionally, we performed knockdown experiments with TGFBI siRNA in bladder cancer cells and investigated the effects on proliferation and migration by wound closure assays and BrdU cell cycle analysis. TGFBI concentrations in urine are generally increased in patients with UC when compared to urological and population controls (1321.0 versus 701.3 and 475.6 pg/mg creatinine, respectively). However, significantly increased TGFBI was predominantly found in muscle invasive (14,411.7 pg/mg creatinine), high-grade (8190.7 pg/mg) and de novo UC (1856.7 pg/mg; all p &lt; 0.0001). Knockdown experiments in vitro led to a significant decline of cell proliferation and migration. In summary, our results suggest a critical role of TGFBI in UC tumorigenesis and particularly in high-risk UC patients with poor prognosis and an elevated risk of progression on the molecular level."	"TGFβ signaling in germinal center B cells promotes the transition from light zone to dark zone. B cells in germinal centers (GCs) cycle between light zone (LZ) and dark zone (DZ). The cues in the GC microenvironment that regulate the transition from LZ to DZ have not been well characterized. In Peyer's patches (PPs), transforming growth factor-β (TGFβ) promotes IgA induction in activated B cells that can then differentiate into GC B cells. We show here that TGFβ signaling occurs in B cells in GCs and is distinct from signaling that occurs in activated B cells in PPs. Whereas in activated B cells TGFβ signaling is required for IgA induction, in the GC it was instead required for the transition from LZ to DZ. In the absence of TGFβ signaling, there was an accumulation of LZ GC B cells and reduced antibody affinity maturation likely due to reduced activation of Foxo1. This work identifies TGFβ as a microenvironmental cue that is critical for GC homeostasis and function."	"Pathogenic effect of a TGFBR1 mutation in a family with Loeys-Dietz syndrome. Thoracic aortic aneurysms and dissections (TAAD) may have a heritable cause in up to 20% of cases. We aimed to investigate the pathogenic effect of a TGFBR1 mutation in relation to TAAD. Co-segregation analysis was performed followed by functional investigations, including myogenic transdifferentiation. The c.1043G&gt;A TGFBR1 mutation was found in the index patient, in a deceased brother, and in five presymptomatic family members. Evidence for pathogenicity was found by the predicted damaging effect of this mutation and the co-segregation in the family. Functional analysis with myogenic transdifferentiation of dermal fibroblasts to smooth muscle-like cells, revealed increased myogenic differentiation in patient cells with the TGFBR1 mutation, shown by a higher expression of myogenic markers ACTA2, MYH11 and CNN1 compared to cells from healthy controls. Our findings confirm the pathogenic effect of the TGFBR1 mutation in causing TAAD in Loeys-Dietz syndrome and show increased myogenic differentiation of patient fibroblasts."	"Rotator Cuff Tear Susceptibility Is Associated With Variants in Genes Involved in Tendon Extracellular Matrix Homeostasis. Rotator cuff tears (RCT) is a multifactorial disease with genetic factors contributing for the disease etiology. We hypothesized that genetic variants in genes involved in extracellular matrix (ECM) homeostasis may alter susceptibility to RCT. We evaluated 20 polymorphisms of genes involved in ECM homeostasis in 211 cases of full-thickness tears of the supraspinatus (Nfemales = 130; Nmales = 81) and 567 age-matched controls (Nfemales = 317; Nmales = 250). Multivariate logistic regressions were carried out with age, gender, genetic ancestry (based on the analysis of 61 biallelic short insertion/deletion polymorphisms), and common co-morbidities (diabetes, dyslipidemia, and smoking habits) as covariates. We observed that carriers of the rare allele of both studied variants of TGFB1, as well as their G/A (rs1800470/rs1800469) haplotype, were less susceptible to RCT (p &lt; 0.05). In contrast, carriers of the G allele of MMP9 rs17576 (p = 0.014) or G/G haplotype (rs17576/rs17577; p &lt; 0.001) had an increased risk for tendon tears. The presence of the T allele of MMP2 rs2285053 (p = 0.033), the T allele of MMP3 rs679620 (p = 0.024), and the TT-genotype of TIMP2 rs2277698 (p = 0.01) was associated with susceptibility to tears, especially in females. In males, the A allele of COL5A1 rs3196378 (p = 0.032) and the G allele of TGFBR1 rs1590 (p = 0.039) were independent risk factors for RCT. The C/T COL5A1 (rs3196378/rs11103544) haplotype was associated with a reduced risk of tears in males (p = 0.03). In conclusion, we identified the genetic variants associated with RCT susceptibility, thereby reinforcing the role of genes involved in the structure and homeostasis of the ECM of tendons in disease development. © 2019 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 38:192-201, 2020."	"Discovery of New Inhibitors of Transforming Growth Factor-Beta Type 1 Receptor by Utilizing Docking and Structure-Activity Relationship Analysis. The transforming growth factor-beta (TGF-β) plays an important role in pathological fibrosis and cancer transformation. Therefore, the inhibition of the TGF-β signaling pathway has therapeutic potential in the treatment of cancer. In this study, the binding modes between 47 molecules with a pyrrolotriazine-like backbone structure and transforming growth factor-beta type 1 receptor (TβR1) were simulated by molecular docking using Discovery Studio software, and their structure-activity relationships were analyzed. On the basis of the analysis of the binding modes of ligands in the active site and the structure-activity relationships, 29,254 new compounds were designed for virtual screening. According to the aforementioned analyses and Lipinski's rule of five, five new compounds (CQMU1901-1905) with potential activity were screened through molecular docking. Among them, CQMU1905 is an attractive molecule composed of 5-fluorouracil (5-FU), 6-mercaptopurine (6-MP), and 5-azacytosine. Interestingly, 5-FU, 6-MP, and 5-azacytidine are often used as anti-metabolic agents in cancer treatment. Compared with existing compounds, CQMU1901-1905 can interact with target proteins more effectively and have good potential for modification, making them worthy of further study."	"Inherited alterations of TGF beta signaling components in Appalachian cervical cancers. This study examined targeted genomic variants of transforming growth factor beta (TGFB) signaling in Appalachian women. Appalachian women with cervical cancer were compared to healthy Appalachian counterparts to determine whether these polymorphic alleles were over-represented within this high-risk cancer population, and whether lifestyle or environmental factors modified the aggregate genetic risk in these Appalachian women. Appalachian women's survey data and blood samples from the Community Awareness, Resources, and Education (CARE) CARE I and CARE II studies (n = 163 invasive cervical cancer cases, 842 controls) were used to assess gene-environment interactions and cancer risk. Polymorphic allele frequencies and socio-behavioral demographic measurements were compared using t tests and χ<sup>2</sup> tests. Multivariable logistic regression was used to evaluate interaction effects between genomic variance and demographic, behavioral, and environmental characteristics. Several alleles demonstrated significant interaction with smoking (TP53 rs1042522, TGFB1 rs1800469), alcohol consumption (NQO1 rs1800566), and sexual intercourse before the age of 18 (TGFBR1 rs11466445, TGFBR1 rs7034462, TGFBR1 rs11568785). Interestingly, we noted a significant interaction between &quot;Appalachian self-identity&quot; variables and NQO1 rs1800566. Multivariable logistic regression of cancer status in an over-dominant TGFB1 rs1800469/TGFBR1 rs11568785 model demonstrated a 3.03-fold reduction in cervical cancer odds. Similar decreased odds (2.78-fold) were observed in an over-dominant TGFB1 rs1800469/TGFBR1 rs7034462 model in subjects who had no sexual intercourse before age 18. This study reports novel associations between common low-penetrance alleles in the TGFB signaling cascade and modified risk of cervical cancer in Appalachian women. Furthermore, our unexpected findings associating Appalachian identity and NQO1 rs1800566 suggests that the complex environmental exposures that contribute to Appalachian self-identity in Appalachian cervical cancer patients represent an emerging avenue of scientific exploration."	"Cross-talk between TGF-β and PDGFRα signaling pathways regulates the fate of stromal fibro-adipogenic progenitors. Fibro-adipogenic progenitors (FAPs) are tissue-resident mesenchymal stromal cells (MSCs) required for proper skeletal muscle development, regeneration and maintenance. However, FAPs are also responsible for fibro-fatty scar deposition following chronic damage. We aimed to investigate the role of functional cross-talk between TGF-β and PDGFRα signaling pathways in the fate of FAPs. Here, we show that the number of FAPs correlates with TGF-β levels and with extracellular matrix deposition during regeneration and repair. Interestingly, the expression of PDGFRα changed dynamically in the fibroblast lineage after injury. Furthermore, PDGFRα-dependent immediate early gene expression changed during regeneration and repair. We also found that TGF-β signaling reduces PDGFRα expression in FAPs, mouse dermal fibroblasts and in two related mesenchymal cell lines. Moreover, TGF-β promotes myofibroblast differentiation of FAPs but inhibits their adipogenicity. Accordingly, TGF-β impairs the expression of PDGFRα-dependent immediate early genes in a TGFBR1-dependent manner. Finally, pharmacological inhibition of PDGFRα activity with AG1296 impaired TGF-β-induced extracellular matrix remodeling, Smad2 signaling, myofibroblast differentiation and migration of MSCs. Thus, our work establishes a functional cross-talk between TGF-β and PDGFRα signaling pathways that is involved in regulating the biology of FAPs and/or MSCs.This article has an associated First Person interview with the first author of the paper."	"Germacrane Sesquiterpenoids as a New Type of Anticardiac Fibrosis Agent Targeting Transforming Growth Factor β Type I Receptor. A germacrane sesquiterpenoid library containing 30 compounds (2-31) was constructed by structural modification of a major component aristolactone (1) from the traditional Chinese medicine Aristolochia yunnanensis. Compound 11 was identified as a promising anticardiac fibrosis agent by systematic screening of this library. 11 could inhibit the expression of fibronectin (FN), α-smooth muscle actin (α-SMA), and collagens in transforming growth factor β 1 (TGFβ1)-stimulated cardiac fibroblasts at a micromolar level and ameliorate myocardial fibrosis and heart function in abdominal aortic constriction (AAC) rats at 5 mg/kg dose. Mechanistic study revealed that 11 inhibited the TGFβ/small mother against decapentaplegic (Smad) signaling pathway by targeting TGFβ type I receptor (IC50 = 14.9 ± 1.6 nM). The structure-activity relationships (SARs) study indicated that the unsaturated γ-lactone ring and oxidation of C-1 were important to the activity. These findings may provide a new type of structural motif for future anticardiac fibrosis drug development."	"Overactivity or blockade of transforming growth factor-β each generate a specific ureter malformation. Transforming growth factor-β (TGFβ) has been reported to be dysregulated in malformed ureters. There exists, however, little information on whether altered TGFβ levels actually perturb ureter development. We therefore hypothesised that TGFβ has functional effects on ureter morphogenesis. Tgfb1, Tgfb2 and Tgfb3 transcripts coding for TGFβ ligands, as well as Tgfbr1 and Tgfbr2 coding for TGFβ receptors, were detected by quantitative polymerase chain reaction in embryonic mouse ureters collected over a wide range of stages. As assessed by in situ hybridisation and immunohistochemistry, the two receptors were detected in embryonic urothelia. Next, TGFβ1 was added to serum-free cultures of embryonic day 15 mouse ureters. These organs contain immature smooth muscle and urothelial layers and their in vivo potential to grow and acquire peristaltic function can be replicated in serum-free organ culture. Such organs therefore constitute a suitable developmental stage with which to define roles of factors that affect ureter growth and functional differentiation. Exogenous TGFβ1 inhibited growth of the ureter tube and generated cocoon-like dysmorphogenesis. RNA sequencing suggested that altered levels of transcripts encoding certain fibroblast growth factors (FGFs) followed exposure to TGFβ. In serum-free organ culture exogenous FGF10 but not FGF18 abrogated certain dysmorphic effects mediated by exogenous TGFβ1. To assess whether an endogenous TGFβ axis functions in developing ureters, embryonic day 15 explants were exposed to TGFβ receptor chemical blockade; growth of the ureter was enhanced, and aberrant bud-like structures arose from the urothelial tube. The muscle layer was attenuated around these buds, and peristalsis was compromised. To determine whether TGFβ effects were limited to one stage, explants of mouse embryonic day 13 ureters, more primitive organs, were exposed to exogenous TGFβ1, again generating cocoon-like structures, and to TGFβ receptor blockade, again generating ectopic buds. As for the mouse studies, immunostaining of normal embryonic human ureters detected TGFβRI and TGFβRII in urothelia. Collectively, these observations reveal unsuspected regulatory roles for endogenous TGFβ in embryonic ureters, fine-tuning morphogenesis and functional differentiation. Our results also support the hypothesis that the TGFβ up-regulation reported in ureter malformations impacts on pathobiology. Further experiments are needed to unravel the intracellular signalling mechanisms involved in these dysmorphic responses. © 2019 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Anaplastic lymphoma kinase 5A4 immunohistochemistry as a diagnostic assay in lung cancer: A Canadian reference testing center's results in population-based reflex testing. The presence of anaplastic lymphoma kinase (ALK) rearrangement predicts response to ALK tyrosine kinase inhibitor (TKI) therapy. Fluorescence in situ hybridization (FISH) was the initial reference standard to detect ALK rearrangement, but immunohistochemistry (IHC) using D5F3 has gained acceptance as an alternative diagnostic method. ALK IHC assays using other ALK antibodies have also been used as screening methods, but data supporting their utility as diagnostic tests have not been widely reported. Data from reflexive clinical ALK IHC test using the 5A4 clone concurrent with epidermal growth factor receptor (EGFR) mutation testing were analyzed. ALK IHC results were reported as negative (-), equivocal, or positive (+), with equivocal or positive staining validated by FISH break-apart probe testing. Treatment outcomes were reviewed for ALK IHC+ patients. Between 2012 and 2015, 146 (2.5%) cases were reported as ALK IHC+, 188 (3.2%) were reported as equivocal, and 5624 (94.4%) were reported as ALK IHC-. Of the ALK IHC+ cases, 131/143(91.6%) were ALK FISH+. Excluding 6 cases in which FISH was inconclusive or not performed, the positive predictive value was 95.6%, and the negative predictive value was 100%. Most specimens (n = 5352 [89.6%]) were also successfully tested for EGFR. Clinical responses to ALK TKIs were noted in 49 ALK IHC+ patients, with a median progression-free survival of 9.9 months. ALK 5A4 IHC can serve as a robust diagnostic test for ALK-rearranged lung cancer and is associated with treatment response and survival. Optimized tissue allocation resulted in high success rates of combined reflex EGFR and ALK testing."	"Defining a role for lung function associated gene GSTCD in cell homeostasis. Genome wide association (GWA) studies have reproducibly identified signals on chromosome 4q24 associated with lung function and COPD. GSTCD (Glutathione S-transferase C-terminal domain containing) represents a candidate causal gene in this locus, however little is currently known about the function of this protein. We set out to further our understanding of the role of GSTCD in cell functions and homeostasis using multiple molecular and cellular approaches in airway relevant cells. Recombinant expression of human GSTCD in conjunction with a GST activity assay did not identify any enzymatic activity for two GSTCD isoforms questioning the assignment of this protein to this family of enzymes. Protein structure analyses identified a potential methyltransferase domain contained within GSTCD, with these enzymes linked to cell viability and apoptosis. Targeted knockdown (siRNA) of GSTCD in bronchial epithelial cells identified a role for GSTCD in cell viability as proliferation rates were not altered. To provide greater insight we completed transcriptomic analyses on cells with GSTCD expression knocked down and identified several differentially expressed genes including those implicated in airway biology; fibrosis e.g. TGFBR1 and inflammation e.g. IL6R. Pathway based transcriptomic analyses identified an over-representation of genes related to adipogenesis which may suggest additional functions for GSTCD. These findings identify potential additional functions for GSTCD in the context of airway biology beyond the hypothesised GST activity and warrant further investigation."	"The alpha and ßeta in phase II trials hepatocellular carcinoma - A tale of more than radiological response? NA"	"Exosomes derived from mesenchymal stem cells reverse EMT via TGF-β1/Smad pathway and promote repair of damaged endometrium. Intrauterine adhesion (IUA) is one of the most serious complications in patients with endometrial repair disorder after injury. Currently, there is no effective treatment for IUA. Stem cell is the main candidate of new therapy, which functions mainly through paracrine mechanism. Stem-derived exosomes (Exo) play an important role in tissue injury. Here, we mainly aim to study the effect of bone marrow mesenchymal stem cell (BMSC)-derived Exo on repairing endometrium of IUA animal models and its effect on TGF-β1 induced EMT in endometrial epithelial cells (EECs). Totally, 64 female rabbits were randomly divided into Sham operation group, model group, BMSC treatment group, and Exo treatment group. EMT in EECs was induced by TGF-β1. Then, EECs were treated with Exo (25 μg/ml, 50 μg/ml, 100 μg/ml) for 24 h. HE staining and Masson staining were used to evaluate the changes in glandular number and fibrosis area. The expression levels of CK19 and VIM were detected by immunohistochemistry. Western blotting was used to detect the expression of CK19, VIM, FSP-1, E-cadherin, TGF-β1, TGF-β1R, Smad 2, and P-Smad 2. RT-PCR was used to detect mRNA expression levels of CK19, VIM, FSP-1, E-cadherin, TGF-β1, TGF-β1R, and Smad 2. Compared with the model group, the number of endometrial glands was significantly increased and endometrial fibrosis area was significantly decreased in BMSC and Exo groups (P &lt; 0.05). CK19 level significantly increased whereas VIM level significantly decreased after treatment of BMSCs and Exo (P &lt; 0.05). Additionally, the expressions of TGF-β1, TGF-β1R, and Smad2 mRNA were all significantly decreased after BMSC and Exo treatment (P &lt; 0.05). Besides, phosphorylation levels of TGF-β1, TGF-β1R, and Smad2 were also significantly decreased in BMSC and Exo treatment groups (P &lt; 0.05). Furthermore, there was no significant difference between BMSC and Exo treatment groups (P &gt; 0.05). EMT was induced in EECs by 60 ng/ml TGF-β1 for 24 h. After Exo treatment for 24 h, mRNA expressions of CK-19 and E-cadherin increased, while those of VIM, FSP-1, TGF-β1, and Smad2 decreased. Additionally, protein expressions of CK-19 and E-cadherin increased, while those of VIM, FSP-1, TGF-β1, Smad2, and P-Smad2 decreased. BMSC-derived Exo is involved in the repair of injured endometrium, with similar effect to that of BMSC, and can reverse EMT in rabbit EECs induced by TGF-β1. BMSC-derived Exo may promote endometrial repair by the TGF-β1/Smad signaling pathway."	"ssc-miR-204 regulates porcine preadipocyte differentiation and apoptosis by targeting TGFBR1 and TGFBR2. MicroRNAs (miRNAs) take part in a variety of biological processes by regulating target genes. Transforming growth factor β receptor 1 (TGFBR1) and TGFBR2 are crucial members of the TGF-β family and are serine/threonine kinase receptors. The aim of this study was to explore the functions of ssc-miR-204 in porcine preadipocyte differentiation and apoptosis with regard to the TGFβ/Smad pathway. We identified miRNAs predicted to target TGFBR1 and TGFBR2 using a database and selected ssc-miR-204 as a candidate miRNA. ssc-miR-204 overexpression dramatically reduced the levels of TGFBR1 and TGFBR2. However, after transfection with ssc-miR-204 inhibitor, TGFBR1 and TGFBR2 levels were dramatically increased. ssc-miR-204 overexpression dramatically promoted porcine preadipocyte differentiation and apoptosis. After transfection with ssc-miR-204 inhibitor, porcine preadipocyte differentiation and apoptosis were dramatically inhibited. After transfection with ssc-miR-204 mimics, Smad2, Smad3, Smad4, p-Smad2, and p-Smad3 protein levels significantly decreased, and adipogenesis was regulated by inhibiting the TGF-β/Smad3 signaling pathway. Taken together, these results verified that ssc-miR-204 regulates porcine preadipocyte differentiation and apoptosis by targeting TGFBR1 and TGFBR2."	"Adipocytes sensitize melanoma cells to environmental TGF-β cues by repressing the expression of miR-211. Transforming growth factor-β (TGF-β) superfamily members are critical signals in tissue homeostasis and pathogenesis. Melanoma grows in the epidermis and invades the dermis before metastasizing. This disease progression is accompanied by increased sensitivity to microenvironmental TGF-β. Here, we found that skin fat cells (adipocytes) promoted metastatic initiation by sensitizing melanoma cells to TGF-β. Analysis of melanoma clinical samples revealed that adipocytes, usually located in the deeper hypodermis layer, were present in the upper dermis layer within proximity to in situ melanoma cells, an observation that correlated with disease aggressiveness. In a coculture system, adipocytes secreted the cytokines IL-6 and TNF-α, which induced a proliferative-to-invasive phenotypic switch in melanoma cells by repressing the expression of the microRNA miR-211. In a xenograft model, miR-211 exhibited a dual role in melanoma progression, promoting cell proliferation while inhibiting metastatic spread. Bioinformatics and molecular analyses indicated that miR-211 directly targeted and repressed the translation of TGFBR1 mRNA, which encodes the type I TGF-β receptor. Hence, through this axis of cytokine-mediated repression of miR-211, adipocytes increased the abundance of the TGF-β receptor in melanoma cells, thereby enhancing cellular responsiveness to TGF-β ligands. The induction of TGF-β signaling, in turn, resulted in a proliferative-to-invasive phenotypic switch in cultured melanoma cells. Pharmacological inhibition of TGF-β prevented these effects. Our findings further reveal a molecular link between fat cells and metastatic progression in melanoma that might be therapeutically targeted in patients."	"Furin inhibition prevents hypoxic and TGFβ-mediated blood-brain barrier disruption. Hypoxic blood-brain barrier (BBB) dysfunction is a common feature of CNS diseases however mechanisms underlying barrier disturbance are still largely unknown. This study investigated the role of transforming growth factor β (TGFβ), a cytokine known to induce expression of the proprotein convertase Furin, in hypoxia-mediated barrier compromise. We show that exposure of brain endothelial cells (ECs) to hypoxia (1% O2) rapidly stimulates their migration. Additional exogenous TGFβ (0.4 nM) exposure potentiated this effect and increased Furin expression in a TGFβ type I receptor activin-like kinase 5 (ALK5) - dependent manner (prevented by 10 μM SB431542). Furin inhibition prevented hypoxia-induced EC migration and blocked TGFβ-induced potentiation suggesting existence of a feedback loop. TGFβ and Furin were also critical for hypoxia-induced BBB dysfunction. TGFβ treatment aggravated hypoxia-induced BBB permeability but ALK5 or Furin blockade reversed injury-induced permeability changes. Thus during insult Furin compromises endothelial integrity by mediating the effects of TGFβ. Targeting the Furin or ALK5 pathway may offer novel therapeutic strategies for improving BBB stability and CNS function during disease."	"CCN5 Reduces Ligamentum Flavum Hypertrophy by Modulating the TGF-β Pathway. Ligamentum flavum hypertrophy (LFH) is the most important component of lumbar spinal canal stenosis. Although the pathophysiology of LFH has been extensively studied, no method has been proposed to prevent or treat it. Since the transforming growth factor-β (TGF-β) pathway is known to be critical in LFH pathology, we investigated whether LFH could be prevented by blocking or modulating the TGF-β mechanism. Human LF cells were used for the experiments. First, we created TGF-β receptor 1 (TGFBR1) knock out (KO) cells with CRISPR (clustered regularly interspaced short palindromic repeats)/Cas9 biotechnology and treated them with TGF-β1 to determine the effects of blocking the TGF-β pathway. Subsequently, we studied the effect of CCN5, which has recently been proposed to modulate the TGF-β pathway. To assess the predisposition toward fibrosis, α-smooth muscle actin (αSMA), fibronectin, collagen-1, collagen-3, and CCN2 were evaluated with quantitative real-time polymerase chain reaction, western blotting, and immunocytochemistry. The TGFBR1 KO LF cells were successfully constructed with high KO efficiency. In wild-type (WT) cells, treatment with TGF-β1 resulted in the overexpression of the messenger RNA (mRNA) of fibrosis-related factors. However, in KO cells, the responses to TGF-β1 stimulation were significantly lower. In addition, CCN5 and TGF-β1 co-treatment caused a notable reduction in mRNA expression levels compared with TGF-β1 stimulation only. The αSMA protein expression increased with TGF-β1 but decreased with CCN5 treatment. TGF-β1 induced LF cell transdifferentiation from fibroblasts to myofibroblasts. However, this cell transition dramatically decreased in the presence of CCN5. In conclusion, CCN5 could prevent LFH by modulating the TGF-β pathway. © 2019 The Authors. Journal of Orthopaedic Research<sup>®</sup> published by Wiley Periodicals, Inc. on behalf of Orthopaedic Research Society. J Orthop Res 37:2634-2644, 2019."	"Transforming growth factor-β is involved in maintaining oocyte meiotic arrest by promoting natriuretic peptide type C expression in mouse granulosa cells. Natriuretic peptide type C (NPPC) secreted by mural granulosa cells (MGCs) maintains oocyte meiotic arrest via the activation of guanylyl cyclase-linked natriuretic peptide receptor 2 (NPR2). Here, we investigated the effect of transforming growth factor (TGF)-β on NPPC expression in MGCs and oocyte maturation. TGF-β ligands (TGFB1 and TGFB3, but not TGFB2) and receptors (TGFBR1 and TGFBR2) were predominantly expressed in MGCs. The activation of the follicle-stimulating hormone (FSH) receptor by FSH/equine chorionic gonadotropin (eCG) increased the levels of TGFB1, TGFBR2, and TGF-β downstream SMAD proteins in MGCs, which were decreased following the activation of the luteinizing hormone (LH) receptor by human chorionic gonadotropin (hCG). TGF-β significantly increased the gene and protein levels of NPPC in cultured MGCs through SMAD3 binding to Nppc promoter regions. In the presence of FSH, TGF-β further increased NPPC levels and inhibited oocyte meiotic resumption of cumulus-oocyte complexes (COCs). Moreover, Tgfbr2-specific depletion in granulosa cells using Fshr-Cre mice reduced NPPC mRNA and protein levels, resulting in the weak maintenance of oocyte meiotic arrest within large antral follicles. Tgfbr2 depletion also impaired follicle development, ovulation, and female fertility. Taken together, TGF-β-promoted NPPC in MGCs is involved in maintaining oocyte meiotic arrest. FSH and LH could regulate NPPC levels in MGCs via TGF-β and then control the process of oocyte meiosis."	"Novel pathogenic TGFBR1 and SMAD3 variants identified after cerebrovascular events in adult patients with Loeys-dietz syndrome. Loeys-Dietz syndrome (LDS) is an autosomal dominant connective tissue disorder due to heterozygous pathogenic variants in transforming growth factor beta (TGFβ) signaling-related genes. LDS types 1-6 are distinguished depending on the involved gene. LDS is characterized by multiple arterial aneurysms and dissections in addition to variable neurological and systemic manifestations. Patient 1: a 68-year-old man was admitted due to an aphasic transient ischemic attack (TIA). Brain CT-scan and CT angiography revealed a chronic and asymptomatic right vertebral artery dissection. Stroke diagnostic panel was unremarkable. His history showed mild stroke familiarity. At age of 49, he was treated for dissecting-aneurysm of the ascending aorta and started anticoagulation therapy. Seven years later, he underwent surgery for dissecting aneurysm involving aortic arch, descending-thoracic aorta, left subclavian artery, and both iliac arteries. Patient 2: a 47-year-old man presented a left hemiparesis due to right middle cerebral artery (MCA) and anterior cerebral artery (ACA) occlusion caused by right internal carotid artery (ICA) dissection after sport activity. Despite i.v. thrombolysis and mechanical thrombectomy, he developed malignant cerebral infarction and underwent decompressive hemicraniectomy. Digital subtraction angiography showed bilateral carotid and vertebral kinking, aneurysmatic dilatation on both common iliac arteries and proximal ectasia of the descending aorta. His father and his uncle died because of an ischemic stroke and a cerebral aneurysm rupture with a subarachnoid hemorrhage (SAH), respectively. in both cases, considering the family history and the multiple dissections and aneurysms, LDS molecular analysis was performed. In patient 1, the novel NM_005902.3 (SMAD3): c.840T &gt; G; p.(Asn280Lys) likely pathogenic variant was identified, thus leading to a diagnosis of LDS type 3. In patient 2, the novel NM_004612.2 (TGFBR1): c.1225T &gt; G; p.(Trp409Gly) likely pathogenic variant was found, allowing for a diagnosis of LDS type 1. LDS is characterized by genetic and clinical variability. Our report suggests that this genetically-determined connective tissue disorder is probably underestimated, as it might firstly show up with cerebrovascular events, although mild systemic manifestations. These findings could lead to identify people at risk of severe vascular complications (i.e., through genetic consult on asymptomatic relatives), in order to perform adequate vascular assessments and follow-up to prevent complications such as stroke."	"NLRP3 upregulation in A549 cells co-cultured with THP-1 macrophages under hypoxia via deregulated TGF-β signaling. NOD-like receptor family, pyrin domain-containing 3 (NLRP3) is one of the key components of the inflammasome. NLRP3 also participates in the regulation of fibrosis independent of the inflammasome. In this study, we analyzed the mechanism of upregulation of NLRP3 expression in A549 cells co-cultured with THP-1 macrophages under hypoxia. Upregulation of NLRP3 was suppressed after treatment with inhibitors of TGF-β receptor or p38, but not with inhibitors of the IL-1 receptor and SMAD3. The analysis of downstream molecules of TGF-β signaling in A549 cells co-cultured with THP-1 macrophages under hypoxia showed that TGFBR1 was upregulated and SMAD7 was downregulated. Taken together, these results suggest that the upregulation of NLRP3 in A549 cells is associated with deregulated TGF-β signaling and that the interaction between NLRP3 and TGF-β signaling plays a fundamental role in fibrogenesis."	"A functional variant in the miR-142 promoter modulating its expression and conferring risk of Alzheimer disease. Noncoding RNAs have been widely recognized as essential mediators of gene regulation. However, in contrast to protein-coding genes, much less is known about the influence of noncoding RNAs on human diseases. Here we examined the association of genetic variants located in primary microRNA sequences and long noncoding RNAs (lncRNAs) with Alzheimer disease (AD) by leveraging data from the largest genome-wide association meta-analysis of late-onset AD. Variants annotated to 5 miRNAs and 10 lncRNAs (in seven distinct loci) exceeded the Bonferroni-corrected significance threshold (p &lt; 1.02 × 10<sup>-6</sup> ). Among these, a leading variant (rs2526377:A&gt;G) at the 17q22 locus annotated to two noncoding RNAs (MIR142 and BZRAP1-AS) was significantly associated with a reduced risk of AD and fulfilled predefined criteria for being a functional variant. Our functional genomic analyses revealed that rs2526377 affects the promoter activity and decreases the expression of miR-142. Moreover, differential expression analysis by RNA-Seq in human iPSC-derived neural progenitor cells and the hippocampus of miR-142 knockout mice demonstrated multiple target genes of miR-142 in the brain that are likely to be involved in the inflammatory and neurodegenerative manifestations of AD. These include TGFBR1 and PICALM, of which their derepression in the brain due to reduced expression levels of miR-142-3p may reduce the risk of AD."	"Novel oral transforming growth factor-β signaling inhibitor potently inhibits postsurgical adhesion band formation. Here, we have investigated the therapeutic potency of EW-7197, a transforming growth factor-β type I receptor kinase inhibitor, against postsurgical adhesion band formation. Our results showed that this pharmacological inhibitor prevented the frequency and the stability of adhesion bands in mice model. We have also shown that downregulation of proinflammatory cytokines, reduce submucosal edema, attenuation of proinflammatory cell infiltration, inhibition of oxidative stress, decrease in excessive collagen deposition, and suppression of profibrotic genes at the site of surgery are some of the mechanisms by which EW-7197 elicits its protective responses against adhesion band formation. These results clearly suggest that EW-7197 has novel therapeutic properties against postsurgical adhesion band formation with clinically translational potential of inhibiting key pathological responses of inflammation and fibrosis in postsurgery patients."	"The TGFβ type I receptor TGFβRI functions as an inhibitor of BMP signaling in cartilage. The type I TGFβ receptor TGFβRI (encoded by Tgfbr1) was ablated in cartilage. The resulting Tgfbr1<sup> Col2 </sup> mice exhibited lethal chondrodysplasia. Similar defects were not seen in mice lacking the type II TGFβ receptor or SMADs 2 and 3, the intracellular mediators of canonical TGFβ signaling. However, we detected elevated BMP activity in Tgfbr1<sup> Col2 </sup> mice. As previous studies showed that TGFβRI can physically interact with ACVRL1, a type I BMP receptor, we generated cartilage-specific Acvrl1 (Acvrl1<sup> Col2 </sup> ) and Acvrl1/Tgfbr1 (Acvrl1/Tgfbr1<sup> Col2 </sup>) knockouts. Loss of ACVRL1 alone had no effect, but Acvrl1/Tgfbr1<sup> Col2 </sup> mice exhibited a striking reversal of the chondrodysplasia seen in Tgfbr1<sup> Col2 </sup> mice. Loss of TGFβRI led to a redistribution of the type II receptor ACTRIIB into ACVRL1/ACTRIIB complexes, which have high affinity for BMP9. Although BMP9 is not produced in cartilage, we detected BMP9 in the growth plate, most likely derived from the circulation. These findings demonstrate that the major function of TGFβRI in cartilage is not to transduce TGFβ signaling, but rather to antagonize BMP signaling mediated by ACVRL1."	"Cyclophilin A contributes to aortopathy induced by postnatal loss of smooth muscle TGFBR1. Recent recognition that TGF-β signaling disruption is involved in the development of aortic aneurysms has led to renewed investigations into the role of TGF-β biology in the aortic wall. We previously found that the type I receptor of TGF-β (TGFBR2) receptor contributes to formation of ascending aortic aneurysms and dissections (AADs) induced by smooth muscle cell (SMC)-specific, postnatal deletion of Tgfbr1 (Tgfbr1<sup>iko</sup>). Here, we aimed to decipher the mechanistic signaling pathway underlying the pathogenic effects of TGFBR2 in this context. Gene expression profiling demonstrated that Tgfbr1<sup>iko</sup> triggers an acute inflammatory response in developing AADs, and Tgfbr1<sup>iko</sup> SMCs express an inflammatory phenotype in culture. Comparative proteomics profiling and mass spectrometry revealed that Tgfbr1<sup>iko</sup> SMCs respond to TGF-β1 stimulation via robust up-regulation of cyclophilin A (CypA). This up-regulation is abrogated by inhibition of TGFBR2 kinase activity, small interfering RNA silencing of Tgfbr2 expression, or inhibition of SMAD3 activation. In mice, Tgfbr1<sup>iko</sup> rapidly promotes CypA production in SMCs of developing AADs, whereas treatment with a CypA inhibitor attenuates aortic dilation by 56% (P = 0.003) and ameliorates aneurysmal degeneration (P = 0.016). These protective effects are associated with reduced aneurysm-promoting inflammation. Collectively, these results suggest a novel mechanism, wherein loss of type I receptor of TGF-β triggers promiscuous, proinflammatory TGFBR2 signaling in SMCs, thereby promoting AAD formation.-Zhou, G., Liao, M., Wang, F., Qi, X., Yang, P., Berceli, S. A., Sharma, A. K., Upchurch, G. R., Jr., Jiang, Z. Cyclophilin A contributes to aortopathy induced by postnatal loss of smooth muscle TGFBR1."	"Gene expression of growth factors with angiogenic potential in human dental pulp tissue from teeth with complete and incomplete root development. To quantify the expression of angiogenic growth factors (ANG2, VEGFA, TGFß1) and their corresponding receptors (VEGFR1, VGFR2, NRP1 and TGFßR1) in human dental pulps from extracted third molars with complete and incomplete root development. Fifty-six dental pulp samples obtained from freshly extracted human third molars were divided equally into two groups according to their stage of root development; 28 third molars with complete root development and 28 third molars with incomplete root development. All samples were processed and total RNA was extracted, cDNA was then synthetized for each sample and the target genes expression profiles for ANG2, VEGFA, VEGFR1, VEGFR2, NRP1, TGFß1 and TGFßR1 were obtained by RT2-PCR. The data was analysed with a Student's t-test to compare the replicate ∆∆Ct values for each gene. Teeth with incomplete root development were associated with a significantly greater gene expression of TGFβR1 (P = 0.03), whereas in teeth with complete root development the genes that had significantly greater expression were VEGFA (P = 0.04). The angiogenic growth factors (ANG2, VEGFA, TGFβ1) and their receptors (NRP1, VEGFR1, VEGFR2 and TGFßR1) were expressed in pulps of teeth with complete and incomplete root development measured by RT2-PCR, with TGFBR1 genes being significantly different in teeth with incomplete root development and VEGFA genes in teeth with complete root development."	"TGF-β1 induced up-regulation of B1 kinin receptor promotes antifibrotic activity in rat cardiac myofibroblasts. Cardiac myofibroblast (CMF) are non-muscle cardiac cells that play a crucial role in wound healing and in pathological remodeling. These cells are mainly derived of cardiac fibroblast (CF) differentiation mediated by TGF-β1. Evidence suggests that bradykinin (BK) regulates cardiac fibroblast function in the heart. Both B1 and B2 kinin receptors (B1R and B2R, respectively) mediate the biological effects of kinins. We recently showed that both receptors are expressed in CMF and its stimulation decreases collagen secretion. Whether TGF-β1 regulates B1R and B2R expression, and how these receptors control antifibrotic activity in CMF remains poorly understood. In this work, we sought to study, the regulation of B1R expression in cultured CMF mediated by TGF-β1, and the molecular mechanisms involved in B1R activation on CMF intracellular collagen type-I levels. Cardiac fibroblast-primary culture was obtained from neonatal rats. Hearts were digested and CFs were attached to dishes and separated from cardiomyoctes. CMF were obtained from CF differentiation with TGF-β1 5 ng/mL. CF and CMF were treated with B1R and B2R agonists and with TGF-β1 at different times and concentrations, in the presence or absence of chemical inhibitors, to evaluate signaling pathways involved in B1R expression, collagen type-I and prostacyclin levels. B1R and collagen type-I levels were evaluated by western blot. Prostacyclin levels were quantified by an ELISA kit. TGF-β1 increased B1R expression via TGFβ type I receptor kinase (ALK5) activation and its subsequent signaling pathways involving Smad2, p38, JNK and ERK1/2 activation. Moreover, in CMF, the activation of B1R and B2R by their respective agonists, reduced collagen synthesis. This effect was mediated by the canonical signaling pathway; phospholipase C (PLC), protein kinase C (PKC), phospholipase A2 (PLA2), COX-2 activation and PGI2 secretion and its autocrine effect. TGF-β1 through ALK5, Smad2, p38, JNK and ERK1/2 increases B1R expression; whereas in CMF, B1R and B2R activation share common signaling pathways for reducing collagen synthesis."	"PTPN3 acts as a tumor suppressor and boosts TGF-β signaling independent of its phosphatase activity. TGF-β controls a variety of cellular functions during development. Abnormal TGF-β responses are commonly found in human diseases such as cancer, suggesting that TGF-β signaling must be tightly regulated. Here, we report that protein tyrosine phosphatase non-receptor 3 (PTPN3) profoundly potentiates TGF-β signaling independent of its phosphatase activity. PTPN3 stabilizes TGF-β type I receptor (TβRI) through attenuating the interaction between Smurf2 and TβRI. Consequently, PTPN3 facilitates TGF-β-induced R-Smad phosphorylation, transcriptional responses, and subsequent physiological responses. Importantly, the leucine-to-arginine substitution at amino acid residue 232 (L232R) of PTPN3, a frequent mutation found in intrahepatic cholangiocarcinoma (ICC), disables its role in enhancing TGF-β signaling and abolishes its tumor-suppressive function. Our findings have revealed a vital role of PTPN3 in regulating TGF-β signaling during normal physiology and pathogenesis."	"Design, synthesis, and antifibrosis evaluation of 4-(benzo-[c][1,2,5]thiadiazol-5-yl)-3(5)-(6-methyl- pyridin-2-yl)pyrazole and 3(5)-(6-methylpyridin- 2-yl)-4-(thieno-[3,2,-c]pyridin-2-yl)pyrazole derivatives. Six series of 4-(benzo[c][1,2,5]thiadiazol-5-yl)-3(5)-(6-methylpyridin-2-yl)- pyrazoles 18a-d, 19a-d, 22a-d and 3(5)-(6-methylpyridin-2-yl)-4-(thieno[3,2,-c]- pyridin-2-yl)pyrazoles 20a-d, 21a-d, 23c, 23d have been synthesized and evaluated for their activin receptor-like kinase 5 (ALK5) and p38α mitogen activated protein (MAP) kinase inhibitory activities in enzymatic assays. Among these compounds, the most active compound, 22c, inhibited ALK5 phosphorylation with an IC50 value of 0.030 μM in the enzymatic assay. Compound 22c showed four-fold more potent activity against ALK5 kinase than the clinical candidate, compound LY-2157299. The selectivity index of 22c against p38α MAP kinase is 235, which is much higher than that of LY-2157299 (4) and equally selective to that of EW-7197 (218). Compound 22c effectively suppressed protein and mRNA expression of collagen I and α-SMA in TGF-β-induced LX-2 human hepatic stellate cell (HSC), this result shows that compound 22c has the ability to inhibit the activation of HSC. Compound 22c is expected to be a preclinical candidate for the treatment of hepatic fibrosis."	"Mechanisms of PAR-1 mediated kinase receptor transactivation: Smad linker region phosphorylation. Protease activated receptors (PARs) transactivate both epidermal growth factor receptors (EGFR) and transforming growth factor (TGF)-β receptors (TGFBR1) in vascular smooth muscle leading to the increased expression of genes (CHST11 and CHSY1) which are rate limiting for the enzymes that mediate hyperelongation of glycosaminoglycan (GAG) chains on the lipid-binding proteoglycan, biglycan. This is an excellent model to investigate mechanisms of transactivation as the processes are biochemically distinct. EGFR transactivation is dependent on the classical matrix metalloprotease (MMP) based triple membrane bypass mechanism and TGFBR1 transactivation is dependent on Rho/ROCK signalling and integrins. We have shown that all kinase receptor signalling is targeted towards phosphorylation of the linker region of the transcription factor, Smad2. We investigated the mechanisms of thrombin mediated kinase receptor transactivation signalling using anti-phospho antibodies and Western blotting and gene expression by RT-PCR. Thrombin stimulation of phospho-Smad2 (Ser 245/250/255) and of phospho-Smad2(Thr220) via EGFR transactivation commences quickly and extends out to at least 4 h whereas transactivation via TGFBR1 is delayed for 120 min but also persists for at least 4 h. Signalling of thrombin stimulated Smad linker region phosphorylation is approximately equally inhibited by the MMP inhibitor, GM6001 and the ROCK inhibitor, Y27632, and similarly expression of CHST11 and CHSY1 is approximately equally inhibited by GM6001 and Y27632. The data establishes Smad linker region phosphorylation as a central target of all transactivation signalling of GAG gene expression and thus an upstream kinase may be a target to prevent all transactivation signalling and its pathophysiological consequences."	"Herring roe oil supplementation alters microglial cell gene expression and reduces peripheral inflammation after immune activation in a neonatal piglet model. Neonatal brain development can be disrupted by infection that results in microglial cell activation and neuroinflammation. Studies indicate that polyunsaturated fatty acids (PUFAs) and their metabolites can resolve inflammation. It is not known if dietary PUFA increases lipid metabolites in brain or reduces neuroinflammation in neonates. We hypothesized that dietary PUFAs might suppress neuroinflammation by inhibiting pro-inflammatory cytokine over-production and promoting inflammatory resolution in the periphery and brain. Piglets were obtained on postnatal day (PD) 2 and randomly assigned to herring roe oil (HRO) or control (CON) diet. HRO was included at 2 g/kg powdered diet. HRO increased DHA levels in occipital lobe and the DHA to arachidonic acid (ARA) ratio in hippocampal tissue. HRO decreased ARA metabolites in occipital lobe. HRO failed to attenuate microglial pro-inflammatory cytokine production ex vivo. HRO did not affect fever or circulating resolvin D1 levels. HRO decreased circulating neutrophils and liver inflammatory gene expression, but increased resolution marker gene expression in liver post LPS. HRO upregulated CXCL16, TGFBR1, and C1QA in microglial cells. HRO supplementation exerted beneficial effects on inflammation in the periphery, but further studies are needed to evaluate the specific effects of omega-3 supplementation on microglial cell physiology in the neonate."	"Breast Cancer Stem Cells with Tumor- versus Metastasis-Initiating Capacities Are Modulated by TGFBR1 Inhibition. Cancer stem cells (CSCs) are defined by their ability to regenerate a tumor upon transplantation. However, it is not yet clear whether tumors contain a single CSC population or different subsets of cells with mixed capacities for initiating primary and secondary tumors. Using two different identification strategies, we studied the overlap between metastatic stem cells and tumor-initiating cells (TICs) in the MMTV-PyMT model. Our results show that in the MMTV-PyMT model, Lin<sup>-</sup>CD90<sup>-</sup>ALDH<sup>high</sup> cells retained a high tumor-initiating potential (TIP) in orthotopic transplants, in contrast to Lin<sup>-</sup>CD24<sup>+</sup>CD90<sup>+</sup>, which retained higher metastatic capacity. Interestingly, suppression of TGFβ signaling increased TIC numbers. We here describe the existence of distinct populations of CSCs with differing capacities to initiate tumors in the primary or the secondary site. Inhibiting TGFβ signaling shifts the balance toward the former, which may have unanticipated implications for the therapeutic use of TGFβ/TGFBR1 inhibitors."	"RepSox, a small molecule inhibitor of the TGFβ receptor, induces brown adipogenesis and browning of white adipocytes. Unlike white adipose tissue (WAT), brown adipose tissue (BAT) is mainly responsible for energy expenditure via thermogenesis by uncoupling the respiratory chain. Promoting the differentiation of brown fat precursor cells and the browning of white fat have become a research hotspot for the treatment of obesity and associated metabolic diseases. Several secreted factors and a number of small molecules have been found to promote brown adipogenesis. Here we report that a single small-molecule compound, RepSox, is sufficient to induce adipogenesis from mouse embryonic fibroblasts (MEFs) in fibroblast culture medium. RepSox is an inhibitor of the transforming growth factor-beta receptor I (TGF-β-RI), other inhibitors of TGF-β pathway such as SB431542, LY2157299, A83-01, and Tranilast are also effective in inducing adipogenesis from MEFs. These adipocytes express brown adipocyte-specific transcription factors and thermogenesis genes, and contain a large number of mitochondria and have a high level of mitochondrial respiratory activity. More interestingly, RepSox has also been found to promote the differentiation of the brown fat precursor cells and induce browning of the white fat precursor cells. These findings suggest that inhibitors of TGF-β signaling pathway might be developed as new therapeutics for obesity and type 2 diabetes."	"ID3 mediates the TGF-β1-induced suppression of matrix metalloproteinase-1 in human granulosa cells. In the mammalian ovary, matrix metalloproteinase-1 (MMP1) is expressed in growing ovarian follicles, and MMP1-mediated extracellular matrix (ECM) remodeling plays a functional role in regulating the formation of corpus luteum. Transforming growth factor-β1 (TGF-β1) is an intraovarian growth factor that acts as a negative regulator of luteinization and progesterone production in human granulosa-lutein (hGL) cells. At present, whether TGF-β1 regulates the expression of MMP1 and thus affects ECM remodeling during corpus luteum formation remains largely unknown. The aim of this study was to investigate the effects of TGF-β1 and the molecular mechanisms by which it regulates the expression of MMP1 in immortalized human granulosa cells lines (SVOG) and primary hGL cells (obtained from consenting patients undergoing IVF treatment). We used inhibition approaches including a competitive antagonist for endogenous TGF-β type II receptor, pharmacological inhibitors (SB431542 and dorsomorphin), and specific small interfering RNA-targeted knockdown of ALK5 type I receptor and SMAD4 to demonstrate that TGF-β1 downregulates the expression and production of MMP1 via a TβRII/ALK5-mediated SMAD-dependent signaling pathway in hGL cells. Additionally, our results show that the suppressive effect of TGF-β1 on the expression of MMP1 is mediated by a transcription factor, the inhibitor of differentiation 3 (ID3) protein. Our findings provide insights into the molecular interactions and mechanisms of TGF-β1 and ID3 during the regulation of MMP1 in hGL cells."	"Cigarette Smoke Induces the Risk of Metabolic Bone Diseases: Transforming Growth Factor Beta Signaling Impairment via Dysfunctional Primary Cilia Affects Migration, Proliferation, and Differentiation of Human Mesenchymal Stem Cells. It is well established that smoking has detrimental effects on bone integrity and is a preventable risk factor for metabolic bone disorders. Following orthopedic surgeries, smokers frequently show delayed fracture healing associated with many complications, which results in prolonged hospital stays. One crucial factor responsible for fracture repair is the recruitment and differentiation of mesenchymal stem cells (MSCs) at early stages, a mechanism mediated by transforming growth factor β (TGF-β). Although it is known that smokers frequently have decreased TGF-β levels, little is known about the actual signaling occurring in these patients. We investigated the effect of cigarette smoke on TGF-β signaling in MSCs to evaluate which step in the pathway is affected by cigarette smoke extract (CSE). Single-cell-derived human mesenchymal stem cell line (SCP-1 cells) were treated with CSE concentrations associated with smoking up to 20 cigarettes a day. TGF-β signaling was analyzed using an adenovirus-based reporter assay system. Primary cilia structure and downstream TGF-β signaling modulators (Smad2, Smad3, and Smad4) were analyzed by Western blot and immunofluorescence staining. CSE exposure significantly reduced TGF-β signaling. Intriguingly, we observed that protein levels of phospho-Smad2/3 (active forms) as well as nuclear translocation of the phospho-Smad3/4 complex decreased after CSE exposure, phenomena that affected signal propagation. CSE exposure reduced the activation of TGF-β modulators under constitutive activation of TGF-β receptor type I (ALK5), evidencing that CSE affects signaling downstream of the ALK5 receptor but not the binding of the cytokine to the receptor itself. CSE-mediated TGF-β signaling impaired MSC migration, proliferation, and differentiation and ultimately affected endochondral ossification. Thus, we conclude that CSE-mediated disruption of TGF-β signaling in MSCs is partially responsible for delayed fracture healing in smokers."	"Immune-related somatic mutation genes are enriched in PDACs with diabetes. The bidirectional interaction between pancreatic cancer (PanCa) and diabetes has been confirmed by epidemiological studies, but until now, the underlying molecular mechanisms for this connection is not fully understood yet. Here, we analyzed the clinical and genomic data of 26 pancreatic ductal adenocarcinoma (PDAC) patients without diabetes, and six diabetic PDAC patients, whose tumors underwent targeted next-generation sequencing (551 cancer-related genes included). Ingenuity Pathway Analysis (IPA) was performed to investigate genetic alterations and biological consequences associated with PDACs with or without diabetes. We identified 345 somatic mutations of 153 genes in test cohort and a positive association between diabetes duration and somatic mutation burden. KRAS, TP53, and SMAD4 were the top3 commonly mutated genes at a similar frequency compared to the Cancer Genome Atlas (TCGA) data. Several novel but infrequent mutations in other genes (MDC1, PRB2, and PRB4) were also found. Besides, 13 mutated genes (PIK3CD, SNCAIP, IRF4, HLA-A, NOTCH4, PIM1, ETV6, B2M, CD70, PRDM14, TGFBR1, FLT1, and PARP2) were uniquely found in the diabetic group, mainly involved in immune-related pathways. Further targeted sequencing of these genes in an independent validation cohort (n = 50) revealed significant enrichment in the diabetic group (n = 18, P = 2.6964E-08). Long-standing diabetes (≥3-year duration) may induce increasing somatic mutations with time, facilitating tumor initiation. Gene mutants associated with immune-related pathways could be used to distinguish the diabetic PDAC patients from the non-diabetic cases and allow more selective treatment."	"Lineage-specific exosomes promote the odontogenic differentiation of human dental pulp stem cells (DPSCs) through TGFβ1/smads signaling pathway via transfer of microRNAs. Exosomes derived from dental pulp stem cells (DPSCs) can be used as biomimetic tools to induce odontogenic differentiation of stem cells, but the regulatory mechanisms and functions of exosome-encapsulated microRNAs are still unknown. The present study aimed to clarify the role of microRNAs contained in the exosomes derived from human DPSCs and their potential signaling cascade in odontogenic differentiation. Exosomes were isolated from human DPSCs cultured undergrowth and odontogenic differentiation conditions, named UN-Exo and OD-Exo, respectively. The microRNA sequencing was performed to explore the microRNA profile contained in UN-Exo and OD-Exo. Pathway analysis was taken to detect enriched pathways associated with the predicted target genes of microRNAs. The regulatory roles of a highly expressed microRNA in OD-Exo were investigated through its inhibition or overexpression (miRNA inhibitors and miRNA mimics). Automated western blot was used to identify the function of exosomal microRNA and the roles of TGFβ1/smads pathway in odontogenic differentiation of DPSCs. A luciferase reporter gene assay was used to verify the direct target gene of exosomal miR-27a-5p. Endocytosis of OD-Exo triggered odontogenic differentiation of DPSCs by upregulating DSP, DMP-1, ALP, and RUNX2 proteins. MicroRNA sequencing showed that 28 microRNAs significantly changed in OD-Exo, of which 7 increased and 21 decreased. Pathway analysis showed genes targeted by differentially expressed microRNAs were involved in multiple signal transductions, including TGFβ pathway. 16 genes targeted by 15 differentially expressed microRNAs were involved in TGFβ signaling. Consistently, automated western blot found that OD-Exo activated TGFβ1 pathway by upregulating TGFβ1, TGFR1, p-Smad2/3, and Smad4 in DPSCs. Accordingly, once the TGFβ1 signaling pathway was inhibited by SB525334, protein levels of p-Smad2/3, DSP, and DMP-1 were significantly decreased in DPSCs treated with OD-Exo. MiR-27a-5p was expressed 11 times higher in OD-Exo, while miR-27a-5p promoted odontogenic differentiation of DPSCs and significantly upregulated TGFβ1, TGFR1, p-Smad2/3, and Smad4 by downregulating the inhibitory molecule LTBP1. The microRNA expression profiles of exosomes derived from DPSCs were identified. OD-Exo isolated under odontogenic conditions were better inducers of DPSC differentiation. Exosomal microRNAs promoted odontogenic differentiation via TGFβ1/smads signaling pathway by downregulating LTBP1."	"Overexpression of miRNA-25-3p inhibits Notch1 signaling and TGF-β-induced collagen expression in hepatic stellate cells. During chronic liver injury hepatic stellate cells (HSCs), the principal source of extracellular matrix in the fibrotic liver, transdifferentiate into pro-fibrotic myofibroblast-like cells - a process potentially regulated by microRNAs (miRNAs). Recently, we found serum miRNA-25-3p (miR-25) levels were upregulated in children with Cystic Fibrosis (CF) without liver disease, compared to children with CF-associated liver disease and healthy individuals. Here we examine the role of miR-25 in HSC biology. MiR-25 was detected in the human HSC cell line LX-2 and in primary murine HSCs, and increased with culture-induced activation. Transient overexpression of miR-25 inhibited TGF-β and its type 1 receptor (TGFBR1) mRNA expression, TGF-β-induced Smad2 phosphorylation and subsequent collagen1α1 induction in LX-2 cells. Pull-down experiments with biotinylated miR-25 revealed Notch signaling (co-)activators ADAM-17 and FKBP14 as miR-25 targets in HSCs. NanoString analysis confirmed miR-25 regulation of Notch- and Wnt-signaling pathways. Expression of Notch signaling pathway components and endogenous Notch1 signaling was downregulated in miR-25 overexpressing LX-2 cells, as were components of Wnt signaling such as Wnt5a. We propose that miR-25 acts as a negative feedback anti-fibrotic control during HSC activation by reducing the reactivity of HSCs to TGF-β-induced collagen expression and modulating the cross-talk between Notch, Wnt and TGF-β signaling."	"Circular RNA CircCACTIN Promotes Gastric Cancer Progression by Sponging MiR-331-3p and Regulating TGFBR1 Expression. Background: Circular RNAs (circRNAs) are a new class of RNAs that play a significant role in regulating gene expression and biological function. However, the expression profile and function of circRNAs in gastric cancer (GC) remain mostly uncertain. In the present study, we researched the expression profile of circRNAs in human GC tissues and explored the role of circCACTIN (hsa_circ_0092303). Methods: Circular RNA microarray assays were performed to detect circular RNA expression profiles of GC and circCACTIN was identified for further investigation. Quantitative real-time PCR was used to detect the expression of circCACTIN, miR-331-3p and TGFBR1 in GC specimens and cell lines. CircCACTIN was stably silenced and overexpressed in GC cells, and cell proliferation, migration, invasion, epithelial-mesenchymal transition (EMT), as well as tumorigenesis in nude mice were performed to assess the effect of circCACTIN on GC. Results: CircCACTIN expression was obviously up-regulated in GC tissues and cell lines. Knockdown of circCACTIN inhibited GC cells proliferation, migration, invasion and EMT. Enforced-expression of circCACTIN promoted GC cells migration, invasion and EMT, but had no effect on GC cells proliferation. Moreover, in vivo experiments, circCACTIN up-regulation promoted GC tumor growth and EMT, and circCACTIN down-regulation inhibited GC tumor growth and EMT. Binding interactions were detected between circCACTIN and miR-331-3p, and between miR-331-3p and TGFBR1 by Dual-luciferase reporter assays. Mechanistically, we demonstrated that circCACTIN promoted gastric cancer progression by sponging miRNA-331-3p and regulating TGFBR1 mRNA expression. Conclusion: The circCACTIN/miR-331-3p/TGFBR1 axis affected the proliferation, migration, invasion and EMT of GC through the mechanism of competing endogenous RNAs (ceRNA). Furthermore, our results identified circCACTIN as a novel oncogenic circRNA in GC."	"Inhibition of USP4 attenuates pathological scarring by downregulation of the TGF‑β/Smad signaling pathway. Pathological scarring is a result of the hypertrophy of scar tissue during tissue repair following trauma. The aim of the present study was to assess the effect of ubiquitin‑specific protease 4 (USP4) silencing on pathological scarring, and to evaluate the mechanistic basis for the effect. An MTT assay was used to assess cell viability. Immunoprecipitation (IP) was used to determine ubiquitination levels of the TGF‑β receptor (TβR)I and Smad7. Tumor formation was assessed by injecting keloid fibroblasts. Hematoxylin and eosin staining was used to detect pathological changes in tumor tissue. Reverse transcription quantitative polymerase chain reaction and western blot analysis assays were used to evaluate the expression levels of TβRI and Smad7. Compared with the untreated control animals, cell viability and the expression of TβRI and Smad7 increased significantly in animals treated with TGF‑β. Short hairpin RNA for USP4 (shUSP4) decreased the cell viability of negative control cells, TGF‑β‑induced cellular proliferation, and the expression of TβRI and Smad7. IP experiments indicated that the ubiquitination level of TβRI was decreased following USP4 silencing. There was no remarkable difference in the structure of scar tissue among the various animal groups at 14 days following treatment, while the necrotic area of the scar tissue in the shUSP4 and vialinin A (USP inhibitor)‑treated animals increased significantly at the 28th and 42nd day compared with the control animals. At days 14, 28 and 42, the expression levels of TβRI and Smad7 in the shUSP4 and vialinin A‑treated animals were significantly decreased compared with the control animals (P&lt;0.05). In summary, interference with or inhibition of USP4 prevented the activity of the TGF‑β/Smad pathway signaling and inhibited the formation of pathological scars."	"Glial cell line-derived neurotrophic factor (GDNF) mediates hepatic stellate cell activation via ALK5/Smad signalling. Although glial cell line-derived neurotrophic factor (GDNF) is a member of the transforming growth factor-β superfamily, its function in liver fibrosis has rarely been studied. Here, we investigated the role of GDNF in hepatic stellate cell (HSC) activation and liver fibrosis in humans and mice. GDNF expression was examined in liver biopsies and sera from patients with liver fibrosis. The functional role of GDNF in liver fibrosis was examined in mice with adenoviral delivery of the GDNF gene, GDNF sgRNA CRISPR/Cas9 and the administration of GDNF-blocking antibodies. GDNF was examined on HSC activation using human and mouse primary HSCs. The binding of activin receptor-like kinase 5 (ALK5) to GDNF was determined using surface plasmon resonance (SPR), molecular docking, mutagenesis and co-immunoprecipitation. GDNF mRNA and protein levels are significantly upregulated in patients with stage F4 fibrosis. Serum GDNF content correlates positively with α-smooth muscle actin (α-SMA) and Col1A1 mRNA in human fibrotic livers. Mice with overexpressed GDNF display aggravated liver fibrosis, while mice with silenced GDNF expression or signalling inhibition by GDNF-blocking antibodies have reduced fibrosis and HSC activation. GDNF is confined mainly to HSCs and contributes to HSC activation through ALK5 at His<sup>39</sup> and Asp<sup>76</sup> and through downstream signalling via Smad2/3, but not through GDNF family receptor alpha-1 (GFRα1). GDNF, ALK5 and α-SMA colocalise in human and mouse HSCs, as demonstrated by confocal microscopy. GDNF promotes HSC activation and liver fibrosis through ALK5/Smad signalling. Inhibition of GDNF could be a novel therapeutic strategy to combat liver fibrosis."	"Yin/Yang expression of CCN family members: Transforming growth factor beta 1, via ALK5/FAK/MEK, induces CCN1 and CCN2, yet suppresses CCN3, expression in human dermal fibroblasts. The role of the microenvironment in driving connective tissue disease is being increasingly appreciated. Matricellular proteins of the CCN family are signaling modifiers that are secreted by cells into the extracellular matrix microenvironment where they have profound, context-dependent effects on organ development, homeostasis and disease. Indeed, CCN proteins are emergent targets for therapeutic intervention. Recent evidence suggests that, in vivo, CCN3 has effects opposing CCN2. Moreover, when CCN3 expression is high, CCN2 expression is low. That is, they appear to be regulated in a yin/yang fashion, leading to the hypothesis that the CCN2:CCN3 ratio is important to control tissue homeostasis. To begin to test the hypothesis that alterations in CCN2:CCN3 expression might be important in skin biology in vivo, we evaluated the relative ex vivo effects of the profibrotic protein TGFbeta1 on dermal fibroblasts on protein and RNA expression of CCN3 and CCN2, as well as the related protein CCN1. We also used signal transduction inhibitors to begin to identify the signal transduction pathways controlling the ability of fibroblasts to respond to TGFbeta1. As anticipated, CCN1 and CCN2 protein and mRNA were induced by TGFbeta1 in human dermal fibroblasts. This induction was blocked by TAK1, FAK, YAP1 and MEK inhibition. Conversely, TGFbeta1 suppressed CCN3 mRNA expression in a fashion insensitive to FAK, MEK, TAK1 or YAP1 inhibition. Unexpectedly, CCN3 protein was not detected in human dermal fibroblasts basally. These data suggest that, in dermal fibroblasts, the profibrotic protein TGFbeta1 has a divergent effect on CCN3 relative to CCN2 and CCN1, both at the mRNA and protein level. Given that the major source in skin in vivo of CCN proteins are fibroblasts, our data are consistent that alterations in CCN2/CCN1: CCN3 ratios in response to profibrotic agents such as TGFbeta1 may play a role in connective tissue pathologies including fibrosis."	"MiR-27 alleviates myocardial cell damage induced by hypoxia/reoxygenation via targeting TGFBR1 and inhibiting NF-κB pathway. MiR-27 prevents atherosclerosis by inhibiting inflammatory responses induced by lipoprotein lipase. Overexpression of miR-27b attenuates angiotensin-induced atrial fibrosis. Nevertheless, studies have rarely investigated on the effect of miR-27 in cardiomyocyte injury. H9c2 cells were transfected with miR-27 mimic/inhibitor. Then the cell proliferation was tested by MTT assay and the cell apoptosis was detected by flow cytometry. The luciferase activity assay was utilized to analyze the relationship between miR-27 and TGFBR1. Quantificational real-time polymerase chain reaction and western blot were utilized to detect the cardiomyocyte differentiation marker and nuclear factor kappa B (NF-κB) pathway. Our outcomes demonstrated that miR-27 expression was downregulated cardiomyocyte injury subjected to hypoxia/reoxygenation (H/R). Additionally, overexpression of miR-27 could significantly alleviate cardiomyocyte injury by regulating cell activity and apoptosis. The luciferase activity assay confirmed that transforming growth factor ß receptor 1 (TGFBR1) is a direct hallmark of miR-27. Besides, overexpression of miR-27 promoted the expression of TGFBR1 in H/R model. After transfection with miR-27 mimic/inhibitor, the expression of NF-κB pathway-related proteins was decreased/increased. Taken together, our data manifested that miR-27 repressed cardiomyocyte injury induced by H/R via mediating TGFBR1 and inhibiting NF-κB signaling pathway. Furthermore, miR-27/ TGFBR1 might be utilized as hopeful biomarkers for myocardial ischemia diagnosis and treatment."	"Function and regulation of transforming growth factor β1 signalling in antler chondrocyte proliferation and differentiation. Chondrocyte proliferation and differentiation are crucial for endochondral ossification, but their regulatory mechanism remains unclear. The present study aimed to determine the physiological function of TGFβ1 signalling in the proliferation and differentiation of antler chondrocytes and explore its relationship with Notch, Shh signalling and Foxa. Immunofluorescence, Western blot, MTS assay, flow cytometry, RNA interference and real-time PCR were used to analyse the function and regulatory mechanisms of TGFβ1 signalling in antler chondrocyte proliferation and differentiation. TGFβ1, TGFBR1 and TGFBR2 were highly expressed in antler cartilage. TGFβ1 promoted chondrocyte proliferation, increased the proportion of S-phase cells and induced the expression of hypertrophic chondrocyte markers Col X, Runx2 and Alpl. However, this induction was weakened by TGFβ receptor inhibitor SB431542 and Smad3 inhibitor SIS3. Simultaneously, TGFβ1 activated Notch and Shh signalling whose blockage attenuated the above effects of rTGFβ1, whereas addition of rShh rescued the defects in chondrocyte proliferation and differentiation elicited by SB431542 and SIS3. Further analysis revealed that inhibition of Notch signalling impeded TGFβ1 activation of the Shh pathway. Knockdown of Foxa1, Foxa2 and Foxa3 abrogated the effects of TGFβ1 on chondrocyte differentiation. Notch and Shh signalling mediated the regulation of Foxa transcription factors by TGFβ1. TGFβ1 signalling could induce the proliferation and differentiation of antler chondrocytes through Notch-Shh-Foxa pathway."	"Periapical bone response to bacterial lipopolysaccharide is shifted upon cyclooxygenase blockage. Infection, inflammation and bone resorption are closely related events in apical periodontitis development. Therefore, we sought to investigate the role of cyclooxygenase (COX) in osteoclastogenesis and bone metabolism signaling in periapical bone tissue after bacterial lipopolysaccharide (LPS) inoculation into root canals. Seventy two C57BL/6 mice had the root canals of the first molars inoculated with a solution containing LPS from E. coli (1.0 mg/mL) and received selective (celecoxib) or non-selective (indomethacin) COX-2 inhibitor. After 7, 14, 21 and 28 days the animals were euthanized and the tissues removed for total RNA extraction. Evaluation of gene expression was performed by qRT-PCR. Statistical analysis was performed using analysis of variance (ANOVA) followed by post-tests (α=0.05). LPS induced expression of mRNA for COX-2 (Ptgs2) and PGE2 receptors (Ptger1, Ptger3 and Ptger4), indicating that cyclooxygenase is involved in periapical response to LPS. A signaling that favours bone resorption was observed because Tnfsf11 (RANKL), Vegfa, Ctsk, Mmp9, Cd36, Icam, Vcam1, Nfkb1 and Sox9 were upregulated in response to LPS. Indomethacin and celecoxib differentially modulated expression of osteoclastogenic and other bone metabolism genes: celecoxib downregulated Igf1r, Ctsk, Mmp9, Cd36, Icam1, Nfkb1, Smad3, Sox9, Csf3, Vcam1 and Itga3 whereas indomethacin inhibited Tgfbr1, Igf1r, Ctsk, Mmp9, Sox9, Cd36 and Icam1. We demonstrated that gene expression for COX-2 and PGE2 receptors was upregulated after LPS inoculation into the root canals. Additionally, early administration of indomethacin and celecoxib (NSAIDs) inhibited osteoclastogenic signaling. The relevance of the cyclooxygenase pathway in apical periodontitis was shown by a wide modulation in the expression of genes involved in both bone catabolism and anabolism."	"ALK5 is essential for tooth germ differentiation during tooth development. The TGFβ superfamily of proteins participates in tooth development. TGFβ1 and TGFβ3 regulate odontoblast differentiation and dentin extracellular matrix synthesis. Although the expression of TGFβ family member ligands is well-characterized during mammalian tooth development, less is known about the TGFβ receptor, which is a heteromeric complex consisting of a type I and type II receptors. The molecular mechanism of ALK5 (TGFβR1) in the dental mesenchyme is not clear. We investigated the role of ALK5 in tooth germ mesenchymal cells (TGMCs) from the lower first molar tooth germs of day 15.5 embryonic mice. Human recombinant TGFβ3 protein or an ALK5 inhibitor (SD208) was added to the cells. Cell proliferation was inhibited by SD208 and promoted by TGFβ3. We found that SD208 inhibited TGMCs osteogenesis and dentinogenesis. Both canonical and noncanonical TGFβ signaling pathways participated in the process. TAK1, P-TAK1, p38 and P-p38 showed greater expression and SMAD4 showed less expression when ALK5 was inhibited. Our findings contribute to understanding the role of TGFβ signaling for the differentiation of mesenchymal stem cells derived from dental germ and suggest possible targets for optimizing the use of stem cells of dental origin for tissue regeneration."	"Neonatal exposure to agonists and antagonists of sex steroid receptors induces changes in the expression of oocyte-derived growth factors and their receptors in ovarian follicles in gilts. The objective of the present study was to examine the effects of neonatal exposure to either agonists or antagonists of androgen and estrogen receptors on the expression of growth and differentiation factor 9 (GDF9) and bone morphogenetic protein 15 (BMP15) and their cognate receptors (TGFBR1, BMPR1B, and BMPR2) in ovarian follicles of adult pigs. Piglets were injected subcutaneously with testosterone propionate (TP, an androgen, at 20 mg/kg bw), flutamide (FLU, an antiandrogen, at 50 mg/kg bw), 4-tert-octylphenol (OP, an estrogenic compound, 100 mg/kg bw), ICI 182,780 (ICI, an antiestrogen, 400 μg/kg bw), or corn oil (control) between postnatal Days 1 and 10 (n = 5/group). Ovarian follicles were excised from adult pigs on Days 8-11 of the estrous cycle. The expression of GDF9, BMP15, TGFBR1, BMPR1B and BMPR2 were examined in the population of preantral and small antral ovarian follicles using real-time PCR, Western blot and immunohistochemistry. In preantral follicles, the upregulation of GDF9 mRNA and protein expression was found in pigs that were neonatally exposed to TP or FLU, while administration of TP or ICI resulted in upregulation of BMP15. TGFBR1 and BMPR2 mRNA and protein expression were upregulated in preantral follicles of adult pigs that were neonatally exposed to TP or FLU, while administration of TP or ICI resulted in upregulation of BMPR1B. In small antral follicles, the mRNA and protein for TGFBR1 and BMPR2 were upregulated, while BMPR1B was downregulated in response to neonatal OP treatment. In addition, treatment with FLU upregulated BMPR1B and BMPR2 mRNA and protein expression, while downregulated the expression of TGFBR1. Moreover, GDF9 and BMP15 were immunolocalized in oocytes and granulosa cells of preantral follicles obtained from both control and treated ovaries. TGFBR1, BMPR1B and BMPR2 receptors were observed in the oocytes and granulosa cells of preantral follicles as well as in granulosa and theca cells of small antral follicles. In conclusion, the present study demonstrated neonatal exposure to either agonists or antagonists of androgen and estrogen receptors affected GDF9 and BMP15 signalling in ovaries of adult pigs. It seems that neonatal androgen excess or deficiency may lead to the acceleration of initial follicle recruitment, while neonatal exposure to compounds with antiandrogenic and estrogenic activity may disturb small antral follicles fate. Therefore, it confirms that neonatal window is critical for programming of ovarian function in pigs."	"Bone Metastasis Phenotype and Growth Undergo Regulation by Micro-Environment Stimuli: Efficacy of Early Therapy with HGF or TGFβ1-Type I Receptor Blockade. Hepatocyte growth factor (HGF) and transforming growth factor β1 (TGFβ1) are biological stimuli of the micro-environment which affect bone metastasis phenotype through transcription factors, but their influence on the growth is scarcely known. In a xenograft model prepared with 1833 bone metastatic cells, derived from breast carcinoma cells, we evaluated mice survival and Twist and Snail expression and localization after competitive inhibition of HGF with NK4, or after blockade of TGFβ1-type I receptor (RI) with SB431542: in the latter condition HGF was also measured. To explain the in vivo data, in 1833 cells treated with SB431542 plus TGFβ1 we measured HGF formation and the transduction pathway involved. Altogether, HGF seemed relevant for bone-metastatic growth, being hampered by NK4 treatment, which decreased Twist more than Snail in the metastasis bulk. TGFβ1-RI blockade enhanced HGF in metastasis and adjacent bone marrow, while reducing prevalently Snail expression at the front and bulk of bone metastasis. The HGF accumulation in 1833 cells depended on an auxiliary signaling pathway, triggered by TGFβ1 under SB431542, which interfered in the transcription of HGF activator inhibitor type 1 (HAI-1) downstream of TGFβ-activated kinase 1 (TAK1): HGF stimulated Twist transactivation. In conclusion, the impairment of initial outgrowth with NK4 seemed therapeutically promising more than SB431542 chemotherapy; a functional correlation between Twist and Snail in bone metastasis seemed to be influenced by the biological stimuli of the micro-environment, and the targeting of these phenotype biomarkers might inhibit metastasis plasticity and colonization, even if it would be necessary to consider the changes of HGF levels in bone metastases undergoing TGFβ1-RI blockade."	"RAC1B Suppresses TGF-β1-Dependent Cell Migration in Pancreatic Carcinoma Cells through Inhibition of the TGF-β Type I Receptor ALK5. The small GTPase Ras-related C3 botulinum toxin substrate 1B (RAC1B) has been shown previously by RNA interference-mediated knockdown (KD) to function as a powerful inhibitor of transforming growth factor (TGF)-β1-induced cell migration and epithelial-mesenchymal transition in epithelial cells, but the underlying mechanism has remained enigmatic. Using pancreatic carcinoma cells, we show that both KD and Clustered Regularly Interspaced Short Palindromic Repeats (CRISPR)/Cas9-mediated knockout (KO) of RAC1B increased the expression of the TGF-β type I receptor ALK5 (activin receptor-like kinase 5), but this effect was more pronounced in CRISPR-KO cells. Of note, in KO, but not KD cells, ALK5 upregulation was associated with resensitization of TGFBR1 to induction by TGF-β1 stimulation. RAC1B KO also increased TGF-β1-induced C-terminal SMAD3 phosphorylation, SMAD3 transcriptional activity, growth inhibition, and cell migration. The KD of ALK5 expression by RNA interference or inactivation of the ALK5 kinase activity by dominant-negative interference or ATP-competitive inhibition rescued the cells from the RAC1B KD/KO-mediated increase in TGF-β1-induced cell migration, whereas the ectopic expression of kinase-active ALK5 mimicked this RAC1B KD/KO effect. We conclude that RAC1B downregulates the abundance of ALK5 and SMAD3 signaling, thereby attenuating TGF-β/SMAD3-driven cellular responses, such as growth inhibition and cell motility."	"Progranulin Promotes Bleomycin-Induced Skin Sclerosis by Enhancing Transforming Growth Factor-β/Smad3 Signaling through Up-Regulation of Transforming Growth Factor-β Type I Receptor. Progranulin (PGRN) is an autocrine growth factor with numerous physiological and pathologic roles. Previous reports demonstrated PGRN could increase dermal fibroblasts in wound healing and activate cancer-associated fibroblasts in some cancers. Because systemic sclerosis (SSc) is a prototypical fibrosis-related disorder, here, the aim was to clarify the role and mechanism of PGRN in bleomycin (BLM)-induced model of SSc for the first time. It was observed that the serum PGRN levels were increased in SSc patients compared with healthy controls. Immunohistology and quantitative RT-PCR demonstrated that PGRN was also elevated in the lesion from the mice model of BLM-induced dermal fibrosis. In addition, in BLM-treated mice, PGRN deficiency not only attenuated dermal fibrosis but also decreased the differentiation of myofibroblasts. The reduced progression of skin sclerosis in PGRN-deficient mice was associated with down-regulation of transforming growth factor (TGF)-β receptor I (TβR I) and decreased level of phosphorylated Smad3, with correspondingly impaired expression of its downstream target gene connective tissue growth factor (CTGF) in skin lesion. In contrast, exogenous PGRN significantly increased the level of TβR I and phosphorylated Smad3 in cultured mouse fibroblasts. This study demonstrates that PGRN plays a promoting role in the development of dermal fibrosis through the activation of the TGF-β/Smad3 signaling via up-regulation of TβR I. PGRN may be a new therapeutic target in SSc."	"Psoriatic Arthritis: What is Happening at the Joint? Psoriatic arthritis (PsA) is a heterogeneous and inflammatory disease with diverse clinical manifestations, including psoriasis, nail psoriasis, peripheral joint disease, axial joint disease, enthesitis, and dactylitis. Typically, this varied clinical presentation complicates the clinician's ability to distinguish PsA from other forms of arthritis. In the synovium of individuals with PsA, upregulation of the genes WNT3A, BMPR2, and TGFBR1 results in bone erosion and new bone formation, a pattern unique to the disease. Additionally, genes associated with angiogenesis and vascularization such as VEGF and TGFB1 facilitate inflammation and joint damage. Gross pathogenesis of PsA is driven by proinflammatory cytokines, and key cytokines affecting joint structures include tumor necrosis factor-α, interleukin (IL)-6, IL-17A, IL-21, IL-22, and IL-23. Early diagnosis is critical for providing treatment that prevents irreversible disease progression and function loss. This narrative review discusses differentiation of PsA from other forms of arthritis. Additionally, we detail the role of cytokines at the joint in mediating PsA pathogenesis.Funding: Novartis Pharmaceuticals Corporation."	"Application of next-generation sequencing to screen for pathogenic mutations in 123 unrelated Chinese patients with Marfan syndrome or a related disease. Marfan syndrome (MFS) is a systemic connective tissue disease principally affecting the ocular, skeletal and cardiovascular systems. This autosomal dominant disorder carries a prevalence of 1:3,000 to 1:5,000. This study aims to define the mutational spectrum of MFS related genes in Chinese patients and to establish genotype-phenotype correlations in MFS. Panel-based targeted next-generation sequencing was used to analyze the FBN1, TGFBR1 and TGFBR2 genes in 123 unrelated Chinese individuals with MFS or a related disease. Genotype-phenotype correlation analyses were performed in mutation-positive patients. The results showed that 97 cases/families (78.9%; 97/123) harbor at least one (likely) pathogenic mutation, most of which were in FBN1; four patients had TGFBR1/2 mutations; and one patient harbored a SMAD3 mutation. Three patients had two FBN1 mutations, and all patients showed classical MFS phenotypes. Patients with a dominant negative-FBN1 mutation had a higher prevalence of ectopia lentis (EL). Patients carrying a haploinsufficiency-FBN1 mutation tended to have aortic dissection without EL. This study extends the spectrum of genetic backgrounds of MFS and enriches our knowledge of genotype-phenotype correlations."	"ALK5 signaling pathway mediates neurogenesis and functional recovery after cerebral ischemia/reperfusion in rats via Gadd45b. Transforming growth factor β (TGF-β) serves critical functions in brain injury, especially in cerebral ischemia; however, apart from its neuroprotective effects, its role in regulating neurogenesis is unclear. TGF-β acts in different ways; the most important, canonical TGF-β activity involves TGF-β receptor I (TβRI) or the activin receptor-like kinase 5 (ALK5) signaling pathway. ALK5 signaling is a major determinant of adult neurogenesis. In our previous studies, growth arrest and DNA damage protein 45b (Gadd45b) mediated axonal plasticity after stroke. Here, we hypothesized that ALK5 signaling regulates neural plasticity and neurological function recovery after cerebral ischemia/reperfusion (I/R) via Gadd45b. First, ALK5 expression was significantly increased in middle cerebral artery occlusion/reperfusion (MCAO/R) rats. Then, we knocked down or overexpressed ALK5 with lentivirus (LV) in vivo. ALK5 knockdown reduced axonal and dendritic plasticity, with a concomitant decrease in neurological function recovery. Conversely, ALK5 overexpression significantly increased neurogenesis as well as functional recovery. Furthermore, ALK5 mediated Gadd45b protein levels by regulating Smad2/3 phosphorylation. Finally, ALK5 coimmunoprecipitated with Gadd45b. Our results suggested that the ALK5 signaling pathway plays a critical role in mediating neural plasticity and neurological function recovery via Gadd45b after cerebral ischemia, representing a new potential target for cerebral I/R injury."	"EVALUATING MMP-2 AND TGFß-RI EXPRESSION IN CIRCULATING TUMOR CELLS OF PANCREATIC CANCER PATIENTS AND THEIR CORRELATION WITH CLINICAL EVOLUTION. Metastasis is common in the diagnosis of pancreatic cancer, and the presence of epithelial-mesenchymal transition markers in circulating tumor cells may suggest worse prognosis. To correlate the number of circulating tumor cells (CTCs) in the peripheral blood of patients with a locally advanced or metastatic pancreatic tumor and the protein expression involved in epithelial-mesenchymal transition (EMT) in CTCs with clinical characteristics, progression-free survival (PFS) and overall survival (OS). This was a prospective study conducted using peripheral blood samples collected at three different times. CTCs were quantified by the ISET test and analyzed by immunocytochemistry. Proteins involved in EMT (vimentin, TGFß-RI and MMP2) were analyzed in all CTCs. Twenty-one patients were included. Median CTCs detected were 22, 20 and 8 CTCs/8 ml blood at baseline, first and second follow-up, respectively. No statistically significant correlation was found in correlating the number of CTCs and the evaluated clinical characteristics, PFS, or OS. There was no difference in PFS and OS among the EMT markers in the groups with and without markers. CTC analysis was not relevant in this sample for comparing clinical findings, PFS and OS in patients with pancreatic cancer. However, marker analysis in CTCs could be useful for the MMP-2 and/or TGFß-RI expression, as observed by the separate PFS curve."	"miR-140-5p could suppress tumor proliferation and progression by targeting TGFBRI/SMAD2/3 and IGF-1R/AKT signaling pathways in Wilms' tumor. Wilms' tumor is also called nephroblastoma and is the most common pediatric renal cancer. Several genetic and epigenetic factors have been found to account for the development of Wilms' tumor. MiRNAs play important roles in this tumorigenic process. In the present study, we aimed to investigate the role of miR-140-5p in nephroblastoma by identifying its targets, as well as its underlying molecular mechanism of action. The miRNA expression profile of nephroblastoma samples was investigated and the targets of miR-140-5p were predicted and validated using the miRNA luciferase reporter method. Moreover, the roles of miR-140-5p in regulating nephroblastoma cell proliferation, migration and cell cycle were analyzed by the CCK8, migration and flow cytometry assays, respectively. The downstream protein of the direct target of miR-140-5p was also identified. miR-140-5p was downregulated in Wilms' tumor tissues, whereas in the nephroblastoma cell lines G401 and WT-CLS1 that exhibited high levels of miRNA-140-5p, inhibition of cellular proliferation and metastasis were noted as well as cell cycle arrest at the G1/S phase. TGFBRI and IGF1R were identified as direct target genes for miRNA-140-5p. In addition, SMAD2/3 and p-AKT were regulated by TGFBRI and IGF1R separately and participated in the miRNA-140-5p regulatory network. Ectopic expression of TGFBR1 and IGF-1R could abrogate the inhibitory effect of miR-140-5p. We demonstrated that miRNA-140-5p participates in the progression of Wilms' tumor by targeting the TGFBRI/SMAD2/3 and the IGF-1R/AKT signaling pathways."	"Activity and molecular targets of pioglitazone via blockade of proliferation, invasiveness and bioenergetics in human NSCLC. Pioglitazone, a synthetic peroxisome proliferator activated receptor (PPAR-γ) ligand, is known as an antidiabetic drug included in the thiazolidinediones (TZDs) class. It regulates the lipid and glucose cell metabolism and recently a role in the inhibition of numerous cancer cell processes has been described. In our work we investigate the anti-tumor effects of pioglitazone in in vitro models of non small cell lung cancer (NSCLC) and also, we generated ex-vivo three-dimensional (3D) cultures from human lung adenocarcinoma (ADK) as a model to test drug efficacy observed in vitro. The inhibitory effect of pioglitazone on cell proliferation, apoptosis and cell invasion in a panel of human NSCLC cell lines was evaluated by multiple assays. Pioglitazone reduced proliferative and invasive abilities with an IC50 ranging between 5 and 10 μM and induced apoptosis of NSCLC cells. mRNA microarray expression profiling showed a down regulation of MAPK, Myc and Ras genes after treatment with pioglitazone; altered gene expression was confirmed by protein analysis in a dose-related reduction of survivin and phosphorylated proteins levels of MAPK pathway. Interestingly mRNA microarray analysis showed also that pioglitazone affects TGFβ pathway, which is important in the epithelial-to-mesenchimal transition (EMT) process, by down-regulating TGFβR1 and SMAD3 mRNA expression. In addition, extracellular acidification rate (ECAR) and a proportional reduction of markers of altered glucose metabolism in treated cells demonstrated also cell bioenergetics modulation by pioglitazone. Data indicate that PPAR-γ agonists represent an attractive treatment tool and by suppression of cell growth (in vitro and ex vivo models) and of invasion via blockade of MAPK cascade and TGFβ/SMADs signaling, respectively, and its role in cancer bioenergetics and metabolism indicate that PPAR-γ agonists represent an attractive treatment tool for NSCLC."	"Polycomb complex mediated epigenetic reprogramming alters TGF-β signaling via a novel EZH2/miR-490/TGIF2 axis thereby inducing migration and EMT potential in glioblastomas. Recent advancement in understanding cancer etiology has highlighted epigenetic deregulation as an important phenomenon leading to poor prognosis in glioblastoma (GBM). Polycomb repressive complex 2 (PRC2) is one such important epigenetic modifier reportedly altered in GBM. However, its defined mechanism in tumorigenesis still remains elusive. In present study, we analyzed our in-house ChIPseq data for H3k27me3 modified miRNAs and identified miR-490-3p to be the most common target in GBM with significantly downregulated expression in glioma patients in both TCGA and GBM patient cohort. Our functional analysis delineates for the first time, a central role of PRC2 catalytic unit EZH2 in directly regulating expression of this miRNA and its host gene CHRM2 in GBM. In accordance, cell line treatment with EZH2 siRNA and 5-azacytidine also confirmed its coregulation by CpG and histone methylation based epigenetic mechanisms. Furthermore, induced overexpression of miR-490-3p in GBM cell lines significantly inhibited key hallmarks including cellular proliferation, colony formation and spheroid formation, as well as epithelial-to-mesenchymal transition (EMT), with downregulation of multiple EMT transcription factors and promigratory genes (MMP9, CCL5, PIK3R1, ICAM1, ADAM17 and NOTCH1). We also for the first time report TGFBR1 and TGIF2 as two direct downstream effector targets of miR-490-3p that are also deregulated in GBM. TGIF2, a novel target, was shown to promote migration and EMT that could partially be rescued by miR-490-3p overexpression. Overall, this stands as a first study that provides a direct link between epigenetic modulator EZH2 and oncogenic TGF-β signaling involving novel miR-490-3p/TGIF2/TGFBR1 axis, that being targetable might be promising in developing new therapeutic intervention strategies for GBM."	"NEAT1 regulates neuroglial cell mediating Aβ clearance via the epigenetic regulation of endocytosis-related genes expression. The accumulation of intracellular β-amyloid peptide (Aβ) is important pathological characteristic of Alzheimer's disease (AD). However, the exact underlying molecular mechanism remains to be elucidated. Here, we reported that Nuclear Paraspeckle Assembly Transcript 1 (NEAT1), a long n on-coding RNA, exhibits repressed expression in the early stage of AD and its down-regulation declines neuroglial cell mediating Aβ clearance via inhibiting expression of endocytosis-related genes. We find that NEAT1 is associated with P300/CBP complex and its inhibition affects H3K27 acetylation (H3K27Ac) and H3K27 crotonylation (H3K27Cro) located nearby to the transcription start site of many genes, including endocytosis-related genes. Interestingly, NEAT1 inhibition down-regulates H3K27Ac but up-regulates H3K27Cro through repression of acetyl-CoA generation. NEAT1 also mediates the binding between STAT3 and H3K27Ac but not H3K27Cro. Therefore, the decrease of H3K27Ac and/or the increase of H3K27Cro declines expression of multiple related genes. Collectively, this study first reveals the different roles of H3K27Ac and H3K27Cro in regulation of gene expression and provides the insight of the epigenetic regulatory mechanism of NEAT1 in gene expression and AD pathology."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Ubiquitin-Specific Protease 15 Maintains Transforming Growth Factor-β Pathway Activity by Deubiquitinating Transforming Growth Factor-β Receptor I during Wound Healing. Wound healing is a process of cutaneous barrier reconstruction that occurs after skin injury and involves diverse cytokines and cell types. Similar to several deubiquitinating enzymes, ubiquitin-specific protease 15 (USP15) can remove ubiquitin chains from specific proteins to rescue them from degradation. However, the regulatory role of USP15 in wound healing remains unclear. We investigated the dynamic function of USP15 in wound healing. First, in USP15 knockout mice, we observed a significant delay in wound closure. In addition, inhibition of cell proliferation and migration was observed in USP15-silenced human dermal fibroblasts. Through RNA sequencing, it was revealed that the transforming growth factor-β (TGF-β) pathway was suppressed after USP15 knockdown. Furthermore, coimmunoprecipitation demonstrated that USP15 could interact with TGF-β receptor I and promote its deubiquitination, thereby maintaining TGF-β signaling pathway activity by enhancing TGF-β receptor I stability. These observations shed light on the function and mechanisms of USP15-mediated modulation of the TGF-β signaling pathway during wound healing, thus providing a novel potential target for the treatment of refractory wounds."	"Noncanonical TGFβ Pathway Relieves the Blockade of IL1β/TGFβ-Mediated Crosstalk between Tumor and Stroma: TGFBR1 and TAK1 Inhibition in Colorectal Cancer. The aim of the study is blocking the recruitment of a protective stroma by altering the crosstalk between normal stromal cells and tumor cells for stripping tumors of the protection conferred by the microenvironment. A transcriptomic analysis of cocultured normal colonic fibroblasts and colorectal tumor cells was performed. We focused on the study of molecules that mediate the communication between both compartments and that entail fibroblasts' activation and the alteration of the sensitivity to chemotherapy. We identified targets for the blocking of the tumor-stroma interaction. Finally, we tested, in vivo, the blockade of the tumor-stroma interaction in orthotopic models derived from patients and in models of acquired resistance to oxaliplatin. IL1β/TGFβ1 are the triggers for fibroblasts' recruitment and conversion into carcinoma-associated fibroblasts (CAF) in colorectal cancer. CAFs then secrete proinflammatory factors that alter sensitivity in tumor cells, activating JAK/STAT and PI3KCA/AKT pathways. Blocking such crosstalk with a neutralizing IL1β antibody and a TGFBR1 inhibitor is relieved by the TAK1-mediated activation of the noncanonical TGFβ pathway, which induces a change in the cytokine/chemokine repertoire that maintains a sustained activation of AKT in tumor cells. TAK1 plus TGFBR1 inhibition blocks IL1β/TGFβ1-mediated fibroblast activation, decreasing the secretion of proinflammatory cytokines. In turn, tumor cells became more sensitive to chemotherapy. In vivo, the combination of a TAK1 inhibitor plus TGFBR1 inhibitor reduced the metastatic capacity of tumor cells and the recruitment of fibroblasts. Our findings provide a translational rationale for the inhibition of TAK1 and TGFBR1 to remove the chemoprotection conferred by CAFs."	"TGF-β/PI3K/AKT/mTOR/NF-kB pathway. Clinicopathological features in prostate cancer. Prostate cancer is one of the most common cancers in the male population. The objective of this investigation was to study the relationship of components of transforming growth factor-B (TGF-β)/phosphoinositide-3-kinases (PI3K)/AKT/mammalian target of rapamycin (mTOR)/nuclear factor kappa B (NF-kB) transduction pathway with clinical-pathological markers. By immunohistochemical methods, we determined the expression of several factors [TGF-β, Transforming Growth Factor B Receptor I (TGFBRI), TGFBRII, PI3K, AKT-Ser, AKT-Thr, mTOR, p-mTOR, inhibitor kB kinase (IKK), pIKK, inhibitor kB (IkB), pIkB, NF-kBp50, and NF-kBp65]. To know their relationship with established classical markers (Preoperative serum prostate specific antigen, pathological tumor stage, clinical tumor stage, Gleason score, perineural invasion, node involvement, positive surgical margins, biochemical progression, and survival) and their importance in the prognosis of biochemical progression, Spearman test, survival analysis, Log-rang test, Kaplan-Meier curves, univariate and multivariate Cox proportional Hazard regression analyses were performed. Spearman analysis showed that there was at least one correlation between TGF-β, TGFBRI, PI3K, pAKT-Thr, p-mTOR, NF-kBp50, and classical markers. Cox multivariate analysis between the prognostic variables (pathological tumor stage, Gleason score, and node involvement) and inmunohistochemical parameters confirmed TGFBR1 and PI3K as a prognostic and independent marker of biochemical progression in prostate cancer. Our results suggest that TGFBR1 and PI3K could be used as useful biomarkers for early diagnosis and prognoses for biochemical recurrence in prostate cancer after radical prostatectomy."	"Lung cancer deficient in the tumor suppressor GATA4 is sensitive to TGFBR1 inhibition. Lung cancer is the leading cause of cancer-related deaths worldwide. Tumor suppressor genes remain to be systemically identified for lung cancer. Through the genome-wide screening of tumor-suppressive transcription factors, we demonstrate here that GATA4 functions as an essential tumor suppressor in lung cancer in vitro and in vivo. Ectopic GATA4 expression results in lung cancer cell senescence. Mechanistically, GATA4 upregulates multiple miRNAs targeting TGFB2 mRNA and causes ensuing WNT7B downregulation and eventually triggers cell senescence. Decreased GATA4 level in clinical specimens negatively correlates with WNT7B or TGF-β2 level and is significantly associated with poor prognosis. TGFBR1 inhibitors show synergy with existing therapeutics in treating GATA4-deficient lung cancers in genetically engineered mouse model as well as patient-derived xenograft (PDX) mouse models. Collectively, our work demonstrates that GATA4 functions as a tumor suppressor in lung cancer and targeting the TGF-β signaling provides a potential way for the treatment of GATA4-deficient lung cancer."	"Transforming growth factor-β (TGF-β)-induced up-regulation of TGF-β receptors at the cell surface amplifies the TGF-β response. Functional activation of the transforming growth factor-β (TGF-β) receptors (TGFBRs) is carefully regulated through integration of post-translational modifications, spatial regulation at the cellular level, and TGFBR availability at the cell surface. Although the bulk of TGFBRs resides inside the cells, AKT Ser/Thr kinase (AKT) activation in response to insulin or other growth factors rapidly induces transport of TGFBRs to the cell surface, thereby increasing the cell's responsiveness to TGF-β. We now demonstrate that TGF-β itself induces a rapid translocation of its own receptors to the cell surface and thus amplifies its own response. This mechanism of response amplification, which hitherto has not been reported for other cell-surface receptors, depended on AKT activation and TGF-β type I receptor kinase. In addition to an increase in cell-surface TGFBR levels, TGF-β treatment promoted TGFBR internalization, suggesting an overall amplification of TGFBR cycling. The TGF-β-induced increase in receptor presentation at the cell surface amplified TGF-β-induced SMAD family member (SMAD) activation and gene expression. Furthermore, bone morphogenetic protein 4 (BMP-4), which also induces AKT activation, increased TGFBR levels at the cell surface, leading to enhanced autocrine activation of TGF-β-responsive SMADs and gene expression, providing context for the activation of TGF-β signaling in response to BMP during development. In summary, our results indicate that TGF-β- and BMP-induced activation of low levels of cell surface-associated TGFBRs rapidly mobilizes additional TGFBRs from intracellular stores to the cell surface, increasing the abundance of cell-surface TGFBRs and cells' responsiveness to TGF-β signaling."	"The long noncoding RNA AK002107 negatively modulates miR-140-5p and targets TGFBR1 to induce epithelial-mesenchymal transition in hepatocellular carcinoma. The abnormal expression of long noncoding RNAs (lncRNAs) is associated with human carcinoma. The present study aimed to investigate the mechanisms underlying the function of lncRNA AK002107 in the progression of hepatocellular carcinoma (HCC). The differential expression of lncRNAs between HCC and paired nontumor tissues was identified using microarrays, and the correlation between the expression of lncRNA AK002107 and the clinical prognosis of HCC was analyzed. We investigated the role of lncRNA AK002107 in HCC tumor biology in vitro using 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyl-tetrazolium bromide (MTT), colony formation, and Matrigel invasion assays and in vivo by assessing the growth of xenografted HCC tumors. The potential microRNAs that interact with lncRNA AK002107 were identified using online tools and were verified using PCR and luciferase reporter assay. The levels of TGFBR1, E-cadherin, and vimentin were determined using western blot assays. We then further investigated the correlation between expression of lncRNA AK002107 with miR-140-5p and TGFBR1 expression in HCC tissues. The expression of lncRNA AK002107 is frequently upregulated in HCC samples and cell lines. Patients with HCC who have elevated lncRNA AK002107 expression exhibit poorer overall survival and disease-free survival. Silencing lncRNA AK002107 expression significantly inhibited HCC cell proliferation, colony formation, and invasion both in vitro and in vivo. Furthermore, lncRNA AK002107 directly binds to miR-140-5p and significantly inhibits miR-140-5p expression. The functions of lncRNA AK002107 in cell growth and tumor invasion are mediated via miR-140-5p. lncRNA AK002107 upregulated TGFBR1 expression and then induced epithelial-mesenchymal transition (EMT) by inhibiting miR-140-5p expression. The expression of lncRNA AK002107 inversely correlated with miR-140-5p expression and positively correlated with TGFBR1 expression in HCC tissues. In summary, lncRNA AK002107 functions as an oncogene in tumors by inhibiting miR-140-5p, targeting TGFBR1, and then inducing EMT. The lncRNA AK002107/miR-140-5p/TGFBR1/EMT regulatory network may be a valuable target for the development of novel diagnostic and treatment methods for HCC."	"Platelets promote invasion and induce epithelial to mesenchymal transition in ovarian cancer cells by TGF-β signaling pathway. To test whether platelets could increase invasion potential and initiate EMT in ovarian cancer cells via a TGF-β signaling pathway. Blood samples were collected in 69 patients with ovarian cancer, 16 patients with benign ovarian tumor and 64 healthy donors. SK-OV-3 and OVCAR-3 ovarian cancer cells were treated with platelets. Transwell assays were used to analyze the invasive capacity, and EMT was assessed by microarray analysis, quantitative real-time PCR (qPCR) and Western blotting. Activation of TGF-β pathway was examined by ELISA and Western blotting. TGF-β type I receptor (TβR I) inhibitor A83-01 was used to confirm the role of TGF-β pathway in vitro and in vivo. Clinical data showed ovarian cancer patients with elevated platelet counts had a higher incidence of advanced stages. Treatment with platelets increased the invasive properties of both cell lines. Mesenchymal markers (snail family transcriptional repressor-1, vimentin, neural cadherin, fibronectin-1 and matrix metalloproteinase-2) were up-regulated in platelet-treated cells, while the epithelial marker (epithelial cadherin) was down-regulated. Higher TGF-β level was observed in patients with elevated platelet counts when compared to the subjects. Higher levels of TGF-β were also found in culture medium treated with platelets, and cells treated with platelets also showed increased phosphorylation of Smad2. TβR I inhibitor A83-01 reversed the EMT-like alterations and inhibited platelet-induced invasion in vitro and in vivo. Platelet increased invasion potential and induced EMT in ovarian cancer cells in a TGF-β dependent pathway. Platelet-derived TGF-β may be useful as a new target treatment for ovarian cancer."	"Expansion and maintenance of primary corneal epithelial stem/progenitor cells by inhibition of TGFβ receptor I-mediated signaling. Transforming growth factor β (TGFβ) signaling is one of the most important signaling pathways regulating cell behavior in ocular tissues. Its functions are mainly linked to tissue fibrosis and inflammatory responses in ophthalmology. In epithelial cells, however, the growth inhibitory activity of TGFβ was reported in both non-ocular and ocular tissues. Since TGFβ is a bifunctional regulator that either inhibits or stimulates cell proliferation according to the specific context, we examined the effect of inhibition of TGFβ receptor (TβR) I-mediated signaling on primary corneal epithelial cells (CECs) in serum- and feeder-free conditions. The mouse CECs were isolated from the eyeballs of 6-8 weeks old female C57BL/6 mice using dispase and trypsin separately, cultivated in defined Keratinocyte serum-free medium (KSFM) with supplements (the complete medium) without feeder layer. Cells were divided into three groups, those cultured in complete medium additionally supplemented with 10 μM SB-431542, a specific inhibitor of TβR-I, were SB-CECs; those cultured in complete medium additionally supplemented with 10 ng/ml SRI-011381, a TGF-beta signaling agonist, were SRI-CECs; those cultured in complete medium without SB-431542 or SRI-011381 were control CECs. The growth rate and morphology were analyzed by light microscopy. The identity and stemness of cells was investigated through marker staining of p63, inhibitor of differentiation 1 (ID1), cytokeratin 12 (K12), cytokeratin 14 (K14), PAX6, pSmad3, alpha smooth muscle Actin (αSMA) and E-cadherin (E-cad); Real-time quantitative (RT-PCR) analysis of p63; Western blot analysis of ID1; as well as colony forming assay, sphere forming assay, healing wound in vitro assay and air-lifting interface assay. The results showed SB-CECs subcultured steadily, achieved sustained expansion, and expanded almost thrice faster than control CECs. Expanded SB-CECs exhibited smaller and more compact morphology, up-regulated p63 and ID1, as well as better performed colony-forming capacity, sphere-forming capacity, in vitro wound healing capacity, and the capacity to stratify and differentiate on air-lifting interface. Preliminary tests on human limbal epithelial cells (HLECs) showed the same results as mouse CECs. Interestingly, the ID1 expression pattern was almost identical to p63, the typical marker for corneal epithelial stem/progenitor cell (CESC/CEPC), in cultured CECs and normal corneal sections. Since ID1 has been proven to be regulated negatively by TGFβ signaling in epithelial cells and plays a role in blocking cell differentiation, its derepression by TβR-I inhibitor could be, at least in part, the underlying cause of CESC/CEPC expansion and the synchronously up-regulated expression of p63 in SB-CECs. In conclusion, inhibition of TβR-I-mediated signaling, CESCs/CEPCs achieved efficient long-term expansion in a feeder- and serum-free condition in vitro. And derepression of ID1 could be the underlying cause. Meanwhile, ID1 could serve as a marker for CESC/CEPC. These results may advance the basic and clinical CESC/CEPC research."	"Targeted next‑generation sequencing for research and diagnostics in congenital heart disease, and cleft lip and/or palate. Congenital heart disease (CHD), and cleft lip and palate (CLP) are currently the most common types of structural malformation in infants. Various methods have been used to identify the disease‑associated genes. However, targeted next‑generation sequencing (NGS) is not yet considered an option for routine use. Thus, the present study aimed to assess the safety and feasibility of using targeted NGS in patients with CHD concomitant with CLP. Between November 2015 and May 2017, a total of 17 patients with CHD concomitant with CLP, who were excluded from a diagnosis of trisomy syndrome, were selected at The Second Xiangya Hospital of Central South University (Changsha, China). Genomic DNA was extracted from peripheral blood samples of the patients. The copy number variants (CNVs) were determined by conducting a single nucleotide polymorphism (SNP) array with Illumina HumanOmni1‑Quad Beadchip, while information on other gene mutations was obtained from targeted sequencing. The functions of gene mutations were then predicted using the PolyPhen‑2, SIFT and Mutation Taster tools. Finally, Sanger sequencing was used to verify the mutations. The results identified no pathogenic mutations in CNVs analyzed by high‑throughput SNP sequencing. Targeted NGS results demonstrated that 10 patients (58.8%) carried gene mutations, including 4 (23.5%) genetically diagnosed cases and 6 (35.3%) cases with unknown etiology. The 4 known diseases were Opitz G/BBB syndrome caused by MID1 gene mutation, Loeys‑Dietz syndrome caused by TGFBR1 gene mutation, Ritscher‑Schinzel/3C syndrome caused by KIAA0196 gene mutation and CHARGE syndrome caused by CHD7 gene mutation. The remaining 6 cases were not genetically diagnosed, although they carried candidate genes. In conclusion, the present study demonstrated that targeted NGS was an effective and accurate candidate gene detection method in patients with CHD concomitant with CLP."	"lncRNA KHPS1 Activates a Poised Enhancer by Triplex-Dependent Recruitment of Epigenomic Regulators. Transcription of the proto-oncogene SPHK1 is regulated by KHPS1, an antisense RNA that activates SPHK1 expression by forming a triple-helical RNA-DNA-DNA structure at the SPHK1 enhancer. Triplex-mediated tethering of KHPS1 to its target gene is required for recruitment of E2F1 and p300 and transcription of the RNA derived from the SPHK1 enhancer (eRNA-Sphk1). eRNA-Sphk1 evicts CTCF, which insulates the enhancer from the SPHK1 promoter, thus facilitating SPHK1 expression. Genomic deletion of the triplex-forming sequence attenuates SPHK1 expression, leading to decreased cell migration and invasion. Replacement of the triplex-forming region (TFR) of KHPS1 by the TFR of the lncRNA MEG3 tethers KHPS1 to the MEG3 target gene TGFBR1, underscoring the interchangeability and anchoring function of sequences involved in triplex formation. Altogether, the results reveal a triplex-driven feedforward mechanism involving lncRNA-dependent induction of eRNA, which enhances expression of specific target genes."	"Dysregulated miR-142, -33b and -423 in granulosa cells target TGFBR1 and SMAD7: a possible role in polycystic ovary syndrome. It is well established that microRNA (miRNA) expression profiles are altered in patients with polycystic ovary syndrome (PCOS). In addition, abnormal transforming growth factor beta (TGFB) signaling in granulosa cells is related to the pathological conditions of PCOS. However, the function of dysregulated miRNAs in PCOS is still unclear. In this study, we aimed to elucidate the roles of specific miRNAs in PCOS. We collected follicular fluid from 46 patients with PCOS and 32 healthy controls. Granulosa cells (GCs) were separated and the levels of six candidate miRNAs were determined by quantitative RT-PCR. The direct targets of three dysregulated miRNAs were predicted using bioinformatic tools and confirmed using a dual luciferase assay and immunoblotting. The biological function of three dysregulated miRNAs in primary GCs was determined using a cell proliferation assay and flow cytometry. We found that miR-423 expression was downregulated (P = 0.038), and the levels of miR-33b (P = 0.032) and miR-142 (P = 0.021) were upregulated in GCs from patients with PCOS, compared to controls. miR-423 directly repressed SMAD family member 7 (SMAD7) expression, while transforming growth factor beta receptor 1 (TGFBR1) was a direct target of both miR-33b and miR-142. An RNA oligonucleotide mixture containing miR-423 inhibitor, miR-33b mimic, and miR-142 mimic repressed TGFB signaling, promoted cell proliferation (P = 0.0098), repressed apoptosis (P = 0.027), and increased S phase cell numbers (P = 0.0036) in primary cultures of GCs, compared to the cells treated with a sequence scrambled control RNA oligonucleotide. This study unveiled the possible roles of three miRNAs in PCOS and might provide candidate biomarkers for PCOS diagnosis while in vivo functional studies, using transgenic or knockout mouse models, are expected to confirm the roles of dysregulated miRNAs in the pathogenesis of PCOS."	"miR-140-5p alleviates the aggressive progression of Wilms' tumor through directly targeting TGFBR1 gene. Although many miRNAs are identified to be deregulated and play vital roles in the progression of Wilms' tumor (WT), there are still a large number of miRNAs are waiting for us to explore. The purpose of the present study is to investigate the different expressing profiles of miRNAs in WT tissues and the adjacent normal tissues, and probe the effects and mechanism of a certain miRNA among the different expressing miRNAs. miRNA microarray was recruited to assess the differently expressed miRNAs in WT tissues and normal tissues, which was further verified by RT-PCR. Receiver operating characteristic curves were performed to calculate the specificity and sensitivity of miRNAs in the diagnose of WT. CCK-8, flow cytometry, wound healing, transwell chamber and tumor-burdened assays were used to assess cell growth, apoptosis, migration, invasion and tumorigenesis. Luciferase report assay was used to evaluate the interaction between miR-140-5p and TGFBR1. A total of 34 miRNAs were abnormally expressed in the WT tissues, among which, miR-140-5p was identified to be obviously down-regulated in WT tissues, and the AUC of it was 0.961. Besides, we found that patients with miR-140-5p low expression always had a shorter overall survival and more aggressive clinical features, such as bigger tumor size (P=0.002), higher pathological stage (P=0.003) and higher occurrence rate of lymph node metastasis (P=0.009) than those in patients with miR-140-5p high expression. Moreover, luciferase reporter assay showed that TGFBR1 was the direct target of miR-140-5p, which was negatively regulated by miR-140-5p and was highly expressed in WT tissues. Furthermore, knockdown of miR-140-5p obviously enhanced the proliferation and tumorigenesis and repressed the apoptosis of G401 cells, and these effects were all abolished when TGFBR1 was down-regulated. The present study illustrates that miR-140-5p functions as a tumor suppressor in the occurrence and development of WT via targeting TGFBR1, which provides theoretical foundation for serving miR-140-5p as a new diagnosis marker even a therapeutic target for WT."	"Overexpression of RNF38 facilitates TGF-β signaling by Ubiquitinating and degrading AHNAK in hepatocellular carcinoma. RING finger protein 38 (RNF38), a member of the RNF protein family, has just emerged as a vital driver of cancer progression. However, the oncogenic mechanisms of RNF38 remain unexplored. Using frozen tumor tissue and tissue microarray from hepatocellular carcinoma (HCC) patients, we tried to probe the expression of RNF38 in HCC and its clinical value. Then the biological functions of RNF38 were analyzed in vivo and vitro. Stable isotope labeling with amino acids (SILAC) in cell culture and co-immunoprecipitation proteomic analyses were combined to reveal the potential mechanism of RNF38 in HCC progression. We report that RNF38 expression was markedly higher in HCC tissues than in peritumor tissues. Correspondingly, RNF38 overexpression promoted the HCC cell migration and invasion and inhibited apoptosis both in vitro and in vivo. And elevated RNF38 expression induced HCC cell epithelial-mesenchymal transition by facilitating transforming growth factor-β (TGF-β) signaling via ubiquitinating and degrading neuroblast differentiation-associated protein (AHNAK), a well-established inhibitor of TGF-β signaling. Furthermore, AHNAK interference restored the HCC cell invasion and metastasis deprived by RNF38 downregulation. Clinically, elevated RNF38 and transforming growth factor beta receptor 1 (TGFBR1) expression was related to short overall survival (OS) and high cumulative recurrence rates in HCC patients. High levels of RNF38 promote HCC by facilitating TGF-β signaling and are a novel marker for predicting the prognosis of HCC patients and a potential therapeutic target in HCC."	"Endothelin-1 increases CHSY-1 expression in aortic endothelial cells via transactivation of transforming growth factor β type I receptor induced by type B receptor endothelin-1. TGF-β through hyperelongation of glycosaminoglycan (GAG) chains leads to binding of low-density lipoproteins to the proteoglycans. The vasoactive peptide, endothelin-1 (ET-1), plays a key role in the development of atherosclerosis. This study addressed the question whether ET-1 by activating the Rho kinase and cytoskeletal rearrangement can transactivate the TGF-β receptor leading to phosphorylation of the transcription factor Smad2 and increased expression of the GAG chain synthesizing enzyme such as chondroitin synthase-1 (CHSY-1) in bovine aortic endothelial cells (BAECs). In this study, intermediates in ET-1-induced Smad2C phosphorylation and the protein level of CHSY-1 were identified and quantified by Western blotting. Endothelin-1 caused time-dependent phosphorylation of Smad2C which was inhibited in the presence of the endothelin B receptor antagonist, BQ788. The response to ET-1 was inhibited by the Rho/ROCK kinase antagonist, Y27632 and by cytochalasin D, an inhibitor of actin polymerization but the ET-1-mediated pSmad2C was not inhibited by the matrix metalloproteinase (MMP) inhibitor, GM6001. ET-1 increased CHSY-1 protein level, which was inhibited in the presence of BQ788, cytochalasin D and Y27632. Endothelin-1 signalling via the ETB receptor utilizes cytoskeletal rearrangement and Rho kinase but not MMPs leading to TβRI transactivation signalling and phosphorylation of Smad2C and through this pathway increased the level of CHSY-1."	"Serum miR-125a-5p and CCL17 Upregulated in Chronic Spontaneous Urticaria and Correlated with Treatment Response. Chronic spontaneous urticaria (CSU) is a common skin disorder associated with autoimmunity. MicroRNAs (miRNAs) are endogenous noncoding RNA molecules reported to be potential biomarkers for some autoimmune diseases. In this study, we investigated the association of miRNAs with CSU. A quantitative PCR (qPCR)-based array was generated from sera as obtained from 20 active CSU patients and 20 healthy controls. Upregulated or downregulated miRNAs were validated by reverse transcription qPCR in sera from 59 active CSU patients and 58 healthy controls. The expression of miR-125a-5p was significantly upregulated in CSU sera and serum levels of CCL17 were also significantly increased in CSU patients. Serum miR-125a-5p expressions were found to be further upregulated in refractory CSU cases (n = 10). In 12 CSU patients in remission, serum miR-125a-5p expression and CCL17 levels were significantly decreased as compared with that obtained in active phase patients. These results indicated that miR-125a-5p and CCL17 can serve as potential serum biomarkers for CSU."	"Dihydromyricetin attenuates hypertrophic scar formation by targeting activin receptor-like kinase 5. Hypertrophic scar (HPS) is a manifestation of abnormal tissue repair, representing excessive extracellular matrix production and abnormal function of fibroblasts, for which no satisfactory treatment is available at present. Here we identified a natural product of flavonoid, dihydromyricetin, could effectively attenuate HPS formation. We showed that local intradermal injection of dihydromyricetin (50 μM) reduced the gross scar area, cross-sectional size of the scar and the scar elevation index in a mechanical load-induced mouse model. In addition, dihydromyricetin treatment also markedly decreased collagen density of the scar tissue. Furthermore, both in vitro and in vivo study both demonstrated that dihydromyricetin inhibited the proliferation, activation, contractile and migration abilities of hypertrophic scar-derived fibroblasts (HSFs) but did not affect HSFs apoptosis. Western blot analysis revealed that dihydromyricetin could down-regulate the phosphorylation of Smad2 and Smad3 of TGF-β signaling. Such bioactivity of dihydromyricetin may result from its selective binding to the catalytic region of activin receptor-like kinase 5 (ALK5), as suggested by the molecular docking study and kinase binding assay (12.26 μM). Above all, dihydromyricetin may prove to be a promising agent for the treatment of HPS and other fibroproliferative disorders."	"Unveiling the role of microRNA-7 in linking TGF-β-Smad-mediated epithelial-mesenchymal transition with negative regulation of trophoblast invasion. Several pregnancy complications result from abnormal trophoblast invasion. The dichotomous effect of TGF-β on epithelial-mesenchymal transition (EMT) between trophoblast invasion and cancer progression remains unknown and a critical concern. We attenuated the expression of TGF-β type 1 receptor (coding by TGFBR1) with RNA interference in trophoblastic cells and significantly enhanced the trophoblastic invasion. Analysis of microRNA profiles in trophoblasts indicated microRNA-7 as a key molecule linking TGF-β with the negative regulation of trophoblast invasion. We then attenuated TGFBR1 and miR-7 transcription by transducing either short hairpin RNA targeting TGFBR1 or anti-miR-7-locked nucleonic acid, and we observed an up-regulation of EMT-related transcription factors (TFs) and their downstream effectors, causing a mesenchymal transition of trophoblasts. Conversely, overexpression of TGFBR1 or miR-7 led to the epithelial transition of trophoblasts. Our results showed that TGF-β-induced miR-7 expression negatively modulated the TGF-β-SMAD family member 2-mediated EMT pathway via targeting EMT-related TFs and down-regulating their mesenchymal markers. These findings possibly explain, at least in part, why TGF-β exerts an opposite effect on EMT during trophoblast invasion and cancer progression.-Shih, J.-C., Lin, H.-H., Hsiao, A.-C., Su, Y.-T., Tsai, S., Chien, C.-L., Kung, H.-N. Unveiling the role of microRNA-7 in linking TGF-β-Smad-mediated epithelial-mesenchymal transition with negative regulation of trophoblast invasion."	"Dynamic Histological Events and Molecular Changes in Excisional Wound Healing of Diabetic DB/DB Mice. Wound contraction and re-epithelialization over the entire healing process had never been histologically examined daily in diabetic mouse wounds. Correlating morphological characters with molecular changes may be essential to understand the potential mechanism of impeded diabetic wound healing. In 99 db/db and 63 db/m mice, dorsal-paired 8 mm-diameter wounds were created. Wound contraction and re-epithelialization were histologically analyzed daily-six wounds per group each day. A novel three-dimensional collagen gel model was used to study diabetic dermal fibroblast contractility. Fibroblast-to-myofibroblasts differentiation and TGFβ-SMAD signaling pathway through the diabetic db/db wound healing process were studied by immunohistochemistry. Db/db wounds presented delayed closure with impaired wound contraction. Re-epithelialization was not slow but showed thinner epithelial formation and irregular keratinocyte arrangement. Diabetic dermal fibroblasts had significantly lower contractile ability than nondiabetic fibroblasts. In db/db wounds, α-SMA, the marker of myofibroblasts, showed constantly low through the healing, which represented reduced fibroblast-to-myofibroblasts differentiation. Remarkably weak staining of TGFβRI and low accumulation of Smad3 in nuclei were observed. We demonstrated and precisely located downregulated TGFβ signaling pathway in db/db wounds by showing low expression of TGFβRI and failure of Smad3 translocation from cytoplasm to nuclei, which was not reported previously. The downregulated TGFβ signaling pathway may contribute to the attenuated fibroblast-to-myofibroblast differentiation. Deficient re-epithelialization and defective wound contraction contribute principally to delayed healing of diabetic db/db wounds."	"Establishment, molecular and biological characterization of HCB-514: a novel human cervical cancer cell line. Cervical cancer is the fourth most common cancer in women. Although cure rates are high for early stage disease, clinical outcomes for advanced, metastatic, or recurrent disease remain poor. To change this panorama, a deeper understanding of cervical cancer biology and novel study models are needed. Immortalized human cancer cell lines such as HeLa constitute crucial scientific tools, but there are few other cervical cancer cell lines available, limiting our understanding of a disease known for its molecular heterogeneity. This study aimed to establish novel cervical cancer cell lines derived from Brazilian patients. We successfully established one (HCB-514) out of 35 cervical tumors biopsied. We confirmed the phenotype of HCB-514 by verifying its' epithelial and tumor origin through cytokeratins, EpCAM and p16 staining. It was also HPV-16 positive. Whole-exome sequencing (WES) showed relevant somatic mutations in several genes including BRCA2, TGFBR1 and IRX2. A copy number variation (CNV) analysis by nanostring and WES revealed amplification of genes mainly related to kinases proteins involved in proliferation, migration and cell differentiation, such as EGFR, PIK3CA, and MAPK7. Overexpression of EGFR was confirmed by phospho RTK-array and validated by western blot analysis. Furthermore, the HCB-514 cell line was sensitive to cisplatin. In summary, this novel Brazilian cervical cancer cell line exhibits relevant key molecular features and constitutes a new biological model for pre-clinical studies."	"POH1 contributes to hyperactivation of TGF-β signaling and facilitates hepatocellular carcinoma metastasis through deubiquitinating TGF-β receptors and caveolin-1. Hyper-activation of TGF-β signaling is critically involved in progression of hepatocellular carcinoma (HCC). However, the events that contribute to the dysregulation of TGF-β pathway in HCC, especially at the post-translational level, are not well understood. Associations of deubiquitinase POH1 with TGF-β signaling activity and the outcomes of HCC patients were examined by data mining of online HCC datasets, immunohistochemistry analyses using human HCC specimens, spearman correlation and survival analyses. The effects of POH1 on the ubiquitination and stability of the TGF-β receptors (TGFBR1 and TGFBR2) and the activation of downstream effectors were tested by western blotting. Primary mouse liver tissues from polyinosinic:polycytidylic acid (poly I:C)- treated Mx-Cre+, poh1<sup>f/f</sup> mice and control mice were used to detect the TGF-β receptors. The metastatic-related capabilities of HCC cells were studied in vitro and in mice. Here we show that POH1 is a critical regulator of TGF-β signaling and promotes tumor metastasis. Integrative analyses of HCC subgroups classified with unsupervised transcriptome clustering of the TGF-β response, metastatic potential and outcomes, reveal that POH1 expression positively correlates with activities of TGF-β signaling in tumors and with malignant disease progression. Functionally, POH1 intensifies TGF-β signaling delivery and, as a consequence, promotes HCC cell metastatic properties both in vitro and in vivo. The expression of the TGF-β receptors was severely downregulated in POH1-deficient mouse hepatocytes. Mechanistically, POH1 deubiquitinates the TGF-β receptors and CAV1, therefore negatively regulates lysosome pathway-mediated turnover of TGF-β receptors. Our study highlights the pathological significance of aberrantly expressed POH1 in TGF-β signaling hyperactivation and aggressive progression in HCC."	"Flavones hydroxylated at 5, 7, 3' and 4' ameliorate skin fibrosis via inhibiting activin receptor-like kinase 5 kinase activity. Skin fibrosis is mainly characterized by excessive collagen deposition. Studies have recently identified a number of flavonoids with variable structures that have the potency of inhibiting collagen synthesis and thus attenuating organ fibrosis. In this study, we found that flavones with 5, 7, 3', 4' hydroxy substitution reduced collagen expression most efficiently. Among those flavones, luteolin, quercetin, and myricetin were selected for follow-up. In vivo, the three compounds ameliorated skin fibrosis and reduced collagen deposition. Further analysis showed the compounds had significant inhibition on the proliferation, activation and contractile ability of dermal fibroblasts in vitro and in vivo. More importantly, we revealed that luteolin, quercetin, and myricetin selectively downregulated the phosphorylation of Smad2/3 in TGF-β/Smads signaling via binding to activin receptor-like kinase 5 (ALK5) and impairing its catalytic activity. We also found flavones with 5, 7, 3', 4' hydroxy substitution showed stronger affinity with ALK5 compared with other flavonoids. Herein, we identified at least in part the underlying molecular basis as well as the critical structures that contribute to the antifibrotic bioactivity of flavones, which might benefit drug design and modification."	"Upregulation of transforming growth factor-beta type I receptor by interferon consensus sequence-binding protein in osteosarcoma cells. Transforming growth factor-beta (TGF-β) is a known tumor suppressor, which also exerts a tumor promoting activity at an advanced stage of cancer. Previously, we reported that expression of interferon consensus sequence-binding protein (ICSBP), also known as interferon regulatory factor-8, is positively correlated with TGF-β type I receptor (TGF-β RI) expression in osteosarcoma patient tissues. In this study, we demonstrated that ICSBP upregulated TGF-β RI and induced epithelial-to-mesenchymal transition-like phenomena in human osteosarcoma cell lines. As determined by soft agar growth of osteosarcoma cells and xenografted mouse models, ICSBP increased tumorigenicity, which was reversed by ICSBP knock-down or a TGF-β RI inhibitor. To test whether ICSBP directly regulates the promoter activity of TGF-β RI, we performed a TGF-β RI promoter assay, an electro mobility shift assay, and a chromatin immunoprecipitation assay. We observed that TGF-β RI promoter was activated in ICSBP-overexpressing osteosarcoma cells. Exploiting serial deletions and mutations of the TGF-β RI promoter, we found a putative ICSBP-binding site at nucleotides -216/-211 (GGXXTC) in the TGF-β RI promoter. Our data suggest that ICSBP upregulates TGF-β RI expression by binding to this site, causing ICSBP-mediated tumor progression in osteosarcoma cells. In addition, we found a positive correlation between ICSBP and TGF-β RI expression in several types of tumors using the cBioportal database. SUMMARY: We demonstrated that interferon consensus sequence-binding protein upregulates transforming growth factor-beta type I receptor (TGF-β RI) expression by binding to nucleotides -216/-211 (GGXXTC) in the TGF-β RI promoter, which resulted in increased tumorigenicity and tumor progression in human osteosarcoma cells."	"Activation of TGF-β signaling in an aortic aneurysm in a patient with Loeys-Dietz syndrome caused by a novel loss-of-function variant of TGFBR1. Loeys-Dietz syndrome (LDS) is caused by variants of transforming growth factor-β (TGF-β)-related genes and is characterized by aortic aneurysm and dissection. We report an LDS patient with a de novo missense variant of TGFBR1 [c.1126A&gt;G, p.(Lys376Glu)] in which active TGF-β signaling was observed in the aorta, despite the in vitro demonstration that the loss-of-function mutation lies within the serine/threonine kinase domain. The mechanism underlying this TGF-β paradox in LDS aortopathy should be further investigated."	"Next-generation sequencing of 32 genes associated with hereditary aortopathies and related disorders of connective tissue in a cohort of 199 patients. Heritable factors play an important etiologic role in connective tissue disorders (CTD) with vascular involvement, and a genetic diagnosis is getting increasingly important for gene-tailored, personalized patient management. We analyzed 32 disease-associated genes by using targeted next-generation sequencing and exome sequencing in a clinically relevant cohort of 199 individuals. We classified and refined sequence variants according to their likelihood for pathogenicity. We identified 1 pathogenic variant (PV; in FBN1 or SMAD3) in 15 patients (7.5%) and ≥1 likely pathogenic variant (LPV; in COL3A1, FBN1, FBN2, LOX, MYH11, SMAD3, TGFBR1, or TGFBR2) in 19 individuals (9.6%), together resulting in 17.1% diagnostic yield. Thirteen PV/LPV were novel. Of PV/LPV-negative patients 47 (23.6%) showed ≥1 variant of uncertain significance (VUS). Twenty-five patients had concomitant variants. In-depth evaluation of reported/calculated variant classes resulted in reclassification of 19.8% of variants. Variant classification and refinement are essential for shaping mutational spectra of disease genes, thereby improving clinical sensitivity. Obligate stringent multigene analysis is a powerful tool for identifying genetic causes of clinically related CTDs. Nonetheless, the relatively high rate of PV/LPV/VUS-negative patients underscores the existence of yet unknown disease loci and/or oligogenic/polygenic inheritance."	"Gene structure and expression patterns of Acdaf-1, a TGF-β type I receptor in Ancylostoma caninum. The components of the transforming growth factor β (TGF-β) signaling pathway in parasitic nematodes remain unknown. In this research, a type I receptor for TGF-β was isolated from the hookworm Ancylostoma caninum. The new gene was designated as Acdaf-1, a Caenorhabditis elegans daf-1 homolog. The full-length cDNA of Acdaf-1 encodes a 595-amino-acid protein with an NH2-terminal signal peptide. This protein has a cytoplasm tail (209-595aa region) which corresponds to the type 1a membrane topology. Between amino acid position 295-500, the protein contains the ATP binding site, substrate binding sites, and PKC-kinase-like domain. Real-time RT-PCR showed that the transcript was expressed in three main stages of A. caninum. It reached the maximal level in the female adult worm stage with lower transcript level in the first and second larvae (L1/L2) and intermediate level in L3 stages as well as in the male worms. After serum activation, the activity of Acdaf-1 was decreased in L3 larvae. These data implied that Acdaf-1 might relate to the infection ability of the larvae. Immunolocalization revealed that AcDAF-1 was present in eggs, intestine, and epidermis cells of larvae (L1, L2, and L3 stages) with strong signal in primordium of the gonads in L3 and was abundant in epidermis, intestine, and ovary of adult worm. These results suggested that Acdaf-1 might be involved in the interaction of the parasite and host relationship and provide a potential target for parasite control."	"Genetic variants involved in extracellular matrix homeostasis play a role in the susceptibility to frozen shoulder: A case-control study. Frozen shoulder is a condition of loss of active and passive motion as result of inflammatory contracture and fibrosis of the joint capsule. We hypothesize that genetic variants in genes involved in these processes such as genes that play a role in extracellular matrix homeostasis (collagens, glycoproteins, genes involved in TGFβ signaling, and metalloproteinases and its inhibitors) may contribute to the susceptibility to frozen shoulder. We evaluated eighteen SNPs of genes involved in extracellular matrix homeostasis in 186 cases (Nfemales = 114; Nmales = 72) of frozen shoulder and 600 age-matched controls (Nfemales = 308; Nmales = 292). Multivariate logistic regressions were carried out with age, gender, genetic ancestry, and common comorbidities as covariates. Carriers of the C allele of MMP13 rs2252070 and G/G MMP9 (rs17576 A&gt;G/rs17577 G&gt;A) haplotype may have an increased risk of frozen shoulder (p = 0.002, OR = 1.64, 95%CI = 1.20-2.26, and p = 0.046, OR = 1.40, 95%CI = 1.01-1.95, respectively), especially in females (p = 0.005, OR = 1.91, 95%CI = 1.22-2.99, and p = 0.046, OR = 1.59, 95%CI = 1.01-2.51, respectively). In females, the G allele of MMP9 rs17576 tended to contribute to the susceptibility to the studied disease (p = 0.05, OR = 1.51, 95%CI = 0.97-2.33). In contrast, the presence of the C allele of TGFB1 rs1800470 seems to be associated with a reduced risk (p = 0.04, OR = 0.47, 95%CI = 0.23-0.96) while the GG-genotype of TGFBR1 rs1590 was associated with increased risk (p = 0.027, OR = 4.11, 95%CI = 1.17-14.38) to frozen shoulder development in males. Thus, we identified genetic variants that were independent risk factors that can aid in the risk assessment of frozen shoulder reinforcing the involvement of MMP and TGFβ signaling in disease development. © 2019 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res."	"Modulation of Inflammation-Related Genes in the Cornea of a Mouse Model of Dry Eye upon Treatment with Cyclosporine Eye Drops. Purpose/Aim: Inflammation is recognized as playing an etiological role in dry eye disease. This study aimed to assess the efficacy of various topical cyclosporine A (CsA) formulations on cornea inflammatory markers in a mouse model of dry eye. Six- to 7-week-old mice treated with scopolamine were housed in a controlled environment room to induce dry eye. Following dry eye confirmation by corneal fluorescein staining (CFS), the mice were treated three times a day with: 0.05%CsA (Restasis, Allergan), 0.1%CsA (Ikervis, Santen), 1%CsA oil solution, and 0.5% loteprednol etabonate (LE, Lotemax, Baush+Lomb), or left untreated. Aqueous tear production and CFS scores were assessed during the treatment period, and corneas were collected to measure the expression profile of a selection of inflammatory genes. After 7 days of treatment, the CFS scores were reduced by 21%, 31%, and 44% with 0.05%CsA, 0.1%CsA, and 1%CsA eye drops, respectively. By contrast, 0.5% LE did not decrease corneal fluorescein staining at day 10. A statistically significant dose-dependent CFS reduction was observed only between the 0.05% and 1%CsA formulations. The gene expression profiles indicated that 12, 18, 17 genes were downregulated by 0.05%CsA, 0.1%CsA, 1%CsA, respectively. Among them, the genes significantly downregulated were: IL1A, IL1R1, and TLR4 with 0.05%CsA; H2-Eb1, IL1A, IL1B, IL1RN, IL6, TGFB2, TGFB3, TLR2, TLR3, and TLR4 with 0.1%CsA; IL1B, IL6, TGFB3, and TLR4 with 1%CsA. TGFB1 and TGFBR1 were the only genes upregulated in all groups, but only TGFB1 upregulation reached significance. IL6RA was significantly upregulated by 0.05%CsA. This study indicates that the three CsA formulations effectively modulated TLR4, TGFβ1, IL1, and IL6 pathways to reduce corneal epithelium lesions in a mouse model of severe dry eye. The study also suggests that the different anti-inflammatory eye drops modulated inflammatory genes in a slightly different manner."	"Let-7a-5p inhibits BMSCs osteogenesis in postmenopausal osteoporosis mice. The aim of this study was to investigate the mechanism of let-7a-5p in osteogenic differentiation of bone marrow mesenchymal stem cells (BMSCs) in postmenopausal osteoporosis (PMOP) mice. A mouse model of PMOP was established and osteoporosis model was identified by micro-CT scan. BMSCs in the sham group and PMOP group were cultured and osteogenic differentiation was induced. The expression of let-7a-5p in BMSCs was detected by qRT-PCR, and BMSCs was induced by osteogenic differentiation in sham and PMOP group. The BMSCs treated by let-7a-5p mimics, let-7a-5p inhibitor and negative control were named as let-7a-5p mimics group, mimics NC group, let-7a-5p inhibitor group and inhibitor NC group, respectively. ALP staining and alizarin red staining were used to detect osteogenic differentiation ability, qRT-PCR and western blot were used to detect the expression of Runt-related transcription factor 2 (Runx2) and Osterix. The targeting relationship between let-7a-5p and TGFBR1 were verificated by target scan and luciferase reporter gene assay. The PMOP mouse model was successfully established. The expression of let-7a-5p in BMSCs of PMOP group was significantly higher than that in the sham group (P &lt; 0.05). Let-7a-5p reduced the expression of ALP and the formation of calcified nodules, while also inhibited the expression of Runx2 and Osterix. TGFBR1 is the target gene of let-7a-5p. Let-7a-5p might inhibit the osteogenic differentiation of BMSCs in PMOP mice by regulating TGFBR1."	"Hsa-miR-5195-3P induces downregulation of TGFβR1, TGFβR2, SMAD3 and SMAD4 supporting its tumor suppressive activity in HCT116 cells. MicroRNAs are classified as small non-coding RNAs that regulate gene expression mainly through targeting the 3'UTR region of mRNAs. A great number of miRNAs play important role in the regulation of signaling pathways in normal and cancer cells. Here, we predicted hsa-miR-5195-3p (miR-5195-3p) as a potential regulator of TGFβ signaling and investigated its effect on TGFB-R1, TGFB-R2, SMAD2, SMAD3 and SMAD4 transcripts which are key players of TGFβ/SMAD signaling pathway. Overexpression of miR-5195 in HCT116 cells resulted in a significant reduction of TGFB-R1, SMAD2, SMAD3, and SMAD4 at the mRNA level which was confirmed using RT-qPCR. Consistently, western blot analysis confirmed that miR-5195 overexpression in HCT116 cells resulted in downregulation of TGFBR1 at the protein level. Furthermore, dual luciferase analysis verified the direct interaction of miR-5195 with TGFB-R1 and SMAD4 3'UTR sequences in SW480 cells. Additionally, flow cytometry analysis confirmed that miR-5195 overexpression significantly increased the sub-G1 and decreased the G-1 cell populations in both SW480 and HCT116 cell lines. Finally, miR-5195 overexpression significantly downregulated c-MYC and cyclin D1 but upregulated p21 genes. Overall, our results indicated that miR-5195 modulates TGFβ signaling pathway and affects the cell cycle progression through targeting TGFB-R1, TGFB-R2, SMAD2, SMAD3, SMAD4 transcripts."	"Activin-like kinase 5 (ALK5) inactivation in the mouse uterus results in metastatic endometrial carcinoma. The endometrial lining of the uterine cavity is a highly dynamic tissue that is under the continuous control of the ovarian steroid hormones, estrogen and progesterone. Endometrial adenocarcinoma arises from the uncontrolled growth of the endometrial glands, which is typically associated with unopposed estrogen action and frequently occurs in older postmenopausal women. The incidence of endometrial cancer among younger women has been rising due to increasing rates of obesity, a major risk factor for the disease. The transforming growth factor β (TGFβ) family is a highly conserved group of proteins with roles in cellular differentiation, proliferation, and cancer. Inactivating mutations in the genes encoding the TGFβ cell surface receptors (TGFBR1/ALK5 and TGFBR2) have been detected in various human cancers, indicating that a functional TGFβ signaling pathway is required for evading tumorigenesis. In this study, we present a mouse model with conditional inactivation of activin receptor-like kinase 5 (ALK5) in the mouse uterus using progesterone receptor cre (&quot;Alk5 cKO&quot;) that develops endometrial adenocarcinoma with metastasis to the lungs. The cancer and metastatic lung nodules are estrogen dependent and retain estrogen receptor α (ERα) reactivity, but have decreased levels of progesterone receptor (PR) protein. The endometrial tumors develop only in Alk5 cKO mice that are mated to fertile males, indicating that TGFβ-mediated postpartum endometrial repair is critical for endometrial function. Overall, these studies indicate that TGFβ signaling through TGFBR1/ALK5 in the endometrium is required for endometrial homeostasis, tumor suppression, and postpartum endometrial regeneration."	"A Combination Therapy Targeting Endoglin and VEGF-A Prevents Subretinal Fibro-Neovascularization Caused by Induced Müller Cell Disruption. Subretinal fibroneovascularization is one of the most common causes of vision loss in neovascular AMD (nAMD). Anti-VEGF therapy effectively inhibits vascular leak and neovascularization but has little effect on fibrosis. This study aimed to identify a combination therapy to concurrently inhibit subretinal neovascularization and prevent fibrosis. We generated transgenic mice in which induced disruption of Müller cells leads to subretinal neovascularization, which is reliably accompanied by subretinal fibrosis. We conducted Western blots and immunohistochemistry to study changes in transforming growth factor-β (TGFβ) signaling including endoglin, a coreceptor essential for TGFβ signaling, and then tested the effects of monthly intravitreal injection of anti-VEGF-A and anti-endoglin, either alone or in combination, on the development of subretinal fibroneovascularization in our transgenic mice. Müller cell disruption increased expression of TGFβ1, TGFβ type 1 receptor, and phosphorylated-Smad3. Endoglin was strongly expressed in subretinal fibroneovascular tissue. Fluorescein angiography and measurements of retinal vascular permeability indicated that intravitreal anti-VEGF-A in combination with anti-endoglin treatment more efficiently inhibited vascular leak compared with either monotherapy. Immunostaining of retinal wholemounts with antibodies against glial fibrillary acidic protein and ionized calcium binding adaptor molecule 1 indicated that the combination therapy also effectively prevented subretinal fibrosis and inhibited microglial activation. Luminex cytokine assays indicated that intravitreal anti-VEGF-A and anti-endoglin treatment, either alone or in combination, reduced the production of IL33 and macrophage inflammatory protein-3α. Our findings offer a potentially novel combination approach to concurrently managing subretinal neovascularization and fibrosis in nAMD."	"TGFβ Blockade Augments PD-1 Inhibition to Promote T-Cell-Mediated Regression of Pancreatic Cancer. Pancreatic ductal adenocarcinoma (PDAC) remains remarkably lethal with a 5-year survival rate of 8%. This is mainly attributed to the late stage of presentation, as well as widespread resistance to conventional therapy. In addition, PDAC tumors are largely nonimmunogenic, and most patients have displayed incomplete responses to cancer immunotherapies. Our group has previously identified TGFβ as a crucial repressor of antitumor immune function in PDAC, particularly with respect to cytotoxic T lymphocytes. However, pharmacologic inhibition of TGFβ signaling has had limited efficacy in clinical trials, failing to promote a significant antitumor immune response. Hence, in this work, we extend our analysis to identify and circumvent the mechanisms of resistance to TGFβ signal inhibition in PDAC. Consistent with our previous observations, adoptive transfer of TGFβ-insensitive CD8<sup>+</sup> T cells led to the near complete regression of neoplastic disease in vivo However, we demonstrate that this cannot be recapitulated via global reduction in TGFβ signaling, through either genetic ablation or pharmacologic inhibition of TGFBR1. In fact, tumors with TGFβ signal inhibition displayed increased PD-L1 expression and had no observable change in antitumor immunity. Using genetic models of advanced PDAC, we then determined that concomitant inhibition of both TGFβ and PD-L1 receptors led to a reduction in the neoplastic phenotype, improving survival and reducing disease-associated morbidity in vivo Combined, these data strongly suggest that TGFβ and PD-L1 pathway inhibitors may synergize in PDAC, and this approach warrants clinical consideration."	"DANCR-mediated microRNA-665 regulates proliferation and metastasis of cervical cancer through the ERK/SMAD pathway. Emerging evidence has indicated that microRNAs (miRNAs) play an important role in cervical cancer (CC). However, the role of miRNA (miR)-665 in cervical cancer remains unclear. The aim of the present study was to investigate the potential functions of miR-665 in CC and to identify the underlying mechanisms of action. Herein, we show that miR-665 was downregulated in CC tissues and cell lines, which is negatively correlated with tumor size, distant metastasis, advanced TNM stage and poor prognosis. Functionally, miR-665 inhibited cell proliferation, migration and invasion and resistance of cisplatin for CC cells, as well as tumor growth. We validated that transforming growth factor beta receptor 1 (TGFBR1) was a direct target of miR-665 and mediated the ERK/SMAD pathway. In addition, we identified miR-665 as the competing endogenous RNA for long noncoding (lnc)-DANCR. These observations suggested that lnc-DANCR-mediated miR-665 downregulation regulates the malignant phenotype of CC cells by targeting TGFBR1 through the ERK/SMAD pathway, which may present a pathway for novel therapeutic stratagems for CC therapy."	"Synthesis and Evaluation of 3-Substituted-4-(quinoxalin-6-yl) Pyrazoles as TGF-β Type I Receptor Kinase Inhibitors. The transforming growth factor-β (TGF-β), in which overexpression has been associated with various diseases, has become an attractive molecular target for the treatment of cancers. Thirty-two quinoxaline-derivatives of 3-substituted-4-(quinoxalin-6-yl) pyrazoles 14a⁻d, 15a⁻d, 16a⁻d, 17a⁻d, 18a⁻d, 19a⁻d, 25a, 25b, 25d, 26a, 26b, 26d, 27b, and 27d were synthesized and evaluated for their activin TGF-β type I receptor kinase and p38α mitogen activated protein (MAP) kinase inhibitory activity in enzymatic assays. Among these compounds, the most active compound 19b inhibited TGF-β type I receptor kinase phosphorylation with an IC50 value of 0.28 µM, with 98% inhibition at 10 µM. Compound 19b also had good selectivity index of &gt;35 against p38α MAP kinase, with 9.0-fold more selective than clinical candidate, compound 3 (LY-2157299). A molecular docking study was performed to identify the mechanism of action of the synthesized compounds and their good binding interactions were observed. ADMET prediction of good active compounds showed that these ones possess good pharmacokinetics and drug-likeness behavior."	"Long Noncoding RNA HOTTIP Promotes Mouse Hepatic Stellate Cell Activation via Downregulating miR-148a. HOTTIP is a critical modulator in human diseases including liver cancer, but its role and molecular biological mechanisms in liver fibrosis are still unclear. The expression profile of HOTTIP during the progression of liver fibrosis was detected in human liver samples and in CCl4-treated mice using qRT-PCR. The expressing sh-HOTTIP adenoviral vector was used to reduce HOTTIP levels in vivo. Dual-Luciferase Reporter Assay was performed to validate the interaction between miR-148a and HOTTIP, TGFBR1, or TGFBR2. HOTTIP expressions in fibrotic liver samples and cirrhotic liver samples were significantly upregulated compared with healthy liver controls, and cirrhotic samples exhibited the highest levels of HOTTIP. Moreover, HOTTIP expressions were substantially induced in the liver tissues and hepatic stellate cells (HSC) of CCl4-treated mice. Ad-shHOTTIP delivery could alleviate CCl4- induced liver fibrosis in mice. Down-regulation of HOTTIP inhibited the viability and activation of HSCs in vitro, and HOTTIP negatively regulated miR-148a expression in HSCs. miR-148a had a negative effect on HSC activation by targeting TGFBR1 and TGFBR2. HOTTIP is involved in the progression of liver fibrosis by promoting HSC activation. The high level of HOTTIP downregulates miR-148a, thus to increase the level of TGFBR1 and TGFBR2 and contribute to liver fibrosis."	"Reduction of PGRN increased fibrosis during skin wound healing in mice. Progranulin (PGRN) is a multi-functional growth factor known to be involved in regulating of development, cell cycle progression, cell motility, tumorigenesis and angiogenesis. Research has revealed that PGRN is a crucial mediator of skin wound healing. Nonetheless, the role of PGRN in the fibrosis process of cutaneous wound healing has not been identified. In the present study, mice with excisional wounds were treated with si-m-PGRN or physiological saline. We observed the expression of PGRN in intact and post-injury skin by immunohistochemistry. Tissue sections of skin around the wound were performed by hematoxylin &amp; eosin and masson's trichrome staining. After PGRN knockdown by siRNA, the expression of PGRN, collagen I (Col I), small mothers against decapentaplegic homolog 3 (Smad3), phosphorylated Smad3 (P-Smad3), transforming growth factor (TGF)-β1 and TGF-β receptor I (TβRI) were detected by real-time reverse transcription polymerase chain reaction (RT-qPCR) or Western blot. PGRN mRNA and protein expressions were increased after insult and remained above that of intact skin through day 20. Down-regulation of PGRN augmented fibrosis area, skin thickness and the expression of Col I. In addition, reduction of PGRN considerably increased the expression of TGF-β1, TβRI, Smad3 and P-Smad3. These results indicate that PGRN knockdown enhances the fibrosis degree, probably via the TGF-β/Smad signaling pathway."	"miR-3607-3p suppresses non-small cell lung cancer (NSCLC) by targeting TGFBR1 and CCNE2. Accumulating evidence indicates that miRNAs can be promising diagnostic and/or prognostic markers for various cancers. In this study, we identified a novel miRNA, miR-3607-3p, and its targets in non-small cell lung cancer (NSCLC). The expression of miR-3607-3p was measured and its correlation with patient prognosis was determined. Ectopic expression in NSCLC cells, xenografts, and metastasis models was used to evaluate the effects of miR-3607-3p on proliferation and migration of NSCLC. Luciferase assay and western blotting were performed to validate the potential targets of miR-3607-3p after preliminary screening by microarray analysis and computer-aided algorithms. We demonstrated that miR-3607-3p was downregulated in NSCLC tissues and that miR-3607-3p might act as an independent predictor for overall survival in NSCLC. Moreover, serum miR-3607-3p may be a novel and stable marker for NSCLC. We found that overexpression of miR-3607-3p inhibited cell proliferation, colony formation, migration and invasion, and hampered the cell cycle of NSCLC cell lines in vitro. Our results suggested that miR-3607-3p directly targets TGFBR1 and CCNE2. In accordance with in vitro studies, we confirmed that miR-3607-3p functions as a potent suppressor miRNA of NSCLC. We showed that miR-3607-3p agomir could reduce tumor growth and inhibit TGFBR1 and CCNE2 protein expression. Taken together, our findings indicate that miR-3607-3p can inhibit NSCLC cell growth and metastasis by targeting TGFBR1 and CCNE2 protein expression, and provide new evidence of miR-3607-3p as a potential non-invasive biomarker and therapeutic target for NSCLC."	"Clathrin-Mediated Endocytosis Regulates a Balance between Opposing Signals to Maintain the Pluripotent State of Embryonic Stem Cells. Endocytosis is implicated in the maintenance of embryonic stem cell (ESC) pluripotency, although its exact role and the identity of molecular players remain poorly understood. Here, we show that the clathrin heavy chain (CLTC), involved in clathrin-mediated endocytosis (CME), is vital for maintaining mouse ESC (mESC) pluripotency. Knockdown of Cltc resulted in a loss of pluripotency accompanied by reduced E-cadherin (E-CAD) levels and increased levels of transforming growth factor β (TGF-β) and extracellular signal-regulated kinase (ERK) signaling. We demonstrate that both E-CAD and TGF-β receptor type 1 (TGF-βR1) are internalized through CME in mESCs. While E-CAD is recycled, TGF-βR1 is targeted for lysosomal degradation thus maintaining inverse levels of these molecules. Finally, we show that E-CAD interacts with ERK, and that the decreased pluripotency upon CME loss can be rescued by inhibiting TGF-βR, MEK, and GSK3β, or overexpressing E-CAD. Our results demonstrate that CME is critical for balancing signaling outputs to regulate ESC pluripotency, and possibly cell fate choices in early development."	"Glandular defects in the mouse uterus with sustained activation of TGF-beta signaling is associated with altered differentiation of endometrial stromal cells and formation of stromal compartment. Uterine gland development, also known as adenogenesis, is a key uterine morphogenic process indispensable for normal uterine function and fertility. Our earlier studies have reported that overactivation of TGFB receptor 1 (TGFBR1) in the mouse uterus using progesterone receptor (Pgr)-Cre recombinase causes female infertility, defective decidualization, and reduced uterine gland formation, a developmental milestone of postnatal uterus. To understand mechanisms that underpin the disrupted uterine gland formation in mice with sustained activation of TGFBR1, we raised the question of whether early postnatal adenogenesis was compromised in these mice. Experiments were designed using mice with constitutive activation of TGFBR1 driven by Pgr-Cre to determine the timing of adenogenic defects and potential mechanisms associated with dysregulation of adenogenic genes, luminal epithelial cell proliferation and endometrial fibrotic changes. Uterine tissues from mice with constitutive activation of TGFBR1 were collected during the critical time window of adenogenesis and analyzed together with age-matched controls. Multiple approaches including immunohistochemistry, immunofluorescence, Trichrome staining, quantitative real-time PCR, western blot, conditional knockout and human endometrial cell culture were utilized. TGFBR1 activation in the mouse uterus suppressed adenogenesis during postnatal uterine development, concomitant with the aberrant differentiation of uterine stromal cells. Analysis of transcript expression of WNT pathway components revealed dysregulation of adenogenesis-associated genes. Notably, the adenogenic defects occurred in spite of the increased proliferation of uterine luminal epithelial cells, accompanied by increased expression of genes associated with fibrotic changes. Moreover, the adenogenic defects were alleviated in mice where TGFBR1 was activated in presumably half of the complement of uterine cells. Our results suggest that altered differentiation of endometrial stromal cells and formation of stromal compartment promote adenogenic defects."	"MicroRNA-101 protects bladder of BOO from hypoxia-induced fibrosis by attenuating TGF-β-smad2/3 signaling. Bladder outlet obstruction is a common disease, which always evokes urinary bladder wall remodeling significantly. It has been suggested that bladder outlet obstruction can make the bladder progression from inflammation to fibrosis, and hypoxia may play a vital role. It has been found the expression of microRNA-101 varied in bladder after BOO. But what role microRNA-101 and hypoxia play in bladder is not well known. This study is to investigate the mechanism of microRNA-101 and hypoxia in fibrosis of bladder after BOO. We found the expression of microRNA-101 and hif-1α increased in bladder after BOO. Hypoxia could promote the expression of extracellular matrix subtypes and microRNA-101 in BSMCs. When microRNA-101b was translated into BSMCs, the smad2/3 signaling pathway was found to repress. Dual luciferase reporter detected that microRNA-101b attenuated the TGF-β signaling pathway by inhibiting the expression of TGFβR1. Then, we conclude microRNA-101b is induced by hypoxia and represses fibrosis of BSMCs by inhibiting the expression of TGFβR1 through TGF-β signaling pathway, and it may be an anti-fibrotic miRNA for therapy. © 2018 IUBMB Life, 71(1):235-243, 2019."	"Natural Killer-Derived Exosomal miR-186 Inhibits Neuroblastoma Growth and Immune Escape Mechanisms. In neuroblastoma, the interplay between immune cells of the tumor microenvironment and cancer cells contributes to immune escape mechanisms and drug resistance. In this study, we show that natural killer (NK) cell-derived exosomes carrying the tumor suppressor microRNA (miR)-186 exhibit cytotoxicity against MYCN-amplified neuroblastoma cell lines. The cytotoxic potential of these exosomes was partly dependent upon expression of miR-186. miR-186 was downregulated in high-risk neuroblastoma patients, and its low expression represented a poor prognostic factor that directly correlated with NK activation markers (i.e., NKG2D and DNAM-1). Expression of MYCN, AURKA, TGFBR1, and TGFBR2 was directly inhibited by miR-186. Targeted delivery of miR-186 to MYCN-amplified neuroblastoma or NK cells resulted in inhibition of neuroblastoma tumorigenic potential and prevented the TGFβ1-dependent inhibition of NK cells. Altogether, these data support the investigation of a miR-186-containing nanoparticle formulation to prevent tumor growth and TGFβ1-dependent immune escape in high-risk neuroblastoma patients as well as the inclusion of ex vivo-derived NK exosomes as a potential therapeutic option alongside NK cell-based immunotherapy.Significance: These findings highlight the therapeutic potential of NK cell-derived exosomes containing the tumor suppressor miR-186 that inhibits growth, spreading, and TGFβ-dependent immune escape mechanisms in neuroblastoma."	"Features of multiple self-healing squamous epithelioma and Loeys-Dietz syndrome in a patient with a novel TGFBR1 variant. Multiple self-healing squamous epithelioma (MSSE, Ferguson-Smith disease) and Loeys-Dietz syndrome (LDS) are allelic conditions associated with pathogenic variants in the transforming growth factor beta receptor 1 gene (TGFBR1). We describe a patient with a novel missense variant in this gene: c.664G &gt; A, p.[Gly222Arg], who clinically presents with both syndromes. The patient also has a history of gastric antral vascular ectasia, which has not been reported previously in LDS."	"Targeting FOXA1-mediated repression of TGF-β signaling suppresses castration-resistant prostate cancer progression. Prostate cancer (PC) progressed to castration resistance (CRPC) is a fatal disease. CRPC tumors develop resistance to new-generation antiandrogen enzalutamide through lineage plasticity, characterized by epithelial-mesenchymal transition (EMT) and a basal-like phenotype. FOXA1 is a transcription factor essential for epithelial lineage differentiation. Here, we demonstrate that FOXA1 loss leads to remarkable upregulation of transforming growth factor beta 3 (TGFB3), which encodes a ligand of the TGF-β pathway. Mechanistically, this is due to genomic occupancy of FOXA1 on an upstream enhancer of the TGFB3 gene to directly inhibit its transcription. Functionally, FOXA1 downregulation induces TGF-β signaling, EMT, and cell motility, which is effectively blocked by the TGF-β receptor I inhibitor galunisertib (LY2157299). Tissue microarray analysis confirmed reduced levels of FOXA1 protein and a concordant increase in TGF-β signaling, indicated by SMAD2 phosphorylation, in CRPC as compared with primary tumors. Importantly, combinatorial LY2157299 treatment sensitized PC cells to enzalutamide, leading to synergistic effects in inhibiting cell invasion in vitro and xenograft CRPC tumor growth and metastasis in vivo. Therefore, our study establishes FOXA1 as an important regulator of lineage plasticity mediated in part by TGF-β signaling, and supports a novel therapeutic strategy to control lineage switching and potentially extend clinical response to antiandrogen therapies."	"Association between endoglin/transforming growth factor beta receptors 1, 2 gene polymorphisms and the level of soluble endoglin with preeclampsia in Egyptian women. Preeclampsia (PE) is a pregnancy-specific hypertensive disease whose etiopathogenesis remains unclear. This study was designed to assess association between PE and 3 single nucleotide polymorphisms (SNPs): ENG(G/A) rs11792480, TGFβR1(A/C) rs10739778 and TGFβR2(G/A) rs6550005, beside circulating soluble endoglin (sENG), oxidative stress biomarkers and nitric oxide (NO) in Egyptian women. The study included 75 preeclamptic women stratified into 4 clinical subgroups and 50 normotensive pregnant women. Genotyping was performed by real time polymerase chain reaction-Taqman allelic discrimination. Preeclamptic women showed significantly increased sENG and malondialdehyde (MDA), decreased total antioxidant capacity (TAC), endothelial nitric oxide synthase (eNOS) and NO, without change in transforming growth factor beta 1 (TGFβ1) versus controls. Moreover, sENG was significantly higher in severe and early than mild and late PE. Higher MDA and lower TAC and NO were observed in severe than mild PE. ENG(G/A) and TGFβR2(G/A) showed no association with PE. However, CC genotype of TGFβR1(A/C) was more frequent in controls than either PE, early-onset or severe revealing a reduced PE risk in CC genotype versus AA or AA + AC. Importantly, patients carrying AA genotype had higher SBP and MDA with lower TAC, gestational age at delivery (GA) and birth weight than those carrying CC genotype. Excessive sENG release with decreased eNOS/NO may be involved in PE pathogenesis. Women who carry C allele or CC genotype of TGFβR1(A/C) may be less prone to develop PE."	"Polymorphisms of TGFBR1, TLR4 are associated with prognosis of gastric cancer in a Chinese population. Helicobacter pylori (H. pylori)-induced gastric cancer is an intricate progression of immune response against H. pylori infection. IL-16, TGF-β1 and TLR4 pathways were the mediators involved in the immune response. We hypothesized that genetic variations in genes of these pathways have potential susceptibility to gastric cancer risk, and predict clinical outcomes of patients. To investigate the susceptibility and prognostic value of genetic variations of IL-16, TGFBR1 and TLR4 pathways to gastric cancer, we performed a case-control study combined a retrospective study in a Chinese population. Genotyping for all polymorphisms was based on the Sequenom's MassARRAY platform, and H. pylori infection was determined by using an immunogold testing kit. We found rs10512263 CC genotype was found to be a decreased risk of gastric cancer (CC vs. TT: adjusted OR = 0.54, 95% CI 0.31-0.97); however, rs334348 GG genotype was associated with increased risk of gastric cancer (GG vs. AA: adjusted OR = 1.51, 95% CI 1.05-2.18). We found that carriers harboring rs1927911 A allele (GA/AA) or rs10512263 C allele (CT/CC) have unfavorable survival time than none carriers (rs1927911: GA/AA vs. GG: adjusted HR = 1.27, 95% CI 1.00-1.63; rs10512263: CT/CC vs. TT: adjusted HR = 1.29, 95% CI 1.02-1.63) and that individuals harboring both two minor alleles (rs1927911 GA/AA and rs10512263 CT/CC) suffered a significant unfavorable survival (adjusted HR = 1.64, 95% CI 1.17-2.31). In short, we concluded that two polymorphisms (rs334348, rs10512263) in TGFBR1 were associated with risk of gastric cancer, and that TLR4 rs1927911 and TGFBR1 rs10512263 were associated with clinical outcomes of gastric cancer patients."	"EW-7197 prevents ulcerative colitis-associated fibrosis and inflammation. EW-7197 is a transforming growth factor-β type I receptor kinase inhibitor with potential anti-inflammatory and antifibrotic properties. Here, we investigate the potential therapeutic effects of EW-7197 in a murine model of ulcerative colitis. EW-7197 attenuated the colitis disease activity index by improving rectal bleeding, body weight, and degree of stool consistency. EW-7197 also reduced colorectal tissue damage and the colon histopathological score by reducing crypt loss, mucosal damage, and tissue inflammation. Moreover, EW-7197 appeared to ameliorate the inflammatory and fibrotic responses by reducing oxidative stress, reducing submucosal edema and inflammatory cell infiltration, downregulating proinflammatory and pro-fibrotic genes, and inhibiting excessive collagen deposition in inflamed and fibrotic ulcerative colitis tissues. These results suggest that EW-7197 has potentially useful therapeutic properties against colitis, with clinically translational potential of inhibiting key pathological responses of inflammation and fibrosis in patients with colitis."	"Roles of miRNA-1 and miRNA-133 in the proliferation and differentiation of myoblasts in duck skeletal muscle. MicroRNA (miRNA)-1 and miRNA-133 are derived from the same bicistronic pairs with roles in skeletal muscle development. Many investigations have focused on the role of miRNA-1 and miRNA-133 in the regulation of skeletal muscle development in mammals and fish. However, the mechanisms of miRNA-1 and miRNA-133 underlying the differences in skeletal muscle development between different breeds are not well known. Our study found that the weights of body and breast at 42 days of age were greater in Cherry Valley ducks than in Putian ducks and the areas of breast muscle fibers increased with age; the areas of muscle fibers of Cherry Valley ducks were always greater than those of Putian ducks. Besides, quantitative reverse-transcriptase polymerase chain reaction analysis revealed that relatively high levels of miRNA-1 and miRNA-133 were detected in heart, breast, and leg muscles compared with the liver, spleen, lung, kidney, and the expression levels of miRNA-1 and miRNA-133 remained stable in the embryo stage, and in the growth period, the fluctuation in miRNA expression levels in Putian ducks was considerably higher than that in Cherry Valley ducks, especially from 7 to 28 days. However, in the late growth period, the expression of miRNA-1 and miRNA-133 of Cherry Valley duck was higher than that of Putian duck, which may indicate that miRNA-1 and miRNA-133 play a more important role during the growth period. To determine the function of miRNA-1 and miRNA-133 in skeletal muscle development, we found that the overexpression of miRNA-1, but not miRNA-133, promoted fusion of adjacent myoblasts. By contrast, a repressor of miRNA-1 promoted, whereas a miRNA-133 inhibitor inhibited, myoblast proliferation. Accordingly, the expression levels of myocyte enhancer factor 2D (MEF2D) and myogenic differentiation ( MYOD) were significantly increased by an miRNA-1 mimic and the miRNA-133 inhibitor. In addition, we found that the expression levels of miRNA-1 significantly affected the expression of histone deacetylase 4 ( HDAC4), and miRNA-133 affected serum response factor ( SRF) and transforming growth factor β receptor 1 ( TGFBR1) levels. However, dual-luciferase reporter assays revealed that only miRNA-1 directly inhibited pGL- HDAC4 luciferase reporter activity, whereas miRNA-133 did not affect pGL- SRF or pGL- TGFBR1 fluorescence activity. Taken together, these results suggest that miRNA-1 targets HDAC4 to promote the differentiation of duck myoblasts and miRNA-133 may affect SRF and TGFBR1 expression to promote proliferation, which indicates that miRNA-1 and miRNA-133 play different important roles in skeletal muscle development."	"Preclinical Evaluation of AZ12601011 and AZ12799734, Inhibitors of Transforming Growth Factor β Superfamily Type 1 Receptors. The transforming growth factor β (TGFβ) superfamily includes TGFβ, activins, inhibins, and bone morphogenetic proteins (BMPs). These extracellular ligands have essential roles in normal tissue homeostasis by coordinately regulating cell proliferation, differentiation, and migration. Aberrant signaling of superfamily members, however, is associated with fibrosis as well as tumorigenesis, cancer progression, metastasis, and drug-resistance mechanisms in a variety of cancer subtypes. Given their involvement in human disease, the identification of novel selective inhibitors of TGFβ superfamily receptors is an attractive therapeutic approach. Seven mammalian type 1 receptors have been identified that have context-specific roles depending on the ligand and the complex formation with the type 2 receptor. Here, we characterize the biologic effects of two transforming growth factor β receptor 1 (TGFBR1) kinase inhibitors designed to target TGFβ signaling. AZ12601011 [2-(2-pyridinyl)-4-(1H-pyrrolo[3,2-c]pyridin-1-yl)-6,7-dihydro-5H-cyclopenta[d]pyrimidine]; structure previously undisclosed] and AZ12799734 [4-({4-[(2,6-dimethyl-3-pyridinyl)oxy]-2-pyridinyl}amino)benzenesulfonamide] (IC50 = 18 and 47 nM, respectively) were more effective inhibitors of TGFβ-induced reporter activity than SB-431542 [4-[4-(1,3-benzodioxol-5-yl)-5-(2-pyridinyl)-1H-imidazol-2-yl]benzamide] (IC50 = 84 nM) and LY2157299 [4-[2-(6-methylpyridin-2-yl)-5,6-dihydro-4H-pyrrolo[1,2-b]pyrazol-3-yl]quinoline-6-carboxamide monohydrate]] (galunisertib) (IC50 = 380 nM). AZ12601011 inhibited phosphorylation of SMAD2 via the type 1 receptors activin A receptor type 1B (ALK4), TGFBR1, and activin A receptor type 1C (ALK7). AZ12799734, however, is a pan TGF/BMP inhibitor, inhibiting receptor-mediated phosphorylation of SMAD1 by activin A receptor type 1L, bone morphogenetic protein receptor type 1A, and bone morphogenetic protein receptor type 1B and phosphorylation of SMAD2 by ALK4, TGFBR1, and ALK7. AZ12601011 was highly effective at inhibiting basal and TGFβ-induced migration of HaCaT keratinocytes and, furthermore, inhibited tumor growth and metastasis to the lungs in a 4T1 syngeneic orthotopic mammary tumor model. These inhibitors provide new reagents for investigating in vitro and in vivo pathogenic processes and the contribution of TGFβ- and BMP-regulated signaling pathways to disease states."	"Attenuation of pulmonary fibrosis in type I collagen-targeted reporter mice with ALK-5 inhibitors. Idiopathic pulmonary fibrosis (IPF) is a progressive and fatal disease, and consequently, effective antifibrotic drugs are strongly desired. Although we have previously reported a validated Col1a1-Luc Tg rat model for fibrosis, there are only a few mouse models that enable the evaluation of fibrosis in a short time period and with high sensitivity. Therefore, we generated a Col1a1-internal ribosome entry site (IRES)-Luc knock-in (KI) mouse in which the IRES-luciferase gene construct was inserted into the 3'-UTR of the type I collagen alpha 1 gene (Col1a1). There was a high correlation between luciferase activity and hydroxyproline content in the KI mice, which is similar to the result that we have previously reported for the Col1a1-Luc Tg rat model. In a bleomycin (BLM)-induced lung fibrosis model, luciferase activity in the lung showed a significant increase 3 days after BLM treatment, while only a slight increase was observed in the hydroxyproline content. An ALK-5 inhibitor-R-268712-was effective in inhibiting the luciferase activity in both the in vivo BLM-induced lung fibrosis model and in vitro primary mouse lung fibroblasts. This suggests that fibroblasts are the major collagen-producing cells in lung fibrosis. In human lung fibroblasts, TGF-β stimulation induced α-smooth muscle actin as observed by immunostaining, suggesting that myofibroblast transdifferentiation (MTD) plays an important role in lung fibrosis. Together, these results indicated that ALK-5 inhibitors might affect lung fibrosis mainly via the inhibition of MTD. Thus, the Col1a1-IRES-Luc KI mouse might be useful for the evaluation of antifibrotic effects and their underlying mechanisms."	"Regulatory effect of hsa-miR-5590-3P on TGFβ signaling through targeting of TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 transcripts. Transforming growth factor-β (TGFβ) signaling acts as suppressor and inducer of tumor progression during the early and late stages of cancer, respectively. Some miRNAs have shown a regulatory effect on TGFβ signaling and here, we have used a combination of bioinformatics and experimental tools to show that hsa-miR-5590-3p is a regulator of multiple genes expression in the TGFβ signaling pathway. Consistent with the bioinformatics predictions, hsa-miR-5590-3p had a negative correlation of expression with TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 genes, detected by reverse transcription-quantitative polymerase chain reaction (RT-qPCR). Then, the dual luciferase assay supported the direct interaction between hsa-miR-5590-3p and TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4-3'UTR sequences. Consistently, the TGFβ-R1 protein level was reduced following the overexpression of hsa-miR-5590-3p, detected by Western analysis. Also, hsa-miR-5590-3p overexpression brought about the downregulation of TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 expression in HCT-116 cells, detected by RT-qPCR, followed by cell cycle arrest in the sub-G1 phase, detected by flow cytometry. RT-qPCR results indicated that hsa-miR-5590-3p is significantly downregulated in breast tumor tissues (late stage) compared to their normal pairs. Altogether, data introduces hsa-miR-5590-3p as a negative regulator of the TGFβ/SMAD signaling pathway which acts through downregulation of TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 transcripts. Therefore, it can be tested as a therapy target in cancers in which the TGFβ/SMAD pathway is deregulated."	"MicroRNA-98-5p inhibits proliferation and metastasis in non-small cell lung cancer by targeting TGFBR1. MicroRNAs (miRNAs or miRs) have recently emerged as key regulators of various types of cancer, including non‑small cell lung cancer (NSCLC). The disrupted expression of miRNAs is associated with tumorigenesis and metastasis; however, the underlying mechanisms remain unclear. In this study, we demonstrate that miR‑98‑5p is downregulated in NSCLC and that miR‑98‑5p deficiency is associated with an advanced clinical stage and metastasis. A dual‑luciferase reporter assay was performed to confirm that transforming growth factor beta receptor 1 (TGFBR1), a key stimulator of tumor proliferation and metastasis, was a direct target of miR‑98‑5p. miR‑98‑5p overexpression resulted in the downregulation of TGFBR1 and the suppression of the viability, proliferation, migration and invasion of A549 and H1299 cells. Furthermore, miR‑98‑5p was demonstrated to be an efficient suppressor of tumor growth in an A549 subcutaneous xenograft tumor mouse model. Finally, miR‑98‑5p overexpression exerted a significant anti‑metastatic effect in a mouse model of pulmonary metastasis. On the whole, the results of the present study suggest that miR‑98‑5p/TGFBR1 may serve as promising targets for NSCLC therapy."	"Novel Transforming Growth Factor-Beta Receptor 1 Antagonists through a Pharmacophore-Based Virtual Screening Approach. As new drugs for the treatment of malignant tumors, transforming growth factor-beta receptor 1 (TGFβR1) antagonists have attracted wide attention. Based on the crystal structure of TGFβR1-BMS22 complex, the pharmacophore model A02 with two hydrogen bond acceptors (HBAs) and four hydrophobic (HYD) properties was constructed. From the common features of active ligands reported in the literature, pharmacophore model B10 was also generated, which has two aromatic ring centers (RAs) and two HYD properties. The two models have high sensitivity and specificity to the training set, and they are highly consistent in spatial structure. Combining the two pharmacophore models, two novel skeleton structures with potential activity were selected by virtual screening from the DruglikeDiverse, MiniMaybridge, and ZINC Drug-Like databases. Four compounds (YXY01⁻YXY04) with potential anti-TGFβR1 activity were designed based on the new skeleton structures. In combination with Lipinski's rules; absorption, distribution, metabolism, excretion, and toxicity (ADMET); and, toxicological properties predicted in the study, YXY01-03 with the novel skeleton, good drug-like properties, and potential activity were finally discovered and may have higher safety relative to BMS22, which may be valuable for further research."	"Estrogen-induced Tgfbr1 and Bmpr1a Expression Repressed via Estrogen Receptor Beta in MC3T3-E1 Cells. Estrogen, as an important hormone in human physiological process, is closely related to bone metabolism. The aim of this study was to investigate the mechanism of estrogen on osteoblasts metabolism in MC3T3-E1 cells. We treated the MC3T3-E1 cells with different concentrations of β-estradiol (0.01, 0.1, 1, and 10 nmol/L), observed the morphological changes of the cells, and detected the cell's proliferation and apoptosis of MC3T3-E1 cells. Two transcriptome libraries were constructed and sequenced. Quantitative real-time polymerase chain reaction (qRT-PCR) was performed to confirm the differentially expressed genes (DEGs), and then treated the MC3T3-E1 cells with estrogen receptor (ER) inhibitors α and β, respectively, and then examined the expression of Tgfbr1 and Bmpr1a genes. The promoter of Tgfbr1 and Bmpr1a gene was analyzed, and the ER response elements were identified. Finally, ChIP was used to verify the binding of ER to Tgfbr1 and Bmpr1a promoter. In the high-concentration β-estradiol treatment group (1 nmol/L and 10 nmol/L), there was no significant difference in the morphology of the cells under the microscope, 1 nmol/L and 10 nmol/L treated group appeared statistically significant difference in cell apoptosis and proliferation (P &lt; 0.05 and P &lt; 0.01, respectively). We found 460 DEGs compared with the control group. Among the DEGs, there were 66 upregulated genes and 394 downregulated genes. Gene ontology classification and Kyoto Encyclopedia of Genes and Genomes pathway analysis revealed that many bone metabolism-related biological processes and cell signaling pathways were disordered. The qRT-PCR verification showed that the expressions of Tgfbr1- and Bmpr1a-related genes in bone metabolism pathway in the 10 nmol/L treatment group were significantly decreased (P &lt; 0.05). ER β was involved in the inhibitory effect of Tgfbr1 and Bmpr1a genes. The bioinformatics of the promoter found that there were three ER response elements in the promoter of Tgfbr1, and there were two ER response elements in Bmpr1a promoter regions. ChIP experiments showed that estrogen could enhance the binding of ERs to Tgfbr1 and Bmpr1a genes. Estrogen can promote the apoptosis and proliferation of osteoblasts simultaneously, and the mechanism may be the joint action of transforming growth factor-beta, Wnt, mitogen-activated protein kinase, and nuclear factor-kappaB bone metabolism-related signaling pathway. Estrogen inhibits the expression of Tgfbr1 and Bmpr1a genes through ER β and affects the metabolism of MC3T3-E1 osteoblasts. 雌激素通过雌激素受体β抑制MC3T3-E1细胞Tgfbr1和Bmpr1a基因的表达摘要背景:雌激素作为人体生理过程中重要的激素,与骨代谢密切相关。本研究利用MC3T3-E1作为细胞模型,进一步研究雌激素对骨代谢的影响。 方法:分别用0.01、0.1、1和10 nmol/L浓度的β-雌二醇处理成骨细胞MC3T3-E1,并设对照组;然后利用CCK-8试剂盒、TUNEL试剂盒检测不同浓度下MC3T3-E1细胞的增值和凋亡状况;选用10 nmol/L β-雌二醇的处理组,与对照组构建两个转录组库,进行RNA深度测序分析;利用qRT-PCR验证差异表达的基因,使用雌激素受体抑制剂分别处理MC3T3-E1细胞,检测Tgfbr1和Bmpr1a两个基因的表达。启动子分析软件分析Tgfbr1和Bmpr1a基因,ChIP实验验证雌激素受体β对Tgfbr1和Bmpr1a启动子的绑定作用。 结果:在低浓度(0.01 nmol/L和0.1 nmol/L)的处理组中,在细胞的形态、细胞的增殖和细胞的凋亡等细胞行为方面相对于DMSO对照组都没有产生明显的差异(P&gt;0.05);在1 nmol/L和10 nmol/L高浓度β-雌二醇处理组中,细胞的凋亡和细胞的增殖活性增强,1 nmol/L处理组有明显差异(P&lt;0.05),并且在10 nmol/L处理组出现了极其显著的差异(P&lt;0.01)。深度测序发现10 nmol/L处理组中有460个差异表达基因,在这些差异表达基因中,上调的基因有66个,下调的基因有394个。利用这些差异表达基因,本研究进行GO分类和pathway分析,发现许多骨代谢相关的生物过程和细胞信号通路。在这些被富集的骨代谢相关的信号通路中,包括经典的TGF-β信号通路,Wnt信号通路,MAPK信号通路。差异表达基因qRT-PCR验证显示,10 nmol/L 处理组中骨代谢通路相关基因Tgfbr1和Bmpr1a表达明显下降(P&lt;0.05)。雌激素受体β参与了雌激素对Tgfbr1和Bmpr1a基因的抑制性作用,生物信息学分析发现,在Tgfbr1的启动子区域存在3个雌激素受体应答原件,在Bmpr1a的启动子区域有2个雌激素受体应答原件。ChIP实验证明, 雌激素能够增强雌激素受体β对Tgfbr1和Bmpr1a基因的绑定性作用。 结论:雌激素能同时促进成骨细胞凋亡、增殖, 其机制可能是TGF-β、Wnt、MAPK及NF-kappaB骨代谢相关信号通路共同作用结果;雌激素通过雌激素受体β抑制Tgfbr1和Bmpr1a基因的表达, 影响MC3T3-E1成骨细胞代谢。."	"Acid bone lysate activates TGFβ signalling in human oral fibroblasts. Demineralized bone matrix is a widely used allograft from which not only the inorganic mineral but also embedded growth factors are removed by hydrochloric acid (HCl). The cellular response to the growth factors released during the preparation of demineralized bone matrix, however, has not been studied. Here we investigated the in vitro impact of acid bone lysate (ABL) prepared from porcine cortical bone chips on oral fibroblasts. Proteomic analysis of ABL revealed a large spectrum of bone-derived proteins including TGF-β1. Whole genome microarrays and RT-PCR together with the pharmacologic blocking of TGF-β receptor type I kinase with SB431542 showed that ABL activates the TGF-β target genes interleukin 11, proteoglycan 4, and NADPH oxidase 4. Interleukin 11 expression was confirmed at the protein level by ELISA. Immunofluorescence and Western blot showed the nuclear localization of Smad2/3 and increased phosphorylation of Smad3 with ABL, respectively. This effect was independent of whether ABL was prepared from mandible, calvaria or tibia. These results demonstrate that TGF-β is a major growth factor that is removed upon the preparation of demineralized bone matrix."	"Glycoprotein M6B Interacts with TβRI to Activate TGF-β-Smad2/3 Signaling and Promote Smooth Muscle Cell Differentiation. Smooth muscle cells (SMCs), which form the walls of blood vessels, play an important role in vascular development and the pathogenic process of vascular remodeling. However, the molecular mechanisms governing SMC differentiation remain poorly understood. Glycoprotein M6B (GPM6B) is a four-transmembrane protein that belongs to the proteolipid protein family and is widely expressed in neurons, oligodendrocytes, and astrocytes. Previous studies have revealed that GPM6B plays a role in neuronal differentiation, myelination, and osteoblast differentiation. In the present study, we found that the GPM6B gene and protein expression levels were significantly upregulated during transforming growth factor-β1 (TGF-β1)-induced SMC differentiation. The knockdown of GPM6B resulted in the downregulation of SMC-specific marker expression and repressed the activation of Smad2/3 signaling. Moreover, GPM6B regulates SMC Differentiation by Controlling TGF-β-Smad2/3 Signaling. Furthermore, we demonstrated that similar to p-Smad2/3, GPM6B was profoundly expressed and coexpressed with SMC differentiation markers in embryonic SMCs. Moreover, GPM6B can regulate the tightness between TβRI, TβRII, or Smad2/3 by directly binding to TβRI to activate Smad2/3 signaling during SMC differentiation, and activation of TGF-β-Smad2/3 signaling also facilitate the expression of GPM6B. Taken together, these findings demonstrate that GPM6B plays a crucial role in SMC differentiation and regulates SMC differentiation through the activation of TGF-β-Smad2/3 signaling via direct interactions with TβRI. This finding indicates that GPM6B is a potential target for deriving SMCs from stem cells in cardiovascular regenerative medicine. Stem Cells 2018 Stem Cells 2019;37:190-201."	"H19/miR-148a/USP4 axis facilitates liver fibrosis by enhancing TGF-β signaling in both hepatic stellate cells and hepatocytes. Liver fibrosis is a wound-healing response represented by excessive extracellular matrix deposition. Activation of hepatic stellate cell (HSC) is the critical cellular basis for hepatic fibrogenesis, whereas hepatocyte undergoes epithelial-mesenchymal transition (EMT) which is also involved in chronic liver injury. Long noncoding RNA H19 has been found to be associated with cholestatic liver fibrosis lately. However, the role of H19 in liver fibrosis remains largely to be elucidated. In this study, we found that the expression of H19 was significantly upregulated in the liver tissue of CCl4 -induced mice, a toxicant-induced liver fibrogenesis model. Overexpression of H19 significantly aggravated activation of HSC and EMT of hepatocyte both by stimulating transforming growth factor-β (TGF-β) pathway. In terms of mechanism, H19 functioned as a competing endogenous RNA to sponge miR-148a and subsequently sustained the level of ubiquitin-specific protease 4 (USP4), which was an identified target of miR-148a and was able to stabilize TGF-β receptor I. In conclusion, our findings revealed a novel H19/miR-148a/USP4 axis which promoted liver fibrosis via TGF-β pathway in both HSC and hepatocyte, indicating that H19 could become a promising target for the treatment of liver fibrosis."	"Clinical and molecular evaluation of therapy with the use of cyclosporine A in patients with psoriasis vulgaris. Psoriasis course involves increased secretion of pro-inflammatory cytokines, among others, a beta transforming growth factor (TGFβs) and its receptors. Cyclosporine A (CsA), an immunosuppressive medicine with the molecular mechanism of operation connected with the properties of cell cycle suppression, is often used in the treatment of severe forms of psoriasis. The efficacy of therapy is assessed based on the disease clinical progression indexes - Psoriasis Area and Severity Index (PASI), body surface area (BSA), and Dermatology Life Quality Index (DLQI). The aim of the study was the evaluation of the efficacy of the CsA treatment of patients with psoriasis vulgaris, based on the clinical parameters and an assessment of the expression profiles of TGFβs and TGFβRs, depending on the concurrent diabetes and metabolic syndrome. The group under study composed of 32 patients (15 with the metabolic syndrome, seven with diabetes) treated with CsA for 84 days. The molecular analysis included extraction of RNA, assessment of TGβF1-3, TGFβRI-III gene expression with the use of the RTqPCR method. The clinical assessment of the effects of this pharmacotherapy involved evaluation of the parameters: PASI, BSA, DLQI before therapy commencement, on the 42nd and 84th days of therapy. A statistically significant change in the transcription activity of TGFβ1 in patients with and without diabetes (P = 0.018) and patients with and without metabolic syndrome (P = 0.023) was shown that on the 84th day of therapy. TGFb1 may be claimed as the supplementary molecular marker to evaluate the efficacy of CsA therapy. It seems that systemic diseases have an effect on the efficacy of the applied pharmacotherapy and the course of psoriasis."	"Pterostilbene alleviates fructose-induced renal fibrosis by suppressing TGF-β1/TGF-β type I receptor/Smads signaling in proximal tubular epithelial cells. High dietary fructose is a key causative factor in the development of renal fibrosis. Pterostilbene has anti-fibrotic effect. Understanding the action mechanism of pterostilbene in fructose-induced renal fibrosis remains as a challenge. Here, fructose feeding was found to promote the progress of epithelial-to-mesenchymal transition (EMT) of proximal tubule epithelial cells (PTECs) and collagen deposition in renal cortex of rats with tubulointerstitial fibrosis. Simultaneously, it impaired insulin receptor (IR)/insulin receptor substrate-1 (IRS-1)/protein kinase B (Akt) pathway, and increased transforming growth factor-beta 1 (TGF-β1) and TGF-β type I receptor to enhance phosphorylation of drosophila mothers against decapentaplegic homolog 2 (Smad2) and Smad3, and Smad4 expression in rat kidney cortex. These changes were also observed in cultured PTECs HK-2 cells exposed to 5 mM fructose. The data from fructose-exposed HK-2 cells co-incubated with TGF-β type I receptor inhibitor further demonstrated that the activation of TGF-β1/TGF-β type I receptor/Smads signaling promoted renal tubular EMT and collagen accumulation. Pterostilbene was found to ameliorate fructose-induced renal fibrosis in rats. Importantly, pterostilbene improved IR/IRS-1/Akt pathway impairment and suppressed TGF-β1/TGF-β type I receptor/Smads signaling activation in vivo and in vitro, being consistent with its reduction of EMT and collagen deposition. Upregulation of IR/Akt signaling by pterostilbene was also confirmed in Akt inhibitor (MK-2206 2HCl) or IR inhibitor (GSK1904529A)-treated HK-2 cells. Taken together, pterostilbene may be a promising therapeutic agent for the treatment of fructose-induced kidney fibrosis with insulin signaling impairment."	"Ubiquitin-specific protease 4 promotes metastasis of hepatocellular carcinoma by increasing TGF-β signaling-induced epithelial-mesenchymal transition. Invasion and metastasis are the main cause of recurrence and death in advanced hepatocellular carcinoma (HCC). Revealing the mechanisms of HCC metastasis is important for developing new therapeutic approaches and reducing patient mortality. Ubiquitin specific protease 4 (USP4), is involved in tumorigenesis by deubiquitinating some important oncogenic proteins and impacting their degradation. In the present study, we found that USP4 was significantly upregulated in HCC tumor tissues and the high expression of USP4 was associated with distant metastasis and poor survival in patients. Using gene interference, we demonstrated that USP4 knockdown significantly inhibited HCC cell migration and invasion in vitro, and USP4 overexpression had the opposite results. In vivo, we also found that USP4 knockdown obviously blocked HCC cell metastasis. Mechanistically, we revealed that USP4 interacted directly with and deubiquitinated TGF-β receptor type I (TGFR-1) to activate the TGF-β signaling pathway, and subsequently induced the Epithelial-Mesenchymal Transition (EMT) in HCC cells. Taken together, our results elucidate that USP4 is highly expressed in HCC and promotes the tumor invasion and metastasis, the underlying mechanism is that USP4 directly interacts with and deubiquitinates TGFR-1 to increase TGF-β signaling-Induced EMT. These results could provide a new therapeutic target for the treatment of HCC."	"FGF represses metastasis of neuroblastoma regulated by MYCN and TGF-β1 induced LMO1 via control of let-7 expression. MYCN and LMO1 amplification are commonly observed in neuroblastoma (NB), which was often accompanied by genetic loss of let-7 microRNA (miRNA). Fibroblast growth factor (FGF) was found to regulate let-7 miRNA expression via FGF receptor substrate 2 (FRS2), which then activates transforming growth factor beta (TGF-β) signaling. Expression of MYCN, LMO1, FRS2, let-7, and TGF-β receptor I (TGFβRI) was selectively knocked-down or enhanced in NB cells. Proliferation, invasion, migration, metastasis and tumorigenesis of NB, expression of downstream signaling factors and metastasis-associated protein were evaluated. Knock-down on either MYCN or LMO1 has led to inhibition on proliferation, invasion, migration, and metastasis of NB cells, and knock-down of FRS2 resulted in increases in MYCN and LMO1 expression and enhanced invasion, migration and metastasis of NB cells. Decreased expression of TGF-β1 or TGFβRI led to decrease expression in LMO1 and proliferation, invasion, migration and metastasis markers, except MYCN expression which appeared not to be regulated by TGF-β1 or TGFβRI. Furthermore, let-7 miRNA was shown to decrease the expression levels of TGF-βRI, LMO1 and MYCN. FGF regulates MYCN and TGF-β1-induced LMO1 and metastasis of NB cells via let-7 miRNA."	"TGFβ1-Smad Signaling Pathway Participates in Interleukin-33 Induced Epithelial-to-Mesenchymal Transition of A549 Cells. Epithelial-to-mesenchymal transition (EMT) has been proven to be involved in development and progression of pulmonary fibrosis. This study aims to investigate the role of transforming growth factor β1 (TGFβ1)-smad signaling pathway in the interleukin-33 (IL-33) induced EMT. The human type II alveolar epithelial cell line, A549, and small airway epithelial cells (SAEC) were cultured and divided into 4 groups including Control, LY-2109761 (TGFβ receptor inhibitor), IL-33 and IL-33+LY-2109761 group. Expression of TGFβ1, E-cadherin (E-cad) and α-smooth muscle actin (α-SMA) were examined by using real-time PCR (RT-PCR) and western blot assay, respectively. The smad3 signaling pathway factors, including smad3 and phosphorylated smad3 (p-smad3), were also detected by using western blot assay. IL-33 significantly activated T1/ST2 expression in A549 cells (P&lt; 0.05). TGFβ1 receptor inhibitor significantly suppressed the IL-33 caused down-expression of E-cad compared to IL-33 alone (P&lt; 0.05). IL-33 significantly increased the α-SMA levels compared to Control group (P&lt; 0.05) and TGFβ1 receptor inhibitor inhibited the other effects of IL-33. IL-33 significantly enhanced the levels of TGFβ1 compared to Control group (P&lt; 0.05). TGFβ1 receptor inhibitor suppressed the IL-33 induced up-expression of p-smad3. The TGFβ1-smad signaling pathway participates in the IL-33 induced epithelial-to-mesenchymal transition of A549 cells."	"Myostatin is expressed in bovine ovarian follicles and modulates granulosal and thecal steroidogenesis Myostatin plays a negative role in skeletal muscle growth regulation but its potential role in the ovary has received little attention. Here, we first examined relative expression of myostatin (MSTN), myostatin receptors (ACVR1B, ACVR2B and TGFBR1) and binding protein, follistatin (FST), in granulosa (GC) and theca (TC) cells of developing bovine follicles. Secondly, using primary GC and TC cultures, we investigated whether myostatin affects steroidogenesis and cell number. Thirdly, effects of gonadotropins and other intrafollicular factors on MSTN expression in GC and TC were examined. MSTN, ACVR1B, TGFBR1, ACVR2B and FST mRNA was detected in both GC and TC at all follicle stages. Immunohistochemistry confirmed follicular expression of myostatin protein. Interestingly, MSTN mRNA expression was lowest in GC of large oestrogen-active follicles whilst GC FST expression was maximal at this stage. In GC, myostatin increased basal CYP19A1 expression and oestradiol secretion whilst decreasing basal and FSH-induced HSD3B1 expression and progesterone secretion and increasing cell number. Myostatin also reduced IGF-induced progesterone secretion. FSH and dihydrotestosterone had no effect on granulosal MSTN expression whilst insulin-like growth factor and tumour necrosis factor-alpha suppressed MSTN level. In TC, myostatin suppressed basal and LH-stimulated androgen secretion in a follistatin-reversible manner and increased cell number, without affecting progesterone secretion. LH reduced thecal MSTN expression whilst BMP6 had no effect. Collectively, results indicate that, in addition to being potentially responsive to muscle-derived myostatin from the circulation, myostatin may have an intraovarian autocrine/paracrine role to modulate thecal and granulosal steroidogenesis and cell proliferation/survival."	"Luteolin Inhibits Vascular Smooth Muscle Cell Proliferation and Migration by Inhibiting TGFBR1 Signaling. Vascular smooth muscle cell (VSMC) proliferation and migration play a critical role in the development of arterial remodeling during various vascular diseases including atherosclerosis, hypertension, and related diseases. Luteolin is a food-derived flavonoid that exerts protective effects on cardiovascular diseases. Here, we investigated whether transforming growth factor-β receptor 1 (TGFBR1) signaling underlies the inhibitory effects of luteolin on VSMC proliferation and migration. We found that luteolin reduced the proliferation and migration of VSMCs, specifically A7r5 and HASMC cells, in a dose-dependent manner, based on MTS and EdU, and Transwell and wound healing assays, respectively. We also demonstrated that it inhibited the expression of proliferation-related proteins including PCNA and Cyclin D1, as well as the migration-related proteins MMP2 and MMP9, in a dose-dependent manner by western blotting. In addition, luteolin dose-dependently inhibited the phosphorylation of TGFBR1, Smad2, and Smad3. Notably, adenovirus-mediated overexpression of TGFBR1 enhanced TGFBR1, Smad2, and Smad3 activation in VSMCs and partially blocked the inhibitory effect of luteolin on TGFBR1, Smad2, and Smad3. Moreover, overexpression of TGFBR1 rescued the inhibitory effects of luteolin on the proliferation and migration of VSMCs. Additionally, molecular docking showed that this compound could dock onto an agonist binding site of TGFBR1, and that the binding energy between luteolin and TGFBR1 was -10.194 kcal/mol. Simulations of molecular dynamics showed that TGFBR1-luteolin binding was stable. Collectively, these data demonstrated that luteolin might inhibit VSMC proliferation and migration by suppressing TGFBR1 signaling."	"Hairpin-structured probe conjugated nano-graphene oxide for the cellular detection of connective tissue growth factor mRNA. Identification of abnormal scars at their early stage has attracted increasing attentions as the scars can only be assessed qualitatively and subjectively upon maturity, when no invasive procedure is involved. This report introduces a fluorescent probe that targets a potential abnormal scar biomarker (connective tissue growth factor (CTGF) mRNA) in skin fibroblasts. This probe is constructed of hairpin-structured probes (HPs) targeting CTGF mRNA and the nano-graphene oxide (nano-GO) base. The HPs are non-covalently absorbed on the surface of nano-GO, which pre-quenches the fluorescence of HPs. Close proximity of complementary CTGF mRNA would lead to preferential HP hybridization and dissociation from nano-GO, which restores the fluorescence signal from HPs. Utilizing this probe, we can distinguish abnormal fibroblasts derived from abnormal scars and assess the effectiveness of anti-scarring drugs like Repsox and transforming growth factor-beta type I receptor (TGF-βRI) siRNA."	"A Pan-Cancer Analysis Reveals High-Frequency Genetic Alterations in Mediators of Signaling by the TGF-β Superfamily. We present an integromic analysis of gene alterations that modulate transforming growth factor β (TGF-β)-Smad-mediated signaling in 9,125 tumor samples across 33 cancer types in The Cancer Genome Atlas (TCGA). Focusing on genes that encode mediators and regulators of TGF-β signaling, we found at least one genomic alteration (mutation, homozygous deletion, or amplification) in 39% of samples, with highest frequencies in gastrointestinal cancers. We identified mutation hotspots in genes that encode TGF-β ligands (BMP5), receptors (TGFBR2, AVCR2A, and BMPR2), and Smads (SMAD2 and SMAD4). Alterations in the TGF-β superfamily correlated positively with expression of metastasis-associated genes and with decreased survival. Correlation analyses showed the contributions of mutation, amplification, deletion, DNA methylation, and miRNA expression to transcriptional activity of TGF-β signaling in each cancer type. This study provides a broad molecular perspective relevant for future functional and therapeutic studies of the diverse cancer pathways mediated by the TGF-β superfamily."	"A TGF-β type I receptor-like molecule with a key functional role in Haemonchus contortus development. Here we investigated the gene of a transforming growth factor (TGF)-β type I receptor-like molecule in Haemonchus contortus, a highly pathogenic and economically important parasitic nematode of small ruminants. Designated Hc-tgfbr1, this gene is transcribed in all developmental stages of H. contortus, and the encoded protein has glycine-serine rich and kinase domains characteristic of a TGF-β family type I receptor. Expression of a GFP reporter driven by the putative Hc-tgfbr1 promoter localised to two intestinal rings, the anterior-most intestinal ring (int ring I) and the posterior-most intestinal ring (int ring IX) in Caenorhabditis elegans in vivo. Heterologous genetic complementation using a plasmid construct containing Hc-tgfbr1 genomic DNA failed to rescue the function of Ce-daf-1 (a known TGF-β type I receptor gene) in a daf-1-deficient mutant strain of C. elegans. In addition, a TGF-β type I receptor inhibitor, galunisertib, and double-stranded RNA interference (RNAi) were employed to assess the function of Hc-tgfbr1 in the transition from exsheathed L3 (xL3) to the L4 of H. contortus in vitro, revealing that both galunisertib and Hc-tgfbr1-specific double-stranded RNA could retard L4 development. Taken together, these results provide evidence that Hc-tgfbr1 is involved in developmental processes in H. contortus in the transition from the free-living to the parasitic stage."	"miR-181a regulate porcine preadipocyte differentiation by targeting TGFBR1. miRNAs have been shown to regulate a variety of biological process. It has been shown that miR-181a regulates porcine adipogenesis by targeting Tumor Necrosis Factor-α (TNF-α), but the overall functions of miR-181a in porcine preadipocyte differentiation remain unclear. This study aimed to explore the functions of miR-181a in porcine preadipocyte differentiation via the TGFβ/Smad pathway. The TargetScan program was used to predict miRNAs targeting TGFBR1, and miR-181a was selected as a candidate. To investigate the functions of miR-181a, miRNA mimics and inhibitors were used to overexpress or knockdown miR-181a, respectively. RT-qPCR and Western blotting were used to measure the expression of aP2, PPARγ, C/EBPα and TGFBR1 in porcine preadipocytes. Lipid accumulation and adipocyte apoptosis were detected using Oil Red O staining and flow cytometry, respectively. Taken together, our results indicated that miR-181a promoted porcine preadipocyte differentiation by directly targeting TGFBR1."	"Transforming growth factor-β downregulates sGC subunit expression in pulmonary artery smooth muscle cells via MEK and ERK signaling. TGFβ activation during newborn lung injury decreases the expression of pulmonary artery smooth muscle cell (PASMC)-soluble guanylate cyclase (sGC), a critical mediator of nitric oxide signaling. Using a rat PASMC line (CS54 cells), we determined how TGFβ downregulates sGC expression. We found that TGFβ decreases sGC expression through stimulating its type I receptor; TGFβ type I receptor (TGFβR1) inhibitors prevented TGFβ-1-mediated decrease in sGCα1 subunit mRNA levels in the cells. However, TGFβR1-Smad mechanisms do not regulate sGC; effective knockdown of Smad2 and Smad3 expression and function did not protect sGCα1 mRNA levels during TGFβ-1 exposure. A targeted small-molecule kinase inhibitor screen suggested that MEK signaling regulates sGC expression in TGFβ-stimulated PASMC. TGFβ activates PASMC MEK/ERK signaling; CS54 cell treatment with TGFβ-1 increased MEK and ERK phosphorylation in a biphasic, time- and dose-dependent manner. Moreover, MEK/ERK activity appears to be required for TGFβ-mediated sGC expression inhibition in PASMC; MEK and ERK inhibitors protected sGCα1 mRNA expression in TGFβ-1-treated CS54 cells. Nuclear ERK activity is sufficient for sGC regulation; heterologous expression of a nucleus-retained, constitutively active ERK2-MEK1 fusion protein decreased CS54 cell sGCα1 mRNA levels. The in vivo relevance of this TGFβ-MEK/ERK-sGC downregulation pathway is suggested by the detection of ERK activation and sGCα1 protein expression downregulation in TGFβ-associated mouse pup hyperoxic lung injury, and the determination that ERK decreases sGCα1 protein expression in TGFβ-1-treated primary PASMC obtained from mouse pups. These studies identify MEK/ERK signaling as an important pathway by which TGFβ regulates sGC expression in PASMC."	"Retinal pigment epithelium-derived transforming growth factor-β2 inhibits the angiogenic response of endothelial cells by decreasing vascular endothelial growth factor receptor-2 expression. Transforming growth factor-β (TGF-β) is a multifunctional cytokine that is known to modulate various aspects of endothelial cell (EC) biology. Retinal pigment epithelium (RPE) is important for regulating angiogenesis of choriocapillaris and one of the main cell sources of TGF-β secretion, particularly TGF-β2. However, it is largely unclear whether and how TGF-β2 affects angiogenic responses of ECs. In the current study, we demonstrated that TGF-β2 reduces vascular endothelial growth factor receptor-2 (VEGFR-2) expression in ECs and thereby inhibits vascular endothelial growth factor (VEGF) signaling and VEGF-induced angiogenic responses such as EC migration and tube formation. We also demonstrated that the reduction of VEGFR-2 expression by TGF-β2 is due to the suppression of JNK signaling. In coculture of RPE cells and ECs, RPE cells decreased VEGFR-2 levels in ECs and EC migration. In addition, we showed that TGF-β2 derived from RPE cells is involved in the reduction of VEGFR-2 expression and inhibition of EC migration. These results suggest that TGF-β2 plays an important role in inhibiting the angiogenic responses of ECs during the interaction between RPE cells and ECs and that angiogenic responses of ECs may be amplified by a decrease in TGF-β2 expression in RPE cells under pathologic conditions."	"MiR-499 regulates myoblast proliferation and differentiation by targeting transforming growth factor β receptor 1. MicroRNAs (miRNAs or miRs) are small noncoding RNAs that play critical roles in muscle cell proliferation and differentiation via post-transcriptional regulation of gene expression. Here, based on our previous high-throughput sequencing results, we evaluated miRNA-499 (miR-499) functions during myoblast proliferation and differentiation. In addition, we analyzed miR-499 expression profiles and characterized the associated functional roles. MiR-499 is known to be a skeletal muscle fiber-type-associated miRNA. However, its roles in skeletal myoblast proliferation and differentiation are poorly understood. MiR-499 overexpression promoted C2C12 cell proliferation and significantly attenuated C2C12 cell myogenic differentiation. Furthermore, miR-499 inhibition enhanced C2C12 cell proliferation and suppressed C2C12 cell differentiation. Using dual-luciferase reporter assays and western blot analysis, we confirmed that miR-499 targeted transforming growth factor β receptor 1 (TGFβR1), a known regulator of skeletal myoblast development. Additionally, our RNA interference analysis, in which TGFβR1 was downregulated, showed that TGFβR1 significantly promoted the differentiation of C2C12 cells and inhibited their proliferation."	"First evidence of maternally inherited mosaicism in TGFBR1 and subtle primary myocardial changes in Loeys-Dietz syndrome: a case report. Loeys-Dietz syndrome (LDS) is a rare multisystemic disorder characterized by vascular and skeletal abnormalities, with considerable intra- and interfamilial variability. We report the case of an 8-year-old male with clinical features of two distinct genetic disorders, namely LDS, manifesting in the first months by progressive aortic root dilatation, arterial tortuosity, bifid uvula, and inguinal hernias and oculocutaneous albinism (OCA) manifesting by white hair and skin that does not tan, nystagmus, reduced iris pigment with iris translucency, and reduced retinal pigment). We identified previously reported, homozygous mutations of TYR, c.1A &gt; G (p.Met1Val) and heterozygous, missense mutation of TGFBR1, c.1460G &gt; A (p.Arg487Gln). Family history revealed that his mother underwent multiple surgical repairs for recurrent hemorrhage originating from the buccal artery. Molecular studies confirmed a maternally inherited low grade TGFBR1 mutation somatic mosaicism (18% in peripheral blood leukocytes, 18% in buccal cells and 10% in hair root cells). Maternal cardiac investigations revealed peculiar cardiovascular features: mild tortuosity at the aortic arch, dilatation of the proximal abdominal aorta, multiple deep left ventricular myocardial crypts, and dysplastic mitral valve. TGFBR2 germline mosaicism has been described in three fathers of children carrying TGFBR2 mutations but, to the best of our knowledge, no case of maternally inherited TGFBR1 mutation mosaicism has been reported so far. This case report suggests that individuals with somatic mosaicism might be at risk for mild and unusual forms of LDS but germline mosaicism can lead to full blown picture of the disease in offspring."	"Parental-reported neurodevelopmental issues in Loeys-Dietz syndrome. Loeys-Dietz syndrome (LDS) is a congenital multisystem disorder affecting the cardiovascular and musculoskeletal system. Limited data have reported neurodevelopmental (ND) issues in LDS. To determine the extent of ND issues in patients with LDS. A prospective study was performed of LDS patients or their caregivers. The study included data collected via an online survey of age-specific questions. Standard statistical methods were used for baseline and demographic characteristics, as well as group comparisons. Data were obtained from 67 patients with LDS (54% female). Median age was 14.9 years. Gene mutations included TGFBR1 (39%), TGFBR2 (40%), SMAD3 (7%), and unknown (14%). Motor delays (30%, 18/61) and hypotonia (63%, 37/60) occurred frequently. Physical (62%, 39/62), occupational (41%, 23/56), and speech therapies (34%, 20/58) were common. Feeding issues were common (41%, 23/56). TGFBR1 mutations were more frequent among those with motor delays and feeding issues. Patients with LDS and/or their caregivers report at least one ND problem in most cases, and many require therapies. These data suggest ND disorders should be considered to be part of the phenotype."	"Activation of Ras in the Vascular Endothelium Induces Brain Vascular Malformations and Hemorrhagic Stroke. Cerebrovascular malformations (CVMs) affect approximately 3% of the population, risking hemorrhagic stroke, seizures, and neurological deficits. Recently Ras mutations have been identified in a majority of brain arterio-venous malformations. We generated an endothelial-specific, inducible HRAS<sup>V12</sup> mouse model, which results in dilated, proliferative blood vessels in the brain, blood-brain barrier breakdown, intracerebral hemorrhage, and rapid lethality. Organoid morphogenesis models revealed abnormal cessation of proliferation, abnormalities in expression of tip and stalk genes, and a failure to properly form elongating tubes. These defects were influenced by both hyperactive PI-3' kinase signaling and altered TGF-β signaling. Several phenotypic changes predicted by the in vitro morphogenesis analysis were validated in the mouse model. These data provide a model of brain vascular malformations induced by mutant Ras and reveal insights into intersecting molecular mechanisms in the pathogenesis of brain vascular malformations."	"TGF-β receptors: In and beyond TGF-β signaling. Transforming growth factor β (TGF-β) plays an important role in normal development and homeostasis. Dysregulation of TGF-β responsiveness and its downstream signaling pathways contribute to many diseases, including cancer initiation, progression, and metastasis. TGF-β ligands bind to three isoforms of the TGF-β receptor (TGFBR) with different affinities. TGFBR1 and 2 are both serine/threonine and tyrosine kinases, but TGFBR3 does not have any kinase activity. They are necessary for activating canonical or noncanonical signaling pathways, as well as for regulating the activation of other signaling pathways. Another prominent feature of TGF-β signaling is its context-dependent effects, temporally and spatially. The diverse effects and context dependency are either achieved by fine-tuning the downstream components or by regulating the expressions and activities of the ligands or receptors. Focusing on the receptors in events in and beyond TGF-β signaling, we review the membrane trafficking of TGFBRs, the kinase activity of TGFBR1 and 2, the direct interactions between TGFBR2 and other receptors, and the novel roles of TGFBR3."	"EW-7197, an oral transforming growth factor β type I receptor kinase inhibitor, for preventing peritoneal adhesion formation in a rat model. EW-7197 is an oral transforming growth factor β type I receptor kinase inhibitor currently undergoing phase I clinical trials for cancer treatment in the United States. This study evaluates whether EW-7197 prevents peritoneal adhesion formation in a rat model. Forty-eight female Wistar rats underwent peritoneal adhesion induction by the creation of peritoneal ischemic buttons and were randomly divided into 4 groups of 12 each. The control group received 0.3 mL vehicle by oral gavage once daily for 7 days after adhesion induction. The 10 mg and 20 mg groups received 10 or 20 mg/kg EW-7197 phosphate dissolved in 0.3 mL vehicle by oral gavage once daily for 7 days after adhesion induction. The rebound group received 20 mg/kg EW-7197 phosphate dissolved in 0.3 mL vehicle by oral gavage once daily for 7 days after adhesion induction followed by 0.3 mL vehicle only by gavage once daily for an additional 21 days. After the respective treatments were completed, the animals were euthanized. All rats survived until the end of the study without complications. EW-7197 reduced the incidence, quality, and tenacity of peritoneal adhesions in a dose-dependent manner. Fibrosis and collagen production were reduced in EW-7197-treated peritoneal ischemic buttons. Transforming growth factor β/Smad2/3 signaling and mesothelial-to-mesenchymal transition were inhibited in EW-7197-treated peritoneal ischemic buttons. Discontinuation of EW-7197 was not associated with rebound effects. EW-7197 prevented peritoneal adhesion formation potentially via inhibition of transforming growth factor β1/Smad2/3-induced mesothelial-to-mesenchymal transition in a rat model."	"ETS1 induces transforming growth factor β signaling and promotes epithelial-to-mesenchymal transition in prostate cancer cells. Expression of the transcriptional regulator, E26 transformation-specific 1 (ETS1), is elevated in human prostate cancers, and this is associated with more aggressive tumor behavior and a rapid progression to castrate-resistant disease. Multiple ETS1 isoforms with distinct biological activities have been characterized and in 44 matched nonmalignant and malignant human prostate specimens, messenger RNAs for two ETS1 isoforms, ETS1p51 and ETS1p42, were detected, with ETS1p51 levels significantly lower in prostate tumor compared to matched nonmalignant prostate tissues. In contrast, ETS1p51 protein, the only ETS1 isoform detected, was expressed at significantly higher levels in malignant prostate. Analysis of epithelial-to-mesenchymal transition (EMT)-associated genes regulated following overexpression of ETS1p51 in the LNCaP prostate cancer cell line predicted promotion of transforming growth factor β (TGFβ) signaling and of EMT. ETS1p51 overexpression upregulated cellular levels of the EMT transcriptional regulators, ZEB1 and SNAIL1, resulted in reduced expression of the mesenchymal marker vimentin with concomitantly elevated levels of claudin 1, an epithelial tight junction protein, and increased prostate cancer cell migration and invasion. ETS1p51-induced activation of the pro-EMT TGFβ signaling pathway that was predicted in polymerase chain reaction arrays was verified by demonstration of elevated SMAD2 phosphorylation following ETS1p51 overexpression. Attenuation of ETS1p51 effects on prostate cancer cell migration and invasion by inhibition of TGFβ pathway signaling indicated that ETS1p51 effects were in part mediated by induction of TGFβ signaling. Thus, overexpression of ETS1p51, the predominant ETS1 isoform expressed in prostate tumors, promotes an EMT program in prostate cancer cells in part via activation of TGFβ signaling, potentially accounting for the poor prognosis of ETS1-overexpressing prostate tumors."	"TGF-β receptor I inhibitor enhances response to enzalutamide in a pre-clinical model of advanced prostate cancer. Prostate cancer progression is navigated by the androgen receptor (AR) and transforming-growth factor-β (TGF-β) signaling. We previously demonstrated that aberrant TGF-β signaling accelerates prostate tumor progression in a transgenic mouse model of prostate cancer via effects on epithelial-mesenchymal transition (EMT), driving castration-resistant prostate cancer (CRPC). This study examined the antitumor effect of the combination of TGF-β receptor I (TβRI) inhibitor, galunisertib, and FDA-approved antiandrogen enzalutamide, in our pre-clinical model. Age-matched genotypically characterized DNTGFβRII male mice were treated with either galunisertib and enzalutamide, in combination or as single agents in three &quot;mini&quot;-trials and the effects on tumor growth, phenotypic EMT, and actin cytoskeleton were evaluated. Galunisertib in combination with enzalutamide significantly suppressed prostate tumor growth, by increasing apoptosis and decreasing cell proliferation of tumor cell populations compared to the inhibitor as a monotherapy (P &lt; 0.05). The combination treatment dramatically reduced cofilin levels, actin cytoskeleton regulator, compared to single agents. Treatment with galunisertib targeted nuclear Smad4 protein (intracellular TGF-β effector), but had no effect on nuclear AR. Consequential to TGF-β inhibition there was an EMT reversion to mesenchymal-epithelial transition (MET) and re-differentiation of prostate tumors. Elevated intratumoral TGF-β1 ligand, in response to galunisertib, was blocked by enzalutamide. Our results provide novel insights into the therapeutic value of targeting TGF-β signaling to overcome resistance to enzalutamide in prostate cancer by phenotypic reprogramming of EMT towards tumor re-differentiation and cytoskeleton remodeling. This translational work is significant in sequencing TGF-β blockade and antiandrogens to optimize therapeutic response in CRPC."	"The Role of Human Papillomaviruses and Polyomaviruses in BRAF-Inhibitor Induced Cutaneous Squamous Cell Carcinoma and Benign Squamoproliferative Lesions. Background: Human papillomavirus (HPV) has long been proposed as a cofactor in the pathogenesis of cutaneous squamous cell carcinoma (cSCC). More recently, the striking clinico-pathological features of cSCCs that complicate treatment of metastatic melanoma with inhibitors targeting BRAF mutations (BRAFi) has prompted speculation concerning a pathogenic role for oncogenic viruses. Here, we investigate HPV and human polyomaviruses (HPyV) and correlate with clinical, histologic, and genetic features in BRAFi-associated cSCC. Materials and Methods: Patients receiving BRAFi treatment were recruited at Barts Health NHS Trust. HPV DNA was detected in microdissected frozen samples using reverse line probe technology and degenerate and nested PCR. HPV immunohistochemistry was performed in a subset of samples. Quantitative PCR was performed to determine the presence and viral load of HPyVs with affinity for the skin (HPyV6, HPyV7, HPyV9, MCPyV, and TSPyV). These data were correlated with previous genetic mutational analysis of H, K and NRAS, NOTCH1/2, TP53, CDKN2A, CARD11, CREBBP, TGFBR1/2. Chromosomal aberrations were profiled using single nucleotide polymorphism (SNP) arrays. Results: Forty-five skin lesions from seven patients treated with single agent vemurafenib in 2012-2013 were analyzed: 12 cSCC, 19 viral warts (VW), 2 actinic keratosis (AK), 5 verrucous keratosis/other squamoproliferative (VK/SP) lesions, one melanocytic lesion and 6 normal skin samples. Significant histologic features of viral infection were seen in 10/12 (83%) cSCC. HPV DNA was detected in 18/19 (95%) VW/SP, 9/12 (75%) cSCC, 4/5 (80%) SP, and 3/6 (50%) normal skin samples and in 1/12 cases assessed by immunohistochemistry. HPyV was co-detected in 22/30 (73%) of samples, usually at low viral load, with MCPyV and HPyV7 the most common. SNP arrays confirmed low levels of chromosomal abnormality and there was no significant correlation between HPV or HPyV detection and individual gene mutations or overall mutational burden. Conclusion: Despite supportive clinicopathologic evidence, the role for HPV and HPyV infection in the pathogenesis of BRAFi-induced squamoproliferative lesions remains uncertain. Synergistic oncogenic mechanisms are plausible although speculative. Nonetheless, with the prospect of a significant increase in the adjuvant use of these drugs, further research is justified and may provide insight into the pathogenesis of other BRAFi-associated malignancies."	"Molecular docking and 4D-QSAR studies of metastatic cancer inhibitor thiazoles. By using the molecular docking and 4D-QSAR analysis, it is aimed to find the interaction points in the receptor binding site of transforming growth factor-beta (TGF-beta) used to inhibit invasion and metastasis. To elucidate the interaction points of receptor, different types of local reactive descriptor (LRD) of ligands have been used. Activity values related to interaction energy between the ligand-receptor (L-R) were determined by nonlinear least squares (NLLS) using the Levenberg-Marquardt (LM) algorithm. Using the Molecule Comparative Electron Topology (MCET) method, the 3D pharmacophore model (3D-PhaM) was obtained after alignment and superimposition of the molecules, and also confirmed by molecular docking method. With the leave one out-cross validation (LOO-CV) method, the best predictions are q<sup>2</sup> or rCV<sup>2</sup> = 0.789 for the 51 compounds in the internal training set and r<sup>2</sup> = 0.785 for the 13 compounds in the external test set. Furthermore, the predictive capability of the advanced QSAR model is more precisely calculated with the rm<sup>2</sup> metric (rm<sup>2</sup> = 0.769)."	"The cat as a naturally occurring model of renal interstitial fibrosis: Characterisation of primary feline proximal tubular epithelial cells and comparative pro-fibrotic effects of TGF-β1. Chronic kidney disease (CKD) is common in both geriatric cats and aging humans, and is pathologically characterised by chronic tubulointerstitial inflammation and fibrosis in both species. Cats with CKD may represent a spontaneously occurring, non-rodent animal model of human disease, however little is known of feline renal cell biology. In other species, TGF-β1 signalling in the proximal tubular epithelium is thought to play a key role in the initiation and progression of renal fibrosis. In this study, we first aimed to isolate and characterise feline proximal tubular epithelial cells (FPTEC), comparing them to human primary renal epithelial cells (HREC) and the human proximal tubular cell line HK-2. Secondly, we aimed to examine and compare the effect of human recombinant TGF-β1 on cell proliferation, pro-apoptotic signalling and genes associated with epithelial-to-mesenchymal transition (EMT) in feline and human renal epithelial cells. FPTEC were successfully isolated from cadaverous feline renal tissue, and demonstrated a marker protein expression profile identical to that of HREC and HK-2. Exposure to TGF-β1 (0-10 ng/ml) induced a concentration-dependent loss of epithelial morphology and alterations in gene expression consistent with the occurrence of partial EMT in all cell types. This was associated with transcription of downstream pro-fibrotic mediators, growth arrest in FPTEC and HREC (but not HK-2), and increased apoptotic signalling at high concentrations of TGF- β1. These effects were inhibited by the ALK5 (TGF-β1RI) antagonist SB431542 (5 μM), suggesting they are mediated via the ALK5/TGF-β1RII receptor complex. Taken together, these results suggest that TGF-β1 may be involved in epithelial cell dedifferentiation, growth arrest and apoptosis in feline CKD as in human disease, and that cats may be a useful, naturally occurring model of human CKD."	"Construction and analysis of mRNA, miRNA, lncRNA, and TF regulatory networks reveal the key genes associated with prostate cancer. Prostate cancer (PCa) causes a common male urinary system malignant tumour, and the molecular mechanisms of PCa are related to the abnormal regulation of various signalling pathways. An increasing number of studies have suggested that mRNAs, miRNAs, lncRNAs, and TFs could play important roles in various biological processes that are associated with cancer pathogenesis. This study aims to reveal functional genes and investigate the underlying molecular mechanisms of PCa with bioinformatics. Original gene expression profiles were obtained from the GSE64318 and GSE46602 datasets in the Gene Expression Omnibus (GEO). We conducted differential screens of the expression of genes (DEGs) between two groups using the online tool GEO2R based on the R software limma package. Interactions between differentially expressed miRNAs, mRNAs and lncRNAs were predicted and merged with the target genes. Co-expression of miRNAs, lncRNAs and mRNAs was selected to construct mRNA-miRNA-lncRNA interaction networks. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analyses were performed for the DEGs. Protein-protein interaction (PPI) networks were constructed, and transcription factors were annotated. Expression of hub genes in the TCGA datasets was verified to improve the reliability of our analysis. The results demonstrate that 60 miRNAs, 1578 mRNAs and 61 lncRNAs were differentially expressed in PCa. The mRNA-miRNA-lncRNA networks were composed of 5 miRNA nodes, 13 lncRNA nodes, and 45 mRNA nodes. The DEGs were mainly enriched in the nuclei and cytoplasm and were involved in the regulation of transcription, related to sequence-specific DNA binding, and participated in the regulation of the PI3K-Akt signalling pathway. These pathways are related to cancer and focal adhesion signalling pathways. Furthermore, we found that 5 miRNAs, 6 lncRNAs, 6 mRNAs and 2 TFs play important regulatory roles in the interaction network. The expression levels of EGFR, VEGFA, PIK3R1, DLG4, TGFBR1 and KIT were significantly different between PCa and normal prostate tissue. Based on the current study, large-scale effects of interrelated mRNAs, miRNAs, lncRNAs, and TFs established a new prostate cancer network. In addition, we conducted functional module analysis within the network. In conclusion, this study provides new insight for exploration of the molecular mechanisms of PCa and valuable clues for further research into the process of tumourigenesis and its development in PCa."	"Loss of NF2 Induces TGFβ Receptor 1-mediated Noncanonical and Oncogenic TGFβ Signaling: Implication of the Therapeutic Effect of TGFβ Receptor 1 Inhibitor on NF2 Syndrome. Neurofibromatosis type 2 (NF2) syndrome is a very rare human genetic disease, and there has been no proper treatment for it until now. In our recent study, it has been reported that the loss of NF2 activates MAPK signaling through reduction of RKIP in a mesothelioma model. Here, we show that loss of NF2 induces reduction of the TGFβ receptor 2 (TβR2) expression, and an overwhelming expression of TGFβ receptor 1 (TβR1) is activated by physical stimuli such as pressure or heavy materials. Activated TβR1 induces the phosphorylation and degradation of RKIP. RKIP reduction consequently results in MAPK activation as well as Snail-mediated p53 suppression and occurrence of EMT in NF2-deficient cells by physical stimuli. Thus, TβR1 kinase inhibitors restore cell differentiation and induce growth suppression in NF2-deficient Schwannoma cell line and MEF. Moreover, TEW7197, a specific TβR1 kinase inhibitor, reduces tumor formation in the NF2-model mouse (Postn-Cre;NF2<sup>f/f</sup>). Gene expression profiling reveals that TEW7197 treatment induces the expression of lipid metabolism-related gene set, such as NF2-restored cells in HEI-193 (NF2-deficient Schwannoma). Our results indicate that reduction or deletion of TβR2 or NF2 induces the TβR1-mediated oncogenic pathway, and therefore inhibition of the unbalanced TGFβ signaling is a putative strategy for NF2-related cancers (NF2 syndrome and mesothelioma) and TβR2-mutated advanced cancers. Mol Cancer Ther; 17(11); 2271-84. ©2018 AACR."	"Genes Regulating Immune Response and Amelogenesis Interact in Increasing the Susceptibility to Molar-Incisor Hypomineralization. Ameloblasts are sensitive cells whose metabolism and function may be affected by inflammatory stimuli. The aim of this study was to evaluate the possible association between polymorphisms in immune response-related genes and molar-incisor hypomineralization (MIH), and their interaction with polymorphisms in amelogenesis-related genes. DNA samples were obtained from 101 nuclear families that had at least 1 MIH-affected child. Eleven single-nucleotide polymorphisms (SNPs) were investigated in immune response genes using TaqMan® technology allele-specific probes. A transmission disequilibrium test was performed to verify overtransmission of alleles in all MIH families, as well as in families only with mild or severe MIH-affected children. Gene-gene interactions between the immune-related and amelogenesis-related polymorphisms were analyzed by determining whether alleles of those genes were transmitted from heterozygous parents more often in association than individually with MIH-affected children. In severe cases of MIH, significant results were observed for rs10733708 (TGFBR1, OR = 3.5, 95% CI = 1.1-10.6). Statistical evidence for gene-gene interactions between rs6654939 (AMELX) and the SNPs rs2070874 (IL4), rs2275913 (IL17A), rs1800872 (IL10), rs1800587 (IL1A), and rs3771300 (STAT1) was observed. The rs2070874 SNP (IL4) was also significantly overtransmitted from heterozygous parents with the rs7526319 (TUFT1) and the rs2355767 (BMP2) SNPs, suggesting a synergistic effect of the transmission of these alleles with susceptibility to MIH. This family-based study demonstrated an association between variation in TGFBR1 and MIH. Moreover, the polymorphisms in immune response and amelogenesis genes may have an additive effect on the risk of developing MIH."	"Expression of TGFBR1, TGFBR2, TGFBR3, ACVR1B and ACVR2B is altered in ovaries of cows with cystic ovarian disease. The objective of this study was to examine the expression of transforming growth factor beta receptor (TGFBR)1, TGFBR2, TGFBR3, activin receptor (ACVR)1B and ACVR2B in ovaries of cows with cystic ovarian disease (COD). The expression of the selected receptors was determined by immunohistochemistry in sections of ovaries from cows with ACTH-induced and spontaneous COD. Expression of TGFBR1 and TGFBR3 was higher in granulosa cells of cysts from cows with spontaneous COD than in tertiary follicles from the control group. Additionally, TGFBR3 expression was higher in granulosa cells of cysts from cows with ACTH-induced COD than in those from the control group and lower in theca cells of spontaneous and ACTH-induced cysts than in tertiary control follicles. There were no changes in the expression of TGFBR2. ACVR1B expression was higher in granulosa cells of tertiary follicles of cows with spontaneous COD than in the control group, whereas ACVR2B expression was higher in cysts of the spontaneous COD group than in tertiary follicles from the control group. The alterations here detected, together with the altered expression of the ligands previously reported, indicate alterations in the response of the ligands in the target cells, modifying their actions at cellular level."	"Regulation of connexin 43 expression in human gingival fibroblasts. Abundance of connexin 43 (Cx43), a transmembrane protein that forms hemichannels (HCs) and gap junctions (GJs), is dynamically regulated in human gingival fibroblasts (GFBLs) during wound healing. This may be important for fast and scarless gingival wound healing as Cx43 is involved in key cell functions important during this process. Our aim was to uncover the factors that regulate Cx43 expression and abundance in GFBLs. We hypothesized that cytokines and growth factors released during wound healing coordinately regulate Cx43 abundance in GFBLs. TGF-β1, -β2, -β3, PGE2 and IL-1β significantly upregulated, while TNF-α and IFN-γ downregulated Cx43 in cultured GFBLs. TGF-β1, -β2, -β3, IL-1β and IFN-γ modulated Cx43 abundance at both mRNA and protein levels, while TNF-α and PGE2 regulated only Cx43 protein abundance, suggesting involvement of distinct transcriptional/post-transcriptional and translational/post-translational mechanisms, respectively. TGF-β1-induced upregulation of Cx43 was mediated by TGFβRI (ALK5) and SMAD2/3 signaling, and this was potently suppressed by PGE2, IL-1β, TNF-α and IFN-γ that inhibited SMAD2/3 phosphorylation. Regulation of Cx43 abundance in GFBLs involves transcriptional/post-transcriptional and translational/post-translational mechanisms that are distinctly modulated by an interplay between TGF-β isoforms and PGE2, IL-1β, TNF-α and IFN-γ."	"Functional Linkage of RKIP to the Epithelial to Mesenchymal Transition and Autophagy during the Development of Prostate Cancer. Raf kinase inhibitor protein (RKIP) plays a critical role in many signaling pathways as a multi-functional adapter protein. In particular, the loss of RKIP's function in certain types of cancer cells results in epithelial to mesenchymal transition (EMT) and the promotion of cancer metastasis. In addition, RKIP inhibits autophagy by modulating LC3-lipidation and mTORC1. How the RKIP-dependent inhibition of autophagy is linked to EMT and cancer progression is still under investigation. In this study, we investigated the ways by which RKIP interacts with key gene products in EMT and autophagy during the progression of prostate cancer. We first identified the gene products of interest using the corresponding gene ontology terms. The weighted-gene co-expression network analysis (WGCNA) was applied on a gene expression dataset from three groups of prostate tissues; benign prostate hyperplasia, primary and metastatic cancer. We found two modules of highly co-expressed genes, which were preserved in other independent datasets of prostate cancer tissues. RKIP showed potentially novel interactions with one EMT and seven autophagy gene products (TGFBR1; PIK3C3, PIK3CB, TBC1D25, TBC1D5, TOLLIP, WDR45 and WIPI1). In addition, we identified several upstream transcription modulators that could regulate the expression of these gene products. Finally, we verified some RKIP novel interactions by co-localization using the confocal microscopy analysis in a prostate cancer cell line. To summarize, RKIP interacts with EMT and autophagy as part of the same functional unit in developing prostate cancer."	"Long non-coding RNA SBF2-AS1 promotes hepatocellular carcinoma progression through regulation of miR-140-5p-TGFBR1 pathway. A growing number of studies has suggested that long non-coding RNAs (lncRNAs) exert essential roles in the development and progression of hepatocellular carcinoma (HCC). However, the roles of lncRNA and its molecular mechanism in HCC are largely unknown. In the present study, the functions and molecular mechanisms of a novel lncRNA, SET-binding factor 2 (SBF2) antisense RNA1 (SBF2-AS1), were investigated in HCC tissues and cell lines. We found that the expression levels of SBF2-AS1 were significantly up-regulated in HCC tissues and correlated with poor prognosis. SBF2-AS1 knockdown could inhibit the proliferation of HCC cells and attenuate the development of HCC tumor in vivo. Moreover, wound healing and Transwell assays revealed that down-regulation of SBF2-AS1 suppressed the migration and invasion of HCC cells by modulating epithelial-mesenchymal transition (EMT) ability. Mechanistically, we observed that SBF2-AS1 served as a competing endogenous RNA (ceRNA) of miR-140-5p. Subsequently, transforming growth factor beta receptor 1 (TGFBR1) was certified as a direct target of miR-140-5p and enforcing SBF2-AS1 expression elevated TGFBR1 expression in HCC. Taken together, our study suggested that SBF2-AS1 modulated TGFBR1 through sponging miR-140-5p in HCC development and progression indicating that SBF2-AS1 might be further chosen as a potential anticancer therapeutic target and a promising prognostic biomarker for HCC."	"TGF-β receptor 1 regulates progenitors that promote browning of white fat. Beige/brite adipose tissue displays morphological characteristics and beneficial metabolic traits of brown adipose tissue. Previously, we showed that TGF-β signaling regulates the browning of white adipose tissue. Here, we inquired whether TGF-β signals regulated presumptive beige progenitors in white fat and investigated the TGF-β regulated mechanisms involved in beige adipogenesis. We deleted TGF-β receptor 1 (TβRI) in adipose tissue (TβRI<sup>AdKO</sup> mice) and, using flow-cytometry based assays, identified and isolated presumptive beige progenitors located in the stromal vascular cells of white fat. These cells were molecularly characterized to examine beige/brown marker expression and to investigate TGF-β dependent mechanisms. Further, the cells were transplanted into athymic nude mice to examine their adipogenesis potential. Deletion of TβRI promotes beige adipogenesis while reducing the detrimental effects of high fat diet feeding. Interaction of TGF-β signaling with the prostaglandin pathway regulated the appearance of beige adipocytes in white fat. Using flow cytometry techniques and stromal vascular fraction from white fat, we isolated presumptive beige stem/progenitor cells (iBSCs). Upon genetic or pharmacologic inhibition of TGF-β signaling, these cells express high levels of predominantly beige markers. Transplantation of TβRI-deficient stromal vascular cells or iBSCs into athymic nude mice followed by high fat diet feeding and stimulation of β-adrenergic signaling via CL316,243 injection or cold exposure promoted robust beige adipogenesis in vivo. TβRI signals target the prostaglandin network to regulate presumptive beige progenitors in white fat capable of developing into beige adipocytes with functional attributes. Controlled inhibition of TβRI signaling and concomitant PGE2 stimulation has the potential to promote beige adipogenesis and improve metabolism."	"MicroRNA-942 mediates hepatic stellate cell activation by regulating BAMBI expression in human liver fibrosis. MicroRNA (miRNA)-mediated gene regulation contributes to liver pathophysiology, including hepatic stellate cell (HSC) activation and fibrosis progression. Here, we investigated the role of miR-942 in human liver fibrosis. The expression of miR-942, HSC activation markers, transforming growth factor-beta pseudoreceptor BMP and activin membrane-bound inhibitor (BAMBI), as well as collagen deposition, were investigated in 100 liver specimens from patients with varying degree of hepatitis B virus (HBV)-related fibrosis. Human primary HSCs and the immortalized cell line (LX2 cells) were used for functional studies. We found that miR-942 expression was upregulated in activated HSCs and correlated inversely with BAMBI expression in liver fibrosis progression. Transforming growth factor beta (TGF-β) and lipopolyssacharide (LPS), two major drivers of liver fibrosis and inflammation, induce miR-942 expression in HSCs via Smad2/3 respective NF-κB/p50 binding to the miR-942 promoter. Mechanistically, the induced miR-942 degrades BAMBI mRNA in HSCs, thereby sensitizing the cells for fibrogenic TGF-β signaling and also partly mediates LPS-induced proinflammatory HSC fate. In conclusion, the TGF-β and LPS-induced miR-942 mediates HSC activation through downregulation of BAMBI in human liver fibrosis. Our study provides new insights on the molecular mechanism of HSC activation and fibrosis."	"Genome-wide haplotype association study identifies risk genes for non-small cell lung cancer. Lung cancer is the leading cause of cancer-related death worldwide. Most lung cancer is non-small cell lung cancer (NSCLC), in which malignant cells form in the lung epithelium. Mutations in multiple genes and environmental factors both contribute to NSCLC, and although some NSCLC susceptibility genes have been characterized, the pathogenesis of this disease remains unclear. To identify genes conferring NSCLC risk and determine their associated pathological mechanism, we combined genome-wide haplotype associated analysis with gene prioritization using 224,677 SNPs in 37 NSCLC cell lines and 116 unrelated European individuals. Five candidate genes were identified: ESR1, TGFBR1, INSR, CDH3, and MAP3K5. All of these have previously been implicated in NSCLC, with the exception of CDH3, which can therefore be considered a novel indicator of NSCLC risk. Functional annotation confirmed the relationship between these five genes and NSCLC. Our findings are indicative of the underlying pathological mechanisms of NSCLC and provide information to support future directions in diagnosing and treating NSCLC."	"PEG10 counteracts signaling pathways of TGF-β and BMP to regulate growth, motility and invasion of SW1353 chondrosarcoma cells. Recently, we reported highly active transforming growth factor (TGF)-β and bone morphogenetic protein (BMP) signaling in human chondrosarcoma samples and concurrent downregulation of paternally expressed gene 10 (PEG10). PEG10 expression was suppressed by TGF-β signaling, and PEG10 interfered with the TGF-β and BMP-SMAD pathways in chondrosarcoma cells. However, the roles of PEG10 in bone tumors, including chondrosarcoma, remain unknown. Here, we report that PEG10 promotes SW1353 chondrosarcoma cell growth by preventing TGF-β1-mediated suppression. In contrast, PEG10 knockdown augments the TGF-β1-induced motility of SW1353 cells. Individually, TGF-β1 and PEG10 siRNA increase AKT phosphorylation, whereas an AKT inhibitor, MK2206, mitigates the effect of PEG10 silencing on cell migration. SW1353 cell invasion was enhanced by BMP-6, which was further increased by PEG10 silencing. The effect of siPEG10 was suppressed by inhibitors of matrix metalloproteinase (MMP). BMP-6 induced expression of MMP-1, -3, and -13, and PEG10 lentivirus or PEG10 siRNA downregulated or further upregulated these MMPs, respectively. PEG10 siRNA increased BMP-6-induced phosphorylation of p38 MAPK and AKT, whereas the p38 inhibitor SB203580 and MK2206 diminished SW1353 cell invasion by PEG10 siRNA. SB203580 and MK2206 impeded the enhancing effect of PEG10 siRNA on the BMP-6-induced expression of MMP-1, -3, and -13. Our findings suggest dual functions for PEG10: accelerating cell growth by suppressing TGF-β signaling and inhibiting cell motility and invasion by interfering with TGF-β and BMP signaling via the AKT and p38 pathways, respectively. Thus, PEG10 might be a molecular target for suppressing the aggressive phenotypes of chondrosarcoma cells."	"Bone-targeted delivery of TGF-β type 1 receptor inhibitor rescues uncoupled bone remodeling in Camurati-Engelmann disease. Camurati-Engelmann disease (CED) is a genetic bone-modeling disorder mainly caused by mutations in the gene that encodes transforming growth factor-β1 (TGF-β1). Symptoms of CED include bone pain, fractures, and dysplasia. Currently, effective therapies for bone fracture and dysplasia in CED are urgently needed. We have demonstrated that TGF-β1 is a coupling factor for bone remodeling and is aberrantly activated in CED. Daily injection of TGF-β type 1 receptor inhibitor (TβR1I) attenuated CED symptoms, but this systemic administration caused serious side effects. In this study, we created a conjugate linking TβR1I and alendronate, which delivered TβR1I specifically to bone. After weekly injection of the conjugate for 8 weeks, normal bone morphology and remodeling in CED mice was maintained with a minimum effective dose 700 times lower than TβR1I injection. Additionally, we found that the conjugate restored normal bone turnover by reducing the number of osteoblasts and osteoclasts, maintained a regular osteogenic microenvironment by regulating the formation of CD31 and Endomucin double-positive vessels, and preserved ordinary bone formation via inhibition of the migration of leptin-receptor-positive cells. Thus, targeting delivery of TβR1I to bone is a promising therapy for CED and other uncoupled bone remodeling disorders."	"Postnatal deletion of Alk5 gene in meniscal cartilage accelerates age-dependent meniscal degeneration in mice. Activation of transforming growth factor-β (TGF-β) signaling has been used to enhance healing of meniscal degeneration in several models. However, the exact role and molecular mechanism of TGF-β signaling in meniscus maintenance and degeneration are still not understood due to the absence of in vivo evidence. In this study, we found that the expression of activin receptor-like kinases 5 (ALK5) in the meniscus was decreased with the progression of age and/or osteoarthritis induced meniscal degeneration. Col2α1 positive cells were found to be specifically distributed in the superficial and inner zones of the anterior horn, as well as the inner zone of the posterior horn in mice, indicating that Col2α1-CreER<sup>T2</sup> mice can be a used for studying gene function in menisci. Furthermore, we deleted Alk5 in Col2α1 positive cells in meniscus by administering tamoxifen. Alterations in the menisci structure were evaluated histologically. The expression levels of genes and proteins associated with meniscus homeostasis and TGF-β signaling were analyzed by quantitative real-time PCR analysis (qRT-PCR) and immunohistochemistry (IHC). Our results revealed severe and progressive meniscal degeneration phenotype in 3- and 6-month-old Alk5 cKO mice compared with Cre-negative control, including aberrantly increased hypertrophic meniscal cells, severe fibrillation, and structure disruption of meniscus. qRT-PCR and IHC results showed that disruption of anabolic and catabolic homeostasis of chondrocytes may contribute to the meniscal degeneration phenotype observed in Alk5 cKO mice. Thus, TGF-β/ALK5 signaling plays a chondro-protective role in menisci homeostasis, in part, by inhibiting matrix degradation and maintaining extracellular matrix proteins levels in meniscal tissues."	"Design, 3D QSAR modeling and docking of TGF-β type I inhibitors to target cancer. Transforming growth factor-β (TGF-β) family members plays a vital role in regulating hormonal function, bone formation, tissue remodeling, and erythropoiesis, cell growth and apoptosis. TGF-β super-family members mediate signal transduction via serine/threonine kinase receptors located on the cell membrane. Variation in expression of the TGF-β type I and II receptors in the cancer cells compromise its tumor suppressor activities which direct to oncogenic functions. The present study was aimed to screen the potent TGF-β type I inhibitors through atom based 3D-QSAR and pharmacophore modelling. For this purpose, we have chosen known TGF-β type I inhibitors from the binding database. The PHASE module of Schrodinger identified the best Pharmacophore model which includes three hydrogen bond acceptors (A), one hydrophobic region (H), and one ring (R) as the structural features. The top pharmacophore model AAAHR.27 was chosen with the R<sup>2</sup> value of 0.94 and validated externally using molecules of the test set. Moreover the AAAHR.27 model underwent virtual screening using the molecules from the NCI, ZINC and Maybridge database. The screened molecules were further filtered using molecular docking and ADME properties prediction. Additionally, the 7 lead molecules were compared with a newly identified compound &quot;SB431542&quot; (well known TGF-β type I receptor inhibitor) and Galunisertib, a small molecule inhibitor of TGF-β type I, under clinical development (phase II trials) using the docking score and other binding properties. Also a top scored screened molecule from our study has been compared and confirmed using molecular dynamic simulation studies. By this way, we have obtained 7 distinct drug-like TGF-β type I inhibitors which can be beneficial in suppressing cancers reported with up-regulation of TGF-β type I. This result highlights the guidelines for designing molecules with TGF-β Type I inhibitory properties."	"Influencing the Fate of Cardiac and Neural Stem Cell Differentiation Using Small Molecule Inhibitors of ALK5. In this study, 50 tri-substituted imidazoles (TIs), which are analogs of the small molecules TA-01 and SB203580, were synthesized and screened for cardiomyogenic activities. Several TIs displayed cardiomyogenic activities when applied during the differentiation from days 3-5. The TIs did not affect the Wnt/β-catenin pathway during cardiomyogenesis and the likely mechanism of action is through the inhibition of ALK5 of the TGFβ pathway. Interestingly, these TIs promoted the neural differentiation of human pluripotent stem cells (hPSCs) with a similar potency to that of the dual SMAD inhibitors SB431542/LDN-193189 when dosed from days 1 to 9. The neural induction activities of the TIs correlated with their ALK5 inhibitory activities. This study reports the discovery of small molecule inhibitors of ALK5, which can promote the differentiation of hPSCs into cardiomyocytes or neural cells depending on the time of dosing, showing potential for the production of clinical-grade cardiac/neural cells for regenerative therapy. Stem Cells Translational Medicine 2018;7:709-720."	"Genetic diagnosis of acute aortic dissection in South China Han population using next-generation sequencing. Acute aortic dissection (AAD) is a clinically &quot;silent,&quot; but emergent and life-threatening cardiovascular disease, and hereditary factors play an important etiologic role in the development of AAD. The purposes of this study are to definitize the diagnostic yield of 59 AAD patients, investigate the molecular pathological spectrum of AAD by NGS, and explore the future preclinical prospects of genetic diagnosis on AAD high-risk groups. We performed next-generation sequencing (NGS) based on screening of the 69 currently aortic dissections/aneurysms-associated genes on 59 sporadic AAD samples from South China. A Kaplan-Meier survival curve was constructed to compare the event-free survival depending on variant number. Overall, 67 variants were detected in 39 patients, among which 4 patients were identified with pathogenic variants and 13 patients were diagnosed with likely pathogenic variants. Seventeen genotype positive patients were identified in aggregate, and the diagnostic yield of our study is 28.8%. All genotype-positive variants were distributed in 11 genes, FBN1 variants were in the largest number among genotype-positive variants, which were detected for 4 times, ACTA2 for 3 times, ABCC6 and TGFBR1 twice, and NOS3, MYLK, XYLT1, TIMP4, TGFBR2, CNTN3, and PON1 once. Individuals with three or more variants showed shorter mean event-free survival than patients with fewer variants. Our observations broaden the genetic pathological spectrum of AAD. Furthermore, our research uncovered two susceptibility genes FBN1 and ACTA2 for Stanford type A AAD patients. Finally, our study concluded that the number of variants an individual harbored was an important consideration in risk stratification for individualized prediction and disease diagnosis."	"Acetyl-11-keto-β-boswellic acid ameliorates renal interstitial fibrosis via Klotho/TGF-β/Smad signalling pathway. Acetyl-11-keto-β-boswellic acid (AKBA), an active triterpenoid compound from the extract of Boswellia serrate, has been reported previously in our group to alleviate fibrosis in vascular remodelling. This study aimed to elucidate the in vivo and in vitro efficacy and mechanism of AKBA in renal interstitial fibrosis. The experimental renal fibrosis was produced in C57BL/6 mice via unilateral ureteral obstruction (UUO). Hypoxia-induced HK-2 cells were used to imitate the pathological process of renal fibrosis in vitro. Results showed that the treatment of AKBA significantly alleviated UUO-induced impairment of renal function and improved the renal fibrosis by decreasing the expression of TGF-β1, α-SMA, collagen I and collagen IV in UUO kidneys. In hypoxia-induced HK-2 cells, AKBA displayed remarkable cell protective effects and anti-fibrotic properties by increasing the cell viability, decreasing the lactate dehydrogenase (LDH) release and inhibiting fibrotic factor expression. Moreover, in obstructed kidneys and HK-2 cells, AKBA markedly down-regulated the expression of TGFβ-RI, TGFβ-RII, phosphorylated-Smad2/3 (p-Smad2/3) and Smad4 in a dose-dependent fashion while up-regulated the expression of Klotho and Smad7 in the same manner. In addition, the effects of AKBA on the Klotho/TGF-β/Smad signalling were reversed by transfecting with siRNA-Klotho in HK-2 cells. In conclusion, our findings provide evidence that AKBA can effectively protect kidney against interstitial fibrosis, and this renoprotective effect involves the Klotho/TGF-β/Smad signalling pathway. Therefore, AKBA could be considered as a promising candidate drug for renal interstitial fibrosis."	"Myostatin is expressed in bovine ovarian follicles and modulates granulosal and thecal steroidogenesis. Myostatin plays a negative role in skeletal muscle growth regulation but its potential role in the ovary has received little attention. Here, we first examined relative expression of myostatin (MSTN), myostatin receptors (ACVR1B, ACVR2B and TGFBR1) and binding protein, follistatin (FST), in granulosa (GC) and theca (TC) cells of developing bovine follicles. Secondly, using primary GC and TC cultures, we investigated whether myostatin affects steroidogenesis and cell number. Thirdly, effects of gonadotropins and other intrafollicular factors on MSTN expression in GC and TC were examined. MSTN, ACVR1B, TGFBR1, ACVR2B and FST mRNA was detected in both GC and TC at all follicle stages. Immunohistochemistry confirmed follicular expression of myostatin protein. Interestingly, MSTN mRNA expression was lowest in GC of large oestrogen-active follicles whilst GC FST expression was maximal at this stage. In GC, myostatin increased basal CYP19A1 expression and oestradiol secretion whilst decreasing basal and FSH-induced HSD3B1 expression and progesterone secretion and increasing cell number. Myostatin also reduced IGF-induced progesterone secretion. FSH and dihydrotestosterone had no effect on granulosal MSTN expression whilst insulin-like growth factor and tumour necrosis factor-alpha suppressed MSTN level. In TC, myostatin suppressed basal and LH-stimulated androgen secretion in a follistatin-reversible manner and increased cell number, without affecting progesterone secretion. LH reduced thecal MSTN expression whilst BMP6 had no effect. Collectively, results indicate that, in addition to being potentially responsive to muscle-derived myostatin from the circulation, myostatin may have an intraovarian autocrine/paracrine role to modulate thecal and granulosal steroidogenesis and cell proliferation/survival."	"MicroRNA-101a suppresses fibrotic programming in isolated cardiac fibroblasts and in vivo fibrosis following trans-aortic constriction. MiR-101a is reported to reduce post-infarction myocardial fibrosis through targeting c-FOS and TGFbr1. However the actions of miR-101a within the TGF-β signaling pathway are largely unknown. We demonstrate the mechanisms underlying mutual inhibition between miR-101a and TGF-β signaling and explore the therapeutic potential of miR-101a in suppressing pressure overload-induced cardiac fibrosis. The effects of miR-101a on fibroblast proliferation, myofibroblast transdifferentiation, collagen synthesis, apoptosis, and autophagy were assessed in isolated rat cardiac fibroblasts (cFB). MiR-101a effects upon cFB TGF-β signaling were assessed by qPCR, Western blotting, 3'UTR luciferase reporter assay and promoter activity assessments. Rats subjected to transverse aortic constriction (TAC) were treated with PBS or 1 mg/kg of a miR-101a mimic i.v. at 1, 3, and 7-day post-surgery. Left ventricular (LV) function (echocardiography; LV catheterization) and LV fibrosis (picro-sirius red staining, qPCR and WB) were assessed at 2-day and 2 &amp; 10-week post-surgery. MiR-101a inhibited cFB proliferation by inducing cell apoptosis rather than through cell cycle inhibition; and reduced collagen synthesis by downregulation of collagen gene expression and increased autophagy. MiR-101a inhibited TGF-β signaling pathways by directly targeting TGFbr1, reducing Smad3 phosphorylation and inhibiting Tab3 promoter activity. Conversely TGF-β inhibited promoter activity for both miR-101a and b. In vivo endogenous miR-101a expression was downregulated 2-day post-TAC returning to baseline by 14-day. MiR-101a mimic treatment inhibited myocardial TGF-β signaling and collagen gene up-regulation at 2-day post-TAC. MiR-101a reduced fibrosis, improved +dP/dt and lowered end diastolic pressure (EDP) at 2-week post-TAC. Treatment also attenuated adverse LV remodeling and preserved cardiac ejection fraction at 10-week post-TAC. MiR-101a and TGF-β are mutually inhibitory and co-direct the activation, proliferation, and collagen synthesis of cFBs. The predominance of TGF-β signaling over reduced miR-101a expression early post-TAC is associated with cardiac fibrosis and dysfunction. Treatment with miR-101a, introduced early after imposition of abnormal pressure loading, inhibits TGF-β signaling, reduces cardiac fibrosis and preserves LV function."	"LY2109761 reduces TGF-β1-induced collagen production and contraction in hypertrophic scar fibroblasts. Hypertrophic scars (HS) are fibro-hyperproliferative dermal lesions with effusive continuous accumulation of extracellular matrix components, particularly collagen. They usually occur after dermal injury in genetically susceptible individuals and cause both physical and psychological distress for the affected individuals. Transforming growth factor-β1 (TGF-β1) is known to mediate wound healing process by regulating cell differentiation, collagen production and extracellular matrix degradation. The sustained high expression of TGF-β1 is believed to result in the formation of hypertrophic scars. Inhibition of TGF-β1 signaling pathway may represent one of effective strategies for limiting excessive scarring. LY2109761, an orally active TβRI/II kinase dual inhibitor, has been previously reported that it had inhibitory effects on carcinomas and attenuates Radiation-induced pulmonary murine fibrosis. Our results revealed that LY2109761 reduced TGF-β1-induced collagen production and α-smooth muscle actin (α-SMA) expression, and attenuated TGF-β1-induced cell contraction in hypertrophic scar fibroblasts. The data from this study provide evidence supporting the potential use of LY2109761 as a novel treatment for hypertrophic scars."	"TGF-β Signaling-Related Genes and Thoracic Aortic Aneurysms and Dissections. Transforming growth factor-β (TGF)-β signaling plays a crucial role in the development and maintenance of various organs, including the vasculature. Accordingly, the mutations in TGF-β signaling pathway-related genes cause heritable disorders of the connective tissue, such as Marfan syndrome (MFS), Loeys-Dietz syndrome (LDS), and Shprintzen-Goldberg syndrome (SGS), and these syndromes may affect skeletal, ocular, pulmonary, and cardiovascular systems. Aortic root aneurysms are common problems that can result in aortic dissection or rupture, which is the leading cause of sudden death in the natural history of MFS and LDS, and recent improvements in surgical treatment have improved life expectancy. However, there is currently no genotype-specific medical treatment. Accumulating evidence suggest that not only structural weakness of connective tissue but also increased TGF-β signaling contributes to the complicated pathogenesis of aortic aneurysm formation, but a comprehensive understanding of governing molecular mechanisms remains lacking. Inhibition of angiotensin II receptor signaling and endothelial dysfunction have gained attention as a possible MFS treatment strategy, but interactions with TGF-β signaling remain elusive. Heterozygous loss-of-function mutations in TGF-β receptors 1 and 2 (TGFBR1 and TGFBR2) cause LDS, but TGF-β signaling is activated in the aorta (referred to as the TGF-β paradox) by mechanisms yet to be elucidated. In this review, we present and discuss the current understanding of molecular mechanisms responsible for aortopathies of MFS and related disorders."	"Hyaluronan antagonizes the differentiation effect of TGF-β1 on nasal epithelial cells through down-regulation of TGF-β type I receptor. Although hyaluronan (HA)-based biomaterials have been proposed to promote mucociliary differentiation of nasal epithelial cells (NECs), the mechanism by which HA affects the growth and differentiation of NECs has not been thoroughly explored. This study investigates the effect and mechanism of HA on the differentiation of NECs. The experiment cultures human NECs in four conditions, namely controls, transforming growth factor (TGF)-β1, TGF-β1 + HA and HA groups. In the TGF group, the NECs become irregular shape without formation of tight junction and mucociliary differentiation of NECs is inhibited. Epithelial-mesenchymal transition (EMT) of NECs also occurs in the TGF group. However, with addition of HA in TGF groups, NECs reveal the mucociliary phenotypes of epithelial cells with tight junction expression. Incubation of TGF-β1 in an NEC culture leads to an increase in phosphorylated type 1 TGF-β receptors (p-TβRI). This increase is attenuated when NECs are cultured in the presence of HA. Similar expressions are observed in phosphorylated smad2/smad3. Additionally, HA-dependent inhibition of TGF-β1 signalling is inhibited by co-incubation with a blocking antibody to CD44. Experimental results indicate that HA can antagonize TGF-β1 effect on EMT and mucociliary differentiation of NECs by down-regulation of TβR I, which is via CD44."	"Identification and functional analysis of transforming growth factor-β type I receptor (TβR1) from Scylla paramamosain: The first evidence of TβR1 involved in development and innate immunity in crustaceans. The transforming growth factor-β (TGF-β) receptor-mediated TGF-β signaling cascade plays important roles in diverse cellular processes, including cell proliferation, differentiation, growth, apoptosis and inflammation in vertebrates. In the present study, the type I TGF-β receptor (TβR1) was firstly identified and characterized in mud crab Scylla paramamosain. The full-length cDNA of SpTβR1 was 1, 986 bp with a 1, 608 bp open reading frame, which encoded a putative protein of 535 amino acids including a typical transmembrane region, a conserved glycine-serine (GS) motif and a S_TKc domain (Serine/Threonine protein kinases, catalytic domain). Real-time PCR analysis showed that SpTβR1 was predominantly expressed at early embryonic development stage and was highly expressed at postmolt stages during molt cycle, suggesting its participation in development and growth. Moreover, the expression levels of SpTβR1 in hepatopancreas and hemocytes were positively induced after the challenges of Vibro alginolyticus and Poly (I:C), indicating the involvement of SpTβR1 in responding to both bacterial and viral infections. The in vivo RNA interference assays demonstrated that the expression levels of two NF-κB members (SpRelish and SpDorsal) and six antimicrobial peptide (AMP) genes (SpCrustin and SpALF2-6) were significantly suppressed when the SpTβR1 was silenced. Additionally, the expression levels of SpTβR1, SpRelish, SpDorsal and AMPs were consistently down-regulated or up-regulated when the primary cultured hemocytes were treated with TβR1 antagonist or agonist for 24 h. These results indicated that TβR1 not only contributed to the crabs' development and growth but also played vital role in the innate immunity of S. paramamosain, and it also provided new insights into the origin or evolution of TGF-β receptors in crustacean species and even in invertebrates."	"Signatures of photo-aging and intrinsic aging in skin were revealed by transcriptome network analysis. There are various factors that alter physiological characteristics in skin. Elucidating the underlying mechanism of transcriptional alterations by intrinsic and extrinsic factors may lead us to understand the aging process of skin. To identify the transcriptomic changes of the aging skin, we analyzed publicly available RNA sequencing data from Genotype-Tissue Expression (GTEx) project. GTEx provided RNA sequencing data of suprapubic (n=228) and lower leg (n=349) skins, which are photo-protected and photo-damaged. Using differentially expressed gene analysis and weighted gene co-expression network analysis, we characterized transcriptomic changes due to UV exposure and aging. Genes involved in skin development such as epidermal differentiation complex component (SPRR and LCE families), vasculature development (TGFBR1, TGFBR2, TGFBR3, KDR, FGF2, and VEGFC), and matrix metalloproteinase (MMP2, MMP3, MMP8, MMP10, and MMP13) were up-regulated by UV exposure. Also, down-regulated lipid metabolism and mitochondrial biogenesis were observed in photo-damaged skin. Moreover, wound healing process was universally down-regulated in suprapubic and lower leg with aging and further down-regulation of lipid metabolism and up-regulation of vasculature development were found as photo-aging signatures. In this study, dynamic transcriptomic alterations were observed in aged skin. Hence, our findings may help to discover a potential therapeutic target for skin rejuvenation."	"Computational investigation of TGF-β receptor inhibitors for treatment of idiopathic pulmonary fibrosis: Field-based QSAR model and molecular dynamics simulation. The discovery of drugs relevant to transforming growth factor β (TGF-β) receptor inhibitors have been considered as a considerable challenge during therapy idiopathic pulmonary fibrosis diseases. For the first time, herein we illustrate a field-based quantitative structure-activity relationship (QSAR) model and molecular dynamics (MD) simulations for novel 7-substituted-pyrazolo [4, 3-b] pyridine derivatives with biological activity for the TGF-β receptor, with an attempt of elucidating the 3D structural features that are essential for the activity. Results demonstrate that the field-based model (Q<sup>2</sup> = 0.548, R<sup>2</sup>training = 0.840, R<sup>2</sup>test = 0.750) are acceptable with good predictive capabilities. In addition, MD studies were also carried out on the training set with the aim of exploring their binding modes in the active pocket of TGF-β receptor, resulting in some of the crucial structural fragments which are responsible for inhibitory activity. Therefore, we summarized the following features required for TGF-β receptor inhibition: electronegative in region1, bulky groups in region2 and smaller groups in region3. Based on the model and related information, we hope the above information provides an important insight for understanding the interactions of the inhibitors and TGF-β receptor, which may be useful in discovering novel potent inhibitors."	"Molecular cloning and characteristics analysis of Pmtgfbr1 from Pinctada fucata martensii. Pinctada fucata martensii is cultured for pearl production. Growth improvement has received considerable research interest. Transforming growth factor β type Ⅰ receptor (TβR-I), which is involved in signals transmission of transforming growth factor beta (TGF-β), participates in cell proliferation and growth. In this study, we characterized a Tgfbr1 gene which encoded TβR-I from P. fucata martensii (Pmtgfbr1). Pmtgfbr1 cDNA contains an open reading frame of 1569 bp and encodes a polypeptide of 522 amino acids (aa). Pmtgfbr1 possesses a typical TβR-I structure (extracellular receptor ligand domain, transmembrane domain, and cytoplasmic tyrosine kinase catalytic domain). Pmtgfbr1 is expressed in all the studied tissues and exhibited the highest expression level in the adductor muscle. Moreover, Pmtgfbr1 exhibited the lower expression level in the larger group (L) than that in the smaller group (S) and is negatively correlated with growth traits (P &lt; 0.01). Our results indicated that Pmtgfbr1 is a candidate functional gene associated with growth traits."	"Transforming growth factor β mediates communication of co-cultured human nucleus pulposus cells and mesenchymal stem cells. Intervertebral disc (IVD) consists of surrounding tissue annulus fibrosus and central nucleus pulposus, which are partially degenerative in scoliotic IVDs. Successful regeneration of scoliotic alterations requires cognition of critical paracrine mediators of cell-to-cell contact in the IVD. In this work, we hypothesized that transforming growth factor β (TGF-β) is involved in the intercellular communication of nucleus pulposus cells (NPCs) and mesenchymal stem cells (MSCs). We observed that in cultured NPCs TGF-β1 stimulated COL1A1 expression, encoding collagen I, and in MSCs stimulated COL1A1 and SOX9 expressions. We subsequently co-cultured NPCs and MSCs together using direct and indirect transwell systems. The expression of miR-140 and miR-145 were decreased in co-cultured NPCs. We observed that direct co-culture system stronger than the indirect system decreased expression of three miRNA. The expression of COL1A1, ACAN, encoding aggrecan, and SOX9 genes was increased in MSCs co-cultured with NPCs. Co-cultures were incubated with two inhibitors of TGF-β type I receptor: SB-431542 and SB-525334. In co-cultured NPCs, SB-431542 and SB-525334 annulated downregulation of miR-140 and miR-145. In MSCs these inhibitors diminished stimulation of COL1A1, ACAN, and SOX9. We concluded that stimulation of COL1A1, ACAN, and SOX9 in co-cultured MSCs and regulation of miR-140 and miR-145 in NPCs were TGF-β-dependent and TGF-β is involved in the communication of NPCs and MSCs in co-culture. © 2018 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:3023-3032, 2018."	"Pancreatic cancer occurrence in Ferguson-Smith syndrome. NA"	"Sequence Analysis of Drug Target Genes with Suicidal Behavior in Bipolar Disorder Patients. A number of genes have been implicated in recent genome-wide association studies of suicide attempt in bipolar disorder. More focused investigation of genes coding for protein targets of existing drugs may lead to drug repurposing for the treatment and/or prevention of suicide. We analyzed 2,457 DNA variants across 197 genes of interest to GlaxoSmithKline across the pipeline in our sample of European patients suffering from bipolar disorder (N = 219). We analyzed these variants for a possible association with the suicide severity score (ranging from suicidal ideation/plan to serious suicide attempt) from the Schedule for Clinical Assessment in Neuropsychiatry. We conducted tests of individual variants and gene-based tests. We found a number of DNA variants in the transforming growth factor beta receptor 1 gene (TGFBR1) to be suggestively associated with suicide severity scores (p &lt; 0.005). The gene-based tests also pointed to TGFBR1 to be associated with suicide severity (p = 0.0001). However, these findings were not replicated in an independent bipolar disorder sample. We report no significant association between DNA sequences of drug target genes and suicidal behavior. Additional larger sequencing studies could further interrogate associations between variants in drug target genes and suicidal behavior."	"VEGFC/VEGFR3 axis mediates TGFβ1-induced epithelial-to-mesenchymal transition in non-small cell lung cancer cells. In the tumor progression, transforming growth factor β1 (TGFβ1) plays a critical role in tumorigenesis as well as metastasis. It is known that high plasma level of TGFβ1 in patients with advanced non-small cell lung cancer (NSCLC) is correlated with poor prognostics. In addition, the generation of cancer stem-like cells is associated with metastasis, drug resistance, and tumor recurrence, which also lead to poor outcomes in NSCLC patients. However, it remains unclear how TGFβ1 promotes NSCLC cells to acquire stem-like properties and accelerate tumor metastasis. In our study, we found that short term TGFβ1 treatment resulted in a significant epithelial-mesenchymal transition (EMT) morphological change in TGFβ1-sensitive NSCLC cells but not in insensitive cells. Western blotting confirmed increased Vimentin and reduced E-Cadherin protein expression after TGFβ1 treatment in A549, NCI-H1993, and NCI-H358 cells. TGFβ1 incubation dramatically decreased in vitro cell proliferation and increased cell invasion in TGFβ1-sensitive NSCLC cells but not in NCI-H1975, NCI-H1650, and HCC827 cells. Moreover, TGFβ1 was able to enhance the mRNA expression of Oct4, Nanog and Sox2 and drastically increased anchorage-independent colony formation in TGFβ1-sensitive NSCLC cells, suggesting the acquisition of cancer stem-like properties. Interestingly, we found that vascular endothelial growth factor receptor 3 (VEGFR3) mRNA expression was significantly elevated in TGFβ1-sensitive NSCLC cells compared to insensitive cells. And TGFβ1 was capable of inducing VEGF-C gene expression. Pharmacological blocking TGFβ type I receptor kinase (ALK5) significantly inhibited TGFβ1-induced VEGF-C expression. Silencing of ALK5 by siRNA also dramatically reduced TGFβ1-induced VEGF-C expression in TGFβ1-sensitive NSCLC cells. Therefore, TGFβ1 contributes for NSCLC metastasis through promoting EMT, generation of high invasive cancer cells with stem-like properties, and increasing VEGF-C expression. Blocking TGFβ pathway is a potential therapeutic target in human non-small cell lung cancer."	"A phase 1b study of transforming growth factor-beta receptor I inhibitor galunisertib in combination with sorafenib in Japanese patients with unresectable hepatocellular carcinoma. Background Galunisertib inhibits type I transforming growth factor-beta receptor serine/threonine kinase. The primary objective of this study was to evaluate the safety and tolerability of galunisertib in combination with sorafenib in Japanese patients with unresectable hepatocellular carcinoma. Patients and methods This open-label, dose-escalation, multicenter, nonrandomized phase 1b study consisted of two dose levels of galunisertib, 160 or 300 mg/day, in combination with sorafenib 800 mg/day. Galunisertib 80 mg or 150 mg was administered orally twice daily for 14 days followed by 14 days of rest plus sorafenib 400 mg administered orally twice daily for 28 days. The dose-limiting toxicity evaluation was 28 days after the first dose. Safety measures, pharmacokinetics, and antitumor activity were assessed. Results Fourteen patients, 7 at each galunisertib dose, were enrolled and treated. Three dose-limiting toxicities were reported for 2 patients. The most common treatment-emergent adverse events (TEAEs) were hypophosphatemia (14 patients [100%]), palmar-plantar erythrodysesthesia syndrome (12 patients [85.7%]), and decreased platelet count (10 patients [71.4%]). The most common grade ≥ 3 TEAEs were hypophosphatemia (10 patients [71.4%]) and palmar-plantar erythrodysesthesia syndrome (7 patients [50.0%]). No grade 5 TEAEs were reported. The pharmacokinetic profile of galunisertib in combination with sorafenib was similar to that previously reported for galunisertib. Eleven patients had a best overall response of stable disease, and 1 patient achieved a partial response by hepatocellular carcinoma-specific modified RECIST. Conclusions These data are consistent with the known safety profile for galunisertib and sorafenib and confirm tolerability of the recommended dose of galunisertib (150 mg twice daily for 14 days) in combination with sorafenib in Japanese patients with unresectable hepatocellular carcinoma."	"Proprotein convertase furin inhibits matrix metalloproteinase 13 in a TGFβ-dependent manner and limits osteoarthritis in mice. Cartilage loss in osteoarthritis (OA) results from altered local production of growth factors and metalloproteases (MMPs). Furin, an enzyme involved in the protein maturation of MMPs, might regulate chondrocyte function. Here, we tested the effect of furin on chondrocyte catabolism and the development of OA. In primary chondrocytes, furin reduced the expression of MMP-13, which was reversed by treatment with the furin inhibitor α1-PDX. Furin also promoted the activation of Smad3 signaling, whereas activin receptor-like kinase 5 (ALK5) knockdown mitigated the effects of furin on MMP-13 expression. Mice underwent destabilization of the medial meniscus (DMM) to induce OA, then received furin (1 U/mice), α1-PDX (14 µg/mice) or vehicle. In mice with DMM, the OA score was lower with furin than vehicle treatment (6.42 ± 0.75 vs 9.16 ± 0.6, p &lt; 0.01), and the number of MMP-13(+) chondrocytes was lower (4.96 ± 0.60% vs 20.96 ± 8.49%, p &lt; 0.05). Moreover, furin prevented the increase in ALK1/ALK5 ratio in cartilage induced by OA. Conversely, α1-PDX had no effect on OA cartilage structure. These results support a protective role for furin in OA by maintaining ALK5 receptor levels and reducing MMP-13 expression. Therefore, furin might be a potential target mediating the development of OA."	"Flavonoid-rich Scabiosa comosa inflorescence extract attenuates CCl4-induced hepatic fibrosis by modulating TGF-β-induced Smad3 phosphorylation. Scabiosa comosa inflorescence is a traditional Mongolian medicine in the treatment of liver diseases. In the study, we investigated the anti-fibrotic efficacy of flavonoid-rich Scabiosa comosa inflorescence extract (TF-SC) in a rat model of CCl4-induced hepatic fibrosis and explored its underlying mechanism in vitro and in vivo. Rats (Wistar, Male, weight 200-250 g) were injected intraperitoneally with CCl4 (1:1v/v in peanut oil, 2 mL/kg body weight) to induce liver fibrosis, followed by treatment with TF-SC or vehicle. In addition, transforming growth factor-β1 (TGF-β1)-activated hepatic stellate cells (HSCs) were used for measuring Smad3 phosphorylation. We found decrease in liver function and liver fibrosis markers in serums. Also, TF-SC decreased hydroxyproline content and collagen deposition in liver tissues. TF-SC also decreased the expression of α-SMA, collagen I and fibronectin in CCl4-induced hepatic fibrosis rats. Mechanistically, TF-SC attenuated liver fibrosis by selectively inhibiting Smad3 phosphorylation. In TGF-β1-stimulated HSCs, TF-SC blocked the interaction between Smad3 and TGF-β type I receptor (TβRI), suppressed subsequent phosphorylation and nuclear translocation of Smad3, and down-regulated the transcription of fibrotic genes. In conclusion, the study demonstrated that TF-SC was an effective therapeutic agent for treatment of hepatic fibrosis, and provided a molecular basis through which TF-SC exerts its anti-fibrotic effects."	"The TGFβ-signaling pathway and colorectal cancer: associations between dysregulated genes and miRNAs. The TGFβ-signaling pathway plays an important role in the pathogenesis of colorectal cancer (CRC). Loss of function of several genes within this pathway, such as bone morphogenetic proteins (BMPs) have been seen as key events in CRC progression. In this study we comprehensively evaluate differential gene expression (RNASeq) of 81 genes in the TGFβ-signaling pathway and evaluate how dysregulated genes are associated with miRNA expression (Agilent Human miRNA Microarray V19.0). We utilize paired carcinoma and normal tissue from 217 CRC cases. We evaluate the associations between differentially expressed genes and miRNAs and sex, age, disease stage, and survival months. Thirteen genes were significantly downregulated and 14 were significantly upregulated after considering fold change (FC) of &gt; 1.50 or &lt; 0.67 and multiple comparison adjustment. Bone morphogenetic protein genes BMP5, BMP6, and BMP2 and growth differentiation factor GDF7 were downregulated. BMP4, BMP7, INHBA (Inhibin beta A), TGFBR1, TGFB2, TGIF1, TGIF2, and TFDP1 were upregulated. In general, genes with the greatest dysregulation, such as BMP5 (FC 0.17, BMP6 (FC 0.25), BMP2 (FC 0.32), CDKN2B (FC 0.32), MYC (FC 3.70), BMP7 (FC 4.17), and INHBA (FC 9.34) showed dysregulation in the majority of the population (84.3, 77.4, 81.1, 80.2, 82.0, 51.2, and 75.1% respectively). Four genes, TGFBR2, ID4, ID1, and PITX2, were un-associated or slightly upregulated in microsatellite-stable (MSS) tumors while downregulated in microsatellite-unstable (MSI) tumors. Eight dysregulated genes were associated with miRNA differential expression. E2F5 and THBS1 were associated with one or two miRNAs; RBL1, TGFBR1, TGIF2, and INHBA were associated with seven or more miRNAs with multiple seed-region matches. Evaluation of the joint effects of mRNA:miRNA identified interactions that were stronger in more advanced disease stages and varied by survival months. These data support an interaction between miRNAs and genes in the TGFβ-signaling pathway in association with CRC risk. These interactions are associated with unique clinical characteristics that may provide targets for further investigations."	"A genetic variant located in the miR-532-5p-binding site of TGFBR1 is associated with the colorectal cancer risk. Genome-wide association studies have identified genes in the transforming growth factor-β (TGFβ) signaling pathway that are responsible for regulating carcinogenesis. We searched for single-nucleotide polymorphisms (SNPs) located within 3'-untranslated regions (3'-UTRs) that might affect the ability of miRNAs to bind genes in the TGFβ pathway for further analysis. We used TaqMan technology to genotype these SNPs in a population-based case-control study of 1147 colorectal cancer patients and 1203 matched controls in a Chinese population. The rs1590 variant of TGFBR1 exhibited a significant association with colorectal cancer risk. Compared with individuals carrying the rs1590 TT genotype, individuals carrying the GT/GG genotypes had a decreased risk of colorectal cancer [odd ratio (OR) = 0.82, 95% confidence interval (CI) = 0.68-0.97], which was more evident among older individuals with a family history of cancer. Luciferase assays confirmed that the rs1590 T allele altered the capacity of miR-532-5p to bind TGFBR1. Based on these findings, the rs1590 variant in the 3'-UTR of TGFBR1 may contribute to the susceptibility to colorectal cancer, predominantly by altering miR-532-5p binding."	"Inhibition of SRC family kinases facilitates anti-CTLA4 immunotherapy in head and neck squamous cell carcinoma. The immune system plays a critical role in the establishment, development, and progression of head and neck squamous cell carcinoma (HNSCC). As treatment with single-immune checkpoint agent results in a lower response rate in patients, it is important to investigate new strategies to maintain favorable anti-tumor immune response. Herein, the combination immunotherapeutic value of CTLA4 blockade and SFKs inhibition was assessed in transgenic HNSCC mouse model. Our present work showed that tumor growth was not entirely controlled when HNSCC model mice were administered anti-CTLA4 chemotherapeutic treatment. Moreover, it was observed that Src family kinases (SFKs) were hyper-activated and lack of anti-tumor immune responses following anti-CTLA4 chemotherapeutic treatment. We hypothesized that activation of SFKs is a mechanism of anti-CTLA4 immunotherapy resistance. We, therefore, carried out combined drug therapy using anti-CTLA4 mAbs and an SFKs' inhibitor, dasatinib. As expected, dasatinib and anti-CTLA4 synergistically inhibited tumor growth in Tgfbr1/Pten 2cKO mice. Furthermore, dasatinib and anti-CTLA4 combined to reduce the number of myeloid-derived suppressor cells and Tregs, increasing the CD8<sup>+</sup> T cell-to-Tregs ratio. We also found that combining dasatinib with anti-CTLA4 therapy significantly attenuated the expression of p-STAT3<sup>Y705</sup> and Ki67 in tumoral environment. These results suggest that combination therapy with SFKs inhibitors may be a useful therapeutic approach to increase the efficacy of anti-CTLA4 immunotherapy in HNSCC."	"Dexamethasone Induces a Specific Form of Ramified Dysfunctional Microglia. The functional status of dynamic microglial cells plays an important role in maintaining homeostasis of microenvironment in CNS. In a previous study, we reported that microglia phenotype might be involved in stress vulnerability and depression recurrence. Here, we aimed to clarify a character of microglia exposed persistently to glucocorticoid (GC), which is representative a stress hormone, in primary cultured microglial cells. Five nanomolars of dexamethasone (DEX, GC agonist) for 72 h decreased CX3CR1 and CD200R expression and induced ramified form of microglial cells in similar morphology to in vivo resident microglia. However, the ramified form of microglia did not increase microglia signature genes such as P2RY12, OLFML3, TMEM119, and TGFBR1. In addition, DEX-treated microglia showed a reduction of phagocytosis function, pro-and anti-inflammatory cytokine production, and cell proliferation. DEX washout did not restore these changes. Based on transcriptomic analysis and functional characters of DEX-treated microglia, we performed senescence-associated beta-galactosidase (SA-β gal) assay in DEX-treated microglia and DEX-treated microglia showed more SA-β gal activity with alteration of cell cycle-related genes. Thus, our results suggest that DEX can induce a specific phenotype of microglia (like-senescence)."	"A novel molecular mechanism of microRNA-21 inducing pulmonary fibrosis and human pulmonary fibroblast extracellular matrix through transforming growth factor β1-mediated SMADs activation. Pulmonary fibrosis (PF), characterized by the destruction of lung tissue architecture and the abnormal deposition of extracellular matrix (ECM) proteins, currently has no satisfactory treatment. The role of microRNA (miR)-21 in PF has been reported; the current study attempted to investigate a novel molecular mechanism by which miR-21 exerted its function. Consistent with previous studies, miR-21 inhibition reduced ECM protein levels in bleomycin (BLM)-induced mouse model of PF. In human pulmonary fibroblast (IMR-90), miR-21 inhibition reduced transforming growth factor β1 (TGFβ1)-induced ECM protein expression. Regarding a novel molecular mechanism, TGFβ1 combined with TGFβ1 receptor 1 (TGFβ1RI) to activate SMAD2/3, promote SMAD4 nucleus transformation, and thus regulate miR-21 expression and ECM. SMAD3 and SMADs complex could bind to the promoter region of miR-21 to promote miR-21 expression. In conclusion, miR-21 exerts promotive effects on BLM-induced PF and TGFβ1-induced ECM in IMR-90; TGFβ1 combines with TGFβ1RI to activate SMAD2/3, promote SMAD4 nucleus transformation, promote miR-21 expression, and thus to promote BLM-induced PF and TGFβ1-induced ECM in IMR-90 cells."	"Decreased mitochondrial respiration in aneurysmal aortas of Fibulin-4 mutant mice is linked to PGC1A regulation. Thoracic aortic aneurysms are a life-threatening condition often diagnosed too late. To discover novel robust biomarkers, we aimed to better understand the molecular mechanisms underlying aneurysm formation. In Fibulin-4R/R mice, the extracellular matrix protein Fibulin-4 is 4-fold reduced, resulting in progressive ascending aneurysm formation and early death around 3 months of age. We performed proteomics and genomics studies on Fibulin-4R/R mouse aortas. Intriguingly, we observed alterations in mitochondrial protein composition in Fibulin-4R/R aortas. Consistently, functional studies in Fibulin-4R/R vascular smooth muscle cells (VSMCs) revealed lower oxygen consumption rates, but increased acidification rates. Yet, mitochondria in Fibulin-4R/R VSMCs showed no aberrant cytoplasmic localization. We found similar reduced mitochondrial respiration in Tgfbr-1M318R/+ VSMCs, a mouse model for Loeys-Dietz syndrome (LDS). Interestingly, also human fibroblasts from Marfan (FBN1) and LDS (TGFBR2 and SMAD3) patients showed lower oxygen consumption. While individual mitochondrial Complexes I-V activities were unaltered in Fibulin-4R/R heart and muscle, these tissues showed similar decreased oxygen consumption. Furthermore, aortas of aneurysmal Fibulin-4R/R mice displayed increased reactive oxygen species (ROS) levels. Consistent with these findings, gene expression analyses revealed dysregulation of metabolic pathways. Accordingly, blood ketone levels of Fibulin-4R/R mice were reduced and liver fatty acids were decreased, while liver glycogen was increased, indicating dysregulated metabolism at the organismal level. As predicted by gene expression analysis, the activity of PGC1α, a key regulator between mitochondrial function and organismal metabolism, was downregulated in Fibulin-4R/R VSMCs. Increased TGFβ reduced PGC1α levels, indicating involvement of TGFβ signalling in PGC1α regulation. Activation of PGC1α restored the decreased oxygen consumption in Fibulin-4R/R VSMCs and improved their reduced growth potential, emphasizing the importance of this key regulator. Our data indicate altered mitochondrial function and metabolic dysregulation, leading to increased ROS levels and altered energy production, as a novel mechanism, which may contribute to thoracic aortic aneurysm formation."	"[Effects of centella asiatica granule on the expression of TGF-β1 and related down-stream signals in rats with early diabetic nephropathy]. To investigate the effects of centella asiatica (CA) granule on the expression of transform growth factor-β1(TGF-β1) and related down-stream signals in rats with early diabetic nephropathy(DN) and to clarify the molecular mechanisms of CA molecular mechanism of on preventing and curing early diabetic kidney disease DN by studying the effects of centella asiatica on TGF-β1 expression and related down-stream signals. Sixty male SD rats were divided into control group(n=10) and DN model group(n=50). The model rats were made a right nephrectomy. One week later, diabetic nephropathy was induced by intraperitoneal injection of streptocozin(30 mg/kg) for three consecutive days. High blood glucose level of Tail vein (fasting glucose ≥ 16.7 mmol/L) and high urinary protein level(total protein level in DN group was more than twice higher than the control group) were measured to confirm early DN in rats. In the sham operation group, the right renal capsule was damaged and the corresponding amount of saline was injected. The model rats were administrated by the means of intragastric administration. The DN model group were divided into DN group, DN+fosinopril group(1.6 mg/kg·d), DN+high CA group(16.8 mg/kg·d), DN+medium CA group(11.2 mg/kg·d) and DN+low CA group(5.6 mg/kg·d), and each group was intragastric administration one time every morning last for 16 weeks. The expressions of mRNA and protein of TGF-β1, TβR1, TβR2, Smad2/3, Smad7 and the level of Smad2/3 phosphorylation were detected by using real time quantitative polymerase chain reaction and Western blot. The expressions of mRNA and protein of TGF-β1, TβR1, TβR2, Smad2/3 and the level of Smad2/3 phosphorylation were significantly increased, the expressions of mRNA and protein of Smad7 were dramatically decreased. The fosinopril and high dosage CA could reverse the effects of DN. CA plays an important role in preventing and curing DN through regulating the TGF-β1/Smad signaling pathways."	"TGF-β signaling promotes tumor vasculature by enhancing the pericyte-endothelium association. The breast cancer microenvironment promotes tumor vascularization through the complex interactions involving tumor-associated fibroblasts (TAFs). Emerging data indicate that TAFs increase production and signaling by TGF-β cytokines, while the role of TGF-β signaling in the regulation of tumor blood vessels is not fully understood. The current study presents evidence that TAFs enhance the organization of tumor blood capillaries, and TGF-β signaling plays an important role in this response. Tumor vascularization was studied in xenograft models of breast carcinoma cells, alone and in combination with fibroblasts. TGF-β signaling in breast cancer cells was modulated by expression of kinase-inactive TGFBR1-K232R (dnTGFBR1) or constitutive-active TGFBR1-T204D (caTGFBR1) receptor mutants. The architecture of tumor blood capillaries was assessed by immune-histochemical analysis of endothelium and pericytes. The role of TGF-β-Smad signaling in fibronectin expression was examined using adenoviral transduction of signaling components. Our studies revealed that TAFs significantly increase the lumen size of blood microvessels. Inactivation of TGF-β signaling in tumor cells by dnTGFBR1 reduced the microvessel density and lumen sizes, decreasing tumor growth. In contrast, caTGFBR1-tumors exhibited greater vessel density and lumen sizes. Tumors with inactive dnTGFBR1 showed lower amounts of TAFs, while caTGFBR1 increased amounts of TAFs compared to the control. Inspection of pericytes and endothelial cells in tumor vasculature revealed that TAFs enhanced vessel coverage by pericytes, vascular cells supporting capillaries. This effect was impaired in dnTGFBR1-tumors, whereas active caTGFBR1 enhanced the association of pericytes with endothelium. Accordingly, dnTGFBR1-tumors exhibited the presence of hemorrhages, a sign of fragile blood vessels. Biochemical analysis showed that TGFBR1-SMAD signaling up-regulates fibronectin, a prominent regulator of endothelium-pericyte interactions. The current study indicates that tumor-fibroblast crosstalk enhances tumor vascularization by increasing the pericyte-endothelium association via a mechanism involving the TGFβ-fibronectin axis. The tumor-fibroblast model represents a useful system for dissecting the complex interactions governing tumor angiogenesis and developing new approaches to therapeutic targeting tumor vasculature."	"Linc00462 promotes pancreatic cancer invasiveness through the miR-665/TGFBR1-TGFBR2/SMAD2/3 pathway. Emerging evidence has identified that long non-coding RNAs (lncRNAs) may play an important role in the pathogenesis of many cancers, pancreatic cancer (PC) included. However, the role of linc00462 in PC remains unclear. The aim of our present study was to investigate the potential functions of linc00462 in PC and to identify the underlying mechanisms of action. CCK8 assay, transwell assay, cell cycle assay, cell apoptosis assay, EdU assay, western blot assay, cell adhesion assay, HE staining, IF staining, ELISA assay, vivo growth and metastasis assay, and colony formation assay were performed. We demonstrated that OSM mediated up-regulation of linc00462 promoted cell proliferation by accelerating cell cycle process and inhibiting cell apoptosis and adhesion in vitro, enhanced cell migration and invasion by accelerating EMT process, promoted tumor growth and matastasis in vivo and was associated with large tumor size, poor tumor differentiation, TNM stage and distant metastasis in patients of PC. In addition, we demonstrated that linc00462 was a target of miR-665. Linc00462 overexpression enhanced the expression levels of TGFBR1 and TGFBR2, and thus activated the SMAD2/3 pathway in PC cells. In conclusion, linc00462/miR-665/TGFBR1/2 regulatory network may shed light on tumorigenesis in PC."	"Effect of exogenous transforming growth factor β1 (TGF-β1) on early bovine embryo development. SummaryDuring preimplantation development, embryos are exposed and have the capacity to respond to different growth factors present in the maternal environment. Among these factors, transforming growth factor β1 (TGF-β1) is a well known modulator of embryonic growth and development. However, its action during the first stages of development, when the embryo transits through the oviduct, has not been yet elucidated. The objective of the present study was to examine the effect of early exposure to exogenous TGF-β1 on embryo development and expression of pluripotency (OCT4, NANOG) and DNA methylation (DNMT1, DNMT3A, DNMT3B) genes in bovine embryos produced in vitro. First, gene expression analysis of TGF-β receptors confirmed a stage-specific expression pattern, showing greater mRNA abundance of TGFBR1 and TGFBR2 from the 2- to the 8-cell stage, before embryonic genome activation. Second, embryo culture for the first 48 h in serum-free CR1aa medium supplemented with 50 or 100 ng/ml recombinant TGF-β1 did not affect the cleavage and blastocyst rate (days 7 and 8). However, RT-qPCR analysis showed a significant increase in the relative abundance of NANOG and DNMT3A in the 8-cell stage embryos and expanded blastocysts (day 8) derived from TGF-β1 treated embryos. These results suggest an early action of exogenous TGF-β1 on the bovine embryo, highlighting the importance to provide a more comprehensive understanding of the role of TGF-β signalling during early embryogenesis."	"Trastuzumab inhibits pituitary tumor cell growth modulating the TGFB/SMAD2/3 pathway. In pituitary adenomas, early recurrences and resistance to conventional pharmacotherapies are common, but the mechanisms involved are still not understood. The high expression of epidermal growth factor receptor 2 (HER2)/extracellular signal-regulated kinase (ERK1/2) signal observed in human pituitary adenomas, together with the low levels of the antimitogenic transforming growth factor beta receptor 2 (TBR2), encouraged us to evaluate the effect of the specific HER2 inhibition with trastuzumab on experimental pituitary tumor cell growth and its effect on the antiproliferative response to TGFB1. Trastuzumab decreased the pituitary tumor growth as well as the expression of ERK1/2 and the cell cycle regulators CCND1 and CDK4. The HER2/ERK1/2 pathway is an attractive therapeutic target, but its intricate relations with other signaling modulators still need to be unraveled. Thus, we investigated possible cross-talk with TGFB signaling, which has not yet been studied in pituitary tumors. In tumoral GH3 cells, co-incubation with trastuzumab and TGFB1 significantly decreased cell proliferation, an effect accompanied by a reduction in ERK1/2 phosphorylation, an increase of SMAD2/3 activation. In addition, through immunoprecipitation assays, a diminution of SMAD2/3-ERK1/2 and an increase SMAD2/3-TGFBR1 interactions were observed when cells were co-incubated with trastuzumab and TGFB1. These findings indicate that blocking HER2 by trastuzumab inhibited pituitary tumor growth and modulated HER2/ERK1/2 signaling and consequently the anti-mitogenic TGFB1/TBRs/SMADs cascade. The imbalance between HER2 and TGFBRs expression observed in human adenomas and the response to trastuzumab on experimental tumor growth may make the HER2/ERK1/2 pathway an attractive target for future pituitary adenoma therapy."	"Osthole decreases collagen I/III contents and their ratio in TGF-β1-overexpressed mouse cardiac fibroblasts through regulating the TGF-β/Smad signaling pathway. The present study was designed to elucidate whether the mechanism by which osthole decreases collagenI/III contents and their ratio is regulating the TGF-β/Smad signaling pathway in TGF-β1-overexpressed mouse cardiac fibroblasts (CFs). These CFs were cultured and treated with different concentrations of osthole. Our results showed that the TGF-β1 expression in the CFs transfected with that the recombinant expression plasmids pcDNA3.1(+)-TGF-β1 was significantly enhanced. After the CFs were treated with 1.25-5 μg·mL<sup>-1</sup> of osthole for 24 h, the mRNA and protein expression levels of collagensIand III were reduced. The collagen I/III ratio was also reduced. The mRNA and protein expression levels of TGF-β1, TβRI, Smad2/3, P-Smad2/3, Smad4, and α-SMA were decreased, whereas the expression level of Smad7 was increased. These effects suggested that osthole could inhibit collagen I and III expression and reduce their ratio via the TGF-β/Smad signaling pathway in TGF-β1 overexpressed CFs. These effects of osthole may play beneficial roles in the prevention and treatment of myocardial fibrosis."	"Direct phenotypic conversion of human fibroblasts into functional osteoblasts triggered by a blockade of the transforming growth factor-β signal. A procedure to generate functional osteoblasts from human somatic cells may pave the way to a novel and effective transplantation therapy in bone disorders. Here, we report that human fibroblasts were induced to show osteoblast phenotypes by culturing with ALK5 i II, which is a specific inhibitor for activin-like kinase 5 (ALK5) (tumor growth factor-β receptor 1 (TGF-β R1)). Cells cultured with ALK5 i II expressed osteoblast-specific genes and massively produced calcified bone matrix, similar to the osteoblasts induced from mesenchymal stem cells (MSC-OBs). Treatment with vitamin D3 in addition to ALK5 i II induced more osteoblast-like characters, and the efficiency of the conversion reached approximately 90%. The chemical compound-mediated directly converted osteoblasts (cOBs) were similar to human primary osteoblasts in terms of expression profiles of osteoblast-related genes. The cOBs abundantly produced bone matrix in vivo and facilitated bone healing after they were transplanted into immunodeficient mice at an artificially induced defect lesion in femoral bone. The present procedure realizes a highly efficient direct conversion of human fibroblasts into transgene-free and highly functional osteoblasts, which might be applied in a novel strategy of bone regeneration therapy in bone diseases."	"SIRT7 regulates the TGF-β1-induced proliferation and migration of mouse airway smooth muscle cells by modulating the expression of TGF-β receptor I. Accumulating evidence shows that sirtuin 7 (SIRT7), a key mediator of many cellular activities, plays an important role in the pathogenesis of various diseases; however, little is known about the role of SIRT7 in asthma, which is characterized by airway remodeling. This study investigated the potential role of SIRT7 in regulating the proliferation and migration of airway smooth muscle (ASM) cells, which are critical events during airway remodeling in asthmatic conditions. The results demonstrated that SIRT7 expression was significantly upregulated in ASM cells treated with transforming growth factor-beta 1 (TGF-β1). Knockdown of SIRT7 inhibited the proliferation, promoted the apoptosis, and suppressed the migration of TGF-β1-treated ASM cells, while overexpression of SIRT7 had the opposite effect. Moreover, knockdown of SIRT7 inhibited protein expression of the TGF-β receptor I (TβRI), whilst overexpression of SIRT7 promoted the expression of TβRI. Importantly, knockdown of TβRI partially reversed the stimulatory effect of SIRT7 overexpression on the TGF-β1-induced proliferation and migration of ASM cells. Taken together, these results demonstrate that SIRT7 is involved in regulating TGF-β1-induced ASM cell proliferation and migration by regulating the expression of TβRI, thus indicating an important role of SIRT7 during airway remodeling in asthma."	"Structure, molecular dynamics simulation, and docking studies of Dictyostelium discoideum and human STRAPs. The Serine Threonine kinase Receptor Associated Protein (STRAP) is a WD40 containing protein that provides a platform for protein interactions during cell proliferation and development. Overexpression and misregulation of STRAP contributes to various carcinomas that are now recognized as therapeutic targets especially for colorectal and lung cancers. The present study was undertaken to find an effective drug against this molecule using a simple system like Dictyostelium discoideum; which shares close homology to humans. Using techniques like structural modeling, molecular dynamics (MD) simulation and molecular docking, we found similar structure and dynamic behaviors in both, except for the presence of dissimilar numbers of β-sheets and loop segments. We identified a novel and potential drug targeted to STRAP. The results obtained allow us to use Dictyostelium as a model system for further in vivo studies. Finally, the results of protein-protein interactions using molecular docking and essential dynamics studies show STRAP to participate in TGF-β signaling in humans. Further, we show some structural units that govern the interaction of TGFβ-RI with STRAP and Smad7 proteins in TGF-β signaling pathway. In conclusion, we propose that D. discoideum can be used for enhancing our knowledge about STRAP protein."	"Signaling Crosstalk of TGF-β/ALK5 and PAR2/PAR1: A Complex Regulatory Network Controlling Fibrosis and Cancer. Both signaling by transforming growth factor-β (TGF-β) and agonists of the G Protein-coupled receptors proteinase-activated receptor-1 (PAR1) and -2 (PAR2) have been linked to tissue fibrosis and cancer. Intriguingly, TGF-β and PAR signaling either converge on the regulation of certain matrix genes overexpressed in these pathologies or display mutual regulation of their signaling components, which is mediated in part through sphingosine kinases and sphingosine-1-phosphate and indicative of an intimate signaling crosstalk between the two pathways. In the first part of this review, we summarize the various regulatory interactions that have been discovered so far according to the organ/tissue in which they were described. In the second part, we highlight the types of signaling crosstalk between TGF-β on the one hand and PAR2/PAR1 on the other hand. Both ligand⁻receptor systems interact at various levels and by several mechanisms including mutual regulation of ligand⁻ligand, ligand⁻receptor, and receptor⁻receptor at the transcriptional, post-transcriptional, and receptor transactivation levels. These mutual interactions between PAR2/PAR1 and TGF-β signaling components eventually result in feed-forward loops/vicious cycles of matrix deposition and malignant traits that exacerbate fibrosis and oncogenesis, respectively. Given the crucial role of PAR2 and PAR1 in controlling TGF-β receptor activation, signaling, TGF-β synthesis and bioactivation, combining PAR inhibitors with TGF-β blocking agents may turn out to be more efficient than targeting TGF-β alone in alleviating unwanted TGF-β-dependent responses but retaining the beneficial ones."	"Identification of recurrent risk-related genes and establishment of support vector machine prediction model for gastric cancer. This study sought to investigate genes related to recurrent risk and establish a support vector machine (SVM) classifier for prediction of recurrent risk in gastric cancer (GC).Based on the gene expression profiling dataset GSE26253, feature genes that were significantly associated with survival time and status were screened out. Subsequently, protein-protein interaction (PPI) network was constructed for these feature genes, and genes in this network was optimized using betweenness centrality algorithm in order to identify genes potentially correlated with GC (named as GCGs). In total, 1202 feature genes were identified to be significantly associated with survival time and status of GC, among of which, 65 genes were identified as a classifier that was able to recognize recurrence and nonrecurrence GC cases with a high sensitivity and specificity, predictive value (PPV), negative predictive value (NPV) and area under the receiver operating characteristic curve (AUC). Furthermore, the classifier was able to reasonably classify tumor samples in GSE15459 into high and low recurrent risk groups. Among those genes, a set of genes were predicted to have interactions (e.g. RHOA interacting with TGFBR1, PRKACA and PLCG1; TGFBR1 interacting with TGFBR2) and be involved in pathways like MAPK signaling (e.g. TGFBR1 and TGFBR2), adherens junction (e.g. RHOA) and apoptosis (e.g. PRKACA).The genes in the classifier model may be related to GC recurrence, and the classifier model may contribute to the prediction of recurrent risk in GC."	"A novel mouse model of testicular granulosa cell tumors. What is the role of dysregulated transforming growth factor beta (TGFB) signaling in the development of sex cord-stromal tumors in the testis? Overactivation of TGFB signaling results in the development of testicular tumors resembling granulosa cell tumors (GrCTs). In an earlier study, we demonstrated that constitutively active TGFB receptor 1 (TGFBR1) in ovarian somatic cells promotes the development of ovarian GrCTs. However, the consequence of dysregulation of TGFB signaling in the pathobiology of the testis, remains poorly defined. To identify the impact of dysregulation of TGFB signaling on the testis, we generated mice with constitutive activation of TGFBR1 using anti-Mullerian hormone receptor type 2 (Amhr2)-Cre recombinase. The effect of constitutively active TGFBR1 on testis development and the timeline of testicular tumor formation were examined. We further investigated the molecular features of testicular tumors and determined the expression of beta-catenin (CTNNB1) known to be involved in testicular GrCT development. Male mice with constitutive activation of TGFBR1 were examined at various developmental stages (i.e. from 1 week up to 6 months) along with controls. Testis samples were collected and processed for histological and molecular analyses, including haematoxylin and eosin (H and E) staining, real-time PCR, immunohistochemistry, immunofluorescence and western blotting. Immunostaining/immunoblotting and real-time PCR experiments were performed using at least three animals per genotype. Data are presented as mean ± SEM. Statistical significance was determined using unpaired two-tail t-test and reported when P value is &lt;0.05. Mice harboring constitutively active TGFBR1 in the testes developed tumors resembling testicular GrCTs, a rare type of tumors in the testis. The formation of testicular tumors led to altered cell proliferation, loss of germ cells and defective spermatogenesis. Immunohistochemically, these tumors were positive for inhibin alpha (INHA), forkhead box O1 (FOXO1), and more importantly, forkhead box L2 (FOXL2), a protein specifically expressed in the ovary and required for normal granulosa cell differentiation and function. Consistent with the immunohistochemical findings, FOXL2 proteins were only detectable in testes of TGFBR1-CAAcre mice but not those of controls by western blotting, suggesting potential alteration of Sertoli cell fate. To explore mechanisms underlying the tumor-promoting effect of TGFBR1 overactivation, we examined the expression of CTNNB1. The results revealed increased expression of CTNNB1 in testicular tumors in TGFBR1-CAAcre mice. Collectively, this study uncovered tumorigenic function of enhanced TGFB signaling in the testis. N/A. This study was performed using mice, and the direct relevance of the experimental paradigm and findings to human testicular GrCTs awaits further investigation. Of note, constitutive activation of TGFBR1 was employed to enhance TGFB/SMAD signaling activity and may not be interpreted as the genetic cause of the disease. This mouse model may prove to be a useful addition to the mouse genetics toolkit for GrCT research. Our finding that dysregulation of TGFB signaling results in the development of testicular GrCTs supports a common origin between Sertoli cells and granulosa cells, and highlights the paramount importance of balanced TGFB signaling in reproduction and development. This research was supported by the National Institutes of Health grant R03HD082416 from the Eunice Kennedy Shriver National Institute of Child Health &amp; Human Development and the New Faculty Start-up Funds from Texas A&amp;M University awarded to Q.L. The authors declare no competing interest."	"Tumor-associated intronic editing of HNRPLL generates a novel splicing variant linked to cell proliferation. Processing of the eukaryotic transcriptome is a dynamic regulatory mechanism that confers genetic diversity, and splicing and adenosine to inosine (A-to-I) RNA editing are well-characterized examples of such processing. Growing evidence reveals the cross-talk between the splicing and RNA editing, but there is a paucity of substantial evidence for its mechanistic details and contribution in a physiological context. Here, our findings demonstrate that tumor-associated differential RNA editing, in conjunction with splicing machinery, regulates the expression of variants of HNRPLL, a gene encoding splicing factor. We discovered an HNRPLL transcript variant containing an additional exon 12A (E12A), which is a substrate of ADAR1 and ADAR2. <u>A</u>denosine <u>d</u>eaminases <u>a</u>cting on <u>R</u>NA (ADAR) direct deaminase-dependent expression of the E12A transcript, and ADAR-mediated regulation of E12A is largely splicing-based, and does not affect the stability or nucleocytoplasmic distribution of the transcript. Furthermore, ADAR-mediated modification of exon 12A generates an enhancer for the oncogenic splicing factor SRSF1 and consequently promotes the frequency of alternative splicing. Gene expression profiling by RNA-seq revealed that E12A acts distinctly from HNRPLL and regulates a set of growth-related genes, such as cyclin CCND1 and growth factor receptor TGFBR1 Accordingly, silencing E12A expression leads to impaired clonogenic ability and enhanced sensitivity to doxorubicin, thus highlighting the significance of this alternative isoform in tumor cell survival. In summary, we present the interplay of RNA editing and splicing as a regulatory mechanism of gene expression and also its physiological relevance. These findings extend our understanding of transcriptional dynamics and provide a mechanistic explanation to the link of RNA editors to tumorigenesis."	"The phenotypic heterogeneity of patients with Marfan-related disorders and their variant spectrums. Marfan syndrome (MFS) and Loeys-Dietz syndrome (LDS) are the connective tissue disorders characterized by aortic root aneurysm and/or dissection and various additional features. We evaluated the correlation of these mutations with the phenotypes and determined the clinical applicability of the revised Ghent criteria.The mutation spectrum and phenotypic heterogeneities of the 83 and 5 Korean patients with suspected MFS and LDS were investigated as a retrospective manner. In patients with suspected MFS patients, genetic testing was conducted in half of 44 patients who met the revised Ghent criteria clinically and half of 39 patients who did not meet these criteria.Fibrillin1 gene (FBN1) variants were detected in all the 22 patients (100%) who met the revised Ghent criteria and in 14 patients (77.8%) who did not meet the revised Ghent criteria (P = .0205). Patients with mutations in exons 24-32 were diagnosed at a younger age than those with mutations in other exons. Ectopia lentis was more common in patients with missense mutations than in patients with other mutations. Aortic diameter was greater in patients with missense mutations in cysteine residues than in patients with missense mutations in noncysteine residues. Five LDS patients had either TGFBR1 or TGFBR2 variants, of which 1 patient identified TGFBR1 variant uncertain significance.The revised Ghent criteria had very high clinical applicability for detecting FBN1 variants in patients with MFS and might help in selecting patients with suspected MFS for genetic testing."	"Interleukin-6-mediated trans-signaling inhibits transforming growth factor-β signaling in trabecular meshwork cells. Glaucoma is one of the major causes of blindness, and transforming growth factor-β2 (TGF-β2) has been found to be elevated in the aqueous humor of eyes with primary open-angle glaucoma (POAG). TGF-β2 in aqueous humor causes the glaucoma-related fibrosis of human trabecular meshwork (HTM), suggesting an important role of TGF-β in POAG pathogenesis. Here, we sought to elucidate the effects of IL-6 trans-signaling on TGF-β signaling in HTM cells. Using a multiplex immunoassay, POAG patients decreased IL-6 levels and increased soluble IL-6 receptor (sIL-6R) levels compared with the controls. In in vitro experiments, we observed that the IL-6 level was increased in the conditioned medium of HTM cells after TGF-β2 stimulation. To elucidate the relationship between TGF-β2 and IL-6 in HTM cells, we conducted Western blotting and immunohistochemical analyses, and we noted that the combination of IL-6 and sIL-6R (IL6/sIL-6R) suppressed TGF-β-induced up-regulation of α-smooth muscle actin in HTM cells, whereas IL-6 alone did not. This suggests that trans-signaling, not classic signaling, of IL-6 suppresses TGF-β-induced fibrosis of HTM. IL6/sIL-6R also suppressed TGF-β-mediated activation of myosin light chain 2 (MLC2), Smad2, and p38. Of note, these inhibitory effects of IL6/sIL-6R on TGF-β were partly reduced by siRNA-mediated knockdown of STAT3. Moreover, IL-6/sIL-6R partly inhibited TGF-β-induced activation of the Smad-sensitive promoter detected with luciferase reporter gene assays and up-regulation of TGFRI and TGFRII, evaluated by quantitative real-time RT-PCR. Strikingly, overexpression of TGFRI and TGFRII diminished these inhibitory effects of IL-6/sIL-6R. We conclude that of IL-6-mediated trans-signaling potently represses TGF-β signaling in HTM cells."	"Integrated bioinformatics analysis reveals that the expression of cathepsin S is associated with lymph node metastasis and poor prognosis in papillary thyroid cancer. The prognosis of the majority of patients with papillary thyroid cancer (PTC) is excellent, although there are patients who experience disease recurrence and progression. The aim of the present study was to identify potential prognostic risk markers in PTC. Differentially expressed genes (DEGs), identified from four Genome Expression Omnibus cohorts were subjected to functional enrichment analyses with Gene Ontology terms and the Kyoto Encyclopedia of Genes and Genome pathways. Hub genes, filtered from cytoHubba, were validated using the The Cancer Genome Atlas (TCGA) cohort, and their associations with clinicopathological features and prognosis were analyzed. A total of 277 DEGs were identified following data preprocessing. DEGs were primarily enriched in 'small cell lung cancer', 'ECM-receptor interaction', 'pathways in cancer'and 'tyrosine metabolism'. Hub genes [APOE, cathepsin S (CTSS), insulin receptor substrate 1 (IRS1), KIT, LGALS3, RUNX2 and TGFBR1] were extracted from cytoHubba. Their expression in the TCGA cohort was consistent with that in the GEO cohorts. CTSS (P=0.006) and IRS1 (P=0.005) were associated with disease‑free survival, as determined using the Kaplan-Meier analysis. CTSS was an independent risk factor for poor disease‑free survival (HR, 2.649; 95% CI, 1.095-6.409; P=0.031). Patients with high expression of CTSS exhibited different histological types (increased tall-cell subtype and reduced follicular subtype; P&lt;0.001), more frequent lymph node metastasis (P&lt;0.001) and advanced tumor-node-metastasis stages (P=0.049) compared with the low-expression group. High expression of CTSS was independently associated with lymph node metastasis (OR, 2.015; 95% CI, 1.225-3.315; P=0.006). Therefore, CTSS may serve as a predictive risk marker for the progression and prognosis of PTC."	"TNFRSF19 Inhibits TGFβ Signaling through Interaction with TGFβ Receptor Type I to Promote Tumorigenesis. Genetic susceptibility underlies the pathogenesis of cancer. We and others have previously identified a novel susceptibility gene TNFRSF19, which encodes an orphan member of the TNF receptor superfamily known to be associated with nasopharyngeal carcinoma (NPC) and lung cancer risk. Here, we show that TNFRSF19 is highly expressed in NPC and is required for cell proliferation and NPC development. However, unlike most of the TNF receptors, TNFRSF19 was not involved in NFκB activation or associated with TRAF proteins. We identified TGFβ receptor type I (TβRI) as a specific binding partner for TNFRSF19. TNFRSF19 bound the kinase domain of TβRI in the cytoplasm, thereby blocking Smad2/3 association with TβRI and subsequent signal transduction. Ectopic expression of TNFRSF19 in normal epithelial cells conferred resistance to the cell-cycle block induced by TGFβ, whereas knockout of TNFRSF19 in NPC cells unleashed a potent TGFβ response characterized by upregulation of Smad2/3 phosphorylation and TGFβ target gene transcription. Furthermore, elevated TNFRSF19 expression correlated with reduced TGFβ activity and poor prognosis in patients with NPC. Our data reveal that gain of function of TNFRSF19 in NPC represents a mechanism by which tumor cells evade the growth-inhibitory action of TGFβ.Significance:TNFRSF19, a susceptibility gene for nasopharyngeal carcinoma and other cancers, functions as a potent inhibitor of the TGFβ signaling pathway.Graphical Abstract: http://cancerres.aacrjournals.org/content/canres/78/13/3469/F1.large.jpg Cancer Res; 78(13); 3469-83. ©2018 AACR."	"TGFβ1-mediated PI3K/Akt and p38 MAP kinase dependent alternative splicing of fibronectin extra domain A in human podocyte culture. Alternative splicing is an important gene regulation process to distribute proteins in health and diseases. Extra Domain A+ Fibronectin (EDA+Fn) is an alternatively spliced form of fibronectin (Fn) protein, present in the extra cellular matrix (ECM) and a recognised marker of various pathologies. TGFβ1 has been shown to induce alternative splicing of EDA+Fn in many cell types. Podocytes are spectacular cell type and play a key role in filtration and synthesise ECM proteins in renal physiology and pathology. In our previous study we have demonstrated expression and alternative splicing of EDA+Fn in basal condition in human podocytes culture. TGFβ1 further induced the basal expression and alternative splicing of EDA+Fn through Alk5 receptor and SR proteins. In this study, we have investigated TGFβ1 mediated signalling involved in alternative splicing of EDA+Fn in human podocytes. We have performed western blotting to characterise the expression of the EDA+Fn protein and other signalling proteins and RT-PCR to look for signalling pathways involved in regulation of alternative splicing of EDA+Fn in conditionally immortalised human podocytes culture.We have used TGFβ1 as a stimulator and SB431542, SB202190 and LY294002 for inhibitory studies. In this work, we have demonstrated in human podocytes culture TGFβ1 2.5ng/ml induced phosphorylation of Smad1/5/8, Smad2 and Smad3 via the ALK5 receptor. TGFβ1 significantly induced the PI3K/Akt pathway and the PI3K/Akt pathway inhibitor LY294002 significantly downregulated basal as well as TGFβ1 induced alternative splicing of EDA+Fn in human podocytes. In addition to this, TGFβ1 significantly induced the p38 MAP kinase signalling pathway and p38 MAP kinase signalling pathway inhibitor SB202190 downregulated the TGFβ1-mediated alternative splicing of EDA+Fn in human podocytes. The results with PI3K and p38 MAP kinase signalling pathway suggest that inhibiting PI3K signalling pathway downregulated the basal alternative splicing of EDA+Fn in human podocytes and its the inhibition of p38 Map Kinase signalling pathway which had specifically downregulated the TGFβ1 mediated alternative splicing of EDA+Fn in human podocytes culture. Activation of TGFβ1-mediated Smad1/5/8 via Alk5 receptor suggests that TGFβ1 signalling pathway involved Alk5/Alk1 receptor axis signalling in human podocytes."	"Epithelial cell-derived cytokines CST3 and GDF15 as potential therapeutics for pulmonary fibrosis. While wound healing is completed, the epithelium functions to normalize the interstitial context by eliminating fibroblasts excited during matrix reconstruction. If not, tissues undergo pathologic fibrosis. Pulmonary fibrosis is a fatal and hardly curable disorder. We here tried to identify epithelium-derived cytokines capable of ameliorating pulmonary fibrosis. Human lung fibroblasts were inactivated in epithelial cell-conditioned media. Cystatin C (CST3) and growth differentiation factor 15 (GDF15) were found to be enriched in the conditioned media and to inhibit the growth and activation of lung fibroblasts by inactivating the TGF-Smad pathway. In mouse and human lungs with interstitial fibrosis, CST3 and GDF15 expressions were markedly reduced, and the restoration of these cytokines alleviated the fibrotic changes in mouse lungs. These results suggest that CST3 and GDF15 are bona fide regulators to prevent excessive proliferation and activation of fibroblasts in injured lungs. These cytokines could be potential therapeutics for ameliorating interstitial lung fibrosis."	"Autoimmune Retinopathy: An Immunologic Cellular-Driven Disorder. Autoimmune retinopathy (AIR) was often mistaken for retinitis pigmentosa (RP), due to an overlap of clinical findings, but increasingly has been recognized as a unique entity in the last decade. AIR has distinctive features: sudden onset of photopsias and scotomata in patients with no family history of RP, followed by visual field and central vision loss. Initially, retina exams are normal with no sign of pigment deposits or retinal degeneration. A family history of autoimmune diseases (all types) occurs in 60% of patients. One hallmark of AIR has been the presence of anti-retinal autoimmune antibodies (ARAs) in patients' sera, but patients can continue to have ARAs even when the disease has been quiescent for years. The accumulation of ARAs represents a breakdown of retinal immune tolerance with many different immunoreactive bands found at different reference weights in AIR patients. We began investigating cellular immunity using flow cytometry and found abnormal distributions (&gt;2 StDev) of increased memory lymphocytes and NK cells and decreased regulatory B cell subsets in many AIR patients compared to normal controls. Culture of patient lymphocytes with small amounts (25 μg) of recoverin protein for 6 days led to significant elevations of interferon gamma (IFNγ) and in some cases tumor necrosis factor alpha (TNFα) production. We found the IFNγ/IL-10 ratio in response to recoverin was elevated in patients with more active disease (defined by visual field contraction between visits), but in some patients, there also appeared to be independent factors influencing severity, suggesting other autoimmune mechanisms were at play. These cellular immune parameters may provide improved markers for active AIR."	"Abrogation of transforming growth factor-β-induced tissue fibrosis in TBRIcaCol1a2Cre transgenic mice by the second generation tyrosine kinase inhibitor SKI-606 (Bosutinib). Transforming growth factor-β (TGF-β) plays a crucial role in the pathogenesis of Systemic Sclerosis (SSc) and other fibrotic disorders. TGF-β-mediated c-Abl and Src kinase activation induces strong profibrotic cascade signaling. The purpose of this study was to test in vivo the antifibrotic activity of Bosutinib (SKI-606), a second generation c-Abl and Src kinase inhibitor, on TGF-β induced cutaneous and pulmonary fibrosis. For this purpose, we employed the TBRIcaCol1a2Cre transgenic mice expressing an inducible constitutively active TGF-β receptor 1 constitutively activated by Col1a promoter-mediated Cre recombinase. The mice were treated parenterally with 2.5, 5.0 or 10.0 mg/kg/day of Bosutinib for 42 days. Skin and lungs from control and Bosutinib-treated mice (n = 6 per group) were assessed by histopathology, measurement of tissue hydroxyproline content, PCR analysis of tissue fibrosis associated gene expression, and evidence of myofibroblast activation. Mice with constitutive TGF-β-1 signaling displayed severe cutaneous and pulmonary fibrosis. Bosutinib administration decreased collagen deposition and hydroxyproline content in the dermis and lungs in a dose-dependent manner. Bosutinib also reversed the marked increase in profibrotic and myofibroblast activation-associated gene expression. These results demonstrate that constitutive TGF-β-1-signaling-induced cutaneous and pulmonary fibrosis were abrogated in a dose-related manner following parenteral administration of the c-Abl and Src tyrosine kinase inhibitor, Bosutinib. These results indicate that Bosutinib may be a potential therapeutic agent for tissue fibrosis in SSc and other fibroproliferative disorders."	"Frizzled-8 integrates Wnt-11 and transforming growth factor-β signaling in prostate cancer. Wnt-11 promotes cancer cell migration and invasion independently of β-catenin but the receptors involved remain unknown. Here, we provide evidence that FZD8 is a major Wnt-11 receptor in prostate cancer that integrates Wnt-11 and TGF-β signals to promote EMT. FZD8 mRNA is upregulated in multiple prostate cancer datasets and in metastatic cancer cell lines in vitro and in vivo. Analysis of patient samples reveals increased levels of FZD8 in cancer, correlating with Wnt-11. FZD8 co-localizes and co-immunoprecipitates with Wnt-11 and potentiates Wnt-11 activation of ATF2-dependent transcription. FZD8 silencing reduces prostate cancer cell migration, invasion, three-dimensional (3D) organotypic cell growth, expression of EMT-related genes, and TGF-β/Smad-dependent signaling. Mechanistically, FZD8 forms a TGF-β-regulated complex with TGF-β receptors that is mediated by the extracellular domains of FZD8 and TGFBR1. Targeting FZD8 may therefore inhibit aberrant activation of both Wnt and TGF-β signals in prostate cancer."	"Distinct variants affecting differential splicing of TGFBR1 exon 5 cause either Loeys-Dietz syndrome or multiple self-healing squamous epithelioma. Variants in TGFBR1 have been reported to induce two completely distinct diseases, namely Loeys-Dietz syndrome (LDS) and multiple self-healing squamous epithelioma (MSSE). However, detailed mechanisms underlying this effect remain unknown. We report a Japanese familial case of LDS with a novel splice donor site variant in TGFBR1 gene (c.973 + 1 G &gt; A; NG_007461.1). The intronic variant was predicted to mediate in-frame exon 5 skipping within the serine/threonine kinase (STK) domain, which may also be mediated by a similar TGFBR1 variant of a splice acceptor site in intron 4 (c.806-2 A &gt; C), identified in a British familial case of MSSE. Therefore, ex vivo splicing and functional assays were performed in mammalian cells to evaluate the effect of these sequence variants. The MSSE variant activated a cryptic acceptor site at 76 bp downstream of the 3' natural splice acceptor site, which produced an out-of-frame transcript (r.807_882del, p.Asn270Thrfs*8). In contrast, the LDS variant generated two types of in-frame transcription products, r.[806_973del, 965_973 del], and produced two functionally inactivated proteins, p.[Asp269_Gln324del, Thr323_Gly325del], as a result of exon 5 skipping and the activation of a cryptic donor splice site at 9 bp upstream of the 5' natural splice donor site, respectively. Our results support the previously proposed but not yet approved mechanism that dominant-negative and truncating variants in STK domain induce LDS and MSSE, respectively."	"Modulation of TGFβ/Smad signaling by the small GTPase RhoB. We have shown previously that the small GTPases RhoA and RhoB play important roles in early TGFβ-induced actin cytoskeleton reorganization and that RhoB is transcriptionally activated by TGFβ and its signaling effectors, the Smad proteins. However, this long-term impact of RhoB gene upregulation by TGFβ on cellular functions is not known. We now show that increased levels of RhoB, but not of RhoA, inhibit the TGFβ/Smad-mediated transcriptional induction of the cell cycle inhibitor p21<sup>WAF1/Cip1</sup> gene as well as of a generic Smad-responsive promoter suggesting that RhoB could be part of an auto-inhibitory loop in TGFβ signaling by inhibiting the genomic responses to TGFβ. We show that RhoB blocks the interaction of Smad3 with the type I TGFβ receptor which prohibits its phosphorylation by this receptor and its translocation to the nucleus. Using in vivo GST pull-down and co-immunoprecipitation assays we show that Smad3 physically interacts with RhoB but not with RhoA. We show that RhoB, but not RhoA, potently regulates actin cytoskeleton reorganization by inducing stress fiber formation in a Smad-dependent manner. Finally we show that Smad3 downregulates the expression of the epithelial adherens junctions protein E-Cadherin and upregulates the fibronectin gene in Smad3<sup>-/-</sup> JEG3 cells only in the presence of RhoB suggesting that RhoB/Smad3 complexes in the cytoplasm may be involved in epithelial to mesenchymal transitions. In summary, our data propose a novel mechanism of TGFβ/Smad signaling modulation by the small GTPase RhoB and show that this TGFβ/RhoB signaling cross talk affects the nuclear and cytoplasmic responses to TGFβ in opposite ways."	"Hyperoxia induces epigenetic changes in newborn mice lungs. Supplemental oxygen exposure is a risk factor for the development of bronchopulmonary dysplasia (BPD). Reactive oxygen species may damage lung tissue, but hyperoxia also has the potential to alter genome activity via changes in DNA methylation. Understanding the epigenetic potential of hyperoxia would enable further improvement of the therapeutic strategies for BPD. Here we aimed to identify hyperoxia-related alterations in DNA methylation, which could affect the activity of crucial genetic pathways involved in the development of hyperoxic lung injury. Newborn mice (n = 24) were randomized to hyperoxia (85% O2) or normoxia groups for 14 days, followed by normoxia for the subsequent 14 days. The mice were sacrificed on day 28, and lung tissue was analyzed using microarrays developed for the assessment of genome methylation and expression profiles. The mean DNA methylation level was higher in the hyperoxia group than the normoxia group. The analysis of specific DNA fragments revealed hypermethylation of &gt; 1000 gene promoters in the hyperoxia group, confirming the presence of the DNA-hypermethylation effect of hyperoxia. Further analysis showed significant enrichment of the TGF-β signaling pathway (p = 0.0013). The hypermethylated genes included Tgfbr1, Crebbp, and Creb1, which play central roles in the TGF-β signaling pathway and cell cycle regulation. Genome expression analysis revealed in the hyperoxia group complementary downregulation of genes that are crucial for cell cycle regulation (Crebbp, Smad2, and Smad3). These results suggest the involvement of the methylation of TGF-β pathway genes in lung tissue reaction to hyperoxia. The data also suggest that hyperoxia may be a programming factor in newborn mice."	"CpG-oligodeoxynucleotides may be effective for preventing ionizing radiation induced pulmonary fibrosis. Pulmonary fibrosis is a serious adverse effect of radiotherapy for thoracic tumor, which is believed to be a process that is tightly regulated by the phenotype of the developing Th response after radiation. Here, we will investigate whether CpG-oligodeoxynucleotides (ODN) prevent radiation-induced pulmonary fibrosis by shifting the imbalance of Th1 and Th2 response and summarizes the possible mechanism. In this study, female C57BL/6 mice were chosen to preform pulmonary fibrosis model, the whole-thorax of mice was exposed to a single radiation dose of 15 Gy. When irradiated mice were administrated with CpG-ODN, forming of pulmonary fibrosis was significantly prevented. Th2-related cytokines (IL-4 and IL-13) expression decreased, Th1 related-cytokine (IFN-γ and IL-12) expression increased. Alveolar macrophage accumulation was reduced in irradiated tissue. Profibrotic cytokine TGF-β1 expression stayed at lower level. In TGF-β1-Smad-dependent pathways, TGF-β1, TβR and phosphor-Smad 2/3 were down regulated, and Smad 7 was up regulated. These suggested that CpG-ODN prevented pulmonary fibrosis after radiation. The mechanism might be associated with reduction of alveolar macrophages accumulation and profibrogenic cytokines secretion TGF-β1 through stimulating the combination of Th1-promoting and Th2-limiting responses after radiation, and finally inhibited the fibrosis-related downstream TGF-β1-Smad-dependent pathway."	"Novel inhibitors of the cellular renin-angiotensin system components, poricoic acids, target Smad3 phosphorylation and Wnt/β-catenin pathway against renal fibrosis. Tubulo-interstitial fibrosis is the final pathway in the progression of chronic kidney disease (CKD) to kidney failure. The renin-angiotensin system (RAS) plays a major role in CKD progression. Hence, we determined the efficacy of novel RAS inhibitors isolated from Poria cocos against renal fibrosis. Effects of three novel tetracyclic triterpenoid compounds, poricoic acid ZC (PZC), poricoic acid ZD (PZD) and poricoic acid ZE (PZE), were investigated on TGFβ1- and angiotensin II (AngII)-treated HK-2 cells and unilateral ureteral obstruction (UUO) in mice. Immunofluorescence staining, quantitative real-time PCR, siRNA, co-immunoprecipitation and Western blot analyses were used to evaluate expression of key molecules in RAS, Wnt/β-catenin and TGFβ/Smad pathways. Addition of the above compounds to culture media and their administration to UUO mice: (i) significantly attenuated epithelial-to-mesenchymal transition and extracellular matrix production in TGFβ1- and AngII-treated HK-2 cells and UUO mice by inhibiting Wnt/β-catenin pathway activation and Smad3 phosphorylation; (ii) selectively inhibited Smad3 phosphorylation by blocking the interaction of TGFBR1 with Smad3; and (iii) specifically inhibited Smad3 activation. PZC and PZD showed a strong inhibitory effect on all RAS components, and PZE showed a strong inhibitory effect on renin. Furthermore, the secolanostane tetracyclic triterpenoids, PZC and PZD, showed a stronger inhibitory effect than the lanostane tetracyclic triterpenoid PZE. Therefore, compounds with secolanostance skeleton showed stronger bioactivity than those with lanostance skeleton. The secolanostane tetracyclic triterpenoids effectively blocked RAS by simultaneously targeting multiple RAS components and lanostane tetracyclic triterpenoids inhibited renin and protected against tubulo-interstitial fibrosis."	"Atrial overexpression of microRNA-27b attenuates angiotensin II-induced atrial fibrosis and fibrillation by targeting ALK5. Atrial fibrosis influences atrial fibrillation (AF) development by transforming growth factor beta 1 (TGF-β1)/Smad pathway. Although microRNAs are implicated in the pathogenesis of various diseases, information regarding the functional role of microRNAs in atrial dysfunction is limited. In the present study, we found that microRNA-27b (miR-27b) was the dominant member of miR-27 family expressed in left atrium. Moreover, the expression of miR-27b was significantly reduced after angiotensin II (AngII) infusion. Masson's trichrome staining revealed that delivery of miR-27b adeno-associated virus to left atrium led to a decrease in atrial fibrosis induced by AngII. The increased expression of collagen I, collagen III, plasminogen activator inhibitor type 1 and alpha smooth muscle actin was also inhibited after miR-27b upregulation. In isolated perfused hearts, miR-27b restoration markedly attenuated AngII-induced increase in interatrial conduction time, AF incidence and AF duration. Furthermore, our data evidence that miR-27b is a novel miRNA that targets ALK5, a receptor of TGF-β1, through binding to the 3' untranslated region of ALK5 mRNA. Ectopic miR-27b suppressed luciferase activity and expression of ALK5, whereas inhibition of miR-27b increased ALK5 luciferase activity and expression. Additionally, miR-27b inhibited AngII-induced Smad-2/3 phosphorylation without altering Smad-1 activity. Taken together, our study demonstrates that miR-27b ameliorates atrial fibrosis and AF through inactivation of Smad-2/3 pathway by targeting ALK5, suggesting miR-27b may play an anti-fibrotic role in left atrium and function as a novel therapeutic target for the treatment of cardiac dysfunction."	"T Cell Receptor-Regulated TGF-β Type I Receptor Expression Determines T Cell Quiescence and Activation. It is unclear how quiescence is enforced in naive T cells, but activation by foreign antigens and self-antigens is allowed, despite the presence of inhibitory signals. We showed that active transforming growth factor β (TGF-β) signaling was present in naive T cells, and T cell receptor (TCR) engagement reduced TGF-β signaling during T cell activation by downregulating TGF-β type 1 receptor (TβRI) through activation of caspase recruitment domain-containing protein 11 (CARD11) and nuclear factor κB (NF-κB). TGF-β prevented TCR-mediated TβRI downregulation, but this was abrogated by interleukin-6 (IL-6). Mitigation of TCR-mediated TβRI downregulation through overexpression of TβRI in naive and activated T cells rendered T cells less responsive and suppressed autoimmunity. Naive T cells in autoimmune patients exhibited reduced TβRI expression and increased TCR-driven proliferation compared to healthy subjects. Thus, TCR-mediated regulation of TβRI-TGF-β signaling acts as a crucial criterion to determine T cell quiescence and activation."	"Specific blockade CD73 alters the &quot;exhausted&quot; phenotype of T cells in head and neck squamous cell carcinoma. The adenosine-induced immunosuppression hampers the immune response toward tumor cells and facilitates the tumor cells to evade immunosurveillance. CD73, an ecto-5-nucleotidase, is the ectoenzyme dephosphorylating extracellular AMP to adenosine. Here, using immunocompetent transgenic head and neck squamous cell carcinoma (HNSCC) mouse model, immune profiling showed high expression of CD73 on CD4<sup>+</sup> and CD8<sup>+</sup> T cells was associated with an &quot;exhausted&quot; phenotype. Further, treatment with anti-CD73 monoclonal antibody (mAb) significantly blunted the tumor growth in the mouse model, and the blockade of CD73 reversed the &quot;exhausted&quot; phenotype of CD4<sup>+</sup> and CD8<sup>+</sup> T cells through downregulation of total expression of PD-1 and CTLA-4 on T cells. Whereas the population of CD4<sup>+</sup> CD73<sup>hi</sup> /CD8<sup>+</sup> CD73<sup>hi</sup> T cells expressed higher CTLA-4 and PD-1 as compared to untreated controls. In addition, the human tissue microarrays showed the expression of CD73 is upregulated on tumor infiltrating immune cells in patients with primary HNSCC. Moreover, CD73 expression is an independent prognostic factor for poor outcome in our cohort of HNSCC patients. Altogether, these findings highlight the immunoregulatory role of CD73 in the development of HNSCC and we propose that CD73 may prove to be a promising immunotherapeutic target for the treatment of HNSCC."	"Prenatal nicotine exposure intergenerationally programs imperfect articular cartilage via histone deacetylation through maternal lineage. Accumulating evidence has shown that the impact of prenatal environmental factors on the organs of the offspring could last until the adulthood. Here, we aimed to investigate these effects and the potential mechanism of prenatal nicotine exposure (PNE) on the female adult cartilage of the first generation (PNE-F1) and the second generation (PNE-F2). Pregnant Wistar rats were injected with 2.0 mg/kg.d nicotine from gestational day (GD) 9 to 20. Then their F1 generation at GD20 and postnatal week (PW) 12, and F2 generation at PW12 were harvested. The expression of extracellular matrix (ECM) and transforming growth factor β (TGFβ) signaling genes were analyzed by real-time quantitative PCR, and the histone acetylation was examined by chromatin immunoprecipitation assay. The results showed that PNE reduced the ECM and TGFβ signaling gene expressions in both PNE-F1 and PNE-F2 female adult articular cartilage. In the F1 generation, PNE inhibited the acetylation at H3K9 of TGFβ, TGFβ receptor 1 (TGFβR1), SRY-type high mobility group box 9 (SOX9), a1 chain of type II collagen (COL2A1) and aggrecan (ACAN) gene promoters at both GD20 and PW12. In PNE-F2 at PW12, the obvious deacetylation at H3K9 of the TGFβR1 and COL2A1 promoters still existed. Moreover, in rat fetal chondrocytes, corticosterone rather than nicotine directly induced the hypoacetylation of H3K9 of TGFβR1 and COL2A1 genes, which might be the main cause of imperfect cartilage for PNE-F2. This study may be helpful to elucidate the developmental variability of articular cartilage quality and useful for the early prevention of articular damage."	"The MAPK-Signaling Pathway in Colorectal Cancer: Dysregulated Genes and Their Association With MicroRNAs. Mitogen-activated protein kinase (MAPK) pathways regulate many cellular functions including cell proliferation and apoptosis. We examined associations of differential gene and microRNA (miRNA) expression between carcinoma and paired normal mucosa for 241 genes in the KEGG-identified MAPK-signaling pathway among 217 colorectal cancer (CRC) cases. Gene expression data (RNA-Seq) and miRNA expression data (Agilent Human miRNA Microarray V19.0; Agilent Technologies Inc., Santa Clara, CA, USA) were analyzed. We first identified genes most strongly associated with CRC using a fold change (FC) of &gt;1.50 or &lt;0.67) that were statistically significant after adjustment for multiple comparisons. We then determined miRNAs associated with dysregulated genes and through miRNA:mRNA (messenger RNA) seed region matches discerned genes with a greater likelihood of having a direct biological association. Ninety-nine genes had a meaningful FC for all CRC, microsatellite unstable-specific tumors, or microsatellite stable-specific tumors. Thirteen dysregulated genes were associated with miRNAs, totaling 68 miRNA:mRNA associations. Thirteen of the miRNA:mRNA associations had seed region matches where the differential expression between the miRNA and mRNA was inversely related suggesting a direct association as a result of their binding. Several direct associations, upstream of ERK1/ERK2, JNK, and p38, were found for PDGFRA with 7 miRNAs; RASGRP3 and PRKCB with miR-203a; and TGFBR1 with miR-6071 and miR-2117. Other associations between miRNAs and mRNAs are most likely indirect, resulting from feedback and feed forward loops. Our results suggest that miRNAs may alter MAPK signaling through direct binding with key genes in this pathway. We encourage others to validate results in targeted CRC experiments that can help solidify important therapeutic targets."	"TGFB1 modulates in vitro secretory activity and viability of equine luteal cells. In the present report we describe the involvement of transforming growth factor B1 (TGF) in functional regression and structural luteolysis in the mare. Firstly, TGF and its receptors activin-like kinase (ALK) 5 and TGF receptor 2 were identified in corpus luteum (CL) steroidogenic, endothelial and fibroblast-like cells. Also, TGF and ALK5 protein expression were shown to be increased in Mid-, and Late-CL (p &lt; 0.05). Subsequently, using an in vitro model with Mid-CL cells, we studied the role of TGF on secretory activity and cell viability. Cell treatment with TGF decreased progesterone (P4) and prostaglandin (PG) E2 concentrations in culture media (p &lt; 0.05), and downregulated mRNA and protein of StAR, CYP11A1, cPGES and mPGES1 (p &lt; 0.05). Conversely, TGF augmented PGF2a concentration in culture media, through PTGS2 and PGFS gene expression activation (p &lt; 0.05). When cells were incubated with PGF2a, both TGF and ALK5 were upregulated (p &lt; 0.05). Additionally, treatment with the pharmacological inhibitor of ALK5, ALK4 and ALK7 - SB431542 (SB) attenuated PGF2a functional and structural luteolytic actions. Indeed, SB blocked: (i) PGF2a inhibitory effect on StAR, CYP11A1, 3BHSD and mPGES1; (ii) PGF2a auto-amplification signal via PTGS2 and PGFS expression (p &lt; 0.05); (iii) the PGF2a-induced BAX and FASL expression (p &lt; 0.05). Finally, TGF decreased cell viability (p &lt; 0.05) and promoted caspase 3 activity (p = 0.08) and the expression of pro-apoptotic FASL and BAX (p &lt; 0.05). Our results suggest that TGF supports functional regression and structural luteolysis, and also confirm the importance of ALK5, ALK4 and ALK7 activation during PGF2a mediated luteolysis in mares."	"The Role for Exosomal microRNAs in Disruption of Regulatory T Cell Homeostasis in Multiple Sclerosis. Multiple sclerosis (MS) is an autoimmune disease of the central nervous system, in which myelin and oligodendrocytes are the main targets recognized by inflammatory CD4<sup>+</sup> T cells reactive to myelin peptides. Regulatory CD4<sup>+</sup> T (Treg) cells normally keep homeostasis of the immune system by inhibiting detrimental effects of inflammatory T cells. However, Treg cells are reduced in patients with MS for unknown reason. This commentary highlights a novel function of circulating exosomes to inhibit the differentiation of Treg cells in MS. Our recent work has demonstrated that the circulating exosomes, a member of extracellular vesicles, of patients with MS exert this effect by transferring let-7i to naive CD4<sup>+</sup> T cells. The transferred let-7i subsequently causes a decreased expression of insulin like growth factor 1 receptor (IGF1R) and transforming growth factor β receptor 1 (TGFBR1), leading to the inhibition of Treg cell differentiation. Thus, extrinsic microRNAs transferred by exosomes might have an active role in triggering autoimmune diseases. We hypothesize that extracellular vesicles including exosomes can be a communication tool between the gut microbiota and the host immune system. Further research in this area will expand the knowledge about the precise mechanism of autoimmune diseases and can lead to a new therapeutic approach."	"Changes in the expression of matrix extracellular genes and TGFB family members in rotator cuff tears. Lack of synthesis of extracellular matrix compounds may contribute to degeneration of the tendons. Thus, we aimed to evaluate the expression of extracellular matrix and TGFB family members in ruptured and non-ruptured tendons of the rotator cuff, as well as the effect of clinical factors on gene expression in tendon samples, and the relationship between histological findings and altered gene expression. Injured and non-injured supraspinatus tendon samples and subscapular non-injured tendon samples were collected from 38 patients with rotator cuff tears. Non-injured supraspinatus tendons were obtained from eight controls. Specimens were used for histological evaluation, quantification of collagen fibers, and mRNA and protein expression analyses. Increased COL1A1, COL1A2, COL3A1, COL5A1, FN1, TNC, and TGFBR1 mRNA expression was observed in the tear samples (p &lt; 0.05). Duration of symptoms was correlated with the levels of collagen type I/III fibers (p = 0.032; ρ = 0.0447) and FN1 immunostaining (p = 0.031; ρ = 0.417). Smoking was associated with increased frequency of microcysts, myxoid degeneration, and COL5A1, FN1, TNC, and TGFB1 mRNA expression (p &lt; 0.05). FN1 immunostaining was correlated with the number of years of smoking (p = 0.048; ρ = 0.384). Lower levels of collagen type I/III fibers were detected in samples with fissures (0 = 0.046). High frequency of microcysts was associated with increased COL5A1, FN1, and TNC expression (p &lt; 0.05, for all comparisons). Neovascularization was associated with reduced FN1 (p = 0.035) and TGFBR1 expression (p = 0.034). Our findings show differential expression of matrix extracellular genes and TGFB family members in the degeneration process involved in rotator cuff tears. These molecular alterations are influenced by clinical factors. © 2018 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:2542-2553, 2018."	"miR-22 regulates C2C12 myoblast proliferation and differentiation by targeting TGFBR1. Recently, miR-22 was found to be differentially expressed in different skeletal muscle growth period, indicated that it might have function in skeletal muscle myogenesis. In this study, we found that the expression of miR-22 was the most in skeletal muscle and was gradually up-regulated during mouse myoblast cell (C2C12 myoblast cell line) differentiation. Overexpression of miR-22 repressed C2C12 myoblast proliferation and promoted myoblast differentiation into myotubes, whereas inhibition of miR-22 showed the opposite results. During myogenesis, we predicted and verified transforming growth factor beta receptor 1 (TGFBR1), a key receptor of the TGF-β/Smad signaling pathway, was a target gene of miR-22. Then, we found miR-22 could regulate the expression of TGFBR1 and down-regulate the Smad3 signaling pathway. Knockdown of TGFBR1 by siRNA suppressed the proliferation of C2C12 cells but induced its differentiation. Conversely, overexpression of TGFBR1 significantly promoted proliferation but inhibited differentiation of the myoblast. Additionally, when C2C12 cells were treated with different concentrations of transforming growth factor beta 1 (TGF-β1), the level of miR-22 in C2C12 cells was reduced. The TGFBR1 protein level was significantly elevated in C2C12 cells treated with TGF-β1. Moreover, miR-22 was able to inhibit TGF-β1-induced TGFBR1 expression in C2C12 cells. Altogether, we demonstrated that TGF-β1 inhibited miR-22 expression in C2C12 cells and miR-22 regulated C2C12 cell myogenesis by targeting TGFBR1."	"Innate immune system activation in zebrafish and cellular models of Diamond Blackfan Anemia. Deficiency of ribosomal proteins (RPs) leads to Diamond Blackfan Anemia (DBA) associated with anemia, congenital defects, and cancer. While p53 activation is responsible for many features of DBA, the role of immune system is less defined. The Innate immune system can be activated by endogenous nucleic acids from non-processed pre-rRNAs, DNA damage, and apoptosis that occurs in DBA. Recognition by toll like receptors (TLRs) and Mda5-like sensors induces interferons (IFNs) and inflammation. Dying cells can also activate complement system. Therefore we analyzed the status of these pathways in RP-deficient zebrafish and found upregulation of interferon, inflammatory cytokines and mediators, and complement. We also found upregulation of receptors signaling to IFNs including Mda5, Tlr3, and Tlr9. TGFb family member activin was also upregulated in RP-deficient zebrafish and in RPS19-deficient human cells, which include a lymphoid cell line from a DBA patient, and fetal liver cells and K562 cells transduced with RPS19 shRNA. Treatment of RP-deficient zebrafish with a TLR3 inhibitor decreased IFNs activation, acute phase response, and apoptosis and improved their hematopoiesis and morphology. Inhibitors of complement and activin also had beneficial effects. Our studies suggest that innate immune system contributes to the phenotype of RPS19-deficient zebrafish and human cells."	"Endoglin pathway genetic variation in preeclampsia: A validation study in Norwegian and Latina cohorts. The purpose of this study was to validate our previous genetic association findings related to the endoglin (ENG) pathway from an American Caucasian preeclampsia cohort in independent preeclampsia cohorts. We also sought to explore the ENG pathway for new genetic associations in these independent cohorts. We used a tagging single nucleotide (tSNP) approach to assess genetic variability across five ENG pathway genes (ENG, TGFβ1, TGFβR1, ALK1, and TGFβR2) in a Caucasian cohort from Norway (n = 77 preeclampsia cases &amp; n = 63 normotensive controls) and a White Hispanic cohort from Southern California (n = 69 preeclampsia cases &amp; n = 106 normotensive controls). Univariate analyses (Chi Square, Fisher's Exact) and multivariate logistic regression were conducted to evaluate the association between tSNP genotype distributions and pregnancy outcome in each cohort. Logistic regression models were adjusted for maternal age at delivery, infant sex, parity, smoking during pregnancy, and pre-pregnancy BMI. Although we were unable to replicate our previous SNP-specific findings (ENG rs11792480, rs10121110; TGFβR2 rs6550005; p's &gt; 0.05), we found that genetic variation in TGFβR1[ALK5] (rs6478974) and TGFβR2 (rs11129420, rs6802220, rs1155708, rs3773640, rs3773663) was significantly associated with preeclampsia in the Norwegian cohort and genetic variation in ALK1 (rs706819) and TGFβR2 (rs9843942) was significantly associated with preeclampsia in the Latina cohort. Overall, our results provide further support for the involvement and investigation of the endoglin pathway in preeclampsia."	"Thrombin promotes PAI-1 expression and migration in keratinocytes via ERK dependent Smad linker region phosphorylation. Keratinocyte proliferation and migration is essential during re-epithelialisation for the restoration of the epithelial barrier during skin wound healing. Numerous growth factors are involved in the stimulation of keratinocyte proliferation and migration. The signalling pathways that drive these processes during wound healing are not well defined. This study investigated thrombin-mediated signalling in keratinocytes. The thrombin receptor, protease-activated receptor 1 (PAR-1) is a seven transmembrane G-protein coupled receptor that is known to transactivate the epidermal growth factor receptor (EGFR). Immortalized human keratinocytes (HaCaT cells) were treated with thrombin and selective inhibitors to EGFR and MAP kinases. Whole cell lysates were separated on SDS-PAGE and analysed by Western blot using antibodies against transcription factor Smad2. Quantitative real-time polymerase chain reaction was used to measure the mRNA expression of PAI-1 while scratch wound assays were used to measure keratinocyte migration. Western blot data showed that thrombin mediates PAR-1 transactivation of EGFR and the downstream phosphorylation of the transcription factor Smad2 linker (Smad2L) region. ERK1/2 inhibition by UO126 caused a decrease in Smad2L phosphorylation while the p38 inhibitor SB202190 and JNK inhibitor SP600125 did not. Smad2L Ser250 was specifically phosphorylated by this thrombin mediated pathway while Ser245 and Ser255 were not. Thrombin increased PAI-1 mRNA expression and keratinocyte migration and this was reduced when either EGFR or ERK1/2 were blocked. Taken together these results show that thrombin mediated mRNA expression of PAI-1 in keratinocytes and migration occurs via EGFR transactivation and involves signalling intermediates ERK1/2 and Smad2 and may be a key pathway in skin wound healing."	"The orphan GPR50 receptor promotes constitutive TGFβ receptor signaling and protects against cancer development. Transforming growth factor-β (TGFβ) signaling is initiated by the type I, II TGFβ receptor (TβRI/TβRII) complex. Here we report the formation of an alternative complex between TβRI and the orphan GPR50, belonging to the G protein-coupled receptor super-family. The interaction of GPR50 with TβRI induces spontaneous TβRI-dependent Smad and non-Smad signaling by stabilizing the active TβRI conformation and competing for the binding of the negative regulator FKBP12 to TβRI. GPR50 overexpression in MDA-MB-231 cells mimics the anti-proliferative effect of TβRI and decreases tumor growth in a xenograft mouse model. Inversely, targeted deletion of GPR50 in the MMTV/Neu spontaneous mammary cancer model shows decreased survival after tumor onset and increased tumor growth. Low GPR50 expression is associated with poor survival prognosis in human breast cancer irrespective of the breast cancer subtype. This describes a previously unappreciated spontaneous TGFβ-independent activation mode of TβRI and identifies GPR50 as a TβRI co-receptor with potential impact on cancer development."	"Blocking TGF-β type 1 receptor partially reversed skin tissue damage in experimentally induced atopic dermatitis in mice. Animals with impaired transforming growth factor (TGF)-β1 signaling developed spontaneous lethal autoimmune inflammationand autoimmune diseases. Moreover, evidence for modified TGF-β signaling in atopic dermatitis (AD) exists. Therefore, the goal of this study was to determine whether SB-431542, a potent and selective inhibitor of the TGF-β type 1 receptor (TGF-βR1), could attenuate such a severe reaction in mice. In addition, the molecular underpinnings the possible protective effects were also investigated. Repeated epicutaneous application of DNCB was performed on the ear and shaved dorsal skin of miceto induce AD-like symptoms and skin lesions. SB-431542 (1 mg/kg) was given by intra-peritoneal injection three times weekly for 3 weeks to assess the anti-pruritic effects. Serum levels of TGF-β1, TGF-βR1, latency-associated peptide (LAP), tumor necrosis factor (TNF)-α, interleukin (IL)-1β and IL-6 were assessed by ELISA. Moreover, the gene expression of TNF-α, IL-1β and IL-6 were determined. Apoptotic pathway was evaluated by measuring the activity of caspase-3 and by staining skin sections with anti-caspase-3 antibodies. We found that SB-431542 alleviated DNCB-induced AD-like symptoms as quantified by skin lesion,dermatitisscore, ear thickness and scratching behavior. In parallel, SB-431542 blocked DNCB-induced elevation in serum levels of TNF-α, TGF-β1, TGF-βR1, LAP, IL-1β, IL-6 and IgE. The collective results indicate that SB-431542 partially suppresses DNCB-induced AD in micevia reduction of TGF-β1 signaling pathway associated with inhibition of inflammation and apoptosis."	"Autocrine transforming growth factor-β/activin A-Smad signaling induces hepatic progenitor cells undergoing partial epithelial-mesenchymal transition states. Hepatic progenitor cells (HPCs) are a subpopulation of cells which was usually expanded in chronic liver injury and are contributed to liver regeneration through differentiating into hepatocytes and cholangiocytes. Epithelial-mesenchymal transition is a dynamic process which is important for the progression of liver fibrosis and cancer initiation. This study demonstrated that LE/6 and WB-F344 cells, both of which were HPC derived cell lines, were undergoing partial epithelial-mesenchymal transition states, which was indicated by the co-expression of epithelial markers (E-cadherin and zona occludin 1), and mesenchymal markers (vimentin, fibronectin, collagen 1and α-SMA). Furthermore, autocrine TGF-β and activin A signaling contributed to the maintenance of partial EMT in HPCs. In addition, Smad signaling, a classic downstream signaling cascade of both TGF-β and activin A, also participated in the partial EMT. These findings revealed the existence of partial EMT states in HPCs and confirmed some partial EMT related autocrine signaling cascades, and may help to further the understanding and explore the functional role of HPCs in the process of hepatic fibrosis and liver cancer initiation."	"Fatal thoracic aortic aneurysm and dissection in a large family with a novel MYLK gene mutation: delineation of the clinical phenotype. Thoracic and abdominal aortic aneurysms and dissection often develop in hypertensive elderly patients. At higher risk are smokers and those who have a family history of aortic aneurysms. In most affected families, the aortic aneurysms and dissection is inherited in an autosomal dominant manner with decreased penetrance and variable expressivity. Mutations at two chromosomal loci, TAA1 at 11q23 and the TAA2 at 5q13-14, and eight genes, MYLK, MYH11, TGFBR2, TGFBR1, ACTA2, SMAD3, TGFB2, and MAT2A, have been identified as being responsible for the disease in 23% of affected families. Herein, we inform on the clinical, genetic and pathological characteristics of nine living and deceased members of a large consanguineous Arab family with thoracic aortic aneurysm and dissection who carry a missense mutation c.4471G &gt; T (Ala1491Ser), in exon 27 of MYLK gene. We show a reduced kinase activity of the Ala1491Ser protein compared to wildtype protein. This mutation is expressed as aortic aneurysm and dissection in one of two distinct phenotypes. A severe fatal and early onset symptom in homozygous or mild late onset in heterozygous genotypes. We found that MYLK gene Ala1491Ser mutation affect the kinase activity and clinically, it presents with vascular aneurysms and dissection. We describe a distinct genotype phenotype correlation where; heterozygous patients have mild late onset and incomplete penetrance disease compared with the early onset severe and generally fatal outcome in homozygous patients."	"Targeted genetic analysis in a large cohort of familial and sporadic cases of aneurysm or dissection of the thoracic aorta. Thoracic aortic aneurysm/aortic dissection (TAAD) is a disorder with highly variable age of onset and phenotype. We sought to determine the prevalence of pathogenic variants in TAAD-associated genes in a mixed cohort of sporadic and familial TAAD patients and identify relevant genotype-phenotype relationships. We used a targeted polymerase chain reaction and next-generation sequencing-based panel for genetic analysis of 15 TAAD-associated genes in 1,025 unrelated TAAD cases. We identified 49 pathogenic or likely pathogenic (P/LP) variants in 47 cases (4.9% of those successfully sequenced). Almost half of the variants were in nonsyndromic cases with no known family history of aortic disease. Twenty-five variants were within FBN1 and two patients were found to harbor two P/LP variants. Presence of a related syndrome, younger age at presentation, family history of aortic disease, and involvement of the ascending aorta increased the risk of carrying a P/LP variant. Given the poor prognosis of TAAD that is undiagnosed prior to acute rupture or dissection, genetic analysis of both familial and sporadic cases of TAAD will lead to new diagnoses, more informed management, and possibly reduced mortality through earlier, preclinical diagnosis in genetically determined cases and their family members."	"miR-27a inhibits cervical adenocarcinoma progression by downregulating the TGF-βRI signaling pathway. High-risk human papillomavirus infection is essential for the malignant transformation of cervical cancer and can inhibit host miR-27a expression. We investigated the role and mechanism of miR-27a in cervical cancer progression. miR-27a is decreased in cervical cancer cell lines and miR-27a-agomir inhibited the cell proliferation, migration, and invasion properties of HeLa (adenocarcinoma) cells, but not in SiHa cells (squamous cell carcinoma). Luciferase assays revealed that miR-27a directly targets the 3'-UTR of transforming growth factor beta receptor I (TGF-βRI) and downregulates TGF-β signaling. The co-transfection of a TGF-βRI expression vector largely restored the inhibition of TGF-β signaling, cell proliferation, migration, and invasion mediated by miR-27a-agomir. Also, miR-27a-agomir slows down the growth of subcutaneous HeLa xenografts and downregulates the TGF-βRI expression and TGF-β signaling in tumor in vivo. Tissue microarray analysis revealed a low miR-27a level in adenocarcinoma cells, but not in squamous cell carcinoma cells, which was negatively associated with TGF-βRI expression. High TGF-βRI correlated with deep stromal invasion and lymph node metastasis. These results suggest that miR-27a acts as a tumor suppressor in cervical cancer, especially in adenocarcinoma, by inhibiting TGF-βRI signaling pathway. Thus, enhancing miR-27a expression and function may be a novel treatment strategy for cervical adenocarcinoma."	"Integrating genome-wide DNA methylation and mRNA expression profiles identified different molecular features between Kashin-Beck disease and primary osteoarthritis. Kashin-Beck disease (KBD) is an endemic osteochondropathy of unknown etiology. Osteoarthritis (OA) is a form of degenerative joint disease sharing similar clinical manifestations and pathological changes to articular cartilage with KBD. A genome-wide DNA methylation profile of articular cartilage from five KBD patients and five OA patients was first performed using the Illumina Infinium HumanMethylation450 BeadChip. Together with a previous gene expression profiling dataset comparing KBD cartilage with OA cartilage, an integrative pathway enrichment analysis of the genome-wide DNA methylation and the mRNA expression profiles conducted in articular cartilage was performed by InCroMAP software. We identified 241 common genes altered in both the DNA methylation profile and the mRNA expression profile of articular cartilage of KBD versus OA, including CHST13 (NM_152889, fold-change = 0.5979, P methy = 0.0430), TGFBR1 (NM_004612, fold-change = 2.077, P methy = 0.0430), TGFBR2 (NM_001024847, fold-change = 1.543, P methy = 0.037), TGFBR3 (NM_001276, fold-change = 0.4515, P methy = 6.04 × 10<sup>-4</sup>), and ADAM12 (NM_021641, fold-change = 1.9768, P methy = 0.0178). Integrative pathway enrichment analysis identified 19 significant KEGG pathways, including mTOR signaling (P = 0.0301), glycosaminoglycan biosynthesis-chondroitin sulfate/dermatan sulfate (P = 0.0391), glycosaminoglycan biosynthesis-keratan sulfate (P = 0.0278), and PI3K-Akt signaling (P = 0.0243). This study identified different molecular features between Kashin-Beck disease and primary osteoarthritis and provided novel clues for clarifying the pathogenetic differences between KBD and OA."	"CC-401 Promotes β-Cell Replication via Pleiotropic Consequences of DYRK1A/B Inhibition. Pharmacologic expansion of endogenous β cells is a promising therapeutic strategy for diabetes. To elucidate the molecular pathways that control β-cell growth we screened ∼2400 bioactive compounds for rat β-cell replication-modulating activity. Numerous hit compounds impaired or promoted rat β-cell replication, including CC-401, an advanced clinical candidate previously characterized as a c-Jun N-terminal kinase inhibitor. Surprisingly, CC-401 induced rodent (in vitro and in vivo) and human (in vitro) β-cell replication via dual-specificity tyrosine phosphorylation-regulated kinase (DYRK) 1A and 1B inhibition. In contrast to rat β cells, which were broadly growth responsive to compound treatment, human β-cell replication was only consistently induced by DYRK1A/B inhibitors. This effect was enhanced by simultaneous glycogen synthase kinase-3β (GSK-3β) or activin A receptor type II-like kinase/transforming growth factor-β (ALK5/TGF-β) inhibition. Prior work emphasized DYRK1A/B inhibition-dependent activation of nuclear factor of activated T cells (NFAT) as the primary mechanism of human β-cell-replication induction. However, inhibition of NFAT activity had limited effect on CC-401-induced β-cell replication. Consequently, we investigated additional effects of CC-401-dependent DYRK1A/B inhibition. Indeed, CC-401 inhibited DYRK1A-dependent phosphorylation/stabilization of the β-cell-replication inhibitor p27Kip1. Additionally, CC-401 increased expression of numerous replication-promoting genes normally suppressed by the dimerization partner, RB-like, E2F and multivulval class B (DREAM) complex, which depends upon DYRK1A/B activity for integrity, including MYBL2 and FOXM1. In summary, we present a compendium of compounds as a valuable resource for manipulating the signaling pathways that control β-cell replication and leverage a DYRK1A/B inhibitor (CC-401) to expand our understanding of the molecular pathways that control β-cell growth."	"The chemokine receptor CCR1 is identified in mast cell-derived exosomes. Mast cells are important effector cells of the immune system, and mast cell-derived exosomes carrying RNAs play a role in immune regulation. However, the molecular function of mast cell-derived exosomes is currently unknown, and here, we identify differentially expressed genes (DEGs) in mast cells and exosomes. We isolated mast cells derived exosomes through differential centrifugation and screened the DEGs from mast cell-derived exosomes, using the GSE25330 array dataset downloaded from the Gene Expression Omnibus database. Biochemical pathways were analyzed by Gene ontology (GO) annotation and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway on the online tool DAVID. DEGs-associated protein-protein interaction networks (PPIs) were constructed using the STRING database and Cytoscape software. The genes identified from these bioinformatics analyses were verified by qRT-PCR and Western blot in mast cells and exosomes. We identified 2121 DEGs (843 up and 1278 down-regulated genes) in HMC-1 cell-derived exosomes and HMC-1 cells. The up-regulated DEGs were classified into two significant modules. The chemokine receptor CCR1 was screened as a hub gene and enriched in cytokine-mediated signaling pathway in module one. Seven genes, including CCR1, CD9, KIT, TGFBR1, TLR9, TPSAB1 and TPSB2 were screened and validated through qRT-PCR analysis. We have achieved a comprehensive view of the pivotal genes and pathways in mast cells and exosomes and identified CCR1 as a hub gene in mast cell-derived exosomes. Our results provide novel clues with respect to the biological processes through which mast cell-derived exosomes modulate immune responses."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"G protein coupled receptors can transduce signals through carboxy terminal and linker region phosphorylation of Smad transcription factors. Smads (sma/mothers against decapentaplegic) are transcription factors, which can be phosphorylated in the carboxy terminal (pSmad2/3C) or in the structurally central linker region (pSmad2/3 L). Only receptor kinases such as Transforming Growth Factor (TGF)-β receptor (TGFBR1) can mediate carboxy terminal phosphorylation but multiple receptors, including TGFBR1 itself, can activate cytosolic serine/threonine kinases and mediate serine/threonine (S/T) linker region phosphorylation of Smad2/3. One important class of agents that can mediate Smad phosphorylation are the G protein coupled receptors (GPCRs) and their ligands and these agents can meditate both carboxy terminal and linker region phosphorylation. Linker region phosphorylation arises due to activation of kinases including those downstream of the transactivation of the EGFR and carboxy terminal Smad phosphorylation can occur as a result of the recently described activity of GPCRs, notably protease activated receptors (PAR)-1, to transactivate TGFBR1 leading to direct carboxy terminal Smad phosphorylation. This review will summarize the effects of GPCR-mediated receptor transactivation pathways on the phosphorylation of Smad2 linker region, as a better understanding of these pathways may provide new approaches for the identification of novel therapeutic agents."	"Blockade of TIM3 relieves immunosuppression through reducing regulatory T cells in head and neck cancer. T-cell immunoglobulin mucin 3 (TIM3) is a negative immune checkpoint and plays a crucial part in tumor-induced immune suppression. However, the mechanism of TIM3 in regulating immunosuppression in head and neck squamous cell carcinoma (HNSCC) was still not quite clear. We carried out the immunohistochemistry staining of HNSCC tissue microarrays. Through quantification of the histoscore, we performed the correlation analysis among the TIM3, Galectin-9, Foxp3, CD68 and CD163. The effects of TIM3 on regulatory T cells (Tregs) and macrophages were detected by utilizing the Tgfbr1/Pten 2cKO HNSCC mouse model. Flow cytometry were used to analysis the percent of Tregs, macrophages and IFN-γ. We demonstrated the close association among TIM3/Galectin-9 pathway, regulatory T cell marker (Foxp3) and macrophage marker (CD68, CD163) in human HNSCC. In the transgenic HNSCC mouse model, blockade of TIM3 by the anti-TIM3 monoclonal antibody induced a reduction of CD4<sup>+</sup>CD25<sup>+</sup>Foxp3<sup>+</sup> Tregs. Meanwhile, the population of TIM3<sup>+</sup> Tregs was also decreased. However, the population of CD206<sup>+</sup> macrophages was not significantly declined. The increased IFN-γ production on CD8<sup>+</sup> T cells in anti-TIM3 treatment mice showed that the antitumor immune response was enhanced through suppression of these negative immune factors. The present study demonstrated that TIM3 was associated with the immunosuppression in HNSCC. And targeting TIM3 can enhance anti-tumor immune response by decreasing Tregs in HNSCC."	"Neuronal Transforming Growth Factor beta Signaling via SMAD3 Contributes to Pain in Animal Models of Chronic Pancreatitis. Chronic pancreatitis (CP) is characterized by pancreatic inflammation and fibrosis, associated with increased pancreatic expression of transforming growth factor beta (TGFB). It is not clear how these might contribute to pain. We investigated whether TGFB signaling via SMAD induces sensitization of pancreatic sensory neurons to increase nociception. CP was induced in Sprague-Dawley rats by infusion of trinitrobenzene sulfonic acid; some rats were given intrathecal infusions of TGFB1. CP was induced in control mice by administration of cerulein; we also studied β1glo/Ptf1acre-ER mice, which on induction overexpress TGFB1 in pancreatic acinar cells, and TGFBr1<sup>f/f-CGRPcreER</sup> mice, which have inducible disruption of TGFBr1 in calcitonin gene-related peptide-positive neurons. Dominant negative forms of human TGFBR2 and SMAD3 were overexpressed from viral vectors in rat pancreas. Some rats were given the SMAD3 inhibitors SIS3 or halofuginone. After induction of CP, mice were analyzed for pain in behavior tests or electrophysiologic studies of sensory neurons. Pancreatic nociceptor excitability was examined by patch-clamp techniques and nociception was measured by Von Frey Filament tests for referred somatic hyperalgesia and behavioral responses to pancreatic electrical stimulation. Pancreata were collected from mice and rats and analyzed histologically and by enzyme-linked immunosorbent assay and immunohistochemistry. Overexpression of TGFB in pancreatic acinar cells of mice and infusion of TGFB1 into rats resulted in sensory neuron hyperexcitability, SMAD3 activation, and increased nociception. This was accompanied by a reduction in the transient A-type current in pancreas-specific sensory neurons in rats, a characteristic of nociceptive sensitization in animal models of CP. Conversely, pancreata from TGFBr1<sup>f/f-CGRPcreER</sup> mice, rats with pancreatic expression of dominant negative forms of human TGFBR2 or SMAD3, and rats given small molecule inhibitors of SMAD3 had attenuated neuronal sensitization and pain behavior following induction of CP. In contrast to findings from peripheral administration of TGFB1, intrathecal infusion of TGFB1 reduced hyperalgesia in rats with CP. In pancreata of mice and rats, TGFB promotes peripheral nociceptive sensitization via a direct effect on primary sensory neurons mediated by intra-neuronal SMAD3. This is distinct from the central nervous system, where TGFB reduces nociception. These results provide an explanation for the link between fibrosis and pain in patients with CP. This signaling pathway might be targeted therapeutically to reduce pain in patients with CP."	"Elucidation of possible molecular mechanisms underlying the estrogen-induced disruption of cartilage development in zebrafish larvae. Estrogen can affect the cartilage development of zebrafish; however, the mechanism underlying its effects is not completely understood. Four-day-old zebrafish larvae were treated with 0.8 μM estrogen, the 5 days post fertilization (dpf) zebrafish larvae did not demonstrate obvious abnormalities during development; however, the 6 dpf and 7 dpf larvae exhibited abnormal craniofacial bone development along with craniofacial bone degradation. RNA deep sequencing was performed to elucidate the mechanism involved. Gene Ontology functional and KEGG pathway enrichment analysis of differentially expressed genes (DEGs) showed that the extracellular matrix (ECM), extracellular region, ECM-interaction receptor, focal adhesion, cell cycle, apoptosis, and bone-related signaling pathways were disrupted. In these signaling pathways, the expressions of key genes, such as collagen encoded (col19a1a, col7a1, col7al, col18a1, and col9a3), MAPK signaling pathway (fgf19, fgf6a), TGF-beta signaling pathway (tgfbr1), and cell cycle (cdnk1a) genes were altered. The qRT-PCR results showed that after treatment with 0.8 μM 17-β estradiol (E2), col19a1a, col7a1, col7al, col18a1, col9a3, fgf6a, cdkn1a were downregulated, and fgf19, tgfr1 were upregulated, which were consistent with deep sequencing analysis. Therefore, the effect of estrogen on cartilage development might occur via multiple mechanisms. The study results demonstrate the mechanism underlying the effect of estrogen on cartilage development."	"Activation of RhoA, Smad2, c-Src, PKC-βII/δ and JNK in atopic dermatitis. Atopic dermatitis is a multifactorial skin disease characterised by chronic and relapsing inflammation whose pathogenesis is incompletely understood. We found that the expression of TGFβR1 and the activation of SMAD2, RhoA, JNK, PKC-βII/δ and c-Src were upregulated in the infiltrated inflammatory cells, fibroblasts and vasculatures in the dermis and epidermis. In addition, increases in the expression of TGFβR1 and phosphorylation levels of JNK and c-Src were positively correlated with the inflammatory progression of atopic dermatitis severity."	"Identification and validation a TGF-β-associated long non-coding RNA of head and neck squamous cell carcinoma by bioinformatics method. The role of transforming growth factorβ (TGF-β)-induced tumor progression in advanced malignancy is well established, but the involvement of long non-coding RNAs (lncRNAs) in TGF-β signaling remains unclear. This study aimed to identify TGF-β-associated lncRNAs in head and neck squamous cell carcinoma (HNSCC). Expression profiling of lncRNAs was obtained using Gene Expression Omnibus and The Cancer Genome Atlas. Real-time quantitative PCR was used to analyze the expression of EPB41L4A-AS2 in HNSCC cell line. We used bioinformatics resources (DAvID) to conduct Gene Ontology biological processes and KEGG pathways at the significant level. Wound healing assay, cell migration and invasion assays, were used to examine the effects of EPB41L4A-AS2 on tumor cell metastasis in vivo. Protein levels of EPB41L4A-AS2 targets were determined by western blot. A novel TGF-β-associated lncRNA, EPB41L4A-AS2, was found downregulated by TGF-β and associated with invasion and metastasis. The relationship of EPB41L4A-AS2 with the clinicopathological features and prognosis of HNSCC patients was evaluated. Bioinformatic analyses revealed that EPB41L4A-AS2 may be involved in processes associated with the tumor-associated signaling pathway, especially the TGF-β signaling pathway. Furthermore, a TGF-β-induced epithelial-to-mesenchymal transition (EMT) model was established. Low EPB41L4A-AS2 expression was determined, and overexpression of this gene inhibited cell migration and invasion in the EMT model. Moreover, EPB41L4A-AS2 suppressed TGFBR1 expression. EPB41L4A-AS2 might serve as a negative regulator of TGF-β signaling and as an effective prognostic biomarker and important target in anti-metastasis therapies of HNSCC patients."	"USP2a Supports Metastasis by Tuning TGF-β Signaling. TGF-β has been demonstrated to promote tumor metastasis, and the regulatory mechanisms are poorly understood. Here, we report the role of USP2a in promoting metastasis by facilitating TGF-β-triggered signaling. USP2a interacts with TGFBR1 and TGFBR2 upon TGF-β stimulation and removes K33-linked polyubiquitin chains from Lys502 of TGFBR1, promoting the recruitment of SMAD2/3. Simultaneously, TGFBR2 phosphorylates Ser207/Ser225 of USP2a, leading to the disassociation of SMAD2/3 from TGFBR1. The phosphorylation of USP2a and SMAD2 is positively correlated in human tumor biopsies, and USP2a is hyper-phosphorylated in lung adenocarcinomas with lymph node invasion. Depletion or pharmacologic inhibition of USP2a dampens TGF-β-triggered signaling and metastasis. Our findings have characterized an essential role of USP2a as a potential target for treatment of metastatic cancers."	"CXCL12/CXCR4-Mediated Procollagen Secretion Is Coupled To Cullin-RING Ubiquitin Ligase Activation. Tissue fibrosis is mediated by the actions of multiple pro-fibrotic proteins that can induce myofibroblast phenoconversion through diverse signaling pathways coupled predominantly to Smads or MEK/Erk proteins. The TGFβ/TGFβR and CXCL12/CXCR4 axes induce myofibroblast phenoconversion independently through Smads and MEK/Erk proteins, respectively. To investigate these mechanisms at the genetic level, we have now elucidated the TGFβ/TGFβR and CXCL12/CXCR4 transcriptomes in human fibroblasts. These transcriptomes are largely convergent, and up-regulate transcripts encoding proteins known to promote myofibroblast phenoconversion. These studies also revealed a molecular signature unique to CXCL12/CXCR4 axis activation for COPII vesicle formation, ubiquitination, and Golgi/ER localization/targeting. In particular, both CUL3 and KLHL12, key members of the Cullin-RING (CRL) ubiquitin ligase family of proteins involved in procollagen transport from the ER to the Golgi, were highly up-regulated in CXCL12-, but repressed in TGFβ-, treated cells. Up-regulation of CUL3 and KLHL12 was correlated with higher procollagen secretion by CXCL12-treated cells, and this affect was ablated upon treatment with inhibitors specific for CXCR4 or CUL3 and repressed by TGFβ/TGFβR axis activation. The results of these studies show that activation of the CXCL12/CXCR4 axis uniquely facilitates procollagen I secretion through a COPII-vesicle mediated mechanism to promote production of the ECM characteristic of fibrosis."	"TGFBR1*6A is a potential modifier of migration and invasion in colorectal cancer cells. Type 1 transforming growth factor β receptor (TGFBR1)*6A, a common hypomorphic variant of TGFBR1, may act as a susceptibility allele in colorectal cancer. However, the contribution of TGFBR1*6A to colorectal cancer development is largely unknown. To test the hypothesis that TGFBR1*6A promotes colorectal cancer invasion and metastasis via Smad-independent transforming growth factor-β (TGF-β) signaling, the effect of TGFBR1*6A on the invasion of colorectal cancer cells was assessed. pCMV5-TGFBR1*6A-HA plasmids were transfected into SW48 and DLD-1 cells by Lipofectamine-mediated DNA transfection. The effect of TGF-β1 on the proliferation of SW48 and DLD-1 cells transfected with TGFBR1*6A was determined by MTT assay. The effects of the TGF-β1 on the invasion of the transfected SW48 and DLD-1 cells were determined using Matrigel-coated plates. Transforming migrating chambers were used to determine the effects of TGF-β1 on the migration of the transfected SW48 and DLD-1 cells. Western blot analysis was used to determine the expression of phosphorylated (p-) extracellular-signal-regulated kinase (ERK), p-P38 and p-SMAD family member 2 in SW48 cells. Using transfected TGFBR1*6A SW48 and DLD-1 cell lines our group demonstrated that, in comparison with TGFBR1*9A, TGFBR1*6A is capable of switching TGF-β1 growth-inhibitory signals into growth-stimulatory signals which significantly increased the invasion of SW48 and DLD-1 cells. Functional assays indicated that TGFBR1*6A weakened Smad-signaling but increased ERK and p38 signaling, which are crucial mediators of cell migration and invasion. From this, it was possible to conclude that TGFBR1*6A enhanced SW48 cell migration and invasion through the mitogen-activated protein kinase pathway and that it may contribute to colorectal cancer progression in a TGF-β1/Smad signaling-independent manner. This suggests that TGFBR1*6A may possess oncogenic properties and that it may affect the migration and invasion of colorectal cancer cells."	"The role of zinc plus octenidine in the regulation of gene expression: an in vitro study. Zinc was known in ancient times, and is diffused in the environment. The potential benefits offered by zinc supplementary therapy have been demonstrated in numerous clinical trials using oral or topical zinc products. The benefit of zinc can be in principle increased through association with other actives. The aim of this study is to evaluate the effect on primary human gingival fibroblast cell of a new formulation containing zinc and octenidine cations. Human gingival fibroblast cells were obtained from three healthy patients (14-year-old man, 15-year-old woman and 20-year-old man) during extraction of teeth. The gene expression of 14 genes (ELANE, FN1, FBN, ITGA1, HAS1, ELN, DSP, ITGB1, HYAL1,TGFB1, TGFB2, TGFB3, TGFBR1 and TGFBR2) was investigated in HGF cell culture treated with 80μm of Octenidine, 1000μm of Zinc, 80μm Octenidine + Zinc solution and the medium alone at 30 min. Prestoblue™ data showed that as the active concentration increases (Octenidine, Zinc and Octenidine + Zinc) the percentage of cell vitality compared to that of untreated cells decrease. In this study, no statistically significant gene expression was observed between cells, treated with difference substances, and control cells. Our results points out that zinc plus octenidine shows a positive potential in periodontal disease treatment."	"Pericyte ALK5/TIMP3 Axis Contributes to Endothelial Morphogenesis in the Developing Brain. The murine embryonic blood-brain barrier (BBB) consists of endothelial cells (ECs), pericytes (PCs), and basement membrane. Although PCs are critical for inducing vascular stability, signaling pathways in PCs that regulate EC morphogenesis during BBB development remain unexplored. Herein, we find that murine embryos lacking the transforming growth factor β (TGF-β) receptor activin receptor-like kinase 5 (Alk5) in brain PCs (mutants) develop gross germinal matrix hemorrhage-intraventricular hemorrhage (GMH-IVH). The germinal matrix (GM) is a highly vascularized structure rich in neuronal and glial precursors. We show that GM microvessels of mutants display abnormal dilation, reduced PC coverage, EC hyperproliferation, reduced basement membrane collagen, and enhanced perivascular matrix metalloproteinase activity. Furthermore, ALK5-depleted PCs downregulate tissue inhibitor of matrix metalloproteinase 3 (TIMP3), and TIMP3 administration to mutants improves endothelial morphogenesis and attenuates GMH-IVH. Overall, our findings reveal a key role for PC ALK5 in regulating brain endothelial morphogenesis and a substantial therapeutic potential for TIMP3 during GMH-IVH."	"Flavopiridol Inhibits TGF-β-Stimulated Biglycan Synthesis by Blocking Linker Region Phosphorylation and Nuclear Translocation of Smad2. Transforming growth factor-β (TGF-β) is a pleiotropic growth factor implicated in the development of atherosclerosis for its role in mediating glycosaminoglycan (GAG) chain hyperelongation on the proteoglycan biglycan, a phenomenon that increases the binding of atherogenic lipoproteins in the vessel wall. Phosphorylation of the transcription factor Smad has emerged as a critical step in the signaling pathways that control the synthesis of biglycan, both the core protein and the GAG chains. We have used flavopiridol, a well-known cyclin-dependent kinase inhibitor, to study the role of linker region phosphorylation in the TGF-β-stimulated synthesis of biglycan. We used radiosulfate incorporation and SDS-PAGE to assess proteoglycan synthesis, real-time polymerase chain reaction to assess gene expression, and chromatin immunoprecipitation to assess the binding of Smads to the promoter region of GAG Synthesizing genes. Flavopiridol blocked TGF-β-stimulated synthesis of mRNA for the GAG synthesizing enzymes, and chondroitin 4-sulfotransferase (C4ST-1), chondroitin sulfate synthase-1 (ChSy-1) and TGF-β-mediated proteoglycans synthesis as well as GAG hyperelongation. Flavopiridol blocked TGF-β-stimulated Smad2 phosphorylation at both the serine triplet and the isolated threonine residue in the linker region. The binding of Smad to the promoter region of the C4ST-1 and ChSy-1 genes was stimulated by TGF-β, and this response was blocked by flavopiridol, demonstrating that linker region phosphorylated Smad can pass to the nucleus and positively regulate transcription. These results demonstrate the validity of the kinases, which phosphorylate the Smad linker region as potential therapeutic target(s) for the development of an agent to prevent atherosclerosis."	"Growth differentiation factor 11 improves neurobehavioral recovery and stimulates angiogenesis in rats subjected to cerebral ischemia/reperfusion. The recent suggestion that growth differentiation factor 11 (GDF11) acts as a rejuvenation factor has remained controversial. However, in addition to its role in aging, the relationship between GDF11 and cerebral ischemia is still an important area that needs more investigation. Here we examined effects of GDF11 on angiogenesis and recovery of neurological function in a rat model of stroke. Exogenous recombinant GDF11 (rGDF11) at different doses were directly injected into the tail vein in rats subjected to cerebral ischemia/reperfusion (I/R). Neurobehavioral tests were performed, the proliferation of endothelial cells (ECs) and GDF11 downstream signal activin-like kinase 5 (ALK5) were assessed, and functional microvessels were measured. Results showed that rGDF11 at a dosage of 0.1 mg/kg/day could effectively activate cerebral angiogenesis in vivo. In addition, rGDF11 improved the modified neurological severity scores and the adhesive removal somatosensory test, promoted proliferation of ECs, induced ALK5 and increased vascular surface area and the number of vascular branch points in the peri-infarct cerebral cortex after cerebral I/R. These effects were suppressed by blocking ALK5. Our novel findings shed new light on the role of GDF11. Our results strongly suggest that GDF11 improves neurofunctional recovery from cerebral I/R injury and that this effect is mediated partly through its proangiogenic effect in the peri-infarct cerebral cortex, which is associated with ALK5. Thus, GDF11/ALK5 may represent new therapeutic targets for aiding recovery from stroke."	"TGF-β signalling defect is linked to low CD39 expression on regulatory T cells and methotrexate resistance in rheumatoid arthritis. Rheumatoid arthritis (RA) is an autoimmune arthropathy characterized by chronic articular inflammation. Methotrexate (MTX) remains the first-line therapy for RA and its anti-inflammatory effect is associated with the maintenance of high levels of extracellular adenosine (ADO). Nonetheless, up to 40% of RA patients are resistant to MTX treatment and this is linked to a reduction of CD39 expression, an ectoenzyme involved in the generation of extracellular ADO by ATP metabolism, on circulating regulatory T cells (Tregs). However, the mechanism mediating the reduction of CD39 expression on Tregs is unknown. Here we demonstrated that the impairment in TGF-β signalling lead to the reduction of CD39 expression on Tregs that accounts for MTX resistance. TGF-β increases CD39 expression on Tregs via the activation of TGFBRII/TGFBRI, SMAD2 and the transcription factor CREB, which is activated in a p38-dependent manner and induces CD39 expression by promoting ENTPD1 gene transcription. Importantly, unresponsive patients to MTX (UR-MTX) show reduced expression of TGFBR2 and CREB1 and decreased levels of p-SMAD2 and p-CREB in Tregs compared to MTX-responsive patients (R-MTX). Furthermore, RA patients carrying at least one mutant allele for rs1431131 (AT or AA) of the TGFBR2 gene are significantly (p = 0.0006) associated with UR-MTX. Therefore, we have uncovered a molecular mechanism for the reduced CD39 expression on Tregs, and revealed potential targets for therapeutic intervention for MTX resistance."	"Heterobicyclic inhibitors of transforming growth factor beta receptor I (TGFβRI). The TGFβ-TGFβR signaling pathway has been reported to play a protective role in the later stages of tumorigenesis via increasing immunosuppressive Treg cells and facilitating the epithelial to mesenchymal transition (EMT). Therefore, inhibition of TGFβR has the potential to enhance antitumor immunity. Herein we disclose the identification and optimization of novel heterobicyclic inhibitors of TGFβRI that demonstrate potent inhibition of SMAD phosphorylation. Application of structure-based drug design to the novel pyrrolotriazine chemotype resulted in improved binding affinity (Ki apparent = 0.14 nM), long residence time (T1/2 &gt; 120 min) and significantly improved potency in the PSMAD cellular assay (IC50 = 24 nM). Several analogs inhibited phosphorylation of SMAD both in vitro and in vivo. Additionally, inhibition of TGFβ-stimulated phospho-SMAD was observed in primary human T cells."	"Follicular localization of growth differentiation factor 8 and its receptors in normal and polycystic ovary syndrome ovaries. Polycystic ovary syndrome (PCOS) is the most common endocrine disorder in women of reproductive age and its etiology has not been characterized. Growth differentiation factor 8 (GDF8) is a member of the transforming growth factor-β superfamily that plays a critical role in the regulation of ovarian functions. However, the expression pattern of GDF8 in the human ovary is not yet clear. This study examined the cellular distribution of GDF8 and its putative cellular receptors (ACVR2A, ACVR2B, and ALK5) in a series of normal (n = 34) and PCOS ovaries (n = 14). The immunostaining of GDF8, ACVR2A, ACVR2B, and ALK5 was detected in the oocytes regardless of the developmental stage. All these proteins were localized in antral follicles in normal and PCOS ovaries, and the expression of these proteins increased with increasing follicle diameter. A significantly higher expression of GDF8 was detected in the granulosa cells than in the matched theca cells (TCs). These proteins were also localized in the luteal cells of the corpus luteum. Granulosa cells and TCs of large antral follicles in PCOS ovaries display a higher expression of these proteins. The higher expression levels of GDF8 and its functional receptors (ACVR2A, ACVR2B, and ALK5) in antral follicles of PCOS ovaries than those in normal ovaries suggest the possible involvement of dysregulated GDF8 in the pathogenesis of PCOS."	"A 3-gene panel improves the prediction of left ventricular dysfunction after acute myocardial infarction. Identification of patients at risk of poor outcome after acute myocardial infarction (MI) would allow tailoring healthcare to each individual. However, lack of prognostication tools renders this task challenging. Previous investigations suggested that blood transcriptome analysis may inform about prognosis after MI. We aim to independently confirm the value of gene expression profiles in the blood to predict left ventricular (LV) dysfunction after MI. Five genes (LMNB1, MMP9, TGFBR1, LTBP4 and TNXB) selected from previous studies were measured in peripheral blood samples obtained at reperfusion in 449 MI patients. 79 patients had LV dysfunction as attested by an ejection fraction (EF) ≤40% at 4-month follow-up and 370 patients had a preserved LV function (EF&gt;40%). LMNB1, MMP9 and TGFBR1 were up-regulated in patients with LV dysfunction and LTBP4 was down-regulated, as compared with patients with preserved LV function. The 5 genes were significant univariate predictors of LV dysfunction. In multivariable analyses adjusted with traditional risk factors and corrected for model overfitting, a panel of 3 genes - TNXB, TGFBR1 and LTBP4 - improved the prediction of a clinical model (p=0.00008) and provided a net reclassification index of 0.45 [0.23-0.69], p=0.0002 and an integrated discrimination improvement of 0.05 [0.02-0.09], p=0.001. Bootstrap internal validation confirmed the incremental predictive value of the 3-gene panel. A 3-gene panel can aid to predict LV dysfunction after MI. Further independent validation is required before considering these findings for molecular diagnostic assay development."	"RGMa mediates reactive astrogliosis and glial scar formation through TGFβ1/Smad2/3 signaling after stroke. In response to stroke, astrocytes become reactive astrogliosis and are a major component of a glial scar. This results in the formation of both a physical and chemical (production of chondroitin sulfate proteoglycans) barrier, which prevent neurite regeneration that, in turn, interferes with functional recovery. However, the mechanisms of reactive astrogliosis and glial scar formation are poorly understood. In this work, we hypothesized that repulsive guidance molecule a (RGMa) regulate reactive astrogliosis and glial scar formation. We first found that RGMa was strongly expressed by reactive astrocytes in the glial scar in a rat model of middle cerebral artery occlusion/reperfusion. Genetic or pharmacologic inhibition of RGMa in vivo resulted in a strong reduction of reactive astrogliosis and glial scarring as well as in a pronounced improvement in functional recovery. Furthermore, we showed that transforming growth factor β1 (TGFβ1) stimulated RGMa expression through TGFβ1 receptor activin-like kinase 5 (ALK5) in primary cultured astrocytes. Knockdown of RGMa abrogated key steps of reactive astrogliosis and glial scar formation induced by TGFβ1, including cellular hypertrophy, glial fibrillary acidic protein upregulation, cell migration, and CSPGs secretion. Finally, we demonstrated that RGMa co-immunoprecipitated with ALK5 and Smad2/3. TGFβ1-induced ALK5-Smad2/3 interaction and subsequent phosphorylation of Smad2/3 were impaired by RGMa knockdown. Taken together, we identified that after stroke, RGMa promotes reactive astrogliosis and glial scar formation by forming a complex with ALK5 and Smad2/3 to promote ALK5-Smad2/3 interaction to facilitate TGFβ1/Smad2/3 signaling, thereby inhibiting neurological functional recovery. RGMa may be a new therapeutic target for stroke."	"A mutation update on the LDS-associated genes TGFB2/3 and SMAD2/3. The Loeys-Dietz syndrome (LDS) is a connective tissue disorder affecting the cardiovascular, skeletal, and ocular system. Most typically, LDS patients present with aortic aneurysms and arterial tortuosity, hypertelorism, and bifid/broad uvula or cleft palate. Initially, mutations in transforming growth factor-β (TGF-β) receptors (TGFBR1 and TGFBR2) were described to cause LDS, hereby leading to impaired TGF-β signaling. More recently, TGF-β ligands, TGFB2 and TGFB3, as well as intracellular downstream effectors of the TGF-β pathway, SMAD2 and SMAD3, were shown to be involved in LDS. This emphasizes the role of disturbed TGF-β signaling in LDS pathogenesis. Since most literature so far has focused on TGFBR1/2, we provide a comprehensive review on the known and some novel TGFB2/3 and SMAD2/3 mutations. For TGFB2 and SMAD3, the clinical manifestations, both of the patients previously described in the literature and our newly reported patients, are summarized in detail. This clearly indicates that LDS concerns a disorder with a broad phenotypical spectrum that is still emerging as more patients will be identified. All mutations described here are present in the corresponding Leiden Open Variant Database."	"Renal-protective effect of thalidomide in streptozotocin-induced diabetic rats through anti-inflammatory pathway. Diabetic nephropathy (DN) is a major microvascular complication in diabetes. An increasing body of evidence has shown that DN is related to chronic inflammation, kidney hypertrophy, and fibrosis. While thalidomide has been shown to have anti-inflammatory and antifibrotic effects, the effects of thalidomide on the pathogenesis of DN are unclear. This study was undertaken to explore whether thalidomide has renal-protective effects in diabetic rats. Male Sprague Dawley rats were injected intraperitoneally with 50 mg/kg streptozotocin to induce diabetes. Diabetic rats were treated with thalidomide (200 mg/kg/d) for 8 weeks, and then blood and urine were collected for measurement of renal function-related parameters. Histopathology, immunohistochemistry, enzyme-linked immunosorbent assay, and Western blot analyses were performed to assess renal proinflammatory cytokines, fibrotic protein, and related signaling pathways. Diabetic rats exhibited obvious renal structural and functional abnormalities, as well as renal inflammation and fibrosis. Compared with diabetic control rats, those treated with thalidomide showed significantly improved histological alterations and biomarkers of renal function, as well as reduced expression of renal inflammatory cytokines, including NF-κB and MCP-1. Furthermore, renal fibrotic proteins, such as TGF-β1, TβRII, TβRI, smad3, collagen IV, and fibronectin were also remarkably suppressed. Treatment with thalidomide markedly stimulated the phosphorylation of AMPKα. In this study, thalidomide suppressed the inflammatory and fibrotic processes in DN. These effects were partly mediated by the activation of AMPKα, and inhibition of the NF-κB/MCP-1 and TGF-β1/Smad signaling pathways. These results suggest that thalidomide may have therapeutic potential in diabetic renal injury through the anti-inflammatory pathway."	"Infection with enteric pathogens Salmonella typhimurium and Citrobacter rodentium modulate TGF-beta/Smad signaling pathways in the intestine. Salmonella and Citrobacter are gram negative, members of Enterobacteriaceae family that are important causative agents of diarrhea and intestinal inflammation. TGF-β1 is a pleiotropic multifunctional cytokine that has been implicated in modulating the severity of microbial infections. How these pathogens alter the TGF-β1 signaling pathways in the intestine is largely unknown. Streptomycin-pretreated C57BL/6J mouse model colonized with S. typhimurium for 8 hours (acute) and 4 days (chronic) infection and FVB/N mice infected with C. rodentium for 6 days were utilized. Results demonstrated an increase in TGF-β1 receptor I expression (p&lt;0.05) in S. typhimurium infected mouse ileum at both acute and chronic post-infection vs control. This was associated with activation of Smad pathways as evidenced by increased phosphorylated (p)-Smad2 and p-Smad3 levels in the nucleus. The inhibitory Smad7 mRNA levels showed a significant up regulation during acute phase of Salmonella infection but no change at 4d post-infection. In contrast to Salmonella, infection with Citrobacter caused drastic downregulation of TGF receptor I and II concomitant with a decrease in levels of Smad 2, 3, 4 and 7 expression in the mouse colon. We speculate that increased TGF-β1 signaling in response to Salmonella may be a host compensatory response to promote mucosal healing; while C. rodentium decreases TGF-β1 signaling pathways to promote inflammation and contribute to disease pathogenesis. These findings increase our understanding of how enteric pathogens subvert specific aspects of the host-cellular pathways to cause disease."	"TGF-β uses a novel mode of receptor activation to phosphorylate SMAD1/5 and induce epithelial-to-mesenchymal transition. The best characterized signaling pathway downstream of transforming growth factor β (TGF-β) is through SMAD2 and SMAD3. However, TGF-β also induces phosphorylation of SMAD1 and SMAD5, but the mechanism of this phosphorylation and its functional relevance is not known. Here, we show that TGF-β-induced SMAD1/5 phosphorylation requires members of two classes of type I receptor, TGFBR1 and ACVR1, and establish a new paradigm for receptor activation where TGFBR1 phosphorylates and activates ACVR1, which phosphorylates SMAD1/5. We demonstrate the biological significance of this pathway by showing that approximately a quarter of the TGF-β-induced transcriptome depends on SMAD1/5 signaling, with major early transcriptional targets being the ID genes. Finally, we show that TGF-β-induced epithelial-to-mesenchymal transition requires signaling via both the SMAD3 and SMAD1/5 pathways, with SMAD1/5 signaling being essential to induce ID1. Therefore, combinatorial signaling via both SMAD pathways is essential for the full TGF-β-induced transcriptional program and physiological responses."	"miR-769-5p suppressed cell proliferation, migration and invasion by targeting TGFBR1 in non-small cell lung carcinoma. MicroRNAs (miRNAs) are key regulators of multiple cancers, including non-small cell lung carcinoma (NSCLC). The aim of this study was to determine the expression pattern of miR-769-5p in NSCLC and to investigate its biological role during tumorigenesis. We showed that miR-769-5p was significantly downregulated and predicted poor prognosis in NSCLC compared with corresponding normal tissues. We then investigated its function and found that miR-769-5p significantly inhibited cell proliferation, migration and invasion in vitro and reduced tumor growth and metastasis in vivo. Furthermore, we explored the molecular mechanisms by which miR-769-5p contributes to NSCLC suppression and identified TGFBR1 as a direct target gene of miR-769-5p. Finally, we showed that TGFBR1 had opposite effects to those of miR-769-5p on lung cancer cells, suggesting that miR-769-5p might inhibit lung tumorigenesis by silencing TGFBR1. Taken together, our results demonstrated that miR-769-5p plays a pivotal role in NSCLC by inhibiting cell proliferation, migration and invasion by targeting TGFBR1."	"Seasoning ingredients in a medium-fat diet regulate lipid metabolism in peripheral tissues via the hypothalamic-pituitary axis in growing rats. We fed rats noodle (N) -diet containing 30 wt.% instant noodle with a 26% fat-to-energy ratio for 30 days (N-group). Compared with rats that were fed the same amount of nutrients (C-group), the N-group showed lower liver triacylglycerol levels and higher fecal cholesterol levels. We then analyzed transcriptome of the hypothalamic-pituitary (HP), the liver and the white adipose tissue (WAT). Thyroid stimulating hormone (Tshb), and its partner, glycoprotein hormone genes were up-regulated in the HP of N-group. Sterol regulatory element binding transcription factors were activated in the liver of N-group, while an up-regulation of the angiogenic signal occurred in the WAT of N-group. N-group showed higher urine noradrenaline (NA) level suggesting that these tissue signals are regulated by NA and Tshb. The N-diet contains 0.326 wt.% glutamate, 0.00236 wt.% 6-shogaol and Maillard reaction products. Our results suggest that these ingredients may affect lipid homeostasis via the HP axis."	"Three-generation family with novel contiguous gene deletion on chromosome 2p22 associated with thoracic aortic aneurysm syndrome. Latent transforming growth factor binding proteins (LTBP) are a family of extracellular matrix glycoproteins that play an important role in the regulation of transforming growth factor beta (TGF-ß) activation. Dysregulation of the TGF-ß pathway has been implicated in the pathogenesis of inherited disorders predisposing to thoracic aortic aneurysms syndromes (TAAS) including Marfan syndrome (MFS; FBN1) and Loeys-Dietz syndrome (LDS; TGFBR1, TGFBR2, TGFB2, TGFB3, SMAD2, SMAD3). While these syndromes have distinct clinical criteria, they share clinical features including aortic root dilation and musculoskeletal findings. LTBP1 is a component of the TGF-ß pathway that binds to fibrillin-1 in the extracellular matrix rendering TGF-ß inactive. We describe a three-generation family case series with a heterozygous ∼5.1 Mb novel contiguous gene deletion of chromosome 2p22.3-p22.2 involving 11 genes, including LTBP1. The deletion has been identified in the proband, father and grandfather, who all have a phenotype consistent with a TAAS. Findings include thoracic aortic dilation, ptosis, malar hypoplasia, high arched palate, retrognathia, pes planus, hindfoot deformity, obstructive sleep apnea, and low truncal tone during childhood with joint laxity that progressed to reduced joint mobility over time. While the three affected individuals did not meet criteria for either MFS or LDS, they shared features of both. Although the deletion includes 11 genes, given the relationship between LTBP1, TGF-ß, and fibrillin-1, LTBP1 stands out as one of the possible candidate genes for the clinical syndrome observed in this family. More studies are necessary to evaluate the potential role of LTBP1 in the pathophysiology of TAAS."	"Endothelial cells enhance adipose mesenchymal stromal cell-mediated matrix contraction via ALK receptors and reduced follistatin: Potential role of endothelial cells in skin fibrosis. Abnormal cutaneous wound healing can lead to formation of fibrotic hypertrophic scars. Although several clinical risk factors have been described, the cross-talk between different cell types resulting in hypertrophic scar formation is still poorly understood. The aim of this in vitro study was to investigate whether endothelial cells (EC) may play a role in skin fibrosis, for example, hypertrophic scar formation after full-thickness skin trauma. Using a collagen/elastin matrix, we developed an in vitro fibrosis model to study the interaction between EC and dermal fibroblasts or adipose tissue-derived mesenchymal stromal cells (ASC). Tissue equivalents containing dermal fibroblasts and EC displayed a normal phenotype. In contrast, tissue equivalents containing ASC and EC displayed a fibrotic phenotype indicated by contraction of the matrix, higher gene expression of ACTA2, COL1A, COL3A, and less secretion of follistatin. The contraction was in part mediated via the TGF-β pathway, as both inhibition of the ALK4/5/7 receptors and the addition of recombinant follistatin resulted in decreased matrix contraction (75 ± 11% and 24 ± 8%, respectively). In conclusion, our study shows that EC may play a critical role in fibrotic events, as seen in hypertrophic scars, by stimulating ASC-mediated matrix contraction via regulation of fibrosis-related proteins."	"Sequential BMP7/TGF-β1 signaling and microbiota instruct mucosal Langerhans cell differentiation. Mucosal Langerhans cells (LCs) originate from pre-dendritic cells and monocytes. However, the mechanisms involved in their in situ development remain unclear. Here, we demonstrate that the differentiation of murine mucosal LCs is a two-step process. In the lamina propria, signaling via BMP7-ALK3 promotes translocation of LC precursors to the epithelium. Within the epithelium, TGF-β1 finalizes LC differentiation, and ALK5 is crucial to this process. Moreover, the local microbiota has a major impact on the development of mucosal LCs, whereas LCs in turn maintain mucosal homeostasis and prevent tissue destruction. These results reveal the differential and sequential role of TGF-β1 and BMP7 in LC differentiation and highlight the intimate interplay of LCs with the microbiota."	"Tumor Progression Is Mediated by Thymosin-β4 through a TGFβ/MRTF Signaling Axis. Although enhanced thymosin β4 (TMSB4X/Tβ4) expression is associated with tumor progression and metastasis, its tumor-promoting functions remain largely unknown. Here, it is demonstrated that TGFβ facilitates Tβ4 expression and leads to the activation of myocardin-related transcription factors (MRTF), which are coactivators of serum response factor (SRF) and regulate the expression of genes critical for the epithelial-mesenchymal transition (EMT) and tumor metastasis. In murine mammary gland cells (NMuMG), Tβ4 upregulation is required for full induction of a MRTF-regulated EMT gene expression program after TGFβ stimulation. Tβ4 levels are transcriptionally regulated via the novel cis-acting element AGACAAAG, which interacts with Smad and T-cell factor/lymphoid enhancer factor (TCF/LEF) to synergistically activate the Tβ4 promoter downstream of TGFβ. Murine skin melanoma cells (B16F0 and B16F1) also show the expression regulation of Tβ4 by Smad and TCF/LEF. Tβ4-knockout B16F1 (Tβ4 KO) clones show significantly diminished expression level of tumor-associated genes, which is regulated by the TGFβ/MRTFs pathway. In multiple human cancers, Tβ4 levels correlate positively with TGFβ1 and the tumor-associated gene expression levels through processes that respectively depend on TGFβ receptor 1 (TGFBR1) and MRTF expression. Kaplan-Meier survival analyses demonstrate that high Tβ4 expression associates with poor prognosis in an SRF expression-dependent manner in several cancers. In mice, Tβ4 KO clones show significantly decreased experimental metastatic potential; furthermore, ectopic expression of constitutively active MRTF-A fully restores the diminished metastatic activity. In conclusion, the TGFβ/Tβ4/MRTF/SRF pathway is critical for metastasis and tumor progression.Implications: These findings define a molecular mechanism underlying a tumor-promoting function of thymosin β4 through activation of MRTF/SRF signaling. Mol Cancer Res; 16(5); 880-93. ©2018 AACR."	"Oxymatrine protects against the effects of cardiopulmonary resuscitation via modulation of the TGF-β1/Smad3 signaling pathway. Previous studies have demonstrated that oxymatrine may inhibit ventricular remodeling and serves an important role in the treatment of cardiovascular disease. The present study investigated whether oxymatrine treatment protects against the effects of cardiopulmonary resuscitation (CPR) via regulation of the transforming growth factor‑β1 (TGF‑β1)/mothers against decapentaplegic (Smad) signaling pathway. A CPR model was established in Sprague‑Dawley (SD) rats by asphyxiation, and rats were subsequently anaesthetized by intraperitoneal injection of chloral hydrate. SD rats were then administered 25 or 50 mg/kg oxymatrine once a day for 4 weeks. Oxymatrine treatment significantly improved troponin I levels, the ejection fraction, hydroxyproline content and the myocardial performance index in model rats. However, treatment with oxymatrine significantly reduced arterial oxygen tension, arterial lactate levels and oxygen extraction. Treatment with oxymatrine following CPR significantly inhibited the protein expression levels of TGF‑β1, TGF‑β1 receptor type 1 and Smad homolog 3 (Smad3) in model rats. The results of this research indicated that oxymatrine treatment may protect against the effects of CPR via regulation of the TGF‑β1/Smad3 signaling pathway and may be a novel drug for CPR in a clinical setting."	"miR-181b-induced SMAD7 downregulation controls granulosa cell apoptosis through TGF-β signaling by interacting with the TGFBR1 promoter. SMAD7 disrupts the TGF-β signaling pathway by influencing TGFBR1 stability and by blocking the binding of TGFBR1 to SMAD2/3. In this study, we showed that SMAD7 attenuated the TGF-β signaling pathway in ovarian granulosa cells (GCs) by regulating TGFBR1 transcriptional activity. To function as a transcription factor, SMAD7 downregulated the mRNA levels of TGFBR1 via direct binding to the SMAD-binding elements (SBEs) within the promoter region of pig TGFBR1. We also showed that SMAD7 enhanced porcine GC apoptosis by interrupting TGFBR1 and the TGF-β signaling pathway. Interestingly, miR-181b, a microRNA that is downregulated during porcine follicular atresia, was identified to be directly targeting SMAD7 at its 3'-UTR. By inhibiting SMAD7, miR-181b could inhibit GC apoptosis by activating the TGF-β signaling pathway. Our findings provide new insights into the mechanisms underlying the regulation of the TGF-β signaling pathway by SMAD7 and miR-181b."	"Circulating exosomes suppress the induction of regulatory T cells via let-7i in multiple sclerosis. Multiple sclerosis (MS) is a T cell-mediated autoimmune disease of the central nervous system. Foxp3<sup>+</sup> regulatory T (Treg) cells are reduced in frequency and dysfunctional in patients with MS, but the underlying mechanisms of this deficiency are unclear. Here, we show that induction of human IFN-γ<sup>-</sup>IL-17A<sup>-</sup>Foxp3<sup>+</sup>CD4<sup>+</sup> T cells is inhibited in the presence of circulating exosomes from patients with MS. The exosomal miRNA profile of patients with MS differs from that of healthy controls, and let-7i, which is markedly increased in patients with MS, suppresses induction of Treg cells by targeting insulin like growth factor 1 receptor (IGF1R) and transforming growth factor beta receptor 1 (TGFBR1). Consistently, the expression of IGF1R and TGFBR1 on circulating naive CD4<sup>+</sup> T cells is reduced in patients with MS. Thus, our study shows that exosomal let-7i regulates MS pathogenesis by blocking the IGF1R/TGFBR1 pathway."	"Knockdown of elF3a inhibits TGF‑β1‑induced extracellular matrix protein expression in keloid fibroblasts. Keloid formation is characterized by hyperproliferation of secretory and responsive keloid fibroblasts (KFs) and overproduction of extracellular matrix (ECM). Eukaryotic translation initiation factor 3 subunit A (eIF3a) one of the core subunits of the translation initiation complex, eIF3, has previously been reported to possess an anti‑fibrogenic effect. However, the role of eIF3a in keloid formation has not yet been investigated. Therefore, the present study examined the effect of eIF3a on transforming growth factor‑β1 (TGF‑β1)‑mediated ECM expression in KFs. The expression levels of eIF3a in human keloid tissues was evaluated using reverse transcription‑quantitative polymerase chain reaction and western blotting. KFs were incubated with siRNA‑eIF3a or siRNA‑mock for 48 h. The cells were then treated with TGF‑β1 (10 ng/ml) for 72 h. Cell proliferation was evaluated using the CCK‑8 assay. The expression levels of α‑SMA, collagen type I, TGF‑β receptor I (RI), TGF‑β RII, phosphorylated (p)‑mothers against decapentaplegic homolog (Smad2), Smad2, p‑Smad3 and Smad3 were detected western blotting. The present study identified significant upregulation of eIF3a mRNA and protein and in human keloid tissues compared with in normal tissues. Knockdown of eIF3a inhibited KF proliferation induced by TGF‑β1. In addition, eIF3a silencing significantly suppressed the TGF‑β1‑induced expression of α‑smooth muscle actin, collagen I, TGF‑β RI and TGF‑β RII in KFs. Furthermore, eIF3a silencing inhibited the phosphorylation levels of Smad2 and Smad3 in TGF‑β1‑induced KFs. To the best of our knowledge, the current study is the first to demonstrate that siRNA‑eIF3a inhibits the expression ECM proteins via the TGF‑β1/Smad signaling pathway in KFs. Therefore, eIF3a may be a potential, novel target for treatment of keloids."	"Isolation and Culture of Primary Mouse Retinal Pigment Epithelial (RPE) Cells with Rho-Kinase and TGFβR-1/ALK5 Inhibitor. BACKGROUND Primary RPE cells could be a reliable model for representing in vivo status of RPE compared with cell lines. We present a protocol for in vitro isolation and culture of primary RPE cells from C57BL mice. MATERIAL AND METHODS We used C57BL mice ages 7 days to 4 months. The RPE layer was separated from the neural retina layer by digestion with 2% Dispase for 45 min and scraped off from the choroid after 25-min incubation in 37°C. Collected RPE sheets were gently pipetted up into smaller sheets. RPE sheets were transferred into well plates and cultured in vitro for 2 weeks. To inhibit epithelial-mesenchymal transition (EMT) of RPE cells, we used Y27632 and Repsox to treat cultured primary RPE cells. RESULTS RPE cells isolated from C57BL mice maintained pigmented and hexagonal morphology in culture. However, long-term in vitro culture lead to the periphery cells of a RPE sheet becoming mesenchymal-like cells. In contrast to the control group, Y27632 and Repsox, which are inhibitors of Rho-kinase or TGFβR-1/ALK5, promoted primary RPE cells to maintain epithelial-like morphology and eventually become confluent. CONCLUSIONS RPE cells isolated from C57BL mice could be a powerful cell model to study the biological function of RPE. Especially, C57BL mice with different defective genetic background resulting in ocular diseases, would expand the genome type of RPE cells. The method presented here could be an efficient and applicable technique to obtain large numbers of primary RPE cells that maintain some characteristics of in vivo RPE."	"Solute carrier family 35 member F2 is indispensable for papillary thyroid carcinoma progression through activation of transforming growth factor-β type I receptor/apoptosis signal-regulating kinase 1/mitogen-activated protein kinase signaling axis. Solute carrier family members control essential physiological functions and are tightly linked to human diseases. Solute carrier family 35 member F2 (SLC35F2) is aberrantly activated in several malignancies. However, the biological function and molecular mechanism of SLC35F2 in papillary thyroid carcinoma (PTC) are yet to be fully explored. Here, we showed that SLC35F2 was prominently upregulated in PTC tissues at both protein and mRNA expression level compared with matched adjacent normal tissues. Besides, the high expression of SLC35F2 was significantly associated with lymph node metastasis in patients with PTC. CRISPR/Cas9-mediated knockout of SLC35F2 attenuated the tumorigenic properties of PTC, including cell proliferation, migration and invasion and induced G1 phase arrest. In contrast, ectopic expression of SLC35F2 brought about aggressive malignant phenotypes of PTC cells. Moreover, SLC35F2 expedited the proliferation and migration of PTC cells by targeting transforming growth factor-β type I receptor (TGFBR1) and phosphorylation of apoptosis signal-regulating kinase 1 (p-ASK-1), thereby activating the mitogen-activated protein kinase signaling pathway. The malignant behaviors induced by overexpression of SLC35F2 could be abrogated by silencing of TGFBR1 using a specific inhibitor. We conducted the first study on SLC35F2 in thyroid cancer with the aim of elucidating the functional significance and molecular mechanism of SLC35F2. Our findings suggest that SLC35F2 exerts its oncogenic effect on PTC progression through the mitogen-activated protein kinase pathway, with dependence on activation of TGFBR-1 and apoptosis signal-regulating kinase 1."	"TGFβ signaling reinforces pericyte properties of the non-endocrine mouse pituitary cell line TtT/GF. The non-endocrine TtT/GF mouse pituitary cell line was derived from radiothyroidectomy-induced pituitary adenoma. In addition to morphological characteristics, because the cells are S100β-positive, they have been accepted as a model of folliculostellate cells. However, our recent microarray analysis indicated that, in contrast to folliculostellate cells, TtT/GF cells might not be terminally differentiated, as they share some properties with stem/progenitor cells, vascular endothelial cells and pericytes. The present study investigates whether transforming growth factor beta (TGFβ) can elicit further differentiation of these cells. The results showed that canonical (Tgfbr1 and Tgfbr2) and non-canonical TGFβ receptors (Tgfbr3) as well as all TGFβ ligands (Tgfb1-3) were present in TtT/GF cells, based on reverse transcription PCR. SMAD2, an intercellular signaling molecule of the TGFβ pathway, was localized in the nucleus upon TGFβ signaling. Furthermore, TGFβ induced cell colony formation, which was completely blocked by a TGFβ receptor I inhibitor (SB431542). Real-time PCR analysis indicated that TGFβ downregulated stem cell markers (Sox2 and Cd34) and upregulated pericyte markers (Nestin and Ng2). Double immunohistochemistry using mouse pituitary tissue confirmed the presence of NESTIN/NG2 double-positive cells in perivascular areas where pericytes are localized. Our results suggest that TtT/GF cells are responsive to TGFβ signaling, which is associated with cell colony formation and pericyte differentiation. As pericytes have been shown to regulate angiogenesis, tumorigenesis and stem/progenitor cells in other tissues, TtT/GF cells could be a useful model to study the role of pituitary pericytes in physiological and pathological processes."	"The Role of PAR2 in TGF-β1-Induced ERK Activation and Cell Motility. Recently, the expression of proteinase-activated receptor 2 (PAR2) has been shown to be essential for activin receptor-like kinase 5 (ALK5)/SMAD-mediated signaling and cell migration by transforming growth factor (TGF)-β1. However, it is not known whether activation of non-SMAD TGF-β signaling (e.g., RAS-RAF-MEK-extracellular signal-regulated kinase (ERK) signaling) is required for cell migration and whether it is also dependent on PAR2. RNA interference was used to deplete cells of PAR2, followed by xCELLigence technology to measure cell migration, phospho-immunoblotting to assess ERK1/2 activation, and co-immunoprecipitation to detect a PAR2-ALK5 physical interaction. Inhibition of ERK signaling with the MEK inhibitor U0126 blunted the ability of TGF-β1 to induce migration in pancreatic cancer Panc1 cells. ERK activation in response to PAR2 agonistic peptide (PAR2-AP) was strong and rapid, while it was moderate and delayed in response to TGF-β1. Basal and TGF-β1-dependent ERK, but not SMAD activation, was blocked by U0126 in Panc1 and other cell types indicating that ERK activation is downstream or independent of SMAD signaling. Moreover, cellular depletion of PAR2 in HaCaT cells strongly inhibited TGF-β1-induced ERK activation, while the biased PAR2 agonist GB88 at 10 and 100 µM potentiated TGF-β1-dependent ERK activation and cell migration. Finally, we provide evidence for a physical interaction between PAR2 and ALK5. Our data show that both PAR2-AP- and TGF-β1-induced cell migration depend on ERK activation, that PAR2 expression is crucial for TGF-β1-induced ERK activation, and that the functional cooperation of PAR2 and TGF-β1 involves a physical interaction between PAR2 and ALK5."	"Pyridoxine 5'-phosphate oxidase is a novel therapeutic target and regulated by the TGF-β signalling pathway in epithelial ovarian cancer. Pyridoxine 5'-phosphate oxidase (PNPO) is an enzyme that converts pyridoxine 5'-phosphate into pyridoxal 5'-phosphate (PLP), an active form of vitamin B6 implicated in several types of cancer. However, the role of PNPO and its regulatory mechanism in epithelial ovarian cancer (EOC) are unknown. In the present study, PNPO expression in human ovarian tumour tissue and its association with the clinicopathological features of patients with EOC were examined. Further, the biological function of PNPO in EOC cells and in xenograft was evaluated. We demonstrated for the first time that PNPO was overexpressed in human EOC. Knockdown of PNPO induced EOC cell apoptosis, arrested cell cycle at G2/M phase, decreased cell proliferation, migration and invasion. Xenografts of PNPO-shRNA-expressing cells into the nude mouse attenuated tumour growth. PNPO at mRNA and protein levels in EOC cells was decreased after transforming growth factor-β1 (TGF-β1) treatment. The inhibitory effect of TGF-β1 on PNPO expression was abolished in the presence of SB-431542, a TGF-β type I receptor kinase inhibitor. Moreover, we found that TGF-β1-mediated PNPO expression was at least in part through the upregulation of miR-143-3p. These data indicate a mechanism underlying PNPO regulation by the TGF-β signalling pathway. Furthermore, PLP administration reduced PNPO expression and decreased EOC cell proliferation, suggesting a feedback loop between PLP and PNPO. Thus, our findings reveal that PNPO can serve as a novel tissue biomarker of EOC and may be a potential target for therapeutic intervention."	"Negative control of the HGF/c-MET pathway by TGF-β: a new look at the regulation of stemness in glioblastoma. Multiple target inhibition has gained considerable interest in combating drug resistance in glioblastoma, however, understanding the molecular mechanisms of crosstalk between signaling pathways and predicting responses of cancer cells to targeted interventions has remained challenging. Despite the significant role attributed to transforming growth factor (TGF)-β family and hepatocyte growth factor (HGF)/c-MET signaling in glioblastoma pathogenesis, their functional interactions have not been well characterized. Using genetic and pharmacological approaches to stimulate or antagonize the TGF-β pathway in human glioma-initiating cells (GIC), we observed that TGF-β exerts an inhibitory effect on c-MET phosphorylation. Inhibition of either mitogen-activated protein kinase (MAPK)/ extracellular signal-regulated kinase (ERK) or phosphatidylinositol 3-kinase (PI3K)/protein kinase B (PKB/AKT) signaling pathway attenuated this effect. A comparison of c-MET-driven and c-MET independent GIC models revealed that TGF-β inhibits stemness in GIC at least in part via its negative regulation of c-MET activity, suggesting that stem cell (SC) maintenance may be controlled by the balance between these two oncogenic pathways. Importantly, immunohistochemical analyses of human glioblastoma and ex vivo single-cell gene expression profiling of TGF-β and HGF confirm the negative interaction between both pathways. These novel insights into the crosstalk of two major pathogenic pathways in glioblastoma may explain some of the disappointing results when targeting either pathway alone in human glioblastoma patients and inform on potential future designs on targeted pharmacological or genetic intervention."	"Loss of CYLD promotes cell invasion via ALK5 stabilization in oral squamous cell carcinoma. Oral squamous cell carcinoma (OSCC) has a very poor prognosis because of its highly invasive nature, and the 5-year survival rate has not changed appreciably for the past 30 years. Although cylindromatosis (CYLD), a deubiquitinating enzyme, is thought to be a potent tumour suppressor, its biological and clinical significance in OSCC is largely unknown. This study aimed to clarify the roles of CYLD in OSCC progression. Our immunohistochemical analyses revealed significantly reduced CYLD expression in invasive areas in OSCC tissues, whereas CYLD expression was conserved in normal epithelium and carcinoma in situ. Furthermore, downregulation of CYLD by siRNA led to the acquisition of mesenchymal features and increased migratory and invasive properties in OSCC cells and HaCaT keratinocytes. It is interesting that CYLD knockdown promoted transforming growth factor-β (TGF-β) signalling by inducing stabilization of TGF-β receptor I (ALK5) in a cell autonomous fashion. In addition, the response to exogenous TGF-β stimulation was enhanced by CYLD downregulation. The invasive phenotypes induced by CYLD knockdown were completely blocked by an ALK5 inhibitor. In addition, lower expression of CYLD was significantly associated with the clinical features of deep invasion and poor overall survival, and also with increased phosphorylation of Smad3, which is an indicator of activation of TGF-β signalling in invasive OSCC. These findings suggest that downregulation of CYLD promotes invasion with mesenchymal transition via ALK5 stabilization in OSCC cells. Copyright © 2017 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Disruption of postnatal folliculogenesis and development of ovarian tumor in a mouse model with aberrant transforming growth factor beta signaling. Transforming growth factor beta (TGFB) superfamily signaling is implicated in the development of sex cord-stromal tumors, a category of poorly defined gonadal tumors. The aim of this study was to determine potential effects of dysregulated TGFB signaling in the ovary using Cre recombinase driven by growth differentiation factor 9 (Gdf9) promoter known to be expressed in oocytes. A mouse model containing constitutively active TGFBR1 (TGFBR1<sup>CA</sup>) using Gdf9-iCre (termed TGFBR1-CA<sup>G9Cre</sup>) was generated. Hematoxylin and eosin (H &amp; E) staining, follicle counting, and immunohistochemistry and immunofluorescence analyses using antibodies directed to Ki67, forkhead box L2 (FOXL2), forkhead box O1 (FOXO1), inhibin alpha (INHA), and SRY (sex determining region Y)-box 9 were performed to determine the characteristics of the TGFBR1-CA<sup>G9Cre</sup> ovary. Terminal deoxynucleotidyl transferase (TdT) labeling of 3'-OH ends of DNA fragments, real-time PCR, and western blotting were used to examine apoptosis, select gene expression, and TGFBR1 activation. RNAscope in situ hybridization was used to localize the expression of GLI-Kruppel family member GLI1 (Gli1) in ovarian tumor tissues. TGFBR1-CA<sup>G9Cre</sup> females were sterile. Sustained activation of TGFBR1 led to altered granulosa cell proliferation evidenced by high expression of Ki67. At an early age, these mice demonstrated follicular defects and development of ovarian granulosa cell tumors, which were immunoreactive for granulosa cell markers including FOXL2, FOXO1, and INHA. Further histochemical and molecular analyses provided evidence of overactivation of TGFBR1 in the granulosa cell compartment during ovarian pathogenesis in TGFBR1-CA<sup>G9Cre</sup> mice, along with upregulation of Gli1 and Gli2 and downregulation of Tgfbr3 in ovarian tumor tissues. These results reinforce the role of constitutively active TGFBR1 in promoting ovarian tumorigenesis in mice. The mouse model created in this study may be further exploited to define the cellular and molecular mechanisms of TGFB/activin downstream signaling in granulosa cell tumor development. Future studies are needed to test whether activation of TGFB/activin signaling contributes to the development of human granulosa cell tumors."	"IGFBP3 deposited in the human umbilical cord mesenchymal stem cell-secreted extracellular matrix promotes bone formation. The extracellular matrix (ECM) contains rich biological cues for cell recruitment, proliferationm, and even differentiation. The osteoinductive potential of scaffolds could be enhanced through human bone marrow mesenchymal stem cell (hBMSC) directly depositing ECM on surface of scaffolds. However, the role and mechanism of human umbilical cord mesenchymal stem cells (hUCMSC)-secreted ECM in bone formation remain unknown. We tested the osteoinductive properties of a hUCMSC-secreted ECM construct (hUCMSC-ECM) in a large femur defect of a severe combined immunodeficiency (SCID) mouse model. The hUCMSC-ECM improved the colonization of endogenous MSCs and bone regeneration, similar to the hUCMSC-seeded scaffold and superior to the scaffold substrate. Besides, the hUCMSC-ECM enhanced the promigratory molecular expressions of the homing cells, including CCR2 and TβRI. Furthermore, the hUCMSC-ECM increased the number of migrated MSCs by nearly 3.3 ± 0.1-fold, relative to the scaffold substrate. As the most abundant cytokine deposited in the hUCMSC-ECM, insulin-like growth factor binding protein 3 (IGFBP3) promoted hBMSC migration in the TβRI/II- and CCR2-dependent mechanisms. The hUCMSC-ECM integrating shRNA-mediated silencing of Igfbp3 that down-regulated IGFBP3 expression by approximately 60%, reduced the number of migrated hBMSCs by 47%. In vivo, the hUCMSC-ECM recruited 10-fold more endogenous MSCs to initiate bone formation compared to the scaffold substrate. The knock-down of Igfbp3 in the hUCMSC-ECM inhibited nearly 60% of MSC homing and bone regeneration capacity. This research demonstrates that IGFBP3 is an important MSC homing molecule and the therapeutic potential of hUCMSC-ECM in bone regeneration is enhanced by improving MSC homing in an IGFBP3-dependent mechanism."	"Inhibition of TGF-β pathway reverts extracellular matrix remodeling in T. cruzi-infected cardiac spheroids. Chagasic cardiomyopathy (CC) is the main manifestation of Chagas Disease (CD). CC is a progressive dysfunctional illness, in which transforming growth factor beta (TGF-β) plays a central role in fibrogenesis and hypertrophy. In the present study, we tested in a three-dimensional (3D) model of cardiac cells culture (named cardiac spheroids), capable of mimicking the aspects of fibrosis and hypertrophy observed in CC, the role of TGF-β pathway inhibition in restoring extracellular matrix (ECM) balance disrupted by T. cruzi infection. Treatment of T. cruzi-infected cardiac spheroids with SB 431542, a selective inhibitor of TGF-β type I receptor, resulted in a reduction in the size of spheroids, which was accompanied by a decrease in parasite load and in fibronectin expression. The inhibition of TGF-β pathway also promoted an increase in the activity of matrix metalloproteinase (MMP)-2 and a decrease in tissue inhibitor of matrix metalloproteinase (TIMP)-1 expression, which may be one of the mechanisms regulating extracellular matrix remodeling. Therefore, our study provides new insights into the molecular mechanisms by which inhibition of TGF-β signaling reverts fibrosis and hypertrophy generated by T. cruzi during CC and also highlights the use of cardiac spheroids as a valuable tool for the study of fibrogenesis and anti-fibrotic compounds."	"TGF-β1 protection against Aβ1-42-induced hippocampal neuronal inflammation and apoptosis by TβR-I. Alzheimer's disease (AD), the most common chronic neurodegenerative disease, is pathologically characterized by the formation of neurofibrillary tangles because of hyperphosphorylation of tau protein and extracellular deposits of amyloid-β (Aβ) protein termed senile plaques. Recent studies indicate that neuronal apoptosis caused by chronic neuroinflammation is one of the important pathogenesis of AD. Transforming growth factor (TGF)-β1 is a pleiotropic cytokine with immunosuppressive and anti-inflammatory properties. However, it is poorly known whether the anti-inflammatory property of TGF-β1 is involved in a neuroprotection in AD. Here, an AD cell model of hippocampal neurons induced by Aβ1-42 was used to show an anti-inflammatory and neuroprotective effect of TGF-β1 through its receptor transforming growth factor-β receptor type I (TβR-I). As expected, Aβ1-42-induced an upregulation in neuronal expression of amyloid precursor protein (APP), tumor necrosis factor-α, cyclooxygenase-2, Bax, cleaved caspase-3, and cleaved caspase-9, and a downregulation in the expression of Bcl-2, as well as an increase in the number of NeuN/terminal deoxynucleotidyl transferase-mediated deoxyuridine triphosphate-biotin nick end labeling (TUNEL) double-positive cells. TGF-β1 pretreatment reduced the Aβ1-42-induced effects of upregulating APP, tumor necrosis factor-α, Bax, cleaved caspase-3 and cleaved caspase-9, and downregulating Bcl-2, in addition to increasing NeuNTUNEL cell number. TβR-I expression in hippocampal neurons was downregulated by Aβ1-42 exposure, but upregulated by TGF-β1 pretreatment. Silencing of the TβR-I gene in the neurons abolished the anti-inflammatory and antiapoptotic effects of TGF-β1 in the Aβ1-42-induced AD cell model. These findings suggest that TGF-β1 protects neurons against Aβ1-42-induced neuronal inflammation and apoptosis by activation of TβR-I."	"TRAF6 regulates tumour metastasis through EMT and CSC phenotypes in head and neck squamous cell carcinoma. Epithelial-mesenchymal transition (EMT) is associated with metastasis formation, generation and maintenance of cancer stem cells (CSCs). However, the regulatory mechanisms of CSCs have not been clarified. This study aims to investigate the role of TNF receptor-associated factor 6 (TRAF6) on EMT and CSC regulation in squamous cell carcinoma of head and neck (SCCHN). We found TRAF6 was overexpressed in human SCCHN tissues, and high TRAF6 expression was associated with lymphatic metastasis and resulted in poor prognosis in patients with SCCHN. In addition, elevated TRAF6 expression was observed in several HNSCC cell lines, and wound healing and transwell assay results showed that TRAF6 knockdown inhibited the migration and invasion ability of the SCCHN cells. Moreover, the expression of Vimentin, Slug and N-cadherin was down-regulated and that of E-cadherin was elevated after TRAF6 knockdown but decreased by transforming growth factor beta 1 (TGF-β1) and CAL27 similar to mesenchymal cells formed after TGF-β1 induction. In addition, the expression levels of CD44, ALDH1, KLF4 and SOX2 were inhibited after TRAF6 knockdown, and the anchor-dependent colony formation number and sphere number were remarkably reduced. Flow cytometry showed TRAF6 knockdown reduced ALDH1-positive cancer stem cells. We also demonstrated that TRAF6 is closely associated with EMT process and cancer stem cells using a Tgfbr1/Pten 2cKO mice SCCHN model and human SCCHN tissue microarray. Our findings indicate that TRAF6 plays a role in EMT phenotypes, the generation and maintenance of CSCs in SCCHN, suggesting that TRAF6 is a potential therapeutic target for SCCHN."	"Platelet-Facilitated Photothermal Therapy of Head and Neck Squamous Cell Carcinoma. Here, we present a platelet-facilitated photothermal tumor therapy (PLT-PTT) strategy, in which PLTs act as carriers for targeted delivery of photothermal agents to tumor tissues and enhance the PTT effect. Gold nanorods (AuNRs) were first loaded into PLTs by electroporation and the resulting AuNR-loaded PLTs (PLT-AuNRs) inherited long blood circulation and cancer targeting characteristics from PLTs and good photothermal property from AuNRs. Using a gene-knockout mouse model, we demonstrate that the administration of PLT-AuNRs and localizing laser irradiation could effectively inhibit the growth of head and neck squamous cell carcinoma (HNSCC). In addition, we found that the PTT treatment augmented PLT-AuNRs targeting to the tumor sites and in turn, improved the PTT effects in a feedback manner, demonstrating the unique self-reinforcing characteristic of PLT-PTT in cancer therapy."	"Roles of CD34+ cells and ALK5 signaling in the reconstruction of seminiferous tubule-like structures in 3-D re-aggregate culture of dissociated cells from neonatal mouse testes. Tissue reconstruction in vitro can provide, if successful, a refined and simple system to analyze the underlying mechanisms that drive the morphogenesis and maintain the ordered structure. We have recently succeeded in reconstruction of seminiferous cord-like and tubule-like structures using 3-D re-aggregate culture of dissociated testicular cells. In testis formation, endothelial cells that migrated from mesonephroi to embryonic gonads have been shown to be critical for development of testis cords, but how endothelial cells contribute to testis cord formation remains unknown. To decipher the roles of endothelial and peritubular cells in the reconstruction of cord-like and tubule-like structures, we investigated the behavior of CD34+ endothelial and p75+ cells, and peritubular myoid cells (PTMCs) in 3-D re-aggregate cultures of testicular cells. The results showed that these 3 types of cells had the capacity of re-aggregation on their own and with each other, and of segregation into 3 layers in a re-aggregate, which were very similar to interstitial and peritubular tissues in vivo. Observation of behaviors of fluorescent Sertoli cells and other non-fluorescent types of cells using testes from Sox9-EGFP transgenic mice showed dynamic cell movement and segregation in re-aggregate cultures. Cultures of testicular cells deprived of interstitial and peritubular cells resulted in dysmorphic structures, but re-addition of them restored tubule-like structures. Purified CD34+ cells in culture differentiated into p75+ cells and PTMCs. These results indicate that CD34+ cells differentiate into p75+ cells, which then differentiate into PTMCs. TGFβ signaling inhibitors, SB431542 and ALK5i, disturbed the reconstruction of cord-like and tubule-like structures, and the latter compromised re-construction of interstitial-like and peritubular-like structures, as well as the proliferation of CD34+, p75+, PTMCs, and Sertoli cells, and their movement and differentiation. These results indicate that CD34+ cells and signaling through ALK5 play pivotal roles in the morphogenesis of interstitial-like, peritubular-like and cord-like structures."	"Blockage of the NLRP3 inflammasome by MCC950 improves anti-tumor immune responses in head and neck squamous cell carcinoma. The NLRP3 inflammasome is a critical innate immune pathway responsible for producing active interleukin (IL)-1β, which is associated with tumor development and immunity. However, the mechanisms regulating the inflammatory microenvironment, tumorigenesis and tumor immunity are unclear. Herein, we show that the NLRP3 inflammasome was over-expressed in human HNSCC tissues and that the IL-1β concentration was increased in the peripheral blood of HNSCC patients. Additionally, elevated NLRP3 inflammasome levels were detected in tumor tissues of Tgfbr1/Pten 2cKO HNSCC mice, and elevated IL-1β levels were detected in the peripheral blood serum, spleen, draining lymph nodes and tumor tissues. Blocking NLRP3 inflammasome activation using MCC950 remarkably reduced IL-1β production in an HNSCC mouse model and reduced the numbers of myeloid-derived suppressor cells (MDSCs), regulatory T cells (Tregs) and tumor-associated macrophages (TAMs). Moreover, inhibiting NLRP3 inflammasome activation increased the numbers of CD4<sup>+</sup> and CD8<sup>+</sup> T cells in HNSCC mice. Notably, the numbers of exhausted PD-1<sup>+</sup> and Tim3<sup>+</sup> T cells were significantly reduced. A human HNSCC tissue microarray showed that NLRP3 inflammasome expression was correlated with the expression of CD8 and CD4, the Treg marker Foxp3, the MDSC markers CD11b and CD33, and the TAM markers CD68 and CD163, PD-1 and Tim3. Overall, our results demonstrate that the NLRP3 inflammasome/IL-1β pathway promotes tumorigenesis in HNSCC and inactivation of this pathway delays tumor growth, accompanied by decreased immunosuppressive cell accumulation and an increased number of effector T cells. Thus, inhibition of the tumor microenvironment through the NLRP3 inflammasome/IL-1β pathway may provide a novel approach for HNSCC therapy."	"Transforming growth factor beta 1 related gene polymorphisms in gestational hypertension and preeclampsia: A case-control candidate gene association study. To investigate the association between transforming growth factor beta 1 related gene polymorphisms and the occurrence of pregnancy induced hypertension, including gestational hypertension and preeclampsia. This is a case control candidate gene association study. A total of 130 patients with preeclampsia, 67 with gestational hypertension, and 316 controls were recruited. Eleven candidate SNPs of were examined, including four TGFβ1 SNPs (rs1800469, rs4803455, rs4803457, and rs8179181), one TGFβR1 SNP (rs10739778), four TGFβR2 SNPs (rs1346907, rs3087465, rs6550005, and rs877572), and two ENG SNPs (rs10121110 and rs11792480). Logistic regression was used to estimate the OR and the 95% CI under different genetic models. Chi-square test was used to determine whether haplotype frequency distributions differed between the case and control groups and logistic regression was used to estimate ORs. To explore the associations between SNPs and blood pressure, SBP/DBP in different genotype groups in healthy women were compared by Wilcoxon rank sum test. We did not find significant association between investigated SNPs and pregnancy induced hypertension. The C-T-A-G haplotype of four TGFβR2 SNPs (rs877572, rs1346907, rs3087465, and rs6550005) was significantly associated with preeclampsia (OR = 4.71, 95%CI: 1.944, 11.409) and gestational hypertension (OR = 3.157, 95%CI: 1.003, 9.938). The AA genotype of TGFβR1 rs10739778 was found to be associated with higher blood pressure in healthy women (p ≤ .008). Polymorphisms in TGFβR2 might participate in the pathologic process of pregnancy induced hypertension, and TGFβR1 rs10739778 was associated with blood pressure in our healthy participants."	"Proteinase-Activated Receptor 2 May Drive Cancer Progression by Facilitating TGF-β Signaling. The G protein-coupled receptor proteinase-activated receptor 2 (PAR2) has been implicated in various aspects of cellular physiology including inflammation, obesity and cancer. In cancer, it usually acts as a driver of cancer progression in various tumor types by promoting invasion and metastasis in response to activation by serine proteinases. Recently, we discovered another mode through which PAR2 may enhance tumorigenesis: crosstalk with transforming growth factor-β (TGF-β) signaling to promote TGF-β1-induced cell migration/invasion and invasion-associated gene expression in ductal pancreatic adenocarcinoma (PDAC) cells. In this chapter, we review what is known about the cellular TGF-β responses and signaling pathways affected by PAR2 expression, the signaling activities of PAR2 required for promoting TGF-β signaling, and the potential molecular mechanism(s) that underlie(s) the TGF-β signaling-promoting effect. Since PAR2 is activated through various serine proteinases and biased agonists, it may couple TGF-β signaling to a diverse range of other physiological processes that may or may not predispose cells to cancer development such as local inflammation, systemic coagulation and pathogen infection."	"Ocular findings in Loeys-Dietz syndrome. Loeys-Dietz syndrome (LDS), an autosomal-dominant connective tissue disorder, is characterised by systemic manifestations including arterial aneurysm and craniofacial dysmorphologies. Although ocular involvement in LDS has been reported, detailed information on those manifestations is lacking. Retrospective chart review of patients with diagnosed LDS and comparison with age-matched control patients. Mean age was 37.8±14.6 years (patients with LDS) and 38.4±13.5 years (controls). Patients with LDS less frequently had iris transillumination, cataract and glaucoma compared with controls. Scleral and retinal vascular abnormalities were not found in any of the LDS eyes. Ectopia lentis was found in one patient with LDS. The eyes of patients with LDS tended to be more myopic (spherical equivalent, -2.47±2.70 dioptres (dpt) vs -1.30±2.96dpt (controls); P=0.08) and longer (24.6±1.7mm vs 24.1±1.5mm (controls); P=0.10). Central corneal thickness was significantly reduced in LDS eyes (521±48µm vs 542±37µm (controls); P=0.02). Corneal curvature (43.06±1.90dpt (LDS) versus 43.00±1.37dpt (controls); P=0.72) and interpupillary distance (65.0±6.0mm (LDS) vs 64.3±4.8mm (controls); P=0.66) did not differ significantly between both groups. Visual acuity was similar between both groups (0.03±0.09logarithm of the minimum angle of resolution (logMAR) for LDS eyes and 0.05±0.17logMAR for control eyes, P=0.47). Ocular features of LDS include decreased central corneal thickness and mild myopia. Ectopia lentis may be slightly more common than in controls but appears less common than in Marfan syndrome. Hypertelorism, scleral and retinal vascular abnormalities were not features of LDS."	"Computational analyses of interactions between ALK-5 and bioactive ligands: insights for the design of potential anticancer agents. Activin Receptor-Like Kinase 5 (ALK-5) is related to some types of cancer, such as breast, lung, and pancreas. In this study, we have used molecular docking, molecular dynamics simulations, and free energy calculations in order to explore key interactions between ALK-5 and six bioactive ligands with different ranges of biological activity. The motivation of this work is the lack of crystal structure for inhibitor-protein complexes for this set of ligands. The understanding of the molecular structure and the protein-ligand interaction could give support for the development of new drugs against cancer. The results show that the calculated binding free energy using MM-GBSA, MM-PBSA, and SIE is correlated with experimental data with r<sup>2</sup> = 0.88, 0.80, and 0.94, respectively, which indicates that the calculated binding free energy is in excellent agreement with experimental data. In addition, the results demonstrate that H bonds with Lys232, Glu245, Tyr249, His283, Asp351, and one structural water molecule play an important role for the inhibition of ALK-5. Overall, we discussed the main interactions between ALK-5 and six inhibitors that may be used as starting points for designing new molecules to the treatment of cancer."	"Amphotericin B-copper (II) complex alters transcriptional activity of genes encoding transforming growth factor-beta family members and related proteins in renal cells. Several chemical modifications have been developed to overcome the toxicity of amphotericin B (AmB). Oxidized forms of AmB (AmB-ox), which may occur in patient's circulation during therapy, are as toxic as AmB. Complexes with copper (II) ions (AmB-Cu<sup>2+</sup>) have been reported to be less toxic to human cells. Previous studies showed that AmB changed the expression of transforming growth factor-beta (TGF-β). Therefore, the objective of this study was to investigate the influence of AmB and its modified forms on the expression of genes encoding for TGF-β family members and related proteins in renal cells. Human renal proximal tubule cells (RPTEC) were treated with AmB-Cu<sup>2+</sup>, AmB, or the oxidized form AmB-ox. The expression of TGF-β family members and related genes was determined using oligonucleotide microarrays. TGF-β1 protein level was determined using ELISA method. The mRNA level of TGF-β isoforms, TGF-β receptors and differentiating genes was evaluated by real-time RT-qPCR. AmB-Cu<sup>2+</sup> increased the mRNA levels of TGF-β1 and TGF-β2 isoforms and two genes encoding receptors: TGFBR1 and TGFBR2. TGF-β1 protein level in culture medium was not increased after stimulation with AmB-Cu<sup>2+</sup>. Microarray analysis revealed changes in both pro-fibrotic and anti-fibrotic genes. These results suggest that AmB-Cu<sup>2+</sup> may induce repair mechanisms in renal proximal tubule cells via changes in the expression of genes involved in intracellular signaling."	"TGF‑β signaling: A complex role in tumorigenesis (Review). Tumor progression can be affected by various cellular components of tumor cells and/or by tumor microenvironmental factors. The tumor microenvironment comprises a variety of nonmalignant stromal cells and inflammatory cytokines, which are pivotal in tumor promotion and progression. The transforming growth factor‑β (TGF‑β) ligands (TGF‑β1, 2 and 3) are secreted inflammatory cytokines, which are known to be involved in various aspects of tumor development through two transmembrane serine‑threonine kinase receptors, TGFβR1 and TGFβR2. TGF‑β promotes or inhibits tumorigenesis depending on the concurrent gene mutations and tissue microenvironment present through the small mothers against decapentaplegic (Smad) and non‑Smad pathways. This review aims to provide a comprehensive overview of the role of the TGF‑β pathway in tumor initiation and progression."	"Mechanistic Study of Bakuchiol-Induced Anti-breast Cancer Stem Cell and in Vivo Anti-metastasis Effects. Cancer stem cells are involved in cancer establishment, progression, and resistance to current treatments. We demonstrated the in vitro and in vivo anti-breast cancer effect of bakuchiol in a previous study. However, the ability of bakuchiol to target breast cancer stem cells (BCSCs) and inhibit breast cancer metastasis remains unknown. In the current study, we used the cell surface markers CD44 and CD24 to distinguish BCSCs from MCF-7 cells. Bakuchiol inhibited mammosphere formation and aldehyde dehydrogenase activity in BCSCs. Moreover, bakuchiol induced apoptosis and suppressed the mitochondrial membrane potential of BCSCs. Bakuchiol upregulated the expression levels of pro-apoptotic genes, BNIP3 and DAPK2. Bakuchiol induced oxidative stress and altered lipogenesis in BCSCs. In zebrafish xenografts, bakuchiol inhibited breast cancer cell metastasis in vivo. In addition, bakuchiol altered the expression levels of metastasis-related genes through upregulating CK18 and downregulating Notch3, FASN, TGFBR1, and ACVR1B. Our study provides evidence for the anti-breast cancer potential of bakuchiol."	"Endothelial Mesenchymal Transition in Hypoxic Microvascular Endothelial Cells and Paracrine Induction of Cardiomyocyte Apoptosis Are Mediated via TGFβ₁/SMAD Signaling. Cardiac remodeling plays a crucial role in the development of heart failure after mycocardial infarction. Besides cardiomyocytes, endothelial cells are recognized to contribute to cardiac remodeling. We now investigated processes of endothelial mesenchymal transition (EndoMT) in microvascular endothelial cells of rat (MVEC) under hypoxia and paracrine effects on ventricular cardiomyocytes of adult rat. Exposure of MVECs to hypoxia/reoxygenation enhanced TGFβ/SMAD signaling, since phosphorylation, and thus activation, of SMAD1/5 and SMAD2 increased. This increase was blocked by inhibitors of TGFβ receptor types ALK1 or ALK5. Exposure of ventricular cardiomyocytes to conditioned medium from hypoxic/reoxygenated MVECs enhanced SMAD2 phosphorylation and provoked apoptosis in cardiomyoyctes. Both were blocked by ALK5 inhibition. To analyze autocrine effects of hypoxic TGFβ signaling we investigated EndoMT in MVECs. After 3 days of hypoxia the mesenchymal marker protein α-smooth muscle actin (α-SMA), and the number of α-SMA- and fibroblast specific protein 1 (FSP1)-positive cells increased in MVECs cultures. This was blocked by ALK5 inhibition. Similarly, TGFβ₁ provoked enhanced expression of α-SMA and FSP1 in MVECs. In conclusion, hypoxia provokes EndoMT in MVECs via TGFβ₁/SMAD2 signaling. Furthermore, release of TGFβ₁ from MVECs acts in a paracrine loop on cardiomyocytes and provokes apoptotic death. Thus, in myocardial infarction hypoxic endothelial cells may contribute to cardiac remodeling and heart failure progression by promotion of cardiac fibrosis and cardiomyocytes death."	"Molecular Pathogenesis of Chlamydia Disease Complications: Epithelial-Mesenchymal Transition and Fibrosis. The reproductive system complications of genital chlamydial infection include fallopian tube fibrosis and tubal factor infertility. However, the molecular pathogenesis of these complications remains poorly understood. The induction of pathogenic epithelial-mesenchymal transition (EMT) through microRNA (miRNA) dysregulation was recently proposed as the pathogenic basis of chlamydial complications. Focusing on fibrogenesis, we investigated the hypothesis that chlamydia-induced fibrosis is caused by EMT-driven generation of myofibroblasts, the effector cells of fibrosis that produce excessive extracellular matrix (ECM) proteins. The results revealed that the targets of a major category of altered miRNAs during chlamydial infection are key components of the pathophysiological process of fibrogenesis; these target molecules include collagen types I, III, and IV, transforming growth factor β (TGF-β), TGF-β receptor 1 (TGF-βR1), connective tissue growth factor (CTGF), E-cadherin, SRY-box 7 (SOX7), and NFAT (nuclear factor of activated T cells) kinase dual-specificity tyrosine (Y) phosphorylation-regulated kinase 1a (Dyrk1a). Chlamydial induction of EMT resulted in the generation of α-smooth muscle actin (α-SMA)-positive myofibroblasts that produced ECM proteins, including collagen types I and III and fibronectin. Furthermore, the inhibition of EMT prevented the generation of myofibroblasts and production of ECM proteins during chlamydial infection. These findings may provide useful avenues for targeting EMT or specific components of the EMT pathways as a therapeutic intervention strategy to prevent chlamydia-related complications."	"Epigenetically-Regulated MicroRNA-9-5p Suppresses the Activation of Hepatic Stellate Cells via TGFBR1 and TGFBR2. Recently, microRNAs (miRNAs) have been demonstrated to act as regulators of activation of hepatic stellate cells (HSCs). It is well known that the main profibrogenic inducer transforming growth factor-β1 (TGF-β1) contributes to HSC activation, which is a key event in liver fibrosis. Increasing studies show that miR-9-5p is down-regulated in liver fibrosis and restoration of miR-9-5p limits HSC activation. However, the role of miR-9-5p in TGF-β1-induced HSC activation is still not clear. miR-9-5p expression was quantified using real-time PCR in chronic hepatitis B (CHB) patients and TGF-β1-treated LX-2 cells. In CHB patients, histological activity index (HAI) and fibrosis stages were assessed using the Ishak scoring system. Effects of miR-9-5p on liver fibrosis in vivo and in vitro were analyzed. Luciferase activity assays were performed to examine the binding of miR-9-5p to the 3'-untranslated region of type I TGF-β receptor (TGFBR1) as well as TGFBR2. Compared with healthy controls, miR-9-5p was reduced in CHB patients. There was a lower miR-9-5p expression in CHB patients with higher fibrosis scores or HAI scores. miR-9-5p was down-regulated by TGF-β1 in a dose-dependent manner. TGF-β1-induced HSC activation including cell proliferation, α-SMA and collagen expression was blocked down by miR-9-5p. Notably, miR-9-5p ameliorates carbon tetrachloride-induced liver fibrosis. As determined by luciferase activity assays, TGFBR1 and TGFBR2 were targets of miR-9-5p. Further studies demonstrated that miR-9-5p inhibited TGF-β1/Smads pathway via TGFBR1 and TGFBR2. Interestingly, promoter methylation was responsible for miR-9-5p down-regulation in liver fibrosis. The relationship between miR-9-5p expression and methylation was confirmed in CHB patients and TGF-β1-treated cells. Our results demonstrate that miR-9-5p could inhibit TGF-β1-induced HSC activation through TGFBR1 and TGFBR2. Loss of miR-9-5p is associated with its methylation status in liver fibrosis."	"2D-QSAR study, molecular docking, and molecular dynamics simulation studies of interaction mechanism between inhibitors and transforming growth factor-beta receptor I (ALK5). Transforming growth factor type 1 receptor (ALK5) is kinase associated with a wide variety of pathological processes, and inhibition of ALK5 is a good strategy to treat many kinds of cancer and fibrotic diseases. Recently, a series of compounds have been synthesized as ALK5 inhibitors. However, the study of their selectivity against other potential targets remains elusive. In this research, a data-set of ALK5 inhibitors were collected and studied based on the combination of 2D-QSAR, molecular docking and molecular dynamics simulation. The quality of QSAR models were assessed statistically by F, R<sup>2</sup>, and R<sup>2</sup>ADJ, proved to be credible. The cross-validations for the models (q<sup>2</sup>LOO = 0.571 and 0.629, respectively) showed their robustness, while the external validations (r<sup>2</sup>test = 0.703 and 0.764, respectively) showed their predictive power. Besides, the predicted binding free energy results calculated by MM/GBSA method were in accordance with the experimental data, and the van der Waals energy term was the factor that had the most significant impact on ligand binding. What is more, several important residues were found to significantly affect the binding affinity. Finally, based on our analyses above, a proposed series of molecules were designed."	"Negative Correlation Between Hepatitis C Virus (HCV) and Let-7 MicroRNA Family in Transplanted Livers: The Role of rs868 Single-Nucleotide Polymorphism. BACKGROUND Genetic alterations of TGF-β pathway members, including its transmembrane receptor, TGFBR1, may influence the course of HCV infection. Rs868 is a single-nucleotide polymorphism of the 3'UTR region of TGFBR1, located in a binding site for the conserved let-7/miR98 microRNA family. Previously, we demonstrated a favorable course of hepatitis C recurrence after liver transplantation in rs868 AG genotype of the transplanted liver when compared to rs868 AA. The aim of the present study was to confirm the biological effect of rs868. MATERIAL AND METHODS HepG2 cell line was transfected with luciferase vectors cloned with 3'UTR of TGFBR1 gene encompassing different rs868 alleles. Post-transplant liver biopsies from 61 patients with HCV-related end-stage liver disease were evaluated histopathologically and analyzed for the expression of TGFBR1 mRNA, let-7/miR98 microRNAs, HCV RNA load, and rs868 genotype. RESULTS Luciferase expression was significantly lower in the A allele-containing vector. TGFBR1 mRNA and HCV RNA load were correlated negatively with let-7/miR98 microRNAs and this correlation was significantly stronger for rs868 AG compared to AA genotype. A strong positive correlation was demonstrated between TGFBR1 and HCV in both genotypes. In AG heterozygotes, let-7/miR98 microRNAs showed a strong negative correlation with periportal or periseptal interface hepatitis (Ishak A score). CONCLUSIONS There is a negative correlation between let-7/miR98 microRNAs and HCV viral load and TGFBR1 mRNA after liver transplantation. In the rs868 AG heterozygotes, this correlation was stronger and there was a negative correlation between let-7/miR98 and Ishak A score, which is in concordance with the previously demonstrated protective role of this genotype in post-transplant hepatitis C recurrence."	"Transforming growth factor-β signaling pathway-associated genes SMAD2 and TGFBR2 are implicated in metabolic syndrome in a Taiwanese population. The transforming growth factor-β (TGF-β) signaling pathway and its relevant genes have been correlated with an increased risk of developing various hallmarks of metabolic syndrome (MetS). In this study, we assessed whether the TGF-β signaling pathway-associated genes of SMAD family member 2 (SMAD2), SMAD3, SMAD4, transforming growth factor beta 1 (TGFB1), TGFB2, TGFB3, transforming growth factor beta receptor 1 (TGFBR1), and TGFBR2 are associated with MetS and its individual components independently, through complex interactions, or both in a Taiwanese population. A total of 3,000 Taiwanese subjects from the Taiwan Biobank were assessed. Metabolic traits such as waist circumference, triglyceride, high-density lipoprotein cholesterol, systolic and diastolic blood pressure, and fasting glucose were measured. Our results showed a significant association of MetS with the two single nucleotide polymorphisms (SNPs) of SMAD2 rs11082639 and TGFBR2 rs3773651. The association of MetS with these SNPs remained significant after performing Bonferroni correction. Moreover, we identified the effect of SMAD2 rs11082639 on high waist circumference. We also found that an interaction between the SMAD2 rs11082639 and TGFBR2 rs3773651 SNPs influenced MetS. Our findings indicated that the TGF-β signaling pathway-associated genes of SMAD2 and TGFBR2 may contribute to the risk of MetS independently and through gene-gene interactions."	"γ-Secretase inhibitor reduces immunosuppressive cells and enhances tumour immunity in head and neck squamous cell carcinoma. Immune evasion is a hallmark feature of cancer, and it plays an important role in tumour initiation and progression. In addition, tumour immune evasion severely hampers the desired antitumour effect in multiple cancers. In this study, we aimed to investigate the role of the Notch pathway in immune evasion in the head and neck squamous cell carcinoma (HNSCC) microenvironment. We first demonstrated that Notch1 signaling was activated in a Tgfbr1/Pten-knockout HNSCC mouse model. Notch signaling inhibition using a γ-secretase inhibitor (GSI-IX, DAPT) decreased tumour burden in the mouse model after prophylactic treatment. In addition, flow cytometry analysis indicated that Notch signaling inhibition reduced the sub-population of myeloid-derived suppressor cells (MDSCs), tumour-associated macrophages (TAMs) and regulatory T cells (Tregs), as well as immune checkpoint molecules (PD1, CTLA4, TIM3 and LAG3), in the circulation and in the tumour. Immunohistochemistry (IHC) of human HNSCC tissues demonstrated that elevation of the Notch1 downstream target HES1 was correlated with MDSC, TAM and Treg markers and with immune checkpoint molecules. These results suggest that modulating the Notch signaling pathway may decrease MDSCs, TAMs, Tregs and immune checkpoint molecules in HNSCC."	"Analysis of miRNA expression profiling in human umbilical vein endothelial cells affected by heat stress. To investigate the regulation of endothelial cell (EC) microRNAs (miRNAs) altered by heat stress, miRNA microarrays and bioinformatics methods were used to determine changes in miRNA profiles and the pathophysiological characteristics of differentially expressed miRNAs. A total of 31 differentially expressed miRNAs were identified, including 20 downregulated and 11 upregulated miRNAs. Gene Ontology (GO) enrichment analysis revealed that the validated targets of the differentially expressed miRNAs were significantly enriched in gene transcription regulation. The pathways were also significantly enriched in the Kyoto Encyclopedia of Genes and Genomes analysis, and most were cancer-related, including the mitogen-activated protein kinase signaling pathway, pathways involved in cancer, the Wnt signaling pathway, the Hippo signaling pathway, proteoglycans involved in cancer and axon guidance. The miRNA-gene and miRNA‑GO network analyses revealed several hub miRNAs, genes and functions. Notably, miR‑3613-3p played a dominant role in both networks. MAP3K2, MGAT4A, TGFBR1, UBE2R2 and SMAD4 were most likely to be controlled by the altered miRNAs in the miRNA-gene network. The miRNA‑GO network analysis revealed significantly complicated associations between miRNAs and different functions, and that the significantly enriched functions targeted by the differentially expressed miRNAs were mostly involved in regulating gene transcription. The present study demonstrated that miRNAs are involved in the pathophysiology of heat-treated ECs. Understanding the functions of miRNAs may provide novel insights into the molecular mechanisms underlying the heat‑induced pathophysiology of ECs."	"MicroRNA profiling reveals dysregulated microRNAs and their target gene regulatory networks in cemento-ossifying fibroma. Cemento-ossifying fibroma (COF) is a benign fibro-osseous neoplasm of uncertain pathogenesis, and its treatment results in morbidity. MicroRNAs (miRNA) are small non-coding RNAs that regulate gene expression and may represent therapeutic targets. The purpose of the study was to generate a comprehensive miRNA profile of COF compared to normal bone. Additionally, the most relevant pathways and target genes of differentially expressed miRNA were investigated by in silico analysis. Nine COF and ten normal bone samples were included in the study. miRNA profiling was carried out by using TaqMan® OpenArray® Human microRNA panel containing 754 validated human miRNAs. We identified the most relevant miRNAs target genes through the leader gene approach, using STRING and Cytoscape software. Pathways enrichment analysis was performed using DIANA-miRPath. Eleven miRNAs were downregulated (hsa-miR-95-3p, hsa-miR-141-3p, hsa-miR-205-5p, hsa-miR-223-3p, hsa-miR-31-5p, hsa-miR-944, hsa-miR-200b-3p, hsa-miR-135b-5p, hsa-miR-31-3p, hsa-miR-223-5p and hsa-miR-200c-3p), and five were upregulated (hsa-miR-181a-5p, hsa-miR-181c-5p, hsa-miR-149-5p, hsa-miR-138-5p and hsa-miR-199a-3p) in COF compared to normal bone. Eighteen common target genes were predicted, and the leader genes approach identified the following genes involved in human COF: EZH2, XIAP, MET and TGFBR1. According to the biology of bone and COF, the most relevant KEGG pathways revealed by enrichment analysis were proteoglycans in cancer, miRNAs in cancer, pathways in cancer, p53-, PI3K-Akt-, FoxO- and TGF-beta signalling pathways, which were previously found to be differentially regulated in bone neoplasms, odontogenic tumours and osteogenesis. miRNA dysregulation occurs in COF, and EZH2, XIAP, MET and TGFBR1 are potential targets for functional analysis validation."	"TGFβ superfamily signaling and uterine decidualization. Decidualization is an intricate biological process where extensive morphological, functional, and genetic changes take place in endometrial stromal cells to support the development of an implanting blastocyst. Deficiencies in decidualization are associated with pregnancy complications and reproductive diseases. Decidualization is coordinately regulated by steroid hormones, growth factors, and molecular and epigenetic mechanisms. Transforming growth factor β (TGFβ) superfamily signaling regulates multifaceted reproductive processes. However, the role of TGFβ signaling in uterine decidualization is poorly understood. Recent studies using the Cre-LoxP strategy have shed new light on the critical role of TGFβ signaling machinery in uterine decidualization. Herein, we focus on reviewing exciting findings from studies using both mouse genetics and in vitro cultured human endometrial stromal cells. We also delve into emerging mechanisms that underlie decidualization, such as non-coding RNAs and epigenetic modifications. We envision that future studies aimed at defining the interrelationship among TGFβ signaling circuitries and their potential interactions with epigenetic modifications/non-coding RNAs during uterine decidualization will open new avenues to treat pregnancy complications associated with decidualization deficiencies."	"Serelaxin inhibits differentiation and fibrotic behaviors of cardiac fibroblasts by suppressing ALK-5/Smad2/3 signaling pathway. Serelaxin, a recombinant form of human relaxin-2, is currently regarded as a novel drug for treatment of acute heart failure. However, whether therapeutic effects of serelaxin are achieved by inhibiting cardiac fibrosis remains unclear. In this study, we investigate effects of serelaxin on inhibiting cardiac fibrosis. Cardiac fibroblasts (CFs) were isolated from the hearts of adult rats. Effects of serelaxin on differentiation of CFs towards myofibroblasts (MFs) and their fibrotic behaviors after induction with TGF-β1 were examined. Synthesis and degradation of collagens, secretion of IL-10, and expression of ALK-5 and p-Smad2/3 of TGF-β1-induced cells were assessed after treatment with serelaxin. Serelaxin inhibited differentiation of TGF-β1-induced CFs towards MFs, and reduced proliferation and migration of the induced cells. Moreover, serelaxin down-regulated expression of collagen I/III and TIMP-2, and up-regulated expression of MMP-2 and MMP-9 in the cells. After treatment with serelaxin, activity of MMP-2 and MMP-9 and secretion of IL-10 increased, expression of ALK-5 and the level of Smad2/3 phosphorylation was reduced significantly. These results suggest that serelaxin can inhibit differentiation of TGF-β1-induced CFs towards MFs, reduce production of collagens by suppressing ALK-5/Smad2/3 signaling pathway, and enhance extracellular matrix degradation by increasing MMP-2/TIMP-2 ratio and IL-10 secretion. Serelaxin may be a potential therapeutic drug for inhibiting cardiac fibrosis."	"Microglial Activation Results in Inhibition of TGF-β-Regulated Gene Expression. Chronic inflammation mediated by persistent microglial activation is associated with the pathogenesis of neurodegenerative diseases. The mechanisms underlying chronic microglial activation are poorly understood. We have previously shown that anti-inflammatory TGF-β signaling is inhibited in LPS-treated microglia. In this study, we assessed whether different disease-related microglial activators could downregulate TGF-β induction of gene expression. We examined the effects of amyloid β (Aβ) (1-42)- or heat-killed Listeria monocytogenes (HKLM) on the TGF-β-regulated gene expression in primary rat microglia. We found that Aβ (1-42) oligomers and HKLM, in addition to LPS, suppressed TGF-β-mediated induction of gene expression in part through reducing expression of TβR1 mRNA encoding the TGF-β receptor 1 in primary microglia. Aβ (1-42) and LPS also prevented induction of TGF-β-induced genes in primary microglia. Additionally, Aβ (1-42) rescued primary microglia from TGF-β-mediated cell death without increasing cell proliferation. Blockage of NFκB signaling, but not the ERK or IRF3 pathways, inhibited Aβ (1-42)- and LPS-mediated reduction of TβR1 mRNA. Finally, LPS and Aβ (1-42) induced transient upregulation of mRNAs encoding SnoN and Bambi, inhibitors of TGF-β signaling. Our data indicate that one mechanism through which activators may prolong microglial stimulation is through direct inhibition of anti-inflammatory signaling. A more detailed understanding of the interaction between inflammatory and anti-inflammatory pathways may reveal potential targets for ameliorating chronic inflammation and hence speed the development of therapeutics to address neurodegenerative diseases."	"Dexamethasone mediates pancreatic cancer progression by glucocorticoid receptor, TGFβ and JNK/AP-1. Glucocorticoids such as dexamethasone are widely co-prescribed with cytotoxic therapy because of their proapoptotic effects in lymphoid cancer, reduction of inflammation and edema and additional benefits. Concerns about glucocorticoid-induced therapy resistance, enhanced metastasis and reduced survival of patients are largely not considered. We analyzed dexamethasone-induced tumor progression in three established and one primary human pancreatic ductal adenocarcinoma (PDA) cell lines and in PDA tissue from patients and xenografts by FACS and western blot analysis, immunohistochemistry, MTT and wound assay, colony and spheroid formation, EMSA and in vivo tumor growth and metastasis of tumor xenografts on chicken eggs and mice. Dexamethasone in concentrations observed in plasma of patients favored epithelial-mesenchymal transition, self-renewal potential and cancer progression. Ras/JNK signaling, enhanced expression of TGFβ, vimentin, Notch-1 and SOX-2 and the inhibition of E-cadherin occurred. This was confirmed in patient and xenograft tissue, where dexamethasone induced tumor proliferation, gemcitabine resistance and metastasis. Inhibition of each TGFβ receptor-I, glucocorticoid receptor or JNK signaling partially reversed the dexamethasone-mediated effects, suggesting a complex signaling network. These data reveal that dexamethasone mediates progression by membrane effects and binding to glucocorticoid receptor."	"TGF-β1-VEGF-A pathway induces neoangiogenesis with peritoneal fibrosis in patients undergoing peritoneal dialysis. The characteristic features of chronic peritoneal injury with peritoneal dialysis (PD) are submesothelial fibrosis and neoangiogenesis. Transforming growth factor (TGF)β and vascular endothelial growth factor (VEGF)-A are the main mediators of fibrosis and neoangiogenesis, respectively; however, the effect of the interaction between them on the peritoneum is not well known. In this study, we investigated the relationship between TGF-β1 and VEGF-A in inducing peritoneal fibrosis by use of human tissues and dialysate, cultured cells, and animal models. The VEGF-A concentration correlated with the dialysate-to-plasma ratio of creatinine (D/P Cr) ( P &lt; 0.001) and TGF-β1 ( P &lt; 0.001) in human PD effluent. VEGF-A mRNA levels increased significantly in the peritoneal tissues of human ultrafiltration failure (UFF) patients and correlated with number of vessels ( P &lt; 0.01) and peritoneal thickness ( P &lt; 0.001). TGF-β1 increased VEGF-A production in human mesothelial cell lines and fibroblast cell lines, and TGF-β1-induced VEGF-A was suppressed by TGF-β receptor I (TGFβR-I) inhibitor. Incremental peak values of VEGF-A mRNA stimulated by TGF-β1 in human cultured mesothelial cells derived from PD patients with a range of peritoneal membrane functions correlated with D/P Cr ( P &lt; 0.05). To evaluate the regulatory mechanisms of VEGF-A and neoangiogenesis in vivo, we administered TGFβR-I inhibitor intraperitoneally in a rat chlorhexidine-induced peritoneal injury (CG) model. TGFβR-I inhibitor administration in the CG model decreased peritoneal thickness ( P &lt; 0.001), the number of vessels ( P &lt; 0.001), and VEGF-A levels ( P &lt; 0.05). These results suggest that neoangiogenesis is associated with fibrosis through the TGF-β1-VEGF-A pathway in mesothelial cells and fibroblasts. These findings are important when considering the strategy for management of UFF in PD patients."	"Role of the Transforming Growth Factor-β in regulating hepatocellular carcinoma oxidative metabolism. Transforming Growth Factor beta (TGF-β) induces tumor cell migration and invasion. However, its role in inducing metabolic reprogramming is poorly understood. Here we analyzed the metabolic profile of hepatocellular carcinoma (HCC) cells that show differences in TGF-β expression. Oxygen consumption rate (OCR), extracellular acidification rate (ECAR), metabolomics and transcriptomics were performed. Results indicated that the switch from an epithelial to a mesenchymal/migratory phenotype in HCC cells is characterized by reduced mitochondrial respiration, without significant differences in glycolytic activity. Concomitantly, enhanced glutamine anaplerosis and biosynthetic use of TCA metabolites were proved through analysis of metabolite levels, as well as metabolic fluxes from U-13C6-Glucose and U-13C5-Glutamine. This correlated with increase in glutaminase 1 (GLS1) expression, whose inhibition reduced cell migration. Experiments where TGF-β function was activated with extracellular TGF-β1 or inhibited through TGF-β receptor I silencing showed that TGF-β induces a switch from oxidative metabolism, coincident with a decrease in OCR and the upregulation of glutamine transporter Solute Carrier Family 7 Member 5 (SLC7A5) and GLS1. TGF-β also regulated the expression of key genes involved in the flux of glycolytic intermediates and fatty acid metabolism. Together, these results indicate that autocrine activation of the TGF-β pathway regulates oxidative metabolism in HCC cells."	"mTORC1 loss impairs epidermal adhesion via TGF-β/Rho kinase activation. Despite its central position in oncogenic intracellular signaling networks, the role of mTORC1 in epithelial development has not been studied extensively in vivo. Here, we have used the epidermis as a model system to elucidate the cellular effects and signaling feedback sequelae of mTORC1 loss of function in epithelial tissue. In mice with conditional epidermal loss of the mTORC1 components Rheb or Rptor, mTORC1 loss of function unexpectedly resulted in a profound skin barrier defect with epidermal abrasions, blistering, and early postnatal lethality, due to a thinned epidermis with decreased desmosomal protein expression and incomplete biochemical differentiation. In mice with mTORC1 loss of function, we found that Rho kinase (ROCK) signaling was constitutively activated, resulting in increased cytoskeletal tension and impaired cell-cell adhesion. Inhibition or silencing of ROCK1 was sufficient to rescue keratinocyte adhesion and biochemical differentiation in these mice. mTORC1 loss of function also resulted in marked feedback upregulation of upstream TGF-β signaling, triggering ROCK activity and its downstream effects on desmosomal gene expression. These findings elucidate a role for mTORC1 in the regulation of epithelial barrier formation, cytoskeletal tension, and cell adhesion, underscoring the complexity of signaling feedback following mTORC1 inhibition."	"A Single Sphingomyelin Species Promotes Exosomal Release of Endoglin into the Maternal Circulation in Preeclampsia. Preeclampsia (PE), an hypertensive disorder of pregnancy, exhibits increased circulating levels of a short form of the auxillary TGF-beta (TGFB) receptor endoglin (sENG). Until now, its release and functionality in PE remains poorly understood. Here we show that ENG selectively interacts with sphingomyelin(SM)-18:0 which promotes its clustering with metalloproteinase 14 (MMP14) in SM-18:0 enriched lipid rafts of the apical syncytial membranes from PE placenta where ENG is cleaved by MMP14 into sENG. The SM-18:0 enriched lipid rafts also contain type 1 and 2 TGFB receptors (TGFBR1 and TGFBR2), but not soluble fms-like tyrosine kinase 1 (sFLT1), another protein secreted in excess in the circulation of women with PE. The truncated ENG is then released into the maternal circulation via SM-18:0 enriched exosomes together with TGFBR1 and 2. Such an exosomal TGFB receptor complex could be functionally active and block the vascular effects of TGFB in the circulation of PE women."	"Inhibition of the TGF-β1/Smad signaling pathway protects against cartilage injury and osteoarthritis in a rat model. Transforming growth factor-β1 (TGF-β1) in osteoblastic cells triggers pathological changes observed in osteoarthritis (OA). Thus, we hypothesized that the inhibition of the TGF-β1/Smad signaling pathway could act to protect against cartilage injury in rats with OA. After establishment of rat models induced by papain and L-cysteine, rats were subsequently assigned into the TβRI inhibitors, normal control (NC) and OA model groups. RT-qPCR and western blotting were performed to determine mRNA and protein expressions of TGFβ1, Smad2, Smad3 and Activin receptor-like kinase 5 (ALK5), respectively. Immunofluorescence staining was used to detect the expression of collagen X (COLX). Immunohistochemical staining was used to determine the expression of the specific transcription factor Osterix as well as TGF-β1 related factors. Increased expression levels of TGFβ1, Smad2, Smad3 and ALK5in the OA model group were higher than those in the TβRI inhibitors group. Compared with the NC group, the OA model groups exhibited elevated expressions of TGF-β1, p-Smad2/3 and ALK5 in the TGF-β1 signaling pathway, and elevated numbers of COLX and Osterix positive cells. The rats in the TβRI inhibitors group had decreased expressions of p-Smad2/3 and ALK5, as well as decreased COLX and Osterix positive cells when compared with OA model group. However, these levels were still higher than that of the NC group. Our findings suggested that up-regulation of TGF-β1 inhibited the TGF-β1/Smad signaling pathway acting to alleviate OA, thus highlighting the potential of the TGF-β1/Smad signaling pathway as a therapeutic target for treatment of OA."	"TGFβR signalling controls CD103<sup>+</sup>CD11b<sup>+</sup> dendritic cell development in the intestine. CD103<sup>+</sup>CD11b<sup>+</sup> dendritic cells (DCs) are unique to the intestine, but the factors governing their differentiation are unclear. Here we show that transforming growth factor receptor 1 (TGFβR1) has an indispensable, cell intrinsic role in the development of these cells. Deletion of Tgfbr1 results in markedly fewer intestinal CD103<sup>+</sup>CD11b<sup>+</sup> DCs and a reciprocal increase in the CD103<sup>-</sup>CD11b<sup>+</sup> dendritic cell subset. Transcriptional profiling identifies markers that define the CD103<sup>+</sup>CD11b<sup>+</sup> DC lineage, including CD101, TREM1 and Siglec-F, and shows that the absence of CD103<sup>+</sup>CD11b<sup>+</sup> DCs in CD11c-Cre.Tgfbr1 <sup>fl/fl</sup> mice reflects defective differentiation from CD103<sup>-</sup>CD11b<sup>+</sup> intermediaries, rather than an isolated loss of CD103 expression. The defect in CD103<sup>+</sup>CD11b<sup>+</sup> DCs is accompanied by reduced generation of antigen-specific, inducible FoxP3<sup>+</sup> regulatory T cells in vitro and in vivo, and by reduced numbers of endogenous Th17 cells in the intestinal mucosa. Thus, TGFβR1-mediated signalling may explain the tissue-specific development of these unique DCs.Developmental cues for the different dendritic cell (DC) subsets in the intestine are yet to be defined. Here the authors show that TGFβR1 signalling is needed for development of CD103<sup>+</sup>CD11b<sup>+</sup> intestinal DCs from CD103<sup>-</sup>CD11b<sup>+</sup> cells and that they contribute to the generation of Th17 and regulatory T cells."	"Associations of TGFBR1 and TGFBR2 gene polymorphisms with the risk of hypospadias: a case-control study in a Chinese population. This case-control study investigated the association of transforming growth factor-β (TGF-β) receptor type I and II (TGFBR1 and TGFBR2) gene polymorphisms with the risk of hypospadias in a Chinese population. One hundred and sixty two patients suffering from hypospadias were enrolled as case group and 165 children who underwent circumcision were recruited as control group. Single nucleotide polymorphisms (SNPs) in TGFBR1 and TGFBR2 genes were selected on the basis of genetic data obtained from HapMap. PCR-restriction fragment length polymorphism (PCR-RFLP) was performed to identify TGFBR1 and TGFBR2 gene polymorphisms and analyze genotype distribution and allele frequency. Logistic regression analysis was conducted to estimate the risk factors for hypospadias. No significant difference was found concerning the genotype and allele frequencies of TGFBR1 rs4743325 polymorphism between the case and control groups. However, genotype and allele frequencies of TGFBR2 rs6785358 in the case group were significantly different in contrast with those in the control group. Patients carrying the G allele of TGFBR2 rs6785358 polymorphism exhibited a higher risk of hypospadias compared with the patients carrying the A allele (P&lt;0.05). The TGFBR2 rs6785358 genotype was found to be significantly related to abnormal pregnancy and preterm birth (both P&lt;0.05). The frequency of TGFBR2 rs6785358 GG genotype exhibited significant differences amongst patients suffering from four different pathological types of hypospadias. Logistic regression analysis revealed that preterm birth, abnormal pregnancy, and TGFBR2 rs6785358 were the independent risk factors for hypospadias. Our study provides evidence that TGFBR2 rs6785358 polymorphism might be associated with the risk of hypospadias."	"5-Aza-2'-deoxycytidine induces human Tenon's capsule fibroblasts differentiation and fibrosis by up-regulating TGF-β type I receptor. The principle reason of high failure rate of glaucoma filtration surgery is the loss of filtration function caused by postoperative scar formation. We investigated the effects of 5-aza-2'-deoxycytidine (5-Aza-dc), a DNA methyltransferases inhibitor, on human Tenon's capsule fibroblasts (HTFs) differentiation and fibrosis and its mechanism of action, especially in relation to transforming growth factor (TGF)-β1 signaling. TGF-β1 was used to induce differentiation of cultured HTFs. 5-Aza-dc suppressed DNA methyltransferases (DNMTs) activity 6 h after treatment with a course corresponding to that of TGF-β1-induced reduction of DNMT activity without affecting cell viability as measured by Cell Counting Kit-8 assay. 5-Aza-dc also reduced DNMT1 and DNMT3a protein expression from 24 to 48 h. HTFs migration evaluated by scratch-wound assay were significantly increased 24 h after 5-Aza-dc treatment, a time course similar to that of TGF-β1. Treatment with 5-Aza-dc significantly increased the mRNA and protein levels of α-smooth muscle actin (α-SMA), collagen-1A1 (Col1A1), fibronectin (FN) and TGF-β type I receptor (TGFβRI). Furthermore, the effects of 5-Aza-dc on DNMT activity suppression, cell migration, and fibrosis were all reversed by a TGFβRI inhibitor- SB-431542. Meanwhile, knockdown of DNMT1 upregulated TGFβRI expression and had the same fibrosis-inducing effect in HTFs, which was also inhibited by SB-431542. Thus, the results indicate that DNA hypomethylation induces HTFs differentiation and fibrosis through up-regulation of TGFβRI. DNA methylation status plays an important role in subconjunctival wound healing."	"Fibroblast-specific TGF-β-Smad2/3 signaling underlies cardiac fibrosis. The master cytokine TGF-β mediates tissue fibrosis associated with inflammation and tissue injury. TGF-β induces fibroblast activation and differentiation into myofibroblasts that secrete extracellular matrix proteins. Canonical TGF-β signaling mobilizes Smad2 and Smad3 transcription factors that control fibrosis by promoting gene expression. However, the importance of TGF-β-Smad2/3 signaling in fibroblast-mediated cardiac fibrosis has not been directly evaluated in vivo. Here, we examined pressure overload-induced cardiac fibrosis in fibroblast- and myofibroblast-specific inducible Cre-expressing mouse lines with selective deletion of the TGF-β receptors Tgfbr1/2, Smad2, or Smad3. Fibroblast-specific deletion of Tgfbr1/2 or Smad3, but not Smad2, markedly reduced the pressure overload-induced fibrotic response as well as fibrosis mediated by a heart-specific, latency-resistant TGF-β mutant transgene. Interestingly, cardiac fibroblast-specific deletion of Tgfbr1/2, but not Smad2/3, attenuated the cardiac hypertrophic response to pressure overload stimulation. Mechanistically, loss of Smad2/3 from tissue-resident fibroblasts attenuated injury-induced cellular expansion within the heart and the expression of fibrosis-mediating genes. Deletion of Smad2/3 or Tgfbr1/2 from cardiac fibroblasts similarly inhibited the gene program for fibrosis and extracellular matrix remodeling, although deletion of Tgfbr1/2 uniquely altered expression of an array of regulatory genes involved in cardiomyocyte homeostasis and disease compensation. These findings implicate TGF-β-Smad2/3 signaling in activated tissue-resident cardiac fibroblasts as principal mediators of the fibrotic response."	"Fibroblast-specific inhibition of TGF-β1 signaling attenuates lung and tumor fibrosis. TGF-β1 signaling is a critical driver of collagen accumulation and fibrotic disease but also a vital suppressor of inflammation and epithelial cell proliferation. The nature of this multifunctional cytokine has limited the development of global TGF-β1 signaling inhibitors as therapeutic agents. We conducted phenotypic screens for small molecules that inhibit TGF-β1-induced epithelial-mesenchymal transition without immediate TGF-β1 receptor (TβR) kinase inhibition. We identified trihydroxyphenolic compounds as potent blockers of TGF-β1 responses (IC50 ~50 nM), Snail1 expression, and collagen deposition in vivo in models of pulmonary fibrosis and collagen-dependent lung cancer metastasis. Remarkably, the functional effects of trihydroxyphenolics required the presence of active lysyl oxidase-like 2 (LOXL2), thereby limiting effects to fibroblasts or cancer cells, the major LOXL2 producers. Mechanistic studies revealed that trihydroxyphenolics induce auto-oxidation of a LOXL2/3-specific lysine (K731) in a time-dependent reaction that irreversibly inhibits LOXL2 and converts the trihydrophenolic to a previously undescribed metabolite that directly inhibits TβRI kinase. Combined inhibition of LOXL2 and TβRI activities by trihydrophenolics resulted in potent blockade of pathological collagen accumulation in vivo without the toxicities associated with global inhibitors. These findings elucidate a therapeutic approach to attenuate fibrosis and the disease-promoting effects of tissue stiffness by specifically targeting TβRI kinase in LOXL2-expressing cells."	"NLRP3 inflammasome activation promotes inflammation-induced carcinogenesis in head and neck squamous cell carcinoma. NLRP3 inflammasome acts as a danger signal sensor that triggers and coordinates the inflammatory response. However, the roles of NLRP3 inflammasome in the tumorigenesis and development of cancer stem cells (CSCs) of squamous cell carcinoma of the head and neck (SCCHN) remain ambiguous. In our study, tissue microarrays, ELISA, sphere-forming assay, colony formation assay and Western blot analysis were performed to evaluate the effect of NLRP3 inflammasome on the development of CSCs in human SCCHN tissue specimen, cell lines, and transgenic mouse SCCHN model. The components of NLRP3 inflammasome, namely, NLRP3, ASC, Caspase-1, and IL-18 were correlated with CSCs markers BMI1, ALDH1 and CD44 in human SCCHN specimens. Moreover, NLRP3, Caspase-1, IL-1β, and IL-18 were highly expressed in SCCHN cell lines. NLRP3 inflammasome activated by LPS and ATP promoted sphere-forming and colony formation capacities along with an upregulation of BMI1, ALDH1 and CD44. In addition, NLRP3 inflammasome blockade by NLRP3 inhibitor MCC950 reduced sphere and colony number, also decreased the expression of BMI1, ALDH1 and CD44 in SCCHN cell lines. Expression of NLRP3, ASC, Caspase-1, IL-1β, IL-18, BMI1, ALDH1 and CD44 was upregulated in Tgfbr1/Pten 2cKO mouse SCCHN model, and NLRP3 inflammasome expression was closely related to those CSCs makers in mice SCCHN. However, MCC950 treatment reduced the expression of NLRP3 inflammasome, CSCs markers BMI1, ALDH1 and CD44 in Tgfbr1/Pten 2cKO mice SCCHN. In addition, blockade of NLRP3 inflammasome can also delayed the tumor-burdened speed in SCCHN mice. Our study demonstrates that NLRP3 inflammasome was upregulated and associated with the carcinogenesis and CSCs self-renewal activation in SCCHN. NLRP3 inflammasome can be a potential target in the development of novel approaches for head and neck squamous cell carcinoma therapy."	"Mechanism of chimeric vaccine stimulation of indoleamine 2,3-dioxygenase biosynthesis in human dendritic cells is independent of TGF-β signaling. Cholera toxin B subunit fusion to autoantigens such as proinsulin (CTB-INS) down regulate dendritic cell (DC) activation and stimulate synthesis of DC immunosuppressive cytokines. Recent studies of CTB-INS induction of immune tolerance in human DCs indicate that increased biosynthesis of indoleamine 2,3-dioxygenase (IDO1) may play an important role in CTB-INS vaccine suppression of DC activation. Studies in murine models suggest a role for transforming growth factor beta (TGF-β) in the stimulation of IDO1 biosynthesis, for the induction of tolerance in DCs. Here, we investigated the contribution of TGF-β superfamily proteins to CTB-INS induction of IDO1 biosynthesis in human monocyte-derived DCs (moDCs). We show that CTB-INS upregulates the level of TGF-β1, activin-A and the TGF-β activator, integrin αvβ8 in human DCs. However, inhibition of endogenous TGF-β, activin-A or addition of biologically active TGF-β1, and activin-A, did not inhibit or stimulate IDO1 biosynthesis in human DCs treated with CTB-INS. While inhibition with the kinase inhibitor, RepSox, blocked SMAD2/3 phosphorylation and diminished IDO1 biosynthesis in a concentration dependent manner. Specific blocking of the TGF-β type 1 kinase receptor with SB-431542 did not arrest IDO1 biosynthesis, suggesting the involvement of a different kinase pathway other than TGF-β type 1 receptor kinase in CTB-INS induction of IDO1 in human moDCs. Together, our experimental findings identify additional immunoregulatory proteins induced by the CTB-INS fusion protein, suggesting CTB-INS may utilize multiple mechanisms in the induction of tolerance in human moDCs."	"Investigating the mechanisms of papillary thyroid carcinoma using transcriptome analysis. As the predominant thyroid cancer, papillary thyroid cancer (PTC) accounts for 75‑85% of thyroid cancer cases. This research aimed to investigate transcriptomic changes and key genes in PTC. Using RNA‑sequencing technology, the transcriptional profiles of 5 thyroid tumor tissues and 5 adjacent normal tissues were obtained. The single nucleotide polymorphisms (SNPs) were identified by SAMtools software and then annotated by ANNOVAR software. After differentially expressed genes (DEGs) were selected by edgR software, they were further investigated by enrichment analysis, protein domain analysis, and protein‑protein interaction (PPI) network analysis. Additionally, the potential gene fusion events were predicted using FusionMap software. A total of 70,172 SNPs and 2,686 DEGs in the tumor tissues, as well as 83,869 SNPs in the normal tissues were identified. In the PPI network, fibronectin 1 (FN1; degree=31) and transforming growth factor β receptor 1 (TGFβR1; degree=22) had higher degrees. A total of 7 PPI pairs containing the non‑synonymous risk SNP loci in the interaction domains were identified. Particularly, the interaction domains involved in the interactions of FN1 and 5 other proteins (such as FN1‑tenascin C, TNC) had non‑synonymous risk SNP loci. Furthermore, 11 and 4 gene fusion events were identified in all of the tumor tissues and normal tissues, respectively. Additionally, the NK2 homeobox 1‑surfactant associated 3 (NKX2‑1‑SFTA3) gene fusion was identified in both tumor and normal tissues. These results indicated that TGFβR1 and the NKX2‑1‑SFTA3 gene fusion may be involved in PTC. Furthermore, FN1 and TNC containing the non‑synonymous risk SNP loci might serve a role in PTC by interacting with each other."	"Role of TGFBR1 and TGFBR2 genetic variants in Marfan syndrome. Genetic variants in transforming growth factor beta (TGF-β) receptors type 1 (TGFBR1) and type 2 (TGFBR2) genes have been associated with different hereditary connective tissue disorders sharing thoracic aortic aneurysm and dissection (TAA/D). Mutations in both TGFBR1/2 genes have been described in patients with TAA/D and Marfan syndrome (MFS), and they are associated consistently with Loeys-Dietz syndrome. The existing literature shows discordant data resulting from mutational screening of TGFBR1/2 genes in patients with MFS. The aim of the study was to investigate the role of TGFBR1/2 genetic variants in determining and/or modulating MFS clinical phenotype. We investigated 75 unrelated patients with MFS referred to the Center for Marfan Syndrome and Related Disorders (Careggi University Hospital, Florence) who were subjected to FBN1 and TGFBR1/2 Sanger mutational screening. Forty-seven patients with MFS (63%) carried a pathogenetic FBN1 mutation. No pathogenetic mutations were detected in TGFBR1/2 genes. Ten common polymorphisms were identified in TGFBR2 and 6 in TGFBR1. Their association with cardiovascular manifestations was evaluated. Carriers of the A allele of rs11466512, delA allele of c.383delA or delT allele of c.1256-15del1T polymorphisms had a trend toward or significantly reduced z-scores (median [interquartile range (IQR)], 2.2 [1.13-4.77]; 2.1 [1.72-3.48]; 2.5 [1.85-3.86]) with respect to homozygous patients with wild-type MFS (median [IQR], 4.20 [2.39-7.25]; 3.9 [2.19-7.00]; 3.9 [2.14-6.93]). Carriers of the A allele of the rs2276767 polymorphism showed a trend toward increased z-score (median [IQR], 4.9 [2.14-7.16]) with respect to patients with wild-type MFS (median [IQR], 3.3 [1.75-5.45]). The protective effect of TGFBR1/2 genetic score including all the 4 variants was also evaluated. Patients with MFS with two or more protective alleles included in the score had statistically significant reduced aortic z-scores (median [IQR], 2.20 [1.48-3.37]) with respect to patients with 1 or no protective alleles (median [IQR], 4.20 [2.48-7.12]; P = .007). Patients with severe aortic manifestations (aortic z-score ≥ 2 or aortic surgery) showed a significantly lower prevalence of subjects with two or more protective alleles included in the genetic score (29.7%) than patients with no or milder cardiovascular involvement (63.6%; P = .029). The genetic score protective effect on global aortic manifestations severity (aortic z-score ≥ 2 or aortic surgery) was also observed at the logistic regression analysis adjusted for the presence of FBN1 gene mutations (odds ratio, 0.21; 95% CI, 0.05-0.84; P = .028). In conclusion, our data reappraise the role of TGFBR1 and TGFBR2 as major genes in patients with MFS, and suggest that TGFBR1/2 genetic variants (in particular when evaluated as a burden by score) might play a role in modulating the severity of cardiovascular manifestation in MFS."	"An X-linked Myh11-CreER<sup>T2</sup> mouse line resulting from Y to X chromosome-translocation of the Cre allele. The Myh11-CreER<sup>T2</sup> mouse line (Cre<sup>+</sup> ) has gained increasing application because of its high lineage specificity relative to other Cre drivers targeting smooth muscle cells (SMCs). This Cre allele, however, was initially inserted into the Y chromosome (X/Y<sup>Cre+</sup> ), which excluded its application in female mice. Our group established a Cre<sup>+</sup> colony from male ancestors. Surprisingly, genotype screening identified female carriers that stably transmitted the Cre allele to the following generations. Crossbreeding experiments revealed a pattern of X-linked inheritance for the transgene (k &gt; 1000), indicating that these female carries acquired the Cre allele through a mechanism of Y to X chromosome translocation. Further characterization demonstrated that in hemizygous X/X<sup>Cre+</sup> mice Cre activity was restricted to a subset arterial SMCs, with Cre expression in arteries decreased by 50% compared to X/Y<sup>Cre+</sup> mice. This mosaicism, however, diminished in homozygous X<sup>Cre+</sup> /X<sup>Cre+</sup> mice. In a model of aortic aneurysm induced by a SMC-specific Tgfbr1 deletion, the homozygous X<sup>Cre+</sup> /X<sup>Cre+</sup> Cre driver unmasked the aortic phenotype that is otherwise subclinical when driven by the hemizygous X/X<sup>Cre+</sup> Cre line. In conclusion, the Cre allele carried by this female mouse line is located on the X chromosome and subjected to X-inactivation. The homozygous X<sup>Cre+</sup> /X<sup>Cre+</sup> mice produce uniform Cre activity in arterial SMCs."	"Transforming Growth Factor-β1/Activin Receptor-like Kinase 5-Mediated Cell Migration is Dependent on the Protein Proteinase-Activated Receptor 2 but not on Proteinase-Activated Receptor 2-Stimulated Gq-Calcium Signaling. Transforming growth factor-β (TGF-β), serine proteinases such as trypsin, and proteinase-activated receptor 2 (PAR2) promote tumor development by stimulating invasion and metastasis. Previously, we found that in cancer cells derived from pancreatic ductal adenocarcinoma (PDAC) PAR2 protein is necessary for TGF-β1-dependent cell motility. Here, we show in the same cells that, conversely, the type I TGF-β receptor activin receptor-like kinase 5 is dispensable for trypsin and PAR2 activating peptide (PAR2-AP)-induced migration. To reveal whether Gq-calcium signaling is a prerequisite for PAR2 to enhance TGF-β signaling, we investigated the effects of PAR2-APs, PAR2 mutation and PAR2 inhibitors on TGF-β1-induced migration, reporter gene activity, and Smad activation. Stimulation of cells with PAR2-AP alone failed to enhance basal or TGF-β1-induced C-terminal phosphorylation of Smad3, Smad-dependent activity of a luciferase reporter gene, and cell migration. Consistently, in complementary loss of function studies, abrogation of the PAR2-Gq-calcium signaling arm failed to suppress TGF-β1-induced cell migration, reporter gene activity, and Smad3 activation. Together, our findings suggest that the calcium-regulating motif is not required for PAR2 to synergize with TGF-β1 to promote cell motility. Additional experiments in PDAC cells revealed that PAR2 and TGF-β1 synergy may involve TGF-β1 induction of enzymes that cause autocrine cleavage/activation of PAR2, possibly through a biased signaling function. Our results suggest that although reducing PAR2 protein expression may potentially block TGF-β's prooncogenic function, inhibiting PAR2-Gq-calcium signaling alone would not be sufficient to achieve this effect."	"Gross deletions in FBN1 results in variable phenotypes of Marfan syndrome. A mutation in FBN1 is primarily attributed to Marfan syndrome (MFS). So far, &gt;1800 unique FBN1 mutations have been identified, with the vast majority being single-nucleotide substitutions, small deletions, and insertions. The rearrangement of large fragments of FBN1 accounts for only 1.7% of all variants. The aim of this study was to investigate the characteristics of large genomic rearrangements in FBN1 among MFS patients and to evaluate the correlations between genotype and phenotype. Systematic sequencing of the disease-related genes FBN1, TGFBR1, and TGFBR2, was carried out previously for 26 unrelated patients with MFS. No small mutations were found. Subsequently, multiplex ligation-dependent probe amplification was performed for the detection of copy number variations in these patients. The breakpoints were determined by gap PCR and sequencing. Transcription level analysis was conducted in patients whose RNA sample was available. Four gross deletions were identified in FBN1. Three deletions (exons 6, 48-53, and 49-50) were predicted to be in-frame deletions; the remaining deletion (exons 1-36) was expected to induce the loss of one copy of the FBN1 gene. The breakpoints of these four deletions were cloned, and revealed deletion sizes of 16,551, 10,346, 4563, and 187,047bp, respectively. Patients with in-frame deletions of exons 48-53 and 49-50 showed severe clinical phenotypes; Patient with an exon 6 deletion showed mild potential MFS phenotypes. And the patient had classic MFS with a deletion of exons 1-36. We characterized four large genomic rearrangements in FBN1. FBN1 haploinsufficiency correlated with a classic MFS phenotype, while in-frame deletions between exons 24-53 of FBN1 tended to cause severe clinical phenotypes."	"Shared genetic variants for polypoidal choroidal vasculopathy and typical neovascular age-related macular degeneration in East Asians. Polypoidal choroidal vasculopathy (PCV), a subtype of age-related macular degeneration (AMD) more frequently seen in East Asians, has both common and distinct clinical manifestations with typical neovascular AMD (tAMD). We aim to examine the extent to which common genetic variants are shared between these two subtypes. We performed the meta-analysis of association in a total of 1062 PCV patients, 1157 tAMD patients and 5275 controls of East Asian descent from the Genetics of AMD in Asians Consortium at the 34 known AMD loci. A total of eight loci were significantly associated with PCV, including age-related maculopathy susceptibility 2 (ARMS2)-HtrA serine peptidase 1 (HTRA1), complement factor H (CFH), C2-CFB-SKIV2L, CETP, VEGFA, ADAMTS9-AS2 and TGFBR1 (P&lt;5 × 10<sup>-4</sup>) from the single-nucleotide polymorphism-based test and COL4A3 from the gene-based tests (Pgene=2.02 × 10<sup>-4</sup>). PCV and tAMD are genetically highly correlated (rg=0.69, P=4.68 × 10<sup>-3</sup>), with AMD known loci accounting for up to 36% variation. Weaker association for PCV was observed at ARMS2-HTRA1 (Pdif=4.39 × 10<sup>-4</sup>) and KMT2E-SRPK2(Pdif=4.43 × 10<sup>-3</sup>), compared with tAMD. Variants at CFH, CETP and VEGFA exhibited different association signals in East Asians, in contrast to those in European individuals. Our data suggest a substantially shared genetic susceptibility for PCV and tAMD, while also highlight the unique associations for PCV, which is useful in understanding the pathogenesis of PCV."	"MiR-142-3p blocks TGF-β-induced activation of hepatic stellate cells through targeting TGFβRI. To understand the contribution of miR-142-3p in the activation of hepatic stellate cells (HSCs) and liver fibrosis, and the underlying mechanism. We detected microRNAs expression profiles in quiescent and activated HSCs by microRNA-array, and performed qRT-PCR to validate these data in HSCs and plasma of cirrhosis patients. In vitro, the 3rd-5th passage HSCs was transfected with mir-142-3p mimics or stimulated with TGF β. The markers of HSCs activation (i.e. FN and α-SMA) were examined by qRT-PCR and western blotting, and cell viability was detected by MTT, colony formation assays respectively. In our study, we identified miR-142-3p as a novel regulator of HSCs activation and indicator of hepatic cirrhosis. We found that miR-142-3p was significantly reduced in activated HSCs, while TGFβRI was distinctly up-regulated in activated HSCs. Ectopic expression of miR-142-3p in activated HSCs inhibited cell viability as well as cell growth, and blocked HSCs activation, concomitant with decreased transdifferentiation markers (i.e. FN and α-SMA). Further, we confirmed that miR-142-3p was reduced upon TGF-β exposure, while diminishing TGF-β-Smad signaling pathway in turn by reducing TGFβRI expression in HSCs. Besides, the plasma level of miR-142-3p declined significantly in patients with hepatic cirrhosis. In conclusion, we demonstrated that miR-142-3p repressed TGF-β-Smad signaling pathway to prevent HSCs activation through directly targeting TGFβRI in HSCs."	"Potential Resistance Mechanisms Revealed by Targeted Sequencing from Lung Adenocarcinoma Patients with Primary Resistance to Epidermal Growth Factor Receptor (EGFR) Tyrosine Kinase Inhibitors (TKIs). EGFR tyrosine kinase inhibitors (TKIs) have greatly improved the prognosis of lung adenocarcinoma. However, approximately 5% to 10% of patients with lung adenocarcinoma with EGFR sensitive mutations have primary resistance to EGFR TKI treatment. The underlying mechanism is unknown. This study used next-generation sequencing to explore the mechanisms of primary resistance by analyzing 11 patients with primary resistance and 11 patients sensitive to EGFR TKIs. Next-generation targeted sequencing was performed on the Illumina X platform for 483 cancer-related genes. EGFR mutation was initially detected using the amplification refractory mutation system. Potential primary resistance mechanisms were revealed by mutations unique to the EGFR TKI resistance group. Among the 11 resistant patients, 45% (five of 11) harbored a known resistance mechanism, such as MNNG HOS Transforming gene (MET) amplification de novo T790M mutation or overlapping T790M and phosphatase and tensin homolog gene (PTEN) loss and erb-b2 receptor tyrosine kinase 2 gene (ERBB2) amplification. In six of 11 resistant cases (54%), potential novel mutations that might lead to drug resistance were identified (including transforming growth factor beta receptor 1 gene [TGFBR1] mutation and/or EGFR structural rearrangement mechanistic target of rapamycin kinase gene [MTOR] mutation, transmembrane protease, serine 2 gene [TMPRSS2] fusion gene, and v-myc avian myelocytomatosis viral oncogene homolog gene [MYC] amplification). By analyzing somatic mutation patterns, the frequency of C:G→T:A transitions in the patients with primary resistance was significantly higher than that in sensitive group and occurred more frequently in the non-CpG region (Cp(A/C/T)→T). The mechanisms of primary resistance to EGFR TKIs may be highly heterogeneous. Mutations in EGFR and its downstream pathway, as well as mutations that affect tumor cell function, are related to primary resistance. Somatic single-nucleotide mutation patterns might be associated with primary resistance to EGFR TKIs."	"Evaluation of incidence, significance, and prognostic role of circulating tumor microemboli and transforming growth factor-β receptor I in head and neck cancer. Circulating tumor microemboli (CTM) are clusters of circulating tumor cells (CTCs), involved in metastasis, as also transforming growth factor-β (TGF-β). The purpose of this study was to verify their role in progression-free survival (PFS). Blood from patients with locally advanced head and neck squamous cell carcinoma (HNSCC; n = 53) was analyzed in 2 moments. TGF-β receptor I (TGF-βRI) expression was evaluated by immunocytochemistry. Comparing CTM1 (baseline) with CTM2 (first follow-up), patients with CTM1-positive disease who became CTM2-negative were classified as favorable (PFS 20 months). Patients with unfavorable evolution (CTM1-negative/CTM2-positive), had PFS of 17.5 months. Patients always CTM-negative showed PFS of 22.4 months, those always positive, 4.7 months (P &lt; .001). The TGF-βRI expression in the first follow-up correlated with poor PFS (12 × 26 months; P = .007), being an independent prognostic factor (hazard ratio [HR] = 6.088; P = .033). CTM1/2, TGF-βRI expression, and unfavorable CTM kinetics may represent poor prognosis in locally advanced HNSCC."	"A 3D tri-culture system reveals that activin receptor-like kinase 5 and connective tissue growth factor drive human glomerulosclerosis. Glomerular scarring, known as glomerulosclerosis, occurs in many chronic kidney diseases and involves interaction between glomerular endothelial cells (GECs), podocytes, and mesangial cells (MCs), leading to signals that promote extracellular matrix deposition and endothelial cell dysfunction and loss. We describe a 3D tri-culture system to model human glomerulosclerosis. In 3D monoculture, each cell type alters its phenotype in response to TGFβ, which has been implicated as an important mediator of glomerulosclerosis. GECs form a lumenized vascular network, which regresses in response to TGFβ. MCs respond to TGFβ by forming glomerulosclerotic-like nodules with matrix deposition. TGFβ treatment of podocytes does not alter cell morphology but increases connective tissue growth factor (CTGF) expression. BMP7 prevents TGFβ-induced GEC network regression, whereas TGFβ-induced MC nodule formation is prevented by SMAD3 siRNA knockdown or ALK5 inhibitors but not BMP7, and increased phospho-SMAD3 was observed in human glomerulosclerosis. In 3D tri-culture, GECs, podocytes, and MCs form a vascular network in which GECs and podocytes interact intimately within a matrix containing MCs. TGFβ treatment induces formation of nodules, but combined inhibition of ALK5 and CTGF is required to prevent TGFβ-induced nodule formation in tri-cellular cultures. Identification of therapeutic targets for glomerulosclerosis depends on the 3D culture of all three glomerular cells. Copyright © 2017 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"TGFβ signaling is associated with changes in inflammatory gene expression and perineuronal net degradation around inhibitory neurons following various neurological insults. Brain damage due to stroke or traumatic brain injury (TBI), both leading causes of serious long-term disability, often leads to the development of epilepsy. Patients who develop post-injury epilepsy tend to have poor functional outcomes. Emerging evidence highlights a potential role for blood-brain barrier (BBB) dysfunction in the development of post-injury epilepsy. However, common mechanisms underlying the pathological hyperexcitability are largely unknown. Here, we show that comparative transcriptome analyses predict remodeling of extracellular matrix (ECM) as a common response to different types of injuries. ECM-related transcriptional changes were induced by the serum protein albumin via TGFβ signaling in primary astrocytes. In accordance with transcriptional responses, we found persistent degradation of protective ECM structures called perineuronal nets (PNNs) around fast-spiking inhibitory interneurons, in a rat model of TBI as well as in brains of human epileptic patients. Exposure of a naïve brain to albumin was sufficient to induce the transcriptional and translational upregulation of molecules related to ECM remodeling and the persistent breakdown of PNNs around fast-spiking inhibitory interneurons, which was contingent on TGFβ signaling activation. Our findings provide insights on how albumin extravasation that occurs upon BBB dysfunction in various brain injuries can predispose neural circuitry to the development of chronic inhibition deficits."	"TGF-β1 stimulates cyclooxygenase-2 expression and PGE2 production of human dental pulp cells: Role of ALK5/Smad2 and MEK/ERK signal transduction pathways. TGF-β1 is an important growth factor that may influence the odontoblast differentiation and matrix deposition in the reactionary/reparative dentinogenesis to dental caries or other tooth injuries. TGF-β1 exerts its effects through various signaling pathways, such as Smads and MAPKs. Cyclooxygenase-2 (COX-2) is a membrane-associated enzyme that produces prostaglandin E2 (PGE2) at sites of pulpal injury and inflammation, which leads to tissue swelling, redness and pain. The purposes of this study were to investigate the differential signal transduction pathways of TGF-β1 that mediate COX-2 stimulation and PGE2 production in dental pulp cells. Pulp cells were exposed to TGF-β1 with/without SB431542 (an ALK5/Smad2 inhibitor) and U0126 (a MEK/ERK inhibitor). MTT assay was used to estimate cell viability. Enzyme-linked immunosorbent assay (ELISA) was used for measurement of PGE2 levels. RT-PCR and western blot were used to determined COX-2 mRNA and protein, respectively. Exposure to TGF-β1 (1-10 ng/ml) increased the COX-2 mRNA and protein level of cultured pulp cells. Exposure to TGF-β1 (0.1-10 ng/mL) significantly stimulated PGE2 production of dental pulp cells. Under the pretreatment of SB431542, the stimulatory effect of TGF-β1 on COX-2 level of pulp cells was inhibited. Similarly, U0126 also partly inhibited the TGF-β1-induced COX-2 expression. TGF-β1 increased the COX-2 and PGE2 level of cultured pulp cells. The effect of TGF-β1 on COX-2 protein expression was associated with ALK5/Smad2/3 and MEK/ERK pathways. These events are important in the early inflammation, repair and regeneration of dental pulp in response to injury."	"Disturbed Flow Promotes Arterial Stiffening Through Thrombospondin-1. Arterial stiffness and wall shear stress are powerful determinants of cardiovascular health, and arterial stiffness is associated with increased cardiovascular mortality. Low and oscillatory wall shear stress, termed disturbed flow (d-flow), promotes atherosclerotic arterial remodeling, but the relationship between d-flow and arterial stiffness is not well understood. The objective of this study was to define the role of d-flow on arterial stiffening and discover the relevant signaling pathways by which d-flow stiffens arteries. D-flow was induced in the carotid arteries of young and old mice of both sexes. Arterial stiffness was quantified ex vivo with cylindrical biaxial mechanical testing and in vivo from duplex ultrasound and compared with unmanipulated carotid arteries from 80-week-old mice. Gene expression and pathway analysis was performed on endothelial cell-enriched RNA and validated by immunohistochemistry. In vitro testing of signaling pathways was performed under oscillatory and laminar wall shear stress conditions. Human arteries from regions of d-flow and stable flow were tested ex vivo to validate critical results from the animal model. D-flow induced arterial stiffening through collagen deposition after partial carotid ligation, and the degree of stiffening was similar to that of unmanipulated carotid arteries from 80-week-old mice. Intimal gene pathway analyses identified transforming growth factor-β pathways as having a prominent role in this stiffened arterial response, but this was attributable to thrombospondin-1 (TSP-1) stimulation of profibrotic genes and not changes to transforming growth factor-β. In vitro and in vivo testing under d-flow conditions identified a possible role for TSP-1 activation of transforming growth factor-β in the upregulation of these genes. TSP-1 knockout animals had significantly less arterial stiffening in response to d-flow than wild-type carotid arteries. Human arteries exposed to d-flow had similar increases TSP-1 and collagen gene expression as seen in our model. TSP-1 has a critical role in shear-mediated arterial stiffening that is mediated in part through TSP-1's activation of the profibrotic signaling pathways of transforming growth factor-β. Molecular targets in this pathway may lead to novel therapies to limit arterial stiffening and the progression of disease in arteries exposed to d-flow."	"Synergistic effect of siRNA-mediated silencing of TGF-β R1 and TGF-β R2 genes on the proliferation and apoptosis of penile urethral epithelial cells in hypospadiac male rats. The study elucidated the effects associated with silencing growth factor-β R1 (TGF-β R1) and TGF-β R2 genes on the proliferation and apoptosis of penile urethral epithelial cells (UECs) in hypospadiac male rats. Seventy-five male rats were distributed into the normal, model, TGF-β R1/2-siRNA, TGF-β R1-siRNA and TGF-β R2-siRNA groups. The UECs of the rats included in the study were cultured in vitro and subsequently divided into the control, blank, TGF-β R1/2-siRNA, TGF-β R1-siRNA and TGF-β R2-siRNA groups. The mRNA and protein expressions of TGF-β R1/R2 were measured by quantitative real-time polymerase chain reaction (qRT-PCR) and western blotting. Cell proliferation and apoptosis were evaluated by cell counting kit-8 (CCK-8) assay as well as by flow cytometry. Compared with the normal group, the apoptotic rate of the UECs in the model, TGF-β R1/2-siRNA, TGF-β R1-siRNA and TGF-β R2-siRNA groups displayed remarkable increases; compared with the model group, the apoptotic rate of the UECs in the TGF-β R1/2-siRNA, TGF-β R1-siRNA and TGF-β R2-siRNA groups displayed significant decreases, similar observations were made regarding mRNA and protein expressions of TGF-β R1 and TGF-β R2. Compared with the TGF-β R1/2-siRNA group, the apoptotic rates of the UECs in the TGF-β R1-siRNA and TGF-β R2-siRNA groups were up regulated, while cell proliferation in the TGF-β R1-siRNA and TGF-β R2-siRNA groups decreased accompanied by an increased rate of apoptosis. This study ultimately demonstrated that the silencing of TGF-β R1 and TGF-β R2 genes could promote cell proliferation and inhibit apoptosis of penile UECs in hypospadiac male rats."	"Analysis of somatic mutations across the kinome reveals loss-of-function mutations in multiple cancer types. In this study we use somatic cancer mutations to identify important functional residues within sets of related genes. We focus on protein kinases, a superfamily of phosphotransferases that share homologous sequences and structural motifs and have many connections to cancer. We develop several statistical tests for identifying Significantly Mutated Positions (SMPs), which are positions in an alignment with mutations that show signs of selection. We apply our methods to 21,917 mutations that map to the alignment of human kinases and identify 23 SMPs. SMPs occur throughout the alignment, with many in the important A-loop region, and others spread between the N and C lobes of the kinase domain. Since mutations are pooled across the superfamily, these positions may be important to many protein kinases. We select eleven mutations from these positions for functional validation. All eleven mutations cause a reduction or loss of function in the affected kinase. The tested mutations are from four genes, including two tumor suppressors (TGFBR1 and CHEK2) and two oncogenes (KDR and ERBB2). They also represent multiple cancer types, and include both recurrent and non-recurrent events. Many of these mutations warrant further investigation as potential cancer drivers."	"Endothelial fibrosis induced by suppressed STAT3 expression mediated by signaling involving the TGF-β1/ALK5/Smad pathway. During systemic inflammatory pathologies, mediators of inflammation circulate in the bloodstream and interact with endothelial cells (ECs), resulting in endothelial dysfunction that maintains and enhances the pathological condition. Inflammatory mediators change the protein expression profile of ECs, which become activated fibroblasts via endothelial-to-mesenchymal transition. This process is characterized by downregulated endothelial proteins and strongly upregulated fibrotic-specific genes and extracellular matrix-forming proteins. The main inductor of endothelial fibrosis is transforming growth factor-β1 (TGF-β1), which acts through the TGF-β1/activin receptor-like kinase 5 (ALK5)/Smads intracellular signaling pathway. The signal transducer and activator of transcription 3 (STAT3) is also involved in fibrosis in several tissues (e.g. heart and vascular system), where STAT3 signaling decreases TGF-β1-induced responses by directly interacting with Smad proteins, suggesting that decreased STAT3 could induce TGF-β1-mediated fibrosis. However, it is unknown if suppressed STAT3 expression induces EC fibrosis through a mechanism involving the TGF-β signaling pathway. The present study evaluated the fibrotic actions of STAT3 suppression in ECs and investigated TGF-β1/ALK5/Smad4 signaling pathway participation. Suppressed STAT3 expression stimulated fibrotic conversion in ECs, as mediated by protein expression reprograming that decreased endothelial marker expression and increased fibrotic and extracellular matrix protein levels. The potential mechanism underlying these changes was dependent on TGF-β1 secretion, the ALK5 activation pathway, and Smad4 translocation into the nucleus. We conclude that suppressed STAT3 expression converts ECs into activated fibroblasts via TGF-β1/ALK5/Smad4 signaling pathway involvement."	"Kaurenoic acid activates TGF-β signaling. Kaurenoic acid (ent-kaur-16-en-19-oic acid: KA) is a key constituent found in the roots of Aralia continentalis Kitagawa (Araliaceae) that has been used for treating rheumatism in traditional Asian medicine. Although KA was reported to suppress inflammation by activating Nrf2, the anti-inflammatory function of KA is less characterized. Given the complex nature of the inflammatory response and the critical role of TGF-β in resolving inflammation, we hypothesized that KA suppresses inflammatory response by activating TGF-β signaling. Murine macrophage RAW 264.7, human lung epithelial cell MRC-5, and a TGFβRII defective cell HCT116 were treated with various amounts of KA. KA was also administered to mouse lung via intratracheal (i.t.) route. Phosphorylated Smad2 and Smad3 were analyzed by western blot. TGFβ-dependent gene expression was determined by immunoblotting of α-SMA and luciferase assay. KA induced the phosphorylation of Smad2 and Smad3, key activator molecules in TGF-β signaling. EW7197, an inhibitor for activin receptor-like kinase 5/TGF-β receptor I (TGFβR1) suppressed KA-mediated phosphorylation of Smad2. Similarly, KA failed to phosphorylate Smad2 in HCT116, suggesting that KA acts through the prototypic TGFβR. KA treatment increased the transcriptional activity driven by a Smad-binding element in a luciferase reporter assay and induced the α-smooth muscle actin (α-SMA). Similarly, i.t. KA induced the phosphorylation of Smad2 and increased the expression ofα-SMA in mouse lungs. KA activated TGF-β signaling, suggesting that TGFβ signaling is associated with KA suppressing inflammation."	"TGF-β signaling regulates p-Akt levels via PP2A during diapause entry in the cotton bollworm, Helicoverpa armigera. Akt, which is a key kinase in the insulin signaling pathway, plays important roles in glucose metabolism, cell proliferation, transcription and cell migration. Our previous studies indicated that low insulin levels and high p-Akt levels are present in diapause-destined individuals. Here, we show that PI3K, which is upstream of Akt, is low in diapause-destined pupal brains but high in p-Akt levels, implying that p-Akt is modified by factors other than the insulin signaling pathway. Protein phosphatase 2A (PP2A), which is a key regulator in the TGF-β signaling pathway, can directly bind to and dephosphorylate Akt. Low PP2A expression and activity in diapause-destined individuals suggest that a weak Akt dephosphorylation contributes to p-Akt accumulation. In addition, transforming growth factor-β receptor I (TβRI), which is upstream of PP2A, increases the activity of PP2A and decreases the p-Akt levels. These results show that TGF-β signaling decreases p-Akt levels by increasing the activity of PP2A. This is the first report showing that TGF-β signaling negatively regulates the insulin pathway in insect development or diapause."	"Cartilage-specific deletion of Alk5 gene results in a progressive osteoarthritis-like phenotype in mice. Previous studies have shown that Transforming growth factor-β (TGF-β)/TGFβRII-Smad3 signaling is involved in articular cartilage homeostasis. However, the role of TGF-β/ALK5 signaling in articular cartilage homeostasis has not been fully defined. In this study, a combination of in vitro and in vivo approaches was used to elucidate the role of ALK5 signaling in articular cartilage homeostasis and the development of osteoarthritis (OA). Mice with inducible cartilage-specific deletion of Alk5 were generated to assess the role of ALK5 in OA development. Alterations in cartilage structure were evaluated histologically. The expressions of genes associated with articular cartilage homeostasis and TGF-β signaling were analyzed by qRT-PCR, western blotting and immunohistochemistry. The chondrocyte apoptosis was detected by TUNEL staining and immunohistochemistry. In addition, the molecular mechanism underlying the effects of TGF-β/ALK5 signaling on articular cartilage homeostasis was explored by analyzing the TGF-β/ALK5 signaling-induced expression of proteoglycan 4 (PRG4) using specific inhibitors. Postnatal cartilage-specific deletion of Alk5 induced an OA-like phenotype with degradation of articular cartilage, synovial hyperplasia, osteophyte formation, subchondral sclerosis, as well as enhanced chondrocyte apoptosis, overproduction of catabolic factors, and decreased expressions of anabolic factors in chondrocytes. In addition, the expressions of PRG4 mRNA and protein were decreased in Alk5 conditional knockout mice. Furthermore, our results showed, for the first time, that TGF-β/ALK5 signaling regulated PRG4 expression partially through the protein kinase A (PKA)-CREB signaling pathway. TGF-β/ALK5 signaling maintains articular cartilage homeostasis, in part, by upregulating PRG4 expression through the PKA-CREB signaling pathway in articular chondrocytes."	"Deletion of β1-integrin in collecting duct principal cells leads to tubular injury and renal medullary fibrosis. The renal collecting duct (CD) contains two major cell types, intercalated (ICs) and principal cells (PCs). A previous report showed that deletion of β1-integrin in the entire renal CD causes defective CD morphogenesis resulting in kidney dysfunction. However, subsequent deletion of β1-integrin specifically in ICs and PCs, respectively, did not cause any morphological defects in the CDs. The discrepancy between these studies prompts us to reinvestigate the role of β1-integrin in CD cells, specifically in the PCs. We conditionally deleted β1-integrin in mouse CD PCs using a specific aquaporin-2 (AQP2) promoter Cre-LoxP system. The resulting mutant mice, β-1<sup>f/f</sup>AQP2-Cre+, had lower body weight, failed to thrive, and died around 8-12 wk. Their CD tubules were dilated, and some of them contained cellular debris. Increased apoptosis and proliferation of PCs were observed in the dilated CDs. Trichrome staining and electron microscopy revealed the presence of peritubular and interstitial fibrosis that is associated with increased production of extracellular matrix proteins including collagen type IV and fibronectin, as detected by immunoblotting. Further analysis revealed a significantly increased expression of transforming growth factor-β (TGF-β)-induced protein, fibronectin, and TGF-β receptor-1 mRNAs and concomitantly increased phosphorylation of SMAD-2 that indicates the activation of the TGF-β signaling pathway. Therefore, our data reveal that normal expression of β1-integrin in PCs is a critical determinant of CD structural and functional integrity and further support the previously reported critical role of β1-integrin in the development and/or maintenance of the CD structure and function."	"RBM38 is involved in TGF-β-induced epithelial-to-mesenchymal transition by stabilising zonula occludens-1 mRNA in breast cancer. The transforming growth factor-β (TGF-β) pathway plays a vital role in driving cancer cell epithelial-mesenchymal transition (EMT). Zonula occludens-1 (ZO-1), which is downregulated in response to TGF-β, is able to control endothelial cell-cell tension, cell migration, and barrier formation. However, the molecular mechanism of how TGF-β regulates ZO-1 expression remains unclear. Breast cancer cells were treated with TGF-β to induce an EMT progress. Chromatin immunoprecipitation and dual-luciferase reporter assay were performed to investigate direct relationship between Snail and RNA binding motif protein 38 (RBM38). The RNA immunoprecipitation combined with RNA electrophoretic mobility shift assay and dual-luciferase reporter assay were conducted to testify direct relationship between RBM38 and ZO-1. The ZO-1 siRNA was transfected to breast cancer cells that overexpress RBM38 and the control, followed by transwell and Matrigel invasion assays to examine cell migratory and invasive ability. Transforming growth factor-β induced a remarkable downregulation of RBM38 in breast cancer that was directly regulated by transcription repressor Snail targeting the E-box elements in promoter region of RBM38 gene. Additionally, RBM38 positively regulated ZO-1 transcript via directly binding to AU/U-rich elements in its mRNA 3'-UTR. Moreover, by magnifying RBM38 expression, cell migration and invasion mediated by knockdown of ZO-1 in breast cancer were reversed. All the results clarified a linear regulation relationship among Snail, RBM38, and ZO-1, implicating RBM38 as a pivotal mediator in TGF-β-induced EMT in breast cancer."	"TGF-β promotes PI3K-AKT signaling and prostate cancer cell migration through the TRAF6-mediated ubiquitylation of p85α. Transforming growth factor-β (TGF-β) is a pluripotent cytokine that regulates cell fate and plasticity in normal tissues and tumors. The multifunctional cellular responses evoked by TGF-β are mediated by the canonical SMAD pathway and by noncanonical pathways, including mitogen-activated protein kinase (MAPK) pathways and the phosphatidylinositol 3'-kinase (PI3K)-protein kinase B (AKT) pathway. We found that TGF-β activated PI3K in a manner dependent on the activity of the E3 ubiquitin ligase tumor necrosis factor receptor-associated factor 6 (TRAF6). TRAF6 polyubiquitylated the PI3K regulatory subunit p85α and promoted the formation of a complex between the TGF-β type I receptor (TβRI) and p85α, which led to the activation of PI3K and AKT. Lys<sup>63</sup>-linked polyubiquitylation of p85α on Lys<sup>513</sup> and Lys<sup>519</sup> in the iSH2 (inter-Src homology 2) domain was required for TGF-β-induced activation of PI3K-AKT signaling and cell motility in prostate cancer cells and activated macrophages. Unlike the activation of SMAD pathways, the TRAF6-mediated activation of PI3K and AKT was not dependent on the kinase activity of TβRI. In situ proximity ligation assays revealed that polyubiquitylation of p85α was evident in aggressive prostate cancer tissues. Thus, our data reveal a molecular mechanism by which TGF-β activates the PI3K-AKT pathway to drive cell migration."	"Inhibition of the miR-17-92 Cluster Separates Stages of Palatogenesis. The role that noncoding regions of the genome play in the etiology of cleft palate is not well studied. A novel method of microRNA (miR) inhibition that allows for specific miR knockdown in vivo has been developed by our laboratory. To further understand the role of miRs in palatogenesis, we used a new mouse model to inhibit specific miRs within the miR-17-92 cluster. Transgenic mice expressing inhibitory complexes for miR-17 and miR-18 manifested a clefting phenotype that was distinct from that observed in mice carrying inhibitory complexes for miR-17, miR-18, miR-19, and miR-92. An in silico candidate gene analysis and bioinformatics review led us to identify TGFBR2 as a likely target of miR-17 and miR-19 family members. Reverse transcription polymerase chain reaction (RT-PCR) experiments showed that TGFBR1 and TGFBR2 expression levels were elevated in the palates of these miR transgenic embryos at embryonic day 15.5. RT-PCR data also showed that the expression of mature miRs from the miR-17-92 cluster was significantly decreased in the transgenic embryos. Decreased expression of TGFB pathway signaling ligands was also observed. Experiments in cells showed that inhibition of miR-17 and miR-18 was sufficient to induce increases in expression of TGFB receptors, while a concomitant decrease in TGFB signaling ligands was not observed. RT-PCR of mature miR-17-92 in cells demonstrated the selectivity and specificity of inhibitory complexes. While this study builds on previous studies that have implicated miR-17-92 in the regulation of important molecular components of the TGFB signaling pathway, it is likely that interactions remain to be elucidated between miR-17-92 and as-of-yet unidentified molecules important for the control of palatogenesis. The differential regulation of palatogenesis by members of the miR-17-92 cluster indicates that several gene combinations regulate palate elevation and extension during development."	"Candidate Gene Resequencing in a Large Bicuspid Aortic Valve-Associated Thoracic Aortic Aneurysm Cohort: SMAD6 as an Important Contributor. Bicuspid aortic valve (BAV) is the most common congenital heart defect. Although many BAV patients remain asymptomatic, at least 20% develop thoracic aortic aneurysm (TAA). Historically, BAV-related TAA was considered as a hemodynamic consequence of the valve defect. Multiple lines of evidence currently suggest that genetic determinants contribute to the pathogenesis of both BAV and TAA in affected individuals. Despite high heritability, only very few genes have been linked to BAV or BAV/TAA, such as NOTCH1, SMAD6, and MAT2A. Moreover, they only explain a minority of patients. Other candidate genes have been suggested based on the presence of BAV in knockout mouse models (e.g., GATA5, NOS3) or in syndromic (e.g., TGFBR1/2, TGFB2/3) or non-syndromic (e.g., ACTA2) TAA forms. We hypothesized that rare genetic variants in these genes may be enriched in patients presenting with both BAV and TAA. We performed targeted resequencing of 22 candidate genes using Haloplex target enrichment in a strictly defined BAV/TAA cohort (n = 441; BAV in addition to an aortic root or ascendens diameter ≥ 4.0 cm in adults, or a Z-score ≥ 3 in children) and in a collection of healthy controls with normal echocardiographic evaluation (n = 183). After additional burden analysis against the Exome Aggregation Consortium database, the strongest candidate susceptibility gene was SMAD6 (p = 0.002), with 2.5% (n = 11) of BAV/TAA patients harboring causal variants, including two nonsense, one in-frame deletion and two frameshift mutations. All six missense mutations were located in the functionally important MH1 and MH2 domains. In conclusion, we report a significant contribution of SMAD6 mutations to the etiology of the BAV/TAA phenotype."	"Conditional abrogation of transforming growth factor-β receptor 1 in PTEN-inactivated endometrium promotes endometrial cancer progression in mice. Although a putative role for transforming growth factor-β (TGFB) signalling in the pathogenesis of human endometrial cancer has long been proposed, the precise function of TGFB signalling in the development and progression of endometrial cancer remains elusive. Depletion of phosphatase and tensin homologue (PTEN) in the mouse uterus causes endometrial cancer. To identify the potential role of TGFB signalling in endometrial cancer, we simultaneously deleted TGFB receptor 1 (Tgfbr1) and Pten in the mouse uterus by using Cre-recombinase driven by the progesterone receptor (termed Pten<sup>d/d</sup> ;Tgfbr1<sup>d/d</sup> ). We found that Pten<sup>d/d</sup> ;Tgfbr1<sup>d/d</sup> mice developed severe endometrial lesions that progressed more rapidly than those resulting from conditional deletion of Pten alone, suggesting that TGFB signalling synergizes with PTEN to suppress endometrial cancer progression. Remarkably, Pten<sup>d/d</sup> ;Tgfbr1<sup>d/d</sup> mice developed distant pulmonary metastases, leading to a significantly reduced lifespan. The development of metastasis and accelerated tumour progression in Pten<sup>d/d</sup> ;Tgfbr1<sup>d/d</sup> mice are associated with increased production of proinflammatory chemokines, enhanced cancer cell motility, as shown by myometrial invasion and disruption, and an altered tumour microenvironment characterized by recruitment of tumour-associated macrophages. Thus, conditional deletion of Tgfbr1 in PTEN-inactivated endometrium leads to a disease that recapitulates invasive and lethal human endometrial cancer. This mouse model may be valuable for preclinical testing of new cancer therapies, particularly those targeting metastasis, one of the hallmarks of cancer and a major cause of death in endometrial cancer patients. Copyright © 2017 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Transforming growth factor-β stimulates Smad1/5 signaling in pulmonary artery smooth muscle cells and fibroblasts of the newborn mouse through ALK1. The intracellular signaling mechanisms through which TGF-β regulates pulmonary development are incompletely understood. Canonical TGF-β signaling involves Smad2/3 phosphorylation, Smad2/3·Smad4 complex formation and nuclear localization, and gene regulation. Here, we show that physiologically relevant TGF-β1 levels also stimulate Smad1/5 phosphorylation, which is typically a mediator of bone morphogenetic protein (BMP) signaling, in mouse pup pulmonary artery smooth muscle cells (mPASMC) and lung fibroblasts and other interstitial lung cell lines. This cross-talk mechanism likely has in vivo relevance because mixed Smad1/5/8·Smad2/3 complexes, which are indicative of TGF-β-stimulated Smad1/5 activation, were detected in the developing mouse lung using a proximity ligation assay. Although mixed Smad complexes have been shown not to transduce nuclear signaling, we determined that TGF-β stimulates nuclear localization of phosphorylated Smad1/5 and induces the expression of prototypical BMP-regulated genes in the mPASMC. Small-molecule kinase inhibitor studies suggested that TGF-β-regulated Smad1/5 phosphorylation in these cells is mediated by TGF-β-type I receptors, not BMP-type I receptors, but possibly the accessory activin-like kinase (ALK1) receptor. Although work by others suggested that ALK1 is expressed exclusively in endothelial cells in the vasculature, we detected ALK1 mRNA and protein expression in mPASMC in vitro and in mouse pup lungs. Moreover, using an antimurine ALK1 antibody and mPASMC, we determined that ALK1 regulates Smad1/5 phosphorylation by TGF-β. Together, these studies characterize an accessory TGF-β-stimulated BMP R-Smad signaling mechanism in interstitial cells of the developing lung. They also indicate the importance of considering alternate Smad pathways in studies directed at determining how TGF-β regulates newborn lung development."	"Multiple Soluble TGF-β Receptors in Addition to Soluble Endoglin Are Elevated in Preeclamptic Serum and They Synergistically Inhibit TGF-β Signaling. Preeclampsia (PE) can be classified into early-onset (&lt;34 weeks of gestation) and late-onset (&gt;34 weeks of gestation) subtypes. Soluble endoglin, an auxiliary receptor for transforming growth factor (TGF)-β ligands, is increased in PE circulation and believed to inhibit TGF-β action by sequestering the ligands. However, soluble endoglin, with a low affinity to TGF-β ligands, has been demonstrated to have little effect by itself on TGF-β action. We examined whether multiple soluble TGF-β receptors are elevated in PE circulation and whether they synergistically block TGF-β signaling. TGF-β receptors were measured using enzyme-linked immunosorbent assay in sera collected from preeclamptic pregnancies and gestation-age-matched controls. TGF-β signaling was assessed using an in vitro bioassay and a tube formation assay. TGF-β type I, II, and III receptors were all identified in pregnant serum; all were substantially elevated in early-onset but not late-onset PE. Endoglin was increased in both subtypes. At the greatest concentrations detected in PE, none of these soluble TGF-β receptors alone, including endoglin, inhibited TGF-β signaling. However, when all four soluble receptors were present, signaling of both TGF-β1 and TGF-β2 was substantially reduced. Removal of any one of these soluble receptors alleviated TGF-β1 inhibition; however, removal of soluble TGFβRIII was necessary to relieve TGF-β2 inhibition. Multiple soluble TGF-β receptors are present in pregnant circulation and elevated in early-onset PE; they synergistically inhibit TGF-β signaling, which might be more likely to occur in early-onset than late-onset PE. Reducing soluble TGFβRIII, rather than endoglin, would be more effective in alleviating the inhibition of both TGF-β1 and TGF-β2 signaling in PE."	"Overexpression of ALK5 Induces Human Tenon's Capsule Fibroblasts Transdifferentiation and Fibrosis In Vitro. To investigate the involvement of activin receptor-like kinase 5 (ALK5) in human Tenon's capsule fibroblasts (HTFs) transdifferentiation and fibrosis. (1) Cultured HTFs were treated with transforming growth factor beta 1 (TGF-β1) at different concentrations for different durations, mRNA expression of ALK5 and plasminogen activator inhibitor-1 (PAI-1) was measured by quantitative polymerase chain reaction (PCR) while protein expression of ALK5, α-smooth muscle actin (α-SMA), and extracellular matrix deposition including fibronectin (FN) and collagen I (Col1) was assessed by western blot. HTFs with or without TGF-β1 were also treated with an ALK5 activity inhibitor, SB-431542, and fibrosis-related genes were assessed. (2) HTFs were transduced with ALK5 lentivirus (ALK5-OE group) or empty lentivirus (NC-OE) with or without the treatment of SB-431542. Protein expression of ALK5, α-SMA, FN, and Col1 was evaluated. (3) HTFs in the ALK5-OE group and NC-OE group were subjected to a scratch-wound assay and their migratory activities assessed. (1) TGF-β1, in a concentration-dependent manner, upregulated ALK5 and PAI-1 expressions in the HTFs, which peaked between 24 and 36 h. These changes were associated with increases in protein levels of FN, Col1, and α-SMA. These TGF-β1 effects were blocked by the ALK5 inhibitor SB-431542. (2) Similarly, overexpression of ALK5 by lentiviral vector significantly increased protein expression of α-SMA, FN, and Col1. Addition of TGF-β1 to the ALK5-OE cells did not produce additional expression of any of the marker proteins. The upregulation of extracellular matrix and α-SMA can be reduced by SB-431542. (3) In ALK5-OE group, HTFs migration was significantly increased compared with normal control and TGF-β1 could still promote ALK5-OE cells migration. Our findings suggest that ALK5 is an important mediator of HTFs fibrosis. ALK5 is a potential therapeutic target to suppress scar formation after filtration surgery."	"Age-Dependent Effects of ALK5 Inhibition and Mechanism of Neuroprotection in Neonatal Hypoxic-Ischemic Brain Injury. Neonatal encephalopathy due to hypoxic-ischemic (HI) brain injury triggers a wave of neuroinflammatory events attributed to causing the progressive degeneration and functional deficits seen weeks after the initial insult. In a recent set of studies, we evaluated the therapeutic efficacy of a small molecule antagonist for ALK5 (activin-like kinase 5 ), TGF-β receptor in a rat model of moderate perinatal HI and found significant improvements in neurologic outcomes. Here, we have extended those studies to evaluate the efficacy of delayed TGF-β receptor antagonism on postnatal day (P) 6 and P9 HI rat pups with and without hypothermia. The ALK5 receptor antagonist SB505124 was administered systemically by osmotic pump beginning 3 days following HI. Extending our earlier data set that showed protection of the hippocampus in P6 pups treated with SB505124, these animals sustained less damage to their hippocampi and had improved performance on the Morris water maze (MWM) when tested on P60 versus vehicle-treated HI animals. By contrast, SB505124 did not improve sensorimotor deficits and exacerbated hippocampal and thalamic volume loss when administered 3 days after HI to P9 pups. SB505124-treated rats injured on P9 tended to perform worse than their vehicle-treated counterparts on MWM, and SB505124 treatment did not preserve hippocampal or thalamic neurons in P9 pups when combined with hypothermia. To elucidate the mechanism whereby ALK5 inhibition reduced neuronal death in the P6 HI model, we assessed levels of autophagy markers in neurons of the neocortex, hippocampus, and thalamus, and in the subcortical white matter, and found that SB505124 increased numbers of autophagosomes and levels of lipidated LC3 (light chain 3), a key protein known to mediate autophagy. Altogether, our results demonstrate that there is a dynamic switch in the CNS response to TGF-β1 that occurs around P9 in rats where TGF-β signaling inhibition worsens functional outcomes. This response is similar to the outcome of antagonizing TGF-β signaling in adult stroke and other CNS disease models. We conclude that attenuating TGF-β1 signaling will likely be an effective treatment for HI-related encephalopathy in moderately preterm infants, offering protection of the neocortex, hippocampus, and thalamus with enhanced cerebral autophagy contributing to the decrease in the extent of progressive neuronal cell death."	"Binding of coronin 1B to TβRI negatively regulates the TGFβ1 signaling pathway. Coronin 1B is an actin-binding protein that regulates several actin-dependent cellular processes including migration and endocytosis. However, the role of coronin 1B in the tumor growth factor (TGF)β signaling pathway is largely unknown. Here, we investigated whether coronin 1B affects the TGFβ signaling cascade and found that coronin 1B negatively regulates the TGFβ signaling pathway. Immunoprecipitation and glutathione-S-transferase-pulldown assays revealed that coronin 1B directly associated with TGFβ receptor I (TβRI). Overexpression of coronin 1B inhibited the TGFβ1-induced interaction between TβRI and Smad2/3 in plasmid-transfected HEK293T cells. Coronin 1B was basally bound to TβRI in vascular smooth muscle cells (VSMCs), but TGFβ1 stimulation did not affect their association, suggesting constitutive binding between coronin 1B and TβRI. Overexpression of coronin 1B suppressed TGFβ1-induced activation of a Smad-binding element-luciferase reporter construct and a plasminogen activator inhibitor (PAI)-1 promoter-luciferase reporter construct in HEK293T cells. By contrast, depletion of coronin 1B by siRNA transfection increased TGFβ1-induced Smad2/3 phosphorylation and PAI-1 expression in VSMCs. These results suggest that coronin 1B regulates the TGFβ1 signaling cascade by constitutively interacting with TβRI and inhibiting the binding of Smad2/3 to TβRI in response to TGFβ1 stimulation."	"TGFβ pathway limits dedifferentiation following WNT and MAPK pathway activation to suppress intestinal tumourigenesis. Recent studies have suggested increased plasticity of differentiated cells within the intestine to act both as intestinal stem cells (ISCs) and tumour-initiating cells. However, little is known of the processes that regulate this plasticity. Our previous work has shown that activating mutations of Kras or the NF-κB pathway can drive dedifferentiation of intestinal cells lacking Apc. To investigate this process further, we profiled both cells undergoing dedifferentiation in vitro and tumours generated from these cells in vivo by gene expression analysis. Remarkably, no clear differences were observed in the tumours; however, during dedifferentiation in vitro we found a marked upregulation of TGFβ signalling, a pathway commonly mutated in colorectal cancer (CRC). Genetic inactivation of TGFβ type 1 receptor (Tgfbr1/Alk5) enhanced the ability of Kras<sup>G12D/+</sup> mutation to drive dedifferentiation and markedly accelerated tumourigenesis. Mechanistically this is associated with a marked activation of MAPK signalling. Tumourigenesis from differentiated compartments is potently inhibited by MEK inhibition. Taken together, we show that tumours arising in differentiated compartments will be exposed to different suppressive signals, for example, TGFβ and blockade of these makes tumourigenesis more efficient from this compartment."	"STAT3 Induces Immunosuppression by Upregulating PD-1/PD-L1 in HNSCC. Head and neck cancer is one of the most prevalent cancers around the world. Head and neck squamous cell carcinoma (HNSCC) accounts for nearly 90% of head and neck cancer. In recent years, significant advances have been made in immunotherapy for HNSCC. Although some clinical trials targeting immune checkpoints have shown success, the molecular mechanism for regulation of programmed death 1 (PD-1) and its ligand (PD-L1) is partially understood. In an effort to explore the effect of activation of signal transducers and activators of transcriptions (STAT3) on PD-1/PD-L1, the expression and correlation between phosphorylation of STAT3 and PD-1/PD-L1 were determined with immunostaining of human and mouse HNSCC tissue sections. PD-1/PD-L1 overexpression was found to be significantly associated with p-STAT3 in human and mouse HNSCC. Targeting STAT3 by a small molecule effectively inhibited the expression of PD-L1 in the CAL27 cell line. Furthermore, we found that blockade of STAT3 signaling downregulated PD-1/PD-L1 in a Tgfbr1/Pten 2cKO HNSCC mouse model. These findings suggest that STAT3 signaling plays an important role in PD-1/PD-L1 regulation and the antitumor immune response of HNSCC."	"Blockade of adenosine A2A receptor enhances CD8<sup>+</sup> T cells response and decreases regulatory T cells in head and neck squamous cell carcinoma. Cancer immunotherapy offers a promising approach in cancer treatment. The adenosine A2A receptor (A2AR) could protect cancerous tissues from immune clearance via inhibiting T cells response. To date, the role of A2AR in head and neck squamous cell carcinoma (HNSCC) has not been investigated. Here, we sought to explore the expression and immunotherapeutic value of A2AR blockade in HNSCC. The expression of A2AR was evaluated by immunostaining in 43 normal mucosae, 48 dysplasia and 165 primary HNSCC tissues. The immunotherapeutic value of A2AR blockade was assessed in vivo in genetically defined immunocompetent HNSCC mouse model. Immunostaining of HNSCC tissue samples revealed that increased expression of A2AR on tumor infiltrating immune cells correlated with advanced pathological grade, larger tumor size and positive lymph node status. Elevated A2AR expression was also detected in recurrent HNSCC and HNSCC tissues with induction chemotherapy. The expression of A2AR was found to be significantly correlated with HIF-1α, CD73, CD8 and Foxp3. Furthermore, the increased population of CD4<sup>+</sup>Foxp3<sup>+</sup> regulatory T cells (Tregs), which partially expressed A2AR, was observed in an immunocompetent mouse model that spontaneously develops HNSCC. Pharmacological blockade of A2AR by SCH58261 delayed the tumor growth in the HNSCC mouse model. Meanwhile, A2AR blockade significantly reduced the population of CD4<sup>+</sup> Foxp3<sup>+</sup> Tregs and enhanced the anti-tumor response of CD8<sup>+</sup> T cells. These results offer a preclinical proof for the administration of A2AR inhibitor on prophylactic experimental therapy of HNSCC and suggest that A2AR blockade can be a potential novel strategy for HNSCC immunotherapy."	"SENP2 suppresses epithelial-mesenchymal transition of bladder cancer cells through deSUMOylation of TGF-βRI. SUMO-specific protease 2 (SENP2) is a deSUMOylation protease that plays an important role in the regulation of transforming growth factor-β (TGF-β) signaling. Aberrant TGF-β signaling is common in human cancers and contributes to tumor metastasis by inducing an epithelial-mesenchymal transition (EMT). In previous studies, we demonstrated that SENP2 suppresses bladder cancer cell migration and invasion. However, little is known about whether SENP2 inhibits EMT by regulating TGF-β signaling in bladder cancer progression. Here, we investigated the role of SENP2 in regulating TGF-β signaling and bladder cancer metastasis in vitro and in vivo. We found that SENP2 is frequently downregulated in bladder cancer, especially in metastatic bladder cancer. SENP2 downregulation is associated with more aggressive phenotypes and poor patient outcomes. SENP2 knockdown results in a decrease of E-cadherin and an increase of N-cadherin and fibronectin at both transcript and protein levels, indicating that SENP2 negatively regulates EMT. On the contrary, SENP2 overexpression suppresses TGF-β signaling and TGF-β-induced EMT. We further demonstrated that SENP2 regulates TGF-β signaling partly through deSUMOylation of TGFβ receptor I (TGF-βRI). Functionally, SENP2 suppresses bladder cancer cell invasion in vitro and tumor metastasis in vivo, acts as a tumor suppressor gene in bladder cancer. Our results establish a function of SENP2 in metastatic progression and suggest its candidacy as a new prognostic biomarker and target for clinical management of bladder cancer."	"TGFβ1-induced SMAD2/3 and SMAD1/5 phosphorylation are both ALK5-kinase-dependent in primary chondrocytes and mediated by TAK1 kinase activity. Dysregulated transforming growth factor β (TGFβ) signaling is implicated in osteoarthritis development, making normalizing TGFβ signaling a possible therapy. Theoretically, this can be achieved with small molecule inhibitors specifically targeting the various TGFβ receptors and downstream mediators. In this study we explore in primary chondrocytes the use of small molecule inhibitors to target TGFβ-induced pSmad1/5/9-, pSmad2/3- and TGFβ-activated kinase 1 (TAK1)-dependent signaling. Primary bovine chondrocytes and explants were isolated from metacarpophalangeal joints. To modulate TGFβ signaling the activin receptor-like kinase (ALK)1/2/3/6 inhibitor LDN-193189, the ALK4/5/7 inhibitor SB-505124 and the TAK1 inhibitor (5Z)-7-Oxozeaenol were used. pSmad1/5 and pSmad2 were measured using western blot analysis and TGFβ1-induced gene expression was measured using quantitative real time PCR (qPCR). In chondrocytes, TGFβ1 strongly induced both pSmad1/5 and pSmad2. Remarkably, LDN-193189 did not inhibit TGFβ-induced pSmad1/5. In contrast, SB-505124 did inhibit both TGFβ-induced Smad2 and Smad1/5 phosphorylation. Furthermore, (5Z)-7-Oxozeaenol also profoundly inhibited TGFβ-induced pSmad2 and pSmad1/5. Importantly, both SB-505124 and (5Z)-7-Oxozeaenol did not significantly inhibit constitutively active ALK1, making an off-target effect unlikely. Additionally, LDN-193189 was able to potently inhibit BMP2/7/9-induced pSmad1/5, showing its functionality. On gene expression, LDN-193189 did not affect TGFβ1-induced regulation, whereas both SB-505124 and (5Z)-7-Oxozeaenol did. Similar results were obtained in cartilage explants, although pSmad1/5 was not strongly induced by addition of TGFβ1. Our data suggest that ALK5 kinase activity plays a central role in both TGFβ-induced Smad1/5 and Smad2/3 phosphorylation, making it difficult to separate both pathways with the use of currently available small molecule inhibitors. Furthermore, our data regarding (5Z)-7-Oxozeaenol suggest that TAK1 facilitates Smad-dependent signaling."	"Next generation sequencing analysis of patients with familial cervical artery dissection. The cause of cervical artery dissection is not well understood. We test the hypothesis that mutations in genes associated with known arterial connective tissue disorders are enriched in patients with familial cervical artery dissection. Patient duos from nine pedigrees with familial cervical artery dissection were analyzed by whole exome sequencing. Single nucleotide variants in a panel of 11 candidate genes (ACTA2, MYH11, FBN1, TGFBR1, TGFBR2, TGFB2, COL3A1, COL4A1, SMAD3, MYLK and SLC2A10) were prioritized according to functionality (stop-loss, nonsense, and missense variants with polyphen-2 score ≥0.95). Variants classified as &quot;benign&quot; or &quot;likely benign&quot; in the ClinVar database were excluded from further analysis. For comparison, non-benign stop-loss, nonsense and missense variants with polyphen-2 score ≥0.95 in the same panel of candidate genes were identified in the European non-Finnish population of the ExAC database (n = 33,370). Non-benign Single nucleotide variants in both affected patients were identified in four of the nine cervical artery dissection families (COL3A1; Gly324Ser, FBN1: Arg2554Trp, COL4A1: Pro116Leu, and TGFBR2: Ala292Thr) yielding an allele frequency of 22.2% (4/18). In the comparison group, 1782 variants were present in 33,370 subjects from the ExAC database (allele frequency: 1782/66,740 = 2.7%; p = 0.0008; odds ratio = 14.2; 95% confidence interval = 3.8-52.9). Cervical artery dissection families showed enrichment for non-benign variants in genes associated with arterial connective tissue disorders. The observation that findings differed across families indicates genetic heterogeneity of familial cervical artery dissection."	"A case of Ferguson-Smith disease. NA"	"Combination therapy with butyrate and docosahexaenoic acid for keloid fibrogenesis: an in vitro study. A single, effective therapeutic regimen for keloids has not been established yet, and the development of novel therapeutic approaches is expected. Butyrate, a short-chain fatty acid, and docosahexaenoic acid (DHA), a ω-3 polyunsaturated fatty acid, play multiple anti-inflammatory and anticancer roles via their respective mechanisms of action. In this study, we evaluated the antifibrogenic effects of their single and combined use on keloid fibroblasts. Keloid fibroblasts were treated with butyrate (0-16 mM) and/or DHA (0-100 µM) for 48 or 96 h. Butyrate inhibited cell proliferation, and α-smooth muscle actin (α-SMA) and type III collagen expressions, with inhibition of the transforming growth factor (TGF)-β1 and TGF-β type I receptor expressions and increased prostaglandin E2 with upregulation of cyclooxygenase-1 expression with induction of histone acetylation. DHA inhibited α-SMA, type III collagen, and TGF-β type I receptor expressions. Then, the butyrate/DHA combination augmented the antifibrogenic effects, resulting in additional inhibition of α-SMA, type I and III collagen expressions, with strong disruption of stress fiber and apoptosis induction. Moreover, the butyrate/DHA combination inhibited the cyclooxygenase-2 expression, suggesting stronger anti-inflammatory effect than each monotherapy. Activation in keloid tissue is affected not only by fibroblasts but also by epithelial cells and immune cells. Evaluation of the effects by butyrate and DHA in these cells or in an in vivo study is required. This study demonstrated that butyrate and docosahexaenoic acid have antifibrogenic effects on keloid fibroblasts and that these may exert therapeutic effects for keloid."	"Gene expression analysis of growth factor receptors in human chondrocytes in monolayer and 3D pellet cultures. The main goal of cartilage repair is to create functional tissue by enhancing the in vitro conditions to more physiological in vivo conditions. Chondrogenic growth factors play an important role in influencing cartilage homeostasis. Insulin‑like growth factor (IGF)‑1 and transforming growth factor (TGF)‑β1 affect the expression of collagen type II (Col2) and glycosaminoglycans (GAGs) and, therefore, the targeted use of growth factors could make chondrogenic redifferentiation more efficient. In the present study, human chondrocytes were postmortally isolated from healthy articular cartilage and cultivated as monolayer or 3D pellet cultures either under normoxia or hypoxia and stimulated with IGF‑1 and/or TGF‑β1 to compare the impact of the different growth factors. The mRNA levels of the specific receptors (IGF1R, TGFBR1, TGFBR2) were analyzed at different time points. Moreover, gene expression rates of collagen type 1 and 2 in pellet cultures were observed over a period of 5 weeks. Additionally, hyaline‑like Col2 protein and sulphated GAG (sGAG) levels were quantified. Stimulation with IGF‑1 resulted in an enhanced expression of IGF1R and TGFBR2 whereas TGF‑β1 stimulated TGFBR1 in the monolayer and pellet cultures. In monolayer, the differences reached levels of significance. This effect was more pronounced under hypoxic culture conditions. In pellet cultures, increased amounts of Col2 protein and sGAGs after incubation with TGF‑β1 and/or IGF‑1 were validated. In summary, constructing a gene expression profile regarding mRNA levels of specific growth factor receptors in monolayer cultures could be helpful for a targeted application of growth factors in cartilage tissue engineering."	"Sporadic Early-Onset Diffuse Gastric Cancers Have High Frequency of Somatic CDH1 Alterations, but Low Frequency of Somatic RHOA Mutations Compared With Late-Onset Cancers. Early-onset gastric cancer, which develops in patients younger than most gastric cancers, is usually detected at advanced stages, has diffuse histologic features, and occurs more frequently in women. We investigated somatic genomic alterations associated with the unique characteristics of sporadic diffuse gastric cancers (DGCs) from younger patients. We conducted whole exome and RNA sequence analyses of 80 resected DGC samples from patients 45 years old or younger in Korea. Patients with pathogenic germline mutations in CDH1, TP53, and ATM were excluded from the onset of this analysis, given our focus on somatic alterations. We used MutSig2CV to evaluate the significance of mutated genes. We recruited 29 additional early-onset Korean DGC samples and performed SNP6.0 array and targeted sequencing analyses of these 109 early-onset DGC samples (54.1% female, median age, 38 years). We compared the SNP6.0 array and targeted sequencing data of the 109 early-onset DGC samples with those from diffuse-type stomach tumor samples collected from 115 patients in Korea who were 46 years or older (late onset) at the time of diagnosis (controls; 29.6% female, median age, 67 years). We compared patient survival times among tumors from different subgroups and with different somatic mutations. We performed gene silencing of RHOA or CDH1 in DGC cells with small interfering RNAs for cell-based assays. We identified somatic mutations in the following genes in a significant number of early-onset DGCs: the cadherin 1 gene (CDH1), TP53, ARID1A, KRAS, PIK3CA, ERBB3, TGFBR1, FBXW7, RHOA, and MAP2K1. None of 109 early-onset DGC cases had pathogenic germline CDH1 mutations. A higher proportion of early-onset DGCs had mutations in CDH1 (42.2%) or TGFBR1 (7.3%) compared with control DGCs (17.4% and 0.9%, respectively) (P &lt; .001 and P = .014 for CDH1 and TGFBR1, respectively). In contrast, a smaller proportion of early-onset DGCs contained mutations in RHOA (9.2%) than control DGCs (19.1%) (P = .033). Late-onset DGCs in The Cancer Genome Atlas also contained less frequent mutations in CDH1 and TGFBR1 and more frequent RHOA mutations, compared with early-onset DGCs. Early-onset DGCs from women contained significantly more mutations in CDH1 or TGFBR1 than early-onset DGCs from men. CDH1 alterations, but not RHOA mutations, were associated with shorter survival times in patients with early-onset DGCs (hazard ratio, 3.4; 95% confidence interval, 1.5-7.7). RHOA activity was reduced by an R5W substitution-the RHOA mutation most frequently detected in early-onset DGCs. Silencing of CDH1, but not RHOA, increased migratory activity of DGC cells. In an integrative genomic analysis, we found higher proportions of early-onset DGCs to contain somatic mutations in CDH1 or TGFBR1 compared with late-onset DGCs. However, a smaller proportion of early-onset DGCs contained somatic mutations in RHOA than late-onset DGCs. CDH1 alterations, but not RHOA mutations, were associated with shorter survival times of patients, which might account for the aggressive clinical course of early-onset gastric cancer. Female predominance in early-onset gastric cancer may be related to relatively high rates of somatic CDH1 and TGFBR1 mutations in this population."	"MiR-130a-3p attenuates activation and induces apoptosis of hepatic stellate cells in nonalcoholic fibrosing steatohepatitis by directly targeting TGFBR1 and TGFBR2. Nonalcoholic fibrosing steatohepatitis is a uniform process that occurs throughout nonalcoholic fatty liver disease (NAFLD). MicroRNAs (miRNAs) have been shown to be involved in the biological processes, but the role and molecular mechanism of miRNAs in NAFLD are not entirely clear. In this study, we observed a significant reduction in the expression of miR-130a-3p in livers of a mouse model with fibrosis induced by a methionine-choline-deficient diet, of NAFLD patients, and in activated hepatic stellate cells (HSCs). A dual-luciferase activity assay confirmed that transforming growth factor-beta receptors (TGFBRs) 1 and 2 were both the target genes of miR-130a-3p. The hepatic expression of TGFBR1 and TGFBR2 was significantly increased. Moreover, the overexpression of miR-130a-3p in HSCs inhibited HSC activation and proliferation, concomitant with the decreased expression of TGFBR1, TGFBR2, Smad2, Smad3, matrix metalloproteinase-2 (MMP-2), MMP-9, type I collagen (Col-1), and Col-4. In addition, the overexpression of miR-130a-3p promoted HSC apoptosis by inducing the expression of caspase-dependent apoptosis genes. Transfection with si-TGFBR1 and si-TGFBR2 revealed effects on HSC function that were consistent with those of miR-130a-3p. TGFBR1 and TGFBR2 rescued the miR-130a-3p-mediated reductions in the mRNA and protein expression levels of Smad2, Smad3, Col-1, and Col-4. In conclusion, our findings suggest that miR-130a-3p might play a critical role in negatively regulating HSC activation and proliferation in the progression of nonalcoholic fibrosing steatohepatitis by directly targeting TGFBR1 and TGFBR2 via the TGF-β/SMAD signaling pathway."	"Potential ameliorative effects of grape seed-derived polyphenols against cadmium induced prostatic deficits. Grape (Vitis vinifera) is consumed as fruit and wine for people. In this study, rat model of prostatic deficits was induced by orally receiving 60mg/L cadmium chlorine (CdCl2) through drinking water for 20 weeks. Grape seed-derived polyphenols extract (GSP) was orally given for 20 weeks. Finally, the prostatic levels of E-cadherin, fibronectin, and α-smooth muscle actin were measured by immunohistochemical and qPCR analysis. The oxidative stress was measured by detecting the levels of malondialdehyde, nitric oxide, reduced glutathione/oxidized glutathione and enzymatic antioxidant status. Additionally, the prostatic expressions of transforming growth factor-β1 (TGF-β1), type I TGF-β receptor (TGF-βRI), Smad3, phosphorylation-Smad3 (p-Smad3), Smad7, nuclear related factor-2 (Nrf-2), heme oxygenase-1 (HO-1) and γ-glutamate cysteine ligase catalytic subunit (γ-GCLC) were measured by western blot. The levels of microRNA (miR)-133a/b were measured by qPCR. It was observed that GSP ameliorated the prostatic oxidative stress and fibrosis induced by CdCl2. GSP also inhibited the over-generation of TGF-β1 and p-Smad3, as well as enhanced the levels of Smad7, Nrf-2, HO-1, γ-GCLC and miR-133a/b. These results showed that GSP could attenuate Cd-induced prostatic deficits."	"BMP-7 induces apoptosis in human germinal center B cells and is influenced by TGF-β receptor type I ALK5. Selection and maturation of B cells into plasma cells producing high-affinity antibodies occur in germinal centers (GC). GCs form transiently in secondary lymphoid organs upon antigen challenge, and the GC reaction is a highly regulated process. TGF-β is a potent negative regulator, but the influence of other family members including bone morphogenetic proteins (BMPs) is less known. Studies of human peripheral blood B lymphocytes showed that BMP-6 suppressed plasmablast differentiation, whereas BMP-7 induced apoptosis. Here, we show that human naïve and GC B cells had a strikingly different receptor expression pattern. GC B cells expressed high levels of BMP type I receptor but low levels of type II receptors, whereas naïve B cells had the opposite pattern. Furthermore, GC B cells had elevated levels of downstream signaling components SMAD1 and SMAD5, but reduced levels of the inhibitory SMAD7. Functional assays of GC B cells revealed that BMP-7 suppressed the viability-promoting effect of CD40L and IL-21, but had no effect on CD40L- and IL-21-induced differentiation into plasmablasts. BMP-7-induced apoptosis was counteracted by a selective TGF-β type I receptor (ALK4/5/7) inhibitor, but not by a selective BMP receptor type I inhibitor. Furthermore, overexpression of truncated ALK5 in a B-cell line counteracted BMP-7-induced apoptosis, whereas overexpression of truncated ALK4 had no effect. BMP-7 mRNA and protein was readily detected in tonsillar B cells, indicating a physiological relevance of the study. Altogether, we identified BMP-7 as a negative regulator of GC B-cell survival. The effect was counteracted by truncated ALK5, suggesting greater complexity in regulating BMP-7 signaling than previously believed."	"Mechanisms of pulmonary fibrosis induced by core fucosylation in pericytes. Pulmonary fibrosis is a common outcome of a variety of pulmonary interstitial diseases, and myofibroblasts are the main culprit for this process. Recent studies have found that pericytes are one of the major sources of myofibroblasts; the transformation of which involves a complex process of activation of TGF-β/Smad2/3 and PDGFβ/Erk signaling pathways. We have reported that the transforming growth factor-β receptor and platelet-derived growth factor-β receptor (TGF-βR I and PDGFβR, respectively) are modified by glycosylation. Thus, we hope to regulate the above-mentioned signal pathways through core fucosylation (CF) catalyzed by α-1,6-fucosyltransferase (FUT8). Previous work has confirmed that TGF-β1 can induce the transformation of pericytes into myofibroblasts, while FUT8siRNA can inhibit such transformation. In the present study, we used an adenovirus packaging FUT8 shRNA to infect a bleomycin-induced pulmonary fibrosis mouse model and determined the effect of CF on pulmonary fibrosis by analyzing the mechanism of CF-mediated pericyte transformation. Our findings may shed new light on the mechanism of pulmonary interstitial fibrosis and provide a novel therapeutic target for clinical applications."	"Age-related expression of TGF beta family receptors in human cumulus oophorus cells. During ovarian follicle growth, local cellular interactions are essential for oocyte quality acquisition and successful fertilization. While cumulus cells (CCs) nurture oocytes, they also deliver oocyte-secreted factors (OSFs) that activate receptors on CCs. We hypothesized that disturbance of those interactions contributes to age-related lower reproductive success in women submitted to assisted reproductive technology treatments. Women aged 27-48, without recognized personal reproductive disorder, were enrolled in the study and divided in &lt;35- and ≥35-year-old groups. CCs collected upon follicle aspiration were processed for immunocytochemistry and RNA extraction. The expression patterns of OSF receptors BMPR2, ALK 4, ALK5, and activin receptor-like kinase (ALK6) were studied. Independently of age, receptors were found mostly in the cell periphery. The quantitative assay revealed that in older women, BMPR2, ALK 4, and ALK6 were all significantly decreased, whereas ALK5 was slightly increased. Female age imparts an effect on the expression of OSF receptors in CCs. The findings indicate that reproductive aging affects the local regulation of signaling pathways mediated by BMPR2, ALK6, and ALK4 receptor activation, suggesting their joint involvement."	"Exercise-induced modification of the skeletal muscle transcriptome in Arabian horses. It has been found that Arabian and Thoroughbred horses differ in muscle fiber structure and thus in physiological changes occurring in muscles during exercise. The aim of the present study was to identify the global gene expression modifications that occur in skeletal muscle following a training regime to prepare for flat racing. Whole transcriptomes of muscle (gluteus medius) were compared between three time points of tissue collection: T0 (untrained horses), T1 (horses after intense gallop phase), and T2 (horses at the end of racing season), 23 samples in total. The numerous groups of exercise-regulated differentially expressed genes (DEGs) were related to muscle cell structure and signaling and included insulin-like growth factor 1 receptor (IGF1R), insulin receptor (INSR), transforming growth factor beta receptors 1 and 2 (TGFBR1, TGFBR2), vascular endothelial growth factor B (VEGFB); epidermal growth factor (EGF), hepatocyte growth factor (HGF), and vascular endothelial growth factor D (FIGF). In Arabian horses, exercise modified the expression of genes belonging to the PPAR signaling pathway (e.g., PPARA, PPARD, and PLIN2), calcium signaling pathway, and pathways associated with metabolic processes (e.g., oxidative phosphorylation, fatty acid metabolism, glycolysis/gluconeogenesis, and citrate cycle). According to detected gene expression modifications, our results suggested that in Arabian horses, exercise switches energy generation toward fatty acid utilization and enhances glycogen transport and calcium signaling. The use of the RNA-Seq approach in analyzing the skeletal muscle transcriptome allowed for the proposal of a panel of new candidate genes potentially related to body homeostasis maintenance and racing performance in Arabian horses."	"Neuronal Activity, TGFβ-Signaling and Unpredictable Chronic Stress Modulate Transcription of Gadd45 Family Members and DNA Methylation in the Hippocampus. Neuronal activity is altered in several neurological and psychiatric diseases. Upon depolarization not only neurotransmitters are released but also cytokines and other activators of signaling cascades. Unraveling their complex implication in transcriptional control in receiving cells will contribute to understand specific central nervous system (CNS) pathologies and will be of therapeutically interest. In this study we depolarized mature hippocampal neurons in vitro using KCl and revealed increased release not only of brain-derived neurotrophic factor (BDNF) but also of transforming growth factor beta (TGFB). Neuronal activity together with BDNF and TGFB controls transcription of DNA modifying enzymes specifically members of the DNA-damage-inducible (Gadd) family, Gadd45a, Gadd45b, and Gadd45g. MeDIP followed by massive parallel sequencing and transcriptome analyses revealed less DNA methylation upon KCl treatment. Psychiatric disorder-related genes, namely Tshz1, Foxn3, Jarid2, Per1, Map3k5, and Arc are transcriptionally activated and demethylated upon neuronal activation. To analyze whether misexpression of Gadd45 family members are associated with psychiatric diseases, we applied unpredictable chronic mild stress (UCMS) as established model for depression to mice. UCMS led to reduced expression of Gadd45 family members. Taken together, our data demonstrate that Gadd45 family members are new putative targets for UCMS treatments."	"Disposition and metabolism of [<sup>14</sup>C]-galunisertib, a TGF-βRI kinase/ALK5 inhibitor, following oral administration in healthy subjects and mechanistic prediction of the effect of itraconazole on galunisertib pharmacokinetics. 1. The disposition and metabolism of galunisertib (LY2157299 monohydrate, a TGF-βRI Kinase/ALK5 Inhibitor) was characterized following a single oral dose of 150 mg of [<sup>14</sup>C]-galunisertib (100 µCi) to six healthy human subjects. 2. The galunisertib plasma half-life was 8.6 h, while the <sup>14</sup>C half-life was 10.0 h. Galunisertib was abundant in circulation (40.3% of the <sup>14</sup>C AUC024 h), with 7 additional metabolites detected in plasma. Two metabolites LSN3199597 (M5, mono-oxidation), and M4 (glucuronide of M3) were the most abundant circulating metabolites (10.7 and 9.0% of the 14C AUC024 h respectively). The pharmacological activity of LSN3199597 was tested and found to be significantly less potent than galunisertib. 3. The dose was recovered in feces (64.5%) and in urine (36.8%). Galunisertib was cleared primarily by metabolism, based on low recovery of parent in excreta (13.0% of dose). Due to the slow in vitro metabolism of galunisertib in suspended hepatocytes, a long term hepatocyte system was used to model the human excretion profile. 4. Expressed cytochromes P450 and hepatocytes indicated clearance was primarily CYP3A4-mediated. Mechanistic static modeling that incorporated small non-CYP-mediated metabolic clearance and renal clearance components predicted an AUC ratio of 4.7 for the effect of itraconazole, a strong CYP3A4 inhibitor, on galunisertib."	"Transforming Growth Factor-β Signaling in Regulatory T Cells Controls T Helper-17 Cells and Tissue-Specific Immune Responses. Regulatory T cells (Treg cells) perform suppressive functions in disparate tissue environments and against many inflammatory insults, yet the tissue-enriched factor(s) that influence Treg cell phenotype and function remain largely unknown. We have shown a vital role for transforming growth factor-β (TGF-β) signals in safe-guarding specific Treg cell functions. TGF-β signals were dispensable for steady-state Treg cell homeostasis and for Treg cell suppression of T cell proliferation and T helper-1 (Th1) cell differentiation. However, Treg cells require TGF-β signals to appropriately dampen Th17 cells and regulate responses in the gastrointestinal tract. TGF-β signaling maintains CD103 expression, promotes expression of the colon-specific trafficking molecule GPR15, and inhibits expression of GPR174, a receptor for lysophosphatidylserine, on Treg cells, collectively supporting the accumulation and retention of Treg cells in the colon and control of colitogenic responses. Thus, we reveal an unrecognized function for TGF-β signaling as an upstream factor controlling Treg cell activity in specific tissue environments."	"Efficacy of ALK5 inhibition in myelofibrosis. Myelofibrosis (MF) is a bone marrow disorder characterized by clonal myeloproliferation, aberrant cytokine production, extramedullary hematopoiesis, and bone marrow fibrosis. Although somatic mutations in JAK2, MPL, and CALR have been identified in the pathogenesis of these diseases, inhibitors of the Jak2 pathway have not demonstrated efficacy in ameliorating MF in patients. TGF-β family members are profibrotic cytokines and we observed significant TGF-β1 isoform overexpression in a large cohort of primary MF patient samples. Significant overexpression of TGF-β1 was also observed in murine clonal MPL<sup>W515L</sup> megakaryocytic cells. TGF-β1 stimulated the deposition of excessive collagen by mesenchymal stromal cells (MSCs) by activating the TGF-β receptor I kinase (ALK5)/Smad3 pathway. MSCs derived from MPL<sup>W515L</sup> mice demonstrated sustained overproduction of both collagen I and collagen III, effects that were abrogated by ALK5 inhibition in vitro and in vivo. Importantly, use of galunisertib, a clinically active ALK5 inhibitor, significantly improved MF in both MPL<sup>W515L</sup> and JAK2<sup>V617F</sup> mouse models. These data demonstrate the role of malignant hematopoietic stem cell (HSC)/TGF-β/MSC axis in the pathogenesis of MF, and provide a preclinical rationale for ALK5 blockade as a therapeutic strategy in MF."	"Selective blockade of B7-H3 enhances antitumour immune activity by reducing immature myeloid cells in head and neck squamous cell carcinoma. Immature myeloid cells including myeloid-derived suppressor cells (MDSCs) and tumour-associated macrophages (TAMs) promote tumour growth and metastasis by facilitating tumour transformation and angiogenesis, as well as by suppressing antitumour effector immune responses. Therefore, strategies designed to reduce MDSCs and TAMs accumulation and their activities are potentially valuable therapeutic goals. In this study, we show that negative immune checkpoint molecule B7-H3 is significantly overexpressed in human head and neck squamous cell carcinoma (HNSCC) specimen as compared with normal oral mucosa. Using immunocompetent transgenic HNSCC models, we observed that targeting inhibition of B7-H3 reduced tumour size. Flow cytometry analysis revealed that targeting inhibition of B7-H3 increases antitumour immune response by decreasing immunosuppressive cells and promoting cytotoxic T cell activation in both tumour microenvironment and macroenvironment. Our study provides direct in vivo evidence for a rationale for B7-H3 blockade as a future therapeutic strategy to treat patients with HNSCC."	"Substance P increases CCN2 dependent on TGF-beta yet Collagen Type I via TGF-beta1 dependent and independent pathways in tenocytes. Transforming growth factor beta 1 (TGFbeta-1) and connective tissue growth factor (CCN2) are important mediators of tissue repair and fibrosis, with CCN2 functioning as a downstream mediator of TGFβ-1. Substance P (SP) is also linked to collagen production in tenocytes. A link between SP, TGFbeta-1 and CCN2 has yet to be established in tenocytes or fibrogenic processes. We sought to determine whether SP induces tenocyte proliferation, CCN2, or collagen production via TGFbeta-1 signaling or independently in rat primary tenocytes. Tenocytes were isolated from rat tendons, cultured and stimulated by SP and/or TGFbeta-1. Cultured cells expressed proteins characteristic of tenocytes (vimentin and tenomodulin) and underwent increased proliferation dose dependently after SP and TGFbeta-1 treatments, alone or combined (more than SP alone when combined). SP induced TGFbeta-1 expression in tenocytes in both dose- and time-dependent manners. SP and TGFbeta-1, alone or combined, stimulated CCN2 expression in tenocytes and their supernatants after both 24 and 48 h of stimulation; a response blocked with addition of a TGFbeta-1 receptor inhibitor. In contrast, SP potentiated collagen type I secretion by tenocytes, a response abrogated by the TGFbeta-1 receptor inhibitor after 48 h of stimulation, but not after the shorter 24 h of stimulation. Our findings suggest that both SP and TGFbeta-1 can stimulate tenocyte fibrogenic processes, albeit differently. TGFbeta-1 pathway signaling was involved in CCN2 production at all time points examined, while SP induced collagen type I production independently prior to the onset of signaling through the TGFbeta-1 pathway."	"Activation of Transforming Growth Factor Beta 1 Signaling in Gastric Cancer-associated Fibroblasts Increases Their Motility, via Expression of Rhomboid 5 Homolog 2, and Ability to Induce Invasiveness of Gastric Cancer Cells. Fibroblasts that interact with cancer cells are called cancer-associated fibroblasts (CAFs), which promote progression of different tumor types. We investigated the characteristics and functions of CAFs in diffuse-type gastric cancers (DGCs) by analyzing features of their genome and gene expression patterns. We isolated CAFs and adjacent non-cancer fibroblasts (NFs) from 110 gastric cancer (GC) tissues from patients who underwent gastrectomy in Japan from 2008 through 2016. Cells were identified using specific markers of various cell types by immunoblot and flow cytometry. We selected pairs of CAFs and NFs for whole-exome and RNA sequencing analyses, and compared expression of specific genes using quantitative reverse transcription PCR. Protein levels and phosphorylation were compared by immunoblot and immunofluorescence analyses. Rhomboid 5 homolog 2 (RHBDF2) was overexpressed from a transgene in fibroblasts or knocked down using small interfering RNAs. Motility and invasiveness of isolated fibroblasts and GC cell lines (AGS, KATOIII, MKN45, NUGC3, NUGC4, OCUM-2MD3 and OCUM-12 cell lines) were quantified by real-time imaging analyses. We analyzed 7 independent sets of DNA microarray data from patients with GC and associated expression levels of specific genes with patient survival times. Nude mice were given injections of OCUM-2MD3 in the stomach wall; tumors and metastases were collected and analyzed by immunohistochemistry. Many of the genes with increased expression in CAFs compared with NFs were associated with transforming growth factor beta 1 (TGFB1) activity. When CAFs were cultured in extracellular matrix, they became more motile than NFs; DGC cells incubated with CAFs were also more motile and invasive in vitro than DGC cells not incubated with CAFs. When injected into nude mice, CAF-incubated DGC cells invaded a greater number of lymphatic vessels than NF-incubated DGC cells. We identified RHBDF2 as a gene overexpressed in CAFs compared with NFs. Knockdown of RHBDF2 in CAFs reduced their elongation and motility in response to TGFB1, whereas overexpression of RHBDF2 in NFs increased their motility in extracellular matrix. RHBDF2 appeared to regulate oncogenic and non-canonical TGFB1 signaling. Knockdown of RHBDF2 in CAFs reduced cleavage of the TGFB receptor 1 (TGFBR1) by ADAM metallopeptidase domain 17 (ADAM17 or TACE) and reduced expression of genes that regulate motility. Incubation of NFs with in interleukin 1 alpha (IL1A), IL1B or tumor necrosis factor, secreted by DGCs, increased fibroblast expression of RHBDF2. Simultaneous high expression of these cytokines in GC samples was associated with shorter survival times of patients. In CAFs isolated from human DGCs, we observed increased expression of RHBDF2, which regulates TGFB1 signaling. Expression of RHBDF2 in fibroblasts is induced by inflammatory cytokines (such as IL1A, IL1B, and tumor necrosis factor) secreted by DGCs. RHBDF2 promotes cleavage of TGFBR1 by activating TACE and motility of CAFs in response to TGFB1. These highly motile CAFs induce DGCs to invade extracellular matrix and lymphatic vessels in nude mice."	"Transforming growth factor β1 (TGFβ1)-induced CD44V6-NOX4 signaling in pathogenesis of idiopathic pulmonary fibrosis. Idiopathic pulmonary fibrosis (IPF) is a progressive clinical syndrome of fatal outcome. The lack of information about the signaling pathways that sustain fibrosis and the myofibroblast phenotype has prevented the development of targeted therapies for IPF. Our previous study showed that isolated fibrogenic lung fibroblasts have high endogenous levels of the hyaluronan receptor, CD44V6 (CD44 variant containing exon 6), which enhances the TGFβ1 autocrine signaling and induces fibroblasts to transdifferentiate into myofibroblasts. NADPH oxidase 4 (NOX4) enzyme, which catalyzes the reduction of O2 to hydrogen peroxide (H2O2), has been implicated in the cardiac and lung myofibroblast phenotype. However, whether CD44V6 regulates NOX4 to mediate tissue repair and fibrogenesis is not well-defined. The present study assessed the mechanism of how TGF-β-1-induced CD44V6 regulates the NOX4/reactive oxygen species (ROS) signaling that mediates the myofibroblast differentiation. Specifically, we found that NOX4/ROS regulates hyaluronan synthesis and the transcription of CD44V6 via an effect upon AP-1 activity. Further, CD44V6 is part of a positive-feedback loop with TGFβ1/TGFβRI signaling that acts to increase NOX4/ROS production, which is required for myofibroblast differentiation, myofibroblast differentiation, myofibroblast extracellular matrix production, myofibroblast invasion, and myofibroblast contractility. Both NOX4 and CD44v6 are up-regulated in the lungs of mice subjected to experimental lung injury and in cases of human IPF. Genetic (CD44v6 shRNA) or a small molecule inhibitor (CD44v6 peptide) targeting of CD44v6 abrogates fibrogenesis in murine models of lung injury. These studies support a function for CD44V6 in lung fibrosis and offer proof of concept for therapeutic targeting of CD44V6 in lung fibrosis disorders."	"miR-202 Diminishes TGFβ Receptors and Attenuates TGFβ1-Induced EMT in Pancreatic Cancer. Previous studies in our laboratory identified that 3-deazaneplanocin A (DZNep), a carbocyclic adenosine analog and histone methyl transferase inhibitor, suppresses TGFβ-induced epithelial-to-mesenchymal (EMT) characteristics. In addition, DZNep epigenetically reprograms miRNAs to regulate endogenous TGFβ1 levels via miR-663/4787-mediated RNA interference (Mol Cancer Res. 2016 Sep 13. pii: molcanres.0083.2016) (1). Although DZNep also attenuates exogenous TGFβ-induced EMT response, the mechanism of this inhibition was unclear. Here, DZNep induced miR-202-5p to target both TGFβ receptors, TGFBR1 and TGFBR2, for RNA interference and thereby contributes to the suppression of exogenous TGFβ-induced EMT in pancreatic cancer cells. Lentiviral overexpression of miR-202 significantly reduced the protein levels of both TGFβ receptors and suppressed TGFβ signaling and EMT phenotypic characteristics of cultured parenchymal pancreatic cancer cells. Consistently, transfection of anti-miRNAs against miR-202-5p resulted in increased TGFBR1 and TGFBR2 protein expressions and induced EMT characteristics in these cells. In stellate pancreatic cells, miR-202 overexpression slowed growth as well as reduced stromal extracellular membrane matrix protein expression. In orthotopic pancreatic cancer mouse models, both immunodeficient and immunocompetent, miR-202 reduced tumor burden and metastasis. Together, these findings demonstrate an alternative mechanism of DZNep in suppressing TGFβ signaling at the receptor level and uncover the EMT-suppressing role of miR-202 in pancreatic cancer.Implications: These findings support the possibility of combining small molecule-based (e.g., DZNep analogs) or large molecule-based (e.g., miRNAs) epigenetic modifiers with conventional nucleoside analogs (e.g., gemcitabine, capecitabine) to improve the antimetastatic potential of current pancreatic cancer therapy. Mol Cancer Res; 15(8); 1029-39. ©2017 AACR."	"TGFβ engages MEK/ERK to differentially regulate benign and malignant pancreas cell function. While TGFβ signals are anti-proliferative in benign and well-differentiated pancreatic cells, TGFβ appears to promote the progression of advanced cancers. To better understand dysregulation of the TGFβ pathway, we first generated mouse models of neoplastic disease with TGFβ receptor deficiencies. These models displayed reduced levels of pERK irrespective of KRAS mutation. Furthermore, exogenous TGFβ led to rapid and sustained TGFBR1-dependent ERK phosphorylation in benign pancreatic duct cells. Similar to results that our group has published in colon cancer cells, inhibition of ERK phosphorylation in duct cells mitigated TGFβ-induced upregulation of growth suppressive pSMAD2 and p21, prevented downregulation of the pro-growth signal CDK2 and ablated TGFβ-induced EMT. These observations suggest that ERK is a key factor in growth suppressive TGFβ signals, yet may also contribute to detrimental TGFβ signaling such as EMT. In neoplastic PanIN cells, pERK was not necessary for either TGFβ-induced pSMAD2 phosphorylation or CDK2 repression, but was required for upregulation of p21 and EMT indicating a partial divergence between TGFβ and MEK/ERK in early carcinogenesis. In cancer cells, pERK had no effect on TGFβ-induced upregulation of pSMAD2 and p21, suggesting the two pathways have completely diverged with respect to the cell cycle. Furthermore, inhibition of pERK both reduced levels of CDK2 and prevented EMT independent of exogenous TGFβ, consistent with most observations identifying pERK as a tumor promoter. Combined, these data suggest that during carcinogenesis pERK initially facilitates and later antagonizes TGFβ-mediated cell cycle arrest, yet remains critical for the pathological, EMT-inducing arm of TGFβ signaling."	"Deficiency in Neuronal TGF-β Signaling Leads to Nigrostriatal Degeneration and Activation of TGF-β Signaling Protects against MPTP Neurotoxicity in Mice. Transforming growth factor-β (TGF-β) plays an important role in the development and maintenance of embryonic dopaminergic (DA) neurons in the midbrain. To study the function of TGF-β signaling in the adult nigrostriatal system, we generated transgenic mice with reduced TGF-β signaling in mature neurons. These mice display age-related motor deficits and degeneration of the nigrostriatal system. Increasing TGF-β signaling in the substantia nigra through adeno-associated virus expressing a constitutively active type I receptor significantly reduces 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine-induced dopaminergic neurodegeneration and motor deficits. These results suggest that TGF-β signaling is critical for adult DA neuron survival and that modulating this signaling pathway has therapeutic potential in Parkinson disease.SIGNIFICANCE STATEMENT We show that reducing Transforming growth factor-β (TGF-β) signaling promotes Parkinson disease-related pathologies and motor deficits, and increasing TGF-β signaling reduces neurotoxicity of 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine, a parkinsonism-inducing agent. Our results provide a rationale to pursue a means of increasing TGF-β signaling as a potential therapy for Parkinson's disease."	"Design, synthesis and optimization of 7-substituted-pyrazolo[4,3-b]pyridine ALK5 (activin receptor-like kinase 5) inhibitors. A series of potent ALK5 inhibitors were designed using a SBDD approach and subsequently optimized to improve drug likeness. Starting with a 4-substituted quinoline screening hit, SAR was conducted using a ALK5 binding model to understand the binding site and optimize activity. The resulting inhibitors displayed excellent potency but were limited by high in vitro clearance in rat and human microsomes. Using a scaffold morphing strategy, these analogs were transformed into a related pyrazolo[4,3-b]pyridine series with improved ADME properties."	"Reduced expression of let-7f activates TGF-β/ALK5 pathway and leads to impaired ischaemia-induced neovascularization after cigarette smoke exposure. This study sought to determine the potential role of microRNAs (miRNAs) in the detrimental effects of cigarette smoke on angiogenesis and neovascularization. Using large-scale miRNA profiling and qRT-PCR analyses, we identified let-7f as a pro-angiogenic miRNA which expression is significantly reduced in HUVECs treated with cigarette smoke extracts (CSE), and in the ischemic muscles of mice that are exposed to cigarette smoke (MES). In a mouse model of hindlimb ischaemia, intramuscular injection of let-7f mimic restored ischaemia-induced neovascularization in MES. Doppler flow ratios and capillary density in ischemic muscles were significantly improved in MES treated with let-7f mimic. Clinically, this was associated with reduced ambulatory impairment and hindlimb ischaemic damage. Treatment with let-7f mimic could also rescue pro-angiogenic cell (PAC) number and function (attachment, proliferation, migration) in MES. ALK5 (TGF-βR1), an important modulator of angiogenesis, is a target of let-7f. Here we show that ALK5 is increased in HUVECs exposed to CSE and in the ischaemic muscles of MES. This is associated with a downstream activation of the anti-angiogenic factors SMAD2/3 and PAI-1. Importantly, treatment with let-7f mimic reduces the expression of ALK5, SMAD2/3 and PAI-1 both in vitro and in vivo. Moreover, let-7f overexpression or ALK5 inhibition can rescue angiogenesis in HUVECs exposed to CSE. Cigarette smoke exposure is associated with reduced expression of let-7f and activation of the anti-angiogenic TGF-β/ALK5 pathway. Overexpression of let-7f using a miRNA mimic could constitute a novel therapeutic strategy to improve ischaemia-induced neovascularization in pathological conditions."	"Deep Infiltrating Endometriosis and Endometrial Adenocarcinoma Express High Levels of Myostatin and Its Receptors Messenger RNAs. Myostatin is a growth factor member of the transforming growth factor β superfamily, which is known to play major roles in cell proliferation and differentiation. The present study investigated the messenger RNA (mRNA) expression of myostatin and myostatin receptors (activin receptor-like kinase 4 [ALK4], transforming growth factor (TGF)-β type I receptor kinase [ALK5] and activin receptor type IIB [ActRIIB]) in endometrium of healthy women during menstrual cycle as well as in benign (endometriosis, polyps) and malignant (endometrial adenocarcinoma) conditions. Endometrial specimens were collected by hysteroscopy, whereas endometriotic lesions were collected by laparoscopy, and adenocarcinomas were sampled after hysterectomy. Total RNA was extracted from tissue homogenates, and gene expression was assessed by quantitative real-time polymerase chain reaction. Myostatin and myostatin receptors mRNAs were expressed by healthy endometrium throughout the menstrual cycle, with no differences between the proliferative and secretory phase. The highest myostatin mRNA expression was found in patients with deep infiltrating endometriosis (DIE) and in endometrial carcinoma; expression was also found in ovarian endometrioma (OMA ) and endometrial polyps. Myostatin receptors mRNA expression was higher in DIE and adenocarcinomas compared to control endometrium. The expression of ALK5 and ActRIIB in OMA was higher than in controls, whereas polyps had an increased expression of ALK5 mRNA. In conclusion, the present data showed for the first time the expression of myostatin in healthy endometrium and a higher expression in endometriosis and endometrial cancer, suggesting myostatin involvement in human endometrial physiology and related pathologies."	"miRNAs, single nucleotide polymorphisms (SNPs) and age-related macular degeneration (AMD). Advanced age-related macular degeneration (AAMD) is a complex sight-threating disease of public health significance. Micro RNAs (miRNAs) have been proposed as biomarkers for AAMD. The presence of certain single nucleotide polymorphisms (SNPs) may influence the explanatory value of these biomarkers. Here we present findings from an integrated approach used to determine whether AAMD-associated SNPs have the capacity to influence miRNA-mRNA pairing and, if so, to what extent such pairing may be manifested in a discrete AAMD transcriptome. Using a panel of 8854 SNPs associated with AAMD at p-values ≤5.0E-7 from a cohort of &gt;30,000 elderly people, we identified SNPs in miRNA target-encoding constituents of: (1) regulator of complement activation (RCA) genes (rs390679, CFHR1, p≤2.14E-214 | rs12140421, CFHR3, p≤4.63E-29); (2) genes of major histocompatibility complex (MHC) loci (rs4151672, CFB, p≤8.91E-41 | rs115404146, HLA-C, p≤6.32E-12 | rs1055821, HLA-B, p≤1.93E-9 | rs1063355, HLA-DQB1, p≤6.82E-14); and (3) genes of the 10q26 AAMD locus (rs1045216, PLEKHA1, p≤4.17E-142 | rs2672603, ARMS2, p≤7.14E-46). We used these findings with existing data on AAMD-related retinal miRNA and transcript profiles for the purpose of making inferences on SNP-mRNA-miRNA-AAMD relationships. Four of 12 miRNAs significantly elevated in AAMD retina (hsa-miR-155-5p, hsa-let-7a-5p, hsa-let-7b-5p hsa-let-7d-5p) also showed strong pairing capacity (TarBase 7.1 context++ score &lt;-0.2, miRanda 3.3 pairing score &gt;150) with miRNA target transcripts encoded by AAMD-associated SNPs resident in HLA-DQB1 (rs1063355, hsa-miR-155-5p) and TGFBR1 (rs868, hsa-let-7). Three of the 12 miRNAs overexpressed in AAMD retina are inducible by NFkB and have high affinity targets in the complement factor H (CFH) mRNA 3' UTR. We used ENSEMBL to identify polymorphic regions in the CFH mRNA 3' UTR with the capacity to disrupt miRNA-mRNA pairing. Two variants (rs766666504 and rs459598) existed in DNA sequence encoding the seed region of hsa-miR-146a-5p in the CFH mRNA 3' UTR - as this miRNA is also elevated in both vitreous and serum of people with AAMD, it shows great value as a biomarker. Our findings suggest that knowledge on the nature of DNA sequence variation may increase the explanatory power of miRNA biomarkers in genetically diverse populations, while yielding information with which to develop: (1) mechanistic tests on processes implicated in AMD pathogenesis; and, (2) site-specific small molecules (synthetic mimetics or anti-miRNAs) with preventive or therapeutic efficacy for AAMD."	"A83-01 inhibits TGF-β-induced upregulation of Wnt3 and epithelial to mesenchymal transition in HER2-overexpressing breast cancer cells. The aim of this study is to investigate the mechanisms of interactions between TGF-β and Wnt/β-catenin pathways that induce and regulate EMT and promote breast cancer cells to become resistant to treatment. The effect of TGF-β on Wnt/β-catenin signaling pathway was examined by using a human Wnt/β-catenin-regulated cDNA plate array and western blot analysis. The interaction of Twist at promoter of Wnt3 was examined by chromatin immunoprecipitation (ChIP) assay. Secreted Wnt3 level was determined by ELISA assay. HER2-overexpressing breast cancer cells treated with TGF-β have a reduced response to trastuzumab and exhibited EMT-like phenotype. The TGF-β-induced EMT in HER2-cells was concordant with upregulation of Wnt3 and β-catenin pathways. The TGF-β-induced induction of Wnt3 during EMT was found to be Smad3-dependent. ChIP analysis identified occupancy of Twist at promoter region of Wnt3. Knock-down of Twist by shRNA confirmed the significance of Twist in response to TGF-β regulating Wnt3 during EMT. Subsequently, TGF-β-induced matrix metalloproteinases, MMP1, MMP7, MMP9, MMP26, Vascular endothelial growth factors (VEGF), and activation of Wnt/β-catenin signaling were repressed by the shRNA treatment. TGF-βR1 ALK5 kinase inhibitor, A83-01 can effectively prevent the TGF-β-induced Twist and Wnt3. Co-treating A83-01 and trastuzumab inhibited TGF-β-induced cell invasion significantly in both trastuzumab responsive and resistant cells. Our data demonstrated an important interdependence between TGF-β and Wnt/β-catenin pathways inducing EMT in HER2-overexpressing breast cancer cells. Twist served as a linkage between the two pathways during TGF-β-induced EMT. A83-01 could inhibit the TGF-β-initiated pathway interactions and enhance HER2-cells response to trastuzumab treatment."	"Novel ALK5 inhibitor TP0427736 reduces TGF-β induced growth inhibition in human outer root sheath cells and elongates anagen phase in mouse hair follicles. Androgenic alopecia (AGA) occurs as a result of the contraction of the anagen phase because of the action of androgens on hair follicles. TGF-β production from dermal papillae is enhanced by androgens, and growth inhibition of hair-follicle cells is induced by TGF-β, and the hair cycle progresses from the anagen phase to the catagen phase. We investigated both the in vitro and in vivo potency of the newly identified ALK5 inhibitor TP0427736 {6-[4-(4-methyl-1,3-thiazol-2-yl)-1H-imidazol-5-yl]-1,3-benzothiazole}. For in vitro study, kinase inhibitory activity was evaluated with ELISA, and inhibitory activity against TGF-β-induced Smad2/3 phosphorylation in A549 cells and TGF-β-induced growth inhibition of human outer root sheath cells were assayed using ELISA. For in vivo study, we used a mouse model that had been synchronized through dorsal hair depilation. TP0427736 inhibited ALK5 kinase activity with an IC50 of 2.72nM; this effect was 300-fold higher than the inhibitory effect on ALK3. In cell-based assays, TP0427736 inhibited Smad2/3 phosphorylation in A549 cells and decreased the growth inhibition of human outer root sheath cells. The topical application of TP0427736 significantly decreased Smad2 phosphorylation in mouse skin, and its repeated application suppressed the shortening of average hair follicle length during the transition from the late anagen phase to the catagen phase. TP0427736, a potent ALK5 inhibitor with appropriate in vitro and in vivo profiles, may serve as a potential new therapy for AGA. ."	"Reduced Transforming Growth Factor-β Activity in the Endometrium of Women With Heavy Menstrual Bleeding. Heavy menstrual bleeding (HMB) is common and incapacitating. Aberrant menstrual endometrial repair may result in HMB. The transforming growth factor (TGF)-β superfamily contributes to tissue repair, but its role in HMB is unknown. We hypothesized that TGF-β1 is important for endometrial repair, and women with HMB have aberrant TGF-β1 activity at menses. Endometrial biopsies were collected from women, and menstrual blood loss objectively measured [HMB &gt;80 mL/cycle; normal menstrual bleeding (NMB) &lt;80 mL]. Immunohistochemistry and reverse transcription polymerase chain reaction examined endometrial TGF-β1 ligand, receptors, and downstream SMADs in women with NMB and HMB. The function and regulation of TGF-β1 were examined using cell culture. TGFB1 mRNA was maximal immediately prior to menses, but no differences detected between women with NMB and HMB at any cycle stage. Histoscoring of TGFB1 revealed reduced staining in the stroma during menses in women with HMB (P &lt; 0.05). There were no significant differences in TGFBR1/2 or TGFBR1/2 immunostaining. Cortisol increased activation of TGFB1 in the supernatant of human endometrial stromal cells (HES; P &lt; 0.05) via thrombospondin-1. Endometrial SMAD2 and SMAD3 were lower in women with HMB during menstruation (P &lt; 0.05), and decreased phosphorylated SMAD2/3 immunostaining was seen in glandular epithelial cells during the late secretory phase (P &lt; 0.05). Wound scratch assays revealed increased repair in HES cells treated with TGF-β1 versus control (P &lt; 0.05). Women with HMB had decreased TGF-β1 and SMADs perimenstrually. Cortisol activated latent TGF-β1 to enhance endometrial stromal cell repair. Decreased TGF-β1 activity may hinder repair of the denuded menstrual endometrium, resulting in HMB."	"MicroRNA-142 regulates inflammation and T cell differentiation in an animal model of multiple sclerosis. MicroRNAs have emerged as an important class of modulators of gene expression. These molecules influence protein synthesis through translational repression or degradation of mRNA transcripts. Herein, we investigated the potential role of miR-142a isoforms, miR-142a-3p and miR-142a-5p, in the context of autoimmune neuroinflammation. The expression levels of two mature isoforms of miR-142 were measured in the brains of patients with multiple sclerosis (MS) and the CNS tissues from mice with experimental autoimmune encephalomyelitis (EAE), an animal model of MS. Expression analyses were also performed in mitogen and antigen-stimulated splenocytes, as well as macrophages and astrocytes using real-time RT-PCR. The role of the mature miRNAs was then investigated in T cell differentiation by transfection of CD4<sup>+</sup> T cells, followed by flow cytometric analysis of intracellular cytokines. Luciferase assays using vectors containing the 3'UTR of predicted targets were performed to confirm the interaction of miRNA sequences with transcripts. Expression of targets were then analyzed in activated splenocytes and MS/EAE tissues. Expression of miR-142-5p was significantly increased in the frontal white matter from MS patients compared with white matter from non-MS controls. Likewise, expression levels of miR-142a-5p and miR-142a-3p showed significant upregulation in the spinal cords of EAE mice at days 15 and 25 post disease induction. Splenocytes stimulated with myelin oligodendrocyte glycoprotein (MOG) peptide or anti-CD3/anti-CD28 antibodies showed upregulation of miR-142a-5p and miR-142a-3p isoforms, whereas stimulated bone marrow-derived macrophages and primary astrocytes did not show any significant changes in miRNA expression levels. miR-142a-5p overexpression in activated lymphocytes shifted the pattern of T cell differentiation towards Th1 cells. Luciferase assays revealed SOCS1 and TGFBR1 as direct targets of miR-142a-5p and miR-142a-3p, respectively, and overexpression of miRNA mimic sequences suppressed the expression of these target transcripts in lymphocytes. SOCS1 levels were also diminished in MS white matter and EAE spinal cords. Our findings suggest that increased expression of miR-142 isoforms might be involved in the pathogenesis of autoimmune neuroinflammation by influencing T cell differentiation, and this effect could be mediated by interaction of miR-142 isoforms with SOCS1 and TGFBR-1 transcripts."	"Down-regulation of miR-15a/b accelerates fibrotic remodelling in the Type 2 diabetic human and mouse heart. Aim: Myocardial fibrosis is a well-established cause of increased myocardial stiffness and subsequent diastolic dysfunction in the diabetic heart. The molecular regulators that drive the process of fibrotic events in the diabetic heart are still unknown. We determined the role of the microRNA (miR)-15 family in fibrotic remodelling of the diabetic heart.Methods and results: Right atrial appendage (RAA) and left ventricular (LV) biopsy tissues collected from diabetic and non-diabetic (ND) patients undergoing coronary artery bypass graft surgery showed significant down-regulation of miR-15a and -15b. This was associated with marked up-regulation of pro-fibrotic transforming growth factor-β receptor-1 (TGFβR1) and connective tissue growth factor (CTGF), direct targets for miR-15a/b and pro-senescence p53 protein. Interestingly, down-regulation of miR-15a/b preceded the development of diastolic dysfunction and fibrosis in Type 2 diabetic mouse heart. Therapeutic restoration of miR-15a and -15b in HL-1 cardiomyocytes reduced the activation of pro-fibrotic TGFβR1 and CTGF, and the pro-senescence p53 protein expression, confirming a causal regulation of these fibrotic and senescence mediators by miR-15a/b. Moreover, conditioned medium (CM) collected from cardiomyocytes treated with miR-15a/b markedly diminished the differentiation of diabetic human cardiac fibroblasts.Conclusion: Our results provide first evidence that early down-regulation of miR-15a/b activates fibrotic signalling in diabetic heart, and hence could be a potential target for the treatment/prevention of diabetes-induced fibrotic remodelling of the heart."	"mir-126 rs4636297 and TGFβRI rs334348 functional gene variants are associated with susceptibility to endometriosis and its severity. microRNAs (miRNAs) are negative regulators in a variety of cellular processes that occur in endometriosis. Therefore, functional polymorphisms in miRNA and miRNA binding sites may affect gene expression and contribute to susceptibility of endometriosis. In this study, we evaluated the association of two miRNA related polymorphisms, mir-126 rs4636297 and TGFβRI rs334348, with endometriosis risk and its severity. This case-control study was done on 157 endometriosis patients and 252 healthy women as a control group. Tetra amplification refractory mutation system-polymerase chain reaction (tetra-ARMS PCR) was designed to determine the polymorphisms. Our finding showed significant differences in genotype frequency of mir-126 rs4636297 between the groups (χ<sup>2</sup> = 6.26, p = 0.044). A significant protection against endometriosis was found for mir-126 rs4636297 in allele (G versus A allele: OR = 0.695, 95% CI = 0.519-0.931, p = 0.015) and genotype (GG versus AA genotype: OR = 0.451, 95%CI = 0.233-0.873, p = 0.018). Significant association was also observed between the A allele and severity of endometriosis (OR = 0.478, 95%CI = 0.297-0.768, p = 0.002). Moreover, we found a significant association between AA genotype with the risk of endometriosis (OR = 0.493, 95%CI = 0.250-0.970, p = 0.041) and its severity (OR = 0.240, 95%CI = 0.065-0.883, p = 0.032) regarding TGFβRI rs334348 polymorphism. These finding suggest that, for the first time, mir-126 rs4636297 and TGFβRI rs334348 polymorphisms may influence individual's susceptibility to endometriosis and its severity."	"Supraphysiological levels of GDF11 induce striated muscle atrophy. Growth and differentiation factor (GDF) 11 is a member of the transforming growth factor β superfamily recently identified as a potential therapeutic for age-related cardiac and skeletal muscle decrements, despite high homology to myostatin (Mstn), a potent negative regulator of muscle mass. Though several reports have refuted these data, the in vivo effects of GDF11 on skeletal muscle mass have not been addressed. Using in vitro myoblast culture assays, we first demonstrate that GDF11 and Mstn have similar activities/potencies on activating p-SMAD2/3 and induce comparable levels of differentiated myotube atrophy. We further demonstrate that adeno-associated virus-mediated systemic overexpression of GDF11 in C57BL/6 mice results in substantial atrophy of skeletal and cardiac muscle, inducing a cachexic phenotype not seen in mice expressing similar levels of Mstn. Greater cardiac expression of Tgfbr1 may explain this GDF11-specific cardiac phenotype. These data indicate that bioactive GDF11 at supraphysiological levels cause wasting of both skeletal and cardiac muscle. Rather than a therapeutic agent, GDF11 should be viewed as a potential deleterious biomarker in muscle wasting diseases."	"The role of ZFP580, a novel zinc finger protein, in TGF-mediated cytoprotection against chemical hypoxia‑induced apoptosis in H9c2 cardiac myocytes. Zing finger protein 580 (ZFP580) is a novel Cys2-His2 zinc-finger transcription factor that has an anti-apoptotic role in myocardial cells. It is involved in the endothelial transforming growth factor‑β1 (TGF‑β1) signal transduction pathway as a mothers against decapentaplegic homolog (Smad)2 binding partner. The aim of the present study was to determine the involvement of ZFP580 in TGF‑β1‑mediated cytoprotection against chemical hypoxia‑induced apoptosis, using H9c2 cardiac myocytes. Hypoxia was chemically induced in H9c2 myocardial cells by exposure to cobalt chloride (CoCl2). In response to hypoxia, cell viability was decreased, whereas the expression levels of hypoxia inducible factor-1α and ZFP580 were increased. Pretreatment with TGF‑β1 attenuated CoCl2‑induced cell apoptosis and upregulated ZFP580 protein expression; however, these effects could be suppressed by SB431542, an inhibitor of TGF‑β type I receptor and Smad2/3 phosphorylation. Furthermore, suppression of ZFP580 expression by RNA interference reduced the anti‑apoptotic effects of TGF‑β1 and thus increased CoCl2‑induced apoptosis. B‑cell lymphoma (Bcl)‑2‑associated X protein/Bcl‑2 ratio, reactive oxygen species generation and caspase‑3 activation were also increased following ZFP580 inactivation. In conclusion, these results indicate that ZFP580 is a component of the TGF-β1/Smad signaling pathway, and is involved in the protective effects of TGF‑β1 against chemical hypoxia‑induced cell apoptosis, through inhibition of the mitochondrial apoptotic pathway."	"Structural basis for potency differences between GDF8 and GDF11. Growth/differentiation factor 8 (GDF8) and GDF11 are two highly similar members of the transforming growth factor β (TGFβ) family. While GDF8 has been recognized as a negative regulator of muscle growth and differentiation, there are conflicting studies on the function of GDF11 and whether GDF11 has beneficial effects on age-related dysfunction. To address whether GDF8 and GDF11 are functionally identical, we compared their signaling and structural properties. Here we show that, despite their high similarity, GDF11 is a more potent activator of SMAD2/3 and signals more effectively through the type I activin-like receptor kinase receptors ALK4/5/7 than GDF8. Resolution of the GDF11:FS288 complex, apo-GDF8, and apo-GDF11 crystal structures reveals unique properties of both ligands, specifically in the type I receptor binding site. Lastly, substitution of GDF11 residues into GDF8 confers enhanced activity to GDF8. These studies identify distinctive structural features of GDF11 that enhance its potency, relative to GDF8; however, the biological consequences of these differences remain to be determined."	"MicroRNA-98 inhibits TGF-β1-induced differentiation and collagen production of cardiac fibroblasts by targeting TGFBR1. To investigate the effects of miR-98 on TGF-β1-induced cardiac fibrosis in human cardiac fibroblasts (HCFs), and to establish the mechanism underlying these effects, HCFs were transfected with miR-98 inhibitor or mimic, and then treated with or without TGF-β1. The level of miR-98 was determined by qRT-PCR in TGF-β1-induced HCFs. Cell differentiation and collagen accumulation of HCFs were detected by qRT-PCR and Western blot assays, respectively. The mRNA and protein expressions of TGFBR1 were determined by qRT-PCR and Western blotting. In this study, the outcomes showed that TGF-β1 could dramatically decrease the level of miR-98 in a time- and concentration-dependent manner. Upregulation of miR-98 dramatically improved TGF-β1-induced increases in cell differentiation and collagen accumulation of HCFs. Moreover, bioinformatics analysis predicted that the TGFBR1 was a potential target gene of miR-98. Luciferase reporter assay demonstrated that miR-98 could directly target TGFBR1. Inhibition of TGFBR1 had the similar effect as miR-98 overexpression. Downregulation of TGFBR1 in HCFs transfected with miR-98 inhibitor partially reversed the protective effect of miR-98 overexpression on TGF-β1-induced cardiac fibrosis in HCFs. Upregulation of miR-98 ameliorates TGF-β1-induced differentiation and collagen accumulation of HCFs by downregulation of TGFBR1. These results provide further evidence for protective effect of miR-98 overexpression on TGF-β1-induced cardiac fibrosis."	"TGFB1 represses the expression of SF1 and LRH1 to inhibit E2 production in rat LCs. Leydig cells (LCs) in the adult testis have been identified as the major sites of oestrogen production, which is crucial for mammalian germ cell differentiation. Our previous work showed that transforming growth factor beta 1 (TGFB1) inhibits estradiol (E2) secretion via down-regulating Cyp19 gene expression in mature rat LCs. However, the mechanism remains unclear. In the present study, the effects of TGFB1 on the expression levels of steroidogenic factor 1 (SF1), liver receptor homolog 1 (LRH1), cAMP response element-binding protein (CREB) and cAMP responsive element modulator (CREM) were evaluated both in primary cultured LCs and in rat testis. The involvement of TGFB1 signalling in the regulation of SF1 and LRH1 expression was then validated by applying the inhibitor of the TGFB type 1 receptor (TGFBR1) SB431542. Moreover, the expression of CYP19 in testicular LCs was investigated and the production of E2 in testicular interstitial fluid (TIF) was measured. The results showed that TGFB1 especially down-regulated the expression levels of SF1 and LRH1 both in primary cultured LCs and in rat testis. The down-regulations of TGFB1 in the production of E2 in TIF and the expression of CYP19 in testicular LCs were also observed in vivo These inhibitory effects could be reversed by TGFBR1 inhibitor SB431542. Our findings suggest that TGFB1 may act through the canonical signalling pathway involving ALK5 to restrain SF1 and LRH1 accumulation and eventually attenuate Cyp19 transcription and oestrogen production in LCs."	"An engineered transforming growth factor β (TGF-β) monomer that functions as a dominant negative to block TGF-β signaling. The transforming growth factor β isoforms, TGF-β1, -β2, and -β3, are small secreted homodimeric signaling proteins with essential roles in regulating the adaptive immune system and maintaining the extracellular matrix. However, dysregulation of the TGF-β pathway is responsible for promoting the progression of several human diseases, including cancer and fibrosis. Despite the known importance of TGF-βs in promoting disease progression, no inhibitors have been approved for use in humans. Herein, we describe an engineered TGF-β monomer, lacking the heel helix, a structural motif essential for binding the TGF-β type I receptor (TβRI) but dispensable for binding the other receptor required for TGF-β signaling, the TGF-β type II receptor (TβRII), as an alternative therapeutic modality for blocking TGF-β signaling in humans. As shown through binding studies and crystallography, the engineered monomer retained the same overall structure of native TGF-β monomers and bound TβRII in an identical manner. Cell-based luciferase assays showed that the engineered monomer functioned as a dominant negative to inhibit TGF-β signaling with a Ki of 20-70 nm Investigation of the mechanism showed that the high affinity of the engineered monomer for TβRII, coupled with its reduced ability to non-covalently dimerize and its inability to bind and recruit TβRI, enabled it to bind endogenous TβRII but prevented it from binding and recruiting TβRI to form a signaling complex. Such engineered monomers provide a new avenue to probe and manipulate TGF-β signaling and may inform similar modifications of other TGF-β family members."	"Transforming growth factor β induces bone marrow mesenchymal stem cell migration via noncanonical signals and N-cadherin. Transforming growth factor-beta (TGF-β) induces the migration and mobilization of bone marrow-derived mesenchymal stem cells (BM-MSCs) to maintain bone homeostasis during bone remodeling and facilitate the repair of peripheral tissues. Although many studies have reported the mechanisms through which TGF-β mediates the migration of various types of cells, including cancer cells, the intrinsic cellular mechanisms underlying cellular migration, and mobilization of BM-MSCs mediated by TGF-β are unclear. In this study, we showed that TGF-β activated noncanonical signaling molecules, such as Akt, extracellular signal-regulated kinase 1/2 (ERK1/2), focal adhesion kinase (FAK), and p38, via TGF-β type I receptor in human BM-MSCs and murine BM-MSC-like ST2 cells. Inhibition of Rac1 by NSC23766 and Src by PP2 resulted in impaired TGF-β-mediated migration. These results suggested that the Smad-independent, noncanonical signals activated by TGF-β were necessary for migration. We also showed that N-cadherin-dependent intercellular interactions were required for TGF-β-mediated migration using functional inhibition of N-cadherin with EDTA treatment and a neutralizing antibody (GC-4 antibody) or siRNA-mediated knockdown of N-cadherin. However, N-cadherin knockdown did not affect the global activation of noncanonical signals in response to TGF-β. Therefore, these results suggested that the migration of BM-MSCs in response to TGF-β was mediated through N-cadherin and noncanonical TGF-β signals."	"Are Patients With Loeys-Dietz Syndrome Misdiagnosed With Beals Syndrome? Beals syndrome, also known as congenital contractural arachnodactyly (Online Mendelian Inheritance in Man: 121050), is an autosomal dominant disorder caused by a mutation in FBN2 that is typically characterized by congenital contractures and arachnodactyly. It shares a number of phenotypic features with Loeys-Dietz syndrome (Online Mendelian Inheritance in Man: 609192). Loeys-Dietz syndrome, initially described in 2005, is associated with mutations for the transforming growth factor β receptor and is characterized by findings of cerebral, thoracic, and abdominal arterial aneurysms. This report describes a 17-year-old male patient with a typical neonatal diagnosis of Beals syndrome. At age 15 years, an echocardiogram conducted in response to an aortic dissection in his father showed moderate aortic root dilation, prompting comprehensive testing for aortopathies, revealing a mutation in TGFBR1, thereby changing the diagnosis to Loeys-Dietz syndrome. Previously published reports have not implicated any mutation of the transforming growth factor β receptor genes in cases of Beals syndrome. This case underscores that due to significant phenotypic overlap, there is utility in a full panel of testing, including genes for hereditary connective tissue disorders with vascular involvement, as well as FBN2. Likewise, young patients who have tested negative for FBN2 should be tested for hereditary connective tissue disorders with vascular involvement."	"Suppression of Transforming Growth Factor-β Signaling Delays Cellular Senescence and Preserves the Function of Endothelial Cells Derived from Human Pluripotent Stem Cells. Transplantation of vascular cells derived from human pluripotent stem cells (hPSCs) offers an attractive noninvasive method for repairing the ischemic tissues and for preventing the progression of vascular diseases. Here, we found that in a serum-free condition, the proliferation rate of hPSC-derived endothelial cells is quickly decreased, accompanied with an increased cellular senescence, resulting in impaired gene expression of endothelial nitric oxide synthase (eNOS) and impaired vessel forming capability in vitro and in vivo. To overcome the limited expansion of hPSC-derived endothelial cells, we screened small molecules for specific signaling pathways and found that inhibition of transforming growth factor-β (TGF-β) signaling significantly retarded cellular senescence and increased a proliferative index of hPSC-derived endothelial cells. Inhibition of TGF-β signaling extended the life span of hPSC-derived endothelial and improved endothelial functions, including vascular network formation on Matrigel, acetylated low-density lipoprotein uptake, and eNOS expression. Exogenous transforming growth factor-β1 increased the gene expression of cyclin-dependent kinase inhibitors, p15<sup>Ink4b</sup> , p16<sup>Ink4a</sup> , and p21<sup>CIP1</sup> , in endothelial cells. Conversely, inhibition of TGF-β reduced the gene expression of p15<sup>Ink4b</sup> , p16<sup>Ink4a</sup> , and p21<sup>CIP1</sup> . Our findings demonstrate that the senescence of newly generated endothelial cells from hPSCs is mediated by TGF-β signaling, and manipulation of TGF-β signaling offers a potential target to prevent vascular aging. Stem Cells Translational Medicine 2017;6:589-600."	"Lumican Peptides: Rational Design Targeting ALK5/TGFBRI. Lumican, a small leucine rich proteoglycan (SLRP), is a component of extracellular matrix which also functions as a matrikine regulating multiple cell activities. In the cornea, lumican maintains corneal transparency by regulating collagen fibrillogenesis, promoting corneal epithelial wound healing, regulating gene expression and maintaining corneal homeostasis. We have recently shown that a peptide designed from the 13 C-terminal amino acids of lumican (LumC13) binds to ALK5/TGFBR1 (type1 receptor of TGFβ) to promote wound healing. Herein we evaluate the mechanism by which this synthetic C-terminal amphiphilic peptide (LumC13), binds to ALK5. These studies clearly reveal that LumC13-ALK5 form a stable complex. In order to determine the minimal amino acids required for the formation of a stable lumican/ALK5 complex derivatives of LumC13 were designed and their binding to ALK5 investigated in silico. These LumC13 derivatives were tested both in vitro and in vivo to evaluate their ability to promote corneal epithelial cell migration and corneal wound healing, respectively. These validations add to the therapeutic value of LumC13 (Lumikine) and aid its clinical relevance of promoting the healing of corneal epithelium debridement. Moreover, our data validates the efficacy of our computational approach to design active peptides based on interactions of receptor and chemokine/ligand."	"Fluid shear stress-induced TGF-β/ALK5 signaling in renal epithelial cells is modulated by MEK1/2. Renal tubular epithelial cells are exposed to mechanical forces due to fluid flow shear stress within the lumen of the nephron. These cells respond by activation of mechano-sensors located at the plasma membrane or the primary cilium, having crucial roles in maintenance of cellular homeostasis and signaling. In this paper, we applied fluid shear stress to study TGF-β signaling in renal epithelial cells with and without expression of the Pkd1-gene, encoding a mechano-sensor mutated in polycystic kidney disease. TGF-β signaling modulates cell proliferation, differentiation, apoptosis, and fibrotic deposition, cellular programs that are altered in renal cystic epithelia. SMAD2/3-mediated signaling was activated by fluid flow, both in wild-type and Pkd1 <sup>-/-</sup> cells. This was characterized by phosphorylation and nuclear accumulation of p-SMAD2/3, as well as altered expression of downstream target genes and epithelial-to-mesenchymal transition markers. This response was still present after cilia ablation. An inhibitor of upstream type-I-receptors, ALK4/ALK5/ALK7, as well as TGF-β-neutralizing antibodies effectively blocked SMAD2/3 activity. In contrast, an activin-ligand trap was ineffective, indicating that increased autocrine TGF-β signaling is involved. To study potential involvement of MAPK/ERK signaling, cells were treated with a MEK1/2 inhibitor. Surprisingly, fluid flow-induced expression of most SMAD2/3 targets was further enhanced upon MEK inhibition. We conclude that fluid shear stress induces autocrine TGF-β/ALK5-induced target gene expression in renal epithelial cells, which is partially restrained by MEK1/2-mediated signaling."	"Transforming growth factor-β-induced plasticity causes a migratory stemness phenotype in hepatocellular carcinoma. As part of its potential pro-tumorigenic actions, Transforming Growth Factor-(TGF)-β induces epithelial-mesenchymal transition (EMT) in hepatocellular carcinoma (HCC) cells. Whether EMT induces changes in tumor cell plasticity has not been fully explored yet. Here, we analyze the effects of TGF-β on the EMT and stem-related properties of HCC cells and the potential correlation among those processes. The translational aim of the study was to propose a TGF-β/EMT/stem gene signature that would help in recognizing HCC patients as good candidates for anti-TGF-β therapy. Results indicate that when TGF-β induces EMT in HCC cells, a switch in the expression of stem genes is observed and their stemness potential and migratory/invasive capacity are enhanced. However, TGF-β may induce a partial EMT in some epithelial HCC cells, increasing the expression of mesenchymal genes and CD44, but maintaining epithelial gene expression. Epithelial cells show higher stemness potential than the mesenchymal ones, but respond to TGF-β increasing their migratory and invasive capacity. In HCC patient samples, TGFB1 expression most frequently correlates with a partial EMT, increase in mesenchymal genes and CD44 expression, as well as maintenance or over-expression of epithelial-related genes."	"Human Pericardial Fluid Contains Exosomes Enriched with Cardiovascular-Expressed MicroRNAs and Promotes Therapeutic Angiogenesis. The pericardial fluid (PF) is contained in the pericardial sac surrounding the heart. MicroRNA (miRNA) exchange via exosomes (endogenous nanoparticles) contributes to cell-to-cell communication. We investigated the hypotheses that the PF is enriched with miRNAs secreted by the heart and that it mediates vascular responses through exosome exchange of miRNAs. The study was developed using leftover material from aortic valve surgery. We found that in comparison with peripheral plasma, the PF contains exosomes enriched with miRNAs co-expressed in patients' myocardium and vasculature. At a functional level, PF exosomes improved survival, proliferation, and networking of cultured endothelial cells (ECs) and restored the angiogenic capacity of ECs depleted (via Dicer silencing) of their endogenous miRNA content. Moreover, PF exosomes improved post-ischemic blood flow recovery and angiogenesis in mice. Mechanistically, (1) let-7b-5p is proangiogenic and inhibits its target gene, TGFBR1, in ECs; (2) PF exosomes transfer a functional let-7b-5p to ECs, thus reducing their TGFBR1 expression; and (3) let-7b-5p depletion in PF exosomes impairs the angiogenic response to these nanoparticles. Collectively, our data support the concept that PF exosomes orchestrate vascular repair via miRNA transfer."	"Pharmacological inhibition of porcupine induces regression of experimental skin fibrosis by targeting Wnt signalling. Wnt signalling has been implicated in activating a fibrogenic programme in fibroblasts in systemic sclerosis (SSc). Porcupine is an O-acyltransferase required for secretion of Wnt proteins in mammals. Here, we aimed to evaluate the antifibrotic effects of pharmacological inhibition of porcupine in preclinical models of SSc. The porcupine inhibitor GNF6231 was evaluated in the mouse models of bleomycin-induced skin fibrosis, in tight-skin-1 mice, in murine sclerodermatous chronic-graft-versus-host disease (cGvHD) and in fibrosis induced by a constitutively active transforming growth factor-β-receptor I. Treatment with pharmacologically relevant and well-tolerated doses of GNF6231 inhibited the activation of Wnt signalling in fibrotic murine skin. GNF6231 ameliorated skin fibrosis in all four models. Treatment with GNF6231 also reduced pulmonary fibrosis associated with murine cGvHD. Most importantly, GNF6231 prevented progression of fibrosis and showed evidence of reversal of established fibrosis. These data suggest that targeting the Wnt pathway through inhibition of porcupine provides a potential therapeutic approach to fibrosis in SSc. This is of particular interest, as a close analogue of GNF6231 has already demonstrated robust pathway inhibition in humans and could be available for clinical trials."	"Targeting BRAF-mutant tumours with TGFBR1 inhibitors. NA"	"Selective extracellular vesicle exclusion of miR-142-3p by oral cancer cells promotes both internal and extracellular malignant phenotypes. Packaging of small molecular factors, including miRNAs, into small extracellular vesicles (SEVs) may contribute to malignant phenotypes and facilitate communication between cancer cells and tumor stroma. The process by which some miRNAs are enclosed in SEVs is selective rather than indiscriminate, with selection in part governed by specific miRNA sequences. Herein, we describe the selective packaging and removal via SEVs of four miRNAs (miR-142-3p, miR-150-5p, miR-451a, and miR-223-3p) in a panel of oral dysplasia and oral squamous cell carcinoma cell lines. Inhibition of exosome export protein Rab27A increased intracellular concentration of these miRNA candidates and prevented their exclusion via SEVs. Increased intracellular miR-142-3p specifically was found to target TGFBR1, causing a decrease in TGFBR1 expression in donor cells and a reduction of malignant features such as growth and colony formation. Conversely, increased excretion of miR-142-3p via donor cell SEVs and uptake by recipient endothelial cells was found to reduce TGFBR1 activity and cause tumor-promoting changes in these cells in vitro and in vivo."	"Caffeine administration modulates TGF-β signaling but does not attenuate blunted alveolarization in a hyperoxia-based mouse model of bronchopulmonary dysplasia. Caffeine is widely used to manage apnea of prematurity, and reduces the incidence of bronchopulmonary dysplasia (BPD). Deregulated transforming growth factor (TGF)-β signaling underlies arrested postnatal lung maturation in BPD. It is unclear whether caffeine impacts TGF-β signaling or postnatal lung development in affected lungs. The impact of caffeine on TGF-β signaling in primary mouse lung fibroblasts and alveolar epithelial type II cells was assessed in vitro. The effects of caffeine administration (25 mg/kg/d for the first 14 d of postnatal life) on aberrant lung development and TGF-β signaling in vivo was assessed in a hyperoxia (85% O2)-based model of BPD in C57BL/6 mice. Caffeine downregulated expression of type I and type III TGF-β receptors, and Smad2; and potentiated TGF-β signaling in vitro. In vivo, caffeine administration normalized body mass under hyperoxic conditions, and normalized Smad2 phosphorylation detected in lung homogenates; however, caffeine administration neither improved nor worsened lung structure in hyperoxia-exposed mice, in which postnatal lung maturation was blunted. Caffeine modulated TGF-β signaling in vitro and in vivo. Caffeine administration was well-tolerated by newborn mice, but did not influence the course of blunted postnatal lung maturation in a hyperoxia-based experimental mouse model of BPD."	"EW-7197, an activin-like kinase 5 inhibitor, suppresses granulation tissue after stent placement in rat esophagus. Self-expanding metallic stent (SEMS) placement is a well-established method for treating malignant esophageal strictures; however, this procedure has not gained widespread acceptance for treating benign esophageal strictures because of granulation tissue formation. The aim of the present study was to investigate whether EW-7197, a novel per-oral transforming growth factor-β type I receptor kinase inhibitor, suppressed granulation tissue formation after SEMS placement in the rat esophagus. Sixty rats underwent SEMS placement and were randomly divided into 4 groups. Group A (n = 20) received vehicle-treated control for 4 weeks. Group B (n = 20) received 20 mg/kg/day EW-7197 for 4 weeks. Group C (n = 10) received 20 mg/kg/day EW-7197 for 4 weeks followed by vehicle-treated control for 4 weeks. Group D (n = 10) received 20 mg/kg/day EW-7197 for 8 weeks. SEMS placement was technically successful in all rats. Eleven rats, however, were excluded because of stent migration (n = 9) and procedure-related death (n = 2). The luminal diameter in group A was significantly smaller than those in groups B, C, and D (all P &lt; .001). The percentage of granulation tissue area, number of epithelial layers, thickness of submucosal fibrosis, percentage of connective tissue area, and degree of collagen deposition were significantly higher in group A than in groups B, C, and D (all P &lt; .001); however, there were no significant differences among groups B, C, and D. EW-7197 decreased the expression levels of phospho-Smad 3, N-cadherin, fibronectin, α-smooth muscle actin, and transforming growth factor-β1 and increased the expression level of E-cadherin (all P &lt; .01). EW-7197 suppressed granulation tissue formation after SEMS placement in the rat esophagus."	"ALK5 kinase inhibitory activity and synthesis of 2,3,4-substituted 5,5-dimethyl-5,6-dihydro-4H-pyrrolo[1,2-b]pyrazoles. A series of 2,3,4-substituted 5,5-dimethyl-5,6-dihydro-4H-pyrrolo[1,2-b]pyrazoles (DPPs) was synthesized and evaluated for their ALK5 inhibition activity. The most potent compounds displayed submicromolar IC50 values for ALK5. Preliminary profiling of one of the most active compounds in a panel of 50 protein kinases revealed its selectivity for ALK5. In cells, the compounds caused dose-dependent dephosphorylation of SMAD2, a well-established substrate of ALK5. In addition, the compounds blocked translocation of SMAD2/3 to nuclei of cells stimulated with TGFβ and the protein remained predominantly in cytoplasm, further confirming their molecular target. Therefore, novel DPP derivatives proved to be active as ALK5 inhibitors."	"The effect of Echinococcus granulosus on spleen cells and TGF-β expression in the peripheral blood of BALB/c mice. Cystic echinococcosis (CE) caused by the cestode Echinococcus granulosus (E. granulosus) is a zoonotic parasitic disease. The effective immune evasion mechanisms of E. granulosus allow it to parasitize its hosts. However, the status of the innate and adaptive immune cells and their contributions to E. granulosus progression remain poorly understood. In this study, we aimed to determine the impact of E. granulosus infection on T cells, NK cell responses and TGF-β expression during the early infection phase in BALB/c mice. In E. granulosus infections, there was an increasing tendency in the percentage of CD4<sup>+</sup> CD25<sup>+</sup> T cells and CD4<sup>+</sup> Foxp3<sup>+</sup> T cells and peripheral blood TGF-β levels and relative expression of the Foxp3 gene. Moreover, there were a decreasing tendency in the percentage of NK cells and NK cell cytotoxicity and the expression of NKG2D on NK cells. The TGF-β1/Smad pathway was activated by E. granulosus in mice. Above results can be reversed by the inhibitor SB-525334 (potent activin receptor-like kinase 5 inhibitor). These results suggest that the TGF-β/Smad pathway plays an important role in changes of T-cell or NK cell responses. These results may contribute to revealing the preliminary molecular mechanisms in establishing hydatid infection."	"Fluoride Regulate Osteoblastic Transforming Growth Factor-β1 Signaling by Mediating Recycling of the Type I Receptor ALK5. This study aimed to preliminary investigate the role of activin receptor-like kinase (ALK) 5 as one of TGF-βR1 subtypes in bone turnover and osteoblastic differentiation induced by fluoride. We analyzed bone mineral density and the expression of genes related with transforming growth factor-β1(TGF-β1) signaling and bone turnover in rats treated by different concentrations of fluoride with or without SB431542 in vivo. Moreover, MTT assay, alkaline phosphatase staining, RT-PCR, immunocytochemical analysis and western blot analysis were used to detect the influence on bone marrow stem cells (BMSC) after stimulating by varying concentration of fluoride with or without SB431542 in vitro. The in vivo study showed SB431542 treatment affected bone density and gene expression of rats, which indicated TGF-β1 and ALK5 might take part in fluoride-induced bone turnover and bone formation. The in vitro study showed low concentration of fluoride improved BMSC cells viability, alkaline phosphatase activity, and osteocalcin protein expression which were inhibited by high concentration of fluoride. The gene expression of Runx2 and ALK5 in cells increased after low concentration fluoride treatment which was also inhibited by high concentration of fluoride. Fluoride treatment inhibited gene and protein expression of Samd3 (except 1 mgF-/L). Compared with fluoride treatment alone, cells differentiation was inhibited with SB431542 treatment. Moreover, the expression of Runx2, ALK5 and Smad3 were influenced by SB431542 treatment. In conclusion, this preliminary study indicated that fluoride regulated osteoblastic TGFβ1 signaling in bone turnover and cells differentiation via ALK5."	"Structure-based derivation of peptide inhibitors to target TGF-β1 receptor for the suppression of hypertrophic scarring fibroblast activation. The intermolecular recognition and interaction between human transforming growth factor β-1 (TGF-β1) and its cognate receptor TβRII have been implicated in the pathological condition of hypertrophic scarring (HS). Here, we attempted to rationally derive peptide inhibitors from the complex interface of TGF-β1 with TβRII to disrupt such interaction for the suppression of fibroblast activation involved in HS. A synthetic strategy that integrated computational design and fluorescence-based assay was described to examine the structural basis and energetic property of TGF-β1-TβRII crystal structure, from which a small peptide segment in the complex binding site was stripped artificially. Molecular dynamics simulations revealed that the linear peptide possesses a large intrinsic disorder that would incur considerable entropy penalty upon binding to TβRII; the peptide segment was then extended and cyclized by introducing a disulfide bond across its terminal residues that were premutated to cysteine. Normal mode analysis indicated that, as expected, the peptide flexibility was largely reduced upon the cyclization, and thus, the entropy penalty was minimized substantially, consequently promoting the spontaneous binding of peptide to TβRII. Fluorescence polarization assay confirmed that all linear peptides are typical non-binders of TβRII (Kd = ND), while the designed cyclic peptides exhibit moderate or high affinity with Kd at micromolar level."	"TMED10 Protein Interferes with Transforming Growth Factor (TGF)-β Signaling by Disrupting TGF-β Receptor Complex Formation. The intensity and duration of TGF-β signaling determine the cellular biological response. How this is negatively regulated is not well understood. Here, we identified a novel negative regulator of TGF-β signaling, transmembrane p24-trafficking protein 10 (TMED10). TMED10 disrupts the complex formation between TGF-β type I (also termed ALK5) and type II receptors (TβRII). Misexpression studies revealed that TMED10 attenuated TGF-β-mediated signaling. A 20-amino acid-long region from Thr<sup>91</sup> to Glu<sup>110</sup> within the extracellular region of TMED10 was found to be crucial for TMED10 interaction with both ALK5 and TβRII. Synthetic peptides corresponding to this region inhibit both TGF-β-induced Smad2 phosphorylation and Smad-dependent transcriptional reporter activity. In a xenograft cancer model, where previously TGF-β was shown to elicit tumor-promoting effects, gain-of-function and loss-of-function studies for TMED10 revealed a decrease and increase in the tumor size, respectively. Thus, we determined herein that TMED10 expression levels are the key determinant for efficiency of TGF-β receptor complex formation and signaling."	"Release of endothelial cell associated VEGFR2 during TGF-β modulated angiogenesis in vitro. Sprouting angiogenesis requires vascular endothelial proliferation, migration and morphogenesis. The process is regulated by soluble factors, principally vascular endothelial growth factor (VEGF), and via bidirectional signaling through the Jagged/Notch system, leading to assignment of tip cell and stalk cell identity. The cytokine transforming growth factor beta (TGF-β) can either stimulate or inhibit angiogenesis via its differential surface receptor signaling. Here we evaluate changes in expression of angiogenic signaling receptors when bovine aortic endothelial cells were exposed to TGF-β1 under low serum conditions. TGF-β1 induced a dose dependent inhibition of tip cell assignment and subsequent angiogenesis on Matrigel, maximal at 5.0 ng/ml. This occurred via ALK5-dependent pathways and was accompanied by significant upregulation of the TGF-β co-receptor endoglin, and SMAD2 phosphorylation, but no alteration in Smad1/5 activation. TGF-β1 also induced ALK5-dependent downregulation of Notch1 but not of its ligand delta-like ligand 4. Cell associated VEGFR2 (but not VEGFR1) was significantly downregulated and accompanied by reciprocal upregulation of VEGFR2 in conditioned medium. Quantitative polymerase chain reaction analysis revealed that this soluble VEGFR2 was not generated by a selective shift in mRNA isoform transcription. This VEGFR2 in conditioned medium was full-length protein and was associated with increased soluble HSP-90, consistent with a possible shedding of microvesicles/exosomes. Taken together, our results suggest that endothelial cells exposed to TGF-β1 lose both tip and stalk cell identity, possibly mediated by loss of VEGFR2 signaling. The role of these events in physiological and pathological angiogenesis requires further investigation."	"T-cell immunoglobulin mucin 3 blockade drives an antitumor immune response in head and neck cancer. T-cell immunoglobulin mucin 3 (TIM3) contributes to immune suppression during progression of many cancers, but the precise role of TIM3 in head and neck squamous cell carcinoma (HNSCC) is not clearly understood. In this study, we report that TIM3 expression was significantly up-regulated in patients with HNSCC and associated with lymph node metastasis. Additionally, TIM3 expression was increased in patients with recurrent HNSCC and patients with preradiotherapy or prechemotherapy. We also characterized CD8<sup>+</sup> T cells and CD11b<sup>+</sup> CD33<sup>+</sup> myeloid-derived suppressor cells (MDSCs) in human HNSCC, and found that their expression was positively correlated with TIM3 expression. To determine the underlying mechanism of TIM3 in immune response during HNSCC progression, we utilized the Tgfbr1/Pten 2cKO HNSCC mouse model with TIM3 overexpression. Treatment with anti-TIM3 monoclonal antibody effectively suppressed tumor growth through restoring effector T-cell function by targeting CD4<sup>+</sup> TIM3<sup>+</sup> cells and CD8<sup>+</sup> TIM3<sup>+</sup> cells and decreasing MDSCs. Our findings demonstrate TIM3 expression in patients with HNSCC and suggest anti-TIM3 immunotherapy as a novel therapeutic approach for effective treatment of HNSCC."	"miR-27b inhibits fibroblast activation via targeting TGFβ signaling pathway. MicroRNAs are a group of small RNAs that regulate gene expression at the posttranscriptional level. They regulate almost every aspect of cellular processes. In this study, we investigated whether miR-27b regulates pulmonary fibroblast activation. We found that miR-27b was down-regulated in fibrotic lungs and fibroblasts from an experimental mouse model of pulmonary fibrosis. The overexpression of miR-27b with a lentiviral vector inhibited TGFβ1-stimulated mRNA expression of collagens (COL1A1, COL3A1, and COL4A1) and alpha-smooth muscle actin, and protein expression of Col3A1 and alpha-smooth muscle actin in LL29 human pulmonary fibroblasts. miR-27b also reduced contractile activity of LL29. TGFβ receptor 1 and SMAD2 were identified as the targets of miR-27b by 3'-untranslated region luciferase reporter and western blotting assays. Our results suggest that miR-27b is an anti-fibrotic microRNA that inhibits fibroblast activation by targeting TGFβ receptor 1 and SMAD2. This discovery may provide new targets for therapeutic interventions of idiopathic pulmonary fibrosis."	"Effect of different cryo-devices on in vitro maturation and development of vitrified-warmed immature buffalo oocytes. The aim of the study was to identify a cryo-device that would be best suited for the vitrification of buffalo immature cumulus-oocyte complexes (COCs) as judged by viability and meiotic competence of the vitrified-warmed oocytes and their development ability following in vitro fertilization (IVF). The expression of oocyte secreting factors and their receptors (GDF9, BMP15, BMPR2, TGFBR1) and apoptosis related genes (BCL2, BAX, P53, C-MYC) were compared in vitrified-warmed oocytes after in vitro maturation. COCs from the ovaries of slaughtered buffaloes were vitrified in a combination of dimethyl sulfoxide, ethylene glycol, and sucrose using either a conventional straw (CS), open pulled straw (OPS), cryoloop (CL), hemistraw (HS) or cryotop (CT). The fresh COCs were exposed to vitrification and warming solutions as in other vitrification methods without plunging in to liquid nitrogen (EC). The viability of vitrified-warmed COCs, 2 h post warming in HS and CT was similar to fresh and EC groups but significantly higher than CS and OPS methods. The proportions of oocytes with first polar body after 24 h in vitro maturation were significantly higher in HS and CT methods than in CS, OPS and CL methods. The development ability of these vitrified-warmed oocytes to blastocyst stage following IVF in all vitrified groups was significantly lower than control and EC groups. Among the vitrified groups, the blastocyst rate in HS, CT and CL groups was significantly higher than in OPS and CS groups. It was also observed that the expression levels of GDF9, BMP15, BMPR2, TGFBR1, BCL2, BAX, P53 and C-MYC genes in vitrified-warmed COCs in CT, HS and CL groups were similar to control. The results indicated that HS, CT and CL are more suitable cryo-devices for vitrification of buffalo immature oocytes."	"Effect of ginseng extract on the TGF-β1 signaling pathway in CCl4-induced liver fibrosis in rats. Liver diseases are major global health problems. Ginseng extract has antioxidant, immune-modulatory and anti-inflammatory activities. This study investigated the effect of ginseng extract on carbon tetrachloride (CCl4)-induced liver fibrosis in rats. Male Wistar rats were divided into four groups: control group, ginseng group, CCl4 group and CCl4 + ginseng group. Liver injury was induced by the intraperitoneal (I.P) injection of 3 ml/kg CCl4 (30% in olive oil) weekly for 8 weeks. The control group was I.P injected with olive oil. The expression of genes encoding transforming growth factor beta (TGF-β), type I TGF-β receptor (TβR-1), type II TGF-β receptor (TβR-II), mothers against decapentaplegic homolog 2 (Smad2), Smad3, Smad4, matrix metalloproteinase 2 (MMP2), MMP9, tissue inhibitor matrix metalloproteinase-1 (TIMP-1), Collagen 1a2 (Col1a2), Collagen 3a1 (Col3a1), interleukin-8 (IL-8) and interleukin -10 (IL-10) were measured by real-time PCR. Treatment with ginseng extract decreased hepatic fat deposition and lowered hepatic reticular fiber accumulation compared with the CCl4 group. The CCl4 group showed a significant increase in hepatotoxicity biomarkers and up-regulation of the expression of genes encoding TGF-β, TβR-I, TβR-II, MMP2, MMP9, Smad-2,-3, -4, and IL-8 compared with the control group. However, CCl4 administration resulted in the significant down-regulation of IL-10 mRNA expression compared with the control group. Interestingly, ginseng extract supplementation completely reversed the biochemical markers of hepatotoxicity and the gene expression alterations induced by CCl4. ginseng extract had an anti-fibrosis effect via the regulation of the TGF-β1/Smad signaling pathway in the CCl4-induced liver fibrosis model. The major target was the inhibition of the expression of TGF-β1, Smad2, and Smad3."	NA	NA
+"TGFBR2"	"familial thoracic aortic aneurysm and aortic dissection"	"Mechanotransduction and Stiffness-Sensing: Mechanisms and Opportunities to Control Multiple Molecular Aspects of Cell Phenotype as a Design Cornerstone of Cell-Instructive Biomaterials for Articular Cartilage Repair. Since material stiffness controls many cell functions, we reviewed the currently available knowledge on stiffness sensing and elucidated what is known in the context of clinical and experimental articular cartilage (AC) repair. Remarkably, no stiffness information on the various biomaterials for clinical AC repair was accessible. Using mRNA expression profiles and morphology as surrogate markers of stiffness-related effects, we deduced that the various clinically available biomaterials control chondrocyte (CH) phenotype well, but not to equal extents, and only in non-degenerative settings. Ample evidence demonstrates that multiple molecular aspects of CH and mesenchymal stromal cell (MSC) phenotype are susceptible to material stiffness, because proliferation, migration, lineage determination, shape, cytoskeletal properties, expression profiles, cell surface receptor composition, integrin subunit expression, and nuclear shape and composition of CHs and/or MSCs are stiffness-regulated. Moreover, material stiffness modulates MSC immuno-modulatory and angiogenic properties, transforming growth factor beta 1 (TGF-β1)-induced lineage determination, and CH re-differentiation/de-differentiation, collagen type II fragment production, and TGF-β1- and interleukin 1 beta (IL-1β)-induced changes in cell stiffness and traction force. We then integrated the available molecular signaling data into a stiffness-regulated CH phenotype model. Overall, we recommend using material stiffness for controlling cell phenotype, as this would be a promising design cornerstone for novel future-oriented, cell-instructive biomaterials for clinical high-quality AC repair tissue."	"[Effect and mechanism of miR-223 on fibrosis-related signaling pathway in rat cardiomyocytes]. Objective: To investigate the protective effect of microRNA 223 (miR-223) on cardiac fibrosis-related signaling pathway and its regulation on expression of Twist family basic helix-loop-helix transcription factor 1 (Twist1) and transforming growth factor-β1 receptor 2 (TGFBR2) in rat cardiomyocytes. Methods: Rat cardiomyocytes (H9c2) were cultured in vitro and treated with TGF-β to induce myocardial fibrosis. The miR-223 group was transfected with miR-223 lentivirus and miR-223-NC group was transfected with miR-223-NC lentivirus. Model group and blank control group had no transfection. Immunocytochemistry staining of alpha-smooth muscle actin (α-SMA) was used to calculate myocardial fibrosis. The mRNA level of miR-223, collagen Ⅰ, collagen Ⅲ, Twist1 and TGFBR2 were detected by real-time PCR. The protein level of Twist1, TGFBR2, collagen Ⅰ, collagen Ⅲ and α-SMA were detected by Western blot. Target regulation of miR-223 on Twist1 and TGFBR2 3'UTR was verified by double luciferase reporter gene system. Results: The average optical density of α-SMA-positive cardiomyocytes in miR-223 group (0.089±0.013) was significantly lower than that in model group and miR-223-NC group (0.134±0.018, 0.132±0.016, respectively). The mRNA level of collagen Ⅰ, collagen Ⅲ, Twist1 and TGFBR2 in miR-223 group were significantly lower than that in model group and miR-223-NC group (all P&lt;0.05). The protein level of Twist1, TGFBR2, collagen Ⅰ, collagen Ⅲ and α-SMA in miR-223 group was significantly lower than model group and miR-223-NC group (all P&lt;0.05). Twist1, TGFBR2 3'UTR wild-type double luciferase reporter plasmids and miR-223 mimics were co-transfected in 293T cells, and luciferase activity was significantly reduced (0.48±0.06 vs 0.92±0.17 and 0.51±0.07 vs 0.94±0.12). Conclusion: MiR-223 may inhibit the activation of fibrosis-related signaling pathway in cardiomyocytes by down-regulating the expression of Twist1 andTGFBR2 genes. 目的: 探讨miR-223对大鼠心肌细胞纤维化相关通路的保护作用及对Twist家族碱性螺旋-环-螺旋转录因子1(Twist1)、转化生长因子β1受体2(TGFBR2)的表达调控。 方法: 体外培养大鼠心肌细胞H9c2,以TGF-β人工诱导心肌细胞纤维化相关通路活化,分为模型组、miR-223组(转染miR-223过表达慢病毒)以及miR-223-NC组(转染miR-223-NC慢病毒),同时设立正常细胞对照组。免疫组化检测α-SMA的表达情况;实时荧光定量PCR(real-time PCR)测定心肌细胞miR-223、collagen Ⅰ、collagen Ⅲ、Twist1、TGFBR2 mRNA表达水平;Western印迹法检测心肌细胞Twist1、TGFBR2、collagen Ⅰ、collagen Ⅲ及α-SMA蛋白水平;双荧光素酶报告基因验证miR-223对Twist1、TGFBR2 3′UTR的靶向调控。 结果: miR-223组α-SMA阳性心肌细胞平均吸光度(0.089±0.013)明显低于模型组和miR-223-NC组(0.134±0.018,0.132±0.016);miR-223组心肌collagen Ⅰ、collagen Ⅲ、Twist1、TGFBR2 mRNA表达水平与模型组及miR-223-NC组比较显著下降,且差异具有统计学意义(P&lt;0.05);Twist1、TGFBR2、collagen Ⅰ、collagen Ⅲ及α-SMA蛋白水平较模型组及miR-223-NC组显著下降,且差异具有统计学意义(P&lt;0.05);Twist1、TGFBR2 3′UTR野生型双荧光素酶报告质粒与miR-223 mimics共转染293T细胞,荧光素酶活性均显著降低[(0.48±0.06,0.51±0.07)比(0.92±0.17,0.94±0.12)]。 结论: miR-223可能通过下调Twist1、TGFBR2基因的表达抑制心肌细胞中纤维化相关信号通路活化。."	"Radix Rehmanniae Praeparata promotes bone fracture healing through activation of TGF-β signaling in mesenchymal progenitors. Radix Rehmanniae Praeparata (RR), the steamed roots of Rehmannia glutinosa, is a traditional Chinese medicine with the function of kidney-nourishing, and it has been safety used for centuries to treat bone-related disorders. The aim of this study is to investigate the positive effect and underlying mechanism of RR enhancing bone fracture healing in mouse model. Ten-week-old C57BL/6J mice were subjected to a unilateral open transverse tibial fracture and provided a daily treatment of RR. Bone samples were harvested for tissue analyses including x-ray, μCT, histology, histomorphometry, biomechanical testing, immunohistochemical (IHC) and quantitative gene expression analysis. To determine the role of TGF-β in accelerating fracture healing effect of RR, aforementioned experiments were performed on Gli1-CreER; Tgfbr2 f<sup>lox/flox</sup> (Tgfbr2<sup>Gli1ER</sup>) conditional knockout mice. RR promoted bone fracture healing and strengthened bone intensity in wild-type and Cre<sup>-</sup> mice with the activation of TGF-β/Smad2 signaling, on the contrary, RR failed to accelerating fracture healing in Tgfbr2<sup>Gli1ER</sup> mice. RR promotes bone fracture healing by intensify the contribution of Gli1+ cells on bone and cartilage formation mainly in TGF-β-dependent manner. RR is an alternative option for clinical treatment of fracture."	"Identification of miR-135b as a novel regulator of TGFβ pathway in gastric cancer. Gastric cancer (GC) is a common malignant tumor worldwide, with a high incidence and low survival rate. The transforming growth factor-beta (TGFβ) signaling pathway usually plays a tumor-suppressive role and is normally quietened in GC. The downregulation of transforming growth factor-beta receptor II (TGFBR2) affects TGFβ signaling pathway, which exerts an immense effect on tumor cell proliferation and metastasis. Although the effect of the TGFβ signaling pathway on cancer cells is well studied, little is known about the mechanism by which TGFBR2 expression is downregulated. Here, we showed that TGFBR2 protein, but not TGFBR2 mRNA, was consistently downregulated in GC, suggesting that post-transcriptional mechanism is involved in the regulation of TGFBR2. Bioinformatics analysis and luciferase reporter analysis proved that miR-135b combines precisely with the 3'-UTR of TGFBR2 mRNA. EdU assays and cell migration assays respectively showed that miR-135b overexpression induced the growth and invasion of GC cells. However, the overexpression of TGFBR2 had the opposite effect. TGFBR2 acted as the direct target for miR-135b and was downregulated in gastric cancer cells. Therefore, miR-135b promotes proliferation and migration of GC cells by negatively regulating TGFBR2 expression, displaying an oncomiR effect. Altogether, this conclusive evidence supported that miR-135b mediates the progression of GC by targeting TGFBR2 and miR-135b/TGFBR2 axis can be used in future targeted therapy for GC."	"Population structure, genetic diversity, and selective signature of Chaka sheep revealed by whole genome sequencing. Chaka sheep, named after Chaka Salt Lake, are adapted to a harsh, highly saline environment. They are known for their high-grade meat quality and are a valuable genetic resource in China. Furthermore, the Chaka sheep breed has been designated a geographical symbol of agricultural products by the Chinese Ministry of Agriculture. The genomes of 10 Chaka sheep were sequenced using next-generation sequencing, and compared to that of additional Chinese sheep breeds (Mongolian: Bayinbuluke and Tan; Tibetan: Oula sheep) to explore its population structure, genetic diversity and positive selection signatures. Principle component analysis and a neighbor-joining tree indicated that Chaka sheep significantly diverged from Bayinbuluke, Tan, and Oula sheep. Moreover, they were found to have descended from unique ancestors (K = 2 and K = 3) according to the structure analysis. The Chaka sheep genome demonstrated comparable genetic diversity from the other three breeds, as indicated by observed heterozygosity (Ho), expected heterozygosity (He), runs of homozygosity (ROH), linkage disequilibrium (LD) decay. The enrichment analysis revealed that in contrast to Mongolian or Tibetan lineage groups, the genes annotated by specific missense mutations of Chaka sheep were enriched with muscle structure development (GO:0061061) factors including insulin-like growth factor 1 (IGF1), growth differentiation factor 3 (GDF3), histone deacetylase 9 (HDAC9), transforming growth factor beta receptor 2 (TGFBR2), and calpain 3 (CAPN3), among others. A genome-wide scan using Fst and XP-CLR revealed a list of muscle-related genes, including neurofibromin 1 (NF1) and myomesin 1 (MYOM1), under potential selection in Chaka sheep compared with other breeds. The comprehensive genome-wide characterization provided the fundamental footprints for breeding and management of the Chaka sheep and confirmed that they harbor unique genetic resources."	"Cross-species chromatin interactions drive transcriptional rewiring in Epstein-Barr virus-positive gastric adenocarcinoma. Epstein-Barr virus (EBV) is associated with several human malignancies including 8-10% of gastric cancers (GCs). Genome-wide analysis of 3D chromatin topologies across GC lines, primary tissue and normal gastric samples revealed chromatin domains specific to EBV-positive GC, exhibiting heterochromatin-to-euchromatin transitions and long-range human-viral interactions with non-integrated EBV episomes. EBV infection in vitro suffices to remodel chromatin topology and function at EBV-interacting host genomic loci, converting H3K9me3<sup>+</sup> heterochromatin to H3K4me1<sup>+</sup>/H3K27ac<sup>+</sup> bivalency and unleashing latent enhancers to engage and activate nearby GC-related genes (for example TGFBR2 and MZT1). Higher-order epigenotypes of EBV-positive GC thus signify a novel oncogenic paradigm whereby non-integrative viral genomes can directly alter host epigenetic landscapes ('enhancer infestation'), facilitating proto-oncogene activation and tumorigenesis."	"Heat Shock Protein 90 Involvement in the Development of Idiopathic Epiretinal Membranes. This work was aimed to further characterize cells of idiopathic epiretinal membranes (iERMs). We wanted to determine the contribution of 90-kDa heat shock protein (HSP90) to sustain the transforming growth factor-β (TGF-β)-mediated signal transduction pathway in iERM. Immunofluorescence and confocal microscopy were carried out on deplasticized sections from 36 epiretinal membranes processed for electron microscopy and on frozen sections from five additional samples with antibodies against α-smooth muscle actin (αSMA), vimentin, glial fibrillary acidic protein (GFAP), SMAD2, HSP90α, type-II TGF-β1 receptor (TβRII), type-I collagen, and type-IV collagen. In addition, Müller MIO-M1 cells were transfected with HSP90 and challenged with TGF-β1. Double and triple labeling experiments showed that a variable number of TβRII+ cells were present in 94.1% of tested iERMs and they were mostly GFAP-/αSMA+/vimentin+/HSP90α+. In almost half of the cases these cells contained type-I collagen, suggesting their involvement in matrix deposition. HSP90 overexpressing MIO-M1 cells challenged with TGF-β1 showed increased levels of TβRII, SMAD2, SMAD3, and phosphor-SMAD2. Nuclear SMAD2 staining could be observed in HSP90α+ cells on frozen sections of iERMs. Cells in iERMs that express TβRII are also HSP90α+ and show the antigenic profile of myofibroblast-like cells as they are GFAP-/αSMA+/vimentin+. HSP90α-overexpressing MIO-M1 cells challenged with TGF-β1 showed an increased activation of the SMAD pathway implying that HSP90α might play a role in sustaining the TGF-β1-induced fibrotic response of iERM cells."	"Systemic Inhibition of miR-451 Increases Fibrotic Signaling and Diminishes Autophagic Response to Exacerbate Renal Damage in Tallyho/Jng Mice. MicroRNAs (miRs) provide fine-tuning of gene expression via inhibition of translation. MiR-451 has a modulatory role in cell cycling via down-regulation of the mechanistic target of rapamycin (mTOR). We aimed to test whether chronic, systemic inhibition of miR-451 would enhance renal fibrosis (associated with deranged autophagy). Adult, TallyHo/Jng mice (obese, insulin-resistant) were randomized to two treatment groups to receive either miR-451 inhibition (via a locked nucleic acid, LNA, construct) or a similar scrambled-LNA control for 8 weeks. All mice were fed a high-fat diet (60% kcal from fat) ad libitum and humanely euthanized after 12 weeks. Kidneys and blood were collected for analysis. Renal expression of miR-451 was 6-fold lower in inhibitor-treated mice, compared to control mice. MiR-451 inhibition increased kidney weight, collagen, and glycogen deposition. Blood chemistry revealed significantly higher Na<sup>+</sup> and anion gap (relative metabolic acidosis) in inhibitor-treated mice. Western blotting and immunohistochemistry of kidney revealed that the inhibitor increased markers of renal injury and fibrosis, e.g., kidney injury molecule 1 (KIM1) and neutrophil gelatinase-associated lipocalin (NGAL), transforming growth factor beta (TGF-ß), 14-3-3 protein zeta (YWHAZ, 14-3-3ζ), mechanistic target of rapamycin (mTOR), adenosine, monophosphate kinase a (AMPKa), calcium-binding protein 39 (CAB39), matrix metallopeptidase-9 (MMP-9), and the autophagy receptor sequestosome 1 (SQSTM1/p62). In contrast, the inhibitor reduced the epithelial cell integrity marker, type IV collagen (COLIV), and autophagy markers, microtubule-associated protein 1A/1B light chain 3B (LC3-II), and beclin1 (BECN1). Taken together these results support a protective role for miR-451 in reducing renal fibrosis by enhancing autophagy in obese mice."	"Landscape of somatic single nucleotide variants and indels in colorectal cancer and impact on survival. Colorectal cancer (CRC) is a biologically heterogeneous disease. To characterize its mutational profile, we conduct targeted sequencing of 205 genes for 2,105 CRC cases with survival data. Our data shows several findings in addition to enhancing the existing knowledge of CRC. We identify PRKCI, SPZ1, MUTYH, MAP2K4, FETUB, and TGFBR2 as additional genes significantly mutated in CRC. We find that among hypermutated tumors, an increased mutation burden is associated with improved CRC-specific survival (HR = 0.42, 95% CI: 0.21-0.82). Mutations in TP53 are associated with poorer CRC-specific survival, which is most pronounced in cases carrying TP53 mutations with predicted 0% transcriptional activity (HR = 1.53, 95% CI: 1.21-1.94). Furthermore, we observe differences in mutational frequency of several genes and pathways by tumor location, stage, and sex. Overall, this large study provides deep insights into somatic mutations in CRC, and their potential relationships with survival and tumor features."	"Inhibition of the BMP Signaling Pathway Ameliorated Established Clinical Symptoms of Experimental Autoimmune Encephalomyelitis. Bone morphogenetic proteins (BMPs) are secreted growth factors that belong to the transforming growth factor beta superfamily. BMPs have been implicated in physiological processes, but they are also involved in many pathological conditions. Multiple sclerosis (MS) is an immune-mediated disease of the central nervous system (CNS); however, its etiology remains elusive. Some evidence points to BMPs as important players in the pathogenesis of inflammatory and autoimmune disorders. In the present work, we studied the expression of BMP2, BMP4, BMP5, BMP6, BMP7, BMP type II receptor, and noggin in the immune system during different phases of experimental autoimmune encephalomyelitis (EAE). Major changes in the expression of BMPs took place in the initial phases of EAE. Indeed, those changes mainly affected BMP6 (whose expression was abrogated), BMP2, and BMP7 (whose expression was increased). In addition, we showed that in vivo inhibition of the BMP signaling pathway with small molecules ameliorated the already established clinical symptoms of EAE, as well as the CNS histopathological features. At the immune level, we observed an expansion of plasmacytoid dendritic cells (pDCs) in mice treated with small molecules that inhibit the BMP signaling pathway. pDCs could play an important role in promoting the expansion of antigen-specific regulatory T cells. Altogether, our data suggest a role for BMPs in early immune events that take place in myelin oligodendrocyte glycoprotein (MOG)-induced EAE. In addition, the clinical outcome of the disease was improved when the BMP signaling pathway was inhibited in mice that presented established EAE symptoms."	"Estimation of Hub Genes and Infiltrating Immune Cells in Non-Smoking Females with Lung Adenocarcinoma by Integrated Bioinformatic Analysis. BACKGROUND In recent years, the morbidity and mortality rates of lung adenocarcinoma in non-smoking females have been increasing dramatically. Although much research has been done with some progress, the molecular mechanism remains unclear. In this study we aimed to estimate hub genes and infiltrating immune cells in non-smoking females with lung adenocarcinoma. MATERIAL AND METHODS Firstly, we obtained differentially expressed genes (DEGs) by GEO2R analysis based on 3 independent mRNA microarray datasets of GSE10072, GSE31547, and GSE32863. The DAVID database was utilized for functional enrichment analysis of DEGs. Moreover, we identified hub genes with prognostic value by STRING, Cytoscape, and Kaplan Meier plotter. Subsequently, these genes were further analyzed by Gene Expression Profiling Interactive Analysis, Oncomine, Tumor Immune Estimation Resource, and Human Protein Atlas. Finally, the immune infiltration analysis was performed by CIBERSORT and The Cancer Genome Atlas with R packages. RESULTS We found 315 DEGs enriching in the extracellular matrix organization, cell adhesion, integrin binding, angiogenesis, and hypoxic response. And among these DEGs, we identified 10 hub genes (SPP1, ENG, ATF3, TOP2A, COL1A1, PAICS, CAV1, CAT, TGFBR2, and ANGPT1) of significant prognostic value. Simultaneously, we illustrated the distribution and differential expressions of 22 immune cell subtypes. and dendritic cells resting and macrophages M1 were identified with prognostic significance. CONCLUSIONS The results indicated that 10 hub genes and 2 immune cell subtypes might be promising biomarkers for lung adenocarcinoma in non-smoking females. This finding needs to be further evaluated."	"Inhibitory effect of oyster hydrolysate on wrinkle formation against UVB irradiation in human dermal fibroblast via MAPK/AP-1 and TGFβ/Smad pathway. The skin keeps the human body healthy from extrinsic stimuli such as ultraviolet (UV) irradiation. However, chronic exposure of these stimuli reduces the number of proteins that constitute the extracellular matrix (ECM) and causes wrinkle formation. The amount of collagen, the main protein that constitutes connective tissue, is reduced in the human skin due to UV radiation. When human dermal fibroblasts were damaged by UVB, UVB increased the MMPs expressions and degraded type I collagen and other ECM proteins. Oyster (Crassostrea gigas) hydrolysate (OH) is known to have anticancer, antioxidant, and anti-apoptotic effects. To scrutinize the anti-wrinkle effect of the OH in the viewpoint of the balance between collagen degradation and synthesis, we conducted the study in UVB damaged human dermal fibroblasts. We determined type I procollagen, MMPs and related proteins using ELISA kit, qRT-PCR and western blot. In our study, we discovered that OH inhibits collagen degradation by regulating MAPKs, AP-1 and MMPs expression. Also, we found that OH promotes collagen production by enhancing TGFβ receptor II expression and Smad3 phosphorylation. These results showed that OH regulates collagen degradation and stimulates collagen synthesis. Through this study, we found that OH is effective in inhibiting wrinkle formation and restore photo-aged human skin. It indicates that OH can be one of the functional materials in the fields of anti-wrinkle research."	"Circulating angiogenic cells in glioblastoma: toward defining crucial functional differences in CAC-induced neoplastic versus reactive neovascularization. In order to identify suitable therapeutic targets for glioma anti-angiogenic therapy, the process of neovascularization mediated by circulating angiogenic cells (CACs) needs to be scrutinized. In the present study, we compared the expression of neovascularization-related genes by 3 circulating CAC subsets (hematopoietic progenitor cells [HPCs], CD34<sup>+</sup>, and KDR<sup>+</sup> cells; internal controls: peripheral blood mononuclear cells and circulating endothelial cells) of treatment-naïve patients with glioblastoma (GBM) to those of patients undergoing reactive neovascularization (myocardial infarction (MI). CACs from umbilical cord (representing developmental neovascularization) and healthy subjects served as controls. Fluorescent-activated cell sorting was used to isolate CACs, RT-PCR to determine the expression levels of a panel of 48 neovascularization-related genes, and Luminex assays to measure plasma levels of 21 CAC-related circulating molecules. We found essential differences in gene expression between GBM and MI CACs. GBM CACs had a higher expression of proangiogenic factors (especially, KITL, CXCL12, and JAG1), growth factor and chemotactic receptors (IGF1R, TGFBR2, CXCR4, and CCR2), adhesion receptor monomers (ITGA5 and ITGA6), and matricellular factor POSTN. In addition, we found major differences in the levels of neovascularization-related plasma factors. A strong positive correlation between plasma MMP9 levels and expression of CXCR4 in the CAC subset of HPCs was found in GBM patients. Our findings indicate that CAC-mediated neovascularization in GBM is characterized by more efficient CAC homing to target tissue and a more potent proangiogenic response than in physiologic tissue repair in MI. Our findings can aid in selecting targets for therapeutic strategies acting against GBM-specific CACs."	"Alpha lipoic acid promotes development of hematopoietic progenitors derived from human embryonic stem cells by antagonizing ROS signals. Antagonism of ROS signaling can inhibit cell apoptosis and autophagy, thus favoring the maintenance and expansion of hematopoietic stem cells. Alpha lipoic acid (ALA), a small antioxidant molecule, affects cell apoptosis by lowering the ROS level. In this study, we show that ALA promoted production of human pluripotent stem cells (hPSCs) derived hemogenic endothelial cells and hematopoietic stem/progenitor cells in vitro. Transcriptome analysis of hPSCs derived hemogenic endothelial cells showed that ALA promoted endothelial-to-hematopoietic transition by up-regulating RUNX1, GFI1, GFI1B, MEIS2, and HIF1A and down-regulating SOX17, TGFB1, TGFB2, TGFB3, TGFBR1, and TGFBR2. ALA also up-regulated sensor genes of ROS signals, including HIF1A, FOXO1, FOXO3, ATM, PETEN, SIRT1, and SIRT3, during the process of hPSCs derived hemogenic endothelial cells generation. However, in more mature hPSC-derived hematopoietic stem/progenitor cells, ALA reduced ROS levels and inhibited apoptosis. In particular, ALA enhanced development of hPSCs derived hematopoietic stem/progenitor cells by up-regulating HIF1A in response to a hypoxic environment. Furthermore, addition of ALA in ex vivo culture greatly improved the maintenance of functional cord blood HSCs by in vivo transplantation assay. Our findings support the conjecture that ALA plays an important role in efficient regeneration of hematopoietic stem/progenitor cells from hPSCs and maintenance of functional HSCs, providing insight into understanding of regeneration of early hematopoiesis for engineering clinically useful hPSCs derived hematopoietic stem/progenitor cells transplantation. Thus, ALA can be used in the study of hPSCs derived HSCs."	"Sensing of ATP via the Purinergic Receptor P2RX7 Promotes CD8<sup>+</sup> Trm Cell Generation by Enhancing Their Sensitivity to the Cytokine TGF-β. Tissue-resident memory (Trm) CD8<sup>+</sup> T cells mediate protective immunity in barrier tissues, but the cues promoting Trm cell generation are poorly understood. Sensing of extracellular adenosine triphosphate (eATP) by the purinergic receptor P2RX7 is needed for recirculating CD8<sup>+</sup> T cell memory, but its role for Trm cells is unclear. Here we showed that P2RX7 supported Trm cell generation by enhancing CD8<sup>+</sup> T cell sensing of TGF-β, which was necessary for tissue residency. P2RX7-deficient Trm cells progressively decayed in non-lymphoid tissues and expressed dysregulated Trm-specific markers. P2RX7 was required for efficient re-expression of the receptor TGF-βRII through calcineurin signaling. Forced Tgfbr2 expression rescued P2RX7-deficient Trm cell generation, and TGF-β sensitivity was dictated by P2RX7 agonists and antagonists. Forced Tgfbr2 also rescued P2RX7-deficient Trm cell mitochondrial function. Sustained P2RX7 signaling was required for long-term Trm cell maintenance, indicating that P2RX7 signaling drives induction and CD8<sup>+</sup> T cell durability in barrier sites."	"Targeting all transforming growth factor-β isoforms with a Fc chimeric receptor impairs tumor growth and angiogenesis of oral squamous cell cancer. Tumor progression is governed by various growth factors and cytokines in the tumor microenvironment (TME). Among these, transforming growth factor-β (TGF-β) is secreted by various cell types residing in the TME and promotes tumor progression by inducing the epithelial-to-mesenchymal transition (EMT) of cancer cells and tumor angiogenesis. TGF-β comprises three isoforms, TGF-β1, -β2, and -β3, and transduces intracellular signals via TGF-β type I receptor (TβRI) and TGF-β type II receptor (TβRII). For the purpose of designing ligand traps that reduce oncogenic signaling in the TME, chimeric proteins comprising the ligand-interacting ectodomains of receptors fused with the Fc portion of immunoglobulin are often used. For example, chimeric soluble TβRII (TβRII-Fc) has been developed as an effective therapeutic strategy for targeting TGF-β ligands, but several lines of evidence indicate that TβRII-Fc more effectively traps TGF-β1 and TGF-β3 than TGF-β2, whose expression is elevated in multiple cancer types. In the present study, we developed a chimeric TGF-β receptor containing both TβRI and TβRII (TβRI-TβRII-Fc) and found that TβRI-TβRII-Fc trapped all TGF-β isoforms, leading to inhibition of both the TGF-β signal and of TGF-β-induced EMT of oral cancer cells, whereas TβRII-Fc failed to trap TGF-β2. Furthermore, we found that TβRI-TβRII-Fc suppresses tumor growth and angiogenesis more effectively than TβRII-Fc in a subcutaneous xenograft model of oral cancer cells with high TGF-β expression. These results suggest that TβRI-TβRII-Fc may be a promising tool for targeting all TGF-β isoforms in the TME."	"TGFBR2 regulates Hedgehog pathway and cervical cancer cell proliferation and migration by mediating SMAD4. TGFBR2 serves as an initial regulator of the TGF-β signaling pathway, and loss or reduction of its expression can lead to uncontrolled cell growth. This study was conducted to further explore the mechanism of TGFBR2/SMAD4 on the migration and proliferation of CC cells. Here, TGFBR2 and SMAD4 expressions in CC cells and control cells were measured. The expression patterns of TGFBR2 and SMAD4 in CC cells were verified in TCGA database. After CC cells transfected with pcDNA3.1-TGFBR2 or pcDNA3.1-SMAD4, or co-transfected with pcDNA3.1-TGFBR2 and si-SMAD4, Co-IP was utilized for identification of the interaction between TGFBR2 and SMAD4, CCK-8 assay for the assessment of CC cell proliferation and flow cytometry for the performance of cell cycle. After that, the migration ability of CC cells was examined by cell scratch assay. The expression levels of Hedgehog signaling pathway-related proteins (GLI1 and PTCH) were assayed by Western blot. Lowly expressed TGFBR2 and SMAD4 in CC cells were displayed by the TCGA database. Overexpression of TGFBR2 restrained CC cell migration and proliferation abilities, while the co-effect of TGFBR2 overexpression and SMAD4 knockdown reversed these trends. Besides, highly expressed PTCH and lowly expressed GLI1 were found in CC cells with overexpression of TGFBR2 or SMAD4. The Hedgehog signaling inhibitor (GANT58) can substantially hinder the development of CC cells. Cells in pcDNA3.1-TGFBR2 + si-SMAD4 + GANT58 group had suppressed abilities of cell proliferation and migration than those in pcDNA3.1-TGFBR2 + si-SMAD4 group. Hedgehog pathway agonist (SAG) reversed the inhibitory effect of pcDNA3.1-TGFBR2 or pcDNA3.1-SMAD4 on CC cell biological function. Collectively, TGFBR2 restrains the migration and proliferation abilities of CC cells via mediating SMAD4 to partially block the Hedgehog signaling pathway."	"Next-generation sequencing reveals heterogeneous genetic alterations in key signaling pathways of mismatch repair deficient colorectal carcinomas. Colorectal carcinoma (CRC) with deficient mismatch repair (dMMR) is an etiologically heterogeneous molecular entity. We investigated the genetic profile, focusing on key signaling pathways and molecular diversity of dMMR CRCs. In this study, next-generation sequencing was applied to 156 consecutive dMMR CRCs and 225 randomly selected proficient MMR (pMMR) CRCs diagnosed between July 2015 and December 2019 at Peking Union Medical College Hospital. Genetic alterations and MLH1 promoter hypermethylation (MLH1<sup>me+</sup>) were analyzed. Among the most frequently mutated genes, RNF43, ARID1A, PIK3CA, ATM, and BRCA2 mutants were enriched in dMMR CRCs, whereas APC and TP53 mutations were enriched in pMMR CRCs. In dMMR group, RNF43, APC, ARID1A, and BRCA2 mutations were largely microsatellite instability events. WNT pathway was commonly altered regardless of MMR status. Compared to pMMR CRCs, dMMR CRCs had remarkably more prevalent PI3K, RTK-RAS, TGFβ, and DNA damage repair pathway alterations and more multiple mutations in WNT and PI3K pathways. Within dMMR tumors, mutual exclusivity occurred between CTNNB1 mutation and APC or RNF43 mutation, while coexistence existed between BRAF and RNF43 mutation, as well as RAS and APC mutation. MLH1<sup>me+</sup> dMMR CRCs had significantly more frequent RNF43 mutations but less frequent KRAS, APC, and CTNNB1 mutations comparing to MLH1-unmethylated dMMR CRCs. RNF43/BRAF comutations were detected in MLH1<sup>me+</sup> dMMR CRCs, whereas RAS/APC comutations were largely detected in Lynch syndrome-associated cases. RNF43 mutation was independently associated with MLH1<sup>me+</sup> rather than BRAF mutations. dMMR CRCs bearing receptor tyrosine kinase fusion demonstrated no additional RTK-RAS mutations, significantly fewer PI3K alterations and more TGFBR2 mutations than other dMMR tumors. Our study revealed that dMMR CRCs had distinctive gene mutation spectra and signaling pathway interaction patterns compared to proficient mismatch repair (pMMR) CRCs, and molecular heterogeneity was evident for these divergent oncogenic pathways. These findings justify the use of individualized therapy targeted to dMMR CRC subgroups."	"Circular RNA FOXO3 Suppresses Bladder Cancer Progression and Metastasis by Regulating MiR-9-5p/TGFBR2. Increasing evidence indicates that the dysregulation of circular RNAs (circRNAs) plays important roles in tumor progressions. In this study, we first analyzed circ-FOXO3 level in bladder cancers (BCs), and then BC cell lines were transfected with circ-FOXO3 expression vector, and cell proliferation, migration, and invasion abilities were analyzed. We also used bioinformatics tools to predict potential-binding miRNAs for circ-FOXO3, and luciferase reporter assay was used for the verification of binding miRNAs. For the further study, we analyzed potential downstream-binding mRNA for miRNA, and cell proliferation, migration and invasion abilities of it were also studied. We found that circ-FOXO3 was significantly down-regulated in bladder cancer (BC) tissues compared to normal bladder tissues. We also found that circ-FOXO3 overexpression inhibited cell proliferation, migration and invasion in BC cell lines. Moreover, we demonstrated that TGFBR2 was regulated by circ-FOXO3 through sponging miR-9-5p, the knockdown of TGFBR2 or the overexpression of miR-9-5p all related to the increased BC cell proliferation, migration, and invasion. In summary, our data showed that circ-FOXO3 was significantly down-regulated in bladder cancers. circ-FOXO3 overexpression inhibits BC cell progression and metastasis. Furthermore, circ-FOXO3 regulates TGFBR2 expression through sponging miR-9-5p in BC cell lines."	"Mesenchymal subtype neuroblastomas are addicted to TGF-βR2/HMGCR-driven protein geranylgeranylation. The identification of targeted agents with high therapeutic index is a major challenge for cancer drug discovery. We found that screening chemical libraries across neuroblastoma (NBL) tumor subtypes for selectively-lethal compounds revealed metabolic dependencies that defined each subtype. Bioactive compounds were screened across cell models of mesenchymal (MESN) and MYCN-amplified (MYCNA) NBL subtypes, which revealed the mevalonate and folate biosynthetic pathways as MESN-selective dependencies. Treatment with lovastatin, a mevalonate biosynthesis inhibitor, selectively inhibited protein prenylation and induced apoptosis in MESN cells, while having little effect in MYCNA lines. Statin sensitivity was driven by HMGCR expression, the rate-limiting enzyme for cholesterol synthesis, which correlated with statin sensitivity across NBL cell lines, thus providing a drug sensitivity biomarker. Comparing expression profiles from sensitive and resistant cell lines revealed a TGFBR2 signaling axis that regulates HMGCR, defining an actionable addiction in that leads to MESN-subtype-dependent apoptotic cell death."	"Index of Cancer-Associated Fibroblasts Is Superior to the Epithelial-Mesenchymal Transition Score in Prognosis Prediction. In many solid tumors, tissue of the mesenchymal subtype is frequently associated with epithelial-mesenchymal transition (EMT), strong stromal infiltration, and poor prognosis. Emerging evidence from tumor ecosystem studies has revealed that the two main components of tumor stroma, namely, infiltrated immune cells and cancer-associated fibroblasts (CAFs), also express certain typical EMT genes and are not distinguishable from intrinsic tumor EMT, where bulk tissue is concerned. Transcriptomic analysis of xenograft tissues provides a unique advantage in dissecting genes of tumor (human) or stroma (murine) origins. By transcriptomic analysis of xenograft tissues, we found that oral squamous cell carcinoma (OSCC) tumor cells with a high EMT score, the computed mesenchymal likelihood based on the expression signature of canonical EMT markers, are associated with elevated stromal contents featured with fibronectin 1 (Fn1) and transforming growth factor-β (Tgfβ) axis gene expression. In conjugation with meta-analysis of these genes in clinical OSCC datasets, we further extracted a four-gene index, comprising FN1, TGFB2, TGFBR2, and TGFBI, as an indicator of CAF abundance. The CAF index is more powerful than the EMT score in predicting survival outcomes, not only for oral cancer but also for the cancer genome atlas (TCGA) pan-cancer cohort comprising 9356 patients from 32 cancer subtypes. Collectively, our results suggest that a further distinction and integration of the EMT score with the CAF index will enhance prognosis prediction, thus paving the way for curative medicine in clinical oncology."	"The science of BAV aortopathy. The aortopathy associated with bicuspid aortic valve (BAV) is an epidemiologically relevant source of chronic and acute aortic disease (aneurysm and dissection). However, its pathogenesis is still the object of scientific uncertainties and debates. Indeed, the mechanisms determining the diseases of the ascending aorta in BAV patients are most likely complex and multifactorial, i.e. resulting from variable modes of interplay between genetic and hemodynamic factors. Although few scientific studies have so far taken into adequate account this complexity, leaving the precise sequence of pathogenetic events still undiscovered, the accumulated evidence from previous research approaches have at least brought about important insights. While genetic studies have so far identified variants relevant to either valve malformation or aortic complications (including those in the genes NOTCH1, TGFBR2, ACTA2, GATA5, NKX2.5, SMAD6, ROBO4), however each explaining not more than 5% of the study population, other investigations have thoroughly described both the flow features, with consequent forces acting on the arterial wall (including skewed flow jet direction, rotational flow, wall shear stress), and the main changes in the molecular and cellular wall structure (including extracellular matrix degradation, smooth muscle cell changes, oxidative stress, unbalance of TGF-β signaling, aberrant endothelial-to-mesenchymal transition). All of this evidence, together with the recognition of the diverse phenotypes that the aortopathy can assume in BAV patients, holding possible prognostic significance, is reviewed in this chapter. The complex and multifaceted body of knowledge resulting from clinical and basic science studies on BAV aortopathy has the potential to importantly influence modes of clinical management of this disease in the near future."	"A daf-7-related TGF-β ligand (Hc-tgh-2) shows important regulations on the development of Haemonchus contortus. In most multicellular organisms, the transforming growth factor-β (TGF-β) signalling pathway is involved in regulating the growth and stem cell differentiation. Previous studies have demonstrated the importance of three key molecules in this pathway in the parasitic nematode Haemonchus contortus, including one TGF-β type I receptor (Hc-tgfbr1), one TGF-β type II receptor (Hc-tgfbr2), and one co-Smad (Hc-daf-3), which regulated the developmental transition from the free-living to the parasitic stages of this parasite. However, almost nothing is known about the function of the TGF-β ligand (Hc-tgh-2) of H. contortus. Here, the temporal transcription profiles of Hc-tgh-2 at eight different developmental stages and spatial expression patterns of Hc-TGH-2 in adult female and male worms of H. contortus have been examined by real-time PCR and immunohistochemistry, respectively. In addition, RNA interference (RNAi) by soaking was employed to assess the importance of Hc-tgh-2 in the development from exsheathed third-stage larvae (xL3s) to fourth-stage larvae (L4s) in H. contortus. Hc-tgh-2 was continuously transcribed in all eight developmental stages of H. contortus studied with the highest level in the infective third-stage larvae (iL3) and Hc-TGH-2 was located in the muscle of the body wall, intestine, ovary of adult females and testes of adult males. Silencing Hc-tgh-2 by the specific double-stranded RNA (dsRNA), decreased the transcript level of Hc-tgh-2 and resulted in fewer xL3s developing to L4s in vitro. These results suggested that the TGF-β ligand, Hc-TGH-2, could play important roles in the developmental transition from the free-living (L3s) to the parasitic stage (L4s). Furthermore, it may also take part in the processes such as digestion, absorption, host immune response and reproductive development in H. contortus adults."	"H19, a Long Non-coding RNA, Mediates Transcription Factors and Target Genes through Interference of MicroRNAs in Pan-Cancer. Long non-coding RNAs (lncRNAs) have recently been found to be important in gene regulation. lncRNA H19 has been reported to play an oncogenic role in many human cancers. Its specific regulatory role is still elusive. In this study, we developed a novel analytic approach by integrating the synergistic regulation among lncRNAs (e.g., H19), transcription factors (TFs), target genes, and microRNAs (miRNAs) and then applied it to the pan-cancer expression datasets from The Cancer Genome Atlas (TCGA). Using linear regression models, we identified 88 H19-TF-gene co-regulatory triplets, in which 93% of the TF-gene pairs were related to cancer, indicating that our approach was effective to identify disease-related lncRNA-TF-gene co-regulation mechanisms. lncRNAs can function as miRNA sponges. Our further experiments found that H19 might regulate SP1-TGFBR2 through let-7b and miR-200b, ETS1-TGFBR2 through miR-29a and miR-200b, and STAT3-KLF11 through miR-17 in breast cancer cell lines. Our work suggests that miRNA-mediated lncRNA-TF-gene co-regulation is complicated yet important in cancer."	"Transforming Growth Factor-Beta and Sonic Hedgehog Signaling in Palatal Epithelium Regulate Tenascin-C Expression in Palatal Mesenchyme During Soft Palate Development. During palatogenesis, the palatal shelves first grow vertically on either side of the tongue before changing their direction of growth to horizontal. The extracellular matrix (ECM) plays an important role in these dynamic changes in palatal shelf morphology. Tenascin-C (TNC) is an ECM glycoprotein that shows unique expression in the posterior part of the palatal shelf, but little is known about the regulation of TNC expression. Since transforming growth factor-beta-3 (TGF-β3) and sonic hedgehog (SHH) signaling are known to play important roles in palatogenesis, we investigated whether TGF-β3 and SHH are involved in the regulation of TNC expression in the developing palate. TGF-β3 increased the expression of TNC mRNA and protein in primary mouse embryonic palatal mesenchymal cells (MEPM) obtained from palatal mesenchyme dissected at embryonic day 13.5-14.0. Interestingly, immunohistochemistry experiments revealed that TNC expression was diminished in K14-cre;Tgfbr2<sup> fl/fl </sup> mice that lack the TGF-β type II receptor in palatal epithelial cells and exhibit cleft soft palate, whereas TNC expression was maintained in Wnt1-cre;Tgfbr2<sup> fl/fl </sup> mice that lack the TGF-β type II receptor in palatal mesenchymal cells and exhibit a complete cleft palate. SHH also increased the expression of TNC mRNA and protein in MEPM cells. However, although TGF-β3 up-regulated TNC mRNA and protein expression in O9-1 cells (a cranial neural crest cell line), SHH did not. Furthermore, TGF-β inhibited the expression of osteoblastic differentiation markers (osterix and alkaline phosphatase) and induced the expression of fibroblastic markers (fibronectin and periostin) in O9-1 cells, whereas SHH did not affect the expression of osteoblastic and fibroblastic markers in O9-1 cells. However, immunohistochemistry experiments showed that TNC expression was diminished in the posterior palatal shelves of Shh<sup>-/+</sup> ;MFCS4<sup>+/-</sup> mice, which have deficient SHH signaling in the posterior palatal epithelium. Taken together, our findings support the proposal that TGF-β and SHH signaling in palatal epithelium co-ordinate the expression of TNC in the posterior palatal mesenchyme through a paracrine mechanism. This signal cascade may work in the later stage of palatogenesis when cranial neural crest cells have differentiated into fibroblast-like cells. The spatiotemporal regulation of ECM-related proteins by TGF-β and SHH signaling may contribute not only to tissue construction but also to cell differentiation or determination along the anterior-posterior axis of the palatal shelves."	"Clinical Management and Therapeutic Strategies for the Thyroid-Associated Ophthalmopathy: Current and Future Perspectives. TAO is an organ specific autoimmune disease associated with thyroid, and inflammation of the orbit and periorbital tissues, which is different from systemic autoimmune diseases such as SLE. However, Grave's disease is a kind of systemic autoimmune syndrome which might involve the thyroid, the eye ball and the anterior tibial tissue. Considering the inexplicable understanding of TAO pathogenesis, the disease worsens for the patients. Therefore, this manuscript provides insights into the recent advancements of clinical features, epidemiology, pathogenesis with gene-interactions, diagnosis, including available and novel treatment options for TAO, based on available data including RCTs, meta-analyses, and systematic reviews. Articles with clinical features, epidemiology, pathogenesis, diagnosis, and treatment of the disease were thoroughly studied. To perform the gene expression and pathway analysis, articles were searched on PubMed, MEDLINE Cochrane Library and ClinicalTrial.gov from 1982 to 2020. To predict novel TAO-specific therapeutic molecule, structure-based drug design (SBDD) was performed. We observed gene expression and pathway analysis and SBDD approaches might bring new insights in the field of TAO pathogenesis, diagnosis, and treatment. A genome-wide map of human genetic interactions revealed involvement of crucial cell-signalling pathways, such as TNF-mediated signalling pathway, type-I interferon signalling pathway, toll-like receptor signalling pathway, transforming growth factor-beta receptor signalling pathway etc. Recently, FDA-approved teprotumumab a breakthrough, first drug for the treatment of active thyroid eye disease, which reduces proptosis and the need for orbital decompression surgery. Furthermore, our SBDD results revealed that cost-effective Curcumin, Withaferin A, Resveratrol, Scopolamine, Quercetin, and Berberine may have significant binding affinity for hyaluronan protein and may be exploited for therapeutic purposes in TAO. Considering the increasing risk and nature of disease, novel drug therapies and markers for prognosis need to be investigated. Moreover, evidence-based non-invasive/minimal surgical therapies should be developed for the better management of the disease. ADIPOQ: Adiponectin; CAS: Clinical Activity Score; CCL5: C-C Motif Chemokine Ligand 5; CT: Computed Tomography; DON: Dysthyroid Optic Neuropathy; EUGOGO: European Group of Graves' Orbitopathy; FDA: U.S. Food and Drug Administration; FOS: Fos Proto-Oncogene, AP-1 Transcription Factor Subunit; HLA: Human Leukocyte Antigen; HLA-DRA: Major Histocompatibility Complex, Class II, DR Alpha; ICAM1: Intercellular Adhesion Molecule 1; IFNG: Interferon Gamma; IGF-1: Insulin-like Growth Factor 1; IGF-1R: Insulin-like Growth Factor-1 Receptor; IL12B: Interleukin 12B; IL23R: Interleukin 23 Receptor; IL6: Interleukin 6; IOP: Intraocular Pressure; IRF1: Interferon Regulatory Factor 1; IRF5: Interferon Regulatory Factor 5; IRF7: Interferon Regulatory Factor 7; IRF9: Interferon Regulatory Factor 9; JUN: Jun Proto-Oncogene, AP-1 Transcription Factor Subunit; JUNB: JunB Proto-Oncogene, AP-1 Transcription Factor Subunit; MHC: Major Histocompatibility Complex; MRI: Magnetic Resonance Imaging; NFKB1: Nuclear Factor Kappa B Subunit 1; NFKBIA: Nuclear Factor Kappa B Inhibitor Alpha; OADSCs: Orbital Adipose Derived Stromal Cells; PDGFB: Platelet Derived Growth Factor Subunit B; PPARG: Peroxisome Proliferator Activated Receptor Gamma; RANTES: Regulated on Activation Normal T cell Expressed and Secreted; RARA: Retinoic Acid Receptor Alpha; RCTs (Randomized Controlled Trials; SLE: Systemic lupus erythematosus; SOCS3: Suppressor of Cytokine Signaling 3; STAT1: Signal Transducer and Activator of Transcription 1; TAO: Thyroid-Associated Ophthalmopathy; TED: Thyroid eye disease; TGFB1: Transforming Growth Factor Beta 1; TGFB2: Transforming Growth Factor Beta 2; TGF-β: Transforming Growth Factor-beta; TLR7: Toll like Receptor 7; TLR9: Toll like Receptor 9; TNFRSF18: Tumor Necrosis Factor Receptor Superfamily Member 18; TNFSF11: Tumor Necrosis Factor Receptor Superfamily Member 11; TNF-α: Tumor Necrosis Factor-alpha; TSHR: Thyroid Stimulating Hormone Receptor; TSIs: Thyroid Stimulating Immunoglobulin; WNT5A: Wingless-Type MMTV Integration Site Family, Member 5A."	"Immunomodulation to enhance the efficacy of an HPV therapeutic vaccine. While prophylactic human papillomavirus (HPV) vaccines will certainly reduce the incidence of HPV-associated cancers, these malignancies remain a major health issue. PDS0101 is a liposomal-based HPV therapeutic vaccine consisting of the immune activating cationic lipid R-DOTAP and HLA-unrestricted HPV16 peptides that has shown in vivo CD8+ T cell induction and safety in a phase I study. In this report, we have employed the PDS0101 vaccine with two immune modulators previously characterized in preclinical studies and which are currently in phase II clinical trials. Bintrafusp alfa (M7824) is a first-in-class bifunctional fusion protein composed of the extracellular domains of the transforming growth factor-β receptor type II (TGFβRII) fused to a human IgG1 monoclonal antibody blocking programmed cell death protein-1 ligand (PDL1), designed both as a checkpoint inhibitor and to bring the TGFβRII 'trap' to the tumor microenvironment (TME). NHS-interleukin-12 (NHS-IL12) is a tumor targeting immunocytokine designed to bring IL-12 to the TME and thus enhance the inflammatory Th1 response. We employed TC-1 carcinoma (expressing HPV16 E6 and E7 and devoid of PDL1 expression) in a syngeneic mouse model in monotherapy and combination therapy studies to analyze antitumor effects and changes in immune cell types in the spleen and the TME. As a monotherapy, the PDS0101 vaccine generated HPV-specific T cells and antitumor activity in mice bearing HPV-expressing mEER oropharyngeal and TC-1 lung carcinomas. When used as a monotherapy in the TC-1 model, NHS-IL12 elicited antitumor effects as well as an increase in CD8+ T cells in the TME. When used as a monotherapy, bintrafusp alfa did not elicit antitumor effects or any increase in T cells in the TME. When all three agents were used in combination, maximum antitumor effects were observed, which correlated with increases in T cells and T-cell clonality in the TME. These studies provide the rationale for the potential clinical use of combinations of agents that can (1) induce tumor-associated T-cell responses, (2) potentiate immune responses in the TME and (3) reduce immunosuppressive entities in the TME."	"Bushenhuoxue formula accelerates fracture healing via upregulation of TGF-β/Smad2 signaling in mesenchymal progenitor cells. Although Bushenhuoxue formula (BSHXF) is successfully used as a non-traumatic therapy in treating bone fracture in China, the molecular mechanism underlying its effects remains poorly understood. The present study aims to explore the therapeutic effects of BSHXF on fracture healing in mice and the underlying mechanism. We performed unilateral open transverse tibial fracture procedure in C57BL/6 mice which were treated with or without BSHXF. Fracture callus tissues were collected and analyzed by X-ray, micro-CT, biomechanical testing, histopathology and quantitative gene expression analysis. Tibial fracture procedure was also performed in Cre-negative and Gli1-CreER; Tgfbr2flox/flox conditional knockout (KO) mice (Tgfbr2<sup>Gli1ER</sup>) to determine if BSHXF enhances fracture healing in a TGF-β-dependent manner. In addition, scratch-wound assay and cell counting kit-8 (CCK-8) assay were used to evaluate the effect of BSHXF on cell migration and cell proliferation in C3H10T1/2 mesenchymal stem cells, respectively. BSHXF promoted endochondral ossification and enhanced bone strength in wild-type (WT) or Cre- control mice. In contrast, BSHXF failed to promote bone fracture healing in Tgfbr2<sup>Gli1ER</sup> conditional KO mice. In the mice receiving BSHXF treatment, TGF-β/Smad2 signaling was significantly activated. Moreover, BSHXF enhanced cell migration and cell proliferation in C3H10T1/2 cells, which was strongly attenuated by the small molecule inhibitor SB525334 against TGF-β type I receptor. These data demonstrated that BSHXF promotes fracture healing by activating TGF-β/Smad2 signaling. BSHXF may be used as a type of alternative medicine for the treatment of bone fracture healing."	"Identification of a Pathogenic TGFBR2 Variant in a Patient With Loeys-Dietz Syndrome. Loeys-Dietz syndrome (LDS) is a rare connective tissue genetic disorder that is caused by a pathogenic variant in genes of transforming growth factor (TGF) beta receptor 1 (TGFBR1), TGFBR2, mothers against decapentaplegic homolog 2 (SMAD2), SMAD3, TGFB2, or TGFB3. It is characterized by aggressive vascular pathology, aneurysms, arterial tortuosity, bifid uvula, hypertelorism, and cleft palate. Here we present a 42-year-old female patient with LDS. The patient underwent rapidly progressing artery aneurysms and life-threatening aortic dissection. Spontaneous fracture of the first metatarsal bone was noted in her medical record. Physical examination revealed a delayed wound healing on her left abdomen. Considering these clinical manifestations, we speculated that there was a genetic defect in the connective tissue, which provides strength and flexibility to structures such as bones, skins, ligaments, and blood vessels. Thus, whole exome sequencing (WES) was performed on the proband and revealed a heterozygous missense pathogenic variant (c.1613T &gt; C/p.Val538Ala) in TGFBR2, which was a de novo variant in the proband as confirmed by the segregation analysis in parental samples. Although this variant was discovered and associated with the phenotype of LDS previously, the pathogenicity of the variant had not been confirmed by cellular functional assay yet. To further validate the effects of the variant in vitro, we assessed the canonical TGF-β signaling pathway in mutant cells. Our results showed that the p.Val538Ala variant significantly decreased TGF-β-induced gene transcription and the phosphorylation of Smad2, which were consistent with other pathogenic variants of TGFBR2. In conclusion, this study demonstrates that the p.Val538Ala pathogenic variant in TGFBR2 leads to aberrant TGF-β signaling and LDS in this patient."	"Are Genetic Variants Associated with the Location of Cerebral Arterial Lesions in Stroke Patients? Genetic variants may play a role in determining the location of cerebral atherosclerosis. We aimed to investigate the association between RNF213, MMP2, and genetic polymorphisms linked to vascular tortuosity with the location of cerebral arterial atherosclerosis. A prospective case-control study was conducted on patients with ischemic stroke and age- and sex-matched stroke-free controls. The stroke patients were categorized into those with intracranial artery atherosclerosis (ICAS), extracranial artery atherosclerosis (ECAS), and small vessel occlusion (SVO). Six single nucleotide polymorphisms (SNPs) including rs2118181 (FBN1), rs2179357 (SLC2A10), rs1036095 (TGFBR2), rs243865 (MMP2), rs1800470 (TGFB1), and rs112735431 (RNF213) were analyzed with the TaqMan Genotyping Assay, and the distribution of genotypes across groups was compared. None of the 6 SNPs were associated with stroke on comparing the 449 stroke patients (71 with ECAS, 169 with ICAS, and 209 with SVO) to the 447 controls. In the subgroup analysis, the adjusted odds ratios (aORs) for age and sex indicated a significant association between rs112735431 and ICAS in the allele comparison analysis and in the additive and dominant model analyses. rs112735431 was associated with anterior circulation involvement and increased burden of cerebral atherosclerosis. rs2179357 was significantly associated with ICAS in the recessive model analysis, and rs1800470 was significantly associated with ECAS in the recessive model analysis when compared to controls. rs112735431 was associated with ICAS and increased atherosclerosis burden in Korean stroke patients. Further studies are needed to elucidate the role of rs112735431 and to confirm the association of rs2179357 and rs1800470 with cerebral atherosclerosis."	"The BMP Receptor 2 in Pulmonary Arterial Hypertension: When and Where the Animal Model Matches the Patient. Background: Mutations in bone morphogenetic protein receptor type II (BMPR2) are leading to the development of hereditary pulmonary arterial hypertension (PAH). In non-hereditary forms of PAH, perturbations in the transforming growth factor-β (TGF-β)/BMP-axis are believed to cause deficient BMPR2 signaling by changes in receptor expression, the activity of the receptor and/or downstream signaling. To date, BMPR2 expression and its activity in the lungs of patients with non-hereditary PAH is poorly characterized. In recent decades, different animal models have been used to understand the role of BMPR2 signaling in PAH pathophysiology. Specifically, the monocrotaline (MCT) and Sugen-Hypoxia (SuHx) models are extensively used in interventional studies to examine if restoring BMPR2 signaling results in PAH disease reversal. While PAH is assumed to develop in patients over months or years, pulmonary hypertension in experimental animal models develops in days or weeks. It is therefore likely that modifications in BMP and TGF-β signaling in these models do not fully recapitulate those in patients. In order to determine the translational potential of the MCT and SuHx models, we analyzed the BMPR2 expression and activity in the lungs of rats with experimentally induced PAH and compared this to the BMPR2 expression and activity in the lungs of PAH patients. Methods: the BMPR2 expression was analyzed by Western blot analysis and immunofluorescence (IF) microscopy to determine the quantity and localization of the receptor in the lung tissue from normal control subjects and patients with hereditary or idiopathic PAH, as well as in the lungs of control rats and rats with MCT or SuHx-induced PAH. The activation of the BMP pathway was analyzed by determining the level and localization of phosphorylated Smad1/5/8 (pSmad 1/5/8), a downstream mediator of canonical BMPR2 signaling. Results: While BMPR2 and pSmad 1/5/8 expression levels were unaltered in whole lung lysates/homogenates from patients with hereditary and idiopathic PAH, IF analysis showed that BMPR2 and pSmad 1/5/8 levels were markedly decreased in the pulmonary vessels of both PAH patient groups. Whole lung BMPR2 expression was variable in the two PAH rat models, while in both experimental models the expression of BMPR2 in the lung vasculature was increased. However, in the human PAH lungs, the expression of pSmad 1/5/8 was downregulated in the lung vasculature of both experimental models. Conclusion: BMPR2 receptor expression and downstream signaling is reduced in the lung vasculature of patients with idiopathic and hereditary PAH, which cannot be appreciated when using human whole lung lysates. Despite increased BMPR2 expression in the lung vasculature, the MCT and SuHx rat models did develop PAH and impaired downstream BMPR2-Smad signaling similar to our findings in the human lung."	"Protein tyrosine phosphatase-α amplifies transforming growth factor-β-dependent profibrotic signaling in lung fibroblasts. Idiopathic pulmonary fibrosis (IPF) is a progressive, often fatal, fibrosing lung disease for which treatment remains suboptimal. Fibrogenic cytokines, including transforming growth factor-β (TGF-β), are central to its pathogenesis. Protein tyrosine phosphatase-α (PTPα) has emerged as a key regulator of fibrogenic signaling in fibroblasts. We have reported that mice globally deficient in PTPα (Ptpra<sup>-/-</sup>) were protected from experimental pulmonary fibrosis, in part via alterations in TGF-β signaling. The goal of this study was to determine the lung cell types and mechanisms by which PTPα controls fibrogenic pathways and whether these pathways are relevant to human disease. Immunohistochemical analysis of lungs from patients with IPF revealed that PTPα was highly expressed by mesenchymal cells in fibroblastic foci and by airway and alveolar epithelial cells. To determine whether PTPα promotes profibrotic signaling pathways in lung fibroblasts and/or epithelial cells, we generated mice with conditional (floxed) Ptpra alleles (Ptpra<sup>f/f</sup>). These mice were crossed with Dermo1-Cre or with Sftpc-CreER<sup>T2</sup> mice to delete Ptpra in mesenchymal cells and alveolar type II cells, respectively. Dermo1-Cre/Ptpra<sup>f/f</sup> mice were protected from bleomycin-induced pulmonary fibrosis, whereas Sftpc-CreER<sup>T2</sup>/Ptpra<sup>f/f</sup> mice developed pulmonary fibrosis equivalent to controls. Both canonical and noncanonical TGF-β signaling and downstream TGF-β-induced fibrogenic responses were attenuated in isolated Ptpra<sup>-/-</sup> compared with wild-type fibroblasts. Furthermore, TGF-β-induced tyrosine phosphorylation of TGF-β type II receptor and of PTPα were attenuated in Ptpra<sup>-/-</sup> compared with wild-type fibroblasts. The phenotype of cells genetically deficient in PTPα was recapitulated with the use of a Src inhibitor. These findings suggest that PTPα amplifies profibrotic TGF-β-dependent pathway signaling in lung fibroblasts."	"Network-based Transcriptome-wide Expression Study for Postmenopausal Osteoporosis. Menopause is a crucial physiological transition during a woman's life, and it occurs with growing risks of health issues like osteoporosis. To identify postmenopausal osteoporosis-related genes, we performed transcriptome-wide expression analyses for human peripheral blood monocytes (PBMs) using Affymetrix 1.0 ST arrays in 40 Caucasian postmenopausal women with discordant bone mineral density (BMD) levels. We performed multiscale embedded gene coexpression network analysis (MEGENA) to study functionally orchestrating clusters of differentially expressed genes in the form of functional networks. Gene sets net correlations analysis (GSNCA) was applied to assess how the coexpression structure of a predefined gene set differs in high and low BMD groups. Bayesian network (BN) analysis was used to identify important regulation patterns between potential risk genes for osteoporosis. A small interfering ribonucleic acid (siRNA)-based gene silencing in vitro experiment was performed to validate the findings from BN analysis. MEGENA showed that the &quot;T cell receptor signaling pathway&quot; and the &quot;osteoclast differentiation pathway&quot; were significantly enriched in the identified compact network, which is significantly correlated with BMD variation. GSNCA revealed that the coexpression structure of the &quot;Signaling by TGF-beta receptor complex pathway&quot; is significantly different between the 2 BMD discordant groups; the hub genes in the postmenopausal low and high BMD group are FURIN and SMAD3 respectively. With siRNA in vitro experiments, we confirmed the regulation relationship of TGFBR2-SMAD7 and TGFBR1-SMURF2. The present study suggests that biological signals involved in monocyte recruitment, monocyte/macrophage lineage development, osteoclast formation, and osteoclast differentiation might function together in PBMs that contribute to the pathogenesis of postmenopausal osteoporosis."	"Ectopia lentis in Loeys-Dietz syndrome type 4. Loeys-Dietz syndrome is a heritable disorder of the connective tissue leading to multisystem involvement including craniofacial features, skeletal abnormalities, cutaneous findings and early-onset and aggressive disease of the aorta and its branches. There are multiple types of Loeys-Dietz syndrome related to pathogenic variants in TGFBR1, TGFBR2, SMAD3, TGFB2, and TGFB3. Individuals with Loeys-Dietz syndrome may be misdiagnosed as having Marfan syndrome due to shared phenotypic features and aortic root dilation. However, ectopia lentis has been an important discriminating feature, being unique to Marfan syndrome and not reported to be associated with Loeys-Dietz syndrome. We report the case of a 46-year-old woman with Loeys-Dietz syndrome type 4 due to a pathogenic variant in TGFB2 who was diagnosed with ectopia lentis at age 44. The patient underwent whole exome sequencing and no other pathogenic variants were found to explain the ectopia lentis. Our findings indicate that ectopia lentis may be an uncommon finding in Loeys-Dietz syndrome type 4 and emphasize the importance of genetic testing in familial thoracic aortic aneurysm disease."	"The mRNA levels of TGF-β Type II receptor splice variants in monocytes are associated with disease activity in patients with rheumatoid arthritis. In rheumatoid arthritis (RA) patients, TGF-β exerts a singular effect on lymphocytes, macrophages, and polymorphonuclear leukocytes. Moreover, evidences indicate that TGF-β1 stimulation affects the expression levels of TGF-β receptors. Therefore, we analysed in different leukocyte subpopulations, whether the mRNA abundance of TGFBR2 splice variants might be related to RA. We isolated different leukocyte subpopulations from peripheral blood from 9 healthy control volunteers and 9 RA patients, matched by gender and age (cohort 1), and 8 additional RA patients (cohort 2). Then we quantified, by RT-qPCR, the mRNA relative abundance of TGFBR2 splice variants (namely TGFBR2A and TGFBR2B) in PMNs, and PBMCs (monocytes and non-monocytes). We first checked whether the TGFBR2-splice variant mRNA profile could be associated with any particular blood cell type both, in healthy control volunteers and in RA patients. In addition, PBMC and PMN mRNA levels were correlated, using Spearman's rank-order correlation test, with clinical and biochemical determinations of RA patients. We have shown that TGFBR2 exhibits an alternative splicing pattern in different subpopulations of human leucocytes from healthy controls, and the lack of it in the same cell type from RA samples. Furthermore, our study yields initial evidence that TGFBR2 mRNA expression levels in monocytes might mirror RA disease activity. mRNA abundance of TGFBR2 splice variants in monocytes shows changes linked to RA disease activity."	"In-silico investigations of selective miRNA-gene targets and their validation studies in obstructive sleep apnea (OSA) patient cohorts. Obstructive sleep apnoea (OSA) is a prevalent form of sleep disordered breathing which results in sleep fragmentation and deprivation. Obesity and cardiovascular disorders are the major risk factors associated with OSA. Molecular analysis of the factors associated with OSA could demarcate the clinical analysis pattern in a population. This study pertains to in-silico analyses of miRNA and their gene targets with validation for their potential role in OSA as putative biomarker candidates. miRDB, TargetScan and miRanda databases were used to identify targets of miR-27 and let-7 that have documented role in OSA and co-related obesity and cardiovascular disorders. Quantitative PCR was used to analyze expression pattern of miR-27 and let-7 in obese and non-obese OSA patient cohorts with respective controls. In-silico analysis was done using PatchDoc to obtain atomic contact energy (ACE) scores that indicated the docked gene targets to the predicted miRNA structures. The docked structures were analysed using Maestro Suite 11 for the hydrogen and aromatic interactions. Downregulation of miR-27 and let-7 in OSA compared to controls was observed. In-silico data analysis was performed for gene targets (TGFBR1, TGFBR2, SMAD2, SMAD4, CRY2 and CNR1) of the selected miRNAs (miR-27 and let-7). Among all, CNR1 and CRY2 were found to be better targets for miR-27 and let-7 respectively as per ACE scores, ROC scores and expression fold change in OSA. Our study gives insights to the expression profiling of miR-27 and let-7 and explore a set of potential target genes (CNR1 and CRY2) of these two miRNAs for a promising clinical relevance in OSA."	"Three Novel Variants identified in FBN1 and TGFBR2 in seven Iranian families with suspected Marfan syndrome. Marfan syndrome (MFS) is a multi-systemic autosomal dominant disease of the connective tissue characterized by the early development of thoracic aneurysms/dissections, along with various manifestations of the ocular and skeletal systems. Due to the genetic and clinical heterogeneity, the clinical diagnosis of this disorder is challenging. Loss-of-function mutations in FBN1 (encodes fibrillin-1) lead to MFS type 1. Also, similar mutations in transforming growth factor β receptor 2 (TGFBR2) gene cause MFS type 2. Both proteins involve in TGF-β signaling. In this study, genetic screening using a panel involving 14 genes, especially FBN1 and TGFBR2, were performed on seven representatives affected members of seven unrelated Iranian families suspected with MFS. To confirm the variants, Sanger sequencing was applied to other affected/unaffected members of the families. A total of 13 patients showed MFS manifestations. Using genetic screening, two novel and three previously reported variants in FBN1 were identified. We also detected two variants (a novel and a previously reported variant) in the TGFBR2 gene. In this study, we introduce three novel variants identified through gene screening in seven Iranian MFS families. This report is expected to considerably improve genetic counseling for Iranian MFS families. Early precise molecular diagnosis can be helpful for better management and improving the life expectancy of these patients."	"Identification and characterization of tumorigenic circular RNAs in cervical cancer. Circular RNAs (circRNAs) are a distinctive family of ncRNAs, and they function as key regulators in the initiation, development and progression of various diseases. However, the regulatory roles of circRNAs in the tumorigenesis of cervical cancer (CC) have not been fully understood. In this study, we identified a set of circRNAs in CC and paired normal tissues, using RNA sequencing data, and found that the cancer and normal tissues could be told apart by those differentially expressed (DE) circRNAs, indicating that circRNA expression profiles in CC were significantly different from those in the normal tissues. Meanwhile, the upregulated genes in CC were enriched in inflammation-related pathways, and the correlation analysis between the DE circRNAs and genes revealed that the abundance of DE circRNAs was positively related to the expression of their host genes. However, the expression of TGFBR2 and KDM4C were found to exhibit a negative correlation with their corresponding circRNAs. Furthermore, we also predicted the interactions between circRNAs and proteins, and constructed a competing endogenous RNA (ceRNA) network. Specifically, hsa_circ_0001495 was predicted to interact with ESRP2, and acted as a sponge by competing for miRNAs with TBL1XR1. Functionally, hsa_circ_0001495 was predicted to regulate epithelial cell proliferation and NOTCH signaling via ESRP2 and TBL1XR1, respectively. We also evaluated the prognostic values of downstream target genes of selected circRNAs, using clinical records of CC patients. In summary, the present study provided some regulatory circRNAs involved in CC tumorigenesis based on bioinformatics approaches, which brought strong evidences for researchers to further explore their biological and clinical values."	"Intrafamilial variability of cardiovascular abnormalities in relation to p.R460H TGFBR2 mutation. NA"	"Autophagy in the physiological endometrium and cancer. Autophagy is a highly conserved catabolic process and a major cellular pathway for the degradation of long-lived proteins and cytoplasmic organelles. An increasing body of evidence has unveiled autophagy as an indispensable biological function that helps to maintain normal tissue homeostasis and metabolic fitness that can also lead to severe consequences for the normal cellular functioning when altered. Recent accumulating data point to autophagy as a key player in a wide variety of physiological and pathophysiological conditions in the human endometrium, one of the most proficient self-regenerating tissues in the human body and an instrumental player in placental species reproductive function. The current review highlights the most recent findings regarding the process of autophagy in the normal and cancerous endometrial tissue. Current research efforts aiming to therapeutically exploit autophagy and the methodological approaches used are discussed. 3-MA: 3-methyladenine; ACACA (acetyl-CoA carboxylase alpha); AICAR: 5-aminoimidazole-4-carboximide riboside; AKT: AKT serine/threonine kinase; AMPK: AMP-activated protein kinase; ATG: autophagy related; ATG12: autophagy related 12; ATG16L1: autophagy related 16 like 1; ATG3: autophagy related 3; ATG4C: autophagy related 4C cysteine peptidase; ATG5: autophagy related 5; ATG7: autophagy related 7; ATG9: autophagy related 9; Baf A1: bafilomycin A1; BAX: BCL2 associated X, apoptosis regulator; BCL2: BCL2 apoptosis regulator; BECN1: beclin 1; CACNA1D: calcium voltage-gated channel subunit alpha1 D; CASP3: caspase 3; CASP7: caspase 7; CASP8: caspase 8; CASP9: caspase 9; CD44: CD44 molecule (Indian blood group); CDH1: cadherin 1; CDKN1A: cyclin dependent kinase inhibitor 1A; CDKN2A: cyclin dependent kinase inhibitor 2A; CMA: chaperone-mediated autophagy; CQ: chloroquine; CTNNB1: catenin beta 1; DDIT3: DNA damage inducible transcript 3; EC: endometrial cancer; EGFR: epidermal growth factor receptor; EH: endometrial hyperplasia; EIF4E: eukaryotic translation initiation factor 4E; EPHB2/ERK: EPH receptor B2; ER: endoplasmic reticulum; ERBB2: er-b2 receptor tyrosine kinase 2; ERVW-1: endogenous retrovirus group W member 1, envelope; ESR1: estrogen receptor 1; FSH: follicle-stimulating hormone; GCG/GLP1: glucagon; GFP: green fluorescent protein; GIP: gastric inhibitory polypeptide; GLP1R: glucagon-like peptide-1 receptor; GLS: glutaminase; H2AX: H2A.X variant histone; HIF1A: hypoxia inducible factor 1 alpha; HMGB1: high mobility group box 1; HOTAIR: HOX transcript antisense RNA; HSPA5: heat shock protein family A (HSP70) member 5; HSPA8: heat shock protein family A (HSP70) member 8; IGF1: insulin like growth factor 1; IL27: interleukin 27; INS: insulin; ISL: isoliquiritigenin; KRAS: KRAS proto-oncogene, GTPase; LAMP2: lysosomal-associated membrane protein 2; lncRNA: long-non-coding RNA; MAP1LC3A/LC3A: microtubule associated protein 1 light chain 3 alpha; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; MAPK8: mitogen-activated protein kinase 8; MAPK9: mitogen-activated protein kinase 9; MPA: medroxyprogesterone acetate; MTOR: mechanistic target of rapamycin kinase; MTORC1: mechanistic target of rapamycin kinase complex 1; MTORC2: mechanistic target of rapamycin kinase complex 2; MYCBP: MYC-binding protein; NFE2L2: nuclear factor, erythroid 2 like 2; NFKB: nuclear factor kappa B; NFKBIA: NFKB inhibitor alpha; NK: natural killer; NR5A1: nuclear receptor subfamily 5 group A member 1; PARP1: poly(ADP-ribose) polymerase 1; PAX2: paired box 2; PDK1: pyruvate dehydrogenase kinase 1; PDX: patient-derived xenograft; PIK3C3/Vps34: phosphatidylinositol 3-kinase catalytic subunit type 3; PIK3CA: phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha; PIK3R1: phosphoinositide-3-kinase regulatory subunit 1; PIKFYVE: phosphoinositide kinase, FYVE-type zinc finger containing; PPD: protopanaxadiol; PRKCD: protein kinase C delta; PROM1/CD133: prominin 1; PtdIns3K: class III phosphatidylinositol 3-kinase; PtdIns3P: phosphatidylinositol-3-phosphate; PTEN: phosphatase and tensin homolog; RB1CC1/FIP200: RB1 inducible coiled-coil 1; RFP: red fluorescent protein; RPS6KB1/S6K1: ribosomal protein S6 kinase B1; RSV: resveratrol; SGK1: serum/glucocorticoid regulated kinase 1; SGK3: serum/glucocorticoid regulated kinase family member 3; SIRT: sirtuin; SLS: stone-like structures; SMAD2: SMAD family member 2; SMAD3: SMAD family member 3; SQSTM1: sequestosome 1; TALEN: transcription activator-like effector nuclease; TGFBR2: transforming growth factor beta receptor 2; TP53: tumor protein p53; TRIB3: tribbles pseudokinase 3; ULK1: unc-51 like autophagy activating kinase 1; ULK4: unc-51 like kinase 4; VEGFA: vascular endothelial growth factor A; WIPI2: WD repeat domain, phosphoinositide interacting 2; XBP1: X-box binding protein 1; ZFYVE1: zinc finger FYVE domain containing 1."	"If ineffective levels of transforming growth factors and their receptor account for old age being a risk factor for Alzheimer's disease, then increasing TGFBR2 might be therapeutic. If it is correct that ineffective levels of transforming growth factors beta and their receptor account for old age being a risk factor for Alzheimer's disease (AD), then increasing TGFBR2 might be therapeutic. Pacltaxel is a direct way to increase TGFBR2 levels. Indirect ways that will increase TGFBR2, include decreasing the levels of c-myc because that will lower the miRNA cluster 17-92, particularly its miR-17 and miR-20a components; and raising EGFR because that also will increase TGFBR2. Metformin and desferrioxamine are drugs that decrease c-myc; and statins increase levels of EGF. Clinical trials using those drugs, would demonstrate whether they decrease the progression from amnestic mild cognitive impairment to AD."	"Pattern of Invasion in Human Pancreatic Cancer Organoids Is Associated with Loss of SMAD4 and Clinical Outcome. Pancreatic ductal adenocarcinoma (PDAC) is an aggressive malignancy characterized by extensive local invasion and systemic spread. In this study, we employed a three-dimensional organoid model of human pancreatic cancer to characterize the molecular alterations critical for invasion. Time-lapse microscopy was used to observe invasion in organoids from 25 surgically resected human PDAC samples in collagen I. Subsequent lentiviral modification and small-molecule inhibitors were used to investigate the molecular programs underlying invasion in PDAC organoids. When cultured in collagen I, PDAC organoids exhibited two distinct, morphologically defined invasive phenotypes, mesenchymal and collective. Each individual PDAC gave rise to organoids with a predominant phenotype, and PDAC that generated organoids with predominantly mesenchymal invasion showed a worse prognosis. Collective invasion predominated in organoids from cancers with somatic mutations in the driver gene SMAD4 (or its signaling partner TGFBR2). Reexpression of SMAD4 abrogated the collective invasion phenotype in SMAD4-mutant PDAC organoids, indicating that SMAD4 loss is required for collective invasion in PDAC organoids. Surprisingly, invasion in passaged SMAD4-mutant PDAC organoids required exogenous TGFβ, suggesting that invasion in SMAD4-mutant organoids is mediated through noncanonical TGFβ signaling. The Rho-like GTPases RAC1 and CDC42 acted as potential mediators of TGFβ-stimulated invasion in SMAD4-mutant PDAC organoids, as inhibition of these GTPases suppressed collective invasion in our model. These data suggest that PDAC utilizes different invasion programs depending on SMAD4 status, with collective invasion uniquely present in PDAC with SMAD4 loss. SIGNIFICANCE: Organoid models of PDAC highlight the importance of SMAD4 loss in invasion, demonstrating that invasion programs in SMAD4-mutant and SMAD4 wild-type tumors are different in both morphology and molecular mechanism."	"LncRNA HAGLR accelerates femoral neck fracture healing through negatively regulating miRNA-19a-3p. This study aims to uncover the function of long non-coding RNA (lncRNA) HAGLR in the healing process of femoral neck fracture and the underlying mechanism. Expression levels of HAGLR, microRNA-19a-3p (miRNA-19a-3p) and TGFBR2 in fractured femoral neck tissues and adjacent normal tissues were detected by quantitative Real Time-Polymerase Chain Reaction (qRT-PCR). Regulatory effects of HAGLR on viability, apoptosis, migration, and protein levels of BALP and Osteocalcin in MC3T3-E1 cells were determined. Dual-Luciferase reporter gene assay was conducted to assess the binding in HAGLR/miRNA-19a-3p/TGFBR2. In addition, relative levels of TGFBR2, p-smad2, p-smad3, and RUNX2 in MSCs influenced by HAGLR were detected. HAGLR was downregulated in fractured femoral neck tissues. Knockdown of HAGLR reduced viability and migration, enhanced apoptotic rate, as well as downregulated BALP and Osteocalcin in MC3T3-E1 cells. HAGLR served as miRNA-19a-3p sponge, and miRNA-19a-3p directly targeted 3'-untranslated region (3'-UTR) of TGFBR2. Knockdown of HAGLR downregulated expressions of TGFBR2, p-smad2, p-smad3, and RUNX2 in MC3T3-E1 cells, indicating the inhibited TGF-β pathway. LncRNA HAGLR/miRNA-19a-3p/TGFBR2 regulatory loop accelerates the healing process of femoral neck fracture by inhibiting the TGF-β pathway."	"Urethane-induced Mammary Carcinogenesis Susceptibility in Transgenic Mice Expressing a Dominant-negative TGF-β Type II Receptor. Transforming growth factor-β (TGF-β) plays dual suppressive and oncogenic roles in mammary carcinogenesis. To analyze whether TGF-β exerts suppressive or oncogenic actions on mammary carcinogenesis, transgenic mice overexpressing a dominant-negative mutant type II TGF-β receptor (TβRII-DNR) driven by the mouse mammary tumor virus (MMTV) promoter were treated with a low dose of urethane, a carcinogen present in fermented food products and alcoholic beverages. Lobular proliferative lesions, showing high β-casein expression, developed in the mammary glands of TβRII-DNR<sup>+/+</sup> mice aged &gt;61 weeks. Compared with wild-type mice, TβRII-DNR<sup>+/+</sup> mice administered with urethane showed significant increases in dysplastic hyperplasias and adenocarcinomas of the mammary glands. The functional decline of TGF-β signaling in mammary glands led to a high susceptibility to urethane-induced mammary carcinogenesis. TGF-β signaling may act as a tumor suppressor during mammary tumor development."	"Pooled In Vitro and In Vivo CRISPR-Cas9 Screening Identifies Tumor Suppressors in Human Colon Organoids. Colorectal cancer (CRC) is characterized by prominent genetic and phenotypic heterogeneity between patients. To facilitate high-throughput genetic testing and functional identification of tumor drivers, we developed a platform for pooled CRISPR-Cas9 screening in human colon organoids. Using transforming growth factor β (TGF-β) resistance as a paradigm to establish sensitivity and scalability in vitro, we identified optimal conditions and strict guide RNA (gRNA) requirements for screening in 3D organoids. We then screened a pan-cancer tumor suppressor gene (TSG) library in pre-malignant organoids with APC<sup>-/-</sup>;KRAS<sup>G12D</sup> mutations, which were xenografted to study clonal advantages in context of a complex tumor microenvironment. We identified TGFBR2 as the most prevalent TSG, followed by known and previously uncharacterized mediators of CRC growth. gRNAs were validated in a secondary screen using unique molecular identifiers (UMIs) to adjust for clonal drift and to distinguish clone size and abundance. Together, these findings highlight a powerful organoid-based platform for pooled CRISPR-Cas9 screening for patient-specific functional genomics."	"Extracellular Vesicles isolated from Mesenchymal Stromal Cells Modulate CD4<sup>+</sup> T Lymphocytes Toward a Regulatory Profile. Mesenchymal stromal cells (MSCs) can generate immunological tolerance due to their regulatory activity in many immune cells. Extracellular vesicles (EVs) release is a pivotal mechanism by which MSCs exert their actions. In this study, we evaluate whether mesenchymal stromal cell extracellular vesicles (MSC-EVs) can modulate T cell response. MSCs were expanded and EVs were obtained by differential ultracentrifugation of the supernatant. The incorporation of MSC-EVs by T cells was detected by confocal microscopy. Expression of surface markers was detected by flow cytometry or CytoFLEX and cytokines were detected by RT-PCR, FACS and confocal microscopy and a miRNA PCR array was performed. We demonstrated that MSC-EVs were incorporated by lymphocytes in vitro and decreased T cell proliferation and Th1 differentiation. Interestingly, in Th1 polarization, MSC-EVs increased Foxp3 expression and generated a subpopulation of IFN-γ<sup>+</sup>/Foxp3<sup>+</sup>T cells with suppressive capacity. A differential expression profile of miRNAs in MSC-EVs-treated Th1 cells was seen, and also a modulation of one of their target genes, TGFbR2. MSC-EVs altered the metabolism of Th1-differentiated T cells, suggesting the involvement of the TGF-β pathway in this metabolic modulation. The addition of MSC-EVs in vivo, in an OVA immunization model, generated cells Foxp3<sup>+</sup>. Thus, our findings suggest that MSC-EVs are able to specifically modulate activated T cells at an alternative regulatory profile by miRNAs and metabolism shifting."	"Mutational Analysis of the Putative Anti-Müllerian Hormone (AMH) Binding Interface on its Type II Receptor, AMHR2. Anti-Müllerian hormone (AMH) or Müllerian inhibiting substance is a unique member of the TGF-β family responsible for development and differentiation of the reproductive system. AMH signals through its own dedicated type II receptor, anti-Müllerian hormone receptor type II (AMHR2), providing an exclusive ligand-receptor pair within the broader TGF-β family. In this study, we used previous structural information to derive a model of AMH bound to AMHR2 to guide mutagenesis studies to identify receptor residues important for AMH signaling. Nonconserved mutations were introduced in AMHR2 and characterized in an AMH-responsive cell-based luciferase assay and native PAGE. Collectively, our results identified several residues important for AMH signaling within the putative ligand binding interface of AMHR2. Our results show that AMH engages AMHR2 at a similar interface to how activin and BMP class ligands bind the type II receptor, ACVR2B; however, there are significant molecular differences at the ligand interface of these 2 receptors, where ACVR2B is mostly hydrophobic and AMHR2 is predominately charged. Overall, this study shows that although the location of ligand binding on the receptor is similar to ACVR2A, ACVR2B, and BMPR2; AMHR2 uses unique ligand-receptor interactions to impart specificity for AMH."	"MicroRNA-483 amelioration of experimental pulmonary hypertension. Endothelial dysfunction is critically involved in the pathogenesis of pulmonary arterial hypertension (PAH) and that exogenously administered microRNA may be of therapeutic benefit. Lower levels of miR-483 were found in serum from patients with idiopathic pulmonary arterial hypertension (IPAH), particularly those with more severe disease. RNA-seq and bioinformatics analyses showed that miR-483 targets several PAH-related genes, including transforming growth factor-β (TGF-β), TGF-β receptor 2 (TGFBR2), β-catenin, connective tissue growth factor (CTGF), interleukin-1β (IL-1β), and endothelin-1 (ET-1). Overexpression of miR-483 in ECs inhibited inflammatory and fibrogenic responses, revealed by the decreased expression of TGF-β, TGFBR2, β-catenin, CTGF, IL-1β, and ET-1. In contrast, inhibition of miR-483 increased these genes in ECs. Rats with EC-specific miR-483 overexpression exhibited ameliorated pulmonary hypertension (PH) and reduced right ventricular hypertrophy on challenge with monocrotaline (MCT) or Sugen + hypoxia. A reversal effect was observed in rats that received MCT with inhaled lentivirus overexpressing miR-483. These results indicate that PAH is associated with a reduced level of miR-483 and that miR-483 might reduce experimental PH by inhibition of multiple adverse responses."	"LncRNA MIR4435-2HG potentiates the proliferation and invasion of glioblastoma cells via modulating miR-1224-5p/TGFBR2 axis. Glioblastoma (GBM) belongs to the high-grade (IV) gliomas with extremely poor prognosis. Accumulating evidence uncovered the key roles of long non-coding RNAs (lncRNAs) in GBM development. This study aimed to determine the biological actions and the clinical relevance of lncRNA MIR4435-2 Host Gene (MIR4435-2HG) in GBM. Data from GEPIA database showed that MIR4435-2HG was up-regulated in GBM tissues and high expression of MIR4435-2HG correlated with shorter overall survival of GBM patients. Further experimental assays verified the up-regulation of MIR4435-2HG in GBM tissues and cell lines. In vitro cell studies and in vivo animal studies showed that knockdown of MIR4435-2HG resulted in the inhibition of GBM cell proliferation and invasion and in vivo tumour growth, while MIR4435-2HG overexpression driven GBM progression. Furthermore, MIR44435-2HG was found to sponge miR-1224-5p and suppress miR-1224-5p expression; overexpression of miR-1224-5p attenuated the enhancement in GBM cell proliferation and invasion induced by MIR4435-2HG overexpression. In a subsequent study, miR-1224-5p was found to target transforming growth factor-beta receptor type 2 (TGFBR2) and repressed TGFBR2 expression, and in vitro assays showed that miR-1224-5p exerted tumour-suppressive effects via targeting TGFBR2. More importantly, TGFRB2 knockdown antagonized hyper-proliferation and invasion of GBM cells with MIR4435-2HG overexpression. Clinically, the down-regulation of miR-1224-5p and up-regulation of TGFBR2 were verified in the GBM clinical samples. Taken together, the present study suggests the oncogenic role of MIR4435-2HG in GBM and underlies the key function of MIR4435-2HG-driven GBM progression via targeting miR-1224-5p/TGFBR2 axis."	"Tendon-derived extracellular matrix induces mesenchymal stem cell tenogenesis via an integrin/transforming growth factor-β crosstalk-mediated mechanism. Treatment of tendon injuries is challenging. To develop means to augment tendon regeneration, we have previously prepared a soluble, low immunogenic (DNA-free), tendon extracellular matrix fraction (tECM) by urea extraction of juvenile bovine tendons, which is capable of enhancing transforming growth factor-β (TGF-β) mediated tenogenesis in human adipose-derived stem cells (hASCs). Here, we aimed to elucidate the mechanism of tECM-driven hASC tenogenic differentiation in vitro, focusing on the integrin and TGF-β/SMAD pathways. Our results showed that tECM promoted hASC proliferation and tenogenic differentiation in vitro based on tenogenesis-associated markers. tECM also induced higher expression of several integrin subunits and TGF-β receptors, and nuclear translocation of p-SMAD2 in hASCs. Pharmacological inhibition of integrin-ECM binding, focal adhesion kinase (FAK) signaling, or TGF-β signaling independently led to compromised pro-tenogenic effects of tECM and actin fiber polymerization. Additionally, integrin blockade inhibited tECM-driven TGFBR2 expression, while inhibiting TGF-β signaling decreased tECM-mediated expression of integrin α1, α2, and β1 in hASCs. Together, these findings suggest that the strong pro-tenogenic bioactivity of tECM is regulated via integrin/TGF-β signaling crosstalk. Understanding how integrins interact with signaling by TGF-β and/or other growth factors (GFs) within the tendon ECM microenvironment will provide a rational basis for an ECM-based approach for tendon repair."	"Transforming growth factor-β1 suppress pentraxin-3 in human orbital fibroblasts. Transforming growth factor-β (TGF-β), recognized as a crucial factor in regulating fibrosis and tissue remodeling, plays a role in thyroid-associated ophthalmopathy (TAO). Pentraxin-3 (PTX3), a member of pentraxins, was recently implicated in many autoimmune and fibrotic diseases. Thus, we hypothesize if there is a potential correlation between TGF-β and PTX3 in orbital fibroblasts (OFs). Several strains of OFs obtained from patients with TAO (n = 8) and healthy donors (n = 3) were established as the study model. Recombinant TGF-β1 was exerted as an intervention and the expression of PTX3 was detected. To uncover the underlying mechanism, specific inhibitors of TGF-β and siRNA knockdown of Smads were utilized. We found that TGF-β1 can reduce PTX3 protein expression in OFs. We also demonstrated that this downregulation was mediated at a pretranslational level, and PTX3 mRNA was inhibited in a time- and concentration-dependent manner by TGF-β1. Interestingly, the basic level of PTX3 and the magnitude of suppression were not significantly different between TAO and control groups. Furthermore, the TGF-β receptor complex (type I:type II) and the Smad2/3-Smad4-dependent pathway are essential for TGF-mediated PTX3 repression. These findings indicated that TGF-β1 can inhibit PTX3 expression in human OFs, which may participate in inflammation and fibrosis in patients with TAO and provide a potential target for the antifibrotic treatment."	"Inhibition of Microglial TGFβ Signaling Increases Expression of Mrc1. Microglia are constantly surveying their microenvironment and rapidly react to impairments by changing their morphology, migrating toward stimuli and adopting gene expression profiles characterizing their activated state. The increased expression of the M2-like marker Mannose receptor 1 (Mrc1), which is also referred to as CD206, in microglia has been reported after M2-like activation in vitro and in vivo. Mrc1 is a 175-kDa transmembrane pattern recognition receptor which binds a variety of carbohydrates and is involved in the pinocytosis and the phagocytosis of immune cells, including microglia, and thought to contribute to a neuroprotective microglial phenotype. Here we analyzed the effects of TGFβ signaling on Mrc1 expression in microglia in vivo and in vitro. Using C57BL/6 wild type and Cx3cr1 <sup> CreERT2 </sup> :R26-YFP:Tgfbr2 <sup> fl/fl </sup> mice-derived microglia, we show that the silencing of TGFβ signaling results in the upregulation of Mrc1, whereas recombinant TGFβ1 induced the delayed downregulation of Mrc1. Furthermore, chromatin immunoprecipitation experiments provided evidence that Mrc1 is not a direct Smad2/Smad4 target gene in microglia. Altogether our data indicate that the changes in Mrc1 expression after the activation or the silencing of microglial TGFβ signaling are likely to be mediated by modifications of the secondary intracellular signaling events influenced by TGFβ signaling."	"Acceleration of BRAF<sup>V600E</sup>-induced thyroid carcinogenesis by TGFβ signal deficiency in mice. Transforming growth factor-β (TGFβ) has pleiotropic actions, including both anti- and pro-tumorigenic abilities. We have previously shown no tumor development in the thyroid-specific TGFβ receptor type II knockout (Tgfβr2 KO) mice, indicating the insufficiency of defective TGFβ signal itself for thyroid cancer initiation. In the current study, we evaluated whether defective TGFβ signal accelerates BRAF<sup>V600E</sup>-mediated thyroid carcinogenesis in our mouse model, in which intrathyroidal injection of adenovirus expressing Cre under thyroglobulin (TG) promoter (Ad-TgP-Cre) into thyroid lobes of conditional Braf<sup>V600E</sup> knock-in mice (Braf<sup>CA</sup>) induces thyroid cancers 12 months later. Braf<sup>CA/wt</sup>;Tgfbr2<sup>floxE2/floxE2</sup> mice were generated by crossing Tgfbr2<sup>floxE2/floxE2</sup> and Braf<sup>CA</sup> mice, and Ad-TgP-Cre was injected into the left lobes of 4-6-week-old mice. Mice were sacrificed at 6 and 12 months, and the thyroid tissues were subjected to H&amp;E and immune-histochemistry and -fluorecence. Thyroid tumors were observed in 8 of 10 mice at 6 months and 4 of 7 mice at 12 months. These tumors were judged to be malignant by H&amp;E staining, because of the presence of papillary growth of atypical follicular cells, intranuclear cytoplasmic inclusions and so on. Immunohistochemical analyses using thyroid cancer tissues obtained at 6 months demonstrated variable levels of TG but steady levels of Paired Box-8 expression and higher Ki67 positivity. The degree of epithelial-to-mesenchymal transition could not be evaluated because normal thyroid tissues and thyroid cancers developed in Braf<sup>CA</sup> and Braf<sup>CA/wt</sup>;Tgfbr2<sup>floxE2/floxE2</sup> mice were all E-cadherin<sup>+</sup>/vimentin<sup>-</sup>, that is, epithelial type. In a mouse model, defective TGFβ signaling pathway accelerates BRAF<sup>V600E</sup>-induced thyroid cancer development, which is occasionally accompanied by reduced TG expression implying dedifferentiation. The former finding is consistent with anti-tumorigenic ability of TGFβ in early tumorigenic process, but the latter is contradictory to generally accepted concept for TGFβ-induction of dedifferentiation."	"Exploring the roles of fecundity-related long non-coding RNAs and mRNAs in the adrenal glands of small-tailed Han Sheep. Long non-coding RNAs (lncRNAs) can play important roles in uterine and ovarian functions. However, little researches have been done on the role of lncRNAs in the adrenal gland of sheep. Herein, RNA sequencing was used to compare and analyze gene expressions in adrenal tissues between follicular phases and luteal phases in FecB<sup>BB</sup> (MM) and FecB<sup>++</sup> (WW) sheep, respectively, and differentially expressed lncRNAs and genes associated with reproduction were identified. In MM sheep, 38 lncRNAs and 545 mRNAs were differentially expressed in the adrenal gland between the luteal and follicular phases; In WW sheep, 513 differentially expressed lncRNAs and 2481 mRNAs were identified. Gene Ontology and Kyoto Encyclopedia of Genes and Genomes enrichment analyses indicated that differentially expressed lncRNAs and their target genes are mainly involved in the circadian rhythm, the mitogen activated protein kinase, thyroid, ovarian steroidogenesis and transforming growth factor beta signaling pathways. Differentially expressed lncRNAs can regulate reproduction by modulating genes involved in these signaling pathways and biological processes. Specifically, XLOC_254761, XLOC_357966, 105,614,839 and XLOC_212877 targeting CREB1, PER3, SMAD1 and TGFBR2, respectively, appear to play key regulatory roles. These results broaden our understanding of lncRNAs in adrenal gland of sheep and provide new insights into the molecular mechanisms underlying sheep reproduction."	"Effects of adjuvant-induced arthritis on the ventral prostate of rats treated with angiotensin AT1 receptor blocker. To analyze the prostatic compartments, extracellular matrix, microvascularization, transforming growth factor-beta (TGF-β) and angiotensin II receptors type 1 (AT1) levels, and histopathology of the ventral prostate in a rat model for rheumatoid arthritis, and to evaluate the effect of angiotensin II AT1 receptor blocker (ARB) in the disease. Fifteen male rats (90 days old) were divided into three groups (n = 5/group): control, adjuvant-induced arthritis without (AIA) or with AT1 receptor blocker (AIA + ARB). Animals were euthanized 60 days after immunization. The ventral prostate was collected, weighed, and processed for histological and immunohistochemical analysis. Our results show that AIA increases production of the prostatic epithelium and extracellular matrix, accompanied by a reduction in the number of tissue capillaries. ARB treatment promotes decreased production of extracellular matrix and increased TGF-β and AT1 receptor immunostaining. AIA may activate specific mechanisms that modify the prostatic environment; the use of ARB attenuates some altered prostate parameters in a rat model for arthritis."	"Molecular basis of ALK1-mediated signalling by BMP9/BMP10 and their prodomain-bound forms. Activin receptor-like kinase 1 (ALK1)-mediated endothelial cell signalling in response to bone morphogenetic protein 9 (BMP9) and BMP10 is of significant importance in cardiovascular disease and cancer. However, detailed molecular mechanisms of ALK1-mediated signalling remain unclear. Here, we report crystal structures of the BMP10:ALK1 complex at 2.3 Å and the prodomain-bound BMP9:ALK1 complex at 3.3 Å. Structural analyses reveal a tripartite recognition mechanism that defines BMP9 and BMP10 specificity for ALK1, and predict that crossveinless 2 is not an inhibitor of BMP9, which is confirmed by experimental evidence. Introduction of BMP10-specific residues into BMP9 yields BMP10-like ligands with diminished signalling activity in C2C12 cells, validating the tripartite mechanism. The loss of osteogenic signalling in C2C12 does not translate into non-osteogenic activity in vivo and BMP10 also induces bone-formation. Collectively, these data provide insight into ALK1-mediated BMP9 and BMP10 signalling, facilitating therapeutic targeting of this important pathway."	"Effect of Diosgenin on the Circulating MicroRNA Profile of Ovariectomized Rats. The present study aimed to assess the changes in circulating microRNA (miRNA) expression profiles associated with the potential osteoprotective effect of diosgenin (DIO) in ovariectomized (OVX) rats. Wistar rats (female) were subjected to a sham operation (SHAM group) or ovariectomy. OVX rats were treated with DIO (DIO group) or vehicle (OVX group) for 12 weeks. Following treatment, the serum estradiol, bone turnover biomarker levels, and the microarchitecture of tibias were assayed. Based on miRNA microarray and qRT-PCR analyses, differentially expressed (DE) circulating miRNAs were identified between the OVX and SHAM groups (comparison A) and between the DIO and OVX groups (comparison B). Furthermore, putative target genes of shared DE miRNAs with opposite expression trends in the two comparisons were predicted by ingenuity pathway analysis (IPA). Finally, the expression levels of the putative target genes in serum and tibia were validated by qRT-PCR. The micro-CT results demonstrated that DIO had a substantial anti-osteopenic effect on the tibias of OVX rats. In total, we found 5 DE circulating miRNAs (four upregulated and one downregulated) in comparison A and 21 DE circulating miRNAs (15 upregulated and 6 downregulated) in comparison B. However, only one DE circulating miRNA (rno-miR-20a-5p) had opposite expression trends between the two comparisons. Including rno-miR-20a-5p, 7 of the 10 selected DE circulating miRNAs between the two comparisons passed qRT-PCR validation. Specifically, based on qRT-PCR validation, DIO upregulated the expression of rno-miR-20a-5p and downregulated that of three target genes (Tnf, Creb1, and Tgfbr2) of the &quot;osteoclast differentiation&quot; pathway in the tibias of OVX rats. Our results suggested that DIO could change the circulating miRNA profile of OVX rats and inhibited the downregulation of miR-20a-5p in serum and tibia. DIO might exert an anti-osteoclastogenic effect on OVX rats by upregulating the expression of miR-20a-5p in circulation and bone tissue."	"Biomarkers and overall survival in patients with advanced hepatocellular carcinoma treated with TGF-βRI inhibitor galunisertib. Transforming growth factor beta (TGF-β) signalling is involved in the development of hepatocellular carcinoma (HCC). We followed changes in biomarkers during treatment of patients with HCC with the TGF-βRI/ALK5 inhibitor galunisertib. This phase 2 study (NCT01246986) enrolled second-line patients with advanced HCC into one of two cohorts of baseline serum alpha-fetoprotein (AFP): Part A (AFP ≥1.5x ULN) or Part B (AFP &lt;1.5x ULN). Baseline and postbaseline levels of AFP, TGF-β1, E-cadherin, selected miRNAs, and other plasma proteins were monitored. The study enrolled 149 patients (Part A, 109; Part B, 40). Median OS was 7.3 months in Part A and 16.8 months in Part B. Baseline AFP, TGF-β1, E-cadherin, and an additional 16 plasma proteins (such as M-CSF, IL-6, ErbB3, ANG-2, neuropilin-1, MIP-3 alpha, KIM-1, uPA, IL-8, TIMP-1, ICAM-1, Apo A-1, CA-125, osteopontin, tetranectin, and IGFBP-1) were found to correlate with OS. In addition, a range of miRs were found to be associated with OS. In AFP responders (21% of patients in Part A with decrease of &gt;20% from baseline) versus non-responders, median OS was 21.5 months versus 6.8 months (p = 0.0015). In TGF-β1 responders (51% of all patients) versus non-responders, median OS was 11.2 months versus 5.3 months (p = 0.0036). Consistent with previous findings, both baseline levels and changes from baseline of circulating AFP and TGF-β1 function as prognostic indicators of survival. Future trials are needed to confirm and extend these results."	"Identification of clinically relevant variants by whole exome sequencing in Chinese patients with sporadic non-syndromic type A aortic dissection. Thoracic aortic aneurysm and dissection (TAAD) is a life-threatening disease, of which genetic abnormalities are considered as important risk factors. The present research aims at identifying causal variants in Chinese patients with sporadic non-syndromic type A TAAD (ATAAD). Whole exome sequencing (WES) was performed on 73 sporadic Chinese patients with ATAAD, 30 TAAD associated genes were curated for bioinformatic analyses. Clinical differences were compared between patients with and without causal variants. 15 pathogenic/likely pathogenic variants were identified (8 novel and 7 previously described) in 4 known TAAD-causal genes (FBN1, TGFBR2, SMAD3 and ACTA2) in 15 individuals, including 11 variants in FBN1 (7 missense, 3 truncating, and 1 splicing variants), 2 missense variants in TGFBR2, 1 ACTA2 frameshift variant and 1 SMAD3 frameshift variant. Significant clinical differences were found between patients with and without causal variants. Patients with TAAD-causal variants proved to have an earlier onset age, a more dilated aorta, and relatively intractable subtypes. Even without risk factor like hypertension, they might still suffer from TAAD with TAAD-causal variants. The variants identified in our research might not only result in the occurrence of ATAAD, but also add complexities and difficulties to the clinical practice. Our data demonstrated that WES was an effective tool for determining genetic etiologies of non-syndromic ATAAD and could be helpful in genetic counseling for ATAAD patients and their at-risk family members."	"Aortic Aneurysms and Dissections Series: Part II: Dynamic Signaling Responses in Aortic Aneurysms and Dissections. Aortic structure and function are controlled by the coordinated actions of different aortic cells and the extracellular matrix. Several pathways have been identified that control the aortic wall in a cell-type-specific manner and play diverse roles in various phases of aortic injury, repair, and remodeling. This complexity of signaling in the aortic wall poses challenges to the development of therapeutic strategies for treating aortic aneurysms and dissections. Here, in part II of this Recent Highlights series on aortic aneurysms and dissections, we will summarize recent studies published in Arteriosclerosis, Thrombosis, and Vascular Biology that have contributed to our knowledge of the signaling pathway-related mechanisms of aortic aneurysms and dissections."	"Increased fibrotic signaling in a murine model for intra-arterial contrast-induced acute kidney injury. Contrast-induced acute kidney injury (CI-AKI) is a vexing problem, and more than 70 million patients undergo studies using iodinated contrast. The molecular mechanisms responsible for CI-AKI are poorly understood. The goal of the present article was to determine the role of transforming growth factor-β1 (TGF-β1)/mothers against decapentaplegic homolog (SMAD)3 and associated collagen expression in a murine model of intra-arterial CI-AKI. The murine model of CI-AKI after intra-arterial contrast agent administration was created by first performing a partial nephrectomy to induce chronic kidney disease. Twenty-eight days later, 100 μL of contrast agent [iodixanol (320 mg/mL)] or saline were administered via the carotid artery. Two days after contrast administration, compared with saline, average serum creatinine was significantly elevated (P &lt; 0.05). In the cortex, there was a significant increase in phosphorylated SMAD3 and gene expression of TGF-β1, TGF-β receptor type I, and TGF-β receptor type II at day 2 in the contrast group compared with the saline group. Average gene expressions of connective tissue growth factor, matrix metalloproteinase-2 and -9, and collagen type I-α and type IV-α were significantly increased at 2 days after contrast administration (all P &lt; 0.05). Moreover, there was a decrease in Ki-67 staining in the cortex, with an increase in terminal deoxynucleotidyl transferase dUTP nick-end labeling in the cortex and medulla after contrast administration (P &lt; 0.05). In the murine intra-arterial CI-AKI model, there was increased hypoxia and TGF-β1/SMAD3 pathway activation and collagen expression, resulting in renal fibrosis. Together, these results suggest that the TGF-β1/SMAD3 pathway could be a potential target in alleviating tissue fibrosis in CI-AKI."	"Immunogenetics of Kawasaki disease. Kawasaki disease (KD) is a medium vessel vasculitis that affects young children. Despite extensive research over the last 50 years, the etiology of KD remains an enigma. Seasonal change in wind patterns was shown to have correlation with the epidemics of KD in Japan. Occurrence of disease in epidemiological clusters, seasonal variation, and a very low risk of recurrence suggest that KD is triggered by an infectious agent. The identification of oligoclonal IgA response in the affected tissues suggests an antigen-driven inflammation. The recent identification of a viral antigen in the cytoplasm of bronchial ciliated epithelium also favors infection as the main trigger for KD. Pointers that suggest a genetic basis of KD include a high disease prevalence in North-East Asian populations, a high risk among siblings, and familial occurrence of cases. Dysregulated innate and adaptive immune responses are evident in the acute stages of KD. In addition to the coronary wall inflammation, endothelial dysfunction and impaired vascular remodeling contribute to the development of coronary artery abnormalities (CAAs) and thrombosis. Genetic aberrations in certain intracellular signaling pathways involving immune effector functions are found to be associated with increased susceptibility to KD and development of coronary artery abnormalities (CAAs). Several susceptible genes have been identified through genome-wide association studies (GWAS) and linkage studies (GWLS). The genes that are studied in KD can be classified under 4 major groups-enhanced T cell activation (ITPKC, ORAI1, STIM1), dysregulated B cell signaling (CD40, BLK, FCGR2A), decreased apoptosis (CASP3), and altered transforming growth factor beta signaling (TGFB2, TGFBR2, MMP, SMAD). The review aims to highlight the role of several genetic risk factors that are linked with the increased susceptibility to KD."	"Aortic progression and reintervention in patients with pathogenic variants after a thoracic aortic dissection. To evaluate aortic disease progression and reintervention after an initial thoracic aortic dissection in pathogenic variant carriers. Of 175 participants diagnosed with thoracic aortic dissection, 31 had a pathogenic variant (pathogenic group) across 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, TGFBR2) identified by whole exome sequencing. Those with benign or normal variants (benign/normal group, n = 144) comprised the control group. Clinical data were collected through medical record review (1985-2018) and supplemented with the National Death Index database (December 2018). The entire cohort (n = 175) consisted of 108 type A aortic dissections and 67 type B aortic dissections, similarly distributed between groups. The pathogenic group was significantly younger (43 vs 56 years, P &lt; .0001) and had significantly more aortic root replacements and similar extents of arch replacement at initial type A aortic dissection repair. The median follow-up time was 7.5 (4.6-12) years. After initial treatment, the pathogenic group required significantly more aortic reinterventions (median 1 vs 0, P &lt; .0001) and mean cumulative aortic reinterventions for each patient (10 years: 1 vs 0.5, P = .029). Both incidence rate (12%/year vs 1.2%/year, P = .0001) and cumulative incidence of reinterventions (9 years: 70% vs 6%, P &lt; .0001) for the preserved native aortic root were significantly higher in the pathogenic group, but were similar for the preserved native aortic arch and distal aorta between groups. Ten-year survival was similar in the pathogenic and benign/normal groups (92% vs 85%). Aggressive aortic root replacement and similar arch management should be considered in pathogenic variant carriers at initial type A aortic dissection repair compared with benign/normal variant carriers."	"NORFA, long intergenic noncoding RNA, maintains sow fertility by inhibiting granulosa cell death. Long intergenic non-coding RNAs (lincRNAs) have been proved to be involved in regulating female reproduction. However, to what extent lincRNAs are involved in ovarian functions and fertility is incompletely understood. Here we show that a lincRNA, NORFA is involved in granulosa cell apoptosis, follicular atresia and sow fertility. We found that NORFA was down-regulated during follicular atresia, and inhibited granulosa cell apoptosis. NORFA directly interacted with miR-126 and thereby preventing it from binding to TGFBR2 3'-UTR. miR-126 enhanced granulosa cell apoptosis by attenuating NORFA-induced TGF-β signaling pathway. Importantly, a breed-specific 19-bp duplication was detected in NORFA promoter, which proved association with sow fertility through enhancing transcription activity of NORFA by recruiting transcription factor NFIX. In summary, our findings identified a candidate lincRNA for sow prolificacy, and provided insights into the mechanism of follicular atresia and female fertility."	"Antisense Oligonucleotide in LNA-Gapmer Design Targeting TGFBR2-A Key Single Gene Target for Safe and Effective Inhibition of TGFβ Signaling. Antisense Oligonucleotides (ASOs) are an emerging drug class in gene modification. In our study we developed a safe, stable, and effective ASO drug candidate in locked nucleic acid (LNA)-gapmer design, targeting TGFβ receptor II (TGFBR2) mRNA. Discovery was performed as a process using state-of-the-art library development and screening. We intended to identify a drug candidate optimized for clinical development, therefore human specificity and gymnotic delivery were favored by design. A staggered process was implemented spanning in-silico-design, in-vitro transfection, and in-vitro gymnotic delivery of small batch syntheses. Primary in-vitro and in-vivo toxicity studies and modification of pre-lead candidates were also part of this selection process. The resulting lead compound NVP-13 unites human specificity and highest efficacy with lowest toxicity. We particularly focused at attenuation of TGFβ signaling, addressing both safety and efficacy. Hence, developing a treatment to potentially recondition numerous pathological processes mediated by elevated TGFβ signaling, we have chosen to create our data in human lung cell lines and human neuronal stem cell lines, each representative for prospective drug developments in pulmonary fibrosis and neurodegeneration. We show that TGFBR2 mRNA as a single gene target for NVP-13 responds well, and that it bears great potential to be safe and efficient in TGFβ signaling related disorders."	"Identification of the differential expression of genes and upstream microRNAs in small cell lung cancer compared with normal lung based on bioinformatics analysis. Small cell lung cancer (SCLC) is one of the most lethal cancer, mainly attributing to its high tendency to metastasis. Mounting evidence has demonstrated that genes and microRNAs (miRNAs) are related to human cancer onset and progression including invasion and metastasis.An eligible gene dataset and an eligible miRNA dataset were downloaded from the Gene Expression Omnibus (GEO) database based our screening criteria. Differentially expressed genes (DE-genes) or DE-miRNAs for each dataset obtained by the R software package. The potential target genes of the top 10 DE-miRNAs were predicted by multiple databases. For annotation, visualization and integrated discovery, Metascape 3.0 was introduced to perform enrichment analysis for the DE-genes and the predicted target genes of the selected top 10 DE-miRNAs, including Pathway and Process Enrichment Analysis or protein-protein interaction enrichment analysis. The intersection of predicted target genes and DE-genes was taken as the final DE-genes. Then apply the predicted miRNAs-targets relationship of top 10 DE-miRNAs to the final DE-genes to gain more convinced DE-miRNAs, DE-genes and their one to one relationship.GSE19945 (miRNA microarray) and GSE40275 (gene microarray) datasets were selected and downloaded. 56 DE-miRNAs and 861 DE-genes were discovered. 297 miRNAs-targets relationships (284 unique genes) were predicted as the target of top 10 upregulating DE-miRNAs. 245 miRNAs-targets relationships (238 unique genes) were identified as the target of top 10 downregulating DE-miRNAs. The key results of enrichment analysis include protein kinase B signaling, transmembrane receptor protein tyrosine kinase signaling pathway, negative regulation of cell differentiation, response to growth factor, cellular response to lipid, muscle structure development, response to growth factor, signaling by Receptor Tyrosine Kinases, epithelial cell migration, cellular response to organic cyclic compound, Cell Cycle (Mitotic), DNA conformation change, cell division, DNA replication, cell cycle phase transition, blood vessel development, inflammatory response, Staphylococcus aureus infection, leukocyte migration, and myeloid leukocyte activation. Differential expression of genes-upstream miRNAs (RBMS3-hsa-miR-7-5p, NEDD9-hsa-miR-18a-5p, CRIM1-hsa-miR-18a-5p, TGFBR2-hsa-miR-9-5p, MYO1C-hsa-miR-9-5p, KLF4-hsa-miR-7-5p, EMP2-hsa-miR-1290, TMEM2-hsa-miR-18a-5p, CTGF-hsa-miR-18a-5p, TNFAIP3-hsa-miR-18a-5p, THBS1-hsa-miR-182-5p, KPNA2-hsa-miR-144-3p, GPR137C-hsa-miR-1-3p, GRIK3-hsa-miR-144-3p, and MTHFD2-hsa-miR-30a-3p) were identified in SCLC.RBMS3, NEDD9, CRIM1, KPNA2, GPR137C, GRIK3, hsa-miR-7-5p, hsa-miR-18a-5p, hsa-miR-144-3p, hsa-miR-1-3p along with the pathways included protein kinase B signaling, muscle structure development, Cell Cycle (Mitotic) and blood vessel development may gain a high chance to play a key role in the prognosis of SCLC, but more studies should be conducted to reveal it more clearly."	"T-Cell Proapoptotic and Antifibrotic Activity Against Autologous Skin Fibroblasts in vitro Is Associated With IL-17A Axis Upregulation in Systemic Sclerosis. Background: Systemic sclerosis (SSc) T cells can induce apoptosis of autologous skin fibroblasts in vitro. Th17 cells have been reported to increase in SSc patients, and interleukin-17A (IL-17A) has a profibrotic function. We used a system based on T-cell-autologous fibroblast co-cultures to further investigate a possible role of IL-17A in SSc. Methods: T cells from diffuse SSc patients were co-cultured with autologous skin fibroblasts. IL17A mRNA was assessed by real-time PCR in co-cultured and control T cells, while IL17RA, CXCL1, CCL2, CCL3, COL1A1, COL3A1, CTGF, TGFBR2, and SMAD3 mRNAs were assessed in co-cultured and control fibroblasts. In subset experiments, co-cultures and control cells were treated with either IL-17A or IL-17A plus anti-IL17 receptor monoclonal antibody (α-IL-17RA mAb). Chemokine and procollagen type I (PCI) production was further investigated at the protein level in cell culture supernatants by multiple suspension immunoassay and sandwich ELISA, respectively. Co-cultured and control fibroblasts were also stained with Annexin V and analyzed by flow cytometry. Results: T cell-fibroblast co-cultures overexpressed IL17A and IL17RA. Furthermore, co-cultured fibroblasts upregulated IL-17A targets CXCL1, CCL2, and CCL3, while COL1A1, COL3A1, CTGF, and two key effectors of the TGF-β signaling, TGFBR2 and SMAD3, were found downregulated. Consistently, chemokine concentrations were increased in co-culture supernatants, while PCI levels were reduced, especially after stimulation with ectopic IL-17A. Finally, simultaneous α-IL-17RA mAb treatment restored PCI levels and reduced fibroblast apoptosis in IL-17A-stimulated co-cultures. Conclusion: These data suggest that IL-17A upregulation might play a role in modulating T cell-mediated antifibrotic and proapoptotic effects in co-cultured autologous skin fibroblasts."	"Exercise training attenuates cardiac inflammation and fibrosis in hypertensive ovariectomized rats. This study investigated the effects of exercise training on cardiac inflammatory and cardiac fibrotic pathways in female spontaneously hypertensive rats (SHR), which were divided into a sham-operated sedentary hypertensive group (SHR-S), a sedentary hypertensive ovariectomized group (SHR-O), or a hypertensive ovariectomized group with treadmill exercise training (SHR-OT; 60 min/day, 5 days/wk) for 8 wk. Normotensive female Wistar-Kyoto rats (WKY) served as controls. SOD and catalase (CAT) activities were significantly increased in the SHR-OT group, when compared with the SHR-S or SHR-O groups. The protein levels of estrogen receptor (ER)-α and ER-β became decreased in the SHR-O group, when compared with the WKY or SHR-S groups, but were not changed in the SHR-OT group. The protein level of the angiotensin II type I receptor (AT1R) was increased in the SHR-S group but did not further change in the SHR-O group, whereas it was decreased in the SHR-OT group. The inflammatory-related protein levels of TNF-α, p-NF-κB, cyclooxygenase 2 (COX-2), inducible nitric oxide synthase (iNOS), and IL-6, as well as the fibrotic-related protein levels of transforming growth factor-β (TGF-β), p-Smad2/3, connective tissue growth factor (CTGF), tissue-type plasminogen activator (tPA), matrix metalloproteinase (MMP)-9, and collagen I were increased in the SHR-S group and increased further in the SHR-O group, whereas they were decreased in the SHR-OT group. The coexistence of hypertension and ovariectomy additively increased cardiac inflammatory and fibrotic pathways partially through hypertension-enhanced AT1R and ovariectomy-depressed estrogen receptors. Exercise training appeared to suppress hypertensive ovariectomized heart-induced inflammatory and fibrotic pathways possibly through decreasing AT1R but not through estrogen receptors.NEW &amp; NOTEWORTHY The coexistence of hypertension and ovariectomy appeared to increase cardiac inflammatory and fibrotic pathways likely through hypertension-enhanced angiotensin II type I receptor and ovariectomy-depressed estrogen receptors. Exercise training on a treadmill could prevent hypertensive ovariectomized heart-induced cardiac inflammation and fibrosis via an inflammatory pathway [TNF-α, p-IKK-α/β, p-NF-κB, cyclooxygenase 2 (COX-2), iNOS, and IL-6] and fibrotic pathway [transforming growth factor-β (TGF-β), p-Smad2/3, connective tissue growth factor (CTGF), tissue-type plasminogen activator (tPA), matrix metalloproteinase (MMP)-9, and collagen I] possibly through decreasing angiotensin II type I receptor but not through estrogen receptors."	"Diesel particulate matter2.5 promotes epithelial-mesenchymal transition of human retinal pigment epithelial cells via generation of reactive oxygen species. Although several studies have linked PM2.5 (particulate matter with a diameter less than 2.5 μm) to ocular surface diseases such as keratitis and conjunctivitis, very few studies have previously addressed its effect on the retina. Therefore, the aim of this study was to evaluate the effect of PM2.5 on epithelial-mesenchymal transition (EMT), a process involved in disorders of the retinal pigment epithelial (RPE) on APRE-19 cells. PM2.5 changed the phenotype of RPE cells from epithelial to fibroblast-like mesenchymal, and increased cell migration. Exposure to PM2.5 markedly increased the expression of mesenchymal markers, but reduced the levels of epithelial markers. Moreover, PM2.5 promoted the phosphorylation of MAPKs and the expression of transforming growth factor-β (TGF-β)-mediated nuclear transcriptional factors. However, these PM2.5-mediated changes were completely reversed by LY2109761, a small molecule inhibitor of the TGF-β receptor type I/II kinases, and N-acetyl-L-cysteine (NAC), a reactive oxygen species (ROS) scavenger. Interestingly, NAC, but not LY2109761, effectively restored the PM2.5-induced mitochondrial defects, including increased ROS, decreased mitochondrial activity, and mitochondrial membrane potential disruption. Collectively, our findings indicate that the TGF-β/Smad/ERK/p38 MAPK signaling pathway is activated downstream of cellular ROS during PM2.5-induced EMT. The present study provides the first evidence that EMT of RPE may be one of the mechanisms of PM2.5-induced retinal dysfunction."	"TGFBR2 mediated phosphorylation of BUB1 at Ser-318 is required for transforming growth factor-β signaling. BUB1 (budding uninhibited by benzimidazoles-1) is required for efficient TGF-β signaling, through its role in stabilizing the TGFBR1 and TGFBR2 complex. Here we demonstrate that TGFBR2 phosphorylates BUB1 at Serine-318, which is conserved in primates. S318 phosphorylation abrogates the interaction of BUB1 with TGFBR1 and SMAD2. Using BUB1 truncation domains (1-241, 241-482 and 482-723), we demonstrate that multiple contact points exist between BUB1 and TGF-β signaling components and that these interactions are independent of the BUB1 tetratricopeptide repeat (TPR) domain. Moreover, substitutions in the middle domain (241-482) encompassing S318 reveals that efficient interaction with TGFBR2 occurs only in its dephosphorylated state (241-482 S318A). In contrast, the phospho-mimicking mutant (241-482 S318D) exhibits efficient binding with SMAD2 and its over-expression results in a decrease in TGFBR1-TGFBR2 and TGFBR1-SMAD2 interactions. These findings suggest that TGFBR2 mediated BUB1 phosphorylation at S318 may serve as a switch for the dissociation of the SMAD2-TGFBR complex, and therefore represents a regulatory event for TGF-β signaling. Finally, we provide evidence that the BUB1-TGF-β signaling axis may mediate aggressive phenotypes in a variety of cancers."	"miR-20a-5p/TGFBR2 Axis Affects Pro-inflammatory Macrophages and Aggravates Liver Fibrosis. Combined inhibition of programmed death-ligand 1 (PD-L1) and transforming growth factor-β (TGF-β) displayed additive anti-tumor response in a subgroup of cancer patients, highlighting the importance of understanding the multifaceted roles of TGF-β in immunity and fibrosis. In the present research, we show that TGF-β signaling pathway, controlled by miR-20a-5p and transforming growth factor-β receptor 2 (TGFBR2), alters the inflammation and fibrosis processes in liver. We performed integrated analysis of differently expressed miRNA (DEM) associated with liver fibrosis and screened miR-20a-5p out as a key regulator in inflammation-driven liver fibrosis. We subsequently conducted Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analysis of the genes targeted by miR-20a-5p. And the result showed that 12 target genes were significantly enriched in TGF-β signaling pathway. Further study showed that miR-20a-5p was down-regulated and involved in inflammation during liver fibrosis in human and mouse samples, indicating that miR-20a-5p and inflammation are functionally linked during liver fibrosis progression. To uncover the underlying pro-inflammatory mechanism of miR-20a-5p in liver fibrosis, we selected and verified TGFBR2, which is a key functional receptor in TGF-β signaling pathway, as a direct target gene of miR-20a-5p. The downregulation of miR-20a-5p in liver fibrosis resulted in TGFBR2-activated TGF-β signaling pathway, followed by the activation of macrophage and extracellular matrix (ECM) production by hepatic stellate cell (HSC). Our results identify the miR-20a-5p/TGFBR2 axis as a key regulator of TGF-β signaling, and highlight the critical role of miR-20a-5p in the development of liver fibrosis."	"Deficient Regulatory Innate Lymphoid Cells and Differential Expression of miRNAs in Acute Myeloid Leukemia Quantified by Next Generation Sequence. A new regulatory subpopulation of ILCs, ILCreg has been identified in mouse and human intestines. ILCregs share characteristics with both innate lymphoid cells and regulatory cells; however, the significance of CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>+</sup> ILCregs in patients with AML remains unclear. Intriguingly, ILCregs constitutively express id2, id3, sox4, tgfbr1, tgfbr2, il2rb and il2rg, but the significance of miRNAs associated with these genes has yet to be explored. In this study, we evaluate ILCreg frequency, ILCreg gene-associated miRNA quantification, and its significance in patients with AML and normal donors. Using 4 color combinations of surface and intracellular antibody staining, the CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>+</sup> ILCregs from 12 normal donors and 42 patients newly diagnosed with AML were measured by flow cytometry. Plasma samples and bone marrow cells from 6 normal donors and 9 patients with AML were studied by next-generation sequence miRNAs quantification. Our results showed that the frequency of ILCregs was 0.8924±1.3791% in bone marrow (BM) cells from normal donors and 0.2434±0.5344% in BM cells from AML patients. The frequency of ILCreg cells in AML patients was significantly lower than that in normal donors (P&lt;0.01). Furthermore, the frequency of the CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>-</sup> subset was 4.0869±6.7701% and 0.2769±0.2526% from normal donors and AML patients, respectively. There was a statistically significant difference of CD45<sup>+</sup>Lin<sup>-</sup>CD127<sup>+</sup>IL-10<sup>-</sup> cells between normal donors and AML patients (p&lt;0.01). miRNA detection results showed 376 miRNAs from plasma and 182 miRNAs from BM cell samples with expression levels with a statistically significant difference between AML patients and normal donors (both Q and P-value &lt; 0.001). Analysis of miRNAs from ILCregs associated genes including id2, id3, sox4, tgfbr1, tgfbr2, il2rb, and il3rg, from normal donors and AML patients demonstrated 34 miRNA from plasma samples and 14 miRNA segments from BM cell samples with a statistically significant difference between AML patients and normal donors (both Q and P-value &lt;0.001). Among them, 4 miRNAs (hsa-miR-193b-3p, hsa-miR-1270, hsa-miR-210-3p, and hsa-miR-486-3p) were detected in both plasma and BM cell samples. Our study enumerated ILCregs, then measured miRNAs from those ILCregs in AML samples for the first time. The results demonstrated the deficiency of ILCreg and differential expression of miRNAs in patients with AML."	"Development of small molecule inhibitors targeting TGF-β ligand and receptor: Structures, mechanism, preclinical studies and clinical usage. Transforming growth factor-β (TGF-β) is a member of a superfamily of pleiotropic proteins that regulate multiple cellular processes such as growth, development and differentiation. Following binding to type I and II TGF-β serine/threonine kinase receptors, TGF-β activates downstream signaling cascades involving both SMAD-dependent and -independent pathways. Aberrant TGF-β signaling is associated with a variety of diseases, such as fibrosis, cardiovascular disease and cancer. Hence, the TGF-β signaling pathway is recognized as a potential drug target. Various organic molecules have been designed and developed as TGF-β signaling pathway inhibitors and they function by either down-regulating the expression of TGF-β or by inhibiting the kinase activities of the TGF-β receptors. In this review, we discuss the current status of research regarding organic molecules as TGF-β inhibitors, focusing on the biological functions and the binding poses of compounds that are in the market or in the clinical or pre-clinical phases of development."	"Transactivation of miR-202-5p by Steroidogenic Factor 1 (SF1) Induces Apoptosis in Goat Granulosa Cells by Targeting TGFβR2. MicroRNAs play key roles during ovary development, with emerging evidence suggesting that miR-202-5p is specifically expressed in female animal gonads. Granulosa cells (GCs) are somatic cells that are closely related to the development of female gametes in mammalian ovaries. However, the biological roles of miR-202-5p in GCs remain unknown. Here, we show that miR-202-5p is specifically expressed in GCs and accumulates in extracellular vesicles (EVs) from large growth follicles in goat ovaries. In vitro assays showed that miR-202-5p induced apoptosis and suppressed the proliferation of goat GCs. We further revealed that miR-202-5p is a functional miRNA that targets the transforming growth factor-beta type II receptor (TGFβR2). MiR-202-5p attenuated TGF-β/SMAD signaling through the degradation of TGFβR2 at both the mRNA and protein level, decreasing p-SMAD3 levels in GCs. Moreover, we verified that steroidogenic factor 1 (SF1) is a transcriptional factor that binds to the promoters of miR-202 and cytochrome P450 family 19 subfamily A member 1 (CYP19A1) through luciferase reporter and chromatin immunoprecipitation (ChIP) assays. That contributed to positive correlation between miR-202-5p and CYP19A1 expression and estradiol (E2) release. Furthermore, SF1 repressed TGFβR2 and p-SMAD3 levels in GCs through the transactivation of miR-202-5p. Taken together, these results suggest a mechanism by which miR-202-5p regulates canonical TGF-β/SMAD signaling through targeting TGFβR2 in GCs. This provides insight into the transcriptional regulation of miR-202 and CYP19A1 during goat ovarian follicular development."	"Essential role of microglial transforming growth factor-β1 in antidepressant actions of (R)-ketamine and the novel antidepressant TGF-β1. In rodent models of depression, (R)-ketamine has greater potency and longer-lasting antidepressant effects than (S)-ketamine; however, the precise molecular mechanisms underlying the antidepressant actions of (R)-ketamine remain unknown. Using RNA-sequencing analysis, we identified novel molecular targets that contribute to the different antidepressant effects of the two enantiomers. Either (R)-ketamine (10 mg/kg) or (S)-ketamine (10 mg/kg) was administered to susceptible mice after chronic social defeat stress (CSDS). RNA-sequencing analysis of prefrontal cortex (PFC) and subsequent GSEA (gene set enrichment analysis) revealed that transforming growth factor (TGF)-β signaling might contribute to the different antidepressant effects of the two enantiomers. (R)-ketamine, but not (S)-ketamine, ameliorated the reduced expressions of Tgfb1 and its receptors (Tgfbr1 and Tgfbr2) in the PFC and hippocampus of CSDS susceptible mice. Either pharmacological inhibitors (i.e., RepSox and SB431542) or neutralizing antibody of TGF-β1 blocked the antidepressant effects of (R)-ketamine in CSDS susceptible mice. Moreover, depletion of microglia by the colony-stimulating factor 1 receptor (CSF1R) inhibitor PLX3397 blocked the antidepressant effects of (R)-ketamine in CSDS susceptible mice. Similar to (R)-ketamine, the recombinant TGF-β1 elicited rapid and long-lasting antidepressant effects in animal models of depression. Our data implicate a novel microglial TGF-β1-dependent mechanism underlying the antidepressant effects of (R)-ketamine in rodents with depression-like phenotype. Moreover, TGF-β1 and its receptor agonists would likely constitute a novel rapid-acting and sustained antidepressant in humans."	"Next-generation sequencing in thymic epithelial tumors uncovered novel genomic aberration sites and strong correlation between TMB and MSH6 single nucleotide variations. Thymic epithelial tumors (TET) including thymomas and thymic carcinomas are rare, but they are common primary tumors in the anterior mediastinum. The etiology and tumorigenesis of TET remain unclear. To better understand the novel aberrations of this rare tumor and provide more significant mutation sites for targeted therapy, we performed next-generation sequencing detection on 55 patients with TET. Our results showed that most genes in 12 core pathways harbored aberrations of indeterminate potential. In 4 genes (ARID1A, KMT2C, TGFBR2 and MAP3K1), the indel frequency was above 90%. Dozens of genes, including TGFBR2, KMT2C, PRKDC, ATR, CHD2, SDHA, KDM5A, CHEK1, MSH6 and POLE, possessed frameshift indel with different frequencies in different hotspot sites, which could be the new targets of therapy for TET. For the first time, we revealed a strong correlation between the tumor mutational burden and single nucleotide variations, but not frameshift, on DNA mismatch repair gene MSH6 in TET."	"Comprehensive Proteomic Characterization Reveals Subclass-Specific Molecular Aberrations within Triple-negative Breast Cancer. Triple-negative breast cancer (TNBC) is the most aggressive subtype of breast cancer lacking targeted therapies. This is attributed to its high heterogeneity that complicates elucidation of its molecular aberrations. Here, we report identification of specific proteome expression profiles pertaining to two TNBC subclasses, basal A and basal B, through in-depth proteomics analysis of breast cancer cells. We observed that kinases and proteases displayed unique expression patterns within the subclasses. Systematic analyses of protein-protein interaction and co-regulation networks of these kinases and proteases unraveled dysregulated pathways and plausible targets for each TNBC subclass. Among these, we identified kinases AXL, PEAK1, and TGFBR2 and proteases FAP, UCHL1, and MMP2/14 as specific targets for basal B subclass, which represents the more aggressive TNBC cell lines. Our study highlights intricate mechanisms and distinct targets within TNBC and emphasizes that these have to be exploited in a subclass-specific manner rather than a one-for-all TNBC therapy."	"Methylation silencing of TGF-β receptor type II is involved in malignant transformation of esophageal squamous cell carcinoma. Although massive studies have been conducted to investigate the mechanisms of esophageal squamous cell carcinoma (ESCC) carcinogenesis, the understanding of molecular alterations during the malignant transformation of epithelial dysplasia is still lacking, especially regarding epigenetic changes. To better characterize the methylation changes during the malignant transformation of epithelial dysplasia, a whole-genome bisulfite sequencing analysis was performed on a series of tumor, dysplastic, and non-neoplastic epithelial tissue samples from esophageal squamous cell carcinoma (ESCC) patients. Promoter hypermethylation in TGF-β receptor type II (TGFBR2), an important mediator of TGF-β signaling, was identified. Further, we evaluated the methylation and expression of TGFBR2 in tumor samples through The Cancer Genome Atlas multiplatform data as well as immunohistochemistry. Moreover, treatment of ESCC cell lines with5-Aza-2'-deoxycytidine, a DNA methyltransferase inhibitor, reactivated the expression of TGFBR2. The lentiviral mediating the overexpression of TGFBR2 inhibited the proliferation of ESCC cell line by inducing cell cycle G2/M arrest. Furthermore, the overexpression of TGFBR2 inhibited the tumor growth obviously in vivo. The characterization of methylation silencing of TGFBR2 in ESCC will enable us to further explore whether this epigenetic change could be considered as a predictor of malignant transformation in esophageal epithelial dysplasia and whether use of a TGFBR2 agonist may lead to a new therapeutic strategy in patients with ESCC."	"miR-20b-5p, TGFBR2, and E2F1 Form a Regulatory Loop to Participate in Epithelial to Mesenchymal Transition in Prostate Cancer. The transcription factor E2F1 regulates the expression of the miR-20b-5p precursor and is involved in epithelial-to-mesenchymal transition (EMT). Transforming growth factor-β1 (TGF-β1) induces EMT in prostate cancer (PCa) by binding to TGF-beta receptor 2 (TGFBR2) to activate TGF-β signaling. However, the relationship between TGFBR2, E2F1, and miR-20b-5p in the modulation of EMT in PCa cells remains unknown. In this study, we found that the level of miR-20b-5p expression was significantly lower in PC3 and DU145 cells than that in prostate epithelial (RWPE-1) cells, and TGF-β1 treatment further down-regulated miR-20b-5p expression in these two cell lines. Functional studies showed that miR-20b-5p suppressed TGF-β1-induced migration and invasion of PC3 and DU145 cells by up-regulating E-cadherin and down-regulating vimentin, leading to TGF-β1-induced inhibition of EMT. Using gain and loss of function experiments, it was shown that E2F1 mediated TGF-β1 regulation of miR-20b-5p expression. Further, a luciferase activity assay showed that TGFBR2 was a direct target of miR-20b-5p in PCa cells. These results suggest that miR-20b-5p, TGFBR2, and E2F1 form a regulatory loop to modulate EMT induced by TGF-β1. A novel regulatory mechanism underlying the miR-20b-5p/TGFBR2/E2F1 axis is involved in TGF-β1-induced EMT of PCa cells, and miR-20b-5p may be a potential therapeutic target for PCa."	"TGF-β inhibition via CRISPR promotes the long-term efficacy of CAR T cells against solid tumors. In recent years, chimeric antigen receptor-modified T cell (CAR T cell) therapy has proven to be a promising approach against cancer. Nonetheless, this approach still faces multiple challenges in eliminating solid tumors, one of which being the immunosuppressive tumor microenvironment (TME). Here, we demonstrated that knocking out the endogenous TGF-β receptor II (TGFBR2) in CAR T cells with CRISPR/Cas9 technology could reduce the induced Treg conversion and prevent the exhaustion of CAR T ce lls. Meanwhile, TGFBR2-edited CAR T cells had better in vivo tumor elimination efficacy, both in cell line-derived xenograft and patient-derived xenograft solid tumor models, whether administered locally or systemically. In addition, the TGFBR2-edited CAR T cells could eliminate contralaterally reinoculated xenografts in mice effectively, with an increased proportion of memory subsets within circulating CAR T cells of central memory and effector memory subsets. In conclusion, we greatly improved the in vitro and in vivo function of CAR T cells in TGF-β-rich tumor environments by knocking out endogenous TGFBR2 and propose a potentially new method to improve the efficacy of CAR T cell therapy for treating solid tumors."	"Deregulated bone morphogenetic proteins and their receptors are associated with disease progression of gastric cancer. Bone morphogenetic proteins (BMP) are members of the transforming growth factor β superfamily (TGF-β). BMPs are involved in tumourigenesis and disease progression of certain malignancies. To date, the role played by BMPs in gastric cancer (GC) remains largely unknown. In the present study, we systematically analysed the expression and clinical significance of BMP and BMP receptors (BMPR) in TCGA gastric cancer database and GEO database and explored the possible mechanism of action. BMP5 is reduced in gastric cancer tissues, while ACVRL1, ACVR1, TGFBR1, and BMPR2 were significantly increased in the gastric tumours. BMP3, ACVR1, TGFBR1, BMPR1B (also known as ALK6), TGFBR2 and BMPR2 were significantly associated with poorer overall survival of GC patients. A negative correlation was seen between BMP/BMPR and proliferation markers which was supported by their correlation with the cell cycle promoters and inhibitors. More interestingly, further analyses showed that BMPs and their receptors are positively correlated with matrix metalloproteinases (MMPs), epithelial mesenchymal transition (EMT) markers and stemness in GC. Furthermore, positive correlations were also frequently seen between BMP receptors and markers/regulators of angiogenesis and lymphangiogenesis in the gastric tumours. Taken together, these findings suggest that BMPs play dual roles in GC. They may inhibit proliferation of GC cells. On the other hand, they can also promote disease progression through a promotion of invasion, EMT and stemness. The elevated expression of BMP receptors in GC were also highly associated with tumour associated angiogenesis and lymphangiogenesis which facilitate tumour growth, expansion and spread."	"Tetraspanins TSP-12 and TSP-14 function redundantly to regulate the trafficking of the type II BMP receptor in Caenorhabditis elegans. Tetraspanins are a unique family of 4-pass transmembrane proteins that play important roles in a variety of cell biological processes. We have previously shown that 2 paralogous tetraspanins in Caenorhabditis elegans, TSP-12 and TSP-14, function redundantly to promote bone morphogenetic protein (BMP) signaling. The underlying molecular mechanisms, however, are not fully understood. In this study, we examined the expression and subcellular localization patterns of endogenously tagged TSP-12 and TSP-14 proteins. We found that TSP-12 and TSP-14 share overlapping expression patterns in multiple cell types, and that both proteins are localized on the cell surface and in various types of endosomes, including early, late, and recycling endosomes. Animals lacking both TSP-12 and TSP-14 exhibit reduced cell-surface levels of the BMP type II receptor DAF-4/BMPRII, along with impaired endosome morphology and mislocalization of DAF-4/BMPRII to late endosomes and lysosomes. These findings indicate that TSP-12 and TSP-14 are required for the recycling of DAF-4/BMPRII. Together with previous findings that the type I receptor SMA-6 is recycled via the retromer complex, our work demonstrates the involvement of distinct recycling pathways for the type I and type II BMP receptors and highlights the importance of tetraspanin-mediated intracellular trafficking in the regulation of BMP signaling in vivo. As TSP-12 and TSP-14 are conserved in mammals, our findings suggest that the mammalian TSP-12 and TSP-14 homologs may also function in regulating transmembrane protein recycling and BMP signaling."	"Lineage Tracing Reveals the Dynamic Contribution of Pericytes to the Blood Vessel Remodeling in Pulmonary Hypertension. Excessive accumulation of resident cells within the pulmonary vascular wall represents the hallmark feature of the remodeling occurring in pulmonary arterial hypertension (PAH). Furthermore, we have previously demonstrated that pulmonary arterioles are excessively covered by pericytes in PAH, but this process is not fully understood. The aim of our study was to investigate the dynamic contribution of pericytes in PAH vascular remodeling. Approach and Results: In this study, we performed in situ, in vivo, and in vitro experiments. We isolated primary cultures of human pericytes from controls and PAH lung specimens then performed functional studies (cell migration, proliferation, and differentiation). In addition, to follow up pericyte number and fate, a genetic fate-mapping approach was used with an NG2CreER;mT/mG transgenic mice in a model of pulmonary arteriole muscularization occurring during chronic hypoxia. We identified phenotypic and functional abnormalities of PAH pericytes in vitro, as they overexpress CXCR (C-X-C motif chemokine receptor)-7 and TGF (transforming growth factor)-βRII and, thereby, display a higher capacity to migrate, proliferate, and differentiate into smooth muscle-like cells than controls. In an in vivo model of chronic hypoxia, we found an early increase in pericyte number in a CXCL (C-X-C motif chemokine ligand)-12-dependent manner whereas later, from day 7, activation of the canonical TGF-β signaling pathway induces pericytes to differentiate into smooth muscle-like cells. Our findings reveal a pivotal role of pulmonary pericytes in PAH and identify CXCR-7 and TGF-βRII as 2 intrinsic abnormalities in these resident progenitor vascular cells that foster the onset and maintenance of PAH structural changes in blood lung vessels."	"Tgfβ signaling is critical for maintenance of the tendon cell fate. Studies of cell fate focus on specification, but little is known about maintenance of the differentiated state. In this study, we find that the mouse tendon cell fate requires continuous maintenance in vivo and identify an essential role for TGFβ signaling in maintenance of the tendon cell fate. To examine the role of TGFβ signaling in tenocyte function the TGFβ type II receptor (Tgfbr2) was targeted in the Scleraxis-expressing cell lineage using the ScxCre deletor. Tendon development was not disrupted in mutant embryos, but shortly after birth tenocytes lost differentiation markers and reverted to a more stem/progenitor state. Viral reintroduction of Tgfbr2 to mutants prevented and even rescued tenocyte dedifferentiation suggesting a continuous and cell autonomous role for TGFβ signaling in cell fate maintenance. These results uncover the critical importance of molecular pathways that maintain the differentiated cell fate and a key role for TGFβ signaling in these processes."	"Propofol Inhibits Cell Proliferation, Migration, and Invasion via mir-410-3p/Transforming Growth Factor-β Receptor Type 2 (TGFBR2) Axis in Glioma. BACKGROUND Propofol is a common intravenous anesthetic used to induce and maintain anesthesia. Numerous studies have reported that propofol plays an anti-tumor role in diverse human cancers, including glioma. In this research, we explored the roles of propofol and its related molecular mechanisms in glioma. MATERIAL AND METHODS U251 and A172 cells were exposed to different doses of propofol for 24 h. Cell proliferation, migration, and invasion in glioma were evaluated using MTT assay and Transwell assay, respectively. The levels of microRNA-410-3p (miR-410-3p) and transforming growth factor-ß receptor type 2 (TGFBR2) were detected by quantitative real-time polymerase chain reaction (qRT-PCR) assay and Western blot assay, respectively. The association between miR-410-3p and TGFBR2 was predicted by TargetScan and confirmed by dual-luciferase reporter assay. RESULTS Propofol inhibited the proliferation, migration, and invasion of glioma cells in a concentration-dependent way. miR-410-3p was induced and TGFBR2 was inhibited by different concentrations of propofol treatment. Moreover, TGFBR2 was confirmed to be a target gene of miR-410-3p and TGFBR2 was inversely modulated by miR-410-3p in glioma cells. Depletion of miR-410-3p reversed the inhibition of propofol treatment on U251 and A172 cell growth and metastasis, but the effects were further abolished by knocking down the expression of TGFBR2. CONCLUSIONS Propofol can suppress cell growth and metastasis by regulating the miR-410-3p/TGFBR2 axis in glioma."	"Differential expression of BMP/SMAD signaling and ovarian-associated genes in the granulosa cells of FecB introgressed GMM sheep. The present study was conducted to analyze the mRNA expression of the BMP/SMAD signaling and steroidogenesis associated genes in the granulosa cells (GCs) of newly developed Booroola homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ) ewes through qRT-PCR. Results showed that the expression of BMP2 (P &lt; 0.05) and BMP6 (P &lt; 0.01) was significantly higher in the GCs of the homozygous carrier GMM (FecB<sup>BB</sup> ) than the non-carrier GMM (FecB<sup>++</sup> ) ewes, while the expression of BMP4 was significantly higher (P &lt; 0.001) in the GCs of non-carrier GMM (FecB<sup>++</sup> ) than the homozygous carrier GMM (FecB<sup>BB</sup> ). In comparison, the expression of TGFβR1, BMPR1A, BMPR1B, and BMPRII was not significantly different between GCs of the homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ) ewes. Similarly, the expression of SMAD1, SMAD2, SMAD3, SMAD4, and SMAD5 was not significantly different between GCs of homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ). Further, expression of the INHIBIN, P4R, CYP11A1, and 3βHSD1 genes were not significantly different among the GCs of homozygous carrier GMM (FecB<sup>BB</sup> ) and non-carrier GMM (FecB<sup>++</sup> ), while the expression of StAR was significantly higher (P &lt; 0.01) in the GCs of homozygous carrier GMM (FecB<sup>BB</sup> ) than that of GCs of non-carrier GMM (FecB<sup>++</sup> ) ewes. It is concluded that the FecB mutation significantly up-regulates the expression of BMP2, BMP6, and StAR genes and down-regulate the expression of BMP2 in granulosa cells of newly developed GMM ewes. BMP: Bone morphogenetic protein; TGFβ: Transforming growth factor-beta; SMAD: Fusion of Caenorhabditis elegans Sma genes and the Drosophila Mad, Mothers against decapentaplegic; GCs: Granulosa cells; GMM: Garole x Malpura x Malpura; FecB: Booroola fecundity; BMPR: Bone morphogenetic protein receptor; CYP11A1: Cytochrome P450 family 11 subfamily A member 1; StAR (Steroidogenic acute regulatory protein); 3βHSD1: 3 Beta-hydroxysteroid dehydrogenase; IGF: Insulin-like growth factor; ActR2: Activin receptor 2; ACVR1: Activin A receptor, type I; ACVR2: Activin A receptor, type II; ACVRL1: Activin A receptor like type 1; ACVR1B: Activin A receptor type 1B; ACVR1C: Activin A receptor type 1C; RFLP-PCR: Restriction fragment length polymorphism-polymerase chain reaction; qRT-PCR: Quantitative real-time PCR; ANOVA: Analysis of variance; P4R: Progesterone receptor: AMH: Anti mullerian hormone; RT-PCR: Reverse transcriptase-polymerase chain reaction; ER: Estrogen receptor; FSHR: Follicle stimulating hormone receptor."	"Discovery of microarray-identified genes associated with the progression of cervical intraepithelial neoplasia. To identify genes potentially associated with cervical intraepithelial neoplasia (CIN) progression through bioinformatic approaches and clinicopathological verification. mRNA expression microarray data related to CIN progression were screened from the Gene Expression Omnibus (GEO) database and re-analyzed using bioinformatics approaches. Tissue microarray immunohistochemistry was conducted to assess the significant identified genes in CIN, cervical cancer, and normal tissues. Biological annotation and text mining showed that 14 differentially expressed genes were directly or indirectly related to CIN progression. The expression of 5 up-regulated differentially expressed genes, namely, CCND2, TGFBR2, PRKCB, SH3KBP1 and WNT2B, was examined by tissue microarray immunohistochemistry, with the known CIN progression genes P16 and Ki-67 as the internal reference. Expression of TGFBR2, SH3KBP1, and WNT2B were not detected in CIN and cervical carcinoma, whereas no significant difference in the expression rate of PRKCB was detected (P &gt; 0.05). CCND2, P16, and Ki-67 expression showed a gradual increasing trend in normal, CIN, and cervical cancer. 14 differentially expressed genes were associated with CIN progression, as indicated by the microarray data analysis results. CCND2 may be a new marker for the prediction of CIN progression in addition to P16 and Ki-67."	"Combined Src/EGFR Inhibition Targets STAT3 Signaling and Induces Stromal Remodeling to Improve Survival in Pancreatic Cancer. Lack of durable response to cytotoxic chemotherapy is a major contributor to the dismal outcomes seen in pancreatic ductal adenocarcinoma (PDAC). Extensive tumor desmoplasia and poor vascular supply are two predominant characteristics which hinder the delivery of chemotherapeutic drugs into PDAC tumors and mediate resistance to therapy. Previously, we have shown that STAT3 is a key biomarker of therapeutic resistance to gemcitabine treatment in PDAC, which can be overcome by combined inhibition of the Src and EGFR pathways. Although it is well-established that concurrent EGFR and Src inhibition exert these antineoplastic properties through direct inhibition of mitogenic pathways in tumor cells, the influence of this combined therapy on stromal constituents in PDAC tumors remains unknown. In this study, we demonstrate in both orthotopic tumor xenograft and Ptf1a<sup>cre/+</sup>;LSL-Kras<sup>G12D/+</sup>;Tgfbr2<sup>flox/flox</sup> (PKT) mouse models that concurrent EGFR and Src inhibition abrogates STAT3 activation, increases microvessel density, and prevents tissue fibrosis in vivo. Furthermore, the stromal changes induced by parallel EGFR and Src pathway inhibition resulted in improved overall survival in PKT mice when combined with gemcitabine. As a phase I clinical trial utilizing concurrent EGFR and Src inhibition with gemcitabine has recently concluded, these data provide timely translational insight into the novel mechanism of action of this regimen and expand our understanding into the phenomenon of stromal-mediated therapeutic resistance. IMPLICATIONS: These findings demonstrate that Src/EGFR inhibition targets STAT3, remodels the tumor stroma, and results in enhanced delivery of gemcitabine to improve overall survival in a mouse model of PDAC."	"Genetic profiling and cardiovascular phenotypic spectrum in a Chinese cohort of Loeys-Dietz syndrome patients. Loeys-Dietz syndrome (LDS) is a rare connective tissue disorder for which 6 genes in the TGF-β pathway have been identified as causative. With the widespread use of genetic testing, the range of known clinical and genetic profiles has broadened, but these features have not been fully elucidated thus far. Using gene panel sequencing or whole exome sequencing, we identified 54 unique rare variants in LDS genes in 57 patients with thoracic aneurysms/dissections, including 27 pathogenic mutations (P + LP) and 27 variants of unknown significance (VUS<sup>LP</sup> + VUS). Genotype-phenotype correlation analysis revealed that carriers with P/LP/ VUS<sup>LP</sup> variants in TGFBR1/TGFBR2/SMAD3 genes had significantly more severe cardiovascular features (cardiovascular death/dissection) than carriers with VUSs in these 3 genes at an early age and had less favorable event-free survival. Additionally, carriers with VUS in combination with other risk factors, such as hypertension, might be prone to developing an aortic dissection, as indicated by the fact that 5/8 (62.5%) patients with VUSs in our cohort developed aortic dissections in the presence of hypertension, compared with 25.0% (3/12) in the absence of hypertension (p = 0.047). To date, this was the largest cohort of LDS patients ever reported in China, and the present study expanded the known mutation and phenotypic spectra of LDS, which might help refine our knowledge of LDS."	"SMAD4 and TGFβR2 expression in pancreatic ductal carcinoma. Pancreatic ductal carcinoma is the most common type of pancreatic cancer, and currently represents the fourth cause of death by cancer, worldwide. Among classical pancreatic markers that ascertain the histopathology, new emerging targets have been proposed for both diagnostic and prognostic purposes. In the present study, utilizing a group of 28 confirmed resected pancreatic ductal carcinomas, we have assessed the immunoexpression and correlation ratios of mothers against decapentaplegic homolog 4 (Drosophila) (SMAD4)∕transforming growth factor beta receptor 2 (TGFβR2), and vimentin∕cluster of differentiation 105 (CD105). SMAD4 showed an overall increase in tumors versus pancreatic control tissue, but a decrease from G1 towards poorly differentiated tumors, while TGFβR2, vimentin and CD105 showed higher expression values in the tumor areas. Vimentin-CD105 colocalization degree decreased in tumor tissues compared to controls, illustrating a desynchronization of these two markers, both of them being negative in the tumor epithelia. Altogether, it is highly plausible that all these key players revolve around the epithelial-to-mesenchymal transition phenomenon, and this itself modulates the clinical outcome of the patient."	"TGF-β induces ST2 and programs ILC2 development. The molecular pathways underlying the development of innate lymphoid cells (ILCs) are mostly unknown. Here we show that TGF-β signaling programs the development of ILC2s from their progenitors. Specifically, the deficiency of TGF-β receptor II in bone marrow progenitors results in inefficient development of ILC2s, but not ILC1s or ILC3s. Mechanistically, TGF-β signaling is required for the generation and maintenance of ILC2 progenitors (ILC2p). In addition, TGF-β upregulates the expression of the IL-33 receptor gene Il1rl1 (encoding IL-1 receptor-like 1, also known as ST2) in ILC2p and common helper-like innate lymphoid progenitors (CHILP), at least partially through the MEK-dependent pathway. These findings identify a function of TGF-β in the development of ILC2s from their progenitors."	"Characterization of a Y-specific duplication/insertion of the anti-Mullerian hormone type II receptor gene based on a chromosome-scale genome assembly of yellow perch, Perca flavescens. Yellow perch, Perca flavescens, is an ecologically and economically important species native to a large portion of the northern United States and southern Canada and is also a promising candidate species for aquaculture. However, no yellow perch reference genome has been available to facilitate improvements in both fisheries and aquaculture management practices. By combining Oxford Nanopore Technologies long-reads, 10X Genomics Illumina short linked reads and a chromosome contact map produced with Hi-C, we generated a high-continuity chromosome-scale yellow perch genome assembly of 877.4 Mb. It contains, in agreement with the known diploid chromosome yellow perch count, 24 chromosome-size scaffolds covering 98.8% of the complete assembly (N50 = 37.4 Mb, L50 = 11). We also provide a first characterization of the yellow perch sex determination locus that contains a male-specific duplicate of the anti-Mullerian hormone type II receptor gene (amhr2by) inserted at the proximal end of the Y chromosome (chromosome 9). Using this sex-specific information, we developed a simple PCR genotyping assay which accurately differentiates XY genetic males (amhr2by<sup>+</sup> ) from XX genetic females (amhr2by<sup>-</sup> ). Our high-quality genome assembly is an important genomic resource for future studies on yellow perch ecology, toxicology, fisheries and aquaculture research. In addition, characterization of the amhr2by gene as a candidate sex-determining gene in yellow perch provides a new example of the recurrent implication of the transforming growth factor beta pathway in fish sex determination, and highlights gene duplication as an important genomic mechanism for the emergence of new master sex determination genes."	"Circular RNA circ_0003204 inhibits proliferation, migration and tube formation of endothelial cell in atherosclerosis via miR-370-3p/TGFβR2/phosph-SMAD3 axis. Circular RNAs (circRNAs) represent a class of non-coding RNAs (ncRNAs) which are widely expressed in mammals and tissue-specific, of which some could act as critical regulators in the atherogenesis of cerebrovascular disease. However, the underlying mechanisms by which circRNA regulates the ectopic phenotype of endothelial cells (ECs) in atherosclerosis remain largely elusive. CCK-8, transwell, wound healing and Matrigel assays were used to assess cell viability, migration and tube formation. QRT-qPCR and Immunoblotting were used to examine targeted gene expression in different groups. The binding sites of miR-370-3p (miR-370) with TGFβR2 or hsa_circ_0003204 (circ_0003204) were predicted using a series of bioinformatic tools, and validated using dual luciferase assay and RNA immunoprecipitation (RIP) assay. The localization of circ_0003204 and miR-370 in ECs were investigated by fluorescence in situ hybridization (FISH). Gene function and pathways were enriched through Metascape and gene set enrichment analysis (GSEA). The association of circ_0003204 and miR-370 in extracellular vesicles (EVs) with clinical characteristics of patients were investigated using multiple statistical analysis. Circ_0003204, mainly located in the cytoplasm of human aorta endothelial cells (HAECs), was upregulated in the ox-LDL-induced HAECs. Functionally, the ectopic expression of circ_0003204 inhibited proliferation, migration and tube formation of HAECs exposed to ox-LDL. Mechanically, circ_0003204 could promote protein expression of TGFβR2 and its downstream phosph-SMAD3 through sponging miR-370, and miR-370 targeted the 3' untranslated region (UTR) of TGFβR2. Furthermore, the expression of circ_0003204 in plasma EVs was upregulated in the patients with cerebral atherosclerosis, and represented a potential biomarker for diangnosis and prognosis of cerebrovascular atherogenesis. Circ_0003204 could act as a novel stimulator for ectopic endothelial inactivation in atherosclerosis and a potential biomarker for cerebral atherosclerosis."	"PARP-1 deregulation in multiple sclerosis. Poly (ADP-ribose) polymerase 1 (PARP-1) plays pivotal roles in immune and inflammatory responses. Accumulating evidence suggests PARP-1 as a promising target for immunomodulation in multiple sclerosis and natalizumab-associated progressive multifocal leukoencephalopathy. This study explores expression of PARP-1 and downstream effectors in multiple sclerosis and during natalizumab treatment. Transcriptional expressions were studied by real-time reverse transcriptase polymerase chain reaction on CD4<sup>+</sup>T/CD8<sup>+</sup>T/CD14<sup>+</sup>/B cells and peripheral blood mononuclear cells from healthy volunteers, untreated and natalizumab-treated non-progressive multifocal leukoencephalopathy and progressive multifocal leukoencephalopathy multiple sclerosis patients. PARP-1 expression was higher in CD4<sup>+</sup>T, CD8<sup>+</sup>T and B cells from untreated patients compared to healthy volunteers. Natalizumab treatment restored deregulated PARP-1 expression in T cells but not in B cells. Sustained upregulation of PARP-1 was associated with decreased expression of downstream PARP-1 factors such as TGFBR1/TGFBR2/BCL6 in B cells. Notably, a higher expression of PARP-1 was detected in progressive multifocal leukoencephalopathy patients. Given the importance of PARP-1 in inflammatory processes, its upregulation in multiple sclerosis lymphocyte populations suggests a potential role in the immune pathogenesis of multiple sclerosis. Strikingly higher PARP-1 expression in progressive multifocal leukoencephalopathy cases suggests its involvement in progressive multifocal leukoencephalopathy disease pathomechanisms. These results further support the value of PARP-1 inhibitors as a potential novel therapeutic strategy for multiple sclerosis and natalizumab-associated progressive multifocal leukoencephalopathy."	"Insight into the effects of microRNA-23a-3p on pancreatic cancer and its underlying molecular mechanism. Previous studies have demonstrated that microRNA (miR)-23a-3p plays a role as an oncogene that is involved in several different types of carcinoma. However, few studies investigated the association between miR-23a-3p and pancreatic cancer (PC). The aim of the present study was to elucidate the biological functions of miR-23a-3p in PC and to investigate its underlying molecular mechanisms. The expression of miR-23a-3p in PC and adjacent normal tissues was investigated using microarrays. In order to validate the outcomes of the microarray results, reverse transcription-quantitative (RT-q)PCR was used to determine the expression levels of miR-23a-3p in PC tissues and cell lines. Furthermore, functional analyses were conducted following miR-23a-3p inhibition and overexpression, in order to assess the proliferation, invasion and migration of PC cells. Bioinformatics analysis indicated transforming growth factor-β receptor type II (TGFBR2) as a potential direct target of miR-23a-3p. Western blotting was performed in order to determine the protein expression of TGFBR2 in PC cell lines. The findings from the microarray demonstrated upregulation of miR-23a-3p in PC compared with normal tissues. RT-qPCR revealed significantly higher levels of miR-23a-3p expression in PC compared with normal control tissues or cells. Furthermore, miR-23a-3p was demonstrated to promote the proliferation, invasion and migration of PC cells, which was suppressed by the inhibition of miR-23a-3p. In addition, the miR-23a-3p expression level was negatively associated with TGFBR2 expression. Overall, the present study demonstrated the tumor-promoting effects of miR-23a-3p in PC cells. Furthermore, miR-23a-3p is a potential oncogenic regulator of PC, by targeting TGFBR2, and a biomarker or target for molecular therapy."	"Activin type II receptor ligand signaling inhibition after experimental ischemic heart failure attenuates cardiac remodeling and prevents fibrosis. Myostatin (MSTN) is a transforming growth factor (TGF)-β superfamily member that acts as a negative regulator of muscle growth and may play a role in cardiac remodeling. We hypothesized that inhibition of activin type II receptors (ACTRII) to reduce MSTN signaling would reduce pathological cardiac remodeling in experimental heart failure (HF). C57BL/6J mice underwent left anterior descending coronary artery ligation under anesthesia to induce myocardial infarction (MI) or no ligation (sham). MI and sham animals were each randomly divided into groups (n ≥ 10 mice/group) receiving an ACTRII or ACTRII/TGFβ receptor-signaling inhibiting strategy: 1) myo-Fc group (weekly 10 mg/kg Myo-Fc) or 2) Fol + TGFi group (daily 12 µg/kg follistatin plus 2 mg/kg TGFβ receptor inhibitor), versus controls. ACTRII/TGFBR signaling inhibition preserved cardiac function by echocardiography and prevented an increase in brain natriuretic peptide (BNP). ACTRII/TGFBR inhibition resulted in increased phosphorylation (P) of Akt and decreased P-p38 mitogen-activated protein kinase (MAPK) in MI mice. In vitro, Akt contributed to P-SMAD2,3, P-p38, and BNP regulation in cardiomyocytes. ACTRII/TGFBR inhibition increased sarco/endoplasmic reticulum Ca<sup>2+</sup>-ATPase (SERCA2a) levels and decreased unfolded protein response (UPR) markers in MI mice. ACTRII/TGFBR inhibition was associated with a decrease in cardiac fibrosis and fibrosis markers, connective tissue growth factor (CTGF), type I collagen, fibronectin, α-smooth muscle actin, and matrix metalloproteinase (MMP)-12 in MI mice. MSTN exerted a direct regulation on the UPR marker eukaryotic translation initiation factor-2α (eIf2α) in cardiomyocytes. Our study suggests that ACTRII ligand inhibition has beneficial effects on cardiac signaling and fibrosis after ischemic HF.NEW &amp; NOTEWORTHY Activin type II receptor ligand inhibition resulted in preserved cardiac function, a decrease in cardiac fibrosis, improved SERCA2a levels, and a prevention of the unfolded protein response in mice with myocardial infarction."	"Exploring the Pharmacological Mechanism of the Herb Pair &quot;HuangLian-GanJiang&quot; against Colorectal Cancer Based on Network Pharmacology. Since the herb pair Huang Lian-Gan Jiang (HL-GJ) was put forward as conventional compatibility for cold-heat regulation in the middle energizer in the theory of Traditional Chinese Medicine (TCM), their therapeutic effects were observed on the prevention and treatment of intestinal inflammation and tumors including colorectal cancer (CRC). However, the active compounds, crucial targets, and related pathways of HL-GJ against CRC remained unclear. The purpose of this research was to establish a comprehensive and systemic approach that could identify the active compounds, excavate crucial targets, and reveal anti-CRC mechanisms of HL-GJ against CRC based on network pharmacology. We used methods including chemical compound screening based on absorption, distribution, metabolism, and excretion (ADME), compound target prediction, CRC target collection, network construction and analysis, Gene Ontology (GO), and pathway analysis. In this study, eight main active compounds of HL-GJ were identified, including Gingerenone C, Isogingerenone B, 5,8-dihydroxy-2-(2-phenylethyl) Chromone, 2,3,4-trihydroxy-benzenepropanoic acid, 3,4-dihydroxyphenylethyl Alcohol Glucoside, 3-carboxy-4-hydroxy-phenoxy Glucoside, Moupinamide, and Obaculactone. HRAS, KRAS, PIK3CA, PDE5A, PPARG, TGFBR1, and TGFBR2 were identified as crucial targets of HL-GJ against CRC. There were mainly 500 biological processes and 70 molecular functions regulated during HL-GJ against CRC (P &lt; 0.001). There were mainly 162 signaling pathways contributing to therapeutic effects (P &lt; 0.001), the top 10 of which included DAP12 signaling, signaling by PDGF, signaling by EGFR, NGF signaling via TRKA from the plasma membrane, signaling by NGF, downstream signal transduction, DAP12 interactions, signaling by VEGF, signaling by FGFR3, and signaling by FGFR4. The study established a comprehensive and systematic paradigm to understand the pharmacological mechanisms of multiherb compatibility such as an herb pair, which might accelerate the development and modernization of TCM."	"Leukemia cells remodel marrow adipocytes via TRPV4-dependent lipolysis. Remodeling of adipocyte morphology and function plays a critical role in prostate cancer development. We previously reported that leukemia cells secrete growth differentiation factor 15 (GDF15),which remodels the residual bone marrow (BM) adipocytes into small adipocytes and is associated with a poor prognosis in acute myeloid leukemia (AML) patients. However, little is known about how GDF15 drives BM adipocyte remodeling. In this study, we examined the role of the transient receptor potential vanilloid (TRPV) channels in the remodeling of BM adipocytes exposed to GDF15. We found that TRPV4 negatively regulated GDF15-induced remodeling of BM adipocytes. Furthermore, transforming growth factor-β type II receptor (TGFβRII) was identified as the main receptor for GDF15 on BM adipocytes. PI3K inhibitor treatment reduced GDF15-induced pAKT, identifying PI3K/AKT as the downstream stress response pathway. Subsequently, GDF15 reduced the expression of the transcription factor Forkhead box C1 (FOXC1) in BM adipocytes subjected to RNA-seq screening and Western blot analyse. Moreover, it was also confirmed that FOXC1 combined with the TRPV4 promoter by the Chip-qPCR experiments, which suggests that FOXC1 mediates GDF15 regulation of TRPV4. In addition, an AML mouse model exhibited smaller BM adipocytes, whereas the TRPV4 activator 4α-phorbol 12,13-didecanoate (4αPDD) partly rescued this process and increased survival. In conclusion, TRPV4 plays a critical role in BM adipocyte remodeling induced by leukemia cells, suggesting that targeting TRPV4 may constitute a novel strategy for AML therapy."	"TGF-β Signaling Induces the Expression of OPN in Blood Vessel Endothelial Cells. The mechanism of blood vessel formation and degeneration still remains unclear. Transforming growth factor-β1 (TGF-β1) signaling is a critical pathway in this progression and can induce multiple biological effects. Osteopontin (OPN) is involved in mineral metabolism and the inflammatory response associated with vascular calcification. To identify the relationship between TGF-β signaling pathway and OPN, we stimulated human vascular endothelial cells (HVECs) and human aortic endothelial cells (HAECs) using various concentration of TGF-β1 in vitro. As assessed by flow cytometry and western blots, apoptosis levels were significantly increased with TGF-β1 treatment. We also demonstrated that OPN increased in vitro with TGF-β signaling by western blot and quantitative real time polymerase chain reaction (qRT-PCR) analyses. The inhibitory phosphorylation of endothelial nitric-oxide synthase (eNOS) (Thr495) was also up-regulated by TGF-β signaling. Meanwhile, the anti-inflammatory factor Nrf2 and the activating phosphorylation of eNOS (Ser1177) were down-regulated. Taken together, our findings demonstrate that TGF-β signaling can induce the expression of OPN, which may play an important role in the dysfunction of the vascular wall."	"Hyperglycemia-induced transcriptional regulation of ROCK1 and TGM2 expression is involved in small artery remodeling in obese diabetic Göttingen Minipigs. Obesity and diabetes in humans are associated with hypertrophic remodeling and increased media:lumen ratio of small resistance arteries, which is an independent predictor of cardiovascular events. In order to minimize increases in media:lumen ratio, hypertrophic remodeling should be accompanied by outward remodeling. We aimed to investigate the mechanisms of structural remodeling in small pial arteries (PAs) and terminal mesenteric arteries (TMAs) from obese Göttingen Minipigs with or without diabetes. Göttingen Minipigs received either control diet (lean control (LC)), high fat/high fructose/high cholesterol diet (FFC), or FFC diet with streptozotocin (STZ)-induced diabetes (FFC/STZ) for 13 months. At the end of the study (20 months), we assessed body weight, fasting plasma biochemistry, passive vessel dimensions, mRNA expression (matrix metallopeptidases 2/9 (MMP2, MMP9), tissue inhibitor of metallopeptidase 1 (TIMP1), transglutaminase 2 (TGM2), Rho-kinase 1 (ROCK1), TGFβ-receptor 2 (TGFBR2), and IGF1-receptor (IGFR1) genes), and immunofluorescence in PAs and TMAs. We performed multiple linear correlation analyses using plasma values, structural data, and gene expression data. We detected outward hypertrophic remodeling in TMAs and hypertrophic remodeling in PAs from FFC/STZ animals. ROCK1 and TGM2 genes were up-regulated in PAs and TMAs from the FFC/STZ group. Passive lumen diameter (PLD) of TMAs was correlated with plasma values of glucose (GLU), fructosamine (FRA), total cholesterol (TC), and triglycerides (TGs). ROCK1 and TGM2 expressions in TMAs were correlated with PLD, plasma GLU, fructosamine, and TC. ROCK1 and TGM2 proteins were immunolocalized in the media of PAs and TMAs, and their fluorescence levels were increased in the FFC/STZ group. Hyperglycemia/hyperlipidemia is involved in regulation of ROCK1 and TGM2 expression leading to outward remodeling of small resistance arteries in obese diabetic Göttingen Minipigs."	"BMPR2 acts as a gatekeeper to protect endothelial cells from increased TGFβ responses and altered cell mechanics. Balanced transforming growth factor-beta (TGFβ)/bone morphogenetic protein (BMP)-signaling is essential for tissue formation and homeostasis. While gain in TGFβ signaling is often found in diseases, the underlying cellular mechanisms remain poorly defined. Here we show that the receptor BMP type 2 (BMPR2) serves as a central gatekeeper of this balance, highlighted by its deregulation in diseases such as pulmonary arterial hypertension (PAH). We show that BMPR2 deficiency in endothelial cells (ECs) does not abolish pan-BMP-SMAD1/5 responses but instead favors the formation of mixed-heteromeric receptor complexes comprising BMPR1/TGFβR1/TGFβR2 that enable enhanced cellular responses toward TGFβ. These include canonical TGFβ-SMAD2/3 and lateral TGFβ-SMAD1/5 signaling as well as formation of mixed SMAD complexes. Moreover, BMPR2-deficient cells express genes indicative of altered biophysical properties, including up-regulation of extracellular matrix (ECM) proteins such as fibrillin-1 (FBN1) and of integrins. As such, we identified accumulation of ectopic FBN1 fibers remodeled with fibronectin (FN) in junctions of BMPR2-deficient ECs. Ectopic FBN1 deposits were also found in proximity to contractile intimal cells in pulmonary artery lesions of BMPR2-deficient heritable PAH (HPAH) patients. In BMPR2-deficient cells, we show that ectopic FBN1 is accompanied by active β1-integrin highly abundant in integrin-linked kinase (ILK) mechano-complexes at cell junctions. Increased integrin-dependent adhesion, spreading, and actomyosin-dependent contractility facilitates the retrieval of active TGFβ from its latent fibrillin-bound depots. We propose that loss of BMPR2 favors endothelial-to-mesenchymal transition (EndMT) allowing cells of myo-fibroblastic character to create a vicious feed-forward process leading to hyperactivated TGFβ signaling. In summary, our findings highlight a crucial role for BMPR2 as a gatekeeper of endothelial homeostasis protecting cells from increased TGFβ responses and integrin-mediated mechano-transduction."	"Specification of BMP Signaling. Bone Morphogenetic Proteins (BMPs) together with the Growth and Differentiation Factors (GDFs) form the largest subgroup of the Transforming Growth Factor (TGF)β family and represent secreted growth factors, which play an essential role in many aspects of cell communication in higher organisms. As morphogens they exert crucial functions during embryonal development, but are also involved in tissue homeostasis and regeneration in the adult organism. Their involvement in maintenance and repair processes of various tissues and organs made these growth factors highly interesting targets for novel pharmaceutical applications in regenerative medicine. A hallmark of the TGFβ protein family is that all of the more than 30 growth factors identified to date signal by binding and hetero-oligomerization of a very limited set of transmembrane serine-threonine kinase receptors, which can be classified into two subgroups termed type I and type II. Only seven type I and five type II receptors exist for all 30plus TGFβ members suggesting a pronounced ligand-receptor promiscuity. Indeed, many TGFβ ligands can bind the same type I or type II receptor and a particular receptor of either subtype can usually interact with and bind various TGFβ ligands. The possible consequence of this ligand-receptor promiscuity is further aggravated by the finding that canonical TGFβ signaling of all family members seemingly results in the activation of just two distinct signaling pathways, that is either SMAD2/3 or SMAD1/5/8 activation. While this would implicate that different ligands can assemble seemingly identical receptor complexes that activate just either one of two distinct pathways, in vitro and in vivo analyses show that the different TGFβ members exert quite distinct biological functions with high specificity. This discrepancy indicates that our current view of TGFβ signaling initiation just by hetero-oligomerization of two receptor subtypes and transduction via two main pathways in an on-off switch manner is too simplified. Hence, the signals generated by the various TGFβ members are either quantitatively interpreted using the subtle differences in their receptor-binding properties leading to ligand-specific modulation of the downstream signaling cascade or additional components participating in the signaling activation complex allow diversification of the encoded signal in a ligand-dependent manner at all cellular levels. In this review we focus on signal specification of TGFβ members, particularly of BMPs and GDFs addressing the role of binding affinities, specificities, and kinetics of individual ligand-receptor interactions for the assembly of specific receptor complexes with potentially distinct signaling properties."	"Structural consequences of BMPR2 kinase domain mutations causing pulmonary arterial hypertension. Bone morphogenetic proteins (BMPs) are secreted ligands of the transforming growth factor-β (TGF-β) family that control embryonic patterning, as well as tissue development and homeostasis. Loss of function mutations in the type II BMP receptor BMPR2 are the leading cause of pulmonary arterial hypertension (PAH), a rare disease of vascular occlusion that leads to high blood pressure in the pulmonary arteries. To understand the structural consequences of these mutations, we determined the crystal structure of the human wild-type BMPR2 kinase domain at 2.35 Å resolution. The structure revealed an active conformation of the catalytic domain that formed canonical interactions with the bound ligand Mg-ADP. Disease-associated missense mutations were mapped throughout the protein structure, but clustered predominantly in the larger kinase C-lobe. Modelling revealed that the mutations will destabilize the protein structure by varying extents consistent with their previously reported functional heterogeneity. The most severe mutations introduced steric clashes in the hydrophobic protein core, whereas those found on the protein surface were less destabilizing and potentially most favorable for therapeutic rescue strategies currently under clinical investigation."	"Case-matched Comparison of Cardiovascular Outcome in Loeys-Dietz Syndrome versus Marfan Syndrome. Background: Pathogenic variants in TGFBR1, TGFBR2 and SMAD3 genes cause Loeys-Dietz syndrome, and pathogenic variants in FBN1 cause Marfan syndrome. Despite their similar phenotypes, both syndromes may have different cardiovascular outcomes. Methods: Three expert centers performed a case-matched comparison of cardiovascular outcomes. The Loeys-Dietz group comprised 43 men and 40 women with a mean age of 34 ± 18 years. Twenty-six individuals had pathogenic variants in TGFBR1, 40 in TGFBR2, and 17 in SMAD3. For case-matched comparison we used 83 age and sex-frequency matched individuals with Marfan syndrome. Results: In Loeys-Dietz compared to Marfan syndrome, a patent ductus arteriosus (p = 0.014) was more prevalent, the craniofacial score was higher (p &lt; 0.001), the systemic score lower (p &lt; 0.001), and mitral valve prolapse less frequent (p = 0.003). Mean survival for Loeys-Dietz and Marfan syndrome was similar (75 ± 3 versus 73 ± 2 years; p = 0.811). Cardiovascular outcome was comparable between Loeys-Dietz and Marfan syndrome, including mean freedom from proximal aortic surgery (53 ± 4 versus 48 ± 3 years; p = 0.589), distal aortic repair (72 ± 3 versus 67 ± 2 years; p = 0.777), mitral valve surgery (75 ± 4 versus 65 ± 3 years; p = 0.108), and reintervention (20 ± 3 versus 14 ± 2 years; p = 0.112). In Loeys-Dietz syndrome, lower age at initial presentation predicted proximal aortic surgery (HR = 0.748; p &lt; 0.001), where receiver operating characteristic analysis identified ≤33.5 years with increased risk. In addition, increased aortic sinus diameters (HR = 6.502; p = 0.001), and higher systemic score points at least marginally (HR = 1.175; p = 0.065) related to proximal aortic surgery in Loeys-Dietz syndrome. Conclusions: Cardiovascular outcome of Loeys-Dietz syndrome was comparable to Marfan syndrome, but the severity of systemic manifestations was a predictor of proximal aortic surgery."	"Dysmorphology. NA"	"A TGF-β type II receptor that associates with developmental transition in Haemonchus contortus in vitro. The TGF-β signalling pathway plays a key role in regulating dauer formation in the free-living nematode Caenorhabditis elegans, and previous work has shown that TGF-β receptors are involved in parasitic nematodes. Here, we explored the structure and function of a TGF-β type II receptor homologue in the TGF-β signalling pathway in Haemonchus contortus, a highly pathogenic, haematophagous parasitic nematode. Amino acid sequence and phylogenetic analyses revealed that the protein, called Hc-TGFBR2 (encoded by the gene Hc-tgfbr2), is a member of TGF-β type II receptor family and contains conserved functional domains, both in the extracellular region containing cysteine residues that form a characteristic feature (CXCX4C) of TGF-β type II receptor and in the intracellular regions containing a serine/threonine kinase domain. The Hc-tgfbr2 gene was transcribed in all key developmental stages of H. contortus, with particularly high levels in the infective third-stage larvae (L3s) and male adults. Immunohistochemical results revealed that Hc-TGFBR2 was expressed in the intestine, ovary and eggs within the uterus of female adults, and also in the testes of male adults of H. contortus. Double-stranded RNA interference (RNAi) in this nematode by soaking induced a marked decrease in transcription of Hc-tgfbr2 and in development from the exsheathed L3 to the fourth-stage larva (L4) in vitro. These results indicate that Hc-TGFBR2 plays an important role in governing developmental processes in H. contortus via the TGF-β signalling pathway, particularly in the transition from the free-living to the parasitic stages."	"Early appearance of key transcription factors influence the spatiotemporal development of the human inner ear. Expression patterns of transcription factors leucine-rich repeat-containing G protein-coupled receptor 5 (LGR5), transforming growth factor-β-activated kinase-1 (TAK1), SRY (sex-determining region Y)-box 2 (SOX2), and GATA binding protein 3 (GATA3) in the developing human fetal inner ear were studied between the gestation weeks 9 and 12. Further development of cochlear apex between gestational weeks 11 and 16 (GW11 and GW16) was examined using transmission electron microscopy. LGR5 was evident in the apical poles of the sensory epithelium of the cochlear duct and the vestibular end organs at GW11. Immunostaining was limited to hair cells of the organ of Corti by GW12. TAK1 was immune positive in inner hair cells of the organ of Corti by GW12 and colocalized with p75 neurotrophic receptor expression. Expression for SOX2 was confined primarily to the supporting cells of utricle at the earliest stage examined at GW9. Intense expression for GATA3 was presented in the cochlear sensory epithelium and spiral ganglia at GW9. Expression of GATA3 was present along the midline of both the utricle and saccule in the zone corresponding to the striolar reversal zone where the hair cell phenotype switches from type I to type II. The spatiotemporal gradient of the development of the organ of Corti was also evident with the apex of the cochlea forming by GW16. It seems that highly specific staining patterns of several transcriptions factors are critical in guiding the genesis of the inner ear over development. Our findings suggest that the spatiotemporal gradient in cochlear development extends at least until gestational week 16."	"Chronic mucocutaneous candidiasis and connective tissue disorder in humans with impaired JNK1-dependent responses to IL-17A/F and TGF-β. Genetic etiologies of chronic mucocutaneous candidiasis (CMC) disrupt human IL-17A/F-dependent immunity at mucosal surfaces, whereas those of connective tissue disorders (CTDs) often impair the TGF-β-dependent homeostasis of connective tissues. The signaling pathways involved are incompletely understood. We report a three-generation family with an autosomal dominant (AD) combination of CMC and a previously undescribed form of CTD that clinically overlaps with Ehlers-Danlos syndrome (EDS). The patients are heterozygous for a private splice-site variant of MAPK8, the gene encoding c-Jun N-terminal kinase 1 (JNK1), a component of the MAPK signaling pathway. This variant is loss-of-expression and loss-of-function in the patients' fibroblasts, which display AD JNK1 deficiency by haploinsufficiency. These cells have impaired, but not abolished, responses to IL-17A and IL-17F. Moreover, the development of the patients' TH17 cells was impaired ex vivo and in vitro, probably due to the involvement of JNK1 in the TGF-β-responsive pathway and further accounting for the patients' CMC. Consistently, the patients' fibroblasts displayed impaired JNK1- and c-Jun/ATF-2-dependent induction of key extracellular matrix (ECM) components and regulators, but not of EDS-causing gene products, in response to TGF-β. Furthermore, they displayed a transcriptional pattern in response to TGF-β different from that of fibroblasts from patients with Loeys-Dietz syndrome caused by mutations of TGFBR2 or SMAD3, further accounting for the patients' complex and unusual CTD phenotype. This experiment of nature indicates that the integrity of the human JNK1-dependent MAPK signaling pathway is essential for IL-17A- and IL-17F-dependent mucocutaneous immunity to Candida and for the TGF-β-dependent homeostasis of connective tissues."	"Characterization of genetic subclonal evolution in pancreatic cancer mouse models. The KPC mouse model, driven by the Kras and Trp53 transgenes, is well regarded for faithful recapitulation of human pancreatic cancer biology. However, the extent that this model recapitulates the subclonal evolution of this tumor type is unknown. Here we report evidence of continuing subclonal evolution after tumor initiation that largely reflect copy number alterations that target cellular processes of established significance in human pancreatic cancer. The evolutionary trajectories of the mouse tumors show both linear and branching patterns as well as clonal mixing. We propose the KPC model and derivatives have unexplored utility as a functional system to model the mechanisms and modifiers of tumor evolution."	"MiR-106a-5p modulates apoptosis and metabonomics changes by TGF-β/Smad signaling pathway in cleft palate. The molecular mechanisms of abnormal palatogenesis were investigated in this study. A key regulator, miR-106a-5p, and its target pathway were analyzed. This research is trying to clarify the underlying mechanism of the modulation of miRNA transcription during the formation of cleft palate by 7T and 9.4T NMR metabolomic platforms. Differentially expressed miRNAs and mRNAs were analyzed by microarray analysis and verified by qRT-PCR. The protein expression in TGFβ signaling pathways were analyzed by Western Blotting. The relationship between miR-106a-5p and TGFβ were analyzed by luciferase reporter assay. Cell apoptosis were analyzed by flow cytometer. And finally, the metabonomics were analyzed by NMR and multivariate data analysis models (MVDA). The expression of miR-106a-5p increased in cleft palatal tissue and negatively correlated with the protein level of Tgfbr2. The luciferase assay further proved that the tgfbr2 was a direct target of miR-106a-5p. In another aspect, miR-106a-5p increased apoptosis level in palatal mesenchymal cells, possibly because its inhibition of TGFβ signaling pathway. Moreover, low cholesterol and choline levels with high citric acid and lipid levels were observed by 7T and 9.4T NMR metabonomic analysis, which inferred the disorder of cell membrane synthesis in cleft palate formation. Furthermore, transformation from choline to phosphatidylcholine regulated by miR-106a-5p was also disrupted, resulting in phosphatidic choline synthesis disorder and reduced cell membrane synthesis. The regulatory mechanism of cleft palate was studied at transcriptional and metabolomics levels, which may provide important information in understanding the primary cause of this abnormality."	"Patterns of germline and somatic mutations in 16 genes associated with mismatch repair function or containing tandem repeat sequences. We assumed that targeted next-generation sequencing (NGS) of mismatch repair-associated genes could improve the detection of driving mutations in colorectal cancers (CRC) with microsatellite instability (MSI) and microsatellite alterations at selected tetranucleotide repeats (EMAST) and clarify the somatic mutation patterns of CRC subtypes. DNAs from tumors and white blood cells were obtained from 81 patients with EMAST(+)/MSI-high (MSI-H), 78 patients with EMAST(+)/microsatellite stable (MSS), and 72 patients with EMAST(-)/MSI-H. The germline and somatic mutations were analyzed with a 16-genes NGS panel. In total, 284 germline mutations were identified in 161 patients. The most common mutations were in EPCAM (24.8%), MSH6 (24.2%), MLH1 (21.7%), and AXIN2 (21.7%). Germline mutations of AXIN2, POLE, POLD1, and TGFBR2 also resulted in EMAST and MSI. EMAST(+)/MSI-H tumors had a significant higher mutation number (205.9 ± 95.2 mut/MB) than tumors that were only EMAST(+) or MSI-H (118.6 ± 64.2 and 106.2 ± 54.5 mut/MB, respectively; both P &lt; .001). In patients with AXIN2 germline mutations, the number of pathological somatic mutations in the tumors was significantly higher than those without AXIN2 germline mutations (176.7 ± 94.2 mut/MB vs 139.6 ± 85.0 mut/MB, P = .002). Next-generation sequencing could enhance the detection of familial CRC. The somatic mutation burden might result from not only the affected genes in germline mutations but also through the dysfunction of downstream effectors. The AXIN2 gene might associate with hypermutation in tumors. Further in vitro experiments to confirm the causal relationship is deserved."	"Insulin-like growth factor (IGF)-II- mediated fibrosis in pathogenic lung conditions. Type 2 insulin-like growth factor (IGF-II) levels are increased in fibrosing lung diseases such as idiopathic pulmonary fibrosis (IPF) and scleroderma/systemic sclerosis-associated pulmonary fibrosis (SSc). Our goal was to investigate the contribution of IGF receptors to IGF-II-mediated fibrosis in these diseases and identify other potential mechanisms key to the fibrotic process. Cognate receptor gene and protein expression were analyzed with qRT-PCR and immunoblot in primary fibroblasts derived from lung tissues of normal donors (NL) and patients with IPF or SSc. Compared to NL, steady-state receptor gene expression was decreased in SSc but not in IPF. IGF-II stimulation differentially decreased receptor mRNA and protein levels in NL, IPF, and SSc fibroblasts. Neutralizing antibody, siRNA, and receptor inhibition targeting endogenous IGF-II and its primary receptors, type 1 IGF receptor (IGF1R), IGF2R, and insulin receptor (IR) resulted in loss of the IGF-II response. IGF-II tipped the TIMP:MMP balance, promoting a fibrotic environment both intracellularly and extracellularly. Differentiation of fibroblasts into myofibroblasts by IGF-II was blocked with a TGFβ1 receptor inhibitor. IGF-II also increased TGFβ2 and TGFβ3 expression, with subsequent activation of canonical SMAD2/3 signaling. Therefore, IGF-II promoted fibrosis through IGF1R, IR, and IGF1R/IR, differentiated fibroblasts into myofibroblasts, decreased protease production and extracellular matrix degradation, and stimulated expression of two TGFβ isoforms, suggesting that IGF-II exerts pro-fibrotic effects via multiple mechanisms."	"GTF2IRD1 on chromosome 7 is a novel oncogene regulating the tumor-suppressor gene TGFβR2 in colorectal cancer. Chromosome 7q (Ch.7q) is clonally amplified in colorectal cancer (CRC). We aimed to identify oncogenes on Ch.7q that are overexpressed through DNA copy number amplification and determine the biological and clinical significance of these oncogenes in CRC. We identified general transcription factor 2I repeat domain-containing protein 1 (GTF2IRD1) as a potential oncogene using a CRC dataset from The Cancer Genome Atlas with a bioinformatics approach. We measured the expression of GTF2IRD1 in 98 patients with CRC using immunohistochemistry and RT-quantitative PCR (RT-qPCR). The biological effects of GTF2IRD1 expression were explored by gene set enrichment analysis (GSEA). Next, we undertook in vitro cell proliferation and cell cycle assays using siGTF2IRD1-transfected CRC cells. We further investigated the oncogenic mechanisms through which GTF2IRD1 promoted CRC progression. Finally, we assessed the clinical significance of GTF2IRD1 expression by RT-qPCR. GTF2IRD1 was overexpressed in tumor cells and liver metastatic lesions. The GSEA revealed a positive correlation between GTF2IRD1 expression and cell cycle progression-related genes. GTF2IRD1 knockdown inhibited cell proliferation and induced cell cycle arrest in Smad4-mutated CRC. GTF2IRD1 downregulated the expression of the gene encoding transforming growth factor β receptor 2 (TGFβR2), a tumor-suppressor gene in Smad4-mutated CRC. On multivariate analysis, high GTF2IRD1 expression was an independent poor prognostic factor. Clinicopathological analysis showed that GTF2IRD1 expression was positively correlated with liver metastasis. In conclusion, GTF2IRD1 promoted CRC progression by downregulating TGFβR2 and could be a prognostic biomarker on Ch.7q in CRC. GTF2IRD1 could also be a novel oncogene in CRC."	"Transforming Growth Factor-β Signaling Pathway in Colorectal Cancer and Its Tumor Microenvironment. Transforming growth factor-beta (TGF-β) signaling is one of the important cellular pathways that play key roles for tissue maintenance. In particular, it is important in the context of inflammation and tumorigenesis by modulating cell growth, differentiation, apoptosis, and homeostasis. TGF-β receptor type 2 (TGFBR2) mutations affected by a mismatch repair deficiency causes colorectal cancers (CRCs) with microsatellite instability, which is, however, associated with relatively better survival rates. On the other hand, loss of SMAD4, a transcription factor in the TGF-β superfamily signaling, promotes tumor progression. Loss of heterozygosity on chromosome 18 can case SMAD4-deficient CRC, which results in poorer patients' survival. Such bidirectional phenomenon driven by TGF-β signaling insufficiency reflects the complexity of this signaling pathway in CRC. Moreover, recent understanding of CRC at the molecular level (consensus molecular subtype classification) provides deep insight into the important roles of TGF-β signaling in the tumor microenvironment. Here we focus on the TGF-β signaling in CRC and its interaction with the tumor microenvironment. We summarize the molecular mechanisms of CRC tumorigenesis and progression caused by disruption of TGF-β signaling by cancer epithelial cells and host stromal cells."	"Hepatomas are exquisitely sensitive to pharmacologic ascorbate (P-AscH<sup>-</sup>). Rationale: Ascorbate is an essential micronutrient known for redox functions at normal physiologic concentrations. In recent decades, pharmacological ascorbate has been found to selectively kill tumour cells. However, the dosing frequency of pharmacologic ascorbate in humans has not yet been defined. Methods: We determined that among five hepatic cell lines, Huh-7 cells were the most sensitive to ascorbate. The effects of high-dose ascorbate on hepatoma were therefore assessed using Huh-7 cells and xenograft tumour mouse model. Results: In Huh-7 cells, ascorbate induced a significant increase in the percentage of cells in the G0/G1 phase, apoptosis and intracellular levels of ROS. High doses of ascorbate (4.0 pmol cell<sup>-1</sup>), but not low doses of ascorbate (1.0 pmol cell<sup>-1</sup>), also served as a pro-drug that killed hepatoma cells by altering mitochondrial respiration. Furthermore, in a Huh-7 cell xenograft tumour mouse model, intraperitoneal injection of ascorbate (4.0 g/kg/3 days) but not a lower dose of ascorbate (2.0 g/kg/3 days) significantly inhibited tumour growth. Gene array analysis of HCC tumour tissue from xenograft mice given IP ascorbate (4.0 g/kg/3 days) identified changes in the transcript levels of 192 genes/ncRNAs involved in insulin receptor signalling, metabolism and mitochondrial respiration. Consistent with the array data, gene expression levels of AGER, DGKK, ASB2, TCP10L2, Lnc-ALCAM-3, and Lnc-TGFBR2-1 were increased 2.05-11.35 fold in HCC tumour tissue samples from mice treated with high-dose ascorbate, and IHC staining analysis also verified that AGER/RAGE and DGKK proteins were up-regulated, which implied that AGER/RAGE and DGKK activation might be related to oxidative stress, leading to hepatoma cell death. Conclusions: Our studies identified multiple mechanisms are responsible for the anti-tumour activity of ascorbate and suggest high doses of ascorbate with less frequency will act as a novel therapeutic agent for liver cancer in vivo."	"Activated Endothelial TGFβ1 Signaling Promotes Venous Thrombus Nonresolution in Mice Via Endothelin-1: Potential Role for Chronic Thromboembolic Pulmonary Hypertension. Chronic thromboembolic pulmonary hypertension (CTEPH) is characterized by defective thrombus resolution, pulmonary artery obstruction, and vasculopathy. TGFβ (transforming growth factor-β) signaling mutations have been implicated in pulmonary arterial hypertension, whereas the role of TGFβ in the pathophysiology of CTEPH is unknown. To determine whether defective TGFβ signaling in endothelial cells contributes to thrombus nonresolution and fibrosis. Venous thrombosis was induced by inferior vena cava ligation in mice with genetic deletion of TGFβ1 in platelets (Plt.TGFβ-KO) or TGFβ type II receptors in endothelial cells (End.TGFβRII-KO). Pulmonary endarterectomy specimens from CTEPH patients were analyzed using immunohistochemistry. Primary human and mouse endothelial cells were studied using confocal microscopy, quantitative polymerase chain reaction, and Western blot. Absence of TGFβ1 in platelets did not alter platelet number or function but was associated with faster venous thrombus resolution, whereas endothelial TGFβRII deletion resulted in larger, more fibrotic and higher vascularized venous thrombi. Increased circulating active TGFβ1 levels, endothelial TGFβRI/ALK1 (activin receptor-like kinase), and TGFβRI/ALK5 expression were detected in End.TGFβRII-KO mice, and activated TGFβ signaling was present in vessel-rich areas of CTEPH specimens. CTEPH-endothelial cells and murine endothelial cells lacking TGFβRII simultaneously expressed endothelial and mesenchymal markers and transcription factors regulating endothelial-to-mesenchymal transition, similar to TGFβ1-stimulated endothelial cells. Mechanistically, increased endothelin-1 levels were detected in TGFβRII-KO endothelial cells, murine venous thrombi, or endarterectomy specimens and plasma of CTEPH patients, and endothelin-1 overexpression was prevented by inhibition of ALK5, and to a lesser extent of ALK1. ALK5 inhibition and endothelin receptor antagonization inhibited mesenchymal lineage conversion in TGFβ1-exposed human and murine endothelial cells and improved venous thrombus resolution and pulmonary vaso-occlusions in End.TGFβRII-KO mice. Endothelial TGFβ1 signaling via type I receptors and endothelin-1 contribute to mesenchymal lineage transition and thrombofibrosis, which were prevented by blocking endothelin receptors. Our findings may have relevant implications for the prevention and management of CTEPH."	"Identification of Potentially Functional CircRNA-miRNA-mRNA Regulatory Network in Gastric Carcinoma using Bioinformatics Analysis. BACKGROUND As all we know, gastric cancer (GC) is a highly aggressive disease. Recently, circular RNA (circRNA) was found to play a vital role in regulation of GC. Some circRNAs could regulate messenger RNA (mRNA) expression by functioning as a microRNA (miRNA) sponge. Nevertheless, the circRNA-miRNA-mRNA regulatory network involved GC rarely has been explored and researched. MATERIAL AND METHODS All the differentially expressed circRNAs, miRNAs, and mRNA were derived from Gene Expression Omnibus (GEO) microarray data (GSE78092, GSE89143, GSE93415, and GSE54129). GC level 3 miRNA-sequencing data and clinical information were downloaded from The Cancer Genome Atlas (TCGA) database. Furthermore, a circRNA-miRNA-mRNA regulatory network was constructed by Cytoscape (version 3.6.1). Gene Ontology (GO) analysis and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway revealed the functions and signaling pathways associated with these target genes. Hub genes of protein-protein interaction (PPI) network were identified by STRING database and cytoHubba. RESULTS The regulatory network consists of 3 circRNAs, 22 miRNAs, and 128 mRNAs. Only 3 miRNAs of the network were consistent with the expression of TCGA and were associated with some clinical features. The results of the functional analysis of 128 mRNAs showed that GO analysis and KEGG pathways of inclusion criteria were 49 and 24, respectively. PPI network and Cytoscape showed that the top 10 hub genes were MYC, CTGF, TGFBR2, TGFBR1, SERPINE1, KRAS, ZEB1, THBS1, CDK6, and TNS1; 4 of which were verified by GEPIA based on TCGA. Highly expressed SERPINE1 had a poor OS (over survival) and DFS (disease-free survival), and TGFBR1 expression increased along with the increase of clinical stages. CONCLUSIONS This study looked at a circRNA-miRNA-mRNA regulatory network associated with GC and explored the potential functions of mRNA in the network, then identified a new molecular marker for prediction, prognosis, and therapeutic targets for clinical patients."	"Prediction of MicroRNA and Gene Target in Synovium-Associated Pain of Knee Osteoarthritis Based on Canonical Correlation Analysis. Inflammation plays a central role in knee osteoarthritis (OA) pathogenesis (C. R. Scanzello, 2017). The synovial membrane inflammation is associated with disease progression and represents a primary source of agony in knee OA (L. A. Stoppiello et al., 2014). Many inflammatory mediators may have biomarker utility. To identify synovium related to knee OA pain biomarkers, we used canonical correlation analysis to analyze the miRNA-mRNA dual expression profiling data and extracted the miRNAs and mRNAs. After identifying miRNAs and mRNAs, we built an interaction network by integrating miRWalk2.0. Then, we extended the network by increasing miRNA-mRNA pairs and identified five miRNAs and four genes (TGFBR2, DST, TBXAS1, and FHLI) through the Spearman rank correlation test. For miRNAs involved in the network, we further performed the Gene Ontology (GO) and the Kyoto Encyclopedia of Genes and Genomes (KEGG) functional enrichment analyses, whereafter only those mRNAs overlapped with the Online Mendelian Inheritance in Man (OMIM) genetic database were analyzed. Receiver operating characteristic (ROC) curve and support vector machine (SVM) classification were taken into the analysis. The results demonstrated that all the recognized miRNAs and their gene targets in the network might be potential biomarkers for synovial-associated pain in knee OA. This study predicts the underlying risk biomarkers of synovium pain in knee OA."	"A super-enhancer controls TGF- β signaling in pancreatic cancer through downregulation of TGFBR2. Pancreatic cancer is one of the most lethal malignant tumors due to a late diagnosis and highly invasion and metastasis. Transforming growth factor-β (TGF-β) signaling plays a vital role in the progression of pancreatic cancer. The delicate activity of TGF-β signaling is particular important for the development of aggression and metastasis which must be fine-tuned. Here, we investigated the role of super-enhancers in regulating the expression of TGF-β signaling pathway in pancreatic cancer. TGFBR2 owns the modification of H3K27Ac around the gene in pancreatic cancer cells. Inhibition of BRD4 by JQ1 robustly blocked the expression of TGFBR2 in a dose dependent manner. We successfully mapped a super-enhancer in TGFBR2 by sgRNA. Deletion of the super-enhancer in TGFBR2 (sgTGFBR2-SEΔ) significantly reduced the expression of TGFBR2 in pancreatic cancer cells. TGF-β-induced p-SMAD2/3 was greatly impaired in TGFBR2 super-enhancer deleted cells. Both migration and EMT induced by TGF-β in pancreatic cancer cells were impaired after deleting the super-enhancer of TGFBR2. Our data suggest a novel molecular mechanism by which a super-enhancer regulates TGFBR2, affecting the activity of TGF-β as well as its function in pancreatic cancer progression."	"NG2 glia regulate brain innate immunity via TGF-β2/TGFBR2 axis. Brain innate immunity is vital for maintaining normal brain functions. Immune homeostatic imbalances play pivotal roles in the pathogenesis of neurological diseases including Parkinson's disease (PD). However, the molecular and cellular mechanisms underlying the regulation of brain innate immunity and their significance in PD pathogenesis are still largely unknown. Cre-inducible diphtheria toxin receptor (iDTR) and diphtheria toxin-mediated cell ablation was performed to investigate the impact of neuron-glial antigen 2 (NG2) glia on the brain innate immunity. RNA sequencing analysis was carried out to identify differentially expressed genes in mouse brain with ablated NG2 glia and lipopolysaccharide (LPS) challenge. Neurotoxin 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine (MPTP)-treated mice were used to evaluate neuroinflammatory response in the presence or absence of NG2 glia. The survival of dopaminergic neurons or glial cell activation was evaluated by immunohistochemistry. Co-cultures of NG2 glia and microglia were used to examine the influence of NG2 glia to microglial activation. We show that NG2 glia are required for the maintenance of immune homeostasis in the brain via transforming growth factor-β2 (TGF-β2)-TGF-β type II receptor (TGFBR2)-CX3C chemokine receptor 1 (CX3CR1) signaling, which suppresses the activation of microglia. We demonstrate that mice with ablated NG2 glia display a profound downregulation of the expression of microglia-specific signature genes and remarkable inflammatory response in the brain following exposure to endotoxin lipopolysaccharides. Gain- or loss-of-function studies show that NG2 glia-derived TGF-β2 and its receptor TGFBR2 in microglia are key regulators of the CX3CR1-modulated immune response. Furthermore, deficiency of NG2 glia contributes to neuroinflammation and nigral dopaminergic neuron loss in MPTP-induced mouse PD model. These findings suggest that NG2 glia play a critical role in modulation of neuroinflammation and provide a compelling rationale for the development of new therapeutics for neurological disorders."	"Hsa-miR-587 Regulates TGFβ/SMAD Signaling and Promotes Cell Cycle Progression. Transforming growth factor beta/single mothers against decapentaplegic (TGFβ/SMAD) signaling pathway plays important roles in various biological processes. It acts as a tumor suppressor during the early stages of cancer progression. Discovering the regulators of this pathway provides important options for therapeutic strategies. Here, we searched for candidate microRNAs (miRNAs) that potentially target the critical components of the TGFβ signaling pathway. In the current experimental study, we first predicted miRNAs that target TGFβ components using a bioinformatics software. After that, quantitative real-time polymerase chain reaction (RT-qPCR) was used to detect the expression of miR-587, TGFBR2, SMAD4, p21, CCND1 and c-MYC genes in transfected HEK293T and HCT116 cells. Dual Luciferase assay was performed to analyze the interactions between miRNAs and the target genes. Propidium iodide flow cytometry was used to determine cell cycle progression in HEK293T and HCT116 cells under hsa-miR-587 (miR-587) overexpression circumstances. Multiple miRNA responsive elements (MREs) were predicted for miR-587 within the 3'UTRs of the TGFBR2 and SMAD4 genes. Overexpression of miR-587 in HEK293T and HCT116 cells resulted in downregulation of TGFBR2 and SMAD4 genes. In addition, a downstream target gene of TGFβ/SMAD signaling, P21, was significantly downregulated in the HCT116 cells overexpressing miR-587. Dual luciferase assay analysis provided evidence that there is a direct interaction between miR-587 and the 3'UTR sequences of TGFBR2 and SMAD4 genes. Moreover, miR-587 overexpression in HEK293T and HCT116 cells resulted in reducing the SubG1 cell populations in both cell lines, as detected by flow cytometry. Altogether, our data revealed an important role for miR-587 in regulating TGFβ/SMAD signaling and promoting cell cycle progression. These characteristics suggest that miR-587 is an important candidate for cancer therapy research."	"BMP10 preserves cardiac function through its dual activation of SMAD-mediated and STAT3-mediated pathways. Bone morphogenetic protein 10 (BMP10) is a cardiac peptide growth factor belonging to the transforming growth factor β superfamily that critically controls cardiovascular development, growth, and maturation. It has been shown that BMP10 elicits its intracellular signaling through a receptor complex of activin receptor-like kinase 1 with morphogenetic protein receptor type II or activin receptor type 2A. Previously, we generated and characterized a transgenic mouse line expressing BMP10 from the α-myosin heavy chain gene promoter and found that these mice have normal cardiac hypertrophic responses to both physiological and pathological stimuli. In this study, we report that these transgenic mice exhibit significantly reduced levels of cardiomyocyte apoptosis and cardiac fibrosis in response to a prolonged administration of the β-adrenoreceptor agonist isoproterenol. We further confirmed this cardioprotective function with a newly generated conditional Bmp10 transgenic mouse line, in which Bmp10 was activated in adult hearts by tamoxifen. Moreover, the intraperitoneal administration of recombinant human BMP10 was found to effectively protect hearts from injury, suggesting potential therapeutic utility of using BMP10 to prevent heart failure. Gene profiling and biochemical analyses indicated that BMP10 activates the SMAD-mediated canonical pathway and, unexpectedly, also the signal transducer and activator of transcription 3 (STAT3)-mediated signaling pathway both in vivo and in vitro Additional findings further supported the notion that BMP10's cardioprotective function likely is due to its dual activation of SMAD- and STAT3-regulated signaling pathways, promoting cardiomyocyte survival and suppressing cardiac fibrosis."	"miR-122-5p negatively regulates the transforming growth factor-β/Smad signaling pathway in skeletal muscle myogenesis. Regeneration remains a major challenge in skeletal muscle repair after injury. Recently, transforming growth factor-β (TGF-β)/Smad pathway was found to play an important role in inhibiting myogenesis, a crucial stage in skeletal muscle regeneration. In our previous study, microRNA-122-5p (miR-122) was proved to have the function of downregulating TGF-β/Smad pathway. Theoretically, miR-122 might also be involved in the process of skeletal muscle myogenesis through the regulation of TGF-β/Smad pathway. In this study, we aimed to investigate the impact of miR-122 on skeletal muscle myogenesis and explore its underlying mechanism. Results showed that miR-122 and myogenic markers were downregulated in C2C12 cells after TGF-β stimulation, and miR-122 overexpression could restore the myogenesis inhibited by TGF-β. We then located TGFBR2 as the direct target of miR-122 and discovered the effect of miR-122 overexpression could be rescued by TGFBR2 overexpression. Further, the downstream molecules of TGFBR2 in the TGF-β/Smad pathway were found to be suppressed by miR-122. In conclusion, miR-122 could suppress the TGF-β/Smad signalling pathway by directly targeting TGFBR2 and, consequently, restore myogenesis. SIGNIFICANCE OF THE STUDY: Regeneration remains a major challenge in skeletal muscle repair after injury. In this study, it was found that miR-122 could suppress the TGF-β/Smad signalling pathway by directly targeting TGFBR2 and, consequently, restore myogenesis. Our findings could inspire future experiments on the role of miRs in skeletal muscle diseases and future translational studies on potential novel gene therapy for skeletal muscle injury."	"A single combination gene therapy treats multiple age-related diseases. Comorbidity is common as age increases, and currently prescribed treatments often ignore the interconnectedness of the involved age-related diseases. The presence of any one such disease usually increases the risk of having others, and new approaches will be more effective at increasing an individual's health span by taking this systems-level view into account. In this study, we developed gene therapies based on 3 longevity associated genes (fibroblast growth factor 21 [FGF21], αKlotho, soluble form of mouse transforming growth factor-β receptor 2 [sTGFβR2]) delivered using adeno-associated viruses and explored their ability to mitigate 4 age-related diseases: obesity, type II diabetes, heart failure, and renal failure. Individually and combinatorially, we applied these therapies to disease-specific mouse models and found that this set of diverse pathologies could be effectively treated and in some cases, even reversed with a single dose. We observed a 58% increase in heart function in ascending aortic constriction ensuing heart failure, a 38% reduction in α-smooth muscle actin (αSMA) expression, and a 75% reduction in renal medullary atrophy in mice subjected to unilateral ureteral obstruction and a complete reversal of obesity and diabetes phenotypes in mice fed a constant high-fat diet. Crucially, we discovered that a single formulation combining 2 separate therapies into 1 was able to treat all 4 diseases. These results emphasize the promise of gene therapy for treating diverse age-related ailments and demonstrate the potential of combination gene therapy that may improve health span and longevity by addressing multiple diseases at once."	"Hippocampus-specific regulation of long non-coding RNA and mRNA expression in germ-free mice. Gut microbiota can affect multiple brain functions and cause behavioral alterations through the microbiota-gut-brain axis. In our previous study, we found that the absence of gut microbiota can influence the expression of microRNAs and mRNAs in the hippocampal region of the germ-free (GF) mice. Long non-coding RNAs (lncRNAs) are increasingly being recognized as an important functional transcriptional regulator in the brain. In the present study, we aim to identify possible biological pathways and functional networks for lncRNA-associated transcript of the gut microbiota in relation to the brain function. The profiles of lncRNA and mRNA from specific pathogen-free (SPF), colonized GF (CGF), and GF mice were generated using the Agilent Mouse LncRNA Array v2.0. Differentially expressed (DE) lncRNAs and mRNAs were identified, and lncRNA target genes were also predicted. Ingenuity pathway analysis (IPA) was performed to analyze related signaling pathways and biological functions associated with these dysregulated mRNAs and target genes. Validation with quantitative real-time PCR was performed on several key genes. Compared with SPF mice a total of 2230 DE lncRNAs were found in GF mice. Among these, 1355 were upregulated and 875 were downregulated. After comparing the target genes of DE lncRNAs with mRNA datasets, 669 overlapping genes were identified. IPA core analyses revealed that most of these genes were highly associated with cardiac hypertrophy, nuclear factors of activated T cells (NFAT) gonadotropin-releasing hormone (GnRH), calcium, and cAMP-response element-binding protein (CREB) signaling pathways. Additionally, mRNA expression levels of APP, CASP9, IGFBP2, PTGDS, and TGFBR2 genes that are involved in central nervous system functions were significantly changed in the GF mouse hippocampus. Through this study, for the first time, we describe the effect of gut microbiota on the hippocampal lncRNA regulation. This will help in enhancing the overall knowledge about microbiota-gut-brain axis."	"LncRNA PCAT6 promotes tumor progression in osteosarcoma via activation of TGF-β pathway by sponging miR-185-5p. Long noncoding RNAs (lncRNAs) play crucial roles in tumor development of osteosarcoma (OS). LncRNA PCAT6 was involved in the progression of multiple human cancers. However, the biological function of PCAT6 in OS remains largely unknown. We found that PCAT6 was elevated in OS tissues relative to that in their adjacent normal tissues. The upregulation of PCAT6 was positively associated with metastasis status and advanced stages and predicted poor overall and progression-free survivals in patients with OS. Functionally, silencing PCAT6 inhibited the proliferation, migration and invasion abilities of OS cells. Mechanistically, PCAT6, acting as a competitive endogenous RNA, upregulated expression of TGFBR1 and TGFBR2 to activate TGF-β pathway via sponging miR-185-5p. This study uncovers a novel underlying molecular mechanism of PCAT6-miR-185-5p-TGFBR1/2-TGF-β signaling axis in promoting tumor progression in OS, which indicates that PCAT6 may serve as a promising prognostic factor and therapeutic target again OS."	"Serotonin Prevents Differentiation of Brown Adipocytes by Interfering with Their Clock. Serotonin was shown to interfere with the differentiation of brown adipocytes. In addition, clock components inhibit brown adipogenesis through direct transcriptional control of key components of the transforming growth factor β pathway. The aim of this study was to investigate whether serotonin abrogates brown adipogenesis by affecting clock functionality. Nondifferentiated and differentiated HIB1B brown adipocytes were treated with serotonin, and their clock expression and functionality and differentiation state were examined. Nondifferentiated HIB1B brown adipocytes treated with serotonin showed increased brown adipocyte markers alongside increased brain-muscle Arnt-like protein 1 (Bmal1) and RAR related orphan receptor A (Rora) but decreased nuclear receptor Rev-erbα mRNA levels. BMAL1 overexpression together with serotonin led to significantly lower brown adipocyte markers. Serotonin in the differentiation cocktail led to reduced brown adipocyte markers as well as clock gene expression. After differentiation, serotonin treatment significantly decreased brown adipocyte markers and reduced BMAL1 and RORα but increased REV-ERBα protein levels. Addition of serotonin to the differentiation medium or addition after differentiation reduced activity of calcium/calmodulin-dependent protein kinase type II subunit gamma, which interferes with circadian locomoter output cycles protein kaput (CLOCK):BMAL1 dimerization and transactivation. Clock expression is required at the early stages of differentiation to brown adipocytes, and serotonin interferes with this process by modulating clock functionality. Serotonin interferes with clock functionality by reducing the levels of the active form of calcium/calmodulin-dependent protein kinase type II subunit gamma."	"Human Papillomavirus 16 E5 Inhibits Interferon Signaling and Supports Episomal Viral Maintenance. Human papillomaviruses (HPVs) infect keratinocytes of stratified epithelia. Long-term persistence of infection is a critical risk factor for the development of HPV-induced malignancies. Through the actions of its oncogenes, HPV evades host immune responses to facilitate its productive life cycle. In this work, we discovered a previously unknown function of the HPV16 E5 oncoprotein in the suppression of interferon (IFN) responses. This suppression is focused on keratinocyte-specific IFN-κ and is mediated through E5-induced changes in growth factor signaling pathways, as identified through phosphoproteomics analysis. The loss of E5 in keratinocytes maintaining the complete HPV16 genome results in the derepression of IFNK transcription and subsequent JAK/STAT-dependent upregulation of several IFN-stimulated genes (ISGs) at both the mRNA and protein levels. We also established a link between the loss of E5 and the subsequent loss of genome maintenance and stability, resulting in increased genome integration.IMPORTANCE Persistent human papillomavirus infections can cause a variety of significant cancers. The ability of HPV to persist depends on evasion of the host immune system. In this study, we show that the HPV16 E5 protein can suppress an important aspect of the host immune response. In addition, we find that the E5 protein is important for helping the virus avoid integration into the host genome, which is a frequent step along the pathway to cancer development."	"Association of iRhom1 and iRhom2 expression with prognosis in patients with cervical cancer and possible signaling pathways. Several proteins in the iRhom family function as oncogenic regulators in certain cancers. However, the function of these proteins in cervical cancer (CC) is unknown. The relationship of iRhom1 and iRhom2 expression with the clinicopathological features and prognosis of patients with CC was investigated, and their possible molecular mechanisms were examined using in vitro experiments. The expression of iRhom1 and iRhom2 in CC samples of 83 patients was determined by immunohistochemistry (IHC), and the associations of their expression with the clinicopathological features of patients were determined. The relationship of iRhom1, iRhom2, and Ki‑67 expression with survival rates was determined using Kaplan‑Meier analysis and Cox regression analyses. HeLa cells were analyzed using MTT assays, cell cycle analysis, and apoptosis assays. The results revealed that CC tissues had higher levels of iRhom1 and iRhom2 than adjacent normal tissues. Increased expression of iRhom1, iRhom2, and K‑i67 was significantly associated with tumor stage, size, and parametrium invasion. High expression of iRhom1, iRhom2 and Ki‑67 was correlated with poor outcomes. Cancer stage and iRhom2 expression were independent prognostic indicators of CC. Knockdown of iRhom1 and iRhom2 in HeLa cells inhibited cell proliferation, promoted the G1 phase and relieved S‑phase arrest, and induced apoptosis. Genomic microarray analysis indicated that iRhom2 knockdown altered several pathways with roles in oncogenesis, including the expression of five genes in the Wnt/β‑catenin pathway. Western blotting in HeLa cells revealed that iRhom1 knockdown significantly suppressed the expression of β‑catenin, Myc, p‑EGFR and TGFBR2, and increased the expression of FAS; iRhom2 knockdown significantly suppressed the expression of β‑catenin, GSK3β, p‑EGFR and Myc. These results were consistent with the genomic microarray data. Collectively, the results indicated that iRhom1 and iRhom2 may function as oncogenes in CC and are potential therapeutic targets."	"Two-factor specification of apoptosis: TGF-β signaling acts cooperatively with ecdysone signaling to induce cell- and stage-specific apoptosis of larval neurons during metamorphosis in Drosophila melanogaster. Developmentally regulated programmed cell death (PCD) is one of the key cellular events for precise controlling of neuronal population during postembryonic development of the central nervous system. Previously we have shown that a group of corazonin-producing peptidergic neurons (vCrz) undergo apoptosis in response to ecdysone signaling via ecdysone receptor (EcR)-B isoforms and Ultraspiracle during early phase of metamorphosis. Further utilizing genetic, transgenic, and mosaic analyses, we have found that TGF-β signaling mediated by a glia-produced ligand, Myoglianin, type-I receptor Baboon (particularly Babo-A isoform) and dSmad2, is also required autonomously for PCD of the vCrz neurons. Our studies show that TGF-β signaling is not acting epistatically to EcR or vice versa. We also show that ectopic expression of a constitutively active phosphomimetic form of dSmad2 (dSmad2<sup>PM</sup>) is capable of inducing premature death of vCrz neurons in larva but not other larval neurons. Intriguingly, the dSmad2<sup>PM</sup>-mediated killing is completely suppressed by coexpression of a dominant-negative form of EcR (EcR<sup>DN</sup>), suggesting that EcR function is required for the proapoptotic dSmad2<sup>PM</sup> function. Based on these data, we suggest that TGF-β and ecdysone signaling pathways act cooperatively to induce vCrz neuronal PCD. We propose that this type of two-factor authentication is a key developmental strategy to ensure the timely PCD of specific larval neurons during metamorphosis."	"SOX9+/PTF1A+ Cells Define the Tip Progenitor Cells of the Human Fetal Pancreas of the Second Trimester. Significant progress has been made in recent years in characterizing human multipotent progenitor cells (hMPCs) of the early pancreas; however, the identity and persistence of these cells during the second trimester, after the initiation of branching morphogenesis, remain elusive. Additionally, studies on hMPCs have been hindered by few isolation methods that allow for the recovery of live cells. Here, we investigated the tip progenitor domain in the branched epithelium of human fetal pancreas between 13.5 and 17.5 gestational weeks by immunohistological staining. We also used a novel RNA-based technology to isolate live cells followed by gene expression analyses. We identified cells co-expressing SOX9 and PTF1A, two transcription factors known to be important for pancreatic MPCs, within the tips of the epithelium and observed a decrease in their proportions over time. Pancreatic SOX9+/PTF1A+ cells were enriched for MPC markers, including MYC and GATA6. These cells were proliferative and appeared active in branching morphogenesis and matrix remodeling, as evidenced by gene set enrichment analysis. We identified a hub of genes pertaining to the expanding tip progenitor niche, such as FOXF1, GLI3, TBX3, FGFR1, TGFBR2, ITGAV, ITGA2, and ITGB3. YAP1 of the Hippo pathway emerged as a highly enriched component within the SOX9+/PTF1A+ cells. Single-cell RNA-sequencing further corroborated the findings by identifying a cluster of SOX9+/PTF1A+ cells with multipotent characteristics. Based on these results, we propose that the SOX9+/PTF1A+ cells in the human pancreas are uncommitted MPC-like cells that reside at the tips of the expanding pancreatic epithelium, directing self-renewal and inducing pancreatic organogenesis. Stem Cells Translational Medicine 2019;8:1249&amp;1264."	"Dynamic mechanical loading and growth factors influence chondrogenesis of induced pluripotent mesenchymal progenitor cells in a cartilage-mimetic hydrogel. Human induced pluripotent stem cells (iPSCs) have emerged as a promising alternative to bone-marrow derived mesenchymal stem/stromal cells for cartilage tissue engineering. However, the effect of biochemical and mechanical cues on iPSC chondrogenesis remains understudied. This study evaluated chondrogenesis of induced pluripotent mesenchymal progenitor cells (iPS-MPs) encapsulated in a cartilage-mimetic hydrogel under different culture conditions: free swelling versus dynamic compressive loading and different growth factors (TGFβ3 and/or BMP2). Human iPSCs were differentiated into iPS-MPs and chondrogenesis was evaluated by gene expression (qPCR) and protein expression (immunohistochemistry) after three weeks. In pellet culture, both TGFβ3 and BMP2 were required to promote chondrogenesis. However, the hydrogel in growth factor-free conditions promoted chondrogenesis, but rapidly progressed to hypertrophy. Dynamic loading in growth factor-free conditions supported chondrogenesis, but delayed the transition to hypertrophy. Findings were similar with TGFβ3, BMP2, and TGFβ3 + BMP2. Dynamic loading with TGFβ3, regardless of BMP2, was the only condition that promoted a stable chondrogenic phenotype (aggrecan + collagen II) accompanied by collagen X down-regulation. Positive TGFβRI expression with load-enhanced Smad2/3 signaling and low SMAD1/5/8 signaling was observed. In summary, this study reports a promising cartilage-mimetic hydrogel for iPS-MPs that when combined with appropriate biochemical and mechanical cues induces a stable chondrogenic phenotype."	"[An analysis of the peptide composition of a 'light' peptide fraction of cerebrolysin]. To analyze the peptide composition of a light peptide fraction of cerebrolysin. Mass spectrometry (MS) with orbital ion traps and modern de novo MS-sequencing algorithms was performed. The amino acid sequences of 14 635 peptides corresponding to the 1643 porcine proteome neuronal proteins are identified. An analysis of the human proteome annotation shows that these peptides can mimic the corresponding human peptides. In particular, 405 peptide fragments correspond to 300 known biologically active peptides, including fragments of antibacterial peptides (defensins, histatins), immunomodulatory (granulin, manserin) and vasoactive (endothelin, VIP) peptides. At the same time, 8953 of 14 635 peptides can modulate the activity of 275 human signaling proteins, including kinases CDK1, CDK2, TGFBR2, GSK3, MTOR, pro-apoptotic caspases CASP1, CASP3 and CASP6 etc. The results confirm the presence of Leu- and Met-enkephalins, fragments of neuropeptide orexin, neuropeptide VF, galanin and nerve growth factor that have a neurotrophic effect. The results of a proteomic study of the peptide composition of cerebrolysin indicate the widest range of molecular mechanisms responsible for the clinical efficacy of this drug. Цель исследования. Проведение комплексного протеомного анализа пептидного состава 'легкой' пептидной фракции лекарственного препарата (ЛП) Церебролизин. Материал и методы. Гибридная масс-спектрометрия (МС) с орбитальными ловушками ионов с последующим использованием современных алгоритмов de novo МС-секвенирования. Результаты. Установлены аминокислотные последовательности 14 635 пептидов, соответствующих 1643 нейрональным белкам протеома свиньи. Анализ аннотации протеома человека показал, что выявленные пептиды ЛП Церебролизин могут являться пептидами-миметиками соответствующих пептидов человека. В частности, найдено 405 пептидных фрагментов, соответствующих 300 известным биологически активным пептидам, в том числе фрагментам антибактериальных (дефенсины, гистатины), иммуномодуляторных (гранулин, мансерин) и вазоактивных (эндотелин, VIP) пептидов. При этом 8953 из 14 635 пептидов могут являться модуляторами активности 275 сигнальных белков человека, в том числе ингибировать киназы CDK1, CDK2, TGFBR2, GSK3, MTOR, проапоптотические ферменты-каспазы CASP1, CASP3 и CASP6 и др. Результаты исследования подтвердили наличие в составе ЛП Церебролизин Leu- и Мет-энкефалинов, фрагментов нейропептидов орексина, нейропептида VF, галанина и фактора роста нервов, оказывающих нейротрофическое действие. Заключение. Результаты протеомного исследования пептидного состава ЛП Церебролизин указывают на широчайший круг молекулярных механизмов, обусловливающих его фармакологическое действие."	"PGC-1α Suppresses the Activation of TGF-β/Smad Signaling via Targeting TGFβRI Downregulation by let-7b/c Upregulation. TGF-β/Smad signaling is a major pathway in progressive fibrotic processes, and further studies on the molecular mechanisms of TGF-β/Smad signaling are still needed for their therapeutic targeting. Recently, peroxisome proliferator-activated receptor γ coactivator-1α (PGC-1α) was shown to improve renal fibrosis, making it an attractive target for chronic kidney diseases (CKDs). Here, we show the mechanism by which PGC-1α regulates the TGF-β/Smad signaling pathway using HK-2 cell lines stably overexpressing empty vector (mock cells) or human PGC1α (PGC1α cells). Stable PGC-1α overexpression negatively regulated the expression of TGF-β-induced epithelial-mesenchymal transition (EMT) markers (fibronectin, E-cadherin, vimentin, and α-SMA) and EMT-related transcription factors (Snail and Slug) compared to mock cells, inhibiting fibrotic progression. Interestingly, among molecules upstream of Smad2/3 activation, the gene expression of only TGFβRI, but not TGFβRII, was downregulated in PGC-1α cells. In addition, the downregulation of TGFβRI by PGC-1α was associated with the upregulation of let-7b/c, miRNA for which the 3' untranslated region (UTR) of TGFβRI contains a binding site. In conclusion, PGC-1α suppresses TGF-β/Smad signaling activation via targeting TGFβRI downregulation by let-7b/c upregulation."	"Losartan Rescues Inflammation-related Mucociliary Dysfunction in Relevant Models of Cystic Fibrosis. Rationale: Despite therapeutic progress in treating cystic fibrosis (CF) airway disease, airway inflammation with associated mucociliary dysfunction remains largely unaddressed. Inflammation reduces the activity of apically expressed large-conductance Ca<sup>2+</sup>-activated and voltage-dependent K<sup>+</sup> (BK) channels, critical for mucociliary function in the absence of CFTR (CF transmembrane conductance regulator).Objectives: To test losartan as an antiinflammatory therapy in CF using CF human bronchial epithelial cells and an ovine model of CF-like airway disease.Methods: Losartan's antiinflammatory effectiveness to rescue BK activity and thus mucociliary function was tested in vitro using primary, fully redifferentiated human airway epithelial cells homozygous for F508del and in vivo using a previously validated, now expanded pharmacologic sheep model of CF-like, inflammation-associated mucociliary dysfunction.Measurements and Main Results: Nasal scrapings from patients with CF showed that neutrophilic inflammation correlated with reduced expression of LRRC26 (leucine rich repeat containing 26), the γ subunit mandatory for BK function in the airways. TGF-β1 (transforming growth factor β1), downstream of neutrophil elastase, decreased mucociliary parameters in vitro. These were rescued by losartan at concentrations achieved by nebulization in the airway and oral application in the bloodstream: BK dysfunction recovered acutely and over time (the latter via an increase in LRRC26 expression), ciliary beat frequency and airway surface liquid volume improved, and mucus hyperconcentration and cellular inflammation decreased. These effects did not depend on angiotensin receptor blockade. Expanding on a validated and published nongenetic, CF-like sheep model, ewes inhaled CFTRinh172 and neutrophil elastase for 3 days, which resulted in prolonged tracheal mucus velocity reduction, mucus hyperconcentration, and increased TGF-β1. Nebulized losartan rescued both mucus transport and mucus hyperconcentration and reduced TGF-β1.Conclusions: Losartan effectively reversed CF- and inflammation-associated mucociliary dysfunction, independent of its angiotensin receptor blockade."	"Chronic oestrogen deficiency induced by ovariectomy may cause lung fibrosis through activation of the renin-angiotensin system in rats. Context: Oestrogen deficiency is linked with pulmonary fibrosis. Additionally, it may lead to over-activation of the renin-angiotensin system (RAS), which worsens lung fibrosis. Objective: The present study aims to investigate the role of RAS on lung fibrosis associated with oestrogen deficiency in ovariectomised rats. Materials and methods: Serum 17β-oestradiol (E2), arterial blood gases, plasma angiotensin II levels, lung tissue hydroxyproline content, and transforming growth factor beta 1 (TGF-β1) concentration, the mRNA expression of angiotensin type 1 receptor (AT1R), and angiotensin-converting enzyme (ACE1) were evaluated. Moreover, lung tissues were examined by histopathology and immunohistochemistry. Results: Hydroxyproline content, TGF-β1 concentration, plasma angiotensin II, the relative mRNA expression of ACE1, and AT1R is found to increase in ovariectomised rats. The mentioned changes can be largely rescued by administration of RAS blockers. Conclusion: Oestrogen deficiency activates RAS, which consequently increases the expression of pro-fibrotic factors and stimulates the fibrotic cascade causing lung fibrosis."	"Dietary hemin promotes colonic preneoplastic lesions and DNA damage but not tumor development in a medium-term model of colon carcinogenesis in rats. Red and processed meat consumption has been strongly related to increase the risk of colorectal cancer (CRC), although its impact is largely unknown. Hemin, an iron-containing porphyrin, is acknowledged as a putative factor of red and processed meat pro-carcinogenic effects. The aim of this study was to investigate the effects of high dietary hemin on the promotion/progression stages of 1,2-dimethylhydrazine (1,2-DMH)-induced colon carcinogenesis. Twenty-four Wistar male rats were given four subcutaneous 1,2-DMH injections and received either balanced diet or balanced diet supplemented with hemin 0.5 mmol/kg for 23 weeks. Colon specimens were analyzed for aberrant crypt foci (ACF) and tumor development. Dietary hemin significantly increased ACF number and fecal water cytotoxicity/genotoxicity in Caco-2 cells when compared to 1,2-DMH control group. However, tumor incidence, multiplicity and cell proliferation did not differ between 1,2-DMH + hemin and 1,2-DMH control group. Gene expression analysis of 91 target-genes revealed that only three genes (Figf, Pik3r5 and Tgfbr2) were down-regulated in the tumors from hemin-fed rats compared to those from 1,2-DMH control group. Therefore, the findings of this study show that high hemin intake promotes mainly DNA damage and ACF development and but does not change the number nor incidence of colon tumors induced by 1,2-DMH in male rats."	"Mutated CEACAMs Disrupt Transforming Growth Factor Beta Signaling and Alter the Intestinal Microbiome to Promote Colorectal Carcinogenesis. We studied interactions among proteins of the carcinoembryonic antigen-related cell adhesion molecule (CEACAM) family, which interact with microbes, and transforming growth factor beta (TGFB) signaling pathway, which is often altered in colorectal cancer cells. We investigated mechanisms by which CEACAM proteins inhibit TGFB signaling and alter the intestinal microbiome to promote colorectal carcinogenesis. We collected data on DNA sequences, messenger RNA expression levels, and patient survival times from 456 colorectal adenocarcinoma cases, and a separate set of 594 samples of colorectal adenocarcinomas, in The Cancer Genome Atlas. We performed shotgun metagenomic sequencing analyses of feces from wild-type mice and mice with defects in TGFB signaling (Sptbn1<sup>+/-</sup> and Smad4<sup>+/-</sup>/Sptbn1<sup>+/-</sup>) to identify changes in microbiota composition before development of colon tumors. CEACAM protein and its mutants were overexpressed in SW480 and HCT116 colorectal cancer cell lines, which were analyzed by immunoblotting and proliferation and colony formation assays. In colorectal adenocarcinomas, high expression levels of genes encoding CEACAM proteins, especially CEACAM5, were associated with reduced survival times of patients. There was an inverse correlation between expression of CEACAM genes and expression of TGFB pathway genes (TGFBR1, TGFBR2, and SMAD3). In colorectal adenocarcinomas, we also found an inverse correlation between expression of genes in the TGFB signaling pathway and genes that regulate stem cell features of cells. We found mutations encoding L640I and A643T in the B3 domain of human CEACAM5 in colorectal adenocarcinomas; structural studies indicated that these mutations would alter the interaction between CEACAM5 and TGFBR1. Overexpression of these mutants in SW480 and HCT116 colorectal cancer cell lines increased their anchorage-independent growth and inhibited TGFB signaling to a greater extent than overexpression of wild-type CEACAM5, indicating that they are gain-of-function mutations. Compared with feces from wild-type mice, feces from mice with defects in TGFB signaling had increased abundance of bacterial species that have been associated with the development of colon tumors, including Clostridium septicum, and decreased amounts of beneficial bacteria, such as Bacteroides vulgatus and Parabacteroides distasonis. We found expression of CEACAMs and genes that regulate stem cell features of cells to be increased in colorectal adenocarcinomas and inversely correlated with expression of TGFB pathway genes. We found colorectal adenocarcinomas to express mutant forms of CEACAM5 that inhibit TGFB signaling and increase proliferation and colony formation. We propose that CEACAM proteins disrupt TGFB signaling, which alters the composition of the intestinal microbiome to promote colorectal carcinogenesis."	"Identification and analysis of survival-associated ceRNA triplets in prostate adenocarcinoma. Prostate adenocarcinoma (PRAD) is one of the most common causes of cancer-associated mortality worldwide. Recent evidence has emphasized the role of competitive endogenous RNAs (ceRNA) in prostate cancer. However, the current understanding of the roles that ceRNAs play in survival-associated PRAD remains in its infancy. In the present study, a PRAD-specific ceRNA network was constructed by integrating long non-coding RNA (lncRNA)-microRNA (miRNA)-gene interactions using experimental and computational methods, as well as expression correlations from The Cancer Genome Atlas database. The topological features of the ceRNA network were then analyzed and the PRAD-risk lncRNAs were compared with non-risk lncRNAs within this network. It was revealed that PRAD-risk lncRNAs had a higher degree, closeness and betweenness centrality, but also had the shortest path length. Finally, 42 significant PRAD-survival-associated triplets were identified. Notably, these triplets may form a compacted subnetwork composed of only 25 nodes (5 miRNAs, 4 lncRNAs and 16 genes) and 32 edges, indicating that some nodes were involved in many triplets. Among this subnetwork, mir-21 indicated the highest degree centrality and was demonstrated to exert its oncogenic effects in prostate tumors by downregulating transforming growth factor β receptor 2 (TGFBR2). Two triplets (MIR22HG_hsa-mir-21_TGFBR2 and MIR22HG_hsa-mir-21_BCL2) were finally identified; not only were they significantly associated with PRAD survival but they also had the highest average degree in the identified subnetwork. The results from the present study provide further insights into the understanding of the potential roles and interactions of ceRNA triplets and potential prognosis markers for PRAD."	"LncRNA PART-1 targets TGFBR2/Smad3 to regulate cell viability and apoptosis of chondrocytes via acting as miR-590-3p sponge in osteoarthritis. Osteoarthritis (OA) is a degenerative joint disease that commonly occurs in the elderly. This study focused on apoptosis and explored the modulating effects of long non-coding (lncRNAs) prostate androgen-regulated transcript-1 (PART-1) on chondrocytes apoptosis. In the present study, the PART-1 expression level was down-regulated in the OA cartilages. Silence of PART-1 decreased the cell viability and promoted chondrocytes apoptosis. Overexpression of PART-1 could reverse the effects induced by interleukin 1β (IL-1β) stimulation, thus slowing down the apoptosis rate. MiR-590-3p was found to be the potential target, and RNA immunoprecipitation and luciferase activity assay confirmed the binding between PART-1 and miR-590-3p. Moreover, miR-590-3p was down-regulated by PART-1 and was negatively associated with PART-1. Transforming growth factor-beta receptor type 2 (TGFBR2) was positively associated with PART-1. Down-regulation of PART-1 decreased cell viability and induced cell apoptosis, which was partially reversed by miR-590-3p silence or TGFBR2 overexpression; while overexpression of PART-1 increased the cell viability and decreased the caspase 3 activity and apoptotic rates, and the effects were partially attenuated by miR-590-3p overexpression or silence of TGFBR2 in IL-1β-stimulated chondrocytes. Knock-down of PART-1 down-regulated both Smad3 and p-Smad3 protein levels, which was reversed by miR-590-3p inhibition or TGFBR2 overexpression. Smad3 expression level was lower in the OA group than that in the normal group and was positively associated with the PART-1 expression level. Collectively, the study revealed that lncRNA PART-1 regulates the apoptosis of chondrocytes in OA by acting as a sponge for miR-590-3p, which subsequently regulates TGFBR2/Smad3 signalling."	"Identification of a transforming growth factor-β type I receptor transcript in Eriocheir sinensis and its molting-related expression in muscle tissues. The transforming growth factor-β (TGF-β) signaling pathway is conserved across animals, and knowledge of its roles during the molt cycle in crustaceans is presently very limited. This study investigates the roles of the TGF-β receptor in molting-related muscle growth in Eriocheir sinensis. Using the RT-PCR and RACE techniques, we obtained a 1722 bp cDNA sequence encoding a transforming growth factor-β type I receptor in Eriocheir sinensis, designated EsTGFBRI, which contains a 124 bp 5'-untranslated region, a 20 bp partial 3'-untranslated region and a 1578 bp open reading frame encoding 525 amino acids. The deduced EsTGFBRI contains an N-terminal 24 amino acid signal peptide, an activin type I and II receptor domain, a transmembrane helix region, a glycine-serine-rich motif, and a conserved serine/threonine kinase catalytic domain including an activation loop. The qRT-PCR results showed that EsTGFBRI gene was highly expressed in the intermolt testis and ovary in mature crabs. In juvenile crabs, the mRNA levels of EsTGFBRI in claw and abdominal muscles in the later premolt D3-4 stage were significantly higher than those in the intermolt C and postmolt A-B stages. There was no significant change in EsTGFBRI mRNA levels in walking leg muscles during the molt cycle. The results suggest that EsTGFBRI is probably play roles in molting-related muscle growth in E. sinensis. This study provides a necessary basis for elucidating the functions of TGF-β-like signaling mediated by TGFBRI in molting-related muscle growth in crustaceans."	"Genotypic Categorization of Loeys-Dietz Syndrome Based on 24 Novel Families and Literature Data. Loeys-Dietz syndrome (LDS) is a connective tissue disorder first described in 2005 featuring aortic/arterial aneurysms, dissections, and tortuosity associated with craniofacial, osteoarticular, musculoskeletal, and cutaneous manifestations. Heterozygous mutations in 6 genes (TGFBR1/2, TGFB2/3, SMAD2/3), encoding components of the TGF-β pathway, cause LDS. Such genetic heterogeneity mirrors broad phenotypic variability with significant differences, especially in terms of the age of onset, penetrance, and severity of life-threatening vascular manifestations and multiorgan involvement, indicating the need to obtain genotype-to-phenotype correlations for personalized management and counseling. Herein, we report on a cohort of 34 LDS patients from 24 families all receiving a molecular diagnosis. Fifteen variants were novel, affecting the TGFBR1 (6), TGFBR2 (6), SMAD3 (2), and TGFB2 (1) genes. Clinical features were scored for each distinct gene and matched with literature data to strengthen genotype-phenotype correlations such as more severe vascular manifestations in TGFBR1/2-related LDS. Additional features included spontaneous pneumothorax in SMAD3-related LDS and cervical spine instability in TGFB2-related LDS. Our study broadens the clinical and molecular spectrum of LDS and indicates that a phenotypic continuum emerges as more patients are described, although genotype-phenotype correlations may still contribute to clinical management."	"Colonic Adenocarcinomas Harboring NTRK Fusion Genes: A Clinicopathologic and Molecular Genetic Study of 16 Cases and Review of the Literature. This study was undertaken to determine the frequency, and the clinicopathologic and genetic features, of colon cancers driven by neurotrophic receptor tyrosine kinase (NTRK) gene fusions. Of the 7008 tumors screened for NTRK expression using a pan-Trk antibody, 16 (0.23%) had Trk immunoreactivity. ArcherDx assay detected TPM3-NTRK1 (n=9), LMNA-NTRK1 (n=3), TPR-NTRK1 (n=2) and EML4-NTRK3 (n=1) fusion transcripts in 15 cases with sufficient RNA quality. Patients were predominantly women (median age: 63 y). The tumors involved the right (n=12) and left colon unequally and were either stage T3 (n=12) or T4. Local lymph node and distant metastases were seen at presentation in 6 and 1 patients, respectively. Lymphovascular invasion was present in all cases. Histologically, tumors showed moderate to poor (n=11) differentiation with a partly or entirely solid pattern (n=5) and mucinous component (n=10), including 1 case with sheets of signet ring cells. DNA mismatch repair-deficient phenotype was seen in 13 cases. Tumor-infiltrating CD4/CD8 lymphocytes were prominent in 9 cases. Programmed death-ligand 1 positive tumor-infiltrating immune cells and focal tumor cell positivity were seen in the majority of cases. CDX2 expression and loss of CK20 and MUC2 expression were frequent. CK7 was expressed in 5 cases. No mutations in BRAF, RAS, and PIK3CA were identified. However, other genes of the PI3K-AKT/MTOR pathway were mutated. In several cases, components of Wnt/β-catenin (APC, AMER1, CTNNB1), p53, and TGFβ (ACVR2A, TGFBR2) pathways were mutated. However, no SMAD4 mutations were found. Two tumors harbored FBXW7 tumor suppressor gene mutations. NTRK fusion tumors constitute a distinct but rare subgroup of colorectal carcinomas."	"Authors' reply to the comment &quot;Transforming growth factor beta receptor II (TGFBR2) promoter region polymorphism&quot;. NA"	"Total CD3 T Cells Are Necessary and Sufficient to Induce Colitis in Immunodeficient Mice With Dendritic Cell-Specific Deletion of TGFbR2: A Novel IBD Model to Study CD4 and CD8 T-Cell Interaction. Inflammatory bowel disease (IBD) is a multifactorial disorder, with the innate and adaptive immune cells contributing to disease initiation and progression. However, the intricate cross-talk between immune cell lineages remains incompletely understood. The role of CD8+ T cells in IBD pathogenesis has been understudied, largely due to the lack of appropriate models. We previously reported spontaneous colitis in mice with impaired TGFβ signaling due to dendritic cell-specific knockout of TGFbR2 (TGFβR2ΔDC). Here, we demonstrate that crossing TGFβR2ΔDC mice with a Rag1-/- background eliminates all symptoms of colitis and that adoptive transfer of unfractionated CD3+ splenocytes is sufficient to induce progressive colitis in Rag1-/-TGFβR2ΔDC mice. Both CD4+ and CD8+ T cells are required for the induction of colitis accompanied by activation of both T-cell lineages and DCs, increased expression of mucosal IFNγ, TNFα, IL6, IL1β, and IL12, and decreased frequencies of CD4+FoxP3+ regulatory T cells. Development of colitis required CD40L expression in CD4+ T cells, and the disease was partially ameliorated by IFNγ neutralization. This novel model provides an important tool for studying IBD pathogenesis, in particular the complex interactions among innate and adaptive immune cells in a controlled fashion, and represents a valuable tool for preclinical evaluation of novel therapeutics."	"MALAT1 is involved in the pathophysiological process of PCOS by modulating TGFβ signaling in granulosa cells. Polycystic ovary syndrome (PCOS) is an endocrine disorder, the etiology of which is complex and unclear. Metastasis-associated lung adenocarcinoma transcript 1 (MALAT1) is a conserved long non-coding RNA which has been found to play a role in the pathophysiological process of reproductive system diseases, such as endometriosis and pregnancy loss. However, the role of MALAT1 in PCOS is still unknown. In this study, reduced MALAT1 expression was found in granulosa cells (GCs) from 68 patients with PCOS and 30 healthy controls, which relates to upregulated cell proliferation and downregulated apoptosis. Using phosphorylation pathway profiling array, MALAT1 reduction was identified to contribute to the repression of transforming growth factor beta (TGFβ) signaling in GCs. Subsequently, MALAT1 was confirmed to function as a competing endogenous RNA (ceRNA), interacting with miR-125b and miR-203a. Meanwhile, miR-125b and miR-203a was identified as two novel TGFβ signaling negative regulators by targeting TGFBR1 and TGFBR2. Finally, MALAT1 knockdown was found to induce the upregulation of miR-125b and miR-203a, which further repressed TGFβ signaling, changed some downstream gene expression, and resulted in a disordered cell cycle. In conclusion, MALAT1 reduction was identified in GCs, which may contribute to the pathophysiological processes of PCOS by regulating TGFβ signaling through sponging miR-125b and miR-203a."	"KLF4 prevents epithelial to mesenchymal transition in human corneal epithelial cells via endogenous TGF-β2 suppression. Krüppel-like factor 4 (KLF4) is considered one of the Yamanaka factors, and recently, we and others have shown that KLF4 is one of the transcription factors essential for reprogramming non-human corneal epithelial cells (HCECs) into HCECs. Since epithelial to mesenchymal transition (EMT) suppression is vital for homeostasis of HCECs via regulation of transcription factors, in this study, we aimed to investigate whether KLF4 prevents EMT in HCECs and to elucidate the underlying mechanism within the canonical TGF-β signalling pathway, which is involved in corneal epithelial wound healing. HCECs were collected from cadaver donors and cultivated. We generated KLF4-knockdown (KD) HCECs using siRNA transfection and analysed morphology, gene or protein expression, and endogenous TGF-β secretion. KLF4 was overexpressed using lentiviral KLF4 expression vectors and underwent protein expression analyses after TGF-β2 treatment. KLF4-KD HCECs showed a fibroblastic morphology, downregulation of the epithelial markers, keratin 12 and keratin 14, and upregulation of the mesenchymal markers, fibronectin 1, vimentin, N-cadherin, and SLUG. Although E-cadherin expression remained unchanged in KLF4-KD HCECs, immunocytochemical analysis showed that E-cadherin-positive adherens junctions decreased in KLF4-KD HCECs as well as the decreased total protein levels of E-cadherin analysed by immunoblotting. Moreover, within the TGF-β canonical signalling pathway, TGF-β2 secretion by HCECs increased up to 5 folds, and several TGF-β-associated markers (TGFB1, TGFB2, TGFBR1, and TGFBR2) were significantly upregulated up to 6 folds in the KLF4-KD HCECs. SMAD2/3, the main signal transduction molecules of the TGF-β signalling pathway, were found to be localised in the nucleus of KLF4-KD HCECs. When KLF4 was overexpressed, cultivated HCECs showed upregulation of epithelial markers, keratin 14 and E-cadherin, indicating the contributory role of KLF4 in the homeostasis of human corneal epithelium in vivo. In addition, KLF4 overexpression in HCECs resulted in decreased SMAD2 phosphorylation and altered nuclear localisation of SMAD2/3, even after TGF-β2 treatment. These results show that KLF4 prevents EMT in HCECs and suggest a novel role of KLF4 as an endogenous TGF-β2 suppressor in the human corneal epithelium, thus highlighting the potential of KLF4 to prevent EMT and subsequent corneal fibrotic scar formation by attenuating TGF-β signalling."	"The Variant at TGFBRAP1 but Not TGFBR2 Is Associated with Antituberculosis Drug-Induced Liver Injury. TGFBRAP1 and TGFBR2 play important roles in the TGF-β/smad signalling pathway and may disturb liver homeostasis by regulating liver injury and renewal. However, little is known about the association between their genetic polymorphisms and antituberculosis drug-induced liver injury (ATDILI), so we explored the association between their variants and the susceptibility to ATDILI. A total of 746 tuberculosis patients were prospectively enrolled, and fifteen selected SNPs were genotyped. The allele, genotype, and genetic model frequencies of the variants were compared between patients with or without ATDILI, as well as the joint effect analysis of SNP-SNP interactions. The odds ratio (OR) with the corresponding 95% confidence interval (CI) was calculated. The A variant at rs17687727 was significantly associated with an increased risk for ATDILI (OR 1.55; 95% CI: 1.08-2.22; p = 0.016), which is consistent with the results in the additive and dominant models. Other allele, genotype, and genetic model frequencies were similar in the two groups for the other fourteen SNPs (all p &gt; 0.05). Our study first implied that the A variant of rs17687727 in TGFBRAP1 influenced the susceptibility to ATDILI in first-line antituberculosis combination treatment in the Han Chinese population in a dependent manner."	"Oxidative Stress and TGF-β1/Smads Signaling Are Involved in Rosa roxburghii Fruit Extract Alleviating Renal Fibrosis. Fibrosis is involved in the pathogenesis of kidney diseases. We previously discovered that Rosa roxburghii fruit (Cili) possesses antifibrosis property in chronic renal disease, but the mechanisms are unknown. We hypothesized that Cili might prevent fibrosis development through mediating TGF-β/Smads signaling, which is known to be involved in renal fibrosis. This study aimed to confirm the effects of freeze-dried Cili powder in a rat model of unilateral ureteral obstruction (UUO) and examine TGF-β/Smads signaling. Rats were randomized to (n=12/group): sham operation, UUO, UUO with losartan, UUO with moderate Cili dose (3 g/kg/d), and UUO with high Cili dose (6 g/kg/d). The rats were sacrificed after 14 days of treatment. Collagen deposition was tested using Masson's staining. TGF-β/Smads signaling was examined by qRT-PCR, western blot, and immunohistochemistry. Rats in the UUO group showed excessive deposition of collagen in kidney interstitium, accompanied with high levels of renal 8-hydroxy-2'-deoxyguanosine, renal malondialdehyde, blood urea nitrogen (BUN), serum creatinine (Scr), and proteinuria (all P&lt;0.05). Cili powder efficiently alleviated the pathological changes and oxidative stress in the kidneys of UUO rats, and decreased BUN, Scr and proteinuria (all P&lt;0.05). Cili powder also inhibited the upregulation of TGFB1, TGFBR1, TGFBR2, SMAD2, and SMAD3 and reversed the downregulation of SMAD7 in obstructed kidneys (mRNA and protein) (all P&lt;0.05). In summary, the results suggest that Cili freeze-dried powder effectively prevents renal fibrosis and impairment in UUO rats, which is associated with the inhibition of oxidative stress and TGF-β1/Smads signaling."	"Reduced matrix metalloproteinase and collagen transcription mediated by the TGF-β/Smad pathway in passaged normal human dermal fibroblasts. Transforming growth factor-β (TGF-β) is a major regulator of extracellular matrix (ECM) events, particularly collagen production. We explored whether the expression of matrix metalloproteinases (MMPs) and collagen are transcriptionally regulated by the TGF-β and Smad signaling pathways, and the roles played by NF-κB and mitogen-activated protein kinase (MAPK) signaling in normal, aged, human dermal fibroblasts. We quantified mRNA and protein expression using real-time PCR and immunoblotting of proteins from cells in passage 5-15. The levels of mRNAs encoding TGF-β1, TGF-β3, and TGF-β receptor type I (TGFβ RI) decreased with increasing passage number. The levels of mRNAs encoding TGF-β2, TGFβ RII, and TGFβ RIII increased to passage 10 but decreased by passage 15. The levels of mRNAs encoding Smad-2, -3, -4, and -7 decreased with increasing passage number. The level of mRNA encoding MMP-1 increased with increasing passage number, and the levels of mRNAs encoding MMP-2, TIMP-1, and TIMP-2 increased to passage 10 but decreased by passage 15. The levels of mRNAs encoding collagen types I and II decreased with increasing passage number. At the protein level, NF-κB, IκBα, p38, ERK, Akt, and JNK became increasingly phosphorylated at higher passage numbers. Our results suggest that reductions in the expression levels of MMPs and collagen types I and III in aging human dermal fibroblasts reflect reduced expression of TGF-β/Smad and TGF-β receptors, thus compromising the TGF-β receptor-binding capacity of fibroblasts; the NF-κB and Akt-JNK/MAPK signaling pathways may play active roles in this process."	"The regulation of the follicular synchronization and sensitivity of rats with PCOS by AMH during prolonged pituitary downregulation. The modified prolonged gonadotropin-releasing hormone agonist (GnRH-a) protocol lessens the ovarian hyperstimulation syndrome (OHSS) effect and improves the clinical pregnancy rate of women with polycystic ovary syndrome (PCOS) compared with the standard long GnRH-a protocol. However, the molecular basis of this process needs to be elucidated. Sprague Dawley (SD) female rats with letrozole-induced PCOS were divided into GnRH-a and blank groups. Rats in the GnRH-a group were given triptorelin for 11 days, whereas those in blank group were given an equal volume of 0.9% NaCl. Meanwhile, the changes in estrus cycle, hormonal profile, ovary index, ovarian histopathology and body weight were measured. The expressions of anti-mullerian hormone (AMH), type II receptor of AMH (AMHRII), and FSH receptor (FSHR) were taken as the indicators of follicular sensitivity. Changes of follicular counting and differences in antral follicle diameter at each stage were evaluated. The number of follicles from primordial to antral stages increased during downregulation and the differences in antral follicle diameter were reduced in the GnRH-a group, whereas no significant difference was found in the blank group. The results of Western blotting and ELISA indicated that the level of AMH in ovarian total protein and serum had a similar dynamic change in the GnRH-a group. The results of immunohistochemistry showed that follicular AMH, AMHRII, and FSHR significantly decreased in the GnRH-a group. Prolonged GnRH-a protocol can improve synchronization and sensitivity of follicular development by balancing the expressions of AMH, AMHRII, and FSHR among follicles at all levels, thereby achieving better therapeutic effect."	"Endoglin Trafficking/Exosomal Targeting in Liver Cells Depends on N-Glycosylation. Injury of the liver involves a wound healing partial reaction governed by hepatic stellate cells and portal fibroblasts. Individual members of the transforming growth factor-β (TGF-β) superfamily including TGF-β itself and bone morphogenetic proteins (BMP) exert diverse and partially opposing effects on pro-fibrogenic responses. Signaling by these ligands is mediated through binding to membrane integral receptors type I/type II. Binding and the outcome of signaling is critically modulated by Endoglin (Eng), a type III co-receptor. In order to learn more about trafficking of Eng in liver cells, we investigated the membranal subdomain localization of full-length (FL)-Eng. We could show that FL-Eng is enriched in Caveolin-1-containing sucrose gradient fractions. Since lipid rafts contribute to the pool of exosomes, we could consequently demonstrate for the first time that exosomes isolated from cultured primary hepatic stellate cells and its derivatives contain Eng. Moreover, via adenoviral overexpression, we demonstrate that all liver cells have the capacity to direct Eng to exosomes, irrespectively whether they express endogenous Eng or not. Finally, we demonstrate that block of N-glycosylation does not interfere with dimerization of the receptor, but abrogates the secretion of soluble Eng (sol-Eng) and prevents exosomal targeting of FL-Eng."	"Phenotypically Silent Bone Morphogenetic Protein Receptor 2 Mutations Predispose Rats to Inflammation-Induced Pulmonary Arterial Hypertension by Enhancing the Risk for Neointimal Transformation. Bmpr2 (bone morphogenetic protein receptor 2) mutations are critical risk factors for hereditary pulmonary arterial hypertension (PAH) with approximately 20% of carriers developing disease. There is an unmet medical need to understand how environmental factors, such as inflammation, render Bmpr2 mutants susceptible to PAH. Overexpressing 5-LO (5-lipoxygenase) provokes lung inflammation and transient PAH in Bmpr2<sup>+/-</sup> mice. Accordingly, 5-LO and its metabolite, leukotriene B4, are candidates for the second hit. The purpose of this study was to determine how 5-LO-mediated pulmonary inflammation synergized with phenotypically silent Bmpr2 defects to elicit significant pulmonary vascular disease in rats. Monoallelic Bmpr2 mutant rats were generated and found phenotypically normal for up to 1 year of observation. To evaluate whether a second hit would elicit disease, animals were exposed to 5-LO-expressing adenovirus, monocrotaline, SU5416, SU5416 with chronic hypoxia, or chronic hypoxia alone. Bmpr2-mutant hereditary PAH patient samples were assessed for neointimal 5-LO expression. Pulmonary artery endothelial cells with impaired BMPR2 signaling were exposed to increased 5-LO-mediated inflammation and were assessed for phenotypic and transcriptomic changes. Lung inflammation, induced by intratracheal delivery of 5-LO-expressing adenovirus, elicited severe PAH with intimal remodeling in Bmpr2<sup>+/-</sup> rats but not in their wild-type littermates. Neointimal lesions in the diseased Bmpr2<sup>+/-</sup> rats gained endogenous 5-LO expression associated with elevated leukotriene B4 biosynthesis. Bmpr2-mutant hereditary PAH patients similarly expressed 5-LO in the neointimal cells. In vitro, BMPR2 deficiency, compounded by 5-LO-mediated inflammation, generated apoptosis-resistant and proliferative pulmonary artery endothelial cells with mesenchymal characteristics. These transformed cells expressed nuclear envelope-localized 5-LO consistent with induced leukotriene B4 production, as well as a transcriptomic signature similar to clinical disease, including upregulated nuclear factor Kappa B subunit (NF-κB), interleukin-6, and transforming growth factor beta (TGF-β) signaling pathways. The reversal of PAH and vasculopathy in Bmpr2 mutants by TGF-β antagonism suggests that TGF-β is critical for neointimal transformation. In a new 2-hit model of disease, lung inflammation induced severe PAH pathology in Bmpr2<sup>+/-</sup> rats. Endothelial transformation required the activation of canonical and noncanonical TGF-β signaling pathways and was characterized by 5-LO nuclear envelope translocation with enhanced leukotriene B4 production. This study offers an explanation of how an environmental injury unleashes the destructive potential of an otherwise silent genetic mutation."	"SILAC-Based Quantification of TGFBR2-Regulated Protein Expression in Extracellular Vesicles of Microsatellite Unstable Colorectal Cancers. Microsatellite unstable (MSI) colorectal cancers (CRCs) are characterized by mutational inactivation of Transforming Growth Factor Beta Receptor Type 2 (TGFBR2). TGFBR2-deficient CRCs present altered target gene and protein expression. Such cellular alterations modulate the content of CRC-derived extracellular vesicles (EVs). EVs function as couriers of proteins, nucleic acids, and lipids in intercellular communication. At a qualitative level, we have previously shown that TGFBR2 deficiency causes overall alterations in the EV protein content. To deepen the basic understanding of altered protein dynamics, this work aimed to determine TGFBR2-dependent EV protein signatures in a quantitative manner. Using a stable isotope labeling with amino acids in cell culture (SILAC) approach for mass spectrometry-based quantification, 48 TGFBR2-regulated proteins were identified in MSI CRC-derived EVs. Overall, TGFBR2 deficiency caused upregulation of several EV proteins related to the extracellular matrix and nucleosome as well as downregulation of proteasome-associated proteins. The present study emphasizes the general overlap of proteins between EVs and their parental CRC cells but also highlights the impact of TGFBR2 deficiency on EV protein composition. From a clinical perspective, TGFBR2-regulated quantitative differences of protein expression in EVs might nominate novel biomarkers for liquid biopsy-based MSI typing in the future."	"Transforming growth factor beta receptor II (TGFBR2) promoter region polymorphism. NA"	"The Sweet Kiss Breaching Immunological Self-Tolerance. Metabolic alterations leading to overactivation of nutrient-energy-sensing pathways have been linked to altered immunological self-tolerance. Now, Zhang and colleagues (Immunity, 2019) have identified a key role for high glucose consumption in exacerbating autoimmunity in mice via induction of T helper (Th)17 cells. This reveals a novel mechanism underlying effects of diet during autoimmunity development with major translational implications."	"TGF-β1 promotes hyaluronan synthesis by upregulating hyaluronan synthase 2 expression in human granulosa-lutein cells. Hyaluronan serves as a structural component of ovarian follicles, and hyaluronan-mediated signaling cascades lead to follicular development, oocyte maturation, and ovulation. Transforming growth factor-β (TGF-β1) is highly expressed in human oocytes and granulosa cells and involved in the regulation of follicular development and ovulation. Previous studies have shown the imperative role for TGF-β signaling in the regulation of hyaluronan-mediated cumulus expansion and ovulation in human granulosa-lutein (hGL) cells. However, the detailed underlying molecular mechanisms by which TGF-β regulates the synthesis of hyaluronan in hGL cells are not fully elucidated. Using both primary and immortalized hGL cells as study models, we provide the first data showing that TGF-β1 significantly promoted the synthesis of hyaluronan by upregulating the expression of hyaluronan synthase 2 in these cells. Additionally, using dual inhibition approaches, we show that the TGF-β type II (TβRII) receptor and TGF-β type I (ALK5) receptor are functional receptors that mediate stimulatory effects in response to TGF-β1. Moreover, we found that the canonical SMAD2/SMAD3-SMAD4 signaling pathway is the principal intracellular signaling pathway that upregulates the expressionhyaluronan synthase and subsequent hyaluronan synthesis. Notably, we showed that SNAIL transcription factor is a critical molecule mediating the TGF-β signaling, which contributes to the increase in hyaluronan synthesis. These results of our in vitro studies suggest that intraovarian TGF-β1 plays a functional role in the local regulation of hyaluronan synthesis in hGL cells."	"Inherited alterations of TGF beta signaling components in Appalachian cervical cancers. This study examined targeted genomic variants of transforming growth factor beta (TGFB) signaling in Appalachian women. Appalachian women with cervical cancer were compared to healthy Appalachian counterparts to determine whether these polymorphic alleles were over-represented within this high-risk cancer population, and whether lifestyle or environmental factors modified the aggregate genetic risk in these Appalachian women. Appalachian women's survey data and blood samples from the Community Awareness, Resources, and Education (CARE) CARE I and CARE II studies (n = 163 invasive cervical cancer cases, 842 controls) were used to assess gene-environment interactions and cancer risk. Polymorphic allele frequencies and socio-behavioral demographic measurements were compared using t tests and χ<sup>2</sup> tests. Multivariable logistic regression was used to evaluate interaction effects between genomic variance and demographic, behavioral, and environmental characteristics. Several alleles demonstrated significant interaction with smoking (TP53 rs1042522, TGFB1 rs1800469), alcohol consumption (NQO1 rs1800566), and sexual intercourse before the age of 18 (TGFBR1 rs11466445, TGFBR1 rs7034462, TGFBR1 rs11568785). Interestingly, we noted a significant interaction between &quot;Appalachian self-identity&quot; variables and NQO1 rs1800566. Multivariable logistic regression of cancer status in an over-dominant TGFB1 rs1800469/TGFBR1 rs11568785 model demonstrated a 3.03-fold reduction in cervical cancer odds. Similar decreased odds (2.78-fold) were observed in an over-dominant TGFB1 rs1800469/TGFBR1 rs7034462 model in subjects who had no sexual intercourse before age 18. This study reports novel associations between common low-penetrance alleles in the TGFB signaling cascade and modified risk of cervical cancer in Appalachian women. Furthermore, our unexpected findings associating Appalachian identity and NQO1 rs1800566 suggests that the complex environmental exposures that contribute to Appalachian self-identity in Appalachian cervical cancer patients represent an emerging avenue of scientific exploration."	"Vaccine against gastrin, a polyclonal antibody stimulator, decreases pancreatic cancer metastases. Growth of pancreatic cancer is stimulated by gastrin in both a paracrine and an autocrine fashion. Traditional therapies have not significantly improved survival, and recently pancreatic cancer has been deemed a &quot;cold&quot; tumor due to its poor response to immunotherapy. Strategies to improve survival of pancreatic cancer are desperately needed. In the current investigation, we studied the effects of an anti-gastrin cancer vaccine, polyclonal antibody stimulator (PAS; formerly called G17DT and Gastrimmune), used alone or in combination with a programmed cell death receptor (PD)-1 immune checkpoint antibody on pancreatic cancer growth, metastases, and the tumor microenvironment (TME). Immune-competent female C57BL/6 mice bearing syngeneic orthotopic murine pancreatic cancer treated with PAS had significantly smaller tumors and fewer metastases. Examination of the TME demonstrated decreased fibrosis with fewer M2 and more M1 tumor-associated macrophages. Expression of the E-cadherin gene was significantly increased and expression of the TGFβR2 gene was decreased compared with controls. Mice treated with PAS or the combination of PAS and PD-1 antibody exhibited significantly less tumor expression of phospho-paxillin, the focal adhesion protein β-catenin, and matrix metalloproteinase-7. This study suggests that inhibition of the cancer-promoting effects of gastrin in pancreatic cancer can decrease metastases by altering the TME and decreasing pathways that activate the epithelial mesenchymal transition. The PAS vaccine appears to change the TME, making it more susceptible to therapy with an immune checkpoint antibody. This novel combination of two immunotherapies may improve survival of pancreatic cancer by decreasing both tumor growth and metastasis formation.NEW &amp; NOTEWORTHY Survival from advanced pancreatic cancer is poor, in part due to dense fibrosis of the tumor microenvironment, increased number of M2-polarized macrophages that promote angiogenesis and invasion, and lack of &quot;target-specific&quot; therapy. Herein, we report that a tumor vaccine that selectively targets gastrin decreases pancreatic cancer growth and metastases. Furthermore, the gastrin vaccine polyclonal antibody stimulator alters the tumor microenvironment rendering it more responsive to immunotherapy with a programmed cell death receptor-1 immune checkpoint antibody."	"TGFBR2‑dependent alterations of microRNA profiles in extracellular vesicles and parental colorectal cancer cells. In colorectal cancer (CRC) with microsatellite instability (MSI), &gt;90% of cases are affected by inactivating frameshift mutations of transforming growth factor β receptor type 2 (TGFBR2). TGFBR2 deficiency is considered to drive MSI tumor progression by abrogating downstream TGF‑β signaling. This pathway can alter the expression of coding and non‑coding RNAs, including microRNAs (miRNAs), which are also present in extracellular vesicles (EVs) as post‑transcriptional modulators of gene expression. In our previous study, it was shown that TGFBR2 deficiency alters the protein composition and function of EVs in MSI tumors. To investigate whether mutant TGFBR2 may also affect the miRNA cargo of EVs, the present study characterized miRNAs in EVs and their parental MSI tumor cells that differed only in TGFBR2 expression status. The HCT116‑TGFBR2 MSI cell line model enables the doxycycline (dox)‑inducible reconstituted expression of TGFBR2 in an isogenic background (‑dox, TGFBR2 deficient; +dox, TGFBR2 proficient). Small RNA sequencing of cellular and EV miRNAs showed that the majority of the miRNAs (263/471; 56%) were shared between MSI tumor cells and their EVs. Exploratory data analysis revealed the TGBFR2‑dependent cluster separation of miRNA profiles in EVs and MSI tumor cells. This segregation appeared to result from two subsets of miRNAs, the expression of which were regulated in a TGFBR2‑dependent manner (EVs: n=10; MSI cells: n=15). In the EV subset, 7/10 miRNAs were downregulated and 3/10 were upregulated by TGFBR2 deficiency. In the cellular subset, 13/15 miRNAs were downregulated and 2/15 miRNAs were upregulated in the TGFBR2‑deficient cells. The present study emphasizes the general overlap of miRNA profiles in MSI tumor cells and their EVs, but also highlights the impact of a single tumor driver mutation on the expression of individual miRNAs, as exemplified by the downregulation of miR‑381‑3p in TGFBR2‑deficient MSI tumor cells and their secreted EVs."	"Role of soluble endoglin in BMP9 signaling. Endoglin (ENG) is a coreceptor of the transforming growth factor-β (TGFβ) family signaling complex, which is highly expressed on endothelial cells and plays a key role in angiogenesis. Its extracellular domain can be cleaved and released into the circulation as soluble ENG (sENG). High circulating levels of sENG contribute to the pathogenesis of preeclampsia (PE). Circulating bone morphogenetic protein 9 (BMP9), a vascular quiescence and endothelial-protective factor, binds sENG with high affinity, but how sENG participates in BMP9 signaling complexes is not fully resolved. sENG was thought to be a ligand trap for BMP9, preventing type II receptor binding and BMP9 signaling. Here we show that, despite cell-surface ENG being a dimer linked by disulfide bonds, sENG purified from human placenta and plasma from PE patients is primarily in a monomeric form. Incubating monomeric sENG with the circulating form of BMP9 (prodomain-bound form) in solution leads to the release of the prodomain and formation of a sENG:BMP9 complex. Furthermore, we demonstrate that binding of sENG to BMP9 does not inhibit BMP9 signaling. Indeed, the sENG:BMP9 complex signals with comparable potency and specificity to BMP9 on human primary endothelial cells. The full signaling activity of the sENG:BMP9 complex required transmembrane ENG. This study confirms that rather than being an inhibitory ligand trap, increased circulating sENG might preferentially direct BMP9 signaling via cell-surface ENG at the endothelium. This is important for understanding the role of sENG in the pathobiology of PE and other cardiovascular diseases."	"Digitoxin Inhibits Epithelial-to-Mesenchymal-Transition in Hereditary Castration Resistant Prostate Cancer. Castration Resistant Prostate Cancer (CRPC) is thought to be driven by a collaborative mechanism between TNFα/NFκB and TGFβ signaling, leading to inflammation, Epithelial-to-Mesenchymal-Transition (EMT), and metastasis. Initially, TGFβ is a tumor suppressor, but in advanced metastatic disease it switches to being a tumor promoter. TGFBR2 may play a critical role in this collaboration, as its expression is driven by NFκB and it is the primary receptor for TGFβ. We have previously reported that the cardenolide drug digitoxin blocks TNFα/NFκB-driven proinflammatory signaling. We therefore hypothesized that digitoxin might break the collaborative process between NFκB and TGFβ by also inhibiting expression of TGFBR2. We therefore tested whether TGFβ-driven EMT and resulting metastases would be suppressed. Here we show, in vitro, that digitoxin inhibits NFκB-driven TGFBR2 expression, as well as Vimentin, while elevating E-cadherin expression. Digitoxin also significantly reduces HSPB1 mRNA and the HSPB1/RBFOX2 mRNA ratio in PC3 cells. In vivo, in a syngeneic, immune competent rat model of metastatic CRPC, we show that digitoxin also suppresses Tgfbr2 expression, as well as expression of other genes classically driven by NFκB, and of multiple EMT genes associated with metastasis. Concurrently, digitoxin suppresses tumor growth and metastasis in these animals, and prolongs survival. Gross tumor recurrence following tumor resection also appears prevented in ca 30% of cases. While the existence of a collaboration between NFκB and TGFβ to drive EMT and metastasis has previously been appreciated, we show here, for the first time, that chronic, low concentrations of digitoxin are able to block CRPC tumor progression, EMT and the ensuing metastatic disease."	"VEGF-C induced by TGF- β1 signaling in gastric cancer enhances tumor-induced lymphangiogenesis. The role of TGF-β1 in lymph node metastasis and lymphangiogenesis, one of the most important steps of gastric cancer dissemination, is largely unknown. The goal of this study was to investigate the role of TGF-β1 signaling and its molecular mechanisms involved in lymphangiogenesis of gastric cancer. Two gastric cell line models, MKN45 and KATOIII, were selected for this study. The protein expression of TGF-β1 pathway molecules and VEGF-C were examined with western blot, or ELISA according to TGF-β1 treatment. To explore whether Smad3 binds to the specific DNA sequences in the VEGFC promoter, we performed an electrophoretic mobility shift assay. Lymphatic tube forming assay and gastric cancer xenograft mouse models were also used to elucidate the effect of TGF-β1 on lymphangiogenesis. TGF-β1 induced the activation of Smad2/3 and Smad pathway-modulated VEGF-C expression in gastric cancer cell line models. Phosphorylated and activated Smad3 in the nucleus bound to the promoter of VEGFC in KATO III cells. Of note, in MKN45 cells, the Smad-independent AKT pathway was also activated in response to TGF-β1 and induced VEGF-C expression. Inhibition of TGF-β1 signaling down-regulated the expression of VEGF-C. We also confirmed, through tube forming assay and tumor xenograft mouse model, that TGF-β1 increased lymphatic formation, while TGF-β1 inhibition blocked lymphangiogenesis. Smad-dependent and -independent TGF-β1 pathways induce VEGF-C, which make lymphangiogenesis around tumor. These findings suggest that TGF-β might be a potential therapeutic target for preventing gastric cancer progression and dissemination."	"Angiotensin II receptor blocker losartan exacerbates muscle damage and exhibits weak blood pressure-lowering activity in a dysferlin-null model of Limb-Girdle muscular dystrophy type 2B. There is no cure or beneficial management option for Limb-Girdle muscular dystrophy (MD) type 2B (LGMD2B). Losartan, a blood pressure (BP) lowering angiotensin II (AngII) receptor type 1 (ATR1) blocker (ARB) with unique anti-transforming growth factor-β (TGF-β) properties, can protect muscles in various types of MD such as Duchenne MD, suggesting a potential benefit for LGMD2B patients. Herein, we show in a mild, dysferlin-null mouse model of LGMD2B that losartan increased quadriceps muscle fibrosis (142%; P&lt;0.0001). In a severe, atherogenic diet-fed model of LGMD2B recently described by our group, losartan further exacerbated dysferlin-null mouse muscle wasting in quadriceps and triceps brachii, two muscles typically affected by LGMD2B, by 40% and 51%, respectively (P&lt;0.05). Lower TGF-β signalling was not observed with losartan, therefore plasma levels of atherogenic lipids known to aggravate LGMD2B severity were investigated. We report that losartan increased both plasma triglycerides and cholesterol concentrations in dysferlin-null mice. Other protective properties of losartan, such as increased nitric oxide release and BP lowering, were also reduced in the absence of dysferlin expression. Our data suggest that LGMD2B patients may show some resistance to the primary BP-lowering effects of losartan along with accelerated muscle wasting and dyslipidemia. Hence, we urge caution on the use of ARBs in this population as their ATR1 pathway may be dysfunctional."	"Overactivity or blockade of transforming growth factor-β each generate a specific ureter malformation. Transforming growth factor-β (TGFβ) has been reported to be dysregulated in malformed ureters. There exists, however, little information on whether altered TGFβ levels actually perturb ureter development. We therefore hypothesised that TGFβ has functional effects on ureter morphogenesis. Tgfb1, Tgfb2 and Tgfb3 transcripts coding for TGFβ ligands, as well as Tgfbr1 and Tgfbr2 coding for TGFβ receptors, were detected by quantitative polymerase chain reaction in embryonic mouse ureters collected over a wide range of stages. As assessed by in situ hybridisation and immunohistochemistry, the two receptors were detected in embryonic urothelia. Next, TGFβ1 was added to serum-free cultures of embryonic day 15 mouse ureters. These organs contain immature smooth muscle and urothelial layers and their in vivo potential to grow and acquire peristaltic function can be replicated in serum-free organ culture. Such organs therefore constitute a suitable developmental stage with which to define roles of factors that affect ureter growth and functional differentiation. Exogenous TGFβ1 inhibited growth of the ureter tube and generated cocoon-like dysmorphogenesis. RNA sequencing suggested that altered levels of transcripts encoding certain fibroblast growth factors (FGFs) followed exposure to TGFβ. In serum-free organ culture exogenous FGF10 but not FGF18 abrogated certain dysmorphic effects mediated by exogenous TGFβ1. To assess whether an endogenous TGFβ axis functions in developing ureters, embryonic day 15 explants were exposed to TGFβ receptor chemical blockade; growth of the ureter was enhanced, and aberrant bud-like structures arose from the urothelial tube. The muscle layer was attenuated around these buds, and peristalsis was compromised. To determine whether TGFβ effects were limited to one stage, explants of mouse embryonic day 13 ureters, more primitive organs, were exposed to exogenous TGFβ1, again generating cocoon-like structures, and to TGFβ receptor blockade, again generating ectopic buds. As for the mouse studies, immunostaining of normal embryonic human ureters detected TGFβRI and TGFβRII in urothelia. Collectively, these observations reveal unsuspected regulatory roles for endogenous TGFβ in embryonic ureters, fine-tuning morphogenesis and functional differentiation. Our results also support the hypothesis that the TGFβ up-regulation reported in ureter malformations impacts on pathobiology. Further experiments are needed to unravel the intracellular signalling mechanisms involved in these dysmorphic responses. © 2019 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Transforming growth factor beta 1 signaling is altered in the spinal cord and muscle of amyotrophic lateral sclerosis mice and patients. Gender differences characterize amyotrophic lateral sclerosis (ALS). Because ALS patients have increased circulating levels of transforming growth factor beta 1 (TGFB1), here we analyzed gender and disease progression-related modification of TGFB1 and its related signaling molecules in the spinal cord and skeletal muscle of ALS mice and in muscle biopsies from sporadic ALS patients. At presymptomatic stage, Tgfb1 mRNA expression is reduced in the mouse spinal cord but is increased selectively in the male skeletal muscle. At symptomatic stage, it is induced both in the mouse spinal cord and muscle, as well as in the muscle of ALS patients. Tgfbr2 levels are induced only in the mouse spinal cord. Smad2 and Smad4 mRNAs are decreased in the mouse spinal cord and muscle, but SMAD2 protein levels are augmented selectively in the male mouse muscle. Smad3 mRNA and SMAD3 protein are increased in the mouse muscle. The expression of genes controlled by TGFB1 in the muscle (Pax7, Collagen1a1, and Fibronectin) are reduced both in male and female ALS mice at symptomatic stage. Thus, TGFB1 modulation may serve as a novel therapeutic target for ALS."	"Long-Term Intake of Glucoraphanin-Enriched Kale Suppresses Skin Aging via Activating Nrf2 and the TβRII/Smad Pathway in SAMP1 Mice. Sulforaphane, a potent antioxidant compound, is unstable at ambient temperature, whereas its precursor glucoraphanin is stable and metabolized to sulforaphane. Thus, we hypothesized that glucoraphanin-rich diet could effectively induce antioxidant enzyme activities and investigated the protective effects of long-term intake of a glucoraphanin-enriched kale (GEK) diet on skin aging in senescence-accelerated mouse prone 1 (SAMP1) mice. The senescence grading score was significantly lower after treatment with GEK for 39 weeks than that of the control mice. GEK also suppressed the thinning of the dorsal skin layer. Moreover, the GEK treatment enhanced the collagen production and increased the nuclear translocation of Nrf2 and HO-1 expression level in the skin tissue. TβRII and Smad3 expressions were clearly higher in the GEK-treated group than in the control group. Thus, GEK suppressed senescence in SAMP1 mice by enhancing the antioxidant activity and collagen production via the TβRII/Smad3 pathway, suggesting its practical applications for protection against skin aging."	"The involvement of lipid raft pathway in suppression of TGFβ-mediated metastasis by tolfenamic acid in hepatocellular carcinoma cells. TGFβ signaling plays an important role in orchestrating a favorable microenvironment for tumor cell growth and promoting epithelial-mesenchymal transition. As a conventional nonsteroidal anti-inflammation drugs, tolfenamic acid (TA) has been previously reported to exhibit anti-cancer activity. Herein, we investigated the effect of TA on TGFβ-mediated pro-metastatic activity and the underlying mechanisms in hepatocellular carcinoma (HCC). As a result, TA suppresses TGFβ-induced migration and glycolysis in HCC cells, which is accompanied with reduced Smad phosphorylation and subsequent nuclear transcription activity. Mechanistically, TA promotes lipid raft-caveolar internalization pathway of TGFβ receptor, therefore leading to its rapid turnover. Consistently, TA inhibits constitutively active TGFβ type I receptor induced Smad phosphorylation and EMT markers, whereas ectopic expression of TGFβ type II receptor could partially rescue TGFβ-mediated Smad2 phosphorylation and downstream genes expression in the presence of TA. Furthermore, TA inhibited HCC cells invasion in nude mice, associated with the alteration of characteristics related with EMT and glycolysis of cancer cells. Our study suggests TA could activate lipid raft pathway and modulate TGFβ mediated metastasis, implicating the potential application of TA as a modulator of tumor microenvironment in HCC."	"Identification of Inflammatory Mediators in Tendinopathy Using a Murine Subacromial Impingement Model. Subacromial impingement is associated with a spectrum of disorders-including rotator cuff disease-but their relationship is complex. We have established a novel murine model of subacromial impingement to study supraspinatus tendinopathy. The purpose of this study was to evaluate changes in gene expression in this murine shoulder impingement model to further elucidate the mechanisms underlying the development of tendinopathy. Twenty-eight C57BL/6 mice were used in this study. All mice underwent bilateral surgery with insertion of a small metal clip in the subacromial space or a sham procedure. The supraspinatus tendons underwent histological analyses, biomechanical testing, and RNA extraction for multiplex gene expression analysis (NanoString, Seattle, WA). Histology demonstrated increased cellularity and disorganized collagen fibers of the supraspinatus tendon in the clip impingement group. Mean load to failure (5.20 vs. 1.50 N, p &lt; 0.001) and mean stiffness (4.95 vs. 1.47 N/mm, p &lt; 0.001) were lower in the impingement group than the sham group. NanoString analyses revealed 111 differentially expressed genes (DEGs) between the impingement and sham groups. DEGs of interest included Mmp3 (expression ratio [ER]: 2.68, p = 0.002), Tgfb1 (ER: 1.76, p = 0.01), Col3a1 (ER: 1.66, p = 0.03), and Tgfbr2 (ER: 1.53, p = 0.01). Statement of clinical significance: We identified 111 DEGs that may contribute to the development of tendinopathy in this model. Further studies of these specific genes will allow identification of their roles in the initiation and regulation of tendon damage, and their potential to serve as novel therapeutic targets in the treatment of rotator cuff disease. © 2019 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 37:2575-2582, 2019."	"The alpha and ßeta in phase II trials hepatocellular carcinoma - A tale of more than radiological response? NA"	"Transforming growth factor beta receptor II (TGFBR2) promoter region polymorphism in Brazilian breast cancer patients: association with susceptibility, clinicopathological features, and interaction with TGFB1 haplotypes. Transforming growth factor beta (TGFβ) has paradoxical effects in breast cancer (BC), inhibiting initial tumors while promoting aggressive ones. A polymorphism on TGFBR2 promoter region (G-875A, rs3087465) increases TGFβ type II receptor expression and is protective against cancer. Previously, we have shown that TGFB1 variants have subtype-specific roles in BC. This work sought to investigate the association between TGFBR2 and susceptibility and clinicopathological features in BC subgroups. TGFBR2 G-875A was analyzed through PCR-RFLP in 388 BC patients and 405 neoplasia-free women. Case-control analyses as well as interaction with TGFB1 haplotypes previously associated with BC were tested through age-adjusted logistic regression. Correlations between G-875A and clinicopathological parameters were assessed through Kendall's Tau-b test. All statistical tests were two-tailed (α = 0.05). TGFBR2 G-875A was protective against BC in additive, genotypic, and dominant models. In subgroup-stratified analyses, these effects were greater in hormonal receptor-positive and luminal-A tumors, but were not significant in other subgroups. Logistic models including TGFB1 variants showed that in luminal-A tumors, G-875A retained its significance while TGFB1 haplotype showed a trend towards significance; otherwise, in HER2<sup>+</sup> tumors TGFB1 variants remained significant while TGFBR2 showed a trend for association. There was no interaction between these genes. In correlation analyses, G-875A positively correlated with histopathological grade in total sample, and a trend towards significance was observed in triple-negative BCs. These results indicate that G-875A is a protective factor against BC, especially from luminal-A subtype, but may promote anaplasia in established tumors, consistent with TGFβ signaling roles in BC."	"ECM1 Prevents Activation of Transforming Growth Factor β, Hepatic Stellate Cells, and Fibrogenesis in Mice. Activation of TGFB (transforming growth factor β) promotes liver fibrosis by activating hepatic stellate cells (HSCs), but the mechanisms of TGFB activation are not clear. We investigated the role of ECM1 (extracellular matrix protein 1), which interacts with extracellular and structural proteins, in TGFB activation in mouse livers. We performed studies with C57BL/6J mice (controls), ECM1-knockout (ECM1-KO) mice, and mice with hepatocyte-specific knockout of EMC1 (ECM1<sup>Δhep</sup>). ECM1 or soluble TGFBR2 (TGFB receptor 2) were expressed in livers of mice after injection of an adeno-associated virus vector. Liver fibrosis was induced by carbon tetrachloride (CCl4) administration. Livers were collected from mice and analyzed by histology, immunohistochemistry, in situ hybridization, and immunofluorescence analyses. Hepatocytes and HSCs were isolated from livers of mice and incubated with ECM1; production of cytokines and activation of reporter genes were quantified. Liver tissues from patients with viral or alcohol-induced hepatitis (with different stages of fibrosis) and individuals with healthy livers were analyzed by immunohistochemistry and in situ hybridization. ECM1-KO mice spontaneously developed liver fibrosis and died by 2 months of age without significant hepatocyte damage or inflammation. In liver tissues of mice, we found that ECM1 stabilized extracellular matrix-deposited TGFB in its inactive form by interacting with αv integrins to prevent activation of HSCs. In liver tissues from patients and in mice with CCl4-induced liver fibrosis, we found an inverse correlation between level of ECM1 and severity of fibrosis. CCl4-induced liver fibrosis was accelerated in ECM1<sup>Δhep</sup> mice compared with control mice. Hepatocytes produced the highest levels of ECM1 in livers of mice. Ectopic expression of ECM1 or soluble TGFBR2 in liver prevented fibrogenesis in ECM1-KO mice and prolonged their survival. Ectopic expression of ECM1 in liver also reduced the severity of CCl4-induced fibrosis in mice. ECM1, produced by hepatocytes, inhibits activation of TGFB and its activation of HSCs to prevent fibrogenesis in mouse liver. Strategies to increase levels of ECM1 in liver might be developed for treatment of fibrosis."	"ssc-miR-204 regulates porcine preadipocyte differentiation and apoptosis by targeting TGFBR1 and TGFBR2. MicroRNAs (miRNAs) take part in a variety of biological processes by regulating target genes. Transforming growth factor β receptor 1 (TGFBR1) and TGFBR2 are crucial members of the TGF-β family and are serine/threonine kinase receptors. The aim of this study was to explore the functions of ssc-miR-204 in porcine preadipocyte differentiation and apoptosis with regard to the TGFβ/Smad pathway. We identified miRNAs predicted to target TGFBR1 and TGFBR2 using a database and selected ssc-miR-204 as a candidate miRNA. ssc-miR-204 overexpression dramatically reduced the levels of TGFBR1 and TGFBR2. However, after transfection with ssc-miR-204 inhibitor, TGFBR1 and TGFBR2 levels were dramatically increased. ssc-miR-204 overexpression dramatically promoted porcine preadipocyte differentiation and apoptosis. After transfection with ssc-miR-204 inhibitor, porcine preadipocyte differentiation and apoptosis were dramatically inhibited. After transfection with ssc-miR-204 mimics, Smad2, Smad3, Smad4, p-Smad2, and p-Smad3 protein levels significantly decreased, and adipogenesis was regulated by inhibiting the TGF-β/Smad3 signaling pathway. Taken together, these results verified that ssc-miR-204 regulates porcine preadipocyte differentiation and apoptosis by targeting TGFBR1 and TGFBR2."	"Skin fibroblasts of patients with geleophysic dysplasia due to FBN1 mutations have lysosomal inclusions and losartan improves their microfibril deposition defect. Geleophysic dysplasia (GPHYSD) is a disorder characterized by dysmorphic features, stiff joints and cardiac involvement due to defects of TGF-β signaling. GPHYSD can be caused by mutations in FBN1, ADAMTLS2, and LTBP3 genes. Consistent with previous reports, we found intracellular inclusions of unknown material by electron microscopy (EM) in skin fibroblasts of two GPHYSD individuals carrying FBN1 mutations. Moreover, we found that the storage material is enclosed within lysosomes and is associated with the upregulation of several lysosomal genes. Treatment of GPHYSD fibroblasts carrying FBN1 mutations with the angiotensin II receptor type 1 inhibitor losartan that inhibits TGF-β signaling did not reduce the storage but improved the extracellular deposition of fibrillin-1 microfibrils. Losartan is a promising candidate drug for treatment of GPHYSD due to FBN1 defects."	"Quantitative proteomics reveals TMOD1-related proteins associated with water balance regulation. The distal tubule and collecting duct in kidney regulate water homeostasis. TMOD1 is an actin capping protein that plays an important role in controlling the organization of actin filaments. In this study, we found TMOD1 was specifically expressed in distal tubules and collecting ducts. To investigate the role of TMOD1, we created Tmod1flox/flox mice and bred them with Ksp-Cre mice to generate tubule-specific Tmod1 knockout mice, Tmod1flox/flox/Ksp-Cre+ (designated as TFK). As compared with control mice, TFK mice showed oliguria, hyperosmolality urine, and high blood pressure. To determine the mechanisms underlying this phenotype, we performed label-free quantitative proteomics on kidneys of TFK and control mice. Total of 83 proteins were found differentially expressed. Bioinformatic analysis indicated that biological processes, including protein phosphorylation and metabolic process, were involved in TMOD1 regulatory network. Gene set enrichment analysis showed that multiple pathways, such as phosphatidylinositol signaling system and GnRH signaling pathway, were strongly associated with Tmod1 knockout. Western blot validated the down-regulation of three proteins, TGFBR2, SLC25A11, and MTFP1, in kidneys of TFK mice. Our study provides valuable information on the molecular functions and the regulatory network of Tmod1 gene in kidney, as well as the new mechanisms for the regulation of water balance."	"Transforming growth factor-β is involved in maintaining oocyte meiotic arrest by promoting natriuretic peptide type C expression in mouse granulosa cells. Natriuretic peptide type C (NPPC) secreted by mural granulosa cells (MGCs) maintains oocyte meiotic arrest via the activation of guanylyl cyclase-linked natriuretic peptide receptor 2 (NPR2). Here, we investigated the effect of transforming growth factor (TGF)-β on NPPC expression in MGCs and oocyte maturation. TGF-β ligands (TGFB1 and TGFB3, but not TGFB2) and receptors (TGFBR1 and TGFBR2) were predominantly expressed in MGCs. The activation of the follicle-stimulating hormone (FSH) receptor by FSH/equine chorionic gonadotropin (eCG) increased the levels of TGFB1, TGFBR2, and TGF-β downstream SMAD proteins in MGCs, which were decreased following the activation of the luteinizing hormone (LH) receptor by human chorionic gonadotropin (hCG). TGF-β significantly increased the gene and protein levels of NPPC in cultured MGCs through SMAD3 binding to Nppc promoter regions. In the presence of FSH, TGF-β further increased NPPC levels and inhibited oocyte meiotic resumption of cumulus-oocyte complexes (COCs). Moreover, Tgfbr2-specific depletion in granulosa cells using Fshr-Cre mice reduced NPPC mRNA and protein levels, resulting in the weak maintenance of oocyte meiotic arrest within large antral follicles. Tgfbr2 depletion also impaired follicle development, ovulation, and female fertility. Taken together, TGF-β-promoted NPPC in MGCs is involved in maintaining oocyte meiotic arrest. FSH and LH could regulate NPPC levels in MGCs via TGF-β and then control the process of oocyte meiosis."	"Targeted sequencing of cancer-related genes in nasopharyngeal carcinoma identifies mutations in the TGF-β pathway. Approximately, 25% of nasopharyngeal carcinoma (NPC) patients develop recurrent disease. NPC may involve relatively few genomic alterations compared to other cancers due to its association with Epstein-Barr virus (EBV). We envisioned that in-depth sequencing of tumor tissues might provide new insights into the genetic alterations of this cancer. Thirty-three NPC paired tumor/adjacent normal or peripheral blood mononuclear cell samples were deep-sequenced (&gt;1000×) with respect to a panel of 409 cancer-related genes. Newly identified mutations and its correlation with clinical outcomes were evaluated. Profiling of somatic mutations and copy number variations (CNV) in NPC tumors identified alterations in RTK/RAS/PI3K, NOTCH, DNA repair, chromatin remodeling, cell cycle, NF-κB, and TGF-β pathways. In addition, patients harbored CNV among 409 cancer-related genes and missense mutations in TGF-β/SMAD signaling were associated with poor overall survival and poor recurrence-free survival, respectively. The CNV events were correlated with plasma EBV copies, while mutations in TGFBR2 and SMAD4 abrogate SMAD-dependent TGF-β signaling. Functional analysis revealed that the new TGFBR2 kinase domain mutants were incapable of transducing the signal, leading to failure of phosphorylation of SMAD2/3 and activation of downstream TGF-β-mediated cell growth arrest. This study provides evidence supporting CNV and dysregulated TGF-β signaling contributes to exacerbating the NPC pathogenesis."	"Structural characterization of an activin class ternary receptor complex reveals a third paradigm for receptor specificity. TGFβ family ligands, which include the TGFβs, BMPs, and activins, signal by forming a ternary complex with type I and type II receptors. For TGFβs and BMPs, structures of ternary complexes have revealed differences in receptor assembly. However, structural information for how activins assemble a ternary receptor complex is lacking. We report the structure of an activin class member, GDF11, in complex with the type II receptor ActRIIB and the type I receptor Alk5. The structure reveals that receptor positioning is similar to the BMP class, with no interreceptor contacts; however, the type I receptor interactions are shifted toward the ligand fingertips and away from the dimer interface. Mutational analysis shows that ligand type I specificity is derived from differences in the fingertips of the ligands that interact with an extended loop specific to Alk4 and Alk5. The study also reveals differences for how TGFβ and GDF11 bind to the same type I receptor, Alk5. For GDF11, additional contacts at the fingertip region substitute for the interreceptor interactions that are seen for TGFβ, indicating that Alk5 binding to GDF11 is more dependent on direct contacts. In support, we show that a single residue of Alk5 (Phe<sup>84</sup>), when mutated, abolishes GDF11 signaling, but has little impact on TGFβ signaling. The structure of GDF11/ActRIIB/Alk5 shows that, across the TGFβ family, different mechanisms regulate type I receptor binding and specificity, providing a molecular explanation for how the activin class accommodates low-affinity type I interactions without the requirement of cooperative receptor interactions."	"DNA Damage Activates TGF-β Signaling via ATM-c-Cbl-Mediated Stabilization of the Type II Receptor TβRII. Activation of both the DNA damage response (DDR) and transforming growth factor β (TGF-β) signaling induces growth arrest of most cell types. However, it is unclear whether the DDR activates TGF-β signaling that in turn contributes to cell growth arrest. Here, we show that in response to DNA damage, ataxia telangiectasia mutated (ATM) stabilizes the TGF-β type II receptor (TβRII) and thus enhancement of TGF-β signaling. Mechanistically, ATM phosphorylates and stabilizes c-Cbl, which promotes TβRII neddylation and prevents its ubiquitination-dependent degradation. Consistently, DNA damage enhances the interaction among ATM, c-Cbl, and TβRII. The ATM-c-Cbl-TβRII axis plays a pivotal role in intestinal regeneration after X-ray-induced DNA damage in mouse models. Therefore, ATM not only mediates the canonical DDR pathway but also activates TGF-β signaling by stabilizing TβRII. The double brake system ensures full cell-cycle arrest, allowing efficient DNA damage repair and avoiding passage of the damaged genome to the daughter cells."	"Comprehensive analysis of long noncoding RNAs and mRNAs expression profiles and functional networks during chondrogenic differentiation of murine ATDC5 cells. Chondrogenic differentiation is a coordinated biological process orchestrated by various cell signaling pathways, involving complex pathways regulated at both transcriptional and post-transcriptional levels. Long noncoding RNAs (lncRNAs) are emerging as important regulators in the modulation of multiple cell processes. However, the potential roles of lncRNAs and their regulatory mechanisms in chondrogenic differentiation remain largely unclear. In this study, microarray was performed to detect the expression profiles of lncRNAs and messenger RNAs (mRNAs) during chondrogenic differentiation of murine chondrogenic cell line ATDC5. Gene ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis were performed to explore their functions. Coding-noncoding co-expression (CNC) and competing endogenous RNA (ceRNA) networks were also constructed with bioinformatics methods. The results revealed that 1009 lncRNAs and 1206 mRNAs were differentially regulated during chondrogenic differentiation. GO and KEGG pathway analysis indicated that the principal functions of the transcripts were associated with system development and extracellular matrix-receptor interaction, TGF-β signaling, and PI3K-Akt signaling pathways. The CNC network showed that lncRNA AK136902 was positively correlated with prostaglandin F receptor (FP). The ceRNA network covered 3 lncRNAs, 121 miRNAs and 241 edges. The upregulated lncRNA AK136902, AK016344, and ENSMUST00000180767 might promote chondrogenic differentiation by acting as ceRNAs. Knockdown of lncRNA AK136902 could inhibit the mRNA expression of FP and other chondrogenic related genes, including Aggrecan and Col2a1 during chondrogenic differentiation. Our results provide a new perspective on the modulation of lncRNAs during chondrogenic differentiation."	"The TGFβ type I receptor TGFβRI functions as an inhibitor of BMP signaling in cartilage. The type I TGFβ receptor TGFβRI (encoded by Tgfbr1) was ablated in cartilage. The resulting Tgfbr1<sup> Col2 </sup> mice exhibited lethal chondrodysplasia. Similar defects were not seen in mice lacking the type II TGFβ receptor or SMADs 2 and 3, the intracellular mediators of canonical TGFβ signaling. However, we detected elevated BMP activity in Tgfbr1<sup> Col2 </sup> mice. As previous studies showed that TGFβRI can physically interact with ACVRL1, a type I BMP receptor, we generated cartilage-specific Acvrl1 (Acvrl1<sup> Col2 </sup> ) and Acvrl1/Tgfbr1 (Acvrl1/Tgfbr1<sup> Col2 </sup>) knockouts. Loss of ACVRL1 alone had no effect, but Acvrl1/Tgfbr1<sup> Col2 </sup> mice exhibited a striking reversal of the chondrodysplasia seen in Tgfbr1<sup> Col2 </sup> mice. Loss of TGFβRI led to a redistribution of the type II receptor ACTRIIB into ACVRL1/ACTRIIB complexes, which have high affinity for BMP9. Although BMP9 is not produced in cartilage, we detected BMP9 in the growth plate, most likely derived from the circulation. These findings demonstrate that the major function of TGFβRI in cartilage is not to transduce TGFβ signaling, but rather to antagonize BMP signaling mediated by ACVRL1."	"Cyclophilin A contributes to aortopathy induced by postnatal loss of smooth muscle TGFBR1. Recent recognition that TGF-β signaling disruption is involved in the development of aortic aneurysms has led to renewed investigations into the role of TGF-β biology in the aortic wall. We previously found that the type I receptor of TGF-β (TGFBR2) receptor contributes to formation of ascending aortic aneurysms and dissections (AADs) induced by smooth muscle cell (SMC)-specific, postnatal deletion of Tgfbr1 (Tgfbr1<sup>iko</sup>). Here, we aimed to decipher the mechanistic signaling pathway underlying the pathogenic effects of TGFBR2 in this context. Gene expression profiling demonstrated that Tgfbr1<sup>iko</sup> triggers an acute inflammatory response in developing AADs, and Tgfbr1<sup>iko</sup> SMCs express an inflammatory phenotype in culture. Comparative proteomics profiling and mass spectrometry revealed that Tgfbr1<sup>iko</sup> SMCs respond to TGF-β1 stimulation via robust up-regulation of cyclophilin A (CypA). This up-regulation is abrogated by inhibition of TGFBR2 kinase activity, small interfering RNA silencing of Tgfbr2 expression, or inhibition of SMAD3 activation. In mice, Tgfbr1<sup>iko</sup> rapidly promotes CypA production in SMCs of developing AADs, whereas treatment with a CypA inhibitor attenuates aortic dilation by 56% (P = 0.003) and ameliorates aneurysmal degeneration (P = 0.016). These protective effects are associated with reduced aneurysm-promoting inflammation. Collectively, these results suggest a novel mechanism, wherein loss of type I receptor of TGF-β triggers promiscuous, proinflammatory TGFBR2 signaling in SMCs, thereby promoting AAD formation.-Zhou, G., Liao, M., Wang, F., Qi, X., Yang, P., Berceli, S. A., Sharma, A. K., Upchurch, G. R., Jr., Jiang, Z. Cyclophilin A contributes to aortopathy induced by postnatal loss of smooth muscle TGFBR1."	"AMH and AMHR2 mutations: A spectrum of reproductive phenotypes across vertebrate species. Anti-Müllerian hormone (AMH) is a member of the Transforming Growth Factor-β family of secreted signaling proteins. AMH is expressed in Sertoli cells of the fetal and adult testes and granulosa cells of the postnatal ovary. AMH is required for the regression of the Müllerian ducts in mammalian fetuses during male differentiation. AMH signals through its Type II receptor, AMHR2. AMHR2 is expressed in mesenchyme adjacent to the Müllerian ducts, and in Sertoli, Leydig, and granulosa cells. Although AMH and AMHR2 genes have been identified in numerous vertebrate species, spontaneous or engineered mutations or variants have been found or created in only a few mammals and teleost fishes. AMH or AMHR2 mutations in mammals lead to the development of Persistent Müllerian Duct Syndrome (PMDS), a recessive condition in which affected males are fully virilized but retain Müllerian duct-derived tissues, including a uterus and oviducts, and in human and dog, undescended testes. Amh mutant female mice had accelerated ovarian primordial follicle recruitment, suggesting a role for AMH in regulating germ cells. amh and amhr2 mutations have also been experimentally generated in various teleost fishes. Depending on the fish species, loss of AMH signaling results in infertility, germ cell tumors, or male-to-female sex reversal. Here we compare the spectrum of phenotypes caused by AMH and AMHR2 mutations in a variety of vertebrate species. There are both common and unique phenotypes between species, highlighting the range of biological processes regulated by AMH signaling."	"Inherent control of hepatocyte proliferation after subtotal liver resection. At the normal physiological conditions, hepatocytes predominantly reside in G0 phase of cell cycle; they actively proceed to G1 phase upon damage to the organ. As it was shown in experiments with restoration of liver mass in rats after subtotal hepatectomy (resection of 80% of the organ mass may be considered as a model of the 'small for size' liver syndrome), the growth inhibition is due to prolonged arrest of hepatocyte proliferation, molecular mechanisms of which remain understudied. In a rat model of liver regeneration after surgical removal of 80% of its mass, we observe a delayed onset of hepatocyte proliferation: Ki67<sup>+</sup> hepatocytes begin to appear as late as at 30 h after liver subtotal resection. Their appearance coincides with the beginning of transcription of genes for cyclins A2, B1, D 1 , and E 1 at 24-30 h after surgery. The corresponding increase in concentrations of cyclin D 1 and E proteins is further delayed till 48 h after liver resection. We have also observed a prolonged decrease in the expression of proto-oncogene c-met (the hepatocyte growth factor receptor-encoding gene Met), an increase in expression of the transforming growth factor β1 (TGFβ 1 ) receptor-encoding gene Tgfbr2. At the same time, irreversible block of hepatocyte proliferation is prevented by expression of certain factors, notably of the TWEAK/Fn14 signaling pathway: concentrations of the corresponding proteins in remnant livers have peaked from 24 to 48 h after liver subtotal resection."	"Gene mapping and molecular analysis of hereditarynon-polyposis colorectal cancer (Lynch Syndrome)using systems biological approaches. Hereditary non-polyposis colorectal cancer (HNPCC) also known as Lynch Syndrome (LS), is a hereditary form of colorectal cancer (CRC). LSis caused by mutations in the mismatch repair (MMR) genes, mostly in MLH1, MSH2, MSH6 and PMS2. Identification of these gene mutations is essential to diagnose CRC, especially at a young age to increase the survival rate. Using open target platform, we have performed genetic association studies to analyze the different genes involved in the LS and to obtain target for disease evidence. We have also analyzed upstream regulators as target molecules in the data sets. We discovered that MLH1, MSH2, MSH6, PMS2, MLH3, EPCAM, TGFBR2, FBXO11 and PRSS58 were showing most association in LS. Our findings may further enhance the understanding of the hereditaryform of CRC."	"Intrarenal Renin-Angiotensin System Involvement in the Pathogenesis of Chronic Progressive Nephropathy-Bridging the Informational Gap Between Disciplines. Chronic progressive nephropathy (CPN) is the most commonly encountered spontaneous background finding in laboratory rodents. Various theories on its pathogenesis have been proposed, but there is a paucity of data regarding specific mechanisms or physiologic pathways involved in early CPN development. The current CPN mechanism of action for tumorigenesis is largely based on its associated increase in tubular cell proliferation without regard to preceding subcellular degenerative changes. Combing through the published literature from multiple biology disciplines provided insight into the preceding cellular events. Mechanistic pathways involved in the progressive age-related decline in rodent kidney function and several key inflexion points have been identified. These critical pathway factors were then connected using data from renal models from multiple rodent strains, other species, and mechanistic work in humans to form a cohesive picture of pathways and protein interactions. Abundant data linked similar renal pathologies to local events involving hypoxia (hypoxia-inducible factor 1α), altered intrarenal renin-angiotensin system (RAS), oxidative stress (nitric oxide), and pro-inflammatory pathways (transforming growth factor β), with positive feedback loops and downstream effectors amplifying the injury and promoting scarring. Intrarenal RAS alterations seem to be central to all these events and may be critical to CPN development and progression."	"Ang-(1-7) treatment attenuates lipopolysaccharide-induced early pulmonary fibrosis. Early pulmonary fibrosis is the leading cause of poor prognosis in patients with acute respiratory distress syndrome (ARDS). However, whether the renin-angiotensin system (RAS) can serve as a therapeutic target is unknown. In this study, an animal model of early pulmonary fibrosis was established via the LPS three-hit regimen. Afterwards, the animals were treated with intraperitoneal injections of Ang-(1-7), AVE0991, or A779 once per day for 20 days. The plasma and BALF AngII levels of the animals were increased, while there were no significant changes in Ang-(1-7) levels in lung tissue after LPS treatment. Furthermore, the AT1R protein levels were significantly increased and the Mas levels were significantly decreased on days 14 and 21. Administration of Ang-(1-7) downregulated LPS-induced AT1R mRNA expression, which was upregulated by A779. The expression of Mas mRNA responded in the opposite direction relative to AT1R. Moreover, LPS caused decreased levels of Mas and E-cadherin and increased AT1R, Vimentin, and Src phosphorylation levels. Ang-(1-7) or AVE0991 blocked these effects but was counteracted by A779 treatment. Our findings suggested that AngII and AT1R levels exhibit opposite dynamic trends during LPS-induced early pulmonary fibrosis, as do Ang-(1-7) and Mas. Ang-(1-7) exerts protective effects against early pulmonary fibrosis, mainly by regulating the balance between AngII and AT1R and between Ang-(1-7) and Mas and by inhibiting Src kinase activation."	"[Mullerian inhibiting substance type II receptor as a potential target for antineoplastic therapy]. The review considers properties of the type II anti-Mullerian hormone receptor (mullerian inhibiting substance receptor type II, MISRII), a transmembrane sensor with its own serine/threonine protein kinase activity, triggering apoptosis of the Mullerian ducts in mammalian embryogenesis and providing formation of the male type reproductive system. According to recent data, MISRII overexpression in the postnatal period is found in cells of a number of ovarian, mammary gland, and prostate tumors, and anti-Mullerian hormone (AMH) has a pro-apoptotic effect on MISRII-positive tumor cells. This fact makes MISRII a potential target for targeted anti-cancer therapy. Treatment based on targeting MISRII seems to be a much more effective alternative to the traditional one and will significantly reduce the drug dose. However, the mechanism of MISRII-AMH interaction is still poorly understood, so the development of new anticancer drugs is complicated. The review analyzes MISRII molecular structure and expression levels in various tissues and cell lines, as well as current understanding of the AMH binding mechanisms and data on the possibility of using MISRII as a target for the action of AMH-based antineoplastic drugs. Rassmotreny svoĭstva retseptora antimiullerova gormona II tipa (mullerian inhibiting substance receptor type II, MISRII) – transmembrannogo sensora, obladaiushchego sobstvennoĭ serin/treonin proteinkinaznoĭ aktivnost'iu, kotoryĭ zapuskaet apoptoz kletok miullerova protoka i formirovanie reproduktivnoĭ sistemy po muzhskomu tipu v émbriogeneze mlekopitaiushchikh. Po poslednim dannym, giperékspressiia MISRII v postnatal'nom periode nabliudaetsia v kletkakh riada opukholeĭ iaichnikov, molochnoĭ zhelezy i prostaty, a antimiullerov gormon (AMG) obladaet v otnoshenii MISRII-pozitivnykh opukholevykh kletok proapoptoticheskim deĭstviem. Étot fakt delaet MISRII potentsial'noĭ mishen'iu dlia targetnoĭ protivorakovoĭ terapii. Lechenie, osnovannoe na napravlennom vozdeĭstvii na MISRII, predstavliaetsia bolee éffektivnoĭ al'ternativoĭ traditsionnomu i pozvolit sushchestvenno snizit' dozu lekarstvennogo agenta za schet ego targetnoĭ dostavki k malignizirovannym kletkam. Krome togo, antitela protiv MISRII mogut byt' ispol'zovany dlia diagnostiki riada zlokachestvennykh novoobrazovaniĭ. Odnako mekhanizm vzaimodeĭstviia MISRII i AMG do sikh por malo izuchen, chto zatrudniaet razrabotku novykh protivoopukholevykh preparatov. V dannom obzore rassmotreny molekuliarnaia struktura i ékspressiia MISRII v razlichnykh tkaniakh i kletochnykh liniiakh, sovremennye predstavleniia o mekhanizme sviazyvaniia AMG s retseptorom, a takzhe dannye o vozmozhnosti ispol'zovaniia MISRII kak misheni dlia deĭstviia protivoopukholevykh preparatov na osnove AMG ili MISRII-spetsifichnykh antitel."	"LncRNA MEG3 Inhibits the Degradation of the Extracellular Matrix of Chondrocytes in Osteoarthritis via Targeting miR-93/TGFBR2 Axis. As a degenerative joint disease, osteoarthritis (OA) is characterized by articular cartilage degradation. Long noncoding RNAs (lncRNAs) act critical roles in the regulation of OA development, including affecting the proliferation, apoptosis, extracellular matrix (ECM) degradation, and inflammatory response of chondrocytes. The current study's aim was to investigate the regulatory function and the underlying molecular mechanism of lncRNA MEG3 in ECM degradation of chondrocytes in OA. In the current study, chondrocytes were induced by interleukin-1β (IL-1β) to simulate OA condition, and further assessed cell viability, lncRNA MEG3 and miR-93 expression levels. Overexpression or knockdown of lncRNA MEG3 in chondrocytes treated with IL-1β were performed to investigate the function of MEG3 in regulating cell proliferation, apoptosis and ECM degradation using EdU assay, flow cytometry, quantitative reverse transcription polymerase chain reaction (qRT-PCR), and Western blot. The interaction between MEG3 and miR-93 was assessed using qRT-PCR. Furthermore, overexpression of miR-93 was performed as recovery experiment to explore the functional mechanism of MEG3. MEG3 was significantly downregulated in chondrocytes treated with IL-1β, whereas miR-93 was upregulated concomitantly. Overexpression of MEG3 induced the proliferation, suppressed the apoptosis, and relieved the degradation of ECM in IL-1β-induced chondrocytes. By contrast, knockdown of MEG3 suppressed the proliferation, promoted the apoptosis, and aggravated ECM degradation in IL-1β induced chondrocytes. In addition, MEG3 was found to relieve the inhibitive expression of TGFBR2 as a competitive endogenous RNA (ceRNA) of miR-93, and then activated transforming growth factor-β (TGF-β) signaling pathway, regulated chondrocytes ECM degradation in IL-1β induced chondrocytes subsequently. LncRNA MEG3 targeted miR-93/TGFBR2 axis, regulated the proliferation, apoptosis and ECM degradation of chondrocytes in OA."	"Secretin/secretin receptor signaling mediates biliary damage and liver fibrosis in early-stage primary biliary cholangitis. Primary biliary cholangitis (PBC) primarily targets cholangiocytes and is characterized by liver fibrosis and biliary proliferation. Activation of the secretin (Sct)/secretin receptor (SR) axis, expressed only by cholangiocytes, increases biliary proliferation, liver fibrosis, and bicarbonate secretion. We evaluated the effectiveness of SR antagonist treatment for early-stage PBC. Male and female dominant-negative TGF-β receptor II (dnTGF-βRII) (model of PBC) and wild-type mice at 12 wk of age were treated with saline or the SR antagonist, Sec 5-27, for 1 wk. dnTGF-βRII mice expressed features of early-stage PBC along with enhanced Sct/SR axis activation and Sct secretion. dnTGF-βRII mice had increased biliary proliferation or senescence, inflammation, and liver fibrosis. In dnTGF-βRII mice, there was increased microRNA-125b/TGF-β1/TGF-β receptor 1/VEGF-A signaling. Human early-stage PBC patients had an increase in hepatobiliary Sct and SR expression and serum Sct levels. Increased biliary Sct/SR signaling promotes biliary and hepatic damage during early-stage PBC.-Kennedy, L., Francis, H., Invernizzi, P., Venter, J., Wu, N., Carbone, M., Gershwin, M. E., Bernuzzi, F., Franchitto, A., Alvaro, D., Marzioni, M., Onori, P., Gaudio, E., Sybenga, A., Fabris, L., Meng, F., Glaser, S., Alpini, G. Secretin/secretin receptor signaling mediates biliary damage and liver fibrosis in early-stage primary biliary cholangitis."	"Organoid-based ex vivo reconstitution of Kras-driven pancreatic ductal carcinogenesis. The organoid culture technique has been recently applied to modeling carcinogenesis in several organs. To further explore its potential and gain novel insights into tumorigenesis, we here investigated whether pancreatic ductal adenocarcinoma (PDA) could be generated as subcutaneous tumors in immunocompromised nude mice, by genetic engineering of normal organoids. As expected, acute induction of KrasG12Din vitro occasionally led to development of tiny nodules compatible with early lesions known as pancreatic intraepithelial neoplasia (PanIN). KrasG12D-expressing cells were enriched after inoculation in the subcutis, yet proved rather declined during culture, suggesting that its advantage might depend on surrounding environments. Depletion of growth factors or concurrent Trp53 deletion resulted in its robust enrichment, invariably leading to development of PanIN or large high-grade adenocarcinoma, respectively, consistent with in vivo mouse studies for the same genotype. Progression from PanIN was also recapitulated by subsequent knockdown of common tumor suppressors, whereas the impact of Tgfbr2 deletion was only partially recapitulated, illustrating genotype-dependent requirement of the pancreatic niche for tumorigenesis. Intriguingly, analysis of tumor-derived organoids revealed that KrasG12D-expressing cells with spontaneous deletion of wild-type Kras were positively selected and exhibited an aging-related mutation signature in nude mice, mirroring the pathogenesis of human PDA, and that the sphere-forming potential and orthotopic tumorigenicity in syngenic mice were significantly augmented. These observations highlighted the relevance of the subcutis of nude mice in promoting PDA development despite its ectopic nature. Taken together, pancreatic carcinogenesis could be considerably recapitulated with organoids, which would probably serve as a novel disease model."	"ID3 mediates the TGF-β1-induced suppression of matrix metalloproteinase-1 in human granulosa cells. In the mammalian ovary, matrix metalloproteinase-1 (MMP1) is expressed in growing ovarian follicles, and MMP1-mediated extracellular matrix (ECM) remodeling plays a functional role in regulating the formation of corpus luteum. Transforming growth factor-β1 (TGF-β1) is an intraovarian growth factor that acts as a negative regulator of luteinization and progesterone production in human granulosa-lutein (hGL) cells. At present, whether TGF-β1 regulates the expression of MMP1 and thus affects ECM remodeling during corpus luteum formation remains largely unknown. The aim of this study was to investigate the effects of TGF-β1 and the molecular mechanisms by which it regulates the expression of MMP1 in immortalized human granulosa cells lines (SVOG) and primary hGL cells (obtained from consenting patients undergoing IVF treatment). We used inhibition approaches including a competitive antagonist for endogenous TGF-β type II receptor, pharmacological inhibitors (SB431542 and dorsomorphin), and specific small interfering RNA-targeted knockdown of ALK5 type I receptor and SMAD4 to demonstrate that TGF-β1 downregulates the expression and production of MMP1 via a TβRII/ALK5-mediated SMAD-dependent signaling pathway in hGL cells. Additionally, our results show that the suppressive effect of TGF-β1 on the expression of MMP1 is mediated by a transcription factor, the inhibitor of differentiation 3 (ID3) protein. Our findings provide insights into the molecular interactions and mechanisms of TGF-β1 and ID3 during the regulation of MMP1 in hGL cells."	"Clinical Implications of Identifying Pathogenic Variants in Individuals With Thoracic Aortic Dissection. Thoracic aortic dissection is an emergent life-threatening condition. Routine screening for genetic variants causing thoracic aortic dissection is not currently performed for patients or family members. We performed whole exome sequencing of 240 patients with thoracic aortic dissection (n=235) or rupture (n=5) and 258 controls matched for age, sex, and ancestry. Blinded to case-control status, we annotated variants in 11 genes for pathogenicity. Twenty-four pathogenic variants in 6 genes (COL3A1, FBN1, LOX, PRKG1, SMAD3, and TGFBR2) were identified in 26 individuals, representing 10.8% of aortic cases and 0% of controls. Among dissection cases, we compared those with pathogenic variants to those without and found that pathogenic variant carriers had significantly earlier onset of dissection (41 versus 57 years), higher rates of root aneurysm (54% versus 30%), less hypertension (15% versus 57%), lower rates of smoking (19% versus 45%), and greater incidence of aortic disease in family members. Multivariable logistic regression showed that pathogenic variant carrier status was significantly associated with age &lt;50 (odds ratio [OR], 5.5; 95% CI, 1.6-19.7), no history of hypertension (OR, 5.6; 95% CI, 1.4-22.3), and family history of aortic disease (mother: OR, 5.7; 95% CI, 1.4-22.3, siblings: OR, 5.1; 95% CI, 1.1-23.9, children: OR, 6.0; 95% CI, 1.4-26.7). Clinical genetic testing of known hereditary thoracic aortic dissection genes should be considered in patients with a thoracic aortic dissection, followed by cascade screening of family members, especially in patients with age-of-onset &lt;50 years, family history of thoracic aortic disease, and no history of hypertension."	"Dysregulated Tgfbr2/ERK-Smad4/SOX2 Signaling Promotes Lung Squamous Cell Carcinoma Formation. Lung squamous cell carcinoma (SCC) is a common type of lung cancer. There is limited information on the genes and pathways that initiate lung SCC. Here, we report that loss of TGFβ type II receptor (Tgfbr2), frequently deleted in human lung cancer, led to predominant lung SCC development in Kras<sup>G12D</sup> mice with a short latency, high penetrance, and extensive metastases. Tgfbr2-loss-driven lung SCCs resembled the salient features of human lung SCC, including histopathology, inflammatory microenvironment, and biomarker expression. Surprisingly, loss of Smad4, a key mediator of Tgfbr2, failed to drive lung SCC; instead, low levels of phosphorylated ERK1/2, a Smad-independent downstream effector of Tgfbr2, were tightly associated with lung SCC in both mouse and human. Mechanistically, inhibition of phosphorylated ERK1/2 significantly upregulated the expression of SOX2, an oncogenic driver of lung SCC, and cooperated with SMAD4 repression to elevate SOX2. Inhibition of ERK1/2 in Smad4<sup>fl/fl</sup> ;Kras<sup>G12D</sup> mice led to extensive lung SCC formation that resembled the SCC phenotype of Tgfbr2-deficient mice. Overall, we reveal a key role of ERK1/2 in suppressing SCC formation and demonstrate that dysregulated Tgfbr2/ERK-Smad4/SOX2 signaling drives lung SCC formation. We also present a mouse model of metastatic lung SCC that may be valuable for screening therapeutic targets. SIGNIFICANCE: This study sheds new light on the mechanisms underlying lung SCC formation driven by mutated Kras."	"TGF-β Signaling Plays an Essential Role in the Lineage Specification of Mesenchymal Stem/Progenitor Cells in Fetal Bone Marrow. Mesenchymal stromal cells are key components of hematopoietic niches in the bone marrow. Here we abrogated transforming growth factor β (TGF-β) signaling in mesenchymal stem/progenitor cells (MSPCs) by deleting Tgfbr2 in mesenchymal cells using a doxycycline-repressible Sp7 (osterix)-Cre transgene. We show that loss of TGF-β signaling during fetal development results in a marked expansion of CXCL12-abundant reticular (CAR) cells and adipocytes in the bone marrow, while osteoblasts are significantly reduced. These stromal alterations are associated with significant defects in hematopoiesis, including a shift from lymphopoiesis to myelopoiesis. However, hematopoietic stem cell function is preserved. Interestingly, TGF-β signaling is dispensable for the maintenance of mesenchymal cells in the bone marrow after birth under steady-state conditions. Collectively, these data show that TGF-β plays an essential role in the lineage specification of fetal but not definitive MSPCs and is required for the establishment of normal hematopoietic niches in fetal and perinatal bone marrow."	"Activin Receptor II Ligand Traps: New Treatment Paradigm for Low-Risk MDS. Alleviating cytopenias, namely anemia, is the main goal of therapy in lower-risk myelodysplastic syndromes (MDS). Current available treatment options remain limited. We review the role of TGF-B pathway in MDS, the current available data on luspatercept and sotatercept development. TGF-B pathway is overactivated in MDS contributing to observed myelosuppression. SMADs, the downstream proteins of TGF-B pathway, are upregulated. GDF-11 is a negative regulator of terminal erythroid differentiation and an activin receptor ligand. Sotatercept and luspatercept are fusion ligand trap novel agents for activin II receptors A and B, respectively. Early promising results have been reported with those novel agents for treating anemia in lower-risk MDS patients, and higher responses were observed among patients with ring sideroblasts and SF3B1 mutation. A phase III randomized clinical trial with luspatercept was recently conducted. Activin receptor II ligand traps may represent a new paradigm for anemia treatment in MDS."	"Activation of TGF-β Canonical and Noncanonical Signaling in Bovine Lactoferrin-Induced Osteogenic Activity of C3H10T1/2 Mesenchymal Stem Cells. Lactoferrin (LF) is known to modulate the bone anabolic effect. Previously, we and others reported that the effects of LF on the bone may be conferred by the stimulation of transforming growth factor β (TGF-β) signaling in the preosteoblast. However, the underlying molecular mechanisms of LF-induced osteogenic differentiation of mesenchymal stem cells (MSCs) has not been identified. In this study, we tested the hypothesis that the effects of LF on osteogenesis of MSCs required mediation by TGF-β Receptors and activating TGF-β signaling pathway. Using siRNA silencing technology, the knockdown of TGF-β Receptor II (TβRII) could significantly attenuate LF's effect on the proliferation rate and alkaline phosphatase (ALP) activity of MSCs. It indicated that LF induced osteogenic activity that is dependent on TβRII in C3H10T1/2. Subsequently, it was shown that LF activated Smad2. Downregulating TGF-β Receptor I (TβRI) with SB431542 attenuated the expression of p-Smad2 and p-P38, also the LF-induced the osteogenic activity. Besides, the stimulation by LF on the expression of Osteocalcin (OCN), Osteopontin (OPN), Collagen-2a1 (Col2a1), and Fibroblast Growth Factor 2 (FGF2) were abolished by SB431542. These results confirmed that LF induced osteogenic activity though the TGF-β canonical and noncanonical signaling pathway. This study provided the first evidence of the signaling mechanisms of LF's effect on osteogenesis in MSCs."	"Celecoxib inhibits the epithelial-to-mesenchymal transition in bladder cancer via the miRNA-145/TGFBR2/Smad3 axis. Celecoxib, a selective cyclooxygenase‑2 inhibitor, has chemo‑preventive activity against different cancer types, including bladder cancer (BC). However, the mechanisms by which celecoxib exerts its cancer preventative effects have yet to be completely understood. In the present study, the effect of celecoxib on the epithelial‑to‑mesenchymal transition (EMT) of BC cells and its potential molecular mechanisms were investigated. The results of the present study demonstrated that celecoxib inhibited the proliferation, migration, invasion and EMT of BC cells. Further investigation of the underlying mechanism revealed that celecoxib inhibited EMT by upregulating microRNA (miR)‑145 and downregulating the expression of transforming growth factor β receptor 2 and SMAD family member 3. Furthermore, the combination of celecoxib with miR‑145 mimics demonstrated an additive migration and invasion‑inhibitory effect in BC cell lines."	"Control of lung myofibroblast transformation by monovalent ion transporters. Myofibroblast differentiation is a critical process in the pathogenesis of tissue fibrosis. We focus our mini-review on recent data showing an implication of monovalent ion transporters in fibroblast to myofibroblast transformation of human lung fibroblasts (HLF). In cultured HLF, cardiotonic steroids (CTS) known as potent inhibitors of Na<sup>+</sup>,K<sup>+</sup>-ATPase suppress myofibroblast differentiation in parallel with up- and down-regulated expression of cyclooxygenase-2 (COX-2) and TGF-β receptor subunit TGFBR2, respectively. K<sup>+</sup>-free medium mimics antifibrotic action of CTS indicating a key role of elevated intracellular [Na<sup>+</sup>]i/[K<sup>+</sup>]i ratio. Augmented expression of COX-2 is abolished by inhibition of Na<sup>+</sup>/Ca<sup>2+</sup> exchanger. Side-by-side with CTS acting via elevation of the [Na<sup>+</sup>]i/[K<sup>+</sup>]i ratio fibroblast to myofibroblast transformation is also suppressed by potent inhibitors of Ca<sup>2+</sup>-activated chloride channels tannic acid and K<sup>+</sup>,Cl<sup>-</sup> cotransporter DIOA. The relative impact of [Formula: see text] -mediated and -independent signaling triggered by elevated [Na<sup>+</sup>]i/[K<sup>+</sup>]i ratio and altered intracellular anion handling in transcriptomic changes involved in myofibroblast differentiation should be examined further."	"Immunomodulatory Effects of the Neuropeptide Pituitary Adenylate Cyclase-Activating Polypeptide in Acute Toxoplasmosis. Pituitary Adenylate Cyclase-Activating Polypeptide (PACAP) is an endogenous neuropeptide with distinct functions including the regulation of inflammatory processes. PACAP is able to modify the immune response by directly regulating macrophages and monocytes inhibiting the production of inflammatory cytokines, chemokines and free radicals. Here, we analyzed the effect of exogenous PACAP on peripheral immune cell subsets upon acute infection with the parasite Toxoplasma gondii (T. gondii). PACAP administration was followed by diminished innate immune cell recruitment to the peritoneal cavity of T. gondii-infected mice. PACAP did not directly interfere with parasite replication, instead, indirectly reduced parasite burden in mononuclear cell populations by enhancing their phagocytic capacity. Although proinflammatory cytokine levels were attenuated in the periphery upon PACAP treatment, interleukin (IL)-10 and Transforming growth factor beta (TGF-β) remained stable. While PACAP modulated VPAC1 and VPAC2 receptors in immune cells upon binding, it also increased their expression of brain-derived neurotrophic factor (BDNF). In addition, the expression of p75 neurotrophin receptor (p75<sup>NTR</sup>) on Ly6C<sup>hi</sup> inflammatory monocytes was diminished upon PACAP administration. Our findings highlight the immunomodulatory effect of PACAP on peripheral immune cell subsets during acute Toxoplasmosis, providing new insights about host-pathogen interaction and the effects of neuropeptides during inflammation."	"Muscle Resting and TGF-β Inhibitor Treatment Prevent Fatty Infiltration Following Skeletal Muscle Injury. Skeletal muscle injuries are the most common type of injury occurring in sports, and investigating skeletal muscle regeneration as well as understanding the related processes is an important aspect of the sports medicine field. The process of regeneration appears to be complex and precisely orchestrated, involving fibro-adipogenic progenitors (FAPs) which are a muscle-resident stem cell population that appears to play a major role in abnormal development of fibrotic tissue or intermuscular adipose tissue (IMAT). Our present study aims to investigate whether muscle resting or endurance exercise following muscle injury may change the behavior of FAPs and subsequently impact the development of fatty infiltrations and fibrosis, two hallmarks of regeneration failure. We used the validated glycerol muscle injury model to mimic abnormal muscle regenerative conditions in mice. We challenged this specific regeneration model with hindlimb unloading or endurance exercise and, in a second set of experiments, we treated mice with decorin, a TGF-β inhibitor. In this study, we demonstrated that: i) muscle resting just after injury leads to inhibition of IMAT development, ii) TNF-α mediated FAP apoptosis might be perturbed in this specific glycerol model of muscle injury, leading to IMAT development, and iii) treatment with the TGF-β inhibitor decorin decreases IMAT development and might restores FAP apoptosis. In addition to the potential clinical relevance of decorin treatment in situations involving muscle plasticity and regeneration, this study also demonstrates that a period of muscle resting is necessary following muscle injury to achieve efficient muscle regeneration which is associated with a reduction in fatty infiltration. Unreasonably early resumption of exercise brings no gain to regeneration, further highlighting that this resting period is necessary."	"GDF15 induced apoptosis and cytotoxicity in A549 cells depends on TGFBR2 expression. GDF15 plays a paradoxical role during carcinogenesis; it inhibits tumour growth in the early stages and promotes tumour cell proliferation in the late stages of cancer. Besides, GDF15 can induce apoptosis in some cancer cells including A549 but not in some others. Moreover, as a potential receptor for GDF15, TGFBR2 is inactivated during carcinogenesis in many types of cancers, and it is not present in cells with no GDF15 induced apoptosis. Thus, we tested whether GDF15 overexpression and/or TGFBR2 silencing can affect the GDF15 induced apoptosis in A549 cells. The full and mature forms of GDF15 were cloned and overexpressed in A549 cells. The TGFBR2 was silenced using specific siRNA and confirmed by real-time PCR. Results indicated that overexpression of full and mature forms of GDF15 as well as TGFBR2 knocked down reduced A549 cell viability in 24 and 48 hours. Flow cytometric analysis of annexin V/PI indicated induction of apoptosis in A549 cells by overexpression of GDF15 or silencing TGFBR2. Interestingly, the silencing of TGFBR2 inhibited the GDF15 induced cytotoxicity and apoptosis in A549 cells. Overexpression of GDF15 activated caspase-9 and caspase-3 and inhibited ERK1/2 and p38 phosphorylation in A549 cells. TGFBR2 knocked down inhibited GDF15 effects on caspases, ERK1/2, and p38MAPK activation. Our results indicated that the effect of GDF15 on apoptosis and activation of MAPK in A549 cells depends on TGFBR2 expression. These findings may point to mechanisms in which GDF15 exerts dual effect during carcinogenesis with regard to TGFBR2 expression. SIGNIFICANCE OF THE STUDY: GDF15 plays a tumour suppressor or promotor roles during carcinogenesis. The expression of GDF15 induced cytotoxicity, apoptosis, and inhibition of MAPK in A549 cells. All these effects were blocked by silencing TGFBR2 expression. These findings may point to mechanisms in which GDF15 exerts dual effect during carcinogenesis with regard to TGFBR2 expression."	"Systematic review: Renin-angiotensin system inhibitors in chemoprevention of hepatocellular carcinoma. Neoangiogenesis is one of the key pathogenetic mechanisms in hepatocellular carcinoma (HCC). Modulation of the renin-angiotensin system (RAS) by angiotensin-converting enzyme inhibitors (ACE-Is) and angiotensin receptor blockers (ARBs) seems to be a possible adjuvant therapy for HCC, due to the anti-angiogenic and anti-fibrogenic activity of these drugs. To elucidate the role of ARBs and ACE-Is in HCC. We performed an electronic search of the literature using the most accessed online databases (PubMed, Cochrane library, Scopus and Web of Science), entering the query terms &quot;angiotensin-converting enzyme inhibitors&quot; OR &quot;ACE inhibitors&quot; OR &quot;ACE-I&quot; AND &quot;hepatocarcinoma*&quot; OR &quot;hepatocellular carcinoma; moreover &quot;angiotensin II type 1 receptor blockers&quot; OR &quot;ARBs&quot; AND &quot;hepatocarcinoma*&quot; OR &quot;hepatocellular carcinoma&quot;. Eligibility criteria were: (1) prospective or retrospective clinical studies; (2) epidemiological studies; and (3) experimental studies conducted in vivo or in vitro. Abstracts, conference papers, and reviews were excluded a priori. We limited our literature search to articles published in English, in peer-reviewed journals. Thirty-one studies were selected. Three interventional studies showed that ACE-Is had a significant protective effect on HCC recurrence only when used in combination with vitamin K or branched chain aminoacids, without a significant increase in overall survival. Of six retrospective observational studies, mainly focused on overall survival, only one demonstrated a prolonged survival in the ACE-Is group, whereas the two that also evaluated tumor recurrence showed conflicting results. All experimental studies displayed beneficial effects of RAS inhibitors on hepatocarcinogenesis. Numerous experimental studies, conducted either on animals and cell cultures, demonstrated the anti-angiogenetic and antifibrotic effect of ACE-Is and ARBs, thanks to the suppression of some cytokines such as vascular endothelial growth factor, hypoxia-inducible factor-1a, transforming growth factor-beta and tumor necrosis factor alpha. All or parts of these mechanisms were demonstrated in rodents developing fewer HCC and preneoplastic lesions after receiving such drugs. In humans, RAS inhibitors - alone or in combination - significantly suppressed the cumulative HCC recurrence, without prolonging patient survival, but some limitations intrinsic to these studies prompt further investigations."	"Glial cell line-derived neurotrophic factor (GDNF) mediates hepatic stellate cell activation via ALK5/Smad signalling. Although glial cell line-derived neurotrophic factor (GDNF) is a member of the transforming growth factor-β superfamily, its function in liver fibrosis has rarely been studied. Here, we investigated the role of GDNF in hepatic stellate cell (HSC) activation and liver fibrosis in humans and mice. GDNF expression was examined in liver biopsies and sera from patients with liver fibrosis. The functional role of GDNF in liver fibrosis was examined in mice with adenoviral delivery of the GDNF gene, GDNF sgRNA CRISPR/Cas9 and the administration of GDNF-blocking antibodies. GDNF was examined on HSC activation using human and mouse primary HSCs. The binding of activin receptor-like kinase 5 (ALK5) to GDNF was determined using surface plasmon resonance (SPR), molecular docking, mutagenesis and co-immunoprecipitation. GDNF mRNA and protein levels are significantly upregulated in patients with stage F4 fibrosis. Serum GDNF content correlates positively with α-smooth muscle actin (α-SMA) and Col1A1 mRNA in human fibrotic livers. Mice with overexpressed GDNF display aggravated liver fibrosis, while mice with silenced GDNF expression or signalling inhibition by GDNF-blocking antibodies have reduced fibrosis and HSC activation. GDNF is confined mainly to HSCs and contributes to HSC activation through ALK5 at His<sup>39</sup> and Asp<sup>76</sup> and through downstream signalling via Smad2/3, but not through GDNF family receptor alpha-1 (GFRα1). GDNF, ALK5 and α-SMA colocalise in human and mouse HSCs, as demonstrated by confocal microscopy. GDNF promotes HSC activation and liver fibrosis through ALK5/Smad signalling. Inhibition of GDNF could be a novel therapeutic strategy to combat liver fibrosis."	"PINK1 attenuates mtDNA release in alveolar epithelial cells and TLR9 mediated profibrotic responses. We have previously shown that endoplasmic reticulum stress (ER stress) represses the PTEN inducible kinase 1 (PINK1) in lung type II alveolar epithelial cells (AECII) reducing mitophagy and increasing the susceptibility to lung fibrosis. Although increased circulating mitochondrial DNA (mtDNA) has been reported in chronic lung diseases, the contribution of mitophagy in the modulation of mitochondrial DAMP release and activation of profibrotic responses is unknown. In this study, we show that ER stress and PINK1 deficiency in AECII led to mitochondrial stress with significant oxidation and damage of mtDNA and subsequent extracellular release. Extracellular mtDNA was recognized by TLR9 in AECII by an endocytic-dependent pathway. PINK1 deficiency-dependent mtDNA release promoted activation of TLR9 and triggered secretion of the profibrotic factor TGF-β which was rescued by PINK1 overexpression. Enhanced mtDNA oxidation and damage were found in aging and IPF human lungs and, in concordance, levels of circulating mtDNA were significantly elevated in plasma and bronchoalveolar lavage (BAL) from patients with IPF. Free mtDNA was found elevated in other ILDs with low expression of PINK1 including hypersensitivity pneumonitis and autoimmune interstitial lung diseases. These results support a role for PINK1 mediated mitophagy in the attenuation of mitochondrial damage associated molecular patterns (DAMP) release and control of TGF-β mediated profibrotic responses."	"Function and regulation of transforming growth factor β1 signalling in antler chondrocyte proliferation and differentiation. Chondrocyte proliferation and differentiation are crucial for endochondral ossification, but their regulatory mechanism remains unclear. The present study aimed to determine the physiological function of TGFβ1 signalling in the proliferation and differentiation of antler chondrocytes and explore its relationship with Notch, Shh signalling and Foxa. Immunofluorescence, Western blot, MTS assay, flow cytometry, RNA interference and real-time PCR were used to analyse the function and regulatory mechanisms of TGFβ1 signalling in antler chondrocyte proliferation and differentiation. TGFβ1, TGFBR1 and TGFBR2 were highly expressed in antler cartilage. TGFβ1 promoted chondrocyte proliferation, increased the proportion of S-phase cells and induced the expression of hypertrophic chondrocyte markers Col X, Runx2 and Alpl. However, this induction was weakened by TGFβ receptor inhibitor SB431542 and Smad3 inhibitor SIS3. Simultaneously, TGFβ1 activated Notch and Shh signalling whose blockage attenuated the above effects of rTGFβ1, whereas addition of rShh rescued the defects in chondrocyte proliferation and differentiation elicited by SB431542 and SIS3. Further analysis revealed that inhibition of Notch signalling impeded TGFβ1 activation of the Shh pathway. Knockdown of Foxa1, Foxa2 and Foxa3 abrogated the effects of TGFβ1 on chondrocyte differentiation. Notch and Shh signalling mediated the regulation of Foxa transcription factors by TGFβ1. TGFβ1 signalling could induce the proliferation and differentiation of antler chondrocytes through Notch-Shh-Foxa pathway."	"TGF-β induces liver fibrosis via miRNA-181a-mediated down regulation of augmenter of liver regeneration in hepatic stellate cells. To study the role of miRNA-181a and augmenter of liver regeneration in TGF-β-induced fibrosis in hepatic stellate cells. LX2 cells were treated with 20 ng/ml TGF-β for 24 h. miRNA-181a, ALR plasmid and empty vectors were transfected using siPORT NeoFx reagent. Cells were harvested after 48 h or 72 h of transfection for protein or RNA analysis. Western blotting was performed for ALR, TGF-β receptor II (TGFβ-RII), collagen 1A1 (COLL1A1), alpha-smooth muscle cell actin (α-SMA), rac1, E-cadherin and β-actin. Quantitative RT-PCR was performed for ALR, GAPDH, miRNA-181a or 5S rRNA. TGF-β induced the expression of miRNA-181a, which in turn down-regulated ALR thereby induced the fibrosis markers, such as COLL1A1, α-SMA and rac1 in hepatic stellate cells. Over-expression of miRNA-181a down-regulated expression of ALR and up-regulated expression of fibrosis markers. On the other hand, ALR over-expression resulted in a decrease in miRNA-181a expression and fibrosis markers. Over-expression of ALR also inhibited the expression of TGFβ-RII and increased expression E-cadherin. TGF-β induced miRNA-181a, which in turn induced fibrosis, at least in part, by inhibiting ALR. ALR inhibited TGF-β action by decreasing the expression of TGFβ-RII, thereby inhibiting miRNA-181a expression and fibrosis markers. ALR could serve as a potential molecule to inhibit liver fibrosis."	"Crossing borders: A systematic review with quantitative analysis of genetic mutations of carcinomas of the biliary tract. Biliary tract carcinoma (BTC) comprises gallbladder and intra-/extrahepatic cholangiocarcinoma (GBC, ICC, EHC), which are currently classified by anatomical origin. Better understanding of the mutational profile of BTCs might refine classification and improve treatment. We performed a systematic review of studies reporting on mutational profiling of BTC. We included articles reporting on whole-exome/whole-genome-sequencing (WES/WGS) and targeted sequencing (TS) of BTC, published between 2000-2017. Pooled mutation proportions were calculated, stratified by anatomical region and sequencing technique. A total of 25 studies with 1806 patients were included. Overall, TP53 was the most commonly mutated gene in BTC. GBC was associated with mutations in PFKFB3, PLXN2 and PGAP1. Mutations in IDH1, IDH2 and FGFR fusions almost exclusively occurred in ICC patients. Mutations in APC, GNAS and TGFBR2 occurred exclusively in EHC patients. In conclusion, subtypes of BTCs exhibit minor differences in mutational profile, which is likely influenced by the cell of origin."	"Epidermal Growth Factor Stimulates Transforming Growth Factor-Beta Receptor Type II Expression In Corneal Epithelial Cells. We previously demonstrated that inhibition of epidermal growth factor receptor (EGFR) slowed corneal epithelial migration. Here we examine the effect of EGF on transforming growth factor-beta receptor II (TGF-βRII) in a corneal wound-healing model and primary human corneal epithelial cells (pHCE). Corneal debridement wounds were made and allowed to heal ± Tyrphostin AG1478 (EGFR inhibitor), and assayed for EGFR activation and EGFR and TGF-βRII localization. Primary HCE were treated with EGF ± U0126 (MEK inhibitor) and assayed for TGF-βRII expression. EGFR activation was maximal 15 minutes after wounding and localized in the migrating epithelial cells. TGF-βRII localization was also observed in the migrating epithelium and was reduced when EGFR was blocked. When pHCE were treated with EGF for 6 hours, the cells produced enhanced levels of TGF-βRII, which was blocked by U0126. Downstream signaling pathways of MEK (p38<sup>MAPK</sup> and ERK1/2<sup>MAPK</sup>) were then examined, and TGF-β1 and EGF were found to have differential effects on the phosphorylation of p38 and ERK1/2, with TGF-β1 upregulating p-p38 but not pERK1/2 and EGF upregulating pERK1/2 but not p-p38. Taken together, these data indicate that EGF stimulates TGF-βRII through ERK1/2 and EGFR signaling, suggesting interplay between EGF- and TGF-β-signaling pathways during corneal wound repair."	"Microsatellite instability in mismatch repair and tumor suppressor genes and their expression profiling provide important targets for the development of biomarkers in gastric cancer. We evaluated microsatellite instability (MSI) in selected mismatch repair (MMR) and tumor suppressor (TS) genes with a view to exploring genetic changes associated with the occurrence of gastric cancer (GC). Moreover, expression of MSI positive genes was measured to get insights into molecular events operating in the tumor microenvironment. We anticipated discovering new molecular targets with potential as molecular biomarkers of gastric cancer. Of the 13 genes screened, we observed 15% to 52.5% MSI at eight microsatellite loci located in 3' UTR and coding regions of six genes (TGFBR2, PDCD4, MLH3, DLC1, MSH6, and MSH3). The union probability of different combinations of unstable microsatellite loci unveiled a set of four MSI markers from TGFBR2, PDCD4, MLH3, and MSH3 genes that allows detection of up to 85% incidences of GC. Significant downregulation of MLH3, PDCD4, TGFBR2, and DLC1 genes was observed in tumor tissues. Protein structure analyses of two unexplored targets, MSH3 (TG4) and MSH6 (A7), with MSI in the coding region, exhibited the loss of essential domains in the encoded aberrant protein hampering its function in the MMR machinery. The molecular markers thus identified could potentially be used as MSI biomarkers for the diagnosis of gastric tumorigenesis after further validation."	"ALK5 is essential for tooth germ differentiation during tooth development. The TGFβ superfamily of proteins participates in tooth development. TGFβ1 and TGFβ3 regulate odontoblast differentiation and dentin extracellular matrix synthesis. Although the expression of TGFβ family member ligands is well-characterized during mammalian tooth development, less is known about the TGFβ receptor, which is a heteromeric complex consisting of a type I and type II receptors. The molecular mechanism of ALK5 (TGFβR1) in the dental mesenchyme is not clear. We investigated the role of ALK5 in tooth germ mesenchymal cells (TGMCs) from the lower first molar tooth germs of day 15.5 embryonic mice. Human recombinant TGFβ3 protein or an ALK5 inhibitor (SD208) was added to the cells. Cell proliferation was inhibited by SD208 and promoted by TGFβ3. We found that SD208 inhibited TGMCs osteogenesis and dentinogenesis. Both canonical and noncanonical TGFβ signaling pathways participated in the process. TAK1, P-TAK1, p38 and P-p38 showed greater expression and SMAD4 showed less expression when ALK5 was inhibited. Our findings contribute to understanding the role of TGFβ signaling for the differentiation of mesenchymal stem cells derived from dental germ and suggest possible targets for optimizing the use of stem cells of dental origin for tissue regeneration."	"Neonatal exposure to agonists and antagonists of sex steroid receptors induces changes in the expression of oocyte-derived growth factors and their receptors in ovarian follicles in gilts. The objective of the present study was to examine the effects of neonatal exposure to either agonists or antagonists of androgen and estrogen receptors on the expression of growth and differentiation factor 9 (GDF9) and bone morphogenetic protein 15 (BMP15) and their cognate receptors (TGFBR1, BMPR1B, and BMPR2) in ovarian follicles of adult pigs. Piglets were injected subcutaneously with testosterone propionate (TP, an androgen, at 20 mg/kg bw), flutamide (FLU, an antiandrogen, at 50 mg/kg bw), 4-tert-octylphenol (OP, an estrogenic compound, 100 mg/kg bw), ICI 182,780 (ICI, an antiestrogen, 400 μg/kg bw), or corn oil (control) between postnatal Days 1 and 10 (n = 5/group). Ovarian follicles were excised from adult pigs on Days 8-11 of the estrous cycle. The expression of GDF9, BMP15, TGFBR1, BMPR1B and BMPR2 were examined in the population of preantral and small antral ovarian follicles using real-time PCR, Western blot and immunohistochemistry. In preantral follicles, the upregulation of GDF9 mRNA and protein expression was found in pigs that were neonatally exposed to TP or FLU, while administration of TP or ICI resulted in upregulation of BMP15. TGFBR1 and BMPR2 mRNA and protein expression were upregulated in preantral follicles of adult pigs that were neonatally exposed to TP or FLU, while administration of TP or ICI resulted in upregulation of BMPR1B. In small antral follicles, the mRNA and protein for TGFBR1 and BMPR2 were upregulated, while BMPR1B was downregulated in response to neonatal OP treatment. In addition, treatment with FLU upregulated BMPR1B and BMPR2 mRNA and protein expression, while downregulated the expression of TGFBR1. Moreover, GDF9 and BMP15 were immunolocalized in oocytes and granulosa cells of preantral follicles obtained from both control and treated ovaries. TGFBR1, BMPR1B and BMPR2 receptors were observed in the oocytes and granulosa cells of preantral follicles as well as in granulosa and theca cells of small antral follicles. In conclusion, the present study demonstrated neonatal exposure to either agonists or antagonists of androgen and estrogen receptors affected GDF9 and BMP15 signalling in ovaries of adult pigs. It seems that neonatal androgen excess or deficiency may lead to the acceleration of initial follicle recruitment, while neonatal exposure to compounds with antiandrogenic and estrogenic activity may disturb small antral follicles fate. Therefore, it confirms that neonatal window is critical for programming of ovarian function in pigs."	"Mixed Vehicle Emissions Induces Angiotensin II and Cerebral Microvascular Angiotensin Receptor Expression in C57Bl/6 Mice and Promotes Alterations in Integrity in a Blood-Brain Barrier Coculture Model. Exposure to traffic-generated pollution is associated with alterations in blood-brain barrier (BBB) integrity and exacerbation of cerebrovascular disorders. Angiotensin (Ang) II signaling through the Ang II type 1 (AT1) receptor is known to promote BBB disruption. We have previously reported that exposure to a mixture of gasoline and diesel vehicle engine emissions (MVE) mediates alterations in cerebral microvasculature of C57Bl/6 mice, which is exacerbated through consumption of a high-fat (HF) diet. Thus, we investigated the hypothesis that inhalation exposure to MVE results in altered central nervous system microvascular integrity mediated by Ang II-AT1 signaling. Three-month-old male C57Bl/6 mice were placed on an HF or low-fat diet and exposed via inhalation to either filtered air (FA) or MVE (100 μg/m3 PM) 6 h/d for 30 days. Exposure to HF+MVE resulted in a significant increase in plasma Ang II and expression of AT1 in the cerebral microvasculature. Results from a BBB coculture study showed that transendothelial electrical resistance was decreased, associated with reduced expression of claudin-5 and occludin when treated with plasma from MVE+HF animals. These effects were attenuated through pretreatment with the AT1 antagonist, Losartan. Our BBB coculture showed increased levels of astrocyte AT1 and decreased expression of aryl hydrocarbon receptor and glutathione peroxidase-1, associated with increased interleukin-6 and transforming growth factor-β in the astrocyte media, when treated with plasma from MVE-exposed groups. Our results indicate that inhalation exposure to traffic-generated pollutants results in altered BBB integrity, mediated through Ang II-AT1 signaling and inflammation, which is exacerbated by an HF diet."	"Tissue engineering a tendon-bone junction with biodegradable braided scaffolds. Tendons play an important role in transferring stress between muscles and bones and in maintaining the stability of joints. Tendon tears are difficult to heal and are associated with high recurrence rates. So, the objective of this study was to develop a biodegradable scaffold for tendon-bone junction regeneration. Two types of polylactic acid (PLA) yarns, having fibers with round and four deep grooved cross-sections, were braided into tubular scaffolds and cultured with murine Transforming growth factor beta type II receptor (Tgfbr2)-expressing joint progenitor cells. The scaffolds were designed to mimic the mechanical, immuno-chemical and biological properties of natural mouse tendon-bone junctions. Three different tubular scaffolds measuring 2 mm in diameter were braided on a Steeger 16-spindle braiding machine and biological and mechanical performance of the three scaffolds were evaluated. The mechanical test results indicated that three different braided scaffold structures provided a wide range of mechanical properties that mimic the components of tendon bone junction and results of the biological tests confirmed cell viability, active cell attachment and proliferation throughout all three scaffolds. This study has identified that the three proposed types of braided scaffolds with some improvement in their structures have the potential to be used as scaffolds for the regeneration of a tendon bone tissue junction."	"Molecular characterization of colorectal cancer using whole-exome sequencing in a Taiwanese population. Next-generation sequencing (NGS) technology is currently used to establish mutational profiles in many heterogeneous diseases. The aim of this study was to evaluate the mutational spectrum in Taiwanese patients with colorectal cancer (CRC) to help clinicians identify the best treatment method. Whole-exome sequencing was conducted in 32 surgical tumor tissues from patients with CRC. DNA libraries were generated using the Illumina TruSeq DNA Exome, and sequencing was performed on the Illumina NextSeq 500 system. Variants were annotated and compared to those obtained from publicly available databases. The analysis revealed frequent mutations in APC (59.38%), TP53 (50%), RAS (28.13%), FBXW7 (18.75%), RAF (9.38%), PIK3CA (9.38%), SMAD4 (9.38%), and SOX9 (9.38%). A mutation in TCF7L2 was also detected, but at lower frequencies. Two or more mutations were found in 22 (68.75%) samples. The mutation rates for the WNT, P53, RTK-RAS, TGF-β, and PI3K pathways were 78.13%, 56.25%, 40.63%, 18.75%, and 15.63%, respectively. RTK-RAS pathway mutations were correlated with tumor size (P = 0.028). We also discovered 23 novel mutations in NRAS, PIK3CA, SOX9, APC, SMAD4, MSH3, MSH4, PMS1 PMS2, AXIN2, ERBB2, PIK3R1, TGFBR2, and ATM that were not reported in the COSMIC, The Cancer Genome Atlas, and dbSNP databases. In summary, we report the mutational landscape of CRC in a Taiwanese population. NGS is a cost-effective and time-saving method, and we believe that NGS will help clinicians to treat CRC patients in the near future."	"microRNA-301b-3p downregulation underlies a novel inhibitory role of long non-coding RNA MBNL1-AS1 in non-small cell lung cancer. Non-small cell lung cancer (NSCLC) is the second most prevalent cause of cancer-related fatality. Long non-coding RNAs (lncRNAs) have been observed to exercise functions in NSCLC. Here, the current study aimed to explore the potential mechanism of lncRNA MBNL1-AS1 in NSCLC. Microarray analysis was performed to screen the differentially expressed lncRNA associated with NSCLC and its potential mechanism. The lncRNA MBNL1-AS1 expression was quantified in 56 paired NSCLC and adjacent normal tissue samples. In an attempt to outline the function of lncRNA MBNL1-AS1 in NSCLC and to identify the interaction among lncRNA MBNL1-AS1, microRNA-301b-3p (miR-301b-3p) and TGFBR2, ectopic expression, depletion, and reporter assay experiments were conducted to detect CSC proliferation, migration, invasion, drug resistance, and sphere formation in NSCLC. Initially, the intersection among lncRNA MBNL1-AS1, miR-301b-3p, and TGFBR2 was observed in NSCLC. While a poor expression of lncRNA MBNL1-AS1 and TGFBR2, along with a high expression of miR-301b-3p was observed in NSCLC tissues. A demonstration of lncRNA MBNL1-AS1 restoration significantly decreased CSC proliferation, migration, invasion, drug resistance, and sphere formation in NSCLC. LncRNA MBNL1-AS1 functioned as a sponge of miR-301b-3p, which inverted the inhibitory role of lncRNA MBNL1-AS1 in CSC proliferation, migration, invasion, drug resistance, and sphere formation in NSCLC. LncRNA MBNL1-AS1 positively regulated TGFBR2 which was a target gene of miR-301b-3p. At last, upregulated lncRNA MBNL1-AS1 or depleted miR-301b-3p suppressed the xenograft tumor formation in vivo. Collectively, the present study suggests an inhibitory role of lncRNA MBNL1-AS1 in CSC drug resistance of NSCLC by upregulating miR-301b-3p-targeted TGFBR2."	"Application of next-generation sequencing to screen for pathogenic mutations in 123 unrelated Chinese patients with Marfan syndrome or a related disease. Marfan syndrome (MFS) is a systemic connective tissue disease principally affecting the ocular, skeletal and cardiovascular systems. This autosomal dominant disorder carries a prevalence of 1:3,000 to 1:5,000. This study aims to define the mutational spectrum of MFS related genes in Chinese patients and to establish genotype-phenotype correlations in MFS. Panel-based targeted next-generation sequencing was used to analyze the FBN1, TGFBR1 and TGFBR2 genes in 123 unrelated Chinese individuals with MFS or a related disease. Genotype-phenotype correlation analyses were performed in mutation-positive patients. The results showed that 97 cases/families (78.9%; 97/123) harbor at least one (likely) pathogenic mutation, most of which were in FBN1; four patients had TGFBR1/2 mutations; and one patient harbored a SMAD3 mutation. Three patients had two FBN1 mutations, and all patients showed classical MFS phenotypes. Patients with a dominant negative-FBN1 mutation had a higher prevalence of ectopia lentis (EL). Patients carrying a haploinsufficiency-FBN1 mutation tended to have aortic dissection without EL. This study extends the spectrum of genetic backgrounds of MFS and enriches our knowledge of genotype-phenotype correlations."	"Driver genes exome sequencing reveals distinct variants in African Americans with colorectal neoplasia. Colorectal cancer (CRC) is the third leading cause of cancer-related deaths in the United States. African Americans are disproportionately affected by CRC. Our hypothesis is that driver genes with known and novel mutations have an impact on CRC outcome in this population. Therefore, we investigated the variants' profiles in a panel of 15 CRC genes. Colorectal specimens (n=140) were analyzed by targeted exome sequencing using an Ion Torrent platform. Detected variants were validated in 36 samples by Illumina sequencing. The novel status of the validated variants was determined by comparison to publicly available databases. Annotated using ANNOVAR and in-silico functional analysis of these variants were performed to determine likely pathogenic variants. Overall, 121 known and novel variants were validated: APC (27%), AMER1 (3%), ARID1 (7%), MSH3 (12%), MSH6 (10%), BRAF (4%), KRAS (6%), FBXW7 (4%), PIK3CA (6%), SMAD4 (5%), SOX9 (2%), TCF7L2 (2%), TGFBR2 (5%), TP53 (7%). From these validated variants, 12% were novel in 8 genes (AMER1, APC, ARID1A, BRAF, MSH6, PIK3CA, SMAD4, and TCF7L2). Of the validated variants, 23% were non-synonymous, 14% were stopgains, 24% were synonymous and 39% were intronic variants. We here report the specifics of variants' profiles of African Americans with colorectal lesions. Validated variants showed that Tumor Suppressor Genes (TSGs) APC and ARID1 and DNA Mismatch repair (MMR) genes MSH3 and MSH6 are the genes with the highest numbers of validated variants. Oncogenes KRAS and PIK3CA are also altered and likely participate in the increased proliferative potential of the mutated colonic epithelial cells in this population."	"Human Marfan and Marfan-like Syndrome associated mutations lead to altered trafficking of the Type II TGFβ receptor in Caenorhabditis elegans. The transforming growth factor-β (TGFβ) family plays an important role in many developmental processes and when mutated often contributes to various diseases. Marfan syndrome is a genetic disease with an occurrence of approximately 1 in 5,000. The disease is caused by mutations in fibrillin, which lead to an increase in TGFβ ligand activity, resulting in abnormalities of connective tissues which can be life-threatening. Mutations in other components of TGFβ signaling (receptors, Smads, Schnurri) lead to similar diseases with attenuated phenotypes relative to Marfan syndrome. In particular, mutations in TGFβ receptors, most of which are clustered at the C-terminal end, result in Marfan-like (MFS-like) syndromes. Even though it was assumed that many of these receptor mutations would reduce or eliminate signaling, in many cases signaling is active. From our previous studies on receptor trafficking in C. elegans, we noticed that many of these receptor mutations that lead to Marfan-like syndromes overlap with mutations that cause mis-trafficking of the receptor, suggesting a link between Marfan-like syndromes and TGFβ receptor trafficking. To test this hypothesis, we introduced three of these key MFS and MFS-like mutations into the C. elegans TGFβ receptor and asked if receptor trafficking is altered. We find that in every case studied, mutated receptors mislocalize to the apical surface rather than basolateral surface of the polarized intestinal cells. Further, we find that these mutations result in longer animals, a phenotype due to over-stimulation of the nematode TGFβ pathway and, importantly, indicating that function of the receptor is not abrogated in these mutants. Our nematode models of Marfan syndrome suggest that MFS and MFS-like mutations in the type II receptor lead to mis-trafficking of the receptor and possibly provides an explanation for the disease, a phenomenon which might also occur in some cancers that possess the same mutations within the type II receptor (e.g. colon cancer)."	"TGF-β type 2 receptor-mediated modulation of the IL-36 family can be therapeutically targeted in osteoarthritis. Mechanisms that govern the shift from joint homeostasis to osteoarthritis (OA) remain unknown. Here, we identify a pathway used for joint development and homeostasis, and its role in OA. Using a combination of transgenic, pharmacological, and surgical conditions in mouse and human tissues, we found that TGF-β signaling promotes joint homeostasis through regulation of the IL-36 family. We identified IL-36 receptor antagonist (IL-36 in mice and IL-36RN in humans) as a potential disease-modifying OA drug. Specifically, OA development was associated with IL-36α up-regulation and IL-36Ra down-regulation in mice with tissue-specific postnatally induced ablation of Tgfbr2, mice treated with a TGF-β signaling inhibitor, mice with posttraumatic OA, and aging mice with naturally occurring OA. In human cartilage, OA severity was associated with decreased TGFBR2 and IL-36RN, whereas IL-36α increased. Functionally, intra-articular treatment with IL-36Ra attenuated OA development in mice, and IL-36RN reduced MMP13 in human OA chondrocytes. These findings highlight the relevance of TGFBR2-IL-36 interplay in joint homeostasis and IL-36RN as a potential therapeutic agent for OA."	"Update on Clinical Trials of Losartan With and Without β-Blockers to Block Aneurysm Growth in Patients With Marfan Syndrome: A Review. Thoracic aortic aneurysms leading to acute aortic dissections are a major cause of morbidity and mortality despite significant advances in surgical treatment, which remains the main intervention to prevent type A dissections. In the past 2 decades progress has been made toward a better understanding of molecular mechanisms that lead to aneurysm formation and dissections of the thoracic aorta. This focused review emphasizes the results of clinical trials using β-blocker, losartan potassium, and irbesartan in patients with Marfan syndrome and comments briefly on mechanisms of aortic remodeling, including fibrosis and transforming growth factor β signaling. The major risk factors for the disease are increased hemodynamic forces, typically owing to poorly controlled hypertension, and heritable genetic variants. The altered genes predisposing to thoracic aortic disease have been shown or are predicted to decrease vascular smooth muscle cell contraction, decrease transforming growth factor β signaling, or alter the extracellular matrix. Preclinical models of Marfan syndrome showed promising results for losartan as a potential therapy to attenuate aortic dilation in mice. However, several clinical trials did not conclusively confirm that losartan attenuated aortic aneurysm expansion better than β-blockers. Most importantly, clinical trials assessing whether losartan therapy not only reduces aortic growth but also improves adverse aortic outcomes, including dissection, need for surgery, and death, have not been conducted. The largest trial to date to our knowledge, the Pediatric Heart Network trial, sponsored by the National Heart, Lung, and Blood Institute, showed a nonsignificant increase in adverse aortic outcomes, with almost a doubling of adverse events in patients randomized to losartan treatment compared with β-blockers, suggesting that this study was underpowered to assess adverse aortic outcomes. On the other hand, the evidence for β-blocker therapy to reduce morbidity and mortality in Marfan syndrome is limited to a single small, prospective randomized and nonblinded clinical trial. Taken together, these data emphasize the need for clinical trials adequately powered to assess both aortic aneurysm growth and adverse aortic outcomes to identify effective medical therapies for Marfan syndrome and other aortopathies."	"Glomerulonephritis triggered by chronical aortic graft infection in a male with Loeys-Dietz syndrome: A case report. Glomerulonephritis triggered by a chronically infected graft is increasingly identified because of widely used implanted device. Removal of the aortic graft and sustained antibiotic therapy is the usual approach to maximize the chance of renal recovery, but as this case shows graft removal is not always possible. A 35-year-old man with intractable and recurrent fever had acute renal failure in sustained antibiotic therapy. Renal biopsy suggested crescentic glomerulonephritis. fluorodeoxyglucose/positron emission tomography-computed tomography showed increased metabolic activity at the site of aortic graft, reminding that chronic infection of an implanted graft can lead to severe glomerulonephritis. TGFBR2 c.1133G&gt;T mutation was observed in mutation analysis, which was reported to be associated with Loeys-Dietz syndrome. Although infection was properly controlled with appropriate antimicrobial treatment, his renal dysfunction did not improve. A short-term inclusion of low-dose corticosteroid significantly benefit without introducing harm. He partly recovered from renal injury. In patients with glomerulonephritis triggered by a long-duration infection, low-dose corticosteroid therapy may be considered when renal dysfunction secondary to nephritis does not improve after appropriate antimicrobial treatment."	"Isolation and enrichment of mouse insulin-specific CD4<sup>+</sup> T regulatory cells. Polyclonal T regulatory cells (Treg - CD4<sup>+</sup>CD25<sup>+</sup>CD127<sup>low</sup>Foxp3<sup>+</sup>) are used in several protocols for the treatment of type 1 diabetes (T1D), multiple sclerosis and graft-versus host disease in clinical trials. However, general opinion is that autoantigen-specific Treg could be more efficient in autoimmunity suppression due to their direct effect on pathogenic autoantigen-specific effector T cells. This study describes isolation and expansion of insulin-specific Treg in vitro. Insulin-specific Treg are uniformly distributed in lymphoid tissues however their number is extremely low. To enrich the proportion of insulin-specific Treg, pure CD4<sup>+</sup> cells were co-cultured with insulin B chain peptide-loaded dendritic cells, isolated from mice that develop T1D spontaneously - NOD mice. Insulin-specific CD4<sup>+</sup> cell expansion peaked after 48 h of incubation and was in favour of Treg. These cells were then sorted using insulin peptide-loaded MHC class II tetramers and cultured in vitro for 48 h in the presence of TCR stimulators, TGF-β and IL-2. The proportion of gained insulin-specific cells with T regulatory phenotype (CD4<sup>+</sup>CD25<sup>high</sup>CD127<sup>low</sup>GITR<sup>+</sup>FoxP3<sup>+</sup>) was in average between 93% and 97%. These cells have shown potent in vitro suppressive effect on T effector cells, produced IL-10 and TGF-β and expressed PD-1 and CD39. Further proliferation of these insulin-specific Treg required the presence of dendritic cells, anti-CD3 antibody and IL-2. This study provides new, reproducible experimental design for the enrichment and expansion of insulin-specific Treg that can be used for the cell-based therapy of autoimmunity."	"Candesartan inhibits inflammation through an angiotensin II type 1 receptor independent way in human embryonic kidney epithelial cells. Besides stimulating vasoconstriction, Angiotensin II is also well known in inducing reactive oxygen species and promoting inflammatory phenotype switch via its type 1 receptor. In clinic, Angiotensin II type 1 (AT1) receptor blocker like candesartan has been widely applied as an antihypertensive medication. We previous have demonstrated that a higher dose of candesartan plays a protective role after kidney injury. However, whether candesartan could exhibit anti-inflammatory effects remains unclear. Here, by stimulating isolated human embryonic kidney epithelial cells with tumor necrosis factor-α (TNF-α), we observed the anti-inflammation capacity of candesartan ex vivo. It was found that pre-treat with candesartan significantly suppressed transforming growth factor-β (TGF-β) and interleukin-6 (IL-6) expression after incubation with TNF-α. Surprisingly, silence of angiotensin II type 1 receptor has little effects on reducing TGF-β or IL-6 products. Furthermore, candesartan inhibited TNF-α-induced oxidative stress in the primary cultured tubular epithelial cells. Overall, our data indicates that candesartan suppresses TNF-α-induced inflammatory cytokine production by inhibiting oxidative stress, rather than block AT1 receptor activity."	"AHU377+Valsartan (LCZ696) Modulates Renin-Angiotensin System (RAS) in the Cardiac of Female Spontaneously Hypertensive Rats Compared With Valsartan. Hypertension is a major cause of death and morbidity worldwide and is increasing in prevalence. The Renin-angiotensin system (RAS) is the most common mechanism involved in the pathophysiology of hypertension. Understanding the mechanism of the pathophysiologic processes will help direct potential therapeutic strategies to treat hypertension and improve cardiac function. Recently, a novel drug LCZ696 containing both an angiotensin receptor blocker valsartan and a neprilysin inhibitor (AHU377) has shown a promising effect on the treatment of hypertension. However, the effects of LCZ696 on the expression of main components of RAS, namely, angiotensin-converting enzyme (ACE), angiotensin-converting enzyme 2 (ACE2), angiotensin II type 1 receptor (AT1 R), angiotensin II type 2 receptor (AT2 R), and angiotensin (1-7) receptor/Mas receptor (MasR) remain unclear. The aim of the present study was to evaluate the effects of LCZ696 on the protective arms of RAS in the cardiac tissue when compared with valsartan under the equal inhibition of AT1 R. We hypothesized that the superior effects of LCZ696 may contribute to its greater effect on the RAS than valsartan. Sixteen-week-old female spontaneously hypertensive rats (SHRs) were used in this study. Wistar-Kyoto (WKY) rats were used as controls. All rats were randomly divided into LCZ696 (n = 10), valsartan (n = 10), SHR (n = 10), and WKY (n = 10) groups under a 12-hour dark and 12-hour light cycle and provided with regular chow diet and water. The tail-cuff method was performed to measure blood pressure. Cardiac function was assessed by echocardiography. The blood pressure value was lower in LCZ696 than valsartan in SHR after 12 weeks of treatment. Further, LCZ696 inhibits the ACE and AT1 R protein expression in the cardiac of SHR and significantly upregulate the protective axis of RAS components, including ACE2, MasR, and AT2 R. Left ventricular AT2 R messenger RNA (mRNA) expression was higher in the LCZ696+SHR group compared with valsartan. In addition, real-time polymerase chain reaction analysis revealed that LCZ696 enhanced the mRNA expression of antihypertensive components AT2 R, ACE2, and MasR and decreased the expression of AT1 R. However, only AT2 R and ACE2 mRNA expressions have a statistical difference between the LCZ696 and valsartan groups. No difference was observed in the mRNA expression of ACE and MasR. The stronger positive signal of transforming growth factor β in the left ventricle was inhibited in each administrated group compared with SHR groups. LCZ696 ameliorates the vasoconstrictor axis of the RAS AT1 R and stimulate the protective arm effectors, ACE2 and AT2 R, as well as reverses the compensatory upregulation of neuronal nitric oxide synthase and endothelial nitric oxide synthase in SHR. These findings suggest the mechanistic insight of the cardiac-protective and greater hypotensive effects of LCZ696."	"miR‑145‑5p is associated with pathological complete response to neoadjuvant chemotherapy and impairs cell proliferation by targeting TGFβR2 in breast cancer. Cancer patients who better benefit from neoadjuvant chemotherapy (NeoCh) are those who achieve a successful pathological complete response (pCR) represented by the absence of residual disease. Unfortunately, no highly sensitive and specific tumor biomarkers for predicting the clinical response to NeoCh have yet been defined. The aim of the present study was to ascertain whether miR‑145‑5p could discriminate between pCR and no‑pCR in triple‑negative breast cancer patients that received a cisplatin/doxorubicin‑based neoadjuvant treatment. miR‑145‑5p expression was determined in breast tumors by quantitative RT‑PCR. Our data showed that miR‑145‑5p had a significant low expression (P&lt;0.005) in patients that achieved pCR in comparison to the non‑responder group. Kaplan Meier analysis indicated that low levels of miR‑145‑5p were associated with increased disease‑free survival. In addition, receiver operating characteristic (ROC) curve analysis suggested that miR‑145‑5p is a good predictor of pCR (P&lt;0.003, AUC=0.7899, 95% CI, 0.6382‑0.9416). Quantitative RT‑PCR expression analysis also revealed that miR‑145‑5p was downregulated in four breast cancer cell lines relative to normal cells. To study the functions of miR‑145‑5p, its expression was restored in triple‑negative MDA‑MB‑231 cells and its effects in cell proliferation were evaluated by MTT assays and in apoptosis using Annexin V experiments. Data revealed that ectopic expression of miR‑145‑5p resulted in a significant inhibition of cell proliferation and also induced apoptosis. Moreover, miR‑145‑5p led to sensitization of breast cancer cells to cisplatin therapy. In addition, western blot assays indicated that miR‑145‑5p downregulated the TGFβR2 protein. In conclusion, miR‑145‑5p could be a potential biomarker of clinical response to NeoCh in triple‑negative breast cancer. Functionally miR‑145‑5p may regulate cell proliferation, at least in part, by targeting TGFβR2."	"Genetic basis of hereditary thoracic aortic aneurysms and dissections. Recent advances in DNA sequencing technology have identified several causative genes for hereditary thoracic aortic aneurysms and dissections (TAADs), including Marfan syndrome (MFS), Loeys-Dietz syndrome, vascular Ehlers-Danlos syndrome, and familial non-syndromic TAADs. Syndromic TAADs are typically caused by pathogenic variants in the transforming growth factor-β signal and extracellular matrix-related genes (e.g. FBN1, TGFBR1, TGFBR2, SMAD3, TGFB2, and COL3A1). On the other hand, approximately 20% of the non-syndromic hereditary TAADs result from altered components of the contractile apparatus of vascular smooth muscle cells, which are encoded by ACTA2, MYH11, MYLK, and PRKG1 genes; however, the remaining 80% cannot be explained by previously reported candidate genes. Moreover, the relationship between the genotype and phenotype of TAADs has extensively been reported to investigate better methods for risk stratification and further personalized treatment strategies. With regard to MFS-causing FBN1, recent reports have shown significantly increased risk of aortic events in patients carrying a truncating variant or a variant exhibiting a haploinsufficient-type effect, typically comprising nonsense or small insertions/deletions resulting in out-of-frame effects, compared to those carrying a variant with dominant negative-type effect, typically comprising missense variants. Therefore, cardiologists are required to have sufficient knowledge regarding the genetics of hereditary TAADs for providing the best clinical management, with an appropriate genetic counseling. In the current review, we present current advances in the genetics of hereditary TAADs and discuss the benefits and limitations with respect to the use of this genetic understanding in clinical settings."	"Effects of rikkunshito on renal fibrosis and inflammation in angiotensin II-infused mice. The underlying pathogenesis of chronic kidney disease involves an activated renin-angiotensin system and systemic inflammation which ultimately develop renal injury. Rikkunshito (RKT) has been reported to exert anti-fibrotic and anti-inflammatory effects through enhancement of ghrelin signaling pathway. In this study, we investigated the effects of RKT on renal fibrosis and inflammation in angiotensin II (Ang II)-induced renal injury model. Ang II-infused mice exhibited hypertension, cardiac hypertrophy, increases in blood urea nitrogen and serum creatinine, moderate albuminuria and renal pathological changes such as mild urinary cast, interstitial macrophage infiltration and modest interstitial fibrosis. RKT had no evident effects on the Ang II-induced renal functional insufficiency and fibrosis, but attenuated renal interstitial macrophage infiltration. In addition, RKT significantly restored the Ang II-induced alteration in the expression of renal fibrosis- and inflammation-related genes such as type 3 collagen, transforming growth factor-β, monocyte chemoattractant protein-1 and interleukin-6. Furthermore, although RKT did not affect the expression of renal ghrelin receptor, an Ang II-induced decrease in renal sirtuin 1 expression, a critical down-stream pathway of the ghrelin receptor, was restored by RKT. These findings suggest that RKT potentially has a renal anti-inflammatory effect in the development of renal injury, and this effect could be mediated by the ghrelin signaling pathway."	"Anterior Cruciate Ligament Tear Promotes Skeletal Muscle Myostatin Expression, Fibrogenic Cell Expansion, and a Decline in Muscle Quality. Anterior cruciate ligament (ACL) tears result in significant quadriceps muscle atrophy that is resistant to recovery despite extensive rehabilitation. Recent work suggests an elevated fibrotic burden in the quadriceps muscle after the injury, which may limit recovery. Elucidating the mechanisms and cell types involved in the progression of fibrosis is critical for developing new treatment strategies. To identify factors contributing to the elevated fibrotic burden found after the injury. Descriptive laboratory study. After an ACL injury, muscle biopsy specimens were obtained from the injured and noninjured vastus lateralis of young adults (n = 14, mean ± SD: 23 ± 4 years). The expression of myostatin, transforming growth factor β, and other regulatory factors was measured, and immunohistochemical analyses were performed to assess turnover of extracellular matrix components. Injured limb skeletal muscle demonstrated elevated myostatin gene ( P &lt; .005) and protein ( P &lt; .0005) expression, which correlated ( R<sup>2</sup> = 0.38, P &lt; .05) with fibroblast cell abundance. Immunohistochemical analysis showed that human fibroblasts express the activin type IIB receptor and that isolated primary human muscle-derived fibroblasts increased proliferation after myostatin treatment in vitro ( P &lt; .05). Collagen 1 and fibronectin, primary components of the muscle extracellular matrix, were significantly higher in the injured limb ( P &lt; .05). The abundance of procollagen 1-expressing cells as well as a novel index of collagen remodeling was also elevated in the injured limb ( P &lt; .05). These findings support a role for myostatin in promoting fibrogenic alterations within skeletal muscle after an ACL injury. The current work shows that the cause of muscle quality decline after ACL injury likely involves elevated myostatin expression, and future studies should explore therapeutic inhibition of myostatin to facilitate improvements in muscle recovery and return to sport."	"c-Ski accelerates renal cancer progression by attenuating transforming growth factor β signaling. Although transforming growth factor beta (TGF-β) is known to be involved in the pathogenesis and progression of many cancers, its role in renal cancer has not been fully investigated. In the present study, we examined the role of TGF-β in clear cell renal carcinoma (ccRCC) progression in vitro and in vivo. First, expression levels of TGF-β signaling pathway components were examined. Microarray and immunohistochemical analyses showed that the expression of c-Ski, a transcriptional corepressor of Smad-dependent TGF-β and bone morphogenetic protein (BMP) signaling, was higher in ccRCC tissues than in normal renal tissues. Next, a functional analysis of c-Ski effects was carried out. Bioluminescence imaging of renal orthotopic tumor models demonstrated that overexpression of c-Ski in human ccRCC cells promoted in vivo tumor formation. Enhancement of tumor formation was also reproduced by the introduction of a dominant-negative mutant TGF-β type II receptor into ccRCC cells. In contrast, introduction of the BMP signaling inhibitor Noggin failed to accelerate tumor formation, suggesting that the tumor-promoting effect of c-Ski depends on the inhibition of TGF-β signaling rather than of BMP signaling. Finally, the molecular mechanism of the tumor-suppressive role of TGF-β was assessed. Although TGF-β signaling did not affect tumor angiogenesis, apoptosis of ccRCC cells was induced by TGF-β. Taken together, these findings suggest that c-Ski suppresses TGF-β signaling in ccRCC cells, which, in turn, attenuates the tumor-suppressive effect of TGF-β."	"Angiotensin blockade attenuates diabetic nephropathy in hypogonadal adult male rats. This study examined the effect of the aromatase inhibitor letrozole (0.5 mg/kg) alone or in combination with the angiotensin-receptor blocker valsartan (30 mg/kg) against streptozocin-induced diabetic nephropathy (DN) in hypogonadal (HG) rats for 12 weeks. First, we tested the HG effect on hormone levels, inflammatory cytokines, and oxidative stress in nondiabetic (ND) and diabetic (D) rats. HG was induced with the luteinizing hormone-releasing hormone antagonist cetrorelix (0.71 mg/kg). Diabetes enhanced hormonal hypogonadism and increased inflammation and oxidative stress. Next, experiments examined the effect of early letrozole and valsartan intervention on DN in HG rats. HG-ND and HG-D rats were treated with letrozole alone or in combination with valsartan. HG-D rats developed proteinuria and had increased blood urea nitrogen and creatinine, and histopathological evidence of renal injury, including glomerular hypertrophy and mesangial expansion. Valsartan alone or in combination with letrozole reduced proteinuria, improved renal functions, and reduced diabetes-induced renal angiotensin II. Both agents ameliorated nuclear factor kappa light chain enhancer of activated B cells, interleukin 1β, interleukin 6, and tumor necrosis factor alpha levels. The combination decreased superoxide dismutase, malondialdehyde, and glutathione peroxidase levels, and prevented glomerular hypertrophy. In HG-D rats, valsartan reduced renal collagen IV and transforming growth factor-beta 1, especially when the testosterone level was corrected by letrozole. Thus, normalizing testosterone and inhibiting renal angiotensin II have a renoprotective effect against DN in HG male rats."	"β-hCG-induced mutant BRCA1 ignites drug resistance in susceptible breast tissue. β-hCG expression in breast cancer is highly controversial with reports supporting both protective and tumorigenic effects. It has also been reported that risk of breast cancer at an early age is increased with full-term pregnancies if a woman is a BRCA1 mutation carrier. We have already demonstrated that BRCA1-defective cells express high levels of β-hCG and that when BRCA1 is restored, β-hCG level is reduced. Also, BRCA1 can bind to the promoter and reduce the levels of β-hCG. β-hCG induces tumorigenicity in BRCA1-defective cells by directly binding to TGFBRII and induces TGFBRII-mediated cell proliferation. In this study, we analyzed the mechanism of action of β-hCG on BRCA1 expression and its influence on drug sensitivity in breast cancer cells. We demonstrate that β-hCG induces mutant BRCA1 protein expression in BRCA1 mutant cells; however, in BRCA1 wild-type cells, β-hCG reduced wild-type BRCA1 protein expression. Transcriptionally, β-hCG could induce Slug/LSD1-mediated repression of wild-type and mutant BRCA1 messenger RNA levels. However, β-hCG induces HSP90-mediated stabilization of mutant BRCA1 and hence the overexpression of mutant BRCA1 protein, resulting in partial restoration of homologous recombination repair of damaged DNA. This contributes to drug resistance to HSP90 inhibitor 17AAG in BRCA1-defective cancer cells. A combination of HSP90 inhibitor and TGFBRII inhibitor has shown to sensitize β-hCG expressing BRCA1-defective breast cancers to cell death. Targeting the β-hCG-HSP90-TGFBRII axis could prove an effective treatment strategy for BRCA1-mutated breast tumors."	"Injury-Induced Shedding of Extracellular Vesicles Depletes Endothelial Cells of Cav-1 (Caveolin-1) and Enables TGF-β (Transforming Growth Factor-β)-Dependent Pulmonary Arterial Hypertension. Objective- To determine whether pulmonary arterial hypertension is associated with endothelial cell (EC)-Cav-1 (caveolin-1) depletion, EC-derived extracellular vesicle cross talk with macrophages, and proliferation of Cav-1 depleted ECs via TGF-β (transforming growth factor-β) signaling. Approach and Results- Pulmonary vascular disease was induced in Sprague-Dawley rats by exposure to a single injection of VEGFRII (vascular endothelial growth factor receptor II) antagonist SU5416 (Su) followed by hypoxia (Hx) plus normoxia (4 weeks each-HxSu model) and in WT (wild type; Tie2.Cre<sup>-</sup>; Cav1 <sup>lox/lox</sup>) and EC- Cav1<sup>-/-</sup> (Tie2.Cre<sup>+</sup>; Cav1 <sup>fl/fl</sup>) mice (Hx: 4 weeks). We observed reduced lung Cav-1 expression in the HxSu rat model in association with increased Cav-1+ extracellular vesicle shedding into the circulation. Whereas WT mice exposed to hypoxia exhibited increased right ventricular systolic pressure and pulmonary microvascular thickening compared with the group maintained in normoxia, the remodeling was further increased in EC- Cav1<sup>-/-</sup> mice indicating EC Cav-1 expression protects against hypoxia-induced pulmonary hypertension. Depletion of EC Cav-1 was associated with reduced BMPRII (bone morphogenetic protein receptor II) expression, increased macrophage-dependent TGF-β production, and activation of pSMAD2/3 signaling in the lung. In vitro, in the absence of Cav-1, eNOS (endothelial NO synthase) dysfunction was implicated in the mechanism of EC phenotype switching. Finally, reduced expression of EC Cav-1 in lung histological sections from human pulmonary arterial hypertension donors was associated with increased plasma concentration of Cav-1, extracellular vesicles, and TGF-β, indicating Cav-1 may be a plasma biomarker of vascular injury and key determinant of TGF-β-induced pulmonary vascular remodeling. Conclusions- EC Cav-1 depletion occurs, in part, via Cav-1+ extracellular vesicle shedding into the circulation, which contributes to increased TGF-β signaling, EC proliferation, vascular remodeling, and pulmonary arterial hypertension."	"The long noncoding RNA AK002107 negatively modulates miR-140-5p and targets TGFBR1 to induce epithelial-mesenchymal transition in hepatocellular carcinoma. The abnormal expression of long noncoding RNAs (lncRNAs) is associated with human carcinoma. The present study aimed to investigate the mechanisms underlying the function of lncRNA AK002107 in the progression of hepatocellular carcinoma (HCC). The differential expression of lncRNAs between HCC and paired nontumor tissues was identified using microarrays, and the correlation between the expression of lncRNA AK002107 and the clinical prognosis of HCC was analyzed. We investigated the role of lncRNA AK002107 in HCC tumor biology in vitro using 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyl-tetrazolium bromide (MTT), colony formation, and Matrigel invasion assays and in vivo by assessing the growth of xenografted HCC tumors. The potential microRNAs that interact with lncRNA AK002107 were identified using online tools and were verified using PCR and luciferase reporter assay. The levels of TGFBR1, E-cadherin, and vimentin were determined using western blot assays. We then further investigated the correlation between expression of lncRNA AK002107 with miR-140-5p and TGFBR1 expression in HCC tissues. The expression of lncRNA AK002107 is frequently upregulated in HCC samples and cell lines. Patients with HCC who have elevated lncRNA AK002107 expression exhibit poorer overall survival and disease-free survival. Silencing lncRNA AK002107 expression significantly inhibited HCC cell proliferation, colony formation, and invasion both in vitro and in vivo. Furthermore, lncRNA AK002107 directly binds to miR-140-5p and significantly inhibits miR-140-5p expression. The functions of lncRNA AK002107 in cell growth and tumor invasion are mediated via miR-140-5p. lncRNA AK002107 upregulated TGFBR1 expression and then induced epithelial-mesenchymal transition (EMT) by inhibiting miR-140-5p expression. The expression of lncRNA AK002107 inversely correlated with miR-140-5p expression and positively correlated with TGFBR1 expression in HCC tissues. In summary, lncRNA AK002107 functions as an oncogene in tumors by inhibiting miR-140-5p, targeting TGFBR1, and then inducing EMT. The lncRNA AK002107/miR-140-5p/TGFBR1/EMT regulatory network may be a valuable target for the development of novel diagnostic and treatment methods for HCC."	"Elevated circulating TGFβ1 during acute liver failure activates TGFβR2 on cortical neurons and exacerbates neuroinflammation and hepatic encephalopathy in mice. Acute liver failure resulting from drug-induced liver injury can lead to the development of neurological complications called hepatic encephalopathy (HE). Hepatic transforming growth factor beta 1 (TGFβ1) is upregulated due to liver failure in mice and inhibiting circulating TGFβ reduced HE progression. However, the specific contributions of TGFβ1 on brain cell populations and neuroinflammation during HE are not known. Therefore, the aim of this study was to characterize hepatic and brain TGFβ1 signaling during acute liver failure and its contribution to HE progression using a combination of pharmacological and genetic approaches. C57Bl/6 or neuron-specific transforming growth factor beta receptor 2 (TGFβR2) null mice (TGFβR2<sup>ΔNeu</sup>) were treated with azoxymethane (AOM) to induce acute liver failure and HE. The activity of circulating TGFβ1 was inhibited in C57Bl/6 mice via injection of a neutralizing antibody against TGFβ1 (anti-TGFβ1) prior to AOM injection. In all mouse treatment groups, liver damage, neuroinflammation, and neurological deficits were assessed. Inflammatory signaling between neurons and microglia were investigated in in vitro studies through the use of pharmacological inhibitors of TGFβ1 signaling in HT-22 and EOC-20 cells. TGFβ1 was expressed and upregulated in the liver following AOM injection. Pharmacological inhibition of TGFβ1 after AOM injection attenuated neurological decline, microglia activation, and neuroinflammation with no significant changes in liver damage. TGFβR2<sup>ΔNeu</sup> mice administered AOM showed no effect on liver pathology but significantly reduced neurological decline compared to control mice. Microglia activation and neuroinflammation were attenuated in mice with pharmacological inhibition of TGFβ1 or in TGFβR2<sup>ΔNeu</sup> mice. TGFβ1 increased chemokine ligand 2 (CCL2) and decreased C-X3-C motif ligand 1 (CX3CL1) expression in HT-22 cells and reduced interleukin-1 beta (IL-1ß) expression, tumor necrosis factor alpha (TNFα) expression, and phagocytosis activity in EOC-20 cells. Increased circulating TGFβ1 following acute liver failure results in activation of neuronal TGFβR2 signaling, driving neuroinflammation and neurological decline during AOM-induced HE."	"miR-1306 Mediates the Feedback Regulation of the TGF-β/SMAD Signaling Pathway in Granulosa Cells. Transforming growth factor-β receptor II (TGFBR2), the type II receptor of the TGF-β/SMA- and MAD-related protein (SMAD) signaling pathway, plays a crucial role in TGF-β signal transduction and is regulated by multiple factors. Nevertheless, the modulation of the non-coding RNA involved in the process of TGFBR2 expression in ovaries is not well studied. In our study, we isolated and characterized the 3'-untranslated region (UTR) of the porcine TGFBR2 gene and microRNA-1306 (miR-1306) was identified as the functional miRNA that targets TGFBR2 in porcine granulosa cells (GCs). Functional analysis showed that miR-1306 promotes apoptosis of GCs as well as attenuating the TGF-β/SMAD signaling pathway targeting and impairing TGFBR2 in GCs. Moreover, we identified the miR-1306 core promoter and found three potential SMAD4-binding elements (SBEs). Luciferase and chromatin immunoprecipitation (ChIP) assays revealed that the transcription factor SMAD4 directly binds to the miR-1306 core promoter and inhibits its transcriptional activity. Furthermore, the TGF-β/SMAD signaling pathway is modulated by SMAD4 positive feedback via inhibition of miR-1306 expression in GCs. Collectively, our findings provide evidence of an epigenetic mechanism that modulates as well as mediates the feedback regulation of the classical TGF-β/SMAD signaling pathway in GCs from porcine ovaries."	"Seeking for Correlative Genes and Signaling Pathways With Bone Metastasis From Breast Cancer by Integrated Analysis. Background: Bone metastasis frequently occurs in advanced breast cancer patients, and it is one of major causes of breast cancer associated mortality. The aim of the current study is to identify potential genes and related signaling pathways in the pathophysiology of breast cancer bone metastasis. Methods: Three mRNA expression datasets for breast cancer bone metastasis were obtained from Gene Expression Omnibus (GEO) dataset. The differentially expressed genes (DEGs) were obtained. Functional analyses, protein-protein interaction (PPI) network, and transcription factors (TFs)-target genes network was constructed. Real-time PCR using clinical specimens was conducted to justify the results from integrated analysis. Results: A 749 DEGs were obtained. Osteoclast differentiation and rheumatoid arthritis were two significantly enriched signaling pathways for DEGs in the bone metastasis of breast cancer. SMAD7 (degree = 10), TGFBR2 (degree = 9), VIM (degree = 8), FOS (degree = 8), PDGFRB (degree = 7), COL5A1 (degree = 6), ARRB2 (degree = 6), and ITGAV (degree = 6) were high degree genes in the PPI network. ETS1 (degree = 12), SPI1 (degree = 12), FOS (degree = 10), FLI1 (degree = 5), KLF4 (degree = 4), JUNB (degree = 4), NR3C1 (degree = 4) were high degree genes in the TFs-target genes network. Validated by QRT-PCR, the expression levels of IBSP, MMP9, MMP13, TNFAIP6, CD200, DHRS3, ASS1, RIPK4, VIM, and PROM1 were roughly consistent with our integrated analysis. Except PROM1, the other genes had a diagnose value for breast cancer bone metastasis. Conclusions: The identified DEGs and signaling pathways may make contribution for understanding the pathological mechanism of bone metastasis from breast cancer."	"Combined study on the single nucleotide polymorphisms in the follicle-stimulating hormone receptor (Ser680Asn) and anti-Müllerian hormone receptor type II (-482A&gt;G) as genetic markers in assisted reproduction. Background Infertile women may have underlying genetic abnormalities. There is, at present, a significant number of studies on the relation between the follicle stimulating hormone receptor (FSHR) or anti-Müllerian hormone type II receptor (AMHRII) polymorphisms and response to in-vitro fertilisation (IVF) treatment. However, it is not yet clear which genotype or combination of genotypes is favourable towards a better ovarian stimulation and pregnancy outcome. Materials and methods In this study we assessed the distribution of the genotypes of FSHR Ser680Asn and of AMHRII -482A&gt;G gene polymorphisms in a group of 126 infertile women and a control group of 100 fertile women by using real-time polymerase chain reaction (RT-PCR). Results Statistical analysis showed that the frequency of the genotypes is similar in both control and IVF/ intracytoplasmic sperm injection (ICSI) groups. Further investigation of the frequency of the nine possible combinations of these polymorphisms in the groups revealed no correlation between infertility and combination of the polymorphisms. Women with one polymorphism have on average 5.5 units higher levels of AMH compared to women carrying no polymorphism. In women with no polymorphisms, for each unit of FSH increase, the average concentration of blood AMH is expected to be 72% lower. Conclusion The distribution of the FSHR Ser680Asn and of the AMHRII -482A&gt;G gene polymorphisms, in the Greek population is similar in fertile and infertile women. The study showed that FSH and AMH correlated levels in certain cases could be used to estimate a patient's ovarian reserve."	"Reprogramming of CaCo2 colorectal cancer cells after using the complex of poly-(N-vinylpyrrolidone) with small non-coding RNAs. Small non-coding RNAs control normal development and differentiation in the embryo. These regulatory molecules play a key role in the development of human diseases and are used often today for researching new treatments for different pathologies. In this study, CaCo2 colorectal adenocarcinoma cells were initially epigenetically reprogrammed and transformed into CD4+ cells with nano-sized complexes of amphiphilic poly-(N-vinylpyrrolidone) (PVP) with miRNA-152 and piRNA-30074. The transformation of cells was confirmed by morphological and genetic changes in the dynamic of reprogramming. CD4+ lymphocytes marker was detected using immunofluorescence. Amphiphilic poly-(N-vinylpyrrolidone)/small non-coding RNAs complexes were investigated for transfection efficiency and duration of transfection of CaCo2 colorectal adenocarcinoma cells using fluorescence."	"Long non-coding RNA SNHG7 promotes the fracture repair through negative modulation of miR-9. Fracture is the most common disease in the orthopedics. Long non-coding small nucleolar RNA host gene 7 (SNHG7) has been confirmed to enhance cell proliferation and decrease cell apoptosis in many cancers. However, the role of SNHG7 in skeletal fracture remains largely to be elucidated. In the current study, we observed SNHG7 was down-regulated in femoral neck fracture tissues. In addition, SNHG7 knockdown inhibited proliferation and migration, induced apoptosis, reduced activity in osteoblast cells in vitro. Bioinformatics analysis revealed SNHG7 acts as a molecular sponge for miR-9 and MiR-9 directly targets with 3'-UTR of TGFBR2. Furthermore, SNHG7 knockdown repressed the TGF-β signaling pathway. Taken together, this study manifested SNHG7 promotes bone repair in femoral neck fracture, and may serve as a potential target for enhancing bone formation."	"Hemojuvelin is a novel suppressor for Duchenne muscular dystrophy and age-related muscle wasting. Muscle wasting occurs in response to various physiological and pathological conditions, including ageing and Duchenne muscular dystrophy (DMD). Transforming growth factor-β1 (TGF-β1) contributes to muscle pathogenesis in elderly people and DMD patients; inhibition of TGF-β1 signalling is a promising therapeutic strategy for muscle-wasting disorders. Hemojuvelin (HJV or Hjv as the murine homologue) is a membrane-bound protein that is highly expressed in skeletal muscle, heart, and liver. In hepatic cells, Hjv acts as a coreceptor for bone morphogenetic protein, a TGF-β subfamily member. The aim of this study was to investigate whether Hjv plays an essential role in muscle physiological and pathophysiological processes by acting as a coreceptor for TGF-β1 signalling. Conventional and conditional Hjv knockout mice as well as mdx and aged mice transfected with Hjv overexpression vector were used to study the role of Hjv in muscle physiology and pathophysiology. qRT-PCR, western blotting, and immunohistochemistry examinations were conducted to evaluate gene, protein, and structural changes in vivo and in vitro. Exercise endurance was determined using treadmill running test, and muscle force was detected by an isometric transducer. RNA interference, immunoprecipitation, and dual-luciferase reporter assays were utilized to explore the mechanism by which Hjv regulates TGF-β1 signalling in skeletal muscle. Conventional and conditional Hjv knockout mice displayed muscle atrophy, fibrosis, reduced running endurance, and muscle force. HJV was significantly down-regulated in the muscles of DMD patients (n = 3, mean age: 11.7 ± 5.7 years) and mdx mice as well as in those of aged humans (n = 10, 20% women, mean age: 75.1 ± 9.5 years) and mice. Overexpression of Hjv rescued dystrophic and age-related muscle wasting. Unlike its function in hepatic cells, the bone morphogenetic protein downstream phosphorylated p-Smad1/5/8 signalling pathway was unchanged, but TGF-β1, TGF-β receptor II (TβRII), and p-Smad2/3 expression were increased in Hjv-deficient muscles. Mechanistically, loss of Hjv promoted activation of Smad3 signalling induced by TGF-β1, whereas Hjv overexpression inhibited TGF-β1/Smad3 signalling by directly interacting with TβRII on the muscle membrane. Our findings identify an unrecognized role of HJV in skeletal muscle by regulating TGF-β1/Smad3 signalling as a coreceptor for TβRII. Unlike the TGF-β1/Smad3 pathway, HJV could be a reliable drug target as its expression is not widespread. Novel therapeutic strategies could potentially be devised to interfere only with the muscle function of HJV to treat DMD and age-related muscle wasting."	"Losartan improves erectile function through suppression of corporal apoptosis and oxidative stress in rats with cavernous nerve injury. This study aimed to investigate the functional and morphological changes in the corpus cavernosum after cavernous nerve (CN) injury or neurectomy and then reveal whether treatment with the angiotensin II Type 1 receptor antagonist losartan would improve erectile function as well as its potential mechanisms. A total of 48 10-week-old Sprague-Dawley male rats, weighing 300-350 g, were randomly divided into the following four groups (n = 12 per group): sham operation (Sham) group, bilateral cavernous nerve injury (BCNI) group, losartan-treated BCNI (BCNI + Losartan) group, and bilateral cavernous neurectomy (Neurectomy) group. Losartan was administered once daily by oral gavage at a dose of 30 mg kg<sup>-1</sup> day<sup>-1</sup> for 4 weeks starting on the day of surgery. The BCNI and the Neurectomy groups exhibited decreases in erectile response and increases in apoptosis and oxidative stress, compared with the Sham group. Treatment with losartan could have a modest effect on erectile function and significantly prevent corporal apoptosis and oxidative stress. The phospho-B-cell lymphoma 2 (Bcl-2)-associated death promoter (p-Bad)/Bad and phospho-the protein kinase B (p-AKT)/AKT ratios were substantially lower, while the Bcl-2-associated X protein (Bax)/Bcl-2 ratio, nuclear factor erythroid 2-related factor 2 (Nrf2)/Kelch-like ECH-associated protein 1 (Keap-1), transforming growth factor-β 1 (TGF-β 1) and heme oxygenase-1 (HO-1) levels, and caspase-3 activity were higher in the BCNI and Neurectomy groups than in the Sham group. After 4 weeks of daily administration with losartan, these expression levels were remarkably attenuated compared with the BCNI group. Taken together, our results suggested that early administration of losartan after CN injury could slightly improve erectile function and significantly reduce corporal apoptosis and oxidative stress by inhibiting the Akt/Bad/Bax/caspase-3 and Nrf2/Keap-1 pathways."	"In silico prediction of short hairpin RNA and in vitro silencing of activin receptor type IIB in chicken embryo fibroblasts by RNA interference. Gene silencing by RNA interference is extensively used reverse genetic approach to analyse the implications of any gene in mammalian systems. The silencing of the Activin type IIB receptor belonging to transforming growth factor beta superfamily has demonstrated increase in muscle growth in many species. We designed five short hairpin RNA constructs targeting coding region of chicken ACTRIIB. All the shRNAs were transfected into chicken embryo fibroblast cells and evaluated their silencing efficiency by real time PCR and western blotting. Initially the computational analysis of target region and shRNA constructs was undertaken to predict sequence based features (secondary structures, GC% and H-b index) and thermodynamic features (ΔGoverall, ΔGduplex, ΔGbreak-target, ΔGintra-oligomer, ΔGinter-oligomer and ΔΔGends). We determined that all these predicted features were associated with shRNA efficacy. The invitro analysis of shRNA constructs exhibited significant (P &lt; 0.05) reduction in the levels of ACTRIIB at mRNA and protein level. The knock down efficiency of shRNAs varied significantly (P &lt; 0.001) from 83% (shRNA 1) to 43% (shRNA 5). All the shRNAs up regulated the myogenic pathway associated genes (MyoD and MyoG) significantly (P &lt; 0.05). There was significant (P &lt; 0.05) up-regulation of IFNA, IFNB and MHCII transcripts. The ACTRIIB expression was inversely associated with the expression of myogenic pathway and immune response genes. The anti ACTRIIB shRNA construct 1 and 3 exhibited maximum knock down efficiency with minimal interferon response, and can be used for generating ACTRIIB knockdown chicken with higher muscle mass."	"Adipolin/CTRP12 protects against pathological vascular remodelling through suppression of smooth muscle cell growth and macrophage inflammatory response. Secreted factors produced by adipose tissue are involved in the pathogenesis of cardiovascular disease. We previously identified adipolin, also known as C1q/TNF-related protein 12, as an insulin-sensitizing adipokine. However, the role of adipolin in vascular disease remains unknown. Here, we investigated whether adipolin modulates pathological vascular remodelling. Adipolin-knockout (APL-KO) and wild-type (WT) mice were subjected to wire-induced injury of the femoral artery. APL-KO mice showed increased neointimal thickening after vascular injury compared with WT mice, which was accompanied by an enhanced inflammatory response and vascular cell proliferation in injured arteries. Adipolin deficiency also led to a reduction in transforming growth factor-β (TGF-β) 1 protein levels in injured arteries. Treatment of cultured macrophages with adipolin protein led to a reduction in lipopolysaccharide-stimulated expression of inflammatory mediators, including tumour necrosis factor (TNF)-α, interleukin (IL) 6, and monocyte chemotactic protein (MCP)-1. These effects were reversed by inhibition of TGF-β receptor II (TGF-βRII)/Smad2 signalling. Adipolin also reduced platelet-derived growth factor (PDGF)-BB-stimulated proliferation of vascular smooth muscle cells (VSMCs) through a TGF-βRII/Smad2-dependent pathway. Furthermore, adipolin treatment significantly increased TGF-β1 concentration in media from cultured VSMCs and macrophages. These data indicate that adipolin protects against the development of pathological vascular remodelling by attenuating macrophage inflammatory responses and VSMC proliferation."	"lncRNA KHPS1 Activates a Poised Enhancer by Triplex-Dependent Recruitment of Epigenomic Regulators. Transcription of the proto-oncogene SPHK1 is regulated by KHPS1, an antisense RNA that activates SPHK1 expression by forming a triple-helical RNA-DNA-DNA structure at the SPHK1 enhancer. Triplex-mediated tethering of KHPS1 to its target gene is required for recruitment of E2F1 and p300 and transcription of the RNA derived from the SPHK1 enhancer (eRNA-Sphk1). eRNA-Sphk1 evicts CTCF, which insulates the enhancer from the SPHK1 promoter, thus facilitating SPHK1 expression. Genomic deletion of the triplex-forming sequence attenuates SPHK1 expression, leading to decreased cell migration and invasion. Replacement of the triplex-forming region (TFR) of KHPS1 by the TFR of the lncRNA MEG3 tethers KHPS1 to the MEG3 target gene TGFBR1, underscoring the interchangeability and anchoring function of sequences involved in triplex formation. Altogether, the results reveal a triplex-driven feedforward mechanism involving lncRNA-dependent induction of eRNA, which enhances expression of specific target genes."	"LRG1 Promotes Diabetic Kidney Disease Progression by Enhancing TGF-β-Induced Angiogenesis. Glomerular endothelial dysfunction and neoangiogenesis have long been implicated in the pathogenesis of diabetic kidney disease (DKD). However, the specific molecular pathways contributing to these processes in the early stages of DKD are not well understood. Our recent transcriptomic profiling of glomerular endothelial cells identified a number of proangiogenic genes that were upregulated in diabetic mice, including leucine-rich α-2-glycoprotein 1 (LRG1). LRG1 was previously shown to promote neovascularization in mouse models of ocular disease by potentiating endothelial TGF-β/activin receptor-like kinase 1 (ALK1) signaling. However, LRG1's role in the kidney, particularly in the setting of DKD, has been unclear. We analyzed expression of LRG1 mRNA in glomeruli of diabetic kidneys and assessed its localization by RNA in situ hybridization. We examined the effects of genetic ablation of Lrg1 on DKD progression in unilaterally nephrectomized, streptozotocin-induced diabetic mice at 12 and 20 weeks after diabetes induction. We also assessed whether plasma LRG1 was associated with renal outcome in patients with type 2 diabetes. LRG1 localized predominantly to glomerular endothelial cells, and its expression was elevated in the diabetic kidneys. LRG1 ablation markedly attenuated diabetes-induced glomerular angiogenesis, podocyte loss, and the development of diabetic glomerulopathy. These improvements were associated with reduced ALK1-Smad1/5/8 activation in glomeruli of diabetic mice. Moreover, increased plasma LRG1 was associated with worse renal outcome in patients with type 2 diabetes. These findings identify LRG1 as a potential novel pathogenic mediator of diabetic glomerular neoangiogenesis and a risk factor in DKD progression."	"Anti-Müllerian Hormone Gene Polymorphism is Associated with Clinical Pregnancy of Fresh IVF Cycles. The aim of this study was to examine the effects of single-nucleotide polymorphisms (SNPs) in the anti-Müllerian hormone (AMH) and AMH type II receptor (AMHRII) genes on in vitro fertilization (IVF) outcomes. In this prospective cohort study, we genotyped the AMH 146 T &gt; G, AMHRII -482 A &gt; G and AMHRII IVS1 +149 T &gt; A variants in 635 women undergoing their first cycle of controlled ovarian stimulation for IVF. DNA was extracted from the peripheral blood of all participants, and the SNPs were genotyped by real-time polymerase chain reaction. The distributions, frequencies of genes, and correlation with clinical pregnancy of IVF were analyzed. The AMH 146 T &gt; G G/G genotype in women was associated with a lower clinical pregnancy rate (T/T: 55.0%, T/G: 51.8%, G/G: 40.0%; p &lt; 0.05). Women with the AMH 146 T &gt; G GG genotype were half as likely to have a clinical pregnancy compared with women with TT genotypes (OR = 0.55, 95% CI: 0.34⁻0.88, p = 0.014). With multivariate analysis, the AMH 146 T &gt; G GG genotype remains as a significant independent factor to predict clinical pregnancy (p = 0.014). No significant difference was found between AMHRII polymorphisms and clinical pregnancy outcomes of IVF. In conclusion, our results show that AMH 146 T &gt; G seems to be a susceptibility biomarker capable of predicting IVF pregnancy outcomes. Further studies should focus on the mechanism of these associations and the inclusion of other ethnic populations to confirm the findings of this study."	"Transcript abundance of stromal and thecal cell related genes during bovine ovarian development. Movement and expansion of mesonephric-derived stroma appears to be very important in the development of the ovary. Here, we examined the expression of 24 genes associated with stroma in fetal ovaries during gestation (n = 17; days 58-274) from Bos taurus cattle. RNA was isolated from ovaries for quantitative RT-PCR. Expression of the majority of genes in TGFβ signalling, stromal transcription factors (NR2F2, AR), and some stromal matrix genes (COL1A1, COL3A1 and FBN1, but not FBN3) showed a positive linear increase with gestational age. Expression of genes associated with follicles (INSL3, CYP17A1, CYP11A1 and HSD3B1), was low until mid-gestation and then increased with gestational age. LHCGR showed an unusual bimodal pattern; high levels in the first and last trimesters. RARRES1 and IGFBP3 also increased with gestational age. To relate changes in gene expression in stromal cells with that in non stromal cells during development of the ovary we combined the data on the stromal genes with another 20 genes from non stromal cells published previously and then performed hierarchical clustering analysis. Three major clusters were identified. Cluster 1 genes (GATA4, FBN3, LHCGR, CYP19A1, ESR2, OCT4, DSG2, TGFB1, CCND2, LGR5, NR5A1) were characterised by high expression only in the first trimester. Cluster 2 genes (FSHR, INSL3, HSD3B1, CYP11A1, CYP17A1, AMH, IGFBP3, INHBA) were highly expressed in the third trimester and largely associated with follicle function. Cluster 3 (COL1A1, COL3A1, FBN1, TGFB2 TGFB3, TGFBR2, TGFBR3, LTBP2, LTBP3, LTBP4, TGFB1I1, ALDH1A1, AR, ESR1, NR2F2) had much low expression in the first trimester rising in the second trimester and remaining at that level during the third trimester. Cluster 3 contained members of two pathways, androgen and TGFβ signalling, including a common member of both pathways namely the androgen receptor cofactor TGFβ1 induced transcript 1 protein (TGFB1I1; hic5). GATA4, FBN3 and LHCGR, were highly correlated with each other and were expressed highly in the first trimester during stromal expansion before follicle formation, suggesting that this could be a critical phase in the development of the ovarian stroma."	"Endothelial miR-30c suppresses tumor growth via inhibition of TGF-β-induced Serpine1. In tumors, extravascular fibrin forms provisional scaffolds for endothelial cell (EC) growth and motility during angiogenesis. We report that fibrin-mediated angiogenesis was inhibited and tumor growth delayed following postnatal deletion of Tgfbr2 in the endothelium of Cdh5-CreERT2 Tgfbr2fl/fl mice (Tgfbr2iECKO mice). ECs from Tgfbr2iECKO mice failed to upregulate the fibrinolysis inhibitor plasminogen activator inhibitor 1 (Serpine1, also known as PAI-1), due in part to uncoupled TGF-β-mediated suppression of miR-30c. Bypassing TGF-β signaling with vascular tropic nanoparticles that deliver miR-30c antagomiRs promoted PAI-1-dependent tumor growth and increased fibrin abundance, whereas miR-30c mimics inhibited tumor growth and promoted vascular-directed fibrinolysis in vivo. Using single-cell RNA-Seq and a NanoString miRNA array, we also found that subtypes of ECs in tumors showed spectrums of Serpine1 and miR-30c expression levels, suggesting functional diversity in ECs at the level of individual cells; indeed, fresh EC isolates from lung and mammary tumor models had differential abilities to degrade fibrin and launch new vessel sprouts, a finding that was linked to their inverse expression patterns of miR-30c and Serpine1 (i.e., miR-30chi Serpine1lo ECs were poorly angiogenic and miR-30clo Serpine1hi ECs were highly angiogenic). Thus, by balancing Serpine1 expression in ECs downstream of TGF-β, miR-30c functions as a tumor suppressor in the tumor microenvironment through its ability to promote fibrin degradation and inhibit blood vessel formation."	"An unusual case of undescended testis: type II persistent Müllerian duct syndrome. NA"	"Comprehensive Analysis of Driver Genes in Personal Genomes of Clear Cell Renal Cell Carcinoma. To characterize personal driver genes in clear cell renal cell carcinoma independent of somatic mutation frequencies. Personal cancer driver genes were predicted by Integrated CAncer GEnome Score in 417 patients with clear cell renal cell carcinoma using 26 786 somatic mutations from The Cancer Genome Atlas, followed by an integrated investigation on personal driver genes. A total of 233 personal driver genes were determined by Integrated CAncer GEnome Score. The coexpression network analysis found 5 coexpressed modules. The blue module was significantly negatively correlated with all 5 clinical features, including cancer stage, lymph node metastasis, distant metastasis, age, and survival status (death). CTNNB1, TGFBR2, KDR, FLT1, and INSR were the hub genes in the blue module. The expression of 79 personal driver genes was significantly associated with clinical outcomes of patients with clear cell renal cell carcinoma. The set of personal driver genes sheds insights into the tumorigenesis of clear cell renal cell carcinoma and paves the way for developing personalized medicine for clear cell renal cell carcinoma."	"Impaired αVβ8 and TGFβ signaling lead to microglial dysmaturation and neuromotor dysfunction. Microglia play a pivotal role in the coordination of brain development and have emerged as a critical determinant in the progression of neurodegenerative diseases; however, the role of microglia in the onset and progression of neurodevelopmental disorders is less clear. Here we show that conditional deletion of αVβ8 from the central nervous system (Itgb8ΔCNS mice) blocks microglia in their normal stepwise development from immature precursors to mature microglia. These &quot;dysmature&quot; microglia appear to result from reduced TGFβ signaling during a critical perinatal window, are distinct from microglia with induced reduction in TGFβ signaling during adulthood, and directly cause a unique neurodevelopmental syndrome characterized by oligodendrocyte maturational arrest, interneuron loss, and spastic neuromotor dysfunction. Consistent with this, early (but not late) microglia depletion completely reverses this phenotype. Together, these data identify novel roles for αVβ8 and TGFβ signaling in coordinating microgliogenesis with brain development and implicate abnormally programmed microglia or their products in human neurodevelopmental disorders that share this neuropathology."	"Znhit1 controls intestinal stem cell maintenance by regulating H2A.Z incorporation. Lgr5+ stem cells are crucial to gut epithelium homeostasis; however, how these cells are maintained is not fully understood. Zinc finger HIT-type containing 1 (Znhit1) is an evolutionarily conserved subunit of the SRCAP chromosome remodeling complex. Currently, the function of Znhit1 in vivo and its working mechanism in the SRCAP complex are unknown. Here we show that deletion of Znhit1 in intestinal epithelium depletes Lgr5+ stem cells thus disrupts intestinal homeostasis postnatal establishment and maintenance. Mechanistically, Znhit1 incorporates histone variant H2A.Z into TSS region of genes involved in Lgr5+ stem cell fate determination, including Lgr5, Tgfb1 and Tgfbr2, for subsequent transcriptional regulation. Importantly, Znhit1 promotes the interaction between H2A.Z and YL1 (H2A.Z chaperone) by controlling YL1 phosphorylation. These results demonstrate that Znhit1/H2A.Z is essential for Lgr5+ stem cell maintenance and intestinal homeostasis. Our findings identified a dominant role of Znhit1/H2A.Z in controlling mammalian organ development and tissue homeostasis in vivo."	"MiR-145 negatively regulates TGFBR2 signaling responsible for sepsis-induced acute lung injury. This study aims to explore the roles of miR-145/TGFBR2 axis in sepsis-induced acute lung injury. Here, RNA-sequencing assay showed that miR-145 was significantly decreased in exosomes from sepsis patient blood samples. And miR-145 was decreased but TGFBR2 was increased in LPS-treated mice lung tissues or BEAS-2B cells in a time-dependent manner. Mechanistically, TGFBR2 was identified as a direct target of miR-145 and the downstream effector Smad3 was also suppressed in BEAS-2B cells with miR-145 overexpression. Pre-injection or post-injection of miR-145 agomir following LPS treatment attenuated LPS-induced inflammation, characterized as the downregulation of IL-2 and TNF-α secretion and ameliorate sepsis, and prolonged the overall survival of septic mice with lung injury. Additionally, TGFBR2 overexpression partially abrogated miR-145-mediated inhibition on LPS-induced inflammation and sepsis-induced acute lung injury. Importantly, TGF-β (Transforming growth factor-β) and miR-145 level displayed a negative correlation in sepsis patients. Thus, these results suggest that miR-145 could ameliorate sepsis-induced lung injury via inhibiting TGFBR2 signaling."	"Urotensin II receptor antagonist reduces hepatic resistance and portal pressure through enhanced eNOS-dependent HSC vasodilatation in CCl4-induced cirrhotic rats. Increased serum urotensin II (UII) levels in human cirrhotic populations have been recently shown, but the long-term effects of UII receptor antagonist on the cirrhosis have not been investigated. To investigate the therapeutic effects of urotensin II receptor (UT) antagonist palosuran on rats with carbon tetrachloride (CCl4)-induced cirrhosis, the hepatic and systemic hemodynamics, liver fibrosis, the metalloproteinase-13 (MMP-13)/tissue inhibitor of metalloproteinase-1 (TIMP-1) ratio, hepatic Rho-kinase activity, and the endothelial nitric oxide synthase (eNOS) activity are measured in CCl4-cirrhotic rats treated with palosuran or vehicle for 4 weeks. Primary hepatic stellate cells (HSCs) are used to investigate the changes in UII/UT expression and the in vitro effect of palosuran. Compared with the vehicle-treated cirrhotic rats, treatment with palosuran can reduce the portal pressure (PP), decrease the risk of liver fibrosis and the level of α smooth muscle actin, collagen-I (COL-I), and transforming growth factor β expression. However, treatment with palosuran can increase MMP-13/TIMP-1, pvasodilator-stimulated phosphoprotein (p-VASP), and p-eNOS expression. Moreover, in vitro UII/UT mRNA expression increases during HSC activation. MMP-13/TIMP-1, COL-I, and p-VASP are inhibited after palosuran treatment. Our data indicate that long-term administration of palosuran can decrease PP in cirrhosis, which results from decreased hepatic fibrosis and enhanced eNOS-dependent HSC vasodilatation."	"Antagonism of BMP signaling is insufficient to induce fibrous differentiation in primary sclerotome. Sclerotome is the embryonic progenitor of the axial skeleton. It was previously shown that Tgfbr2 is required in sclerotome for differentiation of fibrous skeletal tissues including the annulus fibrosus of the intervertebral disc. Alternatively, BMP signaling is required to form the vertebral body through chondrogenesis. In addition, TGFβ added to sclerotome cultures induces expression of markers for fibrous tissue differentiation but not cartilage or bone. The mechanism of how TGFβ signaling regulates this lineage decision in sclerotome is not known and could be due to the production of instructive or inhibitory signals or a combination of the two. Here we show that TGFβ antagonizes BMP/ Smad1/5 signaling in primary sclerotome likely through regulation of Noggin, an extracellular BMP antagonist, to prevent chondrogenesis. We then tested whether inhibition of BMP signaling, and inhibition of chondrogenesis, is sufficient to push cells toward the fibrous cell fate. While Noggin inhibited BMP/ Smad1/5 signaling and the formation of chondrogenic nodules in sclerotome cultures; Noggin and inhibition of BMP signaling through Gremlin or DMH2 were insufficient to induce fibrous tissue differentiation. The results suggest inhibition of BMP signaling is not sufficient to stimulate fibrous tissue differentiation and additional signals are likely required. We propose that TGFβ has a dual role in regulating sclerotome fate. First, it inhibits BMP signaling potentially through Noggin to prevent chondrogenesis and, second, it provides an unknown instructive signal to promote fibrous tissue differentiation in sclerotome. The results have implications for the design of stem cell-based therapies for skeletal diseases."	"Crystal structure of the WFIKKN2 follistatin domain reveals insight into how it inhibits growth differentiation factor 8 (GDF8) and GDF11. Growth differentiation factor 8 (GDF8; also known as myostatin) and GDF11 are closely related members of the transforming growth factor β (TGF-β) family. GDF8 strongly and negatively regulates skeletal muscle growth, and GDF11 has been implicated in various age-related pathologies such as cardiac hypertrophy. GDF8 and GDF11 signaling activities are controlled by the extracellular protein antagonists follistatin; follistatin-like 3 (FSTL3); and WAP, follistatin/kazal, immunoglobulin, Kunitz, and netrin domain-containing (WFIKKN). All of these proteins contain a follistatin domain (FSD) important for ligand binding and antagonism. Here, we investigated the structure and function of the FSD from murine WFIKKN2 and compared it with the FSDs of follistatin and FSTL3. Using native gel shift and surface plasmon resonance analyses, we determined that the WFIKKN2 FSD can interact with both GDF8 and GDF11 and block their interactions with the type II receptor activin A receptor type 2B (ActRIIB). Further, we solved the crystal structure of the WFIKKN2 FSD to 1.39 Å resolution and identified surface-exposed residues that, when substituted with alanine, reduce antagonism of GDF8 in full-length WFIKKN2. Comparison of the WFIKKN2 FSD with those of follistatin and FSTL3 revealed differences in both the FSD structure and position of residues within the domain that are important for ligand antagonism. Taken together, our results indicate that both WFIKKN and follistatin utilize their FSDs to block the type II receptor but do so via different binding interactions."	"Inhibition of the CXCL12/CXCR4 axis prevents periurethral collagen accumulation and lower urinary tract dysfunction in vivo. Several studies show that prostatic fibrosis is associated with male lower urinary tract dysfunction (LUTD). Development of fibrosis is typically attributed to signaling through the transforming growth factor β (TGF-β) pathway, but our laboratory has demonstrated that in vitro treatment of human prostatic fibroblasts with the C-X-C motif chemokine ligand 12 (CXCL12) chemokine stimulates myofibroblast phenoconversion and that CXCL12 has the capacity to activate profibrotic pathways in these cells in a TGF-β-independent manner. We have previously reported that feeding mice high-fat diet (HFD) results in obesity, type II diabetes, increased prostatic fibrosis, and urinary voiding dysfunction. The purpose of this study was to test the hypothesis that in vivo blockade of the CXCL12/CXCR4 axis would inhibit the development of fibrosis-mediated LUTD in HFD-fed mice. Two-month-old male senescence-accelerated mouse prone-6 mice were fed either a HFD or low-fat diet (LFD) for 8 months. Half of each dietary group were given constant access to normal water or water that contained the C-X-C chemokine receptor type 4 (CXCR4; CXCL12 receptor) antagonist CXCR4AIII. At the conclusion of the study, mice were weighed, subjected to oral glucose tolerance testing and cystometry, and lower urinary tract tissues collected and assessed for collagen content. HFD-fed mice became significantly obese, insulin resistant, and hyperglycemic, consistent with acquisition of metabolic syndrome, compared with LFD-fed mice. Anesthetized cystometry demonstrated that HFD-fed mice experienced significantly longer intercontractile intervals and greater functional bladder capacity than LFD-fed mice. Immunohistochemistry demonstrated high levels of CXCR4 and CXCR7 staining in mouse prostate epithelial and stromal cells. Picrosirius red staining indicated significantly greater periurethral collagen deposition in the prostates of HFD than LFD-fed mice. Treatment with the CXCR4 antagonist CXCR4AIII did not affect acquisition of metabolic syndrome but did reduce both urinary voiding dysfunction and periurethral prostate collagen accumulation. This is the first study to report that obesity-induced lower urinary tract fibrosis and voiding dysfunction can be repressed by antagonizing the activity of the CXCR4 chemokine receptor in vivo. These data suggest that targeting the CXCL12/CXCR4 signaling pathway may be a clinical option for the prevention or treatment of human male LUTD."	"SUMO protease SENP1 acts as a ceRNA for TGFBR2 and thus activates TGFBR2/Smad signaling responsible for LPS-induced sepsis. This study aims to explore the roles and related mechanisms of SUMO protease SENP1 in sepsis. Here, RNA-sequencing assay showed that SENP1 was significantly increased in human umbilical vein endothelial cells (HUVECs) with LPS treatment. Gene set enrichment analysis (GSEA) of RNA-sequencing dataset revealed that a positive enrichment of inflammation signatures was observed in HUVECs with SENP1 3'UTR overexpression. Further functional annotation analysis revealed that SENP1 3'UTR overexpression was positively correlated with TGFBR2 signaling pathway. Mechanistically, TGFBR2 was identified as a ceRNA (competing endogenous RNA) target of SENP1 and the downstream effectors Smad2/3 were also overexpressed in HUVECs with SENP1 3'UTR overexpression. Injection of SENP1 siRNA following LPS treatment attenuated LPS-induced sepsis, evidenced by the downregulation of IL-2 and TNF-α secretion and prolonged the overall survival of septic mice. Consistent results were obtained in vitro. Additionally, TGFBR2 overexpression partially abrogated SENP1 siRNA-mediated inhibition on LPS-induced sepsis. Thus, these results suggest that SENP1 promotes sepsis via activating the TGFBR2 signaling."	"Berberine attenuates hypoxia-induced pulmonary arterial hypertension via bone morphogenetic protein and transforming growth factor-β signaling. Hypoxia-induced excessive pulmonary artery smooth muscle cell (PASMC) proliferation plays an important role in the pathology of pulmonary arterial hypertension (PAH). Berberine (BBR) is reported as an effective antiproliferative properties applied in clinical. However, the effect of BBR on PAH remains unclear. In the present study, we elucidated the protective effects of BBR against abnormal PASMC proliferation and vascular remodeling in chronic hypoxia-induced hearts. Furthermore, the potential mechanisms of BBR were investigated. For this purpose, C57/BL6 mice were exposed to chronic hypoxia for 4 weeks to mimic severe PAH. Hemodynamic and pulmonary pathomorphology data showed that chronic hypoxia significantly increased the right ventricular systolic pressure (RVSP), the right ventricle/left ventricle plus septum RV/(LV + S) weight ratio, and the median width of pulmonary arterioles. BBR attenuated the elevations in RVSP and RV/(LV + S) and mitigated pulmonary vascular structure remodeling. BBR also suppressed the hypoxia-induced increases in the expression of proliferating cell nuclear antigen (PCNA) and of α-smooth muscle actin. Furthermore, administration of BBR significantly increased the expression of bone morphogenetic protein type II receptor (BMPR-II) and its downstream molecules P-smad1/5 and decreased the expression of transforming growth factor-β (TGF-β) and its downstream molecules P-smad2/3. Moreover, peroxisome proliferator-activated receptor γ expression was significantly decreased in the hypoxia group, and this decrease was reversed by BBR treatment. Our study demonstrated that the protective effect of BBR against hypoxia-induced PAH in a mouse model may be achieved through altered BMPR-II and TGF-β signaling."	"A TGFBR2/SMAD2/DNMT1/miR-145 negative regulatory loop is responsible for LPS-induced sepsis. The critical roles of TGFBR2/Smad2 signaling have been established in LPS-induced sepsis, however, the underlying mechanisms by which TGFBR2/Smad2 signaling was regulated in LPS-induced sepsis are still confused. Here, miRNA-based on RNA-sequencing dataset revealed that miR-145 was significantly decreased in human umbilical vein endothelial cells (HUVECs) following LPS treatment. Bioinformatics, luciferase reporter and RNA immune co-precipitation (RIP) assays showed that miR-145 could directly target TGFBR2 and thus inactivated TGFBR2/Smad2 axis. On the contrary, luciferase reporter and chromatin immunoprecipitation (ChIP) analysis showed that Smad2 could directly bind to DNA methyltransferase 1 (DNMT1), the upregulation of which led to miR-145 promoter hypermethylation and downregulation of miR-145 expression, conversely promoting TGFBR2 expression. Notably, knockdown of TGFBR2 partially rescued the inhibition on miR-145 expression induced by LPS treatment. Additionally, we found that knockdown of TGFBR2 or overexpression of miR-145 attenuated LPS-induced sepsis and prolonged the overall survival of septic mice. Furthermore, TGFBR2 overexpression abrogated miR-145 overexpression-mediated attenuation on LPS-induced sepsis. Our results demonstrate the TGFBR2/SMAD2/DNMT1/miR-145 negative regulatory loop is responsible for LPS-induced sepsis."	"Bone Morphogenetic Protein-6 Attenuates Type 1 Diabetes Mellitus-Associated Bone Loss. Patients with type 1 diabetes mellitus (T1DM) often suffer from osteopenia or osteoporosis. Although most agree that T1DM-induced hyperglycemia is a risk factor for progressive bone loss, the mechanisms for the link between T1DM and bone loss still remain elusive. In this study, we found that bone marrow-derived mesenchymal stem cells (BMSCs) isolated from T1DM donors were less inducible for osteogenesis than those from non-T1DM donors and further identified a mechanism involving bone morphogenetic protein-6 (BMP6) that was produced significantly less in BMSCs derived from T1DM donors than that in control cells. With addition of exogenous BMP6 in culture, osteogenesis of BMSCs from T1DM donors was restored whereas the treatment of BMP6 seemed not to affect non-T1DM control cells. We also demonstrated that bone mineral density (BMD) was reduced in streptozotocin-induced diabetic mice compared with that in control animals, and intraperitoneal injection of BMP6 mitigated bone loss and increased BMD in diabetic mice. Our results suggest that bone formation in T1DM patients is impaired by reduction of endogenous BMP6, and supplementation of BMP6 enhances osteogenesis of BMSCs to restore BMD in a mouse model of T1DM, which provides insight into the development of clinical treatments for T1DM-assocaited bone loss. Stem Cells Translational Medicine 2019;8:522-534."	"MicroRNA-3191 promotes migration and invasion by downregulating TGFBR2 in colorectal cancer. Mutations in transforming growth factor beta receptor II (TGFBR2) are detected in up to 30% of overall colorectal cancer (CRC). Dysregulation of some microRNAs participated in the CRC pathogenesis. In this study, we used the gene ontology analyses, the Kyoto Encyclopedia of Genes and Genomes pathway analyses and gene set enrichment analysis to indicate that miR-3191 was involved in the regulation of transforming growth factor beta (TGF-BETA) signal pathway in CRC. These bioinformatics results were supported by data obtained from CRC samples and experiments in vitro. The luciferase reporter assay was used to confirm that miR-3191 modulates TGF-BETA signal pathway by targeting TGFBR2. By transwell migration and invasion assays, we showed that miR-3191 promoted CRC cell migration and invasion by downregulating TGFBR2. And it may serve as a novel therapeutic strategy for treating CRC patients."	"Toward Second-Generation Cardiomyogenic and Anti-cardiofibrotic 1,4-Dihydropyridine-Class TGFβ Inhibitors. Innovative therapeutic modalities for pharmacological intervention of transforming growth factor β (TGFβ)-dependent diseases are of great value. b-Annelated 1,4-dihydropyridines (DHPs) might be such a class, as they induce TGFβ receptor type II degradation. However, intrinsic drawbacks are associated with this compound class and were systematically addressed in the presented study. It was possible to install polar functionalities and bioisosteric moieties at distinct sites of the molecules while maintaining TGFβ-inhibitory activities. The introduction of a 2-amino group or 7-N-alkyl modification proved to be successful strategies. Aqueous solubility was improved by up to seven-fold at pH 7.4 and 200-fold at pH 3 relative to the parent ethyl 4-(biphenyl-4-yl)-2,7,7-trimethyl-5-oxo-1,4,5,6,7,8-hexahydroquinoline-3-carboxylate. The therapeutic potential of the presented DHPs was further underscored in view of a potential dual mode of action: The differentiation of committed human iPSC-derived cardiac progenitor cells (CPCs) was potently stimulated, and the rescue of cardiac fibrosis phenotypes was observed in engineered heart tissue (EHT) constructs."	"Prostaglandin E2 inhibits profibrotic function of human pulmonary fibroblasts by disrupting Ca<sup>2+</sup> signaling. We have shown that calcium (Ca<sup>2+</sup>) oscillations in human pulmonary fibroblasts (HPFs) contribute to profibrotic effects of transforming growth factor-β (TGF-β) and that disruption of these oscillations blunts features of pulmonary fibrosis. Prostaglandin E2 (PGE2) exerts antifibrotic effects in the lung, but the mechanisms for this action are not well defined. We thus sought to explore interactions between PGE2 and the profibrotic agent TGF-β in pulmonary fibroblasts (PFs) isolated from patients with or without idiopathic pulmonary fibrosis (IPF). PGE2 inhibited TGF-β-promoted [Ca<sup>2+</sup>] oscillations and prevented the activation of Akt and Ca<sup>2+</sup>/calmodulin-dependent protein kinase-II (CaMK-II) but did not prevent activation of Smad-2 or ERK. PGE2 also eliminated TGF-β-stimulated expression of collagen A1, fibronectin, and α-smooth muscle actin and reduced stress fiber formation in the HPFs. RNA sequencing revealed that HPFs preferentially express EP2 receptors relative to other prostanoid receptor subtypes: EP2 expression is ~10-fold higher than that of EP4 receptors; EP1 and EP3 receptors are barely detectable; and EP2-receptor expression is ~3.5-fold lower in PFs from IPF patients than in normal HPFs. The inhibitory effects of PGE2 on synthetic function and stress fiber formation were blocked by selective EP2 or EP4 antagonists and mimicked by selective EP2 or EP4 agonists, the phosphodiesterase inhibitor isobutylmethylxanthine and forskolin, all of which elevate cellular cAMP concentrations. We conclude that PGE2, likely predominantly via EP2 receptors, interferes with Ca<sup>2+</sup> signaling, CaMK-II activation, and Akt activation in IPF-HPFs and HPFs treated with TGF-β. Moreover, a decreased expression of EP2 receptors in pulmonary fibroblasts from IPF patients may contribute to the pathophysiology of this disease."	"Crosstalk between TAp73 and TGF-β in fibroblast regulates iNOS expression and Nrf2-dependent gene transcription. Inducible nitric oxide synthase (iNOS) activity produces anti-tumor and anti-microbial effects but also promotes carcinogenesis through mutagenic, immunosuppressive and pro-angiogenic mechanisms. The tumor suppressor p53 contributes to iNOS downregulation by repressing induction of the NOS2 gene encoding iNOS, thereby limiting NO-mediated DNA damages. This study focuses on the role of the p53 homologue TAp73 in the regulation of iNOS expression. Induction of iNOS by immunological stimuli was upregulated in immortalized MEFs from TAp73<sup>-/-</sup> mice, compared to TAp73<sup>+/+</sup> fibroblasts. This overexpression resulted both from increased levels of NOS2 transcripts, and from an increased stability of the protein. Limitation of iNOS expression by TAp73 in wild-type cells is alleviated by TGF-β receptor I inhibitors, suggesting a cooperation between TAp73 and TGF-β in suppression of iNOS expression. Accordingly, downregulation of iNOS expression by exogenous TGF-β1 was impaired in TAp73<sup>-/-</sup> fibroblasts. Increased NO production in these cells resulted in a stronger, NO-dependent induction of Nrf2 target genes, indicating that the Nrf2-dependent adaptive response to nitrosative stress in fibroblasts is proportional to iNOS activity. NO-dependent induction of two HIF-1 target genes was also stronger in TAp73-deficient cells. Finally, the antimicrobial action of NO against Trypanosoma musculi parasites was enhanced in TAp73<sup>-/-</sup> fibroblasts. Our data indicate that tumor suppressive TAp73 isoforms cooperate with TGF-β to control iNOS expression, NO-dependent adaptive responses to stress, and pathogen proliferation."	"POH1 contributes to hyperactivation of TGF-β signaling and facilitates hepatocellular carcinoma metastasis through deubiquitinating TGF-β receptors and caveolin-1. Hyper-activation of TGF-β signaling is critically involved in progression of hepatocellular carcinoma (HCC). However, the events that contribute to the dysregulation of TGF-β pathway in HCC, especially at the post-translational level, are not well understood. Associations of deubiquitinase POH1 with TGF-β signaling activity and the outcomes of HCC patients were examined by data mining of online HCC datasets, immunohistochemistry analyses using human HCC specimens, spearman correlation and survival analyses. The effects of POH1 on the ubiquitination and stability of the TGF-β receptors (TGFBR1 and TGFBR2) and the activation of downstream effectors were tested by western blotting. Primary mouse liver tissues from polyinosinic:polycytidylic acid (poly I:C)- treated Mx-Cre+, poh1<sup>f/f</sup> mice and control mice were used to detect the TGF-β receptors. The metastatic-related capabilities of HCC cells were studied in vitro and in mice. Here we show that POH1 is a critical regulator of TGF-β signaling and promotes tumor metastasis. Integrative analyses of HCC subgroups classified with unsupervised transcriptome clustering of the TGF-β response, metastatic potential and outcomes, reveal that POH1 expression positively correlates with activities of TGF-β signaling in tumors and with malignant disease progression. Functionally, POH1 intensifies TGF-β signaling delivery and, as a consequence, promotes HCC cell metastatic properties both in vitro and in vivo. The expression of the TGF-β receptors was severely downregulated in POH1-deficient mouse hepatocytes. Mechanistically, POH1 deubiquitinates the TGF-β receptors and CAV1, therefore negatively regulates lysosome pathway-mediated turnover of TGF-β receptors. Our study highlights the pathological significance of aberrantly expressed POH1 in TGF-β signaling hyperactivation and aggressive progression in HCC."	"The role of high fat diet in the regulation of MAP kinases activity in left ventricular fibrosis. It is well known that obesity contributes to the development of systemic inflammatory responses, which in turn may be involved in the process of interstitial fibrosis and left ventricular (LV) remodelling. Activation of pro-inflammatory factors such as transforming growth factor β (TGF-β) can directly stimulate mitogen-activated protein kinase (MAPK) p38 and JNK. The aim of the study was to evaluate the level of TGF-β and MAPK p38 and JNK in the LV in Sprague Dawley (SPRD) rats maintained on a high fat diet (HFD). The SPRD rats from 4 weeks of age were on a normal fat diet (NFD) or a HFD for 12 weeks (NFD-16-week-old rats, NFD 16-wk; or HFD-16-week-old rats, HFD 16-wk) or 16 weeks (NFD-20-week-old rats, NFD 20-wk; or HFD-20-week-old rats, HFD 20-wk). At the end of the experiment, blood and LV were collected from all rats for further analysis (biochemical, Real Time PCR and immunohistochemical analysis). TGF-β mRNA expression did not differ between the study groups of rats. However, p38 MAPK mRNA expression was significantly lower in the HFD 20-wk rats than in both the HFD 16-wk rats and the NFD 20-wk rats. c-jun mRNA expression was significantly higher in the HFD 16-wk rats than in the NFD 16-wk rats. There was significantly lower expression of c-jun mRNA in the HFD 20-wk rats and in the NFD 20-wk rats than in the HFD 16-wk rats and in the NFD 16-wk rats, respectively. TGF-β type II receptor (TβRII) protein demonstrated only cytoplasmic reactivity, while p38 MAPK protein and c-jun protein showed both nuclear and cytoplasmic reactivity. The results suggest that a high fat diet and in two time intervals significantly influence the expression of p38 MAPK and JNK in the LV. However, demonstrating their potential involvement in the processes of interstitial myocardial fibrosis and left ventricular remodeling requires further research."	"Novel role of the clustered miR-23b-3p and miR-27b-3p in enhanced expression of fibrosis-associated genes by targeting TGFBR3 in atrial fibroblasts. Atrial fibrillation (AF) is the most common type of arrhythmia in cardiovascular diseases. Atrial fibrosis is an important pathophysiological contributor to AF. This study aimed to investigate the role of the clustered miR-23b-3p and miR-27b-3p in atrial fibrosis. Human atrial fibroblasts (HAFs) were isolated from atrial appendage tissue of patients with sinus rhythm. A cell model of atrial fibrosis was achieved in Ang-II-induced HAFs. Cell proliferation and migration were detected. We found that miR-23b-3p and miR-27b-3p were markedly increased in atrial appendage tissues of AF patients and in Ang-II-treated HAFs. Overexpression of miR-23b-3p and miR-27b-3p enhanced the expression of collagen, type I, alpha 1 (COL1A1), COL3A1 and ACTA2 in HAFs without significant effects on their proliferation and migration. Luciferase assay showed that miR-23b-3p and miR-27b-3p targeted two different sites in 3'-UTR of transforming growth factor (TGF)-β1 receptor 3 (TGFBR3) respectively. Consistently, TGFBR3 siRNA could increase fibrosis-related genes expression, along with the Smad1 inactivation and Smad3 activation in HAFs. Additionally, overexpression of TGFBR3 could alleviate the increase of COL1A1, COL3A1 and ACTA2 in HAFs after transfection with miR-23b-3p and miR-27b-3p respectively. Moreover, Smad3 was activated in HAFs in response to Ang-II treatment and inactivation of Smad3 attenuated up-regulation of miR-23b-3p and miR-27b-3p in Ang-II-treated HAFs. Taken together, these results suggest that the clustered miR-23b-3p and miR-27b-3p consistently promote atrial fibrosis by targeting TGFBR3 to activate Smad3 signalling in HAFs, suggesting that miR-23b-3p and miR-27b-3p are potential therapeutic targets for atrial fibrosis."	"Local hyperthyroidism promotes pancreatic acinar cell proliferation during acute pancreatitis. Proliferation of pancreatic acinar cells is a critical process in the pathophysiology of pancreatic diseases, because limited or defective proliferation is associated with organ dysfunction and patient morbidity. In this context, elucidating the signalling pathways that trigger and sustain acinar proliferation is pivotal to develop therapeutic interventions promoting the regenerative process of the organ. In this study we used genetic and pharmacological approaches to manipulate both local and systemic levels of thyroid hormones to elucidate their role in acinar proliferation following caerulein-mediated acute pancreatitis in mice. In addition, molecular mechanisms mediating the effects of thyroid hormones were identified by genetic and pharmacological inactivation of selected signalling pathways.In this study we demonstrated that levels of the thyroid hormone 3,3',5-triiodo-l-thyronine (T3) transiently increased in the pancreas during acute pancreatitis. Moreover, by using genetic and pharmacological approaches to manipulate both local and systemic levels of thyroid hormones, we showed that T3 was required to promote proliferation of pancreatic acinar cells, without affecting the extent of tissue damage or inflammatory infiltration.Finally, upon genetic and pharmacological inactivation of selected signalling pathways, we demonstrated that T3 exerted its mitogenic effect on acinar cells via a tightly controlled action on different molecular effectors, including histone deacetylase, AKT, and TGFβ signalling.In conclusion, our data suggest that local availability of T3 in the pancreas is required to promote acinar cell proliferation and provide the rationale to exploit thyroid hormone signalling to enhance pancreatic regeneration. Copyright © 2019 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Blockade of TGF-β signaling with novel synthetic antibodies limits immune exclusion and improves chemotherapy response in metastatic ovarian cancer models. Epithelial ovarian cancer (EOC) is a leading cause of cancer-related death in women. EOC is often diagnosed at late stages, with peritoneal metastases and ascites production. Current surgery and platinum-based chemotherapy regimes fail to prevent recurrence in most patients. High levels of Transforming growth factor-β (TGF-β) within ascites has been linked to poor prognosis. TGF-β signaling promotes epithelial-mesenchymal transition (EMT) in EOC tumor cells, and immune suppression within the tumor microenvironment, with both contributing to chemotherapy resistance and metastasis. The goal of this study was to develop specific synthetic inhibitory antibodies to the Type II TGF-β receptor (TGFBR2), and test these antibodies in EOC cell and tumor models. Following screening of a phage-displayed synthetic antigen-binding fragment (Fab) library with the extracellular domain of TGFBR2, we identified a lead inhibitory Fab that suppressed TGF-β signaling in mouse and human EOC cell lines. Affinity maturation of the lead inhibitory Fab resulted in several derivative Fabs with increased affinity for TGFBR2 and efficacy as suppressors of TGF-β signaling, EMT and EOC cell invasion. In EOC xenograft and syngeneic tumor models, blockade of TGFBR2 with our lead antibodies led to improved chemotherapy response. This correlated with reversal of EMT and immune exclusion in these tumor models with TGFBR2 blockade. Together, these results describe new inhibitors of the TGF-β pathway that improve antitumor immunity, and response to chemotherapy in preclinical EOC models."	"Whole-genome sequencing identifies potential candidate genes for reproductive traits in pigs. Reproductive performance is a complex quantitative trait, that is determined by multiple genes, regulatory pathways and environmental factors. A list of major genes with large effect have been detected, although multiple QTLs are identified. To identify candidate genes for pig prolificacy, whole genome variants from five high- and five low-prolificacy Yorkshire sows were collected using whole-genome resequencing. A total of 13,955,609 SNPs and 2,666,366 indels were detected across the genome. Common differential SNPs and indels were identified between the two groups of sows. Genes encoding components of the TGF-beta signaling pathway were enriched with the variations, including BMP5, BMP6, BMP7, ACVR1, INHBA, ZFYVE9, TGFBR2, DCN, ID4, BAMBI, and ACVR2A. Several differential variants within these genes related to reproductive traits were identified to be associated with litter size. A comparison of selective regions and published QTL data suggests that NEDD9, SLC39A11, SNCA, and UNC5D are candidate genes for reproduction traits."	"Platelet-derived β2M regulates monocyte inflammatory responses. β-2 Microglobulin (β2M) is a molecular chaperone for the major histocompatibility class I (MHC I) complex, hemochromatosis factor protein (HFE), and the neonatal Fc receptor (FcRn), but β2M may also have less understood chaperone-independent functions. Elevated plasma β2M has a direct role in neurocognitive decline and is a risk factor for adverse cardiovascular events. β2M mRNA is present in platelets at very high levels, and β2M is part of the activated platelet releasate. In addition to their more well-studied thrombotic functions, platelets are important immune regulatory cells that release inflammatory molecules and contribute to leukocyte trafficking, activation, and differentiation. We have now found that platelet-derived β2M is a mediator of monocyte proinflammatory differentiation through noncanonical TGFβ receptor signaling. Circulating monocytes from mice lacking β2M only in platelets (Plt-β2M-/-) had a more proreparative monocyte phenotype, in part dependent on increased platelet-derived TGFβ signaling in the absence of β2M. Using a mouse myocardial infarction (MI) model, Plt-β2M-/- mice had limited post-MI proinflammatory monocyte responses and, instead, demonstrated early proreparative monocyte differentiation, profibrotic myofibroblast responses, and a rapid decline in heart function compared with WT mice. These data demonstrate a potentially novel chaperone-independent, monocyte phenotype-regulatory function for platelet β2M and that platelet-derived 2M and TGFβ have opposing roles in monocyte differentiation that may be important in tissue injury responses."	"Role of bta-miR-204 in the regulation of adipocyte proliferation, differentiation, and apoptosis. Adipocyte growth and development are complex and precisely orchestrated processes. Several microRNAs have been identified as critical regulators of the adipocyte growth and development. Recently, bta-miR-204 was found to be involved in adipogenesis; however, the underlying molecular mechanism involved in bta-miR-204-mediated regulation of proliferation, differentiation, and apoptosis of adipocytes is not fully understood or elucidated. In this study, quantitative real-time polymerase chain reaction (qRT-PCR), Cell Counting Kit-8, EdU, flow cytometer, Oil Red O staining, and the western blot assays were used to assess the role of bta-miR-204 in adipocyte growth and development. Overexpression of bta-miR-204 had no significant effect on 3T3-L1 cell proliferation. The forced expression of bta-miR-204 promoted 3T3-L1 cell differentiation. Meanwhile, overexpression of bta-miR-204 upregulated the expression of Bax and downregulated the expression of Bcl-2 both at messenger RNA and protein levels, which suggested that bta-miR-204 can promote 3T3-L1 cell apoptosis. Using bioinformatic analysis, dual-luciferase reporter system and qRT-PCR, TGFBR2, and ELOVL6 were identified as the direct target genes of bta-miR-204. Therefore, our study provides a novel insight into the role of bta-miR-204 in the regulation of adipocyte growth and development, which may provide a novel therapeutic alternative against obesity."	"Expanding the spectrum of causative mutations of Marfan syndrome: Is there a role for the elastin gene? NA"	"Inhibitory Effects of Roseoside and Icariside E4 Isolated from a Natural Product Mixture (No-ap) on the Expression of Angiotensin II Receptor 1 and Oxidative Stress in Angiotensin II-Stimulated H9C2 Cells. Hypertension is a major risk factor for the development of cardiovascular diseases. This study aimed to elucidate whether the natural product mixture No-ap (NA) containing Pine densiflora, Annona muricate, and Monordica charantia, or its single components have inhibitory effects on hypertension-related molecules in Angiotensin II (Ang II)-stimulated H9C2 cells. Individual functional components were isolated and purified from NA using various columns and solvents, and then their structures were analyzed using ESI⁻MS, ¹H-NMR, and <sup>13</sup>H-NMR spectra. H9C2 cells were stimulated with 300 nM Ang II for 7 h. NA, telmisartan, ginsenoside, roseoside (Roseo), icariside E4 (IE4), or a combination of two components (Roseo and IE4) were administered to the cells 1 h before Ang II stimulation. The expression and activity of hypertension-related molecules or oxidative molecules were determined using RT-PCR, western blot, and ELISA. Ang II stimulation increased the expression of Ang II receptor 1 (AT1), tumor necrosis factor-α (TNF-α), monocyte chemoattractant protein-1 (MCP-1), tumor growth factor-β (TGF-β) mRNA, and nicotinamide adenine dinucleotide phosphate (NADPH) oxidase activity and the levels of hydrogen peroxide (H₂O₂) and superoxide anion (•O₂<sup>-</sup>) and reduced anti-oxidant enzyme activity. NA significantly improved the expression or activities of all hypertension-related molecules altered in Ang II-stimulated cells. Roseo or IE4 pretreatment either decreased or increased the expression or activities of all hypertension-related molecules similar to NA, but to a lesser extent. The pretreatment with a combination of Roseo and IE4 (1:1) either decreased or increased the expression of all hypertension-related molecules, compared to each single component, revealing a synergistic action of the two compounds. Thus, the combination of single components could exert promising anti-hypertensive effects similar to NA, which should be examined in future animal and clinical studies."	"Next-generation sequencing of 32 genes associated with hereditary aortopathies and related disorders of connective tissue in a cohort of 199 patients. Heritable factors play an important etiologic role in connective tissue disorders (CTD) with vascular involvement, and a genetic diagnosis is getting increasingly important for gene-tailored, personalized patient management. We analyzed 32 disease-associated genes by using targeted next-generation sequencing and exome sequencing in a clinically relevant cohort of 199 individuals. We classified and refined sequence variants according to their likelihood for pathogenicity. We identified 1 pathogenic variant (PV; in FBN1 or SMAD3) in 15 patients (7.5%) and ≥1 likely pathogenic variant (LPV; in COL3A1, FBN1, FBN2, LOX, MYH11, SMAD3, TGFBR1, or TGFBR2) in 19 individuals (9.6%), together resulting in 17.1% diagnostic yield. Thirteen PV/LPV were novel. Of PV/LPV-negative patients 47 (23.6%) showed ≥1 variant of uncertain significance (VUS). Twenty-five patients had concomitant variants. In-depth evaluation of reported/calculated variant classes resulted in reclassification of 19.8% of variants. Variant classification and refinement are essential for shaping mutational spectra of disease genes, thereby improving clinical sensitivity. Obligate stringent multigene analysis is a powerful tool for identifying genetic causes of clinically related CTDs. Nonetheless, the relatively high rate of PV/LPV/VUS-negative patients underscores the existence of yet unknown disease loci and/or oligogenic/polygenic inheritance."	"Absence of TGFβ signaling in retinal microglia induces retinal degeneration and exacerbates choroidal neovascularization. Constitutive TGFβ signaling is important in maintaining retinal neurons and blood vessels and is a factor contributing to the risk for age-related macular degeneration (AMD), a retinal disease involving neurodegeneration and microglial activation. How TGFβ signaling to microglia influences pathological retinal neuroinflammation is unclear. We discovered that ablation of the TGFβ receptor, TGFBR2, in retinal microglia of adult mice induced abnormal microglial numbers, distribution, morphology, and activation status, and promoted a pathological microglial gene expression profile. TGFBR2-deficient retinal microglia induced secondary gliotic changes in Müller cells, neuronal apoptosis, and decreased light-evoked retinal function reflecting abnormal synaptic transmission. While retinal vasculature was unaffected, TGFBR2-deficient microglia demonstrated exaggerated responses to laser-induced injury that was associated with increased choroidal neovascularization, a hallmark of advanced exudative AMD. These findings demonstrate that deficiencies in TGFβ-mediated microglial regulation can drive neuroinflammatory contributions to AMD-related neurodegeneration and neovascularization, highlighting TGFβ signaling as a potential therapeutic target."	"Tgfbr2 is required in Acan-expressing cells for maintenance of the intervertebral and sternocostal joints. Members of the transforming growth factor beta (TGF-β) family are secreted proteins that regulate skeletal development. TGF-β signaling is critical in embryonic development of the annulus fibrosus (AF) of the intervertebral disc (IVD). To address the question of the role of TGF-β signaling in postnatal development and maintenance of the skeleton, we generated mice in which Tgfbr2 was deleted at 2-weeks of age in Aggrecan (Acan)-expressing cells using inducible Cre/LoxP recombination. Localization of Cre recombination was visualized by crossing Acan<sup>tm1(cre/ERT2)Crm</sup> mice to fluorescent mTmG reporter mice. Acan<sup>tm1(cre/ERT2)Crm</sup> mice were mated to Tgfbr2<sup>LoxP/LoxP</sup> mice and Cre recombinase was activated by tamoxifen injection at 2-weeks postnatally. Following tamoxifen injection, mice were aged to 3, 6, and 12-months and control mice were compared to the experimental (cKO) group. Mice were initially analyzed using X-ray and skeletal preparations. Sternocostal joints and IVD tissues were further analyzed histologically by hematoxylin and eosin (H&amp;E), Safranin O, and Picrosirius Red staining as well as Col10 immunostaining. Cre recombination was observed in the IVD and sternocostal joints. X-ray analysis revealed osteophyte formation within the disc space of 12-month-old cKO mice. Skeletal preparations confirmed calcification within the IVD and the sternocostal joints in cKO mice. H&amp;E staining of cKO IVD revealed disorganized growth plates, delay in the formation of the bony endplate, and Col10 staining in the AF indicative of ectopic endochondral bone formation. Furthermore, proteoglycan loss was observed and collagen bundles within the inner AF were thinner and less organized. Alterations in the IVD were apparent beginning at 3 months and were progressively more visible at 6 and 12 months. Similarly, histological analysis of cKO sternocostal joints revealed joint calcification, proteoglycan loss, and disorganization of the collagen architecture at 12 months of age. TGF-β signaling is important for postnatal development and maintenance of fibrocartilaginous IVD and sternocostal joints."	"Role of AGAP2 in the profibrogenic effects induced by TGFβ in LX-2 hepatic stellate cells. Liver damage induces hepatic stellate cells (HSC) activation, characterised by a fibrogenic, proliferative and migratory phenotype. Activated HSC are mainly regulated by transforming growth factor β 1 (TGFβ1), which increases the production of extracellular matrix proteins (e.g. collagen-I) promoting the progression of hepatic fibrosis. AGAP2 (ArfGAP with GTPase domain, ankyrin repeat and PH domain 2) is a GTPase/GTP-activating protein involved in the actin remodelling system and receptor recycling. In the present work the role of AGAP2 in human HSC in response to TGFβ1 was investigated. LX-2 HSC were transfected with AGAP2 siRNA and treated with TGFβ1. AGAP2 knockdown prevented to some extent the proliferative and migratory TGFβ1-induced capacities of LX-2 cells. An array focused on human fibrosis revealed that AGAP2 knockdown partially prevented TGFβ1-mediated gene expression of the fibrogenic genes ACTA2, COL1A2, EDN1, INHBE, LOX, PDGFB, TGFΒ12, while favored the expression of CXCR4, IL1A, MMP1, MMP3 and MMP9 genes. Furthermore, TGFβ1 induced AGAP2 promoter activation and its protein expression in LX-2. Moreover, AGAP2 protein levels were significantly increased in liver samples from rats with thioacetamide-induced fibrosis. In addition, AGAP2 silencing affected TGFβ1-receptor 2 (TGFR2) trafficking in U2OS cells, blocking its effective recycling to the membrane. AGAP2 silencing in LX-2 cells prevented the TGFβ1-induced increase of collagen-I protein levels, while its overexpression enhanced collagen-I protein expression in the presence or absence of the cytokine. AGAP2 overexpression also increased focal adhesion kinase (FAK) phosphorylated levels in LX-2 cells. FAK and MEK1 inhibitors prevented the increase of collagen-I expression caused by TGFβ1 in LX-2 overexpressing AGAP2. In summary, the present work shows for the first time, that AGAP2 is a potential new target involved in TGFβ1 signalling, contributing to the progression of hepatic fibrosis."	"Hsa-miR-5195-3P induces downregulation of TGFβR1, TGFβR2, SMAD3 and SMAD4 supporting its tumor suppressive activity in HCT116 cells. MicroRNAs are classified as small non-coding RNAs that regulate gene expression mainly through targeting the 3'UTR region of mRNAs. A great number of miRNAs play important role in the regulation of signaling pathways in normal and cancer cells. Here, we predicted hsa-miR-5195-3p (miR-5195-3p) as a potential regulator of TGFβ signaling and investigated its effect on TGFB-R1, TGFB-R2, SMAD2, SMAD3 and SMAD4 transcripts which are key players of TGFβ/SMAD signaling pathway. Overexpression of miR-5195 in HCT116 cells resulted in a significant reduction of TGFB-R1, SMAD2, SMAD3, and SMAD4 at the mRNA level which was confirmed using RT-qPCR. Consistently, western blot analysis confirmed that miR-5195 overexpression in HCT116 cells resulted in downregulation of TGFBR1 at the protein level. Furthermore, dual luciferase analysis verified the direct interaction of miR-5195 with TGFB-R1 and SMAD4 3'UTR sequences in SW480 cells. Additionally, flow cytometry analysis confirmed that miR-5195 overexpression significantly increased the sub-G1 and decreased the G-1 cell populations in both SW480 and HCT116 cell lines. Finally, miR-5195 overexpression significantly downregulated c-MYC and cyclin D1 but upregulated p21 genes. Overall, our results indicated that miR-5195 modulates TGFβ signaling pathway and affects the cell cycle progression through targeting TGFB-R1, TGFB-R2, SMAD2, SMAD3, SMAD4 transcripts."	"Effects of Clematis chinensis Osbeck mediated by low-intensity pulsed ultrasound on transforming growth factor-β/Smad signaling in rabbit articular chondrocytes. Clematis chinensis Osbeck (CCO) is an essential herb that has been shown to promote the biological functions of cartilage cells. In this study, we aimed to explore whether and how low-intensity pulsed ultrasound (LIPUS) enhanced CCO delivery into chondrocytes and stimulated biological activity in vitro. Chondrocytes were isolated from knee articular cartilage of 2-week-old rabbits and treated with LIPUS plus CCO or recombinant transforming growth factor beta 1 (TGF-β1; 0.5 ng/mL), with or without anti-TGF-β1 antibodies (10 μg/mL), for 3 days. Cell proliferation was assessed by Cell-Counting Kit-8 assays. Immunocytochemistry, western blotting, and quantitative polymerase chain reaction were applied to detect the expression of type II collagen and some molecules in the TGF-β1 signal pathway. LIPUS plus 0.1 mg/mL CCO solution promoted chondrocyte proliferation and type II collagen and TGF-β1 expression synergistically in vitro (P &lt; 0.05). In addition, treatment with anti-TGF-β1 antibodies blocked this effect (P &lt; 0.01), but not completely. CCO plus LIPUS also showed more enhanced effects on promoting TGF-β receptor II and Smad2 signaling and reducing Smad7 signaling than either intervention separately (P &lt; 0.05). CCO plus LIPUS promoted extracellular matrix deposition by accelerating the TGF-β/Smad-signaling pathway in chondrocytes."	"Blocking CXCLs-CXCR2 axis in tumor-stromal interactions contributes to survival in a mouse model of pancreatic ductal adenocarcinoma through reduced cell invasion/migration and a shift of immune-inflammatory microenvironment. Pancreatic ductal adenocarcinoma (PDAC) is characterized by dense stromal reaction (desmoplasia). We have previously reported that mice with conditional Kras<sup>G12D</sup> mutation and knockout of TGF-β receptor type II (Tgfbr2), PKF mice, develop PDAC with desmoplasia modulated by CXC chemokines that are produced by PDAC cells through tumor-stromal interaction. In this study, we further discovered that PDAC and cancer-associated fibroblast (CAF) accelerated each other's invasion and migration through the CXC chemokines-receptor (CXCLs-CXCR2) axis. Heterozygous knockout of Cxcr2 in PKF mice (PKF2h mice) prolonged survival and inhibited both tumor angiogenesis and PDAC microinvasion. Infiltration of neutrophils, myeloid-derived suppressor cells (MDSCs), and arginase-1<sup>+</sup> M2-like tumor-associated macrophages (TAMs) significantly decreased in the tumors of PKF2h mice, whereas inducible nitric oxide synthase (iNOS)<sup>+</sup> M1-like TAMs and apoptotic tumor cells markedly increased, which indicated that blockade of the CXCLs-CXCR2 axis resulted in a shift of immune-inflammatory microenvironment. These results suggest that blocking of the CXCLs-CXCR2 axis in tumor-stromal interactions could be a therapeutic approach against PDAC progression."	"Activin-like kinase 5 (ALK5) inactivation in the mouse uterus results in metastatic endometrial carcinoma. The endometrial lining of the uterine cavity is a highly dynamic tissue that is under the continuous control of the ovarian steroid hormones, estrogen and progesterone. Endometrial adenocarcinoma arises from the uncontrolled growth of the endometrial glands, which is typically associated with unopposed estrogen action and frequently occurs in older postmenopausal women. The incidence of endometrial cancer among younger women has been rising due to increasing rates of obesity, a major risk factor for the disease. The transforming growth factor β (TGFβ) family is a highly conserved group of proteins with roles in cellular differentiation, proliferation, and cancer. Inactivating mutations in the genes encoding the TGFβ cell surface receptors (TGFBR1/ALK5 and TGFBR2) have been detected in various human cancers, indicating that a functional TGFβ signaling pathway is required for evading tumorigenesis. In this study, we present a mouse model with conditional inactivation of activin receptor-like kinase 5 (ALK5) in the mouse uterus using progesterone receptor cre (&quot;Alk5 cKO&quot;) that develops endometrial adenocarcinoma with metastasis to the lungs. The cancer and metastatic lung nodules are estrogen dependent and retain estrogen receptor α (ERα) reactivity, but have decreased levels of progesterone receptor (PR) protein. The endometrial tumors develop only in Alk5 cKO mice that are mated to fertile males, indicating that TGFβ-mediated postpartum endometrial repair is critical for endometrial function. Overall, these studies indicate that TGFβ signaling through TGFBR1/ALK5 in the endometrium is required for endometrial homeostasis, tumor suppression, and postpartum endometrial regeneration."	"Therapies for Thoracic Aortic Aneurysms and Acute Aortic Dissections. Thoracic aortic aneurysms that progress to acute aortic dissections are often fatal. Thoracic aneurysms have been managed with treatment with β-adrenergic blocking agents (β-blockers) and routine surveillance imaging, followed by surgical repair of the aneurysm when the risk of dissection exceeds the risk for repair. Thus, there is a window to initiate therapies to slow aortic enlargement and delay or ideally negate the need for surgical repair of the aneurysm to prevent a dissection. Mouse models of Marfan syndrome-a monogenic disorder predisposing to thoracic aortic disease-have been used extensively to identify such therapies. The initial finding that TGFβ (transformation growth factor-β) signaling was increased in the aortic media of a Marfan syndrome mouse model and that its inhibition via TGFβ neutralization or At1r (Ang II [angiotensin II] type I receptor) antagonism prevented aneurysm development was generally viewed as a groundbreaking discovery that could be translated into the first cure of thoracic aortic disease. However, several large randomized trials of pediatric and adult patients with Marfan syndrome have subsequently yielded no evidence that At1r antagonism by losartan slows aortic enlargement more effectively than conventional treatment with β-blockers. Subsequent studies in mouse models have begun to resolve the complex molecular pathophysiology underlying onset and progression of aortic disease and have emphasized the need to preserve TGFβ signaling to prevent aneurysm formation. This review describes critical experiments that have influenced the evolution of our understanding of thoracic aortic disease, in addition to discussing old controversies and identifying new therapeutic opportunities."	"Downregulation of SPARC Is Associated with Epithelial-Mesenchymal Transition and Low Differentiation State of Biliary Tract Cancer Cells. Biliary tract cancers (BTCs) have a poor prognosis. BTCs are characterized by a prominent desmoplastic reaction which possibly contributes to the aggressive phenotype of this tumor. The desmoplastic reaction includes excessive production and deposition of extracellular matrix proteins such as periostin, secreted protein acidic and rich in cysteine (SPARC), thrombospondin-1, as well as accumulation of α-smooth muscle actin-positive cancer-associated fibroblasts and immune cells, secreting growth factors and cytokines including transforming growth factor (TGF)-β. In the present study, we investigated the expression of SPARC in BTC as well as its possible regulation by TGF-β. Expression levels of Sparc, TGF-β1 and its receptor ALK5 were evaluated by quantitative real-time PCR in 6 biliary tract cell lines as well as 1 immortalized cholangiocyte cell line (MMNK-1). RNAs from tumor samples of 7 biliary tract cancer patients were analyzed for expression of Sparc, TGF-β type II receptor (TbRII) as well as Twist and ZO-1. MMNK-1 cells were stimulated with TGF-β for 24 h, and Sparc, ZO-1 and E-Cadherin expressions were determined. The presence of SPARC protein was analyzed by immunohistochemistry in tumor specimens from 10 patients. When comparing basal Sparc transcript levels in diverse BTC cell lines to MMNK-1 cells, we found that it was strongly downregulated in all cancer cell lines. The remaining expression levels were higher in highly differentiated cell lines (CCSW1, MZChA1, MZChA2 and TFK-1) than in less differentiated and undifferentiated ones (BDC, SKChA1). Expression of Sparc in BTC patient samples showed a significant positive correlation with expression of the epithelial marker ZO-1. In contrast, the mesenchymal marker Twist and the TbRII showed a trend of negative correlation with expression of Sparc in these samples. TGF-β exposure significantly downregulated Sparc expression in MMNK-1 cholangiocytes in vitro in parallel to downregulation of epithelial markers (E-Cadherin and ZO-1). Finally, SPARC immunostaining was performed in 10 patient samples, and the correlation between absence of SPARC and survival times was analyzed. These data imply that a decrease in SPARC expression is correlated with dedifferentiation of BTC cells resulting in enhanced EMT being possibly mediated by TGF-β. Thereby SPARC levels might be a marker for individual prognosis of a patient, and strategies aiming at inhibition of SPARC downregulation might have potential for new future therapies."	"Increased type III TGF-β receptor shedding decreases tumorigenesis through induction of epithelial-to-mesenchymal transition. The type III TGF-β receptor (TβRIII) is a TGF-β co-receptor that presents ligand to the type II TGF-β receptor to initiate signaling. TβRIII also undergoes ectodomain shedding to release a soluble form (sTβRIII) that can bind ligand, sequestering it away from cell surface receptors. We have previously identified a TβRIII extracellular mutant that has enhanced ectodomain shedding (&quot;super shedding (SS)&quot;-TβRIII-SS). Here, we utilize TβRIII-SS to study the balance of cell surface and soluble TβRIII in the context of lung cancer. We demonstrate that expressing TβRIII-SS in lung cancer cell models induces epithelial-to-mesenchymal transition (EMT) and that these TβRIII-SS (EMT) cells are less migratory, invasive and adhesive and more resistant to gemcitabine. Moreover, TβRIII-SS (EMT) cells exhibit decreased tumorigenicity but increased growth rate in vitro and in vivo. These studies suggest that the balance of cell surface and soluble TβRIII may regulate a dichotomous role for TβRIII during cancer progression."	"Prg4 prevents osteoarthritis induced by dominant-negative interference of TGF-ß signaling in mice. Prg4, also known as Lubricin, acts as a joint/boundary lubricant. Prg4 has been used to prevent surgically induced osteoarthritis (OA) in mice. Surgically induced OA serves as a good model for post-traumatic OA but is not ideal for recapitulating age-related OA. Reduced expression of the TGF-β type II receptor (TGFβR2) is associated with age-related OA in clinical samples, so we previously characterized a mouse model that exhibits OA due to expression of a mutated dominant-negative form of TGFβR2 (DNIIR). Prg4 expression was significantly reduced in DNIIR mice. Furthermore, we showed that Prg4 was a transcriptional target of TGF-ß via activation of Smad3, the main signal transducing protein for TGF-ß. The objective of the present study was to determine whether maintenance of Prg4, a down-stream transcriptional target of TGF-ß, prevents OA associated with attenuated TGF-ß signaling in mice. Wild-type, DNIIR, and bitransgenic mice that express both DNIIR and Prg4, were compared. Mice were assessed with a foot misplacement behavioral test, μCT, histology, and Western blot. Compared to DNIIR mice, bitransgenic DNIIR+Prg4 mice missed 1.3 (0.4, 2.1) fewer steps while walking (mean difference (95% confidence interval)), exhibited a cartilage fibrillation score that was 1.8 (0.4, 3.1) points lower, exhibited cartilage that was 28.2 (0.5, 55.9) μm thicker, and exhibited an OARSI score that was 6.8 (-0.9, 14.5) points lower. However, maintenance of Prg4 expression did not restore levels of phosphorylated Smad3 in DNIIR mice, indicating Prg4 does not simply stimulate TGF-ß signaling. Our results indicate that maintenance of Prg4 expression prevents OA progression associated with reduced TGF-β signaling in mice. Since there was no evidence that Prg4 acts by stimulating the TGF-ß signaling cascade, we propose that Prg4, a transcriptional target of TGF-ß, attenuates OA progression through its joint lubrication function."	"Lineage-specific events underlie aortic root aneurysm pathogenesis in Loeys-Dietz syndrome. The aortic root is the predominant site for development of aneurysm caused by heterozygous loss-of-function mutations in positive effectors of the transforming growth factor-β (TGF-β) pathway. Using a mouse model of Loeys-Dietz syndrome (LDS) that carries a heterozygous kinase-inactivating mutation in TGF-β receptor I, we found that the effects of this mutation depend on the lineage of origin of vascular smooth muscle cells (VSMCs). Secondary heart field-derived (SHF-derived), but not neighboring cardiac neural crest-derived (CNC-derived), VSMCs showed impaired Smad2/3 activation in response to TGF-β, increased expression of angiotensin II (AngII) type 1 receptor (Agtr1a), enhanced responsiveness to AngII, and higher expression of TGF-β ligands. The preserved TGF-β signaling potential in CNC-derived VSMCs associated, in vivo, with increased Smad2/3 phosphorylation. CNC-, but not SHF-specific, deletion of Smad2 preserved aortic wall architecture and reduced aortic dilation in this mouse model of LDS. Taken together, these data suggest that aortic root aneurysm predisposition in this LDS mouse model depends both on defective Smad signaling in SHF-derived VSMCs and excessive Smad signaling in CNC-derived VSMCs. This work highlights the importance of considering the regional microenvironment and specifically lineage-dependent variation in the vulnerability to mutations in the development and testing of pathogenic models for aortic aneurysm."	"Losartan attenuates progression of osteoarthritis in the synovial temporomandibular and knee joints of a chondrodysplasia mouse model through inhibition of TGF-β1 signaling pathway. Transforming growth factor beta 1 (TGF-β1) is implicated in osteoarthritis (OA). The purpose of this study was to explore the ability of Losartan to inhibit the inflammatory signaling pathway of TGF-β1 observed during osteoarthritic progression in the temporomandibular joint (TMJ) and knee joint using a genetic mouse model. A murine OA model displaying the heterozygous chondrodysplasia gene (cho/+), a col11a1 mutation, was used to test this hypothesis. Following a 7-month treatment period with Losartan, the synovial joints were analyzed for histopathological improvement comparing two experimental groups. Tissues were fixed in paraformaldehyde, processed to paraffin section, and stained with Safranin O and Fast Green to visualize proteoglycans and collagen proteins in cartilage. Using the Modified Mankin scoring system, the degree of staining and OA progression were evaluated. Results show heterozygous animals receiving Losartan having diminished degeneration of TMJ condylar and knee joint articular cartilage. This was confirmed in the TMJ and knee by a statistically significant decrease in the Mankin histopathology score. Decreased expression of HtrA1, a key regulator to the TGF-β1 signaling pathway, was demonstrated in vitro as well as in vivo, via Losartan inhibition. Using a genetic mouse model of OA, this study demonstrated the utility of Losartan to improve treatment of human OA in the TMJ and knee joint through inhibition of the TGF-β1 signaling cascade. We further demonstrated inhibition of HtrA1, the lowering of Mankin scores to wild type control levels, and the limiting of OA progressive damage with treatment of Losartan."	"MiR-181a, a new regulator of TGF-β signaling, can promote cell migration and proliferation in gastric cancer. Transforming growth factor-beta (TGF-β) signaling pathway plays pivotal roles in various types of cancer. TGF-β receptor 2 (TGFβR2) contains a kinase domain that phosphorylates and activates the downstream of the TGF-β signaling pathway. Our previous microarray analysis revealed marked changes in miR-181a expression in gastric cancers, and the bioinformatics analysis suggested that miR-181a negatively regulated TGFβR2. In order to verify the effect of miR-181a on TGFβR2 and clarify the influence of miR-181a on the migration and proliferation of gastric cancer, studies in gastric cancer cell lines and xenograft mouse models were carried out. We found that a reduced expression of TGFβR2 and an increased expression miR-181a in gastric cancer tissues compared to adjacent noncancerous tissues. A luciferase reporter assay confirmed that TGFβR2 was a target of miR-181a. In addition, we found that miR-181a mimics, which increased the level of miR-181a, downregulated the expression of TGFβR2 in the gastric cancer cell line SGC-7901. Moreover, both the overexpression of miR-181a and the downregulation of TGFβR2 promoted the migration and proliferation of SGC-7901 cells. Conversely, SGC-7901 cell migration and proliferation were inhibited by the downregulation of miR-181a and the overexpression of TGFβR2. Furthermore, the increased expression of miR-181a and the decreased expression of TGFβR2 also enhanced the tumor growth in mice bearing gastric cancer. Our results herein indicated that miR-181a promoted the migration and proliferation of gastric cancer cells by downregulating TGFβR2 at the posttranscriptional level. The present study suggests that miR-181a is a novel negative regulator of TGFβR2 in the TGF-β signaling pathway and thus represents a potential new therapeutic target for gastric cancer."	"Connexin 43 is involved in early differentiation of human embryonic stem cells. Gap junctional intercellular communication (GJIC) is important for maintaining the pluripotency of mouse embryonic stem cells (mESC). However, human ESC (hESC) have a high level of connexin (Cx) molecules with unknown function. In this study, we found that the major Cx molecule, Cx43, was highly expressed in undifferentiated hESC. It was down-regulated upon spontaneously differentiation by embryoid body formation and induced differentiation along ectoderm, mesoderm and extraembryonic lineages, but up-regulated along endoderm differentiation. The knockdown of Cx43 and GJIC had no effect on the maintenance of hESC, as demonstrated by no morphological changes and similar expression levels of pluripotent markers (OCT4, NANOG, SSEA-3 and SSEA-4) and early differentiation markers (KRT8 and KRT18). Meanwhile, Cx43 knock down had no effect on endodermal markers (SOX17, FOXA2 and CXCR4) expression when hESC were differentiating into definitive endoderm lineage. On the contrary, it led to lower levels of mesodermal markers (CD56, CD34 and PDGFR-α) when cells were undergoing mesoderm differentiation. When compared to control, Cx43 knockdown led to higher attachment rate, HCG secretion and cell invasion of the hESC derived trophoblastic cells. Cx43 knockdown also resulted in up-regulated expressions of placental hormone (β-hCG) and implantation related genes (LIFR, CDH5, LEP, PGF, TGFBR2). Our study suggested that Cx43 and GJIC had no effect on the undifferentiated growth of hESC but affected specific lineage differentiation."	"Downregulation of Profibrotic Gene Expression by Angiotensin Receptor Blockers. Chronic allograft nephropathy is characterized by interstitial fibrosis and tubular atrophy. The main players in the process of fibrosis are transforming growth factor-β (TGF-β) and miR-21 expression with a bidirectional interplay. This study aimed to evaluate the effects of angiotensin receptor type 1 antagonist, losartan, on peripheral blood and tissue expression of TGF-β and miR-21 and histologic findings in allograft biopsy in kidney transplant recipients. In a randomized controlled trial, 54 patients were enrolled and divided randomly into 2 groups. Group 1 was treated with a daily dose of 25 mg of losartan and group 2 was considered as control. Blood sampling was done at 48 hours posttransplantation and the 3rd and 6th months after transplantation for measurement of TGF-β RNA and miR-21. Protocol biopsy was performed at the 6th month posttransplantation for RNA extraction and histologic evaluation of interstitial fibrosis and tubular atrophy. Although patients were not different initially, those who underwent treatment with losartan had lower miR-21 and TGF-β levels in circulating PBMCs, and there was a decreasing trend in peripheral blood TGF-β levels during the 6-month follow-up period. Tissue expression of miR-21 and TGF-β was also considerably lower among the losartan-treated patients at the time of tissue biopsy. Losartan treatment decreased the tissue expression of miR-21 and TGF-β and tissue fibrosis in kidney transplant patient, and it had a protective effect on allograft function and may delay chronic allograft dysfunction by reducing mediators of fibrosis."	"A Neutralizing Aptamer to TGFBR2 and miR-145 Antagonism Rescue Cigarette Smoke- and TGF-β-Mediated CFTR Expression. Transforming growth factor β (TGF-β), signaling induced by cigarette smoke (CS), plays an important role in the progression of airway diseases, like chronic bronchitis associated with chronic obstructive pulmonary disease (COPD), and in smokers. Chronic bronchitis is characterized by reduced mucociliary clearance (MCC). Cystic fibrosis transmembrane conductance regulator (CFTR) plays an important role in normal MCC. TGF-β and CS (via TGF-β) promote acquired CFTR dysfunction by suppressing CFTR biogenesis and function. Understanding the mechanism by which CS promotes CFTR dysfunction can identify therapeutic leads to reverse CFTR suppression and rescue MCC. TGF-β alters the microRNAome of primary human bronchial epithelium. TGF-β and CS upregulate miR-145-5p expression to suppress CFTR and the CFTR modifier, SLC26A9. miR-145-5p upregulation with a concomitant CFTR and SLC26A9 suppression was validated in CS-exposed mouse models. While miR-145-5p antagonism rescued the effects of TGF-β in bronchial epithelial cells following transfection, an aptamer to block TGF-β signaling rescues CS- and TGF-β-mediated suppression of CFTR biogenesis and function in the absence of any transfection reagent. These results demonstrate that miR-145-5p plays a significant role in acquired CFTR dysfunction by CS, and they validate a clinically feasible strategy for delivery by inhalation to locally modulate TGF-β signaling in the airway and rescue CFTR biogenesis and function."	"MicroRNA‑219 overexpression serves a protective role during liver fibrosis by targeting tumor growth factor β receptor 2. Progressive liver fibrosis is the primary cause of liver cirrhosis and hepatocellular carcinoma, and leads to considerable morbidity and mortality. Recent studies have demonstrated that microRNAs (miRNAs or miRs) are associated with fibrotic processes in liver disorders, although the exact role of miR‑219 remains unclear and the relevant mechanisms remain to be completely understood. To the best of our knowledge, the present study was the first to demonstrate the functional implications of miR‑219 expression during liver fibrosis. The present study reported that miR‑219 exhibited significantly reduced expression in serum from patients and that its expression was negatively associated with clinical stage. It was also demonstrated that miR‑219 attenuated angiotensin II‑induced expression of pro‑fibrotic markers, including α‑smooth muscle actin, atlastin GTPase 1 and collagen. Additionally, a CCl4‑induced mouse liver injury model was used to demonstrate that miR‑219 strongly suppressed liver fibrosis in vivo. Furthermore, the present study identified tumor growth factor β receptor 2 (TGFBR2) as a direct target gene of miR‑219. In conclusion, the results of the present study revealed that miR‑219 may regulate pro‑fibrotic markers by directly targeting the TGFBR2 gene and the miR‑219/TGFBR2 signaling pathway may be a potential therapeutic target for liver fibrosis."	"Myofibroblast-Specific TGFβ Receptor II Signaling in the Fibrotic Response to Cardiac Myosin Binding Protein C-Induced Cardiomyopathy. Hypertrophic cardiomyopathy occurs with a frequency of about 1 in 500 people. Approximately 30% of those affected carry mutations within the gene encoding cMyBP-C (cardiac myosin binding protein C). Cardiac stress, as well as cMyBP-C mutations, can trigger production of a 40kDa truncated fragment derived from the amino terminus of cMyBP-C (Mybpc3<sup>40kDa</sup>). Expression of the 40kDa fragment in mouse cardiomyocytes leads to hypertrophy, fibrosis, and heart failure. Here we use genetic approaches to establish a causal role for excessive myofibroblast activation in a slow, progressive genetic cardiomyopathy-one that is driven by a cardiomyocyte-intrinsic genetic perturbation that models an important human disease. TGFβ (transforming growth factor-β) signaling is implicated in a variety of fibrotic processes, and the goal of this study was to define the role of myofibroblast TGFβ signaling during chronic Mybpc3<sup>40kDa</sup> expression. To specifically block TGFβ signaling only in the activated myofibroblasts in Mybpc3<sup>40kDa</sup> transgenic mice and quadruple compound mutant mice were generated, in which the TGFβ receptor II (TβRII) alleles ( Tgfbr2) were ablated using the periostin ( Postn) allele, myofibroblast-specific, tamoxifen-inducible Cre ( Postnmcm) gene-targeted line. Tgfbr2 was ablated either early or late during pathological fibrosis. Early myofibroblast-specific Tgfbr2 ablation during the fibrotic response reduced cardiac fibrosis, alleviated cardiac hypertrophy, preserved cardiac function, and increased lifespan of the Mybpc3<sup>40kDa</sup> transgenic mice. Tgfbr2 ablation late in the pathological process reduced cardiac fibrosis, preserved cardiac function, and prolonged Mybpc3<sup>40kDa</sup> mouse survival but failed to reverse cardiac hypertrophy. Fibrosis and cardiac dysfunction induced by cardiomyocyte-specific expression of Mybpc3<sup>40kDa</sup> were significantly decreased by Tgfbr2 ablation in the myofibroblast. Surprisingly, preexisting fibrosis was partially reversed if the gene was ablated subsequent to fibrotic deposition, suggesting that continued TGFβ signaling through the myofibroblasts was needed to maintain the heart fibrotic response to a chronic, disease-causing cardiomyocyte-only stimulus."	"Long Noncoding RNA HOTTIP Promotes Mouse Hepatic Stellate Cell Activation via Downregulating miR-148a. HOTTIP is a critical modulator in human diseases including liver cancer, but its role and molecular biological mechanisms in liver fibrosis are still unclear. The expression profile of HOTTIP during the progression of liver fibrosis was detected in human liver samples and in CCl4-treated mice using qRT-PCR. The expressing sh-HOTTIP adenoviral vector was used to reduce HOTTIP levels in vivo. Dual-Luciferase Reporter Assay was performed to validate the interaction between miR-148a and HOTTIP, TGFBR1, or TGFBR2. HOTTIP expressions in fibrotic liver samples and cirrhotic liver samples were significantly upregulated compared with healthy liver controls, and cirrhotic samples exhibited the highest levels of HOTTIP. Moreover, HOTTIP expressions were substantially induced in the liver tissues and hepatic stellate cells (HSC) of CCl4-treated mice. Ad-shHOTTIP delivery could alleviate CCl4- induced liver fibrosis in mice. Down-regulation of HOTTIP inhibited the viability and activation of HSCs in vitro, and HOTTIP negatively regulated miR-148a expression in HSCs. miR-148a had a negative effect on HSC activation by targeting TGFBR1 and TGFBR2. HOTTIP is involved in the progression of liver fibrosis by promoting HSC activation. The high level of HOTTIP downregulates miR-148a, thus to increase the level of TGFBR1 and TGFBR2 and contribute to liver fibrosis."	"TGFβ-Signaling and FOXG1-Expression Are a Hallmark of Astrocyte Lineage Diversity in the Murine Ventral and Dorsal Forebrain. Heterogeneous astrocyte populations are defined by diversity in cellular environment, progenitor identity or function. Yet, little is known about the extent of the heterogeneity and how this diversity is acquired during development. To investigate the impact of TGF (transforming growth factor) β-signaling on astrocyte development in the telencephalon we deleted the TGFBR2 (transforming growth factor beta receptor 2) in early neural progenitor cells in mice using a FOXG1 (forkhead box G1)-driven CRE-recombinase. We used quantitative proteomics to characterize TGFBR2-deficient cells derived from the mouse telencephalon and identified differential protein expression of the astrocyte proteins GFAP (glial fibrillary acidic protein) and MFGE8 (milk fat globule-EGF factor 8). Biochemical and histological investigations revealed distinct populations of astrocytes in the dorsal and ventral telencephalon marked by GFAP or MFGE8 protein expression. The two subtypes differed in their response to TGFβ-signaling. Impaired TGFβ-signaling affected numbers of GFAP astrocytes in the ventral telencephalon. In contrast, TGFβ reduced MFGE8-expression in astrocytes deriving from both regions. Additionally, lineage tracing revealed that both GFAP and MFGE8 astrocyte subtypes derived partly from FOXG1-expressing neural precursor cells."	"Expression of Bone Morphogenetic Proteins in Multiple Sclerosis Lesions. Bone morphogenetic proteins (BMPs) are secreted proteins that belong to the transforming growth factor-β superfamily. In the adult brain, they modulate neurogenesis, favor astrogliogenesis, and inhibit oligodendrogenesis. Because BMPs may be involved in the failure of remyelination in multiple sclerosis (MS), we characterized the expression of BMP-2, BMP-4, BMP-5, and BMP-7; BMP type II receptor (BMPRII); and phosphorylated SMAD (pSMAD) 1/5/8 in lesions of MS and other demyelinating diseases. A total of 42 MS lesions, 12 acute ischemic lesions, 8 progressive multifocal leukoencephalopathy lesions, and 10 central nervous system areas from four nonneuropathological patients were included. Lesions were histologically classified according to the inflammatory activity. The expression of BMP-2, BMP-4, BMP-5, BMP-7, BMPRII, and pSMAD1/5/8 was quantified by immunostaining, and colocalization studies were performed. In MS lesions, astrocytes, microglia/macrophages, and neurons expressed BMP-2, BMP-4, BMP-5, and BMP-7; BMPRII; and pSMAD1/5/8. Oligodendrocytes expressed BMP-2 and BMP-7 and pSMAD1/5/8. The percentage of cells that expressed BMPs, BMPRII, and pSMAD1/5/8 correlated with the inflammatory activity of MS lesions, and changes in the percentage of positive cells were more relevant in MS than in other white matter-damaging diseases. These data indicate that BMPs are increased in active MS lesions, suggesting a possible role in MS pathogenesis."	"Synergistic effects of sulfur dioxide and polycyclic aromatic hydrocarbons on pulmonary pro-fibrosis via mir-30c-1-3p/ transforming growth factor β type II receptor axis. SO2 and PAHs are well-known pollutants of coal burning and significant contributors to haze episodes. The purpose of the study is to determine whether the combined effects of SO2 and BaP are synergetic and to investigate the pro-fibrotic influences and possible mechanism from the aspect of microRNAs. In the present study cellular metabolic activity of BEAS-2B was assessed using MTT probe. C57BL/6 mice were exposed to BaP (40 mg/kg b.w.) for 5 days or SO2 (7 mg/m<sup>3</sup>) inhalation for 4 weeks alone or together. Lung tissues were processed for histology to assess pulmonary fibrosis. The protein level of pulmonary pro-fibrotic genes (Col1a1, Col3a1, alpha-SMA, fibronectin) and TGFβR2 were analyzed by Western blot and immunofluorescence in vivo and in vitro. Furthermore, we clarified that the microRNA expression of mir-30c-1-3p by real-time RT-PCR. The luciferase reporter assay was used to determine the binding sites of mir-30c-1-3p in the 3'-UTR of TGFβR2. It was confirmed that SO2 and BaP acted together to produce synergistic effects in cellular metabolic activity. Coexisting of SO2 and BaP increased the protein expression of pro-fibrotic genes and TGFβR2 and decreased mir-30c-1-3p in vivo and in vitro. Dual-luciferase reporter gene assays showed that TGFβR2 was a validated target of mir-30c-1-3p. All above results demonstrated that mir-30c-1-3p was involved in the synergistic pro-fibrotic effects of SO2 and BaP in lung via targeting TGFβR2. This work implies the potential risk of pulmonary fibrosis from the co-existence of SO2 and PAHs and provides new insights into the molecular markers for relevant diseases."	"Natural Killer-Derived Exosomal miR-186 Inhibits Neuroblastoma Growth and Immune Escape Mechanisms. In neuroblastoma, the interplay between immune cells of the tumor microenvironment and cancer cells contributes to immune escape mechanisms and drug resistance. In this study, we show that natural killer (NK) cell-derived exosomes carrying the tumor suppressor microRNA (miR)-186 exhibit cytotoxicity against MYCN-amplified neuroblastoma cell lines. The cytotoxic potential of these exosomes was partly dependent upon expression of miR-186. miR-186 was downregulated in high-risk neuroblastoma patients, and its low expression represented a poor prognostic factor that directly correlated with NK activation markers (i.e., NKG2D and DNAM-1). Expression of MYCN, AURKA, TGFBR1, and TGFBR2 was directly inhibited by miR-186. Targeted delivery of miR-186 to MYCN-amplified neuroblastoma or NK cells resulted in inhibition of neuroblastoma tumorigenic potential and prevented the TGFβ1-dependent inhibition of NK cells. Altogether, these data support the investigation of a miR-186-containing nanoparticle formulation to prevent tumor growth and TGFβ1-dependent immune escape in high-risk neuroblastoma patients as well as the inclusion of ex vivo-derived NK exosomes as a potential therapeutic option alongside NK cell-based immunotherapy.Significance: These findings highlight the therapeutic potential of NK cell-derived exosomes containing the tumor suppressor miR-186 that inhibits growth, spreading, and TGFβ-dependent immune escape mechanisms in neuroblastoma."	"Molecular mechanism of miR-153 inhibiting migration, invasion and epithelial-mesenchymal transition of breast cancer by regulating transforming growth factor beta (TGF-β) signaling pathway. To investigate the role and mechanism of action of miR-153 in the migration, invasion, and epithelial-mesenchymal transition (EMT) of breast cancer cells. Quantitative real time polymerase chain reaction (qRT-PCR) was used to detect the expression of miR-153 and transforming growth factor beta receptor 2 (TGFBR2) in tissue specimens and cells. miR-153 overexpression in breast cancer cells was achieved by miR-153 mimic transfection. Mobility and invasiveness of breast cancer cells were evaluated by transwell assay. EMT was evaluated by Western blot detecting the protein level of E-cadherin and Vimentin. Interaction of miR-153 and 3'-untranslated region (UTR) of TGFBR2 messenger RNA (mRNA) was investigated by luciferase reporter assay. The expression of miR-153 in breast cancer tissue specimens and MDA-MB-231 cells was significantly lower than that in nonmalignant counterparts, inversely correlating with that of TGFBR2 mRNA. Transfection with miR-153 mimic significantly increased miR-153 level in MDA-MB-231 cells while inhibiting its migration, invasion, and EMT in vitro, which could be mimicked by TGFBR2 knockdown. Luciferase reporter assay confirmed two targets of miR-153 on the 3'-UTR of TGFBR2 mRNA. Restoring TGFBR2 protein level by transient overexpression largely rescued migration, invasion, and EMT of MDA-MB-231 cells that were repressed by miR-153 mimic transfection. miR-153 inhibits breast cancer cell migration, invasion, and EMT by targeting TGFBR2."	"Genome-wide differences in DNA methylation changes in caprine ovaries between oestrous and dioestrous phases. DNA methylation plays a vital role in reproduction. Entire genome DNA methylation changes during the oestrous phase (ES) and dioestrous phase (DS) in the ovaries of Guanzhong dairy goats were investigated using bisulphite sequencing to understand the molecular biological mechanisms of these goats' oestrous cycle. We discovered distinct genome-wide DNA methylation patterns in ES and DS ovaries. A total of 26,910 differentially methylated regions were upregulated and 21,453 differentially methylated regions were downregulated in the ES samples compared with the DS samples (P-values ≤0.05 and fold change of methylation ratios ≥2). Differentially methylated region analysis showed hypomethylation in the gene body regions and hypermethylation in the joining region between upstream regions and gene bodies. The methylation ratios of the STAR, FGF2, FGF12, BMP5 and SMAD6 genes in the ES samples were lower than those of the DS samples (P-values ≤0.05 and fold change of methylation ratios ≥2). Conversely, the methylation ratios of the EGFR, TGFBR2, IGF2BP1 and MMD2 genes increased in the ES samples compared with the DS samples. In addition, 223 differentially methylated genes were found in the GnRH signalling pathway (KO04912), ovarian steroidogenesis pathway (KO04913), oestrogen signalling pathway (KO04915), oxytocin signalling pathway (KO04921), insulin secretion pathway (KO04911) and MAPK signalling pathway (KO04010). This study is the first large-scale comparison of the high-resolution DNA methylation landscapes of oestrous and dioestrous ovaries from dairy goats. Previous studies and our investigations have shown that the NR5A2, STAR, FGF2 and BMP5 genes might have potential application value in regulating caprine oestrus."	"Dysregulated miRNAome and Proteome of PPRV Infected Goat PBMCs Reveal a Coordinated Immune Response. In this study, the miRNAome and proteome of virulent Peste des petits ruminants virus (PPRV) infected goat peripheral blood mononuclear cells (PBMCs) were analyzed. The identified differentially expressed miRNAs (DEmiRNAs) were found to govern genes that modulate immune response based on the proteome data. The top 10 significantly enriched immune response processes were found to be governed by 98 genes. The top 10 DEmiRNAs governing these 98 genes were identified based on the number of genes governed by them. Out of these 10 DEmiRNAs, 7 were upregulated, and 3 were downregulated. These include miR-664, miR-2311, miR-2897, miR-484, miR-2440, miR-3533, miR-574, miR-210, miR-21-5p, and miR-30. miR-664 and miR-484 with proviral and antiviral activities, respectively, were upregulated in PPRV infected PBMCs. miR-210 that inhibits apoptosis was downregulated. miR-21-5p that decreases the sensitivity of cells to the antiviral activity of IFNs and miR-30b that inhibits antigen processing and presentation by primary macrophages were downregulated, indicative of a strong host response to PPRV infection. miR-21-5p was found to be inhibited on IPA upstream regulatory analysis of RNA-sequencing data. This miRNA that was also highly downregulated and was found to govern 16 immune response genes in the proteome data was selected for functional validation vis-a-vis TGFBR2 (TGF-beta receptor type-2). TGFBR2 that regulates cell differentiation and is involved in several immune response pathways was found to be governed by most of the identified immune modulating DEmiRNAs. The decreased luciferase activity in Dual Luciferase Reporter Assay indicated specific binding of miR-21-5p and miR-484 to their target thus establishing specific binding of the miRNAs to their targets.This is the first report on the miRNAome and proteome of virulent PPRV infected goat PBMCs."	"Mouse Model for Cholangiocarcinoma from Peribiliary Glands. A good mouse model is mandatory for elucidating carcinogenic mechanisms and identifying the cellular origin of cancer. Although the lack of an appropriate mouse model has hampered investigation of extrahepatic cholangiocarcinoma (ECC), we recently established a novel mouse model of biliary injury-related ECC by ductal cell-specific activation of Kras and deletion of transforming growth factor (TGF) β receptor type 2 and E-cadherin. Using this mouse model, we identified that peribiliary glands, which are considered a biliary epithelial stem cell niche, are potential cellular origins of ECC. Furthermore, we established an extrahepatic biliary organoid-derived xenograft cholangiocarcinoma (CC) model by lentiviral induction of Cre in organoids. This organoid system recreated the in vivo conditions and facilitated analysis of carcinogenesis. In this chapter, we describe the protocol used to establish our mouse model of ECC derived from peribiliary glands and our extrahepatic biliary organoid-derived xenograft model of CC."	"TGFβ and BMPRII signalling pathways in the pathogenesis of pulmonary arterial hypertension. Pulmonary arterial hypertension (PAH) is a severe condition characterised by remodelling of precapillary pulmonary arteries sometimes associated with mutations in the bone morphogenetic protein receptor type 2 (BMPR2) gene. Even in the absence of BMPR2 mutations, increased transforming growth factor (TGF)β receptor signalling and decreased BMPRII signalling have been shown to contribute to PAH pathogenesis. In this Keynote, we review the potential mechanisms by which the imbalance of BMP/TGFβ signalling contributes to endothelial dysfunction, vascular remodelling, inflammation and disordered angiogenesis in PAH. Additionally, we highlight how currently used drugs can influence BMP/TGFβ signalling. Finally, we browse the newly developed therapeutic approaches targeting BMPRII and TGFβ signalling pathways by focusing on preclinical studies and clinical trials and put them into perspectives."	"Tumour-vasculature development via endothelial-to-mesenchymal transition after radiotherapy controls CD44v6<sup>+</sup> cancer cell and macrophage polarization. It remains controversial whether targeting tumour vasculature can improve radiotherapeutic efficacy. We report that radiation-induced endothelial-to-mesenchymal transition (EndMT) leads to tumour vasculature with abnormal SMA<sup>+</sup>NG2<sup>+</sup> pericyte recruitment during tumour regrowth after radiotherapy. Trp53 (but not Tgfbr2) deletion in endothelial cells (ECs) inhibited radiation-induced EndMT, reducing tumour regrowth and metastases with a high CD44v6<sup>+</sup> cancer-stem-cell (CSC) content after radiotherapy. Osteopontin, an EndMT-related angiocrine factor suppressed by EC-Trp53 deletion, stimulated proliferation in dormant CD44v6<sup>+</sup> cells in severely hypoxic regions after radiation. Radiation-induced EndMT significantly regulated tumour-associated macrophage (TAM) polarization. CXCR4 upregulation in radioresistant tumour ECs was highly associated with SDF-1<sup>+</sup> TAM recruitment and M2 polarization of TAMs, which was suppressed by Trp53 deletion. These EndMT-related phenomena were also observed in irradiated human lung cancer tissues. Our findings suggest that targeting tumour EndMT might enhance radiotherapy efficacy by inhibiting the re-activation of dormant hypoxic CSCs and promoting anti-tumour immune responses."	"Identification of Deregulated Signaling Pathways in Jurkat Cells in Response to a Novel Acylspermidine Analogue-N<sup>4</sup>-Erucoyl Spermidine. Natural polyamines such as putrescine, spermidine, and spermine are crucial in the cell proliferation and maintenance in all the eukaryotes. However, the requirement of polyamines in tumor cells is stepped up to maintain tumorigenicity. Many synthetic polyamine analogues have been designed recently to target the polyamine metabolism in tumors to induce apoptosis. N<sup>4</sup>-Erucoyl spermidine (designed as N<sup>4</sup>-Eru), a novel acylspermidine derivative, has been shown to exert selective inhibitory effects on both hematological and solid tumors, but its mechanisms of action are unknown. In this study, RNA sequencing was performed to investigate the anticancer mechanisms of N<sup>4</sup>-Eru-treated T-cell acute lymphoblastic leukemia (ALL) cell line (Jurkat cells), and gene expression was examined through different tools. We could show that many key oncogenes including NDRG1, CACNA1G, TGFBR2, NOTCH1,2,3, UHRF1, DNMT1,3, HDAC1,3, KDM3A, KDM4B, KDM4C, FOS, and SATB1 were downregulated, whereas several tumor suppressor genes such as CDKN2AIPNL, KISS1, DDIT3, TP53I13, PPARG, FOXP1 were upregulated. Data obtained through RNA-Seq further showed that N<sup>4</sup>-Eru inhibited the NOTCH/Wnt/JAK-STAT axis. This study also indicated that N<sup>4</sup>-Eru-induced apoptosis could involve several key signaling pathways in cancer. Altogether, our results suggest that N<sup>4</sup>-Eru is a promising drug to treat ALL."	"Association between endoglin/transforming growth factor beta receptors 1, 2 gene polymorphisms and the level of soluble endoglin with preeclampsia in Egyptian women. Preeclampsia (PE) is a pregnancy-specific hypertensive disease whose etiopathogenesis remains unclear. This study was designed to assess association between PE and 3 single nucleotide polymorphisms (SNPs): ENG(G/A) rs11792480, TGFβR1(A/C) rs10739778 and TGFβR2(G/A) rs6550005, beside circulating soluble endoglin (sENG), oxidative stress biomarkers and nitric oxide (NO) in Egyptian women. The study included 75 preeclamptic women stratified into 4 clinical subgroups and 50 normotensive pregnant women. Genotyping was performed by real time polymerase chain reaction-Taqman allelic discrimination. Preeclamptic women showed significantly increased sENG and malondialdehyde (MDA), decreased total antioxidant capacity (TAC), endothelial nitric oxide synthase (eNOS) and NO, without change in transforming growth factor beta 1 (TGFβ1) versus controls. Moreover, sENG was significantly higher in severe and early than mild and late PE. Higher MDA and lower TAC and NO were observed in severe than mild PE. ENG(G/A) and TGFβR2(G/A) showed no association with PE. However, CC genotype of TGFβR1(A/C) was more frequent in controls than either PE, early-onset or severe revealing a reduced PE risk in CC genotype versus AA or AA + AC. Importantly, patients carrying AA genotype had higher SBP and MDA with lower TAC, gestational age at delivery (GA) and birth weight than those carrying CC genotype. Excessive sENG release with decreased eNOS/NO may be involved in PE pathogenesis. Women who carry C allele or CC genotype of TGFβR1(A/C) may be less prone to develop PE."	"Mutant p53 in colon cancer. The accumulation of genetic alterations in driver genes is responsible for the development and malignant progression of colorectal cancer. Comprehensive genome analyses have revealed the driver genes, including APC, KRAS, TGFBR2, and TP53, whose mutations are frequently found in human colorectal cancers. Among them, the p53 mutation is found in ~60% of colorectal cancers, and a majority of mutations are missense-type at 'hot spots', suggesting an oncogenic role of mutant p53 by 'gain-of-function' mechanisms. Mouse model studies have shown that one of these missense-type mutations, p53 R270H (corresponding to human R273H), causes submucosal invasion of intestinal tumors, while the loss of wild-type p53 has a limited effect on the invasion process. Furthermore, the same mutant p53 promotes metastasis when combined with Kras activation and TGF-β suppression. Importantly, either missense-type p53 mutation or loss of wild-type p53 induces NF-κB activation by a variety of mechanisms, such as increasing promoter accessibility by chromatin remodeling, which may contribute to progression to epithelial-mesenchymal transition. These results indicate that missense-type p53 mutations together with loss of wild-type p53 accelerate the late stage of colorectal cancer progression through the activation of both oncogenic and inflammatory pathways. Accordingly, the suppression of the mutant p53 function via the inhibition of nuclear accumulation is expected to be an effective strategy against malignant progression of colorectal cancer."	"TGF-β-SMAD-miR-520e axis regulates NSCLC metastasis through a TGFBR2-mediated negative-feedback loop. Transforming growth factor-β (TGF-β) pathway plays crucial roles during the carcinogenesis and metastasis. TGF-β receptor 2 (TGFBR2) is a key molecule for the regulation of TGF-β pathway and frequently downregulated or lost in several cancer types including non-small cell lung cancer (NSCLC), and TGF-β pathway is often regulated by negative-feedback mechanisms, but little is known about the mechanism of TGFBR2 downregulation in NSCLC. Here, we found that the expression of miR-520e is upregulated in metastatic tumor tissues compared with non-metastatic ones, and its expression is inversely correlated with that of TGFBR2 in clinical samples. We also discovered that TGF-β dramatically increased the expression of miR-520e, which targeted and downregulated TGFBR2, and the suppression of miR-520e significantly impaired TGF-β-induced TGFBR2 downregulation. Chromatin immunoprecipitation-PCR experiments further showed that miR-520e is transcriptionally induced by SMAD2/3 in response to TGF-β. Our findings reveal a novel negative-feedback mechanism in TGF-β signaling and the expression level of miR-520e could be a predictive biomarker for NSCLC metastasis."	"Expression, purification, and evaluation of in vivo anti-fibrotic activity for soluble truncated TGF-β receptor II as a cleavable His-SUMO fusion protein. Excessive production of transforming growth factor-β1 (TGF-β1) and its binding to transforming growth factor-β receptor type II (TGF-βRII) promotes fibrosis by activation of the TGF-β1-mediated signaling pathway. Thus, the truncated extracellular domain of TGF-βRII (tTβRII) is a promising anti-fibrotic candidate, as it lacks the signal transduction domain. In this work, the native N-terminal tTβRII was prepared as a His-SUMO fusion protein (termed His-SUMO-tTβRII) in Escherichia coli strain BL21 (DE3). His-SUMO-tTβRII was expressed as a soluble protein under optimal conditions (6 h of induction with 0.5 mM IPTG at 37 °C). His-SUMO-tTβRII was purified by Ni-NTA resin chromatography, and then cleaved with SUMO protease to release native tTβRII, which was re-purified using a Ni-NTA column. Approximately 12 mg of native tTβRII was obtained from a one liter fermentation culture with no less than 95% purity. In vivo studies demonstrated that tTβRII prevented CCl4-induced liver fibrosis, as evidenced by the inhibition of fibrosis-related Col I and α-SMA protein expression in C57BL/6 mice. In addition, tTβRII downregulated phosphorylation of SMAD2/3, which partly repressed TGF-β1-mediated signaling. These data indicate that the His-SUMO expression system is an efficient approach for preparing native tTβRII that possesses anti-liver fibrotic activity, allowing for the large-scale production of tTβRII, which potentially could serve as an anti-fibrotic candidate for treatment of TGF-β1-related diseases."	"Loss of Myeloid-Specific TGF-β Signaling Decreases CTHRC1 to Downregulate bFGF and the Development of H1993-Induced Osteolytic Bone Lesions. The role of myeloid cell-specific TGF-β signaling in non-small-cell lung cancer (NSCLC)-induced osteolytic bone lesion development is unknown. We used a genetically engineered mouse model, Tgfbr2<sup>LysMCre</sup> knockout (KO), which has a loss of TGF-β signaling specifically in myeloid lineage cells, and we found that the area of H1993 cell-induced osteolytic bone lesions was decreased in Tgfbr2<sup>LysMCre</sup> KO mice, relative to the area in control littermates. The bone lesion areas were correlated with tumor cell proliferation, angiogenesis, and osteoclastogenesis in the microenvironment. The smaller bone lesion area was partially rescued by bFGF, which was expressed by osteoblasts. Interestingly, bFGF was able to rescue the osteoclastogenesis, but not the tumor cell proliferation or angiogenesis. We then focused on identifying osteoclast factors that regulate bFGF expression in osteoblasts. We found that the expression and secretion of CTHRC1 was downregulated in osteoclasts from Tgfbr2<sup>LysMCre</sup> KO mice; CTHRC1 was able to promote bFGF expression in osteoblasts, possibly through the Wnt/β-catenin pathway. Functionally, bFGF stimulated osteoclastogenesis and inhibited osteoblastogenesis, but had no effect on H1993 cell proliferation. On the other hand, CTHRC1 promoted osteoblastogenesis and H1993 cell proliferation. Together, our data show that myeloid-specific TGF-β signaling promoted osteolytic bone lesion development and bFGF expression in osteoblasts; that osteoclast-secreted CTHRC1 stimulated bFGF expression in osteoblasts in a paracrine manner; and that CTHRC1 and bFGF had different cell-specific functions that contributed to bone lesion development."	"TGF-beta/TGF-beta RII/CLC-3 axis promotes cognitive disorders in diabetes. Transforming growth factor beta (TGF-beta) and Chloride channel-3 (CLC-3) are critical for inflammatory response, cellular proliferation and apoptosis in hippocampus neurons. However, the relationship between CLC-3 and TGF-beta/TGF-beta Receptor II (RII) pathway in diabetic encephalopathy (DE) is unknown. In this study, both diabetes rat model and diabetes cell model were employed to elucidate the mechanisms involved. The increased expressions of CLC-3 and TGF- beta RII with cognitive impairment were observed in diabetic rats. The most obvious reduction on the survival of HT22 cells was at 10 ng/ml or 15 ng/ml TGF- beta stimulation, while the expressions of CLC-3 and TGF-beta RII were significantly increased under high glucose condition. Moreover, the study showed that CLC-3 antagonists had no apparent effect on up-regulated TGF- beta RII, but TGF- beta 1 inhibitors could reduce the up-regulated CLC-3 under high glucose. Results from the present study indicated that CLC-3 and TGF- beta signals might be related to cognitive disorders. The CLC-3 might be modulated by TGF- beta /TGF- beta RII signaling pathway during the development of DE."	"Changes in mRNA expression of members of TGFB1-associated pathways in human leukocytes during EBV infection. Transforming growth factor β 1 (TGFB1) likely contributes to the pathogenesis of Epstein-Barr virus (EBV)-mediated cancer. A microarray containing 59 probes for detecting mRNA of members of TGFB1-associated pathways was developed. mRNA expression of TGFB1 receptors and members of connected pathways were examined in peripheral blood leukocytes of patients during acute EBV infection and after recovery. TGFB1 and TGFBR2 mRNA expression was increased in patients with EBV infection. Similarly, mRNA expression of protein kinase C (PRKCB), MAP3K7, PDLIM7, and other members of TGFB1 and NF-κB signaling pathways increased. A shift of mRNA transcript variant expression of some key members (TGFBR2, PRKCB, and NFKBIB) of involved signaling pathways was detected. After the patients' recovery, most of the altered mRNA expression has been normalized. We speculate that in patients with EBV infection, members of TGFB1-associated pathways contribute to the suppression of proapoptotic and induction of pro-survival factors in leukocytes. The modulation of TGFB1-associated pathways may be considered as a potential risk factor in the development of EBV-associated tumors in patients with acute EBV infection."	"MicroRNA Quantitation During Dendritic Cell Endocytosis Using Imaging Flow Cytometry: Key Factors and Requirements. MicroRNA (miRNA)-induced suppression of dendritic cells (DCs) has been implicated in many diseases. Therefore, accurate monitoring of miRNA endocytosis by DCs is important for understanding the role of miRNAs in many diseases. Recently, a method for measuring the co-localization of Argonaute 2 (AGO2)-associated miRNAs on laser-scanning confocal microscopy method was proposed to localize the miRNAs. But its definition was limited by the number of observed cells through its accuracy. In this study, a method based on imaging flow cytometry was developed to localize miR-590-5p with fluorescent probes in DCs. miR-590-5p proven to play an important role in tumor immunity. This method enabled the quantification, visualization and localization of the fluorescence intensity in 30,000 individual cells. Using this method, the DCs with different endocytotic ability were distinguished. The behaviour of miR-590-5p during endocytosis under the stimulation of tumor antigen in DCs was observed, binding to its cognate target mRNA and degradation in DCs. This method based on imaging flow cytometry provide an additional method to study miRNA processing in DCs, which makes it a valuable addition to existing miRNA research techniques."	"The variant at TGFBRAP1 is significantly associated with type 2 diabetes mellitus and affects diabetes-related miRNA expression. While the transforming growth factor-β1 (TGF-β1) regulates the growth and proliferation of pancreatic β-cells, its receptors trigger the activation of Smad network and subsequently induce the insulin resistance. A case-control was conducted to evaluate the associations of the polymorphisms of TGF-β1 receptor-associated protein 1 (TGFBRAP1) and TGF-β1 receptor 2 (TGFBR2) with type 2 diabetes mellitus (T2DM), and its genetic effects on diabetes-related miRNA expression. miRNA microarray chip was used to screen T2DM-related miRNA and 15 differential expressed miRNAs were further validated in 75 T2DM and 75 normal glucose tolerance (NGT). The variation of rs2241797 (T/C) at TGFBRAP1 showed significant association with T2DM in case-control study, and the OR (95% CI) of dominant model for cumulative effects was 1.204 (1.060-1.370), Bonferroni corrected P &lt; 0.05. Significant differences in the fast glucose and HOMA-β indices were observed amongst the genotypes of rs2241797. The expression of has-miR-30b-5p and has-miR-93-5p was linearly increased across TT, TC, and CC genotypes of rs2241797 in NGT, Ptrend values were 0.024 and 0.016, respectively. Our findings suggest that genetic polymorphisms of TGFBRAP1 may contribute to the genetic susceptibility of T2DM by mediating diabetes-related miRNA expression."	"The c-MYC/NAMPT/SIRT1 feedback loop is activated in early classical and serrated route colorectal cancer and represents a therapeutic target. We have recently identified a positive feedback loop in which c-MYC increases silent information regulator 1 (SIRT1) protein level and activity through transcriptional activation of nicotinamide phosphoribosyltransferase (NAMPT) and NAD<sup>+</sup> increase. Here, we determined the relevance of the c-MYC-NAMPT-SIRT1 feedback loop, including the SIRT1 inhibitor deleted in breast cancer 1 (DBC1), for the development of conventional and serrated colorectal adenomas. Immunohistochemical analyses of 104 conventional adenomas with low- and high-grade dysplasia and of 157 serrated lesions revealed that elevated expression of c-MYC, NAMPT, and SIRT1 characterized all conventional and serrated adenomas, whereas DBC1 was not differentially regulated. Analyzing publicly available pharmacogenomic databases from 43 colorectal cancer cell lines demonstrated that responsiveness towards a NAMPT inhibitor was significantly associated with alterations in PTEN and TGFBR2, while features such as BRAF or RNF43 alterations, or microsatellite instability typical for serrated route colorectal cancer, showed increased sensitivities for inhibition of NAMPT and SIRT1. Our findings suggest an activation of the c-MYC-NAMPT-SIRT1 feedback loop that may crucially contribute to initiation and development of both routes to colorectal cancer. Targeting of NAMPT or SIRT1 may represent novel therapeutic strategies with putative higher sensitivity of the serrated route colorectal cancer subtype."	"Activin A regulates activities of peripheral blood natural killer cells of mouse in an autocrine and paracrine manner. Activin A, a multifunctional cytokine of transforming growth factor-β (TGF-β) superfamily, can be produced by the diverse immune cells. NK cells in peripheral blood are one of the major immune cells applied to cancer therapy in recent years. However, whether activin A can be produced by natural killer (NK) cells and be involved in regulation of peripheral blood NK cells activities of mouse are not well characterized. Here, we found that activin type IIA and IIB receptors and signaling molecules Smad2, 3 were expressed in peripheral blood NK cells of mouse by flow cytometry and RT-PCR. The cultured blood NK cells of mouse not only produced activin βA chain protein by intracellular cytokine staining, but also secreted mature activin A protein by enzyme-linked immunosorbent assay (ELISA), and the production was promoted by IL-2. In addition, IL-2 as a positive control obviously promoted IFNγ production of mouse blood NK cells in vitro. However, activin A suppressed IFNγ production, but enhanced IL-2 synthesis and did not alter IL-10 production. Moreover, we found that activin A significantly suppressed the ability of NK cells to lyse target cells. These data revealed that blood NK cells of mouse were not only the target cells in response to activin A, but also the source of activin A, suggesting that activin A may play an important role in regulation of NK cells activities of mouse in an autocrine / paracrine manner."	"Anti-drug Antibodies Against a Novel Humanized Anti-CD20 Antibody Impair Its Therapeutic Effect on Primary Biliary Cholangitis in Human CD20- and FcγR-Expressing Mice. There is considerable interest in expanding B cell-targeted therapies in human autoimmune diseases. However, clinical trials in human primary biliary cholangitis (PBC) using a chimeric antibody against human CD20 (hCD20) have showed limited efficacy. Two potential explanations for these disappointing results are the appearance of anti-drug antibodies (ADAs) and the high frequency of patients with moderate PBC or patients who had failed ursodeoxycholic acid treatment. Here, we studied a novel humanized IgG1 antibody against hCD20 and explored its efficacy in early stage PBC using a well-defined murine model. We developed a unique murine model consisting of dnTGF-βRII mice expressing hCD20 and human Fcγ receptors (hFcγRs). Beginning at 4-6 weeks of age, equivalent to stage I/II human PBC, female mice were given weekly injections of an anti-hCD20 antibody (TKM-011) or vehicle control, and monitored for liver histology as well as a broad panel of immunological readouts. After 16 weeks' treatment, we observed a significant reduction in portal inflammation, a decrease in liver-infiltrating mononuclear cells as well as a reduction in liver CD8<sup>+</sup> T cells. Importantly, direct correlations between numbers of liver non-B cells and B cells (r = 0.7426, p = 0.0006) and between numbers of liver memory CD8<sup>+</sup> T cells and B cells (r = 0.6423, p = 0.0054) were apparent. Accompanying these changes was a dramatic reduction in anti-mitochondrial antibodies (AMAs), interleukin (IL)-12p40 and IL-5, and elevated levels of the anti-inflammatory chemokine CXCL1/KC. In mice that developed ADAs, clinical improvements were less pronounced. Sustained treatment with B cell-targeted therapies may broadly inhibit effector pathways in PBC, but may need to be administered early in the natural history of PBC."	"Inflammation induces endothelial-to-mesenchymal transition and promotes vascular calcification through downregulation of BMPR2. Endothelial-to-mesenchymal transition (EndMT) has been unveiled as a common cause for a multitude of human pathologies, including cancer and cardiovascular disease. Vascular calcification is a risk factor for ischemic vascular disorders and slowing calcification may reduce mortality in affected patients. The absence of early biomarkers hampers the identification of patients at risk. EndMT and vascular calcification are induced upon cooperation between distinct stimuli, including inflammatory cytokines and transforming growth factor beta (TGF-β) family members. However, how these signaling pathways interplay to promote cell differentiation and eventually vascular calcification is not well understood. Using in vitro and ex vivo analysis in animal models and patient-derived tissues, we have identified that the pro-inflammatory cytokines tumor necrosis factor alpha (TNF-α) and interleukin-1 beta (IL-1β) induce EndMT in human primary aortic endothelial cells, thereby sensitizing them for BMP-9-induced osteogenic differentiation. Downregulation of the BMP type II receptor BMPR2 is a key event in this process. Rather than compromising BMP canonical signal transduction, loss of BMPR2 results in decreased JNK signaling in ECs, thus enhancing BMP-9-induced mineralization. Altogether, our results point at the BMPR2-JNK signaling axis as a key pathway regulating inflammation-induced EndMT and contributing to calcification. © 2018 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Lung fibroblasts express a miR-19a-19b-20a sub-cluster to suppress TGF-β-associated fibroblast activation in murine pulmonary fibrosis. Lung fibroblasts play a pivotal role in pulmonary fibrosis, a devastating lung disease, by producing extracellular matrix. MicroRNAs (miRNAs) suppress numerous genes post-transcriptionally; however, the roles of miRNAs in activated fibroblasts in fibrotic lungs remain poorly understood. To elucidate these roles, we performed global miRNA-expression profiling of fibroblasts from bleomycin- and silica-induced fibrotic lungs and investigated the functions of miRNAs in activated lung fibroblasts. Clustering analysis of global miRNA-expression data identified miRNA signatures exhibiting increased expression during fibrosis progression. Among these signatures, we found that a miR-19a-19b-20a sub-cluster suppressed TGF-β-induced activation of fibroblasts in vitro. Moreover, to elucidate whether fibroblast-specific intervention against the sub-cluster modulates pathogenic activation of fibroblasts in fibrotic lungs, we intratracheally transferred the sub-cluster-overexpressing fibroblasts into bleomycin-treated lungs. Global transcriptome analysis of the intratracheally transferred fibroblasts revealed that the sub-cluster not only downregulated expression of TGF-β-associated pro-fibrotic genes, including Acta2, Col1a1, Ctgf, and Serpine1, but also upregulated expression of the anti-fibrotic genes Dcn, Igfbp5, and Mmp3 in activated lung fibroblasts. Collectively, these findings indicated that upregulation of the miR-19a-19b-20a sub-cluster expression in lung fibroblasts counteracted TGF-β-associated pathogenic activation of fibroblasts in murine pulmonary fibrosis."	"FEVR findings in patients with Loeys-Dietz syndrome type II. Loeys-Dietz syndrome (LDS) is a connective tissue disorder that has phenotypic overlap with Marfan syndrome. In LDS, the aortic root dissections can be more aggressive and occur at a younger age than Marfan syndrome. Review of two cases. A 7-year old boy with history of LDS was found to have a vitreous hemorrhage in the right eye. Further examination showed findings of Familial Exudative Vitreoretinopathy (FEVR). Both eyes were found to have peripheral non-perfusion and neovascularization. A non-related 25-month-old boy with no molecularly confirmed connective tissue disorder was found to have bilateral peripheral non-perfusion and bilateral tractional retinal detachments. The boy was clinically diagnosed with Larsen syndrome, Ehlers-Danlos syndrome kyphoscoliotic form, and Marfan syndrome before presentation. The FEVR lead to consideration of LDS that was molecularly confirmed. Consequently, he was monitored for aortic root dilation. FEVR findings may lead to diagnosis of LDS and patients with LDS may present with proliferative retinopathy."	"Urolithin A, a Novel Natural Compound to Target PI3K/AKT/mTOR Pathway in Pancreatic Cancer. Pancreatic ductal adenocarcinoma (PDAC) is an aggressive malignancy and is highly resistant to standard treatment regimens. Targeted therapies against KRAS, a mutation present in an overwhelming majority of PDAC cases, have been largely ineffective. However, inhibition of downstream components in the KRAS signaling cascade provides promising therapeutic targets in the management of PDAC and warrants further exploration. Here, we investigated Urolithin A (Uro A), a novel natural compound derived from pomegranates, which targets numerous kinases downstream of KRAS, in particular the PI3K/AKT/mTOR signaling pathways. We showed that treatment of PDAC cells with Uro A blocked the phosphorylation of AKT and p70S6K in vitro, successfully inhibited the growth of tumor xenografts, and increased overall survival of Ptf1a<sup>Cre/+</sup>;LSL-Kras<sup>G12D/+</sup>;Tgfbr2<sup>flox/flox</sup> (PKT) mice compared with vehicle or gemcitabine therapy alone. Histologic evaluation of these Uro A-treated tumor samples confirmed mechanistic actions of Uro A via decreased phosphorylation of AKT and p70S6K, reduced proliferation, and increased cellular apoptosis in both xenograft and PKT mouse models. In addition, Uro A treatment reprogrammed the tumor microenvironment, as evidenced by reduced levels of infiltrating immunosuppressive cell populations such as myeloid-derived suppressor cells, tumor-associated macrophages, and regulatory T cells. Overall, this work provides convincing preclinical evidence for the utility of Uro A as a therapeutic agent in PDAC through suppression of the PI3K/AKT/mTOR pathway."	"Integrated analysis of lncRNA-mRNA co-expression networks in the α-particle induced carcinogenesis of human branchial epithelial cells. To identify the mRNA and long noncoding RNA (lncRNA) expression profiles and explore the lncRNA-mRNA co-expression networks associated with the carcinogenesis induced by α-particles. Immortalized human bronchial epithelial cell line, BEP2D, and its two malignant transformed cell lines, BERP35T-1 and BERP35T-4, were investigated. The lncRNA and mRNA expression profiles of BEP2D, BERP35T-1 and BERP35T-4 were generated. lncRNAs and mRNAs co-expression analysis was performed. The microarray identified 668 lncRNAs in BERP35T-1 cells and 555 in BERP35T-4 cells that were differentially expressed compared to BEP2D cells. The GO terms and KEGG pathway annotation data indicated that mitotic cell cycle, DNA repair, apoptotic processes, and RNA splicing functional pathways were significantly associated with the α-particle induced cell carcinogenesis. Co-expression network analysis revealed 8902 interactions between 495 differentially expressed mRNAs and 430 corresponding lncRNAs in BERP35T-1 cells compared with BEP2D cells. The genes, situated at the important nodes of the co-expression network, include B3GNT5, RAD23, YWHAZ (14-3-3ζ), FBXW11, TGFBR2, LRP6, PSMD11, MYL12A, etc. Conclusions: This pilot study is the first to explore epigenetic mechanisms of α-particle induced carcinogenesis of human bronchial epithelial cells. It provides basic information for further investigation into the detail mechanisms underlying radiation-induced lung cancer."	"Regulatory effect of hsa-miR-5590-3P on TGFβ signaling through targeting of TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 transcripts. Transforming growth factor-β (TGFβ) signaling acts as suppressor and inducer of tumor progression during the early and late stages of cancer, respectively. Some miRNAs have shown a regulatory effect on TGFβ signaling and here, we have used a combination of bioinformatics and experimental tools to show that hsa-miR-5590-3p is a regulator of multiple genes expression in the TGFβ signaling pathway. Consistent with the bioinformatics predictions, hsa-miR-5590-3p had a negative correlation of expression with TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 genes, detected by reverse transcription-quantitative polymerase chain reaction (RT-qPCR). Then, the dual luciferase assay supported the direct interaction between hsa-miR-5590-3p and TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4-3'UTR sequences. Consistently, the TGFβ-R1 protein level was reduced following the overexpression of hsa-miR-5590-3p, detected by Western analysis. Also, hsa-miR-5590-3p overexpression brought about the downregulation of TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 expression in HCT-116 cells, detected by RT-qPCR, followed by cell cycle arrest in the sub-G1 phase, detected by flow cytometry. RT-qPCR results indicated that hsa-miR-5590-3p is significantly downregulated in breast tumor tissues (late stage) compared to their normal pairs. Altogether, data introduces hsa-miR-5590-3p as a negative regulator of the TGFβ/SMAD signaling pathway which acts through downregulation of TGFβ-R1, TGFβ-R2, SMAD3 and SMAD4 transcripts. Therefore, it can be tested as a therapy target in cancers in which the TGFβ/SMAD pathway is deregulated."	"TGF-β promotes fibrosis after severe acute kidney injury by enhancing renal macrophage infiltration. TGF-β signals through a receptor complex composed of 2 type I and 2 type II (TGF-βRII) subunits. We investigated the role of macrophage TGF-β signaling in fibrosis after AKI in mice with selective monocyte/macrophage TGF-βRII deletion (macrophage TGF-βRII-/- mice). Four weeks after injury, renal TGF-β1 expression and fibrosis were higher in WT mice than macrophage TGF-βRII-/- mice, which had decreased renal macrophages. The in vitro chemotactic response to f-Met-Leu-Phe was comparable between bone marrow-derived monocytes (BMMs) from WT and macrophage TGF-βRII-/- mice, but TGF-βRII-/- BMMs did not respond to TGF-β. We then implanted Matrigel plugs suffused with either f-Met-Leu-Phe or TGF-β1 into WT or macrophage TGF-βRII-/- mice. After 6 days, f-Met-Leu-Phe induced similar macrophage infiltration into the Matrigel plugs of WT and macrophage TGF-βRII-/- mice, but TGF-β induced infiltration only in WT mice. We further determined the number of labeled WT or TGF-βRII-/- BMMs infiltrating into WT kidneys 20 days after ischemic injury. There were more labeled WT BMMs than TGF-βRII-/- BMMs. Therefore, macrophage TGF-βRII deletion protects against the development of tubulointerstitial fibrosis following severe ischemic renal injury. Chemoattraction of macrophages to the injured kidney through a TGF-β/TGF-βRII axis is a heretofore undescribed mechanism by which TGF-β can mediate renal fibrosis during progressive renal injury."	"Circulating Exosomal miR-17 Inhibits the Induction of Regulatory T Cells via Suppressing TGFBR II Expression in Rheumatoid Arthritis. A reduced prevalence of circulating regulatory T cells (Tregs)is a hallmark of inflammatory rheumatoid arthritis (RA). However, the underlying mechanisms of alterations of Tregs are unclear. The ratio of Tregs in peripheral blood of healthy controls (HCs) and patients with RA was determined by flow cytometry. MicroRNA (miRNA) expression profiles in exosomes derived from RA patients (RA-exosomes) and in those from HCs (HC-exosomes) were detected by microarray analysis, and miR-17 was measured by quantitative real-time PCR. Transforming growth factor beta receptor II (TGFBR II) expressed by T cells was measured by flow cytometry. The interaction between miR-17 and TGFBR II was evaluated by dual-luciferase reporter assay. We found that RA-exosomes can selectively affect Treg differentiation in vitro. Several miRNAs are more abundant in the RA-exosomes than in HC-exosomes. Among those upregulated in patients with RA, miR-17 can suppress Treg induction by inhibiting the expression of TGFBR II. Our findings imply that altered miRNA expression in RA-exosomes may contribute to the pathogenesis of RA by disrupting the homeostasis of Tregs."	"A Bibliometric Analysis of Cleft Lip and Palate-Related Publication Trends From 2000 to 2017. Cleft lip and palate (CLP) is the most common human cranial and maxillofacial birth defect. The aim of this bibliometric analysis was to provide an overview of the development of CLP-related research. Cleft lip and palate-related studies published from 2000 to 2017 were retrieved from the Science Citation Index Expanded core database. Publication date, journal, authors, first authors, keywords, and citations were extracted and quantitatively analyzed using Bibliographic Item Co-Occurrence Matrix Builder software. The word matrix and co-occurrence matrix were established, and the co-citation analysis, keyword clustering, and social network analysis (SNA) of highly cited papers were completed. A total of 9040 articles were retrieved from the 18 years of publications that were searched. The number of documents steadily increased over the period of interest, with a slight decrease in 2016 and 2017. This article separately examined the top most cited papers and high-frequency keywords from 3 time periods: 2000 to 2005, 2006 to 2011, and 2011 to 2017. The strategy coordinates of citation reflect TGF-β3, MSX1 gene, technique for cleft lip repair, TTF2, P63, IRF6 gene, FGF signaling, PVRL1, TGFBR2, and BMP4 gene as areas of research interest in the field. Moreover, the SNA of keywords highlighted new research topics: meta-analysis, cone beam computed tomography, tooth agenesis, case-control study, association study, micrognathia, DiGeorge syndrome, NSCL/P, UCLP, GWAS, MTHFR, and CLPTM1L. We conducted bibliometric research of CLP across an 18-year span. The results help to define an overall command of the latest topics in CLP and provide insight for launching new projects."	"Cardiac Fibrosis in Proteotoxic Cardiac Disease is Dependent Upon Myofibroblast TGF -β Signaling. Background Transforming growth factor beta ( TGF -β) is an important cytokine in mediating the cardiac fibrosis that often accompanies pathogenic cardiac remodeling. Cardiomyocyte-specific expression of a mutant αB-crystallin (Cry AB<sup>R</sup><sup>120G</sup>), which causes human desmin-related cardiomyopathy, results in significant cardiac fibrosis. During onset of fibrosis, fibroblasts are activated to the so-called myofibroblast state and TGF -β binding mediates an essential signaling pathway underlying this process. Here, we test the hypothesis that fibroblast-based TGF -β signaling can result in significant cardiac fibrosis in a disease model of cardiac proteotoxicity that has an exclusive cardiomyocyte-based etiology. Methods and Results Against the background of cardiomyocyte-restricted expression of Cry AB<sup>R</sup><sup>120G</sup>, we have partially ablated TGF -β signaling in cardiac myofibroblasts to observe whether cardiac fibrosis is reduced despite the ongoing pathogenic stimulus of Cry AB<sup>R</sup><sup>120G</sup> production. Transgenic Cry AB<sup>R</sup><sup>120G</sup> mice were crossed with mice containing a floxed allele of TGF -β receptor 2 ( Tgfbr2 <sup>f/f</sup>). The double transgenic animals were subsequently crossed to another transgenic line in which Cre expression was driven from the periostin locus ( Postn) so that Tgfbr2 would be ablated with myofibroblast conversion. Structural and functional assays were then used to determine whether general fibrosis was affected and cardiac function rescued in Cry AB<sup>R</sup><sup>120G</sup> mice lacking Tgfbr2 in the myofibroblasts. Ablation of myofibroblast specific TGF -β signaling led to decreased morbidity in a proteotoxic disease resulting from cardiomyocyte autonomous expression of Cry AB<sup>R</sup><sup>120G</sup>. Cardiac fibrosis was decreased and hypertrophy was also significantly attenuated, with a significant improvement in survival probability over time, even though the primary proteotoxic insult continued. Conclusions Myofibroblast-targeted knockdown of Tgfbr2 signaling resulted in reduced fibrosis and improved cardiac function, leading to improved probability of survival."	"Downregulation of TRAIL-Receptor 1 Increases TGFβ Type II Receptor Expression and TGFβ Signalling Via MicroRNA-370-3p in Pancreatic Cancer Cells. The accumulation of perturbations in signalling pathways resulting in an apoptosis-insensitive phenotype is largely responsible for the desperate prognosis of patients with pancreatic ductal adenocarcinoma (PDAC). Accumulating evidence suggests that the death receptors TRAIL-R1 and TRAIL-R2 play important roles in PDAC biology by acting as either tumour suppressors through induction of cell death or tumour promoters through induction of pro-inflammatory signalling, invasion and metastasis. TRAIL-R2 can also associate with nuclear proteins and alter the maturation of micro RNAs (miRs). By genome-wide miR profiling and quantitative PCR analyses we now demonstrate that knockdown of TRAIL-R1 in PDAC cells decreased the level of mature miR-370 and led to an increased abundance of the type II receptor for transforming growth factor β (TGFβ). Transfection of cells with an artificial miR-370-3p decreased the levels of TGFβ-RII. We further show that transient expression of the miR-370 mimic decreased TGFβ1-induced expression of SERPINE1 encoding plasminogen activator-inhibitor 1 and partially relieved TGFβ1-induced growth inhibition. Moreover, stable TRAIL-R1 knockdown in Colo357 cells increased TGFβ1-induced SERPINE1 expression and this effect was partially reversed by transient expression of the miR-370 mimic. Finally, after transient knockdown of TRAIL-R1 in Panc1 cells there was a tendency towards enhanced activation of Smad2 and JNK1/2 signalling by exogenous TGFβ1. Taken together, our study reveals that TRAIL-R1 through regulation of miR-370 can decrease the sensitivity of PDAC cells to TGFβ and therefore represents a potential tumour suppressor in late-stage PDAC."	"Combining probiotics and an angiotensin-II type 1 receptor blocker has beneficial effects on hepatic fibrogenesis in a rat model of non-alcoholic steatohepatitis. Intestinal endotoxin is important for the progression of non-alcoholic steatohepatitis (NASH). Circulating endotoxin levels are elevated in most animal models of diet-induced non-alcoholic fatty liver disease (NAFLD) and NASH. Furthermore, plasma endotoxin levels are significantly higher in NAFLD patients, which is associated with small intestinal bacterial overgrowth and increased intestinal permeability. By improving the gut microbiota environment and restoring gut-barrier functions, probiotics are effective for NASH treatment in animal models. It is also widely known that hepatic fibrosis and suppression of activated hepatic stellate cells (Ac-HSCs) can be attenuated using an angiotensin-II type 1 receptor blocker (ARB). We thus evaluated the effect of combination probiotics and ARB treatment on liver fibrosis using a rat model of NASH. Fisher 344 rats were fed a choline-deficient/L-amino acid-defined (CDAA) diet for 8 weeks to generate the NASH model. Animals were divided into ARB, probiotics, and ARB plus probiotics groups. Therapeutic efficacy was assessed by evaluating liver fibrosis, the lipopolysaccharide Toll-like receptor (TLR)4 regulatory cascade, and intestinal barrier function. Both probiotics and ARB inhibited liver fibrosis, with concomitant HSC activation and suppression of liver-specific transforming growth factor-β and TLR4 expression. Probiotics reduced intestinal permeability by rescuing zonula occludens-1 disruption induced by the CDAA diet. Angiotensin-II type 1 receptor blocker was found to directly suppress Ac-HSCs. Probiotics and ARB are effective in suppressing liver fibrosis through different mechanisms. Currently both drugs are in clinical use; therefore, the combination of probiotics and ARB is a promising new therapy for NASH."	"Betaglycan (TGFBR3) Functions as an Inhibin A, but Not Inhibin B, Coreceptor in Pituitary Gonadotrope Cells in Mice. Inhibins are gonadal hormones that act on pituitary gonadotrope cells to suppress FSH synthesis and secretion. Inhibin A and B are heterodimers of the inhibin ⍺-subunit disulfide-linked to one of two inhibin β-subunits. Homodimers or heterodimers of the inhibin β-subunits form the activins, which stimulate FSH production. Activins signal through complexes of type I and II receptor serine/threonine kinases to increase transcription of the FSHβ subunit gene. According to in vitro observations, inhibins impair FSH synthesis by competitively binding to activin type II receptors, particularly in the presence of the TGFβ type III receptor (TGFBR3, or betaglycan). The role of TGFBR3 in inhibin action in vivo has not been determined. Here, we ablated Tgfbr3 specifically in murine gonadotropes. Conditional knockout females were supra-fertile, exhibiting enhanced folliculogenesis, numbers of ovulated eggs per cycle, and litter sizes relative to control mice. Despite these phenotypes, FSH levels appeared to be unaltered in knockout mice, and the mechanisms underlying their enhanced fertility remain unexplained. Inhibin B is the predominant form of the hormone in males and in females during most stages of the estrous cycle. Remarkably, inhibin A, but not inhibin B, suppression of FSH synthesis was impaired in cultured pituitaries of knockout mice, which may explain the absence of discernible changes in FSH levels in vivo. Collectively, these data challenge current dogma by demonstrating that TGFBR3 (betaglycan) functions as an inhibin A, but not an inhibin B, coreceptor in gonadotrope cells in vivo. Mechanisms of inhibin B action merit further investigation."	"LY2109761, Transforming Growth Factor β Receptor Type I and Type II Dual Inhibitor, is a Novel Approach to Suppress Endothelial Mesenchymal Transformation in Human Corneal Endothelial Cells. Preventing undesirable endothelial-mesenchymal transformation (EnMT) with repetitious in vitro expansion of human corneal endothelial cells (CECs) is a pivotal issue in cornea regeneration. Previous studies have shown that inhibition of the TGF-β pathway reduces epithelial-mesenchymal transformation. However, its potential role in EnMT remains poorly understood. As such, the effect of LY2109761, a novel TGF-β receptor type I and type II dual inhibitor, was investigated on EnMT. CECs cultured with various concentrations of LY2109761 were evaluated for their growth rate and phenotype. Additionally, the expression of functional markers (sodium-potassium pump Na+/K+-ATPase and the tight junction protein ZO-1) and mesenchymal markers (CD73, fibronectin, and vimentin) was detected using immunostaining and western blot. The mRNA expressions were also assayed by real-time polymerase chain reaction analysis. At a 1 μM concentration, LY2109761 did not influence the proliferation of CECs and subsequent experiments were therefore performed using this concentration. Furthermore, CECs cultured in the presence of 1 μM LY2109761 maintained their ability to grow as a monolayer of hexagonal-shaped cells. The expression of functional markers increased in LY2109761-treated CECs, while the expression of mesenchymal markers decreased (both in protein and mRNA levels). Inhibition of TGF-β receptor type I and type II by LY2109761 maintained the phenotype of CECs and inhibited the EnMT process. These results indicate the possible continuous in vitro expansion of CECs with normal function."	"Clinical and molecular evaluation of therapy with the use of cyclosporine A in patients with psoriasis vulgaris. Psoriasis course involves increased secretion of pro-inflammatory cytokines, among others, a beta transforming growth factor (TGFβs) and its receptors. Cyclosporine A (CsA), an immunosuppressive medicine with the molecular mechanism of operation connected with the properties of cell cycle suppression, is often used in the treatment of severe forms of psoriasis. The efficacy of therapy is assessed based on the disease clinical progression indexes - Psoriasis Area and Severity Index (PASI), body surface area (BSA), and Dermatology Life Quality Index (DLQI). The aim of the study was the evaluation of the efficacy of the CsA treatment of patients with psoriasis vulgaris, based on the clinical parameters and an assessment of the expression profiles of TGFβs and TGFβRs, depending on the concurrent diabetes and metabolic syndrome. The group under study composed of 32 patients (15 with the metabolic syndrome, seven with diabetes) treated with CsA for 84 days. The molecular analysis included extraction of RNA, assessment of TGβF1-3, TGFβRI-III gene expression with the use of the RTqPCR method. The clinical assessment of the effects of this pharmacotherapy involved evaluation of the parameters: PASI, BSA, DLQI before therapy commencement, on the 42nd and 84th days of therapy. A statistically significant change in the transcription activity of TGFβ1 in patients with and without diabetes (P = 0.018) and patients with and without metabolic syndrome (P = 0.023) was shown that on the 84th day of therapy. TGFb1 may be claimed as the supplementary molecular marker to evaluate the efficacy of CsA therapy. It seems that systemic diseases have an effect on the efficacy of the applied pharmacotherapy and the course of psoriasis."	"Depletion of MOB1A/B causes intestinal epithelial degeneration by suppressing Wnt activity and activating BMP/TGF-β signaling. The Hippo pathway is involved in intestinal epithelial homeostasis with Wnt, BMP, Notch, and EGF signaling. We investigated the relationship between Hippo and other signaling pathways and the role of MOB kinase activator 1A/1B (MOB1A/B) in intestinal homeostasis. Mice with intestinal epithelial cell (IEC)-specific depletion of MOB1A/B showed hyperproliferation in IECs, defects in secretory lineage differentiation and loss of intestinal stem cells and eventually died at 10-12 days after tamoxifen treatment. In MOB1A/B-depleted IECs, expression of Wnt target genes were downregulated but Bmp2 and Tgfbr2 were transcriptionally activated with enhanced YAP activity. In in vivo and in vitro experiments with several signaling inhibitors, it has been shown that the BMP inhibitor LDN193189 or TGF-β inhibitor SB431542 had effects on partial restoration of the intestinal degenerative phenotype. Treatment with these inhibitors restored differentiation of secretory lineage cells in MOB1A/B-deficient mice, but not ISC pools in the crypt region. These studies reveal that IEC-specific depletion of MOB1A/B induced overexpression of Bmp2 and Tgfbr2 and inhibited Wnt activity, finally leading to loss of ISCs and functional epithelia in the mouse intestine. These results suggest that MOB1A/B has an essential function for intestinal epithelial homeostasis by regulating YAP, Wnt activity, and BMP/TGF-β signaling."	"Profibrotic effects of angiotensin II and transforming growth factor beta on feline kidney epithelial cells. The aim of this study was to evaluate the role of angiotensin II (AT-II) and its main mediator, transforming growth factor beta 1 (TGF-β1), in the development of feline renal fibrosis. Expression of marker genes indicating epithelial-to-mesenchymal transition (EMT), profibrotic mediators and matricellular proteins was measured in feline kidney epithelial cells (Crandell Rees feline kidney [CRFK] cells) after incubation with AT-II and/or TGF-β1. Cells incubated with TGF-β1 or the combination of TGF-β1 with AT-II showed clear EMT with more stretched fibroblastic cells, whereas the cells incubated without TGF-β1 and AT-II (control) showed more epithelial cells. Gene expression of collagen type I (COL1), tenascin-C (TNC), trombospondin-1 (TSP-1), connective tissue growth factor (CTGF) and alpha-smooth muscle actin (α-SMA) increased significantly after incubation of the CRFK cells with TGF-β1 or TGF-β1 in combination with AT-II for 12 h. As incubation of the CRFK cells with only AT-II did not show any significant rise in gene expression of the above-mentioned genes, this was further investigated. In contrast to healthy feline kidney tissue, CRFK cells showed almost no expression of the AT-II type 1 (AT1) receptor. TGF-β1 significantly induced expression of the EMT marker gene α-SMA, profibrotic mediator CTGF, and fibrogenic proteins COL1, TNC and TSP-1 in CRFK cells. The effect of TGF-β1 on myofibroblast formation was also observed by the stretched appearance of the CRFK cells. As CRFK cells expressed almost no AT1 receptors, this cell line proved not suitable for testing the efficacy of drugs that interact with the AT1 receptor. As AT-II stimulates the effects of TGF-β1 in mammals, the results of this study suggest an indirect profibrotic effect of AT-II besides the demonstrated profibrotic effect of TGF-β1 and thus the development of feline renal fibrosis. Modulation of EMT or proliferation of myofibroblasts could serve as a diagnostic tool and a novel therapeutic target to inhibit renal fibrogenesis, and could possibly serve in the therapy of feline renal fibrosis."	"HANR promotes hepatocellular carcinoma progression via miR-214/EZH2/TGF-β axis. LncRNA has been shown to associates with the initiation and progression of hepatocellular carcinoma (HCC). Recently, some studies showed that HANR function as an oncogene in HCC; however, the detailed mechanism of HANR-regulated HCC tumorigenesis and progression needs to be elucidated. We used RT-qPCR method to probe genes expression. MTT assay, wound healing assay and transwell invasion assay were utilized to examine proliferation and migration and invasion abilities of HepG2 cells. Xenograft tumor experiment was used to show the growth of tumors in vivo. HANR was evidently upregulated in HCC tumors and cells compared to normal tissues and cells. Besides, HANR knockdown induces attenuated cell proliferation, migration, invasion of HCC cells. By bioinformatic analysis and dual luciferase reporter assay, we found that miR-214 was the downstream target of HANR. Furthermore, miR-214 inhibitor largely enhanced tumor phenotypes of HCC cells regulated by HANR knockdown. HANR and miR-214 regulated the EZH2, then affecting TGFBR2 level. Finally, we demonstrated that EZH2 overexpression could greatly rescue HANR knockdown or miR-214 mimic-induced HCC tumorigenesis and progression. In this study, we report a newly identified regulatory mechanism HANR/miR-214/EZH2/TGF-β axis, which is implicated in tumorigenesis and progression of HCC. Our findings suggest that HANR facilitates the development of therapeutical strategies or diagnostic markers by targeting HANR."	"In vitro assessment of cord blood-derived proinsulin-specific regulatory T cells for cellular therapy in type 1 diabetes. Antigen-specific regulatory T cells (Tregs) have proven to be effective in reversing established autoimmunity in type 1 diabetes (T1D). Cord blood (CB) can serve as an efficient and safe source for Tregs for antigen-specific immunomodulation in T1D, a strategy that is yet to be explored. Therefore, we assessed the potential of CB in generation of proinsulin (PI)-specific Tregs by using HLA class II tetramers. We analyzed the frequency of PI-specific natural Tregs (nTregs) and induced Tregs (iTregs) derived from the CB as well as peripheral blood (PB) of patients with T1D and healthy control subjects. For this, CD4+CD25+CD127<sup>low</sup> and CD4+CD25-T cells were cultured in the presence of PI-derived peptides, transforming growth factor (TGF)-β and rapamycin. PI-specific Tregs were then selected using allele-specific HLA II tetramers loaded with PI-derived peptides, followed by suppression assays. Following stimulation, we observed that CB harbors a significantly higher frequency of PI-specific Tregs than PB of subjects with T1D (P = 0.0003). Further, the proportion of PI-specific Tregs was significantly higher in both the nTreg (P = 0.01) and iTreg (P = 0.0003) compartments of CB as compared with PB of subjects with T1D. In co-culture experiments, the PI-specific Tregs suppressed the proliferation of effector T cells significantly (P = 0.0006). The expanded nTregs were able to retain hypomethylation status at their Tregs-specific demethylated region (TSDR), whereas iTregs were unable to acquire the characteristic demethylation pattern. Our study demonstrates that CB can serve as an excellent source for generation of functional antigen-specific Tregs for immunotherapeutic approaches in subjects with T1D."	"Gut microbiota translocation promotes autoimmune cholangitis. Gut microbiota and bacterial translocation have been implicated as significant contributors to mucosal immune responses and tolerance; alteration of microbial molecules, termed pathogen-associated molecular patterns (PAMP) and bacterial translocation are associated with immune pathology. However, the mechanisms by which dysregulated gut microbiota promotes autoimmunity is unclear. We have taken advantage of a well-characterized murine model of primary biliary cholangitis, dnTGFβRII mice, and an additional unique construct, toll-like receptor 2 (TLR2)-deficient dnTGFβRII mice coined dnTGFβRIITLR2<sup>-/-</sup> mice to investigate the influences of gut microbiota on autoimmune cholangitis. Firstly, we report that dnTGFβRII mice manifest altered composition of gut microbiota and that alteration of this gut microbiota by administration of antibiotics significantly alleviates T-cell-mediated infiltration and bile duct damage. Second, toll-like receptor 2 (TLR2)-deficient dnTGFβRII mice demonstrate significant exacerbation of autoimmune cholangitis when their epithelial barrier integrity was disrupted. Further, TLR2-deficiency mediates downregulated expression of tight junction-associated protein ZO-1 leading to increased gut permeability and bacterial translocation from gut to liver; use of antibiotics reduces microbiota translocation to liver and also decreases biliary pathology. In conclusion, our data demonstrates the important role of gut microbiota and bacterial translocation in the pathogenesis of murine autoimmune cholangitis."	"Galunisertib plus gemcitabine vs. gemcitabine for first-line treatment of patients with unresectable pancreatic cancer. Galunisertib is the first-in-class, first-in-human, oral small-molecule type I transforming growth factor-beta receptor (ALK5) serine/threonine kinase inhibitor to enter clinical development. The effect of galunisertib vs. placebo in patients with unresectable pancreatic cancer was determined. This was a two-part, multinational study: phase 1b was a non-randomised, open-label, multicentre, and dose-escalation study; phase 2 was a randomised, placebo- and Bayesian-augmented controlled, double-blind study in patients with locally advanced or metastatic pancreatic adenocarcinoma considered candidates for first-line chemotherapy with gemcitabine. Patients were randomised 2:1 to galunisertib-gemcitabine (N = 104) or placebo-gemcitabine (N = 52). Gemcitabine dose was 1000 mg/m<sup>2</sup> QW. Primary endpoints for phases 1b and 2, respectively, were phase 2 dose and overall survival. Secondary objectives included tolerability and biomarkers. Dose-escalation suggested a 300-mg/day dose. Primary objective was met: median survival times were 8.9 and 7.1 months for galunisertib and placebo, respectively (hazard ratio [HR] = 0.79 [95% credible interval: 0.59-1.09] and posterior probability HR &lt; 1 = 0.93). Lower baseline biomarkers macrophage inflammatory protein-1-alpha and interferon-gamma-induced protein 10 were associated with galunisertib benefit. Galunisertib-gemcitabine combination improved overall survival vs. gemcitabine in patients with unresectable pancreatic cancer, with minimal added toxicity. Future exploration of galunisertib in pancreatic cancer is ongoing in combination with durvalumab."	"TGFβ1-Smad Signaling Pathway Participates in Interleukin-33 Induced Epithelial-to-Mesenchymal Transition of A549 Cells. Epithelial-to-mesenchymal transition (EMT) has been proven to be involved in development and progression of pulmonary fibrosis. This study aims to investigate the role of transforming growth factor β1 (TGFβ1)-smad signaling pathway in the interleukin-33 (IL-33) induced EMT. The human type II alveolar epithelial cell line, A549, and small airway epithelial cells (SAEC) were cultured and divided into 4 groups including Control, LY-2109761 (TGFβ receptor inhibitor), IL-33 and IL-33+LY-2109761 group. Expression of TGFβ1, E-cadherin (E-cad) and α-smooth muscle actin (α-SMA) were examined by using real-time PCR (RT-PCR) and western blot assay, respectively. The smad3 signaling pathway factors, including smad3 and phosphorylated smad3 (p-smad3), were also detected by using western blot assay. IL-33 significantly activated T1/ST2 expression in A549 cells (P&lt; 0.05). TGFβ1 receptor inhibitor significantly suppressed the IL-33 caused down-expression of E-cad compared to IL-33 alone (P&lt; 0.05). IL-33 significantly increased the α-SMA levels compared to Control group (P&lt; 0.05) and TGFβ1 receptor inhibitor inhibited the other effects of IL-33. IL-33 significantly enhanced the levels of TGFβ1 compared to Control group (P&lt; 0.05). TGFβ1 receptor inhibitor suppressed the IL-33 induced up-expression of p-smad3. The TGFβ1-smad signaling pathway participates in the IL-33 induced epithelial-to-mesenchymal transition of A549 cells."	"miR-93 Promotes the Growth and Invasion of Prostate Cancer by Upregulating Its Target Genes TGFBR2, ITGB8, and LATS2. This study aimed to evaluate the effects of miR-93 on the growth and invasiveness of prostate cancer (PC) cells (PCCs). Real-time PCR was carried out to detect the expression of miR-93 in the PC tissues and cell lines. The adjacent normal tissues served as controls. For in vitro experiments, methyl thiazolyl tetrazolium, clone formation, tumor cell invasion assays, and western blot analysis (WBA) were performed to confirm the variations in the proliferation and invasiveness of PCCs, prior and subsequent to transfection with an miR-93 antisense oligonucleotide (ASO), which blocks miR-93 binding to its target. Furthermore, the effect of miR-93 on the proliferation of PCCs was examined. Finally, the expression levels of the target genes of miR-93 were determined by WBA. miR-93 expression was higher in PC tissues than in the adjacent normal tissues, and a reduction in the miR-93 level remarkably inhibited the proliferation and invasiveness of PCCs. Moreover, miR-93 enhanced the expression of its target genes TGFΒR2, ITGB8, and LATS2. The results of this study suggest that miR-93 may promote the proliferation and invasion of PCCs by upregulating its target genes TGFBR2, ITGB8, and LATS2."	"Identification of gross deletions in FBN1 gene by MLPA. Marfan syndrome (MFS) is an autosomal dominant connective tissue disorder caused by mutations in the FBN1 gene. Approximately 90% of classic MFS patients have a FBN1 mutation that can be identified by single-gene sequencing or gene-panel sequencing targeting FBN1. However, a small proportion of MFS patients carry a large genomic deletion in FBN1, which cannot be detected by routine sequencing. Here, we performed an MLPA (multiplex ligation-dependent probe amplification) test to detect large deletions and/or duplications in FBN1 and TGFBR2 in 115 unrelated Chinese patients with suspected MFS or early-onset aneurysm/dissection. Five novel large deletions encompassing a single exon or multiple exons in the FBN1 gene were characterized in five unrelated patients, of which four were proven by Sanger sequencing, and the breakpoints were identified. Three of them met the revised Ghent criteria when genetic results were not available, and the other two patients were highly suspected and diagnosed with MFS until the FBN1 deletions were identified. Our finding expands the mutation spectrum of large FBN1 deletions and emphasizes the importance of screening for large FBN1 deletions in clinical genetic testing, especially for those with classic Marfan phenotype."	"Mesenchymal glioblastoma constitutes a major ceRNA signature in the TGF-β pathway. Rationale: Competitive endogenous RNA (ceRNA) networks play important roles in posttranscriptional regulation. Their dysregulation is common in cancer. However, ceRNA signatures have been poorly examined in the invasive and aggressive phenotypes of mesenchymal glioblastoma (GBM). This study aims to characterize mesenchymal glioblastoma at the mRNA-miRNA level and identify the mRNAs in ceRNA networks (micNET) markers and their mechanisms in tumorigenesis. Methods: The mRNAs in ceRNA networks (micNETs) of glioblastoma were investigated by constructing a GBM ceRNA network followed by integration with a STRING protein interaction network. The prognostic micNET markers of mesenchymal GBM were identified and validated across multiple datasets. ceRNA interactions were identified between micNETs and miR181 family members. LY2109761, an inhibitor of TGFBR2, demonstrated tumor-suppressive effects on both primary cultured cells and a patient-derived xenograft intracranial model. Results: We characterized mesenchymal glioblastoma at the mRNA-miRNA level and reported a ceRNA network that could separate the mesenchymal subtype from other subtypes. Six genes (TGFBR2, RUNX1, PPARG, ACSL1, GIT2 and RAP1B) that interacted with each other in both a ceRNA-related manner and in terms of their protein functions were identified as markers of the mesenchymal subtype. The coding sequence (CDS) and 3'-untranslated region (UTR) of TGFBR2 upregulated the expression of these genes, whereas TGFBR2 inhibition by siRNA or miR-181a/d suppressed their expression levels. Furthermore, mesenchymal subtype-related genes and the invasion phenotype could be reversed by suppressing the six mesenchymal marker genes. Conclusions: This study suggests that the micNETs may have translational significance in the diagnosis of mesenchymal GBM and may be novel therapeutic targets."	"Silencing of TGFβ signalling in microglia results in impaired homeostasis. TGFβ1 has been implicated in regulating functional aspects of several distinct immune cell populations including central nervous system (CNS) resident microglia. Activation and priming of microglia have been demonstrated to contribute to the progression of neurodegenerative diseases and, thus, underlie stringent control by endogenous regulatory factors including TGFβ1. Here, we demonstrate that deletion of Tgfbr2 in adult postnatal microglia does neither result in impairment of the microglia-specific gene expression signatures, nor is microglial survival and maintenance affected. Tgfbr2-deficient microglia were characterised by distinct morphological changes and transcriptome analysis using RNAseq revealed that loss of TGFβ signalling results in upregulation of microglia activation and priming markers. Moreover, protein arrays demonstrated increased secretion of CXCL10 and CCL2 accompanied by activation of immune cell signalling as evidenced by increased phosphorylation of TAK1. Together, these data underline the importance of microglial TGFβ signalling to regulate microglia adaptive changes."	"EGFR, SMAD7, and TGFBR2 Polymorphisms Are Associated with Colorectal Cancer in Patients with Lynch Syndrome. Epidermal growth factor receptor (EGFR), mothers against decapentaplegic homolog 7 (SMAD7) and transforming growth factor betta (TGFB) are crucial for colorectal cancer (CRC) tumorigenesis. This study investigated whether polymorphisms in EGFR, SMAD7, and TGFB are associated with CRC risk in patients with Lynch syndrome. Genotyping was performed using Sequenom iPLEX MassArray. Association between genetic polymorphisms and CRC was assessed using a weighted Cox proportional hazard model. Patients carrying the AA genotype of EGFR rs2227983 had a significantly higher CRC risk than those carrying the G allele (HR=2.55, 95% CI=1.25-5.17). The dominant model of SMAD7 rs12953717 (CT + TT genotypes) significantly increased CRC risk (HR=2.17, 95% CI=1.12-4.16) when compared to the wild-type CC genotype. Similarly, the GG genotype of TGFBR2 rs6785358 significantly increased the risk of CRC (HR=21.1, 95% CI=5.06-88.1) compared to the AA genotype. EGFR, SMAD7, and TGFBR2 are associated with CRC risk in patients with Lynch syndrome."	"A Pan-Cancer Analysis Reveals High-Frequency Genetic Alterations in Mediators of Signaling by the TGF-β Superfamily. We present an integromic analysis of gene alterations that modulate transforming growth factor β (TGF-β)-Smad-mediated signaling in 9,125 tumor samples across 33 cancer types in The Cancer Genome Atlas (TCGA). Focusing on genes that encode mediators and regulators of TGF-β signaling, we found at least one genomic alteration (mutation, homozygous deletion, or amplification) in 39% of samples, with highest frequencies in gastrointestinal cancers. We identified mutation hotspots in genes that encode TGF-β ligands (BMP5), receptors (TGFBR2, AVCR2A, and BMPR2), and Smads (SMAD2 and SMAD4). Alterations in the TGF-β superfamily correlated positively with expression of metastasis-associated genes and with decreased survival. Correlation analyses showed the contributions of mutation, amplification, deletion, DNA methylation, and miRNA expression to transcriptional activity of TGF-β signaling in each cancer type. This study provides a broad molecular perspective relevant for future functional and therapeutic studies of the diverse cancer pathways mediated by the TGF-β superfamily."	"Bone Morphogenetic Protein Glass Bottom Boat (BMP5/6/7/8) and its receptor Wishful Thinking (BMPRII) are required for injury-induced allodynia in Drosophila. Background Chronic pain affects millions of people worldwide; however, its cellular and molecular mechanisms have not been completely elucidated. It is thought that chronic pain is triggered by nociceptive sensitization, which produces elevated nocifensive responses. A model has been developed in Drosophila melanogaster to investigate the underlying mechanisms of chronic pain using ultraviolet-induced tissue injury to trigger thermal allodynia, a nociceptive hypersensitivity to a normally innocuous stimulus. Larvae were assayed for their behavioral latencies to produce a distinct avoidance response under different thermal conditions. Previously, Decapentaplegic, a member of the Bone Morphogenetic Protein (BMP) family and orthologous to mammalian BMP2/4, was shown to be necessary for the induction of allodynia. Here, we further investigate the BMP pathway to identify other essential molecules necessary to activate the nociceptive sensitization pathway. Results Using the GAL4-UAS-RNAi system to induce a cell-specific knockdown of gene expression, we further explored BMP pathway components to identify other key players in the induction of nociceptive sensitization by comparing the responses of manipulated animals to those of controls. Here, we show that a second BMP, Glass Bottom Boat, and its receptor Wishful Thinking are both necessary for injury-induced thermal allodynia since the formation of sensitization was found to be severely attenuated when either of these components was suppressed. The effects on pain perception appear to be specific to the sensitization system, as the ability to respond to a normally noxious stimulus in the absence of injury was left intact, and no nociceptor morphological defects were observed. Conclusion These results provide further support of the hypothesis that the BMP pathway plays a crucial role in the development of nociceptive sensitization. Because of its strong conservation between invertebrates and mammals, the BMP pathway may be worthy of future investigation for the development of targeted treatments to alleviate chronic pain."	"Gene Silencing of TGFβRII Can Inhibit Glioblastoma Cell Growth Objective: Glioblastoma (GBM) is the most malignant and aggressive type of glioma, associated with a high rateof mortality. The transforming growth factor-β receptor II (TGFβ RII) is involved in glioma initiation and progression.On the other hand, TGFβ RII silencing is critical to the inhibition of GBM. Therefore, we aimed to determine theeffects of specific TGFβ RII siRNA on the survival of U-373MG cells. Methods: TGFβ RII siRNA was transfected,and qRT-PCR was performed to examine TGFβ RII mRNA expression. Cell survival was determined using colorimetricMTT assay, and platelet-derived growth factor-BB (PDGF-BB) level was measured in the culture supernatant usingELISA assay. Result: Our findings indicated that specific siRNAs could dose-dependently suppress TGFβ RII mRNAexpression after 48 hours. In addition, treatment with TGFβ RII siRNA significantly reduced tumor cell survival anddecreased the amount of PDGF-BB protein in the cell culture supernatant. Conclusion: Our results suggest that TGFβRII silencing can be a promising complementary treatment for glioma."	"TIEG1 is upregulated in Lrp5/6-mediated valve osteogenesis. We have previously demonstrated that Lrp5/6/β-catenin plays an important role in valve calcification with a specific osteogenic phenotype defined by increased bone mineral content and overall valve thickening. Recent studies indicate that TIEG1 may be involved in mediating the Wnt signaling pathway in bone, which is known to play critical roles in osteoblast differentiation and bone mineralization. Therefore, we sought to test the role of TIEG1 in mediating Wnt signaling, in an established model of hypercholesterolemic valve disease. Our previous model treated null mice with cholesterol diets: Lrp5 <sup>-/-</sup> /ApoE <sup>-/-</sup> mice versus wild-type control (n = 180). Group I (n = 60) normal diet, Group II (n = 60) 0.25% chol diet (w/w), and Group III (n = 60) 0.25% (w/w) chol diet + atorv was tested for gene expression for TIEG1, Lrp6, and Runx2. Real-time polymerase chain reaction confirmed that there is upregulation of the gene expression for TIEG1 and Runx2 in the hypercholesterolemic double knockout and single knockout valves as compared with controls with a mild increase in Lrp6. To confirm the mechanism, coexpression of β-catenin, TIEG1, and LEF1 in valve cells in vitro, led to the coactivation of the TOPFLASH reporter, which was further confirmed by the observation that TIEG1 and β-catenin colocalize with one another in the nucleus of valvular interstitial cells (VICs) following stimulation with transforming growth factor-β treatment, an established activator of TIEG1. Taken together, these data implicate an important role for TIEG1 in mediating valve osteogenesis."	"ΔNp63α Suppresses TGFB2 Expression and RHOA Activity to Drive Cell Proliferation in Squamous Cell Carcinomas. The transcriptional repressor ΔNp63α is a potent oncogene widely overexpressed in squamous cell carcinomas (SCCs) of diverse tissue origins, where it promotes malignant cell proliferation and survival. We report here the results of a genome-wide CRISPR screen to identify pathways controlling ΔNp63α-dependent cell proliferation, which revealed that the small GTPase RHOA blocks cell division upon ΔNp63α knockdown. After ΔNp63α depletion, RHOA activity is increased, and cells undergo RHOA-dependent proliferation arrest along with transcriptome changes indicative of increased TGF-β signaling. Mechanistically, ΔNp63α represses transcription of TGFB2, which induces a cell cycle arrest that is partially dependent on RHOA. Ectopic TGFB2 activates RHOA and impairs SCC proliferation, and TGFB2 neutralization restores cell proliferation during ΔNp63α depletion. Genomic data from tumors demonstrate inactivation of RHOA and the TGFBR2 receptor and ΔNp63α overexpression in more than 80% of lung SCCs. These results reveal a signaling pathway controlling SCC proliferation that is potentially amenable to pharmacological intervention."	"Effect of growth differentiation factor-15 secreted by human umbilical cord blood-derived mesenchymal stem cells on amyloid beta levels in in vitro and in vivo models of Alzheimer's disease. Alzheimer's disease (AD), which is the most common progressive neurodegenerative disease, causes learning and memory impairment. The pathological progress of AD can derive from imbalanced homeostasis of amyloid beta (Aβ) in the brain. In such cases, microglia play important roles in regulating the brain Aβ levels. In the present study, we found that human umbilical cord blood-derived mesenchymal stem cells (hUCB-MSCs) can increase, through paracrine action, the ability of microglial cells to clear Aβ. In order to identify the associated paracrine factors, a secretome of hUCB-MSCs co-cultured with Aβ-treated BV2 microglial cells was analyzed using a human cytokine protein array. As a result, growth differentiation factor-15 (GDF-15) was identified as a predominant candidate, and its association with Aβ clearance by microglial cells was investigated in vitro and in a 5XFAD mouse model. When Aβ-treated BV2 cells were treated with exogenous recombinant GDF-15, the Aβ levels in the culture medium decreased. Moreover, GDF-15 injection in the brain parenchyma of 5XFAD mice also led to decrease in Aβ plaques. In contrast, co-culture of BV2 cells and hUCB-MSCs treated with GDF-15-specific siRNA did not influence the Aβ levels in the culture medium. To elucidate how these phenomena are related, we confirmed that GDF-15 specifically increases insulin-degrading enzyme (IDE) expression in microglial cells through TGFβ receptor type II (TGFβRII), both in vitro and in vivo. These findings suggest that hUCB-MSCs promote the Aβ clearance ability of microglial cells through regulation of GDF-15 secretion, thus elucidating a therapeutic mechanism for AD."	"First evidence of maternally inherited mosaicism in TGFBR1 and subtle primary myocardial changes in Loeys-Dietz syndrome: a case report. Loeys-Dietz syndrome (LDS) is a rare multisystemic disorder characterized by vascular and skeletal abnormalities, with considerable intra- and interfamilial variability. We report the case of an 8-year-old male with clinical features of two distinct genetic disorders, namely LDS, manifesting in the first months by progressive aortic root dilatation, arterial tortuosity, bifid uvula, and inguinal hernias and oculocutaneous albinism (OCA) manifesting by white hair and skin that does not tan, nystagmus, reduced iris pigment with iris translucency, and reduced retinal pigment). We identified previously reported, homozygous mutations of TYR, c.1A &gt; G (p.Met1Val) and heterozygous, missense mutation of TGFBR1, c.1460G &gt; A (p.Arg487Gln). Family history revealed that his mother underwent multiple surgical repairs for recurrent hemorrhage originating from the buccal artery. Molecular studies confirmed a maternally inherited low grade TGFBR1 mutation somatic mosaicism (18% in peripheral blood leukocytes, 18% in buccal cells and 10% in hair root cells). Maternal cardiac investigations revealed peculiar cardiovascular features: mild tortuosity at the aortic arch, dilatation of the proximal abdominal aorta, multiple deep left ventricular myocardial crypts, and dysplastic mitral valve. TGFBR2 germline mosaicism has been described in three fathers of children carrying TGFBR2 mutations but, to the best of our knowledge, no case of maternally inherited TGFBR1 mutation mosaicism has been reported so far. This case report suggests that individuals with somatic mosaicism might be at risk for mild and unusual forms of LDS but germline mosaicism can lead to full blown picture of the disease in offspring."	"Parental-reported neurodevelopmental issues in Loeys-Dietz syndrome. Loeys-Dietz syndrome (LDS) is a congenital multisystem disorder affecting the cardiovascular and musculoskeletal system. Limited data have reported neurodevelopmental (ND) issues in LDS. To determine the extent of ND issues in patients with LDS. A prospective study was performed of LDS patients or their caregivers. The study included data collected via an online survey of age-specific questions. Standard statistical methods were used for baseline and demographic characteristics, as well as group comparisons. Data were obtained from 67 patients with LDS (54% female). Median age was 14.9 years. Gene mutations included TGFBR1 (39%), TGFBR2 (40%), SMAD3 (7%), and unknown (14%). Motor delays (30%, 18/61) and hypotonia (63%, 37/60) occurred frequently. Physical (62%, 39/62), occupational (41%, 23/56), and speech therapies (34%, 20/58) were common. Feeding issues were common (41%, 23/56). TGFBR1 mutations were more frequent among those with motor delays and feeding issues. Patients with LDS and/or their caregivers report at least one ND problem in most cases, and many require therapies. These data suggest ND disorders should be considered to be part of the phenotype."	"Activation of Ras in the Vascular Endothelium Induces Brain Vascular Malformations and Hemorrhagic Stroke. Cerebrovascular malformations (CVMs) affect approximately 3% of the population, risking hemorrhagic stroke, seizures, and neurological deficits. Recently Ras mutations have been identified in a majority of brain arterio-venous malformations. We generated an endothelial-specific, inducible HRAS<sup>V12</sup> mouse model, which results in dilated, proliferative blood vessels in the brain, blood-brain barrier breakdown, intracerebral hemorrhage, and rapid lethality. Organoid morphogenesis models revealed abnormal cessation of proliferation, abnormalities in expression of tip and stalk genes, and a failure to properly form elongating tubes. These defects were influenced by both hyperactive PI-3' kinase signaling and altered TGF-β signaling. Several phenotypic changes predicted by the in vitro morphogenesis analysis were validated in the mouse model. These data provide a model of brain vascular malformations induced by mutant Ras and reveal insights into intersecting molecular mechanisms in the pathogenesis of brain vascular malformations."	"The STAT3 inhibitor S3I-201 suppresses fibrogenesis and angiogenesis in liver fibrosis. Liver fibrosis is a common pathological response to chronic hepatic injury. STAT3 is actively involved in the fibrogenesis and angiogenesis seen in liver fibrosis. S3I-201 (NSC 74859) is a chemical inhibitor of STAT3 activity, which blocks the dimerization of STAT3, STAT3-DNA binding and transcription activity. This study evaluated the effects of S3I-201 against liver fibrosis. S3I-201 inhibited the proliferation, migration, and actin filament formation in primary human hepatic stellate cells (HSCs), as well as the expression of α-SMA, collagen I and TIMP1 in both primary HSC and in a CCl4-induced fibrosis mouse model. S3I-201 induced both apoptosis and cell cycle arrest in the HSC cell line (LX-2). S3I-201 inhibited the expression of fibrogenesis factors TGFβ1 and TGFβRII, as well as the downstream phosphorylation of Smad2, Smad3, Akt and ERK induced by TGFβ1. In addition to fibrogenesis, both in vitro and in vivo assays showed that S3I-201 inhibited angiogenesis through expression suppression of VEGF and VEGFR2. Moreover, S3I-201 also had a synergistic effect with sorafenib, an FDA approved liver cancer drug, in the proliferation, apoptosis, angiogenesis and fibrogenesis of HSC. S3I-201 suppressed liver fibrosis through multiple mechanisms, and combined with sorafenib, S3I-201 could be a potentially effective antifibrotic agent."	"CaMKII inhibition in human primary and pluripotent stem cell-derived chondrocytes modulates effects of TGFβ and BMP through SMAD signaling. Upregulation of calcium/calmodulin-dependent kinase II (CaMKII) is implicated in the pathogenesis of osteoarthritis (OA) and reactivation of articular cartilage hypertrophy. However, direct inhibition of CaMKII unexpectedly augmented symptoms of OA in animal models. The role of CaMKII in OA remains unclear and requires further investigation. Analysis of CaMKII expression was performed in normal human and OA articular chondrocytes, and signaling mechanisms were assessed in articular, fetal and Pluripotent Stem Cell (PSC)-derived human chondrocytes using pharmacological (KN93), peptide (AC3-I) and small interfering RNA (siRNA) inhibitors of CaMKII. Expression levels of phospho-CaMKII (pCaMKII) were significantly and consistently increased in human OA specimens. BMP2/4 activated expression of pCaMKII as well as COLII and COLX in human adult articular chondrocytes, and also increased the levels and nuclear localization of SMADs1/5/8, while TGFβ1 showed minimal or no activation of the chondrogenic program in adult chondrocytes. Targeted blockade of CaMKII with specific siRNAs decreased levels of pSMADs, COLII, COLX and proteoglycans in normal and OA adult articular chondrocytes in the presence of both BMP4 and TGFβ1. Both human fetal and PSC-derived chondrocytes also demonstrated a decrease of chondrogenic differentiation in the presence of small molecule and peptide inhibitors of CaMKII. Furthermore, immunoprecipitation for SMADs1/5/8 or 2/3 followed by western blotting for pCaMKII showed direct interaction between SMADs and pCaMKII in primary chondrocytes. Current study demonstrates a direct role for CaMKII in TGF-β and BMP-mediated responses in primary and PSC-derived chondrocytes. These findings have direct implications for tissue engineering of cartilage tissue from stem cells and therapeutic management of OA."	"The CDR1as/miR-7/TGFBR2 Axis Modulates EMT in Silica-Induced Pulmonary Fibrosis. Silicosis is one of the typical forms of pneumoconiosis characterized by abnormal proliferation of fibroblasts and deposition of extracellular matrix. Recent findings have shown that microRNAs and circular RNAs (circRNAs) are implicated in many diseases. However, the function of noncoding RNAs in pulmonary fibrosis remain to be elucidated. Here, miR-7 was found significantly decreased in silica-treated pulmonary epithelial cells as well as in fibrotic lung tissues of mice. Elevated expression of miR-7 via agomir injection relieved lung fibrosis in vivo. Further molecular study showed that miR-7 played its role against pulmonary fibrosis by blocking epithelial-mesenchymal transition (EMT) progression of human bronchial epithelial cells and A549 cells. Notably, transforming growth factor beta receptor 2 (TGFBR2) was identified as a target gene of miR-7 with bioinformatics tools, which was verified by dual luciferase receptor gene assay in human bronchial epithelial cells and A549 cells. Silica induced elevation of TGFBR2 could be abolished by exogenous expression of miR-7. Furthermore, bioinformatics software indicated that circRNA CDR1as had several binding sites for miR-7. The inhibitory effects of miR-7 on EMT and its target TGFBR2 were suppressed by circRNA CDR1as, which contributed to pulmonary fibrosis. Our studies also revealed overexpressed miR-7 could repress fibrogenesis of lung fibroblasts induced by TGF-β1. Collectively, circRNA CDR1as stimulated by silica could sponge miR-7 to release TGFBR2, plays an important role during pulmonary fibrosis by promoting EMT process. These results indicated that the interaction between miR-7 and circRNA CDR1as may exert important functions and provide potential therapeutic targets in lung fibrotic diseases."	"Enhanced Expression of TGFBI Promotes the Proliferation and Migration of Glioma Cells. Transforming growth factor beta-induced protein (TGFBI) is an extracellular matrix protein induced by TGF-β. Previous studies have reported that the abnormal expression of TGFBI is related to the occurrence and development of some types of cancers, while the role of TGFBI in glioma is uncertain. The association between TGFBI expression and the prognosis of patients with glioma was analyzed based on data obtained from The Cancer Genome Atlas database. TGFBI expression was analyzed in 3 normal human brains and 57 cases of human gliomas by immunohistochemistry followed by an evaluation of the relationships between TGFBI expression and clinic-pathological features. Furthermore, the RNA interference plasmid pSUPER-shTGFBI was constructed and transfected into U87 and U251 cells to explore the effect of short hairpin RNA against TGFBI (shTGFBI) on cell proliferation, migration, invasion and apoptosis. Western blot analysis was performed to examine the expression of proteins related to apoptosis and proteins in the PI3K/Akt signaling pathway. High TGFBI expression was found to be associated with poor prognosis in patients with glioblastoma multiforme. Immunohistochemistry showed that TGFBI expression was significantly higher in glioma tissue than in normal human brain tissues. The expression level of TGFBI showed no significant correlation with age, sex, lymph-node metastasis, or pathological grade. sh-TGFBI could inhibit proliferation, invasion and migration and induce apoptosis in U87 and U251 cells in vitro. Furthermore, the phosphorylation levels of AKT and mTOR declined significantly in sh-TGFBI transfected U81 and U251 cells when compared with control. TGFBI was up-regulated in glioma cells and played a promoting role in the growth and motility of U87 and U251 cells. These results suggested that TGFBI has the potential to be a diagnostic marker and to serve as a target for the treatment of gliomas."	"TGF-β receptors: In and beyond TGF-β signaling. Transforming growth factor β (TGF-β) plays an important role in normal development and homeostasis. Dysregulation of TGF-β responsiveness and its downstream signaling pathways contribute to many diseases, including cancer initiation, progression, and metastasis. TGF-β ligands bind to three isoforms of the TGF-β receptor (TGFBR) with different affinities. TGFBR1 and 2 are both serine/threonine and tyrosine kinases, but TGFBR3 does not have any kinase activity. They are necessary for activating canonical or noncanonical signaling pathways, as well as for regulating the activation of other signaling pathways. Another prominent feature of TGF-β signaling is its context-dependent effects, temporally and spatially. The diverse effects and context dependency are either achieved by fine-tuning the downstream components or by regulating the expressions and activities of the ligands or receptors. Focusing on the receptors in events in and beyond TGF-β signaling, we review the membrane trafficking of TGFBRs, the kinase activity of TGFBR1 and 2, the direct interactions between TGFBR2 and other receptors, and the novel roles of TGFBR3."	"SMAD4 promotes TGF-β-independent NK cell homeostasis and maturation and antitumor immunity. SMAD4 is the only common SMAD in TGF-β signaling that usually impedes immune cell activation in the tumor microenvironment. However, we demonstrated here that selective deletion of Smad4 in NK cells actually led to dramatically reduced tumor cell rejection and augmented tumor cell metastases, reduced murine CMV clearance, as well as impeded NK cell homeostasis and maturation. This was associated with a downregulation of granzyme B (Gzmb), Kit, and Prdm1 in Smad4-deficient NK cells. We further unveiled the mechanism by which SMAD4 promotes Gzmb expression. Gzmb was identified as a direct target of a transcriptional complex formed by SMAD4 and JUNB. A JUNB binding site distinct from that for SMAD4 in the proximal Gzmb promoter was required for transcriptional activation by the SMAD4-JUNB complex. In a Tgfbr2 and Smad4 NK cell-specific double-conditional KO model, SMAD4-mediated events were found to be independent of canonical TGF-β signaling. Our study identifies and mechanistically characterizes unusual functions and pathways for SMAD4 in governing innate immune responses to cancer and viral infection, as well as NK cell development."	"MYEOV functions as an amplified competing endogenous RNA in promoting metastasis by activating TGF-β pathway in NSCLC. Non-small cell lung cancer (NSCLC) remains a major cause of death worldwide. As metastatic disease is primarily responsible for the poor clinical outcome of NSCLC, it is important to understand the process, and its underlying molecular mechanism as well, via which NSCLC cells disseminate. In this study, we identified a new competing endogenous RNA (ceRNA), namely, the MYEOV transcript, and found that it is upregulated in NSCLC and associated with a poor prognosis of the disease. We further uncovered that the MYEOV ceRNA plays a critical role in the invasion and metastasis of NSCLC cells. Intriguingly, the MYEOV ceRNA exerted its pro-metastatic function independent of its protein-coding capacity, but in a miR-30c-2-3p binding-dependent manner. Further experiments demonstrated that the MYEOV ceRNA sequestered miR-30c-2-3p from binding its targets TGFBR2 and USP15 mRNAs, which in turn leading to constitutive activation of TGF-β signaling and tumor progression in NSCLC. By identifying a new layer of regulatory modality for TGF-β signaling, our findings extend the current understanding on the molecular mechanism mediating NSCLC progression and highlight a potential role of MYEOV transcript to serve as the therapeutic target."	"Clinical diagnosis of Larsen syndrome, Stickler syndrome and Loeys-Dietz syndrome in a 19-year old male: a case report. Larsen syndrome is a hereditary disorder characterized by osteochondrodysplasia, congenital large-joint dislocations, and craniofacial abnormalities. The autosomal dominant type is caused by mutations in the gene that encodes the connective tissue protein, filamin B (FLNB). Loeys-Dietz syndrome (LDS) is an autosomal dominant connective tissue disorder characterized by arterial aneurysms, dissections and tortuosity, and skeletal, including craniofacial, manifestations. Mutations in five genes involved in the transforming growth factor beta (TGF-β) signaling pathway cause five types of LDS. Stickler syndrome is a genetically heterogeneous arthro-ophthalmopathy caused by defects in collagen, exhibiting a wide specter of manifestations in connective tissue. A rare case is reported that was diagnosed with all these three hereditary connective tissue disorders. A 19 year-old, Norwegian male with a clinical diagnosis of Larsen syndrome and with healthy, non-consanguineous parents attended a reference center for rare connective tissue disorders. Findings at birth were hypotonia, joint hypermobility, hyperextended knees, adductovarus of the feet, cervical kyphosis, craniofacial abnormalities, and an umbilical hernia. From toddlerhood, he required a hearing aid due to combined conductive and sensorineural hearing loss. Eye examination revealed hyperopia, astigmatism, and exotropia. At 10 years of age, he underwent emergency surgery for rupture of an ascending aortic aneurysm. At 19 years of age, a diagnostic re-evaluation was prompted by the findings of more distal aortic dilation, tortuosity of precerebral arteries, and skeletal findings. High throughput sequencing of 34 genes for hereditary connective tissue disorders did not identify any mutation in FLNB, but did identify a de novo missense mutation in TGFBR2 and a nonsense mutation in COL2A1 that was also present in his unaffected father. The diagnosis was revised to LDS Type 2. The patient also fulfills the proposed criteria for Stickler syndrome with bifid uvula, hearing loss, and a known mutation in COL2A1. LDS should be considered in patients with a clinical diagnosis of Larsen syndrome, in particular in the presence of arterial aneurysms or tortuosity. Due to genetic heterogeneity and extensive overlap of clinical manifestations, genetic high throughput sequencing analysis is particularly useful for the differential diagnosis of hereditary connective tissue disorders."	"Transforming Growth Factor Beta Signaling in Dendritic Cells Is Required for Immunotolerance to Sperm in the Epididymis. The epididymis exhibits a less restrictive physical blood-tissue barrier than the testis and, while numerous immunosuppressive factors have been identified in the latter, no mechanisms for epididymal immunotolerance have been identified to date. Therefore, data are currently insufficient to explain how the immune system tolerates the extremely large load of novel antigens expressed on sperm, which become present in the male body after puberty, i.e., long after central tolerance was established. This study tested the hypothesis that transforming growth factor beta (TGFβ) signaling in dendritic cells (DCs) is required for immunotolerance to sperm located in the epididymis, and that male mice lacking TGFβ signaling in DCs would develop severe epididymal inflammation. To test this, we employed adult Tgfbr2<sup>ΔDC</sup> males, which exhibit a significant reduction of Tgfbr2 expression and TGFβ signaling in DCs, as reported previously. Results show that Tgfbr2<sup>ΔDC</sup> males exhibit sperm-specific immune response and severe epididymal leukocytosis. This phenotype is consistent with epididymal loss of immunotolerance to sperm and suggests that TGFβ signaling in DCs is a factor required for a non-inflammatory steady state in the epididymis, and therefore for male tract homeostasis and function."	"Type III Transforming Growth Factor-β Receptor RNA Interference Enhances Transforming Growth Factor β3-Induced Chondrogenesis Signaling in Human Mesenchymal Stem Cells. The type III transforming growth factor-β (TGF-β) receptor (TβRIII), a coreceptor of the TGF-β superfamily, is known to bind TGF-βs and regulate TGF-β signaling. However, the regulatory roles of TβRIII in TGF-β-induced mesenchymal stem cell (MSC) chondrogenesis have not been explored. The present study examined the effect of TβRIII RNA interference (RNAi) on TGF-β3-induced human MSC (hMSC) chondrogenesis and possible signal mechanisms. A lentiviral expression vector containing TβRIII small interfering RNA (siRNA) (SiTβRIII) or a control siRNA (SiNC) gene was constructed and infected into hMSCs. The cells were cultured in chondrogenic medium containing TGF-β3 or control medium. TβRIII RNAi significantly enhanced TGF-β3-induced chondrogenic differentiation of hMSCs, the ratio of type II (TβRII) to type I (TβRI) TGF-β receptors, and phosphorylation levels of Smad2/3 as compared with cells infected with SiNC. An inhibitor of the TGF-β signal, SB431542, not only inhibited TβRIII RNAi-stimulated TGF-β3-mediated Smad2/3 phosphorylation but also inhibited the effects of TβRIII RNAi on TGF-β3-induced chondrogenic differentiation. These results demonstrate that TβRIII RNAi enhances TGF-β3-induced chondrogenic differentiation in hMSCs by activating TGF-β/Smad2/3 signaling. The finding points to the possibility of modifying MSCs by TβRIII knockdown as a potent future strategy for cell-based cartilage tissue engineering."	"High prevalence of ventricular repolarization abnormalities in people carrying TGFβR2 mutations. Mutations in the TGFβR2 gene have been associated with a life threatening risk of aortic dissection but no arrhythmic death has been previously reported. Two young females carrying a TGFβR2 mutation, initially diagnosed as Marfan syndrome or Loeys Dietz syndrome, presented sudden death with autopsy ruling out dissection. The ECGs of the 2 Sudden Cardiac Deaths revealed profound ventricular repolarization abnormalities with a sinusoidal T-U morphology associated with normal left ventricular ejection fraction. These data strongly suggest sudden cardiac arrhythmic deaths and prompted us to systematically study the repolarization pattern in the patients with TGFβR2 mutations. ECG findings from 58 mutation carriers patients (TGFβR2 group) were compared with those of 46 non-affected first degree relatives (control group). TGFβR2 mutation was associated with ventricular repolarization abnormalities in 47% of patients (p &lt; 0.001 vs. controls), including a 19.6 ms (95%CI 8.7; 30.5) QTc interval prolongation compared to the non-affected first degree relatives (p &lt; 0.001), higher prevalence of abnormal U waves (16% vs. 2%), and sinusoidal T-U morphology (10% vs. 0%). TGFβR2 mutations can be associated with abnormal ventricular repolarization pattern, longer QT interval than non-carrier relatives and an increased risk for sudden death."	"Stat3 is indispensable for damage-induced crypt regeneration but not for Wnt-driven intestinal tumorigenesis. Signal transducer and activator of transcription 3 (Stat3) has been shown to play a role in intestinal regeneration and colitis-associated colon carcinogenesis. However, the role of Stat3 in the Wnt-driven sporadic intestinal tumorigenesis remains poorly understood. We examined the roles of Stat3 in intestinal regeneration and tumorigenesis by organoid culture experiments using Stat3<sup>∆IEC</sup> mouse-derived intestinal epithelial cells in which Stat3 was disrupted. The regeneration of intestinal mucosa and organoid formation were significantly suppressed by Stat3 disruption, which was compensated by Wnt activation. Furthermore, once organoids were recovered, Stat3 was no longer required for organoid growth. These results indicate that Stat3 and Wnt signaling cooperatively protect epithelial cells at the early phase of intestinal regeneration. In contrast, intestinal tumorigenesis was not suppressed by Stat3 disruption in adenomatous polyposis coli ( Apc) <sup>Δ716</sup> and Apc<sup>∆716</sup> Tgfbr2<sup>∆IEC</sup> mice, thus indicating that Stat3 is not required for Wnt activation-driven intestinal tumorigenesis. Mechanistically, Itga5 and Itga6 were down-regulated by Stat3 disruption, and focal adhesion kinase (FAK) activation was also suppressed. Notably, FAK inhibitor suppressed the organoid formation of wild-type epithelial cells. These results indicate that Stat3 is indispensable for the survival of epithelial cells through the activation of integrin signaling and the downstream FAK pathway; however, it is not required for the Wnt signaling-activated normal or tumor epithelial cells.-Oshima, H., Kok, S.-Y., Nakayama, M., Murakami, K., Voon, D. C.-C., Kimura, T., Oshima, M. Stat3 is indispensable for damage-induced crypt regeneration but not for Wnt-driven intestinal tumorigenesis."	"Potential Genes and Pathways of Neonatal Sepsis Based on Functional Gene Set Enrichment Analyses. Neonatal sepsis (NS) is considered as the most common cause of neonatal deaths that newborns suffer from. Although numerous studies focus on gene biomarkers of NS, the predictive value of the gene biomarkers is low. NS pathogenesis is still needed to be investigated. After data preprocessing, we used KEGG enrichment method to identify the differentially expressed pathways between NS and normal controls. Then, functional principal component analysis (FPCA) was adopted to calculate gene values in NS. In order to further study the key signaling pathway of the NS, elastic-net regression model, Mann-Whitney U test, and coexpression network were used to estimate the weights of signaling pathway and hub genes. A total of 115 different pathways between NS and controls were first identified. FPCA made full use of time-series gene expression information and estimated F values of genes in the different pathways. The top 1000 genes were considered as the different genes and were further analyzed by elastic-net regression and MWU test. There were 7 key signaling pathways between the NS and controls, according to different sources. Among those genes involved in key pathways, 7 hub genes, PIK3CA, TGFBR2, CDKN1B, KRAS, E2F3, TRAF6, and CHUK, were determined based on the coexpression network. Most of them were cancer-related genes. PIK3CA was considered as the common marker, which is highly expressed in the lymphocyte group. Little was known about the correlation of PIK3CA with NS, which gives us a new enlightenment for NS study. This research might provide the perspective information to explore the potential novel genes and pathways as NS therapy targets."	"Inverse Correlation of STAT3 and MEK Signaling Mediates Resistance to RAS Pathway Inhibition in Pancreatic Cancer. Major contributors to therapeutic resistance in pancreatic ductal adenocarcinoma (PDAC) include Kras mutations, a dense desmoplastic stroma that prevents drug delivery to the tumor, and activation of redundant signaling pathways. We have previously identified a mechanistic rationale for targeting STAT3 signaling to overcome therapeutic resistance in PDAC. In this study, we investigate the molecular mechanisms underlying the heterogeneous response to STAT3 and RAS pathway inhibition in PDAC. Effects of JAK/STAT3 inhibition (STAT3i) or MEK inhibition (MEKi) were established in Ptf1a<sup>cre/+</sup>; LSL-Kras<sup>G12D/+</sup> ; and Tgfbr2<sup>flox/flox</sup> (PKT) mice and patient-derived xenografts (PDX). Amphiregulin (AREG) levels were determined in serum from human patients with PDAC, LSL-Kras<sup>G12D/+</sup>;Trp53<sup>R172H/+</sup>;Pdx1<sup>Cre/+</sup> (KPC), and PKT mice. MEKi/STAT3i-treated tumors were analyzed for integrity of the pancreas and the presence of cancer stem cells (CSC). We observed an inverse correlation between ERK and STAT3 phosphorylation. MEKi resulted in an immediate activation of STAT3, whereas STAT3i resulted in TACE-induced, AREG-dependent activation of EGFR and ERK. Combined MEKi/STAT3i sustained blockade of ERK, EGFR, and STAT3 signaling, overcoming resistance to individual MEKi or STAT3i. This combined inhibition attenuated tumor growth in PDX and increased survival of PKT mice while reducing serum AREG levels. Furthermore, MEKi/STAT3i altered the PDAC tumor microenvironment by depleting tumor fibrosis, maintaining pancreatic integrity, and downregulating CD44<sup>+</sup> and CD133<sup>+</sup> CSCs. These results demonstrate that resistance to MEKi is mediated through activation of STAT3, whereas TACE-AREG-EGFR-dependent activation of RAS pathway signaling confers resistance to STAT3 inhibition. Combined MEKi/STAT3i overcomes these resistances and provides a novel therapeutic strategy to target the RAS and STAT3 pathway in PDAC.Significance: This report describes an inverse correlation between MEK and STAT3 signaling as key mechanisms of resistance in PDAC and shows that combined inhibition of MEK and STAT3 overcomes this resistance and provides an improved therapeutic strategy to target the RAS pathway in PDAC.Graphical Abstract: http://cancerres.aacrjournals.org/content/canres/78/21/6235/F1.large.jpg Cancer Res; 78(21); 6235-46. ©2018 AACR."	"Altered transforming growth factor beta/SMAD3 signalling in patients with hippocampal sclerosis. Transforming growth factor beta (TGFβ) signalling cascade has been implicated in enhancing neuronal excitability and excitatory synaptogenesis following blood brain barrier (BBB) damage and inflammation. We aimed to study if TGFβ signalling expression is altered in patients with Hippocampal Sclerosis (HS). We probed into the protein expression level of the ligand transforming growth factor beta 1 (TGFβ1), transforming growth factor beta receptor II (TGFβRII) and downstream signalling molecule SMAD3 and phosphorylated SMAD3 (pSMAD3) on surgically resected hippocampal samples of thirty-four patients with HS through immuno-blotting. The increase in protein expression level of the ligand TGFβ1 was 285 ± 1.15% higher and its receptor TGFβRII was 170 ± 0.98% higher in hippocampus of patients with HS in comparison to the autopsy hippocampal control samples. The expression of the downstream signalling molecules, SMAD3 is 157 ± 0.13% and 106 ± 0.17% higher in patients with HS as compared to both types of non-seizure controls. The expression of active form of SMAD3, pSMAD3 (2.6010 ± 1.2735) was significantly upregulated in hippocampus of patients with HS compared to autopsy hippocampal controls (0.7899 ± 0.3688). While the expression of pSMAD3 (1.527 ± 0.9425) was significantly upregulated in hippocampus of patients with HS with another type of non-seizure control viz. tumour periphery tissue (0.5791 ± 0.2679), hence strongly supporting the altered expression of the pathway. This study provides the first evidence of alteration of TGFβ pathway in patients with HS which could be a potential therapeutic target."	"SND p102 promotes extracellular matrix accumulation and cell proliferation in rat glomerular mesangial cells via the AT1R/ERK/Smad3 pathway. SND p102 was first described as a transcriptional co-activator, and subsequently determined to be a co-regulator of Pim-1, STAT6 and STAT5. We previously reported that SND p102 expression was increased in high glucose-treated mesangial cells (MCs) and plays a role in the extracellular matrix (ECM) accumulation of MCs by regulating the activation of RAS. In this study, we further examined the roles of SND p102 in diabetic nephropathy (DN)-induced glomerulosclerosis. Rats were injected with STZ (50 mg/kg, ip) to induce diabetes. MCs or isolated glomeruli were cultured in normal glucose (NG, 5.5 mmol/L)- or high glucose (HG, 25 mmol/L)-containing DMEM. We found that SND p102 expression was significantly increased in the diabetic kidneys, as well as in HG-treated isolated glomeruli and MCs. In addition, HG treatment induced significant fibrotic changes in MCs evidenced by enhanced protein expression of TGF-β, fbronectin and collagen IV, and significantly increased the proliferation of MCs. We further revealed that overexpression of SND p102 significantly increased the protein expression of angiotensin II (Ang II) type 1 receptor (AT1R) in MCs by increasing its mRNA levels via directly targeting the AT1R 3'-UTR, which resulted in activation of the ERK/Smad3 signaling and subsequently promoted the up-regulation of fbronectin, collagen IV, and TGF-β in MCs, as well as the cell proliferation. These results demonstrate that SND p102 is a key regulator of AT1R-mediating ECM synthesis and cell proliferation in MCs. Thus, small molecule inhibitors of SND p102 may be a novel therapeutic strategy for DN."	"MiR-3606-3p inhibits systemic sclerosis through targeting TGF-β type II receptor. Systemic sclerosis (SSc) is a multisystemic fibrotic disease characterized by excessive collagen deposition and extracellular matrix synthesis. Though transforming growth factor-β (TGF-β) plays a fundamental role in the pathogenesis of SSc, the mechanism by which TGF-β signaling acts in SSc remains largely unclear. Here, we showed that TGF-β type II receptor (TGFBR2) was significantly upregulated in both human SSc dermal tissues and primary fibroblasts. In fibroblasts, siRNA-induced knockdown of TGFBR2 resulted in a reduction of p-SMAD2/3 levels and reduced production of type I collagen. Additionally, functional experiments revealed that downregulation of TGFBR2 yielded an anti-growth effect on fibroblasts through inhibiting cell cycle progression. Further studies showed that miR-3606-3p could directly target the 3'-UTR of TGFBR2 and significantly decrease the levels of both TGFBR2 mRNA and protein. Furthermore, SSc dermal tissues and primary fibroblasts contain significantly reduced amounts of miR-3606-3p, and the overexpression of miR-3606-3p in fibroblasts replicates the phenotype of TGFBR2 downregulation. Collectively, our findings demonstrated that increased TGFBR2 could be responsible for the hyperactive TGF-β signaling observed in SSc. Moreover, we identified a pivotal role for miR-3606-3p in SSc, which acts, at least partly, through the attenuation of TGF-β signaling via TGFBR2 repression, suggesting that the regulation of miR-3606-3p/TGFBR2 could be a promising therapeutic target that could improve the treatment strategy for fibrosis."	"Loss of NF2 Induces TGFβ Receptor 1-mediated Noncanonical and Oncogenic TGFβ Signaling: Implication of the Therapeutic Effect of TGFβ Receptor 1 Inhibitor on NF2 Syndrome. Neurofibromatosis type 2 (NF2) syndrome is a very rare human genetic disease, and there has been no proper treatment for it until now. In our recent study, it has been reported that the loss of NF2 activates MAPK signaling through reduction of RKIP in a mesothelioma model. Here, we show that loss of NF2 induces reduction of the TGFβ receptor 2 (TβR2) expression, and an overwhelming expression of TGFβ receptor 1 (TβR1) is activated by physical stimuli such as pressure or heavy materials. Activated TβR1 induces the phosphorylation and degradation of RKIP. RKIP reduction consequently results in MAPK activation as well as Snail-mediated p53 suppression and occurrence of EMT in NF2-deficient cells by physical stimuli. Thus, TβR1 kinase inhibitors restore cell differentiation and induce growth suppression in NF2-deficient Schwannoma cell line and MEF. Moreover, TEW7197, a specific TβR1 kinase inhibitor, reduces tumor formation in the NF2-model mouse (Postn-Cre;NF2<sup>f/f</sup>). Gene expression profiling reveals that TEW7197 treatment induces the expression of lipid metabolism-related gene set, such as NF2-restored cells in HEI-193 (NF2-deficient Schwannoma). Our results indicate that reduction or deletion of TβR2 or NF2 induces the TβR1-mediated oncogenic pathway, and therefore inhibition of the unbalanced TGFβ signaling is a putative strategy for NF2-related cancers (NF2 syndrome and mesothelioma) and TβR2-mutated advanced cancers. Mol Cancer Ther; 17(11); 2271-84. ©2018 AACR."	"Activin receptor-like kinase 1 is associated with immune cell infiltration and regulates CLEC14A transcription in cancer. Cancer cells sustain their metabolic needs through nutrients and oxygen supplied by the bloodstream. The requirement for tumor angiogenesis has been therapeutically exploited in the clinical setting mainly by means of inhibition of the vascular endothelial growth factor family of ligands and receptors. Despite promising results in preclinical models, the benefits for patients proved to be limited. Inadequate efficacy similarly halted the development of agents impinging on the activity of the activin receptor-like kinase (ALK)1, a member of the transforming growth factor-β superfamily. Notwithstanding its characterization as an endothelial cell marker, the full spectrum of biological processes associated with ALK1 is essentially unexplored. Here, we present data revealing the genetic network associated with ACVRL1 (the gene encoding for ALK1) expression in human cancer tissues. Computational analysis unveiled a hitherto unknown role for ACVRL1 in relation to genes modulating the functionality of the immune cell compartment. Moreover, we generated a signature of 8 genes co-expressed with ACVRL1 across different tumor types and characterized the c-type lectin domain containing protein (CLEC)14A as a potential downstream target of ACVRL1. Considering the lack of reagents for ALK1 detection that has hampered the field to date, our work provides the opportunity to validate the 8-gene signature and CLEC14A as biomarkers for ALK1 activity. Ultimately, this may help revisit the clinical development of already existing ALK1-blocking compounds as precision medicines for cancer."	"Excreted-secreted antigens of Toxoplasma gondii inhibit Foxp3 via IL-2Rγ/JAK3/Stats pathway. Toxoplasma gondii excreted-secreted antigens (ESA) could lead to the fetal abortion especially in the early stage of pregnancy. Deficit in regulatory T cells is a critical event in the fetal abortion. Transcription factor forkhead box p3 (Foxp3) mediates differentiation and functional roles on regulatory T cells. Previously, we revealed that ESA inhibited Foxp3 through the suppression of transforming growth factor-β type II receptor, phosphorylation of Smad2, Smad3, and Smad4. Knockdown of Smad2 collaborated with ESA to further inhibit Foxp3. The decrease in Foxp3 caused by ESA reversed via forced expression of Smad2, Smad3, and Smad4, respectively. In this study, we investigate whether other signaling pathways are implicated in ESA-induced Foxp3 downregulation. EL4 cells were cultured and stimulated with ESA. Interleukin-2 receptor γ (IL-2Rγ) chain, Janus kinase 3 (JAK3), signal transducer and activator of transcription 5 (Stat5), Stat3, phosphorylation of Stat5 and Stat3 were assayed by Western blot analysis. Phosphorylation of Stat5 and Stat3 was further measured by cellular immunofluorescence. The expression plasmid of pcDNA3.1-Stat3 and pcDNA3.1-Stat5b was constructed, respectively. The concentration of interleukin-2 (IL-2) in the culture supernatants was detected by enzyme-linked immunosorbent assay. ESA inhibited the level of JAK3, phosphorylation of Stat5 and Stat3, and Foxp3 in EL4 cells. The suppressive effects of ESA on Foxp3 were attenuated by forced expression of Stat5 and Stat3. In addition, ESA suppressed IL-2Rγ in EL4 cells, while IL-2Rγ agonist could markedly reverse the diminished Foxp3 caused by ESA. Furthermore, ESA directly influenced the expression of IL-2Rγ, rather than the availability of IL-2 indirectly. ESA suppressed the level of Foxp3 via inhibiting IL-2Rγ/JAK3/Stats signaling pathway in EL4 cells."	"Expression of TGFBR1, TGFBR2, TGFBR3, ACVR1B and ACVR2B is altered in ovaries of cows with cystic ovarian disease. The objective of this study was to examine the expression of transforming growth factor beta receptor (TGFBR)1, TGFBR2, TGFBR3, activin receptor (ACVR)1B and ACVR2B in ovaries of cows with cystic ovarian disease (COD). The expression of the selected receptors was determined by immunohistochemistry in sections of ovaries from cows with ACTH-induced and spontaneous COD. Expression of TGFBR1 and TGFBR3 was higher in granulosa cells of cysts from cows with spontaneous COD than in tertiary follicles from the control group. Additionally, TGFBR3 expression was higher in granulosa cells of cysts from cows with ACTH-induced COD than in those from the control group and lower in theca cells of spontaneous and ACTH-induced cysts than in tertiary control follicles. There were no changes in the expression of TGFBR2. ACVR1B expression was higher in granulosa cells of tertiary follicles of cows with spontaneous COD than in the control group, whereas ACVR2B expression was higher in cysts of the spontaneous COD group than in tertiary follicles from the control group. The alterations here detected, together with the altered expression of the ligands previously reported, indicate alterations in the response of the ligands in the target cells, modifying their actions at cellular level."	"Intracerebroventricular administration of bone marrow-derived cells attenuates angiotensin II-initiated neurogenic hypertension in rats. Bone marrow-derived cells exert anti-inflammatory actions and can migrate into the brain. However, their role in the development of neurogenic hypertension remains unclear. A hyperactive renin-angiotensin system and inflammation in the brain are mechanisms that contribute to angiotensin II-initiated neurogenic hypertension. We hypothesized that bone marrow-derived cells in the brain attenuate the overactive brain renin-angiotensin system and inflammation, thereby reducing neurogenic hypertension. We cultured plastic-adherent bone marrow-derived cells for 3 weeks. Seven days after initiation of vehicle or angiotensin II infusions, the rats underwent intracerebroventricular administration of either serum-free medium or autologous bone marrow-derived cells (10<sup>6</sup> cells). After 23 days of infusion, the mean arterial pressure was recorded, and the sympathetic tone was evaluated. Rats infused with angiotensin II demonstrated significant increases in the resting mean arterial pressure and the peak depressor response to ganglionic blockade (vehicle vs. angiotensin II infusion, 119 ± 4 vs. 178 ± 6 mmHg and -34 ± 6 vs. -74 ± 5 mmHg, respectively). Intracerebroventricularly administered bone marrow-derived cells attenuated the angiotensin II-mediated increases in the resting mean arterial pressure and peak depressor response (142 ± 11 and -52 ± 4 mmHg, respectively). The cells also reduced the angiotensin II-induced increases in angiotensin II type 1 receptor and transforming growth factor-β expression in the brain. In conclusion, bone marrow-derived cells in the brain may have a protective role against the development of angiotensin II-induced neurogenic hypertension by modulating angiotensin II type 1 receptor expression and inflammatory processes."	"Emodin suppresses activation of hepatic stellate cells through p38 mitogen-activated protein kinase and Smad signaling pathways in vitro. The aim of this study was to evaluate the hypothesis that emodin inhibits extracellular matrix (ECM)-related gene expression in activated hepatic stellate cells (HSCs) by blocking canonical or/and noncanonical components of transforming growth factor β1 (TGFβ1) intracellular signaling. Here, we demonstrate that emodin suppressed the gene expression of HSCs activation markers type I collagen, fibronectin, and α-smooth muscle actin, as well as HSCs proliferation. Mechanistically, emodin suppresses TGFβ1, TGFβ receptor II, TGFβ receptor I, and Smad4 gene expression, as well as Smad luciferase activity. Simultaneously, emodin reduced p38 mitogen-activated protein kinase (p38<sup>MAPK</sup> ) activity but not c-Jun N-terminal kinases and extracellular signal-regulated kinases 1 and 2 phosphorylation in HSC-T6 cells. Interestingly, deprivation of TGFβ using a neutralizing antibody abolished emodin-mediated inhibitions of the both Smad transcriptional activity and p38<sup>MAPK</sup> phosphorylation. Furthermore, emodin-mediated inhibition of HSCs activation could be partially blocked by PD98059 inhibition of p38<sup>MAPK</sup> or short hairpin RNA-imposed knockdown of Smad4. Conversely, simultaneous inhibition of Smad4 and p38<sup>MAPK</sup> pathways completely reverses the effects of emodin, suggesting that Smad and p38<sup>MAPK</sup> locate downstream of TGFβ1 and regulate collagen genes expression in HSCs. Collectively, these data suggest that emodin is a promising candidate for the treatment of hepatic fibrosis."	"Histological investigation of human glaucomatous eyes: Extracellular fibrotic changes and galectin 3 expression in the trabecular meshwork and optic nerve head. Glaucoma is a leading cause of irreversible vision loss and is associated with fibrotic changes in two ocular tissues-the optic nerve head (ONH) and trabecular meshwork (TM). We investigated the differences in extracellular matrix components (ECM) including collagen, elastin, transforming growth factor beta-2, type-II receptor (TGFβRII) and Galectin3 (Gal3) in the glaucomatous human eyes to quantify fibrotic changes in ONH and TM. Glaucomatous and control human donor eyes were prepared for chemical and immunological staining to quantify ECM protein expression in the TM and ONH. Chemical staining included: Trichrome (collagen), Vernhoeff-Van Giesen (elastin) and Sirius Red (collagen). Immunohistochemistry was used to determine levels of Gal3 and TGFβ2RII. Quantitative analyses were performed using Image J software. Student's t-test was used to compare groups and Pearson's test was used to determine correlations P-values of 0.05 (or less) were considered statistically significant. Deposition of ECM proteins was elevated in glaucomatous tissues. There was increased collagen (P = 0.0469), Gal3 (P &lt; 0.0001) and TGFβ2RII (P = 0.0005) in the TM of glaucomatous eyes. Likewise, collagen (P = 0.0517) and Galectin3 (P = 0.041) were increased in the ONH glaucomatous eyes. There was a correlation of TGFβRII with Gal3 in the TM (P &lt; 0.0001) and optic nerve (P = 0.0003). The TM and ONH of glaucomatous eyes showed increased expression of ECM proteins supporting a fibrotic pathology. Galectin3 and TGFβ-2R II showed a positive correlation in TM and optic nerve supporting co-localization and suggesting their potential role in the glaucoma fibrotic process. Clin. Anat. 31:1031-1049, 2018. © 2018 The Authors. Clinical Anatomy published by Wiley Periodicals, Inc. on behalf of American Association of Clinical Anatomists."	"Three Novel Mutations in FBN1 and TGFBR2 in Patients with the Syndromic Form of Thoracic Aortic Aneurysms and Dissections. There are many inherited disorders associated with thoracic aortic aneurysms and dissections (TAADs), like Marfan syndrome and Loeys-Dietz syndrome (LDS). The 4 patients in this study all had TAADs and were initially diagnosed with suspected Marfan syndrome. We collected peripheral blood samples from the patients and their family members and then attempted to identify the causal mutation using different methods including PCR, Sanger sequencing, and next generation sequencing. We identified 3 novel heterozygous mutations including 2 splicing mutations of FBN1 and 1 missense mutation of TGFBR2 in our patients. Although these mutation sites have been reported in the Human Gene Mutation Database, the nucleotide changes are different. All novel mutations found in this study were confirmed to be absent in 50 unrelated normal individuals of the same ethnic background. The RT-PCR results of 2 splicing mutations verified that the mutations can lead to the skipping of exons. The RT-qPCR results indicated that FBN1 mRNA levels were nearly 50 percent lower in the patients than in normal controls, indicating that there is almost no expression of truncated fibrillin-1 because of the nonsense-mediated mRNA decay (NMD) mechanism. To the best of our knowledge, we are the first to report these 3 novel mutations. However, the pathogenicity of these mutations still needs further confirmation. Our study has confirmed or corrected the clinical diagnosis, and enlarged the mutation spectrum of FBN1 and TGFBR2. The results should be helpful for prenatal diagnosis and genetic counseling."	"Differential genomics and transcriptomics between tyrosine kinase inhibitor-sensitive and -resistant BCR-ABL-dependent chronic myeloid leukemia. Previously, it has been stated that the BCR-ABL fusion-protein is sufficient to induce Chronic Myeloid Leukemia (CML), but additional genomic-changes are required for disease progression. Hence, we profiled control and tyrosine kinase inhibitors (TKI) alone or in combination with other drug-treated CML-samples in different phases, categorized as drug-sensitive and drug-resistant on the basis of BCR-ABL transcripts, the marker of major molecular-response. Molecular-profiling was done using the molecular-inversion probe-based-array, Human Transcriptomics-Array2.0, and Axiom-Biobank genotyping-arrays. At the transcript-level, clusters of control, TKI-resistant and TKI-sensitive cases were correlated with BCR-ABL transcript-levels. Both at the gene- and exon-levels, up-regulation of MPO, TPX2, and TYMS and down-regulation of STAT6, FOS, TGFBR2, and ITK lead up-regulation of the cell-cycle, DNA-replication, DNA-repair pathways and down-regulation of the immune-system, chemokine- and interleukin-signaling, TCR, TGF beta and MAPK signaling pathways. A comparison between TKI-sensitive and TKI-resistant cases revealed up-regulation of LAPTM4B, HLTF, PIEZO2, CFH, CD109, ANGPT1 in CML-resistant cases, leading to up-regulation of autophagy-, protein-ubiquitination-, stem-cell-, complement-, TGFβ- and homeostasis-pathways with specific involvement of the Tie2 and Basigin signaling-pathway. Dysregulated pathways were accompanied with low CNVs in CP-new and CP-UT-TKI-sensitive-cases with undetectable BCR-ABL-copies. High CNVs (previously reported gain of 9q34) were observed in BCR-ABL-independent and -dependent TKI, non-sensitive-CP-UT/AP-UT/B-UT and B-new samples. Further, genotyping CML-CP-UT cases with BCR-ABL 0-to-77.02%-copies, the identified, rsID239798 and rsID9475077, were associated with FAM83B, a candidate for therapeutic resistance. The presence of BCR-ABL, additional genetic-events, dysregulated-signaling-pathways and rsIDs associated with FAM83B in TKI-resistant-cases can be used to develop a signature-profile that may help in monitoring therapy."	"MicroRNA-942 mediates hepatic stellate cell activation by regulating BAMBI expression in human liver fibrosis. MicroRNA (miRNA)-mediated gene regulation contributes to liver pathophysiology, including hepatic stellate cell (HSC) activation and fibrosis progression. Here, we investigated the role of miR-942 in human liver fibrosis. The expression of miR-942, HSC activation markers, transforming growth factor-beta pseudoreceptor BMP and activin membrane-bound inhibitor (BAMBI), as well as collagen deposition, were investigated in 100 liver specimens from patients with varying degree of hepatitis B virus (HBV)-related fibrosis. Human primary HSCs and the immortalized cell line (LX2 cells) were used for functional studies. We found that miR-942 expression was upregulated in activated HSCs and correlated inversely with BAMBI expression in liver fibrosis progression. Transforming growth factor beta (TGF-β) and lipopolyssacharide (LPS), two major drivers of liver fibrosis and inflammation, induce miR-942 expression in HSCs via Smad2/3 respective NF-κB/p50 binding to the miR-942 promoter. Mechanistically, the induced miR-942 degrades BAMBI mRNA in HSCs, thereby sensitizing the cells for fibrogenic TGF-β signaling and also partly mediates LPS-induced proinflammatory HSC fate. In conclusion, the TGF-β and LPS-induced miR-942 mediates HSC activation through downregulation of BAMBI in human liver fibrosis. Our study provides new insights on the molecular mechanism of HSC activation and fibrosis."	"Differential effects of angiotensin II type I receptor blockers on reducing intraocular pressure and TGFβ signaling in the mouse retina. Angiotensin II type 1 receptor blockers (ARBs) have been investigated for their neuroprotective and intraocular pressure (IOP) lowering effects in treating glaucoma, but the reports have been inconsistent possibly because different compounds and models have been used. Here we selected three ARBs for head-to-head comparisons of their effects on IOP and transforming growth factor β (TGFβ) signaling, which is believed to play an important role in glaucoma pathogenesis. Three ARBs (losartan, irbesartan or telmisartan) or vehicle controls were administered via chow to C57BL/6J mice for up to 7 days. Drug concentrations in the eye, brain, and plasma were evaluated by liquid chromatography mass spectrometry. Cohorts of mice were randomly assigned to different treatments. IOP and blood pressure were measured before and after ARB treatment. Effects of ARBs on TGFβ signaling in the retina were evaluated by phosphorylated Smad2 (pSmad2) immunohistochemistry. Physiologically relevant concentrations of losartan, irbesartan and telmisartan were detected in eye, brain and plasma after drug administration (n = 11 mice/treatment). Blood pressure was significantly reduced by all ARBs compared to vehicle-fed controls (all p-values &lt; 0.001, n = 8-15 mice/treatment). Compared to vehicle control, IOP was significantly reduced by irbesartan (p = 0.030) and telmisartan (p = 0.019), but not by losartan (n = 14-17 mice/treatment). Constitutive pSmad2 fluorescence observed in retinal ganglion cells was significantly reduced by telmisartan (p = 0.034), but not by losartan or irbesartan (n = 3-4 mice/treatment). Administration via chow is an effective delivery method for ARBs, as evidenced by lowered blood pressure. ARBs vary in their abilities to lower IOP or reduce TGFβ signaling. Considering the significant roles of IOP and TGFβ in glaucoma pathogenesis, specific ARBs with dual effects, such as telmisartan, may be more effective than other ARBs for treating glaucoma."	"Postnatal deletion of Alk5 gene in meniscal cartilage accelerates age-dependent meniscal degeneration in mice. Activation of transforming growth factor-β (TGF-β) signaling has been used to enhance healing of meniscal degeneration in several models. However, the exact role and molecular mechanism of TGF-β signaling in meniscus maintenance and degeneration are still not understood due to the absence of in vivo evidence. In this study, we found that the expression of activin receptor-like kinases 5 (ALK5) in the meniscus was decreased with the progression of age and/or osteoarthritis induced meniscal degeneration. Col2α1 positive cells were found to be specifically distributed in the superficial and inner zones of the anterior horn, as well as the inner zone of the posterior horn in mice, indicating that Col2α1-CreER<sup>T2</sup> mice can be a used for studying gene function in menisci. Furthermore, we deleted Alk5 in Col2α1 positive cells in meniscus by administering tamoxifen. Alterations in the menisci structure were evaluated histologically. The expression levels of genes and proteins associated with meniscus homeostasis and TGF-β signaling were analyzed by quantitative real-time PCR analysis (qRT-PCR) and immunohistochemistry (IHC). Our results revealed severe and progressive meniscal degeneration phenotype in 3- and 6-month-old Alk5 cKO mice compared with Cre-negative control, including aberrantly increased hypertrophic meniscal cells, severe fibrillation, and structure disruption of meniscus. qRT-PCR and IHC results showed that disruption of anabolic and catabolic homeostasis of chondrocytes may contribute to the meniscal degeneration phenotype observed in Alk5 cKO mice. Thus, TGF-β/ALK5 signaling plays a chondro-protective role in menisci homeostasis, in part, by inhibiting matrix degradation and maintaining extracellular matrix proteins levels in meniscal tissues."	"Design, 3D QSAR modeling and docking of TGF-β type I inhibitors to target cancer. Transforming growth factor-β (TGF-β) family members plays a vital role in regulating hormonal function, bone formation, tissue remodeling, and erythropoiesis, cell growth and apoptosis. TGF-β super-family members mediate signal transduction via serine/threonine kinase receptors located on the cell membrane. Variation in expression of the TGF-β type I and II receptors in the cancer cells compromise its tumor suppressor activities which direct to oncogenic functions. The present study was aimed to screen the potent TGF-β type I inhibitors through atom based 3D-QSAR and pharmacophore modelling. For this purpose, we have chosen known TGF-β type I inhibitors from the binding database. The PHASE module of Schrodinger identified the best Pharmacophore model which includes three hydrogen bond acceptors (A), one hydrophobic region (H), and one ring (R) as the structural features. The top pharmacophore model AAAHR.27 was chosen with the R<sup>2</sup> value of 0.94 and validated externally using molecules of the test set. Moreover the AAAHR.27 model underwent virtual screening using the molecules from the NCI, ZINC and Maybridge database. The screened molecules were further filtered using molecular docking and ADME properties prediction. Additionally, the 7 lead molecules were compared with a newly identified compound &quot;SB431542&quot; (well known TGF-β type I receptor inhibitor) and Galunisertib, a small molecule inhibitor of TGF-β type I, under clinical development (phase II trials) using the docking score and other binding properties. Also a top scored screened molecule from our study has been compared and confirmed using molecular dynamic simulation studies. By this way, we have obtained 7 distinct drug-like TGF-β type I inhibitors which can be beneficial in suppressing cancers reported with up-regulation of TGF-β type I. This result highlights the guidelines for designing molecules with TGF-β Type I inhibitory properties."	"Transforming growth factor-β1 (TGF-β1) induces mouse precartilaginous stem cell differentiation through TGFRII-CK1ε-β-catenin signalling. Precartilaginous stem cells (PSCs) are adult stem cells which could self-renew or differentiate into chondrocytes to promote bone growth. In this study, we aimed to understand the role of transforming growth factor-β1 (TGF-β1) in precartilaginous stem cell (PSC) differentiation and to study the mechanisms that underlie this role. We purified PSCs from the neonatal murine perichondrial mesenchyme using immunomagnetic beads, and primary cultured them. Their phenotype was confirmed by the PSC marker fibroblast growth factor receptor-3 (FGFR-3) overexpression. TGF-β1 was added to induce PSCs differentiation. TGF-β1 increased mRNA expression of chondrogenesis-related genes (collagen type II, Sox 9 and aggrecan) in the cultured PSCs. This was abolished by TGF-β receptor II (TGFRII) and Casein kinase 1 epsilon (CK1ε) lentiviral shRNA depletion. Meanwhile, we found that TGF-β1 induced CK1ε activation, glycogen synthase kinase-3β (GSK3β) phosphorylation and β-catenin nuclear translocation in the mouse PSCs, which was almost completely blocked by TGFRII and CK1ε shRNA knockdown. Based on these results, we suggest that TGF-β1 induces CK1ε activation to promote β-catenin nuclear accumulation, which then regulates chondrogenesis-related gene transcription to eventually promote mouse PSC differentiation."	"Exploring relationships between joint hypermobility and neurodevelopment in children (4-13 years) with hereditary connective tissue disorders and developmental coordination disorder. Joint hypermobility (JH) is a common, though largely ignored physical trait with increasing clinical reverberations. A few papers suggest a link between JH and selected neurodevelopmental disorders, such as developmental coordination disorder (DCD). JH is also the hallmark of various hereditary connective tissue disorders (HCTDs). Children with HCTDs may present abnormal neurodevelopment but its manifestations remain undetermined. This study examined 23 children (group 1), aged 4-13 years, with different HCTDs (i.e., 19 with hypermobile Ehlers-Danlos syndrome (EDS)/hypermobility spectrum disorder, 3 with molecularly confirmed classical EDS, and 1 with Loeys-Dietz syndrome type 1 due to TGFBR2 mutation) and 23, age- and sex-matched children with DCD (group 2). All underwent 14 different psychometric tests exploring motor, cognitive, executive-attentive, and emotional-behavior features. In group 1, 30%, 22%, and 13% patients presented DCD (with or without dysgraphia), learning disabilities, and attention deficit-hyperactivity disorder, respectively. None had cognitive delay. In group 2, 17% patients presented generalized JH and none had HCTDs. DCD children presented more motor and coordination troubles than HCTDs patients, while quality of life of children with HCTDs resulted more deteriorated due to somatic manifestations and behavioral traits. This study presents the full overview of neurodevelopmental attributes in HCTDs, and compares with standardized tools the neurodevelopmental profile of children with DCD and HCTDs. While the high rate of neurodevelopmental comorbidities in HCTDs deserves attention, the impact of a dysfunctional connective tissue in children with a primary diagnosis of DCD needs more research."	"Preparation and evaluation of anti-renal fibrosis activity of novel truncated TGF-β receptor type II. Production of excessive transforming growth factor-beta 1 (TGF-β1) with elevated TGF-β1 activity has been implicated in renal fibrosis via renal epithelial cells activation and collagen deposition. As such, attenuating the binding of TGF-β1 to its receptor TGF-beta receptor type II (TGF-βRII) in TGF-β1-dependent signaling is an attractive target for the control of renal fibrosis. Here, we verified the interaction between novel truncated human TGF-βRII (thTβRII, Thr23-Gln166) and TGF-β1, prepared thTβRII in Escherichia coli, and assessed the effects of thTβRII on TGF-β1-induced human kidney epithelial cells (HK-2) and unilateral ureteral obstruction (UUO) model of renal fibrosis. Our data showed that thTβRII accounted for up to 20% of the total protein and 40% of the inclusion bodies of whole cell lysates under the optimal conditions (0.8 mM IPTG and 25°C for 6 H). Most of the expressed protein in inclusion body was refolded by dialysis refolding procedures and purified by Ni<sup>2+</sup> -IDA affinity chromatography. Furthermore, thTβRII decreased type I collagen and α-smooth muscle actin protein expression in TGF-β1-induced HK-2 cells, and ameliorated kidney morphology and fibrotic responses in fibrosis animal. These findings indicate that thTβRII holds great promise for developing new treatments for renal fibrosis."	"Genetic diagnosis of acute aortic dissection in South China Han population using next-generation sequencing. Acute aortic dissection (AAD) is a clinically &quot;silent,&quot; but emergent and life-threatening cardiovascular disease, and hereditary factors play an important etiologic role in the development of AAD. The purposes of this study are to definitize the diagnostic yield of 59 AAD patients, investigate the molecular pathological spectrum of AAD by NGS, and explore the future preclinical prospects of genetic diagnosis on AAD high-risk groups. We performed next-generation sequencing (NGS) based on screening of the 69 currently aortic dissections/aneurysms-associated genes on 59 sporadic AAD samples from South China. A Kaplan-Meier survival curve was constructed to compare the event-free survival depending on variant number. Overall, 67 variants were detected in 39 patients, among which 4 patients were identified with pathogenic variants and 13 patients were diagnosed with likely pathogenic variants. Seventeen genotype positive patients were identified in aggregate, and the diagnostic yield of our study is 28.8%. All genotype-positive variants were distributed in 11 genes, FBN1 variants were in the largest number among genotype-positive variants, which were detected for 4 times, ACTA2 for 3 times, ABCC6 and TGFBR1 twice, and NOS3, MYLK, XYLT1, TIMP4, TGFBR2, CNTN3, and PON1 once. Individuals with three or more variants showed shorter mean event-free survival than patients with fewer variants. Our observations broaden the genetic pathological spectrum of AAD. Furthermore, our research uncovered two susceptibility genes FBN1 and ACTA2 for Stanford type A AAD patients. Finally, our study concluded that the number of variants an individual harbored was an important consideration in risk stratification for individualized prediction and disease diagnosis."	"Acetyl-11-keto-β-boswellic acid ameliorates renal interstitial fibrosis via Klotho/TGF-β/Smad signalling pathway. Acetyl-11-keto-β-boswellic acid (AKBA), an active triterpenoid compound from the extract of Boswellia serrate, has been reported previously in our group to alleviate fibrosis in vascular remodelling. This study aimed to elucidate the in vivo and in vitro efficacy and mechanism of AKBA in renal interstitial fibrosis. The experimental renal fibrosis was produced in C57BL/6 mice via unilateral ureteral obstruction (UUO). Hypoxia-induced HK-2 cells were used to imitate the pathological process of renal fibrosis in vitro. Results showed that the treatment of AKBA significantly alleviated UUO-induced impairment of renal function and improved the renal fibrosis by decreasing the expression of TGF-β1, α-SMA, collagen I and collagen IV in UUO kidneys. In hypoxia-induced HK-2 cells, AKBA displayed remarkable cell protective effects and anti-fibrotic properties by increasing the cell viability, decreasing the lactate dehydrogenase (LDH) release and inhibiting fibrotic factor expression. Moreover, in obstructed kidneys and HK-2 cells, AKBA markedly down-regulated the expression of TGFβ-RI, TGFβ-RII, phosphorylated-Smad2/3 (p-Smad2/3) and Smad4 in a dose-dependent fashion while up-regulated the expression of Klotho and Smad7 in the same manner. In addition, the effects of AKBA on the Klotho/TGF-β/Smad signalling were reversed by transfecting with siRNA-Klotho in HK-2 cells. In conclusion, our findings provide evidence that AKBA can effectively protect kidney against interstitial fibrosis, and this renoprotective effect involves the Klotho/TGF-β/Smad signalling pathway. Therefore, AKBA could be considered as a promising candidate drug for renal interstitial fibrosis."	"Lnc-SNHG1 Activates the TGFBR2/SMAD3 and RAB11A/Wnt/β-Catenin Pathway by Sponging MiR-302/372/373/520 in Invasive Pituitary Tumors. Long noncoding RNAs (lncRNAs) are critical regulators in various diseases including human cancer and could function as competing endogenous RNAs (ceRNAs) to regulate microRNAs (miRNAs). Quantitative real-time PCR (qRT-PCR) was used to analyze the expression of lnc-SNHG1 and miR-302/372/373/520 in pituitary tumor tissues and cell lines. Cell proliferation was investigated using MTT and cell count assays. The mechanisms by which lnc-SNHG1 affects pituitary tumor progression were investigated using Western blot assays, transwell migration assays, immunohistochemistry, immunofluorescence, luciferase reporter assays, tumor xenografts, and flow cytometry Results: We found that lnc-SNHG1 was overexpressed in invasive pituitary tumor tissues and cell lines. Ectopic expression of lnc-SNHG1 promoted cell proliferation, migration, and invasion, as well as the epithelial-mesenchymal transition (EMT), by affecting the cell cycle and cell apoptosis in vitro and tumor growth in vivo. Further study indicated that overexpression of lnc-SNHG1 markedly inhibited the expression of miR-302/372/373/520 (miRNA-pool) which is down-regulated in invasive pituitary tumor cells. Moreover, overexpression of lnc-SNHG1 significantly promoted the expression of TGFBR2 and RAB11A, the direct targets of miR-302/372/373/520. Finally, lnc-SNHG1 activates the TGFBR2/SMAD3 and RAB11A/Wnt/β-catenin pathways in pituitary tumor cells via sponging miR-302/372/373/520. Our data suggest that lnc-SNHG1 promotes the progression of pituitary tumors and is a potential therapeutic target for invasive pituitary tumor."	"LY2109761 reduces TGF-β1-induced collagen production and contraction in hypertrophic scar fibroblasts. Hypertrophic scars (HS) are fibro-hyperproliferative dermal lesions with effusive continuous accumulation of extracellular matrix components, particularly collagen. They usually occur after dermal injury in genetically susceptible individuals and cause both physical and psychological distress for the affected individuals. Transforming growth factor-β1 (TGF-β1) is known to mediate wound healing process by regulating cell differentiation, collagen production and extracellular matrix degradation. The sustained high expression of TGF-β1 is believed to result in the formation of hypertrophic scars. Inhibition of TGF-β1 signaling pathway may represent one of effective strategies for limiting excessive scarring. LY2109761, an orally active TβRI/II kinase dual inhibitor, has been previously reported that it had inhibitory effects on carcinomas and attenuates Radiation-induced pulmonary murine fibrosis. Our results revealed that LY2109761 reduced TGF-β1-induced collagen production and α-smooth muscle actin (α-SMA) expression, and attenuated TGF-β1-induced cell contraction in hypertrophic scar fibroblasts. The data from this study provide evidence supporting the potential use of LY2109761 as a novel treatment for hypertrophic scars."	"TGF-β Signaling-Related Genes and Thoracic Aortic Aneurysms and Dissections. Transforming growth factor-β (TGF)-β signaling plays a crucial role in the development and maintenance of various organs, including the vasculature. Accordingly, the mutations in TGF-β signaling pathway-related genes cause heritable disorders of the connective tissue, such as Marfan syndrome (MFS), Loeys-Dietz syndrome (LDS), and Shprintzen-Goldberg syndrome (SGS), and these syndromes may affect skeletal, ocular, pulmonary, and cardiovascular systems. Aortic root aneurysms are common problems that can result in aortic dissection or rupture, which is the leading cause of sudden death in the natural history of MFS and LDS, and recent improvements in surgical treatment have improved life expectancy. However, there is currently no genotype-specific medical treatment. Accumulating evidence suggest that not only structural weakness of connective tissue but also increased TGF-β signaling contributes to the complicated pathogenesis of aortic aneurysm formation, but a comprehensive understanding of governing molecular mechanisms remains lacking. Inhibition of angiotensin II receptor signaling and endothelial dysfunction have gained attention as a possible MFS treatment strategy, but interactions with TGF-β signaling remain elusive. Heterozygous loss-of-function mutations in TGF-β receptors 1 and 2 (TGFBR1 and TGFBR2) cause LDS, but TGF-β signaling is activated in the aorta (referred to as the TGF-β paradox) by mechanisms yet to be elucidated. In this review, we present and discuss the current understanding of molecular mechanisms responsible for aortopathies of MFS and related disorders."	"Survival Outcomes by TP53 Mutation Status in Metastatic Breast Cancer. We sought to determine the significant genomic alterations in patients with metastatic breast cancer (MBC), and survival outcomes in common genotypes. High-depth next generation sequencing was performed for 202 genes in tumor and normal DNA from 257 patients with MBC, including 165 patients with ER/PR+ HER2- (hormone receptor positive, HR+ positive), 32 patients with HER2+ and 60 patients with triple negative (ER/PR/HER2-) cancer. Kaplan Meier survival analysis was performed in our discovery set, in breast cancer patients analyzed in The Cancer Genome Atlas, and in a separate cohort of 98 patients with MBC who underwent clinical genomic testing. Significantly mutated genes (SMGs) varied by histology and tumor subtype, but TP53 was a SMG in all three subtypes. The most SMGs in HR+ patients included PIK3CA (32%), TP53 (29%), GATA3 (15%), CDH1 (8%), MAP3K1 (8%), PTEN (5%), TGFBR2 (4%), AKT1 (4%), and MAP2K4 (4%). TP53 mutations were associated with shorter recurrence-free survival (P=0.004), progression-free survival (P=0.00057) and overall survival (P=0.003). Further, TP53 status was prognostic among HR+ patients with PIK3CA mutations. TP53 mutations were also associated with poorer overall survival in the 442 HR+ breast cancer patients in the TCGA (P=0.042) and in an independent set of 96 HR+ MBC who underwent clinical sequencing (P=0.0004). SMGs differ by tumor subtype but TP53 is significantly mutated in all three breast cancer subtypes. TP53 mutations are associated with poor prognosis in HR+ breast cancer. TP53 mutations should be considered in the design and interpretation of precision oncology trials."	"CtBP represses Dpp-dependent Mad activation during Drosophila eye development. Complex networks of signaling pathways maintain the correct balance between positive and negative growth signals, ensuring that tissues achieve proper sizes and differentiation pattern during development. In Drosophila, Dpp, a member of the TGFβ family, plays two main roles during larval eye development. In the early eye primordium, Dpp promotes growth and cell survival, but later on, it switches its function to induce a developmentally-regulated cell cycle arrest in the G1 phase and neuronal photoreceptor differentiation. To advance in the identification and characterization of regulators and targets of Dpp signaling required for retinal development, we carried out an in vivo eye-targeted double-RNAi screen to identify punt (Type II TGFβ receptor) interactors. Using a set of 251 genes associated with eye development, we identified CtBP, Dad, Ago and Brk as punt genetic interactors. Here, we show that downregulation of Ago, or conditions causing increased tissue growth including overexpression of Myc or CyclinD-Cdk4 are sufficient to partially rescue punt-dependent growth and photoreceptor differentiation. Interestingly, we show a novel role for the transcriptional co-repressor CtBP in inhibiting Dpp-dependent Mad activation by phosphorylation, downstream or in parallel to Dad, the inhibitory Smad. Furthermore, CtBP downregulation activates JNK signaling pathway, implying a complex regulation of signaling pathways by CtBP during eye development."	"Artificial MicroRNA-Mediated Tgfbr2 and Pdgfrb Co-Silencing Ameliorates Carbon Tetrachloride-Induced Hepatic Fibrosis in Mice. Hepatic stellate cells (HSCs) are the primary cell type responsible for liver fibrogenesis. Transforming growth factor beta 1 (TGF-β1) and platelet-derived growth factor (PDGF) are key profibrotic cytokines that regulate HSC activation and proliferation with functional convergence. Dual RNA interference against their receptors may achieve therapeutic effects. A novel RNAi strategy based on HSC-specific GFAP promoter-driven and lentiviral-expressed artificial microRNAs (amiRNAs) was devised that consists of an microRNA-30a backbone and effective shRNAs against mouse Pdgfrβ and Tgfbr2. Then, its antifibrotic efficacy was tested in primary and cultured HSCs and in mice affected with carbon tetrachloride-induced hepatic fibrosis. The study shows that amiRNA-mediated Pdgfrβ and Tgfbr2 co-silencing inhibits HSC activation and proliferation. After recombinant lentiviral particles were delivered into the liver via tail-vein injection, therapeutic amiRNAs were preferentially expressed in HSCs and efficiently co-knocked down in situ Tgfbr2 and Pdgfrβ expression, which correlates with downregulated expression of target or effector genes of their signaling, which include Pai-1, P70S6K, and D-cyclins. amiRNA-based HSC-specific co-silencing of Tgfbr2 and Pdgfrβ significantly suppressed hepatic expression of fibrotic markers α-Sma and Col1a1, extracellular matrix regulators Mmps and Timp1, and phenotypically ameliorated liver fibrosis, as indicated by reductions in serum alanine aminotransferase activity, collagen deposition, and α-Sma-positive staining. The findings provide proof of concept for the use of amiRNA-mediated co-silencing of two profibrogenic pathways in liver fibrosis treatment and highlight the therapeutic potential of concatenated amiRNAs for gene therapy."	"Signatures of photo-aging and intrinsic aging in skin were revealed by transcriptome network analysis. There are various factors that alter physiological characteristics in skin. Elucidating the underlying mechanism of transcriptional alterations by intrinsic and extrinsic factors may lead us to understand the aging process of skin. To identify the transcriptomic changes of the aging skin, we analyzed publicly available RNA sequencing data from Genotype-Tissue Expression (GTEx) project. GTEx provided RNA sequencing data of suprapubic (n=228) and lower leg (n=349) skins, which are photo-protected and photo-damaged. Using differentially expressed gene analysis and weighted gene co-expression network analysis, we characterized transcriptomic changes due to UV exposure and aging. Genes involved in skin development such as epidermal differentiation complex component (SPRR and LCE families), vasculature development (TGFBR1, TGFBR2, TGFBR3, KDR, FGF2, and VEGFC), and matrix metalloproteinase (MMP2, MMP3, MMP8, MMP10, and MMP13) were up-regulated by UV exposure. Also, down-regulated lipid metabolism and mitochondrial biogenesis were observed in photo-damaged skin. Moreover, wound healing process was universally down-regulated in suprapubic and lower leg with aging and further down-regulation of lipid metabolism and up-regulation of vasculature development were found as photo-aging signatures. In this study, dynamic transcriptomic alterations were observed in aged skin. Hence, our findings may help to discover a potential therapeutic target for skin rejuvenation."	"A Transforming Growth Factor-β and H19 Signaling Axis in Tumor-Initiating Hepatocytes That Regulates Hepatic Carcinogenesis. Functions of transforming growth factor-β (TGF-β) in the liver vary depending on specific cell types and their temporal response to TGF-β during different stages of hepatocarcinogenesis (HCG). Through analysis of tumor tissues from hepatocellular carcinoma (HCC) patients, we were able to cluster hepatic epithelial cell-derived TGF-β gene signatures in association with distinct clinical prognoses. To delineate the role of hepatic epithelial TGF-β signaling in HCC development, we used an experimental system in which tumor-initiating hepatocytes (TICs) were isolated from TGF-β receptor II floxed mice (Tgfbr2<sup>fl/fl</sup> ) and transplanted into syngeneic C57BL/6J mice by splenic injection. Recipient mice were then administered Cre-expressing adenovirus (Ad-Cre) to inactivate Tgfbr2 in transplanted TICs. After latency, Tgfbr2-inactivated TICs formed larger and more tumor nodules in recipient livers compared to TICs without Tgfbr2 inactivation. In vitro analyses revealed that treatment of cultured TICs with TGF-β inhibited expression of progenitor cell factors (including SRY (sex determining region Y)-box 2 [Sox2]). RNA sequencing (RNA-seq) analysis identified H19 as one of the most up-regulated long noncoding RNA (lncRNA) in association with Tgfbr2 inactivation in TICs. Tgfbr2 inactivation by Ad-Cre led to a 5-fold increase of H19 expression in TICs. Accordingly, TGF-β treatment reduced H19 expression. We observed that forced overexpression of Sox2 in TICs increased transcription of H19, whereas knockdown of Sox2 decreased it. Furthermore, depletion of H19 reduced the progenitor property of TICs in vitro and decreased their tumorigenic potential in vivo. Finally, we observed a low level of H19 mRNA expression in human HCC tissues from patients with the epithelial TGF-β gene signature in association with favorable prognosis. Conclusion: Our findings describe a TGF-β and H19 signaling axis by Sox2 in TICs that importantly regulates HCG."	"Synthesis of pyrazolo[3,4-d]pyrimidin-4(5H)-ones tethered to 1,2,3-triazoles and their evaluation as potential anticancer agents. A series of hybrid aza heterocycles containing pyrazolo[3,4-d]pyrimidin-4(5H)-ones tethered to 1,2,3-triazole scaffold were synthesized from 1,3-dipolar cycloaddition reaction of pyrazolopyrimidinone based alkyne with azides using Cu(II) catalyst in presence of sodium ascorbate and evaluated for their anticancer efficacy in vitro against C6 rat and U87 human glioma cell lines. These compounds induced a concentration dependent inhibition of C6 rat and U87 human glioma cell proliferation. Compound 5f arrested the cells at S-phase of the cell cycle and induced apoptosis in U87 GBM cell lines. Further, apoptosis was evidenced by the cleavage of Caspase-3, PARP and up regulation of p53. In silico docking studies reveal that the compounds 5a, 5f and 5l were more effective in binding with TGFBR2 than other compounds."	"TGFβ1 regulates HGF-induced cell migration and hepatocyte growth factor receptor MET expression via C-ets-1 and miR-128-3p in basal-like breast cancer. Breast cancer is the most common cancer in women worldwide. The tumor microenvironment contributes to tumor progression by inducing cell dissemination from the primary tumor and metastasis. TGFβ signaling is involved in breast cancer progression and is specifically elevated during metastatic transformation in aggressive breast cancer. In this study, we performed genomewide correlation analysis of TGFBR2 expression in a panel of 51 breast cancer cell lines and identified that MET is coregulated with TGFBR2. This correlation was confirmed at the protein level in breast cancer cell lines and human tumor tissues. Flow cytometric analysis of luminal and basal-like breast cancer cell lines and examination of 801 tumor specimens from a prospective cohort of breast cancer patients using reverse phase protein arrays revealed that expression of TGFBR2 and MET is increased in basal-like breast cancer cell lines, as well as in triple-negative breast cancer tumor tissues, compared to other subtypes. Using real-time cell analysis technology, we demonstrated that TGFβ1 triggered hepatocyte growth factor (HGF)-induced and MET-dependent migration in vitro. Bioinformatic analysis predicted that TGFβ1 induces expression of C-ets-1 as a candidate transcription factor regulating MET expression. Indeed, TGFβ1-induced expression of ETS1 and breast cancer cell migration was blocked by knockdown of ETS1. Further, we identified that MET is a direct target of miR-128-3p and that this miRNA is negatively regulated by TGFβ1. Overexpression of miR-128-3p reduced MET expression and abrogated HGF-induced cell migration of invasive breast cancer cells. In conclusion, we have identified that TGFβ1 regulates HGF-induced and MET-mediated cell migration, through positive regulation of C-ets-1 and negative regulation of miR-128-3p expression in basal-like breast cancer cell lines and in triple-negative breast cancer tissue."	"Proprotein convertase furin inhibits matrix metalloproteinase 13 in a TGFβ-dependent manner and limits osteoarthritis in mice. Cartilage loss in osteoarthritis (OA) results from altered local production of growth factors and metalloproteases (MMPs). Furin, an enzyme involved in the protein maturation of MMPs, might regulate chondrocyte function. Here, we tested the effect of furin on chondrocyte catabolism and the development of OA. In primary chondrocytes, furin reduced the expression of MMP-13, which was reversed by treatment with the furin inhibitor α1-PDX. Furin also promoted the activation of Smad3 signaling, whereas activin receptor-like kinase 5 (ALK5) knockdown mitigated the effects of furin on MMP-13 expression. Mice underwent destabilization of the medial meniscus (DMM) to induce OA, then received furin (1 U/mice), α1-PDX (14 µg/mice) or vehicle. In mice with DMM, the OA score was lower with furin than vehicle treatment (6.42 ± 0.75 vs 9.16 ± 0.6, p &lt; 0.01), and the number of MMP-13(+) chondrocytes was lower (4.96 ± 0.60% vs 20.96 ± 8.49%, p &lt; 0.05). Moreover, furin prevented the increase in ALK1/ALK5 ratio in cartilage induced by OA. Conversely, α1-PDX had no effect on OA cartilage structure. These results support a protective role for furin in OA by maintaining ALK5 receptor levels and reducing MMP-13 expression. Therefore, furin might be a potential target mediating the development of OA."	"The TGFβ-signaling pathway and colorectal cancer: associations between dysregulated genes and miRNAs. The TGFβ-signaling pathway plays an important role in the pathogenesis of colorectal cancer (CRC). Loss of function of several genes within this pathway, such as bone morphogenetic proteins (BMPs) have been seen as key events in CRC progression. In this study we comprehensively evaluate differential gene expression (RNASeq) of 81 genes in the TGFβ-signaling pathway and evaluate how dysregulated genes are associated with miRNA expression (Agilent Human miRNA Microarray V19.0). We utilize paired carcinoma and normal tissue from 217 CRC cases. We evaluate the associations between differentially expressed genes and miRNAs and sex, age, disease stage, and survival months. Thirteen genes were significantly downregulated and 14 were significantly upregulated after considering fold change (FC) of &gt; 1.50 or &lt; 0.67 and multiple comparison adjustment. Bone morphogenetic protein genes BMP5, BMP6, and BMP2 and growth differentiation factor GDF7 were downregulated. BMP4, BMP7, INHBA (Inhibin beta A), TGFBR1, TGFB2, TGIF1, TGIF2, and TFDP1 were upregulated. In general, genes with the greatest dysregulation, such as BMP5 (FC 0.17, BMP6 (FC 0.25), BMP2 (FC 0.32), CDKN2B (FC 0.32), MYC (FC 3.70), BMP7 (FC 4.17), and INHBA (FC 9.34) showed dysregulation in the majority of the population (84.3, 77.4, 81.1, 80.2, 82.0, 51.2, and 75.1% respectively). Four genes, TGFBR2, ID4, ID1, and PITX2, were un-associated or slightly upregulated in microsatellite-stable (MSS) tumors while downregulated in microsatellite-unstable (MSI) tumors. Eight dysregulated genes were associated with miRNA differential expression. E2F5 and THBS1 were associated with one or two miRNAs; RBL1, TGFBR1, TGIF2, and INHBA were associated with seven or more miRNAs with multiple seed-region matches. Evaluation of the joint effects of mRNA:miRNA identified interactions that were stronger in more advanced disease stages and varied by survival months. These data support an interaction between miRNAs and genes in the TGFβ-signaling pathway in association with CRC risk. These interactions are associated with unique clinical characteristics that may provide targets for further investigations."	"Stepwise approach to SNP-set analysis illustrated with the Metabochip and colorectal cancer in Japanese Americans of the Multiethnic Cohort. Common variants have explained less than the amount of heritability expected for complex diseases, which has led to interest in less-common variants and more powerful approaches to the analysis of whole-genome scans. Because of low frequency (low statistical power), less-common variants are best analyzed using SNP-set methods such as gene-set or pathway-based analyses. However, there is as yet no clear consensus regarding how to focus in on potential risk variants following set-based analyses. We used a stepwise, telescoping approach to analyze common- and rare-variant data from the Illumina Metabochip array to assess genomic association with colorectal cancer (CRC) in the Japanese sub-population of the Multiethnic Cohort (676 cases, 7180 controls). We started with pathway analysis of SNPs that are in genes and pathways having known mechanistic roles in colorectal cancer, then focused on genes within the pathways that evidenced association with CRC, and finally assessed individual SNPs within the genes that evidenced association. Pathway SNPs downloaded from the dbSNP database were cross-matched with Metabochip SNPs and analyzed using the logistic kernel machine regression approach (logistic SNP-set kernel-machine association test, or sequence kernel association test; SKAT) and related methods. The TGF-β and WNT pathways were associated with all CRC, and the WNT pathway was associated with colon cancer. Individual genes demonstrating the strongest associations were TGFBR2 in the TGF-β pathway and SMAD7 (which is involved in both the TGF-β and WNT pathways). As partial validation of our approach, a known CRC risk variant in SMAD7 (in both the TGF-β and WNT pathways: rs11874392) was associated with CRC risk in our data. We also detected two novel candidate CRC risk variants (rs13075948 and rs17025857) in TGFBR2, a gene known to be associated with CRC risk. A stepwise, telescoping approach identified some potentially novel risk variants associated with colorectal cancer, so it may be a useful method for following up on results of set-based SNP analyses. Further work is required to assess the statistical characteristics of the approach, and additional applications should aid in better clarifying its utility."	"Generation of Knock-out Primary and Expanded Human NK Cells Using Cas9 Ribonucleoproteins. CRISPR/Cas9 technology is accelerating genome engineering in many cell types, but so far, gene delivery and stable gene modification have been challenging in primary NK cells. For example, transgene delivery using lentiviral or retroviral transduction resulted in a limited yield of genetically-engineered NK cells due to substantial procedure-associated NK cell apoptosis. We describe here a DNA-free method for genome editing of human primary and expanded NK cells using Cas9 ribonucleoprotein complexes (Cas9/RNPs). This method allowed efficient knockout of the TGFBR2 and HPRT1 genes in NK cells. RT-PCR data showed a significant decrease in gene expression level, and a cytotoxicity assay of a representative cell product suggested that the RNP-modified NK cells became less sensitive to TGFβ. Genetically modified cells could be expanded post-electroporation by stimulation with irradiated mbIL21-expressing feeder cells."	"SMAD4 Prevents Flow Induced Arteriovenous Malformations by Inhibiting Casein Kinase 2. Hereditary hemorrhagic telangiectasia (HHT) is an inherited vascular disorder that causes arteriovenous malformations (AVMs). Mutations in the genes encoding Endoglin ( ENG) and activin-receptor-like kinase 1 ( AVCRL1 encoding ALK1) cause HHT type 1 and 2, respectively. Mutations in the SMAD4 gene are present in families with juvenile polyposis-HHT syndrome that involves AVMs. SMAD4 is a downstream effector of transforming growth factor-β (TGFβ)/bone morphogenetic protein (BMP) family ligands that signal via activin-like kinase receptors (ALKs). Ligand-neutralizing antibodies or inducible, endothelial-specific Alk1 deletion induce AVMs in mouse models as a result of increased PI3K (phosphatidylinositol 3-kinase)/AKT (protein kinase B) signaling. Here we addressed if SMAD4 was required for BMP9-ALK1 effects on PI3K/AKT pathway activation. The authors generated tamoxifen-inducible, postnatal, endothelial-specific Smad4 mutant mice ( Smad4<sup>iΔEC</sup>). We found that loss of endothelial Smad4 resulted in AVM formation and lethality. AVMs formed in regions with high blood flow in developing retinas and other tissues. Mechanistically, BMP9 signaling antagonized flow-induced AKT activation in an ALK1- and SMAD4-dependent manner. Smad4<sup>iΔEC</sup> endothelial cells in AVMs displayed increased PI3K/AKT signaling, and pharmacological PI3K inhibitors or endothelial Akt1 deletion both rescued AVM formation in Smad4<sup>iΔEC</sup> mice. BMP9-induced SMAD4 inhibited casein kinase 2 ( CK2) transcription, in turn limiting PTEN phosphorylation and AKT activation. Consequently, CK2 inhibition prevented AVM formation in Smad4<sup>iΔEC</sup> mice. Our study reveals SMAD4 as an essential effector of BMP9-10/ALK1 signaling that affects AVM pathogenesis via regulation of CK2 expression and PI3K/AKT1 activation."	"miR-130a and miR-145 reprogram Gr-1<sup>+</sup>CD11b<sup>+</sup> myeloid cells and inhibit tumor metastasis through improved host immunity. Tumor-derived soluble factors promote the production of Gr-1<sup>+</sup>CD11b<sup>+</sup> immature myeloid cells, and TGFβ signaling is critical in their immune suppressive function. Here, we report that miR-130a and miR-145 directly target TGFβ receptor II (TβRII) and are down-regulated in these myeloid cells, leading to increased TβRII. Ectopic expression of miR-130a and miR-145 in the myeloid cells decreased tumor metastasis. This is mediated through a downregulation of type 2 cytokines in myeloid cells and an increase in IFNγ-producing cytotoxic CD8 T lymphocytes. miR-130a- and miR-145-targeted molecular networks including TGFβ and IGF1R pathways were correlated with higher tumor stages in cancer patients. Lastly, miR-130a and miR-145 mimics, as well as IGF1R inhibitor NT157 improved anti-tumor immunity and inhibited metastasis in preclinical mouse models. These results demonstrated that miR-130a and miR-145 can reprogram tumor-associated myeloid cells by altering the cytokine milieu and metastatic microenvironment, thus enhancing host antitumor immunity."	"Thymosin β4 suppresses CCl4 -induced murine hepatic fibrosis by down-regulating transforming growth factor β receptor-II. The present study aimed to clarify the effects of thymosin β4 (Tβ4) on CCl4 -induced hepatic fibrosis in mice and to further explore the underlying mechanisms. Expression of Tβ4 in fibrotic liver tissues was assessed by a quantitative real time-reverse transcriptase polymerase chain reaction and immunohistochemistry. The effects of intraperitoneal adeno-associated virus-Tβ4 (AAV-Tβ4) on CCl4 -induced hepatic fibrosis were observed by the evaluation of collagen deposition, hepatic stellate cell (HSC) activation and pro-fibrotic cytokine expression. In vitro tests with HSCs and hepatocytes were performed to confirm the effects of Tβ4. The expression of Tβ4 was down-regulated in fibrotic mouse livers but was rapidly up-regulated by CCl4 -induced acute injury. AAV-Tβ4 pre-treatment significantly attenuated liver injury, collagen deposition, HSC activation and pro-fibrotic cytokine over-expression, such as transforming growth factor β1 (TGF-β1), platelet-derived growth factor B (PDGF-B), connective tissue growth factor (CTGF) and plasminogen activator inhibitor-1 (PAI-1) in CCl4 -intoxicated mouse livers. In vitro experiments showed that Tβ4 suppressed HSC proliferation, blunted TGF-β1-induced HSC activation and reduced TGF-β1-induced TGF-β1, PDGF-B, CTGF and PAI-1 expression in both HSCs and hepatocytes. Ectopic Tβ4 ameliorated the over-expression of TGF-β receptor-II (TGF-βRII) in the fibrotic mouse livers. Exogenous Tβ4 down-regulated TGF-βRII expression, whereas neutralizing endogenous extracellular Tβ4 with a specific antibody up-regulated TGF-βRII expression in cultured HSCs and hepatocytes. Tβ4 possesses anti-fibrotic activity in the liver, which is attributable, at least partly, to down-regulating TGF-βRII and thereby blunting TGF-β1-mediated fibrogenetic signaling in both HSCs and hepatocytes."	"A system-based analysis of the genetic determinism of udder conformation and health phenotypes across three French dairy cattle breeds. Using GWAS to identify candidate genes associated with cattle morphology traits at a functional level is challenging. The main difficulty of identifying candidate genes and gene interactions associated with such complex traits is the long-range linkage disequilibrium (LD) phenomenon reported widely in dairy cattle. Systems biology approaches, such as combining the Association Weight Matrix (AWM) with a Partial Correlation in an Information Theory (PCIT) algorithm, can assist in overcoming this LD. Used in a multi-breed and multi-phenotype context, the AWM-PCIT could aid in identifying udder traits candidate genes and gene networks with regulatory and functional significance. This study aims to use the AWM-PCIT algorithm as a post-GWAS analysis tool with the goal of identifying candidate genes underlying udder morphology. We used data from 78,440 dairy cows from three breeds and with own phenotypes for five udder morphology traits, five production traits, somatic cell score and clinical mastitis. Cows were genotyped with medium (50k) or low-density (7 to 10k) chips and imputed to 50k. We performed a within breed and trait GWAS. The GWAS showed 9,830 significant SNP across the genome (p &lt; 0.05). Five thousand and ten SNP did not map a gene, and 4,820 SNP were within 10-kb of a gene. After accounting for 1SNP:1gene, 3,651 SNP were within 10-kb of a gene (set1), and 2,673 significant SNP were further than 10-kb of a gene (set2). The two SNP sets formed 6,324 SNP matrix, which was fitted in an AWM-PCIT considering udder depth/ development as the key trait resulting in 1,013 genes associated with udder morphology, mastitis and production phenotypes. The AWM-PCIT detected ten potential candidate genes for udder related traits: ESR1, FGF2, FGFR2, GLI2, IQGAP3, PGR, PRLR, RREB1, BTRC, and TGFBR2."	"Expression of Müllerian-Inhibiting Substance/Anti-Müllerian Hormone Type II Receptor in the Human Theca Cells. Müllerian-inhibiting substance/anti-Müllerian hormone (MIS/AMH) is produced in the ovarian granulosa cells, and it is believed to inhibit ovarian folliculogenesis and steroidogenesis in women of reproductive age. To investigate the expression of MIS/AMH type II receptor (MISRII/AMHRII) that binds MIS/AMH in the ovaries of reproductive-age women; to identify the exact targets of MIS/AMH. Laboratory study using human ovarian tissue. University hospital. Tissue samples from 25 patients who had undergone ovarian surgery. The segregation of ovarian granulosa and theca cells by laser microdissection was followed by RT-PCR, analyzing MISRII/AMHRII mRNA expression. Afterward, in situ hybridization and immunohistochemistry were performed to determine the localization of MISRII/AMHRII mRNA and protein expression. MISRII/AMHRII mRNA expression by RT-PCR, in situ hybridization, and immunohistochemistry. MISRII/AMHRII were expressed in granulosa and theca cells of preantral and antral follicles. The granulosa cells showed stronger MISRII/AMHRII expression than theca cells. MISRII/AMHRII mRNA staining of granulosa and theca cells in large antral follicles, early atretic follicles, and corpus luteum waned but were still detected weakly, showing higher expression in theca cells than in granulosa cells. However, MISRII/AMHRII protein in the granulosa layer of the atretic follicle and corpus luteum could not be assessed. As MISRII/AMHRII is expressed in both granulosa and theca cells, this indicates that MIS/AMH, produced in the granulosa cells, is active in the theca cells as well. MIS/AMH is most likely actively involved not only in the autocrine and endocrine processes but also in the paracrine processes involving theca cells."	"Hedgehog-GLI signaling in Foxd1-positive stromal cells promotes murine nephrogenesis via TGFβ signaling. Normal kidney function depends on the proper development of the nephron: the functional unit of the kidney. Reciprocal signaling interactions between the stroma and nephron progenitor compartment have been proposed to control nephron development. Here, we show that removal of hedgehog intracellular effector smoothened (Smo-deficient mutants) in the cortical stroma results in an abnormal renal capsule, and an expanded nephron progenitor domain with an accompanying decrease in nephron number via a block in epithelialization. We show that stromal-hedgehog-Smo signaling acts through a GLI3 repressor. Whole-kidney RNA sequencing and analysis of FACS-isolated stromal cells identified impaired TGFβ2 signaling in Smo-deficient mutants. We show that neutralization and knockdown of TGFβ2 in explants inhibited nephrogenesis. In addition, we demonstrate that concurrent deletion of Tgfbr2 in stromal and nephrogenic cells in vivo results in decreased nephron formation and an expanded nephrogenic precursor domain similar to that observed in Smo-deficient mutant mice. Together, our data suggest a mechanism whereby a stromal hedgehog-TGFβ2 signaling axis acts to control nephrogenesis."	"Protective effect of skin-derived precursors on photoaging in nude mice. Currently, innovative methods to prevent photoaging are needed. Skin-derived precursors (SKP) have been shown to play a crucial role in resisting UVB-induced apoptosis in vitro. The objective of this study was to explore the effect of SKP on preventing skin photoaging in vivo. Skin-derived precursors from neonatal BALB/c mice were isolated, identified and intradermally transplanted with a PKH26 label to track their survival. These were then injected at different concentrations into the buttock dermis of nude mice at 2-weekly intervals before UV irradiation. Photographs, assessment of live skin surface, histology with quantitative real-time polymerase chain reaction and immunohistochemistry were used to evaluate the impact of SKP on wrinkles and other relevant indicators of skin photoaging. SKP exhibited a sphere-like structure and could survive for at least 2 weeks after intradermal transplantation. A large dose of SKP transplantation (10<sup>5</sup> SKP +UV) at 2-weekly intervals were able to ameliorate coarse UV-induced wrinkles. Moreover, the skin smoothness value, dermal thickness and collagen percentage were significantly increased in mice that received a large dose of SKP (10<sup>5</sup> SKP +UV). UV radiation induced the mRNA expression of MMP-13 and decreased the mRNA and protein expression of TβRII, but these effects were diminished by SKP transplantation. The transplantation of SKP could increase the mRNA of TIMP-1. We found that transplanted SKP exert a beneficial impact on preventing UV-induced wrinkles in vivo, suggesting that SKP transplantation is a promising candidate for preventing photoaging."	"Periostin promotes liver fibrogenesis by activating lysyl oxidase in hepatic stellate cells. Liver fibrosis arises from dysregulated wound healing due to persistent inflammatory hepatic injury. Periostin is a nonstructural extracellular matrix protein that promotes organ fibrosis in adults. Here, we sought to identify the molecular mechanisms in periostin-mediated hepatic fibrosis. Hepatic fibrosis in periostin<sup>-/-</sup> mice was attenuated as evidenced by significantly reduced collagen fibril density and liver stiffness compared with those in WT controls. A single dose of carbon tetrachloride caused similar acute liver injury in periostin<sup>-/-</sup> and WT littermates, and we did not detect significant differences in transaminases and major fibrosis-related hepatic gene expression between these two genotypes. Activated hepatic stellate cells (HSCs) are the major periostin-producing liver cell type. We found that in primary rat HSCs in vitro, periostin significantly increases the expression levels and activities of lysyl oxidase (LOX) and lysyl oxidase-like (LOXL) isoforms 1-3. Periostin also induced expression of intra- and extracellular collagen type 1 and fibronectin in HSCs. Interestingly, periostin stimulated phosphorylation of SMAD2/3, which was sustained despite short hairpin RNA-mediated knockdown of transforming growth factor β (TGFβ) receptor I and II, indicating that periostin-mediated SMAD2/3 phosphorylation is independent of TGFβ receptors. Moreover, periostin induced the phosphorylation of focal adhesion kinase (FAK) and AKT in HSCs. Notably, siRNA-mediated FAK knockdown failed to block periostin-induced SMAD2/3 phosphorylation. These results suggest that periostin promotes enhanced matrix stiffness in chronic liver disease by activating LOX and LOXL, independently of TGFβ receptors. Hence, targeting periostin may be of therapeutic benefit in combating hepatic fibrosis."	"Sensitization of Gastric Cancer Cells to 5-FU by MicroRNA-204 Through Targeting the TGFBR2-Mediated Epithelial to Mesenchymal Transition. Gastric cancer (GC) is the most common gastrointestinal malignancy, causing cancer-related deaths in East Asia. MicroRNAs (miRNAs) are small non-coding RNAs aberrantly expressed in human tumors. In this study, we aim to investigate the roles of miR-204 in the epithelial to mesenchymal transition (EMT)-associated chemosensitivity. The expression of miR-204 was detected in clinical tumor samples and GC cell lines by real time PCR. Tumor cell's growth, invasion, and migration were measured by MTT assay, wound healing assay, and transwell invasion assay, respectively. Western blot method was used to detect the protein levels of indicated genes. Luciferase reporter assay was performed to validate the target gene of miR-204. The in vivo role of miR-204 was measured using a xenograft mouse model of GC. By comparing the expressions of miR-204 in human gastric tumors and their adjacent normal tissues, it was disclosed that miR-204 was significantly downregulated in gastric tumors. Moreover, miR-204 was downregulated in multiple GC cell lines compared with normal gastric epithelial cells. Overexpression of miR-204 suppressed GC cells' proliferation, invasion, and migration. It is noteworthy that 5-FU treatments induced miR-204 expression and suppressed TGF-β pathway. By establishment of 5-FU resistant GC cell line, it was revealed that miR-204 was significantly downregulated in 5-FU resistant GC cells, representing mesenchymal features with downregulation of epithelial marker, while mesenchymal markers were upregulated. We identified TGFBR2 as a direct target of miR-204 by Western blot method and luciferase assay in GC cells and tumor samples as well. In addition, overexpression of miR-204 sensitized GC cells to 5-FU in vitro. Xenograft experiments demonstrated that the combination of miR-204 and 5-FU efficiently inhibited tumor growth and improved survival rate of mice as well. Eventually, we illustrated the restoration of TGFBR2 in miR-204 overexpression GC cells, which recovered resistance to 5-FU treatments compared with miR-204 overexpression GC cells. This study describes a miRNA-based therapeutic strategy against 5-FU resistance in GC, contributing to the development of anti-chemoresistance therapeutic agents."	"A COL1A1 Promoter-Controlled Expression of TGF-β Soluble Receptor Inhibits Hepatic Fibrosis Without Triggering Autoimmune Responses. Soluble TGF-β1 type II receptor (sTβRII) via TGF-β1 inhibition could inhibit hepatic fibrosis, but over-dosage triggers autoimmune responses. To test whether the use of a TGF-β1-responsive collagen I promoter COL1A1, via generating a feedback loop to TGF-β1 level, could offer accurate control on sTβRII expression. Recombinant adenoviruses with COL1A1 (Ad-COL-sTβRII/Luc) or CMV promoter (Ad-CMV-sTβRII/Luc) were constructed and characterized. Inhibition of TGF-β activity was determined both in vitro and in vivo. Total and bioactive TGF-β, hepatic fibrosis scale, α-SMA, collagen levels, and liver function were determined. COL1A1, but not CMV, responded to TGF-β1 in vitro. Both in vitro and in vivo, Ad-COL-sTβRII could significantly, but not completely inhibit TGF-β1 activity while Ad-CMV-sTβRII almost completely inhibited TGF-β1 activity. As evidenced by fibrosis scale, α-SMA, and collagen levels in liver tissue, Ad-COL-sTβRII and Ad-CMV-sTβRII had comparable efficacies in treating hepatic fibrosis. Ad-COL-sTβRII was better than Ad-CMV-sTβRII in liver function restore. Ad-CMV-sTβRII, but not Ad-COL-sTβRII, induced high level of anti-dsDNA and anti-Sm antibodies in rats. COL1A1 can precisely control sTβRII expression to inhibit excessive bioactive TGF-β level and thus inhibit hepatic fibrosis but without inducing autoimmune responses."	"BMP7 Signaling in TGFBR2-Deficient Stromal Cells Provokes Epithelial Carcinogenesis. Deregulated transforming growth factor-β (TGFβ) signaling is a common feature of many epithelial cancers. Deletion of TGFβ receptor type 2 (TGFBR2) in fibroblast specific protein-1 (FSP1)-positive stromal cells induces squamous cell carcinoma in the murine forestomach, implicating fibroblast-derived hepatocyte growth factor (HGF) as the major driver of the epithelium carcinogenesis. Prior to cancer development, hyperproliferative FSP1<sup>+</sup> fibroblasts lacking TGFBR2 accumulate in the forestomach, disrupting the regulatory signaling cross-talk with the forestomach epithelium. Here, concurrent loss in TGFBR2 and SMAD4 completely abrogates the development of forestomach cancer. Bone morphogenic protein-7 (BMP7) was highly upregulated in forestomach cancer tissue, activating Smad1/5/8 signaling, cell proliferation, and HGF production in TGFBR2-deficient FSP1<sup>+</sup> fibroblasts. This stimulation by BMP7 was lost in the combined TGFBR2 and SMAD4 double knockout fibroblasts, which included a profound decrease in HGF expression. Thus, Smad4-mediated signaling is required to initiate epithelial carcinogenesis subsequent to TGFBR2 deletion in FSP1<sup>+</sup> fibroblasts.Implications: These findings reveal a complex cross-talk between epithelial cells and the stroma, wherein Smad4 is required to elicit squamous cell carcinomas in the forestomach of mice with TGFBR2-deficient stromal cells. Mol Cancer Res; 16(10); 1568-78. ©2018 AACR."	"Decreased mitochondrial respiration in aneurysmal aortas of Fibulin-4 mutant mice is linked to PGC1A regulation. Thoracic aortic aneurysms are a life-threatening condition often diagnosed too late. To discover novel robust biomarkers, we aimed to better understand the molecular mechanisms underlying aneurysm formation. In Fibulin-4R/R mice, the extracellular matrix protein Fibulin-4 is 4-fold reduced, resulting in progressive ascending aneurysm formation and early death around 3 months of age. We performed proteomics and genomics studies on Fibulin-4R/R mouse aortas. Intriguingly, we observed alterations in mitochondrial protein composition in Fibulin-4R/R aortas. Consistently, functional studies in Fibulin-4R/R vascular smooth muscle cells (VSMCs) revealed lower oxygen consumption rates, but increased acidification rates. Yet, mitochondria in Fibulin-4R/R VSMCs showed no aberrant cytoplasmic localization. We found similar reduced mitochondrial respiration in Tgfbr-1M318R/+ VSMCs, a mouse model for Loeys-Dietz syndrome (LDS). Interestingly, also human fibroblasts from Marfan (FBN1) and LDS (TGFBR2 and SMAD3) patients showed lower oxygen consumption. While individual mitochondrial Complexes I-V activities were unaltered in Fibulin-4R/R heart and muscle, these tissues showed similar decreased oxygen consumption. Furthermore, aortas of aneurysmal Fibulin-4R/R mice displayed increased reactive oxygen species (ROS) levels. Consistent with these findings, gene expression analyses revealed dysregulation of metabolic pathways. Accordingly, blood ketone levels of Fibulin-4R/R mice were reduced and liver fatty acids were decreased, while liver glycogen was increased, indicating dysregulated metabolism at the organismal level. As predicted by gene expression analysis, the activity of PGC1α, a key regulator between mitochondrial function and organismal metabolism, was downregulated in Fibulin-4R/R VSMCs. Increased TGFβ reduced PGC1α levels, indicating involvement of TGFβ signalling in PGC1α regulation. Activation of PGC1α restored the decreased oxygen consumption in Fibulin-4R/R VSMCs and improved their reduced growth potential, emphasizing the importance of this key regulator. Our data indicate altered mitochondrial function and metabolic dysregulation, leading to increased ROS levels and altered energy production, as a novel mechanism, which may contribute to thoracic aortic aneurysm formation."	"Anti-Müllerian hormone type II receptor in avian follicle development. Anti-Müllerian hormone (AMH) helps maintain the ovarian reserve by regulating primordial follicle activation and follicular selection in mammals, although its role within the avian ovary is unknown. In mammals, AMH is primarily produced in granulosa cells of preantral and early antral follicles. Similarly, in the hen, the granulosa cells of smaller follicles are the predominant source of AMH. The importance of AMH in mammalian ovarian dynamics suggests the protein and its specific Type II receptor, AMHRII, may have conserved functions in the hen. AMHRII mRNA expression is highest (P &lt; 0.01) in small follicles of the hen and decreases as follicle size increases. Similarly, expression of AMHRII and AMH is highest in granulosa cells from small follicles as compared to larger follicles. Dissection of 3-5 mm follicles into ooplasm and granulosa components shows that AMHRII mRNA levels are greater in ooplasm than granulosa cells. Furthermore, immunohistochemistry also revealed AMHRII staining in the oocyte and granulosa cells. AMH expression in mammals is elevated during periods of reproductive dormancy, possibly protecting the ovarian reserve. AMHRII and AMH mRNA were significantly higher (P &lt; 0.05) in nonlaying ovaries of broiler hens. In molting layer hens, AMHRII mRNA was significantly greater (P &lt; 0.05) compared to nonmolting hen ovaries. These results suggest that AMH may have a direct effect on the oocyte and, thereby, contribute to bidirectional communication between oocyte and granulosa cells. Enhanced expression of AMHRII and AMH during reproductive quiescence supports a potential role of AMH in protecting the ovarian reserve in hens."	"[Effects of centella asiatica granule on the expression of TGF-β1 and related down-stream signals in rats with early diabetic nephropathy]. To investigate the effects of centella asiatica (CA) granule on the expression of transform growth factor-β1(TGF-β1) and related down-stream signals in rats with early diabetic nephropathy(DN) and to clarify the molecular mechanisms of CA molecular mechanism of on preventing and curing early diabetic kidney disease DN by studying the effects of centella asiatica on TGF-β1 expression and related down-stream signals. Sixty male SD rats were divided into control group(n=10) and DN model group(n=50). The model rats were made a right nephrectomy. One week later, diabetic nephropathy was induced by intraperitoneal injection of streptocozin(30 mg/kg) for three consecutive days. High blood glucose level of Tail vein (fasting glucose ≥ 16.7 mmol/L) and high urinary protein level(total protein level in DN group was more than twice higher than the control group) were measured to confirm early DN in rats. In the sham operation group, the right renal capsule was damaged and the corresponding amount of saline was injected. The model rats were administrated by the means of intragastric administration. The DN model group were divided into DN group, DN+fosinopril group(1.6 mg/kg·d), DN+high CA group(16.8 mg/kg·d), DN+medium CA group(11.2 mg/kg·d) and DN+low CA group(5.6 mg/kg·d), and each group was intragastric administration one time every morning last for 16 weeks. The expressions of mRNA and protein of TGF-β1, TβR1, TβR2, Smad2/3, Smad7 and the level of Smad2/3 phosphorylation were detected by using real time quantitative polymerase chain reaction and Western blot. The expressions of mRNA and protein of TGF-β1, TβR1, TβR2, Smad2/3 and the level of Smad2/3 phosphorylation were significantly increased, the expressions of mRNA and protein of Smad7 were dramatically decreased. The fosinopril and high dosage CA could reverse the effects of DN. CA plays an important role in preventing and curing DN through regulating the TGF-β1/Smad signaling pathways."	"Linc00462 promotes pancreatic cancer invasiveness through the miR-665/TGFBR1-TGFBR2/SMAD2/3 pathway. Emerging evidence has identified that long non-coding RNAs (lncRNAs) may play an important role in the pathogenesis of many cancers, pancreatic cancer (PC) included. However, the role of linc00462 in PC remains unclear. The aim of our present study was to investigate the potential functions of linc00462 in PC and to identify the underlying mechanisms of action. CCK8 assay, transwell assay, cell cycle assay, cell apoptosis assay, EdU assay, western blot assay, cell adhesion assay, HE staining, IF staining, ELISA assay, vivo growth and metastasis assay, and colony formation assay were performed. We demonstrated that OSM mediated up-regulation of linc00462 promoted cell proliferation by accelerating cell cycle process and inhibiting cell apoptosis and adhesion in vitro, enhanced cell migration and invasion by accelerating EMT process, promoted tumor growth and matastasis in vivo and was associated with large tumor size, poor tumor differentiation, TNM stage and distant metastasis in patients of PC. In addition, we demonstrated that linc00462 was a target of miR-665. Linc00462 overexpression enhanced the expression levels of TGFBR1 and TGFBR2, and thus activated the SMAD2/3 pathway in PC cells. In conclusion, linc00462/miR-665/TGFBR1/2 regulatory network may shed light on tumorigenesis in PC."	"Actin cytoskeleton assembly regulates collagen production via TGF-β type II receptor in human skin fibroblasts. The dermal compartment of skin is primarily composed of collagen-rich extracellular matrix (ECM), which is produced by dermal fibroblasts. In Young skin, fibroblasts attach to the ECM through integrins. During ageing, fragmentation of the dermal ECM limits fibroblast attachment. This reduced attachment is associated with decreased collagen production, a major cause of skin thinning and fragility, in the elderly. Fibroblast attachment promotes assembly of the cellular actin cytoskeleton, which generates mechanical forces needed for structural support. The mechanism(s) linking reduced assembly of the actin cytoskeleton to decreased collagen production remains unclear. Here, we report that disassembly of the actin cytoskeleton results in impairment of TGF-β pathway, which controls collagen production, in dermal fibroblasts. Cytoskeleton disassembly rapidly down-regulates TGF-β type II receptor (TβRII) levels. This down-regulation leads to reduced activation of downstream effectors Smad2/Smad3 and CCN2, resulting in decreased collagen production. These responses are fully reversible; restoration of actin cytoskeleton assembly up-regulates TβRII, Smad2/Smad3, CCN2 and collagen expression. Finally, actin cytoskeleton-dependent reduction of TβRII is mediated by induction of microRNA 21, a potent inhibitor of TβRII protein expression. Our findings reveal a novel mechanism that links actin cytoskeleton assembly and collagen expression in dermal fibroblasts. This mechanism likely contributes to loss of TβRII and collagen production, which are observed in aged human skin."	"ERBB3, IGF1R, and TGFBR2 expression correlate with PDGFR expression in glioblastoma and participate in PDGFR inhibitor resistance of glioblastoma cells. Glioma, the most prevalent malignancy in brain, is classified into four grades (I, II, III, and IV), and grade IV glioma is also known as glioblastoma multiforme (GBM). Aberrant activation of receptor tyrosine kinases (RTKs), including platelet-derived growth factor receptor (PDGFR), are frequently observed in glioma. Accumulating evidence suggests that PDGFR plays critical roles during glioma development and progression and is a promising drug target for GBM therapy. However, PDGFR inhibitor (PDGFRi) has failed in clinical trials, at least partially, due to the activation of other RTKs, which compensates for PDGFR inhibition and renders tumor cells resistance to PDGFRi. Therefore, identifying the RTKs responsible for PDGFRi resistance might provide new therapeutic targets to synergetically enhance the efficacy of PDGFRi. In this study, we analyzed the TCGA glioma database and found that the mRNA expressions of three RTKs, i.e. ERBB3, IGF1R, and TGFBR2, were positively correlated with that of PDGFR. Co-immunoprecipitation assay indicated novel interactions between the three RTKs and PDGFR in GBM cells. Moreover, concurrent expression of PDGFR with ERBB3, IGF1R, or TGFBR2 in GBM cells attenuated the toxicity of PDGFRi and maintained the activation of PDGFR downstream targets under the existence of PDGFRi. Thus, ERBB3, IGF1R, and TGFBR2 might participate in PDGFRi resistance of GBM cells. Consistent with this notion, combination of PDGFRi with inhibitor targeting either ERBB3 or IGF1R more potently suppressed the growth of GBM cells than each inhibitor alone. The positive correlations of PDGFR with ERBB3, IGF1R, and TGFBR2 were further confirmed in 66 GBM patient samples. Intriguingly, survival analysis showed that ERBB3 predicted poor prognosis in GBM patients with high PDGFRA expression. Altogether, our work herein suggested that ERBB3, IGF1R, and TGFBR2 were responsible for PDGFRi resistance and revealed that ERBB3 acted as potential prognostic marker and therapeutic target for GBM with high PDGFRA expression."	"Effect of exogenous transforming growth factor β1 (TGF-β1) on early bovine embryo development. SummaryDuring preimplantation development, embryos are exposed and have the capacity to respond to different growth factors present in the maternal environment. Among these factors, transforming growth factor β1 (TGF-β1) is a well known modulator of embryonic growth and development. However, its action during the first stages of development, when the embryo transits through the oviduct, has not been yet elucidated. The objective of the present study was to examine the effect of early exposure to exogenous TGF-β1 on embryo development and expression of pluripotency (OCT4, NANOG) and DNA methylation (DNMT1, DNMT3A, DNMT3B) genes in bovine embryos produced in vitro. First, gene expression analysis of TGF-β receptors confirmed a stage-specific expression pattern, showing greater mRNA abundance of TGFBR1 and TGFBR2 from the 2- to the 8-cell stage, before embryonic genome activation. Second, embryo culture for the first 48 h in serum-free CR1aa medium supplemented with 50 or 100 ng/ml recombinant TGF-β1 did not affect the cleavage and blastocyst rate (days 7 and 8). However, RT-qPCR analysis showed a significant increase in the relative abundance of NANOG and DNMT3A in the 8-cell stage embryos and expanded blastocysts (day 8) derived from TGF-β1 treated embryos. These results suggest an early action of exogenous TGF-β1 on the bovine embryo, highlighting the importance to provide a more comprehensive understanding of the role of TGF-β signalling during early embryogenesis."	"Experimental Spinal Cord Injury Causes Left-Ventricular Atrophy and Is Associated with an Upregulation of Proteolytic Pathways. Spinal cord injury (SCI) causes autonomic dysfunction, altered neurohumoral control, profound hemodynamic changes, and an increased risk of heart disease. In this prospective study, we investigated the cardiac consequences of chronic experimental SCI in rats by combining cutting edge in vivo techniques (magnetic resonance imaging [MRI] and left-ventricular [LV] pressure-volume catheterization) with histological and molecular assessments. Twelve weeks post-SCI, MRI-derived structural indices and in vivo LV catheterization-derived functional indices indicated the presence of LV atrophy (LV mass in Control vs. SCI = 525 ± 38.8 vs. 413 ± 28.6 mg, respectively; p = 0.0009), reduced ventricular volumes (left-ventricular end-diastolic volume in Control vs. SCI = 364 ± 44 vs. 221 ± 35 μL, respectively; p = 0.0004), and contractile dysfunction (end-systolic pressure-volume relationship in Control vs. SCI = 1.31 ± 0.31 vs. 0.76 ± 0.11 mm Hg/μL, respectively; p = 0.0045). Cardiac atrophy and contractile dysfunction in SCI were accompanied by significantly lower blood pressure, reduced circulatory norepinephrine, and increased angiotensin II. At the cellular level, we found the presence of reduced cardiomyocyte size and increased expression of angiotensin II type 1 receptors and transforming growth factor-beta receptors (TGF-β receptor 1 and 2) post-SCI. Importantly, we found more than a two-fold increase in muscle ring finger-1 and Beclin-1 protein level following SCI, indicating the upregulation of the ubiquitin-proteasome system and autophagy-lysosomal machinery. Our data provide novel evidence that SCI-induced cardiomyocyte atrophy and systolic cardiac dysfunction are accompanied by an upregulation of proteolytic pathways, the activation of which is likely due to loss of trophic support from the sympathetic nervous system, neuromechanical unloading, and altered neurohumoral pathways."	"Marfan Syndrome: oral implication and management. Marfan's Syndrome is a multisistemic pathology of connective tissues, a dominant autosomal transmission, first discovered by a French pediatrician, Antoine Bernard-Jean Marfan, who first found in some of his patients a disproportionate alteration of inferior infertility. This alteration was caused by the mutation of the FBN1 gene, located on the long arm of the chromosome 15, which encodes for an extracellular matrix protein, fibrin-1. Later it was discovered that the disease could occasionally be due also to the mutation of the TGFBR2 gene, which encodes for a TGF-beta receptor 1. The estimated incidence of the disease is 2-3 subjects affected every 10,000, in the absence of predilection ratial, ethnic, geographic and gender. It is believed that some 15,000 people in Italy suffer from Marfan Syndrome. The disease is characterized by a wide range of clinical manifestations that affect different organs. The study evaluates through a literature review the manifestations in the oral cavity of the marfan syndrome and the correct management of the patient during dental maneuvers."	"Fibroblast growth factor 2 decreases bleomycin-induced pulmonary fibrosis and inhibits fibroblast collagen production and myofibroblast differentiation. Fibroblast growth factor (FGF) signaling has been implicated in the pathogenesis of pulmonary fibrosis. Mice lacking FGF2 have increased mortality and impaired epithelial recovery after bleomycin exposure, supporting a protective or reparative function following lung injury. To determine whether FGF2 overexpression reduces bleomycin-induced injury, we developed an inducible genetic system to express FGF2 in type II pneumocytes. Double-transgenic (DTG) mice with doxycycline-inducible overexpression of human FGF2 (SPC-rtTA;TRE-hFGF2) or single-transgenic controls were administered intratracheal bleomycin and fed doxycycline chow, starting at either day 0 or day 7. In addition, wild-type mice received intratracheal or intravenous recombinant FGF2, starting at the time of bleomycin treatment. Compared to controls, doxycycline-induced DTG mice had decreased pulmonary fibrosis 21 days after bleomycin, as assessed by gene expression and histology. This beneficial effect was seen when FGF2 overexpression was induced at day 0 or day 7 after bleomycin. FGF2 overexpression did not alter epithelial gene expression, bronchoalveolar lavage cellularity or total protein. In vitro studies using primary mouse and human lung fibroblasts showed that FGF2 strongly inhibited baseline and TGFβ1-induced expression of alpha smooth muscle actin (αSMA), collagen, and connective tissue growth factor. While FGF2 did not suppress phosphorylation of Smad2 or Smad-dependent gene expression, FGF2 inhibited TGFβ1-induced stress fiber formation and serum response factor-dependent gene expression. FGF2 inhibition of stress fiber formation and αSMA requires FGF receptor 1 (FGFR1) and downstream MEK/ERK, but not AKT signaling. In summary, overexpression of FGF2 protects against bleomycin-induced pulmonary fibrosis in vivo and reverses TGFβ1-induced collagen and αSMA expression and stress fiber formation in lung fibroblasts in vitro, without affecting either inflammation or epithelial gene expression. Our results suggest that in the lung, FGF2 is antifibrotic in part through decreased collagen expression and fibroblast to myofibroblast differentiation. Copyright © 2018 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Direct phenotypic conversion of human fibroblasts into functional osteoblasts triggered by a blockade of the transforming growth factor-β signal. A procedure to generate functional osteoblasts from human somatic cells may pave the way to a novel and effective transplantation therapy in bone disorders. Here, we report that human fibroblasts were induced to show osteoblast phenotypes by culturing with ALK5 i II, which is a specific inhibitor for activin-like kinase 5 (ALK5) (tumor growth factor-β receptor 1 (TGF-β R1)). Cells cultured with ALK5 i II expressed osteoblast-specific genes and massively produced calcified bone matrix, similar to the osteoblasts induced from mesenchymal stem cells (MSC-OBs). Treatment with vitamin D3 in addition to ALK5 i II induced more osteoblast-like characters, and the efficiency of the conversion reached approximately 90%. The chemical compound-mediated directly converted osteoblasts (cOBs) were similar to human primary osteoblasts in terms of expression profiles of osteoblast-related genes. The cOBs abundantly produced bone matrix in vivo and facilitated bone healing after they were transplanted into immunodeficient mice at an artificially induced defect lesion in femoral bone. The present procedure realizes a highly efficient direct conversion of human fibroblasts into transgene-free and highly functional osteoblasts, which might be applied in a novel strategy of bone regeneration therapy in bone diseases."	"Activin receptor ligand traps in chronic kidney disease. Sotatercept and luspatercept are recombinant soluble activin type-II receptor-IgG-Fc fusion proteins that are tested in clinical trials for the treatment of various types of anemias, including renal anemia. The mechanism of the action of the novel drugs is incompletely understood, but it seems to be based on the inactivation of soluble proteins of the transforming growth factor-ß (TGFß) family. This review considers pros and cons of the clinical use of the drugs in reference to the current therapy with recombinant erythropoiesis-stimulating agents (ESAs). One or more activin type-II receptor (ActRII) ligands appear to inhibit erythroid precursors, for example growth and differentiation factor 11. Trapping of these ligands by the recombinant ActRII fusion proteins, sotatercept and luspatercept increases red blood cell numbers and hemoglobin levels in humans. Reportedly, the novel compounds were well tolerated in trials on healthy volunteers and patients suffering from anemia due to chronic kidney disease or malignancies. On approval, the drugs may prove particularly useful in patients suffering from ineffective erythropoiesis, such as in myelodysplastic syndrome, multiple myeloma or ß-thalassemia, where ESAs are of little use. Independent of their effect on erythropoiesis, ActRII ligand traps were found to exert beneficial effects on renal tissue in experimental animals. ESAs are likely to remain standard of care in renal anemia. There is a need for a better understanding of the effects of ActRII ligand traps on TGFß-like proteins. The novel drugs have not been approved for sale as therapeutics so far. Their long-term efficacy and safety still needs to be proven, particularly with respect to immunogenicity. Antifibrotic effects may be worthy to be investigated in humans."	"Candesartan targeting of angiotensin II type 1 receptor demonstrates benefits for hypertension in pregnancy via the NF‑κB signaling pathway. Hypertensive disorders may be a complication of pregnancy and are characterized by the high blood pressure. Evidence suggests that alterations in the renin‑angiotensin‑aldosterone system and the sympathetic nervous system are associated with gestational hypertension. Angiotensin II type 1 receptor (Ang‑IITR) is a potential target in the progression of gestational hypertension. Candesartan is selective Ang‑IITR antagonist that may act against vasoconstriction and reduces peripheral vascular resistance. The aim of the present study was to evaluate the efficacy of Candesartan and the underlying molecular mechanism of the nuclear factor‑κB (NF‑κB) signaling pathway in the progression of gestational hypertension in a mouse model. Expression and activity of Ang‑IITR was evaluated in a mouse model of gestational hypertension prior to and post‑treatment of Candesartan both in vitro and in vivo. It was determined whether Candesartan treatment reduces higher blood pressure activated the renal renin‑angiotensin system and a prognostic marker, soluble endoglin, and its associated gene in mice with gestational hypertension. Angiotensin‑converting enzyme plasma levels and activity were also evaluated in the present study. Cytoplasmic and nuclear immunostaining of NF‑κB and associated proteins transforming growth factor β (TGF‑β) and endoglin was enhanced in vascular endothelial cells and mice with gestational hypertension. Soluble fms‑like tyrosine kinase 1 (sFlt‑1), insulin resistance homeostasis model assessment score and associated cardiovascular risk factors also were measured. Results demonstrated that angiotensin and Ang‑IITR expression levels were upregulated in mice with gestational hypertension and were downregulated by Candesartan treatment. Renal renin‑angiotensin and soluble endoglin were also improved in mice in the Candesartan‑treated group. In addition, Candesartan treatment enhanced NF‑κB activity, as well as TGF‑β and vascular endothelial growth factor expression which led to improved levels of sFlt‑1, insulin resistance homeostasis and associated cardiovascular risk factors. Gestational hypertension was markedly improved by treatment of Candesartan compared with the control. In conclusion, the findings of the present study suggested that the NF‑κB signaling pathway may be involved in with Candesartan‑mediated Ang‑IITR for the treatment of gestational hypertension."	"Immunohistochemical Analysis of Activin Receptor-Like Kinase 1 (ACVRL1/ALK1) Expression in the Rat and Human Hippocampus: Decline in CA3 During Progression of Alzheimer's Disease. The pathophysiology of Alzheimer's disease (AD) includes signaling defects mediated by the transforming growth factor β-bone morphogenetic protein-growth and differentiation factor (TGFβ-BMP-GDF) family of proteins. In animal models of AD, administration of BMP9/GDF2 improves memory and reduces amyloidosis. The best characterized type I receptor of BMP9 is ALK1. We characterized ALK1 expression in the hippocampus using immunohistochemistry. In the rat, ALK1 immunoreactivity was found in CA pyramidal neurons, most frequently and robustly in the CA2 and CA3 fields. In addition, there were sporadic ALK1-immunoreactive cells in the stratum oriens, mainly in CA1. The ALK1 expression pattern in human hippocampus was similar to that of rat. Pyramidal neurons within the CA2, CA3, and CA4 were strongly ALK1-immunoreactive in hippocampi of cognitively intact subjects with no neurofibrillary tangles. ALK1 signal was found in the axons of alveus and fimbria, and in the neuropil across CA fields. Relatively strongest ALK1 neuropil signal was observed in CA1 where pyramidal neurons were occasionally ALK1-immunoractive. As in the rat, horizontally oriented neurons in the stratum oriens of CA1 were both ALK1- and GAD67-immunoreactive. Analysis of ALK1 immunoreactivity across stages of AD pathology revealed that disease progression was characterized by overall reduction of the ALK1 signal in CA3 in advanced, but not early, stages of AD. These data suggest that the CA3 pyramidal neurons may remain responsive to the ALK1 ligands, e.g., BMP9, during initial stages of AD and that ALK1 may constitute a therapeutic target in early and moderate AD."	"Interaction of E3 Ubiquitin Ligase MARCH7 with Long Noncoding RNA MALAT1 and Autophagy-Related Protein ATG7 Promotes Autophagy and Invasion in Ovarian Cancer. Ubiquitin E3 ligase MARCH7 plays an important role in T cell proliferation and neuronal development. But its role in ovarian cancer remains unclear. This study aimed to investigate the role of Ubiquitin E3 ligase MARCH7 in ovarian cancer. Real-time PCR, immunohistochemistry and western blotting analysis were performed to determine the expression of MARCH7, MALAT1 and ATG7 in ovarian cancer cell lines and clinical specimens. The role of MARCH7 in maintaining ovarian cancer malignant phenotype was examined by Wound healing assay, Matrigel invasion assays and Mouse orthotopic xenograft model. Luciferase reporter assay, western blot analysis and ChIP assay were used to determine whether MARCH7 activates TGF-β-smad2/3 pathway by interacting with TGFβR2. MARCH7 interacted with MALAT1 by miR-200a (microRNA-200a). MARCH7 may function as a competing endogenous RNA (ceRNA) to regulate the expression of ATG7 by competing with miR-200a. MARCH7 regulated TGF-β-smad2/3 pathway by interacting with TGFβR2. Inhibition of TGF-β-smad2/3 pathway downregulated MARCH7, MALAT1 and ATG7. MiR-200a regulated TGF-β induced autophagy, invasion and metastasis of SKOV3 cells by targeting MARCH7. MARCH7 silencing inhibited autophagy invasion and metastasis of SKOV3 cells both in vitro and in vivo. In contrast, MARCH7 overexpression promoted TGF-β induced autophagy, invasion and metastasis of A2780 cells in vitro by depending on MALAT1 and ATG7. We also found that TGF-β-smad2/3 pathway regulated MARCH7 and ATG7 through MALAT1. These findings suggested that TGFβR2-Smad2/3-MALAT1/MARCH7/ATG7 feedback loop mediated autophagy, migration and invasion in ovarian cancer."	"BMP-2 restoration aids in recovery from liver fibrosis by attenuating TGF-β1 signaling. Transforming growth factor-β (TGF-β) plays a central role in hepatic fibrogenesis. This study investigated the function and mechanism of bone morphogenetic protein-2 (BMP-2) in regulation of hepatic fibrogenesis. BMP-2 expression in fibrotic liver was measured in human tissue microarray and mouse models of liver fibrosis induced by bile duct ligation surgery or carbon tetrachloride administration. Adenovirus-mediated BMP-2 gene delivery was used to test the prophylactic effect on liver fibrosis. Primary hepatic stellate cells (HSC), HSC-T6 and clone-9 cell lines were used to study the interplay between BMP-2 and TGF-β1. Hepatic BMP-2 was localized in parenchymal hepatocytes and activated HSCs and significantly decreased in human and mouse fibrotic livers, showing an opposite pattern of hepatic TGF-β1 contents. BMP-2 gene delivery alleviated the elevations of serum hepatic enzymes, cholangiocyte marker CK19, HSC activation markers, and liver fibrosis in both models. Mechanistically, exogenous TGF-β1 dose dependently reduced BMP-2 expression, whereas BMP-2 significantly suppressed expression of TGF-β and its cognate type I and II receptor peptides, as well as the induced Smad3 phosphorylation levels in primary mouse HSCs. Aside from its suppressive effects on cell proliferation and migration, BMP-2 treatment prominently attenuated the TGF-β1-stimulated α-SMA and fibronectin expression, and reversed the TGF-β1-modulated epithelial-to-mesenchymal transition marker expression in mouse HSCs. The mutual regulation between BMP-2 and TGF-β1 signaling axes may constitute the anti-fibrogenic mechanism of BMP-2 in the pathogenesis of liver fibrosis. BMP-2 may potentially serve as a novel therapeutic target for treatment of liver fibrosis."	"Identification of recurrent risk-related genes and establishment of support vector machine prediction model for gastric cancer. This study sought to investigate genes related to recurrent risk and establish a support vector machine (SVM) classifier for prediction of recurrent risk in gastric cancer (GC).Based on the gene expression profiling dataset GSE26253, feature genes that were significantly associated with survival time and status were screened out. Subsequently, protein-protein interaction (PPI) network was constructed for these feature genes, and genes in this network was optimized using betweenness centrality algorithm in order to identify genes potentially correlated with GC (named as GCGs). In total, 1202 feature genes were identified to be significantly associated with survival time and status of GC, among of which, 65 genes were identified as a classifier that was able to recognize recurrence and nonrecurrence GC cases with a high sensitivity and specificity, predictive value (PPV), negative predictive value (NPV) and area under the receiver operating characteristic curve (AUC). Furthermore, the classifier was able to reasonably classify tumor samples in GSE15459 into high and low recurrent risk groups. Among those genes, a set of genes were predicted to have interactions (e.g. RHOA interacting with TGFBR1, PRKACA and PLCG1; TGFBR1 interacting with TGFBR2) and be involved in pathways like MAPK signaling (e.g. TGFBR1 and TGFBR2), adherens junction (e.g. RHOA) and apoptosis (e.g. PRKACA).The genes in the classifier model may be related to GC recurrence, and the classifier model may contribute to the prediction of recurrent risk in GC."	"The angiotensin II type I receptor antagonist losartan retards amygdala kindling-induced epileptogenesis. Blood-brain barrier (BBB) breakdown and the subsequent exposure of the cerebral cortex to serum albumin are known to activate transforming growth factor β (TGF-β) signaling in astrocytes and to play key roles in epileptogenesis after brain injury. It was recently reported that the angiotensin II type I receptor antagonist losartan suppresses activation of TGF-β signaling and prevents epileptogenesis in a rat vascular injury model. Here, we investigated the effects of losartan on epileptogenesis following amygdala kindling in rats. Systemic or intracerebroventricular (i.c.v.) administration of losartan significantly delayed the development of severe behavioral seizures and stimulus-induced seizures on EEG (afterdischarge) in the early stage of amygdala kindling, as assessed by electroencephalography. Losartan also significantly increased the number of stimulations required to reach the fully kindled state. However, losartan had no effects on the threshold for afterdischarge induction, the afterdischarge duration, or seizure severity in fully kindled rats. Evaluation of BBB permeability by Evans blue staining did not indicate BBB breakdown (extravasation of serum albumin) in any region of the brain in the fully kindled animals. Thus, losartan may be useful in preventing epileptogenesis, even in post brain-insult epilepsy, in the absence of BBB breakdown."	"Impact of targeting transforming growth factor β-2 with antisense OT-101 on the cytokine and chemokine profile in patients with advanced pancreatic cancer. Overexpression of the cytokine - transforming growth factor-beta 2 (TGF-β2) - has been implicated in the malignant progression of pancreatic cancer (PAC). OT-101 (trabedersen) is an antisense oligodeoxynucleotide designed to target the human TGF-β2 mRNA. In a Phase I/II study, OT-101 treatment with subsequent chemotherapy was characterized by outstanding overall survival (OS) in patients with PAC. This study sought to identify 1) co-regulated sets of cyto-/chemokines; 2) potential mechanisms that link TGF-β receptor type 2 receptor inhibition that may result in the induction of a cytokine storm; and 3) predictive biomarkers for OS outcome in OT-101-treated patients with PAC. Plasma levels of 31 cyto-/chemokines were tracked over three cycles of OT-101 therapy (140 mg/m<sup>2</sup>/day) in 12 PAC patients. Samples were acquired before onset of OT-101 therapy and at eight selected time points during therapy. A mixed ANCOVA model was developed for 19 cyto-/chemokines with median expression &gt;1 following OT-101 therapy. Regression and hierarchical clustering analyses were performed to identify correlated expressions in each patient across cyto-/chemokines or in each cyto-/chemokine across patients. Plasma cyto-/chemokine levels were compared with OS with and without subsequent chemotherapy. Three highly correlated subsets of cyto-/chemokines (Cluster 1: EGF, MIP-1α, MIP-1β; Cluster 2: FGF-2, MIG, IP-10, IL-15, IFN-α, IL-12; and Cluster 3: HGF, IL-6, IL-8) were identified following OT-101 therapy. Suppression of TGF-β signaling by OT-101 led to upregulation of IL-8, IL-15, IP-10, and HGF. Protein-protein interaction networks constructed using STRING10 algorithm identified a relationship between IL-8, IL-15, and TGF-β receptor type 2 inhibition. The mixed analysis of covariance model that examined the levels of 19 cyto-/chemokines with OS as the covariate at each of the time points resulted in IL-8 and IL-15 exhibiting a significant association with OS during Cycle 1 of therapy. In the whole-blood culture model, the cytokines with the most pronounced increase after OT-101 treatment were IL-1β, IL-8, and MCP-1. No consistent responses in cyto-/chemokine levels were observed due to OT-101 treatment. Levels of IL-8 and IL-15 during Cycle 1 were positively associated with OS across 12 patients with PAC and served as potential biomarkers for treatment outcome following OT-101 therapy."	"TGFβ signaling limits lineage plasticity in prostate cancer. Although treatment options for localized prostate cancer (CaP) are initially effective, the five-year survival for metastatic CaP is below 30%. Mutation or deletion of the PTEN tumor suppressor is a frequent event in metastatic CaP, and inactivation of the transforming growth factor (TGF) ß signaling pathway is associated with more advanced disease. We previously demonstrated that mouse models of CaP based on inactivation of Pten and the TGFß type II receptor (Tgfbr2) rapidly become invasive and metastatic. Here we show that mouse prostate tumors lacking Pten and Tgfbr2 have higher expression of stem cell markers and genes indicative of basal epithelial cells, and that basal cell proliferation is increased compared to Pten mutants. To better model the primarily luminal phenotype of human CaP we mutated Pten and Tgfbr2 specifically in luminal cells, and found that these tumors also progress to invasive and metastatic cancer. Accompanying the transition to invasive cancer we observed de-differentiation of luminal tumor cells to an intermediate cell type with both basal and luminal markers, as well as differentiation to basal cells. Proliferation rates in these de-differentiated cells were lower than in either basal or luminal cells. However, de-differentiated cells account for the majority of cells in micro-metastases consistent with a preferential contribution to metastasis. We suggest that active TGFß signaling limits lineage plasticity in prostate luminal cells, and that de-differentiation of luminal tumor cells can drive progression to metastatic disease."	"Comparing Effects of Transforming Growth Factor β1 on Microglia From Rat and Mouse: Transcriptional Profiles and Potassium Channels. The cytokine, transforming growth factor β1 (TGFβ1), is up-regulated after central nervous system (CNS) injuries or diseases involving microglial activation, and it has been proposed as a therapeutic agent for treating neuroinflammation. Microglia can produce and respond to TGFβ1. While rats and mice are commonly used for studying neuroinflammation, very few reports directly compare them. Such studies are important for improving pre-clinical studies and furthering translational progress in developing therapeutic interventions. After intracerebral hemorrhage (ICH) in the rat striatum, the TGFβ1 receptor was highly expressed on microglia/macrophages within the hematoma. We recently found species similarities and differences in response to either a pro-inflammatory (interferon-γ, IFN-γ, +tumor necrosis factor, TNF-α) or anti-inflammatory interleukin-4 (IL-4) stimulus. Here, we assessed whether rat and mouse microglia differ in their responses to TGFβ1. Microglia were isolated from Sprague-Dawley rats and C57BL/6 mice and treated with TGFβ1. We quantified changes in expression of &gt;50 genes, in their morphology, proliferation, apoptosis and in three potassium channels that are considered therapeutic targets. Many inflammatory mediators, immune receptors and modulators showed species similarities, but notable differences included that, for some genes, only one species responded (e.g., Il4r, Il10, Tgfbr2, colony-stimulating factor receptor (Csf1r), Itgam, suppressor of cytokine signaling 1 (Socs1), toll-like receptors 4 (Tlr4), P2rx7, P2ry12), and opposite responses were seen for others (Tgfb1, Myc, Ifngr1). In rat only, TGFβ1 affected microglial morphology and proliferation, but there was no apoptosis in either species. In both species, TGFβ1 dramatically increased Kv1.3 channel expression and current (no effects on Kir2.1). KCa3.1 showed opposite species responses: the current was low in unstimulated rat microglia and greatly increased by TGFβ1 but higher in control mouse cells and decreased by TGFβ1. Finally, we compared TGFβ1 and IL10 (often considered similar anti-inflammatory stimuli) and found many different responses in both species. Overall, the numerous species differences should be considered when characterizing neuroinflammation and microglial activation in vitro and in vivo, and when targeting potassium channels."	"The phenotypic heterogeneity of patients with Marfan-related disorders and their variant spectrums. Marfan syndrome (MFS) and Loeys-Dietz syndrome (LDS) are the connective tissue disorders characterized by aortic root aneurysm and/or dissection and various additional features. We evaluated the correlation of these mutations with the phenotypes and determined the clinical applicability of the revised Ghent criteria.The mutation spectrum and phenotypic heterogeneities of the 83 and 5 Korean patients with suspected MFS and LDS were investigated as a retrospective manner. In patients with suspected MFS patients, genetic testing was conducted in half of 44 patients who met the revised Ghent criteria clinically and half of 39 patients who did not meet these criteria.Fibrillin1 gene (FBN1) variants were detected in all the 22 patients (100%) who met the revised Ghent criteria and in 14 patients (77.8%) who did not meet the revised Ghent criteria (P = .0205). Patients with mutations in exons 24-32 were diagnosed at a younger age than those with mutations in other exons. Ectopia lentis was more common in patients with missense mutations than in patients with other mutations. Aortic diameter was greater in patients with missense mutations in cysteine residues than in patients with missense mutations in noncysteine residues. Five LDS patients had either TGFBR1 or TGFBR2 variants, of which 1 patient identified TGFBR1 variant uncertain significance.The revised Ghent criteria had very high clinical applicability for detecting FBN1 variants in patients with MFS and might help in selecting patients with suspected MFS for genetic testing."	"Pentabromopseudilin: a myosin V inhibitor suppresses TGF-β activity by recruiting the type II TGF-β receptor to lysosomal degradation. Pentabromopseudilin (PBrP) is a marine antibiotic isolated from the marine bacteria Pseudomonas bromoutilis and Alteromonas luteoviolaceus. PBrP exhibits antimicrobial, anti-tumour, and phytotoxic activities. In mammalian cells, PBrP is known to act as a reversible and allosteric inhibitor of myosin Va (MyoVa). In this study, we report that PBrP is a potent inhibitor of transforming growth factor-β (TGF-β) activity. PBrP inhibits TGF-β-stimulated Smad2/3 phosphorylation, plasminogen activator inhibitor-1 (PAI-1) protein production and blocks TGF-β-induced epithelial-mesenchymal transition in epithelial cells. PBrP inhibits TGF-β signalling by reducing the cell-surface expression of type II TGF-β receptor (TβRII) and promotes receptor degradation. Gene silencing approaches suggest that MyoVa plays a crucial role in PBrP-induced TβRII turnover and the subsequent reduction of TGF-β signalling. Because, TGF-β signalling is crucial in the regulation of diverse pathophysiological processes such as tissue fibrosis and cancer development, PBrP should be further explored for its therapeutic role in treating fibrotic diseases and cancer."	"Targeting the proinflammatory cytokines, oxidative stress, apoptosis and TGF-β1/STAT-3 signaling by irbesartan to ameliorate doxorubicin-induced hepatotoxicity. Doxorubicin (DOX) is an anthracycline antibiotic that is used frequently for treatment of various types of malignancies. Hepatotoxicity is one of the serious complications of DOX. The aim of this study was to explore the effect of different doses of irbesartan on doxorubicin-induced hepatotoxicity in mice. Sixty male BALB/c mice were divided into six equal groups as follows: Control group; DOX group; Irbesartan (Small dose) group; Irbesartan (Large dose) group; DOX + Irbesartan (Small dose) group and DOX + Irbesartan (Large dose) group. Liver weight/body weight ratio, food intake, serum albumin, alanine transaminase (ALT), aspartate transaminase (AST), alkaline phosphatase (ALP) and total bilirubin were measured. Also, tissue antioxidant enzymes, transforming growth factor beta 1 (TGF-β1), nuclear factor (erythroid-derived 2)-like 2/heme oxygenase-1 (Nrf2/HO-1) content, tumor necrosis factor alpha (TNF-α), interleukin 6 (IL-6) and signal transducer and activator of transcription-3 (STAT-3) were assessed. Parts of the hepatic tissues were subjected to histopathological examination. Irbesartan administration to DOX-treated mice induced significant decrease in serum ALT, AST, ALP, total bilirubin, tissue TGF-β1, TNF-α, IL-6 and liver weight/body weight ratio associated with significant increase in food intake, serum albumin, tissue Nrf2/HO-1 content, STAT-3 and antioxidant enzymes and significant improvement in the histopathological picture compared to DOX group. This improvement was significant with DOX + Irbesartan large dose compared to DOX + Irbesartan small dose. In conclusion, irbesartan - in a dose-dependent manner - might represent a promising hope for cancer patients to ameliorate DOX-induced hepatotoxicity."	"Interleukin-6-mediated trans-signaling inhibits transforming growth factor-β signaling in trabecular meshwork cells. Glaucoma is one of the major causes of blindness, and transforming growth factor-β2 (TGF-β2) has been found to be elevated in the aqueous humor of eyes with primary open-angle glaucoma (POAG). TGF-β2 in aqueous humor causes the glaucoma-related fibrosis of human trabecular meshwork (HTM), suggesting an important role of TGF-β in POAG pathogenesis. Here, we sought to elucidate the effects of IL-6 trans-signaling on TGF-β signaling in HTM cells. Using a multiplex immunoassay, POAG patients decreased IL-6 levels and increased soluble IL-6 receptor (sIL-6R) levels compared with the controls. In in vitro experiments, we observed that the IL-6 level was increased in the conditioned medium of HTM cells after TGF-β2 stimulation. To elucidate the relationship between TGF-β2 and IL-6 in HTM cells, we conducted Western blotting and immunohistochemical analyses, and we noted that the combination of IL-6 and sIL-6R (IL6/sIL-6R) suppressed TGF-β-induced up-regulation of α-smooth muscle actin in HTM cells, whereas IL-6 alone did not. This suggests that trans-signaling, not classic signaling, of IL-6 suppresses TGF-β-induced fibrosis of HTM. IL6/sIL-6R also suppressed TGF-β-mediated activation of myosin light chain 2 (MLC2), Smad2, and p38. Of note, these inhibitory effects of IL6/sIL-6R on TGF-β were partly reduced by siRNA-mediated knockdown of STAT3. Moreover, IL-6/sIL-6R partly inhibited TGF-β-induced activation of the Smad-sensitive promoter detected with luciferase reporter gene assays and up-regulation of TGFRI and TGFRII, evaluated by quantitative real-time RT-PCR. Strikingly, overexpression of TGFRI and TGFRII diminished these inhibitory effects of IL-6/sIL-6R. We conclude that of IL-6-mediated trans-signaling potently represses TGF-β signaling in HTM cells."	"The miR-371∼373 Cluster Represses Colon Cancer Initiation and Metastatic Colonization by Inhibiting the TGFBR2/ID1 Signaling Axis. The vast majority of colorectal cancer-related deaths can be attributed to metastatic spreading of the disease. Therefore, deciphering molecular mechanisms of metastatic dissemination is a key prerequisite to improve future treatment options. With this aim, we took advantage of different colorectal cancer cell lines and recently established primary cultures enriched in colon cancer stem cells, also known as tumor-initiating cells (TIC), to identify genes and miRNAs with regulatory functions in colorectal cancer progression. We show here that metastasis-derived TICs display increased capacity for self-renewal, TGFβ signaling activity, and reduced expression of the miR-371∼373 cluster compared with nonmetastatic cultures. TGFβ receptor 2 (TGFBR2) and aldehyde dehydrogenase A1 (ALDH1A1) were identified as important target genes of the miR-371∼373 cluster. In addition, TGFBR2 repression, either by direct knockdown or indirectly via overexpression of the entire miR-371∼373 cluster, decreased tumor-initiating potential of TICs. We observed significantly reduced in vitro self-renewal activity as well as lowered tumor initiation and metastatic outgrowth capacity in vivo following stable overexpression of the miR-371∼373 cluster in different colon TIC cultures. Inhibitor of DNA binding 1 (ID1) was affected by both TGFBR2 and miR-371∼373 cluster alterations. Functional sphere and tumor formation as well as metastatic dissemination assays validated the link between miR-371∼373 and ID1. Altogether, our results establish the miR-371∼373/TGFBR2/ID1 signaling axis as a novel regulatory mechanism of TIC self-renewal and metastatic colonization.Significance: These findings establish the miR-371∼373/TGFBR2/ID1 signaling axis as a novel mechanism regulating self-renewal of tumor-initiating cell and metastatic colonization, potentially opening new concepts for therapeutic targeting of cancer metastasis.Graphical Abstract: http://cancerres.aacrjournals.org/content/canres/78/14/3793/F1.large.jpg Cancer Res; 78(14); 3793-808. ©2018 AACR."	"TRIP-1 in the extracellular matrix promotes nucleation of calcium phosphate polymorphs. In search for bone and dentin extracellular matrix (ECM) proteins, transforming growth factor beta receptor II interacting protein 1 (TRIP-1) was identified as a novel protein synthesized by osteoblasts and odontoblasts and exported to the ECM. TRIP-1 is a WD-40 (WD is Tryptophan-Aspartic acid dipeptide) protein that has been well recognized for its physiological role in the endoplasmic reticulum (ER). In the ER, TRIP-1 functions as an essential subunit of eukaryotic elongation initiation factor 3 and is involved in the protein translational machinery. Recently, we reported that TRIP-1 is localized in the ECM of bone and dentin. In this study, we demonstrate that varying concentrations of TRIP-1 can participate in the nucleation of calcium phosphate polymorphs. Nucleation studies performed with high calcium and phosphate concentration demonstrated that recombinant TRIP-1 could orchestrate the formation of hydroxyapatite crystals. Nucleation experiments performed on demineralized and deproteinized dentin wafer under physiological conditions and subsequent transmission electron microscope analysis of the deposits at the end of 7 and 14 days showed that TRIP-1 promoted the deposition of calcium phosphate mineral aggregates in the gap-overlap region of type I collagen. Taken together, we provide mechanistic insight into the role of this intracellular protein in matrix mineralization."	"Opposing roles of miR-294 and MBNL1/2 in shaping the gene regulatory network of embryonic stem cells. Alternative pre-mRNA splicing plays important roles in regulating self-renewal and differentiation of embryonic stem cells (ESCs). However, how specific alternative splicing programs are established in ESCs remains elusive. Here, we show that a subset of alternative splicing events in ESCs is dependent on miR-294 expression. Remarkably, roughly 60% of these splicing events are affected by the depletion of Muscleblind-Like Splicing Regulator 1 and 2 (Mbnl1/2). Distinct from canonical miRNA function, miR-294 represses Mbnl1/2 through both posttranscriptional and epigenetic mechanisms. Furthermore, we uncover non-canonical functions of MBNL proteins that bind and promote the expression of miR-294 targets, including Cdkn1a and Tgfbr2, thereby opposing the role of miR-294 in regulating cell proliferation, apoptosis, and epithelial-mesenchymal transition (EMT). Our study reveals extensive interactions between miRNAs and splicing factors, highlighting their roles in regulating cell type-specific alternative splicing and defining gene expression programs during development and cellular differentiation."	"Dickkopf-3 in aberrant endothelial secretome triggers renal fibroblast activation and endothelial-mesenchymal transition. Our laboratory has previously demonstrated that Sirt1endo-/- mice show endothelial dysfunction and exaggerated renal fibrosis, whereas mice with silenced endothelial transforming growth factor beta (TGF-β) signaling are resistant to fibrogenic signals. Considering the fact that the only difference between these mutant mice is confined to the vascular endothelium, this indicates that secreted substances contribute to these contrasting responses. We performed an unbiased proteomic analysis of the secretome of renal microvascular endothelial cells (RMVECs) isolated from these two mutants. We cultured renal fibroblasts and RMVECs and used microfluidic devices for coculturing. Dickkopf-3 (DKK3), a putative ligand of the Wnt/β-catenin pathway, was present exclusively in the fibrogenic secretome. In cultured fibroblasts, DKK3 potently induced myofibroblast activation. In addition, DKK3 antagonized effects of DKK1, a known inhibitor of the Wnt pathway, in conversion of fibroblasts to myofibroblasts. In RMVECs, DKK3 induced endothelial-mesenchymal transition and impaired their angiogenic competence. The inhibition of endothelial outgrowth, enhanced myofibroblast formation and endothelial-mesenchymal transition were confirmed in coculture. In reporter DKK3-eGFP × Col3.6-GFPcyan mice, DKK3 was marginally expressed under basal conditions. Adriamycin-induced nephropathy resulted in upregulation of DKK3 expression in tubular and, to a lesser degree, endothelial compartments. Sulindac sulfide was found to exhibit superior Wnt pathway-suppressive action and decreased DKK3 signals and the extent of renal fibrosis. In conclusion, this unbiased proteomic screen of the profibrogenic endothelial secretome revealed DKK3 acting as an agonist of the Wnt pathway, enhancing formation of myofibroblasts and endothelial-mesenchymal transition and impairing angiogenesis. A potent inhibitor of the Wnt pathway, sulindac sulfide, suppressed nephropathy-induced DKK3 expression and renal fibrosis."	"USP11 Enhances TGFβ-Induced Epithelial-Mesenchymal Plasticity and Human Breast Cancer Metastasis. Epithelial-mesenchymal transition (EMT) is a conserved cellular plasticity program that is reactivated in carcinoma cells and drives metastasis. Although EMT is well studied its regulatory mechanisms remain unclear. Therefore, to identify novel regulators of EMT, a data mining approach was taken using published microarray data and a group of deubiquitinases (DUB) were found to be upregulated in cells that have undergone EMT. Here, it is demonstrated that one DUB, ubiquitin-specific peptidase 11 (USP11), enhances TGFβ-induced EMT and self-renewal in immortalized human mammary epithelial cells. Furthermore, modulating USP11 expression in human breast cancer cells altered the migratory capacity in vitro and metastasis in vivo Moreover, elevated USP11 expression in human breast cancer patient clinical specimens correlated with decreased survival. Mechanistically, modulating USP11 expression altered the stability of TGFβ receptor type II (TGFBR2) and TGFβ downstream signaling in human breast cancer cells. Together, these data suggest that deubiquitination of TGFBR2 by USP11 effectively spares TGFBR2 from proteasomal degradation to promote EMT and metastasis.Implications: USP11 regulates TGFβ-induced epithelial-mesenchymal plasticity and human breast cancer metastasis and may be a potential therapeutic target for breast cancer. Mol Cancer Res; 16(7); 1172-84. ©2018 AACR."	"Attenuation of TGFBR2 expression and tumour progression in prostate cancer involve diverse hypoxia-regulated pathways. Dysregulation of transforming growth factor β (TGF-β) signaling and hypoxic microenvironment have respectively been reported to be involved in disease progression in malignancies of prostate. Emerging evidence indicates that downregulation of TGFBR2, a pivotal regulator of TGF-β signaling, may contribute to carcinogenesis and progression of prostate cancer (PCa). However, the biological function and regulatory mechanism of TGFBR2 in PCa remain poorly understood. In this study, we propose to investigate the crosstalk of hypoxia and TGF-β signaling and provide insight into the molecular mechanism underlying the regulatory pathways in PCa. Prostate cancer cell lines were cultured in hypoxia or normoxia to evaluate the effect of hypoxia on TGFBR2 expression. Methylation specific polymerase chain reaction (MSP) and demethylation agents was used to evaluate the methylation regulation of TGFBR2 promoter. Besides, silencing of EZH2 via specific siRNAs or chemical inhibitor was used to validate the regulatory effect of EZH2 on TGFBR2. Moreover, we conducted PCR, western blot, and luciferase assays which studied the relationship of miR-93 and TGFBR2 in PCa cell lines and specimens. We also detected the impacts of hypoxia on EZH2 and miR-93, and further examined the tumorigenic functions of miR-93 on proliferation and epithelial-mesenchymal transition via a series of experiments. TGFBR2 expression was attenuated under hypoxia. Hypoxia-induced EZH2 promoted H3K27me3 which caused TGFBR2 promoter hypermethylation and contributed to its epigenetic silencing in PCa. Besides, miR-93 was significantly upregulated in PCa tissues and cell lines, and negatively correlated with the expression of TGFBR2. Ectopic expression of miR-93 promoted cell proliferation, migration and invasion in PCa, and its expression could also be induced by hypoxia. In addition, TGFBR2 was identified as a bona fide target of miR-93. Our findings elucidate diverse hypoxia-regulated pathways including EZH2-mediated hypermethylation and miR-93-induced silencing contribute to attenuation of TGFBR2 expression and promote cancer progression in prostate cancer."	"TGF-β Signaling Regulates Development of Midbrain Dopaminergic and Hindbrain Serotonergic Neuron Subgroups. Molecular and functional diversity within midbrain dopaminergic (mDA) and hindbrain serotonergic (5-HT) neurons has emerged as a relevant feature that could underlie selective vulnerability of neurons in clinical disorders. We have investigated the role of transforming growth factor beta (TGF-β) during development of mDA and 5-HT subgroups. We have generated TβRII<sup>flox/flox</sup>::En1<sup>cre/+</sup> mice where type II TGF-β receptor is conditionally deleted from engrailed 1-expressing cells and have investigated the hindbrain serotonergic system of these mice together with Tgf-β2<sup>-/-</sup> mice. The results show a significant decrease in the number of 5-HT neurons in TGF-β2-deficient mice at embryonic day (E) 12 and a selective significant decrease in the hindbrain paramedian raphe 5-HT neurons at E18, compared to wild type. Moreover, conditional deletion of TGF-β signaling from midbrain and rhombomere 1 leads to inactive TGF-β signaling in cre-expressing cells, impaired development of mouse mDA neuron subgroups and of dorsal raphe 5-HT neuron subgroups in a temporal manner. These results highlight a selective growth factor dependency of individual rostral hindbrain serotonergic subpopulations, emphasize the impact of TGF-β signaling during development of mDA and 5-HT subgroups, and suggest TGF-βs as potent candidates to establish diversity within the hindbrain serotonergic system. Thus, the data contribute to a better understanding of development and degeneration of mDA neurons and 5-HT-associated clinical disorders."	"Sustained spatiotemporal release of TGF-β1 confers enhanced very early chondrogenic differentiation during osteochondral repair in specific topographic patterns. The continuous presence of TGF-β is critically important to induce effective chondrogenesis. To investigate chondrogenesis in a cartilage defect, we tested the hypothesis that the implantation of TGF-β1-releasing scaffolds improves very early cartilage repair in vivo. Spatiotemporal controlled release of TGF-β1 was achieved from multiblock scaffolds that were implanted in osteochondral defects in the medial femoral condyles of adult minipigs. We observed a sustained presence of TGF-β1 at 4 wk in vivo, which significantly promoted structural aspects of early overall cartilage repair, especially cellularity, cellular morphology, and safranin O staining intensity. Furthermore, early aggrecan and type II collagen production were both increased in specific topographic patterns in cartilaginous repair tissue. Sustained release of TGF-β1 also increased cell numbers and proliferation, staining intensities for the stem cell surface marker, CD105, and number of stromal cell-derived factor-1 (SDF-1) -positive cells within cartilaginous repair tissue. These data identify a mechanism by which TGF-β1 modulates early chondrogenesis by primarily increasing the number of progenitor cells arising from the subchondral bone marrow compartment via the SDF-1/chemokine (CXC motif) receptor 4 pathway, their proliferation, differentiation, and extracellular matrix deposition in specific topographic patterns, highlighting the pivotal role played by TGF-β1 during this crucial phase.-Asen, A.-K., Goebel, L., Rey-Rico, A., Sohier, J., Zurakowski, D., Cucchiarini, M., Madry, H. Sustained spatiotemporal release of TGF-β1 confers enhanced very early chondrogenic differentiation during osteochondral repair in specific topographic patterns."	"MiR-17-5p promotes cervical cancer cell proliferation and metastasis by targeting transforming growth factor-β receptor 2. MicroRNAs (miRNAs) play critical roles in post-translational gene expression. The aim of the current study was to investigate the effects of miR-17-5p in cervical cancer. Fifteen clinical cervical cancer tissue samples, as well as their paired adjacent noncancerous tissues, were collected. The microarray was performed to identify differential miRNAs in cervical cancer. Luciferase reporter assay was conducted to identify the target gene of selected miRNA. SiHa was transfected with mimics, inhibitors as well as negative controls of miR-17-5p and Targeting Transforming Growth Factor-β Receptor 2 (TGFBR2) open reading frame or siRNA. Cell counting kit-8 (CCK-8) assay and transwell experiment were performed to detect the proliferation rate and metastasis, respectively. Western blotting and quantitative reverse transcriptase-polymerase chain reaction (qRT-PCR) analysis were used to analyze TGFBR2 expression. Balb/c nude mice were utilized to verify the effect of miR-17-5p in vivo. Microarray analysis identified miR-17-5p as our interesting miRNA, and luciferase reporter assay identified TGFBR2 as its target gene. MiR-17-5p overexpression significantly enhanced cervical cancer cell proliferation and metastasis. In-vivo study also verified that miR-17-5p overexpression stimulated cervical cancer growth. MiR-17-5p enhances cervical cancer proliferation and metastasis via targeting TGFBR2. It is proposed that targeting miR-17-5p may be a promising therapeutic approach for cervical cancer."	"Sorafenib suppresses TGF-β responses by inducing caveolae/lipid raft-mediated internalization/degradation of cell-surface type II TGF-β receptors: Implications in development of effective adjunctive therapy for hepatocellular carcinoma. Sorafenib is the only FDA approved drug for the treatment of advanced hepatocellular carcinoma (HCC) and other malignancies. Studies indicate that TGF-β signalling is associated with tumour progression in HCC. Autocrine and paracrine TGF-β promotes tumour growth and malignancy by inducing epithelial-mesenchymal transition (EMT). Sorafenib is believed to antagonize tumour progression by inhibiting TGF-β-induced EMT. It improves survival of patients but HCC later develops resistance and relapses. The underlying mechanism of resistance is unknown. Understanding of the molecular mechanism of sorafenib inhibition of TGF-β-induced signalling or responses in HCC may lead to development of adjunctive effective therapy for HCC. In this study, we demonstrate that sorafenib suppresses TGF-β responsiveness in hepatoma cells, hepatocytes, and animal liver, mainly by downregulating cell-surface type II TGF-β receptors (TβRII) localized in caveolae/lipid rafts and non-lipid raft microdomains via caveolae/lipid rafts-mediated internalization and degradation. Furthermore, sorafenib-induced downregulation and degradation of cell-surface TβRII is prevented by simultaneous treatment with a caveolae disruptor or lysosomal inhibitors. On the other hand, sorafenib only downregulates cell-surface TβRII localized in caveolae/lipid rafts but not localized in non-lipid raft microdomains in hepatic stellate cells. These results suggest that sorafenib inhibits TGF-β signalling mainly by inducing caveolae/lipid raft-mediated internalization and degradation of cell-surface TβR-II in target cells. They may also imply that treatment with agents which promote formation of caveolae/lipid rafts, TGF-β receptor kinase inhibitors (e.g., LY2157299) or TGF-β peptide antagonists (by liver-targeting delivery) may be considered as effective adjunct therapy with sorafenib for HCC."	"Radiolabeled Antibodies Against Müllerian-Inhibiting Substance Receptor, Type II: New Tools for a Theranostic Approach in Ovarian Cancer. We have developed the 16F12 mouse monoclonal antibody (mAb), which targets the Müllerian-inhibiting substance receptor, type II (MISRII), expressed by ovarian tumors. Here, we assessed in preclinical models the possibility of using radiolabeled 16F12 in a theranostic approach for small-volume ovarian peritoneal carcinomatosis, such as after cytoreductive surgery. Methods: DOTA-, DTPA- or deferoxamine mesylate-conjugated 16F12 mAb was radiolabeled with β-particle (<sup>177</sup>Lu) or α-particle (<sup>213</sup>Bi) emitters for therapeutic use and with <sup>89</sup>Zr for PET imaging. On the 13th postxenograft day, mice bearing intraperitoneal MISRII-positive AN3CA endometrial carcinoma cell xenografts were treated by conventional intraperitoneal radioimmunotherapy (IP-RIT) with 10 MBq of <sup>177</sup>Lu-16F12 or 12.9 MBq of <sup>213</sup>Bi-16F12 or by brief intraperitoneal radioimmunotherapy (BIP-RIT) using 50 MBq of <sup>177</sup>Lu-16F12 or 37 MBq of <sup>213</sup>Bi-16F12. For BIP-RIT, 30 min after injection of the radiolabeled mAbs, the peritoneal cavity was washed to remove the unbound radioactivity. The biodistribution of <sup>177</sup>Lu- and <sup>213</sup>Bi-16F12 mAbs was determined and then used for dose assessment. Hematologic toxicity was also monitored. Results: The 16F12 mAb was satisfactorily radiolabeled for both therapy and imaging. IP-RIT with <sup>177</sup>Lu-16F12 was slightly more efficient in delaying tumor growth than IP-RIT with <sup>213</sup>Bi-16F12. Conversely, <sup>213</sup>Bi-16F12 was more efficient than <sup>177</sup>Lu-16F12 in BIP-RIT. The biodistribution analysis showed that the tumor-to-blood uptake ratio was significantly higher with BIP-RIT than with IP-RIT for both <sup>213</sup>Bi- and <sup>177</sup>Lu-16F12. Hematologic toxicity was more pronounced with <sup>177</sup>Lu-16F12 than with <sup>213</sup>Bi-16F12. SPECT/CT images (after BIP-RIT with <sup>177</sup>Lu-16F12) and PET/CT images (after injection of <sup>89</sup>Zr-16F12 in the tail vein) showed focal uptake at the tumor site. Conclusion: Radiolabeled 16F12 could represent a new theranostic tool for small-volume ovarian peritoneal carcinomatosis. Specifically, <sup>213</sup>Bi-16F12-based BIP-RIT could be proposed to selected patients as an alternative adjuvant treatment immediately after cytoreductive surgery. An anti-MISRII mAb is currently being used in a first-in-human study, thus making radiolabeled anti-MISRII mAbs a realistic theranostic option for the clinic."	"Atrial overexpression of microRNA-27b attenuates angiotensin II-induced atrial fibrosis and fibrillation by targeting ALK5. Atrial fibrosis influences atrial fibrillation (AF) development by transforming growth factor beta 1 (TGF-β1)/Smad pathway. Although microRNAs are implicated in the pathogenesis of various diseases, information regarding the functional role of microRNAs in atrial dysfunction is limited. In the present study, we found that microRNA-27b (miR-27b) was the dominant member of miR-27 family expressed in left atrium. Moreover, the expression of miR-27b was significantly reduced after angiotensin II (AngII) infusion. Masson's trichrome staining revealed that delivery of miR-27b adeno-associated virus to left atrium led to a decrease in atrial fibrosis induced by AngII. The increased expression of collagen I, collagen III, plasminogen activator inhibitor type 1 and alpha smooth muscle actin was also inhibited after miR-27b upregulation. In isolated perfused hearts, miR-27b restoration markedly attenuated AngII-induced increase in interatrial conduction time, AF incidence and AF duration. Furthermore, our data evidence that miR-27b is a novel miRNA that targets ALK5, a receptor of TGF-β1, through binding to the 3' untranslated region of ALK5 mRNA. Ectopic miR-27b suppressed luciferase activity and expression of ALK5, whereas inhibition of miR-27b increased ALK5 luciferase activity and expression. Additionally, miR-27b inhibited AngII-induced Smad-2/3 phosphorylation without altering Smad-1 activity. Taken together, our study demonstrates that miR-27b ameliorates atrial fibrosis and AF through inactivation of Smad-2/3 pathway by targeting ALK5, suggesting miR-27b may play an anti-fibrotic role in left atrium and function as a novel therapeutic target for the treatment of cardiac dysfunction."	"Fatal demyelinating disease is induced by monocyte-derived macrophages in the absence of TGF-β signaling. The cytokine transforming growth factor-β (TGF-β) regulates the development and homeostasis of several tissue-resident macrophage populations, including microglia. TGF-β is not critical for microglia survival but is required for the maintenance of the microglia-specific homeostatic gene signature<sup>1,2</sup>. Under defined host conditions, circulating monocytes can compete for the microglial niche and give rise to long-lived monocyte-derived macrophages residing in the central nervous system (CNS)<sup>3-5</sup>. Whether monocytes require TGF-β for colonization of the microglial niche and maintenance of CNS integrity is unknown. We found that abrogation of TGF-β signaling in CX3CR1<sup>+</sup> monocyte-derived macrophages led to rapid onset of a progressive and fatal demyelinating motor disease characterized by myelin-laden giant macrophages throughout the spinal cord. Tgfbr2-deficient macrophages were characterized by high expression of genes encoding proteins involved in antigen presentation, inflammation and phagocytosis. TGF-β is thus crucial for the functional integration of monocytes into the CNS microenvironment."	"An investigation of oyster TGF-β receptor genes and their potential roles in early molluscan development. Though the roles of BMP signaling in development is studied extensively in insects and vertebrates, our knowledge of BMP signaling in molluscan development is limited. In the present study, we performed a genome-based analysis of TGF-β receptors in the Pacific oyster Crassostrea gigas and revealed that C. gigas possessed all five canonical members of the gene family, including three type I and two type II receptors. Whole mount in situ hybridization revealed that four receptor genes exhibited universal expression at the gastrula stage but cgi-bmprII mRNA was only expressed at the anterior lip of blastopore, indicating the regulation of BMP signaling through restricted expression of TGF-β receptors. Treatment of oyster embryos using a BMP signaling inhibitor (dorsomorphin) resulted in obvious changes of the expression of developmental regulatory genes. In particular, three dorsally expressed genes were inhibited and two genes expressed at the opposite side showed increased expression, indicating BMP signaling may function in dorsal-ventral (DV) patterning. Some of the influenced genes were potential shell-formation (pSF) genes, including the well-accepted pSF gene engrailed, and thus this indicates the development of shell field was affected by dorsomorphin treatment. Subsequent scanning electronic observation revealed morphological change of the posterior margin of the shell field. Taken together, these results indicate the roles of BMP signaling in both DV patterning and development of shell field in oyster embryo, which expands our knowledge of early molluscan development."	"Prenatal nicotine exposure intergenerationally programs imperfect articular cartilage via histone deacetylation through maternal lineage. Accumulating evidence has shown that the impact of prenatal environmental factors on the organs of the offspring could last until the adulthood. Here, we aimed to investigate these effects and the potential mechanism of prenatal nicotine exposure (PNE) on the female adult cartilage of the first generation (PNE-F1) and the second generation (PNE-F2). Pregnant Wistar rats were injected with 2.0 mg/kg.d nicotine from gestational day (GD) 9 to 20. Then their F1 generation at GD20 and postnatal week (PW) 12, and F2 generation at PW12 were harvested. The expression of extracellular matrix (ECM) and transforming growth factor β (TGFβ) signaling genes were analyzed by real-time quantitative PCR, and the histone acetylation was examined by chromatin immunoprecipitation assay. The results showed that PNE reduced the ECM and TGFβ signaling gene expressions in both PNE-F1 and PNE-F2 female adult articular cartilage. In the F1 generation, PNE inhibited the acetylation at H3K9 of TGFβ, TGFβ receptor 1 (TGFβR1), SRY-type high mobility group box 9 (SOX9), a1 chain of type II collagen (COL2A1) and aggrecan (ACAN) gene promoters at both GD20 and PW12. In PNE-F2 at PW12, the obvious deacetylation at H3K9 of the TGFβR1 and COL2A1 promoters still existed. Moreover, in rat fetal chondrocytes, corticosterone rather than nicotine directly induced the hypoacetylation of H3K9 of TGFβR1 and COL2A1 genes, which might be the main cause of imperfect cartilage for PNE-F2. This study may be helpful to elucidate the developmental variability of articular cartilage quality and useful for the early prevention of articular damage."	"CST3 and GDF15 ameliorate renal fibrosis by inhibiting fibroblast growth and activation. The final strategies to care patients with end-stage renal fibrosis rely on dialysis and kidney transplantation. Because such treatments are invasive and cause health problems eventually, it is necessary to develop new therapeutic strategies for delaying the disease progress. We here searched for cytokines showing an anti-fibrotic activity in cell-based experiments. Cystatin C (CST3) and Growth differentiation factor 15 (GDF15) were identified to have anti-fibrotic activities in a cytokine array screening. In primary fibroblasts isolated from the mouse kidneys subjected to ureteral obstruction-induced fibrosis, each cytokine induced apoptotic cell death and reduced collagen production. These anti-fibrotic effects were further augmented by co-administration of both cytokines. Mechanistically, CST3 and GDF15 were found to block the TGF-β receptor and the N-Myc signaling pathways, respectively. In mice with unilateral ureter obstruction, each cytokine and the combination of two cytokines effectively reduced the fibrotic burden in the subjected kidneys. Therefore, we propose that CST3 and GDF15 could be potential candidates for biopharmaceutics to ameliorate renal fibrosis."	"Discoidin Domain Receptor 2 Signaling Regulates Fibroblast Apoptosis through PDK1/Akt. Progressive fibrosis is a complication of many chronic diseases, and collectively, organ fibrosis is the leading cause of death in the United States. Fibrosis is characterized by accumulation of activated fibroblasts and excessive deposition of extracellular matrix proteins, especially type I collagen. Extensive research has supported a role for matrix signaling in propagating fibrosis, but type I collagen itself is often considered an end product of fibrosis rather than an important regulator of continued collagen deposition. Type I collagen can activate several cell surface receptors, including α2β1 integrin and discoidin domain receptor 2 (DDR2). We have previously shown that mice deficient in type I collagen have reduced activation of DDR2 and reduced accumulation of activated myofibroblasts. In the present study, we found that DDR2-null mice are protected from fibrosis. Surprisingly, DDR2-null fibroblasts have a normal and possibly exaggerated activation response to transforming growth factor-β and do not have diminished proliferation compared with wild-type fibroblasts. DDR2-null fibroblasts are significantly more prone to apoptosis, in vitro and in vivo, than wild-type fibroblasts, supporting a paradigm in which fibroblast resistance to apoptosis is critical for progression of fibrosis. We have identified a novel molecular mechanism by which DDR2 can promote the activation of a PDK1 (3-phosphoinositide dependent protein kinase-1)/Akt survival pathway, and we have found that inhibition of PDK1 can augment fibroblast apoptosis. Furthermore, our studies demonstrate that DDR2 expression is heavily skewed to mesenchymal cells compared with epithelial cells and that idiopathic pulmonary fibrosis cells and tissue demonstrate increased activation of DDR2 and PDK1. Collectively, these findings identify a promising target for fibrosis therapy."	"Identification of rare sequence variation underlying heritable pulmonary arterial hypertension. Pulmonary arterial hypertension (PAH) is a rare disorder with a poor prognosis. Deleterious variation within components of the transforming growth factor-β pathway, particularly the bone morphogenetic protein type 2 receptor (BMPR2), underlies most heritable forms of PAH. To identify the missing heritability we perform whole-genome sequencing in 1038 PAH index cases and 6385 PAH-negative control subjects. Case-control analyses reveal significant overrepresentation of rare variants in ATP13A3, AQP1 and SOX17, and provide independent validation of a critical role for GDF2 in PAH. We demonstrate familial segregation of mutations in SOX17 and AQP1 with PAH. Mutations in GDF2, encoding a BMPR2 ligand, lead to reduced secretion from transfected cells. In addition, we identify pathogenic mutations in the majority of previously reported PAH genes, and provide evidence for further putative genes. Taken together these findings contribute new insights into the molecular basis of PAH and indicate unexplored pathways for therapeutic intervention."	"Identification and Evolution of TGF-β Signaling Pathway Members in Twenty-Four Animal Species and Expression in Tilapia. Transforming growth factor β (TGF-β) signaling controls diverse cellular processes during embryogenesis as well as in mature tissues of multicellular animals. Here we carried out a comprehensive analysis of TGF-β pathway members in 24 representative animal species. The appearance of the TGF-β pathway was intrinsically linked to the emergence of metazoan. The total number of TGF-β ligands, receptors, and smads changed slightly in all invertebrates and jawless vertebrates analyzed. In contrast, expansion of the pathway members, especially ligands, was observed in jawed vertebrates most likely due to the second round of whole genome duplication (2R) and additional rounds in teleosts. Duplications of TGFB2, TGFBR2, ACVR1, SMAD4 and SMAD6, which were resulted from 2R, were first isolated. Type II receptors may be originated from the ACVR2-like ancestor. Interestingly, AMHR2 was not identified in Chimaeriformes and Cypriniformes even though they had the ligand AMH. Based on transcriptome data, TGF-β ligands exhibited a tissue-specific expression especially in the heart and gonads. However, most receptors and smads were expressed in multiple tissues indicating they were shared by different ligands. Spatial and temporal expression profiles of 8 genes in gonads of different developmental stages provided a fundamental clue for understanding their important roles in sex determination and reproduction. Taken together, our findings provided a global insight into the phylogeny and expression patterns of the TGF-β pathway genes, and hence contribute to the greater understanding of their biological roles in the organism especially in teleosts."	"Prognostic Value of ACVRL1 Expression in Metastatic Colorectal Cancer Patients Receiving First-line Chemotherapy With Bevacizumab: Results From the Triplet Plus Bevacizumab (TRIBE) Study. No biomarkers exist to predict benefit from antiangiogenic therapy in metastatic colorectal cancer patients. ACVRL1 (activin receptor like-protein 1) encodes for ALK1, a member of the transforming growth factor-β receptor family, which directs pathologic angiogenesis. We examined the intratumoral expression of ACVRL1 and other angiogenesis pathway-related genes to identify molecular markers in the TRIBE study. Of 503 randomized patients, 228 had sufficient tissue for analysis. Formalin-fixed paraffin-embedded specimens were examined for expression of VEGF-A, VEGF-B, VEGF-C, VEGFR1, VEGFR2, ACVRL1, EphB4, and EGFL7 using reverse transcription polymerase chain reaction. A maximal χ<sup>2</sup> approach was used to determine the messenger RNA levels associated with progression-free survival (PFS), overall survival (OS), response rate, early tumor shrinkage, and depth of response. Recursive partitioning trees were constructed to identify composite prognostic biomarker profiles. External validation was conducted in silico using the Oncomine database. High ACVRL1 expression was associated with superior OS in both treatment arms (FOLFOXIRI [5-fluorouracil, leucovorin, oxaliplatin, irinotecan]-bevacizumab, 32.7 vs. 13.5 months, hazard ratio [HR], 0.38, P = .023; FOLFIRI [5-fluorouracil, leucovorin, irinotecan]-bevacizumab, 35.1 vs. 22.0 months, HR, 0.36, P = .006) and prolonged PFS (11.7 vs. 5.9 months, multivariate HR, 0.17; P = .001) for patients receiving FOLFOXIRI-bevacizumab on univariate and multivariate analyses. In recursive partitioning analysis, ACVRL1 was the strongest discriminator of the response rate, PFS, and OS in patients receiving FOLFOXIRI-bevacizumab and of OS in patients receiving FOLFIRI-bevacizumab. In silico validation revealed significant associations between ACVRL1 expression, disease recurrence, and 1-year survival (P &lt; .05) among all colorectal cancer stages. ACVRL1 expression could serve as a prognostic biomarker in metastatic colorectal cancer patients receiving chemotherapy and bevacizumab and warrants further evaluation in prospective studies."	"TGFB1 modulates in vitro secretory activity and viability of equine luteal cells. In the present report we describe the involvement of transforming growth factor B1 (TGF) in functional regression and structural luteolysis in the mare. Firstly, TGF and its receptors activin-like kinase (ALK) 5 and TGF receptor 2 were identified in corpus luteum (CL) steroidogenic, endothelial and fibroblast-like cells. Also, TGF and ALK5 protein expression were shown to be increased in Mid-, and Late-CL (p &lt; 0.05). Subsequently, using an in vitro model with Mid-CL cells, we studied the role of TGF on secretory activity and cell viability. Cell treatment with TGF decreased progesterone (P4) and prostaglandin (PG) E2 concentrations in culture media (p &lt; 0.05), and downregulated mRNA and protein of StAR, CYP11A1, cPGES and mPGES1 (p &lt; 0.05). Conversely, TGF augmented PGF2a concentration in culture media, through PTGS2 and PGFS gene expression activation (p &lt; 0.05). When cells were incubated with PGF2a, both TGF and ALK5 were upregulated (p &lt; 0.05). Additionally, treatment with the pharmacological inhibitor of ALK5, ALK4 and ALK7 - SB431542 (SB) attenuated PGF2a functional and structural luteolytic actions. Indeed, SB blocked: (i) PGF2a inhibitory effect on StAR, CYP11A1, 3BHSD and mPGES1; (ii) PGF2a auto-amplification signal via PTGS2 and PGFS expression (p &lt; 0.05); (iii) the PGF2a-induced BAX and FASL expression (p &lt; 0.05). Finally, TGF decreased cell viability (p &lt; 0.05) and promoted caspase 3 activity (p = 0.08) and the expression of pro-apoptotic FASL and BAX (p &lt; 0.05). Our results suggest that TGF supports functional regression and structural luteolysis, and also confirm the importance of ALK5, ALK4 and ALK7 activation during PGF2a mediated luteolysis in mares."	"The tumor suppressive TGF-β/SMAD1/S1PR2 signaling axis is recurrently inactivated in diffuse large B-cell lymphoma. The sphingosine-1-phosphate receptor S1PR2 and its downstream signaling pathway are commonly silenced in diffuse large B-cell lymphoma (DLBCL), either by mutational inactivation or through negative regulation by the oncogenic transcription factor FOXP1. In this study, we examined the upstream regulators of S1PR2 expression and have newly identified the transforming growth factor-β (TGF-β)/TGF-βR2/SMAD1 axis as critically involved in S1PR2 transcriptional activation. Phosphorylated SMAD1 directly binds to regulatory elements in the S1PR2 locus as assessed by chromatin immunoprecipitation, and the CRISPR-mediated genomic editing of S1PR2, SMAD1, or TGFBR2 in DLBCL cell lines renders cells unresponsive to TGF-β-induced apoptosis. DLBCL clones lacking any 1 of the 3 factors have a clear growth advantage in vitro, as well as in subcutaneous xenotransplantation models, and in a novel model of orthotopic growth of DLBCL cells in the spleens and bone marrow of MISTRG mice expressing various human cytokines. The loss of S1pr2 induces hyperproliferation of the germinal center (GC) B-cell compartment of immunized mice and accelerates MYC-driven lymphomagenesis in spontaneous and serial transplantation models. The specific loss of Tgfbr2 in murine GC B-cell phenocopies the effects of S1pr2 loss on GC B-cell hyperproliferation. Finally, we show that SMAD1 expression is aberrantly downregulated in &gt;85% of analyzed DLBCL patients. The combined results uncover an important novel tumor suppressive function of the TGF-β/TGF-βR2/SMAD1/S1PR2 axis in DLBCL, and show that DLBCL cells have evolved to inactivate the pathway at the level of SMAD1 expression."	"Interferon-gamma inhibits seminal plasma induction of colony-stimulating factor 2 in mouse and human reproductive tract epithelial cells. Seminal fluid interacts with the female reproductive tract to initiate a permissive immune response that facilitates embryo implantation and pregnancy success. The immune-regulatory cytokine interferon-γ (IFNG), which can be elevated in seminal plasma, is associated with reduced fertility. Here, we investigated how IFNG influences the female immune response to seminal fluid. In human Ect1 cervical epithelial cells, IFNG added at physiologically relevant concentrations substantially impaired seminal plasma-induced synthesis of key cytokines colony-stimulating factor 2 (CSF2) and interleukin-6 (IL6). Seminal fluid-induced CSF2 synthesis was also suppressed in the uterus of mice in vivo, when IFNG was delivered transcervically 12 h after mating. Transforming growth factor B1 (TGFB1) is the major seminal fluid signaling factor which elicits CSF2 induction, and IFNG exhibited potent dose-dependent suppression of CSF2 synthesis induced by TGFB1 in murine uterine epithelial cells in vitro. Similarly, IFNG suppressed TGFB1-mediated CSF2 induction in Ect1 cells and human primary cervical epithelial cells; however, IL6 regulation by IFNG was independent of TGFB1. Quantitative PCR confirmed that CSF2 regulation by IFNG in Ect1 cells occurs at the gene transcription level, secondary to IFNG suppression of TGFBR2 encoding TGFB receptor 2. Conversely, TGFB1 suppressed IFNG receptor 1 and 2 genes IFNGR1 and IFNGR2. These data identify IFNG as a potent inhibitor of the TGFB-mediated seminal fluid interaction with relevant reproductive tract epithelia in mice and human. These findings raise the prospect that IFNG in the male partner's seminal fluid impairs immune adaptation for pregnancy following coitus in women."	"Endoglin pathway genetic variation in preeclampsia: A validation study in Norwegian and Latina cohorts. The purpose of this study was to validate our previous genetic association findings related to the endoglin (ENG) pathway from an American Caucasian preeclampsia cohort in independent preeclampsia cohorts. We also sought to explore the ENG pathway for new genetic associations in these independent cohorts. We used a tagging single nucleotide (tSNP) approach to assess genetic variability across five ENG pathway genes (ENG, TGFβ1, TGFβR1, ALK1, and TGFβR2) in a Caucasian cohort from Norway (n = 77 preeclampsia cases &amp; n = 63 normotensive controls) and a White Hispanic cohort from Southern California (n = 69 preeclampsia cases &amp; n = 106 normotensive controls). Univariate analyses (Chi Square, Fisher's Exact) and multivariate logistic regression were conducted to evaluate the association between tSNP genotype distributions and pregnancy outcome in each cohort. Logistic regression models were adjusted for maternal age at delivery, infant sex, parity, smoking during pregnancy, and pre-pregnancy BMI. Although we were unable to replicate our previous SNP-specific findings (ENG rs11792480, rs10121110; TGFβR2 rs6550005; p's &gt; 0.05), we found that genetic variation in TGFβR1[ALK5] (rs6478974) and TGFβR2 (rs11129420, rs6802220, rs1155708, rs3773640, rs3773663) was significantly associated with preeclampsia in the Norwegian cohort and genetic variation in ALK1 (rs706819) and TGFβR2 (rs9843942) was significantly associated with preeclampsia in the Latina cohort. Overall, our results provide further support for the involvement and investigation of the endoglin pathway in preeclampsia."	"α7-nAChR Knockout Mice Decreases Biliary Hyperplasia and Liver Fibrosis in Cholestatic Bile Duct-Ligated Mice. α7-nAChR is a nicotinic acetylcholine receptor [specifically expressed on hepatic stellate cells (HSCs), Kupffer cells, and cholangiocytes] that regulates inflammation and apoptosis in the liver. Thus, targeting α7-nAChR may be therapeutic in biliary diseases. Bile duct ligation (BDL) was performed on wild-type (WT) and α7-nAChR-/- mice. We first evaluated the expression of α7-nAChR by immunohistochemistry (IHC) in liver sections. IHC was also performed to assess intrahepatic bile duct mass (IBDM), and Sirius Red staining was performed to quantify the amount of collagen deposition. Immunofluorescence was performed to assess colocalization of α7-nAChR with bile ducts (costained with CK-19) and HSCs (costained with desmin). The mRNA expression of α7-nAChR, Ki-67/PCNA (proliferation), fibrosis genes (TGF-β1, fibronectin-1, Col1α1, and α-SMA), and inflammatory markers (IL-6, IL-1β, and TNF-α) was measured by real-time PCR. Biliary TGF-β1 and hepatic CD68 (Kupffer cell marker) expression was assessed using IHC. α7-nAChR immunoreactivity was observed in both bile ducts and HSCs and increased following BDL. α7-nAChR-/- BDL mice exhibited decreased (i) bile duct mass, liver fibrosis, and inflammation, and (ii) immunoreactivity of TGF-β1 as well as expression of fibrosis genes compared to WT BDL mice. α7-nAChR activation triggers biliary proliferation and liver fibrosis and may be a therapeutic target in managing extrahepatic biliary obstruction."	"The orphan GPR50 receptor promotes constitutive TGFβ receptor signaling and protects against cancer development. Transforming growth factor-β (TGFβ) signaling is initiated by the type I, II TGFβ receptor (TβRI/TβRII) complex. Here we report the formation of an alternative complex between TβRI and the orphan GPR50, belonging to the G protein-coupled receptor super-family. The interaction of GPR50 with TβRI induces spontaneous TβRI-dependent Smad and non-Smad signaling by stabilizing the active TβRI conformation and competing for the binding of the negative regulator FKBP12 to TβRI. GPR50 overexpression in MDA-MB-231 cells mimics the anti-proliferative effect of TβRI and decreases tumor growth in a xenograft mouse model. Inversely, targeted deletion of GPR50 in the MMTV/Neu spontaneous mammary cancer model shows decreased survival after tumor onset and increased tumor growth. Low GPR50 expression is associated with poor survival prognosis in human breast cancer irrespective of the breast cancer subtype. This describes a previously unappreciated spontaneous TGFβ-independent activation mode of TβRI and identifies GPR50 as a TβRI co-receptor with potential impact on cancer development."	"Cellular crosstalk mediated by platelet-derived growth factor BB and transforming growth factor β during hepatic injury activates hepatic stellate cells. Apoptotic hepatocytes release factors that activate hepatic stellate cells (HSCs), thereby inducing hepatic fibrosis. In the present study, in vivo and in vitro injury models were established using acetaminophen, ethanol, carbon tetrachloride, or thioacetamide. Histology of hepatotoxicant-induced diseased hepatic tissue correlated with differential expression of fibrosis-related genes. A marked increase in co-staining of transforming growth factor β receptor type II (TGFRIIβ) - desmin or α-smooth muscle actin - platelet-derived growth factor receptor β (PDGFRβ), markers of activated HSCs, in liver sections of these hepatotoxicant-treated mice also depicted an increase in Annexin V - cytokeratin expressing hepatocytes. To understand the molecular mechanisms of disease pathology, in vitro experiments were designed using the conditioned medium (CM) of hepatotoxicant-treated HepG2 cells supplemented to HSCs. A significant increase in HSC proliferation, migration, and expression of fibrosis-related genes and protein was observed, thereby suggesting the characteristics of an activated phenotype. Treating HepG2 cells with hepatotoxicants resulted in a significant increase in mRNA expression of platelet-derived growth factor BB (PDGF-BB) and transforming growth factor β (TGFβ). CM supplemented to HSCs resulted in increased phosphorylation of PDGFRβ and TGFRIIβ along with its downstream effectors, extracellular signal-related kinase 1/2 and focal adhesion kinase. Neutralizing antibodies against PDGF-BB and TGFβ effectively perturbed the hepatotoxicant-treated HepG2 cell CM-induced activation of HSCs. This study suggests PDGF-BB and TGFβ as potential molecular targets for developing anti-fibrotic therapeutics."	"Bushenhuoxue formula attenuates cartilage degeneration in an osteoarthritic mouse model through TGF-β/MMP13 signaling. Articular cartilage degeneration plays a key role in the pathogenesis of osteoarthritis (OA). Bushenhuoxue formula (BSHXF) has been widely used in the treatment of OA in clinics. However, the molecular mechanisms responsible for the chondroprotective effect of BSHXF remain to be elucidated. The purpose of this study was to explore the effects of BSHXF on OA mice model. In this study, we investigated the effects of BSHXF on destabilization of the medial meniscus (DMM)-induced chondrocyte degradation in OA mice model. At 12 weeks post-surgery, the joints were harvested for tissue analyses, including histology, histomorphometry, TUNEL, OARSI scoring, micro-CT and immunohistochemistry for COL2, TGFBR2, pSMAD2 and MMP13. Additionally, we also evaluated the effects of BSHXF on Mmp13 mRNA and protein expression in chondrogenic ATDC5 cells through real-time PCR and Western blot respectively. Moreover, we investigated the chondroprotective effect of BSHXF on mice with Tgfbr2 conditional knockout (Tgfbr2 <sup>Col2ER</sup> mice) in chondrocyte, including the relative experiments mentioned above. We transfected Tgfbr2 siRNA in ATDC5 to further evaluate the changes of Mmp13 mRNA and protein expression followed by BSHXF treatment. Amelioration of cartilage degradation and chondrocyte apoptosis were observed in DMM-induced mice, with increases in cartilage area and thickness, proteoglycan matrix, COL2 content and decreases in OARSI score at 12 weeks post surgery. Moreover, the elevated TGFBR2 and pSMAD2, and reduced MMP13 positive cells were also revealed in DMM-induced mice treated with BSHXF. Besides, decreased Mmp13 mRNA and protein expression were observed inchondrogenic ATDC5 cells culture in serum containing BSHXF. As expected, Tgfbr2 <sup>Col2ER</sup> mice exhibited significant OA-like phenotype. Interestingly, obvious improvement in articular cartilage structure was still observed in Tgfbr2 <sup>Col2ER</sup> mice after BSHXF treatment via up-regulated pSMAD2 and down-regulated MMP13 expressional levels in articular cartilage. BSHXF could inhibit cartilage degradation through TGF-β/MMP13 signaling, and be considered a good option for the treatment of OA."	"Fatal thoracic aortic aneurysm and dissection in a large family with a novel MYLK gene mutation: delineation of the clinical phenotype. Thoracic and abdominal aortic aneurysms and dissection often develop in hypertensive elderly patients. At higher risk are smokers and those who have a family history of aortic aneurysms. In most affected families, the aortic aneurysms and dissection is inherited in an autosomal dominant manner with decreased penetrance and variable expressivity. Mutations at two chromosomal loci, TAA1 at 11q23 and the TAA2 at 5q13-14, and eight genes, MYLK, MYH11, TGFBR2, TGFBR1, ACTA2, SMAD3, TGFB2, and MAT2A, have been identified as being responsible for the disease in 23% of affected families. Herein, we inform on the clinical, genetic and pathological characteristics of nine living and deceased members of a large consanguineous Arab family with thoracic aortic aneurysm and dissection who carry a missense mutation c.4471G &gt; T (Ala1491Ser), in exon 27 of MYLK gene. We show a reduced kinase activity of the Ala1491Ser protein compared to wildtype protein. This mutation is expressed as aortic aneurysm and dissection in one of two distinct phenotypes. A severe fatal and early onset symptom in homozygous or mild late onset in heterozygous genotypes. We found that MYLK gene Ala1491Ser mutation affect the kinase activity and clinically, it presents with vascular aneurysms and dissection. We describe a distinct genotype phenotype correlation where; heterozygous patients have mild late onset and incomplete penetrance disease compared with the early onset severe and generally fatal outcome in homozygous patients."	"Inhibin Is a Novel Paracrine Factor for Tumor Angiogenesis and Metastasis. Inhibin is a heterodimeric TGFβ family ligand that is expressed in many cancers and is a selective biomarker for ovarian cancers; however, its tumor-specific functions remain unknown. Here, we demonstrate that the α subunit of inhibin (INHA), which is critical for the functionality of dimeric inhibin A/B, correlates with microvessel density in human ovarian tissues and is predictive of poor clinical outcomes in multiple cancers. We demonstrate that inhibin-regulated angiogenesis is necessary for metastasis. Although inhibin had no direct impact on tumor cell signaling, both tumor cell-derived and recombinant inhibin elicit a strong paracrine response from endothelial cells by triggering SMAD1/5 activation and angiogenesis in vitro and in vivo Inhibin-induced angiogenesis was abrogated via anti-inhibin α antibodies. The endothelial-specific TGFβ receptor complex comprising ALK1 and endoglin was a crucial mediator of inhibin signaling, offering a molecular mechanism for inhibin-mediated angiogenesis. These results are the first to define a role for inhibin in tumor metastasis and vascularization and offer an antibody-based approach for targeting inhibin therapeutically.Significance: Inhibin is a predictor of poor patient survival in multiple cancers and is a potential target for antiangiogenic therapies. Cancer Res; 78(11); 2978-89. ©2018 AACR."	"Ras enhances TGF-β signaling by decreasing cellular protein levels of its type II receptor negative regulator SPSB1. Transformation by oncogene Ras overcomes TGF-β mediated growth inhibition in epithelial cells. However, it cooperates with each other to mediate epithelial to mesenchymal transition (EMT). The mechanism of how these two pathways interact with each other is controversial. Molecular techniques were used to engineer expression plasmids for Ras, SPRY, TGF-β receptors, type I and II and ubiquitin. Immunoprecipitation and western blots were employed to determine protein-protein interactions, preotein levels, protein phosphorylation while immunofluorecesent staining for molecular co-localization. TGF-β signalling activities is also determined by its luciferase reporter assay. Trans-well assays were used to measure cell migration and invasion. Ras interacts with the SPSB1's SPRY domain to enhance TGF-β signaling. Ras interacts and colocalizes with the TGF-β type II receptor's (TβRII) negative regulator SPSB1 on the cell membrane, consequently promoting SPSB1 protein degradation via enhanced mono- and di-ubiquitination. Reduced SPSB1 levels result in the stablization of TβRII, in turn the increase of receptor levels significantly enhance Smad2/3 phosphorylation and signaling. Importantly, forced expression of SPSB1 in Ras transformed cells suppresses TGF-β signaling and its mediated migration and invasion. Ras positively cooperates with TGF-β signaling by reducing the cellular protein levels of TβRII negative regualtor SPSB1."	"MicroRNA-30c suppresses the pro-fibrogenic effects of cardiac fibroblasts induced by TGF-β1 and prevents atrial fibrosis by targeting TGFβRII. Atrial fibrosis serves as an important contributor to atrial fibrillation (AF). Recent data have suggested that microRNA-30c (miR-30c) is involved in fibrotic remodelling and cancer development, but the specific role of miR-30c in atrial fibrosis remains unclear. The purpose of this study was to investigate the role of miR-30c in atrial fibrosis and its underlying mechanisms through in vivo and in vitro experiments. Our results indicate that miR-30c is significantly down-regulated in the rat abdominal aortic constriction (AAC) model and in the cellular model of fibrosis induced by transforming growth factor-β1 (TGF-β1). Overexpression of miR-30c in cardiac fibroblasts (CFs) markedly inhibits CF proliferation, differentiation, migration and collagen production, whereas decrease in miR-30c leads to the opposite results. Moreover, we identified TGFβRII as a target of miR-30c. Finally, transferring adeno-associated virus 9 (AAV9)-miR-30c into the inferior vena cava of rats attenuated fibrosis in the left atrium following AAC. These data indicate that miR-30c attenuates atrial fibrosis via inhibition of CF proliferation, differentiation, migration and collagen production by targeting TGFβRII, suggesting that miR-30c might be a novel potential therapeutic target for preventing atrial fibrosis."	"Disruption of TFGβ-SMAD3 pathway by the nuclear receptor SHP mediates the antifibrotic activities of BAR704, a novel highly selective FXR ligand. Liver fibrosis, a major health concern worldwide, results from abnormal collagen deposition by activated hepatic stellate cells (HSCs) in an injured liver. The farnesoid-x-receptor (FXR) is a bile acid sensor that counteracts HSCs transdifferentiation. While targeting FXR holds promise, 6-ethyl-CDCA known as obeticholic acid, the first in class of FXR ligands, causes side effects, partially because the lack of selectivity toward GPBAR1, a putative itching receptor. Here, we describe the 3-deoxy-6-ethyl derivative of CDCA, BAR704, as a highly selective steroidal FXR agonist. Liver Fibrosis was induced in mice by carbon tetrachloride (CCl4). In transactivation assay BAR704 activated FXR with and EC50 of 967 nM while exerted no agonistic activity on other receptors including GPBAR1. In naïve mice, BAR704 modulated the expression of FXR target genes in the liver of wild type mice but not in FXR<sup>-/-</sup> mice. In cirrhotic mice, administration of BAR704, 15 mg/kg for 9 weeks, spared the liver biosynthetic activity (bilirubin and albumin plasma levels), reduced liver fibrosis score (Sirius red staining), expression of pro-fibrogenetic (Colα1α, TGFβ and αSMA) and inflammatory genes (IL-1β, TNFα) and portal pressure. From mechanistic stand point, we have found that exposure of LX2 cells, a human HSCs line, to BAR704 increased the transcription of the short heterodimer partner (SHP) and induced the binding of this nuclear receptor to SMAD3, thus abrogating the binding of phosho-SMAD3 to the TGFβ promoter. BAR704 is a selective FXR agonist that reduces liver fibrosis by interfering with the TGFβ-SMAD3 pathway in HSCs. Selective FXR agonists may represent an attractive strategy for the treatment of liver fibrosis."	"Nongenetic Approach for Imaging Protein Dimerization by Aptamer Recognition and Proximity-Induced DNA Assembly. Herein, we report a nongenetic and real-time approach for imaging protein dimerization on living cell surfaces by aptamer recognition and proximity-induced DNA assembly. We use the aptamer specific for the receptor monomer as a recognition probe. When receptor dimerization occurs, the dimeric receptors bring two aptamer probes into close proximity, thereby triggering dynamic DNA assembly. The proposed approach was successfully applied to visualize dimerization of Met receptor and transforming growth factor-β type II receptor. This approach allows us to image the two states (monomer/dimer) of a receptor protein on living cell surfaces in real time, opening a universal method for further investigation of protein dimerization and the corresponding activation processes in signal transduction."	"Midazolam inhibits chondrogenesis via peripheral benzodiazepine receptor in human mesenchymal stem cells. Midazolam, a benzodiazepine derivative, is widely used for sedation and surgery. However, previous studies have demonstrated that Midazolam is associated with increased risks of congenital malformations, such as dwarfism, when used during early pregnancy. Recent studies have also demonstrated that Midazolam suppresses osteogenesis of mesenchymal stem cells (MSCs). Given that hypertrophic chondrocytes can differentiate into osteoblast and osteocytes and contribute to endochondral bone formation, the effect of Midazolam on chondrogenesis remains unclear. In this study, we applied a human MSC line, the KP cell, to serve as an in vitro model to study the effect of Midazolam on chondrogenesis. We first successfully established an in vitro chondrogenic model in a micromass culture or a 2D high-density culture performed with TGF-β-driven chondrogenic induction medium. Treatment of the Midazolam dose-dependently inhibited chondrogenesis, examined using Alcian blue-stained glycosaminoglycans and the expression of chondrogenic markers, such as SOX9 and type II collagen. Inhibition of Midazolam by peripheral benzodiazepine receptor (PBR) antagonist PK11195 or small interfering RNA rescued the inhibitory effects of Midazolam on chondrogenesis. In addition, Midazolam suppressed transforming growth factor-β-induced Smad3 phosphorylation, and this inhibitory effect could be rescued using PBR antagonist PK11195. This study provides a possible explanation for Midazolam-induced congenital malformations of the musculoskeletal system through PBR."	"Integrating genome-wide DNA methylation and mRNA expression profiles identified different molecular features between Kashin-Beck disease and primary osteoarthritis. Kashin-Beck disease (KBD) is an endemic osteochondropathy of unknown etiology. Osteoarthritis (OA) is a form of degenerative joint disease sharing similar clinical manifestations and pathological changes to articular cartilage with KBD. A genome-wide DNA methylation profile of articular cartilage from five KBD patients and five OA patients was first performed using the Illumina Infinium HumanMethylation450 BeadChip. Together with a previous gene expression profiling dataset comparing KBD cartilage with OA cartilage, an integrative pathway enrichment analysis of the genome-wide DNA methylation and the mRNA expression profiles conducted in articular cartilage was performed by InCroMAP software. We identified 241 common genes altered in both the DNA methylation profile and the mRNA expression profile of articular cartilage of KBD versus OA, including CHST13 (NM_152889, fold-change = 0.5979, P methy = 0.0430), TGFBR1 (NM_004612, fold-change = 2.077, P methy = 0.0430), TGFBR2 (NM_001024847, fold-change = 1.543, P methy = 0.037), TGFBR3 (NM_001276, fold-change = 0.4515, P methy = 6.04 × 10<sup>-4</sup>), and ADAM12 (NM_021641, fold-change = 1.9768, P methy = 0.0178). Integrative pathway enrichment analysis identified 19 significant KEGG pathways, including mTOR signaling (P = 0.0301), glycosaminoglycan biosynthesis-chondroitin sulfate/dermatan sulfate (P = 0.0391), glycosaminoglycan biosynthesis-keratan sulfate (P = 0.0278), and PI3K-Akt signaling (P = 0.0243). This study identified different molecular features between Kashin-Beck disease and primary osteoarthritis and provided novel clues for clarifying the pathogenetic differences between KBD and OA."	"CC-401 Promotes β-Cell Replication via Pleiotropic Consequences of DYRK1A/B Inhibition. Pharmacologic expansion of endogenous β cells is a promising therapeutic strategy for diabetes. To elucidate the molecular pathways that control β-cell growth we screened ∼2400 bioactive compounds for rat β-cell replication-modulating activity. Numerous hit compounds impaired or promoted rat β-cell replication, including CC-401, an advanced clinical candidate previously characterized as a c-Jun N-terminal kinase inhibitor. Surprisingly, CC-401 induced rodent (in vitro and in vivo) and human (in vitro) β-cell replication via dual-specificity tyrosine phosphorylation-regulated kinase (DYRK) 1A and 1B inhibition. In contrast to rat β cells, which were broadly growth responsive to compound treatment, human β-cell replication was only consistently induced by DYRK1A/B inhibitors. This effect was enhanced by simultaneous glycogen synthase kinase-3β (GSK-3β) or activin A receptor type II-like kinase/transforming growth factor-β (ALK5/TGF-β) inhibition. Prior work emphasized DYRK1A/B inhibition-dependent activation of nuclear factor of activated T cells (NFAT) as the primary mechanism of human β-cell-replication induction. However, inhibition of NFAT activity had limited effect on CC-401-induced β-cell replication. Consequently, we investigated additional effects of CC-401-dependent DYRK1A/B inhibition. Indeed, CC-401 inhibited DYRK1A-dependent phosphorylation/stabilization of the β-cell-replication inhibitor p27Kip1. Additionally, CC-401 increased expression of numerous replication-promoting genes normally suppressed by the dimerization partner, RB-like, E2F and multivulval class B (DREAM) complex, which depends upon DYRK1A/B activity for integrity, including MYBL2 and FOXM1. In summary, we present a compendium of compounds as a valuable resource for manipulating the signaling pathways that control β-cell replication and leverage a DYRK1A/B inhibitor (CC-401) to expand our understanding of the molecular pathways that control β-cell growth."	"Testing patterns for genetically triggered aortic and arterial aneurysms and dissections at an academic center. The contemporary practice of testing for genetically triggered aortic and arterial aneurysms and dissections is not well described. This study aimed to describe this practice at a tertiary care academic center and to ascertain the yield of testing in establishing the diagnosis in patients referred on the basis of clinical suspicion. This is a retrospective cohort study of patients referred for vascular genetic testing at an academic medical center between 2010 and 2015. Patients were identified by Current Procedural Terminology diagnostic codes 81405, 81408, and 81479 for genetic testing (Marfan syndrome, Loeys-Dietz syndrome, aneurysms-osteoarthritis syndrome, COL3A1, and familial thoracic aortic aneurysm panel [ACTA2, COL3A1, TGFBR1, TGFBR2, SMAD3, TGFB2, MYLK, MYH11, and PRKG1 genes]) and by review of the collagen vascular laboratory database for genetic testing results. Data abstracted included demographics, clinical history, reason for referral, family history, referring provider type, and outcomes of genetic testing. Ninety-six patients (44.3% male; median age, 40.8 years) were referred for suspected genetic vascular disease. Genetic testing was performed in 75 cases thought to have heritable mutations related to aortic or arterial aneurysms and dissections. The most common reason for genetic testing was a personal history of aortic or arterial aneurysms and dissections (62.3%; mean age, 45.8 ± 11.1 years), followed by a family history of aortic or arterial aneurysms and dissections without a personal history (26.6%; age, 28.8 ± 17.9 years). The most common genetic testing performed was a familial thoracic aortic aneurysm gene panel (44%), followed by single gene testing for vascular Ehlers-Danlos syndrome (33.3%). Genetic testing identified a pathogenic mutation in 36% of the cases. The highest likelihood of identifying a pathogenic mutation was in those who had a family history with an already diagnosed mutation (57.1%), followed by patients with aortic root and ascending aortic aneurysm or dissection (42.3%). In patients with suspected genetically triggered vascular disease, the yield of clinical vascular genetic testing is reasonable when selective genetic testing is performed on the basis of personal or family history. These tests should be obtained with appropriate expertise in genetic counseling and interpretation of genetic testing results. Negative genetic test results in the setting of a positive family history demonstrate the limits of testing and known mutations leading to genetically triggered aortic and arterial aneurysms and dissections and support the need for novel gene discovery."	"Quantitative Characterization of the Membrane Dynamics of Newly Delivered TGF-β Receptors by Single-Molecule Imaging. The dynamics and stoichiometry of receptors newly delivered on the plasma membrane play a vital role in cell signal transduction, yet knowledge of this process is limited because of the lack of suitable analytical methods. Here we developed a new strategy that combines single-molecule imaging (SMI) and fluorescence recovery after photobleaching (FRAP), named FRAP-SMI, to monitor and quantify individual newly delivered and inserted transmembrane receptors on plasma membranes of living cells. Transforming-growth-factor-β type II receptor (TβRII), a typical serine/threoninekinase receptor, was studied with this method. We first eliminated the fluorescence signals from the pre-existing EGFP-labeled TβRII molecules on the plasma membrane, and then we recorded the individual newly appeared TβRII-GFP by total-internal-reflection fluorescence imaging. The fluorescence-intensity distributions, photobleaching steps, and diffusion rates of the single TβRII-GFP molecules were analyzed. We reported, for the first time, that TβRII was transported to the plasma membrane mainly in the monomeric form in both resting and TGF-β1stimulated cells. This strongly supported our former discovery that TβRII could exist as a monomer on the cell membrane. We also found that ligand stimulation resulted in enhanced delivery rates and prolonged membrane-association times for the TβRII molecules. On the basis of these observations, we proposed a mechanism of TGF-β1-induced TβRII dimerization for receptor activation. Our method provides a useful tool for the real-time quantification of the spatial arrangement, mobility, and oligomerization of cell-surface proteins in living cells, thus providing a better understanding of cell signaling."	"Neuronal Transforming Growth Factor beta Signaling via SMAD3 Contributes to Pain in Animal Models of Chronic Pancreatitis. Chronic pancreatitis (CP) is characterized by pancreatic inflammation and fibrosis, associated with increased pancreatic expression of transforming growth factor beta (TGFB). It is not clear how these might contribute to pain. We investigated whether TGFB signaling via SMAD induces sensitization of pancreatic sensory neurons to increase nociception. CP was induced in Sprague-Dawley rats by infusion of trinitrobenzene sulfonic acid; some rats were given intrathecal infusions of TGFB1. CP was induced in control mice by administration of cerulein; we also studied β1glo/Ptf1acre-ER mice, which on induction overexpress TGFB1 in pancreatic acinar cells, and TGFBr1<sup>f/f-CGRPcreER</sup> mice, which have inducible disruption of TGFBr1 in calcitonin gene-related peptide-positive neurons. Dominant negative forms of human TGFBR2 and SMAD3 were overexpressed from viral vectors in rat pancreas. Some rats were given the SMAD3 inhibitors SIS3 or halofuginone. After induction of CP, mice were analyzed for pain in behavior tests or electrophysiologic studies of sensory neurons. Pancreatic nociceptor excitability was examined by patch-clamp techniques and nociception was measured by Von Frey Filament tests for referred somatic hyperalgesia and behavioral responses to pancreatic electrical stimulation. Pancreata were collected from mice and rats and analyzed histologically and by enzyme-linked immunosorbent assay and immunohistochemistry. Overexpression of TGFB in pancreatic acinar cells of mice and infusion of TGFB1 into rats resulted in sensory neuron hyperexcitability, SMAD3 activation, and increased nociception. This was accompanied by a reduction in the transient A-type current in pancreas-specific sensory neurons in rats, a characteristic of nociceptive sensitization in animal models of CP. Conversely, pancreata from TGFBr1<sup>f/f-CGRPcreER</sup> mice, rats with pancreatic expression of dominant negative forms of human TGFBR2 or SMAD3, and rats given small molecule inhibitors of SMAD3 had attenuated neuronal sensitization and pain behavior following induction of CP. In contrast to findings from peripheral administration of TGFB1, intrathecal infusion of TGFB1 reduced hyperalgesia in rats with CP. In pancreata of mice and rats, TGFB promotes peripheral nociceptive sensitization via a direct effect on primary sensory neurons mediated by intra-neuronal SMAD3. This is distinct from the central nervous system, where TGFB reduces nociception. These results provide an explanation for the link between fibrosis and pain in patients with CP. This signaling pathway might be targeted therapeutically to reduce pain in patients with CP."	"Next-generation sequencing of idiopathic multicentric and unicentric Castleman disease and follicular dendritic cell sarcomas. Castleman disease (CD) is a rare lymphoproliferative disorder subclassified as unicentric CD (UCD) or multicentric CD (MCD) based on clinical features and the distribution of enlarged lymph nodes with characteristic histopathology. MCD can be further subtyped based on human herpes virus 8 (HHV8) infection into HHV8-associated MCD, HHV8<sup>-</sup>/idiopathic MCD (iMCD), and polyneuropathy, organomegaly, endocrinopathy, monoclonal gammopathy, and skin change (POEMS)-associated MCD. In a subset of cases of UCD, an associated follicular dendritic cell sarcoma (FDCS) may be seen. Although numerous reports of the clinical and histologic features of UCD, MCD, and FDCS exist, an understanding of the genetic and epigenetic landscape of these rare diseases is lacking. Given this paucity of knowledge, we analyzed 15 cases of UCD and 3 cases of iMCD by targeted next-generation sequencing (NGS; 405 genes) and 3 cases of FDCS associated with UCD hyaline vascular variant (UCD-HVV) by whole-exome sequencing. Common amplifications of ETS1, PTPN6, and TGFBR2 were seen in 1 iMCD and 1 UCD case; the iMCD case also had a somatic DNMT3A L295Q mutation. This iMCD patient also showed clinicopathologic features consistent with a specific subtype known as Castleman-Kojima disease (thrombocytopenia, anasarca, fever, reticulin fibrosis, and organomegaly [TAFRO] clinical subtype). Additionally, 1 case of UCD-HVV showed amplification of the cluster of histone genes on chromosome 6p. FDCS associated with UCD-HVV showed mutations and copy number changes in known oncogenes, tumor suppressors, and chromatin structural-remodeling proteins."	"USP2a Supports Metastasis by Tuning TGF-β Signaling. TGF-β has been demonstrated to promote tumor metastasis, and the regulatory mechanisms are poorly understood. Here, we report the role of USP2a in promoting metastasis by facilitating TGF-β-triggered signaling. USP2a interacts with TGFBR1 and TGFBR2 upon TGF-β stimulation and removes K33-linked polyubiquitin chains from Lys502 of TGFBR1, promoting the recruitment of SMAD2/3. Simultaneously, TGFBR2 phosphorylates Ser207/Ser225 of USP2a, leading to the disassociation of SMAD2/3 from TGFBR1. The phosphorylation of USP2a and SMAD2 is positively correlated in human tumor biopsies, and USP2a is hyper-phosphorylated in lung adenocarcinomas with lymph node invasion. Depletion or pharmacologic inhibition of USP2a dampens TGF-β-triggered signaling and metastasis. Our findings have characterized an essential role of USP2a as a potential target for treatment of metastatic cancers."	"Anti-fibrotic effect of rosmarinic acid on inhibition of pterygium epithelial cells. To investigate the anti-fibrosis effect of rosmarinic acid (RA) in pterygium epithelial cells (PECs) to determine if RA is a potent agent for treating pterygium. The PECs (1×10<sup>4</sup> cells/mL) were treated with 100 µmol/L of RA for 1, 3 and 6h. After RA treatment, the cell viability was determined by staining with acridine orange/DAPI and analysis via a NucleoCounter NC-3000. The protein expression levels of type I collagen, transforming growth factor beta-1 (TGF-β1), TGF-β type II receptor (TGF-βRII), p-Smad1/5, p-Smad2, p-Smad3, and Smad4 of the cell lysates were measured by Western blot analysis. The cell viability of PECs was significantly decreased after RA treatment (P&lt;0.01). As the result, RA reduced the protein expression of type I collagen and TGF-β1 of PECs. Additionally, RA also inhibited TGF-β1/Smad signaling by decreasing the protein expressions of TGF-βRII, p-Smad1/5, p-Smad2, p-Smad3, and Smad4. This study demonstrate that RA could inhibit fibrosis of PECs by down-regulating type I collagen expression and TGF-β1/Smad signaling. Therefore, RA is a potent therapeutic agent for the treatment of pterygium."	"Network of MicroRNAs Mediate Translational Repression of Bone Morphogenetic Protein Receptor-2: Involvement in HIV-Associated Pulmonary Vascular Remodeling. Earlier, we reported that the simultaneous exposure of pulmonary arterial smooth muscle cells to HIV proteins and cocaine results in the attenuation of antiproliferative bone morphogenetic protein receptor-2 (BMPR2) protein expression without any decrease in its mRNA levels. Therefore, in this study, we aimed to investigate the micro RNA-mediated posttranscriptional regulation of BMPR2 expression. We identified a network of BMPR2 targeting micro RNAs including miR-216a to be upregulated in response to cocaine and Tat-mediated augmentation of oxidative stress and transforming growth factor-β signaling in human pulmonary arterial smooth muscle cells. By using a loss or gain of function studies, we observed that these upregulated micro RNAs are involved in the Tat- and cocaine-mediated smooth muscle hyperplasia via regulation of BMPR2 protein expression. These in vitro findings were further corroborated using rat pulmonary arterial smooth muscle cells isolated from HIV transgenic rats exposed to cocaine. More importantly, luciferase reporter and in vitro translation assays demonstrated that direct binding of novel miR-216a and miR-301a to 3'UTR of BMPR2 results in the translational repression of BMPR2 without any degradation of its mRNA. We identified for the first time miR-216a as a negative modulator of BMPR2 translation and observed it to be involved in HIV protein(s) and cocaine-mediated enhanced proliferation of pulmonary smooth muscle cells."	"Triggering the activation of Activin A type II receptor in human adipose stem cells towards tenogenic commitment using mechanomagnetic stimulation. Stem cell therapies hold potential to stimulate tendon regeneration and homeostasis, which is maintained in response to the native mechanical environment. Activins are members of the mechano-responsive TGF-β superfamily that participates in the regulation of several downstream biological processes. Mechanosensitive membrane receptors such as activin can be activated in different types of stem cells via magnetic nanoparticles (MNPs) through remote magnetic actuation resulting in cell differentiation. In this work, we target the Activin receptor type IIA (ActRIIA) in human adipose stem cells (hASCs), using anti-ActRIIA functionalized MNPs, externally activated through a oscillating magnetic bioreactor. Upon activation, the phosphorylation of Smad2/3 is induced allowing translocation of the complex to the nucleus, regulating tenogenic transcriptional responses. Our study demonstrates the potential remote activation of MNPs tagged hASCs to trigger the Activin receptor leading to tenogenic differentiation. These results may provide insights toward tendon regeneration therapies."	"TGF-β1/TβRII/Smad3 signaling pathway promotes VEGF expression in oral squamous cell carcinoma tumor-associated macrophages. Oral squamous cell carcinoma (OSCC) is the most common type of malignant cancer affecting the oral cavity. Tumor associated macrophages (TAMs) play a vital role in the initiation, progression and metastasis of OSCC. In this study, we investigated the correlation between macrophages and several clinical and pathological indicators, and we also explored how transforming growth factor-β1 (TGF-β1) effect on VEGF expression in TAMs. Seventy-two paraffin-embedded OSCC samples were collected. Association between macrophages density, micro vascular density (MVD) and clinical-pathological feature were explored by immunohistochemical staining. Western blot, ELISA and qRT-PCR were conducted to assess the VEGF expression in TAMs treated with or without neutralizing TGF-β1, TβRII and smad3 antibodies. Results showed that CD68<sup>+</sup> macrophages were absent in normal tissues. Macrophages density was directly correlated to low pathological differentiation, late clinical staging and poor survival rate. MVD showed positive correlation with clinical staging and macrophages density. Furthermore, OSCC-associated macrophages expressed more VEGF than macrophages in healthy lymph nodes. However, when TGF-β1 or TβRII were neutralized or the Smad3 was inhibited, VEGF expression was down regulated as well. It is concluded that TGF-β1 could promote OSCC-associated macrophages to secrete more VEGF via TβRII/Smad3 signaling pathway. This result might explain the correlation between macrophages density and worse clinical-pathological condition."	"SNAIL Mediates TGF-β1-Induced Downregulation of Pentraxin 3 Expression in Human Granulosa Cells. Transforming growth factor-β (TGF-β) 1 plays a critical role in regulating follicular development, and its dysregulation has been shown to be involved in the pathogenesis of ovulation dysfunction. SNAIL is a well-known transcriptional repressor that mediates TGF-β1-induced cellular functions. Pentraxin 3 (PTX3) is a key enzyme for the assembly and stabilization of the cumulus oophorus extracellular matrix, which is essential for cumulus expansion during the periovulatory stage. The purpose of the present study was to investigate the roles of TGF-β1 and SNAIL in the regulation of PTX3 expression and to examine the underlying mechanism. An established immortalized human granulosa cell (GC) line (SVOG), a GC tumor cell line (KGN), and primary human granulosa-lutein cells were used as study models. We demonstrated that TGF-β1 treatment substantially decreased the messenger RNA and protein levels of PTX3. This suppressive effect was abolished by cotreatment with the soluble TGF-β type II receptor (TβRII) or the ALK4/5/7 inhibitor SB431542. Knockdown of ALK5, SMAD2/3, or SMAD4 reversed the effects of TGF-β1-induced SNAIL upregulation and PTX3 suppression. These results indicate that TGF-β1 upregulates SNAIL and downregulates PTX3 expression via a TβRII-ALK5-mediated SMAD-dependent signaling pathway in human GCs. Additionally, TGF-β1-induced PTX3 suppression was mediated by upregulation of the SNAIL transcription factor, as knockdown of SNAIL completely reversed the suppression of PTX3 in response to TGF-β1. These findings could inform the roles of TGF-β1 and SNAIL in the regulation of follicular function and might provide therapeutic targets for the treatment of ovulation dysfunction."	"The role of zinc plus octenidine in the regulation of gene expression: an in vitro study. Zinc was known in ancient times, and is diffused in the environment. The potential benefits offered by zinc supplementary therapy have been demonstrated in numerous clinical trials using oral or topical zinc products. The benefit of zinc can be in principle increased through association with other actives. The aim of this study is to evaluate the effect on primary human gingival fibroblast cell of a new formulation containing zinc and octenidine cations. Human gingival fibroblast cells were obtained from three healthy patients (14-year-old man, 15-year-old woman and 20-year-old man) during extraction of teeth. The gene expression of 14 genes (ELANE, FN1, FBN, ITGA1, HAS1, ELN, DSP, ITGB1, HYAL1,TGFB1, TGFB2, TGFB3, TGFBR1 and TGFBR2) was investigated in HGF cell culture treated with 80μm of Octenidine, 1000μm of Zinc, 80μm Octenidine + Zinc solution and the medium alone at 30 min. Prestoblue™ data showed that as the active concentration increases (Octenidine, Zinc and Octenidine + Zinc) the percentage of cell vitality compared to that of untreated cells decrease. In this study, no statistically significant gene expression was observed between cells, treated with difference substances, and control cells. Our results points out that zinc plus octenidine shows a positive potential in periodontal disease treatment."	"ALK1 Loss Results in Vascular Hyperplasia in Mice and Humans Through PI3K Activation. ALK1 (activin-receptor like kinase 1) is an endothelial cell-restricted receptor with high affinity for BMP (bone morphogenetic protein) 9 TGF-β (transforming growth factor-β) family member. Loss-of-function mutations in ALK1 cause a subtype of hereditary hemorrhagic telangiectasia-a rare disease characterized by vasculature malformations. Therapeutic strategies are aimed at reducing potential complications because of vascular malformations, but currently, there is no curative treatment for hereditary hemorrhagic telangiectasia. In this work, we report that a reduction in ALK1 gene dosage (heterozygous ALK1<sup>+/</sup><sup>-</sup> mice) results in enhanced retinal endothelial cell proliferation and vascular hyperplasia at the sprouting front. We found that BMP9/ALK1 represses VEGF (vascular endothelial growth factor)-mediated PI3K (phosphatidylinositol 3-kinase) by promoting the activity of the PTEN (phosphatase and tensin homolog). Consequently, loss of ALK1 function in endothelial cells results in increased activity of the PI3K pathway. These results were confirmed in cutaneous telangiectasia biopsies of patients with hereditary hemorrhagic telangiectasia 2, in which we also detected an increase in endothelial cell proliferation linked to an increase on the PI3K pathway. In mice, genetic and pharmacological inhibition of PI3K is sufficient to abolish the vascular hyperplasia of ALK1<sup>+/</sup><sup>-</sup> retinas and in turn normalize the vasculature. Overall, our results indicate that the BMP9/ALK1 hub critically mediates vascular quiescence by limiting PI3K signaling and suggest that PI3K inhibitors could be used as novel therapeutic agents to treat hereditary hemorrhagic telangiectasia."	"Endothelial cell biology of Endoglin in hereditary hemorrhagic telangiectasia. Mutations in the Endoglin (Eng) gene, an auxiliary receptor in the transforming growth factor beta (TGFβ)-superfamily signaling pathway, are responsible for the human vascular disorder hereditary hemorrhagic telangiectasia (HHT) type 1, characterized in part by blood vessel enlargement. A growing body of work has uncovered an autonomous role for Eng in endothelial cells. We will highlight the influence of Eng on distinct cellular behaviors, such as migration and shape control, which are ultimately important for the assignment of proper blood vessel diameters. How endothelial cells establish hierarchically ordered blood vessel trees is one of the outstanding questions in vascular biology. Mutations in components of the TGFβ-superfamily of signaling molecules disrupt this patterning and cause arteriovenous malformations (AVMs). Eng is a TGFβ coreceptor enhancing signaling through the type I receptor Alk1. Recent studies identified bone morphogenetic proteins (BMPs) 9 and 10 as the primary ligands for Alk1/Eng. Importantly, Eng potentiated Alk1 pathway activation downstream of hemodynamic forces. New results furthermore revealed how Eng affects endothelial cell migration and cell shape control in response to these forces, thereby providing new avenues for our understanding of AVM cause. We will discuss the interplay of Eng and hemodynamic forces, such as shear stress, in relation to Alk1 receptor activation. We will furthermore detail how this signaling pathway influences endothelial cell behaviors important for the establishment of hierarchically ordered blood vessel trees. Finally, we will provide an outlook how these insights might help in developing new therapies for the treatment of HHT."	"TGF-β signalling defect is linked to low CD39 expression on regulatory T cells and methotrexate resistance in rheumatoid arthritis. Rheumatoid arthritis (RA) is an autoimmune arthropathy characterized by chronic articular inflammation. Methotrexate (MTX) remains the first-line therapy for RA and its anti-inflammatory effect is associated with the maintenance of high levels of extracellular adenosine (ADO). Nonetheless, up to 40% of RA patients are resistant to MTX treatment and this is linked to a reduction of CD39 expression, an ectoenzyme involved in the generation of extracellular ADO by ATP metabolism, on circulating regulatory T cells (Tregs). However, the mechanism mediating the reduction of CD39 expression on Tregs is unknown. Here we demonstrated that the impairment in TGF-β signalling lead to the reduction of CD39 expression on Tregs that accounts for MTX resistance. TGF-β increases CD39 expression on Tregs via the activation of TGFBRII/TGFBRI, SMAD2 and the transcription factor CREB, which is activated in a p38-dependent manner and induces CD39 expression by promoting ENTPD1 gene transcription. Importantly, unresponsive patients to MTX (UR-MTX) show reduced expression of TGFBR2 and CREB1 and decreased levels of p-SMAD2 and p-CREB in Tregs compared to MTX-responsive patients (R-MTX). Furthermore, RA patients carrying at least one mutant allele for rs1431131 (AT or AA) of the TGFBR2 gene are significantly (p = 0.0006) associated with UR-MTX. Therefore, we have uncovered a molecular mechanism for the reduced CD39 expression on Tregs, and revealed potential targets for therapeutic intervention for MTX resistance."	"Inhibition of overactive TGF-β attenuates progression of heterotopic ossification in mice. Acquired heterotopic ossification (HO) is a painful and debilitating disease characterized by extraskeletal bone formation after injury. The exact pathogenesis of HO remains unknown. Here we show that TGF-β initiates and promotes HO in mice. We find that calcified cartilage and newly formed bone resorb osteoclasts after onset of HO, which leads to high levels of active TGF-β that recruit mesenchymal stromal/progenitor cells (MSPCs) in the HO microenvironment. Transgenic expression of active TGF-β in tendon induces spontaneous HO, whereas systemic injection of a TGF-β neutralizing antibody attenuates ectopic bone formation in traumatic and BMP-induced mouse HO models, and in a fibrodysplasia ossificans progressive mouse model. Moreover, inducible knockout of the TGF-β type II receptor in MSPCs inhibits HO progression in HO mouse models. Our study points toward elevated levels of active TGF-β as inducers and promoters of ectopic bone formation, and suggest that TGF-β might be a therapeutic target in HO."	"Osteoglycin attenuates cardiac fibrosis by suppressing cardiac myofibroblast proliferation and migration through antagonizing lysophosphatidic acid 3/matrix metalloproteinase 2/epidermal growth factor receptor signalling. Cardiac myofibroblasts (CMFs) play a crucial role in the progression of pathological fibrotic cardiac remodelling. The expression of osteoglycin (OGN) is increased in diseased hearts; however, the role of OGN in pathological cardiac remodelling is not understood. Here, we sought to determine the effect of OGN on cardiac interstitial fibrosis and investigate the molecular mechanisms of OGN in CMF activation and matrix production. We found that OGN expression was significantly upregulated in mouse hearts in response to chronic 14-day angiotensin II (Ang II) infusion. Mice lacking OGN (OGN-/-) exhibited enhanced cardiac interstitial fibrosis and significantly more severe cardiac dysfunction following Ang II infusion compared to wild-type mice. OGN deficiency did not alter blood pressure, nor had effect on transforming growth factor-beta signalling activation, but presented with increased proliferative activity in hearts. In vitro studies with isolated CMFs revealed that OGN deficiency significantly increased proliferation and migration and enhanced the transactivation of epidermal growth factor receptor (EGFR) signalling by Ang II. On the other hand, OGN overexpression in CMFs decreased their proliferation and migration via reducing EGFR activation. Overexpression of OGN also suppressed the shedding of membrane anchored EGFR ligand. Moreover, OGN was found to interact with a lysophosphatidic acid (LPA) receptor isoform 3 and thus to attenuate EGFR transactivation through blocking cell surface translocation of membrane type 1 matrix metalloproteinase (MT1-MMP) and subsequent pro-MMP-2 activation in a Ras homolog gene family, member A (RhoA)/Rho-associated, coiled-coil containing protein kinase (ROCK)-dependent manner. These findings suggest that OGN negatively regulates cardiac fibrotic remodelling by attenuating CMF proliferation and migration through LPA3-mediated and Rho/ROCK-dependent inhibition of MT1-MMP translocation, MMP2 activation and EGFR transactivation."	"Platelet-rich plasma-induced feedback inhibition of activin A/follistatin signaling: A mechanism for tumor-low risk skin rejuvenation in irradiated rats. Platelet-rich plasma (PRP) is a source of natural growth factors and is emerging as a treatment modality to mitigate radiotherapy- induced adverse effects. Activin A (ACTA) is a member of the transforming growth factor-β (TGF-β) superfamily, which has been shown to modulate the inflammatory response and macrophages polarization between different phenotypes. The aim of this study is to determine the value of PRP in preventing radiation-induced malignancies in light of the cross-talk between PRP and activin A type II receptors (ActR-IIA)/follistatin (FST) signaling pathways where the inflammatory responses at 2 different time points were evaluated. Male albino rats were exposed to radiation and given PRP over the course of 6 days. Rats were sacrificed on day 7 or day 28 post radiation. Quantitative real-time reverse transcriptase polymerase chain reaction (QRT-PCR) and western-blot showed that after 7 days of administrating of PRP, ActR-IIA/FST signaling was markedly induced and was associated with the expressions of inflammatory, natural killer and M1 macrophages markers, TNF-α, IL-1β, IFN-γ and IL-12. By contrast, on day 28 of PRP administration, ActR-IIA/FST signaling and the expressions of proinflammatory cytokines were downregulated in parallel with inducing M2 macrophages phenotype as indicated by arginase-1, IL-10 and dectin-1. The suppression of inflammation and induction of M2 macrophages phenotype in response to PRP administration were found significantly linked to ActR-IIA/FST signaling downregulation. Furthermore, the specific M2 macrophage subtype was found to express dectin-1 receptors which have high affinity for tumor cells thereby is expected to reduce the potential for developing tumors after radiotherapy."	"Follicular localization of growth differentiation factor 8 and its receptors in normal and polycystic ovary syndrome ovaries. Polycystic ovary syndrome (PCOS) is the most common endocrine disorder in women of reproductive age and its etiology has not been characterized. Growth differentiation factor 8 (GDF8) is a member of the transforming growth factor-β superfamily that plays a critical role in the regulation of ovarian functions. However, the expression pattern of GDF8 in the human ovary is not yet clear. This study examined the cellular distribution of GDF8 and its putative cellular receptors (ACVR2A, ACVR2B, and ALK5) in a series of normal (n = 34) and PCOS ovaries (n = 14). The immunostaining of GDF8, ACVR2A, ACVR2B, and ALK5 was detected in the oocytes regardless of the developmental stage. All these proteins were localized in antral follicles in normal and PCOS ovaries, and the expression of these proteins increased with increasing follicle diameter. A significantly higher expression of GDF8 was detected in the granulosa cells than in the matched theca cells (TCs). These proteins were also localized in the luteal cells of the corpus luteum. Granulosa cells and TCs of large antral follicles in PCOS ovaries display a higher expression of these proteins. The higher expression levels of GDF8 and its functional receptors (ACVR2A, ACVR2B, and ALK5) in antral follicles of PCOS ovaries than those in normal ovaries suggest the possible involvement of dysregulated GDF8 in the pathogenesis of PCOS."	"Effect of superstimulation on the expression of microRNAs and genes involved in steroidogenesis and ovulation in Nelore cows. To better understand the impact of ovarian superstimulation on bovine follicular microenvironment, Nelore cows (Bos taurus indicus) were subjected to ovarian superstimulation with follicle stimulating hormone (FSH, n = 10; P-36 protocol) or FSH combined with eCG (n = 10; P-36/eCG protocol). Follicular fluid was analyzed for cholesterol concentration. Granulosa cells were analyzed by RT-qPCR to assess the expression of genes involved in steroidogenic and ovulatory and expression of microRNAs involved in final follicular development and luteinizing hormone/choriogonadotropin receptor (LHCGR) expression. Plasma concentration of estradiol was also measured. Follicular fluid from the P-36 group showed higher concentration of cholesterol than that of control (non-superstimulated) cows. Plasma concentration of estradiol was higher in the P-36/eCG group. Abundance of STAR and FSHR mRNAs were lower in granulosa cells from the P-36/eCG group. In contrast, LHCGR mRNA abundance was higher in superstimulated granulosa cells from the P-36 group and showed a pattern opposite to that of miR-222 expression. Ovarian superstimulation did not affect the expression of other markers (mmu-miR-202-5p, has-miR-873, has-miR-144, and their target genes, CREB, TGFBR2, and ATG7) of antral follicle development. However, the mRNA expression of VEGF pathway components was modulated by P-36 treatment. Taken together, these results demonstrate that superstimulatory protocols modify steroidogenic capacity, increase plasma estradiol, and regulate the abundance of VEGF system, LHCGR mRNA and suppress the expression of miR-222 in bovine granulosa cells."	"Differential effects of sevoflurane on the metastatic potential and chemosensitivity of non-small-cell lung adenocarcinoma and renal cell carcinoma in vitro. Increasing evidence suggests that perioperative factors including anaesthetics influence cancer recurrence and metastasis after surgery. This study investigated the influence of sevoflurane on the response of lung and renal cancer cells to cisplatin, with focus on transforming growth factor-beta (TGF-β) and osteopontin (OPN) that are both closely associated with cancer tumorigenesis and metastasis. Non-small cell lung adenocarcinoma (A549) and renal cell carcinoma (RCC4) cells were exposed to 3.6% sevoflurane for two hrs. Malignant potential represented by cell viability, migration, chemosensitivity to cisplatin was evaluated. Expression of OPN, TGF-β1, TGF-β receptor type II (TGF-βRII) and the canonical downstream effector Smad3 was assessed. SiRNA knockdown of TGF-β1 and OPN and chemical inhibition of TGF-βRI/II was performed. Sevoflurane reduced cell viability (0.394) versus control (0.459) (P &lt; 0.01), enhanced chemosensitivity but had no effect on migration of A549 cells. It enhanced viability (0.467) versus control (0.347) (P &lt; 0.001), chemoresistance and migration of RCC4. In A549, there was enhanced nuclear Smad3. In RCC4, TGF-βRII and OPN were upregulated, while TGF-β1 was over- expressed with reduced nuclear Smad3. TGF-βRII inhibition and OPN knockdown abolished sevoflurane-mediated viability, and migration, respectively, in RCC4. Sevoflurane promotes the metastatic potential of renal carcinoma, but not of non-small cell lung cancer. This may be associated with its differential effect on cellular signalling including TGF-β. Our findings indicate that sevoflurane may have different effects on the metastatic potential and chemosensitivity of different tumour types."	"Iron Enhances Hepatic Fibrogenesis and Activates Transforming Growth Factor-β Signaling in Murine Hepatic Stellate Cells. Although excess iron induces oxidative stress in the liver, it is unclear whether it directly activates the hepatic stellate cells (HSC). We evaluated the effects of excess iron on fibrogenesis and transforming growth factor beta (TGF-β) signaling in murine HSC. Cells were treated with holotransferrin (0.005-5g/L) for 24 hours, with or without the iron chelator deferoxamine (10µM). Gene expressions (α-SMA, Col1-α1, Serpine-1, TGF-β, Hif1-α, Tfrc and Slc40a1) were analyzed by quantitative real time-polymerase chain reaction, whereas TfR1, ferroportin, ferritin, vimentin, collagen, TGF-β RII and phospho-Smad2 proteins were evaluated by immunofluorescence, Western blot and enzyme-linked immunosorbent assay. HSC expressed the iron-uptake protein transferrin receptor 1 (TfR1) and the iron-export protein ferroportin. Holotransferrin upregulated TfR1 expression by 1.8-fold (P &lt; 0.03) and ferritin accumulation (iron storage) by 2-fold (P &lt; 0.01), and activated HSC with 2-fold elevations (P &lt; 0.03) in α-SMA messenger RNA and collagen secretion, and a 1.6-fold increase (P &lt; 0.01) in vimentin protein. Moreover, holotransferrin activated the TGF-β pathway with TGF-β messenger RNA elevated 1.6-fold (P = 0.05), and protein levels of TGF-β RII and phospho-Smad2 increased by 1.8-fold (P &lt; 0.01) and 1.6-fold (P &lt; 0.01), respectively. In contrast, iron chelation decreased ferritin levels by 30% (P &lt; 0.03), inhibited collagen secretion by 60% (P &lt; 0.01), repressed fibrogenic genes α-SMA (0.2-fold; P &lt; 0.05) and TGF-β (0.4-fold; P &lt; 0.01) and reduced levels of TGF-β RII and phospho-Smad2 proteins. HSC express iron-transport proteins. Holotransferrin (iron) activates HSC fibrogenesis and the TGF-β pathway, whereas iron depletion by chelation reverses this, suggesting that this could be a useful adjunct therapy for patients with fibrosis. Further studies in primary human HSC and animal models are necessary to confirm this."	NA
+"ACTG1"	"nonsyndromic genetic deafness"	"Single cell sequencing revealed the underlying pathogenesis of the development of osteoarthritis. Osteoarthritis (OA) is a chronic degenerative change with high incidence and leads to a lower quality of life and a larger socioeconomic burden. This study aimed to explore potential crucial genes and pathways associated with OA that can be used as potential biomarkers forearly treatment. Single-cell gene expression profile of 1464 chondrocytes and 192 fibroblasts in OA were downloaded from the public database (GSE104782 and GSE109449) for subsequent analysis. A total of eight clusters in chondrocytes and three clusters in fibroblasts of OA were identified using the Seurat pipeline and the &quot;SingleR&quot; package for cell-type annotation. Moreover, 44 common marker-genes between fibroblastic-like chondrocytes and fibroblasts were identified and the focal adhesions pathway was further identified as a significant potential mechanism of OA via functional enrichment analysis. Further, the reverse transcription quantitative real-time PCR (RT-qPCR) experiments at tissue's and cellular level confirmed that two key marker-genes (COL6A3 and ACTG1) might participate in the progression of OA. Summarily, we inferred that chondrocytes in OA might up-regulate the expression of COL6A3 and ACTG1 to complete fibroblasts transformation through the focal adhesion pathway. These findings are expected to gain a further insight into the development of OA fibrosis process and provide a promising target for treatment for early OA."	"Prenatal presentation and diagnosis of Baraitser-Winter syndrome using exome sequencing. Baraitser-Winter cerebrofrontofacial syndrome (BWCFF) is a rare autosomal dominant developmental disorder associated with missense mutations in the genes ACTB or ACTG1. The classic presentation of BWCFF is discerned by the combination of unique craniofacial characteristics including ocular coloboma, intellectual disability, and hypertelorism. Congenital contractures and organ malformations are often present, including structural defects in the brain, heart, renal, and musculoskeletal system. However, there is limited documentation regarding its prenatal presentation that may encourage healthcare providers to be aware of this disorder when presented throughout pregnancy. Herein we describe a case of a pregnancy with large cystic hygroma and omphalocele. Whole exome sequencing (WES) was performed and a de novo, heterozygous, likely pathogenic mutation in ACTB was detected, c.1004G&gt;A (p.Arg335His), conferring a diagnosis of BWCFF."	"Reduced levels of actin gamma 1 predict poor prognosis in ovarian cancer patients. To investigate the expression and function of actin gamma 1 (ACTG1) in ovarian cancer. We performed immunohistochemical staining of 176 ovarian cancer tissue samples in a human tissue microarray to detect expression of ACTG1. Staining intensity was examined in relation to clinicopathological parameters. To investigate the prognostic value of ACTG1, ACTG1 mRNA data from 300 ovarian cancer patients in The Cancer Genome Atlas database were examined. The immunohistochemical results demonstrated that levels of ACTG1 were reduced in the samples of human ovarian cancer tissue that were examined, and the levels negatively correlated with various clinicopathological parameters. Levels of ACTG1 mRNA also negatively correlated with clinical stage. In Kaplan-Meier survival analysis, higher levels of ACTG1 mRNA were associated with improved overall survival. In multivariate analysis by Cox regression, ACTG1 expression was identified as an independent prognostic marker of favorable overall survival. ACTG1 may represent a valuable marker for the prognosis of ovarian cancer, and further studies of ACTG1 are warranted."	"Targeted re-sequencing in malformations of cortical development: genotype-phenotype correlations. Malformations of cortical development (MCD) are a phenotypically and genetically heterogeneous group of disorders, for which the diagnostic rate of genetic testing in a clinical setting remains to be clarified. In this study we aimed to assess the diagnostic rate of germline and pathogenic variants using a custom panel in a heterogeneous group of subjects with MCD and explore genotype-phenotype correlations. A total of 84 subjects with different MCD were enrolled. Genomic DNA was isolated from peripheral blood. Fifty-nine tartget genes were assessed using a custom next-generation sequencing (NGS) panel. Genetic causes were identified in one-fourth of our cohort (21.4 %). Overall, we identified 19 pathogenic or likely pathogenic single-nucleotide variants in 11 genes among 18 subjects, including PAFAH1B1 (LIS1) (n = 3), TUBA1A (n = 3), DYNC1H1 (n = 3), ACTG1 (n = 2), TUBB2B (n = 1), TUBB3 (n = 1), DCX (n = 1), FLNA (n = 1), LAMA2 (n = 1), POMGNT2 (n = 1) and VLDLR (n = 1). The diagnostic yield was higher in patients with lissencephaly/pachygyria (60 %) (p = 0.001), cobblestone malformation (50 %), and subcortical band heterotopia (SBH) (40 %). Furthermore, five out of six subjects with suspect tubulinopathies on imaging harboured pathogenic variants in tubulin genes. Overall, germline pathogenic variants were more likely to be identified if MCD were diffuse (p = 0.002) and associated with other central nervous system malformations (p = 0.029). Moderate to severe intellectual disability was also more commonly associated with pathogenic variants (p = 0.044). Customized gene panels may support the diagnostic work-up for some specific MCD, especially when these are diffuse, bilateral and associated with other brain malformations."	"Regulation of Actg1 and Gsta2 is possible mechanism by which capsaicin alleviates apoptosis in cell model of 6-OHDA-induced Parkinson's disease. The present study aimed to identify the gene expression changes conferred by capsaicin in the cell model of 6-OHDA-induced Parkinson's disease, to disclose the molecular mechanism of action of capsaicin. We used capsaicin-treated and paraffin-embedded wax blocks containing substantia nigra tissue from 6-OHDA-induced Parkinson's disease rats to analyze transcriptional changes using Affymetrix GeneChip Whole Transcript Expression Arrays. A total of 108 genes were differentially expressed in response to capsaicin treatment, and seven of these genes were selected for further analysis: Olr724, COX1, Gsta2, Rab5a, Potef, Actg1, and Acadsb, of which Actg1 (actin gamma 1) was down-regulated and Gsta2 (Glutathione S-transferase alpha 2) was up-regulated. We successfully overexpressed Actg1 and Gsta2 in vitro. CCK-8 detection and flow cytometry demonstrated that overexpression of Actg1 and Gsta2 increased apoptosis in the 6-OHDA-induced Parkinson's disease cell model. The imbalance between Actg1 and Gsta2 may be one of the mechanisms of cell damage in Parkinson's disease (PD). Capsaicin can protect the cells and reduce the apoptosis rate by regulating Actg1 and Gsta2."	"Genome-wide DNA methylation profiles may reveal new possible epigenetic pathogenesis of sporadic congenital cataract. Aim: To investigate the possible epigenetic pathogenesis of sporadic congenital cataract. Materials &amp; methods: We conducted whole genome bisulfite sequencing on peripheral blood from sporadic binocular or monocular congenital cataract patients and cataract-free participants. Results: We found massive differentially methylated regions within the whole genomes between any two groups. Meanwhile, we identified five genes (ACTN4, ACTG1, TUBA1A, TUBA1C, TUBB4B) for the binocular and control groups and TUBA1A for the monocular and control groups as the core differentially methylated region-related genes. The proteins encoded by these core genes are involved in building cytoskeleton and intercellular junctions. Conclusion: Changes in the methylation levels of core genes may disturb the function of cytoskeleton and intercellular junctions, eventually leading to sporadic congenital cataract."	"Baraitser-Winter cerebrofrontofacial syndrome: Report of two adult siblings. Baraitser-Winter cerebrofrontofacial syndrome (BWCS) is a rare, autosomal dominant condition that is characterized by intellectual disability, distinctive craniofacial features, structural brain abnormalities, seizures, microcephaly, hearing loss, and ocular colobomas. The first three cases were described in 1988 by Baraitser and Winter and included two siblings and an unrelated third patient. Subsequently, causative missense variants in the ACTB and ACTG1 genes were identified, with de novo occurrence in patients with the condition. Herein, we describe two adult siblings who were born to unaffected parents and who were diagnosed with BWCS in their fourth and sixth decade of life following exome sequencing performed for intellectual disability. We review the literature reports of adult patients with BWCS to document the clinical features and phenotypic variability that can occur later in life. This is the first molecularly confirmed report of germline mosaicism in BWCS and one of only a few reports to describe two BWCS patients belonging to the same family."	"Prevalence of Cytoplasmic Actin Mutations in Diffuse Large B-Cell Lymphoma and Multiple Myeloma: A Functional Assessment Based on Actin Three-Dimensional Structures. Mutations in actins have been linked to several developmental diseases. Their occurrence across different cancers has, however, not been investigated. Using the cBioPortal database we show that human actins are infrequently mutated in patient samples of various cancers types. Nevertheless, ranking these studies by mutational frequency suggest that some have a higher percentage of patients with ACTB and ACTG1 mutations. Within studies on hematological cancers, mutations in ACTB and ACTG1 are associated with lymphoid cancers since none have currently been reported in myeloid cancers. Within the different types of lymphoid cancers ACTB mutations are most frequent in diffuse large B-cell lymphoma (DLBCL) and ACTG1 mutations in multiple myeloma. We mapped the ACTB and ACTG1 mutations found in these two cancer types on the 3D-structure of actin showing they are in regions important for actin polymer formation or binding to myosin. The potential effects of the mutations on actin properties imply that mutations in cytoplasmic actins deserve dedicated research in DLBCL and multiple myeloma."	"Novel ACTG1 mutations in patients identified by massively parallel DNA sequencing cause progressive hearing loss. Human ACTG1 mutations are associated with high-frequency hearing loss, and patients with mutations in this gene are good candidates for electric acoustic stimulation. To better understand the genetic etiology of hearing loss cases, massively parallel DNA sequencing was performed on 7,048 unrelated Japanese hearing loss probands. Among 1,336 autosomal dominant hearing loss patients, we identified 15 probands (1.1%) with 13 potentially pathogenic ACTG1 variants. Six variants were novel and seven were previously reported. We collected and analyzed the detailed clinical features of these patients. The average progression rate of hearing deterioration in pure-tone average for four frequencies was 1.7 dB/year from 0 to 50 years age, and all individuals over 60 years of age had severe hearing loss. To better understand the underlying disease-causing mechanism, intracellular localization of wild-type and mutant gamma-actins were examined using the NIH/3T3 fibroblast cell line. ACTG1 mutants p.I34M p.M82I, p.K118M and p.I165V formed small aggregates while p.R37H, p.G48R, p.E241K and p.H275Y mutant gamma-actins were distributed in a similar manner to the WT. From these results, we believe that some part of the pathogenesis of ACTG1 mutations may be driven by the inability of defective gamma-actin to be polymerized into F-actin."	"Knockout of ACTB and ACTG1 with CRISPR/Cas9(D10A) Technique Shows that Non-Muscle β and γ Actin Are Not Equal in Relation to Human Melanoma Cells' Motility and Focal Adhesion Formation. Non-muscle actins have been studied for many decades; however, the reason for the existence of both isoforms is still unclear. Here we show, for the first time, a successful inactivation of the ACTB (CRISPR clones with inactivated ACTB, CR-ACTB) and ACTG1 (CRISPR clones with inactivated ACTG1, CR-ACTG1) genes in human melanoma cells (A375) via the RNA-guided D10A mutated Cas9 nuclease gene editing [CRISPR/Cas9(D10A)] technique. This approach allowed us to evaluate how melanoma cell motility was impacted by the lack of either β actin coded by ACTB or γ actin coded by ACTG1. First, we observed different distributions of β and γ actin in the cells, and the absence of one actin isoform was compensated for via increased expression of the other isoform. Moreover, we noted that γ actin knockout had more severe consequences on cell migration and invasion than β actin knockout. Next, we observed that the formation rate of bundled stress fibers in CR-ACTG1 cells was increased, but lamellipodial activity in these cells was impaired, compared to controls. Finally, we discovered that the formation rate of focal adhesions (FAs) and, subsequently, FA-dependent signaling were altered in both the CR-ACTB and CR-ACTG1 clones; however, a more detrimental effect was observed for γ actin-deficient cells. Our research shows that both non-muscle actins play distinctive roles in melanoma cells' FA formation and motility."	"Effect of embryo vitrification on the expression of brain tissue proteins in mouse offspring. Vitrification is widely used in assisted reproductive technologies. However, the nervous system of vitrification offspring is of concern, and research on this is lacking. Vitrification-born mice (vitrification group), conventional in vitro fertilization-embryo transfer pregnancy-born mice (IVF group), and natural pregnancy-born mice (control group) were used to study the effects of vitrification of mouse embryos on protein levels in the brain of offspring. Proteins differentially expressed among the three groups were analyzed using proteomic methods, including two-dimensional electrophoresis, mass spectrometry, and bioinformatics analysis. Immunohistochemistry was used to verify the expression of differentially expressed proteins, such as Actb and Actg1, in each group. Twenty differentially expressed proteins in the brain tissue were identified using two-dimensional protein electrophoresis and mass spectrometry. Bioinformatics analysis revealed that these proteins were related to the development of anatomical structure, signal transduction, transport, cell differentiation, and stress response (biological processes) and the binding of molecules in vivo (molecular functions). The Kyoto Encyclopedia of Genes and Genomes pathway analysis showed that the differentially expressed proteins were involved in 54 pathways, including phagosome, metabolic pathway, apoptosis, and cysteine and methionine metabolism. Thus, embryo vitrification may cause some changes in the mouse brain at the protein level, necessitating further safety assessment."	"Protein expression profile changes of lung tissue in patients with pulmonary hypertension. Pulmonary hypertension occurs in approximately 1% of the global population, and the prognosis for such patients may be poor. However, the mechanisms underlying the development of this disease remain unclear. Thus, understanding the development of pulmonary hypertension and finding new therapeutic targets and approaches are important for improved clinical outcomes. Lung tissue specimens were collected from six patients with atrial septal defect and pulmonary hypertension (all women, with a mean age of 46.5 ± 4.7 years, and their condition could not be corrected with an internal medical occlusion device) and from nine control patients with lung cancer who underwent lobectomy (six men and three women, with a mean age of 56.7 ± 1.7 years). Isobaric tags for relative and absolute quantitation and liquid chromatography tandem mass spectrometry analyses were used to detect protein expression levels. We found 74 significantly upregulated and 88 significantly downregulated differentially expressed proteins between control and pulmonary hypertensive lung tissue specimens. Gene ontology analyses identified the top 20 terms in all three categories, that is, biological process, cellular component, and molecular function. Kyoto Encyclopedia of Genes and Genomes and protein-protein interaction analyses determined the top 10 signaling pathways and found that the six hub proteins associated with the differentially expressed upregulated proteins (PRKAA1, DHPR, ACTB, desmin, ACTG1, and ITGA1) were all involved in hypertrophic cardiomyopathy, arrhythmogenic right ventricular cardiomyopathy, and dilated cardiomyopathy. Our results identified protein expression profile changes in lung tissue derived from patients with pulmonary hypertension, providing potential new biomarkers for clinical diagnosis and prognosis for patients with pulmonary hypertension and offering candidate protein targets for future therapeutic drug development."	"Previously undescribed phenotypic findings and novel ACTG1 gene pathogenic variants in Baraitser-Winter cerebrofrontofacial syndrome. Baraitser-Winter cerebrofrontofacial syndrome is an autosomal dominant disease characterized by multiple congenital abnormalities and intellectual disability, which is caused by mutations in either the ACTB or ACTG1 genes. In this report, we described novel phenotypic findings in two Mexican patients with the disorder in whom two novel ACTG1 mutations (c.176A &gt; G, p.Gln59Arg; and c.608C &gt; T, p.Thr203Met) were identified."	"[Identification of a 17q25.3 duplication in a Chinese patient with global developmental delay and multiple congenital anomalies]. To delineate the clinical features,inheritance pattern, and genotype-phenotype correlation of a Chinese patient with a 17q25.3 duplication. Whole exome sequencing(WES), chromosomal microarray analysis (CMA), chromosomal karyotyping and fluorescence in situ hybridization (FISH) were employed for the analysis of the proband and his family members. A 5.7 Mb duplication at 17q25.3→qter was identified by WES and CMA in the 4-year-old boy with multiple congenital anomalies, which was classified as a clinically pathogenic variant. This duplication was confirmed by FISH, and was inherited from his unaffected mother who carried a balanced translocation. Further study revealed that his grandmother also carried the balanced translocation but had gestated three healthy children and had no abortion history. His uncle also carried the balanced translocation, while his aunt was normal. Above results have enriched the clinical phenotypes of 17q25.3 duplication. Genetic counseling was provided for the family. P4HB, ACTG1, BAIAP2 and TBCD genes may underlie the clinical features for the 17q25.3 duplication."	"Identification of Differently Expressed Genes Associated With Prognosis and Growth in Colon Adenocarcinoma Based on Integrated Bioinformatics Analysis. Latest statistics showed that the morbidity and mortality of colon adenocarcinoma (COAD) ranked fourth and fifth, respectively, around the world. COAD was a heterogeneous disease, and the high rates of recurrence, metastasis, and drug resistance still posed great challenges for treatment, which needs to further develop therapeutic and prognostic targets. In this study, we got the top 3,075 differentially expressed genes (DEGs) and 1,613 potential prognostic genes by GEPIA 2 and identified 1,166 fitness genes in COAD based on genome-scale CRISPR-Cas9 knockout (GeCKO) screening data. Excluding the genes already reported in the literatures, a total of nine DEGs overlapping with prognostic and fitness genes were further analyzed. High expression of CCT6A, RHOQ, and RRP12 promoted COAD cell growth and were relative to lower survival rate of COAD patients, while high expression of UTP18, DDOST, YRDC, ACTG1, RFT1, and NLE1 also promoted COAD cell growth, but were relative to higher survival rate. In addition, CCT6A, UTP18, YRDC, RRP12, RFT1, NLE1, as well as DDOST were essential genes across pan-cancer including COAD cells, and ACTG1 and RHOQ were less essential genes in cancer cells. In a word, we discovered nine novel potential genes that could serve as anticancer targets and prognostic markers in COAD and its subtypes."	"Alcohol drinking exacerbates neural and behavioral pathology in the 3xTg-AD mouse model of Alzheimer's disease. Alzheimer's disease (AD) is a progressive neurodegenerative disorder that represents the most common cause of dementia in the United States. Although the link between alcohol use and AD has been studied, preclinical research has potential to elucidate neurobiological mechanisms that underlie this interaction. This study was designed to test the hypothesis that nondependent alcohol drinking exacerbates the onset and magnitude of AD-like neural and behavioral pathology. We first evaluated the impact of voluntary 24-h, two-bottle choice home-cage alcohol drinking on the prefrontal cortex and amygdala neuroproteome in C57BL/6J mice and found a striking association between alcohol drinking and AD-like pathology. Bioinformatics identified the AD-associated proteins MAPT (Tau), amyloid beta precursor protein (APP), and presenilin-1 (PSEN-1) as the main modulators of alcohol-sensitive protein networks that included AD-related proteins that regulate energy metabolism (ATP5D, HK1, AK1, PGAM1, CKB), cytoskeletal development (BASP1, CAP1, DPYSL2 [CRMP2], ALDOA, TUBA1A, CFL2, ACTG1), cellular/oxidative stress (HSPA5, HSPA8, ENO1, ENO2), and DNA regulation (PURA, YWHAZ). To address the impact of alcohol drinking on AD, studies were conducted using 3xTg-AD mice that express human MAPT, APP, and PSEN-1 transgenes and develop AD-like brain and behavioral pathology. 3xTg-AD and wild-type mice consumed alcohol or saccharin for 4 months. Behavioral tests were administered during a 1-month alcohol-free period. Alcohol intake induced AD-like behavioral pathologies in 3xTg-AD mice including impaired spatial memory in the Morris Water Maze, diminished sensorimotor gating as measured by prepulse inhibition, and exacerbated conditioned fear. Multiplex immunoassay conducted on brain lysates showed that alcohol drinking upregulated primary markers of AD pathology in 3xTg-AD mice: Aβ 42/40 ratio in the lateral entorhinal and prefrontal cortex and total Tau expression in the lateral entorhinal cortex, medial prefrontal cortex, and amygdala at 1-month post alcohol exposure. Immunocytochemistry showed that alcohol use upregulated expression of pTau (Ser199/Ser202) in the hippocampus, which is consistent with late-stage AD. According to the NIA-AA Research Framework, these results suggest that alcohol use is associated with Alzheimer's pathology. Results also showed that alcohol use was associated with a general reduction in Akt/mTOR signaling via several phosphoproteins (IR, IRS1, IGF1R, PTEN, ERK, mTOR, p70S6K, RPS6) in multiple brain regions including hippocampus and entorhinal cortex. Dysregulation of Akt/mTOR phosphoproteins suggests alcohol may target this pathway in AD progression. These results suggest that nondependent alcohol drinking increases the onset and magnitude of AD-like neural and behavioral pathology in 3xTg-AD mice."	"Clinical utility of next-generation sequencing in the aetiological diagnosis of sensorineural hearing loss in a Childhood Hearing Loss Unit. Sensorineural hearing loss (SNL) is the most prevalent sensory deficit in our environment. Next generation genomic sequencing (NGS) enables an aetiological diagnosis in a high percentage of patients. Our pilot study shows the results of the systematic application of NGS in a Childhood Hearing Loss Unit, as well as its implications for the clinical management of patients and their families. We included 27 patients diagnosed with SNL between 2014 and 2017, in which an environmental cause was ruled out. The genetic test consisted of a panel of genes analyzed by NGS (OTOgenicsTM panel). This panel has been designed to include genes associated with sensorineural or mixed hearing loss, early onset or late, syndromic and non-syndromic, regardless of their inheritance pattern. A genetic diagnosis was obtained in 56% (15/27) of the patients (62% in the case of bilateral SNL). Of the patients, 5/27 (19%) presented pathogenic variants in the GJB2 gene and the rest pathogenic and / or probably pathogenic variants in other genes associated with isolated SNL (PR2X2, TECTA and STRC), with syndromic SNL (CHD7, GATA3, COL4A5, MITF and SOX10) or with syndromic and non-syndromic SNL (BSND, ACTG1 and CDH23). The aetiological diagnosis of SNL is a challenge in clinical practice. Our series demonstrates that it is possible to implement genetic diagnosis in the care routine and that this information has prognostic and therapeutic implications."	"Genetic Disorders in Prenatal Onset Syndromic Short Stature Identified by Exome Sequencing. To perform a prospective genetic investigation using whole exome sequencing of a group of patients with syndromic short stature born small for gestational age of unknown cause. For whole exome sequencing analysis, we selected 44 children born small for gestational age with persistent short stature, and additional features, such as dysmorphic face, major malformation, developmental delay, and/or intellectual disability. Seven patients had negative candidate gene testing based on clinical suspicion and 37 patients had syndromic conditions of unknown etiology. Of the 44 patients, 15 (34%) had pathogenic/likely pathogenic variants in genes already associated with growth disturbance: COL2A1 (n = 2), SRCAP (n = 2), AFF4, ACTG1, ANKRD11, BCL11B, BRCA1, CDKN1C, GINS1, INPP5K, KIF11, KMT2A, and POC1A (n = 1 each). Most of the genes found to be deleterious participate in fundamental cellular processes, such as cell replication and DNA repair. The rarity and heterogeneity of syndromic short stature make the clinical diagnosis difficult. Whole exome sequencing allows the diagnosis of previously undiagnosed patients with syndromic short stature."	"Proteome Profiling of the Exhaled Breath Condensate after Long-Term Spaceflights. Comprehensive studies of the effects of prolonged exposure to space conditions and the overload experienced during landing on physiological and biochemical changes in the human body are extremely important in the context of planning long-distance space flights, which can be associated with constant overloads and various risk factors for significant physiological changes. Exhaled breath condensate (EBC) can be considered as a valuable subject for monitoring physiological changes and is more suitable for long-term storage than traditional monitoring subjects such as blood and urine. Herein, the EBC proteome changes due to the effects of spaceflight factors are analyzed. Thirteen EBC samples were collected from five Russian cosmonauts (i) one month before flight (background), (ii) immediately upon landing modules in the field (R0) after 169-199 days spaceflights, and (iii) on the seventh day after landing (R+7). Semi-quantitative label-free EBC proteomic analysis resulted in 164 proteins, the highest number of which was detected in EBC after landing (R0). Pathways enrichment analysis using the GO database reveals a large group of proteins which take part in keratinization processes (CASP14, DSG1, DSP, JUP, and so on). Nine proteins (including KRT2, KRT9, KRT1, KRT10, KRT14, DCD, KRT6C, KRT6A, and KRT5) were detected in all three groups. A two-sample Welch's t-test identified a significant change in KRT2 and KRT9 levels after landing. Enrichment analysis using the KEGG database revealed the significant participation of detected proteins in pathogenic E. coli infection (ACTG1, TUBA1C, TUBA4A, TUBB, TUBB8, and YWHAZ), which may indicate microbiota changes associated with being in space. This assumption is confirmed by microbial composition analysis. In general, the results suggest that EBC can be used for noninvasive monitoring of health status and respiratory tract pathologies during spaceflights, and that the obtained data are important for the development of medicine for use in extreme situations. Data are available from ProteomeXchange using the identifier PXD014191."	"Characterization of DNA hydroxymethylation profile in cervical cancer. Cervical cancer is one of the most common gynecological tumors in females. DNA methylation alteration is a type of epigenetic decoration that controls the gene transcriptional regulation and is essential for the pathological progression of cervical cancer to reflect the prognosis and therapeutic sensitivity in clinical practice. Beyond DNA methylation, DNA hydroxymethylation considered as a more stable biomarker draws the outline of the reversible cycle from DNA methylation and demethylation. However, the landscape of 5-hydroxymethylcytosine (5hmC) distributed in the genome is never characterized in cervical cancer. In this study, we presented the whole 5-methylcytosine (5mC) and 5hmC profile in cervical cancer of I-IIa and IIb to IV stages and cervicitis tissues as control by dot plot assay and immunohistochemistry. We observed that the total 5mC was up-regulated while 5hmC was down-regulated in cervical cancer group compared to the control group. Furthermore, we investigated the distribution of 5mC and 5hmC on genomic DNA by MeDIP- and hMeDIP-Seq. 53 differential methylation/hydromethylation regions (DMRs/DHMRs) displayed a continuously increasing or decreasing trend of 5mC or 5hmC from cervicitis to I-IIa and from I-IIa to IIb-IV stages of cervical cancer. Thirty-seven DMRs and DHMRs have a similar variation trend while the other 8 have the opposite trend compared between CSCC and cervicitis. Moreover, the DMR/DHMR associated genes were closely related to Wnt, MAPK, Rap1 and other important signaling pathways. Finally, 5hmC beyond 5mC at the genes such as ACTG1, SALL3, DNAJA3, SERPINB6, CDC14B and CALN1 were considered as the putative novel hallmarks for cervical cancer diagnosis and prognosis. Altogether, this study first describes the DNA hydroxymethylation atlas of cervical cancer and shows a list of novel genes transcriptionally regulated by DNA methylation and hydroxymethylation."	"Post-mortem Characterisation of a Case With an ACTG1 Variant, Agenesis of the Corpus Callosum and Neuronal Heterotopia. Cytoplasmic Actin Gamma 1 (ACTG1) gene variant are autosomal dominant and can cause CNS anomalies (Baraitser Winter Malformation Syndrome; BWMS). ACTG1 anomalies in offspring include agenesis of the corpus callosum (ACC) and neuronal heterotopia which are ectopic nodules of nerve cells that failed to migrate appropriately. Subcortical and periventricular neuronal heterotopia have been described previously in association with ACC. In this case report, we investigated a neonatal brain with an ACTG1 gene variant and a phenotype of ACC, and neuronal heterotopia (ACC-H) which was diagnosed on antenatal MR imaging and was consistent with band heterotopia seen on post-mortem brain images. Histologically clusters of neurons were seen in both the subcortical and periventricular white matter (PVWM) brain region that coincided with impaired abnormalities in glial formation. Immunohistochemistry was performed on paraffin-embedded brain tissue blocks from this case with ACTG1 variant and an age-matched control. Using tissue sections from the frontal lobe, we examined the distribution of neuronal cells (HuC/HuD, calretinin, and parvalbumin), growth cone (drebrin), and synaptic proteins (synaptophysin and SNAP-25). Additionally, we investigated how the ACTG1 variant altered astroglia (nestin, GFAP, vimentin); oligodendroglia (OLIG2) and microglia (Iba-1) in the corpus callosum, cortex, caudal ganglionic eminence, and PVWM. As predicted in the ACTG1 variant case, we found a lack of midline radial glia and glutamatergic fibers. We also found disturbances in the cortical region, in glial cells and a lack of extracellular matrix components in the ACTG1 variant. The caudal ganglionic eminence and the PVWM regions in the ACTG1 variant lacked several cellular components that were identified in a control case. Within the neuronal heterotopia, we found evidence of glutamatergic and GABAergic neurons with apparent synaptic connections. The data presented from this case study with BWMS with variants in the ACTG1 gene provides insight as to the composition of neuronal heterotopia, and how disturbances of important migratory signals may dramatically affect ongoing brain development."	"Genomic backgrounds of Japanese patients with undiagnosed neurodevelopmental disorders. Recently, many genes related to neurodevelopmental disorders have been identified by high-throughput genomic analysis; however, a comprehensive understanding of the mechanism underlying neurodevelopmental disorders remains to be established. To further understand these underlying mechanisms, we performed a comprehensive genomic analysis of patients with undiagnosed neurodevelopmental disorders. Genomic analysis using next-generation sequencing with a targeted panel was performed for a total of 133 Japanese patients (male/female, 81/52) with previously undiagnosed neurodevelopmental disorders, including developmental delay (DD), intellectual disability (ID), autism spectrum disorder (ASD), and epilepsy. Genomic copy numbers were also analyzed using the eXome Hidden Markov Model (XHMM). Thirty-nine patients (29.3%) exhibited pathogenic or likely pathogenic findings with single-gene variants or chromosomal aberrations. Among them, 20 patients were presented here. Pathogenic or likely pathogenic variants were identified in 18 genes, including ACTG1, CACNA1A, CHD2, CDKL5, DNMT3A, EHMT1, GABRB3, GABRG2, GRIN2B, KCNQ3, KDM5C, MED13L, SCN2A, SHANK3, SMARCA2, STXBP1, SYNGAP1, and TBL1XR1. A diagnostic yield of 29.3% in this study was nearly the same as that previously reported from other countries. Thus, we suggest that there is no difference in genomic backgrounds in Japanese patients with undiagnosed neurodevelopmental disabilities. Although most of the patients possessed de novo variants, one of the patients showed an X-linked inheritance pattern. As X-linked recessive disorders exhibit the possibility of recurrent occurrence in the family, comprehensive molecular diagnosis is important for genetic counseling."	"Opposite T3 Response of ACTG1-FOS Subnetwork Differentiate Tailfin Fate in Xenopus Tadpole and Post-hatching Axolotl. Amphibian post-embryonic development and Thyroid Hormones (TH) signaling are deeply and intimately connected. In anuran amphibians, TH induce the spectacular and complex process known as metamorphosis. In paedomorphic salamanders, at similar development time, raising levels of TH fail to induce proper metamorphosis, as many &quot;larval&quot; tissues (e.g., gills, tailfin) are maintained. Why does the same evolutionary conserved signaling pathway leads to alternative phenotypes? We used a combination of developmental endocrinology, functional genomics and network biology to compare the transcriptional response of tailfin to TH, in the post-hatching paedormorphic Axolotl salamander and Xenopus tadpoles. We also provide a technological framework that efficiently reduces large lists of regulated genes down to a few genes of interest, which is well-suited to dissect endocrine regulations. We first show that Axolotl tailfin undergoes a strong and robust TH-dependent transcriptional response at post embryonic transition, despite the lack of visible anatomical changes. We next show that Fos and Actg1, which structure a single and dense subnetwork of cellular sensors and regulators, display opposite regulation between the two species. We finally show that TH treatments and natural variations of TH levels follow similar transcriptional dynamics. We suggest that, at the molecular level, tailfin fate correlates with the alternative transcriptional states of an fos-actg1 sub-network, which also includes transcription factors and regulators of cell fate. We propose that this subnetwork is one of the molecular switches governing the initiation of distinct TH responses, with transcriptional programs conducting alternative tailfin fate (maintenance vs. resorption) 2 weeks post-hatching."	"RRAD suppresses the Warburg effect by downregulating ACTG1 in hepatocellular carcinoma. Hepatocellular carcinoma (HCC) is a common malignancy with poor prognosis and limited therapeutic options. Ras-related associated with diabetes (RRAD) belongs to the subfamily of Ras-related GTPases and is associated with several types of cancer, including HCC, although the mechanisms involving RRAD in HCC remains unknown. We aimed to elucidate the role of RRAD and whether it affects glucose metabolism in HCC by immunohistochemically examining tissue samples from HCC patients and assessing the effect of RRAD overexpression and knockdown on the glucose metabolism, proliferation, cell cycle, and apoptosis of HCC cell lines SK-Hep-1 and Huh7, as well as on tumor progression in vivo. We demonstrated that RRAD binds to actin gamma 1 (ACTG1). RRAD suppressed aerobic glycolysis in HCC by downregulating ACTG1. On the other hand, ACTG1 promoted HCC proliferation by regulating the cell cycle via downregulation of cyclins and cyclin-dependent kinases and inhibited apoptosis through the mitochondrial apoptosis pathway in vitro. In addition, RRAD retarded tumor growth by downregulating ACTG1 in vivo. ACTG1 was overexpressed in HCC tissues compared with adjacent normal tissues, whereas the expression of RRAD was low in tumor tissues. Low RRAD levels were significantly correlated with large tumor size and advanced tumor stage; high ACTG1 levels were significantly correlated with advanced tumor stage. Furthermore, Kaplan-Meier survival curves showed that HCC patients with high RRAD and low ACTG1 expression may have a better prognosis. We have shown that RRAD exhibits a tumor-suppressing role in HCC by downregulating glucose metabolism and ACTG1 expression, thus lowering cell proliferation, arresting the cell cycle, and increasing apoptosis. These findings indicate that ACTG1 may act as a downstream effector of RRAD and open a new avenue for potential HCC treatment."	"Mutation screening in non-syndromic hearing loss patients with cochlear implantation by massive parallel sequencing in Taiwan. To explore the molecular epidemiology of rare deafness genes in Taiwanese sensorineural hearing impairment (SNHI) patients with cochlear implantation (CI) by performing massive parallel sequencing (MPS) and correlating genetic factors and CI outcomes. We enrolled 41 Taiwanese non-syndromic deafness patients with CI that lacked known mutations in common deafness genes. All probands were screened by a targeted exon amplification method that used massively parallel sequencing to screen a customized panel that included 40 relatively rare non-syndromic deafness genes. Thirteen candidate variants in nine relatively rare deafness genes (MYO15A, TMC1, MYH14, MYO3A, ACTG1, COL11A2, DSPP, GRHL2, and WFS1) were identified in 24.4% (10/41) of the non-syndromic deafness probands with CI. According to the ACMG Standards and Guidelines, five variants in MYO15A and ACTG1 were classified as likely pathogenic variants. Two of three multi-generational pedigrees exhibiting deafness were analyzed for the segregation of the disorder with the possible disease-causing variants. Patients with variants detected in most of the identified variant-bearing genes showed relatively good CI outcomes. We successfully identified candidate variants in partially deaf Taiwanese probands who lacked the known mutations in common deafness genes. Comparing the progress of hearing rehabilitation in CI patients with their apparent causative variants and the expression profiles of their altered genes allowed us to speculate on how alterations in specific gene sets may influence outcomes in hearing rehabilitation after CI."	"Drug repositioning for dengue haemorrhagic fever by integrating multiple omics analyses. To detect drug candidates for dengue haemorrhagic fever (DHF), we employed a computational drug repositioning method to perform an integrated multiple omics analysis based on transcriptomic, proteomic, and interactomic data. We identified 3,892 significant genes, 389 proteins, and 221 human proteins by transcriptomic analysis, proteomic analysis, and human-dengue virus protein-protein interactions, respectively. The drug candidates were selected using gene expression profiles for inverse drug-disease relationships compared with DHF patients and healthy controls as well as interactomic relationships between the signature proteins and chemical compounds. Integrating the results of the multiple omics analysis, we identified eight candidates for drug repositioning to treat DHF that targeted five proteins (ACTG1, CALR, ERC1, HSPA5, SYNE2) involved in human-dengue virus protein-protein interactions, and the signature proteins in the proteomic analysis mapped to significant pathways. Interestingly, five of these drug candidates, valparoic acid, sirolimus, resveratrol, vorinostat, and Y-27632, have been reported previously as effective treatments for flavivirus-induced diseases. The computational approach using multiple omics data for drug repositioning described in this study can be used effectively to identify novel drug candidates."	"ACTG1 and TLR3 are biomarkers for alcohol-associated hepatocellular carcinoma. Alcohol consumption is a risk factor for the development of hepatocellular carcinoma (HCC); however, the association between alcohol and HCC remains unknown. The present study aimed to identify key genes related to alcohol-associated HCC to improve the current understanding of the pathology of this disease. Alcohol-associated and non-alcohol-associated HCC samples in the GSE50579 dataset of the Gene Omnibus Database were analyzed to investigate altered gene expression. Integrated bioinformatics methods were employed to clarify the biological functions of the differentially expressed genes (DEGs), including Gene Ontology (GO), Kyoto Encyclopedia of Genes and Genomes (KEGG) and protein-protein interactions (PPIs). The present study reported that candidate biomarker micro (mi)RNAs via TargetScan Human 7.1. DEGs and their associated miRNAs (according to bioinformatics analysis) were validated using reverse transcription-quantitative polymerase chain reaction (RT-qPCR). Additionally, 284 EGs from the GSE50579 dataset were revealed. In GO term analysis, DEGs were closely associated with the 'regulation of nucleic acid metabolism'. KEGG pathway analysis indicated that the DEGs were tightly engaged in the 'VEGF and VEGF receptor signaling network', 'proteoglycan syndecan-mediated signaling events', 'erbB receptor signaling' and 'β1 integrin cell surface interactions'. According to the results of PPI and heat map analysis, the main hub genes were centrin 3 (CETN3), Toll-like receptor 3 (TLR3), receptor tyrosine-protein kinase (ERBB4), heat shock protein family member 8, actin γ1 (ACTG1) and α-smooth muscle actin. it was demonstrated that the ACTG1, TLR3, miR-6819-3p and miRΝΑ (miR)-6877-3P had undefined associations. Furthermore, RT-qPCR analysis revealed that miR-6819-3p and miR-6877-3P may enhance the expression levels of ACTG1 and inhibit the expression levels of TLR3 in alcohol-associated HCC tissues. TLR3 and ACTG1 were proposed as potential biomarkers of alcohol-associated HCC. Investigation into the regulatory functions of miR-6819-3p and miR-6877-3P may provide novel insights into the treatment of alcohol-associated HCC."	"Meta-analysis of gene expression profiles in long-term non-progressors infected with HIV-1. In the absence of antiretroviral treatments (ARTs), a small group of individuals infected with HIV, including long-term non-progressors (LTNPs) who maintain high levels of CD4+ T cells for more than 7-10 years in the absence of ART and in particular a subgroup of LTNPs, elite controllers (ECs), who have low levels of viremia, remain clinically and/or immunologically stable for years. However, the mechanism of stable disease progression in LTNPs and ECs needs to be elucidated to help those infected with HIV-1 remain healthy. In this study, to identify the characteristics of gene expression profiles and biomarkers in LTNPs, we performed a meta-analysis using multiple gene expression profiles among LTNPs, individuals infected with HIV-1 without ART, individuals infected with HIV-1 with ART, and healthy controls. The gene expression profiles obtained from the Gene Expression Omnibus (GEO) microarray data repositories were classified into three groups: LTNPs versus healthy controls (first group, 3 studies), LTNPs versus patients infected with HIV-1 without ART (second group, 3 studies), and LTNPs versus patients infected with HIV-1 with ART (third group, 3 studies). In addition, we considered a fourth group, patients infected with HIV-1 without ART versus healthy controls (3 studies), to exclude genes associated with HIV-1 infection in the three groups. For each group, we performed a meta-analysis using the RankProd method to identify and compare the differentially expressed genes (DEGs) in the three groups. We identified the 14 common DEGs in the three groups when comparing them with each other. Most belonged to immune responses, antigen processing and presentation, the interferon-gamma-mediated signaling pathway, and T cell co-stimulation. Of these DEGs, PHLDA1 was up-regulated and ACTB and ACTG1 were down-regulated in all three groups. However, the rest of the up- or down-regulated genes were discordant in the three groups. Additionally, ACTB and ACTG1 are known to inhibit viral assembly and production, and THBS1 is known to inhibit HIV-1 infection. These results suggest that significant genes identified in a meta-analysis provide clues to the cause of delayed disease progression and give a deeper understanding of HIV pathogenesis in LTNPs."	"Genomic Studies in a Large Cohort of Hearing Impaired Italian Patients Revealed Several New Alleles, a Rare Case of Uniparental Disomy (UPD) and the Importance to Search for Copy Number Variations. Hereditary hearing loss (HHL) is a common disorder characterized by a huge genetic heterogeneity. The definition of a correct molecular diagnosis is essential for proper genetic counseling, recurrence risk estimation, and therapeutic options. From 20 to 40% of patients carry mutations in GJB2 gene, thus, in more than half of cases it is necessary to look for causative variants in the other genes so far identified (~100). In this light, the use of next-generation sequencing technologies has proved to be the best solution for mutational screening, even though it is not always conclusive. Here we describe a combined approach, based on targeted re-sequencing (TRS) of 96 HHL genes followed by high-density SNP arrays, aimed at the identification of the molecular causes of non-syndromic HHL (NSHL). This strategy has been applied to study 103 Italian unrelated cases, negative for mutations in GJB2, and led to the characterization of 31% of them (i.e., 37% of familial and 26.3% of sporadic cases). In particular, TRS revealed TECTA and ACTG1 genes as major players in the Italian population. Furthermore, two de novo missense variants in ACTG1 have been identified and investigated through protein modeling and molecular dynamics simulations, confirming their likely pathogenic effect. Among the selected patients analyzed by SNP arrays (negative to TRS, or with a single variant in a recessive gene) a molecular diagnosis was reached in ~36% of cases, highlighting the importance to look for large insertions/deletions. Moreover, copy number variants analysis led to the identification of the first case of uniparental disomy involving LOXHD1 gene. Overall, taking into account the contribution of GJB2, plus the results from TRS and SNP arrays, it was possible to reach a molecular diagnosis in ~51% of NSHL cases. These data proved the usefulness of a combined approach for the analysis of NSHL and for the definition of the epidemiological picture of HHL in the Italian population."	"Amino acid 118 in the Deafness Causing (DFNA20/26) ACTG1 gene is a Mutational Hot Spot. Hearing loss is an economically and socially important cause of human morbidity, affecting 360 million people (over 5% of the world's population), of whom 32 million are children. Of the estimated minimum of 50% of hereditary hearing loss, non-syndromic hearing loss (NSHL) accounts for more than 70%. The autosomal dominant non-syndromic hearing loss (ADNSHL) is highly heterogeneous. To date, 67 ADNSHL loci (DFNA1-67) have been mapped; however, only 35 causative genes have been cloned since 1997 (http://hereditaryhearingloss.org/). To identify the genetic basis of hereditary hearing loss in a Chinese family with ADNSHL, we undertook a targeted sequencing of 180 genes using a custom capture panel (MiamiOtoGenes). The onset of hearing loss in the family occurred between the ages of 15 and 18 years. Hearing loss was bilateral, started in the high frequency and progressed to lower frequencies. The c.353A&gt;T (K118M) in the AC TG1 gene was identified by panel and was confirmed by Sanger sequencing and was present in all affected family members. So far, five of the 23 DFNA20/26 families worldwide have been found to carry mutation involving the residue K118. This is the first report of K118M mutation in the ACTG1 gene causing hearing loss in the Chinese population. The present data are in line with previous evidence to suggest that codon K118 of ACTG1 may represent a mutational hot spot that justifies a mutation screen for diagnostic purpose in the genetically heterogeneous group of DFNA20/26."	"Metabolomics and transcriptomics pathway approach reveals outcome-specific perturbations in COPD. Chronic obstructive pulmonary disease (COPD) comprises multiple phenotypes such as airflow obstruction, emphysema, and frequent episodes of acute worsening of respiratory symptoms, known as exacerbations. The goal of this pilot study was to test the usefulness of unbiased metabolomics and transcriptomics approaches to delineate biological pathways associated with COPD phenotypes and outcomes. Blood was collected from 149 current or former smokers with or without COPD and separated into peripheral blood mononuclear cells (PBMC) and plasma. PBMCs and plasma were analyzed using microarray and liquid chromatography mass spectrometry, respectively. Statistically significant transcripts and compounds were mapped to pathways using IMPaLA. Results showed that glycerophospholipid metabolism was associated with worse airflow obstruction and more COPD exacerbations. Sphingolipid metabolism was associated with worse lung function outcomes and exacerbation severity requiring hospitalizations. The strongest associations between a pathway and a certain COPD outcome were: fat digestion and absorption and T cell receptor signaling with lung function outcomes; antigen processing with exacerbation frequency; arginine and proline metabolism with exacerbation severity; and oxidative phosphorylation with emphysema. Overlaying transcriptomic and metabolomics datasets across pathways enabled outcome and phenotypic differences to be determined. Findings are relevant for identifying molecular targets for animal intervention studies and early intervention markers in human cohorts."	"Genetic Aetiology of Nonsyndromic Hearing Loss in Moravia-Silesia. Hearing loss is the most common sensory deficit in humans. The aim of this study was to clarify the genetic aetiology of nonsyndromic hearing loss in the Moravian-Silesian population of the Czech Republic. This study included 200 patients (93 males, 107 females, mean age 16.9 years, ranging from 4 months to 62 years) with nonsyndromic sensorineural hearing loss. We screened all patients for mutations in GJB2 and the large deletion del(GJB6-D13S1830). We performed further screening for additional genes (SERPINB6, TMIE, COCH, ESPN, ACTG1, KCNQ4, and GJB3) with Sanger sequencing on a subset of patients that were negative for GJB2 mutations. We detected biallelic GJB2 mutations in 44 patients (22%). Among these patients, 63.6%, 9.1% and 2.3% exhibited homozygous c.35delG, p.Trp24*, and p.Met34Thr mutations, respectively. The remaining 25% of these patients exhibited compound heterozygous c.35delG, c.-23+1G&gt;A, p.Trp24*, p.Val37Ile, p.Met34Thr, p.Leu90Pro, c.235delC, c.313_326del14, p.Ser139Asn, and p.Gly147Leu mutations. We found a monoallelic GJB2 mutation in 12 patients (6.6%). We found no pathogenic mutations in the other tested genes. Conclusions: One fifth of our cohort had deafness related to GJB2 mutations. The del(GJB6-D13S1830), SERPINB6, TMIE, COCH, ESPN, ACTG1, GJB3, and KCNQ4 mutations were infrequently associated with deafness in the Moravian-Silesian population. Therefore, we suggest that del(GJB6-D13S1830) testing should be performed only when patients with deafness carry the monoallelic GJB2 mutation."	"Variants in exons 5 and 6 of ACTB cause syndromic thrombocytopenia. Germline mutations in the ubiquitously expressed ACTB, which encodes β-cytoplasmic actin (CYA), are almost exclusively associated with Baraitser-Winter Cerebrofrontofacial syndrome (BWCFF). Here, we report six patients with previously undescribed heterozygous variants clustered in the 3'-coding region of ACTB. Patients present with clinical features distinct from BWCFF, including mild developmental disability, microcephaly, and thrombocytopenia with platelet anisotropy. Using patient-derived fibroblasts, we demonstrate cohort specific changes to β-CYA filament populations, which include the enhanced recruitment of thrombocytopenia-associated actin binding proteins (ABPs). These perturbed interactions are supported by in silico modeling and are validated in disease-relevant thrombocytes. Co-examination of actin and microtubule cytoskeleton constituents in patient-derived megakaryocytes and thrombocytes indicates that these β-CYA mutations inhibit the final stages of platelet maturation by compromising microtubule organization. Our results define an ACTB-associated clinical syndrome with a distinct genotype-phenotype correlation and delineate molecular mechanisms underlying thrombocytopenia in this patient cohort."	"Fecal Host Transcriptomics for Non-Invasive Human Mucosal Immune Profiling: Proof of Concept in Clostridium Difficile Infection. Host factors play an important role in pathogenesis and disease outcome in Clostridium difficile infection (CDI), and characterization of these responses could uncover potential host biomarkers to complement existing microbe-based diagnostics. We extracted RNA from fecal samples of patients with CDI and profiled human mRNA using amplicon-based next-generation sequencing (NGS). We compared the fecal host mRNA transcript expression profiles of patients with CDI to controls with non-CDI diarrhea. We found that the ratio of human actin gamma 1 (ACTG1) to 16S ribosomal RNA (rRNA) was highly correlated with NGS quality as measured by percentage of reads on target. Patients with CDI could be differentiated from those with non-CDI diarrhea based on their fecal mRNA expression profiles using principal component analysis. Among the most differentially expressed genes were ones related to immune response (IL23A, IL34) and actin-cytoskeleton function (TNNT1, MYL4, SMTN, MYBPC3, all adjusted P-values &lt; 1 × 10<sup>-3</sup>). In this proof-of-concept study, we used host fecal transcriptomics for non-invasive profiling of the mucosal immune response in CDI. We identified differentially expressed genes with biological plausibility based on animal and cell culture models. This demonstrates the potential of fecal transcriptomics to uncover host-based biomarkers for enteric infections."	"A genome editing vector that enables easy selection and identification of knockout cells. The CRISPR/Cas9 system is a powerful genome editing tool for disrupting the expression of specific genes in a variety of cells. However, the genome editing procedure using currently available vectors is laborious, and there is room for improvement to obtain knockout cells more efficiently. Therefore, we constructed a novel vector for high efficiency genome editing, named pGedit, which contains EGFP-Bsr as a selection marker, expression units of Cas9, and sgRNA without a terminator sequence of the U6 promoter. EGFP-Bsr is a fusion protein of EGFP and blasticidin S deaminase, and enables rapid selection and monitoring of transformants, as well as confirmation that the vector has not been integrated into the genome. By using pGedit, we targeted human ACTB, ACTG1 and mouse Nes genes coding for β-actin, γ-actin and nestin, respectively. Knockout cell lines of each gene were easily and efficiently obtained in all three cases. In this report, we show that our novel vector, pGedit, significantly facilitates genome editing."	"Genetic risk factors for VIPN in childhood acute lymphoblastic leukemia patients identified using whole-exome sequencing. To identify genetic markers associated with vincristine-induced peripheral neuropathy (VIPN) in childhood acute lymphoblastic leukemia. Whole-exome sequencing data were combined with exome-wide association study to identify predicted-functional germline variants associated with high-grade VIPN. Genotyping was then performed for top-ranked signals (n = 237), followed by validation in independent replication group (n = 405). Minor alleles of rs2781377/SYNE2 (p = 0.01) and rs10513762/MRPL47 (p = 0.01) showed increased risk, whereas that of rs3803357/BAHD1 had a protective effect (p = 0.007). Using a genetic model based on weighted genetic risk scores, an additive effect of combining these loci was observed (p = 0.003). The addition of rs1135989/ACTG1 further enhanced model performance (p = 0.0001). Variants in SYNE2, MRPL47 and BAHD1 genes are putative new risk factors for VIPN in childhood acute lymphoblastic leukemia."	"P2X7 Receptors Mediate CO-Induced Alterations in Gene Expression in Cultured Cortical Astrocytes-Transcriptomic Study. Carbon monoxide (CO) is an endogenous gasotransmitter that limits inflammation and prevents apoptosis in several tissues, including the brain. Low concentrations of CO are cytoprotective in astrocytes, neurons, and microglia, but the underlying molecular mechanisms remain poorly understood. This work aims at identification of alterations in gene expression conferred by CO in primary cultures of cortical astrocytes, for further disclosure of the molecular mechanism of action of the gasotransmitter. Astrocytes were treated with the CO-releasing molecule CORM-A1 for 40 min, and transcriptional changes were analyzed using RNASeq. A total of 162 genes were differentially expressed in response to CO treatment, and 7 of these genes were selected for further analysis: FosB, Scand1, Rgs10, Actg1, Panx1, Pcbdh21, and Rn18s. The alterations in their expression were further validated using qRT-PCR. An increase in FosB protein expression was also observed after 40 min of CORM-A1 treatment, as determined by a western blot. CO-induced FosB expression and cytoprotection were both abrogated in the presence of the P2X7 receptor antagonist A-438079. Furthermore, CORM-A1 increased phosphorylation of calcium/calmodulin-dependent protein kinase II (CaMKII), which is a downstream event of P2X7R activation. The functional importance of FosB in CO-induced survival was assessed by knocking down its expression with FosB siRNA. Astrocytes were challenged to death with oxidative stress and cell viability was assessed 24 h later. Downregulation of FosB did not prevent the effects of CO in the inhibition of astrocytic cell death. Nevertheless, the transcriptomic changes observed upon treatment of astrocytes with CO open new opportunities for further studies on CO cytoprotective pathways."	"Essential nucleotide- and protein-dependent functions of Actb/β-actin. The highly similar cytoplasmic β- and γ-actins differ by only four functionally similar amino acids, yet previous in vitro and in vivo data suggest that they support unique functions due to striking phenotypic differences between Actb and Actg1 null mouse and cell models. To determine whether the four amino acid variances were responsible for the functional differences between cytoplasmic actins, we gene edited the endogenous mouse Actb locus to translate γ-actin protein. The resulting mice and primary embryonic fibroblasts completely lacked β-actin protein, but were viable and did not present with the most overt and severe cell and organismal phenotypes observed with gene knockout. Nonetheless, the edited mice exhibited progressive high-frequency hearing loss and degeneration of actin-based stereocilia as previously reported for hair cell-specific Actb knockout mice. Thus, β-actin protein is not required for general cellular functions, but is necessary to maintain auditory stereocilia."	"Comprehensive genomic diagnosis of non-syndromic and syndromic hereditary hearing loss in Spanish patients. Sensorineural hearing loss (SNHL) is the most common sensory impairment. Comprehensive next-generation sequencing (NGS) has become the standard for the etiological diagnosis of early-onset SNHL. However, accurate selection of target genomic regions (gene panel/exome/genome), analytical performance and variant interpretation remain relevant difficulties for its clinical implementation. We developed a novel NGS panel with 199 genes associated with non-syndromic and/or syndromic SNHL. We evaluated the analytical sensitivity and specificity of the panel on 1624 known single nucleotide variants (SNVs) and indels on a mixture of genomic DNA from 10 previously characterized lymphoblastoid cell lines, and analyzed 50 Spanish patients with presumed hereditary SNHL not caused by GJB2/GJB6, OTOF nor MT-RNR1 mutations. The analytical sensitivity of the test to detect SNVs and indels on the DNA mixture from the cell lines was &gt; 99.5%, with a specificity &gt; 99.9%. The diagnostic yield on the SNHL patients was 42% (21/50): 47.6% (10/21) with autosomal recessive inheritance pattern (BSND, CDH23, MYO15A, STRC [n = 2], USH2A [n = 3], RDX, SLC26A4); 38.1% (8/21) autosomal dominant (ACTG1 [n = 3; 2 de novo], CHD7, GATA3 [de novo], MITF, P2RX2, SOX10), and 14.3% (3/21) X-linked (COL4A5 [de novo], POU3F4, PRPS1). 46.9% of causative variants (15/32) were not in the databases. 28.6% of genetically diagnosed cases (6/21) had previously undetected syndromes (Barakat, Usher type 2A [n = 3] and Waardenburg [n = 2]). 19% of genetic diagnoses (4/21) were attributable to large deletions/duplications (STRC deletion [n = 2]; partial CDH23 duplication; RDX exon 2 deletion). In the era of precision medicine, obtaining an etiologic diagnosis of SNHL is imperative. Here, we contribute to show that, with the right methodology, NGS can be transferred to the clinical practice, boosting the yield of SNHL genetic diagnosis to 50-60% (including GJB2/GJB6 alterations), improving diagnostic/prognostic accuracy, refining genetic and reproductive counseling and revealing clinically relevant undiagnosed syndromes."	"Analysis of 17 genes detects mutations in 81% of 811 patients with lissencephaly. To estimate diagnostic yield and genotype-phenotype correlations in a cohort of 811 patients with lissencephaly or subcortical band heterotopia. We collected DNA from 756 children with lissencephaly over 30 years. Many were tested for deletion 17p13.3 and mutations of LIS1, DCX, and ARX, but few other genes. Among those tested, 216 remained unsolved and were tested by a targeted panel of 17 genes (ACTB, ACTG1, ARX, CRADD, DCX, LIS1, TUBA1A, TUBA8, TUBB2B, TUBB, TUBB3, TUBG1, KIF2A, KIF5C, DYNC1H1, RELN, and VLDLR) or by whole-exome sequencing. Fifty-five patients studied at another institution were added as a validation cohort. The overall mutation frequency in the entire cohort was 81%. LIS1 accounted for 40% of patients, followed by DCX (23%), TUBA1A (5%), and DYNC1H1 (3%). Other genes accounted for 1% or less of patients. Nineteen percent remained unsolved, which suggests that several additional genes remain to be discovered. The majority of unsolved patients had posterior pachygyria, subcortical band heterotopia, or mild frontal pachygyria. The brain-imaging pattern correlates with mutations in single lissencephaly-associated genes, as well as in biological pathways. We propose the first LIS classification system based on the underlying molecular mechanisms."	"A novel missense mutation in the ACTG1 gene in a family with congenital autosomal dominant deafness: A case report. The ACTG1 gene encodes the cytoskeletal protein γ-actin, which functions in non‑muscle cells and is abundant in the auditory hair cells of the cochlea. Autosomal dominant missense mutations in ACTG1 are associated with DFNA20/26, a disorder that is typically characterized by post‑lingual progressive hearing loss. To date, 17 missense mutations in ACTG1 have been reported in 20 families with DFNA20/26. The present study described a small family with autosomal dominant nonsyndromic hearing loss. A novel heterozygous missense mutation, c.94C&gt;T (p.Pro32Ser), in ACTG1 was identified using the TruSight One sequencing panel. Notably, congenital hearing loss in our proband was identified by newborn hearing screening at birth. In silico predictions of protein structure and function indicate that the p.Pro32Ser mutation may result in conformational changes in γ‑actin. The present study expands the understanding of the phenotypic effects of heterozygous missense mutations in the ACTG1 gene. In specific, the present results emphasize that mutations in ACTG1 result in a diverse spectrum of onset ages, including congenital in addition to post‑lingual onset."	"A novel de novo mutation of ACTG1 in two sporadic non-syndromic hearing loss cases. NA"	"Large-scale GWAS identifies multiple loci for hand grip strength providing biological insights into muscular fitness. Hand grip strength is a widely used proxy of muscular fitness, a marker of frailty, and predictor of a range of morbidities and all-cause mortality. To investigate the genetic determinants of variation in grip strength, we perform a large-scale genetic discovery analysis in a combined sample of 195,180 individuals and identify 16 loci associated with grip strength (P&lt;5 × 10<sup>-8</sup>) in combined analyses. A number of these loci contain genes implicated in structure and function of skeletal muscle fibres (ACTG1), neuronal maintenance and signal transduction (PEX14, TGFA, SYT1), or monogenic syndromes with involvement of psychomotor impairment (PEX14, LRPPRC and KANSL1). Mendelian randomization analyses are consistent with a causal effect of higher genetically predicted grip strength on lower fracture risk. In conclusion, our findings provide new biological insight into the mechanistic underpinnings of grip strength and the causal role of muscular strength in age-related morbidities and mortality."	"Myocardial Injury Is Distinguished from Stable Angina by a Set of Candidate Plasma Biomarkers Identified Using iTRAQ/MRM-Based Approach. The lack of precise biomarkers that identify patients at risk for myocardial injury and stable angina delays administration of optimal therapy. Hence, the search for noninvasive biomarkers that could accurately stratify patients with impending heart attack, from patients with stable coronary artery disease (CAD), is urgently needed in the clinic. Herein, we performed comparative quantitative proteomics on whole plasma sampled from patients with stable angina (NMI), acute myocardial infarction (MI), and healthy control subjects (Ctrl). We detected a total of 371 proteins with high confidence (FDR &lt; 1%, p &lt; 0.05) including 53 preliminary biomarkers that displayed ≥2-fold modulated expression in patients with CAD (27 associated with atherosclerotic stable angina, 26 with myocardial injury). In the verification phase, we used label-free LC-MRM-MS-based targeted method to verify the preliminary biomarkers in pooled plasma, excluded peptides that were poorly distinguished from background, and performed further validation of the remaining candidates in 49 individual plasma samples. Using this approach, we identified a final panel of eight novel candidate biomarkers that were significantly modulated in CAD (p &lt; 0.05) including proteins associated with atherosclerotic stable angina that were implicated in endothelial dysfunction (F10 and MST1), proteins associated with myocardial injury reportedly involved in plaque destabilization (SERPINA3, CPN2, LUM), and in tissue protection/repair mechanisms (ORM2, ACTG1, NAGLU). Taken together, our data showed that candidate biomarkers with potential diagnostic values can be successfully detected in nondepleted human plasma using an iTRAQ/MRM-based discovery-validation approach and demonstrated the plausible clinical utility of the proposed panel in discriminating atherosclerotic stable angina from myocardial injury in the studied cohort."	"New ocular finding in Baraitser-Winter syndrome (BWS). Baraitser-Winter syndrome was first described as a syndrome of iris coloboma, ptosis, hypertelorism, and mental retardation (Baraitser and Winter 1988; Baraitser, 2016). The phenotypic spectrum has since broadened to include other facial dysmorphic features, deafness, microcephaly, lissencephaly, and CNS findings (Baraitser and Winter 1988; Ganesh et al., 2005; Henedy et al., 2010; Verloes et al., 2015). The syndrome is due to pathogenic variants on either ACTB or ACTG1 genes (Di Donato et al., 2014; Rivière et al., 2012). There is still discussion which gene variant produces a more severe phenotype (Di Donato et al., 2016; Di Donato et al., 2014; Verloes et al., 2015). We report a 3-year-old girl with short stature, mild global developmental delay, minor brain anomalies and few dysmorphic features including unusual stroma of the irises and unreported corectopia. Exome sequencing reported a de novo likely pathogenic variant on the ACTB gene. The present report adds a new ocular finding to the phenotypic spectrum."	"Actin Gamma 1, a new skin cancer pathogenic gene, identified by the biological feature-based classification. Skin cancer is the most common form of cancer that accounting for at least 40% of cancer cases around the world. This study aimed to identify skin cancer-related biological features and predict skin cancer candidate genes by employing machine learning based on biological features of known skin cancer genes. The known skin cancer-related genes were fetched from database and encoded by the enrichment scores of gene ontology and pathways. The optimal features of the skin cancer related genes were selected with a series of feature selection methods, such as mRMR, IFS, and Random Forest algorithm. Quantitative PCR (Q-PCR) was performed for the predicted genes. Effects on proliferation and metastasis of skin cancer cell line A431 were detected through MTT and transwell assay. The effects on myosin light chain (MLC) phosphorylation of Actin Gamma 1 (ACTG1) were detected by Western blot. A total of 1233 GO terms and 55 KEGG pathway terms were identified as the optimal features for the depiction of skin cancer. According to those terms, 1134 possible skin cancer-related genes were predicted. We further identified 16 new biomarkers in expression and the classification model can predict skin cancer cases with 100% accuracy. Among the 16 genes, ACTG1 had significantly high expression in skin cancer tissue. Our investigation suggested that ACTG1 can regulate the cell proliferation and migration through ROCK signaling pathway."	"Liquid chromatography-mass spectrometry-based quantitative proteomics analysis reveals chondroprotective effects of astragaloside IV in interleukin-1β-induced SW1353 chondrocyte-like cells. Chondrocyte apoptosis played a key role on the progression of Osteoarthritis (OA). Safe and effective drugs are urgently needed for the treatment of OA. Previous study reported that Astragaloside IV (ASG-IV) had exerted a protective effect against articular cartilage degeneration by promoting rapid proliferation of chondrocyte. Therefore, the aim of our study is to explore the effects and mechanisms of ASG-IV in chondrocyte apoptosis. Isobaric Tags For Relative And Absolute Quantitation (iTRAQ)-based quantitative proteomics was used to quantitatively detect and map proteins in SW1353 chondrocyte-like cells pre-treated with ASG-IV or interleukin-1β (IL-1β) or ASG-IV+IL-1β. The iTRAQ-labeled peptides were fractionated by high-accuracy liquid chromatography-mass spectrometry (LC-MS). Cell apoptosis and differentially expressed proteins was detected by flow cytometry (FCM), quantitative real-time polymerase chain reaction (qRT-PCR), and western blotting, respectively. The apoptosis of the IL-1β-induced SW1353 cells treated with ASG-IV was greatly inhibited. Bioinformatics analysis revealed that gamma actin 1 (ACTG1) and Yes Associated Protein 1 (YAP1), participating in the Hippo signaling pathway and Vitronectin (VTN) and Collagen Type I Alpha 1 Chain (COL1A1), involving in the extracellular matrix (ECM)-receptor interaction signaling pathway, were all significantly up-regulated in the IL-1β-induced SW1353 cells after treatment with ASG-IV. The qRT-PCR and Western blotting results confirmed the up-regulation of these four genes. ASG-IV played a positive role in human osteoarthritic chondrocyte apoptosis, possibly through modulation of the Hippo signaling pathway by up-regulating YAP1and ACTG1 expression, and also by up-regulating VTN and COL1A1, which are involved in the ECM-receptor interaction pathway. Taken together, all the results suggested that ASG-IV had a novel therapeutic potential for the treatment of OA."	"Outcomes of cochlear implantation for the patients with specific genetic etiologies: a systematic literature review. Most of the cases with gene mutations of intra-cochlear etiology showed relatively good CI outcomes. To progress toward more solid evidence-based CI intervention, a greater number of reports including CI outcomes for specific gene mutations are desired. Cochlear implantation (CI) is the most important and effective treatment for patients with profound sensorineural hearing loss. However, the outcomes of CI vary among patients. One of the reasons of this heterogeneous outcome for cochlear implantation is thought to be the heterogeneous nature of hearing loss. Indeed, genetic factors, the most common etiology in severe-to-profound hearing loss, might be one of the key determinants of outcomes for CI and electric acoustic stimulation (EAS). Patients with genetic causes involving an 'intra-cochlear' etiology show good CI/EAS outcomes. This review article aimed to summarize the reports on CI/EAS outcomes in patients with special genetic causes as well as to assist in future clinical decision-making. Most of the cases were suspected of an intra-cochlear etiology, such as those with GJB2, SLC26A4, and OTOF mutations, which showed relatively good CI outcomes. However, there have only been a limited number of reports on patients with other gene mutations."	"The Clinical Manifestations and Genetic Implications of Baraitser-Winter Syndrome Type 2. An 18-year-old Caucasian male was born by cesarean section weighing 2.6 kg (5 lb 14 oz) at birth after an uncomplicated pregnancy with no perinatal complications. Around 4 to 5 months of age, the patient's mother initially became concerned as he was experiencing signs of developmental delay and a mild floppy tone, in addition to facial features that resembled some form of mental retardation. The patient's older brother also experienced similar developmental symptoms and facial features that presented around the same age period as our patient. It was initially thought to be Down syndrome; however, both the patient and his brother tested negative for Down syndrome on chromosomal analyses. There was also a question of whether the patient had some form of autism spectrum disorder, but doctors were unable to specifically confirm this. Now at the age of 18 years, the patient has no understandable speech with distinctive facial features such as a broad nasal bridge and prominent epicanthic folds, lissencephaly, smaller than average head size, intellectual disability, and hearing loss. It was discovered, through trio-based exome sequencing, that the patient had a de novo missense mutation (p.Ser155Phe) in the ACTG1 gene, which has been linked to the rare syndrome known as Baraister-Winter syndrome type 2. Baraitser-Winter syndrome 2 is a unique variant that is clinically similar to Baraitser-Winter syndrome type 1; however, only seven previous cases have been reported."	"A recurrent de novo mutation in ACTG1 causes isolated ocular coloboma. Ocular coloboma (OC) is a defect in optic fissure closure and is a common cause of severe congenital visual impairment. Bilateral OC is primarily genetically determined and shows marked locus heterogeneity. Whole-exome sequencing (WES) was used to analyze 12 trios (child affected with OC and both unaffected parents). This identified de novo mutations in 10 different genes in eight probands. Three of these genes encoded proteins associated with actin cytoskeleton dynamics: ACTG1, TWF1, and LCP1. Proband-only WES identified a second unrelated individual with isolated OC carrying the same ACTG1 allele, encoding p.(Pro70Leu). Both individuals have normal neurodevelopment with no extra-ocular signs of Baraitser-Winter syndrome. We found this mutant protein to be incapable of incorporation into F-actin. The LCP1 and TWF1 variants each resulted in only minor disturbance of actin interactions, and no further plausibly causative variants were identified in these genes on resequencing 380 unrelated individuals with OC."	"Differential proteome profiling in the hippocampus of amnesic mice. Amnesia or memory loss is associated with brain aging and several neurodegenerative pathologies including Alzheimer's disease (AD). This can be induced by a cholinergic antagonist scopolamine but the underlying molecular mechanism is poorly understood. This study of proteome profiling in the hippocampus could provide conceptual insights into the molecular mechanisms involved in amnesia. To reveal this, mice were administered scopolamine to induce amnesia and memory impairment was validated by novel object recognition test. Using two-dimensional gel electrophoresis coupled with MALDI-MS/MS, we have analyzed the hippocampal proteome and identified 18 proteins which were differentially expressed. Out of these proteins, 11 were downregulated and 7 were upregulated in scopolamine-treated mice as compared to control. In silico analysis showed that the majority of identified proteins are involved in metabolism, catalytic activity, and cytoskeleton architectural functions. STRING interaction network analysis revealed that majority of identified proteins exhibit common association with Actg1 cytoskeleton and Vdac1 energy transporter protein. Furthermore, interaction map analysis showed that Fascin1 and Coronin 1b individually interact with Actg1 and regulate the actin filament dynamics. Vdac1 was significantly downregulated in amnesic mice and showed interaction with other proteins in interaction network. Therefore, we silenced Vdac1 in the hippocampus of normal young mice and found similar impairment in recognition memory of Vdac1 silenced and scopolamine-treated mice. Thus, these findings suggest that Vdac1-mediated disruption of energy metabolism and cytoskeleton architecture might be involved in scopolamine-induced amnesia."	"miR-10a suppresses colorectal cancer metastasis by modulating the epithelial-to-mesenchymal transition and anoikis. MicroRNAs (miRNAs) have a critical role in tumorigenesis and metastasis, which are major obstacles of cancer therapy. However, the role of miRNAs in colorectal cancer (CRC) metastasis remains poorly understood. Here, we found that miRNA-10a (miR-10a) was upregulated in primary CRC tissues and cell line (SW480) derived from primary CRC compared with metastatic cancer tissues in lymph node and cell line (SW620). The differential expression of miR-10a was inversely correlated with distant metastasis and invasion depth. miR-10a promoted migration and invasion in vitro but inhibited metastasis in vivo by regulating the epithelial-to-mesenchymal transition and anoikis. Furthermore, matrix metalloproteinase 14 (MMP14) and actin gamma 1 (ACTG1) were validated as target genes of miR-10a in CRC cells. Ectopic expression of MMP14 and ACTG1 counteracted the decreased cell adhesion and anoikis resistance activities induced by miR-10a. These findings not only describe the mechanism by which miR-10a suppresses CRC metastasis but also suggest the potential prognostic and therapeutic value of miR-10a in CRC patients."	"Clinical value of miR-145-5p in NSCLC and potential molecular mechanism exploration: A retrospective study based on GEO, qRT-PCR, and TCGA data. MicroRNAs have been reported to be involved in various biological processes. Here, we performed a systematic analysis to explore the clinical value and potential molecular mechanism of miR-145-5p in non-small cell lung cancer. First, a meta-analysis was performed with eligible literature, followed by microRNA microarrays in the Gene Expression Omnibus database, to verify the diagnostic and prognostic values of miR-145-5p. A cohort of 125 clinical paired non-small cell lung cancer samples was next used to detect the level of miR-145-5p and to explore the relationship of miR-145-5p with clinicopathological parameters. The Cancer Genome Atlas database was additionally applied to investigate the role of miR-145-5p in non-small cell lung cancer. The potential targets of miR-145-5p were predicted using 12 online prediction databases to explore the prospective molecular mechanism of miR-145-5p in non-small cell lung cancer. The expression of miR-145-5p in non-small cell lung cancer was significantly lower than that in healthy tissues. And miR-145-5p tended to show better diagnostic performance in lung squamous cell carcinoma than in lung adenocarcinoma. Furthermore, the expression of miR-145-5p was closely associated with lymph node metastasis in non-small cell lung cancer. Gene ontology enrichment and Kyoto Encyclopedia of Genes and Genomes pathway analysis revealed that the target genes were mainly enriched with enzyme-linked receptor protein signaling pathways, SH3 domain binding, cell leading edge, and adherens junction. The protein-protein interaction network showed that eight hub genes (SMAD4, SMAD2, IRS1, FOXO1, ERBB4, NRAS, ACTB, and ACTG1) might be the key target genes of miR-145-5p in non-small cell lung cancer. The information we obtained might offer new perspectives for clinical diagnosis and treatment for non-small cell lung cancer."	"Acute myeloid leukemia in Baraitser-Winter cerebrofrontofacial syndrome. Baraitser-Winter malformation syndrome (BWMS), Fryns-Aftimos syndrome (FA), and craniofrontofacial syndromes (CFFs) have all been recently proposed to be part of the same phenotypic spectrum of Baraitser-Winter cerebrofrontofacial syndrome (BWCFF), which is characterized by facial dysmorphism, ocular coloboma, brain malformations, and intellectual disabilities. In addition to that, the recent discovery of missense mutations in one of the two ubiquitously expressed cytoplasmic β- and γ-acting-encoding genes ACTB (7p22.1) and ACTG1 (17q25.3) in patients carrying a clinical diagnosis of BWSM, FA, or CCF has provided further evidence that these clinical conditions do indeed belong to the same entity at the molecular level. Two cases of BWCFF patients presenting with malignancies (i.e., acute lymphocytic leukemia and cutaneous lymphoma) have been published thus far. Here, we report a 21-year-old female with molecularly confirmed FA, who developed acute myeloid leukemia (AML). The present finding may indicate that actinopathies could be cancer-predisposing syndromes although small numbers and publication bias should be taken into account. © 2016 Wiley Periodicals, Inc."	"Genetic Basis of Brain Malformations. Malformations of cortical development (MCD) represent a major cause of developmental disabilities, severe epilepsy, and reproductive disadvantage. Genes that have been associated to MCD are mainly involved in cell proliferation and specification, neuronal migration, and late cortical organization. Lissencephaly-pachygyria-severe band heterotopia are diffuse neuronal migration disorders causing severe global neurological impairment. Abnormalities of the LIS1, DCX, ARX, RELN, VLDLR, ACTB, ACTG1, TUBG1, KIF5C, KIF2A, and CDK5 genes have been associated with these malformations. More recent studies have also established a relationship between lissencephaly, with or without associated microcephaly, corpus callosum dysgenesis as well as cerebellar hypoplasia, and at times, a morphological pattern consistent with polymicrogyria with mutations of several genes (TUBA1A, TUBA8, TUBB, TUBB2B, TUBB3, and DYNC1H1), regulating the synthesis and function of microtubule and centrosome key components and hence defined as tubulinopathies. MCD only affecting subsets of neurons, such as mild subcortical band heterotopia and periventricular heterotopia, have been associated with abnormalities of the DCX, FLN1A, and ARFGEF2 genes and cause neurological and cognitive impairment that vary from severe to mild deficits. Polymicrogyria results from abnormal late cortical organization and is inconstantly associated with abnormal neuronal migration. Localized polymicrogyria has been associated with anatomo-specific deficits, including disorders of language and higher cognition. Polymicrogyria is genetically heterogeneous, and only in a small minority of patients, a definite genetic cause has been identified. Megalencephaly with normal cortex or polymicrogyria by MRI imaging, hemimegalencephaly and focal cortical dysplasia can all result from mutations in genes of the PI3K-AKT-mTOR pathway. Postzygotic mutations have been described for most MCD and can be limited to the dysplastic tissue in the less diffuse forms."	"Baraitser-Winter cerebrofrontofacial syndrome. Baraitser-Winter cerebrofrontofacial syndrome (BWCFF) (BRWS; MIM #243310, 614583) is a rare developmental disorder affecting multiple organ systems. It is characterised by intellectual disability (mild to severe) and distinctive facial appearance (metopic ridging/trigonocephaly, bilateral ptosis, hypertelorism). The additional presence of cortical malformations (pachygyria/lissencephaly) and ocular colobomata are also suggestive of this syndrome. Other features include moderate short stature, contractures, congenital cardiac disease and genitourinary malformations. BWCFF is caused by missense mutations in the cytoplasmic beta- and gamma-actin genes ACTB and ACTG1. We provide an overview of the clinical characteristics (including some novel findings in four recently diagnosed patients), diagnosis, management, mutation spectrum and genetic counselling."	"Update on the ACTG1-associated Baraitser-Winter cerebrofrontofacial syndrome. Baraitser-Winter cerebrofrontofacial syndrome is caused by heterozygous missense mutations in one of the two ubiquitous cytoplasmic actin-encoding genes ACTB and ACTG1. Recently, we characterized the large cohort of 41 patients presenting with this condition. Our series contained 34 patients with mutations in ACTB and only nine with ACTG1 mutations. Here, we report on seven unrelated patients with six mutations in ACTG1-four novel and two previously reported. Only one of seven patients was clinically diagnosed with this disorder and underwent ACTB/ACTG1 targeted sequencing, four patients were screened as a part of the large lissencephaly cohort and two were tested with exome sequencing. Retrospectively, facial features were compatible with the diagnosis but significantly milder than previously reported in four patients, and non-specific in one. The pattern of malformations of cortical development was highly similar in four of six patients with available MRI images and encompassed frontal predominant pachygyria merging with the posterior predominant band heterotopia. Two remaining patients showed mild involvement consistent with bilaterally simplified gyration over the frontal lobes. Taken together, we expand the clinical spectrum of the ACTG1-associated Baraitser-Winter cerebrofrontofacial syndrome demonstrating the mild end of the facial and brain manifestations. © 2016 Wiley Periodicals, Inc."	"A novel mutation in ACTG1 causing Baraitser-Winter syndrome with extremely variable expressivity in three generations. Baraitser-Winter syndrome (cerebrofrontofacial syndrome, type 3) is a rare developmental disorder typified by hypertelorism, ptosis, high-arched eyebrows, ocular coloboma, and brain malformations. Other common manifestations include hearing loss, short stature, seizures, intellectual impairment, muscle dysfunction, and abnormalities of the kidney and urinary system. This syndrome is caused by missense mutations in the genes ACTB or ACTG1, both of which encode for cytoplasmic actin proteins crucial for proper development of many organs in the human body. There are no reports of familial transmission; all reported cases have been new mutations. However, different mutations in ACTG1 have been reported to cause isolated non-syndromic hearing loss, with many reported cases of autosomal dominant (AD) inheritance. We have identified a three-generation pedigree segregating a novel mutation in the ACTG1 gene that causes Baraitser-Winter Syndrome with extremely variable expressivity, leading to an initial diagnosis of isolated AD hearing loss in two members. Subtle optic nerve signs not previously reported in this syndrome are also documented in one patient."	"Phenotypic Heterogeneity in a DFNA20/26 family segregating a novel ACTG1 mutation. Genetic factors play an important role in hearing loss, contributing to approximately 60% of cases of congenital hearing loss. Autosomal dominant deafness accounts for approximately 20% of cases of hereditary hearing loss. Diseases with autosomal dominant inheritance often show pleiotropy, different degrees of penetrance, and variable expressivity. A three-generation Chinese family with autosomal dominant nonsyndromic hearing impairment (ADNSHI) was enrolled in this study. Audiometric data and blood samples were collected from the family. In total, 129 known human deafness genes were sequenced using next-generation sequencing (NGS) to identify the responsible gene mutation in the family. Whole Exome Sequencing (WES) was performed to exclude any other variant that cosegregated with the phenotype. The age of onset of the affected family members was the second decade of life. The condition began with high-frequency hearing impairment in all family members excluding III:2. The novel ACTG1 c.638A &gt; G (p.K213R) mutation was found in all affected family members and was not found in the unaffected family members. A heterozygous c.638A &gt; G mutation in ACTG1 and homozygous c.109G &gt; A (p.V37I) mutation in GJB2 were found in III:2, who was born with hearing loss. The WES result concurred with that of targeted sequencing of known deafness genes. The novel mutation p.K213R in ACTG1 was found to be co-segregated with hearing loss and the genetic cause of ADNSHI in this family. A homozygous mutation associated with recessive inheritance only rarely co-acts with a dominant mutation to result in hearing loss in a dominant family. In such cases, the mutations in the two genes, as in ACTG1 and GJB2 in the present study, may result in a more severe phenotype. Targeted sequencing of known deafness genes is one of the best choices to identify the genetic cause in hereditary hearing loss families."	"Ubiquitin ligase TRIM3 controls hippocampal plasticity and learning by regulating synaptic γ-actin levels. Synaptic plasticity requires remodeling of the actin cytoskeleton. Although two actin isoforms, β- and γ-actin, are expressed in dendritic spines, the specific contribution of γ-actin in the expression of synaptic plasticity is unknown. We show that synaptic γ-actin levels are regulated by the E3 ubiquitin ligase TRIM3. TRIM3 protein and Actg1 transcript are colocalized in messenger ribonucleoprotein granules responsible for the dendritic targeting of messenger RNAs. TRIM3 polyubiquitylates γ-actin, most likely cotranslationally at synaptic sites. Trim3(-/-) mice consequently have increased levels of γ-actin at hippocampal synapses, resulting in higher spine densities, increased long-term potentiation, and enhanced short-term contextual fear memory consolidation. Interestingly, hippocampal deletion of Actg1 caused an increase in long-term fear memory. Collectively, our findings suggest that temporal control of γ-actin levels by TRIM3 is required to regulate the timing of hippocampal plasticity. We propose a model in which TRIM3 regulates synaptic γ-actin turnover and actin filament stability and thus forms a transient inhibitory constraint on the expression of hippocampal synaptic plasticity. "	"Construction of a full-length cDNA library and preliminary analysis of expressed sequence tags from lymphocytes of half-pipe snowboarding athletes. The genes of top athletes are a valuable genetic resource for the human race, and could be exploited to identify novel genes related to sports ability, as well as other functions. We analyzed the expressed sequence tags from top half-pipe snowboarding athletes using the SMART complementary DNA (cDNA) library construction method to elucidate the characteristics of the athlete genome and the differential expression of the genes it contains. Overall, we established a full-length cDNA library from the lymphocytes of half-pipe snowboarding athletes and analyzed the inserted gene fragments. We also classified those genes according to molecular function, biological characteristics, cellular composition, protein types, and signal paths. A total of 201 functional genes were noted, which were distributed in 27 pathways. TXN, MDH1, ARL1, ARPC3, ACTG1, and other genes measured in sequence may be associated with physical ability. This suggests that the SMART cDNA library constructed from the genetic material from top athletes is an effective tool for preserving genetic sports resources and providing genetic markers of physical ability for athlete selection."	"Myofibroblasts contribute to but are not necessary for wound contraction. Wound contraction facilitates tissue repair. The correct balance between too little contraction, which leads to non-healing wounds, and too much contraction, which leads to contractures, is important for optimal healing. Thus, understanding which cells cause wound contraction is necessary to optimize repair. Wound contraction is hypothesized to develop from myofibroblast (cells which express alpha-smooth muscle actin; ACTA2) contractility, while the role of fibroblast contractility is unknown. In this study, we utilized ACTA2 null mice to determine what role fibroblasts play in wound contraction. Human scar contractures were immunostained for ACTA2, beta-cytoplasmic actin (ACTB), and gamma-cytoplasmic actin (ACTG1). Full-thickness cutaneous wounds were created on dorsum of ACTA2(+/+) mice and strain-matching ACTA2(+/-) and ACTA2(-/-) mice. Wound contraction was quantified. Tissue was harvested for histologic, immunohistochemical and protein analysis. Compared with surrounding unwounded skin, human scar tissue showed increased expression of ACTA2, ACTB, and ACTG1. ACTA2 was focally expressed in clusters. ACTB and ACTG1 were widely, highly expressed throughout scar tissue. Wound contraction was significantly retarded in ACTA2(-/-) mice, as compared to ACTA2(+/+) controls. Control mice had increased epithelialization, cell proliferation, and neovascularization. ACTA2(-/-) mice had lower levels of apoptosis, and fewer total numbers of cells. Smaller amount of collagen deposition and immature collagen organization in ACTA2(-/-) mice demonstrate that wounds were more immature. These data demonstrate that myofibroblasts contribute to but are not necessary for wound contraction. Mechanisms by which fibroblasts promote wound contraction may include activation of contractile signaling pathways, which promote interaction between non-muscle myosin II and ACTB and ACTG1. "	"Effect of carbon monoxide on gene expression in cerebrocortical astrocytes: Validation of reference genes for quantitative real-time PCR. Quantitative real-time reverse transcription-polymerase chain reaction (qRT-PCR) is a widely used technique to characterize changes in gene expression in complex cellular and tissue processes, such as cytoprotection or inflammation. The accurate assessment of changes in gene expression depends on the selection of adequate internal reference gene(s). Carbon monoxide (CO) affects several metabolic pathways and de novo protein synthesis is crucial in the cellular responses to this gasotransmitter. Herein a selection of commonly used reference genes was analyzed to identify the most suitable internal control genes to evaluate the effect of CO on gene expression in cultured cerebrocortical astrocytes. The cells were exposed to CO by treatment with CORM-A1 (CO releasing molecule A1) and four different algorithms (geNorm, NormFinder, Delta Ct and BestKeeper) were applied to evaluate the stability of eight putative reference genes. Our results indicate that Gapdh (glyceraldehyde-3-phosphate dehydrogenase) together with Ppia (peptidylpropyl isomerase A) is the most suitable gene pair for normalization of qRT-PCR results under the experimental conditions used. Pgk1 (phosphoglycerate kinase 1), Hprt1 (hypoxanthine guanine phosphoribosyl transferase I), Sdha (Succinate Dehydrogenase Complex, Subunit A), Tbp (TATA box binding protein), Actg1 (actin gamma 1) and Rn18s (18S rRNA) genes presented less stable expression profiles in cultured cortical astrocytes exposed to CORM-A1 for up to 60 min. For validation, we analyzed the effect of CO on the expression of Bdnf and bcl-2. Different results were obtained, depending on the reference genes used. A significant increase in the expression of both genes was found when the results were normalized with Gapdh and Ppia, in contrast with the results obtained when the other genes were used as reference. These findings highlight the need for a proper and accurate selection of the reference genes used in the quantification of qRT-PCR results in studies on the effect of CO in gene expression."	"Rare ACTG1 variants in fetal microlissencephaly. Heterozygous ACTG1 mutations are responsible for Baraitser-Winter cerebrofrontofacial syndrome which cortical malformation is characterized by pachygyria with frontal to occipital gradient of severity. We identified by whole exome sequencing in a cohort of 12 patients with prenatally diagnosed microlissencephaly, 2 foetal cases with missense mutations in the ACTG1 gene and in one case of living patient with typical Baraitser-Winter syndrome. Both foetuses and child exhibited microcephaly and facial dysmorphism consisting of microretrognatism, hypertelorism and low-set ears. Brain malformations included lissencephaly with an immature cortical plate, dysmorphic (2/3) or absent corpus callosum and vermian hypoplasia (2/3). Our results highlight the powerful diagnostic value of exome sequencing for patients with microlissencephaly, that may expand the malformation spectrum of ACTG1-related Baraitser-Winter cerebrofrontofacial syndrome and may suggest that ACTG1 could be added to the list of genes for assessing microlissencephaly. "	"Bioinformatic analysis of specific genes in diabetic nephropathy. We attempt to explore the pathogenesis and specific genes with aberrant expression in diabetic nephropathy (DN). The gene expression profile of GSE1009 was downloaded from Gene Expression Omnibus database, including 3 normal function glomeruli and DN glomeruli from cadaveric donor kidneys. The differentially expressed genes (DEGs) were analyzed and the aberrant gene-related functions were predicted by informatics methods. The protein-protein interaction (PPI) networks for DEGs were constructed and the functional sub-network was screened. A total of 416 DEGs were found to be differentially expressed in DN samples comparing with normal controls, including 404 up-regulated genes and 12 down-regulated genes. DEGs were involved in the process of combination to saccharides and the decline of tissue repairing ability of the organisms. The genes of VEGFA, ACTG1, HSP90AA1 had high degree in the PPI network. The main biological process of genes in the sub-network was related with cell proliferation and signal transmitting of cell membrane receptor. Significant nodes in PPI network provide new insights to understand the mechanism of DN. VEGFA, ACTG1 and HSP90AA1 may be the potential targets in the DN treatment."	"Mutational spectrum and clinical features of patients with ACTG1 mutations identified by massively parallel DNA sequencing. ACTG1 has been reported to be a causative gene for autosomal dominant sensorineural hearing loss, DFNA20/26. In this study we sought to clarify the detailed mutational spectrum, clinical features, and genotype-phenotype correlations. Massively parallel DNA sequencing (MPS) of 63 target candidate genes was used to screen 1120 Japanese hearing loss patients. MPS screening successfully identified 4 ACTG1 mutations in 5 families. The majority of patients showed high frequency-involved progressive hearing loss, with the age of onset mostly in the first or second decade. One patient received electric acoustic stimulation (EAS), which showed a good outcome. Target exon-sequencing using MPS was proven to be a powerful new clinical diagnostic tool for the identification of rare causative genes such as ACTG1. The present clinical findings not only confirmed those previous reports but also provided important new clinical information."	"Baraitser and Winter syndrome with growth hormone deficiency. Baraitser-Winter syndrome (BWS), first reported in 1988, is apparently due to genetic abnormalities that are still not well-defined, although many gene abnormalities are already discovered and de novo missense changes in the cytoplasmic actin-encoding genes (called ACTB and ACTG1) have been recently discovered. The syndrome combines facial and cerebral malformations. Facial malformations totally or partially present in the same patient are: Iris coloboma, bilateral ptosis, hypertelorism, broad nasal bridge, and prominent epicanthic folds. The various brain malformations are probably responsible for growth and mental retardation. To the best of our knowledge, the syndrome is very rare as few cases have been reported so far. Our aim was to describe a child with a phenotype that looks like BWS with proved partial growth hormone (GH) deficiency which was not reported before. A girl aged 7-year-old of consanguineous parents was referred for short stature and mental retardation. Clinical examination showed dwarfism and a delay in her mental development. Other clinical features included: Strabismus, epicanthic folds, broad nasal bridge, and brain anomalies such as lissencephaly, bilateral hygroma, and cerebral atrophy. Hormonal assessment showed partial GH deficiency without other endocrine disorders. Our case looks exactly like BWS. However, apart from facial and cerebral abnormalities, there is a partial GH deficiency which can explain the harmonious short stature. This case seems worth to be reported as it adds GH deficiency to the very rare syndrome. "	"Tobacco smoking-response genes in blood and buccal cells. Tobacco smoking is a well-known cause of various diseases, however, its toxic mechanisms for diseases are not completely understood, yet. Therefore, we performed biological monitoring to find tobacco smoking-responsive mechanisms including oxidative stress in Korean men (N=36). Whole genome microarray analyses were performed with peripheral blood from smokers and age-matched nonsmokers. We also performed qRT-PCR to confirm the microarray results and compared the gene expression of blood to those of buccal cells. To assess the effects of tobacco smoking on oxidative stress, we analyzed urinary levels of malondialdehyde (MDA), a lipid peroxidation marker, and performed PCR-based arrays on reactive oxygen species (ROS)-related genes. As results, 34 genes were differently expressed in blood between smokers and nonsmokers (ps&lt;0.01 and &gt;1.5-fold change). Particularly, the genes involved in immune responsive pathways, e.g., the Fcγ-receptor mediated phagocytosis and the leukocyte transendothelial migration pathways, were differentially expressed between smokers and nonsmokers. Among the above genes, the ACTG1, involved in the maintenance of actin cytoskeleton, cell migration and cancer metastasis, was highly expressed by smoking in both blood and buccal cells. Concerning oxidative stress, smokers showed high levels of urinary MDA and down-regulation of expressions of antioxidant related genes including TPO, MPO, GPX2, PTGR1, and NUDT1 as compared to nonsmokers (ps&lt;0.05). In conclusion, these results suggest that systemically altered immune response and oxidative stress can be tobacco-responsive mechanisms for the related diseases. Based on consistent results in blood and buccal cells, expression of the ACTG1 can be a tobacco smoking-responsive biomarker. "	"Partial trisomy 17q and partial monosomy 20q in a boy with craniosynostosis. Craniosynostosis is defined as a premature fusion of at least one cranial suture, which can be accompanied by other findings. Of syndromic cases, 14-22% have been associated with chromosomal rearrangements. This report describes a Brazilian boy with syndromic craniosynostosis who also presented with intellectual disability, microcephaly, frontal bossing, bitemporal narrowing, short neck, syndactyly, and cardiac defects. Chromosome banding showed an apparently normal male karyotype. Subsequent chromosomal microarray analysis (CMA) using the Affymetrix CytoScan 750 K Array showed a duplication of 2.1 Mb on chromosome 17q and a deletion of 1.4 Mb on chromosome 20q. The data suggested an unbalanced translocation, which was confirmed by fluorescence in-situ hybridization analysis (FISH). While there are several reports in the literature of chromosome 17q duplication syndrome accompanied by partial monosomies of other chromosomes, this is the first case featuring partial monosomy of 20q. The patient́s phenotype is generally consistent with 17q duplication syndrome, however craniosynostosis has rarely been associated with this chromosomal anomaly."	"Spectrum of diverse genomic alterations define non-clear cell renal carcinoma subtypes. To further understand the molecular distinctions between kidney cancer subtypes, we analyzed exome, transcriptome and copy number alteration data from 167 primary human tumors that included renal oncocytomas and non-clear cell renal cell carcinomas (nccRCCs), consisting of papillary (pRCC), chromophobe (chRCC) and translocation (tRCC) subtypes. We identified ten significantly mutated genes in pRCC, including MET, NF2, SLC5A3, PNKD and CPQ. MET mutations occurred in 15% (10/65) of pRCC samples and included previously unreported recurrent activating mutations. In chRCC, we found TP53, PTEN, FAAH2, PDHB, PDXDC1 and ZNF765 to be significantly mutated. Gene expression analysis identified a five-gene set that enabled the molecular classification of chRCC, renal oncocytoma and pRCC. Using RNA sequencing, we identified previously unreported gene fusions, including ACTG1-MITF fusion. Ectopic expression of the ACTG1-MITF fusion led to cellular transformation and induced the expression of downstream target genes. Finally, we observed upregulation of the anti-apoptotic factor BIRC7 in MiTF-high RCC tumors, suggesting a potential therapeutic role for BIRC7 inhibitors. "	"Targeted genomic capture and massively parallel sequencing to identify novel variants causing Chinese hereditary hearing loss. Hereditary hearing loss is genetically heterogeneous, and hundreds of mutations in than 60 genes are involved in this disease. Therefore, it is difficult to identify the causative gene mutations involved. In this study, we combined targeted genomic capture and massively parallel sequencing (MPS) to address this issue. Using targeted genomic capture and MPS, 104 genes and three microRNA regions were selected and simultaneously sequenced in 23 unrelated probands of Chinese families with nonsyndromic hearing loss. The results were validated by Sanger sequencing for all available members of the probands' families. To analyze the possible pathogenic functional effects of the variants, three types of prediction programs (Mutation Taster, PROVEAN and SIFT) were used. A total of 195 healthy Chinese Han individuals were compared as controls to verify the novel causative mutations. Of the 23 probands, six had mutations in DFNA genes [WFS1 (n = 2), COCH, ACTG1, TMC1, and POU4F3] known to cause autosomal dominant nonsyndromic hearing loss. These included one novel in-frame indel mutation, three novel missense mutations and two reported missense mutations. Furthermore, one proband from a family with recessive DFNB carried two monoallelic mutations in the GJB2 and USH2A genes. All of these mutations co-segregated with the hearing loss phenotype in 36 affected individuals from 7 families and were predicted to be pathogenic. Mutations in uncommon deafness genes contribute to a portion of nonsyndromic deafness cases. In the future, critical gene mutations may be accurately and quickly identified in families with hereditary hearing loss by targeted genomic capture and MPS."	"Omics technologies provide new insights into the molecular physiopathology of equine osteochondrosis. Osteochondrosis (OC(D)) is a juvenile osteo-articular disorder affecting several mammalian species. In horses, OC(D) is considered as a multifactorial disease and has been described as a focal disruption of endochondral ossification leading to the development of osteoarticular lesions. Nevertheless, OC(D) physiopathology is poorly understood. Affected horses may present joint swelling, stiffness and lameness. Thus, OC(D) is a major concern for the equine industry. Our study was designed as an integrative approach using omics technologies for the identification of constitutive defects in epiphyseal cartilage and/or subchondral bone associated with the development of primary lesions to further understand OC(D) pathology. This study compared samples from non-affected joints (hence lesion-free) from OC(D)-affected foals (n = 5, considered predisposed samples) with samples from OC-free foals (n = 5) considered as control samples. Consequently, results are not confounded by changes associated with the evolution of the lesion, but focus on altered constitutive molecular mechanisms. Comparative proteomics and micro computed tomography analyses were performed on predisposed and OC-free bone and cartilage samples. Metabolomics was also performed on synovial fluid from OC-free, OC(D)-affected and predisposed joints. Two lesion subtypes were identified: OCD (lesion with fragment) and OC (osteochondral defects). Modulated proteins were identified using omics technologies (2-DE proteomics) in cartilage and bone from affected foals compare to OC-free foals. These were associated with cellular processes including cell cycle, energy production, cell signaling and adhesion as well as tissue-specific processes such as chondrocyte maturation, extracellular matrix and mineral metabolism. Of these, five had already been identified in synovial fluid of OC-affected foals: ACTG1 (actin, gamma 1), albumin, haptoglobin, FBG (fibrinogen beta chain) and C4BPA (complement component 4 binding protein, alpha). This study suggests that OCD lesions may result from a cartilage defect whereas OC lesions may be triggered by both bone and cartilage defects, suggesting that different molecular mechanisms responsible for the equine osteochondrosis lesion subtypes and predisposition could be due to a defect in both bone and cartilage. This study will contribute to refining the definition of OC(D) lesions and may improve diagnosis and development of therapies for horses and other species, including humans."	"Proteomic analysis of the action of the Mycobacterium ulcerans toxin mycolactone: targeting host cells cytoskeleton and collagen. Buruli ulcer (BU) is a neglected tropical disease caused by Mycobacterium ulcerans. The tissue damage characteristic of BU lesions is known to be driven by the secretion of the potent lipidic exotoxin mycolactone. However, the molecular action of mycolactone on host cell biology mediating cytopathogenesis is not fully understood. Here we applied two-dimensional electrophoresis (2-DE) to identify the mechanisms of mycolactone's cellular action in the L929 mouse fibroblast proteome. This revealed 20 changed spots corresponding to 18 proteins which were clustered mainly into cytoskeleton-related proteins (Dync1i2, Cfl1, Crmp2, Actg1, Stmn1) and collagen biosynthesis enzymes (Plod1, Plod3, P4ha1). In line with cytoskeleton conformational disarrangements that are observed by immunofluorescence, we found several regulators and constituents of both actin- and tubulin-cytoskeleton affected upon exposure to the toxin, providing a novel molecular basis for the effect of mycolactone. Consistent with these cytoskeleton-related alterations, accumulation of autophagosomes as well as an increased protein ubiquitination were observed in mycolactone-treated cells. In vivo analyses in a BU mouse model revealed mycolactone-dependent structural changes in collagen upon infection with M. ulcerans, associated with the reduction of dermal collagen content, which is in line with our proteomic finding of mycolactone-induced down-regulation of several collagen biosynthesis enzymes. Our results unveil the mechanisms of mycolactone-induced molecular cytopathogenesis on exposed host cells, with the toxin compromising cell structure and homeostasis by inducing cytoskeleton alterations, as well as disrupting tissue structure, by impairing the extracellular matrix biosynthesis. "	"Polymorphisms of the vincristine pathway and response to treatment in children with childhood acute lymphoblastic leukemia. Vincristine (VCR) is a standard component in the treatment of childhood acute lymphoblastic leukemia (ALL). VCR cytotoxicity is primarily due to its ability to disrupt the formation of microtubules of the mitotic spindle. Seventeen polymorphisms in regulatory and coding regions of genes controlling VCR targets (TUBB1, MAP4, ACTG1 and CAPG) or potentially influencing VCR levels (ABCB1 and CYP3A5) were investigated for an association with peripheral neuropathy and outcome in childhood ALL patients. High-grade neurotoxicity was more frequent in carriers of the A allele of synonymous (Ala310) G to A (rs1135989) variation in the ACTG1 gene. Substitution (rs4728709) in the promoter of the ABCB1 gene had a protective effect against lower grade neurotoxicity and C to A variation (rs3770102) located 17 nucleotides upstream from the transcription start site had a protective effect against high-grade neurotoxicity. Patients with the ABCB1 3435TT genotype had lower event-free survival; the association with event-free survival was not supported by the analysis in the replication patient set. The polymorphisms in the ACTG1, CAPG and ABCB1 genes may modulate VCR-related neurotoxicity, whereas the risk of relapse seems not to be affected by the genes of the VCR pathway."	"Baraitser-Winter cerebrofrontofacial syndrome: delineation of the spectrum in 42 cases. Baraitser-Winter, Fryns-Aftimos and cerebrofrontofacial syndrome types 1 and 3 have recently been associated with heterozygous gain-of-function mutations in one of the two ubiquitous cytoplasmic actin-encoding genes ACTB and ACTG1 that encode β- and γ-actins. We present detailed phenotypic descriptions and neuroimaging on 36 patients analyzed by our group and six cases from the literature with a molecularly proven actinopathy (9 ACTG1 and 33 ACTB). The major clinical anomalies are striking dysmorphic facial features with hypertelorism, broad nose with large tip and prominent root, congenital non-myopathic ptosis, ridged metopic suture and arched eyebrows. Iris or retinal coloboma is present in many cases, as is sensorineural deafness. Cleft lip and palate, hallux duplex, congenital heart defects and renal tract anomalies are seen in some cases. Microcephaly may develop with time. Nearly all patients with ACTG1 mutations, and around 60% of those with ACTB mutations have some degree of pachygyria with anteroposterior severity gradient, rarely lissencephaly or neuronal heterotopia. Reduction of shoulder girdle muscle bulk and progressive joint stiffness is common. Early muscular involvement, occasionally with congenital arthrogryposis, may be present. Progressive, severe dystonia was seen in one family. Intellectual disability and epilepsy are variable in severity and largely correlate with CNS anomalies. One patient developed acute lymphocytic leukemia, and another a cutaneous lymphoma, indicating that actinopathies may be cancer-predisposing disorders. Considering the multifaceted role of actins in cell physiology, we hypothesize that some clinical manifestations may be partially mutation specific. Baraitser-Winter cerebrofrontofacial syndrome is our suggested designation for this clinical entity. "	"In vitro growth conditions and development affect differential distributions of RNA in axonal growth cones and shafts of cultured rat hippocampal neurons. Local synthesis of proteins in the axons participates in axonogenesis and axon guidance to establish appropriate synaptic connections and confer plasticity. To study the transcripts present in the growth cones and axonal shafts of cultured rat hippocampal neurons, two chip devices, differing in their abilities to support axonal growth and branching, are designed and employed here to isolate large quantities of axonal materials. Cone-, shaft- and axon-residing transcripts with amounts higher than that of a somatodendritic transcript, Actg1 (γ-actin), are selected and classified. Since the chips are optically transparent, distribution of transcripts over axons can be studied by fluorescence in situ hybridization. Three transcripts, Cadm1 (cell adhesion molecule 1), Nefl (neurofilament light polypeptide), and Cfl1 (non-muscle cofilin) are confirmed to be preferentially localized to the growth cones, while Pfn2 (profilin2) is preferentially localized to the shafts of those axons growing on the chip that restricts axonal growth. The different growing conditions of axons on chips and on conventional coverslips do not affect the cone-preferred localization of Cadm1 and shaft-preferred localization of Pfn2, but affect the distributions of Nefl and Cfl1 over the axons at 14th day in vitro. Furthermore, the distributions of Cadm1 and Nefl over the axons growing on conventional coverslips undergo changes during in vitro development. Our results suggest a dynamic nature of the mechanisms regulating the distributions of transcripts in axonal substructures in a manner dependent upon both growth conditions and neuronal maturation."	"miR-888 in MCF-7 side population sphere cells directly targets E-cadherin. Side population (SP) cells are a small subset of cells isolated from a cultured cancer cell line that exhibit characteristics similar to those of cancer stem cells (CSCs), such as high metastatic and tumorigenic potential. The molecular mechanisms that give rise to the malignant properties of SP cells are not clear. We isolated SP cells from the MCF-7 breast cancer cell line and profiled microRNA (miRNA) expression patterns between SP cell-derived spheroids and non-SP cells. SP spheroids were found to possess 42 up-regulated miRNAs and 27 down-regulated ones (above 5-fold changes). One of the up-regulated miRNAs, miR-888 computationally predicted to participate in the adherens junction (AJ) pathway, was investigated. Over-expression of miR-888 in MCF-7 cells reduced the mRNA levels of all four AJ pathway genes (E-cadherin, ACTG1, PTPRT and CDC42) that were selected for testing, whereas knocking down miR-888 reversed the trends. Western blot and flow cytometric quantitation of the membrane E-cadherin levels showed the same trend of change under these treatments. Luciferase reporter assay showed E-cadherin is a direct target of miR-888. As a potential role in intercellular adhesiveness and maintenance of malignant tissue architecture, the results indicate that miR-888 is a repressor of the AJ pathway in MCF-7 cells and that up-regulation of miR-888 contributes to aggressiveness in MCF-7 SP cells. "	"Loss of ASAP3 destabilizes cytoskeletal protein ACTG1 to suppress cancer cell migration. ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 (ASAP3), previously known as ACAP4, DDEFL1 and UPLC1, is considered to be an important regulator in cancer cell migration/invasion and actin-based cytoskeletal remodeling. However, the underlying mechanisms through which ASAP3 mediates these processes are not well-elucidated. This study reported that in certain types of cancer cells, loss of ASAP3 suppressed cell migration/invasion, in part by destabilizing γ-actin-1 (ACTG1), a cytoskeletal protein considered to be an integral component of the cell migratory machinery, essential for the rearrangement of the dynamic cytoskeletal networks and important in diseases, such as brain malformation, hearing loss and cancer development. The data, for the first time, link ASAP3 with ACTG1 in the regulation of cytoskeletal maintenance and cell motility."	"Cerebro-fronto-facial syndrome type 3 with polymicrogyria: a clinical presentation of Baraitser-Winter syndrome. Baraitser-Winter syndrome (BRWS) is a rare condition affecting the development of the brain and the face. The most common characteristics are unusual facial appearance including hypertelorism and ptosis, ocular colobomas, hearing loss, impaired neuronal migration and intellectual disability. BRWS is caused by mutations in the ACTB and ACTG1 genes. Cerebro-fronto-facial syndrome (CFFS) is a clinically heterogeneous condition with distinct facial dysmorphism, and brain abnormalities. Three subtypes are identified. We report a female infant with striking facial features and brain anomalies (included polymicrogyria) that fit into the spectrum of the CFFS type 3 (CFFS3). She also had minor anomalies on her hands and feet, heart and kidney malformations, and recurrent infections. DNA investigations revealed c.586C&gt;T mutation (p.Arg196Cys) in ACTB. This mutation places this patient in the spectrum of BRWS. The same mutation has been detected in a polymicrogyric patient reported previously in literature. We expand the malformation spectrum of BRWS/CFFS3, and present preliminary findings for phenotype-genotype correlation in this spectrum. "	"Diverse spectrum of rare deafness genes underlies early-childhood hearing loss in Japanese patients: a cross-sectional, multi-center next-generation sequencing study. Genetic tests for hereditary hearing loss inform clinical management of patients and can provide the first step in the development of therapeutics. However, comprehensive genetic tests for deafness genes by Sanger sequencing is extremely expensive and time-consuming. Next-generation sequencing (NGS) technology is advantageous for genetic diagnosis of heterogeneous diseases that involve numerous causative genes. Genomic DNA samples from 58 subjects with hearing loss from 15 unrelated Japanese families were subjected to NGS to identify the genetic causes of hearing loss. Subjects did not have pathogenic GJB2 mutations (the gene most often associated with inherited hearing loss), mitochondrial m.1555A&gt;G or 3243A&gt;G mutations, enlarged vestibular aqueduct, or auditory neuropathy. Clinical features of subjects were obtained from medical records. Genomic DNA was subjected to a custom-designed SureSelect Target Enrichment System to capture coding exons and proximal flanking intronic sequences of 84 genes responsible for nonsyndromic or syndromic hearing loss, and DNA was sequenced by Illumina GAIIx (paired-end read). The sequences were mapped and quality-checked using the programs BWA, Novoalign, Picard, and GATK, and analyzed by Avadis NGS. Candidate genes were identified in 7 of the 15 families. These genes were ACTG1, DFNA5, POU4F3, SLC26A5, SIX1, MYO7A, CDH23, PCDH15, and USH2A, suggesting that a variety of genes underlie early-childhood hearing loss in Japanese patients. Mutations in Usher syndrome-related genes were detected in three families, including one double heterozygous mutation of CDH23 and PCDH15. Targeted NGS analysis revealed a diverse spectrum of rare deafness genes in Japanese subjects and underscores implications for efficient genetic testing."	"Massively parallel DNA sequencing successfully identifies new causative mutations in deafness genes in patients with cochlear implantation and EAS. Genetic factors, the most common etiology in severe to profound hearing loss, are one of the key determinants of Cochlear Implantation (CI) and Electric Acoustic Stimulation (EAS) outcomes. Satisfactory auditory performance after receiving a CI/EAS in patients with certain deafness gene mutations indicates that genetic testing would be helpful in predicting CI/EAS outcomes and deciding treatment choices. However, because of the extreme genetic heterogeneity of deafness, clinical application of genetic information still entails difficulties. Target exon sequencing using massively parallel DNA sequencing is a new powerful strategy to discover rare causative genes in Mendelian disorders such as deafness. We used massive sequencing of the exons of 58 target candidate genes to analyze 8 (4 early-onset, 4 late-onset) Japanese CI/EAS patients, who did not have mutations in commonly found genes including GJB2, SLC26A4, or mitochondrial 1555A&gt;G or 3243A&gt;G mutations. We successfully identified four rare causative mutations in the MYO15A, TECTA, TMPRSS3, and ACTG1 genes in four patients who showed relatively good auditory performance with CI including EAS, suggesting that genetic testing may be able to predict the performance after implantation. "	"A novel actin mRNA splice variant regulates ACTG1 expression. Cytoplasmic actins are abundant, ubiquitous proteins in nucleated cells. However, actin expression is regulated in a tissue- and development-specific manner. We identified a novel cytoplasmic-γ-actin (Actg1) transcript that includes a previously unidentified exon (3a). Inclusion of this exon introduces an in-frame termination codon. We hypothesized this alternatively-spliced transcript down-regulates γ-actin production by targeting these transcripts for nonsense-mediated decay (NMD). To address this, we investigated conservation between mammals, tissue-specificity in mice, and developmental regulation using C2C12 cell culture. Exon 3a is 80% similar among mammals and varies in length from 41 nucleotides in humans to 45 in mice. Though the predicted amino acid sequences are not similar between all species, inclusion of exon 3a consistently results in the in the introduction of a premature termination codon within the alternative Actg1 transcript. Of twelve tissues examined, exon 3a is predominantly expressed in skeletal muscle, cardiac muscle, and diaphragm. Splicing to include exon 3a is concomitant with previously described down-regulation of Actg1 in differentiating C2C12 cells. Treatment of differentiated C2C12 cells with an inhibitor of NMD results in a 7-fold increase in exon 3a-containing transcripts. Therefore, splicing to generate exon 3a-containing transcripts may be one component of Actg1 regulation. We propose that this post-transcriptional regulation occurs via NMD, in a process previously described as &quot;regulated unproductive splicing and translation&quot; (RUST). "	"Severe forms of Baraitser-Winter syndrome are caused by ACTB mutations rather than ACTG1 mutations. ACTB and ACTG1 mutations have recently been reported to cause Baraitser-Winter syndrome (BRWS) - a rare condition characterized by ptosis, colobomata, neuronal migration disorder, distinct facial anomalies and intellectual disability. One of the patients carrying an ACTB mutation was previously diagnosed with Fryns-Aftimos syndrome (FAS), which is a rare and severe, multiple congenital anomaly (MCA) syndrome whose symptoms partially overlap with that of BRWS. However, several patients with Fryns-Aftimos were considered not to fit into the ACTB and ACTG1 spectrum because of their severe impairment and additional malformations. We report on three patients who had been diagnosed with FAS. All three patients carry a mutation in the ACTB gene. On the basis of the ACTB mutations and analysis of the clinical findings, we reclassify the diagnosis of these patients as severe BRWS. We suggest that mutations in ACTB cause a distinctly more severe phenotype than ACTG1 mutations, despite the structural similarity of beta- and gamma-actins and their overlapping expression pattern. We expand the spectrum of BRWS and confirm that FAS is not a separate entity but an early and severe manifestation of BRWS. "	"Functional analysis of a de novo ACTB mutation in a patient with atypical Baraitser-Winter syndrome. Exome sequence analysis can be instrumental in identifying the genetic etiology behind atypical disease. We report a patient presenting with microcephaly, dysmorphic features, and intellectual disability with a tentative diagnosis of Dubowitz syndrome. Exome analysis was performed on the patient and both parents. A de novo missense variant was identified in ACTB, c.349G&gt;A, p.E117K. Recent work in Baraitser-Winter syndrome has identified ACTB and ACTG1 mutations in a cohort of individuals, and we rediagnosed the patient with atypical Baraitser-Winter syndrome. We performed functional characterization of the variant actin and show that it alters cell adhesion and polymer formation supporting its role in disease. We present the clinical findings in the patient, comparison of this patient to other patients with ACTB/ACTG1 mutations, and results from actin functional studies that demonstrate novel functional attributes of this mutant protein. "	"[Differentially expressed proteins of severe acute pancreatitis intervened by Qingyi granule]. To observe the effects of Qingyi Granule (QYG) on the changes of total protein expressions in the pancreatic tissue of rats with severe acute pancreatitis (SAP) induced by sodium taurocholate (STC). SAP was induced by retrograded injecting 5% STC from the gut-pancreatic duct in 36 Sprague-Dawley (SD)rats. Then they were randomly divided into the SAP group and the QYG treatment group (abbreviated as the QYG group), 18 in each group. After successful modeling, rats in the QYG group were administered with QYG water solution (W: W = 1:1) once with an interval of 12 h (1 mL/100 g), while rats in the SAP group were administered with normal saline. The medication was performed four times. The total proteins were extracted from the pancreatic tissue of all rats to perform two-dimensional electrophoresis, fluorescent staining, and atlas analysis. The protein dots with differential expressions more than four times between each other in 48 h gel pictures were chosen and used for MALDI-TOF/TOF mass chromatographic analysis and biological information analysis. The 5% STC induced SAP model rats had typical pathological changes in the pancreatic tissue. The proteomics changes of the pancreatic tissue were analyzed by gel image manipulation software. Twenty two disparate points were detected between two groups at 48 h, 5 points of the protein were up-regulated and 17 points were down-regulated of the total after QYG intervention. Nine protein spots expressed differently more than 4 times and stably at 48 h, 7 kinds of proteins have been identified by mass chromatographic analysis and Data Base Retrieval, and they were Serpinb1a 39 kDa protein, Serpinb1a 43 kDa protein, Prdx4 Prx IV, Clps, gamma-actin (Actg1), Eprs and Hadhsc. Those proteins were involved in signal transmit during the process of SAP pancreas--pathological injury analyzed from their functions. Proteomics can well reflect the effects of QYG on differential expression proteins in the pancreatic tissue of rats with SAP. Studying differential expression proteins may provide a new theoretical basis and molecule target for QYG treating SAP."	"Multiphasic analysis of whole exome sequencing data identifies a novel mutation of ACTG1 in a nonsyndromic hearing loss family. The genetic heterogeneity of sensorineural hearing loss is a major hurdle to the efficient discovery of disease-causing genes. We designed a multiphasic analysis of copy number variation (CNV), linkage, and single nucleotide variation (SNV) of whole exome sequencing (WES) data for the efficient discovery of mutations causing nonsyndromic hearing loss (NSHL). From WES data, we identified five distinct CNV loci from a NSHL family, but they were not co-segregated among patients. Linkage analysis based on SNVs identified six candidate loci (logarithm of odds [LOD] &gt;1.5). We selected 15 SNVs that co-segregated with NSHL in the family, which were located in six linkage candidate loci. Finally, the novel variant p.M305T in ACTG1 (DFNA20/26) was selected as a disease-causing variant. Here, we present a multiphasic CNV, linkage, and SNV analysis of WES data for the identification of a candidate mutation causing NSHL. Our stepwise, multiphasic approach enabled us to expedite the discovery of disease-causing variants from a large number of patient variants."	"Voluntary physical activity protects from susceptibility to skeletal muscle contraction-induced injury but worsens heart function in mdx mice. It is well known that inactivity/activity influences skeletal muscle physiological characteristics. However, the effects of inactivity/activity on muscle weakness and increased susceptibility to muscle contraction-induced injury have not been extensively studied in mdx mice, a murine model of Duchenne muscular dystrophy with dystrophin deficiency. In the present study, we demonstrate that inactivity (ie, leg immobilization) worsened the muscle weakness and the susceptibility to contraction-induced injury in mdx mice. Inactivity also mimicked these two dystrophic features in wild-type mice. In contrast, we demonstrate that these parameters can be improved by activity (ie, voluntary wheel running) in mdx mice. Biochemical analyses indicate that the changes induced by inactivity/activity were not related to fiber-type transition but were associated with altered expression of different genes involved in fiber growth (GDF8), structure (Actg1), and calcium homeostasis (Stim1 and Jph1). However, activity reduced left ventricular function (ie, ejection and shortening fractions) in mdx, but not C57, mice. Altogether, our study suggests that muscle weakness and susceptibility to contraction-induced injury in dystrophic muscle could be attributable, at least in part, to inactivity. It also suggests that activity exerts a beneficial effect on dystrophic skeletal muscle but not on the heart."	"The LO-BaFL method and ALS microarray expression analysis. Sporadic Amyotrophic Lateral Sclerosis (sALS) is a devastating, complex disease of unknown etiology. We studied this disease with microarray technology to capture as much biological complexity as possible. The Affymetrix-focused BaFL pipeline takes into account problems with probes that arise from physical and biological properties, so we adapted it to handle the long-oligonucleotide probes on our arrays (hence LO-BaFL). The revised method was tested against a validated array experiment and then used in a meta-analysis of peripheral white blood cells from healthy control samples in two experiments. We predicted differentially expressed (DE) genes in our sALS data, combining the results obtained using the TM4 suite of tools with those from the LO-BaFL method. Those predictions were tested using qRT-PCR assays. LO-BaFL filtering and DE testing accurately predicted previously validated DE genes in a published experiment on coronary artery disease (CAD). Filtering healthy control data from the sALS and CAD studies with LO-BaFL resulted in highly correlated expression levels across many genes. After bioinformatics analysis, twelve genes from the sALS DE gene list were selected for independent testing using qRT-PCR assays. High-quality RNA from six healthy Control and six sALS samples yielded the predicted differential expression for 7 genes: TARDBP, SKIV2L2, C12orf35, DYNLT1, ACTG1, B2M, and ILKAP. Four of the seven have been previously described in sALS studies, while ACTG1, B2M and ILKAP appear in the context of this disease for the first time. Supplementary material can be accessed at: http://webpages.uncc.edu/~cbaciu/LO-BaFL/supplementary_data.html. LO-BaFL predicts DE results that are broadly similar to those of other methods. The small healthy control cohort in the sALS study is a reasonable foundation for predicting DE genes. Modifying the BaFL pipeline allowed us to remove noise and systematic errors, improving the power of this study, which had a small sample size. Each bioinformatics approach revealed DE genes not predicted by the other; subsequent PCR assays confirmed seven of twelve candidates, a relatively high success rate."	"Targeted massive parallel sequencing: the effective detection of novel causative mutations associated with hearing loss in small families. Hereditary hearing loss is one of the most common heterogeneous disorders, and genetic variants that can cause hearing loss have been identified in over sixty genes. Most of these hearing loss genes have been detected using classical genetic methods, typically starting with linkage analysis in large families with hereditary hearing loss. However, these classical strategies are not well suited for mutation analysis in smaller families who have insufficient genetic information. Eighty known hearing loss genes were selected and simultaneously sequenced by targeted next-generation sequencing (NGS) in 8 Korean families with autosomal dominant non-syndromic sensorineural hearing loss. Five mutations in known hearing loss genes, including 1 nonsense and 4 missense mutations, were identified in 5 different genes (ACTG1, MYO1F, DIAPH1, POU4F3 and EYA4), and the genotypes for these mutations were consistent with the autosomal dominant inheritance pattern of hearing loss in each family. No mutational hot-spots were revealed in these Korean families. Targeted NGS allowed for the detection of pathogenic mutations in affected individuals who were not candidates for classical genetic studies. This report is the first documenting the effective use of an NGS technique to detect pathogenic mutations that underlie hearing loss in an East Asian population. Using this NGS technique to establish a database of common mutations in Korean patients with hearing loss and further data accumulation will contribute to the early diagnosis and fundamental therapies for hereditary hearing loss."	"Screening and identification of lung cancer metastasis-related genes by suppression subtractive hybridization.  Lung cancer metastasis is a complicated process in which multiple stages and multiple genes are involved. There is an urgent need to use new molecular biology techniques to get more systematic information and have a general idea of the molecular events that take place in lung cancer metastasis. The object of this study was to construct the subtracted cDNA libraries of different metastatic potential lung cancer cell lines, NL9980 and L9981, which were established and screened from human lung large cell carcinoma cell line, WCQH-9801.  The forward and reverse subtracted cDNA libraries were constructed in the large cell lung cancer cell lines NL9980 and L9981 with the same heredity background but different metastatic potential, by suppression subtractive hybridization (SSH). The positive clones were preliminarily screened by blue-white colony and precisely identified by PCR. The forward and reverse subtracted libraries were screened and identified by dot blot so as to obtain the clones corresponding to gene segments with differential expression. DNA sequencing was performed to analyze the sequences of differential expression segments, which were then searched and compared using the Basic Local Alignment Search Tool from The National Center for Biotechnology Information NCBI BLAST tools. Quantitative real-time reverse transcription polymerase chain reaction (RT-PCR) and western blotting were performed to confirm the differential expressed genes both on RNA and protein levels.  The forward and reverse subtracted cDNA libraries of the different large cell lung cancer cell lines with metastatic potential were successfully constructed. With blue-white colony and dot blot, 307 positive clones in the forward subtracted library and 78 positive clones in the reverse subtracted library were obtained. Fifty-five clones were successfully sequenced in the forward subtracted library while 31 clones were successfully sequenced in the reverse subtracted library. One new expressed sequence tag (EST) segment was identified from the reverse subtracted cDNA library and was successfully submitted to GenBank and embodied by GenBank. For the differentially expressed genes between L9981 and NL9980 screened by SSH, four genes, ANXA2, KRT18, ACTG1 was upregulated in L9981 cells compared to NL9980 cells. Annexin A2 (which was encoded by ANXA2), γ-actin (which was encoded by ACTG1), and aldose reductase (which was encoded by AKR1B1) proteins were upregulated in L9981 cells compared to NL9980 cells by western blotting.  The forward and reverse subtracted cDNA libraries of different metastatic potential large cell lung cancer cell lines were successfully constructed by SSH. A series of genes have been screened out to have significantly different expression levels between lung cancer cell lines NL9980 and L9981. A new EST segment that may represent a new metastasis-related gene has been identified. Consistent with the result of SSH, both quantitative real-time RT-PCR and western Blotting confirmed the upregulation of ANXA2, ACTG1 and AKR1B1 in lung cancer cell line L9981 compared with NL9980. These three genes may play important roles in lung cancer metastasis."	"De novo mutations in the actin genes ACTB and ACTG1 cause Baraitser-Winter syndrome. Brain malformations are individually rare but collectively common causes of developmental disabilities. Many forms of malformation occur sporadically and are associated with reduced reproductive fitness, pointing to a causative role for de novo mutations. Here, we report a study of Baraitser-Winter syndrome, a well-defined disorder characterized by distinct craniofacial features, ocular colobomata and neuronal migration defect. Using whole-exome sequencing of three proband-parent trios, we identified de novo missense changes in the cytoplasmic actin-encoding genes ACTB and ACTG1 in one and two probands, respectively. Sequencing of both genes in 15 additional affected individuals identified disease-causing mutations in all probands, including two recurrent de novo alterations (ACTB, encoding p.Arg196His, and ACTG1, encoding p.Ser155Phe). Our results confirm that trio-based exome sequencing is a powerful approach to discover genes causing sporadic developmental disorders, emphasize the overlapping roles of cytoplasmic actin proteins in development and suggest that Baraitser-Winter syndrome is the predominant phenotype associated with mutation of these two genes."	"[Comparison of proteomics between acute myeloid leukemia and acute lymphoid leukemia]. The aim of this study was to explore the distinct protein profiles of different subtype of acute myeloid leukemia (AML), including M(1), M(2), M(3) and acute lymphoid leukemia (ALL) by differential proteomic expression analysis. The proteins of bone marrow leukemia cells from AML and ALL patients were separated by two-dimensional electrophoresis (2-DE). 2-DE patterns were analyzed by PDQuest 7.4 software and the differentially expressed proteins were identified by matrix-assisted laser desorption ionization-time of flight mass spectrometry (MALDI-TOF-MS) and bioinformatics. The results indicated that 21 differentially expressed proteins were found by 2-DE and 15 were identified by MS to be significantly differentially expressed. In AML, seven proteins were highly expressed such as MPO, PRDX3, CALR and ECH1 and so on, and eight proteins were highly expressed in ALL, including ARHGDIB, PFN1 and ACTG1 and so on. It is concluded that the distinct protein profiles between AML and ALL have been proved. It may be helpful for the identification of new targets for specific treatment approaches and the molecular markers for the early diagnosis of leukemia."	"Ehrlichia chaffeensis TRP120 interacts with a diverse array of eukaryotic proteins involved in transcription, signaling, and cytoskeleton organization. Ehrlichia chaffeensis is an obligately intracellular bacterium that exhibits tropism for mononuclear phagocytes and survives by evading host cell defense mechanisms. Recently, molecular interactions between E. chaffeensis 47-kDa tandem repeat (TR) protein (TRP47) and the eukaryotic host cell have been described. In this investigation, yeast (Saccharomyces cerevisiae) two-hybrid analysis demonstrated that E. chaffeensis-secreted tandem repeat protein 120 (TRP120) interacts with a diverse group of host cell proteins associated with major biological processes, including transcription and regulation, cell signaling, protein trafficking, and actin cytoskeleton organization. Twelve target proteins with the highest frequency of interaction with TRP120 were confirmed by cotransformation in yeast. Host targets, including human immunoglobulin lambda locus (IGL), cytochrome c oxidase subunit II (COX2), Golgi-associated gamma adaptin ear-containing ARF binding protein 1 (GGA1), polycomb group ring finger 5 (PCGF5), actin gamma 1 (ACTG1), and unc-13 homolog D (UNC13D; Caenorhabditis elegans), colocalized strongly with TRP120 in HeLa cells and with E. chaffeensis dense-cored morulae and areas adjacent to morulae in the host cytoplasm. The TR domain of TRP120 interacted only with PCGF5, indicating that distinct TRP120 domains contribute to specific host target interactions and that multiple domains are required to reconstitute TRP120 interactions with other host targets. Three previously defined molecular interactions between TRP47 and host proteins, PCGF5, IGLL1, and CAP1, were also associated with TRP120, demonstrating that molecular cross talk occurs between Ehrlichia TRPs and host targets. These findings further support the role of TRPs as effectors that reprogram the host cell."	"β-actin and γ-actin are each dispensable for auditory hair cell development but required for Stereocilia maintenance. Hair cell stereocilia structure depends on actin filaments composed of cytoplasmic β-actin and γ-actin isoforms. Mutations in either gene can lead to progressive hearing loss in humans. Since β-actin and γ-actin isoforms are 99% identical at the protein level, it is unclear whether each isoform has distinct cellular roles. Here, we compared the functions of β-actin and γ-actin in stereocilia formation and maintenance by generating mice conditionally knocked out for Actb or Actg1 in hair cells. We found that, although cytoplasmic actin is necessary, neither β-actin nor γ-actin is required for normal stereocilia development or auditory function in young animals. However, aging mice with β-actin- or γ-actin-deficient hair cells develop different patterns of progressive hearing loss and distinct pathogenic changes in stereocilia morphology, despite colocalization of the actin isoforms. These results demonstrate overlapping developmental roles but unique post-developmental functions for β-actin and γ-actin in maintaining hair cell stereocilia."	"Delayed embryonic development and impaired cell growth and survival in Actg1 null mice. Actins are among the most highly expressed proteins in eukaryotes and play a central role in nearly all aspects of cell biology. While the intricate process of development undoubtedly requires a properly regulated actin cytoskeleton, little is known about the contributions of different actin isoforms during embryogenesis. Of the six actin isoforms, only the two cytoplasmic actins, beta(cyto)- and gamma(cyto)-actin, are ubiquitously expressed. We found that gamma(cyto)-actin null (Actg1(-/-)) mice were fully viable during embryonic development, but most died within 48 h of birth due to respiratory failure and cannibalization by the parents. While no morphogenetic defects were identified, Actg1(-/-) mice exhibited stunted growth during embryonic and postnatal development as well as delayed cardiac outflow tract formation that resolved by birth. Using primary mouse embryonic fibroblasts, we confirm that gamma(cyto)-actin is not required for cell migration. The Actg1(-/-) cells, however, exhibited growth impairment and reduced cell viability, defects which perhaps contribute to the stunted growth and developmental delays observed in Actg1(-/-) embryos. Since the total amount of actin protein was maintained in Actg1(-/-) cells, our data suggests a distinct requirement for gamma(cyto)-actin in cell growth and survival."	"Microarray analysis of relative gene expression stability for selection of internal reference genes in the rhesus macaque brain. Normalization of gene expression data refers to the comparison of expression values using reference standards that are consistent across all conditions of an experiment. In PCR studies, genes designated as &quot;housekeeping genes&quot; have been used as internal reference genes under the assumption that their expression is stable and independent of experimental conditions. However, verification of this assumption is rarely performed. Here we assess the use of gene microarray analysis to facilitate selection of internal reference sequences with higher expression stability across experimental conditions than can be expected using traditional selection methods.We recently demonstrated that relative gene expression from qRT-PCR data normalized using GAPDH, ALG9 and RPL13A expression values mirrored relative expression using quantile normalization in Robust Multichip Analysis (RMA) on the Affymetrix GeneChip rhesus Macaque Genome Array.Having shown that qRT-PCR and Affymetrix GeneChip data from the same hormone replacement therapy (HRT) study yielded concordant results, we used quantile-normalized gene microarray data to identify the most stably expressed among probe sets for prospective internal reference genes across three brain regions from the HRT study and an additional study of normally menstruating rhesus macaques (cycle study). Gene selection was limited to 575 previously published human &quot;housekeeping&quot; genes. Twelve animals were used per study, and three brain regions were analyzed from each animal. Gene expression stabilities were determined using geNorm, NormFinder and BestKeeper software packages. Sequences co-annotated for ribosomal protein S27a (RPS27A), and ubiquitin were among the most stably expressed under all conditions and selection criteria used for both studies. Higher annotation quality on the human GeneChip facilitated more targeted analysis than could be accomplished using the rhesus GeneChip. In the cycle study, multiple probe sets annotated for actin, gamma 1 (ACTG1) showed high signal intensity and were among the most stably expressed. Using gene microarray analysis, we identified genes showing high expression stability under various sex-steroid environments in different regions of the rhesus macaque brain. Use of quantile-normalized microarray gene expression values represents an improvement over traditional methods of selecting internal reference genes for PCR analysis."	"Recombinant Mycobacterium bovis BCG expressing chimaeric protein of Ag85B and ESAT-6 enhances immunostimulatory activity of human macrophages. Recombinant BCG strain that secretes the chimaeric protein of Ag85B and ESAT-6 has been demonstrated to augment Th1 immune response in C57BL/6 mice. In this paper, we studied the immunostimulatory activity of the recombinant BCG strains in vitro and found out that rBCG-A(N)-E-A(C) activated THP-1 cells and induced higher expression levels of CD86, CD80, CD40 and HLA-DR, especially increased the ratio of CD86/CD80. Likewise, rBCG-A(N)-E-A(C) infection was able to stimulate an increase in TNF-alpha production of macrophages. Moreover, rBCG-A(N)-E-A(C) up-regulated the expression of EFHD2, ACTB and ACTG1 in the macrophages and improved the ability of antigen presentation and the CD8(+) T-cells immune response. Taken together, this rBCG-A(N)-E-A(C) strain enhanced the immunostimulatory activity of human macrophages and could be a potential vaccine against Mycobacterium tuberculosis."	"Comparative proteomics analysis of human osteosarcomas and benign tumor of bone. We conducted comparative proteomic analysis of osteosarcoma, with hopes of identifying the specific protein markers of osteosarcoma and improve the understanding of tumorigenesis and progression of osteosarcoma. Proteins extracted from osteosarcoma tissue and benign bone tumors, including osteoblastoma, chondroblastoma, and giant cell tumor of bone, were examined using two-dimensional gel electrophoresis followed by mass spectrometry analysis and database searches. We also validated the expression levels of interesting proteins by Western blotting assay and immunohistochemical staining. Intensity alterations of 30 spots were detected in osteosarcoma, and 18 of these spots were finally identified, including 12 up-regulated proteins and 6 down-regulated ones. The up-regulated proteins include VIM, TUBA1C, ZNF133, EZR, ACTG1, TF, and so on. The six down-regulated proteins include ADCY1, ATP5B, TUBB, RCN3, ACTB, and YWHAZ. Subsequent immunohistochemical staining and Western blotting assay for TUBA1C and ZNF133 in osteosarcoma samples confirmed the observation obtained by proteomic analysis. Our results suggest that these identified proteins may be potential biomarkers for osteosarcoma tumorigenesis and therapeutics. Aberrant expression of cytoskeletal- and microtubule-associated proteins in osteosarcoma may provide an advantage for tumor invasion and metastasis by affecting the stability of microtubule, which consequently influences the prognosis of patients."	"Selection and validation of reference genes for real-time RT-PCR studies in the non-model species Delomys sublineatus, an endemic Brazilian rodent. Quantitative real-time RT-PCR (qRT-PCR) is a sensitive technique for gene expression analysis. A critical factor for creating reliable data in relative quantification is the normalization of the expression data of genes of interest. Therefore the needed normalization factor is calculated out of the expression data of co-amplified genes that are stable expressed in the certain sample material, the so-called reference genes. In this study, we demonstrate the important process of validating potential reference genes using a non-model species. As there are almost no sequences known of the Pallid Atlantic Forest Rat (Delomys sublineatus), a rodent used as indicator species in conservation studies of the endangered Brazilian rainforest, suitable primer sets are more problematic to find than in model species. Out of nine tested primer sets designed for the fully sequenced Mus musculus, five could be used for the establishment of a proper running SYBR-Green assay and validation of their constant expression. qRT-PCR results of 12 cDNAs of Delomys livers were analyzed with three different validation software programs: BestKeeper, NormFinder and geNorm. Our approach showed that out of the five (Sdha, Canx, Pgk1, Actb and Actg1) potential reference genes, the first four should be used for accurate normalization in further relative quantification analyses. Transferring data from close-by model organisms makes high sensitive real-time RT-PCR applicable even to free-ranging non-model organisms. Our approach might be suitable for other non-model organisms."	"Validation of internal reference genes for quantitative real-time PCR in a non-model organism, the yellow-necked mouse, Apodemus flavicollis. Reference genes are used as internal standards to normalize mRNA abundance in quantitative real-time PCR and thereby allow a direct comparison between samples. So far most of these expression studies used human or classical laboratory model species whereas studies on non-model organism under in-situ conditions are quite rare. However, only studies in free-ranging populations can reveal the effects of natural selection on the expression levels of functional important genes. In order to test the feasibility of gene expression studies in wildlife samples we transferred and validated potential reference genes that were developed for lab mice (Mus musculus) to samples of wild yellow-necked mice, Apodemus flavicollis. The stability and suitability of eight potential reference genes was accessed by the programs BestKeeper, NormFinder and geNorm. Although the three programs used different algorithms the ranking order of reference genes was significantly concordant and geNorm differed in only one, NormFinder in two positions compared to BestKeeper. The genes ordered by their mean rank from the most to the least stable gene were: Rps18, Sdha, Canx, Actg1, Pgk1, Ubc, Rpl13a and Actb. Analyses of the normalization factor revealed best results when the five most stable genes were included for normalization. We established a SYBR green qPCR assay for liver samples of wild A. flavicollis and conclude that five genes should be used for appropriate normalization. Our study provides the basis to investigate differential expression of genes under selection under natural selection conditions in liver samples of A. flavicollis. This approach might also be applicable to other non-model organisms."	"Identification of novel partner proteins of PCBP1. PCBP1 is a family member of heterogeneous nuclear ribonucleoproteins (hnRNPs) that belong to RNA-binding proteins and bear three KH domains. The protein plays a pivotal role in post-transcriptional regulation for RNA metabolism and RNA function in gene expression. We hypothesized and were going to identify that the regulatory function of PCBP1 is performed through different complexes of proteins that include PCBP1. To test our hypothesis, approaches of protein walking with a yeast two-hybrid system (Y2H), pulling down in yeasts, co-immunoprecipitation and immunofluorescent microscopy assay were employed in this study. The PCBP1 was used as the initial &quot;walker&quot; to search for its interaction partner(s). Candidate proteins including MYL6, PECAM1, CSH1, RAB7, p57KIP2, ACTG1, RBMS1 and PSG4-like were identified with selection mediums and preceding methods. With these candidate protein molecules, some protein complexes associating with PCBP1 are proposed, which may help in a better understanding of physiological functions of PCBP1 and proved evidence that PCBP1 is involved in variant biological pathways."	"Audiometric and vestibular features in a second Dutch DFNA20/26 family with a novel mutation in ACTG1. We analyzed the phenotype in a 5-generation DFNA20/26 family with a novel missense mutation in the ACTG1 gene (c.151G&gt;A) and compared the findings to previous reports on DFNA20/26 families. Audiometric data were collected from the family members of a Dutch kindred with the novel ACTG1 mutation. Cross-sectional and/or longitudinal analyses were performed on pure tone and speech audiometry data of the mutation carriers. Age-related typical audiograms were constructed. Vestibular examination was performed in all mutation carriers. Overall, high-frequency hearing impairment, most prominent at ages over 30 years, was observed with a progression rate of 1.1 to 2.1 dB/y, increasing with frequency. It ultimately resulted in residual hearing. Speech recognition scores remained good at given pure tone average (1, 2, and 4 kHz) levels, but were slightly poorer than those at similar levels in a group of patients with presbycusis. Vestibular examination did not reveal any consistent, statistically significant abnormalities. The audiometric phenotype of the Dutch DFNA20/26 family with a novel mutation in ACTG1 was largely consistent with previous reports on DFNA20/26. Considerable variations were found in audiogram configurations within the family. This is the first known DFNA20/26 family that has experienced tinnitus."	"Gamma-actin is required for cytoskeletal maintenance but not development. Beta(cyto)-actin and gamma(cyto)-actin are ubiquitous proteins thought to be essential building blocks of the cytoskeleton in all non-muscle cells. Despite this widely held supposition, we show that gamma(cyto)-actin null mice (Actg1(-/-)) are viable. However, they suffer increased mortality and show progressive hearing loss during adulthood despite compensatory up-regulation of beta(cyto)-actin. The surprising viability and normal hearing of young Actg1(-/-) mice means that beta(cyto)-actin can likely build all essential non-muscle actin-based cytoskeletal structures including mechanosensory stereocilia of hair cells that are necessary for hearing. Although gamma(cyto)-actin-deficient stereocilia form normally, we found that they cannot maintain the integrity of the stereocilia actin core. In the wild-type, gamma(cyto)-actin localizes along the length of stereocilia but re-distributes to sites of F-actin core disruptions resulting from animal exposure to damaging noise. In Actg1(-/-) stereocilia similar disruptions are observed even without noise exposure. We conclude that gamma(cyto)-actin is required for reinforcement and long-term stability of F-actin-based structures but is not an essential building block of the developing cytoskeleton."	"In vivo and in vitro effects of two novel gamma-actin (ACTG1) mutations that cause DFNA20/26 hearing impairment. Here we report the functional assessment of two novel deafness-associated gamma-actin mutants, K118N and E241K, in a spectrum of different situations with increasing biological complexity by combining biochemical and cell biological analysis in yeast and mammalian cells. Our in vivo experiments showed that while the K118N had a very mild effect on yeast behaviour, the phenotype caused by the E241K mutation was very severe and characterized by a highly compromised ability to grow on glycerol as a carbon source, an aberrant multi-vacuolar pattern and the deposition of thick F-actin bundles randomly in the cell. The latter feature is consistent with the highly unusual spontaneous tendency of the E241K mutant to form bundles in vitro, although this propensity to bundle was neutralized by tropomyosin and the E241K filament bundles were hypersensitive to severing in the presence of cofilin. In transiently transfected NIH3T3 cells both mutant actins were normally incorporated into cytoskeleton structures, although cytoplasmic aggregates were also observed indicating an element of abnormality caused by the mutations in vivo. Interestingly, gene-gun mediated expression of these mutants in cochlear hair cells results in no gross alteration in cytoskeletal structures or the morphology of stereocilia. Our results provide a more complete picture of the biological consequences of deafness-associated gamma-actin mutants and support the hypothesis that the post-lingual and progressive nature of the DFNA20/26 hearing loss is the result of a progressive deterioration of the hair cell cytoskeleton over time."	"Novel ACTG1 mutation causing autosomal dominant non-syndromic hearing impairment in a Chinese family. The gamma-actin (ACTG1) gene is a cytoplasmic nonmuscle actin gene, which encodes a major cytoskeletal protein in the sensory hair cells of the cochlea. Mutations in ACTG1 were found to cause autosomal dominant, progressive, sensorineural hearing loss linked to the DFNA 20/26 locus on chromosome 17q25.3 in European and American families, respectively. In this study, a novel missense mutation (c.364A&gt;G; p.I122V) co-segregated with the affected individuals in the family and did not exist in the unaffected family members and 150 unrelated normal controls. The alteration of residue Ile122 was predicted to damage its interaction with actin-binding proteins, which may cause disruption of hair cell organization and function. These findings strongly suggested that the I122V mutation in ACTG1 caused autosomal dominant non-syndromic hearing impairment in a Chinese family and expanded the spectrum of ACTG1 mutations causing hearing loss."	"[The genes associated with geldanamycin inhibiting replication of herpes simplex virus type 1]. Geldanamycin (GA), an ansamycin antibiotic specifically binding heat shock protein 90 (Hsp90), exhibits a broad-spectrum antiviral effect. Herpes simplex virus type 1(HSV-1) replication in vitro was significantly inhibited by GA treatment. To explore the antiviral mechanism of GA against HSV-1, the 7267-spot human long oligonucleotide microarrays were applied to investigate the genes which might involved in the antiviral activity of GA in HeLa cells infected by HSV-1. Meanwhile, the reverse regulation of GA and HSV-1 on ACTG1, RAN, SOD1, HYAL1 were validated by using semi-quantitative RT-PCR. It is the first report of gene expression profile in cells infected by virus with GA treatment. The general impact of GA on cellular transcription may help to gain an insight into mechanism of its antiviral effect."	"Expression profiling reveals dysregulation of cellular cytoskeletal genes in HBx-induced hepatocarcinogenesis. The molecular mechanisms underlying hepatitis B virus encoded HBx protein-mediated tumorigenesis are not fully understood. In order to gain a better view of the effects of HBx on transcriptional regulation and hepatocarcinogenesis, the expression profiles of liver and tumor tissues from 6- and 18-month-old p21-HBx transgenic and control mice were monitored using oligo microarrays. Data analysis demonstrated that 42 genes were deregulated in both 6- and 18-month-old HBx transgenic mouse tissues. Gene ontology assisted analysis classified these genes into functionally related clusters that encode proteins related to metabolism, signal transduction, transcription regulation and stress responses. Among them, cytoskeletal genes, including microtubule genes tubulinbeta2 (Tubb2), tubulinbeta3 (Tubb3) and tubulinbeta6 (Tubb6), intermediate filament genes periplakin, keratin 8 (K8) and keratin 18 (K18) and actingamma1 (Actg1), were closely clustered and upregulated in liver tissues. These results were validated by semi-quantitative RT-PCR in both mouse and human HCC tissues. The upregulation of K8 and K18 was only detected in p21-HBx but not p21-HBsAg liver tissues, suggesting that the global change in the expression of cellular cytoskeletal genes was correlated with the expression of HBx transgene. These findings propose for the first time that systemic dysregulation of cellular cytoskeletal genes is involved in HBx-induced hepatocarcinogenesis."	"[Screening proteins related to retinoic acid resistance by proteomic analysis]. To compare the expression profiles of differential proteins between retinoic acid resistant and sensitive cells and screen the proteins related to retinoic acid (RA) resistance by proteomic analysis. The total cellular proteins from the RA sensitive cells of the line NB4 and the RA resistant cells of the line MR2 obtained from a patient with acute promyelocytic leukemia (APL) were separated by two-dimensional polyacrylamide gel electrophoresis (2D-PAGE) and analyzed by PDQuest v7.1 analysis software to screen the differential protein spots. Differentially expressed spots were analyzed by mass spectrometry for peptide mass finger (PMF) data and identified by Mascot software and SWISS-PROT protein database. The differentially expressed proteins were verified by Western blotting assay and semi-quantification RT-PCR. 2-DE patterns of APL cell lines with high-resolution and reproducibility were obtained. The average spots of the RA resistant cell line MR2 and RA sensitive cell line NB4 were 890 +/- 45 and 912 +/- 56 respectively. 57 significantly differentially expressed protein spots were screened, among which 23 protein spots were founded to be upregulated and 34 protein spots down regulated in the RA resistant cell line MR2. 25 differential protein spots were identified by mass spectrometry and 17 proteins were successfully assigned to 13 gene-reading frames, of which one was unknown function protein (FLJ00279) and the others were included in the categories of oncoprotein (DJ-1), transcription factor (MYC promoter-binding protein 1), molecule chaperone (HSP70, HSP60 and protein disulfide isomerase), metabolism protein (prohibitin, triosephosphate isomerase 1, and calreticulin), signal transduction (Rho GDP dissociation inhibitor), and cytoskeleton (ACTG1 protein, Beta 5-tubulin, and keratin 10). The results of Western blotting were similar to those of 2D-PAGE and showed differential expression of DJ-1 and calreticulin in several isoforms. Semi-quantification RT-PCR analysis showed that there was no correlation between the protein expression changes and mRNA levels of HSP70 or HSP60. Those results indicated that post-translational events might modify or shear the protein content of the specific spots. The utilization of two-dimensional polyacrylamide gel electrophoresis coupled with mass spectrometry is effective in screening the all-trans RA resistance-associated proteins and could provide novel clue for study of elucidating all-trans RA resistance mechanisms."	"Cytoplasmic gamma-actin is not required for skeletal muscle development but its absence leads to a progressive myopathy. Nonmuscle gamma(cyto)-actin is expressed at very low levels in skeletal muscle but uniquely localizes to costameres, the cytoskeletal networks that couple peripheral myofibrils to the sarcolemma. We generated and analyzed skeletal muscle-specific gamma(cyto)-actin knockout (Actg1-msKO) mice. Although muscle development proceeded normally, Actg1-msKO mice presented with overt muscle weakness accompanied by a progressive pattern of muscle fiber necrosis/regeneration. Functional deficits in whole-body tension and isometric twitch force were observed, consistent with defects in the connectivity between muscle fibers and/or myofibrils or at the myotendinous junctions. Surprisingly, gamma(cyto)-actin-deficient muscle did not demonstrate the fibrosis, inflammation, and membrane damage typical of several muscular dystrophies but rather presented with a novel progressive myopathy. Together, our data demonstrate an important role for minimally abundant but strategically localized gamma(cyto)-actin in adult skeletal muscle and describe a new mouse model to study the in vivo relevance of subcellular actin isoform sorting."	"A novel missense mutation in ACTG1 causes dominant deafness in a Norwegian DFNA20/26 family, but ACTG1 mutations are not frequent among families with hereditary hearing impairment. The gamma-actin gene (ACTG1) encodes a major cytoskeletal protein of the sensory hair cells of the cochlea. Recently, mutations in ACTG1 were found to cause autosomal dominant, progressive, sensorineural hearing impairment linked to the DFNA20/26 locus on chromosome 17q25.3 in four American families and in one Dutch family. We report here the linkage of autosomal dominant, progressive, sensorineural hearing impairment in a large Norwegian family to the DFNA20/26 locus. Sequencing of ACTG1 identified a novel missense mutation (c.1109T&gt;C; p.V370A) segregating with the hearing loss. Functional analysis in yeast showed that the p.V370A mutation restricts cell growth at elevated temperature or under hyperosmolar stress. Molecular modelling suggested that the p.V370A mutation modestly alters a site for protein-protein interaction in gamma-actin and thereby modestly alters gamma-actin-based cytoskeletal structures. Nineteen Norwegian and Danish families with autosomal, dominant hearing impairment were analyzed for mutations in ACTG1 by sequencing, but no disease-associated mutations were identified. Finally, a long-term follow-up of the hearing loss progression associated with the p.V370A mutation in ACTG1 is provided. The present study expands our understanding of the genotype-phenotype relationship of this deafness gene and provides a sensitive and simple functional assay for missense mutations in this gene, which may assist future molecular diagnosis of autosomal-dominant hearing impairment. Finally, the present results do not indicate that mutations in ACTG1 are a frequent cause of autosomal-dominant postlingual sensorineural hearing impairment in Norway nor Denmark."	"Gene expression profiles of U937 human macrophages exposed to Chlamydophila pneumoniae and/or low density lipoprotein in five study models using differential display and real-time RT-PCR. Many studies on atherosclerosis have indicated an association with Chlamydophila pneumoniae, a respiratory intracellular pathogen that can infect bronchoalveolar macrophages, and be transported to sites of vascular injury. Furthermore, the connection between low density lipoprotein (LDL), macrophages, foam cell formation, and atherosclerosis is well established. Five study models were designed to mimic the early events in plaque formation, i.e. untreated U937 human macrophages as control; macrophages treated with LDL only; macrophages infected with the AR-39 strain of C. pneumoniae only; and the last two models in which macrophages were exposed to both C. pneumoniae and LDL but in different order. Differential display RT-PCR was employed to analyze mRNAs from the five models to elucidate the transcriptional responses arising from macrophage interactions with C. pneumoniae and/or LDL. Out of 235 expressed sequence tags, the altered expression patterns of 29 selected genes at various time-points were authenticated by semi-quantitative and real-time RT-PCR. In relation to atherosclerosis, some interesting modified transcripts are involved in cell proliferation (CDC2, CDC27, CDC42EP3, GBDR1, GPR6, RPL27A, Similar to COX2), apoptosis (BCL2A1), ubiquitination (CTSH, HSPC150, NUC2), and structural integrity (ACTG1, FLOT1). Other genes exhibiting altered expression include those that modulate inflammatory and immune responses or signal transduction linking infection to host immunity (ARPP-19, BLAME, HCA58, IK cytokine, IRS2, STAT1P1). The transcriptional alterations of critical human genes in response to C. pneumoniae infection and foam cell development provide insights into certain key molecular pathophysiological mechanisms of atherosclerosis."	"A mutation in the gamma actin 1 (ACTG1) gene causes autosomal dominant hearing loss (DFNA20/26). Linkage analysis in a multigenerational family with autosomal dominant hearing loss yielded a chromosomal localisation of the underlying genetic defect in the DFNA20/26 locus at 17q25-qter. The 6-cM critical region harboured the gamma-1-actin (ACTG1) gene, which was considered an attractive candidate gene because actins are important structural elements of the inner ear hair cells. In this study, a Thr278Ile mutation was identified in helix 9 of the modelled protein structure. The alteration of residue Thr278 is predicted to have a small but significant effect on the gamma 1 actin structure owing to its close proximity to a methionine residue at position 313 in helix 11. Met313 has no space in the structure to move away. Moreover, the Thr278 residue is highly conserved throughout eukaryotic evolution. Using a known actin structure the mutation could be predicted to impair actin polymerisation. These findings strongly suggest that the Thr278Ile mutation in ACTG1 represents the first disease causing germline mutation in a cytoplasmic actin isoform."	"Mutations in the gamma-actin gene (ACTG1) are associated with dominant progressive deafness (DFNA20/26). Age-related hearing loss (presbycusis) is a significant problem in the population. The genetic contribution to age-related hearing loss is estimated to be 40%-50%. Gene mutations that cause nonsyndromic progressive hearing loss with early onset may provide insight into the etiology of presbycusis. We have identified four families segregating an autosomal dominant, progressive, sensorineural hearing loss phenotype that has been linked to chromosome 17q25.3. The critical interval containing the causative gene was narrowed to approximately 2 million bp between markers D17S914 and D17S668. Cochlear-expressed genes were sequenced in affected family members. Sequence analysis of the gamma-actin gene (ACTG1) revealed missense mutations in highly conserved actin domains in all four families. These mutations change amino acids that are conserved in all actins, from protozoa to mammals, and were not found in &gt;100 chromosomes from normal hearing individuals. Much of the specialized ultrastructural organization of the cells in the cochlea is based on the actin cytoskeleton. Many of the mutations known to cause either syndromic or nonsyndromic deafness occur in genes that interact with actin (e.g., the myosins, espin, and harmonin). The mutations we have identified are in various binding domains of actin and are predicted to mildly interfere with bundling, gelation, polymerization, or myosin movement and may cause hearing loss by hindering the repair or stability of cochlear cell structures damaged by noise or aging. This is the first description of a mutation in cytoskeletal, or nonmuscle, actin."	"Chromosomal assignments of expressed sequence tags for ACTG1, AHSG, COL1A1, GNAS1, and RPLP1 expressed abundantly in the bovine foetus. NA"	"Characterization of human retinal fascin gene (FSCN2) at 17q25: close physical linkage of fascin and cytoplasmic actin genes. Retinal fascin is a newly identified photoreceptor-specific paralog of the actin-bundling protein fascin. Fascins crosslink f-actin into highly ordered bundles within dynamic cell extensions such as neuronal growth cone filopodia. We have isolated cDNA and genomic clones of human retinal fascin and characterized the structure of the human retinal fascin gene (FSCN2). The cDNA predicts a protein of 492 amino acids and molecular mass 55,057 that shows 94% identity to bovine retinal fascin and 56% identity to human fascin. Promoter analysis reveals a consensus retinoic acid response element and several potential binding sites for transcription factors Crx and Nrl, which correlates with the retina-specific expression of FSCN2 mRNA. Fluorescence in situ hybridization analysis and genomic clone sequencing indicate that the FSCN2 gene lies within 200 kb of the actin gene ACTG1 at 17q25. Database searches revealed that the human fascin gene FSCN1 and actin gene ACTB at 7p22 also coexist within a 200-kb genomic clone. The close physical linkage of these fascin/actin gene pairs suggests that they derive from a common gene duplication event and allows comparison of fascin and actin phylogenetic analyses. Finally, a possible link to the retinitis pigmentosa 17 allele (RP17) at distal 17q was excluded by demonstration of multiple independent segregation events in two RP17 kindreds. Informative FSCN2 polymorphisms were identified and will serve as useful markers in future linkage studies. The likely function of retinal fascin, in light of known fascin roles in other cell types, is to assemble actin microfilaments in support of photoreceptor disk morphogenesis."	"A new locus for late-onset, progressive, hereditary hearing loss DFNA20 maps to 17q25. We report the localization of DFNA20, a gene causing dominant, nonsyndromic, progressive hearing loss in a three-generation Midwestern family, to chromosome 17q25. Affected family members show a bilateral, sloping, progressive, sensorineural hearing loss, first evident at 6000 and 8000 Hz, that can be identified in some family members in the early teens and is clearly evident by the early twenties. As age increases, the degree of hearing loss increases with threshold shifts seen at all frequencies. Linkage to known hereditary hearing loss loci was excluded. A genome-wide screen detected positive linkage to D17S784 (LOD(Z) = 6.62; &amp;theta; = 0). Haplotype analysis refines the DFNA20 critical region to 12 cM between D17S1806 and D17S668. Radiation hybrid mapping with Stanford G3 and TNG panels was used to evaluate the genes ACTG1, GRIN2C, FKHL13, P4HB, SPARC, and ARHGDIA as candidates for DFNA20."	"FISH localization of human cytoplasmic actin genes ACTB to 7p22 and ACTG1 to 17q25 and characterization of related pseudogenes. Human beta- and gamma-cytoplasmic actin genes (ACTB and ACTG1) were mapped to chromosomes 7p22 and 17q25, respectively, by fluorescence in situ hybridization (FISH). Four processed pseudogenes, beta-actin-related ACTBP9 and gamma-actin-related ACTGP1, ACTGP3, and ACTGP9, were isolated from human libraries. By PCR of somatic cell hybrid DNAs, ACTBP9 and two beta-actin-related pseudogenes (ACTBP7 and ACTBP8) were mapped to human chromosomes 18, 15, and 6, respectively. The gamma-actin-related pseudogenes were mapped by FISH to chromosomes 3q23 (ACTGP1), 20p13 (ACTGP3), and 6p21.1 (ACTGP9)."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"COCH"	"nonsyndromic genetic deafness"	"Initial inflammatory response is an independent predictor of unfavorable outcome in patients with good-grade aneurysmal subarachnoid hemorrhage. Purpose of the present study was to determine if routine biochemical markers of acute phase response are associated with unfavorable outcome in patients with good-grade aneurysmal SAH. 231 patients admitted with aneurysmal SAH and WFNS grade I - II were included in the present study. C-reactive protein (CRP) and procalcitonin (PCT) were measured within 24 h of admission. Outcome was assessed according to the modified Rankin Scale (mRS) after 6 months and stratified into favorable (mRS 0-2) vs. unfavorable (mRS 3-6). The multivariate regression analysis revealed &quot;elevated baseline CRP&quot; (p = .001, OR 3.2, 95% CI 1.6-6.6), &quot;elevated baseline PCT&quot; (p = .004, OR 26.0, 95% CI 2.9-235.5), &quot;male gender&quot; (p = .02, OR 2.3, 95% CI 1.1-4.8), and &quot;age ≥ 65 years&quot; (p = .009, OR 2.7, 95% CI 1.3-5.8) as a model for the prediction of unfavorable outcome in patients with good-grade SAH. An initial inflammatory response could be a possible explanation for poor outcome in good-grade SAH patients. These findings might help to identify a subgroup of good grade SAH patients who are at greater risk for unfavorable outcome early during treatment course/at baseline, and who could benefit most from potential anti-inflammatory therapy."	"Remote Ischemic Preconditioning Reduces the Risk of Contrast-Induced Nephropathy in Patients with Moderate Renal Impairment Undergoing Percutaneous Coronary Angiography: A Meta-Analysis. This meta-analysis evaluated the effects of remote ischemic preconditioning (RIPC) on the risk of contrast-induced nephropathy (CIN) in patients undergoing percutaneous coronary intervention/coronary angiography (PCI/CA). PubMed, Embase, and the Cochrane Central Register of Controlled Trials databases were searched for randomized controlled trials (RCTs) that assessed the effect of RIPC on CIN in patients undergoing PCI/CA. The main outcomes of interest were the incidence of CIN 48-72 h after CA, the levels of serum creatinine, cystatin C, neutrophil gelatinase-associated lipocalin, and estimated glomerular filtration rate (eGFR), mortality, and requirement of hemodialysis and rehospitalization. The analysis was conducted using the random-effect model due to the expected heterogeneity among different studies. In total, 16 trials covering 2,048 patients were identified. By assessing the methodological quality of the included studies through the Coch-rane risk of bias, we found that of the 16 RCTs, 3 had a low risk of bias, 6 a high, and 7 an unclear risk. The application of RIPC decreased the incidence of CIN (relative risk, RR, 0.50, 95% confidence interval, CI, 0.39-0.65; p &lt; 0.001). Subgroup analyses showed that RIPC decreased the incidence of CIN in patients with eGFR &lt;60 mL/min/1.73 m2 (RR 0.53, 95% CI 0.38-0.75; p &lt; 0.001) but not in patients with eGRF ≥60 mL/min/1.73 m2 (RR 0.82, 95% CI 0.35-1.94; p = 0.66) at baseline. Furthermore, the increase in serum creatinine was significantly lower in patients with RIPC compared to control patients (standardized mean difference -1.41, 95% CI -2.46 to -0.35; p = 0.009). Based on 16 RCTs, this meta-analysis shows that RIPC can reduce the risk of CIN in patients with moderate renal impairment undergoing PCI/CA. However, this needs to be confirmed by further high-quality evidence."	"Factors influencing routine cognitive impairment screening in older at-risk drinkers: Findings from a qualitative study in the United Kingdom. Cognitive Impairment (CI) screening is recommended for those engaged in harmful levels of alcohol use. However, there is a lack of evidence on implementation. This paper explores the barriers and facilitators to CI screening experienced across a service specifically for older drinkers. The findings draw on data gathered as part of an evaluation of a multilevel programme to reduce alcohol-related harm in adults aged 50 and over in five demonstration areas across the United Kingdom. It is based on qualitative interviews and focus groups with 14 service providers and 22 service users. Findings are presented thematically under the section headings: acceptability of screening, interpretation and making sense of screening and treatment options. It is suggested that engagement with CI screening is most likely when its fit with agency culture and its purpose is clear; where service providers have the technical skills to administer and discuss the results of screening with service users; and where those undertaking screening have had the opportunity to reflect on their own experience of being screened. Engagement with CI screening is also most likely where specific intervention pathways and engagement practices can be accessed to respond to assessed need."	"Novel loss-of-function mutations in COCH cause autosomal recessive nonsyndromic hearing loss. COCH is the most abundantly expressed gene in the cochlea. Unsurprisingly, mutations in COCH underly hearing loss in mice and humans. Two forms of hearing loss are linked to mutations in COCH, the well-established autosomal dominant nonsyndromic hearing loss, with or without vestibular dysfunction (DFNA9) via a gain-of-function/dominant-negative mechanism, and more recently autosomal recessive nonsyndromic hearing loss (DFNB110) via nonsense variants. Using a combination of targeted gene panels, exome sequencing, and functional studies, we identified four novel pathogenic variants (two nonsense variants, one missense, and one inframe deletion) in COCH as the cause of autosomal recessive hearing loss in a multi-ethnic cohort. To investigate whether the non-truncating variants exert their effect via a loss-of-function mechanism, we used minigene splicing assays. Our data showed both the missense and inframe deletion variants altered RNA splicing by creating an exon splicing silencer and abolishing an exon splicing enhancer, respectively. Both variants create frameshifts and are predicted to result in a null allele. This study confirms the involvement of loss-of-function mutations in COCH in autosomal recessive nonsyndromic hearing loss, expands the mutational landscape of DFNB110 to include coding variants that alter RNA splicing, and highlights the need to investigate the effect of coding variants on RNA splicing."	"SYMMETRIC PETALS 1 Encodes an ALOG Domain Protein that Controls Floral Organ Internal Asymmetry in Pea (Pisum sativum L.). In contrast to typical radially symmetrical flowers, zygomorphic flowers, such as those produced by pea (Pisum sativum L.), have bilateral symmetry, manifesting dorsoventral (DV) and organ internal (IN) asymmetry. However, the molecular mechanism controlling IN asymmetry remains largely unclear. Here, we used a comparative mapping approach to clone SYMMETRIC PETALS 1 (SYP1), which encodes a key regulator of floral organ internal asymmetry. Phylogenetic analysis showed that SYP1 is an ortholog of Arabidopsis thaliana LIGHT-DEPENDENT SHORT HYPOCOTYL 3 (LSH3), an ALOG (Arabidopsis LSH1 and Oryza G1) family transcription factor. Genetic analysis and physical interaction assays showed that COCHLEATA (COCH, Arabidopsis BLADE-ON-PETIOLE ortholog), a known regulator of compound leaf and nodule identity in pea, is involved in organ internal asymmetry and interacts with SYP1. COCH and SYP1 had similar expression patterns and COCH and SYP1 target to the nucleus. Furthermore, our results suggested that COCH represses the 26S proteasome-mediated degradation of SYP1 and regulates its abundance. Our study suggested that the COCH-SYP1 module plays a pivotal role in floral organ internal asymmetry development in legumes."	"Targeting the innate immunoreceptor RIG-I overcomes melanoma-intrinsic resistance to T cell immunotherapy. Understanding tumor resistance to T cell immunotherapies is critical to improve patient outcomes. Our study revealed a role for transcriptional suppression of the tumor-intrinsic HLA class I (HLA-I) antigen processing and presentation machinery (APM) in therapy resistance. Low HLA-I APM mRNA levels in melanoma metastases before immune checkpoint blockade (ICB) correlated with nonresponsiveness to therapy and poor clinical outcome. Patient-derived melanoma cells with silenced HLA-I APM escaped recognition by autologous CD8+ T cells. However, targeted activation of the innate immunoreceptor RIG-I initiated de novo HLA-I APM transcription, thereby overcoming T cell resistance. Antigen presentation was restored in interferon-sensitive (IFN-sensitive) but also immunoedited IFN-resistant melanoma models through RIG-I-dependent stimulation of an IFN-independent salvage pathway involving IRF1 and IRF3. Likewise, enhanced HLA-I APM expression was detected in RIG-Ihi (DDX58hi) melanoma biopsies, correlating with improved patient survival. Induction of HLA-I APM by RIG-I synergized with antibodies blocking PD-1 and TIGIT inhibitory checkpoints in boosting the antitumor T cell activity of ICB nonresponders. Overall, the herein-identified IFN-independent effect of RIG-I on tumor antigen presentation and T cell recognition proposes innate immunoreceptor targeting as a strategy to overcome intrinsic T cell resistance of IFN-sensitive and IFN-resistant melanomas and improve clinical outcomes in immunotherapy."	"DNA methylation markers that correlate with occult lymph node metastases of non-small cell lung cancer and a preliminary prediction model. Lymph node (LN) metastasis status is the most important prognostic factor and determines treatment strategy. Methylation alteration is an optimal candidate to trace the signal from early stage tumors due to its early existence, multiple loci and stability in blood. We built a diagnostic tool to screen and identify a set of plasma methylation markers in early stage occult LN metastasis. High-throughput targeted methylation sequencing was performed on tissue and matched plasma samples from a cohort of 119 non-small cell lung cancer (NSCLC) patients with a primary lesion of less than 3.0 cm in diameter. The methylation profiles were compared between patients with and without occult LN metastases. We carried out a set of machine-learning analyses on our discovery cohort to evaluate the utility of cell free DNA methylation profiles in early detection of LN metastasis. Two preliminary prognostic models predictive of LN metastasis were built by random forest with differentially methylated markers shared by plasma and tissue samples and markers present either in plasma or tissue samples respectively. The performance of these models was then evaluated using receiver operating characteristic (ROC) statistics derived from ten-fold cross validation repeated ten times. Within this cohort, 27 cases (27/119, 22.7%) were found to have occult LN metastases found by pathological examination. Compared with those without metastases, 878 and 52 genes were differentially methylated in terms of tissue (MTA3, MIR548H4, HIST3H2A, etc.) and plasma (CIRBP, CHGB, FCHO1, etc.) respectively. 19 of these genes (ICAM1, EPH4, COCH, etc.) were overlapped. We selected 22 pairs of cases with or without occult LN metastasis by matching gender, age, smoking history and tumor histology to build and test the plasma model. The AUC of the preliminary prediction model using markers shared by plasma and tissue samples and markers present either in plasma or tissue samples is 88.6% (95% CI, 87.8-89.4%) and 74.9% (95% CI, 72.2-77.6%) respectively. We identified a set of specific plasma methylation markers for early occult LN metastasis of NSCLC and established a preliminary non-invasive blood diagnostic tool."	"Making the Case for Research on Disease-Modifying Treatments to Tackle Post-lingual Progressive Sensorineural Hearing Loss. Hearing loss not only has a significant impact on the quality of life of patients and society, but its correlation with cognitive decline in an aging population will also increase the risk of incident dementia. While current management of hearing loss is focused on hearing rehabilitation (and essentially symptomatic), patients are suffering from the burden of progressive hearing loss before hearing aids or cochlear implants are fitted. Although these devices have a significant effect on speech understanding, they do not always lead to normal speech understanding, especially in noisy environments. A significant number of patients suffer from autosomal dominantly inherited disorders that can produce progressive sensorineural hearing loss. This includes DFNA9, a disorder caused by pathologic variants in the COCH gene that leads to post-lingual profound sensorineural hearing loss and bilateral vestibulopathy. Carriers of a pathogenic variant leading to DFNA9 can be diagnosed at the pre-symptomatic or early symptomatic stage which creates a window of opportunity for treatment. Preventing hearing loss from occurring or stabilizing progression would provide the opportunity to avoid hearing aids or cochlear implants and would be able to reduce the increased incidence of dementia. While innovative therapies for restoration of hearing have been studied for restoration of hearing in case of severe-to-profound sensorineural hearing loss and congenital hearing loss, further research is needed to study how we can modify disease progression in late-onset autosomal dominant hereditary sensorineural hearing loss. Recently, gene editing strategies have been explored in autosomal dominant disorders to disrupt dominant mutations selectively without affecting wild-type alleles."	"Roles of BdUNICULME4 and BdLAXATUM-A in the non-domesticated grass Brachypodium distachyon. In cultivated grasses, tillering, spike architecture and seed shattering represent major agronomical traits. In barley, maize and rice, the NOOT-BOP-COCH-LIKE (NBCL) genes play important roles in development, especially in ligule development, tillering and flower identity. However, compared with dicots, the role of grass NBCL genes is underinvestigated. To better understand the role of grass NBCLs and to overcome any effects of domestication that might conceal their original functions, we studied TILLING nbcl mutants in the non-domesticated grass Brachypodium distachyon. In B. distachyon, the NBCL genes BdUNICULME4 (CUL4) and BdLAXATUM-A (LAXA) are orthologous, respectively, to the barley HvUniculme4 and HvLaxatum-a, to the maize Zmtassels replace upper ears1 and Zmtassels replace upper ears2 and to the rice OsBLADE-ON-PETIOLE1 and OsBLADE-ON-PETIOLE2/3. In B. distachyon, our reverse genetics study shows that CUL4 is not essential for the establishment of the blade-sheath boundary but is necessary for the development of the ligule and auricles. We report that CUL4 also exerts a positive role in tillering and a negative role in spikelet meristem activity. On the other hand, we demonstrate that LAXA plays a negative role in tillering, positively participates in spikelet development and contributes to the control of floral organ number and identity. In this work, we functionally characterized two new NBCL genes in a context of non-domesticated grass and highlighted original roles for grass NBCL genes that are related to important agronomical traits."	"Improvements in exercise capacity of older adults during cardiac rehabilitation. Cardiac rehabilitation plays a vital role in secondary prevention of cardiovascular patients. Female sex and higher age, however, are associated with non-referral to cardiac rehabilitation. Improving exercise capacity during cardiac rehabilitation is essential to reduce morbidity and mortality risks. The objective of this study was to closely examine the beneficial changes in exercise capacity of older patients of both sexes during cardiac rehabilitation and to identify the most important predictors of the change in exercise capacity. A sample of 13,612 patients (mean age = 69.10 ± 11.8 years, 63.7% men, 19% &gt; 80 years) was analysed. Data were prospectively assessed from 2012-2018 in six Swiss in-patient cardiovascular rehabilitation clinics. Improvement in exercise capacity measured with the six-minute walking test represents the outcome variable. Univariate and multivariate analyses, as well as the random forest method were used to estimate variable importance. Mean improvement in the six-minute walking test was 113.5 ± 90.5 m (men = 118.7 ± 110.0; women = 104.4 ± 93.0, Cohen's d = 0.16). The presence of heart failure, diabetes mellitus and psychiatric diagnoses was related to reduced but nonetheless clinically relevant six-minute walking test improvement. Random forest analysis suggests that baseline exercise capacity, age, time in rehabilitation and heart failure were the most important predictors for improvement in exercise capacity. Clinically relevant improvements in exercise capacity (&gt;45 m) were also present into old age (85 years) and for both sexes. As indicated by these results, efforts need to be increased to refer eligible patients to structured rehabilitation programmes, irrespective of patients' age and sex."	"Octenyl-succinylated inulin for the encapsulation and release of hydrophobic compounds. Octenyl-succinylated inulins (OSA-inulin) were synthesized in aqueous solutions using inulin with varying degrees of polymerization (DP). They were characterized using <sup>1</sup>H NMR and FTIR and their degrees of substitution were determined. All the samples formed micellar aggregates in aqueous solution above a critical aggregation concentration (CAC) and solubilized beta-carotene. The amount of beta carotene solubilized within the micelles ranged from 12 to 25 mg/g of OSA-inulin and depended on the inulin molar mass. Dynamic light scattering showed that the aggregates, with and without dissolved beta-carotene, were ∼10-15 nm in size and this was confirmed by Transmission Electron Microscopy which also indicated that the micelles had a globular shape. OSA-inulin particles containing encapsulated beta-carotene were produced by freeze-drying. The encapsulated beta-carotene was not released from the freeze-dried particles when introduced into simulated gastric fluid at pH 2.5 but was readily released in simulated small intestinal fluid at pH 7. The results demonstrate the potential application of OSA-inulin in the encapsulation, dissolution and targeted delivery of hydrophobic drug molecules for nutraceutical, pharmaceutical and medical applications."	"Immune Sensing of Synthetic, Bacterial, and Protozoan RNA by Toll-like Receptor 8 Requires Coordinated Processing by RNase T2 and RNase 2. Human toll-like receptor 8 (TLR8) activation induces a potent T helper-1 (Th1) cell response critical for defense against intracellular pathogens, including protozoa. The receptor harbors two distinct binding sites, uridine and di- and/or trinucleotides, but the RNases upstream of TLR8 remain poorly characterized. We identified two endolysosomal endoribonucleases, RNase T2 and RNase 2, that act synergistically to release uridine from oligoribonucleotides. RNase T2 cleaves preferentially before, and RNase 2 after, uridines. Live bacteria, P. falciparum-infected red blood cells, purified pathogen RNA, and synthetic oligoribonucleotides all required RNase 2 and T2 processing to activate TLR8. Uridine supplementation restored RNA recognition in RNASE2<sup>-/-</sup> or RNASET2<sup>-/-</sup> but not RNASE2<sup>-/-</sup>RNASET2<sup>-/-</sup> cells. Primary immune cells from RNase T2-hypomorphic patients lacked a response to bacterial RNA but responded robustly to small-molecule TLR8 ligands. Our data identify an essential function of RNase T2 and RNase 2 upstream of TLR8 and provide insight into TLR8 activation."	"Ni and Zn co-substituted Co(CO3)0.5OH self-assembled flowers array for asymmetric supercapacitors. The supercapacitive performance of high-rate capacity and long-term cycling stability is still a big challenge for electroactive materials. Herein, Ni and Zn co-substituted Co carbonate hydroxide (NiZn-CoCH) flowers array is self-assembled on nickel foams (NFs) using l-ascorbic acid as a nanostructure inducer. The NiZn-CoCH flowers, consisting of silk-like nanosheets, are deservedly large electrode-electrolyte contact area and suitable ion-diffusion channel. The nanostructure and Ni and Zn co-substitution significantly improve energy storage performance. This electrode exhibits a high specific capacitance of 2020.8 F g<sup>-1</sup> at 1 A g<sup>-1</sup> with high-rate capacity (remain 80.2% at 10 A g<sup>-1</sup>) and 5000-cycle stability (almost unchanged after 1500 cycles at 10 A g<sup>-1</sup>). Additionally, an assembled asymmetric supercapacitor (ASC) device of NiZn-CoCH//activated carbon (AC) achieves a high energy density of 29.6 Wh kg<sup>-1</sup> at a power density of 375 W kg<sup>-1</sup> and only a 0.5% decrease of the capacitance after 2500 cycles. This facile and novel preparation method, using l-ascorbic acid, may be promising for industrial production of electroactive materials for the high-performance energy storage and conversion devices."	"Structure-Based Design and Discovery of a Long-Acting Cocaine Hydrolase Mutant with Improved Binding Affinity to Neonatal Fc Receptor for Treatment of Cocaine Abuse. Despite decades of efforts to develop a pharmacotherapy for cocaine abuse treatment, there is still no FDA-approved treatment of diseases associated with this commonly abused drug. Our previously designed highly efficient cocaine hydrolases (CocHs) and the corresponding Fc-fusion proteins (e.g., CocH3-Fc) are recognized as potentially promising therapeutic enzyme candidates for cocaine abuse treatment, but all with limited biological half-lives. In order to prolong the biological half-life and, thus, decrease the required frequency of the enzyme administration for cocaine abuse treatment, we have modeled the Fc-fusion CocH binding with neonatal Fc receptor (FcRn) in the present study. This approach led to the design and testing of CocH3-Fc(M6), a CocH3-Fc mutant with nearly 100-fold increased binding affinity: from Kd = ~ 4 μM to Kd = 43 nM. As a result, CocH3-Fc(M6) indeed revealed a markedly prolonged biological half-life (t1/2 = 206 ± 7 h or ~ 9 days) in rats, longer than other known Fc-fusion protein drugs such as abatacept and alefacept (for other therapeutic purposes) in the same species (rats). It has been demonstrated that a single dose of 3 mg/kg CocH3-Fc(M6) effectively blocked 20 mg/kg cocaine-induced hyperactivity on day 18 after CocH3-Fc(M6) administration. This is the first attempt to rationally design long-acting Fc-fusion enzyme mutant based on combined computational modeling and experimental measurement of the Fc-fusion CocH binding with FcRn. The similar structure-based design strategy may be used to prolong the biological half-lives of other Fc-fusion protein drugs."	"Intestinal intermediate filament polypeptides in C. elegans: Common and isotype-specific contributions to intestinal ultrastructure and function. The abundance and diversity of intermediate filaments (IFs) in the C. elegans intestine indicate important contributions to intestinal function and organismal wellbeing. Fluorescent IF reporters localize below the actin-rich brush border and are highly enriched in the lumen-enveloping endotube, which is attached to the C. elegans apical junction. Mapping intestinal viscoelasticity by contact-free Brillouin microscopy reveals that the IF-rich endotube is positioned at the interface between the stiff brush border and soft cytoplasm suggesting a mechanical buffering function to deal with the frequent luminal distortions occurring during food intake and movement. In accordance, depletion of IFB-2, IFC-2 and IFD-2 leads to intestinal lumen dilation although depletion of IFC-1, IFD-1 and IFP-1 do not. Ultrastructural analyses of loss of function mutants further show that IFC-2 mutants have a rarefied endotube and IFB-2 mutants lack an endotube altogether. Remarkably, almost all IFB-2- and IFC-2-deficient animals develop to fertile adults. But developmental retardation, reduced brood size, altered survival and increased sensitivity to microbial toxin, osmotic and oxidative stress are seen in both mutants albeit to different degrees. Taken together, we propose that individual intestinal IF polypeptides contribute in different ways to endotube morphogenesis and cooperate to cope with changing environments."	"Waist Circumference and Risk of Liver Cancer: A Systematic Review and Meta-Analysis of over 2 Million Cohort Study Participants. Liver cancer is the sixth most common type of cancer worldwide, and waist circumference (WC) is associated with its risk beyond body mass index (BMI). This dose-response meta-analysis was performed to investigate the association between WC and the risk of incident liver cancer using prospective cohort studies. A comprehensive systematic search was conducted in MEDLINE/PubMed, Web of Science databases, Scopus, and Coch-rane from inception to May 2019. Studies with retrospective or prospective cohort design that reported hazard ratio (HR), risk ratio, or odds ratio, and the corresponding 95% confidence intervals (CI) for liver cancer based on WC categories were included in this meta-analysis. Combined HRs with 95% CIs was estimated by DerSimonian and Laird random-effects models. Associations between WC and liver cancer were reported in 5 articles with 2,547,188 participants. All studies were published between 2013 and 2019. Pooled results showed a strong significant association with minimum heterogeneity between WC and risk of liver cancer (HR 1.59, 95% CI 1.38-1.83, p&lt;sub&gt;heterogeneity&lt;/sub&gt; = 0.42: I&lt;sup&gt;2&lt;/sup&gt; = 0%). Moreover, a dose-response model indicated a significant positive association between WC and risk of liver cancer (exp(b) = 1.018, p &lt; 0.001). This systematic review and dose-response meta-analysis highlights WC as a significant risk factor related to the incidence of liver cancer."	"Phenprocoumon Dose Requirements, Dose Stability and Time in Therapeutic Range in Elderly Patients With CYP2C9 and VKORC1 Polymorphisms. Dose requirements of vitamin K antagonists are associated with CYP2C9 and VKORC1, but, compared to warfarin, less data is available about phenprocoumon. Furthermore, the effects on dose stability and anticoagulation quality are still unclear. Aim was to scrutinize phenprocoumon dose requirements, dose stability and anticoagulation quality in association to CYP2C9 and VKORC1 in a natural cohort of elderly primary care patients. As a subgroup within the IDrug study, phenprocoumon treated patients with at least two INR values within three months before enrollment (n = 209) were analyzed concerning average weekly dose, standard deviation of weekly dose (intra-subject variability), constant dose (yes/no), average INR and TTR grouped by CYP2C9 and VKORC1 (and combinations). Average weekly dose per patient was 14.4 ± 5.3 mg, 11.9 ± 4.0 mg and 11.2 ± 4.3 mg in CYP2C9 wildtypes, *2 and *3 carriers (p &lt; .0001) and 16.0 ± 4.2 mg, 13.3 ± 5.1 mg and 8.0 ± 2.7 mg per week in VKORC1 CC, CT and TT genotypes, respectively (p &lt; .0001). Significant differences concerning intra-subject variability were detected among all groups (p &lt; .0001) with the smallest variability in CYP2C9*3 carriers. TTR medians were 75.4%, 79.4% and 100% in wildtypes, *2 and *3 carriers, respectively (p = 0.0464). The proportion of patients with perfect control was highest among *3 carriers, but this result was not significant (p = 0.0713). Our analyses support the results of previous investigations regarding genotype-associated dose requirements and raise the hypothesis that dose stability and anticoagulation quality may be increased in CYP2C9*3 carriers. However, our data should be treated cautiously due to the small sample size. German Clinical Trials Register, identifier DRKS00006256."	"The Limited Role of Glucagon for Ketogenesis During Fasting or in Response to SGLT2 Inhibition. Glucagon is classically described as a counterregulatory hormone that plays an essential role in the protection against hypoglycemia. In addition to its role in the regulation of glucose metabolism, glucagon has been described to promote ketosis in the fasted state. Sodium-glucose cotransporter 2 inhibitors (SGLT2i) are a new class of glucose-lowering drugs that act primarily in the kidney, but some reports have described direct effects of SGLT2i on α-cells to stimulate glucagon secretion. Interestingly, SGLT2 inhibition also results in increased endogenous glucose production and ketone production, features common to glucagon action. Here, we directly test the ketogenic role of glucagon in mice, demonstrating that neither fasting- nor SGLT2i-induced ketosis is altered by interruption of glucagon signaling. Moreover, any effect of glucagon to stimulate ketogenesis is severely limited by its insulinotropic actions. Collectively, our data suggest that fasting-associated ketosis and the ketogenic effects of SGLT2 inhibitors occur almost entirely independent of glucagon."	"Correlations Between Vestibular Function and Imaging of the Semicircular Canals in DFNA9 Patients. Background and Purpose: Radiologic abnormalities on computed tomography (CT), including narrowing or sclerosis of the semicircular canals (SCCs), and T2-weighted magnetic resonance imaging (MRI), including signal loss in the SCC, have been reported as potential biomarkers in patients with P51S mutations in the COCH gene (i.e., DFNA9). The aim of our study was to correlate caloric responses through electronystagmography (ENG) data with imaging results in DFNA9 patients. Materials and Methods: A retrospective study was performed in 45 patients; therefore, 90 ears with P51S mutations in the COCH gene were tested. Caloric responses and CT and MRI data were analyzed from June 2003 until May 2014. More than half of patients (54%) were candidates for cochlear implantation. Results: In our population, 91% of tested ears had sclerotic lesions and/or narrowing in one or more SCCs on CT scan. All tested ears had narrowing or signal loss in at least one SCC on T2-weighted MRI. The lateral SCC was affected in 87% on CT scan and 92% on MRI. However, in 83% of tested ears, all three SCCs were affected on MRI. Furthermore, in 77% of tested ears, caloric responses were reduced bilaterally, while 11.5% showed unilateral hypofunction and the other 11.5% had normal caloric responses. CT abnormalities correlated with hypofunction of caloric responses. This statistically significant difference was present if abnormalities were observed in at least one of the SCCs as well as in ipsilateral lateral SCC function loss. MRI abnormalities in at least one of the SCCs correlated with ENG hypofunction, but there was no direct correlation between lateral SCC abnormalities on MRI and caloric responses of the investigated lateral canal. Conclusion: Our retrospective analysis confirms the presence of CT and MRI abnormalities in DFNA9 patients with the P51S mutation in the COCH gene. A correlation between these radiologic features and vestibular function (tested by means of caloric response) was found in this population."	"In-Depth Mapping of the Urinary N-Glycoproteome: Distinct Signatures of ccRCC-related Progression. Protein N-glycosylation is one of the most important post-translational modifications and is involved in many biological processes, with aberrant changes in protein N-glycosylation patterns being closely associated with several diseases, including the progression and spreading of tumours. In light of this, identifying these aberrant protein glycoforms in tumours could be useful for understanding the molecular mechanism of this multifactorial disease, developing specific biomarkers and finding novel therapeutic targets. We investigated the urinary N-glycoproteome of clear cell renal cell carcinoma (ccRCC) patients at different stages (n = 15 at pT1 and n = 15 at pT3), and of non-ccRCC subjects (n = 15), using an N-glyco-FASP-based method. Using label-free nLC-ESI MS/MS, we identified and quantified several N-glycoproteins with altered expression and abnormal changes affecting the occupancy of the glycosylation site in the urine of RCC patients compared to control. In particular, nine of them had a specific trend that was directly related to the stage progression: CD97, COCH and P3IP1 were up-expressed whilst APOB, FINC, CERU, CFAH, HPT and PLTP were down-expressed in ccRCC patients. Overall, these results expand our knowledge related to the role of this post-translational modification in ccRCC and translation of this information into pre-clinical studies could have a significant impact on the discovery of novel biomarkers and therapeutic target in kidney cancer."	"Aflibercept for choroidal neovascularizations secondary to pseudoxanthoma elasticum: a prospective study. To evaluate the use of 2 mg intravitreal aflibercept for treatment of choroidal neovascularization (CNV) secondary to angioid streaks in patients with pseudoxanthoma elasticum (PXE). In this 12-month prospective, open-label, uncontrolled, non-randomized interventional clinical trial, 15 PXE patients with CNV (mean age: 53 years, range 22-65) received one initial intravitreal injection of 2 mg aflibercept. Further injections were based on CNV activity at monthly examinations. The primary endpoint was change of best corrected visual acuity (BCVA) after 12 months. Secondary outcomes were change of central retinal thickness (CRT), leakage from CNV, retinal sensitivity, and vision-related quality of life. BCVA improved from 75.0 ± 10.8 (± SD, Snellen equivalent 20/32) to 79.3 ± 7.3 ETDRS letters (20/32) at final visit (p = 0.083). CRT decreased from 317 ± 81 to 279 ± 51 μm (p = 0.004). Retinal sensitivity on microperimetry changed from 17.8 ± 4.5 to 18.5 ± 4.3 dB (p = 0.103) and vision-related quality of life from a VQF-25 score of 80.7 ± 10.4 to 83.5 ± 14.5 (p = 0.554). The mean number of injections was 6.7 ± 2.6, and 5 participants had persistent or reactivated CNV activity at final visit. The observed adverse events were comparable with studies on aflibercept for other indications. The results of this study indicate that intravitreal aflibercept is a treatment option for CNV secondary to PXE."	"The Medicago truncatula nodule identity gene MtNOOT1 is required for coordinated apical-basal development of the root. Legumes can utilize atmospheric nitrogen by hosting nitrogen-fixing bacteria in special lateral root organs, called nodules. Legume nodules have a unique ontology, despite similarities in the gene networks controlling nodule and lateral root development. It has been shown that Medicago truncatula NODULE ROOT1 (MtNOOT1) is required for the maintenance of nodule identity, preventing the conversion to lateral root development. MtNOOT1 and its orthologs in other plant species -collectively called the NOOT-BOP-COCH-LIKE (NBCL) family- specify boundary formation in various aerial organs. However, MtNOOT1 is not only expressed in nodules and aerial organs, but also in developing roots, where its function remains elusive. We show that Mtnoot1 mutant seedlings display accelerated root elongation due to an enlarged root apical meristem. Also, Mtnoot1 mutant roots are thinner than wild-type and are delayed in xylem cell differentiation. We provide molecular evidence that the affected spatial development of Mtnoot1 mutant roots correlates with delayed induction of genes involved in xylem cell differentiation. This coincides with a basipetal shift of the root zone that is susceptible to rhizobium-secreted symbiotic signal molecules. Our data show that MtNOOT1 regulates the size of the root apical meristem and vascular differentiation. Our data demonstrate that MtNOOT1 not only functions as a homeotic gene in nodule development but also coordinates the spatial development of the root."	"Efficacy of the Spiration Valve System in Patients with Severe Heterogeneous Emphysema: A Systematic Review and Meta-Analysis. Spiration Valve System (SVS) is an alternative for patients with severe heterogeneous emphysema; however, data about efficacy from randomized controlled trials (RCT) are unclear. To explore both efficacy and safety of SVS in patients with severe emphysema and hyperinflation. We included PubMed, EMBASE, Coch-rane database. All searches were performed until August 2019. Only RCTs were included for analysis. Risk of bias was assessed using Cochrane risk of bias tool. A meta-analysis evaluated change in forced expiratory volume in 1 s (FEV1), 6-min walking test (6MWT), residual volume, modified medical research council (mMRC) and Saint George respiratory questionnaire (SGRQ), all-cause mortality, risk of pneumothorax, and risk of acute exacerbation of chronic obstructive pulmonary disease (AECOPD). Quality of the evidence was rated using GRADE approach. Four RCTs including 629 subjects were included. SVS showed an overall change of 0.03 L (-0.07 to 0.13, I2 = 90%) in the in FEV1 (L) and a 2.03% (-2.50 to 6.57, I2 = 96%) in the predicted FEV1 (%) compared to baseline; however, studies without collateral ventilation (CV) showed an improvement of 0.12 L (95% CI 0.09-0.015, I2 = 0%), This subgroup also reported better results in SGRQ -12.27 points (95% CI -15.84 to -8.70, I2 = 0%) and mMRC -0.54 (95% CI -0.74 to -0.33, I2 = 0%). We found no benefit in 6MWT mean difference = 4.56 m (95% CI -21.88 to 31.00, I2 = 73%). Relative risk of mortality was 2.54 (95% CI 0.81-7.96, I2 = 0%), for pneumothorax 3.3 (95% CI 0.61-18.12, I2 = 0%) and AECOPD 1.68 (95% CI 1.04-2.70, I2 = 0%). In patients with severe heterogeneous emphysema and hyperinflation without CV, SVS is an alternative that showed an improvement in pulmonary function, quality of life, and dyspnea score with an acceptable risk profile."	"Reengineering of Albumin-Fused Cocaine Hydrolase CocH1 (TV-1380) to Prolong Its Biological Half-Life. Therapeutic treatment of cocaine toxicity or addiction is a grand medical challenge. As a promising therapeutic strategy for treatment of cocaine toxicity and addiction to develop a highly efficient cocaine hydrolase (CocH) capable of accelerating cocaine metabolism to produce physiologically/biologically inactive metabolites, our previously designed A199S/S287G/A328W/Y332G mutant of human butyrylcholinesterase (BChE), known as cocaine hydrolase-1 (CocH1), possesses the desirably high catalytic activity against cocaine. The C-terminus of CocH1, truncated after amino acid #529, was fused to human serum albumin (HSA) to extend the biological half-life. The C-terminal HSA-fused CocH1 (CocH1-HSA), known as Albu-CocH1, Albu-CocH, AlbuBChE, Albu-BChE, or TV-1380 in literature, has shown favorable preclinical and clinical profiles. However, the actual therapeutic value of TV-1380 for cocaine addiction treatment is still limited by the short half-life. In this study, we designed and tested a new type of HSA-fused CocH1 proteins, i.e., N-terminal HSA-fused CocH1, with or without a linker between the HSA and CocH1 domains. It has been demonstrated that the catalytic activity of these new fusion proteins against cocaine is similar to that of TV-1380. However, HSA-CocH1 (without a linker) has a significantly longer biological half-life (t1/2 = 14 ± 2 h) compared to the corresponding C-terminal HSA-fused CocH1, i.e., CocH1-HSA (TV-1380 with t1/2 = 5-8 h), in rats. Further, the N-terminal HSA-fused CocH1 proteins with a linker have further prolonged biological half-lives: t1/2 = 17 ± 2 h for both HSA-EAAAK-CocH1 and HSA-PAPAP-CocH1, and t1/2 = 18 ± 3 h for HSA-(PAPAP)2-CocH1. These N-terminal HSA-fused CocH1 proteins may serve as more promising protein drug candidates for cocaine addiction treatment."	"Interferon-beta-induced changes in neuroimaging phenotypes of appetitive motivation and reactivity to emotional salience. Treatment with interferon (IFN) has been associated with depressive side effects. Previous neuroimaging studies have provided information about changes in brain activation patterns in patients under treatment with IFN-alpha, but the effect of other IFNs, or the role of the underlying disease, has yet to be clarified. In the present fMRI study, we looked at brain changes after 8 days of IFN-beta treatment in N = =17 healthy volunteers, thus avoiding the possible confound of the effects of underlying pathology in studies of IFN-treated patients with neurological or other medical disorders. We followed a symptom dimensional approach by simultaneously investigating two distinct symptom domains of depressiveness: negative affect (amygdala) and appetitive motivation (ventral striatum). In these early phases of IFN treatment we detected a selective change in neural substrates of appetitive motivation, consistent with the predominant symptomatic change recorded in psychopathology ratings. In contrast, the fMRI phenotype of negative affect, which is known to characterize disorders of affect involving anxiety and depressiveness as well as individual vulnerability to depression, was unchanged after treatment. These findings suggest that IFN may induce an affective syndrome through a mechanism involving down-regulation of appetitive motivation."	"First Report of Bilateral External Auditory Canal Cochlin Aggregates (&quot;Cochlinomas&quot;) with Multifocal Amyloid-Like Deposits, Associated with Sensorineural Hearing Loss and a Novel Genetic Variant in COCH Encoding Cochlin. Pathogenic variants in COCH, encoding cochlin, cause DFNA9 deafness disorder with characteristic histopathologic findings of cochlin deposits in the inner and middle ears. Here, we present the first case of deafness associated with bilateral external auditory canal (EAC) cochlin deposits, previously unreported evidence suggestive of cochlin-derived amyloid formation, and a novel COCH variant. A 54-year-old woman presented with progressive sensorineural hearing loss and bilateral EAC narrowing by subcutaneous thickening. Excision and histologic evaluation of tissue from both EACs showed paucicellular eosinophilic aggregates containing multiple Congo red-positive foci with yellow and green birefringence under crossed polarization light microscopy. Mass spectrometry performed on both the Congo red-positive and Congo red-negative areas identified cochlin as the most abundant protein, as well as a low abundance of universal amyloid signature peptides only in the Congo red-positive areas. Peptides indicative of a canonical amyloid type were not detected. Electron microscopy showed haphazard, branched microfibrils (3-7 nm in diameter) consistent with cochlin, as well as swirling fibrils (10-24 nm in diameter) reminiscent of amyloid fibrils. Cochlin immunohistochemical staining showed positivity throughout the aggregates. Sequencing of the entire COCH gene coding region from the patient's blood revealed a novel variant resulting in a non-conservative amino acid substitution of isoleucine to phenylalanine (c.1621A&gt;T, p.I541F) in the vWFA2 domain at the protein's C-terminus. Our findings reveal a new pathologic manifestation of cochlin, raise the possibility of previously undescribed cochlin-derived amyloid formation, and highlight the importance of thoroughly investigating all aggregative tissue findings in the practice of diagnostic pathology."	"Health-related quality of life and neurocognitive functioning with lomustine-temozolomide versus temozolomide in patients with newly diagnosed, MGMT-methylated glioblastoma (CeTeG/NOA-09): a randomised, multicentre, open-label, phase 3 trial. The CeTeG/NOA-09 trial showed significantly longer overall survival with combined lomustine-temozolomide therapy compared with standard temozolomide for patients with glioblastoma with methylated MGMT promoter. The trial also aimed to investigate the effect of lomustine-temozolomide therapy on health-related quality of life (HRQOL) and neurocognitive function, which we report here. In this randomised, multicentre, open-label, phase 3 trial, newly diagnosed, chemoradiotherapy-naive patients with MGMT-methylated glioblastoma, aged 18-70 years, with a Karnofsky performance score of 70% or higher, were recruited and enrolled at 17 university hospitals in Germany. Patients received standard radiotherapy (60 Gy) and were randomly assigned (1:1, stratified by centre by allocating complete blocks of six to a centre, without masking) to either six 6-week courses of oral combined lomustine (100 mg/m<sup>2</sup> on day 1) plus temozolomide (100-200 mg/m<sup>2</sup> on days 2-6) or standard oral temozolomide (75 mg/m<sup>2</sup> daily during radiotherapy plus six 4-week courses of temozolomide [150-200 mg/m<sup>2</sup>] on days 1-5, every 4 weeks). The primary endpoint was overall survival. HRQOL, assessed using the European Organisation for Research and Treatment of Cancer (EORTC) quality of life questionnaire core-30 and the EORTC brain cancer module (BN20); and neurocognitive function, assessed using the Mini Mental State Examination (MMSE), plus a neurocognitive test battery (NOA-07), including Trail Making Test A and B (TMT-A and B), working memory tests, and tests for lexical (Controlled Oral Word Association [COWA]) and semantic verbal fluency, were secondary endpoints analysed in the modified intention-to-treat population (mITT; all randomly assigned patients who received at least one dose of study chemotherapy). We used linear mixed-model analyses to investigate differences between treatment groups regarding HRQOL (clinically relevant ≥10 points) and MMSE scores (clinically relevant ≥3 points). The trial is registered with ClinicalTrials.gov, NCT01149109. Between June 17, 2011 and April 8, 2014, 141 patients were randomly assigned and 129 patients began treatment and were included in the mITT population (63 in the temozolomide and 66 in the lomustine-temozolomide group). Median follow-up for HRQOL (the item global health) was 19·4 months (IQR 7·8-38·6), for MMSE was 15·3 months (4·1-29·6), and for COWA was 11·0 months (0-27·5). We found no significant impairment regarding any item of HRQOL in the lomustine-temozolomide group (difference between the groups for global health 0·30 [95% CI -0·23 to 0·83]; p=0·26). Differences in MMSE were in favour of the temozolomide group (difference -0·11 [95% CI -0·19 to -0·03]; p=0·0058) but were not clinically relevant (1·76/30 points over 4 years). We found no significant difference between the groups in any subtest of the neurocognitive test battery (difference for COWA 0·04 [95% CI -0·01 to 0·09]; p=0·14). The absence of systematic and clinically relevant changes in HRQOL and neurocognitive function combined with the survival benefit of lomustine-temozolomide versus temozolomide alone suggests that a long-term net clinical benefit exists for patients with newly diagnosed glioblastoma with methylation of the MGMT promoter and supports the use of lomustine-temozolomide as a treatment option for these patients. German Federal Ministry of Education and Research."	"Effect of arabinogalactan protein complex content on emulsification performance of gum arabic. The emulsification properties of the standard (STD), matured (EM2 and EM10) and fractionated gum arabic samples via phase separation induced molecular fractionation were investigated to find out how the content of arabinogalactan protein (AGP) complex affects the resulting emulsion properties. Phase separation and the accompanying molecular fractionation were induced by mixing with different hydrocolloids including hyaluronan (HA), carboxymethyl cellulose (CMC), and maltodextrin (MD). Increase of AGP content from 11 to 28% resulted in the formation of emulsions with relatively smaller droplet sizes and better stability. Further increase in the AGP content to 41% resulted in the formation of emulsions with larger droplets. In spite of the larger droplets sizes, these emulsions were extremely stable. In addition, the emulsions prepared with GA higher AGP content better stability in the presence of ethanol. The results indicate that AGP content plays a vital role in emulsion stability and droplet size."	"Acute Effects of a Speed Training Program on Sprinting Step Kinematics and Performance. The purpose of this study was to examine the effects of speed training on sprint step kinematics and performance in male sprinters. Two groups of seven elite (best 100-m time: 10.37 ± 0.04 s) and seven sub-elite (best 100-m time: 10.71 ± 0.15 s) sprinters were recruited. Sprint performance was assessed in the 20 m (flying start), 40 m (standing start), and 60 m (starting block start). Step kinematics were extracted from the first nine running steps of the 20-m sprint using the Opto-Jump-Microgate system. Explosive power was quantified by performing the CMJ, standing long jump, standing triple jump, and standing five jumps. Significant post-test improvements (p &lt; 0.05) were observed in both groups of sprinters. Performance improved by 0.11 s (elite) and 0.06 s (sub-elite) in the 20-m flying start and by 0.06 s (elite) and 0.08 s (sub-elite) in the 60-m start block start. Strong post-test correlations were observed between 60-m block start performance and standing five jumps (SFJ) in the elite group and between 20-m flying start and 40-m standing start performance and standing long jump (SLJ) and standing triple jump (STJ) in the sub-elite group. Speed training (ST) shows potential in the reduction of step variability and as an effective short-term intervention program in the improvement of sprint performance."	"Hearing loss in inherited peripheral neuropathies: Molecular diagnosis by NGS in a French series. The most common inherited peripheral neuropathy is Charcot-Marie-Tooth disease (CMT), with a prevalence of 1/2500. Other symptoms can be associated to the condition, such as hearing loss. Currently, no global hearing impairment assessment has been determined, and the physiopathology is not well known. The aim of the study was to analyze among a French series of 3,412 patients with inherited peripheral neuropathy (IPN), the ones who also suffer from hearing loss, to establish phenotype-genotype correlations. An NGS strategy for IPN one side and nonsyndromic hearing loss (NSHL) on the other side, were performed. Hearing loss (HL) was present in only 44 patients (1.30%). The clinical data of 27 patients were usable. Demyelinating neuropathy was diagnosed in 15 cases and axonal neuropathy in 12 cases. HL varied from mild to profound. Five cases of auditory neuropathy were noticed. Diagnosis was made for 60% of these patients. Seven novel pathogenic variants were discovered in five different genes: PRPS1; MPZ; SH3TC2; NEFL; and ABHD12. Two patients with PMP22 variant, had also an additional variant in COCH and MYH14 respectively. No pathogenic variant was found at the DFNB1 locus. Genotype-phenotype correlations do exist, especially with SH3TC2, PRPS1, ABHD12, NEFL, and TRPV4. Involvement of PMP22 is not enough to explain hearing loss in patients suffering from IPN. HL can be due to cochlear impairment and/or auditory nerve dysfunction. HL is certainly underdiagnosed, and should be evaluated in every patient suffering from IPN."	"Audiovestibular Phenotypes and Advanced Magnetic Resonance Imaging Features of Cochlin Gene Mutation Carriers. To describe clinical and imaging findings in a group of patients affected by nonsyndromic deafness A9 (DFNA9), using advanced magnetic resonance imaging (MRI) with 3-dimensional (3D) fluid-attenuated inversion recovery (FLAIR) sequence. A retrospective case review was conducted in a tertiary referral center in Italy. Four sequential adult DFNA9-affected patients, who had undergone MRI at our Department between January 2017 and June 2018, were enrolled (male = 2, female = 2; median age: 65.6 years; 8 diseased ears analyzed). Three patients were relatives; the fourth was unrelated. The main outcome measures - age, sex, records of audiological and vestibular testing, genetic assessment, MRI findings - were analyzed. All subjects suffered from bilateral progressive sensorineural hearing loss, more severely at the high frequencies and with a typical clinical pattern of bilateral chronic degenerative cochleovestibular deficit. Aural fullness was reported at the onset of the disease. All patients revealed a pathogenic heterozygous mutation in the Limulus factor C, Coch-5b2 and Lgl1 domain of cochlin. None of the patients showed a significant vestibular and cochlear endolymphatic hydrops at MRI, while high bilateral contrast enhancement on 4-h delayed postcontrast 3D FLAIR sequence was observed in all ears. Increased perilymph enhancement on 4-h delayed postcontrast 3D FLAIR sequence is the common imaging feature of DFNA9 ears, suggesting that blood-labyrinthine barrier breakdown may play the main role in the pathophysiology of this disease. Significant hydrops has been excluded by MRI. This finding might be clinically useful in differentiating DFNA9 disease from other pathologies with similar clinical findings like Ménière's disease."	"Glucagon lowers glycemia when β-cells are active. Glucagon and insulin are commonly believed to have counteracting effects on blood glucose levels. However, recent studies have demonstrated that glucagon has a physiologic role to activate β-cells and enhance insulin secretion. To date, the actions of glucagon have been studied mostly in fasting or hypoglycemic states, yet it is clear that mixed-nutrient meals elicit secretion of both glucagon and insulin, suggesting that glucagon also contributes to glucose regulation in the postprandial state. We hypothesized that the elevated glycemia seen in the fed state would allow glucagon to stimulate insulin secretion and reduce blood glucose. In fact, exogenous glucagon given under fed conditions did robustly stimulate insulin secretion and lower glycemia. Exogenous glucagon given to fed Gcgr:Glp1rβcell-/- mice failed to stimulate insulin secretion or reduce glycemia, demonstrating the importance of an insulinotropic glucagon effect. The action of endogenous glucagon to reduce glycemia in the fed state was tested with administration of alanine, a potent glucagon secretagogue. Alanine raised blood glucose in fasted WT mice or fed Gcgr:Glp1rβcell-/- mice, conditions where glucagon is unable to stimulate β-cell activity. However, alanine given to fed WT mice produced a decrease in glycemia, along with elevated insulin and glucagon levels. Overall, our data support a model in which glucagon serves as an insulinotropic hormone in the fed state and complements rather than opposes insulin action to maintain euglycemia."	"Cochlear involvement in patients with systemic autoimmune rheumatic diseases: a clinical and laboratory comparative study. Inner ear involvement has been reported in systemic rheumatic disease while detection of cochlin-specific antibodies has been reported in patients with idiopatic sensorineural hearing loss, suggesting cochlin's strong link to autoimmune hearing loss. The aim of this cross-sectional study was to calculate the prevalence of sensorineural hearing loss (SNHL) in patients with systemic rheumatic diseases, and to investigate any potential correlation with human antibodies to cochlin. Patients with rheumatoid arthritis (RA), systemic lupus erythematosus (SLE), Sjogren's syndrome (SS) and systemic sclerosis (SSc) according to the criteria of American College of Rheumatology were included in the study. All patients underwent a complete ear-nose-throat physical examination and audiological evaluation with pure tone audiometry and impedance audiometry. Pure tone average was calculated, taking as a starting point the hearing loss in dB according to the recommendation 02/1 of &quot;Bureau International d' Audiophonologie&quot; (BIAP) so as an average hearing threshold value. Sera of all patients were tested for the presence of IgG antibodies to human cochline (COCH-IgG). Sex and age-matched healthy subjects were included as controls to each group. A total of 133 patients were studied; 60 with RA, 41 with SLE, 24 with SS and 8 with SSc. 61.4% of patients reported vertigo, 41% hyperacousis, 39% hearing loss, 38% tinnitus, 37.9% headache and 2.1% sensation of ear pressure with unremarkable otoscopy. The prevalence of SNHL calculated for patients affected by RA, SLE, SS and SSc was 66.6%, 31.71%, 54.17%, and 75% respectively. The calculated average hearing thresholds value in RA was increased in comparison to SLE (p &lt; 0.05). In addition it was also higher in patients with RA and secondary SS, in comparison to RA patients (p &gt; 0.05). There was statistically significant correlation of average hearing threshold with disease activity score 28 (DAS28) in RA, but no correlation observed with disease activity index (SLEDAI) in SLE. COCH-IgG antibodies were detected in only two samples. The results were compared with those of their respective sex and age-matched healthy subjects. Our study revealed increased prevalence of SNHL in patients with systemic autoimmune rheumatic disease but no correlation of hearing loss with COCHIgG antibodies. The mechanism of inner ear damage remains unknown; thus, additional prospective studies will be needed to elucidate its pathogenesis."	"Genetic Causes of Inner Ear Anomalies: a Review from the Turkish Study Group for Inner Ear Anomalies Inner ear anomalies diagnosed using a radiological study are detected in almost 30% of cases with congenital or prelingual-onset sensorineural hearing loss. Inner ear anomalies can be isolated or occur along with a part of a syndrome involving other systems. Although astonishing progress has been made in research aimed at revealing the genetic causes of hearing loss in the past few decades, only a few genes have been linked to inner ear anomalies. The aim of this review is to discuss the known genetic causes of inner ear anomalies. Identifying the genetic causes of inner ear anomalies is important for guiding clinical care that includes empowered reproductive decisions provided to the affected individuals. Furthermore, understanding the molecular underpinnings of the development of the inner ear in humans is important to develop novel treatment strategies for people with hearing loss."	"Novel Mutations in KCNQ4, LHFPL5 and COCH Genes in Iranian Families with Hearing Impairment. Hearing loss (HL) is the most common sensory deficit in humans, and genetic factors contribute to about half of the cases. With 112 causative genes identified so far and a disproportionate share of the genes within different ethnic groups, HL has proven to be quite heterogeneous. Twenty Iranian families having at least 2 children with hereditary HL were initially verified to be GJB2-negative and were then subjected to whole exome sequencing (WES). Sanger sequencing was used to confirm segregation of the variant identified in each family. In 3 families, WES revealed 3 novel variants in KCNQ4, LHFPL5 and COCH genes. The KCNQ4 gene (DFNA2A) encodes a potassium channel (KV7.4) and the heterozygous variant identified (c.1647C&gt;G, p.F549L) resulted in the substitution of Phe549 residing in the KV7.4 cytoplasmic region. The homozygous variant (c.34A&gt;T, p.K12X) was identified in the LHFPL5 gene (DFNB67) which encodes a transmembrane protein, and another variant in a homozygous state (c.116T&gt;A, p.L39X) was identified in the COCH gene which encodes a secretory protein. Pathogenic variants in the COCH gene are associated with late onset autosomal dominant hearing loss (DFNA9) but the affected individuals displayed early onset HL with a recessive mode of inheritance. The 16% contribution of GJB2 to HL in the Iranian population necessitates the discovery of the remaining causal factors. This study is the first to report KCNQ4 and COCH related HL in the Iranian population and the second study, globally, to report HL due to biallelic inactivation of the COCH gene."	"Cognitive Function in Acquired Bilateral Vestibulopathy: A Cross-Sectional Study on Cognition, Hearing, and Vestibular Loss. Several studies have demonstrated cognitive deficits in patients with bilateral vestibulopathy (BVP). So far, little attention has been paid to the hearing status of vestibular patients when evaluating their cognition. Given the well-established link between sensorineural hearing loss (SNHL) and cognitive decline and the high prevalence of SNHL in BVP patients, it is therefore uncertain if the cognitive deficits in BVP patients are solely due to their vestibular loss or might be, partially, explained by a concomitant SNHL. To evaluate the link between cognition, hearing, and vestibular loss in BVP patients. Prospective cross-sectional analysis of cognitive performance in patients with BVP and control participants without vestibular loss. Both groups included subjects with a variety of hearing (dys)function. Cognition was assessed by means of the Repeatable Battery for the Assessment of Neuropsychological Status for Hearing Impaired Individuals (RBANS-H). Sixty-four BVP patients were evaluated and compared with 83 control participants. For each subscale and the totale RBANS-H scale a multiple linear regression model was fitted with the following variables: vestibular loss, hearing loss, age, gender, and education. Hearing loss seemed to be associated with worse outcome on the total RBANS-H scale and subscales immediate memory and language. Vestibular loss, on the other hand, was linked to worse performance on the attention subscale of the RBANS-H. Furthermore, we did not observe a correlation between saccular function and cognition. This study has found general cognitive deficits in a large sample size of BVP patients. Multiple linear regression models revealed that both vestibular and hearing dysfunction were associated with different subscales of the cognitive test battery, the RBANS-H. Whereas hearing loss was associated with worse performance on total RBANS-H score, immediate memory and language, vestibular loss was observed to negatively affect attention performance."	"Financial incentives for physical activity in adults: systematic review and meta-analysis. The use of financial incentives to promote physical activity (PA) has grown in popularity due in part to technological advances that make it easier to track and reward PA. The purpose of this study was to update the evidence on the effects of incentives on PA in adults. Medline, PubMed, Embase, PsychINFO, CCTR, CINAHL and COCH. Randomised controlled trials (RCT) published between 2012 and May 2018 examining the impact of incentives on PA. A simple count of studies with positive and null effects ('vote counting') was conducted. Random-effects meta-analyses were also undertaken for studies reporting steps per day for intervention and post-intervention periods. 23 studies involving 6074 participants were included (64.42% female, mean age = 41.20 years). 20 out of 22 studies reported positive intervention effects and four out of 18 reported post-intervention (after incentives withdrawn) benefits. Among the 12 of 23 studies included in the meta-analysis, incentives were associated with increased mean daily step counts during the intervention period (pooled mean difference (MD), 607.1; 95% CI: 422.1 to 792.1). Among the nine of 12 studies with post-intervention daily step count data incentives were associated with increased mean daily step counts (pooled MD, 513.8; 95% CI:312.7 to 714.9). Demonstrating rising interest in financial incentives, 23 RCTs were identified. Modest incentives ($1.40 US/day) increased PA for interventions of short and long durations and after incentives were removed, though post-intervention 'vote counting' and pooled results did not align. Nonetheless, and contrary to what has been previously reported, these findings suggest a short-term incentive 'dose' may promote sustained PA."	"How well do we reduce ankle fractures intra-operatively: A retrospective 1 year review using Pettrone's criteria. Ankle ORIF is a common orthopaedic procedure. Assessment of the reduction is often performed by 'eyeballing' the intra-operative images. This study aimed to assess the radiographic reduction of all ankle fracture ORIFs at COCH over a 1-year period using Pettrone's criteria METHOD: Using the trauma database at the COCH all patients admitted for ankle ORIF over a 1 year period (n = 284) were identified. Each patient was retrospectively reviewed, duplicates or non-ankle fractures excluded and data collected on: patient demographics, Lauge-Hansen classification, time from injury to theatre, level of primary surgeon, type of fixation, reduction of medial, lateral or posterior malleolar reduction, syndesmosis reduction, date and satisfaction at last clinic appointment and complications. After exclusions 187 patients were included in the study. The average age of patients was 49 years old (14-93). The most common Lauge-Hansen fracture classifications were SER (51.6% (98)) and PER (29.9% (57)). Registrars were first surgeon in 49.7% (93) of cases. 80% (111 of 139) of medial malleoli were reduced, 90% of lateral malleoli were reduced 11% (21) had residual talar shift. The syndesmosis was reduced in 76.4% (143) of cases. 19% (36) had further operations. There were 35 major complications in 25 (13.4%) patients. Not all malposition of fracture fixation were in the same ankles, 34.2% (64) ankle ORIFs had residual deformity after being fixed. The implications of this study are very important. The authors aim to raise awareness of Pettrone's radiographic criteria of a successful ORIF of the ankle and subsequently improve the mal-reduction rate of post-fixation ankle ORIF."	"Development of a long-acting Fc-fused cocaine hydrolase with improved yield of protein expression. Human butyrylcholinesterase (BChE) is known as a safe and effective protein for detoxification of organophosphorus (OP) nerve agents. Its rationally designed mutants with considerably improved catalytic activity against cocaine, known as cocaine hydrolases (CocHs), are recognized as the most promising drug candidates for the treatment of cocaine abuse. However, it is a grand challenge to efficiently produce active recombinant BChE and CocHs with a sufficiently long biological half-life. In the present study, starting from a promising CocH, known as CocH3 (i.e. A199S/F227A/S287G/A328W/Y332G mutant of human BChE), which has a ~2000-fold improved catalytic activity against cocaine compared to wild-type BChE, we designed an N-terminal fusion protein, Fc(M3)-(PAPAP)2-CocH3, which was constructed by fusing Fc of human IgG1 to the N-terminal of CocH3 and further optimized by inserting a linker between the two protein domains. Without lowering the enzyme activity, Fc(M3)-(PAPAP)2-CocH3 expressed in Chinese hamster ovary (CHO) cells has not only a long biological half-life of 105 ± 7 h in rats, but also a high yield of protein expression. Particularly, Fc(M3)-(PAPAP)2-CocH3 has a ~21-fold increased protein expression yield in CHO cells compared to CocH3 under the same experimental conditions. Given the observations that Fc(M3)-(PAPAP)2-CocH3 has not only a high catalytic activity against cocaine and a long biological half-life, but also a high yield of protein expression, this new protein entity reported in this study would be a more promising candidate for therapeutic treatment of cocaine overdose and addiction."	"Human TLR8 Senses RNA From Plasmodium falciparum-Infected Red Blood Cells Which Is Uniquely Required for the IFN-γ Response in NK Cells. During blood-stage malaria, the innate immune system initiates the production of pro-inflammatory cytokines, including IFN-γ, that are critical to host defense and responsible for severe disease. Nonetheless, the innate immune pathways activated during this process in human malaria remain poorly understood. Here, we identify TLR8 as an essential sensor of Plasmodium falciparum-infected red blood cells (iRBC). In human immune cells, iRBC and RNA purified from iRBC were detected by TLR8 but not TLR7 leading to IFN-γ induction in NK cells. While TLR7 and 9 have been shown to lead to IFN-γ in mice, our data demonstrate that TLR8 was the only TLR capable of inducing IFN-γ release in human immune cells. This unique capacity was mediated by the release of IL-12p70 and bioactive IL-18 from monocytes, the latter via a hitherto undescribed pathway. Altogether, our data are the first reported activation of TLR8 by protozoan RNA and demonstrate both the critical role of TLR8 in human blood-stage malaria and its unique functionality in the human immune system. Moreover, our study offers important evidence that mouse models alone may not be sufficient to describe the human innate immune response to malaria."	"Synthesis and Gas-Permeation Characterization of a Novel High-Surface Area Polyamide Derived from 1,3,6,8-Tetramethyl-2,7-diaminotriptycene: Towards Polyamides of Intrinsic Microporosity (PIM-PAs). A triptycene-based diamine, 1,3,6,8-tetramethyl-2,7-diamino-triptycene (TMDAT), was used for the synthesis of a novel solution-processable polyamide obtained via polycondensation reaction with 4,4'-(hexafluoroisopropylidene)bis(benzoic acid) (6FBBA). Molecular simulations confirmed that the tetrasubstitution with ortho-methyl groups in the triptycene building block reduced rotations around the C⁻N bond of the amide group leading to enhanced fractional free volume. Based on N₂ sorption at 77 K, 6FBBA-TMDAT revealed microporosity with a Brunauer⁻Emmett⁻Teller (BET) surface area of 396 m² g<sup>-1</sup>; to date, this is the highest value reported for a linear polyamide. The aged 6FBBA-TMDAT sample showed moderate pure-gas permeabilities (e.g., 198 barrer for H₂, ~109 for CO₂, and ~25 for O₂) and permselectivities (e.g., αH₂/CH₄ of ~50) that position this polyamide close to the 2008 H₂/CH₄ and H₂/N₂ upper bounds. CO₂⁻CH₄ mixed-gas permeability experiments at 35 °C demonstrated poor plasticization resistance; mixed-gas permselectivity negatively deviated from the pure-gas values likely, due to the enhancement of CH₄ diffusion induced by mixing effects."	"Cleaved Cochlin Sequesters Pseudomonas aeruginosa and Activates Innate Immunity in the Inner Ear. In the inner ear, endolymph fluid surrounds the organ of Corti, which is important for auditory function; notably, even slight environmental changes mediated by trauma or infection can have significant consequences. However, it is unclear how the immune response is modulated in these tissues. Here, we report the local immune surveillance role of cleaved cochlin LCCL (Limulus factor C, Cochlin, and Lgl1) during Pseudomonas aeruginosa infection in the cochlea. Upon infection, the LCCL domain is cleaved from cochlin and secreted into the perilymph. This cleaved fragment sequesters infiltrating bacteria in the scala tympani and subsequently recruits resident immune cells to eliminate the bacteria. Importantly, hearing loss in a cochlin knockout mouse model is remedied by treatment with a cochlin LCCL peptide. These findings suggest cleaved cochlin LCCL constitutes a critical factor in innate immunity and auditory function and may be a potential therapeutic target to treat chronic otitis media-induced hearing loss."	"Bone Tissue Engineering in a Perfusion Bioreactor Using Dexamethasone-Loaded Peptide Hydrogel. The main goal of this study was the formation of bone tissue using dexamethasone (DEX)-loaded [COCH₃]-RADARADARADARADA-[CONH₂] (RADA 16-I) scaffold that has the ability to release optimal DEX concentration under perfusion force. Bone-marrow samples were collected from three patients during a hip arthroplasty. Human mesenchymal stem cells (hMSCs) were isolated and propagated in vitro in order to be seeded on scaffolds made of DEX-loaded RADA 16-I hydrogel in a perfusion bioreactor. DEX concentrations were as follows: 4 × 10<sup>-3</sup>, 4 × 10<sup>-4</sup> and 4 × 10<sup>-5</sup> M. After 21 days in a perfusion bioreactor, tissue was analyzed by scanning electron microscopy (SEM) and histology. Markers of osteogenic differentiation were quantified by real-time polymerase chain reaction (RT-PCR) and immunocytochemistry. Minerals were quantified and detected by the von Kossa method. In addition, DEX release from the scaffold in a perfusion bioreactor was assessed. The osteoblast differentiation was confirmed by the expression analysis of osteoblast-related genes (alkaline phosphatase (ALP), collagen I (COL1A1) and osteocalcin (OC). The hematoxylin/eosin staining confirmed the presence of cells and connective tissue, while SEM revealed morphological characteristics of cells, extracellular matrix and minerals-three main components of mature bone tissue. Immunocytochemical detection of collagen I is in concordance with given results, supporting the conclusion that scaffold with DEX concentration of 4 × 10<sup>-4</sup> M has the optimal engineered tissue morphology. The best-engineered bone tissue is produced on scaffold loaded with 4 × 10<sup>-4</sup> M DEX with a perfusion rate of 0.1 mL/min for 21 days. Differentiation of hMSCs on DEX-loaded RADA 16-I scaffold under perfusion force has a high potential for application in regenerative orthopedics."	"A Systematic Review of Controlled Trials of Homeopathy in Bronchial Asthma. Homeopathy is a controversial form of complementary therapy, but is widely practised to treat asthma. The aim of this systematic review is to evaluate the controlled trials of homeopathy in bronchial asthma. Relevant trials published between Jan 1, 1981, and Dec 31, 2016, were considered. Substantive research articles, conference proceedings, and master and doctoral theses were eligible. Methodology was assessed by Jadad's scoring, internal validity by the Coch-rane tool, model validity by Mathie's criteria, and quality of individualization by Saha's criteria. Sixteen trials were eligible. The majority were positive, especially those testing complex formulations. Methodological quality was diverse; 8 trials had &quot;high&quot; risk of bias. Model validity and individualization quality were compromised. Due to both qualitative and quantitative inadequacies, proofs supporting individualized homeopathy remained inconclusive. The trials were positive (evidence level A), but inconsistent, and suffered from methodological heterogeneity, &quot;high&quot; to &quot;uncertain&quot; risk of bias, incomplete study reporting, inadequacy of independent replications, and small sample sizes. Homöopathie ist eine kontrovers diskutierte Methode der Komplementärmedizin, die in der Asthmabehandlung dennoch häufig eingesetzt wird. Mit der vorliegenden systematischen Übersichtsarbeit sollen die kontrollierten Studien zur Homöopathie bei Asthma bronchiale bewertet werden. Dabei wurden relevante Studien, die zwischen dem 1. Januar 1981 und dem 31. Dezember 2016 veröffent­licht worden waren, berücksichtigt. Stichhaltige wissenschaftliche Artikel, Kongressbände sowie Master- und Doktorarbeiten wurden in die Untersuchung eingeschlossen. Die Bewertung der Methodik erfolgte anhand der Jadad-Skala sowie durch Beurteilung der internen Validität mittels Cochrane-Tool, der Modellvalidität gemäß den Mathie-Kriterien und der Qualität der Individualisierung entsprechend den Saha-Kriterien. Sechzehn Studien wurden in die Arbeit eingeschlossen. Die meisten kamen zu positiven Ergebnissen, insbesondere jene, die komplexe Formulierungen untersuchten. Hinsichtlich der methodischen Qualität unterschieden sich die Studien, und 8 Studien wiesen ein “hohes” Verzerrungsrisiko auf. Modellvalidität und Qualität der Individualisierung waren eingeschränkt. Aufgrund der qualitativen und quantitativen Unzulänglichkeiten fanden sich keine eindeutigen Hinweise, die die individualisierte Homöopathie stützen. Die Studien fielen positiv (Evidenzklasse A), jedoch inkonsistent, aus und waren durch ihre methodische Heterogenität, ein “hohes” bis “unklares” Verzerrungsrisiko, unvollständige Studienberichte, Unzulänglichkeit der unabhängigen Wiederholungen sowie kleine Stichprobengrößen eingeschränkt."	"A systematic review of hearing and vestibular function in carriers of the Pro51Ser mutation in the COCH gene. The Pro51Ser (P51S) COCH mutation is characterized by a late-onset bilateral sensorineural hearing loss (SNHL) and progressive vestibular deterioration. The aim of this study was to carry out a systematic review of all reported hearing and vestibular function data in P51S COCH mutation carriers and its correlation with age. Scientific databases including Medline, Cochrane Database of Systematic Reviews, Cochrane Central Register of Controlled Trials, ISI Web of Knowledge, and Web of Science were searched to accumulate information about hearing outcome and vestibular function. Eleven genotype-phenotype correlation studies of the P51S COCH variant were identified and analyzed. The SNHL starts at the age of 32.8 years. The Annual Threshold Deterioration is 3 decibel hearing loss (dB HL) per year (1-24 dB HL/year). Profound SNHL was observed at 76 years on average (60-84 years). 136 individual vestibular measurements were collected from 86 carriers. The onset of the vestibular dysfunction was estimated around 34 years (34-40 years), and vestibular deterioration rates were higher than those of the SNHL, with complete bilateral loss observed between 49 and 60 years. Both audiometric and vestibular data were processed with much different methodologies and pre-symptomatic P51S carriers were systematically underrepresented. Further delineation of this correlation would benefit cross-sectional and longitudinal study involving all (pre-symptomatic and symptomatic) P51S carriers."	"Lomustine-temozolomide combination therapy versus standard temozolomide therapy in patients with newly diagnosed glioblastoma with methylated MGMT promoter (CeTeG/NOA-09): a randomised, open-label, phase 3 trial. There is an urgent need for more effective therapies for glioblastoma. Data from a previous unrandomised phase 2 trial suggested that lomustine-temozolomide plus radiotherapy might be superior to temozolomide chemoradiotherapy in newly diagnosed glioblastoma with methylation of the MGMT promoter. In the CeTeG/NOA-09 trial, we aimed to further investigate the effect of lomustine-temozolomide therapy in the setting of a randomised phase 3 trial. In this open-label, randomised, phase 3 trial, we enrolled patients from 17 German university hospitals who were aged 18-70 years, with newly diagnosed glioblastoma with methylated MGMT promoter, and a Karnofsky Performance Score of 70% and higher. Patients were randomly assigned (1:1) with a predefined SAS-generated randomisation list to standard temozolomide chemoradiotherapy (75 mg/m<sup>2</sup> per day concomitant to radiotherapy [59-60 Gy] followed by six courses of temozolomide 150-200 mg/m<sup>2</sup> per day on the first 5 days of the 4-week course) or to up to six courses of lomustine (100 mg/m<sup>2</sup> on day 1) plus temozolomide (100-200 mg/m<sup>2</sup> per day on days 2-6 of the 6-week course) in addition to radiotherapy (59-60 Gy). Because of the different schedules, patients and physicians were not masked to treatment groups. The primary endpoint was overall survival in the modified intention-to-treat population, comprising all randomly assigned patients who started their allocated chemotherapy. The prespecified test for overall survival differences was a log-rank test stratified for centre and recursive partitioning analysis class. The trial is registered with ClinicalTrials.gov, number NCT01149109. Between June 17, 2011, and April 8, 2014, 141 patients were randomly assigned to the treatment groups; 129 patients (63 in the temozolomide and 66 in the lomustine-temozolomide group) constituted the modified intention-to-treat population. Median overall survival was improved from 31·4 months (95% CI 27·7-47·1) with temozolomide to 48·1 months (32·6 months-not assessable) with lomustine-temozolomide (hazard ratio [HR] 0·60, 95% CI 0·35-1·03; p=0·0492 for log-rank analysis). A significant overall survival difference between groups was also found in a secondary analysis of the intention-to-treat population (n=141, HR 0·60, 95% CI 0·35-1·03; p=0·0432 for log-rank analysis). Adverse events of grade 3 or higher were observed in 32 (51%) of 63 patients in the temozolomide group and 39 (59%) of 66 patients in the lomustine-temozolomide group. There were no treatment-related deaths. Our results suggest that lomustine-temozolomide chemotherapy might improve survival compared with temozolomide standard therapy in patients with newly diagnosed glioblastoma with methylated MGMT promoter. The findings should be interpreted with caution, owing to the small size of the trial. German Federal Ministry of Education and Research."	"β Cell tone is defined by proglucagon peptides through cAMP signaling. Paracrine interactions between pancreatic islet cells have been proposed as a mechanism to regulate hormone secretion and glucose homeostasis. Here, we demonstrate the importance of proglucagon-derived peptides (PGDPs) for α to β cell communication and control of insulin secretion. Signaling through this system occurs through both the glucagon-like peptide receptor (Glp1r) and glucagon receptor (Gcgr). Loss of PGDPs, or blockade of their receptors, decreases insulin secretion in response to both metabolic and nonmetabolic stimulation of mouse and human islets. This effect is due to reduced β cell cAMP and affects the quantity but not dynamics of insulin release, indicating that PGDPs dictate the magnitude of insulin output in an isolated islet. In healthy mice, additional factors that stimulate cAMP can compensate for loss of PGDP signaling; however, input from α cells is essential to maintain glucose tolerance during the metabolic stress induced by high-fat feeding. These findings demonstrate an essential role for α cell regulation of β cells, raising the possibility that abnormal paracrine signaling contributes to impaired insulin secretion in diabetes. Moreover, these findings support reconsideration of the role for α cells in postprandial glucose control."	"The intestinal intermediate filament network responds to and protects against microbial insults and toxins. The enrichment of intermediate filaments in the apical cytoplasm of intestinal cells is evolutionarily conserved, forming a sheath that is anchored to apical junctions and positioned below the microvillar brush border, which suggests a protective intracellular barrier function. To test this, we used Caenorhabditiselegans, the intestinal cells of which are endowed with a particularly dense intermediate filament-rich layer that is referred to as the endotube. We found alterations in endotube structure and intermediate filament expression upon infection with nematicidal B.thuringiensis or treatment with its major pore-forming toxin crystal protein Cry5B. Endotube impairment due to defined genetic mutations of intermediate filaments and their regulators results in increased Cry5B sensitivity as evidenced by elevated larval arrest, prolonged time of larval development and reduced survival. Phenotype severity reflects the extent of endotube alterations and correlates with reduced rescue upon toxin removal. The results provide in vivo evidence for a major protective role of a properly configured intermediate filament network as an intracellular barrier in intestinal cells. This notion is further supported by increased sensitivity of endotube mutants to oxidative and osmotic stress."	"An ERP study of cross-modal rhyming: Influences of phonology and orthography. In a cross-modal rhyming study with visual pseudoword primes and auditory word targets, we found a typical ERP rhyming effect such that nonrhyming targets elicited a larger N400/N450 than rhyming targets. An orthographic effect was also apparent in the same 350- to 600-ms epoch as the phonological effect: The rhyming effect for targets with rime orthography that did not match their primes' (e.g., tain-&quot;sane&quot;) was smaller over the left hemisphere than the rhyming effect for targets with rime orthography that did match their primes' (e.g., nain-&quot;gain&quot;), although the spellings of the auditory word targets were never explicitly shown. Our results indicate that this cross-modal ERP rhyming effect indexes both phonological and orthographic processing-for auditory stimuli for which no orthography is presented in the task. This pattern of findings is consistent with the notion of coactivation of sublexical orthography and phonology in fluent adult readers as they both read and listen."	"Effect of transcutaneous vagus nerve stimulation on muscle activity in the gastrointestinal tract (transVaGa): a prospective clinical trial. Postoperative ileus (POI) is a common complication after abdominal surgery. Invasive stimulation of the cervical vagus nerve is known to reduce inflammatory response and ameliorated POI after surgery in a mouse model. However, the transcutaneous vagus nerve stimulation (tVNS) is a possible non-invasive approach. In this clinical study, we aimed to investigate the effect of tVNS on the activation of the stomach muscle in humans. Patients requiring open laparotomy were screened for this prospective proof of concept clinical study. After open laparotomy, muscle activity of the stomach was measured by a free running electromyography (EMG) before and during tVNS on the ear. Frequency and amplitude of compound gastric action potentials were the electrophysiological parameters we assessed to reveal the changes in electro motor gastric activity. Gastrin levels as a surrogate marker for vagus nerve activation was analyzed before, 1 and 3 h after tVNS. Fourteen patients were included, no severe adverse events and no medical device related adverse events occurred. tVNS led to significant reduction of action potential frequency and significant elevation of action potential amplitude in the stomach compared to control. Gastrin levels were significantly elevated 3 h after tVNS compared to levels before tVNS. Application of tVNS is a safe and feasible procedure during surgical intervention. Our results provide evidence that tVNS activates efferent visceral vagal fibers. Therefore, this low risk and easy to perform method could be useful to prevent postoperative ileus. DRKS00013340."	"Towards personalized medicine in Ménière's disease. Ménière's disease (MD) represents a heterogeneous group of relatively rare disorders with three core symptoms: episodic vertigo, tinnitus, and sensorineural hearing loss involving 125 to 2,000 Hz frequencies. The majority of cases are considered sporadic, although familial aggregation has been recognized in European and Korean populations, and the search for familial MD genes has been elusive until the last few years. Detailed phenotyping and cluster analyses have found several clinical predictors for different subgroups of patients, which may indicate different mechanisms, including genetic and immune factors. The genes associated with familial MD are COCH, FAM136A, DTNA, PRKCB, SEMA3D, and DPT. At least two mechanisms have been involved in MD: (a) a pro-inflammatory immune response mediated by interleukin-1 beta (IL-1β), tumor necrosis factor alpha (TNFα), and IL-6, and (b) a nuclear factor-kappa B (NF-κB)-mediated inflammation in the carriers of the single-nucleotide variant rs4947296. It is conceivable that microbial antigens trigger inflammation with release of pro-inflammatory cytokines at different sites within the cochlea, such as the endolymphatic sac, the stria vascularis, or the spiral ligament, leading to fluid imbalance with an accumulation of endolymph. Computational integration of clinical and &quot;omics&quot; data eventually should transform the management of MD from &quot;one pill fits all&quot; to precise patient stratification and a personalized approach. This article lays out a proposal for an algorithm for the genetic diagnosis of MD. This approach will facilitate the identification of new molecular targets for individualized treatment, including immunosuppressant and gene therapy, in the near future."	"Complications of percutaneous nephrostomy in a district general hospital. Percutaneous nephrostomy (PCN) is one of the commonest procedures performed. There are currently no European recommendations on the accepted rate of complications. The aim of the present study is to report the complication rate of PCN with the specific emphasis on sepsis and septic shock, the causative organisms, sensitivities to antibiotics, and associated risk factors. Retrospectively collected data on patients undergoing acute or elective PCN at the Department of Radiology, Countess of Chester Hospital (COCH), in the UK between January 2014 and December 2016 were analyzed after the study was approved by Local Audit Department at COCH. A total of 66 patients underwent 90 acute or elective PCNs. Three patients developed major post-PCN complication (two patients developed septic shock and the third suffered a hemorrhagic episode requiring blood transfusion). Nephrostomy tube complications (blockage, leaking, fracturing and kinking of the catheter) occurred in 4 patients. Complications were more common when the PCN was performed out of working hours (71.4% [10/14], and 17.3% [9/52] for PCNs performed within, and out of working hours, respectively: p&lt;0.001). The age of the patients did not seem to correlate with the development of complications (p&lt;0.001). Of all 25 patients, in whom septicemia was diagnosed prior to PCN tube insertion, 12 developed septic shock and 13 had signs of sepsis for longer than 24 h. Fifteen patients had positive urine cultures. The most common organism isolated was Escherichia coli. Blood culture isolates included: Escherichia coli, Eggerthella lenta, Enterococcus, Proteus mirabilis, Pseudomonas aeruginosa and Streptococcus pneumonia. Our complication rates were within United States proposed target ranges. Our data may help to serve as a baseline for outcome targets in the European centres."	"Genetic Aetiology of Nonsyndromic Hearing Loss in Moravia-Silesia. Hearing loss is the most common sensory deficit in humans. The aim of this study was to clarify the genetic aetiology of nonsyndromic hearing loss in the Moravian-Silesian population of the Czech Republic. This study included 200 patients (93 males, 107 females, mean age 16.9 years, ranging from 4 months to 62 years) with nonsyndromic sensorineural hearing loss. We screened all patients for mutations in GJB2 and the large deletion del(GJB6-D13S1830). We performed further screening for additional genes (SERPINB6, TMIE, COCH, ESPN, ACTG1, KCNQ4, and GJB3) with Sanger sequencing on a subset of patients that were negative for GJB2 mutations. We detected biallelic GJB2 mutations in 44 patients (22%). Among these patients, 63.6%, 9.1% and 2.3% exhibited homozygous c.35delG, p.Trp24*, and p.Met34Thr mutations, respectively. The remaining 25% of these patients exhibited compound heterozygous c.35delG, c.-23+1G&gt;A, p.Trp24*, p.Val37Ile, p.Met34Thr, p.Leu90Pro, c.235delC, c.313_326del14, p.Ser139Asn, and p.Gly147Leu mutations. We found a monoallelic GJB2 mutation in 12 patients (6.6%). We found no pathogenic mutations in the other tested genes. Conclusions: One fifth of our cohort had deafness related to GJB2 mutations. The del(GJB6-D13S1830), SERPINB6, TMIE, COCH, ESPN, ACTG1, GJB3, and KCNQ4 mutations were infrequently associated with deafness in the Moravian-Silesian population. Therefore, we suggest that del(GJB6-D13S1830) testing should be performed only when patients with deafness carry the monoallelic GJB2 mutation."	"Contextual factors associated with life-space mobility in community-dwelling older adults based on International Classification of Functioning, Disability and Health: protocol for a systematic review. Mobility decline compromises functionality and quality of life in old age. Life-Space Assessment (LSA) evaluates mobility considering interaction between person and environment. The International Classification of Functioning, Disability and Health (ICF) is a reference to identify and categorise the personal and environmental contextual factors associated to the LSA. Our objective is identifying contextual factors that may influence life-space mobility of older community-dwelling adults based on ICF. A systematic review of literature will be performed to identify studies published between 1 January 2001 and 10 May 2017 which investigates life-space mobility among older adults. Keywords will be entered into the electronic databases of MEDLINE (PubMed), EMBASE (OVID), CINHAL (EBSCO), Cochrane Central Register of Controlled Trials Cochrane Central (OVID), PsycINFO (EBSCO) and COCH (OVID). Five investigators will work on search databases and standardised screening of the articles. Mobility predictors will be separated into personal and environmental aspects, according to the ICF model. The results will be reported according to the Preferred Reporting Items for Systematic Reviews and Meta-Analyses statement, and then a meta-analysis will be performed, if applicable. Knowledge about life-space mobility in community-dwelling older adults by examining related risk and protective aspects may help practitioners better approach older adults' mobility and prevent their decline in old age. Furthermore, researchers will have more clues for investigations into factors related to life-space mobility. CRD42017064552."	"Direct RIG-I activation in human NK cells induces TRAIL-dependent cytotoxicity toward autologous melanoma cells. Activation of the innate immune receptor retinoic acid-inducible gene I (RIG-I) by its specific ligand 5'-triphosphate RNA (3pRNA) triggers anti-tumor immunity, which is dependent on natural killer (NK) cell activation and cytokine induction. However, to date, RIG-I expression and the functional consequences of RIG-I activation in NK cells have not been examined. Here, we show for the first time the expression of RIG-I in human NK cells and their activation upon RIG-I ligand (3pRNA) transfection. 3pRNA-activated NK cells killed melanoma cells more efficiently than NK cells activated by type I interferon. Stimulation of RIG-I in NK cells specifically increased the surface expression of membrane-bound TNF-related apoptosis-inducing ligand (TRAIL) on NK cells, while activated NK cell receptors were not affected. RIG-I-induced membrane-bound TRAIL initiated death-receptor-pathway-mediated apoptosis not only in allogeneic but also in autologous human leukocyte antigen (HLA) class I-positive and HLA class I-negative melanoma cells. These results identify the direct activation of RIG-I in NK cells as a novel mechanism for how RIG-I can trigger enhanced NK cell killing of tumor cells, underscoring the potential of RIG-I activation for tumor immunotherapy."	"A Picture Is Worth… Both Spelling and Sound. In an event-related potential (ERP) study using picture stimuli, we explored whether spelling information is co-activated with sound information even when neither type of information is explicitly provided. Pairs of picture stimuli presented in a rhyming paradigm were varied by both phonology (the two images in a pair had either rhyming, e.g., boat and goat, or non-rhyming, e.g., boat and cane, labels) and orthography (rhyming image pairs had labels that were either spelled the same, e.g., boat and goat, or not spelled the same, e.g., brain and cane). Electrophysiological picture rhyming (sound) effects were evident in terms of both N400/N450 and late effect amplitude: Non-rhyming images elicited more negative waves than rhyming images. Remarkably, the magnitude of the late ERP rhyming effect was modulated by spelling - even though words were neither explicitly seen nor heard during the task. Moreover, both the N400/N450 and late rhyming effects in the spelled-the-same (orthographically matched) condition were larger in the group with higher scores (by median split) on a standardized measure of sound awareness. Overall, the findings show concomitant meaning (semantic), sound (phonological), and spelling (orthographic) activation for picture processing in a rhyming paradigm, especially in young adults with better reading skills. Not outwardly lexical but nonetheless modulated by reading skill, electrophysiological picture rhyming effects may be useful for exploring co-activation in children with dyslexia."	"MtNODULE ROOT1 and MtNODULE ROOT2 Are Essential for Indeterminate Nodule Identity. Symbiotic interactions between legume plants and rhizobia result in the formation of nitrogen-fixing nodules, but the molecular actors and the mechanisms allowing for the maintenance of nodule identity are poorly understood. Medicago truncatula NODULE ROOT1 (MtNOOT1), Pisum sativum COCHLEATA1 (PsCOCH1), and Lotus japonicus NOOT-BOP-COCH-LIKE1 (LjNBCL1) are orthologs of Arabidopsis (Arabidopsis thaliana) AtBLADE-ON-PETIOLE1/2 and are members of the NBCL gene family, which has conserved roles in plant development and is essential for indeterminate and determinate nodule identity in legumes. The loss of function of MtNOOT1, PsCOCH1, and LjNBCL1 triggers a partial loss of nodule identity characterized by the development of ectopic roots arising from nodule vascular meristems. Here, we report the identification and characterization of a second gene involved in regulating indeterminate nodule identity in M. truncatula, MtNOOT2MtNOOT2 is the paralog of MtNOOT1 and belongs to a second legume-specific NBCL subclade, the NBCL2 clade. MtNOOT2 expression was induced during early nodule formation, and it was expressed primarily in the nodule central meristem. Mtnoot2 mutants did not present any particular symbiotic phenotype; however, the loss of function of both MtNOOT1 and MtNOOT2 resulted in the complete loss of nodule identity and was accompanied by drastic changes in the expression of symbiotic, defense, and root apical meristem marker genes. Mtnoot1 noot2 double mutants developed only nonfixing root-like structures that were no longer able to host symbiotic rhizobia. This study provides original insights into the molecular basis underlying nodule identity in legumes forming indeterminate nodules."	"Genes important for otoneurological diagnostic purposes - current status and future prospects. This review focuses on the current knowledge of the genes responsible for non-syndromic hearing loss that can be useful for otoneurological diagnostic purposes. From among a large number of genes that have been associated with non-syndromic hearing impairment, we selected several best-known genes, including the COCH gene, GJB2, GJB6 and SLC26A4, and we describe their role and effects of mutations and prevalence of mutations in various populations. Next, we focus on genes associated with tinnitus. Important areas for further research include assessment of genes potentially involved in pathophysiology of tinnitus and vertigo, which have traditionally been considered as being of otological aetiology, while advances in neuroimaging techniques have increasingly shifted studies toward neurological correlations. Geni importanti per la diagnostica otoneurologica: stato dell’arte e prospettive future. La presente review tratta lo stato dell’arte nella conoscenza dei geni responsabili delle ipoacusie non sindromiche, che potrebbero risultare utili a scopo diagnostico nell’ambito della otoneurologia. Tra i diversi geni identificati in associazione ad un calo dell’udito di tipo non sindromico, ne sono stati selezionati alcuni tra i più noti, come il gene COCH, GJB2, GJB6 e SLC26A4. Di questi vengono descritti il ruolo, l’effetto delle mutazioni a carico e la prevalenza delle stesse mutazioni in diverse popolazioni. Successivamente ci si focalizza sui geni associati al tinnito. Una valida area di ricerca per il futuro è infatti data dall’identificazione di geni potenzialmente coinvolti nella fisiopatologia del tinnito e della vertigine, condizioni tradizionalmente considerate di eziologia otologica, ma che, a seguito di un avanzamento delle tecniche di neuroimaging, si è sempre più propensi a correlare con la sfera neurologica."	"Bowlegs and Intensive Football Training in Children and Adolescents. In many countries around the world, football (association football, or &quot;soccer&quot; predominantly in North America) is the sport most commonly played by children and adolescents. It is widely thought that football players are more likely to develop genu varum (bowlegs); an association with knee arthritis also seems likely. The goals of this systematic review and meta-analysis are to provide an overview of the available evidence on genu varum after intensive soccer training in childhood and adolescence, and to discuss the possible pathogenetic mechanisms. We systematically searched the PubMed, Medline, Embase, and Coch- rane Library databases for studies of the relation between leg axis development and intensive football playing during the growing years. Controlled studies employing the intercondylar distance (ICD) as the target variable were evaluated in a meta-analysis, with the mean difference as a measure of effect strength. This meta-analysis included 3 studies with a total of 1344 football players and 1277 control individuals. All three studies individually showed a signifi- cant difference in the mean ICD values of the two groups. The pooled effect esti- mator for the mean difference was 1.50 cm (95% confidence interval [0.53; 2.46]). Two further studies that could not be included in the meta-analysis had similar con- clusions. Asymmetrical, varus muscle forces and predominantly varus stress on the osseous growth plates neighboring the knee joint, especially during the prepubertal growth spurt, seem to be the cause of this phenomenon. Intensive soccer playing during the growing years can promote the devel- opment of bowlegs (genu varum) and, in turn, increase the risk of knee arthritis. Phy- sicians should inform young athletes and their parents of this if asked to advise about the choice of soccer as a sport for intensive training. It cannot be concluded, however, that football predisposes to bowlegs when played merely as a leisure activity."	"Dissociating frequency and animacy effects in visual word processing: An fMRI study. In an fMRI investigation of the neural representation of word frequency and animacy, participants read high- and low-frequency words within living and nonliving semantic categories. Both temporal (left fusiform gyrus) and parietal (left supramarginal gyrus) activation patterns differentiated between animal and tool words after controlling for frequency. Activation patterns in a smaller ventral temporal region, a subset of the voxels identified in the animacy contrast, differentiated between high- and low-frequency words after controlling for animacy. Activation patterns in the larger temporal region distinguished between high- and low-frequency words just as well as patterns within the smaller region. However, in analyses by animacy category, frequency effects in these temporal regions were significant only for tool, not for animal, words. Thus, lexical word frequency information and semantic animacy category information are conjointly represented in left fusiform gyrus activation patterns for some, but not all, concrete nouns."	"The interfacial, emulsification and encapsulation properties of hydrophobically modified inulin. Octenyl- and dodecenyl succinic anhydride derivatives (OSA- and DDSA-) of inulin have been synthesised and their solution and interfacial properties have been determined and compared to a commercially available alkylated inulin, Inutec SP1. All samples formed micellar aggregates in solution above a critical concentration (critical aggregation concentration) and were able to 'dissolve' a hydrophobic dye. They were also able to form stable oil-in-water (O/W) emulsions as assessed by measurements of their droplet size as a function of time. DDSA-inulin with a high degree of substitution was found to be effective at encapsulating beta carotene using the solvent evaporation method which yielded a solid which dissolved readily in simulated gastric fluid. The results confirm the potential application of these materials in a number of areas including, drug delivery, pharmaceuticals, neutraceuticals, cosmetics and personal care."	"Effects of temperature and solvent condition on phase separation induced molecular fractionation of gum arabic/hyaluronan aqueous mixtures. Effects of temperature and solvent condition on phase separation-induced molecular fractionation of gum arabic/hyaluronan (GA/HA) mixed solutions were investigated. Two gum arabic samples (EM10 and STD) with different molecular weights and polydispersity indices were used. Phase diagrams, including cloud and binodal curves, were established by visual observation and GPC-RI methods. The molecular parameters of control and fractionated GA, from upper and bottom phases, were measured by GPC-MALLS. Fractionation of GA increased the content of arabinogalactan-protein complex (AGP) from ca. 11% to 18% in STD/HA system and 28% to 55% in EM10/HA system. The phase separation-induced molecular fractionation was further studied as a function of temperature and solvent condition (varying ionic strength and ethanol content). Increasing salt concentration (from 0.5 to 5 mol/L) greatly reduced the extent of phase separation-induced fractionation. This effect may be ascribed to changes in the degree of ionization and shielding of the acid groups. Increasing temperature (from 4 °C to 80 °C) also exerted a significant influence on phase separation-induced fractionation. The best temperature for GA/HA mixture system was 40 °C while higher temperature negatively affected the fractionation due to denaturation and possibly degradation in mixed solutions. Increasing the ethanol content up to 30% showed almost no effect on the phase separation induced fractionation."	"Sequencing of exons 4, 5, 12 of COCH gene in patients with postlingual sensorineural hearing loss accompanied by vestibular lesion. Mutations at the DFNA9 locus on chromosome 14q12 are the third most common form of DFNA hearing loss, which is clinically characterized by late onset (in adulthood) progressive sensorineural hearing loss accompanied by vestibular dysfunction. The aim of the study was to search for COCH gene mutations (P51S, V66G, G87W, G88E, V104del, I109N, W117R, A119T, M512T, C542Y) in patients with severe or profound sensorineural hearing loss accompanied by a vestibular lesion. The study was based on a group of 30 patients. Qualification criteria comprised the presence of progressive postlingual, severe to profound sensorineural hearing loss with tinnitus, early age of sensorineural hearing loss onset, before the 40<sup>th</sup> year of life, and a positive family history of early onset hearing loss. All patients were diagnosed with peripheral vestibular lesions. The authors did not find P51S, V66G, G87W, G88E, V104del, I109N, W117R, A119T, M512T, or C542Y mutations in the COCH gene in the tested group (no differences were found in the nucleotide sequences of exomes 4, 5 and 12 when compared to the published cDNA sequence of the COCH gene). No cochlin mutations were found in the group of patients with severe to profound sensorineural hearing impairment accompanied by a vestibular lesion. The COCH gene needs further exploration and analysis of genotype-phenotype correlations."	"Transcriptome analysis reveals enrichment of genes associated with auditory system in swimbladder of channel catfish. In aquatic organisms, hearing is an important sense for acoustic communications and detection of sound-emitting predators and prey. Channel catfish is a dominant aquaculture species in the United States. As channel catfish can hear sounds of relatively high frequency, it serves as a good model for study auditory mechanisms. In catfishes, Weberian ossicles connect the swimbladder to the inner ear to transfer the forced vibrations and improve hearing ability. In this study, we examined the transcriptional profiles of channel catfish swimbladder and other four tissues (gill, liver, skin, and intestine). We identified a total of 1777 genes that exhibited preferential expression pattern in swimbladder of channel catfish. Based on Gene Ontology enrichment analysis, many of swimbladder-enriched genes were categorized into sensory perception of sound, auditory behavior, response to auditory stimulus, or detection of mechanical stimulus involved in sensory perception of sound, such as coch, kcnq4, sptbn1, sptbn4, dnm1, ush2a, and col11a1. Six signaling pathways associated with hearing (Glutamatergic synapse, GABAergic synapse pathways, Axon guidance, cAMP signaling pathway, Ionotropic glutamate receptor pathway, and Metabotropic glutamate receptor group III pathway) were over-represented in KEGG and PANTHER databases. Protein interaction prediction revealed an interactive relationship among the swimbladder-enriched genes and genes involved in sensory perception of sound. This study identified a set of genes and signaling pathways associated with auditory system in the swimbladder of channel catfish and provide resources for further study on the biological and physiological roles in catfish swimbladder."	"Lotus japonicus NOOT-BOP-COCH-LIKE1 is essential for nodule, nectary, leaf and flower development. The NOOT-BOP-COCH-LIKE (NBCL) genes are orthologs of Arabidopsis thaliana BLADE-ON-PETIOLE1/2. The NBCLs are developmental regulators essential for plant shaping, mainly through the regulation of organ boundaries, the promotion of lateral organ differentiation and the acquisition of organ identity. In addition to their roles in leaf, stipule and flower development, NBCLs are required for maintaining the identity of indeterminate nitrogen-fixing nodules with persistent meristems in legumes. In legumes forming determinate nodules, without persistent meristem, the roles of NBCL genes are not known. We thus investigated the role of Lotus japonicus NOOT-BOP-COCH-LIKE1 (LjNBCL1) in determinate nodule identity and studied its functions in aerial organ development using LORE1 insertional mutants and RNA interference-mediated silencing approaches. In Lotus, LjNBCL1 is involved in leaf patterning and participates in the regulation of axillary outgrowth. Wild-type Lotus leaves are composed of five leaflets and possess a pair of nectaries at the leaf axil. Legumes such as pea and Medicago have a pair of stipules, rather than nectaries, at the base of their leaves. In Ljnbcl1, nectary development is abolished, demonstrating that nectaries and stipules share a common evolutionary origin. In addition, ectopic roots arising from nodule vascular meristems and reorganization of the nodule vascular bundle vessels were observed on Ljnbcl1 nodules. This demonstrates that NBCL functions are conserved in both indeterminate and determinate nodules through the maintenance of nodule vascular bundle identity. In contrast to its role in floral patterning described in other plants, LjNBCL1 appears essential for the development of both secondary inflorescence meristem and floral meristem."	"Development of Fc-Fused Cocaine Hydrolase for Cocaine Addiction Treatment: Catalytic and Pharmacokinetic Properties. Cocaine abuse is a worldwide public health and social problem without a US Food and Drug Administration (FDA)-approved medication. Accelerating cocaine metabolism that produces biologically inactive metabolites by administration of an efficient cocaine hydrolase (CocH) has been recognized as a promising strategy for cocaine abuse treatment. However, the therapeutic effects of CocH are limited by its short biological half-life (e.g., 8 h or shorter in rats). In this study, we designed and prepared a set of Fc-fusion proteins constructed by fusing Fc(M3) with CocH3 at the N-terminus of CocH3. A linker between the two protein domains was optimized to improve both the biological half-life and catalytic activity against cocaine. It has been concluded that Fc(M3)-G6S-CocH3 not only has fully retained the catalytic efficiency of CocH3 against cocaine but also has the longest biological half-life (e.g., ∼ 136 h in rats) among all of the long-acting CocHs identified so far. A single dose (0.2 mg/kg, IV) of Fc(M3)-G6S-CocH3 was able to significantly attenuate 15 mg/kg cocaine-induced hyperactivity for at least 11 days (268 h) after the Fc(M3)-G6S-CocH3 administration."	"Anterior and posterior erp rhyming effects in 3- to 5-year-old children. During early literacy skills development, rhyming is an important indicator of the phonological precursors required for reading. To determine if neural signatures of rhyming are apparent in early childhood, we recorded event-related potentials (ERPs) from 3- to 5-year-old, preliterate children (N = 62) in an auditory prime-target nonword rhyming paradigm (e.g., bly-gry, blane-vox). Overall, nonrhyming targets elicited a larger negativity (N450) than rhyming targets over posterior regions. In contrast, rhyming targets elicited a larger negativity than nonrhyming targets over fronto-lateral sites. The amplitude of the two rhyming effects was correlated, such that a larger posterior effect occurred with a smaller anterior effect. To determine whether these neural signatures of rhyming related to phonological awareness, we divided the children into two groups based on phonological awareness scores while controlling for age and socioeconomic status. The posterior rhyming effect was stronger and more widely distributed in the group with better phonological awareness, whereas differences between groups for the anterior effect were small and not significant. This pattern of results suggests that the rhyme processes indexed by the anterior effect are developmental precursors to those indexed by the posterior effect. Overall, these findings demonstrate early establishment of distributed neurocognitive networks for rhyme processing."	"Bi-allelic inactivating variants in the COCH gene cause autosomal recessive prelingual hearing impairment. Pathogenic variant in COCH are a known cause of DFNA9 autosomal dominant progressive hearing loss and vestibular dysfunction with adult onset. Hitherto, only dominant nonsynonymous variants and in-frame deletions with a presumed dominant negative or gain-of-function effect have been described. Here, we describe two brothers with congenital prelingual deafness and a homozygous nonsense c.292C&gt;T(p.Arg98*) COCH variant, suggesting a loss-of-function effect. Vestibular dysfunction starting in the first decade was observed in the older patient. The heterozygous parents and sibling have normal hearing and vestibular function, except for the mother, who shows vestibular hyporeflexia and abnormal smooth pursuit tests, most likely due to concomitant disease. This is the first report of autosomal recessive inheritance of cochlea-vestibular dysfunction caused by a pathogenic variant in the COCH gene. An earlier onset of hearing impairment and vestibular dysfunction compared to the dominant hearing loss causing COCH variants is observed."	"The diagnostic performance of a novel ELISA for human CTP (Cochlin-tomoprotein) to detect perilymph leakage. Perilymphatic fistula is defined as an abnormal communication between the perilymph-filled space and the middle ear, or cranial spaces. The manifestations include a broad spectrum of neuro-otological symptoms such as hearing loss, vertigo/dizziness, disequilibrium, aural fullness, tinnitus, and cognitive dysfunction. By sealing the fistula, perilymphatic fistula is a surgically correctable disease. Also, appropriate recognition and treatment of perilymphatic fistula can improve a patient's condition and hence the quality of life. However, the difficulty in making a definitive diagnosis due to the lack of an appropriate biomarker to detect perilymph leakage has caused a long-standing debate regarding its management. We have reported a clinical test for the diagnosis of perilymphatic fistula by detecting a perilymph specific protein, Cochlin-tomoprotein, as a diagnostic marker using a western blot. The aim of this study is to establish an ELISA-based human Cochlin-tomoprotein detection test and to evaluate its diagnostic accuracy in clinical subjects. The results of ELISA showed good dilution reproducibility. The mean concentration was 49.7±9.4 of 10 perilymph samples. The ROC curve in differentiating the perilymph leakage condition from the normal middle ear was significant (P &lt; 0.001) with an area under the curve (AUC) of 0.918 (95% CI 0.824-0.100). We defined the diagnostic criteria as follows: CTP&lt;0.4 negative; 0.4≦CTP&lt;0.8 intermediate; 0.8≦CTP(ng/ml) positive in the clinical usage of the hCTP ELISA, and sensitivity and specificity were 86.4% and 100%, respectively. We further tested the expression specificity of the Cochlin-tomoprotein by testing blood and CSF samples. The concentration was below the detection limit (0.2 ng/ml) in 38 of the 40 blood, and 14 of the 19 CSF samples. We report the accuracy of this test for the diagnosis of perilymphatic fistula. Using ELISA, we can improve the throughput of the test. Furthermore, it is useful for a large-scale study to characterize the clinical picture and delineate the management of this medical condition."	"Does Otovestibular Loss in the Autosomal Dominant Disorder DFNA9 Have an Impact of on Cognition? A Systematic Review. Background and Purpose: Cognitive impairment has been observed in patients with bilateral vestibular loss (BVL) and in patients with sensorineural hearing loss (SNHL). DFNA9 is an autosomal dominant disorder that causes a combination of both sensory deficits by the 3rd to 5th decade. We therefore hypothesize a combined detrimental effect on cognition. The aim of this systematic review was to identify studies related to DFNA9 in general and its relationship with cognitive impairment more specifically. Materials and Methods: Several databases including Medline, Cochrane Database of Systematic Reviews, Cochrane Central Register of Controlled Trials, ISI Web of Knowledge, and Web of Science were searched to accumulate information about DFNA9-mutations, including phenotype, genotype, pathophysiology, quality of life (QOL), and imaging in general and cognitive function more specifically. A qualitative analysis was performed on the 55 articles that qualified. Results: The clinical features of DFNA9 are different along the 24 COCH mutations, described up to now. Vestibular symptoms generally present themselves a few years after SNHL onset in mutations associated with the vWFA-domain although they can precede SNHL onset in other mutations associated with the LCCL-domain. QoL has not been studied extensively in DFNA9, although scarce work is available on the positive impact of cochlear implantation to rehabilitate hearing. No studies were found evaluating cognition in DFNA9 patients. Conclusion: Although cognitive impairment has been demonstrated in patients with hearing loss as well as in patients with BVL, no studies have been reported on the combination of both sensory deficits, such as in DFNA9. Further research is warranted to correlate otovestibular status with cognition."	"Bayesian quantification of sensory reweighting in a familial bilateral vestibular disorder (DFNA9). DFNA9 is a rare progressive autosomal dominantly inherited vestibulo-cochlear disorder, resulting in a homogeneous group of patients with hearing impairment and bilateral vestibular function loss. These patients suffer from a deteriorated sense of spatial orientation, leading to balance problems in darkness, especially on irregular surfaces. Both behavioral and functional imaging studies suggest that the remaining sensory cues could compensate for the loss of vestibular information. A thorough model-based quantification of this reweighting in individual patients is, however, missing. Here we psychometrically examined the individual patient's sensory reweighting of these cues after complete vestibular loss. We asked a group of DFNA9 patients and healthy control subjects to judge the orientation (clockwise or counterclockwise relative to gravity) of a rod presented within an oriented square frame (rod-in-frame task) in three different head-on-body tilt conditions. Our results show a cyclical frame-induced bias in perceived gravity direction across a 90° range of frame orientations. The magnitude of this bias was significantly increased in the patients compared with the healthy control subjects. Response variability, which increased with head-on-body tilt, was also larger for the patients. Reverse engineering of the underlying signal properties, using Bayesian inference principles, suggests a reweighting of sensory signals, with an increase in visual weight of 20-40% in the patients. Our approach of combining psychophysics and Bayesian reverse engineering is the first to quantify the weights associated with the different sensory modalities at an individual patient level, which could make it possible to develop personal rehabilitation programs based on the patient's sensory weight distribution. NEW &amp; NOTEWORTHY It has been suggested that patients with vestibular deficits can compensate for this loss by increasing reliance on other sensory cues, although an actual quantification of this reweighting is lacking. We combine experimental psychophysics with a reverse engineering approach based on Bayesian inference principles to quantify sensory reweighting in individual vestibular patients. We discuss the suitability of this approach for developing personal rehabilitation programs based on the patient's sensory weight distribution."	"Structural Determination of Ruthenium Complexes Containing Bi-Dentate Pyrrole-Ketone Ligands. A series of ruthenium compounds containing a pyrrole-ketone bidentate ligand, 2-(2'-methoxybenzoyl)pyrrole (1), have been synthesized and characterized. Reacting 1 with [(η⁶-cymene)RuCl₂]₂ and RuHCl(CO)(PPh₃)₃ generated Ru(η⁶-cymene)[C₄H₃N-2-(CO-C₆H₄-2-OMe)]Cl (2) and {RuCl(CO)(PPh₃)₂[C₄H₃N-2-(COC₆H₄-2-OMe)]} (3), respectively, in moderate yields. Successively reacting 2 with sodium cyanate and sodium azide gave {Ru(η⁶-cymene)[C₄H₃N-2-(CO-C₆H₄-2-OMe)]X} (4, X=OCN; 5, X=N₃) with the elimination of sodium chloride. Compounds 2-5 were all characterized by ¹H and <sup>13</sup>C-NMR spectra and their structures were also determined by X-ray single crystallography."	"Influence of Chitosan Treatment on Surrogate Serum Markers of Cholesterol Metabolism in Obese Subjects. Chitosan treatment results in significantly lower serum low density lipoprotein (LDL) cholesterol concentrations. To assess the working mechanisms of chitosan, we measured serum surrogate markers of cholesterol absorption (campesterol, sitosterol, cholestanol), synthesis (lathosterol, lanosterol, desmosterol), and degradation to bile acids (7α-hydroxy-cholesterol, 27-hydroxy-cholesterol), corrected for cholesterol concentration (R_sterols). Over 12 weeks, 116 obese subjects (Body Mass Index, BMI 31.7, range 28.1-38.9 kg/m²) were studied under chitosan (n = 61) and placebo treatments (n = 55). The participants were briefly educated regarding improvement of nutrition quality and energy expenditure. Daily chitosan intake was 3200 mg. Serum LDL cholesterol concentration decreased significantly more (p = 0.0252) under chitosan (-8.67 ± 18.18 mg/dL, 5.6%) than under placebo treatment (-1.00 ± 24.22 mg/dL, 0.9%). This reduction was not associated with the expected greater decreases in markers of cholesterol absorption under chitosan treatment. Also, increases in markers of cholesterol synthesis and bile acid synthesis under chitosan treatment were not any greater than under placebo treatment. In conclusion, a significant selective reduction of serum LDL cholesterol under chitosan treatment is neither associated with a reduction of serum surrogate markers of cholesterol absorption, nor with increases of markers for cholesterol and bile acid synthesis."	"Impaired lymphoid extracellular matrix impedes antibacterial immunity in epidermolysis bullosa. Genetic loss of collagen VII causes recessive dystrophic epidermolysis bullosa (RDEB), a skin fragility disorder that, unexpectedly, manifests also with elevated colonization of commensal bacteria and frequent wound infections. Here, we describe an unprecedented systemic function of collagen VII as a member of a unique innate immune-supporting multiprotein complex in spleen and lymph nodes. In this complex, collagen VII specifically binds and sequesters the innate immune activator cochlin in the lumen of lymphoid conduits. In genetic mouse models, loss of collagen VII increased bacterial colonization by diminishing levels of circulating cochlin LCCL domain. Intraperitoneal injection of collagen VII, which restored cochlin in the spleen, but not in the skin, reactivated peripheral innate immune cells via cochlin and reduced bacterial skin colonization. Systemic administration of the cochlin LCCL domain was alone sufficient to diminish bacterial supercolonization of RDEB mouse skin. Human validation demonstrated that RDEB patients displayed lower levels of systemic cochlin LCCL domain with subsequently impaired macrophage response in infected wounds. This study identifies an intrinsic innate immune dysfunction in RDEB and uncovers a unique role of the lymphoid extracellular matrix in systemic defense against bacteria."	"An amorphous Co-carbonate-hydroxide nanowire array for efficient and durable oxygen evolution reaction in carbonate electrolytes. The development of earth-abundant catalysts toward high-efficient and durable oxygen evolution reaction (OER) electrocatalysis in the carbonate electrolyte is in great demand but remains a huge challenge. In this communication, we describe the development of a Co-carbonate-hydroxide nanowire array on nickel foam (CoCH/NF) via in situ electrochemical conversion of the Co(CO3)0.5(OH)·0.11H2O nanowire array. When utilized as a 3D catalyst electrode for the OER in 1.0 M KHCO3 (pH: 8.3), as-formed CoCH/NF demands overpotential of only 332 mV to drive a geometrical catalytic current density of 10 mA cm<sup>-2</sup>, with its catalytic activity being maintained for at least 130 h. Impressively, it also demonstrates a high turnover frequency value of 0.22 mol O2 s<sup>-1</sup> at an overpotential of 500 mV."	"Synthesis, characterisation and physicochemical properties of hydrophobically modified inulin using long-chain fatty acyl chlorides. A series of inulin derivatives were synthesized in aqueous solution using acyl chlorides with varying alkyl chain length (C10-C16). They were characterised using a number of techniques including MALDI TOF-MS, <sup>1</sup>H NMR and FTIR and their degree of substitution determined. The solution properties of the hydrophobically modified inulins were investigated using dye solubilisation and surface tension and it was confirmed that the molecules aggregated in solution above a critical concentration (critical aggregation concentration, CAC). The value of the CAC was found to be reasonably consistent between the different techniques and was shown to decrease with increasing hydrophobe chain length. It was found that the C10, C12 and C14 derivatives formed stable oil-in-water emulsions and the emulsion droplet size decreased with increasing alkyl chain length. The C16 derivative was not able to produce stable oil-in-water emulsions; however, it was able to form stable water-in-oil emulsions. The fact that the derivatives are able to form micellar-like aggregates and stabilise emulsions makes them suitable candidates for the encapsulation and delivery of active compounds with potential application in food, cosmetic, personal care and pharmaceutical formulations."	"RE: 'Much ado about nothing? Legacy tobacco advertising and the role of public health'. NA"	"RIG-I Activation Protects and Rescues from Lethal Influenza Virus Infection and Bacterial Superinfection. Influenza A virus infection causes substantial morbidity and mortality in seasonal epidemic outbreaks, and more efficient treatments are urgently needed. Innate immune sensing of viral nucleic acids stimulates antiviral immunity, including cell-autonomous antiviral defense mechanisms that restrict viral replication. RNA oligonucleotide ligands that potently activate the cytoplasmic helicase retinoic-acid-inducible gene I (RIG-I) are promising candidates for the development of new antiviral therapies. Here, we demonstrate in an Mx1-expressing mouse model of influenza A virus infection that a single intravenous injection of low-dose RIG-I ligand 5'-triphosphate RNA (3pRNA) completely protected mice from a lethal challenge with influenza A virus for at least 7 days. Furthermore, systemic administration of 3pRNA rescued mice with pre-established fulminant influenza infection and prevented the fatal effects of a streptococcal superinfection. Type I interferon, but not interferon-λ, was required for the therapeutic effect. Our results suggest that the use of RIG-I activating oligonucleotide ligands has the clinical potential to confine influenza epidemics when a strain-specific vaccine is not yet available and to reduce lethality of influenza in severely infected patients."	"Identification of a rare COCH mutation by whole-exome sequencing : Implications for personalized therapeutic rehabilitation in an Austrian family with non-syndromic autosomal dominant late-onset hearing loss. Non-syndromic autosomal dominant hearing impairment is characteristically postlingual in onset. Genetic diagnostics are essential for genetic counselling, disease prognosis and understanding of the molecular mechanisms of disease. To date, 36 causative genes have been identified, many in only individual families. Gene selection for genetic screening by traditional methods and genetic diagnosis in autosomal dominant patients has therefore been fraught with difficulty. Whole-exome sequencing provides a powerful tool to analyze all protein-coding genomic regions in parallel, thus allowing the comprehensive screening of all known genes and associated alterations. In this study, a previously undiagnosed late-onset progressive autosomal dominant hearing loss in an Austrian family was investigated by means of whole-exome sequencing. Results were confirmed by Sanger sequencing. A previously described c.151C&gt;T missense (p.Pro51Ser) mutation in the LCCL (limulus factor C, cochlin, late gestation lung protein Lgl1) domain of the cochlin gene (COCH) was identified as causative and segregated with disease in five members of the family. Molecular diagnostics led to the decision to perform cochlear implantation in an index patient who subsequently showed excellent postoperative auditory performance. The c.151C&gt;T mutation was not found in 18 screened Austrian families with autosomal dominant hearing loss but was represented alongside other known pathogenic mutant COCH alleles in the Genome Aggregation Database (gnomAD) in European populations. A combined allele frequency of 0.000128 implies an orphan disease frequency for COCH-induced hearing loss of 1:3900 in Europe. Exome sequencing successfully resolved the genetic diagnosis in a family suffering from autosomal dominant hearing impairment and allowed prediction of purported auditory outcome after cochlear implantation in an index patient. Personalized treatment approaches based on the molecular mechanisms of disease may become increasingly important in the future."	"Transcriptional profiling of articular cartilage in a porcine model of early post-traumatic osteoarthritis. To identify the molecular pathophysiology present in early post-traumatic osteoarthritis (PTOA), the transcriptional profile of articular cartilage and its response to surgical PTOA induction were determined. Thirty six Yucatan minipigs underwent anterior cruciate ligament (ACL) transection and were randomly assigned in equal numbers to no further treatment, reconstruction or ligament repair. Cartilage was harvested at 1 and 4 weeks post-operatively and histology and RNA-sequencing were performed and compared to controls. Microscopic cartilage scores significantly worsened at 1 (p = 0.028) and 4 weeks (p = 0.001) post-surgery relative to controls, but did not differ between untreated, reconstruction or repair groups. Gene expression after ACL reconstruction and ACL transection were similar, with only 0.03% (including SERPINB7 and CR2) and 0.2% of transcripts (including INHBA) differentially expressed at 1 and 4 weeks respectively. COL2A1, COMP, SPARC, CHAD, and EF1ALPHA were the most highly expressed non ribosomal, non mitochondrial genes in the controls and remained abundant after surgery. A total of 1,275 genes were differentially expressed between 1 and 4 weeks post-surgery. With the treatment groups pooled, 682 genes were differentially expressed at both time-points, with the most significant changes observed in MMP1, COCH, POSTN, CYTL1, and PTGFR. This study confirmed the development of a microscopic PTOA stage after ACL surgery in the porcine model. Upregulation of multiple proteases (including MMP1 and ADAMTS4) were found; however, the level of expression remained orders of magnitude below that of extracellular matrix protein-coding genes (including COL2A1 and ACAN). In summary, genes with established roles in PTOA as well as novel targets for specific intervention were identified. © 2017 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:318-329, 2018."	"Outcomes with perioperative fat emulsions containing omega-3 fatty acid: A meta-analysis of randomized controlled trials. Results of a meta-analysis of data from clinical studies comparing patient outcomes and hospital length of stay (LOS) in surgical patients receiving fish oil (FO)-containing i.v. fat emulsions (IVFEs) versus non-FO-containing IVFEs are presented. Computerized searches of the MEDLINE, Embase, and Coch rane CENTRAL databases were performed in August 2014 to identify English-language articles on randomized controlled trials (RCTs) comparing FO-containing and non-FO-containing IVFEs in adult surgical patients receiving parenteral nutrition. Selected articles were analyzed for methodological and publication bias and study heterogeneity (I<sup>2</sup> statistic). Data from 19 RCTs (total n = 1,167) were included in the meta-analysis. Compared with use of non-FO-containing IVFEs (products based in soybean oil [SO], medium-chain triglycerides, or olive oil), use of FO-containing IVFEs was associated with reduced infectious morbidity (odds ratio [OR], 0.44; 95% confidence interval [CI], 0.30-0.65; p &lt; 0.0001; I<sup>2</sup> = 0%); the effect size was greatest for FO-containing versus SO-based IVFEs. Relative to use of SO-based IVFEs, use of FO-containing IVFEs was associated with a significant reduction in hospital LOS (weighted mean difference, -2.70 days; 95% CI, -3.60 to -1.79 days; p &lt; 0.00001; I<sup>2</sup> = 0%). The results of the meta-analysis indicated that FO-containing IVFEs could improve infectious morbidity and LOS. The overall effect of reducing infectious morbidity and LOS was found to be the greatest in comparison with the SO-based IVFEs."	"Electronic and Morphological Dual Modulation of Cobalt Carbonate Hydroxides by Mn Doping toward Highly Efficient and Stable Bifunctional Electrocatalysts for Overall Water Splitting. Developing bifunctional efficient and durable non-noble electrocatalysts for oxygen evolution reaction (OER) and hydrogen evolution reaction (HER) is highly desirable and challenging for overall water splitting. Herein, Co-Mn carbonate hydroxide (CoMnCH) nanosheet arrays with controllable morphology and composition were developed on nickel foam (NF) as such a bifunctional electrocatalyst. It is discovered that Mn doping in CoCH can simultaneously modulate the nanosheet morphology to significantly increase the electrochemical active surface area for exposing more accessible active sites and tune the electronic structure of Co center to effectively boost its intrinsic activity. As a result, the optimized Co1Mn1CH/NF electrode exhibits unprecedented OER activity with an ultralow overpotential of 294 mV at 30 mA cm<sup>-2</sup>, compared with all reported metal carbonate hydroxides. Benefited from 3D open nanosheet array topographic structure with tight contact between nanosheets and NF, it is able to deliver a high and stable current density of 1000 mA cm<sup>-2</sup> at only an overpotential of 462 mV with no interference from high-flux oxygen evolution. Despite no reports about effective HER on metal carbonate hydroxides yet, the small overpotential of 180 mV at 10 mA cm<sup>-2</sup> for HER can be also achieved on Co1Mn1CH/NF by the dual modulation of Mn doping. This offers a two-electrode electrolyzer using bifunctional Co1Mn1CH/NF as both anode and cathode to perform stable overall water splitting with a cell voltage of only 1.68 V at 10 mA cm<sup>-2</sup>. These findings may open up opportunities to explore other multimetal carbonate hydroxides as practical bifunctional electrocatalysts for scale-up water electrolysis."	"RIG-I Resists Hypoxia-Induced Immunosuppression and Dedifferentiation. A hypoxic tumor microenvironment is linked to poor prognosis. It promotes tumor cell dedifferentiation and metastasis and desensitizes tumor cells to type-I IFN, chemotherapy, and irradiation. The cytoplasmic immunoreceptor retinoic acid-inducible gene-I (RIG-I) is ubiquitously expressed in tumor cells and upon activation by 5'-triphosphate RNA (3pRNA) drives the induction of type I IFN and immunogenic cell death. Here, we analyzed the impact of hypoxia on the expression of RIG-I in various human and murine tumor and nonmalignant cell types and further investigated its function in hypoxic murine melanoma. 3pRNA-inducible RIG-I-expression was reduced in hypoxic melanoma cells compared with normoxic controls, a phenomenon that depended on the hypoxia-associated transcription factor HIF1α. Still, RIG-I functionality was conserved in hypoxic melanoma cells, whereas responsiveness to recombinant type-I IFN was abolished, due to hypoxia-induced loss of type I IFN receptor expression. Likewise, RIG-I activation in hypoxic melanoma cells, but not exposure to recombinant IFNα, provoked melanocyte antigen-specific CD8<sup>+</sup> T-cell and NK-cell attack. Scavenging of hypoxia-induced reactive oxygen species by vitamin C restored the inducible expression of RIG-I under hypoxia in vitro, boosted in vitro anti-melanoma NK- and CD8<sup>+</sup> T-cell attack, and augmented 3pRNA antitumor efficacy in vivo These results demonstrate that RIG-I remains operational under hypoxia and that RIG-I function is largely insensitive to lower cell surface expression of the IFNα receptor. RIG-I function could be fortified under hypoxia by the combined use of 3pRNA with antioxidants. Cancer Immunol Res; 5(6); 455-67. ©2017 AACR."	"A nationwide multicenter study of the Cochlin tomo-protein detection test: clinical characteristics of perilymphatic fistula cases. To investigate the positive rate for the Cochlin tomo-protein (CTP: an inner ear-specific protein) detection test among patients with inner ear-related clinical manifestations and evaluate the clinical characteristics of definite perilymphatic fistula (PLF). We have performed an ELISA-based CTP detection test using middle ear lavage (MEL) samples from 497 cases of suspected PLF enrolled from 70 clinical centers nationwide between 2014 and 2015. In addition to the CTP-positive rate, audio-vestibular symptoms were compared between CTP-positive and -negative cases. 8-50% of patients in category 1 (trauma, middle and inner ear disease cases), and about 20% of those in categories 2, 3 and 4 (external origin antecedent events, internal origin antecedent events, and without antecedent event, respectively) were positive for CTP. In category 1 cases, the earlier tested samples showed a higher CTP-positive rate, whereas no differences were observed in categories 2, 3 or 4. The characteristic clinical features in the earlier tested cases were nystagmus and fistula sign in CTP test-positive cases in category 1, and streaming water-like tinnitus in those in categories 2, 3 and 4. The present study clarified that CTP detection test-positive patients exist at considerable rates among patients with inner ear-related manifestations."	"Massively Parallel Sequencing of a Chinese Family with DFNA9 Identified a Novel Missense Mutation in the LCCL Domain of COCH. DFNA9 is a late-onset, progressive, autosomal dominantly inherited sensorineural hearing loss with vestibular dysfunction, which is caused by mutations in the COCH (coagulation factor C homology) gene. In this study, we investigated a Chinese family segregating autosomal dominant nonsyndromic sensorineural hearing loss. We identified a missense mutation c.T275A p.V92D in the LCCL domain of COCH cosegregating with the disease and absent in 100 normal hearing controls. This mutation leads to substitution of the hydrophobic valine to an acidic amino acid aspartic acid. Our data enriched the mutation spectrum of DFNA9 and implied the importance for mutation screening of COCH in age related hearing loss with vestibular dysfunctions."	"Different Phenotypes of the Two Chinese Probands with the Same c.889G&gt;A (p.C162Y) Mutation in COCH Gene Verify Different Mechanisms Underlying Autosomal Dominant Nonsyndromic Deafness 9. By analyzing the different phenotypes of two Chinese DFNA9 families with the same mutation located in the intervening region between the LCCL and vWFA domains of cochlin and testing the functional changes in the mutant cochlin, we investigated the different pathogeneses for mutations in LCCL and vWFA domains. Targeted next-generation sequencing for deafness-related genes was used to identify the mutation in the proband in family #208. The probands of family #208 and family #32 with the same p.C162Y mutation were followed for more than 3 years to evaluate the progression of hearing loss and vestibular dysfunction using pure-tone audiometry, caloric testing, electrocochleogram, vestibular-evoked myogenic potential, and video head-impulse test. The disruption of normal cleavage to produce secreted LCCL domain fragments and the tendency to form aggregations of mutant cochlins were tested by in vitro cell experiments. The two families showed different clinical symptoms. Family #32 was identified as having early-onset, progressive sensorineural hearing loss, similar to the symptoms in DFNA9 patients with cochlin mutations in the vWFA domain. The proband of family #208 endured late-onset recurrent paroxysmal vertigo attacks and progressively deteriorating hearing, similar to symptoms in those with cochlin mutations in the LCCL domain. We therefore suggest that the disrupted cleavage of the LCCL domain fragment is likely to cause vestibular dysfunction, and aggregation of mutant cochlin caused by mutations in the vWFA domain is responsible for early-onset hearing loss. The p.C162Y mutation causes either disruption of LCCL domain fragment cleavage or aggregation of mutant cochlin, resulting in the different phenotypes in the two families. This study demonstrates that DFNA9 families with the same genotype may have significantly different phenotypes. The mutation site in cochlin is related to the pathological mechanism underlying the different phenotypes."	"Who is a 'healthy subject'?-consensus results on pivotal eligibility criteria for clinical trials. A discussion forum was hosted by the German not-for-profit Association for Applied Human Pharmacology (AGAH e.V.) to critically review key eligibility criteria and stopping rules for clinical trials with healthy subjects, enrolling stakeholders from the pharmaceutical industry, contract research organisations, academia, ethics committees and competent authority. Pivotal eligibility criteria were defined for trials with new investigational medicinal products (IMPs) or with clinically established IMPs. In general, a pulse rate ranging between 50 and 90 beats/min is recommended for first-in-human (FIH) trials, while wider ranges seem acceptable for trials with clinically established IMPs, provided there are no indications of thyroid dysfunction. Hepatic laboratory parameters not to exceed the upper limit of normal (ULN) comprise ALT (alanine aminotransferase) and AST (aspartate aminotransferase) in FIH trials, whereas slight elevations (10% above ULN) seem acceptable in trials with clinically established IMPs without known hepatotoxicity. A normal renal function is required for any clinical trial in healthy subjects. A risk-adapted approach for stopping rules was adopted. Stopping rules for an individual subject are one adverse event of severe intensity or one serious adverse event. In case of a severe adverse event, some stakeholders demand a causal relationship with the IMP (i.e. an adverse reaction). Stopping rules for a cohort are one serious adverse reaction or ≥50% of subjects experiencing any adverse reaction of moderate or severe intensity. The application of this consensus resulted in a reduction in protocol deficiencies issued by the competent authority."	"Human gingiva transcriptome during wound healing. To investigate the gene expression profile of human gingiva following surgical wounding. Ten volunteers had one side of the palate wounded. Five days later, biopsies were harvested from both wounded (healing gingiva) and contra-lateral site (normal gingiva). Tissue samples were processed for gene expression (RNA-Seq, real-time PCR) and immunohistochemistry. Gene set enrichment/pathway analysis was also performed. Seven hundred genes were significantly differentially expressed in healing gingiva. Among genes with &gt;twofold change (FC) in expression, 399 genes were up-regulated and 88 down-regulated, several not previously reported expressed in gingiva. Most increased in expression (≥30-FC) were MMP1, CCL18, SPP1, MUC21, CTHRC1, MMP10, and SERPINE1; most decreased (≥7-FC) were COCH, SIAH3, MT4, IGFL3, KY, and SYT16. Real-time PCR confirmed significantly changed mRNA levels for selective genes tested. Gene set enrichment analysis revealed several significantly enriched biological pathways. Immunohistochemistry confirmed protein expression of MUC21, CTHRC1, CTGF, and SYT16 in normal and healing gingiva. This first comprehensive analysis of the human gingival transcriptome during surgical wound healing offers novel insights into the participating molecular and biological mechanisms. The present results could serve as basis for future investigations into gingival wound healing following surgical, traumatic, or other type of injury."	"Niosomes Consisting of Tween-60 and Cholesterol Improve the Chemical Stability and Antioxidant Activity of (-)-Epigallocatechin Gallate under Intestinal Tract Conditions. In order to improve the chemical stability and antioxidant activity of (-)-epigallocatechin gallate (EGCG) in the gastrointestinal tract, niosomes composed of Tween-60 and cholesterol were developed to encapsulate EGCG in this investigation. EGCG loaded niosomes with encapsulation efficiency around 76% exhibited a small Z-average diameter about 60 nm. Compared to free EGCG, the EGCG remaining in dialysis tubes was significantly improved for niosomes at pH 2 and 7.4. Meanwhile, the residual EGCG for niosomes increased from 3% to 49% after 2 h incubation in simulated intestinal fluid (SIF). Pancreatin was found to impact the stability of niosomes in SIF mainly. Furthermore, the results from ferric reducing antioxidant power and cellular antioxidant activity tests indicated that EGCG loaded niosomes exhibited stronger antioxidant ability than free EGCG during intestinal digestion. Thus, we can infer that niosomal encapsulation might be a promising approach to improve the oral bioavailability of EGCG in the body."	"RIG-I activation induces the release of extracellular vesicles with antitumor activity. Activation of the innate immune receptor retinoic acid-inducible gene I (RIG-I) by its specific ligand 5'-triphosphate-RNA (3pRNA) triggers antitumor immunity predominantly via NK cell activation and direct apoptosis induction in tumor cells. However, how NK cells are mobilized to attack the tumor cells remains elusive. Here, we show that RIG-I activation induced the secretion of extracellular vesicles (EVs) from melanoma cells, which by themselves revealed antitumor activity in vitro and in vivo. RIG-I-induced EVs from melanoma cells exhibited an increased expression of the NKp30-ligand (BAG6, BAT3) on their surface triggering NK cell-mediated lysis of melanoma cells via activation of the cytotoxicity NK cell-receptor NKp30. Moreover, systemic administration of RIG-I-induced melanoma-EVs showed a potent antitumor activity in a melanoma mouse model in vivo. In conclusion, our data establish a new RIG-I-dependent pathway leading to NK cell-mediated tumor cell killing."	"The N400 elicited by homonyms in puns: Two primes are not better than one. To comprehend a pun involving a homonym (e.g., The prince with a bad tooth got a crown), both meanings of the homonym must be accessed and selected. Previous ERP studies have shown that the N400 reflects lexicosemantic processing, but none have directly investigated the N400 elicited by homonyms in the unique context of puns. Here, N400 priming effects showed that the dual context of puns (e.g., the primes prince and tooth) did not facilitate homonym processing in comparison to single dominant biasing (e.g., The prince with a bad leg got a crown) or subordinate biasing (e.g., The adult with a bad tooth got a crown) conditions. However, homonyms did elicit a less negative N400 (i.e., priming) in the pun condition in comparison to the neutral context condition (e.g., The adult with a bad leg got a crown). These findings are interpreted in terms of the dominant advantage and subordinate bias effect posited by the reordered access model of homonym processing, and in terms of N400 amplitude as an index of how consistently various sources of semantic featural information converge on one lexical item, even when two lexical items must be activated for comprehension."	"Exploring nurses' and patients' feelings of disgust associated with malodorous wounds: a rapid review. To identify primary empirical research related specifically to feelings of disgust associated with malodorous chronic cutaneous wounds. A rapid review of the literature using the key words disgust; wounds; malodour and psychosocial. A total of 163 papers were retrieved with seven being included for the final review. Themes emanating from the review were malodour, health-care professionals coping with malodour and disgust. Malodour is a concern to patients, which can sometimes go unreported by nursing staff; although the reasons for this remain unclear. The coping mechanisms developed by nurses in response to 'disgusting' wounds requires further exploration in order for a fuller understanding of these mechanisms to be achieved. This review has identified that both health-care professionals and patients can become distressed at wound odours, yet there is little evidence that is available to guide people as to how to manage these feelings. Hard-to-heal or chronic cutaneous wounds, such as leg ulcers and diabetic foot ulcers, are an increasing global health-care issue. While some research has been undertaken to explore the psychological impact of living with a fungating carcinoma; much less has been written about the management and mitigation of feelings of disgust for patients and families living with a malodorous wound or how health-care professionals can effectively provide psychosocial care."	"Intermediate Filaments and Polarization in the Intestinal Epithelium. The cytoplasmic intermediate filament cytoskeleton provides a tissue-specific three-dimensional scaffolding with unique context-dependent organizational features. This is particularly apparent in the intestinal epithelium, in which the intermediate filament network is localized below the apical terminal web region and is anchored to the apical junction complex. This arrangement is conserved from the nematode Caenorhabditis elegans to humans. The review summarizes compositional, morphological and functional features of the polarized intermediate filament cytoskeleton in intestinal cells of nematodes and mammals. We emphasize the cross talk of intermediate filaments with the actin- and tubulin-based cytoskeleton. Possible links of the intermediate filament system to the distribution of apical membrane proteins and the cell polarity complex are highlighted. Finally, we discuss how these properties relate to the establishment and maintenance of polarity in the intestine. "	"Current cardiovascular outcomes trials in type 2 diabetes: Perspectives and insight. The increased risk of cardiovascular disease in patients with type 2 diabetes has been known for many years. However, until recently the cardiovascular (CV) impact of glucose lowering strategies has been inadequately understood. Major clinical trials have now investigated the impact of intensification of glycemic control upon CV outcomes, as well as the CV effects of glucose management with newer antihyperglycemic agents. Key findings from recently completed CV outcomes trials of dipeptidyl peptidase-4 (DPP4) inhibitors, GLP-1 receptor agonists, and sodium-glucose cotransporter 2 (SGLT2) inhibitors completed thus far are reviewed and summarized. Multiple trials designed to meet regulatory requirements for CV safety of antihyperglycemic medications have been initiated. The results of several completed CV outcomes trials clarify the risks and benefits associated with newer medications used to manage hyperglycemia in patients with type 2 diabetes, particularly in individuals at high CV risk. Important differences have been noted with respect to heart failure outcomes within the DPP4 inhibitor class, and thus far one agent in the SGLT2 inhibitor class has been found to significantly reduce rates of important CV outcomes. Robust safety related information from trials designed to assess the CV effects of diabetes therapies will permit the incorporation of outcomes-based evidence into the formulation of diabetes care guidelines."	"Individualized versus standardized risk assessment in patients at high risk for adverse drug reactions (IDrug) - study protocol for a pragmatic randomized controlled trial. Elderly patients are particularly vulnerable to adverse drug reactions, especially if they are affected by additional risk factors such as multimorbidity, polypharmacy, impaired renal function and intake of drugs with high risk potential. Apart from these clinical parameters, drug safety and efficacy can be influenced by pharmacogenetic factors. Evidence-based recommendations concerning drug-gene-combinations have been issued by international consortia and in drug labels. However, clinical benefit of providing information on individual patient factors in a comprehensive risk assessment aiming to reduce the occurrence and severity of adverse drug reactions is not evident. Purpose of this randomized controlled trial is to compare the effect of a concise individual risk information leaflet with standard information on risk factors for side effects. The trial was designed as a prospective, two-arm, randomized, controlled, multicenter, pragmatic study. 960 elderly, multimorbid outpatients in general medicine are included if they take at least one high risk and one other long-term drug (polymedication). As high risk &quot;index drugs&quot; oral anticoagulants and antiplatelets were chosen because of their specific, objectively assessable side effects. Following randomization, test group patients receive an individualized risk assessment leaflet evaluating their personal data concerning bleeding- and thromboembolic-risk-scores, potential drug-drug-interactions, age, renal function and pharmacogenetic factors. Control group patients obtain a standardized leaflet only containing general information on these criteria. Follow-up period is 9 months for each patient. Primary endpoint is the occurrence of a thromboembolic/bleeding event or death. Secondary endpoints are other adverse drug reactions, hospital admissions, specialist referrals and medication changes due to adverse drug reactions, the patients' adherence to medication regimen as well as health related quality of life, mortality and resulting costs. Despite extensive evidence of risk factors for adverse drug reactions, there are few prospective trial data about an individualized risk assessment including pharmacogenetic information to increase patient safety. By conducting a health economic analysis, we will evaluate if the application of an individualized drug therapy in daily routine is cost-effective. German Clinical Trials Register: DRKS00006256 , date of registration 09/01/15."	"Ferromagnetic interlayer interaction in KCo2Se2-xSx (0 ≤ x ≤ 2) and its chemical origin. Layered Co-based chalcogenides ACo2Ch2 (A = Tl, K, Rb and Cs; Ch = Se, S) are believed to adopt the ThCr2Si2-type structure and they all share a similar [CoCh] functional layer. However, their interlayer magnetic interactions show significant differences, with the underlying mechanism still unclear. In this work, the chemical origin of the magnetic interactions in layered KCo2Se2-xSx (0 ≤ x ≤ 2) solid solution has been investigated by experiments and first-principles calculations. All the members of this solid solution are found to have the tetragonal ThCr2Si2-type structure with the space group I4/mmm. Both a and c lattice constants shrink monotonously with S doping. Ferromagnetic interactions are the same for all the members, even for a member with a similar layer distance to those of the antiferromagnetic TlCo2Se2-xSx. The calculated band structure and density of electronic states of KCo2Se2-xSx and TlCo2Se2-xSx show dramatically different scenarios, which is mainly due to the nature of Tl-Ch and K-Ch chemical bonding. Compared with the Tl chalcogenides, the K counterparts with ionic K-Ch bonds present more localized electronic states in terms of energy, which leads to positive interaction constants in the RKKY model. Our results give the quantitative explanation of the different interlayer couplings in the ACo2Ch2 family, as well as the influence of the intercalating layer on the properties of the functional layers in the ThCr2Si2-type structure."	"Phase I trial of dovitinib (TKI258) in recurrent glioblastoma. Dovitinib (TKI258) is an oral multi-tyrosine kinase inhibitor of FGFR, VEGFR, PDGFR β, and c-Kit. Since dovitinib is able to cross the blood-brain barrier and targets brain tumor-relevant pathways, we conducted a phase I trial to demonstrate its safety in recurrent glioblastoma (GBM). Patients with first or second GBM recurrence started treatment with the maximal tolerated dose (MTD) previously established in systemic cancer patients (500 mg/d, 5 days on/2 days off). A modified 3 + 3 design in three cohorts (500, 400, 300 mg) was used. Twelve patients were enrolled. Seventy-two adverse events (AEs) occurred and 16.7 % of AEs were classified as ≥CTC grade 3 toxicity, mainly including hepatotoxicity and hematotoxicity. Only one out of six patients of the 300-mg cohort showed grade 3 toxicity. The PFS-6 rate was 16.7 %, and it was not associated with detection of the FGFR-TACC gene fusion in the tumor. Dovitinib is safe in patients with recurrent GBM and showed efficacy in only some patients unselected for target expression. The recommended phase II dose of 300 mg would be substantially lower than the recently established MTD in systemic cancer patients. Further personalized trials are recommended."	"Genetics of vestibular disorders: pathophysiological insights. The two most common vestibular disorders are motion sickness and vestibular migraine, affecting 30 and 1-2% of the population respectively. Both are related to migraine and show a familial trend. Bilateral vestibular hypofunction is a rare condition, and some of patients also present cerebellar ataxia and neuropathy. We present recent advances in the genetics of vestibular disorders with familial aggregation. The clinical heterogeneity observed in different relatives of the same families suggests a variable penetrance and the interaction of several genes in each family. Some Mendelian sensorineural hearing loss also exhibits vestibular dysfunction, including DFNA9, DFNA11, DFNA15 and DFNA28. However, the most relevant finding during the past years is the familial clustering observed in Meniere's disease. By using whole exome sequencing and combining bioinformatics tools, novel variants in DTNA and FAM136A genes have been identified in familial Meniere's disease, and this genomic strategy will facilitate the discovery of the genetic basis of familial vestibular disorders."	"Cochlin-tomoprotein test and hearing outcomes in surgically treated true idiopathic perilymph fistula. Approximately 50% of patients with sPLF based on the clinical diagnosis criteria were definitively diagnosed with CTP-positive sPLF. These results suggest that early surgery within 7 days of the disease onset contributes to improvements in the therapeutic response of hearing loss. Idiopathic spontaneous perilymph fistula (sPLF) cannot be diagnosed reliably. It is speculated that this condition occurs in patients with vertigo-accompanied acute sensorineural hearing loss that progresses rapidly in spite of steroid therapy. This study herein evaluated cochlin-tomoprotein (CTP) test results in patients with sPLF who underwent exploratory tympanotomy and considered surgical outcomes with true sPLF. Retrospective study. Twenty-three patients diagnosed with sPLF based on the clinical diagnosis criteria who underwent exploratory tympanotomy were included. CTP test results were positive in 11 cases. In CTP-positive cases, the mean hearing level was 66.5 dB pre-operatively and 42.3 dB post-operatively. The hearing level post-operatively completely recovered in four cases, markedly recovered in three cases, slightly recovered in one case and showed no response in three cases. Hearing level improvements were significantly better in CTP-positive patients who underwent surgery within 7 days of the disease onset than in those treated 8 or more days after the disease onset."	"Histopathology of the Human Inner Ear in the p.L114P COCH Mutation (DFNA9). The histopathology of the inner ear in a patient with hearing loss caused by the p.L114P COCH mutation and its correlation with the clinical phenotype are presented. To date, 23 COCH mutations causative of DFNA9 autosomal dominant sensorineural hearing loss and vestibular disorder have been reported, and the histopathology of the human inner ear has been described in 4 of these. The p.L114P COCH mutation was first described in a Korean family. We have identified the same mutation in a family of non-Asian ancestry in the USA, and the temporal bone histopathology and clinical findings are presented herein. The histopathology found in the inner ear was similar to that shown in the 4 other COCH mutations and included degeneration of the spiral ligament with deposition of an eosinophilic acellular material, which was also found in the distal osseous spiral lamina, at the base of the spiral limbus, and in mesenchymal tissue at the base of the vestibular neuroepithelium. This is the first description of human otopathology of the COCH p.L114P mutation. In addition, it is the only case with otopathology characterization in an individual with any COCH mutation and residual hearing, thus allowing assessment of primary histopathological events in DFNA9, before progression to more profound hearing loss. A quantitative cytologic analysis of atrophy in this specimen and immunostaining using anti-neurofilament and anti-myelin protein zero antibodies confirmed that the principal histopathologic correlate of hearing loss was degeneration of the dendritic fibers of spiral ganglion cells in the osseous spiral lamina. The implications for cochlear implantation in this disorder are discussed. "	"Role and therapeutic potential of vascular stem/progenitor cells in pathological neovascularisation during chronic portal hypertension. Pathological neovascularisation is intimately involved in portal hypertension (PH). Here, we determined the contribution of vascular stem/progenitor cells (VSPCs) to neovessel growth in PH and whether the RNA-binding protein cytoplasmic polyadenylation element binding protein-4 (CPEB4) was behind the mechanism controlling VSPC function. To identify and monitor VSPCs in PH rats (portal vein-ligated), we used a combinatorial approach, including sphere-forming assay, assessment of self-renewal, 5-bromo-2'-desoxyuridine label retention technique, in vitro and in vivo stem/progenitor cell (SPC) differentiation and vasculogenic capability, cell sorting, as well as immunohistochemistry, immunofluorescence and confocal microscopy expression analysis. We also determined the role of CPEB4 on VSPC proliferation using genetically engineered mouse models. We demonstrated the existence in the mesenteric vascular bed of VSPCs displaying capability to form cellular spheres in suspension culture, self-renewal ability, expression of molecules commonly found in SPCs, slow-cycling features, in addition to other cardinal properties exhibited by SPCs, like capacity to differentiate into endothelial cells and pericytes with remarkable vasculogenic activity. Such VSPCs showed, after PH induction, an early switch in proliferation, and differentiated in vivo into endothelial cells and pericytes, contributing, structurally and functionally, to abnormal neovessel formation. Quantification of VSPC-dependent neovessel formation in PH further illustrated the key role played by VSPCs. We also demonstrated that CPEB4 regulates the proliferation of the activated VSPC progeny upon PH induction. These findings demonstrate that VSPC-derived neovessel growth (ie, vasculogenesis) and angiogenesis cooperatively stimulate mesenteric neovascularisation in PH and identify VSPC and CPEB4 as potential therapeutic targets."	"Long-Term Blockade of Cocaine Self-Administration and Locomotor Activation in Rats by an Adenoviral Vector-Delivered Cocaine Hydrolase. A promising approach in treating cocaine abuse is to metabolize cocaine in the blood using a mutated butyrylcholinesterase (BChE) that functions as a cocaine hydrolase (CocH). In rats, a helper-dependent adenoviral (hdAD) vector-mediated delivery of CocH abolished ongoing cocaine use and cocaine-primed reinstatement of drug-seeking for several months. This enzyme also metabolizes ghrelin, an effect that may be beneficial in maintaining healthy weights. The effect of a single hdAD-CocH vector injection was examined in rats on measures of anxiety, body weight, cocaine self-administration, and cocaine-induced locomotor activity. To examine anxiety, periadolescent rats were tested in an elevated-plus maze. Weight gain was then examined under four rodent diets. Ten months after CocH-injection, adult rats were trained to self-administer cocaine intravenously and, subsequently, cocaine-induced locomotion was tested. Viral gene transfer produced sustained plasma levels of CocH for over 13 months of testing. CocH-treated rats did not differ from controls in measures of anxiety, and only showed a transient reduction in weight gain during the first 3 weeks postinjection. However, CocH-treated rats were insensitive to cocaine. At 10 months postinjection, none of the CocH-treated rats initiated cocaine self-administration, unlike 90% of the control rats. At 13 months postinjection, CocH-treated rats showed no cocaine-induced locomotion, whereas control rats showed a dose-dependent enhancement of locomotion. CocH vector produced a long-term blockade of the rewarding and behavioral effects of cocaine in rats, emphasizing its role as a promising therapeutic intervention in cocaine abuse. "	"Distinct Expression Patterns Of Causative Genes Responsible For Hereditary Progressive Hearing Loss In Non-Human Primate Cochlea. Hearing impairment is the most frequent sensory deficit in humans. Deafness genes, which harbor pathogenic mutations that have been identified in families with hereditary hearing loss, are commonly expressed in the auditory end organ or the cochlea and may contribute to normal hearing function, yet some of the mouse models carrying these mutations fail to recapitulate the hearing loss phenotype. In this study, we find that distinct expression patterns of those deafness genes in the cochlea of a non-human primate, the common marmoset (Callithrix jacchus). We examined 20 genes whose expression in the cochlea has already been reported. The deafness genes GJB3, CRYM, GRHL2, DFNA5, and ATP6B1 were expressed in marmoset cochleae in patterns different from those in mouse cochleae. Of note, all those genes are causative for progressive hearing loss in humans, but not in mice. The other tested genes, including the deafness gene COCH, in which mutation recapitulates deafness in mice, were expressed in a similar manner in both species. The result suggests that the discrepancy in the expression between rodents and primates may account for the phenotypic difference. This limitation of the rodent models can be bypassed by using non-human primate models such as the marmoset. "	"Cutting Edge: The RIG-I Ligand 3pRNA Potently Improves CTL Cross-Priming and Facilitates Antiviral Vaccination. Protective immunity against intracellular pathogens involves the induction of robust CTL responses. Vaccination with protein Ags establishes such responses only when combined with immune-stimulatory adjuvants. In this study, we compared different adjuvants and identified triphosphate RNA (3pRNA) as especially effective at inducing CTL responses. 3pRNA sensing required IPS-1/MAVS signaling and induced type I IFN in plasmacytoid dendritic cells and macrophages, with the latter being more important for the adjuvant effect. Type I IFN acted on CD11c(+) cells, especially on CD8α(+) Batf3-dependent dendritic cells. Vaccination with OVA in combination with 3pRNA protected mice from a subsequent OVA-encoding adenovirus infection in a CD8(+) cell-dependent manner and more efficiently than other adjuvants. In summary, 3pRNA is a superior adjuvant for CTL activation and might be useful to facilitate antiviral immunization strategies. "	"Effect of acidification on the protection of alginate-encapsulated probiotic based on emulsification/internal gelation. The method of emulsification/internal gelation is commonly used to prepare alginate microspheres for lactic acid bacteria (LAB). This paper focused on the influence of acidification parameters, i.e. acid/Ca molar ratio and acidification time, on the physical properties and cell protection efficiency of microspheres and their correlations. With increasing acid/Ca molar ratio and acidification time, the average diameter of microspheres decreased and their mechanical strength increased. Interestingly, wet alginate microspheres shrank in simulated gastric juice (SGJ) while they swelled in bile salts solution (BS). The shrinkage or swelling ratio decreased with increasing mechanical strength. Correlation analysis showed that the encapsulated cell survivals in both SGJ and BS were positively correlated with the mechanical strength of microspheres but negatively with the shrinkage or swelling ratio. BacLight LIVE/DEAD assay suggested that the viability of encapsulated cells in fresh, SGJ-treated and BS-treated microspheres was closely related to cell membrane integrity. Acidification is a key step during microsphere preparation, which strongly affected the physical properties of alginate microspheres, resulting in different cell protection efficiency. The resulting well-protected LAB can be applied in probiotics foods. © 2016 Society of Chemical Industry."	"Distinct vestibular phenotypes in DFNA9 families with COCH variants. Mutations of COCH can cause hearing loss and less frequently vestibular symptoms. However, vestibular phenotypes, especially in terms of the location of specific variants are not well documented yet. In this study, a retrospective and prospective cohort survey was performed in two tertiary referral hospitals to demonstrate vestibular phenotypes of DFNA9 subjects with a focus on the relationship with the location of COCH mutations. Two DFNA9 subjects were recruited from the previously collected cohort, each segregating p.G38D and p.C162Y of the COCH gene. Another two DFNA9 families were newly detected by targeted resequencing of known 129 deafness genes (TRS-129). These two families segregated the p.G38D variant of the COCH gene as the causative mutation, making p.G38D the most frequent COCH mutation in our Korean cohorts. Regarding the detailed clinical phenotype of the four DFNA9 families with documented vestibular phenotypes, we were able to classify them into two groups: one (p.C162Y variant) with a Meniere's disease (MD)-like phenotype and the other three (p.G38D variant) with significant bilateral vestibular loss without any definite MD symptoms. Distinct vestibular phenotypes depending on the location of COCH mutations were demonstrated, and this study correlates a genotype of p.G38D in COCH to the phenotype of bilateral total vestibular loss, therefore expanding the vestibular phenotypic spectrum of DFNA9 to range from bilateral vestibular loss without episodic vertigo to MD-like features with devastating episodic vertigo. In addition, the p.G38D variant of the COCH gene is suggested to be a frequent cause of progressive audiovestibular dysfunction in Koreans eventually requiring cochlear implantation. "	"Reaction Pathway for Cocaine Hydrolase-Catalyzed Hydrolysis of (+)-Cocaine. A recently designed and discovered cocaine hydrolase (CocH), engineered from human butyrylcholinesterase (BChE), has been proven promising as a novel enzyme therapy for treatment of cocaine overdose and addiction because it is highly efficient in catalyzing hydrolysis of naturally occurring (-)-cocaine. It has been known that the CocH also has a high catalytic efficiency against (+)-cocaine, a synthetic enantiomer of cocaine. Reaction pathway and the corresponding free energy profile for the CocH-catalyzed hydrolysis of (+)-cocaine have been determined, in the present study, by performing first-principles pseudobond quantum mechanical/molecular mechanical (QM/MM)-free energy (FE) calculations. Acordingt to the QM/MM-FE results, the catalytic hydrolysis process is initiated by the nucleophilic attack on carbonyl carbon of (-)-cocaine benzoyl ester via hydroxyl oxygen of S198 side chain, and the second reaction step (i.e. dissociation of benzoyl ester) is rate-determining. This finding for CocH-catalyzed hydrolysis of (+)-cocaine is remarkably different from that for the (+)-cocaine hydrolysis catalyzed by bacterial cocaine esterase in which the first reaction step of the deacylation is associated with the highest free energy barrier (~17.9 kcal/mol). The overall free energy barrier (~16.0 kcal/mol) calculated for the acylation stage of CocH-catalyzed hydrolysis of (+)-cocaine is in good agreement with the experimental free energy barrier of ~14.5 kcal/mol derivated from the experimental kinetic data."	"Long-acting cocaine hydrolase for addiction therapy. Cocaine abuse is a world-wide public health and social problem without a US Food and Drug Administration-approved medication. An ideal anticocaine medication would accelerate cocaine metabolism, producing biologically inactive metabolites by administration of an efficient cocaine-specific exogenous enzyme. Our recent studies have led to the discovery of the desirable, highly efficient cocaine hydrolases (CocHs) that can efficiently detoxify and inactivate cocaine without affecting normal functions of the CNS. Preclinical and clinical data have demonstrated that these CocHs are safe for use in humans and are effective for accelerating cocaine metabolism. However, the actual therapeutic use of a CocH in cocaine addiction treatment is limited by its short biological half-life (e.g., 8 h or shorter in rats). Here we demonstrate a novel CocH form, a catalytic antibody analog, which is a fragment crystallizable (Fc)-fused CocH dimer (CocH-Fc) constructed by using CocH to replace the Fab region of human IgG1. The CocH-Fc not only has a high catalytic efficiency against cocaine but also, like an antibody, has a considerably longer biological half-life (e.g., ∼107 h in rats). A single dose of CocH-Fc was able to accelerate cocaine metabolism in rats even after 20 d and thus block cocaine-induced hyperactivity and toxicity for a long period. Given the general observation that the biological half-life of a protein drug is significantly longer in humans than in rodents, the CocH-Fc reported in this study could allow dosing once every 2-4 wk, or longer, for treatment of cocaine addiction in humans. "	"A novel frameshift variant of COCH supports the hypothesis that haploinsufficiency is not a cause of autosomal dominant nonsyndromic deafness 9. COCH (coagulation factor C homology) encodes cochlin, and certain mutations of COCH cause autosomal dominant nonsyndromic deafness 9 (DFNA9). Hearing loss due to COCH mutation begins in adulthood, and 17 missense mutations and two in-frame mutations have been reported. Studies with animal and cellular models have suggested that the underlying biological mechanism of DFNA9 is the dominant-negative effect of mutated COCH and not haploinsufficiency. However, no human cases of DFNA9 that support this hypothesis have been reported. The proband of the present case was an 18-year-old male with congenital or infantile hearing loss. Targeted next-generation sequencing analysis detected a heterozygous novel frameshift mutation of COCH (c.146dupT, p.C50LfsX8) in the proband, whose hearing loss began earlier than what is typical for DFNA9. His mother also carried the mutation but had normal hearing. Consequently, the mutation was not considered to be the cause of the proband's hearing loss. This family is the first case of a truncating COCH variant and supports the hypothesis that COCH haploinsufficiency is not the cause of hearing loss in humans. "	"Human thermal comfort conditions and urban planning in hot-humid climates-The case of Cuba. Climate regional characteristics, urban environmental conditions, and outdoors thermal comfort requirements of residents are important for urban planning. Basic studies of urban microclimate can provide information and useful resources to predict and improve thermal conditions in hot-humid climatic regions. The paper analyzes the thermal bioclimate and its influence as urban design factor in Cuba, using Physiologically Equivalent Temperature (PET). Simulations of wind speed variations and shade conditions were performed to quantify changes in thermal bioclimate due to possible modifications in urban morphology. Climate data from Havana, Camagüey, and Santiago of Cuba for the period 2001 to 2012 were used to calculate PET with the RayMan model. The results show that changes in meteorological parameters influence the urban microclimate, and consequently modify the thermal conditions in outdoors spaces. Shade is the predominant strategy to improve urban microclimate with more significant benefits in terms of PET higher than 30 °C. For climatic regions such as the analyzed ones, human thermal comfort can be improved by a wind speed modification for thresholds of PET above 30 °C, and by a wind speed decreases in conditions below 26 °C. The improvement of human thermal conditions is crucial for urban sustainability. On this regards, our study is a contribution for urban designers, due to the possibility of taking advantage of results for improving microclimatic conditions based on urban forms. The results may enable urban planners to create spaces that people prefer to visit, and also are usable in the reconfiguration of cities. "	"A systems-based investigation into vitamin D and skeletal muscle repair, regeneration, and hypertrophy. Skeletal muscle is a direct target for vitamin D. Observational studies suggest that low 25[OH]D correlates with functional recovery of skeletal muscle following eccentric contractions in humans and crush injury in rats. However, a definitive association is yet to be established. To address this gap in knowledge in relation to damage repair, a randomised, placebo-controlled trial was performed in 20 males with insufficient concentrations of serum 25(OH)D (45 ± 25 nmol/l). Prior to and following 6 wk of supplemental vitamin D3 (4,000 IU/day) or placebo (50 mg of cellulose), participants performed 20 × 10 damaging eccentric contractions of the knee extensors, with peak torque measured over the following 7 days of recovery. Parallel experimentation using isolated human skeletal muscle-derived myoblast cells from biopsies of 14 males with low serum 25(OH)D (37 ± 11 nmol/l) were subjected to mechanical wound injury, which enabled corresponding in vitro studies of muscle repair, regeneration, and hypertrophy in the presence and absence of 10 or 100 nmol 1α,25(OH)2D3. Supplemental vitamin D3 increased serum 25(OH)D and improved recovery of peak torque at 48 h and 7 days postexercise. In vitro, 10 nmol 1α,25(OH)2D3 improved muscle cell migration dynamics and resulted in improved myotube fusion/differentiation at the biochemical, morphological, and molecular level together with increased myotube hypertrophy at 7 and 10 days postdamage. Together, these preliminary data are the first to characterize a role for vitamin D in human skeletal muscle regeneration and suggest that maintaining serum 25(OH)D may be beneficial for enhancing reparative processes and potentially for facilitating subsequent hypertrophy. "	"N1 and P2 to words and wordlike stimuli in late elementary school children and adults. In an investigation of the development of fine-tuning for word processing across the late elementary school years as indexed by the posterior N1 and P2 components of the ERP waveform, third, fourth, and fifth graders and a comparison group of adults viewed words, pseudowords, nonpronounceable letter strings, and false font strings in a semantic categorization task. In adults, N1 was larger to and P2 was later to words as compared to pseudowords, a finely tuned effect of lexicality reflecting specialization for word processing. In contrast, in each group of children, N1 was larger to letter strings than false font strings and P2 was larger to false font strings than letter strings, reflecting coarse encoding for orthography. In regression analyses, scores on standardized behavioral test measures of orthographic knowledge, decoding skill, and fluency predicted N1 amplitude; these effects were not significant with age included as a separate predictor. None of the behavioral scores, in models including or not including age, predicted P2 amplitude. In direct comparisons between groups, there were multiple differences between the child and adult groups for both N1 and P2 amplitude effects, and only a single significant difference between two child groups. Overall, the findings suggest a lengthy developmental time course for the fine-tuning of early word processing as indexed by N1 and P2. "	"Immune- and miRNA-response to recombinant interferon beta-1a: a biomarker evaluation study to guide the development of novel type I interferon- based therapies. The innate immune receptor RIG-I detects viral RNA within the cytosol of infected cells. Activation of RIG-I leads to the induction of antiviral cytokines, in particular type I interferon, the inhibition of a T(H)17 response as well as to the suppression of tumor growth. Therefore, RIG-I is a promising drug target for the treatment of cancer as well as multiple sclerosis. A specific ligand for RIG-I is currently in preclinical testing. The first-in-human trial will need to be carefully designed to avoid an overshooting cytokine response. Therefore, the ResI study was set up to analyze the human immune response to standard treatment with recombinant interferon-beta to establish biomarkers for safety and efficacy of the upcoming first-in-human trial investigating the RIG-I ligand. ResI is a single center, prospective, open label, non-randomized phase I clinical trial. Three different cohorts (20 healthy volunteers, 20 patients with RRMS and ongoing interferon-beta treatment and 10 patients starting on interferon-beta) will receive standard interferon-beta-1a therapy for nine days. The study will be conducted according to the principles of the german medicinal products act, ICH-GCP, and the Declaration of Helsinki on the phase I unit of the Institute of Clinical Chemistry and Clinical Pharmacology and in the Department of Neurology, both University Hospital Bonn. Interferon-beta-induced cytokine levels, surface marker on immune cells, mRNA- and miRNA-expression as well as psychometric response will be investigated as target variables. The ResI study will assess biomarkers in response to interferon-β treatment to guide the dose steps within the first-in-human trial with a newly developed RIG-I ligand. Thus, ResI is a biomarker study to enhance the safety of the clinical development of a first-in-class compound. The data can additionally be used for the development of other therapies based on type I interferon induction such as TLR ligands. Moreover, it will help to understand the interferon-beta induced immune response in a controlled in vivo setting in the human system. clinicaltrials.gov ID NCT02364986."	"The legume NOOT-BOP-COCH-LIKE genes are conserved regulators of abscission, a major agronomical trait in cultivated crops. Plants are able to lose organs selectively through a process called abscission. This process relies on the differentiation of specialized territories at the junction between organs and the plant body that are called abscission zones (AZ). Several genes control the formation or functioning of these AZ. We have characterized BLADE-ON-PETIOLE (BOP) orthologues from several legume plants and studied their roles in the abscission process using a mutant approach. Here, we show that the Medicago truncatula NODULE ROOT (NOOT), the Pisum sativum COCHLEATA (COCH) and their orthologue in Lotus japonicus are strictly necessary for the abscission of not only petals, but also leaflets, leaves and fruits. We also showed that the expression pattern of the M. truncatula pNOOT::GUS fusion is associated with functional and vestigial AZs when expressed in Arabidopsis. In addition, we show that the stip mutant from Lupinus angustifolius, defective in stipule formation and leaf abscission, is mutated in a BOP orthologue. In conclusion, this study shows that this clade of proteins plays an important conserved role in promoting abscission of all aerial organs studied so far. "	"Gas-phase Smiles rearrangement reactions of deprotonated N-phenylbenzamides studied by electrospray ionization tandem mass spectrometry. Electrospray ionization tandem mass spectrometry (ESI-MS(n)) is an invaluable tool for the study of gas-phase reactions. When N-phenylbenzamide is analyzed in negative ion mode, the nucleophilic deprotonated site of nitrogen or oxygen, together with the adjacent electrophilic phenyl carbon in the same molecule, provides a useful opportunity to study the intramolecular nucleophilic reaction in the gas phase. All MS(n) experiments of deprotonated N-phenylbenzamides were conducted on an ion trap mass spectrometer using ESI in negative ion mode. The accurate masses of fragments were measured on an ESI quadrupole time-of-flight mass spectrometer in negative ion mode. Theoretical calculations were conducted at the B3LYP/6-31++G(d,p) level of density functional theory using the Gaussian 03 program. When the polarity of the substituent on the aniline ring was changed, gas-phase Smiles rearrangement reactions could be initiated by different atoms in the anionic center. Upon collisional activation, loss of CO from deprotonated N-phenylbenzamides could be observed, which can be interpreted as a nitrogen anion triggering the Smiles rearrangement reaction through a three-membered ring transition state. As the aniline ring was substituted by a strong electron-withdrawing group (e.g., NO(2), COCH(3), or CF(3)) at the para position, a characteristic phenolate anion was obtained, which was derived from the Smiles rearrangement reaction initiated by the oxygen anion through a four-membered ring transition state. In the fragmentation of deprotonated N-phenylbenzamides, the gas-phase Smiles rearrangement reaction initiated by either the nitrogen or the oxygen atom can proceed. The findings in this study have not only enriched knowledge on the gas-phase Smiles rearrangement reactions, but also provided valuable information for understanding the rearrangements of deprotonated aromatic amides in gas phase."	"[Phenotype predictions of the pathogenic nonsynonymous single nucleotide polymorphisms in deafness-causing gene COCH]. The COCH (Coagulation factor C homology) gene, located in human chromosome 14q12-q13, is the first gene identified to cause vestibular dysfunction. COCH encodes cochlin, which contains an N-terminal LCCL (Limulus factor C, cochlin, and late gestation lung protein Lgl1) domain and a C-temimal vWFA (Von Willebrand factor type A) domain. Recently, functional research of COCH mutations and cochlin have come under the spotlight in the field of hereditary deafness. Approximately 16 mutations in COCH have been confirmed to date, among which 13 non-synonymous single nucleotide polymorphisms (nsSNPs) are the most common form of genetic variations. Nonetheless, there is poor knowledge on the relationship between the genotype and the phenotype of the other nsSNPs in COCH. Here we analyzed deleterious nsSNPs from all SNPs in the COCH gene in the vWFA domain based on different computational methods and identified eight potential pathogenic nsSNPs (I176T, R180Q, G265E, V269L, I368N, I372T, R416C and Y424D) after combining literatures with 3D structures. Meanwhile, the protein structures of six reported pathogenic nsSNPs (P51S, G87W, I109N, I109T, W117R and F121S) in the LCCL domain have been constructed, and we identified aberrant structural changes in loops and chains. The prediction of pathogenic mutations for COCH nsSNPs will provide a blueprint for screening pathogenic mutations, and it will be beneficial to the functional research of COCH and cochlin in this field."	"N400 Event-Related Potential and Standardized Measures of Reading in Late Elementary School Children: Correlated or Independent? We investigated whether and how standardized behavioral measures of reading and electrophysiological measures of reading were related in 72 typically developing, late elementary school children. Behavioral measures included standardized tests of spelling, phonological processing, vocabulary, comprehension, naming speed, and memory. Electrophysiological measures were composed of the amplitude of the N400 component of the event-related potential waveform elicited by real words, pseudowords, nonpronounceable letter strings, and strings of letter-like symbols (false fonts). The only significant brain-behavior correlations were between standard scores on the vocabulary test and N400 mean amplitude to real words (r = -.272) and pseudowords (r = -.235). We conclude that, while these specific sets of standardized behavioral and electrophysiological measures both provide an index of reading, for the most part, they are independent and draw upon different underlying processing resources. [T]o completely analyze what we do when we read… would be to describe very many of the most intricate workings of the human mind, as well as to unravel the tangled story of the most remarkable specific performance that civilization has learned in all its history(Huey, 1908/1968, p. 3)."	"Sequence-specific activation of the DNA sensor cGAS by Y-form DNA structures as found in primary HIV-1 cDNA. Cytosolic DNA that emerges during infection with a retrovirus or DNA virus triggers antiviral type I interferon responses. So far, only double-stranded DNA (dsDNA) over 40 base pairs (bp) in length has been considered immunostimulatory. Here we found that unpaired DNA nucleotides flanking short base-paired DNA stretches, as in stem-loop structures of single-stranded DNA (ssDNA) derived from human immunodeficiency virus type 1 (HIV-1), activated the type I interferon-inducing DNA sensor cGAS in a sequence-dependent manner. DNA structures containing unpaired guanosines flanking short (12- to 20-bp) dsDNA (Y-form DNA) were highly stimulatory and specifically enhanced the enzymatic activity of cGAS. Furthermore, we found that primary HIV-1 reverse transcripts represented the predominant viral cytosolic DNA species during early infection of macrophages and that these ssDNAs were highly immunostimulatory. Collectively, our study identifies unpaired guanosines in Y-form DNA as a highly active, minimal cGAS recognition motif that enables detection of HIV-1 ssDNA. "	"Novel COCH p.V123E Mutation, Causative of DFNA9 Sensorineural Hearing Loss and Vestibular Disorder, Shows Impaired Cochlin Post-Translational Cleavage and Secretion. DFNA9 is an autosomal dominant disorder characterized by late-onset, non-syndromic hearing loss, and vestibular dysfunction. Mutations in the COCH (coagulation factor C homology) gene encoding cochlin are etiologically linked to DFNA9. Previous studies have shown that cochlin is cleaved by aggrecanase-1 during inflammation in the spleen and that the cleaved LCCL domain functions as an innate immune mediator. However, the physiological role of cochlin in the inner ear is not completely understood. Here, we report that cochlins containing DFNA9-linked mutations (p.P51S, p.V66G, p.G88E, p.I109T, p.W117R, p.V123E, and p.C162Y) demonstrate reduced cleavage by aggrecanase. Notably, in families affected with DFNA9, we found a novel COCH mutation causing p.V123E substitution in cochlin, which significantly reduced protein susceptibility to cleavage by aggrecanase (to about 20.5% of the wild-type). These results suggest that the impaired post-translational cleavage of cochlin mutants may be associated with pathological mechanisms underlying DFNA9-related sensorineural hearing loss. "	"A Conserved Histidine in the RNA Sensor RIG-I Controls Immune Tolerance to N1-2'O-Methylated Self RNA. The cytosolic helicase retinoic acid-inducible gene-I (RIG-I) initiates immune responses to most RNA viruses by detecting viral 5'-triphosphorylated RNA (pppRNA). Although endogenous mRNA is also 5'-triphosphorylated, backbone modifications and the 5'-ppp-linked methylguanosine ((m7)G) cap prevent immunorecognition. Here we show that the methylation status of endogenous capped mRNA at the 5'-terminal nucleotide (N1) was crucial to prevent RIG-I activation. Moreover, we identified a single conserved amino acid (H830) in the RIG-I RNA binding pocket as the mediator of steric exclusion of N1-2'O-methylated RNA. H830A alteration (RIG-I(H830A)) restored binding of N1-2'O-methylated pppRNA. Consequently, endogenous mRNA activated the RIG-I(H830A) mutant but not wild-type RIG-I. Similarly, knockdown of the endogenous N1-2'O-methyltransferase led to considerable RIG-I stimulation in the absence of exogenous stimuli. Studies involving yellow-fever-virus-encoded 2'O-methyltransferase and RIG-I(H830A) revealed that viruses exploit this mechanism to escape RIG-I. Our data reveal a new role for cap N1-2'O-methylation in RIG-I tolerance of self-RNA. "	"Does pediatric cochlear implant insertion technique affect intraoperative neural response telemetry thresholds? Recent reports of mostly adult patients suggest round window insertion is less traumatic than cochleostomy for cochlear implantation (CI), while other reports have indicated that curved electrode arrays lower the neural response telemetry (NRT) threshold and consume less power. We aimed to compare the intraoperative neural response telemetry (NRT) thresholds in children receiving cochlear implants through a cochleostomy (COCH) vs. a round window (RW) approach, as well as patients receiving a curved array vs. a straight one. A direct case-cohort comparison of NRT in pediatric CI recipients at two large tertiary pediatric hospitals from 2008 through 2014 was done. Univariate Mann-Whitney analyses and one-wayANOVA were performed to compare average NRT in RW vs. COCH insertion, and curved vs. straight electrodes. Multivariate regression was performed to control for age and pre- vs. postlingual patient status. Overall, 236 children were included, between January 2008 and October 2014 at two large tertiary referral medical centers. A total of 52 patients received a RW insertion and 184 received a cochleostomy. There was no statistically significant difference between RW insertion (187.9±18.7) and COCH (183.4±17.1) (p=0.125). The patients were divided into four categories: RW insertion with curved electrode (175.0±11.2), RW with straight electrode (192.1±18.8), COCH with curved electrode (182.2±16.7), and COCH with straight electrode (193.0±20.8). The lowest NRT current thresholds were achieved with curved electrode array insertions through the RW (p=0.001). Multivariate regression analysis revealed the following parameters were not independently associated with differences in NRT responses: RWI vs. COCH (p=0.12) and pre- vs. postlingual (p=0.18). The difference in NRT levels between curved electrode arrays and straight was shown to be statistically significant (p=0.00075). When controlling for insertion technique or pre- vs. postlingual hearing loss, the curved electrode array correlates with lower NRT thresholds. Although studies to examine functional language performance of these recipients are pending, initial results of this multi-institutional trial suggest that curved electrodes indeed result in lower NRT levels, particularly when inserted through the RW."	"Carboxymethyl modification of konjac glucomannan affects water binding properties. The water binding properties of konjac glucomannan (KGM) and carboxymethyl konjac glucomannan (CMKGM) are important for their application in food, pharmaceutical, and chemical engineering fields. The equilibrium moisture content of CMKGM was lower than that of KGM at the relative humidity in the range 30-95% at 25°C. The water absorption and solubility of CMKGM in water solution were lower than that of KGM at 25°C. Carboxymethyl modification of KGM reduces the water adsorption, absorption, and solubility. Both carboxymethylation and deacetylation could confer hydrophobicity for CMKGM. These data provide the basis for expanding CMKGM application. "	"In vivo quantification of cochlin in glaucomatous DBA/2J mice using optical coherence tomography. The expression of cochlin in the trabecular meshwork (TM) precedes the clinical glaucoma symptoms in DBA/2J mice. The ability to quantify cochlin in the local tissue (TM) offers potential diagnostic and prognostic values. We present two (spectroscopic and magnetomotive) optical coherence tomography (OCT) approaches for in vivo cochlin quantification in a periodic manner. The cochlin-antibody OCT signal remains stable for up to 24 hours as seen at 3.5 hours after injection allowing for repeated quantification in the living mouse eyes. "	"dDsk2 regulates H2Bub1 and RNA polymerase II pausing at dHP1c complex target genes. dDsk2 is a conserved extraproteasomal ubiquitin receptor that targets ubiquitylated proteins for degradation. Here we report that dDsk2 plays a nonproteolytic function in transcription regulation. dDsk2 interacts with the dHP1c complex, localizes at promoters of developmental genes and is required for transcription. Through the ubiquitin-binding domain, dDsk2 interacts with H2Bub1, a modification that occurs at dHP1c complex-binding sites. H2Bub1 is not required for binding of the complex; however, dDsk2 depletion strongly reduces H2Bub1. Co-depletion of the H2Bub1 deubiquitylase dUbp8/Nonstop suppresses this reduction and rescues expression of target genes. RNA polymerase II is strongly paused at promoters of dHP1c complex target genes and dDsk2 depletion disrupts pausing. Altogether, these results suggest that dDsk2 prevents dUbp8/Nonstop-dependent H2Bub1 deubiquitylation at promoters of dHP1c complex target genes and regulates RNA polymerase II pausing. These results expand the catalogue of nonproteolytic functions of ubiquitin receptors to the epigenetic regulation of chromatin modifications. "	"Targeted Exome Sequencing of Deafness Genes After Failure of Auditory Phenotype-Driven Candidate Gene Screening. To demonstrate the efficacy and advantages of targeted exome sequencing (TES) of known deafness genes in cases with failed or misleading auditory phenotype-driven candidate gene screening. Prospective cohort survey. Otolaryngology department of a tertiary referral hospital. Six hearing-impaired probands with seemingly non-syndromic features from six deaf families were enrolled in this study after failure of genetic diagnosis using auditory phenotype-driven candidate gene screening. TES of known deafness genes was performed in the six probands, and a final causative variant was pursued using subsequent filtering steps. Potential causative variants determined using TES were confirmed by previously introduced filtering steps. We detected causative variants in three (50%) of six families, and these variants were in the COCH, PAX3, and GJB2 genes. Additionally, we also recapitulated the recent finding from other report arguing for the non-pathogenic potential of MYO1A variant. TES of a deafness panel provides a comprehensive genetic screening tool that can be implemented without being misled by the audiogram configuration information and can complement incomplete clinical physical examinations. In addition, the secondary incidental finding obtained by TES contributes useful information regarding the deafness field."	"Reward and Toxicity of Cocaine Metabolites Generated by Cocaine Hydrolase. Butyrylcholinesterase (BChE) gene therapy is emerging as a promising concept for treatment of cocaine addiction. BChE levels after gene transfer can rise 1000-fold above those in untreated mice, making this enzyme the second most abundant plasma protein. For months or years, gene transfer of a BChE mutated into a cocaine hydrolase (CocH) can maintain enzyme levels that destroy cocaine within seconds after appearance in the blood stream, allowing little to reach the brain. Rapid enzyme action causes a sharp rise in plasma levels of two cocaine metabolites, benzoic acid (BA) and ecgonine methyl ester (EME), a smooth muscle relaxant that is mildly hypotensive and, at best, only weakly rewarding. The present study, utilizing Balb/c mice, tested reward effects and cardiovascular effects of administering EME and BA together at molar levels equivalent to those generated by a given dose of cocaine. Reward was evaluated by conditioned place preference. In this paradigm, cocaine (20 mg/kg) induced a robust positive response but the equivalent combined dose of EME + BA failed to induce either place preference or aversion. Likewise, mice that had undergone gene transfer with mouse CocH (mCocH) showed no place preference or aversion after repeated treatments with a near-lethal 80 mg/kg cocaine dose. Furthermore, a single administration of that same high cocaine dose failed to affect blood pressure as measured using the noninvasive tail-cuff method. These observations confirm that the drug metabolites generated after CocH gene transfer therapy are safe even after a dose of cocaine that would ordinarily be lethal. "	"Self-assembly and emulsification properties of hydrophobically modified inulin. A series of alkenylated inulin samples were synthesized in aqueous solution using alkenyl succinic anhydrides with varying alkenyl chain lengths (C8-C18). The inulin derivatives (ASA-inulins) were characterized using NMR and FTIR and their degree of substitution determined. The solution properties of ASA-inulins were investigated using dye solubilization, surface tension, and dynamic light scattering, and all three techniques confirmed that the molecules aggregated in solution above a critical concentration (critical aggregation concentration, CAC). The value of the CAC was found to be reasonably consistent between the different techniques and was shown to decrease with increasing alkenyl chain length, from 0.08% for the octenyl succinylated sample to 0.005% for the octadecenyl succinylated sample. The hydrodynamic diameter of ASA-inulins above the CAC was determined from dynamic light scattering studies and was shown to increase with alkenyl chain length, from 4 nm for the octenyl derivative to 55 nm for the hexadecenyl derivative. All ASA-inulins were shown to be able to produce oil-in-water emulsions with a droplet size similar to that of emulsions prepared using Tween 20 on storing for 21 days. The fact that the derivatives are able to form micellarlike aggregates and stabilize emulsions makes them suitable candidates for the encapsulation and delivery of water-insoluble active compounds, with potential application in food, cosmetic, personal care, and pharmaceutical formulations. "	"Detailed hearing and vestibular profiles in the patients with COCH mutations. To evaluate the clinical features of Japanese DFNA9 families with mutations of the COCH gene. Mutation screening was performed using targeted next-generation sequencing (NGS) for 63 previously reported deafness genes. The progression of hearing loss and vestibular dysfunction were evaluated by pure-tone audiometry, caloric testing, cVEMP, and computed dynamic posturography. We detected 1 reported mutation of p.G88E and 2 novel mutations of p.I372T and p.C542R. The patients with the novel mutations of p.I372T and p.C542R within the vWFA2 domain showed early onset progressive hearing loss, and the patients with the p.G88E mutation showed late onset hearing loss and acute hearing deterioration over a short period. Vestibular symptoms were reported in the patients with p.G88E and p.C542R. Vestibular testing was performed for the family with the p.G88E mutation. Severe vestibular dysfunction was observed in the proband, and the proband's son showed unilateral semicircular canal dysfunction with mild hearing loss. Targeted exon resequencing of selected genes using NGS successfully identified mutations in the relatively rare deafness gene, COCH, in the Japanese population. The phenotype is compatible with that described in previous reports. Additional supporting evidence concerning progressive hearing loss and deterioration of vestibular function was obtained from our study."	"Targeted genomic capture and massively parallel sequencing to identify novel variants causing Chinese hereditary hearing loss. Hereditary hearing loss is genetically heterogeneous, and hundreds of mutations in than 60 genes are involved in this disease. Therefore, it is difficult to identify the causative gene mutations involved. In this study, we combined targeted genomic capture and massively parallel sequencing (MPS) to address this issue. Using targeted genomic capture and MPS, 104 genes and three microRNA regions were selected and simultaneously sequenced in 23 unrelated probands of Chinese families with nonsyndromic hearing loss. The results were validated by Sanger sequencing for all available members of the probands' families. To analyze the possible pathogenic functional effects of the variants, three types of prediction programs (Mutation Taster, PROVEAN and SIFT) were used. A total of 195 healthy Chinese Han individuals were compared as controls to verify the novel causative mutations. Of the 23 probands, six had mutations in DFNA genes [WFS1 (n = 2), COCH, ACTG1, TMC1, and POU4F3] known to cause autosomal dominant nonsyndromic hearing loss. These included one novel in-frame indel mutation, three novel missense mutations and two reported missense mutations. Furthermore, one proband from a family with recessive DFNB carried two monoallelic mutations in the GJB2 and USH2A genes. All of these mutations co-segregated with the hearing loss phenotype in 36 affected individuals from 7 families and were predicted to be pathogenic. Mutations in uncommon deafness genes contribute to a portion of nonsyndromic deafness cases. In the future, critical gene mutations may be accurately and quickly identified in families with hereditary hearing loss by targeted genomic capture and MPS."	"Cytokine-induced killer (CIK) cells in cancer immunotherapy: report of the international registry on CIK cells (IRCC). Cytokine-induced killer (CIK) cells represent an exceptional T cell population uniting a T cell and natural killer cell like phenotype in their terminally differentiated CD3(+)CD56(+) subset, which features non-MHC-restricted tumor-killing activity. CIK cells are expandable from peripheral blood mononuclear cells and mature following the addition of certain cytokines. CIK cells have provided encouraging results in initial clinical studies and revealed synergistic antitumor effects when combined with standard therapeutic procedures. Therefore, we established the international registry on CIK cells in order to collect and evaluate data about clinical trials using CIK cells for the treatment of cancer patients. Moreover, our registry is expected to set new standards on the reporting of results from clinical trials using CIK cells. Clinical responses, overall survival (OS), adverse reactions and immunologic effects were analyzed in 45 studies present in our database. These studies investigated 22 different tumor entities altogether enrolling 2,729 patients. A mean response rate of 39 % and significantly increased OS, accompanied by an improved quality of life, were reported. Interestingly, side effects of CIK cell treatment were minor. Mild fevers, chills, headache and fatigue were, however, seen regularly after CIK cell infusion. Moreover, CIK cells revealed numerous immunologic effects such as changes in T cell subsets, tumor markers, cytokine secretion and HBV viral load. Due to their easy availability and potent antitumor activity, CIK cells emerged as a promising immunotherapy approach in oncology and may gain major importance on the prognosis of cancer."	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Identification of pathogenic mechanisms of COCH mutations, abolished cochlin secretion, and intracellular aggregate formation: genotype-phenotype correlations in DFNA9 deafness and vestibular disorder. Mutations in COCH (coagulation factor C homology) cause autosomal-dominant nonsyndromic hearing loss with variable degrees of clinical onset and vestibular malfunction. We selected eight uncharacterized mutations and performed immunocytochemical and Western blot analyses to track cochlin through the secretory pathway. We then performed a comprehensive analysis of clinical information from DFNA9 patients with all 21 known COCH mutations in conjunction with cellular and molecular findings to identify genotype-phenotype correlations. Our studies revealed that five mutants were not secreted into the media: two von Willebrand factor A (vWFA) domain mutants, which were not transported from the endoplasmic reticulum to Golgi complex and formed high-molecular-weight aggregates in cell lysates, and three LCCL domain mutants, which were detected as intracellular dimeric cochlins. Mutant cochlins that were not secreted and accumulated in cells result in earlier age of onset of hearing defects. In addition, individuals with LCCL domain mutations show accompanying vestibular dysfunction, whereas those with vWFA domain mutations exhibit predominantly hearing loss. This is the first report showing failure of mutant cochlin transport through the secretory pathway, abolishment of cochlin secretion, and formation and retention of dimers and large multimeric intracellular aggregates, and high correlation with earlier onset and progression of hearing loss in individuals with these DFNA9-causing mutations. "	"Exome sequencing identifies a novel frameshift mutation of MYO6 as the cause of autosomal dominant nonsyndromic hearing loss in a Chinese family. Autosomal dominant types of nonsyndromic hearing loss (ADNSHL) are typically postlingual in onset and progressive. High genetic heterogeneity, late onset age, and possible confounding due to nongenetic factors hinder the timely molecular diagnoses for most patients. In this study, exome sequencing was applied to investigate a large Chinese family segregating ADNSHL in which we initially failed to find strong evidence of linkage to any locus by whole-genome linkage analysis. Two affected family members were selected for sequencing. We identified two novel mutations disrupting known ADNSHL genes and shared by the sequenced samples: c.328C&gt;A in COCH (DFNA9) resulting in a p.Q110K substitution and a deletion c. 2814_2815delAA in MYO6 (DFNA22) causing a frameshift alteration p.R939Tfs*2. The pathogenicity of novel coding variants in ADNSHL genes was carefully evaluated by analysis of co-segregation with phenotype in the pedigree and in light of established genotype-phenotype correlations. The frameshift deletion in MYO6 was confirmed as the causative variant for this pedigree, whereas the missense mutation in COCH had no clinical significance. The results allowed us to retrospectively identify the phenocopy in one patient that contributed to the negative finding in the linkage scan. Our clinical data also supported the emerging genotype-phenotype correlation for DFNA22. "	"Cochlin in autoimmune inner ear disease: is the search for an inner ear autoantigen over? Autoimmune inner ear disease (AIED) is characterised by a rapidly progressive, often fluctuating, bilateral sensorineural hearing loss over a period of weeks to months. It is an uncommon disease accounting for less than 1% of all cases of hearing impairment or dizziness. The diagnosis is often missed and this impacts on the prognosis as the condition responds well to steroids and immunosuppressants if recognised early. No useful specific test for autoimmunity affecting the inner ear exists. To gather evidence regarding cochlin in AIED. Systematic review of human studies and animal experimental studies on inner ear antigens was undertaken. We searched MEDLINE (1965-2012), and Pubmed for relevant studies. A combination of key words for inner ear, autoimmunity (autoimmune, immune mediated) and cochlin were used. A number of antigens have been implicated in autoimmune inner ear disease. Cochlin is a major component of the extracellular matrix in the inner ear and a promising candidate. We present evidence in literature on the role of this protein in the pathogenesis of autoimmune inner ear disease."	"Cochlin in normal middle ear and abnormal middle ear deposits in DFNA9 and Coch (G88E/G88E) mice. DFNA9 sensorineural hearing loss and vestibular disorder, caused by mutations in COCH, has a unique identifying histopathology including prominent acellular deposits in cochlear and vestibular labyrinths. A recent study has shown presence of deposits also in middle ear structures of DFNA9-affected individuals (McCall et al., J Assoc Res Otolaryngol 12:141-149, 2004). To investigate the possible role of cochlin in the middle ear and in relation to aggregate formation, we evaluated middle ear histopathology in our Coch knock-in (Coch (G88E/G88E) ) mouse model, which harbors one of the DFNA9-causative mutations. Our findings reveal accumulation of acellular deposits in the incudomalleal and incudostapedial joints in Coch (G88E/G88E) mice, similar to those found in human DFNA9-affected temporal bones. Aggregates are absent in negative control Coch (+/+) and Coch (-/-) mice. Thickening of the tympanic membrane (TM) found in humans with DFNA9 was not appreciably detected in Coch (G88E/G88E) mice at the evaluated age. We investigated cochlin localization first in the Coch (+/+)mouse and in normal human middle ears, and found prominent and specific cochlin staining in the incudomalleal joint, incudostapedial joint, and the pars tensa of the TM, which are the three sites where abnormal deposits are detected in DFNA9-affected middle ears. Cochlin immunostaining of Coch (G88E/G88E) and DFNA9-affected middle ears showed mutant cochlin localization within areas of aggregates. Cochlin staining was heterogeneous throughout DFNA9 middle ear deposits, which appear as unorganized and overlapping mixtures of both eosinophilic and basophilic substances. Immunostaining for type II collagen colocalized with cochlin in pars tensa of the tympanic membrane. In contrast, immunostaining for type II collagen did not overlap with cochlin in interossicular joints, where type II collagen was localized in the region of the chondrocytes, but not in the thin layer of the articular surface of the ossicles nor in the eosinophilic deposits with specific cochlin staining. "	"The N400 and the fourth grade shift. While behavioral and educational data characterize a fourth grade shift in reading development, neuroscience evidence is relatively lacking. We used the N400 component of the event-related potential waveform to investigate the development of single word processing across the upper elementary years, in comparison to adult readers. We presented third graders, fourth graders, fifth graders, and college students with a well-controlled list of real words, pseudowords, letter strings, false font strings, and animal name targets. Words and pseudowords elicited similar N400s across groups. False font strings elicited N400s similar to words and letter strings in the three groups of children, but not in college students. The pattern of findings suggests relatively adult-like semantic and phonological processing by third grade, but a long developmental time course, beyond fifth grade, for orthographic processing in this context. Thus, the amplitude of the N400 elicited by various word-like stimuli does not reflect some sort of shift or discontinuity in word processing around the fourth grade. However, the results do suggest different developmental time courses for the processes that contribute to automatic single word reading and the integrative N400. "	"HIPEC ROC I: a phase I study of cisplatin administered as hyperthermic intraoperative intraperitoneal chemoperfusion followed by postoperative intravenous platinum-based chemotherapy in patients with platinum-sensitive recurrent epithelial ovarian cancer. This phase I study tested the safety, feasibility, pharmacokinetics and pharmacodynamics of cisplatin administered as hyperthermic intraoperative intraperitoneal chemoperfusion (HIPEC) in patients with platinum-sensitive recurrent epithelial ovarian cancer (EOC) undergoing secondary cytoreductive surgery followed by postoperative platinum-based intravenous chemotherapy. Twelve patients with operable, recurrent platinum-sensitive EOC (recurrence ≥6 months after first-line therapy) were included according to the classical 3+3 dose-escalation design at three dose levels-60, 80 and 100 mg/m(2). After surgical cytoreduction, a single dose of cisplatin was administered via HIPEC for 90 min at 41-43°C. Postoperatively, all patients were treated with standard intravenous platinum-based combination chemotherapy. One of six patients experienced a dose-limiting toxicity (grade 3 renal toxicity) at a dose of 100 mg/m(2). The remaining five patients treated with 100 mg/m(2) tolerated their treatment well. The recommended phase II dose was established at 100 mg/m(2). The mean peritoneal-to-plasma AUC ratio was 19·5 at the highest dose level. Cisplatin-induced DNA adducts were confirmed in tumor samples. Common postoperative grade 1-3 toxicities included fatigue, postoperative pain, nausea, and surgical site infection. The ability to administer standard intravenous platinum-based chemotherapy after HIPEC was uncompromised. Cisplatin administered as HIPEC at a dose of 100 mg/m(2) has an acceptable safety profile in selected patients undergoing secondary cytoreductive surgery for platinum-sensitive recurrent EOC. Favorable pharmacokinetic and pharmacodynamic properties of HIPEC with cisplatin were confirmed at all dose levels, especially at 100 mg/m(2). The results are encouraging to determine the efficacy of HIPEC as a complementary treatment in patients with EOC."	"Antiangiogenic and antifibrogenic activity of pigment epithelium-derived factor (PEDF) in bile duct-ligated portal hypertensive rats. Antiangiogenic strategies have been proposed as a promising new approach for the therapy of portal hypertension and chronic liver disease. Pigment epithelium-derived factor (PEDF) is a powerful endogenous angiogenesis inhibitor whose role in portal hypertension remains unknown. Therefore, we aimed at determining the involvement of PEDF in cirrhotic portal hypertension and the therapeutic efficacy of its supplementation. PEDF expression profiling and its relationship with vascular endothelial growth factor (VEGF), neovascularisation and fibrogenesis was determined in bile duct-ligated (BDL) rats and human cirrhotic livers. The ability of exogenous PEDF overexpression by adenovirus-mediated gene transfer (AdPEDF) to inhibit angiogenesis, fibrogenesis and portal pressure was also evaluated in BDL rats, following prevention and intervention trials. PEDF was upregulated in cirrhotic human and BDL rat livers. PEDF and VEGF protein expression and localisation in mesentery and liver increased in parallel with portal hypertension progression, being closely linked in time and space with mesenteric neovascularisation and liver fibrogenesis in BDL rats. Furthermore, AdPEDF increased PEDF bioavailability in BDL rats, shifting the net balance in the local abundance of positive (VEGF) and negative (PEDF) angiogenesis drivers in favour of attenuation of portal hypertension-associated pathological neovascularisation. The antiangiogenic effects of AdPEDF targeted only pathological angiogenesis, without affecting normal vasculature, and were observed during early stages of disease. AdPEDF also significantly decreased liver fibrogenesis (through metalloproteinase upregulation), portosystemic collateralisation and portal pressure in BDL rats. This study provides compelling experimental evidence indicating that PEDF could be a novel therapeutic agent worthy of assessment in portal hypertension and cirrhosis."	"Copper thiocyanato complexes and cocaine - a case of 'black cocaine'. The chemical composition of a black powder confiscated by German customs was elucidated. Black powders are occasionally used as a 'transporter' for cocaine and are obviously especially designed to cloak the presence of the drug. The material consisting of cocaine, copper, iron, thiocyanate, and graphite was approached by analytical tools and chemical modelling. Graphite is added to the material probably with the intention of masking the typical infrared (IR) fingerprints of cocaine and can be clearly detected by powder X-ray diffraction (XRD) and Raman spectroscopy. Cu(2+) and NCS(-) ions, when carefully reacted with cocaine hydrochloride, form the novel compound (CocH)2 [Cu(NCS)4 ] (CocH(+) = protonated cocaine), which has been characterised by single crystal XRD, IR, NMR, UV/Vis absorption and EPR spectroscopy. Based on some further experiments the assumed composition of the original black powder is discussed."	"Identification of a human splenic marginal zone B cell precursor with NOTCH2-dependent differentiation properties. Mouse splenic marginal zone precursors (MZPs) differentiate into marginal zone B (MZB) cells under a signaling pathway involving Notch2 and its ligand, delta-like 1 ligand (Dll1). We report the identification of an MZP subset in the spleen of young children. These MZPs differentiate into MZ-like B cells in vitro in the presence of OP9 cells expressing human DLL1, as demonstrated by the up-regulation of classical MZB cell markers. A set of diagnostic genes discriminating IgM(+)IgD(+)CD27(+) blood and splenic MZB cells from switched B cells was identified (up-regulation of SOX7, down-regulation of TOX, COCH, and HOPX), and their expression during the induction assay mirrored the one of MZB cells. Moreover, Alagille patients with a NOTCH2 haploinsufficiency display a marked reduction of IgM(+)IgD(+)CD27(+) B cells in blood, whereas their switched memory B cells are not affected. Altogether, these results argue in favor of the existence of a rodent-like MZB cell lineage in humans. "	"Focal sclerosis of semicircular canals with severe DFNA9 hearing impairment caused by a P51S COCH-mutation: is there a link? Focal sclerosis of one or more semicircular canals on computed tomographic (CT) scans and a corresponding signal loss on magnetic resonance (MR) imaging are radiologic lesions that are linked to patients who are suffering from advanced otovestibular impairment caused by hereditary DFNA9 hearing loss. DFNA9 is a hereditary hearing loss that is characterized by late-onset progressive imbalance and hearing deterioration, caused by mutations in the COCH gene. To date, no radiologic lesions have been associated with this condition. A retrospective chart review Tertiary referral center The radiologic data of 9 patients who presented between 2007 and 2012 with otovestibular deterioration caused by a mutation in the COCH gene were reviewed. All 9 subjects were carriers of the same c.151C &gt; T, p.Pro51Ser (P51S) - missense mutation in the COCH gene. In 8 of them similar sclerotic lesions and/or narrowing were demonstrated in one or more semicircular canals on computed tomography CT scan, with a signal loss at corresponding areas on T2-weighted magnetic resonance (MR) images. In 1 patient, the posterior part of the vestibule was also affected. The posterior canals were affected in most cases (58%), compared with the superior (21%) and lateral canals (16%) or the vestibule (5%). Only 68.4% of the lesions on MR images were also visible on CT scans, suggesting a fibrotic process without calcification. Ears presenting radiologic lesions showed significantly more severe hearing loss (median PTA 104 dB HL) compared with unaffected ears (58 dB HL). Eight of 9 subjects with the same P51S mutation in the COCH gene showed similar radiologic lesions, affecting the PSCC in the majority of the cases. These radiologic abnormalities occurred in more advanced stages of the otovestibular deterioration, supporting the hypothesis that these lesions might represent the end phase of a low-grade chronic inflammation or protein deposition. A new phenotypic and characteristic radiologic feature of DFNA9 has been discovered."	"Role of Exosomes Released by Dendritic Cells and/or by Tumor Targets: Regulation of NK Cell Plasticity. Exosomes are endosomal-derived nanovesicles released by normal and tumor cells, which transfer functionally active proteins, lipids, and nucleic acids between cells. They are important mediators of intercellular communication and act on the adjacent stroma as well as in the periphery. Recently, exosomes have been recognized to play a pathophysiological role in various diseases such as cancer or infectious diseases. Tumor cell-derived exosomes (Tex) have been shown to act as tumor promotors by educating non-malignant cells to provide a tumor supporting microenvironment, which helps to circumvent immune detection by the host and supports metastasis. However, Tex with anti-tumor, immune-activating properties were also described reflecting the complexity of exosomes. Here, we assess the role of extracellular microvesicles/exosomes as messengers affecting NK cell function in health and disease and discuss the molecular basis for the differential impact of exosomes on NK cell activity. The molecular composition/load of exosomes and the mechanisms regulating their release remain unclear and need to be further analyzed to facilitate the development of new treatment options targeting the exosomal machinery. "	"Alkaloids from Coptis chinensis root promote glucose uptake in C2C12 myotubes. The root of Coptis chinensis Franch. (COCH) is regularly used for medicinal purposes, and has been prescribed alone or in combination with other traditional herbs for the treatment of diabetes. To investigate the effects of COCH on glucose utilization by skeletal muscles, we prepared an ethanol extract of COCH root (COCH-Et) partitioned with dichloromethane, n-butanol, and water and tested its effects on glucose uptake in differentiated C2C12 myotubes. We found that dichloromethane and n-butanol sub-fractions of COCH-Et promoted glucose uptake in differentiated C2C12 cells at 50 μg/mL. Further fractionation of these preparations by using column chromatography, analysis of their effects on glucose uptake and characterization using nuclear magnetic resonance, mass spectrometry, and thin layer chromatography helped identify two new alkaloids, 8,13-dioxocoptisine hydroxide (1) and coptisonine (2), together with eleven known compounds. These were isolated from the dichloromethane layer of COCH-Et. In particular, exposure of C2C12 cells to berberine (6) at 12.5 and 6.25 μg/mL for 24h resulted in significant promotion of glucose uptake. Coptisonine (2) and octadecyl caffeate (9) also stimulated glucose uptake at 25 and 50 μg/mL. These findings indicate that active constituents of COCH root may help alleviate hyperglycemia in diabetes by promoting glucose uptake by skeletal muscles."	"Fluorescence enhancement of europium (III) perchlorate by 1,10-phenanthroline on the 1-(naphthalen-2-yl)-2-(phenylsulthio)ethanone complex and luminescence mechanism. A novel ligand, 1-(naphthalen-2-yl)-2-(phenylsulthio)ethanone was synthesized using a new method and its two europium (Eu) (III) complexes were synthesized. The compounds were characterized by elemental analysis, coordination titration analysis, molar conductivity, infrared, thermo gravimetric analyzer-differential scanning calorimetry (TGA-DSC), (1)H NMR and UV spectra. The composition was suggested as EuL5 · (ClO4)3 · 2H2O and EuL4 · phen(ClO4)3 · 2H2O (L = C(10)H(7)COCH(2)SOC(6)H(5)). The fluorescence spectra showed that the Eu(III) displayed strong characteristic metal-centered fluorescence in the solid state. The ternary rare earth complex showed stronger fluorescence intensity than the binary rare earth complex in such material. The strongest characteristic fluorescence emission intensity of the ternary system was 1.49 times as strong as that of the binary system. The phosphorescence spectra were also discussed."	"Synthesis and antioxidant properties of gum arabic-stabilized selenium nanoparticles. Selenium nanoparticles (SeNPs) were prepared by using gum arabic (GA) as the stabilizer in a facile synthetic approach. The size, morphology, stability and antioxidant activity in vitro of the gum arabic-selenium nanocomposites (GA-SeNPs) were characterized by transmission electron microscopy (TEM), dynamic light scattering (DLS), Fourier-transform infrared spectroscopy (FTIR), atomic force microscopy (AFM) and ultraviolet-visible spectrophotometry (UV-vis). SeNPs (particle size of ∼34.9 nm) can be stabilized in gum arabic aqueous solutions for approximately 30 days. FTIR results show that SeNPs were combined to the hydroxyl groups of GA. In the present work, the alkali-hydrolyzed GA (AHGA) was also prepared and its efficiency in stabilizing SeNPs was compared with GA. It was concluded that the branched structure of GA was a significant factor for the functionality. The hydroxyl radical scavenging ability and DPPH scavenging ability of GA-SeNPs were higher than those of AHGA-SeNPs and could reach 85.3±2.6%, 85.3±1.9% at a concentration of 4 mg/ml, respectively."	"Long-term reduction of cocaine self-administration in rats treated with adenoviral vector-delivered cocaine hydrolase: evidence for enzymatic activity. A new pharmacokinetic approach treating cocaine addiction involves rapidly metabolizing cocaine before it reaches brain reward centers using mutated human butyrylcholinesterase (BChE) or cocaine hydrolase (CocH). Recent work has shown that helper-dependent adenoviral (hdAD) vector-mediated plasma CocH reduced the locomotor-activating effects of cocaine and prevented reinstatement of cocaine-seeking behavior up to 6 months in rats. The present study investigated whether hdAD-CocH could decrease ongoing intravenous cocaine (0.4 mg/kg) self-administration. The hdAD-CocH vector was injected into self-administering rats, and after accumulation of plasma CocH, there was a dramatic reduction in cocaine infusions earned under a fixed ratio 1 schedule of reinforcement that lasted for the length of the study (&gt;2 months). Pretreatment with the selective BChE and CocH inhibitor iso-OMPA (1.5 mg/kg) restored cocaine intake; therefore, the decline in self-administration was likely due to rapid CocH-mediated cocaine metabolism. Direct measurements of cocaine levels in plasma and brain samples taken after the conclusion of behavioral studies provided strong support for this conclusion. Further, rats injected with hdAD-CocH did not experience a deficit in operant responding for drug reinforcement and self-administered methamphetamine (0.05 mg/kg) at control levels. Overall, these outcomes suggest that viral gene transfer can yield plasma CocH levels that effectively diminish long-term cocaine intake and may have potential treatment implications for cocaine-dependent individuals seeking to become and remain abstinent."	"Disruption of negative feedback loop between vasohibin-1 and vascular endothelial growth factor decreases portal pressure, angiogenesis, and fibrosis in cirrhotic rats. Pathological angiogenesis represents a critical hallmark for chronic liver diseases. Understanding the mechanisms regulating angiogenesis is essential to develop new therapeutic strategies that specifically target pathological angiogenesis without affecting physiological angiogenesis. Here we investigated the contribution and therapeutic impact of the endogenous angioinhibitor vasohibin-1 in portal hypertension and cirrhosis. The spatiotemporal expression profiling of vasohibin-1 and its relationship with vascular endothelial growth factor (VEGF), angiogenesis, and fibrogenesis was determined through the analysis of human cirrhotic liver specimens, widely accepted in vivo animal models of portal hypertension and cirrhosis, and in vitro angiogenesis assays. Effects of vasohibin-1 overexpression by adenoviral-mediated gene transfer on angiogenesis, fibrogenesis, and portal hypertension-associated hemodynamic alterations were also studied in rats. We found that vasohibin-1 and VEGF are up-regulated, in mesentery and liver, in cirrhotic and precirrhotic portal hypertensive rats and cirrhosis patients. Our results are consistent with vasohibin-1/VEGF cascades being spatially and temporally coordinated through a negative-feedback loop driving pathological angiogenesis. Paradoxically, further overexpression of vasohibin-1 by adenoviral gene transfer exerts multifold beneficial effects in portal hypertension and cirrhosis: reduction of pathologic angiogenesis, attenuation of liver fibrogenesis partly mediated through inhibition of hepatic stellate cell activation, and significant decreases in portocollateralization, splanchnic blood flow, portohepatic resistance, and portal pressure. The explanation for this apparent contradiction is that, unlike endogenous vasohibin-1, the ectopic overexpression is not regulated by VEGF and therefore disrupts the negative-feedback loop, thus generating constant, but lower levels of VEGF synthesis sufficient to maintain vascular homeostasis but not pathological angiogenesis. Our study provides evidence that vasohibin-1 regulates portal hypertension-associated pathological angiogenesis and highlights that increasing vasohibin-1 might be a promising novel therapeutic strategy for portal hypertension and cirrhosis."	"Genetics of dizziness: cerebellar and vestibular disorders. Recent advances in next generation sequencing techniques (NGS) are increasing the number of novel genes associated with cerebellar and vestibular disorders. We have summarized clinical and molecular genetics findings in neuro-otolology during the last 2 years. Whole-exome and targeted sequencing have defined the genetic basis of dizziness including new genes causing ataxia: GBA2, TGM6, ANO10 and SYT14. Novel mutations in KCNA1 and CACNA1A genes are associated with episodic ataxia type 1 and type 2, respectively. Moreover, new variants in genes such as COCH, MYO7A and POU4F3 are associated with nonsyndromic deafness and vestibular dysfunction. Several susceptibility loci have been linked to familial vestibular migraine, suggesting genetic heterogeneity, but no specific gene has been identified. Finally, loci for complex and heterogeneous diseases such as bilateral vestibular hypofunction or familial Ménière disease have not been identified yet, despite their strong familial aggregation. Cerebellar and vestibular disorders leading to dizziness or episodic vertigo may show overlapping clinical features. A deep phenotyping including a complete familial history is a key step in performing a reliable molecular genetic diagnosis using NGS. Personalized molecular medicine will be essential to understand disease mechanisms as well as to improve their diagnosis and treatment."	"A randomized pilot study of stochastic vibration therapy in spinocerebellar ataxia. Whole body vibration (WBV) is a biomechanical treatment used widely in professional sports and rehabilitation. We examined the effect of stochastic WBV on ataxia in spinocerebellar ataxia types 1, 2, 3, and 6 (SCA 1, 2, 3 and 6) in a single-center double-blind sham-controlled study. Stochastic WBV was applied on four sequent days, each treatment consisting of five stimulus trains of 60-s duration at a frequency of 6.5 Hz and 60-s resting time between stimuli (n = 17). Patients allocated to the sham group received the same treatment with 1 Hz (n = 15). All patients were rated at baseline and after the last treatment using clinical scores (SARA, SCAFI, and INAS). After treatment, we found significant improvements of gait, posture, and speed of speech in the verum group while limb kinetics and ataxia of speech did not respond. Stochastic WBV might act on proprioceptive mechanisms and could also stimulate non-cerebellar/compensatory mechanisms. But at present, the involved cellular mechanism and the presumed neuronal loops cannot be deciphered. Thus, future work is needed to understand the mechanisms of whole body vibration. Finally, the use of stochastic WBV could provide a supplementation to treat ataxia in SCA and can be combined with physiotherapeutical motor training. "	"Analysis of COCH and TNFA variants in East Indian primary open-angle glaucoma patients. Glaucoma represents a heterogeneous group of optic neuropathies with a complex genetic basis. It is the second-largest cause of blindness in the world that reduces vision without warning and often without symptoms. Among 3 major subtypes of glaucoma, primary open-angle glaucoma (POAG) is the most common form. The focus of this study is to understand the molecular basis of the disease among Indian patients with respect to two genes, Cochlin (COCH) and tumor necrosis factor alpha (TNFA), selected based on reports of possible association with POAG. The genes were screened in patients and controls by PCR and direct sequencing. Although two novel changes (-450 C/T and -79 G/G) were identified in the 5'upstream region of COCH, no causal variant could be identified in either gene. -450 C/T was detected in 3 patients and 2 controls and -79 G/C in a single patient. Further, we did not observe significant association with the promoter SNPs of TNFA that had been previously reported to be associated with POAG pathogenesis. Thus, our study suggests lack of association of both COCH and TNFA with POAG pathogenesis. "	"A new small supernumerary marker chromosome involving 14pter → q12 in a child with severe neurodevelopmental retardation: case report and literature review. Unstable, gene-rich pericentric regions have been associated with various structural aberrations including small supernumerary marker chromosomes (sSMCs). We hereby report on a new sSMC derived from chromosome 14, generating trisomy 14pter → q12 in a child with severe neurodevelopmental delay. The patient featured facial dysmorphism, generalized hypotonia, transverse palmar creases, structural brain abnormality, and severe cognitive and motor impairment. Literature review indicated this to be a unique case of sSMC 14 which was only composed of pter → q12, and the phenotype secondary to duplications of the similar region partially overlaps with the phenotype reported in this study. The genetic analysis on our case helps to better delineate karyotype-phenotype correlations between proximal trisomy 14 and associated clinical phenomena, and we also propose that the involved chromosomal regions may contain dosage-sensitive genes which are important for the development."	"Clinical characterization of a novel COCH mutation G87V in a Chinese DFNA9 family. To characterize the clinical features of a Chinese DFNA9 family associated with a novel COCH mutation and to confirm the proposed genotype-phenotype correlation of COCH. Mutation screening of 79 deafness genes was performed in the proband by targeted next-generation sequencing. Co-segregation of the disease phenotype and the detected variants was confirmed in all family members by PCR amplification and Sanger sequencing. The progression of hearing impairment in affected family members was followed and the concomitant vestibular dysfunction was verified by the caloric vestibulo-ocular reflex test. A novel COCH mutation p.G87V was identified in the family segregating with late-onset, progressive sensorineural hearing impairment and consistent vestibular dysfunction. The p.G87V mutation leads to a very similar phenotype as a previously reported p.G87W mutation of COCH. Our study suggested that the G87 residue is critical for function of COCH and further confirms a previously proposed genotype-phenotype correlation for DFNA9."	"Diagnostic application of targeted resequencing for familial nonsyndromic hearing loss. Identification of causative genes for hereditary nonsyndromic hearing loss (NSHL) is important to decide treatment modalities and to counsel the patients. Due to the genetic heterogeneity in sensorineural genetic disorders, the high-throughput method can be adapted for the efficient diagnosis. To this end, we designed a new diagnostic pipeline to screen all the reported candidate genes for NSHL. For validation of the diagnostic pipeline, we focused upon familial NSHL cases that are most likely to be genetic, rather than to be infectious or environmental. Among the 32 familial NSHL cases, we were able to make a molecular genetic diagnosis from 12 probands (37.5%) in the first stage by their clinical features, characteristic inheritance pattern and further candidate gene sequencing of GJB2, SLC26A4, POU3F4 or mitochondrial DNA. Next we applied targeted resequencing on 80 NSHL genes in the remaining 20 probands. Each proband carried 4.8 variants that were not synonymous and had the occurring frequency of less than three among the 20 probands. These variants were then filtered out with the inheritance pattern of the family, allele frequency in normal hearing 80 control subjects, clinical features. Finally NSHL-causing candidate mutations were identified in 13(65%) of the 20 probands of multiplex families, bringing the total solve rate (or detection rate) in our familial cases to be 78.1% (25/32) Damaging mutations discovered by the targeted resequencing were distributed in nine genes such as WFS1, COCH, EYA4, MYO6, GJB3, COL11A2, OTOF, STRC and MYO3A, most of which were private. Despite the advent of whole genome and whole exome sequencing, we propose targeted resequencing and filtering strategy as a screening and diagnostic tool at least for familial NSHL to find mutations based upon its efficacy and cost-effectiveness."	"Experimental treatments for cocaine toxicity: a difficult transition to the bedside. Cocaine is a commonly abused illicit drug that causes significant morbidity and mortality. Although there is no true antidote to cocaine toxicity, current management strategies address the life-threatening systemic effects, namely hyperthermia, vasospasm, and severe hypertension. Clinicians rely on rapid cooling, benzodiazepines, and α-adrenergic antagonists for management, with years of proven benefit. Experimental agents have been developed to more effectively treat acute toxicity. Pharmacodynamic approaches include antipsychotics that are thought to interfere with cocaine's actions at several neurotransmitter receptors. However, these medications may worsen the consequences of cocaine toxicity as they can interfere with heat dissipation, cause arrhythmias, and lower the seizure threshold. Pharmacokinetic approaches use cocaine-metabolizing enzymes, such as butyrylcholinesterase (BChE), cocaine hydrolase (CocH), and bacterial cocaine esterase (CocE). Experimental models with these therapies improve survival, primarily when administered before cocaine, although newer evidence demonstrates beneficial effects shortly after cocaine toxicity has manifested. CocE, a foreign protein, can induce an immune response with antibody formation. When enzyme administration was combined with vaccination against the cocaine molecule, improvement in cocaine-induced locomotor activity was observed. Finally, lipid emulsion rescue has been described in human case reports as an effective treatment in patients with hemodynamic compromise because of cocaine, which correlates well with its documented benefit in toxicity due to other local anesthetics. A pharmaceutical developed from these concepts will need to be expedient in onset and effective with minimal adverse effects while at the same time being economical. "	"A human in vitro whole blood assay to predict the systemic cytokine response to therapeutic oligonucleotides including siRNA. Therapeutic oligonucleotides including siRNA and immunostimulatory ligands of Toll-like receptors (TLR) or RIG-I like helicases (RLH) are a promising novel class of drugs. They are in clinical development for a broad spectrum of applications, e.g. as adjuvants in vaccines and for the immunotherapy of cancer. Species-specific immune activation leading to cytokine release is characteristic for therapeutic oligonucleotides either as an unwanted side effect or intended pharmacology. Reliable in vitro tests designed for therapeutic oligonucleotides are therefore urgently needed in order to predict clinical efficacy and to prevent unexpected harmful effects in clinical development. To serve this purpose, we here established a human whole blood assay (WBA) that is fast and easy to perform. Its response to synthetic TLR ligands (R848: TLR7/8, LPS: TLR4) was on a comparable threshold to the more time consuming peripheral blood mononuclear cell (PBMC) based assay. By contrast, the type I IFN profile provoked by intravenous CpG-DNA (TLR9 ligand) in humans in vivo was more precisely replicated in the WBA than in stimulated PBMC. Since Heparin and EDTA, but not Hirudin, displaced oligonucleotides from their delivery agent, only Hirudin qualified as the anticoagulant to be used in the WBA. The Hirudin WBA exhibited a similar capacity as the PBMC assay to distinguish between TLR7-activating and modified non-stimulatory siRNA sequences. RNA-based immunoactivating TLR7/8- and RIG-I-ligands induced substantial amounts of IFN-α in the Hirudin-WBA dependent on delivery agent used. In conclusion, we present a human Hirudin WBA to determine therapeutic oligonucleotide-induced cytokine release during preclinical development that can readily be performed and offers a close reflection of human cytokine response in vivo. "	"Innate immune recognition of molds and homology to the inner ear protein, cochlin, in patients with autoimmune inner ear disease. Autoimmune Inner Ear Disease (AIED) is characterized by bilateral, fluctuating sensorineural hearing loss with periods of hearing decline triggered by unknown stimuli. Here we examined whether an environmental exposure to mold in these AIED patients is sufficient to generate a pro-inflammatory response that may, in part, explain periods of acute exacerbation of disease. We hypothesized that molds may stimulate an aberrant immune response in these patients as both several Aspergillus species and penecillium share homology with the LCCL domain of the inner ear protein, cochlin. We showed the presence of higher levels of anti-mold IgG in plasma of AIED patients at dilution of 1:256 (p = 0.032) and anti-cochlin IgG 1:256 (p = 0.0094 and at 1:512 p = 0.024) as compared with controls. Exposure of peripheral blood mononuclear cells (PBMC) of AIED patients to mold resulted in an up-regulation of IL-1β mRNA expression, enhanced IL-1β and IL-6 secretion, and generation of IL-17 expressing cells in mold-sensitive AIED patients, suggesting mold acts as a PAMP in a subset of these patients. Naïve B cells secreted IgM when stimulated with conditioned supernatant from AIED patients' monocytes treated with mold extract. In conclusion, the present studies indicate that fungal exposure can trigger autoimmunity in a subset of susceptible AIED patients. "	"Interaction between cochleata and stipule-reduced mutations results in exstipulate hypertrophied leaves in Pisum sativum L. In the wild type P. sativum, each of the adult plant stem nodes, bears a pair of sessile foliaceous stipules and a petiolated unipinnately compound leaf of 4 to 6 leaflets and 7-9 tendrils. The stipule-reduced (st) and cochleata (coch) single null mutants and coch st double null mutant differ fom the wild type in respectively having sessile stipules of much reduced size, petiolated simple and/or compound leaf-like stipules and no stipules. It is also known that coch leaves are somewhat bigger than st and wild type leaves. Here, pleiotropic phenotype of coch st double mutant was investigated. The morphologies of stipules and leaf were quantified in the field grown plants and microcultured shoots, latter in the presence and absence of gibberellic acid and N-1-naphthylphthalamic acid. The observations showed that as compared to the corresponding plants or shoots of COCH ST (WT) genotype, (a) coch st plants bore leaves in which all the organs were hypertrophied; (b) full complement of leaflets and 3-5 tendrils were formed on leaf; (c) the microcultured coch st shoots were taller despite lower number of nodes, and (d) they also produced leaves in which all the organs were bigger and the ratio of leaflets/tendrils was higher. It was concluded that in coch st double mutant (a) ST function is essential for stipule primordium differentiation, in the absence of COCH function and (b) absence of negative feedback loops between simple stipules and compound leaf for metabolite utilization allows hypertrophied growth in leaves."	"Gene transfer of mutant mouse cholinesterase provides high lifetime expression and reduced cocaine responses with no evident toxicity. Gene transfer of a human cocaine hydrolase (hCocH) derived from butyrylcholinesterase (BChE) by 5 mutations (A199S/F227A/S287G/A328W/Y332G) has shown promise in animal studies for treatment of cocaine addiction. To predict the physiological fate and immunogenicity of this enzyme in humans, a comparable enzyme was created and tested in a conspecific host. Thus, similar mutations (A199S/S227A/S287G/A328W/Y332G) were introduced into mouse BChE to obtain a mouse CocH (mCocH). The cDNA was incorporated into viral vectors based on: a) serotype-5 helper-dependent adenovirus (hdAD) with ApoE promoter, and b) serotype-8 adeno-associated virus with CMV promoter (AAV-CMV) or multiple promoter and enhancer elements (AAV-VIP). Experiments on substrate kinetics of purified mCocH expressed in HEK293T cells showed 30-fold higher activity (U/mg) with (3)H-cocaine and 25% lower activity with butyrylthiocholine, compared with wild type BChE. In mice given modest doses of AAV-CMV-mCocH vector (0.7 or 3 × 10(11) particles) plasma hydrolase activity rose 10-fold above control for over one year with no observed immune response. Under the same conditions, transduction of the human counterpart continued less than 2 months and antibodies to hCocH were readily detected. The advanced AAV-VIP-mCocH vector generated a dose-dependent rise in plasma cocaine hydrolase activity from 20-fold (10(10) particles) to 20,000 fold (10(13) particles), while the hdAD vector (1.7 × 10(12) particles) yielded a 300,000-fold increase. Neither vector caused adverse reactions such as motor weakness, elevated liver enzymes, or disturbance in spontaneous activity. Furthermore, treatment with high dose hdAD-ApoE-mCocH vector (1.7 × 10(12) particles) prevented locomotor abnormalities, other behavioral signs, and release of hepatic alanine amino transferase after a cocaine dose fatal to most control mice (120 mg/kg). This outcome suggests that viral gene transfer can yield clinically effective cocaine hydrolase expression for lengthy periods without immune reactions or cholinergic dysfunction, while blocking toxicity from drug overdose."	"Genetic etiology study of the non-syndromic deafness in Chinese Hans by targeted next-generation sequencing. Although over 60 non-syndromic deafness genes have been identified to date, the etiologic contribution of most deafness genes remained elusive. In this study, we addressed this issue by targeted next-generation sequencing of a large cohort of non-syndromic deaf probands. Probands with mutations in commonly screened deafness genes GJB2, SLC26A4 and MT-RNR1 were pre-excluded by Sanger sequencing. The remaining 125 deaf probands proceeded through targeted exon capturing of 79 known deafness genes and Illumina HiSeq2000 sequencing. Bi-allelic mutations in 15 less commonly screened deafness genes were identified in 28 deaf probands, with mutations in MYO15A, GPR98, TMC1, USH2A and PCDH15 being relatively more frequent (≥3 probands each). Dominant mutations in MYO6, TECTA, POU4F3 and COCH were identified in 4 deaf families. A mitochondrial MTTS1 mutation was identified in one maternally inherited deaf family. No pathogenic mutations were identified in three dominant deaf families and two consanguineous families. Mutations in the less commonly screened deafness genes were heterogeneous and contributed to a significant percentage (17.4%) of causes for non-syndromic deafness. Targeted next-generation sequencing provided a comprehensive and efficient diagnosis for known deafness genes. Complementary to linkage analysis or whole-exome sequencing of deaf families, pre-exclusion of known deafness genes by this strategy may facilitate the discovery of novel deafness genes."	"To be or noot to be: evolutionary tinkering for symbiotic organ identity. Legume plants develop symbiosis specific organs on their roots as a result of their interaction with rhizobia. These organs, called nodules, house the nitrogen fixing bacteria. The molecular mechanisms governing the identity and maintenance of this organ are still poorly understood, but it is supposed that root and nodule development share common features. We have identified the Medicago truncatula nodule root (NOOT) and Pisum sativum cochleata (COCH) orthologous genes as necessary for the robust maintenance of nodule identity throughout the nodule developmental program. NOOT and COCH are Arabidopsis blade-on-petiole (BOP) orthologs and NOOT and COCH show functions in leaf and flower development in M. truncatula and P. sativum respectively that are conserved with the functions of BOP in Arabidopsis. The characterization of the noot and coch mutants highlights the root evolutionary origin of nodule vascular strands and suggests that the NOOT and COCH genes were recruited to repress root identity in the legume symbiotic organ."	"A conduit to amplify innate immunity. In this issue of Immunity, Py et al. (2013) report that upon bacterial infection, a fragment of the matrix protein cochlin is released from the conduits of B cell follicles to trigger protective cytokines in the periphery."	"Cochlin produced by follicular dendritic cells promotes antibacterial innate immunity. Cochlin, an extracellular matrix protein, shares homologies with the Factor C, a serine protease found in horseshoe crabs, which is critical for antibacterial responses. Mutations in the COCH gene are responsible for human DFNA9 syndrome, a disorder characterized by neurodegeneration of the inner ear that leads to hearing loss and vestibular impairments. The physiological function of cochlin, however, is unknown. Here, we report that cochlin is specifically expressed by follicular dendritic cells and selectively localized in the fine extracellular network of conduits in the spleen and lymph nodes. During inflammation, cochlin was cleaved by aggrecanases and secreted into blood circulation. In models of lung infection with Pseudomonas aeruginosa and Staphylococcus aureus, Coch(-/-) mice show reduced survival linked to defects in local cytokine production, recruitment of immune effector cells, and bacterial clearance. By producing cochlin, FDCs thus contribute to the innate immune response in defense against bacteria."	"RNA analysis of inner ear cells from formalin fixed paraffin embedded (FFPE) archival human temporal bone section using laser microdissection--a technical report. Molecular analysis using archival human inner ear specimens is challenging because of the anatomical complexity, long-term fixation, and decalcification. However, this method may provide great benefit for elucidation of otological diseases. Here, we extracted mRNA for RT-PCR from tissues dissected from archival FFPE human inner ears by laser microdissection. Three human temporal bones obtained at autopsy were fixed in formalin, decalcified by EDTA, and embedded in paraffin. The samples were isolated into spiral ligaments, outer hair cells, spiral ganglion cells, and stria vascularis by laser microdissection. RNA was extracted and heat-treated in 10 mM citrate buffer to remove the formalin-derived modification. To identify the sites where COCH and SLC26A5 mRNA were expressed, semi-nested RT-PCR was performed. We also examined how long COCH mRNA could be amplified by semi-nested RT-PCR in archival temporal bone. COCH was expressed in the spiral ligament and stria vascularis. However, SLC26A5 was expressed only in outer hair cells. The maximum base length of COCH mRNA amplified by RT-PCR was 98 bp in 1 case and 123 bp in 2 cases. We detected COCH and SLC26A5 mRNA in specific structures and cells of the inner ear from archival human temporal bone. Our innovative method using laser microdissection and semi-nested RT-PCR should advance future RNA study of human inner ear diseases."	"RIG-I detects triphosphorylated RNA of Listeria monocytogenes during infection in non-immune cells. The innate immune system senses pathogens by pattern recognition receptors in different cell compartments. In the endosome, bacteria are generally recognized by TLRs; facultative intracellular bacteria such as Listeria, however, can escape the endosome. Once in the cytosol, they become accessible to cytosolic pattern recognition receptors, which recognize components of the bacterial cell wall, metabolites or bacterial nucleic acids and initiate an immune response in the host cell. Current knowledge has been focused on the type I IFN response to Listeria DNA or Listeria-derived second messenger c-di-AMP via the signaling adaptor STING. Our study focused on the recognition of Listeria RNA in the cytosol. With the aid of a novel labeling technique, we have been able to visualize immediate cytosolic delivery of Listeria RNA upon infection. Infection with Listeria as well as transfection of bacterial RNA induced a type-I-IFN response in human monocytes, epithelial cells or hepatocytes. However, in contrast to monocytes, the type-I-IFN response of epithelial cells and hepatocytes was not triggered by bacterial DNA, indicating a STING-independent Listeria recognition pathway. RIG-I and MAVS knock-down resulted in abolishment of the IFN response in epithelial cells, but the IFN response in monocytic cells remained unaffected. By contrast, knockdown of STING in monocytic cells reduced cytosolic Listeria-mediated type-I-IFN induction. Our results show that detection of Listeria RNA by RIG-I represents a non-redundant cytosolic immunorecognition pathway in non-immune cells lacking a functional STING dependent signaling pathway."	"Small strain deformation measurements of konjac glucomannan solutions and the influence of borate cross-linking. The dynamic rheology of aqueous solutions of konjac glucomannan has been evaluated over a range of concentrations up to 2.35%, and the effect of borate cross-linking of such solutions evaluated in the range 0.02-40 mM borate. In preliminary work, conventional parallel plate geometries were employed and in situ cross-linking was investigated. For borate cross-linked samples a superior method, however, was found to be measurement of pre-formed cores of cross-linked polymer into which a four-bladed vane geometry was introduced. In order to compare with other associating polymer systems, rheological data were analysed by defining plateau moduli, corresponding relaxation times and zero shear viscosities and the scaling behaviour of these parameters with polymer and cross-linker concentrations was established. Maxwell fits and time-concentration superposition procedures were investigated. The rheological properties of the cross-linked polymer were shown to be the result of both increased network connectivity and retarded network dynamics."	"Imagining the truth and the moon: an electrophysiological study of abstract and concrete word processing. Previous event-related potential studies have indicated that both a widespread N400 and an anterior N700 index differential processing of concrete and abstract words, but the nature of these components in relation to concreteness and imagery has been unclear. Here, we separated the effects of word concreteness and task demands on the N400 and N700 in a single word processing paradigm with a within-subjects, between-tasks design and carefully controlled word stimuli. The N400 was larger to concrete words than to abstract words, and larger in the visualization task condition than in the surface task condition, with no interaction. A marked anterior N700 was elicited only by concrete words in the visualization task condition, suggesting that this component indexes imagery. These findings are consistent with a revised or extended dual coding theory according to which concrete words benefit from greater activation in both verbal and imagistic systems."	"Identification of a novel in-frame deletion in KCNQ4 (DFNA2A) and evidence of multiple phenocopies of unknown origin in a family with ADSNHL. Autosomal dominant sensorineural hearing loss (ADSNHL) is extremely genetically heterogeneous, making it difficult to molecularly diagnose. We identified a multiplex (n=28 affected) family from the genetic isolate of Newfoundland, Canada with variable SNHL and used a targeted sequencing approach based on population-specific alleles in WFS1, TMPRSS3 and PCDH15; recurrent mutations in GJB2 and GJB6; and frequently mutated exons of KCNQ4, COCH and TECTA. We identified a novel, in-frame deletion (c.806_808delCCT: p.S269del) in the voltage-gated potassium channel KCNQ4 (DFNA2), which in silico modeling predicts to disrupt multimerization of KCNQ4 subunits. Surprisingly, 10/23 deaf relatives are non-carriers of p.S269del. Further molecular characterization of the DFNA2 locus in deletion carriers ruled out the possibility of a pathogenic mutation other than p.S269del at the DFNA2A/B locus and linkage analysis showed significant linkage to DFNA2 (maximum LOD=3.3). Further support of genetic heterogeneity in family 2071 was revealed by comparisons of audio profiles between p.S269del carriers and non-carriers suggesting additional and as yet unknown etiologies. We discuss the serious implications that genetic heterogeneity, in this case observed within a single family, has on molecular diagnostics and genetic counseling. "	"Control of the properties of xanthan/glucomannan mixed gels by varying xanthan fine structure. The interaction of native xanthan gum, deacetylated xanthan gum and depyruvated xanthan gum with konjac glucomannan has been studied using DSC and controlled stress rheometry. In the absence of electrolyte the DSC cooling curves for native xanthan and deacetylated xanthan showed a single peak and there was a corresponding sharp increase in the storage modulus indicating gel formation. It is apparent that on cooling, association of the konjac glucomannan with the native xanthan molecules is triggered by the xanthan coil-helix transition. In the presence of electrolyte, there were two DSC peaks observed. The higher temperature DSC peak was attributed to the xanthan coil-helix transition while the lower temperature DSC peak was attributed to konjac glucomannan-xanthan association as noted by an increase in the storage modulus. The gels formed were much weaker than those in the absence of electrolyte. The DSC cooling curves for depyruvated xanthan in the absence of electrolyte showed two peaks. The higher temperature peak was attributed to the coil-helix transition while the lower temperature peak corresponded to gelation as noted by an increase in the storage modulus. The gels were very much weaker than for native xanthan gum and deacetylated xanthan gum."	"Targeting the cytosolic innate immune receptors RIG-I and MDA5 effectively counteracts cancer cell heterogeneity in glioblastoma. Cellular heterogeneity, for example, the intratumoral coexistence of cancer cells with and without stem cell characteristics, represents a potential root of therapeutic resistance and a significant challenge for modern drug development in glioblastoma (GBM). We propose here that activation of the innate immune system by stimulation of innate immune receptors involved in antiviral and antitumor responses can similarly target different malignant populations of glioma cells. We used short-term expanded patient-specific primary human GBM cells to study the stimulation of the cytosolic nucleic acid receptors melanoma differentiation-associated gene 5 (MDA5) and retinoic acid-inducible gene I (RIG-I). Specifically, we analyzed cells from the tumor core versus &quot;residual GBM cells&quot; derived from the tumor resection margin as well as stem cell-enriched primary cultures versus specimens without stem cell properties. A portfolio of human, nontumor neural cells was used as a control for these studies. The expression of RIG-I and MDA5 could be induced in all of these cells. Receptor stimulation with their respective ligands, p(I:C) and 3pRNA, led to in vitro evidence for an effective activation of the innate immune system. Most intriguingly, all investigated cancer cell populations additionally responded with a pronounced induction of apoptotic signaling cascades revealing a second, direct mechanism of antitumor activity. By contrast, p(I:C) and 3pRNA induced only little toxicity in human nonmalignant neural cells. Granted that the challenge of effective central nervous system (CNS) delivery can be overcome, targeting of RIG-I and MDA5 could thus become a quintessential strategy to encounter heterogeneous cancers in the sophisticated environments of the brain."	"Novel COCH mutation in a family with autosomal dominant late onset sensorineural hearing impairment and tinnitus. This report describes a three generation family with late onset bilateral sensorineural hearing impairment (BLSNHI) and tinnitus in which a novel mutation in the COCH gene was identified after a genome-wide linkage approach. The COCH gene is one of the few genes clinically examined when investigating the etiology of autosomal dominant late onset hearing impairment. Initially mutations in the COCH gene were only reported in exons 4 and 5, coding for the LCCL protein domain. More recently, additional mutations have been identified in exon 12, the only mutations identified outside of the LCCL domain. Currently clinical genetic testing for the COCH gene primarily focuses on identifying mutations in these three exons. In this study, we identify a novel mutation in the COCH gene in exon 11, which, like the exon 12 mutations, falls within the vWFA2 protein domain. This finding reinforces the need for clinical genetic screening of the COCH gene to be expanded beyond the current limited exon screening, as there is now more evidence to support that mutations in other areas of this gene are also causative of a similar form of late onset BLSNHI."	"BMP induces cochlin expression to facilitate self-renewal and suppress neural differentiation of mouse embryonic stem cells. BMP4 maintains self-renewal of mouse embryonic stem cells (ESCs) in collaboration with LIF. Here, we report the identification of a novel key BMP target gene, cochlin (Coch) in mouse ESCs. Coch can be significantly up-regulated by BMP4 specifically in ESCs but not in somatic differentiated cells, and this up-regulation is dependent on the BMP signaling mediators Smad1/5 and Smad4. Overexpression of Coch can partially substitute BMP4 to promote self-renewal of mouse ESCs together with LIF, whereas knockdown of Coch impairs self-renewal marker gene expression even in the presence of both BMP4 and LIF. Further studies showed that COCH could mimic BMP4 in repressing neural differentiation of mouse ESCs upon LIF withdrawal and the inhibitory effect of BMP4 on neural differentiation is compromised by Coch knockdown. Taken together, our data suggest that COCH is a part of the downstream target network of BMP signaling and serves as another important effector to fine-tune mouse ESC fates."	"ERPs and morphological processing: the N400 and semantic composition. Both behavioral and electrophysiological evidence suggests that fluent readers decompose morphologically complex words into their constituent parts. Previous event-related potential (ERP) research has been equivocal with regard to whether the N400 component indexes morphological decomposition or the integration of the products of decomposition, a process called semantic composition. In a visual lexical decision task with college students, we recorded ERPs to a well-controlled set of words and nonwords made up of bound morphemes (discern, predict; disject, percern) or free morphemes (cobweb, earring; cobline, bobweb) and monomorphemic control words and nonwords (garlic, minnow; gartus, buzlic). For each of the three morphological types, participants were faster to respond to words than to nonwords. Furthermore, for each of the three morphological types, the amplitude of the N400 was more negative to nonwords than to matched words, an effect indicating that the N400 is more sensitive to the lexicality of the whole stimulus than to the meaningfulness of the constituent parts of the stimulus. The N400 lexicality effect was not significantly different across the three morphological types. To our knowledge, this is the first ERP study to directly compare the processing of printed sets of words composed of bound and free morphemes and monomorphemic control stimuli in order to explore the relative sensitivity of the N400 to morphological decomposition (i.e., the status of the parts) and semantic composition (i.e., the status of the whole). Our findings are consistent with an interpretation of the N400 as an index of a process of semantic composition."	"Genetic interaction and mapping studies on the leaflet development (lld) mutant in Pisum sativum. In Pisum sativum, the completely penetrant leaflet development (lld) mutation is known to sporadically abort pinnae suborgans in the unipinnate compound leaf. Here, the frequency and morphology of abortion was studied in each of the leaf suborgans in 36 genotypes and in presence of auxin and gibberellin, and their antagonists. Various lld genotypes were constructed by multifariously recombining lld with a coch homeotic stipule mutation and with af, ins, mare, mfp, tl and uni-tac leaf morphology mutations. It was observed that the suborgans at all levels of pinna subdivisions underwent lld-led abortion events at different stages of development. As in leafblades, lld aborted the pinnae in leaf-like compound coch stipules. The lld mutation interacted with mfp synergistically and with other leaf mutations additively. The rod-shaped and trumpet-shaped aborted pea leaf suborgans mimicked the phenotype of aborted leaves in HD-ZIP-III-deficient Arabidopsis thaliana mutants. Suborganwise aborted morphologies in lld gnotypes were in agreement with basipetal differentiation of leaflets and acropetal differentiation in tendrils. Altogether, the observations suggested that LLD was the master regulator of pinna development. On the basis of molecular markers found linked to lld, its locus was positioned on the linkage group III of the P. sativum genetic map."	"Characterization and biological studies of bis- and tera-acetyl derivatives of hydrocarbon-bridged diamines-I. A systematic study of the pharmaceutically important, double ended, chelating agents of the types CH(3)CONH(CH(2))nNHCOCH(3) and (CH(3)CO)(2)N(CH(2))n N(COCH(3))(2), where n= 2, 3, 4, 5 and 6, prepared by the bis- and tetra-acetylation of the corresponding diamino-polymethylenes, have been carried out. Bis- and tertra-acetyl derivatives have been characterized by their elemental analysis and the FTIR spectra, Mass spectra and H-NMR spectra of these compounds have been reported to establish their structures. In the present work, FTIR spectra have been found an excellent means for distinguishing the bis-acetyl derivatives from their tetra-acetyl counterparts. The structures of these bis- and tetra-acetyl compounds have further been established by their H-NMR and Mass Spectra. The selective pharmacological screening of the derivatives was carried out according to the standard procedures. The compounds were screened for their antibacterial and antifungal activities and it was found that majority of these compounds did not possess any remarkable activity. Only the compound BA1,2-DAE, showed significant antifungal activity against Microsporum canis (80%)."	"Selective diagnosis of diabetes using Pt-functionalized WO3 hemitube networks as a sensing layer of acetone in exhaled breath. Thin-walled WO(3) hemitubes and catalytic Pt-functionalized WO(3) hemitubes were synthesized via a polymeric fiber-templating route and used as exhaled breath sensing layers for potential diagnosis of halitosis and diabetes through the detection of H(2)S and CH(3)COCH(3), respectively. Pt-functionalized WO(3) hemitubes with wall thickness of 60 nm exhibited superior acetone sensitivity (R(air)/R(gas) = 4.11 at 2 ppm) with negligible H(2)S response, and pristine WO(3) hemitubes showed a 4.90-fold sensitivity toward H(2)S with minimal acetone-sensing characteristics. The detection limit (R(air)/R(gas)) of the fabricated sensors with Pt-functionalized WO(3) hemitubes was 1.31 for acetone of 120 ppb, and pristine WO(3) hemitubes showed a gas response of 1.23 at 120 ppb of H(2)S. Long-term stability tests revealed that the remarkable selectivity has been maintained after aging for 7 months in air. The superior cross-sensitivity and response to H(2)S and acetone gas offer a potential platform for application in diabetes and halitosis diagnosis."	"Investigation of the antioxidant properties of hyperjovinol A through its Cu(II) coordination ability. Hyperjovinol A (2-methyl-1-(2,4,6-trihydroxy-3-(3-hydroxy-3,7-dimethyloct-6-enyl)phen yl)propan-1-one) is an acylated phloroglucinol isolated from Hypericum Jovis and exhibiting antioxidant properties comparable with those of the most common antioxidant drugs. The study models the compound's antioxidant ability through its ability to coordinate a Cu(2+) ion and reduce it to Cu(+). Complexes with a Cu(2+) ion were calculated for all the low energy and for representative high energy conformers of hyperjovinol A, placing the ion in turn near each of the electron-rich binding sites. The most stable complexes are those in which Cu(2+) binds simultaneously to the O of the OH in the geranyl-type chain (R') and the C═C double bond at the end of R', or to the O of a phenol OH and the O of the OH in R'. The most stable complexes in which Cu(2+) binds only to one site are those in which it binds to the C═C double bond at the end of R' or to the sp(2) O of the COCH(CH3)2 acyl group. Cu(2+) is reduced to Cu(+) in all complexes. Comparisons with corresponding complexes of other molecular structures in which one or more of the structural features of hyperjovinol A are modified attempt to elucidate the role, for the antioxidant ability, of relevant features of hyperjovinol A, like the presence and position of the OH or the C═C double bond in R'. Calculations at the DFT/B3LYP/6-31+G(d,p) level were performed for all the structures considered. Calculations utilizing the LANL2DZ pseudopotential for the Cu(2+) ion were also performed for hyperjovinol A."	"Highly stereoselective, cobalt(III)-directed Mannich additions in water yielding α-methylamino acid products. Highly stereoselective and rapid (&lt;1 min) addition reactions to the imine double bond of 2-(methylimino)acetate complexes [L(4)Co(O(2)CCH=NCH(3))](2+) [L(4) = (en)(2) (7), (tren) (11)] were achieved in aqueous solution with nitromethane, ethyl 3-oxobutanoate or diethyl malonate. The molecular structures of two product complexes, rac-(Δ*-R(C)*-S(N)*)-[Co(en)(2)(O(2)CCH[CH(2)NO(2)]NHCH(3))]ZnCl(4) and rac-(Δ*-R(C)*-S(N)*)-[Co(en)(2)(O(2)CCH[CH(2)COCH(3)]NHCH(3))]ZnCl(4), were established by X-ray diffraction."	"Coordination chemistry and reactivity of a cupric hydroperoxide species featuring a proximal H-bonding substituent. At -90 °C in acetone, a stable hydroperoxo complex [(BA)Cu(II)OOH](+) (2) (BA, a tetradentate N(4) ligand possessing a pendant -N(H)CH(2)C(6)H(5) group) is generated by reacting [(BA)Cu(II)(CH(3)COCH(3))](2+) with only 1 equiv of H(2)O(2)/Et(3)N. The exceptional stability of 2 is ascribed to internal H-bonding. Species 2 is also generated in a manner not previously known in copper chemistry, by adding 1.5 equiv of H(2)O(2) (no base) to the cuprous complex [(BA)Cu(I)](+). The broad implications for this finding are discussed. Species 2 slowly converts to a μ-1,2-peroxodicopper(II) analogue (3) characterized by UV-vis and resonance Raman spectroscopies. Unlike a close analogue not possessing internal H-bonding, 2 affords no oxidative reactivity with internal or external substrates. However, 2 can be protonated to release H(2)O(2), but only with HClO(4), while 1 equiv Et(3)N restores 2."	"COCHLEATA controls leaf size and secondary inflorescence architecture via negative regulation of UNIFOLIATA (LEAFY ortholog) gene in garden pea Pisum sativum. UNIFOLIATA [(UNI) or UNIFOLIATA-TENDRILLED ACACIA (UNI-TAC)] expression is known to be negatively regulated by COCHLEATA (COCH) in the differentiating stipules and flowers of Pisum sativum. In this study, additional roles of UNI and COCH in P. sativum were investigated. Comparative phenotyping revealed pleiotropic differences between COCH (UNI-TAC and uni-tac) and coch (UNI-TAC and uni-tac) genotypes of common genetic background. Secondary inflorescences were bracteole-less and bracteolated in COCH and coch genotypes, respectively. In comparison to the leaves and corresponding sub-organs and tissues produced on COCH plants, coch plants produced leaves of 1.5-fold higher biomass, 1.5-fold broader petioles and leaflets that were 1.8-fold larger in span and 1.2-fold dorso-ventrally thicker. coch leaflets possessed epidermal cells 1.3-fold larger in number and size, 1.4-fold larger spongy parenchyma cells and primary vascular bundles with 1.2-fold larger diameter. The transcript levels of UNI were at least 2-fold higher in coch leaves and secondary inflorescences than the corresponding COCH organs. It was concluded that COCH negatively regulated UNI in the differentiating leaves and secondary inflorescences and thereby controlled their sizes and/or structures. It was also surmised that COCH and UNI (LFY homolog) occur together widely in stipulate flowering plants."	"Picosecond pulse radiolysis study on the distance dependent reaction of the solvated electron with organic molecules in ethylene glycol. The decay of solvated electron e(s)(-) is observed by nanosecond and picosecond pulsed radiolysis, in diluted and highly concentrated solutions of dichloromethane, CH(2)Cl(2), trichloromethane, CHCl(3), tribromomethane, CHBr(3), acetone, CH(3)COCH(3), and nitromethane, CH(3)NO(2), prepared in ethylene glycol. First, second-order rate constants for the reactions between e(-)(s) and the organic scavengers have been determined. The ratio between the highest rate constant that was found for CH(3)NO(2) and the lowest one that was found for acetone is 3. This difference in reactivity cannot be explained by the change of viscosity or the size of the molecules. Then, from the analysis of decay kinetics obtained using ultrafast pulse-probe method, the distance dependent first-order rate constant of electron transfer for each scavenger has been determined. The amplitude of the transient effect observed on the picosecond time scale differs strongly between these solvated electron scavengers. For an identical scavenger concentration, the transient effect lasts ≈650 ps for CH(3)NO(2) compared to ~200 ps for acetone. For acetone, the distance dependent first-order rate constant of electron transfer is decreasing very rapidly with increasing distance, whereas for nitromethane and tribromomethane the rate constant is decreasing gradually with the distance and its value remains non-negligible even at ~10 Å. This rate constant is controlled mostly by the free energy of the reaction. For nitromethane and tribromomethane, the driving force is great, and the reaction can occur even at long distance, whereas for acetone the driving force is small and the reaction occurs almost at the contact distance. For nitromethane and acetone, the one-electron reduction reaction needs less internal reorganization energy than for alkyl halide compounds for which the reaction occurs in concert with bond breaking and geometric adjustment."	"Design, synthesis and biological evaluation of 5-hydroxy, 5-substituted-pyrimidine-2,4,6-triones as potent inhibitors of gelatinases MMP-2 and MMP-9. Matrix metalloproteinases (MMPs) are attractive biological targets that play a key role in many physiopathological processes such as degradation of extracellular matrix proteins, release and cleavage of cell-surface receptors, tumour progression, homeostatic regulation and innate immunity. A series of 5-hydroxy, 5-substituted pyrimidine-2,4,6-triones were rationally designed, prepared and tested as inhibitors of gelatinases MMP-2 and MMP-9 and collagenase MMP-8. On one side, the presence of the 5-hydroxyl group, that represents an typical feature of this class of compounds, ensured an attractive pharmacokinetic profile while on the other suitably substituted biaryl molecular fragments, attached to position 5 through a ketomethylene linker, guaranteed favourable interaction in the deep region of the S(1)' enzymatic subsite. This rational design led to the discovery of highly potent MMP inhibitors. In particular, biphenyl derivatives bearing at the para position COCH(3) and OCF(3) substituents permitted to inhibit gelatinases MMP-2 and MMP-9, with IC(50) values as low as 30 nM and 21 nM, respectively, whereas the introduction at the same position of the bulkier SO(2)CH(3) group afforded a potent collagenase MMP-8 inhibitor with an IC(50) value equal to 66 nM. Molecular docking simulations allowed us to elucidate key interactions driving the binding of the top active compounds towards their preferred MMP target."	"NODULE ROOT and COCHLEATA maintain nodule development and are legume orthologs of Arabidopsis BLADE-ON-PETIOLE genes. During their symbiotic interaction with rhizobia, legume plants develop symbiosis-specific organs on their roots, called nodules, that house nitrogen-fixing bacteria. The molecular mechanisms governing the identity and maintenance of these organs are unknown. Using Medicago truncatula nodule root (noot) mutants and pea (Pisum sativum) cochleata (coch) mutants, which are characterized by the abnormal development of roots from the nodule, we identified the NOOT and COCH genes as being necessary for the robust maintenance of nodule identity throughout the nodule developmental program. NOOT and COCH are Arabidopsis thaliana BLADE-ON-PETIOLE orthologs, and we have shown that their functions in leaf and flower development are conserved in M. truncatula and pea. The identification of these two genes defines a clade in the BTB/POZ-ankyrin domain proteins that shares conserved functions in eudicot organ development and suggests that NOOT and COCH were recruited to repress root identity in the legume symbiotic organ."	"Cochlin-tomoprotein (CTP) detection test identified perilymph leakage preoperatively in revision stapes surgery. Perilymphatic fistula (PLF) is defined as an abnormal leakage between perilymph from the labyrinth to the middle ear. Symptoms include hearing loss, tinnitus, and vertigo. The standard mode of PLF detection is intraoperative visualization of perilymph leakage and fistula, which ostensibly confirms the existence of PLF. Other possible methods of diagnosis include confirmation of pneumolabyrinth via diagnostic imaging. Recently, a cochlin-tomoprotein (CTP) detection test has been developed that allows definitive diagnosis of PLF-related hearing loss. We report the case of a 45-year-old man who presented with right-sided tinnitus, hearing loss, and dizziness 30 years after stapes surgery. Middle ear lavage was performed after myringotomy. A preoperative diagnosis of PLF was reached using the CTP detection test. Intraoperative observations included a necrotic long process of the incus, displaced wire piston, and fibrous tissue in the oval window. Perilymph leakage was not evident. The oval window was closed with fascia, and vertigo disappeared within 2 weeks postoperatively. When PLF is suspected after stapes surgery, the CTP detection test can be a useful, highly sensitive, and less invasive method for preoperative diagnosis."	"Synthesis and reversible transformation of Cu(n)-bridged (n = 1, 2, or 4) silicodecatungstate dimers. Three copper-bridged sandwich-type silicodecatungstate dimers, TBA(8)[Cu(γ-SiW(10)O(34))(2)(CH(3)CONH)(2)]·4H(2)O (Cu-1, TBA = tetra-n-butylammonium), TBA(8)H(4)[Cu(2)(γ-SiW(10)O(36))(2)H(2)O]·11H(2)O·CH(3)COCH(3) (Cu-2), and TBA(8)H(2)[Cu(4)(γ-SiW(10)O(36))(2)(CH(3)COO)(2)]·5H(2)O (Cu-4) have been selectively synthesized by reactions of divacant lacunary TBA(4)[H(4)(γ-SiW(10)O(36))] (SiW10) with copper acetate in organic media. The copper cation(s) in Cu-1, Cu-2, and Cu-4 possess square-planar four-coordinate (Cu-1), square-pyramidal five-coordinate (Cu-2), and octahedral six-coordinate (Cu-4) geometries, respectively. These compounds can reversibly be transformed simply by controlling the copper/SiW10 molar ratios in solutions."	"Behavioral and ERP evidence of word and pseudoword superiority effects in 7- and 11-year-olds. In groups of 7-year-olds and 11-year-olds, event-related potentials (ERPs) were recorded to briefly presented, masked letter strings that included real word (DARK/PARK), pronounceable pseudoword (DARL/PARL), unpronounceable nonword (RDKA/RPKA), and letter-in-xs (DXXX, PXXX) stimuli in a variant of the Reicher-Wheeler paradigm. Behaviorally, participants decided which of two letters occurred at a given position in each string (here, forced-choice alternatives D and P). Both groups showed evidence of behavioral word (more accurate choices for letters in words than in baseline nonwords or letter-in-xs) and pseudoword (more accurate choices for letters in pseudowords than in baseline nonwords or letter-in-xs) superiority effects. Electrophysiologically, 11-year-olds evidenced superiority effects on P150 and N400 peak amplitude, while 7-year-olds showed effects only on N400 amplitude. These findings suggest that the mechanisms underlying the observed behavioral superiority effects may be lexical in younger children but both sublexical and lexical in older children. These results are consistent with a lengthy developmental time course for automatic sublexical orthographic specialization, extending beyond the age of 11."	"Cochlin expression in the rat perilymph during postnatal development. The changes in the cochlin isoforms in the perilymph may provide important insights to the understanding of cochlin function and the pathogenesis of related inner ear diseases. Cochlin is involved in various pathologies of the inner ear. Altered levels of cochlin isoforms in developing inner ear tissue were reported previously. The purpose of this study was to elucidate the cochlin isoform expression in the perilymph of rats during postnatal development in relation to Coch gene mRNA expression. We studied the cochlin isoforms in the rat perilymph during postnatal development by Western blot analysis. Real-time PCR was also performed to elucidate the expression level of Coch mRNA in the developing inner ear of rats. Western blot analysis showed that the expression of p63s in the perilymph was highest on the 12th day after birth (DAB12), the earliest age at which we could identify the perilymphatic space microscopically, and it decreased gradually as the cochlea developed. On the other hand, the expression of Cochlin-tomoprotein (CTP)was lowest on DAB12 and increased gradually up to DAB24. COCH mRNA was detected from DAB3 and gradually increased to DAB15, and then gradually decreased to DAB70."	"A novel ruthenium(II)-cobaloxime supramolecular complex for photocatalytic H2 evolution: synthesis, characterisation and mechanistic studies. We report the synthesis and characterization of novel mixed-metal binuclear ruthenium(II)-cobalt(II) photocatalysts for hydrogen evolution in acidic acetonitrile. First, 2-(2'-pyridyl)benzothiazole (pbt), 1, was reacted with RuCl(3)·xH(2)O to produce [Ru(pbt)(2)Cl(2)]·0.25CH(3)COCH(3), 2, which was then reacted with 1,10-phenanthroline-5,6-dione (phendione), 3, in order to produce [Ru(pbt)(2)(phendione)](PF(6))(2)·4H(2)O, 4. Compound 4 was then reacted with 4-pyridinecarboxaldehyde in order to produce [Ru(pbt)(2)(L-pyr)](PF(6))(2)·9.5H(2)O, 5 (where L-pyr = (4-pyridine)oxazolo[4,5-f]phenanthroline). Compound 5 was then reacted with [Co(dmgBF(2))(2)(H(2)O)(2)] (where dmgBF(2) = difluoroboryldimethylglyoximato) in order to produce the mixed-metal binuclear complex, [Ru(pbt)(2)(L-pyr)Co(dmgBF(2))(2)(H(2)O)](PF(6))(2)·11H(2)O·1.5CH(3)COCH(3), 6. [Ru(Me(2)bpy)(2)(L-pyr)Co(dmgBF(2))(2)(OH(2))](PF(6))(2), 7 (where Me(2)bpy = 1,10-phenanthroline, 4,4'-dimethyl-2,2'-bipyridine) and [Ru(phen)(2)(L-pyr)Co(dmgBF(2))(2)(OH(2))](PF(6))(2), 8 were also synthesised. All complexes were characterized by elemental analysis, ESI MS, HRMS, UV-visible absorption, (11)B, (19)F, and (59)Co NMR, ESR spectroscopy, and cyclic voltammetry, where appropriate. Photocatalytic studies carried out in acidified acetonitrile demonstrated constant hydrogen generation longer than a 42 hour period as detected by gas chromatography. Time resolved spectroscopic measurements were performed on compound 6, which proved an intramolecular electron transfer from an excited Ru(II) metal centre to the Co(II) metal centre via the bridging L-pyr ligand. This resulted in the formation of a cobalt(I)-containing species that is essential for the production of H(2) gas in the presence of H(+) ions. A proposed mechanism for the generation of hydrogen is presented."	"Quantum chemical studies and vibrational analysis of 4-acetyl benzonitrile, 4-formyl benzonitrile and 4-hydroxy benzonitrile--a comparative study. The FTIR and FT-Raman vibrational spectra of 4-actetyl benzonitrile, 4-formyl benzonitrile and 4-hydroxy benzonitrile molecules have been recorded in the range 4000-400 and 4000-100 cm(-1), respectively. The complete vibrational assignment and analysis of the fundamental modes of the most stable geometry of the compounds were carried out using the experimental FTIR and FT-Raman data on the basis of peak positions, relative intensities and quantum chemical studies. The observed vibrational frequencies were compared with the theoretical wavenumbers of the optimised geometry of the compounds obtained from the DFT-B3LYP gradient calculations employing the standard 6-31G**, high level 6-311++G** and cc-pVDZ basis sets. The structural parameters and vibrational wavenumbers obtained from the DFT methods are in good agreement with the experimental data. With hope of providing more and effective information on the fundamental vibrations, total energy distributions of the fundamental modes have been performed by assuming C(s) point group symmetry. The effect of substituents -COCH(3), -CHO and -OH in the benzonitrile moiety have been analysed and compared. The kinetic and thermodynamic stability and chemical hardness of the molecule have been determined."	"Cochlin expression in vestibular endorgans obtained from patients with Meniere's disease. The distribution of cochlin and its associated basement membrane proteins (collagen IV, collagen II, laminin-β2, and nidogen-1) were evaluated in the vestibular endorgans of subjects with Meniere's disease and compared with normal specimens. Cochlin mRNA expression in vestibular endorgans from Meniere's disease specimens was also investigated. Specimens were obtained from patients who had Meniere's disease and who were undergoing ablative labyrinthectomy. Control specimens were obtained both from autopsy specimens with documented normal audiovestibular function and from patients undergoing labyrinthectomy for acoustic neuroma excision. In the normal control specimens, cochlin immunoreactivity was found evenly distributed in the stroma of the cristae ampullaris and maculae of the utricle. In Meniere's specimens, cochlin immunoreactivity was markedly increased; this was associated with an increase in cochlin mRNA expression as shown by real-time reverse transcription with the polymerase chain reaction. Collagen IV and laminin-β2 immunoreactivity was significantly decreased in Meniere's specimens. Nidogen-1 and collagen II immunoreactivity was unchanged in Meniere's specimens when compared with normal samples. Cochlin upregulation has been implicated in the hereditary audiovestibulopathy, DFNA9. The increased expression of cochlin and decreased expression of collagen IV and laminin in Meniere's disease are suggestive that the overexpression of cochlin contributes to the dysfunctional inner ear homeostasis seen in this disease."	"Stable radical trianions from reversibly formed sigma-dimers of selenadiazoloquinolones studied by in situ EPR/UV-vis spectroelectrochemistry and quantum chemical calculations. The redox behavior of the series of 7-substituted 6-oxo-6,9-dihydro[1,2,5]selenadiazolo[3,4-h]quinolines and 8-substituted 9-oxo-6,9-dihydro[1,2,5]selenadiazolo[3,4-f]quinolines with R(7), R(8) = H, COOC(2)H(5), COOCH(3), COOH, COCH(3), and CN has been studied by in situ EPR and EPR/UV-vis spectroelectrochemistry in dimethylsulfoxide. All selenadiazoloquinolones undergo a one-electron reduction process to form the corresponding radical anions. Their stability strongly depends on substitution at the nitrogen atom of the 4-pyridone ring. The primary generated radical anions from N-ethyl-substituted quinolones are stable, whereas for the quinolones with imino hydrogen, the initial radical anions rapidly dimerize to produce unusually stable sigma-dimer (σ-dimer) dianions. These are reversibly oxidized to the initial compounds at potentials considerably less negative than the original reduction process in the back voltammetric scan. The dimer dianion can be further reduced to the stable paramagnetic dimer radical trianion in the region of the second reversible reduction step. The proposed complex reaction mechanism was confirmed by in situ EPR/UV-vis cyclovoltammetric experiments. The site of the dimerization in the σ-dimer and the mapping of the unpaired spin density both for radical anions and σ-dimer radical trianions with unusual unpaired spin distribution have been assigned by means of density functional theory calculations."	"Anti-cocaine antibody and butyrylcholinesterase-derived cocaine hydrolase exert cooperative effects on cocaine pharmacokinetics and cocaine-induced locomotor activity in mice. We are investigating treatments for cocaine abuse based on viral gene transfer of a cocaine hydrolase (CocH) derived from human butyrylcholinesterase, which can reduce cocaine-stimulated locomotion and cocaine-primed reinstatement of drug-seeking behavior in rats for many months. Here, in mice, we explored the possibility that anti-cocaine antibodies can complement the actions of CocH to reduce cocaine uptake in brain and block centrally-evoked locomotor stimulation. Direct injections of test proteins showed that CocH (0.3 or 1mg/kg) was effective by itself in reducing drug levels in plasma and brain of mice given cocaine (10mg/kg, s.c., or 20mg/kg, i.p). Administration of cocaine antibody per se at a low dose (8 mg/kg, i.p.) exerted little effect on cocaine distribution. However, a higher dose of antibody (12 mg/kg) caused peripheral trapping (increased plasma drug levels), which led to increased cocaine metabolism by CocH, as evidenced by a 6-fold rise in plasma benzoic acid. Behavioral tests with small doses of CocH and antibody (1 and 8 mg/kg, respectively) showed that neither agent alone reduced mouse locomotor activity triggered by a very large cocaine dose (100mg/kg, i.p.). However, dual treatment completely suppressed the locomotor stimulation. Altogether, we found cooperative and possibly synergistic actions that warrant further exploration of dual therapies for treatment of cocaine abuse."	"Theoretical study on the mechanisms of cellulose dissolution and precipitation in the phosphoric acid-acetone process. Phosphoric acid-acetone fractionation was applied to pretreat lignocellulose for production of cellulosic ethanol. Cellulose solubility properties in H(2)O, H(3)PO(4) and CH(3)COCH(3) were simulated. Atomic geometry and electronic properties were computed using density functional theory with local-density approximation. H(3)PO(4) molecule is adsorbed between two cellulose segments, forming four hydrogen bonds with E(B) of -1.61 eV. Density of state for cellulose in H(3)PO(4)-cellulose system delocalizes without obvious peak. E(gap) of 4.46 eV is much smaller than that in other systems. Molecular dynamics simulation indicates that fragments of double glucose rings separate in the cellulose-H(3)PO(4) interaction system. Icy CH(3)COCH(3) addition leads to re-gathering of separated fragments. Reaction energy of cellulose in three solvents is around 3.5 eV, implying that cellulose is chemically stable. Moreover, theoretical results correspond to the experiments we have performed, showing that cellulose dissolves in H(3)PO(4), flocculates after CH(3)COCH(3) addition, and finally becomes more liable to be hydrolyzed into glucoses."	"Effects of anti-cocaine vaccine and viral gene transfer of cocaine hydrolase in mice on cocaine toxicity including motor strength and liver damage. In developing an vivo drug-interception therapy to treat cocaine abuse and hinder relapse into drug seeking provoked by re-encounter with cocaine, two promising agents are: (1) a cocaine hydrolase enzyme (CocH) derived from human butyrylcholinesterase and delivered by gene transfer; (2) an anti-cocaine antibody elicited by vaccination. Recent behavioral experiments showed that antibody and enzyme work in a complementary fashion to reduce cocaine-stimulated locomotor activity in rats and mice. Our present goal was to test protection against liver damage and muscle weakness in mice challenged with massive doses of cocaine at or near the LD50 level (100-120 mg/kg, i.p.). We found that, when the interceptor proteins were combined at doses that were only modestly protective in isolation (enzyme, 1mg/kg; antibody, 8 mg/kg), they provided complete protection of liver tissue and motor function. When the enzyme levels were ~400-fold higher, after in vivo transduction by adeno-associated viral vector, similar protection was observed from CocH alone."	"A replication study on proposed candidate genes in Ménière's disease, and a review of the current status of genetic studies. Multiple candidate genes have been presented for Ménière's disease (MD), but to date no positive replications have been reported. We review here all the previously proposed candidate genes for MD and report our results on the analysis of six such genes, AQP2, KCNE1, KCNE3, HCFC1, COCH, and ADD1. A well-defined sample set of 38 sporadic and 21 familial Finnish MD patients. Mutation analysis, case-control study, and review of literature. A polymorphism rs1805127 in the potassium channel gene, KCNE1, was associated with MD in sporadic (p = 0.011), but not familial patients (p = 0.62). In addition, we identified four novel unique variations in the KCNE1 gene. PolyPhen and Mutation Taster analyses indicated that at least one of the variations c.259T &gt; C; p.Trp87Arg is probably damaging to the coded protein. Our review of the reported candidate genes shows that the current understanding of the genetic factors contributing to the development of MD is limited, and that the study of its etiology would benefit greatly from more comprehensive genetic knowledge."	"Whole exome sequencing identifies a novel DFNA9 mutation, C162Y. We report the genetic analysis of a Chinese family with autosomal dominant non-syndromic progressive sensorineural hearing loss. Taking advantage of next-generation high-throughput DNA sequencing technology, we combined whole exome capture sequencing with Sanger direct sequencing. A novel missense mutation in the coagulation factor C homolog (COCH) gene was identified in a consanguineous Chinese family. This missense mutation in the seventh exon (c.889G&gt;A; p.C162Y) of COCH is most probably a disease-causing mutation and it segregates with the disease. The mutation is not found in the single nucleotide polymorphism (SNP) database, the yhSNP database, the 1000 genomes SNP database or in matching normal controls. It is the first reported autosomal dominant nonsyndromic sensorineural deafness 9 (DFNA9) mutation outside the limulus factor C, cochlin and late gestation lung protein and von Willebrand factor 2 domain, i.e. the first reported DFNA9 mutation in the intervening domain of cochlin, encoded by the COCH gene. In the future, we will focus on functional studies of this mutation."	"Combined cocaine hydrolase gene transfer and anti-cocaine vaccine synergistically block cocaine-induced locomotion. Mice and rats were tested for reduced sensitivity to cocaine-induced hyper-locomotion after pretreatment with anti-cocaine antibody or cocaine hydrolase (CocH) derived from human butyrylcholinesterase (BChE). In Balb/c mice, direct i.p. injection of CocH protein (1 mg/kg) had no effect on spontaneous locomotion, but it suppressed responses to i.p. cocaine up to 80 mg/kg. When CocH was injected i.p. along with a murine cocaine antiserum that also did not affect spontaneous locomotion, there was no response to any cocaine dose. This suppression of locomotor activity required active enzyme, as it was lost after pretreatment with iso-OMPA, a selective BChE inhibitor. Comparable results were obtained in rats that developed high levels of CocH by gene transfer with helper-dependent adenoviral vector, and/or high levels of anti-cocaine antibody by vaccination with norcocaine hapten conjugated to keyhole limpet hemocyanin (KLH). After these treatments, rats were subjected to a locomotor sensitization paradigm involving a &quot;training phase&quot; with an initial i.p. saline injection on day 1 followed by 8 days of repeated cocaine injections (10 mg/kg, i.p.). A 15-day rest period then ensued, followed by a final &quot;challenge&quot; cocaine injection. As in mice, the individual treatment interventions reduced cocaine-stimulated hyperactivity to a modest extent, while combined treatment produced a greater reduction during all phases of testing compared to control rats (with only saline pretreatment). Overall, the present results strongly support the view that anti-cocaine vaccine and cocaine hydrolase vector treatments together provide enhanced protection against the stimulatory actions of cocaine in rodents. A similar combination therapy in human cocaine users might provide a robust therapy to help maintain abstinence."	"Hepatic lipid profiling of deer mice fed ethanol using ¹H and ³¹P NMR spectroscopy: a dose-dependent subchronic study. Chronic alcohol abuse is a 2nd major cause of liver disease resulting in significant morbidity and mortality. Alcoholic liver disease (ALD) is characterized by a wide spectrum of pathologies starting from fat accumulation (steatosis) in early reversible stage to inflammation with or without fibrosis and cirrhosis in later irreversible stages. Previously, we reported significant steatosis in the livers of hepatic alcohol dehydrogenase (ADH)-deficient (ADH⁻) vs. hepatic ADH-normal (ADH⁺) deer mice fed 4% ethanol daily for 2 months [Bhopale et al., 2006, Alcohol 39, 179-188]. However, ADH⁻ deer mice fed 4% ethanol also showed a significant mortality. Therefore, a dose-dependent study was conducted to understand the mechanism and identify lipid(s) involved in the development of ethanol-induced fatty liver. ADH⁻ and ADH⁺ deer mice fed 1, 2 or 3.5% ethanol daily for 2 months and fatty infiltration in the livers were evaluated by histology and by measuring dry weights of extracted lipids. Lipid metabolomic changes in extracted lipids were determined by proton (¹H) and ³¹phosphorus (³¹P) nuclear magnetic resonance (NMR) spectroscopy. The NMR data was analyzed by hierarchical clustering (HC) and principle component analysis (PCA) for pattern recognition. Extensive vacuolization by histology and significantly increased dry weights of total lipids found only in the livers of ADH⁻ deer mice fed 3.5% ethanol vs. pair-fed controls suggest a dose-dependent formation of fatty liver in ADH⁻ deer mouse model. Analysis of NMR data of ADH⁻ deer mice fed 3.5% ethanol vs. pair-fed controls shows increases for total cholesterol, esterified cholesterol, fatty acid methyl esters (FAMEs), triacylglycerides and unsaturation, and decreases for free cholesterol, phospholipids and allylic and diallylic protons. Certain classes of neutral lipids (cholesterol esters, fatty acyl chain (-COCH₂-) and FAMEs) were also mildly increased in ADH⁻ deer mice fed 1 or 2% ethanol. Only small increases were observed for allylic and diallylic protons, FAMEs and unsaturations in ADH⁺ deer mice fed 3.5% ethanol vs. pair-fed controls. PCA of NMR data showed increased clustering by gradual separation of ethanol-fed ADH⁻ deer mice groups from their respective pair-fed control groups and corresponding ethanol-fed ADH⁺ deer mice groups. Our data indicate that dose of ethanol and hepatic ADH deficiency are two key factors involved in initiation and progression of alcoholic fatty liver disease. Further studies on characterization of individual lipid entities and associated metabolic pathways altered in our deer mouse model after different durations of ethanol feeding could be important to delineate mechanism(s) and identify potential biomarker candidate(s) of early stage ALD."	"Jorge Morales Pedraza: The use of the ionization technique for tissue sterilisation: the International Atomic Energy Agency (IAEA) experience. NA"	"Local coordination geometry and spin state in novel Fe(II) complexes with 2,6-bis(pyrazol-3-yl)pyridine-type ligands as controlled by packing forces: structural correlations. A substituted 2,6-bis(pyrazol-3-yl)pyridine (3-bpp) ligand, H(4)L, created to facilitate intermolecular interactions in the solid, has been used to obtain four novel Fe(II) complexes: [Fe(H(4)L)(2)](ClO(4))(2)⋅2 CH(3)NO(2)⋅2 H(2)O, [Fe(H(4)L)(H(2)LBF(2))](BF(4))⋅5 C(3)H(6)O (H(2)LBF(2) is an in situ modified version of H(4)L), [Fe(H(4)L)(2)](ClO(4))(2)⋅2 C(3)H(7)OH and [Fe(H(4)L)(2)](ClO(4))(2)⋅4 C(2)H(5)OH. Changing of spin-inactive components (solvents, anions or distant ligand substituents) causes differences to the coordination geometry of the metal that are key to the magnetic properties. Magnetic measurements show that, contrary to the previously published complex [Fe(H(4)L)(2)](ClO(4))(2)⋅H(2)O⋅2 CH(3)COCH(3), the newly synthesised compounds remain in the high-spin (HS) state at all temperatures (5-300 K). A member of the known family of Fe(II)/3-bpp complexes, [Fe(3-bpp)(2)](ClO(4))(2)⋅1.75 CH(3)COCH(3)⋅1.5 Et(2)O, has also been prepared and characterised structurally. In the bulk, this compound exhibits a gradual and incomplete spin transition near 205 K. The single-crystal structure is consistent with it being HS at 250 K and partially low spin at 90 K. Structural analysis of all these compounds reveals that the exact configuration of intermolecular interactions affects dramatically the local geometry at the metal, which ultimately has a strong influence on the magnetic properties. Along this line, the geometry of Fe(II) in all published 3-bpp compounds of known structure has been examined, both by calculating various distortion indices (Σ, Θ, θ and Φ) and by continuous shape measures (CShMs). The results reveal correlations between some of these parameters and indicate that the distortions from octahedral geometry observed on HS systems are mainly due to strains arising from intermolecular interactions. As previously suggested with other related compounds, we observe here that strongly HS-distorted systems have a larger tendency to remain in that state."	"VKORC1-dependent pharmacokinetics of intravenous and oral phylloquinone (vitamin K1) mixed micelles formulation. The pharmacokinetics of phylloquinone (vitamin K1) were evaluated in healthy human adult volunteers (15 male and 15 female) following oral and intravenous administration of a mixed micelles formulation (Konakion MM 2 mg) in an open label study design. The subjects were allocated to one of three genotype-specific groups (n = 10 in each group) in terms of VKORC1 promoter polymorphism c.-1639 G &gt; A to explore the relationship between genotype and pharmacokinetic parameters. Blood samples were collected for up to 24 h after administration. Phylloquinone serum levels were determined by reversed phase HPLC with fluorometric detection after post-column zinc reduction. Pharmacokinetic evaluation was performed using non-compartmental analysis. Pharmacokinetic analysis of serum phylloquinone concentration versus time profiles revealed significant differences in the main pharmacokinetic parameters between groups. Upon oral administration, VKORC1 AG carriers showed 41 % higher mean bioavailability (p = 0.01) compared with homozygous AA individuals. Furthermore, AG subjects exhibited 30 % (p = 0.042) and 36 % (p = 0.021) higher mean AUC compared with GG and AA respectively. Terminal half-life was 32 % and 27 % longer for AG carriers in comparison to GG (p = 0.004) and AA (p = 0.015) genotypes respectively. Pharmacokinetic differences indicated significant inter-individual variance of vitamin K fate in the human body. The influence of the VKORC1 promoter polymorphism c.-1639 G &gt; A on the pharmacokinetic properties of phylloquinone could be demonstrated in humans. To gain deeper insight in other potential genetic determinants of systemic vitamin K exposure, further correlation of the phenotype-genotype relationship of different players in vitamin K turnover has to be gained."	"Reactivity of rhodium(I) complexes bearing nitrogen-containing ligands toward CH3I: synthesis and full characterization of neutral cis-[RhX(CO)2(L)] and acetyl [RhI(μ-I)(COMe)(CO)(L)]2 complexes. The neutral rhodium(I) square-planar complexes [RhX(CO)(2)(L)] [X = Cl (3), I (4)] bearing a nitrogen-containing ligand L [diethylamine (a), triethylamine (b), imidazole (c), 1-methylimidazole (d), pyrazole (e), 1-methylpyrazole (f), 3,5-dimethylpyrazole (g)] are straightforwardly obtained from L and [Rh(μ-X)(CO)(2)](2) [X = Cl (1), I (2)] precursors. The synthesis is extended to the diethylsulfide ligand h for 3h and 4h. According to the CO stretching frequency of 3 and 4, the ranking of the electronic density on the rhodium center follows the order b &gt; a ≈ d &gt; c &gt; g &gt; f ≈ h &gt; e. The X-ray molecular structures of 3a, 3d-3f, 4a, and 4d-4f were determined. Results from variable-temperature (1)H and (13)C{(1)H} NMR experiments suggest a fluxional associative ligand exchange for 4c-4h and a supplementary hydrogen-exchange process in 4e and 4g. The oxidative addition reaction of CH(3)I to complexes 4c-4g affords the neutral dimeric iodo-bridged acetylrhodium(III) complexes [RhI(μ-I)(COCH(3))(CO)(L)](2) (6c-6g) in very good isolated yields, whereas 4a gives a mixture of neutral 6a and dianionic [RhI(2)(μ-I)(COCH(3))(CO)][NHMeEt(2)](2) and 4h exclusively provides the analogue dianionic complex with [SMeEt(2)](+) as the counterion. X-ray molecular structures for 6d(2) and 6e reveal that the two apical CO ligands are in mutual cis positions, as are the two apical d and e ligands, whereas isomer 6d(1) is centrosymmetric. Further reactions of 6d and 6e with CO or ligand e gave quantitatively the monomeric complexes [RhI(2)(COCH(3))(CO)(2)(d)] (7d) and [RhI(2)(COCH(3))(CO)(e)(2)] (8e), respectively, as confirmed by their X-ray structures. The initial rate of CH(3)I oxidative addition to 4 as determined by IR monitoring is dependent on the nature of the nitrogen-containing ligand. For 4a and 4h, reaction rates similar to those of the well-known rhodium anionic [RhI(2)(CO)(2)](-) species are observed and are consistent with the formation of this intermediate species through methylation of the a and h ligands. The reaction rates are reduced significantly when using imidazole and pyrazole ligands and involve the direct oxidative addition of CH(3)I to the neutral complexes 4c-4g. Complexes 4c and 4d react around 5-10 times faster than 4e-4g mainly because of electronic effects. The lowest reactivity of 4f toward CH(3)I is attributed to the steric effect of the coordinated ligand, as supported by the X-ray structure."	"Modeling of pharmacokinetics of cocaine in human reveals the feasibility for development of enzyme therapies for drugs of abuse. A promising strategy for drug abuse treatment is to accelerate the drug metabolism by administration of a drug-metabolizing enzyme. The question is how effectively an enzyme can actually prevent the drug from entering brain and producing physiological effects. In the present study, we have developed a pharmacokinetic model through a combined use of in vitro kinetic parameters and positron emission tomography data in human to examine the effects of a cocaine-metabolizing enzyme in plasma on the time course of cocaine in plasma and brain of human. Without an exogenous enzyme, cocaine half-lives in both brain and plasma are almost linearly dependent on the initial cocaine concentration in plasma. The threshold concentration of cocaine in brain required to produce physiological effects has been estimated to be 0.22±0.07 µM, and the threshold area under the cocaine concentration versus time curve (AUC) value in brain (denoted by AUC2(∞)) required to produce physiological effects has been estimated to be 7.9±2.7 µM·min. It has been demonstrated that administration of a cocaine hydrolase/esterase (CocH/CocE) can considerably decrease the cocaine half-lives in both brain and plasma, the peak cocaine concentration in brain, and the AUC2(∞). The estimated maximum cocaine plasma concentration which a given concentration of drug-metabolizing enzyme can effectively prevent from entering brain and producing physiological effects can be used to guide future preclinical/clinical studies on cocaine-metabolizing enzymes. Understanding of drug-metabolizing enzymes is key to the science of pharmacokinetics. The general insights into the effects of a drug-metabolizing enzyme on drug kinetics in human should be valuable also in future development of enzyme therapies for other drugs of abuse."	"Preparation of a family of hexanuclear rhenium cluster complexes containing 5-(phenyl)tetrazol-2-yl ligands and alkylation of 5-substituted tetrazolate ligands. The preparation of two new families of hexanuclear rhenium cluster complexes containing benzonitrile and phenyl-substituted tetrazolate ligands is described. Specifically, we report the preparation of a series of cluster complexes with the formula [Re(6)Se(8)(PEt(3))(5)L](2+) where L = benzonitrile, p-aminobenzonitrile, p-methoxybenzonitrile, p-acetylbenzonitrile, or p-nitrobenzonitrile. All of these complexes undergo a [2 + 3] cycloaddition with N(3)(-) to generate the corresponding [Re(6)Se(8)(PEt(3))(5)(5-(p-X-phenyl)tetrazol-2-yl)](+) (or [Re(6)Se(8)(PEt(3))(5)(2,5-p-X-phenyltetrazolate)](+)) cluster complexes, where X = NH(2), OMe, H, COCH(3), or NO(2). Crystal structure data are reported for three compounds: [Re(6)Se(8)(PEt(3))(5)(p-acetylbenzonitrile)](BF(4))(2)•MeCN, [Re(6)Se(8)(PEt(3))(5)(2,5-phenyltetrazolate)](BF(4))•CH(2)Cl(2), and [Re(6)Se(8)(PEt(3))(5)(2,5-p-aminophenyltetrazolate)](BF(4)). Treatment of [Re(6)Se(8)(PEt(3))(5)(2,5-phenyltetrazolate)](BF(4)) with HBF(4) in CD(3)CN at 100 °C leads to protonation of the tetrazolate ring and formation of [Re(6)Se(8)(PEt(3))(5)(CD(3)CN)](2+). Surprisingly, alkylation of the phenyl and methyl tetrazolate complexes ([Re(6)Se(8)(PEt(3))(5)(2,5-N(4)CPh)](BF(4)) and [Re(6)Se(8)(PEt(3))(5)(1,5-N(4)CMe)](BF(4))) with methyl iodide and benzyl bromide, leads to the formation of mixtures of 1,5- and 2,5-disubstituted tetrazoles."	"The reactions of pyridinyl thioesters with triiron dodecacarbonyl: their novel diiron carbonyl complexes and mechanistic investigations. Reaction of Fe(3)(CO)(12) with pyridinyl thioester ligand PyCH(2)SCOCH(3) (L(1), Py = pyridin-2-yl) produced complex, [Fe(2)(κ-COCH(3))(μ-SCH(2)Py)(CO)(5)] (1) (PyCH(2)S = pyridin-2-ylmethanethiolate). When complex 1 reacted with PPh(3), a monosubstituted complex, [Fe(2)(κ-COCH(3))(μ-SCH(2)Py)(CO)(4)PPh(3)] (2), was derived. Reaction of the same precursor with analogous thioester ligand PyCH(2)SCOPy (L(2)) generated three novel diiron complexes, [Fe(2)(κ-Py)(μ-SCH(2)Py)(CO)(5)] (3), [Fe(2)(κ-Py)'(μ-SCH(2)Py)(CO)(5)] (4), and [Fe(2)(κ-Py)(μ-SCH(2)Py)(CO)(6)] (5). Complexes 3 and 4 are structural isomers. Complex 5 could be converted into complex 4 but the conversion from complex 5 to the isomer 3 was not observed. All the five complexes were fully characterised using FTIR, NMR, and other techniques. Their structures were determined using X-ray single crystal diffraction analysis. The oxidative formation of complexes 1, 3, 4, and 5 involved C-S and/or C-C bonds cleavages. To probe possible mechanisms for these cleavages, DFT calculations were performed. From the calculations, viable reaction pathways leading to the formation of all the isolated products were delineated. The results of the theoretic calculations also allowed rationalisation of the experimental observations."	"Exosomes as nucleic acid nanocarriers. Exosomes are nano-sized vesicles produced naturally by many cell types. They are specifically loaded with nucleic acid cargo, dependent on the exosome-producing cell and its homeostatic state. As natural intercellular shuttles of miRNA, exosomes influence an array of developmental, physiological and pathological processes in the recipient cell or tissue to which they can be selectively targeted by their tetraspanin surface-domains. By a review of current research, we illustrate here why exosomes are ideal nanocarriers for use in the targeted in vivo delivery of nucleic acids."	"A novel COCH mutation associated with autosomal dominant nonsyndromic hearing loss disrupts the structural stability of the vWFA2 domain. Mutations in COCH have been associated with autosomal dominant nonsyndromic hearing loss (DFNA9) and are frequently accompanied by vestibular hypofunction. Here, we report identification of a novel missense mutation, p.F527C, located in the vWFA2 domain in members of a Korean family with late-onset and progressive hearing loss. To assess the molecular characteristics of this cochlin mutant, we constructed both wild-type and mutant cochlin constructs and transfected these into mammalian cell lines. Results of immunocytochemistry analysis demonstrated localization of the cochlin mutant in the endoplasmic reticulum/Golgi complex, whereas western blot analyses of cell lysates revealed that the mutant cochlin tends to form covalent complexes that are retained in the cell. Biochemical analyses of recombinant vWFA2 domain of cochlin carrying the p.F527C mutation revealed that the mutation increases propensity of the protein to form covalent disulfide-bonded dimers and affects the structural stability but not the collagen-affinity of the vWFA2 domain. We suggest that the instability of mutant cochlin is the major driving force for cochlin aggregation in the inner ear in DFNA9 patients carrying the COCH p.F527C mutation."	"High-temperature measurements of the reactions of OH with a series of ketones: acetone, 2-butanone, 3-pentanone, and 2-pentanone. The overall rate constants for the reactions of hydroxyl radicals (OH) with a series of ketones, namely, acetone (CH(3)COCH(3)), 2-butanone (C(2)H(5)COCH(3)), 3-pentanone (C(2)H(5)COC(2)H(5)), and 2-pentanone (C(3)H(7)COCH(3)), were studied behind reflected shock waves over the temperature range of 870-1360 K at pressures of 1-2 atm. OH radicals were produced by rapid thermal decomposition of the OH precursor tert-butyl hydroperoxide (TBHP) and were monitored by the narrow line width ring dye laser absorption of the well-characterized R(1)(5) line in the OH A-X (0, 0) band near 306.69 nm. The overall rate constants were inferred by comparing the measured OH time histories with the simulated profiles from the detailed mechanisms of Pichon et al. (2009) and Serinyel et al. (2010). These measured values can be expressed in Arrhenius form as k(CH3COCH3+OH) = 3.30 × 10(13) exp(-2437/T) cm(3) mol(-1) s(-1), k(C2H5COCH3+OH )= 6.35 × 10(13) exp(-2270/T) cm(3) mol(-1) s(-1), k(C2H5COC2H5+OH) = 9.29 × 10(13) exp(-2361/T) cm(3) mol(-1) s(-1), and k(C3H7COCH3+OH) = 7.06 × 10(13) exp(-2020/T) cm(3) mol(-1) s(-1). The measured rate constant for the acetone + OH reaction from the current study is consistent with three previous experimental studies from Bott and Cohen (1991), Vasudevan et al. (2005), and Srinivasan et al. (2007), within ±20%. Here, we also present the first direct high-temperature rate constant measurements of 2-butanone + OH, 3-pentanone + OH, and 2-pentanone + OH reactions. The measured values for the 2-butanone + OH reaction are in close accord with the theoretical calculation from Zhou et al. (2011), and the measured values for the 3-pentanone + OH reaction are in excellent agreement with the estimates (by analogy with the H-atom abstraction rate constants from alkanes) from Serinyel et al. Finally, the structure-activity relationship from Kwok and Atkinson (1995) was used to estimate these four rate constants, and the estimated values from this group-additivity model show good agreement with the measurements (within ~25%) at the present experimental conditions."	"Importance of fundamental sp, sp2, and sp3 hydrocarbon radicals in the growth of polycyclic aromatic hydrocarbons. The most basic chemistry of products formation in hydrocarbons pyrolysis has been explored via a comparative experimental study on the roles of fundamental sp, sp(2), and sp(3) hydrocarbon radicals/intermediates such as ethyne/ethynyl (C(2)H(2)/C(2)H), ethene/ethenyl (C(2)H(4)/C(2)H(3)), and methane/methyl (CH(4)/CH(3)) in products formations. By using an in situ time-of-flight mass spectrometry technique, gas-phase products of pyrolysis of acetylene (ethyne, C(2)H(2)), ethylene (ethene, C(2)H(4)), and acetone (propanone, CH(3)COCH(3)) were detected and found to include small aliphatic products to large polycyclic aromatic hydrocarbons (PAHs) of mass 324 amu. Observed products mass spectra showed a remarkable sequence of mass peaks at regular mass number intervals of 24, 26, or 14 indicating the role of the particular corresponding radicals, ethynyl (C(2)H), ethenyl (C(2)H(3)), or methyl (CH(3)), in products formation. The analysis of results revealed the following: (a) product formation in hydrocarbon pyrolysis is dominated by hydrogen abstraction and a vinyl (ethenyl, C(2)H(3)) radical addition (HAVA) mechanism, (b) contrary to the existing concept of termination of products mass growth at cyclopenta fused species like acenaphthylene, novel pathways forming large PAHs were found succeeding beyond such cyclopenta fused species by the further addition of C(2)H(x) or CH(3) radicals, (c) production of cyclopenta ring-fused PAHs (CP-PAHs) such as fluoranthene/corannulene appeared as a preferred route over benzenoid species like pyrene/coronene, (d) because of the high reactivity of the CH(3) radical, it readily converts unbranched products into products with aliphatic chains (branched product), and (e) some interesting novel products such as dicarbon monoxide (C(2)O), tricarbon monoxide (C(3)O), and cyclic ketones were detected especially in acetone pyrolysis. These results finally suggest that existing kinetic models of product formation should be modified to include the reported novel species and their formation pathways. It is expected that outcomes of this study will be useful to understand the products formation from reactors to interstellar atmospheres as well as the growth mechanism of carbon nanomaterials."	"ERPs across arithmetic operations in a delayed answer verification task. In order to compare processing across operations, we recorded event-related potentials (ERPs) elicited by both problems and solutions in addition, subtraction, multiplication, and division conditions in a delayed answer verification task. Amplitudes of an early negativity, P300, and late positive component (LPC) elicited by solutions were sensitive to the correctness of the presented answers within operations and differed across operations only for incorrect solutions. The early negativity resembled an N270 rather than an N400. The amplitude of an N300 elicited by problem presentations also differed across operations. Our results indicate that ERPs are sensitive to differences in processing across arithmetic operations in an answer verification task both during presentation of the problems, when production/retrieval processes occur, and during comparison of incorrect presented solutions with expected solutions."	"Etiology of unilateral hearing loss in a national hereditary deafness repository. The aim of this study was to characterize the genetic, audiologic, and epidemiologic characteristics of unilateral hearing loss (HL) in a national hereditary deafness repository. This is a prospective clinical study involving 34 subjects identified in a national hereditary deafness repository. Clinical data and family history of HL were obtained on enrollment. Candidate deafness genes were screened by single-stranded conformation polymorphism, and mutations were confirmed with sequencing. Thirty-four subjects (19 males, 15 females) with unilateral HL were identified, ranging in age from 2 months to 36 years. The mean age at diagnosis was 7 years, and the left ear was affected in 62% of the cases. The racial distribution of our sample was 62% white, 23% African American, and 15% Hispanic. Imaging results were available in 47%, and most (69%) were considered normal. Nineteen percent had enlarged vestibular aqueducts, 2 had ipsilateral Mondini dysplasia, and 1 had a common cavity deformity. Twenty subjects (59%) had a family history of HL, with 26% specifically reporting familial unilateral HL. Mutational screening revealed sequence variants in the GJB2 (connexin 26), GJB3 (connexin 31), TECTA, and COCH genes. Two novel mutations were detected in COCH and TECTA. Sequence variants in known deafness genes were detected in more than one-third of our study population, suggesting that gene/gene or gene/environmental interactions may indeed play a role in the etiology of some cases of unilateral deafness. Further prospective studies including congenital cytomegalovirus screening at birth and molecular screening of deafness genes in children with congenital unilateral HL will be required to establish the etiology of unilateral deafness with certainty."	"Unravelling the reaction mechanism of the reductive ring contraction of 1,2-pyridazines. Substituted pyrroles may be synthesized from selected 1,2-pyridazines through a reductive ring contraction involving the addition of four electrons and four protons. Our density functional theory computations of this reaction mechanism show that the first reduction event must be preceded by the uptake of one proton by 1,2-pyridazine and that the reaction proceeds through a 2e(-)/3H(+)-bearing intermediate. In the absence of electron-withdrawing groups able to resonate charge away from the ring, this intermediate lies too high in energy, making the reaction sequence thermodynamically inaccessible. After another two-electron reduction and the addition of two more protons, the original 1,2-pyridazine ring opens. Ring contraction and ammonia elimination then proceed with very small barriers, irrespective of the substituents present in the original 1,2-pyridazine. By establishing the need for electron-withdrawing resonant groups in the 3- and 6-positions to stabilize the critical intermediate in the initial stages of the reaction, this work suggests that the scope of the reductive ring contraction of 1,2-pyridazines may be expanded to pyridazines bearing COCH(3) groups, amides or aryls in these positions. We also explain the lack of reactivity of unsubstituted 1,2-pyridazine and analyze the feasibility of bypassing the high energy 2e(-)/3H(+)-intermediate through disproportionation of earlier 2e(-)/2H(+)-bearing intermediates."	"First spectroscopic study on the structural features of dissolved organic matter isolated from rainwater in different seasons. The complexity of rainwater dissolved organic matter (DOM) and the large percentage considered uncharacterized has made it difficult to determine the role of rainwater DOM in regional and global carbon budgets. Recent studies have concentrated on determining the structural characteristics of the bulk DOM in rainwater, but a comparison between the structural characteristics of rainwater DOM from different seasons is lacking. In this work, DOM was extracted from rainwater collected in different seasons by a procedure based on adsorption onto DAX-8 resin and a comparison between the spectroscopic characteristics of extracted DOM was performed using UV-visible, excitation-emission matrix (EEM) fluorescence and (1)H NMR spectroscopies. Similar structural characteristics were observed for extracted DOM from the different seasons: high content of aliphatic structures, hydroxy and alkoxy groups, carbonyl groups and unsaturated carbon atoms, and low content of aromatic structures when compared with aliphatic structures. The obtained results suggest a model of chemical structures for the extracted DOM from rainwater, as consisting mainly of aliphatic chains, with COOH, -CH(2)OH, -COCH(3), or -CH(3) terminal groups, and with only a minor aromatic component. Moreover, this study suggests that the DOM extracted from rainwater has higher aliphatic character and lower aromatic content than aquatic humic substances. Thus, the chemical characteristics of aquatic humic substances may not be good models for DOM extracted from rainwater."	"Cochlin, intraocular pressure regulation and mechanosensing. Fluid shear modulates many biological properties. How shear mechanosensing occurs in the extracellular matrix (ECM) and is transduced into cytoskeletal change remains unknown. Cochlin is an ECM protein of unknown function. Our investigation using a comprehensive spectrum of cutting-edge techniques has resulted in following major findings: (1) over-expression and down-regulation of cochlin increase and decrease intraocular pressure (IOP), respectively. The overexpression was achieved in DBA/2J-Gpnmb(+)/SjJ using lentiviral vectors, down-regulation was achieved in glaucomatous DBA/2J mice using targeted disruption (cochlin-null mice) and also using lentiviral vector mediated shRNA against cochlin coding region; (2) reintroduction of cochlin in cochlin-null mice increases IOP; (3) injection of exogenous cochlin also increased IOP; (4) increasing perfusion rates increased cochlin multimerization, which reduced the rate of cochlin proteolysis by trypsin and proteinase K; The cochlin multimerization in response to shear stress suggests its potential mechanosensing. Taken together with previous studies, we show cochlin is involved in regulation of intraocular pressure in DBA/2J potentially through mechanosensing of the shear stress."	"Endothelial RIG-I activation impairs endothelial function. Endothelial dysfunction is a crucial part of the chronic inflammatory atherosclerotic process and is mediated by innate and acquired immune mechanisms. Recent studies suggest that pattern recognition receptors (PRR) specialized in immunorecognition of nucleic acids may play an important role in endothelial biology in a proatherogenic manner. Here, we analyzed the impact of endothelial retinoic acid inducible gene I (RIG-I) activation upon vascular endothelial biology. Wild type mice were injected intravenously with 32.5 μg of the RIG-ligand 3pRNA (RNA with triphosphate at the 5'end) or polyA control every other day for 7 days. In 3pRNA-treated mice, endothelium-depended vasodilation was significantly impaired, vascular oxidative stress significantly increased and circulating endothelial microparticle (EMP) numbers significantly elevated compared to controls. To gain further insight in RIG-I dependent endothelial biology, cultured human coronary endothelial cells (HCAEC) and endothelial progenitor cells (EPC) were stimulated in vitro with 3pRNA. Both cells types express RIG-I and react with receptor upregulation upon stimulation. Reactive oxygen species (ROS) formation is enhanced in both cell types, whereas apoptosis and proliferation is not significantly affected in HCAEC. Importantly, HCAEC release significant amounts of proinflammatory cytokines in response to RIG-I stimulation. This study shows that activation of the cytoplasmatic nucleic acid receptor RIG-I leads to endothelial dysfunction. RIG-I induced endothelial damage could therefore be an important pathway in atherogenesis."	"[New allele of the COCHLEATA gene in pea Pisum sativum L]. Analysis with the polymerase chain reaction showed that the Khlorofill-4 pea Pisum sativum chlorophyll-deficient mutant with reduced stipules has an altered structure of the COCHLEATA (COCH) gene, carrying a new mutant COCH allele. The phenotype of the mutant was described in comparison with another form having reduced stipules (stipules reduced) and the control. Leaves of the coch mutant are smaller and have other proportions than in the control; stipules are absent from leaves of the first nodes and are narrow, bandlike, or spoonlike at later ontogenetic stages. It was concluded that the cell number in the stipule epidermis is reduced in the st and coch mutants compared to the wild type."	"Abstraction kinetics of H-atom by OH radical from pinonaldehyde (C10H16O2): ab initio and transition-state theory calculations. The kinetics and abstraction rate coefficients of hydroxyl radical (OH) reaction with pinonaldehyde were computed using G3(MP2) theory and transition-state theory (TST) between 200 and 400 K. Structures of the reactants, reaction complexes (RCs), product complexes (PCs), transition states (TSs), and products were optimized at the MP2(FULL)/6-31G* level of theory. Fifteen transition states were identified for the title reaction and confirmed by intrinsic reaction coordinate (IRC) calculations. The contributions of all the individual hydrogens in the substrate molecule to the total reaction are computed. The quantum mechanical tunneling effect was computed using Wigner's and Eckart's methods (both symmetrical and unsymmetrical methods). The reaction exhibits a negative temperature dependent rate coefficient, k(T) = (1.97 ± 0.34) × 10(-13) exp[(1587 ± 48)/T] cm(3) molecule(-1) s(-1), k(T) = (3.02 ± 0.56) × 10(-13) exp[(1534 ± 52/T] cm(3) molecule(-1) s(-1), and k(T) = (4.71 ± 1.85) × 10(-14) exp[(2042 ± 110)/T] cm(3) molecule(-1) s(-1) with Wigner's, Eckart's symmetrical, and Eckart's unsymmetrical tunneling corrections, respectively. Theoretically calculated rate coefficients are found to be in good agreement with the experimentally measured ones and other theoretical results. It is shown that hydrogen abstraction from -CHO position is the major channel, whereas H-abstraction from -COCH(3) is negligible. The atmospheric lifetime of pinonaldehyde is computed to be few hours and found to be in excellent agreement with the experimentally estimated ones."	"Cyclo- and carbophosphazene-supported ligands for the assembly of heterometallic (Cu2+/Ca2+, Cu2+/Dy3+, Cu2+/Tb3+) complexes: synthesis, structure, and magnetism. The carbophosphazene and cyclophosphazene hydrazides, [{NC(N(CH(3))(2))}(2){NP{N(CH(3))NH(2)}(2)}] (1) and [N(3)P(3)(O(2)C(12)H(8))(2){N(CH(3))NH(2)}(2)] were condensed with o-vanillin to afford the multisite coordination ligands [{NC(N(CH(3))(2))}(2){NP{N(CH(3))N═CH-C(6)H(3)-(o-OH)(m-OCH(3))}(2)}] (2) and [{N(2)P(2)(O(2)C(12)H(8))(2)}{NP{N(CH(3))N═CH-C (6)H(3)-(o-OH)(m-OCH(3))}(2)}] (3), respectively. These ligands were used for the preparation of heterometallic complexes [{NC(N(CH(3))(2))}(2){NP{N(CH(3))N═CH-C(6)H(3)-(o-O)(m-OCH(3))}(2)}{CuCa(NO(3))(2)}] (4), [{NC(N(CH(3))(2))}(2){NP{N(CH(3))N═CH-C(6)H(3)-(o-O)(m-OCH(3))}(2)}{Cu(2)Ca(2)(NO(3))(4)}]·4H(2)O (5), [{NC(N(CH(3))(2))}(2){NP{N(CH(3))N═CH-C(6)H(3)-(o-O)(m-OCH(3))}(2)}{CuDy(NO(3))(4)}]·CH(3)COCH(3) (6), [{NP(O(2)C(12)H(8))}(2){NP{N(CH(3))N═CH-C(6)H(3)-(o-O)(m-OCH(3))}(2)}{CuDy(NO(3))(3)}] (7), and [{NP(O(2)C(12)H(8))}(2){NP{N(CH(3))N═CH-C(6)H(3)-(o-O)(m-OCH(3))}(2)}{CuTb(NO(3))(3)}] (8). The molecular structures of these compounds reveals that the ligands 2 and 3 possess dual coordination pockets which are used to specifically bind the transition metal ion and the alkaline earth/lanthanide metal ion; the Cu(2+)/Ca(2+), Cu(2+)/Tb(3+), and Cu(2+)/Dy(3+) pairs in these compounds are brought together by phenoxide and methoxy oxygen atoms. While 4, 6, 7, and 8 are dinuclear complexes, 5 is a tetranuclear complex. Detailed magnetic properties on 6-8 reveal that these compounds show weak couplings between the magnetic centers and magnetic anisotropy. However, the ac susceptibility experiments did not reveal any out of phase signal suggesting that in these compounds slow relaxation of magnetization is absent above 1.8 K."	"Methyl dynamics flattens barrier to proton transfer in crystalline tetraacetylethane. We analyze the interplay between proton transfer in the hydrogen-bond bridge, O···H···O, and lattice dynamics in the model system tetraacetylethane (TAE) (CH(3)CO)(2)CH═CH(COCH(3))(2) using density functional theory. Lattice dynamics calculations and molecular dynamics simulations are validated against neutron scattering data. Hindrance to the cooperative reorientation of neighboring methyl groups at low temperatures gives a preferred O atom for the bridging proton. The amplitude of methyl torsions becomes larger with increasing temperature, so that the free-energy minimum for the proton becomes flat over 0.2 Å. For the isolated molecule, however, we show an almost temperature-independent symmetric double-well potential persists. This difference arises from the much higher barriers to methyl torsion in the crystal that make the region of torsional phase space that is most crucial for symmetrization poorly accessible. Consequently, the proton-transfer potential remains asymmetric though flat at the base, even at room temperature in the solid."	"Modification of pharmacokinetic and abuse-related effects of cocaine by human-derived cocaine hydrolase in monkeys. Although substantial research effort has focused on developing pharmacological treatments for cocaine abuse, no effective medications have been developed. Recent studies show that enzymes that metabolize cocaine in the periphery, forestalling its entry into the brain, can prevent cocaine toxicity and its behavioral effects in rodents. Here we report on effects of one such enzyme (Albu-CocH) on the pharmacokinetic and behavioral effects of cocaine in squirrel monkeys. Albu-CocH was developed from successive mutations of human butyrylcholinesterase (BChE) and has 1000-fold greater catalytic activity against cocaine than naturally occurring BChE. Pharmacokinetic studies showed that Albu-CocH (5 mg/kg) had a half-life of 56.6 hours in squirrel monkeys. In these studies, plasma levels of cocaine following i.v. 1 mg/kg cocaine were reduced 2 hours after administration of Albu-CocH, whereas plasma levels of the cocaine metabolite ecgonine methyl ester were increased. These effects were still evident 72 hours following Albu-CocH administration. In behavioral experiments in monkeys, pre-treatment with 5 mg/kg Albu-CocH dramatically decreased self-administration of a reinforcing dose of i.v. cocaine (30 µg/kg/injection) for over 24 hours. Pre-treatment with 5 mg/kg Albu-CocH also attenuated the reinstatement of extinguished cocaine self-administration by an i.v. priming injection of cocaine (0.1 or 0.3 mg/kg) and, in separate studies, attenuated the discriminative-stimulus effects of cocaine. The ability of Albu-CocH to attenuate the abuse-related effects of cocaine in squirrel monkeys indicates that further investigation of BChE mutants as potential treatment for cocaine abuse and toxicity is warranted."	"Co3O4/ZnO nanocomposites: from plasma synthesis to gas sensing applications. Herein, we describe the design, fabrication and gas sensing tests of p-Co(3)O(4)/n-ZnO nanocomposites. Specifically, arrays of (001) oriented ZnO nanoparticles were grown on alumina substrates by plasma enhanced-chemical vapor deposition (PECVD) and used as templates for the subsequent PECVD of Co(3)O(4) nanograins. Structural, morphological and compositional analyses evidenced the successful formation of pure and high-area nanocomposites with a tailored overdispersion of Co(3)O(4) particles on ZnO and an intimate contact between the two oxides. Preliminary functional tests for the detection of flammable/toxic analytes (CH(3)COCH(3), CH(3)CH(2)OH, NO(2)) indicated promising sensing responses and the possibility of discriminating between reducing and oxidizing species as a function of the operating temperature."	"Geomicrobiology of extremely acidic subsurface environments. Extreme acidophiles (microorganisms with pH optima of &lt; 3) can colonize and exploit subterranean environments, such as abandoned metal sulfide mines, that have the potential for developing widespread or isolated pockets of acidity. Although acidophiles can utilize a wide range of electron donors, inorganic materials (reduced sulfur, ferrous iron, and possibly hydrogen) are often the most abundant sources of energy for acidophiles in the subsurface. The diversity and interactions of acidophilic microbial communities in two abandoned sulfide mineral mines (in Iron Mountain, California, and the Harz mountains in Germany) and a sulfidic cave (Frasissi, Italy) are reviewed. In addition, the contrasting geomicrobiology of two abandoned sulfide mineral mines in north Wales is described. Both are extremely acidic (pH~2) and low-temperature (8-9 °C) sites, but one (Cae Coch) is essentially a dry mine with isolated pockets of water, while the other (Mynydd Parys) contains a vast underground lake that was partially drained several years ago. The microbial communities in these two mines exhibit different relative abundances and often different species of archaea and bacteria. Wooden pit props, submerged in the underground lake, act as a slow-release source of organic carbon in the subterranean Mynydd Parys lake, supporting a microbial community that is more enriched with heterotrophic microorganisms."	"Electron transfer dissociation of dipositive uranyl and plutonyl coordination complexes. Reported here is a comparison of electron transfer dissociation (ETD) and collision-induced dissociation (CID) of solvent-coordinated dipositive uranyl and plutonyl ions generated by electrospray ionization. Fundamental differences between the ETD and CID processes are apparent, as are differences between the intrinsic chemistries of uranyl and plutonyl. Reduction of both charge and oxidation state, which is inherent in ETD activation of [An(VI) O(2) (CH(3) COCH(3) )(4) ](2+) , [An(VI) O(2) (CH(3) CN)(4) ](2) , [U(VI) O(2) (CH(3) COCH(3) )(5) ](2+) and [U(VI) O(2) (CH(3) CN)(5) ](2+) (An = U or Pu), is accompanied by ligand loss. Resulting low-coordinate uranyl(V) complexes add O(2) , whereas plutonyl(V) complexes do not. In contrast, CID of the same complexes generates predominantly doubly-charged products through loss of coordinating ligands. Singly-charged CID products of [U(VI) O(2) (CH(3) COCH(3) )(4,5) ](2+) , [U(VI) O(2) (CH(3) CN)(4,5) ](2+) and [Pu(VI) O(2) (CH(3) CN)(4) ](2+) retain the hexavalent metal oxidation state with the addition of hydroxide or acetone enolate anion ligands. However, CID of [Pu(VI) O(2) (CH(3) COCH(3) )(4) ](2+) generates monopositive plutonyl(V) complexes, reflecting relatively more facile reduction of Pu(VI) to Pu(V)."	"Ionic crystals [M3O(OOCC6H5)6(H2O)3]4[α-SiW12O40] (M = Cr, Fe) as heterogeneous catalysts for pinacol rearrangement. Complexation of trinuclear oxo-centered carboxylates with a silicododecatungstate resulted in the formation of ionic crystals of [M(3)O(OOCC(6)H(5))(6)(H(2)O)(3)](4)[α-SiW(12)O(40)]·nH(2)O·mCH(3)COCH(3) [M = Cr (Ia), Fe (IIa)]. Treatments of Ia and IIa at 373 K in vacuo formed guest-free phases Ib and IIb, respectively. Compounds Ib and IIb heterogeneously catalyzed the pinacol rearrangement to pinacolone with high conversion at 373 K, and the catalysis is suggested to proceed size selectively in the solid bulk."	"Cocaine hydrolase encoded in viral vector blocks the reinstatement of cocaine seeking in rats for 6 months. Cocaine dependence is a pervasive disorder with high rates of relapse. In a previous study, direct administration of a quadruple mutant albumin-fused butyrylcholinesterase that efficiently catalyzes hydrolysis of cocaine to benzoic acid and ecgonine methyl ester acutely blocked cocaine seeking in an animal model of relapse. In the present experiments, these results were extended to achieve a long-duration blockade of cocaine seeking with a gene transfer paradigm using a related butyrylcholinesterase-based cocaine hydrolase (CocH). Male and female rats were allowed to self-administer cocaine under a fixed-ratio 1 schedule of reinforcement for approximately 14 days. Following the final self-administration session, rats were injected with CocH vector or a control injection (empty vector or saline), and their cocaine solutions were replaced with saline for 14 days to allow for extinction of lever pressing. Subsequently, they were tested for drug-primed reinstatement by administering intraperitoneal injections of saline (S), cocaine (C) (5, 10, and 15 mg/kg), and d-amphetamine according to the following sequence: S, C, S, C, S, C, S, d-amphetamine. Rats then received cocaine-priming injections once weekly for 4 weeks and, subsequently, once monthly for up to 6 months. Administration of CocH vector produced substantial and sustained CocH activity in plasma that corresponded with diminished cocaine-induced (but not amphetamine-induced) reinstatement responding for up to 6 months following treatment (compared with high-responding control animals). These results demonstrate that viral transfer of CocH may be useful in promoting long-term resistance to relapse to cocaine addiction."	"The Dissociative Experiences Scale: A Welsh Translation. NA"	"[Genotype--phenotype correlation limits in sensorineural hearing loss: case report of a three-year-old child with a bilateral cochleovestibular impairment and a molecular variant of the COCH gene]. Mutations of the COCH gene inherited in an autosomal dominant mode are responsible for late-onset cochleovestibular impairment on both sides. Our objective is to report the youngest patient (3 years) associating a molecular variant of the COCH gene and a cochleovestibular impairment on both sides. The clinical sequence has started with a vestibular dysfunction in a two-year-old child: recurrent rotatory dizziness during 12 months. At the age of 3, a sensorineural hearing loss on both sides has occured associated with spontaneous variation during 6 months. The lack of mutation of the connexin 26, connexin 30 and pendrin genes has reorientated the genetic investigation. A molecular variant of the COCH gene was found in the vWFA2 domain. It was an in-frame deletion predicting the synthesis of an abnormal protein in which 21 aminoacid were missing. Others family members with mutation were asymptomatics. In this isolated case report, the study was in favor of a non pathogenic molecular variant of the COCH gene. For all that, mutations of the COCH gene could be searched in progressive cochleovestibular dysfunctions on both sides in children, even without family affect."	"Synthesis and functional characterization of tridegin and its analogues: inhibitors and substrates of factor XIIIa. Tridegin, a 66-mer peptide isolated from the leech Haementeria ghilianii, is a potent inhibitor of the coagulation factor XIIIa. This paper describes the chemical synthesis of tridegin by two different strategies--solid-phase assembly and native chemical ligation--both followed by oxidation in solution phase. Tridegin and truncated analogues were examined for their activity and revealed a particular importance of the C-terminal region of the parent peptide. Based on these studies a minimal sequence required for factor XIIIa inhibition could be identified. Our data revealed that the glutamine residue at position 52 (Q52) of tridegin most likely binds to the active site of factor XIIIa and was therefore suggested to react with the enzyme. The function of the N-terminal region is also discussed, as the isolated C-terminal segment of tridegin lost its inhibitory activity rapidly in the presence of factor XIIIa, whereas this was not the case for the full-length inhibitor."	"Absence of COCH gene mutations in patients with superior semicircular canal dehiscence. NA"	"Direct involvement of the acetato ligand in the reductive elimination step of rhodium-catalyzed methanol carbonylation. For the last step of rhodium-catalyzed methanol carbonylation, high-pressure NMR, and kinetic and experimental data supported by density functional theory calculations are consistent with substitution of I(-) by an AcO(-) ligand on the [RhI(3)(COCH(3))(CO)(2)](-) species followed by reductive elimination of acetic anhydride, which immediately reacts with water to afford acetic acid."	"Insights into mechanistic photodissociation of chloroacetone from a combination of electronic structure calculation and molecular dynamics simulation. The stationary and intersection structures on the S(0) and S(1) potential energy surfaces of CH(3)COCH(2)Cl have been determined by the CAS(10,8)/cc-pVDZ optimizations and their relative energies are refined by the CASPT2//CAS(10,8)/cc-pVDZ single-point calculations. Non-adiabatic molecular dynamics simulations were performed on the basis of the state-averaged CAS(10,8)/cc-pVDZ calculated energies, energy gradients, and Hessian matrix for the S(0) and S(1) states. It is found that the features of the S(1) potential energy surface and non-adiabatic effect control the selectivity of the two α-C-C bond fissions, which provides a reasonable explanation why one α-C-C bond was observed as a primary channel and the other is ruled out even if CH(3)COCH(2)Cl is excited at 193 nm. The β-C-Cl fission is determined to be a dominant channel once the CH(3)COCH(2)Cl molecule is excited to the S(1) state and the β-C-Cl:α-C-C branching ratio is estimated by the RRKM rate theory to be 15:1 at 193 nm, which is overestimated in comparison with the value of ~11:1 inferred experimentally. The present calculation reveals that the α-C-C fission might take place in the ground electronic state as a result of the S(1) → S(0) internal conversion upon photolysis at 308 nm. However, the measured kinetic energy distributions of the α-C-C fission products suggest that the fission does not involve internal conversion to the ground state. To solve this issue, we need to perform non-adiabatic quantum dynamics simulation on accurate S(0), S(1), and S(2) potential energy surfaces, which is still a challenging task currently."	"Electronic stabilization of trigonal bipyramidal clusters: the role of the Sn(II) ions in [Pt5(CO)5{Cl2Sn(μ-OR)SnCl2}3]3- (R = H, Me, Et, iPr). The new [Pt(5)(CO)(5){Cl(2)Sn(μ-OR)SnCl(2)}(3)](3-) (R = H, Me, Et, (i)Pr; 1-4) clusters contain trigonal bipyramidal (TBP) Pt(5)(CO)(5) cores, as certified by the X-ray structures of [Na(CH(3)CN)(5)][NBu(4)](2)[1]·2CH(3)CN and [PPh(4)](3)[4]·3CH(3)COCH(3). The TBP geometry, which is rare for group 10 metals, is supported by an unprecedented interpenetration with a nonbonded trigonal prism of tin atoms. By capping all the Pt(3) faces, the Sn(II) lone pairs account for both Sn-Pt and Pt-Pt bonding, as indicated by DFT and topological wave function studies. In the TBP interactions, the metals use their vacant s and p orbitals using the electrons provided by Sn atoms, hence mimicking the electronic picture of main group analogues, which obey the Wade's rule. Other metal TBP clusters with the same total electron count (TEC) of 72 are different because the skeletal bonding is largely contributed by d-d interactions (e.g., [Os(5)(CO)(14)(PR(3))(μ-H)(n)](n-2), n = 0, 1, 2). In 1-4, fully occupied d shells at the Pt(ax) atoms exert a residual nucleophilicity toward the adjacent main group Sn(II) ions permitting their hypervalency through unsual metal donation."	"Expression of type I interferon by splenic macrophages suppresses adaptive immunity during sepsis. Early during Gram-negative sepsis, excessive release of pro-inflammatory cytokines can cause septic shock that is often followed by a state of immune paralysis characterized by the failure to mount adaptive immunity towards secondary microbial infections. Especially, the early mechanisms responsible for such immune hypo-responsiveness are unclear. Here, we show that TLR4 is the key immune sensing receptor to initiate paralysis of T-cell immunity after bacterial sepsis. Downstream of TLR4, signalling through TRIF but not MyD88 impaired the development of specific T-cell immunity against secondary infections. We identified type I interferon (IFN) released from splenic macrophages as the critical factor causing T-cell immune paralysis. Early during sepsis, type I IFN acted selectively on dendritic cells (DCs) by impairing antigen presentation and secretion of pro-inflammatory cytokines. Our results reveal a novel immune regulatory role for type I IFN in the initiation of septic immune paralysis, which is distinct from its well-known immune stimulatory effects. Moreover, we identify potential molecular targets for therapeutic intervention to overcome impairment of T-cell immunity after sepsis."	"Noninvasive ventilation in acute cardiogenic pulmonary edema: a meta-analysis of randomized controlled trials. The evidence of individual studies in acute cardiogenic pulmonary edema (ACPE) supporting noninvasive ventilation (NIV) is still inconclusive, particularly regarding noninvasive positive pressure ventilation (NIPPV). We carried out a meta-analysis. We searched in the Embase, Medline, Cinahl, Dare, Coch, Central, and CNKI databases and congress abstracts for trials comparing continuous positive airway pressure (CPAP) or NIPPV with standard therapy (ST). To assess treatment effects, we carried out direct comparison using a random effects model and adjusted indirect comparison. At total of 34 studies (3,041 patients) were included. In direct comparisons, both CPAP and NIPPV reduced the risk of death (relative risk [RR] 0.64, 95% CI 0.44-0.93; RR 0.80, 95% CI 0.58-1.10; respectively) compared with ST, although only CPAP had a significant effect. There were no significant differences between NIPPV and CPAP. Pooled results of direct and adjusted indirect comparisons showed that compared with ST, both CPAP and NIPPV significantly reduced mortality (RR 0.63, 95% CI 0.44-0.89; RR 0.73, 95% CI 0.55-0.97; respectively). Our findings suggest that among ACPE patients, NIV delivered through either NIPPV or CPAP reduced mortality."	"Association between LRRK2 and 4E-BP1 protein levels in normal and malignant cells. Translational control is a crucial component of cancer development and progression. Eukaryotic initiation factor (eIF) 4E mediates eIF4F association with the mRNA 5' cap structure to stimulate cap-dependent translation initiation. The eIF4E-binding protein, 4E-BP1, regulates cap-dependent translation through its phosphorylation at multiple sites. It has been described that some human carcinomas present a high level of p-4E-BP1, not always associated with high levels of p-mTOR. These previous observations suggest that other kinases could be involved in 4E-BP1 phosporylation. Investigation in new kinases that could be implicated in 4E-BP1 phosphorylation and mechanisms that affect 4E-BP1 stability is important to understand the role of eIF4E in cell transformation. In this study, we examined 48 kinases that could be involved in 4E-BP1 phosphorylation and stability. The screening study was based on analysis of 4E-BP1 status after inhibition of these kinases in a breast carcinoma cell line. Several kinases affecting 4E-BP1 stability (LRRK2, RAF-1, p38γ, GSK3β, AMPKα, PRKACA and PRKACB) and 4E-BP1 phosphorylation (CDK1, PDK1, SRC, PRKCB1, PAK2, p38β, PRKCA and CaMKKB) were identified. These findings provide evidence that 4E-BP1 can be regulated and stabilized by multiple kinases implicated in several cell signaling pathways. We focus on the finding that LRRK2 down-regulation was associated with a clearly decreased 4E-BP1 protein (and not with mRNA down-regulation). Importantly, knockdown of LRRK2 associated with high proliferative rate in normal cells and treatment with rapamycin and/or proteosome inhibition suppressed 4E-BP1 protein degradation. These results offer new insights into the regulation of total and phosphorylated 4E-BP1."	"Computational study on the reaction pathway of α-bromoacetophenones with hydroxide ion: possible path bifurcation in the addition/substitution mechanism. The reaction of an α-haloketone with a nucleophile has three reaction channels: carbonyl addition, direct substitution, and proton abstraction. DFT calculations for the reaction of PhCOCH(2)Br with OH(-) showed that there exists an addition/substitution TS on the potential energy surface, in which OH(-) interacts with both the α- and carbonyl carbons. The intrinsic reaction coordinate calculations revealed that the TS serves as the TS for direct substitution for XC(6)H(4)COCH(2)Br with an electron-donating X or a X less electron-withdrawing than m-Cl, whereas the TS serves as the TS for carbonyl addition for derivatives with a X more electron-withdrawing than m-CF(3). Trajectory calculations starting at respective TS indicated that the single TS can serve for the two mechanisms, substitution and addition, through path bifurcation after the TS for borderline substrates. The reaction is the first example of dynamic path bifurcation for fundamental reaction types of carbonyl addition and substitution."	"Electronic and vibrational spectroscopy of intermediates in methane-to-methanol conversion by CoO+. At room temperature, cobalt oxide cations directly convert methane to methanol with high selectivity but very low efficiency. Two potential intermediates of this reaction, the [HO-Co-CH(3)](+) insertion intermediate and [H(2)O-Co=CH(2)](+) aquo-carbene complex are produced in a laser ablation source and characterized by electronic and vibrational spectroscopy. Reaction of laser-ablated cobalt cations with different organic precursors seeded in a carrier gas produces the intermediates, which subsequently expand into vacuum and cool. Ions are extracted into a time-of-flight mass spectrometer and spectra are measured via photofragment spectroscopy. Photodissociation of [HO-Co-CH(3)](+) in the visible and via infrared multiple photon dissociation (IRMPD) makes only Co(+) + CH(3)OH, while photodissociation of [H(2)O-Co=CH(2)](+) produces CoCH(2)(+) + H(2)O. The electronic spectrum of [HO-Co-CH(3)](+) shows progressions in the excited state Co-C stretch (335 cm(-1)) and O-Co-C bend (90 cm(-1)); the IRMPD spectrum gives ν(OH) = 3630 cm(-1). The [HO-Co-CH(3)](+)(Ar) complex has been synthesized and its vibrational spectrum measured in the O-H stretching region. The resulting spectrum is sharper than that obtained via IRMPD and gives ν(OH) = 3642 cm(-1). Also, an improved potential energy surface for the reaction of CoO(+) with methane has been developed using single point energies calculated by the CBS-QB3 method for reactants, intermediates, transition states and products."	"Cochlin induced TREK-1 co-expression and annexin A2 secretion: role in trabecular meshwork cell elongation and motility. Fluid flow through large interstitial spaces is sensed at the cellular level, and mechanistic responses to flow changes enables expansion or contraction of the cells modulating the surrounding area and brings about changes in fluid flow. In the anterior eye chamber, aqueous humor, a clear fluid, flows through trabecular meshwork (TM), a filter like region. Cochlin, a secreted protein in the extracellular matrix, was identified in the TM of glaucomatous patients but not controls by mass spectrometry. Cochlin undergoes shear induced multimerization and plays a role in mechanosensing of fluid shear. Cytoskeletal changes in response to mechanosensing in the ECM by cochlin will necessitate transduction of mechanosensing. TREK-1, a stretch activated outward rectifying potassium channel protein known to act as mechanotransducer was found to be expressed in TM. Cochlin expression results in co-expression of TREK-1 and filopodia formation. Prolonged cochlin expression results in expression and subsequent secretion of annexin A2, a protein known to play a role in cytoskeletal remodeling. Cochlin interacts with TREK-1 and annexin A2. Cochlin-TREK-1 interaction has functional consequences and results in changes in cell shape and motility. Annexin A2 expression and secretion follows cochlin-TREK-1 syn-expression and correlates with cell elongation. Thus cytoskeleton changes in response to fluid shear sensed by cochlin are further mediated by TREK-1 and annexin A2."	"Influence of turn (or fold) and local charge in fragmentation of the peptide analogue molecule CH3CO-Gly-NH2 following single-photon VUV (118.22 nm) ionization. The radical cationic reactivity of the peptide analogue molecule CH(3)CO-Gly-NH(2) is addressed both experimentally and theoretically. The radical cation intermediate of CH(3)CO-Gly-NH(2) is created by single-photon ionization of this molecule at 118.22 nm (~10.5 eV). The two most stable conformers (C(7) and C(5)) of this molecule exhibit different folds along the backbone: the C(7) conformer has a γ-turn structure, and the C(5) conformer has a β-strand structure. The experimental results show that the radical cation intermediate of CH(3)CO-Gly-NH(2) dissociates and generates a fragment-ion signal at 73 amu that is observed through TOFMS. Theoretical results show how the fragment-ion signal at 73 amu is generated by only one conformer of CH(3)CO-Gly-NH(2) (C(7)) and how local charge and specific hydrogen bonding in the molecule influence fragmentation of the radical cation intermediate of CH(3)CO-Gly-NH(2). The specific fold of the molecule controls fragmentation of this reactive radical cation intermediate. Whereas the radical cation of the C(7) conformer dissociates through a hydrogen-transfer mechanism followed by HNCO elimination, the radical cation of the C(5) conformer does not dissociate at all. CASSCF calculations show that positive charge in the radical cationic C(7) conformer is localized at the NH(2)CO moiety of the molecular ion. This site-specific localization of the positive charge enhances the acidity of the terminal NH(2) group, facilitating hydrogen transfer from the NH(2) to the COCH(3) end of the molecular ion. Positive charge in the C(5) conformer of the CH(3)CO-Gly-NH(2) radical cation is, however, localized at the COCH(3) end of the molecular ion, and this conformer does not have enough energy to surmount the energy barrier to dissociation on the ion potential energy surface. CASSCF results show that conformation-specific localization of charge in the CH(3)CO-Gly-NH(2) molecular ion occurs as a result of the different hydrogen-bonding interactions involved in the different molecular conformers."	"Synthesis, crystal structures, photophysical properties, and bioimaging of living cells of bis-β-diketonate phenothiazine ligands and its cyclic dinuclear complexes. Two bis-β-diketones, RCOCH(2)CO-EPTZ-COCH(2)COR (EPTZ = 10-ethylphenothiazine; R = C(6)H(5) for H(2)L(1) and CF(3) for H(2)L(2)) and their cyclic dinuclear Zn(II), Cd(II), Ni(II), Mn(II), Cu(II), Co(II) complexes have been synthesized and fully characterized. Their crystal structures were determined by single crystal X-ray diffraction analysis. Their photophysical properties have been further investigated both experimentally and theoretically. The results revealed that significant enhancement of two-photon absorption cross section values were obtained for the cyclic dinuclear Zn(II) and Cd(II) complexes compared with their free ligands. Additionally, confocal microscopy and two-photon microscopy fluorescent imaging of MCF-7 cells labeled with two ligands and Zn(II) complexes reveal their potential applications as a biological fluorescent probe."	"A microgap impedance sensor for the determination of trace water in organic solvents. A microgap impedance sensor with a 50 μm gap was developed for the determination of trace water in organic solvents by coating poly(dimethyldiallylammonium chloride) (PDMDAAC) and ferricyanide/ferrocyanide composite materials on indium tin oxide (ITO). The electrochemical properties of the composite materials were investigated with cyclic voltammetry (CV) and electrochemical impedance spectroscopy (EIS). We observed that the impedance response of the sensor depended on the concentration of trace water in the organic solvents. Under optimized conditions, the linear range for the determination of trace water was 0-0.06% for chloroform (CHCl(3)), 0-0.10% for acetone (CH(3)COCH(3)), 0-0.12% for tetrahydrofuran (THF), and 0-0.10% for acetonitrile (CH(3)CN), and the detection limits were 0.65, 1.54, 0.61, and 1.72 ppm, respectively. The results obtained from the impedance sensors were comparable to those obtained using the traditional Karl Fischer method."	"Delivery with polycations extends the immunostimulant Ribomunyl into a potent antiviral Toll-like receptor 7/8 agonist. Upper respiratory tract infection is a frequent cause of morbidity worldwide. Although the course of infection is usually mild, it is responsible for enormous social and economic costs. Immunostimulation with bacterial extracts consisting of ribosomal RNA and proteoglycans, such as Ribomunyl, was introduced into the clinic in the 1980s as a new treatment concept, but did not achieve widespread application. Ribomunyl has been proposed to activate innate immunity, but the contribution of its RNA content as well as its antiviral potential has not been studied. Peripheral blood mononuclear cells from healthy donors and immune cells from adenoids were incubated with Ribomunyl either by itself or formulated in a complex with cationic polypeptides such as poly-l-arginine or protamine, and induction of cytokines was quantified by ELISA. Ribomunyl in complex with either poly-l-arginine or protamine, but not on its own, was able to strongly induce interferon-α (P&lt;0.01) and interleukin-12 (P&lt;0.01) in peripheral blood mononuclear cells, whereas induced tumour necrosis factor-α and interleukin-6 levels were independent of the formulation. Comparable results were obtained in immune cells from adenoids, suggesting efficacy also in virus-affected tissue. Cell sorting, RNase digests and selective receptor expression show that the RNA in Ribomunyl acts as an agonist of Toll-like receptor (TLR)7 and TLR8. Ribomunyl is, in principle, able to potently induce antiviral interferon-α and interleukin-12 via TLR7 and TLR8, respectively, but only when formulated in a complex with cationic polypeptides."	"Effects of peripheral and axial substitutions on electronic transitions of tin naphthalocyanines. Tin naphthalocyanine molecules display strong absorption in the infrared region (IR), making them ideal as components of organic photodiodes and solar cells. We use density functional theory and time-dependent density functional theory (TD-DFT) at the B3LYP level to study the influence of axial and peripheral ligands on the absorption wavelength of tin naphthalocyanines. We find that TD-DFT is successful at reproducing the experimental absorption spectra of free base naphthalocyanine and tin naphthalocyanine molecules and can be used as a reliable tool to predict absorption spectra of substituted naphthalocyanines. Functional groups attached axially to tin (-F, -Cl, -Br, -I) and peripherally to the inner ring (-F, -Cl, -Br, -Ph, -OH, -COCH(3), -O(CH(2))(3)CH(3)) of the tin naphthalocyanine molecule tune the excitation wavelength in the near-infrared region between 770 and 940 nm. While substituents to the outer naphthalocyanine ring (-Cl, -Br) affect the intensity of the absorption peaks in the NIR region, they do not influence their absorption wavelength. Asymmetric substitution of naphthalocyanine pendant arms can be employed to decrease intensity of the absorption peaks in the visible region with respect to the intensity of the peaks in the NIR."	"Analyzing velocity map images to distinguish the primary methyl photofragments from those produced upon C-Cl bond photofission in chloroacetone at 193 nm. We use a combination of crossed laser-molecular beam scattering experiments and velocity map imaging experiments to investigate the three primary photodissociation channels of chloroacetone at 193 nm: C-Cl bond photofission yielding CH(3)C(O)CH(2) radicals, C-C bond photofission yielding CH(3)CO and CH(2)Cl products, and C-CH(3) bond photofission resulting in CH(3) and C(O)CH(2)Cl products. Improved analysis of data previously reported by our group quantitatively identifies the contribution of this latter photodissociation channel. We introduce a forward convolution procedure to identify the portion of the signal, derived from the methyl image, which results from a two-step process in which C-Cl bond photofission is followed by the dissociation of the vibrationally excited CH(3)C(O)CH(2) radicals to CH(3) + COCH(2). Subtracting this from the total methyl signal identifies the methyl photofragments that result from the CH(3) + C(O)CH(2)Cl photofission channel. We find that about 89% of the chloroacetone molecules undergo C-Cl bond photofission to yield CH(3)C(O)CH(2) and Cl products; approximately 8% result in C-C bond photofission to yield CH(3)CO and CH(2)Cl products, and the remaining 2.6% undergo C-CH(3) bond photofission to yield CH(3) and C(O)CH(2)Cl products."	"The formation of a luminescent Mn(III,IV) intermediate of bis(2-pyridylmethyl)amine and acetone assistant its intramolecular C-H oxidation. The dinuclear Mn(II) complexes of bis(2-pyridylmethyl)amine (dpa) reacted with H(2)O(2) producing a fluorescent dioxodimanganese(III,IV) intermediate [(dpa)Mn(2)Cl(2)(μ-O(2))(OHdpa)](3+), which was characterized by IR, UV, ESR, ES-MS and fluorescence spectra. ES-MS data show that this intermediate could bind an acetone molecule forming dioxodimanganese(III,IV)-acetone adduct [(dpa)Mn(2)Cl(2)(μ-O)(CH(3)COCH(3))(OHdpa)](3+). The emission of dioxodimanganese(III,IV)-acetone at 378 nm was stronger than that of dioxodimanganese(III,IV) complex. Excess acetone molecules promoted the intramolecular C-H oxidation and the formation of one dimensional chain Mn(II) complex [(2-picolinic-acid)Mn(H(2)O)(2)Cl(O)](n) through possible intramolecular oxygen transfer reaction."	"Phenotype analysis of an Australian DFNA9 family with the 1109N COCH mutation. We studied the clinical characteristics of an Australian family with an autosomal dominant sensorineural hearing impairment (DFNA9) caused by an I109N mutation in COCH. Retrospective analyses of audiometric data from 8 mutation carriers of an Australian DFNA9 family with the I109N COCH mutation were performed. Cross-sectional hearing levels related to age, age-related typical audiograms, and speech recognition scores related to age and to the level of hearing impairment were investigated. Data were compared to those obtained in previously identified DFNA9 families with P51S, V66G, G87W, G88E, I109T, and C542F COCH mutations. Deterioration of hearing in the I109N mutation carriers started before the age of 40 years. The audiometric characteristics of the I109N mutation carriers are essentially similar to those previously established in I109T mutation carriers and, to a lesser extent, in P51S, G87W, and G88E mutation carriers. The phenotype associated with the I109N COCH mutation is largely similar to that associated with the I109T, P51S, G87W, and G88E mutation carriers. However, subtle differences seem to exist in terms of age of onset and rate of progression."	"The effect of p-4E-BP1 and p-eIF4E on cell proliferation in a breast cancer model. Cell signaling pathways and protein translation are crucial for understanding malignant transformation. 4E-BP1 and the eIF4F complex regulate cap-dependent translation. We investigated how 4E-BP1 and eIF4E phosphorylation status affects in vitro and in vivo cell proliferation in a breast cancer model. Cells from 2 breast carcinoma lines (MDA-MB 231 and MDA-MB 468) and human fibroblasts (IMR90 cells) were infected in vitro with a retrovirus carrying a wild-type 4E-BP1 or a mutant 4E-BP1 unable to hyperphosphorylate. Overexpression of the mutant 4E-BP1 induced a significant decrease in cell proliferation in IMR90 and MDA-MB 468 cells, but not in MDA-MB 231 cells. A correlation was observed between baseline-phosphorylated eIF4E (p-eIF4E) levels and sensitivity to 4E-BP1 transduction. By co-immunoprecipitation, p-eIF4E seemed to present lower affinity for 4E-BP1 than total eIF4E in MDA-MB 468 cells. After treatment with CGP57380, the MAP kinase-interacting kinase (MNK) inhibitor, downregulation of p-eIF4E levels was associated with an increase of E-cadherin and β-catenin protein expression. These results provide evidence that 4E-BP1 transduction leads to a decrease in cell proliferation, and that high p-eIF4E levels may counteract the suppressor effect of 4E-BP1. We propose that high p-4E-BP1 and p-eIF4E levels are central factors in cell signaling and reflect the oncogenic potential of cell signaling pathways in breast cancer."	"Short review: field recovery and potential information value of small elements of the skeleton. The recovery of small elements of the skeleton (e.g. hyoid, carpals, and hand and foot phalanges) is one of the established tasks of the archaeologist and physical anthropologist when working in the field, whether in an archaeological or forensic context. In the present work, we illustrate the field location of ossified laryngeal cartilages, hand sesamoids, and the medial clavicular epiphyses. The potential information offered by these elements is briefly summarized. The frequency of these elements observed in a cemetery dating from 1943 indicates the possibility that these elements could be found in other contexts at a higher frequency than expected."	"Immunogenic cell death of human ovarian cancer cells induced by cytosolic poly(I:C) leads to myeloid cell maturation and activates NK cells. Owing to high rates of tumor relapse, ovarian cancer remains a fatal disease for which new therapeutic approaches are urgently needed. Accumulating evidence indicates that immune stimulation may delay or even prevent disease recurrence in ovarian cancer. In order to elicit proinflammatory signals that induce or amplify antitumor immune reactivity, we mimicked viral infection in ascites-derived ovarian cancer cells. By transfection or electroporation we targeted the synthetic double-stranded RNA poly(I:C) intracellularly in order to activate melanoma differentiation-associated gene-5 (MDA-5), a sensor of viral RNA in the cytosol of somatic cells. Cancer cells reacted with enhanced expression of HLA-class I, release of CXCL10, IL-6, and type I IFN as well as tumor cell apoptosis. Monocytes and monocyte-derived DCs (MoDCs) engulfed MDA-5-activated cancer cells, and subsequently upregulated HLA-class I/II and costimulatory molecules, and secreted CXCL10 and IFN-α. Further, this proinflammatory milieu promoted cytolytic activity and IFN-γ secretion of NK cells. Thus, our data suggest that the engagement of MDA-5 in a whole tumor cell vaccine is a promising approach for the immunotherapy of ovarian cancer."	"Stochastic resonance therapy in Parkinson's disease. To test the effects of stochastic whole body vibration (WBV) we performed a double-blind randomized controlled study. Patients were allocated either to the experimental or sham group. The experimental group received 5 cycles of stochastic WBV on three days, each cycle consisting of 5 stimulus trains of 60 seconds duration (frequency 6.5 Hz) and 60 seconds resting time between stimuli. Patients allocated to the control group received a sham treatment with 1 Hz. Unified Parkinson's Disease Rating Scale, part III (UPDRSIII) was performed after treatment at baseline, after the first series on day 1 and on day 5. The reduction of subscores included in UPDRS III relative to baseline served as primary outcome measure. After the five-day course bradykinesia was improved in 14 of 18 patients (77.8%) and postural stability in 8 of 18 (44.4%). Speech and facial expression remained unchanged in both groups. Tremor (p=0.027) and postural stability (p=0.048) showed a reduction also, but did not reached level of significance (p &lt; 0.01); UPDRSIII sum score was improved by 26.7%. Stochastic whole body vibration may offer a supplementation to canonical physical treatments of PD motor symptoms."	"The tandem chain extension aldol reaction used for synthesis of ketomethylene tripeptidomimetics targeting hPEPT1. The rationale for targeting the human di-/tripeptide transporter hPEPT1 for oral drug delivery has been well established by several drug and prodrug cases. The aim of this study was to synthesize novel ketomethylene modified tripeptidomimetics and to investigate their binding affinity for hPEPT1. Three related tripeptidomimetics of the structure H-Phe-ψ[COCH(2)]-Ser(Bz)-X(aa)-OH were synthesized applying the tandem chain extension aldol reaction, where amino acid derived β-keto imides were stereoselectively converted to α-substituted γ-keto imides. In addition, three corresponding tripeptides, composed of amide bonds, were synthesized for comparison of binding affinities. The six investigated compounds were all defined as high affinity ligands (K(i)-values &lt;0.5 mM) for hPEPT1 by measuring the concentration dependent inhibition of apical [(14)C]Gly-Sar uptake in Caco-2 cells. Consequently, the ketomethylene replacement for the natural amide bond and α-side chain modifications appears to offer a promising strategy to modify tripeptidic structures while maintaining a high affinity for hPEPT1."	"Cochlin-tomoprotein (CTP) detection test identifies traumatic perilymphatic fistula due to penetrating middle ear injury. The cochlin-tomoprotein (CTP) detection test can be used to make a definite, objective diagnosis of traumatic perilymphatic fistula (PLF), and therefore offers valuable information on patient selection for surgical treatment. Penetrating middle ear injury can cause traumatic PLF, which is a surgically treatable otologic emergency. Recently, we have reported on CTP, a novel perilymph-specific protein. The purpose of this study was to determine if the CTP detection test is useful for the diagnosis of traumatic PLF. This was a prospective study of CTP detection in penetrating middle ear injury cases with tympanic membrane perforation and hearing loss. A total of seven individuals were included in this study. CTP was detected in three of four cases with posterosuperior quadrant perforation of the tympanic membrane. In one of these three cases, even though the high resolution CT scan was not suggestive of PLF and the perilymph leakage could not be visualized intraoperatively, the CTP detection test was able to detect PLF. In two cases, the preoperative positive test results enabled us to make a diagnosis of PLF and a decision for surgical treatment. CTP was not detected in the cases with anterior or inferior tympanic membrane perforation."	"Reactivity of the 16e (p-cymene)Ru half-sandwich complex containing a chelating 1,2-dicarba-closo-dodecaborane-1,2-dithiolate ligand towards diynes. The reactions of the 16e half-sandwich complex (p-cymene)Ru(S(2)C(2)B(10)H(10)) (Ru16e) with 1,4-diethynylbenzene (L1), 3',6-diethynyl-1,1'-binaphthyl-2,7'-diyl diacetate (L2), 2-bromo-5-ethynylthiophene (L3) and 2,5-diethynylthiophene (L4) lead to 18e mononuclear complexes (p-cymene)Ru(S(2)C(2)B(10)H(9))(H(2)CCPhC≡CH) (1), (p-cymene)Ru(S(2)C(2)B(10)H(9))[H(2)CC(C(24)H(16)O(4))C≡CH] (2), (p-cymene)Ru(S(2)C(2)B(10)H(9)) [H(2)CC(C(4)H(2)S)Br] (3) and (p-cymene)Ru(S(2)C(2)B(10)H(9)) [H(2)CC(C(4)H(2)S)C≡CH] (4), respectively. In all of them, metal-induced B-H activation has occurred, which leads to a stable Ru-B bond, and the structures take a cisoid arrangement. Only in the case of L4, the binuclear complexes [(p-cymene)Ru(S(2)C(2)B(10)H(9))](2)[H(2)CC(C(4)H(2)S)CCH(2)] (5a and 5b) are observed, which are conformational isomers generated by the differing orientations of the p-cymene unit. 4 can be readily converted to the complex (p-cymene)Ru(S(2)C(2)B(10)H(9))[H(2)CC(C(4)H(2)S)COCH(3)] (6) in the presence of silica and H(2)O. All of these products 1-6 were characterized by NMR, IR, elemental analysis and mass spectrometry. The structures of 1, 3, and 5a were also determined by single-crystal X-ray diffraction analysis."	"[Perspectives in neurotology]. Vestibular diagnostics and therapy is the mirror of technological, scientific and socio-economics trends as are other fields of clinical medicine. These trends have led to a substantial diversification of the field of neurotology. The improvements in diagnostics have been characterized by the introduction of new receptor testing tools (e. g., VEMPs), progress in imaging (e. g., the endolymphatic hydrops) and in the description of central-vestibular neuroplasticity. The etiopathology of vestibular disorders has been updated by geneticists (e. g., the description of the COCH gene mutations), the detection of structural abnormalities (e. g., dehiscence syndromes) and related disorders (e. g. migraine-associated vertigo). The therapeutic options were extended by re-evaluation of techniques known a long time ago (e. g., saccus exposure), the development of new approaches (e. g., dehiscence repair) and the introduction of new drug therapy concepts (e. g., local drug delivery). Implantable, neuroprosthetic solutions have not yet reached experimental safety and validity and are still far away. However, externally worn neuroprosthetic solution were introduced in the rehab of vestibular disorders (e. g., VertiGuard system). These and related trends point into a medical future which is characterized by presbyvertigo as classical sign of the demographic changes ahead, by shortage of financial resources and a medico-legally over-regulated, even hostile environment for physicians in clinical medicine."	"Gas-phase coordination complexes of dipositive plutonyl, PuO2(2+): chemical diversity across the actinyl series. We report the first transmission of solvent-coordinated dipositive plutonyl ion, Pu(VI)O(2)(2+), from solution to the gas phase by electrospray ionization (ESI) of plutonyl solutions in water/acetone and water/acetonitrile. ESI of plutonyl and uranyl solutions produced the isolable gas-phase complexes, [An(VI)O(2)(CH(3)COCH(3))(4,5,6)](2+), [An(VI)O(2)(CH(3)COCH(3))(3)(H(2)O)](2+), and [An(VI)O(2)(CH(3)CN)(4)](2+); additional complex compositions were observed for uranyl. In accord with relative actinyl stabilities, U(VI)O(2)(2+) &gt; Pu(VI)O(2)(2+) &gt; Np(VI)O(2)(2+), the yields of plutonyl complexes were about an order of magnitude less than those of uranyl, and dipositive neptunyl complexes were not observed. Collision-induced dissociation (CID) of the dipositive coordination complexes in a quadrupole ion trap produced doubly- and singly-charged fragment ions; the fragmentation products reveal differences in underlying chemistries of plutonyl and uranyl, including the lower stability of Pu(VI) as compared with U(VI). Particularly notable was the distinctive CID fragment ion, [Pu(IV)(OH)(3)](+) from [Pu(VI)O(2)(CH(3)COCH(3))(6)](2+), where the plutonyl structure has been disrupted and the tetravalent plutonium hydroxide produced; this process was not observed for uranyl."	"Activation of endothelial toll-like receptor 3 impairs endothelial function. Endothelial dysfunction and atherosclerosis are chronic inflammatory diseases characterized by activation of the innate and acquired immune system. Specialized protein receptors of the innate immune system recognize products of microorganisms and endogenous ligands such as nucleic acids. Toll-like receptor 3 (TLR3), for example, detects long double-stranded RNA and is abundantly expressed in endothelial cells. Whether innate immunity contributes to atherogenic mechanisms in endothelial cells is poorly understood. We sought to determine the effects of TLR3 activation in endothelial cells. We first investigated whether stimulation of TLR3 influences endothelial biology in mice. Intravenous injection of polyinosine polycytidylic acid, a synthetic double-stranded RNA analog and TLR3 ligand, impaired endothelium-dependent vasodilation, increased vascular production of reactive oxygen species, and reduced reendothelialization after carotid artery injury in wild-type mice compared with controls but had no effect in TLR3(-/-) animals. TLR3 stimulation not only induced endothelial dysfunction but also enhanced the formation of atherosclerotic plaques in apolipoprotein E-deficient mice. In vitro incubation of endothelial cells with polyinosine polycytidylic acid induced production of the proinflammatory cytokines interleukin-8 and interferon-γ-induced protein 10, increased formation of reactive oxygen species, diminished proliferation, and increased apoptosis, which suggests that endothelial cells are able to directly detect and respond to TLR3 ligands. Neutralization of interleukin-8 and interferon-γ-induced protein 10 antagonizes the observed negative effects of polyinosine polycytidylic acid. We found elevated levels of circulating endothelial progenitor cells in polyinosine polycytidylic acid-treated mice, although they displayed increased endothelial dysfunction. Stimulation of TLR3 in cultured endothelial progenitor cells, however, led to increased formation of reactive oxygen species, increased apoptosis, and reduced migration. Injection of endothelial progenitor cells that had been incubated with polyinosine polycytidylic acid ex vivo hindered reendothelialization after carotid artery injury. Therefore, endothelial progenitor cell function was affected by TLR3 stimulation. Finally, apolipoprotein E-deficient/TLR3-deficient mice exhibited improved endothelial function compared with apolipoprotein E-deficient/TLR3(+/+) littermates. Immunorecognition of long double-stranded RNA by endothelial cells may be an important mechanism involved in endothelial cell activation and development of endothelial dysfunction."	"SiRNA delivery with exosome nanoparticles. NA"	"NY: Failure to make timely service on RN: validity of service on nurse reversed on appeal. Horowitz v. Coch, 2011-01617 NYAPP2 (3/3/2011)-NY. NA"	"Controlled self-assembly of filled micelles on nanotubes. We have used coarse-grained molecular dynamics simulations to show that hydrated lipid micelles of preferred sizes and amounts of filling with hydrophobic molecules can be self-assembled on the surfaces of carbon nanotubes. We simulated micelle formation on a hydrated (40,0) carbon nanotube with an open end that was covered with amphiphilic double-headed CH(3)(CH(2))(14)CH(((CH(2)OCH(2)CH(2))(2)(CH(2)COCH(2)))(2)H)(2) or single-headed CH(3)(CH(2))(14)CH(2)((CH(2)OCH(2)CH(2))(2)(CH(2)COCH(2)))(4)H lipids and filled with hexadecane molecules. Once the hexadecane molecules inside the nanotube were pressurized and the lipids on its surface were dragged by the water flowing around it, kinetically stable micelles filled with hexadecane molecules were sequentially formed at the nanotube tip. We investigated the stability of the thus-formed kinetically stable filled micelles and compared them with thermodynamically stable filled micelles that were self-assembled in the solution."	"Letters rhyme: electrophysiological evidence from children and adults. Event-related potentials (ERPs) and behavioral accuracy judgments were recorded in a letter name rhyming paradigm (e.g., A-J versus A-B) with 6- to 8-year-old beginning readers and adults. A typical N450 rhyming effect was evident for both children and adults, with few differences in mean amplitude or peak latency between groups. The size and timing of the electrophysiological effect were not correlated with standardized measures of phonological or reading ability, but accuracy in the ERP task was. Single letters elicit a similar ERP rhyming effect in young children and adults, suggesting the early establishment of neurocognitive systems used in the rhyme task."	"Unusual ligand transformations initiated by dppm deprotonation in methylene-bridged Rh/Os complexes. The reaction of [RhOs(CO)(3)(μ-CH(2))(dppm)(2)][CF(3)SO(3)] (dppm = μ-Ph(2)PCH(2)PPh(2)) with 1,3,4,5-tetramethylimidazol-2-ylidene (IMe(4)) results in competing substitution of the Rh-bound carbonyl by IMe(4) and dppm deprotonation by IMe(4) to give the two products [RhOs(IMe(4))(CO)(2)(μ-CH(2))(dppm)(2)][CF(3)SO(3)] and [RhOs(CO)(3)(μ-CH(2))(μ-κ(1):η(2)-dppm-H)(dppm)] [3; dppm-H = bis(diphenylphosphino)methanide], respectively. In the latter product, the dppm-H group is P-bound to Os while bound to Rh by the other PPh(2) group and the adjacent methanide C. The reaction of the tetracarbonyl species [RhOs(CO)(4)(μ-CH(2))(dppm)(2)][CF(3)SO(3)] with IMe(4) results in the exclusive deprotonation of a dppm ligand to give [RhOs(CO)(4)(μ-CH(2))(μ-κ(1):κ(1)-dppm-H)(dppm)] (4) in which dppm-H is P-bound to both metals. Both deprotonated products are cleanly prepared by the reaction of their respective precursors with potassium bis(trimethylsilyl)amide. Reversible conversion of the μ-κ(1):η(2)-dppm-H complex to the μ-κ(1):κ(1)-dppm-H complex is achieved by the addition or removal of CO, respectively. In the absence of CO, compound 3 slowly converts in solution to [RhOs(CO)(3)(μ-κ(1):κ(1):κ(1)-Ph(2)PCHPPh(2)CH(2))(dppm)] (5) as a result of dissociation of the Rh-bound PPh(2) moiety of the dppm-H group and its attack at the bridging CH(2) group. Compound 4 is also unstable, yielding the ketenyl- and ketenylidene/hydride tautomers [RhOs(CO)(3)(μ-κ(1):η(2)-CHCO)(dppm)(2)] (6a) and [RhOs(H)(CO)(3)(μ-κ(1):κ(1)-CCO)(dppm)(2)] (6b), initiated by proton transfer from μ-CH(2) to dppm-H. Slow conversion of these tautomers to a pair of isomers of [RhOs(H)(CO)(3)(μ-κ(1):κ(1):κ(1)-Ph(2)PCH(COCH)PPh(2))(dppm)] (7a and 7b) subsequently occurs in which proton transfer from a dppm group to the ketenylidene fragment gives rise to coupling of the resulting dppm-H methanide C and the ketenyl unit. Attempts to couple the ketenyl- or ketenylidene-bridged fragments in 6a/6b with dimethyl acetylenedicarboxylate (DMAD) yield [RhOs(κ(1)-CHCO)(CO)(3)(μ-DMAD)(dppm)(2)], in which the ketenyl group is terminally bound to Os."	"Biodiversity and geochemistry of an extremely acidic, low-temperature subterranean environment sustained by chemolithotrophy. The geochemical dynamics and composition of microbial communities within a low-temperature (≈ 8.5°C), long-abandoned (&gt; 90 years) underground pyrite mine (Cae Coch, located in north Wales) were investigated. Surface water percolating through fractures in the residual pyrite ore body that forms the roof of the mine becomes extremely acidic and iron-enriched due to microbially accelerated oxidative dissolution of the sulfide mineral. Water droplets on the mine roof were found to host a very limited diversity of exclusively autotrophic microorganisms, dominated by the recently described psychrotolerant iron/sulfur-oxidizing acidophile Acidithiobacillus ferrivorans, and smaller numbers of iron-oxidizing Leptospirillum ferrooxidans. In contrast, flowing water within the mine chamber was colonized with vast macroscopic microbial growths, in the form of acid streamers and microbial stalactites, where the dominant microorganisms were Betaproteobacteria (autotrophic iron oxidizers such as 'Ferrovum myxofaciens' and a bacterium related to Gallionella ferruginea). An isolated pool within the mine showed some similarity (although greater biodiversity) to the roof droplets, and was the only site where archaea were relatively abundant. Bacteria not previously associated with extremely acidic, metal-rich environments (a Sphingomonas sp. and Ralstonia pickettii) were found within the abandoned mine. Data supported the hypothesis that the Cae Coch ecosystem is underpinned by acidophilic, mostly autotrophic, bacteria that use ferrous iron present in the pyrite ore body as their source of energy, with a limited role for sulfur-based autotrophy. Results of this study highlight the importance of novel bacterial species (At. ferrivorans and acidophilic iron-oxidizing Betaproteobacteria) in mediating mineral oxidation and redox transformations of iron in acidic, low-temperature environments."	"Music training and working memory: an ERP study. While previous research has suggested that music training is associated with improvements in various cognitive and linguistic skills, the mechanisms mediating or underlying these associations are mostly unknown. Here, we addressed the hypothesis that previous music training is related to improved working memory. Using event-related potentials (ERPs) and a standardized test of working memory, we investigated both neural and behavioral aspects of working memory in college-aged, non-professional musicians and non-musicians. Behaviorally, musicians outperformed non-musicians on standardized subtests of visual, phonological, and executive memory. ERPs were recorded in standard auditory and visual oddball paradigms (participants responded to infrequent deviant stimuli embedded in lists of standard stimuli). Electrophysiologically, musicians demonstrated faster updating of working memory (shorter latency P300s) in both the auditory and visual domains and musicians allocated more neural resources to auditory stimuli (larger amplitude P300), showing increased sensitivity to the auditory standard/deviant difference and less effortful updating of auditory working memory. These findings demonstrate that long-term music training is related to improvements in working memory, in both the auditory and visual domains and in terms of both behavioral and ERP measures."	"Chloroacetone photodissociation at 193 nm and the subsequent dynamics of the CH3C(O)CH2 radical--an intermediate formed in the OH + allene reaction en route to CH3 + ketene. We use a combination of crossed laser-molecular beam experiments and velocity map imaging experiments to investigate the primary photofission channels of chloroacetone at 193 nm; we also probe the dissociation dynamics of the nascent CH(3)C(O)CH(2) radicals formed from C-Cl bond fission. In addition to the C-Cl bond fission primary photodissociation channel, the data evidence another photodissociation channel of the precursor, C-C bond fission to produce CH(3)CO and CH(2)Cl. The CH(3)C(O)CH(2) radical formed from C-Cl bond fission is one of the intermediates in the OH + allene reaction en route to CH(3) + ketene. The 193 nm photodissociation laser allows us to produce these CH(3)C(O)CH(2) radicals with enough internal energy to span the dissociation barrier leading to the CH(3) + ketene asymptote. Therefore, some of the vibrationally excited CH(3)C(O)CH(2) radicals undergo subsequent dissociation to CH(3) + ketene products; we are able to measure the velocities of these products using both the imaging and scattering apparatuses. The results rule out the presence of a significant contribution from a C-C bond photofission channel that produces CH(3) and COCH(2)Cl fragments. The CH(3)C(O)CH(2) radicals are formed with a considerable amount of energy partitioned into rotation; we use an impulsive model to explicitly characterize the internal energy distribution. The data are better fit by using the C-Cl bond fission transition state on the S(1) surface of chloroacetone as the geometry at which the impulsive force acts, not the Franck-Condon geometry. Our data suggest that, even under atmospheric conditions, the reaction of OH with allene could produce a small branching to CH(3) + ketene products, rather than solely producing inelastically stabilized adducts. This additional channel offers a different pathway for the OH-initiated oxidation of such unsaturated volatile organic compounds, those containing a C=C=C moiety, than is currently included in atmospheric models."	"Anodic oxidation of selenadiazoloquinolones in alkaline media. Newly synthesized derivatives of 6-oxo-6,9-dihydro[1,2,5]selenadiazolo[3,4-h]quinoline variously substituted at position 7 (R = H, COOH, COCH(3), CN, COOC(2)H(5) and COOCH(3)) are established in strongly alkaline aqueous solutions (0.1 M NaOH; pH ∼ 13) as N(9)-deprotonated structures, but in less alkaline solutions (0.001 M NaOH; pH ∼ 11) the N(9)-protonated oxo tautomeric forms dominate. Upon their anodic oxidation in alkaline solutions, the selenadiazole ring is replaced, forming instead the paramagnetic species analogous to the ortho semiquinone radical anions as monitored by in situ EPR spectroscopy. The quantum chemical calculations for two representative selenadiazoloquinolones (R = H and COOH) and their anodic oxidation products presented are in agreement with experiments."	"RSK4 inhibition results in bypass of stress-induced and oncogene-induced senescence. p90 Ribosomal S6 kinase (RSK) 4 is a serine-threonine kinase that belongs to the p90RSK family. RSK4 has been proposed as a tumor suppressor gene, related with anti-invasive activity, inhibition of the RAS-mitogen-activated protein kinase (MAPK) pathway and induction of senescence. Despite the related findings, little is known about RSK4 effectors. In human tumors, RSK4 is downregulated even in some benign lesions, such as colon adenomas and breast papillomas, indicating that RSK4 inhibition could be an early event in cellular transformation. For cells to achieve immortality and transformation, it is believed that they must override senescence. In the present study, we found that when RSK4 is inhibited in vitro using short hairpin RNA technology, cells can bypass stress-induced senescence and oncogene-induced senescence: normal human fibroblasts grew following oxidative stress, induction of DNA damage and KRAS(V12) or BRAF(E600) overexpression. To investigate the RSK4 effectors, we used short hairpin RNA or inhibitor molecules against major senescence mediators. We found that RSK4-induced senescence is mediated through p21, but is independent of p16, p38MAPKs and induction of reactive oxygen species, delimiting RSK4 signaling. These data support the importance of RSK4 for regulating senescence and indicate that downregulation of this kinase could be an important element in facilitating cell transformation."	"Ortho-hydroxyphenylhydrazo-β-diketones: tautomery, coordination ability, and catalytic activity of their copper(II) complexes toward oxidation of cyclohexane and benzylic alcohols. New hydrazone o-HO-phenylhydrazo-β-diketones (OHADB), R(1)NHN═CR(2)R(3) [R(1) = HO-2-C(6)H(4), R(2) = R(3) = COMe (H(2)L(1), 1), R(2)R(3) = COCH(2)C(Me)(2)CH(2)CO (H(2)L(2), 2), R(2) = COMe, R(3) = COOEt (H(2)L(4), 4); R(1) = HO-2-O(2)N-4-C(6)H(3), R(2)R(3) = COCH(2)C(Me)(2)CH(2)CO (H(2)L(3), 3), R(2) = COMe, R(3) = COOEt (H(2)L(5), 5), R(2)R(3) = COMe (H(2)L(6), 6A)], and their Cu(II) complexes [Cu(2)(CH(3)OH)(2)(μ-L(1))(2)] 7, [Cu(2)(H(2)O)(2)(μ-L(2))(2)] 8, [Cu(H(2)O)(L(3))] 9, [Cu(2)(μ-L(4))(2)](n) 10, [Cu(H(2)O)(L(5))] 11, [Cu(2)(H(2)O)(2)(μ-L(6))(2)] 12A and [Cu(H(2)O)(2)(L(6))] 12B were synthesized and fully characterized, namely, by X-ray analysis (4, 5, 7-12B). Reaction of 6A, Cu(NO(3))(2) and ethylenediamine (en) leads, via Schiff-base condensation, to [Cu{H(2)NCH(2)CH(2)N═C(Me)C(COMe)═NNC(6)H(3)-2-O-4-NO(2)}] (13), and reactions of 12A and 12B with en give the Schiff-base polymer [Cu{H(2)NCH(2)CH(2)N═C(Me)C(COMe)═NNC(6)H(3)-2-O-4-NO(2)}](n) 14. The dependence of the OHADB tautomeric equilibria on temperature, electronic properties of functional groups, and solvent polarity was studied. The OHADB from unsymmetrical β-diketones exist in solution as a mixture of enol-azo and hydrazo tautomeric forms, while in the solid state all the free and coordinated OHADB crystallize in the hydrazo form. The relative stabilities of various tautomers were studied by density functional theory (DFT). 7-14 show catalytic activities for peroxidative oxidation (in MeCN/H(2)O) of cyclohexane to cyclohexanol and cyclohexanone, for selective aerobic oxidation of benzyl alcohols to benzaldehydes in aq. solution, mediated by TEMPO radical, under mild conditions and for the MW-assisted solvent-free synthesis of ketones from secondary alcohols with tert-butylhydroperoxide as oxidant."	"Mood after stroke: a case control study of biochemical, neuro-imaging and socio-economic risk factors for major depression in stroke survivors. Though vascular factors may be important in the aetiology of late-life depression, it is not clear whether they have a major effect on the risk of depression after a stroke. We investigated the relationship between physiological, biochemical, neuro-imaging and socio-economic factors and late-phase post-stroke depression in a cross-sectional case-control study. People living at home at least 9 months after a stroke were interviewed using a structured proforma. Depression was diagnosed according to DSM-IV criteria, together with a Montgomery Asberg (MADRS) score &gt;17. Stroke survivors of similar age and functional status but without symptoms of, or recent treatment for, depression and with MADRS score &lt;7, were recruited as controls. Stroke survivors with depression were more likely than controls to have been smokers, to have had hypertension or peripheral arterial disease, and to have had more than one stroke or multiple discrete brainscan lesions. In univariate analysis they had significantly higher blood pressure, lower Mini-Mental State (MMSE) scores, higher serum homocysteine and lower folate levels, as well as more extensive white matter and basal ganglia changes on brainscan. In logistic regression, previous hypertension (OR 3.4), peripheral vascular disease (OR 4.7), number of strokes (OR 2), MMSE score (OR 0.76) and basal ganglia changes (OR 2.2), were independently associated with depression. These results suggest that patients with hypertension, hyperhomocysteinaemia and other factors associated with cerebral small vessel disease, may be more susceptible to post-stroke depression. Future intervention trials should focus on such high risk groups."	"Perspectives in vestibular diagnostics and therapy. Vestibular diagnostics and therapy ist the mirror of technological, scientific and socio-economics trends as are other fields of clinical medicine. These trends have led to a substantial diversification of the field of neurotology.The improvements in diagnostics have been characterized by the introduction of new receptor testing tools (e.g., VEMPs), progress in imaging (e.g., the endolymphatic hydrops) and in the description of central-vestibular neuroplasticity. The etiopathology of vestibular disorders has been updated by geneticists (e.g., the description of the COCH gene mutations), the detection of structural abnormalities (e.g., dehiscence syndromes) and related disorders (e.g. migraine-associated vertigo). The therapeutic options were extended by re-evaluation of techniques known a long time ago (e.g., saccus exposure), the development of new approaches (e.g., dehiscence repair) and the introduction of new drug therapy concepts (e.g., local drug delivery). Implantable, neuroprosthetic solutions have not yet reached experimental safety and validity and are still far away. However, externally worn neuroprosthetic solution were introduced in the rehab of vestibular disorders (e.g., VertiGuard system).These and related trends point into a medical future which is characterized by presbyvertigo as classical sign of the demographic changes ahead, by shortage of financial resources and a medico-legally over-regulated, even hostile environment for physicians in clinical medicine."	"[Basic principles, planning and implementation of non-commercial clinical trials]. The proof of a drug's efficacy in randomized controlled trials is fundamental to therapeutic concepts determined by evidence-based medicine. Clinical trials according to the German Medicinal Products Act are performed by the pharmaceutical industry as company-sponsored trials (CST) driven by commercial interests or by non-commercial facilities as investigator-initiated trials (IIT), typically implemented by University Hospitals. In areas with no commercial interest, IITs are the driving force that generate scientific progress leading to treatment optimization. Therefore, non-commercial or investigator-initiated clinical trials are indispensable for improving medical care. To ensure the safety of trial participants and the quality of the data obtained, clinical trials are controlled by many legal regulations and internationally accepted quality standards. Therefore implementation of a clinical trial requires profound knowledge, qualified personnel, appropriate infrastructure, and substantial financial resources. In IITs unlike CSTs this has to be accomplished by the University without the assistance of the pharmaceutical industry. Since teaching of skills needed to perform clinical trials is still largely neglected in medical school and during residency this review addresses the (in clinical trials) inexperienced physician and outlines the characterization of a clinical trial, the range and division of responsibilities and the performance of clinical trials according to the German Medicinal Products Act."	"Multiple silicon-hydrogen bond activations at adjacent rhodium and iridium centers. The reaction of 1 equiv of primary silanes, SiH(3)R (R = Ph, Mes), with [RhIr(CO)(3)(dppm)(2)] yields mono(silylene)-bridged complexes of the type [RhIr(H)(2)(CO)(2)(μ-SiHR)(dppm)(2)] (R = Ph or Mes), while for R = Ph the addition of 2 equiv yields the bis(silylene)-bridged complexes, [RhIr(CO)(2)(μ-SiHPh)(2)(dppm)(2)]. The kinetic isomer of this bis(silylene)-bridged product has the phenyl substituent axial on one silylene unit and equatorial on the other, and in the presence of excess silane this rearranges to the thermodynamically preferred &quot;axial-axial&quot; isomer, in which the phenyl substituents on each bridging silylene unit are axial and parallel to one another. The reaction of 1 equiv of diphenylsilane with [RhIr(CO)(3)(dppm)(2)] produces the mono(silylene)-bridged product, [RhIr(H)(2)(CO)(2)(μ-SiPh(2))(dppm)(2)], and the subsequent addition of silane in the presence of CO yields the silyl/silylene product [RhIr(H)(SiPh(2)H)(CO)(3)(κ(1)-dppm)(μ-SiPh(2))(dppm)]. The reaction of [RhIr(CO)(3)(dppm)(2)] with 2 equiv of SiH(2)Me(2) yields the analogous product [RhIr(H)(SiMe(2)H)(CO)(3)(κ(1)-dppm)(μ-SiMe(2))(dppm)]. Low-temperature NMR spectroscopic observation of some key intermediates, such as [RhIr(H)(SiH(2)Ph)(CO)(2)(μ-CO)(dppm)(2)], formed during the formation of the mono(silylene)-bridged species provides evidence for a mechanism involving initial Si-H bond activation at Rh, followed by the subsequent Si-H bond activation at Ir. The Si-H bond activation of a second equivalent of silane seems to be initiated by dissociation of the Rh-bound end of one diphosphine. The reaction of diphenylsilane with the cationic complex [RhIr(CH(3))(CO)(2)(dppm)(2)][CF(3)SO(3)] gives rise to a different reactivity pattern in which Si-H bond activation is initiated at Ir. In this case, the cationic silyl-bridged species, [RhIr(CH(3))(CO)(2)(κ(1):η(2)-SiHPh(2))(dppm)(2)][CF(3)SO(3)], contains an agostic Si-H interaction with Rh. In solution, at ambient temperature, this complex converts to two species, [RhIr(H)(COCH(3))(CO)(μ-H)(μ-SiPh(2))(dppm)(2)][CF(3)SO(3)] and [RhIr(CO)(2)(μ-H)(μ-SiPh(2))(dppm)(2)] [CF(3)SO(3)], formed by the competing methyl migration to CO and reductive elimination of methane, respectively. In the diphenylsilylene dihydride product, a weak interaction between the bridging silicon and the terminal Ir-bound hydride is proposed on the basis of NMR evidence."	"Hearing and vestibular deficits in the Coch(-/-) null mouse model: comparison to the Coch(G88E/G88E) mouse and to DFNA9 hearing and balance disorder. Two mouse models, the Coch(G88E/G88E) or &quot;knock-in&quot; and the Coch(-/-) or &quot;knock-out&quot; (Coch null), have been developed to study the human late-onset, progressive, sensorineural hearing loss and vestibular dysfunction known as DFNA9. This disorder results from missense and in-frame deletion mutations in COCH (coagulation factor C homology), encoding cochlin, the most abundantly detected protein in the inner ear. We have performed hearing and vestibular analyses by auditory brainstem response (ABR) and vestibular evoked potential (VsEP) testing of the Coch(-/-) and Coch(G88E/G88E) mouse models. Both Coch(-/-) and Coch(G88E/G88E) mice show substantially elevated ABRs at 21 months of age, but only at the highest frequency tested for the former and all frequencies for the latter. At 21 months, 9 of 11 Coch(-/-) mice and 4 of 8 Coch(G88E/G88E) mice have absent ABRs. Interestingly Coch(-/+) mice do not show hearing deficits, in contrast to Coch(G88E/+), which demonstrate elevated ABR thresholds similar to homozyotes. These results corroborate the DFNA9 autosomal dominant mode of inheritance, in addition to the observation that haploinsufficiency of Coch does not result in impaired hearing. Vestibular evoked potential (VsEP) thresholds were analyzed using a two factor ANOVA (Age X Genotype). Elevated VsEP thresholds are detected in Coch(-/-) mice at 13 and 21 months, the two ages tested, and as early as seven months in the Coch(G88E/G88E) mice. These results indicate that in both mouse models, vestibular function is compromised before cochlear function. Analysis and comparison of hearing and vestibular function in these two DFNA9 mouse models, where deficits occur at such an advanced age, provide insight into the pathology of DFNA9 and age-related hearing loss and vestibular dysfunction as well as an opportunity to investigate potential interventional therapies."	"Photoinduced superoxide radical anion and singlet oxygen generation in the presence of novel selenadiazoloquinolones (an EPR Study). Novel 7-substituted 6-oxo-6,9-dihydro[1,2,5]selenadiazolo[3,4-h]quinoline (SeQ(1-6)) and 8-substituted 9-oxo-6,9-dihydro[1,2,5]selenadiazolo[3,4-f ]quinoline derivatives (SeQN(1-5)) with R(7), R(8) =H, COOC(2) H(5), COOCH(3), COOH, COCH(3) or CN were synthesized and their spectral characteristics were obtained by UV/Vis spectroscopy. Ultraviolet A photoexcitation of the selenadiazoloquinolones in dimethylsulfoxide or acetonitrile resulted in the formation of paramagnetic species coupled with molecular oxygen activation generating the superoxide radical anion or singlet oxygen, evidenced by electron paramagnetic resonance spectroscopy. The cytotoxic/photocytotoxic impact of selenadiazoloquinolones on murine and human cancer cell lines was demonstrated using the derivative SeQ5 (with R(7)=COCH(3))."	"Electrostatic interaction and complex formation between gum arabic and bovine serum albumin. The interaction of gum arabic (GA) and bovine serum albumin (BSA) has been investigated through turbidity and light scattering intensity measurements and by the use of dynamic light scattering, laser Doppler velocimetry, and isothermal titration calorimetry. It has been shown that GA and BSA can form soluble and insoluble complexes depending on the solution pH and the mixing ratio and is a function of the net charge on the complex. Soluble complexes were obtained when the electrophoretic mobility was greater than ±1. 5 μm s(-1) V(-1) cm(-1). Changes in the value of the isoelectric point of the complexes with mixing ratio and isothermal titration calorimetric data indicated that complexes formed at pHs 3 and 4 consisted of ∼60 BSA molecules for every GA molecule, while at pH 5 there were ∼10 BSA molecules per GA molecule. Calorimetric studies also indicated that the interaction occurred in two stages at both pH 3 and pH 4, but that the nature of the interaction at these two pH values was significantly different. This was attributed to differences in the relative magnitude of the positive and negative charges on the BSA and GA, respectively, and possibly due to changes in the BSA conformation. The fact that there is an interaction at pH 5, which is above the isoelectric point of the BSA, is due to the interaction of the carboxylate groups on the GA with positive patches on the BSA or to the charge regulation of the protein-polysaccharide system brought about by changes in dissociation equilibria. Complexation is reduced as the ionic strength of the solvent increases and is prevented at a NaCl concentration of 120 mM."	"Monocyte-mediated inhibition of TLR9-dependent IFN-α induction in plasmacytoid dendritic cells questions bacterial DNA as the active ingredient of bacterial lysates. Bacterial DNA contains unmethylated CpG dinucleotides and is a potent ligand for TLR9. Bacterial DNA has been claimed the active ingredient in bacterial lysates used for immunotherapy. Whereas the detection of viral DNA by TLR9 expressed in plasmacytoid dendritic cells (PDCs) with subsequent IFN-α production is well defined, the role of bacterial DNA during microbial infection is less clear. In fact, IFN-α is not a hallmark of antibacterial immune responses. Unlike in mice, TLR9 expression in humans is restricted to PDCs and B cells; thus, conclusions from murine models of infection have limitations. In this study, we demonstrate that lysates of heat-killed Escherichia coli containing bacterial DNA induced IFN-α in isolated PDCs but not in the mixed cell populations of human PBMCs. Depletion of monocytes restored IFN-α secretion by PDCs within PBMCs. We found that monocyte-derived IL-10 and PGs contribute to monocyte-mediated inhibition of IFN-α release in PDCs. We conclude that human PDCs can be stimulated by bacterial DNA via TLR9; however, in the physiological context of mixed-cell populations, PDC activation is blocked by factors released from monocytes stimulated in parallel by other components of bacterial lysates such as LPS. This functional repression of PDCs by concomitantly stimulated monocytes avoids production of antiviral IFN-α during bacterial infection and thus explains how the innate immune system is enabled to distinguish bacterial from viral CpG DNA and thus to elicit the appropriate responses despite the presence of CpG DNA in both types of infection."	"Extralabyrinthine manifestations of DFNA9. DFNA9 is an autosomal dominant cause of non-syndromic adult-onset sensorineural hearing loss with associated variable vestibular dysfunction caused by mutations in the COCH gene. DFNA9 has previously been characterized by the presence of unique histopathologic features limited to the cochlear and vestibular labyrinth. This report describes newly discovered extralabyrinthine findings within the middle ear in DFNA9 and discusses their implications. The histopathologic anatomy of extralabyrinthine structures was reviewed in 12 temporal bones from seven individuals with DFNA9 and compared with age-matched controls. All temporal bones with DFNA9 had abnormal deposits within the tympanic membrane, incudomalleal joint, and incudostapedial joint. Hematoxylin and eosin stain and Movat's pentachrome stain both revealed different staining patterns of the extralabyrinthine deposits compared with the intralabyrinthine deposits suggesting that the composition of the deposits varies with location. The deposits within the tympanic membrane resembled cartilage morphologically and stained positively for aggrecan, an extracellular matrix protein found in cartilage. However, the cellular component of the tympanic membrane deposits did not stain with immunomarkers for chondrocytes (s100 and connective tissue growth factor). These novel findings in DFNA9 have implications for the phenotypic expression of the disorder and the clinical workup of adult-onset sensorineural hearing loss."	"A novel mutation in COCH-implications for genotype-phenotype correlations in DFNA9 hearing loss. To determine the cause of autosomal dominant hearing loss segregating in an American family. Family study. Otologic and audiometric examination was performed on affected family members. Genome wide parametric multipoint linkage mapping using a dominant model was performed with Affymetrix 50K GeneChip data. Direct sequencing was used to confirm the causative mutation. In American family 467, segregating autosomal dominant nonsyndromic hearing loss, a novel heterozygous missense mutation (c.362T&gt;C; p.F121S) was identified in the COCH gene. This mutation was also associated with vestibular dysfunction typical of other DFNA9 families. However, affected family members also exhibited memory loss and night blindness. The novel COCH mutation affects the functionally important limulus factor C, Coch-5b2 and Lgl1 domain where most DFNA9 mutations have been localized. The onset of the hearing loss, in the 2nd or 3rd decade of life, is earlier than in most DFNA9 families. The progression of hearing loss and vestibular dysfunction in the American family is typical of other DFNA9 families with mutations in this domain. Memory loss and night blindness have not been previously reported in DFNA9 families."	"Effects of cocaine hydrolase on cocaine self-administration under a PR schedule and during extended access (escalation) in rats. Previously, Albu-CocH, a cocaine hydrolase derived from human butyrylcholinesterase, blocked cocaine-induced reinstatement of drug seeking in rats. In the present study, rats were treated with Albu-CocH while self-administering cocaine under a progressive ratio (PR) schedule during 2-h sessions and under a fixed-ratio 1 (FR 1) schedule during 6-h sessions. In experiment 1, rats were treated with saline or Albu-CocH (2 or 4 mg/kg) before a single 2-h cocaine (0.2 mg/kg) self-administration (PR) session. In experiment 2, rats were treated with Albu-CocH or saline for the first seven of the 21-day 6-h sessions prior to cocaine (0.2 or 0.4 mg/kg) self-administration sessions (FR 1). In experiment 1, Albu-CocH (vs saline) reduced cocaine infusions immediately following treatment compared with sessions pretreatment and posttreatment. In experiment 2, the Albu-CocH-treated groups (vs saline) showed an initial twofold to threefold increase in 0.2 and 0.4 mg/kg cocaine infusions over the 7 days of treatment, but they decreased to the infusion levels of saline controls by day 7. Cocaine (0.4 mg/kg) intake in the saline-treated group was elevated during the last 3 days of 6-h access compared with the first 3 days, indicating an escalation effect. Responding for 0.4 mg/kg (but not 0.2 mg/kg) cocaine during 2-h sessions after the 21 days of 6-h access was elevated in the saline groups (compared with 2-h sessions before long access) but not in the Albu-CocH-treated groups. Albu-CocH decreased cocaine infusions under the PR schedule, indicating a reduced reward value of cocaine (experiment 1). However, Albu-CocH, compared with saline, temporarily increased cocaine infusions during long access. The post-long access 2-h cocaine intake was not increased in the Albu-CocH-treated groups as it was in the saline-treated groups. Albu-CocH is an effective agent for reducing cocaine reward under conditions of low cocaine exposure and chronic treatment."	"Primary photodissociation pathways of epichlorohydrin and analysis of the C-C bond fission channels from an O((3)P)+allyl radical intermediate. This study initially characterizes the primary photodissociation processes of epichlorohydrin, c-(H(2)COCH)CH(2)Cl. The three dominant photoproduct channels analyzed are c-(H(2)COCH)CH(2)+Cl, c-(H(2)COCH)+CH(2)Cl, and C(3)H(4)O+HCl. In the second channel, the c-(H(2)COCH) photofission product is a higher energy intermediate on C(2)H(3)O global potential energy surface and has a small isomerization barrier to vinoxy. The resulting highly vibrationally excited vinoxy radicals likely dissociate to give the observed signal at the mass corresponding to ketene, H(2)CCO. The final primary photodissociation pathway HCl+C(3)H(4)O evidences a recoil kinetic energy distribution similar to that of four-center HCl elimination in chlorinated alkenes, so is assigned to production of c-(H(2)COC)=CH(2); the epoxide product is formed with enough vibrational energy to isomerize to acrolein and dissociate. The paper then analyzes the dynamics of the C(3)H(5)O radical produced from C-Cl bond photofission. When the epoxide radical photoproduct undergoes facile ring opening, it is the radical intermediate formed in the O((3)P)+allyl bimolecular reaction when the O atom adds to an end C atom. We focus on the HCO+C(2)H(4) and H(2)CO+C(2)H(3) product channels from this radical intermediate in this report. Analysis of the velocity distribution of the momentum-matched signals from the HCO+C(2)H(4) products at m/e=29 and 28 shows that the dissociation of the radical intermediate imparts a high relative kinetic energy, peaking near 20 kcal/mol, between the products. Similarly, the energy imparted to relative kinetic energy in the H(2)CO+C(2)H(3) product channel of the O((3)P)+allyl radical intermediate also peaks at high-recoil kinetic energies, near 18 kcal/mol. The strongly forward-backward peaked angular distributions and the high kinetic energy release result from tangential recoil during the dissociation of highly rotationally excited nascent radicals formed photolytically in this experiment. The data also reveal substantial branching to an HCCH+H(3)CO product channel. We present a detailed statistical prediction for the dissociation of the radical intermediate on the C(3)H(5)O potential energy surface calculated with coupled cluster theory, accounting for the rotational and vibrational energy imparted to the radical intermediate and the resulting competition between the H+acrolein, HCO+C(2)H(4), and H(2)CO+C(2)H(3) product channels. We compare the results of the theoretical prediction with our measured branching ratios. We also report photoionization efficiency (PIE) curves extending from 9.25 to 12.75 eV for the signal from the HCO+C(2)H(4) and H(2)CO+C(2)H(3) product channels. Using the C(2)H(4) bandwidth-averaged absolute photoionization cross section at 11.27 eV and our measured relative photoion signals of C(2)H(4) and HCO yields a value of 11.6+1/-3 Mb for the photoionization cross section of HCO at 11.27 eV. This determination puts the PIE curve of HCO measured here on an absolute scale, allowing us to report the absolute photoionization efficiency of HCO over the entire range of photoionization energies."	"Syntheses, structures, and magnetic properties of diphenoxo-bridged Cu(II)Ln(III) and Ni(II)(low-spin)Ln(III) compounds derived from a compartmental ligand (Ln = Ce-Yb). Syntheses, characterization, and magnetic properties of a series of diphenoxo-bridged discrete dinuclear M(II)Ln(III) complexes (M = Cu or Ni, Ln = Ce-Yb) derived from the compartmental Schiff base ligand, H(2)L, obtained on condensation of 3-ethoxysalicylaldehyde with trans-1,2-diaminocyclohexane, are described. Single crystal X-ray structures of eight Cu(II)Ln(III) compounds (Ln = Ce (1), Pr (2), Nd (3), Sm (4), Tb (7), Ho (9), Er (10), and Yb (12)) and three Ni(II)Ln(III) (Ln = Ce (13), Sm (16), and Gd (18)) compounds have been determined. Considering the previously reported structure of the Cu(II)Gd(III) (6) compound (Eur. J. Inorg. Chem. 2005, 1500), a total of twelve structures are discussed/compared in this study. Four types of composition are observed in the Cu(II)Ln(III) complexes: [Cu(II)LLn(III) (NO(3))(3)(H(2)O)] (1-3: Ln = Ce-Nd), [Cu(II)LSm(III)(NO(3))(3)]·CH(3)COCH(3) (4), [Cu(II)(H(2)O)LLn(III)(NO(3))(3)] (5: Ln = Eu; 6: Ln = Gd), and [Cu(II)LLn(III)(NO(3))(3)] (4A: Ln = Sm; 7-12: Ln = Tb-Yb). On the other hand, the Ni(II)Ln(III) complexes are characterized to have two types of composition: [Ni(II)LLn(III)(H(2)O)(NO(3))(3)] (13-15: Ln = Ce-Nd) and [Ni(II)LLn(III)(NO(3))(3)]·0.5CH(3)COCH(3) (16-24: Ln = Sm-Yb). Among twelve X-ray structures, seven belong to three different isomorphous sets (Cu(II)Ce(III) (1), Cu(II)Pr(III) (2), Cu(II)Nd(III) (3), and Ni(II)Ce(III) (13); Cu(II)Tb(III) (7), Cu(II)Ho(III) (9), Cu(II)Er(III) (10), and Cu(II)Yb(III) (12); Ni(II)Sm(III) (16) and Ni(II)Gd(III) (18)), whereas space group/unit cell parameters of two others (Cu(II)Sm(III) (4) and Cu(II)Gd(III) (6)) are of different types. The lanthanide(III) centers in Cu(II)Ce(III) (1), Cu(II)Pr(III) (2), Cu(II)Nd(III) (3), and Ni(II)Ce(III) (13) complexes are eleven-coordinated, while the lanthanide(III) centers in other compounds are ten-coordinated. As evidenced from the dihedral angle (δ) between the CuO(phenoxo)(2) and LnO(phenoxo)(2) planes, variation in the extent of planarity of the bridging moiety in the Cu(II)Ln(III) compounds takes place; the ranges of δ values are 0.8-6.2° in the 4f(1-7) analogues and 17.6-19.1° in the 4f(8-13) analogues. The Cu(II)Gd(III) (6) compound exhibits ferromagnetic interaction (Eur. J. Inorg. Chem. 2005, 1500). The nature of the magnetic exchange interaction in the Cu(II)Ln(III) complexes has been understood by utilizing the empirical approach; the Ni(II)Ln(III) complexes have been used as references. The metal centers in the Eu(III) complex are uncorrelated, while other 4f(1-6) analogues (Ce(III), Pr(III), Nd(III), and Sm(III)) exhibit antiferromagnetic interaction. Among the higher analogues (4f(7-13)), only Yb(III) exhibits antiferromagnetic interaction, while interaction in other analogues (Gd(III), Tb(III), Dy(III), Ho(III), Er(III), and Tm(III)) is ferromagnetic. An important aspect of the present study is the measurement of the magnetic susceptibility of the unblocked samples as well as on blocking the samples with grease to avoid powder reorientation, if any. Comparison of the two sets of data reveals significant difference in some cases."	"Fibre-optic laryngoscope and endotracheal tube assembly: a robust method of monitoring recurrent laryngeal nerve function during thyroid surgery: how we do it. NA"	"Synthesis, structure, and electronic and photophysical properties of two- and three-layered [3.3]paracyclophane-based donor-acceptor systems. The synthesis, structural, redox, and photophysical properties of the two- and three-layered donor-acceptor (D-A) type [3.3]paracyclophanes ([3.3]PCPs) are described. The synthesis of the two- and three-layered [3.3]PCPs 1 and 2 containing 2,1,3-benzothiadiazole (BTD) as an acceptor was achieved by the (p-ethylbenzenesulfonyl)methyl isocyanide coupling method. The cyclic voltammograms of 1 and 2 along with those of respective dione precursors 5 and 7 clearly indicate that the presence of the -CH(2)COCH(2)- bridge interferes with the electronic interactions between the BTD and the benzene rings, suggesting the importance of the through-bond interaction in the ground state. In sharp contrast, the UV/vis spectra of 1 and 5 as well as those of 2 and 7 exhibit similar bands regardless of the presence of the -CH(2)COCH(2)- or -CH(2)CH(2)CH(2)- bridges, indicating that the charge-transfer (CT) interaction is mainly responsible for the through-space interaction. The two-layered PCPs, 5 and 1, show broad structureless fluorescence bands at the same position of 468 nm, while those of the three-layered PCPs, 7 and 2, appear at 501 and 496 nm, respectively, with lower quantum yields compared to those of the two-layered PCPs probably due to the stronger intramolecular CT interaction of the three-layered PCPs in the ground state."	"Molecular cloning of the Coch gene of guinea pig inner ear and its expression analysis in cultured fibrocytes of the spiral ligament. We have cloned guinea pig Coch cDNA and the sequence information will be useful for future molecular study combined with physiological experiments. Proper Coch gene expression appears to be dependent on the unique extracellular micro-environment of the inner ear in vivo. These results provide insight into the Coch gene expression and its regulation. To characterize the guinea pig Coch gene, we performed molecular cloning and expression analysis in the inner ear and cultured fibrocytes of the spiral ligament. The Coch cDNA was isolated using RACE. Cochlin isofoms were studied by Western blot using three different types of mammalian inner ear. The cochlear fibrocytes were cultured and characterized by immunostaining. Coch gene expression in the fibrocytes was investigated and the influence of cytokine stimulation was evaluated. The full-length 1991 bp Coch cDNA that encodes a 553 amino acid protein was isolated. The sequence had significant homology with other mammals, and the sizes of the Cochlin isoforms were identical. In the cultured fibrocytes, Coch mRNA was expressed in a very small amount and the isoform production was different, compared with the results in vivo. Cytokine stimulation did not alter the level of mRNA expression or isoform formation."	"Population distribution of flexible molecules from maximum entropy analysis using different priors as background information: application to the Φ, Ψ-conformational space of the α-(1--&gt;2)-linked mannose disaccharide present in N- and O-linked glycoproteins. The conformational space available to the flexible molecule α-D-Manp-(1--&gt;2)-α-D-Manp-OMe, a model for the α-(1--&gt;2)-linked mannose disaccharide in N- or O-linked glycoproteins, is determined using experimental data and molecular simulation combined with a maximum entropy approach that leads to a converged population distribution utilizing different input information. A database survey of the Protein Data Bank where structures having the constituent disaccharide were retrieved resulted in an ensemble with &gt;200 structures. Subsequent filtering removed erroneous structures and gave the database (DB) ensemble having three classes of mannose-containing compounds, viz., N- and O-linked structures, and ligands to proteins. A molecular dynamics (MD) simulation of the disaccharide revealed a two-state equilibrium with a major and a minor conformational state, i.e., the MD ensemble. These two different conformation ensembles of the disaccharide were compared to measured experimental spectroscopic data for the molecule in water solution. However, neither of the two populations were compatible with experimental data from optical rotation, NMR (1)H,(1)H cross-relaxation rates as well as homo- and heteronuclear (3)J couplings. The conformational distributions were subsequently used as background information to generate priors that were used in a maximum entropy analysis. The resulting posteriors, i.e., the population distributions after the application of the maximum entropy analysis, still showed notable deviations that were not anticipated based on the prior information. Therefore, reparameterization of homo- and heteronuclear Karplus relationships for the glycosidic torsion angles Φ and Ψ were carried out in which the importance of electronegative substituents on the coupling pathway was deemed essential resulting in four derived equations, two (3)J(COCC) and two (3)J(COCH) being different for the Φ and Ψ torsions, respectively. These Karplus relationships are denoted JCX/SU09. Reapplication of the maximum entropy analysis gave excellent agreement between the MD- and DB-posteriors. The information entropies show that the current reparametrization of the Karplus relationships constitutes a significant improvement. The Φ(H) torsion angle of the disaccharide is governed by the exo-anomeric effect and for the dominating conformation Φ(H) = -40 degrees and Ψ(H) = 33 degrees. The minor conformational state has a negative Ψ(H) torsion angle; the relative populations of the major and the minor states are approximately 3 : 1. It is anticipated that application of the methodology will be useful to flexible molecules ranging from small organic molecules to large biomolecules."	"A comparison of methods for measuring relative radical stabilities of carbon-centred radicals. This article discusses and compares various methods for defining and measuring radical stability, including the familiar radical stabilization energy (RSE), along with some lesser-known alternatives based on corrected carbon-carbon bond energies, and more direct measures of the extent of radical delocalisation. As part of this work, a large set of R-H, R-CH(3), R-Cl and R-R BDEs (R = CH(2)X, CH(CH(3))X, C(CH(3))(2)X and X = H, BH(2), CH(3), NH(2), OH, F, SiH(3), PH(2), SH, Cl, Br, N(CH(3))(2), NHCH(3), NHCHO, NHCOCH(3), NO(2), OCF(3), OCH(2)CH(3), OCH(3), OCHO, OCOCH(3), Si(CH(3))(3), P(CH(3))(2), SC(CH(3))(2)CN, SCH(2)COOCH(3), SCH(2)COOCH(3), SCH(2)Ph, SCH(3), SO(2)CH(3), S(O)CH(3), Ph, C(6)H(4)-pCN, C(6)H(4)-pNO(2), C(6)H(4)-pOCH(3), C(6)H(4)-pOH, CF(2)CF(3), CF(2)H, CF(3), CCl(2)H, CCl(3), CH(2)Cl, CH(2)F, CH(2)OH, CH(2)Ph, cyclo-CH(CH(2))(2), CH(2)CH[double bond, length as m-dash]CH(2), CH(2)CH(3), CH(CH(3))(2), C(CH(3))(3), C[triple bond, length as m-dash]CH, CH[double bond, length as m-dash]CH(2), CH[double bond, length as m-dash]CHCH(3), CHO, CN, COCH(3), CON(CH(2)CH(3))(2), CONH(2), CONHCH(3), COOC(CH(3))(3), COOCH(2)CH(3), COOCH(3), COOH, COPh), and associated radical stability values are calculated using the high-level ab initio molecular orbital theory method G3(MP2)-RAD. These are used to compare the alternative radical stability schemes and illustrate principal structure-reactivity trends."	"Quantification of carbonate by gas chromatography-mass spectrometry. Carbon dioxide and carbonates are widely distributed in nature, are constituents of inorganic and organic matter, and are essential in vegetable and animal organisms. CO(2) is the principal greenhouse gas in the atmosphere. In human blood, CO(2)/HCO(3)(-) is an important buffering system. Quantification of bicarbonate and carbonate in inorganic and organic matter and in biological fluids such as blood or blood plasma by means of the GC-MS technology has been impossible so far, presumably because of the lack of suitable derivatization reactions to produce volatile and thermally stable derivatives. Here, a novel derivatization reaction is described for carbonate that allows for its quantification in aqueous alkaline solutions and alkalinized plasma and urine. Carbonate in acetonic solutions of these matrices (1:4 v/v) and added (13)C-labeled carbonate for use as the internal standard were heated in the presence of the derivatization agent pentafluorobenzyl (PFB) bromide for 60 min and 50 °C. Investigations with (12)CO(3)(2-), (13)CO(3)(2-), (CH(3))(2)CO, and (CD(3))(2)CO in alkaline solutions and GC-MS and GC-MS/MS analyses under negative-ion chemical ionization (NICI) or electron ionization (EI) conditions of toluene extracts of the reactants revealed formation of two minor [i.e., PFB-OCOOH and O=CO(2)-(PFB)(2)] and two major [i.e., CH(3)COCH(2)-C(OH)(OPFB)(2) and CH(3)COCH=C(OPFB)(2)] carbonate derivatives. The latter have different retention times (7.9 and 7.5 min, respectively) but virtually identical EI and NICI mass spectra. It is assumed that CH(3)COCH(2)-C(OH)(OPFB)(2) is formed from the reaction of the carbonate dianion with two molecules of PFB bromide to form the diPFB ester of carbonic acid, which further reacts with one molecule of acetone. Subsequent loss of water finally generates the major derivative CH(3)COCH=C(OPFB)(2). This derivatization reaction was utilized to quantify total CO(2)/HCO(3)(-)/CO(3)(2-) (tCO(2)) in human plasma and urine by GC-MS in the NICI mode by selected ion monitoring of the anions [M-H](-) of CH(3)COCH=C(OPFB)(2) at m/z 461 for the endogenous species and m/z 462 for the internal standard (13)CO(3)(2-). Oral intake of the carboanhydrase inhibitor drug acetazolamide by two healthy volunteers resulted in temporary increased excretion of tCO(2) in the urine. The method is specific for carbonate, accurate, sensitive and should be applicable to various matrices including human fluids and environmental samples."	"Unusual organic chemistry of a metallaborane substrate: formation of a tantalaborane complex with a bridging acyl group (mu-eta(2)). The addition of LiBH(4).THF to Cp*TaCl(4) (1; Cp* = eta(5)-C(5)Me(5)) at -40 degrees C, followed by mild pyrolysis with excess BH(3).THF, results in the formation of the mu-acyl complex (Cp*Ta)(2)B(4)H(8)(mu-eta(2)-COCH(3)) (2). The title compound represents a novel class of mu-acyl complexes in which the bicapped-tetrahedral unit (Cp*Ta)(2)B(4)H(8) is bridged by a mu-eta(2)-COCH(3) acyl ligand."	"Reduced N-alkyl substituted bis(imino)pyridine cobalt complexes: molecular and electronic structures for compounds varying by three oxidation states. The stepwise 1-3 electron reduction of the N-alkyl substituted bis(imino)pyridine cobalt dichloride complexes, ((R)APDI)CoCl(2), was studied where (R)APDI = 2,6-(RN=CMe)(2)C(5)H(3)N, R = C(6)H(11) (Cy), CHMe(2) ((i)Pr). One electron reduction with either zinc metal or NaBEt(3)H furnished the bis(imino)pyridine cobalt monochloride compounds, ((R)APDI)CoCl. X-ray diffraction on the ((iPr)APDI)CoCl derivative established a distortion from square planar geometry where the chloride ligand is lifted out of the idealized cobalt-chelate plane. Superconducting Quantum Interference Device (SQUID) magnetometry on both compounds established spin crossover behavior with an S = 1 state being predominant at room temperature. Computational studies, in combination with experimental results, establish that the triplet spin isomer arises from a high spin Co(II) center (S(Co) = 3/2) antiferromagnetically coupled to a bis(imino)pyridine chelate radical anion, [PDI](-) (S(PDI) = 1/2). At lower temperatures, the Co(II) ion undergoes a spin transition to the low spin form (S(Co) = 1/2) and antiferromagnetic coupling gives rise to the observed diamagnetic ground state. Replacing the chloride ligand with a methyl group, namely ((R)APDI)CoCH(3), also yielded distorted compounds, albeit less pronounced, that are diamagnetic at room temperature. Two electron reduction of the ((R)APDI)CoCl(2) derivatives with excess 0.5% sodium amalgam or 2 equiv of NaBEt(3)H furnished the bis(chelate)cobalt complexes, ((R)APDI)(2)Co, while three electron reduction with 3 equiv of sodium naphthalenide yielded the cobalt dinitrogen anions, [Na(solv)(3)][((R)APDI)CoN(2)] (solv = THF, Et(2)O). Both bis(chelate) compounds were crystallographically characterized and determined to have S = 3/2 ground states by SQUID magnetometry and electron paramagnetic resonance (EPR) spectroscopy. Computational studies, in combination with metrical parameters determined from X-ray diffraction, establish a high spin (S(Co) = 3/2) cobalt(II) center with two bis(imino)pyridine chelate radical anions. Antiferromagnetic coupling between the two chelate centered radicals is mediated by a doubly occupied t(2g) cobalt orbital and gives rise to the observed overall quartet ground state."	"Interaction of CO molecule with Au/MOR catalyst: ONIOM-PM6 study, active sites, thermodynamic and vibrational frequencies. ONIOM calculations have been carried out to determine geometries, adsorption energies, and vibrational frequencies of CO on a model for Au-exchanged mordenite catalysts, Au/MOR. The CO-calculated vibrational frequencies (upsilon(CO)) are in good agreement with the reported experimental values. We proposed to interpret the frequency results. CH(3)COCH(3) and CH(3)SH adsorption enthalpy calculations on Au/MOR model show that the Au/MOR catalyst behaves like a soft acid according to Pearson's rule. A higher structural deformation degree of the mordenite was found in the calculations with PM6 than with universal force field approach approach. A new pseudopotential (ACEP-121) was developed to improve the Au-Au distance, and Au ionization potential."	"Are the anions MeO(CO)n- (n = 1 and 2) methoxide anion donors in the gas phase? A theoretical investigation. 1. The anions CH(3)O-(-)CO and CH(3)OCO-(-)CO are both methoxide anion donors. The processes CH(3)O-(-)CO --&gt; CH(3)O(-) + CO and CH(3)OCO-CO --&gt; CH(3)O(-) + 2CO have DeltaG values of +8 and -68 kJ mol(-1), respectively, at the CCSD(T)/6-311++G(2d, 2p)//B3LYP/6-311++G(2d,2p) level of theory. 2. The reactions CH(3)OCOCO(2) (-) --&gt; CH(3)OCO(2) (-) + CO (DeltaG = -22 kJ mol(-1)) and CH(3)COCH(O(-))CO(2)CH(3) --&gt; CH(3)COCH(O(-))OCH(3) + CO (DeltaG = +19 kJ mol(-1)) proceed directly from the precursor anions via the transition states (CH(3)OCO...CO(2))(-) and (CH(3)COCHO...CH(3)OCO)(-), respectively. 3. Anion CH(3)COCH(O(-))CO(2)CH(3) undergoes methoxide anion transfer and loss of two molecules of CO in the reaction sequence CH(3)COCH(O(-))CO(2)CH(3) --&gt; CH(3)CH(O(-))COCO(2)CH(3) --&gt; [CH(3)CHO (CH(3)OCO-(-)CO)] --&gt; CH(3)CH(O(-))OCH(3) + 2CO (DeltaG = +9 kJ mol(-1)). The hydride ion transfer in the first step is a key feature of the reaction sequence."	"Natural bond orbital approach to the transmission of substituent effect through the fulvene and benzene ring systems. Electronic structure of 22 monosubstituted derivatives of benzene and exocyclically substituted fulvene with substituents: B(OH)(2), BH(2), CCH, CF(3), CH(3), CHCH(2), CHO, Cl, CMe(3), CN, COCH(3), CONH(2), COOH, F, NH(2), NMe(2), NO, NO(2), OCH(3), OH, SiH(3), SiMe(3) were studied theoretically by means of Natural Bond Orbital analysis. It is shown, that sum of π-electron population of carbon atoms of the fulvene and benzene rings, pEDA(F) and pEDA(B), respectively correlate well with Hammett substituent constants [Formula in text] and aromaticity index NICS. The substituent effect acting on pi-electron occupation at carbon atoms of the fulvene ring is significantly stronger than in the case of benzene. Electron occupations of ring carbon atoms (except C1) in fulvene plotted against each other give linear regressions with high correlation coefficients. The same is true for ortho- and para-carbon atoms in benzene. Positive slopes of the regressions indicate similar for fulvene and benzene kind of substituent effect - mostly resonance in nature. Only the regressions of occupation at the carbon atom in meta- position of benzene against ortho- and para-positions gives negative slopes and low correlation coefficients."	"The Dissociative Experiences Scale: Replacement items for use with the profoundly deaf. NA"	"An ab initio/Rice-Ramsperger-Kassel-Marcus study of the hydrogen-abstraction reactions of methyl ethers, H(3)COCH(3-x)(CH(3))(x), x = 0-2, by OH; mechanism and kinetics. A theoretical study of the mechanism and kinetics of the H-abstraction reaction from dimethyl (DME), ethylmethyl (EME) and iso-propylmethyl (IPME) ethers by the OH radical has been carried out using the high-level methods CCSD(T)/CBS, G3 and G3MP2BH&amp;H. The computationally less-expensive methods of G3 and G3MP2BH&amp;H yield results for DME within 0.2-0.6 and 0.7-0.9 kcal mol(-1), respectively, of the coupled cluster, CCSD(T), values extrapolated to the basis set limit. So the G3 and G3MP2BH&amp;H methods can be confidently used for the reactions of the higher ethers. A distinction is made between the two different kinds of H-atoms, classified as in/out-of the symmetry plane, and it is found that abstraction from the out-of-plane H-atoms proceeds through a stepwise mechanism involving the formation of a reactant complex in the entrance channel and product complex in the exit channel. The in-plane H-atom abstractions take place through a more direct mechanism and are less competitive. Rate constants of the three reactions have been calculated in the temperature range of 500-3000 K using the Variflex code, based on the weak collision, master equation/microcanonical variational RRKM theory including tunneling corrections. The computed total rate constants (cm(3) mol(-1) s(-1)) have been fitted as follows: k(DME) = 2.74 xT(3.94) exp (1534.2/T), k(EME) = 20.93 xT(3.61) exp (2060.1/T) and k(IPME) = 0.55 xT(3.93) exp (2826.1/T). Expressions of the group rate constants for the three different carbon sites are also provided."	"The Trp117Arg mutation of the COCH gene causes deafness in Koreans. NA"	"Conformationally constrained kappa receptor agonists: stereoselective synthesis and pharmacological evaluation of 6,8-diazabicyclo[3.2.2]nonane derivatives. Three sets of stereoisomeric bicyclic kappa agonists with defined orientation of the pharmacophoric elements pyrrolidine and dichlorophenylacetamide were stereoselectively prepared and pharmacologically evaluated. Stereoselective reduction, reductive amination, and Mitsunobu inversions were the key steps for the establishment of the desired stereochemistry. The kappa affinity decreased in the following order depending on the N-substituent: CO(2)CH(3) &gt; benzyl &gt; COCH(2)CH(3). Bicyclic derivatives with (1S,2R,5R)-configuration showed the highest kappa receptor affinity, which led to dihedral angles of 97 degrees and 45 degrees for the N(pyrrolidine)-C-C-N(phenylacetamide) structural element. The most potent kappa agonist of this series was (+)-methyl (1S,2R,5R)-8-[2-(3,4-dichlorophenyl)acetyl]-2-(pyrrolidin-1-yl)-6,8-diazabicyclo[3.2.2]nonane-6-carboxylate (ent-23, WMS-0121) with an K(i) value of 1.0 nM. ent-23 revealed high selectivity against the other classical opioid receptors and related receptor systems. In the [(35)S]GTPgammaS-binding assay at human kappa-opioid receptors, ent-23 was proved to be a full agonist with the same EC(50) value (87 nM) as the prototypical full agonist U-69,593 (EC(50) = 80 nM)."	"A study of the use of medicine lists in medicines reconciliation: please remember this, a list is just a list. Medication history-taking is recognised as a potential source of medication errors and is the subject of the first National Patient Safety Agency/National Institute for Health and Clinical Excellence Patient Safety Guidance. Medication lists are suggested as a way of improving medicines reconciliation, but, anecdotally, can falsely reassure prescribers that they have an accurate list of medicines if used in isolation. Patients in possession of a medicines list on admission to hospital were approached as part of routine care. Data were collated regarding medication-history discrepancies, their source and whether a prescription amendment was made. One hundred and twenty patients were reviewed and the median time for pharmacists to complete medicines reconciliation was 15 min. Eighty-three patients (69.2%) had only one medication list, 31 (26%) had two, five (4%) had three and one patient (0.8%) had four lists. In total, 447 discrepancies were identified of which 49 (11.0%) were initiated by the patient, including 32 (65.3%) to adjust a dosage regimen or not to comply with a dosing regime. For the 279 (62.4%) discrepancies attributable to secondary care staff, 119 (42.6%) prescribed medicines were omitted unintentionally. For the 119 (26.6%) discrepancies attributable to the primary care medicines lists, 48 (40.3%) related to inadequate or inaccurate information regarding medicine doses, frequency, strength or form. Each patient required a mean of 1.6 amendments to their prescription despite bringing a list of medicines with them. Medication lists should be interpreted with caution and assessed in combination with other sources of information, particularly the patient or their carer. Strategies to improve medicines reconciliation on admission to hospital are still needed and a single electronic patient record encompassing primary and secondary care medication records would be a positive step forward."	"Interaction of gum arabic with fatty acid studied using electron paramagnetic resonance. Electron paramagnetic resonance (EPR) is here used to study the interaction between gum arabic and a fatty acid. The EPR spectra of 5-doxyl stearic acid (5-DSA), a spin-labeled fatty acid analog, displayed increasingly anisotropic line features upon addition of gum arabic, indicating a strong immobilization of the nitroxyl moiety when the fatty acid is bound to gum arabic. To understand the nature of the interaction, EPR measurements were carried out at different pHs and using two fractions of gum arabic separated by hydrophobic interaction chromatography (HIC). 5-DSA bound favorably to the hydrophobic fraction, which contains mainly glycoprotein, and a small amount of high molecular weight arabinogalactan protein (AGP). Binding occurred to a less extent to the hydrophilic fraction, which contains essentially arabinogalactan (AG). Such a hydrophobic binding mechanism is further supported by a sharp drop in the binding when pH is raised above the pK(a) value of 5-DSA (approximately pH 5). This is because the ionization of carboxylic groups would lead to increased polarity and hydrophilicity of the fatty acid. A secondary effect involving the formation of ionic hydrogen bonds between carboxylic groups in fatty acid and lysine residues in gum arabic might also contribute. This is consistent with the reduction in binding ability when the pH was elevated above the pK(a) value of lysine residue (approximately pH 10). The biological significance of these findings is considered."	"Do u txt? Event-related potentials to semantic anomalies in standard and texted English. Texted English is a hybrid, technology-based language derived from standard English modified to facilitate ease of communication via instant and text messaging. We compared semantic processing of texted and standard English sentences by recording event-related potentials in a classic semantic incongruity paradigm designed to elicit an N400 effect. In participants fluent in both text and standard English, an N400 effect was elicited in both the texted and standard English conditions. The amplitude and distribution of the N400 effect (300-500ms) in the texted and standard English conditions were similar, but the text semantic incongruity effect was characterized by a delayed peak latency and an extended duration into the 500-700ms epoch. This pattern of results replicates previous findings regarding differences in the N400 effect in native and non-native language processing, but for the first time extends the bilingual ERP literature to include the technological phenomenon of texted English."	"Temperature-sensitive auditory neuropathy associated with an otoferlin mutation: Deafening fever! Transient deafness associated with an increase in core body temperature is a rare and puzzling disorder. Temperature-dependent deafness has been previously observed in patients suffering from auditory neuropathy. Auditory neuropathy is a clinical entity of sensorineural deafness characterized by absent auditory brainstem response and normal otoacoustic emissions. Mutations in OTOF, which encodes otoferlin, have been previously reported to cause DFNB9, a non-syndromic form of deafness characterized by severe to profound prelingual hearing impairment and auditory neuropathy. Here we report a novel mutation in OTOF gene in a large family affected by temperature-dependent auditory neuropathy. Three siblings aged 10, 9 and 7 years from a consanguineous family were found to be affected by severe or profound hearing impairment that was only present when they were febrile. The non-febrile patients had only mild if any hearing impairment. Electrophysiological tests revealed auditory neuropathy. Mapping with microsatellite markers revealed a compatible linkage in the DFNB9/OTOF region in the family, prompting us to run a molecular analysis of the 48 exons and of the OTOF intron-exon boundaries. This study revealed a novel mutation p.Glu1804del in exon 44 of OTOF. The mutation was found to be homozygous in the three patients and segregated with the hearing impairment within the family. The deletion affects an amino acid that is conserved in mammalian otoferlin sequences and located in the calcium-binding domain C2F of the protein."	"Role of protein misfolding in DFNA9 hearing loss. Mutations in the COCH (coagulation factor C homology) gene have been attributed to DFNA9 (deafness, autosomal-dominant 9), an autosomal-dominant non-syndromic hearing loss disorder. However, the mechanisms responsible for DFNA9 hearing loss remain unknown. Here, we demonstrate that mutant cochlin, the protein product of the COCH gene, forms a stable dimer that is sensitive to reducing agent. In contrast, wild-type (WT) cochlin may form only dimers transiently. Interestingly, the presence of mutant cochlin can stabilize WT cochlin in dimer conformation, providing a possible mechanism for the dominant nature of DFNA9 mutations. Furthermore, the expression of mutant cochlin eventually induces WT cochlin to form stable oligomers that are resistant to reducing agent. Finally, we show that mutant cochlin is cytotoxic in vitro and in vivo. Our study suggests a possible molecular mechanism underlying DFNA9 hearing loss and provides an in vitro model that may be used to explore protein-misfolding diseases in general."	"Imiquimod use in the genital area and development of lichen sclerosus and lichen planus. Imiquimod has immune-stimulant properties that can precipitate autoimmune conditions like eczema, psoriasis and lichenoid conditions. We report two cases here where imiquimod induced florid lichen sclerosus in one patient and lichen planus in another. In both patients the condition was so aggressive and unresponsive to steroid treatment that circumcision was necessary."	"Attitudes and opinions of nursing and medical staff regarding the supply and storage of medicinal products before and after the installation of a drawer-based automated stock-control system. This study assessed the attitudes of Emergency Department (ED) staff regarding the introduction of an automated stock-control system. The objectives were to determine attitudes to stock control and replenishment, speed of access to the system, ease of use and the potential for future uses of the system. The study was carried out in the Countess of Chester Hospital NHS Foundation Trust (COCH) ED, which is attended by over 65,000 patients each year. All 68 ED staff were sent pre-piloted, semi-structured questionnaires and reminders, before and after automation of medicines stock control. Pre-implementation, 35 staff (66.1% of respondents) reported that problems occurred with access to medicine storage keys 'very frequently' or 'frequently'. Twenty-eight (52.8%) respondents 'agreed' or 'strongly agreed' that medicines were quickly accessed, which rose to 41 (77%) post-automation (P &lt; 0.001). Improvement was reported in stock replenishment and storage of stock injections and oral medicines, but there were mixed opinions regarding storage of bulk fluids and refrigerated items. Twenty-seven (51.9%) staff reported access to the system within 1 min and 17 (32.7%) staff reported access within 1-2 min. The majority of staff found the system 'easy' or 'very easy' to use and there was a non-significant relationship between previous use of information technology and acceptance of the system. From a staff satisfaction perspective, automation improved medicines storage, security and stock control, and addressed the problem of searching for keys to storage areas. Concerns over familiarity with computers, queuing, speed of access and an improved audit trail do not appear to have been issues, when compared with the previous manual storage of medicines."	"Word and pseudoword superiority effects reflected in the ERP waveform. A variant of the Reicher-Wheeler task was used to determine when in the event-related potential (ERP) waveform indices of word and pseudoword superiority effects might be present, and whether ERP measures of superiority effects correlated with standardized behavioral measures of orthographic fluency and single word reading. ERPs were recorded to briefly presented, masked letter strings that included real words (DARK/PARK), pseudowords (DARL/PARL), nonwords (RDKA/RPKA), and letter-in-xs (DXXX, PXXX) stimuli. Participants decided which of two letters occurred at a given position in the string (here, forced-choice alternatives D and P). Behaviorally, both word (more accurate choices for letters in words than in baseline nonwords or letter-in-xs) and pseudoword (more accurate choices for letters in pseudowords than in baseline conditions) superiority effects were observed. Electrophysiologically, effects of orthographic regularity and familiarity were apparent as early as the P150 time window (100-160ms), an effect of lexicality was observed as early as the N200 time window (160-200ms), and peak amplitude of the N300 and N400 also differentiated word and pseudoword as compared to baseline stimuli. Further, the size of the P150 and N400 ERP word superiority effects was related to standardized behavioral measures of fluency and reading. Results suggest that orthographic fluency is reflected in both lower-level, sublexical, perceptual processing and higher-level, lexical processing in fluently reading adults."	"Sorafenib in combination with carboplatin and paclitaxel as neoadjuvant chemotherapy in patients with advanced ovarian cancer. Sorafenib is a novel oral anticancer agent targeting signal transduction and angiogenic pathways through inhibitory effects against MAP kinases and vascular endothelial growth factor receptor-2. The objectives of this neoadjuvant phase II-trial in patients with advanced epithelial ovarian cancer were to assess the activity and tolerability of the combination therapy of carboplatin/paclitaxel with multi-target tyrosine kinase inhibitor sorafenib. Patients with histologically proven stage IIIC or IV disease and large volume ascites were eligible. Enrolled patients received 2 of 6 cycles carboplatin (area under the curve 5) and paclitaxel (175 mg/m(2)) preoperatively and concomitant sorafenib 400 mg twice daily. After four cycles of postoperative chemotherapy, a maintenance phase of single agent oral sorafenib through 1 year was planned. This phase II-study was planned with a sample size of 102 patients and progression-free survival as primary study endpoint. Four patients were enrolled. After preoperative treatment and cytoreductive surgery, all patients were excluded from protocol due to severe toxicities. Three patients had life threatening events (cardiac output failure, myocardial infarction, anastomotic leak); two patients had primary progressive disease. The study was terminated on the basis of the recommendation of an independent data safety monitoring board. The addition of sorafenib to carboplatin/paclitaxel chemotherapy was not feasible within this neoadjuvant regimen in primary advanced ovarian cancer. Although the occurrence of serious adverse events might have emerged at random, a detrimental effect of preoperative study medication could not be denied. Further evaluations of sorafenib in ovarian cancer are warranted."	"Synthesis and luminescence properties of two novel lanthanide (III) perchlorate complexes with bis(benzoylmethyl) sulfoxide and benzoic acid. Two novel ternary rare earth complexes of Tb(III) and Dy(III) perchlorates with bis(benzoylmethyl) sulfoxide (L) and benzoic acid (L') had been synthesized and characterized by elemental analysis, coordination titration analysis, molar conductivity, IR, TG-DSC, (1)HNMR and UV spectra. The results indicated that the composition of these complexes was REL(5)L'(ClO(4))(2) x nH(2)O (RE = Tb(III), Dy(III); L = C(6)H(5)COCH(2)SOCH(2)COC(6)H(5), L' = C(6)H(5)COO; n = 6,8). The fluorescence spectra illustrated that the ternary rare earth complexes presented stronger fluorescence intensities, longer lifetimes and higher fluorescence quantum efficiencies than the binary rare earth complexes REL(5) x (ClO(4))(3) x 2 H(2)O. After the introduction of the second ligand benzoic acid group, the relative fluorescence emission intensities and fluorescence lifetimes of the ternary complexes REL(5)L'(ClO(4))(2) x nH(2)O (RE = Tb(III), Dy(III)) enhanced more obviously than the binary complexes. This indicated that the presence of both organic ligands bis(benzoylmethyl) sulfoxide and the second ligand benzoic acid could sensitize fluorescence intensities of rare earth ions, and the introduction of benzoic acid group was resulted in the enhancement of the fluorescence properties of the ternary rare earth complexes. The phosphorescence spectra were also discussed."	"The association between church attendance and psychological health in Northern Ireland: a national representative survey among adults allowing for sex differences and denominational difference. This study extends previous research concerning the association between religion and psychological health in six ways: (1) by focusing clearly on religious attendance (church attendance); (2) by employing a robust measure of psychological distress (GHQ-12); (3) by studying a highly religious culture (Northern Ireland); (4) by taking sex differences into account (male or female); (5) by taking denominational differences into account (Catholic or Protestant); (6) and by obtaining a national representative sample (N = 4,281 adults aged 16 and above). Results from a 2 (sex) by 2 (denomination) ANCOVA demonstrated that Catholics recorded significantly lower levels of psychological health compared to Protestants, and that females showed significantly lower levels of psychological health compared to males. In addition, females reported higher frequency of religious service attendance than males, and Catholics reported higher attendance rates than Protestants. A significant positive association was found between frequency of religious attendance and GHQ-12 scores, and this association was moderated by sex and denomination. In conclusion, the results suggest that there may be sex and denominational differences in further understanding the relationship between frequency of religious attendance and psychological health."	"CTP (Cochlin-tomoprotein) detection in the profuse fluid leakage (gusher) from cochleostomy. By testing 125 samples, we confirmed that Cochlin-tomoprotein (CTP) is present in the perilymph, not in cerebrospinal fluid (CSF). Perilymph and CSF exist in two distinct compartments, even in the case of a malformed inner ear with a bony defect in the lamina cribrosa, as described here. Cochleostomy might have suddenly decreased the perilymph pressure, allowing the influx of CSF into the inner ear resulting in profuse fluid leakage, first perilymph then CSF. The first purpose of this study was to further confirm the specificity of the perilymph-specific protein CTP that we reported recently. Secondly, we assessed the nature of the fluid leakage from the cochleostomy using the CTP detection test. A standardized CTP detection test was performed on 65 perilymph and 60 CSF samples. Samples of profuse fluid leakage collected from cochleostomy during cochlear implantation surgery of one patient with branchio-oto-renal (BOR) syndrome were also tested by the CTP detection test. CTP was detected in 60 of 65 perilymph samples but not in any of the CSF samples. The leaked fluid was shown to contain CTP, i.e. perilymph, at the outset, and then the CTP detection signals gradually disappeared as time elapsed."	"Proteomics, bioinformatics and targeted gene expression analysis reveals up-regulation of cochlin and identifies other potential biomarkers in the mouse model for deafness in Usher syndrome type 1F. Proteins and protein networks associated with cochlear pathogenesis in the Ames waltzer (av) mouse, a model for deafness in Usher syndrome 1F (USH1F), were identified. Cochlear protein from wild-type and av mice at postnatal day 30, a time point in which cochlear pathology is well established, was analyzed by quantitative 2D gel electrophoresis followed by mass spectrometry (MS). The analytic gel resolved 2270 spots; 69 spots showed significant changes in intensity in the av cochlea compared with the control. The cochlin protein was identified in 20 peptide spots, most of which were up-regulated, while a few were down-regulated. Analysis of MS sequence data showed that, in the av cochlea, a set of full-length isoforms of cochlin was up-regulated, while isoforms missing the N-terminal FCH/LCCL domain were down-regulated. Protein interaction network analysis of all differentially expressed proteins was performed with Metacore software. That analysis revealed a number of statistically significant candidate protein networks predicted to be altered in the affected cochlea. Quantitative PCR (qPCR) analysis of select candidates from the proteomic and bioinformatic investigations showed up-regulation of Coch mRNA and those of p53, Brn3a and Nrf2, transcription factors linked to stress response and survival. Increased mRNA of Brn3a and Nrf2 has previously been associated with increased expression of cochlin in human glaucomatous trabecular meshwork. Our report strongly suggests that increased level of cochlin is an important etiologic factor leading to the degeneration of cochlear neuroepithelia in the USH1F model."	"New, simple synthetic route to functional mono- and biferrocenes. Visible-light photolysis using a simple 100 W lamp of the readily available precursors [(eta(5)-C(5)H(4)R)Fe(eta(6)-toluene)][PF(6)] (R = H, Me, Cl, COMe, CO(2)H, CO(2)Me, CO(2)CH(2)CCH, CONHCH(2)Ph, NHCH(2)Ph), or the bimetallic precursor [(mu(2),eta(5),eta'(5)-Fv)Fe(2)(eta(6)-toluene)(2)][PF(6)](2) (Fv = fulvalene) in the presence of a substituted cyclopentadienyl salt C(5)H(4)R'M (R' = COCH(3), CO(2)CH(3), PPh(2), SiMe(2)CH(2)Cl; M = Li or Na) or the dicyclopentadienyl salt 1,4-C(6)H(4)(CH(2)C(5)H(4))(2)Na(2) in dichloromethane, acetonitrile, or tetrahydrofuran under ambient conditions selectively yields 15 functional mono- and biferrocenes."	"Users' perspectives on the benefits of FM systems with cochlear implants. This study explored: (1) the benefits of an FM system in real-world environments from the perspective of adults with coch-lear implants, and (2) the factors and barriers to using an FM system with a cochlear implant. Using a qualitative research design, 14 adults with unilateral cochlear implants recorded their experiences during a two-month trial period with a personal FM system and responded to a questionnaire at the end of the trial. A detailed analysis of 169 journal entries (230 hours of FM use) permitted a description of the benefits and negative aspects associated with FM use in everyday listening environments. The primary benefits were related to improved access to and quality of sound, improved distance listening, ease of listening, and better social integration. Negative perceptions were associated with the equipment both with regard to physical aspects and adjustments. In addition, technical, individual, social, and environmental factors were identified that can influence the user's decision to use the FM device. Questionnaire responses indicated that the majority of individuals rated the FM system as somewhat or very helpful. The findings suggest that FM systems can improve communication in everyday listening environments for some adults with cochlear implants."	"Synthesis, substitution kinetics, and electrochemistry of the first tetrathiafulvalene-containing beta-diketonato complexes of rhodium(I). The synthesis of the first rhodium(I) cyclooctadiene complexes containing tetrathiafulvalene (TTF) groups substituted on a beta-diketonato ligand in either the methine position (3 position), [Rh(cod)(H(3)CCOC{S-TTF-(MeS)(3)}COCH(3))] (3), or terminal position (1 position), [Rh(cod){(Me(3)-TTF)COCHCOCH(3)}] (4), is reported. The effect of the beta-diketonato substitution position on the kinetics of substitution of the TTF-containing beta-diketonato ligand with 1,10-phenanthroline from 3 and 4 to give [Rh(cod)(phen)](+), as well as on the electrochemical properties of 3 and 4, was investigated. Second-order substitution rate constants, k(2), in methanol were found to be almost independent of the substitution position, with 4 (k(2) = 2.09 x 10(3) dm(3) mol(-1) s(-1)) reacting only about twice as fast as 3. An appreciable solvent pathway in the substitution mechanism was only observed for 4 with k(s) = 42 s(-1). A complete mechanism for both substitution reactions is proposed. The electrochemistry of 3 and 4 in CH(2)Cl(2)/0.10 mol dm(-3) [N((n)Bu)(4)][B(C(6)F(5))(4)] showed three redox processes. Two of these were electrochemically reversible and are associated with the redox-active TTF group. For 3, TTF-based formal reduction potentials, E degrees', were observed at 0.082 and 0.659 V vs Fc/Fc(+), respectively; 4 exhibited them at -0.172 and 0.703 V vs Fc/Fc(+) at a scan rate of 100 mV s(-1). A Rh(II)/Rh(I) redox couple was observed at E degrees' = 0.89 V for 3, after both TTF oxidations were completed, and at 0.51 V for 4; this is between the two TTF redox processes. The more difficult oxidation of the Rh(I) center of 3 indicates more effective electron-withdrawing from the Rh(I) center to the first-oxidized TTF(+) group at the methine position of the beta-diketonato ligand of 3(+) than to the terminal-substituted TTF(+) group in 4(+)."	"(Z)-1-Phenyl-3-(3-pyridyl-meth-ylamino)-but-2-en-1-one. The reaction of 3-C(5)H(4)NCH(2)NH(2) and C(6)H(5)COCH(2)COCH(3) affords the title compound, C(16)H(16)N(2)O. The O=C-C=C-N portion is essentially planar [maximum deviation = 0.046 (2) Å] and is aligned at dihedral angles of 22.6 (1) and 78.9 (1)° to the phenyl and pyridyl rings, respectively. The N-H and O=C groups are linked by an intra-molecular hydrogen bond. In the crystal, C-H⋯O hydrogen bonds and C-H⋯π inter-actions occur."	"355 nm multiphoton dissociation and ionization of 2, 5-dihydroxyacetophenone. Multiphoton dissociation and ionization of 2,5-dihydroxyacetophenone (DHAP), an important matrix compound in UV matrix-assisted laser desorption/ionization (MALDI), is studied in a molecular beam at 355 nm using multimass ion imaging mass spectrometer and time-of-flight mass spectrometry. For laser fluence larger than 130 mJ/cm(2), nearly all of the irradiated molecules absorb at least one photon. The absorption cross section was found to be sigma = 1.3(+/-0.2) x 10(-17)cm(2). Molecules excited by two photons quickly dissociate into fragments. The major channels are (1) C(6)H(3)(OH)(2)COCH(3) --&gt; C(6)H(3)(OH)(2)CO + CH(3) and (2) C(6)H(3)(OH)(2)COCH(3) --&gt; C(6)H(3)(OH)(2) + COCH(3). Molecules absorbing three or more photons become parent ions or crack into smaller ionic fragments. The concentration ratio of ions (parent ions and ionic fragments) to neutral fragments is about 10(-6):1. Changing the molecular beam carrier gas from He at 250 Torr to Ar at 300 Torr results in molecular beam clustering (dimers and trimers). Multiphoton ionization of clusters by a 355 nm laser beam produces only dimer cations, (C(6)H(3)(OH)(2)COCH(3))(2)(+). Protonated clusters or negatively charged ions, observed from a solid sample of DHAP using 355 nm multiphoton ionization, were not found in the molecular beam. The experimental results indicate that the photoionization occurs in the gas phase after DHAP vaporizes from the solid phase may not play an important role in the MALDI process."	"Cucurbit[7]uril host-guest complexes of cholines and phosphonium cholines in aqueous solution. The neutral host cucurbit[7]uril forms very stable complexes with a series of cationic cholines (R(3)NCH(2)CH(2)OR'(+)) and their phosphonium analogues (R(3)PCH(2)CH(2)OR'(+)) (R(3) = Me(3), Et(3), or Me(2)Bz, or R(3)N = quinuclidinium, and R' = H, COCH(3), CO(CH(2))(2)CH(3), or PO(3)H), and (+/-)-carnitine, in aqueous solution. The complexation behaviour has been investigated using (1)H and (31)P NMR spectroscopies, and ESI mass spectrometry. The complexation-induced chemical shift changes of the guests clearly indicate the effects of replacing the N(CH(3))(3)(+) end group by P(CH(3))(3)(+), and changing the nature of R on the position of the guest with respect to the CB[7] cavity and its polar portal-lining carbonyl groups. This study demonstrates that molecular recognition of cholines in aqueous solution is achievable with a neutral host without the need for aromatic walls for cation-pi interactions."	"Synthesis and biological studies of some gold(I) complexes containing functionalised alkynes. The propargyl ethers 7-chloro-(4-propargyloxy)quinoline, 1-propargyloxynaphthalene and 2-propargyloxybenzophenone react with [AuCl(PPh(3))] in the presence of KOH to give the gold(I) alkynyl complexes [Au(C[triple bond]COCH(2)Ar)(PPh(3))] in good yields. The compounds were fully characterised by spectroscopic methods and were subsequently examined for their biological activity against four tumour cell lines as well as their activity against Plasmodium falciparum, the parasite responsible for malaria. The compounds show antiproliferative effects in human cancer cells with IC(50) values ranging from 0.4-12 microM."	"COCH transgene expression in cultured human trabecular meshwork cells and its effect on outflow facility in monkey organ cultured anterior segments. Purpose. To determine the effects of COCH transgene expression on cultured human trabecular meshwork (HTM) cell morphology and on outflow facility (OF) in monkey organ cultured anterior segments (MOCAS). Methods. An adenoviral (Ad) vector expressing both cochlin (COCH) and green fluorescent protein (GFP) (AdCOCHGFP) or GFP alone (AdGFP) was used to transduce cultured HTM cells (multiplicity of transduction, 2.8 and 28). COCH transgene expression in transduced HTM cells and the culture medium was verified by Western blot analysis and immunofluorescence detection 5 days after transduction. MOCAS were used to test the effect of Ad vectors (2.8 x 10(10) viral particles per segment) on OF. The morphology of transduced MOCAS was evaluated by light microscopy. Results. Western blot analysis showed a viral vector dose-dependent expression of cochlin in transduced cells and the culture medium. There was no notable morphologic change in transduced cells. In MOCAS, cochlin expression was detectable in the medium by 3 days after transduction. A 35% decrease in OF in AdCOCHGFP-transduced MOCAS was detected after 3 days, decreasing by 76% after 12 days when compared to control segments injected with AdGFP. Anterior segment pressure (ASP) more than doubled (P &lt; 0.05) in segments injected with AdCOCHGFP at 12 days after transduction. Light microscopy revealed normal angle structures in transduced segments. Conclusions. Ad vector delivery of the COCH transgene resulted in cochlin expression in HTM cells and MOCAS. Cochlin expression was effective in decreasing OF and increasing ASP in MOCAS, suggesting possible involvement of cochlin in IOP elevation in vivo. COCH gene delivery has potential for use in developing a glaucoma model."	"6-2 Fluorotelomer alcohol aerobic biodegradation in soil and mixed bacterial culture. The first studies to explore 6-2 fluorotelomer alcohol [6-2 FTOH, F(CF(2))(6)CH(2)CH(2)OH] aerobic biodegradation are described. Biodegradation yields and metabolite concentrations were determined in mixed bacterial culture (90d) and aerobic soil (180d). 6-2 FTOH primary degradation half-life was less than 2d in both. The overall mass balance in mixed bacterial culture (day 90) was approximately 60%. At day 90, the molar yield was 6% for 6-2 FTA [F(CF(2))(6)CH(2)COOH], 23% for 6-2 FTUA [F(CF(2))(5)CFCHCOOH], 16% for 5-2 sFTOH [F(CF(2))(5)CHOHCH(3)], 6% for 5-3 acid [F(CF(2))(5)CH(2)CH(2)COOH], and 5% for PFHxA [F(CF(2))(5)COOH]. The overall mass balance in aerobic soil was approximately 67% (day 180). At day 180, the major terminal metabolites were PFPeA, [F(CF(2))(4)COOH, 30%], PFHxA (8%), PFBA [F(CF(2))(3)COOH, 2%], and 5-3 acid (15%). A new metabolite 4-3 acid [F(CF(2))(4)CH(2)CH(2)COOH] accounted for 1%, 6-2 FTOH for 3%, and 5-2 sFTOH for 7%. Based on 8-2 FTOH aerobic biodegradation pathways, PFHxA was expected in greatest yield from 6-2 FTOH degradation. However, PFPeA was observed in greatest yield in soil, suggesting a preference for alternate degradation pathways. Selected metabolites were also studied in aerobic soil. 5-3 Acid degraded to only 4-3 acid with a molar yield of 2.3%. 5-2 sFTOH degraded to PFPeA and PFHxA, and 5-2 FT Ketone [F(CF(2))(5)COCH(3)] degraded to 5-2 sFTOH, suggesting that 5-2 sFTOH is the direct precursor to PFPeA and PFHxA. Another new metabolite, 5-3 ketone aldehyde [F(CF(2))(5)COCH(2)CHO] was also identified in mixed bacterial culture. The formation of PFBA, PFPeA, and 4-3 acid indicates that multiple -CF(2)- groups in 6-2 FTOH were removed during microbial biodegradation."	"The studies of enhanced fluorescence in the two novel ternary rare-earth complex systems. Two novel ternary rare-earth complexes SmL(5).L'.(ClO(4))(2).7H(2)O and EuL(5).L'.(ClO(4))(2).6H(2)O (the first ligand L = C(6)H(5)COCH(2)SOCH(2)COC(6)H(5), the second ligand L' = C(6)H(4)OHCOO(-)) were synthesized and characterized by element analysis, molar conductivity, coordination titration analysis, IR, TG-DSC, (1)HNMR and UV spectra. The detailed luminescence studies on the rare-earth complexes showed that the ternary rare-earth complexes presented stronger fluorescence intensities, longer lifetimes, and higher fluorescence quantum efficiencies than the binary rare-earth materials. After the introduction of the second ligand salicylic acid group, the relative emission intensities and fluorescence lifetimes of the ternary complexes LnL(5).L'.(ClO(4))(2).nH(2)O (Ln = Sm, Eu; n=7, 6) enhanced more obviously than the binary complexes LnL(5).(ClO(4))(3).2H(2)O. This indicated that the presence of both organic ligand bis(benzoylmethyl) sulfoxide and the second ligand salicylic acid could sensitize fluorescence intensities of rare-earth ions, and the introduction of salicylic acid group was a benefit for the fluorescence properties of the ternary rare-earth complexes. The fluorescence spectra, fluorescence lifetime and phosphorescence spectra were also discussed."	"Ultrastructural localization of cochlin in the rat cochlear duct. Cochlin, a product of the COCH gene, is a major constituent of the inner ear extracellular matrix. Type II collagen, a protein that contributes to structural stability, is also a component of this extracellular matrix. In this study, using the postembedding immunogold method, we demonstrate the localization of cochlin and type II collagen in the cochlear duct at the ultrastructural level. The immunolabeling of cochlin was observed in the fibrillar substance in the spiral limbus, beneath the inner sulcus cells, and in the basilar membrane, the spiral prominence and the spiral ligament. Immunolabeling of type II collagen was observed in the same fibrillar substance in the extracellular matrix of the cochlear duct. This localization of cochlin is consistent with the expected localization of type II collagen. The localization of cochlin and type II collagen indicates the important roles played by these proteins in the hearing process."	"Theoretical study on the reaction of Ti+ with acetone and the role of intersystem crossing. Ti(+) is known to react with acetone (CH(3)COCH(3)) to produce TiO(+) and CH(2)CHCH(3) as products, but the detailed reaction mechanism and the most favorable reaction pathway have not yet been elucidated. Here, we investigate the doublet and quartet potential-energy surfaces associated with the gas-phase reaction between Ti(+) and acetone for three plausible pathways, (i) direct metal-ion insertion into the C=O bond, (ii) direct H shift, and (iii) metal-mediated H migration, by using the density functional theory (DFT) and ab initio methods. The molecular structures of intermediates and transition states involved in these reaction pathways are optimized at the DFT level by using the PBE0 functional. All transition states are identified by using the intrinsic reaction coordinate (IRC) method, and the resulting reaction coordinates describe how Ti(+) activates the C=O bond of CH(3)COCH(3) (acetone) and yields TiO(+) and CH(2)CHCH(3) (propene) as products. The intersystem crossing (ISC) point is optimized by a multireference ab initio method, and spin-orbit effects are considered around the ISC point. On the basis of the presented results, we propose that the most favorable reaction pathway proceeds via the direct metal-ion insertion into the C=O bond and passes through an ISC point."	"Bimetallic complexes based on carboxylate and xanthate ligands: synthesis and electrochemical investigations. The homobimetallic ruthenium(II) and osmium(II) complexes [{RuR(CO)(PPh(3))(2)}(2)(S(2)COCH(2)C(6)H(4)CH(2)OCS(2))] (R = CH=CHBu(t), CH=CHC(6)H(4)Me-4, C(C[triple bond]CPh)=CHPh, CH=CHCPh(2)OH) and [{Os(CH=CHC(6)H(4)Me-4)(CO)(PPh(3))(2)}(2)(S(2)COCH(2)C(6)H(4)CH(2)OCS(2))] form readily from the reactions of [MRCl(CO)(BTD)(PPh(3))(2)] (M = Ru or Os; BTD = 2,1,3-benzothiadiazole) with the dixanthate KS(2)COCH(2)C(6)H(4)CH(2)OCS(2)K. Addition of KS(2)COCH(2)C(6)H(4)CH(2)OCS(2)K to two equivalents of cis-[RuCl(2)(dppm)(2)] leads to the formation of [{(dppm)(2)Ru}(2)(S(2)COCH(2)C(6)H(4)CH(2)OCS(2))](2+). The benzoate complexes [RuR{O(2)CC(6)H(4)(CH(2)OH)-4}(CO)(PPh(3))(2)] (R = CH=CHBu(t), CH=CHC(6)H(4)Me-4, C(C[triple bond]CPh)=CHPh) are obtained by treatment of [RuRCl(CO)(BTD)(PPh(3))(2)] with 4-(hydroxymethyl)benzoic acid in the presence of base. Reaction of [RuHCl(CO)(PPh(3))(3)] or [RuRCl(CO)(BTD)(PPh(3))(2)] with 4-(hydroxymethyl)benzoic acid in the absence of base leads to formation of the chloride analogue [RuCl{O(2)CC(6)H(4)(CH(2)OH)-4}(CO)(PPh(3))(2)]. The unsymmetrical complex [{Ru(CH=CHC(6)H(4)Me-4)(CO)(PPh(3))(2)}(2)(O(2)CC(6)H(4)CH(2)OCS(2))] forms from the sequential treatment of [Ru(CH=CHC(6)H(4)Me-4){O(2)CC(6)H(4)(CH(2)OH)-4}(CO)(PPh(3))(2)] with base, CS(2) and [Ru(CH=CHC(6)H(4)Me-4)Cl(CO)(BTD)(PPh(3))(2)]. The new mixed-donor xanthate-carboxylate ligand, KO(2)CC(6)H(4)CH(2)OCS(2)K is formed by treatment of 4-(hydroxymethyl)benzoic acid with excess KOH and two equivalents of carbon disulfide. This ligand reacts with two equivalents of [Ru(CH=CHC(6)H(4)Me-4)Cl(BTD)(CO)(PPh(3))(2)] or cis-[RuCl(2)(dppm)(2)] to yield [{(dppm)(2)Ru}(2)(O(2)CC(6)H(4)CH(2)OCS(2))](2+) or [{Ru(CH=CHC(6)H(4)Me-4)(CO)(PPh(3))(2)}(2)(O(2)CC(6)H(4)CH(2)OCS(2))], respectively. Electrochemical experiments are also reported in which communication between the metal centres is investigated."	"Observation of magnetic bistability in polymorphs of the [Ni(dmit)(2)](-) complexes. Four ion-pair complexes of [Ni(dmit)(2)](-) with [NO(2)bzql](+) have been obtained, which belong to two kinds of polymorph forms, [NO(2)bzql][Ni(dmit)(2)] (1alpha and 1beta) and [NO(2)bzql][Ni(dmit)(2)].CH(3)COCH(3) (2alpha and 2beta) (where dmit = 2-thioxo-1,3-dithiole-4,5-dithiolate and [NO(2)bzql](+) = 1-(4-nitrobenzyl)quinolinium). Though 1alpha, 2alpha, and 2beta all show anionic dimerization structures at room temperature, they have different anionic and cationic arrangement fashions, which give rise to different magnetic behaviors for these polymorphs or pseudo-polymorphs. Compounds 1alpha, 1beta, and 2alpha exhibit magnetic bistabilities. In particular, 1alpha has a hysteretic loop at approximately 55 K, while 2beta does not display a spin transition in the 2-300 K range. On the basis of the crystal structure data of 2alpha in high- and low-temperature phases, the magnetic coupling feature within the [Ni(dmit)(2)](-) spin dimer was explored with the broken-symmetry approach at the UBPW91/LANL2DZ level; combined with the experimental data and theoretical analyses, the relationship between the magnetic coupling nature and the stacking pattern of [Ni(dmit)(2)](-) anions as well as the origin of the phase interconversion are discussed."	"Acceptance of genitourinary medicine clinic appointments within 48 hours is influenced by patient perception of risk but not by symptoms. The Department of Health has addressed access to genitourinary medicine services by setting targets that 100% of patients should be offered an appointment within 48 hours of contact and 95% should be seen within 48 hours. Such rapid access appointments are often declined by patients. We wished to ascertain whether patient perception of health risk or the presence of symptoms suggestive of a sexually transmitted infection (STI) might influence how quickly patients accept an appointment. We designed a two-armed study which demonstrated that up to 37% of patients offered an appointment within 48 hours declined it, with work commitments offered by 84% of these patients as the reason for deferring attendance. The presence of symptoms did not influence whether patients accepted an early appointment, however the patient's perception of health risk associated with an untreated STI was statistically significantly associated with earlier attendance (P &lt; 0.0001). Increased public education regarding the consequences of untreated STI may therefore improve the acceptance by patients of appointments within 48 hours."	"Expression of cochlin mRNA splice variants in the inner ear. Proteomic analysis of inner ear proteins revealed unique properties of cochlin, encoded by the COCH gene. We detected 3 cochlin isoforms, p63s, p44s and p40s, in the inner ear tissue and a short 16-kDa isoform, cochlin-tomoprotein (CTP), in the perilymph. The role of the cochlin isoforms has not been elucidated. To improve our understanding of the mechanism of cochlin isoform expression, we investigated rat cochlin mRNA expression in the inner ear and other organs. We performed RNA-ligation-mediated amplification of cDNA ends (RLM-RACE) using RNA isolated from the inner ear and spleen of rats, which are known to express abundant cochlin mRNA. We also examined the expression profile of full-length cochlin mRNA by nested RT-PCR in the cerebrum, cerebellum/brain stem, eye, inner ear, thyroid gland, thymus gland, lung, heart, liver, spleen, adrenal gland, kidney and blood. We verified CTP expression in rat perilymph by Western blot. By RLM-RACE, alternately spliced variants of cochlin mRNA with 3 different lengths were detected (2442, 2008 and 724 bp). The two longer mRNAs encode full-length cochlin with different polyadenylation signals in the 3'-untranslated region, which are expressed both in the ear and spleen. The short variant encodes the limulus factor C, cochlin, late gestation lung protein (LCCL) domain and the N-terminal sequence of the von Willebrand factor A (vWFA1) domain, and this variant was detected only in the ear. All 3 variants have the same transcriptional start site. By RT-PCR, we found that full-length cochlin was expressed in all organs examined, with a splice variant in the heart. By Western blot, we detected short isoforms (11-17 kDa) in the perilymph. Cochlin isoform formation is regulated, at least in part, by alternative splicing at the transcriptional level. The short mRNA was detected only in the inner ear, and this variant may provide a clue to understanding the formation and function of cochlin isoforms."	"Higher activation of TLR9 in plasmacytoid dendritic cells by microbial DNA compared with self-DNA based on CpG-specific recognition of phosphodiester DNA. TLR9 detects DNA in endolysosomal compartments of human B cells and PDC. Recently, the concept of the CpG motif specificity of TLR9-mediated detection, specifically of natural phosphodiester DNA, has been challenged. Unlike in human B cells, CpG specificity of natural phosphodiester DNA recognition in human PDC has not been analyzed in the literature. Here, we found that the induction of IFN-alpha and TNF-alpha in human PDC by phosphodiester ODNs containing one or two CG dinucleotides was reduced to a lower level when the CG dinucleotides were methylated and was abolished if the CGs were switched to GCs. Consistent with a high frequency of unmethylated CG dinucleotides, bacterial DNA induced high levels of IFN-alpha in PDC; IFN-alpha was reduced but not abolished upon methylation of bacterial DNA. Mammalian DNA containing low numbers of CG dinucleotides, which are frequently methylated, induced IFN-alpha in PDC consistently but on a much lower level than bacterial DNA. For activation of PDC, phosphodiester ODNs and genomic DNA strictly required complexation with cationic molecules such as the keratinocyte-derived antimicrobial peptide LL37 or a scrambled derivative. In conclusion, we demonstrate that self-DNA complexed to cationic molecules activate PDC and thus, indeed, may function as DAMPs; nevertheless, the preference of PDC for CpG containing DNA provides the basis for the discrimination of microbial from self-DNA even if DNA is presented in the condensed form of a complex."	"Regulation of replicative and stress-induced senescence by RSK4, which is down-regulated in human tumors. The control of senescence and its biochemical pathways is a crucial factor for understanding cell transformation. In a large RNA interference screen, the RSK4 gene was found to be related to p53-dependent arrest. The purpose of the present study was to investigate the potential role of RSK4 as a tumor suppressor gene. RSK4 expression was determined by quantitative real-time PCR and immunoblot in 30 colon and 20 renal carcinomas, and in 7 colon adenomas. Two HCT116 colon carcinoma cell lines (p53 wt and p53 null), IMR90 human fibroblasts, and E1A-expressing IMR90 cells were infected with RSK4 cDNA and/or shRNA. RSK4 expression levels were analyzed in HCT116 p53 wt or p53 null and IMR90 after senescence induction by quantitative real-time PCR and Western blot. The RSK4 gene was down-regulated in 27 of 30 colon carcinomas (P &lt; 0.001), 16 of 20 renal cell carcinomas (P &lt; 0.01), and 6 of 7 colon adenomas (P &lt; 0.01). In vitro overexpression of RSK4 induced cell arrest and senescence features in normal fibroblasts and malignant colon carcinoma cell lines. Interestingly, in these cell lines RSK4 mRNA levels were increased both in replicative and stress-induced senescence. Moreover, IMR90 partially immortalized by RSK4 shRNA and HCT116 with this short hairpin RNA were more resistant to cisplatin treatment. Finally, cells expressing E1A or Rb short interfering RNA were resistant to RSK4-mediated senescence. These results support the concept that RSK4 may be an important tumor suppressor gene by modulating senescence induction and contributing to cell proliferation control in colon carcinogenesis and renal cell carcinomas."	"Chemical synthesis of 6(GlcNAc)- and 6(Gal)-O-sulfated SiaLe(X) tetrasaccharides in spacer-armed form. Practical synthesis of tetrasaccharide sulfates, 6((GlcNAc))-O-Su-SiaLe(X)-OCH(2)CH(2)CH(2)NH(2) and 6((Gal))-O-Su-SiaLe(X)-OCH(2)CH(2)CH(2)NH(2) (Su( )SO(3)H), selectin ligands, and leu- kocyte trafficking agents is presented. Both sulfates were synthesized starting from the same precursor, protected SiaLe(x), by the conventional procedures of carbohydrate chemistry. The sulfated SiaLe(x) derivative was modified at the spacer group to give 6((Gal))-O-Su-SiaLe(x)- OCH(2)CH(2)CH(2)NH-COCH(2)CH(2)C[triple bond]CH, convenient for &quot;click chemistry&quot; mode conjugation with an azido carrier, particularly, for the synthesis of an immunogen."	"Recognition of 5' triphosphate by RIG-I helicase requires short blunt double-stranded RNA as contained in panhandle of negative-strand virus. Antiviral immunity is triggered by immunorecognition of viral nucleic acids. The cytosolic helicase RIG-I is a key sensor of viral infections and is activated by RNA containing a triphosphate at the 5' end. The exact structure of RNA activating RIG-I remains controversial. Here, we established a chemical approach for 5' triphosphate oligoribonucleotide synthesis and found that synthetic single-stranded 5' triphosphate oligoribonucleotides were unable to bind and activate RIG-I. Conversely, the addition of the synthetic complementary strand resulted in optimal binding and activation of RIG-I. Short double-strand conformation with base pairing of the nucleoside carrying the 5' triphosphate was required. RIG-I activation was impaired by a 3' overhang at the 5' triphosphate end. These results define the structure of RNA for full RIG-I activation and explain how RIG-I detects negative-strand RNA viruses that lack long double-stranded RNA but do contain blunt short double-stranded 5' triphosphate RNA in the panhandle region of their single-stranded genome."	"Ethical psychiatry in an uncertain world: conversations and parallel truths. Psychiatric practice is often faced with complex situations that seem to pose serious moral dilemmas for practitioners. Methods for solving these dilemmas have included the development of more objective rules to guide the practitioner such as utilitarianism and deontology. A more modern variant on this objective model has been 'Principlism' where 4 mid level rules are used to help solve these complex problems. In opposition to this, there has recently been a focus on more subjective criteria for resolving complex moral dilemmas. In particular, virtue ethics has been posited as a more sensitive method for helping doctors to reason their way through difficult ethical issues. Here the focus is on the character traits of the practitioner. Bloch and Green advocated another way whereby more objective methods such as Principlism and virtue ethics are combined to produce what they considered sound moral reasoning in psychiatrists. This paper points out some difficulties with this approach and instead suggests that a better model of ethical judgment could be developed through the use of narratives or stories. This idea puts equal prima facie value on the patient's and the psychiatrist's version of the dilemma they are faced with. It has the potential to lead to a more genuine empathy and reflective decision-making."	"Effect of a pathway bundle on length of stay. Pathways to guide clinical care are well accepted and used in many emergency departments. We wanted to introduce a number (&quot;bundle&quot;) over a short space of time and involve the whole patient stay in the pathway. It was hypothesised that a more efficient process would result with an overall reduction in length of stay (LoS). A &quot;bundle&quot; of 14 evidence-based pathways of care was introduced into a medium-sized district general hospital (DGH) in late 2006/early 2007. These pathways covered emergency department care and acute medical care for a period of up to 48 h. A total of 8184 acute emergency admission episodes were audited, 3852 in the 8 months before introduction of the new pathways and 4332 in the 8 months after their introduction. The overall effect of introducing the pathway bundle had a trend towards reduction in LoS by 0.2 days (95% CI -0.2 to 0.5), but this was not statistically significant (p&gt;0.1). However, in those patients with &lt;/=2 diagnoses, the introduction of the pathway bundle had an independent effect in reducing LoS by 0.4 days (95% CI 0.04 to 0.7, p&lt;0.01). In patients with &lt;/=2 diagnoses (63.0% of all pre-pathway cases and 63.4% of all post-pathway cases), the reduction in LoS equates to a saving of 2154 (CI 215 to 3769) bed days per annum or 5.9 (CI 0.6 to 10.3) beds saved each day. This reduced LoS represents an improvement of 2.5% (CI 0.25% to 4.38%) in medical bed usage. As this benefit occurs in the uncomplicated group of patients without multiple co-morbidities, such pathways would have the most effect in the type of patients who may be looked after by an emergency or acute physician. They are much less likely to be effective in those who require specialist intervention due to a more complicated presentation and possibly those with multiple co-morbidities. The introduction of a bundle of evidence-based care pathways can modestly reduce LoS for certain types of acute medical patients in a DGH setting."	"Regulation of stipule development by COCHLEATA and STIPULE-REDUCED genes in pea Pisum sativum. Pisum sativum L., the garden pea crop plant, is serving as the unique model for genetic analyses of morphogenetic development of stipule, the lateral organ formed on either side of the junction of leafblade petiole and stem at nodes. The stipule reduced (st) and cochleata (coch) stipule mutations and afila (af), tendril-less (tl), multifoliate-pinna (mfp) and unifoliata-tendrilled acacia (uni-tac) leafblade mutations were variously combined and the recombinant genotypes were quantitatively phenotyped for stipule morphology at both vegetative and reproductive nodes. The observations suggest a role of master regulator to COCH in stipule development. COCH is essential for initiation, growth and development of stipule, represses the UNI-TAC, AF, TL and MFP led leafblade-like morphogenetic pathway for compound stipule and together with ST mediates the developmental pathway for peltate-shaped simple wild-type stipule. It is also shown that stipule is an autonomous lateral organ, like a leafblade and secondary inflorescence."	"New developments in assessment in orthodontics. As part of the 'cutting edge' series in the Journal of Orthodontics this paper aims to describe current practice in assessment, suggest how assessment in orthodontics will change in the future and place this change in the context of changes in medical and dental education."	"Soft tissue injuries: 7 Shoulder and elbow. A description of soft tissue injuries to the shoulder and elbow, together with assessment, imaging and treatment considerations."	"Adsorption of gum Arabic, egg white protein, and their mixtures at the oil-water interface in limonene oil-in-water emulsions. The adsorption behavior of gum Arabic, egg white protein, and their mixtures at the oil-water interface for 20% limonene oil emulsions has been investigated at pH 3.5 and 7.5. It has been shown that protein-rich fractions of gum Arabic adsorb onto limonene oil droplets and that there is no significant molecular mass dependence. The amount adsorbed was determined from differences in the intensities of the gel permeation chromatography elution profiles of the gum before and after preparing emulsions and was found to be approximately 6.5 and approximately 5 mg/m(2) at pH 3.5 and 7.5, respectively. These values are greater than might be expected for monolayer coverage. The amount of protein associated with the gum Arabic adsorbed was about 0.25 mg/m(2), which corresponds to approximately 26% of the total protein present in the gum. In comparison, the amount of egg white protein adsorbed was found to be approximately 1.2 and approximately 0.8 mg/m(2), respectively, at pH 3.5 and 7.5, which are typical values for monolayer coverage. For gum Arabic-egg white protein mixtures (1:0.05 w/w corresponding to approximately 1:1 on a molar basis) at pH 7.5, both species are negatively charged, and there is no interaction between them. On formation of emulsions, they compete with each other for surface sites, and egg white protein molecules are adsorbed preferentially, although not exclusively. At pH 3.5, the molecules have opposite charge and interact and at this ratio form soluble electrostatic complexes, which are adsorbed at the interface during emulsification. The droplet size of emulsions prepared with gum Arabic was significantly less than for egg white protein over the concentration range studied. Gum Arabic-egg white protein mixtures (1: 0.05 w/w) at pH 3.5 produced emulsions with a droplet size similar to gum Arabic alone, while those prepared at pH 7.5 produced emulsions with a significantly larger droplet size."	"A masked priming ERP study of letter processing using single letters and false fonts. Previous event-related potential (ERP) research on letter processing has suggested that a P150 reflects low-level, featural processing, whereas a P260 reflects high-level, abstract letter processing. In order to investigate the specificity of these effects, ERPs were recorded in a masked priming paradigm using matching and nonmatching pairs of letters (e.g., g-g, g-j) and false fonts (e.g.,[SYMBOL: SEE TEXT], [SYMBOL: SEE TEXT]). If the P150 priming effect indexes featural processing, there should be no effect of condition on the P150, since the letters and false fonts shared visual features. If the P260 priming effect indexes the processing of abstract letter representations, it should be evident only in the letter condition. As was expected, the P150 priming effect was similar for letters and false fonts; however, the P260 priming effect was also similar between conditions. Thus, the P260 priming effect may not be sensitive to abstract letter processing per se, or such processing may be extremely abstract."	"Methyl t-butyl ether and methyl trimethylsilyl ether ions dissociate near their ionization thresholds: a TPES, TPEPICO, RRKM, and G3 investigation. The threshold photoelectron spectra and threshold photoelectron photoion coincidence (TPEPICO) mass spectra of methyl t-butyl ether, (CH(3))(3)COCH(3) (MTBE), and methyl trimethylsilyl ether, (CH(3))(3)SiOCH(3) (MTMSE), have been measured using synchrotron radiation. The effect of silicon substitution on the unimolecular dissociation processes and the threshold photoelectron spectrum has been investigated. Both molecular ions dissociate at low internal energies. For ionized MTBE, the parent ion is no longer observed at an internal energy of only 0.2 eV. For this reason, it was not possible to fit the TPEPICO data to extract reliable thermochemical information. G3 level calculations place the molecular ion 5 kJ mol(-1) above the lowest-energy dissociation products, (CH(3))(2)COCH(3)(+) + (*)CH(3), suggesting the participation of an isomer, potentially the distonic ion (*)CH(2)(CH(3))(2)CO(+)(H)CH(3), in the dissociation. However, the calculations are not considered accurate enough to reliably determine the role this isomer plays, if any. RRKM modeling of the threshold region of the TPEPICO breakdown curves for ionized MTMSE leads to an E(0) for methyl loss of 63 +/- 2 kJ mol(-1), in good agreement with the G3 value of 66 kJ mol(-1). The resulting Delta(f)H(0) for (CH(3))(2)SiOCH(3)(+) of 384 +/- 10 kJ mol(-1) (Delta(f)H(298) = 361 +/- 10 kJ mol(-1)) is 28 kJ mol(-1) lower than the G3 value of 412 kJ mol(-1) due to the G3 Delta(f)H(0) for neutral MTMSE being 16 kJ mol(-1) higher than the previously reported value and the fact that the experimental IE(a) is 6 kJ mol(-1) lower than the G3 estimate. Appearance energy values for higher-energy fragmentation channels up to 36 (for MTBE) and 32 eV (for MTMSE) are reported and compared to literature values. An investigation of fragment ion peak broadening at high internal energy indicated that the two doubly charged molecular ions are not stable on the microsecond time scale. Each was found to dissociate into two singly charged ions along one or more neutral species."	"Cochlin-tomoprotein: a novel perilymph-specific protein and a potential marker for the diagnosis of perilymphatic fistula. Perilymphatic fistula (PLF) is an abnormal connection between the inner and middle ear. A procedure for obtaining definite proof of a PLF remains elusive, and methods of diagnosis remain controversial. To date, there is no clinically relevant biochemical marker for perilymph leakage. Using proteomic analysis of inner ear proteins, we have previously found unique properties of cochlin, encoded by the COCH gene. We detected 3 cochlin isoforms (p63s, p44s and p40s) in the inner ear tissue and a short 16-kDa isoform of cochlin-tomoprotein (CTP) in the perilymph. Since cochlin was found to be highly specific to the inner ear, we speculated that CTP might also be specific to the perilymph. The aim of this study was to determine whether CTP, a novel perilymph-specific protein, could be used as a marker for the diagnosis of PLF. By Western blotting, we investigated the specificity of CTP expression in a range of body fluids that included perilymph, serum, saliva and cerebrospinal fluid. To elucidate the detection limit of CTP, serially diluted recombinant human (rh)CTP as well as human perilymph was tested. CTP was selectively expressed in all 20 perilymph samples tested, but not in 77 samples of the other body fluids. The detection limit of rhCTP was 0.27 ng or 0.022 microl of perilymph per well on Western blot analysis. The results strongly suggest that CTP can be a specific marker of perilymph leakage. Moreover, CTP has the potential to be a biochemical marker that allows a definitive diagnosis of the etiology of PLF-related hearing loss and vestibular disorders."	"Selective and direct activation of human neutrophils but not eosinophils by Toll-like receptor 8. Granulocytes represent the largest fraction of immune cells in peripheral blood and are directly exposed to circulating Toll-like receptor (TLR) ligands. Although highly relevant for TLR-based therapies, because of the technical challenge, activation of the granulocyte subsets of neutrophils and eosinophils by TLR ligands is less well studied than activation of other immune cell subsets. The aim of this work was to study direct versus indirect neutrophil and eosinophil activation by TLR7 and TLR8 ligands. We used a new whole-blood assay, single cell-based cytokine detection, and highly purified primary human neutrophils and eosinophils to separate direct and indirect effects on these blood cell subsets. We found indirect but not direct activation of neutrophils but not eosinophils in whole blood by using unmodified immunostimulatory RNA (isRNA; TLR7/8 ligand). In contrast, direct activation and stimulation of the respiratory burst and degranulation was seen with nuclease-stable isRNA and with the small-molecule TLR8 agonist 3M002 but not 3M001 (TLR7). Neutrophils expressed TLR8 but none of the other 2 RNA-detecting TLRs (TLR3 and TLR7). Together, these results demonstrate that neutrophils are directly and fully activated through TLR8 but not TLR7. Furthermore, the results predict that the clinical utility of small-molecule TLR8 ligands or nuclease-stable RNA ligands for TLR8 might be limited because of neutrophil-mediated toxicity and that no such limitation applies for unmodified isRNA, which is known to induce desired T(H)1 activities in other immune cell subsets."	"An NMR study of cobalt-catalyzed hydroformylation using para-hydrogen induced polarisation. The syntheses of Co(eta3-C3H5)(CO)2PR2R' (R, R' = Ph, Me; R, R' = Me, Ph; R = R' = Ph, Cy, CH2Ph) and Co(eta3-C3H5)(CO)(L) (L = dmpe and dppe) are described, and X-ray structures for Co(eta3-C3H5)(CO)(dppe) and the PPh2Me, PCy3 derivatives reported. The relative ability of Co(eta3-C3H5)(CO)2(PR2R') to exchange phosphine for CO follows the trend PMe2Ph &lt; PPh2Me &lt; PCy3 &lt; P(CH2Ph)3 &lt; PPh3. Reactions of the allyl complexes with para-hydrogen (p-H2) lead to the observation of para-hydrogen induced polarisation (PHIP) in both liberated propene and propane. Reaction of these complexes with both CO and H2 leads to the detection of linear acyl containing species Co(COCH2CH2CH3)(CO)3(PR2R') and branched acyl complexes Co(COCH(CH3)2)(CO)3(PR2R') via the PHIP effect. In the case of PPh2Me, additional signals for Co(COCH2CH2CH3)(CO)2(PPh2Me)(propene) and Co(COCH(CH3)2)(CO)2(PPh2Me)(propene) are also detected. When the reactions of H2 and diphenylacetylene are studied with the same precursor, Co(CO)3(PPh2Me)(CHPhCH2Ph) is seen. Studies on how the appearance and ratio, of the PHIP enhanced signals vary as a function of reaction temperature and H2 : CO ratio are reported. These profiles are used to learn about the mechanism of catalysis and reveal how the rates of key steps leading to linear and branched hydroformylation products vary with the phosphine. These data also reveal that the PMe2Ph and PPh2Me based systems yield the highest selectivity for linear hydroformylation products."	"[Needs of the family caregivers of stroke survivors in the home: structured review of the literature from 2000 to 2007]. To perform a structured review of the literature from 2000 to 2007 on the needs of the caregivers of stroke survivors in the postacute phase of the illness process at home. Searches were conducted in the CINAHL, MEDLINE, EMBASE, PSYCHINFO, Cochrane Library Plus, CDSR (coch), DARE, CCTR, ACP Journal Club (ACP), IBECS, LILACS and IME databases using the terms &quot;stroke&quot;, &quot;caregiver&quot; and &quot;needs (assessment)&quot;. We selected 270 abstracts for review. Of these, only 53 met the inclusion criteria and just 12 achieved preestablished quality standards. Despite wide variability among the selected studies, the literature reviewed revealed that the two most prevalent needs for the caregivers of stroke survivors were information and support in the development of caregiving skills. Care for the caregiver herself, as well as the development and provision of support services, were defined as the two main areas where these participants seem to need support while adapting to and performing this newly adopted role. The studies reviewed show an increasing demand for support and care for stroke survivors' caregivers. Because of the highly diverse contexts of these studies, the lack of an explicit definition on the concept of &quot;need&quot;, and the wide heterogeneity in caregivers' situations, summarizing the results of these studies is difficult. New studies are required in our context that take these limitations into account and try to overcome them."	"Substitution and reaction chemistry of cobalt complexes supported by [N2P2] ligands. The coordination chemistry of mono- and divalent cobalt complexes supported by the monoanionic multidentate ligands, [N(2)P(2)] (where [N(2)P(2)] = (t)BuN((-))SiMe(2)N(CH(2)CH(2)P(i)Pr(2))(2)) and [N(2)P(2)(tolyl)] (where [N(2)P(2)(tolyl)] = MeC(6)H(4)N((-))SiMe(2)(CH(2)CH(2)P(i)Pr(2))(2)), is presented. The Co(II) halide complex [N(2)P(2)]CoI (2) serves as a precursor to the alkyl, hydride, and amide species [N(2)P(2)]CoMe (3), [N(2)P(2)]CoCH(2)SiMe(3) (4), [N(2)P(2)]CoH (5), [N(2)P(2)]CoNHPh (10), and [N(2)P(2)]CoNHC(6)H(4)Me (11). Reduction of 2 results in the formation of a stable, monomeric Co(I) species, [N(2)P(2)]Co (6). Compound 6 can be trapped with CO to form either [N(2)P(2)]Co(CO) (7) or [(t)BuN(C=O)SiMe(2)N(CH(2)CH(2)P(i)Pr(2))(2)]Co(CO)(2) (8) depending on the number of equivalents of CO introduced. Compound 6 also serves as a precursor to transient Co(III) imido species. The Co(II) halide complex [N(2)P(2)(tolyl)]CoI (16) is synthesized through an analogues reaction to that of 2. Reduction of 16 results in the formation of [N(2)P(2)(tolyl)]Co (17), and differences in the coordination and reaction chemistry of 6 and 17 are described."	"In vitro mutagenicity of Acid Violet 7 and its degradation products by Pseudomonas putida mt-2: Correlation with chemical structures. Acid Violet 7 (AV7), a very important commercial azo dye used in the textile, food, paper and cosmetic industries, was degraded by Pseudomonas putida mt-2 at a concentration up to 200mg/l. HPLC analysis of the biodegradation media revealed the presence of either 4'-aminoacetanilide (4'-AA) or 5-acetamido-2-amino-1-hydroxy-3,6-naphthalene disulfonic acid (5-ANDS) deriving from AV7 azoreduction which attests the expression of an azoreductase by this bacterium. These amines were identified only in media of static incubation, which is consistent with their biotransformation under shaken incubation (aerobic conditions). Pure azo dye, pure azoreduction products and total lyophilized biodegradation extracts were assayed for their mutagenic properties using Ames test. Mutagenicity of AV7 even with or without the S9 metabolizing system increased significantly after static biodegradation and totally disappeared after shaken incubation. In addition, mutagenicity of pure azo reduction products of AV7 was assessed and compared with that of the parent unsubstituted amines. 4'-AA exhibited a strong mutagenicity which was imputed to the presence of the acetoxy (COCH(3)) substituent on the aromatic amine; however, the presence of sulphonic groups in 5-ANDS limited its mutagenicity."	"The seasonal orchidometer. NA"	"8-2 fluorotelomer alcohol aerobic soil biodegradation: pathways, metabolites, and metabolite yields. The biodegradation pathways and metabolite yields of [3-(14)C] 8-2 fluorotelomer alcohol [8-2 FTOH, F(CF(2))(7)(14)CF(2)CH(2)CH(2)OH) in aerobic soils were investigated. Studies were conducted under closed (static) and continuous headspace air flow to assess differences in degradation rate and metabolite concentrations in soil and headspace. Aerobic degradation pathways in soils were in general similar to those in aerobic sludge and bacterial culture. (14)C mass balance was achieved in soils incubated for up to 7 months. Up to 35% (14)C dosed was irreversibly bound to soils and was only recoverable by soil combustion. The average PFOA yield was approximately 25%. Perfluorohexanoic acid (PFHxA) yield reached approximately 4%. (14)CO(2) yield was 6.8% under continuous air flow for 33 days. Three metabolites not previously identified in environmental samples were detected: 3-OH-7-3 acid [F(CF(2))(7)CHOHCH(2)COOH], 7-2 FT ketone [F(CF(2))(7)COCH(3)] and 2H-PFOA [F(CF(2))(6)CFHCOOH]. No perfluorononanoic acid (PFNA) was observed. The formation of 2H-PFOA, PFHxA, and (14)CO(2) shows that multiple -CF(2)- groups were removed from 8-2 FTOH. 7-3 Acid [F(CF(2))(7)CH(2)CH(2)COOH] reached a yield of 11% at day 7 and did not change thereafter. 7-3 Acid was incubated in aerobic soil and did not degrade to PFOA. 7-2 sFTOH [F(CF(2))(7)CH(OH)CH(3)], a transient metabolite, was incubated and degraded principally to PFOA. 7-3 Acid may be a unique metabolite from 8-2 FTOH biodegradation. The terminal ratio of PFOA to 7-3 acid ranged between 1.8-2.5 in soils and 0.6-3.2 in activated sludge, sediment, and mixed bacterial culture. This ratio may be useful in evaluating environmental samples to distinguish the potential contribution of 8-2 FTOH biodegradation to PFOA observed versus PFOA originating from other sources."	"Prognostic value of heart rate variability after acute myocardial infarction in the era of immediate reperfusion. The incidence and significance of impaired heart rate variability (HRV) after acute myocardial infarction (AMI) have not yet been evaluated in cohorts of patients in whom early reperfusion was systematically attempted. Therefore, HRV was evaluated in 412 unselected patients with AMI (311 men, mean age: 60+/-12 years, anterior AMI in 172 patients) treated with direct coronary angioplasty (PTCA) within 12 hours of symptom onset (mean 3.5+/-2.0 h). Standard deviation of normal RR intervals (SDNN), square root of the mean of the sum of the squares of differences between adjacent RR intervals (RMSSD) and left ventricular ejection fraction (LVEF, mean: 55+/-15%) were measured 11+/-9 days after AMI before discharge. Angiotensin-converting enzyme (ACE) inhibitors and beta-blockers were prescribed at discharge in 81.1% and 70.1% of patients, respectively. Mean SDNN was 94+/-30 ms (range 14-155). SDNN was &lt;50 ms in 7% of patients. Mean RMSSD was 34+/-32 ms (range 2-234). RMSSD was &lt;15 ms in 21% of patients. Low SDNN (&lt;50 ms) was unrelated to gender, age, infarct location or extension of CHD but was related to low LVEF (p&lt;0.001, logistic regression analysis). During mean follow-up of 4.3+/-3 years, there were 31 deaths; 24 were cardiac. SDNN was higher in long-term survivors (102+/-39 ms) as compared to nonsurvivors (81+/-33 ms, p=0.02) but RMSSD was unrelated to the long-term vital status. Four-year survival of patients with a SDNN &lt;50 ms vs &gt;50 ms was 80% vs 92%, respectively (p&lt;0.001, Kaplan Meier analysis). Low SDNN (odds ratio OR=2.0, p&lt;0.05) but not RMSSD was an independent denominator for long-term mortality as were low LVEF (OR=1.0 decrease in LVEF, p&lt;0.01, proportional hazards model) and age (OR=1.1, p&lt;0.001). Only 3/31 fatalities and 1/24 cardiac deaths were predicted by a SDNN &lt;50 ms and only 5/31 fatalities by a RMSSD &lt;15 ms. The incidence of severely depressed HRV in patients after AMI is low (&lt;10%) in the era of early reperfusion of the infarct vessel using direct PTCA. Mortality in patients with a very low HRV when assessed by SDNN is substantial but the positive predictive value of this parameter is low."	"Mutation in the COCH gene is associated with superior semicircular canal dehiscence. NA"	"Approaching the RNA ligand for RIG-I? Innate and antigen-specific antiviral immunity are triggered by immunorecognition of viral nucleic acids. The helicase retinoic acid-inducible gene I (RIG-I) (also known as DDX58) is the key sensor of negative strand RNA viruses in the cytosol of cells. RNA containing a triphosphate at the 5'-end was shown to activate RIG-I, but the exact structure of RNA supporting 5'-triphosphate recognition, the requirement of a 5'-triphosphate group, as well as the existence of RNA structures detected by RIG-I in the absence of 5'-triphosphate remain controversial. Here, we revisit the literature on RIG-I and RIG-I ligands. The literature proposes at least six different RIG-I ligands: (i) single strand with a 5'-triphosphate, (ii) double-stranded RNA with a 5'-triphosphate, (iii) 5'-triphosphate single-stranded RNA with A- and U-rich 3'-sequences, (iv) double-stranded RNA of intermediate length (&gt;300 and &lt;2000 bp) without 5'-triphosphate, (v) blunt-end short double-stranded RNA (23-30 bp) without 5'-triphosphate, and (vi) short double-stranded RNA (23-30 bp) with 5'-monophosphate. RIG-I thus seems promiscuous for a variety of different RNA molecules, very similar to the Toll-like receptors, of which 10 family members are sufficient for the safe detection of the microbial cosmos. In the light of these outstanding publications, it seems an unlikely possibility that there is a fundamental shortcoming in the design of all studies. Looking closely, the only issue that comes to mind is the in vitro transcription technique used by all investigators without confirming the identity of RNA products. This technique, together with the different biological systems used, the lack of dose responses and of proper comparison of different published ligands and controls leave us with more questions than answers as to what the exact RIG-I ligand is, if in fact it exists."	"[μ-N,N'-Bis(diphenyl-phosphinometh-yl)benzene-1,4-diamine-κP:P']bis-[(2,2'-bipyridine-κN,N')silver(I)] bis-(per-chlorate) acetone disolvate. The title complex, [Ag(2)(C(10)H(8)N(2))(2)(C(32)H(30)N(2)P(2))](ClO(4))(2)·2CH(3)COCH(3), is a centrosymmetric dimer with pairs of Ag(I) atoms bridged by N,N'-bis-(diphenyl-phosphinometh-yl)ben-zene-1,4-diamine ligands. In addition, each Ag(I) atom is coordin-ated by one chelating 2,2'-bipyridine ligand, giving a distorted trigonal coordination environment."	"(Acetone-2κO){μ-6,6'-dimeth-oxy-2,2'-[propane-1,2-diylbis(nitrilo-methyl-idyne)]diphenolato-κ1:2O,O,O,O:O,N,N',O}tris-(nitrato-1κO,O')copper(II)samarium(III). In the title heteronuclear complex, [CuSm(C(19)H(20)N(2)O(4))(NO(3))(3)(CH(3)COCH(3))], the Cu(II) ion is five-coordinated by two O and two N atoms from the 6,6'-dimeth-oxy-2,2'-[propane-1,2-diylbis(nitrilo-methyl-idyne)]diphenolate ligand (L) and by an O atom from the acetone mol-ecule in a square-pyramidal geometry. The Sm(III) ion is ten-coordinated by six O atoms from the three nitrate ligands and four O atoms from the L ligand. In L, the C atoms of the diamino-propane fragment are disordered over two positions in a 0.674 (10):0.326 (10) ratio."	"(Acetone-2κO){μ-6,6'-dimeth-oxy-2,2'-[propane-1,2-diylbis(nitrilo-methyl-idyne)]diphenolato-κ1:2O,O,O,O:O,N,N',O}tris(nitrato-1κO,O')copper(II)terbium(III). In the title heteronuclear complex, [CuTb(C(19)H(20)N(2)O(4))(NO(3))(3)(CH(3)COCH(3))], the Cu(II) ion is five-coordinated by two O and two N atoms from the 6,6'-dimeth-oxy-2,2'-[propane-1,2-diylbis(nitrilo-methyl-idyne)]diphenolate ligand (L) and an O atom from the acetone mol-ecule in a square-pyramidal geometry. The Tb(III) ion is ten-coordinated by six O atoms from three chelating nitrate ligands and four O atoms from the L ligand. In L, the CH(2)-CH-CH(3) fragment is disordered over two conformations, with refined occupancies of 0.725 (11) and 0.275 (11)."	"{μ-6,6'-Dimeth-oxy-2,2'-[propane-1,3-diylbis(nitrilo-methyl-idyne)]-diphenolato}-trinitratocopper(II)lutetium(III) acetone solvate. In the title complex, [CuLu(C(19)H(20)N(2)O(4))(NO(3))(3)]·CH(3)COCH(3), the Cu(II) ion is four-coordinated in a square-planar geometry by two O atoms and two N atoms from the deprotonated Schiff base. The Lu(III) ion is ten-coordinate, chelated by three nitrate groups and linked to the four O atoms of the deprotonated Schiff base. A mol-ecule of acetone is present as a solvate."	"Poly[[μ-aqua-aqua-[μ(4)-ethyl (dichloro-methyl-ene)diphospho-nato]sesqui-calcium(II)] acetone hemisolvate 4.5-hydrate]. The title compound, {[Ca(1.5)(C(3)H(5)Cl(2)O(6)P(2))(H(2)O)(2)]·0.5CH(3)COCH(3)·4.5H(2)O}(n), has a two-dimensional polymeric structure. The asymmetric unit contains two crystallographically independent Ca(2+) cations connected by a chelating and bridging ethyl (dichloro-methyl-ene)diphos-pho-n-ate(3(-)) ligand and an aqua ligand. One of the Ca atoms, lying on a centre of symmetry, has a slightly distorted octa-hedral geometry, while the other Ca atom is seven-coordinated in a distorted monocapped trigonal-prismatic geometry. The polymeric layers are further connected by extensive O-H⋯O hydrogen bonding into a three-dimensional supra-molecular network. The acetone solvent mol-ecule and one uncoordin-ated water mol-ecule are located on twofold rotation axes."	"{μ-6,6'-Dimeth-oxy-2,2'-[propane-1,3-diylbis(nitrilo-methyl-idyne)]diphenolato}trinitratocopper(II)erbium(III) acetone solvate. In the title complex, [CuEr(C(19)H(20)N(2)O(4))(NO(3))(3)]·CH(3)COCH(3), the Cu(II) ion is coordinated in a square-planar environment by two O atoms and two N atoms of a Schiff base ligand. The Er(III) ion is bis-chelated by three nitrate ligands and coordinated by four O atoms of the Schiff base ligand in a slightly distorted bicapped square-anti-prismatic environment."	"Treatment of asymptomatic rectal Chlamydia trachomatis: is single-dose azithromycin effective? Rectal infection with Chlamydia trachomatis affects approximately 7% of men having sex with men (MSM), attending departments of Genito-Urinary (GU) Medicine [Manavi et al. Int J STD AIDS 2004;15:162-4], and the British Association for Sexual Health and HIV (BASHH) guidelines for the treatment of uncomplicated genital C. trachomatis infection include 1 g of single-dose oral azithromycin as a recommended regimen [BASHH 2006]. A retrospective analysis was performed on case-notes from all patients diagnosed with rectal C. trachomatis infection in the department of GU Medicine, Edinburgh for the one-year period from 1 June 2005. Of 101 new episodes of rectal chlamydial infection, only 9% were associated with anorectal symptoms. Excluding these, 85% of asymptomatic patients were treated with a single dose of azithromycin 1 g orally, with a calculated treatment failure rate of 13% (nine of 68). This suggests that single-dose azithromycin may be a less than effective treatment in asymptomatic rectal C. trachomatis infection. The potential treatment failure rate with this regimen emphasizes the need for a test of cure at the appropriate interval following treatment to ensure clearance of infection."	"An ab initio/Rice-Ramsperger-Kassel-Marcus prediction of rate constant and product branching ratios for unimolecular decomposition of propen-2-ol and related H + CH2COHCH2 reaction. Enols have been found to be important intermediates in the combustion flames of hydrocarbon [C. A. Taatjes et al., Science 308, 1887 (2005)]. The removal mechanism of enols in combustion flame has not been established yet. In this work, the potential energy surface for the unimolecular decomposition of syn-propen-2-ol and H + CH(2)COHCH(2) recombination reactions have been first investigated by CCSD(T) method. The barrier heights, reaction energies, and geometrical parameters of the reactants, products, intermediates, and transition states have been investigated theoretically. The results show that the formation of CH(3)CO + CH(3) via the CH(3)COCH(3) intermediate is dominant for the unimolecular decomposition of syn-propen-2-ol and its branching ratio is over 99% in the whole temperature range from 700 to 3000 K, and its rate constant can be expressed as an analytical form in the range of T=700-3000 K at atmospheric pressure. This can be attributed to the lower energy barrier of this channel compared to the other channels. The association reaction of H with CH(2)COHCH(2) is shown to be a little more complicated than the unimolecular decomposition of syn-propen-2-ol. The channel leading to CH(3)CO + CH(3) takes a key role in the whole temperature range at atmospheric pressure. However at the higher pressure of 100 atm, the recombination by direct formation of syn-propen-2-ol through H addition is important at T&lt;1000 K. In the range of T&gt;1400 K, the recombination channel leading to CH(3)CO + CH(3) turns out to be significant."	"Potential for transcriptional upregulation of cochlin in glaucomatous trabecular meshwork: a combinatorial bioinformatic and biochemical analytical approach. To determine the existence of a relatively higher abundance of potential TFs in glaucomatous trabecular meshwork (TM) that may bind putative promoter regions and affect cochlin protein expression in glaucomatous compared to normal TM. Combinatorial bioinformatics and biochemical analyses, using human glaucomatous and normal donor tissue (n = 4 each). Biochemical analysis included electrophoretic mobility shift assays (EMSAs), filter binding assays (FBAs), coupled in vitro transcription-translation (TNT) assays and promoter mutation analysis. Combinatorial bioinformatics and biochemical analyses revealed the existence of a higher abundance of TFs in glaucomatous than in normal TM nuclear extracts. The evidence of a relatively high abundance of TFs, leading to increased expression of cochlin predicted by bioinformatic and biochemical analyses (EMSA and FBA), was further supported by TNT and promoter mutation TNT assays. These results support the finding that the observed increased cochlin expression in glaucomatous TM is due to relative elevated abundance of TFs. The results also demonstrate the utility of combinatorial bioinformatic and biochemical analyses for genes with uncharacterized promoter regions."	"Photodissociation dynamics of 2,5-dihydroxyacetophenone. Photodissociation of 2,5-dihydroxyacetophenone (DHAP), an important matrix compound in matrix-assisted laser desorption/ionization (MALDI), was studied in a molecular beam at 193 nm using multimass ion imaging techniques. Two major dissociation channels were observed, including (1) C(6)H(3)(OH)(2)COCH(3) --&gt; OC(6)H(3)(OH)COCH(3) + H and (2) C(6)H(3)(OH)(2)COCH(3) --&gt; C(6)H(3)(OH)(2) + COCH(3). The minor channels include C(6)H(3)(OH)(2)COCH(3) --&gt; C(6)H(3)(OH)(2)CO + CH(3) and/or C(6)H(3)(OH)(2)COCH(3) --&gt; C(6)H(3)(OH)(2) + CO + CH(3). The photofragment translational energy distribution suggests that reaction 1 occurs at an excited state in which the potential along the O-H bond distance is repulsive. Comparison to the branching ratios from RRKM calculations suggests that reaction 2 does not occur at either the ground state or the triplet state or that if it does occur at one of these states it must not follow the RRKM model. A comparison to the photodissociation dynamics of acetophenone and phenol and its derivatives was made."	"H/D isotope effect in methyl torsional interaction of acetone as calculated by a multicomponent molecular orbital method. We analyzed the H/D isotope effect in the methyl torsional interactions accompanying two methyl internal rotations for acetone (CH(3)COCH(3)) and deuterated acetone (CD(3)COCD(3) and CH(3)COCD(3)) in the ground state by means of the multicomponent molecular orbital (MC_MO) method, which directly accounts for the quantum effects of protons and deuterons. Our estimated rotational constants and moments of inertia for CH(3)COCH(3) and CD(3)COCD(3) agreed well with the experimental results because of the adequate treatment of protonic and deuteronic quantum effects afforded by the MC_MO method. Because the C-D bond distance in the CD(3) group was shorter than the C-H distance in CH(3) owing to the anharmonicity of the potential, the difference in potential energy surfaces of CH(3)COCH(3), CD(3)COCD(3), and CH(3)COCD(3) was strongly related to the differences induced in geometrical parameters by the H/D isotope effect. The potential energy obtained by the MC_MO method was estimated as 290.88 cm(-1) for CH(3)COCH(3), which is in excellent agreement with the experimental results. For CH(3)COCD(3), two potential energies were obtained for CH(3) and CD(3) internal rotations. The MC_MO method successfully elucidated the H/D isotope effect for methyl-methyl repulsive interactions by allowing the adequate treatment of protonic and deuteronic wave functions. The potential energies and bond distances associated with methyl internal rotation induced by the H/D isotope effect were also controlled by the distribution of wave functions of protons and deuterons."	"Adiabatic and nonadiabatic reaction pathways of the O(3P) with propyne. For the reaction of O((3)P) with propyne, the product channels and mechanisms are investigated both theoretically and experimentally. Theoretically, the CCSD(T)//B3LYP/6-311G(d,p) level of calculations are performed for both the triplet and singlet potential energy surfaces and the minimum energy crossing point between the two surfaces are located with the Newton-Lagrange method. The theoretical calculations show that the reaction occurs dominantly via the O-addition rather than the H-abstraction mechanism. The reaction starts with the O-addition to either of the triple bond carbon atoms forming triplet ketocarbene (3)CH(3)CCHO or (3)CH(3)COCH which can undergo decomposition, H-atom migration or intersystem crossing from which a variety of channels are open, including the adiabatic channels of CH(3)CCO + H (CH(2)CCHO + H), CH(3) + HCCO, CH(2)CH + HCO, CH(2)CO + CH(2), CH(3)CH + CO, and the nonadiabatic channels of C(2)H(4) + CO, C(2)H(2) + H(2) + CO, H(2) + H(2)CCCO. Experimentally, the CO channel is investigated with TR-FTIR emission spectroscopy. A complete detection of the CO product at each vibrationally excited level up to v = 5 is fulfilled, from which the vibrational energy disposal of CO is determined and found to consist with the statistical partition of the singlet C(2)H(4) + CO channel, but not with the triplet CH(3)CH + CO channel. In combination with the present calculation results, it is concluded that CO arises mainly from the singlet methylketene ((1)CH(3)CHCO) dissociation following the intersystem crossing of the triplet ketocarbene adduct ((3)CH(3)CCHO). Fast intersystem crossing via the minimum energy crossing point of the triplet and singlet surfaces is shown to play significant roles resulting into nonadiabatic pathways for this reaction. Moreover, other interesting questions are explored as to the site selectivity of O((3)P) atom being added to which carbon atom of the triple bond and different types of internal H-atom migrations including 1,2-H shift, 3,2-H shift, and 3,1-H shift involved in the reaction."	"Report on the proceedings of 'E-learning in health and social care - theory to practice' North East Wales Institute, Wrexham, Friday, 18th March 2005. NA"	"The second von Willebrand type A domain of cochlin has high affinity for type I, type II and type IV collagens. Cochlin is colocalized with type II collagen in the extracellular matrix of cochlea and has been suggested to interact with this collagen. Here we show that the second von Willebrand type A domain of cochlin has affinity for type II collagen, as well as type I and type IV collagens whereas the LCCL-domain of cochlin has no affinity for these proteins. The implications of these findings for the mechanism whereby cochlin mutations cause the dominant negative DFNA9-type hearing loss are discussed."	"Use of molecular electrostatic potential for quantitative assessment of inductive effect. Density functional theory computations at the B3LYP/6-31G(d,p) level have been carried out for three types of model compounds, viz. (i) 4-substituted bicyclo[2.2.2]octane carboxylic acids, (ii) anions of 4-substituted bicyclo[2.2.2]octane carboxylic acids and (iii) 4-substituted quinuclidines where the substituents are NO(2), CN, Cl, Br, CF(3), F, CHO, CH(2)Cl, COOH, COCH(3), CONH(2), OH, OCH(3), C(6)H(5), NH(2), H, CH(3), CH(2)CH(3), CH(CH(3))(2), and C(CH(3))(3) to study the dependencies between molecular electrostatic potential minimum (V(min)) and the inductive substituent constant sigma(I). All the three model systems show excellent linear correlation between V(min) and sigma(I) suggesting that the calculation of V(min) parameter in these systems offers a simple and efficient computational approach for the evaluation of inductive substituent constants. The calculated linear equation for the models (i), (ii), and (iii) are V(min) = 12.982 sigma(I)- 48.867, V(min) = 13.444 sigma(I)- 182.760, and V(min) = 18.100 sigma(I)- 65.785, respectively. Considering the simplicity of the quinuclidine model, V(min) value at the nitrogen lone pair region of a 4-substituted quinuclidine system is recommended for the evaluation of sigma(I). Further, the additivity effect of sigma(I) is tested on multiply substituted quinuclidine and bicyclo[2.2.2]octane carboxylic acid derivatives using the V(min) approach and the results firmly supported the additivity rule of inductive effect. The systems showing considerable deviations from the additivity rule are easily recognized as those showing either steric effect or intramolecular hydrogen bond interactions at the V(min) response site. However, the distance relation of sigma(I) is not well represented in the caged molecular systems."	"Preparation and evaluation of stable coating for capillary electrophoresis using coupled chitosan as coated modifier. A coated capillary modified with a coupled chitosan (COCH) was developed by using a simple and fast (60 min) process that could be easily automated in capillary electrophoresis instrument. The COCH coating was achieved by first attaching chitosan to the capillary inner wall, and then coupling with glutaraldehyde, and rinsing chitosan again to react with glutaraldehyde. The COCH coating was stable and showed amphoteric character over the pH range of 1.8-12.0. When the pH value was lower than 4.5, the capillary surface possessed positive charges, which caused a reversal in the direction of the electroosmotic flow (EOF). The normal EOF direction could be obtained when the pH value was higher than 4.5. The COCH coating showed strong stability against 0.1 mol/L HCl, 0.1 mol/L NaOH and other solvents compared with conventional chitosan coating. The relative standard deviation of the run-to-run, day-to-day and capillary-to-capillary coating was all below 2% for the determination of EOF. The COCH-modified capillary was applied to acidic and basic proteins analyses and high efficiency could be attained. The comparison between unmodified capillary, chitosan-modified and COCH-modified capillary for the separation of real sample, extract from Elaphglossum yoshinagae with water, was also studied. Better results could be obtained on COCH-modified capillary than the other two capillaries."	"Eu(fod)(3) binding on the (1)H-NMR spectra of some benzo[3n]crown-n and dibenzo[3n+2]crown-n. The complexing of Eu(fod)(3) with macrocyclic ethers, benzo[15]crown-5, benzo[12]crown-4, dibenzo[20]crown-6, dibenzo[23]crown-7 and dibenzo[26]crown-8 was observed on their (1)H-NMR spectra and the selective binding constants at 400 MHz and 305 K in CDCl(3) were reported. The Eu(fod)(3) interaction displayed the selective binding role of oxygen on macrocyclic, H(2)COCH(2), backbones with o- or m-dioxyphenyl groups referring the (1)H chemical shifts. The estimated equilibrium constants, K(a) of 1:1 ratio of interactions were in accordance with the Eu(3+) ionic radii to bind the oxygen sites depending on the macrocyclic size and conformation of the ethers. The minimum lanthanide-macrocyclic ether distance displayed the maximum stability so that benzo[3n]crown-n (n=4, 5) group was found to bind the Eu(fod)(3) moderately whilst dibenzo[3n+2]crown-n (n=6-8) oligomer chemical shifts were induced largely since the such Eu(3+) complexes are more stable with larger ethyleneoxy groups."	"Cochlin expression in anterior segment organ culture models after TGFbeta2 treatment. To determine the effect of transforming growth factor (TGF)-beta2 treatment on intraocular pressure (IOP), outflow facility, and cochlin expression in vitro in monkey and pig organ-cultured anterior segments (MOCAS and POCAS). MOCAS (rhesus and cynomolgus) or POCAS were infused with media containing 10 ng/mL TGFbeta2 to one segment of each pair and 0.1% BSA (vehicle) to the contralateral segment for up to 14 days at a constant rate. Cochlin expression was determined by immunohistochemical study, ELISA, and Western blot analysis using chicken polyclonal antibodies against different regions of cochlin. TGFbeta2 infusion produced elevated IOP in MOCAS (usually after 5 days), that was approximately 45% greater than baseline and compared to control segments. Outflow facility (OF) was decreased by approximately 40% compared with pretreatment baseline (n=5). In POCAS (n=7), IOP was increased (approximately 3 days) by approximately 75% compared with baseline and contralateral changes. The IOP elevation subsided thereafter. Cochlin levels increased with duration of TGFbeta2 treatment in the media and in the region of the trabecular meshwork in both species. TGFbeta2-induced IOP elevation was associated with an increase in cochlin secretion into the media and expression in the tissue of MOCAS and POCAS. Whether cochlin overexpression contributes to elevated IOP or is a consequence of other changes relevant to IOP elevation remains to be determined."	"The case of letter rhyming: an ERP study. Previous visual event-related potential (ERP) studies using prime-target pairs of word and pseudoword stimuli have reported a robust rhyming effect such that nonrhyming targets elicit a larger N450 than rhyming targets. However, results of similar studies using simpler linguistic stimuli-single letters-are equivocal. We used lowercase and uppercase letter pairs in a simple ERP prime-target rhyming paradigm to further investigate whether single letters could elicit the typical rhyming effect and, if so, whether the rhyming effect was sensitive to physical orthography (which differed between the case conditions). The typical N450 rhyming effect was observed in both the lowercase and uppercase letter pair conditions, with similar amplitude and latency between conditions. This pattern of results suggests that the N450 rhyming effect is not sensitive to physical (case) orthography and likely primarily indexes phonological processing related to the rhyme task."	"Forty-six genes causing nonsyndromic hearing impairment: which ones should be analyzed in DNA diagnostics? Hearing impairment is the most common sensory disorder, present in 1 of every 500 newborns. With 46 genes implicated in nonsyndromic hearing loss, it is also an extremely heterogeneous trait. Here, we categorize for the first time all mutations reported in nonsyndromic deafness genes, both worldwide and more specifically in Caucasians. The most frequent genes implicated in autosomal recessive nonsyndromic hearing loss are GJB2, which is responsible for more than half of cases, followed by SLC26A4, MYO15A, OTOF, CDH23 and TMC1. None of the genes associated with autosomal dominant nonsyndromic hearing loss accounts for a preponderance of cases, although mutations are somewhat more frequently reported in WFS1, KCNQ4, COCH and GJB2. Only a minority of these genes is currently included in genetic diagnostics, the selection criteria typically reflecting: (1) high frequency as a cause of deafness (i.e. GJB2); (2) association with another recognisable feature (i.e. SLC26A4 and enlarged vestibular aqueduct); or (3) a recognisable audioprofile (i.e. WFS1). New and powerful DNA sequencing technologies have been developed over the past few years, but have not yet found their way into DNA diagnostics. Implementing these technologies is likely to happen within the next 5 years, and will cause a breakthrough in terms of power and cost efficiency. It will become possible to analyze most - if not all - deafness genes, as opposed to one or a few genes currently. This ability will greatly improve DNA diagnostics, provide epidemiological data on gene-based mutation frequencies, and reveal novel genotype-phenotype correlations."	"New insights into the structural characteristics of the arabinogalactan-protein (AGP) fraction of gum arabic. The structural characteristics of the gum exudate of Acacia senegal (gum arabic) have been investigated by monitoring the composition and physicochemical properties before and after treatment with proteolytic enzyme and various alkaline systems. Molecular mass ( M w) and radius of gyration ( R g) measurements were performed using gel permeation chromatography (GPC) coupled to refractive index, UV absorbance, and multiangle light scattering detectors and indicated that the macromolecules present have a compact structure. It was found that treatment with proteolytic enzyme caused the arabinogalactan-protein component (AGP) with average molecular mass approximately 2 x 10 (6) Da to degrade, yielding material of molecular mass approximately 4 x 10 (5) Da, whereas the bulk of the material corresponding to the protein-deficient arabinogalactan component (AG) with molecular mass 4 x 10 (5) remained unaffected. Barium hydroxide was found to hydrolyze the polysaccharide component (AG) itself in addition to the proteinaceous component as demonstrated in control experiments using dextran. However, sodium borohydride/sodium hydroxide treatments were unable to hydrolyze dextran and were assumed to hydrolyze only the proteinaceous component of gum arabic. The AGP component was completely degraded, yielding material of molecular mass approximately 4.5 x 10 (4) Da. It has been concluded, therefore, that the enzyme did not fully hydrolyze all of the protein present and that the AGP component of gum arabic consists of carbohydrate blocks of approximately 4.5 x 10 (4) Da linked to a polypeptide chain consistent with the wattle blossom structure. Because the AGP was degraded to differing extents using a mild and more severe sodium borohydride/sodium hydroxide treatment, it was concluded that the polysaccharide moieties were linked through both O-serine and O-hydroxyproline residues. The gum arabic sample was deglycosylated by treatment with anhydrous hydrogen fluoride and revealed the presence of two putative core proteins of approximately 3 x 10 (4) and approximately 5 x 10 (3) Da, respectively, which correspond to proteins of approximately 250 and 45 amino acids in length. A new model for the structure of the AGP component has been proposed."	"Vestibular function in families with inherited autosomal dominant hearing loss. The inner ear contains the developmentally related cochlea and peripheral vestibular labyrinth. Given the similar physiology between these two organs, hearing loss and vestibular dysfunction may be expected to occur simultaneously in individuals segregating mutations in inner ear genes. Twenty-two different genes have been discovered that when mutated lead to non-syndromic autosomal dominant hearing loss. A review of the literature indicates that families segregating mutations in 13 of these 22 genes have undergone formal clinical vestibular testing. Formal assessment revealed vestibular dysfunction in families with mutations in ten of these 13 genes. Remarkably, only families with mutations in the COCH and MYO7A genes self-report considerable vestibular challenges. Families segregating mutations in the other eight genes do not self-report significant balance problems and appear to compensate well in everyday life for vestibular deficits discovered during formal clinical vestibular assessment. An example of a family (referred to as the HL1 family) with progressive hearing loss and clinically-detected vestibular hypofunction that does not report vestibular symptoms is described in this review. Notably, one member of the HL1 family with clinically-detected vestibular hypofunction reached the summit of Mount Kilimanjaro."	"Spatiotemporal expression of cochlin in the inner ear of rats during postnatal development. Cochlin (encoded by COCH) constitutes 70% of non-collagenous protein in the inner ear, and the expression of cochlin is highly specific to the inner ear. Eleven missense mutation and one in-frame deletion have been reported in the COCH gene, causing hereditary progressive sensorineural hearing loss and vestibular dysfunction, DFNA9. These data imply that cochlin should bear an essential and crucial role in the inner ear function. However, the role of cochlin has not been fully clarified. We have investigated the spatiotemporal expression of cochlin in the inner ear of rats during postnatal development to better understand the functional role of cochlin. By immunohistochemistry, cochlin expression was faint in the cochlea and vestibule on the 6th day after birth (DAB6). At DAB70, strong expression of cochlin was detected in the spiral limbus and spiral ligament within the cochlea, and in the stromata of the maculae of otolithic organs and crista ampullaris within the vestibule. Immunoreactivity for cochlin increased during the postnatal development. Western blot analysis also showed an increase in the expression of cochlin isoforms. Furthermore, the dominant isoform of cochlin expressed changed from p63s to p40s between DAB24 and DAB70. These results suggest that the expression of cochlin may be related to the maturation of inner ear function, and the change in isoforms of cochlin expressed will provide important insight into the understanding of both cochlin function and formation of cochlin isoforms. This is the first to report about the spatiotemporal expression of cochlin in the developing rat inner ear."	"A targeted Coch missense mutation: a knock-in mouse model for DFNA9 late-onset hearing loss and vestibular dysfunction. Mutations in COCH (coagulation factor C homology) are etiologic for the late-onset, progressive, sensorineural hearing loss and vestibular dysfunction known as DFNA9. We introduced the G88E mutation by gene targeting into the mouse and have created a Coch(G88E/G88E) mouse model for the study of DFNA9 pathogenesis and cochlin function. Vestibular-evoked potential (VsEP) thresholds of Coch(G88E/G88E) mice were elevated at all ages tested compared with wild-type littermates. At the oldest ages, two out of eight Coch(G88E/G88E) mice had no measurable VsEP. Auditory brainstem response (ABR) thresholds of Coch(G88E/G88E) mice were substantially elevated at 21 months but not at younger ages tested. At 21 months, four of eight Coch(G88E/G88E) mice had absent ABRs at all frequencies tested and two of three Coch(G88E)(/+) mice had absent ABRs at three of four frequencies tested. Distortion product otoacoustic emission amplitudes of Coch(G88E/G88E) mice were substantially lower than Coch(+/+) mice and absent in the same Coch(G88E/G88E) mice with absent ABRs. These results suggest that vestibular function is affected beginning as early as 11 months when cochlear function appears to be normal, and dysfunction increases with age. Hearing loss declines substantially at 21 months of age and progresses to profound hearing loss at some to all frequencies tested. This is the only mouse model developed to date where hearing loss begins at such an advanced age, providing an opportunity to study both progressive age-related hearing loss and possible interventional therapies."	"Anion transport properties of amine and amide-sidechained peptides are affected by charge and phospholipid composition. Four synthetic anion transporters (SATs) having the general formula (n-C(18)H(37))(2)N-COCH(2)OCH(2)CO-(Gly)(3)Pro-Lys(epsilon-N-R)-(Gly)(2)-O-n-C(7)H(15) were prepared and studied. The group R was Cbz, H (TFA salt), t-Boc, and dansyl in peptides 1, 2, 3, and 4 respectively. The glutamine analog (GGGPQAG sequence) was also included. A dansyl-substituted fluorescent SAT was used to probe peptide insertion; the dansyl sidechain resides in an environment near the bilayer's midpolar regime. When the lysine sidechain was free or protected amine, little effect was noted on final Cl(-) transport rate in DOPC : DOPA (7 : 3) liposomes. This stands in contrast to the significant retardation of transport previously observed when a negative glutamate residue was present in the peptide sequence. It was also found that Cl(-) release from liposomes depended on the phospholipid composition of the vesicles. Chloride transport diminished significantly for the free lysine containing SAT, 2, when the lipid was altered from DOPC : DOPA to pure DOPC. Amide-sidechained SATs 1 and 5 showed a relatively small decrease in Cl(-) transport. The effect of lipid composition on Cl(-) transport was explained by differences in electrostatic interaction between amino acid sidechain and lipid headgroup, which was modeled by computation."	"Characterization of the surface-active components of sugar beet pectin and the hydrodynamic thickness of the adsorbed pectin layer. The fraction of sugar beet pectin (SBP) adsorbed onto limonene oil droplets during emulsification has been isolated, and its chemical and physicochemical characteristics have been determined. While the SBP sample itself was found to contain 2.67 and 1.06% protein and ferulic acid, respectively, the adsorbed fraction contained 11.10% protein and 2.16% ferulic acid. The adsorbed fraction was also found to have a higher degree of acetylation, notably at the C2 position on the galacturonic acid residues, and was also found to contain a higher proportion of neutral sugars, which are present in the ramified side chains of the pectin molecules. The thickness of the layer of SBP adsorbed onto polystyrene latex particles was studied by dynamic light scattering and was found to increase with increasing surface coverage. It was found to have a value of approximately 140 nm at plateau coverage, which closely corresponded to the hydrodynamic diameter of the pectin chains. The adsorbed layer thickness was found to be sensitive to pH and the presence of electrolyte. The thickness at a surface coverage of approximately 20 mg/m(2) in the absence of electrolyte at pH approximately 4 was 107 nm and at pH 8.8 was 70 nm, while at pH approximately 4 in the presence of 10 mM NaCl the thickness was found to be 70 nm. It was concluded that the SBP molecules form multilayers at the surface due to electrostatic interaction between the positively charged protein moieties and the galacturonic acid residues. The removal of calcium from the SBP had no effect on the adsorbed layer thickness; hence, multilayer formation due to calcium ion cross-linking was considered unlikely."	"Intermolecular alkene and alkyne hydroacylation with beta-S-substituted aldehydes: mechanistic insight into the role of a hemilabile P-O-P ligand. A straightforward to assemble catalytic system for the intermolecular hydroacylation reaction of beta-S-substituted aldehydes with activated and unactivated alkenes and alkynes is reported. These catalysts promote the hydroacylation reaction between beta-S-substituted aldehydes and challenging substrates, such as internal alkynes and 1-octene. The catalysts are based upon [Rh(cod)(DPEphos)][ClO(4)] (DPEphos=bis(2-diphenylphosphinophenyl)ether, cod=cyclooctadiene) and were designed to make use of the hemilabile capabilities of the DPEphos ligand to stabilise key acyl-hydrido intermediates against reductive decarbonylation, which results in catalyst death. Studies on the stoichiometric addition of aldehyde (either ortho-HCOCH(2)CH(2)SMe or ortho-HCOC(6)H(4)SMe) and methylacrylate to precursor acetone complexes [Rh(acetone)(2)(DPEphos)][X] [X=closo-CB(11)H(6)Cl(6) or [BAr(F) (4)] (Ar(F)=3,5-(CF(3))(2)C(6)H(3))] reveal the role of the hemilabile DPEphos ligand. The crystal structure of [Rh(acetone)(2)(DPEphos)][X] shows a cis-coordinated diphosphine ligand with the oxygen atom of the DPEphos distal from the rhodium. Addition of aldehyde forms the acyl hydride complexes [Rh(DPEphos)(COCH(2)CH(2)SMe)H][X] or [Rh(DPEphos)(COC(6)H(4)SMe)H][X], which have a trans-spanning DPEphos ligand and a coordinated ether group. Compared to analogous complexes prepared with dppe (dppe=1,2-bis(diphenylphosphino)ethane), these DPEphos complexes show significantly increased resistance towards reductive decarbonylation. The crystal structure of the reductive decarbonylation product [Rh(CO)(DPEphos)(EtSMe)][closo-CB(11)H(6)I(6)] is reported. Addition of alkene (methylacrylate) to the acyl-hydrido complexes forms the final complexes [Rh(DPEphos)(eta(1)-MeSC(2)H(4)-eta(1)-COC(2)H(4)CO(2)Me)][X] and [Rh(DPEphos)(eta(1)-MeSC(6)H(4)-eta(1)-COC(2)H(4)CO(2)Me)][X], which have been identified spectroscopically and by ESIMS/MS. Intermediate species in this transformation have been observed and tentatively characterised as the alkyl-acyl complexes [Rh(CH(2)CH(2)CO(2)Me)(COC(2)H(4)SMe)(DPEphos)][X] and [Rh(CH(2)CH(2)CO(2)Me)(COC(6)H(4)SMe)(DPEphos)][X]. In these complexes, the DPEphos ligand is now cis chelating. A model for the (unobserved) transient alkene complex that would result from addition of alkene to the acyl-hydrido complexes comes from formation of the MeCN adducts [Rh(DPEphos)(MeSC(2)H(4)CO)H(MeCN)][X] and [Rh(DPEphos)(MeSC(6)H(4)CO)H(MeCN)][X]. Changing the ligand from DPEphos to one with a CH(2) linkage, [Ph(2)P(C(6)H(4))](2)CH(2), gave only decomposition on addition of aldehyde to the acetone precursor, which demonstrated the importance of the hemiabile ether group in DPEphos. With [Ph(2)P(C(6)H(4))](2)S, the sulfur atom has the opposite effect and binds too strongly to the metal centre to allow access to productive acetone intermediates."	"Extensive vulval oedema secondary to severe pelvic infection. A 17-year-old female developed a complex pelvic abscess a few weeks post-surgical abortion. Despite surgical drainage, a debilitating infection induced a low albumen. The resulting pelvic oedema caused gross vulval oedema that was difficult to manage. She had previously been treated for chlamydia."	"Thinking about mechanisms is crucial to connecting neuroscience and education. NA"	"An albumin-butyrylcholinesterase for cocaine toxicity and addiction: catalytic and pharmacokinetic properties. Butyrylcholinesterase (BChE, EC 3.1.1.8) is important in human cocaine metabolism despite its limited ability to hydrolyze this drug. Efforts to improve the catalytic efficiency of this enzyme have led to a quadruple mutant cocaine hydrolase, &quot;CocH&quot;, that in animal models of addiction appears promising for treatment of overdose and relapse. We incorporated the CocH mutations into a BChE-albumin fusion protein, &quot;Albu-CocH&quot;, and evaluated the pharmacokinetics of the enzyme after i.v. injection in rats. As assessed from the time course of cocaine hydrolyzing activity in plasma, Albu-CocH redistributed into extracellular fluid (16% of estimated total body water) with a t(1/2) of 0.66h and it underwent elimination with a t(1/2) of 8h. These results indicate that the enzyme has ample stability for short-term applications and may be suitable for longer-term treatment as well. Present data also confirm the markedly enhanced power of Albu-CocH for cocaine hydrolysis and they support the view that Albu-CocH might prove valuable in treating phenomena associated with cocaine abuse."	"Synthesis, structure, and transannular pi-pi interaction of three- and four-layered [3.3]paracyclophanes. The synthesis of three- and four-layered [3.3]paracyclophanes ([3.3]PCPs) 3-5 has been accomplished by utilizing the (p-ethylbenzenesulfonyl)methyl isocyanide (EbsMIC) method. The structures of the three- to four-layered [3.3]PCPs 3- 5 and their diones 8, 10, and 11 have been elucidated based on the (1)H NMR spectra and finally by X-ray structural analysis. In the three-layered [3.3]PCP-dione 8, the trimethylene bridges of the [3.3]PCP unit assume a chair conformation similar to that of 2, while the [3.3]PCP-2,11-dione unit assumes a boat conformation different from that of [3.3]PCP-dione 1 with a chair conformation. On the other hand, the two [3.3]PCP units in three-layered [3.3]PCP 3 both assume a boat conformation. In the four-layered [3.3]PCP-dione 10, the two outer [3.3]PCP units assume a boat conformation while the inner dione unit has a chair conformation. The trimethylene bridges in the four-layered [3.3]PCP 4 are highly disordered even at -150 degrees C. All the outer benzene rings are distorted into a boat form while the inner ones are distorted into a twist form. In the electronic spectra, bathochromic shift and hyperchromic effect are observed, but the magnitude decreases with an increase in the number of layers and the spectra become structureless. In the charge-transfer (CT) bands of the three- to four-layered [3.3]PCPs 3- 5 with tetracyanoethylene (TCNE), two absorption maxima (lambda(max)) are observed. The effect of an increase in the layers becomes significant, and the changes in the longest wavelength lambda(max) values from two to three and three to four are ca. 60 and 50 nm, respectively. By comparison of the stereoisomeric four-layered [3.3]PCPs 4 (meso) and 5 (racemic), the helical arrangement of the trimethylene bridges of 5 shows a more efficient transannular pi-electronic interaction. In the three- to four-layered [3.3]PCP-diones, a magnitude of the CT interaction almost comparable to that of [3.3]PCP 2 was observed, and this indicates that the -CH(2)COCH(2)- bridges inhibit the CT interaction and that this tendency is supported by the calculated HOMO energy levels and observed oxidation potentials. Three- and four-layered [3.3]PCPs 3- 5 show reversible redox processes, and 4 and 5 show an electron-donating ability almost comparable to that of [3 6]CP. Very good correlation between the lambda(max) of the CT bands with TCNE and the oxidation potentials is observed."	"Primary adrenocortical insufficiency masquerading as Laugier-Hunziker syndrome. NA"	"The responsible genes in Japanese deafness patients and clinical application using Invader assay. Discovery of deafness genes has progressed but clinical application lags because of the genetic heterogeneity. To establish clinical application strategy, we reviewed the frequency and spectrum of mutations found in Japanese hearing loss patients and compared them to those in populations of European ancestry. Screening revealed that in Japanese, mutations in GJB2, SLC26A4, and CDH23, and the mitochondrial 12S rRNA are the major causes of hearing loss. Also, mutations in KCNQ4, TECTA, COCH, WFS1, CRYM, COL9A3, and KIAA1199 were found in independent autosomal dominant families. Interestingly, spectrums of GJB2, SLC26A4, and CDH23 mutations in Japanese were quite different from those in Europeans. Simultaneous screening of multiple deafness mutations based on the mutation spectrum of a corresponding population using an Invader panel revealed that approximately 30% of subjects could be diagnosed. This assay will enable us to detect deafness mutations in an efficient and practical manner in the clinical platform. We conclude that specific racial populations may have unique deafness gene epidemiologies; therefore, ethnic background should be considered when genetic testing is performed. Simultaneous examination of multiple mutations based on a population's spectrum may be appropriate and effective for detecting deafness genes, facilitating precise clinical diagnosis, appropriate counseling, and proper management."	"Synthesis and characterisation of some new aluminium derivatives of Schiff bases containing N, O and S donor atoms and the anti fertility activity of the derivative Al[SC6H4N:C(CH3)CH2COCH3]3. Some new compounds of aluminium having the general formula AI[SC(6)H(4)N:C(R) CH(2) C(O)R'](3) where R = CH(3), R' = CH(3) (1); R' = CH(3), R' = C(6)H(5) (2); R = CF(3), R' = -C = CH - CH = CHS (3); R = CF(3), R' = C(6)H(5) (4) have been synthesised by the reactions of Al(OPr(i))3 and the corresponding ligands in 1:3 molar ratios in benzene. Elemental and spectroscopic (IR, (1)H, (13)C, and (27)AI NMR) characterisation of these monomeric compounds reveals monofunctional bidentate behaviour of ligand moiety and the octahedral geometry around aluminium atom. Compound (1), AI[SC(6)H(4)N:C(CH(3))CH(2)COCH(3)], has been tested for its antifertility activity in male albino rats. The oral administration of this compound at the dose level 6.5 rag/rat/day reduced the weights of testes and epididymides. Significant decrease in sperm motility as well as sperm density resulted in the reduction of male fertility by 100%. Production of primary spermatocytes (preleptotene and pachytene), secondary spermatocytes and step-19 spermatids declined by 56.10%, 44.42 %, 63.35 % and 64.57 % respectively. These results indicate that the administration of compound (1) in male rats brought about an interference with spermatogenesis which ultimately caused infertility."	"Neural mechanisms of selective auditory attention are enhanced by computerized training: electrophysiological evidence from language-impaired and typically developing children. Recent proposals suggest that some interventions designed to improve language skills might also target or train selective attention. The present study examined whether six weeks of high-intensity (100 min/day) training with a computerized intervention program designed to improve language skills would also influence neural mechanisms of selective auditory attention previously shown to be deficient in children with specific language impairment (SLI). Twenty children received computerized training, including 8 children diagnosed with SLI and 12 children with typically developing language. An additional 13 children with typically developing language received no specialized training (NoTx control group) but were tested and retested after a comparable time period to control for maturational and test-retest effects. Before and after training (or a comparable delay period for the NoTx control group), children completed standardized language assessments and an event-related brain potential (ERP) measure of selective auditory attention. Relative to the NoTx control group, children receiving training showed increases in standardized measures of receptive language. In addition, children receiving training showed larger increases in the effects of attention on neural processing following training relative to the NoTx control group. The enhanced effect of attention on neural processing represented a large effect size (Cohen's d=0.8), and was specific to changes in signal enhancement of attended stimuli. These findings indicate that the neural mechanisms of selective auditory attention, previously shown to be deficient in children with SLI, can be remediated through training and can accompany improvements on standardized measures of language."	"The effect of ultraviolet B-induced vitamin D levels on host resistance to Mycobacterium tuberculosis: a pilot study in immigrant Asian adults living in the United Kingdom. Asian immigrants to the United Kingdom demonstrate much higher tuberculosis rates than the indigenous population. This is postulated to be because of their low vitamin D levels, consequent upon a combination of diet and their reduced ultraviolet (UV) exposure in the United Kingdom, because vitamin D enhances antimycobacterial activity in in vitro systems. The aim of this study was to examine the relationship between UVB exposure, vitamin D levels and tuberculo-immunity in Asian immigrants in the United Kingdom. Suberythemal UVB treatments were given to eight subjects on 3 consecutive days, using broadband UVB fluorescent lamps. Blood was sampled for 25-hydroxyvitamin D (25-OH D) and whole blood functional assays were performed for antimycobacterial immunity. The mean 25-OH D level increased from a baseline of 11.23 ng/ml (95% CI 6.7-20.39) to 20.39 ng/ml (95% CI 16.6-20) following UVB treatment, P&lt;0.01. However, no significant change in antimycobacterial immunity occurred following UVB exposure. This pilot study in Asian subjects with good baseline tuberculo-immunity has not supported a role for UVB-induced 25-OH D in the immune response to Mycobacterium tuberculosis."	"Novel mutations in the vWFA2 domain of COCH in two Chinese DFNA9 families. NA"	"Ultrastructural co-localization of cochlin and type II collagen in the rat semicircular canal. Cochlin and type II collagen are major constituents of the inner ear extracellular matrix. To investigate the morphological relation of cochlin and type II collagen in the rat semicircular canal, immuno-electronmicroscopic analysis was performed using the post-embedding immunogold method. Immunolabeling for cochlin was detected in the fibrillar substance underlying the supporting epithelium of the sensory cells and beneath the epithelial cells facing the endolymph in the semicircular canals. Immunolabeling for type II collagen was observed in the same fibrillar substance in the subepithelial area. The co-localization of cochlin and type II collagen in the fibrillar substance in the subepithelial area indicate that cochlin may play a role in the structural homeostasis of the vestibule acting in concert with the fibrillar type II collagen bundles."	"[Mutation screening of the COCH gene in familial and sporadic patients with late onset nonsyndromic sensorineural hearing loss among Chinese population]. To investigate the mutational of the coagulation factor C homology (COCH) gene related to autosomal dominant sensorineural nonsyndromic hearing loss (DFNA) with late onset in Chinese population. Peripheral blood samples were collected from he members of 26 DFNA families, members of 19 small DFNA families with un recognized inheritance pattern, and 22 sporadic patients with sensorineural nonsyndromic late onset hearing loss, the hearing loss of all of which occurred during the age range 10 - 40, and 100 normal controls. From different parts of China, these subjects underwent questionnaire survey too. Genomic DNA was isolated, COCH mutation was screened by PCR and sequencing, and restriction endonuclease analysis was used to detect the mutation sites of the COCH gene. The conservation in evolution of the target amino acid sequences was analyzed using CluatalX1.82 software. DNA sequencing of coding regions and exon/intron boundaries of COCH 2 - 12 exons identified a heterozygous G-to-A substitution at position 1625 in exon 12 in a large DFNA family, leading to a C542Y substitution, and a heterozygous T-to-C substitution at position 1535 in exon 12 in a small family, leading to a M512T substitutions. Both the residues of Cys542 and M512 were conserved across human, mouse, chicken, and zebrafish. These mutations were not detected in the 100 control subjects. The C542Y and the M512T mutations cause hearing loss in Chinese DFNA families."	"'If I don't like it then I can choose what I want': Welsh school children's accounts of preference for and control over food choice. The paper draws on qualitative data collected in focus groups with primary school pupils in years three and five (ages 7-11 years), carried out as part of a wider study evaluating the Primary School Free Breakfast Initiative in Wales. A total of 16 focus groups were carried out across eight schools to examine pupil's perceptions of food and food related behaviour. A key finding was the way in which control over choice of food and access to healthy/unhealthy food options differed between younger and older pupils across home, school and eating out settings. While older participants experienced and valued high levels of control over food choice in all three settings, this was not the case for younger participants. Pupils in year three had little choice, particularly at home and school, with other factors (such as security, structure and mealtime companionship) being more important to them than ability to choose what they ate. All participants in the study expressed a general preference for unhealthy as opposed to healthy food items, even when acknowledging health consequences and engaging in some compensatory strategies. The authors suggest that interventions should aim to educate and encourage food providers, such as parents/carers, schools, and food outlets, to produce a range of healthy options, and encourage informed food choice among children at a younger age."	"The influence of the extensional viscosity of very low concentrations of high molecular mass water-soluble polymers on atomisation and droplet impact. Water-soluble polymers are increasingly added to herbicide and pesticide formulations at very low concentrations (100-1000 mg L(-1)) in order to control the spray characteristics, notably to reduce spray drift and influence droplet bounce. The incorporation of polymeric adjuvants improves the efficacy of the spray solutions, thus enabling crop growers to maximise the performance of agrochemical sprays at lower dose rates of active ingredient. It is important to establish a fundamental understanding of how polymers influence the processes involved in droplet deposition. The shear and extensional viscosities of a series of high molecular mass (M(w)) poly(acrylamides) (M(w) approximately 10(6)-10(7)) have been determined at very low concentrations (100-1000 mg L(-1)). The polymer solutions demonstrated typical shear thinning characteristics under shear, and strain hardening behaviour under extension above a critical strain rate. The presence of the polymers was shown to increase the size of droplets produced in atomisation using an agricultural spray nozzle, as measured by laser diffraction. This was attributed to the increase in the extensional viscosity at the strain rates generated under pressure in the spray nozzle and was a function of both polymer concentration and M(w). In addition, the presence of polymer was found to have a significant influence on droplet bounce. The presence of very low concentrations of high molecular mass poly(acrylamides) significantly influences the size of droplets formed on atomisation and subsequent bounce characteristics. Large extensional viscosities generated above a critical strain rate are responsible for both processes."	"Tris[μ-1,2-bis-(diphenyl-phosphino)-ethane]-1:2κP:P';1:3κP:P';2:3κP:P'-di-μ-bromido-1:2κBr:Br-bromido-3κBr-tricopper(I) acetone hemisolvate. In the crystal structure of the title compound, [Cu(3)Br(3)(C(26)H(24)P(2))(3)]·0.5CH(3)COCH(3), two of the Cu centers are bridged by two bromide anions forming a Cu(μ-Br)(2)Cu core, which is further bridged by a 1,2-bis-(diphenyl-phosphino)-ethane (dppe) ligand. The third Cu center is terminally bound to another bromide ligand and is connected to the other two Cu atoms by bridging dppe ligands, forming a triangular cluster unit. The acetone solvent mol-ecule exhibits twofold disorder about an inversion centre at (, 1, 0). The crystal structure is stabilized by inter-molecular C-H⋯Br hydrogen bonds."	"(Acetone-κO){6,6'-di-tert-butyl-2,2'-[1,2-phenyl-enebis(nitrilo-methyl-idyne)]diphenolato-κO,N,N',O'}zinc(II). The mol-ecule of the title compound, [Zn(C(28)H(30)N(2)O(2))(CH(3)COCH(3))], lies across a mirror plane with the Zn(II) ion and the acetone mol-ecule on the mirror plane. The Zn(II) ion is in a five-coordinate distorted square-pyramidal N(2)O(3) environment, with the two imine N and two phenolic O atoms of the tetra-dentate Schiff base dianion in the basal plane and the acetone mol-ecule in the apical position. The central benzene ring makes a dihedral angle of 16.5 (2)° with the two outer phenolate rings. In the crystal structure, the mol-ecules are arranged into anti-parallel columns along the a axis."	"[μ-N,N'-Bis(3-meth-oxy-2-oxidobenzyl-idene)propane-1,3-diamine]trinitratocopper(II)terbium(III) acetone solvate. In the title complex, [CuTb(C(19)H(20)N(2)O(4))(NO(3))(3)]·CH(3)COCH(3), the Cu(II) atom is four-coordinated by two O atoms and two N atoms from the deprotonated Schiff base in a square-planar geometry, while the Tb(III) atom is ten-coordin-ated by four O atoms from the deprotonated Schiff base and six O atoms from three bidentate nitrate anions. The compound is isostructural with the previously reported Gd(III) analogue [Elmali &amp; Elerman (2004 ▶). Z. Naturforsch. Teil B, 59, 535-540], which was described in the space group P1 with two formula units in the asymmetric unit. The crystal stucture is, in fact, centrosymmetric and is described here in the space group P with one formula unit in the asymmetric unit."	"μ-1,2-Bis-(diphenyl-phos-phino)-ethane-κP:P'-bis-{[1,2-bis-(diphenyl-phosphino)-ethane-κP,P']bromidocopper(I)} acetone disolvate. In the crystal structure of the title compound, [Cu(2)Br(2)(dppe)(3)]·2CH(3)COCH(3) [dppe is 1,2-bis-(diphenyl-phosphino)-ethane, C(26)H(24)P(2)], the two Cu centers are bridged by a dppe ligand and each metal center carries one chelating dppe unit, with the fourth coordination site available for the Br(-) anion. The mol-ecule is centrosymmetric, with the center of symmetry located between the methyl-ene C atoms of the bridging dppe ligand. The crystal structure is stabilized by intra-molecular C-H⋯Br hydrogen bonds and inter-molecular π-π inter-actions, with a centroid-to-centroid distance of 3.2055 (1) Å."	"Soft tissue injuries: introduction and basic principles. This is the first in a series of eight papers covering soft tissue injury. Anatomical, pathophysiological, clinical and pharmacological aspects are discussed to give an overview."	"[Audiological and vestibular evaluation of new coagulation factor C homology mutation carriers in a Chinese family]. To analyze the clinical features of audiological and vestibular function in a Chinese family with late onset autosomal dominant nonsyndromic sensorineural hearing loss. Comprehensive audiological and vestibular evaluation including pure tone audiometry, auditory brainstem response (ABR), electrocochleogram (EcochG), oculomotor testing, caloric tests, rotational testing, computerized dynamic posturography and vestibular evoked myogenic potentials (VEMP) were conducted to identify the hearing and vestibular impairment. All affected family members shared sensorineural hearing loss with full penetrance starting between the second and fifth decade of life as a high frequency loss which progresses to a severe to profound loss at the sixth to seventh decade. The extensive vestibular evaluation indicated that all affected members performed normally in computerized dynamic posturography and caloric testing. Impairment of the saccular otolith in all of six affected members was suggested by results of the VEMP test. The velocity step test generated abnormal time constants and sinusoidal oscillation test generated abnormal gains and phase in affected members indicated that horizontal canal vestibular hyporeflexia in history. All affected subjects examined in this family showed completely normal ocular motor responses in oculomotor testing, including smooth pursuit, optokinetic nystagmus, gaze and saccade. The predominant feature of the Chinese DFNA9 family was that all the affected subjects harboring COCH mutation in the vWFA2 domain didn't suffer the vestibular symptoms during their life time and comprehensive vestibular assessment revealed only subtle vestibular hypofunction in affected members of this family. There is a genotype-phenotype correlation in DFNA9."	"Cochlin isoforms and their interaction with CTL2 (SLC44A2) in the inner ear. Choline transporter-like protein 2 (CTL2) is a multi-transmembrane protein expressed on inner ear supporting cells that was discovered as a target of antibody-induced hearing loss. Its function is unknown. A 64 kDa band that consistently co-precipitates with CTL2 from inner ear extracts was identified by mass spectroscopy as cochlin. Cochlin is an abundant inner ear protein expressed as multiple isoforms. Its function is also unknown, but it is suspected to be an extracellular matrix component. Cochlin is mutated in individuals with DFNA9 hearing loss. To investigate the CTL2-cochlin interaction, antibodies were raised to a cochlin-specific peptide. The antibodies identify several cochlin polypeptides on western blots and are specific for cochlin. We show that the heterogeneity of the cochlin isoforms is caused, in part, by in vivo post-translational modification by N-glycosylation and, in part, caused by alternative splicing. We verified that antibody to CTL2 co-immunoprecipitates cochlin from the inner ear and antibody to cochlin co-immunoprecipitates CTL2. Using cochlear cross-sections, we show that CTL2 is more widely distributed than previously described, and its prominent expression on cells facing the scala media suggests a possible role in homeostasis. A prominent but previously unreported ribbon-like pattern of cochlin in the basilar membrane was demonstrated, suggesting an important role for cochlin in the structure of the basilar membrane. CTL2 and cochlin are expressed in close proximity in the inner sulcus, the spiral prominence, vessels, limbus, and spiral ligament. The possible functional significance of CTL2-cochlin interactions remains unknown."	"Repeatability of the TEN(HL) test for detecting cochlear dead regions. The aim of this study was to investigate the short-term test-retest repeatability of the TEN(HL) test. Participants comprised 15 teenagers (mean age 14 years) with long-standing severe-to-profound hearing impairment, and 20 adults (mean age 74 years) with moderate-to-severe hearing impairment. Testing was repeated using the same equipment and procedures, after an interval of less than five days. The number of ears that met the criteria for diagnosing a cochlear dead region on initial test was three (13%) and nine (22.5%) for the teenagers and adults, respectively. Overall, the number of ears that changed category on retest was two (8%) and three (7.5%) for the teenagers and adults, respectively. Except at 1.5 and 4 kHz, the number of ears that changed category at individual frequencies was less than 5% for both groups of participants. TEN(HL) test repeatability was good when the results were categorized by ear or by frequency. The majority of ears that changed category on retest just met the dead-region criteria at an isolated frequency. An immediate retest is advisable in such cases."	"Origin and thermodynamic properties of the instability of synthetic azo colorants in gum arabic solutions. The instability of some industrially important synthetic azo colorants, including sunset yellow, azorubine, and allura red, toward gum arabic in aqueous solution has been a long-standing problem for the beverage and confectionery industries. Precipitation of these colorants causes the deterioration of product appearance and properties. This work examines the origin and nature of the problem by analysis of the precipitate and thermodynamic studies of gum arabic-colorant interactions using isothermal titration calorimetry (ITC). The presence of divalent alkaline earth metals in gum arabic samples, that is, calcium and magnesium, is shown to be responsible for the precipitation of the azo colorants. There is no direct interaction between gum arabic and the colorant molecules, and the precipitate is formed likely due to the mediation/bridging by the divalent cations. The thermodynamic knowledge gained from the ITC studies, for example, binding affinity, stoichiometry, and enthalpy, enables interpretation of many industrial observations."	"Repeatability of central aortic blood pressures measured non-invasively using radial artery applanation tonometry and peripheral pulse wave analysis. To estimate the repeatability of radial pulse wave analysis (PWA) in measuring central systolic and diastolic blood pressures (cSBP/cDBP), pulse pressure (cPP), augmentation pressure (cAP) and pulse pressure amplification (PPA). After 15 min supine rest, 20 ambulant patients (aged 27-82 years; four female) underwent four SphygmoCor PWA measurements on a single occasion. Two nurses independently undertook two measurements in alternate order, blind to their colleague's measurements. Analysis was by Bland-Altman limits of agreement (LOA). Heart rate and brachial blood pressure (BP) were stable during assessment. Based on the average of two PWA measurements between-observer differences (LOA, mean difference +/- 2SD) were small (cSBP 1.5 +/- 10.9 mmHg; cDBP 0.4 +/- 5.2 mmHg; cAP 0.5 +/- 4.5 mmHg; cPP 1.1 +/- 10.5 mmHg; PPA -0.5% +/- 5.6%). Between-observer differences were much greater for single/initial PWA measurement (cSBP 3.6 +/- 15.9 mmHg; cDBP 2.8 +/- 8.8 mmHg; cAP 0.7 +/- 5.8 mmHg; cPP 0.8 +/- 13.6 mmHg; PPA -1.2 +/- 9.4%). Within-observer LOA were very similar for both nurse A (cSBP -4.2 +/- 14.1 mmHg; cDBP -4.6 +/- 13.1 mmHg; cAP -0.4 +/- 4.4 mmHg; cPP 0.5 +/- 11.0 mmHg; PPA 0.7% +/- 9.0%) and nurse B (cSBP 0.0 +/- 12.1 mmHg; cDBP 0.2 +/- 8.5 mmHg; cAP -0.1 +/- 4.4 mmHg; cPP -0.2 +/- 11.9 mmHg; PPA -0.7% +/- 10.6%). Non-invasive assessment of central aortic pressures using PWA on a single occasion is highly repeatable in ambulant patients even when used by relatively inexperienced staff."	"Quantitative analysis of mRNA in human temporal bones. Well-preserved mRNA could be extracted from frozen human inner ears. Therefore, this study demonstrates that analysis of mRNA could be performed to study the molecular mechanisms of inner ear disorders using human specimens. Analysis of RNA as well DNA is requisite to study the molecular mechanisms of inner ear disorders. Methods of isolating RNA from experimental animals have been established, while isolation of RNA from human inner ears is much more challenging. In the present study, we demonstrate a method by which messenger RNA (mRNA) was extracted from human inner ears and quantitatively analyzed. COCH mRNA as well as GAPDH mRNA was extracted from membranous labyrinths dissected from three formalin-fixed and three frozen human temporal bones, removed at autopsy. The length of COCH mRNA and quantity of GAPDH mRNA was compared between the two groups by quantitative RT-PCR. COCH mRNA could be amplified as much as 976 bp in all three frozen specimens. By contrast, it was amplified to 249 bp in two of the three formalin-fixed specimens, with no amplification observed in the remaining. The quantity of amplifiable GAPDH mRNA in the formalin specimens was only 1% of that of the frozen specimens."	"Indices of cardiovascular function derived from peripheral pulse wave analysis using radial applanation tonometry: a measurement repeatability study. Pulse wave analysis (PWA) using applanation tonometry is a non-invasive technique for assessing cardiovascular function. It produces three important indices: ejection duration index (ED%), augmentation index adjusted for heart rate (AIX@75), and subendocardial viability ratio (SEVR%). The aim of this study was to assess within- and between-observer repeatability of these measurements. After resting supine for 15 minutes, 20 ambulant patients (16 male) in sinus rhythm underwent four PWA measurements on a single occasion. Two nurses (A &amp; B) independently and alternately undertook PWA measurements using the same equipment (Omron HEM-757; SphygmoCor with Millar hand-held tonometer) blind to the other nurse's PWA measurements. Within- and between-observer differences were analysed using the Bland-Altman ;limits of agreement' approach (mean difference +/- 2 standard deviations, 2SD). Mean age was 56 (blood pressure, BP 136/79; pulse rate 64). BP/PWA measurements remained stable during assessment. Based on the average of two PWA measurements the mean +/- 2SD between-observer difference in ED% was 0.3 +/- 2.0; AIX@75 1.0 +/- 3.9; and SEVR% 1.7 +/- 14.2. Based on a single PWA measurement the between-observer difference was ED% 0.3 +/- 3.3; AIX@75 1.7 +/- 6.9; and SEVR% 0.6 +/- 22.6. Within-observer differences for nurse-A were ED% 0.0 +/- 5.4; AIX@75 1.5 +/- 7.0; and SEVR% 1.7 +/- 39.0 (nurse-B: 0.1 +/- 3.8; 0.1 +/- 8.0; and 0.6 +/- 23.3, respectively). PWA demonstrates high levels of repeatability even when used by relatively inexperienced staff and has the potential to be included in the routine cardiovascular assessment of ambulant patients."	"Involving families who have deaf children using a Family Needs Survey: a multi-agency perspective. Meeting the needs of deaf children and their families is multidisciplinary. Models of multi-agency working are diverse, and there is little evidence on outcome for family and child. Effective collaboration is an essential part of multi-agency working, and how this is achieved is an area that warrants research. An approach was developed to identify family needs using a need identification tool called a Family Needs Survey (FNS) in conjunction with a multi-agency meeting. The FNS was introduced in a pilot study to involve parents of deaf children with services and to identify their needs from their perspective. A clear pathway was determined for application of the FNS. A model of multi-agency working was developed that involves families directly with different services at one time. Outcomes were measured by uptake of the FNS, parental attendance at multi-agency meetings, and completion of a parent evaluation questionnaire. Discussion of the FNS at a multi-agency meeting facilitates communication between professionals and between professionals and parents. There is some evidence that the FNS may be a useful tool. The majority of parents completed a FNS before multi-agency meetings and have indicated they are happy to share the information with other professionals."	"Photolysis of 4-oxo-2-pentenal in the 190-460 nm region. We have studied the gas-phase photolysis of 4-oxo-2-pentenal by laser photolysis combined with cavity ring-down spectroscopy. Absorption cross sections of cis- and trans-4-oxo-2-pentenal have been measured in the 190-460 nm region. The product channel following 193, 248, 308, and 351 nm photolysis of 4-oxo-2-pentenal was investigated. The HCO radical is a photodissociation product of 4-oxo-2-pentenal only at 193 and 248 nm. The HCO quantum yields from the photolysis of a mainly trans-4-oxo-2-pentenal sample are 0.13 +/- 0.02 and 0.014 +/- 0.003 at 193 and 248 nm, where errors quoted (1sigma) represent experimental scatter. The HCO quantum yields from the photolysis of a mainly cis-4-oxo-2-pentenal sample are 0.078 +/- 0.012 and 0.018 +/- 0.007 at 193 and 248 nm, where errors quoted (1sigma) represent experimental scatter. The end-products from 193, 248, 308, and 351 nm photolysis of 4-oxo-2-pentenal (the 4-oxo-2-pentenal sample had a tran/cis ratio of 1.062:1) have been determined by FTIR. Ethane, methyl vinyl ketone, and 5-methyl-3H-furan-2-one have been observed, suggesting the occurrence of 4-oxo-2-pentenal photolysis pathways such as CH(3)COCH=CHCHO + hnu --&gt; CH(3) + COCH=CHCHO, CH(3)COCH=CHCHO + hnu --&gt; CH(3)COCH=CH(2) + CO, and CH(3)COCH=CHCHO + hnu --&gt; 5-methyl-3H-furan-2-one. The estimated yields for the CH(3) + COCH=CHCHO channel are about 25%, 33%, 31%, and 23% at 193, 248, 308, and 351 nm, respectively. The absolute uncertainties in the determination of CH(3) + COCH=CHCHO yields are within 55% at 193 nm, and 65% at 248, 308, and 351 nm. The estimated yields for the CH(3)COCH=CH(2) + CO channel are about 25%, 23%, 40%, and 33% at 193, 248, 308, and 351 nm, respectively. The absolute uncertainties in the determination of CH(3)COCH=CH(2) yields are within 80% at 193 and 248 nm and 65% at 308 and 351 nm. The estimated yields for the 5-methyl-3H-furan-2-one channel are about 1.2%, 2.1%, 5.3%, and 5.5% at 193, 248, 308, and 351 nm, respectively. The absolute uncertainties in the determination of 5-methyl-3H-furan-2-one yields are about 23%, 86%, 40%, and 46% at 193, 248, 308, and 351 nm. Results from our investigation indicate that photolysis is a dominant removal pathway for 4-oxo-2-pentenal degradation in the atmosphere."	"Spectral analysis and in vitro cytotoxicity profiles of novel organotin(IV) esters of 2-maleimidopropanoic acid. Six novel triorganotin(IV) 2-maleimidopropanoato complexes: R3SnOCOCH3(CH)(COCH)2, (R: Me(l), Et(2), n-Pr(3), n-Bu(4), Ph(5), Bz(6) have been synthesized. Their solid-state configuration has been determined by FT IR and lI9mSn Mössbauer spectroscopy. The tin(IV) atom is five-coordinated in all the complexes with 2-maleimidopropanoic acid behaving as a monoanionic bidentate ligand coordinating the tin(IV) atom through a chelating or bridging carboxylate group. The solution-state configuration has been elucidated by means of 1H-, 13C- and 119Sn-NMR spectroscopy which assigned a tetrahedron. Elemental analysis and FAB MS data also supported a 1:1 metal to ligand stoichiometry. The title complexes have been screened in vitro for anti-tumour, anti-fungal, anti-leishmanial and urease inhibition activities and displayed promising results."	"Three kinds of rhymes: An ERP study. In a simple prime-target visual rhyming paradigm, pairs of words, nonwords, and single letters elicited similar event-related potential (ERP) rhyming effects in young adults. Within each condition, primes elicited contingent negative variation (CNV) while nonrhyming targets elicited more negative waveforms than rhyming targets within the 320-500ms (N400/N450) time window. The target rhyming effect, apparently primarily an index of phonological processing, was similar across conditions but tended to be smaller in mean amplitude for letters. One of the first reports of such a letter rhyming effect in the ERP literature, these findings could be important developmentally because letter rhyme tasks simultaneously index the two best predictors of ease of learning to read: letter name knowledge and phonological awareness."	"Cochlin in the eye: functional implications. Aqueous humor is actively produced in the ciliary epithelium of the anterior chamber and has important functions for the eye. Under normal physiological conditions, the inflow and outflow of the aqueous humor are tightly regulated, but in the pathologic state this balance is lost. Aqueous outflow involves structures of the anterior chamber and experiences most resistance at the level of the trabecular meshwork (TM) that acts as a filter. The modulation of the TM structure regulates the filter and its mechanism remains poorly understood. Proteomic analyses have identified cochlin, a protein of poorly understood function, in the glaucomatous TM but not in healthy control TM from human cadaver eyes. The presence of cochlin has subsequently been confirmed by Western and immunohistochemical analyses. Functionally, cochlin undergoes multimerization induced by shear stress and other changes in the microenvironment. Cochlin along with mucopolysaccharide deposits has been found in the TM of glaucoma patients and in the inner ear of subjects affected by the hearing disorder DNFA9, a late-onset, progressive disease that also involves alterations in fluid shear regimes. In vitro, cochlin induces aggregation of primary TM cells suggesting a role in cell adhesion, possibly in mechanosensation, and in modulation of the TM filter."	"Transport of chloride and carboxyfluorescein through phospholipid vesicle membranes by heptapeptide amphiphiles. Seven synthetic anion transporters (SAT) of the general form R(2)N-COCH(2)OCH(2)CO-(Gly)(3)-Pro-(Gly)(3)-OR' were prepared. Three pairs of compounds each contained twin n-hexyl, n-decyl, and n-octadecyl (R) groups at the N-terminus and one contained twin n-tetradecyl groups. Three of the compounds were C-terminated by benzyl and three by heptyl (R') residues. The ability of these compounds to mediate ion release from phospholipid vesicles was assessed. Chloride release was measured by ion selective electrode measurements and by chloride quenching of the fluorescent dye lucigenin. Transport of the anion carboxyfluorescein (CF) was measured by fluorescence dequenching. Differences in both the C- (R') and N-terminal (R) residues within the ionophores affected anion transport. The chloride release data acquired by ion selective electrode and fluorescence methods were similar but not identical. A possible carrier mechanism for Cl(-) transport was discredited. Both Cl(-) and CF anions were released from vesicles by these compounds. The results of CF and Cl(-) transport showed good consistency when the ionophore's N-terminal chains were either decyl or octadecyl but not when they were hexyl. The transport of CF and Cl(-) appears to be fundamentally different when R is C(6) compared to C(10) or C(18). Differences between the behavior of SATs with Cl(-) and CF were also reflected in negative ion mass spectrometric studies."	"Synthetic, biologically active amphiphilic peptides. Amphiphilic peptides typically consist of a peptide portion that may be 5-25 (or more) amino acids in length. The hydrophobic portion may be a single fatty acid residue, but can also be more elaborate. The main focus of this article lies on the family of synthetic anion binders (SATs) of the general structure (R(1))(2)N-COCH(2)OCH(2)CO-(Aaa)(n)-OR(3). The most-common R(1) group is the octadecyl (C(18)H(37)) group. The most studied peptide sequence in this family is (Gly)(3)-Pro-(Gly)(3), although different sequences (and longer and shorter peptides) have been prepared as well. The C-terminal ester residue providing the most effective anion release from liposomes is heptyl (C(7)H(15)), although many others have been examined. The compound (C(18)H(37))(2)N-COCH(2)OCH(2)CO-(Gly)(3)-Pro-(Gly)(3)-OBn (Bn=benzyl) was found to mediate Cl(-) transport in mouse epithelial cells."	"Phenotype description of a novel DFNA9/COCH mutation, I109T. This is a report of the audiological and vestibular characteristics of a Dutch DFNA9 family with a novel mutation, I109T, in the LCCL domain of COCH. From the family with the novel I109T COCH mutation, audiometric data were collected and analyzed longitudinally. Results were compared to those obtained in previously identified P51 S, G88E, and G87W COCH mutation carriers. Special attention was also given to a comparison of age-related features such as progressive hearing loss and vestibular impairment. A novel mutation (I109T) in COCH segregates with hearing impairment and vestibular dysfunction in the present family. Pure tone thresholds, phoneme recognition scores, and vestibular responses of the I109T mutation carriers were essentially similar to those previously established in P51S, G87W, and G88E mutation carriers. Deterioration of hearing in the I109T mutation carriers started at 43 years of age, and vestibular function deteriorated at least 7 years later. The phenotype associated with the novel COCH (I109T) mutation is largely similar to that associated with P51S and G88E mutation carriers. However, subtle differences in terms of onset age and rate of progression seem to exist."	"Repeatability of the measurement of augmentation index in the clinical assessment of arterial stiffness using radial applanation tonometry. Aortic augmentation index (AIx) measured using applanation tonometry is a non-invasive indicator of arterial stiffness. The objective of this study was to assess its repeatability when used by nurses with limited experience of the technique. Blood pressure/augmentation index (BP/AIx) was measured 4 times in 20 consecutive ambulant patients (16 male) after they rested supine for 15 min. Two nurses independently and alternately measured BP/AIx using the same equipment (Omron HEM-757; SphygmoCor with Millar hand-held tonometer). Nurses were blinded to patient medical records and their colleague's AIx/BP. 'Within' and 'between' observer differences were assessed using intra-class correlation coefficients (rI) and 95 % limits of agreement (95 % LoA) derived from Bland-Altman plots. Mean age was 56 (mean BP 136/79; mean pulse 64). Mean AIx was 24.1 (range 2.8 to 41.0). Both 'between' and 'within' observer repeatability was very high, with intra-class correlation coefficients ranging from 0.92 to 0.98. Mean AIx readings 'between' observers differed by only 0.68 (95 % CI -0.24 to 1.59) with a high rI (0.98; 95 % CI 0.95 to 0.99) and a narrow 95 % LoA (-3.22 to 4.57). The 95 % LoA for 'within' observer repeatability was -6.75 to 7.95. Differences in AIx measurement did not vary over time or with increasing levels of AIx. Even when undertaken by relatively inexperienced operators, both 'within' and 'between' observer repeatability of AIx measurement is very high. Such non-invasive assessment of arterial stiffness has the potential to be included in the clinical assessment of ambulant patients."	"Aromatic nucleophilic substitution (SNAr) reactions of 1,2- and 1,4-halonitrobenzenes and 1,4-dinitrobenzene with carbanions in the gas phase. In the gas-phase reactions of halonitro- and dinitrophenide anions with X (X = F, Cl, Br, NO(2)) and NO(2) groups in ortho or para position to each other with selected C-H acids: CH(3)CN, CH(3)COCH(3), and CH(3)NO(2), products of the S(N)Ar-type reaction are formed. Nitrophenide anions are generated by decarboxylation of the respective nitrobenzenecarboxylate anions in ESI ion source and the S(N)Ar reaction takes place either in the medium-pressure zone of the ion source or in the collision chamber of the triple quadrupole mass spectrometer. In the case of F, Cl, and NO(2) derivatives, the main ionic product is the respective [NO(2)-Ph-CHR](-) anion (R = CN, COCH(3), NO(2)). In the case of Br derivatives, the main ionic product is Br(-) ion because it has lower proton affinity than the [NO(2)-Ph-CHR](-) anion (for R = CN, COCH(3)). For some halonitrophenide anion C-H acid pairs of reactants, the S(N)Ar reaction is competed by the formation of halophenolate anions. This reaction can be rationalized by the single electron-transfer mechanism or by homolytic C-H bond cleavage in the proton-bound complex, both resulting in the formation of the halonitrobenzene radical anion, which in turn undergoes -NO(2) to -ONO rearrangement followed by the NO(.) elimination."	"Dyspraxia or developmental coordination disorder? Unravelling the enigma. Dyspraxia is an enigma to many people, both professional and lay alike--what is it, how does it relate to developmental coordination disorder and associated conditions, how common is it, how is it recognised and diagnosed and how should it be managed? This article attempts to unravel this enigma by: dealing with the terminology of coordination difficulties from the &quot;clumsy child syndrome&quot; through &quot;dyspraxia&quot; to &quot;developmental coordination disorder (DCD)&quot;; briefly examining the debate as to whether dyspraxia or DCD should be regarded as a medical or social disorder; discussing the differential diagnosis of dyspraxia or DCD; considering the assessment of children with dyspraxia or DCD; reviewing the range of current treatment approaches in the UK."	"Behçet's disease. Behçet's disease (BD) is a chronic, relapsing multisystem vasculitis with predominant involvement of the oral and genital mucosa. It has a worldwide distribution, but the prevalence is highest in Central Asia and the Far East (along the ancient 'Silk Route'). Genetic, environmental, immunological and haemostatic factors play a role in the aetiopathogenesis. The International Study Group for BD proposed criteria for the diagnosis of this condition, the essential feature being recurrent oral ulceration. Genital ulcers and skin manifestations are common, while ocular changes are the most important cause of morbidity. Almost any organ in the body can be involved, and systemic involvement may portend a poorer prognosis. There is no pathognomonic test for BD and the diagnosis is made on clinical findings. Treatment of BD would require multidisciplinary cooperation, and early referral to an ophthalmologist is advisable to prevent ocular morbidity. Topical and systemic agents (colchicine, dapsone and thalidomide) are useful in controlling exacerbation of the oral and genital ulcers. Severe disease may require immunosuppressive agents and, more recently, biological agents have been used successfully. It tends to follow an unpredictable course, and the eventual prognosis depends on the systemic involvement."	"Theoretical study of the electronic structure of MCH(2)(+)(M=Fe,Co,Ni). State of the art coupled cluster (CC) methods are applied to accurately characterize the ground state electronic structure and photoelectron spectra of transition metal carbene ions MCH(2) (+) (M=Fe, Co, and Ni). The geometries and energies of the lowest energy quartet, triplet, and doublet electronic states as well as several low-lying vertical excitation energies of FeCH(2) (+), CoCH(2) (+), and NiCH(2) (+) are reported. The excitation energies are computed using the equation-of-motion CC and for states of different symmetries, by the energy differences of single reference ground and excited states (Delta-CC). The latter employ several reference states; the unrestricted Hartree-Fock, restricted open shell Hartree-Fock, and unrestricted Kohn-Sham. We conclude that the (2)A(1) electronic ground state of NiCH(2) (+) is separated by about 30.0 kJ/mol from the next highest state, and the lowest (4)B(1) and (4)B(2) states of FeCH(2) (+) as well as the (3)A(2) and (3)A(1) states of CoCH(2) (+) are nearly degenerate. The presence of metal-pi*(MCH(2)) charge transfer states with significant oscillator strengths in the visible/near-UV energy domain of the theoretical spectra of FeCH(2) (+) and CoCH(2) (+) are at the origin of the photofragmentation of these compounds observed after irradiation between 310 and 360 nm."	"Real-time PCR method with statistical analysis to compare the potential of DNA isolation methods to remove PCR inhibitors from samples for diagnostic PCR. A real-time PCR method for fast comparison of different DNA isolation methods to remove PCR inhibitors from samples is presented. A fixed amount of target-200 copies of a 79-bp region of the COCH gene of the zebrafish (Danio rerio)-was added to each PCR reaction together with isolated DNA from different types of samples including chicken feces. Four commercial DNA isolation kits and a chelex-based technique were compared using this method. The copy numbers calculated and the endpoint fluorescence were statistically compared to the values of 22 control samples containing the control target and water instead of isolated DNA, processed together in the same PCR run. The level of the endpoint fluorescence was more often negatively influenced by inhibitors than the copy number calculated, suggesting a more pronounced effect on the plateau phase of the reaction by limiting one or more compounds in the PCR reaction."	"Vertical corneal striae in families with autosomal dominant hearing loss: DFNA9/COCH. Investigation of a possible association between vertical corneal striae and mutations in the COCH gene, observed in four DFNA9 families with autosomal dominant hearing loss and vestibular dysfunction. Prospective case series. Ophthalmologic examinations with photography of the cornea after instillation of fluorescein were performed in 98 family members with 61 mutation carriers of four DFNA9 families at the Radboud University Nijmegen Medical Centre. Families 1 and 2 harbor the Pro51Ser mutation, and families 3 and 4 harbor the Gly88Glu and the Gly87Trp mutation, respectively. Statistical analysis was performed to find an association between the vertical corneal striae and the COCH mutation for each family and to test whether the four families were different in this respect. The vertical corneal striae were exclusively visible after instillation of fluorescein. They caused minor problems, as dry eye symptoms, and were not present in the general Dutch ophthalmologic population. The striae were present from an age of 47 years in 32 individuals, of whom 27 individuals had a COCH mutation. Statistical analysis on the striae and the COCH mutations showed a significant association in families 1, 2, and 3 (P = .0006), but not in family 4 (P = .63). Data analysis demonstrated a significant association between vertical corneal striae and the Pro51Ser and Gly88Glu mutations in the COCH gene in DFNA9 families 1, 2, and 3 with cochleovestibular dysfunction. Our findings suggest that the vertical corneal striae and cochleovestibular dysfunction may be caused by the same COCH mutations."	"Multiple steps and critical behaviors of the binding of calcium to alginate. Previous research on the binding and gelation of calcium/alginate in aqueous solution were mostly conducted in the (semi-)concentrated regime, and it did not provide details of the binding process and the formation of egg-box junctions. In the present investigation, the binding of calcium to alginate, of low and high molecular weight and different guluronate/mannuronate ratios, was investigated in dilute solutions using isothermal titration calorimetry (ITC), Ca2+-selective potentiometry, and viscometry techniques. The results reveal three distinct and successive steps in the binding of calcium to alginate with increased concentration of Ca ions. They were assigned to (i) interaction of Ca2+ with a single guluronate unit forming monocomplexes; (ii) propagation and formation of egg-box dimers via pairing of these monocomplexes; and (iii) lateral association of the egg-box dimers, generating multimers. The third step has different association modes depending on the molecular weight of alginate. The boundaries between these steps are reasonably critical, and they closely correlate with the Ca/guluronate stoichiometry expected for egg-box dimers and multimers with 2/1 helical chains. The formation of egg-box dimers and their subsequent association are thermodynamically equivalent processes and can be fitted by a model of independent binding sites. The binding of Ca to alginates of different guluronate contents is controlled by a balance between enthalpy and entropy."	"Clinical characteristics of a Dutch DFNA9 family with a novel COCH mutation, G87W. The present study aims to report audiological and vestibular characteristics of a Dutch DFNA9 family with a novel mutation, G87W, in the LCCL domain of COCH. From the family with the novel G87W COCH mutation audiometric data were collected and analyzed longitudinally. Results were compared with those obtained in previously identified P51S COCH mutation carriers (n = 74) and with those obtained in G88E mutation carriers. Special attention was also given to a comparison of age-related features, such as progressive hearing loss and vestibular impairment. A novel mutation (G87W) in COCH is indicative of hearing impairment and vestibular dysfunction in the present family. Pure-tone thresholds, phoneme recognition scores, and vestibular responses of the G87W mutation carriers were essentially similar to those previously established in the P51S and G88E mutation carriers. Deterioration of hearing and vestibular function in the G87W mutation carriers started at the age of 43 years. Remarkably, similar to G88E mutation carriers, the proportion of patients over 40 years of age who developed complete vestibular areflexia was significantly lower for the G87W mutation carriers than for the P51S mutation carriers. In conclusion, the phenotype associated with the novel COCH (G87W) mutation is largely similar to that associated with the P51S and G88E mutation carriers. However, subtle differences in terms of onset age and rate of progression seem to exist."	"Thermochemistry of acetonyl and related radicals. Density functional and ab initio calculations at CBS-QB3 levels of theory were employed with a series of isodesmic reactions to determine the thermochemistry of the 2-oxopropyl or acetonyl radical (CH(3)COC*H2). In turn, this was used to determine formation enthalpies of 2-oxoethyl or formylmethyl (C*H(2)CHO), 2-oxobutyl (C*H(2)COC(2)H(5)), 1-methyl-2-oxopropyl or methylacetonyl (C*H(CH(3))COCH(3)), 1-methyl-2-oxobutyl (C*H(CH(3))COC(2)H(5)), and 3-oxopentyl (C*H(2)CH2COC(2)H(5)). Our computed standard enthalpy of formation of -34.9 +/- 1.9 kJ mol-1 and a resonance stabilization energy of approximately 22 kJ mol(-1) for acetonyl are in good agreement with recent re-determinations, which have indicated a substantial lowering in the long-established value for DeltaH(f)o (298.15 K). A bond dissociation energy of 401 kJ mol(-1) is suggested for the C-H bond in acetone with consistent values for the others. The calculations support the enthalpy of formation of acetaldehyde obtained from combustion experiments of -166.1 kJ mol(-1) rather than the figure of -170.7 kJ mol(-1) extracted from enthalpies of reduction and, in addition, serve to reduce the uncertainty in DeltaH(f)o the 2-oxoethyl radical to +13 +/- 2 kJ mol(-1)."	"[Mapping of gene underlying autosomal dominant non-syndromic hearing loss(DFNA)]. Hereditary non-syndromic sensorineural hearing loss is a genetically highly heterogeneous group of disorders. To date, at least 50 loci for autosomal dominant non-syndromic sensorineural hearing loss (DFNA) have been identified by linkage analysis. Here we report a huge family with late onset autosomal dominant hereditary non-syndromic hearing loss. In this family, 73 of 170 family members have been conducted physical examination, pure-tone audiometry, immittance testing and auditory brainstem response testing (ABR). The results indicated that 39 of 73 tested family members have sensorineural hearing loss in various degrees. No associated visible abnormalities in other systems were found in this family. After exclusion of the 14 known DFNA loci with markers from the Hereditary Hearing Loss Homepage (URL: http://dnalab-www.uia.ac.be/dnalab/hhh), a genome wide scan was carried out using 382 highly informative microsatellite markers at approximately 9.2 cM intervals throughout the genome. Linkage analysis was carried out under a fully penetrant autosomal dominant mode of inheritance with no phenocopies. A maximum two-point LOD score of 6.69 at theta=0 was obtained for marker D14S1040. Haplotype analysis placed the locus within a 7.6 cM genetic interval defined by marker D14S1021 and D14S70, overlapping with the DFNA9 locus."	"Controlled synthesis, characterization, and catalytic properties of Mn(2)O(3) and Mn(3)O(4) nanoparticles supported on mesoporous silica SBA-15. A method established in the present study has proven to be effective in the synthesis of Mn(2)O(3) nanocrystals by the thermolysis of manganese(III) acetyl acetonate ([CH(3)COCH=C(O)CH(3)](3)-Mn) and Mn(3)O(4) nanocrystals by the thermolysis of manganese(II) acetyl acetonate ([CH(3)COCH=C(O)-CH(3)](2)Mn) on a mesoporous silica, SBA-15. In particular, Mn(2)O(3) nanocrystals are the first to be reported to be synthesized on SBA-15. The structure, texture, and electronic properties of nanocomposites were studied using various characterization techniques such as N2 physisorption, X-ray diffraction (XRD), laser Raman spectroscopy (LRS), temperature-programmed reduction (TPR), transmission electron microscopy (TEM), and X-ray photoelectron spectroscopy (XPS). The results of powder XRD at low angles show that the framework of SBA-15 remains unaffected after generation of the manganese oxide (MnO(x)) nanoparticles, whereas the pore volume and the surface area of SBA-15 dramatically decreased as indicated by N2 adsorption-desorption. TEM images reveal that the pores of SBA-15 are progressively blocked with MnO(x) nanoparticles. The formation of the hausmannite Mn(3)O(4) and bixbyite Mn(2)O(3) structures was clearly confirmed by XRD. The surface structures of MnO(x) were also determined by LRS, XPS, and TPR. The crystalline phases of MnO(x) were identified by LRS with corresponding out-of-plane bending and symmetric stretching vibrations of bridging oxygen species (M-O-M) of both MnO(x) nanoparticles and bulk MnO(x). We also observed the terminal Mn=O bonds corresponding to vibrations at 940 and 974 cm-1 for Mn(3)O(4)/SBA-15 and Mn(2)O(3)/SBA-15, respectively. These results show that the MnO(x) species to be highly dispersed inside the channels of SBA-15. The nanostructure of the particles was further identified by the TPR profiles. Furthermore, the chemical states of the surface manganese (Mn) determined by XPS agreed well with the findings of LRS and XRD. These results suggest that the method developed in the present study resulted in the production of MnO(x) nanoparticles on mesoporous silica SBA-15 by controlling the crystalline phases precisely. The thus-prepared nanocomposites of MnO(x) showed significant catalytic activity toward CO oxidation below 523 K. In particular, the MnO(x) prepared from manganese acetyl acetonate showed a higher catalytic reactivity than that prepared from Mn(NO(3))2."	"Antibody reactivity to heat shock protein 70 and inner ear-specific proteins in patients with idiopathic sensorineural hearing loss. Deafness is attributable to autoimmunity in a subset of adult patients with sensorineural hearing loss (SNHL) of unknown aetiology. To determine the roles of self-antigens in the pathogenesis of idiopathic SNHL, we analysed antibody responses to the inner ear-specific proteins, cochlin and beta-tectorin as well as the non-specific heat shock protein 70 (HSP70). Recombinant cochlin and beta-tectorin proteins were used in a qualitative Western blot assay for the detection of antigen-specific IgG antibodies in 58 patients with idiopathic SNHL and 28 healthy blood donors. In the same study cohort, we also used a Western blot assay to assess IgG antibody responses to the recombinant human HSP70. Of the 58 patient samples analysed, 19 tested positive to the HSP70, eight to cochlin and one to beta-tectorin, giving a prevalence of 33, 14 and 2%, respectively. Only one patient sample was reactive for HSP70, cochlin and beta-tectorin, seven of the remaining eight cochlin IgG antibody-positive samples were monospecific. Thus, cochlin-specific antibodies were observed predominantly in HSP70 IgG-negative patients demonstrating an additive value for testing this antibody response in patients with idiopathic SNHL."	"Insertion reactions of alkynes and organic isocyanides into the palladium-carbon bond of dimetallic Fe-Pd alkoxysilyl complexes. Insertion of MeO(2)C-C[triple bond]C-CO(2)Me (DMAD) into the Pd-C bond of the heterodimetallic complex [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d(dmba-C)] (2) (dppm = Ph(2)PCH(2)PPh(2), dmba-C = metallated dimethylbenzylamine) and [(OC)(3){(MeO)(3)Si}F[upper bond 1 start]e(mu-dppm)P[upper bond 1 end]d(8-mq-C,N)] (3) (8-mq-C,N = cyclometallated 8-methylquinoline) yielded the sigma-alkenyl complexes [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{C(CO(2)Me)=C(CO(2)Me)(o-C(6)H(4)CH(2)NMe(2))}] (7) and [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{C(CO(2)Me)[double bond, length as m-dash]C(CO(2)Me)(CH(2)C(9)H(6)N)}] (8), respectively. The latter afforded the adduct [(OC)(3){(MeO)(3)Si}F[upper bond 1 start]e(mu-dppm)P[upper bond 1 end]d{C(CO(2)Me)=C(CO(2)Me)(CH(2)C(9)H(6)N)}(CNBu(t))] (9) upon reaction with 1 equiv. of Bu(t)NC. The heterodinuclear sigma-butadienyl complexes [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{C(Ph=C(Ph)C(CO(2)Me)=(CO(2)Me)(o-C(6)H(4)CH(2)NMe(2))}] (11) and [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{C(Ph)=C(CO(2)Et)C(Ph)=C(CO(2)Et)(CH(2)C(9)H(6)N)}] (13) have been obtained by reaction of the metallate K[Fe{Si(OMe)(3)}(CO)(3)(dppm-P)] (dppm = Ph(2)PCH(2)PPh(2)) with [P[upper bond 1 start]dCl{C(Ph)=C(Ph)C(CO(2)Me)=C(CO(2)Me)(o-C(6)H(4)CH(2)N[upper bond 1 end]Me(2))}] or [P[upper bond 1 start]dCl{C(Ph)=C(CO(2)Et)C(Ph)=(CO(2)Et)}(CH(2)C(9)H(6)N[upper bond 1 end])], respectively. Monoinsertion of various organic isocyanides RNC into the Pd-C bond of 2 and 3 afforded the corresponding heterometallic iminoacyl complexes. In the case of complexes [(OC)(3){(MeO)(3)Si}F[upper bond 1 start]e(mu-dppm)P[upper bond 1 end][upper bond 1 start]d{C=(NR)(CH(2)C(9)H(6)N[upper bond 1 end])}] (15a R = Ph, 15b R = xylyl), a static six-membered C,N chelate is formed at the Pd centre, in contrast to the situation in [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{C(=NR)(o-C(6)H(4)CH(2)NMe(2))}] (14a R = o-anisyl, 14b R = 2,6-xylyl) where formation of a mu-eta(2)-Si-O bridge is preferred over NMe(2) coordination. The outcome of the reaction of the dimetallic alkyl complex [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]dMe] with RNC depends both on the stoichiometry and the electronic donor properties of the isocyanide employed for the migratory insertion process. In the case of o-anisylisocyanide, the iminoacyl complex [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{C(=N-o-anisyl)Me}] (16) results from the reaction in a 1 : 1 ratio. Addition of three equiv. of o-anisylisocyanide affords the tris(insertion) product [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{[C(=N-o-anisyl)](3)Me}] (18). After addition of a fourth equivalent of o-anisylNC, exclusive formation of the isocyanide adduct [(OC)(3){(MeO)(3)Si}F[upper bond 1 start]e(mu-dppm)P[upper bond 1 end]d{[C(=N-o-anisyl)](3)Me}(CN-o-anisyl)] (19) was spectroscopically evidenced. In the complex [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]d{[C(=N-o-C(6)H(4)COCH(2))](2)Me}] (20), the sigma-bound diazabutadienyl unit is part of a 12-membered organic macrocyle which results from bis(insertion) of 1,2-bis(2-isocyanophenoxy)ethane into the Pd-Me bond of the precursor complex [(OC)(3)F[upper bond 1 start]e{mu-Si(OMe)(2)([lower bond 1 start]OMe)}(mu-dppm)P[lower bond 1 end][upper bond 1 end]dMe]. In contrast, addition of two equivalents of tert-butylisocyanide to a solution of the latter afforded [(OC)(3){(MeO)(3)Si}F[upper bond 1 start]Fe(mu-dppm)P[upper bond 1 end]d{C(=NBu(t))Me}(CNBu(t))] (21) in which both a terminal and an inserted isocyanide ligand are coordinated to the Pd centre. In all cases, there was no evidence for competing CO substitution at the Fe(CO)(3) fragment by RNC. The molecular structures of the insertion products 8 x CH(2)Cl(2) and 16 x CH(2)Cl(2) have been determined by X-ray diffraction."	"Chiral fluorous dialkoxy-diamino zirconium complexes: synthesis and use in stereospecific polymerization of 1-hexene. New catalysts for the isospecific polymerization of 1-hexene based on cationic zirconium complexes incorporating the tetradentate fluorous dialkoxy-diamino ligands [OC(CF(3))(2)CH(2)N(Me)(CH(2))(2)N(Me)CH(2)C(CF(3))(2)O](2-) [(ON(2)NO)(2-)] and [OC(CF(3))(2)CH(2)N(Me)(1R,2R-C(6)H(10))N(Me)CH(2)C(CF(3))(2)O](2-) [(ON(Cy)NO)(2-)] have been developed. The chiral fluorous diamino-diol [(ON(Cy)NO)H(2), 2] was prepared by ring-opening of the fluorinated oxirane (CF(3))(2)COCH(2) with (R,R)-N,N'-dimethyl-1,2-cyclohexanediamine. Proligand 2 reacts cleanly with [Zr(CH(2)Ph)(4)] and [Ti(OiPr)(4)] precursors to give the corresponding dialkoxy complexes [Zr(CH(2)Ph)(2)(ON(Cy)NO)] (3) and [Ti(OiPr)(2)(ON(Cy)NO)] (4), respectively. An X-ray diffraction study revealed that 3 crystallizes as a 1:1 mixture of two diastereomers (Lambda-3 and Delta-3), both of which adopt a distorted octahedral structure with trans-O, cis-N, and cis-CH(2)Ph ligands. The two diastereomers Lambda-3 and Delta-3 adopt a C(2)-symmetric structure in toluene solution, as established by NMR spectroscopy. Cationic complexes [Zr(CH(2)Ph)(ON(2)NO)(THF)(n)](+) (n=0, anion=[B(C(6)F(5))(4)](-), 5; n=1, anion=[PhCH(2)B(C(6)F(5))(3)](-), 6) and [Zr(CH(2)Ph)(ON(Cy)NO)(THF)](+)[PhCH(2)B(C(6)F(5))(3)](-) (7) were generated from the neutral parent precursors [Zr(CH(2)Ph)(2)(ON(2)NO)] (H) and [Zr(CH(2)Ph)(2)(ON(Cy)NO)] (3), and their possible structures were determined on the basis of (1)H, (19)F, and (13)C NMR spectroscopy and DFT methods. The neutral zirconium complexes H and 3 (Lambda-3/Delta-3 mixture), when activated with B(C(6)F(5))(3) or [Ph(3)C](+)[B(C(6)F(5))(4)](-), catalyze the polymerization of 1-hexene with overall activities of up to 4500 kg PH mol Zr(-1) h(-1), to yield isotactic-enriched (up to 74 % mmmm) polymers with low-to-moderate molecular weights (M(w)=4800-47 200) and monodisperse molecular-weight distributions (M(w)/M(n)=1.17-1.79)."	"Gas phase ion thermochemistry of tetraaza complexes such as cyclamM2+ with H2O, CH3OH, NH3, and other ligands, where M2+ = Mn2+, Ni2+, Cu2+, and Zn2+. Tetraaza complexes with M(2+) were produced in the gas phase by Electrospray (ESI) of solutions containing salts of M(2+)dinitrates and a tetraaza compound such as cyclam. The complex CyclM(2+) formed in solution and transferred to the gas phase via ESI was introduced into a reaction chamber containing known partial pressures of a ligand L. Equilibria between CyclM(2+) and L establish CyclML(n)(2+) = CyclML(n-1)(2+) + L and the equilibrium constants K(n,n-1) are determined with a mass spectrometer. Determinations at different temperatures lead to not only the DeltaG(0)(n,n-1) values but also the DeltaH(0)(n,n-1) and DeltaS(0)(n,n-1) values. Data for n = 1, 2, and 3 were obtained for L = H(2)O and CH(3)OH. The DeltaG(0)(1,0), DeltaH(0)(1,0) as well as DeltaG(0)(2,1), DeltaH(0)(2,1) values, when M(2+) = Mn(2+) and Zn(2+), were larger than those for Ni(2+) and Cu(2+). The ligand field theory and the Irvine-Williams series predict a reverse order, i.e., stronger bonding with Ni(2+) and Cu(2+) for simple ligand reactions with M(2+). An examination of the differences of the reactions in solution and gas phase provides a rationale for the observed reverse order for the CyclM(2+) + L reactions. Differences between gas phase and solution are found also when M(2+) = Cu(2+), but the tetraaza macrocycle is changed from, 12-ane to 14-ane to 15-ane. The strongest bonding in solution is with the 14-ane while in the gas phase it is with the 15-ane. Bond free energies, DeltaG(0)(1,0), for CyclCu(2+) with L = H(2)O, CH(3)OH, NH(3), C(2)H(5)OH, C(3)H(7)OH, (C(2)H(5))(2)O, and CH(3)COCH(3), are found to increase in the above order. The order and magnitude of the DeltaG(0)(1,0) values is close to DeltaG(0)(1,0) values observed with potassium K(+) and the same ligands. These results show that the cyclam in CyclCu(2+) leads to an extensive shielding of the +2 charge of Cu(2+). Ligands with gas phase basicities that are relatively high, lead to deprotonation of CyclM(2+). The deprotonation varies with the nature of M(2+) and provides information on the extent of electron transfer from the N atoms of the cyclam, to the M(2+) ions."	"One-step formation of core-shell sulfide-oxide nanorod arrays from a single precursor. Densely packed and well-aligned coaxial (core-shell) CdS-CdO and ZnS-ZnO nanorod arrays were prepared with a one-step, non-catalytic, template-free metalorganic chemical vapour deposition (MOCVD) process by using single-source molecular precursors Cd(O-EtXan)(2) and Zn(O-EtXan)(2), respectively (O-EtXan = S(2)COCH(2)CH(3)). Data from pyrolysis gas chromatography/mass spectrometry of the precursors revealed the sequence of formation, namely sulfide core first and oxide shell later, with the first formed sulfide nanorods serving as the template for subsequent in situ oxide shell coating. The coaxial CdS-CdO and ZnS-ZnO nanorod arrays were formed at collection temperatures of 180 and 200 °C, respectively. At a slightly higher collection temperature of 250 °C, coaxial ZnS-ZnO nanowires were also obtained. The coaxial nanostructure was characterized and confirmed with high-resolution transmission electron microscopy. In a photoluminescence study, near band edge emissions at around 530 nm, a composite emission of the two near band edge emissions of 524 nm of CdS and 551 nm of CdO, were observed for the coaxial CdS-CdO nanorod sample, while defect-induced emissions at around 470 nm were observed for both coaxial ZnS-ZnO nanorod and nanowire samples. A more stable oxide shell not only protects the sulfide core but also provides possible surface passivation beneficial to enhanced photoluminescence. The present work demonstrates the feasibility of growth of coaxial one-dimensional nanostructures from single-source precursors that contain all the necessary constituent elements in one compound."	"Gene expression profiling of the human prostate zones. To investigate differences in gene expression in different zones of the prostate by microarray analyses, to better understand why aggressive tumours predominantly occur in the peripheral zone (PZ), whereas benign prostatic hyperplasia (BPH) occurs almost exclusively in the transition zone (TZ). Expression profiling of both prostate zones was done by microarray analysis. Reverse transcription-polymerase chain reaction (RT-PCR) of the top 18 genes confirmed the microarray analyses. RT-PCR with common cell-type markers indicated that the differential expression between the zones was not caused by an unequal distribution of different cell types. Primary stromal and epithelial prostate cells were used to study cell type expression in the 12 highest differentially expressed zonal-specific genes. In all, 346 genes were identified as preferentially expressed in the TZ or PZ. A few of the TZ-specific genes, including ASPA, FLJ10970 and COCH, were also stroma-specific. Comparisons with other microarray studies showed that gene expression profiles of prostate cancer and BPH correlate with the expression profiles of the PZ and TZ, respectively. Gene expression differs between the PZ and TZ of the prostate, and stromal-epithelial interactions might be responsible for the distinct zonal localization of prostate diseases."	"Increased frequencies of cochlin-specific T cells in patients with autoimmune sensorineural hearing loss. Autoimmune sensorineural hearing loss (ASNHL) is the most common cause of sudden hearing loss in adults. Although autoimmune etiopathogenic events have long been suspected in ASNHL, inner ear-specific Ags capable of targeting T cell autoreactivity have not been identified in ASNHL. In this study, we show by ELISPOT analysis that compared with normal hearing age- and sex-matched control subjects, ASNHL patients have significantly higher frequencies of circulating T cells producing either IFN-gamma (p = 0.0001) or IL-5 (p = 0.03) in response to recombinant human cochlin, the most abundant inner ear protein. In some patients, cochlin responsiveness involved both CD4+ and CD8+ T cells whereas other patients showed cochlin responsiveness confined to CD8+ T cells. ASNHL patients also showed significantly elevated cochlin-specific serum Ab titers compared with both normal hearing age- and sex-matched control subjects and patients with noise- and/or age-related hearing loss (p &lt; 0.05 at all dilutions tested through 1/2048). Our study is the first to show T cell responsiveness to an inner ear-specific protein in ASNHL patients, and implicates cochlin as a prominent target Ag for mediating autoimmune inner ear inflammation and hearing loss."	"Phosphopeptide ligands of the SHP-1 N-SH2 domain: effects on binding and stimulation of phosphatase activity. Src homology 2 (SH2)-domain-mediated interactions with phosphotyrosine (pY)-containing ligands are critical for the regulation of SHP-1 phosphatase activity. Peptides based on a binding site from receptor tyrosine kinase Ros (EGLN-pY2267-MVL, 1) have recently been shown to bind to the SHP-1 N-terminal SH2 domain (N-SH2) with considerably high affinity. In addition, two peptides cyclized between positions -1 and +2 relative to pY (EGLc[K(COCH(2)NH)pYMX]L-NH(2), 2: X=D, 3: X=E) bound to the N-SH2 domain, but did not activate the enzyme and even partially prevented stimulation of SHP-1 activity by the physiological ligand 1. These findings prompted us to further examine the determinants for optimal binding to the N-SH2 domain and for the stimulation and inhibition of SHP-1 activity. Herein we demonstrate that combining the preferred residues in both pY+1 (such as Phe or norleucine, Nle) and pY+3 (such as homophenylalanine, Hfe) leads to highly efficient activating ligands of SHP-1. Particularly in the context of the cyclic peptides 7 (EGLc[K(COCH(2)NH)pYFD]Hfe-NH(2)) and 8 (EGLc[K(COCH(2)NH)pYNleD]HfeL-NH(2)), the incorporation of these residues resulted in high-affinity ligands with a significantly increased ability to stimulate SHP-1 activity. We suggest that different binding modes (according to consensus sequences class I and II) are responsible for obtaining either activating (7 and 8) or nonactivating (2 and 3) ligands. Peptides such as 7 and 8 that bind in the extended fashion of the type II mode activate the phosphatase through complete filling of the cavity for pY+3. In contrast, peptides such as 2 and 3 that bind in the class I mode do not activate the enzyme because they allow more conformational space at pY+3. Therefore, their binding does not force the conformational transition necessary to trigger the dissociation of N-SH2 and the catalytic domain."	"Effect of ring substitution on the S-H bond dissociation enthalpies of thiophenols. An experimental and computational study. There are conflicting reports on the origin of the effect of Y substituents on the S-H bond dissociation enthalpies (BDEs) in 4-Y-substituted thiophenols, 4-YC(6)H(4)S-H. The differences in S-H BDEs, [4-YC(6)H(4)S-H] - [C(6)H(5)S-H], are known as the total (de)stabilization enthalpies, TSEs, where TSE = RSE - MSE, i.e., the radical (de)stabilization enthalpy minus the molecule (de)stabilization enthalpy. The effects of 4-Y substituents on the S-H BDEs in thiophenols and on the S-C BDEs in phenyl thioethers are expected to be almost identical. Some S-C TSEs were therefore derived from the rates of homolyses of a few 4-Y-substituted phenyl benzyl sulfides, 4-YC(6)H(4)S-CH(2)C(6)H(5), in the hydrogen donor solvent 9,10-dihydroanthracene. These TSEs were found to be -3.6 +/- 0.5 (Y = NH(2)), -1.8 +/- 0.5 (CH(3)O), 0 (H), and 0.7 +/- 0.5 (CN) kcal mol(-1). The MSEs of 4-YC(6)H(4)SCH(2)C(6)H(5) have also been derived from the results of combustion calorimetry, Calvet-drop calorimetry, and computational chemistry (B3LYP/6-311+G(d,p)). The MSEs of these thioethers were -0.6 +/- 1.1 (NH(2)), -0.4 +/- 1.1 (CH(3)O), 0 (H), -0.3 +/- 1.3 (CN), and -0.8 +/- 1.5 (COCH(3)) kcal mol(-1). Although all the enthalpic data are rather small, it is concluded that the TSEs in 4-YC(6)H(4)SH are largely governed by the RSEs, a somewhat surprising conclusion in view of the experimental fact that the unpaired electron in C(6)H(5)S(*) is mainly localized on the S. The TSEs, RSEs, and MSEs have also been computed for a much larger series of 4-YC(6)H(4)SH and 4-YC(6)H(4)SCH(3) compounds by using a B3P86 methology and have further confirmed that the S-H/S-CH(3) TSEs are dominated by the RSEs. Good linear correlations were obtained for TSE = rho(+)sigma(p)(+)(Y), with rho(+) (kcal mol(-1)) = 3.5 (S-H) and 3.9 (S-CH(3)). It is also concluded that the SH substituent is a rather strong electron donor with a sigma(p)(+)(SH) of -0.60, and that the literature value of -0.03 is in error. In addition, the SH rotational barriers in 4-YC(6)H(4)SH have been computed and it has been found that for strong electron donating (ED) Ys, such as NH(2), the lowest energy conformer has the S-H bond oriented perpendicular to the aromatic ring plane. In this orientation the SH becomes an electron withdrawing (EW) group. Thus, although the OH group in phenols is always in-plane and ED irrespective of the nature of the 4-Y substituent, in thiophenols the SH switches from being an ED group with EW and weak ED 4-Ys, to being an EW group for strong ED 4-Ys."	"Histopathology of the inner ear relevant to cochlear implantation. The most common forms of severe hearing loss and deafness are related to morphological changes in the cochlea. Many individuals with such forms of hearing disorders have received cochlear implants. It has been assumed that preservation of spiral ganglion cells is important for success of cochlear implants. Preservation of ganglion cells is negatively correlated with the duration of the hearing loss. It has, however, not been possible to reveal a relationship between the degree of survival of spiral ganglion cells and performance of cochlear implants. It is important to understand the histopathological changes that follow cochlear implantation. Insertion of cochlear implants may cause trauma to the basilar membrane, the spiral lamina, and the spiral ligament. Rupture of the basilar membrane may occur. Over time, new bone forms at the cochleostomy and along the implant track. Further investigation is necessary to evaluate the causes of variability of behavioral measures of performance."	"Investigation of a new approach to decompose two potent greenhouse gases: photoreduction of SF(6) and SF(5)CF(3) in the presence of acetone. In this paper, we addressed the utilization of photochemical method as an innovative technology for the destruction and removal of two potent greenhouse gases, SF(6) and SF(5)CF(3). The destruction and removal efficiency (DRE) of the process was determined as a function of excitation wavelength, irradiation time, initial ratio of acetone to SF(5)X (X represented F or CF(3)), initial SF(5)X concentration, additive oxygen and water vapor concentration. A complete removal was achieved by a radiation period of 55min and 120min for SF(6)-CH(3)COCH(3) system and SF(5)CF(3)-CH(3)COCH(3) system respectively under 184.9nm irradiation. Extra addition of water vapor can enhance DRE by approximately 6% points in both systems. Further studies with GC/MS and FT-IR proved that no hazardous products such as S(2)F(10), SO(2)F(2), SOF(2), SOF(4) were generated in this process."	"Identification of a novel COCH mutation, G87W, causing autosomal dominant hearing impairment (DFNA9). NA"	"Chain scission of hyaluronan by carbonate and dichloride radical anions: potential reactive oxidative species in inflammation? The reactions of the carbonate and dichloride radical anions, CO3- and Cl2-, with the extracellular matrix glycosaminoglycan hyaluronan (HA) have been studied using the kinetic technique of pulse radiolysis and also by steady-state irradiation combined with gel permeation chromatography/multiangle laser light scattering(gpc/MALLS) to measure the rates of reaction with HA and the yield of HA chain scission, respectively. For comparison, the same measurements were made for the reactions of the free radicals *OH, Br2*-, and N3*. The carbonate and dichloride radical anions were found to react relatively quickly with HA (7.0 x 10(5) and 6.9 x 10(6) dm3 mol(-1) s(-1), respectively) although they are much less reactive than the hydroxyl radical, *OH. Significant yields (20 and 38%, respectively) of chain scission of HA by these radical anions were also determined from the gpc/MALLS experiments, providing some support for their potential participation in the depolymerization of HA in vivo. These results are compared with data obtained for the other free radicals (hydroxyl, azide radicals, and dibromide radical anions) investigated in this study in order to gain an insight into their mechanism of reaction with HA. Earlier chain scission yields of HA by hydroxyl radicals determined by the authors have also been revised using the gpc/MALLS technique employed in the current study. The yields of 52% (absence of air) and 44% (in air) are much lower than the previous values. In the current study, the effect of oxygen on the yields of HA chain breaks is discussed in terms of the reactivity of HA peroxyl radicals in the presence of superoxide radical anions. The relevance of the results of this study to mechanisms of inflammation is discussed."	"Bridges over troubled waters: education and cognitive neuroscience. Recently there has been growing interest in and debate about the relation between cognitive neuroscience and education. Our goal is to advance the debate beyond both recitation of potentially education-related cognitive neuroscience findings and the claim that a bridge between fields is chimerical. In an attempt to begin a dialogue about mechanisms among students, educators, researchers and practitioner-scientists, we propose that multiple bridges can be built to make connections between education and cognitive neuroscience, including teacher training, researcher training and collaboration. These bridges--concrete mechanisms that can advance the study of mind, brain and education--will benefit both educators and cognitive neuroscientists, who will gain new perspectives for posing and answering crucial questions about the learning brain."	"Adenoviral non-gonococcal urethritis. Adenoviruses infect mucous membranes, including - on rare occasions - the urethra. Adenoviruses should therefore be considered as yet another cause of chlamydia-negative non-gonococcal urethritis. The following case illustrates the dilemma posed in a patient with conjunctivitis and urethritis."	"Cochlin immunostaining of inner ear pathologic deposits and proteomic analysis in DFNA9 deafness and vestibular dysfunction. Seven missense mutations and one in-frame deletion mutation have been reported in the coagulation factor C homology (COCH) gene, causing the adult-onset, progressive sensorineural hearing loss and vestibular disorder at the DFNA9 locus. Prevalence of COCH mutations worldwide is unknown, as there is no systematic screening effort for late-onset hearing disorders; however, to date, COCH mutations have been found on four continents and the possibility of COCH playing an important role in presbycusis and disorders of imbalance has been considered. Cochlin (encoded by COCH) has also been shown as a major target antigen for autoimmune sensorineural hearing loss. In this report, we present histopathology, immunohistochemistry and proteomic analyses of inner ear tissues from post-mortem DFNA9 temporal bone samples of an individual from a large Dutch kindred segregating the P51S mutation and adult human unaffected controls, and wild-type (+/+) and Coch null (-/-) knock-out mice. DFNA9 is an inner ear disorder with a unique histopathology showing loss of cellularity and aggregation of abundant homogeneous acellular eosinophilic deposits in the cochlear and vestibular labyrinths, similar to protein aggregation in well-known neurodegenerative disorders. By immunohistochemistry on the DFNA9 temporal bone sections, we have shown cochlin staining of the characteristic cochlear and vestibular deposits, indicating aggregation of cochlin in the same structures in which it is normally expressed. Proteomic analysis identified cochlin as the most abundant protein in mouse and human cochleae. The high-level expression and stability of cochlin in the inner ear, even in the absence and severe atrophy of the fibrocytes that normally express COCH, are shown through these studies and further elucidate the pathobiologic events occurring in DFNA9 leading to hearing loss and vestibular dysfunction."	"Binding kinetics and duration of in vivo action of novel prolyl oligopeptidase inhibitors. Prolyl oligopeptidase (POP) is a serine protease that specifically hydrolyses small peptides at the carboxyl end of the proline residue. POP has gained pharmaceutical interest, since its inhibitors have been shown to have antiamnesic properties in rat. We examined the effect of the 2(S)-substituents CN and COCH(2)OH at the P1 site of the parent inhibitors isophthalic acid 2(S)-(cyclopentanecarbonyl)pyrrolidine-l-prolyl-pyrrolidine amide and 4-phenylbutanoyl-l-prolyl-pyrrolidine and bulky 5-t-butyl group at the P2 site l-prolyl residue of the parent inhibitor 4-phenylbutanoyl-l-prolyl-pyrrolidine on the binding kinetics to the enzyme. In addition, we studied the duration of POP inhibition in the rat tissues in vivo after i.p. administration. CN and COCH(2)OH substituents at the P1 site pyrrolidine group were found to greatly increase the affinity of the inhibitor and the enzyme-inhibitor complex half-life. In addition, 5-t-butyl group at the P2 site l-prolyl residue increased the dissociation half-life of the enzyme-inhibitor complex, without much affecting the inhibitory potency. The duration of the inhibition in the rat tissues followed the inhibition kinetic properties in that the compounds with fast dissociation produced shorter inhibition in the rat tissues than the compounds with slow dissociation. The duration of POP inhibition of compounds was evidently not governed by their serum clearance. The fact that the in vivo pharmacodynamic behaviour of POP inhibitors can be predicted by their in vitro-properties may be of importance when designing therapeutically useful POP inhibitors."	"Expressed sequence tag analysis of zebrafish eye tissues for NEIBank. To characterize gene expression patterns in various tissues of the zebrafish (Danio rerio) eye and identify zebrafish orthologs of human genes by expressed sequence tag (EST) analysis for NEIBank. mRNA was extracted from adult zebrafish eye tissues, including lenses, anterior segments (minus lens), retinas, posterior segments lacking retinas, and whole eyes. Five different cDNA libraries were constructed in the pCMVSport6 vector. Approximately 4,000 clones from each library were sequenced and analyzed using various bioinformatics programs. The analysis yielded approximately 2,500 different gene clusters for each library. Combining data from the five libraries produced 10,392 unique gene clusters. GenBank accession numbers were identified for 37.6% (3,906) of the total gene clusters in the combined libraries and approximately 50% were linked to Unigene clusters in the current database. Several new crystallin genes, including two gammaN-crystallins, and a second major intrinsic protein (MIP) were identified in the lens library. In addition, a zebrafish homolog of cochlin (COCH), a gene that may play a role in the pathogenesis of human glaucoma, was identified in the anterior segment library. Surprisingly, no clear ortholog of the major retinal transcription factor Nrl was identified. The zebrafish eye tissue cDNA libraries are a useful resource for comparative gene expression analysis. These libraries will complement the cDNA libraries made for the Zebrafish Gene Collection (ZGC) and provide an additional source for gene identification and characterization in the vertebrate eye."	"Expression of cochlin in the vestibular organ of rats. The COCH gene mutated in autosomal dominant sensorineural deafness (DFNA9) encodes cochlin, a major constituent of the inner ear extracellular matrix. Cochlin constitutes 70% of the inner ear protein and cochlin isoforms can be classified into three subgroups, p63s, p44s and p40s. Symptoms of some DFNA9 patients are consistent with those of Ménière's disease. Here, we report the expression of cochlin in the vestibular organ of rats using isoform-specific antibodies that recognize all three isoforms. Cochlin is highly expressed in the stromata of the maculae of otolithic organs and cristae of semicircular canals, and in the channels in the bony labyrinth that transmit the dendritic innervation to the cristae and maculae. Cochlin cannot be detected in the sensory cells, dark cells, nor in the acellular structures, otolithic membrane or in the cupula. These findings support the theory that deposition of acidophilic substance in the inner ear caused by mutation of cochlin can induce a secondary retrograde dendritic degeneration of the vestibular nerves."	"Good speech recognition and quality-of-life scores after cochlear implantation in patients with DFNA9. To compare audiometric and quality-of-life results in DFNA 9 patients who received a cochlear implant with cochlear implant patients with adult-onset progressive sensorineural hearing loss. Prospective comparative design; results were collected cross-sectionally. Tertiary referral center. Eleven DFNA 9 patients were included in the study as well as a comparative group of 39 post-lingually deafened cochlear implant subjects with adult-onset progressive sensorineural hearing loss. All patients received a cochlear implant. Subjects were implanted with either the Nucleus 24 M/RCS or Med-el Combi 40+ cochlear implant systems implementing the SPEAK, ACE, or CIS+ coding strategies. Speech recognition was determined by means of phonetically balanced monosyllabic word lists. The Hearing Handicap Inventory for Adults, the Glasgow Benefit Inventory, and the Scale for the Prediction of Hearing Disability in Sensorineural Hearing Loss were used to quantify the quality of life. The results show that the speech perception and the quality of life of the DFNA 9 patients do not differ significantly from the control group (p=0.179; p=0.56). In spite of the fact that DFNA 9 is a disease that is known to involve cochlear dendrites, cochlear implantation is a good option for treatment of deafness in DFNA 9."	"[From gene to disease; a progressive cochlear-vestibular dysfunction with onset in middle-age (DFNA9)]. DFNA9 is an autosomal dominant genetic inner-ear hearing impairment that starts to show itself in the 3rd and 4th decades of life. This hearing impairment may be of a different degree of severity in each ear. Progression of hearing loss is about 3 dB/year. In about one in three patients severe vestibular symptoms similar to those in Ménière's disease are present as a result of a progressive impairment of the vestibular system. Several mutations were found in the COCH-gene on chromosome 14. There are indications that some of the mutations disrupt the folding of the cochlin protein, an important component of the extracellular matrix in the inner ear. DNA-diagnostics confirming the diagnosis ofDFNA9 are possible."	"Cochlin and glaucoma: a mini-review. Primary open angle glaucoma (POAG) is a leading cause of late onset, progressive, irreversible blindness and, although its etiology is poorly understood, elevated intraocular pressure (IOP) often appears to be a contributory factor. Proteomic and Western analyses of trabecular meshwork (TM) from patients with POAG and age-matched controls originally implicated cochlin as possibly contributing to glaucoma pathogenesis. Cochlin deposits were subsequently detected in glaucomatous but not in control TM and older glaucomatous TM was found to contain higher levels of cochlin and significantly lower amounts of collagen type II. More recently, similar results were reported in DBA/2J mice, which at older ages develop elevated IOP, retinal ganglion cell degeneration, and optic nerve damage. Notably, cochlin was absent in TM from C57BL/6J, CD1, and BALBc/ByJ mice, which do not exhibit elevated IOP or glaucoma. Cochlin was found in the TM of very young DBA/2J mice, prior to elevated IOP, suggesting that over time the protein may contribute to the events leading to increased IOP and optic nerve damage. Here we review these findings and describe how future studies in DBA/2J mice can help resolve whether cochlin plays a causal role in mechanisms of POAG and elevated IOP."	"The combined effect of time of day and menstrual cycle on lactate threshold. This study examined the isolated and combined effects of time of day and menstrual cycle phase on the determination of the lactate threshold (Tlac) and blood lactate concentration. Eleven endurance-trained female athletes (mean age 32.4+/- 6.9 yr) were tested at 06:00 and 18:00 h and at two phases of the menstrual cycle, the midfollicular phase and the midluteal phase. Capillary blood (25 muL) was obtained from the tip of the toe at rest, and during the last 30 s of a continuous, multistage, 3-min incremental protocol on the Concept II rowing ergometer. To determine Tlac, a curve-fitting procedure (Dmax method), a visual method (Tlac-vis), and the fixed blood lactate concentration of 4.0 mmol.L (Tlac-4 mM) were used. Ventilatory threshold (Tvent) was also determined. In the midluteal phase of the menstrual cycle, Tlac-4 mM occurred at a significantly higher exercise intensity, heart rate, and oxygen consumption than it did in the midfollicular phase. Blood lactate concentration at Tvent and at Tlac using the Dmax method was significantly lower in the midluteal phase. No significant interaction effects (menstrual cycle x time of day) were observed for any of the methods used to determine Tlac or for values of blood lactate concentration at rest and at maximum. These findings suggest that, when using fixed values of blood lactate in physiologic assessment, consideration should be given to the menstrual cycle phase in which the test is carried out."	"Focus on molecules: cochlin. NA"	"Selective auditory attention in 3- to 5-year-old children: an event-related potential study. Behavioral and electrophysiological evidence suggests that the development of selective attention extends over the first two decades of life. However, much of this research may underestimate the attention abilities of young children. By providing strong, redundant attention cues, we show that sustained endogenous selective attention has similar effects on ERP indices of auditory processing in adults and children as young as 3 years old. All participants were cued to selectively attend to one of two simultaneously presented stories that differed in location (left/right), voice (male/female), and content. The morphology of the ERP waveforms elicited by probes embedded in the stories was very different for adults, who showed a typical positive-negative-positive pattern in the 300 ms after probe onset, and children, who showed a single broad positivity during this epoch. However, for 3- to 5-year-olds, 6- to 8-year-olds, and adults, probes in the attended story elicited larger amplitude ERPs beginning around 100 ms after probe onset. This attentional modulation of exogenously driven components was longer in duration for the youngest children. In addition, attended linguistic probes elicited a larger negativity 300-500 ms for all groups, indicative of additional attentional processing. These data show that with adequate cues, even children as young as 3 years old can selectively attend to one auditory stream while ignoring another and that doing so alters auditory sensory processing at an early stage. Furthermore, they suggest that the neural mechanisms by which selective attention affects auditory processing are remarkably adult-like by this age."	"A novel DFNA9 mutation in the vWFA2 domain of COCH alters a conserved cysteine residue and intrachain disulfide bond formation resulting in progressive hearing loss and site-specific vestibular and central oculomotor dysfunction. Mutations within the COCH gene (encoding the cochlin protein) lead to auditory and vestibular impairment in the DFNA9 disorder. In this study, we describe the genetic mapping of progressive autosomal dominant sensorineural hearing loss first affecting high-frequency auditory thresholds within a human pedigree to the long arm of chromosome 14 in band q12. A maximal pairwise LOD score of 7.08 was obtained with marker D14S1021. We identified a c.1625G &gt; T mutation in exon 12 of COCH that co-segregates with auditory dysfunction in the pedigree. The mutation results in a predicted p.C542F substitution at an evolutionarily conserved cysteine residue in the C-terminus of cochlin. The c.1625G &gt; T transversion in COCH exon 12 represents the first reported mutation outside of the LCCL domain which is encoded by exons 4 and 5. The 542F mutant cochlin is translated and secreted by transfected mammalian cells. Western blot analysis under non-reducing and reducing conditions suggests that the 542F mutation alters intramolecular cochlin disulfide bond formation. In the vestibular system, a progressive horizontal canal hypofunction and a probable saccular otolith challenge were detected in family members with the c.1625G &gt; T COCH alteration. Abnormal central oculomotor test results in family members with the c.1625G &gt; T COCH alteration imply a possible central nervous system change not previously noted in DFNA9 pedigrees harboring mutations within the LCCL domain."	"Insulin resistance, the metabolic syndrome, and incident cardiovascular events in the Framingham Offspring Study. The metabolic syndrome and insulin resistance have been related to incident cardiovascular disease (CVD), but it is uncertain if metabolic syndrome predicts CVD independent of insulin resistance. Our study sample included 2,898 people without diabetes or CVD at baseline. Metabolic syndrome was defined by the National Cholesterol Education Program (NCEP) Expert Panel on Detection, Evaluation, and Treatment of High Blood Cholesterol in Adults (Adult Treatment Panel III) criteria. Insulin resistance was defined by the homeostasis model assessment (HOMA-IR) and by Gutt et al.'s insulin sensitivity index (ISI(0,120)). Age- and sex-adjusted proportional hazards regression models assessed the association of baseline metabolic syndrome and insulin resistance to 7-year CVD risk (186 events). Metabolic syndrome and both measures of insulin resistance were individually related to incident CVD (age- and sex-adjusted hazard ratio [HR] for metabolic syndrome [present versus absent]: 2.0 [95% CI 1.5-2.6], P = 0.0001; for HOMA-IR: 1.9 [1.2-2.9], P = 0.003; and for ISI(0,120) [both highest versus lowest quartile]: 0.5 [0.3-0.7], P = 0.001). In models adjusted for age, sex, LDL cholesterol, and smoking status and including metabolic syndrome, ISI(0,120) levels were independently related to incident CVD (0.5 [0.3-0.8], P = 0.004), whereas HOMA-IR levels were not (1.3 [0.8-2.1], P = 0.24); metabolic syndrome was associated with increased CVD risk in both models (HR 1.6, P &lt; or = 0.007 in both). In conclusion, metabolic syndrome and ISI(0,120) but not HOMA-IR independently predicted incident CVD. Metabolic syndrome may not capture all the CVD risk associated with insulin resistance."	"Exploring district nurses' experience of a hospice at home service. this study surveyed a representative sample of district nurses (DNs) to ascertain their experience of working alongside a HAH service. a self-completed postal questionnaire comprised of 14 items was distributed to 128 DNs. the evaluation found significant levels of satisfaction. All respondents indicated that they would refer a patient to the service again. However, the need for improved communication and increased awareness among DNs about the HAH service were also identified. the findings support the idea that a HAH service can enable patients with advanced progressive disease to be cared for at home. While the findings of this study cannot be generalized, they add to the growing body of research about HAH services in palliative care."	"Audiometric, vestibular, and genetic aspects of a DFNA9 family with a G88E COCH mutation. To perform genetic analysis and to analyze cochleovestibular impairment features in a newly identified Dutch family with nonsyndromic autosomal dominant hearing impairment (DFNA9). Genetic analysis was performed using microsatellite markers and single nucleotide polymorphisms. Audiometric data were collected and analyzed longitudinally. Results were compared with those obtained in previously identified P51S COCH mutation carriers (n = 74). Special attention was also given to a comparison of age-related features such as progressive hearing loss and vestibular impairment. Tertiary referral center. G88E COCH mutation carriers from a Dutch family. The study of clinical features of a DFNA9 family carrying a G88E COCH mutation and to compare this to the symptoms of those carrying a P51S/COCH mutation. Pure-tone thresholds, phoneme recognition scores, and vestibular responses of the G88E mutation carriers were essentially similar to those previously established in the P51S mutation carriers. Hearing started to deteriorate in G88E mutation carriers from age 46 to 49 years and onward, whereas deterioration of vestibular function started from approximately age 46 years. In the P51S mutation carriers, vestibular impairment started earlier, at approximately age 34 years. However, the difference in age of onset with the G88E mutation carriers was not significant. Remarkably, the proportion of patients who developed complete vestibular areflexia within the age range of 40 to 56 years was significantly lower for the G88E mutation carriers than for the P51S mutation carriers. Apart from a significantly lower frequency of vestibular areflexia between the ages of 40 and 56 years, there are no phenotypic differences between carriers of the G88E and P51S mutations in the COCH gene."	"Vestibular deterioration precedes hearing deterioration in the P51S COCH mutation (DFNA9): an analysis in 74 mutation carriers. To analyze cochleovestibular impairment features in P51S COCH mutation carriers (n = 22) in a new, large Dutch family and to compare the results to those obtained in previously identified similar mutation carriers (n = 52). To evaluate age-related features between progressive hearing and vestibular impairment of all mutation carriers (n = 74). Family study. Regression analysis was performed in relation to age to outline the development of hearing thresholds, speech recognition scores, and vestibulo-ocular reflex time constant as the key vestibular response parameter. Pure tone thresholds, phoneme recognition scores, and vestibular responses of the mutation carriers in the new family were essentially similar to those previously established in all other mutation carriers. Hearing started to deteriorate in all mutation carriers from 43 years of age onwards, whereas deterioration of vestibular function started from age 34. Vestibular impairment starts earlier, progresses more rapidly, and, eventually, is more complete than hearing impairment in P51S COCH mutation carriers."	"Targeted disruption of mouse Coch provides functional evidence that DFNA9 hearing loss is not a COCH haploinsufficiency disorder. Dominant progressive hearing loss and vestibular dysfunction DFNA9 is caused by mutations of the human COCH gene. COCH encodes cochlin, a highly abundant secreted protein of unknown function in the inner ear. Cochlin has an N-terminal LCCL domain followed by two vWA domains, and all known DFNA9 mutations are either missense substitutions or an amino acid deletion in the LCCL domain. Here, we have characterized the auditory phenotype associated with a genomic deletion of mouse Coch downstream of the LCCL domain. Homozygous Coch (-/-) mice express no detectable cochlin in the inner ear. Auditory brainstem responses to click and pure-tone stimuli (8, 16, 32 kHz) were indistinguishable among wild type and homozygous Coch (-/-) mice. A Coch-LacZDeltaneo reporter allele detected Coch mRNA expression in nonsensory epithelial and stromal regions of the cochlea and vestibular labyrinth. These data provide functional evidence that DFNA9 is probably not caused by COCH haploinsufficiency, but via a dominant negative or gain-of-function effect, in nonsensory regions of the inner ear."	"Genital warts: current and future management options. Genital warts are a cosmetic nuisance. They are caused by low-risk human papillomavirus types, have no oncogenic potential and are not linked to cervical cancer. However, they often cause significant psychological morbidity. Treatments are aimed at eradicating the unsightly lesions and stimulating the immune system to generate clearance and prevent recurrence. Commonly used physical treatment methods include cryotherapy, trichloroacetic acid, laser, and electrocautery. However, many patients respond extremely well to home therapies with either podophyllotoxin or imiquimod. Patients prefer the comfort and dignity of home treatment, and this should be the first-line of treatment for the majority of patients. A routine screen for sexually transmitted infections is appropriate in most cases. Detailed explanation and reassurance are of paramount importance in reducing the psychological distress associated with this unpleasant genital condition."	"Auditory and visual refractory period effects in children and adults: an ERP study. This developmental study was designed to investigate event-related potential (ERP) refractory period effects in the auditory and visual modalities in children and adults and to correlate these electrophysiological measures with standard behavioral measures. ERPs, accuracy, and reaction time were recorded as school-age children and adults monitored a stream of repetitive standard stimuli and detected occasional targets. Standards were presented at various interstimulus intervals (ISIs) in order to measure refractory period effects on early sensory components. As has been reported previously in adults, larger components for standards with longer ISIs were observed for an auditory N1 and the visual occipital P1 and P2 in adults. Remarkably similar effects were observed in children. However, only children showed refractory effects on the amplitude of the visual N1 and P2 measured at anterior sites. Across groups, behavioral accuracy and reaction time were correlated with latencies of auditory N1 and visual P2 across ISI conditions. The results establish a normal course of development for auditory and visual ERP refractory period effects across the 6- to 8-year-old age range and indicate similar refractoriness in the neural systems indexed by ERPs in these paradigms in typically developing children and adults. Further, the results suggest that electrophysiological measures and standard behavioral measures may at least in part index similar processing in the present paradigms. These findings provide a foundation for further investigation into atypical development, particularly in those populations for which processing time deficits have been implicated such as children with specific language impairment or dyslexia."	"Lichen sclerosus. Lichen sclerosus (LS) is a chronic inflammatory disorder of the skin and mucosa, presenting to genitourinary physicians and dermatologists. It affects both sexes and all age groups. Although the exact aetiology is uncertain, genetic predisposition, infections and autoimmune factors have been implicated in its pathogenesis. Symptoms include pruritus and soreness, but asymptomatic presentations are not uncommon. The classical clinical picture is of atrophic white plaques in the anogenital region. Histopathology is specific with basal cell degeneration, upper dermal oedema, homogenization of collagen and a chronic inflammatory infiltrate. Short courses of potent topical corticosteroids form the mainstay of treatment. The condition tends to be remitting and relapsing, with spontaneous regressions reported in a few. In men, the term balanitis xerotica obliterans is sometimes used to describe late and severe LS of the penis. Scarring and progression to squamous cell carcinomas can occur in chronic LS, resulting in significant morbidity. A multidisciplinary approach to care and the need for long-term monitoring cannot be overemphasized."	"Motion and color processing in school-age children and adults: an ERP study. Stimuli designed to selectively elicit motion or color processing were used in a developmental event-related potential study with adults and children aged 6, 7 and 8. A positivity at posterior site INZ (P-INZ) was greater to motion stimuli only in adults. The P1 and N1 were larger to color stimuli in both adults and children, but earlier to motion stimuli only in adults. Finally, the P2 was larger to color stimuli in adults but larger to motion stimuli in children, and earlier to motion stimuli only in children. The findings across components indicate development from middle childhood to adulthood in aspects of both the motion and color processing systems indexed by this paradigm, but are consistent with an hypothesis of a more protracted time course of development for the motion as compared to the color processing system."	"A novel locus for autosomal dominant non-syndromic deafness, DFNA53, maps to chromosome 14q11.2-q12. Non-syndromic hearing loss is among the most genetically heterogeneous traits known in humans. To date, at least 50 loci for autosomal dominant non-syndromic sensorineural hearing loss (ADNSSHL) have been identified by linkage analysis. To report the mapping of a novel autosomal dominant deafness locus on the long arm of chromosome 14 at 14q11.2-q12, DFNA53, in a large multigenerational Chinese family with post-lingual, high frequency hearing loss that progresses to involve all frequencies. A maximum multipoint LOD score of 5.4 was obtained for marker D14S1280. The analysis of recombinant haplotypes mapped DFNA53 to a 9.6 cM region interval between markers D14S581 and D14S1021. Four deafness loci (DFNA9, DFNA23, DFNB5, and DFNB35) have previously been mapped to the long arm of chromosome 14. The critical region for DFNA53 contains the gene for DFNA9 but does not overlap with the regions for DFNB5, DFNA23, or DFNB35. Screening of the COCH gene (DFNA9), BOCT, EFS, and HSPC156 within the DFNA53 interval did not identify the cause for deafness in this family. Identifying the DFNA53 locus is the first step in isolating the gene responsible for hearing loss in this large multigeneration Chinese family."	"Automatic word form processing in masked priming: an ERP study. Five prime types (unrelated words, pronounceable nonwords, illegal strings of letters, false fonts, or neutral strings of Xs) preceded word and nonword targets in a masked priming study designed to investigate word form processing as indexed by event-related potentials (ERPs). Participants performed a lexical decision task on targets. In the 150-250-ms epoch at fronto-central, central, and temporo-parietal sites ERPs were smallest to targets preceded by words and nonwords, followed by letter strings, false fonts, and finally neutral primes. This refractory pattern sensitive to orthography supports the view that ERPs in the 150-250-ms epoch index activation of neural systems involved in word form processing and suggests that such activation may be graded, being maximal with word-like stimuli and relatively reduced with alphabet-like stimuli. Further, these results from a masked priming paradigm confirm the automatic nature of word form processing."	"Interaction of sodium dodecyl sulfate with methacrylate-PEG comb copolymers. A series of sodium methacrylate and poly(ethylene glycol) (PEG) comb copolymers (MAA/PEG) with approximate PEG chain lengths of 7, 11, and 22 ethylene oxide units were synthesized by free radical polymerization. Their weight-average molecular mass was found to be approximately 66 000. A commercial sample of a PEG comb polymer with an acrylic backbone was also used in the studies (Sokalan HP 80). The interaction of the MAA/PEG comb polymers and pure sodium methacrylate (SPMA) with sodium dodecyl sulfate (SDS) was studied by ESR spectroscopy using 5-doxyl stearic acid (5-DSA) spin probe and by conductivity measurements. Surfactant aggregation in water occurred at SDS concentrations lower than the surfactant critical micelle concentration (cmc) and depended on the polymer concentration. The observations have been attributed to changes in the effective ionic strength of the systems due to the polymer itself, and it has been concluded that there is no interaction between the MAA/PEG comb copolymers or SPMA and SDS. This has been confirmed by the fact that the decrease in surfactant aggregation concentration is similar in magnitude to the decrease observed on adding NaCl when counterion ion condensation effects are taken into account. It is apparent that the electrostatic repulsions between the surfactant molecules and the methacrylate backbone of the MAA/PEG comb copolymers inhibit association of SDS with the PEG side chains."	"Expression of full-length Cochlin p63s is inner ear specific. The COCH gene mutated in DFNA9, murine an autosomal dominant hereditary hearing impairment, encodes Cochlin. Cochlin is also suggested to be the self-antigen of autoimmune sensorineural hearing loss. We previously reported that Cochlin constitutes 70% of the inner ear proteins and is classified into three types of isoform, p63s, p44s, and p40s. To study the specificity of expression of Cochlin isoforms in various organs, here we have investigated expression of the COCH gene at both the transcriptional and translational level. COCH gene expression was studied by RT-PCR and Southern blot analysis. Cochlin isoforms were studied by Western blot analysis using an isoform specific antibody. At the transcriptional level, COCH mRNA was detected only in the inner ear by RT-PCR. Southern blot analysis of RT-PCR products detected a high level of COCH mRNA in the inner ear, lower level in spleen, and very low levels in the cerebrum, cerebellum/brain stem, eye, liver and kidney. At the translational level, Western blot analysis showed that a set of isoform, p63s, p44s, and p40s was detected at high levels only in the inner ear. In contrast, multiple proteins were detected at much lower levels in other organs tested. Notably, full-length Cochlin p63s was detected only in the inner ear. Our findings demonstrate that the COCH gene is expressed preferentially in the inner ear and that expression of full-length Cochlin p63s is specific to the inner ear. These results will be central to understanding the function of Cochlin and its role in the pathophysiology of DFNA9."	"Design of peptide oxytocin antagonists with strikingly higher affinities and selectivities for the human oxytocin receptor than atosiban. The peptide oxytocin (OT) antagonist atosiban, approved for tocolytic use in Europe (under the tradename Tractocile), represents an important new therapeutic advance for the treatment of premature labor. This paper presents some new peptide OT antagonists which offer promise as superior tocolytics. The solid phase synthesis is reported of four pairs of L and D-2-naphthylalanine (L/D-2Nal) position-2 modified analogs of the following four oxytocin (OT) antagonists: des-9-glycinamide [1-(beta-mercapto-beta,beta-pentamethylene propionic acid), 2-O-methyltyrosine, 4-threonine]ornithine-vasotocin (desGly-NH(2),d(CH(2))(5)[Tyr(Me)(2),Thr(4)]OVT) (A); the Tyr-NH(2) (9) analog of (A), d(CH(2))(5)[Tyr(Me)(2),Thr(4),Tyr-NH(2) (9)]OVT (B); the Eda(9) analog of (A), d(CH(2))(5)[Tyr(Me)(2),Thr(4),Eda(9)]OVT (C); and the retro COCH(2)Ph(4-0H)(10) modified analog of (C), d(CH(2))(5)[Tyr(Me)(2),Thr(4),Eda(9)&lt;-- COCH(2)Ph(4-0H)(10)]OVT (D). The eight new analogs of A-D are (1) desGly-NH(2),d(CH(2))(5)[D-2Nal(2),Thr(4)]OVT, (2) desGly-NH(2),d(CH(2))(5)[2-Nal(2),Thr(4)]OVT, (3) d(CH(2))(5)[D-2Nal(2),Thr(4),Tyr-NH(2) (9)]OVT, (4) d(CH(2))(5)[2Nal(2),Thr(4),Tyr-NH(2) (9)]OVT, (5) d(CH(2))(5)[D-2Nal(2),Thr(4),Eda(9)]OVT, (6) d(CH(2))(5)[2Nal(2),Thr(4),Eda(9)]OVT, (7) d(CH(2))(5)[D-2Nal(2),Thr(4),Eda(9)&lt;-- COCH(2)Ph(4-0H)(10)]OVT, (8) d(CH(2))(5)[2Nal(2),Thr(4),Eda(9)&lt;-- COCH(2)Ph(4-OH)(10)]OVT. Peptides 1-8 were evaluated for agonistic and antagonistic activities in in vitro and in vivo rat bioassays, in rat OT receptor (rOTR) binding assays and in human OT receptor (hOTR) and human vasopressin (VP) vasopressor (V(1a)) receptor (hV(1a)R) binding assays. Also reported are the hOTR and hV(1a)R affinity data for atosiban and for B. None of the eight peptides exhibit oxytocic or vasopressor agonism. Peptides 1-8 exhibit weak antidiuretic agonism (activities in the range 0.014-0.21 U/mg). Peptides 1-6 exhibit potent in vitro (no Mg(2+)) OT antagonism (anti-OT pA(2) values range from 7.63 to 8.08). Peptides 7 and 8 are weaker OT antagonists. Peptides 1-6 are all OT antagonists in vivo (estimated in vivo anti-OT pA(2) values in the range 6.94-7.23). Peptides 1-8 exhibit vasopressor antagonism, anti-V(1a) pA(2) values in the range 5.1-7.65. Peptides 1-8 exhibit high affinities for the rOTR (K(i) values = 0.3-7.8 nM). Peptides 1-4 and B exhibit surprisingly very high affinities for the hOTR; their K(i) values are 0.17, 0.29, 0.07, 0.14 and 0.59 nM, respectively. Peptides 1-4 and B exhibit respectively 449, 263, 1091, 546 and 129 times greater affinity for the hOTR than atosiban (K(i) = 76.4 nM). Peptides 1-4 exhibit high affinities for the hV(1a)R (K(i)s = 1.1 nM, 1.3 nM, 0.19 nM and 0.54 nM, all higher than the hV1(a)R affinities exhibited by atosiban (K(i) = 5.1 nM) and by B (K(i) = 5.26 nM). Because of their strikingly higher affinities for the hOTR than atosiban, peptides 1-4 and B exhibit gains in anti hOT/anti hV(1a) receptor selectivity compared with atosiban of 93, 64, 39, 56 and 127, respectively. These OT antagonists are thus promising candidates for development as potential new tocolytic agents."	"Improvement of ACE inhibitory activity of chitooligosaccharides (COS) by carboxyl modification. In the present research, chitooligosaccharides (COS) were carboxylated with -COCH(2)CH(2)COO(-) groups to obtain specific structural features similar to Captopril. Angiotensin I converting enzyme (ACE) inhibitory activity of carboxylated COS was studied and observed to enhance its activity with increased substitution degree. Further, Lineweaver-Burk plot analysis revealed that inhibition was competitive via obligatory binding site of the enzyme. This was accompanied with substitution of positively charged quarternized amino groups to COS with different substitution degrees, in which negative impact on ACE inhibition was observed."	"Cochlin deposits in the trabecular meshwork of the glaucomatous DBA/2J mouse. Cochlin deposits were observed in the trabecular meshwork (TM) of 8-month-old glaucomatous DBA/2J mice, coincident with the reported onset of increased intraocular pressure and optic nerve damage. An age-dependent increase in cochlin was observed up to 10 months of age and was paralleled by a decrease in type II collagen. Similar expression patterns exist in the TM of humans with primary open-angle glaucoma. Cochlin deposits, absent in non-glaucomatous mouse and human TM, may disrupt the TM extracellular matrix and obstruct aqueous humor circulation. Studies of DBA/2J mice offer promise for understanding the role cochlin may play in glaucoma."	"[Mutation on the 4th and 5th extrons of COCH gene in Meniere's disease]. NA"	"Elucidation of the emulsification properties of sugar beet pectin. A protocol has been developed to fractionate sugar beet pectin using hydrophobic affinity chromatography. Three samples eluted from the column using 4 M NaCl as solvent (fractions 1A, 1B, and 1C), two fractions eluted using 2 M NaCl (fractions 2A and 2B), and one fraction eluted using water (fraction 3). The fractions were shown to be very polydisperse, and differences between the GPC refractive index and UV absorbance (214 nm) elution profiles demonstrated chemical heterogeneity. They were found to contain significantly different proportions of protein (1A, 2.79%; 1B, 0.97%; 1C, 0.77%; 2A, 1.41%; 2B, 5.09%; and 3, 5.89%) and ferulic acid (approximately 1A, 0.5%; 1B, 0.5%; 1C, 0.9%; 2B, 1.5%; and 3, 2%). The weight-average molecular mass, M(w), of the fractions also varied (1A, 153 kDa; 1B, 155 kDa; 1C, 306 kDa; 2A, 562 kDa; 2B, 470 kDa; 3, 282 kDa). Three fractions, that is, 1A, 1B, and 3, produced orange oil emulsions with a relatively small droplet size that were stable over a period of weeks. The other three fractions (1C, 2A, and 2B with higher M(w) values) produced emulsions with an initially larger droplet size, and the droplet size increased considerably over time. The increased droplet size may be influenced by the viscosity of the aqueous continuous phase. There was no simple relationship between protein or ferulic acid content and emulsification ability. For example, fraction 1B, which contained the lowest proportion of both protein and ferulic acid, produced stable emulsions of similar droplet size to fraction 3, which contained the largest proportion of protein and ferulic acid. The role of protein in the emulsification process was investigated by measuring the amount of protein in the aqueous phase before and after emulsification. It was clearly demonstrated that proteinaceous material adsorbed at the oil-water interface. It is evident that the emulsification properties of sugar beet pectin are influenced by the accessibility of the protein and ferulic acid groups to the surface of the oil droplets, the proportion of ester groups, and the molecular mass distribution of the fractions."	"An event-related potential study of selective auditory attention in children and adults. In a dichotic listening paradigm, event-related potentials (ERPs) were recorded to linguistic and nonlinguistic probe stimuli embedded in 2 different narrative contexts as they were either attended or unattended. In adults, the typical N1 attention effect was observed for both types of probes: Probes superimposed on the attended narrative elicited an enhanced negativity compared to the same probes when unattended. Overall, this sustained attention effect was greater over medial and left lateral sites, but was more posteriorly distributed and of longer duration for linguistic as compared to nonlinguistic probes. In contrast, in 6- to 8-year-old children the ERPs were morphologically dissimilar to those elicited in adults and children displayed a greater positivity to both types of probe stimuli when embedded in the attended as compared to the unattended narrative. Although both adults and children showed attention effects beginning at about 100 msec, only adults displayed left-lateralized attention effects and a distinct, posterior distribution for linguistic probes. These results suggest that the attentional networks indexed by this task continue to develop beyond the age of 8 years."	"First cervical cytology aged moved to 25. NA"	"Culture shift: carer empowerment and cooperative inquiry. Government policy has directed local services to address the needs of carers as a way of maintaining care in the community. This study was initiated to enable carers to develop an information pack based upon their identified needs. Cooperative inquiry was the method used to ensure full participation of the carers. Group meetings were already in existence through a charity organization who provides a carers support network. The first author participated in a number of carers group meetings. Cooperative inquiry was used to clarify a number of themes identified and reflective cycles ensured that those themes remained relevant. It was found that carers did want to be involved in their relative's care, not as passive recipients but as collaborative care providers. To do this they need to be fully informed of the processes of care provision. Carers need information that is relevant, easily accessible and obtainable in varying degrees of comprehension. This study suggests that a culture shift within mental health nursing is necessary if professionals are to recognize that a perceived lack of support may lead to a breakdown in relationships between the carer, the person being cared for and the professionals."	"Novel soluble molecule, Akhirin, is expressed in the embryonic chick eyes and exhibits heterophilic cell-adhesion activity. Akhirin, a novel secreted protein of 90 kDa, has been identified using signal sequence trap cDNA screening of an embryonic day 6 chicken lens cDNA library. Akhirin consists of one LCCL (Limulus factor C, Coch-5b2, and Lgl1) domain and two von Willebrand factor domains and displays high structural homology to vitrin and cochlin. The earliest expression of Akhirin is observed in the head ectoderm overlying the lens vesicle at stage 17 and in the retinal pigment epithelial layer at stage 22. It is persistently expressed in the ciliary marginal zone and in lens epithelium cells throughout embryonic eye development. Immunostaining with anti-Akhirin monoclonal antibody revealed a punctate distribution of Akhirin protein on living transfected cells. Cell adhesion and cell aggregation experiments showed that Akhirin has heterophilic cell-adhesion activity. Based on these observations, we hypothesize that Akhirin is involved in eye development."	"New insights into the mechanism of gelation of alginate and pectin: charge annihilation and reversal mechanism. Studies have been undertaken on the binding of Mn2+ ions to two alginate samples of different mannuronate:guluronate ratios (M:G), a sample of low-ester amidated pectin and poly(acrylic acid) (PAA). The binding of Ca2+ ions has also been included for the latter for comparison. The binding curves showed an initial steep rise at low additions of Mn2+ or Ca2+ indicating that all of the ions were bound to the polymer chains with none remaining in solution. At higher additions, the binding curves showed a plateau region and the maximum amount bound, theta, was found to be 0.2, 0.2, 0.25, and 0.33 mol M(2+)/mol COO- for high M:G alginate, low M:G alginate, pectin, and PAA, respectively. The binding curves for Mn2+ and Ca2+ with PAA were superimposable. In all cases, theta was less than the stoichiometric equivalent and also less than predicted by Manning counterion condensation theory. The linear charge density, xi, for the polymers is 1.49, 1.55, 1.62, and 2.85, and it was found that at maximum binding the effective linear charge density, xi(effective), decreased to a value close to 1 in each case and not 0.5 as predicted from Manning's two-variable theory. The mobility of the PAA chains has been followed by electron spin resonance spectroscopy using nitroxide spin labels covalently attached to the polymer, and the gelation of the pectin and alginate samples has been monitored using small deformation oscillatory experiments. For PAA at maximum binding, it was noted that there was a loss of chain mobility and precipitation. For pectin and alginate, gelation occurred and the stoichiometric ratio for maximum binding corresponded to the stoichiometric ratio for the maximum in G'. Precipitation and gelation are attributed to the formation of polymer-metal complexes involving one or two carboxylate groups resulting in charge reversal or charge annihilation."	"Rhodium hydride formation in the presence of a bulky monophosphite ligand: a spectroscopic and solid-state investigation. A study has been carried out on rhodium catalyst preforming when modified with the bulky tris(2,4-di-tert-butylphenyl) phosphite, P(Obtbp)(3). X-Ray crystal structure determinations of a tropolone-type precursor complex [Rh(TropBr(3))(CO){P(Obtbp)(3)}].P(Obtbp)(3).CH(3)COCH(3)(TropBr(3)= 3,5,7-tribromotropolonate) and the free P(Obtbp)(3) ligand are reported. Systematic in situ IR and NMR studies of the particular rhodium phosphite modified catalyst and its precursors have led to the identification of two distinct rhodium hydride species. A {(1)H,(31)P} HMBC NMR experiment afforded clarity on the (31)P NMR spectra observed under hydroformylation conditions. The species were identified as [HRh(CO)(3){P(Obtbp)(3)}] and [HRh(CO)(2){P(Obtbp)(3)}(2)]. Attention was also given to the rate of catalyst formation when starting from different rhodium precursors."	"RT-PCR analysis of Tecta, Coch, Eya4 and Strc in mouse cochlear explants. Tecta, Coch, Eya4 and Strc are mouse orthologs of four human deafness-associated genes. Their expression is markedly restricted to specific cell types in cochleae. Cochleae were dissected on embryonic day 15 and cultured in vitro. Relative messenger RNA abundance of each gene was quantified by RT-PCR and compared in-vivo cochleae of equivalent embryonic age. After 48 h in culture, in-vivo and explant Strc expression levels were equivalent, Eya4 level reduced in explanted tissues, and expression of Tecta and Coch did not show the expected temporal rise. Expression of these genes was detectable even after 96 h. These results suggest that it is feasible to test the expression of inner ear specific genes in explanted cochleae."	"ERP nonword rhyming effects in children and adults. In a simple prime-target auditory rhyming event-related potential (ERP) paradigm with adults and 6-, 7-, and 8-year-old children, nonword stimuli (e.g., nin-rin, ked-voo) were used to investigate neurocognitive systems involved in rhyming and their development across the early school years. Even absent semantic content, the typical CNV to primes and late rhyming effect (RE) to targets were evident in all age groups. The RE consisted of a more negative response to nonrhyming targets as compared to rhyming targets over posterior sites, with a reversal of this pattern at lateral anterior sites. The hypothesis that the CNV indexes phonological memory processes was not well supported by correlation analyses conducted with the ERP measures and scores on standardized behavioral tests. However, the onset of the rhyming effect was later in those scoring lower on phonological awareness measures."	"Cyclic enkephalin analogs containing various para-substituted phenylalanine derivatives in place of Tyr1 are potent opioid agonists. The cyclic enkephalin analog H-Tyr-c[D-Cys-Gly-Phe(pNO(2))-D-Cys]NH(2) is a highly potent opioid agonist with IC(50)s of 35 pm and 19 pm in the guinea-pig ileum (GPI) and mouse vas deferens (MVD) assays, respectively. The Phe(1)-analog of this peptide showed 370-fold and 6790-fold lower agonist potency in the GPI and MVD assays, respectively, indicating the importance of the Tyr(1) hydroxyl-group in the interaction with mu and delta opioid receptors. In the present study, the effect of various substituents (-NH(2), -NO(2), -CN, -CH(3), -COOH, -COCH(3), -CONH(2)) introduced in the para-position of the Phe(1)-residue of H-Phe-c[D-Cys-Gly-Phe(pNO(2))-D-Cys]NH(2) on the in vitro opioid activity profile was examined. Most analogs showed enhanced mu and delta agonist potencies in the two bioassays, except for the Phe(pCOOH)(1)-analog, which was weakly active, probably as a consequence of the negative charge. The most potent compounds were the Phe(pCOH(3))(1)- and the Phe(pCONH(2))(1)-analogs. The latter compound showed subnanomolar mu and delta agonist potencies and represents the most potent enkephalin analog lacking the Tyr(1) hydroxyl-group reported to date. Taken together, these results indicate that various substituents introduced in the para-position of Phe(1) enhance opioid activity via hydrogen bonding or hydrophobic interactions with the receptor. Comparison with existing structure-activity relationship on phenolic hydroxyl replacements in morphinans indicates that these nonpeptide opiates and some of the cyclic enkephalin analogs described here may have different modes of binding to the receptor."	"Oxidative dissolution of copper and zinc metal in carbon dioxide with tert-butyl peracetate and a beta-diketone chelating agent. A series of beta-diketone ligands, R(1)COCH(2)COR(2) [tmhdH (R(1) = R(2) = C(CH(3))(3)); tfacH (R(1) = CF(3); R(2) = CH(3)); hfacH (R(1) = R(2) = CF(3))], in combination with tert-butyl peracetate (t-BuPA), have been investigated as etchant solutions for dissolution of copper metal into carbon dioxide solvent. Copper removal in CO(2) increases in the order tfacH &lt; tmhdH &lt; hfacH. A study of the reactions of the hfacH/t-BuPA etchant solution with metallic copper and zinc was conducted in three solvents: scCO(2) (supercrical CO(2)); hexanes; CD(2)Cl(2). The etchant solution/metallic zinc reaction produced a diamagnetic Zn(II) complex, which allowed NMR identification of the t-BuPA decomposition products as tert-butyl alcohol and acetic acid. Gravimetric analysis of the amount of zinc consumed, together with NMR studies, confirmed the 1:1:2 Zn:t-BuPA:hfacH reaction stoichiometry, showing t-BuPA to be an overall two-electron oxidant for Zn(0). The metal-containing products of the copper and zinc reactions were characterized by elemental analysis, IR spectroscopy, and, as appropriate, NMR spectroscopy and single-crystal X-ray diffraction [trans-M(hfac)(2)(H(2)O)(CH(3)CO(2)H) (1, M = Cu; 2, M = Zn)]. On the basis of the experimental results, a working model of the oxidative dissolution reaction is proposed, which delineates the key chemical variables in the etching reaction. These t-BuPA/hfacH etchant solutions may find application in a CO(2)-based chemical mechanical planarization (CMP) process."	"The C- and N-Terminal Residues of Synthetic Heptapeptide Ion Channels Influence Transport Efficacy Through Phospholipid Bilayers. The synthetic peptide, R(2)N-COCH(2)OCH(2)CO-Gly-Gly-Gly-Pro-Gly-Gly-Gly-OR', was shown to be selective for Cl(-) over K(+) when R is n-octadecyl and R' is benzyl. Nineteen heptapeptides have now been prepared in which the N-terminal and C-terminal residues have been varied. All of the N-terminal residues are dialkyl but the C-terminal chains are esters, 2 degrees amides, or 3 degrees amides. The compounds having varied N-terminal anchors and C-terminal benzyl groups are as follows: 1, R = n-propyl; 2, R = n-hexyl; 3, R = n-octyl; 4, R = n-decyl; 5, R = n-dodecyl; 6, R = n-tetradecyl; 7, R = n-hexadecyl; 8, R = n-octadecyl. Compounds 9-19 have R = n-octadecyl and C-terminal residues as follows: 9, OR' = OCH(2)CH(3); 10, OR' = OCH(CH(3))(2); 11, OR' = O(CH(2))(6)CH(3); 12, OR' = OCH(2)-c-C(6)H(11); 13, OR' = O(CH(2))(9)CH(3); 14, OR' = O (CH(2))(17)CH(3); 15, NR'(2) = N[(CH(2))(6)CH(3)](2); 16, NHR' = NH(CH(2))(9)CH(3); 17, NR'(2) = N[(CH(2))(9)CH(3)](2); 18, NHR' = NH(CH(2))(17)CH(3); 19, NR'(2) = N[(CH(2))(17)CH(3)](2). The highest anion transport activities were observed as follows. For the benzyl esters whose N-terminal residues were varied, i.e.1-8, compound 3 was most active. For the C(18) anchored esters 10-14, n-heptyl ester 11 was most active. For the C(18) anchored, C-terminal amides 15-19, di-n-decylamide 17 was most active. It was concluded that both the C- and N-terminal anchors were important for channel function in the bilayer but that activity was lost unless only one of the two anchoring groups was dominant."	"Anion Transport in Liposomes Responds to Variations in the Anchor Chains and the Fourth Amino Acid of Heptapeptide Ion Channels. Seven heptapeptide derivatives have been prepared. The peptide structure is (Gly)(3)Xxx(Gly)(3) in which Xxx stands for a variable amino acid. The amino acid variations include azetidine carboxylic acid, pipecolic acid, meta-aminobenzoic acid, proline, and leucine. All seven compounds have a C-terminal benzyl group. In all cases, the heptapeptide's N-terminus was linked to diglycolic acid and a dialkylamine. In five cases, the N-terminal group was didecylamine and in two cases, N-ethyl-N-decyl. Chloride and carboxyfluorescein release from phospholipid vesicles was studied with the result that C(10)H(21)N(C(2)H(5)) COCH(2)OCH(2)CO-NH-(Gly)(3)Leu(Gly)(3)-OCH(2)Ph was the most active. Hill analysis showed that this compound involves pore formation by four monomer units rather than two, as previously found for other members of this family."	"Restricting paracetamol in the United Kingdom to reduce poisoning: a systematic review. Paracetamol poisoning is implicated in about 150-200 poisoning deaths per year in England and Wales. We review previous studies assessing the effectiveness of regulations introduced in 1998 to restrict sales of paracetamol and reduce paracetamol poisoning. We searched the following electronic databases: MEDLINE, EMBASE, CINHAL, HIMIC, COCH, APC, CENTRAL and DARE. English language publications between 1998 and 2003 were included. Studies were included if they took place in the United Kingdom and assessed changes in any aspect of paracetamol poisoning following the introduction of the 1998 regulations. Twelve studies were identified, which examined several different outcomes. Three studies examined admissions to liver transplant units; all reported reductions. Eight studies evaluated severity of paracetamol poisoning; three reported reductions but five did not. Five out of six studies reported reductions in hospital admissions. One study reported reduced mortality in England and Wales after 1 year while another found no difference in Scotland 2 years after the regulations were introduced. Two studies observed a significant reduction in over-the-counter sales. Studies suffered from several limitations including short follow-up periods, no case definition for paracetamol poisoning and lack of comparison groups. The limitations of these studies makes it difficult to draw firm conclusions. They do, however, suggest that the 1998 regulations may have been associated with reduced admissions to liver units and liver transplants, reduced hospital attendance due to paracetamol poisoning and reduced sales of paracetamol. Further research is needed to fully evaluate the impact of the 1998 regulations. In the future, formal evaluation of the impact of similar interventions should be an integral part of policy formation."	"[Left ventricular pseudoaneurysm due to traumatic papillary muscle avulsion]. NA"	"Proteomics reveal Cochlin deposits associated with glaucomatous trabecular meshwork. The etiology of primary open angle glaucoma, a leading cause of age-related blindness, remains poorly defined, although elevated intraocular pressure (IOP) contributes to the disease progression. To better understand the mechanisms causing elevated IOP from aqueous humor circulation, we pursued proteomic analyses of trabecular meshwork (TM) from glaucoma and age-matched control donors. These analyses demonstrated that Cochlin, a protein associated with deafness disorder DFNA9, is present in glaucomatous but absent in normal TM. Cochlin was also detected in TM from the glaucomatous DBA/2J mouse preceding elevated IOP but found to be absent in three other mouse lines that do not develop elevated IOP. Histochemical analyses revealed co-deposits of Cochlin and mucopolysaccharide in human TM around Schlemm's canal, similar to that observed in the cochlea in DFNA9 deafness. Purified Cochlin was found to aggregate after sheer stress and to induce the aggregation of TM cells in vitro. Age-dependent in vivo increases in Cochlin were observed in glaucomatous TM, concomitant with a decrease in type II collagen, suggesting that Cochlin may disrupt the TM architecture and render components like collagen more susceptible to degradation and collapse. Overall, these observations suggest that Cochlin contributes to elevated IOP in primary open angle glaucoma through altered interactions within the TM extracellular matrix, resulting in cell aggregation, mucopolysaccharide deposition, and significant obstruction of the aqueous humor circulation."	"Alkynyldiphenylphosphine d8 (Pt, Rh, Ir) complexes: contrasting behavior toward cis-[Pt(C6F5)2(THF)2]. The synthesis and characterization of a series of mononuclear d(8) complexes with at least two P-coordinated alkynylphosphine ligands and their reactivity toward cis-[Pt(C(6)F(5))(2)(THF)(2)] are reported. The cationic [Pt(C(6)F(5))(PPh(2)C triple-bond CPh)(3)](CF(3)SO(3)), 1, [M(COD)(PPh(2)C triple-bond CPh)(2)](ClO(4)) (M = Rh, 2, and Ir, 3), and neutral [Pt(o-C(6)H(4)E(2))(PPh(2)C triple-bond CPh)(2)] (E = O, 6, and S, 7) complexes have been prepared, and the crystal structures of 1, 2, and 7.CH(3)COCH(3) have been determined by X-ray crystallography. The course of the reactions of the mononuclear complexes 1-3, 6, and 7 with cis-[Pt(C(6)F(5))(2)(THF)(2)] is strongly influenced by the metal and the ligands. Thus, treatment of 1 with 1 equiv of cis-[Pt(C(6)F(5))(2)(THF)(2)] gives the double inserted cationic product [Pt(C(6)F(5))(S)mu-(C(Ph)=C(PPh(2))C(PPh(2))=C(Ph)(C(6)F(5)))Pt(C(6)F(5))(PPh(2)C triple-bond CPh)](CF(3)SO(3)) (S = THF, H(2)O), 8 (S = H(2)O, X-ray), which evolves in solution to the mononuclear complex [(C(6)F(5))(PPh(2)C triple-bond CPh)Pt(C(10)H(4)-1-C(6)F(5)-4-Ph-2,3-kappaPP'(PPh(2))(2))](CF(3) SO(3)), 9 (X-ray), containing a 1-pentafluorophenyl-2,3-bis(diphenylphosphine)-4-phenylnaphthalene ligand, formed by annulation of a phenyl group and loss of the Pt(C(6)F(5)) unit. However, analogous reactions using 2 or 3 as precursors afford mixtures of complexes, from which we have characterized by X-ray crystallography the alkynylphosphine oxide compound [(C(6)F(5))(2)Pt(mu-kappaO:eta(2)-PPh(2)(O)C triple-bond CPh)](2), 10, in the reaction with the iridium complex (3). Complexes 6 and 7, which contain additional potential bridging donor atoms (O, S), react with cis-[Pt(C(6)F(5))(2)(THF)(2)] in the appropriate molar ratio (1:1 or 1:2) to give homo- bi- or trinuclear [Pt(PPh(2)C triple-bond CPh)(mu-kappaE-o-C(6)H(4)E(2))(mu-kappaP:eta(2)-PPh(2)C triple-bond CPh)Pt(C(6)F(5))(2)] (E = O, 11, and S, 12) and [(Pt(mu(3)-kappa(2)EE'-o-C(6)H(4)E(2))(mu-kappaP:eta(2)-PPh(2)C triple-bond CPh)(2))(Pt(C(6)F(5))(2))(2)] (E = O, 13, and S, 14) complexes. The molecular structure of 14 has been confirmed by X-ray diffraction, and the cyclic voltammetric behavior of precursor complexes 6 and 7 and polymetallic derivatives 11-14 has been examined."	"A convenient and efficient route for the allylation of aromatic amines and alpha-aryl aldehydes with alkynes in the presence of a Pd(0)/PhCOOH combined catalyst system. The allylation of aromatic amines with alkynes proceeded smoothly in the presence of catalytic amounts of Pd(PPh(3))(4) and benzoic acid. The allylation products were obtained in high yields in a regio- and stereoselective manner. The effect of various groups on the nitrogen atom of anilines was studied. Regardless of the substituent (electron withdrawing or electron donating) on the aromatic ring, the reaction proceeded well. Various functionalities, including -CH(3), -OMe, -Cl, -CN, -COOMe, -NO(2) and -COCH(3) were tolerated under the reaction conditions. Similarly, the allylation of alpha-aryl aldehydes proceeded well with the same level of regio- and stereoselectivity as the allylation of aromatic amines. This reaction provides the second example of the transition metal catalyzed direct alpha-allylation of aldehydes."	"Functional characterization of an LCCL-lectin domain containing protein family in Plasmodium berghei. Using bioinformatic, proteomic, immunofluorescence, and genetic cross methods, we have functionally characterized a family of putative parasite ligands as potential mediators of cell-cell interactions. We name these proteins the Limulus clotting factor C, Coch-5b2, and Lgl1 (LCCL)-lectin adhesive-like protein (LAP) family. We demonstrate that this family is conserved amongst Plasmodium spp. It possesses a unique arrangement of adhesive protein domains normally associated with extracellular proteins. The proteins are expressed predominantly, though not exclusively, in the mosquito stages of the life cycle. We test the hypothesis that these proteins are surface proteins with 1 member of this gene family, lap1, and provide evidence that it is expressed on the surface of Plasmodium berghei sporozoites. Finally, through genetic crosses of wild-type Pblap1+ and transgenic Pblap1- parasites, we show that the null phenotype previously reported for sporozoite development in a Pblap1- mutant can be rescued within a heterokaryotic oocyst and that infectious Pblap1 sporozoites can be formed. The mutant is not rescued by coparasitization of mosquitoes with a mixture Pblap1+ and Pblap1- homokaryotic oocysts."	"Temporal bone histopathology in dominantly inherited audiovestibular syndrome. To describe the clinical and pathologic features of a new dominantly inherited audiovestibular syndrome. History, examination, and audiometric testing in the proband, brother, and son; quantitative rotational testing in the proband and son; histopathology of the cochlea and vestibular labyrinth in the proband; sequencing candidate genes COCH and MYO7A in the brother and son. Affected family members developed slowly progressive hearing loss beginning in their late 30s and progressive imbalance in their early 70s. Three of four affected had brief (minutes) episodes of vertigo typically occurring a few times per year. Auditory and vestibular function testing documented a slowly progressive loss of auditory and vestibular function. Postmortem examination showed a loss of hair cells in the cochlea and vestibular receptor organs. There were no cellular infiltrates or acidophilic deposits. No mutations were found in the COCH or MYO7A genes. This dominantly inherited audiovestibular syndrome results in a selective loss of hair cells in the auditory and vestibular end organs. Finding the causative gene could have important implications for understanding the pathophysiology of presbycusis and dysequilibrium of aging."	"Images in cardiovascular medicine. Primary stenting of an anomalous left anterior descending coronary artery originating from the proximal right coronary artery in a patient with acute non-ST-elevation myocardial infarction. NA"	"Current products and practices: curriculum development in orthodontic specialist registrar training: can orthodontics achieve constructive alignment? This paper aims to encourage a debate on the learning outcomes that have been developed for orthodontic specialist education. In outcome-based education the learning outcomes are clearly defined. They determine curriculum content and its organization, the teaching and learning approaches, the assessment techniques and hope to focus the minds of the students on ensuring all the learning outcomes are met. In Orthodontic Specialist Registrar training, whether constructive alignment can be achieved depends on the relationship between these aspects of the education process and the various bodies responsible for their delivery in the UK."	"New CCK2 agonists confirming the heterogeneity of CCK2 receptors: characterisation of BBL454. Pharmacological studies were undertaken with a new series of cholecystokinin(2) CCK(2) agonists in order to assign to them a CCK(2A) or CCK(2B) pharmacological profile. The open-field test was chosen as the discrimination test of CCK(2B) agonists. The most interesting agonist, BBL454 (0.03-300 microg/kg) induced hyperactivity which was blocked by a CCK(2) antagonist, the D1 antagonist SCH23390, the delta-opioid antagonist naltrindole, but not a CCK(1) antagonist. All compounds active in the open-field test are characterised by a common structural feature, -COCH(2)CO-Trp-NMeNle-Asp-Phe-NH(2), whereas inactive compounds do not possess such a motive. Therefore, this feature can be considered crucial for CCK(2B) activity. BBL454 (0.03-3 microg/kg) improved memory in a two-trial memory test while it was very weakly active on the peripheral CCK(2) receptor, and did not evoke anxiogenic effects in the plus-maze test. The synthesis of BBL454 is simple, its minimal active dose is 30 ng/kg and no &quot;bell-shaped&quot; responses were observed. These results suggest that BBL454 could be considered to be the new CCK(2B) reference agonist."	"End-capping of the modified melanocortin tetrapeptide (p-Cl)Phe-D-Phe-Arg-Trp-NH2 as a route to hMC4R agonists. Of the 42 R'-X-(p-Cl)Phe-D-Phe-Arg-Trp-NH(2) (X=CO, SO(2), PO, PS) tested at the human (h)MC1, hMC3, and hMC4 receptors (R), the most potent MC4R agonists (EC(50) of 8-20 nM) were obtained by end-capping with R'=CH(2)CHCH(2) (9), NCCH(2) (16), NH(2)COCH(2) (17), HCONHCH(2) (18), CH(3)NH (19), CH(2)CHCH(2)NH (21), 2-Th (23), PhCH(2) (30) and X=CO. These compounds possess 35-60-fold hMC4 versus hMC1Rs selectivity with urea LK-71 (19) being the most potent at hMC4R and MC4/1R selective (EC(50)=8.5 nM, MC4/1R=100). LK-75 (16) combines high potency at hMC4R and MC4/3R selectivity (EC(50)=10.5 nM, MC4/3R=290). SAR is discussed."	"Dipeptidomimetic ketomethylene isosteres as pro-moieties for drug transport via the human intestinal di-/tripeptide transporter hPEPT1: design, synthesis, stability, and biological investigations. Five dipeptidomimetic-based model prodrugs containing ketomethylene amide bond replacements were synthesized from readily available alpha,beta-unsaturated gamma-ketoesters. The model drug (BnOH) was attached to the C-terminus or to one of the side chain positions of the dipeptidomimetic. The stability, the affinity for the di-/tripeptide transporter hPEPT1, and the transepithelial transport properties of the model prodrugs were investigated. ValPsi[COCH(2)]Asp(OBn) was the compound with highest chemical stability in buffers at pH 6.0 and 7.4, with half-lives of 190 and 43 h, respectively. All five compounds showed high affinity for hPEPT1 (K(i) values &lt; 1 mM), and PhePsi[COCH(2)]Asp(OBn) and ValPsi[COCH(2)]Asp(OBn) had the highest affinities with K(i) values of 68 and 19 microM, respectively. An hPEPT1-mediated transport component was demonstrated for the transepithelial transport of three compounds, a finding that was corroborated by hPEPT1-mediated intracellular uptake. The results indicate that the stabilized Phe-Asp and Val-Asp derivatives are promising pro-moieties in a prodrug approach targeting hPEPT1."	"Bis(1-acetonylpyridinium) pyridinium hexaiodobismuth(III). The crystal structure of the title complex, (C(8)H(10)N)(2)(C(5)H(6)N)[BiI(6)], contains discrete [BiI(6)](3-) anions, and (HNC(5)H(5))(+) and (CH(3)COCH(2)NC(5)H(5))(+) cations separated by normal van der Waals contacts. The [BiI(6)](3-) anion has the Bi atom on an inversion centre. The (HNC(5)H(5))(+) cation also lies about an inversion centre and is disordered. The (CH(3)COCH(2)NC(5)H(5))(+) cation lies in a general position."	"C-reactive protein, the metabolic syndrome, and prediction of cardiovascular events in the Framingham Offspring Study. Inflammation (assessed by C-reactive protein [CRP]) and the metabolic syndrome (MetS) are associated with cardiovascular disease (CVD), but population-based data are limited. We assessed the cross-sectional relations of CRP to the MetS (National Cholesterol Education Program Expert Panel on Detection, Evaluation, and Treatment of High Blood Cholesterol in Adults, Adult Treatment Panel III definition) in 3037 subjects (1681 women; mean age, 54 years) and the utility of CRP and the MetS to predict new CVD events (n=189) over 7 years. MetS (&gt; or =3 of 5 traits) was present in 24% of subjects; mean age-adjusted CRP levels for those with 0, 1, 2, 3, 4, or 5 MetS traits were 2.2, 3.5, 4.2, 6.0, or 6.6 mg/L, respectively (P trend &lt;0.0001). In persons with MetS, age-adjusted CRP levels were higher in women than men (7.8 versus 4.6 mg/L; P&lt;0.0001). MetS and baseline CRP were individually related to CVD events (for MetS: age-sex-adjusted hazard ratio [HR], 2.1; 95% CI, 1.5 to 2.8; for highest versus lowest CRP quartile: HR, 2.2; 95% CI, 1.4 to 3.5). Greater risk of CVD persisted for MetS and CRP even after adjustment in a model including age, sex, MetS (HR, 1.8; 95% CI, 1.4 to 2.5), and CRP (HR, 1.9; 95% CI, 1.2 to 2.9). The c-statistic associated with the age- and sex-adjusted model including CRP was 0.72; including MetS, 0.74; and including CRP and MetS, 0.74. Elevated CRP levels are related to insulin resistance and the presence of the MetS, especially in women. Although discrimination of subjects at risk of CVD events using both MetS and CRP is not better than using either phenotype alone, both CRP and MetS are independent predictors of new CVD events."	"Slow-binding inhibitors of prolyl oligopeptidase with different functional groups at the P1 site. POP (prolyl oligopeptidase) specifically hydrolyses a number of small proline-containing peptides at the carboxy end of the proline residue and POP inhibitors have been shown to have cognition-enhancing properties. It has been noted that certain functional groups at the P1 site of the inhibitor, which correspond to the substrate residue on the N-terminal side of the bond to be cleaved, increase the inhibitory potency. However, detailed mechanistic and kinetic analysis of the inhibition has not been studied. In the present study, we examined the effect of different functional groups at the P1 site of the parent inhibitor isophthalic acid bis-(L-prolylpyrrolidine) amide on the binding kinetics to POP. Addition of CHO, CN or COCH(2)OH groups to the P1 site increased the inhibitory potency by two orders of magnitude (K(i)=11.8-0.1 nM) and caused a clear slow-binding inhibition. The inhibitor containing a CHO group had the lowest association rate constant, k(on)=(2.43+/-0.12) x 10(5) M(-1) x s(-1), whereas the inhibitor with a CN group exhibited the fastest binding, k(on)=(12.0+/-0.08)x10(5) M(-1) x s(-1). In addition, the dissociation rate was found to be crucially dependent on the type of the functional group. Compounds with COCH(2)OH and CHO groups had much longer half-lives of dissociation (over 5 h) compared with the compound with the CN group (25 min), although the K(i) values of the compounds were relatively similar. A possibility to optimize the duration of inhibition by changing the functional group at the P1 site is important when planning therapeutically useful POP inhibitors."	"Gene Symbol: COCH. Disease: DFNA9. NA"	"Meta-substituted aryl(thio)ethers as potent partial agonists (or antagonists) for the histamine H3 receptor lacking a nitrogen atom in the side chain. 4-(3-Aryloxypropyl)-1H-imidazoles, which possess a meta-positioned substituent in the aryl ring, have been synthesized and tested for activity at histamine H(3) receptors. The compounds having a CN, Me, or Br substituent were found to be antagonists, whereas CF(3), Et, i-Pr, t-Bu, COCH(3), or NO(2) substituents remarkably afforded partial agonists when tested in vitro on rat cerebral cortex synaptosomes for inhibition of [(3)H]histamine release. The compounds were also active in vivo, and furthermore, the CF(3)-substituted compound trifluproxim (UCL 1470, 7) acted as a potent full agonist in vivo, having ED(50) = 0.6 +/- 0.3 mg/kg per os in mice for inhibition of brain N(tau)-methylhistamine formation. Related structures have also been investigated; homologues 4-[4-(3-(trifluoromethyl)phenoxy)butyl]-1H-imidazole and 4-[2-(3-(trifluoromethyl)phenylthio)ethyl]-1H-imidazole are shown to be partial agonists, whereas the O isostere 4-[2-(3-(trifluoromethyl)phenoxy)ethyl]-1H-imidazole is an antagonist as is the S homologue 4-[3-(3-(trifluoromethyl)phenylthio)propyl]-1H-imidazole and its CH(2) isostere 4-[4-(3-(trifluoromethyl)phenyl)butyl]-1H-imidazole."	"Luminescent Ag i-Cu i heterometallic hexa-, octa-, and hexadecanuclear alkynyl complexes. A series of Ag(I)-Cu(I) heteronuclear alkynyl complexes were prepared by reaction of polymeric (MCCC(6)H(4)R-4)(n)() (M = Cu(I) or Ag(I); R = H, CH(3), OCH(3), NO(2), COCH(3)) with [M'(2)(mu-Ph(2)PXPPh(2))(2)(MeCN)(2)](ClO(4))(2) (M' = Ag(I) or Cu(I); X = NH or CH(2)). Heterohexanuclear complexes [Ag(4)Cu(2)(mu-Ph(2)PNHPPh(2))(4)(CCC(6)H(4)R-4)(4)](ClO(4))(2) (R = H, 1; CH(3), 2) were afforded when X = NH, and heterooctanuclear complexes [Ag(6)Cu(2)(micro-Ph(2)PCH(2)PPh(2))(3)(CCC(6)H(4)R-4)(6)(MeCN)](ClO(4))(2) (R = H, 3; CH(3), 4; OCH(3), 5; NO(2), 6) were isolated when X = CH(2). Self-assembly reaction between (MCCC(6)H(4)COCH(3)-4)(n) and [M'(2)(mu-Ph(2)PCH(2)PPh(2))(2)(MeCN)(2)](ClO(4))(2), however, gave heterohexadecanuclear complex [Ag(6)Cu(2)(micro-Ph(2)PCH(2)PPh(2))(3)(CCC(6)H(4)COCH(3)-4)(6)](2)(ClO(4))(4) (7). The heterohexanuclear complexes 1 and 2 show a bicapped cubic skeleton (Ag(4)Cu(2)C(4)) consisting of four Ag(I) and two Cu(I) atoms and four acetylide C donors. The heterooctanuclear complexes 3-6 exhibit a waterwheel-like structure that can be regarded as two Ag(3)Cu(CCC(6)H(5))(3) components put together by three bridging Ph(2)PCH(2)PPh(2) ligands. The heterohexadecanuclear complex 7 can be viewed as a dimer of heterooctanuclear complex [Ag(6)Cu(2)(micro-Ph(2)PCH(2)PPh(2))(3)(CCC(6)H(4)COCH(3)-4)(6)](ClO(4))(2) through the silver and acetyl oxygen (Ag-O = 2.534 (4) A) linkage between two waterwheel-like Ag(6)Cu(2) units. All of the complexes show intense luminescence in the solid states and in fluid solutions. The microsecond scale of lifetimes in the solid state at 298 K reveals that the emission is phosphorescent in nature. The emissive state in compounds 1-5 is likely derived from a (3)LMCT (CCC(6)H(4)R-4 --&gt; Ag(4)Cu(2) or Ag(6)Cu(2)) transition, mixed with a metal cluster-centered (d --&gt; s) excited state. The lowest lying excited state in compounds 6 and 7 containing electron-deficient 4-nitrophenylacetylide and 4-acetylphenylacetylide, respectively, however, is likely dominated by an intraligand (3)[pi --&gt; pi] character."	"Surviving and thriving in the early years as a new consultant physician. NA"	"Murine autoimmune hearing loss mediated by CD4+ T cells specific for inner ear peptides. Autoimmune sensorineural hearing loss (ASNHL) is characterized typically by bilateral, rapidly progressive hearing loss that responds therapeutically to corticosteroid treatment. Despite its name, data implicating autoimmunity in the etiopathogenesis of ASNHL have been limited, and targeted self-antigens have not been identified. In the current study we show that the inner ear-specific proteins cochlin and beta-tectorin are capable of targeting experimental autoimmune hearing loss (EAHL) in mice. Five weeks after immunization of SWXJ mice with either Coch 131-150 or beta-tectorin 71-90, auditory brainstem responses (ABR) showed significant hearing loss at all frequencies tested. Flow cytometry analysis showed that each peptide selectively activated CD4(+) T cells with a proinflammatory Th1-like phenotype. T cell mediation of EAHL was determined by showing significantly increased ABR thresholds 6 weeks after adoptive transfer of peptide-activated CD4(+) T cells into naive SWXJ recipients. Immunocytochemical analysis showed that leukocytic infiltration of inner ear tissues coincided with onset of hearing loss. Our study provides a contemporary mouse model for clarifying our understanding of ASNHL and facilitating the development of novel effective treatments for this clinical entity. Moreover, our data provide experimental confirmation that ASNHL may be a T cell-mediated organ-specific autoimmune disorder of the inner ear."	"Experimental autoimmune hearing loss. Understanding of autoimmune sensorineural hearing loss (ASNHL) has been hindered by the inaccessibility of the inner ear to biopsy and the lack of workable animal models. A report in this issue of the JCI describes a mouse model of CD4(+) T cell-mediated ASNHL induced by immunization with peptides from the inner ear-specific proteins cochlin and beta-tectorin."	"Mentoring in GU medicine. NA"	"A novel Z-score-based method to analyze candidate genes for age-related hearing impairment. Approximately half of the variance of Age-Related Hearing Impairment (ARHI) is attributable to environmental risk factors, and the other half to genetic factors. None of these genes has ever been identified, but the genes involved in monogenic nonsyndromic hearing impairment are good candidates. Here we define and validate a quantitative trait value for ARHI, correcting for age and gender, to allow the genetic study of ARHI as a quantitative trait. Based on the ISO 7029 standard, we convert audiometric data into a Z-score, an age- and gender-independent value expressing to what extent a person is affected by ARHI. The validity of this approach is checked using a test population of randomly collected subjects. The power to evaluate the contribution of a candidate gene to ARHI is assessed using simulated populations. As an example, one ARHI candidate gene is analyzed. In our test population, Z-scores were normally distributed although the mean did not equal zero. Z-scores were independent of age, and there was no difference between men and women. Power studies using simulated populations indicated that to detect moderate genetic effects, sample sizes of at least 500 random subjects are necessary. The Z-score conversion appears to be a valid method to describe to what extent a subject is affected by ARHI, allowing to compare persons from different age and gender. This method can be the basis of future, powerful studies to identify ARHI genes."	"Patients in waiting: a qualitative study of type 2 diabetes patients' perceptions of diagnosis. Our aim was to examine how diagnosis is perceived by a sample of newly diagnosed type 2 diabetes patients. A qualitative study was carried out in the Lothian region of Scotland using in-depth interviews of 40 newly diagnosed type 2 diabetes patients recruited from 16 general practices in four Local Health Care Co-operatives and three hospital clinics. Purposive selection ensured that the sample's demographic characteristics were broadly representative of newly diagnosed type 2 diabetes patients in Lothian/Scotland. Clarity, timing and authority of the diagnosis delivery were highly salient for patients. Many patients perceived their GP as unwilling to deliver/confirm the diagnosis. Patients who were not referred to hospital were unclear why a referral had not taken place. Those referred perceived confirmation of diagnosis by the consultant as a central reason. Waiting for a hospital appointment could be problematic for patients. Most wanted the diagnosis confirmed before they felt confident making lifestyle changes. Input from health services during the period prior to the hospital visit was highly valued. Waiting was taken by some asymptomatic patients to indicate that they did not have the condition. Others used a lengthy period of waiting to confirm their view that they had a 'milder' or 'less serious' form of diabetes than other patients. Adequate input from practitioners is needed to ensure that diagnosis is fully exploited as a crucial period in which patients learn to adapt to their condition. Being explicit about the diagnosis at first contact may avoid the problem of patients feeling 'in limbo' or uncertain whether they have type 2 diabetes. Practitioners should convey to patients that post-diagnosis/initial care is a process, stages of this process should be clarified to avoid misunderstanding and services should be integrated during this interim period to best effect."	NA
+"EYA4"	"nonsyndromic genetic deafness"	"Genome-Wide Open Chromatin Methylome Profiles in Colorectal Cancer. The methylome of open chromatins was investigated in colorectal cancer (CRC) to explore cancer-specific methylation and potential biomarkers. Epigenome-wide methylome of open chromatins was studied in colorectal cancer tissues using the Infinium DNA MethylationEPIC assay. Differentially methylated regions were identified using the ChAMP Bioconductor. Our stringent analysis led to the discovery of 2187 significant differentially methylated open chromatins in CRCs. More hypomethylated probes were observed and the trend was similar across all chromosomes. The majority of hyper- and hypomethylated probes in open chromatin were in chromosome 1. Our unsupervised hierarchical clustering analysis showed that 40 significant differentially methylated open chromatins were able to segregate CRC from normal colonic tissues. Receiver operating characteristic analyses from the top 40 probes revealed several significant, highly discriminative, specific and sensitive probes such as OPLAH cg26256223, EYA4 cg01328892, and CCNA1 cg11513637, among others. OPLAH cg26256223 hypermethylation is associated with reduced gene expression in the CRC. This study reports many open chromatin loci with novel differential methylation statuses, some of which with the potential as candidate markers for diagnostic purposes."	"Insights into the pathophysiology of DFNA10 hearing loss associated with novel EYA4 variants. The mutational spectrum of many genes and their contribution to the global prevalence of hereditary hearing loss is still widely unknown. In this study, we have performed the mutational screening of EYA4 gene by DHLPC and NGS in a large cohort of 531 unrelated Spanish probands and one Australian family with autosomal dominant non-syndromic hearing loss (ADNSHL). In total, 9 novel EYA4 variants have been identified, 3 in the EYA4 variable region (c.160G &gt; T; p.Glu54*, c.781del; p.Thr261Argfs*34 and c.1078C &gt; A; p.Pro360Thr) and 6 in the EYA-HR domain (c.1107G &gt; T; p.Glu369Asp, c.1122G &gt; T; p.Trp374Cys, c.1281G &gt; A; p.Glu427Glu, c.1282-1G &gt; A, c.1601C &gt; G; p.S534* and an heterozygous copy number loss encompassing exons 15 to 17). The contribution of EYA4 mutations to ADNSHL in Spain is, therefore, very limited (~1.5%, 8/531). The pathophysiology of some of these novel variants has been explored. Transient expression of the c-myc-tagged EYA4 mutants in mammalian COS7 cells revealed absence of expression of the p.S534* mutant, consistent with a model of haploinsufficiency reported for all previously described EYA4 truncating mutations. However, normal expression pattern and translocation to the nucleus were observed for the p.Glu369Asp mutant in presence of SIX1. Complementary in silico analysis suggested that c.1107G &gt; T (p.Glu369Asp), c.1281G &gt; A (p.Glu427Glu) and c.1282-1G &gt; A variants alter normal splicing. Minigene assays in NIH3T3 cells further confirmed that all 3 variants caused exon skipping resulting in frameshifts that lead to premature stop codons. Our study reports the first likely pathogenic synonymous variant linked to DFNA10 and provide further evidence for haploinsufficiency as the common underlying disease-causing mechanism for DFNA10-related hearing loss."	"Prevalence and clinical features of hearing loss caused by EYA4 variants. Variants in the EYA4 gene are known to lead to autosomal dominant non-syndromic hereditary hearing loss, DFNA10. To date, 30 variants have been shown to be responsible for hearing loss in a diverse set of nationalities. To better understand the clinical characteristics and prevalence of DFNA10, we performed genetic screening for EYA4 mutations in a large cohort of Japanese hearing loss patients. We selected 1,336 autosomal dominant hearing loss patients among 7,408 unrelated Japanese hearing loss probands and performed targeted genome enrichment and massively parallel sequencing of 68 target genes for all patients. Clinical information of cases with mutations in EYA4 was gathered and analyzed from medical charts. Eleven novel EYA4 variants (three frameshift variants, three missense variants, two nonsense variants, one splicing variant, and two single-copy number losses) and two previously reported variants were found in 12 probands (0.90%) among the 1,336 autosomal dominant hearing loss families. The audiometric configuration of truncating variants tends to deteriorate for all frequencies, whereas that of non-truncating variants tends to show high-frequency hearing loss, suggesting a new correlation between genotype and phenotype in DFNA10. The rate of hearing loss progression caused by EYA4 variants was considered to be 0.63 dB/year, as found in this study and previous reports."	"Genetics of age-related hearing loss. Age-related hearing loss (ARHL) has recently been confirmed as a common complex trait, that is, it is heritable with many genetic variants each contributing a small amount of risk, as well as environmental determinants. Historically, attempts to identify the genetic variants underlying the ARHL have been of limited success, relying on the selection of candidate genes based on the limited knowledge of the pathophysiology of the condition, and linkage studies in samples comprising related individuals. More recently genome-wide association studies have been performed, but these require very large samples having consistent and reliable phenotyping for hearing loss (HL), and early attempts suffered from lack of reliable replication of their findings. Replicated variants shown associated with ARHL include those lying in genes GRM7, ISG20, TRIOBP, ILDR1, and EYA4. The availability of large biobanks and the development of collaborative consortia have led to a breakthrough over the last couple of years, and many new genetic variants associated with ARHL are becoming available, through the analysis publicly available bioresources and electronic health records. These findings along with immunohistochemistry and mouse models of HL look set to help disentangle the genetic architecture of ARHL, and highlight the need for standardization of phenotyping methods to facilitate data sharing and collaboration across research networks."	"EYA4 inhibits hepatocellular carcinoma by repressing MYCBP by dephosphorylating β-catenin at Ser552. Hepatocellular carcinoma (HCC) is one of the most common malignancies and the fourth leading cause of cancer-related death worldwide. Our previous study showed that EYA4 functioned by suppressing growth of HCC tumor cells, but its molecular mechanism is still not elucidated. Based on the results of gene microassay, EYA4 was inversely correlated with MYCBP and was verified in human HCC tissues by immunohistochemistry and western blot. Overexpressed and KO EYA4 in human HCC cell lines confirmed the negative correlation between EYA4 and MYCBP by qRT-PCR and western blot. Transfected siRNA of MYCBP in EYA4 overexpressed cells and overexpressed MYCBP in EYA4 KO cells could efficiently rescue the proliferation and G2/M arrest effects of EYA4 on HCC cells. Mechanistically, armed with serine/threonine-specific protein phosphatase activity, EYA4 reduced nuclear translocation of β-catenin by dephosphorylating β-catenin at Ser552, thereby suppressing the transcription of MYCBP which was induced by β-catenin/LEF1 binding to the promoter of MYCBP. Clinically, HCC patients with highly expressed EYA4 and poorly expressed MYCBP had significantly longer disease-free survival and overall survival than HCC patients with poorly expressed EYA4 and highly expressed MYCBP. In conclusion, EYA4 suppressed HCC tumor cell growth by repressing MYCBP by dephosphorylating β-catenin S552. EYA4 combined with MYCBP could be potential prognostic biomarkers in HCC."	"Familial Interstitial 6q23.2 Deletion Including Eya4 Associated With Otofaciocervical Syndrome. We report on a 34-year-old woman and her mother who both have clinical features suggestive for otofaciocervical syndrome (OTFCS), a disorder characterized by a combination of facial dysmorphisms, ear abnormalities with hearing loss, and shoulder girdle anomalies. OTFCS presents overlapping features with branchiootorenal spectrum disorders, including branchiootorenal syndrome and branchiootic syndrome. These disorders have been described as clinically distinct entities, but molecular studies have shown that all the causative genes belong to the Pax-Six-Eya-Dach network (PSEDN). So far, the genetic diagnosis of OTFCS has been performed only in very few cases and involves two genes, EYA1 and PAX1; thus, it is likely that other genes have still to be identified. In the present patient, array CGH analysis showed a 3.7-Mb deletion in 6q23; a smaller 1.9-Mb deletion in the same region was detected in her mother. The minimal overlapping region harbors the EYA4 gene. The cases here described are interesting, since they all showed the typical clinical features of OTFCS, associated with a deletion in 6q23.2. Even if we cannot exclude the contribution of other genes to the phenotype, EYA4 is a good candidate for OTFCS according to its pattern of expression, its sequence similarity to EYA1, and its involvement in PSEDN."	"The Functional Analysis of Selenium-Related Genes and Magnesium-Related Genes in the Gene Expression Profile Microarray in the Peripheral Blood Mononuclear Cells of Keshan Disease. Keshan disease (KD) is an endemic cardiomyopathy with high mortality. Selenium (Se) deficiency is closely related to KD, while magnesium (Mg) plays many critical roles in the cardiovascular function. The molecular mechanism of KD pathogenesis is still unclear. Until now, we have not found any studies investigating the association between Se- or Mg-related genes and KD. In this study, oligonucleotide microarray analysis was used to identify the differentially expressed genes in the peripheral blood mononuclear cells between KD patients and normal controls. Next, human metabolome database (HMDB) was used to screen Se- and Mg-related genes. Function classification, gene pathway, and interaction network of Se- and Mg-related genes in KD peripheral blood mononuclear cells were defined by FunRich (functional enrichment analysis tool). Among 83 differentially expressed genes, five Se-related (DIO2, GPX1, GPX2, GPX4, and GPX7) and five Mg-related (ACSL6, EYA4, IDH2, PPM1A, and STK11) genes were recognized from HMDB. Two significant biological processes (energy pathways and metabolism), one molecular function (peroxidase activity), one biological pathway (glutathione redox reactions I), and one gene interaction network were constituted from Se-related and Mg-related genes. Se-related gene DIO2 and Mg-related genes STK11 and IDH2 may have key roles in the myocardial dysfunction of KD. However, we still have not obtained any interaction between Se-related gene and Mg-related gene. The interactions between RPS6KB1, PTEN, ATM, HSP90AA1, SNRK, PRKAA2, SMARCA4, HSPA1A, and STK11 may play important roles in the abnormal cardiac function of KD."	"Circular RNA ACVR2A suppresses bladder cancer cells proliferation and metastasis through miR-626/EYA4 axis. Circular RNAs (circRNAs) have been considered to mediate occurrence and development of human cancers, generally acting as microRNA (miRNA) sponges to regulate downstream genes expression. However, the aberrant expression profile and dysfunction of circRNAs in human bladder cancer remain to be investigated. The present study aims to elucidate the potential role and molecular mechanism of circACVR2A in regulating the proliferation and metastasis of bladder cancer. circACVR2A (hsa_circ_0001073) was identified by RNA-sequencing and validated by quantitative real-time polymerase chain reaction and agarose gel electrophoresis. The role of circACVR2A in bladder cancer was assessed both in vitro and in vivo. Biotin-coupled probe pull down assay, biotin-coupled microRNA capture, dual-luciferase reporter assay, and fluorescence in situ hybridization were conducted to evaluate the interaction between circACVR2A and microRNAs. The expression of circACVR2A was lower in bladder cancer tissues and cell lines. The down-regulation of circACVR2A was positively correlated with aggressive clinicopathological characteristics, and circACVR2A served as an independent risk factor for overall survival in bladder cancer patients after cystectomy. Our in vivo and in vitro data indicated that circACVR2A suppressed the proliferation, migration and invasion of bladder cancer cells. Mechanistically, we found that circACVR2A could directly interact with miR-626 and act as a miRNA sponge to regulate EYA4 expression. circACVR2A functions as a tumor suppressor to inhibit bladder cancer cell proliferation and metastasis through miR-626/EYA4 axis, suggesting that circACVR2A is a potential prognostic biomarker and therapeutic target for bladder cancer."	"Novel EYA4 variant in Slovak family with late onset autosomal dominant hearing loss: a case report. Progressive bilateral sensorineural deafness in postlingual period may be linked to many different etiologies including genetic factors. Identification of the exact deafness cause may, therefore, be quite challenging. Here we present a family with late-onset hearing loss as an autosomal dominant trait caused by a novel EYA4 mutation. Forty-four years old female proband clinically investigated for progressive hearing loss and occasional dizziness with positive family history for deafness was subject to molecular-genetic testing. Patient's DNA sample was analyzed by whole exome sequencing. We identified a novel missense variant c.804G &gt; C located at the last base pair of exon 10 in EYA4. Candidate variant was confirmed by Sanger sequencing in the proband and her family members. In silico prediction tools and co-segregation analysis were used to indicate pathogenicity of the identified variant. To confirm our hypothesis, we performed minigene assay to demonstrate if the transcript of exon 10 in EYA4 is present. We provide evidence that this mutation in vitro compromises donor site functionality and causes exon 10 skipping and frameshift that most likely results in nonsense-mediated mRNA decay. The onset of moderate to severe hearing loss in the family ranged from 10 to 40 years. The normal cardiac phenotype was confirmed by ECG and echocardiography. We identified a novel EYA4 mutation associated with adult-onset autosomal dominant sensorineural hearing loss. This report extends the knowledge of spectrum of EYA4 mutations and demonstrates the pathogenicity of a variant affecting specific position in the gene. A comprehensive review of known EYA4 mutations is also given and their impact on cardiac phenotype is discussed. Our findings highlight the importance of genetic testing and complex clinical assessment in patients with familial progressive hearing loss."	"EYA4 serves as a prognostic biomarker in hepatocellular carcinoma and suppresses tumour angiogenesis and metastasis. Eye absent homolog 4 (EYA4) has been demonstrated to be down-regulated in hepatocellular carcinoma (HCC), but its biological function and the mechanism in HCC angiogenesis and metastasis remain largely unknown. Herein, we showed that EYA4 expression was frequently low in HCC tissue samples compared with matched adjacent non-tumourous tissues. In the analysis of 302 HCC specimens, we revealed that decreased expression of EYA4 correlated with tumour differentiation status. Univariate and multivariate analyses identified EYA4 as an independent risk factor for recurrence-free survival (RFS) and overall survival (OS) among the 302 patients. Functional assays showed that forced expression of EYA4 suppressed HCC cell migration, invasion and capillary tube formation of endothelial cells in vitro, as well as in vivo tumour angiogenesis and metastasis in a mouse model. Furthermore, mechanism study exhibited that EYA4 could inhibit HCC angiogenesis and metastasis by inhibiting c-JUN/VEGFA pathway. Together, we provide proof that EYA4 is a novel tumour suppressor in HCC and a new prognostic biomarker and therapeutic target in HCC."	"Screening of noise-induced hearing loss (NIHL)-associated SNPs and the assessment of its genetic susceptibility. The aim of this study was to screen for noise-induced hearing loss (NIHL)-associated single nucleotide polymorphisms (SNPs) and to construct genetic risk prediction models for NIHL in a Chinese population. Four hundred seventy-six subjects with NIHL and 476 matched controls were recruited from a cross-sectional survey on NIHL in China. A total of 83 candidate SNPs were genotyped using nanofluidic dynamic arrays on a Fluidigm platform. NIHL-associated SNPs were screened with a multiple logistic model, and a genetic risk model was constructed based on the genetic risk score (GRS). The results were validated using a prospective cohort population. Seven SNPs in the CDH23, PCDH15, EYA4, MYO1A, KCNMA1, and OTOG genes were significantly (P &lt; 0.05) associated with the risk of NIHL, whereas seven other SNPs were marginally (P &gt; 0.05 and P &lt; 0.1) associated with the risk of NIHL. A positive correlation was observed between GRS values and odds ratio (OR) for NIHL. Two SNPs, namely, rs212769 and rs7910544, were validated in the cohort study. Subjects with higher GRS (≧9) showed a higher risk of NIHL incidence with an OR of 2.00 (95% CI = 1.04, 3.86). Genetic susceptibility plays an important role in the incidence of NIHL. GRS values, which are based on NIHL-associated SNPs. GRS may be utilized in the evaluation of genetic risk for NIHL and in the determination of NIHL susceptibility."	"Identification of a novel missense eya4 mutation causing autosomal dominant non‑syndromic hearing loss in a chinese family. The aim of this study was to identify the novel missense eya4 mutation which cause autosomal dominant non syndromic hearing loss In a Chinese family. Hearing loss is the most common sensory deficit in humans, but the middle-frequency sensorineural hearing loss (MFSNHL) is rare among hereditary non-syndromic hearing loss, and EYA4 is one of the genes reported to be associated with MFSNHL. A genetic analysis of a Chinese family with autosomal dominant non‑syndromic progressive hearing impairment was conducted and assessed. Targeted exome sequencing, conducted using DNA samples of an affected member in this family, revealed a novel heterozygous missense mutation c.1855T&amp;gt;G in exon 20 of EYA4, causing amino-acid (aa) substitution Gly for Trp at a conserved position aa-619. The p.W619G mutation related to hearing loss in this Chinese family was validated by Sanger sequencing. Bioinformatic analysis confirmed the pathogenic effects of this mutation. We identified the novel missense mutation c.1855T&amp;gt;G (p.W619G) in EYA4 causing autosomal dominant non-syndromic hearing impairment in the selected Chinese family."	"Targeted next generation sequencing reveals OTOF mutations in auditory neuropathy spectrum disorder. To study the genetic etiology of auditory neuropathy spectrum disorder (ANSD) in a Chinese family and perform a literature review of OTOF mutations and cochlear implantation (CI). Sequential targeted next generation sequencing (NGS) and CI was performed for the proband. Further, 50 DNA samples from unrelated families with nonsyndromic deafness were examined for frequency determination. The impact of OTOF mutations on hearing recovery after CI was assessed through the literature survey. In the proband, the targeted NGS panel revealed five suspected variants in four genes (OTOF, EYA4, PCDH15, and GIPC3), of which two mutations-c.5098G &gt; C (p.Glu1700Gln) and c.1702C &gt; T (p.Arg568Trp)-in the OTOF gene were found to be correlated with ANSD. The c.5098G &gt; C allele was identified in only one child from the 50 unrelated participants. The proband's hearing and speech abilities were restored 2 years after the surgery. Most ANSD patients (90.9%; 30/33) with OTOF mutations have acceptable surgical outcomes, as indicated by existing reports. Our results support the feasibility of CI for patients with ANSD and OTOF mutations, and this hypothesis was supported by the review of existing data. A larger number of cases studies is required to determine possible modifies on the prognosis of surgery."	"EYA4 Promotes Cell Proliferation Through Downregulation of p27Kip1 in Glioma. Accumulating evidence suggests that Eyes Absent Homologue 4 (EYA4) plays an important role in tumorigenesis and progression of various cancers. However, the role of EYA4 in glioma development is still unclear. The expression of EYA4 was examined in glioma tissues by immunohistochemistry. Cell viability and apoptosis were analyzed by CCK-8, BrdU assay, and flow cytometry. We found that EYA4 was upregulated in glioma, and its expression was positively correlated with advanced tumor stage. Moreover, higher expression of EYA4 predicted a worse overall survival in patients with glioma. Forced overexpression of EYA4 enhanced glioma cell proliferation, and EYA4 suppressed the expression of p27Kip1 directly in these cells. Furthermore, Six1 was required for EYA4 to suppress the expression of p27Kip1 in glioma. Together, we demonstrate that EYA4 promotes cell proliferation by directly suppressing the expression of p27Kip1 in glioma."	"Sensorineural hearing loss and mild cardiac phenotype caused by an EYA4 mutation. EYA4 is a member of the vertebrate eya gene family of transcriptional activators and plays several roles in both embryonic and inner ear development. The majority of EYA4 gene mutations are associated with autosomal dominant non-syndromic hearing loss (DFNA10). In addition, some mutations in this gene cause autosomal dominant syndromic hearing loss with dilated cardiomyopathy. EYA4 is a rare cause of sensorineural hearing loss, and only a limited number of papers regarding mutations in this gene have been published. Thus, detailed clinical features remain unclear. We conducted next-generation sequencing of a Japanese individual with progressive sensorineural hearing loss and identified an EYA4 pathogenic variant. Pure-tone audiometry revealed bilateral, nearly symmetric, moderate sensorineural hearing loss in the low and middle frequencies. Minor abnormalities were observed on the patient's electrocardiogram and echocardiography without any apparent symptoms. Next-generation sequencing is effective in elucidating the etiology of hearing loss, and the present findings suggested the possible phenotypic expansion of deafness caused by EYA4 gene mutations."	"Genetic Etiology Study of Ten Chinese Families with Nonsyndromic Hearing Loss. Nonsyndromic hearing loss has been shown to have high genetic heterogeneity. In this report, we aimed to disclose the genetic causes of the subjects from the ten Chinese deaf families who did not have pathogenic common genes/mutation. Next-generation sequencing (NGS) of 142 known deafness genes was performed in the probands of ten families followed by cosegregation analysis of all family members. We identified novel pathogenic variants in six families including p.D1806E/p.R1588W, p.R964W/p.R1588W, and p.G17C/p.G1449D in CDH23; p.T584M/p.D1939N in LOXHD1; p.P1225L in MYO7A; and p.K612X in EYA4. Sanger sequencing confirmed that these mutations segregated with the hearing loss of each family. In four families, no pathogenic variants were identified. Our study provided better understanding of the mutation spectrum of hearing loss in the Chinese population."	"New Methylation Biomarker Panel for Early Diagnosis of Dysplasia or Cancer in High-Risk Inflammatory Bowel Disease Patients. The risk of developing colorectal cancer (CRC) is increased in patients with inflammatory bowel disease (IBD) of the colon. The aim of the study was to evaluate the effectiveness of selected methylation gene panel for the early detection of CRC in high-risk IBD patients. In a discovery phase, 73 biopsies of 48 IBD patients (associated or not to CRC) were analyzed from genome-wide DNA methylation analysis using the Illumina Human Methylation 450K BeadChip. The panel of 5 genes selected (EYA4, SLIT2, FLI1, USP44, and SND1) was validated prospectively using methylation-specific melting curve analysis in biopsies of diseased and adjacent healthy tissue of 203 patients: 38 with IBD and associated neoplasia, 81 patients with IBD (25 of them with high risk), 48 with sporadic CRC, and 36 healthy controls. The prevalence of methylation was higher in patients with IBD and associated neoplasia (both in diseased and adjacent healthy tissue, 71% and 52%, respectively) than in healthy controls (2/36, 6%; P = 6.72E-05). Methylation in IBD patients at high risk of dysplasia or cancer was more frequently detected than in patients at low risk (92% vs 57%; odds ratio, 8.63; P = 0.001). EYA4 and SLIT2 were the markers most frequently methylated. Differences in methylation levels were more evident in healthy mucosa (82% vs 15% high vs low risk, respectively; P = 1.25E-05). Analysis of this panel of methylation markers may help in the early identification of colorectal dysplasia or cancer in high-risk IBD patients."	"EYA4 inhibits hepatocellular carcinoma growth and invasion by suppressing NF-κB-dependent RAP1 transactivation. Our previous studies demonstrated that eyes absent homolog 4 (EYA4), a member of the eye development-related EYA family in Drosophila, is frequently methylated and silenced in hepatocellular carcinoma (HCC) specimens and associated with shorter survival. The current work aimed to explore the mechanisms through which EYA4 functions as a tumor suppressor in HCC. Stable EYA4-expressing plasmid (pEYA4) transfectants of the human HCC cell lines Huh-7 and PLC/PRF/5 (PLC) were established. Xenografts tumors were established via subcutaneous injection of the stable transfectants into BALB/c nude mice. Tissue samples were obtained from 75 pathologically diagnosed HCC patients. Quantitative real-time polymerase chain reaction, Western blotting and immunohistochemistry were performed to determine the expression of EYA4 in cell lines, xenografts and clinical specimens. The cell proliferation, colony formation, invasiveness and tumor formation of stable transfectants were studied. A gene expression microarray was utilized to screen genes regulated by EYA4 expression. The effect of EYA4 on nuclear factor-κB (NF-κB)/RAS-related protein 1 (RAP1) signaling was demonstrated through the co-transfection of pEYA4 and Flag-tagged RAS-related protein 1A gene-expressing plasmid (Flag-RAP1A), functional studies, chromatin immunoprecipitation, immunofluorescence staining and cellular ubiquitination assay. The restoration of EYA4 expression in HCC cell lines suppressed cell proliferation, inhibited clonogenic outgrowth, reduced cell invasion and restrained xenograft tumor growth, and Flag-RAP1A reversed the suppressive effects of pEYA4 in vitro. Activation of NF-κB with tumor necrosis factor-α (TNF-α) increased the binding of p65 to the RAP1A gene promoter and up-regulated RAP1 protein expression. The inhibition of NF-κB with BAY 11-7085 and p65 siRNA successfully blocked TNF-α-induced RAP1 up-regulation. EYA4 antagonized the TNF-α-induced phosphorylation and ubiquitination of inhibitor of NF-κBα (IκBα) as well as the nuclear translocation and transactivation of p65, resulting in repressed NF-κB activity and RAP1 expression. Blocking the serine/threonine phosphatase activity of EYA4 with calyculin A notably abrogated its suppressive effect on NF-κB activity. In addition, EYA4 expression was inversely correlated with IκBα/RAP1 activity in clinical HCC specimens. Our findings provide a functional and mechanistic basis for identifying EYA4 as a bona fide tumor suppressor that disrupts aberrant activation of the NF-κB/RAP1 signaling pathway and thus orchestrates a physiological impediment to HCC growth and invasion."	"Aberrant methylation of EYA4 promotes epithelial-mesenchymal transition in esophageal squamous cell carcinoma. EYA4, one of the four members of the EYA gene family, is associated with several human cancers. However, its biological functions and molecular mechanisms in the progression of cancer, particularly in esophageal squamous cell carcinoma (ESCC), remain unknown. In the present study, we found that EYA4 was underexpressed and hypermethylated in most of the ESCC cell lines tested (85.7%, 6/7). Treatment with 5-aza-dC and/or trichostatin A (TSA) restored EYA4 expression in ESCC cell lines, which indicates that EYA4 expression was epigenetically regulated. Similarly, EYA4 was aberrantly hypermethylated in ESCC tissues (78%, 39/50) and downregulation of EYA4 occurred in approximately 65% of primary ESCC at protein level where it was associated significantly with TNM stage and lymph node metastases. Knockdown of EYA4 in KYSE30 and KYSE70 ESCC cells using small hairpin RNA increased migration and invasive motility in vitro. Conversely, the overexpression of EYA4 in KYSE180 and KYSE450 promoted an epithelial phenotype, which consisted of decreased migration and invasion abilities and a decrease in TGF-β1-induced epithelial-mesenchymal transition. Mechanistically, EYA4 overexpression reduced the phosphorylation of Akt and glycogen synthase kinase (GSK) 3β, which led to the inactivation of slug. In addition, we found that TGF-β1 decreased EYA4 expression in both a dose-dependent and a time-dependent manner in KYSE30 cells, accompanied by an increase in the expression of DNA methyltransferases, especially DNMT3A. In summary, EYA4 is frequently hypermethylated in ESCC and may function as a tumor suppressor gene in the development of ESCC."	"Promoter Hypermethylation of the Eyes Absent 4 Gene is a Tumor-Specific Epigenetic Biomarker in Iranian Colorectal Cancer Patients. The aim of this study was to investigate whether hypermethylation of Eyes Absent 4 (EYA4) is also implicated in Iranian Colorectal Cancer (CRC) patients or not. From fresh frozen tissues, samples from 38 paired (cancer and normal) CRC tissue specimens were used in this study, the DNA was isolated, sodium bisulfite treated and analyzed by methylation-specific polymerase (MSP) chain reaction using primers specific for unmethylated or methylated promoter sequences of the EYA4 gene. We also analyzed EYA4 mRNA expression using real time RT-PCR. Demographic characteristics of these patients including age, sex, tumor grade, location, stage, and TNM classification were evaluated and the relationship between methylation status of the gene and clinicopathological features was analyzed. Current study indicated that EYA4 promoter hypermethylation has a sensitivity of 81.57% and specificity of 78.94%. Findings showed lower expression of EYA-4 in methylated samples in comparison with its normal adjacent tissue, although it was not significant (P&gt;0.05). No significant associations were observed between EYA4 hypermethylation and the clinicopathological characteristics. Although the clinical patient outcome of our 38 CRC patients was not associated with EYA4 promoter hypermethylation, the high frequency of this methylation and its high sensitivity and specificity to neoplastic cells may qualify EYA4 promoter methylation as a potential candidate screening marker in Iranian population and may help to improve early detection of CRC."	"A novel mutation of the EYA4 gene associated with post-lingual hearing loss in a proband is co-segregating with a novel PAX3 mutation in two congenitally deaf family members. This work was aimed at establishing the molecular etiology of hearing loss in a 9-year old girl with post-lingual non-syndromic mild sensorineural hearing loss with a complex family history of clinically heterogeneous deafness. The proband's DNA was subjected to NGS analysis of a 59-targeted gene panel, with the use of the Ion Torrent PGM platform. Conventional Sanger sequencing was used for segregation analysis in all the affected relatives. The proband and all the other hearing impaired members of the family underwent a thorough clinical and audiological evaluation. A new likely pathogenic mutation in the EYA4 gene (c.1154C &gt; T; p.Ser385Leu) was identified in the proband and in her 42-year-old father with post-lingual non-syndromic profound sensorineural hearing loss. The EYA4 mutation was also found in the proband's grandfather and uncle, both showing clinical features of Waardenburg syndrome type 1. A novel pathogenic splice-site mutation (c.321+1G &gt; A) of the PAX3 gene was found to co-segregate with the EYA4 mutation in these two subjects. The identified novel EYA4 mutation can be considered responsible of the hearing loss observed in the proband and her father, while a dual molecular diagnosis was reached in the relatives co-segregating the EYA4 and the PAX3 mutations. In these two subjects the DFNA10 phenotype was masked by Waardenburg syndrome. The use of NGS targeted gene-panel, in combination with an extensive clinical and audiological examination led us to identify the genetic cause of the hearing loss in members of a family in which different forms of autosomal dominant deafness segregate. These results provide precise and especially important prognostic and follow-up information for the future audiologic management in the youngest affected member."	"A six-gene expression toolbox for the glands, epithelium and chondrocytes in the mouse nasal cavity. The nose is the central feature of the amniote face. In adults, the nose is a structurally and functionally complex organ that consists of bone, cartilage, glands and ducts. In an ongoing expression screen in our lab, we found several novel markers for specific tissues in the nasal region. Here, using in situ hybridization expression experiments, we report that Alx1, Ap-2β, Crispld1, Eya4, Moxd1, and Penk have tissue specific expression during murine nasal development. At E11.5, we observed that Alx1, Ap-2β, Crispld1, and Eya4 are expressed in the medial and lateral nasal prominences. We found that Moxd1 and Penk are expressed in the lateral nasal prominences. At E15.5, Alx1 is expressed in nasal septum. Ap-2β and Crispld1 are expressed in nasal glands and cartilages. Eya4 is expressed in olfactory epithelium. Intriguingly at E15.5 Moxd1 is expressed in all the nasal cartilage while the expression of Penk is restricted to chondrocytes contributing to the posterior nasal septum. The expression domains reported here suggest that these genes warrant functional studies to determine their role in nasal capsule morphogenesis."	"Expression pattern of EYA4 in the common marmoset (Callithrix jacchus) cochlea. The eyes absent (EYA)-like genes are essential for the formation of sensory organs among fly (Drosophila melanogaster) and mammals. EYA4, one of the vertebrate genes of Eya family, is reported to be causative for late-onset mid-frequency sensorineural hearing loss in humans, while Eya4-deficient mice exhibited congenital profound deafness and otitis media with effusion due to the eustachian tube dysmorphology. Because of the species difference in the phenotype, the pathophysiology of EYA4 in the human cochlea has yet to be elucidated. Here, we examine the expression pattern of EYA4 in the cochlea of common marmoset (Callithrix jacchus), a non-human primate. The results indicated a distinct expression pattern of EYA4 in the adult marmoset cochleae, especially strong in all supporting cells, while in mouse their expressions were diminished. Interestingly, EYA4 expression in the hair cells, supporting cells and neurons was co-localized with sine oculis homeobox-SIX1, a transcription factor essential for the transcriptional activity of EYA4. The results revealed inter-species differences in the expression pattern of EYA4 gene in supporting cells between primates and rodents. The results also indicated a fundamental role of EYA4 in the primate auditory cells. Experiments with primate models such as marmosets or with human cochlear cells may provide cues about the unknown pathogenesis of EYA4-related hearing loss."	"Discovery of methylated circulating DNA biomarkers for comprehensive non-invasive monitoring of treatment response in metastatic colorectal cancer. Mutations in cell-free circulating DNA (cfDNA) have been studied for tracking disease relapse in colorectal cancer (CRC). This approach requires personalised assay design due to the lack of universally mutated genes. In contrast, early methylation alterations are restricted to defined genomic loci allowing comprehensive assay design for population studies. Our objective was to identify cancer-specific methylated biomarkers which could be measured longitudinally in cfDNA (liquid biopsy) to monitor therapeutic outcome in patients with metastatic CRC (mCRC). Genome-wide methylation microarrays of CRC cell lines (n=149) identified five cancer-specific methylated loci (EYA4, GRIA4, ITGA4, MAP3K14-AS1, MSC). Digital PCR assays were employed to measure methylation of these genes in tumour tissue DNA (n=82) and cfDNA from patients with mCRC (n=182). Plasma longitudinal assessment was performed in a patient subset treated with chemotherapy or targeted therapy. Methylation in at least one marker was detected in all tumour tissue samples and in 156 mCRC patient cfDNA samples (85.7%). Plasma marker prevalence was 71.4% for EYA4, 68.5% for GRIA4, 69.7% for ITGA4, 69.1% for MAP3K14-AS1% and 65.1% for MSC. Dynamics of methylation markers was not affected by treatment type and correlated with objective tumour response and progression-free survival. This five-gene methylation panel can be used to circumvent the absence of patient-specific mutations for monitoring tumour burden dynamics in liquid biopsy under different therapeutic regimens. This method might be proposed for assessing pharmacodynamics in clinical trials or when conventional imaging has limitations."	"Contribution of exome sequencing for genetic diagnostic in arrhythmogenic right ventricular cardiomyopathy/dysplasia. Arrhythmogenic Right Ventricular Cardiomyopathy/Dysplasia (ARVC/D) is an inherited cardiomyopathy mainly caused by heterozygous desmosomal gene mutations, the major gene being PKP2. The genetic cause remains unknown in ~50% of probands with routine desmosomal gene screening. The aim of this study was to assess the diagnostic accuracy of whole exome sequencing (WES) in ARVC/D with negative genetic testing. WES was performed in 22 patients, all without a mutation identified in desmosomal genes. Putative pathogenic variants were screened in 96 candidate genes associated with other cardiomyopathies/channelopathies. The sequencing coverage depth of PKP2, DSP, DSG2, DSC2, JUP and TMEM43 exons was compared to the mean coverage distribution to detect large insertions/deletions. All suspected deletions were verified by real-time qPCR, Multiplex-Ligation-dependent-Probe-Amplification (MLPA) and cGH-Array. MLPA was performed in 50 additional gene-negative probands. Coverage-depth analysis from the 22 WES data identified two large heterozygous PKP2 deletions: one from exon 1 to 14 and one restricted to exon 4, confirmed by qPCR and MLPA. MLPA identified 2 additional PKP2 deletions (exon 1-7 and exon 1-14) in 50 additional probands confirming a significant frequency of large PKP2 deletions (5.7%) in gene-negative ARVC/D. Putative pathogenic heterozygous variants in EYA4, RBM20, PSEN1, and COX15 were identified in 4 unrelated probands. A rather high frequency (5.7%) of large PKP2 deletions, undetectable by Sanger sequencing, was detected as the cause of ARVC/D. Coverage-depth analysis through next-generation sequencing appears accurate to detect large deletions at the same time than conventional putative mutations in desmosomal and cardiomyopathy-associated genes."	"DNA methylation patterns in ulcerative colitis-associated cancer: a systematic review. Evidence points to the role of DNA methylation in ulcerative colitis (UC)-associated cancer (UCC), the most serious complication of ulcerative colitis. A better understanding of the etiology of UCC may facilitate the development of new therapeutic targets and help to identify biomarkers of the disease risk. A search was performed in three databases following PRISMA protocol. DNA methylation in UCC was compared with sporadic colorectal cancer (SCRC), and individual genes differently methylated in UCC identified. While there were some similarities in the methylation patterns of UCC compared with SCRC, generally lower levels of hypermethylation in promoter regions of individual genes was evident in UCC. Certain individual genes are, however, highly methylated in colitis-associated cancer: RUNX3, MINT1, MYOD and p16 exon1 and the promoter regions of EYA4 and ESR. Patterns of DNA methylation differ between UCC and SCRC. Seven genes appear to be promising putative biomarkers."	"A DNA hypermethylation profile reveals new potential biomarkers for the evaluation of prognosis in urothelial bladder cancer. DNA hypermethylation has emerged as a molecular biomarker for the evaluation of cancer diagnosis and prognosis. We define a methylation signature of bladder cancer and evaluate whether this profile assesses prognosis of patients. Genome-wide methylation analysis was performed on 70 tumor and 10 normal bladder samples. Hypermethylation status of 1505 CpGs present in the promoter region of 807 genes was studied. Thirty-three genes were significantly hypermethylated in ≥10% of the tumors. Three clusters of patients were characterized by their DNA methylation profile, one at higher risk of dead of disease (p = 0.0012). Association between cluster distribution and stage (p = 0.02) or grade (p = 0.02) was demonstrated. Hypermethylation of JAK3 and absence of hypermethylation of EYA4, GAT6, and SOX1 were associated with low-grade non-invasive disease. On the other hand, in high-grade invasive disease hypermethylation of CSPG2, HOXA11, HOXA9, HS3ST2, SOX1, and TWIST1 was associated with muscle invasiveness. A panel of hypermethylated genes including APC, CSPG2, EPHA5, EYA4, HOXA9, IPF1, ISL1, JAK3, PITX2, SOX1, and TWIST1 predicted cancer-specific survival and SOX1 (HR = 3.46), PITX2 (HR = 4.17), CSPG2 (HR = 5.35), and JAK3 hypermethylation (HR = 0.19) did so independently. Silencing of genes by hypermethylation is a common event in bladder cancer and could be used to develop diagnostic and prognostic markers. Combined hypermethylation of SOX1, PITX2, or CSPG2 signals patients at higher risk of death from bladder cancer."	"1000 Genomes-based meta-analysis identifies 10 novel loci for kidney function. HapMap imputed genome-wide association studies (GWAS) have revealed &gt;50 loci at which common variants with minor allele frequency &gt;5% are associated with kidney function. GWAS using more complete reference sets for imputation, such as those from The 1000 Genomes project, promise to identify novel loci that have been missed by previous efforts. To investigate the value of such a more complete variant catalog, we conducted a GWAS meta-analysis of kidney function based on the estimated glomerular filtration rate (eGFR) in 110,517 European ancestry participants using 1000 Genomes imputed data. We identified 10 novel loci with p-value &lt; 5 × 10<sup>-8</sup> previously missed by HapMap-based GWAS. Six of these loci (HOXD8, ARL15, PIK3R1, EYA4, ASTN2, and EPB41L3) are tagged by common SNPs unique to the 1000 Genomes reference panel. Using pathway analysis, we identified 39 significant (FDR &lt; 0.05) genes and 127 significantly (FDR &lt; 0.05) enriched gene sets, which were missed by our previous analyses. Among those, the 10 identified novel genes are part of pathways of kidney development, carbohydrate metabolism, cardiac septum development and glucose metabolism. These results highlight the utility of re-imputing from denser reference panels, until whole-genome sequencing becomes feasible in large samples."	"DNA methylation profiling identifies the HOXA11 gene as an early diagnostic and prognostic molecular marker in human lung adenocarcinoma. DNA hypermethylation plays important roles in carcinogenesis by silencing key genes. The goal of our study was to identify pivotal genes using MethyLight and assessed their diagnostic and prognostic values in lung adenocarcinoma (AD). In the present study, we detected DNA methylation at sixteen loci promoter regions in twenty one pairs of primary human lung AD tissues and adjacent non-tumor lung (AdjNL) tissues using the real-time PCR (RT-PCR)-based method MethyLight. By comparing the sixteen analyzed loci in lung AD tissues and AdjNL and non-tumor (NL) tissues, we found that, among the six genes identified with hypermethylation, the HOXA11, CDKN2A-EX2 and EYA4 genes showed highly promising DNA hypermethylation diagnostic markers in the lung AD tissues. Moreover, comparing lung AD tissues (&gt; 2 cm in diameter) to the AdjNL or AD in situ (AIS) tissues by RT-qPCR and immunohistochemistry revealed that HOXA11 expression was significantly increased. A further study showed that HOXA11 expression was controlled by methylation in the promoter region in human lung tumor cell lines. Aberrant hypermethylation and the methylation-induced down-regulation of HOXA11 may promote tumor progression. Our results suggested that HOXA11 might be a diagnostic and prognostic marker in patients with lung AD."	"Genome-wide methylation analysis identifies a core set of hypermethylated genes in CIMP-H colorectal cancer. Aberrant DNA methylation profiles are a characteristic of all known cancer types, epitomized by the CpG island methylator phenotype (CIMP) in colorectal cancer (CRC). Hypermethylation has been observed at CpG islands throughout the genome, but it is unclear which factors determine whether an individual island becomes methylated in cancer. DNA methylation in CRC was analysed using the Illumina HumanMethylation450K array. Differentially methylated loci were identified using Significance Analysis of Microarrays (SAM) and the Wilcoxon Signed Rank (WSR) test. Unsupervised hierarchical clustering was used to identify methylation subtypes in CRC. In this study we characterized the DNA methylation profiles of 94 CRC tissues and their matched normal counterparts. Consistent with previous studies, unsupervized hierarchical clustering of genome-wide methylation data identified three subtypes within the tumour samples, designated CIMP-H, CIMP-L and CIMP-N, that showed high, low and very low methylation levels, respectively. Differential methylation between normal and tumour samples was analysed at the individual CpG level, and at the gene level. The distribution of hypermethylation in CIMP-N tumours showed high inter-tumour variability and appeared to be highly stochastic in nature, whereas CIMP-H tumours exhibited consistent hypermethylation at a subset of genes, in addition to a highly variable background of hypermethylated genes. EYA4, TFPI2 and TLX1 were hypermethylated in more than 90% of all tumours examined. One-hundred thirty-two genes were hypermethylated in 100% of CIMP-H tumours studied and these were highly enriched for functions relating to skeletal system development (Bonferroni adjusted p value =2.88E-15), segment specification (adjusted p value =9.62E-11), embryonic development (adjusted p value =1.52E-04), mesoderm development (adjusted p value =1.14E-20), and ectoderm development (adjusted p value =7.94E-16). Our genome-wide characterization of DNA methylation in colorectal cancer has identified 132 genes hypermethylated in 100% of CIMP-H samples. Three genes, EYA4, TLX1 and TFPI2 are hypermethylated in &gt;90% of all tumour samples, regardless of CIMP subtype."	"Predicting the Grade of Dysplasia of Pancreatic Cystic Neoplasms Using Cyst Fluid DNA Methylation Markers. Purpose: Pancreatic cysts are common and pose diagnostic and management challenges. Pancreatic cyst fluid markers have the potential to aid in the management of cysts with concerning imaging findings. Our aim was to evaluate cyst fluid methylated DNA markers for their accuracy for predicting the histologic grade of neoplastic pancreatic cysts.Experimental Design: Pancreatic cyst fluid samples from 183 patients (29 discovery and 154 validation) aspirated after surgical resection were analyzed for methylated DNA at selected genes (SOX17, BNIP3, FOXE1, PTCHD2, SLIT2, EYA4, and SFRP1) using methylation-specific droplet-digital PCR (dd-QMSP). Methylated DNA levels were evaluated for their accuracy at predicting the grade of dysplasia of the pancreatic cyst.Results: All six markers evaluated in the validation set could accurately distinguish high-risk cystic neoplasms (with high-grade dysplasia and/or associated invasive cancer) from low-risk cysts (lower grades of dysplasia) with accuracies from 79.8% to 83.6%. Methylated SOX17 had the highest overall accuracy as a single marker (sensitivity, 78.4%; specificity, 85.6%; accuracy 83.6%, cutoff; 25 methylated DNA molecules/μL cyst fluid). The best four-gene combination had 84.3% sensitivity, 89.4% specificity, and 88.0% accuracy at distinguishing cysts with high-grade dysplasia and/or invasive cancer from those without. All six markers were independent predictors of having invasive cancer/high-grade dysplasia after adjusting for clinical/imaging factors known to be associated with grade of dysplasia. The combination of methylated SOX17 with cytology better predicted neoplastic grade than cytology alone.Conclusions: A panel of methylated gene markers quantified by dd-QMSP can be used to predict the grade of dysplasia of pancreatic cysts. Clin Cancer Res; 23(14); 3935-44. ©2017 AACR."	"[Association between eye absent homolog 4 gene polymorphisms and occupational noise-induced hearing loss]. Objective: To identify the association between genetic polymorphisms in the eye absent homolog 4 (EYA4) gene and noise-induced hearing loss (NIHL). Method: A nested case control study was conducted based on a cohort of noise-exposed subjects. In total, 292 cases were selected from a steel factory from 6 297 subjects during Jan 1, 2006 to Dec 12, 2015,who had an average hearing threshold of more than 40 dB(A); 584 matched control subjects for each case were designated on the basis of matched criteria including same gender, age (±5 years) and duration of exposure to noise (±2 years). What's more, the control group had an average hearing threshold of less than 35 dB(A) in high frequency and less than 25 dB(A) in speech frequency. Four single nucleotide polymorphisms (SNPs) of the EYA4 gene were genotyped using a SNPscan<sup>TM</sup> multiplex SNP genotyping kit. Hardy-Weinberg equilibrium tests were performed using a χ<sup>2</sup> test for goodness-of-fit for each SNP among the control group, and the effects of genotypes of the EYA4 gene on NIHL were analyzed by logistic regression. The haplotypes were established and their frequencies in the two groups were assessed using Haploview 4.2 and Phase 2.1 software, and interactive effects between haplotypes and cumulative noise exposure were analyzed. Results: The average age of the subjects was (40.1±8.4) years and the average number of noise-exposed working years was 20.3 (8.4, 27.3) years. The range of noise exposure levels and the cumulative noise exposure were 80.2- 98.8 dB (A) and 86.6- 111.2 dB(A) · year, respectively. After adjustment for covariates including height, blood pressure, drinking status and smoking status, in the noise intensity&gt;85 dB (A) group, subjects carrying the rs3813346 TT genotype had a higher NIHL risk than those carrying the GG genotype, and the adjusted OR (95% CI) value was 2.12 (1.21- 3.69). In the cumulative noise exposure&gt;98 dB (A) · year group, compared with haplotype TGC, haplotype CGT showed a protective effect in the development of NIHL, with an adjusted OR (95% CI) value of 0.60 (0.37-0.97), however, the significance of intercation between EY4 gene of noise was lost after Bonferroni correction. Conclusion: Genetic polymorphism in the EYA4 gene may be a genetic susceptibility factor for NIHL."	"SOS2 and ACP1 Loci Identified through Large-Scale Exome Chip Analysis Regulate Kidney Development and Function. Genome-wide association studies have identified &gt;50 common variants associated with kidney function, but these variants do not fully explain the variation in eGFR. We performed a two-stage meta-analysis of associations between genotypes from the Illumina exome array and eGFR on the basis of serum creatinine (eGFRcrea) among participants of European ancestry from the CKDGen Consortium (nStage1: 111,666; nStage2: 48,343). In single-variant analyses, we identified single nucleotide polymorphisms at seven new loci associated with eGFRcrea (PPM1J, EDEM3, ACP1, SPEG, EYA4, CYP1A1, and ATXN2L; PStage1&lt;3.7×10<sup>-7</sup>), of which most were common and annotated as nonsynonymous variants. Gene-based analysis identified associations of functional rare variants in three genes with eGFRcrea, including a novel association with the SOS Ras/Rho guanine nucleotide exchange factor 2 gene, SOS2 (P=5.4×10<sup>-8</sup> by sequence kernel association test). Experimental follow-up in zebrafish embryos revealed changes in glomerular gene expression and renal tubule morphology in the embryonic kidney of acp1- and sos2-knockdowns. These developmental abnormalities associated with altered blood clearance rate and heightened prevalence of edema. This study expands the number of loci associated with kidney function and identifies novel genes with potential roles in kidney formation."	"A Large Genome-Wide Association Study of Age-Related Hearing Impairment Using Electronic Health Records. Age-related hearing impairment (ARHI), one of the most common sensory disorders, can be mitigated, but not cured or eliminated. To identify genetic influences underlying ARHI, we conducted a genome-wide association study of ARHI in 6,527 cases and 45,882 controls among the non-Hispanic whites from the Genetic Epidemiology Research on Adult Health and Aging (GERA) cohort. We identified two novel genome-wide significant SNPs: rs4932196 (odds ratio = 1.185, p = 4.0x10-11), 52Kb 3' of ISG20, which replicated in a meta-analysis of the other GERA race/ethnicity groups (1,025 cases, 12,388 controls, p = 0.00094) and in a UK Biobank case-control analysis (30,802 self-reported cases, 78,586 controls, p = 0.015); and rs58389158 (odds ratio = 1.132, p = 1.8x10-9), which replicated in the UK Biobank (p = 0.00021). The latter SNP lies just outside exon 8 and is highly correlated (r2 = 0.96) with the missense SNP rs5756795 in exon 7 of TRIOBP, a gene previously associated with prelingual nonsyndromic hearing loss. We further tested these SNPs in phenotypes from audiologist notes available on a subset of GERA (4,903 individuals), stratified by case/control status, to construct an independent replication test, and found a significant effect of rs58389158 on speech reception threshold (SRT; overall GERA meta-analysis p = 1.9x10-6). We also tested variants within exons of 132 other previously-identified hearing loss genes, and identified two common additional significant SNPs: rs2877561 (synonymous change in ILDR1, p = 6.2x10-5), which replicated in the UK Biobank (p = 0.00057), and had a significant GERA SRT (p = 0.00019) and speech discrimination score (SDS; p = 0.0019); and rs9493627 (missense change in EYA4, p = 0.00011) which replicated in the UK Biobank (p = 0.0095), other GERA groups (p = 0.0080), and had a consistent significant result for SRT (p = 0.041) and suggestive result for SDS (p = 0.081). Large cohorts with GWAS data and electronic health records may be a useful method to characterize the genetic architecture of ARHI."	"Genetic variation in EYA4 on the risk of noise-induced hearing loss in Chinese steelworks firm sample. Noise-induced hearing loss is one of the most serious occupational diseases worldwide. It is caused by interactions between environmental and genetic factors. The purpose of this study was to examine the association between the genetic susceptibility of the eye absent homolog 4 (EYA4) gene and the risk of developing noise-induced hearing loss in China. A case-control association study was carried out with 326 hearing loss cases and 326 controls matched with age and duration of noise exposure, drawn from a cohort of steel workers. Five single nucleotide polymorphisms (SNPs) in the EYA4 were selected and genotyped. Logistic regression was performed to analyse the main effect of genotypes and interactions between genotypes and individual/environmental factors adjusted for confounding factors. Moreover, generalised multiple dimensionality reduction was applied to further detect interaction among the 5 selected SNPs. Analysis revealed that locus polymorphism of rs3813346 was associated with the risk of developing noise-induced hearing loss in the dominance model, the codominance model and the addictive model (p=0.004, 0.009 and 0.003, respectively). A significant interaction between rs9321402 and cumulative noise exposure was found (p=0.002). A significant main effect p value (p=0.006) was obtained in the high-level exposure group (cumulative noise exposure ≥98 dB(A)). Generalised multiple dimensionality reduction indicated that the combined interaction of the 2 loci-rs3813346 and rs9493627-significantly affected the incidence of noise-induced hearing loss. The research suggests that EYA4 genetic variant and its interaction with noise levels may modify the susceptibility to develop noise-induced hearing loss in Chinese population."	"miR-431 is involved in regulating cochlear function by targeting Eya4. To understand the relationship between microRNAs and hearing loss and help clarify the causes of hereditary deafness, we studied the functions of miR-431 in cochleae. We first investigated the spatial-temporal expression profiles of miR-431 in spiral ganglion neurons (SGNs) in cochleae using real-time PCR and miRNA in situ hybridization. These studies showed that expression of miR-431 was high in SGNs in the cochleae of newborn mice, and decreased as development progressed. To test the functional effects of miR-431, we established miR-431 overexpressing transgenic (Tg) mice. Surface preparations of the cochlear basilar membrane and cochlear sections revealed no major structural differences between Tg and wild-type (Wt) mice. However, a comparison of auditory brain stem responses (ABRs) in Tg and Wt mice showed that ABR thresholds were significantly higher in Tg mice than in Wt mice. Notably, the density of SGNs was significantly lower in Tg mice than in Wt mice. We also found that the proportion of mature SGNs in cultures of primary SGNs from Tg cochleae was lower and their axons were shorter. A bioinformatics analysis predicted that the mRNA target of miR-431 was Eya4, a finding confirmed by luciferase reporter assays and western blotting. Importantly, overexpression of miR-431 in cochleae of Tg mice inhibited the translation of Eya4 mRNA, leading to a deficiency of EYA4. Thus, excessive amounts of miR-431 in cochleae of Tg mice may be the cause of sparse SGNs, which in turn could be responsible for hearing loss."	"EYA4 gene functions as a prognostic marker and inhibits the growth of intrahepatic cholangiocarcinoma. The molecular prognostic markers and carcinogenesis of intrahepatic cholangiocarcinoma (ICC) have not been well documented. The purpose of this study was to investigate the prognostic value of the eyes absent homolog 4 (EYA4) gene in ICC and its biological effects on ICC growth in vitro and in vivo. One hundred twelve patients with ICC who underwent hepatectomy were enrolled in the study. EYA4 mRNA and EYA4 protein levels in ICC and adjacent non-tumoral tissues were evaluated using real-time quantitative polymerase chain reaction and immunohistochemical staining, respectively. EYA4 protein levels in ICC cells were determined using western blot analysis. The associations between EYA4 expression and clinicopathologic features of ICC were analyzed. To identify independent prognostic factors, univariate and multivariate analyses were performed. The biological effects of EYA4 on ICC cells were evaluated by establishing stable EYA4-overexpressing transfectants in vitro, and EYA4's effects on tumor growth were evaluated by intra-tumoral injection of EYA4-expressing plasmids in a NOD/SCID murine model of xenograft tumors. ICC tissues had significantly lower EYA4 mRNA and protein levels compared with adjacent non-tumoral tissues (both P &lt; 0.001). Univariate and multivariate analyses showed that EYA4 protein level, tumor number, adjacent organ invasion, lymph node metastasis, and tumor differentiation were independent prognostic factors for disease-free survival and overall survival (all P &lt; 0.05). In vitro, EYA4 overexpression inhibited tumor cell growth, foci formation, and cell invasiveness. In vivo, intra-tumoral injection of EYA4-expressing plasmids significantly inhibited ICC growth in the murine xenograft model compared with the control group (P &lt; 0.05). EYA4 gene functioned as a molecular prognostic marker in ICC, and its overexpression inhibited tumor growth in vitro and in vivo."	"EYA4 functions as tumor suppressor gene and prognostic marker in pancreatic ductal adenocarcinoma through β-catenin/ID2 pathway. Eye absent homolog 4 (EYA4) was initially found as key gene in controlling eye development in Drosophila. We recently found that EYA4 was an independent prognostic factor in hepatocellular carcinoma. Its biological functions in malignancies remained unknown. The present study aimed at investigating its biological functions, molecular mechanisms and prognostic values in pancreatic ductal adenocarcinoma (PDAC). Overexpression of EYA4 in PDAC cells inhibited proliferation and invasion in vitro and tumor growth in vivo. Depletion of EYA4 in PDAC cells enhanced proliferation and invasion in vitro and tumor growth in vivo. Mechanistically, armed with the serine/threonine-specific protein phosphatase activity, EYA4 dephosphorylated β-catenin at Ser675, blocked β-catenin nuclear translocation and inhibited ID2 transactivation. Consistently, EYA4 expression inversely correlated with the levels of p-Ser675-β-catenin and ID2 in tissues. EYA4 expression in PDAC tissues was significantly reduced as compared with adjacent non-tumoral tissues. EYA4 expression was an independent prognostic factor in PDAC, with a lower EYA4 level in association with shorter long-term survival and disease-free time. We showed that EYA4 functioned as tumor suppressor gene in PDAC via repressing β-catenin/ID2 activation, and was an independent prognostic factor in PDAC."	"Epigenetic Silencing of Eyes Absent 4 Gene by Acute Myeloid Leukemia 1-Eight-twenty-one Oncoprotein Contributes to Leukemogenesis in t(8;21) Acute Myeloid Leukemia. The acute myeloid leukemia 1 (AML1)-eight-twenty-one (ETO) fusion protein generated by the t(8;21)(q22;q22) translocation is considered to display a crucial role in leukemogenesis in AML. By focusing on the anti-leukemia effects of eyes absent 4 (EYA4) gene on AML cells, we investigated the biologic and molecular mechanism associated with AML1-ETO expressed in t(8;21) AML. Qualitative polymerase chain reaction (PCR), quantitative reverse transcription PCR (RT-PCR), and Western blotting analysis were used to observe the mRNA and protein expression levels of EYA4 in cell lines. Different plasmids (including mutant plasmids) of dual luciferase reporter vector were built to study the binding status of AML1-ETO to the promoter region of EYA4. Chromatin immunoprecipitation assay was used to study the epigenetic silencing mechanism of EYA4. Bisulfite sequencing was applied to detect the methylation status in EYA4 promoter region. The influence of EYA4 gene in the cell proliferation, apoptosis, and cell clone-forming ability was detected by the technique of Cell Counting Kit-8, flow cytometry, and clonogenic assay. EYA4 gene was hypermethylated in AML1-ETO+ patients and its expression was down-regulated by 6-fold in Kasumi-1 and SKNO-1 cells, compared to HL-60 and SKNO-1-siA/E cells, respectively. We demonstrated that AML1-ETO triggered the epigenetic silencing of EYA4 gene by binding at AML1-binding sites and recruiting histone deacetylase 1 and DNA methyltransferases. Enhanced EYA4 expression levels inhibited cellular proliferation and suppressed cell colony formation in AML1-ETO+ cell lines. We also found EYA4 transfection increased apoptosis of Kasumi-1 and SKNO-1 cells by 1.6-fold and 1.4-fold compared to negative control, respectively. Our study identified EYA4 gene as targets for AML1-ETO and indicated it as a novel tumor suppressor gene. In addition, we provided evidence that EYA4 gene might be a novel therapeutic target and a potential candidate for treating AML1-ETO+ t (8;21) AML."	"Research progress in pathogenic genes of hereditary non-syndromic mid-frequency deafness. Hearing impairment is considered as the most prevalent impairment worldwide. Almost 600 million people in the world suffer from mild or moderate hearing impairment, an estimated 10% of the human population. Genetic factors play an important role in the pathogenesis of this disorder. Hereditary hearing loss is divided into syndromic hearing loss (associated with other anomalies) and non-syndromic hearing loss (not associated with other anomalies). Approximately 80% of genetic deafness is non-syndromic. On the basis of the frequency of hearing loss, hereditary non-syndromic hearing loss can be divided into high-, mid-, low-, and total-frequency hearing loss. An audiometric finding of mid-frequency sensorineural hearing loss, or a &quot;bowl-shaped&quot; audiogram, is uncommon. Up to now, merely 7 loci have been linked to mid-frequency hearing loss. Only four genetic midfrequency deafness genes, namely, DFNA10 (EYA4), DFNA8/12 (TECTA), DFNA13 (COL11A2), DFNA44 (CCDC50), have been reported to date. This review summarizes the research progress of the four genes to draw attention to mid-frequency deafness genes. "	"Epigenetic mediated silencing of EYA4 contributes to tumorigenesis in oral dysplastic cells. Five-year survival rates for oral squamous cell carcinoma (OSCC) have remained at a dismal 50% for the past several decades. Molecular analyses of premalignant tissues are a key means of identifying early foundational drivers of disease, which may be exploitable as biomarkers or therapeutic targets for improving disease outcomes. We previously identified EYA4 as frequently hypermethylated and silenced in premalignant disease based on an analysis of lesion-adjacent normal, dysplasia, and carcinoma in situ/squamous cell carcinoma tissues from the oral cavity. Herein, we further evaluate the role of this putative tumor suppressor gene in transformation of oral tissues and OSCC. By an initial assessment, EYA4 promoter hypermethylation was found in 24/32 (75%) of paired tumor samples in The Cancer Genome Atlas oral cancer data set, with significant correlation noted between methylation status and relative gene expression. To assess the impact of EYA4 in oral tumorigenesis, we overexpressed EYA4 in two oral dysplasia cell lines. Expression of EYA4 caused an increase in cell proliferation, DNA damage repair capabilities, and increased the level of apoptosis. Taken together, we find evidence that EYA4 is a novel tumor suppressor in oral cancer, which becomes methylated and silenced at the premalignant stage and appears to be epigenetically regulated. Further studies are warranted to investigate its role as a marker for progression in oral cancer. © 2016 Wiley Periodicals, Inc."	"Eya4 Induces Hypertrophy via Regulation of p27kip1. E193, a heterozygous truncating mutation in the human transcription cofactor Eyes absent 4 (Eya4), causes hearing impairment followed by dilative cardiomyopathy. In this study, we first show Eya4 and E193 alter the expression of p27(kip1) in vitro, suggesting Eya4 is a negative regulator of p27. Next, we generated transgenic mice with cardiac-specific overexpression of Eya4 or E193. Luciferase and chromatin immunoprecipitation assays confirmed Eya4 and E193 bind and regulate p27 expression in a contradictory manner. Activity and phosphorylation status of the downstream molecules casein kinase-2α and histone deacetylase 2 were significantly elevated in Eya4- but significantly reduced in E193-overexpressing animals compared with wild-type littermates. Magnetic resonance imaging and hemodynamic analysis indicate Eya4-overexpression results in an age-dependent development of hypertrophy already under baseline conditions with no obvious functional effects, whereas E193 animals develop onset of dilative cardiomyopathy as seen in human E193 patients. Both cardiac phenotypes were aggravated on pressure overload. Finally, we identified a new heterozygous truncating Eya4 mutation, E215, which leads to similar clinical features of disease and a stable myocardial expression of the mutant protein as seen with E193. Our results implicate Eya4/Six1 regulates normal cardiac function via p27/casein kinase-2α/histone deacetylase 2 and indicate that mutations within this transcriptional complex and signaling cascade lead to the development of cardiomyopathy."	"Genomic copy number alterations in non-syndromic hearing loss. Genetic heterogeneity has made the identification of genes related to hearing impairment a challenge. In the absence of a clear phenotypic aetiology, recurrence risk estimates are often based on family segregation and may be imprecise. We profiled by oligonucleotide array-CGH patients presenting non-syndromic hearing loss with presumptive autosomal recessive (n = 50) or autosomal dominant (n = 50) patterns of inheritance. Rare copy number variants (CNVs) were detected in 12 probands; four of the detected CNVs comprised genes previously associated with hearing loss (POU4F3, EYA4, USH2A, and BCAP31) and were considered causative, stressing the contribution of genomic imbalance to non-syndromic deafness. In six cases, segregation of the CNVs in pedigrees excluded them as causative. In one case, segregation could not be investigated, while in another case, a point mutation likely explains the phenotype. These findings show that the presumptive patterns of inheritance were incorrect in at least two cases, thereby impacting genetic counselling. In addition, we report the first duplication reciprocal to the rare ABCD1, BCAP31, and SLC6A8 contiguous deletion syndrome; as with most microduplication syndromes, the associated phenotype is much milder than the respective microdeletion and, in this case, was restricted to hearing impairment."	"Associations of genetic variations in EYA4, GRHL2 and DFNA5 with noise-induced hearing loss in Chinese population: a case- control study. Both environmental and genetic factors are attributable to the incidence of noise-induced hearing loss (NIHL). The purpose of this study was to examine the associations between genetic variations in the EYA4, GRHL2 and DFNA5 genes and the risk to noise-induced hearing loss (NIHL) in a Chinese population. A case-control study was conducted with 476 NIHL workers and 475 normal hearing workers matched with gender, years of noise exposure, and intensity of noise exposure. Twelve tag single-nucleotide polymorphisms (SNP) in the EYA4, GRHL2 and DFNA5 genes were genotyped using nanofluidic dynamic arrays on the Fluidigm platform. Multiple logistic regression was used to analyze the associations of genetic variations with NIHL adjusted by age, smoking/drinking status, and cumulative noise exposure and their interactions with noise exposure. The SNPs of rs3777781and rs212769 in the EYA4 gene were significantly associated with NIHL risk. In rs3777781, comparing with the subjects carrying with TT types, the carriers with AT and AA genotypes had the decreased risk of NIHL (OR = 0.721, 95% CI = 0.522 - 0.996). In rs212769, the AG and AA carriers had increased NIHL risk (OR = 1.430, 95% CI = 1.014 - 2.016) compared with the subjects with GG genotype. Rs666026 in the associated GRHL2 gene and rs2521758 in the DFNA5 gene were marginally t associated with NIHL (P = 0.065 and 0.052, respectively). Rs2521758 and rs212769 had significantly interacted with noise exposure (P &lt; 0.05). Genetic variations in the EYA4, GRHL2 and DFNA5 genes and their interactions with occupational noise exposure may play an important role in the incidence of NIHL."	"Audiometric Characteristics of a Dutch DFNA10 Family With Mid-Frequency Hearing Impairment. Mutations in EYA4 can cause nonsyndromic autosomal dominant sensorineural hearing impairment (DFNA10) or a syndromic variant with hearing impairment and dilated cardiomyopathy. A mutation in EYA4 was found in a Dutch family, causing DFNA10. This study is focused on characterizing the hearing impairment in this family. Whole exome sequencing was performed in the proband. In addition, peripheral blood samples were collected from 23 family members, and segregation analyses were performed. All participants underwent otorhinolaryngological examinations and pure-tone audiometry, and 12 participants underwent speech audiometry. In addition, an extended set of audiometric measurements was performed in five family members to evaluate the functional status of the cochlea. Vestibular testing was performed in three family members. Two individuals underwent echocardiography to evaluate the nonsyndromic phenotype. The authors present a Dutch family with a truncating mutation in EYA4 causing a mid-frequency hearing impairment. This mutation (c.464del) leads to a frameshift and a premature stop codon (p.Pro155fsX). This mutation is the most N-terminal mutation in EYA4 found to date. In addition, a missense mutation, predicted to be deleterious, was found in EYA4 in two family members. Echocardiography in two family members revealed no signs of dilated cardiomyopathy. Results of caloric and velocity step tests in three family members showed no abnormalities. Hearing impairment was found to be symmetric and progressive, beginning as a mid-frequency hearing impairment in childhood and developing into a high-frequency, moderate hearing impairment later in life. Furthermore, an extended set of audiometric measurements was performed in five family members. The results were comparable to those obtained in patients with other sensory types of hearing impairments, such as patients with Usher syndrome type IIA and presbyacusis, and not to those obtained in patients with (cochlear) conductive types of hearing impairment, such as DFNA8/12 and DFNA13. The mid-frequency hearing impairment in the present family was found to be symmetric and progressive, with a predominantly childhood onset. The results of psychophysical measurements revealed similarities to other conditions involving a sensory type of hearing impairment, such as Usher syndrome type IIA and presbyacusis. The study results suggest that EYA4 is expressed in the sensory cells of the cochlea. This phenotypic description will facilitate counseling for hearing impairment in DFNA10 patients."	"Identification of a novel truncation mutation of EYA4 in moderate degree hearing loss by targeted exome sequencing. The EYA4 gene encodes a 640-amino-acid protein that serves as a transcription factor. This protein contains a highly conserved Eya domain (eya-HR) and a variable domain (eya-VR). Mutations of this gene are known to cause postlingual and progressive sensorineural hearing loss, either as non-syndromic (DFNA10) or syndromic hearing loss, depending on the location of truncation of the mutant protein. Since our previous report, we have recruited 14 families segregating autosomal dominant moderate SNHL. A thorough medical history and physical examination including evaluation of heart problems ruled out any syndromic features in these families. Screening of EYA4 was performed by targeted exome sequencing of 134 known deafness genes (TES-134) from the probands. After basic filtering of the variants, we identified one proband who carried a novel truncation mutation, c.1194delT (p.Met401TrpfsX3) of EYA4, making the frequency of DFNA10 to be 7.14 % (1/14) in Koreans. The variant co-segregated perfectly with a slightly down-sloping, moderate degree of SNHL in the family (SH117), and was not detected in any of the 592 normal control chromosomes. This variant is likely to generate protein products that are truncated just downstream of the eya-VR domain. None of the three affected family members showed any syndromic features, including cardiac problems, which was compatible with a previous genotype-phenotype correlation. The identification of a novel EYA4 truncation mutation associated with DFNA10, rather than syndromic hearing loss, supports a previously reported genotype-phenotype correlation in this gene. Considering its detection rate, EYA4 mutations should be suspected in hereditary moderate hearing loss with a corresponding audiologic configuration, and a cardiac examination should be included in the initial evaluation."	"A novel EYA4 mutation causing hearing loss in a Chinese DFNA family and genotype-phenotype review of EYA4 in deafness. Hereditary hearing loss is a heterogeneous class of disorders showing various patterns of inheritance and involving many genes. Mutations in the EYA4 gene are responsible for postlingual, progressive, autosomal dominant hearing loss at the DFNA10 locus. We report on a Chinese family with sensorineural, progressive hearing loss. Next-generation sequencing (NGS) was conducted using DNA samples from this family. A candidate mutation was confirmed by Sanger sequencing. A detailed genotype and phenotype analysis of EYA4 in deafness is provided. NGS revealed an insertion mutation c.544_545insA in exon 8 of EYA4 in all affected family members. This insertion created a frameshift resulting in a stop codon at position 221 (p.F221X). The p.F221X frameshift mutation cosegregated with hearing loss in the family. Audiograms of affected family members are flat or sloping, differing from the characteristic &quot;cookie bite&quot; audiogram and the mutation is localized in a different region of the eyaHR in EYA4. We identified a novel frameshift mutation in the EYA4 gene. Our results enrich the mutational spectrum of EYA4 and highlight the complexity of the DFNA10 genotypes and phenotypes. Using NGS techniques to establish a database of common mutations in patients with hearing loss and further data accumulation will contribute to the early diagnosis and development of fundamental therapies for hereditary hearing loss."	"Exome Sequencing Identifies a Mutation in EYA4 as a Novel Cause of Autosomal Dominant Non-Syndromic Hearing Loss. Autosomal dominant non-syndromic hearing loss is highly heterogeneous, and eyes absent 4 (EYA4) is a disease-causing gene. Most EYA4 mutations founded in the Eya-homologous region, however, no deafness causative missense mutation in variable region of EYA4 have previously been found. In this study, we identified a pathogenic missense mutation located in the variable region of the EYA4 gene for the first time in a four-generation Chinese family with 57 members. Whole-exome sequencing (WES) was performed on samples from one unaffected and two affected individuals to systematically search for deafness susceptibility genes, and the candidate mutations and the co-segregation of the phenotype were verified by polymerase chain reaction amplification and by Sanger sequencing in all of the family members. Then, we identified a novel EYA4 mutation in exon 8, c.511G&gt;C; p.G171R, which segregated with postlingual and progressive autosomal dominant sensorineural hearing loss (SNHL). This report is the first to describe a missense mutation in the variable region domain of the EYA4 gene, which is not highly conserved in many species, indicating that the potential unconserved role of 171G&gt;R in human EYA4 function is extremely important. "	"A novel mutation of EYA4 in a large Chinese family with autosomal dominant middle-frequency sensorineural hearing loss by targeted exome sequencing. The middle-frequency sensorineural hearing loss (MFSNHL) is rare among hereditary non-syndromic hearing loss. To date, only three genes are reported to be associated with MFSNHL, including TECTA, EYA4 and COL11A2. In this report, we analyzed and explored the clinical audiological characteristics and the causative gene of a Chinese family named HG-Z087 with non-syndromic autosomal dominant inherited MFSNHL. Clinical audiological characteristics and inheritance pattern of a family were evaluated, and pedigree was drawn based on medical history investigation. Our results showed that the Chinese family was characterized by late onset, progressive, non-sydromic autosomal dominant MFSNHL. Targeted exome sequencing, conducted using DNA samples of an affected member in this family, revealed a novel heterozygous missense mutation c.1643C&gt;G in exon 18 of EYA4, causing amino-acid (aa) substitution Arg for Thr at a conserved position aa-548. The p.T548R mutation related to hearing loss in the selected Chinese family was validated by Sanger sequencing. However, the mutation was absent in control group containing 100 DNA samples from normal Chinese families. In conclusion, we identified the pathogenic gene and found that the novel missense mutation c.1643C&gt;G (p.T548R) in EYA4 might have caused autosomal dominant non-syndromic hearing impairment in the selected Chinese family. "	"Evaluation of the contribution of the EYA4 and GRHL2 genes in Korean patients with autosomal dominant non-syndromic hearing loss. EYA4 and GRHL2 encode transcription factors that play an important role in regulating many developmental stages. Since EYA4 and GRHL2 were identified as the transcription factors for the DFNA10 and DFNA28, 8 EYA4 mutations and 2 GRHL2 mutations have been reported worldwide. However, these genes have been reported in few studies of the Korean population. In this study, we performed a genetic analysis of EYA4 and GRHL2 in 87 unrelated Korean patients with autosomal dominant non-syndromic hearing loss (NSHL). A total of 4 genetic variants in the EYA4 gene were identified, including the 2 nonsense mutations p.S288X and p.Q393X. The novel mutation p.Q393X (c.1177C&gt;T) resulted in a change in the codon at amino acid position 393 from a glutamine to a stop codon. The p.Q393X allele was predicted to encode a truncated protein lacking the entire C-terminal Eya homolog region (Eya HR), which is essential for the interaction with the transcription factor SIX3. The p.S288X (c.863C&gt;A) mutation was found in a Korean family from a previous study. We analyzed p.S288X-linked microsatellite markers and determined that p.S288X might be a founder mutation and a hotspot mutation in Koreans. In GRHL2, a total of 4 genetic variants were identified, but none were associated with hearing loss in Korean patients. This suggests that GRHL2 may not be a main causal gene for autosomal dominant NSHL in Korean patients. In conclusion, our data provide fundamental information to predict the genotypes of Korean patients diagnosed with autosomal dominant NSHL. "	"Phenotypic variability in a seven-generation Swedish family segregating autosomal dominant hearing impairment due to a novel EYA4 frameshift mutation. Linkage to an interval overlapping the DFNA10 locus on chromosome 6q22-23 was found through genome wide linkage analysis in a seven-generation Swedish family segregating postlingual, autosomal dominant nonsyndromic sensorineural hearing impairment. A novel heterozygous frame-shift mutation (c.579_580insTACC, p.(Asp194Tyrfs*52)) in EYA4 was identified that truncates the so-called variable region of the protein. The mutation is predicted to result in haploinsufficiency of the EYA4 product. No evidence for dilated cardiomyopathy was found in the family, contrasting to a previous family with a deletion resulting in a similar truncation in the variable region. A highly variable age of onset was seen in the mutation carriers. For assessment of the aetiology of this variability, clinical and audiometric data analyses were performed. The affected family members all had similar cross-sectional and longitudinal deterioration of pure tone average (PTA) once the process of hearing deterioration had started, and no gender, parent-of-origin or family branch differences on PTA could be found. Age at onset varied between the family branches. In summary, this is the ninth published genetically verified DFNA10 family. The results imply that unidentified factors, genetic or environmental, other than the EYA4 mutation, are of importance for the age at onset of DFNA10, and that mutation early in the variable region of the EYA4 protein can occur in the absence of dilated cardiomyopathy."	"EYA4 Acts as a New Tumor Suppressor Gene in Colorectal Cancer. A previous genome-wide methylation array for colorectal cancer (CRC) identified aberrant promoter methylation of eyes absent 4 (EYA4). However, the correlations between EYA4 methylation and gene expression, the role played by EYA4 protein in colorectal carcinogenesis, and results of the gene-enrichment and functional annotation analysis have not yet been established. We analyzed the EYA4 methylation status and found EYA4 promoter methylation in CRC cell lines (100%), CRC tissues (93.5%) and advanced adenoma tissues (50.7%), compared with normal mucosa (32.6%). There was a significant inverse correlation between EYA4 methylation and expression. EYA4 transfection led to inhibition of cell proliferation in colony assays and xenograft studies. On performing the gene-enrichment and functional annotation analysis, we observed that the differentially expressed genes have been associated with the Wnt and MAPK signaling pathways. Our results demonstrate that EYA4 is under epigenetic regulation in CRC. It is a candidate tumor suppressor gene that acts by inducing up-regulation of DKK1 and inhibiting the Wnt signaling pathway. In addition, EYA4 methylation may be identified in stool samples and it serves as a potential stool biomarker for detection of advanced adenoma and CRC."	"DNA methylation profiling in the Carolina Breast Cancer Study defines cancer subclasses differing in clinicopathologic characteristics and survival. Breast cancer is a heterogeneous disease, with several intrinsic subtypes differing by hormone receptor (HR) status, molecular profiles, and prognosis. However, the role of DNA methylation in breast cancer development and progression and its relationship with the intrinsic tumor subtypes are not fully understood. A microarray targeting promoters of cancer-related genes was used to evaluate DNA methylation at 935 CpG sites in 517 breast tumors from the Carolina Breast Cancer Study, a population-based study of invasive breast cancer. Consensus clustering using methylation (β) values for the 167 most variant CpG loci defined four clusters differing most distinctly in HR status, intrinsic subtype (luminal versus basal-like), and p53 mutation status. Supervised analyses for HR status, subtype, and p53 status identified 266 differentially methylated CpG loci with considerable overlap. Genes relatively hypermethylated in HR+, luminal A, or p53 wild-type breast cancers included FABP3, FGF2, FZD9, GAS7, HDAC9, HOXA11, MME, PAX6, POMC, PTGS2, RASSF1, RBP1, and SCGB3A1, whereas those more highly methylated in HR-, basal-like, or p53 mutant tumors included BCR, C4B, DAB2IP, MEST, RARA, SEPT5, TFF1, THY1, and SERPINA5. Clustering also defined a hypermethylated luminal-enriched tumor cluster 3 that gene ontology analysis revealed to be enriched for homeobox and other developmental genes (ASCL2, DLK1, EYA4, GAS7, HOXA5, HOXA9, HOXB13, IHH, IPF1, ISL1, PAX6, TBX1, SOX1, and SOX17). Although basal-enriched cluster 2 showed worse short-term survival, the luminal-enriched cluster 3 showed worse long-term survival but was not independently prognostic in multivariate Cox proportional hazard analysis, likely due to the mostly early stage cases in this dataset. This study demonstrates that epigenetic patterns are strongly associated with HR status, subtype, and p53 mutation status and may show heterogeneity within tumor subclass. Among HR+ breast tumors, a subset exhibiting a gene signature characterized by hypermethylation of developmental genes and poorer clinicopathologic features may have prognostic value and requires further study. Genes differentially methylated between clinically important tumor subsets have roles in differentiation, development, and tumor growth and may be critical to establishing and maintaining tumor phenotypes and clinical outcomes."	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Identification of I411K, a novel missense EYA4 mutation causing autosomal dominant non‑syndromic hearing loss. Hearing loss is the most common sensory deficit in humans and gaining a better understanding of the underlying causes is necessary to improve counseling and rehabilitation. In the present study, a genetic analysis of a Chinese family with autosomal dominant non‑syndromic progressive hearing impairment was conducted and assessed. Whole‑exome sequencing in combination with a co‑segregation analysis identified a novel missense mutation in EYA4 exon 15 (c.T1301A; p.I411K). The mutation segregated with the hearing loss of the family. This mutation was not identified in the databases of 1000 genome Project, dbSNP 130, HapMap and YH project or in matched controls. Bioinformatic analysis confirmed the pathogenic effects of this mutation. To the best of our knowledge, this is the first report to provide a description of a missense mutation in the EYA4 gene resulting in non‑syndromic hearing loss. Our results provide additional molecular and clinical information in order to gain improved understanding of the pathogenesis of EYA4 mutations and the genotype‑phenotype correlations of DFNA10 hearing loss. "	"DNA methylation characteristics of primary melanomas with distinct biological behaviour. In melanoma, the presence of promoter related hypermethylation has previously been reported, however, no methylation-based distinction has been drawn among the diverse melanoma subtypes. Here, we investigated DNA methylation changes associated with melanoma progression and links between methylation patterns and other types of somatic alterations, including the most frequent mutations and DNA copy number changes. Our results revealed that the methylome, presenting in early stage samples and associated with the BRAF(V600E) mutation, gradually decreased in the medium and late stages of the disease. An inverse relationship among the other predefined groups and promoter methylation was also revealed except for histologic subtype, whereas the more aggressive, nodular subtype melanomas exhibited hypermethylation as well. The Breslow thickness, which is a continuous variable, allowed for the most precise insight into how promoter methylation decreases from stage to stage. Integrating our methylation results with a high-throughput copy number alteration dataset, local correlations were detected in the MYB and EYA4 genes. With regard to the effects of DNA hypermethylation on melanoma patients' survival, correcting for clinical cofounders, only the KIT gene was associated with a lower overall survival rate. In this study, we demonstrate the strong influence of promoter localized DNA methylation changes on melanoma initiation and show how hypermethylation decreases in melanomas associated with less favourable clinical outcomes. Furthermore, we establish the methylation pattern as part of an integrated apparatus of somatic DNA alterations."	"DNA methylation profiling identifies EYA4 gene as a prognostic molecular marker in hepatocellular carcinoma. DNA hypermethylation plays important roles in carcinogenesis by silencing key genes. This study aims to identify pivotal genes in hepatocellular carcinoma (HCC) by DNA methylation microarray and to assess their prognostic values. DNA methylation microarray was performed in 45 pairs of HCC and adjacent nontumorous tissues and six normal liver tissues to identify hypermethylated genes in HCC. Potential prognosis-related genes were selected among hypermethylated genes by analyzing influences of methylation levels on disease-free survival (DFS) and overall survival (OS) in 45 patients. Their prognostic values were validated in 154 patients with HCC (including the initial 45 patients) to determine the independent prognostic gene. Altogether, 54 CpG islands in 44 genes were hypermethylated in HCC compared with liver tissues. Among them, methylation levels of ERG and HOXA11 were inversely associated with DFS (both P &lt; 0.050), and methylation levels of EYA4 were inversely related to DFS and OS (both P &lt; 0.050). EYA4 expression was inversely related to tumor size (P &lt; 0.050). Lower EYA4 expression and larger tumor size were independent predictors of both shorter DFS and OS, and higher Barcelona Clinic Liver Cancer (BCLC) staging was an independent predictor of shorter OS (all P &lt; 0.050). EYA4 functions as a prognostic molecular marker in HCC. Its aberrant hypermethylation and subsequent down-regulation may promote tumor progression."	"EYA4 is inactivated biallelically at a high frequency in sporadic lung cancer and is associated with familial lung cancer risk. In an effort to identify novel biallelically inactivated tumor suppressor genes (TSGs) in sporadic invasive and preinvasive non-small-cell lung cancer (NSCLC) genomes, we applied a comprehensive integrated multiple 'omics' approach to investigate patient-matched, paired NSCLC tumor and non-malignant parenchymal tissues. By surveying lung tumor genomes for genes concomitantly inactivated within individual tumors by multiple mechanisms, and by the frequency of disruption in tumors across multiple cohorts, we have identified a putative lung cancer TSG, Eyes Absent 4 (EYA4). EYA4 is frequently and concomitantly deleted, hypermethylated and underexpressed in multiple independent lung tumor data sets, in both major NSCLC subtypes and in the earliest stages of lung cancer. We found that decreased EYA4 expression is not only associated with poor survival in sporadic lung cancers but also that EYA4 single-nucleotide polymorphisms are associated with increased familial cancer risk, consistent with EYA4s proximity to the previously reported lung cancer susceptibility locus on 6q. Functionally, we found that EYA4 displays TSG-like properties with a role in modulating apoptosis and DNA repair. Cross-examination of EYA4 expression across multiple tumor types suggests a cell-type-specific tumorigenic role for EYA4, consistent with a tumor suppressor function in cancers of epithelial origin. This work shows a clear role for EYA4 as a putative TSG in NSCLC. "	"Diagnostic application of targeted resequencing for familial nonsyndromic hearing loss. Identification of causative genes for hereditary nonsyndromic hearing loss (NSHL) is important to decide treatment modalities and to counsel the patients. Due to the genetic heterogeneity in sensorineural genetic disorders, the high-throughput method can be adapted for the efficient diagnosis. To this end, we designed a new diagnostic pipeline to screen all the reported candidate genes for NSHL. For validation of the diagnostic pipeline, we focused upon familial NSHL cases that are most likely to be genetic, rather than to be infectious or environmental. Among the 32 familial NSHL cases, we were able to make a molecular genetic diagnosis from 12 probands (37.5%) in the first stage by their clinical features, characteristic inheritance pattern and further candidate gene sequencing of GJB2, SLC26A4, POU3F4 or mitochondrial DNA. Next we applied targeted resequencing on 80 NSHL genes in the remaining 20 probands. Each proband carried 4.8 variants that were not synonymous and had the occurring frequency of less than three among the 20 probands. These variants were then filtered out with the inheritance pattern of the family, allele frequency in normal hearing 80 control subjects, clinical features. Finally NSHL-causing candidate mutations were identified in 13(65%) of the 20 probands of multiplex families, bringing the total solve rate (or detection rate) in our familial cases to be 78.1% (25/32) Damaging mutations discovered by the targeted resequencing were distributed in nine genes such as WFS1, COCH, EYA4, MYO6, GJB3, COL11A2, OTOF, STRC and MYO3A, most of which were private. Despite the advent of whole genome and whole exome sequencing, we propose targeted resequencing and filtering strategy as a screening and diagnostic tool at least for familial NSHL to find mutations based upon its efficacy and cost-effectiveness."	"Toward a comprehensive and systematic methylome signature in colorectal cancers. CpG Island Methylator Phenotype (CIMP) is one of the underlying mechanisms in colorectal cancer (CRC). This study aimed to define a methylome signature in CRC through a methylation microarray analysis and a compilation of promising CIMP markers from the literature. Illumina HumanMethylation27 (IHM27) array data was generated and analyzed based on statistical differences in methylation data (1st approach) or based on overall differences in methylation percentages using lower 95% CI (2nd approach). Pyrosequencing was performed for the validation of nine genes. A meta-analysis was used to identify CIMP and non-CIMP markers that were hypermethylated in CRC but did not yet make it to the CIMP genes' list. Our 1st approach for array data analysis demonstrated the limitations in selecting genes for further validation, highlighting the need for the 2nd bioinformatics approach to adequately select genes with differential aberrant methylation. A more comprehensive list, which included non-CIMP genes, such as APC, EVL, CD109, PTEN, TWIST1, DCC, PTPRD, SFRP1, ICAM5, RASSF1A, EYA4, 30ST2, LAMA1, KCNQ5, ADHEF1, and TFPI2, was established. Array data are useful to categorize and cluster colonic lesions based on their global methylation profiles; however, its usefulness in identifying robust methylation markers is limited and rely on the data analysis method. We have identified 16 non-CIMP-panel genes for which we provide rationale for inclusion in a more comprehensive characterization of CIMP+ CRCs. The identification of a definitive list for methylome specific genes in CRC will contribute to better clinical management of CRC patients. "	"Methylated eyes absent 4 (EYA4) gene promotor in non-neoplastic mucosa of ulcerative colitis patients with colorectal cancer: evidence for a field effect. Aberrant methylation of the EYA4 gene (mEYA4) highly discriminates ulcerative colitis (UC) cases with colorectal neoplasia from UC controls in both tissue and stool. It is not known if mEYA4 is also present in nonadjacent non-neoplastic mucosa (NNM) of UC patients with colorectal neoplasia. Formalin-fixed tissues from 25 UC cases with colorectal cancer (CRC) and 25 UC controls with neither CRC nor dysplasia were matched on gender, age, disease duration, disease extent, and coexistence of primary sclerosing cholangitis. DNA was extracted from sections of CRC and NNM from cases and UC control mucosae. Bisulfite-treated DNA was amplified using real-time methylation-specific PCR. The Wilcoxon rank-sum test assessed differences in mEYA4 levels from CRC, NNM, and control samples. Logistic regression was used to estimate sensitivity and specificity. Sufficient DNA was available for 20 cases and 20 controls. The median mEYA4 level (with interquartile range) was 2 (0-5.7) in control mucosae but 93 (38.5-306) in CRC (P &lt; 0.0001) and 27.4 (3-140) in NNM (P = 0.0009). At 95% specificity, mEYA4 was present in 80% of CRC and 50% of NNM tissue samples. The odds ratio of mEYA4 in NNM as an indicator of synchronous CRC was 19 (95% confidence interval, 2-170). The authors demonstrate significantly higher mEYA4 levels in NNM and synchronous CRC from UC cases than in colorectal mucosae of UC controls without neoplasia. The finding of this CRC-associated field change has important implications to the use of mEYA4 as a potential UC surveillance marker in tissue or stool."	"Serum methylation levels of TAC1. SEPT9 and EYA4 as diagnostic markers for early colorectal cancers: a pilot study. To identify methylated genes in serum with diagnostic potentials for early colorectal cancer (CRC). Serum methylation levels of up to 12 genes were measured in two sets of serum samples with the second set from 26 stage I CRC patients and 26 age/gender-matched controls. Serum methylation levels of TAC1, SEPT9, and EYA4 were significant discriminants between stage I CRC and healthy controls. Combination of TAC1 and SEPT9 rendered 73.1% sensitivity with 92.3% specificity. Serum methylation levels of TAC1. SEPT9 and EYA4 may be useful biomarkers for early detection of CRC though a validation study is necessary."	"Genomic and molecular aberrations in malignant peripheral nerve sheath tumor and their roles in personalized target therapy. Malignant peripheral nerve sheath tumors (MPNSTs) are malignant tumors with a high rate of local recurrence and a significant tendency to metastasize. Its dismal outcome points to the urgent need to establish better therapeutic strategies for patients harboring MPNSTs. The investigations of genomic and molecular aberrations in MPNSTs which detect many chromosomal aberrations, pathway abnormalities, and specific molecular aberrant events would supply multiple potential therapy targets and contribute to achievement of personalized medicine. The involved genes in the significant gains aberrations include BIRC5, CCNE2, DAB2, DDX15, EGFR, DAB2, MSH2, CDK6, HGF, ITGB4, KCNK12, LAMA3, LOXL2, MET, and PDGFRA. The involved genes in the significant deletion aberrations include CDH1, GLTSCR2, EGR1, CTSB, GATA3, SULT2A1, GLTSCR2, HMMR/RHAMM, LICAM2, MMP13, p16/INK4a, RASSF2, NM-23H1, and TP53. These genetic aberrations involve in several important signaling pathways such as TFF, EGFR, ARF, IGF1R signaling pathways. The genomic and molecular aberrations of EGFR, IGF1R, SOX9, EYA4, TOP2A, ETV4, and BIRC5 exhibit great promise as personalized therapeutic targets for MPNST patients. "	"Stool DNA testing for the detection of colorectal neoplasia in patients with inflammatory bowel disease. Current approaches to the detection of colorectal neoplasia associated with inflammatory bowel disease (IBD-CRN) are suboptimal. To test the feasibility of using stool assay of exfoliated DNA markers to detect IBD-CRN. This investigation comprised tissue and stool studies. In the tissue study, gene sequencing and methylation assays were performed on candidate genes using tissue DNA from 25 IBD-CRNs and from 25 IBD mucosae without CRN. Mutations on p53, APC, KRAS, BRAF or PIK3CA genes were insufficiently informative, but several aberrantly methylated genes were highly discriminant. In the stool study, we evaluated candidate methylated genes (vimentin, EYA4, BMP3, NDRG4) in a prospective blinded study on buffered stools from 19 cases with known IBD-CRN and 35 age- and sex-matched IBD controls without CRN. From stool-extracted DNA, target genes were assayed using quantitative allele-specific real-time target and signal amplification method. IBD-CRN cases included 17 with ulcerative colitis (UC) and two with Crohn's disease (CD); nine had cancer and 10 had dysplasia. Controls included 25 with UC and 10 with CD. Individually, BMP3, vimentin, EYA4 and NDRG4 markers showed high discrimination in stools with respective areas under the ROC curve of 0.91, 0.91, 0.85 and 0.84 for total IBD-CRN and of 0.97, 0.97, 0.95 and 0.85 for cancer. At 89% specificity, the combination of BMP3 and mNDRG4 detected 9/9 (100%) of CRC and 80% of dysplasia, 4/4 (100%) of high grade and 4/6 (67%) of low grade. These findings demonstrate the feasibility of stool DNA testing for non-invasive detection of colorectal neoplasia associated with inflammatory bowel disease."	"Evolution of electrosensory ampullary organs: conservation of Eya4 expression during lateral line development in jawed vertebrates. The lateral line system of fishes and amphibians comprises two ancient sensory systems: mechanoreception and electroreception. Electroreception is found in all major vertebrate groups (i.e. jawless fishes, cartilaginous fishes, and bony fishes); however, it was lost in several groups including anuran amphibians (frogs) and amniotes (reptiles, birds, and mammals), as well as in the lineage leading to the neopterygian clade of bony fishes (bowfins, gars, and teleosts). Electroreception is mediated by modified &quot;hair cells,&quot; which are collected in ampullary organs that flank lines of mechanosensory hair cell containing neuromasts. In the axolotl (a urodele amphibian), grafting and ablation studies have shown a lateral line placode origin for both mechanosensory neuromasts and electrosensory ampullary organs (and the neurons that innervate them). However, little is known at the molecular level about the development of the amphibian lateral line system in general and electrosensory ampullary organs in particular. Previously, we identified Eya4 as a marker for lateral line (and otic) placodes, neuromasts, and ampullary organs in a shark (a cartilaginous fish) and a paddlefish (a basal ray-finned fish). Here, we show that Eya4 is similarly expressed during otic and lateral line placode development in the axolotl (a representative of the lobe-finned fish clade). Furthermore, Eya4 expression is specifically restricted to hair cells in both neuromasts and ampullary organs, as identified by coexpression with the calcium-buffering protein Parvalbumin3. As well as identifying new molecular markers for amphibian mechanosensory and electrosensory hair cells, these data demonstrate that Eya4 is a conserved marker for lateral line placodes and their derivatives in all jawed vertebrates."	"The Eyes Absent proteins in development and disease. The Eyes Absent (EYA) proteins, first described in the context of fly eye development, are now implicated in processes as disparate as organ development, innate immunity, DNA damage repair, photoperiodism, angiogenesis, and cancer metastasis. These functions are associated with an unusual combination of biochemical activities: tyrosine phosphatase and threonine phosphatase activities in separate domains, and transactivation potential when associated with a DNA-binding partner. EYA mutations are linked to multiorgan developmental disorders, as well as to adult diseases ranging from dilated cardiomyopathy to late-onset sensorineural hearing loss. With the growing understanding of EYA biochemical and cellular activity, biological function, and association with disease, comes the possibility that the EYA proteins are amenable to the design of targeted therapeutics. The availability of structural information, direct links to disease states, available animal models, and the fact that they utilize unconventional reaction mechanisms that could allow specificity, suggest that EYAs are well-positioned for drug discovery efforts. This review provides a summary of EYA structure, activity, and function, as they relate to development and disease, with particular emphasis on recent findings."	"Targeted massive parallel sequencing: the effective detection of novel causative mutations associated with hearing loss in small families. Hereditary hearing loss is one of the most common heterogeneous disorders, and genetic variants that can cause hearing loss have been identified in over sixty genes. Most of these hearing loss genes have been detected using classical genetic methods, typically starting with linkage analysis in large families with hereditary hearing loss. However, these classical strategies are not well suited for mutation analysis in smaller families who have insufficient genetic information. Eighty known hearing loss genes were selected and simultaneously sequenced by targeted next-generation sequencing (NGS) in 8 Korean families with autosomal dominant non-syndromic sensorineural hearing loss. Five mutations in known hearing loss genes, including 1 nonsense and 4 missense mutations, were identified in 5 different genes (ACTG1, MYO1F, DIAPH1, POU4F3 and EYA4), and the genotypes for these mutations were consistent with the autosomal dominant inheritance pattern of hearing loss in each family. No mutational hot-spots were revealed in these Korean families. Targeted NGS allowed for the detection of pathogenic mutations in affected individuals who were not candidates for classical genetic studies. This report is the first documenting the effective use of an NGS technique to detect pathogenic mutations that underlie hearing loss in an East Asian population. Using this NGS technique to establish a database of common mutations in Korean patients with hearing loss and further data accumulation will contribute to the early diagnosis and fundamental therapies for hereditary hearing loss."	"Drosophila EYA regulates the immune response against DNA through an evolutionarily conserved threonine phosphatase motif. Innate immune responses against DNA are essential to counter both pathogen infections and tissue damages. Mammalian EYAs were recently shown to play a role in regulating the innate immune responses against DNA. Here, we demonstrate that the unique Drosophila eya gene is also involved in the response specific to DNA. Haploinsufficiency of eya in mutants deficient for lysosomal DNase activity (DNaseII) reduces antimicrobial peptide gene expression, a hallmark for immune responses in flies. Like the mammalian orthologues, Drosophila EYA features a N-terminal threonine and C-terminal tyrosine phosphatase domain. Through the generation of a series of mutant EYA fly strains, we show that the threonine phosphatase domain, but not the tyrosine phosphatase domain, is responsible for the innate immune response against DNA. A similar role for the threonine phosphatase domain in mammalian EYA4 had been surmised on the basis of in vitro studies. Furthermore EYA associates with IKKβ and full-length RELISH, and the induction of the IMD pathway-dependent antimicrobial peptide gene is independent of SO. Our data provide the first in vivo demonstration for the immune function of EYA and point to their conserved immune function in response to endogenous DNA, throughout evolution."	"DNA methylation analysis of bone marrow cells at diagnosis of acute lymphoblastic leukemia and at remission. To detect genes with CpG sites that display methylation patterns that are characteristic of acute lymphoblastic leukemia (ALL) cells, we compared the methylation patterns of cells taken at diagnosis from 20 patients with pediatric ALL to the methylation patterns in mononuclear cells from bone marrow of the same patients during remission and in non-leukemic control cells from bone marrow or blood. Using a custom-designed assay, we measured the methylation levels of 1,320 CpG sites in regulatory regions of 413 genes that were analyzed because they display allele-specific gene expression (ASE) in ALL cells. The rationale for our selection of CpG sites was that ASE could be the result of allele-specific methylation in the promoter regions of the genes. We found that the ALL cells had methylation profiles that allowed distinction between ALL cells and control cells. Using stringent criteria for calling differential methylation, we identified 28 CpG sites in 24 genes with recurrent differences in their methylation levels between ALL cells and control cells. Twenty of the differentially methylated genes were hypermethylated in the ALL cells, and as many as nine of them (AMICA1, CPNE7, CR1, DBC1, EYA4, LGALS8, RYR3, UQCRFS1, WDR35) have functions in cell signaling and/or apoptosis. The methylation levels of a subset of the genes were consistent with an inverse relationship with the mRNA expression levels in a large number of ALL cells from published data sets, supporting a potential biological effect of the methylation signatures and their application for diagnostic purposes."	"Stool DNA testing for the detection of pancreatic cancer: assessment of methylation marker candidates. Pancreatic cancer (PanC) presents at late stage with high mortality. Effective early detection methods are needed. Aberrantly methylated genes are unexplored as markers for noninvasive detection by stool testing. The authors aimed to select discriminant methylated genes and to assess accuracy of these and mutant KRAS in stool to detect PanC. Nine target genes were assayed by real-time methylation-specific polymerase chain reaction (MSP) in bisulfite-treated DNA from microdissected frozen specimens of 24 PanC cases and 30 normal colon controls. Archived stools from 58 PanC cases and 65 controls matched on sex, age, and smoking were analyzed. Target genes from fecal supernatants were enriched by hybrid capture, bisulfite-treated, and assayed by MSP. KRAS mutations were assayed using the QuARTS technique. Areas under the receiver operating characteristics curves (AUCs) for tissue BMP3, NDRG4, EYA4, UCHL1, MDFI, Vimentin, CNTNAP2, SFRP2, and TFPI2 were 0.90, 0.79, 0.78, 0.78, 0.77, 0.77, 0.69, 0.67, and 0.66, respectively. The top 4 markers and mutant KRAS were evaluated in stool. BMP3 was the most discriminant methylation marker in stool. At 90% specificity, methylated BMP3 alone detected 51% of PanCs, mutant KRAS detected 50%, and combination detected 67%. AUCs for methylated BMP3, mutant KRAS, and combination in stool were 0.73, 0.75, and 0.85, respectively. This study demonstrates that stool assay of a methylated gene marker can detect PanC. Among candidate methylated markers discriminant in tissue, BMP3 alone performed well in stool. Combining methylated BMP3 and mutant KRAS increased stool detection over either marker alone."	"Characterization of the threonine-phosphatase of mouse eyes absent 3. Eyes absent (EYA) has tyrosine- and threonine-phosphatase activities in their C-terminal and N-terminal regions, respectively. Using various mutants of mouse EYA3, we showed that the 68-amino acid domain between positions 53 and 120 was necessary and sufficient for its threonine-phosphatase activity. Point mutations were then introduced, and residues Cys-56, Tyr-77, His-79, and Tyr-90 were essential for the EYA3s threonine-phosphatase. The 68-amino acid domain is not well conserved among the four mouse EYA members, but is evolutionally highly conserved in the orthologous EYA members of different species, suggesting that the threonine-phosphatase of EYA3 has a function distinct from that of the other EYAs."	"DNA methylation changes in atypical adenomatous hyperplasia, adenocarcinoma in situ, and lung adenocarcinoma. Aberrant DNA methylation is common in lung adenocarcinoma, but its timing in the phases of tumor development is largely unknown. Delineating when abnormal DNA methylation arises may provide insight into the natural history of lung adenocarcinoma and the role that DNA methylation alterations play in tumor formation. We used MethyLight, a sensitive real-time PCR-based quantitative method, to analyze DNA methylation levels at 15 CpG islands that are frequently methylated in lung adenocarcinoma and that we had flagged as potential markers for non-invasive detection. We also used two repeat probes as indicators of global DNA hypomethylation. We examined DNA methylation in 249 tissue samples from 93 subjects, spanning the putative spectrum of peripheral lung adenocarcinoma development: histologically normal adjacent non-tumor lung, atypical adenomatous hyperplasia (AAH), adenocarcinoma in situ (AIS, formerly known as bronchioloalveolar carcinoma), and invasive lung adenocarcinoma. Comparison of DNA methylation levels between the lesion types suggests that DNA hypermethylation of distinct loci occurs at different time points during the development of lung adenocarcinoma. DNA methylation at CDKN2A ex2 and PTPRN2 is already significantly elevated in AAH, while CpG islands at 2C35, EYA4, HOXA1, HOXA11, NEUROD1, NEUROD2 and TMEFF2 are significantly hypermethylated in AIS. In contrast, hypermethylation at CDH13, CDX2, OPCML, RASSF1, SFRP1 and TWIST1 and global DNA hypomethylation appear to be present predominantly in invasive cancer. The gradual increase in DNA methylation seen for numerous loci in progressively more transformed lesions supports the model in which AAH and AIS are sequential stages in the development of lung adenocarcinoma. The demarcation of DNA methylation changes characteristic for AAH, AIS and adenocarcinoma begins to lay out a possible roadmap for aberrant DNA methylation events in tumor development. In addition, it identifies which DNA methylation changes might be used as molecular markers for the detection of preinvasive lesions."	"Identification and validation of highly frequent CpG island hypermethylation in colorectal adenomas and carcinomas. In our study, whole-genome methylation arrays were applied to identify novel genes with tumor specific DNA methylation of promoter CpG islands in pre-malignant and malignant colorectal lesions. Using a combination of Illumina HumanMethylation27 beadchips, Methylation-Sensitive High Resolution Melting (MS-HRM) analysis, and Exon arrays (Affymetrix) the DNA methylation pattern of ∼14,000 genes and their transcript levels were investigated in six normal mucosas, six adenomas and 30 MSI and MSS carcinomas. Sixty eight genes with tumor-specific hypermethylation were identified (p &lt; 0.005). Identified hypermethylated sites were validated in an independent sample set of eight normal mucosas, 12 adenomas, 40 MSS and nine MSI cancer samples. The methylation patterns of 15 selected genes, hypermethylated in adenomas and carcinomas (FLI1, ST6GALNAC5, TWIST1, ADHFE1, JAM2, IRF4, CNRIP1, NRG1 and EYA4), in carcinomas only (ABHD9, AOX1 and RERG), or in MSI but not MSS carcinomas (RAMP2, DSC3 and MLH1) were validated using MS-HRM. Four of these genes (MLH1, AOX1, EYA4 and TWIST1) had previously been reported to be hypermethylated in CRC. Eleven genes, not previously known to be affected by CRC specific hypermethylation, were identified and validated. Inverse correlation to gene expression was observed for six of the 15 genes with Spearman correlation coefficients ranging from -0.39 to -0.60. For six of these genes the altered methylation patterns had a profound transcriptional association, indicating that methylation of these genes may play a direct regulatory role. The hypermethylation changes often occurred already in adenomas, indicating that they may be used as biomarkers for early detection of CRC."	"Pharmacogenetics: Anti-TNF therapy in RA--towards personalized medicine? A substantial proportion of patients with rheumatoid arthritis do not respond to tumor necrosis factor blocking therapy. Results of a large genome-wide association study demonstrate evidence of novel genetic factors that determine response to treatment, which could provide a basis for individualizing therapy."	"Epigenomic analysis of aberrantly methylated genes in colorectal cancer identifies genes commonly affected by epigenetic alterations. Determination of the profile of genes that are commonly methylated aberrantly in colorectal cancer (CRC) will have substantial value for diagnostic and therapeutic applications. However, there is limited knowledge of the DNA methylation pattern in CRC. We analyzed the methylation profile of 27,578 CpG sites spanning more than 14,000 genes in CRC and in the adjacent normal mucosa with bead-chip array-based technology. We identified 621 CpG sites located in promoter regions and CpG islands that were greatly hypermethylated in CRC compared to normal mucosa. The genes on chromosome 18 showed promoter hypermethylation most frequently. According to gene ontology analysis, the most common biologically relevant class of genes affected by methylation was the class associated with the cadherin signaling pathway. Compared to the genome-wide expression array, mRNA expression was more likely to be downregulated in the genes demonstrating promoter hypermethylation, even though this was not statistically significant. We validated ten CpG sites that were hypermethylated (ADHFE1, BOLL, SLC6A15, ADAMTS5, TFPI2, EYA4, NPY, TWIST1, LAMA1, GAS7) and 2 CpG sites showing hypomethylation (MAEL, SFT2D3) in CRC compared to the normal mucosa in the array studies using pyrosequencing. The methylation status measured by pyrosequencing was consistent with the methylation array data. Methylation profiling based on bead-chip arrays is an effective method for screening aberrantly methylated genes in CRC. In addition, we identified novel methylated genes that are candidate diagnostic or prognostic markers for CRC."	"Unraveling the genetics of otitis media: from mouse to human and back again. Otitis media (OM) is among the most common illnesses of early childhood, characterised by the presence of inflammation in the middle ear cavity. Acute OM and chronic OM with effusion (COME) affect the majority of children by school age and have heritability estimates of 40-70%. However, the majority of genes underlying this susceptibility are, as yet, unidentified. One method of identifying genes and pathways that may contribute to OM susceptibility is to look at mouse mutants displaying a comparable phenotype. Single-gene mouse mutants with OM have identified a number of genes, namely, Eya4, Tlr4, p73, MyD88, Fas, E2f4, Plg, Fbxo11, and Evi1, as potential and biologically relevant candidates for human disease. Recent studies suggest that this &quot;mouse-to-human&quot; approach is likely to yield relevant data, with significant associations reported between polymorphisms at the FBXO11, TLR4, and PAI1 genes and disease in humans. An association between TP73 and chronic rhinosinusitis has also been reported. In addition, the biobanks of available mouse mutants provide a powerful resource for functional studies of loci identified by future genome-wide association studies of OM in humans. Mouse models of OM therefore are an important component of current approaches attempting to understand the complex genetic susceptibility to OM in humans, and which aim to facilitate the development of preventative and therapeutic interventions for this important and common disease."	"Genome-wide association study of genetic predictors of anti-tumor necrosis factor treatment efficacy in rheumatoid arthritis identifies associations with polymorphisms at seven loci. Anti-tumor necrosis factor (anti-TNF) agents are successful therapies in rheumatoid arthritis (RA); however, inadequate response occurs in 30-40% of patients treated. Knowledge of the genetic factors that influence response may facilitate personalized therapy. The purpose of this study was to identify genetic predictors of response to anti-TNF therapy in RA and to validate our findings in independent cohorts. Data from genome-wide association (GWA) studies were available from the Wellcome Trust Case Control Consortium for 566 anti-TNF-treated RA patients. Multivariate linear regression analysis of changes in the Disease Activity Score in 28 joints at 6 months was conducted at each single-nucleotide polymorphism (SNP) using an additive model. Associated markers (P &lt; 10(-3) ) were genotyped in 2 independent replication cohorts (n = 379 and n = 341), and a combined analysis was performed. Of 171 successfully genotyped markers demonstrating association with treatment response in the GWA data, 7 were corroborated in the combined analysis. The strongest effect was at rs17301249, mapping to the EYA4 gene on chromosome 6: the minor allele conferred improved response to treatment (coefficient -0.27, P = 5.67(-05) ). The minor allele of rs1532269, mapping to the PDZD2 gene, was associated with a reduced treatment response (coefficient 0.20, P = 7.37(-04) ). The remaining associated SNPs mapped to intergenic regions on chromosomes 1, 4, 11, and 12. Using a genome-wide strategy, we have identified and validated the association of 7 genetic loci with response to anti-TNF treatment in RA. Additional confirmation of these findings in further cohorts will be required."	"A comprehensive analysis of microRNA expression during human keratinocyte differentiation in vitro and in vivo. Here, we report a comprehensive investigation of changes in microRNA (miRNA) expression profiles on human keratinocyte (HK) differentiation in vitro and in vivo. We have monitored expression patterns of 377 miRNAs during calcium-induced differentiation of primary HKs, and have compared these patterns with miRNA expression profiles of epidermal stem cells, transient amplifying cells, and terminally differentiated HKs from human skin. Apart from the previously described miR-203, we found an additional nine miRNAs (miR-23b, miR-95, miR-210, miR-224, miR-26a, miR-200a, miR-27b, miR-328, and miR-376a) that are associated with HK differentiation in vitro and in vivo. In situ hybridization experiments confirmed miR-23b as a marker of HK differentiation in vivo. Additionally, gene ontology analysis and functional validation of predicted miRNA targets using 3'-untranslated region-luciferase assays suggest that multiple miRNAs that are upregulated on HK differentiation cooperate to regulate gene expression during skin development. Our results thus provide the basis for further analysis of miRNA functions during epidermal differentiation."	"Relationship between the expression of hTERT and EYA4 mRNA in peripheral blood mononuclear cells with the progressive stages of carcinogenesis of the esophagus. To establish a relationship between esophageal squamous cell diseases and the expression of human telomerase reverse transcriptase (hTERT) and Eyes absent 4 (EYA4) mRNA in peripheral blood mononuclear cells. Subjects were 50 patients with esophageal squamous cell carcinoma (ESCC), 50 with dysplasia (ESCD), 50 with basal cell hyperplasia (BCH) and 50 controls. All subjects were residents of Feicheng County, Shandong Province, China , diagnosed by histopathology. Expression of hTERT and EYA4 mRNA in peripheral blood was determined by semiquantitative reverse transcription-polymerase chain reaction (RT-PCR). The hTERT and EYA4 mRNA positive expression increased according to disease severity. At the cut-off value of &gt; or = 0.2, the positive expression rates of EYA4 were 14% for controls, 20.0% for BCH, 26% for ESCD and 52% for ESCC, respectively. At the cut-off value of &gt; or = 0.8, the positive expression rates of hTERT in the four groups were 24%, 30.0%, 52% and 80%, respectively. Using a positive value of 0.47 for EYA4, the testing sensitivities in the ESCD and ESCC groups were 4% and 16%, respectively, and the testing specificity increased to 100%. Using a positive value of 1.0 for hTERT, the testing sensitivities in the ESCD and ESCC groups were 48% and 60%, respectively, and the testing specificity increased to 72%. The testing sensitivities in the predicting ESCD and ESCC in the discriminant model including EYA4 and hTERT and the five traditional risk factors (sex, age, smoking, alcohol drinking, and family history of esophageal cancer) were 70% and 80%, and testing specificities were 76% and 88% respectively. However, the testing sensitivities and specificities in the predicting ESCD and ESCC in the model only including the above five traditional risk factors were lower than that in the former case. EYA4 and hTERT mRNA expression increased with the severity of esophageal pathological changes and may be useful for identifying high-risk endoscopy candidates or for monitoring changes in premalignant esophageal lesions."	"Inhibition of Eyes Absent Homolog 4 expression induces malignant peripheral nerve sheath tumor necrosis. Malignant peripheral nerve sheath tumors (MPNSTs) are aggressive sarcomas without effective therapeutics. Bioinformatics was used to identify potential therapeutic targets. Paired Box (PAX), Eyes Absent (EYA), Dachsund (DACH) and Sine Oculis (SIX) genes, which form a regulatory interactive network in Drosophila, were found to be dysregulated in human MPNST cell lines and solid tumors. We identified a decrease in DACH1 expression, and increases in the expressions of PAX6, EYA1, EYA2, EYA4, and SIX1-4 genes. Consistent with the observation that half of MPNSTs develop in neurofibromatosis type 1 (NF1) patients, subsequent to NF1 mutation, we found that exogenous expression of the NF1-GTPase activating protein-related domain normalized DACH1 expression. EYA4 mRNA was elevated more than 100-fold as estimated by quantitative real-time PCR in most MPNST cell lines. In vitro, suppression of EYA4 expression using short hairpin RNA reduced cell adhesion and migration and caused cellular necrosis without affecting cell proliferation or apoptotic cell death. MPNST cells expressing shEYA4 either failed to form tumors in nude mice or formed very small tumors, with extensive necrosis but similar levels of proliferation and apoptosis as control cells. Our findings identify a role of EYA4 and possibly interacting SIX and DACH proteins in MPNSTs and suggest the EYA4 pathway as a rational therapeutic target."	"Innate immune cells cast an eye on DNA. The threonine phosphatase eyes absent (EYA) has been identified as a novel regulator of innate immune responses to cytosolic nucleic acids and undigested DNA from apoptotic cells. EYA regulates responses of yet unidentified DNA sensors and enhances interferon-beta and CXCL10 transcription."	"EYA4, deleted in a case with middle interhemispheric variant of holoprosencephaly, interacts with SIX3 both physically and functionally. Holoprosencephaly (HPE) is the most common congenital malformation of the developing human forebrain, in which the two cerebral hemispheres fail to separate to various degrees. Although pathological mutations have been identified in up to nine genes, a number of other genes as well as environmental factors are likely to be involved in HPE. Here, we describe a case with the middle interhemispheric variant, a milder variant of HPE, carrying a deletion of approximately 10.4 Mb at 6q22.31-q23.2, which includes the EYA4 gene. EYA4 is one of four vertebrate orthologs of the Drosophila melanogaster gene, eyes absent. EYA4 was co-immunoprecipitated with SIX3, the product of one of the known HPE genes. Moreover, the EYA4 protein was observed to be recruited to the nucleus by the nuclear protein SIX3 under a confocal microscope. EYA4 is a transcriptional coactivator, and was shown to cooperate with transcription factor SIX3 by reporter gene assays. These results demonstrate physical and functional association between EYA4 and SIX3, suggesting that EYA4 is a novel candidate gene of HPE, whose haploinsufficiency leads to HPE through the compromised function of SIX3."	"De novo 9 Mb deletion of 6q23.2q24.1 disrupting the gene EYA4 in a patient with sensorineural hearing loss, cardiac malformation, and mental retardation. We report on a patient carrying a de novo interstitial deletion of chromosomal region 6q23.2-24.1. Interstitial deletions of 6q are rarely reported in the literature. Indeed, only four patients with interstitial deletions overlapping partially with the deleted region in our patient are described in the literature. The aberration was detected by GTG-banding. The size of the deletion was further refined by array-CGH and subsequently fine mapped by quantitative real-time PCR. The exact size of the deletion and the sequence composition of the breakpoints were determined by breakpoint spanning PCR and subsequent sequencing. The patient presented with microcephaly, short stature, patent ductus arteriosus, sensorineural hearing loss, mental retardation, reduced speech development, and abnormal behaviour. The deletion disrupts the gene EYA4. Mutations within this gene are associated with postlingual sensorineural hearing loss. The sequencing of the breakpoint indicated non homologous end joining as the most likely mechanism leading to the rearrangement."	"Regulation of the innate immune response by threonine-phosphatase of Eyes absent. Innate immunity is stimulated not only by viral or bacterial components, but also by non-microbial danger signals (damage-associated molecular patterns). One of the damage-associated molecular patterns is chromosomal DNA that escapes degradation. In programmed cell death and erythropoiesis, DNA from dead cells or nuclei expelled from erythroblasts is digested by DNase II in the macrophages after they are engulfed. DNase II(-/-) (also known as Dnase2a(-/-)) mice suffer from severe anaemia or chronic arthritis due to interferon-beta (IFN-beta) and tumour necrosis factor-alpha (TNF-alpha) produced from the macrophages carrying undigested DNA in a Toll-like receptor (TLR)-independent mechanism. Here we show that Eyes absent 4 (EYA4), originally identified as a co-transcription factor, stimulates the expression of IFN-beta and CXCL10 in response to the undigested DNA of apoptotic cells. EYA4 enhanced the innate immune response against viruses (Newcastle disease virus and vesicular stomatitis virus), and could associate with signalling molecules (IPS-1 (also known as MAVS), STING (TMEM173) and NLRX1). Three groups have previously shown that EYA has phosphatase activity. We found that mouse EYA family members act as a phosphatase for both phosphotyrosine and phosphothreonine. The haloacid dehalogenase domain at the carboxy terminus contained the tyrosine-phosphatase, and the amino-terminal half carried the threonine-phosphatase. Mutations of the threonine-phosphatase, but not the tyrosine-phosphatase, abolished the ability of EYA4 to enhance the innate immune response, suggesting that EYA regulates the innate immune response by modulating the phosphorylation state of signal transducers for the intracellular pathogens."	"Eya4 regulation of Na+/K+-ATPase is required for sensory system development in zebrafish. To investigate the mechanisms by which mutations in the human transcriptional co-activator EYA4 gene cause sensorineural hearing loss that can occur in association with dilated cardiomyopathy, we studied eya4 expression during zebrafish development and characterized eya4 deficiency. eya4 morphant fish embryos had reduced numbers of hair cells in the otic vesicle and lateral line neuromasts with impaired sensory responses. Analyses of candidate genes that are known to be expressed in a temporal and spatial pattern comparable to eya4 focused our analyses on atp1b2b, which encodes the beta2b subunit of the zebrafish Na+/K+-ATPase. We demonstrate atp1b2b levels are reduced in eya4 morphant fish and that morpholino oligonucleotides targeting the atp1b2b gene recapitulated the eya4 deficiency phenotypes, including heart failure, decreased sensory hair cell numbers in the otic vesicle and neuromasts, and abnormal sensory responses. Furthermore, atp1b2b overexpression rescued these phenotypes in eya4 morphant fish. We conclude that eya4 regulation of Na+/K+-ATPase is crucial for the development of mechanosensory cells and the maintenance of cardiac function in zebrafish."	"Eya4-deficient mice are a model for heritable otitis media. Otitis media is an extremely common pediatric inflammation of the middle ear that often causes pain and diminishes hearing. Vulnerability to otitis media is due to eustachian tube dysfunction as well as other poorly understood factors, including genetic susceptibility. As EYA4 mutations cause sensorineural hearing loss in humans, we produced and characterized Eya4-deficient (Eya4(-/-)) mice, which had severe hearing deficits. In addition, all Eya4(-/-) mice developed otitis media with effusion. Anatomic studies revealed abnormal middle ear cavity and eustachian tube dysmorphology; thus, Eya4 regulation is critical for the development and function of these structures. We suggest that some human otitis media susceptibility reflects underlying genetic predisposition in genes like EYA4 that regulate middle ear and eustachian tube anatomy."	"Can you hear me now? A genetic model of otitis media with effusion. Otitis media with effusion (OME) is characterized by the occurrence of fluid in the middle-ear cavity in the absence of any signs of acute ear infection and occurs most frequently in children with auditory or eustachian tube dysfunction. Its chronic form is an important clinical issue for pediatricians and otologists alike. The study by Depreux et al. in this issue of the JCI shows that absence of the transcriptional activator Eya4 in knockout mice results in abnormal structuring of the eustachian tube, thus predisposing these animals to OME (see the related article beginning on page 651). The development of this genetics-based animal model is an important advance for understanding OME and for exploring new avenues of treatment."	"Genome-wide discovery of Pax7 target genes during development. Pax7 plays critical roles in development of brain, spinal cord, neural crest, and skeletal muscle. As a sequence-specific DNA-binding transcription factor, any direct functional role played by Pax7 during development is mediated through target gene selection. Thus, we have sought to identify genes targeted by Pax7 during embryonic development using an unbiased chromatin immunoprecipitation (ChIP) cloning assay to isolate cis-regulatory regions bound by Pax7 in vivo. Sequencing and genomic localization of a library of chromatin-DNA fragments bound by Pax7 has identified 34 candidate Pax7 target genes, with occupancy of a selection confirmed with independent chromatin enrichment tests (ChIP-PCR). To assess the capacity of Pax7 to regulate transcription from these loci, we have cloned alternate transcripts of Pax7 (differing significantly in their DNA binding domain) into expression vectors and transfected cultured cells with these constructs, then analyzed target gene expression levels using RT-PCR. We show that Pax7 directly occupies sites within genes encoding transcription factors Gbx1 and Eya4, the neurogenic cytokine receptor ciliary neurotrophic factor receptor, the neuronal potassium channel Kcnk2, and the signal transduction kinase Camk1d in vivo and regulates the transcriptional state of these genes in cultured cells. This analysis gives us greater insight into the direct functional role played by Pax7 during embryonic development."	"Mutations in cardiac T-box factor gene TBX20 are associated with diverse cardiac pathologies, including defects of septation and valvulogenesis and cardiomyopathy. The T-box family transcription factor gene TBX20 acts in a conserved regulatory network, guiding heart formation and patterning in diverse species. Mouse Tbx20 is expressed in cardiac progenitor cells, differentiating cardiomyocytes, and developing valvular tissue, and its deletion or RNA interference-mediated knockdown is catastrophic for heart development. TBX20 interacts physically, functionally, and genetically with other cardiac transcription factors, including NKX2-5, GATA4, and TBX5, mutations of which cause congenital heart disease (CHD). Here, we report nonsense (Q195X) and missense (I152M) germline mutations within the T-box DNA-binding domain of human TBX20 that were associated with a family history of CHD and a complex spectrum of developmental anomalies, including defects in septation, chamber growth, and valvulogenesis. Biophysical characterization of wild-type and mutant proteins indicated how the missense mutation disrupts the structure and function of the TBX20 T-box. Dilated cardiomyopathy was a feature of the TBX20 mutant phenotype in humans and mice, suggesting that mutations in developmental transcription factors can provide a sensitized template for adult-onset heart disease. Our findings are the first to link TBX20 mutations to human pathology. They provide insights into how mutation of different genes in an interactive regulatory circuit lead to diverse clinical phenotypes, with implications for diagnosis, genetic screening, and patient follow-up."	"A novel splice site mutation in EYA4 causes DFNA10 hearing loss. Nonsyndromic autosomal dominant sensorineural hearing loss (SNHL) at the DFNA10 locus was described in two families in 2001. Causative mutations that affect the EyaHR domain of the 'Eyes absent 4' (EYA4) protein were identified. We report on the clinical and genetic analyses of an Australian family with nonsyndromic SNHL. Screening of the EYA4 gene showed the novel polypyrimidine tract variation ca. 1,282-12T &gt; A that introduces a new 3' splice acceptor site. This is the first report of a point mutation in EYA4 that is hypothesized to lead to aberrant pre-mRNA splicing and human disease. The DFNA10 family described is only the fourth to be identified. One individual presented with apparently the same phenotype as other affected members of the family. However, genotyping illustrated that he did not share the DFNA10 disease haplotype. Detailed clinical investigation showed differences in the onset and severity of his hearing loss and thus he is presumed to represent a phenocopy, perhaps resulting from long-term exposure to loud noise."	"Nonsyndromic hearing loss DFNA10 and a novel mutation of EYA4: evidence for correlation of normal cardiac phenotype with truncating mutations of the Eya domain. Dominant, truncating mutations of eyes absent 4 (EYA4) on chromosome 6q23 can cause either nonsyndromic hearing loss DFNA10 or hearing loss with dilated cardiomyopathy (DCM). It has been proposed that truncations of the C-terminal Eya domain cause DFNA10 whereas upstream truncations of the N-terminal variable region cause hearing loss with DCM. Here we report an extended family co-segregating autosomal dominant, postlingual-onset, progressive, sensorineural hearing loss (SNHL) with a novel frameshift mutation, 1,490insAA, of EYA4. The 1,490insAA allele is predicted to encode a truncated protein with an intact N-terminal variable region, but lacking the entire C-terminal Eya domain. Clinical studies including electrocardiography, echocardiography, and magnetic resonance imaging (MRI) of the heart in nine affected family members revealed no DCM or associated abnormalities and confirmed their nonsyndromic phenotype. These are the first definitive cardiac evaluations of DFNA10 hearing loss to support a correlation of EYA4 mutation position with the presence or absence of DCM. These results will facilitate the counseling of patients with these phenotypes and EYA4 mutations."	"A molecular analysis of neurogenic placode and cranial sensory ganglion development in the shark, Scyliorhinus canicula. In order to gain insight into the evolution of the genetic control of the development of cranial neurogenic placodes and cranial sensory ganglia in vertebrates, we cloned and analysed the spatiotemporal expression pattern of six transcription factor genes in a chondrichthyan, the shark Scyliorhinus canicula (lesser-spotted dogfish/catshark). As in other vertebrates, NeuroD is expressed in all cranial sensory ganglia. We show that Pax3 is expressed in the profundal placode and ganglion, strongly supporting homology between the separate profundal ganglion of elasmobranchs and basal actinopterygians and the ophthalmic trigeminal placode-derived neurons of the fused amniote trigeminal ganglion. We show that Pax2 is a conserved pan-gnathostome marker for epibranchial and otic placodes, and confirm that Phox2b is a conserved pan-gnathostome marker for epibranchial placode-derived neurons. We identify Eya4 as a novel marker for the lateral line system throughout its development, expressed in lateral line placodes, sensory ridges and migrating primordia, neuromasts and electroreceptors. We also identify Tbx3 as a specific marker for lateral line ganglia in shark embryos. We use the spatiotemporal expression pattern of these genes to characterise the development of neurogenic placodes and cranial sensory ganglia in the dogfish, with a focus on the epibranchial and lateral line placodes. Our findings demonstrate the evolutionary conservation across all gnathostomes of at least some of the transcription factor networks underlying neurogenic placode development."	"Eya1 and Eya2 proteins are required for hypaxial somitic myogenesis in the mouse embryo. In mammals, Pax3, Six4, Six1 and Six5 genes are co-expressed with Eya1, Eya2 and Eya4 genes during mouse somitogenesis. To unravel the functions of Eya genes during muscle development, we analyzed myogenesis in Eya2-/- and in Eya1-/- embryos. A delay in limb myogenesis was observed between E10 and E13 in Eya1-/- embryos only, that is later compensated. Compound E18 Eya1-/-Eya2-/+ fetuses present a muscle phenotype comparable with that of Six1-/- fetuses; lacking a diaphragm and with a specific absence of limb muscles, suggesting either genetic epistasis between Six and Eya genes, or biochemical interactions between Six and Eya proteins. We tested these two non-exclusive possibilities. First, we show that Six proteins recruit Eya proteins to drive transcription during embryogenesis in the dermomyotomal epaxial and hypaxial lips of the somites by binding MEF3 DNA sites. Second, we show that Pax3 expression is lost in the ventrolateral (hypaxial) dermomyotomes of the somite in both Eya1-/-Eya2-/- embryos and in Six1-/-Six4-/- embryos, precluding hypaxial lip formation. This structure, from which myogenic cells delaminate to invade the limb does not form in these double mutant embryos, leading to limb buds without myogenic progenitor cells. Eya1 and Eya2, however, are still expressed in the somites of Six1Six4 double mutant and in splotch embryos, and Six1 is expressed in the somites of Eya1Eya2 double mutant embryos and in splotch embryos. Altogether these results show that Six and Eya genes lie genetically upstream of Pax3 gene in the formation of ventrolateral dermomyotome hypaxial lips. No genetic links have been characterized between Six and Eya genes, but corresponding proteins activate key muscle determination genes (Myod, Myogenin and Mrf4). These results establish a new hierarchy of genes controlling early steps of hypaxial myogenic commitment in the mouse embryo."	"Eya1 regulates the growth of otic epithelium and interacts with Pax2 during the development of all sensory areas in the inner ear. Members of the Eyes absent (Eya) gene family are important for auditory system development. While mutations in human EYA4 cause late-onset deafness at the DFNA10 locus, mutations in human EYA1 cause branchio-oto-renal (BOR) syndrome. Inactivation of Eya1 in mice causes an early arrest of the inner ear development at the otocyst stage. To better understand the role of Eya1 in inner ear development, we analyzed the cellular and molecular basis of the early defect observed in the Eya1 mutant embryos. We report here that Eya1-/- otic epithelium shows reduced cell proliferation from E8.5 and increased cell apoptosis from E9.0, thus providing insights into the cellular basis of inner ear defect which occurred in the absence of Eya1. Previous studies have suggested that Pax, Eya and Six genes function in a parallel or independent pathway during inner ear development. However, it remains unknown whether Pax genes interact with Eya1 or Six1 during inner ear morphogenesis. To further evaluate whether Pax genes function in the Eya1-Six1 pathway or whether they interact with Eya1 or Six1 during inner ear morphogenesis, we have analyzed the expression pattern of Eya1, Pax2 and Pax8 on adjacent sections of otic epithelium from E8.5 to 9.5 by in situ hybridization and the inner ear gross structures of Pax2, Eya1 and Six1 compound mutants at E17.5 by latex paintfilling. Our data strongly suggest that Pax2 interacts with Eya1 during inner ear morphogenesis, and this interaction is critical for the development of all sensory areas in the inner ear. Furthermore, otic marker analysis in both Eya1-/- and Pax2-/- embryos indicates that Eya1 but not Pax2 regulates the establishment of regional specification of the otic vesicle. Together, these results show that, while Eya1 exerts an early function essential for normal growth and patterning of the otic epithelium, it also functionally synergizes with Pax2 during the morphogenesis of all sensory areas of mammalian inner ear."	"Novel method for high throughput DNA methylation marker evaluation using PNA-probe library hybridization and MALDI-TOF detection. The methylation of CpG dinucleotides has become a topic of great interest in cancer research, and the methylation of promoter regions of several tumor suppressor genes has been identified as a marker of tumorigenesis. Evaluation of DNA methylation markers in tumor tissue requires hundreds of samples, which must be analyzed quantitatively due to the heterogeneous composition of biological material. Therefore novel, fast and inexpensive methods for high throughput analysis are needed. Here we introduce a new assay based on peptide nucleic acid (PNA)-library hybridization and subsequent MALDI-TOF analysis. This method is multiplexable, allows the use of standard 384 well automated pipetting, and is more specific and flexible than established methods, such as microarrays and MS-SNuPE. The approach was used to evaluate three candidate colon cancer methylation markers previously identified in a microarray study. The methylation of the genes Ade-nomatous polyposis coli (APC), glycogen synthase kinase-beta-3 (GSK3beta) and eyes absent 4 (EYA4) was analyzed in 12 colon cancer and 12 normal tissues. APC and EYA4 were confirmed as being differentially methylated in colon cancer patients whereas GSK3beta did not show differential methylation."	"Aberrant methylation of the eyes absent 4 gene in ulcerative colitis-associated dysplasia. This study explored the eyes absent 4 (EYA4) gene promoter methylation in noncolitic colorectal tissues and assessed its discrimination for neoplasia in chronic ulcerative colitis (CUC). The methylation status of noncolitic specimens was confirmed by direct bisulfite sequencing. Methylation-specific polymerase chain reaction (MSP) primers were designed to evaluate colorectal tissues, including 50 noncolitic patients comprising 24 normal epithelia, 14 polyps, and 12 cancers. The assay was tested on tissues from 67 CUC patients including 31 surveillance neoplasia-positive patients and nonneoplastic controls including 22 CUC surveillance-negative and 14 CUC short-disease duration. Remote colonic tissue was included from each of 27 of the 31 CUC neoplasia cases. The expression of EYA4 was quantified in cell lines by use of reverse-transcription polymerase chain reaction. Within noncolitic tissues, bisulfite sequencing showed EYA4 promoter hypermethylation in 80% (8 of 10) of colorectal cancers but in none (0 of 9) of the normal tissues. MSP was positive in 81% (21 of 26) of cancers and polyps and in only 4% (1 of 14) of normal mucosa. In CUC, MSP was positive in 81% (25 of 31) of neoplastic cases but in none (0 of 36) of the nonneoplastic controls. RNA expression was decreased in methylated compared with unmethylated cell lines (P &lt; .001). Treatment with 5-Aza-2'-deoxycytidine (DAC)/Trichostatin (TSA) increased the overall messenger RNA expression (P = .005). The EYA4 gene promoter is hypermethylated commonly in sporadic and colitic neoplasia and may be associated with gene silencing. EYA4 methylation represents a candidate marker for CUC surveillance."	"Frequent methylation of eyes absent 4 gene in Barrett's esophagus and esophageal adenocarcinoma. Most esophageal adenocarcinomas arise within Barrett's esophagus but the cause of this increasingly prevalent condition remains unknown. Early detection improves survival and discriminant screening markers for Barrett's esophagus and cancer are needed. This study was designed to explore the natural history of eyes absent 4 (EYA4) gene methylation in the neoplastic progression of Barrett's esophagus and to evaluate methylated EYA4 as a candidate marker. Aberrant promoter methylation of EYA4 was studied by methylation-specific PCR using bisulfite-treated DNA from esophageal adenocarcinomas, Barrett's esophagus, and normal epithelia, and then confirmed by sequencing. Eight cancer cell lines were treated with the demethylation agent 5-aza-2'-deoxycytidine, and EYA4 mRNA expression with and without treatment was quantified by real-time reverse-transcription PCR. EYA4 hypermethylation was detected in 83% (33 of 40) of esophageal adenocarcinomas and 77% (27 of 35) of Barrett's tissues, but only in 3% (2 of 58) of normal esophageal and gastric mucosa samples (P &lt; 0.001). The unmethylated cancer cell lines had much higher EYA4 mRNA expression than the methylated cancer cell lines. Demethylation caused by 5-aza-2'-deoxycytidine increased the mRNA expression level by a median of 3.2-fold in methylated cells, but its effect on unmethylated cells was negligible. Results indicate that aberrant promoter methylation of EYA4 is very common during tumorigenesis in Barrett's esophagus, occurs in early metaplasia, seems to be an important mechanism of down-regulating EYA4 expression, and represents an intriguing candidate marker for Barrett's metaplasia and esophageal cancer."	"Mutation in the transcriptional coactivator EYA4 causes dilated cardiomyopathy and sensorineural hearing loss. We identified a human mutation that causes dilated cardiomyopathy and heart failure preceded by sensorineural hearing loss (SNHL). Unlike previously described mutations causing dilated cardiomyopathy that affect structural proteins, this mutation deletes 4,846 bp of the human transcriptional coactivator gene EYA4. To elucidate the roles of eya4 in heart function, we studied zebrafish embryos injected with antisense morpholino oligonucleotides. Attenuated eya4 transcript levels produced morphologic and hemodynamic features of heart failure. To determine why previously described mutated EYA4 alleles cause SNHL without heart disease, we examined biochemical interactions of mutant Eya4 peptides. Eya4 peptides associated with SNHL, but not the shortened 193-amino acid peptide associated with dilated cardiomyopathy and SNHL, bound wild-type Eya4 and associated with Six proteins. These data define unrecognized and crucial roles for Eya4-Six-mediated transcriptional regulation in normal heart function."	"RT-PCR analysis of Tecta, Coch, Eya4 and Strc in mouse cochlear explants. Tecta, Coch, Eya4 and Strc are mouse orthologs of four human deafness-associated genes. Their expression is markedly restricted to specific cell types in cochleae. Cochleae were dissected on embryonic day 15 and cultured in vitro. Relative messenger RNA abundance of each gene was quantified by RT-PCR and compared in-vivo cochleae of equivalent embryonic age. After 48 h in culture, in-vivo and explant Strc expression levels were equivalent, Eya4 level reduced in explanted tissues, and expression of Tecta and Coch did not show the expected temporal rise. Expression of these genes was detectable even after 96 h. These results suggest that it is feasible to test the expression of inner ear specific genes in explanted cochleae."	"The zebrafish dog-eared mutation disrupts eya1, a gene required for cell survival and differentiation in the inner ear and lateral line. To understand the molecular basis of sensory organ development and disease, we have cloned and characterized the zebrafish mutation dog-eared (dog) that is defective in formation of the inner ear and lateral line sensory systems. The dog locus encodes the eyes absent-1 (eya1) gene and single point mutations were found in three independent dog alleles, each prematurely truncating the expressed protein within the Eya domain. Moreover, morpholino-mediated knockdown of eya1 gene function phenocopies the dog-eared mutation. In zebrafish, the eya1 gene is widely expressed in placode-derived sensory organs during embryogenesis but Eya1 function appears to be primarily required for survival of sensory hair cells in the developing ear and lateral line neuromasts. Increased levels of apoptosis occur in the migrating primordia of the posterior lateral line in dog embryos and as well as in regions of the developing otocyst that are mainly fated to give rise to sensory cells of the cristae. Importantly, mutation of the EYA1 or EYA4 gene causes hereditary syndromic deafness in humans. Determination of eya gene function during zebrafish organogenesis will facilitate understanding the molecular etiology of human vestibular and hearing disorders."	"A comparative study of Eya1 and Eya4 protein function and its implication in branchio-oto-renal syndrome and DFNA10. Allele variants of EYA1 and EYA4, two members of the vertebrate Eya gene family, underlie two types of inherited human deafness, branchio-oto-renal (BOR) syndrome and DFNA10, respectively. To clarify how mutations in these two genes and their encoded proteins impact the normal biology of hearing, we completed a number of functional studies using the yeast-two-hybrid system. We verified that bait constructs of the homologous region ( Eya1HR and Eya4HR) interact with Six1 prey constructs, although no interaction with Dach1 prey was demonstrable. To compare interaction affinities, we evaluated alpha-galactosidase activity after cotransformation of Eya1HR/Six1 and Eya4HR/Six1 and found that the latter interaction was weaker. By immunofluorescence staining, we showed Eya4HR localization to the cytoplasm. After coexpression of Six1, Eya4HR was translocated to the nucleus. Results with Eya1HR were similar. Translation of mutant constructs ( Eya4HR(R564X) and Eya1HR(R539X)) could not be demonstrated. Using dual Eya-containing constructs (with two wild-type alleles or wild-type and mutant alleles), we confirmed no translation of the mutant allele, even if the mutation was nontruncating. These results are consistent with clinical data and implicate haploinsufficiency as the cause of BOR syndrome and DFNA10."	"A 4-bp insertion in the eya-homologous region (eyaHR) of EYA4 causes hearing impairment in a Hungarian family linked to DFNA10. Hereditary hearing impairment (HHI) is a heterogeneous class of disorders that shows various patterns of inheritance and involves a multitude of different genes. Mutations in the EYA4 gene are responsible for postlingual, progressive, autosomal dominant hearing loss at the DFNA10 locus. EYA4 is orthologous to the Drosophila gene eya (&quot;eyes absent&quot;), a key regulator of eye formation. EYA4 plays an important role in several developmental processes. Here we report a Hungarian family displaying sensorineural, progressive hearing impairment. The family comprising four generations with 11 affected and 8 unaffected members was subjected to genome-wide linkage analysis and candidate gene sequencing. By linkage analysis, the chromosomal region 6q22.3 was shown to segregate with the disease. Mutation analysis of the EYA4 gene, which maps to 6q22.3, revealed an insertion of 4 bp (1558insTTTG) in all affected family members. This insertion creates a frameshift and results in a stop codon at position 379. Hence, nearly the complete &quot;eya homologous region&quot; (eyaHR), which is essential for the protein function, would be deleted in the mutant EYA4 protein if the transcription were found to be stable. This family is the third one linked to DFNA10 and revealing a mutation in the EYA4 gene. In all three families, the mutations are localized in different regions of the eyaHR, suggesting that this protein contains several functional subregions with different tissue-specific importance."	"DFNA10/EYA4--the clinical picture. NA"	"Non-syndromic autosomal-dominant deafness. Non-syndromic deafness is a paradigm of genetic heterogeneity. More than 70 loci have been mapped, and 25 of the nuclear genes responsible for non-syndromic deafness have been identified. Autosomal-dominant genes are responsible for about 20% of the cases of hereditary non-syndromic deafness, with 16 different genes identified to date. In the present article we review these 16 genes, their function and their contribution to deafness in different populations. The complexity is underlined by the fact that several of the genes are involved in both dominant and recessive non-syndromic deafness or in both non-syndromic and syndromic deafness. Mutations in eight of the genes have so far been detected in only single dominant deafness families, and their contribution to deafness on a population base might therefore be limited, or is currently unknown. Identification of all genes involved in hereditary hearing loss will help in the understanding of the basic mechanisms underlying normal hearing, will facilitate early diagnosis and intervention and might offer opportunities for rational therapy."	"Mutations in the transcriptional activator EYA4 cause late-onset deafness at the DFNA10 locus. We identified Eyes absent 4 (EYA4), a member of the vertebrate Eya family of transcriptional activators, as the causative gene of postlingual, progressive, autosomal dominant hearing loss at the DFNA10 locus. In two unrelated families from Belgium and the USA segregating for deafness at this locus, we found different mutations in EYA4, both of which create premature stop codons. Although EYA proteins interact with members of the SIX and DACH protein families in a conserved network that regulates early embryonic development, this finding shows that EYA4 is also important post-developmentally for continued function of the mature organ of Corti."	"EYA4, a novel vertebrate gene related to Drosophila eyes absent. We have isolated a family of four vertebrate genes homologous to eyes absent (eya), a key regulator of ocular development in Drosophila. Here we present the detailed characterization of the EYA4 gene in human and mouse. EYA4 encodes a 640 amino acid protein containing a highly conserved C-terminal domain of 271 amino acids which in Drosophila eya is known to mediate developmentally important protein-protein interactions. Human EYA4 maps to 6q23 and mouse Eya4 maps to the predicted homology region near the centromere of chromosome 10. In the developing mouse embryo, Eya4 is expressed primarily in the craniofacial mesenchyme, the dermamyotome and the limb. On the basis of map position and expression pattern, EYA4 is a candidate for oculo-dento-digital (ODD) syndrome, but no EYA4 mutations were found in a panel of ODD patients."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRHL2"	"nonsyndromic genetic deafness"	"Epigenetic feedback and stochastic partitioning during cell division can drive resistance to EMT. Epithelial-mesenchymal transition (EMT) and its reverse process mesenchymal-epithelial transition (MET) are central to metastatic aggressiveness and therapy resistance in solid tumors. While molecular determinants of both processes have been extensively characterized, the heterogeneity in the response of tumor cells to EMT and MET inducers has come into focus recently, and has been implicated in the failure of anti-cancer therapies. Recent experimental studies have shown that some cells can undergo an irreversible EMT depending on the duration of exposure to EMT-inducing signals. While the irreversibility of MET, or equivalently, resistance to EMT, has not been studied in as much detail, evidence supporting such behavior is slowly emerging. Here, we identify two possible mechanisms that can underlie resistance of cells to undergo EMT: epigenetic feedback in ZEB1/GRHL2 feedback loop and stochastic partitioning of biomolecules during cell division. Identifying the ZEB1/GRHL2 axis as a key determinant of epithelial-mesenchymal plasticity across many cancer types, we use mechanistic mathematical models to show how GRHL2 can be involved in both the abovementioned processes, thus driving an irreversible MET. Our study highlights how an isogenic population may contain subpopulation with varying degrees of susceptibility or resistance to EMT, and proposes a next set of questions for detailed experimental studies characterizing the irreversibility of MET/resistance to EMT."	"M2 macrophage-derived extracellular vesicles promote gastric cancer progression via a microRNA-130b-3p/MLL3/GRHL2 signaling cascade. Transfer of noncoding microRNAs (miRNAs) by extracellular vesicles (EVs) promotes the development of chemoresistance in many tumor types. Additionally, restoration or depletion of several miRNAs has been observed in multiple cancer types including gastric cancer (GC). In this present study, we aimed to investigate the mechanism of miR-130b-3p in M2 macrophage-derived EVs in the development of GC through regulation of mixed lineage leukemia 3 (MLL3) and grainyhead-like 2 (GRHL2). Expression of miR-130b-3p and GRHL2 was quantified in 63 pairs of cancerous and noncancerous gastric tissues. The predicted binding between miR-130b-3p and MLL3, together with the enrichment of MLL3, H3K4me1, and H3K27ac in gene enhancer region, was verified by luciferase activity assay and chromatin immunoprecipitation. Effects of miR-130b-3p on GC cell proliferation, apoptosis, migration and invasion, as well as tube formation of human umbilical endothelial vein cells (HUEVCs) were further determined by gain- and loss-of function assays in vitro. miR-130b-3p was upregulated in GC tissues, and miR-130b-3p promoted survival, metastasis and angiogenesis of GC cells as well as enhanced tumor formation and angiogenesis in GC in vivo. Additionally, miR-130b-3p delivered in M2 macrophage-derived EVs promoted survival, migration, invasion, and angiogenesis of GC cells. Notably, MLL3 inhibited GC cell proliferation, migration, invasion, and vessel-like tube formation of HUEVCs by increasing GRHL2. Furthermore, downregulation of miR-130b-3p in M2 macrophage-derived EVs or upregulation of GRHL2 inhibited tumor formation and angiogenesis in GC. This study highlights that EVs loaded with the specific miRNA cargo miR-130b-3p mediate communication between M2 macrophages and cancer cells in the tumor microenvironment through the modulation of MLL3 and GRHL2 in GC."	"Gene Fusion Characterization of Rare Aggressive Prostate Cancer Variants - Adenosquamous Carcinoma, Pleomorphic Giant Cell Carcinoma, and Sarcomatoid Carcinoma: An Analysis of 19 Cases. We evaluated the molecular underpinnings of rare aggressive prostate cancer variants adenosquamous, pleomorphic giant cell, and sarcomatoid carcinomas. We retrieved 19 tumors with one or more variant(s) and performed ERG immunohistochemistry, a next-generation sequencing assay targeting recurrent gene fusions, and fluorescence in situ hybridization (FISH) for ERG and BRAF. Divergent differentiation included: sarcomatoid (n=10), adenosquamous (n=7), and pleomorphic giant cell carcinoma (n=7). Five patients had more than one variant. Four had variants only in metastases. ERG rearrangement was detected in 9 (47%, 7 via sequencing, showing TMPRSS2-ERG and one GRHL2-ERG fusion, and 2 via FISH, showing rearrangement via deletion). Of these, ERG immunohistochemistry was positive in the adenocarcinoma for 8/9 (89%) but only 5/9 (56%, typically decreased) in the variant. One patient had false-positive ERG immunohistochemistry in the sarcomatoid component despite negative FISH. Two (11%) harbored BRAF fusions (FAM131A-BRAF and SND1-BRAF). ERG gene fusions are present in these rare prostate cancer variants with a close frequency to conventional prostate cancer (9/19, 47%). ERG immunohistochemistry usually detects rearrangement in the adenocarcinoma but is less sensitive for the variant histology with weak to negative staining. Adenosquamous and sarcomatoid variants particularly can occur together. Molecular assessment may be an additional tool in select cases to confirm prostatic origin of unusual tumors. The presence of 2 BRAF gene rearrangements suggests that this gene fusion may be enriched in this setting, as RAF kinase fusions have been previously reported in 1-2% of prostate cancers."	"GRHL2 Upregulation Predicts a Poor Prognosis and Promotes the Resistance of Serous Ovarian Cancer to Cisplatin. GRHL2 has been shown to function in ovarian carcinogenesis. However, the relationship between GRHL2 and cisplatin (DDP) resistance in serous ovarian cancer (SOC) is not clear. The purpose of this study was to elucidate the function and mechanism of GRHL2 in DDP resistance of SOC. Immunohistochemistry (IHC) was utilized to identify GRHL2 protein expression in DDP resistant and sensitive SOC tissues. GRHL2 mRNA and protein levels were identified using quantitative real-time PCR (qRT-PCR) and Western blotting in SKOV3/DDP and SKOV3 cell lines. We conducted loss- and gain-of-function experiments to uncover the consequence of GRHL2 knockdown or overexpression on the sensitivity of ovarian cancer cells to DDP in vitro and in vivo and the underlying mechanism. It was observed that expression of GRHL2 was higher in DDP resistant SOC tissues relative to DDP sensitive SOC tissues. In addition, the increased expression of GRHL2 led to shorter progression-free survival (PFS) and overall survival (OS). Meanwhile, the GRHL2 transcript and protein levels in SKOV3/DDP were also higher than SKOV3. Small hairpin RNA (shRNA)-facilitated GRHL2 gene knockdown considerably heightened the sensitivity of SKOV3/DDP cells to DDP by inhibiting proliferation and promoting apoptosis, while up-regulation of GRHL2 significantly reduced the sensitivity of SKOV3 cells to DDP by promoting proliferation and decreasing apoptosis. In addition, GRHL2 promotes DDP resistance of SOC through activation of ERK/MAPK signaling pathways. Our results suggest that GRHL2 up-regulation predicts a poor prognosis and promotes the resistance of SOC to DDP. Therefore, GRHL2 may be a possible treatment target for cisplatin-resistant serous ovarian cancer."	"Clinical and genetic evaluation of six children with diffuse capillary malformation and undergrowth. Diffuse capillary malformation with overgrowth (DCMO) has been well described. However, capillary malformation with undergrowth (CMU) has been less reported in the literature. We sought to describe the clinical features and determine associated somatic mutations in patients with CMU. We searched our multidisciplinary vascular anomalies clinic database for patients with CMU. Girth and length limb measurements were performed. In case of discrepancies in length, long leg radiograph studies were obtained. Whole-exome sequencing of blood and involved tissue DNA was carried out. We included six patients with CM and soft-tissue and bone undergrowth. CMs were patchy, reticulated, segmental, poorly demarcated, pink-red stains affecting the lower limb (five patients) or the whole hemibody (one patient). In five patients, the stain was diffuse, affecting more than one anatomic region. Prominent superficial veins were observed in three patients. Five patients presented with lower limb girth discrepancy; in three of them, there was also lower limb length discrepancy. In the remaining patient, only lower limb length discrepancy was found. Whole-exome sequencing from DNA tissue/blood detected previously described pathogenic somatic mutations on DDR2 (c.314G &gt; A; p.Arg105His), GRHL2 (c.791A &gt; G; p.Glu264Gly), and PIK3CA (c.2740G &gt; A; p.Gly914Arg) genes. We propose the term &quot;diffuse capillary malformation with undergrowth&quot; for extensive reticular CMs associated with proportionate undergrowth. All our patients had a favorable outcome, and no genotype-phenotype association was found."	"Estrogen induces dynamic ERα and RING1B recruitment to control gene and enhancer activities in luminal breast cancer. RING1B, a core Polycomb repressive complex 1 subunit, is a histone H2A ubiquitin ligase essential for development. RING1B is overexpressed in patients with luminal breast cancer (BC) and recruited to actively transcribed genes and enhancers co-occupied by the estrogen receptor α (ERα). Whether ERα-induced transcriptional programs are mediated by RING1B is not understood. We show that prolonged estrogen administration induces transcriptional output and chromatin landscape fluctuations. RING1B loss impairs full estrogen-mediated gene expression and chromatin accessibility for key BC transcription factors. These effects were mediated, in part, by RING1B enzymatic activity and nucleosome binding functions. RING1B is recruited in a cyclic manner to ERα, FOXA1, and GRHL2 cobound sites and regulates estrogen-induced enhancers and ERα recruitment. Last, ChIP exo revealed multiple binding events of these factors at single-nucleotide resolution, including RING1B occupancy approximately 10 base pairs around ERα bound sites. We propose RING1B as a key regulator of the dynamic, liganded-ERα transcriptional regulatory circuit in luminal BC."	"SNAI1-Driven Sequential EMT Changes Attributed by Selective Chromatin Enrichment of RAD21 and GRHL2. Over two decades of research on cancer-associated epithelial-mesenchymal transition (EMT) led us to ascertain the occurrence of transitional intermediate states (collectively referred to as the EMT spectrum). Among the molecular factors that drive EMT, SNAI1 plays an indispensable role in regulating other core transcription factors, and this regulation is highly context-dependent. However, molecular investigation on this context-dependent regulation is still lacking. Using two ovarian cancer cell lines, we show that SNAI1 regulation on other core EMT-TFs switches from a repressive control in highly epithelial cells to an activation signaling in intermediate epithelial cells. Upon further scrutiny, we identify that the expression of early epithelial genes PERP and ERBB3 are differentially regulated in SNAI1-induced sequential EMT changes. Mechanistically, we show that changes in PERP and ERBB3 transcript levels could be correlated to the selective enrichment loss of RAD21, a cohesin component, at the distal enhancer sites of PERP and ERBB3, which precedes that of the proximal promoter-associated sites. Furthermore, the RAD21 enrichment at the distal enhancer sites is dependent on GRHL2 expression. In a nutshell, the alteration of GRHL2-associated RAD21 enrichment in epithelial genes is crucial to redefine the transition of cellular states along the EMT spectrum."	"Grainyhead-Like Genes Family May Act as Novel Biomarkers in Colon Cancer. The Grainyhead-like (GRHL) genes family were reported to participate in the development of a number of diseases. This study was designed to investigate the role of GRHL genes family in colon cancer (CC). In this study, the transcriptional levels of GRHL genes family in patients with CC from GEPIA were explored. Meanwhile, the immunohistochemical data of the GRHL genes family were also obtained in the HPA database. Additionally, we re-identified the mRNA of these genes via real-time PCR. Furthermore, the association between the levels of GRHL genes and stage plot as well as survival condition including overall survival and disease-free survival of patients with CC was analyzed. Finally, by transfecting with specific-siRNA, clone formation assay was performed to observe the role of GRHL genes family in the proliferation of SW480 human colon cancer cells. We found that the mRNA and protein levels of GRHL1, GRHL2 and GRHL3 were significantly higher in CC tissues than in normal colon tissues. Additionally, GRHL1, GRHL2 and GRHL3 were significantly associated with the stages of CC. The Kaplan-Meier plotter showed that the low levels of GRHL1, GRHL2 and GRHL3 conferred a better overall survival of patients with CC while the high levels of GRHL1 and GRHL3 were associated with poor disease-free survival. Knockdown of GRHL1, GRHL2 and GRHL3 siHgnificantly inhibited the ability of colony formation of human colon cancer cells. Our study demonstrated that GRHL genes are involved in the prognosis and survival in patients with CC, the inhibition of which may suppress the proliferation of colon cancer cells."	"GRHL2 induces liver fibrosis and intestinal mucosal barrier dysfunction in non-alcoholic fatty liver disease via microRNA-200 and the MAPK pathway. Non-alcoholic fatty liver disease (NAFLD) serves as the most common subtype of liver diseases and cause of liver dysfunction, which is closely related to obesity and insulin resistance. In our study, we sought to investigate effect of transcription factor grainyhead-like 2 (GRHL2) on NAFLD and the relevant mechanism. NAFLD mouse model was established with a high-fat feed. Then, serum was extracted from NAFLD patients and mice, followed by ectopic expression and depletion experiments in NAFLD mice and L02 cells. Next, the correlation between GRHL2 and microRNA (miR)-200 and between miR-200 and sirtuin-1 (SIRT1) was evaluated. The observations demonstrated that miR-200 and GRHL2 were overexpressed in the serum of NAFLD patients and mice, while SIRT1 was poorly expressed. GRHL2 positively regulated miR-200 by binding to miR-200 promoter region, which negatively targeted SIRT1. The inhibition of miR-200 and GRHL2 or SIRT1 overexpression lowered HA and LN in mouse liver tissue, occludin and ZO-1 in mouse small intestine tissue, TNF-α and IL-6 in mouse serum, glucose, total cholesterol (TC), triglyceride (TG), aspartate aminotransferase (AST) and alanine aminotransferase (ALT) in mouse serum, and also inhibited liver fibrosis and intestinal mucosal barrier dysfunction. Meanwhile, GRHL2 induced activation of MAPK signalling pathway in NAFLD mice. Collectively, GRHL2 played a contributory role in NAFLD by exacerbating liver fibrosis and intestinal mucosal barrier dysfunction with the involvement of miR-200-dependent SIRT1 and the MAPK signalling pathway."	"GRHL2 Acts as an Anti-Oncogene in Bladder Cancer by Regulating ZEB1 in Epithelial-Mesenchymal Transition (EMT) Process. GRHL2 played important roles in different cancers. In this study, we aimed to investigate the roles of GRHL2 in bladder cancer. The immunohistochemistry assay was performed to detect the expression of GRHL2 in bladder cancer tissues and adjacent noncancerous tissues and the expression levels of GRHL2 and zinc finger E-box binding homeobox (ZEB1) mRNA in tissues were determined by qRT-PCR. In addition, qRT-PCR and Western blotting were applied to detect the expression levels of GRHL2 and ZEB1 in bladder cancer cell lines (RT4, BIU-87, 5637, T24) and immortalized human bladder epithelial cell line (SV-HUC-1). The cell models with up-regulated and down-regulated expression of GRHL2 were constructed using bladder cancer cell lines T24 and 5637 to investigate the underlying roles of GRHL2 on the proliferation, migration, invasion and EMT process of bladder cancer cells. After that, cell proliferation was evaluated by CCK8 assay, cell cycle assay and colony formation assay. Transwell assay and wound healing assay were performed to determine the invasion and migration ability of the bladder cancer cells. The expressions of epithelial-mesenchymal transition (EMT) related proteins (E-cadherin, Vimentin, Slug and Snail) were assessed by Western blot analysis. Moreover, ZEB1 and GRHL2 were co-transfected into T24 and 5637 cells and their effects on EMT process and invasive capacity of cells were examined. The expression of GRHL2 was down-regulated in bladder cancer tissues and human bladder cancer cell lines compared with the normal bladder tissues and immortalized human bladder epithelial cell line. Besides, down-regulation of GRHL2 improved the proliferation ability of bladder cancer cells and promoted the EMT process through up-regulation of ZEB1. The overexpression of ZEB1 partially reversed the inhibitory effect of GRHL2 on EMT. GRHL2 acts as an anti-oncogene to regulate bladder cancer cell proliferation and inhibit EMT by targeting ZEB1. This study may provide a theoretical basis for further research."	"Phenogenon: Gene to phenotype associations for rare genetic diseases. As high-throughput sequencing is increasingly applied to the molecular diagnosis of rare Mendelian disorders, a large number of patients with diverse phenotypes have their genetic and phenotypic data pooled together to uncover new gene-phenotype relations. We introduce Phenogenon, a statistical tool that combines, Human Phenotype Ontology (HPO) annotated patient phenotypes, gnomAD allele population frequency, and Combined Annotation Dependent Depletion (CADD) score for variant pathogenicity, in order to jointly predict the mode of inheritance and gene-phenotype associations. We ran Phenogenon on our cohort of 3,290 patients who had undergone whole exome sequencing. Among the top associations, we recapitulated previously known, such as &quot;SRD5A3-Abnormal full-field electroretinogram-recessive&quot; and &quot;GRHL2 -Nail dystrophy-recessive&quot;, and discovered one potentially novel, &quot;RRAGA-Abnormality of the skin-dominant&quot;. We also developed an interactive web interface available at https://phenogenon.phenopolis.org to visualise and explore the results."	"Grainyhead-like 2 as a double-edged sword in development and cancer. Grainyhead-like 2 (GRHL2), one of the three homologs of Drosophila grainyhead, contributes to epithelial morphogenesis and differentiation. Dysregulation of GRHL2 has been shown to be involved in hearing loss and neural tube defects during embryogenesis. Moreover, it is well-recognized that GRHL2 suppresses epithelial-to-mesenchymal transition (EMT) that is required for migration and invasion of carcinoma, implicating, GRHL2 in carcinogenesis. Diverse mechanisms, as well as the varied roles of GRHL2 in different tumor tissues, have been elucidated. However, the functions of GRHL2 appear to be more complicated than initially thought. GRHL2, acting as either a tumor enhancer or a tumor inhibitor, depends on the type of cancer. In this review, we summarize research progress about normal physiological functions of GRHL2 including epithelial morphogenesis, neural tube closure, and hearing loss. Moreover, the mechanisms of GRHL2 in tumorigenesis, containing EMT suppression, forming a negative feedback loop with ZEB1 and miR200 family, interactions with estrogen receptor (ER)-dependent signaling pathway, regulation of telomerase reverse transcriptase and relationships with TGF-beta signaling pathway are discussed in this review in an effort to better understand the roles of GRHL2 in a variety of cancers toward the goal of GRHL2-targeted treatment in the near future."	"Clinical and genetic study of 12 Chinese Han families with nonsyndromic deafness. Nonsyndromic hearing loss is clinically and genetically heterogeneous. In this study, we characterized the clinical features of 12 Chinese Han deaf families in which mutations in common deafness genes GJB2, SLC26A4, and MT-RNR1 were excluded. Targeted next-generation sequencing of 147 known deafness genes was performed in probands of 10 families, while whole-exome sequencing was applied in those of the rest two. Pathogenic mutations in a total of 11 rare deafness genes, OTOF, CDH23, PCDH15, PDZD7, ADGRV1, KARS, OTOG, GRXCR2, MYO6, GRHL2, and POU3F4, were identified in all 12 probands, with 16 mutations being novel. Intrafamilial cosegregation of the mutations and the deafness phenotype were confirmed by Sanger sequencing. Our results expanded the mutation spectrum and genotype-phenotype correlation of nonsyndromic hearing loss in Chinese Hans and also emphasized the importance of combining both next-generation sequencing and detailed auditory evaluation to achieve a more accurate diagnosis for nonsyndromic hearing loss."	"Inactivation of Zeb1 in GRHL2-deficient mouse embryos rescues mid-gestation viability and secondary palate closure. Cleft lip and palate are common birth defects resulting from failure of the facial processes to fuse during development. The mammalian grainyhead-like (Grhl1-3) genes play key roles in a number of tissue fusion processes including neurulation, epidermal wound healing and eyelid fusion. One family member, Grhl2, is expressed in the epithelial lining of the first pharyngeal arch in mice at embryonic day (E)10.5, prompting analysis of the role of this factor in palatogenesis. Grhl2-null mice die at E11.5 with neural tube defects and a cleft face phenotype, precluding analysis of palatal fusion at a later stage of development. However, in the first pharyngeal arch of Grhl2-null embryos, dysregulation of transcription factors that drive epithelial-mesenchymal transition (EMT) occurs. The aberrant expression of these genes is associated with a shift in RNA-splicing patterns that favours the generation of mesenchymal isoforms of numerous regulators. Driving the EMT perturbation is loss of expression of the EMT-suppressing transcription factors Ovol1 and Ovol2, which are direct GRHL2 targets. The expression of the miR-200 family of microRNAs, also GRHL2 targets, is similarly reduced, resulting in a 56-fold upregulation of Zeb1 expression, a major driver of mesenchymal cellular identity. The critical role of GRHL2 in mediating cleft palate in Zeb1<sup>-/-</sup> mice is evident, with rescue of both palatal and facial fusion seen in Grhl2<sup>-/-</sup>;Zeb1<sup>-/-</sup> embryos. These findings highlight the delicate balance between GRHL2/ZEB1 and epithelial/mesenchymal cellular identity that is essential for normal closure of the palate and face. Perturbation of this pathway may underlie cleft palate in some patients."	"CircZDHHC20 represses the proliferation, migration and invasion in trophoblast cells by miR-144/GRHL2 axis. Preeclampsia (PE) is a prevalent pregnancy disorder that has been one of the leading causes of maternal and perinatal mortality worldwide. Circular RNAs (circRNAs) have recently considered as important regulators in PE pathogenesis. In the current study, we aimed to explore the impact and mechanisms of circRNA zinc finger DHHC-type palmitoyltransferase 20 (circZDHHC20) in PE pathogenesis. RNase R assay and reverse transcription with Oligo(dT)18 primers were performed to confirm that circZDHHC20 was indeed circular transcript. The expression of circZDHHC20, grainyhead-like 2 (GRHL2) and miR-144 were assessed by quantitative real-time polymerase chain reaction (qRT-PCR). Subcellular localization assay was used to determine whether circZDHHC20 was predominantly present in the cytoplasm. The target correlations between miR-144 and circZDHHC20 or GRHL2 were confirmed using dual-luciferase reporter and RNA immunoprecipitation (RIP) assays. Cell proliferation, migration, and invasion were detected by 3-(4,5-dimethylthiazol-2-yl)-5-(3-carboxymethoxyphenyl)-2-(4-sulfophenyl)-2H-tetr-azolium (MTS), wound healing and transwell assays, respectively. Western blot was used for the quantification of GRHL2 protein level. Our data indicated that circZDHHC20 was up-regulated and miR-144 was down-regulated in PE placenta. CircZDHHC20 sequestered miR-144 by acting as a miR-144 sponge. CircZDHHC20 overexpression repressed trophoblast cell proliferation, migration, and invasion, while its knockdown exerted opposite effects. Moreover, miR-144 mediated the regulation of circZDHHC20 on trophoblast cell behaviors. GRHL2 was directly targeted and inhibited by miR-144. MiR-144 exerted regulatory effects on trophoblast cell proliferation, migration and invasion by GRHL2. Furthermore, circZDHHC20 modulated GRHL2 expression through sponging miR-144. Our study suggested that a high level of circZDHHC20 inhibited the proliferation, migration, and invasion in trophoblast cells at least partially through sponging miR-144 and up-regulating GRHL2, providing a novel mechanism of PE pathogenesis."	"Genome-wide methylation and expression profiling identify methylation-associated genes in colorectal cancer. Aim: To identify methylation-associated genes in the carcinogenesis of colorectal cancer (CRC). Materials &amp; methods: Genome-wide patterns of DNA methylation and gene expression in CRC tissues and adjacent normal tissues were determined and further validated in The Cancer Genome Atlas data and Chinese CRC patients, respectively. Gene overexpression and knockdown cells were constructed to investigate their biological roles in CRC. Results: After validations, hypermethylation of eight genes were found to be correlated with their reduced transcription, and hypomethyaltion of three genes were associated with their upregulation. CADM3, CNRIP1, GRHL2, GRIA4, GSTM2 and NRXN1 were associated with the overall survival of CRC patients. CNRIP1 and GSTM2 were mainly responsible for the proliferation in CRC cells. Conclusion: A total of 11 genes may be promising biomarkers for CRC."	"Interrogating the Grainyhead-like 2 (Grhl2) genomic locus identifies an enhancer element that regulates palatogenesis in mouse. The highly-conserved Grainyhead-like (Grhl) transcription factors are critical regulators of embryogenesis that regulate cellular survival, proliferation, migration and epithelial integrity, especially during the formation of the craniofacial skeleton. Family member Grhl2 is expressed throughout epithelial tissues during development, and loss of Grhl2 function leads to significant defects in neurulation, abdominal wall closure, formation of the face and fusion of the maxilla/palate. Whereas numerous downstream target genes of Grhl2 have been identified, very little is known about how this crucial developmental transcription factor itself is regulated. Here, using in silico and in utero expression analyses and functional deletion in mice, we have identified a novel 2.4 kb enhancer element (mm1286) that drives reporter gene expression in a pattern that strongly recapitulates endogenous Grhl2 in the craniofacial primordia, modulates Grhl2 expression in these tissues, and augments Grhl2-mediated closure of the secondary palate. Deletion of this genomic element, in the context of inactivation of one allele of Grhl2 (through generation of double heterozygous Grhl2<sup>+/</sup><sup>-</sup>;mm1286<sup>+/</sup><sup>-</sup> mice), results in a significant predisposition to palatal clefting at birth. Moreover, we found that a highly conserved 325 bp region of mm1286 is both necessary and sufficient for mediating the craniofacial-specific enhancer activity of this region, and that an extremely well-conserved 12-bp sequence within this element (CTGTCAAACAGGT) substantially determines full enhancer function. Together, these data provide valuable new insights into the upstream genomic regulatory landscape responsible for transcriptional control of Grhl2 during palatal closure."	"An overview of research trends and genetic polymorphisms for noise-induced hearing loss from 2009 to 2018. Recently, there has been increased studies in noise-induced hearing loss (NIHL). We aimed to make an overview of research trends and genetic polymorphisms for NIHL from 2009 to 2018 with VOSviewer software. A total of 2391 papers were identified for research trends analysis in NIHL and 33 studies identified for a brief review of genetic polymorphisms in human NIHL. The number of publications has been increasing over the past decade. The journal Hearing Research published the most articles (218). The USA contributed the largest number of papers (1042; 43.58%), with the most citations (18,987) and the highest H-index (60). The University of Washington was the most contributive institution. Liberman MC published the most articles (32), and Kujawa SG possessed the highest co-citations (584). Except for high-frequency keywords identified by the software, &quot;prevalence,&quot; &quot;oxidative stress,&quot; &quot;hair cells,&quot; and &quot;cochlear implant&quot; were also the latest research frontiers. HSPA1A rs1043618, HSPA1L rs2227956, PON2 rs12026 and rs7785846, SOD2 rs2855116, KCNE1 rs2070358, KCNQ4 rs34287852, GJB2 rs3751385, PCDH15 rs7095441 and rs11004085, GRHL2 rs1981361, ITGA8 rs10508489, MYH14 rs667907, and POU4F3 rs891969 were the research hotspots and were replicated in independent samples. Inflammation response underlying NIHL has emerged and should be considered as a pioneering field in the future for the prevention of NIHL and conservation of hearing."	"Meta-Analysis of Grainyhead-Like Dependent Transcriptional Networks: A Roadmap for Identifying Novel Conserved Genetic Pathways. : The Drosophilagrainyhead (grh) and vertebrate Grainyhead-like (Grhl) transcription factors are among the most critical genes for epithelial development, maintenance and homeostasis, and are remarkably well conserved from fungi to humans. Mutations affecting grh/Grhl function lead to a myriad of developmental and adult onset epithelial disease, such as aberrant skin barrier formation, facial/palatal clefting, impaired neural tube closure, age-related hearing loss, ectodermal dysplasia, and importantly, cancers of epithelial origin. Recently, mutations in the family member GRHL3 have been shown to lead to both syndromic and non-syndromic facial and palatal clefting in humans, particularly the genetic disorder Van Der Woude Syndrome (VWS), as well as spina bifida, whereas mutations in mammalian Grhl2 lead to exencephaly and facial clefting. As transcription factors, Grhl proteins bind to and activate (or repress) a substantial number of target genes that regulate and drive a cascade of transcriptional networks. A multitude of large-scale datasets have been generated to explore the grh/Grhl-dependent transcriptome, following ablation or mis-regulation of grh/Grhl-function. Here, we have performed a meta-analysis of all 41 currently published grh and Grhl RNA-SEQ, and microarray datasets, in order to identify and characterise the transcriptional networks controlled by grh/Grhl genes across disparate biological contexts. Moreover, we have also cross-referenced our results with published ChIP and ChIP-SEQ datasets, in order to determine which of the critical effector genes are likely to be direct grh/Grhl targets, based on genomic occupancy by grh/Grhl genes. Lastly, to interrogate the predictive strength of our approach, we experimentally validated the expression of the top 10 candidate grhl target genes in epithelial development, in a zebrafish model lacking grhl3, and found that orthologues of seven of these (cldn23,ppl, prom2, ocln, slc6a19, aldh1a3, and sod3) were significantly down-regulated at 48 hours post-fertilisation. Therefore, our study provides a strong predictive resource for the identification of putative grh/grhl effector target genes."	"The Lineage Determining Factor GRHL2 Collaborates with FOXA1 to Establish a Targetable Pathway in Endocrine Therapy-Resistant Breast Cancer. Notwithstanding the positive clinical impact of endocrine therapies in estrogen receptor-alpha (ERα)-positive breast cancer, de novo and acquired resistance limits the therapeutic lifespan of existing drugs. Taking the position that resistance is nearly inevitable, we undertook a study to identify and exploit targetable vulnerabilities that were manifest in endocrine therapy-resistant disease. Using cellular and mouse models of endocrine therapy-sensitive and endocrine therapy-resistant breast cancer, together with contemporary discovery platforms, we identified a targetable pathway that is composed of the transcription factors FOXA1 and GRHL2, a coregulated target gene, the membrane receptor LYPD3, and the LYPD3 ligand, AGR2. Inhibition of the activity of this pathway using blocking antibodies directed against LYPD3 or AGR2 inhibits the growth of endocrine therapy-resistant tumors in mice, providing the rationale for near-term clinical development of humanized antibodies directed against these proteins."	"The role of GRHL2 and epigenetic remodeling in epithelial-mesenchymal plasticity in ovarian cancer cells. Cancer cells exhibit phenotypic plasticity during epithelial-mesenchymal transition (EMT) and mesenchymal-epithelial transition (MET) involving intermediate states. To study genome-wide epigenetic remodeling associated with EMT plasticity, we integrate the analyses of DNA methylation, ChIP-sequencing of five histone marks (H3K4me1, H3K4me3, H3K27Ac, H3K27me3 and H3K9me3) and transcriptome profiling performed on ovarian cancer cells with different epithelial/mesenchymal states and on a knockdown model of EMT suppressor Grainyhead-like 2 (GRHL2). We have identified differentially methylated CpG sites associated with EMT, found at promoters of epithelial genes and GRHL2 binding sites. GRHL2 knockdown results in CpG methylation gain and nucleosomal remodeling (reduction in permissive marks H3K4me3 and H3K27ac; elevated repressive mark H3K27me3), resembling the changes observed across progressive EMT states. Epigenetic-modifying agents such as 5-azacitidine, GSK126 and mocetinostat further reveal cell state-dependent plasticity upon GRHL2 overexpression. Overall, we demonstrate that epithelial genes are subject to epigenetic control during intermediate phases of EMT/MET involving GRHL2."	"CircTRNC18 inhibits trophoblast cell migration and epithelial-mesenchymal transition by regulating miR-762/Grhl2 pathway in pre-eclampsia. Dysfunctions of epithelial-mesenchymal transition (EMT)-regulated cell migration and invasion have been involved in the pathogenesis of pre-eclampsia (PE). However, the role of circRNAs in EMT of PE has not been widely investigated. In this study, we identified that circTNRC18 was upregulated in PE placentas compared with normal pregnancy placentas. Moreover, circTNRC18 negatively regulated trophoblast cell migration and EMT. Overexpression of circTNRC18 reduced while depletion of circTNRC18 enhanced trophoblast cell migration and EMT. Mechanistically, circTNRC18 sponged miR-762 contributed to inhibit miR-762 activity and elevated EMT-related transcriptional factor Grhl2 protein level. miR-762 expression was lower in PE placentas and played a promoting role in trophoblast cell migration and EMT. In contrast, Grhl2 was highly expressed in PE placentas. Furthermore, we confirmed that upregulation of Grhl2 by circ-TNRC18-induced inhibition of miR-762 led to trophoblast cell migration and EMT. In conclusions, circTNRC18/miR-762/Grhl2 axis plays a key role in trophoblast cell migration and EMT. circTNRC18/miR-762/Grhl2 axis may be a potential therapeutic target in PE."	"Porphyromonas gingivalis Impairs Oral Epithelial Barrier through Targeting GRHL2. Oral mucosa provides the first line of defense against a diverse array of environmental and microbial irritants by forming the barrier of epithelial cells interconnected by multiprotein tight junctions (TJ), adherens junctions, desmosomes, and gap junction complexes. Grainyhead-like 2 (GRHL2), an epithelial-specific transcription factor, may play a role in the formation of the mucosal epithelial barrier, as it regulates the expression of the junction proteins. The current study investigated the role of GRHL2 in the Porphyromonas gingivalis (Pg)-induced impairment of epithelial barrier functions. Exposure of human oral keratinocytes (HOK-16B and OKF6 cells) to Pg or Pg-derived lipopolysaccharides (Pg LPSs) led to rapid loss of endogenous GRHL2 and the junction proteins (e.g., zonula occludens, E-cadherin, claudins, and occludin). GRHL2 directly regulated the expression levels of the junction proteins and the epithelial permeability for small molecules (e.g., dextrans and Pg bacteria). To explore the functional role of GRHL2 in oral mucosal barrier, we used a Grhl2 conditional knockout (KO) mouse model, which allows for epithelial tissue-specific Grhl2 KO in an inducible manner. Grhl2 KO impaired the expression of the junction proteins at the junctional epithelium and increased the alveolar bone loss in the ligature-induced periodontitis model. Fluorescence in situ hybridization revealed increased epithelial penetration of oral bacteria in Grhl2 KO mice compared with the wild-type mice. Also, blood loadings of oral bacteria (e.g., Bacteroides, Bacillus, Firmicutes, β-proteobacteria, and Spirochetes) were significantly elevated in Grhl2 KO mice compared to the wild-type littermates. These data indicate that Pg bacteria may enhance paracellular penetration through oral mucosa in part by targeting the expression of GRHL2 in the oral epithelial cells, which then impairs the epithelial barrier by inhibition of junction protein expression, resulting in increased alveolar tissue destruction and systemic bacteremia."	"Development of de novo epithelialization method for treatment of cutaneous ulcers. Cutaneous ulcers are a common cause of morbidity. We have developed a de novo epithelialization method for treating cutaneous ulcers by means of reprogramming wound-resident mesenchymal cells in vivo into cells able to form a stratified epithelium: induced stratified epithelial progenitors (iSEPs). Administration of 4 transcription factors (DNP63A, GRHL2, TFAP2A, and cMYC) expressed via adeno-associated viral vectors enabled generation of epithelial cells and tissues, thereby acheiving de novo epithelialization from the surfaces of cutaneous ulcers in a mouse model. Generated epithelia, having barrier functions equivalent to the original epidermis, were maintained for more than 6 months. Our findings constitute a proof of concept for future development towards innovative therapies for cutaneous ulcers via de novo epithelialization."	"Alterations in GRHL2-OVOL2-ZEB1 axis and aberrant activation of Wnt signaling lead to altered gene transcription in posterior polymorphous corneal dystrophy. Mutations associated with posterior polymorphous corneal dystrophy (PPCD) have been identified in three genes: ZEB1 (zinc-finger E-box binding homeobox 1) associated with sub-type PPCD3; OVOL2 (ovol-like zinc finger 2) associated with sub-type PPCD1; and GRHL2 (grainyhead like transcription factor 2) associated with sub-type PPCD4. Each of these genes encodes a transcription factor that regulates cell-state transitions. While the discovery of these PPCD-associated genes has greatly expanded our knowledge of the genetic basis of PPCD, the molecular mechanisms via which mutations in these genes lead to indistinguishable disease phenotypes have yet to be elucidated. To characterize the gene expression profiles of the genetic sub-types of PPCD, RNA-seq was performed on corneal endothelium derived from an individual with PPCD1 who harbors a c.-307T &gt; C OVOL2 promoter mutation. Transcriptomic analysis of this and previously-reported RNA-seq data from two individuals with PPCD (the first with PPCD3 associated with a ZEB1 truncating mutation (c.1381delinsGACGAT) and the second with genetically unresolved PPCD in which ZEB1 coding region, OVOL2 promoter and GRHL2 promoter, exon 1, and intron 1 mutations were excluded) revealed: OVOL2 expression increased in PPCD1 (259 fold), unchanged in PPCD3 and slightly increased in genetically unresolved PPCD (from 0 TPM to 0.86 TPM, undefined fold change); ZEB1 expression decreased in PPCD1 (-5.9 fold), PPCD3 (-3.95 fold) and genetically unresolved PPCD (-3.96 fold); and GRHL2 expression increased in PPCD1 (333.5 fold), slightly increased (from 0 TPM to 0.67 TPM, undefined fold change) in PPCD3 and increased in genetically unresolved PPCD (1853 fold). Additionally, as the majority of pedigrees affected with PPCD remain genetically unresolved, we screened the promoter, exon 1, and intron 1 regions of GRHL2 in 24 PPCD probands who do not harbor a ZEB1 or OVOL2 mutation. GRHL2 screening did not identify any novel or rare GRHL2 variant in these 24 individuals. As ZEB1 can act as an activator or repressor of downstream target gene expression depending on Wnt signaling pathway activation or deactivation, we also sought to determine whether or not Wnt signaling is active in PPCD by performing immunohistochemistry in corneal tissue sections derived from an individual affected with PPCD3 and from an individual with genetically unresolved PPCD. Immunohistochemistry results demonstrated corneal endothelial nuclear accumulation of S552 phos-β-catenin and cytosolic localization of S33/37/T42 non-phosphorylated β-catenin in PPCD, indicating aberrant activation of Wnt signaling, which was not observed in control corneal endothelium. These findings suggest that alterations in the ZEB1-OVOL2-GRHL2 axis (caused by PPCD-associated mutations) lead to changes in corneal endothelial cell state and molecular pathways, including the aberrant activation of the Wnt signaling pathway."	"Association of polymorphisms in grainyhead-like-2 gene with the susceptibility to age-related hearing loss: A systematic review and meta-analysis. The grainyhead-like-2 (GRHL2) genetic variants were reported in age-related hearing impairment (ARHI) susceptibility in several case-control studies. However, their conclusions are conflicting; it is difficult to precisely assess the disease risk associated with the variants. Therefore we conduct the meta-analysis to discover the association of GRHL2 polymorphisms and the risk of ARHI. A related literature search was conducted in on-line databases, such as Wanfang database, China National Knowledge Infrastructure (CNKI), EMBASE, Web of Science, and PubMed (updated to August 30, 2018). We use Review Manager 5.0 and Stata SE 12.0 software to reckon the odds radio (OR), 95% confidence interval (CI) and P value in random- or fixed-effects model according to the I2 value in the heterogeneity test. 2762 cases and 2321 controls in 5 articles were provided data to the meta-analysis. The pooled ORs (95% CI) of the rs10955255 polymorphism were 1.26 (1.05-1.50, P = .01), 1.33 (1.07-1.65, P = .01), and 1.32 (1.12-1.55, P = .0007) in the allele, homozygote and recessive model separately. Besides, a significant association was detected between rs1981361 in mixed population and the ARHI risk in the allele, heterozygote, and dominant genetic model respectively. Then subgroup analyses was performed by ethnicity, for rs10955255 meaningful associations were detected for the allele model, homozygote model, dominant model and recessive model in the Caucasian population but no relations in any of the 5 genetic models in Asian population. The meta-analysis indicated that the rs10955255 polymorphism could be an important risk factor for ARHI, especially in the Caucasians. The rs1981361 polymorphism may be a risk factor for ARHI in Asians. Larger scale researches are needed to further bring the consequences up to date."	"CUGC for posterior polymorphous corneal dystrophy (PPCD). Name of the disease (synonyms) CUGC for posterior polymorphous corneal dystrophy (PPCD).OMIM# of the disease 122000; 609141; 618031.Name of the analysed genes or DNA/chromosome segments OVOL2 (PPCD1); ZEB1 (PPCD3); GRHL2 (PPCD4).OMIM# of the gene(s) 616441; 189909; 608576. Review of the analytical and clinical validity as well as of the clinical utility of DNA-based testing for variants in theOVOL2, ZEB1andGRHL2gene(s) in a diagnostic setting, predictive and parental settings and for risk assesment in relatives."	"Correction to: VULCAN integrates ChIP-seq with patient-derived co-expression networks to identify GRHL2 as a key co-regulator of ERa at enhancers in breast cancer. Following publication of the original article [1], the authors reported that Figs. 4 and 5 had mistakenly been transposed. Please find the correct Figs. 4 and 5 below. The original article [1] has been corrected."	"ZIC3 Controls the Transition from Naive to Primed Pluripotency. Embryonic stem cells (ESCs) must transition through a series of intermediate cell states before becoming terminally differentiated. Here, we investigated the early events in this transition by determining the changes in the open chromatin landscape as naive mouse ESCs transition to epiblast-like cells (EpiLCs). Motif enrichment analysis of the newly opening regions coupled with expression analysis identified ZIC3 as a potential regulator of this cell fate transition. Chromatin binding and genome-wide transcriptional profiling following Zic3 depletion confirmed ZIC3 as an important regulatory transcription factor, and among its targets are genes encoding a number of transcription factors. Among these is GRHL2, which acts through enhancer switching to maintain the expression of a subset of genes from the ESC state. Our data therefore place ZIC3 upstream of a set of pro-differentiation transcriptional regulators and provide an important advance in our understanding of the regulatory factors governing the early steps in ESC differentiation."	"Spinal neural tube closure depends on regulation of surface ectoderm identity and biomechanics by Grhl2. Lack or excess expression of the surface ectoderm-expressed transcription factor Grainyhead-like2 (Grhl2), each prevent spinal neural tube closure. Here we investigate the causative mechanisms and find reciprocal dysregulation of epithelial genes, cell junction components and actomyosin properties in Grhl2 null and over-expressing embryos. Grhl2 null surface ectoderm shows a shift from epithelial to neuroepithelial identity (with ectopic expression of N-cadherin and Sox2), actomyosin disorganisation, cell shape changes and diminished resistance to neural fold recoil upon ablation of the closure point. In contrast, excessive abundance of Grhl2 generates a super-epithelial surface ectoderm, in which up-regulation of cell-cell junction proteins is associated with an actomyosin-dependent increase in local mechanical stress. This is compatible with apposition of the neural folds but not with progression of closure, unless myosin activity is inhibited. Overall, our findings suggest that Grhl2 plays a crucial role in regulating biomechanical properties of the surface ectoderm that are essential for spinal neurulation."	"Estrogen receptor signaling is reprogrammed during breast tumorigenesis. Limited knowledge of the changes in estrogen receptor (ER) signaling during the transformation of the normal mammary gland to breast cancer hinders the development of effective prevention and treatment strategies. Differences in estrogen signaling between normal human primary breast epithelial cells and primary breast tumors obtained immediately following surgical excision were explored. Transcriptional profiling of normal ER<sup>+</sup> mature luminal mammary epithelial cells and ER<sup>+</sup> breast tumors revealed significant difference in the response to estrogen stimulation. Consistent with these differences in gene expression, the normal and tumor ER cistromes were distinct and sufficient to segregate normal breast tissues from breast tumors. The selective enrichment of the DNA binding motif GRHL2 in the breast cancer-specific ER cistrome suggests that it may play a role in the differential function of ER in breast cancer. Depletion of GRHL2 resulted in altered ER binding and differential transcriptional responses to estrogen stimulation. Furthermore, GRHL2 was demonstrated to be essential for estrogen-stimulated proliferation of ER<sup>+</sup> breast cancer cells. DLC1 was also identified as an estrogen-induced tumor suppressor in the normal mammary gland with decreased expression in breast cancer. In clinical cohorts, loss of DLC1 and gain of GRHL2 expression are associated with ER<sup>+</sup> breast cancer and are independently predictive for worse survival. This study suggests that normal ER signaling is lost and tumor-specific ER signaling is gained during breast tumorigenesis. Unraveling these changes in ER signaling during breast cancer progression should aid the development of more effective prevention strategies and targeted therapeutics."	"Prognostic Utility of a Whole-blood Androgen Receptor-based Gene Signature in Metastatic Castration-resistant Prostate Cancer. The treatment paradigm for metastatic castration-resistant prostate cancer (mCRPC) has evolved significantly in recent years. Identifying predictive and/or prognostic biomarkers in the context of this rapidly expanding therapeutic armamentarium remains a pressing and unmet clinical need. To develop a prognostic whole-blood gene signature for mCRPC patients. As part of an ongoing prospective, multicentre biomarker research study (Australian Prostate Biomarker Alliance), we enrolled 115 mCRPC patients commencing chemotherapy (n = 34) or androgen receptor (AR) pathway inhibitors therapy (n = 81) and obtained pretreatment whole-blood samples in PAXgene RNA tubes. Gene expression was assessed using reverse transcription-polymerase chain reaction. Gene transcripts correlating with overall survival (OS) at p &lt; 0.10 in univariate Cox regression models were incorporated into a multigene signature. Kaplan-Meier survival estimates and multivariate analyses were used to assess association with clinical outcomes. Prognostic strength of the signature was estimated using a concordance probability estimate (CPE). Based on univariate analysis for OS, the following genes were incorporated into a multigene signature: AR splice variant 7 (AR-V7), and three androgen-regulated genes: GRHL2, HOXB13, and FOXA1. The number of positive transcripts clearly stratified survival outcomes (median OS: not reached vs 24.8 mo vs 16.2 mo for 0, 1, and ≥2 transcripts, respectively; p = 0.0052). Notably, this multigene signature retained prognostic significance on multivariable analysis (hazard ratio, 2.1; 95% confidence interval, 1.1-4.0; p = 0.019). Moreover, CPE for this model was 0.78, indicating strong discriminative capacity. Limitations include short follow-up time. Our data demonstrate the prognostic utility of a novel whole-blood AR-based signature in mCRPC patients commencing contemporary systemic therapies. Our pragmatic assay requires minimal processing, can be performed in most hospital laboratories, and could represent a key prognostic tool for risk stratification in mCRPC. We found that expression of certain genes associated with the androgen receptor could help determine how long men with advanced prostate cancer survive after starting modern drug therapies."	"VULCAN integrates ChIP-seq with patient-derived co-expression networks to identify GRHL2 as a key co-regulator of ERa at enhancers in breast cancer. VirtUaL ChIP-seq Analysis through Networks (VULCAN) infers regulatory interactions of transcription factors by overlaying networks generated from publicly available tumor expression data onto ChIP-seq data. We apply our method to dissect the regulation of estrogen receptor-alpha activation in breast cancer to identify potential co-regulators of the estrogen receptor's transcriptional response. VULCAN analysis of estrogen receptor activation in breast cancer highlights the key components of the estrogen receptor complex alongside a novel interaction with GRHL2. We demonstrate that GRHL2 is recruited to a subset of estrogen receptor binding sites and regulates transcriptional output, as evidenced by changes in estrogen receptor-associated eRNA expression and stronger estrogen receptor binding at active enhancers after GRHL2 knockdown. Our findings provide new insight into the role of GRHL2 in regulating eRNA transcription as part of estrogen receptor signaling. These results demonstrate VULCAN, available from Bioconductor, as a powerful predictive tool."	"GRHL2 inhibits colorectal cancer progression and metastasis via oppressing epithelial-mesenchymal transition. Our previous study has demonstrated that knockdown of Grainyhead-like 2(GRHL2) in colorectal cancer (CRC) cells inhibited cell proliferation by targeting ZEB1. This study aimed at researching whether knockdown of GRHL2 promoted CRC progression and metastasis via inducing epithelial-mesenchymal transition (EMT). GRHL2-upregulated SW-620/GRHL2+ and GRHL2-knockdown HCT116/GRHL2-KD, HT29/GRHL2-KD cells and their control cells were generated. The morphological changes after overexpression and knockdown GRHL2 were observed. qRT-PCR, Western blotting, and Immunofluorescence were used to detect EMT markers: E-cadherin, Vimentin, p-catein, ZO-1 and ZEB1 expression. Then, sh-ZEB1 was transfected to GRHL2 knockdown cells to research the relationship between GRHL2 and ZEB1. Transwell and wound healing assays were further performed to detect the impact of GRHL2 on invasion and migration in vitro. CRC cells were injected into mice tail vein to verify the impact of GRHL2 on CRC metastasis. Morphological change of mesenchymal-epithelial transition (MET) could be observed in SW620/GRHL2+ cell. The expression of epithelial markers: E-cadherin, β-catenin, ZO-1 were up-regulated, while mesenchymal markers: Vimentin was decreased. Meanwhile, opposite EMT morphological change could be observed in HCT116/GRHL2-KD cell, accompanied by reverse change of E-cadherin, β-catenin, ZO-1, and Vimentin. The expression level of GRHL2 and ZEB1 was found negative in both SW620/GRHL2+ and HCT116/GRHL2-KD cells. Knockdown of ZEB1 by siRNA in HCT116/GRHL2-KD and HT29/GRHL2-KD could upregulate expression of E-cadherin and GRHL2. GRHL2 knockdown also promoted migration, invasion in vitro and CRC metastasis in mice model. In conclusion, GRHL2/ZEB1 axis inhibits CRC progression and metastasis via oppressing EMT."	"Grainyhead-like Protein 2: The Emerging Role in Hormone-Dependent Cancers and Epigenetics. In mammals, the grainyhead-like transcription factor (GRHL) family is composed of three nuclear proteins that are responsible for driving epithelial cell fate: GRHL1, GRHL2, and GRHL3. GRHL2 is important in maintaining proper tubulogenesis during development and in suppressing the epithelial-to-mesenchymal transition. Within the last decade, evidence indicates both tumor-suppressive and oncogenic roles for GRHL2 in various types of cancers. Recent studies suggest that GRHL2 may be especially important in hormone-dependent cancers, as correlative relationships exist between GRHL2 and various steroid receptors, such as the androgen and estrogen receptors. Acting as a pioneer factor and coactivator, GRHL2 may directly affect steroid receptor transcriptional activity. This review will highlight recent discoveries of GRHL2 activity in cancer and in maintaining the epithelial state, while also exploring recent literature on the role of GRHL2 in hormone-dependent cancers and epigenetics."	"Knockdown of GRHL2 inhibited proliferation and induced apoptosis of colorectal cancer by suppressing the PI3K/Akt pathway. Grainyhead-like 2 (GRHL2) transcription factor is implicated in many types of cancers. However, the role of GRHL2 in colorectal cancer (CRC) has not been fully understood. The present study aimed to evaluate the expression and functional roles of GRHL2 in CRC. The expression of GRHL2 in normal human intestinal epithelial cells and colorectal cancer cells was measured by qRT-PCR and western blot. For knockdown of GRHL2, two small interfere RNAs (siRNAs) targeting GRHL2 or control siRNA was transfected into CRC cell lines (HCT116 and HT29). For GRHL2 overexpression, the GRHL2-overexpressing vector or empty lentiviral vector was infected into HCT116 and HT29 cells. Cell proliferation was measured by MTT assay. Cell apoptosis rate was analyzed by flow cytometry. The expression of proliferating cell nuclear antigen (PCNA), Bax, and Bcl-2 was detected by western blot. We found that GRHL2 was upregulated in CRC cells compared to normal human intestinal epithelial cells. Knockdown of GRHL2 inactivated the PI3K/Akt pathway in HCT116 and HT29 cells. Knockdown of GRHL2 inhibited cell viability, elevated the apoptosis rates, suppressed the expression of PCNA and Bcl-2, and induced the expression of Bax in HCT116 and HT29 cells, and these effects were reversed by activation of the PI3K/Akt pathway. Inhibition of PI3K/Akt pathway blocked the effects of GRHL2 overexpression on cell proliferation and apoptosis. In conclusion, GRHL2 acted as an oncoprotein through regulating cell proliferation and apoptosis in CRC cells. The PI3K/Akt pathway was closely involved in the effects of GRHL2. Therefore, GRHL2 might be a therapeutic target for the CRC treatment."	"Polymorphism in GRHL2 gene may contribute to noise-induced hearing loss susceptibility: a meta-analysis. Noise-induced hearing loss is a leading occupational disease caused by gene-environment interaction. The Grainy Like 2, GRHL2, is a candidate gene. In this regard, many studies have evaluated the association between GRHL2 and noise-induced hearing loss, although the results are ambiguous and conflicting. The purpose of this study was to identify a precise estimation of the association between rs3735715 polymorphism in GRHL2 gene and susceptibility of noise-induced hearing loss. A comprehensive search was performed to collect data up to July 8, 2018. Finally, 4 eligible articles were included in this meta-analysis comprising 2410 subjects. The pooled odds ratios with 95% confidence intervals were used to evaluate the strength of the association. Significant association was found in the overall population in the dominant model (GA/AA vs. GG, odds ratio=0.707, 95% confidence interval=0.594-0.841) and allele model (G allele vs. A allele, odds ratio=1.189, 95% confidence interval=1.062-1.333). When stratified by source of the subjects, we also found association between rs3735715 and noise-induced hearing loss risk in the dominant model (GA/AA vs. GG, odds ratio=0.634, 95% confidence interval=0.514-0.783) and allele model (G allele vs. A allele, odds ratio=1.206, 95% confidence interval=1.054-1.379). Rs3735715 polymorphism in GRHL2 gene may influence the susceptibility of noise-induced hearing loss. Additional large, well-designed and functional studies are needed to confirm this association in different populations."	"Resistance to bortezomib in breast cancer cells that downregulate Bim through FOXA1 O-GlcNAcylation. Bortezomib (BTZ), a well-established proteasome inhibitor used in the clinical therapy, leads the modulation of several biological alterations and in turn induces apoptosis. Although clinical trials with BTZ have shown promising results for some types of cancers, but not for some others, including those of the breast. The molecular basis of BTZ resistance in breast cancer remains elusive. In the present study, we found that cellular O-GlcNAc modification was dramatically elevated by BTZ treatment in intrinsic resistant MCF-7 and T47D cells, but not in sensitive MDA-MB-231 cells. A progressive increase in O-GlcNAcylation characterized the increased acquired resistance of MDA-MB-231-derived cells. We showed that elevated O-GlcNAc subsequently modified breast cancer related pioneer factor FOXA1 and reduced its protein stability. Further, we demonstrated that FOXA1 attenuation was involved in transcriptional downregulation of proapoptotic Bim and thus suppressed breast cancer cell apoptosis. Finally, the combination of O-GlcNAc inhibitor L01 to BTZ sensitized resistant cells. Our results have revealed a new regulatory mechanism that involves O-GlcNAc elevation mediated Bim deficiency, which plays a key role in the apoptotic dysregulation and BTZ resistance in breast cancer cells."	"Mutation screening in non-syndromic hearing loss patients with cochlear implantation by massive parallel sequencing in Taiwan. To explore the molecular epidemiology of rare deafness genes in Taiwanese sensorineural hearing impairment (SNHI) patients with cochlear implantation (CI) by performing massive parallel sequencing (MPS) and correlating genetic factors and CI outcomes. We enrolled 41 Taiwanese non-syndromic deafness patients with CI that lacked known mutations in common deafness genes. All probands were screened by a targeted exon amplification method that used massively parallel sequencing to screen a customized panel that included 40 relatively rare non-syndromic deafness genes. Thirteen candidate variants in nine relatively rare deafness genes (MYO15A, TMC1, MYH14, MYO3A, ACTG1, COL11A2, DSPP, GRHL2, and WFS1) were identified in 24.4% (10/41) of the non-syndromic deafness probands with CI. According to the ACMG Standards and Guidelines, five variants in MYO15A and ACTG1 were classified as likely pathogenic variants. Two of three multi-generational pedigrees exhibiting deafness were analyzed for the segregation of the disorder with the possible disease-causing variants. Patients with variants detected in most of the identified variant-bearing genes showed relatively good CI outcomes. We successfully identified candidate variants in partially deaf Taiwanese probands who lacked the known mutations in common deafness genes. Comparing the progress of hearing rehabilitation in CI patients with their apparent causative variants and the expression profiles of their altered genes allowed us to speculate on how alterations in specific gene sets may influence outcomes in hearing rehabilitation after CI."	"Overexpression of grainyhead-like transcription factor 2 is associated with poor prognosis in human pancreatic carcinoma. Recent studies have demonstrated that the abnormal expression of the grainyhead-like transcription factor 2 (GRHL2) gene contributes to the progression and poor prognosis of cancer through multiple mechanisms, but little is known about its expression status and prognostic value in pancreatic carcinoma (PC). The aim of the present study was to investigate the expression of GRHL2 in PC and to evaluate its clinicopathological and prognostic significance. Immunohistochemistry and western blotting were used to detect the expression of GRHL2 in PC tissues and cell lines, respectively. The expression of GRHL2 was investigated in 92 PC tissue samples by immunohistochemistry. High expression of GRHL2 was significantly associated with histological differentiation (P=0.018) and lymphatic metastasis (P=0.024). A Kaplan-Meier analysis revealed that high expression of GRHL2 was associated with worsened overall survival time (P&lt;0.001). Multivariate analysis indicated that GRHL2 may be an independent prognostic factor for poor overall survival time (P=0.001). Additionally, western blot analysis demonstrated that the GRHL2 protein was highly expressed in PC cell lines. GRHL2 may serve an important role in the tumourigenesis of PC and serve as a potential therapeutic target for the prevention of PC progression."	"Stability and mean residence times for hybrid epithelial/mesenchymal phenotype. Cancer metastasis and drug resistance remain unsolved clinical challenges. A phenotypic transition that is often implicated in both these processes is epithelial-mesenchymal transition (EMT) during which epithelial cells weaken their cell-cell adhesion and gain traits of migration and invasion, typical of mesenchymal cells. However, recent studies indicate that apart from these two states, cells can also exist in one or more hybrid E/M state(s), which plays an aggressive role in progression of the disease. Furthermore, computational and experimental studies have identified a variety of phenotypic stability factors (PSFs) that stabilize the hybrid E/M state(s) and can increase disease aggressiveness. In this work, we study EMT regulatory networks, in the presence of different PSFs, as dynamical systems subjected to random fluctuations. The cells thus explore different stable E, M, E/M states in the potential landscape and our aim is to quantify the residence time in each of these states. Our stochastic simulations indicate an universal feature that the mean residence time (MRT) in the hybrid E/M state is enhanced in the presence of PSFs. We demonstrate that the feature is consistent for a variety of PSFs, namely, GRHL2, OVOL, ΔNp63α, miR-145/OCT4, participating in the core EMT regulatory network. Our results reveal potential targets for pushing cells out of a hybrid E/M state and thus halting metastatic progression."	"Grainyhead-like-2 confers NK-sensitivity through interactions with epigenetic modifiers. Natural Killer (NK) cells suppress tumor initiation and metastasis. Most carcinomas are heterogeneous mixtures of epithelial, mesenchymal and hybrid tumor cells, but the relationships of these phenotypes to NK susceptibility are understood incompletely. Grainyhead-like-2 (GRHL2) is a master programmer of the epithelial phenotype, that is obligatorily down-regulated during experimentally induced Epithelial-Mesenchymal Transition (EMT). Here, we utilize GRHL2 re-expression to discover unifying molecular mechanisms that link the epithelial phenotype with NK-sensitivity. GRHL2 enhanced the expression of ICAM-1, augmenting NK-target cell synaptogenesis and NK killing of target cells. The expression of multiple interferon response genes, including ICAM1, anti-correlated with EMT. We identified two novel GRHL2-interacting proteins, the histone methyltransferases KMT2C and KMT2D. Mesenchymal-epithelial transition, NK-sensitization and ICAM-1 expression were promoted by GRHL2-KMT2C/D interactions and by GRHL2 inhibition of p300, revealing novel and potentially targetable epigenetic mechanisms connecting the epithelial phenotype with target cell susceptibility to NK killing."	"The Phosphorylated Estrogen Receptor α (ER) Cistrome Identifies a Subset of Active Enhancers Enriched for Direct ER-DNA Binding and the Transcription Factor GRHL2. Posttranslational modifications are key regulators of protein function, providing cues that can alter protein interactions and cellular location. Phosphorylation of estrogen receptor α (ER) at serine 118 (pS118-ER) occurs in response to multiple stimuli and is involved in modulating ER-dependent gene transcription. While the cistrome of ER is well established, surprisingly little is understood about how phosphorylation impacts ER-DNA binding activity. To define the pS118-ER cistrome, chromatin immunoprecipitation sequencing was performed on pS118-ER and ER in MCF-7 cells treated with estrogen. pS118-ER occupied a subset of ER binding sites which were associated with an active enhancer mark, acetylated H3K27. Unlike ER, pS118-ER sites were enriched in GRHL2 DNA binding motifs, and estrogen treatment increased GRHL2 recruitment to sites occupied by pS118-ER. Additionally, pS118-ER occupancy sites showed greater enrichment of full-length estrogen response elements relative to ER sites. In an in vitro DNA binding array of genomic binding sites, pS118-ER was more commonly associated with direct DNA binding events than indirect binding events. These results indicate that phosphorylation of ER at serine 118 promotes direct DNA binding at active enhancers and is a distinguishing mark for associated transcription factor complexes on chromatin."	"Up-regulated miR-133a orchestrates epithelial-mesenchymal transition of airway epithelial cells. Dysregulation of microRNAs (miRNAs) contributes to epithelial-mesenchymal transition (EMT) of cancer, but the pathological roles of miRNAs in airway EMT of lung diseases remains largely unknown. We performed sequencing and real-time PCR analysis of the miRNA expression profile of human airway epithelial cells undergoing EMT, and revealed miR-133a to be one of the most common up-regulated miRNAs. MiR-133a was previously reported to be persistently up-regulated in airway epithelial cells of smokers. We found that mice exposed to cigarette smoke (CS) showed airway hyper-responsiveness, a typical symptom occurring in CS-related lung diseases, up-regulation of miR-133a and EMT marker protein N-cadherin in airway epithelium. Importantly, miR-133a overexpression induces airway epithelial cells to undergo spontaneous EMT via down-regulation of grainyhead-like 2 (GRHL2), an epithelial specific transcriptional factor. Loss of GRHL2 causes down-regulation of epithelial splicing regulatory protein 1 (ESRP1), a central coordinator of alternative splicing processes that are critical in the regulation of EMT. Down-regulation of ESRP1 induces isoform switching of adherens junction-associated protein p120-catenin, and leads to the loss of E-cadherin. Our study is the first to demonstrate that up-regulated miR-133a orchestrates airway EMT via alternative splicing processes, which points to novel therapeutic possibilities for the treatment of CS-related lung disease."	"Regulation of Epithelial Cell Proliferation, Differentiation, and Plasticity by Grainyhead-Like 2 During Oral Carcinogenesis. Grainyhead-Like 2 (GRHL2) was originally described as one of the three mammalian isoforms with sequence homology to Grainyhead (GRH) in Drosophila, which determines the cuticle formation in fruit flies. Earlier studies characterized GRHL2 as an epithelial-specific transcription factor that regulates epithelial morphogenesis and differentiation. Using a high-throughput proteomic approach, we discovered GRHL2 as a novel trans-regulator of the hTERT gene, which codes for the catalytic subunit of the human telomerase. GRHL2 was found to be necessary and sufficient for hTERT expression and telomerase activity in human oral squamous cell carcinomas (OSCCs) and in primary normal human keratinocytes. Subsequently, we found numerous other direct transcription targets of GRHL2, including p63, microRNA (miR)-200 family genes, FoxM1, and epidermal differentiation complex (EDC) genes. These target molecules mediate the phenotypic effects of GRHL2 on epithelial cell proliferation, differentiation, and epithelial plasticity. The pro-carcinogenic role of GRHL2 was implicated by its aberrant overexpression in OSCC cells and tissues, although several other studies also suggested the tumor suppressive effects of GRHL2. Using the novel Grhl2 cKO model, we recently reported the first genetic study in which Grhl2 knockout completely abolished oral carcinogenesis induced by a potent carcinogen, 4-nitroquinoline N-oxide (NQO). In this review, we discuss the mechanistic insights underlying the phenotypic effects of GRHL2 on epithelial cell proliferation and differentiation, as well as possibly mechanisms by which GRHL2 may promote oral carcinogenesis."	"Parallel generation of easily selectable multiple nephronal cell types from human pluripotent stem cells. Human pluripotent stem cells (hPSCs) provide a source for the generation of defined kidney cells and renal organoids applicable in regenerative medicine, disease modeling, and drug screening. These applications require the provision of hPSC-derived renal cells by reproducible, scalable, and efficient methods. We established a chemically defined protocol by application of Activin A, BMP4, and Retinoic acid followed by GDNF, which steered hPSCs to the renal lineage and resulted in populations of SIX2<sup>+</sup>/CITED1<sup>+</sup> metanephric mesenchyme- (MM) and of HOXB7<sup>+</sup>/GRHL2<sup>+</sup> ureteric bud (UB)-like cells already by 6 days. Transcriptome analysis corroborated that the PSC-derived cell types at day 8 resemble their renal vesicle and ureteric epithelial counterpart in vivo, forming tubular and glomerular renal cells 6 days later. We demonstrate that starting from hPSCs, our in vitro protocol generates a pool of nephrogenic progenitors at the renal vesicle stage, which can be further directed into specialized nephronal cell types including mesangial-, proximal tubular-, distal tubular, collecting duct epithelial cells, and podocyte precursors after 14 days. This simple and rapid method to produce renal cells from a common precursor pool in 2D culture provides the basis for scaled-up production of tailored renal cell types, which are applicable for drug testing or cell-based regenerative therapies."	"Lung morphogenesis is orchestrated through Grainyhead-like 2 (Grhl2) transcriptional programs. The highly conserved transcription factor Grainyhead-like 2 (Grhl2) exhibits a dynamic expression pattern in lung epithelium throughout embryonic development. Using a conditional gene targeting approach to delete Grhl2 in the developing lung epithelium, our results demonstrate that Grhl2 plays multiple roles in lung morphogenesis that are essential for respiratory function. Loss of Grhl2 leads to impaired ciliated cell differentiation and perturbed formation of terminal saccules. Critically, a substantial increase in Sox9-positive distal tip progenitor cells was observed following loss of Grhl2, suggesting that Grhl2 plays an important role in branching morphogenesis. Gene transcription profiling of Grhl2-deficient lung epithelial cells revealed a significant down regulation of Elf5, a member of the Ets family of transcription factors. Furthermore, ChIP and comparative genomic analyzes confirmed that Elf5 is a direct transcriptional target of Grhl2. Taken together, these results support the hypothesis that Grhl2 controls normal lung morphogenesis by tightly regulating the activity of distal tip progenitor cells."	"Grhl2 regulation of SPINT1 expression controls salivary gland development. Development of the salivary gland is characterized by extensive branching morphogenesis and lumen formation, the latter of which is closely associated with differentiation into acinar and ductal cells. Although various molecules, including signaling and cell adhesion molecules, have been implicated in salivary gland development, transcription factors (TFs) regulating the expression of those molecules and morphological development of the gland are largely unknown. Here we show that knockdown of the epithelial TF, Grainyhead-like 2 (Grhl2), with siRNA in developing mouse submandibular salivary gland (SMG) cultured ex vivo resulted in retardation of epithelial development. This retardation was concomitant with suppression of gene expression for the cell adhesion molecules, such as E-cadherin and the extracellular protease inhibitor SPINT1, and with the disorganized deposition of the basal lamina protein laminin. ChIP-PCR demonstrated the binding of Grhl2 protein to the Spint1 gene in the SMG. Notably, addition of recombinant SPINT1 protein in cultured SMG overcame the suppressive effects of Grhl2 siRNA on epithelial development and laminin deposition. These findings show that Grhl2 regulation of SPINT1 expression controls salivary gland development."	"Overexpression of Grainyhead-like 3 causes spina bifida and interacts genetically with mutant alleles of Grhl2 and Vangl2 in mice. The genetic basis of human neural tube defects (NTDs), such as anencephaly and spina bifida (SB), is complex and heterogeneous. Grainyhead-like genes represent candidates for involvement in NTDs based on the presence of SB and exencephaly in mice carrying loss-of-function alleles of Grhl2 or Grhl3. We found that reinstatement of Grhl3 expression, by bacterial artificial chromosome (BAC)-mediated transgenesis, prevents SB in Grhl3-null embryos, as in the Grhl3 hypomorphic curly tail strain. Notably, however, further increase in expression of Grhl3 causes highly penetrant SB. Grhl3 overexpression recapitulates the spinal NTD phenotype of loss-of-function embryos, although the underlying mechanism differs. However, it does not phenocopy other defects of Grhl3-null embryos such as abnormal axial curvature, cranial NTDs (exencephaly) or skin barrier defects, the latter being rescued by the Grhl3-transgene. Grhl2 and Grhl3 can form homodimers and heterodimers, suggesting a possible model in which defects arising from overexpression of Grhl3 result from sequestration of Grhl2 in heterodimers, mimicking Grhl2 loss of function. This hypothesis predicts that increased abundance of Grhl2 would have an ameliorating effect in Grhl3 overexpressing embryo. Instead, we observed a striking additive genetic interaction between Grhl2 and Grhl3 gain-of-function alleles. Severe SB arose in embryos in which both genes were expressed at moderately elevated levels that individually do not cause NTDs. Furthermore, moderate Grhl3 overexpression also interacted with the Vangl2Lp allele to cause SB, demonstrating genetic interaction with the planar cell polarity signalling pathway that is implicated in mouse and human NTDs."	"DNA Methylation Profiling of Breast Cancer Cell Lines along the Epithelial Mesenchymal Spectrum-Implications for the Choice of Circulating Tumour DNA Methylation Markers. (1) Background: Epithelial⁻mesenchymal plasticity (EMP) is a dynamic process whereby epithelial carcinoma cells reversibly acquire morphological and invasive characteristics typical of mesenchymal cells. Identifying the methylation differences between epithelial and mesenchymal states may assist in the identification of optimal DNA methylation biomarkers for the blood-based monitoring of cancer. (2) Methods: Methylation-sensitive high-resolution melting (MS-HRM) was used to examine the promoter methylation status of a panel of established and novel markers in a range of breast cancer cell lines spanning the epithelial⁻mesenchymal spectrum. Pyrosequencing was used to validate the MS-HRM results. (3) Results: VIM, DKK3, and CRABP1 were methylated in the majority of epithelial breast cancer cell lines, while methylation of GRHL2, MIR200C, and CDH1 was restricted to mesenchymal cell lines. Some markers that have been used to assess minimal residual disease such as AKR1B1 and APC methylation proved to be specific for epithelial breast cell lines. However, RASSF1A, RARβ, TWIST1, and SFRP2 methylation was seen in both epithelial and mesenchymal cell lines, supporting their suitability for a multimarker panel. (4) Conclusions: Profiling DNA methylation shows a distinction between epithelial and mesenchymal phenotypes. Understanding how DNA methylation varies between epithelial and mesenchymal phenotypes may lead to more rational selection of methylation-based biomarkers for circulating tumour DNA analysis."	"Pioneering of Enhancer Landscapes during Pluripotent State Transitions. The transitions between different pluripotency states are regulated by large changes in enhancer landscapes. Two publications in this issue of Cell Stem Cell suggest that the pioneering and subsequent activation of silent enhancers by transcription factors (i.e., ESRRB and GRHL2) is a crucial event during these transitions (Adachi et al., 2018; Chen et al., 2018)."	"GRHL2-Dependent Enhancer Switching Maintains a Pluripotent Stem Cell Transcriptional Subnetwork after Exit from Naive Pluripotency. The enhancer landscape of pluripotent stem cells undergoes extensive reorganization during early mammalian development. The functions and mechanisms behind such reorganization, however, are unclear. Here, we show that the transcription factor GRHL2 is necessary and sufficient to activate an epithelial subset of enhancers as naive embryonic stem cells (ESCs) transition into formative epiblast-like cells (EpiLCs). Surprisingly, many GRHL2 target genes do not change in expression during the ESC-EpiLC transition. Instead, enhancers regulating these genes in ESCs diminish in activity in EpiLCs while GRHL2-dependent alternative enhancers become activated to maintain transcription. GRHL2 therefore assumes control over a subset of the naive network via enhancer switching to maintain expression of epithelial genes upon exit from naive pluripotency. These data evoke a model where the naive pluripotency network becomes partitioned into smaller, independent networks regulated by EpiLC-specific transcription factors, thereby priming cells for lineage specification."	"The transcription factor Grainy head primes epithelial enhancers for spatiotemporal activation by displacing nucleosomes. Transcriptional enhancers function as docking platforms for combinations of transcription factors (TFs) to control gene expression. How enhancer sequences determine nucleosome occupancy, TF recruitment and transcriptional activation in vivo remains unclear. Using ATAC-seq across a panel of Drosophila inbred strains, we found that SNPs affecting binding sites of the TF Grainy head (Grh) causally determine the accessibility of epithelial enhancers. We show that deletion and ectopic expression of Grh cause loss and gain of DNA accessibility, respectively. However, although Grh binding is necessary for enhancer accessibility, it is insufficient to activate enhancers. Finally, we show that human Grh homologs-GRHL1, GRHL2 and GRHL3-function similarly. We conclude that Grh binding is necessary and sufficient for the opening of epithelial enhancers but not for their activation. Our data support a model positing that complex spatiotemporal expression patterns are controlled by regulatory hierarchies in which pioneer factors, such as Grh, establish tissue-specific accessible chromatin landscapes upon which other factors can act."	"Somatic mutations in early onset luminal breast cancer. Breast cancer arising in very young patients may be biologically distinct; however, these tumors have been less well studied. We characterized a group of very young patients (≤ 35 years) for BRCA germline mutation and for somatic mutations in luminal (HER2 negative) breast cancer. Thirteen of 79 unselected very young patients were BRCA1/2 germline mutation carriers. Of the non-BRCA tumors, eight with luminal subtype (HER2 negative) were submitted for whole exome sequencing and integrated with 29 luminal samples from the COSMIC database or previous literature for analysis. We identified C to T single nucleotide variants (SNVs) as the most common base-change. A median of six candidate driver genes was mutated by SNVs in each sample and the most frequently mutated genes were PIK3CA, GATA3, TP53 and MAP2K4. Potential cancer drivers affected in the present non-BRCA tumors include GRHL2, PIK3AP1, CACNA1E, SEMA6D, SMURF2, RSBN1 and MTHFD2. Sixteen out of 37 luminal tumors (43%) harbored SNVs in DNA repair genes, such as ATR, BAP1, ERCC6, FANCD2, FANCL, MLH1, MUTYH, PALB2, POLD1, POLE, RAD9A, RAD51 and TP53, and 54% presented pathogenic mutations (frameshift or nonsense) in at least one gene involved in gene transcription. The differential biology of luminal early-age onset breast cancer needs a deeper genomic investigation."	"Grainyhead-like 2 (GRHL2) knockout abolishes oral cancer development through reciprocal regulation of the MAP kinase and TGF-β signaling pathways. Grainyhead-Like 2 (GRHL2) is an epithelial-specific transcription factor that regulates epithelial morphogenesis and differentiation. Prior studies suggested inverse regulation between GRHL2 and TGF-β in epithelial plasticity and potential carcinogenesis. Here, we report the role of GRHL2 in oral carcinogenesis in vivo using a novel Grhl2 knockout (KO) mouse model and the underlying mechanism involving its functional interaction with TGF-β signaling. We developed epithelial-specific Grhl2 conditional KO mice by crossing Grhl2 floxed mice with those expressing CreER driven by the K14 promoter. After induction of Grhl2 KO, we confirmed the loss of GRHL2 and its target proteins, while Grhl2 KO strongly induced TGF-β signaling molecules. When exposed to 4-nitroquinoline 1-oxide (4-NQO), a strong chemical carcinogen, Grhl2 wild-type (WT) mice developed rampant oral tongue tumors, while Grhl2 KO mice completely abolished tumor development. In cultured oral squamous cell carcinoma (OSCC) cell lines, TGF-β signaling was notably induced by GRHL2 knockdown while being suppressed by GRHL2 overexpression. GRHL2 knockdown or KO in vitro and in vivo, respectively, led to loss of active p-Erk1/2 and p-JNK MAP kinase levels; moreover, ectopic overexpression of GRHL2 strongly induced the MAP kinase activation. Furthermore, the suppressive effect of GRHL2 on TGF-β signaling was diminished in cells exposed to Erk and JNK inhibitors. These data indicate that GRHL2 activates the Erk and JNK MAP kinases, which in turn suppresses the TGF -β signaling. This novel signaling represents an alternative pathway by which GRHL2 regulates carcinogenesis, and is distinct from the direct transcriptional regulation by GRHL2 binding at its target gene promoters, e.g., E-cadherin, hTERT, p63, and miR-200 family genes. Taken together, the current study provides the first genetic evidence to support the role of GRHL2 in carcinogenesis and the underlying novel mechanism that involves the functional interaction between GRHL2 and TGF-β signaling through the MAPK pathways."	"Ectopic GRHL2 Expression Due to Non-coding Mutations Promotes Cell State Transition and Causes Posterior Polymorphous Corneal Dystrophy 4. In a large family of Czech origin, we mapped a locus for an autosomal-dominant corneal endothelial dystrophy, posterior polymorphous corneal dystrophy 4 (PPCD4), to 8q22.3-q24.12. Whole-genome sequencing identified a unique variant (c.20+544G&gt;T) in this locus, within an intronic regulatory region of GRHL2. Targeted sequencing identified the same variant in three additional previously unsolved PPCD-affected families, including a de novo occurrence that suggests this is a recurrent mutation. Two further unique variants were identified in intron 1 of GRHL2 (c.20+257delT and c.20+133delA) in unrelated PPCD-affected families. GRHL2 is a transcription factor that suppresses epithelial-to-mesenchymal transition (EMT) and is a direct transcriptional repressor of ZEB1. ZEB1 mutations leading to haploinsufficiency cause PPCD3. We previously identified promoter mutations in OVOL2, a gene not normally expressed in the corneal endothelium, as the cause of PPCD1. OVOL2 drives mesenchymal-to-epithelial transition (MET) by directly inhibiting EMT-inducing transcription factors, such as ZEB1. Here, we demonstrate that the GRHL2 regulatory variants identified in PPCD4-affected individuals induce increased transcriptional activity in vitro. Furthermore, although GRHL2 is not expressed in corneal endothelial cells in control tissue, we detected GRHL2 in the corneal &quot;endothelium&quot; in PPCD4 tissue. These cells were also positive for epithelial markers E-Cadherin and Cytokeratin 7, indicating they have transitioned to an epithelial-like cell type. We suggest that mutations inducing MET within the corneal endothelium are a convergent pathogenic mechanism leading to dysfunction of the endothelial barrier and disease."	"Age-Related Hearing Impairment Associated NAT2, GRM7, GRHL2 Susceptibility Gene Polymorphisms and Haplotypes in Roma and Hungarian Populations. Age-related hearing impairment (ARHI) is the most frequent sensory disease in the elderly, which is caused by an interaction between genetic and environmental factors. Here we examined the ethnic differences, allele and genotype frequencies of the NAT2, GRM7, and GRHL2 genes pooled samples of healthy Hungarian and healthy and hearing impaired Roma people. Study populations of healthy Hungarian and Roma subjects were characterized for the rs1799930 NAT2, rs11928865 GRM7, rs10955255, rs13263539, and rs1981361 GRHL2 polymorphisms and deaf Roma subjects were characterized for the rs1799930 NAT2, rs13263539, and rs1981361 GRHL2 using a PCR-RFLP method. We found significant differences in minor allele frequencies for GRHL2 rs13263539 and rs1981361 polymorphism between healthy Roma and Hungarian samples (37.9% vs. 51.0% and 43.6% vs. 56.2%, respectively; p &lt; 0.05). The differences of homozygous genotype of GRHL2 rs13263539 and rs1981361 variants, values were also significantly different (13.0% vs. 25.3% and 16.5 vs. 32.3%; p &lt; 0.05). The NAT2 rs1799930 homozygous genotype was 14.0% in healthy Romas and 7.7% in Hungarians, while the minor A allele frequency was 38.0% and 26.7% in Roma and Hungarian population, respectively (p &lt; 0.05). Furthermore, the frequency of GGT, GAC and GAT haplotypes was significantly higher in the Hungarian population than in healthy Roma (1.87 vs. 4.47%, 0.91 vs. 2.07% and 1.15 vs. 5.51%, respectively; p &lt; 0.008). Present study revealed significant interethnic differences in allele polymorphisms of NAT2, GRM7 and GRHL2 exhibit quite marked ethnic differences in Roma populations that might have important implications for the preventive and therapeutic treatments in this population."	"Human Papillomavirus 16 E6 Induces FoxM1B in Oral Keratinocytes through GRHL2. High-risk human papillomavirus (HPV) is a major risk factor for oral and pharyngeal cancers (OPCs), yet the detailed mechanisms by which HPV promotes OPCs are not understood. Forkhead box M1B (FoxM1B) is an oncogene essential for cell cycle progression and tumorigenesis, and it is aberrantly overexpressed in many tumors. We previously showed that FoxM1B was the putative target of an epithelial-specific transcription factor, Grainyhead-like 2 (GRHL2). In the current study, we demonstrate that HPV type 16 (HPV-16) E6 induces FoxM1B in human oral keratinocytes (HOKs) and tonsillar epithelial cells (TECs) in part through GRHL2. FoxM1B was barely detectable in cultured normal human oral keratinocytes (NHOKs) and progressively increased in immortalized HOKs harboring HPV-16 genome (HOK-16B) and tumorigenic HOK-16B/BaP-T cells. Retroviral expression of HPV-16 E6 and/or E7 in NHOKs, TECs, and hypopharyngeal carcinoma cells (FaDu) revealed induction of FoxM1B and GRHL2 by the E6 protein but not E7. Both GRHL2 and FoxM1B were strongly induced in the epidermis of HPV-16 E6 transgenic mice and HPV<sup>+</sup> oral squamous cell carcinomas. Ectopic expression of FoxM1B led to acquisition of transformed phenotype in HOK-16B cells. Loss of FoxM1B by lentiviral short hairpin RNA vector or chemical inhibitor led to elimination of tumorigenic characteristics of HOK-16B/BaP-T cells. Luciferase reporter assay revealed that GRHL2 directly bound and regulated the FoxM1B gene promoter activity. Using epithelial-specific Grhl2 conditional knockout mice, we exposed wild-type (WT) and Grhl2 KO mice to 4-nitroquinolin 1-oxide (4-NQO), which led to induction of FoxM1B in the tongue tissues and rampant oral tumor development in the WT mice. However, 4-NQO exposure failed to induce tongue tumors or induction of FoxM1B expression in Grhl2 KO mice. Collectively, these results indicate that HPV-16 induces FoxM1B in part through GRHL2 transcriptional activity and that elevated FoxM1B level is required for oropharyngeal cancer development."	"Structural basis of gene regulation by the Grainyhead/CP2 transcription factor family. Grainyhead (Grh)/CP2 transcription factors are highly conserved in multicellular organisms as key regulators of epithelial differentiation, organ development and skin barrier formation. In addition, they have been implicated as being tumor suppressors in a variety of human cancers. Despite their physiological importance, little is known about their structure and DNA binding mode. Here, we report the first structural study of mammalian Grh/CP2 factors. Crystal structures of the DNA-binding domains of grainyhead-like (Grhl) 1 and Grhl2 reveal a closely similar conformation with immunoglobulin-like core. Both share a common fold with the tumor suppressor p53, but differ in important structural features. The Grhl1 DNA-binding domain binds duplex DNA containing the consensus recognition element in a dimeric arrangement, supporting parsimonious target-sequence selection through two conserved arginine residues. We elucidate the molecular basis of a cancer-related mutation in Grhl1 involving one of these arginines, which completely abrogates DNA binding in biochemical assays and transcriptional activation of a reporter gene in a human cell line. Thus, our studies establish the structural basis of DNA target-site recognition by Grh transcription factors and reveal how tumor-associated mutations inactivate Grhl proteins. They may serve as points of departure for the structure-based development of Grh/CP2 inhibitors for therapeutic applications."	"Prenatal diagnosis of an 8q22.2-q23.3 deletion associated with bilateral cleft lip and palate and intrauterine growth restriction on fetal ultrasound. We present prenatal diagnosis of an interstitial 8q22.2-q23.3 deletion associated with bilateral cleft lip and palate and intrauterine growth restriction (IUGR) on fetal ultrasound. A 29-year-old, primigravid woman underwent elective amniocentesis at 17 weeks of gestation because of anxiety. Amniocentesis revealed a karyotype of 46, XX. However, level II ultrasound at 21 weeks of gestation revealed a fetus with IUGR and bilateral cleft lip and palate. Repeat amniocentesis was performed at 21 weeks of gestation, and array comparative genomic hybridization using uncultured amniocytes revealed a 13.5-Mb interstitial deletion of 8q22.2-q23.3 encompassing 37 Online Mendelian Inheritance of in Man (OMIM) genes including SPAG1, GRHL2, NCALD, RRM2B and ZFPM2. Polymorphic DNA marker analysis determined a paternal origin of the deletion. The pregnancy was subsequently terminated, and a malformed fetus was delivered with a depressed nose and bilateral cleft lip and palate. Prenatal diagnosis of facial cleft with IUGR should raise a suspicion of subtle chromosome deletions."	"GRHL2 Is Required for Collecting Duct Epithelial Barrier Function and Renal Osmoregulation. Collecting ducts make up the distal-most tubular segments of the kidney, extending from the cortex, where they connect to the nephron proper, into the medulla, where they release urine into the renal pelvis. During water deprivation, body water preservation is ensured by the selective transepithelial reabsorption of water into the hypertonic medullary interstitium mediated by collecting ducts. The collecting duct epithelium forms tight junctions composed of barrier-enforcing claudins and exhibits a higher transepithelial resistance than other segments of the renal tubule exhibit. However, the functional relevance of this strong collecting duct epithelial barrier is unresolved. Here, we report that collecting duct-specific deletion of an epithelial transcription factor, grainyhead-like 2 (GRHL2), in mice led to reduced expression of tight junction-associated barrier components, reduced collecting duct transepithelial resistance, and defective renal medullary accumulation of sodium and other osmolytes. In vitro, Grhl2-deficient collecting duct cells displayed increased paracellular flux of sodium, chloride, and urea. Consistent with these effects, Grhl2-deficient mice had diabetes insipidus, produced dilute urine, and failed to adequately concentrate their urine after water restriction, resulting in susceptibility to prerenal azotemia. These data indicate a direct functional link between collecting duct epithelial barrier characteristics, which appear to prevent leakage of interstitial osmolytes into urine, and body water homeostasis."	"A microdeletion in the GRHL2 Gene in two unrelated patients with congenital fibrosis of the extra ocular muscles. Congenital fibrosis of the extraocular muscles type 1 (CFEOM1) is known to be caused by mutations in KIF21A or TUBB3 or other known genes (SALL4, CHN1, HOXA1). However, affected children may harbor other genetic defects. Therefore, a candidate gene analysis (KIF21A, TUBB3 SALL4, CHN1, HOXA1) and a high-resolution array comparative genomic hybridization (arrayCGH) was performed in two unrelated children with sporadic CFEOM1. Two unrelated Saudi patients did not have any mutation(s) after sequencing the full coding regions of SALL4, CHN1, HOXA1, and TUBB3 genes; and exons 8, 20, and 21 of the KIF21A gene. However, arrayCGH revealed a 3.17 Kb deletion at chromosome 8p22 with copy number state equal to 1, indicating a heterozygous deletion. This deletion was absent in proband's mother or father or 220 unrelated healthy individuals of similar ethnicity. The deletion encompassed only one functional gene, GRHL2, which encodes a transcription factor. In humans, defects in this gene are a cause of non-syndromic sensorineural deafness, autosomal dominant type 28 (DFNA28). We speculate that GRHL2 gene may have a role in orbital innervations and the defect in this gene (deletion) may be related to the CFEOM1 phenotype in these two children."	"MicroRNA 122, Regulated by GRLH2, Protects Livers of Mice and Patients From Ethanol-Induced Liver Disease. Chronic, excessive alcohol consumption leads to alcoholic liver disease (ALD) characterized by steatosis, inflammation, and eventually cirrhosis. The hepatocyte specific microRNA 122 (MIR122) regulates hepatocyte differentiation and metabolism. We investigated whether an alcohol-induced decrease in level of MIR122 contributes to development of ALD. We obtained liver samples from 12 patients with ALD and cirrhosis and 9 healthy individuals (controls) and analyzed them by histology and immunohistochemistry. C57Bl/6 mice were placed on a Lieber-DeCarli liquid diet, in which they were fed ethanol for 8 weeks, as a model of ALD, or a control diet. These mice were also given injections of CCl4, to increase liver fibrosis, for 8 weeks. On day 28, mice with ethanol-induced liver disease and advanced fibrosis, and controls, were given injections of recombinant adeno-associated virus 8 vector that expressed the primary miR-122 transcript (pri-MIR122, to overexpress MIR122 in hepatocytes) or vector (control). Two weeks before ethanol feeding, some mice were given injections of a vector that expressed an anti-MIR122, to knock down its expression. Serum and liver tissues were collected; hepatocytes and liver mononuclear cells were analyzed by histology, immunoblots, and confocal microscopy. We performed in silico analyses to identify targets of MIR122 and chromatin immunoprecipitation quantitative polymerase chain reaction analyses in Huh-7 cells. Levels of MIR122 were decreased in liver samples from patients with ALD and mice on the Lieber-DeCarli diet, compared with controls. Transgenic expression of MIR122 in hepatocytes of mice with ethanol-induced liver disease and advanced fibrosis significantly reduced serum levels of alanine aminotransferase (ALT) and liver steatosis and fibrosis, compared with mice given injections of the control vector. Ethanol feeding reduced expression of pri-MIR122 by increasing expression of the spliced form of the transcription factor grainyhead like transcription factor 2 (GRHL2) in liver tissues from mice. Levels of GRHL2 also were increased in liver tissues from patients with ALD, compared with controls; increases correlated with decreases in levels of MIR122 in human liver. Mice given injections of the anti-MIR122 before ethanol feeding had increased steatosis, inflammation, and serum levels of alanine aminotransferase compared with mice given a control vector. Levels of hypoxia-inducible factor 1 alpha (HIF1α) mRNA, a target of MIR122, were increased in liver tissues from patients and mice with ALD, compared with controls. Mice with hepatocyte-specific disruption of Hif1α developed less-severe liver injury following administration of ethanol, injection of anti-MIR122, or both. Levels of MIR122 decrease in livers from patients with ALD and mice with ethanol-induced liver disease, compared with controls. Transcription of MIR122 is inhibited by GRHL2, which is increased in livers of mice and patients with ALD. Expression of an anti-MIR122 worsened the severity of liver damage following ethanol feeding in mice. MIR122 appears to protect the liver from ethanol-induced damage by reducing levels of HIF1α. These processes might be manipulated to reduce the severity of ALD in patients."	"GRHL2 suppresses tumor metastasis via regulation of transcriptional activity of RhoG in non-small cell lung cancer. The transcription factor, Grainyhead-like 2 (GRHL2), is involved in wound healing, epidermal integrity, and epithelial-to-mesenchymal transition (EMT) in various biological processes; however, the biological function of GRHL2 in non-small cell lung cancer (NSCLC) is unknown. In the current study, we investigated the effect of GRHL2 on cell growth and migration in NSCLC cell lines and clinical tissues. Immunohistochemical analysis of clinical NSCLC specimens revealed that patients with high GRHL2 expression were associated with poor prognosis compared to patients with low GRHL2 expression. GRHL2 overexpression promoted cell growth and colony formation, and simultaneously suppressed cell migration in NSCLC cells. Furthermore, GRHL2 decreased the transcriptional activity of RhoG by directly binding to the RhoG promoter region. These findings confirm that GRHL2 plays an important role in regulating cell proliferation and migration in NSCLC."	"Grainyhead-like 2 (GRHL2) regulates epithelial plasticity in pancreatic cancer progression. The epithelial-mesenchymal transition (EMT) and mesenchymal-epithelial transition (MET) contribute to cancer metastasis of pancreatic ductal adenocarcinoma (PDAC). We explored the role of grainyhead-like 2 (GRHL2), a suppressor of EMT, in the progression of PDAC. Expressions of GRHL2 were assessed using surgically resected PDAC tissues by immunohistochemistry analysis, and in vitro using human and mouse PDAC cells. Effects on epithelial plasticity and stemness of GRHL2 were examined in vitro using liver metastatic PDAC cells (CFPAC-1) with GRHL2 knockdown by specific siRNAs. GRHL2 has a significantly positive correlation with E-cadherin and CD133 in 155 resected human primary PDAC tissues. GRHL2 is highly expressed in liver metastatic cells than in primary invasive cells of both human and mouse PDAC, accompanied by a positive correlation with E-cadherin expression. GRHL2 knockdown CFPAC-1 cells demonstrated morphological changes into mesenchymal appearances and reduced proliferation through EMT. Notably, knockdown studies followed by flow cytometry analysis for a subpopulation of CD133+ showed that GRHL2 facilitates CFPAC-1 cells to maintain stem-like characters including self-renewal capacity and anoikis resistance. GRHL2 regulates epithelial plasticity along with stemness in PDAC, both of which are crucial for metastasis, implicating the possibility of GRHL2 as a therapeutic target for PDAC liver metastasis."	"Roles of Grainyhead-like transcription factors in cancer. The mammalian homologs of the D. melanogaster Grainyhead gene, Grainyhead-like 1-3 (GRHL1, GRHL2 and GRHL3), are transcription factors implicated in wound healing, tubulogenesis and cancer. Their induced target genes encode diverse epithelial cell adhesion molecules, while mesenchymal genes involved in cell migration and invasion are repressed. Moreover, GRHL2 suppresses the oncogenic epithelial-mesencyhmal transition, thereby acting as a tumor suppressor. Mechanisms, some involving established cancer-related signaling/transcription factor pathways (for example, Wnt, TGF-β, mir200, ZEB1, OVOL2, p63 and p300) and translational implications of the Grainyhead proteins in cancer are discussed in this review article."	"Grainyhead-like Transcription Factors in Craniofacial Development. Craniofacial development in vertebrates involves the coordinated growth, migration, and fusion of several facial prominences during embryogenesis, processes governed by strict genetic and molecular controls. A failure in any of the precise spatiotemporal sequences of events leading to prominence fusion often leads to anomalous facial, skull, and jaw formation-conditions termed craniofacial defects (CFDs). Affecting approximately 0.1% to 0.3% of live births, CFDs are a highly heterogeneous class of developmental anomalies, which are often underpinned by genetic mutations. Therefore, identifying novel disease-causing mutations in genes that regulate craniofacial development is a critical prerequisite to develop new preventive or therapeutic measures. The Grainyhead-like ( GRHL) transcription factors are one such gene family, performing evolutionarily conserved roles in craniofacial patterning. The antecedent member of this family, Drosophila grainyhead ( grh), is required for head skeleton development in fruit flies, loss or mutation of Grhl family members in mouse and zebrafish models leads to defects of both maxilla and mandible, and recently, mutations in human GRHL3 have been shown to cause or contribute to both syndromic (Van Der Woude syndrome) and nonsyndromic palatal clefts. In this review, we summarize the current knowledge regarding the craniofacial-specific function of the Grainyhead-like family in multiple model species, identify some of the major target genes regulated by the Grhl transcription factors in craniofacial patterning, and, by examining animal models, draw inferences as to how these data will inform the likely roles of GRHL factors in human CFDs comprising palatal clefting. By understanding the molecular networks regulated by Grhl2 and Grhl3 target genes in other systems, we can propose likely pathways that mediate the effects of these transcription factors in human palatogenesis."	"Transcriptional mechanisms coordinating tight junction assembly during epithelial differentiation. Epithelial tissues form a selective barrier via direct cell-cell interactions to separate and establish concentration gradients between the different compartments of the body. Proper function and formation of this barrier rely on the establishment of distinct intercellular junction complexes. These complexes include tight junctions, adherens junctions, desmosomes, and gap junctions. The tight junction is by far the most diverse junctional complex in the epithelial barrier. Its composition varies greatly across different epithelial tissues to confer various barrier properties. Thus, epithelial cells rely on tightly regulated transcriptional mechanisms to ensure proper formation of the epithelial barrier and to achieve tight junction diversity. Here, we review different transcriptional mechanisms utilized during embryogenesis and disease development to promote tight junction assembly and maintenance of intercellular barrier integrity. We focus particularly on the Grainyhead-like transcription factors and ligand-activated nuclear hormone receptors, two central families of proteins in epithelialization."	"DNA methylation variations are required for epithelial-to-mesenchymal transition induced by cancer-associated fibroblasts in prostate cancer cells. Widespread genome hypo-methylation and promoter hyper-methylation of epithelium-specific genes are hallmarks of stable epithelial-to-mesenchymal transition (EMT), which in prostate cancer (PCa) correlates with castration resistance, cancer stem cells generation, chemoresistance and worst prognosis. Exploiting our consolidated 'ex-vivo' system, we show that cancer-associated fibroblasts (CAFs) released factors have pivotal roles in inducing genome methylation changes required for EMT and stemness in EMT-prone PCa cells. By global DNA methylation analysis and RNA-Seq, we provide compelling evidence that conditioned media from CAFs explanted from two unrelated patients with advanced PCa, stimulates concurrent DNA hypo- and hyper-methylation required for EMT and stemness in PC3 and DU145, but not in LN-CaP and its derivative C4-2B, PCa cells. CpG island (CGI) hyper-methylation associates with repression of genes required for epithelial maintenance and invasion antagonism, whereas activation of EMT markers and stemness genes correlate with CGI hypo-methylation. Remarkably, methylation variations and EMT-regulated transcripts almost completely reverse qualitatively and quantitatively during MET. Unsupervised clustering analysis of the PRAD TCGA data set with the differentially expressed (DE) and methylated EMT signature, identified a gene cluster of DE genes defined by a CAF+ and AR- phenotype and worst diagnosis. This gene cluster includes the relevant factors for EMT and stemness, which display DNA methylation variations in regulatory regions inversely correlated to their expression changes, thus strongly sustaining the ex-vivo data. DNMT3A-dependent methylation is essential for silencing epithelial maintenance and EMT counteracting genes, such as CDH1 and GRHL2, that is, the direct repressor of ZEB1, the key transcriptional factor for EMT and stemness. Accordingly, DNMT3A knock-down prevents EMT entry. These results shed light on the mechanisms of establishment and maintenance of coexisting DNA hypo- and hyper-methylation patterns during cancer progression, the generation of EMT and cell stemness in advanced PCa, and may pave the way to new therapeutic implications."	"Potential protective role of Grainyhead-like genes in the development of clear cell renal cell carcinoma. The involvement of Grainyhead-like (GRHL) transcription factors in various cancers is well documented. However, little is known about their role in clear cell renal cell carcinoma (ccRCC). We discovered that the expression of two of these factors-GRHL1 and GRHL2-are downregulated in ccRCC samples, and their expression is correlated with the expression of VHL gene. This suggests a functional link between the GRHL transcription factors and one of the best known tumor suppressors. Although the GRHL genes are not mutated in ccRCC, some of the single nucleotide polymorphisms in these genes may indicate an increased risk of ccRCC development and/or may allow to assess patients' prognoses and predict their responses to various forms of therapy. Silencing of GRHL2 expression in non-tumorigenic kidney cell line results in increased cell proliferation, increased resistance to apoptosis, as well as changes in the levels of selected proteins involved in the pathogenesis of ccRCC. These changes support the potential role for GRHL2 as a suppressor of ccRCC."	"Prostate cancer: New AR co-regulator with dichotomous functions. NA"	"Novel Androgen Receptor Coregulator GRHL2 Exerts Both Oncogenic and Antimetastatic Functions in Prostate Cancer. Alteration to the expression and activity of androgen receptor (AR) coregulators in prostate cancer is an important mechanism driving disease progression and therapy resistance. Using a novel proteomic technique, we identified a new AR coregulator, the transcription factor Grainyhead-like 2 (GRHL2), and demonstrated its essential role in the oncogenic AR signaling axis. GRHL2 colocalized with AR in prostate tumors and was frequently amplified and upregulated in prostate cancer. Importantly, GRHL2 maintained AR expression in multiple prostate cancer model systems, was required for cell proliferation, enhanced AR's transcriptional activity, and colocated with AR at specific sites on chromatin to regulate genes relevant to disease progression. GRHL2 is itself an AR-regulated gene, creating a positive feedback loop between the two factors. The link between GRHL2 and AR also applied to constitutively active truncated AR variants (ARV), as GRHL2 interacted with and regulated ARVs and vice versa. These oncogenic functions of GRHL2 were counterbalanced by its ability to suppress epithelial-mesenchymal transition and cell invasion. Mechanistic evidence suggested that AR assisted GRHL2 in maintaining the epithelial phenotype. In summary, this study has identified a new AR coregulator with a multifaceted role in prostate cancer, functioning as an enhancer of the oncogenic AR signaling pathway but also as a suppressor of metastasis-related phenotypes. Cancer Res; 77(13); 3417-30. ©2017 AACR."	"Grainyhead-like 2 in development and cancer. Grainyhead-like 2 is a human homolog of Drosophila grainyhead. It inhibits epithelial-to-mesenchymal transition that is necessary for cell migration, and it is involved in neural tube closure, epithelial morphogenesis, and barrier formation during embryogenesis by regulation of the expression of cell junction proteins such as E-cadherin and vimentin. Cancer shares many common characters with development such as epithelial-to-mesenchymal transition. In addition to its important role in development, grainyhead-like 2 is implicated in carcinogenesis as well. However, the reports on grainyhead-like 2 in various cancers are controversial. Grainyhead-like 2 can act as either a tumor suppressor or an oncogene with the mechanisms not well elucidated. In this review, we summarized recent progress on grainyhead-like 2 in development and cancer in order to get an insight into the regulation network of grainyhead-like 2 and understand the roles of grainyhead-like 2 in various cancers."	"Induction of Mesenchymal-Epithelial Transitions in Sarcoma Cells. Phenotypic plasticity refers to a phenomenon in which cells transiently gain traits of another lineage. During carcinoma progression, phenotypic plasticity drives invasion, dissemination and metastasis. Indeed, while most of the studies of phenotypic plasticity have been in the context of epithelial-derived carcinomas, it turns out sarcomas, which are mesenchymal in origin, also exhibit phenotypic plasticity, with a subset of sarcomas undergoing a phenomenon that resembles a mesenchymal-epithelial transition (MET). Here, we developed a method comprising the miR-200 family and grainyhead-like 2 (GRHL2) to mimic this MET-like phenomenon observed in sarcoma patient samples.We sequentially express GRHL2 and the miR-200 family using cell transduction and transfection, respectively, to better understand the molecular underpinnings of these phenotypic transitions in sarcoma cells. Sarcoma cells expressing miR-200s and GRHL2 demonstrated enhanced epithelial characteristics in cell morphology and alteration of epithelial and mesenchymal biomarkers. Future studies using these methods can be used to better understand the phenotypic consequences of MET-like processes on sarcoma cells, such as migration, invasion, metastatic propensity, and therapy resistance."	"Expression and significance of GRHL2 in esophageal cancer. Esophageal cancer (EC) is one of the most common causes of cancer-related mortality in the world. Although much effort has been made to improve the 5-year survival rate of patients with EC, it still remains low due to diagnosis at an advanced stage, aggressive local invasion, early metastasis, and resistance to chemotherapy. Although grainyhead-like 2 (GRHL2) has attracted interest since it has been recently identified as a novel suppressor of the epithelial-mesenchymal transition, clinical values of GRHL2 and its relationship with the metastasis-related factors, such as hypoxia-inducible factor 1α (HIF-1α) and vascular endothelial growth factor (VEGF), remain unclear. In order to investigate the expression of GRHL2, HIF-1α, and VEGF, and their correlation with angiogenesis in EC, 63 patients with EC were examined. The expression of GRHL2, HIF-1α, and VEGF in tumor tissues was higher than that in adjacent tissues and was associated with tumor differentiation. GRHL2 expression was significantly correlated with lymph node metastasis and invasion depth, whereas VEGF expression was associated with tumor (TNM) stage. A significant correlation was found between the expression of GRHL2 and HIF-1α. The patients expressing low GRHL2 and high HIF-1α showed significant reduction in both overall survival rate and disease-free survival rate. The results demonstrated that abnormal expression of GRHL2 is common in EC, and low expression of GRHL2 accompanied by a high expression of HIF-1α indicates poor prognosis."	"Heterarchy of transcription factors driving basal and luminal cell phenotypes in human urothelium. Cell differentiation is affected by complex networks of transcription factors that co-ordinate re-organisation of the chromatin landscape. The hierarchies of these relationships can be difficult to dissect. During in vitro differentiation of normal human uro-epithelial cells, formaldehyde-assisted isolation of regulatory elements (FAIRE-seq) and RNA-seq was used to identify alterations in chromatin accessibility and gene expression changes following activation of the nuclear receptor peroxisome proliferator-activated receptor gamma (PPARγ) as a differentiation-initiating event. Regions of chromatin identified by FAIRE-seq, as having altered accessibility during differentiation, were found to be enriched with sequence-specific binding motifs for transcription factors predicted to be involved in driving basal and differentiated urothelial cell phenotypes, including forkhead box A1 (FOXA1), P63, GRHL2, CTCF and GATA-binding protein 3 (GATA3). In addition, co-occurrence of GATA3 motifs was observed within subsets of differentiation-specific peaks containing P63 or FOXA1. Changes in abundance of GRHL2, GATA3 and P63 were observed in immunoblots of chromatin-enriched extracts. Transient siRNA knockdown of P63 revealed that P63 favoured a basal-like phenotype by inhibiting differentiation and promoting expression of basal marker genes. GATA3 siRNA prevented differentiation-associated downregulation of P63 protein and transcript, and demonstrated positive feedback of GATA3 on PPARG transcript, but showed no effect on FOXA1 transcript or protein expression. This approach indicates that as a transcriptionally regulated programme, urothelial differentiation operates as a heterarchy, wherein GATA3 is able to co-operate with FOXA1 to drive expression of luminal marker genes, but that P63 has potential to transrepress expression of the same genes."	"Suppression of the grainyhead transcription factor 2 gene (GRHL2) inhibits the proliferation, migration, invasion and mediates cell cycle arrest of ovarian cancer cells. Previously, we have identified the Grainyhead transcription factor 2 gene (GRHL2) as notably hypomethylated in high-grade (HG) serous epithelial ovarian tumors, compared with normal ovarian tissues. GRHL2 is known for its functions in normal tissue development and wound healing. In the context of cancer, the role of GRHL2 is still ambiguous as both tumorigenic and tumor suppressive functions have been reported for this gene, although a role of GRHL2 in maintaining the epithelial status of cancer cells has been suggested. In this study, we report that GRHL2 is strongly overexpressed in both low malignant potential (LMP) and HG serous epithelial ovarian tumors, which probably correlates with its hypomethylated status. Suppression of the GRHL2 expression led to a sharp decrease in cell proliferation, migration and invasion and induced G1 cell cycle arrest in epithelial ovarian cancer (EOC) cells displaying either epithelial (A2780s) or mesenchymal (SKOV3) phenotypes. However, no phenotypic alterations were observed in these EOC cell lines following GRHL2 silencing. Gene expression profiling and consecutive canonical pathway and network analyses confirmed these data, as in both these EOC cell lines, GRHL2 ablation was associated with the downregulation of various genes and pathways implicated in cell growth and proliferation, cell cycle control and cellular metabolism. Taken together, our data are indicative for a strong oncogenic potential of the GRHL2 gene in EOC progression and support recent findings on the role of GRHL2 as one of the major phenotypic stability factors (PSFs) that stabilize the highly aggressive/metastatic hybrid epithelial/mesenchymal (E/M) phenotype of cancer cells."	"The GRHL2/ZEB Feedback Loop-A Key Axis in the Regulation of EMT in Breast Cancer. More than 90% of cancer-related deaths are caused by metastasis. Epithelial-to-Mesenchymal Transition (EMT) causes tumor cell dissemination while the reverse process, Mesenchymal-to-Epithelial Transition (MET) allows cancer cells to grow and establish a potentially deadly metastatic lesion. Recent evidence indicates that in addition to E and M, cells can adopt a stable hybrid Epithelial/Mesenchymal (E/M) state where they can move collectively leading to clusters of Circulating Tumor Cells-the &quot;bad actors&quot; of metastasis. EMT is postulated to occur in all four major histological breast cancer subtypes. Here, we identify a set of genes strongly correlated with CDH1 in 877 cancer cell lines, and differentially expressed genes in cell lines overexpressing ZEB1, SNAIL, and TWIST. GRHL2 and ESRP1 appear in both these sets and also correlate with CDH1 at the protein level in 40 breast cancer specimens. Next, we find that GRHL2 and CD24 expression coincide with an epithelial character in human mammary epithelial cells. Further, we show that high GRHL2 expression is highly correlated with worse relapse-free survival in all four subtypes of breast cancer. Finally, we integrate CD24, GRHL2, and ESRP1 into a mathematical model of EMT regulation to validate the role of these players in EMT. Our data analysis and modeling results highlight the relationships among multiple crucial EMT/MET drivers including ZEB1, GRHL2, CD24, and ESRP1, particularly in basal-like breast cancers, which are most similar to triple-negative breast cancer (TNBC) and are considered the most dangerous subtype. J. Cell. Biochem. 118: 2559-2570, 2017. © 2017 Wiley Periodicals, Inc."	"Neural tube closure: cellular, molecular and biomechanical mechanisms. Neural tube closure has been studied for many decades, across a range of vertebrates, as a paradigm of embryonic morphogenesis. Neurulation is of particular interest in view of the severe congenital malformations - 'neural tube defects' - that result when closure fails. The process of neural tube closure is complex and involves cellular events such as convergent extension, apical constriction and interkinetic nuclear migration, as well as precise molecular control via the non-canonical Wnt/planar cell polarity pathway, Shh/BMP signalling, and the transcription factors Grhl2/3, Pax3, Cdx2 and Zic2. More recently, biomechanical inputs into neural tube morphogenesis have also been identified. Here, we review these cellular, molecular and biomechanical mechanisms involved in neural tube closure, based on studies of various vertebrate species, focusing on the most recent advances in the field."	"Grhl2 reduces invasion and migration through inhibition of TGFβ-induced EMT in gastric cancer. Metastasis is one of the typical features of malignancy that significantly increases cancer-related mortality. Recent studies have shown that epithelial-mesenchymal transition (EMT) is closely related to the invasion and migration of cancer cells. Grainyhead-like 2 (Grhl2), a transcription factor, has been reported to be associated with several tumor processes including EMT. In the previous study, we have reported that Grhl2 functioned as a tumor suppressor in proliferation and apoptosis of gastric cancer. Here we aim to explore the effects of Grhl2 on invasion and migration of gastric cancer and further clarify its possible underlying mechanisms. As a result, in both SGC7901 and MKN45 cells, Grhl2 overexpression significantly inhibited the ability of invasion and migration. In addition, preliminary experiments showed that Grhl2 reduces the protein expression of matrix metalloproteinase-2, -7 and -9 (MMP-2, MMP-7 and MMP-9). Most importantly, Grhl2 antagonizes transforming growth factor-β (TGFβ)-induced EMT, and inhibition of TGFβ signaling pathways can restore Grhl2 expression. Finally, the results of subcutaneous xenograft model indicated that Grhl2 suppresses the growth of gastric cancer and reverses EMT process in vivo. Meanwhile, the metastatic tumor model further confirmed the inhibition of Grhl2 on metastasis of gastric cancer. Taken together, our findings proved that Grhl2, functioned as a tumor suppressor, reduces the invasion and migration through inhibition of TGFβ-induced EMT in gastric cancer."	"MicroRNA-194 regulates keratinocyte proliferation and differentiation by targeting Grainyhead-like 2 in psoriasis. MicroRNAs (miRNAs) are currently emerged as important regulators in psoriasis. Psoriasis is characterized by hyperproliferation and impaired differentiation of keratinocytes in skin lesions. miR-194 is a well-known regulator of cell proliferation and differentiation. However, the role of miR-194 in psoriasis pathogenesis remains unclear. In this study we aimed to investigate the role of miR-194 in keratinocyte hyperproliferation and differentiation. We found that miR-194 was significantly downregulated in psoriasis lesional skin. Overexpression of miR-194 inhibited the proliferation and promoted the differentiation of primary human keratinocytes, whereas miR-194 suppression promoted the proliferation and inhibited their differentiation. Bioinformatic analysis predicted that the Grainyhead-like 2 (GRHL2) was a target gene of miR-194, which we further validated with a dual-luciferase reporter assay, real-time quantitative polymerase chain reaction (RT-qPCR), and Western blot analysis. The effect of miR-194 on cell proliferation and differentiation was significantly reversed by overexpression of GRHL2. Moreover, the expression of miR-194 and GRHL2 was inversely correlated in psoriasis lesional skin. Taken together, our results suggest that miR-194 inhibits the proliferation and promotes the differentiation of keratinocytes through targeting GRHL2. The downregulation of miR-194 expression may contribute to the pathogenesis of psoriasis and targeting miR-194 may represent a novel and potential therapeutic strategy for psoriasis."	"Clinical Validity of Detecting Circulating Tumor Cells by AdnaTest Assay Compared With Direct Detection of Tumor mRNA in Stabilized Whole Blood, as a Biomarker Predicting Overall Survival for Metastatic Castration-Resistant Prostate Cancer Patients. Circulating tumor cell (CTC) number measured with the CellSearch assay is prognostic for survival in metastatic castration-resistant prostate cancer before and after therapy. Using a standard operating protocol for sample collection, processing, and analysis, we compared detection rates of CellSearch performed using US Food and Drug Administration-cleared methodology with a second positive selection assay, AdnaTest, and a nonselection polymerase chain reaction (PCR)-based (direct detection PCR [DDPCR]) assay in 55 blood samples from 47 men with progressive metastatic castration-resistant prostate cancer. AdnaTest requires processing within 4 hours of the draw and detects KLK3, PSMA, and EGFR transcripts in cells captured on magnetic beads. The DDPCR assay can be processed up to 7 days after a draw and detects KLK2, KLK3, HOXB13, GRHL2, and FOXA1 genes. AdnaTest and DDPCR were considered positive if at least 1 transcript was detected. AdnaTest detected CTCs in 34 samples (62%; 95% confidence interval [CI], 48%-75%), of which 23 (68%) had unfavorable CTC counts by CellSearch. A positive DDPCR result was seen in 38 cases (69%; 95% CI, 55%-81%), including 24 (63%) with unfavorable CellSearch CTC counts. CellSearch found unfavorable CTC counts in 25 samples (45%; 95% CI, 33%-58%). Sensitivities were similar between the AdnaTest and DDPCR assays, and both were more sensitive than CellSearch. Concordance probability estimates (possible values, 0.5-1.0) associating the biomarker result with survival were similar: 0.77 (SE, 0.07) for AdnaTest, 0.72 (SE, 0.08) for DDPCR, and 0.76 (SE, 0.06) for CellSearch. Overall detection rates between the AdnaTest and DDPCR assays were similar, and both were superior to CellSearch. The DDPCR assay required the lowest blood volume, least on-site processing, and longest stability for batch processing."	"Marked overlap of four genetic syndromes with dyskeratosis congenita confounds clinical diagnosis. Dyskeratosis congenita is a highly pleotropic genetic disorder. This heterogeneity can lead to difficulties in making an accurate diagnosis and delays in appropriate management. The aim of this study was to determine the underlying genetic basis in patients presenting with features of dyskeratosis congenita and who were negative for mutations in the classical dyskeratosis congenita genes. By whole exome and targeted sequencing, we identified biallelic variants in genes that are not associated with dyskeratosis congenita in 17 individuals from 12 families. Specifically, these were homozygous variants in USB1 (8 families), homozygous missense variants in GRHL2 (2 families) and identical compound heterozygous variants in LIG4 (2 families). All patients had multiple somatic features of dyskeratosis congenita but not the characteristic short telomeres. Our case series shows that biallelic variants in USB1, LIG4 and GRHL2, the genes mutated in poikiloderma with neutropenia, LIG4/Dubowitz syndrome and the recently recognized ectodermal dysplasia/short stature syndrome, respectively, cause features that overlap with dyskeratosis congenita. Strikingly, these genes also overlap in their biological function with the known dyskeratosis congenita genes that are implicated in telomere maintenance and DNA repair pathways. Collectively, these observations demonstrate the marked overlap of dyskeratosis congenita with four other genetic syndromes, confounding accurate diagnosis and subsequent management. This has important implications for establishing a genetic diagnosis when a new patient presents in the clinic. Patients with clinical features of dyskeratosis congenita need to have genetic analysis of USB1, LIG4 and GRHL2 in addition to the classical dyskeratosis congenita genes and telomere length measurements."	"Identification of a novel progenitor cell marker, grainyhead-like 2 in the developing pituitary. Pituitary stem/progenitor cells give rise to all of the endocrine cell types within the pituitary gland and are necessary for both development and gland homeostasis. Recent studies have identified several key factors that characterize the progenitor cell population. However, little is known about the factors that regulate progenitor cell differentiation and maintenance. Therefore, it is crucial to identify novel factors that help elucidate mechanisms of progenitor cell function in the developing pituitary. Our studies are the first to characterize the expression of Grainyhead-like 2 (GRHL2), a transcription factor known to regulate progenitor cell plasticity, in the developing pituitary. Our studies show GRHL2 expression is highest in the embryonic and early postnatal pituitary and is localized in pituitary progenitor cells. We demonstrate GRHL2 expression is changed in Notch2 cKO and Prop1<sup>df/df</sup> mice, mouse models that display progenitor cell number defects. In addition, our studies indicate a potential relationship between Notch signaling and GRHL2 expression in the developing pituitary. Taken together, our results indicate GRHL2 as a novel progenitor cell maker in the developing pituitary that may contribute to progenitor cell function and maintenance. Developmental Dynamics 245:1097-1106, 2016. © 2016 Wiley Periodicals, Inc."	"AR-V7 Transcripts in Whole Blood RNA of Patients with Metastatic Castration Resistant Prostate Cancer Correlate with Response to Abiraterone Acetate. The expression of AR-V7 (androgen receptor splice variant) 7 in circulating tumor cells has been associated with resistance to abiraterone and enzalutamide in patients with metastatic castration resistant prostate cancer. We used a sensitive, whole blood reverse transcriptase-polymerase chain reaction assay that does not require circulating tumor cell enrichment to correlate outcomes of abiraterone with whole blood expression of AR-V7 and other prostate cancer associated transcripts. We assessed the expression of AR-V7, FOXA1, GRHL2, HOXB13, KLK2, KLK3 and TMPRSS2:ERG mRNA in 2.5 ml whole blood from each of 27 patients with metastatic castration resistant prostate cancer and 33 controls without cancer as the discovery cohort. Cycle threshold values of controls with the highest gene expression were set as the threshold for a positive test. Thresholds were then applied to a validation cohort of 37 patients with metastatic castration resistant prostate cancer who were commencing abiraterone. Gene expression was correlated with the prostate specific antigen response rate using the chi-square test, and with time to prostate specific antigen progression and overall survival using the log rank test. In the discovery cohort 3 of 27 patients (11.1%) with metastatic castration resistant prostate cancer were AR-V7 positive vs 4 of 37 (10.8%) in the validation cohort. In the validation cohort patients with a positive AR-V7 test had a lower prostate specific antigen response rate (0% vs 42%, p = 0.27) together with shorter median prostate specific antigen progression (0.7 vs 4.0 months, p &lt;0.001) and median overall survival (5.5 vs 22.1 months, p &lt;0.001). Reverse transcriptase-polymerase chain reaction detection of AR-V7 transcripts in whole blood was associated with inferior outcomes in patients treated with abiraterone. These results reinforce the potential usefulness of AR-V7 as a prognostic and predictive biomarker for metastatic castration resistant prostate cancer."	"Mesenchymal-Epithelial Transition in Sarcomas Is Controlled by the Combinatorial Expression of MicroRNA 200s and GRHL2. Phenotypic plasticity involves a process in which cells transiently acquire phenotypic traits of another lineage. Two commonly studied types of phenotypic plasticity are epithelial-mesenchymal transition (EMT) and mesenchymal-epithelial transition (MET). In carcinomas, EMT drives invasion and metastatic dissemination, while MET is proposed to play a role in metastatic colonization. Phenotypic plasticity in sarcomas is not well studied; however, there is evidence that a subset of sarcomas undergo an MET-like phenomenon. While the exact mechanisms by which these transitions occur remain largely unknown, it is likely that some of the same master regulators that drive EMT and MET in carcinomas also act in sarcomas. In this study, we combined mathematical models with bench experiments to identify a core regulatory circuit that controls MET in sarcomas. This circuit comprises the microRNA 200 (miR-200) family, ZEB1, and GRHL2. Interestingly, combined expression of miR-200s and GRHL2 further upregulates epithelial genes to induce MET. This effect is phenocopied by downregulation of either ZEB1 or the ZEB1 cofactor, BRG1. In addition, an MET gene expression signature is prognostic for improved overall survival in sarcoma patients. Together, our results suggest that a miR-200, ZEB1, GRHL2 gene regulatory network may drive sarcoma cells to a more epithelial-like state and that this likely has prognostic relevance."	"[Association between grainyhead-like 2 gene polymorphisms and noise-induced hearing loss]. To investigate association between genetic polymorphism in the grainyhead-like 2 gene (GRHL2) and noise-induced hearing loss (NIHL) in the Chinese population. A matched case-control association study was employed, In which, 3 790 workers exposed to continuous and steady-state occupational noise in a steel factory participated. The questionnaires were adopted to collect individual features and audiometry tests performed. In the sstudy, 286 subjects were diagnosed as cases, Which were each designated on the basis of the matched criterion, and 286 paired samples were selected finally. Noise intensity was measured according to the standards given in 'Measurement of Noise in the Workplace'(Occupational Health Standard of the People's Republic of China, GBZ/T189.8-2007). Cumulative noise exposure (CNE) was calculated, according to monitoring data on A-weighed sound pressure level and employment time. Genomic DNA was obtained from peripheral blood samples using 2 mL DNA extraction Kit following the manufacturer's protocol. Five single nucleotide polymorphisms (SNPs) of GRHL2 were genotyped by multiplex SNP genotyping kit. The continuous variables and categorical variables were analyzed by t-test and chi-square test respectively. Multivariate Logistic regression was used to test the association between genetic frequency and disease status, with adjustments for the possible confounding variables. The haplotypes were established and their frequencies in the two groups were assessed by haploview and phase softwares. All the five SNPs (rs3735713, rs3824090, rs3735714, rs3735715 and rs611419) were in Hardy-Weinberg equilibrium (HWE) (P&gt;0.05). The subjects carrying rs3735715 GG genotype had a higher NIHL risk than those carrying the GA genotype under the co-dominant model (OR=0.644, 95% CI: 0.442-0.939, P=0.022) after adjustment for height, blood pressure, drinking status and smoking status. After being stratified by CNE, in the CNE ≥ 98 dB (A) group, rs3735715 polymorphism was associated with the NIHL under the co-dominant model (OR=0.509, 95% CI: 0.281-0.923, P=0.026) after adjustment for height, blood pressure, drinking status and smoking status as well. However, no statistical significant difference was found in variant genotypes of the other SNPs between the case and control subjects. Four-locus (rs3735713, rs3824090, rs3735714 and rs3735715) haplotypes were constructed, and no risk or protective haplotypes was identified. It is suggested that GRHL2 polymorphisms may be associated with development of NIHL."	"Genetic Variation in POU4F3 and GRHL2 Associated with Noise-Induced Hearing Loss in Chinese Population: A Case-Control Study. Noise-induced hearing loss (NIHL) is an important occupational disease worldwide resulting from interactions between genetic and environmental factors. The purpose of this study was to examine whether genetic variations in POU4F3 and GRHL2 may influence susceptibility to NIHL in the Chinese population. A matched case-control study was carried out among 293 hearing loss individuals and 293 normal hearing workers drawn from a population of 3790 noise-exposed workers. Ten single-nucleotide polymorphisms (SNPs) in POU4F3 and GRHL2 were selected and genotyped. Logistic regression was performed to analyze the main effects of SNPs and the interactions between noise exposure and SNPs. Moreover, the interactions between predictor haplotypes and noise exposure were also analyzed. Analysis revealed that the CC genotype of rs1981361 in the GRHL2 gene was associated with a higher risk of NIHL (adjusted OR = 1.59; 95% CI: 1.08-2.32, p = 0.018). Additionally, the GG genotype of rs3735715 in the GRHL2 gene was also a risk genotype (adjusted OR = 1.48; 95% CI: 1.01-2.19, p = 0.046). Significant interactions were found between rs3735715, rs1981361 (GRHL2), rs1368402 as well as rs891969 (POU4F3) and noise exposure in the high-level exposure groups. Furthermore, the protective haplotype CA in the POU4F3 gene and the risk haplotype GCCG in the GRHL2 gene were identified combined with noise exposure. These results indicated that GRHL2 might be an NIHL susceptibility gene, but the effect of POU4F3 on NIHL could only be detected when taking noise exposure into account, and their effects were enhanced by higher levels of noise exposure. However, the differences were not significant after the Bonferroni correction was applied. These results should be seen as suggestive."	"Grainyhead-like 2 inhibits the coactivator p300, suppressing tubulogenesis and the epithelial-mesenchymal transition. Developmental morphogenesis and tumor progression require a transient or stable breakdown of epithelial junctional complexes to permit programmed migration, invasion, and anoikis resistance, characteristics endowed by the epithelial-mesenchymal transition (EMT). The epithelial master-regulatory transcription factor Grainyhead-like 2 (GRHL2) suppresses and reverses EMT, causing a mesenchymal-epithelial transition to the default epithelial phenotype. Here we investigated the role of GRHL2 in tubulogenesis of Madin-Darby canine kidney cells, a process requiring transient, partial EMT. GRHL2 was required for cystogenesis, but it suppressed tubulogenesis in response to hepatocyte growth factor. Surprisingly, GRHL2 suppressed this process by inhibiting the histone acetyltransferase coactivator p300, preventing the induction of matrix metalloproteases and other p300-dependent genes required for tubulogenesis. A 13-amino acid region of GRHL2 was necessary for inhibition of p300, suppression of tubulogenesis, and interference with EMT. The results demonstrate that p300 is required for partial or complete EMT occurring in tubulogenesis or tumor progression and that GRHL2 suppresses EMT in both contexts through inhibition of p300."	"Grainyhead-like 2 Reverses the Metabolic Changes Induced by the Oncogenic Epithelial-Mesenchymal Transition: Effects on Anoikis. Resistance to anoikis is a prerequisite for tumor metastasis. The epithelial-to-mesenchymal transition (EMT) allows tumor cells to evade anoikis. The wound-healing regulatory transcription factor Grainyhead-like 2 (GRHL2) suppresses/reverses EMT, accompanied by suppression of the cancer stem cell (CSC) phenotype and by resensitization to anoikis. Here, the effects of GRHL2 upon intracellular metabolism in the context of reversion of the EMT/CSC phenotype, with a view toward understanding how these effects promote anoikis sensitivity, were investigated. EMT enhanced mitochondrial oxidative metabolism. Although this was accompanied by higher accumulation of superoxide, the overall level of reactive oxygen species (ROS) declined, due to decreased hydrogen peroxide. Glutamate dehydrogenase 1 (GLUD1) expression increased in EMT, and this increase, via the product α-ketoglutarate (α-KG), was important for suppressing hydrogen peroxide and protecting against anoikis. GRHL2 suppressed GLUD1 gene expression, decreased α-KG, increased ROS, and sensitized cells to anoikis. These results demonstrate a mechanistic role for GRHL2 in promoting anoikis through metabolic alterations. Mol Cancer Res; 14(6); 528-38. ©2016 AACR."	"Genetics of vestibular disorders: pathophysiological insights. The two most common vestibular disorders are motion sickness and vestibular migraine, affecting 30 and 1-2% of the population respectively. Both are related to migraine and show a familial trend. Bilateral vestibular hypofunction is a rare condition, and some of patients also present cerebellar ataxia and neuropathy. We present recent advances in the genetics of vestibular disorders with familial aggregation. The clinical heterogeneity observed in different relatives of the same families suggests a variable penetrance and the interaction of several genes in each family. Some Mendelian sensorineural hearing loss also exhibits vestibular dysfunction, including DFNA9, DFNA11, DFNA15 and DFNA28. However, the most relevant finding during the past years is the familial clustering observed in Meniere's disease. By using whole exome sequencing and combining bioinformatics tools, novel variants in DTNA and FAM136A genes have been identified in familial Meniere's disease, and this genomic strategy will facilitate the discovery of the genetic basis of familial vestibular disorders."	"Stability of the hybrid epithelial/mesenchymal phenotype. Epithelial-to-Mesenchymal Transition (EMT) and its reverse - Mesenchymal to Epithelial Transition (MET) - are hallmarks of cellular plasticity during embryonic development and cancer metastasis. During EMT, epithelial cells lose cell-cell adhesion and gain migratory and invasive traits either partially or completely, leading to a hybrid epithelial/mesenchymal (hybrid E/M) or a mesenchymal phenotype respectively. Mesenchymal cells move individually, but hybrid E/M cells migrate collectively as observed during gastrulation, wound healing, and the formation of tumor clusters detected as Circulating Tumor Cells (CTCs). Typically, the hybrid E/M phenotype has largely been tacitly assumed to be transient and 'metastable'. Here, we identify certain 'phenotypic stability factors' (PSFs) such as GRHL2 that couple to the core EMT decision-making circuit (miR-200/ZEB) and stabilize hybrid E/M phenotype. Further, we show that H1975 lung cancer cells can display a stable hybrid E/M phenotype and migrate collectively, a behavior that is impaired by knockdown of GRHL2 and another previously identified PSF - OVOL. In addition, our computational model predicts that GRHL2 can also associate hybrid E/M phenotype with high tumor-initiating potential, a prediction strengthened by the observation that the higher levels of these PSFs may be predictive of poor patient outcome. Finally, based on these specific examples, we deduce certain network motifs that can stabilize the hybrid E/M phenotype. Our results suggest that partial EMT, i.e. a hybrid E/M phenotype, need not be 'metastable', and strengthen the emerging notion that partial EMT, but not necessarily a complete EMT, is associated with aggressive tumor progression. "	"A mutation in the tuft mouse disrupts TET1 activity and alters the expression of genes that are crucial for neural tube closure. Genetic variations affecting neural tube closure along the head result in malformations of the face and brain. Neural tube defects (NTDs) are among the most common birth defects in humans. We previously reported a mouse mutant called tuft that arose spontaneously in our wild-type 3H1 colony. Adult tuft mice present midline craniofacial malformations with or without an anterior cephalocele. In addition, affected embryos presented neural tube closure defects resulting in insufficient closure of the anterior neuropore or exencephaly. Here, through whole-genome sequencing, we identified a nonsense mutation in the Tet1 gene, which encodes a methylcytosine dioxygenase (TET1), co-segregating with the tuft phenotype. This mutation resulted in premature termination that disrupts the catalytic domain that is involved in the demethylation of cytosine. We detected a significant loss of TET enzyme activity in the heads of tuft embryos that were homozygous for the mutation and had NTDs. RNA-Seq transcriptome analysis indicated that multiple gene pathways associated with neural tube closure were dysregulated in tuft embryo heads. Among them, the expressions of Cecr2, Epha7 and Grhl2 were significantly reduced in some embryos presenting neural tube closure defects, whereas one or more components of the non-canonical WNT signaling pathway mediating planar cell polarity and convergent extension were affected in others. We further show that the recombinant mutant TET1 protein was capable of entering the nucleus and affected the expression of endogenous Grhl2 in IMCD-3 (inner medullary collecting duct) cells. These results indicate that TET1 is an epigenetic determinant for regulating genes that are crucial to closure of the anterior neural tube and its mutation has implications to craniofacial development, as presented by the tuft mouse."	"Grainyhead-like 2 regulates epithelial plasticity and stemness in oral cancer cells. Grainyhead-like 2 (GRHL2) is one of the three mammalian homologues of Drosophila Grainyhead involved in epithelial morphogenesis. We recently showed that GRHL2 also controls normal epithelial cell proliferation and differentiation. In this study, we investigated the role of GRHL2 in oral carcinogenesis and the underlying mechanism. GRHL2 expression was elevated in cells and tissues of oral squamous cell carcinomas (OSCCs) compared with normal counterparts. Knockdown of GRHL2 resulted in the loss of in vivo tumorigenicity, cancer stemness and epithelial phenotype of oral cancer cells. GRHL2 loss also inhibited oral cancer cell proliferation and colony formation. GRHL2 regulated the expression of miR-200 family and Octamer-binding transcription factor 4 (Oct-4) genes through direct promoter DNA binding. Overexpression of miR-200 genes in the oral cancer cells depleted of GRHL2 partially restored the epithelial phenotype, proliferative rate and cancer stemness, indicating that miR-200 genes in part mediate the functional effects of GRHL2. Taken together, this study demonstrates a novel connection between GRHL2 and miR-200, and supports protumorigenic effect of GRHL2 on OSCCs."	"Distinct Expression Patterns Of Causative Genes Responsible For Hereditary Progressive Hearing Loss In Non-Human Primate Cochlea. Hearing impairment is the most frequent sensory deficit in humans. Deafness genes, which harbor pathogenic mutations that have been identified in families with hereditary hearing loss, are commonly expressed in the auditory end organ or the cochlea and may contribute to normal hearing function, yet some of the mouse models carrying these mutations fail to recapitulate the hearing loss phenotype. In this study, we find that distinct expression patterns of those deafness genes in the cochlea of a non-human primate, the common marmoset (Callithrix jacchus). We examined 20 genes whose expression in the cochlea has already been reported. The deafness genes GJB3, CRYM, GRHL2, DFNA5, and ATP6B1 were expressed in marmoset cochleae in patterns different from those in mouse cochleae. Of note, all those genes are causative for progressive hearing loss in humans, but not in mice. The other tested genes, including the deafness gene COCH, in which mutation recapitulates deafness in mice, were expressed in a similar manner in both species. The result suggests that the discrepancy in the expression between rodents and primates may account for the phenotypic difference. This limitation of the rodent models can be bypassed by using non-human primate models such as the marmoset. "	"Grainyhead-like 2 downstream targets act to suppress epithelial-to-mesenchymal transition during neural tube closure. The transcription factor grainyhead-like 2 (GRHL2) is expressed in non-neural ectoderm (NNE) and Grhl2 loss results in fully penetrant cranial neural tube defects (NTDs) in mice. GRHL2 activates expression of several epithelial genes; however, additional molecular targets and functional processes regulated by GRHL2 in the NNE remain to be determined, as well as the underlying cause of the NTDs in Grhl2 mutants. Here, we find that Grhl2 loss results in abnormal mesenchymal phenotypes in the NNE, including aberrant vimentin expression and increased cellular dynamics that affects the NNE and neural crest cells. The resulting loss of NNE integrity contributes to an inability of the cranial neural folds to move toward the midline and results in NTD. Further, we identified Esrp1, Sostdc1, Fermt1, Tmprss2 and Lamc2 as novel NNE-expressed genes that are downregulated in Grhl2 mutants. Our in vitro assays show that they act as suppressors of the epithelial-to-mesenchymal transition (EMT). Thus, GRHL2 promotes the epithelial nature of the NNE during the dynamic events of neural tube formation by both activating key epithelial genes and actively suppressing EMT through novel downstream EMT suppressors."	"GRHL2-miR-200-ZEB1 maintains the epithelial status of ovarian cancer through transcriptional regulation and histone modification. Epithelial-mesenchymal transition (EMT), a biological process by which polarized epithelial cells convert into a mesenchymal phenotype, has been implicated to contribute to the molecular heterogeneity of epithelial ovarian cancer (EOC). Here we report that a transcription factor--Grainyhead-like 2 (GRHL2) maintains the epithelial phenotype. EOC tumours with lower GRHL2 levels are associated with the Mes/Mesenchymal molecular subtype and a poorer overall survival. shRNA-mediated knockdown of GRHL2 in EOC cells with an epithelial phenotype results in EMT changes, with increased cell migration, invasion and motility. By ChIP-sequencing and gene expression microarray, microRNA-200b/a is identified as the direct transcriptional target of GRHL2 and regulates the epithelial status of EOC through ZEB1 and E-cadherin. Our study demonstrates that loss of GRHL2 increases the levels of histone mark H3K27me3 on promoters and GRHL2-binding sites at miR-200b/a and E-cadherin genes. These findings support GRHL2 as a pivotal gatekeeper of EMT in EOC via miR-200-ZEB1."	"GRHL2 genetic polymorphisms may confer a protective effect against sudden sensorineural hearing loss. Genetic polymorphisms in grainyhead‑like 2 (GRHL2) variants were examined for their suspected association with sudden sensorineural hearing loss (SSHL). Between January 2009 and April 2014, 190 patients with SSHL, who were diagnosed at the Departments of Otorhinolaryngology Head and Neck Surgery at Kaihua People's Hospital and Hangzhou First People's Hospital, were selected for the present study and defined as the SSHL group. A group of 210 healthy individuals were defined as the control group. Polymerase chain reaction (PCR)‑restriction fragment length polymorphism was used to detect GRHL2 genotypes, using genomic DNA isolated from peripheral blood as PCR templates. GRHL2 rs611419 genetic polymorphisms conferred a protective effect against SSHL (AT+TT vs. AA: OR=0.63, 95% CI=0.41‑0.98, P=0.038). In addition, rs10955255 polymorphisms were associated with a reduced risk of SSHL (AA vs. GG: OR=0.54, 95% CI=0.31‑0.95, P=0.032; GA+AA vs. GG: OR=0.58, 95% CI=0.38‑0.89, P=0.012). Combined genotypes of rs611419, rs10955255 and rs6989650 in the GRHL2 gene are also associated with a reduced risk of SSHL (P=0.035). In subjects who consumed alcohol, co‑occurrence of 3‑8 variant alleles conferred increased resistance to SSHL, compared with the occurrence of 0‑2 variant alleles (OR=0.40, 95% CI=0.21‑0.76, P=0.004). GRHL2 genetic polymorphisms, rs611419 and rs10955255, have a protective role against SSHL and reduce the risk of SSHL. However, rs6989650 is not associated with SSHL."	"MiR-217 is down-regulated in psoriasis and promotes keratinocyte differentiation via targeting GRHL2. MiR-217 is a well-known tumor suppressor, and its down-regulation has been shown in a wide range of solid and leukaemic cancers. However, the biological role of miR-217 in psoriasis pathogenesis, especially in keratinocyte hyperproliferation and differentiation, is not clearly understood. In this study, we found the expression of miR-217 was markedly down-regulated in psoriasis keratinocytes of psoriatic patients. In addition, overexpression of miR-217 inhibited the proliferation and promoted the differentiation of primary human keratinocytes. On the contrary, inhibition of endogenous miR-217 increased cell proliferation and delayed differentiation. Furthermore, Grainyhead-like 2 (GRHL2) was identified as a direct target of miR-217 by luciferase reporter assay. The expression of miR-217 and GRHL2 was inversely correlated in both transfected keratinocytes and in psoriasis lesional skin. Moreover, knocking down GRHL2 expression by siRNA enhanced keratinocyte differentiation. Taken together, our results demonstrate a role for miR-217 in the regulation of keratinocyte differentiation, partially through the regulation of GRHL2. "	"[Expression and clinical significance of GRHL2 in colorectal cancer]. The purpose of this study was to detect the expression of GRHL2 in colorectal cancer (CRC) tissues, and to assess the relationship between GRHL2 expression and clinicopathological features. Immunohistochemistry was used to examine GRHL2 in 75 CRC tissues. GRHL2 mRNA and protein levels in the CRC tissues were also analyzed by qRT-PCR and Western blot. The relationship between GRHL2 and clinicopathological features was assessed by Pearson's chi-square (χ(2)) test. Positive immunoreactivity for GRHL2 was detected in the nuclei of CRC cells. GRHL2 expression was increased in CRC tissues compared withthat in the paired non-tumor tissues (61.3% vs. 44.0%, P&lt;0.01). Moreover, qRT-PCR results showed that the relative expression level of GRHL2 mRNA in the colorectal cancer tissue was (2.64±0.35), significantly higher than that of normal mucosa tissue (1.19±0.23, P&lt;0.001). The expression level of GRHL2 mRNA was higher in stage III-IV patients (2.84±0.36) than that of stage I-II cases (2.31±0.32, P&lt;0.05). Western blot results also showed that the expression level of GRHL2 protein in the colorectal carcinoma tissue was significantly higher than that in the normal mucosa (P&lt;0.05). GRHL2 expression was positively correlated with tumor size, TNM stage and Ki-67 (P&lt;0.05, respectively). Taking together, our findings demonstrate that GRHL2 is overexpressed in CRC, and plays an important role in the progression of CRC."	"The basal chorionic trophoblast cell layer: An emerging coordinator of placenta development. During gestation, fetomaternal exchange occurs in the villous tree (labyrinth) of the placenta. Development of this structure depends on tightly coordinated cellular processes of branching morphogenesis and differentiation of specialized trophoblast cells. The basal chorionic trophoblast (BCT) cell layer that localizes next to the chorioallantoic interface is of critical importance for labyrinth morphogenesis in rodents. Gcm1-positive cell clusters within this layer initiate branching morphogenesis thereby guiding allantoic fetal blood vessels towards maternal blood sinuses. Later these cells differentiate and contribute to the syncytiotrophoblast of the fetomaternal barrier. Additional cells within the BCT layer sustain continued morphogenesis, possibly through a repopulating progenitor population. Several mouse mutants highlight the importance of a structurally intact BCT epithelium, and a growing number of studies addresses its patterning and epithelial architecture. Here, we review and discuss emerging concepts in labyrinth development focussing on the biology of the BCT cell layer. "	"GRHL2 coordinates regeneration of a polarized mucociliary epithelium from basal stem cells. Pseudostratified airway epithelium of the lung is composed of polarized ciliated and secretory cells maintained by basal stem/progenitor cells. An important question is how lineage choice and differentiation are coordinated with apical-basal polarity and epithelial morphogenesis. Our previous studies indicated a key integrative role for the transcription factor Grainyhead-like 2 (Grhl2). In this study, we present further evidence for this model using conditional gene deletion during the regeneration of airway epithelium and clonal organoid culture. We also use CRISPR/Cas9 genome editing in primary human basal cells differentiating into organoids and mucociliary epithelium in vitro. Loss of Grhl2 inhibits organoid morphogenesis and the differentiation of ciliated cells and reduces the expression of both notch and ciliogenesis genes (Mcidas, Rfx2, and Myb) with distinct Grhl2 regulatory sites. The genome editing of other putative target genes reveals roles for zinc finger transcription factor Znf750 and small membrane adhesion glycoprotein in promoting ciliogenesis and barrier function as part of a network of genes coordinately regulated by Grhl2. "	"The basic helix-loop-helix transcription factor, Mist1, induces maturation of mouse fetal hepatoblasts. Hepatic stem/progenitor cells, hepatoblasts, have a high proliferative ability and can differentiate into mature hepatocytes and cholangiocytes. Therefore, these cells are considered to be useful for regenerative medicine and drug screening for liver diseases. However, it is problem that in vitro maturation of hepatoblasts is insufficient in the present culture system. In this study, a novel regulator to induce hepatic differentiation was identified and the molecular function of this factor was examined in embryonic day 13 hepatoblast culture with maturation factor, oncostatin M and extracellular matrices. Overexpression of the basic helix-loop-helix type transcription factor, Mist1, induced expression of mature hepatocytic markers such as carbamoyl-phosphate synthetase1 and several cytochrome P450 (CYP) genes in this culture system. In contrast, Mist1 suppressed expression of cholangiocytic markers such as Sox9, Sox17, Ck19, and Grhl2. CYP3A metabolic activity was significantly induced by Mist1 in this hepatoblast culture. In addition, Mist1 induced liver-enriched transcription factors, CCAAT/enhancer-binding protein α and Hepatocyte nuclear factor 1α, which are known to be involved in liver functions. These results suggest that Mist1 partially induces mature hepatocytic expression and function accompanied by the down-regulation of cholangiocytic markers. "	"Microdeletion 8q22.2-q22.3 in a 40-year-old male. Interstitial deletions at chromosome 8q22.2-q22.3 have been rarely reported in the literature. To date, six patients have been described in the literature with deletions varying in size from 1.36 Mb to 6.44 Mb. These patients range in age from early childhood to early adulthood. The interstitial deletion phenotype has been described to involve moderate to severe intellectual disability, seizures and a distinct facial phenotype. We report on a 40-year-old male with a 3.351 Mb deletion at chromosome 8q22.2-q22.3 who presents with moderate intellectual disability, autism spectrum disorder, childhood seizure disorder, congenital heart defect and hearing loss. He is the oldest known patient to date. Array comparative genomic hybridization (aCGH) was performed on DNA extracted from peripheral blood. This is the first report of an individual with chromosome 8q22.2-q22.3 interstitial deletion associated with congenital heart disease and hearing loss. Haploinsufficiency of the GRHL2 gene contained within the microdeletion is proposed as a candidate genetic mechanism for this patient's hearing loss."	"Associations of genetic variations in EYA4, GRHL2 and DFNA5 with noise-induced hearing loss in Chinese population: a case- control study. Both environmental and genetic factors are attributable to the incidence of noise-induced hearing loss (NIHL). The purpose of this study was to examine the associations between genetic variations in the EYA4, GRHL2 and DFNA5 genes and the risk to noise-induced hearing loss (NIHL) in a Chinese population. A case-control study was conducted with 476 NIHL workers and 475 normal hearing workers matched with gender, years of noise exposure, and intensity of noise exposure. Twelve tag single-nucleotide polymorphisms (SNP) in the EYA4, GRHL2 and DFNA5 genes were genotyped using nanofluidic dynamic arrays on the Fluidigm platform. Multiple logistic regression was used to analyze the associations of genetic variations with NIHL adjusted by age, smoking/drinking status, and cumulative noise exposure and their interactions with noise exposure. The SNPs of rs3777781and rs212769 in the EYA4 gene were significantly associated with NIHL risk. In rs3777781, comparing with the subjects carrying with TT types, the carriers with AT and AA genotypes had the decreased risk of NIHL (OR = 0.721, 95% CI = 0.522 - 0.996). In rs212769, the AG and AA carriers had increased NIHL risk (OR = 1.430, 95% CI = 1.014 - 2.016) compared with the subjects with GG genotype. Rs666026 in the associated GRHL2 gene and rs2521758 in the DFNA5 gene were marginally t associated with NIHL (P = 0.065 and 0.052, respectively). Rs2521758 and rs212769 had significantly interacted with noise exposure (P &lt; 0.05). Genetic variations in the EYA4, GRHL2 and DFNA5 genes and their interactions with occupational noise exposure may play an important role in the incidence of NIHL."	"Diverse expression patterns of the EMT suppressor grainyhead-like 2 (GRHL2) in normal and tumour tissues. The transcription factor grainyhead-like 2 (GRHL2) plays a crucial role in various developmental processes. Although GRHL2 recently has attracted considerable interest in that it could be identified as a novel suppressor of the epithelial-to-mesenchymal transition, evidence is emerging that GRHL2 also exhibits tumour-promoting activities. Aim of the present study therefore was to help defining the relevance of GRHL2 for human cancers by performing a comprehensive immunohistochemical analysis of GRHL2 expression in normal (n = 608) and (n = 3,143) tumour tissues using tissue microarrays. Consistent with its accepted role in epithelial morphogenesis, GRHL2 expression preferentially but not exclusively was observed in epithelial cells. Regenerative and proliferating epithelial cells with stem cell features showed a strong GRHL2 expression. Highly complex GRHL2 expression patterns indicative of both reduced and elevated GRHL2 expression in tumours, possibly reflecting potential tumour-suppressing as well as oncogenic functions of GRHL2 in distinct human tumours, were observed. A dysregulation of GRHL2 expression for the first time was found in tumours of non-epithelial origin (e.g., astrocytomas, melanomas). We also report GRHL2 copy number gains which, however, did not necessarily translate into increased GRHL2 expression levels in cancer cells. Results obtained by meta-analysis of gene expression microarray data in conjunction with functional assays demonstrating a direct regulation of HER3 expression further point to a potential therapeutic relevance of GRHL2 in ovarian cancer. Hopefully, the results presented in this study may pave the way for a better understanding of the yet largely unknown function of GRHL2 in the initiation, progression and also therapy of cancers. "	"Grhl2 is required in nonneural tissues for neural progenitor survival and forebrain development. Grainyhead-like genes are part of a highly conserved gene family that play a number of roles in ectoderm development and maintenance in mammals. Here we identify a novel allele of Grhl2, cleft-face 3 (clft3), in a mouse line recovered from an ENU mutagenesis screen for organogenesis defects. Homozygous clft3 mutants have a number of phenotypes in common with other alleles of Grhl2. We note a significant effect of genetic background on the clft3 phenotype. One of these is a reduction in size of the telencephalon where we find abnormal patterns of neural progenitor mitosis and apoptosis in mutant brains. Interestingly, Grhl2 is not expressed in the developing forebrain, suggesting this is a survival factor for neural progenitors exerting a paracrine effect on the neural tissue from the overlying ectoderm where Grhl2 is highly expressed. genesis 53:573-582, 2015. © 2015 Wiley Periodicals, Inc."	"The p63 Gene Is Regulated by Grainyhead-like 2 (GRHL2) through Reciprocal Feedback and Determines the Epithelial Phenotype in Human Keratinocytes. In this study, we investigated the effects of p63 modulation in epithelial plasticity in human keratinocytes. The p63 isoforms ΔNp63α, ΔNp63β, and ΔNp63γ were ectopically expressed in normal human epidermal keratinocytes (NHEKs). The epithelial or mesenchymal state was determined by morphological changes and altered expression of various markers, e.g. fibronectin, E-Cadherin, and keratin 14. Overexpression of ΔNp63α and ΔNp63β but not ΔNp63γ isoforms led to morphological changes consistent with epithelial-mesenchymal transition (EMT). However, only ΔNp63α overexpression was able to maintain the morphological changes and molecular phenotype consistent with EMT. Interestingly, knockdown of all p63 isoforms by transfection of p63 siRNA also led to the EMT phenotype, further confirming the role of p63 in regulating the epithelial phenotype in NHEKs. EMT in NHKs accompanied loss of Grainyhead-Like 2 (GHRL2) and miR-200 family gene expression, both of which play crucial roles in determining the epithelial phenotype. Modulation of GRHL2 in NHKs also led to congruent changes in p63 expression. ChIP revealed direct GRHL2 binding to the p63 promoter. GRHL2 knockdown in NHK led to impaired binding of GRHL2 and changes in the histone marks consistent with p63 gene silencing. These data indicate the presence of a reciprocal feedback regulation between p63 and GRHL2 in NHEKs to regulate epithelial plasticity. "	"Recent discoveries concerning the involvement of transcription factors from the Grainyhead-like family in cancer. The Grainyhead-like (GRHL) family of transcription factors has three mammalian members, which are currently termed Grainyhead-like 1 (GRHL1), Grainyhead-like 2 (GRHL2), and Grainyhead-like 3 (GRHL3). These factors adopt a DNA-binding immunoglobulin fold homologous to the DNA-binding domain of key tumor suppressor p53. Their patterns of expression are tissue and developmentally specific. Earlier studies of the GRHL proteins focused on their functions in mammalian development. In recent years, these factors have been linked to many different types of cancer: squamous cell carcinoma of the skin, breast cancer, gastric cancer, hepatocellular carcinoma, colorectal cancer, clear cell renal cell carcinoma, neuroblastoma, prostate cancer, and cervical cancer. The roles of GRHL proteins in these various types of cancer are complex, and in some cases appear to be contradictory: they can serve to promote cancer development, or they may act as tumor suppressors, depending on the particular GRHL protein involved and on the cancer type. The reasons for obvious discrepancies in results from different studies remain unclear. At the molecular level, the GRHL transcription factors regulate the expression of genes whose products are involved in cellular proliferation, differentiation, adhesion, and polarity. We herein review the roles of GRHL proteins in cancer development, and we critically examine relevant molecular mechanisms, which were proposed by different authors. We also discuss the significance of recent discoveries implicating the involvement of GRHL transcription factors in cancer and highlight potential future applications of this knowledge in cancer treatment. "	"Expression of stage-specific embryonic antigen-4 (SSEA-4) defines spontaneous loss of epithelial phenotype in human solid tumor cells. Stage-specific embryonic antigen-4 (SSEA-4) is a glycosphingolipid, which is overexpressed in some cancers and has been linked to disease progression. However, little is known about the functions of SSEA-4 and the characteristics of SSEA-4 expressing tumor cells. Our studies identified SSEA-4 expression on a subpopulation of cells in many solid tumor cell lines but not in leukemic cell lines. Fluorescence-activated cell sorting-sorted SSEA-4(+) prostate cancer cells formed fibroblast-like colonies with limited cell-cell contacts, whereas SSEA-4(-) cells formed cobblestone-like epithelial colonies. Only colonies derived from SSEA-4(+) cells were enriched for pluripotent embryonic stem cell markers. Moreover, major epithelial cell-associated markers Claudin-7, E-cadherin, ESRP1 and GRHL2 were down-regulated in the SSEA-4(+) fraction of DU145 and HCT-116 cells. Similar to cell lines, SSEA-4(+) primary prostate tumor cells also showed down-regulation of epithelial cell-associated markers. In addition, they showed up-regulation of epithelial-to-mesenchymal transition as well as mesenchymal markers. Furthermore, SSEA-4(+) cells escape from adhesive colonies spontaneously and form invadopodia-like migratory structures, in which SSEA-4, cortactin as well as active pPI3K, pAkt and pSrc are enriched and colocalized. Finally, SSEA-4(+) cells displayed strong tumorigenic ability and stable knockdown of SSEA-4 synthesis resulted in decreased cellular adhesion to different extracellular matrices. In conclusion, we introduce SSEA-4 as a novel marker to identify heterogeneous, invasive subpopulations of tumor cells. Moreover, increased cell-surface SSEA-4 expression is associated with the loss of cell-cell interactions and the gain of a migratory phenotype, suggesting an important role of SSEA-4 in cancer invasion by influencing cellular adhesion to the extracellular matrix. "	"Grhl1 deficiency affects inner ear development in zebrafish. Many genes that have been found to contribute to deafness are currently being studied. Some 87 non-syndromic hereditary deafness genes have been confirmed. Proteins associated with cochlear development have also been confirmed. Some of these proteins have important relationships with gap junctions (GJ) and tight junctions (TJ). However, the desmosome junction has received little attention due to controversy over whether it could be detected in the inner ear. GRHL1 is a conserved transcriptional regulator, and it is key to vertebrate desmosome formation. GRHL2 has been confirmed as a deafness gene at the DFNA28 locus. These two homologous proteins have similar sequences and functions. Here, a grhl1 down-regulated zebrafish model exhibited inner ear developmental malformations, including missing otoliths, disordered and abnormal numbers of hair cells in the inner ear and lateral line, and sound insensitivity. The mutant zebrafish swam in circles. Hair cell apoptosis was evident. Under electron microscopy, desmosomes in the otic sensory epithelium were found to be damaged. These defects were partially rescued by treatment with either GRHL1 or its target gene, DSG1. Collectively, these data are the first to indicate that grhl1 is important to the developing inner ear epithelia in zebrafish and that it acts via desmosome junction regulation. "	"[Palmoplantar keratoderma syndromes: new findings]. NA"	"A Grainyhead-Like 2/Ovo-Like 2 Pathway Regulates Renal Epithelial Barrier Function and Lumen Expansion. Grainyhead transcription factors control epithelial barriers, tissue morphogenesis, and differentiation, but their role in the kidney is poorly understood. Here, we report that nephric duct, ureteric bud, and collecting duct epithelia express high levels of grainyhead-like homolog 2 (Grhl2) and that nephric duct lumen expansion is defective in Grhl2-deficient mice. In collecting duct epithelial cells, Grhl2 inactivation impaired epithelial barrier formation and inhibited lumen expansion. Molecular analyses showed that GRHL2 acts as a transcriptional activator and strongly associates with histone H3 lysine 4 trimethylation. Integrating genome-wide GRHL2 binding as well as H3 lysine 4 trimethylation chromatin immunoprecipitation sequencing and gene expression data allowed us to derive a high-confidence GRHL2 target set. GRHL2 transactivated a group of genes including Ovol2, encoding the ovo-like 2 zinc finger transcription factor, as well as E-cadherin, claudin 4 (Cldn4), and the small GTPase Rab25. Ovol2 induction alone was sufficient to bypass the requirement of Grhl2 for E-cadherin, Cldn4, and Rab25 expression. Re-expression of either Ovol2 or a combination of Cldn4 and Rab25 was sufficient to rescue lumen expansion and barrier formation in Grhl2-deficient collecting duct cells. Hence, we identified a Grhl2/Ovol2 network controlling Cldn4 and Rab25 expression that facilitates lumen expansion and barrier formation in subtypes of renal epithelia. "	"Evaluation of the contribution of the EYA4 and GRHL2 genes in Korean patients with autosomal dominant non-syndromic hearing loss. EYA4 and GRHL2 encode transcription factors that play an important role in regulating many developmental stages. Since EYA4 and GRHL2 were identified as the transcription factors for the DFNA10 and DFNA28, 8 EYA4 mutations and 2 GRHL2 mutations have been reported worldwide. However, these genes have been reported in few studies of the Korean population. In this study, we performed a genetic analysis of EYA4 and GRHL2 in 87 unrelated Korean patients with autosomal dominant non-syndromic hearing loss (NSHL). A total of 4 genetic variants in the EYA4 gene were identified, including the 2 nonsense mutations p.S288X and p.Q393X. The novel mutation p.Q393X (c.1177C&gt;T) resulted in a change in the codon at amino acid position 393 from a glutamine to a stop codon. The p.Q393X allele was predicted to encode a truncated protein lacking the entire C-terminal Eya homolog region (Eya HR), which is essential for the interaction with the transcription factor SIX3. The p.S288X (c.863C&gt;A) mutation was found in a Korean family from a previous study. We analyzed p.S288X-linked microsatellite markers and determined that p.S288X might be a founder mutation and a hotspot mutation in Koreans. In GRHL2, a total of 4 genetic variants were identified, but none were associated with hearing loss in Korean patients. This suggests that GRHL2 may not be a main causal gene for autosomal dominant NSHL in Korean patients. In conclusion, our data provide fundamental information to predict the genotypes of Korean patients diagnosed with autosomal dominant NSHL. "	"Grainyhead-like 2 Promotes Tumor Growth and is Associated with Poor Prognosis in Colorectal Cancer. GRHL2 was implicated in regulating cancer development. Our previous study demonstrated that knockdown GRHL2 in colorectal cancer (CRC) cells inhibited cell proliferation by targeting ZEB1. It is unclear whether GRHL2 expression may have diagnostic or prognostic value in colorectal carcinoma. Additionally, how GRHL2 is associated with the clinical features of colorectal carcinoma is not known. In current study, immunohistochemistry stains were performed to examine GRHL2 in 171 colorectal cancers and paired normal colon mucosa. The prognostic value of GRHL2 was investigated in a retrospective cohort study with a five-year follow-up. The effects of GRHL2 on cell growth in vitro and in vivo were explored by GRHL2 over-expressing in HT29 and SW620 CRC cells. Further, the regulation of cell cycle and proliferation proteins by GRHL2 were assessed by flow cytometry and western blot. We found that GRHL2 was over-expressed in CRC tissues, and played an important role in CRC tumorigenesis. GRHL2 expression positively correlated with tumor size and TNM stage. Kaplan-Meier analysis showed that GRHL2 was an independent prognostic factor for both overall survival and recurrence-free survival. Ectopic over-expression of GRHL2 in CRC cell line HT29 and SW620 induced an increase of cellular proliferation in vitro and promoting tumor growth in vivo. The acquisition of GRHL2 regulated cell cycle and modulates the expression of proliferation proteins p21, p27, cyclin A and cyclin D1. Together, our findings reveal GRHL2 can be used as a novel predictive biomarker and represent a potential therapeutic target against CRC. "	"A Grhl2-dependent gene network controls trophoblast branching morphogenesis. Healthy placental development is essential for reproductive success; failure of the feto-maternal interface results in pre-eclampsia and intrauterine growth retardation. We found that grainyhead-like 2 (GRHL2), a CP2-type transcription factor, is highly expressed in chorionic trophoblast cells, including basal chorionic trophoblast (BCT) cells located at the chorioallantoic interface in murine placentas. Placentas from Grhl2-deficient mouse embryos displayed defects in BCT cell polarity and basement membrane integrity at the chorioallantoic interface, as well as a severe disruption of labyrinth branching morphogenesis. Selective Grhl2 inactivation only in epiblast-derived cells rescued all placental defects but phenocopied intraembryonic defects observed in global Grhl2 deficiency, implying the importance of Grhl2 activity in trophectoderm-derived cells. ChIP-seq identified 5282 GRHL2 binding sites in placental tissue. By integrating these data with placental gene expression profiles, we identified direct and indirect Grhl2 targets and found a marked enrichment of GRHL2 binding adjacent to genes downregulated in Grhl2(-/-) placentas, which encoded known regulators of placental development and epithelial morphogenesis. These genes included that encoding the serine protease inhibitor Kunitz type 1 (Spint1), which regulates BCT cell integrity and labyrinth formation. In human placenta, we found that human orthologs of murine GRHL2 and its targets displayed co-regulation and were expressed in trophoblast cells in a similar domain as in mouse placenta. Our data indicate that a conserved Grhl2-coordinated gene network controls trophoblast branching morphogenesis, thereby facilitating development of the site of feto-maternal exchange. This might have implications for syndromes related to placental dysfunction. "	"Expression of transcription factor grainyhead-like 2 is diminished in cervical cancer. The transcription factor grainyhead-like 2 (GRHL2) is evolutionarily conserved in many different species, and is involved in morphogenesis, epithelial differentiation, and the control of the epithelial-mesenchymal transition. It has also recently been implicated in carcinogenesis, but its role in this remains controversial. Expression of GRHL2 has not previously been reported in cervical cancer, so the present study aimed to characterize GRHL2 expression in cervical cancer-derived cell lines (CCCLs) and cervical tissues with different grades of lesions. Microarray analysis found that the expression of 58 genes was down-regulated in CCCLs compared to HaCaT cells (non-tumorigenic human epithelial cell line). The expression of eight of these genes was validated by quantitative real-time PCR (qPCR), and GRHL2 was found to be the most down-regulated. Western blot assays corroborated that GRHL2 protein levels were strongly down-regulated in CCCLs. Cervical cells from women without cervical lesions were shown to express GRHL2, while immunohistochemistry found that positivity to GRHL2 decreased in cervical cancer tissues. In conclusion, a loss or strong reduction in GRHL2 expression appears to be a characteristic of cervical cancer, suggesting that GRHL2 down-regulation is a necessary step during cervical carcinogenesis. However, further studies are needed to delineate the role of GRHL2 in cervical cancer and during malignant progression. "	"Downregulation of miR122 by grainyhead-like 2 restricts the hepatocytic differentiation potential of adult liver progenitor cells. Late fetal and adult livers are reported to contain bipotential liver stem/progenitor cells (LPCs), which share surface markers, including epithelial cell adhesion molecule (EpCAM), with cholangiocytes and differentiate into both hepatocytes and cholangiocytes. However, recent results do not necessarily support the idea that LPCs contribute significantly to cellular turnover and regeneration by supplying new hepatocytes. Here, we examined the colony-forming capability of EpCAM(+) cells isolated from mouse livers between E17 and 11 weeks of age. We found that the number of bipotential colonies was greatly reduced between 1 and 6 weeks, indicating that the number of LPCs decreases during postnatal development. Moreover, bipotential colonies derived from adult LPCs contained substantially fewer albumin(+) cells than those from neonatal LPCs. We further examined the differentiation potential of neonatal and adult LPCs by transplantation and found that neonatal cells differentiated into mature hepatocytes in recipient livers more frequently than adult LPCs. Since we previously reported that the transcription factor grainyhead-like 2 (GRHL2) expressed in EpCAM(+) cells inhibits hepatocytic differentiation, we examined whether targets of GRHL2 might block hepatocytic differentiation. DNA and microRNA microarrays revealed that miR122, the expression of which correlates with hepatocytic differentiation, was greatly reduced in adult as compared with neonatal EpCAM(+) cells. Indeed, GRHL2 negatively regulates the promoter/enhancer activity of the Mir122 gene. Our results indicate that neonatal but not adult EpCAM(+) LPCs have great potential to produce albumin(+) hepatocytes. GRHL2 suppresses transcription of miR122 and thereby restricts the differentiation potential of adult LPCs."	"Highly adaptable triple-negative breast cancer cells as a functional model for testing anticancer agents. A major obstacle in developing effective therapies against solid tumors stems from an inability to adequately model the rare subpopulation of panresistant cancer cells that may often drive the disease. We describe a strategy for optimally modeling highly abnormal and highly adaptable human triple-negative breast cancer cells, and evaluating therapies for their ability to eradicate such cells. To overcome the shortcomings often associated with cell culture models, we incorporated several features in our model including a selection of highly adaptable cancer cells based on their ability to survive a metabolic challenge. We have previously shown that metabolically adaptable cancer cells efficiently metastasize to multiple organs in nude mice. Here we show that the cancer cells modeled in our system feature an embryo-like gene expression and amplification of the fat mass and obesity associated gene FTO. We also provide evidence of upregulation of ZEB1 and downregulation of GRHL2 indicating increased epithelial to mesenchymal transition in metabolically adaptable cancer cells. Our results obtained with a variety of anticancer agents support the validity of the model of realistic panresistance and suggest that it could be used for developing anticancer agents that would overcome panresistance. "	"Mutations in GRHL2 result in an autosomal-recessive ectodermal Dysplasia syndrome. Grainyhead-like 2, encoded by GRHL2, is a member of a highly conserved family of transcription factors that play essential roles during epithelial development. Haploinsufficiency for GRHL2 has been implicated in autosomal-dominant deafness, but mutations have not yet been associated with any skin pathology. We investigated two unrelated Kuwaiti families in which a total of six individuals have had lifelong ectodermal defects. The clinical features comprised nail dystrophy or nail loss, marginal palmoplantar keratoderma, hypodontia, enamel hypoplasia, oral hyperpigmentation, and dysphagia. In addition, three individuals had sensorineural deafness, and three had bronchial asthma. Taken together, the features were consistent with an unusual autosomal-recessive ectodermal dysplasia syndrome. Because of consanguinity in both families, we used whole-exome sequencing to search for novel homozygous DNA variants and found GRHL2 mutations common to both families: affected subjects in one family were homozygous for c.1192T&gt;C (p.Tyr398His) in exon 9, and subjects in the other family were homozygous for c.1445T&gt;A (p.Ile482Lys) in exon 11. Immortalized keratinocytes (p.Ile482Lys) showed altered cell morphology, impaired tight junctions, adhesion defects, and cytoplasmic translocation of GRHL2. Whole-skin transcriptomic analysis (p.Ile482Lys) disclosed changes in genes implicated in networks of cell-cell and cell-matrix adhesion. Our clinical findings of an autosomal-recessive ectodermal dysplasia syndrome provide insight into the role of GRHL2 in skin development, homeostasis, and human disease. "	"Integrative bioinformatics analysis reveals new prognostic biomarkers of clear cell renal cell carcinoma. The outcome of clear cell renal cell carcinoma (ccRCC) is still unpredictable. Even with new targeted therapies, the average progression-free survival is dismal. Markers for early detection and progression could improve disease outcome. To identify efficient and hitherto unrecognized pathogenic factors of the disease, we performed a uniquely comprehensive pathway analysis and built a gene interaction network based on large publicly available data sets assembled from 28 publications, comprising a 3-prong approach with high-throughput mRNA, microRNA, and protein expression profiles of 593 ccRCC and 389 normal kidney samples. We validated our results on 2 different data sets of 882 ccRCC and 152 normal tissues. Functional analyses were done by proliferation, migration, and invasion assays following siRNA (small interfering RNA) knockdown. After integration of multilevel data, we identified aryl-hydrocarbon receptor (AHR), grainyhead-like-2 (GRHL2), and KIAA0101 as new pathogenic factors. GRHL2 expression was associated with higher chances for disease relapse and retained prognostic utility after controlling for grade and stage [hazard ratio (HR), 3.47, P = 0.012]. Patients with KIAA0101-positive expression suffered worse disease-free survival (HR, 3.64, P &lt; 0.001), and in multivariate analysis KIAA0101 retained its independent prognostic significance. Survival analysis showed that GRHL2- and KIAA0101-positive patients had significantly lower disease-free survival (P = 0.002 and P &lt; 0.001). We also found that KIAA0101 silencing decreased kidney cancer cell migration and invasion in vitro. Using an integrative system biology approach, we identified 3 novel factors as potential biomarkers (AHR, GRHL2 and KIAA0101) involved in ccRCC pathogenesis and not linked to kidney cancer before."	"Gene expression correlations in human cancer cell lines define molecular interaction networks for epithelial phenotype. Using gene expression data to enhance our knowledge of control networks relevant to cancer biology and therapy is a challenging but urgent task. Based on the premise that genes that are expressed together in a variety of cell types are likely to functions together, we derived mutually correlated genes that function together in various processes in epithelial-like tumor cells. Expression-correlated genes were derived from data for the NCI-60 human tumor cell lines, as well as data from the Broad Institute's CCLE cell lines. NCI-60 cell lines that selectively expressed a mutually correlated subset of tight junction genes served as a signature for epithelial-like cancer cells. Those signature cell lines served as a seed to derive other correlated genes, many of which had various other epithelial-related functions. Literature survey yielded molecular interaction and function information about those genes, from which molecular interaction maps were assembled. Many of the genes had epithelial functions unrelated to tight junctions, demonstrating that new function categories were elicited. The most highly correlated genes were implicated in the following epithelial functions: interactions at tight junctions (CLDN7, CLDN4, CLDN3, MARVELD3, MARVELD2, TJP3, CGN, CRB3, LLGL2, EPCAM, LNX1); interactions at adherens junctions (CDH1, ADAP1, CAMSAP3); interactions at desmosomes (PPL, PKP3, JUP); transcription regulation of cell-cell junction complexes (GRHL1 and 2); epithelial RNA splicing regulators (ESRP1 and 2); epithelial vesicle traffic (RAB25, EPN3, GRHL2, EHF, ADAP1, MYO5B); epithelial Ca(+2) signaling (ATP2C2, S100A14, BSPRY); terminal differentiation of epithelial cells (OVOL1 and 2, ST14, PRSS8, SPINT1 and 2); maintenance of apico-basal polarity (RAB25, LLGL2, EPN3). The findings provide a foundation for future studies to elucidate the functions of regulatory networks specific to epithelial-like cancer cells and to probe for anti-cancer drug targets. "	"Downregulation of GRHL2 inhibits the proliferation of colorectal cancer cells by targeting ZEB1. Previous reports have associated GRHL2 with tumor progression. However, the biological role of GRHL2 in human colorectal cancer (CRC) has not been explored. We examined the expression of GRHL2 in 75 CRC samples, as well as the paired non-tumor tissues, by immunohistochemistry, qRT-PCR, and western blot analysis. The association between GRHL2 expression and various clinicopathological parameters including Ki-67, a marker of proliferative activity, was also evaluated. We performed lentivirus-mediated shRNA transfection to knock down GRHL2 gene expression in HT29 and HCT116 CRC cells. Cell proliferation was examined by the CCK-8 (Cell Counting Kit-8) assay, colony formation, and cell cycle assay in vitro. Tumorigenesis in vivo was assessed using a mouse xenograft model. Moreover, we transiently silenced ZEB1 expression in GRHL2-knockdown CRC cells using specific shRNA, and then examined the effects on GRHL2 and E-cadherin expression, as well as cell proliferation. Herein, we demonstrated that enhanced GRHL2 expression was detected in CRC, and correlated with higher levels of Ki-67 staining, larger tumor size, and advanced clinical stage. Knocking down GRHL2 in HT29 and HCT116 CRC cells significantly inhibited cell proliferation by decreasing the number of cells in S phase and increasing that in the G 0/G 1 phaseof the cell cycle. This resulted in inhibition of tumorigenesis in vivo, as well as increased expression of ZEB1. Furthermore, transient ZEB1 knockdown dramatically enhanced cell proliferation and increased GRHL2 and E-cadherin expression. Collectively, our study has identified ZEB1 as a target of GRHL2 and suggested a reciprocal GRHL2-ZEB1 repressive relationship, providing a novel mechanism through which proliferation may be modulated in CRC cells. "	"Grainyhead-like 2 (GRHL2) distribution reveals novel pathophysiological differences between human idiopathic pulmonary fibrosis and mouse models of pulmonary fibrosis. Chronic injury of alveolar lung epithelium leads to epithelial disintegrity in idiopathic pulmonary fibrosis (IPF). We had reported earlier that Grhl2, a transcriptional factor, maintains alveolar epithelial cell integrity by directly regulating components of adherens and tight junctions and thus hypothesized an important role of GRHL2 in pathogenesis of IPF. Comparison of GRHL2 distribution at different stages of human lung development showed its abundance in developing lung epithelium and in adult lung epithelium. However, GRHL2 is detected in normal human lung mesenchyme only at early fetal stage (week 9). Similar mesenchymal reexpression of GRHL2 was also observed in IPF. Immunofluorescence analysis in serial sections from three IPF patients revealed at least two subsets of alveolar epithelial cells (AEC), based on differential GRHL2 expression and the converse fluorescence intensities for epithelial vs. mesenchymal markers. Grhl2 was not detected in mesenchyme in intraperitoneal bleomycin-induced injury as well as in spontaneously occurring fibrosis in double-mutant HPS1 and HPS2 mice, whereas in contrast in a radiation-induced fibrosis model, with forced Forkhead box M1 (Foxm1) expression, an overlap of Grhl2 with a mesenchymal marker was observed in fibrotic regions. Grhl2's role in alveolar epithelial cell plasticity was confirmed by altered Grhl2 gene expression analysis in IPF and further validated by in vitro manipulation of its expression in alveolar epithelial cell lines. Our findings reveal important pathophysiological differences between human IPF and specific mouse models of fibrosis and support a crucial role of GRHL2 in epithelial activation in lung fibrosis and perhaps also in epithelial plasticity."	"Association between genetic variations in GRHL2 and noise-induced hearing loss in Chinese high intensity noise exposed workers: a case-control analysis. The grainyhead like 2 (GRHL2) is a transcription factor, and the role among noise exposed workers is not well established. We tested whether GRHL2 polymorphisms are associated with the risk of noise-induced hearing loss (NIHL) in Chinese high intensity noise exposed workers. We genotyped six polymorphisms of GRHL2 gene (i.e., rs611419, rs3779617, rs3735713, rs3735714, rs3735715, and rs6989650) of 340 NIHL cases and 356 control subjects who exposed to noise higher than 85 dB (A) [Lex, 8 h=time-weighted average of levels of noise exposure (Lex) for a nominal 8 h working day] in a Chinese population. Compared with rs611419 AA genotype, the AT/TT genotypes conferred protection against NIHL [adjusted odds ratio (OR)=0.71, 95% confidence interval (CI)=0.52-0.98]. No altered NIHL risk was associated with the other five polymorphisms. In the combined analyses, we found that the combined genotypes with three to eight variant alleles were associated with an decrease risk of NIHL compared with those with zero to two variant alleles, and the decrease risk was more pronounced among subgroups of exposure time&gt;20 yr (0.31, 0.16-0.62) and drinkers (0.51, 0.29-0.90). Polymorphisms of GRHL2 may positively contribute to the etiology of NIHL. "	"Expression and role of grainyhead-like 2 in gastric cancer. The aim of this study was to evaluate the expression and role of Grhl2 in gastric cancer. Immunohistochemistry was performed to explore the expression of Grhl2 in gastric cancer and surrounding non-tumor tissues. Moreover, the mRNA and protein expression level of Grhl2 in human immortalized gastric epithelial cell line GES-1 and four gastric cancer cell lines (MGC803, SGC7901, MKN45, HGC27) were detected by qRT-PCR and Western blotting, respectively. To further investigate the role of Grhl2 in gastric cancer as well as the potential mechanisms, SGC7901 cells were transfected with lentiviral constructs expressing Grhl2 or empty vector, and then proliferation and apoptosis of SGC7901 cells were evaluated by MTT assay and flow cytometry, respectively. Finally, the protein expression level of c-Myc and Bcl-2 was detected by Western blotting. Both mRNA and protein expression level of Grhl2 were significantly downregulated in gastric cancer. Exogenous Grhl2 transduced into SGC7901 cells significantly inhibited the proliferation and promoted apoptosis. Meanwhile, over-expression of Grhl2 decreased c-Myc and Bcl-2 protein expression level. Taken together, our results demonstrated that Grhl2 downregulated in gastric cancer and may function as a tumor suppressor and play an important role in the development and progression of gastric cancer. These results may provide a new clue for treatment for gastric cancer. "	"Hepatic biliary epithelial cells acquire epithelial integrity but lose plasticity to differentiate into hepatocytes in vitro during development. In developing organs, epithelial tissue structures are mostly developed by the perinatal period. However, it is unknown whether epithelial cells are already functionally mature and whether they are fixed in their lineage. Here we show that epithelial cells alter their plasticity during postnatal development by examining the differentiation potential of epithelial cell adhesion molecule (EpCAM)(+) cholangiocytes (biliary epithelial cells) isolated from neonatal and adult mouse livers. We found that neonatal cholangiocytes isolated from 1-week-old liver converted into functional hepatocytes in the presence of oncostatin M and Matrigel®. In contrast, neither morphological changes nor expression of hepatocyte markers were induced in adult cholangiocytes. The transcription factors hepatocyte nuclear factor 4α and CCAAT/enhancer binding protein α (C/EBPα), which are necessary for hepatocytic differentiation, were induced in neonatal cholangiocytes but not in adult cells, whereas grainyhead-like 2 (Grhl2) and hairy-enhance of slit 1 (Hes1), which are implicated in cholangiocyte differentiation, were continuously expressed in adult cells. Overexpression of C/EBPα and Grhl2 promoted and inhibited hepatocytic differentiation, respectively. Furthermore, adult cholangiocytes formed a monolayer with higher barrier function than neonatal ones did, suggesting that cholangiocytes are still in the process of epithelial maturation even after forming tubular structures during the neonatal period. Taken together, these results suggest that cholangiocytes lose plasticity to convert into hepatocytes during epithelial maturation. They lose competency to upregulate hepatocytic transcription factors and downregulate cholagiocytic ones under conditions inducing hepatocytic differentiation. Our results suggest that a molecular machinery augmenting epithelial integrity limits lineage plasticity of epithelial cells."	"Analytic and clinical validation of a prostate cancer-enhanced messenger RNA detection assay in whole blood as a prognostic biomarker for survival. Biomarkers based on detecting prostate cancer (PCa)-specific transcripts in blood are associated with inferior outcomes, but their validation in a clinical context is lacking. To determine whether detecting enhanced transcripts for PCa in whole blood using an analytically valid assay has prognostic significance relative to circulating tumor cell (CTC) enumeration. The detection of KLK3, KLK2, HOXB13, GRHL2, and FOXA1 in whole blood by reverse transcription polymerase chain reaction (RT-PCR) was studied in 97 men with metastatic castration-resistant PCa (mCRPC) as a prognostic factor for overall survival. The 2.5 ml of blood was collected in PAXgene tubes for total RNA extraction and 7.5 ml for CTC enumeration from patients with progressive mCRPC. PCa-enriched genes were detected using a sensitive RT-PCR assay in whole blood from patients with mCRPC. Analytical validity of the assay was established in a clinical laboratory environment. The frequency of detecting transcripts was compared to CTC enumeration using CellSearch in an independent data set and survival associations were explored by concordance probability estimate (CPE). Two or more genes were detected by PCR in 53% of patients (51 of 97; 95% confidence interval [CI], 43-63%), and unfavorable CTC counts (five of more cells) were seen in 46% (45 of 97; 95% CI, 36-56%). Importantly, transcripts were detectable in 11 of 52 patients with favorable CTC counts (21%; 95% CI, 8-35%). Transcript detection predicted overall survival in a proportional hazards model. Significantly, the predictive accuracy of RT-PCR detection in combination with CTC enumeration had a CPE of 0.752 (standard error: 0.038), although this was limited by the number of patients evaluated. This validated RT-PCR assay detecting prostate-specific RNA in whole blood is prognostic for survival and may assess patient risk in tandem with CellSearch CTC enumeration. Its clinical utility is being prospectively explored."	"Epithelial-mesenchymal transition and tumor suppression are controlled by a reciprocal feedback loop between ZEB1 and Grainyhead-like-2. Epithelial-mesenchymal transition (EMT) in carcinoma cells enhances malignant progression by promoting invasion and survival. EMT is induced by microenvironmental factors, including TGF-β and Wnt agonists, and by the E-box-binding transcription factors Twist, Snail, and ZEB. Grainyhead-like-2 (GRHL2), a member of the mammalian Grainyhead family of wound-healing regulatory transcription factors, suppresses EMT and restores sensitivity to anoikis by repressing ZEB1 expression and inhibiting TGF-β signaling. In this study, we elucidate the functional relationship between GRHL2 and ZEB1 in EMT/MET and tumor biology. At least three homeodomain proteins, Six1, LBX1, and HoxA5, transactivated the ZEB1 promoter, in the case of Six1, through direct protein-promoter interaction. GRHL2 altered the Six1-DNA complex, inhibiting this transactivation. Correspondingly, GRHL2 expression prevented tumor initiation in xenograft assays, sensitized breast cancer cells to paclitaxel, and suppressed the emergence of CD44(high)CD24(low) cells (defining the cancer stem cell phenotype in the cell type studied). GRHL2 was downregulated in recurrent mouse tumors that had evolved to an oncogene-independent, EMT-like state, supporting a role for GRHL2 downregulation in this phenotypic transition, modeling disease recurrence. The combination of TGF-β and Wnt activation repressed GRHL2 expression by direct interaction of ZEB1 with the GRHL2 promoter, inducing EMT. Together, our observations indicate that a reciprocal feedback loop between GRHL2 and ZEB1 controls epithelial versus mesenchymal phenotypes and EMT-driven tumor progression."	"Dual roles of the transcription factor grainyhead-like 2 (GRHL2) in breast cancer. Using a retrovirus-mediated cDNA expression cloning approach, we identified the grainyhead-like 2 (GRHL2) transcription factor as novel protooncogene. Overexpression of GRHL2 in NIH3T3 cells induced striking morphological changes, an increase in cell proliferation, anchorage-independent growth, and tumor growth in vivo. By combining a microarray analysis and a phylogenetic footprinting analysis with various biochemical assays, we identified the epidermal growth factor receptor family member Erbb3 as a novel GRHL2 target gene. In breast cancer cell lines, shRNA-mediated knockdown of GRHL2 expression or functional inactivation of GRHL2 using dominant negative GRHL2 proteins induces down-regulation of ERBB3 gene expression, a striking reduction in cell proliferation, and morphological and phenotypical alterations characteristic of an epithelial-to-mesenchymal transition (EMT), thus implying contradictory roles of GRHL2 in breast carcinogenesis. Interestingly, we could further demonstrate that expression of GRHL2 is directly suppressed by the transcription factor zinc finger enhancer-binding protein 1 (ZEB1), which in turn is a direct target for repression by GRHL2, suggesting that the EMT transcription factors GRHL2 and ZEB1 form a double negative regulatory feedback loop in breast cancer cells. Finally, a comprehensive immunohistochemical analysis of GRHL2 expression in primary breast cancers showed loss of GRHL2 expression at the invasive front of primary tumors. A pathophysiological relevance of GRHL2 in breast cancer metastasis is further demonstrated by our finding of a statistically significant association between loss of GRHL2 expression in primary breast cancers and lymph node metastasis. We thus demonstrate a crucial role of GRHL2 in breast carcinogenesis. "	"Confirmation of GRHL2 as the gene for the DFNA28 locus. More than 10 years ago, a c.1609_1610insC mutation in the grainyhead-like 2 (GRHL2) gene was identified in a large family with nonsyndromic sensorineural hearing loss, so far presenting the only evidence for GRHL2 being an autosomal-dominant deafness gene (DFNA28). Here, we report on a second large family, in which post-lingual hearing loss with a highly variable age of onset and progression segregated with a heterozygous non-classical splice site mutation in GRHL2. The c.1258-1G&gt;A mutation disrupts the acceptor recognition sequence of intron 9, creating a new AG splice site, which is shifted by only one nucleotide in the 3' direction. cDNA analysis confirmed a p.Gly420Glufs*111 frameshift mutation in exon 10."	"Evidence for multiple roles for grainyhead-like 2 in the establishment and maintenance of human mucociliary airway epithelium.[corrected]. Most of the airways of the human lung are lined by an epithelium made up of ciliated and secretory luminal cells and undifferentiated basal progenitor cells. The integrity of this epithelium and its ability to act as a selective barrier are critical for normal lung function. In other epithelia, there is evidence that transcription factors of the evolutionarily conserved grainyheadlike (GRHL) family play key roles in coordinating multiple cellular processes required for epithelial morphogenesis, differentiation, remodeling, and repair. However, only a few target genes have been identified, and little is known about GRHL function in the adult lung. Here we focus on the role of GRHL2 in primary human bronchial epithelial cells, both as undifferentiated progenitors and as they differentiate in air-liquid interface culture into an organized mucociliary epithelium with transepithelial resistance. Using a dominant-negative protein or shRNA to inhibit GRHL2, we follow changes in epithelial phenotype and gene transcription using RNA sequencing or microarray analysis. We identify several hundreds of genes that are directly or indirectly regulated by GRHL2 in both undifferentiated cells and air-liquid interface cultures. Using ChIP sequencing to map sites of GRHL2 binding in the basal cells, we identify 7,687 potential primary targets and confirm that GRHL2 binding is strongly enriched near GRHL2-regulated genes. Taken together, the results support the hypothesis that GRHL2 plays a key role in regulating many physiological functions of human airway epithelium, including those involving cell morphogenesis, adhesion, and motility."	"Correction: grhl2 determines the epithelial phenotype of breast cancers and promotes tumor progression. [This corrects the article on p. e50781 in vol. 7.]."	"The relevance of the TGF-β Paradox to EMT-MET programs. The role of transforming growth factor-β (TGF-β) during tumorigenesis is complex and paradoxical, reflecting its ability to function as a tumor suppressor in normal and early-stage cancers, and as a tumor promoter in their late-stage counterparts. The switch in TGF-β function is known as the &quot;TGF-β Paradox,&quot; whose manifestations are intimately linked to the initiation of epithelial-mesenchymal transition (EMT) programs in developing and progressing carcinomas. Indeed, as carcinoma cells emerge from EMT programs stimulated by TGF-β, they readily display a variety of acquired phenotypes that provide a selective advantage to growing carcinomas, including (i) enhanced cell migration and invasion; (ii) heightened resistance to cytotoxic agents, targeted chemotherapeutic, and radiation treatments; and (iv) boosted expansion of cancer-initiating and stem-like cell populations that underlie tumor metastasis and disease recurrence. At present, the molecular, cellular, and microenvironmental mechanisms that enable post-EMT and metastatic carcinoma cells to hijack the oncogenic activities of TGF-β remain incompletely understood. Additionally, the molecular mechanisms that counter EMT programs and limit the aggressiveness of late-stage carcinomas, events that transpire via mesenchymal-epithelial transition (MET) reactions, also need to be further elucidated. Here we review recent advances that provide new insights into how TGF-β promotes EMT programs in late-stage carcinoma cells, as well as how these events are balanced by MET programs during the development and metastatic progression of human carcinomas. "	"Tumor-specific isoform switch of the fibroblast growth factor receptor 2 underlies the mesenchymal and malignant phenotypes of clear cell renal cell carcinomas. We aim to identify tumor-specific alternative splicing events having potential applications in the early detection, diagnosis, prognosis, and therapy for cancers. We analyzed RNA-seq data on 470 clear cell renal cell carcinomas (ccRCC) and 68 kidney tissues to identify tumor-specific alternative splicing events. We further focused on the fibroblast growth factor receptor 2 (FGFR2) isoform switch and characterized ccRCCs expressing different FGFR2 isoforms by integrated analyses using genomic data from multiple platforms and tumor types. We identified 113 top candidate alternatively spliced genes in ccRCC. Prominently, the FGFR2 gene transcript switched from the normal IIIb isoform (&quot;epithelial&quot;) to IIIc isoform (&quot;mesenchymal&quot;) in nearly 90% of ccRCCs. This switch is kidney specific as it was rarely observed in other cancers. The FGFR2-IIIb ccRCCs show a transcriptome and methylome resembling those from normal kidney, whereas FGFR2-IIIc ccRCCs possess elevated hypoxic and mesenchymal expression signatures. Clinically, FGFR2-IIIb ccRCCs are smaller in size, of lower tumor grade, and associated with longer patient survival. Gene set enrichment and DNA copy number analyses indicated that FGFR2-IIIb ccRCCs are closely associated with renal oncocytomas and chromophobe RCCs (chRCC). A reexamination of tumor histology by pathologists identified FGFR2-IIIb tumors as chRCCs and clear cell papillary RCCs (ccpRCC). FGFR2 IIIb RCCs represent misdiagnosed ccRCC cases, suggesting FGFR2 isoform testing can be used in the diagnosis of RCC subtypes. The finding of a prevalent isoform switch of FGFR2 in a tissue-specific manner holds promise for the future development of FGFR2-IIIc as a distinct early detection biomarker and therapeutic target for ccRCC."	"Bridging cancer biology with the clinic: relative expression of a GRHL2-mediated gene-set pair predicts breast cancer metastasis. Identification and characterization of crucial gene target(s) that will allow focused therapeutics development remains a challenge. We have interrogated the putative therapeutic targets associated with the transcription factor Grainy head-like 2 (GRHL2), a critical epithelial regulatory factor. We demonstrate the possibility to define the molecular functions of critical genes in terms of their personalized expression profiles, allowing appropriate functional conclusions to be derived. A novel methodology, relative expression analysis with gene-set pairs (RXA-GSP), is designed to explore the potential clinical utility of cancer-biology discovery. Observing that Grhl2-overexpression leads to increased metastatic potential in vitro, we established a model assuming Grhl2-induced or -inhibited genes confer poor or favorable prognosis respectively for cancer metastasis. Training on public gene expression profiles of 995 breast cancer patients, this method prioritized one gene-set pair (GRHL2, CDH2, FN1, CITED2, MKI67 versus CTNNB1 and CTNNA3) from all 2717 possible gene-set pairs (GSPs). The identified GSP significantly dichotomized 295 independent patients for metastasis-free survival (log-rank tested p = 0.002; severe empirical p = 0.035). It also showed evidence of clinical prognostication in another independent 388 patients collected from three studies (log-rank tested p = 3.3e-6). This GSP is independent of most traditional prognostic indicators, and is only significantly associated with the histological grade of breast cancer (p = 0.0017), a GRHL2-associated clinical character (p = 6.8e-6, Spearman correlation), suggesting that this GSP is reflective of GRHL2-mediated events. Furthermore, a literature review indicates the therapeutic potential of the identified genes. This research demonstrates a novel strategy to integrate both biological experiments and clinical gene expression profiles for extracting and elucidating the genomic impact of a novel factor, GRHL2, and its associated gene-sets on the breast cancer prognosis. Importantly, the RXA-GSP method helps to individualize breast cancer treatment. It also has the potential to contribute considerably to basic biological investigation, clinical tools, and potential therapeutic targets."	"Grhl2 determines the epithelial phenotype of breast cancers and promotes tumor progression. Until now the essential transcription factor that determines the epithelial phenotype of breast cancer has not been identified and its role in epithelial-to-mesenchymal transition (EMT) and tumor progression remain unclear. Here, by analyzing large expression profiles of human breast cancer cells, we found an extraordinary correlation between the expression of Grainyhead transcription factor Grhl2 and epithelial marker E-cadherin. Knockdown of Grhl2 expression by shRNA in human mammary epithelial cell MCF10A leads to down-regulation of E-cadherin and EMT. Grhl2 is down-regulated in disseminated cancer cells that have undergone EMT, and over-expression of Grhl2 is sufficient to induce epithelial gene expression. Large clinical datasets reveal that expression of Grhl2 is significantly associated with poor relapse free survival and increased risk of metastasis in breast cancer patients. In mouse models, over-expression of Grhl2 significantly promotes tumor growth and metastasis. Further testing of several Grhl2 regulated genes leads to the same conclusions that the tumorigenic and metastatic potentials of tumor cells are linked to epithelial phenotype but not mesenchymal phenotype. In conclusion, our findings indicate that Grhl2 plays an essential role in the determination of epithelial phenotype of breast cancers, EMT and tumor progression."	"Role of grainyhead-like 2 in the formation of functional tight junctions. Epithelial cells develop intercellular junctions, including tight junctions (TJs) and adherens junctions (AJs). In epithelial tissues, TJs act as barriers that protect bodies from dehydration, infection and toxic substances. However, the molecular mechanisms regulating the establishment of functional TJs during organogenesis remain largely unknown. Recently, we identified grainyhead-like 2 (Grhl2) as a transcription factor that is specifically expressed in cholangiocytes, which are epithelial cells lining the bile duct tubules in the liver. Using our three-dimensional (3D) culture system of hepatic progenitor cells, we demonstrated that Grhl2 enhanced barrier functions of hepatic progenitor cells by upregulating claudin (Cldn) 3 and Cldn4, thereby promoting epithelial morphogenesis. In addition, we identified Rab25 as another target of Grhl2, which promotes the localization of Cldn4 at TJs. Our results indicate that a transcription factor promotes epithelial morphogenesis by establishing functional TJs by not only regulating the transcription of Cldns but also affecting their localization at TJs. "	"Grainyhead-like 2 (GRHL2) inhibits keratinocyte differentiation through epigenetic mechanism. We recently identified Grainyhead-like 2 (GRHL2), a mammalian homolog of Grainyhead in Drosophila, to be a novel transcription factor that regulates hTERT gene expression and enhances proliferation of normal human epidermal keratinocytes (NHEK). In the current study, we show that GRHL2 impairs keratinocyte differentiation through transcriptional inhibition of the genes clustered at the epidermal differentiation complex (EDC), located at chromosome 1q21. Gene expression profiling and subsequent in vitro assays revealed consistent downregulation of EDC genes, for example, IVL, KRT1, FLG, LCEs, and SPRRs, in NHEK expressing exogenous GRHL2. In vivo binding assay by chromatin immunoprecipitation revealed GRHL2 association at the promoter regions of its target genes, many of which belong to EDC. Exogenous GRHL2 expression also inhibited recruitment of histone demethylase Jmjd3 to the EDC gene promoters and enhanced the level of histone 3 Lys 27 trimethylation enrichment at these promoters. Survey of GRHL2 expression in human skin tissues demonstrated enhanced protein and mRNA levels in chronic skin lesions with impaired keratinocyte differentiation, for example, atopic dermatitis and psoriasis, compared with normal epidermis. These data indicate that GRHL2 impairs epidermal differentiation by inhibiting EDC gene expression through epigenetic mechanisms and support its role in the hyperproliferative skin diseases."	"[Tissue morphogenesis of liver epithelial cells]. NA"	"The transcription factors Grainyhead-like 2 and NK2-homeobox 1 form a regulatory loop that coordinates lung epithelial cell morphogenesis and differentiation. The Grainyhead family of transcription factors controls morphogenesis and differentiation of epithelial cell layers in multicellular organisms by regulating cell junction- and proliferation-related genes. Grainyhead-like 2 (Grhl2) is expressed in developing mouse lung epithelium and is required for normal lung organogenesis. The specific epithelial cells expressing Grhl2 and the genes regulated by Grhl2 in normal lungs are mostly unknown. In these studies we identified the NK2-homeobox 1 transcription factor (Nkx2-1) as a direct transcriptional target of Grhl2. By binding and transcriptional assays and by confocal microscopy we showed that these two transcription factors form a positive feedback loop in vivo and in cell lines and are co-expressed in lung bronchiolar and alveolar type II cells. The morphological changes observed in flattening lung alveolar type II cells in culture are associated with down-regulation of Grhl2 and Nkx2-1. Reduction of Grhl2 in lung epithelial cell lines results in lower expression levels of Nkx2-1 and of known Grhl2 target genes. By microarray analysis we identified that in addition to Cadherin1 and Claudin4, Grhl2 regulates other cell interaction genes such as semaphorins and their receptors, which also play a functional role in developing lung epithelium. Impaired collective cell migration observed in Grhl2 knockdown cell monolayers is associated with reduced expression of these genes and may contribute to the altered epithelial phenotype reported in Grhl2 mutant mice. Thus, Grhl2 functions at the nexus of a novel regulatory network, connecting lung epithelial cell identity, migration, and cell-cell interactions."	"Grainyhead-like 2 regulates epithelial morphogenesis by establishing functional tight junctions through the organization of a molecular network among claudin3, claudin4, and Rab25. During development, epithelial progenitors establish intercellular junctions, including tight junctions (TJs), and form three-dimensional (3D) tissue structures, which are often associated with luminal structures. Here we identify grainyhead-like 2 (Grhl2) as a transcription factor that regulates the size of luminal space surrounded by polarized epithelial cells. We show that HPPL, a liver progenitor cell line, transfected with Grhl2 cDNA forms remarkably larger cysts than the control cells in 3D cultures. We find that Grhl2 up-regulates claudin (Cldn) 3 and Cldn4, and their functions are necessary for the formation of large cysts. Overexpression of Cldn3 alone induces the cyst expansion. In contrast, expression of Cldn4 alone does not induce expansion, as it is not localized at TJs. Of interest, Rab25, another Grhl2 target, not only increases the Cldn4 protein, but also enhances its localization at TJs. Taken together, the results indicate that Grhl2 regulates epithelial morphogenesis through transcriptional up-regulation of Cldn3 and Cldn4, as well as of Rab25, which increases the Cldn4 protein and its localization at TJs. The results reveal a molecular network regulating epithelial lumen formation organized by Grhl2."	"Identification of genes with a correlation between copy number and expression in gastric cancer. To elucidate gene expression associated with copy number changes, we performed a genome-wide copy number and expression microarray analysis of 25 pairs of gastric tissues. We applied laser capture microdissection (LCM) to obtain samples for microarray experiments and profiled DNA copy number and gene expression using 244K CGH Microarray and Human Exon 1.0 ST Microarray. Obviously, gain at 8q was detected at the highest frequency (70%) and 20q at the second (63%). We also identified molecular genetic divergences for different TNM-stages or histological subtypes of gastric cancers. Interestingly, the C20orf11 amplification and gain at 20q13.33 almost separated moderately differentiated (MD) gastric cancers from poorly differentiated (PD) type. A set of 163 genes showing the correlations between gene copy number and expression was selected and the identified genes were able to discriminate matched adjacent noncancerous samples from gastric cancer samples in an unsupervised two-way hierarchical clustering. Quantitative RT-PCR analysis for 4 genes (C20orf11, XPO5, PUF60, and PLOD3) of the 163 genes validated the microarray results. Notably, some candidate genes (MCM4 and YWHAZ) and its adjacent genes such as PRKDC, UBE2V2, ANKRD46, ZNF706, and GRHL2, were concordantly deregulated by genomic aberrations. Taken together, our results reveal diverse chromosomal region alterations for different TNM-stages or histological subtypes of gastric cancers, which is helpful in researching clinicopathological classification, and highlight several interesting genes as potential biomarkers for gastric cancer."	"Suppression of the epithelial-mesenchymal transition by Grainyhead-like-2. Grainyhead genes are involved in wound healing and developmental neural tube closure. In light of the high degree of similarity between the epithelial-mesenchymal transitions (EMT) occurring in wound-healing processes and the cancer stem cell-like compartment of tumors, including TGF-β dependence, we investigated the role of the Grainyhead gene, Grainyhead-like-2 (GRHL2) in oncogenic EMT. GRHL2 was downregulated specifically in the claudin-low subclass breast tumors and in basal-B subclass breast cancer cell lines. GRHL2 suppressed TGF-β-induced, Twist-induced or spontaneous EMT, enhanced anoikis sensitivity, and suppressed mammosphere generation in mammary epithelial cells. These effects were mediated in part by suppression of ZEB1 expression via direct repression of the ZEB1 promoter. GRHL2 also inhibited Smad-mediated transcription and it upregulated mir-200b/c as well as the TGF-β receptor antagonist, BMP2. Finally, ectopic expression of GRHL2 in MDA-MB-231 breast cancer cells triggered an MET and restored sensitivity to anoikis. Taken together, our findings define a major role for GRHL2 in the suppression of oncogenic EMT in breast cancer cells."	"Midbrain-hindbrain boundary patterning and morphogenesis are regulated by diverse grainy head-like 2-dependent pathways. The isthmic organiser located at the midbrain-hindbrain boundary (MHB) is the crucial developmental signalling centre responsible for patterning mesencephalic and metencephalic regions of the vertebrate brain. Formation and maintenance of the MHB is characterised by a hierarchical program of gene expression initiated by fibroblast growth factor 8 (Fgf8), coupled with cellular morphogenesis, culminating in the formation of the tectal-isthmo-cerebellar structures. Here, we show in zebrafish that one orthologue of the transcription factor grainy head-like 2 (Grhl2), zebrafish grhl2b plays a central role in both MHB maintenance and folding by regulating two distinct, non-linear pathways. Loss of grhl2b expression induces neural apoptosis and extinction of MHB markers, which are rescued by re-expression of engrailed 2a (eng2a), an evolutionarily conserved target of the Grhl family. Co-injection of sub-phenotypic doses of grhl2b and eng2a morpholinos reproduces the apoptosis and MHB marker loss, but fails to substantially disrupt formation of the isthmic constriction. By contrast, a novel direct grhl2b target, spec1, identified by phylogenetic analysis and confirmed by ChIP, functionally cooperates with grhl2b to induce MHB morphogenesis, but plays no role in apoptosis or maintenance of MHB markers. Collectively, these data show that MHB maintenance and morphogenesis are dissociable events regulated by grhl2b through diverse transcriptional targets."	"A whole-genome RNAi screen identifies an 8q22 gene cluster that inhibits death receptor-mediated apoptosis. Deregulation of apoptosis is a common occurrence in cancer, for which emerging oncology therapeutic agents designed to engage this pathway are undergoing clinical trials. With the aim of uncovering strategies to activate apoptosis in cancer cells, we used a pooled shRNA screen to interrogate death receptor signaling. This screening approach identified 16 genes that modulate the sensitivity to ligand induced apoptosis, with several genes exhibiting frequent overexpression and/or copy number gain in cancer. Interestingly, two of the top hits, EDD1 and GRHL2, are found 50 kb apart on chromosome 8q22, a region that is frequently amplified in many cancers. By using a series of silencing and overexpression studies, we show that EDD1 and GRHL2 suppress death-receptor expression, and that EDD1 expression is elevated in breast, pancreas, and lung cancer cell lines resistant to death receptor-mediated apoptosis. Supporting the relevance of EDD1 and GRHL2 as therapeutic candidates to engage apoptosis in cancer cells, silencing the expression of either gene sensitizes 8q22-amplified breast cancer cell lines to death receptor induced apoptosis. Our findings highlight a mechanism by which cancer cells may evade apoptosis, and therefore provide insight in the search for new targets and functional biomarkers for this pathway."	"Folic acid supplementation can adversely affect murine neural tube closure and embryonic survival. Neural tube defects (NTDs), a common birth defect in humans, result from the failure of the embryonic neural tube (NT) to close properly. NT closure is a complex, poorly understood morphogenetic process influenced by genes and environment. The most effective environmental influence in decreasing the risk for NTDs is folic acid (FA) fortification and supplementation, and these findings led to the recommendation of periconceptual FA intake and mandatory fortification of the US grain supply in 1998. To explore the relationship between genetics and responsiveness to FA supplementation, we used five mouse NTDs models-Zic2, Shroom3, Frem2, Grhl2 (Grainyhead-like 2) and L3P (Line3P)-and a long-term generational FA supplementation scheme. Contrary to expectations, we find that three genetic mutants respond adversely to FA supplementation with increased incidence of NTDs in homozygous mutants, occurrence of NTDs in heterozygous embryos and embryonic lethality prior to NT closure. Because of these unexpected responses, we examined NTD risk after short-term FA supplementation. Our results indicate that, for the same genetic allele, NTD risk can depend on the length of FA exposure. Our data indicate that, depending on the gene mutation, FA supplementation may adversely influence embryonic development and NT closure."	"Grhl2 deficiency impairs otic development and hearing ability in a zebrafish model of the progressive dominant hearing loss DFNA28. Congenital and progressive hearing impairment is a common distressing disease. The progressive dominant hearing loss DFNA28 in human is associated with a frameshift mutation of Grainyhead-like 2 (GRHL2) but its etiology and mechanism remain unknown. Here we report a zebrafish grhl2b(T086) mutant line in which grhl2b expression is interrupted by an insertion of a Tol2 transposon element. The mutants exhibit enlarged otocysts, smaller or eliminated otoliths, malformed semicircular canals, insensitiveness to sound stimulation and imbalanced swimming motion. Since grainyhead-like family members can regulate epithelial adhesion, we examined the expression of some genes encoding junction proteins in mutants. We show that the expression of claudin b (cldnb) and epcam is abolished or dramatically reduced and apical junctional complexes are abnormal in otic epithelial cells of mutant embryos. Co-injection of cldnb and epcam mRNA could largely rescue the mutant phenotype. Injection of human wild-type GRHL2 mRNA but not the mutant GRHL2 mRNA derived from DFNA28 patients into grhl2b(T086) mutant embryos could rescue the inner-ear defects. Furthermore, we demonstrate that Grhl2b directly binds to the enhancers and promotes the expression of cldnb and epcam. Thus, this work reveals an evolutionarily conserved function of Grhl2 in otic development and provides a fish model for further studying mechanisms of Grhl2-related hearing loss."	"The grainyhead-like 2 gene (GRHL2) single nucleotide polymorphism is not associated with age-related hearing impairment in Han Chinese. The grainyhead-like 2 gene (GRHL2) was found to be associated with age-related hearing impairment (ARHI) in Europeans. We tested whether the same association exists in the Han Chinese population. Individual cohort study. Among a total of 1,175 Han Chinese volunteers, 310 were classified into the case group (the 26% with poorest hearing), and 308 were placed into the control group (the 26% with best hearing) according to the Zhigh scores converted from the original frequency-specific hearing thresholds. The GRHL2 single nucleotide polymorphism locus (rs10955255: A/G) in intron 1 (coordinate: 102605581) shown in the HapMap was genotyped with correlation to the audiologic phenotypes. The genotype distributions of GRHL2 (AA/AG/GG) were not significantly different between the control and the case groups (P = .349). Compared to genotype AA, the odds ratios of the GRHL2 genotypes AG and GG for ARHI were not significantly different after adjustment for other environmental risk factors by logistic regression analyses; 0.78 ± 0.139, 95% confidence interval (CI) = 0.55-1.10, P = .160 for AG; 0.85 ± 0.283, 95% CI = 0.44-1.63, P = .625 for GG. In each audiogram pattern, AA was most common, but the adjusted odds ratios of the genotypes AG and GG for ARHI still were not significantly different. Our results showed no positive association between GRHL2 polymorphisms and ARHI in Han Chinese individuals. Population differences might be a key factor leading to nonreplication of the association."	"Grainyhead-like 2 regulates neural tube closure and adhesion molecule expression during neural fold fusion. Defects in closure of embryonic tissues such as the neural tube, body wall, face and eye lead to severe birth defects. Cell adhesion is hypothesized to contribute to closure of the neural tube and body wall; however, potential molecular regulators of this process have not been identified. Here we identify an ENU-induced mutation in mice that reveals a molecular pathway of embryonic closure. Line2F homozygous mutant embryos fail to close the neural tube, body wall, face, and optic fissure, and they also display defects in lung and heart development. Using a new technology of genomic sequence capture and high-throughput sequencing of a 2.5Mb region of the mouse genome, we discovered a mutation in the grainyhead-like 2 gene (Grhl2). Microarray analysis revealed Grhl2 affects the expression of a battery of genes involved in cell adhesion and E-cadherin protein is drastically reduced in tissues that require Grhl2 function. The tissue closure defects in Grhl2 mutants are similar to that of AP-2α null mutants and AP-2α has been shown to bind to the promoter of E-cadherin. Therefore, we tested for a possible interaction between these genes. However, we find that Grhl2 and AP-2α do not regulate each other's expression, E-cadherin expression is normal in AP-2α mutants during neural tube closure, and Grhl2;AP-2α trans-heterozygous embryos are morphologically normal. Taken together, our studies point to a complex regulation of neural tube fusion and highlight the importance of comparisons between these two models to understand more fully the molecular pathways of embryonic tissue closure."	"Global identification of miR-373-regulated genes in breast cancer by quantitative proteomics. Although microRNAs (miRNAs) have been reported to play an important role in carcinogenesis, their molecular mechanism remains largely unknown because of our limited understanding of miRNA target genes. miR-373 was found to be capable of promoting breast cancer invasion and metastasis, but only a target gene was experimentally identified on the basis of mRNA expression analysis. In this study, we used SILAC-based quantitative proteomics to globally identify the genes regulated by miR-373. Totally, 3666 proteins were identified, and 335 proteins were found to be regulated by miR-373. Among the 192 proteins that were downregulated by miR-373, 27 (14.1%) were predicted to have at least one potential match site at their 3'-UTR for miR-373 seed sequence. However, miR-373 did not affect the mRNA level of the five selected candidate targets, TXNIP, TRPS1, RABEP1, GRHL2 and HIP1, suggesting that the protein expressions were regulated by miR-373 via translational inhibition instead of mRNA degradation. Luciferase and mutation assays validated that TXNIP and RABEP1 were the direct target genes of miR-373. More than 30 proteins reported to be involved in cancer invasion and metastasis were found to be regulated by miR-373 in breast cancer for the first time."	"Over-expression of Grhl2 causes spina bifida in the Axial defects mutant mouse. Cranial neural tube defects (NTDs) occur in mice carrying mutant alleles of many different genes, whereas isolated spinal NTDs (spina bifida) occur in fewer models, despite being common human birth defects. Spina bifida occurs at high frequency in the Axial defects (Axd) mouse mutant but the causative gene is not known. In the current study, the Axd mutation was mapped by linkage analysis. Within the critical genomic region, sequencing did not reveal a coding mutation whereas expression analysis demonstrated significant up-regulation of grainyhead-like 2 (Grhl2) in Axd mutant embryos. Expression of other candidate genes did not differ between genotypes. In order to test the hypothesis that over-expression of Grhl2 causes Axd NTDs, we performed a genetic cross to reduce Grhl2 function in Axd heterozygotes. Grhl2 loss of function mutant mice were generated and displayed both cranial and spinal NTDs. Compound heterozygotes carrying both loss (Grhl2 null) and putative gain of function (Axd) alleles exhibited normalization of spinal neural tube closure compared with Axd/+ littermates, which exhibit delayed closure. Grhl2 is expressed in the surface ectoderm and hindgut endoderm in the spinal region, overlapping with grainyhead-like 3 (Grhl3). Axd mutants display delayed eyelid closure, as reported in Grhl3 null embryos. Moreover, Axd mutant embryos exhibited increased ventral curvature of the spinal region and reduced proliferation in the hindgut, reminiscent of curly tail embryos, which carry a hypomorphic allele of Grhl3. Overall, our data suggest that defects in Axd mutant embryos result from over-expression of Grhl2."	"The unique and cooperative roles of the Grainy head-like transcription factors in epidermal development reflect unexpected target gene specificity. The Grainy head-like 3 (Grhl3) gene encodes a transcription factor that plays essential roles in epidermal morphogenesis during embryonic development, with deficient mice exhibiting failed skin barrier formation, defective wound repair, and loss of eyelid fusion. Despite sharing significant sequence homology, overlapping expression patterns, and an identical core consensus DNA binding site, the other members of the Grhl family (Grhl1 and -2) fail to compensate for the loss of Grhl3 in these processes. Here, we have employed diverse genetic models, coupled with biochemical studies, to define the inter-relationships of the Grhl factors in epidermal development. We show that Grhl1 and Grhl3 have evolved complete functional independence, as evidenced by a lack of genetic interactions in embryos carrying combinations of targeted alleles of these genes. In contrast, compound heterozygous Grhl2/Grhl3 embryos displayed failed wound repair, and loss of a single Grhl2 allele in Grhl3-null embryos results in fully penetrant eyes open at birth. Expression of Grhl2 from the Grhl3 locus in homozygous knock-in mice corrects the wound repair defect, but these embryos still display a complete failure of skin barrier formation. This functional dissociation is due to unexpected differences in target gene specificity, as both GRHL2 and GRHL3 bind to and regulate expression of the wound repair gene Rho GEF 19, but regulation of the barrier forming gene, Transglutaminase 1 (TGase1), is unique to GRHL3. Our findings define the mechanisms underpinning the unique and cooperative roles of the Grhl genes in epidermal development."	"The transcription factor grainyhead-like 2 regulates the molecular composition of the epithelial apical junctional complex. Differentiation of epithelial cells and morphogenesis of epithelial tubes or layers is closely linked with the establishment and remodeling of the apical junctional complex, which includes adherens junctions and tight junctions. Little is known about the transcriptional control of apical junctional complex components. Here, we show that the transcription factor grainyhead-like 2 (Grhl2), an epithelium-specific mammalian homolog of Drosophila Grainyhead, is essential for adequate expression of the adherens junction gene E-cadherin and the tight junction gene claudin 4 (Cldn4) in several types of epithelia, including gut endoderm, surface ectoderm and otic epithelium. We have generated Grhl2 mutant mice to demonstrate defective molecular composition of the apical junctional complex in these compartments that coincides with the occurrence of anterior and posterior neural tube defects. Mechanistically, we show that Grhl2 specifically associates with cis-regulatory elements localized at the Cldn4 core promoter and within intron 2 of the E-cadherin gene. Cldn4 promoter activity in epithelial cells is crucially dependent on the availability of Grhl2 and on the integrity of the Grhl2-associated cis-regulatory element. At the E-cadherin locus, the intronic Grhl2-associated cis-regulatory region contacts the promoter via chromatin looping, while loss of Grhl2 leads to a specific decrease of activating histone marks at the E-cadherin promoter. Together, our data provide evidence that Grhl2 acts as a target gene-associated transcriptional activator of apical junctional complex components and, thereby, crucially participates in epithelial differentiation."	"Grainyhead-like 2 enhances the human telomerase reverse transcriptase gene expression by inhibiting DNA methylation at the 5'-CpG island in normal human keratinocytes. We recently identified Grainyhead-like 2 (GRHL2) as a novel transcription factor that binds to and regulates the activity of the human telomerase reverse transcriptase (hTERT) gene promoter. In this study, we investigated the biological functions of GRHL2 and the molecular mechanism underlying hTERT gene regulation by GRHL2. Retroviral transduction of GRHL2 in normal human keratinocytes (NHK) led to a significant extension of replicative life span, whereas GRHL2 knockdown notably repressed telomerase activity and cell proliferation. Using promoter magnetic precipitation coupled with Western blotting, we confirmed the binding of GRHL2 to the hTERT promoter and mapped the minimal binding region at -53 to -13 of the promoter. Furthermore, mutation analysis revealed the three nucleotides from -21 to -19 to be critical for GRHL2 binding. Because hTERT expression is regulated in part by DNA methylation, we determined the effects of GRHL2 on the methylation status of the hTERT promoter. Senescent NHK exhibited hypermethylation of the CpG island, which occurred with the loss of hTERT expression. On the contrary, the promoter remained hypomethylated in GRHL2-transduced NHK, irrespective of cell proliferation status. Also, knockdown of endogenous GRHL2 led to hypermethylation of the promoter. These results indicate that GRHL2 regulates the hTERT expression through an epigenetic mechanism and controls the cellular life span."	"Regional neural tube closure defined by the Grainy head-like transcription factors. Primary neurulation in mammals has been defined by distinct anatomical closure sites, at the hindbrain/cervical spine (closure 1), forebrain/midbrain boundary (closure 2), and rostral end of the forebrain (closure 3). Zones of neurulation have also been characterized by morphologic differences in neural fold elevation, with non-neural ectoderm-induced formation of paired dorso-lateral hinge points (DLHP) essential for neural tube closure in the cranial and lower spinal cord regions, and notochord-induced bending at the median hinge point (MHP) sufficient for closure in the upper spinal region. Here we identify a unifying molecular basis for these observations based on the function of the non-neural ectoderm-specific Grainy head-like genes in mice. Using a gene-targeting approach we show that deletion of Grhl2 results in failed closure 3, with mutants exhibiting a split-face malformation and exencephaly, associated with failure of neuro-epithelial folding at the DLHP. Loss of Grhl3 alone defines a distinct lower spinal closure defect, also with defective DLHP formation. The two genes contribute equally to closure 2, where only Grhl gene dosage is limiting. Combined deletion of Grhl2 and Grhl3 induces severe rostral and caudal neural tube defects, but DLHP-independent closure 1 proceeds normally in the upper spinal region. These findings provide a molecular basis for non-neural ectoderm mediated formation of the DLHP that is critical for complete neuraxis closure."	"Regulation of the hTERT promoter activity by MSH2, the hnRNPs K and D, and GRHL2 in human oral squamous cell carcinoma cells. Higher expression of human telomerase reverse transcriptase (hTERT) and subsequent activation of telomerase occur during cellular immortalization and are maintained in cancer cells. To understand the mode of hTERT expression in cancer cells, we identified cancer-specific trans-regulatory proteins that interact with the hTERT promoter, using the promoter magnetic precipitation assay coupled with mass spectrometry. The identified proteins include MutS homolog 2 (MSH2), heterogeneous nuclear ribonucleoprotein (hnRNP) D, hnRNP K and grainyhead-like 2 (GRHL2). We noticed a higher expression of these proteins in human oral squamous cell carcinoma (OSCC) cells than in normal cells, which do not exhibit telomerase activity. Knockdown of MSH2, hnRNP D and GRHL2 resulted in a notable reduction of the hTERT promoter activity in tested cancer cells. Silencing of the above genes resulted in a significant reduction of the telomerase activity in OSCC cells. Interestingly, among the four identified genes, silencing of GRHL2 was essential in reducing telomerase activity and viability of tested cancer cells. These results suggest a possible role of GRHL2 in telomerase activation during cellular immortalization."	"The fold recognition of CP2 transcription factors gives new insights into the function and evolution of tumor suppressor protein p53. The CP2 transcription factor (TFCP2) is a critical regulator of erythroid gene expression. Apart from the involvement in the transcriptional switch of globin gene promoters it activates an array of cellular and viral gene promoters. A number of homologous proteins was identified in genomes of Metazoa, with additional five homologues encoded by the human genome (TFCP2L1, UBP1, GRHL1, GRHL2, GRHL3). Although several experimental studies have already been published, the knowledge on the molecular mechanism of activity of this transcription factors remains very limited. Here we present the application of fold recognition and protein structure prediction in drafting the structure-to-function relationship of the CP2 family. The employed procedure clearly shows that the family adopts a DNA binding immunoglobulin fold homologous to the p53 (TP53) core domain, and a novel type of ubiquitin-like domain and a sterile alpha motif (SAM) form oligomerization modules. With a traceable evolution of CP2 family throughout the Metazoa group this protein family is highly likely to represent an ancestor of the critical cell cycle regulator p53. Based on this observation several functional hypotheses on structure-to-function relationship of p53 were drawn. The DNA motif recognized by p53 is a result of further specialization of the CP2 DNA-binding module. The analysis also shows the critical role of protein oligomerization for the function of this protein superfamily. Finally, the identification of distant homologs of TP53 allowed performing a phylogenetic footprinting analysis explaining the role of the specific amino acids important for both - the protein folding and the binding of DNA."	"Gain of GRHL2 is associated with early recurrence of hepatocellular carcinoma. The aim of this study is to identify genomic changes that might be implicated in hepatocellular carcinoma (HCC) progression, and evaluate the associations with clinico-pathological features. The genomic DNA of 17 hepatoma cell lines was analyzed using Affymetrix GeneChip Human Mapping 50K high-density oligonucleotide arrays. We selected representative genes from recurrent amplified regions and measured the copy number of these genes in 70 HCC clinical samples. We found 10 recurrent high-grade gain regions spanning less than 3 Mb in at least two hepatoma cell lines, and selected 10 representative genes. The copy number was almost normal in non-cancerous tissue and frequently amplified in Edmondson grade II or III HCC compared to Edmondson grade I HCC. Gain of TAX1BP1 in 7p15.2-1 was associated with larger tumor size and positivity of HCV antibody, and gain of CCND1 in 11q13.2-3 was associated with larger tumor size by multivariate analysis. Furthermore, a gain of GRHL2 in 8q22.3 was associated with early recurrence of HCC, controlling for clinical parameters. Decreased GRHL2 expression by RNA interference inhibits the growth of hepatoma cells, suggesting its association with cell proliferation. A gain of GRHL2 might be a predictive marker for HCC recurrence."	"The grainyhead like 2 gene (GRHL2), alias TFCP2L3, is associated with age-related hearing impairment. Age-related hearing impairment (ARHI) is the most prevalent sensory impairment in the elderly. ARHI is a complex disease caused by an interaction between environmental and genetic factors. The contribution of various environmental factors has been relatively extensively studied. In contrast, investigations to identify the genetic risk factors have only recently been initiated. In this paper we describe the results of an association study performed on 2418 ARHI samples derived from nine centers from seven European countries. In 70 candidate genes, a total of 768 tag single nucleotide polymorphisms (SNPs) were selected based on HAPMAP data. These genes were chosen among the monogenic hearing loss genes identified in mice and men in addition to several strong functional candidates. After genotyping and data polishing, statistical analysis of all samples combined resulted in a P-value that survived correction for multiple testing for one SNP in the GRHL2 gene. Other SNPs in this gene were also associated, albeit to a lesser degree. Subsequently, an analysis of the most significant GRHL2 SNP was performed separately for each center. The direction of the association was identical in all nine centers. Two centers showed significant associations and a third center showed a trend towards significance. Subsequent fine mapping of this locus demonstrated that the majority of the associated SNPs reside in intron 1. We hypothesize that the causative variant may change the expression levels of a GRHL2 isoform."	"Polymorphisms in the 3' UTR in the neurocalcin delta gene affect mRNA stability, and confer susceptibility to diabetic nephropathy. Using a large-scale genotyping analysis of gene-based single nucleotide polymorphisms (SNPs) in Japanese type 2 diabetic patients, we have identified a gene encoding neurocalcin delta (NCALD) as a candidate for a susceptibility gene to diabetic nephropathy; the landmark SNP was found in the 3' UTR of NCALD (rs1131863: exon 4 +1340 A vs. G, P = 0.00004, odds ratio = 1.59, 95% CI 1.27-1.98). We also discovered two other SNPs in exon 4 of this gene (+999 T/A, +1307 A/G) that showed absolute linkage disequilibrium to the landmark SNP. Subsequent in vitro functional analysis revealed that synthetic mRNA corresponding to the disease susceptible haplotype (exon 4 +1340 G, +1307 G, +999 A) was degraded faster than mRNA corresponding to the major haplotype (exon 4 +1340 A, +1307 A, +999 T), and allelic mRNA expression of the disease susceptibility allele was significantly lower than that of the major allele in normal kidney tissues. In an experiment using a short interfering RNA targeting NCALD, we found that silencing of the NCALD led to a considerable enhancement of cell migration, accompanied by a significant reduction in E-cadherin expression, and by an elevation of alpha smooth muscle actin expression in cultured renal proximal tubular epithelial cells. We also identified the association of the landmark SNP with the progression of diabetic nephropathy in a 8-year prospective study (A vs. G, P = 0.03, odds ratio = 1.91, 95% CI 1.07-3.42). These results suggest that the NCALD gene is a likely candidate for conferring susceptibility to diabetic nephropathy."	"Spatial and temporal expression of the Grainyhead-like transcription factor family during murine development. The Drosophila transcription factor Grainyhead (grh) is expressed in ectoderm-derived tissues where it regulates several key developmental events including cuticle formation, tracheal elongation and dorsal closure. Our laboratory has recently identified three novel mammalian homologues of the grh gene, Grainyhead-like 1, -2 and -3 (Grhl1-3) that rewrite the phylogeny of this family. Using gene targeting in mice, we have shown that Grhl3 is essential for neural tube closure, skin barrier formation and wound healing. Despite their extensive sequence homology, Grhl1 and Grhl2 are unable to compensate for loss of Grhl3 in these developmental processes. To explore this lack of redundancy, and to gain further insights into the functions of this gene family in mammalian development we have performed an extensive in situ hybridisation analysis. We demonstrate that, although all three Grhl genes are highly expressed in the developing epidermis, they display subtle differences in the timing and level of expression. Surprisingly, we also demonstrate differential expression patterns in non-ectoderm-derived tissues, including the heart, the lung, and the metanephric kidney. These findings expand our understanding of the unique role of Grhl3 in neurulation and epidermal morphogenesis, and provide a focus for further functional analysis of the Grhl genes during mouse embryogenesis."	"The identification and characterization of human Sister-of-Mammalian Grainyhead (SOM) expands the grainyhead-like family of developmental transcription factors. The Drosophila gene grainyhead is the founding member of a large family of genes encoding developmental transcription factors that are highly conserved from fly to human. The family consists of two main branches, with grainyhead as the ancestral gene for one branch and the recently cloned Drosophila CP2 as the ancestral gene for the other. We now extend this family with the identification of another novel mammalian member, Sister-of-Mammalian Grainyhead (SOM), which is phylogenetically aligned with grainyhead. SOM is closely related to the other mammalian homologues of grainyhead, including Mammalian Grainyhead (MGR) and Brother-of-MGR, sharing a high degree of sequence identity with these factors in the functional DNA-binding, protein dimerization and activation domains. Protein interaction studies demonstrate that SOM can heterodimerize with MGR and Brother-of-MGR, but not with the more distant members of the family. Like grainyhead, the SOM gene too produces several distinct isoforms with differing functional properties through alternative splicing. The tissue distributions of these isoforms differ and all display highly restricted expression patterns. These findings indicate that SOM, like its family members, may play important roles in mammalian development."	"A highly conserved novel family of mammalian developmental transcription factors related to Drosophila grainyhead. The Drosophila transcription factor Grainyhead regulates several key developmental processes. Three mammalian genes, CP2, LBP-1a and LBP-9 have been previously identified as homologues of grainyhead. We now report the cloning of two new mammalian genes (Mammalian grainyhead (MGR) and Brother-of-MGR (BOM)) and one new Drosophila gene (dCP2) that rewrite the phylogeny of this family. We demonstrate that MGR and BOM are more closely related to grh, whereas CP2, LBP-1a and LBP-9 are descendants of the dCP2 gene. MGR shares the greatest sequence homology with grh, is expressed in tissue-restricted patterns more comparable to grh and binds to and transactivates the promoter of the human Engrailed-1 gene, the mammalian homologue of the key grainyhead target gene, engrailed. This sequence and functional conservation indicates that the new mammalian members of this family play important developmental roles."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"KCNQ4"	"nonsyndromic genetic deafness"	"The ubiquitous flavonoid quercetin is an atypical KCNQ potassium channel activator. Many commonly consumed plants are used as folk medicines, often with unclear molecular mechanisms. Recent studies uncovered the ubiquitous and influential KCNQ family of voltage-gated potassium (Kv) channels as a therapeutic target for several medicinal plant compounds. Capers - immature flower buds of Capparis spinosa - have been consumed for food and medicinal purposes for millennia. Here, we show that caper extract hyperpolarizes cells expressing KCNQ1 or KCNQ2/3 Kv channels. Capers are the richest known natural source of quercetin, the most consumed dietary flavonoid. Quercetin potentiated KCNQ1/KCNE1, KCNQ2/3 and KCNQ4 currents but, unusually, not KCNQ5. Strikingly, quercetin augmented both activation and inactivation of KCNQ1, via a unique KCNQ activation mechanism involving sites atop the voltage sensor and in the pore. The findings uncover a novel potential molecular basis for therapeutic effects of quercetin-rich foods and a new chemical space for atypical modes of KCNQ channel modulation."	"Genetic Basis and Prognostic Value of Exercise QT Dynamics. Background - Abnormal QT interval responses to heart rate (QT dynamics) is an independent risk predictor for cardiovascular disease in patients, but its genetic basis and prognostic value in a population-based cohort have not been investigated. Methods - QT dynamics during exercise and recovery were derived in 56,643 individuals from UK Biobank without a history of cardiovascular events. Genome-wide association studies (GWAS) were conducted to identify genetic variants and bioinformatics analyses were performed to prioritize candidate genes. The prognostic value of QT dynamics was evaluated for cardiovascular events (death or hospitalization) and all-cause mortality. Results - Heritability of QT dynamics during exercise and recovery were 10.7% and 5.4% respectively GWASs identified 20 loci, of which four loci included genes implicated in mendelian long QT syndrome. Five loci did not overlap with previously reported resting QT interval loci, candidate genes included KCNQ4 and KIAA1755. Genetic risk scores were not associated with CV events in 357,882 unrelated individuals from UK Biobank. We also did not observe associations of QT dynamics during exercise and recovery with cardiovascular events. Increased QT dynamics during recovery was significantly associated with all-cause mortality in the univariate Cox regression analysis (hazard ratio [HR]: 1.09, 95% confidence interval [CI]: 1.05-1.13, P=2.28 x 10-5), but the association was not significant after adjusting for clinical risk factors. Conclusions - QT interval dynamics during exercise and recovery are heritable markers but do not carry independent prognostic information for clinical outcomes in the UK Biobank, a population-based cohort. Their prognostic importance may relate to cardiovascular disease cohorts where structural heart disease and/or ischaemia may influence repolarization dynamics. The strong overlap between QT dynamics and resting QT interval loci suggests common biological pathways, however non-overlapping loci suggests alternative mechanisms may exists that underlie QT interval dynamics."	"A comparative analysis of genetic hearing loss phenotypes in European/American and Japanese populations. We present detailed comparative analyses to assess population-level differences in patterns of genetic deafness between European/American and Japanese cohorts with non-syndromic hearing loss. One thousand eighty-three audiometric test results (921 European/American and 162 Japanese) from members of 168 families (48 European/American and 120 Japanese) with non-syndromic hearing loss secondary to pathogenic variants in one of three genes (KCNQ4, TECTA, WFS1) were studied. Audioprofile characteristics, specific mutation types, and protein domains were considered in the comparative analyses. Our findings support differences in audioprofiles driven by both mutation type (non-truncating vs. truncating) and ethnic background. The former finding confirms data that ascribe a phenotypic consequence to different mutation types in KCNQ4; the latter finding suggests that there are ethnic-specific effects (genetic and/or environmental) that impact gene-specific audioprofiles for TECTA and WFS1. Identifying the drivers of ethnic differences will refine our understanding of phenotype-genotype relationships and the biology of hearing and deafness."	"Guanylyl Cyclase A/cGMP Signaling Slows Hidden, Age- and Acoustic Trauma-Induced Hearing Loss. In the inner ear, cyclic guanosine monophosphate (cGMP) signaling has been described as facilitating otoprotection, which was previously observed through elevated cGMP levels achieved by phosphodiesterase 5 inhibition. However, to date, the upstream guanylyl cyclase (GC) subtype eliciting cGMP production is unknown. Here, we show that mice with a genetic disruption of the gene encoding the cGMP generator GC-A, the receptor for atrial and B-type natriuretic peptides, display a greater vulnerability of hair cells to hidden hearing loss and noise- and age-dependent hearing loss. This vulnerability was associated with GC-A expression in spiral ganglia and outer hair cells (OHCs) but not in inner hair cells (IHCs). GC-A knockout mice exhibited elevated hearing thresholds, most pronounced for the detection of high-frequency tones. Deficits in OHC input-output functions in high-frequency regions were already present in young GC-A-deficient mice, with no signs of an accelerated progression of age-related hearing loss or higher vulnerability to acoustic trauma. OHCs in these frequency regions in young GC-A knockout mice exhibited diminished levels of KCNQ4 expression, which is the dominant K<sup>+</sup> channel in OHCs, and decreased activation of poly (ADP-ribose) polymerase-1, an enzyme involved in DNA repair. Further, GC-A knockout mice had IHC synapse impairments and reduced amplitudes of auditory brainstem responses that progressed with age and with acoustic trauma, in contrast to OHCs, when compared to GC-A wild-type littermates. We conclude that GC-A/cGMP-dependent signaling pathways have otoprotective functions and GC-A gene disruption differentially contributes to hair-cell damage in a healthy, aged, or injured system. Thus, augmentation of natriuretic peptide GC-A signaling likely has potential to overcome hidden and noise-induced hearing loss, as well as presbycusis."	"[Prediction of KCNQ4gene polymorphism varies with CNE or noise exposure duration on the Risk of NIHL-Cox model analysis based on cohort study]. Objective: The purpose of this study was to explore the association between gene in the potassium recycling pathway 4 (KCNQ4) polymorphisms and the susceptibility to noise-induced hearing loss (NIHL) , and analysis the effect of cumulative noise exposure (CNE) and noise exposure duration on this association. Methods: A nested case-control study with 1∶1 matched was used based on the cohort of noise exposure in a steel factory. A total of 286 cases were selected as the group of hearing loss and 286 controls were chosen according to the matching standards of same gender, same type of work, age difference ≤ 5 years, noise exposure duration ≤ 2 years. The single nucleotide polymorphisms (SNPs) of rs4660468, rs4660470, rs34287852 in KCNQ4 were genotyped by SNPscan(TM) method. The codominant, dominant and recessive models were established to study KCNQ4 polymorphisms and the susceptibility to NIHL by single-factor conditional logistic regression analysis. The COX regression analysis was used to analyze the risk of developing NIHL in individuals with different genotypes along with the extending of noise exposure duration or CNE. Results: In the case of CNE≤96 dB (A) ·year, the risk of developing NIHL in individuals with TA genotype of rs4660470 was 2.197 times than individuals with TT genotypes (95%CI: 1.032~4.677) , and those with TA+AA and TT genotypes (HR=2.467, 95%CI: 1.025~5.934) With the increase of noise exposure duration, in rs4660470, individuals with TA genotype had a higher risk of suffering NIHL than those with TT genotype (HR=1.461, 95%CI: 1.061~2.011) , individuals with TA and/or AA genotype had a earlier risk of suffering NIHL than those with TT genotype. Conclusion: The mutant allele A of rs4660470 in KCNQ4 may be a risk factor for developing NIHL, CNE≤100 dB (A) ·year or the increase of noise exposure duration may further increase the risk of NIHL. 目的: 探讨钾离子通道4(potassium channel 4,KCNQ4)基因多态性在不同累积噪声暴露量(cumulative noise exposure,CNE)或不同接噪工龄状况下与噪声性听力损失(noise-induced hearing loss,NIHL)易感性间的关系。 方法: 于2019年7月采用1∶1巢式病例-对照研究,在河南省某钢铁厂噪声暴露队列研究人群中选择有双耳高频(3 000、4 000、6 000 Hz)平均听阈≥40 dB者为听力损失组,纯音听力测试任一耳语频(500、1 000、2 000 Hz)的任一频段听阈均≤25 dB,且纯音听力测试高频平均听阈&lt;35dB者作为对照组,听力损失组和对照组各286例。对调查对象进行一般体格检查和基本信息调查,进行纯音听力测试和作业场所噪声测量,采用中高通量单核苷酸多态性(single nucleotide polymorphisms,SNP)分型检测技术(SNPscan(TM)法)检测KCNQ4基因3个SNP(rs4660468,rs4660470和rs34287852位点)。检验对照组人群的哈温平衡(Hardy-Weinberg equilibrium)。应用COX回归方法分析基因单个位点与NIHL易感性间的关系以及随着CNE和接噪工龄的改变,不同基因型个体发生NIHL的风险大小。 结果: 本次研究对象男性274人,女性12人,年龄、性别、饮酒、接噪工龄、CNE、高血压患病情况的分布差异无统计学意义(P&gt;0.05),而吸烟、双耳高频平均听阈均值分布差异有统计学意义(P&lt;0.05)。校正了协变量年龄、接噪工龄、噪声暴露水平、吸烟、饮酒和高血压后,发现CNE≤96 dB(A)·年分层下,在共显性模型TA/TT下,rs4660470位点携带TA基因型的个体发生NIHL的风险是携带TT基因型个体的2.197倍(95%CI:1.032~4.677,P&lt;0.05);96&lt;CNE≤100 dB(A)·年分层下,在显性模型TA+AA/TT下,携带TA+AA基因型的个体发生NIHL的风险是携带TT基因型个体2.467倍(95%CI:1.025~5.934,P&lt;0.05)。随着接噪工龄的延长,rs4660470位点携带TA基因型的个体患NIHL的风险是携带TT基因型个体的1.461倍(95%CI:1.061~2.011,P&lt;0.05);携带TA和AA基因型的个体患NIHL的风险高于携带TT基因型的个体(HR=1.415,95%CI:1.039~1.927,P&lt;0.05),且携带TA和/或AA基因型的个体出现NIHL的时间早于携带TT基因型的个体。 结论: KCNQ4基因的rs4660470位点突变型等位基因A可能是NIHL发生的一个危险因素,CNE≤100 dB(A)·年或接噪工龄延长可能会进一步增加NIHL易感性的风险。."	"Acetaminophen (Paracetamol) Metabolites Induce Vasodilation and Hypotension by Activating Kv7 Potassium Channels Directly and Indirectly. Intravenous acetaminophen/paracetamol (APAP) is well documented to cause hypotension. Since the patients receiving intravenous APAP are usually critically ill, any severe hemodynamic changes, as with those associated with APAP, can be life-threatening. The mechanism underlying this dangerous iatrogenic effect of APAP was unknown. Approach and Results: Here, we show that intravenous APAP caused transient hypotension in rats, which was attenuated by the Kv7 channel blocker, linopirdine. APAP metabolite N-acetyl-p-benzoquinone imine caused vasodilatation of rat mesenteric arteries ex vivo. This vasodilatation was sensitive to linopirdine and also the calcitonin gene-related peptide antagonist, BIBN 4096. Further investigation revealed N-acetyl-p-benzoquinone imine stimulates calcitonin gene-related peptide release from perivascular nerves, causing a cAMP-dependent activation of Kv7 channels. We also show that N-acetyl-p-benzoquinone imine enhances Kv7.4 and Kv7.5 channels overexpressed in oocytes, suggesting that it can activate Kv7.4 and Kv7.5 channels directly, to elicit vasodilatation. Direct and indirect activation of Kv7 channels by the APAP metabolite N-acetyl-p-benzoquinone imine decreases arterial tone, which can lead to a drop in blood pressure. Our findings provide a molecular mechanism and potential preventive intervention for the clinical phenomenon of intravenous APAP-dependent transient hypotension."	"Molecular basis and restoration of function deficiencies of Kv7.4 variants associated with inherited hearing loss. Deafness non-syndromic autosomal dominant 2 (DFNA2) is characterized by symmetric, predominantly high-frequency sensorineural hearing loss that is progressive across all frequencies. The disease is associated with variants of a potassium voltage-gated channel subfamily Q member 4 gene, KCNQ4 (Kv7.4). Here, we studied nine recently identified Kv7.4 variants in DFNA2 pedigrees, including V230E, E260K, D262V, Y270H, W275R, G287R, P291L, P291S and S680F. We proved that the variant S680F did not alter the channel function while the other eight variants resulted in function deficiencies. We further proved that the two variants E260K and P291S showed reduced cell membrane expressions while the other seven variants showed moderate cell surface expressions. Thus, trafficking deficiency is not a common mechanism underlying channel dysfunction. Next, we studied two variants, V230E and G287R, using molecular dynamics simulation. We showed that V230E stabilized Kv7.4 channel in the closed state by forming an additional hydrogen bond with a basic residue K325, while G287R distorted the selectivity filter and blocked the pore region of Kv7.4 channel. Moreover, by co-expressing wild-type (WT) and variant proteins in vitro, we demonstrated that the heterogeneous Kv7.4 channel currents were reduced compared to the WT channel currents and the reduction could be rescued by a Kv7.4 opener retigabine. Our study provided the underlying mechanisms and suggested a potential alternative therapeutic approach for DFNA2."	"Characterization and functional roles of KCNQ-encoded voltage-gated potassium (Kv7) channels in human corpus cavernosum smooth muscle. The group of KCNQ-encoded voltage-gated potassium (Kv7) channels includes five family members (Kv7.1-7.5). We examined the molecular expression and functional roles of Kv7 channels in corporal smooth muscle (CSM). Isolated rabbit CSM strips were mounted in an organ bath system to characterize Kv7 channels during CSM relaxation. Intracellular Ca<sup>2+</sup> levels were measured in the CSM using the Ca<sup>2+</sup> dye Fluo-4 AM. The expression of the KCNQ1-5 (the encoding genes for Kv7.1-7.5) and KCNE1-5 subtypes was determined by quantitative real-time PCR. Electrophysiological recordings and an in situ proximity ligation assay (PLA) were also performed. ML213 (a Kv7.2/7.4/7.5 activator) exhibited the most potent relaxation effect. XE911 (a Kv7.1-7.5 blocker) significantly inhibited the relaxation caused by ML213. Removal of the endothelium from the CSM did not affect the relaxation effect of ML213. H-89 (a protein kinase A inhibitor) and ESI-09 (an exchange protein directly activated by cAMP inhibitor) significantly inhibited ML213-induced relaxation (H-89: 31.3%; ESI-09: 52.7%). XE991 significantly increased basal [Ca<sup>2+</sup>]i in hCSM cells. KCNQ4 (the Kv7.4-encoding gene) and KCNE4 in CSM were the most abundantly expressed subtypes in humans and rats, respectively. KCNQ4 and KCNE4 expression was significantly decreased in diabetes mellitus rats. ML213 significantly increased the outward current amplitude. XE991 inhibited the ML213-induced outward currents. ML213 hyperpolarized the hCSM cell membrane potential. Subsequent addition of XE991 completely reversed the ML213-induced hyperpolarizing effects. A combination of Kv7.4 and Kv7.5 antibodies generated a strong PLA signal. We found that the Kv7.4 channel is a potential target for ED treatment."	"Structural Determinants of Kv7.5 Potassium Channels That Confer Changes in Phosphatidylinositol 4,5-Bisphosphate (PIP2) Affinity and Signaling Sensitivities in Smooth Muscle Cells. Smooth muscle cells express Kv7.4 and Kv7.5 voltage-dependent potassium channels, which have each been implicated as regulators of smooth muscle contractility, though they display different sensitivities to signaling via cAMP/protein kinase A (PKA) and protein kinase C (PKC). We expressed chimeric channels composed of different components of the Kv7.4 and Kv7.5 α-subunits in vascular smooth muscle cells to determine which components are essential for enhancement or inhibition of channel activity. Forskolin, an activator of the cAMP/PKA pathway, increased wild-type Kv7.5 but not wild-type Kv7.4 current amplitude. Replacing the amino terminus of Kv7.4 with the amino terminus of Kv7.5 conferred partial responsiveness to forskolin. In contrast, swapping carboxy-terminal phosphatidylinositol 4,5-bisphosphate (PIP2) binding domains, or the entire C terminus, was without effect on the forskolin response, but the latter conferred responsiveness to arginine-vasopressin (an inhibitory PKC-dependent response). Serine-to-alanine mutation at position 53 of the Kv7.5 amino terminus abrogated its ability to confer forskolin sensitivity to Kv7.4. Forskolin treatment reduced the sensitivity of Kv7.5 channels to Ciona intestinalis voltage-sensing phosphatase (Ci-VSP)-induced PIP2 depletion, whereas activation of PKC with phorbol-12-myristate-13-acetate potentiated the Ci-VSP-induced decline in Kv7.5 current amplitude. Our findings suggest that PKA-dependent phosphorylation of serine 53 on the amino terminus of Kv7.5 increases its affinity for PIP2, whereas PKC-dependent phosphorylation of the Kv7.5 carboxy terminus is associated with a reduction in PIP2 affinity; these changes in PIP2 affinity have corresponding effects on channel activity. Resting affinities for PIP2 differ for Kv7.4 and Kv7.5 based on differential responsiveness to Ci-VSP activation and different rates of current rundown in ruptured patch recordings. SIGNIFICANCE STATEMENT: Kv7.4 and Kv7.5 channels are known signal transduction intermediates and drug targets for regulation of smooth muscle tone. The present studies identify distinct functional domains that confer differential sensitivities of Kv7.4 and Kv7.5 to stimulatory and inhibitory signaling and reveal structural features of the channel subunits that determine their biophysical properties. These findings may improve our understanding of the roles of these channels in smooth muscle physiology and disease, particularly in conditions where Kv7.4 and Kv7.5 are differentially expressed."	"An overview of research trends and genetic polymorphisms for noise-induced hearing loss from 2009 to 2018. Recently, there has been increased studies in noise-induced hearing loss (NIHL). We aimed to make an overview of research trends and genetic polymorphisms for NIHL from 2009 to 2018 with VOSviewer software. A total of 2391 papers were identified for research trends analysis in NIHL and 33 studies identified for a brief review of genetic polymorphisms in human NIHL. The number of publications has been increasing over the past decade. The journal Hearing Research published the most articles (218). The USA contributed the largest number of papers (1042; 43.58%), with the most citations (18,987) and the highest H-index (60). The University of Washington was the most contributive institution. Liberman MC published the most articles (32), and Kujawa SG possessed the highest co-citations (584). Except for high-frequency keywords identified by the software, &quot;prevalence,&quot; &quot;oxidative stress,&quot; &quot;hair cells,&quot; and &quot;cochlear implant&quot; were also the latest research frontiers. HSPA1A rs1043618, HSPA1L rs2227956, PON2 rs12026 and rs7785846, SOD2 rs2855116, KCNE1 rs2070358, KCNQ4 rs34287852, GJB2 rs3751385, PCDH15 rs7095441 and rs11004085, GRHL2 rs1981361, ITGA8 rs10508489, MYH14 rs667907, and POU4F3 rs891969 were the research hotspots and were replicated in independent samples. Inflammation response underlying NIHL has emerged and should be considered as a pioneering field in the future for the prevention of NIHL and conservation of hearing."	"Hair cell maturation is differentially regulated along the tonotopic axis of the mammalian cochlea. Outer hair cells (OHCs) enhance the sensitivity and the frequency tuning of the mammalian cochlea. Similar to the primary sensory receptor, the inner hair cells (IHCs), the mature functional characteristics of OHCs are acquired before hearing onset. We found that OHCs, like IHCs, fire spontaneous Ca<sup>2+</sup> -induced action potentials (APs) during immature stages of development, which are driven by CaV 1.3 Ca<sup>2+</sup> channels. We also showed that the development of low- and high-frequency hair cells is differentially regulated during pre-hearing stages, with the former cells being more strongly dependent on experience-independent Ca<sup>2+</sup> action potential activity. Sound amplification within the mammalian cochlea depends upon specialized hair cells, the outer hair cells (OHCs), which possess both sensory and motile capabilities. In various altricial rodents, OHCs become functionally competent from around postnatal day 7 (P7), before the primary sensory inner hair cells (IHCs), which become competent at about the onset of hearing (P12). The mechanisms responsible for the maturation of OHCs and their synaptic specialization remain poorly understood. We report that spontaneous Ca<sup>2+</sup> activity in the immature cochlea, which is generated by CaV 1.3 Ca<sup>2+</sup> channels, differentially regulates the maturation of hair cells along the cochlea. Under near-physiological recording conditions we found that, similar to IHCs, immature OHCs elicited spontaneous Ca<sup>2+</sup> action potentials (APs), but only during the first few postnatal days. Genetic ablation of these APs in vivo, using CaV 1.3<sup>-/-</sup> mice, prevented the normal developmental acquisition of mature-like basolateral membrane currents in low-frequency (apical) hair cells, such as IK,n (carried by KCNQ4 channels), ISK2 and IACh (α9α10nAChRs) in OHCs and IK,n and IK,f (BK channels) in IHCs. Electromotility and prestin expression in OHCs were normal in CaV 1.3<sup>-/-</sup> mice. The maturation of high-frequency (basal) hair cells was also affected in CaV 1.3<sup>-/-</sup> mice, but to a much lesser extent than apical cells. However, a characteristic feature in CaV 1.3<sup>-/-</sup> mice was the reduced hair cell size irrespective of their cochlear location. We conclude that the development of low- and high-frequency hair cells is differentially regulated during development, with apical cells being more strongly dependent on experience-independent Ca<sup>2+</sup> APs."	"Rare KCNQ4 variants found in public databases underlie impaired channel activity that may contribute to hearing impairment. KCNQ4 is frequently mutated in autosomal dominant non-syndromic hearing loss (NSHL), a typically late-onset, initially high-frequency loss that progresses over time (DFNA2). Most KCNQ4 mutations linked to hearing loss are clustered around the pore region of the protein and lead to loss of KCNQ4-mediated potassium currents. To understand the contribution of KCNQ4 variants to NSHL, we surveyed public databases and found 17 loss-of-function and six missense KCNQ4 variants affecting amino acids around the pore region. The missense variants have not been reported as pathogenic and are present at a low frequency (minor allele frequency &lt; 0.0005) in the population. We examined the functional impact of these variants, which, interestingly, induced a reduction in potassium channel activity without altering expression or trafficking of the channel protein, being functionally similar to DFNA2-associated KCNQ4 mutations. Therefore, these variants may be risk factors for late-onset hearing loss, and individuals harboring any one of these variants may develop hearing loss during adulthood. Reduced channel activity could be rescued by KCNQ activators, suggesting the possibility of medical intervention. These findings indicate that KCNQ4 variants may contribute more to late-onset NSHL than expected, and therefore, genetic screening for this gene is important for the prevention and treatment of NSHL."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Novel Mutations in KCNQ4, LHFPL5 and COCH Genes in Iranian Families with Hearing Impairment. Hearing loss (HL) is the most common sensory deficit in humans, and genetic factors contribute to about half of the cases. With 112 causative genes identified so far and a disproportionate share of the genes within different ethnic groups, HL has proven to be quite heterogeneous. Twenty Iranian families having at least 2 children with hereditary HL were initially verified to be GJB2-negative and were then subjected to whole exome sequencing (WES). Sanger sequencing was used to confirm segregation of the variant identified in each family. In 3 families, WES revealed 3 novel variants in KCNQ4, LHFPL5 and COCH genes. The KCNQ4 gene (DFNA2A) encodes a potassium channel (KV7.4) and the heterozygous variant identified (c.1647C&gt;G, p.F549L) resulted in the substitution of Phe549 residing in the KV7.4 cytoplasmic region. The homozygous variant (c.34A&gt;T, p.K12X) was identified in the LHFPL5 gene (DFNB67) which encodes a transmembrane protein, and another variant in a homozygous state (c.116T&gt;A, p.L39X) was identified in the COCH gene which encodes a secretory protein. Pathogenic variants in the COCH gene are associated with late onset autosomal dominant hearing loss (DFNA9) but the affected individuals displayed early onset HL with a recessive mode of inheritance. The 16% contribution of GJB2 to HL in the Iranian population necessitates the discovery of the remaining causal factors. This study is the first to report KCNQ4 and COCH related HL in the Iranian population and the second study, globally, to report HL due to biallelic inactivation of the COCH gene."	"Inner Hair Cell and Neuron Degeneration Contribute to Hearing Loss in a DFNA2-Like Mouse Model. DFNA2 is a progressive deafness caused by mutations in the voltage-activated potassium channel KCNQ4. Hearing loss develops with age from a mild increase in the hearing threshold to profound deafness. Studies using transgenic mice for Kcnq4 expressed in a mixed background demonstrated the implication of outer hair cells at the initial phase. However, it could not explain the last phase mechanisms of the disease. Genetic backgrounds are known to influence disease expressivity. To unmask the cause of profound deafness phenotype, we backcrossed the Kcnq4 knock-out allele to the inbred strain C3H/HeJ and investigated inner and outer hair cell and spiral ganglion neuron degeneration across the lifespan. In addition to the already reported outer hair cell death, the C3H/HeJ strain also exhibited inner hair cell and spiral ganglion neuron death. We tracked the spatiotemporal survival of cochlear cells by plotting cytocochleograms and neuronal counts at different ages. Cell loss progressed from basal to apical turns with age. Interestingly, the time-course of cell degeneration was different for each cell-type. While for outer hair cells it was already present by week 3, inner hair cell and neuronal loss started 30 weeks later. We also established that outer hair cell loss kinetics slowed down from basal to apical regions correlating with KCNQ4 expression pattern determined in wild-type mice. Our findings indicate that KCNQ4 plays differential roles in each cochlear cell-type impacting in their survival ability. Inner hair cell and spiral ganglion neuron death generates severe hearing loss that could be associated with the last phase of DFNA2."	"Electrophysiological and pharmacological characterization of a novel and potent neuronal Kv7 channel opener SCR2682 for antiepilepsy. Voltage-gated Kv7/KCNQ/M potassium channels play an essential role in the control of membrane potential and neuronal excitability. Activation of the neuronal Kv7/KCNQ/M-current represents an attractive therapeutic strategy for treatment of hyperexcitability-related neuropsychiatric disorders such as epilepsy, pain, and depression, which is an unmet medical need. In this study, we synthesized and characterized a novel compound, N-(4-(2-bromo-6,7-dihydrothieno[3,2-c]pyridin-5(4H)-yl)-2,6-dimethylphenyl)-3,3-dimethylbutanamide (SCR2682) 2,6-dimethyl-4-(piperidin-yl) phenyl)-amide derivative, that exhibits selective and potent activation of neuronal Kv7/KCNQ/M-channels. Whole-cell patch-clamp recordings of human embryonic kidney 293 cells expressing Kv7.2/Kv7.3 channels show that SCR2682 selectively activates the channel current in a dose-dependent manner with an EC50 of 9.8 ± 0.4 nM, which is ∼100-fold more potent than a U.S. Food and Drug Administration-approved antiepileptic drug (retigabine) for treatment of partial epilepsy. SCR2682 shifts voltage-dependent activation of the Kv7.2/7.3 current toward more negative membrane potential, to about -37 mV (V1/2). SCR2682 also activates the native M-current in rat hippocampal or cortical neurons, causing marked hyperpolarization and potent inhibition of neuronal firings. Mechanistically, mutating the tryptophan residue 236 located at the fifth transmembrane segment of Kv7.2 abolishes the chemical activation of the channel by SCR2682. Furthermore, intraperitoneal or intragastric administration of SCR2682 results in a dose-dependent inhibition of seizures by maximal electroshock. Taken together, our findings demonstrate that a novel small molecule, SCR2682, selectively and potently activates neuronal Kv7 channels and reverses epileptic seizures in rodents. Thus, SCR2682 may warrant further evaluation for clinical development of antiepileptic therapy.-Zhang, F., Liu, Y., Tang, F., Liang, B., Chen, H., Zhang, H., Wang, K. Electrophysiological and pharmacological characterization of a novel and potent neuronal Kv7 channel opener SCR2682 for antiepilepsy."	"Bi-allelic Pro291Leu variant in KCNQ4 leads to early onset non-syndromic hearing loss. Variants of KCNQ4 are one of the most common causes of dominantly inherited nonsyndromic hearing loss. We investigated a consanguineous family in which two individuals had prelignual hearing loss, apparently inherited in a recessive mode. Whole-exome sequencing analyses demonstrated genetic heterogeneity as variants in two different genes segregated with the phenotype in two branches of the family. Members in one branch were homozygous for a pathogenic variant of TMC1. The other two affected individuals were homozygous for a missense pathogenic variant in KCNQ4 c.872C&gt;T; p.(Pro291Leu). These two individuals had prelingual, progressive moderate to severe hearing loss, while a heterozygous carrier had late onset mild hearing loss. Our work demonstrates that p.Pro291L variant is semi-dominantly inherited. This is the first report of semi-dominance of a KCNQ4 variant."	"A mutually induced conformational fit underlies Ca<sup>2+</sup>-directed interactions between calmodulin and the proximal C terminus of KCNQ4 K<sup>+</sup> channels. Calmodulin (CaM) conveys intracellular Ca<sup>2+</sup> signals to KCNQ (Kv7, &quot;M-type&quot;) K<sup>+</sup> channels and many other ion channels. Whether this &quot;calmodulation&quot; involves a dramatic structural rearrangement or only slight perturbations of the CaM/KCNQ complex is as yet unclear. A consensus structural model of conformational shifts occurring between low nanomolar and physiologically high intracellular [Ca<sup>2+</sup>] is still under debate. Here, we used various techniques of biophysical chemical analyses to investigate the interactions between CaM and synthetic peptides corresponding to the A and B domains of the KCNQ4 subtype. We found that in the absence of CaM, the peptides are disordered, whereas Ca<sup>2+</sup>/CaM imposed helical structure on both KCNQ A and B domains. Isothermal titration calorimetry revealed that Ca<sup>2+</sup>/CaM has higher affinity for the B domain than for the A domain of KCNQ2-4 and much higher affinity for the B domain when prebound with the A domain. X-ray crystallography confirmed that these discrete peptides spontaneously form a complex with Ca<sup>2+</sup>/CaM, similar to previous reports of CaM binding KCNQ-AB domains that are linked together. Microscale thermophoresis and heteronuclear single-quantum coherence NMR spectroscopy indicated the C-lobe of Ca<sup>2+</sup>-free CaM to interact with the KCNQ4 B domain (Kd ∼10-20 μm), with increasing Ca<sup>2+</sup> molar ratios shifting the CaM-B domain interactions via only the CaM C-lobe to also include the N-lobe. Our findings suggest that in response to increased Ca<sup>2+</sup>, CaM undergoes lobe switching that imposes a dramatic mutually induced conformational fit to both the proximal C terminus of KCNQ4 channels and CaM, likely underlying Ca<sup>2+</sup>-dependent regulation of KCNQ gating."	"Inhibition of Histone Methyltransferase G9a Attenuates Noise-Induced Cochlear Synaptopathy and Hearing Loss. Posttranslational modification of histones alters their interaction with DNA and nuclear proteins, influencing gene expression and cell fate. In this study, we investigated the effect of G9a (KMT1C, EHMT2), a major histone lysine methyltransferase encoded by the human EHMT2 gene and responsible for histone H3 lysine 9 dimethylation (H3K9me2) on noise-induced permanent hearing loss (NIHL) in adult CBA/J mice. The conditions of noise exposure used in this study led to losses of cochlear synapses and outer hair cells (OHCs) and permanent auditory threshold shifts. Inhibition of G9a with its specific inhibitor BIX 01294 or with siRNA significantly attenuated these pathological features. Treatment with BIX 01294 also prevented the noise-induced decrease of KCNQ4 immunolabeling in OHCs. Additionally, G9a was increased in cochlear cells, including both outer and inner sensory hair cells, some spiral ganglion neurons (SGNs), and marginal cells, 1 h after the completion of the noise exposure. Also subsequent to noise exposure, immunoreactivity for H3K9me2 appeared in some nuclei of OHCs following a high-to-low frequency gradient with more labeled OHCs in the 45-kHz than the 32-kHz region, as well as in the marginal cells and in some SGNs of the basal turn. These findings suggest that epigenetic modifications of H3K9me2 are involved in NIHL and that pharmacological targeting of G9a may offer a strategy for protection against cochlear synaptopathy and NIHL."	"Elevated pulmonary arterial pressure in Zucker diabetic fatty rats. Diabetes is a very strong predictor of chronic systemic vascular diseases and acute cardiovascular events. Recently, associations between metabolic disorders and pulmonary hypertension have also been reported in both humans and animal models. In order to get some further insight into the relationship of pulmonary hypertension with obesity, insulin resistance and hyperglycemia, herein we have used the Zucker diabetic fatty rats (ZDF/clr-lepr fa) at 20 weeks fed a standard diet and compared to their lean Zucker littermates (ZL). ZDF rats were obese, had elevated plasma glucose levels and insulin resistance, i.e. a clinically relevant model of type 2 diabetes. They presented elevated systolic, diastolic and mean pulmonary arterial pressures and a parallel increase in the Fulton index. Systemic arterial pressures were also increased but the left ventricle plus septum weight was similar in both groups and the heart rate was reduced. Wall media thickening was observed in the small pulmonary arteries from the ZDF rats. Isolated pulmonary arteries mounted in a wire myograph showed similar vasoconstrictor responses to phenylephrine and 5-HT and similar responses to the endothelium-dependent vasodilator acetylcholine. However, the iNOS inhibitor 1400W enhanced the vasoconstrictor responses in ZDF but not in ZL rats. The protein expression of eNOS and iNOS was not significantly different in the lungs of the two groups. The lung expression of Bmpr2 mRNA was downregulated. However, the mRNA expression of Kcna5, Kcnk3, Kcnq1, Kcnq4 or Kcnq5, which encode for the potassium channels Kv1.5, TASK-1, Kv7.1, Kv7.4 and Kv7.5, respectively, was similar in ZL and ZDF rats. In conclusion, ZDF rats show increased pulmonary arterial pressure, right ventricular hypertrophy, pulmonary arterial medial thickening and downregulated lung Bmpr2 despite leptin resistance. These changes were mild but are consistent with the view that diabetes is a risk factor for pulmonary hypertension."	"Discovery of Novel Retigabine Derivatives as Potent KCNQ4 and KCNQ5 Channel Agonists with Improved Specificity. Recent research suggests that KCNQ isoforms, particularly the KCNQ4 and KCNQ5 subtypes expressed in smooth muscle cells, are involved in both establishing and maintaining resting membrane potentials and regulating smooth muscle contractility. Retigabine (RTG) is a first-in-class antiepileptic drug that potentiates neuronal KCNQ potassium channels, but poor subtype selectivity limits its further application as a pharmacological tool. In this study, we improved the subtype specificity of retigabine by altering the N-1/3 substituents and discovered several compounds that show better selectivity for KCNQ4 and KCNQ5 channels. Among these compounds, 10g is highly selective for KCNQ4 and KCNQ5 channels without potentiating KCNQ1 and KCNQ2 channels. These results are an advance in the exploration of small molecule modifiers that selectively activate different KCNQ isoforms. The developed compounds could also serve as new pharmacological tools for elucidating the function of KCNQ channels natively expressed in various tissues."	"A recurrent mutation in KCNQ4 in Korean families with nonsyndromic hearing loss and rescue of the channel activity by KCNQ activators. Mutations in potassium voltage-gated channel subfamily Q member 4 (KCNQ4) are etiologically linked to nonsyndromic hearing loss (NSHL), deafness nonsyndromic autosomal dominant 2 (DFNA2). To identify causative mutations of hearing loss in 98 Korean families, we performed whole exome sequencing. In four independent families with NSHL, we identified a cosegregating heterozygous missense mutation, c.140T&gt;C (p.Leu47Pro), in KCNQ4. Individuals with the c.140T&gt;C KCNQ4 mutation shared a haplotype flanking the mutated nucleotide, suggesting that this mutation may have arisen from a common ancestor in Korea. The mutant KCNQ4 protein could reach the plasma membrane and interact with wild-type (WT) KCNQ4, excluding a trafficking defect; however, it exhibited significantly decreased voltage-gated potassium channel activity and fast deactivation kinetics compared with WT KCNQ4. In addition, when co-expressed with WT KCNQ4, mutant KCNQ4 protein exerted a dominant-negative effect. Interestingly, the channel activity of the p.Leu47Pro KCNQ4 protein was rescued by the KCNQ activators MaxiPost and zinc pyrithione. The c.140T&gt;C (p.Leu47Pro) mutation in KCNQ4 causes progressive NSHL; however, the defective channel activity of the mutant protein can be rescued using channel activators. Hence, in individuals with the c.140T&gt;C mutation, NSHL is potentially treatable, or its progression may be delayed by KCNQ activators."	"Whole-exome sequencing identifies two novel mutations in KCNQ4 in individuals with nonsyndromic hearing loss. Mutations in potassium voltage-gated channel subfamily Q member 4 (KCNQ4) are etiologically linked to a type of nonsyndromic hearing loss, deafness nonsyndromic autosomal dominant 2 (DFNA2). We performed whole-exome sequencing for 98 families with hearing loss and found mutations in KCNQ4 in five families. In this study, we characterized two novel mutations in KCNQ4: a missense mutation (c.796G&gt;T; p.Asp266Tyr) and an in-frame deletion mutation (c.259_267del; p.Val87_Asn89del). p.Asp266Tyr located in the channel pore region resulted in early onset and moderate hearing loss, whereas p.Val87_Asn89del located in the N-terminal cytoplasmic region resulted in late onset and high frequency-specific hearing loss. When heterologously expressed in HEK 293 T cells, both mutant proteins did not show defects in protein trafficking to the plasma membrane or in interactions with wild-type (WT) KCNQ4 channels. Patch-clamp analysis demonstrated that both p.Asp266Tyr and p.Val87_Asn89del mutant channels lost conductance and were completely unresponsive to KCNQ activators, such as retigabine, zinc pyrithione, and ML213. Channels assembled from WT-p.Asp266Tyr concatemers, like those from WT-WT concatemers, exhibited conductance and responsiveness to KCNQ activators. However, channels assembled from WT-p.Val87_Asn89del concatemers showed impaired conductance, suggesting that p.Val87_Asn89del caused complete loss-of-function with a strong dominant-negative effect on functional WT channels. Therefore, the main pathological mechanism may be related to loss of K<sup>+</sup> channel activity, not defects in trafficking."	"Genetic Aetiology of Nonsyndromic Hearing Loss in Moravia-Silesia. Hearing loss is the most common sensory deficit in humans. The aim of this study was to clarify the genetic aetiology of nonsyndromic hearing loss in the Moravian-Silesian population of the Czech Republic. This study included 200 patients (93 males, 107 females, mean age 16.9 years, ranging from 4 months to 62 years) with nonsyndromic sensorineural hearing loss. We screened all patients for mutations in GJB2 and the large deletion del(GJB6-D13S1830). We performed further screening for additional genes (SERPINB6, TMIE, COCH, ESPN, ACTG1, KCNQ4, and GJB3) with Sanger sequencing on a subset of patients that were negative for GJB2 mutations. We detected biallelic GJB2 mutations in 44 patients (22%). Among these patients, 63.6%, 9.1% and 2.3% exhibited homozygous c.35delG, p.Trp24*, and p.Met34Thr mutations, respectively. The remaining 25% of these patients exhibited compound heterozygous c.35delG, c.-23+1G&gt;A, p.Trp24*, p.Val37Ile, p.Met34Thr, p.Leu90Pro, c.235delC, c.313_326del14, p.Ser139Asn, and p.Gly147Leu mutations. We found a monoallelic GJB2 mutation in 12 patients (6.6%). We found no pathogenic mutations in the other tested genes. Conclusions: One fifth of our cohort had deafness related to GJB2 mutations. The del(GJB6-D13S1830), SERPINB6, TMIE, COCH, ESPN, ACTG1, GJB3, and KCNQ4 mutations were infrequently associated with deafness in the Moravian-Silesian population. Therefore, we suggest that del(GJB6-D13S1830) testing should be performed only when patients with deafness carry the monoallelic GJB2 mutation."	"Novel KV7 ion channel openers for the treatment of epilepsy and implications for detrusor tissue contraction. Neuronal voltage-gated potassium channels, KV7s, are the molecular mediators of the M current and regulate membrane excitability in the central and peripheral neuronal systems. Herein, we report novel small molecule KV7 openers that demonstrate anti-seizure activities in electroshock and pentylenetetrazol-induced seizure models without influencing Rotarod readouts in mice. The anti-seizure activity was determined to be proportional to the unbound concentration in the brain. KV7 channels are also expressed in the bladder smooth muscle (detrusor) and activation of these channels may cause localized undesired effects. Therefore, the impact of individual KV7 isoforms was investigated in human detrusor tissue using a panel of KV7 openers with distinct activity profiles among KV7 isoforms. KCNQ4 and KCNQ5 mRNA were highly expressed in detrusor tissue, yet a compound that has significantly reduced activity on homomeric KV7.4 did not reduce detrusor contraction. This may suggest that the homomeric KV7.4 channel plays a less significant role in bladder contraction and further investigation is needed."	"Involvement of butyrate in electrogenic K<sup>+</sup> secretion in rat rectal colon. Short-chain fatty acids (SCFAs), such as acetate, propionate, and butyrate, are synthesized from dietary carbohydrates by colonic bacterial fermentation. These SCFAs supply energy, suppress cancer, and affect ion transport. However, their roles in ion transport and regulation in the intracellular environment remain unknown. In order to elucidate the roles of SCFAs, we measured short-circuit currents (ISC) and performed RT-PCR and immunohistochemical analyses of ion transporters in rat rectal colon. The application of 30 mM butyrate shifted ISC in a negative direction, but did not attenuate the activity of epithelial Na<sup>+</sup> channels (ENaC). The application of bumetanide, a Na<sup>+</sup>-K<sup>+</sup>-2Cl<sup>-</sup> cotransporter inhibitor, to the basolateral side reduced the negative ISC shift induced by butyrate. The application of XE991, a KCNQ-type K<sup>+</sup> channel inhibitor, to the apical side decreased the ISC shift induced by butyrate in a dose-dependent manner. The ISC shift was independent of HCO3<sup>-</sup> and insensitive to ibuprofen, an SMCT1 inhibitor. The mucosa from rat rectal colon expressed mRNAs of H<sup>+</sup>-coupled monocarboxylate transporters (MCT1, MCT4, and MCT5, also referred to as SLC16A1, SLC16A3, and SLC16A4, respectively). RT-PCR and immunofluorescence analyses demonstrated that KCNQ2 and KCNQ4 localized to the apical membrane of surface cells in rat rectal colon. These results indicate that butyrate, which may be transported by H<sup>+</sup>-coupled monocarboxylate transporters, activates K<sup>+</sup> secretion through KCNQ-type K<sup>+</sup> channels on the apical membrane in rat rectal colon. KCNQ-type K<sup>+</sup> channels may play a role in intestinal secretion and defense mechanisms in the gastrointestinal tract."	"Genetic mutation of familial dilated cardiomyopathy based on next‑generation semiconductor sequencing. Dilated cardiomyopathy (DCM) is a complex myocardial disease of multifactorial etiologies, including enlarged cardiac chambers and contractile dysfunction. It has been suggested that the inheritance of DCM‑associated mutations predominates its onset. Therefore, the present study investigated the pathogenesis of DCM via pedigree analysis and genetic diagnosis by massive whole‑exome screening, and targeted exon capture. To study the familial gene‑phenotype association, the exon and splice sites of 325 hereditary disease‑associated genes in the proband with familial dilated cardiomyopathy (FDC), including 61 cardiac disease‑associated genes, such as the lamins A/C (LMNA), were analyzed by ultra‑high multiplex polymerase chain reaction and the Ion AmpliSeq™ Inherited Disease Panel. The present study also conducted Sanger DNA Sequencing for family members with global minor allele frequencies &lt;1% to verify potential pathogenic mutation sites. A total of three rare missense mutations were detected, including heterozygous c.244G&gt;A in LMNA, c.546C&gt;G in potassium voltage‑gated channel subfamily KQT (KCNQ4) and c.1276G&gt;A in EYA transcriptional coactivator and phosphatase 1 (EYA1), indicating a glutamic acid to lysine substitution at amino acid 82 (p.E82K) in LMNA, a p.F182L in KCNQ4 (a mutation associated with pathogenic deafness) and p.G426S in EYA1 (associated with Branchiootorenal syndrome 1 and Branchiootic syndrome 1 pathogenesis). In the present study, a carrier with slight hearing impairment was detected in the family analyzed; however, no patients with deafness or branchiootorenal syndrome were observed. LMNA p.E82K revealed SIFT and PolyPhen‑2 scores of 0 and 1, respectively. In the second generation, 3 patients with DCM underwent permanent pacemaker implantation due to sick sinus syndrome, atrioventricular block and unstable cardiac electrophysiology. The present study suggested that LMNA p.E82K may contribute to the pathogenesis of FDC and concomitant atrioventricular block. At present, only three families with DCM resulting from similar mutations have been reported. The present study demonstrated the strong pathogenic effects of LMNA p.E82K on DCM."	"Genetic variation in KCNQ4 gene is associated with susceptibility to noise-induced hearing loss in a Chinese population. Noise-induced hearing loss (NIHL), one of the most widespread occupational health risks worldwide, is a kind of complex disorder resulting from both genetic and environmental factors. KCNQ4 channels are crucial to the internal ear potassium recycling. To explore whether KCNQ4 polymorphism is associated with individual susceptibility to NIHL, we performed this genetic association study on 571 NIHL cases and 639 normal hearing controls selected from about 2700 Chinese noise-exposed workers. General information and audiometric data were obtained through questionnaires and pure-tone audiometry (PTA). DNA samples were collected and genotyping for three selected SNPs (rs709688, rs2769256 and rs4660468) was performed. Significant differences were observed between cases and controls for the genotype frequency and allele frequency in rs4660468, suggesting that rs4660468 CT/TT genotype and T allele may be risk factors for NIHL. In subjects exposed to noise for more than 16 years (OR = 1.23, 95% CI = 1.09-1.53) and those who exposed to noise &gt;92 dB (OR = 1.29, 95% CI = 1.08-1.69), increased risks of NIHL were found after stratified analysis for rs4660468. Our results suggest that rs4660468 T allele of KCNQ4 involves with a higher risk of NIHL and could be one biomarker of susceptibility for Chinese noise exposed workers."	"Prestin Contributes to Membrane Compartmentalization and Is Required for Normal Innervation of Outer Hair Cells. Outer hair cells (OHC) act as amplifiers and their function is modified by medial olivocochlear (MOC) efferents. The unique OHC motor protein, prestin, provides the molecular basis for somatic electromotility, which is required for sensitivity and frequency selectivity, the hallmarks of mammalian hearing. Prestin proteins are the major component of the lateral membrane of mature OHCs, which separates apical and basal domains. To investigate the contribution of prestin to this unique arrangement, we compared the distribution of membrane proteins in OHCs of wildtype (WT) and prestin-knockout (KO) mice. In WT, the apical protein PMCA2 was exclusively localized to the hair bundles, while it was also found at the lateral membrane in KOs. Similarly, a basal protein KCNQ4 did not coalesce at the base of OHCs but was widely dispersed in mice lacking prestin. Since the expression levels of PMCA2 and KCNQ4 remained unchanged in KOs, the data indicate that prestin is required for the normal distribution of apical and basal membrane proteins in OHCs. Since OHC synapses predominate in the basal subnuclear region, we also examined the synaptic architecture in prestin-KO mice. Although neurite densities were not affected, MOC efferent terminals in prestin-KO mice were no longer constrained to the basal pole as in WT. This trend was evident as early as at postnatal day 12. Furthermore, terminals were often enlarged and frequently appeared as singlets when compared to the multiple clusters of individual terminals in WT. This abnormality in MOC synaptic morphology in prestin-KO mice is similar to defects in mice lacking MOC pathway proteins such as α9/α10 nicotinic acetylcholine receptors and BK channels, indicating a role for prestin in the proper establishment of MOC synapses. To investigate the contribution of prestin's electromotility, we also examined OHCs from a mouse model that expresses non-functional prestin (499-prestin). We found no changes in PMCA2 localization and MOC synaptic morphology in OHCs from 499-prestin mice. Taken together, these results indicate that prestin, independent of its motile function, plays an important structural role in membrane compartmentalization, which is required for the formation of normal efferent-OHC synapses in mature OHCs."	"Gabapentin Is a Potent Activator of KCNQ3 and KCNQ5 Potassium Channels. Synthetic gabapentinoids, exemplified by gapapentin and pregabalin, are in extensive clinical use for indications including epilepsy, neuropathic pain, anxiety, and alcohol withdrawal. Their mechanisms of action are incompletely understood, but are thought to involve inhibition of α2δ subunit-containing voltage-gated calcium channels. Here, we report that gabapentin is a potent activator of the heteromeric KCNQ2/3 voltage-gated potassium channel, the primary molecular correlate of the neuronal M-current, and also homomeric KCNQ3 and KCNQ5 channels. In contrast, the structurally related gabapentinoid, pregabalin, does not activate KCNQ2/3, and at higher concentrations (≥10 µM) is inhibitory. Gabapentin activation of KCNQ2/3 (EC50 = 4.2 nM) or homomeric KCNQ3* (EC50 = 5.3 nM) channels requires KCNQ3-W265, a conserved tryptophan in KCNQ3 transmembrane segment 5. Homomeric KCNQ2 or KCNQ4 channels are insensitive to gabapentin, whereas KCNQ5 is highly sensitive (EC50 = 1.9 nM). Given the potent effects and the known anticonvulsant, antinociceptive, and anxiolytic effects of M-channel activation, our findings suggest the possibility of an unexpected role for M-channel activation in the mechanism of action of gabapentin."	"Investigating the Role of G Protein βγ in Kv7-Dependent Relaxations of the Rat Vasculature. Objective- In renal arteries, inhibitors of G protein βγ subunits (Gβγ) reduce Kv7 activity and inhibit Kv7-dependent receptor-mediated vasorelaxations. However, the mechanisms underlying receptor-mediated relaxation are artery specific. Consequently, the aim of this study was to ascertain the role of Gβγ in Kv7-dependent vasorelaxations of the rat vasculature. Approach and Results- Isometric tension recording was performed in isolated rat renal, mesenteric, and cerebral arteries to study isoproterenol and calcitonin gene-related peptide relaxations. Kv7.4 was knocked down via morpholino transfection while inhibition of Gβγ was investigated with gallein and M119K. Proximity ligation assay was performed on isolated myocytes to study the association between Kv7.4 and G protein β subunits or signaling intermediaries. Isoproterenol or calcitonin gene-related peptide-induced relaxations were attenuated by Kv7.4 knockdown in all arteries studied. Inhibition of Gβγ with gallein or M119K had no effect on isoproterenol-mediated relaxations in mesenteric artery but had a marked effect on calcitonin gene-related peptide-induced responses in mesenteric artery and cerebral artery and isoproterenol responses in renal artery. Isoproterenol increased association with Kv7.4 and Rap1a in mesenteric artery which were not sensitive to gallein, whereas in renal artery, isoproterenol increased Kv7.4-AKAP (A-kinase anchoring protein) associations in a gallein-sensitive manner. Conclusions- The Gβγ-Kv7 relationship differs between vessels and is an essential requirement for AKAP, but not Rap-mediated regulation of the channel."	"Key Genes and Pathways Associated With Inner Ear Malformation in SOX10 <sup> p.R109W </sup> Mutation Pigs. SRY-box 10 (SOX10) mutation may lead to inner ear deformities. However, its molecular mechanisms on inner ear development are not clear. In this work, the inner ear morphology was investigated at different embryonic stages of the SOX10 mutation miniature porcine model with sensorineural hearing loss, and high-throughput RNA-seq and bioinformatics analyses were applied. Our results indicated that the SOX10 mutation in the miniature pigs led to an incomplete partition (IP) of the cochlea, a cystic apex caused by fusion from middle and apical turns, cochlear modiolar defects and a shortened cochlear duct. The model demonstrated 173 differentially expressed genes (DEGs) and 185 differentially expressed long non-coding RNAs (lncRNAs). The down-regulated DEGs most significantly enriched the inflammatory mediator regulation of the TRP channels, arachidonic acid metabolism, and the salivary secretion pathways, while the up-regulated DEGs most significantly enriched the systemic lupus erythematosus and alcoholism pathways. Based on gene cluster analysis, we selected four gene groups: WNT1, KCNQ4, STRC and PAX6."	"Identification and validation of midbrain Kcnq4 regulation of heavy alcohol consumption in rodents. Currently available pharmacotherapies for treating alcohol use disorder (AUD) suffer from deleterious side effects and are not efficacious in diverse populations. Clinical and preclinical studies provide evidence that the Kcnq family of genes that encode KV7 channels influence alcohol intake and dependence. KV7 channels are a class of slowly activating voltage-dependent K<sup>+</sup> channels that regulate neuronal excitability. Studies indicate that the KV7 channel positive modulator retigabine can decrease dopaminergic neuron firing, alter dopamine (DA) release, and reduce alcohol intake in heavy drinking rodents. Given the critical nature of ventral tegmental area (VTA) DA to the addiction process and predominant expression of Kcnq4 in DA neurons, we investigated the role of midbrain Kcnq genes and KV7 channels in the VTA of genetically diverse mice and long-term heavy drinking rats, respectively. Integrative bioinformatics analysis identified negative correlations between midbrain Kcnq4 expression and alcohol intake and seeking behaviors. Kcnq4 expression levels were also correlated with dopaminergic-related phenotypes in BXD strains, and Kcnq4 was present in support intervals for alcohol sensitivity and alcohol withdrawal severity QTLs in rodents. Pharmacological validation studies revealed that VTA KV7 channels regulate excessive alcohol intake in rats with a high-drinking phenotype. Administration of a novel and selective KV7.2/4 channel positive modulator also reduced alcohol drinking in rats. Together, these findings indicate that midbrain Kcnq4 expression regulates alcohol-related behaviors in genetically diverse mice and provide evidence that KV7.4 channels are a critical mediator of excessive alcohol drinking."	"Transcriptome analysis reveals enrichment of genes associated with auditory system in swimbladder of channel catfish. In aquatic organisms, hearing is an important sense for acoustic communications and detection of sound-emitting predators and prey. Channel catfish is a dominant aquaculture species in the United States. As channel catfish can hear sounds of relatively high frequency, it serves as a good model for study auditory mechanisms. In catfishes, Weberian ossicles connect the swimbladder to the inner ear to transfer the forced vibrations and improve hearing ability. In this study, we examined the transcriptional profiles of channel catfish swimbladder and other four tissues (gill, liver, skin, and intestine). We identified a total of 1777 genes that exhibited preferential expression pattern in swimbladder of channel catfish. Based on Gene Ontology enrichment analysis, many of swimbladder-enriched genes were categorized into sensory perception of sound, auditory behavior, response to auditory stimulus, or detection of mechanical stimulus involved in sensory perception of sound, such as coch, kcnq4, sptbn1, sptbn4, dnm1, ush2a, and col11a1. Six signaling pathways associated with hearing (Glutamatergic synapse, GABAergic synapse pathways, Axon guidance, cAMP signaling pathway, Ionotropic glutamate receptor pathway, and Metabotropic glutamate receptor group III pathway) were over-represented in KEGG and PANTHER databases. Protein interaction prediction revealed an interactive relationship among the swimbladder-enriched genes and genes involved in sensory perception of sound. This study identified a set of genes and signaling pathways associated with auditory system in the swimbladder of channel catfish and provide resources for further study on the biological and physiological roles in catfish swimbladder."	"Angiotensin II Promotes KV7.4 Channels Degradation Through Reduced Interaction With HSP90 (Heat Shock Protein 90). Voltage-gated Kv7.4 channels have been implicated in vascular smooth muscle cells' activity because they modulate basal arterial contractility, mediate responses to endogenous vasorelaxants, and are downregulated in several arterial beds in different models of hypertension. Angiotensin II (Ang II) is a key player in hypertension that affects the expression of several classes of ion channels. In this study, we evaluated the effects of Ang II on the expression and function of vascular Kv7.4. Western blot and quantitative polymerase chain reaction revealed that in whole rat mesenteric artery, Ang II incubation for 1 to 7 hours decreased Kv7.4 protein expression without reducing transcript levels. Moreover, Ang II decreased XE991 (Kv7)-sensitive currents and attenuated membrane potential hyperpolarization and relaxation induced by the Kv7 activator ML213. Ang II also reduced Kv7.4 staining at the plasma membrane of vascular smooth muscle cells. Proteasome inhibition with MG132 prevented Ang II-induced decrease of Kv7.4 levels and counteracted the functional impairment of ML213-induced relaxation in myography experiments. Proximity ligation assays showed that Ang II impaired the interaction of Kv7.4 with the molecular chaperone HSP90 (heat shock protein 90), enhanced the interaction of Kv7.4 with the E3 ubiquitin ligase CHIP (C terminus of Hsp70-interacting protein), and increased Kv7.4 ubiquitination. Similar alterations were found in mesenteric vascular smooth muscle cells isolated from Ang II-infused mice. The effect of Ang II was emulated by 17-AAG (17-demethoxy-17-(2-propenylamino) geldanamycin) that inhibits HSP90 interactions with client proteins. These results show that Ang II downregulates Kv7.4 by altering protein stability through a decrease of its interaction with HSP90. This leads to the recruitment of CHIP and Kv7.4 ubiquitination and degradation via the proteasome."	"The expression and function of KCNQ potassium channels in human chorionic plate arteries from women with normal pregnancies and pre-eclampsia. Pre-eclampsia is associated with altered maternal and placental vascular reactivity. Kv7 channels (encoded by KCNQ 1-5 genes) are a potential contributor to the regulation of vascular tone in CPAs (chorionic plate arteries) during normal pregnancy. The aim of this study is to establish the expression profile of KCNQ subunits in CPAs taken from women with preeclampsia or normotensive women and to examine the functional relevance of the Kv7 channels on an altered expression profile of KCNQ subunits. The effects of Kv7 channel modulators on CPAs were investigated by tension measurement. Quantitative PCR experiments were used to analyze the expression of KCNQ genes. Western blotting and immunofluorescence were both used to analyze the protein expression of Kv7 channels. Finally, in CPAs from normotensive women, the Kv7 channel blocker XE991 increased arterial basal tone and U46619-induced contraction, and pre-contracted CPAs (10-7 M U46619) exhibited significant relaxation following treatment with Retigabine(Kv7.2-7.5 activator) and BMS-204352(Kv7.2-7.5 activator). However, ICA-27243(selective KCNQ2 and KCNQ3 activator) and ML277(selective KV7.1 activator) had no significant effect on tension in the pre-contracted CPAs. Conversely, compared with CPAs from normotensive women, the effects of XE991 on basal tone and agonist (U46619)-induced contractions in CPAs from women with preeclampsia were markedly attenuated. Moreover, the relaxation effects of Retigabine and BMS-204352 on pre-contracted CPA vessels from women with pre-eclampsia were also markedly down-regulated. Interestingly, the relaxation ability of ICA-27243 in pre-contracted CPA vessels in women with pre-eclampsia was enhanced. The mRNA of KCNQ3 was specifically up-regulated, whereas those for KCNQ4 and KCNQ5 were down-regulated in CPAs from women with pre-eclampsia compared with those in normotensive women. Similar observations were found in a subsequent analysis of protein expression of KCNQ genes 3-5. Thus, down-regulated Kv7 channel function in tension regulation of CPAs in women with pre-eclampsia could be associated with considerably altered expression profiles of Kv7 subunits."	"A Calmodulin C-Lobe Ca<sup>2+</sup>-Dependent Switch Governs Kv7 Channel Function. Kv7 (KCNQ) voltage-gated potassium channels control excitability in the brain, heart, and ear. Calmodulin (CaM) is crucial for Kv7 function, but how this calcium sensor affects activity has remained unclear. Here, we present X-ray crystallographic analysis of CaM:Kv7.4 and CaM:Kv7.5 AB domain complexes that reveal an Apo/CaM clamp conformation and calcium binding preferences. These structures, combined with small-angle X-ray scattering, biochemical, and functional studies, establish a regulatory mechanism for Kv7 CaM modulation based on a common architecture in which a CaM C-lobe calcium-dependent switch releases a shared Apo/CaM clamp conformation. This C-lobe switch inhibits voltage-dependent activation of Kv7.4 and Kv7.5 but facilitates Kv7.1, demonstrating that mechanism is shared by Kv7 isoforms despite the different directions of CaM modulation. Our findings provide a unified framework for understanding how CaM controls different Kv7 isoforms and highlight the role of membrane proximal domains for controlling voltage-gated channel function. VIDEO ABSTRACT."	"Effect of GRM7 polymorphisms on the development of noise-induced hearing loss in Chinese Han workers: a nested case-control study. Noise-induced hearing loss (NIHL) is a complex, irreversible disease caused by the interaction of genetic and environmental factors. In recent years, a great many studies have been done to explore the NIHL susceptibility genes among humans. So far, high powerful detections have been founded that genes of potassium ion channel genes (KCNQ4 and KCNE1), catalase (CAT), protocadherin 15 (PCDH15), myosin 14 (MYH14) and heart shock protein (HSP70) which have been identified in more than one population may be associated with the susceptibility to NIHL. As for metabolic glutamate receptor7 gene (GRM7), a lot of researches mainly focus on age-related hearing loss (ARHL) and the results have shown that the polymorphisms of GRM7 are linked to the development of ARHL. However, little is known about the association of GRM7 and the susceptibility to NIHL. Therefore, the aim of this study was to explore the effect of GRM7 polymorphisms on the susceptibility to NIHL. A nested case-control study based on the cohort in a Chinese steel factory was implemented in 292 cases and 584 controls matched with the same sex, the age difference ≤ 5 years old, the same type of work, duration of occupational noise exposure ≤2 years. Five single nucleotide polymorphisms (SNPs) of GRM7 were gained through selecting and genotyping SNPs. Conditional logistic regression analysis was used to assess the main effect of GRM7 polymorphisms on the susceptibility to NIHL and the gene-by-environment interaction. Furthermore, the gene-by-gene interactions were analyzed by generalized multiple dimensionality reduction (GMDR). This research discovered for the first time that the mutant allele C in rs1485175 of the GMR7 may decrease individuals' susceptibility to NIHL. The interaction between rs1485175 and cumulative noise exposure (CNE) at high level was found after the stratification according to CNE (p/p bon = 0.014/0.007, OR = 0.550, 95% CI: 0.340-0.891). Permutation test of GMDR suggested that rs1920109, rs1485175 and rs9826579 in GRM7 might interact with each other in the process of developing NIHL (p = 0.037). The results suggest that the mutant allele C of rs1485175 in GRM7 may reduce the susceptibility to NIHL in Chinese Han population."	"4-Aminopyridine: a pan voltage-gated potassium channel inhibitor that enhances Kv 7.4 currents and inhibits noradrenaline-mediated contraction of rat mesenteric small arteries. Kv 7.4 and Kv 7.5 channels are regulators of vascular tone. 4-Aminopyridine (4-AP) is considered a broad inhibitor of voltage-gated potassium (KV ) channels, with little inhibitory effect on Kv 7 family members at mmol concentrations. However, the effect of 4-AP on Kv 7 channels has not been systematically studied. The aim of this study was to investigate the pharmacological activity of 4-AP on Kv 7.4 and Kv 7.5 channels and characterize the effect of 4-AP on rat resistance arteries. Voltage clamp experiments were performed on Xenopus laevis oocytes injected with cRNA encoding KCNQ4 or KCNQ5, HEK cells expressing Kv 7.4 channels and on rat, freshly isolated mesenteric artery smooth muscle cells. The effect of 4-AP on tension, membrane potential, intracellular calcium and pH was assessed in rat mesenteric artery segments. 4-AP increased the Kv 7.4-mediated current in oocytes and HEK cells but did not affect Kv 7.5 current. 4-AP also enhanced native mesenteric artery myocyte K<sup>+</sup> current at sub-mmol concentrations. When applied to NA-preconstricted mesenteric artery segments, 4-AP hyperpolarized the membrane, decreased [Ca<sup>2+</sup> ]i and caused concentration-dependent relaxations that were independent of 4-AP-mediated changes in intracellular pH. Application of the Kv 7 channel blocker XE991 and BKCa channel blocker iberiotoxin attenuated 4-AP-mediated relaxation. 4-AP also inhibited the NA-mediated signal transduction to elicit a relaxation. These data show that 4-AP is able to relax NA-preconstricted rat mesenteric arteries by enhancing the activity of Kv 7.4 and BKCa channels and attenuating NA-mediated signalling."	"Coordinated Expression of Two Types of Low-Threshold K<sup>+</sup> Channels Establishes Unique Single Spiking of Mauthner Cells among Segmentally Homologous Neurons in the Zebrafish Hindbrain. Expression of different ion channels permits homologously-generated neurons to acquire different types of excitability and thus code various kinds of input information. Mauthner (M) series neurons in the teleost hindbrain consist of M cells and their morphological homologs, which are repeated in adjacent segments and share auditory inputs. When excited, M cells generate a single spike at the onset of abrupt stimuli, while their homologs encode input intensity with firing frequency. Our previous study in zebrafish showed that immature M cells burst phasically at 2 d postfertilization (dpf) and acquire single spiking at 4 dpf by specific expression of auxiliary Kvβ2 subunits in M cells in association with common expression of Kv1.1 channels in the M series. Here, we further reveal the ionic mechanisms underlying this functional differentiation. Pharmacological blocking of Kv7/KCNQ in addition to Kv1 altered mature M cells to fire tonically, similar to the homologs. In contrast, blocking either channel alone caused M cells to burst phasically. M cells at 2 dpf fired tonically after blocking Kv7. In situ hybridization revealed specific Kv7.4/KCNQ4 expression in M cells at 2 dpf. Kv7.4 and Kv1.1 channels expressed in Xenopus oocytes exhibited low-threshold outward currents with slow and fast rise times, while coexpression of Kvβ2 accelerated and increased Kv1.1 currents, respectively. Computational models, modified from a mouse cochlear neuron model, demonstrated that Kv7.4 channels suppress repetitive firing to produce spike-frequency adaptation, while Kvβ2-associated Kv1.1 channels increase firing threshold and decrease the onset latency of spiking. Altogether, coordinated expression of these low-threshold K<sup>+</sup> channels with Kvβ2 functionally differentiates M cells among homologous neurons."	"[The genetic aspects of occupational hearing impairment]. This article was designed to be the overview of the current literature publications concerning the identification of the genetic markers of susceptibility to the noise-induced loss of hearing. The analysis of these data has demonstrated that the major gene polymorphisms associated with the development of this pathological condition are localized in the genes encoding for the antioxidant systems, potassium homeostasis, and adhesion molecules as well as in the genes involved in intercellular coupling, the mechanisms underlying the cellular response to stress, activation and regulation of heat shock proteins, and signaling function of the immune system. It is concluded that the further investigations into the genetic aspects of the full-genome sequencing techniques and the search for genomic associations could greatly contribute to the development of personalized medicine and the reduction of risks of occupational noise-induced sensorineural impairment of hearing. Представлен обзор современных данных литературы по идентификации генетических маркеров предрасположенности к индуцированной шумом тугоухости. Анализ показал, что основные полиморфизмы, ассоциированные с развитием данного заболевания, локализованы в генах антиоксидантных систем, калиевого гомеостаза и формирования межклеточных контактов, клеточного стресса, активации и регуляции фактора теплового шока, а также в генах передачи сигналов иммунной системы. Дальнейшее изучение генетических аспектов методом полногеномного секвенирования и полногеномного поиска ассоциаций позволит проводить более детальное исследование популяций, которое, в конечном счете, обеспечит развитие персонифицированной медицины и снижение рисков развития профессиональной нейросенсорной тугоухости."	"STRC Deletion is a Frequent Cause of Slight to Moderate Congenital Hearing Impairment in the Czech Republic. This study aimed to clarify the molecular epidemiology of hearing loss by identifying the responsible genes in patients without GJB2 mutations. Prospective genetic study. Tertiary referral hospital. Fifty one patients with bilateral sensorineural hearing loss, 20 men, and 31 women, mean age 24.9 years, range 3 to 64 years, from 49 families. GJB2 and deltaGJB6-D13S1830 mutations were excluded previously. Diagnostic. Sixty-nine genes reported to be causative of hearing loss were analyzed. Sequence capture technology, next-generation sequencing, and multiplex ligation-dependent probe amplification (MLPA) were used. Coverage of STRC was screened in Integrative Genomics Viewer software. Identification of causal pathogenic mutations in genes related to deafness. Five families (10%) had recessive STRC deletions or mutations. Five unrelated patients (10%) had recessive mutations in TMPRSS3, USH2A, PCDH15, LOXHD1, and MYO15A. Three families (6%) had autosomal dominant mutations in MYO6A, KCNQ4, and SIX1. One family (2%) had an X-linked POU3F4 mutation. Thus, we identified the cause of hearing loss in 28% of the families studied. Following GJB2, STRC was the second most frequently mutated gene in patients from the Czech Republic with hearing loss. To decrease the cost of testing, we recommend STRC deletion screening with MLPA before next-generation sequencing. The existence of a pseudogene and polymorphic STRC regions can lead to false-positive or false-negative results when copy number variation analysis is based on next-generation sequencing data."	"Selective targeting of M-type potassium Kv 7.4 channels demonstrates their key role in the regulation of dopaminergic neuronal excitability and depression-like behaviour. The mesolimbic dopamine system originating in the ventral tegmental area (VTA) is involved in the development of depression, and firing patterns of VTA dopaminergic neurons are key determinants in this process. Here, we describe a crucial role for the M-type Kv 7.4 channels in modulating excitability of VTA dopaminergic neurons and in the development of depressive behaviour in mice. We used Kv 7.4 channel knockout mice and a social defeat model of depression in combination with electrophysiological techniques (patch clamp recording and in vivo single-unit recordings), immunohistochemistry, single-cell PCR and behavioural analyses (social interaction time and glucose preference tests) to investigate VTA circuits involved in the development of depression-like behaviour. Among the Kv 7 channels, Kv 7.4 channels are selectively expressed in dopaminergic neurons of the VTA. Using a newly identified selective Kv 7.4 channel activator, fasudil, and Kv 7.4 channel knockout mice, we demonstrate that these channels are a dominant modulator of excitability of VTA dopaminergic neurons, in vitro and in vivo. Down-regulation of Kv 7.4 channels could be a causal factor of the altered excitability of VTA dopaminergic neurons and depression-like behaviour. The selective Kv 7.4 channel activator, fasudil, strongly alleviated depression-like behaviour in the social defeat mouse model of depression. Because expression of Kv 7.4 channels in the CNS is limited, selectively targeting this M channel subunit is likely to produce less on-target side effects than non-selective M channel modulators. Thus, Kv 7.4 channels may offer alternative targets in treatment of depression."	"Absence of KCNQ4 mutation in Bengali families with ADNSHL originated from West Bengal, India. Autosomal Dominant Non-Syndromic Hearing Loss (ADNSHL) is extremely heterogeneous in nature. More than 60 loci with 30 different genes have been identified linked to ADNSHL. Mutation in KCNQ4 is considered as one of the most common causative factor responsible for ADNSHL. No study focused on the genetic alteration of KCNQ4 gene among hearing loss patients in India. The present study for the first time was carried out to determine the mutation spectrum of KCNQ4 gene in ADNSHL patients of West Bengal state, India. Twenty nine individuals from 10 independent ADNSHL family (with two or more generation affected) were studied both clinically and genetically. Most of the patients showed moderate progressive sensorineural hearing loss. Mutation analysis was conducted for KCNQ4 gene using polymerase chain reaction followed by direct sequencing. Neither any reported nor a novel pathogenic mutation in KCNQ4was detected in our studied group, in contrast to the findings among East Asians. The result of the present study suggests that mutations in KCNQ4 gene are unlikely to be a major causative factor of ADNSHL in our studied patients from West Bengal, India, pointing to other genes might be responsible for ADNSHL in our studied patients."	"Differences in molecular mechanisms of K<sup>+</sup> clearance in the auditory sensory epithelium of birds and mammals. Mechanoelectrical transduction in the vertebrate inner ear is a highly conserved mechanism that is dependent on K<sup>+</sup> influx into hair cells. Here, we investigated the molecular underpinnings of subsequent K<sup>+</sup> recycling in the chicken basilar papilla and compared them with those in the mammalian auditory sensory epithelium. As in mammals, the avian auditory hair cell uses KCNQ4, KCNMA1 and KCNMB1 in its K<sup>+</sup> efflux system. Expression of KCNQ1 and KCNE1 suggests an additional efflux apparatus in avian hair cells. Marked differences were observed for K<sup>+</sup> clearance. In mammals, KCC3, KCC4, Kir4.1 and CLC-K are present in supporting cells. Of these, only CLC-K is expressed in avian supporting cells. Instead, they possess NKCC1 to move K<sup>+</sup> across the membrane. This expression pattern suggests an avian clearance mechanism reminiscent of the well-established K<sup>+</sup> uptake apparatus present in inner ear secretory cells. Altogether, tetrapod hair cells show similar mechanisms and supporting cells show distinct molecular underpinnings of K<sup>+</sup> recycling."	"A novel pore-region mutation, c.887G &gt; A (p.G296D) in KCNQ4, causing hearing loss in a Chinese family with autosomal dominant non-syndromic deafness 2. Hereditary non-syndromic hearing loss is the most common inherited sensory defect in humans. The KCNQ4 channel belongs to a family of potassium ion channels that play crucial roles in physiology and disease. Mutations in KCNQ4 underlie deafness non-syndromic autosomal dominant 2, a subtype of autosomal dominant, progressive, high-frequency hearing loss. A six-generation Chinese family from Hebei Province with autosomal dominantly inherited, sensorineural, postlingual, progressive hearing loss was enrolled in this study. Mutation screening of 129 genes associated with hearing loss was performed in five family members by next-generation sequencing (NGS). We also carried out variant analysis on DNA from 531 Chinese individuals with normal hearing as controls. This family exhibits postlingual, progressive, symmetrical, bilateral, non-syndromic sensorineural hearing loss. NGS, bioinformatic analysis, and Sanger sequencing confirmed the co-segregation of a novel mutation [c.887G &gt; A (p.G296D)] in KCNQ4 with the disease phenotype in this family. This mutation leads to a glycine-to-aspartic acid substitution at position 296 in the pore region of the KCNQ4 channel. This mutation affects a highly conserved glutamic acid. NGS is a highly efficient tool for identifying gene mutations causing heritable disease. Progressive hearing loss is common in individuals with KCNQ4 mutations. NGS together with Sanger sequencing confirmed that the five affected members of this Chinese family inherited a missense mutation, c.887G &gt; A (p.G296D), in exon 6 of KCNQ4. Our results increase the number of identified KCNQ4 mutations."	"Downregulation of KCNQ5 expression in the rat pulmonary vasculature of nitrofen-induced congenital diaphragmatic hernia. Pulmonary hypertension (PH) is a common complication of congenital diaphragmatic hernia (CDH). Voltage-gated potassium channels KCNQ1, KCNQ4, and KCNQ5 are expressed by rodent pulmonary artery smooth muscle cells, contributing to their vascular tone. We hypothesized that KCNQ1, KCNQ4, and KCNQ5 expression is altered in the pulmonary vasculature of nitrofen-induced CDH rats. After ethical approval (REC913b), time-pregnant rats received nitrofen or vehicle on gestational day (D)9. D21 fetuses were divided into CDH and control group (n=22). QRT-PCR and western blotting were performed to determine gene and protein expression of KCNQ1, KCNQ4, and KCNQ5. Confocal microscopy was used to detect these proteins in the pulmonary vasculature. Relative mRNA level of KCNQ5 (p=0.025) was significantly downregulated in CDH lungs compared to controls. KCNQ1 (p=0.052) and KCNQ4 (p=0.574) expression was not altered. Western blotting confirmed the decreased pulmonary KCNQ5 protein expression in CDH lungs. Confocal-microscopy detected a markedly diminished KCNQ5 expression in pulmonary vasculature of CDH fetuses. Downregulated pulmonary expression of KCNQ5 in CDH lungs suggests that this potassium channel may play an important role in the development of PH in this model. KCNQ5 channel activator drugs may be a potential therapeutic target for the treatment of PH in CDH. 2b (Centre for Evidence-Based Medicine, Oxford)."	"Muscarinic Acetylcholine Receptors and M-Currents Underlie Efferent-Mediated Slow Excitation in Calyx-Bearing Vestibular Afferents. Stimulation of vestibular efferent neurons excites calyx and dimorphic (CD) afferents. This excitation consists of fast and slow components that differ &gt;100-fold in activation kinetics and response duration. In the turtle, efferent-mediated fast excitation arises in CD afferents when the predominant efferent neurotransmitter acetylcholine (ACh) activates calyceal nicotinic ACh receptors (nAChRs); however, it is unclear whether the accompanying efferent-mediated slow excitation is also attributed to cholinergic mechanisms. To identify synaptic processes underlying efferent-mediated slow excitation, we recorded from CD afferents innervating the turtle posterior crista during electrical stimulation of efferent neurons, in combination with pharmacological probes and mechanical stimulation. Efferent-mediated slow excitation was unaffected by nAChR compounds that block efferent-mediated fast excitation, but were mimicked by muscarine and antagonized by atropine, indicating that it requires ACh and muscarinic ACh receptor (mAChR) activation. Efferent-mediated slow excitation or muscarine application enhanced the sensitivity of CD afferents to mechanical stimulation, suggesting that mAChR activation increases afferent input impedance by closing calyceal potassium channels. These observations were consistent with suppression of a muscarinic-sensitive K<sup>+</sup>-current, or M-current. Immunohistochemistry for putative M-current candidates suggested that turtle CD afferents express KCNQ3, KCNQ4, and ERG1-3 potassium channel subunits. KCNQ channels were favored as application of the selective antagonist XE991 mimicked and occluded efferent-mediated slow excitation in CD afferents. These data highlight an efferent-mediated mechanism for enhancing afferent sensitivity. They further suggest that the clinical effectiveness of mAChR antagonists in treating balance disorders may also target synaptic mechanisms in the vestibular periphery, and that KCNQ channel modulators might offer similar therapeutic value.SIGNIFICANCE STATEMENT Targeting the efferent vestibular system (EVS) pharmacologically might prove useful in ameliorating some forms of vestibular dysfunction by modifying ongoing primary vestibular input. EVS activation engages several kinetically distinct synaptic processes that profoundly alter the discharge rate and sensitivity of first-order vestibular neurons. Efferent-mediated slow excitation of vestibular afferents is of considerable interest given its ability to elevate afferent activity over an extended time course. We demonstrate for the first time that efferent-mediated slow excitation of vestibular afferents is mediated by muscarinic acetylcholine receptor (mAChR) activation and the subsequent closure of KCNQ potassium channels. The clinical effectiveness of some anti-mAChR drugs in treating motion sickness suggest that we may, in fact, already be targeting the peripheral EVS."	"Synergistic interplay of Gβγ and phosphatidylinositol 4,5-bisphosphate dictates Kv7.4 channel activity. Kv7.4 channels are key determinants of arterial contractility and cochlear mechanosensation that, like all Kv7 channels, have an obligatory requirement for phosphatidylinositol 4,5-bisphosphate (PIP2). βγ G proteins (Gβγ) have been identified as novel positive regulators of Kv7.4. The present study ascertained whether Gβγ increased Kv7.4 open probability through an increased sensitivity to PIP2. In HEK cells stably expressing Kv7.4, PIP2 or Gβγ increased open probability in a concentration dependent manner. Depleting PIP2 prevented any Gβγ-mediated stimulation whilst an array of Gβγ inhibitors prohibited any PIP2-induced current enhancement. A combination of PIP2 and Gβγ at sub-efficacious concentrations increased channel open probability considerably. The stimulatory effects of three Kv7.2-7.5 channel activators were also lost by PIP2 depletion or Gβγ inhibitors. This study alters substantially our understanding of the fundamental processes that dictate Kv7.4 activity, revealing a more complex and subtle paradigm where the reliance on local phosphoinositide is dictated by interaction with Gβγ."	"Kv7 Channel Activation Underpins EPAC-Dependent Relaxations of Rat Arteries. To establish the role of Kv7 channels in EPAC (exchange protein directly activated by cAMP)-dependent relaxations of the rat vasculature and to investigate whether this contributes to β-adrenoceptor-mediated vasorelaxations. Isolated rat renal and mesenteric arteries (RA and MA, respectively) were used for isometric tension recording to study the relaxant effects of a specific EPAC activator and the β-adrenoceptor agonist isoproterenol in the presence of potassium channel inhibitors and cell signaling modulators. Isolated myocytes were used in proximity ligation assay studies to detect localization of signaling intermediaries with Kv7.4 before and after cell stimulation. Our studies showed that the EPAC activator (8-pCPT-2Me-cAMP-AM) produced relaxations and enhanced currents of MA and RA that were sensitive to linopirdine (Kv7 inhibitor). Linopirdine also inhibited isoproterenol-mediated relaxations in both RA and MA. In the MA, isoproterenol relaxations were sensitive to EPAC inhibition, but not protein kinase A inhibition. In contrast, isoproterenol relaxations in RA were attenuated by protein kinase A but not by EPAC inhibition. Proximity ligation assay showed a localization of Kv7.4 with A-kinase anchoring protein in both vessels in the basal state, which increased only in the RA with isoproterenol stimulation. In the MA, but not the RA, a localization of Kv7.4 with both Rap1a and Rap2 (downstream of EPAC) increased with isoproterenol stimulation. EPAC-dependent vasorelaxations occur in part via activation of Kv7 channels. This contributes to the isoproterenol-mediated relaxation in mesenteric, but not renal, arteries."	"KV7 channels in the human detrusor: channel modulator effects and gene and protein expression. Voltage-gated type 7 K<sup>+</sup> (KV7 or KCNQ) channels regulate the contractility of various smooth muscles. With this study, we aimed to assess the role of KV7 channels in the regulation of human detrusor contractility, as well as the gene and protein expression of KV7 channels in this tissue. For these purposes, the isolated organ technique, RT-qPCR, and Western blot were used, respectively. XE-991, a selective KV7 channel blocker, concentration-dependently contracted the human detrusor; mean EC50 and Emax of XE-991-induced concentration-response curve were 14.1 μM and 28.8 % of the maximal bethanechol-induced contraction, respectively. Flupirtine and retigabine, selective KV7.2-7.5 channel activators, induced concentration-dependent relaxations of bethanechol-precontracted strips, with maximal relaxations of 51.6 and 51.8 % of the precontraction, respectively. XE-991 blocked the relaxations induced by flupirtine and retigabine. All five KCNQ genes were found to be expressed in the detrusor with KCNQ4 being the most expressed among them. Different bands, having sizes similar to some of reported KV7.1, 7.4, and 7.5 channel subunit isoforms, were detected in the detrusor by Western blot with the KV7.4 band being the most intense among them. In conclusion, KV7 channels contribute to set the basal tone of the human detrusor. In addition, KV7 channel activators significantly relax the detrusor. The KV7.4 channels are probably the most important KV7 channels expressed in the human detrusor. These data suggest that selective KV7.4 channel activators might represent new pharmacological tools for inducing therapeutic relaxation of the detrusor."	"Kcne4 Deletion Sex-Dependently Alters Vascular Reactivity. Voltage-gated potassium (Kv) channels formed by Kv7 (KCNQ) α-subunits are recognized as crucial for vascular smooth muscle function, in addition to their established roles in the heart (Kv7.1) and the brain (Kv7.2-5). In vivo, Kv7 α-subunits are often regulated by KCNE subfamily ancillary (β) subunits. We investigated the effects of targeted germline Kcne4 deletion on mesenteric artery reactivity in adult male and female mice. Kcne4 deletion increased mesenteric artery contractility in response to α-adrenoceptor agonist methoxamine, and decreased responses to Kv7.2-7.5 channel activator ML213, in male but not female mice. In contrast, Kcne4 deletion markedly decreased vasorelaxation in response to isoprenaline in both male and female mice. Kcne4 expression was 2-fold lower in the female versus the male mouse mesenteric artery, and Kcne4 deletion elicited only moderate changes of other Kcne transcripts, with no striking sex-specific differences. However, Kv7.4 protein expression in females was twice that in males, and was reduced in both sexes by Kcne4 deletion. Our findings confirm a crucial role for KCNE4 in regulation of Kv7 channel activity to modulate vascular tone, and provide the first known molecular mechanism for sex-specificity of this modulation that has important implications for vascular reactivity and may underlie sex-specific susceptibility to cardiovascular diseases."	"MicroRNA-153 targeting of KCNQ4 contributes to vascular dysfunction in hypertension. Kv7.4, a voltage-dependent potassium channel expressed throughout the vasculature, controls arterial contraction and is compromised in hypertension by an unknown mechanism. MicroRNAs (miRs) are post-transcriptional regulators of protein production and are altered in disease states such as hypertension. We investigated whether miRs regulate Kv7.4 expression. In renal and mesenteric arteries (MAs) of the spontaneously hypertensive rat (SHR), Kv7.4 protein decreased compared with the normotensive (NT) rat without a decrease in KCNQ4 mRNA, inferring that Kv7.4 abundance was determined by post-transcriptional regulation. In silico analysis of the 3' UTR of KCNQ4 revealed seed sequences for miR26a, miR133a, miR200b, miR153, miR214, miR218, and let-7d with quantitative polymerase chain reaction showing miR153 increased in those arteries from SHRs that exhibited decreased Kv7.4 levels. Luciferase reporter assays indicated a direct targeting effect of miR153 on the 3' UTR of KCNQ4. Introduction of high levels of miR153 to MAs increased vascular wall thickening and reduced Kv7.4 expression/Kv7 channel function compared with vessels receiving a non-targeting miR, providing a proof of concept of Kv7.4 regulation by miR153. This study is the first to define a role for aberrant miR153 contributing to the hypertensive state through targeting of KCNQ4 in an animal model of hypertension, raising the possibility of the use of miR153-related therapies in vascular disease."	"Novel exon 1 protein-coding regions N-terminally extend human KCNE3 and KCNE4. The 5 human (h)KCNE β subunits each regulate various cation channels and are linked to inherited cardiac arrhythmias. Reported here are previously undiscovered protein-coding regions in exon 1 of hKCNE3 and hKCNE4 that extend their encoded extracellular domains by 44 and 51 residues, which yields full-length proteins of 147 and 221 residues, respectively. Full-length hKCNE3 and hKCNE4 transcript and protein are expressed in multiple human tissues; for hKCNE4, only the longer protein isoform is detectable. Two-electrode voltage-clamp electrophysiology revealed that, when coexpressed in Xenopus laevis oocytes with various potassium channels, the newly discovered segment preserved conversion of KCNQ1 by hKCNE3 to a constitutively open channel, but prevented its inhibition of Kv4.2 and KCNQ4. hKCNE4 slowing of Kv4.2 inactivation and positive-shifted steady-state inactivation were also preserved in the longer form. In contrast, full-length hKCNE4 inhibition of KCNQ1 was limited to 40% at +40 mV vs. 80% inhibition by the shorter form, and augmentation of KCNQ4 activity by hKCNE4 was entirely abolished by the additional segment. Among the genome databases analyzed, the longer KCNE3 is confined to primates; full-length KCNE4 is widespread in vertebrates but is notably absent from Mus musculus Findings highlight unexpected KCNE gene diversity, raise the possibility of dynamic regulation of KCNE partner modulation via splice variation, and suggest that the longer hKCNE3 and hKCNE4 proteins should be adopted in future mechanistic and genetic screening studies.-Abbott, G. W. Novel exon 1 protein-coding regions N-terminally extend human KCNE3 and KCNE4."	"Tannic acid activates the Kv7.4 and Kv7.3/7.5 K(+) channels expressed in HEK293 cells and reduces tension in the rat mesenteric arteries. This study investigated the effect of tannic acid (TA), a plant-derived hydrolyzable polyphenol, on Kv7.4 and Kv7.5 K(+) channels and rat mesenteric artery. Whole-cell patch clamp experiments were used to record the Kv7.4 and Kv7.3/7.5 K(+) currents expressed in HEK293 cells; and the tension changes of mesenteric arteries isolated from rats were recorded using small vessel myography apparatus. Tannic acid increases the Kv7.4 and Kv7.3/7.5 K(+) currents in a concentration-dependent manner (median effective concentration (EC50 ) = 27.3 ± 3.6 μm and EC50 = 23.1 ± 3.9 μm, respectively). In addition, 30 μm TA shifts the G-V curve of Kv7.4 and Kv7.3/7.5 K(+) currents to the left by 14.18 and 25.24 mV, respectively, and prolongs the deactivation time constants by 184.44 and 154.77 ms, respectively. Moreover, TA relaxes the vascular tension of rat mesenteric arteries in a concentration-dependent manner (half inhibitory concentration (IC50 ) = 148.7 ± 13.4 μm). These results confirms the vasodilatory effects of TA on rat mesenteric artery and the activating effects on the Kv7.4 and Kv7.3/7.5 K(+) channels, which may be a mechanism to explain the vasodilatory effect and this mechanism can be used in the research of antihypertension."	"Molecular and functional characterization of Kv 7 channels in penile arteries and corpus cavernosum of healthy and metabolic syndrome rats. KCNQ-encoded voltage-dependent potassium channels (Kv 7) are involved in the regulation of vascular tone. In this study we evaluated the influence of Kv 7 channel activation on smooth muscle relaxation in rat penile arteries and corpus cavernosum from normal and spontaneously hypertensive, heart failure-prone (SHHF) rats - a rat model of human metabolic syndrome. Quantitative PCR and immunohistochemistry were used to determine the expression of KCNQ isoforms in penile tissue. Isometric tension was measured in intracavernous arterial rings and corpus cavernosum strips isolated from normal and SHHF rats. Transcripts for KCNQ3, KCNQ4 and KCNQ5 were detected in penile arteries and corpus cavernosum. KCNQ1 was only found in corpus cavernosum. Immunofluorescence signals to Kv 7.4 and Kv 7.5 were found in penile arteries, penile veins and corpus cavernosum. The Kv 7.2-7.5 activators, ML213 and BMS204352, relaxed pre-contracted penile arteries and corpus cavernosum independently of nitric oxide synthase or endothelium-derived hyperpolarization. Relaxations to sildenafil, a PDE5 inhibitor, and sodium nitroprusside (SNP), an nitric oxide donor, were reduced by blocking Kv 7 channels with linopirdine in penile arteries and corpus cavernosum. In SHHF rat penile arteries and corpus cavernosum, relaxations to ML213 and BMS204352 were attenuated, and the blocking effect of linopirdine on sildenafil-induced and SNP-induced relaxations reduced. KCNQ3, KCNQ4 and KCNQ5 were down-regulated, and KCNQ1 was up-regulated in corpus cavernosum from SHHF rats. KCNQ1-5 transcripts remained unchanged in penile arteries from SHHF rats. These data suggest that Kv 7 channels play a role in erectile function and contribute to the pathophysiology of erectile dysfunction, an early indicator of cardiovascular disease."	"KCNQ Potassium Channels Modulate Sensitivity of Skin Down-hair (D-hair) Mechanoreceptors. M-current-mediating KCNQ (Kv7) channels play an important role in regulating the excitability of neuronal cells, as highlighted by mutations in Kcnq2 and Kcnq3 that underlie certain forms of epilepsy. In addition to their expression in brain, KCNQ2 and -3 are also found in the somatosensory system. We have now detected both KCNQ2 and KCNQ3 in a subset of dorsal root ganglia neurons that correspond to D-hair Aδ-fibers and demonstrate KCNQ3 expression in peripheral nerve endings of cutaneous D-hair follicles. Electrophysiological recordings from single D-hair afferents from Kcnq3(-/-) mice showed increased firing frequencies in response to mechanical ramp-and-hold stimuli. This effect was particularly pronounced at slow indentation velocities. Additional reduction of KCNQ2 expression further increased D-hair sensitivity. Together with previous work on the specific role of KCNQ4 in rapidly adapting skin mechanoreceptors, our results show that different KCNQ isoforms are specifically expressed in particular subsets of mechanosensory neurons and modulate their sensitivity directly in sensory nerve endings. "	"Expression and function of Kv7.4 channels in rat cardiac mitochondria: possible targets for cardioprotection. Plasmalemmal Kv7.1 (KCNQ1) channels are critical players in cardiac excitability; however, little is known on the functional role of additional Kv7 family members (Kv7.2-5) in cardiac cells. In this work, the expression, function, cellular and subcellular localization, and potential cardioprotective role against anoxic-ischaemic cardiac injury of Kv7.4 channels have been investigated. Expression of Kv7.1 and Kv7.4 transcripts was found in rat heart tissue by quantitative polymerase chain reaction. Western blots detected Kv7.4 subunits in mitochondria from Kv7.4-transfected cells, H9c2 cardiomyoblasts, freshly isolated adult cardiomyocytes, and whole hearts. Immunofluorescence experiments revealed that Kv7.4 subunits co-localized with mitochondrial markers in cardiac cells, with ∼ 30-40% of cardiac mitochondria being labelled by Kv7.4 antibodies, a result also confirmed by immunogold electron microscopy experiments. In isolated cardiac (but not liver) mitochondria, retigabine (1-30 µM) and flupirtine (30 µM), two selective Kv7 activators, increased Tl(+) influx, depolarized the membrane potential, and inhibited calcium uptake; all these effects were antagonized by the Kv7 blocker XE991. In intact H9c2 cells, reducing Kv7.4 expression by RNA interference blunted retigabine-induced mitochondrial membrane depolarization; in these cells, retigabine decreased mitochondrial Ca(2+) levels and increased radical oxygen species production, both effects prevented by XE991. Finally, retigabine reduced cellular damage in H9c2 cells exposed to anoxia/re-oxygenation and largely prevented the functional and morphological changes triggered by global ischaemia/reperfusion (I/R) in Langendorff-perfused rat hearts. Kv7.4 channels are present and functional in cardiac mitochondria; their activation exerts a significant cardioprotective role, making them potential therapeutic targets against I/R-induced cardiac injury."	"The Role of the Carboxyl Terminus Helix C-D Linker in Regulating KCNQ3 K+ Current Amplitudes by Controlling Channel Trafficking. In the central and peripheral nervous system, the assembly of KCNQ3 with KCNQ2 as mostly heteromers, but also homomers, underlies &quot;M-type&quot; currents, a slowly-activating voltage-gated K+ current that plays a dominant role in neuronal excitability. KCNQ3 homomers yield much smaller currents compared to KCNQ2 or KCNQ4 homomers and KCNQ2/3 heteromers. This smaller current has been suggested to result either from divergent channel surface expression or from a pore that is more unstable in KCNQ3. Channel surface expression has been shown to be governed by the distal part of the C-terminus in which helices C and D are critical for channel trafficking and assembly. A sequence alignment of this region in KCNQ channels shows that KCNQ3 possesses a longer linker between helix C and D compared to the other KCNQ subunits. Here, we investigate the role of the extra residues of this linker on KCNQ channel expression. Deletion of these residues increased KCNQ3 current amplitudes. Total internal reflection fluorescence imaging and plasma membrane protein assays suggest that the increase in current is due to a higher surface expression of the channels. Conversely, introduction of the extra residues into the linker between helices C and D of KCNQ4 reduced current amplitudes by decreasing the number of KCNQ4 channels at the plasma membrane. Confocal imaging suggests a higher fraction of channels, which possess the extra residues of helix C-D linker, were retained within the endoplasmic reticulum. Such retention does not appear to lead to protein accumulation and activation of the unfolded protein response that regulates protein folding and maintains endoplasmic reticulum homeostasis. Taken together, we conclude that extra helix C-D linker residues play a role in KCNQ3 current amplitudes by controlling the exit of the channel from the endoplasmic reticulum. "	"Mechanisms of Calmodulin Regulation of Different Isoforms of Kv7.4 K+ Channels. Calmodulin (CaM), a Ca(2+)-sensing protein, is constitutively bound to IQ domains of the C termini of human Kv7 (hKv7, KCNQ) channels to mediate Ca(2+)-dependent reduction of Kv7 currents. However, the mechanism remains unclear. We report that CaM binds to two isoforms of the hKv7.4 channel in a Ca(2+)-independent manner but that only the long isoform (hKv7.4a) is regulated by Ca(2+)/CaM. Ca(2+)/CaM mediate reduction of the hKv7.4a channel by decreasing the channel open probability and altering activation kinetics. We took advantage of a known missense mutation (G321S) that has been linked to progressive hearing loss to further examine the inhibitory effects of Ca(2+)/CaM on the Kv7.4 channel. Using multidisciplinary techniques, we demonstrate that the G321S mutation may destabilize CaM binding, leading to a decrease in the inhibitory effects of Ca(2+) on the channels. Our study utilizes an expression system to dissect the biophysical properties of the WT and mutant Kv7.4 channels. This report provides mechanistic insights into the critical roles of Ca(2+)/CaM regulation of the Kv7.4 channel under physiological and pathological conditions. "	"Transient alteration of the vestibular calyceal junction and synapse in response to chronic ototoxic insult in rats. Ototoxicity is known to cause permanent loss of vestibule function through degeneration of sensory hair cells (HCs). However, functional recovery has been reported during washout after chronic ototoxicity, although the mechanisms underlying this reversible dysfunction are unknown. Here, we study this question in rats chronically exposed to the ototoxic compound 3,3'-iminodipropionitrile (IDPN). Pronounced alterations in vestibular function appeared before significant loss of HCs or stereociliary coalescence became evident by ultrastructural analyses. This early dysfunction was fully reversible if the exposure was terminated promptly. In cristae and utricles, the distinct junctions formed between type I HCs (HCI) and calyx endings were completely dismantled at these early stages of reversible dysfunction, and completely rebuilt during washout. Immunohistochemical observations revealed loss and recovery of the junction proteins CASPR1 and tenascin-C and RT-PCR indicated that their loss was not due to decreased gene expression. KCNQ4 was mislocalized during intoxication and recovered control-like localization after washout. At early stages of the intoxication, the calyces could be classified as showing intact or lost junctions, indicating that calyceal junction dismantlement is triggered on a calyx-by-calyx basis. Chronic toxicity also altered the presence of ribeye, PSD-95 and GluA2 puncta in the calyces. These synaptic alterations varied between the two types of calyx endings (formed by calyx-only or dimorphic afferents) and some persisted at the end of the washout period. The present data reveal new forms of plasticity of the calyx endings in adult mammals, including a robust capacity for rebuilding the calyceal junction. These findings contribute to a better understanding of the phenomena involved in progressive vestibular dysfunction and its potential recovery during and after ototoxic exposure. "	"Potent KCNQ2/3-specific channel activator suppresses in vivo epileptic activity and prevents the development of tinnitus. Voltage-gated Kv7 (KCNQ) channels are voltage-dependent potassium channels that are activated at resting membrane potentials and therefore provide a powerful brake on neuronal excitability. Genetic or experience-dependent reduction of KCNQ2/3 channel activity is linked with disorders that are characterized by neuronal hyperexcitability, such as epilepsy and tinnitus. Retigabine, a small molecule that activates KCNQ2-5 channels by shifting their voltage-dependent opening to more negative voltages, is an US Food and Drug Administration (FDA) approved anti-epileptic drug. However, recently identified side effects have limited its clinical use. As a result, the development of improved KCNQ2/3 channel activators is crucial for the treatment of hyperexcitability-related disorders. By incorporating a fluorine substituent in the 3-position of the tri-aminophenyl ring of retigabine, we synthesized a small-molecule activator (SF0034) with novel properties. Heterologous expression of KCNQ2/3 channels in HEK293T cells showed that SF0034 was five times more potent than retigabine at shifting the voltage dependence of KCNQ2/3 channels to more negative voltages. Moreover, unlike retigabine, SF0034 did not shift the voltage dependence of either KCNQ4 or KCNQ5 homomeric channels. Conditional deletion of Kcnq2 from cerebral cortical pyramidal neurons showed that SF0034 requires the expression of KCNQ2/3 channels for reducing the excitability of CA1 hippocampal neurons. Behavioral studies demonstrated that SF0034 was a more potent and less toxic anticonvulsant than retigabine in rodents. Furthermore, SF0034 prevented the development of tinnitus in mice. We propose that SF0034 provides, not only a powerful tool for investigating ion channel properties, but, most importantly, it provides a clinical candidate for treating epilepsy and preventing tinnitus."	"A novel frameshift mutation in KCNQ4 in a family with autosomal recessive non-syndromic hearing loss. Mutation of KCNQ4 has been reported to cause autosomal dominant non-syndromic hearing loss (DFNA2A) that usually presents as progressive hearing loss starting from mild to moderate hearing loss during childhood. Here, we identified a novel KCNQ4 mutation, c.1044_1051del8, in a family with autosomal recessive non-syndromic hearing loss. The proband was homozygous for the mutation and was born to consanguineous parents; she showed severe hearing loss that was either congenital or of early childhood onset. The proband had a sister who was heterozygous for the mutation but showed normal hearing. The mutation caused a frameshift that eliminated most of the cytoplasmic C-terminus, including the A-domain, which has an important role for protein tetramerization, and the B-segment, which is a binding site for calmodulin (CaM) that regulates channel function via Ca ions. The fact that the heterozygote had normal hearing indicates that sufficient tetramerization and CaM binding sites were present to preserve a normal phenotype even when only half the proteins contained an A-domain and B-segment. On the other hand, the severe hearing loss in the homozygote suggests that complete loss of the A-domain and B-segment in the protein caused loss of function due to the failure of tetramer formation and CaM binding. This family suggests that some KCNQ4 mutations can cause autosomal recessive hearing loss with more severe phenotype in addition to autosomal dominant hearing loss with milder phenotype. This genotype-phenotype correlation is analogous to that in KCNQ1 which causes autosomal dominant hereditary long QT syndrome 1 with milder phenotype and the autosomal recessive Jervell and Lange-Nielsen syndrome 1 with more severe phenotype due to deletion of the cytoplasmic C-terminus of the potassium channel. "	"K(V)7.4 channels participate in the control of rodent renal vascular resting tone. We tested the hypothesis that K(V)7 channels contribute to basal renal vascular tone and that they participate in agonist-induced renal vasoconstriction or vasodilation. KV 7 channel subtypes in renal arterioles were characterized by immunofluorescence. Renal blood flow (RBF) was measured using an ultrasonic flow probe. The isometric tension of rat interlobar arteries was examined in a wire myograph. Mice afferent arteriolar diameter was assessed utilizing the perfused juxtamedullary nephron technique. Immunofluorescence revealed that K(V)7.4 channels were expressed in rat afferent arterioles. The K(V)7 blocker XE991 dose-dependently increased the isometric tension of rat interlobar arteries and caused a small (approx. 4.5%) RBF reduction in vivo. Nifedipine abolished these effects. Likewise, XE991 reduced mouse afferent arteriolar diameter by approx. 5%. The K(V)7.2-5 stimulator flupirtine dose-dependently relaxed isolated rat interlobar arteries and increased (approx. 5%) RBF in vivo. The RBF responses to NE or Ang II administration were not affected by pre-treatment with XE991 or flupirtine. XE991 pre-treatment caused a minor augmentation of the acetylcholine-induced increase in RBF, while flupirtine pre-treatment did not affect this response. It is concluded that K(V)7 channels, via nifedipine sensitive channels, have a role in the regulation of basal renal vascular tone. There is no indication that K(V)7 channels have an effect on agonist-induced renal vasoconstriction while there is a small effect on acetylcholine-induced vasodilation."	"G-protein βγ subunits are positive regulators of Kv7.4 and native vascular Kv7 channel activity. Kv7.4 channels are a crucial determinant of arterial diameter both at rest and in response to endogenous vasodilators. However, nothing is known about the factors that ensure effective activity of these channels. We report that G-protein βγ subunits increase the amplitude and activation rate of whole-cell voltage-dependent K(+) currents sensitive to the Kv7 blocker linopirdine in HEK cells heterologously expressing Kv7.4, and in rat renal artery myocytes. In excised patch recordings, Gβγ subunits (2-250 ng /mL) enhanced the open probability of Kv7.4 channels without changing unitary conductance. Kv7 channel activity was also augmented by stimulation of G-protein-coupled receptors. Gallein, an inhibitor of Gβγ subunits, prevented these stimulatory effects. Moreover, gallein and two other structurally different Gβγ subunit inhibitors (GRK2i and a β-subunit antibody) abolished Kv7 channel currents in the absence of either Gβγ subunit enrichment or G-protein-coupled receptor stimulation. Proximity ligation assay revealed that Kv7.4 and Gβγ subunits colocalized in HEK cells and renal artery smooth muscle cells. Gallein disrupted this colocalization, contracted whole renal arteries to a similar degree as the Kv7 inhibitor linopirdine, and impaired isoproterenol-induced relaxations. Furthermore, mSIRK, which disassociates Gβγ subunits from α subunits without stimulating nucleotide exchange, relaxed precontracted arteries in a linopirdine-sensitive manner. These results reveal that Gβγ subunits are fundamental for Kv7.4 activation and crucial for vascular Kv7 channel activity, which has major consequences for the regulation of arterial tone. "	"Potassium ion channel openers, Maxipost and Retigabine, protect against peripheral salicylate ototoxicity in rats. Sodium Salicylate (SS) reliably induces a sensorineural hearing loss and tinnitus when administered in high doses. Recent animal modeled studies indicate that potassium channel openers such as Maxipost and Retigabine (RTG) can block SS- or noise-induced tinnitus respectively; however, the origins and mechanisms are poorly understood. Since SS blocks the same potassium channels that Maxipost and RTG open, we postulated that these drugs might influence peripheral auditory function. To test this hypothesis Maxipost or RTG were administered alone or in combination with SS in rats. When administered alone, Maxipost and RTG had no effect on distortion product otoacoustic emissions (DPOAE) or compound action potentials (CAPs). However when Maxipost or RTG were administered with SS, Maxipost prevented the SS-reduced CAP amplitudes at high frequencies (≥20 kHz) and RTG prevented SS-reduced CAP amplitudes at low frequencies (≤8 kHz). These results suggest that Maxipost and RTG can protect against peripheral damage and therefore reduce the incidence of tinnitus. "	"Potassium channel activator attenuates salicylate-induced cochlear hearing loss potentially ameliorating tinnitus. High dose sodium salicylate causes moderate, reversible hearing loss and tinnitus. Salicylate-induced hearing loss is believed to arise from a reduction in the electromotile response of outer hair cells (OHCs) and/or reduction of KCNQ4 potassium currents in OHCs, which decreases the driving force for the transduction current. Therefore, enhancing OHC potassium currents could potentially prevent salicylate-induced temporary hearing loss. In this study, we tested whether opening voltage-gated potassium channels using ICA-105665, a novel small molecule that opens KCNQ2/3 and KCNQ3/5 channels, can reduce salicylate-induced hearing loss. We found that systemic application of ICA-105665 at 10 mg/kg prevented the salicylate-induced amplitude reduction and threshold shift in the compound action potentials recorded at the round window of the cochlea. ICA-105665 also prevented the salicylate-induced reduction of distortion-product otoacoustic emission. These results suggest that ICA-105665 partially compensates for salicylate-induced cochlear hearing loss by enhancing KCNQ2/3 and KCNQ3/5 potassium currents and the motility of OHCs. "	"Overexpression of tau downregulated the mRNA levels of Kv channels and improved proliferation in N2A cells. Microtubule binding protein tau has a crucial function in promoting the assembly and stabilization of microtubule. Besides tuning the action potentials, voltage-gated K+ channels (Kv) are important for cell proliferation and appear to play a role in the development of cancer. However, little is known about the possible interaction of tau with Kv channels in various tissues. In the present study, tau plasmids were transiently transfected into mouse neuroblastoma N2A cells to explore the possible linkages between tau and Kv channels. This treatment led to a downregulation of mRNA levels of several Kv channels, including Kv2.1, Kv3.1, Kv4.1, Kv9.2, and KCNH4, but no significant alteration was observed for Kv5.1 and KCNQ4. Furthermore, the macroscopic currents through Kv channels were reduced by 36.5% at +60 mV in tau-transfected N2A cells. The proliferation rates of N2A cells were also improved by the induction of tau expression and the incubation of TEA (tetraethylammonium) for 48 h by 120.9% and 149.3%, respectively. Following the cotransfection with tau in HEK293 cells, the mRNA levels and corresponding currents of Kv2.1 were significantly declined compared with single Kv2.1 transfection. Our data indicated that overexpression of tau declined the mRNA levels of Kv channels and related currents. The effects of tau overexpression on Kv channels provided an alternative explanation for low sensitivity to anti-cancer chemicals in some specific cancer tissues."	"A novel KCNQ4 mutation and a private IMMP2L-DOCK4 duplication segregating with nonsyndromic hearing loss in a Brazilian family. Here we describe a novel missense variant in the KCNQ4 gene and a private duplication at 7q31.1 partially involving two genes (IMMP2L and DOCK4). Both mutations segregated with nonsyndromic hearing loss in a family with three affected individuals. Initially, we identified the duplication in a screening of 132 unrelated cases of hearing loss with a multiplex ligation-dependent probe amplification panel of genes that are candidates to have a role in hearing, including IMMP2L. Mapping of the duplication by array-CGH revealed that the duplication also encompassed the 3'-end of DOCK4. Subsequently, whole-exome sequencing identified the breakpoint of the rearrangement, thereby confirming the existence of a fusion IMMP2L-DOCK4 gene. Transcription products of the fusion gene were identified, indicating that they escaped nonsense-mediated messenger RNA decay. A missense substitution (c.701A&gt;T) in KCNQ4 (a gene at the DFNA2A locus) was also identified by whole-exome sequencing. Because the substitution is predicted to be probably damaging and KCNQ4 has been implicated in hearing loss, this mutation might explain the deafness in the affected individuals, although a hypothetical effect of the product of the fusion gene on hearing cannot be completely ruled out. "	"Contribution of Kv7 channels to natriuretic peptide mediated vasodilation in normal and hypertensive rats. The Kv7 family of voltage-gated potassium channels are expressed within the vasculature where they are key regulators of vascular tone and mediate cAMP-linked endogenous vasodilator responses, a pathway that is compromised in hypertension. However, the role of Kv7 channels in non-cAMP-linked vasodilator pathways has not been investigated. Natriuretic peptides are potent vasodilators, which operate primarily through the activation of a cGMP-dependent signaling pathway. This study investigated the putative role of Kv7 channels in natriuretic peptide-dependent relaxations in the vasculature of normal and hypertensive animals. Relaxant responses of rat aorta to both atrial and C-type natriuretic peptides and the nitric oxide donor sodium nitroprusside were impaired by the Kv7 blocker linopirdine (10 μmol/L) but not by the Kv7.1-specific blocker HMR1556 (10 μmol/L) and other K(+) channel blockers. In contrast, only the atrial natriuretic peptide response was sensitive to linopirdine in the renal artery. These Kv7-mediated responses were attenuated in arteries from hypertensive rats. Quantitative polymerase chain reaction showed that A- and B-type natriuretic peptide receptors were expressed at high levels in the aorta and renal artery from normal and spontaneously hypertensive rats. This study provides the first evidence that natriuretic peptide responses are impaired in hypertension and that recruitment of Kv7 channels is a key component of natriuretic peptide-dependent vasodilations. "	"Heterogeneity in Kv7 channel function in the cerebral and coronary circulation. Kv7 channels are considered important regulators of vascular smooth muscle contractility. The present study aimed to examine the hypotheses that (i) Kv7 channels are present in mouse cerebral and coronary arteries and regulate vascular reactivity and (ii) regional differences exist in the activity of these channels. PCR confirmed that basilar, Circle of Willis and LAD arteries express predominantly Kv7.1 and 7.4. Western blot analysis, however, showed greater Kv7.4 protein levels in the cerebral vessels. Relaxation to the Kv7 channel activator, retigabine (1-50 μM) was significantly greater in the basilar artery compared to the LAD artery. Similarly, the Kv7 channel inhibitor, linopirdine (10 μM) caused a stronger contraction of the basilar artery. Furthermore, pre-incubation with linopirdine reduced forskolin (cAMP activator)-induced vasorelaxation in basilar while not altering forskolin-induced vasorelaxation of the LAD, suggesting that Kv7 channels play a more prominent role in the cerebral than in the coronary circulation. Consistent with the vessel data, whole cell Kv7 currents in cerebral VSMCs were potentiated by retigabine and inhibited by linopirdine, while these responses were blunted in coronary VSMCs. This study provides evidence that mouse Kv7 channels may contribute differently to regulating the functional properties of cerebral and coronary arteries. Such heterogeneity has important implications for developing novel therapeutics for cardiovascular dysfunction."	"The human ether-a-go-go-related gene activator NS1643 enhances epilepsy-associated KCNQ channels. Human ether-a-go-go-related gene (hERG) and KCNQ channels are two classes of voltage-gated potassium channels. Specific mutations have been identified that are causal for type II long QT (LQT2) syndrome, neonatal epilepsy, and benign familial neonatal convulsions. Increasing evidence from clinical studies suggests that LQT2 and epilepsy coexist in some patients. Therefore, an integral approach to investigating and treating the two diseases is likely more effective. In the current study, we found that NS1643 [1,3-bis-(2-hydroxy-5-trifluoromethyl-phenyl)-urea], a previously reported hERG activator, is also an activator of KCNQ channels. It potentiates the neuronal KCNQ2, KCNQ4, and KCNQ2/Q3 channels, but not the cardiac KCNQ1. The effects of NS1643 on the KCNQ2 channel include left shifting of voltage for reaching 50% of the maximum conductance and slowing of deactivation. Analysis of the dose-response curve of NS1643 revealed an EC50 value of 2.44 ± 0.25 μM. A hydrophobic phenylalanine (F137) located at the middle region of the voltage-sensing domain was identified as critical for NS1643 activity on KCNQ2. When testing NS1643 effects in rescuing LQT2 hERG mutants and the KCNQ2 BFNC mutants, we found it is particularly efficacious in some cases. Considering the substantial relationship between LQT2 and epilepsy, these findings reveal that NS1643 is a useful compound to elucidate the causal connection of LQT2 and epilepsy. More generally, this may provide a strategy in the development of therapeutics for LQT2 and epilepsy. "	"Application of a combination of a knowledge-based algorithm and 2-stage screening to hypothesis-free genomic data on irinotecan-treated patients for identification of a candidate single nucleotide polymorphism related to an adverse effect. Interindividual variation in a drug response among patients is known to cause serious problems in medicine. Genomic information has been proposed as the basis for &quot;personalized&quot; health care. The genome-wide association study (GWAS) is a powerful technique for examining single nucleotide polymorphisms (SNPs) and their relationship with drug response variation; however, when using only GWAS, it often happens that no useful SNPs are identified due to multiple testing problems. Therefore, in a previous study, we proposed a combined method consisting of a knowledge-based algorithm, 2 stages of screening, and a permutation test for identifying SNPs. In the present study, we applied this method to a pharmacogenomics study where 109,365 SNPs were genotyped using Illumina Human-1 BeadChip in 168 cancer patients treated with irinotecan chemotherapy. We identified the SNP rs9351963 in potassium voltage-gated channel subfamily KQT member 5 (KCNQ5) as a candidate factor related to incidence of irinotecan-induced diarrhea. The p value for rs9351963 was 3.31×10-5 in Fisher's exact test and 0.0289 in the permutation test (when multiple testing problems were corrected). Additionally, rs9351963 was clearly superior to the clinical parameters and the model involving rs9351963 showed sensitivity of 77.8% and specificity of 57.6% in the evaluation by means of logistic regression. Recent studies showed that KCNQ4 and KCNQ5 genes encode members of the M channel expressed in gastrointestinal smooth muscle and suggested that these genes are associated with irritable bowel syndrome and similar peristalsis diseases. These results suggest that rs9351963 in KCNQ5 is a possible predictive factor of incidence of diarrhea in cancer patients treated with irinotecan chemotherapy and for selecting chemotherapy regimens, such as irinotecan alone or a combination of irinotecan with a KCNQ5 opener. Nonetheless, clinical importance of rs9351963 should be further elucidated. "	"Targeted high-throughput sequencing identifies pathogenic mutations in KCNQ4 in two large Chinese families with autosomal dominant hearing loss. Autosomal dominant non-syndromic hearing loss (ADNSHL) is highly heterogeneous, among them, KCNQ4 is one of the most frequent disease-causing genes. More than twenty KCNQ4 mutations have been reported, but none of them were detected in Chinese mainland families. In this study, we identified a novel KCNQ4 mutation in a five generation Chinese family with 84 members and a known KCNQ4 mutation in a six generation Chinese family with 66 members. Mutation screening of 30 genes for ADNSHL was performed in the probands from thirty large Chinese families with ADNSHL by targeted region capture and high-throughput sequencing. The candidate variants and the co-segregation of the phenotype were verified by polymerase chain reaction (PCR) amplification and Sanger sequencing in all ascertained family members. Then we identified a novel KCNQ4 mutation p.W275R in exon 5 and a known KCNQ4 mutation p.G285S in exon 6 in two large Chinese ADNSHL families segregating with post-lingual high frequency-involved and progressive sensorineural hearing loss. This is the first report of KCNQ4 mutation in Chinese mainland families. KCNQ4, a member of voltage-gated potassium channel family, is likely to be a common gene in Chinese patients with ADNSHL. The results also support that the combination of targeted enrichment and high-throughput sequencing is a valuable molecular diagnostic tool for autosomal dominant hereditary deafness. "	"From pan-reactive KV7 channel opener to subtype selective opener/inhibitor by addition of a methyl group. The voltage-gated potassium channels of the KV7 family (KV7.1-5) play important roles in controlling neuronal excitability and are therefore attractive targets for treatment of CNS disorders linked to hyperexcitability. One of the main challenges in developing KV7 channel active drugs has been to identify compounds capable of discriminating between the neuronally expressed subtypes (KV7.2-5), aiding the identification of the subunit composition of KV7 currents in various tissues, and possessing better therapeutic potential for particular indications. By taking advantage of the structure-activity relationship of acrylamide KV7 channel openers and the effects of these compounds on mutant KV7 channels, we have designed and synthesized a novel KV7 channel modulator with a unique profile. The compound, named SMB-1, is an inhibitor of KV7.2 and an activator of KV7.4. SMB-1 inhibits KV7.2 by reducing the current amplitude and increasing the time constant for the slow component of the activation kinetics. The activation of KV7.4 is seen as an increase in the current amplitude and a slowing of the deactivation kinetics. Experiments studying mutant channels with a compromised binding site for the KV7.2-5 opener retigabine indicate that SMB-1 binds within the same pocket as retigabine for both inhibition of KV7.2 and activation of KV7.4. SMB-1 may serve as a valuable tool for KV7 channel research and may be used as a template for further design of better subtype selective KV7 channel modulators. A compound with this profile could hold novel therapeutic potential such as the treatment of both positive and cognitive symptoms in schizophrenia. "	"Differential activation of vascular smooth muscle Kv7.4, Kv7.5, and Kv7.4/7.5 channels by ML213 and ICA-069673. Recent research suggests that smooth muscle cells express Kv7.4 and Kv7.5 voltage-activated potassium channels, which contribute to maintenance of their resting membrane voltage. New pharmacologic activators of Kv7 channels, ML213 (N-mesitybicyclo[2.2.1]heptane-2-carboxamide) and ICA-069673 N-(6-chloropyridin-3-yl)-3,4-difluorobenzamide), have been reported to discriminate among channels formed from different Kv7 subtypes. We compared the effects of ML213 and ICA-069673 on homomeric human Kv7.4, Kv7.5, and heteromeric Kv7.4/7.5 channels exogenously expressed in A7r5 vascular smooth muscle cells. We found that, despite its previous description as a selective activator of Kv7.2 and Kv7.4, ML213 significantly increased the maximum conductance of homomeric Kv7.4 and Kv7.5, as well as heteromeric Kv7.4/7.5 channels, and induced a negative shift of their activation curves. Current deactivation rates decreased in the presence of the ML213 (10 μM) for all three channel combinations. Mutants of Kv7.4 (W242L) and Kv7.5 (W235L), previously found to be insensitive to another Kv7 channel activator, retigabine, were also insensitive to ML213 (10 μM). In contrast to ML213, ICA-069673 robustly activated Kv7.4 channels but was significantly less effective on homomeric Kv7.5 channels. Heteromeric Kv7.4/7.5 channels displayed intermediate responses to ICA-069673. In each case, ICA-069673 induced a negative shift of the activation curves without significantly increasing maximal conductance. Current deactivation rates decreased in the presence of ICA-069673 in a subunit-specific manner. Kv7.4 W242L responded to ICA-069673-like wild-type Kv7.4, but a Kv7.4 F143A mutant was much less sensitive to ICA-069673. Based on these results, ML213 and ICA-069673 likely bind to different sites and are differentially selective among Kv7.4, Kv7.5, and Kv7.4/7.5 channel subtypes. "	"The endocannabinoid 2-AG controls skeletal muscle cell differentiation via CB1 receptor-dependent inhibition of Kv7 channels. Little is known of the involvement of endocannabinoids and cannabinoid receptors in skeletal muscle cell differentiation. We report that, due to changes in the expression of genes involved in its metabolism, the levels of the endocannabinoid 2-arachidonoylglycerol (2-AG) are decreased both during myotube formation in vitro from murine C2C12 myoblasts and during mouse muscle growth in vivo. The endocannabinoid, as well as the CB1 agonist arachidonoyl-2-chloroethylamide, prevent myotube formation in a manner antagonized by CB1 knockdown and by CB1 antagonists, which, per se, instead stimulate differentiation. Importantly, 2-AG also inhibits differentiation of primary human satellite cells. Muscle fascicles from CB1 knockout embryos contain more muscle fibers, and postnatal mice show muscle fibers of an increased diameter relative to wild-type littermates. Inhibition of Kv7.4 channel activity, which plays a permissive role in myogenesis and depends on phosphatidylinositol 4,5-bisphosphate (PIP2), underlies the effects of 2-AG. We find that CB1 stimulation reduces both total and Kv7.4-bound PIP2 levels in C2C12 cells and inhibits Kv7.4 currents in transfected CHO cells. We suggest that 2-AG is an endogenous repressor of myoblast differentiation via CB1-mediated inhibition of Kv7.4 channels. "	"[Personalized molecular medicine: new paradigms in the treatment of cochlear implant and cancer patients]. To evaluate present options for the indication of cochlear implants (CI) and new forms of treatment for head and neck cancer, melanomas and basal cell carcinomas, with emphasis on future perspectives. A literature search was performed in the PubMed database. Search parameters were &quot;personalized medicine&quot;, &quot;individualized medicine&quot; and &quot;molecular medicine&quot;. Personalized medicine based on molecular-genetic evaluation of functional proteins such as otoferlin, connexin 26 and KCNQ4 or the Usher gene is becoming increasingly important for the indication of CI in the context of infant deafness. Determination of HER2/EGFR mutations in the epithelial growth factor receptor (EGFR) gene may be an important prognostic parameter for therapeutic decisions in head and neck cancer patients. In basal cell carcinoma therapy, mutations in the Hedgehog (PCTH1) and Smoothened (SMO) pathways strongly influence the indication of therapeutic Hedgehog inhibition, e.g. using small molecules. Analyses of c-Kit receptor, BRAF-600E and NRAS mutations are required for specific molecular therapy of metastasizing melanomas. The significant advances in the field of specific molecular therapy are best illustrated by the availability of the first gene therapeutic procedures for treatment of RPE65-induced infantile retinal degradation. The aim of personalized molecular medicine is to identify patients who will respond particularly positively or negatively (e.g. in terms of adverse side effects) to a therapy using the methods of molecular medicine. This should allow a specific therapy to be successfully applied or preclude its indication in order to avoid serious adverse side effects. This approach serves to stratify patients for adequate treatment."	"Stretch-activation of angiotensin II type 1a receptors contributes to the myogenic response of mouse mesenteric and renal arteries. Vascular wall stretch is the major stimulus for the myogenic response of small arteries to pressure. The molecular mechanisms are elusive, but recent findings suggest that G protein-coupled receptors can elicit a stretch response. To determine whether angiotensin II type 1 receptors (AT1R) in vascular smooth muscle cells exert mechanosensitivity and identify the downstream ion channel mediators of myogenic vasoconstriction. We used mice deficient in AT1R signaling molecules and putative ion channel targets, namely AT1R, angiotensinogen, transient receptor potential channel 6 (TRPC6) channels, or several subtypes of the voltage-gated K+ (Kv7) gene family (KCNQ3, 4, or 5). We identified a mechanosensing mechanism in isolated mesenteric arteries and in the renal circulation that relies on coupling of the AT1R subtype a to a Gq/11 protein as a critical event to accomplish the myogenic response. Arterial mechanoactivation occurs after pharmacological block of AT1R and in the absence of angiotensinogen or TRPC6 channels. Activation of AT1R subtype a by osmotically induced membrane stretch suppresses an XE991-sensitive Kv channel current in patch-clamped vascular smooth muscle cells, and similar concentrations of XE991 enhance mesenteric and renal myogenic tone. Although XE991-sensitive KCNQ3, 4, and 5 channels are expressed in vascular smooth muscle cells, XE991-sensitive K+ current and myogenic contractions persist in arteries deficient in these channels. Our results provide definitive evidence that myogenic responses of mouse mesenteric and renal arteries rely on ligand-independent, mechanoactivation of AT1R subtype a. The AT1R subtype a signal relies on an ion channel distinct from TRPC6 or KCNQ3, 4, or 5 to enact vascular smooth muscle cell activation and elevated vascular resistance."	"A Japanese family showing high-frequency hearing loss with KCNQ4 and TECTA mutations. We describe a Japanese family with high-frequency sensorineural hearing loss (SNHL) harboring a c.211delC mutation in the KCNQ4 gene. Families showing progressive high-frequency SNHL should be investigated for mutations in the KCNQ4 gene. To determine the responsible deafness gene in a Japanese family with dominantly inherited high-frequency SNHL of unknown etiology. We performed hearing tests for five members of the family, and the three affected with hearing loss underwent further audiological and vestibular examinations. Genetic analysis was performed to identify any possible causative mutations, as well as analysis of detailed clinical findings to determine the phenotype. The three affected subjects showed high-frequency SNHL. Extensive audiologic evaluation suggested cochlear involvement and progressive hearing loss. As for bilateral caloric testing, two of the three affected subjects showed hyporeflexia with recurrent vestibular symptoms. We identified the c.211delC mutation in the KCNQ4 gene and the c.2967C&gt;A (p.H989Q) mutation in the TECTA gene. Based on the genotype-phenotype correlation, the c.211delC mutation in the KCNQ4 gene was associated with high-frequency SNHL in this family."	"Contribution of kv7.4/kv7.5 heteromers to intrinsic and calcitonin gene-related peptide-induced cerebral reactivity. Middle cerebral artery (MCA) diameter is regulated by inherent myogenic activity and the effect of potent vasodilators such as calcitonin gene-related peptide (CGRP). Previous studies showed that MCAs express KCNQ1, 4, and 5 potassium channel genes, and the expression products (Kv7 channels) participate in the myogenic control of MCA diameter. The present study investigated the contribution of Kv7.4 and Kv7.5 isoforms to myogenic and CGRP regulation of MCA diameter and determined whether they were affected in hypertensive animals. Isometric tension recordings performed on MCA from normotensive rats produced CGRP vasodilations that were inhibited by the pan-Kv7 channel blocker linopirdine (P&lt;0.01) and after transfection of arteries with siRNA against KCNQ4 (P&lt;0.01) but not KCNQ5. However, isobaric myography revealed that myogenic constriction in response to increases in intravascular pressure (20-80 mm Hg) was affected by both KCNQ4 and KCNQ5 siRNA. Proximity ligation assay signals were equally abundant for Kv7.4/Kv7.4 or Kv7.4/Kv7.5 antibody combinations but minimal for Kv7.5/Kv7.5 antibodies or Kv7.4/7.1 combinations. In contrast to systemic arteries, Kv7 function and Kv7.4 abundance in MCA were not altered in hypertensive rats. This study reveals, for the first time to our knowledge, that in cerebral arteries, Kv7.4 and Kv7.5 proteins exist predominantly as a functional heterotetramer, which regulates intrinsic myogenicity and vasodilation attributed to CGRP. Surprisingly, unlike systemic arteries, Kv7 activity in MCAs is not affected by the development of hypertension, and CGRP-mediated vasodilation is well maintained. As such, cerebrovascular Kv7 channels could be amenable for therapeutic targeting in conditions such as cerebral vasospasm."	"Kcnq1-5 (Kv7.1-5) potassium channel expression in the adult zebrafish. KCNQx genes encode slowly activating-inactivating K+ channels, are linked to physiological signal transduction pathways, and mutations in them underlie diseases such as long QT syndrome (KCNQ1), epilepsy in adults (KCNQ2/3), benign familial neonatal convulsions in children (KCNQ3), and hearing loss or tinnitus in humans (KCNQ4, but not KCNQ5). Identification of kcnqx potassium channel transcripts in zebrafish (Danio rerio) remains to be fully characterized although some genes have been mapped to the genome. Using zebrafish genome resources as the source of putative kcnq sequences, we investigated the expression of kcnq1-5 in heart, brain and ear tissues. Overall expression of the kcnqx channel transcripts is similar to that found in mammals. We found that kcnq1 expression was highest in the heart, and also present in the ear and brain. kcnq2 was lowest in the heart, while kcnq3 was highly expressed in the brain, heart and ear. kcnq5 expression was highest in the ear. We analyzed zebrafish genomic clones containing putative kcnq4 sequences to identify transcripts and protein for this highly conserved member of the Kcnq channel family. The zebrafish appears to have two kcnq4 genes that produce distinct mRNA species in brain, ear, and heart tissues. We conclude that the zebrafish is an attractive model for the study of the KCNQ (Kv7) superfamily of genes, and are important to processes involved in neuronal excitability, cardiac anomalies, epileptic seizures, and hearing loss or tinnitus."	"KCNQ (Kv7) potassium channel activators as bronchodilators: combination with a β2-adrenergic agonist enhances relaxation of rat airways. KCNQ (Kv7 family) potassium (K(+)) channels were recently found in airway smooth muscle cells (ASMCs) from rodent and human bronchioles. In the present study, we evaluated expression of KCNQ channels and their role in constriction/relaxation of rat airways. Real-time RT-PCR analysis revealed expression of KCNQ4 &gt; KCNQ5 &gt; KCNQ1 &gt; KCNQ2 &gt; KCNQ3, and patch-clamp electrophysiology detected KCNQ currents in rat ASMCs. In precision-cut lung slices, the KCNQ channel activator retigabine induced a concentration-dependent relaxation of small bronchioles preconstricted with methacholine (MeCh; EC50 = 3.6 ± 0.3 μM). Bronchoconstriction was also attenuated in the presence of two other structurally unrelated KCNQ channel activators: zinc pyrithione (ZnPyr; 1 μM; 22 ± 7%) and 2,5-dimethylcelecoxib (10 μM; 24 ± 8%). The same three KCNQ channel activators increased KCNQ currents in ASMCs by two- to threefold. The bronchorelaxant effects of retigabine and ZnPyr were prevented by inclusion of the KCNQ channel blocker XE991. A long-acting β2-adrenergic receptor agonist, formoterol (10 nM), did not increase KCNQ current amplitude in ASMCs, but formoterol (1-1,000 nM) did induce a time- and concentration-dependent relaxation of rat airways, with a notable desensitization during a 30-min treatment or with repetitive treatments. Coadministration of retigabine (10 μM) with formoterol produced a greater peak and sustained reduction of MeCh-induced bronchoconstriction and reduced the apparent desensitization observed with formoterol alone. Our findings support a role for KCNQ K(+) channels in the regulation of airway diameter. A combination of a β2-adrenergic receptor agonist with a KCNQ channel activator may improve bronchodilator therapy. "	"KCNQ and KCNE potassium channel subunit expression in bovine retinal pigment epithelium. Human, monkey, and bovine retinal pigment epithelial (RPE) cells exhibit an M-type K+ current, which in many other cell types is mediated by channels composed of KCNQ α-subunits and KCNE auxiliary subunits. Recently, we demonstrated the expression of KCNQ1, KCNQ4, and KCNQ5 in the monkey RPE. Here, we investigated the expression of KCNQ and KCNE subunits in native bovine RPE. RT-PCR analysis revealed the expression of KCNQ1, KCNQ4, and KCNQ5 transcripts in the RPE, but, in Western blot analysis of RPE plasma membranes, only KCNQ5 was detected. Among the five members of the KCNE gene family, transcripts for KCNE1, KCNE2, KCNE3, and KCNE4 were detected in bovine RPE, but only KCNE1 and KCNE2 proteins were detected. Immunohistochemistry of frozen bovine retinal sections revealed KCNE1 expression near the apical and basal membranes of the RPE, in cone outer segments, in the outer nuclear layer, and throughout the inner retina. The localization of KCNE1 in the RPE basal membrane, where KCNQ5 was previously found to be present, suggests that this β-subunit may contribute to M-type K(+) channels in this membrane."	"Differential protein kinase C-dependent modulation of Kv7.4 and Kv7.5 subunits of vascular Kv7 channels. The Kv7 family (Kv7.1-7.5) of voltage-activated potassium channels contributes to the maintenance of resting membrane potential in excitable cells. Previously, we provided pharmacological and electrophysiological evidence that Kv7.4 and Kv7.5 form predominantly heteromeric channels and that Kv7 activity is regulated by protein kinase C (PKC) in response to vasoconstrictors in vascular smooth muscle cells. Direct evidence for Kv7.4/7.5 heteromer formation, however, is lacking. Furthermore, it remains to be determined whether both subunits are regulated by PKC. Utilizing proximity ligation assays to visualize single molecule interactions, we now show that Kv7.4/Kv.7.5 heteromers are endogenously expressed in vascular smooth muscle cells. Introduction of dominant-negative Kv7.4 and Kv7.5 subunits in mesenteric artery myocytes reduced endogenous Kv7 currents by 84 and 76%, respectively. Expression of an inducible protein kinase Cα (PKCα) translocation system revealed that PKCα activation is sufficient to suppress endogenous Kv7 currents in A7r5 rat aortic and mesenteric artery smooth muscle cells. Arginine vasopressin (100 and 500 pm) and the PKC activator phorbol 12-myristate 13-acetate (1 nm) each inhibited human (h) Kv7.5 and hKv7.4/7.5, but not hKv7.4 channels expressed in A7r5 cells. A decrease in hKv7.5 and hKv7.4/7.5 current densities was associated with an increase in PKC-dependent phosphorylation of the channel proteins. These findings provide further evidence for a differential regulation of Kv7.4 and Kv7.5 channel subunits by PKC-dependent phosphorylation and new mechanistic insights into the role of heteromeric subunit assembly for regulation of vascular Kv7 channels. "	"Expression and motor functional roles of voltage-dependent type 7 K(+) channels in the human taenia coli. Voltage-dependent type 7 K(+) (KV7 or KCNQ) channels modulate the excitability of neurons and muscle cells. The aims of the present study were to investigate the motor effects of KV7 channel modulators and the expression of KV7 channels in the human taenia coli. The effects of KV7 channel modulators on the muscle tone of human taenia coli strips were investigated under nonadrenergic non-nitrergic conditions by organ bath studies. Gene expression and tissue localisation of channels were studied by real-time PCR and immunohistochemistry, respectively. Under basal conditions, the KV7 channel blocker XE-991 induced concentration-dependent contractions, with mean EC50 and Emax of 18.7 μM and 30.5% respectively of the maximal bethanechol-induced contraction, respectively. The KV7 channel activators retigabine and flupirtine concentration-dependently relaxed the taenia coli, with mean EC50s of 19.2 μM and 29.9 μM, respectively. Retigabine also relaxed bethanechol-precontracted strips, with maximal relaxations of 79.2% of the bethanecol-induced precontraction. The motor effects induced by the KV7 channel modulators were not affected by tetrodotoxin or ω-conotoxin GVIA. XE-991 greatly reduced retigabine- and flupirtine-induced relaxations. Transcripts encoded by all KCNQ genes were detected in the taenia coli, with KCNQ4 showing the highest expression levels. KV7.4 channels were clearly visualised by immunohistochemistry in colonic epithelium, circular muscle layer and taenia coli. KV7 channels appear to contribute to the resting muscle tone of the human taenia coli. In addition, KV7 channel activators significantly relax the taenia coli. Thus, they could be useful therapeutic relaxant agents for colonic motor disorders."	"Subtype-selective activation of K(v)7 channels by AaTXKβ₂₋₆₄, a novel toxin variant from the Androctonus australis scorpion venom. K(v)7.4 channel subunits are expressed in central auditory pathways and in inner ear sensory hair cells and skeletal and smooth muscle cells. Openers of K(v)7.4 channels have been suggested to improve hearing loss, systemic or pulmonary arterial hypertension, urinary incontinence, gastrointestinal and neuropsychiatric diseases, and skeletal muscle disorders. Scorpion venoms are a large source of peptides active on K⁺ channels. Therefore, we have optimized a combined purification/screening procedure to identify specific modulator(s) of K(v)7.4 channels from the venom of the North African scorpion Androctonus australis (Aa). We report the isolation and functional characterization of AaTXKβ₂₋₆₄, a novel variant of AaTXKβ₁₋₆₄, in a high-performance liquid chromatography fraction from Aa venom (named P8), which acts as the first peptide activator of K(v)7.4 channels. In particular, in both Xenopus oocytes and mammalian Chinese hamster ovary cells, AaTXKβ₂₋₆₄, but not AaTXKβ₁₋₆₄, hyperpolarized the threshold voltage of current activation and increased the maximal currents of heterologously expressed K(v)7.4 channels. AaTXKβ₂₋₆₄ also activated K(v)7.3, K(v)7.2/3, and K(v)7.5/3 channels, whereas homomeric K(v)1.1, K(v)7.1, and K(v)7.2 channels were unaffected. We anticipate that these results may prove useful in unraveling the novel biologic roles of AaTXKβ₂₋₆₄-sensitive K(v)7 channels and developing novel pharmacologic tools that allow subtype-selective targeting of K(v)7 channels."	"Autonomous functions of murine thyroid hormone receptor TRα and TRβ in cochlear hair cells. Thyroid hormone acts on gene transcription by binding to its nuclear receptors TRα1 and TRβ. Whereas global deletion of TRβ causes deafness, global TRα-deficient mice have normal hearing thresholds. Since the individual roles of the two receptors in cochlear hair cells are still unclear, we generated mice with a hair cell-specific mutation of TRα1 or deletion of TRβ using the Cre-loxP system. Hair cell-specific TRβ mutant mice showed normal hearing thresholds but delayed BK channel expression in inner hair cells, slightly stronger outer hair cell function, and slightly reduced amplitudes of auditory brainstem responses. In contrast, hair cell-specific TRα mutant mice showed normal timing of BK channel expression, slightly reduced outer hair cell function, and slightly enhanced amplitudes of auditory brainstem responses. Our data demonstrate that TRβ-related deafness originates outside of hair cells and that TRα and TRβ play opposing, non-redundant roles in hair cells. A role for thyroid hormone receptors in controlling key regulators that shape signal transduction during development is discussed. Thyroid hormone may act through different thyroid hormone receptor activities to permanently alter the sensitivity of auditory neurotransmission. "	"Adaptive evolution of tight junction protein claudin-14 in echolocating whales. Toothed whales and bats have independently evolved specialized ultrasonic hearing for echolocation. Recent findings have suggested that several genes including Prestin, Tmc1, Pjvk and KCNQ4 appear to have undergone molecular adaptations associated with the evolution of this ultrasonic hearing in mammals. Here we studied the hearing gene Cldn14, which encodes the claudin-14 protein and is a member of tight junction proteins that functions in the organ of Corti in the inner ear to maintain a cationic gradient between endolymph and perilymph. Particular mutations in human claudin-14 give rise to non-syndromic deafness, suggesting an essential role in hearing. Our results uncovered two bursts of positive selection, one in the ancestral branch of all toothed whales and a second in the branch leading to the delphinid, phocoenid and ziphiid whales. These two branches are the same as those previously reported to show positive selection in the Prestin gene. Furthermore, as with Prestin, the estimated hearing frequencies of whales significantly correlate with numbers of branch-wise non-synonymous substitutions in Cldn14, but not with synonymous changes. However, in contrast to Prestin, we found no evidence of positive selection in bats. Our findings from Cldn14, and comparisons with Prestin, strongly implicate multiple loci in the acquisition of echolocation in cetaceans, but also highlight possible differences in the evolutionary route to echolocation taken by whales and bats. "	"[To the mechanisms of antiarrhythmic action of Allapinine]. Allapinine (lappaconitine hydrobromide) is a drug for the treatment of cardiac arrhythmias, it shows IC class antiarrhythmics properties. Its action mechanism is associated with blockade of Na(+)-channels with subsequent inhibition of the depolarization rate and, consequently, of the slowing and reducing the excitability of the cardiac conduction system. At the moment, it is not established, what factors are associated with side effects of Allapinine, and therefore it seems important to study the molecular mechanisms of its action. The target genes were identified in a rat model of aconitine-induced arrhythmia using a commercial kit &quot;Rat Neuroscience Ion Channels &amp; Transporters RT2 Profiler PCR Array&quot; (SABioscienses). Comparison of the expression of 84 genes in the experimental (aconitine arrhythmias/Allapinine) and control (aconitine arrhythmias/saline) animals revealed changes in the mRNA level of 18 genes. It has been shown an increase in mRNA levels of genes encoding various types of K(+)-channels (kcna6, kcnj1, kcnj4, kcnq2, kcnq4), Ca(2+)-channel (cacna 1g), vesicular acetylcholine transporter (slc 18a3). Decrease in the mRNA level was observed for genes encoding the Na(+)-channel (scn8a), K(+)-channels (kcne 1, kcns 1), membrane transporters (atp4a, slc6a9). Taken together, it appears that the effect of Allapinine on aconitine--induced arrhythmias is due to modulation of genes encoding Na(+)-, K(+)-, Ca(2+)-channels, conducting ionic currents (I(Na), I(to), I(Ks), I(K1), I(CaT)), which are involved in the formation of different phases of the action potential. The effect of the drug on the mRNA levels of genes encoding the acetylcholine and glycine transporters, suggesting the participation of these neurotransmitters in the mechanisms of anti-arrhythmic properties of the Allapinine."	"Impaired surface expression and conductance of the KCNQ4 channel lead to sensorineural hearing loss. KCNQ4, a voltage-gated potassium channel, plays an important role in maintaining cochlear ion homoeostasis and regulating hair cell membrane potential, both essential for normal auditory function. Mutations in the KCNQ4 gene lead to DFNA2, a subtype of autosomal dominant non-syndromic deafness that is characterized by progressive sensorineural hearing loss across all frequencies. Despite recent advances in the identification of pathogenic KCNQ4 mutations, the molecular aetiology of DFNA2 remains unknown. We report here that decreased cell surface expression and impaired conductance of the KCNQ4 channel are two mechanisms underlying hearing loss in DFNA2. In HEK293T cells, a dramatic decrease in cell surface expression was detected by immunofluorescent microscopy and confirmed by Western blot for the pathogenic KCNQ4 mutants L274H, W276S, L281S, G285C, G285S, G296S and G321S, while their overall cellular levels remained normal. In addition, none of these mutations affected tetrameric assembly of KCNQ4 channels. Consistent with these results, all mutants showed strong dominant-negative effects on the wild-type (WT) channel function. Most importantly, overexpression of HSP90β, a key component of the molecular chaperone network that controls the KCNQ4 biogenesis, significantly increased cell surface expression of the KCNQ4 mutants L281S, G296S and G321S. KCNQ4 surface expression was restored or considerably improved in HEK293T cells mimicking the heterozygous condition of these mutations in DFNA2 patients. Finally, our electrophysiological studies demonstrated that these mutations directly compromise the conductance of the KCNQ4 channel, since no significant change in KCNQ4 current was observed after KCNQ4 surface expression was restored or improved. "	"A phylomedicine approach to understanding the evolution of auditory sensory perception and disease in mammals. Hereditary deafness affects 0.1% of individuals globally and is considered as one of the most debilitating diseases of man. Despite recent advances, the molecular basis of normal auditory function is not fully understood and little is known about the contribution of single-nucleotide variations to the disease. Using cross-species comparisons of 11 'deafness' genes (Myo15, Ush1 g, Strc, Tecta, Tectb, Otog, Col11a2, Gjb2, Cldn14, Kcnq4, Pou3f4) across 69 evolutionary and ecologically divergent mammals, we elucidated whether there was evidence for: (i) adaptive evolution acting on these genes across mammals with similar hearing capabilities; and, (ii) regions of long-term evolutionary conservation within which we predict disease-associated mutations should occur. We find evidence of adaptive evolution acting on the eutherian mammals in Myo15, Otog and Tecta. Examination of selection pressures in Tecta and Pou3f4 across a taxonomic sample that included a wide representation of auditory specialists, the bats, did not uncover any evidence for a role in echolocation. We generated 'conservation indices' based on selection estimates at nucleotide sites and found that known disease mutations fall within sites of high evolutionary conservation. We suggest that methods such as this, derived from estimates of evolutionary conservation using phylogenetically divergent taxa, will help to differentiate between deleterious and benign mutations."	"Comprehensive genetic screening of KCNQ4 in a large autosomal dominant nonsyndromic hearing loss cohort: genotype-phenotype correlations and a founder mutation. The present study of KCNQ4 mutations was carried out to 1) determine the prevalence by unbiased population-based genetic screening, 2) clarify the mutation spectrum and genotype/phenotype correlations, and 3) summarize clinical characteristics. In addition, a review of the reported mutations was performed for better understanding of this deafness gene. The screening using 287 probands from unbiased Japanese autosomal dominant nonsyndromic hearing loss (ADNSHL) families identified 19 families with 7 different disease causing mutations, indicating that the frequency is 6.62% (19/287). While the majority were private mutations, one particular recurrent mutation, c.211delC, was observed in 13 unrelated families. Haplotype analysis in the vicinity of c.211delC suggests existence of a common ancestor. The majority of the patients showed all frequency, but high-frequency predominant, sensorineural hearing loss. The present study adds a new typical audiogram configuration characterized by mid-frequency predominant hearing loss caused by the p.V230E mutation. A variant at the N-terminal site (c. 211delC) showed typical ski-slope type audiogram configuration. Concerning clinical features, onset age was from 3 to 40 years old, and mostly in the teens, and hearing loss was gradually progressive. Progressive nature is a common feature of patients with KCNQ4 mutations regardless of the mutation type. In conclusion, KCNQ4 mutations are frequent among ADNSHL patients, and therefore screening of the gene and molecular confirmation of these mutations have become important in the diagnosis of these conditions."	"Triple cysteine module within M-type K+ channels mediates reciprocal channel modulation by nitric oxide and reactive oxygen species. We have identified a new signaling role for nitric oxide (NO) in neurons from the trigeminal ganglia (TG). We show that in rat sensory neurons from the TG the NO donor, S-nitroso-N-acetyl-dl-penicillamine, inhibited M-current. This inhibitory effect was blocked by NO scavenging, while inhibition of NO synthases increased M-current, suggesting that tonic NO levels inhibit M-current in TG neurons. Moreover NO increased neuronal excitability and calcitonin gene-related peptide (CGRP) release and these effects could be prevented by perturbing M-channel function. First, NO-induced depolarization was prevented by pre-application of the M-channel blocker XE991 and second, NO-induced increase in CGRP release was prevented by incubation with the M-channel opener retigabine. We investigated the mechanism of the effects of NO on M-channels and identified a site of action of NO to be the redox modulatory site at the triplet of cysteines within the cytosolic linker between transmembrane domains 2 and 3, which is also a site of oxidative modification of M-channels by reactive oxygen species (ROS). NO and oxidative modifications have opposing effects on M-current, suggesting that a tightly controlled local redox and NO environment will exert fine control over M-channel activity and thus neuronal excitability. Together our data have identified a dynamic redox sensor within neuronal M-channels, which mediates reciprocal regulation of channel activity by NO and ROS. This sensor may play an important role in mediating excitatory effects of NO in such trigeminal disorders as headache and migraine."	"Downregulation of KCNQ4 by Janus kinase 2. Janus kinase-2 (JAK2) participates in the signaling of several hormones, growth factors and cytokines. Further stimulators of JAK2 include osmotic cell shrinkage, and the kinase activates the cell volume regulatory Na(+)/H(+) exchanger. The kinase may thus participate in cell volume regulation. Cell shrinkage is known to inhibit K(+) channels. Volume-regulatory K(+) channels include the voltage-gated K(+) channel KCNQ4. The present study explored the effect of JAK2 on KCNQ4 channel activity. KCNQ4 was expressed in Xenopus oocytes with or without wild-type JAK2, constitutively active (V617F)JAK2 or inactive (K882E)JAK2; and cell membrane conductance was determined by dual-electrode voltage clamp. Expression of KCNQ4 was followed by the appearance of voltage-gated K(+) conductance. Coexpression of JAK2 or of (V617F)JAK2, but not of (K882E)JAK2, resulted in a significant decrease in conductance. Treatment of KCNQ4 and JAK2 coexpressing oocytes with the JAK2 inhibitor AG490 (40 μM) was followed by an increase in conductance. Treatment of KCNQ4 expressing oocytes with brefeldin A (5 μM) was followed by a decrease in conductance, which was similar in oocytes expressing KCNQ4 together with JAK2 as in oocytes expressing KCNQ4 alone. Thus, JAK2 apparently does not accelerate channel protein retrieval from the cell membrane. In conclusion, JAK2 downregulates KCNQ4 activity and thus counteracts K(+) exit, an effect which may contribute to cell volume regulation."	"Application of massively parallel sequencing to genetic diagnosis in multiplex families with idiopathic sensorineural hearing impairment. Despite the clinical utility of genetic diagnosis to address idiopathic sensorineural hearing impairment (SNHI), the current strategy for screening mutations via Sanger sequencing suffers from the limitation that only a limited number of DNA fragments associated with common deafness mutations can be genotyped. Consequently, a definitive genetic diagnosis cannot be achieved in many families with discernible family history. To investigate the diagnostic utility of massively parallel sequencing (MPS), we applied the MPS technique to 12 multiplex families with idiopathic SNHI in which common deafness mutations had previously been ruled out. NimbleGen sequence capture array was designed to target all protein coding sequences (CDSs) and 100 bp of the flanking sequence of 80 common deafness genes. We performed MPS on the Illumina HiSeq2000, and applied BWA, SAMtools, Picard, GATK, Variant Tools, ANNOVAR, and IGV for bioinformatics analyses. Initial data filtering with allele frequencies (&lt;5% in the 1000 Genomes Project and 5400 NHLBI exomes) and PolyPhen2/SIFT scores (&gt;0.95) prioritized 5 indels (insertions/deletions) and 36 missense variants in the 12 multiplex families. After further validation by Sanger sequencing, segregation pattern, and evolutionary conservation of amino acid residues, we identified 4 variants in 4 different genes, which might lead to SNHI in 4 families compatible with autosomal dominant inheritance. These included GJB2 p.R75Q, MYO7A p.T381M, KCNQ4 p.S680F, and MYH9 p.E1256K. Among them, KCNQ4 p.S680F and MYH9 p.E1256K were novel. In conclusion, MPS allows genetic diagnosis in multiplex families with idiopathic SNHI by detecting mutations in relatively uncommon deafness genes."	"Identification of a novel in-frame deletion in KCNQ4 (DFNA2A) and evidence of multiple phenocopies of unknown origin in a family with ADSNHL. Autosomal dominant sensorineural hearing loss (ADSNHL) is extremely genetically heterogeneous, making it difficult to molecularly diagnose. We identified a multiplex (n=28 affected) family from the genetic isolate of Newfoundland, Canada with variable SNHL and used a targeted sequencing approach based on population-specific alleles in WFS1, TMPRSS3 and PCDH15; recurrent mutations in GJB2 and GJB6; and frequently mutated exons of KCNQ4, COCH and TECTA. We identified a novel, in-frame deletion (c.806_808delCCT: p.S269del) in the voltage-gated potassium channel KCNQ4 (DFNA2), which in silico modeling predicts to disrupt multimerization of KCNQ4 subunits. Surprisingly, 10/23 deaf relatives are non-carriers of p.S269del. Further molecular characterization of the DFNA2 locus in deletion carriers ruled out the possibility of a pathogenic mutation other than p.S269del at the DFNA2A/B locus and linkage analysis showed significant linkage to DFNA2 (maximum LOD=3.3). Further support of genetic heterogeneity in family 2071 was revealed by comparisons of audio profiles between p.S269del carriers and non-carriers suggesting additional and as yet unknown etiologies. We discuss the serious implications that genetic heterogeneity, in this case observed within a single family, has on molecular diagnostics and genetic counseling. "	"Distinct roles of molecular chaperones HSP90α and HSP90β in the biogenesis of KCNQ4 channels. Loss-of-function mutations in the KCNQ4 channel cause DFNA2, a subtype of autosomal dominant non-syndromic deafness that is characterized by progressive sensorineural hearing loss. Previous studies have demonstrated that the majority of the pathogenic KCNQ4 mutations lead to trafficking deficiency and loss of KCNQ4 currents. Over the last two decades, various strategies have been developed to rescue trafficking deficiency of pathogenic mutants; the most exciting advances have been made by manipulating activities of molecular chaperones involved in the biogenesis and quality control of the target protein. However, such strategies have not been established for KCNQ4 mutants and little is known about the molecular chaperones governing the KCNQ4 biogenesis. To identify KCNQ4-associated molecular chaperones, a proteomic approach was used in this study. As a result, two major molecular chaperones, HSP70 and HSP90, were identified and then confirmed by reciprocal co-immunoprecipitation assays, suggesting that the HSP90 chaperone pathway might be involved in the KCNQ4 biogenesis. Manipulating chaperone expression further revealed that two different isoforms of HSP90, the inducible HSP90α and the constitutive HSP90β, had opposite effects on the cellular level of the KCNQ4 channel; that HSP40, HSP70, and HOP, three key components of the HSP90 chaperone pathway, were crucial in facilitating KCNQ4 biogenesis. In contrast, CHIP, a major E3 ubiquitin ligase, had an opposite effect. Collectively, our data suggest that HSP90α and HSP90β play key roles in controlling KCNQ4 homeostasis via the HSP40-HSP70-HOP-HSP90 chaperone pathway and the ubiquitin-proteasome pathway. Most importantly, we found that over-expression of HSP90β significantly improved cell surface expression of the trafficking-deficient, pathogenic KCNQ4 mutants L274H and W276S. KCNQ4 surface expression was restored by HSP90β in cells mimicking heterozygous conditions of the DFNA2 patients, even though it was not sufficient to rescue the function of KCNQ4 channels."	"Vestibular role of KCNQ4 and KCNQ5 K+ channels revealed by mouse models. The function of sensory hair cells of the cochlea and vestibular organs depends on an influx of K(+) through apical mechanosensitive ion channels and its subsequent removal over their basolateral membrane. The KCNQ4 (Kv7.4) K(+) channel, which is mutated in DFNA2 human hearing loss, is expressed in the basal membrane of cochlear outer hair cells where it may mediate K(+) efflux. Like the related K(+) channel KCNQ5 (Kv7.5), KCNQ4 is also found at calyx terminals ensheathing type I vestibular hair cells where it may be localized pre- or postsynaptically. Making use of Kcnq4(-/-) mice lacking KCNQ4, as well as Kcnq4(dn/dn) and Kcnq5(dn/dn) mice expressing dominant negative channel mutants, we now show unambiguously that in adult mice both channels reside in postsynaptic calyx-forming neurons, but cannot be detected in the innervated hair cells. Accordingly, whole cell currents of vestibular hair cells did not differ between genotypes. Neither Kcnq4(-/-), Kcnq5(dn/dn) nor Kcnq4(-/-)/Kcnq5(dn/dn) double mutant mice displayed circling behavior found with severe vestibular impairment. However, a milder form of vestibular dysfunction was apparent from altered vestibulo-ocular reflexes in Kcnq4(-/-)/Kcnq5(dn/dn) and Kcnq4(-/-) mice. The larger impact of KCNQ4 may result from its preferential expression in central zones of maculae and cristae, which are innervated by phasic neurons that are more sensitive than the tonic neurons present predominantly in the surrounding peripheral zones where KCNQ5 is found. The impact of postsynaptic KCNQ4 on vestibular function may be related to K(+) removal and modulation of synaptic transmission."	"Moderate hearing loss associated with a novel KCNQ4 non-truncating mutation located near the N-terminus of the pore helix. Genetic mutation is one of the causative factors for idiopathic progressive hearing loss. A patient with late-onset, moderate, and high-frequency hearing loss was found to have a novel, heterozygous KCNQ4 mutation, c.806_808delCCT, which led to a p.Ser260del located between S5 and the pore helix (PH). Molecular modeling analysis suggested that the p.Ser269del mutation could cause structural distortion and change in the electrostatic surface potential of the KCNQ4 channel protein, which may impede K+ transport. The present study supports the idea that a non-truncating mutation around the N-terminus of PH may be related to moderate hearing loss."	"Vasorelaxation by hydrogen sulphide involves activation of Kv7 potassium channels. Hydrogen sulphide (H2S) has been recently hypothesized to be an endogenous adipocyte-derived relaxing factor, evoking vasorelaxation of conductance and resistance vessels. Although the activation of ATP-sensitive potassium channels is known to play a central role in H2S-induced vasorelaxation, activation of vascular Kv7 voltage-gated potassium channels has also been suggested. To investigate this possibility, the ability of selective activators and blockers of distinct classes of potassium channels to affect vasodilation induced by the H2S-donor NaHS, as well as NaHS-induced Rb(+) efflux in endothelium-denuded rat aortic rings, was investigated. NaHS-induced changes of membrane potential were fluorimetrically assessed on human vascular smooth muscle (VSM) cells. Modulation of Kv7.4 channels by NaHS was assessed by electrophysiological studies, upon their heterologous expression in CHO cells. In isolated aortic rings, NaHS evoked vasorelaxing responses associated with an increase of Rb(+)-efflux. NaHS promoted membrane hyperpolarization of human VSM cells. These effects were antagonized by selective blockers of Kv7 channels. The H2S-donor caused a left-shift of current activation threshold of Kv7.4 channels expressed in CHO cells. Altogether, these results suggest that the activation of Kv7.4 channels is a key mechanism in the vascular effects of H2S. Given the relevant roles played by Kv7.4 channels in VSM contractility and by H2S in circulatory homeostasis regulation, these findings provide interesting insights to improve our understanding of H2S pathophysiology and to focus on Kv7.4 channels as novel targets for therapeutic approaches via the &quot;H2S-system&quot;."	"Specification of skeletal muscle differentiation by repressor element-1 silencing transcription factor (REST)-regulated Kv7.4 potassium channels. Changes in the expression of potassium (K(+)) channels is a pivotal event during skeletal muscle differentiation. In mouse C(2)C(12) cells, similarly to human skeletal muscle cells, myotube formation increased the expression of K(v)7.1, K(v)7.3, and K(v)7.4, the last showing the highest degree of regulation. In C(2)C(12) cells, K(v)7.4 silencing by RNA interference reduced the expression levels of differentiation markers (myogenin, myosin heavy chain, troponinT-1, and Pax3) and impaired myotube formation and multinucleation. In K(v)7.4-silenced cells, the differentiation-promoting effect of the K(v)7 activator N-(2-amino-4-(4-fluorobenzylamino)-phenyl)-carbamic acid ethyl ester (retigabine) was abrogated. Expression levels for the repressor element-1 silencing transcription factor (REST) declined during myotube formation. Transcript levels for K(v)7.4, as well as for myogenin, troponinT-1, and Pax3, were reduced by REST overexpression and enhanced upon REST suppression by RNA interference. Four regions containing potential REST-binding sites in the 5' untranslated region and in the first intron of the K(v)7.4 gene were identified by bioinformatic analysis. Chromatin immunoprecipitation assays showed that REST binds to these regions, exhibiting a higher efficiency in myoblasts than in myotubes. These data suggest that K(v)7.4 plays a permissive role in skeletal muscle differentiation and highlight REST as a crucial transcriptional regulator for this K(+) channel subunit."	"Contribution of genetic factors to noise-induced hearing loss: a human studies review. Noise-induced hearing loss (NIHL) is a complex disease that results from the interaction of genetic and environmental factors. Over the last 10 years there has been a great increase in association studies trying to identify the susceptibility genes for NIHL in humans. They were conducted based on the candidate gene approach and comprised predominantly the group of oxidative stress genes, inner ear potassium recycling pathway genes and monogenic deafness genes, as well as other genes. So far, the most promising results were obtained for two genes encoding potassium ion channels (KCNQ4 and KCNE1), catalase (CAT), protocadherin 15 (PCDH15), myosin 14 (MYH14) and heat shock protein (HSP70), because they were replicated in two (Polish and Swedish) or three (Polish, Swedish and Chinese) populations, and were sufficient in size to yield high power for the detection of a causative allele. Today, the development of high-throughput genotyping methods allows the detection of hundreds and thousands of single nucleotide polymorphisms (SNPs) in a single array which undoubtedly will lead toward identification of new NIHL susceptibility genes. This in turn will contribute to the development of genetics tests that would allow for better protection of noise-exposed individuals and personalized treatment, if necessary."	"Role of KCNQ channels in skeletal muscle arteries and periadventitial vascular dysfunction. KCNQ channels have been identified in arterial smooth muscle. However, their role in vasoregulation and chronic vascular diseases remains elusive. We tested the hypothesis that KCNQ channels contribute to periadventitial vasoregulation in peripheral skeletal muscle arteries by perivascular adipose tissue and that they represent novel targets to rescue periadventitial vascular dysfunction. Two models, spontaneously hypertensive rats and New Zealand obese mice, were studied using quantitative polymerase chain reaction, the patch-clamp technique, membrane potential measurements, myography of isolated vessels, and blood pressure telemetry. In rat Gracilis muscle arteries, anticontractile effects of perivascular fat were inhibited by the KCNQ channel blockers XE991 and linopirdine but not by other selective K(+) channel inhibitors. Accordingly, XE991 and linopirdine blocked noninactivating K(+) currents in freshly isolated Gracilis artery smooth muscle cells. mRNAs of several KCNQ channel subtypes were detected in those arteries, with KCNQ4 channels being dominant. In spontaneously hypertensive rats, the anticontractile effect of perivascular fat in Gracilis muscle arteries was largely reduced compared with Wistar rats. However, the vasodilator effects of KCNQ channel openers and mRNA expression of KCNQ channels were normal. Furthermore, KCNQ channel openers restored the diminished anticontractile effects of perivascular fat in spontaneously hypertensive rats. Moreover, KCNQ channel openers reduced arterial blood pressure in both models of hypertension independent of ganglionic blockade. Thus, our data suggest that KCNQ channels play a pivotal role in periadventitial vasoregulation of peripheral skeletal muscle arteries, and KCNQ channel opening may be an effective mechanism to improve impaired periadventitial vasoregulation and associated hypertension."	"Structure of a Ca(2+)/CaM:Kv7.4 (KCNQ4) B-helix complex provides insight into M current modulation. Calmodulin (CaM) is an important regulator of Kv7.x (KCNQx) voltage-gated potassium channels. Channels from this family produce neuronal M currents and cardiac and auditory I(KS) currents and harbor mutations that cause arrhythmias, epilepsy, and deafness. Despite extensive functional characterization, biochemical and structural details of the interaction between CaM and the channel have remained elusive. Here, we show that both apo-CaM and Ca(2+)/CaM bind to the C-terminal tail of the neuronal channel Kv7.4 (KCNQ4), which is involved in both hearing and mechanosensation. Interactions between apo-CaM and the Kv7.4 tail involve two C-terminal tail segments, known as the A and B segments, whereas the interaction between Ca(2+)/CaM and the Kv7.4 C-terminal tail requires only the B segment. Biochemical studies show that the calcium dependence of the CaM:B segment interaction is conserved in all Kv7 subtypes. X-ray crystallographic determination of the structure of the Ca(2+)/CaM:Kv7.4 B segment complex shows that Ca(2+)/CaM wraps around the Kv7.4 B segment, which forms an α-helix, in an antiparallel orientation that embodies a variation of the classic 1-14 Ca(2+)/CaM interaction motif. Taken together with the context of prior studies, our data suggest a model for modulation of neuronal Kv7 channels involving a calcium-dependent conformational switch from an apo-CaM form that bridges the A and B segments to a Ca(2+)/CaM form bound to the B-helix. The structure presented here also provides a context for a number of disease-causing mutations and for further dissection of the mechanisms by which CaM controls Kv7 function."	"BDNF profoundly and specifically increases KCNQ4 expression in neurons derived from embryonic stem cells. Neurons resembling the spiral ganglion neurons (SGNs) of the auditory nerve can be generated from embryonic stem cells through induced overexpression of the transcription factor Neurogenin-1 (Neurog1). While recapitulating this developmental pathway produces glutamatergic, bipolar neurons reminiscent of SGNs, these neurons are functionally immature, being characterized by a depolarized resting potential and limited excitability. We explored the effects of two neurotrophins known to be present in the inner ear, brain derived neurotrophic factor (BDNF) and neurotrophin-3 (NT-3), on the electrophysiology of neurons following Neurog1 induction. Our data reveal a significant reduction in resting membrane potential (RMP) following neurotrophin exposure, with BDNF producing a more robust effect than NT-3. This effect was accompanied by a profound and specific upregulation of the KCNQ4 subtype, where a 9-fold increase was observed with quantitative PCR. The other neuronally expressed KCNQ subtypes (2, 3, and 5) exhibited upregulation which was 3-fold or less in magnitude. Quantitative immunohistochemistry confirmed the increase in KCNQ4 expression at the protein level. The present data show a novel link between BDNF and KCNQ4 expression, yielding insight into the restricted expression pattern of a channel known to play special roles in setting the resting potential of auditory cells and in the etiology of progressive high-frequency hearing loss."	"Regulation of ion channels by the serum- and glucocorticoid-inducible kinase SGK1. The ubiquitously expressed serum- and glucocorticoid-inducible kinase-1 (SGK1) is genomically regulated by cell stress (including cell shrinkage) and several hormones (including gluco- and mineralocorticoids). SGK1 is activated by insulin and growth factors through PI3K and 3-phosphoinositide-dependent kinase PDK1. SGK1 activates a wide variety of ion channels (e.g., ENaC, SCN5A, TRPV4-6, ROMK, Kv1.3, Kv1.5, Kv4.3, KCNE1/KCNQ1, KCNQ4, ASIC1, GluR6, ClCKa/barttin, ClC2, CFTR, and Orai/STIM), which participate in the regulation of transport, hormone release, neuroexcitability, inflammation, cell proliferation, and apoptosis. SGK1-sensitive ion channels participate in the regulation of renal Na(+) retention and K(+) elimination, blood pressure, gastric acid secretion, cardiac action potential, hemostasis, and neuroexcitability. A common (∼3-5% prevalence in Caucasians and ∼10% in Africans) SGK1 gene variant is associated with increased blood pressure and body weight as well as increased prevalence of type II diabetes and stroke. SGK1 further contributes to the pathophysiology of allergy, peptic ulcer, fibrosing disease, ischemia, tumor growth, and neurodegeneration. The effect of SGK1 on channel activity is modest, and the channels do not require SGK1 for basic function. SGK1-dependent ion channel regulation may thus become pathophysiologically relevant primarily after excessive (pathological) expression. Therefore, SGK1 may be considered an attractive therapeutic target despite its broad range of functions."	"Identification of (R)-N-(4-(4-methoxyphenyl)thiazol-2-yl)-1-tosylpiperidine-2-carboxamide, ML277, as a novel, potent and selective K(v)7.1 (KCNQ1) potassium channel activator. A high-throughput screen utilizing a depolarization-triggered thallium influx through KCNQ1 channels was developed and used to screen the MLSMR collection of over 300,000 compounds. An iterative medicinal chemistry approach was initiated and from this effort, ML277 was identified as a potent activator of KCNQ1 channels (EC(50)=260 nM). ML277 was shown to be highly selective against other KCNQ channels (&gt;100-fold selectivity versus KCNQ2 and KCNQ4) as well as against the distantly related hERG potassium channel."	"Parallel evolution of auditory genes for echolocation in bats and toothed whales. The ability of bats and toothed whales to echolocate is a remarkable case of convergent evolution. Previous genetic studies have documented parallel evolution of nucleotide sequences in Prestin and KCNQ4, both of which are associated with voltage motility during the cochlear amplification of signals. Echolocation involves complex mechanisms. The most important factors include cochlear amplification, nerve transmission, and signal re-coding. Herein, we screen three genes that play different roles in this auditory system. Cadherin 23 (Cdh23) and its ligand, protocadherin 15 (Pcdh15), are essential for bundling motility in the sensory hair. Otoferlin (Otof) responds to nerve signal transmission in the auditory inner hair cell. Signals of parallel evolution occur in all three genes in the three groups of echolocators--two groups of bats (Yangochiroptera and Rhinolophoidea) plus the dolphin. Significant signals of positive selection also occur in Cdh23 in the Rhinolophoidea and dolphin, and Pcdh15 in Yangochiroptera. In addition, adult echolocating bats have higher levels of Otof expression in the auditory cortex than do their embryos and non-echolocation bats. Cdh23 and Pcdh15 encode the upper and lower parts of tip-links, and both genes show signals of convergent evolution and positive selection in echolocators, implying that they may co-evolve to optimize cochlear amplification. Convergent evolution and expression patterns of Otof suggest the potential role of nerve and brain in echolocation. Our synthesis of gene sequence and gene expression analyses reveals that positive selection, parallel evolution, and perhaps co-evolution and gene expression affect multiple hearing genes that play different roles in audition, including voltage and bundle motility in cochlear amplification, nerve transmission, and brain function."	"Pore helix-S6 interactions are critical in governing current amplitudes of KCNQ3 K+ channels. Two mechanisms have been postulated to underlie KCNQ3 homomeric current amplitudes, which are small compared with those of KCNQ4 homomers and KCNQ2/Q3 heteromers. The first involves differential channel expression governed by the D-helix within the C-terminus. The second suggests similar channel surface expression but an intrinsically unstable KCNQ3 pore. Here, we find H2O2-enhanced oligomerization of KCNQ4 subunits, as reported by nondenaturing polyacrylamide gel electrophoresis, at C643 at the end of the D-helix, where KCNQ3 possesses a histidine. However, H2O2-mediated enhancement of KCNQ4 currents was identical in the C643A mutant, and KCNQ3 H646C produced homomeric or heteromeric (with KCNQ2) currents similar to those of wild-type KCNQ3, ruling out this divergent residue as underlying the small KCNQ3 amplitudes. In KcsA, F103 in S6 is critical for pore-mediated destabilization of the conductive pathway. We found that mutations at the analogous F344 in KCNQ3 dramatically decreased the KCNQ3 currents. Total internal reflection fluorescence imaging revealed only minor differential surface expression among the wild-type and mutant channels. Homology modeling suggests that the effects of the F344 mutants arise from the disruption of the interaction between F344 and A315 in the pore helix. These data support a secondary role of the C-terminus, compared with pore helix-S6 interactions, in governing KCNQ3 current amplitudes."	"Identification of circulating fetal cell markers by microarray analysis. Different fetal cell types have been found in the maternal blood during pregnancy in the past, but fetal cells are scarce, and the proportions of the different cell types are unclear. The objective of the present study was to identify specific fetal cell markers from fetal cells found in the maternal blood circulation at the end of the first trimester. Twenty-three fetal cells were isolated from maternal blood by removing the red blood cells by lysis or combining this with removal of large proportions of maternal white blood cells by magnetic-activated cell sorting. Fetal cells identified by XY fluorescence in situ hybridization and confirmed by reverse-color fluorescence in situ hybridization were shot off microscope slides by laser capture microdissection. The expression pattern of a subset of expressed genes was compared between fetal cells and maternal blood cells using stem cell microarray analysis. Twenty-eight genes were identified as fetal cell marker candidates. Of the 28 fetal marker candidate genes, five coded for proteins, which are located on the outer surface of the cell membrane and not expressed in blood. The protein product of these five genes, MMP14, MCAM, KCNQ4, CLDN6, and F3, may be used as markers for fetal cell enrichment."	"Inwardly rectifying potassium channel Kir4.1 is localized at the calyx endings of vestibular afferents. Inwardly rectifying potassium (Kir) channel Kir4.1 (also called Kcnj10) is expressed in various cells such as satellite glial cells. It is suggested that these cells would absorb excess accumulated K(+) from intercellular space which is surrounded by these cell membranes expressing Kir4.1. In the vestibular system, loss of Kir4.1 results in selective degeneration of type I hair cells despite normal development of type II hair cells. The mechanisms underlying this developmental disorder have been unclear, because it was thought that Kir4.1 is only expressed in glial cells throughout the entire nervous system. Here, we show that Kir4.1 is expressed not only in glial cells but also in neurons of the mouse vestibular system. In the vestibular ganglion, Kir4.1 mRNA is transcribed in both satellite cells and neuronal somata, whereas Kir4.1 protein is expressed only in satellite cells. On the other hand, in the vestibular sensory epithelia, Kir4.1 protein is localized at the calyx endings of vestibular afferents, which surround type I hair cells. Kir4.1 protein expression in the vestibular sensory epithelia is detected beginning after birth, and its localization gradually adopts a calyceal shape until type I hair cells are mature. Kir4.1 localized at the calyx endings may play a role in the K(+)-buffering action of vestibular afferents surrounding type I hair cells."	"In silico modeling of the pore region of a KCNQ4 missense mutant from a patient with hearing loss. Mutation of the voltage-gated potassium channel KCNQ4 causes DFNA2-type nonsyndromic autosomal dominant sensorineural hearing loss. KCNQ4 is expressed predominantly in the auditory sensory outer hair cells, which are critical for sound amplification. We sequenced KCNQ4 from Japanese patients with sensorineural hearing loss, and identified a novel missense mutation encoding a Tyr270His located at the N-terminus of the highly conserved pore helix sequence. As this patient was not accessible to us and information about them was limited, we used molecular modeling to investigate whether this novel mutation is hypothetically pathogenic. A careful examination of an in silico structural model of the KCNQ4 pore region revealed that the Tyr270His mutation caused an alteration in the electrostatic surface potential of the pore helix. We propose two possible means by which the Tyr270His mutation causes hearing loss: a positively charged His270 side chain might enhance the helix dipole moment of the pore helix, thereby destabilizing the helix and/or the pore region, or it might disturb transport of K+ through the channel by electrostatic repulsion."	"Reduced KCNQ4-encoded voltage-dependent potassium channel activity underlies impaired β-adrenoceptor-mediated relaxation of renal arteries in hypertension. KCNQ4-encoded voltage-dependent potassium (Kv7.4) channels are important regulators of vascular tone that are severely compromised in models of hypertension. However, there is no information as to the role of these channels in responses to endogenous vasodilators. We used a molecular knockdown strategy, as well as pharmacological tools, to examine the hypothesis that Kv7.4 channels contribute to β-adrenoceptor-mediated vasodilation in the renal vasculature and underlie the vascular deficit in spontaneously hypertensive rats. Quantitative PCR and immunohistochemistry confirmed gene and protein expression of KCNQ1, KCNQ3, KCNQ4, KCNQ5, and Kv7.1, Kv7.4, and Kv7.5 in rat renal artery. Isoproterenol produced concentration-dependent relaxation of precontracted renal arteries and increased Kv7 channel currents in isolated smooth muscle cells. Application of the Kv7 blocker linopirdine attenuated isoproterenol-induced relaxation and current. Isoproterenol-induced relaxations were also reduced in arteries incubated with small interference RNAs targeted to KCNQ4 that produced a ≈60% decrease in Kv7.4 protein level. Relaxation to isoproterenol and the Kv7 activator S-1 were abolished in arteries from spontaneously hypertensive rats, which was associated with ≈60% decrease in Kv7.4 abundance. This study provides the first evidence that Kv7 channels contribute to β-adrenoceptor-mediated vasodilation in the renal vasculature and that abrogation of Kv7.4 channels is strongly implicated in the impaired β-adrenoceptor pathway in spontaneously hypertensive rats. These findings may provide a novel pathogenic link between arterial dysfunction and hypertension."	"Altered phenotype of the vestibular organ in GLAST-1 null mice. Various studies point to a crucial role of the high-affinity sodium-coupled glutamate aspartate transporter GLAST-1 for modulation of excitatory transmission as shown in the retina and the CNS. While 2-4-month-old GLAST-1 null mice did not show any functional vestibular abnormality, we observed profound circling behavior in older (7 months) animals lacking GLAST-1. An unchanged total number of otoferlin-positive vestibular hair cells (VHCs), similar ribbon numbers in VHCs, and an unchanged VGLUT3 expression in type II VHCs were detected in GLAST-1 null compared to wild-type mice. A partial loss of supporting cells and an apparent decline of a voltage-gated channel potassium subunit (KCNQ4) was observed in postsynaptic calyceal afferents contacting type I VHCs, together with a reduction of neurofilament- (NF200-) and vesicular glutamate transporter 1- (VGLUT1-) positive calyces in GLAST-1 null mice. Taken together, GLAST-1 deletion appeared to preferentially affect the maintenance of a normal postsynaptic/neuronal phenotype, evident only with increasing age."	"The voltage-gated potassium channel subfamily KQT member 4 (KCNQ4) displays parallel evolution in echolocating bats. Bats are the only mammals that use highly developed laryngeal echolocation, a sensory mechanism based on the ability to emit laryngeal sounds and interpret the returning echoes to identify objects. Although this capability allows bats to orientate and hunt in complete darkness, endowing them with great survival advantages, the genetic bases underlying the evolution of bat echolocation are still largely unknown. Echolocation requires high-frequency hearing that in mammals is largely dependent on somatic electromotility of outer hair cells. Then, understanding the molecular evolution of outer hair cell genes might help to unravel the evolutionary history of echolocation. In this work, we analyzed the molecular evolution of two key outer hair cell genes: the voltage-gated potassium channel gene KCNQ4 and CHRNA10, the gene encoding the α10 nicotinic acetylcholine receptor subunit. We reconstructed the phylogeny of bats based on KCNQ4 and CHRNA10 protein and nucleotide sequences. A phylogenetic tree built using KCNQ4 amino acid sequences showed that two paraphyletic clades of laryngeal echolocating bats grouped together, with eight shared substitutions among particular lineages. In addition, our analyses indicated that two of these parallel substitutions, M388I and P406S, were probably fixed under positive selection and could have had a strong functional impact on KCNQ4. Moreover, our results indicated that KCNQ4 evolved under positive selection in the ancestral lineage leading to mammals, suggesting that this gene might have been important for the evolution of mammalian hearing. On the other hand, we found that CHRNA10, a gene that evolved adaptively in the mammalian lineage, was under strong purifying selection in bats. Thus, the CHRNA10 amino acid tree did not show echolocating bat monophyly and reproduced the bat species tree. These results suggest that only a subset of hearing genes could underlie the evolution of echolocation. The present work continues to delineate the genetic bases of echolocation and ultrasonic hearing in bats."	"Pharmacological dissection of K(v)7.1 channels in systemic and pulmonary arteries. The aim of this study was to characterize the functional impact of KCNQ1-encoded voltage-dependent potassium channels (K(v)7.1) in the vasculature. Mesenteric arteries, intrapulmonary arteries and thoracic aortae were isolated from adult rats. K(v)7.1 channel expression was established by fluorescence immunocytochemistry. Wire myography determined functionality of these channels in response to selective blockers and activators. Xenopus oocytes expressing K(v)7.1 channels were used to assess the effectiveness of selective K(v)7.1 channel blockers. K(v)7.1 channels were identified in arterial myocytes by immunocytochemistry. K(v)7.1 blockers HMR1556, L-768,673 (10 µM) and JNJ39490282 (JNJ282; 1 µM) had no contractile effects in arteries, whereas the pan-K(v)7 channel blocker linopirdine (10 µM) evoked robust contractions. Application of two compounds purported to activate K(v)7.1 channels, L-364 373 (R-L3) and mefenamic acid, relaxed mesenteric arteries preconstricted by methoxamine. These responses were reversed by HMR1556 or L-768,673 but not JNJ282. Similar effects were observed in the thoracic aorta and intrapulmonary arteries. In contrast to previous assumptions, K(v)7.1 channels expressed in arterial myocytes are functional ion channels. Although these channels do not appear to contribute to resting vascular tone, K(v)7.1 activators were effective vasorelaxants."	"Genetics of hearing loss: focus on DFNA2. The purpose of this review is to assess the current literature on deafness nonsyndromic autosomal dominant 2 (DFNA2) hearing loss and the mutations linked to this disorder. Hearing impairment, particularly nonsyndromic hearing loss, affects multiple families across the world. After the identification of the DFNA2 locus on chromosome 1p34, multiple pathogenic mutations in two genes (GJB3 and KCNQ4) have been reported. The overwhelming majority of pathogenic mutations linked to this form of nonsyndromic hearing loss have been identified in the KCNQ4 gene encoding a voltage-gated potassium channel. It is believed that KCNQ4 channels are present in outer hair cells and possibly inner hair cells and the central auditory pathway. This form of hearing loss is both phenotypically and genetically heterogeneous and there are still DFNA2 pedigrees that have not been associated with changes in either GJB3 or KCNQ4, suggesting that a possible third gene exists at this locus. Further studies of the DFNA2 locus will lead to a better understanding of progressive hearing loss and provide a better means of early detection and treatment."	"Tune in to KCNQ. NA"	"Genetic background of Prop1(df) mutants provides remarkable protection against hypothyroidism-induced hearing impairment. Hypothyroidism is a cause of genetic and environmentally induced deafness. The sensitivity of cochlear development and function to thyroid hormone (TH) mandates understanding TH action in this sensory organ. Prop1(df) and Pou1f1(dw) mutant mice carry mutations in different pituitary transcription factors, each resulting in pituitary thyrotropin deficiency. Despite the same lack of detectable serum TH, these mutants have very different hearing abilities: Prop1(df) mutants are mildly affected, while Pou1f1(dw) mutants are completely deaf. Genetic studies show that this difference is attributable to the genetic backgrounds. Using embryo transfer, we discovered that factors intrinsic to the fetus are the major contributor to this difference, not maternal effects. We analyzed Prop1(df) mutants to identify processes in cochlear development that are disrupted in other hypothyroid animal models but protected in Prop1(df) mutants by the genetic background. The development of outer hair cell (OHC) function is delayed, but Prestin and KCNQ4 immunostaining appear normal in mature Prop1(df) mutants. The endocochlear potential and KCNJ10 immunostaining in the stria vascularis are indistinguishable from wild type, and no differences in neurofilament or synaptophysin staining are evident in Prop1(df) mutants. The synaptic vesicle protein otoferlin normally shifts expression from OHC to IHC as temporary afferent fibers beneath the OHC regress postnatally. Prop1(df) mutants exhibit persistent, abnormal expression of otoferlin in apical OHC, suggesting delayed maturation of synaptic function. Thus, the genetic background of Prop1(df) mutants is remarkably protective for most functions affected in other hypothyroid mice. The Prop1(df) mutant is an attractive model for identifying the genes that protect against deafness."	"Effects of KCNQ channel modulators on the M-type potassium current in primate retinal pigment epithelium. Recently, we demonstrated the expression of KCNQ1, KCNQ4, and KCNQ5 transcripts in monkey retinal pigment epithelium (RPE) and showed that the M-type current in RPE cells is blocked by the specific KCNQ channel blocker XE991. Using patch-clamp electrophysiology, we investigated the pharmacological sensitivity of the M-type current in isolated monkey RPE cells to elucidate the subunit composition of the channel. Most RPE cells exhibited an M-type current with a voltage for half-maximal activation of approximately -35 mV. The M-type current activation followed a double-exponential time course and was essentially complete within 1 s. The M-type current was inhibited by micromolar concentrations of the nonselective KCNQ channel blockers linopirdine and XE991 but was relatively insensitive to block by 10 μM chromanol 293B or 135 mM tetraethylammonium (TEA), two KCNQ1 channel blockers. The M-type current was activated by 1) 10 μM retigabine, an opener of all KCNQ channels except KCNQ1, 2) 10 μM zinc pyrithione, which augments all KCNQ channels except KCNQ3, and 3) 50 μM N-ethylmaleimide, which activates KCNQ2, KCNQ4, and KCNQ5, but not KCNQ1 or KCNQ3, channels. Application of cAMP, which activates KCNQ1 and KCNQ4 channels, had no significant effect on the M-type current. Finally, diclofenac, which activates KCNQ2/3 and KCNQ4 channels but inhibits KCNQ5 channels, inhibited the M-type current in the majority of RPE cells but activated it in others. The results indicate that the M-type current in monkey RPE is likely mediated by channels encoded by KCNQ4 and KCNQ5 subunits."	"Discovery, Synthesis, and Structure Activity Relationship of a Series of N-Aryl- bicyclo[2.2.1]heptane-2-carboxamides: Characterization of ML213 as a Novel KCNQ2 and KCNQ4 Potassium Channel Opener. Herein we report the discovery, synthesis and evaluation of a series of N-Aryl-bicyclo[2.2.1]heptane-2-carboxamides as selective KCNQ2 (K(v)7.2) and KCNQ4 (K(v)7.4) channel openers. The best compound, 1 (ML213) has an EC(50) of 230 nM (KCNQ2) and 510 nM (KCNQ4) and is selective for KCNQ2 and KCNQ4 channels versus a large battery of related potassium channels, as well as affording modest brain levels. This represents the first report of unique selectivity profile for KCNQ2 and KCNQ4 over the other channels (KCNQ1/3/5) and as such should prove to be a valuable tool compound for understanding these channels in regulating neuronal activity."	"KCNQ4 K(+) channels tune mechanoreceptors for normal touch sensation in mouse and man. Mutations inactivating the potassium channel KCNQ4 (K(v)7.4) lead to deafness in humans and mice. In addition to its expression in mechanosensitive hair cells of the inner ear, KCNQ4 is found in the auditory pathway and in trigeminal nuclei that convey somatosensory information. We have now detected KCNQ4 in the peripheral nerve endings of cutaneous rapidly adapting hair follicle and Meissner corpuscle mechanoreceptors from mice and humans. Electrophysiological recordings from single afferents from Kcnq4(-/-) mice and mice carrying a KCNQ4 mutation found in DFNA2-type monogenic dominant human hearing loss showed elevated mechanosensitivity and altered frequency response of rapidly adapting, but not of slowly adapting nor of D-hair, mechanoreceptor neurons. Human subjects from independent DFNA2 pedigrees outperformed age-matched control subjects when tested for vibrotactile acuity at low frequencies. This work describes a gene mutation that modulates touch sensitivity in mice and humans and establishes KCNQ4 as a specific molecular marker for rapidly adapting Meissner and a subset of hair follicle afferents."	"Parallel evolution of KCNQ4 in echolocating bats. High-frequency hearing is required for echolocating bats to locate, range and identify objects, yet little is known about its molecular basis. The discovery of a high-frequency hearing-related gene, KCNQ4, provides an opportunity to address this question. Here, we obtain the coding regions of KCNQ4 from 15 species of bats, including echolocating bats that have higher frequency hearing and non-echolocating bats that have the same ability as most other species of mammals. The strongly supported protein-tree resolves a monophyletic group containing all bats with higher frequency hearing and this arrangement conflicts with the phylogeny of bats in which these species are paraphyletic. We identify five parallel evolved sites in echolocating bats belonging to both suborders. The evolutionary trajectories of the parallel sites suggest the independent gain of higher frequency hearing ability in echolocating bats. This study highlights the usefulness of convergent or parallel evolutionary studies for finding phenotype-related genes and contributing to the resolution of evolutionary problems."	"Serum- and glucocorticoid-inducible kinase 1 in the regulation of renal and extrarenal potassium transport. Serum- and glucocorticoid inducible-kinase 1 (SGK1) is an early gene transcriptionally upregulated by cell stress such as cell shrinkage and hypoxia and several hormones including gluco- and mineralocorticoids. It is activated by insulin and growth factors. SGK1 is a powerful regulator of a wide variety of channels and transporters. The present review describes the role of SGK1 in the regulation of potassium (K(+)) channels, K(+) transporters and K(+) homeostasis. SGK1-regulated K(+) channels include renal outer medullary K+ channel, Kv1.3, Kv1.5, KCNE1/KCNQ1, KCNQ4 and, via regulation of calcium (Ca(2+)) entry, Ca(2+)-sensitive K(+) channels. SGK1-sensitive transporters include sodium-potassium-chloride cotransporter 2 and sodium/potassium-adenosine triphosphatase. SGK1-dependent regulation of K(+) channels and K(+) transport contributes to the stimulation of renal K(+) excretion following high K(+) intake, to insulin-induced cellular K(+) uptake and hypokalemia, to inhibition of insulin release by glucocorticoids, to stimulation of mast cell degranulation and gastric acid secretion, and to cardiac repolarization. Thus, SGK1 has a profound effect on K(+) homeostasis and on a multitude of K(+)-sensitive cellular functions."	"Restoration of ion channel function in deafness-causing KCNQ4 mutants by synthetic channel openers. DFNA2 is a frequent hereditary hearing disorder caused by loss-of-function mutations in the voltage-gated potassium channel KCNQ4 (Kv7.4). KCNQ4 mediates the predominant K(+) conductance, I(K,n) , of auditory outer hair cells (OHCs), and loss of KCNQ4 function leads to degeneration of OHCs resulting in progressive hearing loss. Here we explore the possible recovery of channel activity of mutant KCNQ4 induced by synthetic KCNQ channel openers. Whole cell patch clamp recordings were performed on CHO cells transiently expressing KCNQ4 wild-type (wt) and DFNA2-relevant mutants, and from acutely isolated OHCs. Various known KCNQ channel openers robustly enhanced KCNQ4 currents. The strongest potentiation was observed with a combination of zinc pyrithione plus retigabine. A similar albeit less pronounced current enhancement was observed with native I(K,n) currents in rat OHCs. DFNA2 mutations located in the channel's pore region abolished channel function and these mutant channels were completely unresponsive to channel openers. However, the function of a DFNA2 mutation located in the proximal C-terminus was restored by the combined application of both openers. Co-expression of wt and KCNQ4 pore mutants suppressed currents to barely detectable levels. In this dominant-negative situation, channel openers essentially restored currents back to wt levels, most probably through strong activation of only the small fraction of homomeric wt channels. Our data suggest that by stabilizing the KCNQ4-mediated conductance in OHCs, chemical channel openers can protect against OHC degeneration and progression of hearing loss in DFNA2."	"Drosophila KCNQ channel displays evolutionarily conserved electrophysiology and pharmacology with mammalian KCNQ channels. Of the five human KCNQ (Kv7) channels, KCNQ1 with auxiliary subunit KCNE1 mediates the native cardiac I(Ks) current with mutations causing short and long QT cardiac arrhythmias. KCNQ4 mutations cause deafness. KCNQ2/3 channels form the native M-current controlling excitability of most neurons, with mutations causing benign neonatal febrile convulsions. Drosophila contains a single KCNQ (dKCNQ) that appears to serve alone the functions of all the duplicated mammalian neuronal and cardiac KCNQ channels sharing roughly 50-60% amino acid identity therefore offering a route to investigate these channels. Current information about the functional properties of dKCNQ is lacking therefore we have investigated these properties here. Using whole cell patch clamp electrophysiology we compare the biophysical and pharmacological properties of dKCNQ with the mammalian neuronal and cardiac KCNQ channels expressed in HEK cells. We show that Drosophila KCNQ (dKCNQ) is a slowly activating and slowly-deactivating K(+) current open at sub-threshold potentials that has similar properties to neuronal KCNQ2/3 with some features of the cardiac KCNQ1/KCNE1 accompanied by conserved sensitivity to a number of clinically relevant KCNQ blockers (chromanol 293B, XE991, linopirdine) and opener (zinc pyrithione). We also investigate the molecular basis of the differential selectivity of KCNQ channels to the opener retigabine and show a single amino acid substitution (M217W) can confer sensitivity to dKCNQ. We show dKCNQ has similar electrophysiological and pharmacological properties as the mammalian KCNQ channels, allowing future study of physiological and pathological roles of KCNQ in Drosophila and whole organism screening for new modulators of KCNQ channelopathies."	"KCNQ5/K(v)7.5 potassium channel expression and subcellular localization in primate retinal pigment epithelium and neural retina. Previous studies identified in retinal pigment epithelial (RPE) cells an M-type K(+) current, which in many other cell types is mediated by channels encoded by KCNQ genes. The aim of this study was to assess the expression of KCNQ genes in the monkey RPE and neural retina. Application of the specific KCNQ channel blocker XE991 eliminated the M-type current in freshly isolated monkey RPE cells, indicating that KCNQ subunits contribute to the underlying channels. RT-PCR analysis revealed the expression of KCNQ1, KCNQ4, and KCNQ5 transcripts in the RPE and all five KCNQ transcripts in the neural retina. At the protein level, KCNQ5 was detected in the RPE, whereas both KCNQ4 and KCNQ5 were found in neural retina. In situ hybridization in frozen monkey retinal sections revealed KCNQ5 gene expression in the ganglion cell layer and the inner and outer nuclear layers of the neural retina, but results in the RPE were inconclusive due to the presence of melanin. Immunohistochemistry revealed KCNQ5 in the inner and outer plexiform layers, in cone and rod photoreceptor inner segments, and near the basal membrane of the RPE. The data suggest that KCNQ5 channels contribute to the RPE basal membrane K(+) conductance and, thus, likely play an important role in active K(+) absorption. The distribution of KCNQ5 in neural retina suggests that these channels may function in the shaping of the photoresponses of cone and rod photoreceptors and the processing of visual information by retinal neurons."	"Identification of novel KCNQ4 openers by a high-throughput fluorescence-based thallium flux assay. To develop a real-time thallium flux assay for high-throughput screening (HTS) of human KCNQ4 (Kv7.4) potassium channel openers, we used CHO-K1 cells stably expressing human KCNQ4 channel protein and a thallium-sensitive dye based on the permeability of thallium through potassium channels. The electrophysiological and pharmacological properties of the cell line expressing the KCNQ4 protein were found to be in agreement with that reported elsewhere. The EC(50) values of the positive control compound (retigabine) determined by the thallium and (86)rubidium flux assays were comparable to and consistent with those documented in the literature. Signal-to-background (S/B) ratio and Z factor of the thallium influx assay system were assessed to be 8.82 and 0.63, respectively. In a large-scale screening of 98,960 synthetic and natural compounds using the thallium influx assay, 76 compounds displayed consistent KCNQ4 activation, and of these 6 compounds demonstrated EC(50) values of less than 20 μmol/L and 2 demonstrated EC(50) values of less than 1 μmol/L. Taken together, the fluorescence-based thallium flux assay is a highly efficient, automatable, and robust tool to screen potential KCNQ4 openers. This approach may also be expanded to identify and evaluate potential modulators of other potassium channels."	"A genome-wide association study of aging. Human longevity and healthy aging show moderate heritability (20%-50%). We conducted a meta-analysis of genome-wide association studies from 9 studies from the Cohorts for Heart and Aging Research in Genomic Epidemiology Consortium for 2 outcomes: (1) all-cause mortality, and (2) survival free of major disease or death. No single nucleotide polymorphism (SNP) was a genome-wide significant predictor of either outcome (p &lt; 5 × 10(-8)). We found 14 independent SNPs that predicted risk of death, and 8 SNPs that predicted event-free survival (p &lt; 10(-5)). These SNPs are in or near genes that are highly expressed in the brain (HECW2, HIP1, BIN2, GRIA1), genes involved in neural development and function (KCNQ4, LMO4, GRIA1, NETO1) and autophagy (ATG4C), and genes that are associated with risk of various diseases including cancer and Alzheimer's disease. In addition to considerable overlap between the traits, pathway and network analysis corroborated these findings. These findings indicate that variation in genes involved in neurological processes may be an important factor in regulating aging free of major disease and achieving longevity."	"K(V)7/KCNQ channels are functionally expressed in oligodendrocyte progenitor cells. K(V)7/KCNQ channels are widely expressed in neurons and they have multiple important functions, including control of excitability, spike afterpotentials, adaptation, and theta resonance. Mutations in KCNQ genes have been demonstrated to associate with human neurological pathologies. However, little is known about whether K(V)7/KCNQ channels are expressed in oligodendrocyte lineage cells (OLCs) and what their functions in OLCs. In this study, we characterized K(V)7/KCNQ channels expression in rat primary cultured OLCs by RT-PCR, immunostaining and electrophysiology. KCNQ2-5 mRNAs existed in all three developmental stages of rat primary cultured OLCs. K(V)7/KCNQ proteins were also detected in oligodendrocyte progenitor cells (OPCs, early developmental stages of OLCs) of rat primary cultures and cortex slices. Voltage-clamp recording revealed that the I(M) antagonist XE991 significantly reduced K(V)7/KCNQ channel current (I(K(Q))) in OPCs but not in differentiated oligodendrocytes. In addition, inhibition of K(V)7/KCNQ channels promoted OPCs motility in vitro. These findings showed that K(V)7/KCNQ channels were functionally expressed in rat primary cultured OLCs and might play an important role in OPCs functioning in physiological or pathological conditions."	"Downregulation of Kv7.4 channel activity in primary and secondary hypertension. Voltage-gated potassium (K(+)) channels encoded by KCNQ genes (Kv7 channels) have been identified in various rodent and human blood vessels as key regulators of vascular tone; however, nothing is known about the functional impact of these channels in vascular disease. We ascertained the effect of 3 structurally different activators of Kv7.2 through Kv7.5 channels (BMS-204352, S-1, and retigabine) on blood vessels from normotensive and hypertensive animals. Precontracted thoracic aorta and mesenteric artery segments from normotensive rats were relaxed by all 3 Kv7 activators, with potencies of BMS-204352=S-1&gt;retigabine. We also tested these agents in the coronary circulation using the Langendorff heart preparation. BMS-204352 and S-1 dose dependently increased coronary perfusion at concentrations between 0.1 and 10 μmol/L, whereas retigabine was effective at 1 to 10 μmol/L. In addition, S-1 increased K(+) currents in isolated mesenteric artery myocytes. The ability of these agents to relax precontracted vessels, increase coronary flow, or augment K(+) currents was impaired considerably in tissues isolated from spontaneously hypertensive rats (SHRs). Of the 5 KCNQ genes, only the expression of KCNQ4 was reduced (≈3.7 fold) in SHRs aorta. Kv7.4 protein levels were ≈50% lower in aortas and mesenteric arteries from spontaneously hypertensive rats compared with normotensive vessels. A similar attenuated response to S-1 and decreased Kv7.4 were observed in mesenteric arteries from mice made hypertensive by angiotensin II infusion compared with normotensive controls. In 2 different rat and mouse models of hypertension, the functional impact of Kv7 channels was dramatically downregulated."	"Novel expression and regulation of voltage-dependent potassium channels in placentas from women with preeclampsia. Preeclampsia is associated with structural/functional alterations in placental and maternal vasculature. Voltage-dependant potassium channels encoded by KCNQ1-5 genes have been detected in several types of blood vessels where they promote vascular relaxation. Voltage-dependant potassium channel function can be modulated by KCNE1-5-encoded accessory proteins. The aim of this study was to determine whether KCNQ and KCNE genes are differentially expressed in placentas from women with preeclampsia compared with normotensive controls and to examine any differences in those who delivered preterm (&lt;37 weeks) or term. Placental biopsies (from midway between the cord and periphery) were obtained, with consent, from white European control (n=24; term) and preeclamptic (n=22; of whom 8 delivered before 37 weeks' gestation) women. KCNQ/KCNE and GAPDH mRNA expressions were determined by quantitative RT-PCR. Protein expression/localization was assessed using immunohistochemistry. KCNQ3 and KCNE5 mRNA expressions were significantly upregulated in preeclampsia (median [interquartile range]: 1.942 [0.905 to 3.379]) versus controls (0.159 [0.088 to 0.288]; P=0.001) and exhibited a strong positive correlation with each other (P&lt;0.001), suggesting a novel heterodimer. Enhanced protein expression of KCNQ3 and KCNE5 in preeclampsia was confirmed with localization mainly restricted to the syncytiotrophoblast. KCNQ4 and KCNE1 isoforms were suppressed in placentas from term preeclamptic women versus controls (P≤0.05). KCNQ1 mRNA expression was increased and KCNQ5 decreased in the preterm preeclamptic group versus controls (P&lt;0.05). In summary, voltage-dependant potassium channels are expressed and markedly modulated in placentas from preeclamptic women. Differential expression of isoforms may lead to altered cell proliferation. The correlation between KCNQ3 and KCNE5 expression is indicative of a novel channel complex and warrants further investigation."	"KCNQ2/3 openers show differential selectivity and site of action across multiple KCNQ channels. KCNQ2/3 voltage-gated potassium channels conduct low-threshold, slowly activating and non-inactivating currents to repolarize the neuronal resting membrane potential. The channels negatively regulate neuronal excitability and KCNQ2/3 openers are efficacious in hyperexcited states such as epilepsy and pain. We developed and utilized thallium influx assays to profile novel KCNQ2/3 channel openers with respect to selectivity across KCNQ subtypes and on requirement for tryptophan 236 of KCNQ2, a critical residue for activity of the KCNQ opener retigabine. Using distinct chemical series of openers, a quinazolinone series showed relatively poor selectivity across multiple KCNQ channels and lacked activity at the KCNQ2(W236L) mutant channel. In contrast, several novel benzimidazole openers showed selectivity for KCNQ2/3 and KCNQ2 and retain activity at KCNQ2(W236L). Profiling of several hundred KCNQ2/3 openers across multiple diverse chemical series revealed that openers show differential degrees of selectivity across subtypes, with selectivity most difficult to achieve against KCNQ2. In addition, we report the significant finding that KCNQ openers can pharmacologically differentiate between homomeric and heteromeric channels containing subtypes in common. Moreover, most openers assayed were dependent on the W236 for activity, whereas only a small number appear to use a distinct mechanism. Collectively, we provide novel insights into the molecular pharmacology of KCNQ channels by demonstrating differential selectivity and site of action for KCNQ2/3 openers. The high-throughput thallium influx assays should prove useful for rapid characterization of KCNQ openers and in guiding efforts to identify selective compounds for advancement towards the clinic."	"Gene localization in a Chinese family with autosomal dominant non-syndromic deafness. There could be another candidate gene in DFNA2, which could be responsible for the hearing loss phenotype. We collected a four-generation family from the southern part of China with autosomal dominant sensorineural hearing impairment. In order to identify the responsible pathogenic mutations in this family, we set out to identify the locus and to sequentially analyze the candidate genes in the identified region. After family ascertainment and clinical analysis, exclusive analysis was performed. Then a genome-wide scan was performed using an Illumina Linkage-12 DNA Analysis Kit (average spacing 0.58 cM). Fine-mapping markers were genotyped to identify the locus. Finally, we performed haplotype analyses and candidate gene DNA sequencing for the family. The known genetic loci and genes were not associated with our family. The genome-wide scan and haplotype analyses traced the disease to chromosome 1p34.2-p34.3 with maximum multi-point LOD score of 3.2, which overlaps with DFNA2. We failed to identify any of the known or novel variants within KCNQ4, a voltage-gated potassium channel gene, and GJB3, a gene that encodes the gap junction protein connexin 31, which were the cloned deafness genes in DFNA2."	"Audioprofile-directed successful mutation analysis in a DFNA2/KCNQ4 (p.Leu274His) family. We undertook to show that in a family with nonsyndromic autosomal dominant sensorineural hearing loss, genetic analysis can be successful when there is a match with a specific DFNA audioprofile. We also provide an update of relevant DFNA2/KCNQ4 audioprofiles and report the results of automatic audioprofile analysis using the Internet program AudioGene. Audiometric data and blood samples were obtained from the family W08-0384. Based on the audiograms of the affected participants, mutation analysis of KCNQ4 was started. Original audiometric threshold data were collected for all identified KCNQ4-related DFNA2 families. The Internet computer program AudioGene, recently developed for automatic audioprofile analysis, was accessed. The family's audioprofile and the program AudioGene predicted the DFNA2/KCNQ4 locus. Mutation analysis of KCNQ4 revealed a c.821T&gt;A (p.Leu274His) mutation of the KCNQ4 gene. This mutation has been previously identified in a Dutch family. Genetic analysis revealed a common haplotype in these two families over a region including the KCNQ4 gene. Familiarity with the audioprofiles of DFNA traits may lead to successful mutation analysis of the gene involved, even in a small family in which genetic linkage analysis is not an option. Alternatively, the specially developed program AudioGene can be accessed on the Internet to perform automatic audioprofile analysis of a family's (audiological) phenotype."	"Probing the regulation of TASK potassium channels by PI4,5P₂ with switchable phosphoinositide phosphatases. TASK channels are background K+ channels that contribute to the resting conductance in many neurons. A key feature of TASK channels is the reversible inhibition by Gq-coupled receptors, thereby mediating the dynamic regulation of neuronal activity by modulatory transmitters. The mechanism that mediates channel inhibition is not fully understood. While it is clear that activation of Gαq is required, the immediate signal for channel closure remains controversial. Experimental evidence pointed to either phospholipase C (PLC)-mediated depletion of phosphatidylinositol-4,5-bisphosphate (PI(4,5)P2) as the cause for channel closure or to a direct inhibitory interaction of active Gαq with the channel. Here, we address the role of PI(4,5)P2 for G-protein-coupled receptor (GPCR)-mediated TASK inhibition by using recently developed genetically encoded tools to alter phosphoinositide (PI) concentrations in the living cell.When expressed in CHO cells, TASK-1- and TASK-3-mediated currents were not affected by depletion of plasma membrane PI(4,5)P2 either via the voltage-activated phosphatase Ci-VSP or via chemically triggered recruitment of a PI(4,5)P2-5'-phosphatase. Depletion of both PI(4,5)P2 and PI(4)P via membrane recruitment of a novel engineered dual-specificity phosphatase also did not inhibit TASK currents. In contrast, each of these methods produced robust inhibition of the bona fide PI(4,5)P2-dependent channel KCNQ4. Efficient depletion of PI(4,5)P2 and PI(4)P was further confirmed with a fluorescent phosphoinositide sensor. Moreover, TASK channels recovered normally from inhibition by co-expressed muscarinic M1 receptors when resynthesis of PI(4,5)P2 was prevented by depletion of cellular ATP. These results demonstrate that TASK channel activity is independent of phosphoinositide concentrations within the physiological range. Consequently, Gq-mediated inhibition of TASK channels is not mediated by depletion of PI(4,5)P2."	"Autosomal dominant progressive sensorineural hearing loss due to a novel mutation in the KCNQ4 gene. To identify the genetic etiology in a family with autosomal dominant progressive sensorineural hearing loss. Prospective molecular genetic research study. Academic genetic research laboratory. Seventeen members of a family with dominant progressive nonsyndromic sensorineural hearing loss: 9 affected, 6 unaffected, and 2 spouses. Clinical data from questionnaires, interviews, serial audiograms, and medical records; genetic data from genome-wide linkage analysis and candidate gene mutation analysis. Symptoms, age at onset, serial audiometric data, and the presence or absence of a deafness-associated mutation. Affected individuals in this family presented with autosomal dominant nonsyndromic high-frequency progressive sensorineural hearing loss, with age at onset ranging from 1 to 21 years. Genome-wide linkage analysis of single-nucleotide polymorphisms yielded evidence of linkage to an 18.9-Mb region on chromosome 1p34-p36, with a multipoint logarithm of odds score of 3.6. This interval contains a known deafness gene, KCNQ4, which underlies DNFA2 deafness. Sequencing of the 14 coding exons and intron-exon junctions of KCNQ4 revealed a novel heterozygous missense mutation, c.859G&gt;C, p.Gly287Arg. The mutation disrupts the highly conserved GYG motif (glycine-tyrosine-glycine) of the phosphate-binding loop, hypothesized to be critical in maintaining pore structure and function. All 274 controls were negative for the mutation. Autosomal dominant high-frequency hearing loss is genetically heterogeneous, and linkage analysis is an efficient means of identifying the etiology in larger families. Deafness in this family is caused by a novel mutation in KCNQ4."	"Cellular and molecular mechanisms of autosomal dominant form of progressive hearing loss, DFNA2. Despite advances in identifying deafness genes, determination of the underlying cellular and functional mechanisms for auditory diseases remains a challenge. Mutations of the human K(+) channel hKv7.4 lead to post-lingual progressive hearing loss (DFNA2), which affects world-wide population with diverse racial backgrounds. Here, we have generated the spectrum of point mutations in the hKv7.4 that have been identified as diseased mutants. We report that expression of five point mutations in the pore region, namely L274H, W276S, L281S, G285C, and G296S, as well as the C-terminal mutant G321S in the heterologous expression system, yielded non-functional channels because of endoplasmic reticulum retention of the mutant channels. We mimicked the dominant diseased conditions by co-expressing the wild-type and mutant channels. As compared with expression of wild-type channel alone, the blend of wild-type and mutant channel subunits resulted in reduced currents. Moreover, the combinatorial ratios of wild type:mutant and the ensuing current magnitude could not be explained by the predictions of a tetrameric channel and a dominant negative effect of the mutant subunits. The results can be explained by the dependence of cell surface expression of the mutant on the wild-type subunit. Surprisingly, a transmembrane mutation F182L, which has been identified in a pre-lingual progressive hearing loss patient in Taiwan, yielded cell surface expression and functional features that were similar to that of the wild type, suggesting that this mutation may represent redundant polymorphism. Collectively, these findings provide traces of the cellular mechanisms for DFNA2."	"Aminoglycosides inhibit KCNQ4 channels in cochlear outer hair cells via depletion of phosphatidylinositol(4,5)bisphosphate. Aminoglycoside antibiotics (AGs) are severely ototoxic. AGs cause degeneration of outer hair cells (OHCs), leading to profound and irreversible hearing loss. The underlying mechanisms are not fully understood. OHC survival critically depends on a specific K+ conductance (I(K,n)) mediated by KCNQ4 (Kv7.4) channels. Dysfunction or genetic ablation of KCNQ4 results in OHC degeneration and deafness in mouse and humans. As a common hallmark of all KCNQ isoforms, channel activity requires phosphatidylinositol(4,5)bisphosphate [PI(4,5)P₂]. Because AGs are known to reduce PI(4,5)P₂ availability by sequestration, inhibition of KCNQ4 may be involved in the action of AGs on OHCs. Using whole-cell patch-clamp recordings from rat OHCs, we found that intracellularly applied AGs inhibit I(K,n). The inhibition results from PI(4,5)P₂ depletion indicated by fluorescence imaging of cellular PI(4,5)P₂ and the dependence of inhibition on PI(4,5)P₂ availability and on PI(4,5)P₂ affinity of recombinant KCNQ channels. Likewise, extracellularly applied AGs inhibited I(K,n) and caused substantial depolarization of OHCs, after rapid accumulation in OHCs via a hair cell-specific apical entry pathway. The potency for PI(4,5)P₂ sequestration, strength of I(K,n) inhibition, and resulting depolarization correlated with the known ototoxic potential of the different AGs. Thus, the inhibition of I(K,n) via PI(4,5)P₂ depletion and the resulting depolarization may contribute to AG-induced OHC degeneration. The KCNQ channel openers retigabine and zinc pyrithione rescued KCNQ4/I(K,n) activity from AG-induced inhibition. Pharmacological enhancement of KCNQ4 may thus offer a protective strategy against AG-induced ototoxicity and possibly other ototoxic insults."	"PLCγ-activated signalling is essential for TrkB mediated sensory neuron structural plasticity. The vestibular system provides the primary input of our sense of balance and spatial orientation. Dysfunction of the vestibular system can severely affect a person's quality of life. Therefore, understanding the molecular basis of vestibular neuron survival, maintenance, and innervation of the target sensory epithelia is fundamental. Here we report that a point mutation at the phospholipase Cγ (PLCγ) docking site in the mouse neurotrophin tyrosine kinase receptor TrkB (Ntrk2) specifically impairs fiber guidance inside the vestibular sensory epithelia, but has limited effects on the survival of vestibular sensory neurons and growth of afferent processes toward the sensory epithelia. We also show that expression of the TRPC3 cation calcium channel, whose activity is known to be required for nerve-growth cone guidance induced by brain-derived neurotrophic factor (BDNF), is altered in these animals. In addition, we find that absence of the PLCγ mediated TrkB signalling interferes with the transformation of bouton type afferent terminals of vestibular dendrites into calyces (the largest synaptic contact of dendrites known in the mammalian nervous system) on type I vestibular hair cells; the latter are normally distributed in these mutants as revealed by an unaltered expression pattern of the potassium channel KCNQ4 in these cells. These results demonstrate a crucial involvement of the TrkB/PLCγ-mediated intracellular signalling in structural aspects of sensory neuron plasticity."	"Diclofenac distinguishes among homomeric and heteromeric potassium channels composed of KCNQ4 and KCNQ5 subunits. KCNQ4 and KCNQ5 potassium channel subunits are expressed in vascular smooth muscle cells, although it remains uncertain how these subunits assemble to form functional channels. Using patch-clamp techniques, we compared the electrophysiological characteristics and effects of diclofenac, a known KCNQ channel activator, on human KCNQ4 and KCNQ5 channels expressed individually or together in A7r5 rat aortic smooth muscle cells. The conductance curves of the overexpressed channels were fitted by a single Boltzmann function in each case (V(0.5) values: -31, -44, and -38 mV for KCNQ4, KCNQ5, and KCNQ4/5, respectively). Diclofenac (100 μM) inhibited KCNQ5 channels, reducing maximum conductance by 53%, but increased maximum conductance of KCNQ4 channels by 38%. The opposite effects of diclofenac on KCNQ4 and KCNQ5 could not be attributed to the presence of a basic residue (lysine) in the voltage-sensing domain of KCNQ5, because mutation of this residue to neutral glycine (the residue present in KCNQ4) resulted in a more effective block of the channel. Differences in deactivation rates and distinct voltage-dependent effects of diclofenac on channel activation and deactivation observed with each of the subunit combinations (KCNQ4, KCNQ5, and KCNQ4/5) were used as diagnostic tools to evaluate native KCNQ currents in vascular smooth muscle cells. A7r5 cells express only KCNQ5 channels endogenously, and their responses to diclofenac closely resembled those of the overexpressed KCNQ5 currents. In contrast, mesenteric artery myocytes, which express both KCNQ4 and KCNQ5 channels, displayed whole-cell KCNQ currents with properties and diclofenac responses characteristic of overexpressed heteromeric KCNQ4/5 channels."	"The specific slow afterhyperpolarization inhibitor UCL2077 is a subtype-selective blocker of the epilepsy associated KCNQ channels. Mutations in members of the KCNQ channel family underlie multiple diseases affecting the nervous and cardiovascular systems. Despite their clinical relevance, research into these channels is limited by the lack of subtype-selective inhibitors, making it difficult to differentiate the physiological function of each family member in vivo. We have proposed that KCNQ channels might partially underlie the calcium-activated slow afterhyperpolarization (sAHP), a neuronal conductance whose molecular components are uncertain. Here, we investigated whether 3-(triphenylmethylaminomethyl)pyridine (UCL2077), identified previously as an inhibitor of the sAHP in neurons, acts on members of the KCNQ family expressed in heterologous cells. We found that 3 μM UCL2077 strongly inhibits KCNQ1 and KCNQ2 channels and weakly blocks KCNQ4 channels in a voltage-independent manner. In contrast, UCL2077 potentiates KCNQ5 channels at more positive membrane potentials, with little effect at negative membrane potentials. We found that the effect of UCL2077 on KCNQ3 is bimodal: currents are enhanced at negative membrane potentials and inhibited at positive potentials. We found that UCL2077 facilitates KCNQ3 currents by inducing a leftward shift in the KCNQ3 voltage-dependence, a shift dependent on tryptophan 265. Finally, we show that UCL2077 has intermediate effects on KCNQ2/3 heteromeric channels compared with KCNQ2 and KCNQ3 homomers. Together, our data demonstrate that UCL2077 acts on KCNQ channels in a subtype-selective manner. This feature should make UCL2077 a useful tool for distinguishing KCNQ1 and KCNQ2 from less-sensitive KCNQ family members in neurons and cardiac cells in future studies."	"Expression and function of the K+ channel KCNQ genes in human arteries. KCNQ-encoded voltage-gated potassium channels (K(v) 7) have recently been identified as important anti-constrictor elements in rodent blood vessels but the role of these channels and the effects of their modulation in human arteries remain unknown. Here, we have assessed KCNQ gene expression and function in human arteries ex vivo. Fifty arteries (41 from visceral adipose tissue, 9 mesenteric arteries) were obtained from subjects undergoing elective surgery. Quantitative RT-PCR experiments using primers specific for all known KCNQ genes and immunohistochemsitry were used to show K(v) 7 channel expression. Wire myography and single cell electrophysiology assessed the function of these channels. KCNQ4 was expressed in all arteries assessed, with variable contributions from KCNQ1, 3 and 5. KCNQ2 was not detected. K(v) 7 channel isoform-dependent staining was revealed in the smooth muscle layer. In functional studies, the K(v) 7 channel blockers, XE991 and linopirdine increased isometric tension and inhibited K(+) currents. In contrast, the K(v) 7.1-specific blocker chromanol 293B did not affect vascular tone. Two K(v) 7 channel activators, retigabine and acrylamide S-1, relaxed preconstricted arteries, actions reversed by XE991. K(v) 7 channel activators also suppressed spontaneous contractile activity in seven arteries, reversible by XE991. This is the first study to demonstrate not only the presence of KCNQ gene products in human arteries but also their contribution to vascular tone ex vivo. This article is commented on by Mani and Byron, pp. 38-41 of this issue. To view this commentary visit http://dx.doi.org/10.1111/j.1476-5381.2010.01065.x."	"Pathogenic effects of a novel mutation (c.664_681del) in KCNQ4 channels associated with auditory pathology. Hearing loss is a common communication disorder caused by various environmental and genetic factors. Hereditary hearing loss is very heterogeneous, and most of such cases involve sensorineural defects in the auditory pathway. There are currently 57 known autosomal dominant non-syndromic hearing loss (DFNA) loci, and the causative genes have been identified at 22 of these loci. In the present study, we performed a genome-wide linkage analysis in a Korean family segregating autosomal dominant hearing loss. We observed linkage on chromosome 1p34, and at this locus, we detected a novel mutation consisting of an 18 nucleotide deletion in exon 4 of the KCNQ4 gene, which encodes a voltage-gated potassium channel. We carried out a functional in vitro study to analyze the effects of this mutation (c.664_681del) along with two previously described KCNQ4 mutations, p.W276S and p.G285C. Although the c.664_681del mutation is located in the intercellular loop and the two previously described mutations, p.W276S and p.G285C, are located in the pore region, all mutants inhibit normal channel function by a dominant negative effect. Our analysis indicates that the intercellular loop is as significant as the pore region as a potential site of pathogenic effects on KCNQ4 channel function."	"Kv7-type channel currents in spiral ganglion neurons: involvement in sensorineural hearing loss. Alterations in K(v)7-mediated currents in excitable cells result in several diseased conditions. A case in DFNA2, an autosomal dominant version of progressive hearing loss, involves degeneration of hair cells and spiral ganglion neurons (SGNs) from basal to apical cochlea, manifesting as high-to-low frequency hearing loss, and has been ascribed to mutations in K(v)7.4 channels. Analyses of the cellular mechanisms of K(v)7.4 mutations and progressive degeneration of SGNs have been hampered by the paucity of functional data on the role K(v)7 channels play in young and adult neurons. To understand the cellular mechanisms of the disease in SGNs, we examined temporal (young, 0.5 months old, and senescent, 17 months old) and spatial (apical and basal) roles of K(v)7-mediated currents. We report that differential contribution of K(v)7 currents in mice SGNs results in distinct and profound variations of the membrane properties of basal versus apical neurons. The current produces a major impact on the resting membrane potential of basal neurons. Inhibition of the current promotes membrane depolarization, resulting in activation of Ca(2+) currents and a sustained rise in intracellular Ca(2+). Using TUNEL assay, we demonstrate that a sustained increase in intracellular Ca(2+) mediated by inhibition of K(v)7 current results in significant SGN apoptotic death. Thus, this study provides evidence of the cellular etiology and mechanisms of SGN degeneration in DFNA2."	"Differential effects of ICA-27243 on cloned K(V)7 channels. the neuronal K(V)7 family members (K(V)7.2-5) are important regulators of neuronal excitability. K(V)7 channel openers are therefore attractive drug candidates for the treatment of several hyperexcitability disorders. While most described K(V)7 channel openers discriminate poorly between K(V)7.2-5, Icagen's N-(6-chloropyridin- 3-yl)-3,4-difluorobenzamide (ICA-27243) is more potent at K(V)7.2/3 than at K(V)7.4 and K(V)7.3/5 and offers some progress towards subtype selectivity. We have investigated its mode of action on K(V)7.2 and K(V)7.4, compared its effect to that of retigabine and studied the combinatorial effect of retigabine and ICA-27243, as these two compounds recognize different binding sites in the channels. the effects of ICA-27243 and retigabine were studied using voltage-clamp electrophysiology in Xenopus laevis oocytes and rubidium flux in Chinese hamster ovary cells. we found that in contrast to retigabine's voltage-dependent action on K(V)7.2, ICA-27243 induced a voltage-independent current on this subtype, which was not observed on K(V)7.4. Additionally, the combined treatment of K(V)7.2 and K(V)7.4 with retigabine and ICA-27243 revealed that the effect of ICA-27243 on K(V)7.2 dominates that of retigabine, while the compounds act additively and synergistically on K(V)7.4. these results offer further detailed insight into pharmacological activation of K(V)7 channels and offer evidence of differential functional and subtype-specific effects by activation of different binding sites in the K(V)7 channels."	"Participation of KCNQ (Kv7) potassium channels in myogenic control of cerebral arterial diameter. KCNQ gene expression was previously shown in various rodent blood vessels, where the products of KCNQ4 and KCNQ5, Kv7.4 and Kv7.5 potassium channel subunits, respectively, have an influence on vascular reactivity. The aim of this study was to determine if small cerebral resistance arteries of the rat express KCNQ genes and whether Kv7 channels participate in the regulation of myogenic control of diameter. Quantitative reverse transcription polymerase chain reaction (QPCR) was undertaken using RNA isolated from rat middle cerebral arteries (RMCAs) and immunocytochemistry was performed using Kv7 subunit-specific antibodies and freshly isolated RMCA myocytes. KCNQ4 message was more abundant than KCNQ5 = KCNQ1, but KCNQ2 and KCNQ3 message levels were negligible. Kv7.1, Kv7.4 and Kv7.5 immunoreactivity was present at the sarcolemma of freshly isolated RMCA myocytes. Linopirdine (1 microm) partially depressed, whereas the Kv7 activator S-1 (3 and/or 20 microm) enhanced whole-cell Kv7.4 (in HEK 293 cells), as well as native RMCA myocyte Kv current amplitude. The effects of S-1 were voltage-dependent, with progressive loss of stimulation at potentials of &gt;15 mV. At the concentrations employed linopirdine and S-1 did not alter currents due to recombinant Kv1.2/Kv1.5 or Kv2.1/Kv9.3 channels (in HEK 293 cells) that are also expressed by RMCA myocytes. In contrast, another widely used Kv7 blocker, XE991 (10 microm), significantly attenuated native Kv current and also reduced Kv1.2/Kv1.5 and Kv2.1/Kv9.3 currents. Pressurized arterial myography was performed using RMCAs exposed to intravascular pressures of 10-100 mmHg. Linopirdine (1 microm) enhanced the myogenic response at 20 mmHg, whereas the activation of Kv7 channels with S-1 (20 microm) inhibited myogenic constriction at &gt;20 mmHg and reversed the increased myogenic response produced by suppression of Kv2-containing channels with 30 nm stromatoxin (ScTx1). These data reveal a novel contribution of KCNQ gene products to the regulation of myogenic control of cerebral arterial diameter and suggest that Kv7 channel activating drugs may be appropriate candidates for the development of an effective therapy to ameliorate cerebral vasospasm."	"M-type channels selectively control bursting in rat dopaminergic neurons. Midbrain dopaminergic neurons in the substantia nigra, pars compacta and ventral tegmental area are critically important in many physiological functions. These neurons exhibit firing patterns that include tonic slow pacemaking, irregular firing and bursting, and the amount of dopamine that is present in the synaptic cleft is much increased during bursting. The mechanisms responsible for the switch between these spiking patterns remain unclear. Using both in-vivo recordings combined with microiontophoretic or intraperitoneal drug applications and in-vitro experiments, we have found that M-type channels, which are present in midbrain dopaminergic cells, modulate the firing during bursting without affecting the background low-frequency pacemaker firing. Thus, a selective blocker of these channels, 10,10-bis(4-pyridinylmethyl)-9(10H)-anthracenone dihydrochloride, specifically potentiated burst firing. Computer modeling of the dopamine neuron confirmed the possibility of a differential influence of M-type channels on excitability during various firing patterns. Therefore, these channels may provide a novel target for the treatment of dopamine-related diseases, including Parkinson's disease and drug addiction. Moreover, our results demonstrate that the influence of M-type channels on the excitability of these slow pacemaker neurons is conditional upon their firing pattern."	"Ca2+/calmodulin disrupts AKAP79/150 interactions with KCNQ (M-Type) K+ channels. M-type channels are localized to neuronal, cardiovascular, and epithelial tissues, where they play critical roles in control of excitability and K(+) transport, and are regulated by numerous receptors via G(q/11)-mediated signals. One pathway shown for KCNQ2 and muscarinic receptors uses PKC, recruited to the channels by A-kinase anchoring protein (AKAP)79/150. As M-type channels can be variously composed of KCNQ1-5 subunits, and M current is known to be regulated by Ca(2+)/calmodulin (CaM) and PIP(2), we probed the generality of AKAP79/150 actions among KCNQ1-5 channels, and the influence of Ca(2+)/CaM and PIP(2) on AKAP79/150 actions. We first examined which KCNQ subunits are targeted by AKAP79 in Chinese hamster ovary (CHO) cells heterologously expressing KCNQ1-5 subunits and AKAP79, using fluorescence resonance energy transfer (FRET) under total internal reflection fluorescence (TIRF) microscopy, and patch-clamp analysis. Donor-dequenching FRET between CFP-tagged KCNQ1-5 and YFP-tagged AKAP79 revealed association of KCNQ2-5, but not KCNQ1, with AKAP79. In parallel with these results, CHO cells stably expressing M(1) receptors studied under perforated patch-clamp showed cotransfection of AKAP79 to &quot;sensitize&quot; KCNQ2/3 heteromers and KCNQ2-5, but not KCNQ1, homomers to muscarinic inhibition, manifested by shifts in the dose-response relations to lower concentrations. The effect on KCNQ4 was abolished by the T553A mutation of the putative PKC phosphorylation site. We then probed the role of CaM and PIP(2) in these AKAP79 actions. TIRF/FRET experiments revealed cotransfection of wild-type, but not dominant-negative (DN), CaM that cannot bind Ca(2+), to disrupt the interaction of YFP-tagged AKAP79(1-153) with CFP-tagged KCNQ2-5. Tonic depletion of PIP(2) by cotransfection of a PIP(2) phosphatase had no effect, and sudden depletion of PIP(2) did not delocalize GFP-tagged AKAP79 from the membrane. Finally, patch-clamp experiments showed cotransfection of wild-type, but not DN, CaM to prevent the AKAP79-mediated sensitization of KCNQ2/3 heteromers to muscarinic inhibition. Thus, AKAP79 acts on KCNQ2-5, but not KCNQ1-containing channels, with effects disrupted by calcified CaM, but not by PIP(2) depletion."	"Effect of salicylate on KCNQ4 of the guinea pig outer hair cell. Salicylate causes a moderate hearing loss and tinnitus in humans at high-dose levels. Salicylate-induced hearing loss has been attributed to impaired sound amplification by outer hair cells (OHCs) through its direct action on the OHC motility sensor and/or motor. However, there is a disparity of salicylate concentrations between the clinical and animal studies, i.e., extremely high extracellular concentrations of salicylate (from 1 to 10 mM) is required to produce a significant reduction of electromotility in animal studies. Such concentrations are above the clinical/physiological range for humans. Here, we showed that clinical/physiological concentration range of salicylate caused concentration-dependent and reversible reductions in I(K,n) (KCNQ4) and subsequent depolarization of OHCs. Salicylate reduced the maximal tail current of the activation curve of I(K,n) without altering the voltage-sensitivity (V(half)). The salicylate-induced reduction of I(K,n) was almost completely blocked by linopirdine (0.1 mM) and BaCl₂ (10 mM). Consistent with the finding in OHCs, salicylate significantly reduced KCNQ4-mediated current expressed in Chinese hamster ovarian (CHO) cells by comparable amplitude to OHCs without significantly shifting V(half). Nonstationary fluctuation analysis shows that salicylate significantly reduced the estimated single-channel current amplitude and numbers. Intracellular Ca²+ elevation resulting from cytoplasmic acidosis also contributes to the current reduction of I(K,n) (KCNQ4) of OHCs. These results indicate a different model for the salicylate-induced hearing loss through the reduction of KCNQ4 and subsequent depolarization of OHCs, which reduces the driving force for transduction current and electromotility. The major mechanism underlying the reduction of I(K,n) (KCNQ4) is the direct blocking action of salicylate on KCNQ4."	"Property of I(K,)(n) in inner hair cells isolated from guinea-pig cochlea. One of the potassium currents, I(K,)(n), is already activated at the resting potential of the cell and thus determines the membrane potential. KCNQ4 channel has been identified as the molecular correlate of I(K,)(n). In the present study, we measured I(K,)(n) in acutely isolated IHCs of guinea-pig cochlea using the whole-cell voltage-clamp techniques, and investigated the properties of the currents. I(K,)(n) was 70% activated around the resting potential of -60 mV and deactivated on hyperpolarization. I(K,)(n) was blocked by the KCNQ-channel blockers, linopirdine (100 microM) and XE991 (10 microM), but was insensitive to both I(K,f) blocker, tetraethylammonium (TEA), and I(K,s) blocker, 4-aminopyridine (4-AP). There was no significant difference in the size of I(K,)(n) between the apical and basal turn IHCs."	"Affinity for phosphatidylinositol 4,5-bisphosphate determines muscarinic agonist sensitivity of Kv7 K+ channels. Kv7 K(+)-channel subunits differ in their apparent affinity for PIP(2) and are differentially expressed in nerve, muscle, and epithelia in accord with their physiological roles in those tissues. To investigate how PIP(2) affinity affects the response to physiological stimuli such as receptor stimulation, we exposed homomeric and heteromeric Kv7.2, 7.3, and 7.4 channels to a range of concentrations of the muscarinic receptor agonist oxotremorine-M (oxo-M) in a heterologous expression system. Activation of M(1) receptors by oxo-M leads to PIP(2) depletion through G(q) and phospholipase C (PLC). Chinese hamster ovary cells were transiently transfected with Kv7 subunits and M(1) receptors and studied under perforated-patch voltage clamp. For Kv7.2/7.3 heteromers, the EC(50) for current suppression was 0.44 +/- 0.08 microM, and the maximal inhibition (Inhib(max)) was 74 +/- 3% (n = 5-7). When tonic PIP(2) abundance was increased by overexpression of PIP 5-kinase, the EC(50) was shifted threefold to the right (1.2 +/- 0.1 microM), but without a significant change in Inhib(max) (73 +/- 4%, n = 5). To investigate the muscarinic sensitivity of Kv7.3 homomers, we used the A315T pore mutant (Kv7.3(T)) that increases whole-cell currents by 30-fold without any change in apparent PIP(2) affinity. Kv7.3(T) currents had a slightly right-shifted EC(50) as compared with Kv7.2/7.3 heteromers (1.0 +/- 0.8 microM) and a strongly reduced Inhib(max) (39 +/- 3%). In contrast, the dose-response curve of homomeric Kv7.4 channels was shifted considerably to the left (66 +/- 8 nM), and Inhib(max) was slightly increased (81 +/- 6%, n = 3-4). We then studied several Kv7.2 mutants with altered apparent affinities for PIP(2) by coexpressing them with Kv7.3(T) subunits to boost current amplitudes. For the lower affinity (Kv7.2 (R463Q)/Kv7.3(T)) or higher affinity (Kv7.2 (R463E)/Kv7.3(T)) channels, the EC(50) and Inhib(max) were similar to Kv7.4 or Kv7.3(T) homomers (0.12 +/- 0.08 microM and 79 +/- 6% [n = 3-4] and 0.58 +/- 0.07 microM and 27 +/- 3% [n = 3-4], respectively). The very low-affinity Kv7.2 (R452E, R459E, and R461E) triple mutant was also coexpressed with Kv7.3(T). The resulting heteromer displayed a very low EC(50) for inhibition (32 +/- 8 nM) and a slightly increased Inhib(max) (83 +/- 3%, n = 3-4). We then constructed a cellular model that incorporates PLC activation by oxo-M, PIP(2) hydrolysis, PIP(2) binding to Kv7-channel subunits, and K(+) current through Kv7 tetramers. We were able to fully reproduce our data and extract a consistent set of PIP(2) affinities."	"Functional study of the effect of phosphatase inhibitors on KCNQ4 channels expressed in Xenopus oocytes. KCNQ4 channels play an important part in adjusting the function of cochlear outer hair cells. The aim of this study was to investigate the effects of ser/thr phosphatase inhibitors on human KCNQ4 channels expressed in Xenopuslaevis oocytes. Synthetic cRNA encoding human KCNQ4 channels was injected into Xenopus oocytes. We used a two-electrode voltage clamp to measure the ion currents in the oocytes. Wild-type KCNQ4 expressed in Xenopus oocytes showed the typical properties of slow activation kinetics and low threshold activation. The outward K(+) current was almost completely blocked by a KCNQ4 blocker, linopirdine (0.25 mmol/L). BIMI (a PKC inhibitor) prevented the effects of PMA (a PKC activator) on the KCNQ4 current, indicating that PKC may be involved in the regulation of KCNQ4 expressed in the Xenopus oocyte system. Treatment with the ser/thr phosphatase inhibitors, cyclosporine (2 micromol/L), calyculin A (2 micromol/L) or okadaic acid (1 micromol/L), caused a significant positive shift in V(1/2) and a decrease in the conductance of KCNQ4 channels. The V(1/2) was shifted from -14.6+/-0.5 to -6.4+/-0.4 mV by cyclosporine, -18.8+/-0.5 to -9.2+/-0.4 mV by calyculin A, and -14.1+/-0.5 to -0.7+/-0.6 mV by okadaic acid. Moreover, the effects of these phosphatase inhibitors (okadaic acid or calyculin A) on the induction of a positive shift of V(1/2) were augmented by further addition of PMA. These results indicate that ser/thr phosphatase inhibitors can induce a shift to more positive potentials of the activation curve of the KCNQ4 current. It is highly likely that the phosphatase functions to balance the phosphorylated state of substrate protein and thus has an important role in the regulation of human KCNQ4 channels expressed in Xenopus oocytes."	"Distinct subdomains of the KCNQ1 S6 segment determine channel modulation by different KCNE subunits. Modulation of voltage-gated potassium (KV) channels by the KCNE family of single transmembrane proteins has physiological and pathophysiological importance. All five KCNE proteins (KCNE1-KCNE5) have been demonstrated to modulate heterologously expressed KCNQ1 (KV7.1) with diverse effects, making this channel a valuable experimental platform for elucidating structure-function relationships and mechanistic differences among members of this intriguing group of accessory subunits. Here, we specifically investigated the determinants of KCNQ1 inhibition by KCNE4, the least well-studied KCNE protein. In CHO-K1 cells, KCNQ1, but not KCNQ4, is strongly inhibited by coexpression with KCNE4. By studying KCNQ1-KCNQ4 chimeras, we identified two adjacent residues (K326 and T327) within the extracellular end of the KCNQ1 S6 segment that determine inhibition of KCNQ1 by KCNE4. This dipeptide motif is distinct from neighboring S6 sequences that enable modulation by KCNE1 and KCNE3. Conversely, S6 mutations (S338C and F340C) that alter KCNE1 and KCNE3 effects on KCNQ1 do not abrogate KCNE4 inhibition. Further, KCNQ1-KCNQ4 chimeras that exhibited resistance to the inhibitory effects of KCNE4 still interact biochemically with this protein, implying that accessory subunit binding alone is not sufficient for channel modulation. These observations indicate that the diverse functional effects observed for KCNE proteins depend, in part, on structures intrinsic to the pore-forming subunit, and that distinct S6 subdomains determine KCNQ1 responses to KCNE1, KCNE3, and KCNE4."	"Analysis of gene polymorphisms associated with K ion circulation in the inner ear of patients susceptible and resistant to noise-induced hearing loss. Noise-induced hearing loss (NIHL) is one of the leading occupational health risks in industrialized countries. It results from an interaction between environmental and genetic factors, however the nature of the genetic factors contributing to NIHL has not yet been clarified. Here, we investigated whether genetic variations in 10 genes putatively involved in the potassium recycling pathway in the inner ear may influence susceptibility to noise. 99 SNPs were genotyped in Polish noise-exposed workers, categorized into susceptible and resistant subjects. The most interesting results were obtained for KCNE1 and KCNQ4 as we replicated associations that were previously reported in a Swedish sample set, hence confirming that they are NIHL susceptibility genes. Additionally we report significant associations in GJB1, GJB2, GJB4, KCNJ10 and KCNQ1, however due to the lack of replication in the Swedish sample set, these results should be seen as suggestive."	"Therapeutic regulation of gene expression in the inner ear using RNA interference. Targeting and downregulating specific genes with antisense and decoy oligonucleotides, ribozymes or RNA interference (RNAi) offer the theoretical potential of altering a disease phenotype. Here we review the molecular mechanism behind the in vivo application of RNAi-mediated gene silencing, focusing on its application to the inner ear. RNAi is a physiological phenomenon in which small, double-stranded RNA molecules (small interfering RNA, siRNA) reduce expression of homologous genes. Notable for its exquisite sequence specificity, it is ideally applied to diseases caused by a gain-of-function mechanism of action. Types of deafness in which gain-of-function mutations are observed include DFNA2 (KCNQ4), DFNA3 (GJB2) and DFNA5 (DFNA5). Several strategies can be used to deliver siRNA into the inner ear, including cationic liposomes, adeno-associated and lentiviral vectors, and adenoviral vectors. Transduction efficiency with cationic liposomes is low and the effect is transient; with adeno-associated and lentiviral vectors, long-term transfection is possible using a small hairpin RNA expression cassette."	"Molecular and functional characterization of Kv7 K+ channel in murine gastrointestinal smooth muscles. Members of the K(v)7 voltage-gated K(+) channel family are important determinants of cardiac and neuronal membrane excitability. Recently, we and others have shown that K(v)7 channels are also crucial regulators of smooth muscle activity. The aim of the present study was to assess the K(v)7 expression in different parts of the murine gastrointestinal (GI) tract and to assess their functional roles by use of pharmacological agents. Of KCNQ/K(v)7 members, both KCNQ4/K(v)7.4 and KCNQ5/K(v)7.5 genes and proteins were the most abundantly expressed K(v)7 channels in smooth muscles throughout the GI tract. Immunohistochemical staining also revealed that K(v)7.4 and K(v)7.5 but not K(v)7.1 were expressed in the circular muscle layer of the colon. In segments of distal colon circular muscle exhibiting spontaneous phasic contractions, the nonselective K(v)7 blockers XE991 and linopirdine increased the integral of tension. Increases in the integral of tension were also observed under conditions of neuronal blockade. Similar effects, although less marked, were observed in the proximal colon. As expected, the K(v)7.1-selective blocker chromanol 293B had no effect in either type of segment. These data show that K(v)7.x especially K(v)7.4 and K(v)7.5 are expressed in different regions of the murine gastrointestinal tract and blockers of K(v)7 channels augment inherent contractile activity. Drugs that selectively block K(v)7.4/7.5 might be promising therapeutics for the treatment of motility disorders such as constipation associated with irritable bowel syndrome."	"Cell volume and membrane stretch independently control K+ channel activity. A number of potassium channels including members of the KCNQ family and the Ca(2+) activated IK and SK, but not BK, are strongly and reversibly regulated by small changes in cell volume. It has been argued that this general regulation is mediated through sensitivity to changes in membrane stretch. To test this hypothesis we have studied the regulation of KCNQ1 and BK channels after expression in Xenopus oocytes. Results from cell-attached patch clamp studies (approximately 50 microm(2) macropatches) in oocytes expressing BK channels demonstrate that the macroscopic volume-insensitive BK current increases with increasing negative hydrostatic pressure (suction) applied to the pipette. Thus, at a pipette pressure of -5.0 +/- 0.1 mmHg the increase amounted to 381 +/- 146% (mean +/- S.E.M., n = 6, P &lt; 0.025). In contrast, in oocytes expressing the strongly volume-sensitive KCNQ1 channel, the current was not affected by membrane stretch. The results indicate that (1) activation of BK channels by local membrane stretch is not mimicked by membrane stress induced by cell swelling, and (2) activation of KCNQ1 channels by cell volume increase is not mediated by local tension in the cell membrane. We conclude that stretch and volume sensitivity can be considered two independent regulatory mechanisms."	"The septate junction protein caspr is required for structural support and retention of KCNQ4 at calyceal synapses of vestibular hair cells. The afferent innervation contacting the type I hair cells of the vestibular sensory epithelia form distinct calyceal synapses. The apposed presynaptic and postsynaptic membranes at this large area of synaptic contact are kept at a remarkably regular distance. Here, we show by freeze-fracture electron microscopy that a patterned alignment of proteins at the calyceal membrane resembles a type of intercellular junction that is rare in vertebrates, the septate junction (SJ). We found that a core molecular component of SJs, Caspr, colocalizes with the K(+) channel KCNQ4 at the postsynaptic membranes of these calyceal synapses. Immunolabeling and ultrastructural analyses of Caspr knock-out mice reveal that, in the absence of Caspr, the separation between the membranes of the hair cells and the afferent neurons is conspicuously irregular and often increased by an order of magnitude. In these mutants, KCNQ4 fails to cluster at the postsynaptic membrane and appears diffused along the entire calyceal membrane. Our results indicate that a septate-like junction provides structural support to calyceal synaptic contact with the vestibular hair cell and that Caspr is required for the recruitment or retention of KCNQ4 at these synapses."	"Deafness and permanently reduced potassium channel gene expression and function in hypothyroid Pit1dw mutants. The absence of thyroid hormone (TH) during late gestation and early infancy can cause irreparable deafness in both humans and rodents. A variety of rodent models have been used in an effort to identify the underlying molecular mechanism. Here, we characterize a mouse model of secondary hypothyroidism, pituitary transcription factor 1 (Pit1(dw)), which has profound, congenital deafness that is rescued by oral TH replacement. These mutants have tectorial membrane abnormalities, including a prominent Hensen's stripe, elevated beta-tectorin composition, and disrupted striated-sheet matrix. They lack distortion product otoacoustic emissions and cochlear microphonic responses, and exhibit reduced endocochlear potentials, suggesting defects in outer hair cell function and potassium recycling. Auditory system and hair cell physiology, histology, and anatomy studies reveal novel defects of hormone deficiency related to deafness: (1) permanently impaired expression of KCNJ10 in the stria vascularis of Pit1(dw) mice, which likely contributes to the reduced endocochlear potential, (2) significant outer hair cell loss in the mutants, which may result from cellular stress induced by the lower KCNQ4 expression and current levels in Pit1(dw) mutant outer hair cells, and (3) sensory and strial cell deterioration, which may have implications for thyroid hormone dysregulation in age-related hearing impairment. In summary, we suggest that these defects in outer hair cell and strial cell function are important contributors to the hearing impairment in Pit1(dw) mice."	"Discovery of a novel activator of KCNQ1-KCNE1 K channel complexes. KCNQ1 voltage-gated K(+) channels (Kv7.1) associate with the family of five KCNE peptides to form complexes with diverse gating properties and pharmacological sensitivities. The varied gating properties of the different KCNQ1-KCNE complexes enables the same K(+) channel to function in both excitable and non excitable tissues. Small molecule activators would be valuable tools for dissecting the gating mechanisms of KCNQ1-KCNE complexes; however, there are very few known activators of KCNQ1 channels and most are ineffective on the physiologically relevant KCNQ1-KCNE complexes. Here we show that a simple boronic acid, phenylboronic acid (PBA), activates KCNQ1/KCNE1 complexes co-expressed in Xenopus oocytes at millimolar concentrations. PBA shifts the voltage sensitivity of KCNQ1 channel complexes to favor the open state at negative potentials. Analysis of different-sized charge carriers revealed that PBA also targets the permeation pathway of KCNQ1 channels. Activation by the boronic acid moiety has some specificity for the Kv7 family members (KCNQ1, KCNQ2/3, and KCNQ4) since PBA does not activate Shaker or hERG channels. Furthermore, the commercial availability of numerous PBA derivatives provides a large class of compounds to investigate the gating mechanisms of KCNQ1-KCNE complexes."	"KCNQ modulators reveal a key role for KCNQ potassium channels in regulating the tone of rat pulmonary artery smooth muscle. Potassium channels are central to the regulation of pulmonary vascular tone. The smooth muscle cells of pulmonary artery display a background K(+) conductance with biophysical properties resembling those of KCNQ (K(V)7) potassium channels. Therefore, we investigated the expression and functional role of KCNQ channels in pulmonary artery. The effects of selective KCNQ channel modulators were investigated on K(+) current and membrane potential in isolated pulmonary artery smooth muscle cells (PASMCs), on the tension developed by intact pulmonary arteries, and on pulmonary arterial pressure in isolated perfused lungs and in vivo. The KCNQ channel blockers, linopirdine and XE991 [10,10-bis(4-pyridinylmethyl)-9(10H)-anthracenone], inhibited the noninactivating background K(+) conductance in PASMCs and caused depolarization, vasoconstriction, and raised pulmonary arterial pressure without constricting several systemic arteries or raising systemic pressure. The KCNQ channel openers, retigabine and flupirtine, had the opposite effects. PASMCs were found to express KCNQ4 mRNA, at higher levels than mesenteric artery, along with smaller amounts of KCNQ1 and 5. It is concluded that KCNQ channels, most probably KCNQ4, make an important contribution to the regulation of pulmonary vascular tone, with a greater contribution in pulmonary compared with systemic vessels. The pulmonary vasoconstrictor effect of KCNQ blockers is a potentially serious side effect, but the pulmonary vasodilator effect of the openers may be useful in the treatment of pulmonary hypertension."	"Antipsychotic-like effect of retigabine [N-(2-Amino-4-(fluorobenzylamino)-phenyl)carbamic acid ester], a KCNQ potassium channel opener, via modulation of mesolimbic dopaminergic neurotransmission. Dopaminergic (DAergic) neurons in the ventral tegmental area express both KCNQ2 and KCNQ4 channels, which opening is expected to decrease neuronal excitability via neuronal hyper-polarization. Because psychotic symptoms are believed to be associated with an increased excitability of dopamine (DA) cells in the mesencephalon, KCNQ channels might represent a new potential target for the treatment of psychosis. The aim of our study was to investigate the antipsychotic-like potential of KCNQ channel opening via modulation of neuronal activity within the mesolimbic DAergic system. We report that retigabine [N-(2-amino-4-(fluorobenzylamino)-phenyl)carbamic acid ester], a KCNQ opener, dose-dependently reduced basal DA firing rate and more potently suppressed burst firing activity in the ventral tegmental area, whereas XE-991 [10,10-bis(pyridinylmethyl)-9(10H)-anthracenone], a selective KCNQ blocker, induced opposite effects. In addition, retigabine prevented d-amphetamine-induced DA efflux in the nucleus accumbens and d-amphetamine-induced locomotor hyperactivity. In contrast, XE-991 potentiated both the locomotor hyperactivity and DA efflux evoked by d-amphetamine. These data strongly suggest that the activation of KCNQ channels attenuates DAergic neurotransmission in the mesolimbic system, particularly in conditions of excessive DAergic activity. In a model predictive of antipsychotic activity, the conditioned avoidance response paradigm, retigabine was found to inhibit avoidance responses, an effect blocked by coadministration of XE-991. Furthermore, retigabine was found to significantly inhibit the hyperlocomotor response to a phencyclidine (PCP) challenge in PCP-sensitized animals, considered as a disease model for schizophrenia. Taken together, our studies provide evidence that KCNQ channel openers represent a potential new class of antipsychotics."	"Audioprofile-directed screening identifies novel mutations in KCNQ4 causing hearing loss at the DFNA2 locus. Gene identification in small families segregating autosomal dominant sensorineural hearing loss presents a significant challenge. To address this challenge, we have developed a machine learning-based software tool, AudioGene v2.0, to prioritize candidate genes for mutation screening based on audioprofiling. We analyzed audiometric data from a cohort of American families with high-frequency autosomal dominant sensorineural hearing loss. Those families predicted to have a DFNA2 audioprofile by AudioGene v2.0 were screened for mutations in the KCNQ4 gene. Two novel missense mutations and a stop mutation were detected in three American families predicted to have DFNA2-related deafness for a positive predictive value of 6.3%. The false negative rate was 0%. The missense mutations were located in the channel pore region and the stop mutation was in transmembrane domain S5. The latter is the first DFNA2-causing stop mutation reported in KCNQ4. Our data suggest that the N-terminal end of the P-loop is crucial in maintaining the integrity of the KCNQ4 channel pore and AudioGene audioprofile analysis can effectively prioritize genes for mutation screening in small families segregating high-frequency autosomal dominant sensorineural hearing loss. AudioGene software will be made freely available to clinicians and researchers once it has been fully validated."	"Expression and localization of K channels KCNQ2 and KCNQ3 in the mammalian cochlea. KCNQ1 and KCNQ4 voltage-gated potassium channel subunits play key roles in hearing. Other members of the KCNQ family also encode slow, low voltage-activated K(+) M currents. We have previously reported the presence of M-like K(+) currents in sensory hair cells, and expression of Kcnq family genes in the cochlea. Here, we describe Kcnq2/3 gene expression and distribution of M channel subunits KCNQ2 and 3 in the cochlea. By using RT-PCR, we found expression of Kcnq2 in the modiolus and organ of Corti, while Kcnq3 expression was also detected in the cochlear lateral wall. Five alternative splice variants of the Kcnq2 gene, one of which has not been reported previously, were identified in the rat cochlea. KCNQ2 and KCNQ3 immunoreactivities were observed in spiral ganglion auditory neurons. In addition, the unmyelinated parts of the nerve fibers innervating hair cells and synaptic regions under hair cells showed KCNQ2 immunoreactivity. KCNQ3 immunoreactivity was also prominent in spiral ganglion satellite cells. These findings suggest that cochlear M channels play important roles in regulation of cellular excitability and maintenance of cochlear K(+) homeostasis in the auditory system."	"Forty-six genes causing nonsyndromic hearing impairment: which ones should be analyzed in DNA diagnostics? Hearing impairment is the most common sensory disorder, present in 1 of every 500 newborns. With 46 genes implicated in nonsyndromic hearing loss, it is also an extremely heterogeneous trait. Here, we categorize for the first time all mutations reported in nonsyndromic deafness genes, both worldwide and more specifically in Caucasians. The most frequent genes implicated in autosomal recessive nonsyndromic hearing loss are GJB2, which is responsible for more than half of cases, followed by SLC26A4, MYO15A, OTOF, CDH23 and TMC1. None of the genes associated with autosomal dominant nonsyndromic hearing loss accounts for a preponderance of cases, although mutations are somewhat more frequently reported in WFS1, KCNQ4, COCH and GJB2. Only a minority of these genes is currently included in genetic diagnostics, the selection criteria typically reflecting: (1) high frequency as a cause of deafness (i.e. GJB2); (2) association with another recognisable feature (i.e. SLC26A4 and enlarged vestibular aqueduct); or (3) a recognisable audioprofile (i.e. WFS1). New and powerful DNA sequencing technologies have been developed over the past few years, but have not yet found their way into DNA diagnostics. Implementing these technologies is likely to happen within the next 5 years, and will cause a breakthrough in terms of power and cost efficiency. It will become possible to analyze most - if not all - deafness genes, as opposed to one or a few genes currently. This ability will greatly improve DNA diagnostics, provide epidemiological data on gene-based mutation frequencies, and reveal novel genotype-phenotype correlations."	"KCNQ4 mutations associated with nonsyndromic progressive sensorineural hearing loss. This article provides an update on the current progress in identification of KCNQ4 mutations responsible for DFNA2, a subtype of autosomal dominant nonsyndromic progressive hearing loss. Hearing loss in pateints with DFNA2 usually start at high frequencies in their 20s and 30s, and then progress to more than 60 dB in less than 10 years, with middle and low frequencies often affected as well. To date, eight missense mutations and two deletions of the KCNQ4 gene have been identified in patients with DFNA2 with various clinical phenotypes. In general, missense mutations are associated with younger-onset and all-frequency hearing loss, whereas deletion mutations are underlying later-onset and pure high-frequency hearing loss. The etiology of DFNA2 remains largely unknown at this point, even though the degeneration of cochlear outer hair cells, caused by dysfunction of KCNQ4 channels, might be one of the underlying mechanisms. During the last decade, significant progress has been made in identifying KCNQ4 mutations in patients with DFNA2. Elucidation of the pathogenic effect of these mutations will help to gain insights into the molecular mechanisms of hearing and hearing loss, which, in turn, will facilitate informative genetic counseling, early diagnosis, and even treatment of hearing loss."	"Determinants within the turret and pore-loop domains of KCNQ3 K+ channels governing functional activity. KCNQ1-5 (Kv7.1-7.5) subunits assemble to form a variety of functional K(+) channels in the nervous system, heart, and epithelia. KCNQ1 and KCNQ4 homomers and KCNQ2/3 heteromers yield large currents, whereas KCNQ2 and KCNQ3 homomers yield small currents. Since the unitary conductance of KCNQ3 is five- to 10-fold greater than that of KCNQ4 or KCNQ1, these differences are even more striking. To test for differential membrane protein expression, we performed biotinylation and total internal reflection fluorescence imaging assays; however, both revealed only small differences among the channels, leading us to investigate other mechanisms at work. We probed the molecular determinants governing macroscopic current amplitudes, with focus on the turret and pore-loop domains of KCNQ1 and KCNQ3. Elimination of the putative N289 glycosylation site in KCNQ1 reduced current density by approximately 56%. A chimera consisting of KCNQ3 with the turret domain (TD) of KCNQ1 increased current density by about threefold. Replacement of the proximal half of the TD in KCNQ3 with that of KCNQ1 increased current density by fivefold. A triple chimera containing the TD of KCNQ1 and the carboxy terminus of KCNQ4 yielded current density 10- or sixfold larger than wild-type KCNQ3 or KCNQ1, respectively, suggesting that the effects on current amplitudes of the TD and the carboxy-terminus are additive. Critical was the role of the intracellular TEA(+)-binding site. The KCNQ3 (A315T) swap increased current density by 10-fold, and the converse KCNQ1 (T311A) swap reduced it by 10-fold. KCNQ3 (A315S) also yielded greatly increased current amplitudes, whereas currents from mutant A315V channels were very small. The KCNQ3 (A315T) mutation increased the sensitivity of the channels to external Ba(2+) block by eight- to 28-fold, consistent with this mutation altering the structure of the selectivity filter. To investigate a structural hypothesis for the effects of these mutations, we performed homology modeling of the pore region of wild-type and mutant KCNQ3 channels, using KvAP as a template. The modeling suggests a critical stabilizing interaction between the pore helix and the selectivity filter that is absent in wild-type KCNQ3 and the A315V mutant, but present in the A315T and A315S mutants. We conclude that KCNQ3 homomers are well expressed at the plasma membrane, but that most wild-type channels are functionally silent, with rearrangements of the pore-loop architecture induced by the presence of a hydroxyl-containing residue at the 315 position &quot;unlocking&quot; the channels into a conductive conformation."	"Homomeric and heteromeric assembly of KCNQ (Kv7) K+ channels assayed by total internal reflection fluorescence/fluorescence resonance energy transfer and patch clamp analysis. M-type K(+) channels, consisting of KCNQ1-5 (Kv7.1-7.5) subunits, form a variety of homomeric and heteromeric channels. Whereas all the subunits can assemble into homomeric channels, the ability of the subunits to assemble into heteromultimers is highly variable. KCNQ3 is widely thought to co-assemble with several other KCNQ subtypes, whereas KCNQ1 and KCNQ2 do not. However, the existence of other subunit assemblies is not well studied. To systematically explore the heteromeric assembly of KCNQ channels in individual living cells, we performed fluorescence resonance energy transfer (FRET) between cyan fluorescent protein- and yellow fluorescent protein-tagged KCNQ subunits expressed in Chinese hamster ovary cells under total internal reflection fluorescence microscopy in which excitation light only penetrates several hundred nanometers into the cell, thus isolating membrane events. We found significant FRET between homomeric subunits as expected from their functional expression in heterologous expression systems. Also as expected from previous work, robust FRET was observed between KCNQ2 and KCNQ3. KCNQ3 and KCNQ4 also showed substantial FRET as did KCNQ4 and KCNQ5. To determine functional assembly of KCNQ4/KCNQ5 heteromers, we performed two types of experiments. In the first, we constructed a mutant tetraethylammonium ion-sensitive KCNQ4 subunit and tested its assembly with KCNQ5 by patch clamp analysis of the tetraethylammonium ion sensitivity of the resulting current; however, those data were not conclusive. In the second, we co-expressed a KCNQ4 (G285S) pore mutant with KCNQ5 and found the former to act as a dominant negative, suggesting co-assembly of the two types of subunits. These data confirm that among the allowed assembly conformations are KCNQ3/4 and KCNQ4/5 heteromers."	"Bimodal effects of the Kv7 channel activator retigabine on vascular K+ currents. This study investigated the functional and electrophysiological effects of the Kv7 channel activator, retigabine, on murine portal vein smooth muscle. KCNQ gene expression was determined by reverse transcriptase polymerase chain reaction (RT-PCR) and immunocytochemical experiments. Whole cell voltage clamp and current clamp were performed on isolated myocytes from murine portal vein. Isometric tension recordings were performed on whole portal veins. K+ currents generated by KCNQ4 and KCNQ5 expression were recorded by two-electrode voltage clamp in Xenopus oocytes. KCNQ1, 4 and 5 were expressed in mRNA derived from murine portal vein, either as whole tissue or isolated myocytes. Kv7.1 and Kv7.4 proteins were identified in the cell membranes of myocytes by immunocytochemistry. Retigabine (2-20 microM) suppressed spontaneous contractions in whole portal veins, hyperpolarized the membrane potential and augmented potassium currents at -20 mV. At more depolarized potentials, retigabine and flupirtine, decreased potassium currents. Both effects of retigabine were prevented by prior application of the K(v)7 blocker XE991 (10 muM). Recombinant KCNQ 4 or 5 channels were only activated by retigabine or flupirtine. The Kv7 channel activators retigabine and flupirtine have bimodal effects on vascular potassium currents, which are not seen with recombinant KCNQ channels. These results provide support for KCNQ4- or KCNQ5-encoded channels having an important functional impact in the vasculature."	"Desensitization of chemical activation by auxiliary subunits: convergence of molecular determinants critical for augmenting KCNQ1 potassium channels. Chemical openers for KCNQ potassium channels are useful probes both for understanding channel gating and for developing therapeutics. The five KCNQ isoforms (KCNQ1 to KCNQ5, or Kv7.1 to Kv7.5) are differentially localized. Therefore, the molecular specificity of chemical openers is an important subject of investigation. Native KCNQ1 normally exists in complex with auxiliary subunits known as KCNE. In cardiac myocytes, the KCNQ1-KCNE1 (IsK or minK) channel is thought to underlie the I(Ks) current, a component critical for membrane repolarization during cardiac action potential. Hence, the molecular and pharmacological differences between KCNQ1 and KCNQ1-KCNE1 channels have been important topics. Zinc pyrithione (ZnPy) is a newly identified KCNQ channel opener, which potently activates KCNQ2, KCNQ4, and KCNQ5. However, the ZnPy effects on cardiac KCNQ1 potassium channels remain largely unknown. Here we show that ZnPy effectively augments the KCNQ1 current, exhibiting an increase in current amplitude, reduction of inactivation, and slowing of both activation and deactivation. Some of these are reminiscent of effects by KCNE1. In addition, neither the heteromultimeric KCNQ1-KCNE1 channels nor native I(Ks) current displayed any sensitivity to ZnPy, indicating that the static occupancy by a KCNE subunit desensitizes the reversible effects by a chemical opener. Site-directed mutagenesis of KCNQ1 reveals that residues critical for the potentiation effects by either ZnPy or KCNE are clustered together in the S6 region overlapping with the critical gating determinants. Thus, the convergence of potentiation effects and molecular determinants critical for both an auxiliary subunit and a chemical opener argue for a mechanistic overlap in causing potentiation."	"Second coiled-coil domain of KCNQ channel controls current expression and subfamily specific heteromultimerization by salt bridge networks. KCNQ channels carry the slowly activating, voltage-dependent M-current in excitable cells such as neurons. Although the KCNQ2 homomultimer can form a functional voltage-gated K(+) channel, heteromultimerization with KCNQ3 produces a &gt; 10-fold increase in current amplitude. All KCNQ channels contain double coiled-coil domains (TCC1 and TCC2, or A-domain Head and Tail), of which TCC2 (A-domain Tail) is thought to be important for subunit recognition, channel assembly and surface expression. The mechanism by which TCC2 recognizes and associates with its partner is not fully understood, however. Our aim in the present study was to elucidate the recognition mechanism by examining the phenotypes of TCC2-deletion mutants, TCC2-swapped chimeras and point mutants. Electrophysiological analysis using Xenopus oocytes under two-electrode voltage clamp revealed that homotetrameric KCNQ3 TCC2 is a negative regulator of current expression in the absence of KCNQ2 TCC2. Recent structural analysis of KCNQ4 TCC2 revealed the presence of intercoil salt bridge networks. We therefore swapped the sign of the charged residues reportedly involved in the salt bridge formation and functionally confirmed that the intercoil salt bridge network is responsible for the subunit recognition between KCNQ2 and KCNQ3. Finally, we constructed TCC2-swapped KCNQ2/KCNQ3 mutants with KCNQ1 TCC2 or GCN4-pLI, a coiled-coil domain from an unrelated protein, and found that TCC2 is substitutable and even GCN4-pLI can work as a substitute for TCC2. Our present data provide some new insights into the role played by TCC2 during current expression, and also provide functional evidence of the importance of the intercoil salt bridge network for subunit recognition and coiled-coil formation, as is suggested by recent crystallographic data."	"The responsible genes in Japanese deafness patients and clinical application using Invader assay. Discovery of deafness genes has progressed but clinical application lags because of the genetic heterogeneity. To establish clinical application strategy, we reviewed the frequency and spectrum of mutations found in Japanese hearing loss patients and compared them to those in populations of European ancestry. Screening revealed that in Japanese, mutations in GJB2, SLC26A4, and CDH23, and the mitochondrial 12S rRNA are the major causes of hearing loss. Also, mutations in KCNQ4, TECTA, COCH, WFS1, CRYM, COL9A3, and KIAA1199 were found in independent autosomal dominant families. Interestingly, spectrums of GJB2, SLC26A4, and CDH23 mutations in Japanese were quite different from those in Europeans. Simultaneous screening of multiple deafness mutations based on the mutation spectrum of a corresponding population using an Invader panel revealed that approximately 30% of subjects could be diagnosed. This assay will enable us to detect deafness mutations in an efficient and practical manner in the clinical platform. We conclude that specific racial populations may have unique deafness gene epidemiologies; therefore, ethnic background should be considered when genetic testing is performed. Simultaneous examination of multiple mutations based on a population's spectrum may be appropriate and effective for detecting deafness genes, facilitating precise clinical diagnosis, appropriate counseling, and proper management."	"Calmodulin binding to M-type K+ channels assayed by TIRF/FRET in living cells. Calmodulin (CaM) binds to KCNQ2-4 channels within their carboxy termini, where it regulates channel function. The existing data have not resolved the Ca2+ dependence of the interaction between the channels and CaM. We performed glutathione S-transferase (GST)-pull-down assays between purified KCNQ2-4 carboxy termini and CaM proteins to determine the Ca2+ dependence of the interaction in vitro. The assays showed substantial Ca2+ dependence of the interaction of the channels with wild-type (WT) CaM, but not with dominant-negative (DN) CaM. To demonstrate CaM-channel interactions in individual living cells, we performed fluorescence resonance energy transfer (FRET) between ECFP-tagged KCNQ2-4 channels and EYFP-tagged CaM expressed in CHO cells, performed under total internal reflection fluorescence (TIRF) microscopy, in which excitation light only penetrates several hundred nanometres into the cell, thus isolating membrane events. FRET was assayed between the channels and either WT or DN CaM, performed under conditions of normal [Ca2+]i, low [Ca2+]i or high [Ca2+]i induced by empirically optimized bathing solutions. The FRET data suggest a strong Ca2+ dependence for the interaction between WT CaM and KCNQ2, but less so for KCNQ3 and KCNQ4. FRET between all KCNQ2-4 channels and DN CaM was robust, and not significantly Ca2+ dependent. These data show interactions between CaM and KCNQ channels in living cells, and suggest that the interactions between KCNQ2-4 channels and CaM are likely to have Ca2+-dependent and Ca2+-independent components."	"Gene transfer in human vestibular epithelia and the prospects for inner ear gene therapy. Transfer of exogenous genetic material into the mammalian inner ear using viral vectors has been characterized over the last decade. A number of different viral vectors have been shown to transfect the varying cell types of the nonprimate mammalian inner ear. Several routes of delivery have been identified for introduction of vectors into the inner ear while minimizing injury to existing structures and at the same time ensuring widespread distribution of the agent throughout the cochlea and the rest of the inner ear. These studies raise the possibility that gene transfer may be developed as a potential strategy for treating inner ear dysfunction in humans. Furthermore, a recent report showing successful transfection of excised human vestibular epithelia offers proof of principle that viral gene transfer is a viable strategy for introduction and expression of exogenous genetic material to restore function to the inner ear. Human vestibular epithelia were harvested from patients undergoing labyrinthectomy, either for intractable Ménière's disease or vestibular schwannoma resection, and cultured for as long as 5 days. In those experiments, recombinant, multiply-deleted, replication-deficient adenoviral vectors were used to transfect and express a reporter gene as well as the functionally relevant gene, wild-type KCNQ4, a potassium channel gene that when mutated causes the autosomal dominant HL DFNA2.Here, we review the current state of viral-mediated gene transfer in the inner ear and discuss different viral vectors, routes of delivery, and potential applications of gene therapy. Emphasis is placed on experiments demonstrating viral transfection of human inner ear tissue and implications of these findings and for the future of gene therapy in the human inner ear."	"Vascular KCNQ potassium channels as novel targets for the control of mesenteric artery constriction by vasopressin, based on studies in single cells, pressurized arteries, and in vivo measurements of mesenteric vascular resistance. Pressor effects of the vasoconstrictor hormone arginine vasopressin (AVP), observed when systemic AVP concentrations are less than 100 pM, are important for the physiological maintenance of blood pressure, and they are also the basis for therapeutic use of vasopressin to restore blood pressure in hypotensive patients. However, the mechanisms by which circulating AVP induces arterial constriction are unclear. We examined the novel hypothesis that KCNQ potassium channels mediate the physiological vasoconstrictor actions of AVP. Reverse transcriptase polymerase chain reaction revealed expression of KCNQ1, KCNQ4, and KCNQ5 in rat mesenteric artery smooth muscle cells (MASMCs). Whole-cell perforated patch recordings of voltage-sensitive K+ (Kv) currents in freshly isolated MASMCs revealed 1,3-dihydro-1-phenyl-3,3-bis(4-pyridinylmethyl)-2H-indol-2-one (linopirdine)- and 10,10-bis(4-pyridinylmethyl)-9(10H)-anthracenone (XE-991)-sensitive KCNQ currents that were electrophysiologically and pharmacologically distinct from other Kv currents. Suppression of KCNQ currents by AVP (100 pM) was associated with significant membrane depolarization, and it was abolished by the protein kinase C (PKC) inhibitor calphostin C (250 nM). The KCNQ channel blocker linopirdine (10 microM) inhibited KCNQ currents in MASMCs, and it induced constriction of isolated rat mesenteric arteries. The vasoconstrictor responses were not additive when combined with 30 pM AVP, and they were prevented by the L-type Ca2+ channel blocker verapamil. Ethyl-N-[2-amino-6-(4-fluorophenylmethylamino)pyridin-3-yl] carbamic acid (flupirtine) significantly enhanced KCNQ currents, and it reversed constrictor responses to 30 pM AVP. In vivo, i.v. administration of linopirdine induced a dose-dependent increase in mesenteric artery resistance and blood pressure, whereas flupirtine had the opposite effects. We conclude that physiological concentrations of AVP induce mesenteric artery constriction via PKC-dependent suppression of KCNQ currents and L-type Ca2+ channel activation in MASMCs."	"Multiple KCNQ potassium channel subtypes mediate basal anion secretion from the human airway epithelial cell line Calu-3. Potassium channels play an important role in providing a driving force for anion secretion from secretory epithelia. To investigate the role of KCNQ K+ channels in mediating rates of basal anion secretion across the human airway submucosal gland serous cell model, the Calu-3 cell, we examined the expression, localization and function of these channels. In addition to our previous knowledge that Calu-3 cells express KCNQ1, using reverse transcriptase polymerase chain reaction we determined expression of KCNQ3, KCNQ4 and KCNQ5 mRNA transcripts. Immunoblotting detected KCNQ1, KCNQ3 and KCNQ5 proteins, while KCNQ4 protein was not found. Immunolocalization using polarized Calu-3 cell monolayers revealed that KCNQ1 and KCNQ3 were located in or toward the apical membrane of the cells, while KCNQ5 was detected in the apical and lateral membranes. Transepithelial transport studies revealed a small chromanol 293B-sensitive current at the apical membrane, likely KCNQ1. Application of XE991, an inhibitor of all members of the KCNQ channel family, inhibited the basal short-circuit current when applied to both sides of the cells to a greater extent than 293B, with the largest inhibition seen upon apical application. This result was confirmed using linopiridine, a less potent analogue of XE991, and suggests that functional KCNQ3 and KCNQ5, in addition to KCNQ1, are present at the apical aspect of these cells. These results demonstrate the role of a number of KCNQ channel members in controlling basal anion secretion across Calu-3 cells, while also demonstrating the importance of apically located K+ channels in mediating anion secretion in the airway epithelium."	"Nervous system KV7 disorders: breakdown of a subthreshold brake. Voltage-gated K+channels of the K(V)7 (KCNQ) family have been identified in the last 10-15 years by discovering the causative genes for three autosomal dominant diseases: cardiac arrhythmia (long QT syndrome) with or without congenital deafness (KCNQ1), a neonatal epilepsy (KCNQ2 and KCNQ3) and progressive deafness alone (KCNQ4). A fifth member of this gene family (KCNQ5) is not affected in a disease so far. Four genes (KCNQ2-5) are expressed in the nervous system. This review is focused on recent findings on the neuronal K(V)7 channelopathies, in particular on benign familial neonatal seizures (BFNS) and peripheral nerve hyperexcitability (PNH, neuromyotonia, myokymia) caused by KCNQ2 mutations. The phenotypic spectrum associated with KCNQ2 mutations is probably broader than initially thought, as patients with severe epilepsies and developmental delay, or with Rolando epilepsy have been described. With regard to the underlying molecular pathophysiology, it has been shown that mutations with very subtle changes restricted to subthreshold voltages can cause BFNS thereby proving in a human disease model that this is the relevant voltage range for these channels to modulate neuronal firing. The two mutations associated with PNH induce much more severe channel dysfunction with a dominant negative effect on wild type (WT) channels. Finally, K(V)7 channels present interesting targets for new therapeutic approaches to diseases caused by neuronal hyperexcitability, such as epilepsy, neuropathic pain, and migraine. The molecular mechanism of K(V)7 activation by retigabine, which is in phase III clinical testing to treat pharmacoresistant focal epilepsies, has been recently elucidated as a stabilization of the open conformation by binding to the pore region."	"Regulation of neural KCNQ channels: signalling pathways, structural motifs and functional implications. Neural M-type (KCNQ/Kv7) K(+) channels control somatic excitability, bursting and neurotransmitter release throughout the nervous system. Their activity is regulated by multiple signalling pathways. In superior cervical ganglion sympathetic neurons, muscarinic M(1), angiotensin II AT(1), bradykinin B(2) and purinergic P2Y agonists suppress M current (I(M)). Probes of PLC activity show agonists of all four receptors to induce robust PIP(2) hydrolysis. We have grouped these receptors into two related modes of action. One mode involves depletion of phosphatidylinositol 4,5-bisphosphate (PIP(2)) in the membrane, whose interaction with the channels is thought necessary for their function. The other involves IP(3)-mediated intracellular Ca(2+) signals that stimulate PIP(2) synthesis, preventing its depletion, and suppress I(M) via calmodulin. Carbon-fibre amperometry can evaluate the effect of M channel activity on release of neurotransmitter. Consistent with the dominant role of M current in control of neuronal discharge, M channel openers, or blockers, reduced or augmented the evoked release of noradrenaline neurotransmitter from superior cervical ganglion (SCG) neurons, respectively. We seek to localize the subdomains on the channels critical to their regulation by PIP(2). Based on single-channel recordings from chimeras between high-PIP(2) affinity KCNQ3 and low-PIP(2) affinity KCNQ4 channels, we focus on a 57-residue domain within the carboxy-terminus that is a possible PIP(2) binding site. Homology modelling of this domain using the published structure of IRK1 channels as a template predicts a structure very similar to an analogous region in IRK1 channels, and shows a cluster of basic residues in the KCNQ2 domain to correspond to those implicated in PIP(2) regulation of Kir channels. We discuss some important issues dealing with these topics."	"N-(6-chloro-pyridin-3-yl)-3,4-difluoro-benzamide (ICA-27243): a novel, selective KCNQ2/Q3 potassium channel activator. KCNQ2 (Kv7.2) and KCNQ3 (Kv7.3) are voltage-gated K(+) channel subunits that underlie the neuronal M current. In humans, mutations in these genes lead to a rare form of neonatal epilepsy (Biervert et al., 1998; Singh et al., 1998), suggesting that KCNQ2/Q3 channels may be attractive targets for novel antiepileptic drugs. In the present study, we have identified the compound N-(6-chloro-pyridin-3-yl)-3,4-difluoro-benzamide (ICA-27243) as a selective activator of the neuronal M current and KCNQ2/Q3 channels. In SH-SY5Y human neuroblastoma cells, ICA-27243 produced membrane potential hyperpolarization that could be prevented by coadministration with the M-current inhibitors 10,10-bis(4-pyridinylmethyl)-9(10H)-anthracenone dihydrochloride (XE-991) and linopirdine. ICA-27243 enhanced both (86)Rb(+) efflux (EC(50) = 0.2 microM) and whole-cell currents in Chinese hamster ovary cells stably expressing heteromultimeric KCNQ2/Q3 channels (EC(50) = 0.4 microM). Activation of KCNQ2/Q3 channels was associated with a hyperpolarizing shift of the voltage dependence of channel activation (V((1/2)) shift of -19 mV at 10 microM). In contrast, ICA-27243 was less effective at activating KCNQ4 and KCNQ3/Q5 and was selective over a wide range of neurotransmitter receptors and ion channels such as voltage-dependent sodium channels and GABA-gated chloride channels. ICA-27243 (1-10 microM) was found to reversibly suppress seizure-like activity in an ex vivo hippocampal slice model of epilepsy and demonstrated in vivo anticonvulsant activity (ED(50) = 8.4 mg/kg) in the mouse maximal electroshock epilepsy model. In conclusion, ICA-27243 represents the first member of a novel chemical class of selective KCNQ2/Q3 activators with anticonvulsant-like activity in experimental models of epilepsy."	"Molecular pharmacology and therapeutic potential of neuronal Kv7-modulating drugs. The Kv7 potassium channel family encompasses five members (from Kv7.1 to Kv7.5) having distinct expression pattern and functional role. Although Kv7.1 is prevalently expressed in the cardiac muscle, Kv7.2, Kv7.3, Kv7.4, and Kv7.5 are expressed in neural tissue. Mutations in Kv7.2 and/or Kv7.3 genes are responsible for an autosomal-dominant epilepsy of the newborn defined as benign familial neonatal seizures (BFNS), whereas defects in the Kv7.4 gene have been found in families affected by a rare form of nonsyndromic autosomal-dominant hearing loss (DFNA2). Compounds acting as direct activators of neuronal channels formed by Kv7 subunits have been approved for clinical use as analgesics or are in advanced stages of clinical evaluation as anticonvulsants; in addition to these indications, solid preclinical studies reveal their potential usefulness in other diseases characterized by neuronal hyperexcitability. In the present work, we will summarize the available evidence providing proof-of-principles that neuronal Kv7 channels are highly attractive pharmacological targets, review the molecular basis of their peculiar pharmacological sensitivity, introduce some newly synthesized I(KM) openers showing improved pharmacokinetic or pharmacodynamic properties compared to older congeners, and discuss the potential novel therapeutic application of neuronal Kv7 channels in diseases additional to epilepsy."	"A novel KCNQ4 pore-region mutation (p.G296S) causes deafness by impairing cell-surface channel expression. Mutations in the potassium channel gene KCNQ4 underlie DFNA2, a subtype of autosomal dominant progressive, high-frequency hearing loss. Based on a phenotype-guided mutational screening we have identified a novel mutation c.886G&gt;A, leading to the p.G296S substitution in the pore region of KCNQ4 channel. The possible impact of this mutation on total KCNQ4 protein expression, relative surface expression and channel function was investigated. When the G296S mutant was expressed in Xenopus oocytes, electrophysiological recordings did not show voltage-activated K(+) currents. The p.G296S mutation impaired KCNQ4 channel activity in two manners. It greatly reduced surface expression and, secondarily, abolished channel function. The deficient expression at the cell surface membrane was further confirmed in non-permeabilized NIH-3T3 cells transfected with the mutant KCNQ4 tagged with the hemagglutinin epitope in the extracellular S1-S2 linker. Co-expression of mutant and wild type KCNQ4 in oocytes was performed to mimic the heterozygous condition of the p.G296S mutation in the patients. The results showed that the G296S mutant exerts a strong dominant-negative effect on potassium currents by reducing the wild type KCNQ4 channel expression at the cell surface. This is the first study to identify a trafficking-dependent dominant mechanism for the loss of KCNQ4 channel function in DFNA2."	"Math5 expression and function in the central auditory system. The basic helix-loop-helix (bHLH) transcription factor Math5 (Atoh7) is required for retinal ganglion cell (RGC) and optic nerve development. Using Math5-lacZ knockout mice, we have identified an additional expression domain for Math5 outside the eye, in functionally connected structures of the central auditory system. In the adult hindbrain, the cytoplasmic Math5-lacZ reporter is expressed within the ventral cochlear nucleus (VCN), in a subpopulation of neurons that project to medial nucleus of the trapezoid body (MNTB), lateral superior olive (LSO), and lateral lemniscus (LL). These cells were identified as globular and small spherical bushy cells based on their morphology, abundance, distribution within the cochlear nucleus (CN), co-expression of Kv1.1, Kv3.1b and Kcnq4 potassium channels, and projection patterns within the auditory brainstem. Math5-lacZ is also expressed by cochlear root neurons in the auditory nerve. During embryonic development, Math5-lacZ was detected in precursor cells emerging from the caudal rhombic lip from embryonic day (E)12 onwards, consistent with the time course of CN neurogenesis. These cells co-express MafB and are post-mitotic. Math5 expression in the CN was verified by mRNA in situ hybridization, and the identity of positive neurons was confirmed morphologically using a Math5-Cre BAC transgene with an alkaline phosphatase reporter. The hindbrains of Math5 mutants appear grossly normal, with the exception of the CN. Although overall CN dimensions are unchanged, the lacZ-positive cells are significantly smaller in Math5 -/- mice compared to Math5 +/- mice, suggesting these neurons may function abnormally. The auditory brainstem response (ABR) of Math5 mutants was evaluated in a BALB/cJ congenic background. ABR thresholds of Math5 -/- mice were similar to those of wild-type and heterozygous mice, but the interpeak latencies for Peaks II-IV were significantly altered. These temporal changes are consistent with a higher-level auditory processing disorder involving the CN, potentially affecting the integration of binaural sensory information."	"Detection and differentiation of sensorineural hearing loss in mice using auditory steady-state responses and transient auditory brainstem responses. Sensorineural hearing loss (SNHL) comprises hearing disorders with diverse pathologies of the inner ear and the auditory nerve. To date, an unambiguous phenotypical characterization of the specific pathologies in an affected individual remains impossible. Here, we evaluated the use of scalp-recorded auditory steady-state responses (ASSR) and transient auditory brainstem responses (ABR) for differentiating the disease mechanisms underlying sensorineural hearing loss in well-characterized mouse models. We first characterized the ASSR evoked by sinusoidally amplitude-modulated tones in wild-type mice. ASSR were robustly elicited within three ranges of modulation frequencies below 200 Hz, from 200 to 600 Hz and beyond 600 Hz in most recordings. Using phase information we estimated the apparent ASSR latency to be about 3 ms, suggesting generation in the auditory brainstem. Auditory thresholds obtained by automated and visual analysis of ASSR recordings were comparable to those found with tone-burst evoked ABR in the same mice. We then recorded ASSR and ABR from mouse mutants bearing defects of either outer hair cell amplification (KCNQ4-knockout) or inner hair cell synaptic transmission (Bassoon-mutant). Both mutants showed an increase of ASSR and ABR thresholds of approximately 40 dB versus wild-type when investigated at 8 weeks of age. Mice with defective amplification displayed a steep rise of ASSR and ABR amplitudes with increasing sound intensity, presumably reflecting a strong recruitment of synchronously activated neural elements beyond threshold. In contrast, the amplitudes of ASSR and ABR responses of mice with impaired synaptic transmission grew very little with sound intensity. In summary, ASSR allow for a rapid, objective and frequency-specific hearing assessment and together with ABR and otoacoustic emissions can contribute to the differential diagnosis of SNHL."	"Dominant-negative inhibition of M-like potassium conductances in hair cells of the mouse inner ear. Sensory hair cells of the inner ear express multiple physiologically defined conductances, including mechanotransduction, Ca(2+), Na(+), and several distinct K(+) conductances, all of which are critical for normal hearing and balance function. Yet, the molecular underpinnings and their specific contributions to sensory signaling in the inner ear remain obscure. We sought to identify hair-cell conductances mediated by KCNQ4, which, when mutated, causes the dominant progressive hearing loss DFNA2. We used the dominant-negative pore mutation G285S and packaged the coding sequence of KCNQ4 into adenoviral vectors. We transfected auditory and vestibular hair cells of organotypic cultures generated from the postnatal mouse inner ear. Cochlear outer hair cells and vestibular type I cells that expressed the transfection marker, green fluorescent protein, and the dominant-negative KCNQ4 construct lacked the M-like conductances that typify nontransfected control hair cells. As such, we conclude that the M-like conductances in mouse auditory and vestibular hair cells can include KCNQ4 subunits and may also include KCNQ4 coassembly partners. To examine the function of M-like conductances in hair cells, we recorded from cells transfected with mutant KCNQ4 and injected transduction current waveforms in current-clamp mode. Because the M-like conductances were active at rest, they contributed to the very low potassium-selective input resistance, which in turn hyperpolarized the resting potential and significantly attenuated the amplitude of the receptor potential. Modulation of M-like conductances may allow hair cells the ability to control the amplitude of their response to sensory stimuli."	"An in vitro model system to study gene therapy in the human inner ear. The confined fluid-filled labyrinth of the human inner ear presents an opportunity for introduction of gene therapy reagents designed to treat hearing and balance dysfunction. Here we present a novel model system derived from the sensory epithelia of human vestibular organs and show that the tissue can survive up to 5 days in vitro. We generated organotypic cultures from 26 human sensory epithelia excised at the time of labyrinthectomy for intractable Meniere's disease or vestibular schwannoma. We applied multiply deleted adenoviral vectors at titers between 10(5) and 10(8) viral particles/ml directly to the cultures for 4-24 h and examined the tissue 12-96 h post-transfection. We noted robust expression of the exogenous transgene, green fluorescent protein (GFP), in hair cells and supporting cells suggesting both were targets of adenoviral transfection. We also transfected cultures with a vector that carried the genes for GFP and KCNQ4, a potassium channel subunit that causes dominant-progressive hearing loss when mutated. We noted a positive correlation between GFP fluorescence and KCNQ4 immunolocalization. We conclude that our in vitro model system presents a novel and effective experimental paradigm for evaluation of gene therapy reagents designed to restore cellular function in patients who suffer from inner ear disorders."	"Roles of alternative splicing in the functional properties of inner ear-specific KCNQ4 channels. The function of the KCNQ4 channel in the auditory setting is crucial to hearing, underpinned by the finding that mutations of the channel result in an autosomal dominant form of nonsyndromic progressive high frequency hearing loss. The precise function of KCNQ4 in the inner ear has not been established. However, recently we demonstrated that there is differential expression among four splice variants of KCNQ4 (KCNQ4_v1-v4) along the tonotopic axis of the cochlea. Alternative splicing specifies the outcome of functional channels by modifying the amino acid sequences within the C terminus at a site designated as the membrane proximal region. We show that variations within the C terminus of splice variants produce profound differences in the voltage-dependent phenotype and functional expression of the channel. KCNQ4_v4 lacks exons 9-11, resulting in deletion of 54 amino acid residues adjacent to the S6 domain compared with KCNQ4_v1. Consequently, the voltage-dependent activation of KCNQ4_v4 is shifted leftward by approximately 20 mV, and the number of functional channels is increased severalfold compared with KCNQ4_v1. The properties of KCNQ4_v2 and KCNQ4_v3 fall between KCNQ4_v1 and KCNQ4_v4. Because of variations in the calmodulin binding domains of the splice variants, the channels are differentially modulated by calmodulin. Co-expression of these splice variants yielded current magnitudes suggesting that the channels are composed of heterotetramers. Indeed, a dominant negative mutant of KCNQ4_v1 cripples the currents of the entire KCNQ4 channel family. Furthermore, the dominant negative KCNQ4 mutant stifles the activity of KCNQ2-5, raising the possibility of a global disruption of KCNQ channel activity and the ensuing auditory phenotype."	"Thyroid hormone receptor alpha1 is a critical regulator for the expression of ion channels during final differentiation of outer hair cells. Cochlear outer hair cells (OHCs) terminally differentiate prior to the onset of hearing. During this time period, thyroid hormone (TH) dramatically influences inner ear development. It has been shown recently that TH enhances the expression of the motor protein prestin via liganded TH receptor beta (TRbeta) while in contrast the expression of the potassium channel KCNQ4 is repressed by unliganded TRalpha1. These different mechanisms of TH regulation by TRalpha1 or TRbeta prompted us to analyse other ion channels that are required for the final differentiation of OHCs. We analysed the onset of expression of the Ca(2+) channel Ca(V)1.3, and the K(+) channels SK2 and BK and correlated the results with the regulation via TRalpha1 or TRbeta. The data support the hypothesis that proteins expressed in rodents prior to or briefly after birth like Ca(V)1.3 and prestin are either independent of TH (e.g. Ca(V)1.3) or enhanced through TRbeta (e.g. prestin). In contrast, proteins expressed in rodents later than P6 like KCNQ4 ( approximately P6), SK2 ( approximately P9) and BK ( approximately P11) are repressed through TRalpha1. We hypothesise that the precise regulation of expression of the latter genes requires a critical local TH level to overcome the TRalpha1 repression."	"Molecular expression and pharmacological identification of a role for K(v)7 channels in murine vascular reactivity. This study represents a novel characterisation of KCNQ-encoded potassium channels in the vasculature using a variety of pharmacological and molecular tools to determine their role in contractility. Reverse transcriptase polymerase chain reaction (RT-PCR) experiments were undertaken on RNA isolated from mouse aorta, carotid artery, femoral artery and mesenteric artery using primers specific for all known KCNQ genes. RNA isolated from mouse heart and brain were used as positive controls. Pharmacological experiments were undertaken on segments from the same blood vessels to determine channel functionality. Immunocytochemical experiments were performed on isolated myocytes from thoracic aorta. All blood vessels expressed KCNQ1, 4 and 5 with hitherto 'neuronal' KCNQ4 being, surprisingly, the most abundant. The correlated proteins K(v)7.1, K(v)7.4 and K(v)7.5 were identified in the cell membranes of aortic myocytes by immunocytochemistry. Application of three compounds known to activate K(v)7 channels, retigabine (2 -20 microM), flupirtine (20 microM) and meclofenamic acid (20 microM), relaxed vessels precontracted by phenylephrine or 1 mM 4-aminopyridine but had no effect on contractions produced by 60 mM KCl or the K(v)7 channel blocker XE991 (10 microM). All vessels tested contracted upon application of the K(v)7 channel blockers XE991 and linopirdine (0.1-10 microM). Murine blood vessels exhibit a distinctive KCNQ expression profile with 'neuronal' KCNQ4 dominating. The ion channels encoded by KCNQ genes have a crucial role in defining vascular reactivity as K(v)7 channel blockers produced marked contractions whereas K(v)7 channel activators were effective vasorelaxants."	"Contribution of the N-acetyltransferase 2 polymorphism NAT2*6A to age-related hearing impairment. Age-related hearing impairment (ARHI) is the most common sensory impairment in older people, affecting 50% of those aged 80 years. The proportion of older people is increasing in the general population, and as a consequence, the number of people affected with ARHI is growing. ARHI is a complex disorder, with both environmental and genetic factors contributing to the disease. The first studies to elucidate these genetic factors were recently performed, resulting in the identification of the first two susceptibility genes for ARHI, NAT2 and KCNQ4. In the present study, the association between ARHI and polymorphisms in genes that contribute to the defence against reactive oxygen species, including GSTT1, GSTM1 and NAT2, was tested. Samples originated from seven different countries and were combined into two test population samples, the general European population and the Finnish population. Two distinct phenotypes for ARHI were studied, Z(low) and Z(high), representing hearing in the low and high frequencies, respectively. Statistical analysis was performed for single polymorphisms (GSTM1, GSTT1, NAT2*5A, NAT2*6A, and NAT2*7A), haplotypes, and gene-environment and gene-gene interactions. We found an association between ARHI and GSTT1 and GSTM1 in the Finnish population sample, and with NAT2*6A in the general European population sample. The latter finding replicates previously published data. As replication is considered the ultimate proof of true associations in the study of complex disorders, this study provides further support for the involvement of NAT2*6A in ARHI."	"Maturation of ribbon synapses in hair cells is driven by thyroid hormone. Ribbon synapses of inner hair cells (IHCs) undergo developmental maturation until after the onset of hearing. Here, we studied whether IHC synaptogenesis is regulated by thyroid hormone (TH). We performed perforated patch-clamp recordings of Ca2+ currents and exocytic membrane capacitance changes in IHCs of athyroid and TH-substituted Pax8-/- mice during postnatal development. Ca2+ currents remained elevated in athyroid IHCs at the end of the second postnatal week, when it had developmentally declined in wild-type and TH-rescued mutant IHCs. The efficiency of Ca2+ influx in triggering exocytosis of the readily releasable vesicle pool was reduced in athyroid IHCs. Ribbon synapses were formed despite the TH deficiency. However, different from wild type, in which synapse elimination takes place at approximately the onset of hearing, the number of ribbon synapses remained elevated in 2-week-old athyroid IHCs. Moreover, the ultrastructure of these synapses appeared immature. Using quantitative reverse transcription-PCR, we found a TH-dependent developmental upregulation of the mRNAs for the neuronal SNARE (soluble N-ethylmaleimide-sensitive factor attachment protein receptor) proteins, SNAP25 (synaptosomal-associated protein of 25 kDa) and synaptobrevin 1, in the organ of Corti. These molecular changes probably contribute to the improvement of exocytosis efficiency in mature IHCs. IHCs of 2-week-old athyroid Pax8-/- mice maintained the normally temporary efferent innervation. Moreover, they lacked large-conductance Ca2+-activated K+ channels and KCNQ4 channels. This together with the persistently increased Ca2+ influx permitted continued action potential generation. We conclude that TH regulates IHC differentiation and is essential for morphological and functional maturation of their ribbon synapses. We suggest that presynaptic dysfunction of IHCs is a mechanism in congenital hypothyroid deafness."	"Structural insight into KCNQ (Kv7) channel assembly and channelopathy. Kv7.x (KCNQ) voltage-gated potassium channels form the cardiac and auditory I(Ks) current and the neuronal M-current. The five Kv7 subtypes have distinct assembly preferences encoded by a C-terminal cytoplasmic assembly domain, the A-domain Tail. Here, we present the high-resolution structure of the Kv7.4 A-domain Tail together with biochemical experiments that show that the domain is a self-assembling, parallel, four-stranded coiled coil. Structural analysis and biochemical studies indicate conservation of the coiled coil in all Kv7 subtypes and that a limited set of interactions encode assembly specificity determinants. Kv7 mutations have prominent roles in arrhythmias, deafness, and epilepsy. The structure together with biochemical data indicate that A-domain Tail arrhythmia mutations cluster on the solvent-accessible surface of the subunit interface at a likely site of action for modulatory proteins. Together, the data provide a framework for understanding Kv7 assembly specificity and the molecular basis of a distinct set of Kv7 channelopathies."	"Developmental expression of Kcnq4 in vestibular neurons and neurosensory epithelia. Sensory signal transduction of the inner ear afferent neurons and hair cells (HCs) requires numerous ionic conductances. The KCNQ4 voltage-gated M-type potassium channel is thought to set the resting membrane potential in cochlear HCs. Here we describe the spatiotemporal expression patterns of Kcnq4 and the associated alternative splice forms in the HCs of vestibular labyrinth. Whole mount immunodetection, qualitative and quantitative RT-PCR were performed to characterize the expression patterns of Kcnq4 transcripts and proteins. A topographical expression and upregulation of Kcnq4 during development was observed and indicated that Kcnq4 is not restricted to either a specific vestibular structure or cell type, but is present in afferent calyxes, vestibular ganglion neurons, and both type I and type II HCs. Of the four alternative splice variants, Kcnq4_v1 transcripts were the predominant form in the HCs, while Kcnq4_v3 was the major variant in the vestibular neurons. Differential quantitative expression of Kcnq4_v1 and Kcnq4_v3 were respectively detected in the striolar and extra-striolar regions of the utricle and saccule. Analysis of gerbils and rats yielded results similar to those obtained in mice, suggesting that the spatiotemporal expression pattern of Kcnq4 in the vestibular system is conserved among rodents. Analyses of vestibular HCs of Bdnf conditional mutant mice, which are devoid of any innervation, demonstrate that regulation of Kcnq4 expression in vestibular HCs is independent of innervation."	"How to build an inner hair cell: challenges for regeneration. During their development inner hair cells (IHCs), the primary sensory receptors in the mammalian cochlea, undergo a meticulously orchestrated series of changes in the expression of ion channels and in their presynaptic function. This review considers what we currently know about these changes in IHCs of mice and rats, which start hearing 10-12 days after birth. Just after terminal mitosis the IHCs are electrically quiescent and functionally isolated, expressing only small and slow outward K(+) currents in their basolateral membranes. By the first postnatal week the cells have acquired inward Ca(2+) and Na(+) currents that enable them to fire spontaneous action potentials at a time when the cochlea can not yet be stimulated by sound. These action potentials may be essential for normal development and survival of the IHCs themselves and of the afferent nerve fibres that synapse with them. At the onset of hearing the transition to a functionally mature sensory receptor comes about by the expression of a large and fast BK current, I(K,f), a KCNQ4 current, I(K,n), and by changes in the exocytotic machinery. Some implications of this complex developmental programme for the ideal of hair-cell regeneration in the mature mammalian cochlea are discussed."	"Inactivation as a new regulatory mechanism for neuronal Kv7 channels. Voltage-gated K(+) channels of the Kv7 (KCNQ) family have important physiological functions in both excitable and nonexcitable tissue. The family encompasses five genes encoding the channel subunits Kv7.1-5. Kv7.1 is found in epithelial and cardiac tissue. Kv7.2-5 channels are predominantly neuronal channels and are important for controlling excitability. Kv7.1 channels have been considered the only Kv7 channels to undergo inactivation upon depolarization. However, here we demonstrate that inactivation is also an intrinsic property of Kv7.4 and Kv7.5 channels, which inactivate to a larger extent than Kv7.1 channels at all potentials. We demonstrate that at least 30% of these channels are inactivated at physiologically relevant potentials. The onset of inactivation is voltage dependent and occurs on the order of seconds. Both time- and voltage-dependent recovery from inactivation was investigated for Kv7.4 channels. A time constant of 1.47 +/- 0.21 s and a voltage constant of 54.9 +/- 3.4 mV were determined. It was further demonstrated that heteromeric Kv7.3/Kv7.4 channels had inactivation properties different from homomeric Kv7.4 channels. Finally, the Kv7 channel activator BMS-204352 was in contrast to retigabine found to abolish inactivation of Kv7.4. In conclusion, this work demonstrates that inactivation is a key regulatory mechanism of Kv7.4 and Kv7.5 channels."	"The role of S4 charges in voltage-dependent and voltage-independent KCNQ1 potassium channel complexes. Voltage-gated potassium (Kv) channels extend their functional repertoire by coassembling with MinK-related peptides (MiRPs). MinK slows the activation of channels formed with KCNQ1 alpha subunits to generate the voltage-dependent I(Ks) channel in human heart; MiRP1 and MiRP2 remove the voltage dependence of KCNQ1 to generate potassium &quot;leak&quot; currents in gastrointestinal epithelia. Other Kv alpha subunits interact with MiRP1 and MiRP2 but without loss of voltage dependence; the mechanism for this disparity is unknown. Here, sequence alignments revealed that the voltage-sensing S4 domain of KCNQ1 bears lower net charge (+3) than that of any other eukaryotic voltage-gated ion channel. We therefore examined the role of KCNQ1 S4 charges in channel activation using alanine-scanning mutagenesis and two-electrode voltage clamp. Alanine replacement of R231, at the N-terminal side of S4, produced constitutive activation in homomeric KCNQ1 channels, a phenomenon not observed with previous single amino acid substitutions in S4 of other channels. Homomeric KCNQ4 channels were also made constitutively active by mutagenesis to mimic the S4 charge balance of R231A-KCNQ1. Loss of single S4 charges at positions R231 or R237 produced constitutively active MinK-KCNQ1 channels and increased the constitutively active component of MiRP2-KCNQ1 currents. Charge addition to the CO2H-terminal half of S4 eliminated constitutive activation in MiRP2-KCNQ1 channels, whereas removal of homologous charges from KCNQ4 S4 produced constitutively active MiRP2-KCNQ4 channels. The results demonstrate that the unique S4 charge paucity of KCNQ1 facilitates its unique conversion to a leak channel by ancillary subunits such as MiRP2."	"Identification of novel mutations in the KCNQ4 gene of patients with nonsyndromic deafness from Taiwan. Ion channels play important roles in signal transduction and in the regulation of the ionic composition of intra- and extracellular fluids. Mutations in ion channels have long been thought to be responsible for some forms of hearing loss. Defects in KCNQ4, a voltage-gated potassium channel, are a cause of nonsyndromic sensorineural deafness type 2, an autosomal dominant form of progressive hearing loss. We present data of mutation analysis of KCNQ4 from 185 unrelated Taiwanese probands with nonsyndromic hearing loss. The analysis revealed three novel KCNQ4 mutations and many polymorphisms. The prevalence of KCNQ4 gene mutations in this study was 1.62% (3/185). The mutations include a missense mutation (F182L) and two silent mutations (R216R and T501T). The F182L missense mutation was located in the S3 domain of KCNQ4. The F182 residue of KCNQ4 is highly conserved in KCNQ4 among various species and is less conserved in all members of the KCNQ family. In addition, although R216R is a silent mutation and does not alter the content of amino acid residue, the neural network prediction system revealed that it can potentially create a novel splice donor site during transcription. This mutation might affect the protein structure of KCNQ4 and consequently the normal function of the K+ channel. Our data provide the first comprehensive analysis of the KCNQ4 gene in Taiwanese patients with nonsyndromic deafness."	"M-like K+ currents in type I hair cells and calyx afferent endings of the developing rat utricle. Type I vestibular hair cells have large K+ currents that, like neuronal M currents, activate negative to resting potential and are modulatable. In rodents, these currents are acquired postnatally. In perforated-patch recordings from rat utricular hair cells, immature hair cells [younger than postnatal day 7 (P7)] had a steady-state K+ conductance (g(-30)) with a half-activation voltage (V1/2) of -30 mV. The size and activation range did not change in maturing type II cells, but, by P16, type I cells had added a K conductance that was on average fourfold larger and activated much more negatively. This conductance may comprise two components: g(-60) (V1/2 of -60 mV) and g(-80) (V1/2 of -80 mV). g(-80) washed out during ruptured patch recordings and was blocked by a protein kinase inhibitor. M currents can include contributions from KCNQ and ether-a-go-go-related (erg) channels. KCNQ and erg channel blockers both affected the K+ currents of type I cells, with KCNQ blockers being more potent at younger than P7 and erg blockers more potent at older than P16. Single-cell reverse transcription-PCR and immunocytochemistry showed expression of KCNQ and erg subunits. We propose that KCNQ channels contribute to g(-30) and g(-60) and erg subunits contribute to g(-80). Type I hair cells are contacted by calyceal afferent endings. Recordings from dissociated calyces and afferent endings revealed large K+ conductances, including a KCNQ conductance. Calyx endings were strongly labeled by KCNQ4 and erg1 antisera. Thus, both hair cells and calyx endings have large M-like K+ conductances with the potential to control the gain of transmission."	"KCNQ4: a gene for age-related hearing impairment? Age-related hearing impairment (ARHI) is the most common sensory impairment among the elderly. It is a complex disorder influenced by genetic as well as environmental factors. SNPs in a candidate susceptibility gene, KCNQ4, were examined in two independent Caucasian populations. Two quantitative trait locus (QTL) values were investigated: Zhigh and Zlow, a measure of high and respectively low frequency hearing loss. In the first population, the statistical analysis of 23 genotyped SNPs spread across KCNQ4 resulted in significant p-values for two SNPs for Zhigh-SNP9 (NT_004511:g.11244177A &gt; T) and SNP15 (NT_004511:g.11257005C &gt; T; NP_004691:p.Ala259Ala), and one SNP for Zlow-SNP12 (NT_004511:g.11249550A &gt; T). The linkage disequilibrium (LD) structure of KCNQ4 was subsequently determined in a 34-kb region surrounding the significant SNPs, resulting in three LD-blocks. LD-block 1 contains SNP9 and covers an area of 5 kb, LD-block 2 measures 5 kb and surrounds SNP13 (NT_004511:g.11253513A &gt; G) to SNP18 (NT_004511:g.11257509G &gt; A; NP_004691:p.Thr293Thr), and LD-block 3 spans 7 kb. Five tag-SNPs of block 1 and 2, and 2 extra SNPs were subsequently genotyped in the second population. Again, several SNPs were positively associated with ARHI: one SNP (SNP18) for the high frequencies and three SNPs (SNP9, SNP12, and SNP18) for the low frequencies, although only a single SNP (SNP12) resulted in significant p-values in both populations. Nevertheless, the associated SNPs of both populations were all located in the same 13-kb region in the middle of the KCNQ4 gene."	"Functional coassembly of KCNQ4 with KCNE-beta- subunits in Xenopus oocytes. The KCNQ gene family comprises voltage-gated potassium channels expressed in epithelial tissues (KCNQ1, KCNQ5), inner ear structures (KCNQ1, KCNQ4) and the brain (KCNQ2-5). KCNQ4 is expressed in inner and outer hair cells of the inner ear where it influences electrical excitability and cell survival. Accordingly, loss of function mutations of the KCNQ4 gene cause hearing loss in humans and functional k.o.-mice show progressive degeneration of outer hair cells (OHCs). However, characteristic electrophysiological features of the native KCNQ4- carried current I(K,n) in OHCs are not recapitulated by expression of KCNQ4 channels in heterologous expression systems. This might suggest modulation of KCNQ4 by interacting KCNE Beta-subunits, which are known to modify the properties of the closely related KCNQ1. The present study explored whether transcripts of the KCNE isoforms could be identified in OHC mRNA and whether the subunits modulate KCNQ4 function. RT-PCR indeed yielded transcripts of all five KCNEs in OHCs. Coexpression of the KCNE- Beta-subunits with human KCNQ4 in the Xenopus laevis oocyte expression system revealed that all KCNEs modulate KCNQ4 voltage dependence, protein stability and ion selectivity of hKCNQ4 in Xenopus oocytes. The deafness-associated Jervell and Lange- Nielsen syndrome (JLNS) mutation KCNE1(D76N) impairs KCNQ4-function whereas the Romano-Ward syndrome (RWS) mutant KCNE1(S74L), which shows normal hearing in patients, does not impair KCNQ4 channel function. In conclusion, KCNEs are presumably coexpressed with KCNQ4 in hair cells from the organ of Corti and might regulate KCNQ4 functional properties, effects that could be important under physiological and pathophysiological conditions."	"The acrylamide (S)-1 differentially affects Kv7 (KCNQ) potassium channels. The family of Kv7 (KCNQ) potassium channels consists of five members. Kv7.2 and 3 are the primary molecular correlates of the M-current, but also Kv7.4 and Kv7.5 display M-current characteristics. M-channel modulators include blockers (e.g., linopirdine) for cognition enhancement and openers (e.g., retigabine) for treatment of epilepsy and neuropathic pain. We investigated the effect of a Bristol-Myers Squibb compound (S)-N-[1-(3-morpholin-4-yl-phenyl)-ethyl]-3-phenyl-acrylamide [(S)-1] on cloned human Kv7.1-5 potassium channels expressed in Xenopus laevis oocytes. Using two-electrode voltage-clamp recordings we found that (S)-1 blocks Kv7.1 and Kv7.1/KCNE1 currents. In contrast, (S)-1 produced a hyperpolarizing shift of the activation curve for Kv7.2, Kv7.2/Kv7.3, Kv7.4 and Kv7.5. Further, the compound enhanced the maximal current amplitude at all potentials for Kv7.4 and Kv7.5 whereas the combined activation/block of Kv7.2 and Kv7.2/3 was strongly voltage-dependent. The tryptophan residue 242 in S5, known to be crucial for the effect of retigabine, was also shown to be critical for the enhancing effect of (S)-1 and BMS204352. Furthermore, no additive effect on Kv7.4 current amplitude was observed when both retigabine and (S)-1 or BMS204352 were applied simultaneously. In conclusion, (S)-1 differentially affects the Kv7 channel subtypes and is dependent on a single tryptophan for the current enhancing effect in Kv7.4."	"Studies of the effect of ionomycin on the KCNQ4 channel expressed in Xenopus oocytes. The effect of ionomycin on the human KCNQ4 channels expressed in Xenopus leavis oocytes was investigated. KCNQ4 channels expressed in Xenopus oocytes were measured using two-electrode voltage clamp. The activation of KCNQ4 current had slow activation kinetics and low threshold (approximately -50 mV). The expressed current of KCNQ4 showed the half-maximal activation (V(1/2)) was -17.8 mV and blocked almost completely by KCNQ4 channel blockers, linopirdine (300 microM) or bepridil (200 microM). The significant increase of KCNQ4 outward current induced by ionomycin (calcium salt) is about 1.7-fold of control current amplitude at +60 mV and shifted V(1/2) by approximately -8 mV (from -17.8 to -26.0 mV). This effect of ionomycin could be reversed by the further addition of BAPTA-AM (0.3 mM), a membrane-permeable calcium chelator. Furthermore, the increased effect of ionomycin on KCNQ4 current is abolished by pretreatment of linopirdine or bepridil. In contrast, direct cytoplasmic injection of calcium medium (up to 1 mM calcium, 50 nl) did not mimic the effect of ionomycin. In conclusion, the effect of ionomycin on enhancement of KCNQ4 current is independent of intracellular calcium mobilization and possibly acts on intramembrane hydrophobic site of KCNQ4 protein expressed in Xenopus oocytes."	"The contribution of genes involved in potassium-recycling in the inner ear to noise-induced hearing loss. Noise-induced hearing loss (NIHL) is one of the most important occupational diseases and, after presbyacusis, the most frequent cause of hearing loss. NIHL is a complex disease caused by an interaction between environmental and genetic factors. The various environmental factors involved in NIHL have been relatively extensively studied. On the other hand, little research has been performed on the genetic factors responsible for NIHL. To test whether the variation in genes involved in coupling of cells and potassium recycling in the inner ear might partly explain the variability in susceptibility to noise, we performed a case-control association study using 35 SNPs selected in 10 candidate genes on a total of 218 samples selected from a population of 1,261 Swedish male noise-exposed workers. We have obtained significant differences between susceptible and resistant individuals for the allele, genotype, and haplotype frequencies for three SNPs of the KCNE1 gene, and for the allele frequencies for one SNP of KCNQ1 and one SNP of KCNQ4. Patch-clamp experiments in high K+-concentrations using a Chinese hamster ovary (CHO) cell model were performed to investigate the possibility that the KCNE1-p.85N variant (NT_011512.10:g.21483550G&gt;A; NP_00210.2:p.Asp85Asn) was causative for high noise susceptibility. The normalized current density generated by KCNQ1/KCNE1-p.85N channels, thus containing the susceptibility variant, differed significantly from that from wild-type channels. Furthermore, the midpoint potential of KCNQ1/KCNE1-p.85N channels (i.e., the voltage at which 50% of the channels are open) differed from that of wild-type channels. Further genetic and physiological studies will be necessary to confirm these findings."	"Thyroid hormone receptors TRalpha1 and TRbeta differentially regulate gene expression of Kcnq4 and prestin during final differentiation of outer hair cells. Thyroid hormone (TH or T3) and TH-receptor beta (TRbeta) have been reported to be relevant for cochlear development and hearing function. Mutations in the TRbeta gene result in deafness associated with resistance to TH syndrome. The effect of TRalpha1 on neither hearing function nor cochlear T3 target genes has been described to date. It is also uncertain whether TRalpha1 and TRbeta can act simultaneously on different target genes within a single cell. We focused on two concomitantly expressed outer hair cell genes, the potassium channel Kcnq4 and the motor protein prestin Slc26a5. In outer hair cells, TH enhanced the expression of the prestin gene through TRbeta. Simultaneously Kcnq4 expression was activated in the same cells by derepression of TRalpha1 aporeceptors mediated by an identified THresponse element, which modulates KCNQ4 promoter activity. We show that T3 target genes can differ in their sensitivity to TH receptors having the ligand either bound (holoreceptors) or not bound (aporeceptors) within single cells, and suggest a role for TRalpha1 in final cell differentiation."	"The KCNQ channel opener retigabine inhibits the activity of mesencephalic dopaminergic systems of the rat. Homo- and heteromeric complexes of KCNQ channel subunits are the molecular correlate of the M-current, a neuron-specific voltage-dependent K(+) current with a well established role in control of neural excitability. We investigated the effect of KCNQ channel modulators on the activity of dopaminergic neurons in vitro and in vivo in the rat ventral mesencephalon. The firing of dopaminergic neurons recorded in mesencephalic slices was robustly inhibited in a concentration-dependent manner by the KCNQ channel opener N-(2-amino-4-(4-fluorobenzylamino)-phenyl) carbamic acid ethyl ester (retigabine). The effect of retigabine persisted in the presence of tetrodotoxin and simultaneous blockade of GABA(A) receptors, small-conductance calcium-activated K(+) (SK) channels, and hyperpolarization-activated (I(h)) channels, and it was potently reversed by the KCNQ channel blocker 4-pyridinylmethyl-9(10H)-anthracenone (XE991), indicating a direct effect on KCNQ channels. Likewise, in vivo single unit recordings from dopaminergic neurons revealed a prominent reduction in spike activity after systemic administration of retigabine. Furthermore, retigabine inhibited dopamine synthesis and c-Fos expression in the striatum under basal conditions. Retigabine completely blocked the excitatory effect of dopamine D(2) autoreceptor antagonists. Again, the in vitro and in vivo effects of retigabine were completely reversed by preadministration of XE991. Dual immunocytochemistry revealed that KCNQ4 is the major KCNQ channel subunit expressed in all dopaminergic neurons in the mesolimbic and nigrostriatal pathways. Collectively, these observations indicate that retigabine negatively modulates dopaminergic neurotransmission, likely originating from stimulation of mesencephalic KCNQ4 channels."	"High potassium concentrations protect inner and outer hair cells in the newborn rat culture from ischemia-induced damage. Several studies indicate that an increase in the extracellular potassium (K+) concentration is a factor exerting a damaging effect on cochlear hair cells (HCs). The present study was designed to examine the effects of high extracellular K+ concentrations on the HCs under normoxic and ischemic conditions. Organotypic cultures of the organ of Corti of newborn rats were exposed to normoxia and ischemia at K+ concentrations of 5-70 mM in artificial perilymph for 3-4h. The number of IHCs and OHCs in the apical, medial and basal parts of the cochlea were counted 24h later. The work resulted in two main findings: (1) extracellular K+ concentrations of 30-70 mM had no effect on the HCs under normoxic conditions; (2) under ischemic conditions, a clear HC loss, mainly in the medial and basal cochlear parts, was observed at 5 mM K+ as previously reported. In contrast, a high extracellular K+ concentration strongly attenuated the HC loss. This effect nearly completely disappeared by the addition of both eosin, an inhibitor of the plasma membrane calcium ATPase (PMCA), and linopirdine, an inhibitor of the KCNQ4 channel, indicating that a normal activity of the PMCA and the KCNQ4 channels are key factors for HC survival under ischemia and depolarizing conditions."	"Molecular analyses of KCNQ1-5 potassium channel mRNAs in rat and guinea pig inner ears: expression, cloning, and alternative splicing. Expression of neuronal Kcnq gene family transcripts in the inner ear provides further evidence for cochlear M-type currents and for complex molecular heterogeneities of voltage-gated potassium channels composed of various KCNQ subunits and/or alternative splice variants. Furthermore, important roles in regulation of cellular excitability in the auditory system, and hearing disorders related to (hyper)excitability, e.g. tinnitus, are implied. Voltage-gated potassium channels play key roles in hearing, as evidenced by deafness resulting from disruption of genes encoding, for example, KCNQ1 or KCNQ4 subunits. Other members of the Kcnq gene family (Kcnq2, 3, and 5) are the molecular correlates of M currents, which regulate neuronal excitability. The expression of the latter has not previously been thoroughly investigated in the inner ear. The aim of this study was to identify genetic correlates of M currents, previously identified in cochlear hair cells by electrophysiological methods. Expression of Kcnq genes was investigated by reverse transcription-polymerase chain reaction (RT-PCR) using subtype-specific primers with total RNA isolated from whole guinea pig or rat cochlea as template. PCR products were confirmed by direct DNA sequencing. All members of the Kcnq family were expressed in guinea pig and rat cochlea. Cochlear expression of Kcnq2 exhibited two alternatively spliced forms, lacking exons 8, 15a, and 8, 12a, 15a, respectively. Novel molecular sequence data, e.g. guinea pig Kcnq cDNA sequences, were deposited in GenBank (AY684985-AY684990)."	"A novel KCNQ4 one-base deletion in a large pedigree with hearing loss: implication for the genotype-phenotype correlation. Autosomal-dominant, nonsyndromic hearing impairment is clinically and genetically heterogeneous. We encountered a large Japanese pedigree in which nonsyndromic hearing loss was inherited in an autosomal-dominant fashion. A genome-wide linkage study indicated linkage to the DFNA2 locus on chromosome 1p34. Mutational analysis of KCNQ4 encoding a potassium channel revealed a novel one-base deletion in exon 1, c.211delC, which generated a profoundly truncated protein without transmembrane domains (p.Q71fsX138). Previously, six missense mutations and one 13-base deletion, c.211_223del, had been reported in KCNQ4. Patients with the KCNQ4 missense mutations had younger-onset and more profound hearing loss than patients with the 211_223del mutation. In our current study, 12 individuals with the c.211delC mutation manifested late-onset and pure high-frequency hearing loss. Our results support the genotype-phenotype correlation that the KCNQ4 deletions are associated with later-onset and milder hearing impairment than the missense mutations. The phenotypic difference may be caused by the difference in pathogenic mechanisms: haploinsufficiency in deletions and dominant-negative effect in missense mutations."	"Mice with altered KCNQ4 K+ channels implicate sensory outer hair cells in human progressive deafness. KCNQ4 is an M-type K+ channel expressed in sensory hair cells of the inner ear and in the central auditory pathway. KCNQ4 mutations underlie human DFNA2 dominant progressive hearing loss. We now generated mice in which the KCNQ4 gene was disrupted or carried a dominant negative DFNA2 mutation. Although KCNQ4 is strongly expressed in vestibular hair cells, vestibular function appeared normal. Auditory function was only slightly impaired initially. It then declined over several weeks in Kcnq4-/- mice and over several months in mice carrying the dominant negative allele. This progressive hearing loss was paralleled by a selective degeneration of outer hair cells (OHCs). KCNQ4 disruption abolished the I(K,n) current of OHCs. The ensuing depolarization of OHCs impaired sound amplification. Inner hair cells and their afferent synapses remained mostly intact. These cells were only slightly depolarized and showed near-normal presynaptic function. We conclude that the hearing loss in DFNA2 is predominantly caused by a slow degeneration of OHCs resulting from chronic depolarization."	"Regulation of KCNQ4 potassium channel prepulse dependence and current amplitude by SGK1 in Xenopus oocytes. The KCNQ gene family comprises voltage-gated potassium channels expressed in epithelial tissues (KCNQ1, KCNQ5), inner ear structures (KCNQ1, KCNQ4) and the brain (KCNQ2-5). KCNQ4 is expressed in inner and outer hair cells of the inner ear where it determines electrical excitability. Accordingly, loss of function mutations of the KCNQ4 gene cause hearing loss. Several K+ channels including the closely related KCNQ1/KCNE1 channel are regulated by the serum- and glucocorticoid-inducible kinase (SGK) family. The present study utilized the Xenopus oocyte system to explore effects of SGK isoforms on KCNQ4 mediated K(+)-currents: KCNQ4 channels activated in a voltage dependent manner with half maximal activation at -10 mV. The peak channel activity was significantly increased by prepulsing. Coexpression of wild type SGK1 but not coexpression of the inactive mutant (K127N)SGK1 significantly increased current amplitudes (by 67 %) and significantly increased the resting potential of KCNQ4 expressing oocytes. Here we describe for the first time a prepulse dependence of KCNQ4 channels with increased currents after hyperpolarizing prepulses. Coexpression of SGK1 significantly attenuated the effect of prepulsing on peak currents. Mutation of Ser to Asp or Ala in the putative phosphorylation consensus sequence in KCNQ4 significantly decreased the sensitivity to SGK1-coexpression. In conclusion, SGK1 regulates current amplitudes and kinetic properties of KCNQ4 channel activity, an effect sensitive to mutations in the SGK1 consensus sequence of the channel."	"Differential expression of KCNQ4 in inner hair cells and sensory neurons is the basis of progressive high-frequency hearing loss. Human KCNQ4 mutations known as DFNA2 cause non-syndromic, autosomal-dominant, progressive high-frequency hearing loss in which the cellular and molecular basis is unclear. We provide immunofluorescence data showing that Kcnq4 expression in the adult cochlea has both longitudinal (base to apex) and radial (inner to outer hair cells) gradients. The most intense labeling is in outer hair cells at the apex and in inner hair cells as well as spiral ganglion neurons at the base. Spatiotemporal expression studies show increasing intensity of KCNQ4 protein labeling from postnatal day 21 (P21) to P120 mice that is most apparent in inner hair cells of the middle turn. We have identified four alternative splice variants of Kcnq4 in mice. The alternative use of exons 9-11 produces three transcript variants (v1-v3), whereas the fourth variant (v4) skips all three exons; all variants have the same amino acid sequence at the C termini. Both reverse transcription-PCR and quantitative PCR analyses demonstrate that these variants have differential expression patterns along the length of the mouse organ of Corti and spiral ganglion neurons. Our expression data suggest that the primary defect leading to high-frequency loss in DFNA2 patients may be attributable to high levels of the dysfunctional Kcnq4_v3 variant in the spiral ganglion and inner hair cells in the basal hook region. Progressive hearing loss associated with aging may result from an increasing mutational load expansion toward the apex in inner hair cells and spiral ganglion neurons."	"Hypoosmotic cell swelling as a novel mechanism for modulation of cloned HCN2 channels. This work demonstrates cell swelling as a new regulatory mechanism for the cloned hyperpolarization-activated, cyclic nucleotide-gated channel 2 (HCN2). HCN2 channels were coexpressed with aquaporin1 in Xenopus laevis oocytes and currents were monitored using a two-electrode voltage-clamp. HCN2 channels were activated by hyperpolarization to -100 mV and the currents were measured before and during hypoosmotic cell swelling. Cell swelling increased HCN2 currents by 30% without changing the kinetics of the currents. Injection of 50 nl intracellular solution resulted in a current increase of 20%, indicating that an increase in cell volume also under isoosmotic conditions may lead to activation of HCN2. In the absence of aquaporin1 only negligible changes in oocyte cell volume occur during exposure to hypoosmotic media and no significant change in HCN2 channel activity was observed during perfusion with hypoosmotic media. This indicates that cell swelling and not a change in ionic strength of the media, caused the observed swelling-induced increase in current. The increase in HCN2 current induced by cell swelling could be abolished by cytochalasin D treatment, indicating that an intact F-actin cytoskeleton is a prerequisite for the swelling-induced current."	"Structural requirements for differential sensitivity of KCNQ K+ channels to modulation by Ca2+/calmodulin. Calmodulin modulation of ion channels has emerged as a prominent theme in biology. The sensitivity of KCNQ1-5 K+ channels to modulation by Ca2+/calmodulin (CaM) was studied using patch-clamp, Ca2+ imaging, and biochemical and pharmacological approaches. Coexpression of CaM in Chinese hamster ovary (CHO) cells strongly reduced currents of KCNQ2, KCNQ4, and KCNQ5, but not KCNQ1 or KCNQ3. In simultaneous current recording/Ca2+ imaging experiments, CaM conferred Ca2+ sensitivity to KCNQ4 and KCNQ5, but not to KCNQ1, KCNQ3, or KCNQ1/KCNE1 channels. A chimera constructed from the carboxy terminus of KCNQ4 and the rest KCNQ1 displayed Ca2+ sensitivity similar to KCNQ4. Chimeras constructed from different lengths of the KCNQ4 carboxy terminal and the rest KCNQ3 localized a region that confers sensitivity to Ca2+/CaM. Lobe-specific mutations of CaM revealed that its amino-terminal lobe mediates the Ca2+ sensitivity of the KCNQ/CaM complex. The site of CaM action within the channel carboxy terminus overlaps with that of the KCNQ opener N-ethylmaleimide (NEM). We found that CaM overexpression reduced NEM augmentation of KCNQ2, KCNQ4, and KCNQ5, and NEM pretreatment reduced Ca2+/CaM-mediated suppression of M current in sympathetic neurons by bradykinin. We propose that two functionally distinct types of carboxy termini underlie the observed differences among this channel family."	"Molecular determinants of KCNQ (Kv7) K+ channel sensitivity to the anticonvulsant retigabine. Epilepsy is caused by an electrical hyperexcitability in the CNS. Because K+ channels are critical for establishing and stabilizing the resting potential of neurons, a loss of K+ channels could support neuronal hyperexcitability. Indeed, benign familial neonatal convulsions, an autosomal dominant epilepsy of infancy, is caused by mutations in KCNQ2 or KCNQ3 K+ channel genes. Because these channels contribute to the native muscarinic-sensitive K+ current (M current) that regulates excitability of numerous types of neurons, KCNQ (Kv7) channel activators would be effective in epilepsy treatment. A compound exhibiting anticonvulsant activity in animal seizure models is retigabine. It specifically acts on the neuronally expressed KCNQ2-KCNQ5 (Kv7.2-Kv7.5) channels, whereas KCNQ1 (Kv7.1) is not affected. Using the differential sensitivity of KCNQ3 and KCNQ1 to retigabine, we constructed chimeras to identify minimal segments required for sensitivity to the drug. We identified a single tryptophan residue within the S5 segment of KCNQ3 and also KCNQ2, KCNQ4, and KCNQ5 as crucial for the effect of retigabine. Furthermore, heteromeric KCNQ channels comprising KCNQ2 and KCNQ1 transmembrane domains (attributable to transfer of assembly properties from KCNQ3 to KCNQ1) are retigabine insensitive. Transfer of the tryptophan into the KCNQ1 scaffold resulted in retigabine-sensitive heteromers, suggesting that the tryptophan is necessary in all KCNQ subunits forming a functional tetramer to confer drug sensitivity."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Phenotype determination guides swift genotyping of a DFNA2/KCNQ4 family with a hot spot mutation (W276S). Genotype a family trait with autosomal dominant nonsyndromic sensorineural hearing impairment guided only by the phenotype. Family study. Tertiary referral center. Fifteen family members. In the first phase, sequence analysis was performed on DNA isolated from buccal swabs of the proband and her daughter, guided by the phenotype based on audiometric data that were already available. After detection of the W276S missense mutation in the KCNQ4 gene in both patients, this finding was confirmed in the other affected family members. All participants completed a questionnaire, were clinically examined, and underwent standard pure-tone audiometry. The results were analyzed to refine the phenotypic features of the family trait. All clinically affected participants were carriers of the W276S hotspot mutation in exon 5 of the KCNQ4 gene on chromosome 1p34. Refined phenotypic features confirmed previously described phenotypes of DFNA2 families. Phenotype determination can be cost saving and very effective in detecting the genotype of autosomal dominant nonsyndromic hearing impairment, especially when phenotype analyses can be performed on data that are already available or easily collected."	"Regulation of the voltage-gated potassium channel KCNQ4 in the auditory pathway. The potassium channel KCNQ4, expressed in the mammalian cochlea, has been associated tentatively with an outer hair cell (OHC) potassium current, I(K,n), a current distinguished by an activation curve shifted to exceptionally negative potentials. Using CHO cells as a mammalian expression system, we have examined the properties of KCNQ4 channels under different phosphorylation conditions. The expressed current showed the typical KCNQ4 voltage-dependence, with a voltage for half-maximal activation (V(1/2)) of -25 mV, and was blocked almost completely by 200 microM linopirdine. Application of 8-bromo-cAMP or the catalytic sub-unit of PKA shifted V(1/2) by approximately -10 and -20 mV, respectively. Co-expression of KCNQ4 and prestin, the OHC motor protein, altered the voltage activation by a further -15 mV. Currents recorded with less than 1 nM Ca(2+) in the pipette ran down slowly (12% over 5 min). Buffering the pipette Ca(2+) to 100 nM increased the run-down rate sevenfold. Exogenous PKA in the pipette prevented the effect of elevated [Ca(2+)](i) on run-down. Inhibition of the calcium binding proteins calmodulin or calcineurin by W-7 or cyclosporin A, respectively, also prevented the calcium-dependent rapid run-down. We suggest that KCNQ4 phosphorylation via PKA and coupling to a complex that may include prestin can lead to the negative activation and the negative resting potential found in adult OHCs."	"Differences between the negatively activating potassium conductances of Mammalian cochlear and vestibular hair cells. Cochlear and type I vestibular hair cells of mammals express negatively activating potassium (K(+)) conductances, called g(K,n) and g(K,L) respectively, which are important in setting the hair cells' resting potentials and input conductances. It has been suggested that the channels underlying both conductances include KCNQ4 subunits from the KCNQ family of K(+) channels. In whole-cell recordings from rat hair cells, we found substantial differences between g(K,n) and g(K,L) in voltage dependence, kinetics, ionic permeability, and stability during whole-cell recording. Relative to g(K,L), g(K,n) had a significantly broader and more negative voltage range of activation and activated with less delay and faster principal time constants over the negative part of the activation range. Deactivation of g(K,n) had an unusual sigmoidal time course, while g(K,L) deactivated with a double-exponential decay. g(K,L), but not g(K,n), had appreciable permeability to Cs(+). Unlike g(K,L), g(K,n)'s properties did not change (&quot;wash out&quot;) during the replacement of cytoplasmic solution with pipette solution during ruptured-patch recordings. These differences in the functional expression of g(K,n) and g(K,L) channels suggest that there are substantial differences in their molecular structure as well."	"Linopirdine blocks alpha9alpha10-containing nicotinic cholinergic receptors of cochlear hair cells. Studies of the electrophysiological response to acetylcholine (ACh) in mammalian outer hair cells (OHCs) are hindered by the presence of a large potassium current, I(K,n), most likely mediated by channels containing the KCNQ4 subunit. Since I(K,n) can be blocked by linopirdine, cholinergic effects might be better revealed in the presence of this compound. The aim of the present work was to study the effects of linopirdine on the ACh-evoked responses through alpha9alpha10-containing native and recombinant nicotinic cholinergic receptors. Responses to ACh were blocked by linopirdine in both OHCs and inner hair cells (IHCs) of rats at postnatal days 21-27 (OHCs) and 9-11 (IHCs). In addition, linopirdine blocked responses of recombinant alpha9alpha10 nicotinic cholinergic receptors (nAChRs) in a concentration-dependent manner with an IC(50) of 5.2 microM. Block by linopirdine was readily reversible, voltage independent, and surmountable at high concentrations of ACh, thus suggestive of a competitive type of interaction with the receptor. The present results contribute to the pharmacological characterization of alpha9alpha10-containing nicotinic receptors and indicate that linopirdine should be used with caution when analyzing the cholinergic sensitivity of cochlear hair cells."	"Deletion of the Ca2+-activated potassium (BK) alpha-subunit but not the BKbeta1-subunit leads to progressive hearing loss. The large conductance voltage- and Ca2+-activated potassium (BK) channel has been suggested to play an important role in the signal transduction process of cochlear inner hair cells. BK channels have been shown to be composed of the pore-forming alpha-subunit coexpressed with the auxiliary beta1-subunit. Analyzing the hearing function and cochlear phenotype of BK channel alpha-(BKalpha-/-) and beta1-subunit (BKbeta1-/-) knockout mice, we demonstrate normal hearing function and cochlear structure of BKbeta1-/- mice. During the first 4 postnatal weeks also, BKalpha-/- mice most surprisingly did not show any obvious hearing deficits. High-frequency hearing loss developed in BKalpha-/- mice only from approximately 8 weeks postnatally onward and was accompanied by a lack of distortion product otoacoustic emissions, suggesting outer hair cell (OHC) dysfunction. Hearing loss was linked to a loss of the KCNQ4 potassium channel in membranes of OHCs in the basal and midbasal cochlear turn, preceding hair cell degeneration and leading to a similar phenotype as elicited by pharmacologic blockade of KCNQ4 channels. Although the actual link between BK gene deletion, loss of KCNQ4 in OHCs, and OHC degeneration requires further investigation, data already suggest human BK-coding slo1 gene mutation as a susceptibility factor for progressive deafness, similar to KCNQ4 potassium channel mutations."	"Dual phosphorylations underlie modulation of unitary KCNQ K(+) channels by Src tyrosine kinase. Src tyrosine kinase suppresses KCNQ (M-type) K(+) channels in a subunit-specific manner representing a mode of modulation distinct from that involving G protein-coupled receptors. We probed the molecular and biophysical mechanisms of this modulation using mutagenesis, biochemistry, and both whole-cell and single channel modes of patch clamp recording. Immunoprecipitation assays showed that Src associates with KCNQ2-5 subunits but phosphorylates only KCNQ3-5. Using KCNQ3 as a background, we found that mutation of a tyrosine in the amino terminus (Tyr-67) or one in the carboxyl terminus (Tyr-349) abolished Src-dependent modulation of heterologously expressed KCNQ2/3 heteromultimers. The tyrosine phosphorylation was much weaker for either the KCNQ3-Y67F or KCNQ3-Y349F mutants and wholly absent in the KCNQ3-Y67F/Y349F double mutant. Biotinylation assays showed that Src activity does not alter the membrane abundance of channels in the plasma membrane. In recordings from cell-attached patches containing a single KCNQ2/3 channel, we found that Src inhibits the open probability of the channels. Kinetic analysis was consistent with the channels having two discrete open times and three closed times. Src activity reduced the durations of the longest open time and lengthened the longest closed time of the channels. The implications for the mechanisms of channel regulation by the dual phosphorylations on both channel termini are discussed."	"Single-channel analysis of KCNQ K+ channels reveals the mechanism of augmentation by a cysteine-modifying reagent. The cysteine-modifying reagent N-ethylmaleimide (NEM) is known to augment currents from native M-channels in sympathetic neurons and cloned KCNQ2 channels. As a probe for channel function, we investigated the mechanism of NEM action and subunit specificity of cloned KCNQ2-5 channels expressed in Chinese hamster ovary cells at the whole-cell and single-channel levels. Biotinylation assays and total internal reflection fluorescence microscopy indicated that NEM action is not caused by increased trafficking of channels to the membrane. At saturating voltages, whole-cell currents of KCNQ2, KCNQ4, and KCNQ5 but not KCNQ3 were augmented threefold to fourfold by 50 microm NEM, and their voltage dependencies were negatively shifted by 10-20 mV. Unitary conductances of KCNQ2 and KCNQ3 (6.2 and 8.5 pS, respectively) were much higher that those of KCNQ4 and KCNQ5 (2.1 and 2.2 pS, respectively). Surprisingly, the maximal open probability (P(o)) of KCNQ3 was near unity, much higher than that of KCNQ2, KCNQ4, and KCNQ5. NEM increased the P(o) of KCNQ2, KCNQ4, and KCNQ5 by threefold to fourfold but had no effect on their unitary conductances, suggesting that the increase in macroscopic currents can be accounted for by increases in P(o). Analysis of KCNQ3/4 chimeras determined the C terminus to be responsible for the differential maximal P(o), channel expression, and NEM action between the two channels. To further localize the site of NEM action, we mutated three cysteine residues in the C terminus of KCNQ4. The C519A mutation alone ablated most of the augmentation by NEM, suggesting that NEM acts via alkylation of this residue."	"Characterization of potassium channel modulators with QPatch automated patch-clamp technology: system characteristics and performance. Planar silicon chips with 1-2-microm etched holes (average resistance: 2.04 +/- 0.02 MOmega in physiological buffer, n = 274) have been developed for patch-clamp recordings of whole-cell currents from cells in suspension. An automated 16-channel parallel screening system, QPatch 16, has been developed using this technology. A single-channel prototype of the QPatch system was used for validation of the patch-clamp chip technology. We present here data on the quality of patch-clamp recordings and from actual drug screening studies of human potassium channels expressed in cultured cell lines. Using Chinese hamster ovary (CHO) and human embryonic kidney cells (HEK), gigaseals of 4.1 +/- 0.4 GOmega (n = 146) and high-quality whole-cell current recordings were obtained from hERG and KCNQ4 potassium channels. Success rates for gigaseal recordings varied from 40 to 95%, and 67% of the whole-cell configurations lasted for &gt;20 min. Cells were maintained in suspension up to 4 h in a cell storage facility that is integrated in the QPatch 16. No decline in patchability was observed during this time course. A series of screens was conducted with known inhibitors of the hERG and KCNQ4 potassium channels. Dose-response relationship characterizations of verapamil and rBeKm-1 blockage of hERG currents provided IC(50) values similar to values reported in the literature."	"Modulation of KCNQ4 channel activity by changes in cell volume. KCNQ4 channels expressed in HEK 293 cells are sensitive to cell volume changes, being activated by swelling and inhibited by shrinkage, respectively. The KCNQ4 channels contribute significantly to the regulatory volume decrease (RVD) process following cell swelling. Under isoosmotic conditions, the KCNQ4 channel activity is modulated by protein kinases A and C, G protein activation, and a reduction in the intracellular Ca2+ concentration, but these signalling pathways are not responsible for the increased channel activity during cell swelling."	"The therapeutic potential of neuronal KCNQ channel modulators. Neuronal KCNQ (Kv7) channels (KCNQ2-5 or Kv7.2-7.5, disclosed to date) were discovered by virtue of their homology with a known cardiac channel involved in long QT syndrome (KvLQT or KCNQ1, Kv7.1) and first disclosed in 1998. The involvement of KCNQ2 (Kv7.2) and KCNQ3 (Kv7.3) in a benign idiopathic neonatal epilepsy, KCNQ4 (Kv7.4) in a form of congenital deafness, and the discovery that neuronal KCNQ heteromultimers were among the molecular substrates of M-channels, resulted in a high level of interest for potential drug development strategies. A number of small-molecule modulators were quickly identified, including openers or activators such as the antiepileptic drug candidate retigabine and the structurally-related analgesic drug flupirtine (Katadolon trade mark Asta Medica), and a group of KCNQ channel inhibitors/blockers originally developed for cognition enhancement. All of these data have suggested a rich target profile for modulators of neuronal KCNQ channels, including a variety of neuronal hyperexcitability disorders and conditions for openers, such as the epilepsies, acute pain, neuropathic pain, migraine pain and some neurodegenerative and psychiatric disorders. KCNQ blockers could likewise have utility in disorders characterised by neuronal hypoactivity, including cognition enhancement and perhaps disorders of mood. Emerging patent literature suggests significant interest in neuronal KCNQ modulation in the pharmaceutical industry and significant chemical diversity concerning KCNQ modulation."	"Localization of KCNQ5 in the normal and epileptic human temporal neocortex and hippocampal formation. The KCNQ family of voltage-dependent non-inactivating K+ channels is composed of five members, four of which (KCNQ2-5) are expressed in the CNS and are responsible for the M-current. Mutations in either KCNQ2 or KCNQ3 lead to a hereditary form of dominant generalized epilepsy. Using specific antisera to the KCNQ2, KCNQ3 and KCNQ5 subunits, we found that KCNQ3 co-immunoprecipitated with KCNQ2 and KCNQ5 subunits, but no association was detected between KCNQ2 and KCNQ5. Intense KCNQ5 immunoreactivity was found to be widely distributed throughout the temporal neocortex and the hippocampal formation. In these structures, both pyramidal and non-pyramidal neurons and a population of glial cells in the white matter expressed the KCNQ5 subunit. In the sclerotic areas of the CA fields of epileptic patients, a marked loss of KCNQ5 immunoreactive pyramidal neurons was found in relation with the loss of neurons in these regions. However, in the regions adjacent to the sclerotic areas, the distribution and intensity of KCNQ5 immunostaining was apparently normal. The widespread distribution of KCNQ5 subunits, its persistence in pharmacoresistant epilepsy, along with the significant role of the M-current in the control of neuronal excitability, makes this protein a possible target for the development of anticonvulsant drugs."	"Voltage-independent KCNQ4 currents induced by (+/-)BMS-204352. The compound BMS-204352 has been targeted for use against acute ischemic stroke, due to its activation of the large-conductance Ca2+-activated K-channel (BK). We have previously described that the racemate (+/-)BMS-204352 reversibly modulates KCNQ4 voltage dependency. Here we show that (+/-)BMS-204352 also induces a voltage-independent KCNQ4 current. The channels were stably expressed in human embryonic kidney cells (HEK293), and investigated by use of the whole-cell mode of the patch-clamp technique. (+/-)BMS-204352 was applied extracellularly (10 microM) in order to precipitate the robust appearance of the voltage-independent current. The voltage-independent KCNQ4 currents were recorded as instantaneous increases in currents upon hyperpolarizing or depolarizing voltage steps elicited from holding potentials of -90 or -110 mV. The voltage-independent current reversed at the equilibrium potential for potassium ( E(K)), hence was carried by a K+ conductance, and was blocked by the selective KCNQ channel blockers XE991 and linopirdine. Similar results were obtained with KCNQ4 channels transiently transfected into Chinese hamster ovary cells (CHO). When (+/-)BMS-204352 was applied to stably expressed BK channels, only the voltage dependency was modulated. Retigabine, the classic activator of KCNQ channels, did not induce voltage-independent currents. Our data indicate that KCNQ4 channels may conduct voltage-dependent and voltage-independent currents in the presence of (+/-)BMS-204352."	"Functional coupling between heterologously expressed dopamine D(2) receptors and KCNQ channels. Activation of KCNQ potassium channels by stimulation of co-expressed dopamine D(2) receptors was studied electrophysiologically in Xenopus laevis oocytes and in mammalian cells. To address the specificity of the interaction between D(2)-like receptors and KCNQ channels, combinations of KCNQ1-5 channels and D(2)-like receptors (D(2L), D(3), and D(4)) were investigated in Xenopus oocytes. Activation of either receptor with the selective D(2)-like receptor agonist quinpirole (100 nM) stimulated all the KCNQ currents, independently of the subunit combination, indicating a common pathway of receptor-channel interaction. The KCNQ4 current was investigated in further detail and was increased by 19.9+/-1.6% ( n=20) by D(2L) receptor stimulation. The effect could be mimicked by injection of GTPgammaS and prevented by injection of Bordetella pertussis toxin, indicating that channel stimulation was mediated via a G protein of the G(alphai/o) subtype. Cells of the human neuroblastoma line SH-SY5Y were co-transfected transiently with KCNQ4 and D(2L) receptors. Stimulation of D(2L) receptors increased the KCNQ4 current ( n=6) as determined in whole-cell patch-clamp recordings. The specificity of the dopaminergic activation of the KCNQ channels was confirmed by co-expression of other neuronal K(+) channels (BK, K(V)1.1, and K(V)4.3) with the D(2L) receptor in Xenopus oocytes. None of these K(+) channels responded to stimulation of the D(2L) receptor. In the mammalian brain, dopamine D(2) receptors and KCNQ channels co-localise postsynaptically in several brain regions, so modulation of neuronal excitability by dopamine release could in part be mediated via an effect on KCNQ channels."	"Degeneration of sensory outer hair cells following pharmacological blockade of cochlear KCNQ channels in the adult guinea pig. In the inner ear, hair cell function is inextricably linked with intracellular potassium homeostasis. KCNQ potassium channels may play an important role by preventing accumulation of potassium in the hair cells. Linopirdine, a tool useful in targeting native or heterologous KCNQ channels, was used to study the role of KCNQ channels in the guinea pig cochlea. When perfused into intact cochlea, linopirdine transiently increases the summating potential and endocochlear potential, suggesting that it alters K+ homeostasis. The concomitant decrease in cochlear microphonic potential and distortion product otoacoustic emission amplitude indicates that linopirdine has an effect on the outer hair cells (OHCs). To determine the pathological consequences of the inhibition of cochlear KCNQ channels, we developed a hearing loss model based on a chronic intracochlear perfusion of linopirdine via an osmotic minipump. Ultrastructural analysis reveals that KCNQ channel blockade leads to OHC degeneration. Together, these results demonstrate that KCNQ channels, most probably of the KCNQ4 subtype, are crucial for the function and survival of sensory OHCs. Clinically, KCNQ4 channel dysfunction is known to be associated with the DFNA2 form of nonsyndromic dominant deafness. Our study shows that OHC KCNQ4 dysfunction could contribute to the early (40dB) hearing loss, but not for the profound deafness observed at the final stage of this disease."	"[KCNQ4 gene mutations affected a pedigree with autosomal dominant hereditary hearing loss]. To investigate if the KCNQ4 gene contributes to a Chinese non-syndromic hearing loss pedigree and to detect the gene mutations in the pedigree using candidate approach. PCR-SSCP and clone sequencing were performed to identify the mutations and polymorphism in PCR products of KCNQ4 coding sequence in the six-generations pedigree of autosomal dominant hereditary hearing loss. Mutations and polymorphism detection were performed on the KCNQ4 coding sequence in 36 family members of the pedigree. A molecular polymorphism marker located in the exon2 and exon3 intron sequence, which resulted from a copy variation of 47 base pairs insertion or deletion, was found in KCNQ4 sequence. A new molecular polymorphism marker with different genotypes was proved to locate at the intron sequence between at exon2 and exon3. The correlation between genotype and phenotype was analyzed. Deaf individuals were accompanied by the increase of the intron copies in the family. These findings suggest that the changes of the copies of intron between exon2 and exon3 of KCNQ4 might be a specific marker for the hearing loss of the pedigree."	"M-channels: neurological diseases, neuromodulation, and drug development. Efforts in basic neuroscience and studies of rare hereditary neurological diseases are partly motivated by the hope that such work can lead to better understanding of and treatments for the common neurological disorders. An example is the progress that has resulted from identification of the genes that cause benign familial neonatal convulsions (BFNCs). Benign familial neonatal convulsions is a rare idiopathic, generalized epilepsy syndrome. In 1998, geneticists discovered that BFNC is caused by mutations in a novel potassium channel subunit, KCNQ2. Further work quickly revealed the sequences of 3 related brain channel genes KCNQ3, KCNQ4, and KCNQ5. Mutations in 2 of these genes were shown to cause BFNC (KCNQ3) and hereditary deafness (KCNQ4). Physiologists soon discovered that the KCNQ genes encoded subunits of the M-channel, a widely expressed potassium channel that mediates effects of modulatory neurotransmitters and controls repetitive neuronal discharges. Finally, pharmacologists discovered that the biological activities of 3 classes of compounds in development as treatments for Alzheimer disease, epilepsy, and stroke were mediated in part by effects on brain KCNQ channels. Cloned human KCNQ channels can now be used for high-throughput screening of additional drug candidates. Ongoing studies in humans and animal models will refine our understanding of KCNQ channel function and may reveal additional targets for therapeutic manipulation."	"KCNQ1 channels sense small changes in cell volume. Many important physiological processes involve changes in cell volume, e.g. the transport of salt and water in epithelial cells and the contraction of cardiomyocytes. In this study, we show that voltage-gated KCNQ1 channels, which are strongly expressed in epithelial cells or cardiomyocytes, and KCNQ4 channels, expressed in hair cells and the auditory tract, are tightly regulated by small cell volume changes when co-expressed with aquaporin 1 water-channels (AQP1) in Xenopus oocytes. The KCNQ1 and KCNQ4 current amplitudes precisely reflect the volume of the oocytes. By contrast, the related KCNQ2 and KCNQ3 channels, which are prominently expressed in neurons, are insensitive to cell volume changes. The sensitivity of the KCNQ1 and KCNQ4 channels to cell volume changes is independent of the presence of the auxiliary KCNE1-3 subunits, although modulated by KCNE1 in the case of KCNQ1. Incubation of the oocytes in cytochalasin D and experiments with truncated KCNQ1 channels suggest that KCNQ1 channels sense cell volume changes through interactions between the cytoskeleton and the N-terminus of the channel protein. From our results we propose that KCNQ1 and KCNQ4 channels play an important role in cell volume control, e.g. during transepithelial transport of salt and water."	"Resting potential and submembrane calcium concentration of inner hair cells in the isolated mouse cochlea are set by KCNQ-type potassium channels. Cochlear inner hair cells (IHCs) transduce sound-induced vibrations into a receptor potential (RP) that controls afferent synaptic activity and, consequently, frequency and timing of action potentials in the postsynaptic auditory neurons. The RP is thought to be shaped by the two voltage-dependent K+ conductances, I(K,f) and I(K,s), that are carried by large-conductance Ca2+- and voltage-dependent K+ (BK)- and K(V)-type K+ channels. Using whole-cell voltage-clamp recordings in the acutely isolated mouse cochlea, we show that IHCs display an additional K+ current that is active at the resting membrane potential (-72 mV) and deactivates on hyperpolarization. It is potently blocked by the KCNQ-channel blockers linopirdine and XE991 but is insensitive to tetraethylammonium and 4-aminopyridine, which inhibit I(K,f) and I(K,s), respectively. Single-cell PCR and immunocytochemistry showed expression of the KCNQ4 subunit in IHCs. In current-clamp experiments, block of the KCNQ current shifted the resting membrane potential by approximately 7 to -65 mV and led to a significant activation of BK channels. Using BK channels as an indicator for submembrane intracellular Ca2+ concentration ([Ca2+]i), it is shown that the shift in IHC resting potential observed after block of the KCNQ channels leads to an increase in [Ca2+]i to values &gt; or =1 microm. In conclusion, KCNQ channels set the resting membrane potential of IHCs in the isolated organ of Corti and thus maintain [Ca2+]i at low levels. Destabilization of the resting potential and increase in [Ca2+]i, as may result from impaired KCNQ4 function in IHCs, provide a novel explanation for the progressive hearing loss (DFNA2) observed in patients with defective KCNQ4 genes."	"A carboxy-terminal domain determines the subunit specificity of KCNQ K+ channel assembly. Mutations in KCNQ K(+) channel genes underlie several human pathologies. KCNQ alpha-subunits form either homotetramers or hetero-oligomers with a restricted subset of other KCNQ alpha-subunits or with KCNE beta-subunits. KCNQ1 assembles with KCNE beta-subunits but not with other KCNQ alpha-subunits. By contrast, KCNQ3 interacts with KCNQ2, KCNQ4 and KCNQ5. Using a chimaeric strategy, we show that a cytoplasmic carboxy-terminal subunit interaction domain (sid) suffices to transfer assembly properties between KCNQ3 and KCNQ1. A chimaera (KCNQ1-sid(Q3)) carrying the si domain of KCNQ3 within the KCNQ1 backbone interacted with KCNQ2, KCNQ3 and KCNQ4 but not with KCNQ1. This interaction was shown by enhancement of KCNQ2 currents, testing for dominant-negative effects of pore mutants, determining its effects on surface expression and co-immunoprecipitation experiments. Conversely, a KCNQ3-sid(Q1) chimaera no longer affects KCNQ2 but interacts with KCNQ1. We conclude that the si domain suffices to determine the subunit specificity of KCNQ channel assembly."	"Subunit-specific modulation of KCNQ potassium channels by Src tyrosine kinase. We studied regulation by c-Src tyrosine kinase (Src) of KCNQ1-5 channels heterologously expressed in Chinese hamster ovary (CHO) cells and of native M current in rat sympathetic neurons. Using whole-cell patch clamp, we found that Src modulates currents from KCNQ3, KCNQ4, and KCNQ5 homomultimers, KCNQ2/3 heteromultimers and native M current, but not currents from KCNQ1 or KCNQ2 homomultimers. Src overexpression had two effects: a decrease of current amplitude (4- to 15-fold for cloned channels and approximately 3-fold for M current) and a slowing of activation kinetics by 2-fold. Both Src actions were mostly reversed by bath application of the Src inhibitors erbstatin (20 microm) and PP2 (200 nm), and mimicked by the tyrosine phosphatase inhibitor sodium vanadate (100 microm). Immunoprecipitation and immunoblot analysis showed Src-dependent phosphotyrosine signals associated with KCNQ3, KCNQ4, and KCNQ5 but not with KCNQ1 or KCNQ2 that may be tyrosine phosphorylation of the channel subunits. Expression of a dominant negative Src that cannot phosphorylate substrates had no effect on the current and did not induce phosphotyrosine signals associated with KCNQ3-5 subunits, further indicating that Src actions on KCNQ currents are mediated by tyrosine phosphorylation. Immunostaining and confocal analysis showed no effect of Src overexpression on the abundance of KCNQ3 protein in CHO cells. Finally, experiments using cloned KCNQ2/3 channels, Src and M(1) muscarinic receptors, and sympathetic neurons demonstrated that the actions on KCNQ channels by Src and by muscarinic agonists use distinct mechanisms."	"Cloning of mouse Cited4, a member of the CITED family p300/CBP-binding transcriptional coactivators: induced expression in mammary epithelial cells. The CITED family proteins bind to CBP/p300 transcriptional integrators through their conserved C-terminal acidic domain and function as coactivators. The 21-kDa mouse Cited4 protein, a novel member of the CITED family, interacted with CBP/p300 as well as isoforms of the TFAP2 transcription factor, coactivating TFAP2-dependent transcription. The cited4 gene consisted of only a single exon located on chromosome 4 at 56.5-56.8 cM flanked by marker genes kcnq4 and scml1. Expression of Cited4 protein was strong and selective in embryonic hematopoietic tissues and endothelial cells. In adult animals, Cited4 showed strong milk cycle-dependent induction in pregnant and lactating mammary epithelial cells. Strong induction of Cited4 expression was also observed in SCp2 mouse mammary epithelial cells during their prolactin-dependent in vitro differentiation. These results implied possible roles for Cited4 in regulation of gene expression during development and differentiation of blood cells, endothelial cells, and mammary epithelial cells."	"Audiologic evidence for further genetic heterogeneity at DFNA2. A large American family has been mapped to the DFNA2 locus. However, mutation screening of CX31 and KCNQ4, the two genes associated with deafness at this locus, did not identify any mutations. The purpose of this report was to characterize the otologic and audiometric phenotype of this large American family with non-syndromic, autosomal-dominant sensorineural hereditary hearing impairment (HHI). Anamnestic data were obtained, pure-tone audiometry was performed and transient-evoked otoacoustic emissions were recorded. The findings in affected family members were compared to those in unaffected family members and to the respective p50 thresholds of the normal age-matched population. Mutational analysis of the CX26 gene was also performed. The affected members of this family demonstrated progressive symmetric sensorineural hearing impairment. The hearing loss was downward sloping, with mild-to-moderate loss in the low and mid frequencies and severe-to-profound loss in frequencies &gt; 4,000 Hz. The onset of disease was predominantly in the first or early in the second decade. Hearing impairment progressed at approximately 1 dB per year across all frequencies. Transient-evoked otoacoustic emissions revealed a minimal response over all frequencies in affected members but robust responses in all unaffected members. Mutation in the CX26 gene was not present. The affected frequencies observed in this family were similar to those in the original family mapped to DFNA2; however, the age of onset of disease was different and the hearing loss progressed at a slower rate. Therefore, this family provides clinical evidence of genetic heterogeneity at the DFNA2 locus and can serve as a model for age-related hearing loss."	"DFNA2/KCNQ4 and its manifestations. NA"	"Molecular correlates of the M-current in cultured rat hippocampal neurons. M-type K(+) currents (I(K(M))) play a key role in regulating neuronal excitability. In sympathetic neurons, M-channels are thought to be composed of a heteromeric assembly of KCNQ2 and KCNQ3 K(+) channel subunits. Here, we have tried to identify the KCNQ subunits that are involved in the generation of I(K(M)) in hippocampal pyramidal neurons cultured from 5- to 7-day-old rats. RT-PCR of either CA1 or CA3 regions revealed the presence of KCNQ2, KCNQ3, KCNQ4 and KCNQ5 subunits. Single-cell PCR of dissociated hippocampal pyramidal neurons gave detectable signals for only KCNQ2, KCNQ3 and KCNQ5; where tested, most also expressed mRNA for the vesicular glutamate transporter VGLUT1. Staining for KCNQ2 and KCNQ5 protein showed punctate fluorescence on both the somata and dendrites of hippocampal neurons. Staining for KCNQ3 was diffusely distributed whereas KCNQ4 was undetectable. In perforated patch recordings, linopirdine, a specific M-channel blocker, fully inhibited I(K(M)) with an IC(50) of 3.6 +/- 1.5 microM. In 70 % of these cells, TEA fully suppressed I(K(M)) with an IC(50) of 0.7 +/- 0.1 mM. In the remaining cells, TEA maximally reduced I(K(M)) by only 59.7 +/- 5.2 % with an IC(50) of 1.4 +/- 0.3 mM; residual I(K(M)) was abolished by linopirdine. Our data suggest that KCNQ2, KCNQ3 and KCNQ5 subunits contribute to I(K(M)) in these neurons and that the variations in TEA sensitivity may reflect differential expression of KCNQ2, KCNQ3 and KCNQ5 subunits."	"Non-syndromic autosomal-dominant deafness. Non-syndromic deafness is a paradigm of genetic heterogeneity. More than 70 loci have been mapped, and 25 of the nuclear genes responsible for non-syndromic deafness have been identified. Autosomal-dominant genes are responsible for about 20% of the cases of hereditary non-syndromic deafness, with 16 different genes identified to date. In the present article we review these 16 genes, their function and their contribution to deafness in different populations. The complexity is underlined by the fact that several of the genes are involved in both dominant and recessive non-syndromic deafness or in both non-syndromic and syndromic deafness. Mutations in eight of the genes have so far been detected in only single dominant deafness families, and their contribution to deafness on a population base might therefore be limited, or is currently unknown. Identification of all genes involved in hereditary hearing loss will help in the understanding of the basic mechanisms underlying normal hearing, will facilitate early diagnosis and intervention and might offer opportunities for rational therapy."	"A mutational hot spot in the KCNQ4 gene responsible for autosomal dominant hearing impairment. Several different mutations in the KCNQ4 K+ channel gene are responsible for autosomal dominant nonsyndromic hearing impairment (DFNA2). Here we describe two additional families originating from Europe and Japan with a KCNQ4 missense mutation (W276S) that was previously found in one European family. We compared the disease-associated haplotype of the three W276S-bearing families using closely linked microsatellite markers and intragenic single nucleotide polymorphisms. Differences between the haplotypes were found, excluding a single founder mutation for the families. Therefore, the W276S mutation has occurred three times independently, and most likely represents a hot spot for mutation in the KCNQ4 gene."	"K(+) cycling and its regulation in the cochlea and the vestibular labyrinth. Potassium (K(+)) plays a very important role in the cochlea. K(+) is the major cation in endolymph and the charge carrier for sensory transduction and the generation of the endocochlear potential. The importance of K(+) handling in the cochlea is marked by the discovery of several forms of hereditary deafness that are due to mutations of K(+) channels. Deafness results from mutations of KCNQ4, a K(+) channel in the sensory hair cells, as well as from mutations of the gap junction proteins GJB2, GJB3 and GJB6 that may facilitate cell-to-cell movements of K(+). Deafness results also from mutations of KCNQ1 or KCNE1, subunits of a K(+) channel that carries K(+) from strial marginal cells and vestibular dark cells into endolymph. Further, deafness results from mutations of KCNJ10, a K(+) channel that generates the endocochlear potential in conjunction with the high K(+) concentration in strial intermediate cells and the low K(+) concentration in the intrastrial fluid spaces. This review details recent advances in the understanding of K(+) transport and its regulation in the cochlea and the vestibular labyrinth."	"K+ cycling and the endocochlear potential. Sensory transduction in the cochlea and the vestibular labyrinth depends on the cycling of K+. In the cochlea, endolymphatic K+ flows into the sensory hair cells via the apical transduction channel and is released from the hair cells into perilymph via basolateral K+ channels including KCNQ4. K+ may be taken up by fibrocytes in the spiral ligament and transported from cell to cell via gap junctions into strial intermediate cells. Gap junctions may include GJB2, GJB3 and GJB6. K+ is released from the intermediate cells into the intrastrial space via the KCNJ10 K+ channel that generates the endocochlear potential. From the intrastrial space, K+ is taken up across the basolateral membrane of strial marginal cells via the Na+/2Cl-/K+ cotransporter SLC12A2 and the Na+/K+-ATPase ATP1A1/ATP1B2. Strial marginal cells secrete K+ across the apical membrane into endolymph via the K+ channel KCNQ1/KCNE1, which concludes the cochlear cycle. A similar K+ cycle exists in the vestibular labyrinth. Endolymphatic K+ flows into the sensory hair cells via the apical transduction channel and is released from the hair cells via basolateral K+ channels including KCNQ4. Fibrocytes connected by gap junctions including GJB2 may be involved in delivering K+ to vestibular dark cells. Extracellular K+ is taken up into vestibular dark cells via SLC12A2 and ATP1A1/ATP1B2 and released into endolymph via KCNQ1/KCNE1, which concludes the vestibular cycle. The importance of K+ cycling is underscored by the fact that mutations of KCNQ1, KCNE1, KCNQ4, GJB2, GJB3 and GJB6 lead to deafness in humans and that null mutations of KCNQ1, KCNE1, KCNJ10 and SLC12A2 lead to deafness in mouse models."	"Deafness and renal tubular acidosis in mice lacking the K-Cl co-transporter Kcc4. Hearing depends on a high K(+) concentration bathing the apical membranes of sensory hair cells. K(+) that has entered hair cells through apical mechanosensitive channels is transported to the stria vascularis for re-secretion into the scala media(). K(+) probably exits outer hair cells by KCNQ4 K(+) channels(), and is then transported by means of a gap junction system connecting supporting Deiters' cells and fibrocytes() back to the stria vascularis. We show here that mice lacking the K(+)/Cl(-) (K-Cl) co-transporter Kcc4 (coded for by Slc12a7) are deaf because their hair cells degenerate rapidly after the beginning of hearing. In the mature organ of Corti, Kcc4 is restricted to supporting cells of outer and inner hair cells. Our data suggest that Kcc4 is important for K(+) recycling() by siphoning K(+) ions after their exit from outer hair cells into supporting Deiters' cells, where K(+) enters the gap junction pathway. Similar to some human genetic syndromes(), deafness in Kcc4-deficient mice is associated with renal tubular acidosis. It probably results from an impairment of Cl(-) recycling across the basolateral membrane of acid-secreting alpha-intercalated cells of the distal nephron."	"Further evidence for a third deafness gene within the DFNA2 locus. DFNA2 is a complex locus. Two hearing loss genes have been identified at this site: GJB3, the gene that encodes the gap junction protein connexin 31, and KCNQ4, a voltage-gated potassium channel gene. A third gene has previously been postulated to explain the hearing loss in an Indonesian family linked to the region but devoid of mutation in either known gene (Van Hauwe et al. [1999: Nat Genet 21:263]). We have identified a large five-generation family with nonsyndromic, autosomal dominant progressive high-frequency hearing loss. The hearing impairment maps to 1p34, the site of the DFNA2 locus. Two-point linkage analysis of microsatellite markers spanning the locus resulted in a lod score of 6.6 at D1S391 at theta = 0. We have investigated both identified deafness genes in affected and unaffected family members and have not found any disease-causing mutations, suggesting that another hearing impairment gene resides at the DFNA2 locus."	"Longitudinal and cross-sectional phenotype analysis in a new, large Dutch DFNA2/KCNQ4 family. We analyzed hearing thresholds, speech recognition scores, and vestibular responses in 32 affected persons in a large family with DFNA2/KCNQ4-related hearing impairment caused by a W276S missense mutation. Linear regression analysis of individual longitudinal data revealed significant threshold progression (1 dB/y) and offset (at age zero). The mean offset thresholds were 5, 21, 40, 39, 31, and 51 dB hearing level (HL) at 0.25, 0.5, 1, 2, 4, and 8 kHz, respectively. Cross-sectional analysis of last-visit thresholds against age produced less-steep slopes and higher offset thresholds. Nonlinear regression analysis of last-visit phoneme recognition scores against age in 25 cases showed that speech recognition did not deteriorate before the third decade. A hyperactive vestibuloocular reflex was found in 3 of 11 cases: 2 persons were especially susceptible to motion sickness. Persons with this KCNQ4 mutation showed congenital, progressive high-frequency impairment without substantial loss of speech recognition during the first decades of life."	"Dual-function vector for protein expression in both mammalian cells and Xenopus laevis oocytes. Both Xenopus laevis oocytes and mammalian cells are widely used for heterologous expression of several classes of proteins, and membrane proteins especially, such as ion channels or receptors, have been extensively investigated in both cell types. A full characterization of a specific protein will often engage both oocytes and mammalian cells. Efficient expression of a protein in both systems have thus far only been possible by subcloning the cDNA into two different vectors because several different molecular requirements should be fulfilled to obtain a high protein level in both mammalian cells and oocytes. To address this problem, we have constructed a plasmid vector, pXOOM, that can function as a template for expression in both oocytes and mammalian cells. By including all the necessary RNA stability elements for oocyte expression in a standard mammalian expression vector, we have obtained a dual-function vector capable of supporting protein production in both Xenopus oocytes and CHO-K1 cells at an expression level equivalent to the levels obtained with vectors optimized for either oocyte or mammalian expression. Our functional studies have been performed with hERGI, KCNQ4, and Kv1.3 potassium channels."	"Potassium channels: how genetic studies of epileptic syndromes open paths to new therapeutic targets and drugs. How can epilepsy gene hunting lead to better care for patients with epilepsy? Lessons may be learned from the progress made by identifying the mutated genes that cause Benign Familial Neonatal Convulsions (BFNC). In 1998, a decade of clinical and laboratory-based genetics work resulted in the cloning of the KCNQ2 potassium channel gene at the BFNC locus on chromosome 20. Subsequently, computer &quot;mining&quot; of public DNA databases allowed the rapid identification of three more brain KCNQ genes. Mutations in each of these additional genes were implicated as causes of human hereditary diseases: epilepsy (KCNQ3), deafness (KCNQ4), and, possibly, retinal degeneration (KCNQ5). Physiologists discovered that the KCNQ genes encoded subunits of the &quot;M-channel,&quot; a type of potassium channel known to control repetitive neuronal discharges. Finally, pharmacologists discovered that retigabine, a novel anticonvulsant with a broad but distinctive efficacy profile in animal studies, was a potent KCNQ channel opener. These studies suggest that KCNQ channels may be an important new class of targets for anticonvulsant therapies. The efficacy of retigabine is currently being tested in multicenter clinical trials; identification of its molecular targets will allow it to be more efficiently exploited as a &quot;lead compound.&quot; Cloned human KCNQ channels can now be expressed in cultured cells for &quot;high-throughput&quot; screening of drug candidates. Ongoing studies of the KCNQ channels in humans and animal models will refine our understanding of how M-channels control excitability at the cellular, network, and behavioral levels, and may reveal additional targets for therapeutic manipulation."	"Speech recognition scores related to age and degree of hearing impairment in DFNA2/KCNQ4 and DFNA9/COCH. To analyze the relationship between pure-tone hearing threshold and speech recognition performance in DFNA2/KCNQ4 and DFNA9/COCH, 2 types of high-frequency nonsyndromic hearing impairment. Case series with cross-sectional analysis of phoneme recognition scores related to age and hearing level. University hospital. Forty-five members of 4 separate families, all carrying 1 of 3 different mutations in the KCNQ4 gene at the DFNA2 locus (1p34); 42 members of 7 separate families, all carrying the same Pro51Ser mutation in the COCH gene at the DFNA9 locus (14q12-q13). The deterioration of speech recognition dropped to a 90% score at a higher level of hearing impairment (pure-tone-average at 1, 2, and 4 kHz) in DFNA2-affected patients (65 dB) than in DFNA9-affected patients (46 dB). At similar levels of hearing impairment, DFNA2/KCNQ4-affected patients showed better speech recognition performance than DFNA9/COCH-affected patients."	"Activation of expressed KCNQ potassium currents and native neuronal M-type potassium currents by the anti-convulsant drug retigabine. Retigabine [D-23129; N-(2-amino-4-(4-fluorobenzylamino)-phenyl) carbamic acid ethyl ester] is a novel anticonvulsant compound that is now in clinical phase II development. It has previously been shown to enhance currents generated by KCNQ2/3 K(+) channels when expressed in Chinese hamster ovary (CHO) cells (Main et al., 2000; Wickenden et al., 2000). In the present study, we have compared the actions of retigabine on KCNQ2/3 currents with those on currents generated by other members of the KCNQ family (homomeric KCNQ1, KCNQ2, KCNQ3, and KCNQ4 channels) expressed in CHO cells and on the native M current in rat sympathetic neurons [thought to be generated by KCNQ2/3 channels (Wang et al., 1998)]. Retigabine produced a hyperpolarizing shift of the activation curves for KCNQ2/3, KCNQ2, KCNQ3, and KCNQ4 currents with differential potencies in the following order: KCNQ3 &gt; KCNQ2/3 &gt; KCNQ2 &gt; KCNQ4, as measured either by the maximum hyperpolarizing shift in the activation curves or by the EC(50) values. In contrast, retigabine did not enhance cardiac KCNQ1 currents. Retigabine also produced a hyperpolarizing shift in the activation curve for native M channels in rat sympathetic neurons. The retigabine-induced current was inhibited by muscarinic receptor stimulation, with similar agonist potency but 25% reduced maximum effect. In unclamped neurons, retigabine produced a hyperpolarization and reduced the number of action potentials produced by depolarizing current injections, without change in action potential configuration."	"Clinical and genetic features of nonsyndromic autosomal dominant sensorineural hearing loss: KCNQ4 is a gene responsible in Japanese. Sixteen Japanese nonsyndromic autosomal dominant sensorineural hearing loss (ADSNHL) families were investigated clinically as well as genetically. Most families showed postlingual hearing loss. Although the severity of their hearing loss varied, most patients showed mild-moderate sensorineural hearing loss of a progressive nature. Mutation analysis was performed for the MYO7A, KCNQ4, and GJB3 genes, which are known to be responsible for autosomal dominant sensorineural hearing loss. The present study reports that a mutation in KCNQ4, a member of a large family of potassium channel genes, was responsible for ADSNHL in one Japanese family."	"KCNQ potassium channels: physiology, pathophysiology, and pharmacology. KCNQ genes encode a growing family of six transmembrane domains, single pore-loop, K(+) channel alpha-subunits that have a wide range of physiological correlates. KCNQ1 (KvLTQ1) is co-assembled with the product of the KCNE1 (minimal K(+)-channel protein) gene in the heart to form a cardiac-delayed rectifier-like K(+) current. Mutations in this channel can cause one form of inherited long QT syndrome (LQT1), as well as being associated with a form of deafness. KCNQ1 can also co-assemble with KCNE3, and may be the molecular correlate of the cyclic AMP-regulated K(+) current present in colonic crypt cells. KCNQ2 and KCNQ3 heteromultimers are thought to underlie the M-current; mutations in these genes may cause an inherited form of juvenile epilepsy. The KCNQ4 gene is thought to encode the molecular correlate of the I(K,n) in outer hair cells of the cochlea and I(K,L) in Type I hair cells of the vestibular apparatus, mutations in which lead to a form of inherited deafness. The recently identified KCNQ5 gene is expressed in brain and skeletal muscle, and can co-assemble with KCNQ3, suggesting it may also play a role in the M-current heterogeneity. This review will set this family of K(+) channels amongst the other known families. It will highlight the genes, physiology, pharmacology, and pathophysiology of this recently discovered, but important, family of K(+) channels."	"KCNQ4 channel activation by BMS-204352 and retigabine. Activation of potassium channels generally reduces cellular excitability, making potassium channel openers potential drug candidates for the treatment of diseases related to hyperexcitabilty such as epilepsy, neuropathic pain, and neurodegeneration. Two compounds, BMS-204352 and retigabine, presently in clinical trials for the treatment of stroke and epilepsy, respectively, have been proposed to exert their protective action via an activation of potassium channels. Here we show that KCNQ4 channels, stably expressed in HEK293 cells, were activated by retigabine and BMS-204352 in a reversible and concentration-dependent manner in the concentration range 0.1-10 microM. Both compounds shifted the KCNQ4 channel activation curves towards more negative potentials by about 10 mV. Further, the maximal current obtainable at large positive voltages was also increased concentration-dependently by both compounds. Finally, a pronounced slowing of the deactivation kinetics was induced in particular by BMS-204352. The M-current blocker linopirdine inhibited the baseline current, as well as the BMS-204352-induced activation of the KCNQ4 channels. KCNQ2, KCNQ2/Q3, and KCNQ3/Q4 channels were activated to a similar degree as KCNQ4 channels by 10 microM of BMS-204352 and retigabine, respectively. The compounds are, thus, likely to be general activators of M-like currents."	"KCNQ4 channels expressed in mammalian cells: functional characteristics and pharmacology. Human cloned KCNQ4 channels were stably expressed in HEK-293 cells and characterized with respect to function and pharmacology. Patch-clamp measurements showed that the KCNQ4 channels conducted slowly activating currents at potentials more positive than -60 mV. From the Boltzmann function fitted to the activation curve, a half-activation potential of -32 mV and an equivalent gating charge of 1.4 elementary charges was determined. The instantaneous current-voltage relationship revealed strong inward rectification. The KCNQ4 channels were blocked in a voltage-independent manner by the memory-enhancing M current blockers XE-991 and linopirdine with IC(50) values of 5.5 and 14 microM, respectively. The antiarrhythmic KCNQ1 channel blocker bepridil inhibited KCNQ4 with an IC(50) value of 9.4 microM, whereas clofilium was without significant effect at 100 microM. The KCNQ4-expressing cells exhibited average resting membrane potentials of -56 mV in contrast to -12 mV recorded in the nontransfected cells. In conclusion, the activation and pharmacology of KCNQ4 channels resemble those of M currents, and it is likely that the function of the KCNQ4 channel is to regulate the subthreshold electrical activity of excitable cells."	"An ERG channel inhibitor from the scorpion Buthus eupeus. The isolation of the peptide inhibitor of M-type K(+) current, BeKm-1, from the venom of the Central Asian scorpion Buthus eupeus has been described previously (Fillipov A. K., Kozlov, S. A., Pluzhnikov, K. A., Grishin, E. V., and Brown, D. A. (1996) FEBS Lett. 384, 277-280). Here we report the cloning, expression, and selectivity of BeKm-1. A full-length cDNA of 365 nucleotides encoding the precursor of BeKm-1 was isolated using the rapid amplification of cDNA ends polymerase chain reaction technique from mRNA obtained from scorpion telsons. Sequence analysis of the cDNA revealed that the precursor contains a signal peptide of 21 amino acid residues. The mature toxin consists of 36 amino acid residues. BeKm-1 belongs to the family of scorpion venom potassium channel blockers and represents a new subgroup of these toxins. The recombinant BeKm-1 was produced as a Protein A fusion product in the periplasm of Escherichia coli. After cleavage and high performance liquid chromatography purification, recombinant BeKm-1 displayed the same properties as the native toxin. Three BeKm-1 mutants (R27K, F32K, and R27K/F32K) were generated, purified, and characterized. Recombinant wild-type BeKm-1 and the three mutants partly inhibited the native M-like current in NG108-15 at 100 nm. The effect of the recombinant BeKm-1 on different K(+) channels was also studied. BeKm-1 inhibited hERG1 channels with an IC(50) of 3.3 nm, but had no effect at 100 nm on hEAG, hSK1, rSK2, hIK, hBK, KCNQ1/KCNE1, KCNQ2/KCNQ3, KCNQ4 channels, and minimal effect on rELK1. Thus, BeKm-1 was shown to be a novel specific blocker of hERG1 potassium channels."	"Longitudinal gradients of KCNQ4 expression in spiral ganglion and cochlear hair cells correlate with progressive hearing loss in DFNA2. Mutations in the human KCNQ4 gene were recently found by Kubisch et al. [Cell 96 (1999) 437-446] to cause a non-syndromic, autosomal dominant, progressive hearing loss, DFNA2. The mouse Kcnq4 orthologue was previously localized to the outer hair cells (OHCs) of the inner ear, suggesting the pathophysiological effects were due to dysfunctional OHCs. Yet, OHC dysfunction does not provide a plausible explanation for the progressive nature of the frequency specific hearing loss. We have re-examined and extended the expression analyses of KCNQ4 in the murine inner ear using RT-PCR and whole mount in situ hybridization. Our results confirmed that the rat KCNQ4 orthologue is expressed in both inner and outer hair cells. Reciprocal longitudinal gradients were found in inner hair cells (IHCs) and OHCs. The strongest expression of KCNQ4 in IHCc was in the base of the cochlea and in the apex for OHCs. Similar to the IHCs, a basal to apical gradient was present in the spiral sensory neurons. IHCs mediate hearing via their afferent sensory neurons, whereas OHCs function as active cochlear amplifiers. The complete absence of OHCs leads only to severe sensitivity reduction, but not complete hearing loss. Our data suggest that the primary defect leading to initial high frequency loss and subsequent progressive hearing loss for all frequencies may be due to spiral ganglion and/or IHC dysfunction, rather than an OHC aberration."	"Mutations in the KCNQ4 K+ channel gene, responsible for autosomal dominant hearing loss, cluster in the channel pore region. The DFNA2 locus for autosomal dominant nonsyndromic hearing impairment on chromosome 1p34 contains at least 2 genes responsible for hearing loss, GJB3 and KCNQ4. GJB3 is a member of the connexin gene family and KCNQ4 is a voltage-gated potassium channel. KCNQ4 mutations were first found in a French family, and later also in a Belgian, an American and two Dutch families. Here we present the analysis of the GJB3 and KCNQ4 genes in a third Dutch family linked to DFNA2. No mutation was found in GJB3, but a missense mutation changing a conserved Leu residue into His (L274H) was found in the coding region of the KCNQ4 gene in all patients of this DFNA2 family. Examination of the position of all known KCNQ4 mutations showed a clustering of mutations in the pore region of the KCNQ4 gene, responsible for the ion selectivity of the channel. The clustering of mutations in this domain confirms its importance."	"The DFNA2 locus for hearing impairment: two genes regulating K+ ion recycling in the inner ear. DFNA2 is a locus for autosomal dominant non-syndromal hearing impairment (ADNSHI) located on chromosome 1p34 and six linked families have been identified. An audiometric study of these families showed that despite small differences in the phenotype all families suffer from progressive hearing impairment starting in the high frequencies. A detailed genetic analysis revealed that this deafness locus contains more than one gene responsible for hearing impairment. Thus far, two genes on chromosome 1p34 have been implicated in ADNSHI. The first, connexin 31 (GJB3), is a member of the connexin gene family. Connexins form gap junctions. These are connections between neighbouring cells that allow transport of small molecules. GJB3 mutations were found in two small Chinese families with ADNSHI. The second is KCNQ4, a voltage-gated K+ channel. Mutations in KCNQ4 were first found in a small French family, later in five of the six linked DFNA2 families. No GJB3 or KCNQ4 mutations were detected in patients of an extended Indonesian DFNA2 family. Two pathways have been proposed for the recycling of K+ from the hair cells back to the endolymph. These pathways involve the use of gap junctions, K+ pumps and K+ channels. The expression of GJB3 and KCNQ4 in the inner ear and their functions suggest that both DFNA2 genes may play a role in K+ homeostasis."	"KCNQ4, a K+ channel mutated in a form of dominant deafness, is expressed in the inner ear and the central auditory pathway. Mutations in the potassium channel gene KCNQ4 underlie DFNA2, an autosomal dominant form of progressive hearing loss in humans. In the mouse cochlea, the transcript has been found exclusively in the outer hair cells. By using specific antibodies, we now show that KCNQ4 is situated at the basal membrane of these sensory cells. In the vestibular organs, KCNQ4 is restricted to the type I hair cells and the afferent calyx-like nerve endings ensheathing these sensory cells. Several lines of evidence suggest that KCNQ4 underlies the I(K,n) and g(K,L) currents that have been described in the outer and type I hair cells, respectively, and that are already open at resting potentials. KCNQ4 is also expressed in neurons of many, but not all, nuclei of the central auditory pathway, and is absent from most other brain regions. It is present, e.g., in the cochlear nuclei, the nuclei of the lateral lemniscus, and the inferior colliculus. This is the first ion channel shown to be specifically expressed in a sensory pathway. Moreover, the expression pattern of KCNQ4 in the mouse auditory system raises the possibility of a central component in the DFNA2 hearing loss."	"Mutant ion channel in cochlear hair cells causes deafness. NA"	"Differential tetraethylammonium sensitivity of KCNQ1-4 potassium channels. In Shaker-group potassium channels the presence of a tyrosine residue, just downstream of the pore signature sequence GYG, determines sensitivity to tetraethylammonium (TEA). The KCNQ family of channels has a variety of amino acid residues in the equivalent position. We studied the effect of TEA on currents generated by KCNQ homomers and heteromers expressed in CHO cells. We used wild-type KCNQ1-4 channels and heteromeric KCNQ2/3 channels incorporating either wild-type KCNQ3 subunits or a mutated KCNQ3 in which tyrosine replaced threonine at position 323 (mutant T323Y). IC50 values were (mM): KCNQ1, 5.0; KCNQ2, 0.3; KCNQ3, &gt; 30; KCNQ4, 3.0; KCNQ2 + KCNQ3, 3.8; and KCNQ2 + KCNQ3(T323Y), 0.5. While the high TEA sensitivity of KCNQ2 may be conferred by a tyrosine residue lacking in the other channels, the intermediate TEA sensitivity of KCNQ1 and KCNQ4 implies that other residues are also important in determining TEA block of the KCNQ channels."	"A constitutively open potassium channel formed by KCNQ1 and KCNE3. Mutations in all four known KCNQ potassium channel alpha-subunit genes lead to human diseases. KCNQ1 (KvLQT1) interacts with the beta-subunit KCNE1 (IsK, minK) to form the slow, depolarization-activated potassium current I(Ks) that is affected in some forms of cardiac arrhythmia. Here we show that the novel beta-subunit KCNE3 markedly changes KCNQ1 properties to yield currents that are nearly instantaneous and depend linearly on voltage. It also suppresses the currents of KCNQ4 and HERG potassium channels. In the intestine, KCNQ1 and KCNE3 messenger RNAs colocalized in crypt cells. This localization and the pharmacology, voltage-dependence and stimulation by cyclic AMP of KCNQ1/KCNE3 currents indicate that these proteins may assemble to form the potassium channel that is important for cyclic AMP-stimulated intestinal chloride secretion and that is involved in secretory diarrhoea and cystic fibrosis."	"Novel mutation in the KCNQ4 gene in a large kindred with dominant progressive hearing loss. Analysis of genotyping of a five-generation American family with nonsyndromic dominant progressive hearing loss indicated linkage to the DFNA2 locus on chromosome 1p34. This kindred consists of 170 individuals, of which 51 are affected. Pure tone audiograms, medical records, and blood samples were obtained from 36 family members. Linkage analysis with five microsatellite markers spanning the region around DFNA2 produced a lod score of 6.6 for the marker MYCL1 at straight theta = 0.0. Hearing loss in this family showed a very similar pattern as the first reported American family with the same linkage. High frequency hearing loss was detectable as early as 3 years of age, and progressed to severe to profound loss by the fourth decade. Using intronic primers, we screened the coding region of the KCNQ4 gene. Heteroduplex analysis followed by direct sequencing identified a T--&gt;C transition at position 842, which would produce an L281S amino acid substitution. The observed mutation was shown to segregate completely with affected status in this family. The L281 residue is significantly conserved among the other members of the voltage-gated K(+) channel genes superfamily. Hydrophobicity analysis indicated that L281S substitution would lower formation of the beta structure at the P region of this ion channel. Mutation analysis of KCNQ4 was also performed on 80 unrelated probands from families with recessive or dominant nonsyndromic hearing loss. None of these cases showed a truncated mutation in KCNQ4."	"Developmental expression of the potassium current IK,n contributes to maturation of mouse outer hair cells. 1. The expression of K+ currents in mouse outer hair cells (OHCs) was investigated as a function of developmental age between postnatal day (P) 0 and P26, using whole-cell patch clamp. 2. During the first postnatal week, a slow outward K+ current (IK,neo) was expressed by all OHCs from the apical coil of the cochlea. The amplitude of this current increased greatly between P0 and P6. Then, at the beginning of the second postnatal week, IK,neo decreased. At the same time, from P8 onwards, IK,n, a K+ current characteristic of mature OHCs, was rapidly expressed. 3. The expression of IK,n coincided with the onset of electromotility of the cell body of the OHCs, which could also be detected from P8 onwards and increased substantially in size thereafter. 4. IK,n was reversibly blocked by linopirdine, an inhibitor of members of the KCNQ family of K+ channels, with a KD of 0.7 microM. In the cochlea, KCNQ4 is only expressed in OHCs and is responsible for a form of non-syndromic autosomal dominant deafness. Linopirdine had no effect on other OHC K+ currents at concentrations up to 200 microM. We conclude that ion channels underlying IK,n contain the KCNQ4 subunit. 5. In current clamp, depolarizing current injections from the resting potential triggered action potentials in OHCs during the first postnatal week. Thereafter, more rapid and graded voltage responses occurred from more negative resting potentials. Thus, OHCs mature rapidly from P8 onwards, and IK,n contributes to this maturation."	"Mutations in the KCNQ4 gene are responsible for autosomal dominant deafness in four DFNA2 families. We have previously found linkage to chromosome 1p34 in five large families with autosomal dominant non-syndromic hearing impairment (DFNA2). In all five families, the connexin31 gene ( GJB3 ), located at 1p34 and responsible for non-syndromic autosomal dominant hearing loss in two small Chinese families, has been excluded as the responsible gene. Recently, a fourth member of the KCNQ branch of the K+channel family, KCNQ4, has been cloned. KCNQ4 was mapped to chromosome 1p34 and a single mutation was found in three patients from a small French family with non-syndromic autosomal dominant hearing loss. In this study, we have analysed the KCNQ4 gene for mutations in our five DFNA2 families. Missense mutations altering conserved amino acids were found in three families and an inactivating deletion was present in a fourth family. No KCNQ4 mutation could be found in a single DFNA2 family of Indonesian origin. These results indicate that at least two and possibly three genes responsible for hearing impairment are located close together on chromosome 1p34 and suggest that KCNQ4 mutations may be a relatively frequent cause of autosomal dominant hearing loss."	"Deafness linked to DFNA2: one locus but how many genes? NA"	"KCNQ4, a novel potassium channel expressed in sensory outer hair cells, is mutated in dominant deafness. Potassium channels regulate electrical signaling and the ionic composition of biological fluids. Mutations in the three known genes of the KCNQ branch of the K+ channel gene family underlie inherited cardiac arrhythmias (in some cases associated with deafness) and neonatal epilepsy. We have now cloned KCNQ4, a novel member of this branch. It maps to the DFNA2 locus for a form of nonsyndromic dominant deafness. In the cochlea, it is expressed in sensory outer hair cells. A mutation in this gene in a DFNA2 pedigree changes a residue in the KCNQ4 pore region. It abolishes the potassium currents of wild-type KCNQ4 on which it exerts a strong dominant-negative effect. Whereas mutations in KCNQ1 cause deafness by affecting endolymph secretion, the mechanism leading to KCNQ4-related hearing loss is intrinsic to outer hair cells."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYH14"	"nonsyndromic genetic deafness"	"A novel MYH14 mutation in a Chinese family with autosomal dominant nonsyndromic hearing loss. MYH14 gene mutations have been suggested to be associated with nonsyndromic/syndromic sensorineural hearing loss. It has been reported that mutations in MYH14 can result in autosomal dominant nonsyndromic deafness-4A (DFNA4). In this study, we examined a four-generation Han Chinese family with nonsyndromic hearing loss. Targeted next-generation sequencing of deafness genes was employed to identify the pathogenic variant. Sanger sequencing and PCR-RFLP analysis were performed in affected members of this family and 200 normal controls to further confirm the mutation. Four members of this family were diagnosed as nonsyndromic bilateral sensorineural hearing loss with postlingual onset and progressive impairment. A novel missense variant, c.5417C &gt; A (p.A1806D), in MYH14 in the tail domain of NMH II C was successfully identified as the pathogenic cause in three affected individuals. The family member II-5 was suggested to have noise-induced deafness. In this study, a novel missense mutation, c.5417C &gt; A (p.A1806D), in MYH14 that led to postlingual nonsyndromic autosomal dominant SNHL were identified. The findings broadened the phenotype spectrum of MYH14 and highlighted the combined application of gene capture and Sanger sequencing is an efficient approach to screen pathogenic variants associated with genetic diseases."	"The Progression of Acute Myeloid Leukemia from First Diagnosis to Chemoresistant Relapse: A Comparison of Proteomic and Phosphoproteomic Profiles. Acute myeloid leukemia (AML) is an aggressive hematological malignancy. Nearly 50% of the patients who receive the most intensive treatment develop chemoresistant leukemia relapse. Although the leukemogenic events leading to relapse seem to differ between patients (i.e., regrowth from a clone detected at first diagnosis, progression from the original leukemic or preleukemic stem cells), a common characteristic of relapsed AML is increased chemoresistance. The aim of the present study was to investigate at the proteomic level whether leukemic cells from relapsed patients present overlapping molecular mechanisms that contribute to this chemoresistance. We used liquid chromatography-tandem mass spectrometry (LC-MS/MS) to compare the proteomic and phosphoproteomic profiles of AML cells derived from seven patients at the time of first diagnosis and at first relapse. At the time of first relapse, AML cells were characterized by increased levels of proteins important for various mitochondrial functions, such as mitochondrial ribosomal subunit proteins (MRPL21, MRPS37) and proteins for RNA processing (DHX37, RNA helicase; RPP40, ribonuclease P component), DNA repair (ERCC3, DNA repair factor IIH helicase; GTF2F1, general transcription factor), and cyclin-dependent kinase (CDK) activity. The levels of several cytoskeletal proteins (MYH14/MYL6/MYL12A, myosin chains; VCL, vinculin) as well as of proteins involved in vesicular trafficking/secretion and cell adhesion (ITGAX, integrin alpha-X; CD36, platelet glycoprotein 4; SLC2A3, solute carrier family 2) were decreased in relapsed cells. Our study introduces new targetable proteins that might direct therapeutic strategies to decrease chemoresistance in relapsed AML."	"Myosins and Hearing. Hearing loss is both genetically and clinically heterogeneous, and pathogenic variants of over a hundred different genes are associated with this common neurosensory disorder. A relatively large number of these &quot;deafness genes&quot; encode myosin super family members. The evidence that pathogenic variants of human MYO3A, MYO6, MYO7A, MYO15A, MYH14 and MYH9 are associated with deafness ranges from moderate to definitive. Additional evidence for the involvement of these six myosins for normal hearing also comes from animal models, usually mouse or zebra fish, where mutations of these genes cause hearing loss and from biochemical, physiological and cell biological studies of their roles in the inner ear. This chapter focuses on these six genes for which evidence of a causative role in deafness is substantial."	"Association Analysis of Candidate Gene Polymorphisms and Audiometric Measures of Noise-Induced Hearing Loss in Young Musicians. This study aimed to investigate the association between candidate genetic variants and audiometric measures of noise-induced hearing loss (NIHL) in young musicians. The study analyzed a database by Phillips et al. (Feasibility of a bilateral 4000-6000 Hz notch as a phenotype for genetic association analysis. Int J Audiol 2015;54:645-52.) which included behavioral hearing thresholds, distortion-product otoacoustic emissions (DPOAE), tympanometric, and genetic data of 166 participants meeting the inclusion criteria. Nineteen single nucleotide polymorphisms (SNPs) in 13 cochlear genes previously associated with NIHL in factory workers were included in the present investigation. The average hearing threshold at 3000 and 4000 Hz (AHT) and average DPOAE signal to noise ratio (DPOAE SNR) in both ears were calculated. The regression analyses showed that two SNPs- one in KCNE1 (rs2070358) and the other in CAT (rs12273124) revealed a statistically significant relationship with DPOAE SNR in both ears. Two SNPs in MYH14 and one in GJB4 revealed a significant association with DPOAE SNR in the left ear. Two SNPs in HSP70, one in CDH23 and one in KCNJ10 showed significant association with DPOAE SNR in the right ear. None of the included SNPs showed association with AHT in both ears. A genetic variant in KCNE1 was associated with the strength of the cochlear amplifier as assessed by DPOAE SNR. Musicians carrying causal genetic variants to NIHL might exhibit changes in their auditory functions early in the lifespan even when most subjects had their hearing thresholds within normal limits. These participants are likely to show the clinical manifestation of NIHL in the future if no preventive measures are applied."	"A Network-Based Bioinformatics Approach to Identify Molecular Biomarkers for Type 2 Diabetes that Are Linked to the Progression of Neurological Diseases. Neurological diseases (NDs) are progressive disorders, the progression of which can be significantly affected by a range of common diseases that present as comorbidities. Clinical studies, including epidemiological and neuropathological analyses, indicate that patients with type 2 diabetes (T2D) have worse progression of NDs, suggesting pathogenic links between NDs and T2D. However, finding causal or predisposing factors that link T2D and NDs remains challenging. To address these problems, we developed a high-throughput network-based quantitative pipeline using agnostic approaches to identify genes expressed abnormally in both T2D and NDs, to identify some of the shared molecular pathways that may underpin T2D and ND interaction. We employed gene expression transcriptomic datasets from control and disease-affected individuals and identified differentially expressed genes (DEGs) in tissues of patients with T2D and ND when compared to unaffected control individuals. One hundred and ninety seven DEGs (99 up-regulated and 98 down-regulated in affected individuals) that were common to both the T2D and the ND datasets were identified. Functional annotation of these identified DEGs revealed the involvement of significant cell signaling associated molecular pathways. The overlapping DEGs (i.e., seen in both T2D and ND datasets) were then used to extract the most significant GO terms. We performed validation of these results with gold benchmark databases and literature searching, which identified which genes and pathways had been previously linked to NDs or T2D and which are novel. Hub proteins in the pathways were identified (including DNM2, DNM1, MYH14, PACSIN2, TFRC, PDE4D, ENTPD1, PLK4, CDC20B, and CDC14A) using protein-protein interaction analysis which have not previously been described as playing a role in these diseases. To reveal the transcriptional and post-transcriptional regulators of the DEGs we used transcription factor (TF) interactions analysis and DEG-microRNAs (miRNAs) interaction analysis, respectively. We thus identified the following TFs as important in driving expression of our T2D/ND common genes: FOXC1, GATA2, FOXL1, YY1, E2F1, NFIC, NFYA, USF2, HINFP, MEF2A, SRF, NFKB1, USF2, HINFP, MEF2A, SRF, NFKB1, PDE4D, CREB1, SP1, HOXA5, SREBF1, TFAP2A, STAT3, POU2F2, TP53, PPARG, and JUN. MicroRNAs that affect expression of these genes include mir-335-5p, mir-16-5p, mir-93-5p, mir-17-5p, mir-124-3p. Thus, our transcriptomic data analysis identifies novel potential links between NDs and T2D pathologies that may underlie comorbidity interactions, links that may include potential targets for therapeutic intervention. In sum, our neighborhood-based benchmarking and multilayer network topology methods identified novel putative biomarkers that indicate how type 2 diabetes (T2D) and these neurological diseases interact and pathways that, in the future, may be targeted for treatment."	"Post-lingual non-syndromic hearing loss phenotype: a polygenic case with 2 biallelic mutations in MYO15A and MITF. Hearing loss (HL) represents the most common congenital sensory impairment with an incidence of 1-5 per 1000 live births. Non-syndromic hearing loss (NSHL) is an isolated finding that is not part of any other disorder accounting for 70% of all genetic hearing loss cases. In the current study, we reported a polygenic mode of inheritance in an NSHL consanguineous family using exome sequencing technology and we evaluated the possible effect of the detected single nucleotide variants (SNVs) using in silico methods. Two bi-allelic SNVs were detected in the affected patients; a MYO15A (. p.V485A) variant, and a novel MITF (p.P338L) variant. Along with these homozygous mutations, we detected two heterozygous variants in well described hearing loss genes (MYO7A and MYH14). The novel MITF p. Pro338Leu missense mutation was predicted to change the protein structure and function. A novel MITF mutation along with a previously described MYO15A mutation segregate with an autosomal recessive non-syndromic HL case with a post-lingual onset. The findings highlight the importance of carrying whole exome sequencing for a comprehensive assessment of HL genetic heterogeneity."	"An overview of research trends and genetic polymorphisms for noise-induced hearing loss from 2009 to 2018. Recently, there has been increased studies in noise-induced hearing loss (NIHL). We aimed to make an overview of research trends and genetic polymorphisms for NIHL from 2009 to 2018 with VOSviewer software. A total of 2391 papers were identified for research trends analysis in NIHL and 33 studies identified for a brief review of genetic polymorphisms in human NIHL. The number of publications has been increasing over the past decade. The journal Hearing Research published the most articles (218). The USA contributed the largest number of papers (1042; 43.58%), with the most citations (18,987) and the highest H-index (60). The University of Washington was the most contributive institution. Liberman MC published the most articles (32), and Kujawa SG possessed the highest co-citations (584). Except for high-frequency keywords identified by the software, &quot;prevalence,&quot; &quot;oxidative stress,&quot; &quot;hair cells,&quot; and &quot;cochlear implant&quot; were also the latest research frontiers. HSPA1A rs1043618, HSPA1L rs2227956, PON2 rs12026 and rs7785846, SOD2 rs2855116, KCNE1 rs2070358, KCNQ4 rs34287852, GJB2 rs3751385, PCDH15 rs7095441 and rs11004085, GRHL2 rs1981361, ITGA8 rs10508489, MYH14 rs667907, and POU4F3 rs891969 were the research hotspots and were replicated in independent samples. Inflammation response underlying NIHL has emerged and should be considered as a pioneering field in the future for the prevention of NIHL and conservation of hearing."	"Neuropathy due to impaired axonal transport of non-fragmented mitochondria in MYH14 mutation carriers. NA"	"Neuropathy due to impaired axonal transport of non-fragmented mitochondria in MYH14 mutation carriers-Authors' reply. NA"	"Hearing loss in inherited peripheral neuropathies: Molecular diagnosis by NGS in a French series. The most common inherited peripheral neuropathy is Charcot-Marie-Tooth disease (CMT), with a prevalence of 1/2500. Other symptoms can be associated to the condition, such as hearing loss. Currently, no global hearing impairment assessment has been determined, and the physiopathology is not well known. The aim of the study was to analyze among a French series of 3,412 patients with inherited peripheral neuropathy (IPN), the ones who also suffer from hearing loss, to establish phenotype-genotype correlations. An NGS strategy for IPN one side and nonsyndromic hearing loss (NSHL) on the other side, were performed. Hearing loss (HL) was present in only 44 patients (1.30%). The clinical data of 27 patients were usable. Demyelinating neuropathy was diagnosed in 15 cases and axonal neuropathy in 12 cases. HL varied from mild to profound. Five cases of auditory neuropathy were noticed. Diagnosis was made for 60% of these patients. Seven novel pathogenic variants were discovered in five different genes: PRPS1; MPZ; SH3TC2; NEFL; and ABHD12. Two patients with PMP22 variant, had also an additional variant in COCH and MYH14 respectively. No pathogenic variant was found at the DFNB1 locus. Genotype-phenotype correlations do exist, especially with SH3TC2, PRPS1, ABHD12, NEFL, and TRPV4. Involvement of PMP22 is not enough to explain hearing loss in patients suffering from IPN. HL can be due to cochlear impairment and/or auditory nerve dysfunction. HL is certainly underdiagnosed, and should be evaluated in every patient suffering from IPN."	"Targeting Mechanoresponsive Proteins in Pancreatic Cancer: 4-Hydroxyacetophenone Blocks Dissemination and Invasion by Activating MYH14. Metastasis is complex, involving multiple genetic, epigenetic, biochemical, and physical changes in the cancer cell and its microenvironment. Cells with metastatic potential are often characterized by altered cellular contractility and deformability, lending them the flexibility to disseminate and navigate through different microenvironments. We demonstrate that mechanoresponsiveness is a hallmark of pancreatic cancer cells. Key mechanoresponsive proteins, those that accumulate in response to mechanical stress, specifically nonmuscle myosin IIA (MYH9) and IIC (MYH14), α-actinin 4, and filamin B, were highly expressed in pancreatic cancer as compared with healthy ductal epithelia. Their less responsive sister paralogs-myosin IIB (MYH10), α-actinin 1, and filamin A-had lower expression differential or disappeared with cancer progression. We demonstrate that proteins whose cellular contributions are often overlooked because of their low abundance can have profound impact on cell architecture, behavior, and mechanics. Here, the low abundant protein MYH14 promoted metastatic behavior and could be exploited with 4-hydroxyacetophenone (4-HAP), which increased MYH14 assembly, stiffening cells. As a result, 4-HAP decreased dissemination, induced cortical actin belts in spheroids, and slowed retrograde actin flow. 4-HAP also reduced liver metastases in human pancreatic cancer-bearing nude mice. Thus, increasing MYH14 assembly overwhelms the ability of cells to polarize and invade, suggesting targeting the mechanoresponsive proteins of the actin cytoskeleton as a new strategy to improve the survival of patients with pancreatic cancer. SIGNIFICANCE: This study demonstrates that mechanoresponsive proteins become upregulated with pancreatic cancer progression and that this system of proteins can be pharmacologically targeted to inhibit the metastatic potential of pancreatic cancer cells."	"Clinical and Genome-Wide Analysis of Serum Platinum Levels after Cisplatin-Based Chemotherapy. Serum platinum is measurable for years after completion of cisplatin-based chemotherapy (CBC). We report the largest investigation of serum platinum levels to date of 1,010 testicular cancer survivors (TCS) assessed 1-35 years after CBC and evaluate genetic contributions to these levels. Eligible TCS given 300 or 400 (±15) mg/m<sup>2</sup> cisplatin underwent extensive audiometric testing, clinical examination, completed questionnaires, and had crude serum platinum levels measured. Associations between serum platinum and various risk factors and toxicities were assessed after fitting a biexponential model adjusted for follow-up time and cumulative cisplatin dose. A genome-wide association study (GWAS) was performed using the serum platinum residuals of the dose and time-adjusted model. Serum platinum levels exceeded the reference range for approximately 31 years, with a strong inverse relationship with creatinine clearance at follow-up (age-adjusted P = 2.13 × 10<sup>-3</sup>). We observed a significant, positive association between residual platinum values and luteinizing hormone (age-adjusted P = 6.58 × 10<sup>-3</sup>). Patients with high residual platinum levels experienced greater Raynaud phenomenon than those with medium or low levels (age-adjusted ORhigh/low = 1.46; P = 0.04), as well as a higher likelihood of developing tinnitus (age-adjusted ORhigh/low = 1.68, P = 0.07). GWAS identified one single-nucleotide polymorphism (SNP) meeting genome-wide significance, rs1377817 (P = 4.6 × 10<sup>-8</sup>, a SNP intronic to MYH14). This study indicates that residual platinum values are correlated with several cisplatin-related toxicities. One genetic variant is associated with these levels."	"The R941L mutation in MYH14 disrupts mitochondrial fission and associates with peripheral neuropathy. Peripheral neuropathies are often caused by disruption of genes responsible for myelination or axonal transport. In particular, impairment in mitochondrial fission and fusion are known causes of peripheral neuropathies. However, the causal mechanisms for peripheral neuropathy gene mutations are not always known. While loss of function mutations in MYH14 typically cause non-syndromic hearing loss, the recently described R941L mutation in MYH14, encoding the non-muscle myosin protein isoform NMIIC, leads to a complex clinical presentation with an unexplained peripheral neuropathy phenotype. Confocal microscopy was used to examine mitochondrial dynamics in MYH14 patient fibroblast cells, as well as U2OS and M17 cells overexpressing NMIIC. The consequence of the R941L mutation on myosin activity was modeled in C. elegans. We describe the third family carrying the R941L mutation in MYH14, and demonstrate that the R941L mutation impairs non-muscle myosin protein function. To better understand the molecular basis of the peripheral neuropathy phenotype associated with the R941L mutation, which has been hindered by the fact that NMIIC is largely uncharacterized, we have established a previously unrecognized biological role for NMIIC in mediating mitochondrial fission in human cells. Notably, the R941L mutation acts in a dominant-negative fashion to inhibit mitochondrial fission, especially in the cell periphery. In addition, we observed alterations to the organization of the mitochondrial genome. As impairments in mitochondrial fission cause peripheral neuropathy, this insight into the function of NMIIC likely explains the peripheral neuropathy phenotype associated with the R941L mutation. FUND: This study was supported by the Alberta Children's Hospital Research Institute, the Canadian Institutes of Health Research and the Care4Rare Canada Consortium."	"Systematic Review of Hearing Loss Genes in the African American Population. Literature review of the genetic etiology of hearing loss (HL) in the African American (AA) population. PubMed, EBSCO, and CINAHL were accessed from 1966 to 2018. PRISMA guidelines were followed. Search terms included permutations of &quot;hearing loss,&quot; &quot;African American,&quot; &quot;black,&quot; and &quot;genetic&quot;; &quot;African American&quot; was then cross-referenced against documented HL genes. AA subjects included in multiethnic cohorts of genetic HL testing were identified by searching the key terms &quot;hearing loss&quot; and &quot;ethnic cohort&quot; and &quot;genetic.&quot; The Q-Genie tool was used in the quality assessment of included studies. An allele frequency meta-analysis of pathogenic GJB2 variants in the AA population was performed and stratified by hearing status. Four hundred seventeen articles were reviewed, and 26 met our inclusion criteria. Ten studies were included in the GJB2 meta-analysis. In the general AA population, pathogenic GJB2 variants are rare, including the 35delG allele, which displayed a carrier frequency of 0.05%. Pathogenic variants were discovered in seven nonsyndromic HL genes (GJB2, MYO3A, TECTA, STRC, OTOF, MYH14, TMC1), eight syndromic HL genes, and one mitochondrial HL gene. Recent comprehensive genetic testing using custom genetic HL testing platforms has yielded only a 26% molecular diagnosis rate for HL etiologies in the AA population. Investigators should be encouraged to provide an ethnic breakdown of results. Sparse literature and poor diagnosis rates indicate that genes involved in HL in the AA population have yet to be identified. Future explorative investigations using next-generation sequencing technologies, such as whole-exome sequencing, into the AA population are warranted."	"Genetic Inheritance of Late-Onset, Down-Sloping Hearing Loss and Its Implications for Auditory Rehabilitation. Late-onset, down-sloping sensorineural hearing loss has many genetic and nongenetic etiologies, but the proportion of this commonly encountered type of hearing loss attributable to genetic causes is not well known. In this study, the authors performed genetic analysis using next-generation sequencing techniques in patients showing late-onset, down-sloping sensorineural hearing loss with preserved low-frequency hearing, and investigated the clinical implications of the variants identified. From a cohort of patients with hearing loss at a tertiary referral hospital, 18 unrelated probands with down-sloping sensorineural hearing loss of late onset were included in this study. Down-sloping hearing loss was defined as a mean low-frequency threshold at 250 Hz and 500 Hz less than or equal to 40 dB HL and a mean high-frequency threshold at 1, 2, and 4 kHz greater than 40 dB HL. The authors performed whole-exome sequencing and segregation analysis to identify the genetic causes and evaluated the outcomes of auditory rehabilitation in the patients. There were nine simplex and nine multiplex families included, in which the causative variants were found in six of 18 probands, demonstrating a detection rate of 33.3%. Various types of variants, including five novel and three known variants, were detected in the MYH14, MYH9, USH2A, COL11A2, and TMPRSS3 genes. The outcome of cochlear and middle ear implants in patients identified with pathogenic variants was satisfactory. There was no statistically significant difference between pathogenic variant-positive and pathogenic variant-negative groups in terms of onset age, family history of hearing loss, pure-tone threshold, or speech discrimination scores. The proportion of patients with late-onset, down-sloping hearing loss identified with potentially causative variants was unexpectedly high. Identification of the causative variants will offer insights on hearing loss progression and prognosis regarding various modes of auditory rehabilitation, as well as possible concomitant syndromic features."	"Elucidation of the unique mutation spectrum of severe hearing loss in a Vietnamese pediatric population. The mutational spectrum of deafness in Indochina Peninsula, including Vietnam, remains mostly undetermined. This significantly hampers the progress toward establishing an effective genetic screening method and early customized rehabilitation modalities for hearing loss. In this study, we evaluated the genetic profile of severe-to-profound hearing loss in a Vietnamese pediatric population using a hierarchical genetic analysis protocol that screened 11 known deafness-causing variants, followed by massively parallel sequencing targeting 129 deafness-associated genes. Eighty-seven children with isolated severe-to-profound non-syndromic hearing loss without family history were included. The overall molecular diagnostic yield was estimated to be 31.7%. The mutational spectrum for severe-to-profound non-syndromic hearing loss in our Vietnamese population was unique: The most prevalent variants resided in the MYO15A gene (7.2%), followed by GJB2 (6.9%), MYO7A (5.5%), SLC26A4 (4.6%), TMC1 (1.8%), ESPN (1.8%), POU3F4 (1.8%), MYH14 (1.8%), EYA1 (1.8%), and MR-RNR1 (1.1%). The unique spectrum of causative genes in the Vietnamese deaf population was similar to that in the southern Chinese deaf population. It is our hope that the mutation spectrum provided here could aid in establishing an efficient protocol for genetic analysis of severe-to-profound hearing loss and a customized screening kit for the Vietnamese population."	"Mutation screening in non-syndromic hearing loss patients with cochlear implantation by massive parallel sequencing in Taiwan. To explore the molecular epidemiology of rare deafness genes in Taiwanese sensorineural hearing impairment (SNHI) patients with cochlear implantation (CI) by performing massive parallel sequencing (MPS) and correlating genetic factors and CI outcomes. We enrolled 41 Taiwanese non-syndromic deafness patients with CI that lacked known mutations in common deafness genes. All probands were screened by a targeted exon amplification method that used massively parallel sequencing to screen a customized panel that included 40 relatively rare non-syndromic deafness genes. Thirteen candidate variants in nine relatively rare deafness genes (MYO15A, TMC1, MYH14, MYO3A, ACTG1, COL11A2, DSPP, GRHL2, and WFS1) were identified in 24.4% (10/41) of the non-syndromic deafness probands with CI. According to the ACMG Standards and Guidelines, five variants in MYO15A and ACTG1 were classified as likely pathogenic variants. Two of three multi-generational pedigrees exhibiting deafness were analyzed for the segregation of the disorder with the possible disease-causing variants. Patients with variants detected in most of the identified variant-bearing genes showed relatively good CI outcomes. We successfully identified candidate variants in partially deaf Taiwanese probands who lacked the known mutations in common deafness genes. Comparing the progress of hearing rehabilitation in CI patients with their apparent causative variants and the expression profiles of their altered genes allowed us to speculate on how alterations in specific gene sets may influence outcomes in hearing rehabilitation after CI."	"Role of Alpha-methylacyl-CoA racemase gene in pathogenecity of CMT patients. To find the causative mutation by linkage analysisof Charcot-Marie-Tooth disease while focussing on AMACR gene. The case-control study was conducted from November 2016 to March 2017 in Kongju National University Korea.A family of 15 members with composite symptoms of peripheral neuropathy were enrolled. In addition, 50 healthy controls, which had no clinical features and family history of neuromuscular disorders, were also recruited. The family was selected for sequencing analysis by using capillary sequencing. It was sequenced for all the causative genes for CMT disease i.e. PMP22, MPZ, MFN2, GDAP1, NEFL, CX32, MYH14, LMNA, TRPV4, LITAF. Various regions of chromosome were suspected based on the logarithm of the odds score. Of the 15-member family, 7(47%) were affected and 8(53%)were unaffected. Those unaffected also acted as the controls. A missense mutation was found in exon 1 of the AMACR gene at p.Gly175Asp position. The mutation was also found in some of the unaffected members as well as in the control samples. As the mutation was found in the healthy samples as well, it can be said that the current mutation AMACR can be involved in some other forms of peripheral neuropathy which can be with other phenotypes."	"Multiple myosin motors interact with sodium/potassium-ATPase alpha 1 subunits. The alpha1 (α1) subunit of the sodium/potassium ATPase (i.e., Na<sup>+</sup>/K<sup>+</sup>-ATPase α1), the prototypical sodium pump, is expressed in each eukaryotic cell. They pump out three sodium ions in exchange for two extracellular potassium ions to establish a cellular electrochemical gradient important for firing of neuronal and cardiac action potentials. We hypothesized that myosin (myo or myh) motor proteins might interact with Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits in order for them to play an important role in the transport and trafficking of sodium pump. To this end immunoassays were performed to determine whether class II non-muscle myosins (i.e., NMHC-IIA/myh9, NMHC-IIB/myh10 or NMHC-IIC/myh14), myosin Va (myoVa) and myosin VI (myoVI) would interact with Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits. Immunoprecipitation of myh9, myh10, myh14, myoVa and myoVI from rat brain tissues led to the co-immunoprecipitation of Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits expressed there. Heterologous expression studies using HEK293 cells indicated that recombinant myh9, myh10, myh14 and myoVI interact with Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits expressed in HEK293 cells. Additional results indicated that loss of tail regions in recombinant myh9, myh10, myh14 and myoVI did not affect their interaction with Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits. However, recombinant myh9, myh10 and myh14 mutants having reduced or no actin binding ability, as a result of loss of their actin binding sites, displayed greatly reduced or null interaction with Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits. These results suggested the involvement of the actin binding site, but not tail regions, of NMHC-IIs in their interaction with Na<sup>+</sup>/K<sup>+</sup>-ATPase α1 subunits. Overall these results suggest a role for these diverse myosins in the trafficking and transport of sodium pump in neuronal and non-neuronal tissues."	"Replacing nonmuscle myosin 2A with myosin 2C1 permits gastrulation but not placenta vascular development in mice. Three paralogues of nonmuscle myosin 2 (NM 2A, 2B, and 2C) are expressed in mammals, and the heavy chains are the products of three different genes (Myh9, Myh10, and Myh14, respectively). NM 2A and 2B are essential for mouse development, while 2C is not. Studies on NM 2C are limited and the in vivo function of this paralogue is not clear. Using homologous recombination, cDNA encoding nonmuscle myosin heavy chain 2C1 fused with GFP was introduced into the first coding exon of Myh9, replacing NM 2A expression with NM 2C1 expression in mice. In contrast to A<sup>-</sup>/A<sup>-</sup> embryos, which die by embryonic day (E) 6.5, A<sup>C1*gfp</sup>/A<sup>C1*gfp</sup> embryos survive through E8.5, demonstrating that NM 2C1 can support mouse development beyond gastrulation. At E9.5 and E10.5, however, A<sup>C1*gfp</sup>/A<sup>C1*gfp</sup> embryos are developmentally delayed, with abnormalities in placental vascular formation. The defect in vascular formation is confirmed in allantois explants from A<sup>C1*gfp</sup>/A<sup>C1*gfp</sup> embryos. Thus, NM 2C1 cannot support normal placental vascular formation. In addition, A<sup>C1*gfp</sup>/A<sup>C1*gfp</sup> mouse embryonic fibroblasts (MEFs) migrate rapidly but with impaired persistence and develop smaller, less mature focal adhesions than A<sup>+</sup>/A<sup>+</sup> MEFs. This is attributed to enhanced NM 2C1 actomyosin stability and different NM 2C1 subcellular localization than in NM 2A."	"SOX9 is dispensable for the initiation of epigenetic remodeling and the activation of marker genes at the onset of chondrogenesis. SOX9 controls cell lineage fate and differentiation in major biological processes. It is known as a potent transcriptional activator of differentiation-specific genes, but its earliest targets and its contribution to priming chromatin for gene activation remain unknown. Here, we address this knowledge gap using chondrogenesis as a model system. By profiling the whole transcriptome and the whole epigenome of wild-type and Sox9-deficient mouse embryo limb buds, we uncover multiple structural and regulatory genes, including Fam101a, Myh14, Sema3c and Sema3d, as specific markers of precartilaginous condensation, and we provide evidence of their direct transactivation by SOX9. Intriguingly, we find that SOX9 helps remove epigenetic signatures of transcriptional repression and establish active-promoter and active-enhancer marks at precartilage- and cartilage-specific loci, but is not absolutely required to initiate these changes and activate transcription. Altogether, these findings widen our current knowledge of SOX9 targets in early chondrogenesis and call for new studies to identify the pioneer and transactivating factors that act upstream of or along with SOX9 to prompt chromatin remodeling and specific gene activation at the onset of chondrogenesis and other processes."	"Quantitative Proteomic Analysis Identifies AHNAK (Neuroblast Differentiation-associated Protein AHNAK) as a Novel Candidate Biomarker for Bladder Urothelial Carcinoma Diagnosis by Liquid-based Cytology. Cytological examination of urine is the most widely used noninvasive pathologic screen for bladder urothelial carcinoma (BLCA); however, inadequate diagnostic accuracy remains a major challenge. We performed mass spectrometry-based proteomic analysis of urine samples of ten patients with BLCA and ten paired patients with benign urothelial lesion (BUL) to identify ancillary proteomic markers for use in liquid-based cytology (LBC). A total of 4,839 proteins were identified and 112 proteins were confirmed as expressed at significantly different levels between the two groups. We also performed an independent proteomic profiling of tumor tissue samples where we identified 7,916 proteins of which 758 were differentially expressed. Cross-platform comparisons of these data with comparative mRNA expression profiles from The Cancer Genome Atlas identified four putative candidate proteins, AHNAK, EPPK1, MYH14 and OLFM4. To determine their immunocytochemical expression levels in LBC, we examined protein expression data from The Human Protein Atlas and in-house FFPE samples. We further investigated the expression of the four candidate proteins in urine cytology samples from two independent validation cohorts. These analyses revealed AHNAK as a unique intracellular protein differing in immunohistochemical expression and subcellular localization between tumor and non-tumor cells. In conclusion, this study identified a new biomarker, AHNAK, applicable to discrimination between BLCA and BUL by LBC. To our knowledge, the present study provides the first identification of a clinical biomarker for LBC based on in-depth proteomics."	"Accumulation of poly(A) RNA in nuclear granules enriched in Sam68 in motor neurons from the SMNΔ7 mouse model of SMA. Spinal muscular atrophy (SMA) is a severe motor neuron (MN) disease caused by the deletion or mutation of the survival motor neuron 1 (SMN1) gene, which results in reduced levels of the SMN protein and the selective degeneration of lower MNs. The best-known function of SMN is the biogenesis of spliceosomal snRNPs, the major components of the pre-mRNA splicing machinery. Therefore, SMN deficiency in SMA leads to widespread splicing abnormalities. We used the SMN∆7 mouse model of SMA to investigate the cellular reorganization of polyadenylated mRNAs associated with the splicing dysfunction in MNs. We demonstrate that SMN deficiency induced the abnormal nuclear accumulation in euchromatin domains of poly(A) RNA granules (PARGs) enriched in the splicing regulator Sam68. However, these granules lacked other RNA-binding proteins, such as TDP43, PABPN1, hnRNPA12B, REF and Y14, which are essential for mRNA processing and nuclear export. These effects were accompanied by changes in the alternative splicing of the Sam68-dependent Bcl-x and Nrnx1 genes, as well as changes in the relative accumulation of the intron-containing Chat, Chodl, Myh9 and Myh14 mRNAs, which are all important for MN functions. PARG-containing MNs were observed at presymptomatic SMA stage, increasing their number during the symptomatic stage. Moreover, the massive accumulations of poly(A) RNA granules in MNs was accompanied by the cytoplasmic depletion of polyadenylated mRNAs for their translation. We suggest that the SMN-dependent abnormal accumulation of polyadenylated mRNAs and Sam68 in PARGs reflects a severe dysfunction of both mRNA processing and translation, which could contribute to SMA pathogenesis."	"Mammalian nonmuscle myosin II comes in three flavors. Nonmuscle myosin II is an actin-based motor that executes numerous mechanical tasks in cells including spatiotemporal organization of the actin cytoskeleton, adhesion, migration, cytokinesis, tissue remodeling, and membrane trafficking. Nonmuscle myosin II is ubiquitously expressed in mammalian cells as a tissue-specific combination of three paralogs. Recent studies reveal novel specific aspects of their kinetics, intracellular regulation and functions. On the other hand, the three paralogs also can copolymerize and cooperate in cells. Here we review the recent advances from the prospective of how distinct features of the three myosin II paralogs adapt them to perform specialized and joint tasks in the cell."	"Identification by proteomics of oviductal sperm-interacting proteins. The interactions between oviductal fluid (OF) proteins and spermatozoa play major roles in sperm selection, storage and capacitation before fertilization. However, only a few sperm-interacting proteins in the OF has been identified and very little is known about the regulation of sperm-oviduct interactions across the estrous cycle. Samples of bovine frozen-thawed sperm from three bulls were incubated with OF at pre-, post-ovulatory stages (Pre-/Post-ov) or luteal phase (LP) of the estrous cycle (7 mg/mL proteins, treated groups) or with a protein-free media (control). The proteomes of sperm cells were assessed by nanoLC-MS/MS and quantified by label-free methods. A total of 27 sperm-interacting proteins originating in the OF were identified. Among those, 14 were detected at all stages, eight at Post-ov and LP and five only at LP. The sperm-interacting proteins detected at all stages or at LP and Post-ov were on average more abundant at LP than at other stages (P &lt; 0.05). At Pre-ov, OVGP1 was the most abundant sperm-interacting protein while at Post-ov, ACTB, HSP27, MYH9, MYH14 and OVGP1 were predominant. Different patterns of abundance of sperm-interacting proteins related to the stage were evidenced, which greatly differed from those previously reported in the bovine OF. In conclusion, this study highlights the important regulations of sperm-oviduct interactions across the estrous cycle and provides new protein candidates that may modulate sperm functions."	"Transcriptomic Profiles of Brain Provide Insights into Molecular Mechanism of Feed Conversion Efficiency in Crucian Carp (Carassius auratus). Feed efficiency is an economically crucial trait for cultured animals, however, progress has been scarcely made in the genetic analyses of feed conversion efficiency (FCE) in fish because of the difficulties in measurement of trait phenotypes. In the present investigation, we present the first application of RNA sequencing (RNA-Seq) combined with differentially expressed genes (DEGs) analysis for identification of functional determinants related to FCE at the gene level in an aquaculture fish, crucian carp (Carassius auratus). Brain tissues of six crucian carp with extreme FCE performances were subjected to transcriptome analysis. A total of 544,612 unigenes with a mean size of 644.38 bp were obtained from Low- and High-FCE groups, and 246 DEGs that may be involved in FCE traits were identified in these two groups. qPCR confirmed that genes previously identified as up- or down-regulated by RNA-Seq were effectively up- or down-regulated under the studied conditions. Thirteen key genes, whose functions are associated with metabolism (Dgkk, Mgst3 and Guk1b), signal transduction (Vdnccsa1b, Tgfα, Nr4a1 and Tacr2) and growth (Endog, Crebrtc2, Myh7, Myh1,Myh14 and Igfbp7) were identified according to GO (Gene Ontology) and KEGG (Kyoto Encyclopedia of Genes and Genomes) annotations. Our novel findings provide useful pathway information and candidate genes for future studies of genetic mechanisms underlying FCE in crucian carp."	"Angiogenesis and evading immune destruction are the main related transcriptomic characteristics to the invasive process of oral tongue cancer. Metastasis of head and neck tumors is responsible for a high mortality rate. Understanding its biochemistry may allow insights into tumorigenesis. To that end we carried out RNA-Seq analyses of 5 SCC9 derived oral cancer cell lines displaying increased invasive potential. Differentially expressed genes (DEGs) were annotated based on p-values and false discovery rate (q-values). All 292 KEGG pathways related to the human genome were compared in order to pinpoint the absolute and relative contributions to the invasive process considering the 8 hallmarks of cancer plus 2 new defined categories, as well as we made with our transcriptomic data. In terms of absolute contribution, the highest correlations were associated to the categories of evading immune destruction and energy metabolism and for relative contributions, angiogenesis and evading immune destruction. DEGs were distributed into each one of all possible modes of regulation, regarding up, down and continuum expression, along the 3 stages of metastatic progression. For p-values twenty-six genes were consistently present along the tumoral progression and 4 for q-values. Among the DEGs, we found 2 novel potentially informative metastatic markers: PIGG and SLC8B1. Furthermore, interactome analysis showed that MYH14, ANGPTL4, PPARD and ENPP1 are amenable to pharmacological interventions."	"Effect of GRM7 polymorphisms on the development of noise-induced hearing loss in Chinese Han workers: a nested case-control study. Noise-induced hearing loss (NIHL) is a complex, irreversible disease caused by the interaction of genetic and environmental factors. In recent years, a great many studies have been done to explore the NIHL susceptibility genes among humans. So far, high powerful detections have been founded that genes of potassium ion channel genes (KCNQ4 and KCNE1), catalase (CAT), protocadherin 15 (PCDH15), myosin 14 (MYH14) and heart shock protein (HSP70) which have been identified in more than one population may be associated with the susceptibility to NIHL. As for metabolic glutamate receptor7 gene (GRM7), a lot of researches mainly focus on age-related hearing loss (ARHL) and the results have shown that the polymorphisms of GRM7 are linked to the development of ARHL. However, little is known about the association of GRM7 and the susceptibility to NIHL. Therefore, the aim of this study was to explore the effect of GRM7 polymorphisms on the susceptibility to NIHL. A nested case-control study based on the cohort in a Chinese steel factory was implemented in 292 cases and 584 controls matched with the same sex, the age difference ≤ 5 years old, the same type of work, duration of occupational noise exposure ≤2 years. Five single nucleotide polymorphisms (SNPs) of GRM7 were gained through selecting and genotyping SNPs. Conditional logistic regression analysis was used to assess the main effect of GRM7 polymorphisms on the susceptibility to NIHL and the gene-by-environment interaction. Furthermore, the gene-by-gene interactions were analyzed by generalized multiple dimensionality reduction (GMDR). This research discovered for the first time that the mutant allele C in rs1485175 of the GMR7 may decrease individuals' susceptibility to NIHL. The interaction between rs1485175 and cumulative noise exposure (CNE) at high level was found after the stratification according to CNE (p/p bon = 0.014/0.007, OR = 0.550, 95% CI: 0.340-0.891). Permutation test of GMDR suggested that rs1920109, rs1485175 and rs9826579 in GRM7 might interact with each other in the process of developing NIHL (p = 0.037). The results suggest that the mutant allele C of rs1485175 in GRM7 may reduce the susceptibility to NIHL in Chinese Han population."	"Nonmuscle myosin 2 proteins encoded by Myh9, Myh10, and Myh14 are uniquely distributed in the tubular segments of murine kidney. The diverse epithelial cell types of the kidneys are segregated into nephron segments and the collecting ducts in order to endow each tubular segment with unique functions. The rich diversity of the epithelial cell types is highlighted by the unique membrane channels and receptors expressed within each nephron segment. Our previous work identified a critical role for Myh9 and Myh10 in mammalian endocytosis. Here, we examined the expression patterns of Nonmuscle myosin 2 (NM2) heavy chains encoded by Myh9, Myh10, and Myh14 in mouse kidneys as these genes may confer unique nephron segment-specific membrane transport properties. Interestingly, we found that each segment of the renal tubules predominately expressed only two of the three NM2 isoforms, with isoform-specific subcellular localization, and different levels of expression within a nephron segment. Additionally, we identify Myh14 to be restricted to the intercalated cells and Myh10 to be restricted to the principal cells within the collecting ducts and connecting segments. We speculate that the distinct expression pattern of the NM2 proteins likely reflects the diversity of the intracellular trafficking machinery present within the different renal tubular epithelial segments."	"Mosaic loss of non-muscle myosin IIA and IIB is sufficient to induce mammary epithelial proliferation. The mammary epithelium elaborates through hormonally regulated changes in proliferation, migration and differentiation. Non-muscle myosin II (NMII) functions at the interface between contractility, adhesion and signal transduction. It is therefore a plausible regulator of mammary morphogenesis. We tested the genetic requirement for NMIIA and NMIIB in mammary morphogenesis through deletion of the three NMII heavy chain-encoding genes (NMHCIIA, NMHCIIB and NMHCIIC; also known as MYH9, MYH10 and MYH14, respectively) that confer specificity to the complex. Surprisingly, mosaic loss, but not ubiquitous loss, of NMHCIIA and NMHCIIB induced high levels of proliferation in 3D culture. This phenotype was observed even when cells were cultured in basal medium, which does not support tissue level growth of wild-type epithelium. Mosaic loss of NMIIA and NMIIB combined with FGF signaling to induce hyperplasia. Mosaic analysis revealed that the cells that were null for both NMIIA and NMIIB, as well as wild-type cells, proliferated, indicating that the regulation of proliferation is both cell autonomous and non-autonomous within epithelial tissues. This phenotype appears to be mediated by cell-cell contact, as co-culture did not induce proliferation. Mosaic loss of NMIIA and NMIIB also induced excess proliferation in vivo Our data therefore reveal a role for NMIIA and NMIIB as negative regulators of proliferation in the mammary epithelium."	"Genome-wide analysis of differential DNA methylation in Silver-Russell syndrome. Silver-Russell Syndrome (SRS) is clinically heterogeneous disorder characterized by low birth weight, postnatal growth restriction, and variable dysmorphic features. Current evidence strongly implicates imprinted genes as an important etiology of SRS. Although almost half of the patients showed DNA hypomethylation at the H19/IGF2 imprinted domain, and approximately 7%-10% of SRS patients have maternal uniparental disomy of chromosome 7 (UPD (7) mat); the rest of the SRS patients shows unknown etiology. In this study, we investigate whether there are further DNA methylation defects in SRS patients. We measured DNA methylation in seven SRS patients and five controls at more than 485,000 CpG sites using DNA methylation microarrays. We analyzed methylation changes genome-wide and identified the differentially methylated regions (DMRs) using bisulfite sequencing and digital PCR. Our analysis identifies epimutations at the previously characterized domains of H19/IGF2, providing proof of principle that our methodology can detect the changes in DNA methylation at imprinted loci. In addition, our results showed a novel SRS associated imprinted gene OSBPL5 located on chromosome 11p14 with the probe cg25963939, which is hypomethylated in 4/7 patients (P=0.023, β=-0.243). We also report DMRs in other genes including TGFβ3, HSF1, GAP43, NOTCH4 and MYH14. These DMRs were found to be associated with SRS using GO pathway analysis. In this study, we identified the probe cg25963939, located at the 5'UTR of imprinted gene OSBPL5, as a novel DMR that is associated with SRS. This finding provides new insights into the mechanism of SRS etiology and aid the further stratification of SRS patients by molecular phenotypes."	"Systematic identification of cancer-related long noncoding RNAs and aberrant alternative splicing of quintuple-negative lung adenocarcinoma through RNA-Seq. Lung adenocarcinoma (LUAD) is a common subtype of non-small cell lung cancer prevalent in Asia. There is a dearth of understanding regarding the transcriptome landscape of LUAD without primary known driver mutations. In this study, LUAD samples without well-known driver mutations occurring in EGFR, KRAS, ALK, ROS1 or RET (quintuple-negative) were used for transcriptome study with a focus on long noncoding RNAs (lncRNAs), alternative splicing and gene fusions. 24 pairs of LUAD and adjacent normal samples and 13 tumor-only samples derived from 37 quintuple-negative patients were used. Differentially expressed lncRNA transcripts were detected by paired t-test and were validated by qPCR. Functions of lncRNAs were predicted by co-expressed mRNAs. Aberrant splicing events in LUAD were identified using MISO. In addition, gene fusions were screened by SOAPfuse. In total, 90 and 153 up- or down-regulated lncRNA transcripts were detected in LUAD samples in comparison with the adjacent normal samples. The most significantly differentially expressed lncRNA transcript was ENST00000598996.1 (FENDRR) down-regulated in LUAD. By lncRNA-mRNA co-expression analysis, functions of 14 lncRNAs were predicted. The predicted functions included vasculature development, immune response, cell cycle and respiratory gaseous exchange. Furthermore, six co-expressed pairs of lncRNAs and their nearby protein coding genes were identified as associated with lung development. This study also identified two highly recurrent (22 in 24) differential exon skipping events occurring in MYH14 and ESYT2 with exon including isoforms of both genes up-regulated in isoform percentage in LUAD samples. On the other hand, two out of 24 LUAD samples possessed the driver mutation exon 14 skipping of MET. The transcriptional alterations of LUAD samples without well-known driver mutations identified in the study can be used as references for future research. The translational values of these transcriptional changes are also worthy of further investigation."	"Discovery of MYH14 as an important and unique deafness gene causing prelingually severe autosomal dominant nonsyndromic hearing loss. Pathogenic variants of MYH14 are known to be associated (in either a syndromic or nonsyndromic manner) with hearing loss. Interestingly, all reported cases to date of MYH14-related nonsyndromic hearing loss with detailed phenotypes have demonstrated mild-to-moderate progressive hearing loss with postlingual onset. In the present study, targeted resequencing (TRS) of known deafness genes was performed to identify the causative variant in two multiplex families segregating autosomal dominant (AD) inherited hearing loss. TRS uncovered two novel variants of MYH14 (c.A572G: p.Asp191Gly in the myosin head domain and c.C73T:p.Gln25* in exon 2) from two multiplex deafness Korean families. Notably, both probands showed phenotypes of congenital or prelingual severe hearing loss. It is remarkably uncommon to encounter such a severe-to-profound, prelingual, AD hearing loss. Given that the first variant, p. Asp191Gly, was the first documented missense allele discovered in the myosin head domain of this gene related to either congenital or prelingual severe nonsyndromic hearing loss, and also that the second variant, p. Gln25*, lead to a null allele, more severe phenotypes from our probands may have been the result of either genotype-phenotype correlation or genetic backgrounds, or both. In the present study, we report that MYH14 can manifest as nonsyndromic prelingual severe sensorineural hearing loss in an AD fashion in Koreans. The results of the present study suggest that further genetic studies of similar patients should consider MYH14 as a causative gene, and cochlear implantation during infant or early childhood should be indicated for those patients with certain MYH14 pathogenic variants."	"Mutations of MYH14 are associated to anorectal malformations with recto-perineal fistulas in a small subset of Chinese population. Anorectal malformations (ARMs) are among the most commonly congenital abnormalities of distal hindgut development, ranging from anal stenosis to anal atresia with or without fistulas and persistent cloaca. The etiology remains elusive for most ARM cases and the majority of genetic studies on ARMs were based on a candidate gene approach. In all eight family members of a non-consanguineous Chinese family, we performed whole-exome sequencing. Subsequently, exome sequencing of MYH14 in 72 unrelated probands with ARMs was performed. The accurate distribution of non-muscle myosin II heavy chain (NMHC II) was investigated by immunohistochemistry in serial sagittal sections of E11.5-13.5 mouse cloacal regions. A homozygous mutation in MYH14 was identified in the two siblings of family 1. Compound heterozygous MYH14 changes were identified in an unrelated individual. Immunohistochemical analysis suggest stronger NMHC IIC localization in the epithelium of the murine embryonic cloaca, urorectal septum and hindgut compared with another two NMHC II isoforms. This is the first identification of mutations in MYH14 as a cause of ARMs. The stronger localization of NMHC IIC in E11.5-13.5 mouse cloacal regions further supports the role of MYH14 in anorectal development."	"Loss of Myh14 Increases Susceptibility to Noise-Induced Hearing Loss in CBA/CaJ Mice. MYH14 is a member of the myosin family, which has been implicated in many motile processes such as ion-channel gating, organelle translocation, and the cytoskeleton rearrangement. Mutations in MYH14 lead to a DFNA4-type hearing impairment. Further evidence also shows that MYH14 is a candidate noise-induced hearing loss (NIHL) susceptible gene. However, the specific roles of MYH14 in auditory function and NIHL are not fully understood. In the present study, we used CRISPR/Cas9 technology to establish a Myh14 knockout mice line in CBA/CaJ background (now referred to as Myh14<sup>-/-</sup> mice) and clarify the role of MYH14 in the cochlea and NIHL. We found that Myh14<sup>-/-</sup> mice did not exhibit significant hearing loss until five months of age. In addition, Myh14<sup>-/-</sup> mice were more vulnerable to high intensity noise compared to control mice. More significant outer hair cell loss was observed in Myh14<sup>-/-</sup> mice than in wild type controls after acoustic trauma. Our findings suggest that Myh14 may play a beneficial role in the protection of the cochlea after acoustic overstimulation in CBA/CaJ mice."	"Variable phenotypic expression and onset in MYH14 distal hereditary motor neuropathy phenotype in a large, multigenerational North American family. Distal hereditary motor neuropathy (dHMN) causes distal-predominant weakness without prominent sensory loss. Myosin heavy chain disorders most commonly result in distal myopathy and cardiomyopathy with or without hearing loss, but a complex phenotype with dHMN, myopathy, hoarseness, and hearing loss was reported in a Korean family with a c.2822G&gt;T mutation in MYH14. In this study we report phenotypic features in a North American family with the c.2822G&gt;T in MYH14. Clinical and molecular characterization was performed in a large, 6-generation, Caucasian family with MYH14 dHMN. A total of 11 affected and 7 unaffected individuals were evaluated and showed varying age of onset and severity of weakness. Genotypic concordance was confirmed with molecular analysis. Electrophysiological studies demonstrated distal motor axonal degeneration without myopathy in all affected subjects tested. Mutation of MYH14 can result in a range of neuromuscular phenotypes that includes a dHMN and hearing loss phenotype with variable age of onset. Muscle Nerve 56: 341-345, 2017."	"Cytosolic proteome profiling of monocytes for male osteoporosis. In male Caucasians with discordant hip bone mineral density (BMD), we applied the subcellular separation and proteome profiling to investigate the monocytic cytosol. Three BMD-associated proteins (ALDOA, MYH14, and Rap1B) were identified based on multiple omics evidence, and they may influence the pathogenic mechanisms of osteoporosis by regulating the activities of monocytes. Osteoporosis is a serious public health problem, leading to significant mortality not only in aging females but also in males. Peripheral blood monocytes (PBMs) play important roles in bone metabolism by acting as precursors of osteoclasts and producing cytokines important for osteoclast development. The first cytosolic sub-proteome profiling analysis was performed in male PBMs to identify differentially expressed proteins (DEPs) that are associated with BMDs and risk of osteoporosis. Here, we conducted a comparative proteomics analysis in PBMs from Caucasian male subjects with discordant hip BMD (29 low BMD vs. 30 high BMD). To decrease the proteome complexity and expand the coverage range of the cellular proteome, we separated the PBM proteome into several subcellular compartments and focused on the cytosolic fractions, which are involved in a wide range of fundamental biochemical processes. Of the total of 3796 detected cytosolic proteins, we identified 16 significant (P &lt; 0.05) and an additional 22 suggestive (P &lt; 0.1) DEPs between samples with low vs. high hip BMDs. Some of the genes for DEPs, including ALDOA, MYH14, and Rap1B, showed an association with BMD in multiple omics studies (proteomic, transcriptomic, and genomic). Further bioinformatics analysis revealed the enrichment of DEPs in functional terms for monocyte proliferation, differentiation, and migration. The combination strategy of subcellular separation and proteome profiling allows an in-depth and refined investigation into the composition and functions of cytosolic proteome, which may shed light on the monocyte-mediated pathogenic mechanisms of osteoporosis."	"Coupling of mitochondrial function and skeletal muscle fiber type by a miR-499/Fnip1/AMPK circuit. Upon adaption of skeletal muscle to physiological and pathophysiological stimuli, muscle fiber type and mitochondrial function are coordinately regulated. Recent studies have identified pathways involved in control of contractile proteins of oxidative-type fibers. However, the mechanism for coupling of mitochondrial function to the muscle contractile machinery during fiber type transition remains unknown. Here, we show that the expression of the genes encoding type I myosins, Myh7/Myh7b and their intronic miR-208b/miR-499, parallels mitochondrial function during fiber type transitions. Using in vivo approaches in mice, we found that miR-499 drives a PGC-1α-dependent mitochondrial oxidative metabolism program to match shifts in slow-twitch muscle fiber composition. Mechanistically, miR-499 directly targets Fnip1, an AMP-activated protein kinase (AMPK)-interacting protein that negatively regulates AMPK, a known activator of PGC-1α. Inhibition of Fnip1 reactivated AMPK/PGC-1α signaling and mitochondrial function in myocytes. Restoration of the expression of miR-499 in the mdx mouse model of Duchenne muscular dystrophy (DMD) reduced the severity of DMD Thus, we have identified a miR-499/Fnip1/AMPK circuit that can serve as a mechanism to couple muscle fiber type and mitochondrial function."	"Genetic association of MYH genes with hereditary hearing loss in Korea. Myosin is a key protein involved in regulating the shape and motility of cells. The MYH9 and MYH14 genes, which encode non-muscle myosin heavy chain IIA (NMMHC II-A) and IIC (NMMHC II-C), respectively, are expressed in the inner ear. These myosin genes are known to be associated with autosomal dominant non-syndromic hearing loss (ADNSHL); however, genetic studies in patients with ADNSHL in Korea have rarely been reported. We analyzed the MYH9 and MYH14 genes in 75 Korean patients with ADNSHL. We identified 4 possible pathogenic variants: a novel variant p.F1303L and 2 previously reported variants (p.R1730C and p.R1785C) in the MYH9 gene, and a novel variant p.A1868T in the MYH14 gene. All the variants were located in the myosin tail domain, which is essential for the interaction of myosin with actin. These variants were predicted to be possibly pathogenic by functional prediction tools and were absent in 100 unrelated normal controls. These results suggest that all the variants identified in this study have a strong potential to affect the structural stability and/or function of non-muscle myosin in the inner ear, which might lead to ADNSHL. This study establishes the link between the genotype and development of ADNSHL and contributes to the establishment of Korean database for hereditary hearing loss."	"Genetic Dissection of Cardiac Remodeling in an Isoproterenol-Induced Heart Failure Mouse Model. We aimed to understand the genetic control of cardiac remodeling using an isoproterenol-induced heart failure model in mice, which allowed control of confounding factors in an experimental setting. We characterized the changes in cardiac structure and function in response to chronic isoproterenol infusion using echocardiography in a panel of 104 inbred mouse strains. We showed that cardiac structure and function, whether under normal or stress conditions, has a strong genetic component, with heritability estimates of left ventricular mass between 61% and 81%. Association analyses of cardiac remodeling traits, corrected for population structure, body size and heart rate, revealed 17 genome-wide significant loci, including several loci containing previously implicated genes. Cardiac tissue gene expression profiling, expression quantitative trait loci, expression-phenotype correlation, and coding sequence variation analyses were performed to prioritize candidate genes and to generate hypotheses for downstream mechanistic studies. Using this approach, we have validated a novel gene, Myh14, as a negative regulator of ISO-induced left ventricular mass hypertrophy in an in vivo mouse model and demonstrated the up-regulation of immediate early gene Myc, fetal gene Nppb, and fibrosis gene Lgals3 in ISO-treated Myh14 deficient hearts compared to controls."	"Evolution and Distribution of Teleost myomiRNAs: Functionally Diversified myomiRs in Teleosts. Myosin heavy chain (MYH) genes belong to a multigene family, and the regulated expression of each member determines the physiological and contractile muscle properties. Among these, MYH6, MYH7, and MYH14 occupy unique positions in the mammalian MYH gene family because of their specific expression in slow/cardiac muscles and the existence of intronic micro(mi) RNAs. MYH6, MYH7, and MYH14 encode miR-208a, miR-208b, and miR-499, respectively. These MYH encoded miRNAs are designated as myomiRs because of their muscle-specific expression and functions. In mammals, myomiRs and host MYHs form a transcription network involved in muscle fiber-type specification; thus, genomic positions and expression patterns of them are well conserved. However, our previous studies revealed divergent distribution and expression of MYH14/miR-499 among teleosts, suggesting the unique evolution of myomiRs and host MYHs in teleosts. Here, we examined distribution and expression of myomiRs and host MYHs in various teleost species. The major cardiac MYH isoforms in teleosts are an intronless gene, atrial myosin heavy chain (amhc), and ventricular myosin heavy chain (vmhc) gene that encodes an intronic miRNA, miR-736. Phylogenetic analysis revealed that vmhc/miR-736 is a teleost-specific myomiR that differed from tetrapoda MYH6/MYH7/miR-208s. Teleost genomes also contain species-specific orthologs in addition to vmhc and amhc, indicating complex gene duplication and gene loss events during teleost evolution. In medaka and torafugu, miR-499 was highly expressed in slow/cardiac muscles whereas the expression of miR-736 was quite low and not muscle specific. These results suggest functional diversification of myomiRs in teleost with the diversification of host MYHs. "	"SDCCAG8 Interacts with RAB Effector Proteins RABEP2 and ERC1 and Is Required for Hedgehog Signaling. Recessive mutations in the SDCCAG8 gene cause a nephronophthisis-related ciliopathy with Bardet-Biedl syndrome-like features in humans. Our previous characterization of the orthologous Sdccag8gt/gt mouse model recapitulated the retinal-renal disease phenotypes and identified impaired DNA damage response signaling as an underlying disease mechanism in the kidney. However, several other phenotypic and mechanistic features of Sdccag8gt/gt mice remained unexplored. Here we show that Sdccag8gt/gt mice exhibit developmental and structural abnormalities of the skeleton and limbs, suggesting impaired Hedgehog (Hh) signaling. Indeed, cell culture studies demonstrate the requirement of SDCCAG8 for ciliogenesis and Hh signaling. Using an affinity proteomics approach, we demonstrate that SDCCAG8 interacts with proteins of the centriolar satellites (OFD1, AZI1), of the endosomal sorting complex (RABEP2, ERC1), and with non-muscle myosin motor proteins (MYH9, MYH10, MYH14) at the centrosome. Furthermore, we show that RABEP2 localization at the centrosome is regulated by SDCCAG8. siRNA mediated RABEP2 knockdown in hTERT-RPE1 cells leads to defective ciliogenesis, indicating a critical role for RABEP2 in this process. Together, this study identifies several centrosome-associated proteins as novel SDCCAG8 interaction partners, and provides new insights into the function of SDCCAG8 at this structure."	"Expression and identification of 10 sarcomeric MyHC isoforms in human skeletal muscles of different embryological origin. Diversity and similarity in mammalian species. In the mammalian genome, among myosin heavy chain (MyHC) isoforms a family can be identified as sarcomeric based on their molecular structure which allows thick filament formation. In this study we aimed to assess the expression of the 10 sarcomeric isoforms in human skeletal muscles, adopting this species as a reference for comparison with all other mammalian species. To this aim, we set up the condition for quantitative Real Time PCR assay to detect and quantify MyHC mRNA expression in a wide variety of human muscles from somitic, presomitic and preotic origin. Specific patterns of expression of the following genes MYH1, MYH2, MYH3, MYH4, MYH6, MYH7, MYH8, MYH13, MYH14/7b and MYH15 were demonstrated in various muscle samples. On the same muscle samples which were analysed for mRNA expression, the corresponding MyHC proteins were studied with SDS PAGE and Western blot. The mRNA-protein comparison allowed the identification of 10 distinct proteins based on the electrophoretic migration rate. Three groups were formed based on the migration rate: fast migrating comprising beta/slow/1, alpha cardiac and fast 2B, slow migrating comprising fast 2X, fast 2A and two developmental isoforms (NEO and EMB), intermediate migrating comprising EO MyHC, slow B (product of MYH15), slow tonic (product of MYH14/7b). Of special interest was the demonstration of a protein band corresponding to 2B-MyHC in laryngeal muscles and the finding that all 10 isoforms are expressed in extraocular muscles. These latter muscles are the unique localization for extraocular, slow B (product of MYH15) and slow tonic (product of MYH14/7b). "	"Gene Expression Profiling of H9c2 Cells Subjected to H2O2-Induced Apoptosis with/without AF-HF001. Heart failure represents a major health problem. The development of new drugs to treat this condition is essential. We previously discovered that AF-001 attenuates the cardiac defects caused by heart failure in zebrafish. In this paper, we report the identification of AF-HF001, an AF-001 derivative, and its effects on live cardiomyocytes subjected to oxidative damage. The in vitro results demonstrated that AF-HF001 attenuates the production of reactive oxygen species (ROS) and the myocardial cell apoptosis. A DNA microarray was performed to broadly analyze gene expression after H2O2 treatment with or without AF-HF001. Hierarchical clustering analysis revealed that AF-HF001 modifies the expression of certain genes (Ndufs2, Ndufb6, Ndufb8, Ndufa13, Ndufs3, Ndufs5, TPM1, MYH14, RyR1, and TIMP4) related to ROS production, cardiac contractility and extracellular matrix remodeling. AF-HF001 ameliorates oxidative damage, which may be related to the mitogen-activated protein kinase (MAPK) family and the intrinsic mitochondrial pathway. Altogether, this study suggests that AF-HF001 exhibits potential as a clinical drug candidate for the treatment of heart failure. "	"Input-specific regulation of hippocampal circuit maturation by non-muscle myosin IIB. Myh9 and Myh10, which encode two major isoforms of non-muscle myosin II expressed in the brain, have emerged as risk factors for developmental brain disorders. Myosin II motors regulate neuronal cytoskeletal dynamics leading to optimization of synaptic plasticity and memory formation. However, the role of these motor complexes in brain development remains poorly understood. Here, we disrupted the in vivo expression of Myh9 and/or Myh10 in developing hippocampal neurons to determine how these motors contribute to circuit maturation in this brain area important for cognition. We found that Myh10 ablation in early postnatal, but not mature, CA1 pyramidal neurons reduced excitatory synaptic function in the Schaffer collateral pathway, whereas more distal inputs to CA1 neurons were relatively unaffected. Myh10 ablation in young neurons also selectively impaired the elongation of oblique dendrites that receive Schaffer collateral inputs, whereas the structure of distal dendrites was normal. We observed normal spine density and spontaneous excitatory currents in these neurons, indicating that Myh10 KO impaired proximal pathway synaptic maturation through disruptions to dendritic development rather than post-synaptic strength or spine morphogenesis. To address possible redundancy and/or compensation by other Myosin II motors expressed in neurons, we performed similar experiments in Myh9 null neurons. In contrast to findings in Myh10 mutants, evoked synaptic function in young Myh9 KO hippocampal neurons was normal. Data obtained from double Myh9/Myh10 KO neurons largely resembled the MyH10 KO synaptic phenotype. These data indicate that Myosin IIB is a key molecular factor that guides input-specific circuit maturation in the developing hippocampus. Non-muscle myosin II is an actin binding protein with three isoforms in the brain (IIA, IIB and IIC) encoded by the myh9, myh10, and myh14 genes in mice, respectively. We have studied the structure and the function of hippocampal CA1 neurons missing NMIIB and/or NMIIA proteins at different times during development. We have discovered that NMIIB is the major isoform regulating Schaffer collateral inputs, and that this regulation is restricted to early postnatal development. "	"Whole-exome sequencing reveals diverse modes of inheritance in sporadic mild to moderate sensorineural hearing loss in a pediatric population. This study was designed to delineate genetic contributions, if any, to sporadic forms of mild to moderate sensorineural hearing loss (SNHL) not related to GJB2 mutations (DFNB1) in a pediatric population. We recruited 11 non-DFNB1 simplex cases of mild to moderate SNHL in children. We applied whole-exome sequencing to all 11 probands. We used a filtering strategy assuming that de novo variants of known autosomal dominant (AD) deafness genes, biallelic mutations in autosomal recessive (AR) genes, monoallelic mutations in X chromosome genes for males, and digenic inheritance could be associated. Candidate variants first were prioritized with allele frequency in public databases and confirmed by a phase or a segregation test in each family. Additional information from the literature or public databases was used to identify strong candidate variants. Strong candidate variants were detected in 5 of 11 probands (45.4%). A diverse mode of inheritance implicated the sporadic occurrence of the phenotype. AR mutations in OTOGL and SERPINB6 and digenic inheritance involving two deafness genes, GPR98 and PDZ7, were detected. A de novo AD mutation also was detected in TECTA and MYH14. No syndromic feature was detected in individuals with GPR98/PDZ7 or MYH14 variants in our cohort at this moment. Mild to moderate pediatric SNHL, even if sporadic, features a strong genetic etiology and can manifest via diverse modes of inheritance. In addition, a multidisciplinary approach should be used for a correct diagnosis."	"Pharmacological activation of myosin II paralogs to correct cell mechanics defects. Current approaches to cancer treatment focus on targeting signal transduction pathways. Here, we develop an alternative system for targeting cell mechanics for the discovery of novel therapeutics. We designed a live-cell, high-throughput chemical screen to identify mechanical modulators. We characterized 4-hydroxyacetophenone (4-HAP), which enhances the cortical localization of the mechanoenzyme myosin II, independent of myosin heavy-chain phosphorylation, thus increasing cellular cortical tension. To shift cell mechanics, 4-HAP requires myosin II, including its full power stroke, specifically activating human myosin IIB (MYH10) and human myosin IIC (MYH14), but not human myosin IIA (MYH9). We further demonstrated that invasive pancreatic cancer cells are more deformable than normal pancreatic ductal epithelial cells, a mechanical profile that was partially corrected with 4-HAP, which also decreased the invasion and migration of these cancer cells. Overall, 4-HAP modifies nonmuscle myosin II-based cell mechanics across phylogeny and disease states and provides proof of concept that cell mechanics offer a rich drug target space, allowing for possible corrective modulation of tumor cell behavior. "	"Mertk deficiency alters expression of micrornas in the retinal pigment epithelium cells. Phagocytic clearance of the spent photoreceptor outer segments (OS) by RPE cells is regulated by circadian rhythm cycle and is essential for photoreceptor integrity and function. Mertk regulates RPE phagocytosis and a deficiency in Mertk causes photoreceptor degeneration and visual loss. This study aimed to investigate Mertk regulation of the microRNAs (miRNA), potentially regulating expression of their target genes, which affect phagocytosis. The differentially expressed miRNAs were identified using miRCURY(TM) microRNA Arrays from total RNA isolated at 0900 h and 1900 h from the mechanically dissociated RPE sheets of the WT and Mertk (-/-) mice, which were housed in a 12-h light-dark cycle with the lighting onset at 0700 h (7:00am). Validation of the differentially expressed miRNAs and assessment of the putative miRNA target gene expression were performed by real-time PCR. Among the differentially expressed miRNAs in the Mertk (-/-) RPE, seven miRNAs were up-regulated and 13 were down-regulated in the morning groups. Similarly, 24 miRNAs were found to be up-regulated and 13 were down-regulated in the evening groups. To search for those that may participate in regulating expression of cytoskeletal proteins, we examined the predicted target genes that might participate in phagocytosis were examined by real-time PCR. Of nine potential altered targets, four deregulated genes were myosin subunits. Notably, multiple members of the 21 up-regulated miRNAs can theoretically recognize these down-regulated mRNAs, particularly MyH14 and Myl3. This study shows that loss of Mertk alters miRNA expression, which in turn affects expression of the downstream target genes, potentially affecting phagocytosis. "	"Whole-exome sequencing to decipher the genetic heterogeneity of hearing loss in a Chinese family with deaf by deaf mating. Inherited deafness has been shown to have high genetic heterogeneity. For many decades, linkage analysis and candidate gene approaches have been the main tools to elucidate the genetics of hearing loss. However, this associated study design is costly, time-consuming, and unsuitable for small families. This is mainly due to the inadequate numbers of available affected individuals, locus heterogeneity, and assortative mating. Exome sequencing has now become technically feasible and a cost-effective method for detection of disease variants underlying Mendelian disorders due to the recent advances in next-generation sequencing (NGS) technologies. In the present study, we have combined both the Deafness Gene Mutation Detection Array and exome sequencing to identify deafness causative variants in a large Chinese composite family with deaf by deaf mating. The simultaneous screening of the 9 common deafness mutations using the allele-specific PCR based universal array, resulted in the identification of the 1555A&gt;G in the mitochondrial DNA (mtDNA) 12S rRNA in affected individuals in one branch of the family. We then subjected the mutation-negative cases to exome sequencing and identified novel causative variants in the MYH14 and WFS1 genes. This report confirms the effective use of a NGS technique to detect pathogenic mutations in affected individuals who were not candidates for classical genetic studies. "	"Alteration of tight junction gene expression in celiac disease. The aim of the present study was to characterize the deregulation of epithelial tight junction genes and investigate its reversibility on removal of dietary gluten in small intestinal mucosa in celiac disease (CD). The expression levels of 23 genes related to tight junctions were studied in biopsies from 16 patients with active CD and compared with biopsies from the same patients taken after 2 years on gluten-free diet (GFD) and with 16 non-CD controls. Nine genes showed altered expression levels in patients with active disease (CLDN2, PARD6A, ZAK, SYMPK, MYH14, and ACTB were upregulated, whereas MAGI1, TJP1, and PPP2R3A were downregulated). Alterations were reversible after 2 years on treatment, except for PPP2R3A, implicated in the negative control of cell growth and division. At the biological network level, important dysfunctions in several processes within the pathway were observed, including intestinal permeability, apicobasal polarity, and cell proliferation. Our work confirms the involvement of tight junction genes related to permeability, polarity, and cell proliferation in the epithelial destruction observed in CD. Coexpression patterns of several genes support the idea of a common regulatory mechanism that seems to be altered in active CD. In general, GFD normalization confirms the reversibility of the process, except for the constitutive downregulation of PPP2R3A suggestive of a genetic implication. Further studies in proteins and cells or tissues are necessary to confirm these findings."	"Perinatal bisphenol A exposure promotes dose-dependent alterations of the mouse methylome. Environmental factors during perinatal development may influence developmental plasticity and disease susceptibility via alterations to the epigenome. Developmental exposure to the endocrine active compound, bisphenol A (BPA), has previously been associated with altered methylation at candidate gene loci. Here, we undertake the first genome-wide characterization of DNA methylation profiles in the liver of murine offspring exposed perinatally to multiple doses of BPA through the maternal diet. Using a tiered focusing approach, our strategy proceeds from unbiased broad DNA methylation analysis using methylation-based next generation sequencing technology to in-depth quantitative site-specific CpG methylation determination using the Sequenom EpiTYPER MassARRAY platform to profile liver DNA methylation patterns in offspring maternally exposed to BPA during gestation and lactation to doses ranging from 0 BPA/kg (Ctr), 50 μg BPA/kg (UG), or 50 mg BPA/kg (MG) diet (N = 4 per group). Genome-wide analyses indicate non-monotonic effects of DNA methylation patterns following perinatal exposure to BPA, corroborating previous studies using multiple doses of BPA with non-monotonic outcomes. We observed enrichment of regions of altered methylation (RAMs) within CpG island (CGI) shores, but little evidence of RAM enrichment in CGIs. An analysis of promoter regions identified several hundred novel BPA-associated methylation events, and methylation alterations in the Myh7b and Slc22a12 gene promoters were validated. Using the Comparative Toxicogenomics Database, a number of candidate genes that have previously been associated with BPA-related gene expression changes were identified, and gene set enrichment testing identified epigenetically dysregulated pathways involved in metabolism and stimulus response. In this study, non-monotonic dose dependent alterations in DNA methylation among BPA-exposed mouse liver samples and their relevant pathways were identified and validated. The comprehensive methylome map presented here provides candidate loci underlying the role of early BPA exposure and later in life health and disease status."	"Characterization of three full-length human nonmuscle myosin II paralogs. Nonmuscle myosin IIs (NM IIs) are a group of molecular motors involved in a wide variety of cellular processes including cytokinesis, migration, and control of cell morphology. There are three paralogs of the NM II heavy chain in humans (IIA, IIB, and IIC), each encoded by a separate gene. These paralogs are expressed at different levels according to cell type and have different roles and intracellular distributions in vivo. Most previous studies on NM II used tissue-purified protein or expressed fragments of the molecule, which presents potential drawbacks for characterizing individual paralogs of the intact protein in vitro. To circumvent current limitations and approach their native properties, we have successfully expressed and purified the three full-length human NM II proteins with their light chains, using the baculovirus/Sf9 system. The enzymatic and structural properties of the three paralogs were characterized. Although each NM II is capable of forming bipolar filaments, those formed by IIC tend to contain fewer constituent molecules than those of IIA and IIB. All paralogs adopt the compact conformation in the presence of ATP. Phosphorylation of the regulatory light chain leads to assembly into filaments, which bind to actin in the presence of ATP. The nature of interactions with actin filaments is shown with different paralogs exhibiting different actin binding behaviors under equivalent conditions. The data show that although NM IIA and IIB form filaments with similar properties, NM IIC forms filaments that are less well suited to roles such as tension maintenance within the cell. "	"Evolution of the myosin heavy chain gene MYH14 and its intronic microRNA miR-499: muscle-specific miR-499 expression persists in the absence of the ancestral host gene. A novel sarcomeric myosin heavy chain gene, MYH14, was identified following the completion of the human genome project. MYH14 contains an intronic microRNA, miR-499, which is expressed in a slow/cardiac muscle specific manner along with its host gene; it plays a key role in muscle fiber-type specification in mammals. Interestingly, teleost fish genomes contain multiple MYH14 and miR-499 paralogs. However, the evolutionary history of MYH14 and miR-499 has not been studied in detail. In the present study, we identified MYH14/miR-499 loci on various teleost fish genomes and examined their evolutionary history by sequence and expression analyses. Synteny and phylogenetic analyses depict the evolutionary history of MYH14/miR-499 loci where teleost specific duplication and several subsequent rounds of species-specific gene loss events took place. Interestingly, miR-499 was not located in the MYH14 introns of certain teleost fish. An MYH14 paralog, lacking miR-499, exhibited an accelerated rate of evolution compared with those containing miR-499, suggesting a putative functional relationship between MYH14 and miR-499. In medaka, Oryzias latipes, miR-499 is present where MYH14 is completely absent in the genome. Furthermore, by using in situ hybridization and small RNA sequencing, miR-499 was expressed in the notochord at the medaka embryonic stage and slow/cardiac muscle at the larval and adult stages. Comparing the flanking sequences of MYH14/miR-499 loci between torafugu Takifugu rubripes, zebrafish Danio rerio, and medaka revealed some highly conserved regions, suggesting that cis-regulatory elements have been functionally conserved in medaka miR-499 despite the loss of its host gene. This study reveals the evolutionary history of the MYH14/miRNA-499 locus in teleost fish, indicating divergent distribution and expression of MYH14 and miR-499 genes in different teleost fish lineages. We also found that medaka miR-499 was even expressed in the absence of its host gene. To our knowledge, this is the first report that shows the conversion of intronic into non-intronic miRNA during the evolution of a teleost fish lineage."	"Nonmuscle myosin II-B (myh10) expression analysis during zebrafish embryonic development. Nonmuscle myosin II (NM II) is the name given to the multi-subunit protein product of three genes (myh9, myh10, and myh14) encoding different nonmuscle myosin heavy chains. The three NM II isoforms share a very similar molecular structure and play important roles in a variety of fundamental biological processes. NM II-B (myh10) has been shown to be essential for the formation of mouse neural system and heart. But so far the complete knowledge for its expression in developing zebrafish embryos is lacking. In current study, we proved the conservation of zebrafish NM II-B in vertebrate evolution by in silicon analysis. Afterwards the NM II-B (myh10) expression was demonstrated to initiate after gastrulation stage. At 20 hpf, the expression is mainly restricted in central nervous system (CNS). It was maintained and expanded to sensor organ including eye, otic vesicle, and olfactory bulb at 36 hpf and later. We also detected myh10 mRNA hybridization signal in 48 hpf zebrafish heart. In addition, we investigated myh9a and myh9b mRNA distribution in zebrafish developing embryos. It was shown that myh10 and myh9 have distinct expression pattern, with myh9s not in neural system but in epidermis, enveloping layer (EVL). Our study provides new insight into the NM II expression and the use of this model organism to tackle future studies on the role of NM II in embryo development."	"NMII forms a contractile transcellular sarcomeric network to regulate apical cell junctions and tissue geometry. Nonmuscle myosin II (NMII) is thought to be the master integrator of force within epithelial apical junctions, mediating epithelial tissue morphogenesis and tensional homeostasis. Mutations in NMII are associated with a number of diseases due to failures in cell-cell adhesion. However, the organization and the precise mechanism by which NMII generates and responds to tension along the intercellular junctional line are still not known. We discovered that periodic assemblies of bipolar NMII filaments interlace with perijunctional actin and α-actinin to form a continuous belt of muscle-like sarcomeric units (∼400-600 nm) around each epithelial cell. Remarkably, the sarcomeres of adjacent cells are precisely paired across the junctional line, forming an integrated, transcellular contractile network. The contraction/relaxation of paired sarcomeres concomitantly impacts changes in apical cell shape and tissue geometry. We show differential distribution of NMII isoforms across heterotypic junctions and evidence for compensation between isoforms. Our results provide a model for how NMII force generation is effected along the junctional perimeter of each cell and communicated across neighboring cells in the epithelial organization. The sarcomeric network also provides a well-defined target to investigate the multiple roles of NMII in junctional homeostasis as well as in development and disease."	"The effect of including the C2 insert of nonmuscle myosin II-C on neuritogenesis. The functional role of the C2 insert of nonmuscle myosin II-C (NM II-C) is poorly understood. Here, we report for the first time that the expression of the C2 insert-containing isoform, NM II-C1C2, is inducible in Neuro-2a cells during differentiation both at mRNA and protein levels. Immunoblot and RT-PCR analysis reveal that expression of NM II-C1C2 peaks between days 3 and 6 of differentiation. Localization of NM II-C1C2 in Neuro-2a cells suggests that the C2 insert-containing isoform is localized in the cytosol and along the neurites, specifically at the adherence point to substratum. Inhibition of endogenous NM II-C1C2 using siRNA decreases the neurite length by 43% compared with control cells treated with nonspecific siRNA. Time lapse image analysis reveals that neurites of C2-siRNA-treated cells have a net negative change in neurite length per minute, leading to a reduction of overall neurite length. During neuritogenesis, NM II-C1C2 can interact and colocalize with β1-integrin in neurites. Altogether, these studies indicate that NM II-C1C2 may be involved in stabilizing neurites by maintaining their structure at adhesion sites."	"Clue to a new deafness gene: a large Chinese nonsyndromic hearing loss family linked to DFNA4. NA"	"Contribution of genetic factors to noise-induced hearing loss: a human studies review. Noise-induced hearing loss (NIHL) is a complex disease that results from the interaction of genetic and environmental factors. Over the last 10 years there has been a great increase in association studies trying to identify the susceptibility genes for NIHL in humans. They were conducted based on the candidate gene approach and comprised predominantly the group of oxidative stress genes, inner ear potassium recycling pathway genes and monogenic deafness genes, as well as other genes. So far, the most promising results were obtained for two genes encoding potassium ion channels (KCNQ4 and KCNE1), catalase (CAT), protocadherin 15 (PCDH15), myosin 14 (MYH14) and heat shock protein (HSP70), because they were replicated in two (Polish and Swedish) or three (Polish, Swedish and Chinese) populations, and were sufficient in size to yield high power for the detection of a causative allele. Today, the development of high-throughput genotyping methods allows the detection of hundreds and thousands of single nucleotide polymorphisms (SNPs) in a single array which undoubtedly will lead toward identification of new NIHL susceptibility genes. This in turn will contribute to the development of genetics tests that would allow for better protection of noise-exposed individuals and personalized treatment, if necessary."	"[Experimental research on DNA methylation profile in congenital microtia]. To screen for abnormal methylation in CpG islands and CpG sites through whole genome of congenital microtia to identify their associated genes. To discuss the relationship between abnormal methylation level of genes and the etiology of congenital microtia. Residual ear cartilage of 50 patients with microtia was collected with ear cartilage of 34 patients without ear malformations as control. Nimblegen CpG promoter array was chosen to screen the 28,226 CpG islands in the whole genome of both experimental and control groups. The genes with differential methylated CpG islands were selected. SpectroCHIP array was chosen to detect the methylation level of each CpG site in abnormal methyletion CpG islands of both experimental and control groups. The CpG sites with differential methylation level were selected. There were 36 CpG islands with differential methylated level in whole genome between experimental group and control group, among which 29 CpG islands were connected with 29 named genes. In the abnormal methylated CpG islands of COL18A1, MYH14, RBMY1A1 and ZIC3, 6 differentially methylated CpG sites were found with statistical significance. The methylation level of these 6 CpG sites in experimental group and control group were COL18A1_2_CpG_170.9783 +/- 0.0235 and 0.9526 +/- 0.0589; MYH14_CpG_170.9600 +/- 0.0414 and 0.9284 +/- 0.0655; RBMY1A1_1_CpG_3.40.9966 +/- 0.0055 and 0.9914 +/- 0.0069; RBMY1A1_1_CpG_130.9648 +/- 0.0118 and 0.9757 +/- 0.0127; ZIC3_3_CpG_150.0867 +/- 0.0212 and 0.0543 +/- 0.0399; ZIC3_2_CpG_270.3775 +/- 0.1816 and 0.472 3 +/- 0.0439. The DNA methylation profile of the entire genome is initially established. The abnormal methylated CpG islands of COL18A1, MYH14, RBMY1A1 and ZIC3 might be related to the pathogenesis of microtia."	"Non-muscle myosin IIB is essential for cytokinesis during male meiotic cell divisions. Cytokinesis, the final stage of cell division, bisects the cytoplasm into two daughter cells. In mitotic cells, this process depends on the activity of non-muscle myosin II (NMII), a family of actin-binding motor-proteins that participate in the formation of the cleavage furrow. The relevance of NMII for meiotic cell division, however, is poorly understood. The NMII family consists of three members, NMIIA, NMIIB, and NMIIC, containing different myosin heavy chains (MYH9, MYH10, and MYH14, respectively). We find that a single non-muscle myosin II, NMIIB, is required for meiotic cytokinesis in male but not female mice. Specifically, NMIIB-deficient spermatocytes exhibit cytokinetic failure in meiosis I, resulting in bi-nucleated secondary spermatocytes. Additionally, cytokinetic failure at meiosis II gives rise to bi-nucleated or even tetra-nucleated spermatids. These multi-nucleated spermatids fail to undergo normal differentiation, leading to male infertility. In spite of the presence of multiple non-muscle myosin II isoforms, we demonstrate that a single member, NMIIB, plays an essential and non-redundant role in cytokinesis during meiotic cell divisions of the male germline."	"Myh7b/miR-499 gene expression is transcriptionally regulated by MRFs and Eos. The sarcomeric myosin gene, Myh7b, encodes an intronic microRNA, miR-499, which regulates cardiac and skeletal muscle biology, yet little is known about its transcriptional regulation. To identify the transcription factors involved in regulating Myh7b/miR-499 gene expression, we have mapped the transcriptional start sites and identified an upstream 6.2 kb region of the mouse Myh7b gene whose activity mimics the expression pattern of the endogenous Myh7b gene both in vitro and in vivo. Through promoter deletion analysis, we have mapped a distal E-box element and a proximal Ikaros site that are essential for Myh7b promoter activity in muscle cells. We show that the myogenic regulatory factors, MyoD, Myf5 and Myogenin, bind to the E-box, while a lymphoid transcription factor, Ikaros 4 (Eos), binds to the Ikaros motif. Further, we show that through physical interaction, MyoD and Eos form an active transcriptional complex on the chromatin to regulate the expression of the endogenous Myh7b/miR-499 gene in muscle cells. We also provide the first evidence that Eos can regulate expression of additional myosin genes (Myosin 1 and β-Myosin) via the miR-499/Sox6 pathway. Therefore, our results indicate a novel role for Eos in the regulation of the myofiber gene program."	"Loss of mammal-specific tectorial membrane component carcinoembryonic antigen cell adhesion molecule 16 (CEACAM16) leads to hearing impairment at low and high frequencies. The vertebrate-restricted carcinoembryonic antigen gene family evolves extremely rapidly. Among their widely expressed members, the mammal-specific, secreted CEACAM16 is exceptionally well conserved and specifically expressed in the inner ear. To elucidate a potential auditory function, we inactivated murine Ceacam16 by homologous recombination. In young Ceacam16(-/-) mice the hearing threshold for frequencies below 10 kHz and above 22 kHz was raised. This hearing impairment progressed with age. A similar phenotype is observed in hearing-impaired members of Family 1070 with non-syndromic autosomal dominant hearing loss (DFNA4) who carry a missense mutation in CEACAM16. CEACAM16 was found in interdental and Deiters cells and was deposited in the tectorial membrane of the cochlea between postnatal days 12 and 15, when hearing starts in mice. In cochlear sections of Ceacam16(-/-) mice tectorial membranes were significantly more often stretched out as compared with wild-type mice where they were mostly contracted and detached from the outer hair cells. Homotypic cell sorting observed after ectopic cell surface expression of the carboxyl-terminal immunoglobulin variable-like N2 domain of CEACAM16 indicated that CEACAM16 can interact in trans. Furthermore, Western blot analyses of CEACAM16 under reducing and non-reducing conditions demonstrated oligomerization via unpaired cysteines. Taken together, CEACAM16 can probably form higher order structures with other tectorial membrane proteins such as α-tectorin and β-tectorin and influences the physical properties of the tectorial membrane. Evolution of CEACAM16 might have been an important step for the specialization of the mammalian cochlea, allowing hearing over an extended frequency range."	"Aberrant splicing and expression of the non muscle myosin heavy-chain gene MYH14 in DM1 muscle tissues. Myotonic dystrophy type 1 (DM1) is a complex multisystemic disorder caused by an expansion of a CTG repeat located at the 3' untranslated region (UTR) of DMPK on chromosome 19q13.3. Aberrant messenger RNA (mRNA) splicing of several genes has been reported to explain some of the symptoms of DM1 including insulin resistance, muscle wasting and myotonia. In this paper we analyzed the expression of the MYH14 mRNA and protein in the muscle of DM1 patients (n=12) with different expansion lengths and normal subjects (n=7). The MYH14 gene is located on chromosome 19q13.3 and encodes for one of the heavy chains of the so called class II &quot;nonmuscle&quot; myosins (NMHCII). MYH14 has two alternative spliced isoforms: the inserted isoform (NMHCII-C1) which includes 8 amino acids located in the globular head of the protein, not encoded by the non inserted isoform (NMHCII-C0). Results showed a splicing unbalance of the MYH14 gene in DM1 muscle, with a prevalent expression of the NMHCII-C0 isoform more marked in DM1 patients harboring large CTG expansions. Minigene assay indicated that levels of the MBNL1 protein positively regulates the inclusion of the MYH14 exon 6. Quantitative analysis of the MYH14 expression revealed a significant reduction in the DM1 muscle samples, both at mRNA and protein level. No differences were found between DM1 and controls in the skeletal muscle localization of MYH14, obtained through immunofluorescence analysis. In line with the thesis of an &quot;RNA gain of function&quot; hypothesis described for the CTG mutation, we conclude that the alterations of the MYH14 gene may contribute to the DM1 molecular pathogenesis."	"A complex phenotype of peripheral neuropathy, myopathy, hoarseness, and hearing loss is linked to an autosomal dominant mutation in MYH14. Both peripheral neuropathy and distal myopathy are well-established inherited neuromuscular disorders characterized by progressive weakness and atrophy of the distal limb muscles. A complex phenotype of peripheral neuropathy, myopathy, hoarseness, and hearing loss was diagnosed in a large autosomal dominant Korean family. A high density single nucleotide polymorphism (SNP)-based linkage study mapped the underlying gene to a region on chromosome 19q13.3. The maximum multipoint LOD score was 3.794. Sequencing of 34 positional candidate genes in the segregating haplotype revealed a novel c.2822G&gt;T (p.Arg941Leu) mutation in the gene MYH14, which encodes the nonmuscle myosin heavy chain 14. Clinically we observed a sequential pattern of the onset of muscle weakness starting from the anterior to the posterior leg muscle compartments followed by involvement of intrinsic hand and proximal muscles. The hearing loss and hoarseness followed the onset of distal muscle weakness. Histopathologic and electrodiagnostic studies revealed both chronic neuropathic and myopathic features in the affected patients. Although mutations in MYH14 have been shown to cause nonsyndromic autosomal dominant hearing loss (DFNA4), the peripheral neuropathy, myopathy, and hoarseness have not been associated with MYH14. Therefore, we suggest that the identified mutation in MYH14 significantly expands the phenotypic spectrum of this gene."	"Comparative kinetic and functional characterization of the motor domains of human nonmuscle myosin-2C isoforms. Nonmuscle myosins are widely distributed and play important roles in the maintenance of cell morphology and cytokinesis. In this study, we compare the detailed kinetic and functional characterization of naturally occurring transcript variants of the motor domain of human nonmuscle myosin heavy chain (NMHC)-2C. NMHC-2C is alternatively spliced both in loop-1 and loop-2. Isoform 2C0 contains no inserts in either of the loops and represents the shortest isoform. An 8-amino acid extension in the loop-1 region is present in isoforms 2C1 and 2C1C2. Isoform 2C1C2 additionally displays a 33-amino acid extension in the loop-2 region. Transient kinetic experiments indicate increased rate constants for F-actin binding by isoform 2C1C2 in the absence and presence of nucleotide, which can be attributed to the loop-2 extension. ADP binding shows only minor differences for the three transcript variants. In contrast, larger differences are observed for the rates of ADP release both in the absence and presence of F-actin. The largest differences are observed between isoforms 2C0 and 2C1C2. In the absence and presence of F-actin, isoform 2C1C2 displays a 5-7-fold increase in ADP affinity. Moreover, our results indicate that the ADP release kinetics of all three isoforms are modulated by changes in the concentration of free Mg(2+) ions. The greatest responsiveness of the NMHC-2C isoforms is observed in the physiological range from 0.2 to 1.5 mM free Mg(2+) ions, affecting their duty ratio, velocity, and tension-bearing properties."	"Carcinoembryonic antigen-related cell adhesion molecule 16 interacts with alpha-tectorin and is mutated in autosomal dominant hearing loss (DFNA4). We report on a secreted protein found in mammalian cochlear outer hair cells (OHC) that is a member of the carcinoembryonic antigen-related cell adhesion molecule (CEACAM) family of adhesion proteins. Ceacam16 mRNA is expressed in OHC, and its protein product localizes to the tips of the tallest stereocilia and the tectorial membrane (TM). This specific localization suggests a role in maintaining the integrity of the TM as well as in the connection between the OHC stereocilia and TM, a linkage essential for mechanical amplification. In agreement with this role, CEACAM16 colocalizes and coimmunoprecipitates with the TM protein α-tectorin. In addition, we show that mutation of CEACAM16 leads to autosomal dominant nonsyndromic deafness (ADNSHL) at the autosomal dominant hearing loss (DFNA4) locus. In aggregate, these data identify CEACAM16 as an α-tectorin-interacting protein that concentrates at the point of attachment of the TM to the stereocilia and, when mutated, results in ADNSHL at the DFNA4 locus."	"Phalloidin perturbs the interaction of human non-muscle myosin isoforms 2A and 2C1 with F-actin. Phalloidin and fluorescently labeled phalloidin analogs are established reagents to stabilize and mark actin filaments for the investigation of acto-myosin interactions. In the present study, we employed transient and steady-state kinetic measurements as well as in vitro motility assays to show that phalloidin perturbs the productive interaction of human non-muscle myosin-2A and -2C1 with filamentous actin. Phalloidin binding to F-actin results in faster dissociation of the complex formed with non-muscle myosin-2A and -2C1, reduced actin-activated ATP turnover, and slower velocity of actin filaments in the in vitro motility assay. In contrast, phalloidin binding to F-actin does not affect the interaction with human non-muscle myosin isoform 2B and Dictyostelium myosin-2 and myosin-5b."	"Ablation of nonmuscle myosin II-B and II-C reveals a role for nonmuscle myosin II in cardiac myocyte karyokinesis. Ablation of nonmuscle myosin (NM) II-A or NM II-B results in mouse embryonic lethality. Here, we report the results of ablating NM II-C as well as NM II-C/II-B together in mice. NM II-C ablated mice survive to adulthood and show no obvious defects compared with wild-type littermates. However, ablation of NM II-C in mice expressing only 12% of wild-type amounts of NM II-B results in a marked increase in cardiac myocyte hypertrophy compared with the NM II-B hypomorphic mice alone. In addition, these hearts develop interstitial fibrosis associated with diffuse N-cadherin and β-catenin localization at the intercalated discs, where both NM II-B and II-C are normally concentrated. When both NM II-C and II-B are ablated the B-C-/B-C- cardiac myocytes show major defects in karyokinesis. More than 90% of B-C-/B-C- myocytes demonstrate defects in chromatid segregation and mitotic spindle formation accompanied by increased stability of microtubules and abnormal formation of multiple centrosomes. This requirement for NM II in karyokinesis is further demonstrated in the HL-1 cell line derived from mouse atrial myocytes, by using small interfering RNA knockdown of NM II or treatment with the myosin inhibitor blebbistatin. Our study shows that NM II is involved in regulating cardiac myocyte karyokinesis by affecting microtubule dynamics."	"[c.359T&gt;C mutation of the MYH14 gene in two autosomal dominant non-syndromic hearing impairment families with common ancestor]. To identify the gene mutation for two Chinese families with autosomal dominant non-syndromic hearing impairment(NSHI). Two NSHI pedigrees with common ancestor were identified by clinical examination and family investigation. Linkage analysis was performed for all known NSHI loci, and all exons and exon-intron boundaries of the non-muscle myosin heavy chain 14 (MYH14) gene were amplified by PCR and sequenced. The disease-causing gene of these 2 pedigrees was fine mapped to the DFNA4 locus on 19q13.33. A heterozygous transition of c. 359T&gt;C (p.S120L) in MYH14 gene was identified. The mutation was detected in all patients but not in normal members in the two families. It is the first report that mutation in MYH14 gene can cause dominant non-syndromic hearing impairment in Asian population, suggesting that MYH14 gene can be a disease-causing gene of Chinese patients with hearing impairment."	"Early complement factors in the local tissue immunocomplex generated during intestinal ischemia/reperfusion injury. Recent work reveals that the innate immune system is able to recognize self-targets and initiate an inflammatory response similar to that of pathogens. One novel example of this innate autoimmunity is ischemia/reperfusion (I/R) injury, in which reperfusion of the ischemic tissues elicits an acute inflammatory response activated by natural IgM (nIgM) binding to ischemia-specific self-antigens, which are non-muscle myosin heavy chains type II (NMHC-II) subtype A and C. Subsequently, the complement lectin pathway is activated and eventually tissue injury occurs. Although earlier studies in the intestinal model showed that the classical complement pathway did not initiate I/R injury, C1q deposition was still observed in the local injured tissues by imaging analysis. Moreover, the involvement of the alternative complement pathway became unclear due to conflicting reports using different knockout mice. To explore the immediate downstream pathway following nIgM-ischemic antigen interaction, we isolated the nIgM-ischemic antigen immunocomplexes from the local tissue of animals treated in the intestinal I/R injury model, and examined the presence of initial molecules of three complement pathways. Our results showed that mannan-binding lectin (MBL), the early molecule of the lectin pathway, was present in the nIgM-ischemic Ag immunocomplex. In addition, C1q, the initial molecule of the classical pathway was also detected on the immunocomplex. However, Factor B, the early molecule in the alternative pathway, was not detected in the immunocomplex. To further examine the role of the alternative pathway in I/R injury, we utilized Factor B knockout mice in the intestinal model. Our results showed that Factor B knockout mice were not protected from local tissue injury, and their complement system was activated in the local tissues by nIgM during I/R. These results indicated that the lectin complement pathway operates immediately downstream of the nIgM-ischemic antigen interaction during intestinal I/R. Furthermore, the classical complement pathway also appears to interact with the of nIgM-ischemic antigen immunocomplex. Finally, the alternative complement pathway is not involved in I/R injury induction in the current intestinal model."	"Two novel/ancient myosins in mammalian skeletal muscles: MYH14/7b and MYH15 are expressed in extraocular muscles and muscle spindles. The mammalian genome contains three ancient sarcomeric myosin heavy chain (MYH) genes, MYH14/7b, MYH15 and MYH16, in addition to the two well characterized clusters of skeletal and cardiac MYHs. MYH16 is expressed in jaw muscles of carnivores; however the expression pattern of MYH14 and MYH15 is not known. MYH14 and MYH15 orthologues are present in frogs and birds, coding for chicken slow myosin 2 and ventricular MYH, respectively, whereas only MYH14 orthologues have been detected in fish. In all species the MYH14 gene contains a microRNA, miR-499. Here we report that in rat and mouse, MYH14 and miR-499 transcripts are detected in heart, slow muscles and extraocular (EO) muscles, whereas MYH15 transcripts are detected exclusively in EO muscles. However, MYH14 protein is detected only in a minor fibre population in EO muscles, corresponding to slow-tonic fibres, and in bag fibres of muscle spindles. MYH15 protein is present in most fibres of the orbital layer of EO muscles and in the extracapsular region of bag fibres. During development, MYH14 is expressed at low levels in skeletal muscles, heart and all EO muscle fibres but disappears from most fibres, except the slow-tonic fibres, after birth. In contrast, MYH15 is absent in embryonic and fetal muscles and is first detected after birth in the orbital layer of EO muscles. The identification of the expression pattern of MYH14 and MYH15 brings to completion the inventory of the MYH isoforms involved in sarcomeric architecture of skeletal muscles and provides an unambiguous molecular basis to study the contractile properties of slow-tonic fibres in mammals."	"A family of microRNAs encoded by myosin genes governs myosin expression and muscle performance. Myosin is the primary regulator of muscle strength and contractility. Here we show that three myosin genes, Myh6, Myh7, and Myh7b, encode related intronic microRNAs (miRNAs), which, in turn, control muscle myosin content, myofiber identity, and muscle performance. Within the adult heart, the Myh6 gene, encoding a fast myosin, coexpresses miR-208a, which regulates the expression of two slow myosins and their intronic miRNAs, Myh7/miR-208b and Myh7b/miR-499, respectively. miR-208b and miR-499 play redundant roles in the specification of muscle fiber identity by activating slow and repressing fast myofiber gene programs. The actions of these miRNAs are mediated in part by a collection of transcriptional repressors of slow myofiber genes. These findings reveal that myosin genes not only encode the major contractile proteins of muscle, but act more broadly to influence muscle function by encoding a network of intronic miRNAs that control muscle gene expression and performance."	"Candidate gene association study for noise-induced hearing loss in two independent noise-exposed populations. Millions of people are daily exposed to high levels of noise. Consequently, noise-induced hearing loss (NIHL) is one of the most important occupational health hazards worldwide. In this study, we performed an association study for NIHL based on a candidate gene approach. 644 Single Nucleotide Polymorphisms (SNPs) in 53 candidate genes were analyzed in two independent NIHL sample sets, a Swedish set and part of a Polish set. Eight SNPs with promising results were selected and analysed in the remaining part of the Polish samples. One SNP in PCDH15 (rs7095441), resulted in significant associations in both sample sets while two SNPs in MYH14 (rs667907 and rs588035), resulted in significant associations in the Polish sample set and significant interactions with noise exposure level in the Swedish sample set. Calculation of odds ratios revealed a significant association of rs588035 with NIHL in the Swedish high noise exposure level group. Our studies suggest that PCDH15 and MYH14 may be NIHL susceptibility genes, but further replication in independent sample sets is mandatory."	"The alpha-kinases TRPM6 and TRPM7, but not eEF-2 kinase, phosphorylate the assembly domain of myosin IIA, IIB and IIC. TRPM6 and TRPM7 encode channel-kinases. While these channels share electrophysiological properties and cellular functions, TRPM6 and TRPM7 are non-redundant genes raising the possibility that the kinases have distinct substrates. Here, we demonstrate that TRPM6 and TRPM7 phosphorylate the assembly domain of myosin IIA, IIB and IIC on identical residues. Whereas phosphorylation of myosin IIA is restricted to the coiled-coil domain, TRPM6 and TRPM7 also phosphorylate the non-helical tails of myosin IIB and IIC. TRPM7 does not phosphorylate eukaryotic elongation factor-2 (eEF-2) and myosin II is a poor substrate for eEF-2 kinase. In conclusion, TRPM6 and TRPM7 share exogenous substrates among themselves but not with functionally distant alpha-kinases."	"Investigation of MYH14 as a candidate gene in cleft lip with or without cleft palate. Clefts of the orofacial region are among the most common facial defects and are caused by abnormal facial development during gestation. Cleft lip with or without cleft palate (CL/P) is a birth defect with a complex etiology resulting from a mixture of genetic and environmental factors. In the present study we considered myosin 14 (MYH14) as a candidate gene for CL/P. This gene codes for the heavy chain of non-muscle myosin IIC (NMMHC-IIC), maps in the OFC3 region, and shares significant homology with myosin 9, a gene that our group has recently seen to be involved in CL/P. A linkage disequilibrium investigation was conducted with six single nucleotide polymorphisms in MYH14 and a sample of 239 CL/P nonsyndromic patients and their parents. Our family-based investigation provided no evidence of association between MYH14 and CL/P alleles. These data do not support the involvement of MYH14 in CL/P among the Italian population."	"A novel nonsense mutation in MYO6 is associated with progressive nonsyndromic hearing loss in a Danish DFNA22 family. Autosomal dominant inheritance is described in about 20% of all nonsyndromic hearing loss with currently 54 distinct loci (DFNA1-54), and &gt;20 different genes identified. Seven different unconventional myosin genes are involved in ten different types of syndromic and nonsyndromic hearing loss with different patterns of inheritance: MYO7A in DFNA11/DFNB2/USH1B, MYH9 in DFNA17, MYH14 in DFNA4, MYO6 in DFNA22/DFNB37, MYO3A in DFNB30, MYO1A in DFNA48, and MYO15A in DFNB3. Two missense mutations in MYO6 (p.C442Y and p.H246R) have been characterized in families of Italian and American Caucasian extraction with autosomal dominant hearing loss, respectively, and the latter was associated with cardiomyopathy in some patients. Three Pakistani families had homozygosity for three MYO6 mutations (c.36insT, p.R1166X, and p.E216V, respectively), and was in one instance associated with retinal degeneration. In the present study, we linked autosomal dominant hearing loss in a large Danish family to a 38.9 Mb interval overlapping with the DFNA22/DFNB37 locus on chromosome 6q13. A novel nonsense mutation in MYO6 exon 25 (c.2545C &gt; T; p.R849X) was identified in the family. The mutation co-segregated with the disease and the mutant allele is predicted to encode a truncated protein lacking the coiled-coil and globular tail domains. These domains are hypothesized to be essential for targeting myosin VI to its cellular compartments. No other system was involved indicating nonsyndromic loss. In conclusion, a novel nonsense MYO6 mutation causes post-lingual, slowly progressive autosomal dominant nonsyndromic moderate to severe hearing loss in a Danish family."	"Alternative splice variants of MYH9. MYH9 encodes a class II nonmuscle myosin heavy chain-A (NMHC-IIA), a widely expressed 1960 amino acid polypeptide, with a translated molecular weight of 220 kDa. The relatively large number of exons (40) that encode NMHC-IIA and the splice variants that have been documented for its two isoforms, MYH10 and MYH14, strongly suggest existence of alternative splicing for MYH9. In the current study, we perform a targeted search for Myh9 splice variants in two separate regions of the heavy chain that encode loop 1 and loop 2 subdomains within which alternative exons in MYH10 and MYH14 splice variants have been identified. The splice variant search was conducted using two strategies: amplification across the suspected exons directly or by amplification of putative splice variants identified through conserved sequence analysis of suspected intronic regions. Within loop 1, two separate insertions of 12 and 41 nucleotides were identified using conserved sequence analysis only. Each of these insertions, located within intron 4, resulted in premature termination of the variant transcript. Within loop 2, a 63-nucleotide-long in-frame insertion was identified using both strategies. The insertion is identical in length and displays 65% sequence identity with its Myh10 counterpart, but differs greatly from the 123-nucleotide-long insertion within Myh14 transcript identified in this study. Both loop 1 and loop 2 variants of Myh9 were detected in the cochlea, with the latter being most abundant in the brain. Expression of loop 1 variants with premature termination codon may reflect an alternate mode of regulating Myh9 expression, while the conserved sequence and selective expression of the loop 2 variant highlight its potential biological importance."	"Activation of the lectin pathway by natural IgM in a model of ischemia/reperfusion injury. Reperfusion of ischemic tissues elicits an acute inflammatory response involving serum complement, which is activated by circulating natural IgM specific to self-Ags exposed by ischemia. Recent reports demonstrating a role for the lectin pathway raise a question regarding the initial events in complement activation. To dissect the individual roles of natural IgM and lectin in activation of complement, mice bearing genetic deficiency in early complement, IgM, or mannan-binding lectin were characterized in a mesenteric model of ischemia reperfusion injury. The results reveal that IgM binds initially to ischemic Ag providing a binding site for mannan-binding lectin which subsequently leads to activation of complement and injury."	"Genetic heterogeneity of deafness phenotypes linked to DFNA4. Mutations in the heavy chain of the class II nonmuscle myosin, MYH14, cause autosomal dominant hearing loss in families linked to the DFNA4 locus. Consistent with this discovery, we identified an S120L mutation in MYH14 in a large German family segregating deafness that links to DFNA4. However, complete screening of the American family that originally defined the DFNA4 locus revealed no mutations in this gene. Furthermore, haplotyping of a single nucleotide polymorphism (SNP) 5' to MYH14 excludes this gene from the critical region in this family. Our results imply that mutations in another gene result in deafness at the DFNA4 locus. The newly defined candidate region encompasses a region of approximately 19 cM. Several candidate genes have been screened for disease-causing mutations."	"Disease-associated mutations and alternative splicing alter the enzymatic and motile activity of nonmuscle myosins II-B and II-C. Human families with single amino acid mutations in nonmuscle myosin heavy chain (NMHC) II-A (MYH9) and II-C (MYH14) have been described as have mice generated with a point mutation in NMHC II-B (MYH10). These mutations (R702C and N93K in human NMHC II-A, R709C in murine NMHC II-B, and R726S in human NMHC II-C) result in phenotypes affecting kidneys, platelets, and leukocytes (II-A), heart and brain (II-B), and the inner ear (II-C). To better understand the mechanisms underlying these defects, we characterized the in vitro activity of mutated and wild-type baculovirus-expressed heavy meromyosin (HMM) II-B and II-C. We also expressed two alternatively spliced isoforms of NMHC II-C which differ by inclusion/exclusion of eight amino acids in loop 1, with and without mutations. Comparison of the actin-activated MgATPase activity and in vitro motility shows that mutation of residues Asn-97 and Arg-709 in HMM II-B and the homologous residue Arg-722 (Arg-730 in the alternatively spliced isoform) in HMM II-C decreases both parameters but affects in vitro motility more severely. Analysis of the transient kinetics of the HMM II-B R709C mutant shows an extremely tight affinity of HMM for ADP and a very slow release of ADP from acto-HMM. Although mutations generally decreased HMM activity, the R730S mutation in HMM II-C, unlike the R730C mutation, had no effect on actin-activated MgATPase activity but decreased the rate of in vitro motility by 75% compared with wild type. Insertion of eight amino acids into the HMM II-C heavy chain increases both actin-activated MgATPase activity and in vitro motility."	"Refinement of the DFNA4 locus to a 1.44 Mb region in 19q13.33. Many forms of autosomal dominant non-syndromic hearing impairment are known. While the underlying gene defects and causative mutations have been discovered for some forms, the gene responsible for DFNA4 has remained elusive to date. Examination of a German four-generation kindred led to the identification of a 1.44 Mb map segment in contig NT_011109 as being the most likely DFNA4 candidate region in 19q13.33. The recombination breakpoints in this family and the intervals of two previously reported DFNA4 families allowed us to delineate a minimum consensus region between the markers D19S879 and D19S246. In our family, a maximum two-point LOD score of 4.5 was obtained at theta = 0 for the marker D19S867. Within the refined DFNA4 interval the public databases list more than 50 genes, from which several appear to be promising DFNA4 candidates due to similarities with animal models and with other causative genes involved in hearing disability."	"Nonmuscle myosin heavy-chain gene MYH14 is expressed in cochlea and mutated in patients affected by autosomal dominant hearing impairment (DFNA4). Myosins have been implicated in various motile processes, including organelle translocation, ion-channel gating, and cytoskeleton reorganization. Different members of the myosin superfamily are responsible for syndromic and nonsyndromic hearing impairment in both humans and mice. MYH14 encodes one of the heavy chains of the class II nonmuscle myosins, and it is localized within the autosomal dominant hearing impairment (DFNA4) critical region. After demonstrating that MYH14 is highly expressed in mouse cochlea, we performed a mutational screening in a large series of 300 hearing-impaired patients from Italy, Spain, and Belgium and in a German kindred linked to DFNA4. This study allowed us to identify a nonsense and two missense mutations in large pedigrees, linked to DFNA4, as well as a de novo allele in a sporadic case. Absence of these mutations in healthy individuals was tested in 200 control individuals. These findings clearly demonstrate the role of MYH14 in causing autosomal dominant hearing loss and further confirm the crucial role of the myosin superfamily in auditive functions."	"Evolution of sarcomeric myosin heavy chain genes: evidence from fish. Myosin heavy chain (MYH) is a major structural protein, integral to the function of sarcomeric muscles. We investigated both exon-intron organization and amino acid sequence of sarcomeric MYH genes to infer their evolutionary history in vertebrates. Our results were consistent with the hypothesis that a multigene family encoded MYH proteins in the ancestral chordate, one gene ancestral to human MYH16 and its homologues and another ancestral to all other vertebrate sarcomeric MYH genes. We identified teleost homologues of mammalian skeletal and cardiac MYH genes, indicating that the ancestors of those genes were present before the divergence of actinopterygians and sarcopterygians. Indeed, the ancestral skeletal genes probably duplicated at least once before the divergence of teleosts and tetrapods. Fish homologues of mammalian skeletal MYH are expressed in skeletal tissue and homologues of mammalian cardiac genes are expressed in the heart but, unlike mammals, there is overlap between these expression domains. Our analyses inferred two other ancestral vertebrate MYH genes, giving rise to human MYH14 and MYH15 and their homologues. Relative to the skeletal and cardiac genes, MYH14 and MYH15 homologues are characterized by evolution of intron position, differences in evolutionary rate between the functionally differentiated head and rod of the myosin protein, and possible evolution of function among vertebrate classes. Tandem duplication and gene conversion appear to have played major roles in the evolution of at least cardiac and skeletal MYH genes in fish. One outcome of this high level of concerted evolution is that different fish taxa have different suites of MYH genes, i.e., true orthologs do not exist."	"Genomic structure, cochlear expression, and mutation screening of KCNK6, a candidate gene for DFNA4. KCNK6 encodes a tandem pore domain potassium channel, TWIK-2, that maps to chromosome 19. Both STS and linkage maps established KCNK6 as a positional candidate gene for DFNA4, a form of autosomal dominant nonsyndromic hereditary hearing loss. Identification and characterization of Kcnk6 expression within the mammalian cochlea established the gene as a functional candidate for DFNA4. Identification of Twik-2 expression in the mouse cochlea was initially established via RT-PCR assay of cochlear RNA. Subsequent immunoblot analysis of cochlear homogenate yielded a distinct 35-kDa band corresponding to the calculated molecular weight of the mouse Twik-2. Immunohistochemical studies localized Twik-2 expression in the cochlea predominantly within the stria vascularis. This vascular tissue borders the cochlear duct and is a critical regulator of potassium concentration in the endolymph. Genomic structure of TWIK-2 was subsequently determined and shown to consist of three coding exons with splice acceptor and donor sites in accordance with the consensus GT-AG rule. Two separate DFNA4 families were screened for KCNK6 sequence alterations. No mutations were found, thus excluding TWIK-2 as the DFNA4 candidate disease gene. Nevertheless, expression of Twik-2 within the stria vascularis suggests a potential role for this protein as one of the terminal components of the potassium ion-recycling pathway that contributes toward its reabsorption into the endolymph."	"Identification and characterization of nonmuscle myosin II-C, a new member of the myosin II family. A previously unrecognized nonmuscle myosin II heavy chain (NMHC II), which constitutes a distinct branch of the nonmuscle/smooth muscle myosin II family, has recently been revealed in genome data bases. We characterized the biochemical properties and expression patterns of this myosin. Using nucleotide probes and affinity-purified antibodies, we found that the distribution of NMHC II-C mRNA and protein (MYH14) is widespread in human and mouse organs but is quantitatively and qualitatively distinct from NMHC II-A and II-B. In contrast to NMHC II-A and II-B, the mRNA level in human fetal tissues is substantially lower than in adult tissues. Immunofluorescence microscopy showed distinct patterns of expression for all three NMHC isoforms. NMHC II-C contains an alternatively spliced exon of 24 nucleotides in loop I at a location analogous to where a spliced exon appears in NMHC II-B and in the smooth muscle myosin heavy chain. However, unlike neuron-specific expression of the NMHC II-B insert, the NMHC II-C inserted isoform has widespread tissue distribution. Baculovirus expression of noninserted and inserted NMHC II-C heavy meromyosin (HMM II-C/HMM II-C1) resulted in significant quantities of expressed protein (mg of protein) for HMM II-C1 but not for HMM II-C. Functional characterization of HMM II-C1 by actin-activated MgATPase activity demonstrated a V(max) of 0.55 + 0.18 s(-1), which was half-maximally activated at an actin concentration of 16.5 + 7.2 microm. HMM II-C1 translocated actin filaments at a rate of 0.05 + 0.011 microm/s in the absence of tropomyosin and at 0.072 + 0.019 microm/s in the presence of tropomyosin in an in vitro motility assay."	"A novel myosin heavy chain gene in human chromosome 19q13.3. A human myosin heavy chain gene was identified in chromosome 19q13 by computational sequence analysis, RT-PCR and DNA sequencing of the cDNA. The complete cDNA has a length of 6786 bp and comprises 41 exons (40 coding) included in 108 kb of genomic sequence. Alternative splicing variants were also identified. The gene is expressed in a multitude of tissues, but mainly in small intestine, colon and skeletal muscle. The putative protein (228 kDa) carries the common myosin domains and presents high homology with the non-muscle myosin heavy chains (MYH9 and MYH10) as well as the smooth muscle myosin heavy chain MYH11. Nevertheless, phylogenetic analysis indicated that these homologous proteins are more related among themselves than to MYH14, suggesting that possibly this myosin heavy chain should be classified in a new myosin-subfamily."	"Induction of nonmuscle myosin heavy chain II-C by butyrate in RAW 264.7 mouse macrophages. RAW 264.7 macrophages express nonmuscle myosin heavy chain II-A as the only significant nonmuscle myosin heavy chain isoform, with expression of nonmuscle myosin heavy chain II-B and II-C low or absent. Treatment of the cells with sodium butyrate, an inhibitor of histone deacetylase, led to the dose-dependent induction of nonmuscle myosin heavy chain II-C. Trichostatin A, another inhibitor of histone deacetylase, also induced nonmuscle myosin heavy chain II-C. Induction of nonmuscle myosin heavy chain II-C in response to these histone deacetylase inhibitors was attenuated by mithramycin, an inhibitor of Sp1 binding to GC-rich DNA sequences. Bacterial lipopolysaccharide alone had no effect on basal nonmuscle myosin heavy chain II-C expression, but attenuated butyrate-mediated induction of nonmuscle myosin heavy chain II-C. The effects of lipopolysaccharide were mimicked by the nitric oxide donors sodium nitroprusside and spermine NONOate, suggesting a role for nitric oxide in the lipopolysaccharide-mediated down-regulation of nonmuscle myosin heavy chain II-C induction. This was supported by experiments with the inducible nitric-oxide synthase inhibitor 1400W, which partially blocked the lipopolysaccharide-mediated attenuation of nonmuscle myosin heavy chain induction. 8-Bromo-cGMP had no effect on nonmuscle myosin heavy chain induction, consistent with a cGMP-independent mechanism for nitric oxide-mediated inhibition of nonmuscle myosin heavy chain II-C induction."	"A novel autosomal dominant non-syndromic deafness locus (DFNA48) maps to 12q13-q14 in a large Italian family. Non-syndromic hearing loss is the most common sensory disorder in humans; 15%-20% of cases are transmitted as a dominant trait (NSDA) with 40 loci having been mapped and 16 genes having been identified. Here, we report the mapping of a novel NSDA locus, DFNA48, to chromosome 12q13-q14 in a large multigenerational Italian family. A maximum lod score of 3.31 was obtained with marker D12S83, whereas markers D12S347 and D12S1703 defined a region of approximately 18 cM. Positional candidate genes are being screened for deafness-causing mutations."	"Clinical presentation of the DFNA loci where causative genes have not yet been cloned. DFNA4, DFNA6/14, DFNA7, DFNA16, DFNA20 and DFNA21. NA"	"A novel locus for autosomal dominant non-syndromic deafness (DFNA41) maps to chromosome 12q24-qter. We have studied 36 subjects in a large multigenerational Chinese family that is segregating for an autosomal dominant adult onset form of progressive non-syndromic hearing loss. All affected subjects had bilateral sensorineural hearing loss involving all frequencies with some significant gender differences in initial presentation. After excluding linkage to known loci for non-syndromic deafness, we used the Center for Inherited Disease Research (CIDR) to test for 351 polymorphic markers distributed at approximately 10 cM intervals throughout the genome. Analysis of the resulting data provided evidence that the locus designated DFNA41 maps to a 15 cM region on chromosome 12q24.32-qter, proximal to the marker D12S1609. A maximum two point lod score of 6.56 at theta=0.0 was obtained for D12S343. This gene is distal to DFNA25, a previously identified locus for dominant adult onset hearing loss that maps to 12q21-24. Positional/functional candidate genes in this region include frizzled 10, epimorphin, RAN, and ZFOC1."	"Second family with hearing impairment linked to 19q13 and refined DFNA4 localisation. Until now, over 30 loci have been identified by linkage analysis of affected families that segregate non-syndromic and dominantly inherited forms of hearing impairment (DFNA). A German family with a non-syndromic progressive hearing impairment transmitted in autosomal dominant mode was linked to 19q13.3-q13.4 by a genome-wide scan. Due to the low lod-score (1.85 at theta=0.05) for APOC2-locus we extended the fine mapping attempt with further markers in the same chromosomal region. This resulted in significant evidence for linkage to the markers D19S246 and D19S553 (two-point lod-score of 4.05 and 3.55 at theta=0.0) and a candidate critical region of 14 cM between markers D19S412 and D19S571. This region shows partial overlap with the previously reported DFNA4 critical region. The human gene BAX is orthologous to the rodent Bcl2-related apoptosis gene that is temporally expressed during the postnatal period in the developing inner ear of the mouse. BAX, mapping at a distance of no more than 0.73 cM distally to marker D19S553 appeared a likely candidate in our pedigree but genomic sequencing of coding regions and exon/intron boundaries excluded disease-related mutations. However, additional ESTs in the same region remain to be tested."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO6"	"nonsyndromic genetic deafness"	"Approaches to Identify and Characterise MYO6-Cargo Interactions. Given the prevalence and importance of the actin cytoskeleton and the host of associated myosin motors, it comes as no surprise to find that they are linked to a plethora of cellular functions and pathologies. Although our understanding of the biophysical properties of myosin motors has been aided by the high levels of conservation in their motor domains and the extensive work on myosin in skeletal muscle contraction, our understanding of how the nonmuscle myosins participate in such a wide variety of cellular processes is less clear. It is now well established that the highly variable myosin tails are responsible for targeting these myosins to distinct cellular sites for specific functions, and although a number of adaptor proteins have been identified, our current understanding of the cellular processes involved is rather limited. Furthermore, as more adaptor proteins, cargoes and complexes are identified, the importance of elucidating the regulatory mechanisms involved is essential. Ca<sup>2+</sup>, and now phosphorylation and ubiquitination, are emerging as important regulators of cargo binding, and it is likely that other post-translational modifications are also involved. In the case of myosin VI (MYO6), a number of immediate binding partners have been identified using traditional approaches such as yeast two-hybrid screens and affinity-based pull-downs. However, these methods have only been successful in identifying the cargo adaptors, but not the cargoes themselves, which may often comprise multi-protein complexes. Furthermore, motor-adaptor-cargo interactions are dynamic by nature and often weak, transient and highly regulated and therefore difficult to capture using traditional affinity-based methods. In this chapter we will discuss the various approaches including functional proteomics that have been used to uncover and characterise novel MYO6-associated proteins and complexes and how this work contributes to a fuller understanding of the targeting and function(s) of this unique myosin motor."	"Myosins and Hearing. Hearing loss is both genetically and clinically heterogeneous, and pathogenic variants of over a hundred different genes are associated with this common neurosensory disorder. A relatively large number of these &quot;deafness genes&quot; encode myosin super family members. The evidence that pathogenic variants of human MYO3A, MYO6, MYO7A, MYO15A, MYH14 and MYH9 are associated with deafness ranges from moderate to definitive. Additional evidence for the involvement of these six myosins for normal hearing also comes from animal models, usually mouse or zebra fish, where mutations of these genes cause hearing loss and from biochemical, physiological and cell biological studies of their roles in the inner ear. This chapter focuses on these six genes for which evidence of a causative role in deafness is substantial."	"Loss of myosin VI expression affects acrosome/acroplaxome complex morphology during mouse spermiogenesis. During spermiogenesis in mammals actin filaments and a variety of actin-binding proteins are involved in the formation and function of highly specialized testis-specific structures. Actin-based motor proteins, such as myosin Va and VIIa, play a key role in this complex process of spermatid transformation into mature sperm. We have previously demonstrated that myosin VI (MYO6) is also expressed in mouse testes. It is present in actin-rich structures important for spermatid development, including one of the earliest events in spermiogenesis-acrosome formation. Here, we demonstrate using immunofluorescence, cytochemical and ultrastructural approaches that MYO6 is involved in maintaining the structural integrity of these specialized actin-rich structures during acrosome biogenesis in mouse. We show that MYO6 together with its binding partner TOM1/L2 is present at/around the spermatid Golgi complex and the nascent acrosome. Depletion of MYO6 in Snell's waltzer mice causes structural disruptions of the Golgi complex and affects the acrosomal granule positioning within the developing acrosome. In summary, our results suggest that MYO6 plays an anchoring role during the acrosome biogenesis mainly by tethering of different cargo/membranes to highly specialized actin-related structures.."	"Characterization of the transcriptomes of Atoh1-induced hair cells in the mouse cochlea. Postnatal mammalian cochlear hair cells (HCs) can be regenerated by direct transdifferentiation or by mitotic regeneration from supporting cells through many pathways, including Atoh1, Wnt, Hedgehog and Notch signaling. However, most new HCs are immature HCs. In this study we used RNA-Seq analysis to compare the differences between the transcriptomes of Atoh1 overexpression-induced new HCs and the native HCs, and to define the factors that might help to promote the maturation of new HCs. As expected, we found Atoh1-induced new HCs had obvious HC characteristics as demonstrated by the expression of HC markers such as Pou4f3 and Myosin VIIA (Myo7a). However, Atoh1-induced new HCs had significantly lower expression of genes that are related to HC function such as Slc26a5 (Prestin), Slc17a8 and Otof. We found that genes related to HC cell differentiation and maturation (Kcnma1, Myo6, Myo7a, Grxcr1, Gfi1, Wnt5a, Fgfr1, Gfi1, Fgf8 etc.) had significantly lower expression levels in new HCs compared to native HCs. In conclusion, we found a set of genes that might regulate the differentiation and maturation of new HCs, and these genes might serve as potential new therapeutic targets for functional HC regeneration and hearing recovery."	"Atypical Myosin Tunes Dendrite Arbor Subdivision. Dendrite arbor pattern determines the functional characteristics of a neuron. It is founded on primary branch structure, defined through cell intrinsic and transcription-factor-encoded mechanisms. Developing arbors have extensive acentrosomal microtubule dynamics, and here, we report an unexpected role for the atypical actin motor Myo6 in creating primary branch structure by specifying the position, polarity, and targeting of these events. We carried out in vivo time-lapse imaging of Drosophila adult sensory neuron differentiation, integrating machine-learning-based quantification of arbor patterning with molecular-level tracking of cytoskeletal remodeling. This revealed that Myo6 and the transcription factor Knot regulate transient surges of microtubule polymerization at dendrite tips; they drive retrograde extension of an actin filament array that specifies anterograde microtubule polymerization and guides these microtubules to subdivide the tip into multiple branches. Primary branches delineate functional compartments; this tunable branching mechanism is key to define and diversify dendrite arbor compartmentalization."	"Clinical Characteristics and In Vitro Analysis of MYO6 Variants Causing Late-Onset Progressive Hearing Loss. MYO6 is known as a genetic cause of autosomal dominant and autosomal recessive inherited hearing loss. In this study, to clarify the frequency and clinical characteristics of hearing loss caused by MYO6 gene mutations, a large-scale genetic analysis of Japanese patients with hearing loss was performed. By means of massively parallel DNA sequencing (MPS) using next-generation sequencing for 8074 Japanese families, we found 27 MYO6 variants in 33 families, 22 of which are novel. In total, 2.40% of autosomal dominant sensorineural hearing loss (ADSNHL) in families in this study (32 out of 1336) was found to be caused by MYO6 mutations. The present study clarified that most cases showed juvenile-onset progressive hearing loss and their hearing deteriorated markedly after 40 years of age. The estimated hearing deterioration was found to be 0.57 dB per year; when restricted to change after 40 years of age, the deterioration speed was accelerated to 1.07 dB per year. To obtain supportive evidence for pathogenicity, variants identified in the patients were introduced to MYO6 cDNA by site-directed mutagenesis and overexpressed in epithelial cells. They were then assessed for their effects on espin1-induced microvilli formation. Cells with wildtype myosin 6 and espin1 co-expressed created long microvilli, while co-expression with mutant constructs resulted in severely shortened microvilli. In conclusion, the present data clearly showed that MYO6 is one of the genes to keep in mind with regard to ADSNHL, and the molecular characteristics of the identified gene variants suggest that a possible pathology seems to result from malformed stereocilia of the cochlear hair cells."	"Long noncoding RNA UCA1 promotes cell growth, migration, and invasion by targeting miR-143-3p in oral squamous cell carcinoma. The long noncoding RNA (lncRNA) urothelial carcinoma-associated 1 (UCA1) is dysregulated in many types of tumors; however, its role in oral squamous cell carcinoma (OSCC) remains unclear. This study aims to determine the effect of lncRNA UCA1 on OSCC. Fifty-six paired OSCC and adjacent nontumorous tissues were collected and the levels of UCA1, miR-143-3p, and MYO6 in the tissues were evaluated by qRT-PCR. In in vitro experiments, cell viability, migration, and invasion were measured by, respectively, performing CCK-8, wound healing, and transwell assays. The target relationships among UCA1, miR-143-3p, and MYO6 were verified by dual-luciferase assay. Western blot and immunohistochemistry were carried out to determine the protein levels. Xenograft mouse model was established to explore the effects of UCA1 in vivo. Levels of UCA1 and MYO6 were increased significantly in OSCC, while the level of miR-143-3p was decreased compared with the adjacent nontumorous tissues. UCA1 promoted OSCC cell growth, migration, and invasion both in vitro and in vivo, while miR-143-3p reversed the progression. MYO6 was validated as a target for miR-143-3p, and MYO6 overexpression reversed the effects of miR-143-3p mimic on OSCC cells. LncRNA UCA1 contributes to the proliferation and metastasis of OSCC cells by targeting miR-143-3p and upregulating its downstream gene MYO6. UCA1 could serve as a promising novel target therapy for treatment of OSCC."	"HNF1A-AS1 Regulates Cell Migration, Invasion and Glycolysis via Modulating miR-124/MYO6 in Colorectal Cancer Cells. Accumulating evidence determined that lncRNAs play multiple roles in cell progression in colorectal cancer (CRC). Long noncoding RNA (lncRNA) hepatocyte nuclear factor 1 homeobox A (HNF1A)-antisense RNA 1 (AS1) has been identified to affect cell growth and disease diagnosis in various cancers, including CRC. However, the underlying regulatory mechanism of HNF1A-AS1 in cell progression and glycolysis has not been fully explored in CRC. The expression of HNF1A-AS1, microRNA-124 (miR-124) and Myosins of class VI (MYO6) was detected using reverse transcription-quantitative polymerase chain reaction (RT-qPCR). The analysis of glucose consumption, lactate production and hexokinase 2 (HK2) protein level was used to assess glycolysis in cells. The protein level of HK2 and MYO6 was measured with Western blot. Cell migration and invasion were evaluated using the transwell assay. The relationship among HNF1A-AS1, miR-124 and MYO6 was determined via luciferase reporter and RNA immunoprecipitation (RIP) assay. In this study, we found that HNF1A-AS1 was upregulated in CRC tissues and cell lines. Functional experiments determined that reduction of HNF1A-AS1 or promotion of miR-124 inhibited cell migration and invasion as well as glycolysis in CRC cells. What' more, luciferase reporter assay manifested that miR-124 was a target of HNF1A-AS1 and MYO6 was a target mRNA of miR-124 in CRC cells. Additionally, reverse experiments showed that the effects of si-HNF1A-AS1 on colorectal cancer cells were impaired by anti-miR-124 and the effects of high miR-124 expression on CRC cells were rescued by upregulating MYO6. HNF1A-AS1 regulated MYO6 expression via targeting miR-124 in CRC cells. In this study, we first found that HNF1A-AS1 regulated cell migration, invasion and glycolysis via modulating miR-124/MYO6 in CRC cells."	"Simultaneous tracking of two motor domains reveals near simultaneous steps and stutter steps of myosin 10 on actin filament bundles. Myosin X (Myo10) has several unique design features including dimerization via an anti-parallel coiled coil and a long lever arm, which allow it to preferentially move on actin bundles. To understand the stepping behavior of single Myo10 on actin bundles, we labeled two heads of Myo10 dimers with different fluorophores. Unlike previously described for myosin V (Myo5) and VI (Myo6), which display alternating hand-over-hand stepping, Myo10 frequently took near simultaneous steps of both heads, and less frequently, 2-3 steps of one head before the other head stepped. We suggest that this behavior results from the unusual kinetic features of Myo10, in conjunction with the structural properties of the motor domain/lever arm, which will favor movement on actin bundles rather than on single filaments."	"Two monogenic disorders masquerading as one: severe congenital neutropenia with monocytosis and non-syndromic sensorineural hearing loss. We report a large family with four successive generations, presenting with a complex phenotype of severe congenital neutropenia (SCN), partially penetrant monocytosis, and hearing loss of varying severity. We performed whole exome sequencing to identify the causative variants. Sanger sequencing was used to perform segregation analyses on remaining family members. We identified and classified a pathogenic GFI1 variant and a likely pathogenic variant in MYO6 which together explain the complex phenotypes seen in this family. We present a case illustrating the benefits of a broad screening approach that allows identification of oligogenic determinants of complex human phenotypes which may have been missed if the screening was limited to a targeted gene panel with the assumption of a syndromic disorder. This is important for correct genetic diagnosis of families and disentangling the range and severity of phenotypes associated with high impact variants."	"Clinical and genetic study of 12 Chinese Han families with nonsyndromic deafness. Nonsyndromic hearing loss is clinically and genetically heterogeneous. In this study, we characterized the clinical features of 12 Chinese Han deaf families in which mutations in common deafness genes GJB2, SLC26A4, and MT-RNR1 were excluded. Targeted next-generation sequencing of 147 known deafness genes was performed in probands of 10 families, while whole-exome sequencing was applied in those of the rest two. Pathogenic mutations in a total of 11 rare deafness genes, OTOF, CDH23, PCDH15, PDZD7, ADGRV1, KARS, OTOG, GRXCR2, MYO6, GRHL2, and POU3F4, were identified in all 12 probands, with 16 mutations being novel. Intrafamilial cosegregation of the mutations and the deafness phenotype were confirmed by Sanger sequencing. Our results expanded the mutation spectrum and genotype-phenotype correlation of nonsyndromic hearing loss in Chinese Hans and also emphasized the importance of combining both next-generation sequencing and detailed auditory evaluation to achieve a more accurate diagnosis for nonsyndromic hearing loss."	"Circulating lncRNA UCA1 Promotes Malignancy of Colorectal Cancer via the miR-143/MYO6 Axis. Exosomes mediate cell-cell crosstalk in cancer progression by transferring a variety of biomolecules, including long noncoding RNAs (lncRNAs). Long non-coding RNA urothelial carcinoma-associated (UCA1) is a well-known lncRNA associated with the development and progression of various cancers, including colorectal cancer (CRC). However, the presence of UCA1 in exosomes and the roles and clinical values of exosomal UCA1 in CRC remain unknown. In this study, we systematically analyzed the expression profiles of exosomal lncRNAs in CRC patients using a high-throughput microarray assay. Then, we evaluated the UCA1 expression levels in a series of CRC tissues and the serum exosomes of CRC patients using quantitative real-time PCR. The roles of UCA1 on CRC in vitro and in vivo were investigated by MTT, colony formation, Transwell, quantitative real-time PCR, flow cytometry, and western blotting. The miRNA binding sites of UCA1 were predicted using the miRcode online database, and miR-143 was validated to target UCA1 by dual-luciferase activity assay and AGO2 RNA immunoprecipitation. Finally, the role of exosome-mediated UCA1 was further investigated by co-culturing with CRC cells. This study showed that UCA1 was upregulated in CRC tissues and functioned as an oncogene in CRC. Loss-of-function investigations showed that inhibition of UCA1 suppressed CRC cell proliferation and metastasis in vivo and in vitro. Mechanistically, UCA1 was identified as a miR-143 sponge. We also found that MYO6 was a direct target of miR-1205, which functioned as an oncogene in CRC. Moreover, UCA was also upregulated in the serum exosomes of CRC patients and could transfer UCA1 to CRC cells to increase their abilities of cell proliferation and migration. In conclusion, these data suggest that UCA1 could be an oncogene for CRC and may serve as a candidate target for new therapies in human CRC."	"lncRNA UCA1 Functions as a ceRNA to Promote Prostate Cancer Progression via Sponging miR143. UCA1 (urothelial carcinoma associated 1) is a long non-coding RNA (lncRNA) that was found overexpressed in various human cancers including prostate cancer (PCa). However, the aspect of UCA1-miRNA-mRNA interaction in PCa remains unclear. In this study, we confirmed the role of UCA1 in PCa and found that UCA1 downregulation inhibited cell proliferation of PCa cells. Then we demonstrated that repressed UCA1 promoted the microRNA-143 (miR-143) expression and miR-143 could bind to the predicted binding site of UCA1. We then proved the anti-tumor role of miR-143 in PCa. Furthermore, we found that miR-143 displays its role in PCa via modulating the MYO6 expression. In summary, our study demonstrated that UCA1 exerts oncogenes activity in PCa, acting mechanistically by upregulating MYO6 expression through &quot;sponging&quot; miR-143."	"Myosin VI maintains the actin-dependent organization of the tubulobulbar complexes required for endocytosis during mouse spermiogenesis†‡. Myosin VI (MYO6) is an actin-based motor that has been implicated in a wide range of cellular processes, including endocytosis and the regulation of actin dynamics. MYO6 is crucial for actin/membrane remodeling during the final step of Drosophila spermatogenesis, and MYO6-deficient males are sterile. This protein also localizes to actin-rich structures involved in mouse spermiogenesis. Although loss of MYO6 in Snell's waltzer knock-out (KO) mice causes several defects and shows reduced male fertility, no studies have been published to address the role of MYO6 in sperm development in mouse. Here we demonstrate that MYO6 and some of its binding partners are present at highly specialized actin-based structures, the apical tubulobulbar complexes (TBCs), which mediate endocytosis of the intercellular junctions at the Sertoli cell-spermatid interface, an essential process for sperm release. Using electron and light microscopy and biochemical approaches, we show that MYO6, GIPC1 and TOM1/L2 form a complex in testis and localize predominantly to an early endocytic APPL1-positive compartment of the TBCs that is distinct from EEA1-positive early endosomes. These proteins also associate with the TBC actin-free bulbular region. Finally, our studies using testis from Snell's waltzer males show that loss of MYO6 causes disruption of the actin cytoskeleton and disorganization of the TBCs and leads to defects in the distribution of the MYO6-positive early APPL1-endosomes. Taken together, we report here for the first time that lack of MYO6 in mouse testis reduces male fertility and disrupts spatial organization of the TBC-related endocytic compartment during the late phase of spermiogenesis."	"Identification of MYO6 copy number variation associated with cochlear aplasia by targeted sequencing. Copy number variation is an extensively studied cause of hereditary diseases. However, its role in hereditary sensorineural deafness has been rarely reported. Using targeted sequencing, SNP array and qPCR, we found a novel 622.2 kb duplication of 6q14.1 in a patient with congenital sensorineural hearing loss and cochlear aplasia. The duplication included MYO6 and IMPG1 genes. FISH study confirmed that this duplication was inherited from the patient's mosaic mother."	"Molecular profiling of radical prostatectomy tissue from patients with no sign of progression identifies ERG as the strongest independent predictor of recurrence. As a major cause of morbidity and mortality among men, prostate cancer is a heterogenous disease, with a vast heterogeneity in the biology of the disease and in clinical outcome. While it often runs an indolent course, local progression or metastasis may eventually develop, even among patients considered &quot;low risk&quot; at diagnosis. Therefore, biomarkers that can discriminate aggressive from indolent disease at an early stage would greatly benefit patients. We hypothesized that tissue specimens from early stage prostate cancers may harbor predictive signatures for disease progression. We used a cohort of radical prostatectomy patients with longitudinal follow-up, who had tumors with low grade and stage that revealed no signs of future disease progression at surgery. During the follow-up period, some patients either remained indolent (non-BCR) or progressed to biochemical recurrence (BCR). Total RNA was extracted from tumor, and adjacent normal epithelium of formalin-fixed-paraffin-embedded (FFPE) specimens. Differential gene expression in tumors, and in tumor versus normal tissues between BCR and non-BCR patients were analyzed by NanoString using a customized CodeSet of 151 probes. After controlling for false discovery rates, we identified a panel of eight genes (ERG, GGT1, HDAC1, KLK2, MYO6, PLA2G7, BICD1 and CACNAID) that distinguished BCR from non-BCR patients. We found a clear association of ERG expression with non-BCR, which was further corroborated by quantitative RT-PCR and immunohistochemistry assays. Our results identified ERG as the strongest predictor for BCR and showed that potential prognostic prostate cancer biomarkers can be identified from FFPE tumor specimens."	"Myosin VI Drives Clathrin-Mediated AMPA Receptor Endocytosis to Facilitate Cerebellar Long-Term Depression. Myosin VI is an actin-based cytoskeletal motor implicated in various steps of membrane trafficking. Here, we investigated whether this myosin is crucial for synaptic function and plasticity in neurons. We find that myosin VI localizes at cerebellar parallel fiber to Purkinje cell synapses and that the myosin is indispensable for long-term depression of AMPA-receptor-mediated synaptic signal transmission at this synapse. Moreover, direct visualization of GluA2-containing AMPA receptors in Purkinje cells reveals that the myosin drives removal of AMPA receptors from the surface of dendritic spines in an activity-dependent manner. Co-immunoprecipitation and super-resolution microscopy indicate that specifically the interaction of myosin VI with the clathrin adaptor component α-adaptin is important during long-term depression. Together, these data suggest that myosin VI directly promotes clathrin-mediated endocytosis of AMPA receptors in Purkinje cells to mediate cerebellar long-term depression. Our results provide insights into myosin VI function and the molecular mechanisms underlying synaptic plasticity."	"The MYO6 interactome: selective motor-cargo complexes for diverse cellular processes. Myosins of class VI (MYO6) are unique actin-based motor proteins that move cargo towards the minus ends of actin filaments. As the sole myosin with this directionality, it is critically important in a number of biological processes. Indeed, loss or overexpression of MYO6 in humans is linked to a variety of pathologies including deafness, cardiomyopathy, neurodegenerative diseases as well as cancer. This myosin interacts with a wide variety of direct binding partners such as for example the selective autophagy receptors optineurin, TAX1BP1 and NDP52 and also Dab2, GIPC, TOM1 and LMTK2, which mediate distinct functions of different MYO6 isoforms along the endocytic pathway. Functional proteomics has recently been used to identify the wider MYO6 interactome including several large functionally distinct multi-protein complexes, which highlight the importance of this myosin in regulating the actin and septin cytoskeleton. Interestingly, adaptor-binding not only triggers cargo attachment, but also controls the inactive folded conformation and dimerisation of MYO6. Thus, the C-terminal tail domain mediates cargo recognition and binding, but is also crucial for modulating motor activity and regulating cytoskeletal track dynamics."	"A humanized mouse model, demonstrating progressive hearing loss caused by MYO6 p.C442Y, is inherited in a semi-dominant pattern. Myosin VI is an actin-associated molecular motor vital for auditory and vestibular function. It is encoded by MYO6 located on chromosome 6q13 in human. Pathogenic variants in MYO6 have been associated with both dominant and recessive forms of hearing loss. However, the molecular mechanisms remain unclear. We established a humanized knock-in mouse model, Myo6-C442Y, to mimic the p.C442Y missense variant identified in human patients with autosomal dominant nonsyndromic hearing loss designated as DFNA22. We characterized hearing and inner ear morphologies of Myo6-C442Y and wild-type control mice. We found that both homozygous and heterozygous Myo6-C442Y mice exhibited hearing loss from three weeks after birth that rapidly progressed to profound deafness by six to nine weeks of age. The hearing loss corresponded to the degeneration of hair cells in the organ of Corti. We also observed disorganized stereocilia with irregular morphological features by immunohistochemistry and scanning electron microscopy. Additionally, hearing loss and inner-ear morphological anomalies were more pronounced and deteriorated more drastically in homozygous than in heterozygous Myo6-C442Y mice, indicating a semi-dominant inheritance pattern. Heterozygous Myo6-C442Y mice recapitulated the progressive postlingual sensorineural deafness in human, thus providing a useful model for elucidating the role myosin VI plays in the mammalian auditory system. Furthermore, the late-onset hearing loss of this mouse model may provide a therapeutic window for the emerging gene therapy, a promising strategy to treat certain forms of genetic deafness."	"MYO1C stabilizes actin and facilitates the arrival of transport carriers at the Golgi complex. In this study, we aimed to identify the myosin motor proteins that control trafficking at the Golgi complex. In addition to the known Golgi-associated myosins MYO6, MYO18A and MYH9 (myosin IIA), we identified MYO1C as a novel player at the Golgi in a human cell line. We demonstrate that depletion of MYO1C induces Golgi complex fragmentation and decompaction. MYO1C accumulates at dynamic structures around the Golgi complex that colocalize with Golgi-associated actin dots. MYO1C depletion leads to loss of cellular F-actin, and Golgi complex decompaction is also observed after inhibition or loss of the actin-related protein 2/3 complex, Arp2/3 (also known as ARPC). We show that the functional consequence of MYO1C depletion is a delay in the arrival of incoming transport carriers, both from the anterograde and retrograde routes. We propose that MYO1C stabilizes actin at the Golgi complex, facilitating the arrival of incoming transport carriers at the Golgi.This article has an associated First Person interview with the first author of the paper."	"Targeted Mutation Analysis of the SLC26A4, MYO6, PJVK and CDH23 Genes in Iranian Patients with AR Nonsyndromic Hearing Loss. Hearing loss (HL) is the most prevalent sensory disorder. The over 100 genes implicated in autosomal recessive nonsyndromic hearing loss (ARNSHL) makes it difficult to analyze and determine the accurate genetic causes of hearing loss. We sought to de?ne the frequency of seven hearing loss-Causing causing genetic Variants in four genes in an Iranian population with hearing loss. One hundred ARNSHL patients with normal GJB2/GJB6 genes were included, and targeted mutations in SLC26A4, MYO6, PJVK and CDH23 genes were analyzed by ARMS-PCR. The negative and positive results were confirmed by the Sanger sequencing. We found only two mutations, one in MYO6 (c.554-1 G &gt; A) gene and another in PJVK (c.547C &gt; T). c.554-1G &gt; A and c.547C &gt; T mutations are responsible for 1% each of the Iranian ARNSHL patients. These genes are not a frequent cause of ARNSHL in an Iranian population."	"MicroRNA-5195-3p plays a suppressive role in cell proliferation, migration and invasion by targeting MYO6 in human non-small cell lung cancer. MiRNA-5195-3p (miR-5195-3p), a recently discovered and poorly studied miRNA, has been reported to suppress bladder cancer cell behavior. However, its regulatory role in non-small cell lung cancer (NSCLC) remains unclear. Here, the expression of miR-5195-3p was found to be reduced in NSCLC tissues and cells. The in vitro experiments showed that miR-5195-3p upregulation repressed cell proliferation, migration and invasion by CCK-8 and transwell assays. In addition, MYO6 was predicted and confirmed as a potential target of miR-5195-3p by Bioinformatics analysis, Luciferase reporter assay and western blot analysis. There was significantly negative correlation between miR-5195-3p and MYO6 in NSCLC tissues. Furthermore, MYO6 knockdown exhibited similar effects to those of miR-5195-3p overexpression in NSCLC cells, and restored MYO6 expression reversed the inhibitory effects of miR-5195-3p. Therefore, these results demonstrate that miR-5195-3p functions as a tumor suppressor by directly modulating MYO6 expression in NSCLC cells, and may be an innovative candidate target for NSCLC therapy."	"Identification of a novel MYO6 mutation associated with autosomal dominant non-syndromic hearing loss in a Chinese family by whole-exome sequencing. Autosomal dominant non-syndromic hearing loss (ADNSHL) is characterized by postlingual progressive onset. Due to its high genetic heterogeneity, it is difficult to perform a molecular diagnosis for most patients with ADNSHL. In our study, whole-exome sequencing (WES) was used to screen pathogenic gene candidates by analyzing genomic DNA samples from a large Chinese family (JSNY-067), including the proband and her father, who suffered from non-syndromic hearing loss. The pathogenicity of candidate nonsynonymous variants in ADNSHL genes was evaluated by co-segregation analysis in family members by direct PCR and Sanger sequencing. Furthermore, multiple in silico analyses (SIFT, Polyphen2, PROVEAN and MutationTaster) and molecular dynamics simulation were used to assess the potential pathogenicity of the candidate mutations. We identified a novel causative mutation, c.622A&gt;G in MYO6 (DFNA22), that resulted in a p.K208E substitution. This mutation co-segregated with the hearing loss phenotype in extended family members, and was predicted to be pathogenic by SIFT, PolyPhen2, PROVEAN and MutationTaster. Furthermore, molecular dynamics simulation analysis revealed that the p.K208E substitution had a limited influence on the whole protein structure and stability, but that it could affect the locations of the sidechains of nearby hydrophilic residues, which in turn resulted in the sidechains of Asn186 and Glu190 being exposed more frequently at the surface of the protein. WES has thus been shown to be a useful molecular diagnostic tool in screening uncommon gene mutations associated with hereditary hearing loss."	"Dysregulated transcriptional networks in KMT2A- and MLLT10-rearranged T-ALL. For children and young adults with T-lineage acute lymphoblastic leukemia (T-ALL), event free survival following relapse is &lt; 10%. We recently showed that rearrangements of the mixed lineage leukemia gene (KMT2A-R) are associated with induction failure and an inferior survival in T-ALL. Because there are currently no molecular features that inform treatment strategies in T-ALL, we hypothesized that transcriptional alterations related to KMT2A-R and MLLT10-R T-ALL could identify biologically relevant genes and signaling pathways for the development of targeted therapies for these groups of patients. We analyzed microarray data from a retrospective cohort of 100 T-ALL patients to identify novel targets for KMT2A (n = 12) or MLLT10 (n = 9) chimeras. We identified 330 probe sets that could discriminate between these groups, including novel targets, like RUNX2, TCF4 or MYO6. The results were further validated in two independent data sets and the functional networks were analyzed to identify pathways that may be of pathogenic or therapeutic relevance."	"Actin cages isolate damaged mitochondria during mitophagy. Mitochondrial homeostasis is maintained by removing dysfunctional, ubiquitinated mitochondria from the network via PRKN-dependent mitophagy. MYO6, a unique myosin that moves towards the minus ends of actin filaments, forms a complex with PRKN and is selectively recruited to damaged mitochondria by binding to ubiquitin. On the mitochondrial surface, this myosin motor initiates the assembly of F-actin cages, which serve as a quality control mechanism to isolate dysfunctional mitochondria thereby preventing their refusion with neighboring populations. MYO6 also plays a role in the later stages of the mitophagy pathway by tethering endosomes to actin filaments facilitating mitophagosome maturation and autophagosome-lysosome fusion."	"A clinical guidance to DFNA22 drawn from a Korean cohort study with an autosomal dominant deaf population: A retrospective cohort study. The MYO6 gene, if altered, can cause nonsyndromic hearing loss (NSHL) either in an autosomal dominant (AD) (DFNA22) or recessive form. The present study identified MYO6 variants in the cohort of Korean AD NSHL families and investigated the audiological phenotypes of DFNA22 with respect to suggesting clinical guides for the counseling of DFNA22. A retrospective cohort study was performed on 81 AD NSHL families in two hospitals. Among them, five families (SH21, SB60, SB247, SB290 and SB305) segregating with MYO6 variant were genetically and clinically assessed. We identified two novel missense variants of MYO6: p.G223R (SB290) and p.T158R (SB305). A known heterozygous truncation variant, p.R205X, reported previously (SH21, SB60), was identified (SB247). The overall frequency of DFNA22 among such cases was 6.2%. Specifically, we found p.R205X from three of five DFNA22 families (60%). Five DFNA22 families demonstrated extremely diverse audiogram configurations and age of onset with even intrafamilial variations, whereas the severity of hearing loss mostly ranged within moderate. We report a recurring predominant allele and two new missense variants of MYO6, highlighting the significant contribution of MYO6 to AD NSHL in the Korean population. Extremely diverse audiological configurations of DFNA22 suggest that MYO6 should be considered in future genetic studies of patients with AD NSHL. Gradual progression with a good speech audiometry score could provide physicians with clinical insight with respect to advising patients to use hearing aids or consider middle ear implants, whereas, in the case of certain exceptional circumstances, physicians could provide patients with the option to consider a cochlear implant."	"The MYO6 interactome reveals adaptor complexes coordinating early endosome and cytoskeletal dynamics. The intracellular functions of myosin motors requires a number of adaptor molecules, which control cargo attachment, but also fine-tune motor activity in time and space. These motor-adaptor-cargo interactions are often weak, transient or highly regulated. To overcome these problems, we use a proximity labelling-based proteomics strategy to map the interactome of the unique minus end-directed actin motor MYO6. Detailed biochemical and functional analysis identified several distinct MYO6-adaptor modules including two complexes containing RhoGEFs: the LIFT (LARG-Induced F-actin for Tethering) complex that controls endosome positioning and motility through RHO-driven actin polymerisation; and the DISP (DOCK7-Induced Septin disPlacement) complex, a novel regulator of the septin cytoskeleton. These complexes emphasise the role of MYO6 in coordinating endosome dynamics and cytoskeletal architecture. This study provides the first in vivo interactome of a myosin motor protein and highlights the power of this approach in uncovering dynamic and functionally diverse myosin motor complexes."	"Myosin VI-Dependent Actin Cages Encapsulate Parkin-Positive Damaged Mitochondria. Mitochondrial quality control is essential to maintain cellular homeostasis and is achieved by removing damaged, ubiquitinated mitochondria via Parkin-mediated mitophagy. Here, we demonstrate that MYO6 (myosin VI), a unique myosin that moves toward the minus end of actin filaments, forms a complex with Parkin and is selectively recruited to damaged mitochondria via its ubiquitin-binding domain. This myosin motor initiates the assembly of F-actin cages to encapsulate damaged mitochondria by forming a physical barrier that prevents refusion with neighboring populations. Loss of MYO6 results in an accumulation of mitophagosomes and an increase in mitochondrial mass. In addition, we observe downstream mitochondrial dysfunction manifesting as reduced respiratory capacity and decreased ability to rely on oxidative phosphorylation for energy production. Our work uncovers a crucial step in mitochondrial quality control: the formation of MYO6-dependent actin cages that ensure isolation of damaged mitochondria from the network."	"Novel Insights into NDP52 Autophagy Receptor Functioning. NDP52/CALCOCO2 makes multiple contributions to selective autophagy. By interacting with cargos and LC3, NDP52 directs autophagy targets to autophagosomes. In addition, NDP52 promotes autophagosomes fusion with endolysosomes by connecting autophagosomes to MYOSIN VI. Recent studies reveal that Rab35 GTPase controls NDP52 recruitment to its targets and that NDP52 triggers MYOSIN VI (MYO6) motility."	"Next-generation sequencing identifies three novel missense variants in ILDR1 and MYO6 genes in an Iranian family with hearing loss with review of the literature. Hearing impairment is the most common sensorineural disorder and is genetically heterogeneous. Identification of the pathogenic mutations underlying hearing impairment is difficult, since causative mutations in 127 different genes have so far been reported. In this study, we performed Next-generation sequencing (NGS) in 2 individuals from a consanguineous family with hearing loss. Three novel mutations in known deafness genes were identified in the family; MYO6-p.R928C and -p.D1223N in heterozygous state and ILDR1-p.Y143C in homozygous state. Sanger sequencing confirmed co-segregation of the three mutations with deafness in the family. The identified mutation in ILDR1 gene is located in the immunoglobulin-type domain of the ILDR1 protein and the detected mutations in MY06 are located in the tail domain of the MYO6 protein. The mutations are predicted to be pathogenic by SIFT, PolyPhen and Mutation Taster. Our results suggest that either the homozygous ILDR1-p.Y143C mutation might be the pathogenic variant for ARNSHL or heterozygous MYO6- p.R928C, -p.D1223N might be involved in these patient's disorder due to compound heterozygousity. To our knowledge, this is the first ILDR1 and MYO6 mutations recognized in the southwest Iran. Our data expands the spectrum of mutations in ILDR1 and MYO6 genes."	"Long non-coding RNA SOX21-AS1 sponges miR-145 to promote the tumorigenesis of colorectal cancer by targeting MYO6. Emerging evidences have proved that long non-coding RNAs (lncRNAs) act as important molecular regulator in the tumor progression, including colorectal cancer (CRC). LncRNA SOX21-AS1 has been verified as oncogenic molecular in other cancers and tumorigenesis. In present study, our team investigates the clinical characteristic and molecular function in CRC carcinogenesis. Results showed that lncRNA SOX21-AS1 expression was significantly over-expressed in CRC tissue samples and cells. The aberrant over-expression of SOX21-AS1 indicated poor prognosis of CRC patients. In vitro and in vivo validation experiments, SOX21-AS1 silencing inhibited the proliferation, invasion, and decreased the tumor growth of CRC cells. Moreover, miR-145 was proved to be the target of SOX21-AS1, besides, myosin VI (MYO6) was found to be one of the targets of miR-145 using bioinformatics prediction programs and rescue confirmation experiments. In summary, our study reveals the tumorigenic effect of lncRNA SOX21-AS1 in CRC cells via targeting miR-145/MYO6, providing a novel insight for CRC carcinogenesis."	"Exome Sequencing Identifies a Novel Nonsense Mutation of MYO6 as the Cause of Deafness in a Brazilian Family. We investigated 313 unrelated subjects who presented with hearing loss to identify the novel genetic causes of this condition in Brazil. Causative GJB2/GJB6 mutations were found in 12.7% of the patients. Among the familial cases (100/313), four were selected for exome sequencing. In one case, two novel heterozygous variants were found and were predicted to be pathogenic based on bioinformatics tools, that is, p.Ser906* (MYO6) and p.Arg42Cys (GJB3). We confirmed that this nonsense MYO6 mutation segregated with deafness in this family. Only the proband and her unaffected mother exhibited the GJB3 mutation, which is in the same amino acid of a known Erythrokeratodermia variabilis mutation. None of the patients exhibited this skin disease, but the proband exhibited a more severe hearing loss. Hence, the GJB3 mutation was considered to be a variant of uncertain significance. In conclusion, we described a novel nonsense MYO6 mutation that was responsible for the hearing loss in a Brazilian family. This mutation resides in the neck domain of myosin-VI after the motor domain. Thus, our data give further support for genotype-phenotype correlations, which state that when the motor domain of the protein is functioning, the hearing loss is milder and has a later onset. The three remaining families without mutations in the known genes suggest that there are still deafness genes to be revealed."	"miR-143 and miR-145 inhibit gastric cancer cell migration and metastasis by suppressing MYO6. Metastasis is a major clinical obstacle responsible for the high mortality and poor prognosis of gastric cancer (GC). MicroRNAs (miRNAs) are critical mediators of metastasis that act by modulating their target genes. In this study, we found that miR-143 and miR-145 act via a common target gene, MYO6, to regulate the epithelial-mesenchymal transition (EMT) and inhibit metastasis. We determined that miR-143 and miR-145 were downregulated in GC, and the ectopic expression of miR-143 and/or miR-145 inhibited GC cell migration and metastasis. Furthermore, MYO6 was identified as a direct common target of miR-143 and miR-145 and was elevated in GC. Silencing of MYO6 resulted in a metastasis-suppressive activity similar to that of miR-143 and miR-145, while restoring MYO6 attenuated the anti-metastatic or anti-EMT effects caused by miR-143 and miR-145. Clinically, an inverse correlation was observed between miR-143/145 levels and MYO6 levels in GC tissues, and either miR-143/145 downregulation or MYO6 upregulation was associated with more malignant phenotypes in patients with GC. In conclusion, miR-143 and miR-145 suppress GC cell migration and metastasis by inhibiting MYO6 expression and the EMT, which provides a novel mechanism and promising therapeutic target for the treatment of GC metastasis."	"A novel splice site mutation of myosin VI in mice leads to stereociliary fusion caused by disruption of actin networks in the apical region of inner ear hair cells. An unconventional myosin encoded by the myosin VI gene (MYO6) contributes to hearing loss in humans. Homozygous mutations of MYO6 result in nonsyndromic profound congenital hearing loss, DFNB37. Kumamoto shaker/waltzer (ksv) mice harbor spontaneous mutations, and homozygous mutants exhibit congenital defects in balance and hearing caused by fusion of the stereocilia. We identified a Myo6c.1381G&gt;A mutation that was found to be a p.E461K mutation leading to alternative splicing errors in Myo6 mRNA in ksv mutants. An analysis of the mRNA and protein expression in animals harboring this mutation suggested that most of the abnormal alternatively spliced isoforms of MYO6 are degraded in ksv mice. In the hair cells of ksv/ksv homozygotes, the MYO6 protein levels were significantly decreased in the cytoplasm, including in the cuticular plates. MYO6 and stereociliary taper-specific proteins were mislocalized along the entire length of the stereocilia of ksv/ksv mice, thus suggesting that MYO6 attached to taper-specific proteins at the stereociliary base. Histological analysis of the cochlear hair cells showed that the stereociliary fusion in the ksv/ksv mutants, developed through fusion between stereociliary bundles, raised cuticular plate membranes in the cochlear hair cells and resulted in incorporation of the bundles into the sheaths of the cuticular plates. Interestingly, the expression of the stereociliary rootlet-specific TRIO and F-actin binding protein (TRIOBP) was altered in ksv/ksv mice. The abnormal expression of TRIOBP suggested that the rootlets in the hair cells of ksv/ksv mice had excessive growth. Hence, these data indicated that decreased MYO6 levels in ksv/ksv mutants disrupt actin networks in the apical region of hair cells, thereby maintaining the normal structure of the cuticular plates and rootlets, and additionally provided a cellular basis for stereociliary fusion in Myo6 mutants."	"The prevalence of diseases caused by lysosome-related genes in a cohort of undiagnosed patients. Lysosomal diseases (LD) comprise a group of approximately 60 hereditary conditions caused by progressive accumulation of metabolites due to defects in lysosomal enzymes and degradation pathways, which lead to a wide range of clinical manifestations. The estimated combined incidence of LD is between 1 in 4000 to 1 in 13,000 live births, with recent data from pilot newborn screening studies showing even higher incidence. We aimed to determine the prevalence of the classical LD and other diseases caused by lysosome-related genes in our cohort of diagnostic odyssey patients. The Individualized Medicine Clinic at Mayo Clinic is increasingly utilizing whole exome sequencing (WES) to determine the genetic etiology of undiagnosed Mendelian disease. From September 2012 to April 2017, WES results from 350 patients with unexplained symptoms were reviewed. Disease-causing variants were identified in MYO6, CLN6, LRBA, KCTD7, and ARSB revealing a genetic diagnosis of a LD in 8 individuals from 5 families. Based on our findings, lysosome-related disorders may be collectively common, reaching up to 1.5% prevalence in a cohort of patients with undiagnosed diseases presenting to a genetics clinic."	"Expression of Unconventional Myosin VI in Oligodendrocytes. Myelin is a specialized multilamellar structure involved in various functions of the nervous system. Oligodendrocytes are responsible for myelin formation in the central nervous system. Motor proteins play important roles in differentiation and myelin formation of the oligodendrocyte lineage. Recently, we revealed that one of the unconventional myosins, myosin ID (Myo1d), is expressed in mature oligodendrocytes and is required for myelin-like membrane formation in vitro. Previously, Cahoy et al. (J Neurosci 28:264-278, 2008) reported that another unconventional myosin VI (Myo6) is upregulated in transcriptome data of differentiated oligodendrocytes. However, it is uncertain whether Myo6 protein is present in oligodendrocytes. In this study, to analyze expression of Myo6 in oligodendrocytes, we performed immunofluorescence analysis on brains of adult normal and cuprizone-induced demyelination mice. Myo6 expression was detected in mature oligodendrocytes and oligodendrocyte progenitor cells in the cerebellum and corpus callosum. To compare temporal expression patterns of myosin superfamily members in vitro, double immunostainings using anti-Myo6, myosin Va (Myo5a), or Myo1d with each stage-specific oligodendrocyte marker antibody were performed. In cultured oligodendrocytes, although Myo1d was found only in mature oligodendrocytes, Myo6 and Myo5a signals were detected in all stages of differentiation, from oligodendrocyte progenitor cells to mature oligodendrocytes. Additionally, similar to Myo5a, Myo6-positive signals were confined to the cell body and processes. These results showed that Myo6 is one of the unconventional myosins in oligodendrocyte lineage cells, which could play a role in clathrin-related endocytosis."	"Widespread alternative exon usage in clinically distinct subtypes of Invasive Ductal Carcinoma. Cancer cells can have different patterns of exon usage of individual genes when compared to normal tissue, suggesting that alternative splicing may play a role in shaping the tumor phenotype. The discovery and identification of gene variants has increased dramatically with the introduction of RNA-sequencing technology, which enables whole transcriptome analysis of known, as well as novel isoforms. Here we report alternative splicing and transcriptional events among subtypes of invasive ductal carcinoma in The Cancer Genome Atlas (TCGA) Breast Invasive Carcinoma (BRCA) cohort. Alternative exon usage was widespread, and although common events were shared among three subtypes, ER+ HER2-, ER- HER2-, and HER2+, many events on the exon level were subtype specific. Additional RNA-seq analysis was carried out in an independent cohort of 43 ER+ HER2- and ER- HER2- primary breast tumors, confirming many of the exon events identified in the TCGA cohort. Alternative splicing and transcriptional events detected in five genes, MYO6, EPB41L1, TPD52, IQCG, and ACOX2 were validated by qRT-PCR in a third cohort of 40 ER+ HER2- and ER- HER2- patients, showing that these events were truly subtype specific."	"MYO6 Regulates Spatial Organization of Signaling Endosomes Driving AKT Activation and Actin Dynamics. APPL1- and RAB5-positive signaling endosomes play a crucial role in the activation of AKT in response to extracellular stimuli. Myosin VI (MYO6) and two of its cargo adaptor proteins, GIPC and TOM1/TOM1L2, localize to these peripheral endosomes and mediate endosome association with cortical actin filaments. Loss of MYO6 leads to the displacement of these endosomes from the cell cortex and accumulation in the perinuclear space. Depletion of this myosin not only affects endosome positioning, but also induces actin and lipid remodeling consistent with endosome maturation, including accumulation of F-actin and the endosomal lipid PI(3)P. These processes acutely perturb endosome function, as both AKT phosphorylation and RAC-dependent membrane ruffling were markedly reduced by depletion of either APPL1 or MYO6. These results place MYO6 and its binding partners at a central nexus in cellular signaling linking actin dynamics at the cell surface and endosomal signaling in the cell cortex."	"Targeted sequencing identifies novel variants involved in autosomal recessive hereditary hearing loss in Qatari families. Hereditary hearing loss is characterized by a very high genetic heterogeneity. In the Qatari population the role of GJB2, the worldwide HHL major player, seems to be quite limited compared to Caucasian populations. In this study we analysed 18 Qatari families affected by non-syndromic hearing loss using a targeted sequencing approach that allowed us to analyse 81 genes simultaneously. Thanks to this approach, 50% of these families (9 out of 18) resulted positive for the presence of likely causative alleles in 6 different genes: CDH23, MYO6, GJB6, OTOF, TMC1 and OTOA. In particular, 4 novel alleles were detected while the remaining ones were already described to be associated to HHL in other ethnic groups. Molecular modelling has been used to further investigate the role of novel alleles identified in CDH23 and TMC1 genes demonstrating their crucial role in Ca2+ binding and therefore possible functional role in proteins. Present study showed that an accurate molecular diagnosis based on next generation sequencing technologies might largely improve molecular diagnostics outcome leading to benefits for both genetic counseling and definition of recurrence risk."	"MYO6 is targeted by Salmonella virulence effectors to trigger PI3-kinase signaling and pathogen invasion into host cells. To establish infections, Salmonella injects virulence effectors that hijack the host actin cytoskeleton and phosphoinositide signaling to drive pathogen invasion. How effectors reprogram the cytoskeleton network remains unclear. By reconstituting the activities of the Salmonella effector SopE, we recapitulated Rho GTPase-driven actin polymerization at model phospholipid membrane bilayers in cell-free extracts and identified the network of Rho-recruited cytoskeleton proteins. Knockdown of network components revealed a key role for myosin VI (MYO6) in Salmonella invasion. SopE triggered MYO6 localization to invasion foci, and SopE-mediated activation of PAK recruited MYO6 to actin-rich membranes. We show that the virulence effector SopB requires MYO6 to regulate the localization of PIP3 and PI(3)P phosphoinositides and Akt activation. SopE and SopB target MYO6 to coordinate phosphoinositide production at invasion foci, facilitating the recruitment of cytoskeleton adaptor proteins to mediate pathogen uptake."	"Identification of the crucial genes in the elimination and survival process of Salmonella enterica ser. Pullorum in the chicken spleen. Salmonella enterica ser. Pullorum is one of the most easily re-infecting pathogens in poultry production because of its mechanism of escaping from immune elimination. We used the transcriptome method to investigate the variation in gene expression in chicken spleen resulting from the interaction between hosts and S. Pullorum in the survival process. The expression of various genes related to the maturation and activation of B cells was activated before S. Pullorum was eliminated, which might help S. Pullorum escape from the elimination process. The suppression of some genes involved in the fusion of autophagosomes and lysosomes, such as MYO6, was identified and may be regulated by the secretion systems of S. Pullorum. In addition, a large proportion of these differentially expressed genes could be localized in the identified quantitative trait loci regions associated with the antibody response to bacteria. Collectively, these identified genes provided an outline for further understanding the interaction between chicken immune cells and S. Pullorum in chicken spleen."	"Filopodia formation and endosome clustering induced by mutant plus-end-directed myosin VI. Myosin VI (MYO6) is the only myosin known to move toward the minus end of actin filaments. It has roles in numerous cellular processes, including maintenance of stereocilia structure, endocytosis, and autophagosome maturation. However, the functional necessity of minus-end-directed movement along actin is unclear as the underlying architecture of the local actin network is often unknown. To address this question, we engineered a mutant of MYO6, MYO6+, which undergoes plus-end-directed movement while retaining physiological cargo interactions in the tail. Expression of this mutant motor in HeLa cells led to a dramatic reorganization of cortical actin filaments and the formation of actin-rich filopodia. MYO6 is present on peripheral adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 (APPL1) signaling endosomes and MYO6+ expression causes a dramatic relocalization and clustering of this endocytic compartment in the cell cortex. MYO6+ and its adaptor GAIP interacting protein, C terminus (GIPC) accumulate at the tips of these filopodia, while APPL1 endosomes accumulate at the base. A combination of MYO6+ mutagenesis and siRNA-mediated depletion of MYO6 binding partners demonstrates that motor activity and binding to endosomal membranes mediated by GIPC and PI(4,5)P2 are crucial for filopodia formation. A similar reorganization of actin is induced by a constitutive dimer of MYO6+, indicating that multimerization of MYO6 on endosomes through binding to GIPC is required for this cellular activity and regulation of actin network structure. This unique engineered MYO6+ offers insights into both filopodia formation and MYO6 motor function at endosomes and at the plasma membrane."	"A Genomic and Protein-Protein Interaction Analyses of Nonsyndromic Hearing Impairment in Cameroon Using Targeted Genomic Enrichment and Massively Parallel Sequencing. Hearing impairment (HI) is one of the leading causes of disability in the world, impacting the social, economic, and psychological well-being of the affected individual. This is particularly true in sub-Saharan Africa, which carries one of the highest burdens of this condition. Despite this, there are limited data on the most prevalent genes or mutations that cause HI among sub-Saharan Africans. Next-generation technologies, such as targeted genomic enrichment and massively parallel sequencing, offer new promise in this context. This study reports, for the first time to the best of our knowledge, on the prevalence of novel mutations identified through a platform of 116 HI genes (OtoSCOPE<sup>®</sup>), among 82 African probands with HI. Only variants OTOF NM_194248.2:c.766-2A&gt;G and MYO7A NM_000260.3:c.1996C&gt;T, p.Arg666Stop were found in 3 (3.7%) and 5 (6.1%) patients, respectively. In addition and uniquely, the analysis of protein-protein interactions (PPI), through interrogation of gene subnetworks, using a custom script and two databases (Enrichr and PANTHER), and an algorithm in the igraph package of R, identified the enrichment of sensory perception and mechanical stimulus biological processes, and the most significant molecular functions of these variants pertained to binding or structural activity. Furthermore, 10 genes (MYO7A, MYO6, KCTD3, NUMA1, MYH9, KCNQ1, UBC, DIAPH1, PSMC2, and RDX) were identified as significant hubs within the subnetworks. Results reveal that the novel variants identified among familial cases of HI in Cameroon are not common, and PPI analysis has highlighted the role of 10 genes, potentially important in understanding HI genomics among Africans."	"The diagnostic yield of whole-exome sequencing targeting a gene panel for hearing impairment in The Netherlands. Hearing impairment (HI) is genetically heterogeneous which hampers genetic counseling and molecular diagnosis. Testing of several single HI-related genes is laborious and expensive. In this study, we evaluate the diagnostic utility of whole-exome sequencing (WES) targeting a panel of HI-related genes. Two hundred index patients, mostly of Dutch origin, with presumed hereditary HI underwent WES followed by targeted analysis of an HI gene panel of 120 genes. We found causative variants underlying the HI in 67 of 200 patients (33.5%). Eight of these patients have a large homozygous deletion involving STRC, OTOA or USH2A, which could only be identified by copy number variation detection. Variants of uncertain significance were found in 10 patients (5.0%). In the remaining 123 cases, no potentially causative variants were detected (61.5%). In our patient cohort, causative variants in GJB2, USH2A, MYO15A and STRC, and in MYO6 were the leading causes for autosomal recessive and dominant HI, respectively. Segregation analysis and functional analyses of variants of uncertain significance will probably further increase the diagnostic yield of WES."	"Whole-exome and transcriptome sequencing of refractory diffuse large B-cell lymphoma. Diffuse large B-cell lymphoma (DLBCL) is the most common type of non-Hodgkin lymphoma. Although rituximab therapy improves clinical outcome, some patients develop resistant DLBCL; however, the genetic alterations in these patients are not well documented. To identify the genetic background of refractory DLBCL, we conducted whole-exome sequencing and transcriptome sequencing for six patients with refractory and seven with responsive DLBCL. The average numbers of pathogenic somatic single nucleotide variants and indels in coding regions were 71 in refractory patients (range 28-120) and 38 (range 19-66) in responsive patients. Missense mutations of TP53 were exclusive in 50% (3/6) of refractory patients and involved the DNA-binding domain of TP53. All missense mutations of TP53 were accompanied by copy number deletions. RAB11FIP5, PRKCB, PRDM15, FNBP4, AHR, CEP128, BRE, DHX16, MYO6, and NMT1 mutations were recurrent in refractory patients. MYD88, B2M, SORCS3, and WDFY3 mutations were more frequent in refractory patients than in responsive patients. REL-BCL11A fusion was found in two refractory patients; one had both fusion and copy number gain. Recurrent copy gains of POU2AF1, SLC1A4, REL11, FANCL, CACNA1D, TRRAP, and CUX1 with significantly increased average expression were found in refractory patients. The expression profile revealed enriched gene sets associated with treatment resistance, including oxidative phosphorylation and ATP-binding cassette transporters. In conclusion, this study integrated both genomic and transcriptomic alterations associated with refractory DLBCL and found several treatment-resistance alterations that may contribute to refractoriness."	"Knockdown of Myosin 6 inhibits proliferation of oral squamous cell carcinoma cells. Oral squamous cell carcinoma (OSCC) accounts for 95% of all oral cancer with higher mortality and morbidity rates worldwide. However, the potential molecular mechanism of OSCC remains largely unclear. Myosin VI (MYO6) is a unique actin motor and reported to be overexpressed in several cancers. This study aims to examine the functional relationship between OSCC and MYO6. The mRNA expression of MYO6 was firstly investigated by analyzing data derived from Oncomine database. On the basis of the results, the expression of MYO6 was knocked down using lentivirus-delivered RNA interference in human OSCC cell line CAL27, as confirmed by qPCR and Western blot analysis. Stable MYO6 knockdown cells were employed to determine the effects of MYO6-silencing on cell growth by MTT, colony formation and cell cycle distribution and apoptosis by flow cytometry assay. Moreover, the expressions of cell apoptotic proteins were examined by Western blot analysis. We first observed MYO6 was overexpressed in tongue squamous cell carcinoma TSCC belongs to OSCC, compared with normal tissues. For cellular analysis, shRNA sequences against MYO6 could efficiently reduce its expression in CAL27 cells. Knockdown of MYO6 significantly decreased cell proliferation, caused cell cycle arrest at G2/M phase, and promoted cell apoptosis. Moreover, cell apoptosis-associated proteins, caspase-3 and PARP, were obviously upregulated in CAL27 after MYO6-silencing. MYO6 could play an essential role in the growth of OSCC cells via regulation of cell cycle progression and apoptosis."	"Overexpression of myosin VI regulates gastric cancer cell progression. Myosin VI (MYO6) is a unique member of the myosin superfamily. Although it has been reported to participate in human cancer progression, the role of MYO6 in gastric cancer remains unclear. In this study, we found the expression of MYO6 gene was higher in gastric cancer tissues than in the normal tissues by Oncomine database mining and affects patient overall survival using the Kaplan-Meier plotter online analysis. Additionally, the expression levels of MYO6 were widely expressed in gastric cancer cells by quantitative real-time Polymerase Chain Reaction (qRT-PCR) and western blot assay. Then knockdown of MYO6 significantly suppressed the proliferation and colony formation abilities of AGS and MGC80-3 cells. Moreover, cell cycle analysis showed that inhibition of MYO6 induced cell cycle arrested in G0/G1 phase in AGS and MGC80-3 cells. Further analysis showed knockdown of MYO6 downregulated cell-cycle activators cyclin A and cyclin D1 and upregulated cell-cycle inhibitor p21, as determined by qRT-PCR and western blot analysis in MGC80-3 cells. Meanwhile, MYO6 inhibition significantly induced apoptosis in AGS and MGC80-3 cells. Also, knockdown of MYO6 increased the expression of apoptosis-related proteins Bax and cleaved Caspase-3, and decreased Bcl-2 expression by western blot analysis in MGC80-3 cells. In addition, MYO6 knockdown also inhibited cell migration ability in MGC80-3 cells. Taken together, our study indicates that MYO6 may play an important role in gastric cancer tumorigenesis and may serve as a potential therapeutic target in human gastric cancer. "	"MYO6 knockdown inhibits the growth and induces the apoptosis of prostate cancer cells by decreasing the phosphorylation of ERK1/2 and PRAS40. Prostate cancer is the second most frequently diagnosed cancer among males around the world. Myosin VI (MYO6), as a motor protein, has been reported to be implicated in cancer-related cell migration and cellular functions. To investigate the role of MYO6 in prostate cancer, immunohistochemical analysis was firstly applied to prostate cancer tissues and revealed that MYO6 was closely related with the Gleason score in prostate cancer. Then we used specific short hairpin RNA (shRNA) to downregulate MYO6 expression in DU145 and PC-3 cells and found that decreased MYO6 expression significantly suppressed cell proliferation, as determined by MTT and colony formation assays. Flow cytometry confirmed that the suppression of MYO6 promoted cell cycle arrest at the G2/M and sub-G1 phase in the DU145 cells. Furthermore, PathScan intracellular signaling array analysis demonstrated that the phosphorylation of ERK1/2 and PRAS40 was downregulated in the DU145 cells following MYO6 knockdown. Knockdown of MYO6 downregulated the expression of AKT3 and upregulated the expression of PARP, as confirmed by western blot analysis. These results suggest that MYO6 plays an essential role in the progression of prostate cancer and silencing of MYO6 may be a promising therapeutic approach for prostate cancer. "	"A systematic High-Content Screening microscopy approach reveals key roles for Rab33b, OATL1 and Myo6 in nanoparticle trafficking in HeLa cells. Synthetic nanoparticles are promising tools for imaging and drug delivery; however the molecular details of cellular internalization and trafficking await full characterization. Current knowledge suggests that following endocytosis most nanoparticles pass from endosomes to lysosomes. In order to design effective drug delivery strategies that can use the endocytic pathway, or by-pass lysosomal accumulation, a comprehensive understanding of nanoparticle uptake and trafficking mechanisms is therefore fundamental. Here we describe and apply an RNA interference-based high-content screening microscopy strategy to assess the intracellular trafficking of fluorescently-labeled polystyrene nanoparticles in HeLa cells. We screened a total of 408 genes involved in cytoskeleton and membrane function, revealing roles for myosin VI, Rab33b and OATL1 in this process. This work provides the first systematic large-scale quantitative assessment of the proteins responsible for nanoparticle trafficking in cells, paving the way for subsequent genome-wide studies."	"Spectrum of DNA variants for non-syndromic deafness in a large cohort from multiple continents. Hearing loss is the most common sensory deficit in humans with causative variants in over 140 genes. With few exceptions, however, the population-specific distribution for many of the identified variants/genes is unclear. Until recently, the extensive genetic and clinical heterogeneity of deafness precluded comprehensive genetic analysis. Here, using a custom capture panel (MiamiOtoGenes), we undertook a targeted sequencing of 180 genes in a multi-ethnic cohort of 342 GJB2 mutation-negative deaf probands from South Africa, Nigeria, Tunisia, Turkey, Iran, India, Guatemala, and the United States (South Florida). We detected causative DNA variants in 25 % of multiplex and 7 % of simplex families. The detection rate varied between 0 and 57 % based on ethnicity, with Guatemala and Iran at the lower and higher end of the spectrum, respectively. We detected causative variants within 27 genes without predominant recurring pathogenic variants. The most commonly implicated genes include MYO15A, SLC26A4, USH2A, MYO7A, MYO6, and TRIOBP. Overall, our study highlights the importance of family history and generation of databases for multiple ethnically discrete populations to improve our ability to detect and accurately interpret genetic variants for pathogenicity."	"A Novel ENU-Induced Mutation in Myo6 Causes Vestibular Dysfunction and Deafness. Mouse N-ethyl-N-nitrosourea (ENU) mutagenesis has generated many useful animal models for human diseases. Here we describe the identification of a novel ENU-induced mouse mutant strain Turner (Tur) that displays circling and headtossing behavior and progressive hearing loss. Tur/Tur homozygous animals lack Preyer and righting reflexes and display severe headtossing and reaching response defect. We mapped the Tur mutation to a critical region of 11 cM on chromosome 9 that includes myosin VI. Direct sequence analysis revealed a c.820A&gt;T substitution in exon 8 of the Myo6 gene that changes amino acid Asn200 to Ile (p.N200I) in the motor domain. Analysis of inner ear hair cells by immunohistochemistry, scanning electron microscopy and histology revealed degeneration of hair cells in the inner ear and structural malformation of the stereocilia in the cochlea of Turner homozygous mutant mice. Our data indicate that this novel mouse strain provides a useful model for future studies on the function of myosin VI in mammalian auditory and non-auditory systems and in human syndromes."	"The acquisition of mechano-electrical transducer current adaptation in auditory hair cells requires myosin VI. The transduction of sound into electrical signals occurs at the hair bundles atop sensory hair cells in the cochlea, by means of mechanosensitive ion channels, the mechano-electrical transducer (MET) channels. The MET currents decline during steady stimuli; this is termed adaptation and ensures they always work within the most sensitive part of their operating range, responding best to rapidly changing (sound) stimuli. In this study we used a mouse model (Snell's waltzer) for hereditary deafness in humans that has a mutation in the gene encoding an unconventional myosin, myosin VI, which is present in the hair bundles. We found that in the absence of myosin VI the MET current fails to acquire its characteristic adaptation as the hair bundles develop. We propose that myosin VI supports the acquisition of adaptation by removing key molecules from the hair bundle that serve a temporary, developmental role. Mutations in Myo6, the gene encoding the (F-actin) minus end-directed unconventional myosin, myosin VI, cause hereditary deafness in mice (Snell's waltzer) and humans. In the sensory hair cells of the cochlea, myosin VI is expressed in the cell bodies and along the stereocilia that project from the cells' apical surface. It is required for maintaining the structural integrity of the mechanosensitive hair bundles formed by the stereocilia. In this study we investigate whether myosin VI contributes to mechano-electrical transduction. We report that Ca(2+) -dependent adaptation of the mechano-electrical transducer (MET) current, which serves to keep the transduction apparatus operating within its most sensitive range, is absent in outer and inner hair cells from homozygous Snell's waltzer mutant mice, which fail to express myosin VI. The operating range of the MET channels is also abnormal in the mutants, resulting in the absence of a resting MET current. We found that cadherin 23, a component of the hair bundle's transient lateral links, fails to be downregulated along the length of the stereocilia in maturing Myo6 mutant mice. MET currents of heterozygous littermates appear normal. We propose that myosin VI, by removing key molecules from developing hair bundles, is required for the development of the MET apparatus and its Ca(2+) -dependent adaptation."	"Downregulation of myosin VI reduced cell growth and increased apoptosis in human colorectal cancer. Colorectal cancer (CRC) is the third most commonly diagnosed cancer worldwide, with the mortality increasing steadily over the last decade. Myosin VI (MYO6) expression is found to be elevated in some types of human carcinoma cell types, suggesting that it may be a sensitive biomarker for the diagnosis and follow-up. In this study, we first used the Oncomine database to explore the expression of MYO6 in CRC tissues, and then constructed a plasmid of RNA interference targeting MYO6 gene. After transfection of lentivirus targeting MYO6 into SW1116 cells, cell viability and proliferation were measured with 3-(4,5-Dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide and colony formation assay. Cell cycle distribution was assayed by flow cytometry and apoptosis was evaluated by Annexin V. MYO6 expression was detected by quantitative real-time polymerase chain reaction and western blot analysis. It was found that MYO6 mRNA was upregulated in CRC tissues using data mining of public Oncomine microarray datasets. Depletion of MYO6 significantly inhibited cell proliferation and colony formation. In addition, knockdown of MYO6 slightly arrested cell cycle in G0/G1 phase, but remarkably increased the proportion of the sub-G1 phase of cell with the increase of apoptotic cells. These results suggest that MYO6 may promote cell growth and may be used as a potential target for anticancer therapy of CRC. "	"Myosin VI contributes to malignant proliferation of human glioma cells. Previously characterized as a backward motor, myosin VI (MYO6), which belongs to myosin family, moves toward the minus end of the actin track, a direction opposite to all other known myosin members. Recent researches have illuminated the role of MYO6 in human cancers, particularly in prostate cancer. However, the role of MYO6 in glioma has not yet been determined. In this study, to explore the role of MYO6 in human glioma, lentivirus-delivered short hairpin RNA (shRNA) targeting MYO6 was designed to stably down-regulate its endogenous expression in glioblastoma cells U251. Knockdown of MYO6 signifi cantly inhibited viability and proliferation of U251 cells in vitro. Moreover, the cell cycle of U251 cells was arrested at G0/G1 phase with the absence of MYO6, which could contribute to the suppression of cell proliferation. In conclusion, we firstly identified the crucial involvement of MYO6 in human glioma. The inhibition of MYO6 by shRNA might be a potential therapeutic method in human glioma. "	"Using gene expression from urine sediment to diagnose prostate cancer: development of a new multiplex mRNA urine test and validation of current biomarkers. Additional accurate non-invasive biomarkers are needed in the clinical setting to improve prostate cancer (PCa) diagnosis. Here we have developed a new and improved multiplex mRNA urine test to detect prostate cancer (PCa). Furthermore, we have validated the PCA3 urinary transcript and some panels of urinary transcripts previously reported as useful diagnostic biomarkers for PCa in our cohort. Post-prostatic massage urine samples were prospectively collected from PCa patients and controls. Expression levels of 42 target genes selected from our previous studies and from the literature were studied in 224 post-prostatic massage urine sediments by quantitative PCR. Univariate logistic regression was used to identify individual PCa predictors. A variable selection method was used to develop a multiplex biomarker model. Discrimination was measured by ROC curve AUC for both, our model and the previously published biomarkers. Seven of the 42 genes evaluated (PCA3, ELF3, HIST1H2BG, MYO6, GALNT3, PHF12 and GDF15) were found to be independent predictors for discriminating patients with PCa from controls. We developed a four-gene expression signature (HIST1H2BG, SPP1, ELF3 and PCA3) with a sensitivity of 77% and a specificity of 67% (AUC = 0.763) for discriminating between tumor and control urines. The accuracy of PCA3 and previously reported panels of biomarkers is roughly maintained in our cohort. Our four-gene expression signature outperforms PCA3 as well as previously reported panels of biomarkers to predict PCa risk. This study suggests that a urinary biomarker panel could improve PCa detection. However, the accuracy of the panels of urinary transcripts developed to date, including our signature, is not high enough to warrant using them routinely in a clinical setting."	"Lentivirus-Mediated Knockdown of Myosin VI Inhibits Cell Proliferation of Breast Cancer Cell. Myosin VI (MYO6) is a unique member of the myosin superfamily, and almost no experimental studies link MYO6 to tumorigenesis of breast cancer. However, previous microarray data demonstrated that MYO6 was frequently overexpressed in breast cancer tissues. In this study, to further develop its role in breast cancer, endogenous expression of MYO6 was significantly inhibited in breast cancer ZR-75-30 and MDA-MB-231 cells using lentivirus-mediated RNA interference. Quantitative polymerase chain reaction and western blot were applied to detect the expression level of MYO6. Cell viability of both cell lines was measured by methylthiazol tetrazolium and colony formation assays. Besides, cell cycle assay was utilized to acquire the distribution information of cell phase. The results demonstrated that knockdown of MYO6 markedly reduced cell viability and colony formation, as well as suppressed cell cycle progression in breast cancer cells. The results suggested that MYO6 played a vital role in breast cancer cells and might provide useful information for diagnosis and therapy of human breast cancer in future. "	"Functional characterisation of the osteoarthritis susceptibility locus at chromosome 6q14.1 marked by the polymorphism rs9350591. The arcOGEN genome-wide association study reported the rs9350591 C/T single nucleotide polymorphism (SNP) as marking a region on chromosome 6q14.1 that is associated with hip osteoarthritis (OA) in Europeans, with an odds ratio (OR) of 1.18 and a p-value of 2.42 × 10(-9). rs9350591 is an intergenic SNP surrounded by seven genes within 1 Mb. Six of the genes are expressed in cartilage. We sought to characterise this signal to assess whether the association of rs9350591 with OA is mediated by modulating gene expression. Total RNA was extracted from hip or knee cartilage of 161 OA patients and from hip cartilage of 29 non-OA patients who had undergone hip replacements as a result of neck-of-femur (NOF) fractures. We used quantitative PCR (qPCR) to measure overall gene expression, and pyrosequencing to assess allelic expression of the genes. A mesenchymal stem cell (MSC) differentiation model was used to assess gene expression during chondrogenesis. We identified a significant decrease in the expression of SENP6 (p = 0.005) and MYO6 (p = 0.026) in OA hip cartilage relative to the non-OA hip control cartilage. However, we found no evidence for a correlation between gene expression and rs9350591 genotype for any of the six genes. In addition, we identified expression quantitative trait loci (eQTLs) operating on COL12A1, TMEM30A, SENP6 and MYO6, although these were not relevant to the OA associated signal. Finally, all genes were dynamically expressed during chondrogenesis. The regulation of gene expression at this locus is complex, highlighted by the down-regulation of SENP6 and MYO6 in OA hip cartilage and by eQTLs operating on four of the genes at the locus. However, modulation of gene expression in the end-stage OA cartilage that we have investigated is not the mechanism by which this association signal is operating. As implied by the dynamic patterns of gene expression throughout chondrogenesis, the association signal marked by rs9350591 could instead be exerting its effects during joint development."	"Restoration of cytoskeletal and membrane tethering defects but not defects in membrane trafficking in the intestinal brush border of mice lacking both myosin Ia and myosin VI. Myosin Ia (Myo1a), the most prominent plus-end directed motor and myosin VI (Myo6) the sole minus-end directed motor, together exert opposing tension between the microvillar (MV) actin core and the apical brush border (BB) membrane of the intestinal epithelial cell (IEC). Mice lacking Myo1a or Myo6 each exhibit a variety of defects in the tethering of the BB membrane to the actin cytoskeleton. Double mutant (DM) mice lacking both myosins revealed that all the defects observed in either the Myo1a KO or Snell's waltzer (sv/sv) Myo6 mutant mouse are absent. In isolated DM BBs, Myo1a crosslinks between MV membrane and MV actin core are absent but the gap (which is lost in Myo1a KO) between the MV core and membrane is maintained. Several myosins including Myo1c, d, and e and Myo5a are ectopically recruited to the BB. Consistent with the restoration of membrane tethering defects by one or more of these myosins, upward ATP-driven shedding of the BB membrane, which is blocked in the Myo1a KO, is restored in the DM BB. However, Myo1a or Myo6 dependent defects in expression of membrane proteins that traffic between the BB membrane and endosome (NaPi2b, NHE3, CFTR) are not restored. Compared to controls, Myo1a KO, sv/sv mice exhibit moderate and DM high levels of hypersensitivity to dextran sulfate sodium-induced colitis. Consistent with Myo1a and Myo6 playing critical roles in maintaining IEC integrity and response to injury, DM IECs exhibit increased numbers of apoptotic nuclei, above that reported for Myo1a KO."	"Myosin VI and cardiomyopathy: Left ventricular hypertrophy, fibrosis, and both cardiac and pulmonary vascular endothelial cell defects in the Snell's waltzer mouse. In mice and humans, loss of myosin VI (Myo6) function results in deafness, and certain Myo6 mutations also result in cardiomyopathies in humans. The current studies have utilized the Snell's waltzer (sv) mouse (a functional null mutation for Myo6) to determine if this mouse also exhibits cardiac defects and thus used to determine the cellular and molecular basis for Myo6-associated heart disease. Myo6 is expressed in mouse heart where it is predominantly expressed in vascular endothelial cells (VECs) based on co-localization with the VEC cell marker CD31. Sv/sv heart mass is significantly greater than that of sv/+ littermates, a result of left ventricle hypertrophy. The left ventricle of the sv/sv exhibits extensive fibrosis, both interstitial and perivascular, based on histologic staining, and immunolocalization of several markers for fibrosis including fibronectin, collagen IV, and the fibroblast marker vimentin. Myo6 is also expressed in lung VECs but not in VECs of intestine, kidney, or liver. Sv/sv lungs exhibit increased periaveolar fibrosis and enlarged air sacs. Electron microscopy of sv/sv cardiac and lung VECs revealed abnormal ultrastructure, including luminal protrusions and increased numbers of cytoplasmic vesicles. Previous studies have shown that loss of function of either Myo6 or its adaptor binding partner synectin/GIPC results in impaired arterial development due to defects in VEGF signaling. However, examination of synectin/GIPC-/- heart revealed no fibrosis or significantly altered VEC ultrastructure, suggesting that the cardiac and lung defects observed in the sv/sv mouse are not due to Myo6 function in arterial development."	"Massively parallel DNA sequencing successfully identified seven families with deafness-associated MYO6 mutations: the mutational spectrum and clinical characteristics. To elucidate the involvement of MYO6 mutations, known to be responsible for DFNA22/DFNB37, in Japanese hearing loss patients through the use of genetic analysis. Genomic variations responsible for hearing loss were identified by massively parallel DNA sequencing (MPS) of 63 target candidate genes in 1120 Japanese hearing loss patients, and the detailed clinical features for the patients with MYO6 mutations were collected and analyzed. Four mutations were successfully found in 7 families exhibiting autosomal dominant inheritance. All of the patients showed progressive hearing loss, but hearing type and onset age varied. Further, none of the affected patients showed any associated symptoms, such as hypertrophic cardiomyopathy or retinitis pigmentosa. MPS is powerful tool for the identification of rare causative deafness gene mutations, such as MYO6. The clinical characteristics noted in the present study not only confirmed the findings of previous reports but provided important new clinical information."	"Dual function of CALCOCO2/NDP52 during xenophagy. During xenophagy, pathogens are selectively targeted by autophagy receptors to the autophagy machinery for their subsequent degradation. In infected cells, the autophagy receptor CALCOCO2/NDP52 targets Salmonella Typhimurium to the phagophore membrane by concomitantly interacting with LC3C and binding to ubiquitinated cytosolic bacteria or to LGALS8/GALECTIN 8 adsorbed on damaged vacuoles that contain bacteria. We recently reported that in addition, CALCOCO2 is also necessary for the maturation step of Salmonella Typhimurium-containing autophagosomes. Interestingly, the role of CALCOCO2 in maturation is independent of its role in targeting, as these functions rely on distinct binding domains and protein partners. Indeed, to mediate autophagosome maturation CALCOCO2 binds on the one hand to LC3A, LC3B, or GABARAPL2, and on the other hand to MYO6/MYOSIN VI, whereas the interaction with LC3C is dispensable. Therefore, the autophagy receptor CALCOCO2 plays a dual function during xenophagy first by targeting bacteria to nascent autophagosomes and then by promoting autophagosome maturation in order to destroy bacteria. "	"Inner ear hair cells deteriorate in mice engineered to have no or diminished innervation. The innervation of the inner ear critically depends on the two neurotrophins Ntf3 and Bdnf. In contrast to this molecularly well-established dependency, evidence regarding the need of innervation for long-term maintenance of inner ear hair cells is inconclusive, due to experimental variability. Mutant mice that lack both neurotrophins could shed light on the long-term consequences of innervation loss on hair cells without introducing experimental variability, but do not survive after birth. Mutant mice with conditional deletion of both neurotrophins lose almost all innervation by postnatal day 10 and show an initially normal development of hair cells by this stage. No innervation remains after 3 weeks and complete loss of all innervation results in near complete loss of outer and many inner hair cells of the organ of Corti within 4 months. Mutants that retain one allele of either neurotrophin have only partial loss of innervation of the organ of Corti and show a longer viability of cochlear hair cells with more profound loss of inner hair cells. By 10 months, hair cells disappear with a base to apex progression, proportional to the residual density of innervation and similar to carboplatin ototoxicity. Similar to reports of hair cell loss after aminoglycoside treatment, blobbing of stereocilia of apparently dying hair cells protrude into the cochlear duct. Denervation of vestibular sensory epithelia for several months also resulted in variable results, ranging from unusual hair cells resembling the aberrations found in the organ of Corti, to near normal hair cells in the canal cristae. Fusion and/or resorption of stereocilia and loss of hair cells follows a pattern reminiscent of Myo6 and Cdc42 null mice. Our data support a role of innervation for long-term maintenance but with a remarkable local variation that needs to be taken into account when attempting regeneration of the organ of Corti. "	"Lentivirus-Mediated Silencing of Myosin VI Inhibits Proliferation and Cell Cycle Progression in Human Lung Cancer Cells. Myosin VI (MYO6) is a unique actin motor, which moves toward the pointed ends of actin filaments. In this study, we found that MYO6 is overexpressed in lung cancer tissues and associated with lung cancer progression, particularly lymph node metastasis. To investigate its functions in lung cancer cells, we generated recombinant lentivirus taking shRNA of MYO6. Using two lung cancer cell lines, A549 and 95D, we found that Lv-shMYO6 could infect lung cancer cells with high efficiency and downregulate MYO6 on both mRNA and protein levels. After knockdown of MYO6, the proliferation rates of lung cancer cells were decreased significantly. The colony-formation ability of MYO6-silenced lung cancer cells was also impaired with reduced colony numbers and fewer cells per colony. Flow cytometry showed that cell cycle progression was stuck at the G0 /G1 phase, especially at the sub-G1 phase, which represents apoptotic cells. Moreover, knockdown of MYO6 downregulated the phosphorylation of ERK1/2. Further experiments using another shRNA of MYO6 confirmed the above results. These results suggest that MYO6 is crucial in maintaining cell cycle and cell growth of lung cancer cells. MYO6 may serve as a potential therapeutic target for lung cancer treatment. "	"Mutations in the ubiquitin-binding domain of OPTN/optineurin interfere with autophagy-mediated degradation of misfolded proteins by a dominant-negative mechanism. OPTN (optineurin) is an autophagy receptor and mutations in the OPTN gene result in familial glaucoma (E50K) and amyotrophic lateral sclerosis (ALS) (E478G). However, the mechanisms through which mutant OPTN leads to human diseases remain to be characterized. Here, we demonstrated that OPTN colocalized with inclusion bodies (IBs) formed by mutant HTT/huntingtin protein (mHTT) in R6/2 transgenic mice and IBs formed by 81QNmHTT (nuclear form), 109QmHTT (cytoplasmic form) or the truncated form of TARDBP/TDP-43 (TARDBP(ND251)) in Neuro2A cells. This colocalization required the ubiquitin (Ub)-binding domain (UbBD, amino acids 424 to 511) of OPTN. Overexpression of wild-type (WT) OPTN decreased IBs through K63-linked polyubiquitin-mediated autophagy. E50K or 210 to 410Δ (with amino acids 210 to 410 deleted) whose mutation or deletion was outside the UbBD decreased the IBs formed by 109QmHTT or TARDBP(ND251), as was the case with WT OPTN. In contrast, UbBD mutants, including E478G, D474N, UbBDΔ, 411 to 520Δ and 210 to 520Δ, increased accumulation of IBs. UbBD mutants (E478G, UbBDΔ) retained a substantial ability to interact with WT OPTN, and were found to colocalize with polyubiquitinated IBs, which might occur indirectly through their WT partner in a WT-mutant complex. They decreased autophagic flux evidenced by alteration in LC3 level and turnover and in the number of LC3-positive puncta under stresses like starvation or formation of IBs. UbBD mutants exhibited a weakened interaction with MYO6 (myosin VI) and TOM1 (target of myb1 homolog [chicken]), important for autophagosome maturation, in cells or sorted 109QmHtt IBs. Taken together, our data indicated that UbBD mutants acted as dominant-negative traps through the formation of WT-mutant hybrid complexes to compromise the maturation of autophagosomes, which in turn interfered with OPTN-mediated autophagy and clearance of IBs. "	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Optineurin immunoreactivity in neuronal and glial intranuclear inclusions in adult-onset neuronal intranuclear inclusion disease. Optineurin (OPTN) is a multifunctional protein involved in cellular morphogenesis, vesicle trafficking, maintenance of the Golgi complex, and transcription activation through its interactions with the Rab8, myosin 6 (MYO6), huntingtin. Recently, OPTN immunoreactivity has been reported in intranuclear inclusions in patients with neuronal intranuclear inclusions disease (NIID). Other studies have shown that the RNA-binding protein, fused in sarcoma (FUS), is a component of intranuclear inclusions in NIID. We aimed to investigate the relationship between OPTN, its binding protein MYO6 and FUS in this study. In control subjects, OPTN (C-terminal) (OPTN-C) and MYO6 immunoreactivity was mainly demonstrated in the cytoplasm of neurons. In NIID patients, both neuronal intranuclear inclusions (NII) and glial intranuclear inclusions (GII) were immunopositive for MYO6 as well as OPTN-C. However, the intensity of OPTN-C immunostaining of the neuronal cytoplasm with and without NII was less than that of the control subjects. Double immunofluorescence staining for OPTN-C, ubiquitin (Ub), p62 and FUS revealed co-localization of these proteins within NII. Moreover, Ub positive inclusions were co-localized with MYO6. The percentage of co-localization of Ub with OPTN-C, FUS or MYO6 in NII was 100%, 52% and 92%, respectively. Ultrastructurally, the inclusions consisted of thin and thick filaments. Both filaments were immunopositive for Ub and OPTN-C. These findings suggest that OPTN plays a central role in the disease pathogenesis, and that OPTN may be a major component of NII. "	"Exome sequencing identifies a novel frameshift mutation of MYO6 as the cause of autosomal dominant nonsyndromic hearing loss in a Chinese family. Autosomal dominant types of nonsyndromic hearing loss (ADNSHL) are typically postlingual in onset and progressive. High genetic heterogeneity, late onset age, and possible confounding due to nongenetic factors hinder the timely molecular diagnoses for most patients. In this study, exome sequencing was applied to investigate a large Chinese family segregating ADNSHL in which we initially failed to find strong evidence of linkage to any locus by whole-genome linkage analysis. Two affected family members were selected for sequencing. We identified two novel mutations disrupting known ADNSHL genes and shared by the sequenced samples: c.328C&gt;A in COCH (DFNA9) resulting in a p.Q110K substitution and a deletion c. 2814_2815delAA in MYO6 (DFNA22) causing a frameshift alteration p.R939Tfs*2. The pathogenicity of novel coding variants in ADNSHL genes was carefully evaluated by analysis of co-segregation with phenotype in the pedigree and in light of established genotype-phenotype correlations. The frameshift deletion in MYO6 was confirmed as the causative variant for this pedigree, whereas the missense mutation in COCH had no clinical significance. The results allowed us to retrospectively identify the phenocopy in one patient that contributed to the negative finding in the linkage scan. Our clinical data also supported the emerging genotype-phenotype correlation for DFNA22. "	"Genome-wide demethylation by 5-aza-2'-deoxycytidine alters the cell fate of stem/progenitor cells. DNA methyltransferase (DNMT) inhibitor 5-aza-2'-deoxycytidine (5-aza-CdR) is able to cause DNA demethylation in the genome and induce the expression of silenced genes. Whether DNA demethylation can affect the gene expression of stem/progenitor cells has not been understood. Mouse utricle epithelia-derived progenitor cells (MUCs), which possess stem cell features as previously described, exhibit a potential DNA methylation status in the genome. In this study, MUCs were treated with 5-aza-CdR to determine whether DNMT inhibitor is able to induce the differentiation of MUCs. With 5-aza-CdR treatment for 72 hr, MUCs expressed epithelial genes including Cdh1, Krt8, Krt18, and Dsp. Further, hair cell genes Myo7a and Myo6 increased their expressions in response to 5-aza-CdR treatment. The decrease in the global methylated DNA values after 5-aza-CdR treatment indicated a significant DNA demethylation in the genome of MUCs, which may contribute to remarkably increased expression of epithelial genes and hair cell genes. The progenitor MUCs then turned into an epithelial-like hair cell fate with the expression of both epithelial and hair cell genes. This study suggests that stem cell differentiation can be stimulated by DNA demethylation, which may open avenues for studying stem cell fate induction using epigenetic approaches. "	"The effect of novel mutations on the structure and enzymatic activity of unconventional myosins associated with autosomal dominant non-syndromic hearing loss. Mutations in five unconventional myosin genes have been associated with genetic hearing loss (HL). These genes encode the motor proteins myosin IA, IIIA, VI, VIIA and XVA. To date, most mutations in myosin genes have been found in the Caucasian population. In addition, only a few functional studies have been performed on the previously reported myosin mutations. We performed screening and functional studies for mutations in the MYO1A and MYO6 genes in Korean cases of autosomal dominant non-syndromic HL. We identified four novel heterozygous mutations in MYO6. Three mutations (p.R825X, p.R991X and Q918fsX941) produce a premature truncation of the myosin VI protein. Another mutation, p.R205Q, was associated with diminished actin-activated ATPase activity and actin gliding velocity of myosin VI in an in vitro analysis. This finding is consistent with the results of protein modelling studies and corroborates the pathogenicity of this mutation in the MYO6 gene. One missense variant, p.R544W, was found in the MYO1A gene, and in silico analysis suggested that this variant has deleterious effects on protein function. This finding is consistent with the results of protein modelling studies and corroborates the pathogenic effect of this mutation in the MYO6 gene. "	"Histone deacetylase inhibitor induces the expression of select epithelial genes in mouse utricle sensory epithelia-derived progenitor cells. Mouse utricle sensory epithelial cell-derived progenitor cells (MUCs), which have hair cell progenitor and mesenchymal features via epithelial-to-mesenchymal transition (EMT) as previously described, provide a potential approach for hair cell regeneration via cell transplantation. In this study, we treated MUCs with trichostatin A (TSA) to determine whether histone deacetylase inhibitor is able to stimulate the expression of epithelial genes in MUCs, an essential step for guiding mesenchymal-like MUCs to become sensory epithelial cells. After 72 h of TSA treatment, MUCs acquired epithelial-like features, which were indicated by increased expression of epithelial markers such as Cdh1, Krt18, and Dsp. Additionally, TSA decreased the expression of mesenchymal markers, including Zeb1, Zeb2, Snai1, and Snai2, and prosensory genes Lfng, Six1, and Dlx5. Moreover, the expression of the hair cell genes Atoh1 and Myo6 was increased in TSA-treated MUCs. We also observed significantly decreased expression of Hdac2 and Hdac3 in TSA-treated MUCs. However, no remarkable change was detected in protein expression using immunofluorescence, indicating that TSA-induced HDAC inhibition may contribute to the initial stage of the mesenchymal-to-epithelial phenotypic change. In the future, more work is needed to induce hair cell regeneration using inner ear tissue-derived progenitors to achieve an entire mesenchymal-to-epithelial transition."	"Progressive hearing loss and vestibular dysfunction caused by a homozygous nonsense mutation in CLIC5. In a consanguineous Turkish family diagnosed with autosomal recessive nonsyndromic hearing impairment (arNSHI), a homozygous region of 47.4 Mb was shared by the two affected siblings on chromosome 6p21.1-q15. This region contains 247 genes including the known deafness gene MYO6. No pathogenic variants were found in MYO6, neither with sequence analysis of the coding region and splice sites nor with mRNA analysis. Subsequent candidate gene evaluation revealed CLIC5 as an excellent candidate gene. The orthologous mouse gene is mutated in the jitterbug mutant that exhibits progressive hearing impairment and vestibular dysfunction. Mutation analysis of CLIC5 revealed a homozygous nonsense mutation c.96T&gt;A (p.(Cys32Ter)) that segregated with the hearing loss. Further analysis of CLIC5 in 213 arNSHI patients from mostly Dutch and Spanish origin did not reveal any additional pathogenic variants. CLIC5 mutations are thus not a common cause of arNSHI in these populations. The hearing loss in the present family had an onset in early childhood and progressed from mild to severe or even profound before the second decade. Impaired hearing is accompanied by vestibular areflexia and in one of the patients with mild renal dysfunction. Although we demonstrate that CLIC5 is expressed in many other human tissues, no additional symptoms were observed in these patients. In conclusion, our results show that CLIC5 is a novel arNSHI gene involved in progressive hearing impairment, vestibular and possibly mild renal dysfunction in a family of Turkish origin. "	"Inhibition of Myo6 gene expression by co‑expression of a mutant of transcription factor POU4F3 (BRN‑3C) in hair cells. An eight‑base pair (bp) deletion in the Pou4f3 gene in hair cells is associated with DFNA15, a hereditary form of hearing loss. To explore the pathological mechanisms underlying the development of DFNA15, the effect of the mutation in Pou4f3 on the activity of the myosin VI (Myo6) promoter, was investigated. The upstream regulatory sequence of Myo6 (2625 bp), consisting of an 1899 bp upstream sequence and a 727 bp intron 1 sequence, was amplified using polymerase chain reaction and subcloned into the pGL3‑Basic vector expressing firefly luciferase. For verification of inserted fragments, plasmids were subjected to restriction analysis and then sequenced. HEK293T human embryonic kidney cells were transiently transfected with renilla luciferase‑thymidine kinase vectors expressing Renilla luciferase and the Myo6 promoter‑driven firefly luciferase expressing vectors along with pIRES2‑enhanced green fluorescent protein (EGFP)‑Pou4f3 (expressing wild‑type Pou4f3) or pIRES2‑EGFP‑Pou4f3 (expressing the truncation mutant of Pou4f3). The relative luciferase activities were measured to determine the activity of the Myo6 promoter. The Myo6 promoter activity was not affected by co‑expression of wild‑type Pou4f3, as indicated by the comparable relative luciferase activities in the presence of the pIRES2‑EGFP‑Pou4f3 and the empty control vectors. However, co‑expression of mutated Pou4f3 significantly inhibited the activity of the Myo6 promoter to almost half of that of the control (P&lt;0.001). The data suggests that mutated Pou4f3 has a negative role in the promoter activity of Myo6, and by extension, the expression of myosin VI, and this may be an underlying mechanism of DFNA15 hearing loss."	"CLIC5 stabilizes membrane-actin filament linkages at the base of hair cell stereocilia in a molecular complex with radixin, taperin, and myosin VI. Chloride intracellular channel 5 protein (CLIC5) was originally isolated from microvilli in complex with actin binding proteins including ezrin, a member of the Ezrin-Radixin-Moesin (ERM) family of membrane-cytoskeletal linkers. CLIC5 concentrates at the base of hair cell stereocilia and is required for normal hearing and balance in mice, but its functional significance is poorly understood. This study investigated the role of CLIC5 in postnatal development and maintenance of hair bundles. Confocal and scanning electron microscopy of CLIC5-deficient jitterbug (jbg) mice revealed progressive fusion of stereocilia as early as postnatal day 10. Radixin (RDX), protein tyrosine phosphatase receptor Q (PTPRQ), and taperin (TPRN), deafness-associated proteins that also concentrate at the base of stereocilia, were mislocalized in fused stereocilia of jbg mice. TPRQ and RDX were dispersed even prior to stereocilia fusion. Biochemical assays showed interaction of CLIC5 with ERM proteins, TPRN, and possibly myosin VI (MYO6). In addition, CLIC5 and RDX failed to localize normally in fused stereocilia of MYO6 mutant mice. Based on these findings, we propose a model in which these proteins work together as a complex to stabilize linkages between the plasma membrane and subjacent actin cytoskeleton at the base of stereocilia."	"Myosin 6 is required for iris development and normal function of the outer retina. To determine the molecular basis and the pathologic consequences of a chemically induced mutation in the translational vision research models 89 (tvrm89) mouse model with ERG defects. Mice from a G3 N-ethyl-N-nitrosourea mutagenesis program were screened for behavioral abnormalities and defects in retinal function by ERGs. The chromosomal position for the recessive tvrm89 mutation was determined in a genome-wide linkage analysis. The critical region was refined, and candidate genes were screened by direct sequencing. The tvrm89 phenotype was characterized by circling behavior, in vivo ocular imaging, detailed ERG-based studies of the retina and RPE, and histological analysis of these structures. The tvrm89 mutation was localized to a region on chromosome 9 containing Myo6. Sequencing identified a T→C point mutation in the codon for amino acid 480 in Myo6 that converts a leucine to a proline. This mutation does not confer a loss of protein expression levels; however, mice homozygous for the Myo6(tvrm89) mutation display an abnormal iris shape and attenuation of both strobe-flash ERGs and direct-current ERGs by 4 age weeks, neither of which is associated with photoreceptor loss. The tvrm89 phenotype mimics that reported for Myosin6-null mice, suggesting that the mutation confers a loss of myosin 6 protein function. The observation that homozygous Myo6(tvrm89) mice display reduced ERG a-wave and b-wave components, as well as components of the ERG attributed to RPE function, indicates that myosin 6 is necessary for the generation of proper responses of the outer retina to light."	"Myosin VI contributes to maintaining epithelial barrier function. Epithelial barrier dysfunction is associated with the pathogenesis of a number of immune inflammations; the etiology is not fully understood. The fusion of endosome/lysosome is a critical process in the degradation of endocytic antigens in epithelial cells. Recent reports indicate that myosin VI (myo6) is involved in the activities of endosomes. The present study aims to investigate the role of myo6 in epithelial barrier dysfunction. The endosome accumulation was observed in myo6-deficient Rmcs. More than 80% endosomes were fused with lysosomes in naïve Rmcs while less than 30% endosomes were fused with lysosomes in the myo6-deficient Rmcs. The myo6-deficient Rmc monolayers showed high permeability to a macromolecular antigen, ovalbumin, the latter still conserved the antigenicity, which induced strong T cell activation. We conclude that myo6 plays a critical role in the fusion of endosome/lysosome in Rmc epithelial cells. Deficiency of myo6 compromises the epithelial barrier function."	"Diagnostic application of targeted resequencing for familial nonsyndromic hearing loss. Identification of causative genes for hereditary nonsyndromic hearing loss (NSHL) is important to decide treatment modalities and to counsel the patients. Due to the genetic heterogeneity in sensorineural genetic disorders, the high-throughput method can be adapted for the efficient diagnosis. To this end, we designed a new diagnostic pipeline to screen all the reported candidate genes for NSHL. For validation of the diagnostic pipeline, we focused upon familial NSHL cases that are most likely to be genetic, rather than to be infectious or environmental. Among the 32 familial NSHL cases, we were able to make a molecular genetic diagnosis from 12 probands (37.5%) in the first stage by their clinical features, characteristic inheritance pattern and further candidate gene sequencing of GJB2, SLC26A4, POU3F4 or mitochondrial DNA. Next we applied targeted resequencing on 80 NSHL genes in the remaining 20 probands. Each proband carried 4.8 variants that were not synonymous and had the occurring frequency of less than three among the 20 probands. These variants were then filtered out with the inheritance pattern of the family, allele frequency in normal hearing 80 control subjects, clinical features. Finally NSHL-causing candidate mutations were identified in 13(65%) of the 20 probands of multiplex families, bringing the total solve rate (or detection rate) in our familial cases to be 78.1% (25/32) Damaging mutations discovered by the targeted resequencing were distributed in nine genes such as WFS1, COCH, EYA4, MYO6, GJB3, COL11A2, OTOF, STRC and MYO3A, most of which were private. Despite the advent of whole genome and whole exome sequencing, we propose targeted resequencing and filtering strategy as a screening and diagnostic tool at least for familial NSHL to find mutations based upon its efficacy and cost-effectiveness."	"Myosin VI and Associated Proteins Are Expressed in Human Macrophages but Do Not Play a Role in Foam Cell Formation in THP-1 Cells. Myosin VI (Myo6) functions in endocytosis in conjunction with binding partners including adaptor protein (AP)-2, disabled 2 (Dab2), and GAIP interacting protein C terminus 1 (GIPC1). This study aimed to investigate the expression and function of Myo6 in macrophages and its possible role in the endocytosis of lipoproteins during the induction of foam cell formation. Expression of Myo6, AP-2 ( α 2 subunit), and Dab2 in THP-1 macrophages and primary human monocyte-derived macrophages was demonstrated at the mRNA and protein level, but GIPC1 was only detected at the mRNA level. Immunofluorescence showed that Myo6 was distributed similarly to F-actin in both macrophage types. AP-2 α 2 was found to have a similar subcellular distribution to Myo6 and Dab2 in THP-1 cells. Myo6 was located within membrane ruffles and protrusions of the plasma membrane. These results suggest that in macrophages Myo6 is required for several functions including cell adhesion, cell progression, and macropinocytosis. Low-density lipoprotein (LDL) and oxidised LDL (oxLDL) decreased Myo6 and GIPC1 mRNA expression in THP-1 cells, but uptake of the fluorescence-labelled lipoproteins was unaffected by knockdown of the expression of Myo6 or associated proteins with siRNA. Our findings, therefore, do not support the idea that Myo6 plays a major role in foam cell formation. "	"Genetic etiology study of the non-syndromic deafness in Chinese Hans by targeted next-generation sequencing. Although over 60 non-syndromic deafness genes have been identified to date, the etiologic contribution of most deafness genes remained elusive. In this study, we addressed this issue by targeted next-generation sequencing of a large cohort of non-syndromic deaf probands. Probands with mutations in commonly screened deafness genes GJB2, SLC26A4 and MT-RNR1 were pre-excluded by Sanger sequencing. The remaining 125 deaf probands proceeded through targeted exon capturing of 79 known deafness genes and Illumina HiSeq2000 sequencing. Bi-allelic mutations in 15 less commonly screened deafness genes were identified in 28 deaf probands, with mutations in MYO15A, GPR98, TMC1, USH2A and PCDH15 being relatively more frequent (≥3 probands each). Dominant mutations in MYO6, TECTA, POU4F3 and COCH were identified in 4 deaf families. A mitochondrial MTTS1 mutation was identified in one maternally inherited deaf family. No pathogenic mutations were identified in three dominant deaf families and two consanguineous families. Mutations in the less commonly screened deafness genes were heterogeneous and contributed to a significant percentage (17.4%) of causes for non-syndromic deafness. Targeted next-generation sequencing provided a comprehensive and efficient diagnosis for known deafness genes. Complementary to linkage analysis or whole-exome sequencing of deaf families, pre-exclusion of known deafness genes by this strategy may facilitate the discovery of novel deafness genes."	"Functional proteomics, human genetics and cancer biology of GIPC family members. GIPC1, GIPC2 and GIPC3 consist of GIPC homology 1 (GH1) domain, PDZ domain and GH2 domain. The regions around the GH1 and GH2 domains of GIPC1 are involved in dimerization and interaction with myosin VI (MYO6), respectively. The PDZ domain of GIPC1 is involved in interactions with transmembrane proteins [IGF1R, NTRK1, ADRB1, DRD2, TGFβR3 (transforming growth factorβ receptor type III), SDC4, SEMA4C, LRP1, NRP1, GLUT1, integrin α5 and VANGL2], cytosolic signaling regulators (APPL1 and RGS19) and viral proteins (HBc and HPV-18 E6). GIPC1 is an adaptor protein with dimerizing ability that loads PDZ ligands as cargoes for MYO6-dependent endosomal trafficking. GIPC1 is required for cell-surface expression of IGF1R and TGFβR3. GIPC1 is also required for integrin recycling during cell migration, angiogenesis and cytokinesis. On early endosomes, GIPC1 assembles receptor tyrosine kinases (RTKs) and APPL1 for activation of PI3K-AKT signaling, and G protein-coupled receptors (GPCRs) and RGS19 for attenuation of inhibitory Gα signaling. GIPC1 upregulation in breast, ovarian and pancreatic cancers promotes tumor proliferation and invasion, whereas GIPC1 downregulation in cervical cancer with human papillomavirus type 18 infection leads to resistance to cytostatic transforming growth factorβ signaling. GIPC2 is downregulated in acute lymphocytic leukemia owing to epigenetic silencing, while Gipc2 is upregulated in estrogen-induced mammary tumors. Somatic mutations of GIPC2 occur in malignant melanoma, and colorectal and ovarian cancers. Germ-line mutations of the GIPC3 or MYO6 gene cause nonsyndromic hearing loss. As GIPC proteins are involved in trafficking, signaling and recycling of RTKs, GPCRs, integrins and other transmembrane proteins, dysregulation of GIPCs results in human pathologies, such as cancer and hereditary deafness."	"Myosin VI reduces proliferation, but not differentiation, in pluripotent P19 cells. We have previously shown marked upregulation of the mRNA and corresponding protein for the cellular motor molecule myosin VI (Myo6) after an extremely traumatic stress experience, along with a delayed decrease in 5-bromo-2'-deoxyuridine incorporation in the murine hippocampus, a brain structure believed to undergo adult neurogenesis. In this study, we investigated the role of Myo6 in both proliferation and differentiation in pluripotent P19 cells by using stable transfection and RNA interference techniques. Stable overexpression of Myo6 not only led to significant inhibition of the reducing activity of 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyl-2H-tetrazolium bromide (MTT) and the size of clustered aggregates in P19 cells, but also resulted in selectively decreased mRNA expression of the repressor type proneural gene Hes5 without affecting the expression of neuronal and astroglial marker proteins. In P19 cells transfected with Myo6 siRNA, by contrast, a significant increase was found in the size of aggregate and MTT reduction along with increased Sox2 protein levels, in addition to marked depletion of the endogenous Myo6 protein. In C6 glioma cells, however, introduction of Myo6 siRNA induced a drastic decrease in endogenous Myo6 protein levels without significantly affecting MTT reduction. The Ca(2+) ionophore A23187 drastically increased the luciferase activity in P19 cells transfected with a Myo6 promoter reporter plasmid, but not in HEK293, Neuro2A and C6 glioma cells transfected with the same reporter. These results suggest that Myo6 may play a predominant pivotal role in the mechanism underlying proliferation without affecting differentiation to progeny lineages in pluripotent P19 cells."	"A novel MYO6 splice site mutation causes autosomal dominant sensorineural hearing loss type DFNA22 with a favourable outcome after cochlear implantation. Mutations in MYO6 encoding an atypical myosin motor protein important for inner ear hair cell function have been associated with autosomal recessive (DFNB37) and autosomal dominant (DFNA22) types of hearing loss in a few families worldwide. After genome-wide linkage analysis, we identified a novel MYO6 mutation at the splice acceptor site of exon 7 (c.554-1G&gt;A) in an extended German family with autosomal dominant postlingual non-syndromic hearing impairment. Analysis of blood-derived cDNA revealed different aberrantly spliced mRNAs caused by the mutation, which are predicted to severely interfere with protein function. Two of the family members underwent cochlear implantation at ages 53 and 65. Here, we present detailed clinical data of this family which suggest a favourable outcome of cochlear implantation in hearing-impaired individuals with a MYO6 mutation."	"Adaptive evolution of the myo6 gene in old world fruit bats (family: pteropodidae). Myosin VI (encoded by the Myo6 gene) is highly expressed in the inner and outer hair cells of the ear, retina, and polarized epithelial cells such as kidney proximal tubule cells and intestinal enterocytes. The Myo6 gene is thought to be involved in a wide range of physiological functions such as hearing, vision, and clathrin-mediated endocytosis. Bats (Chiroptera) represent one of the most fascinating mammal groups for molecular evolutionary studies of the Myo6 gene. A diversity of specialized adaptations occur among different bat lineages, such as echolocation and associated high-frequency hearing in laryngeal echolocating bats, large eyes and a strong dependence on vision in Old World fruit bats (Pteropodidae), and specialized high-carbohydrate but low-nitrogen diets in both Old World and New World fruit bats (Phyllostomidae). To investigate what role(s) the Myo6 gene might fulfill in bats, we sequenced the coding region of the Myo6 gene in 15 bat species and used molecular evolutionary analyses to detect evidence of positive selection in different bat lineages. We also conducted real-time PCR assays to explore the expression levels of Myo6 in a range of tissues from three representative bat species. Molecular evolutionary analyses revealed that the Myo6 gene, which was widely considered as a hearing gene, has undergone adaptive evolution in the Old World fruit bats which lack laryngeal echolocation and associated high-frequency hearing. Real-time PCR showed the highest expression level of the Myo6 gene in the kidney among ten tissues examined in three bat species, indicating an important role for this gene in kidney function. We suggest that Myo6 has undergone adaptive evolution in Old World fruit bats in relation to receptor-mediated endocytosis for the preservation of protein and essential nutrients."	"Characterization of a novel ENU-generated myosin VI mutant mouse strain with congenital deafness and vestibular dysfunction. Myosin VI (Myo6) is known to play an important role in the mammalian auditory and vestibular systems. We have identified a novel N-ethyl-N-nitrosourea mutagenised mouse strain, charlie, carrying an intronic Myo6 splice site mutation. This mutation (IVS5+5G &gt; A) results in skipping of exon 5, and is predicted to cause a frameshift and premature termination of the protein. We detected essentially no Myo6 transcript in tissue from charlie homozygous mutant mice (Myo6(chl/chl)). Myo6(chl/chl) mice exhibit vestibular dysfunction and profound hearing impairment when first tested at four weeks of age. Analysis of vestibular and cochlear hair cells by scanning electron microscopy and immunohistochemistry revealed highly disorganised hair bundles with irregular orientation and kinocilium position at postnatal stage P2-P3. Within a few weeks, the majority of hair cell stereocilia are missing, or fused and elongated, and degeneration of the sensory epithelium occurs. This novel mouse strain will be an important resource in elucidating the role myosin VI plays in the mammalian auditory system, as well as its non-auditory functions."	"Progressive hereditary hearing impairment caused by a MYO6 mutation resembles presbyacusis. Since deafness is the most common sensorineural disorder in humans, better understanding of the underlying causes is necessary to improve counseling and rehabilitation. A Dutch family with autosomal dominantly inherited sensorineural hearing loss was clinically and genetically assessed. The MYO6 gene was selected to be sequenced because of similarities with other, previously described DFNA22 phenotypes and a pathogenic c.3610C &gt; T (p.R1204W) mutation was found to co-segregate with the disease. This missense mutation results in a flat configured audiogram with a mild hearing loss, which becomes severe to profound and gently to steeply downsloping later in life. The age-related typical audiograms (ARTA) constructed for this family resemble presbyacusis. Speech audiometry and results of loudness scaling support the hypothesis that the phenotype of this specific MYO6 mutation mimics presbyacusis."	"Myosins in cell junctions. The development of cell-cell junctions was a fundamental step in metazoan evolution, and human health depends on the formation and function of cell junctions. Although it has long been known that actin and conventional myosin have important roles in cell junctions, research has begun to reveal the specific functions of the different forms of conventional myosin. Exciting new data also reveals that a growing number of unconventional myosins have important roles in cell junctions. Experiments showing that cell junctions act as mechanosensors have also provided new impetus to understand the functions of myosins and the forces they exert. In this review we will summarize recent developments on the roles of myosins in cell junctions. "	"Ergic2, a brain specific interacting partner of Otoferlin. Otoferlin, a postulated calcium sensor of 230 kDa, was proposed to trigger calcium dependent fusion of vesicles with plasma membrane in the ribbon synapses of cochlear IHCs. Otoferlin's interaction with Rab8b and Myo6, proteins involved in the intracellular membrane trafficking, extended the previous hypothesis assigning Otoferlin an additional role in trans-Golgi trafficking. Here, we present another Otoferlin binding partner, Ergic2, a protein with a still unknown function but presenting sequence homology to other proteins involved in ER/Golgi vesicle trafficking. Novel binding partners of Otoferlin were searched by yeast two-hybrid screening in a rodent cochlear cDNA library (P3-P15). RT-PCR, western blot, immunohistochemistry staining and co-immunoprecipitation were applied to analyze and confirm an interaction between Ergic2 and Otoferlin. The Y-2-H screening, using baits covering parts of Otoferlin's C2D domain, identified Ergic2 as an interacting protein for Otoferlin. Both are co-expressed (mRNA and protein level) in rodent cochlea and brain before- and after-onset of hearing. By RT-PCR Ergic2 was detected in cochlear IHCs and OHCs and in brain regions where Otoferlin is known to be present. Co-localization studies revealed an overlap of Ergic2 and Otoferlin signals in IHCs and neurons of cerebral cortical layer I making Ergic2 the promising binding candidate. However, while Ergic2 was co-precipitated by an anti-Otoferlin antibody in protein lysates from murine brain, this specific protein interaction was not detected in cochlea. Our new data on Otoferlin's interactome suggest that Otoferlin can form different, tissue-specific protein complexes."	"Wnt signaling induces proliferation of sensory precursors in the postnatal mouse cochlea. Inner ear hair cells are specialized sensory cells essential for auditory function. Previous studies have shown that the sensory epithelium is postmitotic, but it harbors cells that can behave as progenitor cells in vitro, including the ability to form new hair cells. Lgr5, a Wnt target gene, marks distinct supporting cell types in the neonatal cochlea. Here, we tested the hypothesis that Lgr5(+) cells are Wnt-responsive sensory precursor cells. In contrast to their quiescent in vivo behavior, Lgr5(+) cells isolated by flow cytometry from neonatal Lgr5(EGFP-CreERT2/+) mice proliferated and formed clonal colonies. After 10 d in culture, new sensory cells formed and displayed specific hair cell markers (myo7a, calretinin, parvalbumin, myo6) and stereocilia-like structures expressing F-actin and espin. In comparison with other supporting cells, Lgr5(+) cells were enriched precursors to myo7a(+) cells, most of which formed without mitotic division. Treatment with Wnt agonists increased proliferation and colony-formation capacity. Conversely, small-molecule inhibitors of Wnt signaling suppressed proliferation without compromising the myo7a(+) cells formed by direct differentiation. In vivo lineage tracing supported the idea that Lgr5(+) cells give rise to myo7a(+) hair cells in the neonatal Lgr5(EGFP-CreERT2/+) cochlea. In addition, overexpression of β-catenin initiated proliferation and led to transient expansion of Lgr5(+) cells within the cochlear sensory epithelium. These results suggest that Lgr5 marks sensory precursors and that Wnt signaling can promote their proliferation and provide mechanistic insights into Wnt-responsive progenitor cells during sensory organ development."	"De novo microdeletions of chromosome 6q14.1-q14.3 and 6q12.1-q14.1 in two patients with intellectual disability - further delineation of the 6q14 microdeletion syndrome and review of the literature. Interstitial 6q deletions can cause a variable phenotype depending on the size and location of the deletion. 6q14 deletions have been associated with intellectual disability and a distinct pattern of minor anomalies, including upslanted palpebral fissures with epicanthal folds, a short nose with broad nasal tip, anteverted nares, long philtrum, and thin upper lip. In this study we describe two patients with overlapping 6q14 deletions presenting with developmental delay and characteristic dysmorphism. Molecular karyotyping using array CGH analysis revealed a de novo 8.9 Mb deletion at 6q14.1-q14.3 and a de novo 11.3 Mb deletion at 6q12.1-6q14.1, respectively. We provide a review of the clinical features of twelve other patients with 6q14 deletions detected by array CGH analysis. By assessing all reported data we could not identify a single common region of deletion. Possible candidate genes in 6q14 for intellectual disability might be FILIP1, MYO6, HTR1B, and SNX14."	"Myosin Ia is required for CFTR brush border membrane trafficking and ion transport in the mouse small intestine. In enterocytes of the small intestine, endocytic trafficking of CFTR channels from the brush border membrane (BBM) to the subapical endosomes requires the minus-end motor, myosin VI (Myo6). The subapical localization of Myo6 is dependent on myosin Ia (Myo1a) the major plus-end motor associated with the BBM, suggestive of functional synergy between these two motors. In villus enterocytes of the Myo1a KO mouse small intestine, CFTR accumulated in syntaxin-3 positive subapical endosomes, redistributed to the basolateral domain and was absent from the BBM. In colon, where villi are absent and Myo1a expression is low, CFTR exhibited normal localization to the BBM in the Myo1a KO similar to WT. cAMP-stimulated CFTR anion transport in the small intestine was reduced by 58% in the KO, while anion transport in the colon was comparable to WT. Co-immunoprecipitation confirmed the association of CFTR with Myo1a. These data indicate that Myo1a is an important regulator of CFTR traffic and anion transport in the BBM of villus enterocytes and suggest that Myo1a may power apical CFTR movement into the BBM from subapical endosomes. Alternatively, it may anchor CFTR channels in the BBM of villus enterocytes as was proposed for Myo1a's role in BBM localization of sucrase-isomaltase."	"Myosin VI is required for maintenance of brush border structure, composition, and membrane trafficking functions in the intestinal epithelial cell. Characterization of the intestinal epithelium of the Snell's waltzer (sv/sv) mouse revealed that myosin VI (Myo6) is required for proper brush border (BB) ultrastructure, composition and membrane traffic. The defects observed were distinct from that observed in the myosin Ia KO, even though Myo6 is lost from the BB in this KO. Myo6 is expressed throughout the length of the small and large intestine; it is localized to the subapical inter-microvillar (MV) domain and basolateral membrane. Defects in the BB include apparent lifting of the plasma membrane off of the actin cytoskeleton in the inter-MV region, fusion of MV, and disorganized morphology of the terminal web. The molecular composition of the sv/sv BB is altered. This includes increased expression of myosin Va, myosin Ie and the MV actin binding proteins espin and phosphorylated-ezrin; myosin Id is reduced. Changes in endocytic components include reduced clathrin and adaptin β, and increased disabled-2. Endocytic uptake of lumenal lactoferrin is inhibited in adult, but not neonatal intestinal epithelial cells. There is increased BB membrane-associated expression of both the Na(+)/H(+) exchanger, NHE3 and the Na(+)/phosphate transporter, NaPi2b. These results suggest that Myo6 is involved in the regulated trafficking of NHE3 and NaPi2b between the BB membrane and endosome."	"Plus-end directed myosins accelerate actin filament sliding by single-headed myosin VI. Myosin VI (Myo6) is unique among myosins in that it moves toward the minus (pointed) end of the actin filament. Thus to exert tension on, or move cargo along an actin filament, Myo6 is working against potentially multiple plus (barbed)-end myosins. To test the effect of plus-end motors on Myo6, the gliding actin filament assay was used to assess the motility of single-headed Myo6 in the absence and presence of cardiac myosin II (Myo2) and myosin Va (Myo5a). Myo6 alone exhibited a filament gliding velocities of 60.34 ± 13.68 nm/s. Addition of either Myo2 or Myo5a, at densities below that required to promote plus-end movement resulted in an increase in Myo6 velocity (~100-150% increase). Movement in the presence of these plus-end myosins was minus-end directed as determined using polarity tagged filaments. High densities of Myo2 or Myo5a were required to convert to plus-end directed motility indicating that Myo6 is a potent inhibitor of Myo2 and Myo5a. Previous studies have shown that two-headed Myo6 slows and then stalls in an anchored state under load. Consistent with these studies, velocity of a two headed heavy mero myosin form of Myo6 was unaffected by Myo5a at low densities, and was inhibited at high Myo5a densities."	"Neuro-psychopharmacogenetics and Neurological Antecedents of Posttraumatic Stress Disorder: Unlocking the Mysteries of Resilience and Vulnerability. Although the biological underpinnings of immediate and protracted trauma-related responses are extremely complex, 40 years of research on humans and other mammals have demonstrated that trauma (particularly trauma early in the life cycle) has long-term effects on neurochemical responses to stressful events. These effects include the magnitude of the catecholamine response and the duration and extent of the cortisol response. In addition, a number of other biological systems are involved, including mesolimbic brain structures and various neurotransmitters. An understanding of the many genetic and environmental interactions contributing to stress-related responses will provide a diagnostic and treatment map, which will illuminate the vulnerability and resilience of individuals to Posttraumatic Stress Disorder (PTSD). We propose that successful treatment of PTSD will involve preliminary genetic testing for specific polymorphisms. Early detection is especially important, because early treatment can improve outcome. When genetic testing reveals deficiencies, vulnerable individuals can be recommended for treatment with &quot;body friendly&quot; pharmacologic substances and/or nutrients. Results of our research suggest the following genes should be tested: serotoninergic, dopaminergic (DRD2, DAT, DBH), glucocorticoid, GABAergic (GABRB), apolipoprotein systems (APOE2), brain-derived neurotrophic factor, Monamine B, CNR1, Myo6, CRF-1 and CRF-2 receptors, and neuropeptide Y (NPY). Treatment in part should be developed that would up-regulate the expression of these genes to bring about a feeling of well being as well as a reduction in the frequency and intensity of the symptoms of PTSD."	"Two-marker association tests yield new disease associations for coronary artery disease and hypertension. It has been postulated that multiple-marker methods may have added ability, over single-marker methods, to detect genetic variants associated with disease. The Wellcome Trust Case Control Consortium (WTCCC) provided the first successful large genome-wide association studies (GWAS) which included single-marker association analyses for seven common complex diseases. Of those signals detected, only one was associated with coronary artery disease (CAD), and none were identified for hypertension (HTN). Our objective was to find additional genetic associations and pathways for cardiovascular disease by examining the WTCCC data for variants associated with CAD and HTN using two-marker testing methods. We applied two-marker association testing to the WTCCC dataset, which includes ~2,000 affected individuals with each disorder, and a shared pool of ~3,000 controls, all genotyped using Affymetrix GeneChip 500 K arrays. For CAD, we detected single nucleotide polymorphisms (SNP) pairs in three genes showing genome-wide significance: HFE2, STK32B, and DIPC2. The most notable SNP pairs in a non-protein-coding region were at 9p21, a known major CAD-associated region. For HTN, we detected SNP pairs in five genes: GPR39, XRCC4, MYO6, ZFAT, and MACROD2. Four further associated SNP pair regions were at least 70 kb from any known gene. We have shown that novel, multiple-marker, statistical methods can be of use in finding variants in GWAS. We describe many new, associated variants for both CAD and HTN and describe their known genetic mechanisms."	"Identification of genes concordantly expressed with Atoh1 during inner ear development. The inner ear is composed of a cochlear duct and five vestibular organs in which mechanosensory hair cells play critical roles in receiving and relaying sound and balance signals to the brain. To identify novel genes associated with hair cell differentiation or function, we analyzed an archived gene expression dataset from embryonic mouse inner ear tissues. Since atonal homolog 1a (Atoh1) is a well known factor required for hair cell differentiation, we searched for genes expressed in a similar pattern with Atoh1 during inner ear development. The list from our analysis includes many genes previously reported to be involved in hair cell differentiation such as Myo6, Tecta, Myo7a, Cdh23, Atp6v1b1, and Gfi1. In addition, we identified many other genes that have not been associated with hair cell differentiation, including Tekt2, Spag6, Smpx, Lmod1, Myh7b, Kif9, Ttyh1, Scn11a and Cnga2. We examined expression patterns of some of the newly identified genes using real-time polymerase chain reaction and in situ hybridization. For example, Smpx and Tekt2, which are regulators for cytoskeletal dynamics, were shown specifically expressed in the hair cells, suggesting a possible role in hair cell differentiation or function. Here, by reanalyzing archived genetic profiling data, we identified a list of novel genes possibly involved in hair cell differentiation."	"Global analysis of the impact of environmental perturbation on cis-regulation of gene expression. Genetic variants altering cis-regulation of normal gene expression (cis-eQTLs) have been extensively mapped in human cells and tissues, but the extent by which controlled, environmental perturbation influences cis-eQTLs is unclear. We carried out large-scale induction experiments using primary human bone cells derived from unrelated donors of Swedish origin treated with 18 different stimuli (7 treatments and 2 controls, each assessed at 2 time points). The treatments with the largest impact on the transcriptome, verified on two independent expression arrays, included BMP-2 (t = 2h), dexamethasone (DEX) (t = 24 h), and PGE₂ (t = 24 h). Using these treatments and control, we performed expression profiling for 18,144 RefSeq transcripts on biological replicates of the complete study cohort of 113 individuals (n(total) = 782) and combined it with genome-wide SNP-genotyping data in order to map treatment-specific cis-eQTLs (defined as SNPs located within the gene ± 250 kb). We found that 93% of cis-eQTLs at 1% FDR were observed in at least one additional treatment, and in fact, on average, only 1.4% of the cis-eQTLs were considered as treatment-specific at high confidence. The relative invariability of cis-regulation following perturbation was reiterated independently by genome-wide allelic expression tests where only a small proportion of variance could be attributed to treatment. Treatment-specific cis-regulatory effects were, however, 2- to 6-fold more abundant among differently expressed genes upon treatment. We further followed-up and validated the DEX-specific cis-regulation of the MYO6 and TNC loci and found top cis-regulatory variants located 180 kb and 250 kb upstream of the transcription start sites, respectively. Our results suggest that, as opposed to tissue-specificity of cis-eQTLs, the interactions between cellular environment and cis-variants are relatively rare (∼1.5%), but that detection of such specific interactions can be achieved by a combination of functional genomic approaches as described here."	"Phospholipase Cδ3 is a novel binding partner of myosin VI and functions as anchoring of myosin VI on plasma membrane. Phospholipase Cδ3 (PLCδ3) is a key enzyme in phosphoinositide metabolism, however, its physiological function remains unknown. Here we identified the Myosin VI (Myo6) as a binding partner of the PLCδ3. A tail region containing IQ motif and the cargo-binding domain of Myo6, and the C2 domain and PH domain of PLCδ3 were responsible sites for the interaction. Since Myo6 has been well analyzed as one of the &quot;deafness genes&quot; in mouse and human, we examined the expression pattern of PLCδ3 mRNA in the inner ear. In situ hybridization analysis indicated that both Myo6 and PLCδ3 were clearly and limitedly co-expressed in the inner and outer hair cells in the cochlea. Although actin structure of the stereocilia of hair cells seemed to be normal and no detectable hearing defect was observed in PLCδ3 knockout (KO) mice, stable PLCδ3 knockdown in Caco-2 colonic carcinoma cells caused abnormal actin structure of microvilli. In addition, dramatic decrease in expression of Myo6 was observed in intestine of PLCδ3KO mice, where microvilli structure is well developed. These results indicate that PLCδ3 could participate in stability of microvilli structure via regulating and anchoring of Myo6 to plasma membrane."	"The microRNA profile of prostate carcinoma obtained by deep sequencing. Prostate cancer is a leading cause of tumor mortality. To characterize the underlying molecular mechanisms, we have compared the microRNA (miRNA) profile of primary prostate cancers and noncancer prostate tissues using deep sequencing. MiRNAs are small noncoding RNAs of 21 to 25 nucleotides that regulate gene expression through the inhibition of protein synthesis. We find that 33 miRNAs were upregulated or downregulated &gt;1.5-fold. The deregulation of selected miRNAs was confirmed by both Northern blotting and quantitative reverse transcription-PCR in established prostate cancer cell lines and clinical tissue samples. A computational search indicated the 3'-untranslated region (UTR) of the mRNA for myosin VI (MYO6) as a potential target for both miR-143 and miR-145, the expression of which was reduced in the tumor tissues. Upregulation of myosin VI in prostate cancer was previously shown by immunohistochemistry. The level of MYO6 mRNA was significantly induced in all primary tumor tissues compared with the nontumor tissue from the same patient. This finding was matched to the upregulation of myosin VI in established prostate cancer cell lines. In luciferase reporter analysis, we find a significant negative regulatory effect on the MYO6 3'UTR by both miR-143 and miR-145. Mutation of the potential binding sites for miR-143 and miR-145 in the MYO6 3'UTR resulted in a loss of responsiveness to the corresponding miRNA. Our data indicate that miR-143 and miR-145 are involved in the regulation of MYO6 expression and possibly in the development of prostate cancer."	"Phenotypic and expression analysis of a novel spontaneous myosin VI null mutant mouse. In humans, hearing is a major factor in quality of life. Mouse models are important tools for the discovery of genes responsible for genetic hearing loss, often enabling analysis of the processes that regulate the onset of deafness in humans. Thus far, at least 400 deafness mutants have been discovered in laboratory mouse populations and used in the study of deafness. Here we report the discovery of a new spontaneous recessive Rinshoken shaker/waltzer (rsv) mutant derived from our in-house C57BL/6J stock, which exhibits circling and/or head-tossing behaviour and complete lack of auditory brain response to any sound pressure. The hearing and balance phenotypes are associated with structural defects, in particular, disorganisation and fusion of stereocilia in the inner ear hair cells. Two sets of intersubspecific N(2) mice were generated for the positional cloning of the rsv mutation. The mutant locus was mapped to a 4.8-Mb region of chromosome 9, which contains myosin VI (Myo6), a gene responsible for deafness in humans and Snell's waltzer mutation in mice. The rsv mutant showed reduced expressions of Myo6 mRNA and MYO6 protein in the inner ear. Moreover, no immunoreactivity was observed in the cochlear and vestibular hair cells in the rsv mutant mice. We sequenced the genomic region (30,154 bp) of Myo6, including all coding exons, a non-coding exon, UTRs and the Myo6 promoter; however, no mutation was discovered in these regions. We therefore speculate that loss of MYO6 expression might cause shaker/waltzer behaviour and deafness in the rsv mutant; also, loss of MYO6 expression might be the result of mutations in an unidentified regulatory region(s) of the gene."	"Altered renal proximal tubular endocytosis and histology in mice lacking myosin-VI. Myosin VI (Myo6) is an actin-based molecular motor involved in clathrin-mediated endocytosis that is highly expressed in the renal proximal tubule brush border. We investigated the renal physiological consequences of loss of Myo6 function by performing renal clearance and physiological measurements on Myo6 functional null Snell's waltzer (sv/sv) and control heterozygous (+/sv) mice. Sv/sv mice showed reduced body weight and elevated blood pressure compared with controls; no differences were observed for glomerular flow rate, urine volume, blood acid-base parameters, and plasma concentrations and urinary excretions of Na(+) and K(+). To assess the integrity of endocytosis-mediated protein absorption by the kidney, urinary albumin excretion was measured, and the proximal tubular uptake of intravenously injected endocytic marker horseradish peroxidase (HRP) was examined. Albumin excretion was increased nearly 4-fold in sv/sv mice relative to controls. Conversely, HRP uptake was reduced and delayed in proximal tubule cells of the sv/sv kidney observed by electron microscopy at 5 and 30 min after injection. Consistent with impaired endocytosis, we also observed defects indicating alterations along the endocytic pathway in sv/sv proximal tubule cells: (1) decreased membrane association of the clathrin adaptor subunit, adaptin beta, and Disabled-2 (Dab2) after sedimentation of renal homogenates and (2) reduced apical vacuole number. In addition, proximal tubular dilation and fibrosis, likely secondary effects of the loss of Myo6, were observed in sv/sv kidneys. These results indicate that Myo6 plays a key role in endocytosis-mediated protein absorption in the mouse kidney proximal tubule."	"High-throughput detection of mutations responsible for childhood hearing loss using resequencing microarrays. Despite current knowledge of mutations in 45 genes that can cause nonsyndromic sensorineural hearing loss (SNHL), no unified clinical test has been developed that can comprehensively detect mutations in multiple genes. We therefore designed Affymetrix resequencing microarrays capable of resequencing 13 genes mutated in SNHL (GJB2, GJB6, CDH23, KCNE1, KCNQ1, MYO7A, OTOF, PDS, MYO6, SLC26A5, TMIE, TMPRSS3, USH1C). We present results from hearing loss arrays developed in two different research facilities and highlight some of the approaches we adopted to enhance the applicability of resequencing arrays in a clinical setting. We leveraged sequence and intensity pattern features responsible for diminished coverage and accuracy and developed a novel algorithm, sPROFILER, which resolved &gt;80% of no-calls from GSEQ and allowed 99.6% (range: 99.2-99.8%) of sequence to be called, while maintaining overall accuracy at &gt;99.8% based upon dideoxy sequencing comparison. Together, these findings provide insight into critical issues for disease-centered resequencing protocols suitable for clinical application and support the use of array-based resequencing technology as a valuable molecular diagnostic tool for pediatric SNHL and other genetic diseases with substantial genetic heterogeneity."	"Genotype-phenotype correlation for DFNA22: characterization of non-syndromic, autosomal dominant, progressive sensorineural hearing loss due to MYO6 mutations. Clinical and audiological examination was done in 2 Belgian families with autosomal dominant sensorineural hearing loss (SNHL) linked to DFNA22. Nineteen subjects in family 1 had mild to moderate SNHL starting in the third decade. The hearing loss was characterized by a flat audiogram affecting all tested frequencies with statistically significant progression. In family 2 eleven subjects were affected with mild to moderate SNHL starting in the second decade. Most of them showed a flat audiogram, but some had mid-frequency hearing loss. Significant progression of thresholds was present at 4 and 8 kHz. For all hitherto known DFNA22 families the audiological and clinical characteristics were correlated with the molecular data. This study describes the phenotype of 2 Belgian families with SNHL linked to DFNA22, both with a pathogenic change in the deafness gene MYO6. The phenotypes of all hitherto reported DFNA22 families with mutations in the MYO6 gene have been studied and compared. It seems that genetic defects that spare the motor domain of the myosin VI protein have a milder phenotype."	"Myosin VI is required for the proper maturation and function of inner hair cell ribbon synapses. The ribbon synapses of auditory inner hair cells (IHCs) undergo morphological and electrophysiological transitions during cochlear development. Here we report that myosin VI (Myo6), an actin-based motor protein involved in genetic forms of deafness, is necessary for some of these changes to occur. By using post-embedding immunogold electron microscopy, we showed that Myo6 is present at the IHC synaptic active zone. In Snell's waltzer mutant mice, which lack Myo6, IHC ionic currents and ribbon synapse maturation proceeded normally until at least post-natal day 6. In adult mutant mice, however, the IHCs displayed immature potassium currents and still fired action potentials, as normally only observed in immature IHCs. In addition, the number of ribbons per IHC was reduced by 30%, and 30% of the remaining ribbons were morphologically immature. Ca2+-dependent exocytosis probed by capacitance measurement was markedly reduced despite normal Ca2+ currents and the large proportion of morphologically mature synapses, which suggests additional defects, such as loose Ca2+-exocytosis coupling or inefficient vesicular supply. Finally, we provide evidence that Myo6 and otoferlin, a putative Ca2+ sensor of synaptic exocytosis also involved in a genetic form of deafness, interact at the IHC ribbon synapse, and we suggest that this interaction is involved in the recycling of synaptic vesicles. Our findings thus uncover essential roles for Myo6 at the IHC ribbon synapse, in addition to that proposed in membrane turnover and anchoring at the apical surface of the hair cells."	"A protein-protein interaction of stress-responsive myosin VI endowed to inhibit neural progenitor self-replication with RNA binding protein, TLS, in murine hippocampus. We have shown preferential expression of both mRNA and corresponding protein for myosin VI (Myo6) in the murine hippocampus within 24 h after the extreme traumatic experience, water-immersion restraint stress (WIRS), prior to a drastic decrease in neural progenitor proliferation in the dentate gyrus. Myosin (Myo6) protein levels were significantly increased in hippocampus within 24 h after flashback experience in mice previously exposed to WIRS. Myo6 protein was ubiquitously distributed in discrete mouse brain regions with exceptionally high expression in olfactory bulb, whereas Myo6 protein was expressed in cultured rat astroglia and neurons, in addition to Myo6 mRNA expression by cultured neural progenitors. In mouse embryonal carcinoma P19 cells endowed to proliferate and differentiate, Myo6 protein was expressed in line with astroglial marker protein expression. Transient over-expression of Myo6 induced a significant decrease in the size of clustered aggregates as an index of self-replication in P19 cells. Immunoprecipitation analysis revealed the interaction between Myo6 and the RNA-binding protein, translocated in liposarcoma (TLS), while TLS was predominantly expressed by neurons in the cortex, striatum, cerebellum, and hippocampus. These results suggest that Myo6 may play a pivotal role in the mechanism underlying the suppressed adult neurogenesis after traumatic stress in association with TLS."	"Neuropilin-1/GIPC1 signaling regulates alpha5beta1 integrin traffic and function in endothelial cells. Neuropilin 1 (Nrp1) is a coreceptor for vascular endothelial growth factor A165 (VEGF-A165, VEGF-A164 in mice) and semaphorin 3A (SEMA3A). Nevertheless, Nrp1 null embryos display vascular defects that differ from those of mice lacking either VEGF-A164 or Sema3A proteins. Furthermore, it has been recently reported that Nrp1 is required for endothelial cell (EC) response to both VEGF-A165 and VEGF-A121 isoforms, the latter being incapable of binding Nrp1 on the EC surface. Taken together, these data suggest that the vascular phenotype caused by the loss of Nrp1 could be due to a VEGF-A164/SEMA3A-independent function of Nrp1 in ECs, such as adhesion to the extracellular matrix. By using RNA interference and rescue with wild-type and mutant constructs, we show here that Nrp1 through its cytoplasmic SEA motif and independently of VEGF-A165 and SEMA3A specifically promotes alpha5beta1-integrin-mediated EC adhesion to fibronectin that is crucial for vascular development. We provide evidence that Nrp1, while not directly mediating cell spreading on fibronectin, interacts with alpha5beta1 at adhesion sites. Binding of the homomultimeric endocytic adaptor GAIP interacting protein C terminus, member 1 (GIPC1), to the SEA motif of Nrp1 selectively stimulates the internalization of active alpha5beta1 in Rab5-positive early endosomes. Accordingly, GIPC1, which also interacts with alpha5beta1, and the associated motor myosin VI (Myo6) support active alpha5beta1 endocytosis and EC adhesion to fibronectin. In conclusion, we propose that Nrp1, in addition to and independently of its role as coreceptor for VEGF-A165 and SEMA3A, stimulates through its cytoplasmic domain the spreading of ECs on fibronectin by increasing the Rab5/GIPC1/Myo6-dependent internalization of active alpha5beta1. Nrp1 modulation of alpha5beta1 integrin function can play a causal role in the generation of angiogenesis defects observed in Nrp1 null mice."	"Distinct genomic aberrations associated with ERG rearranged prostate cancer. Emerging molecular and clinical data suggest that ETS fusion prostate cancer represents a distinct molecular subclass, driven most commonly by a hormonally regulated promoter and characterized by an aggressive natural history. The study of the genomic landscape of prostate cancer in the light of ETS fusion events is required to understand the foundation of this molecularly and clinically distinct subtype. We performed genome-wide profiling of 49 primary prostate cancers and identified 20 recurrent chromosomal copy number aberrations, mainly occurring as genomic losses. Co-occurring events included losses at 19q13.32 and 1p22.1. We discovered three genomic events associated with ERG rearranged prostate cancer, affecting 6q, 7q, and 16q. 6q loss in nonrearranged prostate cancer is accompanied by gene expression deregulation in an independent dataset and by protein deregulation of MYO6. To analyze copy number alterations within the ETS genes, we performed a comprehensive analysis of all 27 ETS genes and of the 3 Mbp genomic area between ERG and TMPRSS2 (21q) with an unprecedented resolution (30 bp). We demonstrate that high-resolution tiling arrays can be used to pin-point breakpoints leading to fusion events. This study provides further support to define a distinct molecular subtype of prostate cancer based on the presence of ETS gene rearrangements."	"A Myo6 mutation destroys coordination between the myosin heads, revealing new functions of myosin VI in the stereocilia of mammalian inner ear hair cells. Myosin VI, found in organisms from Caenorhabditis elegans to humans, is essential for auditory and vestibular function in mammals, since genetic mutations lead to hearing impairment and vestibular dysfunction in both humans and mice. Here, we show that a missense mutation in this molecular motor in an ENU-generated mouse model, Tailchaser, disrupts myosin VI function. Structural changes in the Tailchaser hair bundles include mislocalization of the kinocilia and branching of stereocilia. Transfection of GFP-labeled myosin VI into epithelial cells and delivery of endocytic vesicles to the early endosome revealed that the mutant phenotype displays disrupted motor function. The actin-activated ATPase rates measured for the D179Y mutation are decreased, and indicate loss of coordination of the myosin VI heads or 'gating' in the dimer form. Proper coordination is required for walking processively along, or anchoring to, actin filaments, and is apparently destroyed by the proximity of the mutation to the nucleotide-binding pocket. This loss of myosin VI function may not allow myosin VI to transport its cargoes appropriately at the base and within the stereocilia, or to anchor the membrane of stereocilia to actin filaments via its cargos, both of which lead to structural changes in the stereocilia of myosin VI-impaired hair cells, and ultimately leading to deafness."	"GOLPH2 and MYO6: putative prostate cancer markers localized to the Golgi apparatus. Malignant transformation is often accompanied by morphological and functional alterations in subcellular organelles. The Golgi apparatus is a subcellular structure primarily involved in modification and sorting of macromolecules for secretion and transport to other cellular destinations. Molecular alterations associated with the Golgi apparatus may take place during prostate carcinogenesis but such alterations have not been documented. To demonstrate that the Golgi apparatus undergoes alterations during prostate carcinogenesis, we examined the expression and localization of two candidate molecules, Golgi phosphoprotein 2 (GOLPH2) and myosin VI (MYO6), both overexpressed in prostate cancer as initially identified by expression microarray analysis. Elevated GOLPH2 expression in prostate cancers was validated through real-time RT-PCR, Western blot, and tissue microarray analysis, and its Golgi localization in surgical prostate cancer tissues confirmed using two-color immunofluorescence. In addition, distinctive juxtanuclear MYO6 staining pattern consistent with Golgi localization was observed in surgical prostate cancer tissues. Two-color immunofluorescence revealed intensive Golgi-specific staining for both GOLPH2 and myosin VI in prostate cancer cells but not in the adjacent normal prostate epithelium. We show that the Golgi apparatus in prostate cancer cells differs from the normal Golgi by elevated levels of two molecules, GOLPH2 and MYO6. These results for the first time demonstrated consistent cancer cell-specific alterations in the molecular composition of the Golgi apparatus. Such alterations can be explored for discovery of novel prostate cancer biomarkers through targeted organellar approaches."	"A novel nonsense mutation in MYO6 is associated with progressive nonsyndromic hearing loss in a Danish DFNA22 family. Autosomal dominant inheritance is described in about 20% of all nonsyndromic hearing loss with currently 54 distinct loci (DFNA1-54), and &gt;20 different genes identified. Seven different unconventional myosin genes are involved in ten different types of syndromic and nonsyndromic hearing loss with different patterns of inheritance: MYO7A in DFNA11/DFNB2/USH1B, MYH9 in DFNA17, MYH14 in DFNA4, MYO6 in DFNA22/DFNB37, MYO3A in DFNB30, MYO1A in DFNA48, and MYO15A in DFNB3. Two missense mutations in MYO6 (p.C442Y and p.H246R) have been characterized in families of Italian and American Caucasian extraction with autosomal dominant hearing loss, respectively, and the latter was associated with cardiomyopathy in some patients. Three Pakistani families had homozygosity for three MYO6 mutations (c.36insT, p.R1166X, and p.E216V, respectively), and was in one instance associated with retinal degeneration. In the present study, we linked autosomal dominant hearing loss in a large Danish family to a 38.9 Mb interval overlapping with the DFNA22/DFNB37 locus on chromosome 6q13. A novel nonsense mutation in MYO6 exon 25 (c.2545C &gt; T; p.R849X) was identified in the family. The mutation co-segregated with the disease and the mutant allele is predicted to encode a truncated protein lacking the coiled-coil and globular tail domains. These domains are hypothesized to be essential for targeting myosin VI to its cellular compartments. No other system was involved indicating nonsyndromic loss. In conclusion, a novel nonsense MYO6 mutation causes post-lingual, slowly progressive autosomal dominant nonsyndromic moderate to severe hearing loss in a Danish family."	"High-resolution copy number and gene expression microarray analyses of head and neck squamous cell carcinoma cell lines of tongue and larynx. Gene amplifications and deletions are frequent in head and neck squamous cell carcinomas (SCC) but the association of these alterations with gene expression is mostly unknown. Here, we characterized genome-wide copy number and gene expression changes on microarrays for 18 oral tongue SCC (OTSCC) cell lines. We identified a number of altered regions including nine high-level amplifications such as 6q12-q14 (CD109, MYO6), 9p24 (JAK2, CD274, SLC1A1, RLN1), 11p12-p13 (TRAF6, COMMD9, TRIM44, FJX1, CD44, PDHX, APIP), 11q13 (FADD, PPFIA1, CTTN), and 14q24 (ABCD4, HBLD1, LTBP2, ZNF410, COQ6, ACYP1, JDP2) where 9% to 64% of genes showed overexpression. Across the whole genome, 26% of the amplified genes had associated overexpression in OTSCC. Furthermore, our data implicated that OTSCC cell lines harbored similar genomic alterations as laryngeal SCC cell lines We have previously analyzed, suggesting that despite differences in clinicopathological features there are no marked differences in molecular genetic alterations of these two HNSCC sites. To identify genes whose expression was associated with copy number increase in head and neck SCC, a statistical analysis for oral tongue and laryngeal SCC cell line data were performed. We pinpointed 1,192 genes that had a statistically significant association between copy number and gene expression. These results suggest that genomic alterations with associated gene expression changes play an important role in the malignant behavior of head and neck SCC. The identified genes provide a basis for further functional validation and may lead to the identification of novel candidates for targeted therapies. This article contains Supplementary Material available at http://www.interscience.wiley.com/jpages/1045-2257/suppmat."	"Upregulation of Myo6 expression after traumatic stress in mouse hippocampus. Traumatic stress has been believed to result in a variety of unusual alterations of the integrity and the functionality in the hippocampus. In this study, we searched for genes responsive to traumatic stress in the mouse hippocampus to elucidate the underlying mechanisms. Adult male mice were subjected to water-immersion restraint stress (WIRS) for 3h as an extremely stressful experience, followed by dissection of the hippocampus and subsequent extraction of RNA for differential display polymerase chain reaction (PCR) analysis. The actin-based molecular motor protein myosin VI (Myo6) was identified as a gene markedly upregulated by traumatic stress in the mouse hippocampus 24h after WIRS. Real-time PCR and Western blotting analyses clearly revealed a significant increase in the expression of both mRNA and corresponding protein for Myo6 in the hippocampus within 24h after WIRS, while WIRS failed to significantly affect the expression of Myo6 protein in the cerebral cortex, cerebellum and olfactory bulb. Immunohistochemistry analysis revealed that Myo6 protein was ubiquitously expressed throughout the mouse brain, with an extremely high level in the olfactory bulb. These results suggest that Myo6 may be selectively and rapidly upregulated to play a hitherto unidentified role in the maintenance of the integrity and functionality in the hippocampus after traumatic stress."	"A splice-site mutation and overexpression of MYO6 cause a similar phenotype in two families with autosomal dominant hearing loss. Hearing loss is the most common sensory disorder, affecting 1 in 650 newborns. Linkage analysis revealed linkage to locus DFNA22 in two Belgian families 1 and 2 with autosomal dominant sensorineural hearing loss. As MYO6 has previously been reported as responsible for the hearing loss at loci DFNA22 and DFNB37, respectively, DNA sequencing of the coding region and the promoter of MYO6 was performed but this analysis did not reveal any mutations. However, only in patients of family 2, an insertion of 108 bp was identified in the mRNA of the gene. The inserted fragment was part of intron 23 and sequencing of this intron revealed a new splice-site mutation c.IVS23+2321T&gt;G, segregating with the hearing loss in the family. The mutation causes a frameshift and a premature termination codon, but real-time PCR revealed that only 15-20% of the mRNA is degraded by nonsense-mediated decay, while the other part may give rise to an aberrant protein. In family 1, a quantitative real-time PCR experiment revealed a 1.5-1.8-fold overexpression of MYO6 in patients compared to controls. The possible presence of a gene duplication could be excluded by real-time PCR on genomic level. Most likely, the overexpression is caused by a mutation in an unidentified regulatory region of the gene. This study indicates that the inner ear hair cells are sensitive to changes in expression levels of MYO6."	"Defective CFTR apical endocytosis and enterocyte brush border in myosin VI-deficient mice. In polarized epithelial cells such as those that line the inner ear, kidney and gut, myosin VI has been localized to the intermicrovillar domains where it is proposed to regulate clathrin-dependent endocytosis; however, a direct role for myosin VI in apical endocytosis has not been shown. We examined the apical membrane distribution and endocytosis of cystic fibrosis transmembrane conductance regulator (CFTR) in myosin VI-deficient Snell's Waltzer Myo6((sv/sv)) mice. Confocal microscopy and cell-surface biotinylation confirmed that surface levels of CFTR in the intestine of Myo6((sv/sv)) mice were markedly higher, and CFTR internalization from the apical plasma membrane was reduced compared with heterozygous controls. Consistent with a defect in CFTR endocytosis and accumulation at the cell surface, exaggerated CFTR-mediated fluid secretion was observed in Myo6((sv/sv)) mice following treatment of isolated jejunum with the cyclic GMP-activated heat stable enterotoxin. These data establish that myosin VI modulates apical endocytosis and may be an important physiological modulator of CFTR function and CFTR-associated secretory diarrhea in the gut."	"Myosin VI and VIIa distribution among inner ear epithelia in diverse fishes. Unconventional myosins are critical motor proteins in the vertebrate inner ear. Mutations in any one of at least six different myosins can lead to human hereditary deafness, but the precise functions of these proteins in the ear are unknown. This study uses a comparative approach to better understand the role of myosins VI and VIIa in vertebrate ears by examining protein distribution for these two myosins in the ears of evolutionarily diverse fishes and the aquatic clawed toad Xenopus laevis. Both myosins are expressed in the inner ears of all species examined in this study. Myo7a localizes to hair cells, particularly the actin-rich hair bundle, in all species studied. Myo6 also localizes to hair cells, but its distribution differs between species and end organs. Myo6 is found in hair bundles of most fish and frog epithelia examined here but not in anterior and posterior utricular hair bundles of American shad. These results show that myo7a distribution is highly conserved in diverse vertebrates and suggest functional conservation as well. The finding of myo6 in fish and Xenopus hair bundles, however, suggests a novel role for this protein in anamniotic hair cells. The lack of myo6 in specific American shad utricular hair bundles indicates a unique quality of these cells among fishes, perhaps relating to ultrasound detection capability that is found in this species."	"Binding of internalized receptors to the PDZ domain of GIPC/synectin recruits myosin VI to endocytic vesicles. Myosin VI (myo6) is the only actin-based molecular motor that translocates along actin filaments toward the minus end. Myo6 participates in two steps of endocytic trafficking; it is recruited to both clathrin-coated pits and to ensuing uncoated endocytic vesicles (UCV). Although there is evidence suggesting that the PDZ adaptor protein GIPC/synectin is involved in the association of myo6 with UCV, the recruitment mechanism is unknown. We show that GIPC/synectin is required for both internalization of cell surface receptors and for coupling of myo6 to UCV. This coupling occurs via a mechanism wherein engagement of the GIPC/synectin PDZ domain by C termini of internalized receptors facilitates in trans myo6 binding to the GIPC/synectin C terminus located outside of the PDZ domain. Analysis of megalin, a prototypical GIPC/synectin-binding receptor, revealed that deletion of its PDZ-binding motif drastically reduced GIPC/synectin and myo6 recruitment to UCV. Furthermore, interaction with GIPC/synectin was required for megalin's function, as megalin was mistargeted in the renal proximal tubules of GIPC/synectin-null mice and these mice exhibited proteinuria, a condition consistent with defective megalin trafficking."	"BDNF-mediated neurotransmission relies upon a myosin VI motor complex. Brain-derived neurotrophic factor (BDNF) has been implicated in higher-order cognitive functions and in psychiatric disorders such as depression and schizophrenia. BDNF modulates synaptic transmission and plasticity primarily through the TrkB receptor, but the molecules involved in BDNF-mediated synaptic modulation are largely unknown. Myosin VI (Myo6) is a minus end-directed actin-based motor found in neurons that express Trk receptors. Here we report that Myo6 and a Myo6-binding protein, GIPC1, form a complex that can engage TrkB. Myo6 and GIPC1 were necessary for BDNF-TrkB-mediated facilitation of long-term potentiation in postnatal day 12-13 (P12-13) hippocampus. Moreover, BDNF-mediated enhancement of glutamate release from presynaptic terminals depended not only upon TrkB but also upon Myo6 and GIPC1. Similar defects in basal synaptic transmission as well as presynaptic properties were observed in Myo6 and GIPC1 mutant mice. Together, these results define an important role for the Myo6-GIPC1 motor complex in presynaptic function and in BDNF-TrkB-mediated synaptic plasticity."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Modification of human hearing loss by plasma-membrane calcium pump PMCA2. Five adult siblings presented with autosomal recessive sensorineural hearing loss: two had high-frequency loss, whereas the other three had severe-to-profound loss affecting all frequencies. Genetic evaluation revealed that a homozygous mutation in CDH23 (which encodes cadherin 23) caused the hearing loss in all five siblings and that a heterozygous, hypofunctional variant (V586M) in plasma-membrane calcium pump PMCA2, which is encoded by ATP2B2, was associated with increased loss in the three severely affected siblings. V586M was detected in two unrelated persons with increased sensorineural hearing loss, in the other caused by a mutation in MYO6 (which encodes myosin VI) in one and by noise exposure, suggesting that this variant may modify the severity of sensorineural hearing loss caused by a variety of factors."	"A role for myosin VI in postsynaptic structure and glutamate receptor endocytosis. Myosin VI (Myo6) is an actin-based motor protein implicated in clathrin-mediated endocytosis in nonneuronal cells, though little is known about its function in the nervous system. Here, we find that Myo6 is highly expressed throughout the brain, localized to synapses, and enriched at the postsynaptic density. Myo6-deficient (Snell's waltzer; sv/sv) hippocampus exhibits a decrease in synapse number, abnormally short dendritic spines, and profound astrogliosis. Similarly, cultured sv/sv hippocampal neurons display decreased numbers of synapses and dendritic spines, and dominant-negative disruption of Myo6 in wild-type hippocampal neurons induces synapse loss. Importantly, we find that sv/sv hippocampal neurons display a significant deficit in the stimulation-induced internalization of alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionic acid-type glutamate receptors (AMPARs), and that Myo6 exists in a complex with the AMPAR, AP-2, and SAP97 in brain. These results suggest that Myo6 plays a role in the clathrin-mediated endocytosis of AMPARs, and that its loss leads to alterations in synaptic structure and astrogliosis."	"Novel association of hypertrophic cardiomyopathy, sensorineural deafness, and a mutation in unconventional myosin VI (MYO6). NA"	"Uncoated endocytic vesicles require the unconventional myosin, Myo6, for rapid transport through actin barriers. After clathrin-mediated endocytosis, clathrin removal yields an uncoated vesicle population primed for fusion with the early endosome. Here we present the first characterization of uncoated vesicles and show that myo6, an unconventional myosin, functions to move these vesicles out of actin-rich regions found in epithelial cells. Time-lapse microscopy revealed that myo6-associated uncoated vesicles were motile and exhibited fusion and stretching events before endosome delivery, processes that were dependent on myo6 motor activity. In the absence of myo6 motor activity, uncoated vesicles remained trapped in the actin mesh, where they exhibited Brownian-like motion. Exit from the actin mesh occurred by a slow diffusion-based mechanism, delaying transferrin trafficking to the early endosome. Expression of a myo6 mutant that bound tightly to F-actin produced immobilized vesicles and blocked trafficking. Depolymerization of the actin cytoskeleton rescued this block and specifically accelerated transferrin delivery to the early endosome without affecting earlier steps in endocytosis. Therefore actin is a physical barrier impeding uncoated vesicle trafficking, and myo6 is recruited to move the vesicles through this barrier for fusion with the early endosome."	"Myo15 function is distinct from Myo6, Myo7a and pirouette genes in development of cochlear stereocilia. The unconventional myosin genes Myo15, Myo6 and Myo7a are essential for hearing in both humans and mice. Despite the expression of each gene in multiple organs, mutations result in identifiable phenotypes only in auditory or ocular sensory organs. The pirouette (pi) mouse also exhibits deafness and an inner ear pathology resembling that of Myo15 mutant mice and thus may be functionally related to Myo15. In order to investigate possible interactions between Myo15 and Myo6, Myo7a, and the gene affected in pirouette, we crossed Myo15(sh2/sh2) mice to the three other mutant mouse strains. Hearing in doubly heterozygous mice was similar to age-matched singly heterozygous animals, indicating that partial deficiency for both Myo15 and one of these other deafness genes does not reduce hearing. Viable double mutants were obtained from each cross, indicating that potential overlapping functions between these genes in other organs are not essential for viability. All critical cell types of the cochlear sensory epithelium were present in double mutant mice and cochlear stereocilia exhibited a superimposition of single mutant phenotypes. These data suggest that the function of Myo15 is distinct from that of Myo6, Myo7a or pi in development and/or maintenance of stereocilia."	"Myo6 facilitates the translocation of endocytic vesicles from cell peripheries. Immunolocalization studies in epithelial cells revealed myo6 was associated with peripherally located vesicles that contained the transferrin receptor. Pulse-chase experiments after transferrin uptake showed that these vesicles were newly uncoated endocytic vesicles and that myo6 was recruited to these vesicles immediately after uncoating. GIPC, a putative myo6 tail binding protein, was also present. Myo6 was not present on early endosomes, suggesting that myo6 has a transient association with endocytic vesicles and is released upon early endosome fusion. Green fluorescent protein (GFP) fused to myo6 as well as the cargo-binding tail (M6tail) alone targeted to the nascent endocytic vesicles. Overexpression of GFP-M6tail had no effect on a variety of organelle markers; however, GFP-M6tail displaced the endogenous myo6 from nascent vesicles and resulted in a significant delay in transferrin uptake. Pulse-chase experiments revealed that transferrin accumulated in uncoated vesicles within the peripheries of transfected cells and that Rab5 was recruited to the surface of these vesicles. Given sufficient time, the transferrin did traffic to the perinuclear sorting endosome. These data suggest that myo6 is an accessory protein required for the efficient transportation of nascent endocytic vesicles from the actin-rich peripheries of epithelial cells, allowing for timely fusion of endocytic vesicles with the early endosome."	"Mutations of MYO6 are associated with recessive deafness, DFNB37. Cosegregation of profound, congenital deafness with markers on chromosome 6q13 in three Pakistani families defines a new recessive deafness locus, DFNB37. Haplotype analyses reveal a 6-cM linkage region, flanked by markers D6S1282 and D6S1031, that includes the gene encoding unconventional myosin VI. In families with recessively inherited deafness, DFNB37, our sequence analyses of MYO6 reveal a frameshift mutation (36-37insT), a nonsense mutation (R1166X), and a missense mutation (E216V). These mutations, along with a previously published missense allele linked to autosomal dominant progressive hearing loss (DFNA22), provide an allelic spectrum that probes the relationship between myosin VI dysfunction and the resulting phenotype."	"The roles of unconventional myosins in hearing and deafness. The proper expression and function of several unconventional myosins are necessary for inner-ear function. Mutations in MYO7A and MYO15 cause deafness in humans, and mice. Whereas mutations in Myo6 cause inner-ear abnormalities in mice, as yet no human deafness has been found to the result of mutations in MYO6. In the mammalian inner ear there are at least nine different unconventional myosin isozymes expressed. Myosin 1 beta, VI, VIIa and probably XV are all expressed within a single cell in the inner ear, the hair cell. The myosin isozymes expressed in the hair cell all have unique domains of expression and in some areas, such as the pericuticular necklace, several domains overlap. This suggests that these myosins all have unique functions and that all are individually targeted within the hair cell. The mouse is proving to be a useful model organism for studying both human deafness and elucidating the normal functions of unconventional myosins in vivo."	"MYO6, the human homologue of the gene responsible for deafness in Snell's waltzer mice, is mutated in autosomal dominant nonsyndromic hearing loss. Mutations in the unconventional myosin VI gene, Myo6, are associated with deafness and vestibular dysfunction in the Snell's waltzer (sv) mouse. The corresponding human gene, MYO6, is located on chromosome 6q13. We describe the mapping of a new deafness locus, DFNA22, on chromosome 6q13 in a family affected by a nonsyndromic dominant form of deafness (NSAD), and the subsequent identification of a missense mutation in the MYO6 gene in all members of the family with hearing loss."	"Genomic structure of the human unconventional myosin VI gene. Mutations in myosin VI (Myo6) cause deafness and vestibular dysfunction in Snell's waltzer mice. Mutations in two other unconventional myosins cause deafness in both humans and mice, making myosin VI an attractive candidate for human deafness. In this report, we refined the map position of human myosin VI (MYO6) by radiation hybrid mapping and characterized the genomic structure of myosin VI. Human myosin VI is composed of 32 coding exons, spanning a genomic region of approximately 70 kb. Exon 30, containing a putative CKII site, was found to be alternatively spliced and appears only in fetal and adult human brain. D6S280 and D6S284 flank the myosin VI gene and were used to screen hearing impaired sib pairs for concordance with the polymorphic markers. No disease-associated mutations were identified in twenty-five families screened for myosin VI mutations by SSCP analysis. Three coding single nucleotide polymorphisms (cSNPs) were identified in myosin VI that did not alter the amino acid sequence. Myosin VI mutations may be rare in the human deaf population or alternatively, may be found in a population not yet examined. The determination of the MYO6 genomic structure will enable screening of individuals with non-syndromic deafness, Usher's syndrome, or retinopathies associated with human chromosome 6q for mutations in this unconventional myosin."	"Unconventional myosins and the genetics of hearing loss. Mutations of the unconventional myosins genes encoding myosin VI, myosin VIIA and myosin XV cause hearing loss and thus these motor proteins perform fundamental functions in the auditory system. A null mutation in myosin VI in the congenitally deaf Snell's waltzer mice (Myo6(sv)) results in fusion of stereocilia and subsequent progressive loss of hair cells, beginning soon after birth, thus reinforcing the vital role of cytoskeletal proteins in inner ear hair cells. To date, there are no human families segregating hereditary hearing loss that show linkage to MYO6 on chromosome 6q13. The discovery that the mouse shaker1 (Myo7(ash1)) locus encodes myosin VIIA led immediately to the identification of mutations in this gene in Usher syndrome type 1B; subsequently, mutations in this gene were also found associated with recessive and dominant nonsyndromic hearing loss (DFNB2 and DFNA11). Stereocilla of sh1 mice are severely disorganized, and eventually degenerate as well. Myosin VIIA has been implicated in membrane trafficking and/or endocytosis in the inner ear. Mutant alleles of a third unconventional myosin, myosin XV, are associated with nonsyndromic, recessive, congenital deafness DFNB3 on human chromosome 17p11.2 and deafness in shaker2 (Myo15(sh2)) mice. In outer and inner hair cells, myosin XV protein is detectable in the cell body and stereocilia. Hair cells are present in homozygous sh2 mutant mice, but the stereocilia are approximately 1/10 of the normal length. This review focuses on what we know about the molecular genetics and biochemistry of myosins VI, VIIA and XV as relates to hereditary hearing loss. Am. J. Med. Genet. (Semin. Med. Genet.) 89:147-157, 1999. Published 2000 Wiley-Liss, Inc."	"Role of myosin VI in the differentiation of cochlear hair cells. The mouse mutant Snell's waltzer (sv) has an intragenic deletion of the Myo6 gene, which encodes the unconventional myosin molecule myosin VI (K. B. Avraham et al., 1995, Nat. Genet. 11, 369-375). Snell's waltzer mutants exhibit behavioural abnormalities suggestive of an inner ear defect, including lack of responsiveness to sound, hyperactivity, head tossing, and circling. We have investigated the effects of a lack of myosin VI on the development of the sensory hair cells of the cochlea in these mutants. In normal mice, the hair cells sprout microvilli on their upper surface, and some of these grow to form a crescent or V-shaped array of modified microvilli, the stereocilia. In the mutants, early stages of stereocilia development appear to proceed normally because at birth many stereocilia bundles have a normal appearance, but in places there are signs of disorganisation of the bundles. Over the next few days, the stereocilia become progressively more disorganised and fuse together. Practically all hair cells show fused stereocilia by 3 days after birth, and there is extensive stereocilia fusion by 7 days. By 20 days, giant stereocilia are observed on top of the hair cells. At 1 and 3 days after birth, hair cells of mutants and controls take up the membrane dye FM1-43, suggesting that endocytosis occurs in mutant hair cells. One possible model for the fusion is that myosin VI may be involved in anchoring the apical hair cell membrane to the underlying actin-rich cuticular plate, and in the absence of normal myosin VI this apical membrane will tend to pull up between stereocilia, leading to fusion."	"Characterization of unconventional MYO6, the human homologue of the gene responsible for deafness in Snell's waltzer mice. Deafness is the most common form of sensory impairment in humans. Mutations in unconventional myosins have been found to cause deafness in humans and mice. The mouse recessive deafness mutation, Snell's waltzer, contains an intragenic deletion in an unconventional myosin, myosin VI (locus designation, Myo6). The requirement for Myo6 for proper hearing in mice makes this gene an excellent candidate for a human deafness disorder. Here we report the cloning and characterization of the human unconventional myosin VI (locus designation, MYO6) cDNA. The MYO6 gene maps to human chromosome 6q13. The isolation of the human gene makes it now possible to determine if mutations in MYO6 contribute to the pathogenesis of deafness in the human population."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO7A"	"nonsyndromic genetic deafness"	"Spectrum of genetic variants in moderate to severe sporadic hearing loss in Pakistan. Hearing loss affects 380 million people worldwide due to environmental or genetic causes. Determining the cause of deafness in individuals without previous family history of hearing loss is challenging and has been relatively unexplored in Pakistan. We investigated the spectrum of genetic variants in hearing loss in a cohort of singleton affected individuals born to consanguineous parents. Twenty-one individuals with moderate to severe hearing loss were recruited. We performed whole-exome sequencing on DNA samples from the participants, which identified seventeen variants in ten known deafness genes and one novel candidate gene. All identified variants were homozygous except for two. Eleven of the variants were novel, including one multi-exonic homozygous deletion in OTOA. A missense variant in ESRRB was implicated for recessively inherited moderate to severe hearing loss. Two individuals were heterozygous for variants in MYO7A and CHD7, respectively, consistent with de novo variants or dominant inheritance with incomplete penetrance as the reason for their hearing loss. Our results indicate that similar to familial cases of deafness, variants in a large number of genes are responsible for moderate to severe hearing loss in sporadic individuals born to consanguineous couples."	"A new light chain for myosin-7. Recent research has revealed that an adhesion complex based on cadherins and the motor protein myosin-7b (MYO7B) links the tips of intestinal microvilli. Choi et al. now report that a largely uncharacterized protein known as calmodulin-like protein 4 (CALML4) is a component of this adhesion complex and functions as a light chain for myosin-7b. Because the intermicrovillar adhesion complex is homologous to the myosin-7a (MYO7A)-based Usher syndrome complex and Choi et al. also report that CALML4 can bind to myosin-7a, this work also has important implications for research on myosin-7a and hereditary deaf-blindness."	"Myosins and Hearing. Hearing loss is both genetically and clinically heterogeneous, and pathogenic variants of over a hundred different genes are associated with this common neurosensory disorder. A relatively large number of these &quot;deafness genes&quot; encode myosin super family members. The evidence that pathogenic variants of human MYO3A, MYO6, MYO7A, MYO15A, MYH14 and MYH9 are associated with deafness ranges from moderate to definitive. Additional evidence for the involvement of these six myosins for normal hearing also comes from animal models, usually mouse or zebra fish, where mutations of these genes cause hearing loss and from biochemical, physiological and cell biological studies of their roles in the inner ear. This chapter focuses on these six genes for which evidence of a causative role in deafness is substantial."	"The p.R206C Mutation in MYO7A Leads to Autosomal Dominant Nonsyndromic Hearing Loss. Dominant mutations in MYO7A may lead to nonsyndromic deafness DFNA11. A p.R206C variant in MYO7A has previously been reported in a small deaf family from Taiwan but with ambiguous pathogenicity and inheritance pattern. Our study aims to clarify the pathogenicity of this variant by clinical characterization and genetic analysis of a separate autosomal dominant deaf family harboring this variant in mainland China. Auditory features of hearing loss were characterized in representative affected family members. Mutation screening was performed by targeted next-generation sequencing of 138 known deafness genes in the proband. Candidate pathogenic mutations were confirmed by Sanger sequencing in family members and ethnically matched controls. Consistent with typical DFNA11 phenotype, the affected family members in this study showed delayed-onset, progressive hearing loss affecting mostly high frequencies. Targeted next-generation sequencing identified a p.R206C mutation in MYO7A as the only candidate pathogenic mutation cosegregating with the hearing phenotype. This mutation is not seen in 200 Chinese Han normal-hearing controls. The recurrent p.R206C variant in MYO7A is pathogenic and is likely in a mutation hot spot or due to a founder effect. Reports of such rare variants in multiple patients or families may facilitate exploitation of its pathogenicity."	"Myosin-VIIa is expressed in multiple isoforms and essential for tensioning the hair cell mechanotransduction complex. Mutations in myosin-VIIa (MYO7A) cause Usher syndrome type 1, characterized by combined deafness and blindness. MYO7A is proposed to function as a motor that tensions the hair cell mechanotransduction (MET) complex, but conclusive evidence is lacking. Here we report that multiple MYO7A isoforms are expressed in the mouse cochlea. In mice with a specific deletion of the canonical isoform (Myo7a-ΔC mouse), MYO7A is severely diminished in inner hair cells (IHCs), while expression in outer hair cells is affected tonotopically. IHCs of Myo7a-ΔC mice undergo normal development, but exhibit reduced resting open probability and slowed onset of MET currents, consistent with MYO7A's proposed role in tensioning the tip link. Mature IHCs of Myo7a-ΔC mice degenerate over time, giving rise to progressive hearing loss. Taken together, our study reveals an unexpected isoform diversity of MYO7A expression in the cochlea and highlights MYO7A's essential role in tensioning the hair cell MET complex."	"Comprehensive molecular analysis of 61 Egyptian families with hereditary nonsyndromic hearing loss. Nonsyndromic hearing loss is an extremely heterogeneous disorder. Thus, clinical diagnostics is challenging, in particular due to differences in the etiology of hearing loss between populations. With this study, we wanted to elucidate the genetic basis of hearing loss in 61 consanguineous Egyptian families. In 25 families, linkage analysis was used as a prescreening to identify regions for targeted sequencing of candidate genes. Initially, the coding regions of 12 and later of 94 genes associated with hearing loss were enriched and subjected to massively parallel sequencing (MPS) with diagnostic yields of 36% and 75%, respectively. Causative variants were identified in 48 families (79%). They were found in 23 different genes with the majority being located in MYO15A (15.3%), SLC26A4 (9.7%), GJB2 (8.3%), and MYO7A (6.4%). As many as 32 variants were novel ones at the time of detection. Five variants were shared by two, three, or even four families. Our study provides a first survey of the mutational spectrum of deaf patients in Egypt revealing less GJB2 variants than in many European populations. It underlines the value of targeted enrichment of well-selected deafness genes in combination with MPS in the diagnostics of this frequent and genetically heterogeneous disorder."	"[Clinical phenotype and genotype analysis of the family with the Usher syndrome]. To detect potential variants in a family affected with Usher syndrome type I, and analyze its genotype-phenotype correlation. Clinical data of the family was collected. Potential variants in the proband were detected by high-throughput sequencing. Suspected variants were verified by Sanger sequencing. The proband developed night blindness at 10 year old, in addition with bilateral cataract and retinal degeneration. Hearing loss occurred along with increase of age. High-throughput sequencing and Sanger sequencing revealed that she has carried compound heterozygous variants of the MYO7A gene, namely c.2694+2T&gt;G and c.6028G&gt;A. Her sister carried the same variants with similar clinical phenotypes. Her daughter was heterozygous for the c.6028G&gt;A variant but was phenotypically normal. The clinical features and genetic variants were delineated in this family with Usher syndrome type I. The results have enriched the phenotype and genotype data of the disease and provided a basis for genetic counseling."	"Characterization of the transcriptomes of Atoh1-induced hair cells in the mouse cochlea. Postnatal mammalian cochlear hair cells (HCs) can be regenerated by direct transdifferentiation or by mitotic regeneration from supporting cells through many pathways, including Atoh1, Wnt, Hedgehog and Notch signaling. However, most new HCs are immature HCs. In this study we used RNA-Seq analysis to compare the differences between the transcriptomes of Atoh1 overexpression-induced new HCs and the native HCs, and to define the factors that might help to promote the maturation of new HCs. As expected, we found Atoh1-induced new HCs had obvious HC characteristics as demonstrated by the expression of HC markers such as Pou4f3 and Myosin VIIA (Myo7a). However, Atoh1-induced new HCs had significantly lower expression of genes that are related to HC function such as Slc26a5 (Prestin), Slc17a8 and Otof. We found that genes related to HC cell differentiation and maturation (Kcnma1, Myo6, Myo7a, Grxcr1, Gfi1, Wnt5a, Fgfr1, Gfi1, Fgf8 etc.) had significantly lower expression levels in new HCs compared to native HCs. In conclusion, we found a set of genes that might regulate the differentiation and maturation of new HCs, and these genes might serve as potential new therapeutic targets for functional HC regeneration and hearing recovery."	"Genetic testing has the potential to impact hearing preservation following cochlear implantation. Background: Recent advances in less-invasive surgery and electrode design allow for a high degree of hearing preservation (HP) after cochlear implantation (CI), although residual hearing still deteriorates in some patients. To date, the factors predictive of preserving residual hearing remain a controversial topic.Objective: The aim of this study was to investigate the predictive factors, including the etiology of hearing loss (HL) as a patient-related factor, influencing residual HP after CI.Methods: Forty-four patients (50 ears, 41 families) with residual acoustic hearing who underwent CI were included. Auditory thresholds before and at 6 months after initial activation were measured. Genetic testing was performed to identify the responsible genes for HL.Results: We identified the cause of HL in 21 families (51.2%). HP was marginally correlated with age at implantation, while it was independent of pre-operative low-frequency hearing thresholds, cochlear duct length, and electrode length. We found that patients who had pathogenic variants in the CDH23, MYO7A, or MYO15A gene showed statistically better HP scores compared with patients with HL due to other causes (p = .002).Conclusions: Identification of the etiology of HL using genetic testing is likely to facilitate the prediction of HP after implant surgery."	"Clinical Profiles of DFNA11 at Diverse Stages of Development and Aging in a Large Family Identified by Linkage Analysis. The phenotype of DFNA11 consists of specific features at diverse developmental and age stages. Only eight mutations have been identified for autosomal dominant non-syndromic hearing loss related to MYO7A (DFNA11), and the onset and progression of DFNA11 are poorly understood. After linkage analysis and following Sanger sequencing in a family suspected to have autosomal dominant hereditary hearing loss, we analyzed the audiometric and vestibular functions and their long-term changes in the subjects carrying the variant. A reported variant of uncertain significance, NP_000251.3:p.Arg853His, in MYO7A was detected and cosegregation data of this large family provided evidence that the variant was likely pathogenic for DFNA11. Family members with the variant had no other symptoms associated with hearing loss and were confirmed to have autosomal dominant non-syndromic sensorineural hearing loss. Audiograms tended to show gently sloping configuration in childhood and flat configuration after the age of 30 years. Hearing loss at high frequencies progressed slowly, while hearing at low frequencies started to deteriorate later but progressed more rapidly. Some subjects showed partly abnormal results in the distortion products of otoacoustic emissions before the elevation of hearing thresholds. Vestibular function was within the normal range in all the subjects tested. We revealed that hearing loss at high frequencies was mainly noted in early developmental stages and that thresholds increased more rapidly in the low frequency range, resulting in changes in audiometric configuration. Deterioration of distortion product otoacoustic emissions (DPOAE) before the elevation of hearing thresholds was considered as a clinical feature of DFNA11."	"Investigation of MYO15A and MYO7A Mutations in Iranian Patients with Nonsyndromic Hearing Loss. Background: Hearing loss (HL) is the most common sensory disorder in humans, which affects individuals in both inherited and acquired forms. MYO15A and MYO7A gene mutations have a significant role in the development of deafness. In this study, we assessed the prevalence of MYO15A and MYO7A mutations in one hundred non-relative deaf Iranians. Materials and methods: The existence of MYO15A and MYO7A mutations were assessed using the tetra-primer ARMS-PCR method, High Resolution Melting (HRM) and sequencing method. Results: A heterozygote missense mutation, p.V2135L (c.6403G &gt; T) in the MYO15A gene, was found in a patient using the sequencing method. Conclusion: These results explain the negligible prevalence of selected mutations among Iranian patients. Identifying common mutations in patients of an ethnic group can reduce the financial costs and time needed for identifying the causes of deafness."	"Progress in treating inherited retinal diseases: Early subretinal gene therapy clinical trials and candidates for future initiatives. Due to improved phenotyping and genetic characterization, the field of 'incurable' and 'blinding' inherited retinal diseases (IRDs) has moved substantially forward. Decades of ascertainment of IRD patient data from Philadelphia and Toronto centers illustrate the progress from Mendelian genetic types to molecular diagnoses. Molecular genetics have been used not only to clarify diagnoses and to direct counseling but also to enable the first clinical trials of gene-based treatment in these diseases. An overview of the recent reports of gene augmentation clinical trials by subretinal injections is used to reflect on the reasons why there has been limited success in this early venture into therapy. These first-in human experiences have taught that there is a need for advancing the techniques of delivery of the gene products - not only for refining further subretinal trials, but also for evaluating intravitreal delivery. Candidate IRDs for intravitreal gene delivery are then suggested to illustrate some of the disorders that may be amenable to improvement of remaining central vision with the least photoreceptor trauma. A more detailed understanding of the human IRDs to be considered for therapy and the calculated potential for efficacy should be among the routine prerequisites for initiating a clinical trial."	"Post-lingual non-syndromic hearing loss phenotype: a polygenic case with 2 biallelic mutations in MYO15A and MITF. Hearing loss (HL) represents the most common congenital sensory impairment with an incidence of 1-5 per 1000 live births. Non-syndromic hearing loss (NSHL) is an isolated finding that is not part of any other disorder accounting for 70% of all genetic hearing loss cases. In the current study, we reported a polygenic mode of inheritance in an NSHL consanguineous family using exome sequencing technology and we evaluated the possible effect of the detected single nucleotide variants (SNVs) using in silico methods. Two bi-allelic SNVs were detected in the affected patients; a MYO15A (. p.V485A) variant, and a novel MITF (p.P338L) variant. Along with these homozygous mutations, we detected two heterozygous variants in well described hearing loss genes (MYO7A and MYH14). The novel MITF p. Pro338Leu missense mutation was predicted to change the protein structure and function. A novel MITF mutation along with a previously described MYO15A mutation segregate with an autosomal recessive non-syndromic HL case with a post-lingual onset. The findings highlight the importance of carrying whole exome sequencing for a comprehensive assessment of HL genetic heterogeneity."	"Brief Report of Variants Detected in Hereditary Hearing Loss Cases in Iran over a 3-Year Period. Diagnosis of hereditary hearing loss (HHL) as a heterogeneous disorder is very important especially in countries with high rates of consanguinity where the autosomal recessive pattern of inheritance is prevalent. Techniques such as next-generation sequencing, a comprehensive genetic test using targeted genomic enrichment and massively parallel sequencing (TGE + MPS), have made the diagnosis more cost-effective. The aim of this study was to determine HHL variants with comprehensive genetic testing in our country. Fifty GJB2 negative individuals with HHL were referred to the Kariminejad-Najmabadi Pathology and Genetics Center, Tehran, one of the reference diagnostic genetic laboratories in Iran, during a 3-year period between 2014 and 2017. They were screened with the OtoSCOPE test, the targeted genomic enrichment and massively parallel sequencing (TGE + MPS) platform after a detailed history had been taken along with clinical evaluation. Among 32 out of 50 GJB2 negative patients (64%), 34 known pathogenic and novel variants were detected of which 16 (47%) were novel, identified in 10 genes of which the most prevalent were CDH23, MYO7A and MYO15A. These results provide a foundation from which to make appropriate recommendations for the use of comprehensive genetic testing in the evaluation of Iranian patients with hereditary hearing loss."	"A Novel Mouse Model of MYO7A USH1B Reveals Auditory and Visual System Haploinsufficiencies. Usher's syndrome is the most common combined blindness-deafness disorder with USH1B, caused by mutations in MYO7A, resulting in the most severe phenotype. The existence of numerous, naturally occurring shaker1 mice harboring variable MYO7A mutations on different genetic backgrounds has complicated the characterization of MYO7A knockout (KO) and heterozygote mice. We generated a novel MYO7A KO mouse (Myo7a<sup>-</sup> <sup>/</sup> <sup>-</sup>) that is easily genotyped, maintained, and confirmed to be null for MYO7A in both the eye and inner ear. Like USH1B patients, Myo7a<sup>-</sup> <sup>/</sup> <sup>-</sup> mice are profoundly deaf, and display near complete loss of inner and outer cochlear hair cells (HCs). No gross structural changes were observed in vestibular HCs. Myo7a<sup>-</sup> <sup>/</sup> <sup>-</sup> mice exhibited modest declines in retinal function but, unlike patients, no loss of retinal structure. We attribute the latter to differential expression of MYO7A in mouse vs. primate retina. Interestingly, heterozygous Myo7a<sup>+</sup> <sup>/</sup> <sup>-</sup> mice had reduced numbers of cochlear HCs and concomitant reductions in auditory function relative to Myo7a<sup>+/+</sup> controls. Notably, this is the first report that loss of a single Myo7a allele significantly alters auditory structure and function and suggests that audiological characterization of USH1B carriers is warranted. Maintenance of vestibular HCs in Myo7a<sup>-</sup> <sup>/</sup> <sup>-</sup> mice suggests that gene replacement could be used to correct the vestibular dysfunction in USH1B patients. While Myo7a<sup>-</sup> <sup>/</sup> <sup>-</sup> mice do not exhibit sufficiently robust retinal phenotypes to be used as a therapeutic outcome measure, they can be used to assess expression of vectored MYO7A on a null background and generate valuable pre-clinical data toward the treatment of USH1B."	"Paired measurements of cochlear function and hair cell count in Dutch-belted rabbits with noise-induced hearing loss. The effects of noise-induced hearing loss have yet to be studied for the Dutch-belted strain of rabbits, which is the only strain that has been used in studies of the central auditory system. We measured auditory brainstem responses (ABRs), 2f1-f2 distortion product otoacoustic emissions (DPOAEs), and counts of cochlear inner and outer hair cells (IHCs and OHCs, respectively) from confocal images of Myo7a-stained cochlear whole-mounts in unexposed and noise-overexposed, Dutch-belted, male and female rabbits in order to characterize cochlear function and structure under normal-hearing and hearing-loss conditions. Using an octave-band noise exposure centered at 750 Hz presented under isoflurane anesthesia, we found that a sound level of 133 dB SPL for 60 min was minimally sufficient to produce permanent ABR threshold shifts. Overexposure durations of 60 and 90 min caused median click-evoked ABR threshold shifts of 10 and 50 dB, respectively. Susceptibility to overexposure was highly variable across ears, but less variable across test frequencies within the same ear. ABR and DPOAE threshold shifts were smaller, on average, and more variable in male than female ears. Similarly, post-exposure survival of OHCs was higher, on average, and more variable in male than female ears. We paired post-exposure ABR and DPOAE threshold shift data with hair cell count data measured in the same ear at the same frequency and cochlear frequency location. ABR and DPOAE threshold shifts exhibited critical values of 46 and 18 dB, respectively, below which the majority of OHCs and IHCs survived and above which OHCs were wiped out while IHC survival was variable. Our data may be of use to researchers who wish to use Dutch-belted rabbits as a model for the effects of noise-induced hearing loss on the central auditory system."	"Alteration of Musashi1 Intra-cellular Distribution During Regeneration Following Gentamicin-Induced Hair Cell Loss in the Guinea Pig Crista Ampullaris. The mechanism underlying hair cell (HC) regeneration in the mammalian inner ear is still under debate. Understanding what molecules regulate the HC regeneration in mature mammals will be the key to the treatment of the inner ear disorder. Musashi1 (MSI1) is an RNA binding protein associated with asymmetric division and maintenance of stem cell function as a modulator of the Notch-1 signaling pathway. In this study, we investigated the cellular proliferative activity and changes in spatiotemporal pattern of MSI1 expression in the gentamicin (GM)-treated crista ampullaris (CA) in guinea pigs. Although the vestibular HCs in the CA almost disappeared at 14 days after injecting GM in the inner ear, the density of vestibular HCs spontaneously increased by up to 50% relative to controls at 56 days post-GM treatment (PT). The number of the type II HCs was significantly increased at 28 days PT relative to 14 days PT (p &lt; 0.01) while that of type I HCs or supporting cells (SCs) did not change. The number of SCs did not change through the observational period. Administration of bromodeoxyuridine with the same GM treatment showed that the cell proliferation activity was high in SCs between 14 and 28 days PT. The changes in spatiotemporal patterns of MSI1 expression during spontaneous HC regeneration following GM treatment showed that MSI1-immunoreactivity was diffusely spread into the cytoplasm of the SCs during 7-21 days PT whereas the expression of MSI1 was confined to the nucleus of SCs in the other period. The MSI1/MYO7A double-positive cells were observed at 21 days PT. These results suggest that regeneration of vestibular HCs might originate in the asymmetric cell division and differentiation of SCs and that MSI1 might be involved in controlling the process of vestibular HC regeneration."	"Myosin VII, USH1C, and ANKS4B or USH1G Together Form Condensed Molecular Assembly via Liquid-Liquid Phase Separation. Hair cell stereocilia tip-links function to sense mechanical forces generated by sound waves and maintain the structure of stereocilia by rooting the tail of cadherins to highly dense structures known as tip-link densities. Although the molecular components are largely known, the mechanisms underlying the tip-link density formation are unknown. Here, we show that Myosin VIIB (MYO7B), USH1C, and ANKS4B, which form a specific complex stabilizing tip-links in intestine microvilli, could form dense condensates via liquid-liquid phase separation in vitro and in cells. The MYO7A, USH1C, and USH1G complex also undergoes phase separation in cells. Formation of the MYO7A/USH1C/USH1G and MYO7B/USH1C/ANKS4B condensates requires strong and multivalent interactions between proteins in both tripartite complexes. Point mutations of MYO7A found in Usher syndrome patients weaken or even disrupt the multivalent interactions of the MYO7A/USH1C/USH1G complex and impair its phase separation. Thus, the stereocilia tip-link densities may form via phase separation of the MYO7A/USH1C/USH1G complex."	"[Analysis of MYO7A gene mutation in a family with non-syndromic autosomal recessive deafness]. To explore the genetic basis for a family with non-syndromic autosomal recessive deafness. The proband and her parents were subjected to physical and audiological examinations. With genomic DNA extracted from peripheral blood samples, next-generation sequencing was carried out using a panel for deafness genes. Suspected mutation was validated by Sanger sequencing and qPCR analysis of her parents. The proband presented bilateral severe sensorineural hearing loss at three days after birth. Her auditory threshold was 110-120 dBnHL but with absence of vestibular and retinal symptoms. Her brother also had deafness but her parents were normal. No abnormality was found upon physical examination of her family members, while audiological examination showed no middle ear or retrocochlear diseases. Next-generation sequencing identified compound heterozygous mutations of the MYO7A gene, including a previously known c.462C&gt;A (p. Cys154Ter) and a novel EX43_46 Del, which were respectively derived from her mother and father. The compound heterozygous mutations of the MYO7A gene probably underlie the disease in this family. Our findings has enriched the mutation spectrum for non-syndromic autosomal recessive deafness 2."	"Whole-exome sequencing identifies rare pathogenic and candidate variants in sporadic Chinese Han deaf patients. Genetic causes of hearing loss are highly heterogeneous and often ethnically specific. In recent years, a variety of next-generation sequencing (NGS) panels have been developed to target deafness-causative genes. Whole-exome sequencing (WES), on the other hand, was rarely used for genetic testing for deafness. In this study, we performed WES in 38 sporadic Chinese Han deaf patients who have been pre-excluded for mutations in common deafness genes GJB2, SLC26A4 and MT-RNR1. Non-synonymous variants have been filtered based on their minor allele frequencies in public databases and ethnically matched controls. Bi-allelic pathogenic mutations in eight deafness genes, OTOF, TRIOBP, ESPN, HARS2, CDH23, MYO7A, USH1C and TJP2, were identified in 10 patients, with 17 mutations identified in this study not being associated with deafness previously. For the rest 28 patients, possibly bi-allelic rare non-synonymous variants in an averaged 4.7 genes per patient were identified as candidate pathogenic causes for future analysis. Our study showed that WES may provide a unified platform for genetic testing of deafness and enables retro-analyzing when new causative genes are revealed."	"PHENOTYPIC CHARACTERISTICS OF ROD-CONE DYSTROPHY ASSOCIATED WITH MYO7A MUTATIONS IN A LARGE FRENCH COHORT. To document the rod-cone dystrophy phenotype of patients with Usher syndrome type 1 (USH1) harboring MYO7A mutations. Retrospective cohort study of 53 patients (42 families) with biallelic MYO7A mutations who underwent comprehensive examination, including functional visual tests and multimodal retinal imaging. Genetic analysis was performed either using a multiplex amplicon panel or through direct sequencing. Data were analyzed with IBM SPSS Statistics software v. 21.0. Fifty different genetic variations including 4 novel were identified. Most patients showed a typical rod-cone dystrophy phenotype, with best-corrected visual acuity and central visual field deteriorating linearly with age. At age 29, binocular visual field demonstrated an average preservation of 50 central degrees, constricting by 50% within 5 years. Structural changes based on spectral domain optical coherence tomography, short wavelength autofluorescence, and near-infrared autofluorescence measurements did not however correlate with age. Our study revealed a higher percentage of epiretinal membranes and cystoid macular edema in patients with MYO7A mutations compared with rod-cone dystrophy patients with other mutations. Subgroup analyses did not reveal substantial genotype-phenotype correlations. To the best of our knowledge, this is the largest French cohort of patients with MYO7A mutations reported to date. Functional visual characteristics of this subset of patients followed a linear decline as in other typical rod-cone dystrophy, but structural changes were variable indicating the need for a case-by-case evaluation for prognostic prediction and choice of potential therapies."	"Frizzled-9+ Supporting Cells Are Progenitors for the Generation of Hair Cells in the Postnatal Mouse Cochlea. Lgr5+ cochlear supporting cells (SCs) have been reported to be hair cell (HC) progenitor cells that have the ability to regenerate HCs in the neonatal mouse cochlea, and these cells are regulated by Wnt signaling. Frizzled-9 (Fzd9), one of the Wnt receptors, has been reported to be used to mark neuronal stem cells in the brain together with other markers and mesenchymal stem cells from human placenta and bone marrow. Here we used Fzd9-CreER mice to lineage label and trace Fzd9+ cells in the postnatal cochlea in order to investigate the progenitor characteristic of Fzd9+ cells. Lineage labeling showed that inner phalangeal cells (IPhCs), inner border cells (IBCs), and third-row Deiters' cells (DCs) were Fzd9+ cells, but not inner pillar cells (IPCs) or greater epithelial ridge (GER) cells at postnatal day (P)3, which suggests that Fzd9+ cells are a much smaller cell population than Lgr5+ progenitors. The expression of Fzd9 progressively decreased and was too low to allow lineage tracing after P14. Lineage tracing for 6 days in vivo showed that Fzd9+ cells could also generate similar numbers of new HCs compared to Lgr5+ progenitors. A sphere-forming assay showed that Fzd9+ cells could form spheres after sorting by flow cytometry, and when we compared the isolated Fzd9+ cells and Lgr5+ progenitors there were no significant differences in sphere number or sphere diameter. In a differentiation assay, the same number of Fzd9+ cells could produce similar amounts of Myo7a+ cells compared to Lgr5+ progenitors after 10 days of differentiation. All these data suggest that the Fzd9+ cells have a similar capacity for proliferation, differentiation, and HC generation as Lgr5+ progenitors and that Fzd9 can be used as a more restricted marker of HC progenitors."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Novel compound heterozygous mutations in OCA2 gene associated with non-syndromic oculocutaneous albinism in a Chinese Han patient: a case report. Oculocutaneous albinism (OCA) is a group of rare genetically heterogeneous disorders. The present study aimed to identify the genetic cause of a Chinese Han family with non-syndromic oculocutaneous albinism (OCA). Here, we report an 11-month-old male proband from a Chinese Han non-consanguineous family, who presented with milky skin, yellow white hair, nystagmus, astigmatism, and hypermetropia. We performed the targeted next-generation sequencing (NGS) on the proband and identified two novel compound heterozygous variants (c.1865 T &gt; C (p.Leu622Pro) and exons 17-21 deletion) in OCA2 gene associated with OCA type 2 (OCA2, OMIM 203200). Meanwhile, a previously reported heterozygous mutation (c.4805G &gt; A) in MYO7 gene related with Usher syndrome type 1B was found. The online tools SIFT, PolyPhen-2, and Mutation Taster predicted variant c.1865 T &gt; C was probably damaging. The residue p.Leu622 was in a highly conserved region among species by CLUSTALW. Three-dimensional homology model with I-TASSER indicated that p.Leu622Pro variant disturbed the formation of the α-helix, resulting in a random coil structure. The gross deletion (exons 17-21) in OCA2 gene has was not been reported previously. These two novel variants in OCA2 gene were inherited from each parent respectively, after verification by Sanger sequencing and quantitative PCR (qPCR) in the family. This study indicates the two novel compound heterozygous mutations in OCA2 gene may be responsible for clinical manifestations of OCA2. It expands the mutation spectrum of OCA2 gene and is helpful to screen for large deletions with targeted NGS protocol in monogenic disease. It also assists the genetic counselling, carrier screening and personalized healthcare of the disease."	"Retinal findings in pediatric patients with Usher syndrome Type 1 due to mutations in MYO7A gene. To describe retinal alterations detected by swept-source optical coherence tomography (SS-OCT) in paediatric patients with Usher syndrome type 1 (USH1) and to compare these findings to previously published reports. Thirty-two eyes from 16 patients (11 males and 5 females) with a genetic diagnosis of USH1 because of MYO7A mutations underwent SS-OCT. Patients ranged in age from 4 to 17 years (mean, 11,13 ± 4,29). The subfoveal and macular area were analysed with SS-OCT at 1050 nm using 12 radial scans of 12.0 mm. Structural abnormalities were evaluated and correlated with best-corrected visual acuity (BCVA). The most common qualitative retinal abnormality was external layer damage in macular area. Specific alterations included external limiting membrane loss/disruption (27 eyes; 84.4%), disruption of the Myoid zone (27 eyes; 84.4%); Ellipsoid zone disruption (28 eyes; 87.5%), and loss of the outer segments (29 eyes; 90.6%). The damage of the retinal pigment epithelium was divided according to the loss of the different layers: phagosome zone (30 eyes; 93.8%), melanosome zone (29 eyes; 90.6%) and mitochondria zone (0 eyes; 0%). The presence of cystoid macular oedema (CMO) was significantly correlated with alterations in photoreceptors. Disruption or absence of the myoid and ellipsoid zones of the photoreceptors were the only variables independently associated with decreased BCVA. The findings of this study suggest that the physiopathologic basis of early-stage Usher syndrome (USH) may be changes in the outer retinal layer, particularly the photoreceptors, which in turn may cause alterations-such as CMO-in the inner retinal layers. Accordingly, monitoring the condition of photoreceptors during follow-up may be advisable for the early detection of pathologic changes."	"Characterisation of microvascular abnormalities using OCT angiography in patients with biallelic variants in USH2A and MYO7A. Using optical coherence tomography angiography (OCTA) to characterise microvascular changes in the retinal plexuses and choriocapillaris (CC) of patients with MYO7A and USH2A mutations and correlate with genotype, retinal structure and function. Twenty-seven patients with molecularly confirmed USH2A (n=21) and MYO7A (n=6) mutations underwent macular 6×6 mm OCTA using the AngioVue. Heidelberg spectral-domain OCT scans and MAIA microperimetry were also performed, the preserved ellipsoid zone (EZ) band width and mean macular sensitivity (MS) were recorded. OCTA of the inner retina, superficial capillary plexus (SCP), deep capillary plexus (DCP) and CC were analysed. Vessel density (VD) was calculated from the en face OCT angiograms of retinal circulation. Forty-eight eyes with either USH2A (n=37, mean age: 34.4±12.2 years) or MYO7A (n=11, mean age: 37.1±12.4 years), and 35 eyes from 18 age-matched healthy participants were included. VD was significantly decreased in the retinal circulation of patients with USH2A and MYO7A mutations compared with controls (p&lt;0.001). Changes were observed in both the SCP and DCP, but no differences in retinal perfusion were detected between USH2A and MYO7A groups. No vascular defects were detected in CC of the USH2A group, but peripheral defects were detected in older MYO7A patients from the fourth decade of life. VD in the DCP showed strong association with MS and EZ width (Spearman's rho =0.64 and 0.59, respectively, p&lt;0.001). OCTA was able to detect similar retinal microvascular changes in patients with USH2A and MYO7A mutations. The CC was generally affected in MYO7A mutations. OCT angiography may further enhance our understanding of inherited eye diseases and their phenotype-genotype associations."	"Genetic Screening of the Usher Syndrome in Cuba. Usher syndrome (USH) is a recessive inherited disease characterized by sensorineural hearing loss, retinitis pigmentosa, and sometimes, vestibular dysfunction. Although the molecular epidemiology of Usher syndrome has been well studied in Europe and United States, there is a lack of studies in other regions like Africa or Central and South America. We designed a NGS panel that included the 10 USH causative genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, ADGRV1, WHRN, and CLRN1), four USH associated genes (HARS, PDZD7, CEP250, and C2orf71), and the region comprising the deep-intronic c.7595-2144A&gt;G mutation in USH2A. NGS sequencing was performed in 11 USH patients from Cuba. All the cases were solved. We found the responsible mutations in the USH2A, ADGRV1, CDH23, PCDH15, and CLRN1 genes. Four mutations have not been previously reported. Two mutations are recurrent in this study: c.619C&gt;T (p.Arg207<sup>∗</sup>) in CLRN1, previously reported in two unrelated Spanish families of Basque origin, and c.4488G&gt;C (p.Gln1496His) in CDH23, first described in a large Cuban family. Additionally, c.4488G&gt;C has been reported two more times in the literature in two unrelated families of Spanish origin. Although the sample size is very small, it is tempting to speculate that the gene frequencies in Cuba are distinct from other populations mainly due to an &quot;island effect&quot; and genetic drift. The two recurrent mutations appear to be of Spanish origin. Further studies with a larger cohort are needed to elucidate the real genetic landscape of Usher syndrome in the Cuban population."	"Insulin Receptor and Glucose Transporters in the Mammalian Cochlea. Insulin receptors are expressed on nerve cells in the mammalian brain, but little is known about insulin signaling and the expression of the insulin receptor (IR) and glucose transporters in the cochlea. We performed immunohistochemistry and gene/protein expression analysis to characterize the expression pattern of the IR and glucose transporters in the mouse organ of Corti (OC). We also performed glucose uptake assays to explore the action of insulin and the effects of pioglitazone, an insulin sensitizer, on glucose transport in the OC. Western blots of protein extracts from OCs showed high expression of IR and glucose transporter 3 (GLUT3). Immunohistochemistry demonstrated that the IR is specifically expressed in the supporting cells of the OC. GLUT3 was found in outer and inner hair cells, in the basilar membrane (BM), the stria vascularis (SV), Reissner's membrane and spiral ganglion neurons (SGN). Glucose transporter 1 (GLUT1) was detected at low levels in the BM, SV and Reissner's membrane, and showed high expression in the SGN. Fluorescence glucose uptake assays revealed that hair cells take up glucose and that addition of insulin (10 nM or 1 µM) approximately doubled the rate of uptake. Pioglitazone conferred a small but nonsignificant potentiation of glucose uptake at the highest concentration of insulin. Gene expression analysis confirmed expression of IR, GLUT1 and GLUT3 mRNA in the OC. Pioglitazone significantly upregulated IR and GLUT1 mRNA expression, which was further increased by insulin. Together, these data show that insulin-stimulated glucose uptake occurs in the OC and may be associated with upregulation of both the IR and GLUT1."	"A missense mutation in MYO7A is associated with bilateral deafness and vestibular dysfunction in the Doberman pinscher breed. Bilateral deafness with concurrent vestibular dysfunction was first reported in the Doberman pinscher in 1980. Here, we identify a coding mutation in the MYO7A gene that is perfectly associated with the disorder. The lack of visual deficits in affected dogs suggests that, like rodents but unlike humans, MYO7A is not required for retinal function. DNA testing of the mutation will enable dog breeders to manage the incidence of this genetic defect. La surdité bilatérale avec dysfonctionnement vestibulaire concomitant a été rapporté pour la première fois chez le Doberman pinscher en 1980. Ici nous identifions une mutation codante dans le gène MYO7A qui est associée parfaitement avec cette condition. L’absence de défaut rétinien chez les chiens atteints suggère que, comme chez les rongeurs mais contrairement aux humains, MYO7A n’est pas requis pour la fonction rétinienne. Les tests d’ADN pour la mutation vont permettre aux éleveurs de chiens de gérer l’incidence de ce défaut génétique.(Traduit par Docteur Serge Messier)."	"Detecting novel mutations and combined Klinefelter syndrome in Usher syndrome cases. Usher syndrome (USH) is an autosomal recessive disease characterized by hearing loss, vision loss, and occasionally vestibular dysfunction. Klinefelter syndrome (KS) is an X chromosome polyploidy characterized by one or more additional X chromosomes in males. To date, there has been no report of USH combined with KS. This study examined the causative genes in three Chinese probands with congenital hearing loss. Targeted next-generation sequencing (NGS) was performed to identify mutations in three probands with hearing loss. Low-coverage whole-genome sequencing (WGS) analysis of aneuploidy was used to verify the chromosome aneuploidy. Four novel MYO7A mutations were identified in two USH1 probands who were initially diagnosed with nonsyndromic hearing loss until the onset of vision loss. Another case was initially diagnosed with nonsyndromic hearing loss and USH2 and KS were discovered incidentally after the genetic analysis. Our findings expand the mutation spectrum of MYO7A. This is also the first report of concomitant USH and KS. Genetic testing can help with clinical management, particularly if an unrecognized syndromic disorder is identified before the onset of additional symptoms. A clinical genetic evaluation is recommended as part of the diagnostic work-up in congenital hearing loss."	"Novel deleterious mutation in MYO7A, TH and EVC2 in two Pakistani brothers with familial deafness. In Pakistan, 74% of consanguineous marriages are among the first cousins. Continuity of consanguineous marriages over generations increases the risk of recessive diseases such as deafness. The objective of this study was to investigate genetic origin of Pakistani deaf brothers with parents of consanguineous marriage. DNA was extracted from the blood through Qiagen kit. Paired-end sequencing library was prepared according to protocol of Illumina's TruSight Rapid Capture kit and TruSight Inherited Disease Panel. Library was normalized and used for Next Generation Sequencing through MiSeq. NGS data were analyzed using various bioinformatics tools. Both brothers were found to have novel deleterious mutation in MYO7A (c.2476G&gt;A) while the younger brother had additional novel deleterious mutation in TH (c.43C&gt;T) and EVC2 (c.2614C&gt;T) genes. It is concluded that in addition to novel mutations in MYO7A, TH and EVC2, the CDH23 and GJB2 can also be responsible for deafness in the family with consanguineous marriages."	"Hearing impairment locus heterogeneity and identification of PLS1 as a new autosomal dominant gene in Hungarian Roma. Roma are a socially and culturally distinct isolated population with genetically divergent subisolates, residing mainly across Central, Southern, and Eastern Europe. We evaluated the genetic etiology of hearing impairment (HI) in 15 Hungarian Roma families through exome sequencing. A family with autosomal dominant non-syndromic HI segregating a rare variant in the Calponin-homology 2 domain of PLS1, or Plastin 1 [p.(Leu363Phe)] was identified. Young adult Pls1 knockout mice have progressive HI and show morphological defects to their inner hair cells. There is evidence that PLS1 is important in the preservation of adult stereocilia and normal hearing. Four families segregated the European ancestral variant c.35delG [p.(Gly12fs)] in GJB2, and one family was homozygous for p.(Trp24*), an Indian subcontinent ancestral variant which is common amongst Roma from Slovakia, Czech Republic, and Spain. We also observed variants in known HI genes USH1G, USH2A, MYH9, MYO7A, and a splice site variant in MANBA (c.2158-2A&gt;G) in a family with HI, intellectual disability, behavioral problems, and respiratory inflammation, which was previously reported in a Czech Roma family with similar features. Lastly, using multidimensional scaling and ADMIXTURE analyses, we delineate the degree of Asian/European admixture in the HI families understudy, and show that Roma individuals carrying the GJB2 p.(Trp24*) and MANBA c.2158-2A&gt;G variants have a more pronounced South Asian background, whereas the other hearing-impaired Roma display an ancestral background similar to Europeans. We demonstrate a diverse genetic HI etiology in the Hungarian Roma and identify a new gene PLS1, for autosomal dominant human non-syndromic HI."	"Identification of four novel mutations in MYO7A gene and their association with nonsyndromic deafness and Usher Syndrome 1B. MYO7A gene has been shown to be associated with Usher syndrome 1B and nonsyndromic deafness. Although a lot of mutations have been reported in MYO7A gene, novel MYO7A mutations are continuously to be identified. Targeted next generation sequencing was performed on the two unrelated patients with Usher syndrome 1B and nonsyndromic deafness respectively. The identified mutations from targeted next generation sequencing were further validated by Sanger sequencing, and analyzed by bioinformatics tools, like SIFT, Polyphen-2, PyMOL, I-Mutant 2.0 and so on. By analyzing the sequencing data of these two patients, four novel MYO7A mutations were revealed: (i) MYO7A p.Tyr560Ser and p.Ala2039Pro were associated with Usher syndrome 1B. (ii) MYO7A c.2187 + 2_+8 delTGAGCAC and p.Leu728Pro were related to nonsyndromic hearing loss. These mutations were further proved to be possibly disease-causing by segregation analysis, conservation analysis and bioinformatics tools. Four novel MYO7A mutations were identified in the present study. These findings provided new evidence for the genetic counseling of Usher syndrome 1B and nonsyndromic deafness."	"Elucidation of the unique mutation spectrum of severe hearing loss in a Vietnamese pediatric population. The mutational spectrum of deafness in Indochina Peninsula, including Vietnam, remains mostly undetermined. This significantly hampers the progress toward establishing an effective genetic screening method and early customized rehabilitation modalities for hearing loss. In this study, we evaluated the genetic profile of severe-to-profound hearing loss in a Vietnamese pediatric population using a hierarchical genetic analysis protocol that screened 11 known deafness-causing variants, followed by massively parallel sequencing targeting 129 deafness-associated genes. Eighty-seven children with isolated severe-to-profound non-syndromic hearing loss without family history were included. The overall molecular diagnostic yield was estimated to be 31.7%. The mutational spectrum for severe-to-profound non-syndromic hearing loss in our Vietnamese population was unique: The most prevalent variants resided in the MYO15A gene (7.2%), followed by GJB2 (6.9%), MYO7A (5.5%), SLC26A4 (4.6%), TMC1 (1.8%), ESPN (1.8%), POU3F4 (1.8%), MYH14 (1.8%), EYA1 (1.8%), and MR-RNR1 (1.1%). The unique spectrum of causative genes in the Vietnamese deaf population was similar to that in the southern Chinese deaf population. It is our hope that the mutation spectrum provided here could aid in establishing an efficient protocol for genetic analysis of severe-to-profound hearing loss and a customized screening kit for the Vietnamese population."	"Integrative system genetic analysis reveals mRNA-lncRNA network associated with mouse spontaneous lung cancer susceptibility. Lung cancer continues to be a significant health burden in the United States. Lung cancer in never smokers is considered as a different disease and underlying mechanism of spontaneous lung cancer susceptibility is still poorly known. Meanwhile, the roles of long non-coding RNAs (lncRNAs), which have multiple functions in biological processes, have seldom been studied in spontaneous lung cancer susceptibility. In this study, microarray analyses of normal lung tissues were performed in 23 different mouse strains. LncRNA profile was analyzed by re-annotating exon array for lncRNAs detection. LncRNA/mRNA co-expression networks were constructed and the association between significant lncRNA module and significant mRNA modules was calculated. Finally, Genome-wide association (GWA) results were used to further highlight the key mRNAs and lncRNAs associated with spontaneous lung cancer susceptibility. Four mRNA modules were significantly associated with spontaneous lung cancer susceptibility. Genes in these modules were enriched in &quot;blood coagulation&quot; and &quot;immune system process&quot;. Only one lncRNA module was significantly associated with spontaneous lung cancer susceptibility. Many lncRNAs in this module were co-expressed with mRNAs in the second most significant mRNA module. This co-expression network contained 113 interactions between 30 lncRNAs and 40 mRNAs. After GWA filtration, two mRNAs (Myo7a and Zfp874a) and two lncRNAs (n290048 and n271850) were highlighted as the candidates responsible for genetic susceptibility to lung cancer. We firstly used integrative system genetic analysis to report the mRNA-lncRNA network associated with spontaneous lung cancer susceptibility and identified potential targets for lung cancer prevention."	"AAV2.7m8 is a powerful viral vector for inner ear gene therapy. Adeno-associated virus (AAV) has been successfully used to deliver gene therapy to improve auditory function in mouse models of hereditary hearing loss. Many forms of hereditary hearing loss have mutations which affect the cochlear hair cells, the mechanosensory cells which allow for sound detection and processing. While most conventional AAVs infect inner hair cells (IHCs) with various efficiencies, they infect outer hair cells (OHCs) and supporting cells at lower levels in the cochlea. Here we examine the infection patterns of two synthetic AAVs (AAV2.7m8 and AAV8BP2) in the mouse inner ear. AAV2.7m8 infects both IHCs and OHCs with high efficiency. In addition, AAV2.7m8 infects inner pillar cells and inner phalangeal cells with high efficiency. Our results suggest that AAV2.7m8 is an excellent viral vector for inner ear gene therapy targeting cochlear hair cells and supporting cells, and it will likely greatly expand the potential applications for inner ear gene therapy."	"Lower expression of prestin and MYO7A correlates with menopause-associated hearing loss. Objective: This study aimed to test the hearing function and to investigate the effect of estrogen on prestin and MYO7A expression in hair cells of the cochlea in ovariectomized rats. Study design: We compared the hearing function systematically in normal female Sprague-Dawley rats and in ovariectomized rats with or without exogenous β-estradiol administration by auditory brainstem response measurements and distortion product otoacoustic emissions. In addition, a correlation analysis between the functional parameters and cochlear histology was carried out. Results: There was a significant auditory threshold shift in the high-frequency range in the ovariectomized rats. Prestin and MYO7A expression was lowered in the cochlea of ovariectomized rats. These effects could be recovered by subcutaneous administration of β-estradiol. Conclusion: Low estrogen levels may lead to reduced expression of prestin and MYO7A in cochlea, leading to a menopause-related hearing loss."	"Dynamic ion pair behavior stabilizes single α-helices in proteins. Ion pairs are key stabilizing interactions between oppositely charged amino acid side chains in proteins. They are often depicted as single conformer salt bridges (hydrogen-bonded ion pairs) in crystal structures, but it is unclear how dynamic they are in solution. Ion pairs are thought to be particularly important in stabilizing single α-helix (SAH) domains in solution. These highly stable domains are rich in charged residues (such as Arg, Lys, and Glu) with potential ion pairs across adjacent turns of the helix. They provide a good model system to investigate how ion pairs can contribute to protein stability. Using NMR spectroscopy, small-angle X-ray light scattering (SAXS), and molecular dynamics simulations, we provide here experimental evidence that ion pairs exist in a SAH in murine myosin 7a (residues 858-935), but that they are not fixed or long lasting. In silico modeling revealed that the ion pairs within this α-helix exhibit dynamic behavior, rapidly forming and breaking and alternating between different partner residues. The low-energy helical state was compatible with a great variety of ion pair combinations. Flexible ion pair formation utilizing a subset of those available at any one time avoided the entropic penalty of fixing side chain conformations, which likely contributed to helix stability overall. These results indicate the dynamic nature of ion pairs in SAHs. More broadly, thermodynamic stability in other proteins is likely to benefit from the dynamic behavior of multi-option solvent-exposed ion pairs."	"Genetics of Usher Syndrome: New Insights From a Meta-analysis. To describe the genetic and phenotypic spectrum of Usher syndrome after 6 years of studies by next-generation sequencing, and propose an up-to-date classification of Usher genes in patients with both visual and hearing impairments suggesting Usher syndrome, and in patients with seemingly isolated deafness. The systematic review and meta-analysis protocol was based on Cochrane and Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) guidelines. We performed 1) a meta-analysis of data from 11 next-generation sequencing studies in 684 patients with Usher syndrome; 2) a meta-analysis of data from 21 next-generation studies in 2,476 patients with seemingly isolated deafness, to assess the involvement of Usher genes in seemingly nonsyndromic hearing loss, and thus the proportion of patients at high risk of subsequent retinitis pigmentosa (RP); 3) a statistical analysis of differences between parts 1) and 2). In patients with both visual and hearing impairments, the biallelic disease-causing mutation rate was assessed for each Usher gene to propose a classification by frequency: USH2A: 50% (341/684) of patients, MYO7A: 21% (144/684), CDH23: 6% (39/684), ADGRV1: 5% (35/684), PCDH15: 3% (21/684), USH1C: 2% (17/684), CLRN1: 2% (14/684), USH1G: 1% (9/684), WHRN: 0.4% (3/684), PDZD7 0.1% (1/684), CIB2 (0/684). In patients with seemingly isolated sensorineural deafness, 7.5% had disease-causing mutations in Usher genes, and are therefore at high risk of developing RP. These new findings provide evidence that usherome dysfunction is the second cause of genetic sensorineural hearing loss after connexin dysfunction. These results promote generalization of early molecular screening for Usher syndrome in deaf children."	"High-throughput sequencing for the molecular diagnosis of Usher syndrome reveals 42 novel mutations and consolidates CEP250 as Usher-like disease causative. Usher syndrome is a rare disorder causing retinitis pigmentosa, together with sensorineural hearing loss. Due to the phenotypic and genetic heterogeneity of this disease, the best method to screen the causative mutations is by high-throughput sequencing. In this study, we tested a semiconductor chip based sequencing approach with 77 unrelated patients, as a molecular diagnosis routine. In addition, Multiplex Ligation-dependent Probe Amplification and microarray-based Comparative Genomic Hybridization techniques were applied to detect large rearrangements, and minigene assays were performed to confirm the mRNA processing aberrations caused by splice-site mutations. The designed panel included all the USH causative genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, ADGRV1, WHRN and CLRN1) as well as four uncertainly associated genes (HARS, PDZD7, CEP250 and C2orf71). The outcome showed an overall mutation detection ratio of 82.8% and allowed the identification of 42 novel putatively pathogenic mutations. Furthermore, we detected two novel nonsense mutations in CEP250 in a patient with a disease mimicking Usher syndrome that associates visual impairment due to cone-rod dystrophy and progressive hearing loss. Therefore, this approach proved reliable results for the molecular diagnosis of the disease and also allowed the consolidation of the CEP250 gene as disease causative for an Usher-like phenotype."	"The Effect of the MicroRNA-183 Family on Hair Cell-Specific Markers of Human Bone Marrow-Derived Mesenchymal Stem Cells. Hearing loss is considered the most common sensory disorder across the world. Nowadays, a cochlear implant can be an effective treatment for patients. Moreover, it is often believed that sensorineural hearing loss in humans is caused by loss or disruption of the function of hair cells in the cochlea. In this respect, mesenchymal cells can be a good candidate for cell-based therapeutic approaches. To this end, the potential of human bone marrow-derived mesenchymal stem cells to differentiate into hair cells with the help of transfection of microRNA in vitro was investigated. MicroRNA mimics (miRNA-96, 182, and 183) were transfected to human bone marrow-derived mesenchymal stem cells using Lipofec-tamine as a common transfection reagent following the manufacturer's instructions at 50 nM for microRNA mimics and 50 nM for the scramble. The changes in cell morphology were also observed under an inverted microscope. Then, the relative expression levels of SOX2, POU4F3, MYO7A, and calretinin were assayed using real-time polymerase chain reaction according to the ΔΔCt method. The ATOH1 level was similarly measured via real-time polymerase chain reaction and Western blotting. The results showed that increased expression of miRNA-182, but neither miRNA-96 nor miRNA-183, could lead to higher expression levels in some hair cell markers. The morphology of the cells also did not change in this respect, but the evaluation of gene expression at the levels of mRNA could promote the expression of the ATOH1, SOX2, and POU4F3 markers. Furthermore, miRNA-182 could enhance the expression of ATOH1 at the protein level. According to the results of this study, it was concluded that miRNA-182 could serve as a crucial function in hair cell differentiation by the upregulation of SOX2, POU4F3, and ATOH1 to promote a hair cell's fate."	"Genetic screening of Russian Usher syndrome patients toward selection for gene therapy. Usher syndrome (USH) is heterogeneous in nature and requires genetic test for diagnosis and management. Mutations in USH associated genes are reported in some populations except Russians. Here, we first time represented the mutation spectrum of a Russian USH cohort. Twenty-eight patients with USH were selected from 3214 patients from Deaf-Blind Support Foundation &quot;Con-nection&quot; during 2014-2016 following the observational study NCT03319524. Complete ophthalmologic, ENT, and vestibular medical tests were done for clinical characterization. NGS, MLPA, and Sanger sequencing were considered for genetic analysis. Around 53.57% and 39.28% patients had USH1 and USH2, respectively; 17.85% cases (n = 5/28) had no known mutation. Eleven (73.33%) subjects showed variations in USH1 associated genes MYO7A (72.72%), CDH23 (9.09%), PCDH15 (9.09%), and USH1C (9.09%). Eleven mutations are detected in MYO7A where 54.54% are novel. MYO7A: p.Q18* was most frequent (27.27%) mutation and is associated with early manifestation and most severe clinical picture. Two novel mutations (p.E1301* and c.158-?_318+?del) are detected in PCDH15 gene. Around 90.90% patients suspected to be USH2 are confirmed by genetic testing. Eleven mutations detected in the USH2A gene, where 27.27% were novel. Most common USH2A mutation is p.W3955* (50%) followed by p.E767fs, p.R1653*, and c.8682-9A&gt; G (20% each). The Russian USH cohort shows both novel and known USH mutations. Clinically the prevalence of USH2 is low (39.28%) and the frequency of MYO7A mutations responsible for USH1B is very high (63.63%, N = 7/11) compared to other cohorts. These seven patients carrying MYO7A mutations are preliminarily eligible for the UshStat® gene therapy."	"Global genetic insight contributed by consanguineous Pakistani families segregating hearing loss. Consanguineous Pakistani pedigrees segregating deafness have contributed decisively to the discovery of 31 of the 68 genes associated with nonsyndromic autosomal recessive hearing loss (HL) worldwide. In this study, we utilized genome-wide genotyping, Sanger and exome sequencing to identify 163 DNA variants in 41 previously reported HL genes segregating in 321 Pakistani families. Of these, 70 (42.9%) variants identified in 29 genes are novel. As expected from genetic studies of disorders segregating in consanguineous families, the majority of affected individuals (94.4%) are homozygous for HL-associated variants, with the other variants being compound heterozygotes. The five most common HL genes in the Pakistani population are SLC26A4, MYO7A, GJB2, CIB2 and HGF, respectively. Our study provides a profile of the genetic etiology of HL in Pakistani families, which will allow for the development of more efficient genetic diagnostic tools, aid in accurate genetic counseling, and guide application of future gene-based therapies. These findings are also valuable in interpreting pathogenicity of variants that are potentially associated with HL in individuals of all ancestries. The Pakistani population, and its infrastructure for studying human genetics, will continue to be valuable to gene discovery for HL and other inherited disorders."	"Genetic Etiology Study of Ten Chinese Families with Nonsyndromic Hearing Loss. Nonsyndromic hearing loss has been shown to have high genetic heterogeneity. In this report, we aimed to disclose the genetic causes of the subjects from the ten Chinese deaf families who did not have pathogenic common genes/mutation. Next-generation sequencing (NGS) of 142 known deafness genes was performed in the probands of ten families followed by cosegregation analysis of all family members. We identified novel pathogenic variants in six families including p.D1806E/p.R1588W, p.R964W/p.R1588W, and p.G17C/p.G1449D in CDH23; p.T584M/p.D1939N in LOXHD1; p.P1225L in MYO7A; and p.K612X in EYA4. Sanger sequencing confirmed that these mutations segregated with the hearing loss of each family. In four families, no pathogenic variants were identified. Our study provided better understanding of the mutation spectrum of hearing loss in the Chinese population."	"Genetic heterogeneity of congenital hearing impairment in Algerians from the Ghardaïa province. Consanguinity rate is high in Algeria, and the population is thus at high risk for genetic diseases transmitted on an autosomal recessive mode. Inherited congenital hearing impairment (HI) is a highly heterogeneous disorder, which affects approximately 1 in 800 Algerian newborns. Several hundreds of genes responsible for deafness have been reported among which more than one hundred are responsible for isolated deafness, of which 19 have already been reported to be involved in the Algerian population. This study focuses on patients from the Ghardaïa province, an ethnically and geographically isolated region of Southern Algeria that has the highest consanguinity rate in the country (56%). Eleven families, with at least two related members experiencing moderate to profound congenital HI, were recruited and screened for mutations in known HI genes. A preliminary screening for common mutations in GJB2 and GJB6 identified the prevalent GJB2:c.35delG mutation in four families. Targeted exome sequencing further identified the causal mutations in the remaining seven families: CIB2:c.97C &gt; T; p.(Arg33*), MYO7A:c.470+1G &gt; A; p.(?), and SLC26A4:c.410C &gt; T; p.(Ser137Leu) biallelic mutations in two families each, and a TECTA:c.2743 A &gt; G; p.(Ile915Val) monoallelic mutation in the only family with autosomal dominant transmission of the HI. Of note, the missense mutations of SLC26A4 and TECTA had not been previously reported. These results further substantiate the genetic heterogeneity of HI, even in reportedly isolated populations. However, several families may harbor the same mutations as a result of a long history of marriages between relatives. This study has important implications for the HI molecular diagnosis strategy, and to develop genetic counseling for families originating from the Ghardaïa province of Algeria."	"Regenerating hair cells in vestibular sensory epithelia from humans. Human vestibular sensory epithelia in explant culture were incubated in gentamicin to ablate hair cells. Subsequent transduction of supporting cells with ATOH1 using an Ad-2 viral vector resulted in generation of highly significant numbers of cells expressing the hair cell marker protein myosin VIIa. Cells expressing myosin VIIa were also generated after blocking the Notch signalling pathway with TAPI-1 but less efficiently. Transcriptomic analysis following ATOH1 transduction confirmed up-regulation of 335 putative hair cell marker genes, including several downstream targets of ATOH1. Morphological analysis revealed numerous cells bearing dense clusters of microvilli at the apical surfaces which showed some hair cell-like characteristics confirming a degree of conversion of supporting cells. However, no cells bore organised hair bundles and several expected hair cell markers genes were not expressed suggesting incomplete differentiation. Nevertheless, the results show a potential to induce conversion of supporting cells in the vestibular sensory tissues of humans."	"Transcription factor induced conversion of human fibroblasts towards the hair cell lineage. Hearing loss is the most common sensorineural disorder, affecting over 5% of the population worldwide. Its most frequent cause is the loss of hair cells (HCs), the mechanosensory receptors of the cochlea. HCs transduce incoming sounds into electrical signals that activate auditory neurons, which in turn send this information to the brain. Although some spontaneous HC regeneration has been observed in neonatal mammals, the very small pool of putative progenitor cells that have been identified in the adult mammalian cochlea is not able to replace the damaged HCs, making any hearing impairment permanent. To date, guided differentiation of human cells to HC-like cells has only been achieved using either embryonic stem cells (ESCs) or induced pluripotent stem cells (iPSCs). However, use of such cell types suffers from a number of important disadvantages, such as the risk of tumourigenicity if transplanted into the host´s tissue. We have obtained cells expressing hair cell markers from cultures of human fibroblasts by overexpression of GFI1, Pou4f3 and ATOH1 (GPA), three genes that are known to play a critical role in the development of HCs. Immunocytochemical, qPCR and RNAseq analyses demonstrate the expression of genes typically expressed by HCs in the transdifferentiated cells. Our protocol represents a much faster approach than the methods applied to ESCs and iPSCs and validates the combination of GPA as a set of genes whose activation leads to the direct conversion of human somatic cells towards the hair cell lineage. Our observations are expected to contribute to the development of future therapies aimed at the regeneration of the auditory organ and the restoration of hearing."	"Severe retinal degeneration at an early age in Usher syndrome type 1B associated with homozygous splice site mutations in MYO7A gene. Usher syndrome is the most common cause of deafness associated with visual loss of a genetic origin. The purpose of this paper is to report very severe phenotypic features of type 1B Usher syndrome in a Saudi family affected by positive homozygous splice site mutation in MYO7A gene. Affected siblings went through detailed history. Complete ophthalmic examination was done. Imaging with colour fundus photography, fundus autofluorescence (AF), and optical coherence tomography (OCT) scans was performed. Full field electroretinogram (ffERG) was recorded. Molecular genetic testing was done using next-generation sequencing. Visual acuity was more reduced (range 20/300-20/40) in older siblings (age&gt;30 years), than in younger (age &lt;30 years) siblings (range 20/70-20/25). OCT scans showed macular atrophy in all but one case that has cystoid macular edema (CME). AF demonstrated atrophy outside a small foveal area showing high signal. FfERG was flat in all cases. The homozygous splice site mutation c.470+1G&gt;A in intron 5 of the MYO7A gene was detected in all affected siblings. This mutation manifested with advanced retinal degeneration at a young age. This may have implications regarding future gene therapy in Usher syndrome cases with this genotype."	"Identification of Binding Partners of Deafness-Related Protein PDZD7. PDZD7 is an important deafness gene, whose mutations are associated with syndromic and nonsyndromic hearing loss. PDZD7 contains multiple PDZ domains that are essential for organizing various proteins into protein complex. Several PDZD7-binding proteins have been identified, including usherin, ADGRV1, whirlin, harmonin, SANS, and MYO7A, all belonging to USH proteins. Here, we report the identification of novel PDZD7-binding partners through yeast two-hybrid screening using the first two PDZ domains of PDZD7 as bait. Eleven proteins were identified, most of which have not been reported as PDZD7-binding partners before. Among the identified proteins, ADGRV1, gelsolin, and β-catenin have been shown to play important roles in hearing, whereas the functions of other proteins in the inner ear remain elusive. We confirmed the expression of one candidate PDZD7-binding protein, CADM1, in the mouse inner ear and evaluated the auditory function of Cadm1 knockout mice by performing auditory brainstem response (ABR) measurement. Unexpectedly, Cadm1 knockout mice show normal hearing threshold, which might be explained by the possible compensation by its homologs that are also expressed in the inner ear. Taken together, our work identified several novel PDZD7-binding proteins, which will help us to further understand the role of PDZD7 in hearing transduction."	"ATOH1/RFX1/RFX3 transcription factors facilitate the differentiation and characterisation of inner ear hair cell-like cells from patient-specific induced pluripotent stem cells harbouring A8344G mutation of mitochondrial DNA. Degeneration or loss of inner ear hair cells (HCs) is irreversible and results in sensorineural hearing loss (SHL). Human-induced pluripotent stem cells (hiPSCs) have been employed in disease modelling and cell therapy. Here, we propose a transcription factor (TF)-driven approach using ATOH1 and regulatory factor of x-box (RFX) genes to generate HC-like cells from hiPSCs. Our results suggest that ATOH1/RFX1/RFX3 could significantly increase the differentiation capacity of iPSCs into MYO7A<sup>mCherry</sup>-positive cells, upregulate the mRNA expression levels of HC-related genes and promote the differentiation of HCs with more mature stereociliary bundles. To model the molecular and stereociliary structural changes involved in HC dysfunction in SHL, we further used ATOH1/RFX1/RFX3 to differentiate HC-like cells from the iPSCs from patients with myoclonus epilepsy associated with ragged-red fibres (MERRF) syndrome, which is caused by A8344G mutation of mitochondrial DNA (mtDNA), and characterised by myoclonus epilepsy, ataxia and SHL. Compared with isogenic iPSCs, MERRF-iPSCs possessed ~42-44% mtDNA with A8344G mutation and exhibited significantly elevated reactive oxygen species (ROS) production and CAT gene expression. Furthermore, MERRF-iPSC-differentiated HC-like cells exhibited significantly elevated ROS levels and MnSOD and CAT gene expression. These MERRF-HCs that had more single cilia with a shorter length could be observed only by using a non-TF method, but those with fewer stereociliary bundle-like protrusions than isogenic iPSCs-differentiated-HC-like cells could be further observed using ATOH1/RFX1/RFX3 TFs. We further analysed and compared the whole transcriptome of M1<sup>ctrl</sup>-HCs and M1-HCs after treatment with ATOH1 or ATOH1/RFX1/RFX3. We revealed that the HC-related gene transcripts in M1<sup>ctrl</sup>-iPSCs had a significantly higher tendency to be activated by ATOH1/RFX1/RFX3 than M1-iPSCs. The ATOH1/RFX1/RFX3 TF-driven approach for the differentiation of HC-like cells from iPSCs is an efficient and promising strategy for the disease modelling of SHL and can be employed in future therapeutic strategies to treat SHL patients."	"Identification of Pathogenic Genes of Nonsyndromic Hearing Loss in Uyghur Families Using Massively Parallel DNA Sequencing Technique. We aim to identify the mutations of deafness genes using massively parallel DNA sequencing in the 12 Uyghur families. SNPscan method was used to screen against the 124 sites in the common deafness genes in probands. Subjects with SNPscan negativity were subject to massively parallel DNA sequencing for the sequencing of 97 genes known to be responsible for hearing loss. Eight families (66.7%) showed biallelic mutations in probands, including MYO15A mutation (6892C&gt;T in J02 family, 9514C&gt;T/7894G&gt;T in J07 family, and 9514C&gt;T in J16 family), MYO7A mutation (1258A&gt;T in J03 family), TMC1 mutation (773G&gt;A in J09 family and 1247T&gt;G/1312G&gt;A in J11 family), and PCDH15 mutation (4658delT in J08 and J13 families). Six novel types of mutation were identified including 6892C&gt;T, 9514C&gt;T/7894G&gt;T, and 9514C&gt;T in MYO15A gene, 1258A&gt;T in MYO7A, 773G&gt;A in TMC1, and 4658delT in PCDH15. The ratio of nonsense mutation and frameshift mutation was comparatively high. All these indicated that the mutation types reported in this study were rare. In conclusion, rare deafness genes were identified in the Uyghur families using massively parallel DNA sequencing, part of which were suggested to be related to the pathogenesis of the disease."	"Comprehensive Molecular Screening in Chinese Usher Syndrome Patients. Usher syndrome (USH) refers to a group of autosomal recessive disorders causing deafness and blindness. The objectives of this study were to determine the mutation spectrum in a cohort of Chinese patients with USH and to describe the clinical features of the patients with mutations. A total of 119 probands who were clinically diagnosed with USH were recruited for genetic analysis. All probands underwent ophthalmic examinations. A combination of molecular screening methods, including targeted next-generation sequencing, Sanger-DNA sequencing, and multiplex ligation probe amplification assay, was used to detect mutations. We found biallelic mutations in 92 probands (77.3%), monoallelic mutations in 5 patients (4.2%), and 1 hemizygous mutation in 1 patient (0.8%), resulting in an overall mutation detection rate of 78.2%. Overall, 132 distinct disease-causing mutations involving seven USH (ABHD12, CDH23, GPR98, MYO7A, PCDH15, USH1C, and USH2A) genes; 5 other retinal degeneration genes (CHM, CNGA1, EYS, PDE6B, and TULP1); and 1 nonsyndromic hearing loss gene (MYO15A) were identified, and 78 were novel. Mutations of MYOA7 were responsible for 60% of USH1 families, followed by PCDH15 (20%) and USH1C (10%). Mutations of USH2A accounted for 67.7% of USH2 families, and mutation c.8559-2A&gt;G was the most frequent one, accounting for 19.1% of the identified USH2A alleles. Our results confirm that the mutation spectrum for each USH gene in Chinese patients differs from those of other populations. The formation of the mutation profile for the Chinese population will enable a precise genetic diagnosis for USH patients in the future."	"Utility of whole exome sequencing in the diagnosis of Usher syndrome: Report of novel compound heterozygous MYO7A mutations. Next generation sequencing (NGS), such as targeted panel sequencing, whole-exome sequencing and whole-genome sequencing has led to an exponential increase of elucidated genetic causes in both rare diseases, and common but heterogeneous disorders. NGS is applied in both research and clinical settings, and the clinical exome sequencing (CES), which provides not only the sequence variation data but also clinical interpretation, aids in reaching a final conclusion with regards to a genetic diagnosis. Usher syndrome is a group of disorders, characterized by bilateral sensorineural hearing loss, with or without vestibular dysfunction and retinitis pigmentosa. The index patient, a 2-year-old child was initially diagnosed with nonsyndromic hearing impairment. Homozygosity mapping followed by CES was utilized as a diagnostic tool to identify the genetic basis of his hearing loss. A paternally inherited novel insertion, c.198_199insA (p.Val67Serfs*73) and a maternally inherited novel deletion, c.1219_1226del (p.Phe407Aspfs*33) in gene MYO7A were found in compound heterozygous state in the index patient. The result expands the mutational spectrum of MYO7A. In addition it helped in early diagnosis of the syndrome, for planning and adjustments for the patient, and as well as for future family planning. This study highlights the clinical effectiveness of CES for Usher syndrome diagnosis in a child presented with congenital hearing loss."	"Combining targeted panel-based resequencing and copy-number variation analysis for the diagnosis of inherited syndromic retinopathies and associated ciliopathies. Inherited syndromic retinopathies are a highly heterogeneous group of diseases that involve retinal anomalies and systemic manifestations. They include retinal ciliopathies, other well-defined clinical syndromes presenting with retinal alterations and cases of non-specific multisystemic diseases. The heterogeneity of these conditions makes molecular and clinical characterization of patients challenging in daily clinical practice. We explored the capacity of targeted resequencing and copy-number variation analysis to improve diagnosis of a heterogeneous cohort of 47 patients mainly comprising atypical cases that did not clearly fit a specific clinical diagnosis. Thirty-three likely pathogenic variants were identified in 18 genes (ABCC6, ALMS1, BBS1, BBS2, BBS12, CEP41, CEP290, IFT172, IFT27, MKKS, MYO7A, OTX2, PDZD7, PEX1, RPGRIP1, USH2A, VPS13B, and WDPCP). Molecular findings and additional clinical reassessments made it possible to accurately characterize 14 probands (30% of the total). Notably, clinical refinement of complex phenotypes was achieved in 4 cases, including 2 de novo OTX2-related syndromes, a novel phenotypic association for the ciliary CEP41 gene, and the co-existence of biallelic USH2A variants and a Koolen-de-Vries syndrome-related 17q21.31 microdeletion. We demonstrate that combining next-generation sequencing and CNV analysis is a comprehensive and useful approach to unravel the extensive phenotypic and genotypic complexity of inherited syndromic retinopathies."	"Targeted Next-Generation Sequencing of a Deafness Gene Panel (MiamiOtoGenes) Analysis in Families Unsuitable for Linkage Analysis. Hearing loss (HL) is a common sensory disorder in humans with high genetic heterogeneity. To date, over 145 loci have been identified to cause nonsyndromic deafness. Furthermore, there are countless families unsuitable for the conventional linkage analysis. In the present study, we used a custom capture panel (MiamiOtoGenes) to target sequence 180 deafness-associated genes in 5 GJB2 negative deaf probands with autosomal recessive nonsyndromic HL from Iran. In these 5 families, we detected one reported and six novel mutations in 5 different deafness autosomal recessive (DFNB) genes (TRIOBP, LHFPL5, CDH23, PCDH15, and MYO7A). The custom capture panel in our study provided an efficient and comprehensive diagnosis for known deafness genes in small families."	"SD-OCT imaging as a valuable tool to support molecular genetic diagnostics of Usher syndrome type 1. A girl with profound congenital deafness and balance problems was found at 3.5 years of age to be a carrier of two novel compound heterozygous mutations in MYO7A that were predicted to be disease-causing. She also carried one known pathogenic mutation and one rare variant in USH2A. Fundus examination performed at 4.75 years revealed one small peripheral pigment deposit in the right eye, indicating probable retinal degeneration. Spectral domain optical coherence tomography (SD-OCT) showed a loss of photoreceptors throughout the macular area, except for the foveolar region, clearly confirming a diagnosis of Usher syndrome type 1. This case demonstrates that SD-OCT may be easily used in young children to confirm retinal disease, quantify the extent of retinal damage, and monitor disease progression."	"[The Usher Syndrome, a Human Ciliopathy]. The human Usher syndrome (USH) is a complex, rare disease manifesting in its most common form of inherited deaf-blindness. Due to the heterogeneous manifestation of the clinical symptoms, three clinical types (USH1-3) are distinguished according to the severity of the disease pattern. For a correct diagnosis, in addition to the auditory tests in early newborn screening, ophthalmological examinations and molecular genetic analysis are important. Ten known USH genes encode proteins, which are from heterogeneous protein families, interact in functional protein networks. In the eye and in the ear, USH proteins are expressed primarily in the mechano-sensitive hair cells and the rod and cone photoreceptor cells, respectively. In the hair cells, the USH protein networks are essential for the correct differentiation of the hair bundles as well as for the function of the mechano-electrical transduction complex in the matured cell. In the photoreceptor cells, USH proteins are located in the ciliary region and participate in intracellular transport processes. In addition, a USH protein network is present in the so-called calyceal processes. The lack of calyceal processes and the absence of a prominent visual phenotype in the mouse disqualifies mice as models for studies on the ophthalmic component of USH. While hearing impairments can be compensated with hearing aids and cochlear implants, there is no practical therapy for USH in the eye. Currently, gene-based therapy concepts, such as gene addition, applications of antisense oligonucleotides and TRIDs (&quot;translational readthrough inducing drugs&quot;) for the readthrough of nonsense mutations are preclinically evaluated. For USH1B/MYO7A the UshStat gene therapy clinical trial is ongoing. Das humane Usher-Syndrom (USH) ist eine seltene, komplexe genetische Erkrankung, die sich in kombinierter Taubblindheit manifestiert. Aufgrund der Ausprägung des Krankheitsbilds werden 3 klinische Typen (USH1 – 3) unterschieden. Für eine korrekte Diagnose sind zusätzlich zu den auditorischen Tests im Zuge des Neugeborenenscreens auch frühe ophthalmologische Untersuchungen und eine molekulargenetische Abklärung notwendig. Die bislang 10 bekannten USH-Gene codieren für heterogene Proteine, die in Proteinnetzwerken miteinander in Funktionseinheiten kooperieren. Im Auge und im Ohr werden USH-Proteine vor allem in den mechanosensitiven Haarsinneszellen und den Stäbchen- und Zapfenphotorezeptorzellen exprimiert. In den Haarzellen sind die USH-Proteinnetzwerke sowohl für die korrekte Differenzierung der reizaufnehmenden Haarbündel als auch für den mechanisch-elektrischen Transduktionskomplex essenziell. In den Photorezeptorzellen sind USH-Proteine im Bereich des Ciliums lokalisiert, wo sie an intrazellulären Transportprozessen beteiligt sein dürften. Darüber hinaus ist ein USH-Proteinnetzwerk in den sog. „calyceal processes“, die das Außensegment der Photorezeptorzellen stabilisieren, zu finden. Das Fehlen der „calyceal processes“ und eines prominenten visuellen Phänotyps in der Maus disqualifiziert Mausmodelle als Modelle für die ophthalmologische Komponente von USH. Während Hörstörungen mit Hörgeräten und Cochleaimplantaten kompensiert werden können, gibt es für USH im Auge bislang keine praktikable Therapie. Derzeit werden genbasierte Therapiekonzepte, wie bspw. Genaddition, Applikationen von Antisense-Oligonukleotiden und TRIDs („translational readthrough inducing drugs“) zum Überlesen von Nonsense-Mutationen präklinisch evaluiert. Für USH1B/MYO7A läuft bereits die UshStat-Gentherapie als klinische Studie."	"[Ciliopathies]. Ciliopathies are disorders caused by ciliary dysfunction and can affect an organ system or tissues. Isolated or syndromic retinal dystrophies are the most common ocular manifestation of ciliopathies. The photoreceptor connecting cilium plays a leading role in these ciliopathy-related retinal dystrophies. Dysfunctional photoreceptor cilia cause the most severe type of retinal dystrophy: Leber's congenital amaurosis (LCA). The most common syndromic ciliopathies with an ocular manifestation are Bardet-Biedl syndrome (BBS) and Usher syndrome. Molecular-genetic analysis revealed a large number of cilia genes with a high phenotype heterogeneity. Diagnosis of ciliopathies require a multi-disciplinary approach. Causative treatment of ciliopathies is not yet available; therefore, rehabilitative and supportive treatment is mandatory. Ziliopathien umfassen Erkrankungen und Fehlbildungen einzelner oder mehrerer Organe. Isolierte oder syndromale progressive Netzhautdystrophien stellen die häufigste okuläre Manifestation der Ziliopathien dar. Hierbei ist insbesondere die Struktur der Photorezeptoren mit dem Verbindungscilium (connecting cilium) bedeutend. Durch die dysfunktionalen Zilien besteht eine meist schwere Form der Netzhautdystrophie, der Leberʼschen kongenitalen Amaurose (LCA). Die häufigsten syndromalen Ziliopathien mit okulärer Manifestation sind das Bardet-Biedl-Syndrom (BBS) und das Usher-Syndrom. Die molekulargenetischen Analysen wiesen bisher eine Vielzahl von Genen für ziliäre Proteine nach. Mutationen in diesen Genen sind mit einer klinischen Heterogenität verbunden. Die Diagnose einer LCA oder einer Netzhautdystrophie im Kindesalter sollte immer eine multidisziplinäre Untersuchung und Betreuung einschließen. Eine kausale Therapie der Ziliopathien befindet sich in einem erfolgversprechenden Anfangsstadium, sodass zum jetzigen Zeitpunkt nur unterstützende und rehabilitierende Maßnahmen zur Verfügung stehen."	"The first case of NSHL by direct impression on EYA1 gene and identification of one novel mutation in MYO7A in the Iranian families. Targeted next-generation sequencing (NGS) provides a consequential opportunity to elucidate genetic factors in known diseases, particularly in profoundly heterogeneous disorders such as non-syndromic hearing loss (NSHL). Hearing impairments could be classified into syndromic and non-syndromic types. This study intended to assess the significance of mutations in these genes to the autosomal recessive/dominant non-syndromic genetic load among Iranian families. Two families were involved in this research and two patients were examined by targeted next-generation sequencing. Here we report two novel mutations in the MYO7A and EYA1 genes in two patients detected by targeted NGS. They were confirmed by Sanger sequencing and quantitative real-time PCR techniques. In this investigation, we identified a novel mutation in MYO7A, c.3751G&gt;C, p.A1251P, along with another previously identified mutation (c.1708C&gt;T) in one of the cases. This mutation is located in the MYTH4 protein domain which is a pivotal domain for the myosin function. Another finding in this research was a novel de-novo deletion which deletes the entire EYA1 coding region (EX1-18 DEL). Mutations in EYA1 gene have been found in branchiootorenal (BOR) syndrome. Interestingly the patient with EYA1 deletion did not show any other additional clinical implications apart from HL. This finding might argue for the sole involvement of EYA1 function in the mechanism of hearing. This investigation exhibited that the novel mutations in MYO7A, c.3751G&gt;C, p.A1251P, and EYA1, EX1-18 DEL, were associated with NSHL. Our research increased the mutation spectrum of hearing loss in the Iranian population."	"Myosin 10 is involved in murine pigmentation. Myosins are molecular motors that are well known for their role in cell movement and contractile functions. Although extensively studied in muscle physiology, little is known about the function of myosins in mammalian skin. As part of the Sanger Institute Mouse Genetics Project, we have identified a role for Myo10 in pigmentation, with a phenotype unlike those of Myo5a or Myo7a. Adult mice homozygous for a disrupted Myo10 allele on a C57BL/6N background displayed a high degree of penetrance for white patches on their abdomen and dorsal surface. Forepaw syndactyly and hind paw syndactyly were also observed in these mice. Tail epidermal wholemounts showed a complete lack of melanocytes in the hair follicles and interfollicular epidermis. Myo10 has previously been implicated in human pigmentation. Our current study reveals involvement of Myo10 in murine skin pigmentation."	"The Genetics of Usher Syndrome in the Israeli and Palestinian Populations. Usher syndrome (USH) is the most common cause for deaf-blindness. It is genetically and clinically heterogeneous and prevalent in populations with high consanguinity rate. We aim to characterize the set of genes and mutations that cause USH in the Israeli and Palestinian populations. Seventy-four families with USH were recruited (23 with USH type 1 [USH1], 33 with USH2, seven with USH3, four with atypical USH, and seven families with an undetermined USH type). All affected subjects underwent a full ocular evaluation. A comprehensive genetic analysis, including Sanger sequencing for the detection of founder mutations, homozygosity mapping, and whole exome sequencing in large families was performed. In 79% of the families (59 out of 74), an autosomal recessive inheritance pattern could be determined. Mutation detection analysis led to the identification of biallelic causative mutations in 51 (69%) of the families, including 21 families with mutations in USH2A, 17 in MYO7A, and seven in CLRN1. Our analysis revealed 28 mutations, 11 of which are novel (including c.802G&gt;A, c.8558+1G&gt;T, c.10211del, and c.14023A&gt;T in USH2A; c.285+2T&gt;G, c.2187+1G&gt;T, c.3892G&gt;A, c.5069_5070insC, c.5101C&gt;T, and c.6196C&gt;T in MYO7A; and c.15494del in GPR98). We report here novel homozygous mutations in various genes causing USH, extending the spectrum of causative mutations. We also prove combined sequencing techniques as useful tools to identify novel disease-causing mutations. To the best of our knowledge, this is the largest report of a genetic analysis of Israeli and Palestinian families (n = 74) with different USH subtypes."	"The genetic dissection of Myo7a gene expression in the retinas of BXD mice. Usher syndrome (US) is characterized by a loss of vision due to retinitis pigmentosa (RP) and deafness. US has three clinical subtypes, but even within each subtype, the severity varies. Myosin VIIA, coded by Myo7a, has been identified as one of the causal genes of US. This study aims to identify pathways and other genes through which Myo7a interacts to affect the presentation of US symptoms. In this study, we used the retinal tissue of BXD recombinant inbred (RI) mice to examine the expression of Myo7a and perform genetic mapping. Expression quantitative trait locus (eQTL), single nucleotide polymorphism (SNP), and gene correlation analysis were performed using GeneNetwork. Gene set enrichment analysis was performed using WebGestalt, and gene network construction was performed using the Gene Cohesion Analysis Tool. We found Myo7a to be cis-regulated, with varied levels of expression across BXD strains. Here, we propose a genetic network with 40 genes whose expression is highly correlated with Myo7a. Among these genes, six have been linked to retinal diseases, three to deafness, and five share a transcription factor with Myo7a. Gene ontology and pathway analysis revealed a strong connection among ion channel activity, Myo7a, and US. Although Myo7a is a causal gene of US type I, this gene works with many other genes and pathways to affect the severity of US. Many of the genes found in the genetic network, pathways, and gene ontology categories of Myo7a are related to either deafness or blindness. Further investigation is needed to examine the specific relationships between these genes, which may assist in the treatment of US."	"Identification of a novel MYO7A mutation in Usher syndrome type 1. Usher syndrome (USH) is an autosomal recessive disease characterized by deafness and retinitis pigmentosa. In view of the high phenotypic and genetic heterogeneity in USH, performing genetic screening with traditional methods is impractical. In the present study, we carried out targeted next-generation sequencing (NGS) to uncover the underlying gene in an USH family (2 USH patients and 15 unaffected relatives). One hundred and thirty-five genes associated with inherited retinal degeneration were selected for deep exome sequencing. Subsequently, variant analysis, Sanger validation and segregation tests were utilized to identify the disease-causing mutations in this family. All affected individuals had a classic USH type I (USH1) phenotype which included deafness, vestibular dysfunction and retinitis pigmentosa. Targeted NGS and Sanger sequencing validation suggested that USH1 patients carried an unreported splice site mutation, c.5168+1G&gt;A, as a compound heterozygous mutation with c.6070C&gt;T (p.R2024X) in the MYO7A gene. A functional study revealed decreased expression of the MYO7A gene in the individuals carrying heterozygous mutations. In conclusion, targeted next-generation sequencing provided a comprehensive and efficient diagnosis for USH1. This study revealed the genetic defects in the MYO7A gene and expanded the spectrum of clinical phenotypes associated with USH1 mutations."	"Identification of a MYO7A mutation in a large Chinese DFNA11 family and genotype-phenotype review for DFNA11. The molecular and genetic research showed the association between DFNA11 and mutations in MYO7A. This research aimed to identify a MYO7A mutation in a family with nonsyndromic autosomal dominant hearing loss. We have ascertained one large multigenerational Chinese family (Z029) with autosomal dominant late-onset progressive non-syndromic sensorineural hearing loss. Genome-wide linkage analysis of the family mapped the disease locus to the DFNA11 interval, where the MYO7A was considered as a candidate gene. Sequencing of the PCR products was carried out for each sample. One hundred and fifty one control subjects with normal hearing functions were also evaluated. The pathogenic mutation (c.2011G&gt;A) was identified in the family. This mutation co-segregated with hearing loss in this family. No mutation of MYO7A gene was found in the 151 controls. The missense mutation of MYO7A is identified in the family displaying the pedigree consistent with DFNA11. We not only examined the clinical and genetic characteristics of the family, but also provided a basis for genetic counseling. We also summarized and analyzed the phenotypes and genotypes of all DFNA11 families, four of nine are Chinese families, suggesting that MYO7A mutations are not rare. Therefore, we should pay more attention to Chinese patients."	"Unconventional myosin VIIA promotes melanoma progression. Unconventional myosin VIIA (Myo7a) is an actin-based motor molecule that normally functions in the cochlear hair cells of the inner ear. Mutations of MYO7A/Myo7a have been implicated in inherited deafness in both humans and mice. However, there is limited information about the functions of Myo7a outside of the specialized cells of the ears. Herein, we report a previously unidentified function of Myo7a by demonstrating that it plays an important role in melanoma progression. We found that silencing Myo7a by means of RNAi inhibited melanoma cell growth through upregulation of cell cycle regulator p21 (also known as CDKN1A) and suppressed melanoma cell migration and invasion through downregulation of RhoGDI2 (also known as ARHGDIB) and MMP9. Furthermore, Myo7a depletion suppressed melanoma cell metastases to the lung, kidney and bone in mice. In contrast, overexpression of Myo7a promoted melanoma xenograft growth and lung metastasis. Importantly, Myo7a levels are remarkably elevated in human melanoma patients. Collectively, we demonstrated for the first time that Myo7a is able to function in non-specialized cells, a finding that reveals the complicated disease-related roles of Myo7a, especially in melanomas."	"In Vitro Differentiation of Human Bone Marrow Mesenchymal Stem Cells to Hair Cells Using Growth Factors. In this study, we attempted to differentiated human bone marrow-derived mesenchymal stem cells (hBMSCs) to auditory hair cells using growth factors. Retinoic acid (RA), basic fibroblast growth factor (bFGF), and epidermal growth factor (EGF) were added to hBMSCs cell culture medium. The cells were evaluated morphologically and the expression of SOX2, POU4F3, MYO7A, and Calretinin at mRNA level and ATOH1 mRNA and protein expression. After treatment with the growth factors, the morphology of the cells did not change, but evaluation of gene expression at the mRNA level increased the expression of the ATOH1, SOX2, and POU4F3 markers. Growth factors increased the expression of ATOH1 at the protein level. The expression of calretinin showed decreased and MYO7A no significant change in expression. hBMSCs have the potential to differentiate to hair cell-like using the RA, bFGF, and EGF."	"Genetics Of Human Hereditary Hearing Impairment. Hereditary hearing impairment is heterogeneous type of disorder which can be caused due to environmental as well as genetical factors. Two distinct types of hereditary hearing loss are syndromic or non-syndromic. Non-syndromic hearing loss is further categorized as autosomal recessive, autosomal dominant, X-linked and mitochondrial deafness. Autosomal recessive occurs more frequently as compared to autosomal dominant. Mutations in various genes are responsible for hereditary hearing impairment. To date, about 99 autosomal recessives and 67 autosomal dominant genes for deafness have been discovered. Some of important genes include GJB2, JGB6, GJB3 which encodes gap junction proteins, MYO7A, MYO15A encodes myosine proteins, OTOF encodes otoferlin, and SLC26A4 encodes anion exchanger protein. Up till now, the mutation in GJB2 gene occurs more frequently in different population of the world and cause autosomal recessive hearing impairment. The purpose of this review article was to explore the mutation and function of those muted genes which encode different type of protein and responsible either for autosomal recessive or autosomal dominant hearing impairment."	"Identification of two novel pathogenic compound heterozygous MYO7A mutations in Usher syndrome by whole exome sequencing. The current study aims to identify the pathogenic sites in a core pedigree of Usher syndrome (USH). A core pedigree of USH was analyzed by whole exome sequencing (WES). Mutations were verified by polymerase chain reaction (PCR) amplification and Sanger sequencing. Two pathogenic variations (c.849+2T&gt;C and c.5994G&gt;A) in MYO7A were successfully identified and individually separated from parents. One variant (c.849+2T&gt;C) was nonsense mutation, causing the protein terminated in advance, and the other one (c.5994G&gt;A) located near the boundary of exon could cause aberrant splicing. This study provides a meaningful exploration for identification of clinical core genetic pedigrees."	"Targeted next generation sequencing identified a novel mutation in MYO7A causing Usher syndrome type 1 in an Iranian consanguineous pedigree. Usher syndrome (USH) is characterized by congenital hearing loss and retinitis pigmentosa (RP) with a later onset. It is an autosomal recessive trait with clinical and genetic heterogeneity which makes the molecular diagnosis much difficult. In this study, we introduce a pedigree with two affected members with USH type 1 and represent a cost and time effective approach for genetic diagnosis of USH as a genetically heterogeneous disorder. Target region capture in the genes of interest, followed by next generation sequencing (NGS) was used to determine the causative mutations in one of the probands. Then segregation analysis in the pedigree was conducted using PCR-Sanger sequencing. Targeted NGS detected a novel homozygous nonsense variant c.4513G &gt; T (p.Glu1505Ter) in MYO7A. The variant is segregating in the pedigree with an autosomal recessive pattern. In this study, a novel stop gained variant c.4513G &gt; T (p.Glu1505Ter) in MYO7A was found in an Iranian pedigree with two affected members with USH type 1. Bioinformatic as well as pedigree segregation analyses were in line with pathogenic nature of this variant. Targeted NGS panel was showed to be an efficient method for mutation detection in hereditary disorders with locus heterogeneity."	"Combined genetic approaches yield a 48% diagnostic rate in a large cohort of French hearing-impaired patients. Hearing loss is the most common sensory disorder and because of its high genetic heterogeneity, implementation of Massively Parallel Sequencing (MPS) in diagnostic laboratories is greatly improving the possibilities of offering optimal care to patients. We present the results of a two-year period of molecular diagnosis that included 207 French families referred for non-syndromic hearing loss. Our multi-step strategy involved (i) DFNB1 locus analysis, (ii) MPS of 74 genes, and (iii) additional approaches including Copy Number Variations, in silico analyses, minigene studies coupled when appropriate with complete gene sequencing, and a specific assay for STRC. This comprehensive screening yielded an overall diagnostic rate of 48%, equally distributed between DFNB1 (24%) and the other genes (24%). Pathogenic genotypes were identified in 19 different genes, with a high prevalence of GJB2, STRC, MYO15A, OTOF, TMC1, MYO7A and USH2A. Involvement of an Usher gene was reported in 16% of the genotyped cohort. Four de novo variants were identified. This study highlights the need to develop several molecular approaches for efficient molecular diagnosis of hearing loss, as this is crucial for genetic counselling, audiological rehabilitation and the detection of syndromic forms."	"The shaker-1 mouse myosin VIIa deafness mutation results in a severely reduced rate of the ATP hydrolysis step. Mutations in the MYO7A gene, encoding the motor protein myosin VIIa, can cause Usher 1B, a deafness/blindness syndrome in humans, and the shaker-1 phenotype, characterized by deafness, head tossing, and circling behavior, in mice. Myosin VIIa is responsible for tension bearing and the transduction mechanism in the stereocilia and for melanosome transport in the retina, in line with the phenotypic outcomes observed in mice. However, the effect of the shaker-1 mutation, a R502P amino acid substitution, on the motor function is unclear. To explore this question, we determined the kinetic properties and the effect on the filopodial tip localization of the recombinant mouse myosin VIIa-5IQ-SAH R502P (myoVIIa-sh1) construct. Interestingly, although residue 502 is localized to a region thought to be involved in interacting with actin, the kinetic parameters for actin binding changed only slightly for the mutant construct. However, the rate constant for ATP hydrolysis (k+H + k-H) was reduced by ∼200-fold from 12 s<sup>-1</sup> to 0.05 s<sup>-1</sup>, making the hydrolysis step the rate-limiting step of the ATPase cycle in the presence and absence of actin. Given that wild-type mouse myosin VIIa is a slow, high-duty ratio, monomeric motor, this altered hydrolysis rate would reduce activity to extremely low levels. Indeed, the translocation to the filopodial tips was hampered by the diminished motor function of a dimeric construct of the shaker-1 mutant. We conclude that the diminished motor activity of this mutant is most likely responsible for impaired hearing in the shaker-1 mice."	"Targeted next generation sequencing in Italian patients with Usher syndrome: phenotype-genotype correlations. We report results of DNA analysis with next generation sequencing (NGS) of 21 consecutive Italian patients from 17 unrelated families with clinical diagnosis of Usher syndrome (4 USH1 and 17 USH2) searching for mutations in 11 genes: MYO7A, CDH23, PCDH15, USH1C, USH1G, USH2A, ADGVR1, DFNB31, CLRN1, PDZD7, HARS. Likely causative mutations were found in all patients: 25 pathogenic variants, 18 previously reported and 7 novel, were identified in three genes (USH2A, MYO7A, ADGRV1). All USH1 presented biallelic MYO7A mutations, one USH2 exhibited ADGRV1 mutations, whereas 16 USH2 displayed USH2A mutations. USH1 patients experienced hearing problems very early in life, followed by visual impairment at 1, 4 and 6 years. Visual symptoms were noticed at age 20 in a patient with homozygous novel MYO7A missense mutation c.849G &gt; A. USH2 patients' auditory symptoms, instead, arose between 11 months and 14 years, while visual impairment occurred later on. A homozygous c.5933_5940del;5950_5960dup in USH2A was detected in one patient with early deafness. One patient with homozygous deletion from exon 23 to 32 in USH2A suffered early visual symptoms. Therefore, the type of mutation in USH2A and MYO7A genes seems to affect the age at which both auditory and visual impairment occur in patients with USH."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"Recurrent variants in OTOF are significant contributors to prelingual nonsydromic hearing loss in Saudi patients. PurposeHearing loss is more prevalent in the Saudi Arabian population than in other populations; however, the full range of genetic etiologies in this population is unknown. We report the genetic findings from 33 Saudi hearing-loss probands of tribal ancestry, with predominantly prelingual severe to profound hearing loss.MethodsTesting was performed over the course of 2012-2016, and involved initial GJB2 sequence and GJB6-D13S1830 deletion screening, with negative cases being reflexed to a next-generation sequencing panel with 70, 71, or 87 hearing-loss genes.ResultsA &quot;positive&quot; result was reached in 63% of probands, with two recurrent OTOF variants (p.Glu57* and p.Arg1792His) accountable for a third of all &quot;positive&quot; cases. The next most common cause was pathogenic variants in MYO7A and SLC26A4, each responsible for three &quot;positive&quot; cases. Interestingly, only one &quot;positive&quot; diagnosis had a DFNB1-related cause, due to a homozygous GJB6-D13S1830 deletion, and no sequence variants in GJB2 were detected.ConclusionOur findings implicate OTOF as a potential major contributor to hearing loss in the Saudi population, while highlighting the low contribution of GJB2, thus offering important considerations for clinical testing strategies for Saudi patients. Further screening of Saudi patients is needed to characterize the genetic spectrum in this population."	"Target sequencing of 307 deafness genes identifies candidate genes implicated in microtia. Microtia is a congenital malformation of the external ear caused by genetic and/or environmental factors. However, no causal genetic mutations have been identified in isolated microtia patients. In this study, we utilized targeted genomic capturing combined with next-generation sequencing to screen for mutations in 307 deafness genes in 32 microtia patients. Forty-two rare heterozygous mutations in 25 genes, including 22 novel mutations in 24 isolated unilateral microtia cases were identified. Pathway analysis found five pathways especially focal adhesion pathway and ECM-receptor interaction pathway were significantly associated with microtia. The low-frequency variants association study was used and highlighted several strong candidate genes MUC4, MUC6, COL4A4, MYO7A, AKAP12, COL11A1, DSPP, ESPN, GPR98, PCDH15, BSN, CACNA1D, TPRN, and USH1C for microtia (P = 2.51 × 10<sup>-4</sup>). Among these genes, COL4A4 and COL11A1 may lead to microtia through focal adhesion pathway and ECM-receptor interaction pathway which are connected to the downstream Wnt signaling pathway. The present results indicate that certain genes may affect both external/middle and inner ear development, and demonstrate the benefits of using a capture array in microtia patients."	"Severe streptomycin ototoxicity in the mouse utricle leads to a flat epithelium but the peripheral neural degeneration is delayed. The damaged vestibular sensory epithelium of mammals has a limited capacity for spontaneous hair cell regeneration, which largely depends on the transdifferentiation of surviving supporting cells. Little is known about the response of vestibular supporting cells to a severe insult. In the present study, we evaluated the impact of a severe ototoxic insult on the histology of utricular supporting cells and the changes in innervation that ensued. We infused a high dose of streptomycin into the mouse posterior semicircular canal to induce a severe lesion in the utricle. Both scanning electron microscopy and light microscopy of plastic sections showed replacement of the normal cytoarchitecture of the epithelial layer with a flat layer of cells in most of the samples. Immunofluorescence staining showed numerous cells in the severely damaged epithelial layer that were negative for hair cell and supporting cell markers. Nerve fibers under the flat epithelium had high density at the 1 month time point but very low density by 3 months. Similarly, the number of vestibular ganglion neurons was unchanged at 1 month after the lesion, but was significantly lower at 3 months. We therefore determined that the mouse utricular epithelium turns into a flat epithelium after a severe lesion, but the degeneration of neural components is slow, suggesting that treatments to restore balance by hair cell regeneration, stem cell therapy or vestibular prosthesis implantation will likely benefit from the short term preservation of the neural substrate."	"The first sporadic case of DFNA11 identified by next-generation sequencing. We report the first sporadic case of nonsyndromic autosomal dominant hearing loss (DFNA11). The patient was a 5-year-old boy with moderate bilateral hearing loss. Targeted next-generation sequencing analysis of patient DNA identified a known heterozygous DFNA11 mutation, c.689C &gt; T, in MYO7A, encoding p.Ala230Val. The mutation was not detected in the parents of the patient and is considered to be de novo. This mutation is identical to the one reported previously in an Italian family. Accumulation of mutation data increases the feasibility of identifying autosomal dominant mutations in sporadic sensorineural hearing loss."	"Oral Administration of Clinical Stage Drug Candidate SENS-401 Effectively Reduces Cisplatin-induced Hearing Loss in Rats. SENS-401, an oral clinical-stage drug, may reduce cisplatin-induced hearing loss and cochlear damage in an in vivo model. Cisplatin is commonly associated with hearing loss, causing significant learning and behavioral difficulties in the pediatric cancer population, and for which there are currently no clinical solutions. SENS-401 has previously been shown to improve acoustic trauma-induced hearing loss in vivo. The effect of SENS-401 (R-azasetron besylate) on cisplatin IC50 values was evaluated in a panel of cisplatin-sensitive cell lines (NIH:OVCAR-3, SK-N-AS, NCI-H460, FaDu). Auditory brainstem response and distortion product otoacoustic emission tests were performed in a rat model of cisplatin-induced hearing-loss (8 mg/kg, day 1) at baseline, and after 14 days of SENS-401 (6.6, 13.2, 26.4 mg/kg/d). Cochlear outer hair cells were counted after immunolabeling for myosin-VIIa. Cisplatin cytotoxicity was not impacted by the addition of SENS-401 (up to 10 μM) in any of the cell types evaluated. In vivo, all SENS-401 doses significantly improved auditory brainstem response threshold shift (up to 30 dB) and distortion product otoacoustic emission amplitude loss (up to 19 dB) over placebo. Body weight and survival were not significantly different between rats receiving placebo and those receiving 26.4 mg/kg SENS-401. Significantly more surviving outer hair cells were present after SENS-401 treatment compared with placebo (p &lt; 0.001), with up to 11-fold more in the basal turn of the cochlea. In vivo and in vitro data support the otoprotective potential and tolerability of SENS-401 without impacting chemotherapeutic potential. Oral SENS-401 is a promising candidate for treating cisplatin-induced ototoxicity."	"A homozygous MYO7A mutation associated to Usher syndrome and unilateral auditory neuropathy spectrum disorder. Usher syndrome (USH) is an autosomal recessive disorder characterized by sensorineural hearing loss, progressive visual loss and night blindness due to retinitis pigmentosa (RP), with or without vestibular dysfunction. The purpose of this study was to detect the causative gene in a consanguineous Chinese family with USH. A c.3696_3706del (p.R1232Sfs*72) variant in the myosin VIIa gene (MYO7A) was identified in the homozygous state by exome sequencing. The co‑segregation of the MYO7A c.3696_3706del variant with the phenotype of deafness and progressive visual loss in the USH family was confirmed by Sanger sequencing. The variant was absent in 200 healthy controls. Therefore, the c.3696_3706del variant may disrupt the interaction between myosin VIIa and other USH1 proteins, and impair melanosome transport in retinal pigment epithelial cells. Notably, bilateral auditory brainstem responses were absent in two patients of the USH family, while distortion product otoacoustic emissions were elicited in the right ears of the two patients, consistent with clinical diagnosis of unilateral auditory neuropathy spectrum disorder. These data suggested that the homozygous c.3696_3706del variant in the MYO7A gene may be the disease‑causing mutation for the disorder in this family. These findings broaden the phenotype spectrum of the MYO7A gene, and may facilitate understanding of the molecular pathogenesis of the disease, and genetic counseling for the family."	"A novel mutation in the MYO7A gene is associated with Usher syndrome type 1 in a Chinese family. We aimed to investigate the genetic causes of hearing loss in a Chinese proband with autosomal recessive congenital deafness. The targeted capture of 159 known deafness genes and next-generation sequencing were performed to study the genetic causes of hearing loss in the Chinese family. Sanger sequencing was employed to verify the variant mutations in members of this family. The proband harbored two mutations in the MYO7A gene in the form of compound heterozygosity. She was found to be heterozygous for a novel insertion mutation c.3847_3848 ins TCTG (p.N1285LfsX24) in exon 30 and for the known mutation c.2239_2240delAG (p.R747S fsX16)in exon 19. The novel mutation was absent in the 1000 Genomes Project. These variants were carried in the heterozygous state by the parents and were therefore co-segregated with the genetic disease. Clinical re-assessment, including detailed audiologic and ocular examinations, revealed congenital deafness and retinitis pigmentosa in the proband. Collectively, the combination of audiometric, ophthalmologic and genetic examinations successfully confirmed the phenotype of Usher syndrome type 1 (USH1). This study demonstrates that the novel mutation c.3847_3848insTCTG (p. N1285LfsX24) in compound heterozygosity with c.2239_2240delAG in the MYO7A gene is the main cause of USH1 in the proband. Our study expands the mutational spectrum of MYO7A and provides a foundation for further investigations elucidating the MYO7A-related mechanisms of USH1."	"Exophilin-8 assembles secretory granules for exocytosis in the actin cortex via interaction with RIM-BP2 and myosin-VIIa. Exophilin-8 has been reported to play a role in anchoring secretory granules within the actin cortex, due to its direct binding activities to Rab27 on the granule membrane and to F-actin and its motor protein, myosin-Va. Here, we show that exophilin-8 accumulates granules in the cortical F-actin network not by direct interaction with myosin-Va, but by indirect interaction with a specific form of myosin-VIIa through its previously unknown binding partner, RIM-BP2. RIM-BP2 also associates with exocytic machinery, Cav1.3, RIM, and Munc13-1. Disruption of the exophilin-8-RIM-BP2-myosin-VIIa complex by ablation or knockdown of each component markedly decreases both the peripheral accumulation and exocytosis of granules. Furthermore, exophilin-8-null mouse pancreatic islets lose polarized granule localization at the β-cell periphery and exhibit impaired insulin secretion. This newly identified complex acts as a physical and functional scaffold and provides a mechanism supporting a releasable pool of granules within the F-actin network beneath the plasma membrane."	"Myosin 7 and its adaptors link cadherins to actin. Cadherin linkages between adjacent stereocilia and microvilli are essential for mechanotransduction and maintaining their organization. They are anchored to actin through interaction of their cytoplasmic domains with related tripartite complexes consisting of a class VII myosin and adaptor proteins: Myo7a/SANS/Harmonin in stereocilia and Myo7b/ANKS4B/Harmonin in microvilli. Here, we determine high-resolution structures of Myo7a and Myo7b C-terminal MyTH4-FERM domain (MF2) and unveil how they recognize harmonin using a novel binding mode. Systematic definition of interactions between domains of the tripartite complex elucidates how the complex assembles and prevents possible self-association of harmonin-a. Several Myo7a deafness mutants that map to the surface of MF2 disrupt harmonin binding, revealing the molecular basis for how they impact the formation of the tripartite complex and disrupt mechanotransduction. Our results also suggest how switching between different harmonin isoforms can regulate the formation of networks with Myo7a motors and coordinate force sensing in stereocilia."	"Human myosin VIIa is a very slow processive motor protein on various cellular actin structures. Human myosin VIIa (MYO7A) is an actin-linked motor protein associated with human Usher syndrome (USH) type 1B, which causes human congenital hearing and visual loss. Although it has been thought that the role of human myosin VIIa is critical for USH1 protein tethering with actin and transportation along actin bundles in inner-ear hair cells, myosin VIIa's motor function remains unclear. Here, we studied the motor function of the tail-truncated human myosin VIIa dimer (HM7AΔTail/LZ) at the single-molecule level. We found that the HM7AΔTail/LZ moves processively on single actin filaments with a step size of 35 nm. Dwell-time distribution analysis indicated an average waiting time of 3.4 s, yielding ∼0.3 s<sup>-1</sup> for the mechanical turnover rate; hence, the velocity of HM7AΔTail/LZ was extremely slow, at 11 nm·s<sup>-1</sup> We also examined HM7AΔTail/LZ movement on various actin structures in demembranated cells. HM7AΔTail/LZ showed unidirectional movement on actin structures at cell edges, such as lamellipodia and filopodia. However, HM7AΔTail/LZ frequently missed steps on actin tracks and exhibited bidirectional movement at stress fibers, which was not observed with tail-truncated myosin Va. These results suggest that the movement of the human myosin VIIa motor protein is more efficient on lamellipodial and filopodial actin tracks than on stress fibers, which are composed of actin filaments with different polarity, and that the actin structures influence the characteristics of cargo transportation by human myosin VIIa. In conclusion, myosin VIIa movement appears to be suitable for translocating USH1 proteins on stereocilia actin bundles in inner-ear hair cells."	"Identification of mouse cochlear progenitors that develop hair and supporting cells in the organ of Corti. The adult mammalian cochlear sensory epithelium houses two major types of cells, mechanosensory hair cells and underlying supporting cells, and lacks regenerative capacity. Recent evidence indicates that a subset of supporting cells can spontaneously regenerate hair cells after ablation only within the first week postparturition. Here in vivo clonal analysis of mouse inner ear cells during development demonstrates clonal relationship between hair and supporting cells in sensory organs. We report the identification in mouse of a previously unknown population of multipotent stem/progenitor cells that are capable of not only contributing to the hair and supporting cells but also to other cell types, including glia, in cochlea undergoing development, maturation and repair in response to damage. These multipotent progenitors originate from Eya1-expressing otic progenitors. Our findings also provide evidence for detectable regenerative potential in the postnatal cochlea beyond 1 week of age."	"Novel compound heterozygous MYO7A mutations in Moroccan families with autosomal recessive non-syndromic hearing loss. The MYO7A gene encodes a protein belonging to the unconventional myosin super family. Mutations within MYO7A can lead to either non syndromic hearing loss or to the Usher syndrome type 1B (USH1B). Here, we report the results of genetic analyses performed on Moroccan families with autosomal recessive non syndromic hearing loss that identified two families with compound heterozygous MYO7A mutations. Five mutations (c.6025delG, c.6229T&gt;A, c.3500T&gt;A, c.5617C&gt;T and c.4487C&gt;A) were identified in these families, the latter presenting two differently affected branches. Multiple bioinformatics programs and molecular modelling predicted the pathogenic effect of these mutations. In conclusion, the absence of vestibular and retinal symptom in the affected patients suggests that these families have the isolated non-syndromic hearing loss DFNB2 (nonsyndromic autosomal recessive hearing loss) presentation, instead of USH1B."	"Screening of Myo7A Mutations in Iranian Patients with Autosomal Recessive Hearing Loss from West of Iran. Hearing loss (HL) is the most frequent neurosensory impairment. HL is highly heterogeneous defect. This disorder affects 1 out of 500 newborns. This study aimed to determine the role of DFNB2 locus and frequency of MYO7A gene mutations in a population from west of Iran. Thirty families investigated in Shahrekord University of Medical Sciences in 2014, genetic linkage analysis via four short tandem repeat markers linked to MYO7A was performed for two consanguineous families originating from Hamedan (family-13) and Chaharmahal-Bakhtiari (family-32) provinces of Iran, co-segregating autosomal recessive HL and showed no mutation in GJB2 gene in our preliminary investigation. All 49 coding exons and exon- intron boundaries of the MYO7A gene were amplified by PCR and analyzed using direct DNA sequencing. Two of families displayed linkage to DFNB2. Family-13 segregated a homozygous missense mutation (c.6487G&gt;A) in exon 48 that results in a p.G2163S amino acid substitution in C-terminal domain of the myosin VIIA protein. While family-32 segregated a homozygous nonsense mutation (c.448 C&gt;T) in exon five, resulting in a premature truncation at amino acid position 150 (p.Arg150X) in the motor domain of this protein. Mutation frequency of MYO7A gene in different populations of Iran as well as cause of HL in most cases are still unknown and more extensive studies have to be done."	"Structure of Myo7b/USH1C complex suggests a general PDZ domain binding mode by MyTH4-FERM myosins. Unconventional myosin 7a (Myo7a), myosin 7b (Myo7b), and myosin 15a (Myo15a) all contain MyTH4-FERM domains (myosin tail homology 4-band 4.1, ezrin, radixin, moesin; MF) in their cargo binding tails and are essential for the growth and function of microvilli and stereocilia. Numerous mutations have been identified in the MyTH4-FERM tandems of these myosins in patients suffering visual and hearing impairment. Although a number of MF domain binding partners have been identified, the molecular basis of interactions with the C-terminal MF domain (CMF) of these myosins remains poorly understood. Here we report the high-resolution crystal structure of Myo7b CMF in complex with the extended PDZ3 domain of USH1C (a.k.a., Harmonin), revealing a previously uncharacterized interaction mode both for MyTH4-FERM tandems and for PDZ domains. We predicted, based on the structure of the Myo7b CMF/USH1C PDZ3 complex, and verified that Myo7a CMF also binds to USH1C PDZ3 using a similar mode. The structure of the Myo7b CMF/USH1C PDZ complex provides mechanistic explanations for &gt;20 deafness-causing mutations in Myo7a CMF. Taken together, these findings suggest that binding to PDZ domains, such as those from USH1C, PDZD7, and Whirlin, is a common property of CMFs of Myo7a, Myo7b, and Myo15a."	"Over-expression of myosin7A in cochlear hair cells of circling mice. Circling mouse (C57BL/6J-cir/cir) deleted the transmembrane inner ear (Tmie) gene is an animal model for human non-syndromic recessive deafness, DFNB6. In circling mouse, hair cells in the cochlea have degenerated and hair bundles have become irregularity as time goes on. Tmie protein carries out a function of the mechanoelectrical transduction channel in cochlear hair cells. Myosin7a (MYO7A) protein has key roles in development of the cochlear hair bundles as well as in the function of cochlear hair cells. To find whether Tmie protein interacts with MYO7A proteins in the cochlea postnatal developmental stage, we investigated expression of the MYO7A proteins in the cochlear hair cells of circling mice by western blot analysis and whole mount immunofluorescence at postnatal day 5 (P5). The expression of MYO7A showed statistically significant increase in the cochlea of C57BL/6J-+/cir and C57BL/6J-cir/cir mice than that of C57BL/6J-+/+ mice. The MYO7A intensity of the cochlear hair cells also increased in C57BL/6J-+/cir and C57BL/6J-cir/cir mice compared with those of C57BL/6J-+/+ mice. Taken together, the results indicate that Tmie protein may have an important role with MYO7A protein in the development and maintenance of the stereociliary bundles during postnatal developmental stage of the cochlea."	"Bilateral Labyrinthine and Internal Auditory Canal Enhancement in an Infant With Severe Labyrinthine Dysplasia: A Previously Unreported Phenomenon. To describe a novel case of congenital profound bilateral sensorineural hearing loss in a patient with bilateral nodular internal auditory canal and labyrinthine enhancement and temporal bone dysplasia. A 76-day-old female was referred to the authors' center for evaluation of congenital deafness. Behavioral observations and objective audiometric evaluation demonstrated bilateral profound sensorineural hearing loss and a comprehensive multidisciplinary evaluation identified compound heterozygous pathogenic variants in MYO7A, a gene associated with Usher Syndrome Type 1B or DFNB2. Computed tomography and contrast-enhanced magnetic resonance imaging studies demonstrated bilateral temporal bone anomalies with unique middle and inner ear malformations, as well as unique contrast enhancement in the membranous labyrinth, internal auditory canals, and cranial nerves, which have not been previously described with MYO7A variants. Given the potential risk for progressive bilateral labyrinthitis ossificans, bilateral simultaneous cochlear implantation was performed at 4 months of age. Subsequent audiologic follow up after implantation shows significantly improved access to auditory information and increased vocalizations. At last testing, speech and language skills for both receptive and expressive language abilities were found to be commensurate with her chronological age. We report a novel presentation and imaging findings of congenital bilateral profound sensorineural hearing loss in a patient with nodular internal auditory canal and labyrinthine enhancement and coexisting inner ear dysplasia. Despite the multiple radiologic abnormalities, the patient has demonstrated good benefit from cochlear implantation. Future study of rare variants of congenital deafness, such as this, is critical toward defining new disease processes and determining optimal treatment."	"Molecular Analysis of Twelve Pakistani Families with Nonsyndromic or Syndromic Hearing Loss. To investigate the causative genetic mutations in 12 Pakistani families with nonsyndromic or syndromic hearing loss. Mutations in the most common causative gene for hearing loss, GJB2, were evaluated by Sanger sequencing. Targeted next-generation sequencing or whole-exome sequencing was used to analyze the genomic DNA samples from 11 probands with hearing loss. Sanger sequencing was performed to verify all identified variants. We found pathogenic, or likely to be pathogenic, mutations in all 12 families, including six known mutations in GJB2, SLC26A4, LHFPL5, and USH2A and eight novel mutations in ESPN, MYO7A, LRTOMT, PCDH15, USH2A, or EPS8L2. Notably, four compound heterozygous mutations in the MYO7A and USH2A genes were detected in two consanguineous families. In addition, the novel frameshift mutation in EPS8L2 was first documented in Pakistan. Our study increases the spectrum of mutations associated with hearing loss in the Pakistani population. In addition, our study highlights the fact that compound heterozygous mutations, although rare, can occur in consanguineous families."	"Ca<sup>2+</sup>-Induced Rigidity Change of the Myosin VIIa IQ Motif-Single α Helix Lever Arm Extension. Several unconventional myosins contain a highly charged single α helix (SAH) immediately following the calmodulin (CaM) binding IQ motifs, functioning to extend lever arms of these myosins. How such SAH is connected to the IQ motifs and whether the conformation of the IQ motifs-SAH segments are regulated by Ca<sup>2+</sup> fluctuations are not known. Here, we demonstrate by solving its crystal structure that the predicted SAH of myosin VIIa (Myo7a) forms a stable SAH. The structure of Myo7a IQ5-SAH segment in complex with apo-CaM reveals that the SAH sequence can extend the length of the Myo7a lever arm. Although Ca<sup>2+</sup>-CaM remains bound to IQ5-SAH, the Ca<sup>2+</sup>-induced CaM binding mode change softens the conformation of the IQ5-SAH junction, revealing a Ca<sup>2+</sup>-induced lever arm flexibility change for Myo7a. We further demonstrate that the last IQ motif of several other myosins also binds to both apo- and Ca<sup>2+</sup>-CaM, suggesting a common Ca<sup>2+</sup>-induced conformational regulation mechanism."	"Exploiting decellularized cochleae as scaffolds for inner ear tissue engineering. Use of decellularized tissues has become popular in tissue engineering applications as the natural extracellular matrix can provide necessary physical cues that help induce the restoration and development of functional tissues. In relation to cochlear tissue engineering, the question of whether decellularized cochlear tissue can act as a scaffold and support the incorporation of exogenous cells has not been addressed. Investigators have explored the composition of the cochlear extracellular matrix and developed multiple strategies for decellularizing a variety of different tissues; however, no one has investigated whether decellularized cochlear tissue can support implantation of exogenous cells. As a proof-of-concept study, human Wharton's jelly cells were perfused into decellularized cochleae isolated from C57BL/6 mice to determine if human Wharton's jelly cells could implant into decellularized cochlear tissue. Decellularization was verified through scanning electron microscopy. Cocheae were stained with DAPI and immunostained with Myosin VIIa to identify cells. Perfused cochleae were imaged using confocal microscopy. Features of the organ of Corti were clearly identified in the native cochleae when imaged with scanning electron microscopy and confocal microscopy. Acellular structures were identified in decellularized cochleae; however, no cellular structures or lipid membranes were present within the decellularized cochleae when imaged via scanning electron microscopy. Confocal microscopy revealed positive identification and adherence of cells in decellularized cochleae after perfusion with human Wharton's jelly cells. Some cells positively expressed Myosin VIIa after perfusion. Human Wharton's jelly cells are capable of successfully implanting into decellularized cochlear extracellular matrix. The identification of Myosin VIIa expression in human Wharton's jelly cells after implantation into the decellularized cochlear extracellular matrix suggest that components of the cochlear extracellular matrix may be involved in differentiation."	"A Genomic and Protein-Protein Interaction Analyses of Nonsyndromic Hearing Impairment in Cameroon Using Targeted Genomic Enrichment and Massively Parallel Sequencing. Hearing impairment (HI) is one of the leading causes of disability in the world, impacting the social, economic, and psychological well-being of the affected individual. This is particularly true in sub-Saharan Africa, which carries one of the highest burdens of this condition. Despite this, there are limited data on the most prevalent genes or mutations that cause HI among sub-Saharan Africans. Next-generation technologies, such as targeted genomic enrichment and massively parallel sequencing, offer new promise in this context. This study reports, for the first time to the best of our knowledge, on the prevalence of novel mutations identified through a platform of 116 HI genes (OtoSCOPE<sup>®</sup>), among 82 African probands with HI. Only variants OTOF NM_194248.2:c.766-2A&gt;G and MYO7A NM_000260.3:c.1996C&gt;T, p.Arg666Stop were found in 3 (3.7%) and 5 (6.1%) patients, respectively. In addition and uniquely, the analysis of protein-protein interactions (PPI), through interrogation of gene subnetworks, using a custom script and two databases (Enrichr and PANTHER), and an algorithm in the igraph package of R, identified the enrichment of sensory perception and mechanical stimulus biological processes, and the most significant molecular functions of these variants pertained to binding or structural activity. Furthermore, 10 genes (MYO7A, MYO6, KCTD3, NUMA1, MYH9, KCNQ1, UBC, DIAPH1, PSMC2, and RDX) were identified as significant hubs within the subnetworks. Results reveal that the novel variants identified among familial cases of HI in Cameroon are not common, and PPI analysis has highlighted the role of 10 genes, potentially important in understanding HI genomics among Africans."	"Genetic screening revealed usher syndrome in a paediatric Chinese patient. Usher syndrome is the most common cause of hereditary deaf-blindness. Three clinical subtypes have been classified. Usher syndrome type I is the most severe subtype characterized by congenital severe-to-profound hearing loss, retinitis pigmentosa and vestibular dysfunction. One family was analyzed and the analysis included the combination of a custom capture/next-generation sequencing panel of 180 known deafness gene, Sanger sequencing and bioinformatics approaches. Compound heterozygous mutations in the MYO7A gene: a known missense mutation c.494C&gt;T (p.Thr165Met) and a novel missense mutation c.6113G&gt;A (p.Gly2038Glu) were identified in a proband. This Chinese hearing-impaired child was misdiagnosed as non-syndromic hearing loss which was later changed to the diagnosis of Usher syndrome type I after comprehensive audiometric, vestibular and ophthalmological examinations at 9 years old. Due to the features of genetic heterogeneity and variation in clinical manifestation, molecular diagnosis and ophthalmological examinations by skilled ophthalmologists with knowledge of Usher syndrome should be suggested as a routine assessment which may improve the accuracy and reliability of etiological diagnosis for hearing loss."	"Hereditary Retinal Dystrophy. As our understanding of the genetic basis for inherited retinal disease has expanded, gene therapy has advanced into clinical development. When the gene mutations associated with inherited retinal dystrophies were identified, it became possible to create animal models in which individual gene were altered to match the human mutations. The retina of these animals were then characterized to assess whether the mutated genes produced retinal phenotypes characteristic of disease-affected patients. Following the identification of a subpopulation of patients with the affected gene and the development of techniques for the viral gene transduction of retinal cells, it has become possible to deliver a copy of the normal gene into the retinal sites of the mutated genes. When this was performed in animal models of monogenic diseases, at an early stage of retinal degeneration when the affected cells remained viable, successful gene augmentation corrected the structural and functional lesions characteristic of the specific diseases in the areas of the retina that were successfully transduced. These studies provided the essential proof-of-concept needed to advance monogenic gene therapies into clinic development; these therapies include treatments for: Leber's congenital amaurosis type 2, caused by mutations to RPE65, retinoid isomerohydrolase; choroideremia, caused by mutations to REP1, Rab escort protein 1; autosomal recessive Stargardt disease, caused by mutations to ABCA4, the photoreceptor-specific ATP-binding transporter; Usher 1B disease caused by mutations to MYO7A, myosin heavy chain 7; X-linked juvenile retinoschisis caused by mutations to RS1, retinoschisin; autosomal recessive retinitis pigmentosa caused by mutations to MERTK, the proto-oncogene tyrosine-protein kinase MER; Leber's hereditary optic neuropathy caused by mutations to ND4, mitochondrial nicotinamide adenine dinucleotide ubiquinone oxidoreductase (complex I) subunit 4 and achromatopsia, caused by mutations to CNGA3, cyclic nucleotide-gated channel alpha 3 and CNGB3, cyclic nucleotide-gated channel beta 3. This review includes a tabulated summary of treatments for these monogenic retinal dystrophies that have entered into clinical development, as well as a brief summary of the preclinical data that supported their advancement into clinical development."	"The roles of USH1 proteins and PDZ domain-containing USH proteins in USH2 complex integrity in cochlear hair cells. Usher syndrome (USH) is the most common cause of inherited deaf-blindness, manifested as USH1, USH2 and USH3 clinical types. The protein products of USH2 causative and modifier genes, USH2A, ADGRV1, WHRN and PDZD7, interact to assemble a multiprotein complex at the ankle link region of the mechanosensitive stereociliary bundle in hair cells. Defects in this complex cause stereociliary bundle disorganization and hearing loss. The four USH2 proteins also interact in vitro with USH1 proteins including myosin VIIa, USH1G (SANS), CIB2 and harmonin. However, it is unclear whether the interactions between USH1 and USH2 proteins occur in vivo and whether USH1 proteins play a role in USH2 complex assembly in hair cells. In this study, we identified a novel interaction between myosin VIIa and PDZD7 by FLAG pull-down assay. We further investigated the role of the above-mentioned four USH1 proteins in the cochlear USH2 complex assembly using USH1 mutant mice. We showed that only myosin VIIa is indispensable for USH2 complex assembly at ankle links, indicating the potential transport and/or anchoring role of myosin VIIa for USH2 proteins in hair cells. However, myosin VIIa is not required for USH2 complex assembly in photoreceptors. We further showed that, while PDZ protein harmonin is not involved, its paralogous USH2 proteins, PDZD7 and whirlin, function synergistically in USH2 complex assembly in cochlear hair cells. In summary, our studies provide novel insight into the functional relationship between USH1 and USH2 proteins in the cochlea and the retina as well as the disease mechanisms underlying USH1 and USH2."	"Usher syndrome in Denmark: mutation spectrum and some clinical observations. Usher syndrome (USH) is a genetically heterogeneous deafness-blindness syndrome, divided into three clinical subtypes: USH1, USH2 and USH3. Mutations in 21 out of 26 investigated Danish unrelated individuals with USH were identified, using a combination of molecular diagnostic methods. Before Next Generation Sequencing (NGS) became available mutations in nine individuals (1 USH1, 7 USH2, 1 USH3) were identified by Sanger sequencing of USH1C,USH2A or CLRN1 or by Arrayed Primer EXtension (APEX) method. Mutations in 12 individuals (7 USH1, 5 USH2) were found by targeted NGS of ten known USH genes. Five novel pathogenic variants were identified. We combined our data with previously published, and obtained an overview of the USH mutation spectrum in Denmark, including 100 unrelated individuals; 32 with USH1, 67 with USH2, and 1 with USH3. Macular edema was observed in 44 of 117 individuals. Olfactory function was tested in 12 individuals and found to be within normal range in all. Mutations that lead to USH1 were predominantly identified in MYO7A (75%), whereas all mutations in USH2 cases were identified in USH2A. The MYO7A mutation c.93C&gt;A, p.(Cys31*) accounted for 33% of all USH1 mutations and the USH2A c.2299delG, p.(Glu767Serfs*21) variant accounted for 45% of all USH2 mutations in the Danish cohort."	"CLINICAL PRESENTATION AND DISEASE COURSE OF USHER SYNDROME BECAUSE OF MUTATIONS IN MYO7A OR USH2A. To evaluate differences in the visual phenotype and natural history of Usher syndrome caused by mutations in MYO7A or USH2A, the most commonly affected genes of Usher syndrome Type I (USH1) and Type II (USH2), respectively. Eighty-eight patients with a clinical diagnosis of USH1 (26 patients) or USH2 (62 patients) were retrospectively evaluated. Of these, 48 patients had 2 disease-causing mutations in MYO7A (10 USH1 patients), USH2A (33 USH2 patients), and other USH (5 patients) genes. Clinical investigation included best-corrected visual acuity, Goldmann visual field, fundus photography, electroretinography, and audiologic and vestibular assessments. Longitudinal analysis was performed over a median follow-up time of 3.5 years. Patients carrying mutations in MYO7A had a younger age of onset of hearing and visual impairments than those carrying mutations in USH2A, leading to an earlier diagnosis of the disease in the former patients. Longitudinal analysis showed that visual acuity and visual field decreased more rapidly in subjects carrying MYO7A mutations than in those carrying USH2A mutations (mean annual exponential rates of decline of 3.92 vs. 3.44% and of 8.52 vs. 4.97%, respectively), and the former patients reached legal blindness on average 15 years earlier than the latter. The current study confirmed a more severe progression of the retinal disease in USH1 patients rather than in USH2 patients. Furthermore, most visual symptoms (i.e., night blindness, visual acuity worsening) occurred at an earlier age in USH1 patients carrying mutations in MYO7A."	"CLINICAL PROGRESS IN INHERITED RETINAL DEGENERATIONS: GENE THERAPY CLINICAL TRIALS AND ADVANCES IN GENETIC SEQUENCING. Inherited retinal dystrophies are a significant cause of vision loss and are characterized by the loss of photoreceptors and the retinal pigment epithelium (RPE). Mutations in approximately 250 genes cause inherited retinal degenerations with a high degree of genetic heterogeneity. New techniques in next-generation sequencing are allowing the comprehensive analysis of all retinal disease genes thus changing the approach to the molecular diagnosis of inherited retinal dystrophies. This review serves to analyze clinical progress in genetic diagnostic testing and implications for retinal gene therapy. A literature search of PubMed and OMIM was conducted to relevant articles in inherited retinal dystrophies. Next-generation genetic sequencing allows the simultaneous analysis of all the approximately 250 genes that cause inherited retinal dystrophies. Reported diagnostic rates range are high and range from 51% to 57%. These new sequencing tools are highly accurate with sensitivities of 97.9% and specificities of 100%. Retinal gene therapy clinical trials are underway for multiple genes including RPE65, ABCA4, CHM, RS1, MYO7A, CNGA3, CNGB3, ND4, and MERTK for which a molecular diagnosis may be beneficial for patients. Comprehensive next-generation genetic sequencing of all retinal dystrophy genes is changing the paradigm for how retinal specialists perform genetic testing for inherited retinal degenerations. Not only are high diagnostic yields obtained, but mutations in genes with novel clinical phenotypes are also identified. In the era of retinal gene therapy clinical trials, identifying specific genetic defects will increasingly be of use to identify patients who may enroll in clinical studies and benefit from novel therapies."	"Heterogeneity of Hereditary Hearing Loss in Iran: a Comprehensive Review. A significant contribution to the causes of hereditary hearing impairment comes from genetic factors. More than 120 genes and 160 loci have been identified to be involved in hearing impairment. Given that consanguine populations are more vulnerable to most inherited diseases, such as hereditary hearing loss (HHL), the genetic picture of HHL among the Iranian population, which consists of at least eight ethnic subgroups with a high rate of intermarriage, is expected to be highly heterogeneous. Using an electronic literature review through various databases such as PubMed, MEDLINE, and Scopus, we review the current picture of HHL in Iran. In this review, we present more than 39 deafness genes reported to cause non-syndromic HHL in Iran, of which the most prevalent causative genes include GJB2, SLC26A4, MYO15A, and MYO7A. In addition, we highlight some of the more common genetic causes of syndromic HHL in Iran. These results are of importance for further investigation and elucidation of the molecular basis of HHL in Iran and also for developing a national diagnostic tool tailored to the Iranian context enabling early and efficient diagnosis of hereditary hearing impairment."	"Compound heterozygous MYO7A mutations segregating Usher syndrome type 2 in a Han family. Identification of rare deafness genes for inherited congenital sensorineural hearing impairment remains difficult, because a large variety of genes are implicated. In this study we applied targeted capture and next-generation sequencing to uncover the underlying gene in a three-generation Han family segregating recessive inherited hearing loss and retinitis pigmentosa. After excluding mutations in common deafness genes GJB2, SLC26A4 and the mitochondrial gene, genomic DNA of the proband of a Han family was subjected to targeted next-generation sequencing. The candidate mutations were confirmed by Sanger sequencing and subsequently analyzed with in silico tools. An unreported splice site mutation c.3924+1G &gt; C compound with c.6028G &gt; A in the MYO7A gene were detected to cosegregate with the phenotype in this pedigree. Both mutations, located in the evolutionarily conserved FERM domain in myosin VIIA, were predicted to be pathogenic. In this family, profound sensorineural hearing impairment and retinitis pigmentosa without vestibular disorder, constituted the typical Usher syndrome type 2. Identification of novel mutation in compound heterozygosity in MYO7A gene revealed the genetic origin of Usher syndrome type 2 in this Han family."	"Modulation of Wnt Signaling Enhances Inner Ear Organoid Development in 3D Culture. Stem cell-derived inner ear sensory epithelia are a promising source of tissues for treating patients with hearing loss and dizziness. We recently demonstrated how to generate inner ear sensory epithelia, designated as inner ear organoids, from mouse embryonic stem cells (ESCs) in a self-organizing 3D culture. Here we improve the efficiency of this culture system by elucidating how Wnt signaling activity can drive the induction of otic tissue. We found that a carefully timed treatment with the potent Wnt agonist CHIR99021 promotes induction of otic vesicles-a process that was previously self-organized by unknown mechanisms. The resulting otic-like vesicles have a larger lumen size and contain a greater number of Pax8/Pax2-positive otic progenitor cells than organoids derived without the Wnt agonist. Additionally, these otic-like vesicles give rise to large inner ear organoids with hair cells whose morphological, biochemical and functional properties are indistinguishable from those of vestibular hair cells in the postnatal mouse inner ear. We conclude that Wnt signaling plays a similar role during inner ear organoid formation as it does during inner ear development in the embryo. "	"Diversity of the Genes Implicated in Algerian Patients Affected by Usher Syndrome. Usher syndrome (USH) is an autosomal recessive disorder characterized by a dual sensory impairment affecting hearing and vision. USH is clinically and genetically heterogeneous. Ten different causal genes have been reported. We studied the molecular bases of the disease in 18 unrelated Algerian patients by targeted-exome sequencing, and identified the causal biallelic mutations in all of them: 16 patients carried the mutations at the homozygous state and 2 at the compound heterozygous state. Nine of the 17 different mutations detected in MYO7A (1 of 5 mutations), CDH23 (4 of 7 mutations), PCDH15 (1 mutation), USH1C (1 mutation), USH1G (1 mutation), and USH2A (1 of 2 mutations), had not been previously reported. The deleterious consequences of a missense mutation of CDH23 (p.Asp1501Asn) and the in-frame single codon deletion in USH1G (p.Ala397del) on the corresponding proteins were predicted from the solved 3D-structures of extracellular cadherin (EC) domains of cadherin-23 and the sterile alpha motif (SAM) domain of USH1G/sans, respectively. In addition, we were able to show that the USH1G mutation is likely to affect the binding interface between the SAM domain and USH1C/harmonin. This should spur the use of 3D-structures, not only of isolated protein domains, but also of protein-protein interaction interfaces, to predict the functional impact of mutations detected in the USH genes. "	"Genetic causes of moderate to severe hearing loss point to modifiers. The genetic underpinnings of recessively inherited moderate to severe sensorineural hearing loss are not well understood, despite its higher prevalence in comparison to profound deafness. We recruited 92 consanguineous families segregating stable or progressive, recessively inherited moderate or severe hearing loss. We utilized homozygosity mapping, Sanger sequencing, targeted capture of known deafness genes with massively parallel sequencing and whole exome sequencing to identify the molecular basis of hearing loss in these families. Variants of the known deafness genes were found in 69% of the participating families with the SLC26A4, GJB2, MYO15A, TMC1, TMPRSS3, OTOF, MYO7A and CLDN14 genes together accounting for hearing loss in 54% of the families. We identified 20 reported and 21 novel variants in 21 known deafness genes; 16 of the 20 reported variants, previously associated with stable, profound deafness were associated with moderate to severe or progressive hearing loss in our families. These data point to a prominent role for genetic background, environmental factors or both as modifiers of human hearing loss severity."	"Extensive Supporting Cell Proliferation and Mitotic Hair Cell Generation by In Vivo Genetic Reprogramming in the Neonatal Mouse Cochlea. The generation of hair cells (HCs) from the differentiation of proliferating supporting cells (SCs) appears to be an ideal approach for replacing lost HCs in the cochlea and is promising for restoring hearing after damage to the organ of Corti. We show here that extensive proliferation of SCs followed by mitotic HC generation is achieved through a genetic reprogramming process involving the activation of β-catenin to upregulate Wnt signaling, the deletion of Notch1 to downregulate Notch signaling, and the overexpression of Atoh1 in Sox2(+) SCs in neonatal mouse cochleae. We used RNA sequencing to compare the transcripts of the cochleae from control mice and from mice with β-catenin activation, Notch1 deletion, and β-catenin activation combined with Notch1 deletion in Sox2(+) SCs. We identified the genes involved in the proliferation and transdifferentiation process that are either controlled by individual signaling pathways or by the combination of Wnt and Notch signaling. Moreover, the proliferation of SCs induced by Notch1 deletion disappears after deleting β-catenin in Notch1 knock-out Sox2(+) cells, which further demonstrates that Notch signaling is an upstream and negative regulator of Wnt signaling. We show here that the extensive proliferation of supporting cells (SCs) and the subsequent mitotic hair cell (HC) generation is achieved through a genetic reprogramming process involving activation of β-catenin to upregulate Wnt signaling, deletion of Notch1 to downregulate Notch signaling, and overexpression of Atoh1 in Sox2(+) SCs in neonatal mice cochleae. By comparing the transcripts of the cochleae among controls, β-catenin activation, Notch1 deletion, and β-catenin activation combined with Notch1 deletion group, we identified multiple genes involved in the proliferation and transdifferentiation process that are either controlled by individual signaling pathways or by the combination of Wnt and Notch signaling. This provides a better understanding of the mechanisms behind mitotic HC generation and might provide new approaches to stimulating mitotic HC regeneration."	"PDZD7-MYO7A complex identified in enriched stereocilia membranes. While more than 70 genes have been linked to deafness, most of which are expressed in mechanosensory hair cells of the inner ear, a challenge has been to link these genes into molecular pathways. One example is Myo7a (myosin VIIA), in which deafness mutations affect the development and function of the mechanically sensitive stereocilia of hair cells. We describe here a procedure for the isolation of low-abundance protein complexes from stereocilia membrane fractions. Using this procedure, combined with identification and quantitation of proteins with mass spectrometry, we demonstrate that MYO7A forms a complex with PDZD7, a paralog of USH1C and DFNB31. MYO7A and PDZD7 interact in tissue-culture cells, and co-localize to the ankle-link region of stereocilia in wild-type but not Myo7a mutant mice. Our data thus describe a new paradigm for the interrogation of low-abundance protein complexes in hair cell stereocilia and establish an unanticipated link between MYO7A and PDZD7."	"Genetic analysis of Tunisian families with Usher syndrome type 1: toward improving early molecular diagnosis. Usher syndrome accounts for about 50% of all hereditary deaf-blindness cases. The most severe form of this syndrome, Usher syndrome type I (USH1), is characterized by profound congenital sensorineural deafness, vestibular dysfunction, and retinitis pigmentosa. Six USH1 genes have been identified, MYO7A, CDH23, PCDH15, USH1C, SANS, and CIB2, encoding myosin VIIA, cadherin-23, protocadherin-15, harmonin, scaffold protein containing ankyrin repeats and a sterile alpha motif (SAM) domain, and calcium- and integrin-binding member 2, respectively. In the present study, we recruited four Tunisian families with a diagnosis of USH1, together with healthy unrelated controls. Affected members underwent detailed audiologic and ocular examinations. We used the North African Deafness (NADf) chip to search for known North African mutations associated with USH. Then, we selected microsatellite markers covering USH1 known loci to genotype the DNA samples. Finally, we performed DNA sequencing of three known USH1 genes: MYO7A, PCDH15, and USH1C. Four biallelic mutations, all single base changes, were found in the MYO7A, USH1C, and PCDH15 genes. These mutations consist of a previously reported splicing defect c.470+1G&gt;A in MYO7A, three novel variants, including two nonsense (p.Arg3X and p.Arg134X) in USH1C and PCDH15, respectively, and one frameshift (p.Lys615Asnfs*6) in MYO7A. We found a remarkable genetic heterogeneity in the studied families with USH1 with a variety of mutations, among which three were novel. These novel mutations will be included in the NADf mutation screening chip that will allow a higher diagnosis efficiency of this extremely genetically heterogeneous disease. Ultimately, efficient molecular diagnosis of USH in a patient's early childhood is of utmost importance, allowing better educational and therapeutic management."	"Outer Retinal Changes Including the Ellipsoid Zone Band in Usher Syndrome 1B due to MYO7A Mutations. To study transition zones from normal to abnormal retina in Usher syndrome IB (USH1B) caused by myosin 7A (MYO7A) mutations. Optical coherence tomography (OCT) scattering layers in outer retina were segmented in patients (n = 16, ages 2-42; eight patients had serial data, average interval 4.5 years) to quantify outer nuclear layer (ONL) and outer segments (OS) as well as the locus of EZ (ellipsoid zone) edge and its extent from the fovea. Static perimetry was measured under dark-adapted (DA) and light-adapted (LA) conditions. Ellipsoid zone edge in USH1B-MYO7A could be located up to 23° from the fovea. Ellipsoid zone extent constricted at a rate of 0.51°/year with slower rates at smaller eccentricities. A well-defined EZ line could be associated with normal or abnormal ONL and/or OS thickness; detectable ONL extended well beyond EZ edge. At the EZ edge, the local slope of LA sensitivity loss was 2.6 (±1.7) dB/deg for central transition zones. At greater eccentricities, the local slope of cone sensitivity loss was shallower (1.1 ± 0.4 dB/deg for LA) than that of rod sensitivity loss (2.8 ± 1.2 dB/deg for DA). In USH1B-MYO7A, constriction rate of EZ extent depends on the initial eccentricity of the transition. Ellipsoid zone edges in the macula correspond to large local changes in cone vision, but extramacular EZ edges show more pronounced losses on rod-based vision tests. It is advisable to use not only the EZ line but also other structural and functional parameters for estimating natural history of disease and possible therapeutic effects in future clinical trials of USH1B-MYO7A."	"Spectrum of DNA variants for non-syndromic deafness in a large cohort from multiple continents. Hearing loss is the most common sensory deficit in humans with causative variants in over 140 genes. With few exceptions, however, the population-specific distribution for many of the identified variants/genes is unclear. Until recently, the extensive genetic and clinical heterogeneity of deafness precluded comprehensive genetic analysis. Here, using a custom capture panel (MiamiOtoGenes), we undertook a targeted sequencing of 180 genes in a multi-ethnic cohort of 342 GJB2 mutation-negative deaf probands from South Africa, Nigeria, Tunisia, Turkey, Iran, India, Guatemala, and the United States (South Florida). We detected causative DNA variants in 25 % of multiplex and 7 % of simplex families. The detection rate varied between 0 and 57 % based on ethnicity, with Guatemala and Iran at the lower and higher end of the spectrum, respectively. We detected causative variants within 27 genes without predominant recurring pathogenic variants. The most commonly implicated genes include MYO15A, SLC26A4, USH2A, MYO7A, MYO6, and TRIOBP. Overall, our study highlights the importance of family history and generation of databases for multiple ethnically discrete populations to improve our ability to detect and accurately interpret genetic variants for pathogenicity."	"Expression pattern of wolframin, the WFS1 (Wolfram syndrome-1 gene) product, in common marmoset (Callithrix jacchus) cochlea. Wolfram syndrome is an autosomal recessive disorder of the neuroendocrine system, known as DIDMOAD (Diabetes Insipidus, Diabetes Mellitus, Optic Atrophy and Deafness) syndrome, and considered an endoplasmic reticulum disease. Patients show mutations in WFS1, which encodes the 890 amino acid protein wolframin. Although Wfs1 knockout mice develop diabetes, their hearing level is completely normal. In this study, we examined the expression of wolframin in the cochlea of a nonhuman primate common marmoset (Callithrix jacchus) to elucidate the discrepancy in the phenotype between species and the pathophysiology of Wolfram syndrome-associated deafness. The marmoset cochlea showed wolframin immunoreactivity not only in the spiral ligament type I fibrocytes, spiral ganglion neurons, outer hair cells, and supporting cells, but in the stria vascularis basal cells, where wolframin expression was not observed in the previous mouse study. Considering the absence of the deafness phenotype in Wfs1 knockout mice, the expression of wolframin in the basal cells of primates may play an essential role in the maintenance of hearing. Elucidating the function of wolframin protein in the basal cells of primates would be essential for understanding the pathogenesis of hearing loss in patients with Wolfram syndrome, which may lead to the discovery of new therapeutics."	"The E3 ligase Ubr3 regulates Usher syndrome and MYH9 disorder proteins in the auditory organs of Drosophila and mammals. Myosins play essential roles in the development and function of auditory organs and multiple myosin genes are associated with hereditary forms of deafness. Using a forward genetic screen in Drosophila, we identified an E3 ligase, Ubr3, as an essential gene for auditory organ development. Ubr3 negatively regulates the mono-ubiquitination of non-muscle Myosin II, a protein associated with hearing loss in humans. The mono-ubiquitination of Myosin II promotes its physical interaction with Myosin VIIa, a protein responsible for Usher syndrome type IB. We show that ubr3 mutants phenocopy pathogenic variants of Myosin II and that Ubr3 interacts genetically and physically with three Usher syndrome proteins. The interactions between Myosin VIIa and Myosin IIa are conserved in the mammalian cochlea and in human retinal pigment epithelium cells. Our work reveals a novel mechanism that regulates protein complexes affected in two forms of syndromic deafness and suggests a molecular function for Myosin IIa in auditory organs."	"Identification of genomic deletions causing inherited retinal degenerations by coverage analysis of whole exome sequencing data. Inherited retinal degenerations (IRDs) are a common cause of visual disturbance with a high clinical and genetic heterogeneity. Recent sequencing techniques such as whole exome sequencing (WES) contribute to the discovery of novel genes. The aim of the current study was to use WES data to identify large deletions that include at least one exon in known IRD genes. Patients diagnosed with IRDs underwent a comprehensive ophthalmic evaluation. WES was performed using the NimbleGen V2 paired-end kit and HiSeq 2000. An analysis of exon coverage data was performed on 60 WES samples. Exonic deletions were verified by 'PCR walking' analysis. We analysed data obtained from 60 WES samples of index patients with IRDs. By calculating the average coverage for all exons in the human genome, we were able to identify homozygous and hemizygous deletions of at least one exon in six families (10%), including a single-exon deletion in EYS, deletions of three consecutive exons in MYO7A and NPHP4, deletions of four and eight consecutive exons in RPGR and a multigene deletion on the X-chromosome, including CHM. By using PCR-walking analysis, we were able to identify the borders of five of the deletions and to screen our set of patients for these deletions. We performed here a comprehensive analysis of WES data as a tool for identifying large genomic deletions in patients with IRDs. Our analysis indicates that large deletions are relatively frequent (about 10% of our WES cohort) and should be screened when analysing WES data."	"Culture conditions have an impact on the maturation of traceable, transplantable mouse embryonic stem cell-derived otic progenitor cells. The generation of replacement inner ear hair cells (HCs) remains a challenge and stem cell therapy holds the potential for developing therapeutic solutions to hearing and balance disorders. Recent developments have made significant strides in producing mouse otic progenitors using cell culture techniques to initiate HC differentiation. However, no consensus has been reached as to efficiency and therefore current methods remain unsatisfactory. In order to address these issues, we compare the generation of otic and HC progenitors from embryonic stem (ES) cells in two cell culture systems: suspension vs. adherent conditions. In the present study, an ES cell line derived from an Atoh1-green fluorescent protein (GFP) transgenic mouse was used to track the generation of otic progenitors, initial HCs and to compare these two differentiation systems. We used a two-step short-term differentiation method involving an induction period of 5 days during which ES cells were cultured in the presence of Wnt/transforming growth factor TGF-β inhibitors and insulin-like growth factor IGF-1 to suppress mesoderm and reinforce presumptive ectoderm and otic lineages. The generated embryoid bodies were then differentiated in medium containing basic fibroblast growth factor (bFGF) for an additional 5 days using either suspension or adherent culture methods. Upon completion of differentiation, quantitative polymerase chain reaction analysis and immunostaining monitored the expression of otic/HC progenitor lineage markers. The results indicate that cells differentiated in suspension cultures produced cells expressing otic progenitor/HC markers at a higher efficiency compared with the production of these cell types within adherent cultures. Furthermore, we demonstrated that a fraction of these cells can incorporate into ototoxin-injured mouse postnatal cochlea explants and express MYO7A after transplantation. Copyright © 2016 John Wiley &amp; Sons, Ltd."	"Genetics of vestibular disorders: pathophysiological insights. The two most common vestibular disorders are motion sickness and vestibular migraine, affecting 30 and 1-2% of the population respectively. Both are related to migraine and show a familial trend. Bilateral vestibular hypofunction is a rare condition, and some of patients also present cerebellar ataxia and neuropathy. We present recent advances in the genetics of vestibular disorders with familial aggregation. The clinical heterogeneity observed in different relatives of the same families suggests a variable penetrance and the interaction of several genes in each family. Some Mendelian sensorineural hearing loss also exhibits vestibular dysfunction, including DFNA9, DFNA11, DFNA15 and DFNA28. However, the most relevant finding during the past years is the familial clustering observed in Meniere's disease. By using whole exome sequencing and combining bioinformatics tools, novel variants in DTNA and FAM136A genes have been identified in familial Meniere's disease, and this genomic strategy will facilitate the discovery of the genetic basis of familial vestibular disorders."	"DNA Diagnostics of Hereditary Hearing Loss: A Targeted Resequencing Approach Combined with a Mutation Classification System. Although there are nearly 100 different causative genes identified for nonsyndromic hearing loss (NSHL), Sanger sequencing-based DNA diagnostics usually only analyses three, namely, GJB2, SLC26A4, and OTOF. As this is seen as inadequate, there is a need for high-throughput diagnostic methods to detect disease-causing variations, including single-nucleotide variations (SNVs), insertions/deletions (Indels), and copy-number variations (CNVs). In this study, a targeted resequencing panel for hearing loss was developed including 79 genes for NSHL and selected forms of syndromic hearing loss. One-hundred thirty one presumed autosomal-recessive NSHL (arNSHL) patients of Western-European ethnicity were analyzed for SNVs, Indels, and CNVs. In addition, we established a straightforward variant classification system to deal with the large number of variants encountered. We estimate that combining prescreening of GJB2 with our panel leads to a diagnosis in 25%-30% of patients. Our data show that after GJB2, the most commonly mutated genes in a Western-European population are TMC1, MYO15A, and MYO7A (3.1%). CNV analysis resulted in the identification of causative variants in two patients in OTOA and STRC. One of the major challenges for diagnostic gene panels is assigning pathogenicity for variants. A collaborative database collecting all identified variants from multiple centers could be a valuable resource for hearing loss diagnostics."	"Genetic Correction of Induced Pluripotent Stem Cells From a Deaf Patient With MYO7A Mutation Results in Morphologic and Functional Recovery of the Derived Hair Cell-Like Cells. The genetic correction of induced pluripotent stem cells (iPSCs) induced from somatic cells of patients with sensorineural hearing loss (caused by hereditary factors) is a promising method for its treatment. The correction of gene mutations in iPSCs could restore the normal function of cells and provide a rich source of cells for transplantation. In the present study, iPSCs were generated from a deaf patient with compound heterozygous MYO7A mutations (c.1184G&gt;A and c.4118C&gt;T; P-iPSCs), the asymptomatic father of the patient (MYO7A c.1184G&gt;A mutation; CF-iPSCs), and a normal donor (MYO7A(WT/WT); C-iPSCs). One of MYO7A mutation sites (c.4118C&gt;T) in the P-iPSCs was corrected using CRISPR/Cas9. The corrected iPSCs (CP-iPSCs) retained cell pluripotency and normal karyotypes. Hair cell-like cells induced from CP-iPSCs showed restored organization of stereocilia-like protrusions; moreover, the electrophysiological function of these cells was similar to that of cells induced from C-iPSCs and CF-iPSCs. These results might facilitate the development of iPSC-based gene therapy for genetic disorders. Induced pluripotent stem cells (iPSCs) were generated from a deaf patient with compound heterozygous MYO7A mutations (c.1184G&gt;A and c.4118C&gt;T). One of the MYO7A mutation sites (c.4118C&gt;T) in the iPSCs was corrected using CRISPR/Cas9. The genetic correction of MYO7A mutation resulted in morphologic and functional recovery of hair cell-like cells derived from iPSCs. These findings confirm the hypothesis that MYO7A plays an important role in the assembly of stereocilia into stereociliary bundles. Thus, the present study might provide further insight into the pathogenesis of sensorineural hearing loss and facilitate the development of therapeutic strategies against monogenic disease through the genetic repair of patient-specific iPSCs."	"Novel compound heterozygous mutations in MYO7A gene associated with autosomal recessive sensorineural hearing loss in a Chinese family. Mutations in MYO7A gene have been reported to be associated with Usher Syndrome type 1B (USH1B) and nonsyndromic hearing loss (DFNB2, DFNA11). Most mutations in MYO7A gene caused USH1B, whereas only a few reported mutations led to DFNB2 and DFNA11. The current study was designed to investigate the mutations among a Chinese family with autosomal recessive hearing loss. In this study, we present the clinical, genetic and molecular characteristics of a Chinese family. Targeted capture of 127 known deafness genes and next-generation sequencing were employed to study the genetic causes of two siblings in the Chinese family. Sanger sequencing was employed to examine those variant mutations in the members of this family and other ethnicity-matched controls. We identified the novel compound heterozygous mutant alleles of MYO7A gene: a novel missense mutation c.3671C&gt;A (p.A1224D) and a reported insert mutation c.390_391insC (p.P131PfsX9). Variants were further confirmed by Sanger sequencing. These two compound heterozygous variants were co-segregated with autosomal recessive hearing loss phenotype. The gene mutation analysis and protein sequence alignment further supported that the novel compound heterozygous mutations were pathogenic. The novel compound heterozygous mutations (c.3671C&gt;A and c.390_391insC) in MYO7A gene identified in this study were responsible for the autosomal recessive sensorineural hearing loss of this Chinese family."	"The unconventional myosin CRINKLED and its mammalian orthologue MYO7A regulate caspases in their signalling roles. Caspases provide vital links in non-apoptotic regulatory networks controlling inflammation, compensatory proliferation, morphology and cell migration. How caspases are activated under non-apoptotic conditions and process a selective set of substrates without killing the cell remain enigmatic. Here we find that the Drosophila unconventional myosin CRINKLED (CK) selectively interacts with the initiator caspase DRONC and regulates some of its non-apoptotic functions. Loss of CK in the arista, border cells or proneural clusters of the wing imaginal discs affects DRONC-dependent patterning. Our data indicate that CK acts as substrate adaptor, recruiting SHAGGY46/GSK3-β to DRONC, thereby facilitating caspase-mediated cleavage and localized modulation of kinase activity. Similarly, the mammalian CK counterpart, MYO7A, binds to and impinges on CASPASE-8, revealing a new regulatory axis affecting receptor interacting protein kinase-1 (RIPK1)&gt;CASPASE-8 signalling. Together, our results expose a conserved role for unconventional myosins in transducing caspase-dependent regulation of kinases, allowing them to take part in specific signalling events. "	"Mild Maternal Iron Deficiency Anemia Induces Hearing Impairment Associated with Reduction of Ribbon Synapse Density and Dysregulation of VGLUT3, Myosin VIIa, and Prestin Expression in Young Guinea Pigs. Mild maternal iron deficiency anemia (IDA) adversely affects the development of cochlear hair cells of the young offspring, but the mechanisms underlying the association are incompletely understood. The aim of this study was to evaluate whether mild maternal IDA in guinea pigs could interrupt inner hair cell (IHC) ribbon synapse density and outer hair cell motility of the offspring. Here, we established a dietary restriction model that allows us to study quantitative changes in the number of IHC ribbon synapses and hearing impairment in response to mild maternal IDA in young guinea pig. The offspring were weaned on postnatal day (PND) 9 and then were given the iron-sufficient diet. On PND 24, pups were examined the hearing function by auditory brainstem response (ABR) and distortion product otoacoustic emission (DPOAE) measurements. Then, the cochleae were harvested for assessment of the number of IHC ribbon synapses by immunofluorescence, the morphology of cochlear hair cells, and spiral ganglion cells (SGCs) by scanning electron microscope and hematoxylin-eosin staining, the location, and expression of vesicular glutamate transporter (VGLUT) 3, myosin VIIa, and prestin by immunofluorescence and blotting. Here, we show that mild maternal IDA in guinea pigs induced elevated ABR threshold shifts, declined DPOAE level shifts, and reduced the number of ribbon synapses, impaired the morphology of cochlear hair cells and SGCs in offsprings. In addition, downregulation of VGLUT3 and myosin VIIa, and upregulation of prestin were observed in the cochlea of offsprings from mild maternal IDA in guinea pigs. These data indicate that mild maternal IDA in guinea pigs induced hearing impairment in offsprings, and this deficit may be attributed to the reduction of ribbon synapse density and dysregulation of VGLUT3, myosin VIIa, and prestin. "	"A novel homozygous MYO7A mutation involved in a Venezuelan population with high frequency of USHER1B. Macanao's population in Venezuela has perhaps the greatest incidence of USH1B known in Latin America (79 cases per 100,000 population); however, until now no mutation in the MYO7A gene had been reported for this population. This study aimed to evaluate the entire coding region of the MYO7A gene by direct sequencing of PCR products obtained from patients clinically diagnosed with USH1B. A novel mutation named c.6079_6081del was detected on exon 45 of the MYO7A gene, causing the loss of a single histidine amino acid at codon 2027 (p.H2027del) located within the second FERM domain of the human protein myosin VIIA. Three patients with clinical diagnosis of USH1B were detected positive in homozygosis for the c.6079_6081del mutation; whereas six people from the same affected family were heterozygotes and three other family members were negative. We suggest that this new mutation named c.6079_6081del (p.H2027del) is the main cause of deaf-blindness found in this family clinically diagnosed as USH1B. Additional studies should be performed on this population to determine whether the c.6079_6081del mutation is the main cause of USH1B for the rest of the population."	"Frequency of Usher syndrome type 1 in deaf children by massively parallel DNA sequencing. Usher syndrome type 1 (USH1) is the most severe of the three USH subtypes due to its profound hearing loss, absent vestibular response and retinitis pigmentosa appearing at a prepubescent age. Six causative genes have been identified for USH1, making early diagnosis and therapy possible through DNA testing. Targeted exon sequencing of selected genes using massively parallel DNA sequencing (MPS) technology enables clinicians to systematically tackle previously intractable monogenic disorders and improve molecular diagnosis. Using MPS along with direct sequence analysis, we screened 227 unrelated non-syndromic deaf children and detected recessive mutations in USH1 causative genes in five patients (2.2%): three patients harbored MYO7A mutations and one each carried CDH23 or PCDH15 mutations. As indicated by an earlier genotype-phenotype correlation study of the CDH23 and PCDH15 genes, we considered the latter two patients to have USH1. Based on clinical findings, it was also highly likely that one patient with MYO7A mutations possessed USH1 due to a late onset age of walking. This first report describing the frequency (1.3-2.2%) of USH1 among non-syndromic deaf children highlights the importance of comprehensive genetic testing for early disease diagnosis. "	"Exome Sequencing Reveals AGBL5 as Novel Candidate Gene and Additional Variants for Retinitis Pigmentosa in Five Turkish Families. Retinitis pigmentosa (RP) is the most common inherited retinal disease with high genetic heterogeneity and variable phenotypes. Characteristic symptoms include night blindness and progressive loss of visual field, leading to blindness. Mutations in &gt;60 genes have been identified to date as causative for RP, and additional candidate genes are assumed. To find the disease-causing mutations in the affected members of five Turkish families, we sequenced whole exomes using an Illumina platform. Among all candidate genes for retinal degeneration we found two previously known sequence variations: a 4 bp deletion in the RPGR gene (c.1662_1665delAGAA; p.Glu555Glyfs*14) and a recently described USH1-causing missense mutation in MYO7A (c.472G&gt;A, p.Gly158Arg). Furthermore, a novel 1 bp deletion in the VCAN gene (c.5118delA; p.Ser1707Valfs*44) was detected as well as a large deletion in EYS, spanning ∼ 400kb and comprising exons 16-26 (p.fs*). In one family, exome analyses of two affected individuals revealed a homozygous missense mutation (c.883G&gt;A; p.Asp295Asn) in the AGBL5 (Agbl5; CCP5) gene, previously not reported to be associated with RP. RNA and protein analyses showed expression in human retina, as well as in mouse retina, brain and testis. Furthermore, cDNA analyses indicate the existence of tissue-specific AGBL5 splice variations in humans. AGBL5/CCP5 immunoreactivity was also visualized in human and mouse retinae. Due to the characteristic RP phenotype in patients carrying the AGBL5 missense mutation we suggest this gene as a candidate for a new form of autosomal recessively inherited RP and recommend further investigation to confirm this hypothesis."	"Novel grading system for quantification of cystic macular lesions in Usher syndrome. To evaluate novel grading system used to quantify optical coherence tomography (OCT) scans for cystic macular lesions (CML) in Usher syndrome (USH) patients, focusing on CML associated alterations in MOY7A and USH2A mutations. Two readers evaluated 76 patients' (mean age 42 ± 14 years) data prospectively uploaded on Eurush database. OCT was used to obtain high quality cross-sectional images through the fovea. The CML was graded as none, mild, moderate or severe, depending on the following features set: subretinal fluid without clearly detectable CML boundaries; central macular thickness; largest diameter of CML; calculated mean of all detectable CML; total number of detectable CML; retinal layers affected by CML. Intra-and inter-grader reproducibility was evaluated. CML were observed in 37 % of USH eyes, while 45 % were observed in MYO7A and 29 % in USH2A cases. Of those with CML: 52 % had mild, 22 % had moderate and 26 % had severe changes, respectively. CML were found in following retinal layers: 50 % inner nuclear layer, 44 % outer nuclear layer, 6 % retinal ganglion cell layer. For the inter-grader repeatability analysis, agreements rates for CML were 97 % and kappa statistics was 0.91 (95 % CI 0.83-0.99). For the intra-grader analysis, agreement rates for CML were 98 %, while kappa statistics was 0.96 (95 % CI 0.92-0.99). The novel grading system is a reproducible tool for grading OCT images in USH complicated by CML, and potentially could be used for objective tracking of macular pathology in clinical therapy trials."	"Impact of the Usher syndrome on olfaction. Usher syndrome is a genetically and clinically heterogeneous disease in humans, characterized by sensorineural hearing loss, retinitis pigmentosa and vestibular dysfunction. This disease is caused by mutations in genes encoding proteins that form complex networks in different cellular compartments. Currently, it remains unclear whether the Usher proteins also form networks within the olfactory epithelium (OE). Here, we describe Usher gene expression at the mRNA and protein level in the OE of mice and showed interactions between these proteins and olfactory signaling proteins. Additionally, we analyzed the odor sensitivity of different Usher syndrome mouse models using electro-olfactogram recordings and monitored significant changes in the odor detection capabilities in mice expressing mutant Usher proteins. Furthermore, we observed changes in the expression of signaling proteins that might compensate for the Usher protein deficiency. In summary, this study provides novel insights into the presence and purpose of the Usher proteins in olfactory signal transduction. "	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"A Founder Mutation in MYO7A Underlies a Significant Proportion of Usher Syndrome in Indigenous South Africans: Implications for the African Diaspora. Research over the past 25 years at the University of Cape Town has led to the identification of causative mutations in 17% of the 1416 families in the Retinal Degenerative Diseases (RDD) biorepository in South Africa. A low rate of mutation detection has been observed in patients of indigenous African origin, hinting at novel genes and mutations in this population. Recently, however, data from our translational research program showed two unrelated indigenous African families with Usher syndrome (USH), with the same homozygous MYO7A mutation. Therefore, the extent to which this mutation contributes toward the disease burden in South Africa was investigated. Cohorts of unrelated indigenous South African probands with different RDD diagnoses were tested for the MYO7A c.6377delC mutation. Familial cosegregation analysis was performed for homozygous probands, clinical data were evaluated, and SNP haplotypes were analyzed. This homozygous MYO7A mutation underlies a remarkable 43% of indigenous African USH cases investigated in this study, the majority of which (60%) were diagnosed clinically with Type 2 USH. All homozygotes shared a common haplotype. This mutation does not appear to cause nonsyndromic vision loss. Of interest is the origin of this common mutation relevant to the Bantu population migration into southern Africa. Further investigation of the phenotype may elucidate the disease biology, and perhaps reveal a larger cohort with the same mutation, with which to assess the impact of environmental and genetic modifiers and evaluate therapeutic trials."	"Characterising the spectrum of autosomal recessive hereditary hearing loss in Iran. Countries with culturally accepted consanguinity provide a unique resource for the study of rare recessively inherited genetic diseases. Although hereditary hearing loss (HHL) is not uncommon, it is genetically heterogeneous, with over 85 genes causally implicated in non-syndromic hearing loss (NSHL). This heterogeneity makes many gene-specific types of NSHL exceedingly rare. We sought to define the spectrum of autosomal recessive HHL in Iran by investigating both common and rarely diagnosed deafness-causing genes. Using a custom targeted genomic enrichment (TGE) panel, we simultaneously interrogated all known genetic causes of NSHL in a cohort of 302 GJB2-negative Iranian families. We established a genetic diagnosis for 67% of probands and their families, with over half of all diagnoses attributable to variants in five genes: SLC26A4, MYO15A, MYO7A, CDH23 and PCDH15. As a reflection of the power of consanguinity mapping, 26 genes were identified as causative for NSHL in the Iranian population for the first time. In total, 179 deafness-causing variants were identified in 40 genes in 201 probands, including 110 novel single nucleotide or small insertion-deletion variants and three novel CNV. Several variants represent founder mutations. This study attests to the power of TGE and massively parallel sequencing as a diagnostic tool for the evaluation of hearing loss in Iran, and expands on our understanding of the genetics of HHL in this country. Families negative for variants in the genes represented on this panel represent an excellent cohort for novel gene discovery."	"Correction: Novel Compound Heterozygous Mutations in MYO7A Associated with Usher Syndrome 1 in a Chinese Family. NA"	"Comprehensive molecular diagnosis of 67 Chinese Usher syndrome probands: high rate of ethnicity specific mutations in Chinese USH patients. Usher syndrome (USH) is the most common disease causing combined deafness and blindness. It is predominantly an autosomal recessive genetic disorder with occasionally digenic cases. Molecular diagnosis of USH patients is important for disease management. Few studies have tried to find the genetic cause of USH in Chinese patients. This study was designed to determine the mutation spectrum of Chinese USH patients. We applied next generation sequencing to characterize the mutation spectrum in 67 independent Chinese families with at least one member diagnosed with USH. Blood was collected at Peking Union Medical College Hospital. This cohort is one of the largest USH cohorts reported. We utilized customized panel and whole exome sequencing, variant analysis, Sanger validation and segregation tests to find disease causing mutations in these families. We identified biallelic disease causing mutations in known USH genes in 70 % (49) of our patients. As has been previously reported, MYO7A is the most frequently mutated gene in our USH type I patients while USH2A is the most mutated gene in our USH type II patients. In addition, we identify mutations in CLRN1, DFNB31, GPR98 and PCDH15 for the first time in Chinese USH patients. Together, mutations in CLRN1, DNFB31, GPR98 and PCDH15 account for 11.4 % of disease in our cohort. Interestingly, although the spectrum of disease genes is quite similar between our Chinese patient cohort and other patient cohorts from different (and primarily Caucasian) ethnic backgrounds, the mutations themselves are dramatically different. In particular, 76 % (52/68) of alleles found in this study have never been previously reported. Interestingly, we observed a strong enrichment for severe protein truncating mutations expected to have severe functional consequence on the protein in USH II patients compared to the reported mutation spectrum in RP patients, who often carry partial protein truncating mutations. Our study provides the first comprehensive genetic characterization of a large collection of Chinese USH patients. Up to 90 % of USH patients have disease caused by mutations in known USH disease genes. By combining NGS-based molecular diagnosis and patient clinical information, a more accurate diagnosis, prognosis and personalized treatment of USH patients can be achieved."	"Phenotype of Usher syndrome type II assosiated with compound missense mutations of c.721 C&gt;T and c.1969 C&gt;T in MYO7A in a Chinese Usher syndrome family. To identify the pathogenic mutations in a Chinese pedigree affected with Usher syndrome type II (USH2). The ophthalmic examinations and audiometric tests were performed to ascertain the phenotype of the family. To detect the genetic defect, exons of 103 known RDs -associated genes including 12 Usher syndrome (USH) genes of the proband were captured and sequencing analysis was performed to exclude known genetic defects and find potential pathogenic mutations. Subsequently, candidate mutations were validated in his pedigree and 100 normal controls using polymerase chain reaction (PCR) and Sanger sequencing. The patient in the family occurred hearing loss (HL) and retinitis pigmentosa (RP) without vestibular dysfunction, which were consistent with standards of classification for USH2. He carried the compound heterozygous mutations, c.721 C&gt;T and c.1969 C&gt;T, in the MYO7A gene and the unaffected members carried only one of the two mutations. The mutations were not present in the 100 normal controls. We suggested that the compound heterozygous mutations of the MYO7A could lead to USH2, which had revealed distinguished clinical phenotypes associated with MYO7A and expanded the spectrum of clinical phenotypes of the MYO7A mutations."	"Microtubule motors transport phagosomes in the RPE, and lack of KLC1 leads to AMD-like pathogenesis. The degradation of phagosomes, derived from the ingestion of photoreceptor outer segment (POS) disk membranes, is a major role of the retinal pigment epithelium (RPE). Here, POS phagosomes were observed to associate with myosin-7a, and then kinesin-1, as they moved from the apical region of the RPE. Live-cell imaging showed that the phagosomes moved bidirectionally along microtubules in RPE cells, with kinesin-1 light chain 1 (KLC1) remaining associated in both directions and during pauses. Lack of KLC1 did not inhibit phagosome speed, but run length was decreased, and phagosome localization and degradation were impaired. In old mice, lack of KLC1 resulted in RPE pathogenesis that was strikingly comparable to aspects of age-related macular degeneration (AMD), with an excessive accumulation of RPE and sub-RPE deposits, as well as oxidative and inflammatory stress responses. These results elucidate mechanisms of POS phagosome transport in relation to degradation, and demonstrate that defective microtubule motor transport in the RPE leads to phenotypes associated with AMD."	"Comprehensive analysis via exome sequencing uncovers genetic etiology in autosomal recessive nonsyndromic deafness in a large multiethnic cohort. Autosomal recessive nonsyndromic deafness (ARNSD) is characterized by a high degree of genetic heterogeneity, with reported mutations in 58 different genes. This study was designed to detect deafness-causing variants in a multiethnic cohort with ARNSD by using whole-exome sequencing (WES). After excluding mutations in the most common gene, GJB2, we performed WES in 160 multiplex families with ARNSD from Turkey, Iran, Mexico, Ecuador, and Puerto Rico to screen for mutations in all known ARNSD genes. We detected ARNSD-causing variants in 90 (56%) families, 54% of which had not been previously reported. Identified mutations were located in 31 known ARNSD genes. The most common genes with mutations were MYO15A (13%), MYO7A (11%), SLC26A4 (10%), TMPRSS3 (9%), TMC1 (8%), ILDR1 (6%), and CDH23 (4%). Nine mutations were detected in multiple families with shared haplotypes, suggesting founder effects. We report on a large multiethnic cohort with ARNSD in which comprehensive analysis of all known ARNSD genes identifies causative DNA variants in 56% of the families. In the remaining families, WES allows us to search for causative variants in novel genes, thus improving our ability to explain the underlying etiology in more families.Genet Med 18 4, 364-371."	"Expression of myosin VIIA in the developing chick inner ear neurons. The auditory-vestibular ganglion (AVG) is formed by the division of otic placode-derived neuroblasts, which then differentiate into auditory and vestibular afferent neurons. The developmental mechanisms that regulate neuronal cell fate determination, axonal pathfinding and innervation of otic neurons are poorly understood. The present study characterized the expression of myosin VIIA, along with the neuronal markers, Islet1, NeuroD1 and TuJ1, in the developing avian ear, during Hamburger-Hamilton (HH) stages 16-40. At early stages, when neuroblasts are delaminating from the otic epithelium, myosin VIIA expression was not observed. Myosin VIIA was initially detected in a subset of neurons during the early phase of neuronal differentiation (HH stage 20). As the AVG segregates into the auditory and vestibular portions, myosin VIIA was restricted to a subset of vestibular neurons, but was not present in auditory neurons. Myosin VIIA expression in the vestibular ganglion was maintained through HH stage 33 and was downregulated by stage 36. Myosin VIIA was also observed in the migrating processes of vestibular afferents as they begin to innervate the otic epithelium HH stage 22/23. Notably, afferents targeting hair cells of the cristae were positive for myosin VIIA while afferents targeting the utricular and saccular maculae were negative (HH stage 26-28). Although previous studies have reported that myosin VIIA is restricted to sensory hair cells, our data shows that myosin VIIA is also expressed in neurons of the developing chick ear. Our study suggests a possible role for myosin VIIA in axonal migration/pathfinding and/or innervation of vestibular afferents. In addition, myosin VIIA could be used as an early marker for vestibular neurons during the development of the avian AVG. "	"Developmental expression of inositol 1, 4, 5-trisphosphate receptor in the post-natal rat cochlea. Inositol 1, 4, 5-trisphosphate receptor (IP3R) has been established to be essential for hearing. However, the expression of IP3R in the cochlea in the period of auditory development remains unknown. We investigated the expression of IP3R in the developing rat cochlea using immunohistochemistry and real-time reverse transcription polymerase chain reaction (RT-PCR). We observed its presence in the developing rat cochlea, and changes in IP3R protein expressions from the early post-natal period to adult. At birth (post-natal day 0, P0), IP3R expression was only found in Hensen's cell. IP3R immunoreactivity first appeared in the sensory hair cells in the organ of Corti at P2. This localization was confirmed by means of double-labeling experiments with Myosin VIIA, a marker for cochlear hair cells. Colocalization of IP3R and Myosin VIIA from P2 to the second post-natal week suggested early expression of IP3R in developing inner and outer hair cells. Claudius' cells near the spiral ligament were labelled for IP3R from P8 onwards. Transient IP3R expression was observed in the stria vascularis in early post-natal rat from P4 to P8. Spiral ganglion neurons also exhibited weaker IP3R fluorescence signals during post-natal development. The results of RT-PCR demonstrated that all three IP3R isoforms (IP3R1, IP3R2, and IP3R3) were present in rat cochlea during four different developmental stages of cochlea, from P0 to P28. Present immunohistochemical evidence for both change and maintenance of expression of IP3R during post-natal development of the rat cochlea indicated the possible involvement of IP3R-mediated calcium signaling in cochlear development. "	"Targeted next-generation sequencing in Uyghur families with non-syndromic sensorineural hearing loss. The mutation spectrum of deafness genes may vary in different ethnical groups. In this study, we investigated the genetic etiology of nonsyndromic deafness in four consanguineous and two multiplex Uyghur families in which mutations in common deafness genes GJB2, SLC26A4 and MT-RNR1 were excluded. Targeted next-generation sequencing of 97 deafness genes was performed in the probands of each family. Novel pathogenic mutations were identified in four probands including the p.L416R/p.A438T compound heterozygous mutations in TMC1, the homozygous p.V1880E mutation in MYO7A, c.1238delT frameshifting deletion in PCDH15 and c.9690+1G&gt;A splice site mutation in MYO15A. Co-segregation of the mutations and the deafness were confirmed within each family by Sanger sequencing. No pathogenic mutations were identified in one multiplex family and one consanguineous family. Our study provided a useful piece of information for the genetic etiology of deafness in Uyghurs. "	"Structure and Regulation of the Movement of Human Myosin VIIA. Human myosin VIIA (HM7A) is responsible for human Usher syndrome type 1B, which causes hearing and visual loss in humans. Here we studied the regulation of HM7A. The actin-activated ATPase activity of full-length HM7A (HM7AFull) was lower than that of tail-truncated HM7A (HM7AΔTail). Deletion of the C-terminal 40 amino acids and mutation of the basic residues in this region (R2176A or K2179A) abolished the inhibition. Electron microscopy revealed that HM7AFull is a monomer in which the tail domain bends back toward the head-neck domain to form a compact structure. This compact structure is extended at high ionic strength or in the presence of Ca(2+). Although myosin VIIA has five isoleucine-glutamine (IQ) motifs, the neck length seems to be shorter than the expected length of five bound calmodulins. Supporting this observation, the IQ domain bound only three calmodulins in Ca(2+), and the first IQ motif failed to bind calmodulin in EGTA. These results suggest that the unique IQ domain of HM7A is important for the tail-neck interaction and, therefore, regulation. Cellular studies revealed that dimer formation of HM7A is critical for its translocation to filopodial tips and that the tail domain (HM7ATail) markedly reduced the filopodial tip localization of the HM7AΔTail dimer, suggesting that the tail-inhibition mechanism is operating in vivo. The translocation of the HM7AFull dimer was significantly less than that of the HM7AΔTail dimer, and R2176A/R2179A mutation rescued the filopodial tip translocation. These results suggest that HM7A can transport its cargo molecules, such as USH1 proteins, upon release of the tail-dependent inhibition. "	"Insulin resistance due to dietary iron overload disrupts inner hair cell ribbon synapse plasticity in male mice. To evaluate whether cochlear inner hair cells (IHCs) ribbon synapse plasticity would be interrupted by insulin resistance (IR) due to dietary iron overload, we established an IR model in C57Bl/6 male mice with an iron-enriched diet for 16 weeks. Glucose levels were measured at weeks 4, 8, 12, 16. Glucose tolerance test and insulin tolerance test were performed at week 16 after overnight fasting. Then, auditory brainstem responses (ABRs) measurements were performed for hearing threshold shifts. After ABR measurements, cochleae were harvested for assessment of the number of IHC ribbon synapses by immunostaining, the morphology of cochlear hair cells and spiral ganglion neurons (SGNs) by transmission electron microscopy or immunostaining. Here, we show that IR due to dietary iron overload decreased the number of ribbon synapses, and induced moderate ABR threshold elevations. Besides, additional components including outer hair cells (OHCs), IHCs, and SGNs were unaffected. Moreover, IR did not disrupt the expression of vesicular glutamate transporter 3 (VGLUT3), myosin VIIa and prestin in hair cells. These results indicate that IHC ribbon synapses may be more susceptible to IR due to dietary iron overload. "	"Whole exome sequencing identifies mutations in Usher syndrome genes in profoundly deaf Tunisian patients. Usher syndrome (USH) is an autosomal recessive disorder characterized by combined deafness-blindness. It accounts for about 50% of all hereditary deafness blindness cases. Three clinical subtypes (USH1, USH2, and USH3) are described, of which USH1 is the most severe form, characterized by congenital profound deafness, constant vestibular dysfunction, and a prepubertal onset of retinitis pigmentosa. We performed whole exome sequencing in four unrelated Tunisian patients affected by apparently isolated, congenital profound deafness, with reportedly normal ocular fundus examination. Four biallelic mutations were identified in two USH1 genes: a splice acceptor site mutation, c.2283-1G&gt;T, and a novel missense mutation, c.5434G&gt;A (p.Glu1812Lys), in MYO7A, and two previously unreported mutations in USH1G, i.e. a frameshift mutation, c.1195_1196delAG (p.Leu399Alafs*24), and a nonsense mutation, c.52A&gt;T (p.Lys18*). Another ophthalmological examination including optical coherence tomography actually showed the presence of retinitis pigmentosa in all the patients. Our findings provide evidence that USH is under-diagnosed in Tunisian deaf patients. Yet, early diagnosis of USH is of utmost importance because these patients should undergo cochlear implant surgery in early childhood, in anticipation of the visual loss. "	"Deafness gene variations in a 1120 nonsyndromic hearing loss cohort: molecular epidemiology and deafness mutation spectrum of patients in Japan. To elucidate the molecular epidemiology of hearing loss in a large number of Japanese patients analyzed using massively parallel DNA sequencing (MPS) of target genes. We performed MPS of target genes using the Ion PGM system with the Ion AmpliSeq and HiSeq 2000 systems using SureSelect in 1389 samples (1120 nonsyndromic hearing loss cases and 269 normal hearing controls). We filtered the variants identified using allele frequencies in a large number of controls and 12 predication program scores. We identified 8376 kinds of variants in the 1389 samples, and 409 835 total variants were detected. After filtering the variants, we selected 2631 kinds of candidate variants. The number of GJB2 mutations was exceptionally high among these variants, followed by those in CDH23, SLC26A4, MYO15A, COL11A2, MYO7A, and OTOF. We performed a large number of MPS analyses and clarified the genetic background of Japanese patients with hearing loss. This data set will be a powerful tool to discover rare causative gene mutations in highly heterogeneous monogenic diseases and reveal the genetic epidemiology of deafness."	"Nonviral Reprogramming of Human Wharton's Jelly Cells Reveals Differences Between ATOH1 Homologues. The transcription factor atonal homolog 1 (ATOH1) has multiple homologues that are functionally conserved across species and is responsible for the generation of sensory hair cells. To evaluate potential functional differences between homologues, human and mouse ATOH1 (HATH1 and MATH-1, respectively) were nonvirally delivered to human Wharton's jelly cells (hWJCs) for the first time. Delivery of HATH1 to hWJCs demonstrated superior expression of inner ear hair cell markers and characteristics than delivery of MATH-1. Inhibition of HES1 and HES5 signaling further increased the atonal effect. Transfection of hWJCs with HATH1 DNA, HES1 siRNA, and HES5 siRNA displayed positive identification of key hair cell and support cell markers found in the cochlea, as well as a variety of cell shapes, sizes, and features not native to hair cells, suggesting the need for further examination of other cell types induced by HATH1 expression. In the first side-by-side evaluation of HATH1 and MATH-1 in human cells, substantial differences were observed, suggesting that the two atonal homologues may not be interchangeable in human cells, and artificial expression of HATH1 in hWJCs requires further study. In the future, this line of research may lead to engineered systems that would allow for evaluation of drug ototoxicity or potentially even direct therapeutic use. "	"The regulation of gene expression in hair cells. No genes have been discovered for which expression is limited only to inner ear hair cells. This is hardly surprising, since the number of mammalian genes is estimated to be 20-25,000, and each gene typically performs many tasks in various locations. Many genes are expressed in inner ear sensory cells and not in other cells of the labyrinth. However, these genes are also expressed in other locations, often in other sensory or neuronal cell types. How gene transcription is directed specifically to hair cells is unclear. Key transcription factors that act during development can specify cell phenotypes, and the hair cell is no exception. The transcription factor ATOH1 is well known for its ability to transform nonsensory cells of the developing inner ear into hair cells. And yet, ATOH1 also specifies different sensory cells at other locations, neuronal phenotypes in the brain, and epithelial cells in the gut. How it specifies hair cells in the inner ear, but alternate cell types in other locations, is not known. Studies of regulatory DNA and transcription factors are revealing mechanisms that direct gene expression to hair cells, and that determine the hair cell identity. The purpose of this review is to summarize what is known about such gene regulation in this key auditory and vestibular cell type."	"Gene Therapy for the Retinal Degeneration of Usher Syndrome Caused by Mutations in MYO7A. Usher syndrome is a deaf-blindness disorder. One of the subtypes, Usher 1B, is caused by loss of function of the gene encoding the unconventional myosin, MYO7A. A variety of different viral-based delivery approaches have been tested for retinal gene therapy to prevent the blindness of Usher 1B, and a clinical trial based on one of these approaches has begun. This review evaluates the different approaches. "	"Usher syndrome: an effective sequencing approach to establish a genetic and clinical diagnosis. Usher syndrome is an autosomal recessive disorder characterized by retinitis pigmentosa, sensorineural hearing loss and, in some cases, vestibular dysfunction. The disorder is clinically and genetically heterogeneous and, to date, mutations in 11 genes have been described. This finding makes difficult to get a precise molecular diagnosis and offer patients accurate genetic counselling. To overcome this problem and to increase our knowledge of the molecular basis of Usher syndrome, we designed a targeted resequencing custom panel. In a first validation step a series of 16 Italian patients with known molecular diagnosis were analysed and 31 out of 32 alleles were detected (97% of accuracy). After this step, 31 patients without a molecular diagnosis were enrolled in the study. Three out of them with an uncertain Usher diagnosis were excluded. One causative allele was detected in 24 out 28 patients (86%) while the presence of both causative alleles characterized 19 patients out 28 (68%). Sixteen novel and 27 known alleles were found in the following genes: USH2A (50%), MYO7A (7%), CDH23 (11%), PCDH15 (7%) and USH1G (2%). Overall, on the 44 patients the protocol was able to characterize 74 alleles out of 88 (84%). These results suggest that our panel is an effective approach for the genetic diagnosis of Usher syndrome leading to: 1) an accurate molecular diagnosis, 2) better genetic counselling, 3) more precise molecular epidemiology data fundamental for future interventional plans. "	"Efferent innervation of turtle semicircular canal cristae: comparisons with bird and mouse. In the vestibular periphery of nearly every vertebrate, cholinergic vestibular efferent neurons give rise to numerous presynaptic varicosities that target hair cells and afferent processes in the sensory neuroepithelium. Although pharmacological studies have described the postsynaptic actions of vestibular efferent stimulation in several species, characterization of efferent innervation patterns and the relative distribution of efferent varicosities among hair cells and afferents are also integral to understanding how efferent synapses operate. Vestibular efferent markers, however, have not been well characterized in the turtle, one of the animal models used by our laboratory. Here we sought to identify reliable efferent neuronal markers in the vestibular periphery of turtle, to use these markers to understand how efferent synapses are organized, and to compare efferent neuronal labeling patterns in turtle with two other amniotes using some of the same markers. Efferent fibers and varicosities were visualized in the semicircular canal of red-eared turtles (Trachemys scripta elegans), zebra finches (Taeniopygia guttata), and mice (Mus musculus) utilizing fluorescent immunohistochemistry with antibodies against choline acetyltransferase (ChAT). Vestibular hair cells and afferents were counterstained using antibodies to myosin VIIa and calretinin. In all species, ChAT labeled a population of small diameter fibers giving rise to numerous spherical varicosities abutting type II hair cells and afferent processes. That these ChAT-positive varicosities represent presynaptic release sites were demonstrated by colabeling with antibodies against the synaptic vesicle proteins synapsin I, SV2, or syntaxin and the neuropeptide calcitonin gene-related peptide. Comparisons of efferent innervation patterns among the three species are discussed."	"MYO7A and USH2A gene sequence variants in Italian patients with Usher syndrome. To analyze the spectrum of sequence variants in the MYO7A and USH2A genes in a group of Italian patients affected by Usher syndrome (USH). Thirty-six Italian patients with a diagnosis of USH were recruited. They received a standard ophthalmologic examination, visual field testing, optical coherence tomography (OCT) scan, and electrophysiological tests. Fluorescein angiography and fundus autofluorescence imaging were performed in selected cases. All the patients underwent an audiologic examination for the 0.25-8,000 Hz frequencies. Vestibular function was evaluated with specific tests. DNA samples were analyzed for sequence variants of the MYO7A gene (for USH1) and the USH2A gene (for USH2) with direct sequencing techniques. A few patients were analyzed for both genes. In the MYO7A gene, ten missense variants were found; three patients were compound heterozygous, and two were homozygous. Thirty-four USH2A gene variants were detected, including eight missense variants, nine nonsense variants, six splicing variants, and 11 duplications/deletions; 19 patients were compound heterozygous, and three were homozygous. Four MYO7A and 17 USH2A variants have already been described in the literature. Among the novel mutations there are four USH2A large deletions, detected with multiplex ligation dependent probe amplification (MLPA) technology. Two potentially pathogenic variants were found in 27 patients (75%). Affected patients showed variable clinical pictures without a clear genotype-phenotype correlation. Ten variants in the MYO7A gene and 34 variants in the USH2A gene were detected in Italian patients with USH at a high detection rate. A selective analysis of these genes may be valuable for molecular analysis, combining diagnostic efficiency with little time wastage and less resource consumption."	"A genomic region encompassing a newly identified exon provides enhancing activity sufficient for normal myo7aa expression in zebrafish sensory hair cells. MYO7A is an unconventional myosin involved in the structural organization of hair bundles at the apex of sensory hair cells (SHCs) where it serves mechanotransduction in the process of hearing and balance. Mutations of MYO7A are responsible for abnormal shaping of hair bundles, resulting in human deafness and murine deafness/circling behavior. Myo7aa, expressed in SHCs of the inner ear and lateral line of zebrafish, causes circling behavior and abnormal hair cell function when deficient in mariner mutant. This work identifies a new hair cell-specific enhancer, highly conserved between species, located within Intron 2-3 of zebrafish myosin 7a (myo7aa) gene. This enhancer is contained within a 761-bp DNA fragment that encompasses a newly identified Exon of myo7aa and whose activity does not depend on orientation. Compensation of mariner mutation by expression of mCherry-Myo7aa fusion protein under the control of this 761-bp DNA fragment results in recovery of balance, normal hair bundle shape and restored hair cell function. Two smaller adjacent fragments (344-bp and 431-bp), extracted from the 761-bp fragment, both show hair cell-specific enhancing activity, with apparently reduced intensity and coverage. These data should help understand the role of Myo7aa in sensory hair cell differentiation and function. They provide tools to decipher how myo7aa gene is expressed and regulated in SHCs by allowing the identification of potential transcription factors involved in this process. The discovered enhancer could represent a new target for the identification of deafness-causing mutations affecting human MYO7A."	"Targeted next generation sequencing for molecular diagnosis of Usher syndrome. Usher syndrome is an autosomal recessive disease that associates sensorineural hearing loss, retinitis pigmentosa and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous. To date, 10 genes have been associated with the disease, making its molecular diagnosis based on Sanger sequencing, expensive and time-consuming. Consequently, the aim of the present study was to develop a molecular diagnostics method for Usher syndrome, based on targeted next generation sequencing. A custom HaloPlex panel for Illumina platforms was designed to capture all exons of the 10 known causative Usher syndrome genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, GPR98, DFNB31 and CLRN1), the two Usher syndrome-related genes (HARS and PDZD7) and the two candidate genes VEZT and MYO15A. A cohort of 44 patients suffering from Usher syndrome was selected for this study. This cohort was divided into two groups: a test group of 11 patients with known mutations and another group of 33 patients with unknown mutations. Forty USH patients were successfully sequenced, 8 USH patients from the test group and 32 patients from the group composed of USH patients without genetic diagnosis. We were able to detect biallelic mutations in one USH gene in 22 out of 32 USH patients (68.75%) and to identify 79.7% of the expected mutated alleles. Fifty-three different mutations were detected. These mutations included 21 missense, 8 nonsense, 9 frameshifts, 9 intronic mutations and 6 large rearrangements. Targeted next generation sequencing allowed us to detect both point mutations and large rearrangements in a single experiment, minimizing the economic cost of the study, increasing the detection ratio of the genetic cause of the disease and improving the genetic diagnosis of Usher syndrome patients."	"Admixture mapping identifies a locus at 15q21.2-22.3 associated with keloid formation in African Americans. Keloids are benign dermal tumors that occur ~20 times more often in African versus Caucasian descent individuals. While most keloids occur sporadically, a genetic predisposition is supported by both familial aggregation of some keloids and the large differences in risk among populations. Yet, no well-established genetic risk factors for keloids have been identified. In this study, we conducted admixture mapping and whole-exome association using 478 African Americans (AAs) samples (122 cases, 356 controls) with exome genotyping data to identify regions where local ancestry associated with keloid risk. Logistic regression was used to evaluate associations under admixture peaks. A significant mapping peak was observed on chr15q21.2-22.3. This peak included NEDD4, a gene previously implicated in a keloid genome-wide association study (GWAS) of Japanese individuals later validated in a Chinese cohort. While we observed modest evidence for association with NEDD4, a more significant association was observed at (myosin 1E) MYO1E. A genome scan not including the 15q21-22 region also identified associations at MYO7A (rs35641839, odds ratio [OR] = 4.71, 95% confidence interval [CI] 2.38-9.32, p = 8.34 × 10(-6)) at 11q13.5. The identification of SNPs in two myosin genes strongly associated with keloid formation suggests that an altered cytoskeleton contributes to the enhanced migratory and invasive properties of keloid fibroblasts. Our findings support the admixture mapping approach for the study of keloid risk, and indicate potentially common genetic elements on chr15q21.2-22.3 in causation of keloids in AAs, Japanese, and Chinese populations."	"Domain analyses of Usher syndrome causing Clarin-1 and GPR98 protein models. Usher syndrome is an autosomal recessive disorder that causes hearing loss, Retinitis Pigmentosa (RP) and vestibular dysfunction. It is clinically and genetically heterogeneous disorder which is clinically divided into three types i.e. type I, type II and type III. To date, there are about twelve loci and ten identified genes which are associated with Usher syndrome. A mutation in any of these genes e.g. CDH23, CLRN1, GPR98, MYO7A, PCDH15, USH1C, USH1G, USH2A and DFNB31 can result in Usher syndrome or non-syndromic deafness. These genes provide instructions for making proteins that play important roles in normal hearing, balance and vision. Studies have shown that protein structures of only seven genes have been determined experimentally and there are still three genes whose structures are unavailable. These genes are Clarin-1, GPR98 and Usherin. In the absence of an experimentally determined structure, homology modeling and threading often provide a useful 3D model of a protein. Therefore in the current study Clarin-1 and GPR98 proteins have been analyzed for signal peptide, domains and motifs. Clarin-1 protein was found to be without any signal peptide and consists of prokar lipoprotein domain. Clarin-1 is classified within claudin 2 super family and consists of twelve motifs. Whereas, GPR98 has a 29 amino acids long signal peptide and classified within GPCR family 2 having Concanavalin A-like lectin/glucanase superfamily. It was found to be consists of GPS and G protein receptor F2 domains and twenty nine motifs. Their 3D structures have been predicted using I-TASSER server. The model of Clarin-1 showed only α-helix but no beta sheets while model of GPR98 showed both α-helix and β sheets. The predicted structures were then evaluated and validated by MolProbity and Ramachandran plot. The evaluation of the predicted structures showed 78.9% residues of Clarin-1 and 78.9% residues of GPR98 within favored regions. The findings of present study has resulted in the three dimensional structure prediction and conserved domain analysis which will be quite beneficial in better understanding of molecular components, protein-protein interaction, clinical heterogeneity and pathophysiology of Usher syndrome. "	"Detecting novel genetic mutations in Chinese Usher syndrome families using next-generation sequencing technology. Usher syndrome (USH) is the most common cause of combined blindness and deafness inherited in an autosomal recessive mode. Molecular diagnosis is of great significance in revealing the molecular pathogenesis and aiding the clinical diagnosis of this disease. However, molecular diagnosis remains a challenge due to high phenotypic and genetic heterogeneity in USH. This study explored an approach for detecting disease-causing genetic mutations in candidate genes in five index cases from unrelated USH families based on targeted next-generation sequencing (NGS) technology. Through systematic data analysis using an established bioinformatics pipeline and segregation analysis, 10 pathogenic mutations in the USH disease genes were identified in the five USH families. Six of these mutations were novel: c.4398G &gt; A and EX38-49del in MYO7A, c.988_989delAT in USH1C, c.15104_15105delCA and c.6875_6876insG in USH2A. All novel variations segregated with the disease phenotypes in their respective families and were absent from ethnically matched control individuals. This study expanded the mutation spectrum of USH and revealed the genotype-phenotype relationships of the novel USH mutations in Chinese patients. Moreover, this study proved that targeted NGS is an accurate and effective method for detecting genetic mutations related to USH. The identification of pathogenic mutations is of great significance for elucidating the underlying pathophysiology of USH. "	"Myosin VIIA regulates microvillus morphogenesis and interacts with cadherin Cad99C in Drosophila oogenesis. Microvilli and related actin-based protrusions permit multiple interactions between cells and their environment. How the shape, length and arrangement of microvilli are determined remains largely unclear. To address this issue and explore the cooperation of the two main components of a microvillus, the central F-actin bundle and the enveloping plasma membrane, we investigated the expression and function of Myosin VIIA (Myo7A), which is encoded by crinkled (ck), and its interaction with cadherin Cad99C in the microvilli of the Drosophila follicular epithelium. Myo7A is present in the microvilli and terminal web of follicle cells, and associates with several other F-actin-rich structures in the ovary. Loss of Myo7A caused brush border defects and a reduction in the amount of the microvillus regulator Cad99C. We show that Myo7A and Cad99C form a molecular complex and that the cytoplasmic tail of Cad99C recruits Myo7A to microvilli. Our data indicate that Myo7A regulates the structure and spacing of microvilli, and interacts with Cad99C in vivo. A comparison of the mutant phenotypes suggests that Myo7A and Cad99C have co-dependent and independent functions in microvilli. "	"Molecular genetics of the Usher syndrome in Lebanon: identification of 11 novel protein truncating mutations by whole exome sequencing. Usher syndrome (USH) is a genetically heterogeneous condition with ten disease-causing genes. The spectrum of genes and mutations causing USH in the Lebanese and Middle Eastern populations has not been described. Consequently, diagnostic approaches designed to screen for previously reported mutations were unlikely to identify the mutations in 11 unrelated families, eight of Lebanese and three of Middle Eastern origins. In addition, six of the ten USH genes consist of more than 20 exons, each, which made mutational analysis by Sanger sequencing of PCR-amplified exons from genomic DNA tedious and costly. The study was aimed at the identification of USH causing genes and mutations in 11 unrelated families with USH type I or II. Whole exome sequencing followed by expanded familial validation by Sanger sequencing. We identified disease-causing mutations in all the analyzed patients in four USH genes, MYO7A, USH2A, GPR98 and CDH23. Eleven of the mutations were novel and protein truncating, including a complex rearrangement in GPR98. Our data highlight the genetic diversity of Usher syndrome in the Lebanese population and the time and cost-effectiveness of whole exome sequencing approach for mutation analysis of genetically heterogeneous conditions caused by large genes."	"Myosin VIIA is a marker for the cone accessory outer segment in zebrafish. The accessory outer segment, a cytoplasmic structure running alongside the photoreceptor outer segment, has been described in teleost fishes, excluding the model organism zebrafish. So far, the function of the accessory outer segment is unknown. Here, we describe the ultrastructure of the zebrafish cone accessory outer segment by electron microscopy. Starting at the connecting cilium, the accessory outer segment runs parallel alongside the cone outer segment (COS). A thin plasma bridge connects the outer segment with the accessory outer segment, whose surface is enlarged by foldings and invaginations. Beside the morphological descriptions, we demonstrate that the Usher protein myosin VIIa (Myo7a) is a specific marker for the zebrafish cone accessory outer segment. Zebrafish cone photoreceptors possess a large and well-differentiated accessory outer segment, in which the unconventional motor protein Myo7a is highly enriched. The direct cytoplasmic contact with the COS as well as the surface enlargement of the accessory outer segment suggests an important role of this structure in transport and exchange of metabolites between the COS and the surrounding retinal pigment epithelium. In future studies of the outer retina, more attention should be paid to this often neglected structure."	"Genome-wide demethylation by 5-aza-2'-deoxycytidine alters the cell fate of stem/progenitor cells. DNA methyltransferase (DNMT) inhibitor 5-aza-2'-deoxycytidine (5-aza-CdR) is able to cause DNA demethylation in the genome and induce the expression of silenced genes. Whether DNA demethylation can affect the gene expression of stem/progenitor cells has not been understood. Mouse utricle epithelia-derived progenitor cells (MUCs), which possess stem cell features as previously described, exhibit a potential DNA methylation status in the genome. In this study, MUCs were treated with 5-aza-CdR to determine whether DNMT inhibitor is able to induce the differentiation of MUCs. With 5-aza-CdR treatment for 72 hr, MUCs expressed epithelial genes including Cdh1, Krt8, Krt18, and Dsp. Further, hair cell genes Myo7a and Myo6 increased their expressions in response to 5-aza-CdR treatment. The decrease in the global methylated DNA values after 5-aza-CdR treatment indicated a significant DNA demethylation in the genome of MUCs, which may contribute to remarkably increased expression of epithelial genes and hair cell genes. The progenitor MUCs then turned into an epithelial-like hair cell fate with the expression of both epithelial and hair cell genes. This study suggests that stem cell differentiation can be stimulated by DNA demethylation, which may open avenues for studying stem cell fate induction using epigenetic approaches. "	"Loss of α-calcitonin gene-related peptide (αCGRP) reduces the efficacy of the Vestibulo-ocular Reflex (VOR). The neuroactive peptide calcitonin-gene related peptide (CGRP) is known to act at efferent synapses and their targets in hair cell organs, including the cochlea and lateral line. CGRP is also expressed in vestibular efferent neurons as well as a number of central vestibular neurons. Although CGRP-null (-/-) mice demonstrate a significant reduction in cochlear nerve sound-evoked activity compared with wild-type mice, it is unknown whether and how the loss of CGRP influence vestibular system function. Vestibular function was assessed by quantifying the vestibulo-ocular reflex (VOR) in alert mice. The loss of CGRP in (-/-) mice was associated with a reduction of the VOR gain of ≈50% without a concomitant change in phase. Using immunohistochemistry, we confirmed that, although CGRP staining was absent in the vestibular end-organs of null (-/-) mice, cholinergic staining appeared normal, suggesting that the overall gross development of vestibular efferent innervation was unaltered. We further confirmed that the observed deficit in vestibular function of null (-/-) mice was not the result of nontargeted effects at the level of the extraocular motor neurons and/or their innervation of extraocular muscles. Analysis of the relationship between vestibular quick phase amplitude and peak velocity revealed that extraocular motor function was unchanged, and immunohistochemistry revealed no abnormalities in motor endplates. Together, our findings show that the neurotransmitter CGRP plays a key role in ensuring VOR efficacy. "	"Novel compound heterozygous mutations in MYO7A Associated with Usher syndrome 1 in a Chinese family. Usher syndrome is an autosomal recessive disease characterized by sensorineural hearing loss, age-dependent retinitis pigmentosa (RP), and occasionally vestibular dysfunction. The most severe form is Usher syndrome type 1 (USH1). Mutations in the MYO7A gene are responsible for USH1 and account for 29-55% of USH1 cases. Here, we characterized a Chinese family (no. 7162) with USH1. Combining the targeted capture of 131 known deafness genes, next-generation sequencing, and bioinformatic analysis, we identified two deleterious compound heterozygous mutations in the MYO7A gene: a reported missense mutation c.73G&gt;A (p.G25R) and a novel nonsense mutation c.462C&gt;A (p.C154X). The two compound variants are absent in 219 ethnicity-matched controls, co-segregates with the USH clinical phenotypes, including hearing loss, vestibular dysfunction, and age-dependent penetrance of progressive RP, in family 7162. Therefore, we concluded that the USH1 in this family was caused by compound heterozygous mutations in MYO7A. "	"FERM domain-containing unconventional myosin VIIA interacts with integrin β5 subunit and regulates αvβ5-mediated cell adhesion and migration. Unconventional myosin VIIA (Myo7a) has been known to associate with hereditary deafness. Here we present a novel function of Myo7a by identifying that Myo7a directly interacts with integrin β5 subunit and regulates cell adhesion and motility in an integrin-dependent manner. We found that Myo7a bound to the cytoplasmic tail of integrin β5. Further, we pinpointed an integrin-binding domain at F3 of the first FERM domain and F1 of the second FERM domain. Functionally, Myo7a-induced cell adhesion and migration were mediated by integrin αvβ5. These findings indicated that Myo7a interacts with integrin β5 and selectively promotes integrin αvβ5-mediated cell migration. "	"Fighting blindness of Usher syndrome: diagnosis, pathogenesis, and retinal treatment (TreatRetUsher) (TREATRUSH). NA"	"Genetic predisposition to calcific aortic stenosis and mitral annular calcification. Valvular calcification precedes the development of valvular stenosis and may represent an important early phenotype for valvular heart disease. It is known that development of valvular calcification is likely to occur among members of a family. However, the knowledge about the role of genomic predictive markers in valvular calcification is still elusive. Aims of this review are to assess the impact of gene polymorphisms on risk and severity of aortic stenosis and mitral annular calcification. According to the results of the investigations carried out, all polymorphisms may be divided into the three groups conferring the level of evidence of their association with valvular stenosis. It is possible to conclude that apoB (XbaI, rs1042031, and rs6725189), ACE (rs4340), IL10 (rs1800896 and rs1800872), and LPA (rs10455872) gene polymorphisms may be associated with valvular calcific stenosis with a relatively high level of evidence. A number of other polymorphisms, such as PvuII polymorphism within the ORα gene, rs1042636 polymorphism within the CaSR gene, rs3024491, rs3021094, rs1554286, and rs3024498 polymorphisms within the IL10 gene, rs662 polymorphism within the PON1 gene, rs2276288 polymorphism within the MYO7A gene, rs5194 polymorphism within the AGTR1 gene, rs2071307 polymorphism within the ELN gene, rs17659543 and rs13415097 polymorphisms within the IL1F9 gene may correlate with a risk of calcific valve stenosis with moderate level of evidence. Finally, rs1544410 polymorphism within the VDR gene, E2 and E4 alleles within the apoE gene, rs6254 polymorphism within the PTH gene, and rs1800871 polymorphism within the IL10 gene may be associated with aortic stenosis with low level of evidence."	"Novel and recurrent MYO7A mutations in Usher syndrome type 1 and type 2. Usher syndrome (USH) is a group of disorders manifested as retinitis pigmentosa and bilateral sensorineural hearing loss, with or without vestibular dysfunction. Here, we recruited three Chinese families affected with autosomal recessive USH for detailed clinical evaluations and for mutation screening in the genes associated with inherited retinal diseases. Using targeted next-generation sequencing (NGS) approach, three new alleles and one known mutation in MYO7A gene were identified in the three families. In two families with USH type 1, novel homozygous frameshift variant p.Pro194Hisfs*13 and recurrent missense variant p.Thr165Met were demonstrated as the causative mutations respectively. Crystal structural analysis denoted that p.Thr165Met would very likely change the tertiary structure of the protein encoded by MYO7A. In another family affected with USH type 2, novel biallelic mutations in MYO7A, c.[1343+1G&gt;A];[2837T&gt;G] or p.[?];[Met946Arg], were identified with clinical significance. Because MYO7A, to our knowledge, has rarely been correlated with USH type 2, our findings therefore reveal distinguished clinical phenotypes associated with MYO7A. We also conclude that targeted NGS is an effective approach for genetic diagnosis for USH, which can further provide better understanding of genotype-phenotype relationship of the disease. "	"Transduction without tip links in cochlear hair cells is mediated by ion channels with permeation properties distinct from those of the mechano-electrical transducer channel. Tip links between adjacent stereocilia are believed to gate mechano-electrical transducer (MET) channels and mediate the electrical responses of sensory hair cells. We found that mouse auditory hair cells that lack tip links due to genetic mutations or exposure to the Ca(2+) chelator BAPTA can, however, still respond to mechanical stimuli. These MET currents have unusual properties and are predominantly of the opposite polarity relative to those measured when tip links are present. There are other striking differences, for example, the channels are usually all closed when the hair cell is not stimulated and the currents in response to strong stimuli can be substantially larger than normal. These anomalous MET currents can also be elicited early in development, before the onset of mechano-electrical transduction with normal response polarity. Current-voltage curves of the anomalous MET currents are linear and do not show the rectification characteristic of normal MET currents. The permeant MET channel blocker dihydrostreptomycin is two orders of magnitude less effective in blocking the anomalous MET currents. The findings suggest the presence of a large population of MET channels with pore properties that are distinct from those of normal MET channels. These channels are not gated by hair-bundle links and can be activated under a variety of conditions in which normal tip-link-mediated transduction is not operational. "	"EIAV-based retinal gene therapy in the shaker1 mouse model for usher syndrome type 1B: development of UshStat. Usher syndrome type 1B is a combined deaf-blindness condition caused by mutations in the MYO7A gene. Loss of functional myosin VIIa in the retinal pigment epithelia (RPE) and/or photoreceptors leads to blindness. We evaluated the impact of subretinally delivered UshStat, a recombinant EIAV-based lentiviral vector expressing human MYO7A, on photoreceptor function in the shaker1 mouse model for Usher type 1B that lacks a functional Myo7A gene. Subretinal injections of EIAV-CMV-GFP, EIAV-RK-GFP (photoreceptor specific), EIAV-CMV-MYO7A (UshStat) or EIAV-CMV-Null (control) vectors were performed in shaker1 mice. GFP and myosin VIIa expression was evaluated histologically. Photoreceptor function in EIAV-CMV-MYO7A treated eyes was determined by evaluating α-transducin translocation in photoreceptors in response to low light intensity levels, and protection from light induced photoreceptor degeneration was measured. The safety and tolerability of subretinally delivered UshStat was evaluated in macaques. Expression of GFP and myosin VIIa was confirmed in the RPE and photoreceptors in shaker1 mice following subretinal delivery of the EIAV-CMV-GFP/MYO7A vectors. The EIAV-CMV-MYO7A vector protected the shaker1 mouse photoreceptors from acute and chronic intensity light damage, indicated by a significant reduction in photoreceptor cell loss, and restoration of the α-transducin translocation threshold in the photoreceptors. Safety studies in the macaques demonstrated that subretinal delivery of UshStat is safe and well-tolerated. Subretinal delivery of EIAV-CMV-MYO7A (UshStat) rescues photoreceptor phenotypes in the shaker1 mouse. In addition, subretinally delivered UshStat is safe and well-tolerated in macaque safety studies These data support the clinical development of UshStat to treat Usher type 1B syndrome. "	"myosin 7aa(-/-) mutant zebrafish show mild photoreceptor degeneration and reduced electroretinographic responses. Mutations in myosin VIIa (MYO7A) cause Usher Syndrome 1B (USH1B), a disease characterized by the combination of sensorineural hearing loss and visual impairment termed retinitis pigmentosa (RP). Although the shaker-1 mouse model of USH1B exists, only minor defects in the retina have been observed during its lifespan. Previous studies of the zebrafish mariner mutant, which also carries a mutation in myo7aa, revealed balance and hearing defects in the mutants but the retinal phenotype has not been described. We found elevated cell death in the outer nuclear layer (ONL) of myo7aa(-/-) mutants. While myo7aa(-/-) mutants retained visual behaviors in the optokinetic reflex (OKR) assay, electroretinogram (ERG) recordings revealed a significant decrease in both a- and b-wave amplitudes in mutant animals, but not a change in ERG threshold sensitivity. Immunohistochemistry showed mislocalization of rod and blue cone opsins and reduced expression of rod-specific markers in the myo7aa(-/-) ONL, providing further evidence that the photoreceptor degeneration observed represents the initial stages of the RP. Further, constant light exposure resulted in widespread photoreceptor degeneration and the appearance of large holes in the retinal pigment epithelium (RPE). No differences were observed in the retinomotor movements of the photoreceptors or in melanosome migration within the RPE, suggesting that myo7aa(-/-) does not function in these processes in teleosts. These results indicate that the zebrafish myo7aa(-/-) mutant is a useful animal model for the RP seen in humans with USH1B. "	"Myosin VIIa and otoferlin in cochlear inner hair cells have distinct response to ototoxic exposure. Ototoxic gentamicin exposure does not disrupt the expression of myosin VIIa in the inner hair cells (IHCs) of mice, whereas gentamicin ototoxicity causes altered expression of otoferlin in IHCs, as well as parallel hearing threshold shifts. To explore whether myosin VIIa and otoferlin in IHCs have different responses to gentamicin ototoxicity. Lower dose treatment (100 mg/kg): adult C57 mice were continuously injected intraperitoneally with gentamicin once a day for 14 consecutive days. Dose-dependent gentamicin treatment: mice were injected intraperitoneally with differing doses (100, 200, and 300 mg/kg) once a day for 2 consecutive days. The hearing thresholds were detected by auditory brainstem response (ABR). Immunostaining and Western blotting were utilized to measure the manner of expression of myosin VIIa and otoferlin in IHCs. Lower dose treatment: There were no significant differences among the control (day 0), and 4, 7, and 14 days after the ototoxicity exposure (p &gt; 0.05). Dose-dependent gentamicin treatment: There were no significant differences among the control, 100, 200, and 300 mg/kg groups after the ototoxicity exposure (p &gt; 0.05). In contrast, we found an altered expression of otoferlin in IHCs among the control (day 0), and 4, 7, and 14 days of exposure, when the mice were exposed to gentamicin ototoxicity (p &gt; 0.05)."	"Assessment of different virus-mediated approaches for retinal gene therapy of Usher 1B. Usher syndrome type 1B, which is characterized by congenital deafness and progressive retinal degeneration, is caused by the loss of the function of MYO7A. Prevention of the retinal degeneration should be possible by delivering functional MYO7A to retinal cells. Although this approach has been used successfully in clinical trials for Leber congenital amaurosis (LCA2), it remains a challenge for Usher 1B because of the large size of the MYO7A cDNA. Different viral vectors have been tested for use in MYO7A gene therapy. Here, we review approaches with lentiviruses, which can accommodate larger genes, as well as attempts to use adeno-associated virus (AAV), which has a smaller packaging capacity. In conclusion, both types of viral vector appear to be effective. Despite concerns about the ability of lentiviruses to access the photoreceptor cells, a phenotype of the photoreceptors of Myo7a-mutant mice can be corrected. And although MYO7A cDNA is significantly larger than the nominal carrying capacity of AAV, AAV-MYO7A in single vectors also corrected Myo7a-mutant phenotypes in photoreceptor and RPE cells. Interestingly, however, a dual AAV vector approach was found to be much less effective. "	"Massively parallel DNA sequencing facilitates diagnosis of patients with Usher syndrome type 1. Usher syndrome is an autosomal recessive disorder manifesting hearing loss, retinitis pigmentosa and vestibular dysfunction, and having three clinical subtypes. Usher syndrome type 1 is the most severe subtype due to its profound hearing loss, lack of vestibular responses, and retinitis pigmentosa that appears in prepuberty. Six of the corresponding genes have been identified, making early diagnosis through DNA testing possible, with many immediate and several long-term advantages for patients and their families. However, the conventional genetic techniques, such as direct sequence analysis, are both time-consuming and expensive. Targeted exon sequencing of selected genes using the massively parallel DNA sequencing technology will potentially enable us to systematically tackle previously intractable monogenic disorders and improve molecular diagnosis. Using this technique combined with direct sequence analysis, we screened 17 unrelated Usher syndrome type 1 patients and detected probable pathogenic variants in the 16 of them (94.1%) who carried at least one mutation. Seven patients had the MYO7A mutation (41.2%), which is the most common type in Japanese. Most of the mutations were detected by only the massively parallel DNA sequencing. We report here four patients, who had probable pathogenic mutations in two different Usher syndrome type 1 genes, and one case of MYO7A/PCDH15 digenic inheritance. This is the first report of Usher syndrome mutation analysis using massively parallel DNA sequencing and the frequency of Usher syndrome type 1 genes in Japanese. Mutation screening using this technique has the power to quickly identify mutations of many causative genes while maintaining cost-benefit performance. In addition, the simultaneous mutation analysis of large numbers of genes is useful for detecting mutations in different genes that are possibly disease modifiers or of digenic inheritance. "	"Targeted and genomewide NGS data disqualify mutations in MYO1A, the &quot;DFNA48 gene&quot;, as a cause of deafness. MYO1A is considered the gene underlying autosomal dominant nonsyndromic hearing loss DFNA48, based on six missense variants, one small in-frame insertion, and one nonsense mutation. Results from NGS targeting 66 deafness genes in 109 patients identified three families challenging this assumption: two novel nonsense (p.Tyr740* and p.Arg262*) and a known missense variant were identified heterozygously not only in index patients, but also in unaffected relatives. Deafness in these families clearly resulted from mutations in other genes (MYO7A, EYA1, and CIB2). Most of the altogether 10 MYO1A mutations are annotated in dbSNP, and population frequencies (dbSNP, 1000 Genomes, Exome Sequencing Project) above 0.1% contradict pathogenicity under a dominant model. One healthy individual was even homozygous for p.Arg262*, compatible with homozygous Myo1a knockout mice lacking any overt pathology. MYO1A seems dispensable for hearing and overall nonessential. MYO1A adds to the list of &quot;erroneous disease genes&quot;, which will expand with increasing availability of large-scale sequencing data. "	"Efficient gene delivery to the cone-enriched pig retina by dual AAV vectors. Gene therapy with adeno-associated viral (AAV) vectors is limited by AAV cargo capacity that prevents their application to the inherited retinal diseases (IRDs), such as Stargardt disease (STGD) or Usher syndrome type IB (USH1B), which are due to mutations in genes larger than 5 kb. Trans-splicing or hybrid dual AAV vectors have been successfully exploited to reconstitute large gene expression in the mouse retina. Here, we tested them in the large cone-enriched pig retina that closely mimics the human retina. We found that dual AAV trans-splicing and hybrid vectors transduce pig photoreceptors, the major cell targets for treatment of IRDs, to levels that were about two- to threefold lower than those obtained with a single AAV vector of normal size. This efficiency is significantly higher than that in mice, and is potentially due to the high levels of dual AAV co-transduction we observe in pigs. We also show that subretinal delivery in pigs of dual AAV trans-splicing and hybrid vectors successfully reconstitute, albeit at variable levels, the expression of the large genes ABCA4 and MYO7A mutated in STGD and USH1B, respectively. Our data support the potential of dual AAV vectors for large gene reconstitution in the cone-enriched pig retina that is a relevant preclinical model. "	"Dual adeno-associated virus vectors result in efficient in vitro and in vivo expression of an oversized gene, MYO7A. Usher syndrome 1B (USH1B) is a severe, autosomal recessive, deaf-blind disorder caused by mutations in myosin 7A (MYO7A). Patients are born profoundly deaf and exhibit progressive loss of vision starting in their first decade. MYO7A is expressed in human photoreceptors and retinal pigment epithelium, but disease pathology begins in photoreceptors, highlighting the need to develop a gene replacement strategy that effectively targets this cell type. For its safety and efficacy in clinical trials and ability to transduce postmitotic photoreceptors, we have focused on developing a clinically applicable adeno-associated virus (AAV) platform for delivering full-length MYO7A cDNA (∼6.7 kb). Packaging of full-length MYO7A cDNA in AAV produces vectors with heterogeneous, fragmented genomes (&quot;fAAV&quot;) capable of reconstituting full-length cDNA postinfection. We previously showed that fAAV vectors effectively delivered full-length MYO7A in vitro and in vivo. However, fAAV vectors are relatively inefficient and their heterogeneous genomes preclude definitive characterization, a drawback for clinical translatability. The aim of this study was to overcome these limitations by creating dual-AAV-vector platforms for USH1B with defined genomes. Human MYO7A was cloned in AAV vector pairs, each containing genomes &lt;5 kb and intact inverted terminal repeats. One vector contained a promoter and 5' portion of the cDNA and the partner vector contained a 3' portion and polyadenylation signal. &quot;Simple overlap&quot; vectors share a central part of the MYO7A cDNA sequence. &quot;Trans-splicing&quot; and &quot;hybrid&quot; vectors utilize splice donor and acceptor sites with and without an additional central recombinogenic sequence, respectively. Vector pairs expressed full-length MYO7A in vitro and in vivo with equal or higher efficiency than fAAV, with a hybrid platform being most efficient. Importantly, analysis of MYO7A mRNA derived from each dual-vector platform revealed 100% fidelity to the predicted sequence. Our results suggest that dual AAV vectors with defined genetic payloads are a potential treatment option for USH1B."	"Genetics of dizziness: cerebellar and vestibular disorders. Recent advances in next generation sequencing techniques (NGS) are increasing the number of novel genes associated with cerebellar and vestibular disorders. We have summarized clinical and molecular genetics findings in neuro-otolology during the last 2 years. Whole-exome and targeted sequencing have defined the genetic basis of dizziness including new genes causing ataxia: GBA2, TGM6, ANO10 and SYT14. Novel mutations in KCNA1 and CACNA1A genes are associated with episodic ataxia type 1 and type 2, respectively. Moreover, new variants in genes such as COCH, MYO7A and POU4F3 are associated with nonsyndromic deafness and vestibular dysfunction. Several susceptibility loci have been linked to familial vestibular migraine, suggesting genetic heterogeneity, but no specific gene has been identified. Finally, loci for complex and heterogeneous diseases such as bilateral vestibular hypofunction or familial Ménière disease have not been identified yet, despite their strong familial aggregation. Cerebellar and vestibular disorders leading to dizziness or episodic vertigo may show overlapping clinical features. A deep phenotyping including a complete familial history is a key step in performing a reliable molecular genetic diagnosis using NGS. Personalized molecular medicine will be essential to understand disease mechanisms as well as to improve their diagnosis and treatment."	"Mutation of Foxo3 causes adult onset auditory neuropathy and alters cochlear synapse architecture in mice. Auditory neuropathy is a form of hearing loss in which cochlear inner hair cells fail to correctly encode or transmit acoustic information to the brain. Few genes have been implicated in the adult-onset form of this disease. Here we show that mice lacking the transcription factor Foxo3 have adult onset hearing loss with the hallmark characteristics of auditory neuropathy, namely, elevated auditory thresholds combined with normal outer hair cell function. Using histological techniques, we demonstrate that Foxo3-dependent hearing loss is not due to a loss of cochlear hair cells or spiral ganglion neurons, both of which normally express Foxo3. Moreover, Foxo3-knock-out (KO) inner hair cells do not display reductions in numbers of synapses. Instead, we find that there are subtle structural changes in and surrounding inner hair cells. Confocal microscopy in conjunction with 3D modeling and quantitative analysis show that synaptic localization is altered in Foxo3-KO mice and Myo7a immunoreactivity is reduced. TEM demonstrates apparent afferent degeneration. Strikingly, acoustic stimulation promotes Foxo3 nuclear localization in vivo, implying a connection between cochlear activity and synaptic function maintenance. Together, these findings support a new role for the canonical damage response factor Foxo3 in contributing to the maintenance of auditory synaptic transmission. "	"Natural history and retinal structure in patients with Usher syndrome type 1 owing to MYO7A mutation. To evaluate the phenotypic variability and natural history of ocular disease in a cohort of 28 individuals with MYO7A-related disease. Mutations in the MYO7A gene are the most common cause of Usher syndrome type 1, characterized by profound congenital deafness, vestibular arreflexia, and progressive retinal degeneration. Retrospective case series. Twenty-eight patients from 26 families (age range, 3-65 years; median, 32) with 2 likely disease-causing variants in MYO7A. Clinical investigations included fundus photography, optical coherence tomography, fundus autofluorescence (FAF) imaging, and audiologic and vestibular assessments. Longitudinal visual acuity and FAF data (over a 3-year period) were available for 20 and 10 study subjects, respectively. Clinical, structural, and functional characteristics. All patients with MYO7A mutations presented with features consistent with Usher type 1. The median visual acuity for the cohort was 0.39 logarithm of the minimum angle of resolution (logMAR; range, 0.0-2.7) and visual acuity in logMAR correlated with age (Spearman's rank correlation coefficient, r = 0.71; P&lt;0.0001). Survival analysis revealed that acuity ≤ 0.22 logMAR was maintained in 50% of studied subjects until age 33.9; legal blindness based on loss of acuity (≥ 1.00 logMAR) or loss of field (≤ 20°) was reached at a median age of 40.6 years. Three distinct patterns were observed on FAF imaging: 13 of 22 patients tested had relatively preserved foveal autofluorescence surrounded by a ring of high density, 4 of 22 had increased signal in the fovea with no obvious hyperautofluorescent ring, and 5 of 22 had widespread hypoautofluorescence corresponding to retinal pigment epithelial atrophy. Despite a number of cases presenting with a milder phenotype, there seemed to be no obvious genotype-phenotype correlation. MYO7A-related ocular disease is variable. Central vision typically remains preserved at least until the third decade of life, with 50% of affected individuals reaching legal blindness by 40 years of age. Distinct phenotypic subsets were identified on FAF imaging. A specific allele, previously reported in nonsyndromic deafness, may be associated with a mild retinopathy."	"Analysis of two Arab families reveals additional support for a DFNB2 nonsyndromic phenotype of MYO7A. Variants in the head and tail domains of the MYO7A gene, encoding myosin VIIA, cause Usher syndrome type 1B (USH1B) and nonsyndromic deafness (DFNB2, DFNA11). In order to identify the genetic defect(s) underling profound deafness in two consanguineous Arab families living in UAE, we have sequenced a panel of 19 genes involved in Usher syndrome and nonsyndromic deafness in the index cases of the two families. This analysis revealed a novel homozygous insertion of AG (c.1952_1953insAG/p.C652fsX11) in exon 17 of the MYO7A gene in an Iraqi family, and a homozygous point mutation (c.5660C&gt;T/p.P1887L) in exon 41 affecting the same gene in a large Palestinian family. Moreover, some individuals from the Palestinian family also harbored a novel heterozygous truncating variant (c.1267C&gt;T/p.R423X) in the DFNB31 gene, which is involved in autosomal recessive nonsyndromic deafness type DFNB31 and Usher syndrome type II. Assuming an autosomal recessive mode of inheritance in the two inbred families, we conclude that the homozygous variants in the MYO7A gene are the disease-causing mutations in these families. Furthermore, given the absence of retinal disease in all affected patients examined, particularly a 28 year old patient, suggests that at least one family may segregate a DFNB2 presentation rather than USH1B. This finding further supports the premise that the MYO7A gene is responsible for two distinct diseases and gives evidence that the p.P1887L mutation in a homozygous state may be responsible for nonsyndromic hearing loss."	"Diverse spectrum of rare deafness genes underlies early-childhood hearing loss in Japanese patients: a cross-sectional, multi-center next-generation sequencing study. Genetic tests for hereditary hearing loss inform clinical management of patients and can provide the first step in the development of therapeutics. However, comprehensive genetic tests for deafness genes by Sanger sequencing is extremely expensive and time-consuming. Next-generation sequencing (NGS) technology is advantageous for genetic diagnosis of heterogeneous diseases that involve numerous causative genes. Genomic DNA samples from 58 subjects with hearing loss from 15 unrelated Japanese families were subjected to NGS to identify the genetic causes of hearing loss. Subjects did not have pathogenic GJB2 mutations (the gene most often associated with inherited hearing loss), mitochondrial m.1555A&gt;G or 3243A&gt;G mutations, enlarged vestibular aqueduct, or auditory neuropathy. Clinical features of subjects were obtained from medical records. Genomic DNA was subjected to a custom-designed SureSelect Target Enrichment System to capture coding exons and proximal flanking intronic sequences of 84 genes responsible for nonsyndromic or syndromic hearing loss, and DNA was sequenced by Illumina GAIIx (paired-end read). The sequences were mapped and quality-checked using the programs BWA, Novoalign, Picard, and GATK, and analyzed by Avadis NGS. Candidate genes were identified in 7 of the 15 families. These genes were ACTG1, DFNA5, POU4F3, SLC26A5, SIX1, MYO7A, CDH23, PCDH15, and USH2A, suggesting that a variety of genes underlie early-childhood hearing loss in Japanese patients. Mutations in Usher syndrome-related genes were detected in three families, including one double heterozygous mutation of CDH23 and PCDH15. Targeted NGS analysis revealed a diverse spectrum of rare deafness genes in Japanese subjects and underscores implications for efficient genetic testing."	"Effective delivery of large genes to the retina by dual AAV vectors. Retinal gene therapy with adeno-associated viral (AAV) vectors is safe and effective in humans. However, AAV's limited cargo capacity prevents its application to therapies of inherited retinal diseases due to mutations of genes over 5 kb, like Stargardt's disease (STGD) and Usher syndrome type IB (USH1B). Previous methods based on 'forced' packaging of large genes into AAV capsids may not be easily translated to the clinic due to the generation of genomes of heterogeneous size which raise safety concerns. Taking advantage of AAV's ability to concatemerize, we generated dual AAV vectors which reconstitute a large gene by either splicing (trans-splicing), homologous recombination (overlapping), or a combination of the two (hybrid). We found that dual trans-splicing and hybrid vectors transduce efficiently mouse and pig photoreceptors to levels that, albeit lower than those achieved with a single AAV, resulted in significant improvement of the retinal phenotype of mouse models of STGD and USH1B. Thus, dual AAV trans-splicing or hybrid vectors are an attractive strategy for gene therapy of retinal diseases that require delivery of large genes."	"Inhibition of repulsive guidance molecule, RGMa, increases afferent synapse formation with auditory hair cells. The peripheral fibers that extend from auditory neurons to hair cells are sensitive to damage, and replacement of the fibers and their afferent synapse with hair cells would be of therapeutic interest. Here, we show that RGMa, a repulsive guidance molecule previously shown to play a role in the development of the chick visual system, is expressed in the developing, newborn, and mature mouse inner ear. The effect of RGMa on synaptogenesis between afferent neurons and hair cells, from which afferent connections had been removed, was assessed. Contact of neural processes with hair cells and elaboration of postsynaptic densities at sites of the ribbon synapse were increased by treatment with a blocking antibody to RGMa, and pruning of auditory fibers to achieve the mature branching pattern of afferent neurons was accelerated. Inhibition by RGMa could thus explain why auditory neurons have a low capacity to regenerate peripheral processes: postnatal spiral ganglion neurons retain the capacity to send out processes that respond to signals for synapse formation, but expression of RGMa postnatally appears to be detrimental to regeneration of afferent hair cell innervation and antagonizes synaptogenesis. Increased synaptogenesis after inhibition of RGMa suggests that manipulation of guidance or inhibitory factors may provide a route to increase formation of new synapses at deafferented hair cells."	"Novel myosin mutations for hereditary hearing loss revealed by targeted genomic capture and massively parallel sequencing. Hereditary hearing loss is genetically heterogeneous, with a large number of genes and mutations contributing to this sensory, often monogenic, disease. This number, as well as large size, precludes comprehensive genetic diagnosis of all known deafness genes. A combination of targeted genomic capture and massively parallel sequencing (MPS), also referred to as next-generation sequencing, was applied to determine the deafness-causing genes in hearing-impaired individuals from Israeli Jewish and Palestinian Arab families. Among the mutations detected, we identified nine novel mutations in the genes encoding myosin VI, myosin VIIA and myosin XVA, doubling the number of myosin mutations in the Middle East. Myosin VI mutations were identified in this population for the first time. Modeling of the mutations provided predicted mechanisms for the damage they inflict in the molecular motors, leading to impaired function and thus deafness. The myosin mutations span all regions of these molecular motors, leading to a wide range of hearing phenotypes, reinforcing the key role of this family of proteins in auditory function. This study demonstrates that multiple mutations responsible for hearing loss can be identified in a relatively straightforward manner by targeted-gene MPS technology and concludes that this is the optimal genetic diagnostic approach for identification of mutations responsible for hearing loss. "	"Usher proteins in inner ear structure and function. Usher syndrome (USH) is a neurosensory disorder affecting both hearing and vision in humans. Linkage studies of families of USH patients, studies in animals, and characterization of purified proteins have provided insight into the molecular mechanisms of hearing. To date, 11 USH proteins have been identified, and evidence suggests that all of them are crucial for the function of the mechanosensory cells of the inner ear, the hair cells. Most USH proteins are localized to the stereocilia of the hair cells, where mechano-electrical transduction (MET) of sound-induced vibrations occurs. Therefore, elucidation of the functions of USH proteins in the stereocilia is a prerequisite to understanding the exact mechanisms of MET. "	"An overview and online registry of microvillus inclusion disease patients and their MYO5B mutations. Microvillus inclusion disease (MVID) is one of the most severe congenital intestinal disorders and is characterized by neonatal secretory diarrhea and the inability to absorb nutrients from the intestinal lumen. MVID is associated with patient-, family-, and ancestry-unique mutations in the MYO5B gene, encoding the actin-based motor protein myosin Vb. Here, we review the MYO5B gene and all currently known MYO5B mutations and for the first time methodologically categorize these with regard to functional protein domains and recurrence in MYO7A associated with Usher syndrome and other myosins. We also review animal models for MVID and the latest data on functional studies related to the myosin Vb protein. To congregate existing and future information on MVID geno-/phenotypes and facilitate its quick and easy sharing among clinicians and researchers, we have constructed an online MOLGENIS-based international patient registry (www.MVID-central.org). This easily accessible database currently contains detailed information of 137 MVID patients together with reported clinical/phenotypic details and 41 unique MYO5B mutations, of which several unpublished. The future expansion and prospective nature of this registry is expected to improve disease diagnosis, prognosis, and genetic counseling. "	"Myosin7a deficiency results in reduced retinal activity which is improved by gene therapy. Mutations in MYO7A cause autosomal recessive Usher syndrome type IB (USH1B), one of the most frequent conditions that combine severe congenital hearing impairment and retinitis pigmentosa. A promising therapeutic strategy for retinitis pigmentosa is gene therapy, however its pre-clinical development is limited by the mild retinal phenotype of the shaker1 (sh1(-/-)) murine model of USH1B which lacks both retinal functional abnormalities and degeneration. Here we report a significant, early-onset delay of sh1(-/-) photoreceptor ability to recover from light desensitization as well as a progressive reduction of both b-wave electroretinogram amplitude and light sensitivity, in the absence of significant loss of photoreceptors up to 12 months of age. We additionally show that subretinal delivery to the sh1(-/-) retina of AAV vectors encoding the large MYO7A protein results in significant improvement of sh1(-/-) photoreceptor and retinal pigment epithelium ultrastructural anomalies which is associated with improvement of recovery from light desensitization. These findings provide new tools to evaluate the efficacy of experimental therapies for USH1B. In addition, although AAV vectors expressing large genes might have limited clinical applications due to their genome heterogeneity, our data show that AAV-mediated MYO7A gene transfer to the sh1(-/-) retina is effective."	"Changes in ADF/destrin expression in the development of hair cells following Atoh1-induced ectopic regeneration. The aim of this study was to investigate the effects of actin depolymerizing factor (ADF)/destrin and position changes of kinetosomes in the development of hair cells following Atoh1-induced ectopic regeneration in the basilar membrane of mice. We observed through immunofluorescence at various time-points the expression of ADF/destrin and the specific kinetosome marker, γ-tubulin, in hair cells following ectopic regeneration induced by adenovirus transfection, overexpression of Atoh1 and in vitro culture. Changes of ADF/destrin distribution and kinetosome position during in vitro culture of new hair cells [Myo7a(+)] following Atoh1-induced ectopic regeneration are consistent with the changes in ADF/destrin expression and the polar migration of kinetosomes in hair cells of the cochlear sensory epithelium in normal development. ADF/destrin is involved in the development of the auditory epithelium and the development and structural rearrangement of ectopically regenerated hair cells in mammals. The kinetosomes of hair cells following Atoh1-induced ectopic regeneration show positional changes in vitro at different time-points."	"Genetic heterogeneity and consanguinity lead to a &quot;double hit&quot;: homozygous mutations of MYO7A and PDE6B in a patient with retinitis pigmentosa. Retinitis pigmentosa (RP), the most genetically heterogeneous disorder in humans, actually represents a group of pigmentary retinopathies characterized by night blindness followed by visual-field loss. RP can appear as either syndromic or nonsyndromic. One of the most common forms of syndromic RP is Usher syndrome, characterized by the combination of RP, hearing loss, and vestibular dysfunction. The underlying cause of the appearance of syndromic and nonsyndromic RP in three siblings from a consanguineous Israeli Muslim Arab family was studied with whole-genome homozygosity mapping followed by whole exome sequencing. THE FAMILY WAS FOUND TO SEGREGATE NOVEL MUTATIONS OF TWO DIFFERENT GENES: myosin VIIA (MYO7A), which causes type 1 Usher syndrome, and phosphodiesterase 6B, cyclic guanosine monophosphate-specific, rod, beta (PDE6B), which causes nonsyndromic RP. One affected child was homozygous for both mutations. Since the retinal phenotype seen in this patient results from overlapping pathologies, one might expect to find severe retinal degeneration. Indeed, he was diagnosed with RP based on an abnormal electroretinogram (ERG) at a young age (9 months). However, this early diagnosis may be biased, as two of his older siblings had already been diagnosed, leading to increased awareness. At the age of 32 months, he had relatively good vision with normal visual fields. Further testing of visual function and structure at different ages in the three siblings is needed to determine whether the two RP-causing genes mutated in this youngest sibling confer increased disease severity. This report further supports the genetic heterogeneity of RP, and demonstrates how consanguinity could increase intrafamilial clustering of multiple hereditary diseases. Moreover, this report provides a unique opportunity to study the clinical implications of the coexistence of pathogenic mutations in two RP-causative genes in a human patient."	"Biallelic nonsense mutations in the otogelin-like gene (OTOGL) in a child affected by mild to moderate hearing impairment. Hearing impairment is characterized by great genetic heterogeneity. We report the identification, by whole exome sequencing, of two different nonsense mutations (c.1558C&gt;T; p.Gln520 and c.2773C&gt;T; p.Arg925) in the otogelin-like gene (OTOGL), in a child affected by mild to moderate isolated deafness. Parental genotypes allowed us to conclude that these mutations are present in the compound heterozygous state in the patient. In addition, our clinical data establish that the tectorial membrane and/or the outer hair cells are defective in this form of deafness."	"Generation of inner ear sensory epithelia from pluripotent stem cells in 3D culture. The inner ear contains sensory epithelia that detect head movements, gravity and sound. It is unclear how to develop these sensory epithelia from pluripotent stem cells, a process that will be critical for modelling inner ear disorders or developing cell-based therapies for profound hearing loss and balance disorders. So far, attempts to derive inner ear mechanosensitive hair cells and sensory neurons have resulted in inefficient or incomplete phenotypic conversion of stem cells into inner-ear-like cells. A key insight lacking from these previous studies is the importance of the non-neural and preplacodal ectoderm, two critical precursors during inner ear development. Here we report the stepwise differentiation of inner ear sensory epithelia from mouse embryonic stem cells (ESCs) in three-dimensional culture. We show that by recapitulating in vivo development with precise temporal control of signalling pathways, ESC aggregates transform sequentially into non-neural, preplacodal and otic-placode-like epithelia. Notably, in a self-organized process that mimics normal development, vesicles containing prosensory cells emerge from the presumptive otic placodes and give rise to hair cells bearing stereocilia bundles and a kinocilium. Moreover, these stem-cell-derived hair cells exhibit functional properties of native mechanosensitive hair cells and form specialized synapses with sensory neurons that have also arisen from ESCs in the culture. Finally, we demonstrate how these vesicles are structurally and biochemically comparable to developing vestibular end organs. Our data thus establish a new in vitro model of inner ear differentiation that can be used to gain deeper insight into inner ear development and disorder. "	"Genetic analysis through OtoSeq of Pakistani families segregating prelingual hearing loss. To identify the genetic cause of prelingual sensorineural hearing loss in Pakistani families using a next-generation sequencing (NGS)-based mutation screening test named OtoSeq. Prospective study. Research laboratory. We used 3 fluorescently labeled short tandem repeat (STR) markers for each of the known autosomal recessive nonsyndromic (DFNB) and Usher syndrome (USH) locus to perform a linkage analysis of 243 multigenerational Pakistani families segregating prelingual hearing loss. After genotyping, we focused on 34 families with potential linkage to MYO7A, CDH23, and SLC26A4. We screened affected individuals from a subset of these families using the OtoSeq platform to identify underlying genetic variants. Sanger sequencing was performed to confirm and study the segregation of mutations in other family members. For novel mutations, normal hearing individuals from ethnically matched backgrounds were also tested. Hearing loss was found to co-segregate with locus-specific STR markers for MYO7A in 32 families, CDH23 in 1 family, and SLC26A4 in 1 family. Using the OtoSeq platform, a microdroplet PCR-based enrichment followed by NGS, we identified mutations in 28 of the 34 families including 11 novel mutations. Sanger sequencing of these mutations showed 100% concordance with NGS data and co-segregation of the mutant alleles with the hearing loss phenotype in the respective families. Using NGS-based platforms like OtoSeq in families segregating hearing loss will contribute to the identification of common and population-specific mutations, early diagnosis, genetic counseling, and molecular epidemiology."	"The giant spectrin βV couples the molecular motors to phototransduction and Usher syndrome type I proteins along their trafficking route. Mutations in the myosin VIIa gene cause Usher syndrome type IB (USH1B), characterized by deaf-blindness. A delay of opsin trafficking has been observed in the retinal photoreceptor cells of myosin VIIa-deficient mice. We identified spectrin βV, the mammalian β-heavy spectrin, as a myosin VIIa- and rhodopsin-interacting partner in photoreceptor cells. Spectrin βV displays a polarized distribution from the Golgi apparatus to the base of the outer segment, which, unlike that of other β spectrins, matches the trafficking route of opsin and other phototransduction proteins. Formation of spectrin βV-rhodopsin complex could be detected in the differentiating photoreceptors as soon as their outer segment emerges. A failure of the spectrin βV-mediated coupling between myosin VIIa and opsin molecules thus probably accounts for the opsin transport delay in myosin VIIa-deficient mice. We showed that spectrin βV also associates with two USH1 proteins, sans (USH1G) and harmonin (USH1C). Spectrins are supposed to function as heteromers of α and β subunits, but fluorescence resonance energy transfer and in vitro binding experiments indicated that spectrin βV can also form homodimers, which likely supports its αII-independent βV functions. Finally, consistent with its distribution along the connecting cilia axonemes, spectrin βV binds to several subunits of the microtubule-based motor proteins, kinesin II and the dynein complex. We therefore suggest that spectrin βV homomers couple some USH1 proteins, opsin and other phototransduction proteins to both actin- and microtubule-based motors, thereby contributing to their transport towards the photoreceptor outer disks. "	"Novel compound heterozygous mutations in MYO7A in a Chinese family with Usher syndrome type 1. To identify the disease-causing mutation(s) in a Chinese family with autosomal recessive Usher syndrome type 1 (USH1). An ophthalmic examination and an audiometric test were conducted to ascertain the phenotype of two affected siblings. The microsatellite marker D11S937, which is close to the candidate gene MYO7A (USH1B locus), was selected for genotyping. From the DNA of the proband, all coding exons and exon-intron boundaries of MYO7A were sequenced to identify the disease-causing mutation(s). Restriction fragment length polymorphism (RFLP) analysis was performed to exclude the alternative conclusion that the mutations are non-pathogenic rare polymorphisms. Based on severe hearing impairment, unintelligible speech, and retinitis pigmentosa, a clinical diagnosis of Usher syndrome type 1 was made. The genotyping results did not exclude the USH1B locus, which suggested that the MYO7A gene was likely the gene associated with the disease-causing mutation(s) in the family. With direct DNA sequencing of MYO7A, two novel compound heterozygous mutations (c.3742G&gt;A and c.6051+1G&gt;A) of MYO7A were identified in the proband. DNA sequence analysis and RFLP analysis of other family members showed that the mutations cosegregated with the disease. Unaffected members, including the parents, uncle, and sister of the proband, carry only one of the two mutations. The mutations were not present in the controls (100 normal Chinese subjects=200 chromosomes) according to the RFLP analysis. In this study, we identified two novel mutations, c.3742G&gt;A (p.E1248K) and c.6051+1G&gt;A (donor splice site mutation in intron 44), of MYO7A in a Chinese non-consanguineous family with USH1. The mutations cosegregated with the disease and most likely cause the phenotype in the two affected siblings who carry these mutations compound heterozygously. Our finding expands the mutational spectrum of MYO7A."	"Headbobber: a combined morphogenetic and cochleosaccular mouse model to study 10qter deletions in human deafness. The recessive mouse mutant headbobber (hb) displays the characteristic behavioural traits associated with vestibular defects including headbobbing, circling and deafness. This mutation was caused by the insertion of a transgene into distal chromosome 7 affecting expression of native genes. We show that the inner ear of hb/hb mutants lacks semicircular canals and cristae, and the saccule and utricle are fused together in a single utriculosaccular sac. Moreover, we detect severe abnormalities of the cochlear sensory hair cells, the stria vascularis looks severely disorganised, Reissner's membrane is collapsed and no endocochlear potential is detected. Myo7a and Kcnj10 expression analysis show a lack of the melanocyte-like intermediate cells in hb/hb stria vascularis, which can explain the absence of endocochlear potential. We use Trp2 as a marker of melanoblasts migrating from the neural crest at E12.5 and show that they do not interdigitate into the developing strial epithelium, associated with abnormal persistence of the basal lamina in the hb/hb cochlea. We perform array CGH, deep sequencing as well as an extensive expression analysis of candidate genes in the headbobber region of hb/hb and littermate controls, and conclude that the headbobber phenotype is caused by: 1) effect of a 648 kb deletion on distal Chr7, resulting in the loss of three protein coding genes (Gpr26, Cpmx2 and Chst15) with expression in the inner ear but unknown function; and 2) indirect, long range effect of the deletion on the expression of neighboring genes on Chr7, associated with downregulation of Hmx3, Hmx2 and Nkx1.2 homeobox transcription factors. Interestingly, deletions of the orthologous region in humans, affecting the same genes, have been reported in nineteen patients with common features including sensorineural hearing loss and vestibular problems. Therefore, we propose that headbobber is a useful model to gain insight into the mechanisms underlying deafness in human 10qter deletion syndrome."	"Study of USH1 splicing variants through minigenes and transcript analysis from nasal epithelial cells. Usher syndrome type I (USH1) is an autosomal recessive disorder characterized by congenital profound deafness, vestibular areflexia and prepubertal retinitis pigmentosa. The first purpose of this study was to determine the pathologic nature of eighteen USH1 putative splicing variants found in our series and their effect in the splicing process by minigene assays. These variants were selected according to bioinformatic analysis. The second aim was to analyze the USH1 transcripts, obtained from nasal epithelial cells samples of our patients, in order to corroborate the observed effect of mutations by minigenes in patient's tissues. The last objective was to evaluate the nasal ciliary beat frequency in patients with USH1 and compare it with control subjects. In silico analysis were performed using four bioinformatic programs: NNSplice, Human Splicing Finder, NetGene2 and Spliceview. Afterward, minigenes based on the pSPL3 vector were used to investigate the implication of selected changes in the mRNA processing. To observe the effect of mutations in the patient's tissues, RNA was extracted from nasal epithelial cells and RT-PCR analyses were performed. Four MYO7A (c.470G&gt;A, c.1342_1343delAG, c.5856G&gt;A and c.3652G&gt;A), three CDH23 (c.2289+1G&gt;A, c.6049G&gt;A and c.8722+1delG) and one PCDH15 (c.3717+2dupTT) variants were observed to affect the splicing process by minigene assays and/or transcripts analysis obtained from nasal cells. Based on our results, minigenes are a good approach to determine the implication of identified variants in the mRNA processing, and the analysis of RNA obtained from nasal epithelial cells is an alternative method to discriminate neutral Usher variants from those with a pathogenic effect on the splicing process. In addition, we could observe that the nasal ciliated epithelium of USH1 patients shows a lower ciliary beat frequency than control subjects."	"Application of massively parallel sequencing to genetic diagnosis in multiplex families with idiopathic sensorineural hearing impairment. Despite the clinical utility of genetic diagnosis to address idiopathic sensorineural hearing impairment (SNHI), the current strategy for screening mutations via Sanger sequencing suffers from the limitation that only a limited number of DNA fragments associated with common deafness mutations can be genotyped. Consequently, a definitive genetic diagnosis cannot be achieved in many families with discernible family history. To investigate the diagnostic utility of massively parallel sequencing (MPS), we applied the MPS technique to 12 multiplex families with idiopathic SNHI in which common deafness mutations had previously been ruled out. NimbleGen sequence capture array was designed to target all protein coding sequences (CDSs) and 100 bp of the flanking sequence of 80 common deafness genes. We performed MPS on the Illumina HiSeq2000, and applied BWA, SAMtools, Picard, GATK, Variant Tools, ANNOVAR, and IGV for bioinformatics analyses. Initial data filtering with allele frequencies (&lt;5% in the 1000 Genomes Project and 5400 NHLBI exomes) and PolyPhen2/SIFT scores (&gt;0.95) prioritized 5 indels (insertions/deletions) and 36 missense variants in the 12 multiplex families. After further validation by Sanger sequencing, segregation pattern, and evolutionary conservation of amino acid residues, we identified 4 variants in 4 different genes, which might lead to SNHI in 4 families compatible with autosomal dominant inheritance. These included GJB2 p.R75Q, MYO7A p.T381M, KCNQ4 p.S680F, and MYH9 p.E1256K. Among them, KCNQ4 p.S680F and MYH9 p.E1256K were novel. In conclusion, MPS allows genetic diagnosis in multiplex families with idiopathic SNHI by detecting mutations in relatively uncommon deafness genes."	"siRNA targeting Hes5 augments hair cell regeneration in aminoglycoside-damaged mouse utricle. Notch signaling is active during the development of mosaic epithelial sheets and during their turnover and regeneration. After the loss of hair cells in the mosaic sheet of the vestibular sensory epithelium, new hair cells can be spontaneously generated by transdifferentiation of supporting cells. This regenerative process involves downregulation of the Hes5 gene and is known to be limited and incomplete, especially when the lesion is severe. Here, we test whether further downregulation of Hes5 gene accomplished by the use of siRNA after a severe lesion induced by an aminoglycoside in the mouse utricle can enhance the transdifferentiation of supporting cells and lead to the increased production of new hair cells. We demonstrate that Hes5 levels in the utricle decreased after the application of siRNA and that the number of hair cells in these utricles was significantly larger than following control treatment. The data suggest that siRNA technology may be useful for inducing repair and regeneration in the inner ear and that the Notch signaling pathway is a potentially useful target for specific gene expression inhibition."	"Identification and functional study of a new missense mutation in the motor head domain of myosin VIIA in a family with autosomal dominant hearing impairment (DFNA11). The MYO7A encodes a protein classified as an unconventional myosin. Here, we present a family with non-syndromic autosomal dominant hearing impairment that clinically resembles other previously published DFNA11 families. Affected members of the family present with an ascending audiogram affecting low and middle frequencies at young ages and then affecting all frequencies with increasing age. Genome-wide linkage analysis using Illumina Cyto-12 Chip mapped the disease locus to the DFNA11 interval in the family. A c.2003G→A (p.R668H) mutation of the MYO7A, is heterozygous in all affected family members and absent in 100 healthy individuals. Arg668His is located in a region of the myosin VIIA motor domain that is highly conserved among different species. Molecular modeling predicts that the conserved R668 residue plays important structural role in linking different lobes of motor domain together. In the actin-activated ATPase activity assay, the rate of NADH oxidation was higher in the wild-type myosin VIIA, indicating that the ATPase activity in the p.R668H mutant myosin VIIA was significantly destroyed."	"Mitochondrial DNA variants mediate energy production and expression levels for CFH, C3 and EFEMP1 genes: implications for age-related macular degeneration. Mitochondrial dysfunction is associated with the development and progression of age-related macular degeneration (AMD). Recent studies using populations from the United States and Australia have demonstrated that AMD is associated with mitochondrial (mt) DNA haplogroups (as defined by combinations of mtDNA polymorphisms) that represent Northern European Caucasians. The aim of this study was to use the cytoplasmic hybrid (cybrid) model to investigate the molecular and biological functional consequences that occur when comparing the mtDNA H haplogroup (protective for AMD) versus J haplogroup (high risk for AMD). Cybrids were created by introducing mitochondria from individuals with either H or J haplogroups into a human retinal epithelial cell line (ARPE-19) that was devoid of mitochondrial DNA (Rho0). In cybrid lines, all of the cells carry the same nuclear genes but vary in mtDNA content. The J cybrids had significantly lower levels of ATP and reactive oxygen/nitrogen species production, but increased lactate levels and rates of growth. Q-PCR analyses showed J cybrids had decreased expressions for CFH, C3, and EFEMP1 genes, high risk genes for AMD, and higher expression for MYO7A, a gene associated with retinal degeneration in Usher type IB syndrome. The H and J cybrids also have comparatively altered expression of nuclear genes involved in pathways for cell signaling, inflammation, and metabolism. Our findings demonstrate that mtDNA haplogroup variants mediate not only energy production and cell growth, but also cell signaling for major molecular pathways. These data support the hypothesis that mtDNA variants play important roles in numerous cellular functions and disease processes, including AMD."	"Relative frequencies of inherited retinal dystrophies and optic neuropathies in Southern France: assessment of 21-year data management. Inherited retinal dystrophies (IRDs) and inherited optic neuropathies (IONs) are rare diseases defined by specific clinical and molecular features. The relative prevalence of these conditions was determined in Southern France. Patients recruited from a specialized outpatient clinic over a 21-year period underwent extensive clinical investigations and 107 genes were screened by polymerase chain reaction/sequencing. There were 1957 IRD cases (1481 families) distributed in 70% of pigmentary retinopathy cases (56% non-syndromic, 14% syndromic), 20% maculopathies and 7% stationary conditions. Patients with retinitis pigmentosa were the most frequent (47%) followed by Usher syndrome (10.8%). Among non-syndromic pigmentary retinopathy patients, 84% had rod-cone dystrophy, 8% cone-rod dystrophy and 5% Leber congenital amaurosis. Macular dystrophies were encountered in 398 cases (30% had Stargardt disease and 11% had Best disease). There were 184 ION cases (127 families) distributed in 51% with dominant optic neuropathies, 33% with recessive/sporadic forms and 16% with Leber hereditary optic neuropathy. Positive molecular results were obtained in 417/609 families with IRDs (68.5%) and in 27/58 with IONs (46.5%). The sequencing of 5 genes (ABCA4, USH2A, MYO7A, RPGR and PRPH2) provided a positive molecular result in 48% of 417 families with IRDs. Except for autosomal retinitis pigmentosa, in which less than half the families had positive molecular results, about 75% of families with other forms of retinal conditions had a positive molecular diagnosis. Although gene discovery considerably improved molecular diagnosis in many subgroups of IRDs and IONs, retinitis pigmentosa, accounting for almost half of IRDs, remains only partly molecularly defined."	"Retinal gene therapy with a large MYO7A cDNA using adeno-associated virus. Usher 1 patients are born profoundly deaf and then develop retinal degeneration. Thus they are readily identified before the onset of retinal degeneration, making gene therapy a viable strategy to prevent their blindness. Here, we have investigated the use of adeno-associated viruses (AAVs) for the delivery of the Usher 1B gene, MYO7A, to retinal cells in cell culture and in Myo7a-null mice. MYO7A cDNA, under control of a smCBA promoter, was packaged in single AAV2 and AAV5 vectors and as two overlapping halves in dual AAV2 vectors. The 7.9-kb smCBA-MYO7A exceeds the capacity of an AAV vector; packaging of such oversized constructs into single AAV vectors may involve fragmentation of the gene. Nevertheless, the AAV2 and AAV5 single vector preparations successfully transduced photoreceptor and retinal pigment epithelium cells, resulting in functional, full-length MYO7A protein and correction of mutant phenotypes, suggesting successful homologous recombination of gene fragments. With discrete, conventional-sized dual AAV2 vectors, full-length MYO7A was detected, but the level of protein expression was variable, and only a minority of cells showed phenotype correction. Our results show that MYO7A therapy with AAV2 or AAV5 single vectors is efficacious; however, the dual AAV2 approach proved to be less effective. "	"Cyclic nucleotide-gated channel α-3 (CNGA3) interacts with stereocilia tip-link cadherin 23 + exon 68 or alternatively with myosin VIIa, two proteins required for hair cell mechanotransduction. Previously, we obtained evidence for a photoreceptor/olfactory type of CNGA3 transcript in a purified teleost vestibular hair cell preparation with immunolocalization of CNGA3 protein to stereocilia of teleost vestibular and mammalian cochlear hair cells. The carboxyl terminus of highly Ca(2+)-permeable CNGA3 expressed in the mammalian organ of Corti and saccular hair cells was found to interact with an intracellular domain of microfibril interface-located protein 1 (EMILIN 1), a member of the elastin superfamily, also immunolocalizd to hair cell stereocilia (Selvakumar, D., Drescher, M. J., Dowdall, J. R., Khan, K. M., Hatfield, J. S., Ramakrishnan, N. A., and Drescher, D. G. (2012) Biochem. J. 443, 463-476). Here, we provide evidence for organ of Corti proteins, of Ca(2+)-dependent binding of the amino terminus of CNGA3 specifically to the carboxyl terminus of stereocilia tip-link protein CDH23 +68 (cadherin 23 with expressed exon 68) by yeast two-hybrid mating and co-transformation protocols, pulldown assays, and surface plasmon resonance analysis. Myosin VIIa, required for adaptation of hair cell mechanotransduction (MET) channel(s), competed with CDH23 +68, with direct Ca(2+)-dependent binding to the amino terminus of CNGA3. Based upon the premise that hair cell stereocilia tip-link proteins are closely coupled with MET, these results are consistent with the possibility that CNGA3 participates in hair-cell MET. Together with the demonstration of protein-protein interaction between HCN1 and tip-link protein protocadherin 15 CD3 (Ramakrishnan, N. A., Drescher, M. J., Barretto, R. L., Beisel, K. W., Hatfield, J. S., and Drescher, D. G. (2009) J. Biol. Chem. 284, 3227-3238; Ramakrishnan, N. A., Drescher, M. J., Khan, K. M., Hatfield, J. S., and Drescher, D. G. (2012) J. Biol. Chem. 287, 37628-37646), a protein-protein interaction for CNGA3 and a second tip-link protein, CDH23 +68, further suggests possible association of two different channels with a single stereocilia tip link."	"Inner ear morphology is perturbed in two novel mouse models of recessive deafness. Human MYO7A mutations can cause a variety of conditions involving the inner ear. These include dominant and recessive non-syndromic hearing loss and syndromic conditions such as Usher syndrome. Mouse models of deafness allow us to investigate functional pathways involved in normal and abnormal hearing processes. We present two novel mouse models with mutations in the Myo7a gene with distinct phenotypes. The mutation in Myo7a(I487N/I487N) ewaso is located within the head motor domain of Myo7a. Mice exhibit a profound hearing loss and manifest behaviour associated with a vestibular defect. A mutation located in the linker region between the coiled-coil and the first MyTH4 domains of the protein is responsible in Myo7a(F947I/F947I) dumbo. These mice show a less severe hearing loss than in Myo7a(I487N/I487N) ewaso; their hearing loss threshold is elevated at 4 weeks old, and progressively worsens with age. These mice show no obvious signs of vestibular dysfunction, although scanning electron microscopy reveals a mild phenotype in vestibular stereocilia bundles. The Myo7a(F947I/F947I) dumbo strain is therefore the first reported Myo7a mouse model without an overt vestibular phenotype; a possible model for human DFNB2 deafness. Understanding the molecular basis of these newly identified mutations will provide knowledge into the complex genetic pathways involved in the maintenance of hearing, and will provide insight into recessively inherited sensorineural hearing loss in humans."	"A genome-wide scan of selective sweeps in two broiler chicken lines divergently selected for abdominal fat content. Genomic regions controlling abdominal fatness (AF) were studied in the Northeast Agricultural University broiler line divergently selected for AF. In this study, the chicken 60KSNP chip and extended haplotype homozygosity (EHH) test were used to detect genome-wide signatures of AF. A total of 5357 and 5593 core regions were detected in the lean and fat lines, and 51 and 57 reached a significant level (P&lt;0.01), respectively. A number of genes in the significant core regions, including RB1, BBS7, MAOA, MAOB, EHBP1, LRP2BP, LRP1B, MYO7A, MYO9A and PRPSAP1, were detected. These genes may be important for AF deposition in chickens. We provide a genome-wide map of selection signatures in the chicken genome, and make a contribution to the better understanding the mechanisms of selection for AF content in chickens. The selection for low AF in commercial breeding using this information will accelerate the breeding progress."	"An Usher syndrome type 1 patient diagnosed before the appearance of visual symptoms by MYO7A mutation analysis. Usher syndrome type 1 (USH1) appears to have only profound non-syndromic hearing loss in childhood and retinitis pigmentosa develops in later years. This study examined the frequency of USH1 before the appearance of visual symptoms in Japanese deaf children by MYO7A mutation analysis. We report the case of 6-year-old male with profound hearing loss, who did not have visual symptoms. The frequency of MYO7A mutations in profound hearing loss children is also discussed. We sequenced all exons of the MYO7A gene in 80 Japanese children with severe to profound non-syndromic HL not due to mutations of the GJB2 gene (ages 0-14 years). A total of nine DNA variants were found and six of them were presumed to be non-pathogenic variants. In addition, three variants of them were found in two patients (2.5%) with deafness and were classified as possible pathogenic variants. Among them, at least one nonsense mutation and one missense mutation from the patient were confirmed to be responsible for deafness. After MYO7A mutation analysis, the patient was diagnosed with RP, and therefore, also diagnosed with USH1. This is the first case report to show the advantage of MYO7A mutation analysis to diagnose USH1 before the appearance of visual symptoms. We believed that MYO7A mutation analysis is valid for the early diagnosis of USH1."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"Inner ear progenitor cells can be generated in vitro from human bone marrow mesenchymal stem cells. Mouse mesenchymal stem cells (MSCs) can generate sensory neurons and produce inner ear hair cell-like cells. An equivalent source from humans is highly desirable, given their potential application in patient-specific regenerative therapies for deafness. In this study, we explored the ability of human MSCs (hMSCs) to differentiate into otic lineages. hMSCs were exposed to culture media conditioned by human fetal auditory stem cells. Conditioned media induced the expression of otic progenitor markers PAX8, PAX2, GATA3 and SOX2. After 4 weeks, cells coexpressed ATOH1, MYO7A and POU4F3 (indicators of hair cell lineage) or neuronal markers NEUROG1, POU4F1 and NEFH. Inhibition of WNT signaling prevented differentiation into otic progenitors, while WNT activation partially phenocopied results seen with the conditioned media. This study demonstrates that hMSCs can be driven to express key genes found in the otic lineages and thereby promotes their status as candidates for regenerative therapies for deafness."	"MYC gene delivery to adult mouse utricles stimulates proliferation of postmitotic supporting cells in vitro. The inner ears of adult humans and other mammals possess a limited capacity for regenerating sensory hair cells, which can lead to permanent auditory and vestibular deficits. During development and regeneration, undifferentiated supporting cells within inner ear sensory epithelia can self-renew and give rise to new hair cells; however, these otic progenitors become depleted postnatally. Therefore, reprogramming differentiated supporting cells into otic progenitors is a potential strategy for restoring regenerative potential to the ear. Transient expression of the induced pluripotency transcription factors, Oct3/4, Klf4, Sox2, and c-Myc reprograms fibroblasts into neural progenitors under neural-promoting culture conditions, so as a first step, we explored whether ectopic expression of these factors can reverse supporting cell quiescence in whole organ cultures of adult mouse utricles. Co-infection of utricles with adenoviral vectors separately encoding Oct3/4, Klf4, Sox2, and the degradation-resistant T58A mutant of c-Myc (c-MycT58A) triggered significant levels of supporting cell S-phase entry as assessed by continuous BrdU labeling. Of the four factors, c-MycT58A alone was both necessary and sufficient for the proliferative response. The number of BrdU-labeled cells plateaued between 5-7 days after infection, and then decreased ~60% by 3 weeks, as many cycling cells appeared to enter apoptosis. Switching to differentiation-promoting culture medium at 5 days after ectopic expression of c-MycT58A temporarily attenuated the loss of BrdU-labeled cells and accompanied a very modest but significant expansion of the sensory epithelium. A small number of the proliferating cells in these cultures labeled for the hair cell marker, myosin VIIA, suggesting they had begun differentiating towards a hair cell fate. The results indicate that ectopic expression of c-MycT58A in combination with methods for promoting cell survival and differentiation may restore regenerative potential to supporting cells within the adult mammalian inner ear."	"Localization of Usher 1 proteins to the photoreceptor calyceal processes, which are absent from mice. The mechanisms underlying retinal dystrophy in Usher syndrome type I (USH1) remain unknown because mutant mice lacking any of the USH1 proteins-myosin VIIa, harmonin, cadherin-23, protocadherin-15, sans-do not display retinal degeneration. We found here that, in macaque photoreceptor cells, all USH1 proteins colocalized at membrane interfaces (i) between the inner and outer segments in rods and (ii) between the microvillus-like calyceal processes and the outer segment basolateral region in rods and cones. This pattern, conserved in humans and frogs, was mediated by the formation of an USH1 protein network, which was associated with the calyceal processes from the early embryonic stages of outer segment growth onwards. By contrast, mouse photoreceptors lacked calyceal processes and had no USH1 proteins at the inner-outer segment interface. We suggest that USH1 proteins form an adhesion belt around the basolateral region of the photoreceptor outer segment in humans, and that defects in this structure cause the retinal degeneration in USH1 patients."	"TFE2 and GATA3 enhance induction of POU4F3 and myosin VIIa positive cells in nonsensory cochlear epithelium by ATOH1. Transcription factors (TFs) can regulate different sets of genes to determine specific cell types by means of combinatorial codes. We previously identified closely-spaced TF binding motifs located 8.2-8.5 kb 5' to the ATG of the murine Pou4f3 gene, a gene required for late hair cell (HC) differentiation and survival. These motifs, 100% conserved among four mammalian species, include a cluster of E-boxes preferred by TCF3/ATOH1 heterodimers as well as motifs for GATA factors and SP1. We hypothesized that these factors might interact to regulate the Pou4f3 gene and possibly induce a HC phenotype in non-sensory cells of the cochlea. Cochlear sensory epithelium explants were prepared from postnatal day 1.5 transgenic mice in which expression of GFP is driven by 8.5 kb of Pou4f3 5' genomic DNA (Pou4f3/GFP). Electroporation was used to transfect cells of the greater epithelial ridge with multiple plasmids encoding human ATOH1 (hATOH1), hTCF3 (also known as E2A or TEF2), hGATA3, and hSP1. hATOH1 or hTCF3 alone induced Pou4f3/GFP cells but hGATA3 and hSP1 did not. hATOH1 but not hTCF3 induced conversion of greater epithelial ridge cells into Pou4f3/GFP and myosin VIIa double-positive cells. Transfection of hATOH1 in combination with hTCF3 or hGATA3 induced 2-3X more Pou4f3/GFP cells, and similarly enhanced Pou4f3/GFP and myosin VIIa double-positive cells, when compared to hATOH1 alone. Triple or quadruple TF combinations were generally not more effective than double TF combinations except in the middle turn, where co-transfection of hATOH1, hE2A, and hGATA3 was more effective than hATOH1 plus either hTCF3 or hGATA3. The results demonstrate that TFs can cooperate in regulation of the Pou4f3 gene and in the induction of at least one other element of a HC phenotype. Our data further indicate that combinations of TFs can be more effective than individual TFs in the inner ear."	"Myosins in cell junctions. The development of cell-cell junctions was a fundamental step in metazoan evolution, and human health depends on the formation and function of cell junctions. Although it has long been known that actin and conventional myosin have important roles in cell junctions, research has begun to reveal the specific functions of the different forms of conventional myosin. Exciting new data also reveals that a growing number of unconventional myosins have important roles in cell junctions. Experiments showing that cell junctions act as mechanosensors have also provided new impetus to understand the functions of myosins and the forces they exert. In this review we will summarize recent developments on the roles of myosins in cell junctions. "	"Next-generation sequencing identifies a novel compound heterozygous mutation in MYO7A in a Chinese patient with Usher Syndrome 1B. Targeted enrichment and next-generation sequencing (NGS) have been employed for detection of genetic diseases. The purpose of this study was to validate the accuracy and sensitivity of our method for comprehensive mutation detection of hereditary hearing loss, and identify inherited mutations involved in human deafness accurately and economically. To make genetic diagnosis of hereditary hearing loss simple and timesaving, we designed a 0.60 MB array-based chip containing 69 nuclear genes and mitochondrial genome responsible for human deafness and conducted NGS toward ten patients with five known mutations and a Chinese family with hearing loss (never genetically investigated). Ten patients with five known mutations were sequenced using next-generation sequencing to validate the sensitivity of the method. We identified four known mutations in two nuclear deafness causing genes (GJB2 and SLC26A4), one in mitochondrial DNA. We then performed this method to analyze the variants in a Chinese family with hearing loss and identified compound heterozygosity for two novel mutations in gene MYO7A. The compound heterozygosity identified in gene MYO7A causes Usher Syndrome 1B with severe phenotypes. The results support that the combination of enrichment of targeted genes and next-generation sequencing is a valuable molecular diagnostic tool for hereditary deafness and suitable for clinical application."	"Mutation screening of the PCDH15 gene in Spanish patients with Usher syndrome type I. PCDH15 codes for protocadherin-15, a cell-cell adhesion protein essential in the morphogenesis and cohesion of stereocilia bundles and in the function or preservation of photoreceptor cells. Mutations in the PCDH15 gene are responsible for Usher syndrome type I (USH1F) and non-syndromic hearing loss (DFNB23). The purpose of this work was to perform PCDH15 mutation screening to identify the genetic cause of the disease in a cohort of Spanish patients with Usher syndrome type I and establish phenotype-genotype correlation. Mutation analysis of PCDH15 included additional exons recently identified and was performed by direct sequencing. The screening was performed in 19 probands with USH already screened for mutations in the most prevalent USH1 genes, myosin VIIA (MYO7A) and cadherin-23 (CDH23), and for copy number variants in PCDH15. Seven different point mutations, five novel, were detected. Including the large PCDH15 rearrangements previously reported in our cohort of patients, a total of seven of 19 patients (36.8%) were carriers of at least one pathogenic allele. Thirteen out of the 38 screened alleles carried pathogenic PCDH15 variants (34.2%). Five out of the seven point mutations reported in the present study are novel, supporting the idea that most PCDH15 mutations are private. Furthermore, no mutational hotspots have been identified. In most patients, detected mutations led to a truncated protein, reinforcing the hypothesis that severe mutations cause the Usher I phenotype and that missense variants are mainly responsible for non-syndromic hearing impairment."	"Wnt-responsive Lgr5-expressing stem cells are hair cell progenitors in the cochlea. Auditory hair cells are surrounded on their basolateral aspects by supporting cells, and these two cell types together constitute the sensory epithelium of the organ of Corti, which is the hearing apparatus of the ear. We show here that Lgr5, a marker for adult stem cells, was expressed in a subset of supporting cells in the newborn and adult murine cochlea. Lgr5-expressing supporting cells, sorted by flow cytometry and cultured in a single-cell suspension, compared with unsorted cells, displayed an enhanced capacity for self-renewing neurosphere formation in response to Wnt and were converted to hair cells at a higher (&gt;10-fold) rate. The greater differentiation of hair cells in the neurosphere assay showed that Lgr5-positive cells had the capacity to act as cochlear progenitor cells, and lineage tracing confirmed that Lgr5-expressing cells accounted for the cells that formed neurospheres and differentiated to hair cells. The responsiveness to Wnt of cells with a capacity for division and sensory cell formation suggests a potential route to new hair cell generation in the adult cochlea."	"Evidence of genetic heterogeneity in Alberta Hutterites with Usher syndrome type I. To identify the genetic defect in a Hutterite population from northern Alberta with Usher syndrome type I. Complete ophthalmic examinations were conducted on two boys and two girls from two related Hutterite families diagnosed with Usher syndrome type I. DNA from patients and their parents was first evaluated for a mutation in exon 10 of the protocadherin-related 15 (PCDH15) gene (c.1471delG), previously reported in southern Alberta Hutterite patients with Usher syndrome (USH1F). Single nucleotide polymorphic linkage analysis was then used to confirm another locus, and DNA was analyzed with the Usher Chip v4.0 platform. Severe hearing impairment, unintelligible speech, and retinitis pigmentosa with varying degrees of visual acuity and visual field loss established a clinical diagnosis of Usher syndrome type I. The patients did not carry the exon 10 mutation in the PCDH15 gene; however, with microarray analysis, a previously reported mutation (c.52C&gt;T; p.Q18X) in the myosin VIIA (MYO7A) gene was found in the homozygous state in the affected siblings. The finding of a MYO7A mutation in two related Hutterite families from northern Alberta provides evidence of genetic heterogeneity in Hutterites affected by Usher syndrome type I."	"Extended mutation spectrum of Usher syndrome in Finland. The Finnish distribution of clinical Usher syndrome (USH) types is 40% USH3, 34% USH1 and 12% USH2. All patients with USH3 carry the founder mutation in clarin 1 (CLRN1), whereas we recently reported three novel myosin VIIA (MYO7A) mutations in two unrelated patients with USH1. This study was carried out to further investigate the USH mutation spectrum in Finnish patients. We analysed samples from nine unrelated USH patients/families without known mutations and two USH3 families with atypically severe phenotype. The Asper Ophthalmics USH mutation chip was used to screen for known mutations and to evaluate the chip in molecular diagnostics of Finnish patients. The chip revealed a heterozygous usherin (USH2A) mutation, p.N346H, in one patient. Sequencing of MYO7A and/or USH2A in three index patients revealed two novel heterozygous mutations, p.R873W in MYO7A and c.14343+2T&gt;C in USH2A. We did not identify definite pathogenic second mutations in the patients, but identified several probably nonpathogenic variations that may modify the disease phenotype. Possible digenism could not be excluded in two families segregating genomic variations in both MYO7A and USH2A, and two families with CLRN1 and USH2A. We conclude that there is considerable genetic heterogeneity of USH1 and USH2 in Finland, making molecular diagnostics and genetic counselling of patients and families challenging."	"Wnt signaling induces proliferation of sensory precursors in the postnatal mouse cochlea. Inner ear hair cells are specialized sensory cells essential for auditory function. Previous studies have shown that the sensory epithelium is postmitotic, but it harbors cells that can behave as progenitor cells in vitro, including the ability to form new hair cells. Lgr5, a Wnt target gene, marks distinct supporting cell types in the neonatal cochlea. Here, we tested the hypothesis that Lgr5(+) cells are Wnt-responsive sensory precursor cells. In contrast to their quiescent in vivo behavior, Lgr5(+) cells isolated by flow cytometry from neonatal Lgr5(EGFP-CreERT2/+) mice proliferated and formed clonal colonies. After 10 d in culture, new sensory cells formed and displayed specific hair cell markers (myo7a, calretinin, parvalbumin, myo6) and stereocilia-like structures expressing F-actin and espin. In comparison with other supporting cells, Lgr5(+) cells were enriched precursors to myo7a(+) cells, most of which formed without mitotic division. Treatment with Wnt agonists increased proliferation and colony-formation capacity. Conversely, small-molecule inhibitors of Wnt signaling suppressed proliferation without compromising the myo7a(+) cells formed by direct differentiation. In vivo lineage tracing supported the idea that Lgr5(+) cells give rise to myo7a(+) hair cells in the neonatal Lgr5(EGFP-CreERT2/+) cochlea. In addition, overexpression of β-catenin initiated proliferation and led to transient expansion of Lgr5(+) cells within the cochlear sensory epithelium. These results suggest that Lgr5 marks sensory precursors and that Wnt signaling can promote their proliferation and provide mechanistic insights into Wnt-responsive progenitor cells during sensory organ development."	"Myosin light-chain kinase is necessary for membrane homeostasis in cochlear inner hair cells. The structural homeostasis of the cochlear hair cell membrane is critical for all aspects of sensory transduction, but the regulation of its maintenance is not well understood. In this report, we analyzed the cochlear hair cells of mice with specific deletion of myosin light chain kinase (MLCK) in inner hair cells. MLCK-deficient mice showed impaired hearing, with a 5- to 14-dB rise in the auditory brainstem response (ABR) thresholds to clicks and tones of different frequencies and a significant decrease in the amplitude of the ABR waves. The mutant inner hair cells produced several ball-like structures around the hair bundles in vivo, indicating impaired membrane stability. Inner hair cells isolated from the knockout mice consistently displayed less resistance to hypoosmotic solution and less membrane F-actin. Myosin light-chain phosphorylation was also reduced in the mutated inner hair cells. Our results suggest that MLCK is necessary for maintaining the membrane stability of inner hair cells."	"Pilot candidate gene analysis of patients ≥ 60 years old with aortic stenosis involving a tricuspid aortic valve. The potential genetic basis of aortic stenosis in older people is poorly understood. A total of 265 patients with aortic stenosis involving tricuspid aortic valves and 961 controls were genotyped for ≤660 candidate single nucleotide polymorphisms (SNPs). After dividing the patients and controls into training and validation sets, we tested the correlation of the SNPs with the age-adjusted aortic valve area, determined by echocardiography or cardiac catheterization. A bootstrapped global p value of ≤0.005 was considered evidence of a possible significant correlation. The cases were aged 73 ± 7 years, and 72.7% were men. The median aortic valve area was 1.0 cm(2) (interquartile range 0.7 to 1.5). The controls were aged 69 ± 6 years, and 69.8% were men. The minor allele frequency was 21% ± 15% (37% &lt;0.20). Three SNPs met the criteria for significant correlation (rs2276288 [MYO7A], p = 0.001; rs5194 [AGTR1], p = 0.004; rs207 307 [ELN], p = 0.005). Another 2 SNPs reached borderline significance (p ≤0.008). In conclusion, we report 3 SNPs to be associated with aortic stenosis involving tricuspid aortic valves in older subjects. Given the concerns regarding the problem of multiple statistical testing, validation studies are required to further assess these correlations."	"Digenic inheritance of deafness caused by 8J allele of myosin-VIIA and mutations in other Usher I genes. Inherited hearing loss in mice has contributed substantially to our understanding of inner-ear function. We identified a new allele at the Myo7a locus, Myo7a(sh1-8J); genomic characterization indicated that Myo7a(sh1-8J) arose from complex deletion encompassing exons 38-40 and 42-46. Homozygous mutant mice had no detectable auditory brainstem response, displayed highly disorganized hair-cell stereocilia and had no detectable MYO7A protein. We generated mice that were digenic heterozygotes for Myo7a(sh1-8J) and one of each Cdh23(v-2J), Ush1g(js) or Pcdh15(av-3J) alleles, or an Ush1c null allele. Significant levels of age-related hearing loss were detected in +/Myo7a(sh1-8J) +/Ush1g(js), +/Myo7a(sh1-8J) +/Cdh23(v-2J) and +/Myo7a(sh1-8J) +/Pcdh15(av-3J) double heterozygous mice compared with age-matched single heterozygous animals, suggesting epistasis between Myo7a and each of the three loci. +/Pcdh15(av-3J) +/Ush1g(js) double heterozygous mice also showed elevated hearing loss, suggesting Pcdh15-Ush1g epistasis. While we readily detected MYO7A, USH1C, CDH23 and PCDH15 using mass spectrometry of purified chick utricle hair bundles, we did not detect USH1G. Consistent with that observation, Ush1g microarray signals were much lower in chick cochlea than those of Myo7a, Ush1c, Cdh23 and Pcdh15 and were not detected in the chick utricle. These experiments confirm the importance of MYO7A for the development and maintenance of bundle function and support the suggestion that MYO7A, USH1G (Sans) and CDH23 form the upper tip-link complex in adult mice, likely in combination with USH1C (harmonin). MYO7A, USH1G and PCDH15 may form another complex in stereocilia. USH1G may be a limiting factor in both complexes."	"A novel Atoh1 &quot;self-terminating&quot; mouse model reveals the necessity of proper Atoh1 level and duration for hair cell differentiation and viability. Atonal homolog1 (Atoh1) is a bHLH transcription factor essential for inner ear hair cell differentiation. Targeted expression of Atoh1 at various stages in development can result in hair cell differentiation in the ear. However, the level and duration of Atoh1 expression required for proper hair cell differentiation and maintenance remain unknown. We generated an Atoh1 conditional knockout (CKO) mouse line using Tg(Atoh1-cre), in which the cre expression is driven by an Atoh1 enhancer element that is regulated by Atoh1 protein to &quot;self-terminate&quot; its expression. The mutant mice show transient, limited expression of Atoh1 in all hair cells in the ear. In the organ of Corti, reduction and delayed deletion of Atoh1 result in progressive loss of almost all the inner hair cells and the majority of the outer hair cells within three weeks after birth. The remaining cells express hair cell marker Myo7a and attract nerve fibers, but do not differentiate normal stereocilia bundles. Some Myo7a-positive cells persist in the cochlea into adult stages in the position of outer hair cells, flanked by a single row of pillar cells and two to three rows of disorganized Deiters cells. Gene expression analyses of Atoh1, Barhl1 and Pou4f3, genes required for survival and maturation of hair cells, reveal earlier and higher expression levels in the inner compared to the outer hair cells. Our data show that Atoh1 is crucial for hair cell mechanotransduction development, viability, and maintenance and also suggest that Atoh1 expression level and duration may play a role in inner vs. outer hair cell development. These genetically engineered Atoh1 CKO mice provide a novel model for establishing critical conditions needed to regenerate viable and functional hair cells with Atoh1 therapy."	"Novel mutations of MYO7A and USH1G in Israeli Arab families with Usher syndrome type 1. This study investigated the genetic basis for Usher syndrome type 1 (USH1) in four consanguineous Israeli Arab families. Haplotype analysis for all known USH1 loci was performed in each family. In families for which haplotype analysis was inconclusive, we performed genome-wide homozygosity mapping using a single nucleotide polymorphism (SNP) array. For mutation analysis, specific primers were used to PCR amplify the coding exons of the MYO7A, USH1C, and USH1G genes including intron-exon boundaries. Mutation screening was performed with direct sequencing. A combination of haplotype analysis and genome-wide homozygosity mapping indicated linkage to the USH1B locus in two families, USH1C in one family and USH1G in another family. Sequence analysis of the relevant genes (MYO7A, USH1C, and USH1G) led to the identification of pathogenic mutations in all families. Two of the identified mutations are novel (c.1135-1147dup in MYO7A and c.206-207insC in USH1G). USH1 is a genetically heterogenous condition. Of the five USH1 genes identified to date, USH1C and USH1G are the rarest contributors to USH1 etiology worldwide. It is therefore interesting that two of the four Israeli Arab families reported here have mutations in these two genes. This finding further demonstrates the unique genetic structure of the Israeli population in general, and the Israeli Arab population in particular, which due to high rates of consanguinity segregates many rare autosomal recessive genetic conditions."	"Usher syndrome (sensorineural deafness and retinitis pigmentosa): pathogenesis, molecular diagnosis and therapeutic approaches. Usher syndrome (USH) is the most prevalent cause of hereditary deafness-blindness in humans. In this review, we pinpoint new insights regarding the molecular mechanisms defective in this syndrome, its molecular diagnosis and prospective therapies. Animal models wherein USH proteins were targeted at different maturation stages of the auditory hair cells have been engineered, shedding new light on the development and functioning of the hair bundle, the sound receptive structure. Improved protocols and guidelines for early molecular diagnosis of USH (USH genotyping microarrays, otochips and complete Sanger sequencing of the 366 coding exons of identified USH genes) have been developed. Approaches to alleviate or cure hearing and visual impairments have been initiated, leading to various degrees of functional rescuing. Whereas the mechanisms underlying hearing impairment in USH patients are being unraveled, showing in particular that USH1 proteins are involved in the shaping of the hair bundle and the functioning of the mechanoelectrical transduction machinery, the mechanisms underlying the retinal defects are still unclear. Efforts to improve clinical diagnosis have been successful. Yet, despite some encouraging results, further development of therapeutic approaches is necessary to ultimately treat this dual sensory defect."	"Gene therapy strategies for Usher syndrome type 1B. NA"	"Comprehensive sequence analysis of nine Usher syndrome genes in the UK National Collaborative Usher Study. Usher syndrome (USH) is an autosomal recessive disorder comprising retinitis pigmentosa, hearing loss and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous with three distinctive clinical types (I-III) and nine Usher genes identified. This study is a comprehensive clinical and genetic analysis of 172 Usher patients and evaluates the contribution of digenic inheritance. The genes MYO7A, USH1C, CDH23, PCDH15, USH1G, USH2A, GPR98, WHRN, CLRN1 and the candidate gene SLC4A7 were sequenced in 172 UK Usher patients, regardless of clinical type. No subject had definite mutations (nonsense, frameshift or consensus splice site mutations) in two different USH genes. Novel missense variants were classified UV1-4 (unclassified variant): UV4 is 'probably pathogenic', based on control frequency &lt;0.23%, identification in trans to a pathogenic/probably pathogenic mutation and segregation with USH in only one family; and UV3 ('likely pathogenic') as above, but no information on phase. Overall 79% of identified pathogenic/UV4/UV3 variants were truncating and 21% were missense changes. MYO7A accounted for 53.2%, and USH1C for 14.9% of USH1 families (USH1C:c.496+1G&gt;A being the most common USH1 mutation in the cohort). USH2A was responsible for 79.3% of USH2 families and GPR98 for only 6.6%. No mutations were found in USH1G, WHRN or SLC4A7. One or two pathogenic/likely pathogenic variants were identified in 86% of cases. No convincing cases of digenic inheritance were found. It is concluded that digenic inheritance does not make a significant contribution to Usher syndrome; the observation of multiple variants in different genes is likely to reflect polymorphic variation, rather than digenic effects."	"Allelic hierarchy of CDH23 mutations causing non-syndromic deafness DFNB12 or Usher syndrome USH1D in compound heterozygotes. Recessive mutant alleles of MYO7A, USH1C, CDH23, and PCDH15 cause non-syndromic deafness or type 1 Usher syndrome (USH1) characterised by deafness, vestibular areflexia, and vision loss due to retinitis pigmentosa. For CDH23, encoding cadherin 23, non-syndromic DFNB12 deafness is associated primarily with missense mutations hypothesised to have residual function. In contrast, homozygous nonsense, frame shift, splice site, and some missense mutations of CDH23, all of which are presumably functional null alleles, cause USH1D. The phenotype of a CDH23 compound heterozygote for a DFNB12 allele in trans configuration to an USH1D allele is not known and cannot be predicted from current understanding of cadherin 23 function in the retina and vestibular labyrinth. To address this issue, this study sought CDH23 compound heterozygotes by sequencing this gene in USH1 probands, and families segregating USH1D or DFNB12. Five non-syndromic deaf individuals were identified with normal retinal and vestibular phenotypes that segregate compound heterozygous mutations of CDH23, where one mutation is a known or predicted USH1 allele. One DFNB12 allele in trans configuration to an USH1D allele of CDH23 preserves vision and balance in deaf individuals, indicating that the DFNB12 allele is phenotypically dominant to an USH1D allele. This finding has implications for genetic counselling and the development of therapies for retinitis pigmentosa in Usher syndrome. ACCESSION NUMBERS: The cDNA and protein Genbank accession numbers for CDH23 and cadherin 23 used in this paper are AY010111.2 and AAG27034.2, respectively."	"The many different cellular functions of MYO7A in the retina. Mutations in MYO7A (myosin VIIa) cause Usher syndrome type 1B, a disorder involving profound congenital deafness and progressive blindness. In the retina, most MYO7A is localized in the apical region of the RPE (retinal pigmented epithelial) cells, and a small amount is associated with the ciliary and periciliary membranes of the photoreceptor cells. Its roles appear to be quite varied. Studies with MYO7A-null mice indicate that MYO7A participates in the apical localization of RPE melanosomes and in the removal of phagosomes from the apical RPE for their delivery to lysosomes in the basal RPE. In the first role, MYO7A competes with microtubule motors, but in the second one, it may function co-operatively. An additional role of MYO7A in the RPE is indicated by the requirement for it in the light-dependent translocation of the ER (endoplasmic reticulum)-associated visual cycle enzyme RPE65 and normal functioning of the visual retinoid cycle. In photoreceptor cells lacking MYO7A, opsin accumulates abnormally in the transition zone of the cilium, suggesting that MYO7A functions as a selective barrier for membrane proteins at the distal end of the transition zone. It is likely that the progressive retinal degeneration that occurs in Usher syndrome 1B patients results from a combination of cellular defects in the RPE and photoreceptor cells."	"Regulation of myosin 5a and myosin 7a. The myosin superfamily is diverse in its structure, kinetic mechanisms and cellular function. The enzymatic activities of most myosins are regulated by some means such as Ca2+ ion binding, phosphorylation or binding of other proteins. In the present review, we discuss the structural basis for the regulation of mammalian myosin 5a and Drosophila myosin 7a. We show that, although both myosins have a folded inactive state in which domains in the myosin tail interact with the motor domain, the details of the regulation of these two myosins differ greatly."	"Whole-exome sequencing identifies ALMS1, IQCB1, CNGA3, and MYO7A mutations in patients with Leber congenital amaurosis. It has been well documented that mutations in the same retinal disease gene can result in different clinical phenotypes due to difference in the mutant allele and/or genetic background. To evaluate this, a set of consanguineous patient families with Leber congenital amaurosis (LCA) that do not carry mutations in known LCA disease genes was characterized through homozygosity mapping followed by targeted exon/whole-exome sequencing to identify genetic variations. Among these families, a total of five putative disease-causing mutations, including four novel alleles, were found for six families. These five mutations are located in four genes, ALMS1, IQCB1, CNGA3, and MYO7A. Therefore, in our LCA collection from Saudi Arabia, three of the 37 unassigned families carry mutations in retinal disease genes ALMS1, CNGA3, and MYO7A, which have not been previously associated with LCA, and 3 of the 37 carry novel mutations in IQCB1, which has been recently associated with LCA. Together with other reports, our results emphasize that the molecular heterogeneity underlying LCA, and likely other retinal diseases, may be highly complex. Thus, to obtain accurate diagnosis and gain a complete picture of the disease, it is essential to sequence a larger set of retinal disease genes and combine the clinical phenotype with molecular diagnosis."	"Retinal disease course in Usher syndrome 1B due to MYO7A mutations. PURPOSE. To determine the disease course in Usher syndrome type IB (USH1B) caused by myosin 7A (MYO7A) gene mutations. METHODS. USH1B patients (n = 33, ages 2-61) representing 25 different families were studied by ocular examination, kinetic and chromatic static perimetry, dark adaptometry, and optical coherence tomography (OCT). Consequences of the mutant alleles were predicted. RESULTS. All MYO7A patients had severely abnormal ERGs, but kinetic fields revealed regional patterns of visual loss that suggested a disease sequence. Rod-mediated vision could be lost to different degrees in the first decades of life. Cone vision followed a more predictable and slower decline. Central vision ranged from normal to reduced in the first four decades of life and thereafter was severely abnormal. Dark adaptation kinetics was normal. Photoreceptor layer thickness in a wide region of central retina could differ dramatically between patients of comparable ages; and there were examples of severe losses in childhood as well as relative preservation in patients in the third decade of life. Comparisons were made between the mutant alleles in mild versus more severe phenotypes. CONCLUSIONS. A disease sequence in USH1B leads from generally full but impaired visual fields to residual small central islands. At most disease stages, there was preserved temporal peripheral field, a potential target for early phase clinical trials of gene therapy. From data comparing patients' rod disease in this cohort, the authors speculate that null MYO7A alleles could be associated with milder dysfunction and fewer photoreceptor structural losses at ages when other genotypes show more severe phenotypes."	"Myosin VIIa and sans localization at stereocilia upper tip-link density implicates these Usher syndrome proteins in mechanotransduction. In the most accepted model for hair cell mechanotransduction, a cluster of myosin motors located at the stereocilia upper tip-link density (UTLD) keeps the tip-link under tension at rest. Both myosin VIIa (MYO7A) and myosin 1c have been implicated in mechanotransduction based on functional studies. However, localization studies are conflicting, leaving open the question of which myosin localizes at the UTLD and generates the tip-link resting tension. Using immunofluorescence, we now show that MYO7A and sans, a MYO7A-interacting protein, cluster at the UTLD. Analysis of the immunofluorescence intensity indicates that eight or more MYO7A molecules are present at each UTLD, consistent with a direct role for MYO7A in maintaining tip-link tension. MYO7A and sans localization at the UTLD is confirmed by transfection of hair cells with GFP-tagged constructs for these proteins. Cotransfection studies in a heterologous system show that MYO7A, sans, and the UTLD protein harmonin-b form a tripartite complex and that each protein is capable of interacting with one another independently. We propose that MYO7A, sans, and harmonin-b form the core components of the UTLD molecular complex. In this complex, MYO7A is likely the motor element that pulls on CDH23 to exert tension on the tip-link."	"Functional characterization of the human myosin-7a motor domain. Myosin-7a participates in auditory and visual processes. Defects in MYO7A, the gene encoding the myosin-7a heavy chain, are causative for Usher syndrome 1B, the most frequent cause of deaf-blindness in humans. In the present study, we performed a detailed kinetic and functional characterization of the isolated human myosin-7a motor domain to elucidate the details of chemomechanical coupling and the regulation of motor function. A rate-limiting, slow ADP release step causes long lifetimes of strong actin-binding intermediates and results in a high duty ratio. Moreover, our results reveal a Mg(2+)-sensitive regulatory mechanism tuning the kinetic and mechanical properties of the myosin-7a motor domain. We obtained direct evidence that changes in the concentration of free Mg(2+) ions affect the motor properties of human myosin-7a using an in vitro motility assay system. Our results suggest that in a cellular environment, compartment-specific fluctuations in free Mg(2+) ions can mediate the conditional switching of myosin-7a between cargo moving and tension bearing modes."	"Mature mice lacking Rbl2/p130 gene have supernumerary inner ear hair cells and supporting cells. Adult mammalian auditory hair cells (HCs) and their associated supporting cells (SCs) do not proliferate, and HC death leads to irreversible neurosensory hearing loss and balance impairment. In nonmammalian vertebrates, loss of HCs induces mitotic proliferation of adjacent nonsensory SCs and/or direct SC transdifferentiation to generate replacement cells. This results in the structural and functional recovery of the nonmammalian sensory systems. Potential replacement of mammalian auditory HCs, either by transplanting cells or by transforming existing cells through molecular therapy, has long been proposed. However, HC replacement strategies with clear therapeutic potential remain elusive. The retinoblastoma (pRB) family of cell cycle regulators, Rb1, Rbl1 (p107), and Rbl2 (p130), regulate the G(1)- to S-phase transition in proliferating cells. In the inner ear, the biochemical and molecular pathways involving pRBs, particularly p107 and p130, are relatively unexplored and their therapeutic suitability is yet to be determined. In this study, we analyzed the cochleae of adult p130 knock-out (p130(-/-)) mice and showed that lack of the p130 gene results in extra rows of HCs and SCs in the more apical regions of the cochlea. No evidence of transdifferentiation of these supernumerary SCs into HCs was observed in the p130(-/-) mouse. Nevertheless, unscheduled proliferation of SCs in the adult p130(-/-) cochlea coupled to downregulation of bona fide cell cycle inhibitors provides a mechanistic basis for the role of p130 as a regulator of SC and HC mitotic quiescence in the more apical regions of the cochlea. Interestingly, p130(-/-) mice exhibited nearly normal peripheral auditory sensitivity."	"Limited inner ear morphogenesis and neurosensory development are possible in the absence of GATA3. Haploinsufficiency of Gata3 causes hypoparathyroidism, deafness and renal dysplasia (HDR) syndrome in mice and humans. Gata3 null mutation leads to early lethality around embryonic day (E)11.5, but catecholamine precursor administration can rescue Gata3 null mutants to E16.5. At E11.5, GATA3 deficiency results in the development of an empty otocyst with an endolymphatic duct. However, using rescued mice we found that some morphogenesis and neurosensory development is possible in the ear without Gata3. Extending previous studies, we find that at E16.5, Gata3 mutant inner ears can undergo partial morphogenesis and develop an endolymphatic duct, a utricular and saccular recess, and a shortened cochlear duct. In addition to the obvious morphogenic aberrations, these studies demonstrate that a subset of neurons develop and connect a fragmented sensory patch of MYO7A-positive hair cells to the vestibular nuclei of the brainstem. In situ hybridization studies reveal altered expression of several transcription factors relevant to ear development and we hypothesize that this may relate to the observed dysmorphia and restricted neurosensory development. While a cochlear duct can form, there is no concurrent cochlear neurosensory development, observations consistent with specific hearing defects encountered by HDR patients and mice with Gata3-associated expression alterations. Gata3 null mutant phenocopies the otic maldevelopment (cochlear duct formation in the absence of neurosensory development) seen in Foxg1cre mediated conditional deletion of microRNA processing enzyme, Dicer1. Finally, while GATA3 is expressed in the developing vestibulo-cochlear efferent (VCE) neurons, and its absence in the null mutants disrupts VCE projections to the ear, loss of GATA3 does not affect VCE progenitor cell migration."	"Gene expression profile changes caused by the dysfunction of Mer during retinal pigment epithelium phagocytosis. Studies indicated that Mer might be the main contributor to the specific internalization of photoreceptor outer segments (POS) in retinal pigment epithelium (RPE). It is very important to understand the mechanism of POS phagocytosis under the pathway of Mer and its ligands. The objective of this study was to identify changes in gene expression profiles caused by Mer gene knockout (Mer-/-) during phagocytosis of POS in RPE. RPE from both Mer-/- and wild-type (WT) mice were isolated and cultured to the 3rd passage. POS were subjected to culture medium with 20 nmol/L Gas6 and protein S to activate specific mer-mediated phagocytosis. RPE phagocytosis was evaluated by phagocytosis assays and differential gene expression identified by microarray at 3 and 12 hours; the 0-hour time point served as the control. Three independent samples for each Mer-/- or WT RPE were subjected to the same protocol of microarray. Five genes were confirmed by real-time quantitative PCR (QPCR). The Mer-/- RPE had less internalized POS than WT RPE after both 3 and 12 hours in phagocytosis assay. Compared to WT RPE and the 0-hour control, 38 and 45 different known genes were increased and 68 and 59 known genes were decreased in Mer-/- RPE after 3 and 12 hours, respectively. Abnormal POS phagocytosis in Mer-/- RPE was associated with significant gene expression changes in, for example, signal transduction (WNT, MAPK), phagocytosis (Vav3, Hsd11b1), cytoskeleton components (Myo7a), and metabolism, in a time-specific manner. QPCR results showed Vav3, Hsd11b1, Myo7a, Rtn2 and Itga8 in those independent samples were consistent with microarray. Gene expression profiles modulated in a time-specific manner in Mer-/- RPE indicate a possible internalization mechanism for abnormal POS phagocytosis, which gives insight into the mechanism of retinitis pigmentosa caused by the mutation of MerTK in humans."	"Identification of genes concordantly expressed with Atoh1 during inner ear development. The inner ear is composed of a cochlear duct and five vestibular organs in which mechanosensory hair cells play critical roles in receiving and relaying sound and balance signals to the brain. To identify novel genes associated with hair cell differentiation or function, we analyzed an archived gene expression dataset from embryonic mouse inner ear tissues. Since atonal homolog 1a (Atoh1) is a well known factor required for hair cell differentiation, we searched for genes expressed in a similar pattern with Atoh1 during inner ear development. The list from our analysis includes many genes previously reported to be involved in hair cell differentiation such as Myo6, Tecta, Myo7a, Cdh23, Atp6v1b1, and Gfi1. In addition, we identified many other genes that have not been associated with hair cell differentiation, including Tekt2, Spag6, Smpx, Lmod1, Myh7b, Kif9, Ttyh1, Scn11a and Cnga2. We examined expression patterns of some of the newly identified genes using real-time polymerase chain reaction and in situ hybridization. For example, Smpx and Tekt2, which are regulators for cytoskeletal dynamics, were shown specifically expressed in the hair cells, suggesting a possible role in hair cell differentiation or function. Here, by reanalyzing archived genetic profiling data, we identified a list of novel genes possibly involved in hair cell differentiation."	"The Usher 1B protein, MYO7A, is required for normal localization and function of the visual retinoid cycle enzyme, RPE65. Mutations in the MYO7A gene cause a deaf-blindness disorder, known as Usher syndrome 1B. In the retina, the majority of MYO7A is in the retinal pigmented epithelium (RPE), where many of the reactions of the visual retinoid cycle take place. We have observed that the retinas of Myo7a-mutant mice are resistant to acute light damage. In exploring the basis of this resistance, we found that Myo7a-mutant mice have lower levels of RPE65, the RPE isomerase that has a key role in the retinoid cycle. We show for the first time that RPE65 normally undergoes a light-dependent translocation to become more concentrated in the central region of the RPE cells. This translocation requires MYO7A, so that, in Myo7a-mutant mice, RPE65 is partly mislocalized in the light. RPE65 is degraded more quickly in Myo7a-mutant mice, perhaps due to its mislocalization, providing a plausible explanation for its lower levels. Following a 50-60% photobleach, Myo7a-mutant retinas exhibited increased all-trans-retinyl ester levels during the initial stages of dark recovery, consistent with a deficiency in RPE65 activity. Lastly, MYO7A and RPE65 were co-immunoprecipitated from RPE cell lysate by antibodies against either of the proteins, and the two proteins were partly colocalized, suggesting a direct or indirect interaction. Together, the results support a role for MYO7A in the translocation of RPE65, illustrating the involvement of a molecular motor in the spatiotemporal organization of the retinoid cycle in vision."	"Cargo binding activates myosin VIIA motor function in cells. Myosin VIIA, thought to be involved in human auditory function, is a gene responsible for human Usher syndrome type 1B, which causes hearing and visual loss. Recent studies have suggested that it can move processively if it forms a dimer. Nevertheless, it exists as a monomer in vitro, unlike the well-known two-headed processive myosin Va. Here we studied the molecular mechanism, which is currently unknown, of activating myosin VIIA as a cargo-transporting motor. Human myosin VIIA was present throughout cytosol, but it moved to the tip of filopodia upon the formation of dimer induced by dimer-inducing reagent. The forced dimer of myosin VIIA translocated its cargo molecule, MyRip, to the tip of filopodia, whereas myosin VIIA without the forced dimer-forming module does not translocate to the filopodial tips. These results suggest that dimer formation of myosin VIIA is important for its cargo-transporting activity. On the other hand, myosin VIIA without the forced dimerization module became translocated to the filopodial tips in the presence of cargo complex, i.e., MyRip/Rab27a, and transported its cargo complex to the tip. Coexpression of MyRip promoted the association of myosin VIIA to vesicles and the dimer formation. These results suggest that association of myosin VIIA monomers with membrane via the MyRip/Rab27a complex facilitates the cargo-transporting activity of myosin VIIA, which is achieved by cluster formation on the membrane, where it possibly forms a dimer. Present findings support that MyRip, a cargo molecule, functions as an activator of myosin VIIA transporter function."	"Primary culture of neurospheres obtained from fetal mouse central nervous system and generation of inner ear hair cell immunophenotypes in vitro. To investigate whether hair cell immunophenotypes can be derived from the central nervous system. We established in vitro cell cultures from embryonic day 14.5 fetal rat brain tissue, and analysed changes in the immunohistochemical features of these cell cultures following differentiation. The immature neural progenitors obtained from the fetal mouse central nervous system generated cell immunophenotypes which expressed epitopes of the hair cell marker proteins myosin VIIa and Brn-3c and the supporting cell marker pan-cytokeratin. Neural progenitors have the potential to differentiate into inner ear hair cell and supporting cell phenotypes, and thus may be a useful material for cell transplantation therapy aiming to replace damaged inner ear hair cells."	"Moderate light-induced degeneration of rod photoreceptors with delayed transducin translocation in shaker1 mice. PURPOSE. Usher syndrome is characterized by congenital deafness associated with retinitis pigmentosa (RP). Mutations in the myosin VIIa gene (MYO7A) cause a common and severe subtype of Usher syndrome (USH1B). Shaker1 mice have mutant MYO7A. They are deaf and have vestibular dysfunction but do not develop photoreceptor degeneration. The goal of this study was to investigate abnormalities of photoreceptors in shaker1 mice. METHODS. Immunocytochemistry and hydroethidine-based detection of intracellular superoxide production were used. Photoreceptor cell densities under various conditions of light/dark exposures were evaluated. RESULTS. In shaker1 mice, the rod transducin translocation is delayed because of a shift of its light activation threshold to a higher level. Even moderate light exposure can induce oxidative damage and significant rod degeneration in shaker1 mice. Shaker1 mice reared under a moderate light/dark cycle develop severe retinal degeneration in less than 6 months. CONCLUSIONS. These findings show that, contrary to earlier studies, shaker1 mice possess a robust retinal phenotype that may link to defective rod protein translocation. Importantly, USH1B animal models are likely vulnerable to light-induced photoreceptor damage, even under moderate light."	"Four-year follow-up of diagnostic service in USH1 patients. The purpose of this study was to establish the mutation spectrum of an Usher type I cohort of 61 patients from France and to describe a diagnostic strategy, including a strategy for estimating the pathogenicity of sequence changes. To optimize the identification of Usher (USH)-causative mutations, taking into account the genetic heterogeneity, preliminary haplotyping at the five USH1 loci was performed to prioritize the gene to be sequenced, as previously described. Coding exons and flanking intronic sequences were sequenced and, where necessary, semiquantitative PCR and multiplex ligation-dependent probe amplification (MLPA) were performed to detect large genomic rearrangements. Four years ' experience confirms that the chosen approach provides an efficient diagnostic service. Sixty-one patients showed an abnormal genotype in one of the five USH1 genes. Genetic heterogeneity was confirmed, and, although MYO7A remains the major gene, involvement of other genes is considerable. Distribution of missense, splicing, premature termination codons (PTCs; due to point substitution and small deletions/ or insertions), and large genomic alterations was determined among the USH genes and clearly highlights the need to pay special attention to the diagnostic approach and interpretation, depending on the mutated gene. Over the 4 years of a diagnostic service offering USH1 patient testing, pathogenic genotypes were identified in most cases (&gt;90%). The complexity and heterogeneity of mutations reinforces the need for a comprehensive approach. Because 32% of the mutations are newly described, the results show that a screening strategy based on known mutations would have solved less than 55% of the cases."	"A DNA variant within the MYO7A promoter regulates YY1 transcription factor binding and gene expression serving as a potential dominant DFNA11 auditory genetic modifier. Mutations within MYO7A can lead to recessive and dominant forms of inherited hearing loss. We previously identified a large pedigree (referred to as the HL2 family) with hearing loss that first impacts the low and mid frequencies segregating a dominant MYO7A mutation in exon 17 at DNA residue G2164C. The MYO7A(G2164C) mutation predicts a nonconservative glycine-to-arginine (G722R) amino acid substitution at a highly conserved glycine residue. The degree of low and mid frequency hearing loss varies markedly in the family, suggesting the presence of a genetic modifier that either rescues or exacerbates the primary MYO7A(G2164C) mutation. Here we describe a single nucleotide polymorphism (SNP) T/C at position -4128 in the wild-type MYO7A promoter allele that sorts with the degree of hearing loss severity in the pedigree. Electrophoretic mobility shift assay analysis indicates that the SNP differentially regulates the binding of the YY1 transcription factor with the T(-4128) allele creating an YY1 binding site. Immunocytochemistry demonstrates that Yy1 is expressed in hair cell nuclei within the cochlea. Given that Myo7a is also expressed in cochlear hair cells, Yy1 shows the appropriate localization to regulate Myo7a transcription within the inner ear. YY1 appears to be acting as a transcriptional repressor as the MYO7A promoter allele containing the T(-4128) SNP drives 41 and 46% less reporter gene expression compared with the C(-4128) SNP in the ARPE-19 and HeLa cell lines, respectively. The T(-4128) SNP may be contributing to the severe hearing loss phenotype in the HL2 pedigree by reducing expression of the wild-type MYO7A allele."	"Structure of MyTH4-FERM domains in myosin VIIa tail bound to cargo. The unconventional myosin VIIa (MYO7A) is one of the five proteins that form a network of complexes involved in formation of stereocilia. Defects in these proteins cause syndromic deaf-blindness in humans [Usher syndrome I (USH1)]. Many disease-causing mutations occur in myosin tail homology 4-protein 4.1, ezrin, radixin, moesin (MyTH4-FERM) domains in the myosin tail that binds to another USH1 protein, Sans. We report the crystal structure of MYO7A MyTH4-FERM domains in complex with the central domain (CEN) of Sans at 2.8 angstrom resolution. The MyTH4 and FERM domains form an integral structural and functional supramodule binding to two highly conserved segments (CEN1 and 2) of Sans. The MyTH4-FERM/CEN complex structure provides mechanistic explanations for known deafness-causing mutations in MYO7A MyTH4-FERM. The structure will also facilitate mechanistic and functional studies of MyTH4-FERM domains in other myosins."	"An update on the genetics of usher syndrome. Usher syndrome (USH) is an autosomal recessive disease characterized by hearing loss, retinitis pigmentosa (RP), and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous and is the most common cause underlying deafness and blindness of genetic origin. Clinically, USH is divided into three types. Usher type I (USH1) is the most severe form and is characterized by severe to profound congenital deafness, vestibular areflexia, and prepubertal onset of progressive RP. Type II (USH2) displays moderate to severe hearing loss, absence of vestibular dysfunction, and later onset of retinal degeneration. Type III (USH3) shows progressive postlingual hearing loss, variable onset of RP, and variable vestibular response. To date, five USH1 genes have been identified: MYO7A (USH1B), CDH23 (USH1D), PCDH15 (USH1F), USH1C(USH1C), and USH1G(USH1G). Three genes are involved in USH2, namely, USH2A (USH2A), GPR98 (USH2C), and DFNB31 (USH2D). USH3 is rare except in certain populations, and the gene responsible for this type is USH3A."	"The kinetic mechanism of mouse myosin VIIA. Myosin VIIa is crucial in hearing and visual processes. We examined the kinetic and association properties of the baculovirus expressed, truncated mouse myosin VIIa construct containing the head, all 5IQ motifs and the putative coiled coil domain (myosin VIIa-5IQ). The construct appears to be monomeric as determined by analytical ultracentrifugation experiments, and only single headed molecules were detected by negative stain electron microscopy. The relatively high basal steady-state rate of 0.18 s(-1) is activated by actin only by ∼3.5-fold resulting in a V(max) of 0.7 s(-1) and a K(ATPase) of 11.5 μM. There is no single rate-limiting step of the ATP hydrolysis cycle. The ATP hydrolysis step (M·T M·D·P) is slow (12 s(-1)) and the equilibrium constant (K(H)) of 1 suggests significant reversal of hydrolysis. In the presence of actin ADP dissociates with a rate constant of 1.2 s(-1). Phosphate dissociation is relatively fast (&gt;12 s(-1)), but the maximal rate could not be experimentally obtained at actin concentrations ≤ 50 μM because of the weak binding of the myosin VIIa-ADP-P(i) complex to actin. At higher actin concentrations the rate of attached hydrolysis (0.4 s(-1)) becomes significant and partially rate-limiting. Our findings suggest that the myosin VIIa is a &quot;slow&quot;, monomeric molecular motor with a duty ratio of 0.6."	"Novel mutations in the USH1C gene in Usher syndrome patients. Usher syndrome type I (USH1) is an autosomal recessive disorder characterized by severe-profound sensorineural hearing loss, retinitis pigmentosa, and vestibular areflexia. To date, five USH1 genes have been identified. One of these genes is Usher syndrome 1C (USH1C), which encodes a protein, harmonin, containing PDZ domains. The aim of the present work was the mutation screening of the USH1C gene in a cohort of 33 Usher syndrome patients, to identify the genetic cause of the disease and to determine the relative involvement of this gene in USH1 pathogenesis in the Spanish population. Thirty-three patients were screened for mutations in the USH1C gene by direct sequencing. Some had already been screened for mutations in the other known USH1 genes (myosin VIIA [MYO7A], cadherin-related 23 [CDH23], protocadherin-related 15 [PCDH15], and Usher syndrome 1G [USH1G]), but no mutation was found. Two novel mutations were found in the USH1C gene: a non-sense mutation (p.C224X) and a frame-shift mutation (p.D124TfsX7). These mutations were found in a homozygous state in two unrelated USH1 patients. In the present study, we detected two novel pathogenic mutations in the USH1C gene. Our results suggest that mutations in USH1C are responsible for 1.5% of USH1 disease in patients of Spanish origin (considering the total cohort of 65 Spanish USH1 patients since 2005), indicating that USH1C is a rare form of USH in this population."	"Analysis of subcellular localization of Myo7a, Pcdh15 and Sans in Ush1c knockout mice. Usher syndrome (USH) is the most frequent cause of combined deaf-blindness in man. An important finding from mouse models and molecular studies is that the USH proteins are integrated into a protein network that regulates inner ear morphogenesis. To understand further the function of harmonin in the pathogenesis of USH1, we have generated a targeted null mutation Ush1c mouse model. Here, we examine the effects of null mutation of the Ush1c gene on subcellular localization of Myo7a, Pcdh15 and Sans in the inner ear. Morphology and proteins distributions were analysed in cochlear sections and whole mount preparations from Ush1c(-/-) and Ush1c(-/+) controls mice. We observed the same distribution of Myo7a throughout the cytoplasm in knockout and control mice. However, we detected Pcdh15 at the base of stereocilia and in the cuticular plate in cochlear hair cells from Ush1c(+/-) controls, whereas in the knockout Ush1c(-/-) mice, Pcdh15 staining was concentrated in the apical region of the outer hair cells and no defined staining was detected at the base of stereocilia nor in the cuticular plate. We showed localization of Sans in the stereocilia of controls mouse cochlear hair cells. However, in cochleae from Ush1c(-/-) mice, strong Sans signals were detected towards the base of stereocilia close to their insertion point into the cuticular plate. Our data indicate that the disassembly of the USH1 network caused by absence of harmonin may have led to the mis-localization of the Protocadherin 15 and Sans proteins in the cochlear hair cells of Ush1c(-/-) knockout mice."	"Novel missense mutations in MYO7A underlying postlingual high- or low-frequency non-syndromic hearing impairment in two large families from China. The myosin VIIA (MYO7A) gene encodes a protein classified as an unconventional myosin. Mutations within MYO7A can lead to both syndromic and non-syndromic hearing impairment in humans. Among different mutations reported in MYO7A, only five led to non-syndromic sensorineural deafness autosomal dominant type 11 (DFNA11). Here, we present the clinical, genetic and molecular characteristics of two large Chinese DFNA11 families with either high- or low-frequency hearing loss. Affected individuals of family DX-J033 have a sloping audiogram at young ages with high frequency are most affected. With increasing age, all test frequencies are affected. Affected members of family HB-S037 present with an ascending audiogram affecting low frequencies at young ages, and then all frequencies are involved with increasing age. Genome-wide linkage analysis mapped the disease loci within the DFNA11 interval in both families. DNA sequencing of MYO7A revealed two novel nucleotide variations, c.652G &gt; A (p.D218N) and c.2011G &gt; A (p.G671S), in the two families. It is for the first time that the mutations identified in MYO7A in the present study are being implicated in DFNA11 in a Chinese population. For the first time, we tested electrocochleography (ECochG) in a DFNA11 family with low-frequency hearing loss. We speculate that the low-frequency sensorineural hearing loss in this DFNA11 family was not associated with endolymphatic hydrops."	"Conditional deletion of Atoh1 using Pax2-Cre results in viable mice without differentiated cochlear hair cells that have lost most of the organ of Corti. Atonal homolog1 (Atoh1, formerly Math1) is a crucial bHLH transcription factor for inner ear hair cell differentiation. Its absence in embryos results in complete absence of mature hair cells at birth and its misexpression can generate extra hair cells. Thus Atoh1 may be both necessary and sufficient for hair cell differentiation in the ear. Atoh1 null mice die at birth and have some undifferentiated cells in sensory epithelia carrying Atoh1 markers. The fate of these undifferentiated cells in neonates is unknown due to lethality. We use Tg(Pax2-Cre) to delete floxed Atoh1 in the inner ear. This generates viable conditional knockout (CKO) mice for studying the postnatal development of the inner ear without differentiated hair cells. Using in situ hybridization we find that Tg(Pax2-Cre) recombines the floxed Atoh1 prior to detectable Atoh1 expression. Only the posterior canal crista has Atoh1 expressing hair cells due to incomplete recombination. Most of the organ of Corti cells are lost in CKO mice via late embryonic cell death. Marker genes indicate that the organ of Corti is reduced to two rows of cells wedged between flanking markers of the organ of Corti (Fgf10 and Bmp4). These two rows of cells (instead of five rows of supporting cells) are positive for Prox1 in neonates. By postnatal day 14 (P14), the remaining cells of the organ of Corti are transformed into a flat epithelium with no distinction of any specific cell type. However, some of the remaining organ of Corti cells express Myo7a at late postnatal stages and are innervated by remaining afferent fibers. Initial growth of afferents and efferents in embryos shows no difference between control mice and Tg(Pax2-Cre)::Atoh1 CKO mice. Most afferents and efferents are lost in the CKO mutant before birth, except for the apex and few fibers in the base. Afferents focus their projections on patches that express the prosensory specifying gene, Sox2. This pattern of innervation by sensory neurons is maintained at least until P14, but fibers target the few Myo7a positive cells found in later stages."	"Screening of 38 genes identifies mutations in 62% of families with nonsyndromic deafness in Turkey. More than 60% of prelingual deafness is genetic in origin, and of these up to 95% are monogenic autosomal recessive traits. Causal mutations have been identified in 1 of 38 different genes in a subset of patients with nonsyndromic autosomal recessive deafness. In this study, we screened 49 unrelated Turkish families with at least three affected children born to consanguineous parents. Probands from all families were negative for mutations in the GJB2 gene, two large deletions in the GJB6 gene, and the 1555A&gt;G substitution in the mitochondrial DNA MTRNR1 gene. Each family was subsequently screened via autozygosity mapping with genomewide single-nucleotide polymorphism arrays. If the phenotype cosegregated with a haplotype flanking one of the 38 genes, mutation analysis of the gene was performed. We identified 22 different autozygous mutations in 11 genes, other than GJB2, in 26 of 49 families, which overall explains deafness in 62% of families. Relative frequencies of genes following GJB2 were MYO15A (9.9%), TMIE (6.6%), TMC1 (6.6%), OTOF (5.0%), CDH23 (3.3%), MYO7A (3.3%), SLC26A4 (1.7%), PCDH15 (1.7%), LRTOMT (1.7%), SERPINB6 (1.7%), and TMPRSS3 (1.7%). Nineteen of 22 mutations are reported for the first time in this study. Unknown rare genes for deafness appear to be present in the remaining 23 families."	"Reinforcement of a minor alternative splicing event in MYO7A due to a missense mutation results in a mild form of retinopathy and deafness. Recessive mutations of the myosin VIIA (MYO7A) gene are reported to be responsible for both a deaf-blindness syndrome (Usher type 1B [USH1B] and atypical Usher syndrome) and nonsyndromic hearing loss (HL; Deafness, Neurosensory, Autosomal Recessive 2 [DFNB2]). The existence of DFNB2 is controversial, and often there is no relationship between the type and location of the MYO7A mutations corresponding to the USH1B and DFNB2 phenotype. We investigated the molecular determinant of a mild form of retinopathy in association with a subtle splicing modulation of MYO7A mRNA. Affected members underwent detailed audiologic and ocular characterization. DNA samples from family members were genotyped with polymorphic microsatellite markers. Sequencing of MYO7A was performed. Endogenous lymphoid RNA analysis and a splicing minigene assay were used to study the effect of the c.1935G&gt;A mutation. Funduscopy showed mild retinitis pigmentosa in adults with HL. Microsatellite analysis showed linkage to markers in the region on chromosome 11q13.5. Sequencing of MYO7A revealed a mutation in the last nucleotide of exon 16 (c.1935G&gt;A), which corresponds to a substitution of a methionine to an isoleucine residue at amino acid 645 of the myosin VIIA. However, structural prediction of the molecular model of myosin VIIA shows that this amino acid replacement induces only minor structural changes in the immediate environment of the mutation and thus does not alter the overall native structure. We found that, although predominantly included in mature mRNA, exon 16 is in fact alternatively spliced in control cells and that the mutation at the very last position is associated with a switch toward a predominant exclusion of that exon. This observation was further supported using a splicing minigene transfection assay; the c.1935G&gt;A mutation was found to trigger a partial impairment of the adjacent donor splice site, suggesting that the unique change at the last position of the exon is responsible for the enhanced exon exclusion in this family. This study shows how an exonic mutation that weakens the 5' splice site enhances a minor alternative splicing without abolishing a complete exclusion of the exon and therefore causes a less severe retinitis pigmentosa than the USH1B-associated alleles. It would be interesting to examine a possible correlation between intrafamilial phenotypic variability and the subtle variation in exon 16 inclusion, probably related to genetic background specificities."	"Mutation analysis of the MYO7A and CDH23 genes in Japanese patients with Usher syndrome type 1. Usher syndrome (USH) is an autosomal recessive disorder characterized by retinitis pigmentosa and hearing loss. USH type 1 (USH1), the second common type of USH, is frequently caused by MYO7A and CDH23 mutations, accounting for 70-80% of the cases among various ethnicities, including Caucasians, Africans and Asians. However, there have been no reports of mutation analysis for any responsible genes for USH1 in Japanese patients. This study describes the first mutation analysis of MYO7A and CDH23 in Japanese USH1 patients. Five mutations (three in MYO7A and two in CDH23) were identified in four of five unrelated patients. Of these mutations, two were novel. One of them, p.Tyr1942SerfsX23 in CDH23, was a large deletion causing the loss of 3 exons. This is the first large deletion to be found in CDH23. The incidence of the MYO7A and CDH23 mutations in the study population was 80%, which is consistent with previous findings. Therefore, mutation screening for these genes is expected to be a highly sensitive method for diagnosing USH1 among the Japanese."	"Cadherin-23, myosin VIIa and harmonin, encoded by Usher syndrome type I genes, form a ternary complex and interact with membrane phospholipids. Cadherin-23 is a component of early transient lateral links of the auditory sensory cells' hair bundle, the mechanoreceptive structure to sound. This protein also makes up the upper part of the tip links that control gating of the mechanoelectrical transduction channels. We addressed the issue of the molecular complex that anchors these links to the hair bundle F-actin core. By using surface plasmon resonance assays, we show that the cytoplasmic regions of the two cadherin-23 isoforms that do or do not contain the exon68-encoded peptide directly interact with harmonin, a submembrane PDZ (post-synaptic density, disc large, zonula occludens) domain-containing protein, with unusually high affinity. This interaction involves the harmonin Nter-PDZ1 supramodule, but not the C-terminal PDZ-binding motif of cadherin-23. We establish that cadherin-23 directly binds to the tail of myosin VIIa. Moreover, cadherin-23, harmonin and myosin VIIa can form a ternary complex, which suggests that myosin VIIa applies tension forces on hair bundle links. We also show that the cadherin-23 cytoplasmic region, harmonin and myosin VIIa interact with phospholipids on synthetic liposomes. Harmonin and the cytoplasmic region of cadherin-23, both independently and as a binary complex, can bind specifically to phosphatidylinositol 4,5-bisphosphate (PI(4,5)P(2)), which may account for the role of this phospholipid in the adaptation of mechanoelectrical transduction in the hair bundle. The distributions of cadherin-23, harmonin, myosin VIIa and PI(4,5)P(2) in the growing and mature auditory hair bundles as well as the abnormal locations of harmonin and myosin VIIa in cadherin-23 null mutant mice strongly support the functional relevance of these interactions."	"Frequency of Usher syndrome in two pediatric populations: Implications for genetic screening of deaf and hard of hearing children. Usher syndrome is a major cause of genetic deafness and blindness. The hearing loss is usually congenital and the retinitis pigmentosa is progressive and first noticed in early childhood to the middle teenage years. Its frequency may be underestimated. Newly developed molecular technologies can detect the underlying gene mutation of this disorder early in life providing estimation of its prevalence in at risk pediatric populations and laying a foundation for its incorporation as an adjunct to newborn hearing screening programs. A total of 133 children from two deaf and hard of hearing pediatric populations were genotyped first for GJB2/6 and, if negative, then for Usher syndrome. Children were scored as positive if the test revealed &gt; or =1 pathogenic mutations in any Usher gene. Fifteen children carried pathogenic mutations in one of the Usher genes; the number of deaf and hard of hearing children carrying Usher syndrome mutations was 15/133 (11.3%). The population prevalence was estimated to be 1/6000. Usher syndrome is more prevalent than has been reported before the genome project era. Early diagnosis of Usher syndrome has important positive implications for childhood safety, educational planning, genetic counseling, and treatment. The results demonstrate that DNA testing for Usher syndrome is feasible and may be a useful addition to newborn hearing screening programs."	"Screening and identification of differentially expressed genes from chickens infected with Newcastle disease virus by suppression subtractive hybridization. Newcastle disease is an important viral infectious disease caused by Newcastle disease virus (NDV), which leads to severe economic losses in the poultry industry worldwide. The molecular mechanisms involved in the pathogenesis of NDV and the host-directed antiviral responses remain poorly understood. In this study, we screened and identified the differentially expressed transcripts from chicken spleen 36 h post NDV infection using suppression subtractive hybridization (SSH). From the SSH library, we obtained 140 significant differentially expressed sequence tags (ESTs), which could be divided into three categories: high homology genes (58), high homology ESTs (62) and novel ESTs (20). The 58 high homology genes could be grouped into nine clusters based on the best known function of their protein products, which involved signalling transduction (HSPC166, PDE7B, GRIA4, GARNL1), transcriptional regulation (ANP32A, LOC423724, SATB1, QKI, ETV6), cellular molecular dynamics (MYLK, MYO7A, DCTN6), cytoskeleton (LAMA4, LAMC1, COL4A1), stress response (DNAJC15, CIRBP), immune response (TIA1, TOX, CMIP), metabolism (RPS15A, RPL32, GLUT8, CYPR21, DPYD, LOC417295), oxidation-reduction (TXN, MSRB3, GCLC), and others. In addition, we found that the 20 novel ESTs provide a clue for the discovery of some new genes associated with infection. In summary, our findings demonstrate previously unrecognized changes in gene transcription that are associated with NDV infection in vivo, and many differentially expressed genes identified in the study clearly merit further investigation. Our data provide new insights into better understanding the molecular mechanism of host-NDV interaction."	"Nasal epithelial cells are a reliable source to study splicing variants in Usher syndrome. We have shown that nasal ciliated epithelium, which can be easily biopsied under local anesthetic, provides a good source of RNA transcripts from eight of the nine known genes that cause Usher syndrome, namely, MYO7A, USH1C, CDH23, PCDH15, USH1G for Usher type 1, and USH2A, GPR98, WHRN for Usher type 2. Furthermore, the known or predicted effect on mRNA splicing of eight variants was faithfully reproduced in the biopsied sample as measured by nested RT-PCR. These included changes at the canonical acceptor site, changes within the noncanonical acceptor site and both synonymous and nonsynonymous amino acid changes. This shows that mRNA analysis by this method will help in assessing the pathogenic effect of variants, which is a major problem in the molecular diagnosis of Usher syndrome."	"Functional analysis of splicing mutations in MYO7A and USH2A genes. Usher syndrome is defined by the association of sensorineural hearing loss, retinitis pigmentosa and variable vestibular dysfunction. Many disease-causative mutations have been identified in MYO7A and USH2A genes, which play a major role in Usher syndrome type I and type II, respectively. The pathogenic nature of mutations that lead to premature stop codons is not questioned; nevertheless, additional studies are needed to verify the pathogenicity of some changes such as those putatively involved in the splice process. Five putative splice-site variants were detected in our cohort of patients: c.2283-1G&gt;T and c.5856G&gt;A in MYO7A and c.1841-2A&gt;G, c.2167+5G&gt;A and c.5298+1G&gt;C in the USH2A gene. In this study, we analyze these changes with bioinformatic tools and investigate the expression of MYO7A and USH2A transcripts through hybrid minigene assays. Our study showed that all five mutations abolished the consensus splice site producing the skipping of involved exons. In addition, for variant c.2167+5G&gt;A, a new donor splice site was observed. Our data reveal the pathogenic nature of the analyzed variants. The fact that splicing mutations led to in-frame or out-of-frame alterations cannot explain phenotypic differences, thus, genotype-phenotype correlations cannot be inferred."	"Genetics and pathological mechanisms of Usher syndrome. Usher syndrome (USH) comprises a group of autosomal recessively inherited disorders characterized by a dual sensory impairment of the audiovestibular and visual systems. Three major clinical subtypes (USH type I, USH type II and USH type III) are distinguished on the basis of the severity of the hearing loss, the presence or absence of vestibular dysfunction and the age of onset of retinitis pigmentosa (RP). Since the cloning of the first USH gene (MYO7A) in 1995, there have been remarkable advances in elucidating the genetic basis for this disorder, as evidence for 11 distinct loci have been obtained and genes for 9 of them have been identified. The USH genes encode proteins of different classes and families, including motor proteins, scaffold proteins, cell adhesion molecules and transmembrane receptor proteins. Extensive information has emerged from mouse models and molecular studies regarding pathogenesis of this disorder and the wide phenotypic variation in both audiovestibular and/or visual function. A unifying hypothesis is that the USH proteins are integrated into a protein network that regulates hair bundle morphogenesis in the inner ear. This review addresses genetics and pathological mechanisms of USH. Understanding the molecular basis of phenotypic variation and pathogenesis of USH is important toward discovery of new molecular targets for diagnosis, prevention and treatment of this debilitating disorder."	"High-throughput detection of mutations responsible for childhood hearing loss using resequencing microarrays. Despite current knowledge of mutations in 45 genes that can cause nonsyndromic sensorineural hearing loss (SNHL), no unified clinical test has been developed that can comprehensively detect mutations in multiple genes. We therefore designed Affymetrix resequencing microarrays capable of resequencing 13 genes mutated in SNHL (GJB2, GJB6, CDH23, KCNE1, KCNQ1, MYO7A, OTOF, PDS, MYO6, SLC26A5, TMIE, TMPRSS3, USH1C). We present results from hearing loss arrays developed in two different research facilities and highlight some of the approaches we adopted to enhance the applicability of resequencing arrays in a clinical setting. We leveraged sequence and intensity pattern features responsible for diminished coverage and accuracy and developed a novel algorithm, sPROFILER, which resolved &gt;80% of no-calls from GSEQ and allowed 99.6% (range: 99.2-99.8%) of sequence to be called, while maintaining overall accuracy at &gt;99.8% based upon dideoxy sequencing comparison. Together, these findings provide insight into critical issues for disease-centered resequencing protocols suitable for clinical application and support the use of array-based resequencing technology as a valuable molecular diagnostic tool for pediatric SNHL and other genetic diseases with substantial genetic heterogeneity."	"Variable hearing impairment in a DFNB2 family with a novel MYO7A missense mutation. Myosin VIIA mutations have been associated with non-syndromic hearing loss (DFNB2; DFNA11) and Usher syndrome type 1B (USH1B). We report clinical and genetic analyses of a consanguineous Iranian family segregating autosomal recessive non-syndromic hearing loss (ARNSHL). The hearing impairment was mapped to the DFNB2 locus using Affymetrix 50K GeneChips; direct sequencing of the MYO7A gene was completed. The Iranian family (L-1419) was shown to segregate a novel homozygous missense mutation (c.1184G&gt;A) that results in a p.R395H amino acid substitution in the motor domain of the myosin VIIA protein. As one affected family member had significantly less severe hearing loss, we used a candidate approach to search for a genetic modifier. This novel MYO7A mutation is the first reported to cause DFNB2 in the Iranian population and this DFNB2 family is the first to be associated with a potential modifier. The absence of vestibular and retinal defects, and less severe low frequency hearing loss, is consistent with the phenotype of a recently reported Pakistani DFNB2 family. Thus, we conclude this family has non-syndromic hearing loss (DFNB2) rather than USH1B, providing further evidence that these two diseases represent discrete disorders."	"cAMP-induced auditory supporting cell proliferation is mediated by ERK MAPK signaling pathway. Sensorineural hearing deficiencies result from the loss of auditory hair cells. This hearing loss is permanent in humans and mammals because hair cells are not spontaneously replaced. In other animals such as birds, this is not the case. Damage to the avian cochlea evokes proliferation of supporting cells and the generation of functionally competent replacement hair cells. Signal transduction pathways are clinically useful as potential therapeutic targets, so there is significant interest in identifying the key signal transduction pathways that regulate the formation of replacement hair cells. In a previous study from our lab, we showed that forskolin (FSK) treatment induces auditory supporting cell proliferation and formation of replacement hair cells in the absence of sound or aminoglycoside treatment. Here, we show that FSK-induced supporting cell proliferation is mediated by cell-specific accumulation of cyclic adenosine monophosphate (cAMP) in avian supporting cells and the extracellular signal-regulated kinase (ERK) mitogen-activated protein kinase (MAPK) pathway. By a combination of immunostaining and pharmacological analyses, we show that FSK treatment increases cAMP levels in avian auditory supporting cells and that several ERK MAP inhibitors effectively block FSK-induced supporting cell proliferation. Next, we demonstrate by Western blotting and immunostaining analyses the expression of several ERK MAPK signaling molecules in the avian auditory epithelium and the cell-specific expression of B-Raf in avian auditory supporting cells. Collectively, these data suggest that FSK-induced supporting cell proliferation in the avian auditory epithelium is mediated by increases of cAMP levels in supporting cells and the cell-specific expression of the ERK MAPK family member B-Raf in supporting cells."	"Ex vivo splicing assays of mutations at noncanonical positions of splice sites in USHER genes. Molecular diagnosis in Usher syndrome type 1 and 2 patients led to the identification of 21 sequence variations located in noncanonical positions of splice sites in MYO7A, CDH23, USH1C, and USH2A genes. To establish experimentally the splicing pattern of these substitutions, whose impact on splicing is not always predictable by available softwares, ex vivo splicing assays were performed. The branch-point mapping strategy was also used to investigate further a putative branch-point mutation in USH2A intron 43. Aberrant splicing was demonstrated for 16 of the 21 (76.2%) tested sequence variations. The mutations resulted more frequently in activation of a nearby cryptic splice site or use of a de novo splice site than exon skipping (37.5%). This study allowed the reclassification as splicing mutations of one silent (c.7872G&gt;A (p.Glu2624Glu) in CDH23) and four missense mutations (c.2993G&gt;A (p.Arg998Lys) in USH2A, c.592G&gt;A (p.Ala198Thr), c.3503G&gt;C [p.Arg1168Pro], c.5944G&gt;A (p.Gly1982Arg) in MYO7A), whereas it provided clues about a role in structure/function in four other cases: c.802G&gt;A (p.Gly268Arg), c.653T&gt;A (p.Val218Glu) (USH2A), and c.397C&gt;T (p.His133Tyr), c.3502C&gt;T (p.Arg1168Trp) (MYO7A). Our data provide insights into the contribution of splicing mutations in Usher genes and illustrate the need to define accurately their splicing outcome for diagnostic purposes."	"Progressive vestibular mutation leads to elevated anxiety. Anxiety disorders are among the most common mental disorders, and are comorbid with balance disorders in a significant proportion of these individuals. Presently, it is unclear whether anxiety and balance disorders are causally related, and what direction this causality may take. We argue that balance disorders may predispose an individual to anxiety and that demonstration of such causality may be informative to the development of preferred treatment for such individuals. To demonstrate that balance disorders may predispose to anxiety, we studied headbanger (Hdb) mutant mice in which the balance disorder is due to progressive vestibular impairment and wildtype (Wt) mice. Balance was assessed by swim and tail-hang tests that demonstrated clear behavioral balance deficits in the Hdb mice. Anxiety was assessed by open-field and elevated plus-maze tests, which confirmed elevated anxiety in the Hdb mice. These findings demonstrate that congenital vestibular genotype predisposes the animal to elevated levels of anxiety in space-related tests. Similar causality in clinics may redirect treatment strategies in afflicted patients."	"A novel allele of myosin VIIa reveals a critical function for the C-terminal FERM domain for melanosome transport in retinal pigment epithelial cells. Mutations in the head and tail domains of the motor protein myosin VIIA (MYO7A) cause deaf-blindness (Usher syndrome type 1B, USH1B) and nonsyndromic deafness (DFNB2, DFNA11). The head domain binds to F-actin and serves as the MYO7A motor domain, but little is known about the function of the tail domain. In a genetic screen, we have identified polka mice, which carry a mutation (c.5742 + 5G &gt; A) that affects splicing of the MYO7A transcript and truncates the MYO7A tail domain at the C-terminal FERM domain. In the inner ear, expression of the truncated MYO7A protein is severely reduced, leading to defects in hair cell development. In retinal pigment epithelial (RPE) cells, the truncated MYO7A protein is expressed at comparative levels to wild-type protein but fails to associate with and transport melanosomes. We conclude that the C-terminal FERM domain of MYO7A is critical for melanosome transport in RPE cells. Our findings also suggest that MYO7A mutations can lead to tissue-specific effects on protein levels, which may explain why some mutations in MYO7A lead to deafness without retinal impairment."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"MyosinVIIa interacts with Twinfilin-2 at the tips of mechanosensory stereocilia in the inner ear. In vertebrates hearing is dependent upon the microvilli-like mechanosensory stereocilia and their length gradation. The staircase-like organization of the stereocilia bundle is dynamically maintained by variable actin turnover rates. Two unconventional myosins were previously implicated in stereocilia length regulation but the mechanisms of their action remain unknown. MyosinXVa is expressed in stereocilia tips at levels proportional to stereocilia length and its absence produces staircase-like bundles of very short stereocilia. MyosinVIIa localizes to the tips of the shorter stereocilia within bundles, and when absent, the stereocilia are abnormally long. We show here that myosinVIIa interacts with twinfilin-2, an actin binding protein, which inhibits actin polymerization at the barbed end of the filament, and that twinfilin localization in stereocilia overlaps with myosinVIIa. Exogenous expression of myosinVIIa in fibroblasts results in a reduced number of filopodia and promotes accumulation of twinfilin-2 at the filopodia tips. We hypothesize that the newly described interaction between myosinVIIa and twinfilin-2 is responsible for the establishment and maintenance of slower rates of actin turnover in shorter stereocilia, and that interplay between complexes of myosinVIIa/twinfilin-2 and myosinXVa/whirlin is responsible for stereocilia length gradation within the bundle staircase."	"Otoferlin is critical for a highly sensitive and linear calcium-dependent exocytosis at vestibular hair cell ribbon synapses. Otoferlin, a C2-domain-containing Ca(2+) binding protein, is required for synaptic exocytosis in auditory hair cells. However, its exact role remains essentially unknown. Intriguingly enough, no balance defect has been observed in otoferlin-deficient (Otof(-/-)) mice. Here, we show that the vestibular nerve compound action potentials evoked during transient linear acceleration ramps in Otof(-/-) mice display higher threshold, lower amplitude, and increased latency compared with wild-type mice. Using patch-clamp capacitance measurement in intact utricles, we show that type I and type II hair cells display a remarkable linear transfer function between Ca(2+) entry, flowing through voltage-activated Ca(2+) channels, and exocytosis. This linear Ca(2+) dependence was observed when changing the Ca(2+) channel open probability or the Ca(2+) flux per channel during various test potentials. In Otof(-/-) hair cells, exocytosis displays slower kinetics, reduced Ca(2+) sensitivity, and nonlinear Ca(2+) dependence, despite morphologically normal synapses and normal Ca(2+) currents. We conclude that otoferlin is essential for a high-affinity Ca(2+) sensor function that allows efficient and linear encoding of low-intensity stimuli at the vestibular hair cell synapse."	"Microarray-based mutation analysis of 183 Spanish families with Usher syndrome. The purpose of this study was to test the ability of the genotyping microarray for Usher syndrome (USH) to identify the mutations responsible for the disease in a cohort of 183 patients with USH. DNA from 183 patients with Usher syndrome from the Spanish population was analyzed using a genotyping microarray containing 429 previously identified disease-associated variants in eight USH genes. Mutations detected by the array were confirmed by direct sequencing. Haplotype analysis was also performed in families carrying common Spanish mutations. The genotyping microarray identified 43 different variants, divided into 32 disease causative and 11 probably nonpathologic. Mutations were detected in 62 patients with USH (33.9%). According to the clinical classification of patients, pathologic variants were detected in 31.4% patients with USH1, 39.4% of with USH2, 22.2% with USH3 and 15.8% with unclassified Usher syndrome. Ninety-seven pathologic alleles were detected, corresponding to 26.5% of expected alleles. The USH2A mutations p.C3267R and p.T3571M were revealed as common in the Spanish population, and two major haplotypes linked to these mutations were observed. The genotyping microarray is a robust, low-cost, rapid technique that is effective for the genetic study of patients with USH. However, it also indicates variants of unclear pathologic nature and detection failures have also been observed. Results must be confirmed by direct sequencing to avoid misdiagnosis, and continuous updates of the microarray should be performed to increase the efficiency and rate of detection of mutations."	"Function of MYO7A in the human RPE and the validity of shaker1 mice as a model for Usher syndrome 1B. To investigate the function of MYO7A in human RPE cells and to test the validity of using shaker1 RPE in preclinical studies on therapies for Usher syndrome 1B by comparing human and mouse cells. MYO7A was localized by immunofluorescence. Primary cultures of human and mouse RPE cells were used to measure melanosome motility and rod outer segment (ROS) phagocytosis and digestion. MYO7A was knocked down in the human RPE cells by RNAi to test for a mutant phenotype in melanosome motility. The distribution of MYO7A in the RPE of human and mouse was found to be comparable, both in vivo and in primary cultures. Primary cultures of human RPE cells phagocytosed and digested ROSs with kinetics comparable to that of primary cultures of mouse RPE cells. Melanosome motility was also comparable, and, after RNAi knockdown, consisted of longer-range fast movements characteristic of melanosomes in shaker1 RPE. The localization and function of MYO7A in human RPE cells is comparable to that in mouse RPE cells. Although shaker1 retinas do not undergo degeneration, correction of mutant phenotypes in the shaker1 RPE represents a valid preclinical test for potential therapeutic treatments."	"FERM proteins in animal morphogenesis. Proteins containing a FERM domain are ubiquitous components of the cytocortex of animal cells where they are engaged in structural, transport, and signaling functions. Recent years have seen a wealth of genetic studies in model organisms that explore FERM protein function in development and tissue organization. In addition, mutations in several FERM protein-encoding genes have been associated with human diseases. This review will provide a brief overview of the FERM domain structure and the FERM protein superfamily and then discuss recent advances in our understanding of the mechanism of function and developmental requirement of several FERM proteins including Moesin, Myosin-VIIA, Myosin-XV, Coracle/Band4.1 as well as Yurt and its vertebrate homologs Mosaic Eyes and EPB41L5/YMO1/Limulus."	"[Genetics of Usher syndrome]. Since the first gene (MYO7A) for Usher syndrome was identified 14 years ago, there has been substantial progress in the elucidation of the genetic basis of this disorder, revealing extensive genetic heterogeneity (with nine genes known to date). Most Usher genes have similar functions, localize to similar regions in inner ear hair cells and retinal photoreceptors, and interact with each other. Approximately 80% of the patients carry mutations in one of the known Usher genes. One major challenge for the scientific community is to identify the remaining causative genes. Moreover, it is still largely unclear which genetic factors are responsible for the clinical variability that can be observed even between affected siblings. The establishment of high-throughput techniques shall soon provide comprehensive genetic testing covering all genes, which would be desirable: Early confirmation (or exclusion) of the diagnosis would be important for the individual patient, as it could help predict whether retinal degeneration can be expected in addition to the congenital hearing impairment."	"RasGRF1 disruption causes retinal photoreception defects and associated transcriptomic alterations. RasGRF1 null mutant mice display impaired memory/learning and their hippocampus transcriptomic pattern includes a number of differentially expressed genes playing significant roles in sensory development and function. Odour avoidance and auditory brainstem response tests yielded normal results but electroretinographic analysis showed severe light perception impairment in the RasGRF1 knockouts. Whereas no structural alterations distinguished the retinas of wild-type and knockout mice, microarray transcriptional analysis identified at least 44 differentially expressed genes in the retinas of these Knockout animals. Among these, Crb1, Pttg1, Folh1 and Myo7a have been previously related to syndromes involving retina degeneration. Interestingly, over-expression of Folh1 would be expected to result in accumulation of its enzymatic product N-acetyl-aspartate, an event known to be linked to Canavan disease, a human cerebral degenerative syndrome often involving blindness and hearing loss. Consistently, in vivo brain nuclear magnetic resonance spectroscopy identified higher levels of N-acetyl-aspartate in our RasGRF1-/- mice and immunohistochemical analysis detected reduced levels of aspartoacylase, the enzyme which degrades N-acetyl-aspartate. These studies demonstrate for the first time the functional relevance of Ras signalling in mammalian photoreception and warrant further analysis of RasGRF1 Knockout mice as potential models to analyse molecular mechanisms underlying defective photoreception human diseases."	"The tail binds to the head-neck domain, inhibiting ATPase activity of myosin VIIA. Myosin VIIA is an unconventional myosin, responsible for human Usher syndrome type 1B, which causes hearing and visual loss. Here, we studied the molecular mechanism of regulation of myosin VIIA, which is currently unknown. Although it was originally thought that myosin VIIA is a dimeric myosin, our electron microscopic (EM) observations revealed that full-length Drosophila myosin VIIA (DM7A) is a monomer. Interestingly, the tail domain markedly inhibits the actin-activated ATPase activity of tailless DM7A at low Ca(2+) but not high Ca(2+). By examining various deletion constructs, we found that deletion of the distal IQ domain, the C-terminal region of the tail, and the N-terminal region of the tail abolishes the tail-induced inhibition of ATPase activity. Single-particle EM analysis of full-length DM7A at low Ca(2+) suggests that the tail folds back on to the head, where it contacts both the motor core domain and the neck domain, forming an inhibited conformation. We concluded that unconventional myosin that may be present a monomer in the cell can be regulated by intramolecular interaction of the tail with the head."	"Molecular screening of deafness in Algeria: high genetic heterogeneity involving DFNB1 and the Usher loci, DFNB2/USH1B, DFNB12/USH1D and DFNB23/USH1F. A systematic approach, involving haplotyping and genotyping, to the molecular diagnosis of non-syndromic deafness within 50 families and 9 sporadic cases from Algeria is described. Mutations at the DFNB1 locus (encompassing the GJB2 and GJB6 genes) are responsible for more than half of autosomal recessive prelingual non-syndromic deafness in various populations. A c.35delG mutation can account for up to 85% of GJB2 mutations and two large deletions del(GJB6-D13S1830) and del(GJB6-D13S1854) have also been reported in several population groups. In view of the genetic heterogeneity a strategy was developed which involved direct analysis of DFNB1. In negative familial cases, haplotype analysis was carried out, where possible, to exclude DFNB1 mutations. Following this, haplotype analysis of five Usher syndrome loci, sometimes involved in autosomal non-syndromic hearing loss, was carried out to identify cases in which Usher gene sequencing was indicated. When homozygosity was observed at a locus in a consanguineous family, the corresponding gene was exhaustively sequenced. Pathogenic DFNB1 genotypes were identified in 40% of the cases. Of the 21 cases identified with 2 pathogenic mutations, c.35delG represented 76% of the mutated alleles. The additional mutations were one nonsense, two missense and one splicing mutation. Four additional patients were identified with a single DFNB1 mutation. None carried the large deletions. Three families with non-syndromic deafness carried novel unclassified variants (UVs) in MYO7A (1 family) and CDH23 (2 families) of unknown pathogenic effect. Additionally, molecular diagnosis was carried out on two Usher type I families and pathogenic mutations in MYO7A and PCDH15 were found."	"Retinal pigment epithelium defects in humans and mice with mutations in MYO7A: imaging melanosome-specific autofluorescence. Usher syndrome (USH) is a genetically heterogeneous disease with autosomal recessive deafness and blindness. Gene therapy is under development for use in the most common genetic variant of USH1, USH1B, which is caused by mutations in the MYO7A gene. This study was undertaken to identify an imaging method for noninvasively monitoring the RPE component of the USH1B disease. NIR-autofluorescence (NIR-AF) was examined in USH1B patients with scanning laser ophthalmoscopy, and retinal thickness with spectral-domain optical coherence tomography. Myo7a-null mouse retinas and purified RPE melanosomes were analyzed by spectral deconvolution confocal microscopy. In USH1B patients, NIR-AF was normal in regions of retained photoreceptors and abnormal in regions lacking photoreceptors. Subtle changes in NIR-AF were associated with intermediate photoreceptor loss. In ex vivo mouse retinas, the NIR-AF source was traced to the melanosomes in the RPE and choroid. Purified RPE melanosomes emitted the same signal. Fluorophores, excited by long-wavelength light, were evident throughout the apical RPE of WT mouse eyecups. In Myo7a-null eyecups, these fluorophores had a more restricted distribution. They were absent from the apical processes of the RPE, thus correlating with the melanosome localization defects described previously by conventional microscopy. The data indicate that melanosomes in the RPE and choroid are the dominant source of NIR-AF from the posterior region of the eye. NIR-AF is a novel tool that provides sensitive and label-free imaging of the retina and RPE and is currently the only melanosome-specific, noninvasive technique for monitoring RPE disease in new therapeutic initiatives for retinal degenerations."	"Pigmentation-related genes and their implication in malignant melanoma susceptibility. Human pigmentation appears to be one of the main modulators of individual risk of developing malignant melanoma (MM). A large number of genes are known to be involved in rare pigmentary disorders and explain most of the variation in pigmentation phenotypes seen in human populations. This Spanish case-control study included 205 patients with melanoma and 245 control subjects. Thirty-one single nucleotide polymorphisms (SNPs) in genes that had been mainly associated with congenital pigmentation syndromes (ADTB3A, ATRN, CHS1, EDNRB, HPS, KIT, MGRN1, MITF, MLANA, MYO5A, MYO7A, OA1, OCA2, PAX3 and SOX10) were selected. We found that the variant allele of OCA2 R419Q (rs1800407) was associated with increased risk of MM (OR 1.55, 95% CI 1.04-2.31, P = 0.03). This effect on melanoma risk appeared to be stronger among individuals with solar lentigines, or at least 50 nevi. We also describe, for the first time, an association with the variant S1666C (rs2276288) in the MYO7A gene (OR 1.35; 95% CI 1.04-1.76; P = 0.03). Again, this association appeared to be stronger in several phenotypic groups such as individuals with fair skin and those with childhood sunburns. We also found that several variants in the pigmentation genes considered were associated with intermediate phenotypic characteristics. Our findings highlight the potential importance of pigmentation genes in sporadic MM susceptibility."	"Myrip uses distinct domains in the cellular activation of myosin VA and myosin VIIA in melanosome transport. Myrip is a Rab27a and MyosinVIIa (MyoVIIa) linking protein that may regulate melanosome transport in the retinal pigment epithelium (RPE). Myrip also binds MyosinVa (MyoVa) in vitro however it is unclear whether this interaction is of sufficient affinity to be physiologically relevant. Here, we addressed the questions of whether Myrip interacts with MyoVa in cells and the molecular basis of cellular activation of MyoVa and MyoVIIa by Myrip. To answer these questions we used melanosome transport in skin melanocytes and RPE cells as read-outs of MyoVa and MyoVIIa activity. We found that Myrip recruits and activates MyoVa on skin melanosomes with similar efficiency to the established MyoVa activator Melanophilin (Mlph). Mutagenesis showed that a Myrip-Mlph conserved amphipathic helix (MMAH) is essential for MyoVa interaction while other Myrip regions, including the MyoVa exon F binding domain equivalent, play non-essential roles in this interaction. This suggests that, in contrast to Mlph, Myrip interacts with MyoVa lacking melanocyte-specific exon F. Parallel studies of RPE melanosome transport reveal that Myrip-specific inserts, but not the MMAH, are essential for MyoVIIa activation. We conclude that Myrip is a versatile Rab27a-associated myosin-activating protein that mediates cellular activation of MyoVa and MyoVIIa via non-overlapping domains."	"Identification of novel variants in the Myosin VIIA gene of patients with nonsyndromic hearing loss from Taiwan. To determine whether variants of exons 7, 11, 22 and 28 of the MYO7A gene are causes of nonsyndromic deafness in Taiwanese. We screened a total of 331 unrelated Taiwanese individuals (age range, 4-22 years), including 231 patients with severe to profound nonsyndromic hearing loss and 100 individuals with normal hearing. Genomic DNA was extracted from peripheral blood leukocytes and then subjected to PCR to amplify selected exons and flanking introns of the MYO7A gene; the amplified products were screened for base mutations by autosequence. Data from the two groups were then compared using the chi-square (chi(2)) test. The analysis revealed six variants in 3 out of 4 screened exons and flanking intronic sequences of the MYO7A gene (exons 7, 11, and 22). Three missense variants were found only in patients with hearing loss and were heterozygous, including Arg206Cys, Arg206His and Thr381Met. A variant, c.IVS22+58G&gt;A, was found in intron 22 of the MYO7A gene from both patients and control group. Allele frequencies of c.IVS22+58G&gt;A were shown to be significant between the two groups using chi(2) test (P&lt;0.05). Our results indicate that Arg206 and Thr381 residues in the motor head region of MYO7A protein are critical sites and the mutations of these residues may lead to the development of nonsyndromic deafness."	"Characterization of the Drosophila ortholog of the human Usher Syndrome type 1G protein sans. The Usher syndrome (USH) is the most frequent deaf-blindness hereditary disease in humans. Deafness is attributed to the disorganization of stereocilia in the inner ear. USH1, the most severe subtype, is associated with mutations in genes encoding myosin VIIa, harmonin, cadherin 23, protocadherin 15, and sans. Myosin VIIa, harmonin, cadherin 23, and protocadherin 15 physically interact in vitro and localize to stereocilia tips in vivo, indicating that they form functional complexes. Sans, in contrast, localizes to vesicle-like structures beneath the apical membrane of stereocilia-displaying hair cells. How mutations in sans result in deafness and blindness is not well understood. Orthologs of myosin VIIa and protocadherin 15 have been identified in Drosophila melanogaster and their genetic analysis has identified essential roles in auditory perception and microvilli morphogenesis, respectively. Here, we have identified and characterized the Drosophila ortholog of human sans. Drosophila Sans is expressed in tubular organs of the embryo, in lens-secreting cone cells of the adult eye, and in microvilli-displaying follicle cells during oogenesis. Sans mutants are viable, fertile, and mutant follicle cells appear to form microvilli, indicating that Sans is dispensable for fly development and microvilli morphogenesis in the follicle epithelium. In follicle cells, Sans protein localizes, similar to its vertebrate ortholog, to intracellular punctate structures, which we have identified as early endosomes associated with the syntaxin Avalanche. Our work is consistent with an evolutionary conserved function of Sans in vesicle trafficking. Furthermore it provides a significant basis for further understanding of the role of this Usher syndrome ortholog in development and disease."	"Trafficking of systemic fluorescent gentamicin into the cochlea and hair cells. Aminoglycosides enter inner ear hair cells across their apical membranes via endocytosis, or through the mechanoelectrical transduction channels in vitro, suggesting that these drugs enter cochlear hair cells from endolymph to exert their cytotoxic effect. We used zebrafish to determine if fluorescently tagged gentamicin (GTTR) also enters hair cells via apically located calcium-sensitive cation channels and the cytotoxicity of GTTR to hair cells. We then examined the serum kinetics of GTTR following systemic injection in mice and which murine cochlear sites preferentially loaded with systemically administered GTTR over time by confocal microscopy. GTTR is taken up by, and is toxic to, wild-type zebrafish neuromast hair cells. Neuromast hair cell uptake of GTTR is attenuated by high concentrations of extracellular calcium or unconjugated gentamicin and is blocked in mariner mutant zebrafish, suggestive of entry via the apical mechanotransduction channel. In murine cochleae, GTTR is preferentially taken up by the stria vascularis compared to the spiral ligament, peaking 3 h after intra-peritoneal injection, following GTTR kinetics in serum. Strial marginal cells display greater intensity of GTTR fluorescence compared to intermediate and basal cells. Immunofluorescent detection of gentamicin in the cochlea also revealed widespread cellular labeling throughout the cochlea, with preferential labeling of marginal cells. Only GTTR fluorescence displayed increasing cytoplasmic intensity with increasing concentration, unlike the cytoplasmic intensity of fluorescence from immunolabeled gentamicin. These data suggest that systemically administered aminoglycosides are trafficked from strial capillaries into marginal cells and clear into endolymph. If so, this will facilitate electrophoretically driven aminoglycoside entry into hair cells from endolymph. Trans-strial trafficking of aminoglycosides from strial capillaries to marginal cells will be dependent on as-yet-unidentified mechanisms that convey these drugs across the intra-strial electrical barrier and into marginal cells."	"Update on Usher syndrome. The present review addresses the mechanisms, genetics and pathogenesis of Usher syndrome. Recent molecular findings have provided more information regarding the pathogenesis of this disorder and the wide phenotypic variation in both audiovestibular and/or visual systems. Evidence has begun to emerge supporting a theory of a protein interactome involving the Usher proteins in both the inner ear and the retina. This interactome appears to be important for hair cell development in the ear but its role in the retina remains unclear. Understanding clinical disease progression and molecular pathways is important in the progress towards developing gene therapy to prevent blindness due to Usher syndrome as well as delivering prognostic information to affected individuals."	"Bcl-2 gene therapy prevents aminoglycoside-induced degeneration of auditory and vestibular hair cells. To evaluate the protective effects of bcl-2, we have developed an in vivo model of gentamicin ototoxicity in C57BL/6 mice using intratympanic delivery of gentamicin. Hair cell survival was evaluated using myosin VIIa immunohistochemistry, cytocochleogram and auditory brainstem response (ABR) testing. At 10 days after gentamicin application, a consistent loss of outer hair cells was seen. Mice were pretreated with an adenovector expressing human bcl-2 (Ad.11D.bcl-2) or a control vector (Ad.11D). Seventy-two hours after vector delivery mice were treated with intratympanic gentamicin and evaluated at 10 days after ototoxin delivery. Pretreatment with Ad.11D.bcl-2 resulted in morphologic protection of hair cells and preservation of hearing thresholds measured by ABR."	"Disease boundaries in the retina of patients with Usher syndrome caused by MYO7A gene mutations. To study retinal microstructure in Usher Syndrome type 1B (USH1B) caused by MYO7A mutations as a prelude to treatment initiatives. Patients with MYO7A-USH1B (n=17; ages 5-61) were studied with optical coherence tomography. Retinal laminae across horizontal and vertical meridians were measured. Colocalized visual sensitivity was measured with automated perimetry to enable comparisons of function and structure in the transition zones. Laminar architecture of the central retina in MYO7A-USH1B ranged from normal to severely abnormal. Within the transition zone between normal and abnormal retina, the first detectable abnormality was an increase in prominence of the OLM (outer limiting membrane). Declining ONL thickness was accompanied by increased thickness of the OPL and normal or increased INL. Undetectable ONL and OPL and hyperthick INL were features of severe laminopathy at further eccentricities into the transition zone. Visual sensitivity in the transition zone declined with the decrease in ONL thickness. Patients with MYO7A-USH1B can have regions of structurally and functionally normal retina with definable transitions to severe laminopathy and visual loss. The earliest detectable structural markers of disease may represent Müller glial cell response to photoreceptor stress and apoptosis. Visual losses were predictably related to a decline in ONL thickness. The prospect of focal treatment of MYO7A-USH1B, such as subretinal gene therapy, prompts the need to identify retinal locations that warrant consideration for treatment in early phase trials. The transition zones are candidate sites for treatment, and laminar architecture and visual sensitivity are possible outcomes to assess safety and efficacy."	"Postnatal development of the organ of Corti in dominant-negative Gjb2 transgenic mice. Hereditary hearing loss is one of the most prevalent inherited human birth defects, affecting one in 2000. A strikingly high proportion (50%) of congenital bilateral nonsyndromic sensorineural deafness cases have been linked to mutations in the GJB2 coding for the connexin26. It has been hypothesized that gap junctions in the cochlea, especially connexin26, provide an intercellular passage by which K(+) are transported to maintain high levels of the endocochlear potential essential for sensory hair cell excitation. We previously reported the generation of a mouse model carrying human connexin26 with R75W mutation (R75W+ mice). The present study attempted to evaluate postnatal development of the organ of Corti in the R75W+ mice. R75W+ mice have never shown auditory brainstem response waveforms throughout postnatal development, indicating the disturbance of auditory organ development. Histological observations at postnatal days (P) 5-14 were characterized by i) absence of tunnel of Corti, Nuel's space, or spaces surrounding the outer hair cells, ii) significantly small numbers of microtubules in inner pillar cells, iii) shortening of height of the organ of Corti, and iv) increase of the cross-sectional area of the cells of the organ of Corti. Thus, morphological observations confirmed that a dominant-negative Gjb2 mutation showed incomplete development of the cochlear supporting cells. On the other hand, the development of the sensory hair cells, at least from P5 to P12, was not affected. The present study suggests that Gjb2 is indispensable in the postnatal development of the organ of Corti and normal hearing."	"Vestibular function in families with inherited autosomal dominant hearing loss. The inner ear contains the developmentally related cochlea and peripheral vestibular labyrinth. Given the similar physiology between these two organs, hearing loss and vestibular dysfunction may be expected to occur simultaneously in individuals segregating mutations in inner ear genes. Twenty-two different genes have been discovered that when mutated lead to non-syndromic autosomal dominant hearing loss. A review of the literature indicates that families segregating mutations in 13 of these 22 genes have undergone formal clinical vestibular testing. Formal assessment revealed vestibular dysfunction in families with mutations in ten of these 13 genes. Remarkably, only families with mutations in the COCH and MYO7A genes self-report considerable vestibular challenges. Families segregating mutations in the other eight genes do not self-report significant balance problems and appear to compensate well in everyday life for vestibular deficits discovered during formal clinical vestibular assessment. An example of a family (referred to as the HL1 family) with progressive hearing loss and clinically-detected vestibular hypofunction that does not report vestibular symptoms is described in this review. Notably, one member of the HL1 family with clinically-detected vestibular hypofunction reached the summit of Mount Kilimanjaro."	"Functional auditory hair cells produced in the mammalian cochlea by in utero gene transfer. Sensory hair cells in the mammalian cochlea convert mechanical stimuli into electrical impulses that subserve audition. Loss of hair cells and their innervating neurons is the most frequent cause of hearing impairment. Atonal homologue 1 (encoded by Atoh1, also known as Math1) is a basic helix-loop-helix transcription factor required for hair-cell development, and its misexpression in vitro and in vivo generates hair-cell-like cells. Atoh1-based gene therapy to ameliorate auditory and vestibular dysfunction has been proposed. However, the biophysical properties of putative hair cells induced by Atoh1 misexpression have not been characterized. Here we show that in utero gene transfer of Atoh1 produces functional supernumerary hair cells in the mouse cochlea. The induced hair cells display stereociliary bundles, attract neuronal processes and express the ribbon synapse marker carboxy-terminal binding protein 2 (refs 12,13). Moreover, the hair cells are capable of mechanoelectrical transduction and show basolateral conductances with age-appropriate specializations. Our results demonstrate that manipulation of cell fate by transcription factor misexpression produces functional sensory cells in the postnatal mammalian cochlea. We expect that our in utero gene transfer paradigm will enable the design and validation of gene therapies to ameliorate hearing loss in mouse models of human deafness."	"Impacts of Usher syndrome type IB mutations on human myosin VIIa motor function. Usher syndrome (USH) is a human hereditary disorder characterized by profound congenital deafness, retinitis pigmentosa, and vestibular dysfunction. Myosin VIIa has been identified as the responsible gene for USH type 1B, and a number of missense mutations have been identified in the affected families. However, the molecular basis of the dysfunction of USH gene, myosin VIIa, in the affected families is unknown to date. Here we clarified the effects of USH1B mutations on human myosin VIIa motor function for the first time. The missense mutations of USH1B significantly inhibited the actin activation of ATPase activity of myosin VIIa. G25R, R212C, A397D, and E450Q mutations abolished the actin-activated ATPase activity completely. P503L mutation increased the basal ATPase activity for 2-3-fold but reduced the actin-activated ATPase activity to 50% of the wild type. While all of the mutations examined, except for R302H, reduced the affinity for actin and the ATP hydrolysis cycling rate, they did not largely decrease the rate of ADP release from actomyosin, suggesting that the mutations reduce the duty ratio of myosin VIIa. Taken together, the results suggest that the mutations responsible for USH1B cause the complete loss of the actin-activated ATPase activity or the reduction of duty ratio of myosin VIIa."	"In search of the DFNA11 myosin VIIA low- and mid-frequency auditory genetic modifier. To evaluate the auditory, vestibular, and retinal characteristics of a large American DFNA11 pedigree with autosomal dominant progressive sensorineural hearing loss that first impacts the low- and mid-frequency auditory range. The pedigree (referred to as the HL2 family) segregates a myosin VIIA (MYO7A) mutation in exon 17 at DNA residue G2164C (MYO7A) that seems to be influenced by a genetic modifier that either rescues or exacerbates the MYO7A alteration. DNA analysis to examine single-nucleotide polymorphisms in 2 candidate modifier genes (ATP2B2 and Wolfram syndrome 1 [WFS1]) is summarized in this report. Family study. The degree of low- and mid-frequency hearing loss in HL2 family members segregating the MYO7A mutation varies from mild to more severe, with approximately the same number of HL2 family members falling at each end of the severity spectrum. The extent of hearing loss in HL2 individuals can vary between family generations. Differences in the degree of hearing loss in MYO7A HL2 family members may be mirrored by vestibular function in at least 2 of these same individuals. The single-nucleotide polymorphisms examined within ATP2B2 and WFS1 did not segregate with the mild versus more severe auditory phenotype. The severity of the auditory and vestibular phenotypes in MYO7A HL2 family members may run in parallel, suggesting a common modifier gene within the inner ear. The putative MYO7A genetic modifier is likely to represent a common polymorphism that is not linked tightly to the MYO7A mutation on the MYO7A allele."	"Efficient and specific transduction of cochlear supporting cells by adeno-associated virus serotype 5. Congenital deafness, affecting 1 in 1000 neonates, can lead to major problems in speech, cognitive and psychosocial development. Congenital deafness is mainly caused by mutations in connexins, hemi-channel proteins forming gap-junctions between supporting cells in the sensory epithelia. We describe a high tropism of AAV5 serotype for the supporting cells of the cochlea, both in vitro in postnatal day 4 mouse explants, and in vivo in the adult guinea-pig inner ear, through scala media perfusion. AAV5 transduction correlates with PDGFRalpha expression, previously reported as AAV5 receptor. This vector could be of major interest in addressing gene therapy approaches to deafness as well as for studying basic aspects of inner-ear development and hearing mechanisms."	"Genetic counseling in Usher syndrome: linkage and mutational analysis of 10 Colombian families. Usher Syndrome (US), an autosomal recessive disease, is characterized by retinitis pigmentosa (RP), vestibular dysfunction, and congenital sensorineural deafness. There are three recognized clinical types of the disorder. In order to improve genetic counseling for affected families, we conducted linkage analysis and DNA sequencing in 10 Colombian families with confirmed diagnosis of US (4 type I and 6 type II). Seventy-five percent of the US1 families showed linkage to locus USH1B, while the remaining 25% showed linkage to loci USH1B and USH1C. Among families showing linkage to USH1B we found two different mutations in the MYO7A gene: IVS42-26insTTGAG in exon 43 (heterozygous state) and R634X (CGA-TGA) in exon 16 (homozygous state). All six US2 families showed linkage to locus USH2A. Of them, 4 had c.2299delG mutation (1 homozygote state and 3 heterozygous); in the remaining 2 we did not identify any pathologic DNA variant. USH2A individuals with a 2299delG mutation presented a typical and homogeneous retinal phenotype with bilateral severe hearing loss, except for one individual with a heterozygous 2299delG mutation, whose hearing loss was asymmetric, but more profound than in the other cases. The study of these families adds to the genotype-phenotype characterization of the different types and subtypes of US and facilitates genetic counseling in these families. We would like to emphasize the need to perform DNA studies as a prerequisite for genetic counseling in affected families."	"A novel WFS1 mutation in a family with dominant low frequency sensorineural hearing loss with normal VEMP and EcochG findings. Low frequency sensorineural hearing loss (LFSNHL) is an uncommon clinical finding. Mutations within three different identified genes (DIAPH1, MYO7A, and WFS1) are known to cause LFSNHL. The majority of hereditary LFSNHL is associated with heterozygous mutations in the WFS1 gene (wolframin protein). The goal of this study was to use genetic analysis to determine if a small American family's hereditary LFSNHL is linked to a mutation in the WFS1 gene and to use VEMP and EcochG testing to further characterize the family's audiovestibular phenotype. The clinical phenotype of the American family was characterized by audiologic testing, vestibular evoked myogenic potentials (VEMP), and electrocochleography (EcochG) evaluation. Genetic characterization was performed by microsatellite analysis and direct sequencing of WFS1 for mutation detection. Sequence analysis of the WFS1 gene revealed a novel heterozygous mutation at c.2054G&gt;C predicting a p.R685P amino acid substitution in wolframin. The c.2054G&gt;C mutation segregates faithfully with hearing loss in the family and is absent in 230 control chromosomes. The p.R685 residue is located within the hydrophilic C-terminus of wolframin and is conserved across species. The VEMP and EcochG findings were normal in individuals segregating the WFS1 c.2054G&gt;C mutation. We discovered a novel heterozygous missense mutation in exon 8 of WFS1 predicting a p.R685P amino acid substitution that is likely to underlie the LFSNHL phenotype in the American family. For the first time, we describe VEMP and EcochG findings for individuals segregating a heterozygous WFS1 mutation."	"UMD-USHbases: a comprehensive set of databases to record and analyse pathogenic mutations and unclassified variants in seven Usher syndrome causing genes. Using the Universal Mutation Database (UMD) software, we have constructed &quot;UMD-USHbases&quot;, a set of relational databases of nucleotide variations for seven genes involved in Usher syndrome (MYO7A, CDH23, PCDH15, USH1C, USH1G, USH3A and USH2A). Mutations in the Usher syndrome type I causing genes are also recorded in non-syndromic hearing loss cases and mutations in USH2A in non-syndromic retinitis pigmentosa. Usher syndrome provides a particular challenge for molecular diagnostics because of the clinical and molecular heterogeneity. As many mutations are missense changes, and all the genes also contain apparently non-pathogenic polymorphisms, well-curated databases are crucial for accurate interpretation of pathogenicity. Tools are provided to assess the pathogenicity of mutations, including conservation of amino acids and analysis of splice-sites. Reference amino acid alignments are provided. Apparently non-pathogenic variants in patients with Usher syndrome, at both the nucleotide and amino acid level, are included. The UMD-USHbases currently contain more than 2,830 entries including disease causing mutations, unclassified variants or non-pathogenic polymorphisms identified in over 938 patients. In addition to data collected from 89 publications, 15 novel mutations identified in our laboratory are recorded in MYO7A (6), CDH23 (8), or PCDH15 (1) genes. Information is given on the relative involvement of the seven genes, the number and distribution of variants in each gene. UMD-USHbases give access to a software package that provides specific routines and optimized multicriteria research and sorting tools. These databases should assist clinicians and geneticists seeking information about mutations responsible for Usher syndrome."	"Usher syndromes due to MYO7A, PCDH15, USH2A or GPR98 mutations share retinal disease mechanism. Usher syndrome (USH) is a genetically heterogeneous group of autosomal recessive deaf-blinding disorders. Pathophysiology leading to the blinding retinal degeneration in USH is uncertain. There is evidence for involvement of the photoreceptor cilium, photoreceptor synapse, the adjacent retinal pigment epithelium (RPE) cells, and the Crumbs protein complex, the latter implying developmental abnormalities in the retina. Testing hypotheses has been difficult in murine USH models because most do not show a retinal degeneration phenotype. We defined the retinal disease expression in vivo in human USH using optical imaging of the retina and visual function. In MYO7A (USH1B), results from young individuals or those at early stages indicated the photoreceptor was the first detectable site of disease. Later stages showed photoreceptor and RPE cell pathology. Mosaic retinas in Myo7a-deficient shaker1 mice supported the notion that the mutant photoreceptor phenotype was cell autonomous and not secondary to mutant RPE. Humans with PCDH15 (USH1F), USH2A or GPR98 (USH2C) had a similar retinal phenotype to MYO7A (USH1B). There was no evidence of photoreceptor synaptic dysfunction and no dysplastic phenotype as in CRB1 (Crumbs homologue1) retinopathy. The results point to the photoreceptor cell as the therapeutic target for USH treatment trials, such as MYO7A somatic gene replacement therapy."	"Myosin VIIA, important for human auditory function, is necessary for Drosophila auditory organ development. Myosin VIIA (MyoVIIA) is an unconventional myosin necessary for vertebrate audition [1]-[5]. Human auditory transduction occurs in sensory hair cells with a staircase-like arrangement of apical protrusions called stereocilia. In these hair cells, MyoVIIA maintains stereocilia organization [6]. Severe mutations in the Drosophila MyoVIIA orthologue, crinkled (ck), are semi-lethal [7] and lead to deafness by disrupting antennal auditory organ (Johnston's Organ, JO) organization [8]. ck/MyoVIIA mutations result in apical detachment of auditory transduction units (scolopidia) from the cuticle that transmits antennal vibrations as mechanical stimuli to JO. Using flies expressing GFP-tagged NompA, a protein required for auditory organ organization in Drosophila, we examined the role of ck/MyoVIIA in JO development and maintenance through confocal microscopy and extracellular electrophysiology. Here we show that ck/MyoVIIA is necessary early in the developing antenna for initial apical attachment of the scolopidia to the articulating joint. ck/MyoVIIA is also necessary to maintain scolopidial attachment throughout adulthood. Moreover, in the adult JO, ck/MyoVIIA genetically interacts with the non-muscle myosin II (through its regulatory light chain protein and the myosin binding subunit of myosin II phosphatase). Such genetic interactions have not previously been observed in scolopidia. These factors are therefore candidates for modulating MyoVIIA activity in vertebrates. Our findings indicate that MyoVIIA plays evolutionarily conserved roles in auditory organ development and maintenance in invertebrates and vertebrates, enhancing our understanding of auditory organ development and function, as well as providing significant clues for future research."	"Mutation profile of the CDH23 gene in 56 probands with Usher syndrome type I. Mutations in the human gene encoding cadherin23 (CDH23) cause Usher syndrome type 1D (USH1D) and nonsyndromic hearing loss. Individuals with Usher syndrome type I have profound congenital deafness, vestibular areflexia and usually begin to exhibit signs of RP in early adolescence. In the present study, we carried out the mutation analysis in all 69 exons of the CDH23 gene in 56 Usher type 1 probands already screened for mutations in MYO7A. A total of 18 of 56 subjects (32.1%) were observed to have one or two CDH23 variants that are presumed to be pathologic. Twenty one different pathologic genome variants were observed of which 15 were novel. Out of a total of 112 alleles, 31 (27.7%) were considered pathologic. Based on our results it is estimated that about 20% of patients with Usher syndrome type I have CDH23 mutations."	"Serotype-dependent packaging of large genes in adeno-associated viral vectors results in effective gene delivery in mice. Vectors derived from adeno-associated virus (AAV) are promising for human gene therapy, including treatment for retinal blindness. One major limitation of AAVs as vectors is that AAV cargo capacity has been considered to be restricted to 4.7 kb. Here we demonstrate that vectors with an AAV5 capsid (i.e., rAAV2/5) incorporated up to 8.9 kb of genome more efficiently than 6 other serotypes tested, independent of the efficiency of the rAAV2/5 production process. Efficient packaging of the large murine Abca4 and human MYO7A and CEP290 genes, which are mutated in common blinding diseases, was obtained, suggesting that this packaging efficiency is independent of the specific sequence packaged. Expression of proteins of the appropriate size and function was observed following transduction with rAAV2/5 carrying large genes. Intraocular administration of rAAV2/5 encoding ABCA4 resulted in protein localization to rod outer segments and significant and stable morphological and functional improvement of the retina in Abca4(-/-) mice. This use of rAAV2/5 may be a promising therapeutic strategy for recessive Stargardt disease, the most common form of inherited macular degeneration. The possibility of packaging large genes in AAV greatly expands the therapeutic potential of this vector system."	"Cochlear implantation in individuals with Usher type 1 syndrome. To analyze the occurrence of the Usher type 1 (USH1) gene mutations in cochlear implant recipients with deaf-blind Usher syndrome, and to assess the potential effect of these genes and other factors on the therapeutic outcome. Case series study of nine patients with the phenotypic diagnosis of USH1. Mutation analysis of four USH1 genes (MYO7A, USH1C, CDH23, and PCDH15) by single strand conformational polymorphism (SSCP) and direct sequencing methods. Pre- and post-implantation audiologic tests including pure tone audiometry, speech perception measures, and qualitative assessment of auditory performance. Nine USH1 patients who received their cochlear implants at the University of Miami Ear Institute, Miami, FL, USA, and at the Department of Cochlear Implants, Great Ormond Street Hospital for Children, London, UK. DNA samples from five of the nine patients were available for mutation analysis. Three of the five patients were found to carry USH1 mutations including two with a truncated mutation in CDH23 and one being a digenic inheritance with mutations in CDH23 and PCDH15. We may have failed to detect mutations in the amplicons analyzed, as neither SSCP nor direct sequencing, even combined, detects all mutations present. Our failure to detect mutations in all five patients may also confirm the genetic heterogeneity of USH1 and additional USH1 loci remain to be mapped. Pre-implantation assessment indicated that all of the subjects were pre-linguistically profoundly deaf, had no consistent response to sound, had varying degrees of auditory-oral habilitation. Age at implantation ranged from 2 to 11 years. There was post-implantation improvement in sound detection and speech recognition measures in closed-set format in all patients. Children implanted at an age of 3 years or less showed good open-set speech perception with lip-reading. All patients are implant users. Those patients who do not show open-set perception still use the cochlear implant as an adjunct of lip-reading or total communication. Testing for mutations in the USH1 genes allows early identification and intervention of children with USH1; timely intervention is important to maximize the development of useful auditory-oral communication skills prior to the onset of the visual impairment."	"A novel nonsense mutation in MYO6 is associated with progressive nonsyndromic hearing loss in a Danish DFNA22 family. Autosomal dominant inheritance is described in about 20% of all nonsyndromic hearing loss with currently 54 distinct loci (DFNA1-54), and &gt;20 different genes identified. Seven different unconventional myosin genes are involved in ten different types of syndromic and nonsyndromic hearing loss with different patterns of inheritance: MYO7A in DFNA11/DFNB2/USH1B, MYH9 in DFNA17, MYH14 in DFNA4, MYO6 in DFNA22/DFNB37, MYO3A in DFNB30, MYO1A in DFNA48, and MYO15A in DFNB3. Two missense mutations in MYO6 (p.C442Y and p.H246R) have been characterized in families of Italian and American Caucasian extraction with autosomal dominant hearing loss, respectively, and the latter was associated with cardiomyopathy in some patients. Three Pakistani families had homozygosity for three MYO6 mutations (c.36insT, p.R1166X, and p.E216V, respectively), and was in one instance associated with retinal degeneration. In the present study, we linked autosomal dominant hearing loss in a large Danish family to a 38.9 Mb interval overlapping with the DFNA22/DFNB37 locus on chromosome 6q13. A novel nonsense mutation in MYO6 exon 25 (c.2545C &gt; T; p.R849X) was identified in the family. The mutation co-segregated with the disease and the mutant allele is predicted to encode a truncated protein lacking the coiled-coil and globular tail domains. These domains are hypothesized to be essential for targeting myosin VI to its cellular compartments. No other system was involved indicating nonsyndromic loss. In conclusion, a novel nonsense MYO6 mutation causes post-lingual, slowly progressive autosomal dominant nonsyndromic moderate to severe hearing loss in a Danish family."	"A core cochlear phenotype in USH1 mouse mutants implicates fibrous links of the hair bundle in its cohesion, orientation and differential growth. The planar polarity and staircase-like pattern of the hair bundle are essential to the mechanoelectrical transduction function of inner ear sensory cells. Mutations in genes encoding myosin VIIa, harmonin, cadherin 23, protocadherin 15 or sans cause Usher syndrome type I (USH1, characterized by congenital deafness, vestibular dysfunction and retinitis pigmentosa leading to blindness) in humans and hair bundle disorganization in mice. Whether the USH1 proteins are involved in common hair bundle morphogenetic processes is unknown. Here, we show that mouse models for the five USH1 genetic forms share hair bundle morphological defects. Hair bundle fragmentation and misorientation (25-52 degrees mean kinociliary deviation, depending on the mutant) were detected as early as embryonic day 17. Abnormal differential elongation of stereocilia rows occurred in the first postnatal days. In the emerging hair bundles, myosin VIIa, the actin-binding submembrane protein harmonin-b, and the interstereocilia-kinocilium lateral link components cadherin 23 and protocadherin 15, all concentrated at stereocilia tips, in accordance with their known in vitro interactions. Soon after birth, harmonin-b switched from the tip of the stereocilia to the upper end of the tip link, which also comprises cadherin 23 and protocadherin 15. This positional change did not occur in mice deficient for cadherin 23 or protocadherin 15. We suggest that tension forces applied to the early lateral links and to the tip link, both of which can be anchored to actin filaments via harmonin-b, play a key role in hair bundle cohesion and proper orientation for the former, and in stereociliary elongation for the latter."	"[Usher type I syndrome in children: genotype/phenotype correlation and cochlear implant benefits]. To assess the benefit of cochlear implant in children presenting an Usher type 1 syndrome (speech understanding, speech production intelligibility, academic performance) and to search any correlation between the phenotype and the genotype in this population. Retrospective case series analysis about 13 implanted Usher type I children. Cochlear implantation was performed from 1995 to 2005. Our population was divided in three groups: group 1 (implantation between 1 and 3 years of age); group 2 (implantation between 4 and 7 years of age) and group 3 (implantation between 14 and 17 years of age). Postoperative speech perception, speech production intelligibility and education settings were evaluated. Molecular genetic analysis was performed in 11 patients and pathogenic mutations were identified in all cases: (mutation in myosin 7A gene in 5 cases; mutation in cadherin 23 gene in 6 cases). Four new mutations 2 in the MYO7A gene and 2 in the CDH23 gene never reported before were found. Walking delay and hearing level were not statistically correlated with the genotype abnormalities found. The speech discrimination skills, the speech production intelligibility and the academic performance were better in the group 1 children than the group 2 children after cochlear implantation. All the children of group 1 but one were in mainstreaming education. Specific language impairment was identified in two children of group 1. The group 3 children could not achieve open-set perceptive tasks after implantation--only closed-set word test can be done and their speech production remained unintelligible after cochlear implantation. Molecular analysis of Usher type I syndrome can ascertain the diagnosis in spite of the genetic heterogeneity. In this study, clinical symptoms weren't correlated with genotypic mutations. Speech discrimination skills, speech production quality, and academic performance were correlated with the age at implant."	"Mutation spectrum of MYO7A and evaluation of a novel nonsyndromic deafness DFNB2 allele with residual function. Recessive mutations of MYO7A, encoding unconventional myosin VIIA, can cause either a deaf-blindness syndrome (type 1 Usher syndrome; USH1B) or nonsyndromic deafness (DFNB2). In our study, deafness segregating as a recessive trait in 24 consanguineous families showed linkage to markers for the DFNB2/USH1B locus on chromosome 11q13.5. A total of 23 of these families segregate USH1 due to 17 homozygous mutant MYO7A alleles, of which 14 are novel. One family segregated nonsyndromic hearing loss DFNB2 due to a novel three-nucleotide deletion in an exon of MYO7A (p.E1716del) encoding a region of the tail domain. We hypothesized that DFNB2 alleles of MYO7A have residual myosin VIIA. To address this question we investigated the effects of several mutant alleles by making green fluorescent protein (GFP) tagged cDNA expression constructs containing engineered mutations of mouse Myo7a at codons equivalent to pathogenic USH1B and DFNB2 alleles of human MYO7A. We show that in transfected mouse hair cells an USH1B mutant GFP-myosin VIIa does not localize properly to inner ear hair cell stereocilia. However, a GFP-myosin VIIa protein engineered to have an equivalent DFNB2 mutation to p.E1716del localizes correctly in transfected mouse hair cells. This finding is consistent with the hypothesis that p.E1716del causes a less severe phenotype (DFNB2) than the USH1B-associated alleles because the resulting protein retains some degree of normal function."	"Mosaic complementation demonstrates a regulatory role for myosin VIIa in actin dynamics of stereocilia. We have developed a bacterial artificial chromosome transgenesis approach that allowed the expression of myosin VIIa from the mouse X chromosome. We demonstrated the complementation of the Myo7a null mutant phenotype producing a fine mosaic of two types of sensory hair cells within inner ear epithelia of hemizygous transgenic females due to X inactivation. Direct comparisons between neighboring auditory hair cells that were different only with respect to myosin VIIa expression revealed that mutant stereocilia are significantly longer than those of their complemented counterparts. Myosin VIIa-deficient hair cells showed an abnormally persistent tip localization of whirlin, a protein directly linked to elongation of stereocilia, in stereocilia. Furthermore, myosin VIIa localized at the tips of all abnormally short stereocilia of mice deficient for either myosin XVa or whirlin. Our results strongly suggest that myosin VIIa regulates the establishment of a setpoint for stereocilium heights, and this novel role may influence their normal staircase-like arrangement within a bundle."	"Analysis of MYO7A in a Moroccan family with Usher syndrome type 1B: novel loss-of-function mutation and non-pathogenicity of p.Y1719C. Mutations in the MYO7A gene are responsible for Usher syndrome type 1B (USH1B), the most common USH1 subtype, which accounts for the largest proportion of USH1 cases in most populations. Molecular genetic diagnosis in Usher syndrome is well established and identification of the underlying mutations in Usher patients is important for confirmation of the clinical diagnosis and genetic counseling. We analyzed a large consanguineous USH1 family from Morocco and linked the disease in this family to the MYO7A/USH1B locus. We identified the frequently described missense change p.Y1719C. In addition, we found the homozygous c.1687G&gt;A mutation in the last nucleotide of exon 14, which is predicted to result in aberrant splicing and may lead to loss of MYO7A transcript. We further showed that p.Y1719C is not disease-causing but does represent a frequent polymorphism in the Moroccan population, with an estimated carrier frequency of 0.07. This finding has an important impact for molecular diagnosis and genetic counseling in USH1B families."	"Usher syndrome: animal models, retinal function of Usher proteins, and prospects for gene therapy. Usher syndrome is a deafness-blindness disorder. The blindness occurs from a progressive retinal degeneration that begins after deafness and after the retina has developed. Three clinical subtypes of Usher syndrome have been identified, with mutations in any one of six different genes giving rise to type 1, in any one of three different genes to type 2, and in one identified gene causing Usher type 3. Mutant mice for most of the genes have been studied; while they have clear inner ear defects, retinal phenotypes are relatively mild and have been difficult to characterize. The retinal functions of the Usher proteins are still largely unknown. Protein binding studies have suggested many interactions among the proteins, and a model of interaction among all the proteins in the photoreceptor synapse has been proposed. However this model is not supported by localization data from some laboratories, or the indication of any synaptic phenotype in mutant mice. An earlier suggestion, based on patient pathologies, of Usher protein function in the photoreceptor cilium continues to gain support from immunolocalization and mutant mouse studies, which are consistent with Usher protein interaction in the photoreceptor ciliary/periciliary region. So far, the most characterized Usher protein is myosin VIIa. It is present in the apical RPE and photoreceptor ciliary/periciliary region, where it is required for organelle transport and clearance of opsin from the connecting cilium, respectively. Usher syndrome is amenable to gene replacement therapy, but also has some specific challenges. Progress in this treatment approach has been achieved by correction of mutant phenotypes in Myo7a-null mouse retinas, following lentiviral delivery of MYO7A."	"[Gene mapping for autosomal dominant nonsyndromic hearing loss DFNA11]. To map the gene locus in a Chinese pedigree with autosomal dominant nonsyndromic hearing loss. A genome wide screening was performed with 394 microsatellite markers distributed with an average spacing of 10 cM (ABI Prism Linkage Mapping Set 2, Applied Biosystems, Foster City, CA, U.S.A.). Affected family members showed a bilateral, symmetrical, progressive neurosensory deafness. Significant linkage was found to marker D1 S937 (maximum two point LOD score of 5. 71 at theta = 0.05) on chromosome 11q. The position of the novel deafness locus, DFNA11, was delimited by analysis of the recombinant haplotypes (D11S165-D11S1874). This analysis placed DFNA11 between the proximal marker D11S1314 and the distal marker D11S898, which define a critical interval of 25.34 cM. Mapping of the DFNA11 locus further confirms the great genetic heterogeneity underlying the autosomal dominant forms of hereditary deafness. Reports of more families with hearing impairment linked to this locus should contribute to the identification of the responsible gene, providing insights into the auditory function and the molecular pathophysiology of age related hearing loss."	"Shroom2, a myosin-VIIa- and actin-binding protein, directly interacts with ZO-1 at tight junctions. Defects in myosin VIIa lead to developmental anomalies of the auditory and visual sensory cells. We sought proteins interacting with the myosin VIIa tail by using the yeast two-hybrid system. Here, we report on shroom2, a submembranous PDZ domain-containing protein that is associated with the tight junctions in multiple embryonic and adult epithelia. Shroom2 directly interacts with the C-terminal MyTH4-FERM domain of myosin VIIa and with F-actin. In addition, a shroom2 fragment containing the region of interaction with F-actin was able to protect actin filaments from cytochalasin-D-induced disruption in MDCK cells. Transfection experiments in MDCK and LE (L fibroblasts that express E-cadherin) cells led us to conclude that shroom2 is targeted to the cell-cell junctions in the presence of tight junctions only. In Ca(2+)-switch experiments on MDCK cells, ZO-1 (also known as TJP1) preceded GFP-tagged shroom2 at the differentiating tight junctions. ZO-1 directly interacts with the serine- and proline-rich region of shroom2 in vitro. Moreover, the two proteins colocalize in vivo at mature tight junctions, and could be coimmunoprecipitated from brain and cochlear extracts. We suggest that shroom2 and ZO-1 form a tight-junction-associated scaffolding complex, possibly linked to myosin VIIa, that bridges the junctional membrane to the underlying cytoskeleton, thereby contributing to the stabilization of these junctions."	"Isolation, growth and differentiation of hair cell progenitors from the newborn rat cochlear greater epithelial ridge. Mammalian cochlear hair cell loss is irreversible and leads to permanent hearing loss. To restore hearing physiologically, it is necessary to generate new functional hair cells either from endogenous cells or from exogenously transplanted hair cells/progenitors. Previous studies suggest that cochlear greater epithelial ridge (GER) and lesser epithelial ridge (LER) cells are capable of differentiating into hair cells. While it was recently possible to obtain and culture pure LER progenitors, isolation of pure GER progenitors has not been reported. Here we describe a method that allows isolation of pure GER cells from neonatal rat cochleae. The cochlear epithelial sheet (CES) containing GER progenitor cells was mechanically separated from the underlying mesenchymal tissue after digestion with thermolysin. The GER area could then be dissected following mechanical removal of organ of Corti as well as all the lateral area. The isolated GER cells showed significant proliferation and expressed markers for GER cells but not markers for hair cells or LER. When the GER cells were cultured in serum-free medium containing epidermal growth factor, spheres were formed where they continued to proliferate. Furthermore, when GER cells were induced to express Hath1 or co-cultured with mesenchymal cells prepared from neonate rat cochleae, they showed the potential to differentiate into hair cell-like cells. Successful isolation, culture and differentiation of GER hair cell progenitors will shed additional light on the mechanism of hair cell differentiation and potential hair cell replacement."	"Myosins in melanocytes: to move or not to move? The actin network has been implicated in the intracellular transport and positioning of the melanosomes, organelles that are specialized in the biosynthesis and the storage of melanin. It contributes also to molecular mechanisms that underlie the intracellular membrane dynamics and thereby can control the biogenesis of melanosomes. Two mechanisms for actin-based movements have been identified: one is dependent on the motors associated to actin namely the myosins; the other is dependent on actin polymerization. This review will focus on to the role of the actin cytoskeleton and myosins in the transport and in the biogenesis of melanosomes. Myosins involved in membrane traffic are largely seen as transporters of organelles or membrane vesicles containing cargos along the actin networks. Yet increasing evidence suggests that some of the myosins contribute to the dynamics of internal membrane by using other mechanisms. The role of the myosins and the different molecular mechanisms by which they contribute or may contribute to the distribution, the movement and the biogenesis of the melanosomes in epidermal melanocytes and retinal pigmented epithelial (RPE) cells will be discussed."	"Effects of bone morphogenetic protein 4 on differentiation of embryonic stem cells into myosin VIIa-positive cells. Our results indicate that myosin VIIa-positive cells are generated from embryonic stem cells (ESCs) co-cultured with PA6 cells; however, bone morphogenetic protein 4 (BMP4) may not be a key molecule for induction of myosin VIIa-positive cells from the ESCs. ESCs have been considered as a basis for cell therapy in a range of organs, because of their potential for self-renewal and pluripotency. Co-culture with PA6 stromal cells can induce differentiation of ESCs into various types of ectodermal cells including sensory progenitors. BMP4 plays an essential role in the development of sensory hair cells in the inner ear. We examined effects of BMP4 on differentiation of ESCs into the hair cell immunophenotype. BMP4 was supplemented at different time points to ESCs co-cultured on PA6 stromal cells. The ESCs were then collected and examined for the expression of myosin VIIa, a hair cell marker, and betaIII-tubulin, a neural marker. The expression of myosin VIIa and betaIII-tubulin was identified. Quantitative assessments revealed that exogenous BMP4 has significant effects on the expression of betaIII-tubulin, but not of myosin VIIa."	"The ternary Rab27a-Myrip-Myosin VIIa complex regulates melanosome motility in the retinal pigment epithelium. The retinal pigment epithelium (RPE) contains melanosomes similar to those found in the skin melanocytes, which undergo dramatic light-dependent movements in fish and amphibians. In mammals, those movements are more subtle and appear to be regulated by the Rab27a GTPase and the unconventional myosin, Myosin VIIa (MyoVIIa). Here we address the hypothesis that a recently identified Rab27a- and MyoVIIa-interacting protein, Myrip, promotes the formation of a functional tripartite complex. In heterologous cultured cells, all three proteins co-immunoprecipitated following overexpression. Rab27a and Myrip localize to the peripheral membrane of RPE melanosomes as observed by immunofluorescence and immunoelectron microscopy. Melanosome dynamics were studied using live-cell imaging of mouse RPE primary cultures. Wild-type RPE melanosomes exhibited either stationary or slow movement interrupted by bursts of fast movement, with a peripheral directionality trend. Nocodazole treatment led to melanosome paralysis, suggesting that movement requires microtubule motors. Significant and similar alterations in melanosome dynamics were observed when any one of the three components of the complex was missing, as studied in ashen- (Rab27a defective) and shaker-1 (MyoVIIa mutant)-derived RPE cells, and in wild-type RPE cells transduced with adenovirus carrying specific sequences to knockdown Myrip expression. We observed a significant increase in the number of motile melanosomes, exhibiting more frequent and prolonged bursts of fast movement, and inversion of directionality. Similar alterations were observed upon cytochalasin D treatment, suggesting that the Rab27a-Myrip-MyoVIIa complex regulates tethering of melanosomes onto actin filaments, a process that ensures melanosome movement towards the cell periphery."	"The changing face of Usher syndrome: clinical implications. Usher syndrome is both genetically and phenotypically heterogeneous. Traditionally, the condition has been classified into three clinical types, differentiated by the severity and progression of the hearing impairment and by the presence or absence of vestibular symptoms. Recent advances in molecular genetics have enabled researchers to study the phenotypic expression in confirmed molecular groups of Usher. In response to the expansion of clinical and genetic information on Usher, we report an up to date review of the different clinical forms of Usher in known molecular groups and use the emerging evidence to appraise the diagnostic utility of the traditional classification of Usher. Our findings undermine the traditional view that the clinical types of Usher have distinct genetic causes. The pleiotropic effects of some of the major causes of Usher lead to considerable overlap between the different clinical types, with very little evidence for phenotypic-genotypic correlations. The novel synthesis emerging from this review suggests more productive approaches to the diagnosis of Usher in hearing-impaired children which would provide more accurate prognostic information to families."	"MYO7A mutation screening in Usher syndrome type I patients from diverse origins. NA"	"Analysis of the linkage of MYRIP and MYO7A to melanosomes by RAB27A in retinal pigment epithelial cells. The apical region of the retinal pigment epithelium (RPE) typically contains melanosomes. Their apical distribution is dependent on RAB27A and the unconventional myosin, MYO7A. Evidence from studies using in vitro binding assays, melanocyte transfection, and immunolocalization have indicated that the exophilin, MYRIP, links RAB27A on melanosomes to MYO7A, analogous to the manner that melanophilin links RAB27A on melanocyte melanosomes to MYO5A. To test the functionality of this hypothesis in RPE cells, we have examined the relationship among MYRIP, RAB27A and MYO7A with studies of RPE cells in primary culture (including live-cell imaging), analyses of mutant mouse retinas, and RPE cell fractionation experiments. Our results indicate that the retinal distribution of MYRIP is limited to the RPE, mainly the apical region. In RPE cells, RAB27A, MYRIP, and MYO7A were all associated with melanosomes, undergoing both slow and rapid movements. Analyses of mutant mice provide genetic evidence that MYRIP is linked to melanosomes via RAB27A, but show that recruitment of MYRIP to apical RPE is independent of melanosomes and RAB27A. RAB27A and MYRIP also associated with motile small vesicles of unknown origin. The present results provide evidence from live RPE cells that the RAB27A-MYRIP-MYO7A complex functions in melanosome motility. They also demonstrate that RAB27A provides an essential link to the melanosome."	"Multipotent stem cells from the young rat inner ear. The terminal mitosis of hair cells (HCs) and supporting cells (SCs) in mammalian cochlea occurred during middle embryonic development. Most hearing loss results from the incapacity of the cochlear sensory epithelium to replace lost hear cells. Deafness due to hair cells loss is normally irreversible. The present study showed that cells acutely dissociated from the cochlea of young rat, cultured with EGF and FGF2, developed into otospheres that showed expression of nestin and incorporation of 5'-Bromo-2-deoxyuridine (BrdU). The subcultured otospheres maintained for up to 10 passages. In addition, the cochlea sphere-derivatives contributed to a variety of cell types. They were found to differentiate to neuron, glia, hair cell and supporting cell phenotypes. The results suggest that the young rat inner ear cells have self-renewal capability and multipotent differentiation potential. This work raises the possibility that inner ear cells in the early post-natal rat have the character of pluripotent stem cells and might be a source for cell replacement therapy in the inner ear."	"Lentiviral gene replacement therapy of retinas in a mouse model for Usher syndrome type 1B. One of the most disabling forms of retinal degeneration occurs in Usher syndrome, since it affects patients who already suffer from deafness. Mutations in the myosin VIIa gene (MYO7A) cause a major subtype of Usher syndrome, type 1B. Owing to the loss of function nature of Usher 1B and the relatively large size of MYO7A, we investigated a lentiviral-based gene replacement therapy in the retinas of MYO7A-null mice. Among the different promoters tested, a CMV-MYO7A chimeric promoter produced wild-type levels of MYO7A in cultured RPE cells and retinas in vivo. Efficacy of the lentiviral therapy was tested by using cell-based assays to analyze the correction of previously defined, MYO7A-null phenotypes in the mouse retina. In vitro, defects in phagosome digestion and melanosome motility were rescued in primary cultures of RPE cells. In vivo, the normal apical location of melanosomes in RPE cells was restored, and the abnormal accumulation of opsin in the photoreceptor connecting cilium was corrected. These results demonstrate that a lentiviral vector can accommodate a large cDNA, such as MYO7A, and mediate correction of important cellular functions in the retina, a major site affected in the Usher syndrome. Therefore, a lentiviral-mediated gene replacement strategy for Usher 1B therapy in the retina appears feasible."	"Roles and interactions of usher 1 proteins in the outer retina. Our studies demonstrate that harmonin and myosin VIIa are not localized in the same compartments in the mouse and human retinas, indicating that they do not interact in this organ, contrary to what has been shown in the inner ear. The enrichment of harmonin in the photoreceptor synapses indicates that this protein may form multiple complexes with others to maintain the synaptic structure or to mediate in the release of synaptic vesicles."	"A novel locus for autosomal recessive nonsyndromic hearing impairment, DFNB63, maps to chromosome 11q13.2-q13.4. Hereditary hearing impairment is a genetically heterogeneous disorder. To date, 49 autosomal recessive nonsyndromic hearing impairment (ARNSHI) loci have been described, and there are more than 16 additional loci announced. In 25 of the known loci, causative genes have been identified. A genome scan and fine mapping revealed a novel locus for ARNSHI (DFNB63) on chromosome 11q13.2-q13.4 in a five-generation Turkish family (TR57). The homozygous linkage interval is flanked by the markers D11S1337 and D11S2371 and spans a 5.3-Mb interval. A maximum two-point log of odds score of 6.27 at a recombination fraction of theta = 0.0 was calculated for the marker D11S4139. DFNB63 represents the eighth ARNSHI locus mapped to chromosome 11, and about 3.33 Mb separate the DFNB63 region from MYO7A (DFNB2/DFNB11). Sequencing of coding regions and exon-intron boundaries of 13 candidate genes, namely SHANK2, CTTN, TPCN2, FGF3, FGF4, FGF19, FCHSD2, PHR1, TMEM16A, RAB6A, MYEOV, P2RY2 and KIAA0280, in genomic DNA from an affected individual of family TR57 revealed no disease-causing mutations."	"Myosin VI and VIIa distribution among inner ear epithelia in diverse fishes. Unconventional myosins are critical motor proteins in the vertebrate inner ear. Mutations in any one of at least six different myosins can lead to human hereditary deafness, but the precise functions of these proteins in the ear are unknown. This study uses a comparative approach to better understand the role of myosins VI and VIIa in vertebrate ears by examining protein distribution for these two myosins in the ears of evolutionarily diverse fishes and the aquatic clawed toad Xenopus laevis. Both myosins are expressed in the inner ears of all species examined in this study. Myo7a localizes to hair cells, particularly the actin-rich hair bundle, in all species studied. Myo6 also localizes to hair cells, but its distribution differs between species and end organs. Myo6 is found in hair bundles of most fish and frog epithelia examined here but not in anterior and posterior utricular hair bundles of American shad. These results show that myo7a distribution is highly conserved in diverse vertebrates and suggest functional conservation as well. The finding of myo6 in fish and Xenopus hair bundles, however, suggests a novel role for this protein in anamniotic hair cells. The lack of myo6 in specific American shad utricular hair bundles indicates a unique quality of these cells among fishes, perhaps relating to ultrasound detection capability that is found in this species."	"Localization of a novel autosomal recessive non-syndromic hearing impairment locus DFNB63 to chromosome 11q13.3-q13.4. Hereditary hearing impairment is the most genetically heterogeneous trait known in humans. So far, 50 published autosomal recessive non-syndromic hearing impairment (ARNSHI) loci have been mapped, and 23 ARNSHI genes have been identified. Here, we report the mapping of a novel ARNSHI locus, DFNB63, to chromosome 11q13.3-q13.4 in a large consanguineous Tunisian family. A maximum LOD score of 5.33 was obtained with microsatellite markers D11S916 and D11S4207. Haplotype analysis defined a 5.55 Mb critical region between microsatellite markers D11S4136 and D11S4081. DFNB63 represents the sixth ARNSHI locus mapped to chromosome 11. We positionally excluded MYO7A from being the DFNB63-causative gene. In addition, the screening of two candidate genes, SHANK2 and KCNE3, failed to reveal any disease-causing mutations."	"Two Finnish USH1B patients with three novel mutations in myosin VIIA. Usher syndrome (USH) is an autosomal recessive disorder resulting in retinal degeneration and sensorineural deafness caused by mutations in at least 10 gene loci. USH is divided into three main clinical types: USH1 (33-44%), USH2 (56-67%), and USH3. Worldwide, USH1 and USH2 account for most of the Usher syndrome cases with rare occurrence of USH3. In Finland, however, USH3 is the most common type (40%), explained by genetic and geographical isolation accompanied with a founder mutation, while USH1 is estimated to comprise 34% and USH2 12% of all USH cases. We examined two unrelated Finnish USH1 patients by sequencing. We found three new myosin VIIA (MYO7A) mutations: p.K923AfsX8, p.Q1896X, and p.E1349K. The p.K923AfsX8 mutation was present in both patients as well as in one of 200 Finnish control chromosomes. This is the first molecular genetic study of USH1 in Finland. We have found three new pathological mutations causing either premature termination of translation or replacement of an evolutionary conserved MYO7A amino acid."	"Identification and characterization of mouse cochlear stem cells. Genetic, noise- and drug-induced loss of hair cells in the mouse and human cochlea leads to permanent hearing loss due to lack of regeneration of hair cells, which may be due to reduced numbers or loss of the regenerative ability of stem cells in the adult cochlea. We hypothesized that the mouse neonate cochlea harbors stem cells capable of differentiating into hair cells. Cells from the primary neonate cochlear culture began to proliferate and formed floating spheres after 14 days in vitro (DIV). By comparison, spheres from the primary culture of the cortex were observed after 7 DIV. Cochlear sphere cells could be passaged and the new spheres were observed after 7 DIV. Cochlear sphere cells were capable of differentiating into astrocytes and oligodendrocytes, but not neurons under the conditions tested. Cochlear sphere cells expressed Sox2 and Myo7a, but failed to show markers that are expressed exclusively in mature cochlear tissue, while cells from cortex spheres expressed Sox2 and Otx2, but not Myo7a. Our results show that cochleae from neonatal mice harbor cells capable of forming spheres and cells from these spheres appear to be better endowed to become hair cells."	"Distinct population of hair cell progenitors can be isolated from the postnatal mouse cochlea using side population analysis. In mammals, the permanence of hearing loss is due mostly to the incapacity of the cochlea to replace lost mechano-receptor cells (i.e., hair cells [HCs]). The generation of new HCs from a renewable source of progenitors is a principal requirement for developing a cell therapy within this sensory organ. A subset of stem cells, termed side population (SP), has been identified in several tissues of mammals. The ATP-binding cassette transporter Abcg2/Bcrp1 contributes to the specification of the SP phenotype and is proposed as a universal marker for stem/progenitor cells. A defining character of these SP cells is a high efflux capacity for Hoechst dye. Here, we demonstrate that Abcg2 transporter is expressed with two other stem/progenitor cell markers (i.e., Nestin and Musashi1) in distinct and overlapping domains of the supporting cells within the postnatal cochlea. We have developed and describe a fluorescence-activated cell sorting (FACS) technique that enables the purification of a discrete subpopulation of SP-supporting cells from the early postnatal mouse cochlea based on their ability to exclude Hoechst dye. These FACS-isolated cells can divide and express markers of stem/progenitor cells such as Abcg2, a determinant of the SP phenotype, and Musashi1, a neural stem/progenitor cell marker. These markers can differentiate cells expressing markers of HCs and supporting cells in vitro. Our observation that these SP cells are capable of differentiating into HC-like cells implies a possible use for such cells (i.e., the replacement of lost auditory HCs within damaged cochlea)."	"Characterization of proliferating cells from newborn mouse cochleae. Loss of hair cells in mammals including human beings causes permanent hearing loss because the cochlea cannot regenerate hair cells spontaneously. Here we show that the newborn mouse cochleae contain sphere-forming cells that have the capacity for proliferation in culture, differentiating to form cells that express hair cell markers. When treated with epidermal growth factor or basic fibroblast growth factor, the number of spheres formed increases. The sphere cells express genes that are indicative of inner ear progenitor cells. After differentiation, some sphere cells grow a hair cell bundle-like structure that expresses hair cell marker myosin VIIA and espin. The sphere-forming cells being capable of differentiating into hair cell-like cells implies the possibility of using these sphere-forming cells for reconstructing the damaged cochlear hair cells."	"Survey of the frequency of USH1 gene mutations in a cohort of Usher patients shows the importance of cadherin 23 and protocadherin 15 genes and establishes a detection rate of above 90%. Usher syndrome, a devastating recessive disorder which combines hearing loss with retinitis pigmentosa, is clinically and genetically heterogeneous. Usher syndrome type 1 (USH1) is the most severe form, characterised by profound congenital hearing loss and vestibular dysfunction. To describe an efficient protocol which has identified the mutated gene in more than 90% of a cohort of patients currently living in France. The five genes currently known to cause USH1 (MYO7A, USH1C, CDH23, PCDH15, and USH1G) were tested for. Disease causing mutations were identified in 31 of the 34 families referred: 17 in MYO7A, 6 in CDH23, 6 in PCDH15, and 2 in USH1C. As mutations in genes other than myosin VIIA form nearly 50% of the total, this shows that a comprehensive approach to sequencing is required. Twenty nine of the 46 identified mutations were novel. In view of the complexity of the genes involved, and to minimise sequencing, a protocol for efficient testing of samples was developed. This includes a preliminary linkage and haplotype analysis to indicate which genes to target. It proved very useful and demonstrated consanguinity in several unsuspected cases. In contrast to CDH23 and PCDH15, where most of the changes are truncating mutations, myosin VIIA has both nonsense and missense mutations. Methods for deciding whether a missense mutation is pathogenic are discussed. Diagnostic testing for USH1 is feasible with a high rate of detection and can be made more efficient by selecting a candidate gene by preliminary linkage and haplotype analysis."	"Cochleovestibular and ocular features in a Dutch DFNA11 family. To report hearing impairment and vestibular and ocular features in a Dutch DFNA11 family and to compare these results to reported data on three other DFNA11 families. Family study. Regression analysis was performed in relation to age to outline the development of hearing thresholds and speech recognition scores. Vestibular and ocular functions were examined. First symptoms of hearing impairment started between the ages of 4 and 43 years. Most of the audiograms were symmetric and flat or downsloping. The annual threshold deterioration increased from 0.2 to 2.6 dB per year at 0.25 to 8 kHz in the longitudinal analyses and in the cross-sectional analysis from 0.3 to 0.9 dB per year. The speech recognition score was quite good, deteriorating by 0.9% per year from a 90% score at the age of 36 years onward. Remarkably, extensive ocular examination including corrected visual acuity and refraction measurements, slit-lamp examination, ophthalmoscopy, Goldmann perimetry, electroretinography and electro-oculography revealed signs of subclinical retinal dysfunction. None of the patients showed the classic triad of retinitis pigmentosa. Pure-tone thresholds, phoneme recognition scores, and vestibular responses of the mutation carriers were fairly similar to previously described DFNA11 families. Even though the diverse mutations are located in different regions of the myosin VIIa gene, the cochleovestibular phenotype is fairly similar in all DFNA11 families. Surprisingly, only in this family was subclinical retinal dysfunction detected."	"Molecular basis of human Usher syndrome: deciphering the meshes of the Usher protein network provides insights into the pathomechanisms of the Usher disease. Usher syndrome (USH) is the most frequent cause of combined deaf-blindness in man. It is clinically and genetically heterogeneous and at least 12 chromosomal loci are assigned to three clinical USH types, namely USH1A-G, USH2A-C, USH3A (Davenport, S.L.H., Omenn, G.S., 1977. The heterogeneity of Usher syndrome. Vth Int. Conf. Birth Defects, Montreal; Petit, C., 2001. Usher syndrome: from genetics to pathogenesis. Annu. Rev. Genomics Hum. Genet. 2, 271-297). Mutations in USH type 1 genes cause the most severe form of USH. In USH1 patients, congenital deafness is combined with a pre-pubertal onset of retinitis pigmentosa (RP) and severe vestibular dysfunctions. Those with USH2 have moderate to severe congenital hearing loss, non-vestibular dysfunction and a later onset of RP. USH3 is characterized by variable RP and vestibular dysfunction combined with progressive hearing loss. The gene products of eight identified USH genes belong to different protein classes and families. There are five known USH1 molecules: the molecular motor myosin VIIa (USH1B); the two cell-cell adhesion cadherin proteins, cadherin 23 (USH1D) and protocadherin 15, (USH1F) and the scaffold proteins, harmonin (USH1C) and SANS (USH1G). In addition, two USH2 genes and one USH3A gene have been identified. The two USH2 genes code for the transmembrane protein USH2A, also termed USH2A (&quot;usherin&quot;) and the G-protein-coupled 7-transmembrane receptor VLGR1b (USH2C), respectively, whereas the USH3A gene encodes clarin-1, a member of the clarin family which exhibits 4-transmembrane domains. Molecular analysis of USH1 protein function revealed that all five USH1 proteins are integrated into a protein network via binding to PDZ domains in the USH1C protein harmonin. Furthermore, this scaffold function of harmonin is supported by the USH1G protein SANS. Recently, we have shown that the USH2 proteins USH2A and VLGR1b as well as the candidate for USH2B, the sodium bicarbonate co-transporter NBC3, are also integrated into this USH protein network. In the inner ear, these interactions are essential for the differentiation of hair cell stereocilia but may also participate in the mechano-electrical signal transduction and the synaptic function of maturated hair cells. In the retina, the co-expression of all USH1 and USH2 proteins at the synapse of photoreceptor cells indicates that they are organized in an USH protein network there. The identification of the USH protein network indicates a common pathophysiological pathway in USH. Dysfunction or absence of any of the molecules in the mutual &quot;interactome&quot; related to the USH disease may lead to disruption of the network causing senso-neuronal degeneration in the inner ear and the retina, the clinical symptoms of USH."	"Gene expression analysis of distinct populations of cells isolated from mouse and human inner ear FFPE tissue using laser capture microdissection--a technical report based on preliminary findings. Laser Capture Microdissection (LCM) allows microscopic procurement of specific cell types from tissue sections that can then be used for gene expression analysis. We first tested this method with sections of adult mouse inner ears and subsequently applied it to human inner ear sections. The morphology of the various cell types within the inner ear is well preserved in formalin fixed paraffin embedded (FFPE) sections, making it easier to identify cell types and their boundaries. Recovery of good quality RNA from FFPE sections can be challenging, however, recent studies in cancer research demonstrated that it is possible to carry out gene expression analysis of FFPE material. Thus, a method developed using mouse FFPE tissue can be applied to human archival temporal bones. This is important because the majority of human temporal bone banks have specimens preserved in formalin and a technique for retrospective analysis of human archival ear tissue is needed. We used mouse FFPE inner ear sections to procure distinct populations of cells from the various functional domains (organ of Corti, spiral ganglion, etc.) by LCM. RNA was extracted from captured cells, amplified, and assessed for quality. Expression of selected genes was tested by RT-PCR. In addition to housekeeping genes, we were able to detect cell type specific markers, such as Myosin 7a, p27(kip1) and neurofilament gene transcripts that confirmed the likely composition of cells in the sample. We also tested the method described above on FFPE sections from human crista ampullaris. These sections were approximately a year old. Populations of cells from the epithelium and stroma were collected and analyzed independently for gene expression. The method described here has potential use in many areas of hearing research. For example, following exposure to noise, ototoxic drugs or age, it would be highly desirable to analyze gene expression profiles of selected populations of cells within the organ of Corti or spiral ganglion cells rather than a mixed population of cells from whole inner ear tissue. Also, this method can be applied for analysis of human archival ear tissue."	"The molecular regulation of organelle transport in mammalian retinal pigment epithelial cells. Retinal pigment epithelial cells contain large numbers of melanosomes that can enter the apical processes extending between the outer segments of the overlying photoreceptors. Every day the distal portion of the photoreceptor outer segment is shed and phagocytosed by the retinal pigment epithelial cell. The phagosome is then transported into the cell body and the contents degraded by lysosomal enzymes. This review focuses on recent progress made in the identification of molecules that regulate the transport of melanosomes into the apical processes and the transport of phagosomes into the cell body. Myosin VIIa is a key player in both processes and, at least in the case of melanosome movement, myosin VIIa is recruited to the melanosome via the GTPase, Rab27a. The possible role played by defects in the transport of melanosomes and phagosomes in the development of retinal degenerative diseases is discussed."	"Physical and functional interaction between protocadherin 15 and myosin VIIa in mechanosensory hair cells. Hair cells of the mammalian inner ear are the mechanoreceptors that convert sound-induced vibrations into electrical signals. The molecular mechanisms that regulate the development and function of the mechanically sensitive organelle of hair cells, the hair bundle, are poorly defined. We link here two gene products that have been associated with deafness and hair bundle defects, protocadherin 15 (PCDH15) and myosin VIIa (MYO7A), into a common pathway. We show that PCDH15 binds to MYO7A and that both proteins are expressed in an overlapping pattern in hair bundles. PCDH15 localization is perturbed in MYO7A-deficient mice, whereas MYO7A localization is perturbed in PCDH15-deficient mice. Like MYO7A, PCDH15 is critical for the development of hair bundles in cochlear and vestibular hair cells, controlling hair bundle morphogenesis and polarity. Cochlear and vestibular hair cells from PCDH15-deficient mice also show defects in mechanotransduction. Together, our findings suggest that PCDH15 and MYO7A cooperate to regulate the development and function of the mechanically sensitive hair bundle."	"Identification and biochemical analysis of Slac2-c/MyRIP as a Rab27A-, myosin Va/VIIa-, and actin-binding protein. Slac2-c/MyRIP is a specific Rab27A-binding protein that contains an N-terminal synaptotagmin-like protein (Slp) homology domain (SHD, a newly identified GTP-Rab27A-binding motif), but in contrast to the Slp family proteins, it lacks C-terminal tandem C2 domains. In vitro Slac2-c simultaneously directly interacts with both Rab27A and an actin-based motor protein, myosin Va, via its N-terminal SHD and middle region, respectively, consistent with the fact that the overall structure of Slac2-c is similar to that of Slac2-a/melanophilin, a linker protein between Rab27A and myosin Va in the melanosome transport in melanocytes. Unlike Slac2-a, however, the middle region of Slac2-c interacts with two types of myosins, myosin Va and myosin VIIa. In addition, the most C-terminal part of both Slac2-a and Slac2-c functions as an actin-binding domain: it directly interacts with globular and fibrous actin in vitro, and the actin-binding domain of Slac2-a and Slac2-c colocalizes with actin filaments when it is expressed in living cells (i.e., PC12 cells and mouse melanocytes). In this chapter we describe the methods that have been used to analyze the protein-protein interactions of Slac2-c, specifically with Rab27A, myosin Va/VIIa, and actin."	"Mutation profile of the MYO7A gene in Spanish patients with Usher syndrome type I. Usher syndrome type I is the most severe form of Usher syndrome. It is an autosomal recessive disorder characterized by profound congenital sensorineural deafness, retinitis pigmentosa, and vestibular abnormalities. Mutations in the myosin VIIA gene (MYO7A) are responsible for Usher syndrome type 1B (USH1B). This gene is thought to bear greatest responsibility for USH1 and, depending on the study, has been reported to account for between 24% and 59% of USH1 cases. In this report a mutation screening of the MYO7A gene was carried out in a series of 48 unrelated USH1 families using single strand conformation polymorphism analysis (SSCP) and direct sequencing of those fragments showed an abnormal electrophoretic pattern. Twenty-five mutations were identified in 23 out of the 48 families studied (47.9%). Twelve of these mutations were novel, including five missense mutations, three premature stop codons, three frameshift, and one putative splice-site mutation. Based on our results we can conclude there is an absence of hot spot mutations in the MYO7A gene and that this gene plays a major role in Usher syndrome."	"Identification of a novel mutation in the myosin VIIA motor domain in a family with autosomal dominant hearing loss (DFNA11). We ascertained a large Italian family with an autosomal dominant form of non-syndromic sensorineural hearing loss with vestibular involvement. A genome-wide scan found linkage to locus DFNA11. Sequencing of the MYO7A gene in the linked region identified a new missense mutation resulting in an Ala230Val change in the motor domain of the myosin VIIA. Myosin VIIA has already been implicated in several forms of deafness, but this is the third mutation causing a dominant form of deafness, located in the myosin VIIA motor domain in a region never involved in hearing loss until now. A modelled protein structure of myosin VII motor domain provides evidence for a significant functional effect of this missense mutation."	"Drosophila myosin VIIA is a high duty ratio motor with a unique kinetic mechanism. Mutations of myosin VIIA cause deafness in various species from human and mice to Zebrafish and Drosophila. We analyzed the kinetic mechanism of the ATPase cycle of Drosophila myosin VIIA by using a single-headed construct with the entire neck domain. The steady-state ATPase activity (0.06 s(-1)) was markedly activated by actin to yield V(max) and K(ATPase) of 1.72 s(-1) and 3.2 microm, respectively. The most intriguing finding is that the ATP hydrolysis predominantly takes place in the actin-bound form (actin-attached hydrolysis) for the actomyosin VIIA ATPase reaction. The ATP hydrolysis rate was much faster for the actin-attached form than the dissociated form, in contrast to other myosins reported so far. Both the ATP hydrolysis step and the phosphate release step were significantly faster than the entire ATPase cycle rate, thus not rate-determining. The rate of ADP dissociation from actomyosin VIIA was 1.86 s(-1), which was comparable with the overall ATPase cycle rate, thus assigned to be a rate-determining step. The results suggest that Drosophila myosin VIIA spends the majority of the ATPase cycle in an actomyosin.ADP form, a strong actin binding state. The duty ratio calculated from our kinetic model was approximately 0.9. Therefore, myosin VIIA is classified to be a high duty ratio motor. The present results suggested that myosin VIIA can be a processive motor to serve cargo trafficking in cells once it forms a dimer structure."	"USH1A: chronicle of a slow death. NA"	"A conserved role for myosin VII in adhesion. The class VII myosins (M7) are expressed in a wide range of organisms. M7 mutants in mice, zebrafish and Dictyostelium exhibit phenotypes that reveal a role for M7 in adhesion in these highly divergent systems, suggesting a basic conservation of M7 function throughout evolution. M7s are characterized by the presence of two FERM domains in their C-terminal tail region, and deletion of either from the Dictyostelium M7 (DdM7) tail results in loss of function without affecting localization. A search for DdM7 binding partners has revealed that talin, an actin-binding protein that provides a key link between adhesion receptors and the actin cytoskeleton, interacts directly with DdM7. The phenotypes of the DdM7 and talin null mutants are highly similar, suggesting that these two proteins work co-operatively to maintain cell-cell and cell-surface contact and that this interaction may also be conserved throughout evolution."	"Inhibition of Notch/RBP-J signaling induces hair cell formation in neonate mouse cochleas. Mammalian inner ear hair cells in cochleas are believed to be incapable of regeneration after birth, which hampers treatment of sensorineural hearing impairment mainly caused by hair cell loss. Sensory epithelia of cochleas are composed of hair cells and supporting cells, both of which originate from common progenitors. Notch/RBP-J signaling is an evolutionally conserved pathway involved in specification of various cell types in developmental stage and even in some of postnatal mammalian organs. The specification of hair cell fate from the progenitors is inhibited by Notch/RBP-J signaling in embryonic inner ears. However, its function in postnatal inner ears is unknown. We showed that inhibition of Notch/RBP-J signaling, by either conditional disruption of the Rbpsuh gene or treatment with a gamma-secretase inhibitor, could give rise to ectopic hair cells in the supporting cell region in organs of Corti from neonatal mouse cochleas where hair cells have not been considered to regenerate after birth. We also showed that down-regulation of Hes5 and up-regulation of Math1 were associated with ectopic hair cell induction. These results suggest that Notch/RBP-J signaling inhibits supporting cells from differentiation into hair cells even in postnatal days, implying that inhibitors of Notch/RBP-J signaling can be used to help regenerating hair cells after birth and thus serve for potential treatment of intractable sensorineural hearing impairment caused by hair cell loss without genetical manipulation."	"[Usher syndrome: an example of genetic heterogeneity]. Usher syndrome includes hereditary pathologies characterized by bilateral sensorineural deafness and visual impairment due to retinitis pigmentosa. Clinically, there are three distinct subtypes referred to as USH1, USH2, and USH3. Each subtype is genetically heterogeneous. Eleven different genes are implicated in the pathology; most of them are also implicated in isolated auditory or visual pathologies. MYO7A is responsible of 75% of the USH1 cases and Usherin is responsible of 82% of USH2A patients. The proteins have direct interactions with each other, are expressed in cochlea and retina and perform an essential role in stereocilia homeostasis. From 1995 we approach the study of Usher syndrome in Spain from different points of view: epidemiological, clinic, genetic and molecular. This study will provide additional insight into the pathogenic process involved in Usher syndrome, prognosis factors, and guide to the search for targeted therapies."	"Vertebrate myosin VIIb is a high duty ratio motor adapted for generating and maintaining tension. Kinetic adaptation of muscle and non-muscle myosins plays a central role in defining the unique cellular functions of these molecular motor enzymes. The unconventional vertebrate class VII myosin, myosin VIIb, is highly expressed in polarized cells and localizes to highly ordered actin filament bundles such as those found in the microvilli of the intestinal brush border and kidney. We have cloned mouse myosin VIIb from a cDNA library, expressed and purified the catalytic motor domain, and characterized its actin-activated ATPase cycle using quantitative equilibrium and kinetic methods. The myosin VIIb steady-state ATPase activity is slow (approximately 1 s(-1)), activated by very low actin filament concentrations (K(ATPase) approximately 0.7 microm), and limited by ADP release from actomyosin. The slow ADP dissociation rate constant generates a long lifetime of the strong binding actomyosin.ADP states. ADP and actin binding is uncoupled, which enables myosin VIIb to remain strongly bound to actin and ADP at very low actin concentrations. In the presence of 2 mm ATP and 2 microm actin, the duty ratio of myosin VIIb is approximately 0.8. The enzymatic properties of actomyosin VIIb are suited for generating and maintaining tension and favor a role for myosin VIIb in anchoring membrane surface receptors to the actin cytoskeleton. Given the high conservation of vertebrate class VII myosins, deafness phenotypes arising from disruption of normal myosin VIIa function are likely to reflect a loss of tension in the stereocilia of inner ear hair cells."	"Estimation of the frequency of occult mutations for an autosomal recessive disease in the presence of genetic heterogeneity: application to genetic hearing loss disorders. The routine testing for pathologic mutation(s) in a patient's DNA has become the foundation of modern molecular genetic diagnosis. It is especially valuable when the phenotype shows genetic heterogeneity, and its importance will grow as treatments become genotype specific. However, the technology of mutation detection is imperfect and mutations are often missed. This can be especially troublesome when dealing with a recessive disorder where the combination of genetic heterogeneity and missed mutation creates an imprecision in the genotypic assessment of individuals who do not appear to have the expected complement of two pathologic mutations. This article describes a statistical approach to the estimation of the likelihood of a genetic diagnosis under these conditions. In addition to providing a means of testing for missed mutations, it also provides a method of estimating and testing for the presence of genetic heterogeneity in the absence of linkage data. Gene frequencies as well as estimates of sensitivity and specificity can be obtained as well. The test is applied to GJB2 recessive nonsyndromic deafness, Usher syndrome types Ib and IIa, and Pendred-enlarged vestibular aqueduct syndrome."	"Neural connections between embryonic stem cell-derived neurons and vestibular hair cells in vitro. This study aimed to examine the potential of embryonic stem cell (ESC)-derived neural progenitors for restoration of the neural network in the peripheral vestibular system. Mouse ESC-derived neural progenitors were co-cultured with explants of vestibular sensory epithelia from neonatal mice. Histological analyses demonstrated that ESC-derived neurons substantially elongated their neurites towards vestibular hair cells, and attached to hair cells at the regions corresponding to the location of nerve endings in normal vestibular epithelia. Immunoreactivity for synaptophysin, a marker for synaptic vesicles, was present only in the cytoplasm of hair cells in sensory epithelia cultured alone, while the nerve endings of ESC-derived neurons attached to hair cells exhibited intense immunoreactivity for synaptophysin and some hair cells were moderately reactive in co-cultured specimens. The pattern of synaptophysin expression in co-cultured specimens was very similar to that observed in developing sensory epithelia, in which synaptic connections between hair cells and nerve endings are actively formed. These findings indicate that ESC-derived neurons have the potential to restore neural connections in the peripheral vestibular system."	"The unconventional myosin-VIIa associates with lysosomes. Mutations in the myosin-VIIa (MYO7a) gene cause human Usher disease, characterized by hearing impairment and progressive retinal degeneration. In the retina, myosin-VIIa is highly expressed in the retinal pigment epithelium, where it plays a role in the positioning of melanosomes and other digestion organelles. Using a human cultured retinal pigmented epithelia cell line, ARPE-19, as a model system, we have found that a population of myosin-VIIa is associated with cathepsin D- and Rab7-positive lysosomes. Association of myosin-VIIa with lysosomes was Rab7 independent, as dominant negative and dominant active versions of Rab7 did not disrupt myosin-VIIa recruitment to lysosomes. Association of myosin-VIIa with lysosomes was also independent of the actin and microtubule cytoskeleton. Myosin-VIIa copurified with lysosomes on density gradients, and fractionation and extraction experiments suggested that it was tightly associated with the lysosome surface. These studies suggest that myosin-VIIa is a lysosome motor."	"PHR1, an integral membrane protein of the inner ear sensory cells, directly interacts with myosin 1c and myosin VIIa. By using the yeast two-hybrid technique, we identified a candidate protein ligand of the myosin 1c tail, PHR1, and found that this protein can also bind to the myosin VIIa tail. PHR1 is an integral membrane protein that contains a pleckstrin homology (PH) domain. Myosin 1c and myosin VIIa are two unconventional myosins present in the inner ear sensory cells. We showed that PHR1 immunoprecipitates with either myosin tail by using protein extracts from cotransfected HEK293 cells. In vitro binding assays confirmed that PHR1 directly interacts with these two myosins. In both cases the binding involves the PH domain. In vitro interactions between PHR1 and the myosin tails were not affected by the presence or absence of Ca2+ and calmodulin. Finally, we found that PHR1 is able to dimerise. As PHR1 is expressed in the vestibular and cochlear sensory cells, its direct interactions with the myosin 1c and VIIa tails are likely to play a role in anchoring the actin cytoskeleton to the plasma membrane of these cells. Moreover, as both myosins have been implicated in the mechanotransduction slow adaptation process that takes place in the hair bundles, we propose that PHR1 is also involved in this process."	"Identification of a rat model for usher syndrome type 1B by N-ethyl-N-nitrosourea mutagenesis-driven forward genetics. The rat is the most extensively studied model organism and is broadly used in biomedical research. Current rat disease models are selected from existing strains and their number is thereby limited by the degree of naturally occurring variation or spontaneous mutations. We have used ENU mutagenesis to increase genetic variation in laboratory rats and identified a recessive mutant, named tornado, showing aberrant circling behavior, hyperactivity, and stereotypic head shaking. More detailed analysis revealed profound deafness due to disorganization and degeneration of the organ of Corti that already manifests at the onset of hearing. We set up a single nucleotide polymorphism (SNP)-based mapping strategy to identify the affected gene, revealing strong linkage to the central region of chromosome 1. Candidate gene resequencing identified a point mutation that introduces a premature stopcodon in Myo7a. Mutations in human MYO7A result in Usher syndrome type 1B, a severe autosomal inherited recessive disease that involves deafness and vestibular dysfunction. Here, we present the first characterized rat model for this disease. In addition, we demonstrate proof of principle for the generation and cloning of human disease models in rat using ENU mutagenesis, providing good perspectives for systematic phenotypic screens in the rat."	"Photoreceptor expression of the Usher syndrome type 1 protein protocadherin 15 (USH1F) and its interaction with the scaffold protein harmonin (USH1C). The human Usher syndrome (USH) is the most common form of deaf-blindness. Usher type I (USH1), the most severe form, is characterized by profound congenital deafness, constant vestibular dysfunction and prepubertal onset of retinitis pigmentosa. Five corresponding genes of the seven USH1 genes have been cloned over the years. Recent studies indicated that three USH1 proteins, namely myosin VIIa (USH1B), SANS (USH1G), and cadherin 23 (USH1D) interact with the USH1C gene product harmonin. In these protein-protein complexes harmonin acts as the scaffold protein binding these USH1 molecules via its PDZ domains. The aim of the present study was to analyze whether or not the fifth identified USH1 protein protocadherin 15 (Pcdh15) also binds to harmonin and where these putative protein complexes might be localized in mammalian rod and cone photoreceptor cells. In vitro binding assays (GST pull-down, yeast two-hybrid assay) were applied. Antibodies against bacterial expressed USH1 proteins were generated. Affinity purified antibodies were used in immunoblot analyses of brain fractions and isolated retinas, in immunofluorescence studies, and in immunoelectron microscopic studies of rodent retinas. We showed that Pcdh15 (USH1F) interacted with harmonin PDZ2. Immunocytochemistry revealed that Pcdh15 is expressed in photoreceptor cells of the mammalian retina, where it is colocalized with harmonin, myosin VIIa, and cadherin 23 at the synaptic terminal. Colocalization of Pcdh15 with harmonin was found at the base of the photoreceptor outer segment, where newly synthesized disk membranes are present. Our data indicate that harmonin-Pcdh15 interactions probably play a role in disk morphogenesis. Furthermore, we provide evidence that a complex composed of all USH1 molecules may assemble at the photoreceptor synapse. This USH protein complex can contribute to the cortical cytoskeletal matrices of the pre- and postsynaptic regions, which are thought to play a fundamental role in the structural and functional organization of the synaptic junction. Defects in any of the USH1-complex partners may result in photoreceptor dysfunction causing retinitis pigmentosa, the clinical phenotype in the retina of USH1 patients."	"Functional analysis of Slac2-c/MyRIP as a linker protein between melanosomes and myosin VIIa. Slac2-c/MyRIP, an in vitro Rab27A- and myosin Va/VIIa-binding protein, has recently been proposed to regulate retinal melanosome transport in retinal pigment epithelium cells by directly linking melanosome-bound Rab27A and myosin VIIa; however, the exact function of Slac2-c in melanosome transport has never been clarified. In this study, we used melanosome transport in skin melanocytes as a model for retinal melanosome transport and analyzed the in vivo function of Slac2-c in melanosome transport by the ectopic expression of Slac2-c, together with myosin VIIa, in Slac2-a-depleted melanocytes. In vitro binding experiments revealed that myosin VIIa had a greater affinity for Slac2-c, compared with the binding affinity of myosin Va, and that the myosin VIIa-binding domain of Slac2-c is different from the previously characterized myosin Va-binding domain that is conserved between Slac2-a/melanophilin and Slac2-c. Consistent with this result, cyan fluorescent protein-tagged Slac2-c expressed in melanocytes was localized on melanosomes via the specific interaction with Rab27A and recruited co-expressed yellow fluorescent protein-tagged myosin VIIa to the melanosomes without interfering with the normal peripheral melanosome distribution, whereas when myosin VIIa alone was expressed in melanocytes, it was not localized on the melanosomes. Moreover, Slac2-c ectopically expressed in melanocytes did not rescue the perinuclear aggregation phenotype induced by the knockdown of endogenous Slac2-a with a specific small interfering RNA, whereas the expression of the Slac2-c x myosin VIIa complex supported the normal melanosome distribution in Slac2-a-depleted melanocytes, indicating that Slac2-c functions as a myosin VIIa receptor rather than a myosin Va receptor in melanosome transport. Based on these findings, we propose that Slac2-c acts as a functional myosin VIIa receptor and that the Rab27A.Slac2-c x myosin VIIa tripartite protein complex regulates the transport of retinal melanosomes in pigment epithelium cells."	"Innervation of stem cell-derived neurons into auditory epithelia of mice. This study examined the potential of embryonic stem cell-derived neurons as transplants for cell therapy for the primary loss of spiral ganglion neurons. To assess the ability of embryonic stem cell-derived neurons for innervation into auditory epithelia, they were cocultured with auditory epithelium explants of mice for 7 days. Histological analysis demonstrated massive elongation of neurites from embryonic stem cell-derived neurons toward auditory hair cells. Embryonic stem cell-derived neurites were adjacent to or surrounding hair cells, and exhibited expression of synaptophysin, a marker for synaptic vesicles. These findings demonstrate the ability of embryonic stem cell-derived neurons for reinnervation into auditory epithelia, indicating a high potential of embryonic stem cell-derived neurons as transplants for replacing spiral ganglion neurons."	"Myosin VIIA defects, which underlie the Usher 1B syndrome in humans, lead to deafness in Drosophila. In vertebrates, auditory and vestibular transduction occurs on apical projections (stereocilia) of specialized cells (hair cells). Mutations in myosin VIIA (myoVIIA), an unconventional myosin, lead to deafness and balance anomalies in humans, mice, and zebrafish; individuals are deaf, and stereocilia are disorganized. The exact mechanism through which myoVIIA mutations result in these inner-ear anomalies is unknown. Proposed inner-ear functions for myoVIIA include anchoring transduction channels to the stereocilia membrane, trafficking stereocilia linking components, and anchoring hair cells by associating with adherens junctions. The Drosophila myoVIIA homolog is crinkled (ck). The Drosophila auditory organ, Johnston's organ (JO), is developmentally and functionally related to the vertebrate inner ear. Both derive from modified epithelial cells specified by atonal and spalt homolog expression, and both transduce acoustic mechanical energy (and references therein). Here, we show that loss of ck/myoVIIA function leads to complete deafness in Drosophila by disrupting the integrity of the scolopidia that transduce auditory signals. We demonstrate that ck/myoVIIA functions to organize the auditory organ, that it is functionally required in neuronal and support cells, that it is not required for TRPV channel localization, and that it is not essential for scolopidial-cell-junction integrity."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Novel mutations in MYO7A and USH2A in Usher syndrome. Usher syndrome is an autosomal recessive disease associating retinitis pigmentosa and neurosensory deafness. Three clinical types (USH1, USH2, USH3) and 11 mutated genes or loci have been described. Mutations in MYO7A and USH2A are responsible for about 40% and 60% of Usher syndromes type 1 and 2, respectively. These genes were screened in a series of patients suffering from Usher syndrome. We performed SSCP screening of MYO7A in 12 unrelated patients suffering from Usher syndrome type 1 (USH1) and USH2A in 28 unrelated patients affected by Usher syndrome type 2 (USH2). Six mutations in MYO7A were found in five patients, including two novel mutations c.397C &gt; G (His133Asp) and 1244-2A &gt; G (Glu459Stop), accounting for 42% of our USH1 patients. Twelve mutations in USH2A were found in 11 patients, including four new mutations c.850delGA, c.1841-2A &gt; G, c.3129insT, and c.3920C &gt; G (Ser1307Stop), accounting for 39% of our USH2 patients"	"Normal lytic granule secretion by cytotoxic T lymphocytes deficient in BLOC-1, -2 and -3 and myosins Va, VIIa and XV. Melanocytes and cells of the immune system share an unusual secretory mechanism which uses the lysosome as a regulated secretory organelle. Recently, a number of the proteins required for these 'secretory lysosomes' to undergo exocytosis have been identified. These include Rab27a, Lyst, Rab geranyl geranyl transferase and the adapter protein complex AP-3. Patients lacking any of these proteins are characterized by the rare combination of albinism and immunodeficiency, revealing roles for these proteins in both melanocyte and immune cell secretion. In order to ask how far the link between albinism and immunodeficiency extends we have examined cytotoxic T-lymphocyte (CTL) secretion from two BLOC-3-deficient patients and seven different mouse models of Hermansky-Pudlak syndrome, all of which display defects in pigmentation and platelet function. We find that CTL function is normal in HPS patients and pale-ear mice deficient in BLOC-3, pallid, muted and sandy mice deficient in BLOC-1, ruby-eye mice deficient in BLOC-2 and buff mice deficient in Vps33a. Similarly, the unconventional myosins, Va, VIIa and XV, which can act as effectors for Rab27a in some cell types, are not required in CTL. These results reveal differences in the protein machinery required for biogenesis and/or secretion of lysosome-related organelles in CTL and melanocytes."	"Assessment of differential gene expression in vestibular epithelial cell types using microarray analysis. Current global gene expression techniques allow the evaluation and comparison of the expression of thousands of genes in a single experiment, providing a tremendous amount of information. However, the data generated by these techniques are context-dependent, and minor differences in the individual biological samples, methodologies for RNA acquisition, amplification, hybridization protocol and gene chip preparation, as well as hardware and analysis software, lead to poor correlation between the results. One of the significant difficulties presently faced is the standardization of the protocols for the meaningful comparison of results. In the inner ear, the acquisition of RNA from individual cell populations remains a challenge due to the high density of the different cell types and the paucity of tissue. Consequently, laser capture microdissection was used to selectively collect individual cells and regions of cells from cristae ampullares followed by extraction of total RNA and amplification to amounts sufficient for high throughput analysis. To demonstrate hair cell-specific gene expression, myosin VIIA, calmodulin and alpha9 nicotinic acetylcholine receptor subunit mRNAs were amplified using reverse transcription-polymerase chain reaction (RT-PCR). To demonstrate supporting cell-specific gene expression, cyclin-dependent kinase inhibitor p27kip1 mRNA was amplified using RT-PCR. Subsequent experiments with alpha9 RT-PCR demonstrated phenotypic differences between type I and type II hair cells, with expression only in type II hair cells. Using the laser capture microdissection technique, microarray expression profiling demonstrated 408 genes with more than a five-fold difference in expression between the hair cells and supporting cells, of these 175 were well annotated. There were 97 annotated genes with greater than a five-fold expression difference in the hair cells relative to the supporting cells, and 78 annotated genes with greater than a five-fold expression difference in the supporting cells relative to the hair cells."	"Characterization of Usher syndrome type I gene mutations in an Usher syndrome patient population. Usher syndrome type I (USH1), the most severe form of this syndrome, is characterized by profound congenital sensorineural deafness, vestibular dysfunction, and retinitis pigmentosa. At least seven USH1 loci, USH1A-G, have been mapped to the chromosome regions 14q32, 11q13.5, 11p15, 10q21-q22, 21q21, 10q21-q22, and 17q24-25, respectively. Mutations in five genes, including MYO7A, USH1C, CDH23, PCDH15 and SANS, have been shown to be the cause of Usher syndrome type 1B, type 1C, type 1D, type 1F and type 1G, respectively. In the present study, we carried out a systematic mutation screening of these genes in USH1 patients from USA and from UK. We identified a total of 27 different mutations; of these, 19 are novel, including nine missense, two nonsense, four deletions, one insertion and three splicing defects. Approximatelly 35-39% of the observed mutations involved the USH1B and USH1D genes, followed by 11% for USH1F and 7% for USH1C in non-Acadian alleles and 7% for USH1G. Two of the 12 MYO7A mutations, R666X and IVS40-1G &gt; T accounted for 38% of the mutations at that locus. A 193delC mutation accounted for 26% of CDH23 (USH1D) mutations, confirming its high frequency. The most common PCDH15 (USH1F) mutation in this study, 5601-5603delAAC, accounts for 33% of mutant alleles. Interestingly, a novel SANS mutation, W38X, was observed only in the USA cohort. The present study suggests that mutations in MYO7A and CDH23 are the two major components of causes for USH1, while PCDH15, USH1C, and SANS are less frequent causes."	"A role for myosin VI in postsynaptic structure and glutamate receptor endocytosis. Myosin VI (Myo6) is an actin-based motor protein implicated in clathrin-mediated endocytosis in nonneuronal cells, though little is known about its function in the nervous system. Here, we find that Myo6 is highly expressed throughout the brain, localized to synapses, and enriched at the postsynaptic density. Myo6-deficient (Snell's waltzer; sv/sv) hippocampus exhibits a decrease in synapse number, abnormally short dendritic spines, and profound astrogliosis. Similarly, cultured sv/sv hippocampal neurons display decreased numbers of synapses and dendritic spines, and dominant-negative disruption of Myo6 in wild-type hippocampal neurons induces synapse loss. Importantly, we find that sv/sv hippocampal neurons display a significant deficit in the stimulation-induced internalization of alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionic acid-type glutamate receptors (AMPARs), and that Myo6 exists in a complex with the AMPAR, AP-2, and SAP97 in brain. These results suggest that Myo6 plays a role in the clathrin-mediated endocytosis of AMPARs, and that its loss leads to alterations in synaptic structure and astrogliosis."	"Genetic analysis of a four generation Indian family with Usher syndrome: a novel insertion mutation in MYO7A. Usher syndrome (USH) is a rare autosomal recessive disorder characterized by deafness and retinitis pigmentosa. The purpose of this study was to determine the genetic cause of USH in a four generation Indian family. Peripheral blood samples were collected from individuals for genomic DNA isolation. To determine the linkage of this family to known USH loci, microsatellite markers were selected from the candidate regions of known loci and used to genotype the family. Exon specific intronic primers for the MYO7A gene were used to amplify DNA samples from one affected individual from the family. PCR products were subsequently sequenced to detect mutation. PCR-SSCP analysis was used to determine if the mutation segregated with the disease in the family and was not present in 50 control individuals. All affected individuals had a classic USH type I (USH1) phenotype which included deafness, vestibular dysfunction and retinitis pigmentosa. Pedigree analysis suggested an autosomal recessive mode of inheritance of USH in the family. Haplotype analysis suggested linkage of this family to the USH1B locus on chromosome 11q. DNA sequence analysis of the entire coding region of the MYO7A gene showed a novel insertion mutation c.2663_2664insA in a homozygous state in all affected individuals, resulting in truncation of MYO7A protein. This is the first study from India which reports a novel MYO7A insertion mutation in a four generation USH family. The mutation is predicted to produce a truncated MYO7A protein. With the novel mutation reported here, the total number of USH causing mutations in the MYO7A gene described to date reaches to 75."	"Interactions in the network of Usher syndrome type 1 proteins. Defects in myosin VIIa, harmonin (a PDZ domain protein), cadherin 23, protocadherin 15 and sans (a putative scaffolding protein), underlie five forms of Usher syndrome type I (USH1). Mouse mutants for all these proteins exhibit disorganization of their hair bundle, which is the mechanotransduction receptive structure of the inner ear sensory cells, the cochlear and vestibular hair cells. We have previously demonstrated that harmonin interacts with cadherin 23 and myosin VIIa. Here we address the extent of interactions between the five known USH1 proteins. We establish the previously suggested sans-harmonin interaction and find that sans also binds to myosin VIIa. We show that sans can form homomeric structures and that harmonin b can interact with all harmonin isoforms. We reveal that harmonin also binds to protocadherin 15. Molecular characterization of these interactions indicates that through its binding to four of the five USH1 proteins, the first PDZ domain (PDZ1) of harmonin plays a central role in this network. We localize sans in the apical region of cochlear and vestibular hair cell bodies underneath the cuticular plate. In contrast to the other four known USH1 proteins, no sans labeling was detected within the stereocilia. We propose that via its binding to myosin VIIa and/or harmonin, sans controls the hair bundle cohesion and proper development by regulating the traffic of USH1 proteins en route to the stereocilia."	"Role of myosin VIIa and Rab27a in the motility and localization of RPE melanosomes. Myosin VIIa functions in the outer retina, and loss of this function causes human blindness in Usher syndrome type 1B (USH1B). In mice with mutant Myo7a, melanosomes in the retinal pigmented epithelium (RPE) are distributed abnormally. In this investigation we detected many proteins in RPE cells that could potentially participate in melanosome transport, but of those tested, only myosin VIIa and Rab27a were found to be required for normal distribution. Two other expressed proteins, melanophilin and myosin Va, both of which are required for normal melanosome distribution in melanocytes, were not required in RPE, despite the association of myosin Va with the RPE melanosome fraction. Both myosin VIIa and myosin Va were immunodetected broadly in sections of the RPE, overlapping with a region of apical filamentous actin. Some 70-80% of the myosin VIIa in RPE cells was detected on melanosome membranes by both subcellular fractionation of RPE cells and quantitative immunoelectron microscopy, consistent with a role for myosin VIIa in melanosome motility. Time-lapse microscopy of melanosomes in primary cultures of mouse RPE cells demonstrated that the melanosomes move in a saltatory manner, interrupting slow movements with short bursts of rapid movement (&gt;1 RR01183m/second). In RPE cells from Myo7a-null mice, both the slow and rapid movements still occurred, except that more melanosomes underwent rapid movements, and each movement extended approximately five times longer (and further). Hence, our studies demonstrate the presence of many potential effectors of melanosome motility and localization in the RPE, with a specific requirement for Rab27a and myosin VIIa, which function by transporting and constraining melanosomes within a region of filamentous actin. The presence of two distinct melanosome velocities in both control and Myo7a-null RPE cells suggests the involvement of at least two motors other than myosin VIIa in melanosome motility, most probably, a microtubule motor and myosin Va."	"Temporal bone histopathology in dominantly inherited audiovestibular syndrome. To describe the clinical and pathologic features of a new dominantly inherited audiovestibular syndrome. History, examination, and audiometric testing in the proband, brother, and son; quantitative rotational testing in the proband and son; histopathology of the cochlea and vestibular labyrinth in the proband; sequencing candidate genes COCH and MYO7A in the brother and son. Affected family members developed slowly progressive hearing loss beginning in their late 30s and progressive imbalance in their early 70s. Three of four affected had brief (minutes) episodes of vertigo typically occurring a few times per year. Auditory and vestibular function testing documented a slowly progressive loss of auditory and vestibular function. Postmortem examination showed a loss of hair cells in the cochlea and vestibular receptor organs. There were no cellular infiltrates or acidophilic deposits. No mutations were found in the COCH or MYO7A genes. This dominantly inherited audiovestibular syndrome results in a selective loss of hair cells in the auditory and vestibular end organs. Finding the causative gene could have important implications for understanding the pathophysiology of presbycusis and dysequilibrium of aging."	"[An analysis of a large hereditary postlingually deaf families and detecting mutation of the deafness genes]. To make a further exploration of the mutation frequence of Chinese genetic deafness and make clear if the genetic deafness genealogy that we collected recently was resulted from the mutation of the deafness genes which had been cloned. We made regular otologic examination, hearing test and physical examination among the members of this genealogy, and also inspected the mutation of seven autosomal domiant deafness genes, HDIAI,GJB2, GJB3, DFNA5, a-tectorin(resulting in two types of genetic deafness, DFNA8 and DFNA12), MYO7A,POU4F3, with PCR-Sequencing method in this genealogy. 1. The analysis of hereditary mode: There were forty-seven persons collected in five generations of this genealogy, and eighteen persons of them were deafness. It accorded with autosomal dominant inheritance from the pedigree. 2. The clinic feature: All patients with deafness were postlingual deafness. Their hearing decreased onset between sixteen to thirty years old, and the deafness was binaural symmetrical, progressive sensorineural and without other systems abnormity. 3. Analysis of mutation detection: We found two nucleotides changes in CX26 genes, A341G and GC257-258CG, and one changed nucleotide in POU4F3 gene,T90C. But we didn't think the changed nucleotides caused deafness after we analysed them. No mutation was found in other five genes. The possibility that the deafness of this genealogy was resulted from the cloned gene is relatively small. Now, We are scanning the whole gene groups and making linkage analysis on this pedigree, it is most probably to orientate a new deafness gene position."	"A Myo7a mutation cosegregates with stereocilia defects and low-frequency hearing impairment. A phenotype-driven approach was adopted in the mouse to identify molecules involved in ear development and function. Mutant mice were obtained using N-ethyl- N-nitrosourea (ENU) mutagenesis and were screened for dominant mutations that affect hearing and/or balance. Heterozygote headbanger ( Hdb/+) mutants display classic behavior indicative of vestibular dysfunction including hyperactivity and head bobbing, and they show a Preyer reflex in response to sound but have raised cochlear thresholds especially at low frequencies. Scanning electron microscopy of the surface of the organ of Corti revealed abnormal stereocilia bundle development from an early age that was more severe in the apex than the base. Utricular stereocilia were long, thin, and wispy. Homozygotes showed a similar but more severe phenotype. The headbanger mutation has been mapped to a 1.5-cM region on mouse Chromosome 7 in the region of the unconventional myosin gene Myo7a, and mutation screening revealed an A&gt;T transversion that is predicted to cause an isoleucine-to-phenylalanine amino acid substitution (I178F) in a conserved region in the motor-encoding domain of the gene. Protein analysis revealed reduced levels of myosin VIIa expression in inner ears of headbanger mice. Headbanger represents a novel inner ear phenotype and provides a potential model for low-frequency-type human hearing loss."	"Impaired calmodulin binding of myosin-7A causes autosomal dominant hearing loss (DFNA11). Both myosin 7A (MYO7A) and calmodulin (CaM) are required for transduction and adaptation processes in inner ear hair cells. We identified a novel heterozygous missense mutation (c.2557C&gt;T; p.R853C) in a family with autosomal dominant non-syndromic hearing loss that changes an evolutionarily invariant residue of the fifth IQ motif (IQ5), a putative calmodulin (CaM) binding domain, of MYO7A. Functional effects of the p.R853C mutation were investigated in a physiological cellular environment by expressing MYO7A IQ5-containing peptides in smooth muscle cells of microarteries, in which overexpression of wildtype IQ5 (with intact calmodulin binding) would be expected to compete with myosin light chain kinase (MLCK) for CaM binding. Indeed, analysis of calmodulin-dependent vasoconstriction suggests constitutive binding of CaM to the wildtype, but not the p.R853C-mutated IQ5 motif at all physiologically relevant Ca2+ concentrations. Thus our data suggest a disturbed CaM/MYO7A binding of the p.R853C mutant, this amino acid change may result in impaired adaptation to environmental stimuli and progressive deterioration of hearing transduction in heterozygotes. A defect in CaM/MYO7A interaction represents a novel pathomechanism for genetic hearing loss. It provides an attractive molecular target for therapeutic interventions aimed to delay or prevent the onset of hearing loss in families with mutations in myosin IQ domains."	"Islet-1 expression in the developing chicken inner ear. The cell types of the inner ear originate from the otic placode, a thickened layer of ectoderm adjacent to the developing hindbrain. The placode invaginates and forms the otic pit, which pinches off as a small vesicle called the otocyst. Presumptive cochleovestibular neurons delaminate from the anterior ventral part of the otocyst and form the cochleovestibular ganglion of the inner ear. Here we show that the LIM/homeodomain protein islet-1 is expressed in cells of the ventral part of the otic placode and that this ventral expression is maintained at the otic pit and the otocyst stages. Auditory and vestibular neurons originate from this islet-1-positive zone of the otocyst, and these neurons maintain islet-1 expression until adulthood. We also demonstrate that islet-1 becomes up-regulated in the presumptive sensory epithelia of the inner ear in regions that are defined by the expression domains of BMP4. The up-regulation of islet-1 in developing inner ear hair and supporting cells is accompanied by down-regulation of Pax-2 in these cell types. Islet-1 expression in hair and supporting cells persists until early postnatal stages, when the transcriptional regulator is down-regulated in hair cells. Our data is consistent with a role for islet-1 in differentiating inner ear neurons and sensory epithelia cells, perhaps in the specification of cellular subtypes in conjunction with other LIM/homeodomain proteins."	"Clinical and genetic linkage analysis of a large Venezuelan kindred with Usher syndrome. To undertake a comprehensive investigation into the very high incidence of congenital deafness on the Macano peninsula of Margarita Island, Venezuela. Numerous visits were made to the isolated island community over a 4-year-period. During these visits, it became apparent that a significant number of individuals complained of problems with hearing and vision. Socioeconomic assessments, family pedigrees and clinical histories were recorded on standard questionnaires. All individuals underwent thorough otolaryngologic and ophthalmologic examinations. Twenty milliliters of peripheral venous blood was obtained from each participant. A genome-wide linkage analysis study was performed. Polymorphic microsatellite markers were amplified by polymerase chain reaction and separated on polyacrylamide gels. An ABI 377XL sequencer was used to separate fragments and LOD scores were calculated by using published software. Twenty-four families were identified, comprising 329 individuals, age range 1-80 years, including 184 children. All families were categorized in the lower two (least affluent) socioeconomic categories. A high incidence of consanguinity was detected. Fifteen individuals (11 adults, 4 children) had profound congenital sensorineural hearing loss, vestibular areflexia and retinitis pigmentosa. A maximum LOD score of 6.76 (Linkage &gt;3.0), between markers D11s4186 and D11s911, confirmed linkage to chromosome 11q13.5. The gene myosin VIIA (MYO7A) was confirmed in the interval. Clinical and genetic findings are consistent with a diagnosis of Usher syndrome 1B for those with hearing and vision problems. We report 15 Usher syndrome 1B individuals from a newly detected Latin American socio-demographic origin, with a very high prevalence of 76 per 100,000 population."	"Identification and molecular modelling of a mutation in the motor head domain of myosin VIIA in a family with autosomal dominant hearing impairment (DFNA11). Myosin VIIA is an unconventional myosin that has been implicated in Usher syndrome type 1B, atypical Usher syndrome, non-syndromic autosomal recessive hearing impairment (DFNB2) and autosomal dominant hearing impairment (DFNA11). Here, we present a family with non-syndromic autosomal dominant hearing impairment that clinically resembles the previously published DFNA11 family. The affected family members show a flat audiogram at young ages and only modest progression, most clearly at the high frequencies. In addition, they suffer from minor vestibular symptoms. Linkage analysis yielded a maximum two-point lodscore of 3.43 for marker D11S937 located within 1 cM of the myosin VIIA gene. The myosin VIIA gene was sequenced and 11 nucleotide variations were found. Ten nucleotide changes represent benign intronic variants, silent exon mutations or non-pathologic amino acid substitutions. One variant, a c.1373A--&gt;T transversion that is heterozygously present in all affected family members and absent in 300 healthy individuals, is predicted to result in an Asn458Ile amino acid substitution. Asn458 is located in a region of the myosin VIIA motor domain that is highly conserved in different classes of myosins and in myosins of different species. To evaluate whether the Asn458Ile mutation was indeed responsible for the hearing impairment, a molecular model of myosin VIIA was built based on the known structure of the myosin II heavy chain from Dictyostelium discoideum. In this model, conformational changes in the protein caused by the amino acid substitution Asn458Ile are predicted to disrupt ATP/ADP binding and impair the myosin power-stroke, which would have a severe effect on the function of the myosin VIIA protein."	"Mouse models for Usher syndrome 1B. Photoreceptor cell degeneration was not detected in any of the shaker1 alleles, except for a small but significant loss of photoreceptor cells found in Myo7a(4626SB/4626SB) mice that were also homozygous mutant for Cdh23v. Perhaps greater and/or faster photoreceptor cell loss that is dependent on mutant Myo7a can be effected by having additional mutant USH1 genes in the genetic background. In any case, it is argued that shaker1 mice are a useful model for testing USH1B gene therapy, due to the presence of mutant phenotypes other than photoreceptor cell death."	"The cellular function of the usher gene product myosin VIIa is specified by its ligands. NA"	"Round window gentamicin application: an inner ear hair cell damage protocol for the mouse. It is important to develop an inner ear damage protocol for mice that avoids systemic toxicity and produces damage in a relatively rapid fashion, allowing for study of early cellular and molecular mechanisms responsible for hair cell death and those that underlie the lack of hair cell regeneration in mammals. Ideally, this damage protocol would reliably produce both partial and complete lesions of the sensory epithelium. We present a method for in vivo induction of hair cell damage in the mouse via placement of gentamicin-soaked Gelfoam in the round window niche of the inner ear, an adaptation of a method developed to study hair cell regeneration in chicks. A total of 82 subjects underwent the procedure. Variable doses of gentamicin were used (25, 50, 100 and 200 microg). Saline-soaked Gelfoam, sham-operations and the contralateral, non-operated cochlea were used as controls. Survival periods were 1, 3 and 14 days. Damage was assessed on scanning electron microscopy. We found that this method produces relatively rapid hair cell damage that varies with dose and can extend the entire length of the sensory epithelium. In addition, this protocol produces no systemic toxicity and preserves the contralateral ear as a control."	"Modifier controls severity of a novel dominant low-frequency MyosinVIIA (MYO7A) auditory mutation. NA"	"Unconventional myosin VIIa and vezatin, two proteins crucial for Listeria entry into epithelial cells. Listeria monocytogenes is a bacterial pathogen with the capacity to invade non-phagocytic cells. This dynamic process involves coordinated membrane remodelling and actin cytoskeleton rearrangements. Although some of the molecular factors promoting these events have been identified, the driving force allowing internalization is unknown. One of the receptors for L. monocytogenes on epithelial cells is E-cadherin, a transmembrane protein normally involved in homophilic interactions that allow cell-cell contacts at the adherens junctions. E-cadherin has to be connected to the actin cytoskeleton to mediate strong cell-cell adhesion and to trigger Listeria entry; alpha- and beta-catenins play key roles in these processes. We have recently identified an unconventional myosin, myosin VIIa and its ligand vezatin, at the adherens junctions of polarized epithelial cells. Here, we demonstrate by pharmacological and genetic approaches that both myosin VIIa and vezatin are crucial for Listeria internalization. These results provide the first evidence for the role of an unconventional myosin in bacterial internalization and a novel example of the exploitation of mammalian proteins, by a pathogen, to establish a successful infection."	"Generation of inner ear hair cell immunophenotypes from neurospheres obtained from fetal rat central nervous system in vitro. Neural stem cells are suggested to possess a highly plastic ability to differentiate into several specific cell types, not only neuronal lineages but also other germ layer tissue-specific cell lineages. To examine whether hair cell immunophenotypes could be derived from the central nervous system (CNS), we established cell cultures from embryonic day 16.5 fetal rat brain tissues, and analyzed changes in immunohistochemical features of the CNS cell cultures by induction of differentiation. The results of this study showed that neural progenitors obtained from fetal rat CNS generated hair cell immunophenotypes with expression of both epitopes of hair cell marker proteins Brn-3c and myosin VIIa in vitro. These findings indicate that immature neural progenitors possess the potential to differentiate into hair cell phenotypes. Immature neural progenitors may be useful as materials for cell transplantation therapy for replacement of damaged inner ear hair cells."	"Expression of beta-catenin in developing auditory epithelia of mice. This study investigated the role of beta-catenin in the development of mouse auditory epithelia. Inner ears obtained from embryonic and newborn mice were used. Expression of beta-catenin was examined together with the expression of Ki-67, a marker for proliferating cells, or myosin VIIa, a marker for differentiated hair cells. In the early phase of development, intense expression of beta-catenin was found in auditory epithelia in which a number of Ki-67-positive cells were identified. Together with a decrease in proliferating cells, the intensity and area of beta-catenin expression were reduced. In addition, during differentiation and maturation of hair cells, the area of beta-catenin expression was further limited. These findings suggest that patterns of expression of beta-catenin are closely linked with the status of auditory epithelia development."	"Evaluation of visual impairment in Usher syndrome 1b and Usher syndrome 2a. To evaluate visual impairment in Usher syndrome 1b (USH1b) and Usher syndrome 2a (USH2a). We carried out a retrospective study of 19 USH1b patients and 40 USH2a patients. Cross-sectional regression analyses of the functional acuity score (FAS), functional field score (FFS) and functional vision score (FVS) related to age were performed. Statistical tests relating to regression lines and Student's t-test were used to compare between (sub)groups of patients. Parts of the available individual longitudinal data were used to obtain individual estimates of progressive deterioration and compare these to those obtained with cross-sectional analysis. Results were compared between subgroups of USH2a patients pertaining to combinations of different types of mutations. Cross-sectional analyses revealed significant deterioration of the FAS (0.7% per year), FFS (1.0% per year) and FVS (1.5% per year) with advancing age in both patient groups, without a significant difference between the USH1b and USH2a patients. Individual estimates of the deterioration rates were substantially and significantly higher than the cross-sectional estimates in some USH2a cases, including values of about 5% per year (or even higher) for the FAS (age 35-50 years), 3-4% per year for the FFS and 4-5% per year for the FVS (age &gt; 20 years). There was no difference in functional vision score behaviour detected between subgroups of patients pertaining to different biallelic combinations of specific types of mutations. The FAS, FFS and FVS deteriorated significantly by 0.7-1.5% per year according to cross-sectional linear regression analysis in both USH1b and USH2a patients. Higher deterioration rates (3-5% per year) in any of these scores were attained, according to longitudinal data collected from individual USH2a patients. Score behaviour was similar across the patient groups and across different biallelic combinations of various types of mutations. However, more elaborate studies, preferably covering longitudinal data, are needed to obtain conclusive evidence."	"Progressive hearing loss and increased susceptibility to noise-induced hearing loss in mice carrying a Cdh23 but not a Myo7a mutation. Exposure to intense noise can damage the stereocilia of sensory hair cells in the inner ear. Since stereocilia play a vital role in the transduction of sound from a mechanical stimulus into an electrical one, this pathology is thought to contribute to noise-induced hearing loss. Mice homozygous for null mutations in either the myosin VIIa ( Myo7a) or cadherin 23 ( Cdh23) genes are deaf and have disorganized stereocilia bundles. We show that mice heterozygous for a presumed null allele of Cdh23 ( Cdh23(v)) have low- and high-frequency hearing loss at 5-6 weeks of age, the high-frequency component of which worsens with increasing age. We also show that noise-induced hearing loss in 11-12-week-old Cdh23(v) heterozygotes is two times greater than for wild-type littermates. Interestingly, these effects are dependent upon the genetic background on which the Cdh23(v) mutation is carried. Noise-induced hearing loss in 11-12-week-old mice heterozygous for a null allele of Myo7a ( Myo7a(4626SB)) is not significantly different from wild-type littermates. CDH23 is the first gene known to cause deafness in the human population to be linked with predisposition to noise-induced hearing loss."	"Cdh23 mutations in the mouse are associated with retinal dysfunction but not retinal degeneration. Mutations in the cadherin 23 gene (CDH23) cause Usher syndrome type 1D in humans, a disease that results in retinitis pigmentosa and deafness. Cdh23 is also mutated in the waltzer mouse. In order to determine if the retina of the waltzer mouse undergoes retinal degeneration and to gain insight into the function of cadherin 23 in the retina, we have characterized the anatomy and physiology of retinas of waltzer mouse mutants. Three mutant alleles of Cdh23 were examined by histology and electroretinography (ERG). ERGs of the three Cdh23 mutant groups revealed two of them to have abnormal retinal function. One allele had a- and b-waves that were only approximately 80% of Cdh23 heterozygotes. Another allele had a significantly faster implicit time for both the a- and b-waves of the ERG. No anatomical abnormality was detected in any of the Cdh23 mutants by light microscopy. Because the mutant Cdh23 phenotype was found to be similar to the previously reported retinal phenotype of Myo7a mutant mice, the orthologue of another Usher syndrome (type 1B) gene, we generated mice that carried mutations in both genes to test for genetic interaction in the retina. No functional interaction between cadherin 23 and myosin VIIa was detected by either microscopy or ERG."	"The genetic bases for syndromic and nonsyndromic deafness among Jews. There are hundreds of different mutated genes associated with hearing loss. However, recent findings indicate that a large proportion of both syndromic and nonsyndromic forms of deafness in some Jewish populations is caused by a small number of founder mutations. This review is focused on genetic disorders such as nonsyndromic deafness, Usher syndrome and Alport syndrome, in which hearing loss is a major part of the phenotype and in which the underlying prevalent founder mutations have been recently identified in different Jewish populations. These and other examples of common mutations within a distinct population allow for sensitive and specific use of genetic testing for carrier screening and diagnosis, and are an impetus for development of therapeutic strategies."	"Differential distribution of harmonin isoforms and their possible role in Usher-1 protein complexes in mammalian photoreceptor cells. Human Usher syndrome is the most common form of combined deafness and blindness. Usher type I (USH1), the most severe form, is characterized by profound congenital deafness, constant vestibular dysfunction, and prepubertal onset retinitis pigmentosa. Previous studies have shown that the USH1-proteins myosin VIIa, harmonin, and cadherin 23 interact and form a functional network during hair cell differentiation in the inner ear. The purpose of the present study was to analyze the molecular and cellular functions of these USH1 proteins in the mammalian retina. Antibodies to USH1 proteins were generated and used in Western blot analysis of subcellular photoreceptor fractions and immunofluorescence and electron microscopy of the retina. Splice variants of harmonin were differentially expressed in the photoreceptor cell compartments. Whereas harmonin b isoforms were restricted to the light-sensitive outer segment, the harmonin a and c isoforms were more ubiquitously distributed in the photoreceptors. At the synaptic terminal of photoreceptor cells, harmonin a and c colocalized with myosin VIIa and cadherin 23. USH1 molecules can assemble to a supramolecular complex at photoreceptor synapses. Such a complex may contribute to the cortical cytoskeletal matrices of the pre- and postsynaptic regions, which are thought to play a fundamental role in the organization of synaptic junctions. Dysfunction of any of the USH1 complex partners may lead to synaptic dysfunction causing retinitis pigmentosa, the clinical phenotype in the retina of patients with USH1. Furthermore, in photoreceptor outer segments, harmonin may also contribute to the clustering of outer segment proteins into supramolecular complexes."	"Mouse models of USH1C and DFNB18: phenotypic and molecular analyses of two new spontaneous mutations of the Ush1c gene. We mapped two new recessive mutations causing circling behavior and deafness to the same region on chromosome 7 and showed they are allelic by complementation analysis. One was named 'deaf circler' (allele symbol dfcr) and the other 'deaf circler 2 Jackson' (allele symbol dfcr-2J). Both were shown to be mutations of the Ush1c gene, the mouse ortholog of the gene responsible for human Usher syndrome type IC and for the non-syndromic deafness disorder DFNB18. The Ush1c gene contains 28 exons, 20 that are constitutive and eight that are alternatively spliced. The dfcr mutation is a 12.8 kb intragenic deletion that eliminates three constitutive and five alternatively spliced exons. The dfcr-2J mutation is a 1 bp deletion in an alternatively spliced exon that creates a transcriptional frame shift, changing 38 amino acid codons before introducing a premature stop codon. Both mutations cause congenital deafness and severe balance deficits due to inner ear dysfunction. The stereocilia of cochlear hair cells are disorganized and splayed in mutant mice, with subsequent degeneration of the hair cells and spiral ganglion cells. Harmonin, the protein encoded by Ush1c, has been shown to bind, by means of its PDZ-domains, with the products of other Usher syndrome genes, including Myo7a, Cdh23 and Sans. The complexes formed by these protein interactions are thought to be essential for maintaining the integrity of hair cell stereocilia. The Ush1c mutant mice described here provide a means to directly investigate these interactions in vivo and to evaluate gene structure-function relationships that affect inner ear and eye phenotypes."	"Myo15 function is distinct from Myo6, Myo7a and pirouette genes in development of cochlear stereocilia. The unconventional myosin genes Myo15, Myo6 and Myo7a are essential for hearing in both humans and mice. Despite the expression of each gene in multiple organs, mutations result in identifiable phenotypes only in auditory or ocular sensory organs. The pirouette (pi) mouse also exhibits deafness and an inner ear pathology resembling that of Myo15 mutant mice and thus may be functionally related to Myo15. In order to investigate possible interactions between Myo15 and Myo6, Myo7a, and the gene affected in pirouette, we crossed Myo15(sh2/sh2) mice to the three other mutant mouse strains. Hearing in doubly heterozygous mice was similar to age-matched singly heterozygous animals, indicating that partial deficiency for both Myo15 and one of these other deafness genes does not reduce hearing. Viable double mutants were obtained from each cross, indicating that potential overlapping functions between these genes in other organs are not essential for viability. All critical cell types of the cochlear sensory epithelium were present in double mutant mice and cochlear stereocilia exhibited a superimposition of single mutant phenotypes. These data suggest that the function of Myo15 is distinct from that of Myo6, Myo7a or pi in development and/or maintenance of stereocilia."	"Transduction and adaptation in sensory hair cells of the mammalian vestibular system. The human vestibular apparatus detects head movements and gravitational stimuli which impinge upon the mechanosensory hair cells of the inner ear. The hair cells, in turn, transduce these stimuli into electrical signals which are transmitted to the brain. These sensory cells are exquisitely responsive, signaling deflections of their mechanosensitive organelles as small as 1-2 nanometers. Remarkably, they are able to preserve this level of sensitivity even when confronted with large tonic stimuli, such as gravity. To accomplish this feat hair cells have devised a novel adaptation process that repositions the mechanotransduction apparatus on a millisecond time scale to allow high sensitivity over a broad operating range. Mechanotransduction in hair cells occurs via a direct gating mechanism in which hair bundle deflection focuses tension onto membrane-bound, cation-selective ion channels located near the tips of the hair bundle. Increased tension favors an open conformation of the channel and allows calcium to enter the cell. Elevated intracellular calcium promotes adaptation which has been hypothesized to result from the activity of a cluster of molecular motors that continually adjust the tension in the transduction apparatus. Although the transduction channel itself remains elusive, myosin Ic has recently been identified as a molecular component of the &quot;adaptation&quot; motor."	"Bardet-Biedl syndrome and Usher syndrome. Bardet-Biedl syndrome (BBS) and Usher syndrome (USH) are the most prevalent syndromic forms of retinitis pigmentosa (RP), together they make up almost a quarter of the patients with RP. BBS is defined by the association of retinopathy, obesity, hypogonadism, renal dysfunction, postaxial polydactyly and mental retardation. This clinically complex syndrome is genetically heterogeneous with linkage to more than 6 loci, and 4 genes have been cloned so far. Recent molecular data present evidence that, in some instances, the clinical manifestation of BBS requires recessive mutations in 1 of the 6 BBS loci plus one or two additional mutations in a second BBS locus (tri- or tetra-allelic inheritance). USH is characterized by the combination of congenital or early-onset sensorineural deafness, RP, and variable degrees of vestibular dysfunction. Each of the three clinical types is genetically heterogeneous: 7 loci have been mapped for type 1, three loci for type 2, and two loci for type 3. Currently, 6 USH genes (MYO7A, USH1C, CDH23, PCDH15, USH2A, USH3) have been identified. Pathogenetically, mutations of the USH1 genes seem to result in defects of auditory and retinal sensory cells, the USH 2 phenotype is caused by defects of extracellular matrix or cell surface receptor proteins, and USH3 may be due to synaptic disturbances. The considerable contribution of syndromic forms of RP requires interdisciplinary approaches to the clinical and diagnostic management of RP patients."	"Math1 gene transfer generates new cochlear hair cells in mature guinea pigs in vivo. Hair cell loss in the mammalian cochlea is irreversible and results in permanent hearing loss. Math1, the basic helix-loop-helix transcription factor homolog of the Drosophila atonal gene, is a positive regulator of hair cell differentiation during cochlear development. Developing hair cells express Math1, and nonsensory cells do not. We set out to determine the outcome of overexpression of Math1 in nonsensory cells of the cochlea on the phenotype of these cells. We demonstrate that in vivo inoculation of adenovirus with the Math1 gene insert into the endolymph of the mature guinea pig cochlea results in Math1 overexpression in nonsensory cochlear cells, as evident from the presence of Math1 protein in supporting cells of the organ of Corti and in adjacent nonsensory epithelial cells. Math1 overexpression leads to the appearance of immature hair cells in the organ of Corti and new hair cells adjacent to the organ of Corti in the interdental cell, inner sulcus, and Hensen cell regions. Axons are extended from the bundle of auditory nerve toward some of the new hair cells, suggesting that the new cells attract auditory neurons. We conclude that nonsensory cells in the mature cochlea retain the competence to generate new hair cells after overexpression of Math1 in vivo and that Math1 is necessary and sufficient to direct hair cell differentiation in these mature nonsensory cells."	"The molecular genetics of Usher syndrome. Association of sensorineural deafness and progressive retinitis pigmentosa with and without a vestibular abnormality is the hallmark of Usher syndrome and involves at least 12 loci among three different clinical subtypes. Genes identified for the more commonly inherited loci are USH2A (encoding usherin), MYO7A (encoding myosin VIIa), CDH23 (encoding cadherin 23), PCDH15 (encoding protocadherin 15), USH1C (encoding harmonin), USH3A (encoding clarin 1), and USH1G (encoding SANS). Transcripts from all these genes are found in many tissues/cell types other than the inner ear and retina, but all are uniquely critical for retinal and cochlear cell function. Many of these protein products have been demonstrated to have direct interactions with each other and perform an essential role in stereocilia homeostasis."	"Abnormal phagocytosis by retinal pigmented epithelium that lacks myosin VIIa, the Usher syndrome 1B protein. Mutations in the myosin VIIa gene (MYO7A) cause Usher syndrome type 1B (USH1B), a major type of the deaf-blind disorder, Usher syndrome. We have studied mutant phenotypes in the retinas of Myo7a mutant mice (shaker1), with the aim of elucidating the role(s) of myosin VIIa in the retina and what might underlie photoreceptor degeneration in USH1B patients. A photoreceptor defect has been described. Here, we report that the phagocytosis of photoreceptor outer segment disks by the retinal pigment epithelium (RPE) is abnormal in Myo7a null mice. Both in vivo and in primary cultures of RPE cells, the transport of ingested disks out of the apical region is inhibited in the absence of Myo7a. The results with the cultured RPE cells were the same, irrespective of whether the disks came from wild-type or mutant mice, thus demonstrating that the RPE is the source of this defect. The inhibited transport seems to delay phagosome-lysosomal fusion, as the degradation of ingested disks was slower in mutant RPE. Moreover, fewer packets of disk membranes were ingested in vivo, possibly because retarded removal of phagosomes from the apical processes inhibited the ingestion of additional disk membranes. We conclude that Myo7a is required for the normal processing of ingested disk membranes in the RPE, primarily in the basal transport of phagosomes into the cell body where they then fuse with lysosomes. Because the phagocytosis of photoreceptor disks by the RPE has been shown to be critical for photoreceptor cell viability, this defect likely contributes to the progressive blindness in USH1B."	"Progressive hearing loss in mice lacking the cyclin-dependent kinase inhibitor Ink4d. Maintenance of the post-mitotic state in the post-natal mammalian brain is an active process that requires the cyclin-dependent kinase inhibitors (CKIs) p19Ink4d (Ink4d) and p27Kip1 (Kip1). In animals with targeted deletions of both Ink4d and Kip1, terminally differentiated, post-mitotic neurons are observed to re-enter the cell cycle, divide and undergo apoptosis. However, when either Ink4d or Kip1 alone are deleted, the post-mitotic state is maintained, suggesting a redundant role for these genes in mature neurons. In the organ of Corti--the auditory sensory epithelium of mammals--sensory hair cells and supporting cells become post-mitotic during embryogenesis and remain quiescent for the life of the animal. When lost as a result of environmental insult or genetic abnormality, hair cells do not regenerate, and this loss is a common cause of deafness in humans. Here, we report that targeted deletion of Ink4d alone is sufficient to disrupt the maintenance of the post-mitotic state of sensory hair cells in post-natal mice. In Ink4d-/- animals, hair cells are observed to aberrantly re-enter the cell cycle and subsequently undergo apoptosis, resulting in progressive hearing loss. Our results identify a novel mechanism underlying a non-syndromic form of progressive hearing loss in mice."	"Role of the F-box protein Skp2 in cell proliferation in the developing auditory system in mice. The F-box protein, Skp2 positively regulates the G1-S transition by controlling the stability of several G1 regulators, including p27. To evaluate the role of Skp2 in the mammalian developing auditory systems, the expression of Skp2 was examined together with the expression of p27 in auditory systems. Our data show expression of Skp2 in auditory epithelia and neurons at an early stage of development. During differentiation processes, the onset of p27 expression was observed together with the down-regulation of Skp2 expression, in auditory epithelia. In contrast, an alteration of expression of p27 and Skp2 in the greater epithelial ridge and spiral ganglion appeared after differentiation of hair cells. These findings suggest that Skp2 plays a crucial role in development of mammalian auditory systems."	"Brn3c null mutant mice show long-term, incomplete retention of some afferent inner ear innervation. Ears of Brn3c null mutants develop immature hair cells, identifiable only by certain molecular markers, and undergo apoptosis in neonates. This partial development of hair cells could lead to enough neurotrophin expression to sustain sensory neurons through embryonic development. We have therefore investigated in these mutants the patterns of innervation and of expression of known neurotrophins. At birth there is a limited expression of BDNF and NT-3 in the mutant sensory epithelia and DiI tracing shows no specific reduction of afferents or efferents that resembles neurotrophin null mutations. At postnatal day 7/8 (P7/8), innervation is severely reduced both qualitatively and quantitatively. 1% of myosin VIIa-positive immature hair cells are present in the mutant cochlea, concentrated in the base. Around 20% of immature hair cells exist in the mutant vestibular sensory epithelia. Despite more severe loss of hair cells (1% compared to 20%), the cochlea retains many more sensory neurons (46% compared to 15%) than vestibular epithelia. Even 6 months old mutant mice have some fibers to all vestibular sensory epithelia and many more to the cochlear apex which lacks MyoVIIa positive hair cells. Topologically organized central cochlea projections exist at least until P8, suggesting that functional hair cells are not required to establish such projections. The limited expression of neurotrophins in the cochlea of Brn3c null mice suffices to support many sensory neurons, particularly in the cochlea, until birth. The molecular nature of the long term survival of apical spiral neurons remains unclear."	"[From gene to disease; genetic causes of hearing loss and visual impairment sometimes accompanied by vestibular problems (Usher syndrome)]. Usher syndrome is an autosomal recessively inherited disease, characterised by sensorineural hearing loss, tapetoretinal degeneration and in some cases vestibular problems. Based on the clinical heterogeneity, the disease can be classified into three clinical types (I, II and III), which have their own genetic subtypes (Usher 1A-Usher IG, Usher 2A-Usher 2C and Usher 3). The majority of the Usher type I cases are caused by mutations in the MYO7A gene (Usher 1B) while mutations in the USH2A gene (Usher 2A) are the cause of most cases of type II. Usher syndrome type III, caused by mutations in the USH3 gene, is frequently seen only in Finland."	"Myosin VIIa, harmonin and cadherin 23, three Usher I gene products that cooperate to shape the sensory hair cell bundle. Deaf-blindness in three distinct genetic forms of Usher type I syndrome (USH1) is caused by defects in myosin VIIa, harmonin and cadherin 23. Despite being critical for hearing, the functions of these proteins in the inner ear remain elusive. Here we show that harmonin, a PDZ domain-containing protein, and cadherin 23 are both present in the growing stereocilia and that they bind to each other. Moreover, we demonstrate that harmonin b is an F-actin-bundling protein, which is thus likely to anchor cadherin 23 to the stereocilia microfilaments, thereby identifying a novel anchorage mode of the cadherins to the actin cytoskeleton. Moreover, harmonin b interacts directly with myosin VIIa, and is absent from the disorganized hair bundles of myosin VIIa mutant mice, suggesting that myosin VIIa conveys harmonin b along the actin core of the developing stereocilia. We propose that the shaping of the hair bundle relies on a functional unit composed of myosin VIIa, harmonin b and cadherin 23 that is essential to ensure the cohesion of the stereocilia."	"The roles of unconventional myosins in hearing and deafness. The proper expression and function of several unconventional myosins are necessary for inner-ear function. Mutations in MYO7A and MYO15 cause deafness in humans, and mice. Whereas mutations in Myo6 cause inner-ear abnormalities in mice, as yet no human deafness has been found to the result of mutations in MYO6. In the mammalian inner ear there are at least nine different unconventional myosin isozymes expressed. Myosin 1 beta, VI, VIIa and probably XV are all expressed within a single cell in the inner ear, the hair cell. The myosin isozymes expressed in the hair cell all have unique domains of expression and in some areas, such as the pericuticular necklace, several domains overlap. This suggests that these myosins all have unique functions and that all are individually targeted within the hair cell. The mouse is proving to be a useful model organism for studying both human deafness and elucidating the normal functions of unconventional myosins in vivo."	"Characterization of the motor activity of mammalian myosin VIIA. Myosin VIIA was cloned from rat kidney, and the construct (M7IQ5) containing the motor domain, IQ domain, and the coiled-coil domain as well as the full-length myosin VIIA (M7full) was expressed. The M7IQ5 contained five calmodulins. Based upon native gel electrophoresis and gel filtration, it was found that M7IQ5 was single-headed, whereas M7full was two-headed, suggesting that the tail domain contributes to form the two-headed structure. M7IQ5 had Mg(2+)-ATPase activity that was markedly activated by actin with K(actin) of 33 microm and V(max) of 0.53 s(-1) head(-1). Myosin VIIA required an extremely high ATP concentration for ATPase activity, ATP-induced dissociation from actin, and in vitro actin-translocating activity. ADP markedly inhibited the actin-activated ATPase activity. ADP also significantly inhibited the ATP-induced dissociation of myosin VIIA from actin. Consistently, ADP decreased K(actin) of the actin-activated ATPase. ADP decreased the actin gliding velocity, although ADP did not stop the actin gliding even at high concentration. These results suggest that myosin VIIA has slow ATP binding or low affinity for ATP and relatively high affinity for ADP. The directionality of myosin VIIA was determined by using the polarity-marked dual fluorescence-labeled actin filaments. It was found that myosin VIIA is a plus-directed motor."	"The clinical presentation of DFNB2. NA"	"Clinical presentation of DFNA11 (MYO7A). NA"	"Transgenic and gene targeting studies of hair cell function in mouse inner ear. Despite the rapid discovery of a large number of genes in sensory hair cells of the inner ear, the functional roles of these genes in hair cells remain largely undetermined. Recent advances in transgenic and gene targeting technologies in mice have offered unprecedented opportunities to genetically manipulate the expression of these genes and to study their functional roles in hair cells in vivo. Transgenic analyses have revealed the presence of hair-cell-specific promoters in the genes encoding Math1, myosin VIIa, Pou4f3, and the alpha9 subunit of the acetylcholine receptor (alpha9 AChR). Targeted inactivation using embryonic stem cell technology and transgenic expression studies have revealed the roles of several genes involved in hair cell lineage (Math1), differentiation (Pou4f3), mechanotransduction (Myo1c, and Myo7a), electromotility (Prestin), and efferent modulation (Chrna9, encoding alpha9 AChR). Although many of these genes also play roles in other tissues, inactivation of these genes in hair cells alone will soon be possible by using the Cre-loxP system. Also imminent is the development of genetic methods to inactivate genes specifically in mouse hair cells at a desired time, by using inducible systems established in other types of neurons. Combining these types of manipulation of gene expression will enable hearing researchers to elucidate some of the fundamental and unique features of hair cell function such as mechanotransduction, frequency tuning, active mechanical amplification, and efferent modulation."	"Hereditary deafness and phenotyping in humans. Hereditary deafness has proved to be extremely heterogeneous genetically with more than 40 genes mapped or cloned for non-syndromic dominant deafness and 30 for autosomal recessive non-syndromic deafness. In spite of significant advances in the understanding of the molecular basis of hearing loss, identifying the precise genetic cause in an individual remains difficult. Consequently, it is important to exclude syndromic causes of deafness by clinical and special investigation and to use all available phenotypic clues for diagnosis. A clinical approach to the aetiological investigation of individuals with hearing loss is suggested, which includes ophthalmology review, renal ultrasound scan and neuro-imaging of petrous temporal bone. Molecular screening of the GJB2 (Connexin 26) gene should be undertaken in all cases of non-syndromic deafness where the cause cannot be identified, since it is a common cause of recessive hearing impairment, the screening is straightforward, and the phenotype unremarkable. By the same token, mitochondrial inheritance of hearing loss should be considered in all multigeneration families, particularly if there is a history of exposure to aminoglycoside antibiotics, since genetic testing of specific mitochondrial genes is technically feasible. Most forms of non-syndromic autosomal recessive hearing impairment cause a prelingual hearing loss, which is generally severe to profound and not associated with abnormal radiology. Exceptions to this include DFNB2 (MYO7A), DFNB8/10 (TMPRSS3) and DFNB16 (STRC) where age of onset may sometimes be later on in childhood, DFNB4 (SLC26A4) where there may be dilated vestibular aqueducts and endolymphatic sacs, and DFNB9 (OTOF) where there may also be an associated auditory neuropathy. Unusual phenotypes in autosomal dominant forms of deafness, include low frequency hearing loss in DFNA1 (HDIA1) and DFNA6/14/38 (WFS1), mid-frequency hearing loss in DFNA8/12 (TECTA), DFNA13 (COL11A2) and vestibular symptoms and signs in DFNA9 (COCH) and sometimes in DFNA11 (MYO7A). Continued clinical evaluation of types and course of hearing loss and correlation with genotype is important for the intelligent application of molecular testing in the next few years."	"Slac2-c (synaptotagmin-like protein homologue lacking C2 domains-c), a novel linker protein that interacts with Rab27, myosin Va/VIIa, and actin. Slac2-a (synaptotagmin-like protein (Slp) homologue lacking C2 domains-a)/melanophilin is a melanosome-associated protein that links Rab27A on melanosomes with myosin Va, an actin-based motor protein, and formation of the tripartite protein complex (Rab27A.Slac2-a.myosin Va) has been suggested to regulate melanosome transport (Fukuda, M., Kuroda, T. S., and Mikoshiba, K. (2002) J. Biol. Chem. 277, 12432-12436). Here we report the structure of a novel form of Slac2, named Slac2-c, that is homologous to Slac2-a. Slac2-a and Slac2-c exhibit the same overall structure, consisting of a highly conserved N-terminal Slp homology domain (about 50% identity) and a less conserved C-terminal myosin Va-binding domain (about 20% identity). As with other Slac2 members and the Slp family, the Slp homology domain of Slac2-c was found to interact specifically with the GTP-bound form of Rab27A/B both in vitro and in intact cells, and the C-terminal domain of Slac2-c interacted with myosin Va and myosin VIIa. In addition, we discovered that the most C-terminal conserved region of Slac2-a (amino acids 400-590) and Slac2-c (amino acids 670-856), which is not essential for myosin Va binding, directly binds actin and that expression of these regions in PC12 cells and melanoma cells colocalized with actin filaments at the cell periphery, suggesting a novel role of Slac2-a/c in capture of Rab27-containing organelles in the actin-enriched cell periphery."	"Stereocilia defects in waltzer (Cdh23), shaker1 (Myo7a) and double waltzer/shaker1 mutant mice. Mutations in myosin VIIa (Myo7a) and cadherin 23 (Cdh23) cause deafness in shaker1 (sh1) and waltzer (v) mouse mutants respectively. In humans, mutations in these genes cause Usher's syndrome type 1B and D respectively, as well as certain forms of non-syndromic deafness. Examination of the organ of Corti from shaker1 and waltzer mice has shown that these genes are required for the proper organisation of hair cell stereocilia. Here we show that at embryonic day 18.5, the outer hair cells of Cdh23(v) homozygote mutant mice appear immature, projecting fewer recognisable stereocilia than heterozygote controls, and by post-natal day (P) 4 their stereocilia are arranged in a disorganised pattern rather than in the regular 'V'-shape seen in heterozygotes. Inner hair cell stereocilia are also disorganised in Cdh23(v) mutant homozygotes. Myo7a was expressed normally in the hair cells of P0 Cdh23(v2J) mutants demonstrating that cadherin 23 is not required for Myo7a expression at this stage. No stereocilia defects were observed in P4 Cdh23(v)/Myo7a(4626SB) double heterozygotes (+/Cdh23(v) +/Myo7a(4626SB)) and neither the Cdh23(v) nor Myo7a(4626SB) homozygote phenotypes were affected by the presence of one mutant copy of Myo7a or Cdh23 respectively. The hair cell phenotype of double homozygote mutant mice did not differ from single Myo7a(4626SB) homozygote mutants. Finally, we found no significant correlation between loss of hearing and double heterozygosity for mutations in Cdh23 and Myo7a in mice aged between 7.5 and 10 months. These findings suggest that Cdh23 and Myo7a are both required for establishing and/or maintaining the proper organisation of the stereocilia bundle and that they do not genetically interact to affect this process nor to cause age-related hearing loss."	"Mutations in myosin VIIA (MYO7A) and usherin (USH2A) in Spanish patients with Usher syndrome types I and II, respectively. Usher syndrome is an autosomal recessive disorder characterized by congenital hearing impairment and retinitis pigmentosa. Three clinical types are known (USH1, USH2 and USH3), and there is an extensive genetic heterogeneity, with at least ten genes implicated. The most frequently mutated genes are MYO7A, which causes USH1B, and usherin, which causes USH2A. We carried out a mutation analysis of these two genes in the Spanish population. Analysis of the MYO7A gene in patients from 30 USH1 families and sporadic cases identified 32% of disease alleles, with mutation Q821X being the most frequent. Most of the remaining variants are private mutations. With regard to USH2, mutation 2299delG was detected in 25% of the Spanish patients. Altogether the mutations detected in USH2A families account for 23% of the disease alleles."	"Nonsyndromic recessive deafness DFNB18 and Usher syndrome type IC are allelic mutations of USHIC. Human chromosome 11 harbors two Usher type I loci, USHIB and USHIC, which encode myosin VIIA and harmonin, respectively. The USHIC locus overlaps the reported critical interval for nonsyndromic deafness locus DFNB18. We found an IVS12+5G--&gt;C mutation in the USHIC gene, which is associated with nonsyndromic recessive deafness ( DFNB18) segregating in the original family, S-11/12. No other disease-associated mutation was found in the other 27 exons or in the intron-exon boundaries, and the IVS12+5G--&gt;C mutation was not present in 200 representative unaffected individuals ascertained from the same area of India. An exon-trapping assay with a construct harboring IVS12+5G--&gt;C generated wildtype spliced mRNA having exons 11 and 12 and mRNA that skipped exon 12. We conclude that mutations of USHIC can cause both Usher syndrome type IC and nonsyndromic recessive deafness DFNB18."	"Searching for evidence of DFNB2. Deafness is the most common form of sensory impairment in humans, affecting about 1 in 1,000 births in the United States. Of those cases with genetic etiology, approximately 80% are nonsyndromic and recessively inherited. Mutations in several unconventional myosins, members of a large superfamily of actin-associated molecular motors, have been found to cause hearing loss in both humans and mice. Mutations in the human unconventional Myosin VIIa (MYO7A), located at 11q13.5, are reported to be responsible for both syndromic and nonsyndromic deafness. MYO7A mutations are responsible for Usher syndrome type Ib, the most common genetic subtype of Usher I. Usher I is clinically characterized by congenital profound deafness, progressive retinal degeneration called retinitis pigmentosa (RP), and vestibular areflexia. Although a wide spectrum of MYO7A mutations have been identified in Usher Ib patients, four mutations have been reported to cause DFNB2, a recessive deafness without retinal degeneration, and one mutation has been implicated in a single case of dominant nonsyndromic hearing loss (DFNA11). Our study attempts to ascertain additional DFNB2 families to investigate the disparate nonsyndromic phenotype and alleged causative mutations. Data from both linkage and heterogeneity analyses on 36 selected autosomal recessive nonsyndromic deafness (RNSD) families, all previously excluded by mutational analysis from GJB2 (Cx26), the leading cause of nonsyndromic deafness, showed no evidence of DFNB2 within the sample. These negative results and the isolated reports of DFNB2 bring into question whether certain MYO7A mutations produce nonsyndromic recessive hearing loss."	"The role of Math1 in inner ear development: Uncoupling the establishment of the sensory primordium from hair cell fate determination. During embryonic development of the inner ear, the sensory primordium that gives rise to the organ of Corti from within the cochlear epithelium is patterned into a stereotyped array of inner and outer sensory hair cells separated from each other by non-sensory supporting cells. Math1, a close homolog of the Drosophila proneural gene atonal, has been found to be both necessary and sufficient for the production of hair cells in the mouse inner ear. Our results indicate that Math1 is not required to establish the postmitotic sensory primordium from which the cells of the organ of Corti arise, but instead is limited to a role in the selection and/or differentiation of sensory hair cells from within the established primordium. This is based on the observation that Math1 is only expressed after the appearance of a zone of non-proliferating cells that delineates the sensory primordium within the cochlear anlage. The expression of Math1 is limited to a subpopulation of cells within the sensory primordium that appear to differentiate exclusively into hair cells as the sensory epithelium matures and elongates through a process that probably involves radial intercalation of cells. Furthermore, mutation of Math1 does not affect the establishment of this postmitotic sensory primordium, even though the subsequent generation of hair cells is blocked in these mutants. Finally, in Math1 mutant embryos, a subpopulation of the cells within the sensory epithelium undergo apoptosis in a temporal gradient similar to the basal-to-apical gradient of hair cell differentiation that occurs in the cochlea of wild-type animals."	"MyRIP, a novel Rab effector, enables myosin VIIa recruitment to retinal melanosomes. Defects of the myosin VIIa motor protein cause deafness and retinal anomalies in humans and mice. We report on the identification of a novel myosin-VIIa-interacting protein that we have named MyRIP (myosin-VIIa- and Rab-interacting protein), since it also binds to Rab27A in a GTP-dependent manner. In the retinal pigment epithelium cells, MyRIP, myosin VIIa and Rab27A are associated with melanosomes. In transfected PC12 cells, overexpression of MyRIP was shown to interfere with the myosin VIIa tail localization. We propose that a molecular complex composed of Rab27A, MyRIP and myosin VIIa bridges retinal melanosomes to the actin cytoskeleton and thereby mediates the local trafficking of these organelles. The defect of this molecular complex is likely to account for the perinuclear mislocalization of the melanosomes observed in the retinal pigment epithelium cells of myosinVIIa-defective mice."	"A human homologue of Drosophila kelch associates with myosin-VIIa in specialized adhesion junctions. Mutations in myosin-VIIa are responsible for the deaf-blindness, Usher disease. Myosin-VIIa is also highly expressed in testis, where it is associated with specialized adhesion plaques termed ectoplasmic specializations (ES) that form between Sertoli cells and germ cells. To identify new roles for myosin-VIIa, we undertook a yeast two-hybrid screen to identify proteins associated with myosin-VIIa in the ES. We identified Keap1, a human homologue of the Drosophila ring canal protein, kelch. The kelch-repeats in the C-terminus of human Keap1 associate with the SH3 domain of myosin-VIIa. Immunolocalization studies revealed that Keap1 is present with myosin-VIIa in the actin bundles of the ES. Myosin-VIIa and Keap1 copurify with ES and colocate with each other and with F-actin at the electron microscopy level. Interestingly, in many epithelial cell types including cells derived from retina and inner ear, Keap1 is a component of focal adhesions and zipper junctions. Keap1 can target to the ES in the absence of myosin-VIIa, suggesting that Keap1 associates with other molecules in the adhesion plaque. Keap1 and myosin-VIIa overlapped in expression in the inner hair cells of the cochlea, suggesting that Keap1 may be a part of a family of actin-binding proteins that could be important for myosin-VIIa function in testis and inner ear."	"Phenotype of DFNA11: a nonsyndromic hearing loss caused by a myosin VIIA mutation. To characterize the audiovestibular phenotype of DFNA11, an autosomal dominant nonsyndromic hearing impairment caused by a mutation in the myosin VIIA gene (MYO7A), including whether DFNA11-affected subjects have retinal degeneration as is characteristic of Usher syndrome type 1B, caused by different MYO7A mutations. Retrospective study of audiovestibular and ophthalmological data in a Japanese family linked to DFNA11. Otoscopic examination and pure-tone audiometry were performed in all participants in the family. Selected subjects underwent additional examinations including speech discrimination scoring, acoustic reflex measurements, Békésy audiometry, evoked and distortion-product otoacoustic emissions, auditory brainstem responses, and bithermal caloric testing; visual acuity, ocular tonometry, slit-lamp examination, ophthalmoscopy, and electroretinography; and computed tomography of the temporal bone. Most affected individuals had moderate cochlear hearing loss beginning in the second decade and progressing at all frequencies. Variable degrees of asymptomatic vestibular dysfunction were present. Computed tomography showed normal inner and middle ear structures. No evidence suggested retinitis pigmentosa. The phenotype of DFNA11 is postlingual, nonsyndromic sensorineural hearing loss with gradual progression. Showing moderate hearing loss with asymptomatic variable vestibular dysfunction and no retinal degeneration, the DFNA11 phenotype is mildest among phenotypes caused by MYO7A mutations."	"Transport to the photoreceptor outer segment by myosin VIIa and kinesin II. This paper reviews our studies in which we have used mutant mice to investigate the roles of myosin VIIa and kinesin II in the transport of proteins to the photoreceptor outer segment. These studies suggest that both motors participate in moving opsin along the connecting cilium. Given the velocities measured for these motors in vitro, it is predicted that the resulting concentration of opsin in the plasma membrane of the connecting cilium is surprisingly low."	"Proliferative generation of mammalian auditory hair cells in culture. Hair cell (HC) and supporting cell (SC) productions are completed during early embryonic development of the mammalian cochlea. This study shows that acutely dissociated cells from the newborn rat organ of Corti, developed into so-called otospheres consisting of 98% nestin (+) cells when plated on a non-adherent substratum in the presence of either epidermal growth factor (EGF) or fibroblast growth factor (FGF2). Within cultured otospheres, nestin (+) cells were shown to express EGF receptor (EGFR) and FGFR2 and rapidly give rise to newly formed myosin VIIA (+) HCs and p27(KIP1) (+) SCs. Myosin VIIA (+) HCs had incorporated bromodeoxyuridine (BrdU) demonstrating that they were generated by a mitotic process. Ultrastructural studies confirmed that HCs had differentiated within the otosphere, as defined by the presence of both cuticular plates and stereocilia. This work raises the hypothesis that nestin (+) cells might be a source of newly generated HCs and SCs in the injured postnatal organ of Corti."	"Reduced climbing and increased slipping adaptation in cochlear hair cells of mice with Myo7a mutations. Mutations in Myo7a cause hereditary deafness in mice and humans. We describe the effects of two mutations, Myo7a(6J) and Myo7a(4626SB), on mechano-electrical transduction in cochlear hair cells. Both mutations result in two major functional abnormalities that would interfere with sound transduction. The hair bundles need to be displaced beyond their physiological operating range for mechanotransducer channels to open. Transducer currents also adapt more strongly than normal to excitatory stimuli. We conclude that myosin VIIA participates in anchoring and holding membrane-bound elements to the actin core of the stereocilium. Myosin VIIA is therefore required for the normal gating of transducer channels."	"Myosin-VIIa and transduction channel tension. NA"	"Hereditary familial vestibular degenerative diseases. Identification of genes involved in hereditary vestibular disease is growing at a remarkable pace. Mutant mouse technology can be an important tool for understanding the biological mechanism of human vestibular diseases."	"Shaker-1 mice show an optokinetic reflex but no vestibulo-ocular reflex. NA"	"FM1-43 dye behaves as a permeant blocker of the hair-cell mechanotransducer channel. Hair cells in mouse cochlear cultures are selectively labeled by brief exposure to FM1-43, a styryl dye used to study endocytosis and exocytosis. Real-time confocal microscopy indicates that dye entry is rapid and via the apical surface. Cooling to 4 degrees C and high extracellular calcium both reduce dye loading. Pretreatment with EGTA, a condition that breaks tip links and prevents mechanotransducer channel gating, abolishes subsequent dye loading in the presence of calcium. Dye loading recovers after calcium chelation with a time course similar to that described for tip-link regeneration. Myo7a mutant hair cells, which can transduce but have all mechanotransducer channels normally closed at rest, do not label with FM1-43 unless the bundles are stimulated by large excitatory stimuli. Extracellular perfusion of FM1-43 reversibly blocks mechanotransduction with half-blocking concentrations in the low micromolar range. The block is reduced by high extracellular calcium and is voltage dependent, decreasing at extreme positive and negative potentials, indicating that FM1-43 behaves as a permeant blocker of the mechanotransducer channel. The time course for the relief of block after voltage steps to extreme potentials further suggests that FM1-43 competes with other cations for binding sites within the pore of the channel. FM1-43 does not block the transducer channel from the intracellular side at concentrations that would cause complete block when applied extracellularly. Calcium chelation and FM1-43 both reduce the ototoxic effects of the aminoglycoside antibiotic neomycin sulfate, suggesting that FM1-43 and aminoglycosides enter hair cells via the same pathway."	"A specific promoter of the sensory cells of the inner ear defined by transgenesis. To date, no promoter sequence specific to the inner ear sensory cells (hair cells) has been reported. In an effort to understand the molecular mechanisms that determine hair cell fate in the inner ear, and with the goal of developing a valuable tool for gene therapy and for the generation of conditional knockouts, we initiated a search for cis-acting DNA sequences that regulate the expression of the murine Myo7a and human MYO7A genes. These genes encode the unconventional myosin VIIA which is expressed in hair cells and in some other epithelial cells. We generated lines of transgenic mice expressing the green fluorescent protein (GFP ) reporter gene under the control of several 5'-truncated versions of the Myo7a/MYO7A promoter region and intron 1. We obtained transgenic mice with a GFP expression restricted to the hair cells of the inner ear, cochlea and vestibule. Successive deletions of the promoter allowed us to define a minimal sequence of 118 bp that is sufficient, in the presence of intron 1, to target the transgene expression to hair cells. In addition, the deletion of intron 1 from the transgenes abolished hair cell expression, thus indicating the presence of a strong enhancer in the intron. This is the first report of regulatory sequences sufficient to target the expression of a gene exclusively in sensory cells of the inner ear. It also opens up the possibility for the analysis of the hair cell transcriptome."	"Clinical and genetic features of nonsyndromic autosomal dominant sensorineural hearing loss: KCNQ4 is a gene responsible in Japanese. Sixteen Japanese nonsyndromic autosomal dominant sensorineural hearing loss (ADSNHL) families were investigated clinically as well as genetically. Most families showed postlingual hearing loss. Although the severity of their hearing loss varied, most patients showed mild-moderate sensorineural hearing loss of a progressive nature. Mutation analysis was performed for the MYO7A, KCNQ4, and GJB3 genes, which are known to be responsible for autosomal dominant sensorineural hearing loss. The present study reports that a mutation in KCNQ4, a member of a large family of potassium channel genes, was responsible for ADSNHL in one Japanese family."	"From DFNB2 to Usher syndrome: variable expressivity of the same disease. NA"	"Drosophila Rho-associated kinase (Drok) links Frizzled-mediated planar cell polarity signaling to the actin cytoskeleton. Frizzled (Fz) and Dishevelled (Dsh) are components of an evolutionarily conserved signaling pathway that regulates planar cell polarity. How this signaling pathway directs asymmetric cytoskeletal reorganization and polarized cell morphology remains unknown. Here, we show that Drosophila Rho-associated kinase (Drok) works downstream of Fz/Dsh to mediate a branch of the planar polarity pathway involved in ommatidial rotation in the eye and in restricting actin bundle formation to a single site in developing wing cells. The primary output of Drok signaling is regulating the phosphorylation of nonmuscle myosin regulatory light chain, and hence the activity of myosin II. Drosophila myosin VIIA, the homolog of the human Usher Syndrome 1B gene, also functions in conjunction with this newly defined portion of the Fz/Dsh signaling pathway to regulate the actin cytoskeleton."	"Electroretinographic anomalies in mice with mutations in Myo7a, the gene involved in human Usher syndrome type 1B. In humans, mutations in the gene encoding myosin VIIa can cause Usher syndrome type 1b (USH1B), a disease characterized by deafness and retinitis pigmentosa. Myosin VIIa is also the gene responsible for the inner ear abnormalities at the shaker1 (sh1) locus in mice. To date, none of the sh1 alleles examined have shown any signs of retinal degeneration. In the present study, electroretinograms (ERGs) were recorded from sh1 mice to determine whether they have any physiological abnormalities. ERGs were recorded from mice homozygous for one of nine mutant alleles of Myo7a ranging in age from postnatal day (P)20 to approximately 1 year. All mice were dark adapted for 30 minutes, and all the mutant mice were paired with an appropriately age- and strain-matched control animal. A presumptive null allele of myosin VIIa, Myo7a(4626SB), was used to determine whether mice without myosin VIIa had an increased threshold, as assessed by the light level required to elicit a 15-microV b-wave. At the maximum light intensity used, five of the nine alleles examined had significantly reduced a- and b-wave amplitudes. For example, Myo7a(4626SB) mutant mice had a 20% reduction in a-wave amplitude at the maximum light intensity, and this reduction was the same for mice ranging in age from P20 through 7 months. The b-wave thresholds of the Myo7a(4626SB) mutant mice were not significantly different from those of the control mice. Furthermore, whereas most of the alleles' a-wave implicit times were the same in mutant and control mice, mutant mice with two of the alleles had significantly faster a-wave implicit times. Mutations in myosin VIIa in mice can lead to decreased ERG amplitudes while threshold remains normal. This is the first report of a physiological anomaly in a mouse model with a mutation in the same gene as involved in USH1B."	"Molecular genetics of Usher syndrome. The Usher syndrome, an autosomal recessive deafness and blindness, is genetically and clinically heterogeneous. In the past 4 years, genes mutated in Usher syndrome type Ib and type IIa have been described. The Usher Ib gene encodes the motor protein myosin VIIa and was identified as the human homolog of the mouse shaker-1 gene. The Usher type IIa gene was identified by positional cloning and encodes a protein with homology to extracellular matrix proteins and cell adhesion molecules. This review summarizes the current knowledge regarding both the genetic and molecular aspects of Usher syndrome in the context of recent scientific advances in the areas of sensorineural deafness and retinitis pigmentosa."	"Myosin VIIA is specifically associated with calmodulin and microtubule-associated protein-2B (MAP-2B). Myosin VIIA is a motor molecule with a conserved head domain and tail region unique to myosin VIIA, which probably defines its unique function in vivo. In an attempt to further characterize myosin VIIA function we set out to identify molecule(s) that specifically associate with it. We demonstrate that 17 and 55 kDa proteins from mouse kidney and cochlea co-purify with myosin VIIA on affinity columns carrying immobilized anti-myosin VIIA antibody. N-terminal sequencing and immunoblotting analysis identified the 17 kDa protein as calmodulin, whereas MS and immunoblotting analysis identified the 55 kDa protein as microtubule-associated protein-2B (MAP-2B). Myosin VIIA can also be co-immunoprecipitated from kidney homogenate using anti-calmodulin or anti-MAP2 (recognizing isoforms 2A and 2B) antibodies, confirming the strong association between calmodulin and myosin VIIA and between MAP-2B and myosin VIIA. Myosin VIIA binds to calmodulin with an apparent K(d) of 10(-9) M. Scatchard analysis of the binding of myosin VIIA to MAP-2B provided evidence for two binding sites, with K(d) values of 10(-10) and 10(-9) M, which have been mapped to medial and C-terminal tail domains of myosin VIIA. The characterization of the interaction of calmodulin and MAP-2B with myosin VIIA provides new insights into the function of myosin VIIA."	"Origin of vestibular dysfunction in Usher syndrome type 1B. It is still debated to what extent the vestibular deficits in Usher patients are due to either central vestibulocerebellar or peripheral vestibular problems. Here, we determined the origin of the vestibular symptoms in Usher 1B patients by subjecting them to compensatory eye movement tests and by investigating the shaker-1 mouse model, which is known to have the same mutation in the myosin-VIIa gene as Usher 1B patients. We show that myosin-VIIa is not expressed in the human or mouse cerebellum and that the vestibulocerebellum of both Usher 1B patients and shaker-1 mice is functionally intact in that the gain and phase values of their optokinetic reflex are normal. In addition, Usher 1B patients and shaker-1 mice do not show an angular vestibuloocular reflex even though eye movement responses evoked by electrical stimulation of the vestibular nerve appear intact. Finally, we show histological abnormalities in the vestibular hair cells of shaker-1 mice at the ultrastructural level, while the distribution of the primary vestibular afferents and the vestibular brainstem circuitries are unaffected. We conclude that the vestibular dysfunction of Usher 1B patients and shaker-1 mice is peripheral in origin."	"Identification of three novel mutations in the USH1C gene and detection of thirty-one polymorphisms used for haplotype analysis. Usher syndrome (USH) is a clinically and genetically heterogeneous autosomal recessive disorder in which sensorineural hearing loss is associated with retinitis pigmentosa. Usher syndrome type 1, the most severe form, is characterized by profound congenital deafness, vestibular dysfunction, and prepubertal onset of retinitis pigmentosa. Six different USH1 genes have so far been mapped, of which two have already been identified. MYO7A, encoding the unconventional myosin VIIA, underlies USH1B. Recently, the USH1C gene was shown to encode harmonin, a PDZ domain-containing protein. A previous screening of 18 unrelated USH1 patients, without a detected MYO7A mutation, for the three USH1C mutations described to date had demonstrated the presence of the 238-239insC mutation in the heterozygous state in four of them. A complete USH1C mutation screening in these four carriers of the 238-239insC mutation resulted in the detection of the second mutation in all the individuals, and the identification of three novel mutations, namely two splice site mutations (IVS1+1G&gt;T and IVS5+1G&gt;A) and a nonsense mutation (R31X). Thirty-one polymorphisms were detected in the USH1C gene. We observed that the E519D substitution is non-pathogenic, which is of particular interest for molecular diagnosis. Our analysis indicated that all the carriers of the 238-239insC mutation share a common haplotype. A different common haplotype was found in the two IVS1+1G&gt;T carriers. Future studies of additional carriers and non-carriers should document the here proposed founder effect of these two mutations."	"Mutation of CDH23, encoding a new member of the cadherin gene family, causes Usher syndrome type 1D. Usher syndrome type I (USH1) is an autosomal recessive disorder characterized by congenital sensorineural hearing loss, vestibular dysfunction and visual impairment due to early onset retinitis pigmentosa (RP). So far, six loci (USH1A-USH1F) have been mapped, but only two USH1 genes have been identified: MYO7A for USH1B and the gene encoding harmonin for USH1C. We identified a Cuban pedigree linked to the locus for Usher syndrome type 1D (MIM 601067) within the q2 region of chromosome 10). Affected individuals present with congenital deafness and a highly variable degree of retinal degeneration. Using a positional candidate approach, we identified a new member of the cadherin gene superfamily, CDH23. It encodes a protein of 3,354 amino acids with a single transmembrane domain and 27 cadherin repeats. In the Cuban family, we detected two different mutations: a severe course of the retinal disease was observed in individuals homozygous for what is probably a truncating splice-site mutation (c.4488G--&gt;C), whereas mild RP is present in individuals carrying the homozygous missense mutation R1746Q. A variable expression of the retinal phenotype was seen in patients with a combination of both mutations. In addition, we identified two mutations, Delta M1281 and IVS51+5G--&gt;A, in a German USH1 patient. Our data show that different mutations in CDH23 result in USH1D with a variable retinal phenotype. In an accompanying paper, it is shown that mutations in the mouse ortholog cause disorganization of inner ear stereocilia and deafness in the waltzer mouse."	"Vezatin, a novel transmembrane protein, bridges myosin VIIA to the cadherin-catenins complex. Defects in myosin VIIA are responsible for deafness in the human and mouse. The role of this unconventional myosin in the sensory hair cells of the inner ear is not yet understood. Here we show that the C-terminal FERM domain of myosin VIIA binds to a novel transmembrane protein, vezatin, which we identified by a yeast two-hybrid screen. Vezatin is a ubiquitous protein of adherens cell-cell junctions, where it interacts with both myosin VIIA and the cadherin-catenins complex. Its recruitment to adherens junctions implicates the C-terminal region of alpha-catenin. Taken together, these data suggest that myosin VIIA, anchored by vezatin to the cadherin-catenins complex, creates a tension force between adherens junctions and the actin cytoskeleton that is expected to strengthen cell-cell adhesion. In the inner ear sensory hair cells vezatin is, in addition, concentrated at another membrane-membrane interaction site, namely at the fibrillar links interconnecting the bases of adjacent stereocilia. In myosin VIIA-defective mutants, inactivity of the vezatin-myosin VIIA complex at both sites could account for splaying out of the hair cell stereocilia."	"Genetic heterogeneity of Usher syndrome: analysis of 151 families with Usher type I. Usher syndrome type I is an autosomal recessive disorder marked by hearing loss, vestibular areflexia, and retinitis pigmentosa. Six Usher I genetic subtypes at loci USH1A-USH1F have been reported. The MYO7A gene is responsible for USH1B, the most common subtype. In our analysis, 151 families with Usher I were screened by linkage and mutation analysis. MYO7A mutations were identified in 64 families with Usher I. Of the remaining 87 families, who were negative for MYO7A mutations, 54 were informative for linkage analysis and were screened with the remaining USH1 loci markers. Results of linkage and heterogeneity analyses showed no evidence of Usher types Ia or Ie. However, one maximum LOD score was observed lying within the USH1D region. Two lesser peak LOD scores were observed outside and between the putative regions for USH1D and USH1F, on chromosome 10. A HOMOG chi(2)((1)) plot shows evidence of heterogeneity across the USH1D, USH1F, and intervening regions. These results provide conclusive evidence that the second-most-common subtype of Usher I is due to genes on chromosome 10, and they confirm the existence of one Usher I gene in the previously defined USH1D region, as well as providing evidence for a second, and possibly a third, gene in the 10p/q region."	"A defect in harmonin, a PDZ domain-containing protein expressed in the inner ear sensory hair cells, underlies Usher syndrome type 1C. Usher syndrome type 1 (USH1) is an autosomal recessive sensory defect involving congenital profound sensorineural deafness, vestibular dysfunction and blindness (due to progressive retinitis pigmentosa)1. Six different USH1 loci have been reported. So far, only MYO7A (USH1B), encoding myosin VIIA, has been identified as a gene whose mutation causes the disease. Here, we report a gene underlying USH1C (MIM 276904), a USH1 subtype described in a population of Acadian descendants from Louisiana and in a Lebanese family. We identified this gene (USH1C), encoding a PDZ-domain-containing protein, harmonin, in a subtracted mouse cDNA library derived from inner ear sensory areas. In patients we found a splice-site mutation, a frameshift mutation and the expansion of an intronic variable number of tandem repeat (VNTR). We showed that, in the mouse inner ear, only the sensory hair cells express harmonin. The inner ear Ush1c transcripts predicted several harmonin isoforms, some containing an additional coiled-coil domain and a proline- and serine-rich region. As several of these transcripts were absent from the eye, we propose that USH1C also underlies the DFNB18 form of isolated deafness."	"Mariner is defective in myosin VIIA: a zebrafish model for human hereditary deafness. The zebrafish (Danio rerio) possesses two mechanosensory organs believed to be homologous to each other: the inner ear, which is responsible for the senses of audition and equilibrium, and the lateral line organ, which is involved in the detection of water movements. Eight zebrafish circler or auditory/vestibular mutants appear to have defects specific to sensory hair cell function. The circler genes may therefore encode components of the mechanotransduction apparatus and/or be the orthologous counterparts of the genes underlying human hereditary deafness. In this report, we show that the phenotype of the circler mutant, mariner, is due to mutations in the gene encoding Myosin VIIA, an unconventional myosin which is expressed in sensory hair cells and is responsible for various types of hearing disorder in humans, namely Usher 1B syndrome, DFNB2 and DFNA11. Our analysis of the fine structure of hair bundles in the mariner mutants suggests that a missense mutation within the C-terminal FERM domain of the tail of Myosin VIIA has the potential to dissociate the two different functions of the protein in hair bundle integrity and apical endocytosis. Notably, mariner sensory hair cells display morphological and functional defects that are similar to those present in mouse shaker-1 hair cells which are defective in Myosin VIIA. Thus, this study demonstrates the striking conservation of the function of Myosin VIIA throughout vertebrate evolution and establishes mariner as the first fish model for human hereditary deafness."	"Evaluation of the myosin VIIA gene and visual function in patients with Usher syndrome type I. Usher syndrome type I (USH1) is a recessively-inherited disorder consisting of retinitis pigmentosa, profound congenital deafness, and vestibular ataxia. It can be caused by mutations in at least six different loci (USH1A-1F). The gene encoding human myosin VIIA (MYO7A) is the USH1B locus. In this study, 66 unrelated patients with USH1 were evaluated for defects in MYO7A using single-strand conformation polymorphism analysis and direct genomic sequencing. Twenty-nine per cent of cases were found to have likely pathogenic MYO7A mutations. A total of 22 likely pathogenic changes were identified, 18 of which were novel. Cosegregation analysis of mutations in five available families showed that the MYO7A changes segregated with the disease in an autosomal recessive fashion. Average visual function as measured by visual acuity, visual field area, and ERG amplitude was not significantly different between the group of patients with likely pathogenic MYO7A changes and the group in which no likely pathogenic MYO7A changes were detected."	"Rhodopsin transport in the membrane of the connecting cilium of mammalian photoreceptor cells. The transport of the photopigment rhodopsin from the inner segment to the photosensitive outer segment of vertebrate photoreceptor cells has been one of the main remaining mysteries in photoreceptor cell biology. Because of the lack of any direct evidence for the pathway through the photoreceptor cilium, alternative extracellular pathways have been proposed. Our primary aim in the present study was to resolve rhodopsin trafficking from the inner to the outer segment. We demonstrate, predominantly by high-sensitive immunoelectron microscopy, that rhodopsin is also densely packed in the membrane of the photoreceptor connecting cilium. Present prominent labeling of rhodopsin in the ciliary membrane provides the first striking evidence that rhodopsin is translocated from the inner segment to the outer segment of wild type photoreceptors via the ciliary membrane. At the ciliary membrane rhodopsin co-localizes with the unconventional myosin VIIa, the product of human Usher syndrome 1B gene. Furthermore, axonemal actin was identified in the photoreceptor cilium, which is spatially co-localized with myosin VIIa and opsin. This actin cytoskeleton of the cilium may provide the structural bases for myosin VIIa-linked ciliary trafficking of membrane components, including rhodopsin."	"Unconventional myosin VIIA is a novel A-kinase-anchoring protein. To gain an insight into the cellular function of the unconventional myosin VIIA, we sought proteins interacting with its tail region, using the yeast two-hybrid system. Here we report on one of the five candidate interactors we identified, namely the type I alpha regulatory subunit (RI alpha) of protein kinase A. The interaction of RI alpha with myosin VIIA tail was demonstrated by coimmunoprecipitation from transfected HEK293 cells. Analysis of deleted constructs in the yeast two-hybrid system showed that the interaction of myosin VIIA with RI alpha involves the dimerization domain of RI alpha. In vitro binding assays identified the C-terminal &quot;4.1, ezrin, radixin, moesin&quot; (FERM)-like domain of myosin VIIA as the interacting domain. In humans and mice, mutations in the myosin VIIA gene underlie hereditary hearing loss, which may or may not be associated with visual deficiency. Immunohistofluorescence revealed that myosin VIIA and RI alpha are coexpressed in the outer hair cells of the cochlea and rod photoreceptor cells of the retina. Our results strongly suggest that myosin VIIA is a novel protein kinase A-anchoring protein that targets protein kinase A to definite subcellular sites of these sensory cells."	"Sensorineural hearing impairment: non-syndromic, recessive DFNB2. NA"	"Sensorineural hearing impairment non-syndromic, dominant DFNA11. NA"	"A missense mutation in myosin VIIA prevents aminoglycoside accumulation in early postnatal cochlear hair cells. Myosin VIIA is expressed by sensory hair cells in the inner ear and proximal tubule cells in the kidney, the two primary targets of aminoglycoside antibiotics. Using cochlear cultures prepared from early postnatal Myo7a6J mice with a missense mutation in the head region of the myosin VIIA molecule we show that this myosin is required for aminoglycoside accumulation in cochlear hair cells. Hair cells in homozygous mutant Myo7a6J cochlear cultures have disorganized hair bundles, but are otherwise morphologically normal and transduce. However, and in contrast to hair cells from heterozygous Myo7a6J cultures, the homozygous Myo7a6J hair cells do not accumulate [3H]gentamicin and do not exhibit an ototoxic response on exposure to aminoglycoside. Possible roles for myosin VIIA in the process of aminoglycoside accumulation are discussed."	"The usher syndromes. Mutations in the gene (MYO7A) encoding myosin-VIIa, a member of the large superfamily of myosin motor proteins that move on cytoplasmic actin filaments, and in the USH2A gene, which encodes a novel protein resembling an extracellular matrix protein or a cell adhesion molecule, both cause Usher syndrome (USH), a clinically heterogeneous autosomal recessive disorder comprising hearing and visual impairment. Patients with USH1 have severe to profound congenital hearing impairment, vestibular dysfunction, and retinal degeneration beginning in childhood, while those with USH2 have moderate to severe hearing impairment, normal vestibular function, and later onset of retinal degeneration. USH3 is characterized by progressive hearing loss and variable age of onset of retinal degeneration. The phenotype resulting from MYO7A and USH2A mutations is variable. While most MYO7A mutations cause USH1, some cause nonsyndromic hearing impairment, and one USH3 phenotype has been described. USH2A mutations cause atypical USH as well as USH2. MYO7A is on chromosome region 11q13 and USH2A is on 1q41. Seven other USH genes have been mapped but have not yet been identified. USH1A, USH1C, USH1D, USH1E, and USH1F have been assigned to chromosome bands 14q32, 11p15.1, 10q, 21q21, and 10, respectively, while USH2B is on 5q, and USH3 is at 3q21-q25. Myosin VIIa mutations also result in the shaker-1 (sh1) mouse, providing a model for functional studies. One possibility is that myosin-VIIa is required for linking stereocilia in the sensory hair bundle; another is that it may be needed for membrane trafficking. The ongoing studies of myosin-VIIa, the USH2A protein, and the yet to be identified proteins encoded by the other USH genes will advance understanding of the Usher syndromes and contribute to the development of effective therapies. Am. J. Med. Genet. (Semin. Med. Genet.) 89:158-166, 1999."	"Erratum: analysis of DNA elements that modulate myosin VIIa expression in humans. Usher syndromeIb (USH1B), an autosomal recessive disorder caused by mutations in myosin VIIa (MYO7A), is characterized by congenital profound hearing loss, vestibular abnormalities and retinitis pigmentosa. Promoter elements in the 5 kb upstream of the translation start were identified using adult retinal pigment epithelium cells (ARPE-19) as a model system. A 160 bp minimal promoter within the first intron was active in ARPE-19 cells, but not in HeLa cells that do not express MYO7A. A 100 bp sequence, 5' of the first exon, and repeated with 90% homology within the first intron, appeared to modulate expression in both cell lines. Segments containing these elements were screened by heteroduplex analysis. No heteroduplexes were detected in the minimal promoter, suggesting that this sequence is conserved. A -2568 A&gt;T transversion in the 5' 100 bp repeat, eliminating a CCAAT element, was found only in USH1B patients. However, in all 5 families, -2568 A&gt;T was in cis with the same missense mutation in the myosin VIIa tail (Arg1240Gln), and 4 of the 5 families were Dutch. These observations suggest either 1) linkage disequilibrium or 2)that a combination of a promoter mutation with a less active myosin VIIa protein results in USH1B."	"Molecular motors: sensing a function for myosin-VIIa. Mutations affecting myosin-VIIa are known to cause deafness and blindness in human Usher syndrome. Mutation of the Dictyostelium myosin-VII gene has now revealed a role for this unconventional myosin in phagocytic events, providing a possible clue to the role of mammalian myosin-VIIa in the inner ear and retina."	"Analysis of DNA elements that modulate myosin VIIA expression in humans. Usher syndromeIb (USH1B), an autosomal recessive disorder caused by mutations in myosin VIIa (MYO7A), is characterized by congenital profound hearing loss, vestibular abnormalities and retinitis pigmentosa. Promoter elements in the 5 kb upstream of the translation start were identified using adult retinal pigment epithelium cells (ARPE-19) as a model system. A 160 bp minimal promoter within the first intron was active in ARPE-19 cells, but not in HeLa cells that do not express MYO7A. A 100 bp sequence, 5' of the first exon, and repeated with 90% homology within the first intron, appeared to modulate expression in both cell lines. Segments containing these elements were screened by heteroduplex analysis. No heteroduplexes were detected in the minimal promoter, suggesting that this sequence is conserved. A -2568 A&gt;T transversion in the 5' 100 bp repeat, eliminating a CCAAT element, was found only in USH1B patients. However, in all 5 families, -2568 A&gt;T was in cis with the same missense mutation in the myosin VIIa tail (Arg1240Gln), and 4 of the 5 families were Dutch. These observations suggest either 1) linkage disequilibrium or 2)that a combination of a promoter mutation with a less active myosin VIIa protein results in USH1B."	"Myosins and deafness. The discovery in the past few years of a huge diversity within the myosin superfamily has been coupled with an understanding of the role of these motor proteins in various cellular functions. Extensive studies have revealed that myosin isoforms are not only involved in muscle contraction but also in crucial functions of many specialized mammalian cells such as melanocytes, kidney and intestinal brush border microvilli, nerve growth cones or inner ear hair cells. A search for genes involved in the pathology of human genetic deafness resulted in identification of three novel myosins: myosin VI, myosin VIIA and, very recently, myosin XV. The structure, tissue and cellular distribution of these myosin isoforms, as well as mutations detected within their genes that have been found to affect the hearing process, are described in this review."	"Identification of three novel mutations in the MYO7A gene  Three new mutations in the myosin VIIA gene involved in the pathogenesis of Usher syndrome type Ib are reported. These mutations are K1080X in exon 25, E1170K in exon 28, and Y1719C in exon 37. It is presumed that these mutations are involved in the Usher syndrome Ib phenotype. Hum Mutat 14:181, 1999. Copyright 1999 Wiley-Liss, Inc."	"Identification of three novel mutations in the MYO7A gene. Three new mutations in the myosin VIIA gene involved in the pathogenesis of Usher syndrome type Ib are reported. These mutations are K1080X in exon 25, E1170K in exon 28, and Y1719C in exon 37. It is presumed that these mutations are involved in the Usher syndrome Ib phenotype."	"Myosin VIIa participates in opsin transport through the photoreceptor cilium. Two types of Usher syndrome, a blindness-deafness disorder, result from mutations in the myosin VIIa gene. As for most other unconventional myosins, little is known about the function or functions of myosin VIIa. Here, we studied the photoreceptor cells of mice with mutant myosin VIIa by electron immunomicroscopy and microscopic autoradiography. We found evidence that myosin VIIa functions in the connecting cilium of each photoreceptor cell and participates in the transport of opsin through this structure. These findings provide the first direct evidence that opsin travels along the connecting cilium en route to the outer segment. They demonstrate that a myosin may function in a cilium and suggest that abnormal opsin transport might contribute to blindness in Usher syndrome."	"Possible interaction between USH1B and USH3 gene products as implied by apparent digenic deafness inheritance. NA"	"The role of mouse mutants in the identification of human hereditary hearing loss genes. The mouse is the model organism for the study of hearing loss in mammals. In recent years, the identification of five different mutated genes in the mouse (Pax3, Mitf; Myo7a, Pou4f3, and Myo15) has led directly to the identification of mutations in families with either congenital sensorineural deafness or progressive sensorineural hearing loss. Each of these cases is reviewed here. In addition to providing a powerful gateway to the identification of human hearing loss genes, the study of mouse deafness mutants can lead to the discovery of critical components of the auditory system. Given the availability of several mouse mutants that affect possible homologues of other human deafness genes, it is likely that the mouse will play a key role in identifying other human hearing loss genes in the years to come."	"Twelve novel myosin VIIA mutations in 34 patients with Usher syndrome type I: confirmation of genetic heterogeneity. Usher syndrome is a heterogeneous autosomal recessive trait and the most common cause of hereditary deaf-blindness. Usher syndrome type I (USH1) is characterised by profound congenital sensorineural hearing loss, vestibular dysfunction, and prepubertal onset of retinitis pigmentosa. Of the at least six different loci for USH1, USH1B maps on chromosome 11q13, and the MYO7A gene has been shown to be defective in USH1B. MYO7A encodes myosin VIIA, an unconventional myosin, and it consists of 48 coding exons. In this study, MYO7A was analysed in 34 unrelated Usher type I patients by single-strand conformation polymorphism analysis and direct sequencing. We identified a total of 12 novel and unique mutations, all single base changes. In addition, we found a previously reported nonsense mutation (C31X) on nine alleles of a total of six patients from Denmark."	"Genomics and hearing impairment. Hearing impairment is clinically and genetically heterogeneous. There are &gt;400 disorders in which hearing impairment is a characteristic of the syndrome, and family studies demonstrate that there are at least 30 autosomal loci for nonsyndromic hearing impairment. The genes that have been identified encode diaphanous (HDIA1), alpha-tectorin (TECTA), the transcription factor POU4F3, connexin 26 (GJB2), and two unconventional myosins (MYO7A and MYO15), and four novel proteins (PDS, COCH, DFNA5, DFNB9). The same clinical phenotype in hearing-impaired individuals, even those within the same family, can result from mutations in different genes. Conversely, mutations in the same gene can result in a variety of clinical phenotypes with different modes of inheritance. For example, mutations in the gene encoding MYO7A cause Usher syndrome type IB, autosomal-recessive nonsyndromic hearing impairment (DFNB2), and autosomal-dominant nonsyndromic hearing impairment (DFNA11). Additionally, the mouse ortholog of the MYO7A gene is the shaker-1 gene. Mouse models such as shaker-1 have facilitated the identification of genes that cause hearing impairment in humans. The availability of high-resolution maps of the human and mouse genomes and new technologies for gene identification are advancing molecular understanding of hearing impairment and the complex mechanisms of the auditory system."	"Detection of a novel Cys628STOP mutation of the myosin VIIA gene in Usher syndrome type Ib. A Spanish family with three Usher I syndrome-affected members was linked to markers located on chromosome 11q. A search for mutations on the myosin VIIA gene revealed a novel mutation (Cys628STOP) on exon 16 segregating with the disorder in a homozygous state. This nonsense mutation could be responsible for the disease since it leads to a truncated protein that presumably has no function."	"Map refinement of the Usher syndrome type 1B gene, MYO7A, relative to 11q13.5 microsatellite markers. Usher syndrome (US) is clinically and genetically a heterogeneous group of disorders characterized by the association of deafness with retinitis pigmentosa. So far, eight genes responsible for US have been mapped, of which only the gene responsible for the most common form, USH1B, has been identified. The USH1B is a large gene containing 49 exons and encoding for an unconventional myosin-VIIA (MYO7A). Mutation analysis within the MYO7A gene showed a wide variety of mutations dispersed all over the gene. The present report refines the location of the MYO7A gene relative to microsatellite markers mapped to this region, thereby allowing a reliable and efficient carrier detection by linkage analysis."	"Auditory hair cell precursors immortalized from the mammalian inner ear. Mammalian auditory hair cells are few in number, experimentally inaccessible, and do not proliferate postnatally or in vitro. Immortal cell lines with the potential to differentiate into auditory hair cells would substantially facilitate auditory research, drug development, and the isolation of critical molecules involved in hair cell biology. We have established two conditionally immortal cell lines that express at least five characteristic hair cell markers. These markers are the transcription factor Brn3.1, the alpha 9 subunit of the acetylcholine receptor, the stereociliary protein fimbrin and the myosins VI and VIIA. These hair cell precursors permit functional studies of cochlear genes and in the longer term they will provide the means to explore therapeutic methods of stimulating auditory hair cell regeneration."	"Ala397Asp mutation of myosin VIIA gene segregating in a Spanish family with type-Ib Usher syndrome. In the current study, 12 Spanish families affected by type-I Usher syndrome, that was previously linked to chromosome 11q, were screened for the presence of mutations in the N-terminal coding portion of the motor domain of the myosin VIIA gene by single-strand conformation polymorphism analysis of the first 14 exons. A mutation (Ala397Asp) segregating with the disease was identified, and several polymorphisms were also detected. It is presumed that the other USHIB mutations in these families could be located in the unscreened regions of the gene."	"Myosin VIIa as a common component of cilia and microvilli. The distribution of myosin VIIa, which is defective or absent in Usher syndrome 1B, was studied in a variety of tissues by immunomicroscopy. The primary aim was to determine whether this putative actin-based mechanoenzyme is a common component of cilia. Previously, it has been proposed that defective ciliary function might be the basis of some forms of Usher syndrome. Myosin VIIa was detected in cilia from cochlear hair cells, olfactory neurons, kidney distal tubules, and lung bronchi. It was also found to cofractionate with the axonemal fraction of retinal photoreceptor cells. Immunolabeling appeared most concentrated in the periphery of the transition zone of the cilia. This general presence of a myosin in cilia is surprising, given that cilia are dominated by microtubules, and not actin filaments. In addition to cilia, myosin VIIa was also found in actin-rich microvilli of different types of cell. We conclude that myosin VIIa is a common component of cilia and microvilli."	"More deafness genes. NA"	"Mutant myosin VIIa causes defective melanosome distribution in the RPE of shaker-1 mice. NA"	"Hair hear! NA"	"Two deaf mice, two deaf mice... NA"	"Genetic blindness: current concepts in the pathogenesis of human outer retinal dystrophies. Outer retinal dystrophies are the major causes of incurable blindness in the Western world. Understanding the etiology of retinal dystrophies has improved remarkably over the past decade. A number of genes, such as RHO, PDE-beta, RDS, TIMP3, MYO7A, RETGC1, RPGR, CRX and ABCR, are now known to be particularly important. Characterization of the genetic basis for disease is leading to new concepts of pathogenesis at the molecular and cellular levels. Such detailed understanding of disease processes is also stimulating a renewed interest in therapeutic strategies."	"Progress in progressive hearing loss. NA"	"Shaker-1 mutations reveal roles for myosin VIIA in both development and function of cochlear hair cells. The mouse shaker-1 locus, Myo7a, encodes myosin VIIA and mutations in the orthologous gene in humans cause Usher syndrome type 1B or non-syndromic deafness. Myo7a is expressed very early in sensory hair cell development in the inner ear. We describe the effects of three mutations on cochlear hair cell development and function. In the Myo7a816SB and Myo7a6J mutants, stereocilia grow and form rows of graded heights as normal, but the bundles become progressively more disorganised. Most of these mutants show no gross electrophysiological responses, but some did show evidence of hair cell depolarisation despite the disorganisation of their bundles. In contrast, the original shaker-1 mutants, Myo7ash1, had normal early development of stereocilia bundles, but still showed abnormal cochlear responses. These findings suggest that myosin VIIA is required for normal stereocilia bundle organisation and has a role in the function of cochlear hair cells."	"Myosin VIIA is required for aminoglycoside accumulation in cochlear hair cells. Myosin VIIA is expressed by sensory hair cells and has a primary structure predicting a role in membrane trafficking and turnover, processes that may underlie the susceptibility of hair cells to aminoglycoside antibiotics. [3H]Gentamicin accumulation and the effects of aminoglycosides were therefore examined in cochlear cultures of mice with different missense mutations in the myosin VIIA gene, Myo7a, to see whether myosin VIIA plays a role in aminoglycoside ototoxicity. Hair cells from homozygous mutant Myo7ash1 mice, with a mutation in a nonconserved region of the myosin VIIA head, respond rapidly to aminoglycoside treatment and accumulate high levels of gentamicin. Hair cells from homozygous mutant Myo7a6J mice, with a mutation at a highly conserved residue close to the ATP binding site of the myosin VIIA head, do not accumulate [3H]gentamicin and are protected from aminoglycoside ototoxicity. Hair cells from heterozygotes of both alleles accumulate [3H]gentamicin and respond to aminoglycosides. Although aminoglycoside uptake is thought to be via apical surface-associated endocytosis, coated pit numbers on the apical membrane of heterozygous and homozygous Myo7a6J hair cells are similar. Pulse-chase experiments with cationic ferritin confirm that the apical endocytotic pathway is functional in homozygous Myo7a6J hair cells. Transduction currents can be recorded from both heterozygous and homozygous Myo7a6J hair cells, suggesting it is unlikely that the drug enters via diffusion through the mechanotransducer channel. The results show that myosin VIIA is required for aminoglycoside accumulation in hair cells. Myosin VIIA may transport a putative aminoglycoside receptor to the hair cell surface, indirectly translocate it to sites of membrane retrieval, or retain it in the endocytotic pathway."	"The architecture of hearing. NA"	"Expression of myosin VIIA during mouse embryogenesis. The gene encoding myosin VIIA is responsible for the mouse shaker-1 phenotype, which consists of deafness and balance deficiency related to cochlear and vestibular neuroepithelial defects. In humans, a defective myosin VIIA gene is responsible for Usher syndrome type IB, which associates congenital deafness, vestibular dysfunction and retinitis pigmentosa. In an attempt to progress in the understanding of the function(s) of myosin VIIA, we studied the expression of the myosin VIIA gene during mouse embryonic development. Embryos from day 9 (E9) to E18 were analyzed by in situ hybridization and immunohistofluorescence. The myosin VIIA mRNA and protein were consistently detected in the same embryonic tissues throughout development. Myosin VIIA was first observed in the otic vesicle at E9, and later in a variety of tissues. The olfactory epithelium and the liver express it as early as E10. In the retinal pigment epithelium, choroid plexus, adrenal gland and tongue, expression begins at E12 and in the testis and the adenohypophysis at E13. In the small intestine, kidney and hair follicles of the vibrissae, expression of myosin VIIA starts only at E15. Myosin VIIA expression was observed only in epithelial cell types, most of which possess microvilli or cilia. Interestingly, myosin VIIA expression seems to be concomitant with the appearance of these structures in the epithelial cells, suggesting a role for this myosin in their morphogenesis. The cellular location of myosin VIIA within sensory hair cells and olfactory receptor neurons also argues for a role of this protein in the synaptic vesicle trafficking."	"Unconventional myosins in inner-ear sensory epithelia. To understand how cells differentially use the dozens of myosin isozymes present in each genome, we examined the distribution of four unconventional myosin isozymes in the inner ear, a tissue that is particularly reliant on actin-rich structures and unconventional myosin isozymes. Of the four isozymes, each from a different class, three are expressed in the hair cells of amphibia and mammals. In stereocilia, constructed of cross-linked F-actin filaments, myosin-Ibeta is found mostly near stereociliary tips, myosin-VI is largely absent, and myosin-VIIa colocalizes with crosslinks that connect adjacent stereocilia. In the cuticular plate, a meshwork of actin filaments, myosin-Ibeta is excluded, myosin-VI is concentrated, and modest amounts of myosin-VIIa are present. These three myosin isozymes are excluded from other actin-rich domains, including the circumferential actin belt and the cortical actin network. A member of a fourth class, myosin-V, is not expressed in hair cells but is present at high levels in afferent nerve cells that innervate hair cells. Substantial amounts of myosins-Ibeta, -VI, and -VIIa are located in a pericuticular necklace that is largely free of F-actin, squeezed between (but not associated with) actin of the cuticular plate and the circumferential belt. Our localization results suggest specific functions for three hair-cell myosin isozymes. As suggested previously, myosin-Ibeta probably plays a role in adaptation; concentration of myosin-VI in cuticular plates and association with stereociliary rootlets suggest that this isozyme participates in rigidly anchoring stereocilia; and finally, colocalization with cross-links between adjacent stereocilia indicates that myosin-VIIa is required for the structural integrity of hair bundles."	"Mutation analysis of the mouse myosin VIIA deafness gene. The shaker-1 (Myo7a) mouse deafness locus is encoded by an unconventional myosin gene: myosin VIIA [Gibson, Walsh, Mburu, Varela, Brown, Antonio, Biesel, Steel and Brown (1995) Nature (London) 374, 62-64]. The myosin VIIA gene is expressed in hair cells in the cochlea, where it is thought to function in the development of the critical neuroepithelium where auditory transduction takes place. In order to understand better the function of myosin VIIA, we have determined the complete sequence of the mouse myosin VIIA cDNA and employed the wild-type sequence for mutational analysis of a number of shaker-1 alleles. Analysis of the mouse myosin VIIA tail sequence demonstrates a large internal repeat with regions of similarity to myosins IV, X and XII as well as members of the band 4.1 family. In addition, the myosin VIIA repeats are similar along their entire length to a tail domain from a plant kinesin. The mouse myosin VIIA tail also contains a putative Src homology 3 (SH3) domain. Along with three previously reported shaker-1 mutations, mutations for seven shaker-1 alleles in total have now been identified. The mutational changes have been analysed in terms of their predicted effect on both myosin motor head and tail domain function and the predictions related to the known phenotypes of the shaker-1 alleles. Five of the mutations lie in the motor head, and analysis of their likely effect on myosin head structure correlates well with the known severity of the shaker-1 alleles. Of the two mutations in the tail, one is a missense mutation within the kinesin and myosin IV, X and XII homology domains that substitutes a conserved amino acid and leads to a severe deafness phenotype. This and other data suggest that myosin VIIA may have properties of a myosin-motor-kinesin-tail hybrid and be involved in membrane turnover within the actin-rich environment of the apical hair cell surface."	"Motors, channels and the sounds of silence. NA"	"The autosomal recessive isolated deafness, DFNB2, and the Usher 1B syndrome are allelic defects of the myosin-VIIA gene. Hereditary non-syndromic profound deafness affects about 1 in 2000 children prior to language acquisition. In 80% of the cases, the mode of transmission is autosomal recessive. The number of genes involved in these recessive forms of isolated deafness (DFNB genes) has been estimated to between 30 and 100. So far, ten DFNB genes have been mapped to human chromosomes, one of which has been isolated. By linkage analysis of a single family whose members were affected with profound deafness, some of them presenting with vestibular dysfunction, DFNB2 has been mapped to chromosome 11q13 (ref. 3). The gene responsible for a form of Usher syndrome type I, USH1B, has been assigned to the same chromosomal region. Usher syndrome associates profound congenital deafness and vestibular dysfunction with retinitis pigmentosa. In the homologous murine region are located the shaker-1 mutations responsible for deafness and vestibular dysfunction. It has been demonstrated that the murine shaker-1 and human USH1B phenotypes result from mutations in the gene encoding myosin-VIIA. Based on mapping data as well as on the similarities between the phenotypes of DFNB2-affected patients and shaker-1 mouse mutants, we have proposed that a defective myosin-VIIA may also be responsible for DFNB2 (ref. 1). Sequence analysis of each of the coding exons of the myosin-VIIA gene (MYO7A) was thus undertaken in the DFNB2-affected family. In the last nucleotide of exon 15, a G to A transition was detected, a type of mutation that is known to decrease the efficiency of splicing. Accordingly, this result shows that different mutations in MYO7A result in either an isolated or a syndromic form of deafness."	"Mutations in the myosin VIIA gene cause non-syndromic recessive deafness. Genetic hearing impairment affects around 1 in every 2,000 births. The bulk (approximately 70%) of genetic deafness is non-syndromic, in which hearing impairment is not associated with any other abnormalities. Over 25 loci involved in non-syndromic deafness have been mapped and mutations in connexin 26 have been identified as a cause of non-sydromic deafness. One locus for non-syndromic recessive deafness, DFNB2 (ref. 4), has been localized to the same chromosomal region, 11q14, as one of the loci, USH1B, underlying the recessive deaf-blind syndrome. Usher syndrome type 1b, which is characterized by profound congenital sensorineural deafness, constant vestibular dysfunction and prepubertal onset of retinitis pigmentosa. Recently, it has been shown that a gene encoding an unconventional myosin, myosin VIIA, underlies the mouse recessive deafness mutation, shaker-1 (ref. 5) as well as Usher syndrome type 1b. Mice with shaker-1 demonstrate typical neuroepithelial defects manifested by hearing loss and vestibular dysfunction but no retinal pathology. Differences in retinal patterns of expression may account for the variance in phenotype between shaker-1 mice and Usher type 1 syndrome. Nevertheless, the expression of MYO7A in the neuroepithelium suggests that it should be considered a candidate for non-syndromic deafness in the human population. By screening families with non-syndromic deafness from China, we have identified two families carrying MYO7A mutations."	"The genomic structure of the gene defective in Usher syndrome type Ib (MYO7A). Usher syndrome type Ib is a recessive autosomal disorder manifested by congenital deafness, vestibular dysfunction, and progressive retinal degeneration. Mutations in the human myosin VIIa gene (MYO7A) have been reported to cause Usher type Ib. Here we report the genomic organization of MYO7A. An STS content map was determined to discover the YAC clones that would cover the critical region for Usher syndrome type Ib. Three of the YACs (802A5, 966D6, and 965F10) were subcloned into cosmids and used to assemble a preliminary cosmid contig of the critical region. Part of the gene encoding human myosin VIIa was found in the preliminary cosmid contig. A cosmid, P1, PAC, and long PCR contig that contained the entire MYO7A gene was assembled. Primers were designed from the composite cDNA sequence and used to detect intron-exon junctions by directly sequencing cosmid, P1, PAC, and genomic PCR DNA. Alternatively spliced products were transcribed from the MYO7A gene: the largest transcript (7.4 kb) contains 49 exons. The MYO7A gene is relatively large, spanning approximately 120 kb of genomic DNA on chromosome 11q13."	"Contribution of DFNB1 and DFNB2 loci to neurosensory deafness in affected Tunisian families. Classical studies have demonstrated genetic heterogeneity for nonsyndromic autosomal recessive congenital neurosensory deafness. The first two DFNB1 and DFNB2 locations were found using two consanguineous Tunisian families respectively from north and south. We tested these loci for cosegregation with deafness in twenty four southern families with nonsyndromic presumed congenital sensorineural deafness and a pedigree structure consistent with autosomal recessive inheritance. Only in our families, did deafness cosegregate with DFNB1. Although our families are from the south, none of them showed linkage to DFNB2."	"Myosin VIIa, the product of the Usher 1B syndrome gene, is concentrated in the connecting cilia of photoreceptor cells. Usher syndrome is the most common form of combined deafness and blindness. The gene that is defective in Usher syndrome 1B (USH1B) encodes for an unconventional myosin, myosin VIIa. To understand the cellular function of myosin VIIa and why defects in it lead to USH1B, it is essential to determine the precise cellular and subcellular localization of the protein. We investigated the distribution of myosin VIIa in human and rodent photoreceptor cells and retinal pigment epithelium (RPE), primarily by immunoelectron microscopy, using antibodies generated against two different domains of the protein. In both human and rodent retinae, myosin VIIa was detected in the apical processes of the RPE and in the cilium of rod and cone photoreceptor cells. Immunogold label was most concentrated in the connecting cilium. Here, myosin VIIa appeared to be distributed outside the ring of doublet microtubules near the ciliary plasma membrane. These observations indicate that a major role of myosin VIIa in the retina is in the photoreceptor cilium, perhaps in such a function as trafficking newly synthesized phototransductive membrane or maintaining the diffusion barrier between the inner and outer segments. Our results support the notion that defective ciliary function is the underlying cellular abnormality that leads to cellular degeneration in Usher syndrome."	"Effects of shaker-1 mutations on myosin-VIIa protein and mRNA expression. Numerous mammalian diseases have been found to be due to mutations in components of the actin cytoskeleton. Recently, mutations in the gene for an unconventional myosin, myosin-VIIa, were found to be the basis for the deafness and vestibular dysfunction observed in shaker-1 (sh1) mice and for a human deafness-blindness syndrome, Usher syndrome type 1B. Seven alleles of sh1 mice were analyzed to assess the affects of different myosin-VIIa mutations on both gene expression and tissue function. Myosin-VIIa is expressed in the inner ear and the retina, as well as the kidney, lung, and testis. Northern blot analysis indicated that myosin-VIIa mRNA expression, size, and stability were unaffected in the seven sh1 alleles. Immunoblot analysis showed that all seven alleles expressed some full-length myosin-VIIa protein. The range of expression, however, ran from sh1 [original], which expressed wild-type levels of protein, to two strains, sh1(4494SB) and sh1(4626SB), which expressed less than 1% of the normal level of myosin-VIIa protein. For the three alleles of sh1 that have been characterized and that have mutations in the motor domain, sh1 [original], sh1(816SB) and sh1(6J), the level of protein expression observed in these sh1 alleles correlated well with the predicted effects of the mutations on motor function. No change in retinal or testicular structure was observed at the light microscopic level during the life span of the seven sh1 alleles. Myosin-VIIa protein, when detectable, was observed to locate properly in the sh1 mice. On the basis of these results, we propose that the mutations in myosin-VIIa in the sh1 alleles leads to both motor dysfunction and to a protein destabilization phenotype."	"Shaker mice and a peek into the House of Usher. NA"	"Myosin VIIA gene: heterogeneity of the mutations responsible for Usher syndrome type IB. Usher syndrome is recognized as the most frequent cause of hereditary deaf-blindness. Usher syndrome type I (USH1), the most severe form of the disease, is characterized by profound congenital sensorineural deafness, constant vestibular dysfunction, and retinitis pigmentosa of prepubertal onset. This form is genetically heterogeneous and five loci (USH1A-E) have been mapped thusfar. However, only the gene responsible for USH1 B (which accounts for approximately 75% of USH1 cases) has been characterized. It encodes a long-tailed unconventional myosin, myosin VIIA, with a predicted 2215 amino acid sequence. Primers covering the complete myosin VIIA coding sequence as well as the 3' non coding sequence were designed, allowing direct sequence analysis of each of the 48 coding exons and flanking splice sites in seven patients affected by USH1. Four novel mutations were thereby identified. The possibility should now be considered of a sequence-based prenatal diagnosis in some of the families affected by this very severe form of Usher syndrome."	"Myosin VIIA mutation screening in 189 Usher syndrome type 1 patients. Usher syndrome type 1b (USH1B) is an autosomal recessive disorder characterized by congenital profound hearing loss, vestibular abnormalities, and retinitis pigmentosa. The disorder has recently been shown to be caused by mutations in the myosin VIIa gene (MYO7A) located on 11q14. In the current study, a panel of 189 genetically independent Usher I cases were screened for the presence of mutations in the N-terminal coding portion of the motor domain of MYO7A by heteroduplex analysis of 14 exons. Twenty-three mutations were found segregating with the disease in 20 families. Of the 23 mutations, 13 were unique, and 2 of the 13 unique mutations (Arg212His and Arg212Cys) accounted for the greatest percentage of observed mutant alleles (8/23, 31%). Six of the 13 mutations caused premature stop codons, 6 caused changes in the amino acid sequence of the myosin VIIa protein, and 1 resulted in a splicing defect. Three patients were homozygotes or compound heterozygotes for mutant alleles; these three cases were Tyr333Stop/Tyr333Stop, Arg212His-Arg302His/Arg212His-Arg302His, and IVS13nt-8c--&gt;g/Glu450Gln. All the other USH1B mutations observed were simple heterozygotes, and it is presumed that the mutation on the other allele is present in the unscreened regions of the gene. None of the mutations reported here were observed in 96 unrelated control samples, although several polymorphisms were detected. These results add three patients to single case reported previously where mutations have been found in both alleles and raises the total number of unique mutations in MYO7A to 16."	"Molecular cloning and domain structure of human myosin-VIIa, the gene product defective in Usher syndrome 1B. Myosin-VIIa is an unconventional myosin with relatively restricted expression. Cloned first from an intestinal epithelium cell line, it occurs most notably in the testis, in the receptor cells of the inner ear, and in the pigment epithelium of the retina. Defects in myosin-VIIa cause the shaker-1 phenotype in mice and Usher syndrome 1B in human, which are characterized by deafness, lack of vestibular function, and (in human) progressive retinal degeneration. Because the described cDNAs encode less than half of the protein predicted from immunoblots, we have cloned cDNAs encoding the rest of human myosin-VIIa. Two transcripts were found, one encoding the predicted 250-kDa protein and another encoding a shorter form. Both transcripts were found in highest abundance in testis, although the shorter transcript was much less abundant. Both could be detected in lymphocytes by RT-PCR. The myosin tail encoded by the long transcript includes a long repeat of approximately 460 amino acids. Each repeat contains a novel &quot;MyTH4&quot; domain similar to domains in three other myosins, and a domain similar to the membrane-associated portion of talin and other members of the band-4.1 family."	"Human Usher 1B/mouse shaker-1: the retinal phenotype discrepancy explained by the presence/absence of myosin VIIA in the photoreceptor cells. Usher syndrome type 1 (USH1) associates severe congenital deafness, vestibular dysfunction and progressive retinitis pigmentosa leading to blindness. The gene encoding myosin VIIA is responsible for USH1B. Mutations in the murine orthologous gene lead to the shaker-1 phenotype, which manifests cochlear and vestibular dysfunction, without any retinal defect. To address this phenotypic discrepancy, the expression of myosin VIIA in retinal cells was analyzed in human and mouse during embryonic development and adult life. In the human embryo, myosin VIIA was present first in the pigment epithelium cells, and later in these cells as well as in the photoreceptor cells. In the adult human retina, myosin VIIA was present in both cell types. In contrast, in mouse, only pigment epithelium cells expressed the protein throughout development and adult life. Myosin VIIA was also found to be absent in the photoreceptor cells of other rodents (rat and guinea-pig), whereas these cells expressed the protein in amphibians, avians and primates. These observations suggest that retinitis pigmentosa of USH1B results from a primary rod and cone defect. The USH1B/shaker-1 paradigm illustrates a species-specific cell pattern of gene expression as a possible cause for the discrepancy between phenotypes involving defective orthologous genes in man and mouse. Interestingly, in the photoreceptor cells, myosin VIIA is mainly localized in the inner and base of outer segments as well as in the synaptic ending region where it is co-localized with the synaptic vesicles. Therefore, we suggest that myosin VIIA might play a role in the trafficking of ribbon-synaptic vesicle complexes and the renewal processes of the outer photoreceptor disks."	"Human myosin VIIA responsible for the Usher 1B syndrome: a predicted membrane-associated motor protein expressed in developing sensory epithelia. The gene encoding human myosin VIIA is responsible for Usher syndrome type III (USH1B), a disease which associates profound congenital sensorineural deafness, vestibular dysfunction, and retinitis pigmentosa. The reconstituted cDNA sequence presented here predicts a 2215 amino acid protein with a typical unconventional myosin structure. This protein is expected to dimerize into a two-headed molecule. The C terminus of its tail shares homology with the membrane-binding domain of the band 4.1 protein superfamily. The gene consists of 48 coding exons. It encodes several alternatively spliced forms. In situ hybridization analysis in human embryos demonstrates that the myosin VIIA gene is expressed in the pigment epithelium and the photoreceptor cells of the retina, thus indicating that both cell types may be involved in the USH1B retinal degenerative process. In addition, the gene is expressed in the human embryonic cochlear and vestibular neuroepithelia. We suggest that deafness and vestibular dysfunction in USH1B patients result from a defect in the morphogenesis of the inner ear sensory cell stereocilia."	"Expression in cochlea and retina of myosin VIIa, the gene product defective in Usher syndrome type 1B. Myosin VIIa is a newly identified member of the myosin superfamily of actin-based motors. Recently, the myosin VIIa gene was identified as the gene defective in shaker-1, a recessive deafness in mice [Gibson, F., Walsh, J., Mburu, P., Varela, A., Brown, K.A., Antonio, M., Beisel, K.W., Steel, K.P. &amp; Brown, S.D.M. (1995) Nature (London) 374, 62-64], and in human Usher syndrome type 1B, an inherited disease characterized by congenital deafness, vestibular dysfunction, and retinitis pigmentosa [Weil, D., Blanchard, S., Kaplan, J., Guilford, P., Gibson, F., Walsh, J., Mburu, P., Varela, A., Levilliers, J., Weston, M.D., Kelley, P.M., Kimberling, W.J., Wagenaar, M., Levi-Acobas, F., Larget-Piet, D., Munnich, A., Steel, K.P., Brown, S.D.M. &amp; Petit, C. (1995) Nature (London) 374, 60-61]. To understand the normal function of myosin VIIa and how it could cause these disease phenotypes when defective, we generated antibodies specific to the tail portion of this unconventional myosin. We found that myosin VIIa was expressed in cochlea, retina, testis, lung, and kidney. In cochlea, myosin VIIa expression was restricted to the inner and outer hair cells, where it was found in the apical stereocilia as well as the cytoplasm. In the eye, myosin VIIa was expressed by the retinal pigmented epithelial cells, where it was enriched within the apical actin-rich domain of this cell type. The cell-specific localization of myosin VIIa suggests that the blindness and deafness associated with Usher syndrome is due to lack of proper myosin VIIa function within the cochlear hair cells and the retinal pigmented epithelial cells."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"POU4F3"	"nonsyndromic genetic deafness"	"Four Novel Variants in POU4F3 Cause Autosomal Dominant Nonsyndromic Hearing Loss. Hereditary hearing loss is one of the most common sensory disabilities worldwide. Mutation of POU domain class 4 transcription factor 3 (POU4F3) is considered the pathogenic cause of autosomal dominant nonsyndromic hearing loss (ADNSHL), designated as autosomal dominant nonsyndromic deafness 15. In this study, four novel variants in POU4F3, c.696G&gt;T (p.Glu232Asp), c.325C&gt;T (p.His109Tyr), c.635T&gt;C (p.Leu212Pro), and c.183delG (p.Ala62Argfs∗22), were identified in four different Chinese families with ADNSHL by targeted next-generation sequencing and Sanger sequencing. Based on the American College of Medical Genetics and Genomics guidelines, c.183delG (p.Ala62Argfs∗22) is classified as a pathogenic variant, c.696G&gt;T (p.Glu232Asp) and c.635T&gt;C (p.Leu212Pro) are classified as likely pathogenic variants, and c.325C&gt;T (p.His109Tyr) is classified as a variant of uncertain significance. Based on previous reports and the results of this study, we speculated that POU4F3 pathogenic variants are significant contributors to ADNSHL in the East Asian population. Therefore, screening of POU4F3 should be a routine examination for the diagnosis of hereditary hearing loss."	"Generation of inner ear hair cells by direct lineage conversion of primary somatic cells. The mechanoreceptive sensory hair cells in the inner ear are selectively vulnerable to numerous genetic and environmental insults. In mammals, hair cells lack regenerative capacity, and their death leads to permanent hearing loss and vestibular dysfunction. Their paucity and inaccessibility has limited the search for otoprotective and regenerative strategies. Growing hair cells in vitro would provide a route to overcome this experimental bottleneck. We report a combination of four transcription factors (Six1, Atoh1, Pou4f3, and Gfi1) that can convert mouse embryonic fibroblasts, adult tail-tip fibroblasts and postnatal supporting cells into induced hair cell-like cells (iHCs). iHCs exhibit hair cell-like morphology, transcriptomic and epigenetic profiles, electrophysiological properties, mechanosensory channel expression, and vulnerability to ototoxin in a high-content phenotypic screening system. Thus, direct reprogramming provides a platform to identify causes and treatments for hair cell loss, and may help identify future gene therapy approaches for restoring hearing. Worldwide, hearing loss is the most common loss of sensation. Most cases of hearing loss are due to the death of specialized hair cells found deep inside the ear. These hair cells convert sounds into nerve impulses which can be understood by the brain. Hair cells naturally degrade as part of aging and can be damaged by other factors including loud noises, and otherwise therapeutic drugs, such as those used in chemotherapy for cancer. In humans and other mammals, once hair cells are lost they cannot be replaced. Hair cells have often been studied using mice, but the small number of hair cells in their ears, and their location deep inside the skull, makes it particularly difficult to study them in this way. Scientists are seeking ways to grow hair cells in the laboratory to make it easier to understand how they work and the factors that contribute to their damage and loss. Different cell types in the body are formed in response to specific combinations of biological signals. Currently, scientists do not have an efficient way to grow hair cells in the laboratory, because the correct signals needed to create them are not known. Menendez et al. have now identified four proteins which, when activated, convert fibroblasts, a common type of cell, into hair cells similar to those in the ear. These proteins are called Six1, Atoh1, Pou4f3 and Gfi1. Menendez et al. termed the resulting cells induced hair cells, or iHCs for short, and analyzed these cells to identify those characteristics that are similar to normal hair cells, as well as their differences. Importantly, the iHCs were found to be damaged by the same chemicals that specifically harm normal hair cells, suggesting they are useful test subjects. The ability to create hair cells in the laboratory using more easily available cells has many uses. These cells can help to understand the normal function of hair cells and how they become damaged. They can also be used to test new drugs to assess their success in preventing or reversing hearing loss. These findings may also lead to genetic solutions to curing hearing loss."	"Identification of two novel mutations in POU4F3 gene associated with autosomal dominant hearing loss in Chinese families. Autosomal dominant non-syndromic hearing loss is genetically heterogeneous with 47 genes identified to date, including POU4F3. In this study, by using a next-generation sequencing panel targeting 127 deafness genes, we identified a pathogenic frameshift mutation c.704_705del and a missense mutation c.593G&gt;A in two three-generation Chinese families with late-onset progressive ADNSHL, respectively. The novel mutations of POU4F3 co-segregated with the deafness phenotype in these two families. c.704_705del caused a frameshift p.T235fs and c.593G&gt;A caused an amino acid substitution of p.R198H. Both mutations led to an abnormal and incomplete protein structure. POU4F3 with either of the two mutations was transiently transfected into HEI-OC1 and HEK 293 cell lines and immunofluorescence assay was performed to investigate the subcellular localization of mutated protein. The results indicated that both c.704_705del (p.T235fs) and c.593G&gt;A (p.R198H) could impair the nuclear localization function of POU4F3. The p.R198H POU4F3 protein was detected as a weak band of the correct molecular weight, indicating that the stability of p.R198H POU4F3 differed from that of the wild-type protein. While, the p.T235fs POU4F3 protein was expressed with a smaller molecular weight, implying this mutation result in a frameshift and premature termination of the POU4F3 protein. In summary, we report two novel mutations of POU4F3 associated with progressive ADNSHL and explored their effects on POU4F3 nuclear localization. These findings expanded the mutation spectrum of POU4F3 and provided new knowledge for the pathogenesis of POU4F3 in hearing loss."	"Characterization of the transcriptomes of Atoh1-induced hair cells in the mouse cochlea. Postnatal mammalian cochlear hair cells (HCs) can be regenerated by direct transdifferentiation or by mitotic regeneration from supporting cells through many pathways, including Atoh1, Wnt, Hedgehog and Notch signaling. However, most new HCs are immature HCs. In this study we used RNA-Seq analysis to compare the differences between the transcriptomes of Atoh1 overexpression-induced new HCs and the native HCs, and to define the factors that might help to promote the maturation of new HCs. As expected, we found Atoh1-induced new HCs had obvious HC characteristics as demonstrated by the expression of HC markers such as Pou4f3 and Myosin VIIA (Myo7a). However, Atoh1-induced new HCs had significantly lower expression of genes that are related to HC function such as Slc26a5 (Prestin), Slc17a8 and Otof. We found that genes related to HC cell differentiation and maturation (Kcnma1, Myo6, Myo7a, Grxcr1, Gfi1, Wnt5a, Fgfr1, Gfi1, Fgf8 etc.) had significantly lower expression levels in new HCs compared to native HCs. In conclusion, we found a set of genes that might regulate the differentiation and maturation of new HCs, and these genes might serve as potential new therapeutic targets for functional HC regeneration and hearing recovery."	"Dynamic changes in cis-regulatory occupancy by Six1 and its cooperative interactions with distinct cofactors drive lineage-specific gene expression programs during progressive differentiation of the auditory sensory epithelium. The transcription factor Six1 is essential for induction of sensory cell fate and formation of auditory sensory epithelium, but how it activates gene expression programs to generate distinct cell-types remains unknown. Here, we perform genome-wide characterization of Six1 binding at different stages of auditory sensory epithelium development and find that Six1-binding to cis-regulatory elements changes dramatically at cell-state transitions. Intriguingly, Six1 pre-occupies enhancers of cell-type-specific regulators and effectors before their expression. We demonstrate in-vivo cell-type-specific activity of Six1-bound novel enhancers of Pbx1, Fgf8, Dusp6, Vangl2, the hair-cell master regulator Atoh1 and a cascade of Atoh1's downstream factors, including Pou4f3 and Gfi1. A subset of Six1-bound sites carry consensus-sequences for its downstream factors, including Atoh1, Gfi1, Pou4f3, Gata3 and Pbx1, all of which physically interact with Six1. Motif analysis identifies RFX/X-box as one of the most significantly enriched motifs in Six1-bound sites, and we demonstrate that Six1-RFX proteins cooperatively regulate gene expression through binding to SIX:RFX-motifs. Six1 targets a wide range of hair-bundle regulators and late Six1 deletion disrupts hair-bundle polarity. This study provides a mechanistic understanding of how Six1 cooperates with distinct cofactors in feedforward loops to control lineage-specific gene expression programs during progressive differentiation of the auditory sensory epithelium."	"The emergence of transcriptional identity in somatosensory neurons. More than twelve morphologically and physiologically distinct subtypes of primary somatosensory neuron report salient features of our internal and external environments<sup>1-4</sup>. It is unclear how specialized gene expression programs emerge during development to endow these subtypes with their unique properties. To assess the developmental progression of transcriptional maturation of each subtype of principal somatosensory neuron, we generated a transcriptomic atlas of cells traversing the primary somatosensory neuron lineage in mice. Here we show that somatosensory neurogenesis gives rise to neurons in a transcriptionally unspecialized state, characterized by co-expression of transcription factors that become restricted to select subtypes as development proceeds. Single-cell transcriptomic analyses of sensory neurons from mutant mice lacking transcription factors suggest that these broad-to-restricted transcription factors coordinate subtype-specific gene expression programs in subtypes in which their expression is maintained. We also show that neuronal targets are involved in this process; disruption of the prototypic target-derived neurotrophic factor NGF leads to aberrant subtype-restricted patterns of transcription factor expression. Our findings support a model in which cues that emanate from intermediate and final target fields promote neuronal diversification in part by transitioning cells from a transcriptionally unspecialized state to transcriptionally distinct subtypes by modulating the selection of subtype-restricted transcription factors."	"Pou4f3 gene mutation promotes autophagy and apoptosis of cochlear hair cells in cisplatin-induced deafness mice. Pou4f3 plays an important role in the development of hair cells in the inner ear sensory epithelia. Autophagy is related to the auditory damage. However, the role and mechanism of Pou4f3 on drug-induced ototoxicity are incompletely understood. Hence, this study aimed to explore the effects of Pou4f3 on the apoptosis of cochlear hair cells (CHCs) and to explore whether autophagy was involved in this process. The cisplatin was used to produce a loss of CHCs to create a murine model of deafness. The AAV vectors were delivered into the scala media through the lateral wall. Compared with the control mice, the cisplatin-treated mice exhibited significantly enhanced apoptosis and autophagy in the cochleae, accompanied by a notably decreased Pou4f3 levels. Both mutation and knockdown of Pou4f3 promoted the apoptosis- and autophagy-related protein levels, and enhanced the cisplatin-induced levels of apoptosis- and autophagy-related proteins. Furthermore, the autophagy activator rapamycin promoted the apoptosis and autophagy in the cochlea. In addition, the autophagy inhibitor 3-MA overturned the promoting effect of Pou4f3 knockdown on the apoptosis and autophagy. Collectively, in cisplatin-induced deafness mice, the Pou4f3 gene mutation facilitated apoptosis of cochlear hair cells, at least partially, through inducing autophagy."	"An overview of research trends and genetic polymorphisms for noise-induced hearing loss from 2009 to 2018. Recently, there has been increased studies in noise-induced hearing loss (NIHL). We aimed to make an overview of research trends and genetic polymorphisms for NIHL from 2009 to 2018 with VOSviewer software. A total of 2391 papers were identified for research trends analysis in NIHL and 33 studies identified for a brief review of genetic polymorphisms in human NIHL. The number of publications has been increasing over the past decade. The journal Hearing Research published the most articles (218). The USA contributed the largest number of papers (1042; 43.58%), with the most citations (18,987) and the highest H-index (60). The University of Washington was the most contributive institution. Liberman MC published the most articles (32), and Kujawa SG possessed the highest co-citations (584). Except for high-frequency keywords identified by the software, &quot;prevalence,&quot; &quot;oxidative stress,&quot; &quot;hair cells,&quot; and &quot;cochlear implant&quot; were also the latest research frontiers. HSPA1A rs1043618, HSPA1L rs2227956, PON2 rs12026 and rs7785846, SOD2 rs2855116, KCNE1 rs2070358, KCNQ4 rs34287852, GJB2 rs3751385, PCDH15 rs7095441 and rs11004085, GRHL2 rs1981361, ITGA8 rs10508489, MYH14 rs667907, and POU4F3 rs891969 were the research hotspots and were replicated in independent samples. Inflammation response underlying NIHL has emerged and should be considered as a pioneering field in the future for the prevention of NIHL and conservation of hearing."	"Performance of DNA methylation assays for detection of high-grade cervical intraepithelial neoplasia (CIN2+): a systematic review and meta-analysis. To conduct a meta-analysis of performance of DNA methylation in women with high-grade cervical intraepithelial neoplasia (CIN2+). Medline and Embase databases were searched for studies of methylation markers versus histological endpoints. Pooled sensitivity, specificity and positive predictive value (PPV) for CIN2+ were derived from bivariate models. Relative sensitivity and specificity for CIN2+ compared to cytology and HPV16/18 genotyping were pooled using random-effects models. Sixteen thousand three hundred thirty-six women in 43 studies provided data on human genes (CADM1, MAL, MIR-124-2, FAM19A4, POU4F3, EPB41L3, PAX1, SOX1) and HPV16 (L1/L2). Most (81%) studies evaluated methylation assays following a high-risk (HR)-HPV-positive or abnormal cytology result. Pooled CIN2+ and CIN3+ prevalence was 36.7% and 21.5%. For a set specificity of 70%, methylation sensitivity for CIN2+ and CIN3+ were 68.6% (95% CI: 62.9-73.8) and 71.1% (95% CI: 65.7-76.0) and PPV were 53.4% (95% CI: 44.4-62.1) and 35.0% (95% CI: 28.9-41.6). Among HR-HPV+ women, the relative sensitivity of methylation for CIN2+ was 0.81 (95% CI: 0.63-1.04) and 1.22 (95% CI: 1.05-1.42) compared to cytology of atypical squamous cells of undetermined significance, or greater (ASCUS+) and HPV16/18 genotyping, respectively, while relative specificity was 1.25 (95% CI: 0.99-1.59) and 1.03 (95% CI: 0.94-1.13), respectively. DNA methylation is significantly higher in CIN2+ and CIN3+ compared to ≤CIN1. As triage test, DNA methylation has higher specificity than cytology ASCUS+ and higher sensitivity than HPV16/18 genotyping."	"Open chromatin dynamics in prosensory cells of the embryonic mouse cochlea. Hearing loss is often due to the absence or the degeneration of hair cells in the cochlea. Understanding the mechanisms regulating the generation of hair cells may therefore lead to better treatments for hearing disorders. To elucidate the transcriptional control mechanisms specifying the progenitor cells (i.e. prosensory cells) that generate the hair cells and support cells critical for hearing function, we compared chromatin accessibility using ATAC-seq in sorted prosensory cells (Sox2-EGFP<sup>+</sup>) and surrounding cells (Sox2-EGFP<sup>-</sup>) from E12, E14.5 and E16 cochlear ducts. In Sox2-EGFP<sup>+</sup>, we find greater accessibility in and near genes restricted in expression to the prosensory region of the cochlear duct including Sox2, Isl1, Eya1 and Pou4f3. Furthermore, we find significant enrichment for the consensus binding sites of Sox2, Six1 and Gata3-transcription factors required for prosensory development-in the open chromatin regions. Over 2,200 regions displayed differential accessibility with developmental time in Sox2-EGFP<sup>+</sup> cells, with most changes in the E12-14.5 window. Open chromatin regions detected in Sox2-EGFP<sup>+</sup> cells map to over 48,000 orthologous regions in the human genome that include regions in genes linked to deafness. Our results reveal a dynamic landscape of open chromatin in prosensory cells with potential implications for cochlear development and disease."	"Generation of new hair cells by DNA methyltransferase (Dnmt) inhibitor 5-azacytidine in a chemically-deafened mouse model. Regeneration of mature mammalian inner ear hair cells remains to be a challenge. This study aims to evaluate the ability of DNA methyltransferase (Dnmt) inhibitor 5-azacytidine (5-aza) to generate outer hair cells (OHCs) in a chemically-deafened adult mouse model. 5-aza was administrated into the mouse inner ear via the round window. Immunofluorescence was used to examine the expression of hair cell specific proteins following 5-aza treatment. The results showed that in the chemically-deafened mouse cochlea, new OHCs were found post 5-aza treatment, whereas OHCs were completely lost in saline-treated mice. New hair cells expressed multiple hair cell markers included Myosin VIIa, Pou4f3 and Myosin VI. Newly-generated hair cells presented in three cochlear turns and were able to survive for at least six weeks. The effects of new hair cells generation by 5-aza were concentration dependent. Quantitative PCR study indicates that 5-aza may function through Dnmt1 inhibition. The results of this report suggest that the Dnmt inhibitor 5-aza may promote hair cell regeneration in a chemically-deafened mouse model."	"Atoh1 and other related key regulators in the development of auditory sensory epithelium in the mammalian inner ear: function and interplay. Damage or loss of auditory hair cells leads to irreversible sensorineural hearing loss in human, thus regeneration of these cells to reconstruct auditory sensory epithelium holds the promise for the treatment of deafness. Regulatory factors involved in the development of auditory sensory epithelium play crucial roles in hair cell regeneration and hearing restoration. Here, we first focus on the transcription factor Atoh1 which is critical for hair cell development and regeneration, and comprehensively summarize the current understanding of the protein structure, target binding motif, developmental expression pattern, functional role, and upstream and downstream regulatory mechanism of Atoh1 in the context of controlling the cell fate commitment to hair cells or transdifferentiation from supporting cells. We also discuss cellular context dependency of Atoh1 in hair cell induction which should be taken into consideration when using Atoh1 gene therapy for hair cell regeneration. Next, we review the roles of Gfi1, Pou4f3, and Barhl1 in hair cell maturation and maintenance, and suggest that manipulation of these genes and their downstream targets will be helpful for the generation of functional hair cells with long-term viability. Finally, we provide an overview of the interplay between Notch, Wnt, Shh, and FGF signaling pathways during auditory sensory epithelium development. By analyzing crosstalk between these pathways, we suggest that combination of Wnt signaling activation with Hey1 and Hey2 inhibition will be crucial for hair cell regeneration and hearing restoration. Furthermore, this review highlights the importance of deeper understanding of the cellular context for hair cell development and the interconnection between these key regulators in developing new strategies to treat sensorineural hearing loss."	"The Effect of the MicroRNA-183 Family on Hair Cell-Specific Markers of Human Bone Marrow-Derived Mesenchymal Stem Cells. Hearing loss is considered the most common sensory disorder across the world. Nowadays, a cochlear implant can be an effective treatment for patients. Moreover, it is often believed that sensorineural hearing loss in humans is caused by loss or disruption of the function of hair cells in the cochlea. In this respect, mesenchymal cells can be a good candidate for cell-based therapeutic approaches. To this end, the potential of human bone marrow-derived mesenchymal stem cells to differentiate into hair cells with the help of transfection of microRNA in vitro was investigated. MicroRNA mimics (miRNA-96, 182, and 183) were transfected to human bone marrow-derived mesenchymal stem cells using Lipofec-tamine as a common transfection reagent following the manufacturer's instructions at 50 nM for microRNA mimics and 50 nM for the scramble. The changes in cell morphology were also observed under an inverted microscope. Then, the relative expression levels of SOX2, POU4F3, MYO7A, and calretinin were assayed using real-time polymerase chain reaction according to the ΔΔCt method. The ATOH1 level was similarly measured via real-time polymerase chain reaction and Western blotting. The results showed that increased expression of miRNA-182, but neither miRNA-96 nor miRNA-183, could lead to higher expression levels in some hair cell markers. The morphology of the cells also did not change in this respect, but the evaluation of gene expression at the levels of mRNA could promote the expression of the ATOH1, SOX2, and POU4F3 markers. Furthermore, miRNA-182 could enhance the expression of ATOH1 at the protein level. According to the results of this study, it was concluded that miRNA-182 could serve as a crucial function in hair cell differentiation by the upregulation of SOX2, POU4F3, and ATOH1 to promote a hair cell's fate."	"Mass spectrometry quantitation of proteins from small pools of developing auditory and vestibular cells. Hair cells of the inner ear undergo postnatal development that leads to formation of their sensory organelles, synaptic machinery, and in the case of cochlear outer hair cells, their electromotile mechanism. To examine how the proteome changes over development from postnatal days 0 through 7, we isolated pools of 5000 Pou4f3-Gfp positive or negative cells from the cochlea or utricles; these cell pools were analysed by data-dependent and data-independent acquisition (DDA and DIA) mass spectrometry. DDA data were used to generate spectral libraries, which enabled identification and accurate quantitation of specific proteins using the DIA datasets. DIA measurements were extremely sensitive; we were able to detect proteins present at less than one part in 100,000 from only 312 hair cells. The DDA and DIA datasets will be valuable for accurately quantifying proteins in hair cells and non-hair cells over this developmental window."	"Transcription factor induced conversion of human fibroblasts towards the hair cell lineage. Hearing loss is the most common sensorineural disorder, affecting over 5% of the population worldwide. Its most frequent cause is the loss of hair cells (HCs), the mechanosensory receptors of the cochlea. HCs transduce incoming sounds into electrical signals that activate auditory neurons, which in turn send this information to the brain. Although some spontaneous HC regeneration has been observed in neonatal mammals, the very small pool of putative progenitor cells that have been identified in the adult mammalian cochlea is not able to replace the damaged HCs, making any hearing impairment permanent. To date, guided differentiation of human cells to HC-like cells has only been achieved using either embryonic stem cells (ESCs) or induced pluripotent stem cells (iPSCs). However, use of such cell types suffers from a number of important disadvantages, such as the risk of tumourigenicity if transplanted into the host´s tissue. We have obtained cells expressing hair cell markers from cultures of human fibroblasts by overexpression of GFI1, Pou4f3 and ATOH1 (GPA), three genes that are known to play a critical role in the development of HCs. Immunocytochemical, qPCR and RNAseq analyses demonstrate the expression of genes typically expressed by HCs in the transdifferentiated cells. Our protocol represents a much faster approach than the methods applied to ESCs and iPSCs and validates the combination of GPA as a set of genes whose activation leads to the direct conversion of human somatic cells towards the hair cell lineage. Our observations are expected to contribute to the development of future therapies aimed at the regeneration of the auditory organ and the restoration of hearing."	"Pituitary adenylate cyclase-activating polypeptide (PACAP-38) plays an inhibitory role against inflammation induced by chemical damage to zebrafish hair cells. Pituitary adenylate cyclase-activating polypeptide (PACAP-38) is a common neuropeptide exerting a wide spectrum of functions in many fields, including immunology. In the present study, 5-day post-fertilization (dpf) zebrafish larvae of three diverse genetic lines [transgenic lines Tg(MPX:GFP) with GFP-labelled neutrophils and Tg(pou4f3:GAP-GFP) with GFP-labelled hair cells and the wild-type Tuebingen] were used to investigate an inhibitory role of PACAP-38 in inflammation associated with damaged hair cells of the lateral line. Individuals of each genetic line were assigned to four groups: (1) control, and those consisting of larvae exposed to (2) 10 µM CuSO4, (3) 10 µM CuSO4+100 nM PACAP-38 and (4) 100 nM PACAP-38, respectively. Forty-minute exposure to CuSO4 solution was applied to evoke necrosis of hair cells and consequent inflammation. The inhibitory role of PACAP-38 was investigated in vivo under a confocal microscope by counting neutrophils migrating towards damaged hair cells in Tg(MPX:GFP) larvae. In CuSO4-treated individuals, the number of neutrophils associated with hair cells was dramatically increased, while PACAP-38 co-treatment resulted in its over 2-fold decrease. However, co-treatment with PACAP-38 did not prevent hair cells from extensive necrosis, which was found in Tg(pou4f3:GAP-GFP) individuals. Real-Time PCR analysis performed in wild-type larvae demonstrated differential expression pattern of stress and inflammation inducible markers. The most significant findings showed that CuSO4 exposure up-regulated the expression of IL-8, IL-1β, IL-6 and ATF3, while after PACAP-38 co-treatment expression levels of these genes were significantly decreased. The presence of transcripts for all PACAP receptors in neutrophils was also revealed. Adcyap1r1a and vipr1b appeared to be predominant forms. The present results suggest that PACAP-38 should be considered as a factor playing an important regulatory role in inflammatory response associated with pathological processes affecting zebrafish hair cells and it cannot be excluded that this interesting property has more universal significance."	"A Missense Mutation in POU4F3 Causes Midfrequency Hearing Loss in a Chinese ADNSHL Family. Hereditary nonsyndromic hearing loss is extremely heterogeneous. Mutations in the POU class 4 transcription factor 3 (POU4F3) are known to cause autosomal dominant nonsyndromic hearing loss linked to the loci of DFNA15. In this study, we describe a pathogenic missense mutation in POU4F3 in a four-generation Chinese family (6126) with midfrequency, progressive, and postlingual autosomal dominant nonsyndromic hearing loss (ADNSHL). By combining targeted capture of 129 known deafness genes, next-generation sequencing, and bioinformatic analysis, we identified POU4F3 c.602T&gt;C (p.Leu201Pro) as the disease-causing variant. This variant cosegregated with hearing loss in other family members but was not detected in 580 normal controls or the ExAC database and could be classified as a &quot;pathogenic variant&quot; according to the American College of Medical Genetics and Genomics guidelines. We conclude that POU4F3 c.602T&gt;C (p.Leu201Pro) is related to midfrequency hearing loss in this family. Routine examination of POU4F3 is necessary for the genetic diagnosis of midfrequency hearing loss."	"Insights into Electroreceptor Development and Evolution from Molecular Comparisons with Hair Cells. The vertebrate lateral line system comprises a mechanosensory division, with neuromasts containing hair cells that detect local water movement (&quot;distant touch&quot;); and an electrosensory division, with electrosensory organs that detect the weak, low-frequency electric fields surrounding other animals in water (primarily used for hunting). The entire lateral line system was lost in the amniote lineage with the transition to fully terrestrial life; the electrosensory division was lost independently in several lineages, including the ancestors of frogs and of teleost fishes. (Electroreception with different characteristics subsequently evolved independently within two teleost lineages.) Recent gene expression studies in a non-teleost actinopterygian fish suggest that electroreceptor ribbon synapses employ the same transmission mechanisms as hair cell ribbon synapses, and show that developing electrosensory organs express transcription factors essential for hair cell development, including Atoh1 and Pou4f3. Previous hypotheses for electroreceptor evolution suggest either that electroreceptors and hair cells evolved independently in the vertebrate ancestor from a common ciliated secondary cell, or that electroreceptors evolved from hair cells. The close developmental and putative physiological similarities implied by the gene expression data support the latter hypothesis, i.e., that electroreceptors evolved in the vertebrate ancestor as a &quot;sister cell-type&quot; to lateral line hair cells."	"RNA-seq transcriptomic analysis of adult zebrafish inner ear hair cells. Although hair cells are the sensory receptors of the auditory and vestibular systems in the ears of all vertebrates, hair cell properties are different between non-mammalian vertebrates and mammals. To understand the basic biological properties of hair cells from non-mammalian vertebrates, we examined the transcriptome of adult zebrafish auditory and vestibular hair cells. GFP-labeled hair cells were isolated from inner-ear sensory epithelia of a pou4f3 promoter-driven GAP-GFP line of transgenic zebrafish. One thousand hair cells and 1,000 non-sensory surrounding cells (nsSCs) were separately collected for each biological replicate, using the suction pipette technique. RNA sequencing of three biological replicates for the two cell types was performed and analyzed. Comparisons between hair cells and nsSCs allow identification of enriched genes in hair cells, which may underlie hair cell specialization. Our dataset provides an extensive resource for understanding the molecular mechanisms underlying morphology, function, and pathology of adult zebrafish hair cells. It also establishes a framework for future characterization of genes expressed in hair cells and the study of hair cell evolution."	"In Vitro Differentiation of Human Bone Marrow Mesenchymal Stem Cells to Hair Cells Using Growth Factors. In this study, we attempted to differentiated human bone marrow-derived mesenchymal stem cells (hBMSCs) to auditory hair cells using growth factors. Retinoic acid (RA), basic fibroblast growth factor (bFGF), and epidermal growth factor (EGF) were added to hBMSCs cell culture medium. The cells were evaluated morphologically and the expression of SOX2, POU4F3, MYO7A, and Calretinin at mRNA level and ATOH1 mRNA and protein expression. After treatment with the growth factors, the morphology of the cells did not change, but evaluation of gene expression at the mRNA level increased the expression of the ATOH1, SOX2, and POU4F3 markers. Growth factors increased the expression of ATOH1 at the protein level. The expression of calretinin showed decreased and MYO7A no significant change in expression. hBMSCs have the potential to differentiate to hair cell-like using the RA, bFGF, and EGF."	"661W is a retinal ganglion precursor-like cell line in which glaucoma-associated optineurin mutants induce cell death selectively. A photoreceptor cell line, 661W, derived from a mouse retinal tumor that expresses several markers of cone photoreceptor cells has been described earlier. However, these cells can be differentiated into neuronal cells. Here, we report that this cell line expressed certain markers specific to retinal ganglion cells such as Rbpms, Brn3b (Pou4f2), Brn3c (Pou4f3), Thy1 and γ-synuclein (Sncg), and some other markers of neuronal cells (beta-III tubulin, NeuN and MAP2). These cells also expressed Opn1mw, a cone-specific marker and nestin, a marker for neural precursor cells. Two glaucoma-associated mutants of OPTN, E50K and M98K, but not an amyotrophic lateral sclerosis-associated mutant, E478G, induced cell death selectively in 661W cells. However, in a motor neuron cell line, NSC34, E478G mutant of OPTN but not E50K and M98K induced cell death. We conclude that 661W is a retinal ganglion precursor-like cell line, which shows properties of both retinal ganglion and photoreceptor cells. We suggest that these cells could be utilized for exploring the mechanisms of cell death induction and cytoprotection relevant for glaucoma pathogenesis. RGC-5 cell line which probably arose from 661W cells showed expression of essentially the same markers of retinal ganglion cells and neuronal cells as seen in 661W cells."	"The feasibility of detecting endometrial and ovarian cancer using DNA methylation biomarkers in cervical scrapings. We hypothesized that DNA methylation of development-related genes may occur in endometrial cancer (EC)/ovarian cancer (OC) and may be detected in cervical scrapings. We tested methylation status by quantitative methylation-specific polymerase chain reaction for 14 genes in DNA pools of endometrial and OC tissues. Tissues of EC/normal endometrium, OC/normal ovary, were verified in training set using cervical scrapings of 10 EC/10 OC patients and 10 controls, and further validated in the testing set using independent cervical scrapings in 30 EC/30 OC patients and 30 controls. We generated cutoff values of methylation index (M-index) from cervical scrapings to distinguish between cancer patients and control. Sensitivity/specificity of DNA methylation biomarkers in detecting EC and OC was calculated. Of 14 genes, 4 (PTGDR, HS3ST2, POU4F3, MAGI2) showed hypermethylation in EC and OC tissues, and were verified in training set. POU4F3 and MAGI2 exhibited hypermethylation in training set were validated in independent cases. The mean M-index of POU4F3 is 78.28 in EC and 20.36 in OC, which are higher than that in controls (6.59; p&lt;0.001 and p=0.100, respectively), and that of MAGI2 is 246.0 in EC and 12.2 in OC, which is significantly higher that than in controls (2.85; p&lt;0.001 and p=0.480, respectively). Sensitivity and specificity of POU4F3/MAGI2 were 83%-90% and 69%-75% for detection of EC, and 61% and 62%-69% for the detection of OC. The findings demonstrate the potential of EC/OC detection through testing for DNA methylation in cervical scrapings."	"A novel missense variant in the nuclear localization signal of POU4F3 causes autosomal dominant non-syndromic hearing loss. Autosomal dominant non-syndromic hearing loss (ADNSHL) is genetically heterogeneous with more than 35 genes identified to date. Using a massively parallel sequencing panel targeting 159 deafness genes, we identified a novel missense variant of POU4F3 (c.982A&gt;G, p.Lys328Glu) which co-segregated with the deafness phenotype in a three-generation Taiwanese family with ADNSHL. This variant could be classified as a &quot;pathogenic variant&quot; according to the American College of Medical Genetics and Genomics guidelines. We then performed subcellular localization experiments and confirmed that p.Lys328Glu compromised transportation of POU4F3 from the cytoplasm to the nucleus. POU3F4 p.Lys328Glu was located within a bipartite nuclear localization signal (NLS), and was the first missense variant in bipartite NLS of POU4F3 validated in functional studies. These findings expanded the mutation spectrum of POU4F3 and provided insight into the pathogenesis associated with aberrant POU4F3 localization."	"Erratum to &quot;A Novel Nonsense Mutation of POU4F3 Gene Causes Autosomal Dominant Hearing Loss&quot;. [This corrects the article DOI: 10.1155/2016/1512831.]."	"POU4F3 mutation screening in Japanese hearing loss patients: Massively parallel DNA sequencing-based analysis identified novel variants associated with autosomal dominant hearing loss. A variant in a transcription factor gene, POU4F3, is responsible for autosomal dominant nonsyndromic hereditary hearing loss, DFNA15. To date, 14 variants, including a whole deletion of POU4F3, have been reported to cause HL in various ethnic groups. In the present study, genetic screening for POU4F3 variants was carried out for a large series of Japanese hearing loss (HL) patients to clarify the prevalence and clinical characteristics of DFNA15 in the Japanese population. Massively parallel DNA sequencing of 68 target candidate genes was utilized in 2,549 unrelated Japanese HL patients (probands) to identify genomic variations responsible for HL. The detailed clinical features in patients with POU4F3 variants were collected from medical charts and analyzed. Novel 12 POU4F3 likely pathogenic variants (six missense variants, three frameshift variants, and three nonsense variants) were successfully identified in 15 probands (2.5%) among 602 families exhibiting autosomal dominant HL, whereas no variants were detected in the other 1,947 probands with autosomal recessive or inheritance pattern unknown HL. To obtain the audiovestibular configuration of the patients harboring POU4F3 variants, we collected audiograms and vestibular symptoms of the probands and their affected family members. Audiovestibular phenotypes in a total of 24 individuals from the 15 families possessing variants were characterized by progressive HL, with a large variation in the onset age and severity with or without vestibular symptoms observed. Pure-tone audiograms indicated the most prevalent configuration as mid-frequency HL type followed by high-frequency HL type, with asymmetry observed in approximately 20% of affected individuals. Analysis of the relationship between age and pure-tone average suggested that individuals with truncating variants showed earlier onset and slower progression of HL than did those with non-truncating variants. The present study showed that variants in POU4F3 were a common cause of autosomal dominant HL."	"In Vivo Interplay between p27<sup>Kip1</sup>, GATA3, ATOH1, and POU4F3 Converts Non-sensory Cells to Hair Cells in Adult Mice. Hearing loss is widespread and persistent because mature mammalian auditory hair cells (HCs) are nonregenerative. In mice, the ability to regenerate HCs from surrounding supporting cells (SCs) declines abruptly after postnatal maturation. We find that combining p27<sup>Kip1</sup> deletion with ectopic ATOH1 expression surmounts this age-related decline, leading to conversion of SCs to HCs in mature mouse cochleae and after noise damage. p27<sup>Kip1</sup> deletion, independent of canonical effects on Rb-family proteins, upregulated GATA3, a co-factor for ATOH1 that is lost from SCs with age. Co-activation of GATA3 or POU4F3 and ATOH1 promoted conversion of SCs to HCs in adult mice. Activation of POU4F3 alone also converted mature SCs to HCs in vivo. These data illuminate a genetic pathway that initiates auditory HC regeneration and suggest p27<sup>Kip1</sup>, GATA3, and POU4F3 as additional therapeutic targets for ATOH1-mediated HC regeneration."	"Insights into electrosensory organ development, physiology and evolution from a lateral line-enriched transcriptome. The anamniote lateral line system, comprising mechanosensory neuromasts and electrosensory ampullary organs, is a useful model for investigating the developmental and evolutionary diversification of different organs and cell types. Zebrafish neuromast development is increasingly well understood, but neither zebrafish nor Xenopus is electroreceptive and our molecular understanding of ampullary organ development is rudimentary. We have used RNA-seq to generate a lateral line-enriched gene-set from late-larval paddlefish (Polyodon spathula). Validation of a subset reveals expression in developing ampullary organs of transcription factor genes critical for hair cell development, and genes essential for glutamate release at hair cell ribbon synapses, suggesting close developmental, physiological and evolutionary links between non-teleost electroreceptors and hair cells. We identify an ampullary organ-specific proneural transcription factor, and candidates for the voltage-sensing L-type Cav channel and rectifying Kv channel predicted from skate (cartilaginous fish) ampullary organ electrophysiology. Overall, our results illuminate ampullary organ development, physiology and evolution."	"Mutation in the Hair Cell Specific Gene POU4F3 Is a Common Cause for Autosomal Dominant Nonsyndromic Hearing Loss in Chinese Hans. Autosomal dominant nonsyndromic hearing loss (ADNSHL) is extremely heterogeneous. So far the genetic etiological contribution of the gene POU4F3 associated with ADNSHL has been rarely reported. In our previous study, a c.603_604delGG mutation in the hair cell specific gene POU4F3 has been identified as the pathogenic cause in one of the seven Chinese Han ADNSHL families. In the present study, we performed targeted next-generation sequencing of 144 known deafness genes in another nine Chinese Han ADNSHL families and identified two more novel mutations in POU4F3, p.Leu311Pro and c.120+1G&gt;C, as the pathogenic cause. Clinical characterization of the affected individuals in these three families showed that the three POU4F3 mutations may lead to progressive hearing loss with variable ages of onset and degrees of severity. Our results suggested that mutations in POU4F3 are a relatively common cause (3/16) for ADNSHL in Chinese Hans, which should be routinely screened in such cases during genetic testing."	"Global Analysis of Protein Expression of Inner Ear Hair Cells. The mammalian inner ear (IE) subserves auditory and vestibular sensations via highly specialized cells and proteins. Sensory receptor hair cells (HCs) are necessary for transducing mechanical inputs and stimulating sensory neurons by using a host of known and as yet unknown protein machinery. To understand the protein composition of these unique postmitotic cells, in which irreversible protein degradation or damage can lead to impaired hearing and balance, we analyzed IE samples by tandem mass spectrometry to generate an unbiased, shotgun-proteomics view of protein identities and abundances. By using Pou4f3/eGFP-transgenic mice in which HCs express GFP driven by Pou4f3, we FACS purified a population of HCs to analyze and compare the HC proteome with other IE subproteomes from sensory epithelia and whole IE. We show that the mammalian HC proteome comprises hundreds of uniquely or highly expressed proteins. Our global proteomic analysis of purified HCs extends the existing HC transcriptome, revealing previously undetected gene products and isoform-specific protein expression. Comparison of our proteomic data with mouse and human databases of genetic auditory/vestibular impairments confirms the critical role of the HC proteome for normal IE function, providing a cell-specific pool of candidates for novel, important HC genes. Several proteins identified exclusively in HCs by proteomics and verified by immunohistochemistry map to human genetic deafness loci, potentially representing new deafness genes. Hearing and balance rely on specialized sensory hair cells (HCs) in the inner ear (IE) to convey information about sound, acceleration, and orientation to the brain. Genetically and environmentally induced perturbations to HC proteins can result in deafness and severe imbalance. We used transgenic mice with GFP-expressing HCs, coupled with FACS sorting and tandem mass spectrometry, to define the most complete HC and IE proteome to date. We show that hundreds of proteins are uniquely identified or enriched in HCs, extending previous gene expression analyses to reveal novel HC proteins and isoforms. Importantly, deafness-linked proteins were significantly enriched in HCs, suggesting that this in-depth proteomic analysis of IE sensory cells may hold potential for deafness gene discovery."	"A Novel Nonsense Mutation of POU4F3 Gene Causes Autosomal Dominant Hearing Loss. POU4F3 gene encodes a transcription factor which plays an essential role in the maturation and maintenance of hair cells in cochlea and vestibular system. Several mutations of POU4F3 have been reported to cause autosomal dominant nonsyndromic hearing loss in recent years. In this study, we describe a pathogenic nonsense mutation located in POU4F3 in a four-generation Chinese family. Target region capture sequencing was performed to search for the candidate mutations from 81 genes related to nonsyndromic hearing loss in this family. A novel nonsense mutation of POU4F3, c.337C&gt;T (p. Gln113<sup>⁎</sup>), was identified in a Chinese family characterized by late-onset progressive nonsyndromic hearing loss. The novel mutation cosegregated with hearing loss in this family and was absent in 200 ethnicity-matched controls. The mutation led to a stop codon and thus a truncated protein with no functional domains remained. Transient transfection and immunofluorescence assay revealed that the subcellular localization of the truncated protein differed markedly from normal protein, which could be the underlying reason for complete loss of its normal function. Here, we report the first nonsense mutation of POU4F3 associated with progressive hearing loss and explored the possible underlying mechanism. Routine examination of POU4F3 is necessary for the genetic diagnosis of hereditary hearing loss in the future."	"Maintenance of neuronal size gradient in MNTB requires sound-evoked activity. The medial nucleus of the trapezoid body (MNTB) is an important source of inhibition during the computation of sound location. It transmits fast and precisely timed action potentials at high frequencies; this requires an efficient calcium clearance mechanism, in which plasma membrane calcium ATPase 2 (PMCA2) is a key component. Deafwaddler (dfw<sup> 2J </sup> ) mutant mice have a null mutation in PMCA2 causing deafness in homozygotes (dfw<sup> 2J </sup> /dfw<sup> 2J </sup> ) and high-frequency hearing loss in heterozygotes (+/dfw<sup> 2J </sup> ). Despite the deafness phenotype, no significant differences in MNTB volume or cell number were observed in dfw<sup> 2J </sup> homozygous mutants, suggesting that PMCA2 is not required for MNTB neuron survival. The MNTB tonotopic axis encodes high to low sound frequencies across the medial to lateral dimension. We discovered a cell size gradient along this axis: lateral neuronal somata are significantly larger than medially located somata. This size gradient is decreased in +/dfw<sup> 2J </sup> and absent in dfw<sup> 2J </sup> /dfw<sup> 2J </sup> The lack of acoustically driven input suggests that sound-evoked activity is required for maintenance of the cell size gradient. This hypothesis was corroborated by selective elimination of auditory hair cell activity with either hair cell elimination in Pou4f3 DTR mice or inner ear tetrodotoxin (TTX) treatment. The change in soma size was reversible and recovered within 7 days of TTX treatment, suggesting that regulation of the gradient is dependent on synaptic activity and that these changes are plastic rather than permanent.NEW &amp; NOTEWORTHY Neurons of the medial nucleus of the trapezoid body (MNTB) act as fast-spiking inhibitory interneurons within the auditory brain stem. The MNTB is topographically organized, with low sound frequencies encoded laterally and high frequencies medially. We discovered a cell size gradient along this axis: lateral neurons are larger than medial neurons. The absence of this gradient in deaf mice lacking plasma membrane calcium ATPase 2 suggests an activity-dependent, calcium-mediated mechanism that controls neuronal soma size."	"Performance of a new HPV and biomarker assay in the management of hrHPV positive women: Subanalysis of the ongoing multicenter TRACE clinical trial (n &gt; 6,000) to evaluate POU4F3 methylation as a potential biomarker of cervical precancer and cancer. The ongoing Triage and Risk Assessment of Cervical Precancer by Epigenetic Biomarker (TRACE) prospective, multicenter study aimed to provide a clinical evaluation of the CONFIDENCE™ assay, which comprises a human papillomavirus (HPV) DNA and a human epigenetic biomarker test. Between 2013 and 2015 over 6,000 women aged 18 or older were recruited in Hungary. Liquid-based cytology (LBC), high-risk HPV (hrHPV) DNA detection and single target host gene methylation test of the promoter sequence of the POU4F3 gene by quantitative methylation-specific polymerase chain reaction (PCR) were performed from the same liquid-based cytology sample. The current analysis is focused on the baseline cross-sectional clinical results of 5,384 LBC samples collected from subjects aged 25 years or older. The performance of the CONFIDENCE HPV™ test was found to be comparable to the cobas® HPV test with good agreement. When applying the CONFIDENCE Marker™ test alone in hrHPV positives, it showed significantly higher sensitivity with matching specificity compared to LBC-based triage. For CIN3+ histological endpoint in the age group of 25-65 and 30-65, the methylation test of POU4F3 achieved relative sensitivities of 1.74 (95% CI: 1.25-2.33) and 1.64 (95% CI: 1.08-2.27), respectively, after verification bias adjustment. On the basis of our findings, POU4F3 methylation as a triage test of hrHPV positives appears to be a noteworthy method. We can reasonably assume that its quantitative nature offers the potential for a more objective and discriminative risk assessment tool in the prevention and diagnostics of high-grade cervical intraepithelial neoplasia (CIN) lesions and cervical cancer."	"Atoh1 in sensory hair cell development: constraints and cofactors. The proneural gene, Atoh1, is necessary and in some contexts sufficient for early inner ear hair cell development. Its function is the subject of intensive research, not least because of the possibility that it could be used in therapeutic strategies to reverse hair cell loss in deafness. However, it is clear that Atoh1's function is highly context dependent. During inner ear development, Atoh1 is only able to promote hair cell differentiation at specific developmental stages. Outside the ear, Atoh1 is required for differentiation of a variety of other cell types, for example in the intestine and cerebellum. The reasons for this context dependence are poorly understood. So far, the pathways and key players that instruct Atoh1 to act as a mechanosensory cell fate determinant in the context of the inner ear are largely unknown. Here we review evidence that suggests that Atoh1 function in hair cell differentiation is modulated by interaction with other transcription factors. We particularly focus on the possible roles of Gfi1 and Pou4f3, drawing from studies in mouse, Drosophila and C. elegans."	"The Promoter and Multiple Enhancers of the pou4f3 Gene Regulate Expression in Inner Ear Hair Cells. Few enhancers that target gene expression to inner ear hair cells (HCs) have been identified. Using transgenic analysis of enhanced green fluorescent protein (eGFP) reporter constructs and bioinformatics, we evaluated the control of pou4f3 gene expression, since it is expressed only in HCs within the inner ear and continues to be expressed throughout life. An 8.5-kb genomic DNA fragment 5' to the start codon, containing three regions of high cross-species homology, drove expression in all embryonic and neonatal HCs, and adult vestibular and inner HCs, but not adult outer HCs. Transgenes with 0.4, 0.8, 2.5, or 6.5 kb of 5' DNA did not produce HC expression. However, addition of the region from 6.5 to 7.2 kb produced expression in vestibular HCs and neonatal basal turn outer HCs, which also implicated the region from 7.2 to 8.5 kb in inner and apical outer HC expression. Deletion of the region from 0.4 to 5.5 kb 5' from the 8.5-kb construct did not affect HC expression, further indicating lack of HC regulatory elements. When the region from 1 to 0.4 kb was replaced with the minimal promoter of the Ela1 gene, HC expression was maintained but at a drastically reduced level. Bioinformatics identified regions of highly conserved sequence outside of the 8.5 kb, which contained POU4F3-, GFI1-, and LHX3-binding sites. These regions may be involved in maintaining POU4F3 expression in adult outer HCs. Our results identify separate enhancers at various locations that direct expression to different HC types at different ages and determine that 0.4 kb of upstream sequence determines expression level. These data will assist in the identification of mutations in noncoding, regulatory regions of this deafness gene."	"LGR4 and LGR5 Regulate Hair Cell Differentiation in the Sensory Epithelium of the Developing Mouse Cochlea. In the developing cochlea, Wnt/β-catenin signaling positively regulates the proliferation of precursors and promotes the formation of hair cells by up-regulating Atoh1 expression. Not much, however, is known about the regulation of Wnt/β-catenin activity in the cochlea. In multiple tissues, the activity of Wnt/β-catenin signaling is modulated by an interaction between LGR receptors and their ligands from the R-spondin family. The deficiency in Lgr4 and Lgr5 genes leads to developmental malformations and lethality. Using the Lgr5 knock-in mouse line we show that loss of LGR5 function increases Wnt/β-catenin activity in the embryonic cochlea, resulting in a mild overproduction of inner and outer hair cells (OHC). Supernumerary hair cells are likely formed due to an up-regulation of the &quot;pro-hair cell&quot; transcription factors Atoh1, Nhlh1, and Pou4f3. Using a hypomorphic Lgr4 mouse model we showed a mild overproduction of OHCs in the heterozygous and homozygous Lgr4 mice. The loss of LGR4 function prolonged the proliferation in the mid-basal turn of E13 cochleae, causing an increase in the number of SOX2-positive precursor cells within the pro-sensory domain. The premature differentiation of hair cells progressed in a medial to lateral gradient in Lgr4 deficient embryos. No significant up-regulation of Atoh1 was observed following Lgr4 deletion. Altogether, our findings suggest that LGR4 and LGR5 play an important role in the regulation of hair cell differentiation in the embryonic cochlea. "	"Exome sequencing identifies POU4F3 as the causative gene for a large Chinese family with non-syndromic hearing loss. Hearing impairment, or deafness (in its most severe form), is one of the most common human sensory disorders. There have been several reports of autosomal dominant mutations in the POU4F3 gene, which is associated with non-syndromic hearing loss. In this study, we identified a novel heterozygous mutation (c.602delT, p.L201fs) in the gene POU4F3 by taking advantage of whole-exome sequencing, which was validated by Sanger sequencing and completely co-segregated within a large hearing impaired Chinese family. We have focused on this pedigree since 2002, and we have mapped a deafness locus named DFNA42 (which has been renamed DFNA52, OMIM entry 607683) via a genome-wide scan. Furthermore, we analyzed this mutational variant and found that it was located at the beginning of the first functional domain of POU4F3, which could theoretically impair the function of POU4F3. We have identified a novel frameshift mutation in the POU4F3 gene. Further functional studies of variants of this specific gene are needed to illustrate the pathogenic mechanism(s) that underlie hearing impairment."	"Genetic Variation in POU4F3 and GRHL2 Associated with Noise-Induced Hearing Loss in Chinese Population: A Case-Control Study. Noise-induced hearing loss (NIHL) is an important occupational disease worldwide resulting from interactions between genetic and environmental factors. The purpose of this study was to examine whether genetic variations in POU4F3 and GRHL2 may influence susceptibility to NIHL in the Chinese population. A matched case-control study was carried out among 293 hearing loss individuals and 293 normal hearing workers drawn from a population of 3790 noise-exposed workers. Ten single-nucleotide polymorphisms (SNPs) in POU4F3 and GRHL2 were selected and genotyped. Logistic regression was performed to analyze the main effects of SNPs and the interactions between noise exposure and SNPs. Moreover, the interactions between predictor haplotypes and noise exposure were also analyzed. Analysis revealed that the CC genotype of rs1981361 in the GRHL2 gene was associated with a higher risk of NIHL (adjusted OR = 1.59; 95% CI: 1.08-2.32, p = 0.018). Additionally, the GG genotype of rs3735715 in the GRHL2 gene was also a risk genotype (adjusted OR = 1.48; 95% CI: 1.01-2.19, p = 0.046). Significant interactions were found between rs3735715, rs1981361 (GRHL2), rs1368402 as well as rs891969 (POU4F3) and noise exposure in the high-level exposure groups. Furthermore, the protective haplotype CA in the POU4F3 gene and the risk haplotype GCCG in the GRHL2 gene were identified combined with noise exposure. These results indicated that GRHL2 might be an NIHL susceptibility gene, but the effect of POU4F3 on NIHL could only be detected when taking noise exposure into account, and their effects were enhanced by higher levels of noise exposure. However, the differences were not significant after the Bonferroni correction was applied. These results should be seen as suggestive."	"Loss of AP-2delta reduces retinal ganglion cell numbers and axonal projections to the superior colliculus. AP-2δ is the most divergent member of the Activating Protein-2 (TFAP2) family of transcription factors. AP-2δ is restricted to specific regions of the CNS, including a subset of ganglion cells in the retina. Retinal ganglion cells (RGCs), the only output neurons of the retina, are responsible for transmitting the visual signal to the brain. AP-2δ knockout results in loss of Brn3c (Pou4f3) expression in AP-2δ -positive RGCs. While AP-2δ-/- mice have morphologically normal retinas at birth, there is a significant reduction in retinal ganglion cell numbers by P21, after eye opening. Chromatin immunoprecipitation indicates that Brn3c is a target of AP-2δ in the retina. Using fluorochrome-conjugated cholera toxin subunit B to trace ganglion cell axons from the eye to the major visual pathways in the brain, we found 87 % and 32 % decreases in ipsilateral and contralateral projections, respectively, to the superior colliculus in AP-2δ-/- mice. In agreement with anatomical data, visually evoked responses recorded from the brain confirmed that retinal outputs to the brain are compromised. AP-2δ is important for the maintenance of ganglion cell numbers in the retina. Loss of AP-2δ alters retinal axonal projections to visual centers of the brain, with ipsilaterial projections to the superior colliculus being the most dramatically affected. Our results have important implications for integration of the visual signal at the superior colliculus."	"A GAL4-inducible transgenic tool kit for the in vivo modulation of Rho GTPase activity in zebrafish. Rho GTPases are small monomeric G-proteins that play key roles in many cellular processes. Due to Rho GTPases' widespread expression and broad functions, analyses of their function during late development require tissue-specific modulation of activity. The GAL4/UAS system provides an excellent tool for investigating the function of Rho GTPases in vivo. With this in mind, we created a transgenic tool kit enabling spatial and temporal modulation of Rho GTPase activity in zebrafish. Transgenic constructs were assembled driving dominant-negative, constitutively active, and wild-type versions of Cdc42, RhoA, and Rac1 under 10XUAS control. The self-cleaving viral peptide F2A was utilized to allow bicistronic expression of a fluorescent reporter and Rho GTPase. Global heat shock of hsp70l:gal4(+) transgenic embryos confirmed GAL4-specific construct expression. Western blot analysis indicated myc-tagged Rho GTPases were expressed only in the presence of GAL4. Construct expression was confined to proper cells when combined with pou4f3:gal4 or ptf1a:gal4. Finally, transgene expression resulted in reproducible defects in lens formation, indicating that the transgenes are functional in vivo. We generated and validated 10 transgenic lines, creating a versatile tool kit for the temporal-spatial modulation of Cdc42, RhoA, and Rac1 activity in vivo. These lines will enable systematic analysis of Rho GTPase function in any tissue of interest. Developmental Dynamics 245:844-853, 2016. © 2016 Wiley Periodicals, Inc."	"Genetics of vestibular disorders: pathophysiological insights. The two most common vestibular disorders are motion sickness and vestibular migraine, affecting 30 and 1-2% of the population respectively. Both are related to migraine and show a familial trend. Bilateral vestibular hypofunction is a rare condition, and some of patients also present cerebellar ataxia and neuropathy. We present recent advances in the genetics of vestibular disorders with familial aggregation. The clinical heterogeneity observed in different relatives of the same families suggests a variable penetrance and the interaction of several genes in each family. Some Mendelian sensorineural hearing loss also exhibits vestibular dysfunction, including DFNA9, DFNA11, DFNA15 and DFNA28. However, the most relevant finding during the past years is the familial clustering observed in Meniere's disease. By using whole exome sequencing and combining bioinformatics tools, novel variants in DTNA and FAM136A genes have been identified in familial Meniere's disease, and this genomic strategy will facilitate the discovery of the genetic basis of familial vestibular disorders."	"Transcriptome profiling of induced hair cells (iHCs) generated by combined expression of Gfi1, Pou4f3 and Atoh1 during embryonic stem cell differentiation. To gain new insights about the genetic networks controlling hair cell (HC) development, we previously developed a direct genetic programming strategy to generate an inexhaustible supply of HC-like cells (induced HCs, iHCs) in vitro, starting from mouse embryonic stem cells (ESC). We found that combined activity of three transcription factors, Gfi1, Pou4f3, and Atoh1, can program ESC-derived progenitors towards HC fate with efficiencies of 55%-80%. These iHCs express several HC markers and exhibit polarized structures that are highly reminiscent of the mechanosensitive hair bundles, with many microvilli-like stereocilia. Here, we describe the experimental design, methodology, and data validation for the microarray analysis used to characterize the transcriptome profile of iHCs at different stages of their differentiation. This approach based on FACS sorting and microarray analysis revealed a highly similar iHC transcriptome to that of endogenous HCs in vivo. The data obtained in this study is available in the Gene Expression Omnibus (GEO) database (accession number GSE60352). "	"Pseudo-immortalization of postnatal cochlear progenitor cells yields a scalable cell line capable of transcriptionally regulating mature hair cell genes. The mammalian cochlea is a highly specialized organ within the inner ear. Sensory hair cells (HC) in the cochlea detect and transduce sound waves into electrical impulses that are sent to the brain. Studies of the molecular pathways regulating HC formation are hindered by the very sparse nature of HCs, where only ~3300 are found within an entire mouse cochlea. Current cell lines mimic certain aspects of HCs but lack terminal HC marker expression. Here we successfully &quot;pseudo-immortalized&quot; cochlear progenitor cells using the &quot;conditional reprogramming&quot; technique. These cells, termed &quot;Conditionally Reprogrammed Otic Stem Cells&quot; (CR-OSC), are able to bypass the senescence inherent to cochlear progenitor cells without genetic alterations, allowing for the generation of over 15 million cells from a single cochlea. These cells can be differentiated and up-regulate both early and terminal differentiation genes associated with HCs, including the terminal HC differentiation marker prestin. CR-OSCs also respond to known HC cues, including upregulation of HC genes in response to Atoh1 overexpression, and upregulation of prestin expression after thyroid hormone application. Overall, we describe the creation of a HC line capable of regulated expression of HC genes that can easily be recreated in any laboratory from any mouse of interest. "	"Fractalkine Signaling Regulates Macrophage Recruitment into the Cochlea and Promotes the Survival of Spiral Ganglion Neurons after Selective Hair Cell Lesion. Macrophages are recruited into the cochlea in response to injury caused by acoustic trauma or ototoxicity, but the nature of the interaction between macrophages and the sensory structures of the inner ear remains unclear. The present study examined the role of fractalkine signaling in regulating the injury-evoked behavior of macrophages following the selective ablation of cochlear hair cells. We used a novel transgenic mouse model in which the human diphtheria toxin receptor (huDTR) is selectively expressed under the control of Pou4f3, a hair cell-specific transcription factor. Administration of diphtheria toxin (DT) to these mice resulted in nearly complete ablation of cochlear hair cells, with no evident pathology among supporting cells, spiral ganglion neurons, or cells of the cochlear lateral wall. Hair cell death led to an increase in macrophages associated with the sensory epithelium of the cochlea. Their numbers peaked at 14 days after DT and then declined at later survival times. Increased macrophages were also observed within the spiral ganglion, but their numbers remained elevated for (at least) 56 d after DT. To investigate the role of fractalkine signaling in macrophage recruitment, we crossed huDTR mice to a mouse line that lacks expression of the fractalkine receptor (CX3CR1). Disruption of fractalkine signaling reduced macrophage recruitment into both the sensory epithelium and spiral ganglion and also resulted in diminished survival of spiral ganglion neurons after hair cell death. Our results suggest a fractalkine-mediated interaction between macrophages and the neurons of the cochlea. It is known that damage to the inner ear leads to recruitment of inflammatory cells (macrophages), but the chemical signals that initiate this recruitment and the functions of macrophages in the damaged ear are unclear. Here we show that fractalkine signaling regulates macrophage recruitment into the cochlea and also promotes the survival of cochlear afferents after selective hair cell lesion. Because these afferent neurons carry sound information from the cochlea to the auditory brainstem, their survival is a key determinant of the success of cochlear prosthetics. Our data suggest that fractalkine signaling in the cochlea is neuroprotective, and reveal a previously uncharacterized interaction between cells of the cochlea and the innate immune system."	"Genomic copy number alterations in non-syndromic hearing loss. Genetic heterogeneity has made the identification of genes related to hearing impairment a challenge. In the absence of a clear phenotypic aetiology, recurrence risk estimates are often based on family segregation and may be imprecise. We profiled by oligonucleotide array-CGH patients presenting non-syndromic hearing loss with presumptive autosomal recessive (n = 50) or autosomal dominant (n = 50) patterns of inheritance. Rare copy number variants (CNVs) were detected in 12 probands; four of the detected CNVs comprised genes previously associated with hearing loss (POU4F3, EYA4, USH2A, and BCAP31) and were considered causative, stressing the contribution of genomic imbalance to non-syndromic deafness. In six cases, segregation of the CNVs in pedigrees excluded them as causative. In one case, segregation could not be investigated, while in another case, a point mutation likely explains the phenotype. These findings show that the presumptive patterns of inheritance were incorrect in at least two cases, thereby impacting genetic counselling. In addition, we report the first duplication reciprocal to the rare ABCD1, BCAP31, and SLC6A8 contiguous deletion syndrome; as with most microduplication syndromes, the associated phenotype is much milder than the respective microdeletion and, in this case, was restricted to hearing impairment."	"Triage of high-risk human papillomavirus-positive women by methylated POU4F3. Insufficient specificity of the high-risk human papillomavirus (hrHPV) assay in primary cervical cancer screening results in unnecessary referral. Additional assays to triage hrHPV-positive women are needed to improve molecular cervical cancer screening. DNA methylation is a promising biomarker in cervical cancer. We evaluated the clinical performance of potentially methylated genes as a triage assay for hrHPV-positive women. We conducted a retrospective hospital-based case-control study in Taiwan. Cervical scrapings were collected before colposcopy for hrHPV testing and quantitative methylation-specific PCR (QMSP) of 16 genes. Five genes, POU4F3, HS3ST2, AJAP1, PAX1, and SOX1, were prioritized for the clinical performance to triage hrHPV-positive women. Two hundred cervical scrapings were randomly classified into a training set (n = 111) and testing set (n = 89). All samples were tested for hrHPV using a Hybrid Capture II (HCII) assay. HrHPV-positive women were subjected to DNA methylation analysis by QMSP. In the training set, the receiver operating characteristic (ROC) curves defined the optimal methylation index (M-index) cutoff values for discriminating CIN3(+) from CIN1/normal, which then were applied to the testing set. Among the five genes, POU4F3 revealed the highest area under the ROC curve (AUC) (0.86; 95 % CI, 0.78-0.95) in detecting CIN3(+). In the testing set, POU4F3 revealed the best clinical performance in triage of hrHPV-positive women with a sensitivity of 74 % and specificity of 89 % for detecting CIN3(+). POU4F3 methylation analysis is a potential molecular tool for triage in detecting CIN3(+) in hrHPV-positive women. The combined use of broad-spectrum HPV assay and POU4F3 methylation analysis as a new generation of molecular cervical cancer screening warrants further population-based study."	"Neurog1 can partially substitute for Atoh1 function in hair cell differentiation and maintenance during organ of Corti development. Atoh1, a basic helix-loop-helix (bHLH) transcription factor (TF), is essential for the differentiation of hair cells (HCs), mechanotransducers that convert sound into auditory signals in the mammalian organ of Corti (OC). Previous work demonstrated that replacing mouse Atoh1 with the fly ortholog atonal rescues HC differentiation, indicating functional replacement by other bHLH genes. However, replacing Atoh1 with Neurog1 resulted in reduced HC differentiation compared with transient Atoh1 expression in a 'self-terminating' Atoh1 conditional null mouse (Atoh1-Cre; Atoh1(f/f)). We now show that combining Neurog1 in one allele with removal of floxed Atoh1 in a self-terminating conditional mutant (Atoh1-Cre; Atoh1(f/kiNeurog1)) mouse results in significantly more differentiated inner HCs and outer HCs that have a prolonged longevity of 9 months compared with Atoh1 self-terminating littermates. Stereocilia bundles are partially disorganized, disoriented and not HC type specific. Replacement of Atoh1 with Neurog1 maintains limited expression of Pou4f3 and Barhl1 and rescues HCs quantitatively, but not qualitatively. OC patterning and supporting cell differentiation are also partially disrupted. Diffusible factors involved in patterning are reduced (Fgf8) and factors involved in cell-cell interactions are affected (Jag1, Hes5). Despite the presence of many HCs with stereocilia these mice are deaf, possibly owing to HC and OC patterning defects. This study provides a novel approach to disrupt OC development through modulating the HC-specific intracellular TF network. The resulting disorganized OC indicates that normally differentiated HCs act as 'self-organizers' for OC development and that Atoh1 plays a crucial role to initiate HC stereocilia differentiation independently of HC viability. "	"Triage of Atypical Glandular Cell by SOX1 and POU4F3 Methylation: A Taiwanese Gynecologic Oncology Group (TGOG) Study. Invasive procedures including loop electrosurgical excision, cervical conization, and endometrial sampling are often recommended when atypical glandular cells (AGC) are detected on Pap smear with unsatisfactory colposcopy. These invasive procedures may result in patient anxiety, increased medical expense, and increasing the risk of preterm delivery in subsequent pregnancies. This study was performed to assess methylation biomarkers in the triage of AGC on Pap smear for invasive procedures. We conducted a multicenter study in 13 medical centers in Taiwan from May 2012 to May 2014. A total of 55 samples diagnosed &quot;AGC not otherwise specified&quot; (AGC-NOS) were included. All patients with AGC underwent colposcopy, cervical biopsy, endometrial sampling, and conization if indicated. Multiplex quantitative methylation-specific polymerase chain reaction (QMSPCR) was performed. Sensitivity, specificity, and accuracy were calculated for detecting CIN3+ and endometrial complex hyperplasia. In 55 patients with AGC, the sensitivity for methylated (m) SOX1m, PAX1 m, ZNF582m,PTPRRm, AJAP1m, HS3ST2m, and POU4F3m for detecting CIN3+ and endometrial complex hyperplasia lesions was 100, 86, 71, 86, 86, 57, and 100%; specificity was 67, 79, 85, 50, 52, 96, and 52%, respectively. Testing for high risk-HPV had a sensitivity of 57% and specificity of 75% for CIN3+ and endometrial complex hyperplasia lesions. Methylated (m) SOX1m and POU4F3m could be new methylation biomarkers for detection of CIN3+ and endometrial complex hyperplasia in AGC. Women with AGC and positive SOX1m / POU4F3m, colposcopy, cervical conization or endometrial sampling should be considered."	"Generation of sensory hair cells by genetic programming with a combination of transcription factors. Mechanosensory hair cells (HCs) are the primary receptors of our senses of hearing and balance. Elucidation of the transcriptional networks regulating HC fate determination and differentiation is crucial not only to understand inner ear development but also to improve cell replacement therapies for hearing disorders. Here, we show that combined expression of the transcription factors Gfi1, Pou4f3 and Atoh1 can induce direct programming towards HC fate, both during in vitro mouse embryonic stem cell differentiation and following ectopic expression in chick embryonic otic epithelium. Induced HCs (iHCs) express numerous HC-specific markers and exhibit polarized membrane protrusions reminiscent of stereociliary bundles. Transcriptome profiling confirms the progressive establishment of a HC-specific gene signature during in vitro iHC programming. Overall, this work provides a novel approach to achieve robust and highly efficient HC production in vitro, which could be used as a model to study HC development and to drive inner ear HC regeneration. "	"Selective deletion of cochlear hair cells causes rapid age-dependent changes in spiral ganglion and cochlear nucleus neurons. During nervous system development, critical periods are usually defined as early periods during which manipulations dramatically change neuronal structure or function, whereas the same manipulations in mature animals have little or no effect on the same property. Neurons in the ventral cochlear nucleus (CN) are dependent on excitatory afferent input for survival during a critical period of development. Cochlear removal in young mammals and birds results in rapid death of target neurons in the CN. Cochlear removal in older animals results in little or no neuron death. However, the extent to which hair-cell-specific afferent activity prevents neuronal death in the neonatal brain is unknown. We further explore this phenomenon using a new mouse model that allows temporal control of cochlear hair cell deletion. Hair cells express the human diphtheria toxin (DT) receptor behind the Pou4f3 promoter. Injections of DT resulted in nearly complete loss of organ of Corti hair cells within 1 week of injection regardless of the age of injection. Injection of DT did not influence surrounding supporting cells directly in the sensory epithelium or spiral ganglion neurons (SGNs). Loss of hair cells in neonates resulted in rapid and profound neuronal loss in the ventral CN, but not when hair cells were eliminated at a more mature age. In addition, normal survival of SGNs was dependent on hair cell integrity early in development and less so in mature animals. This defines a previously undocumented critical period for SGN survival. "	"Macrophage recruitment and epithelial repair following hair cell injury in the mouse utricle. The sensory organs of the inner ear possess resident populations of macrophages, but the function of those cells is poorly understood. In many tissues, macrophages participate in the removal of cellular debris after injury and can also promote tissue repair. The present study examined injury-evoked macrophage activity in the mouse utricle. Experiments used transgenic mice in which the gene for the human diphtheria toxin receptor (huDTR) was inserted under regulation of the Pou4f3 promoter. Hair cells in such mice can be selectively lesioned by systemic treatment with diphtheria toxin (DT). In order to visualize macrophages, Pou4f3-huDTR mice were crossed with a second transgenic line, in which one or both copies of the gene for the fractalkine receptor CX3CR1 were replaced with a gene for GFP. Such mice expressed GFP in all macrophages, and mice that were CX3CR1(GFP/GFP) lacked the necessary receptor for fractalkine signaling. Treatment with DT resulted in the death of ∼70% of utricular hair cells within 7 days, which was accompanied by increased numbers of macrophages within the utricular sensory epithelium. Many of these macrophages appeared to be actively engulfing hair cell debris, indicating that macrophages participate in the process of 'corpse removal' in the mammalian vestibular organs. However, we observed no apparent differences in injury-evoked macrophage numbers in the utricles of CX3CR1(+/GFP) mice vs. CX3CR1(GFP/GFP) mice, suggesting that fractalkine signaling is not necessary for macrophage recruitment in these sensory organs. Finally, we found that repair of sensory epithelia at short times after DT-induced hair cell lesions was mediated by relatively thin cables of F-actin. After 56 days recovery, however, all cell-cell junctions were characterized by very thick actin cables. "	"Bacterial expression and preliminary crystallographic studies of a 149-residue fragment of human Caprin-1. Caprin-1 is an RNA-binding protein which plays critical roles in several important biological processes, including cellular proliferation, the interferon-mediated antiviral innate immune response, the maintenance of synaptic plasticity and the formation of RNA stress granules. Caprin-1 has been implicated in the pathogenesis of several human diseases, including osteosarcoma, breast cancer, viral infections, hearing loss and neurodegenerative disorders. Despite the emerging biological and physiopathological significance of Caprin-1, no structural information is available for this protein. Moreover, Caprin-1 does not have sequence similarity to any other protein with a known structure. It is therefore expected that structural studies will play a particularly crucial role in revealing the functional mechanisms of Caprin-1. Here, a protein fragment of human Caprin-1 consisting of residues 112-260 was expressed, purified and crystallized. Native and Se-SAD data sets were collected to resolutions to 2.05 and 2.65 Å, respectively, in different space groups. "	"Mosaic pattern of Cre recombinase expression in cochlear outer hair cells of the Brn3.1 Cre mouse. The Brn3.1 gene encodes for the protein Brn3.1, which is a member of the POU-IV class of transcription factors. Mutation leads to nonsyndromic human progressive hearing loss (DFNA15). To investigate the suitability of the Brn3.1 promoter for Cre recombinase-induced genetic recombination in cochlear hair cells, we established a transgenic Brn3.1 Cre mouse. This mouse line was crossbred with floxed ROSA26 and ROSA26 reporter mice. The cochleae were histologically analysed in cryosections at E16.5 and whole-mount preparations from P2 until P85. In addition, mice from all used strains and their recombinant offspring were tested electrophysiologically by auditory brainstem responses (ABR) and distorsion product otoacoustic emissions (DPOAE). Cre recombinase activity could be detected in P14 and P21 animals in a mosaic pattern in 26.3 and 9.9% of the outer hair cells, respectively. All investigated mice showed normal ABR and DPOAE values, indicating that neither insertion of the internal ribosome entry site (IRES) Cre cassette into the Brn3.1 gene led to abnormal auditory development nor did the reporter strains show inherited hearing disorders. This study shows that Cre expression under the control of the Brn3.1 promoter is feasible and that the insertion of the internal ribosome entry site Cre cassette into this locus exerted no effects on hearing development. Because of the inconstant pattern and the limited duration of expression, the application of the developed mouse line might be restricted. Also, the unchanged hearing capacity and structural integrity of the organ of Corti in available reporter lines indicate that they may be useful tools for hearing research."	"Opportunities and limits of the one gene approach: the ability of Atoh1 to differentiate and maintain hair cells depends on the molecular context. Atoh1 (Math1) was the first gene discovered in ear development that showed no hair cell (HC) differentiation when absent and could induce HC differentiation when misexpressed. These data implied that Atoh1 was both necessary and sufficient for hair cell development. However, other gene mutations also result in loss of initially forming HCs, notably null mutants for Pou4f3, Barhl1, and Gfi1. HC development and maintenance also depend on the expression of other genes (Sox2, Eya1, Gata3, Pax2) and several genes have been identified that can induce HCs when misexpressed (Jag1) or knocked out (Lmo4). In the ear Atoh1 is not only expressed in HCs but also in some supporting cells and neurons that do not differentiate into HCs. Simple removal of one gene, Neurod1, can de-repress Atoh1 and turns those neurons into HCs suggesting that Neurod1 blocks Atoh1 function in neurons. Atoh1 expression in inner pillar cells may also be blocked by too many Hes/Hey factors but conversion into HCs has only partially been achieved through Hes/Hey removal. Detailed analysis of cell cycle exit confirmed an apex to base cell cycle exit progression of HCs of the organ of Corti. In contrast, Atoh1 expression progresses from the base toward the apex with a variable delay relative to the cell cycle exit. Most HCs exit the cell cycle and are thus defined as precursors before Atoh1 is expressed. Atoh1 is a potent differentiation factor but can differentiate and maintain HCs only in the ear and when other factors are co-expressed. Upstream factors are essential to regulate Atoh1 level of expression duration while downstream, co-activated by other factors, will define the context of Atoh1 action. We suggest that these insights need to be taken into consideration and approaches beyond the simple Atoh1 expression need to be designed able to generate the radial and longitudinal variations in hair cell types for normal function of the organ of Corti. "	"The regulation of gene expression in hair cells. No genes have been discovered for which expression is limited only to inner ear hair cells. This is hardly surprising, since the number of mammalian genes is estimated to be 20-25,000, and each gene typically performs many tasks in various locations. Many genes are expressed in inner ear sensory cells and not in other cells of the labyrinth. However, these genes are also expressed in other locations, often in other sensory or neuronal cell types. How gene transcription is directed specifically to hair cells is unclear. Key transcription factors that act during development can specify cell phenotypes, and the hair cell is no exception. The transcription factor ATOH1 is well known for its ability to transform nonsensory cells of the developing inner ear into hair cells. And yet, ATOH1 also specifies different sensory cells at other locations, neuronal phenotypes in the brain, and epithelial cells in the gut. How it specifies hair cells in the inner ear, but alternate cell types in other locations, is not known. Studies of regulatory DNA and transcription factors are revealing mechanisms that direct gene expression to hair cells, and that determine the hair cell identity. The purpose of this review is to summarize what is known about such gene regulation in this key auditory and vestibular cell type."	"Targeted genomic capture and massively parallel sequencing to identify novel variants causing Chinese hereditary hearing loss. Hereditary hearing loss is genetically heterogeneous, and hundreds of mutations in than 60 genes are involved in this disease. Therefore, it is difficult to identify the causative gene mutations involved. In this study, we combined targeted genomic capture and massively parallel sequencing (MPS) to address this issue. Using targeted genomic capture and MPS, 104 genes and three microRNA regions were selected and simultaneously sequenced in 23 unrelated probands of Chinese families with nonsyndromic hearing loss. The results were validated by Sanger sequencing for all available members of the probands' families. To analyze the possible pathogenic functional effects of the variants, three types of prediction programs (Mutation Taster, PROVEAN and SIFT) were used. A total of 195 healthy Chinese Han individuals were compared as controls to verify the novel causative mutations. Of the 23 probands, six had mutations in DFNA genes [WFS1 (n = 2), COCH, ACTG1, TMC1, and POU4F3] known to cause autosomal dominant nonsyndromic hearing loss. These included one novel in-frame indel mutation, three novel missense mutations and two reported missense mutations. Furthermore, one proband from a family with recessive DFNB carried two monoallelic mutations in the GJB2 and USH2A genes. All of these mutations co-segregated with the hearing loss phenotype in 36 affected individuals from 7 families and were predicted to be pathogenic. Mutations in uncommon deafness genes contribute to a portion of nonsyndromic deafness cases. In the future, critical gene mutations may be accurately and quickly identified in families with hereditary hearing loss by targeted genomic capture and MPS."	"Regulation of the orphan nuclear receptor Nr2f2 by the DFNA15 deafness gene Pou4f3. Hair cells are the mechanotransducing cells of the inner ear that are essential for hearing and balance. POU4F3--a POU-domain transcription factor selectively expressed by these cells--has been shown to be essential for hair cell differentiation and survival in mice and its mutation in humans underlies late-onset progressive hearing loss (DFNA15). The downstream targets of POU4F3 are required for hair cell differentiation and survival. We aimed to identify such targets in order to elucidate the molecular pathways involved in hair cell production and maintenance. The orphan thyroid nuclear receptor Nr2f2 was identified as a POU4F3 target using a subtractive hybridization strategy and EMSA analysis showed that POU4F3 binds to two sites in the Nr2f2 5' flanking region. These sites were shown to be required for POU4F3 activation as their mutation leads to a reduction in the response of an Nr2f2 5' flanking region reporter construct to POU4F3. Immunocytochemistry was carried out in the developing and adult inner ear in order to investigate the relevance of this interaction in hearing. NR2F2 expression in the postnatal mouse organ of Corti was shown to be detectable in all sensory epithelia examined and characterised. These data demonstrate that Nr2f2 is a direct target of POU4F3 in vitro and that this regulatory relationship may be relevant to hair cell development and survival."	"Class III/IV POU transcription factors expressed in small cell lung cancer cells are involved in proneural/neuroendocrine differentiation. One-third of lung malignancies demonstrate a proneural/neuroendocrine phenotype or type of differentiation. However, it has not been clearly elucidated how proneural/neuroendocrine differentiation is controlled in lung cancers. We recently demonstrated that the POU3F2 gene plays a significant role in proneural/neuroendocrine differentiation of lung cancers. Because class III POU genes (POU3F1, POU3F2, POU3F3, and POU3F4) and class IV POU genes (POU4F1, POU4F2, and POU4F3) share similar properties in neural development, we analyzed the association between class III/IV POU genes and a proneural/neuroendocrine phenotype in lung cancers using seven small cell lung cancer (SCLC) cell lines and twelve non-SCLC (NSCLC) cell lines. Class III/IV POU gene expression was generally restricted to SCLC cells. However, the forced expression of class III/IV POU genes in the NSCLC cell lines induced the expression of neuroendocrine-specific markers (neural call adhesion molecule 1, synaptophysin, and chromogranin A) and proneural transcription factors (achaete-scute homolog-like 1, NeuroD1, and thyroid transcription factor 1) in various degrees. Furthermore, each class III/IV POU gene induced other class III/IV POU genes, suggesting the mutual induction of class III/IV POU genes. These findings suggest that the expression of class III/IV POU genes is important for the proneural/neuroendocrine differentiation of lung cancer cells. "	"Transcription factors with conserved binding sites near ATOH1 on the POU4F3 gene enhance the induction of cochlear hair cells. Overexpression of the transcription factor (TF) ATOH1 is known to induce the transformation of nonsensory cells in the organ of Corti into hair cells (HCs). Evaluating DNA 5Œ to the coding sequence of the pou4f3 gene, a target of ATOH1 in HCs, we identified in three regions containing clustered binding sites for ATOH1 and several other TFs that are expressed in developing inner ear sensory epithelia at the time of HC specification. These regions and sites are highly conserved across evolutionarily distant mammalian species. To test the hypothesis that the identified TFs act in combination to regulate the pou4f3 gene, we transfected by electroporation neonatal cochlear sensory epithelium from mice expressing green fluorescent protein (GFP) under the control of an 8.5-kb 5' pou4f3 genomic fragment. Plasmids encoding 21 TFs c-transfected with human ATOH1 (hATOH1). Cotransfection with hETV4, hNMYC, or hETS2 produced significantly more pou4f3/GFP and myosin 7A-positive nonsensory cells than hATOH1 alone. Co-transfection of hATOH1 with hHES1, hHES5, or hNEUROD1 reduced the effects of hATOH1. Chromatin immunoprecipitation (ChIP)of DNA from an inner ear cell line transfected with hNMYC,hETV4, or hETS2 revealed binding to a conserved region immediately proximal to the coding sequence. ChIP similarly revealed binding of hGATA3, hNMYC, and hTFE2 to a region several kilobases distal to the coding sequence, which we have previously shown to bind ATOH1. The results suggest that ATOH1 acts in concert with a subset of other TFs to directly regulate the pou4f3 gene and more broadly to regulate the HC phenotype."	"Deafness gene expression patterns in the mouse cochlea found by microarray analysis. Tonotopy is one of the most fundamental principles of auditory function. While gradients in various morphological and physiological characteristics of the cochlea have been reported, little information is available on gradient patterns of gene expression. In addition, the audiograms in autosomal dominant non syndromic hearing loss can be distinctive, however, the mechanism that accounts for that has not been clarified. We thought that it is possible that tonotopic gradients of gene expression within the cochlea account for the distinct audiograms. We compared expression profiles of genes in the cochlea between the apical, middle, and basal turns of the mouse cochlea by microarray technology and quantitative RT-PCR. Of 24,547 genes, 783 annotated genes expressed more than 2-fold. The most remarkable finding was a gradient of gene expression changes in four genes (Pou4f3, Slc17a8, Tmc1, and Crym) whose mutations cause autosomal dominant deafness. Expression of these genes was greater in the apex than in the base. Interestingly, expression of the Emilin-2 and Tectb genes, which may have crucial roles in the cochlea, was also greater in the apex than in the base. This study provides baseline data of gradient gene expression in the cochlea. Especially for genes whose mutations cause autosomal dominant non syndromic hearing loss (Pou4f3, Slc17a8, Tmc1, and Crym) as well as genes important for cochlear function (Emilin-2 and Tectb), gradual expression changes may help to explain the various pathological conditions."	"In vivo generation of immature inner hair cells in neonatal mouse cochleae by ectopic Atoh1 expression. Regeneration of auditory hair cells (HCs) is a promising approach to restore hearing. Recent studies have demonstrated that induced pluripotent stem cells/embryonic stem cells or supporting cells (SCs) adjacent to HCs can be converted to adopt the HC fate. However, little is known about whether new HCs are characteristic of outer or inner HCs. Here, we showed in vivo conversion of 2 subtypes of SCs, inner border cells (IBs) and inner phalangeal cells (IPhs), to the inner HC (IHC) fate. This was achieved by ectopically activating Atoh1, a transcription factor necessary for HC fate, in IBs/IPhs at birth. Atoh1+ IBs/IPhs first turned on Pou4f3, another HC transcription factor, before expressing 8 HC markers. The conversion rate gradually increased from ∼ 2.4% at 1 week of age to ∼ 17.8% in adult. Interestingly, new HCs exhibited IHC characteristics such as straight line-shaped stereociliary bundles, expression of Fgf8 and otoferlin, and presence of larger outward currents than those of outer HCs. However, new HCs lacked the terminal differentiation IHC marker vGlut3, exhibited reduced density of presynaptic Cbtp2 puncta that had little postsynaptic GluR2 specialization, and displayed immature IHC outward currents. Our results demonstrate that the conversion rate of IBs/IPhs in vivo by Atoh1 ectopic expression into the IHC fate was higher and faster and the conversion was more complete than that of the 2 other SC subtypes underneath the outer HCs; however, these new IHCs are arrested before terminal differentiation. Thus, IBs/IPhs are good candidates to regenerate IHCs in vivo."	"Deletion of the entire POU4F3 gene in a familial case of autosomal dominant non-syndromic hearing loss. In 20% of cases, hereditary non-syndromic hearing loss has an autosomal dominant inheritance (ADNSHL). To date, more than 50 loci for ADNSHL have been mapped to different chromosomal regions. In order to verify whether genomic alterations contribute to the hearing loss etiology and to search for novel deafness candidate loci, we investigated probands from families with ADNSHL by oligonucleotide array-CGH. A deletion in the 5q32 region encompassing only one gene, POU4F3, which corresponds to DFNA15, was detected in one family. POU4F3 protein has an important role in the maturation, differentiation and survival of cochlear hair cells. Defects in these cells may therefore explain sensorineural hearing loss. Mutations in this gene have already been associated with autosomal dominant hearing loss but this is the first description of a germline POUF4F3 deletion associated with hearing impairment. "	"Inhibition of Myo6 gene expression by co‑expression of a mutant of transcription factor POU4F3 (BRN‑3C) in hair cells. An eight‑base pair (bp) deletion in the Pou4f3 gene in hair cells is associated with DFNA15, a hereditary form of hearing loss. To explore the pathological mechanisms underlying the development of DFNA15, the effect of the mutation in Pou4f3 on the activity of the myosin VI (Myo6) promoter, was investigated. The upstream regulatory sequence of Myo6 (2625 bp), consisting of an 1899 bp upstream sequence and a 727 bp intron 1 sequence, was amplified using polymerase chain reaction and subcloned into the pGL3‑Basic vector expressing firefly luciferase. For verification of inserted fragments, plasmids were subjected to restriction analysis and then sequenced. HEK293T human embryonic kidney cells were transiently transfected with renilla luciferase‑thymidine kinase vectors expressing Renilla luciferase and the Myo6 promoter‑driven firefly luciferase expressing vectors along with pIRES2‑enhanced green fluorescent protein (EGFP)‑Pou4f3 (expressing wild‑type Pou4f3) or pIRES2‑EGFP‑Pou4f3 (expressing the truncation mutant of Pou4f3). The relative luciferase activities were measured to determine the activity of the Myo6 promoter. The Myo6 promoter activity was not affected by co‑expression of wild‑type Pou4f3, as indicated by the comparable relative luciferase activities in the presence of the pIRES2‑EGFP‑Pou4f3 and the empty control vectors. However, co‑expression of mutated Pou4f3 significantly inhibited the activity of the Myo6 promoter to almost half of that of the control (P&lt;0.001). The data suggests that mutated Pou4f3 has a negative role in the promoter activity of Myo6, and by extension, the expression of myosin VI, and this may be an underlying mechanism of DFNA15 hearing loss."	"Spontaneous hair cell regeneration in the neonatal mouse cochlea in vivo. Loss of cochlear hair cells in mammals is currently believed to be permanent, resulting in hearing impairment that affects more than 10% of the population. Here, we developed two genetic strategies to ablate neonatal mouse cochlear hair cells in vivo. Both Pou4f3(DTR/+) and Atoh1-CreER™; ROSA26(DTA/+) alleles allowed selective and inducible hair cell ablation. After hair cell loss was induced at birth, we observed spontaneous regeneration of hair cells. Fate-mapping experiments demonstrated that neighboring supporting cells acquired a hair cell fate, which increased in a basal to apical gradient, averaging over 120 regenerated hair cells per cochlea. The normally mitotically quiescent supporting cells proliferated after hair cell ablation. Concurrent fate mapping and labeling with mitotic tracers showed that regenerated hair cells were derived by both mitotic regeneration and direct transdifferentiation. Over time, regenerated hair cells followed a similar pattern of maturation to normal hair cell development, including the expression of prestin, a terminal differentiation marker of outer hair cells, although many new hair cells eventually died. Hair cell regeneration did not occur when ablation was induced at one week of age. Our findings demonstrate that the neonatal mouse cochlea is capable of spontaneous hair cell regeneration after damage in vivo. Thus, future studies on the neonatal cochlea might shed light on the competence of supporting cells to regenerate hair cells and on the factors that promote the survival of newly regenerated hair cells. "	"[Comparative analysis of conservation and regulatory network on core transcription factors in mouse inner ear development]. During vertebrate inner ear development, several core genes, such as Six1, Six4, Pax2, Pax8, Foxi1, Dlx5, Gbx2, Irx2/3, and Msx1, are crucial to the regulation of the otic placode induction. In order to get the gene regulatory network during inner ear development, bioinformatics methods were adopted to analyze conservation and regulation of the core transcription factors in mice. Pax2, Pax8, Foxi1, and Dlx5 remained to be the main regulators during inner ear development, which was consistent with the gene regulatory network from literature. Six1 was regulated by many transcription factors, and Gbx2, Irx2/3, and Msx1 played important roles in the regulatory network. The differences in the constructed regulatory network were reasonably analyzed. It was predicted that Msxl regulated the expression of Six1 and Gbx2. In addition, several transcription factors, such as Sox5, Lhx2, Rax, Otx1, Otx2, Pitxl, Pitx2, Nkx2-5, Irx4, Irx6, Dlx2, Hmx1/2/3, Pou4f3, Pax4 and Tlx2, were found to be involved in the regulatory network. Our results provide an improved understanding of the regulatory mechanism during inner ear development."	"Methylomics analysis identifies epigenetically silenced genes and implies an activation of β-catenin signaling in cervical cancer. Using DNA methylation biomarkers in cancer detection is a potential direction in clinical testing. Some methylated genes have been proposed for cervical cancer detection; however, more reliable methylation markers are needed. To identify new hypermethylated genes in the discovery phase, we compared the methylome between a pool of DNA from normal cervical epithelium (n = 19) and a pool of DNA from cervical cancer tissues (n = 38) using a methylation bead array. We integrated the differentially methylated genes with public gene expression databases, which resulted in 91 candidate genes. Based on gene expression after demethylation treatment in cell lines, we confirmed 61 genes for further validation. In the validation phase, quantitative MSP and bisulfite pyrosequencing were used to examine their methylation level in an independent set of clinical samples. Fourteen genes, including ADRA1D, AJAP1, COL6A2, EDN3, EPO, HS3ST2, MAGI2, POU4F3, PTGDR, SOX8, SOX17, ST6GAL2, SYT9, and ZNF614, were significantly hypermethylated in CIN3+ lesions. The sensitivity, specificity, and accuracy of POU4F3 for detecting CIN3+ lesions were 0.88, 0.82, and 0.85, respectively. A bioinformatics function analysis revealed that AJAP1, EDN3, EPO, MAGI2, and SOX17 were potentially implicated in β-catenin signaling, suggesting the epigenetic dysregulation of this signaling pathway during cervical cancer development. The concurrent methylation of multiple genes in cancers and in subsets of precancerous lesions suggests the presence of a driver of methylation phenotype in cervical carcinogenesis. Further validation of these new genes as biomarkers for cervical cancer screening in a larger population-based study is warranted. "	"Genetics of dizziness: cerebellar and vestibular disorders. Recent advances in next generation sequencing techniques (NGS) are increasing the number of novel genes associated with cerebellar and vestibular disorders. We have summarized clinical and molecular genetics findings in neuro-otolology during the last 2 years. Whole-exome and targeted sequencing have defined the genetic basis of dizziness including new genes causing ataxia: GBA2, TGM6, ANO10 and SYT14. Novel mutations in KCNA1 and CACNA1A genes are associated with episodic ataxia type 1 and type 2, respectively. Moreover, new variants in genes such as COCH, MYO7A and POU4F3 are associated with nonsyndromic deafness and vestibular dysfunction. Several susceptibility loci have been linked to familial vestibular migraine, suggesting genetic heterogeneity, but no specific gene has been identified. Finally, loci for complex and heterogeneous diseases such as bilateral vestibular hypofunction or familial Ménière disease have not been identified yet, despite their strong familial aggregation. Cerebellar and vestibular disorders leading to dizziness or episodic vertigo may show overlapping clinical features. A deep phenotyping including a complete familial history is a key step in performing a reliable molecular genetic diagnosis using NGS. Personalized molecular medicine will be essential to understand disease mechanisms as well as to improve their diagnosis and treatment."	"SNP linkage analysis and whole exome sequencing identify a novel POU4F3 mutation in autosomal dominant late-onset nonsyndromic hearing loss (DFNA15). Autosomal dominant non-syndromic hearing loss (AD-NSHL) is one of the most common genetic diseases in human and is well-known for the considerable genetic heterogeneity. In this study, we utilized whole exome sequencing (WES) and linkage analysis for direct genetic diagnosis in AD-NSHL. The Korean family had typical AD-NSHL running over 6 generations. Linkage analysis was performed by using genome-wide single nucleotide polymorphism (SNP) chip and pinpointed a genomic region on 5q31 with a significant linkage signal. Sequential filtering of variants obtained from WES, application of the linkage region, bioinformatic analyses, and Sanger sequencing validation identified a novel missense mutation Arg326Lys (c.977G&gt;A) in the POU homeodomain of the POU4F3 gene as the candidate disease-causing mutation in the family. POU4F3 is a known disease gene causing AD-HSLH (DFNA15) described in 5 unrelated families until now each with a unique mutation. Arg326Lys was the first missense mutation affecting the 3(rd) alpha helix of the POU homeodomain harboring a bipartite nuclear localization signal sequence. The phenotype findings in our family further supported previously noted intrafamilial and interfamilial variability of DFNA15. This study demonstrated that WES in combination with linkage analysis utilizing bi-allelic SNP markers successfully identified the disease locus and causative mutation in AD-NSHL. "	"Diverse spectrum of rare deafness genes underlies early-childhood hearing loss in Japanese patients: a cross-sectional, multi-center next-generation sequencing study. Genetic tests for hereditary hearing loss inform clinical management of patients and can provide the first step in the development of therapeutics. However, comprehensive genetic tests for deafness genes by Sanger sequencing is extremely expensive and time-consuming. Next-generation sequencing (NGS) technology is advantageous for genetic diagnosis of heterogeneous diseases that involve numerous causative genes. Genomic DNA samples from 58 subjects with hearing loss from 15 unrelated Japanese families were subjected to NGS to identify the genetic causes of hearing loss. Subjects did not have pathogenic GJB2 mutations (the gene most often associated with inherited hearing loss), mitochondrial m.1555A&gt;G or 3243A&gt;G mutations, enlarged vestibular aqueduct, or auditory neuropathy. Clinical features of subjects were obtained from medical records. Genomic DNA was subjected to a custom-designed SureSelect Target Enrichment System to capture coding exons and proximal flanking intronic sequences of 84 genes responsible for nonsyndromic or syndromic hearing loss, and DNA was sequenced by Illumina GAIIx (paired-end read). The sequences were mapped and quality-checked using the programs BWA, Novoalign, Picard, and GATK, and analyzed by Avadis NGS. Candidate genes were identified in 7 of the 15 families. These genes were ACTG1, DFNA5, POU4F3, SLC26A5, SIX1, MYO7A, CDH23, PCDH15, and USH2A, suggesting that a variety of genes underlie early-childhood hearing loss in Japanese patients. Mutations in Usher syndrome-related genes were detected in three families, including one double heterozygous mutation of CDH23 and PCDH15. Targeted NGS analysis revealed a diverse spectrum of rare deafness genes in Japanese subjects and underscores implications for efficient genetic testing."	"Genetic interactions between Brn3 transcription factors in retinal ganglion cell type specification. Visual information is conveyed from the retina to the brain via 15-20 Retinal Ganglion Cell (RGC) types. The developmental mechanisms by which RGC types acquire their distinct molecular, morphological, physiological and circuit properties are essentially unknown, but may involve combinatorial transcriptional regulation. Brn3 transcription factors are expressed in RGCs from early developmental stages, and are restricted in adults to distinct, partially overlapping populations of RGC types. Previously, we described cell autonomous effects of Brn3b (Pou4f2) and Brn3a (Pou4f1) on RGC axon and dendrites development. We now have investigated genetic interactions between Brn3 transcription factors with respect to RGC development, by crossing conventional knock-out alleles of each Brn3 gene with conditional knock-in reporter alleles of a second Brn3 gene, and analyzing the effects of single or double Brn3 knockouts on RGC survival and morphology. We find that Brn3b loss results in axon defects and dendritic arbor area and lamination defects in Brn3a positive RGCs, and selectively affects survival and morphology of specific Brn3c (Pou4f3) positive RGC types. Brn3a and Brn3b interact synergistically to control RGC numbers. Melanopsin positive ipRGCs are resistant to combined Brn3 loss but are under the transcriptional control of Isl1, expanding the combinatorial code of RGC specification. Taken together these results complete our knowledge on the mechanisms of transcriptional control of RGC type specification. They demonstrate that Brn3b is required for the correct development of more RGC cell types than suggested by its expression pattern in the adult, but that several cell types, including some Brn3a, Brn3c or Melanopsin positive RGCs are Brn3b independent."	"Hair cell overexpression of Islet1 reduces age-related and noise-induced hearing loss. Isl1 is a LIM-homeodomain transcription factor that is critical in the development and differentiation of multiple tissues. In the mouse inner ear, Isl1 is expressed in the prosensory region of otocyst, in young hair cells and supporting cells, and is no longer expressed in postnatal auditory hair cells. To evaluate how continuous Isl1 expression in postnatal hair cells affects hair cell development and cochlear function, we created a transgenic mouse model in which the Pou4f3 promoter drives Isl1 overexpression specifically in hair cells. Isl1 overexpressing hair cells develop normally, as seen by morphology and cochlear functions (auditory brainstem response and otoacoustic emissions). As the mice aged to 17 months, wild-type (WT) controls showed the progressive threshold elevation and outer hair cell loss characteristic of the age-related hearing loss (ARHL) in the background strain (C57BL/6J). In contrast, the Isl1 transgenic mice showed significantly less threshold elevation with survival of hair cells. Further, the Isl1 overexpression protected the ear from noise-induced hearing loss (NIHL): both ABR threshold shifts and hair cell death were significantly reduced when compared with WT littermates. Our model suggests a common mechanism underlying ARHL and NIHL, and provides evidence that hair cell-specific Isl1 expression can promote hair cell survival and therefore minimize the hearing impairment that normally occurs with aging and/or acoustic overexposure. "	"Induction of inner ear hair cell-like cells from Math1-transfected mouse ES cells. Math1, a basic helix-loop-helix transcription factor homolog of the Drosophila atonal gene, is considered to be a key factor for induction of sensory hair cells (HCs) during development of the organ of Corti or cochlea. Although embryonic stem (ES) cells are able to produce HC-like cells, the role of Math1 in induction of those cells has not been thoroughly elucidated. In the present study, we introduced Math1 into ES cells in order to achieve efficient generation of HC-like cells. ES cells carrying Tet-inducible Math1, Math1-ES cells, were generated using a Tet-On gene expression system. Embryoid bodies (EBs) formed in the absence of doxycycline (Dox) for 4 days were allowed to grow for an additional 14 days in the dishes in the presence of 400 μg/ml of Dox. At the end of those 14-day cultures, approximately 10% of the cells in EB outgrowths expressed the HC-related markers myosin6, myosin7a, calretinin, α9AchR, and Brn3c (also known as Pou4f3) and showed formation of stereocilia-like structures, whereas few cells in EB outgrowths grown without Dox showed those markers. Reporter assays of Math1-ES cells using a Brn3c-promoter plasmid demonstrated positive regulation of Brn3c by Math1. Furthermore, such HC-related marker-positive cells derived from Math1-ES cells were found to be incorporated in the developing inner ear after transplantation into chick embryos. Math1-ES cells are considered to be an efficient source of ES-derived HC-like cells, and Math1 may be an important factor for induction of HC-like cells from differentiating ES cells. "	"Atoh1 directs hair cell differentiation and survival in the late embryonic mouse inner ear. Atoh1 function is required for the earliest stages of inner ear hair cell development, which begins during the second week of gestation. Atoh1 expression in developing hair cells continues until early postnatal ages, but the function of this late expression is unknown. To test the role of continued Atoh1 expression in hair cell maturation we conditionally deleted the gene in the inner ear at various embryonic and postnatal ages. In the organ of Corti, deletion of Atoh1 at E15.5 led to the death of all hair cells. In contrast, deletion at E16.5 caused death only in apical regions, but abnormalities of stereocilia formation were present throughout the cochlea. In the utricle, deletion at E14.5 or E16.5 did not cause cell death but led to decreased expression of myosin VIIa and failure of stereocilia formation. Furthermore, we show that maintained expression of Barhl1 and Gfi1, two transcription factors implicated in cochlear hair cell survival, depends upon continued Atoh1 expression. However, maintained expression of Pou4f3 and several hair cell-specific markers is independent of Atoh1 expression. These data reveal novel late roles for Atoh1 that are separable from its initial role in hair cell development. "	"Genetic etiology study of the non-syndromic deafness in Chinese Hans by targeted next-generation sequencing. Although over 60 non-syndromic deafness genes have been identified to date, the etiologic contribution of most deafness genes remained elusive. In this study, we addressed this issue by targeted next-generation sequencing of a large cohort of non-syndromic deaf probands. Probands with mutations in commonly screened deafness genes GJB2, SLC26A4 and MT-RNR1 were pre-excluded by Sanger sequencing. The remaining 125 deaf probands proceeded through targeted exon capturing of 79 known deafness genes and Illumina HiSeq2000 sequencing. Bi-allelic mutations in 15 less commonly screened deafness genes were identified in 28 deaf probands, with mutations in MYO15A, GPR98, TMC1, USH2A and PCDH15 being relatively more frequent (≥3 probands each). Dominant mutations in MYO6, TECTA, POU4F3 and COCH were identified in 4 deaf families. A mitochondrial MTTS1 mutation was identified in one maternally inherited deaf family. No pathogenic mutations were identified in three dominant deaf families and two consanguineous families. Mutations in the less commonly screened deafness genes were heterogeneous and contributed to a significant percentage (17.4%) of causes for non-syndromic deafness. Targeted next-generation sequencing provided a comprehensive and efficient diagnosis for known deafness genes. Complementary to linkage analysis or whole-exome sequencing of deaf families, pre-exclusion of known deafness genes by this strategy may facilitate the discovery of novel deafness genes."	"Continued expression of GATA3 is necessary for cochlear neurosensory development. Hair cells of the developing mammalian inner ear are progressively defined through cell fate restriction. This process culminates in the expression of the bHLH transcription factor Atoh1, which is necessary for differentiation of hair cells, but not for their specification. Loss of several genes will disrupt ear morphogenesis or arrest of neurosensory epithelia development. We previously showed in null mutants that the loss of the transcription factor, Gata3, results specifically in the loss of all cochlear neurosensory development. Temporal expression of Gata3 is broad from the otic placode stage through the postnatal ear. It therefore remains unclear at which stage in development Gata3 exerts its effect. To better understand the stage specific effects of Gata3, we investigated the role of Gata3 in cochlear neurosensory specification and differentiation utilizing a LoxP targeted Gata3 line and two Cre lines. Foxg1(Cre)∶Gata3(f/f) mice show recombination of Gata3 around E8.5 but continue to develop a cochlear duct without differentiated hair cells and spiral ganglion neurons. qRT-PCR data show that Atoh1 was down-regulated but not absent in the duct whereas other hair cell specific genes such as Pou4f3 were completely absent. In addition, while Sox2 levels were lower in the Foxg1(Cre):Gata3(f/f) cochlea, Eya1 levels remained normal. We conclude that Eya1 is unable to fully upregulate Atoh1 or Pou4f3, and drive differentiation of hair cells without Gata3. Pax2-Cre∶Gata3(f/f) mice show a delayed recombination of Gata3 in the ear relative to Foxg1(Cre):Gata3(f/f) . These mice exhibited a cochlear duct containing patches of partially differentiated hair cells and developed only few and incorrectly projecting spiral ganglion neurons. Our conditional deletion studies reveal a major role of Gata3 in the signaling of prosensory genes and in the differentiation of cochlear neurosenory cells. We suggest that Gata3 may act in combination with Eya1, Six1, and Sox2 in cochlear prosensory gene signaling."	"Engineered deafness reveals that mouse courtship vocalizations do not require auditory experience. Auditory experience during development is necessary for normal language acquisition in humans. Although songbirds, some cetaceans, and maybe bats may also be vocal learners, vocal learning has yet to be well established for a laboratory mammal. Mice are potentially an excellent model organism for studying mechanisms underlying vocal communication. Mice vocalize in different social contexts, yet whether they learn their vocalizations remains unresolved. To address this question, we compared ultrasonic courtship vocalizations emitted by chronically deaf and normal hearing adult male mice. We deafened CBA/CaJ male mice, engineered to express diphtheria toxin (DT) receptors in hair cells, by systemic injection of DT at postnatal day 2 (P2). By P9, almost all inner hair cells were absent and by P16 all inner and outer hair cells were absent in DTR mice. These mice did not show any auditory brainstem responses as adults. Wild-type littermates, also treated with DT at P2, had normal hair cells and normal auditory brainstem responses. We compared the temporal structure of vocalization bouts, the types of vocalizations, the patterns of syllables, and the acoustic features of each syllable type emitted by hearing and deaf males in the presence of a female. We found that almost all of the vocalization features we examined were similar in hearing and deaf animals. These findings indicate that mice do not need auditory experience during development to produce normal ultrasonic vocalizations in adulthood. We conclude that mouse courtship vocalizations are not acquired through auditory feedback-dependent learning."	"Correct timing of proliferation and differentiation is necessary for normal inner ear development and auditory hair cell viability. Hearing restoration through hair cell regeneration will require revealing the dynamic interactions between proliferation and differentiation during development to avoid the limited viability of regenerated hair cells. Pax2-Cre N-Myc conditional knockout (CKO) mice highlighted the need of N-Myc for proper neurosensory development and possible redundancy with L-Myc. The late-onset hair cell death in the absence of early N-Myc expression could be due to mis-regulation of genes necessary for neurosensory formation and maintenance, such as Neurod1, Atoh1, Pou4f3, and Barhl1. Pax2-Cre N-Myc L-Myc double CKO mice show that proliferation and differentiation are linked together through Myc and in the absence of both Mycs, altered proliferation and differentiation result in morphologically abnormal ears. In particular, the organ of Corti apex is re-patterned into a vestibular-like organization and the base is truncated and fused with the saccule. These data indicate that therapeutic approaches to restore hair cells must take into account a dynamic interaction of proliferation and differentiation regulation of basic Helix-Loop-Helix transcription factors in attempts to stably replace lost cochlear hair cells. In addition, our data indicate that Myc is an integral component of the evolutionary transformation process that resulted in the organ of Corti development."	"Whole number, distribution and co-expression of brn3 transcription factors in retinal ganglion cells of adult albino and pigmented rats. The three members of the Pou4f family of transcription factors: Pou4f1, Pou4f2, Pou4f3 (Brn3a, Brn3b and Brn3c, respectively) play, during development, essential roles in the differentiation and survival of sensory neurons. The purpose of this work is to study the expression of the three Brn3 factors in the albino and pigmented adult rat. Animals were divided into these groups: i) untouched; ii) fluorogold (FG) tracing from both superior colliculli; iii) FG-tracing from one superior colliculus; iv) intraorbital optic nerve transection or crush. All retinas were dissected as flat-mounts and subjected to single, double or triple immunohistofluorescence The total number of FG-traced, Brn3a, Brn3b, Brn3c or Brn3 expressing RGCs was automatically quantified and their spatial distribution assessed using specific routines. Brn3 factors were studied in the general RGC population, and in the intrinsically photosensitive (ip-RGCs) and ipsilateral RGC sub-populations. Our results show that: i) 70% of RGCs co- express two or three Brn3s and the remaining 30% express only Brn3a (26%) or Brn3b; ii) the most abundant Brn3 member is Brn3a followed by Brn3b and finally Brn3c; iii) Brn3 a-, b- or c- expressing RGCs are similarly distributed in the retina; iv) The vast majority of ip-RGCs do not express Brn3; v) The main difference between both rat strains was found in the population of ipsilateral-RGCs, which accounts for 4.2% and 2.5% of the total RGC population in the pigmented and albino strain, respectively. However, more ipsilateral-RGCs express Brn3 factors in the albino than in the pigmented rat; vi) RGCs that express only Brn3b and RGCs that co-express the three Brn3 members have the biggest nuclei; vii) After axonal injury the level of Brn3a expression in the surviving RGCs decreases compared to control retinas. Finally, this work strengthens the validity of Brn3a as a marker to identify and quantify rat RGCs."	"Inner ear progenitor cells can be generated in vitro from human bone marrow mesenchymal stem cells. Mouse mesenchymal stem cells (MSCs) can generate sensory neurons and produce inner ear hair cell-like cells. An equivalent source from humans is highly desirable, given their potential application in patient-specific regenerative therapies for deafness. In this study, we explored the ability of human MSCs (hMSCs) to differentiate into otic lineages. hMSCs were exposed to culture media conditioned by human fetal auditory stem cells. Conditioned media induced the expression of otic progenitor markers PAX8, PAX2, GATA3 and SOX2. After 4 weeks, cells coexpressed ATOH1, MYO7A and POU4F3 (indicators of hair cell lineage) or neuronal markers NEUROG1, POU4F1 and NEFH. Inhibition of WNT signaling prevented differentiation into otic progenitors, while WNT activation partially phenocopied results seen with the conditioned media. This study demonstrates that hMSCs can be driven to express key genes found in the otic lineages and thereby promotes their status as candidates for regenerative therapies for deafness."	"BDNF gene therapy induces auditory nerve survival and fiber sprouting in deaf Pou4f3 mutant mice. Current therapy for patients with hereditary absence of cochlear hair cells, who have severe or profound deafness, is restricted to cochlear implantation, a procedure that requires survival of the auditory nerve. Mouse mutations that serve as models for genetic deafness can be utilized for developing and enhancing therapies for hereditary deafness. A mouse with Pou4f3 loss of function has no hair cells and a subsequent, progressive degeneration of auditory neurons. Here we tested the influence of neurotrophin gene therapy on auditory nerve survival and peripheral sprouting in Pou4f3 mouse ears. BDNF gene transfer enhanced preservation of auditory neurons compared to control ears, in which nearly all neurons degenerated. Surviving neurons in treated ears exhibited pronounced sprouting of nerve fibers into the auditory epithelium, despite the absence of hair cells. This enhanced nerve survival and regenerative sprouting may improve the outcome of cochlear implant therapy in patients with hereditary deafness."	"Hair cell replacement in adult mouse utricles after targeted ablation of hair cells with diphtheria toxin. We developed a transgenic mouse to permit conditional and selective ablation of hair cells in the adult mouse utricle by inserting the human diphtheria toxin receptor (DTR) gene into the Pou4f3 gene, which encodes a hair cell-specific transcription factor. In adult wild-type mice, administration of diphtheria toxin (DT) caused no significant hair cell loss. In adult Pou4f3(+/DTR) mice, DT treatment reduced hair cell numbers to 6% of normal by 14 days post-DT. Remaining hair cells were located primarily in the lateral extrastriola. Over time, hair cell numbers increased in these regions, reaching 17% of untreated Pou4f3(+/DTR) mice by 60 days post-DT. Replacement hair cells were morphologically distinct, with multiple cytoplasmic processes, and displayed evidence for active mechanotransduction channels and synapses characteristic of type II hair cells. Three lines of evidence suggest replacement hair cells were derived via direct (nonmitotic) transdifferentiation of supporting cells: new hair cells did not incorporate BrdU, supporting cells upregulated the pro-hair cell gene Atoh1, and supporting cell numbers decreased over time. This study introduces a new method for efficient conditional hair cell ablation in adult mouse utricles and demonstrates that hair cells are spontaneously regenerated in vivo in regions where there may be ongoing hair cell turnover."	"N-Myc and L-Myc are essential for hair cell formation but not maintenance. Sensorineural hearing loss results from damage to the hair cells of the organ of Corti and is irreversible in mammals. While hair cell regeneration may prove to be the ideal therapy after hearing loss, prevention of initial hair cell loss could provide even more benefit at a lower cost. Previous studies have shown that the deletion of Atoh1 results in embryonic loss of hair cells while the absence of Barhl1, Gfi1, and Pou4f3 leads to the progressive loss of hair cells in newborn mice. We recently reported that in the early embryonic absence of N-Myc (using Pax2-Cre), hair cells in the organ of Corti develop and remain until at least seven days after birth, with subsequent progressive loss. Thus, N-Myc plays a role in hair cell viability; however, it is unclear if this is due to its early expression in hair cell precursors and throughout the growing otocyst as it functions through proliferation or its late expression exclusively in differentiated hair cells. Furthermore, the related family member L-Myc is mostly co-expressed in the ear, including in differentiated hair cells, but its function has not been studied and could be partially redundant to N-Myc. To test for a long-term function of the Mycs in differentiated hair cells, we generated nine unique genotypes knocking out N-Myc and/or L-Myc after initial formation of hair cells using the well-characterized Atoh1-Cre. We tested functionality of the auditory and vestibular systems at both P21 and four months of age and under the administration of the ototoxic drug cisplatin. We conclude that neither N-Myc nor L-Myc is likely to play important roles in long-term hair cell maintenance. Therefore, it is likely that the late-onset loss of hair cells resulting from early deletion of the Mycs leads to an unsustainable developmental defect."	"TFE2 and GATA3 enhance induction of POU4F3 and myosin VIIa positive cells in nonsensory cochlear epithelium by ATOH1. Transcription factors (TFs) can regulate different sets of genes to determine specific cell types by means of combinatorial codes. We previously identified closely-spaced TF binding motifs located 8.2-8.5 kb 5' to the ATG of the murine Pou4f3 gene, a gene required for late hair cell (HC) differentiation and survival. These motifs, 100% conserved among four mammalian species, include a cluster of E-boxes preferred by TCF3/ATOH1 heterodimers as well as motifs for GATA factors and SP1. We hypothesized that these factors might interact to regulate the Pou4f3 gene and possibly induce a HC phenotype in non-sensory cells of the cochlea. Cochlear sensory epithelium explants were prepared from postnatal day 1.5 transgenic mice in which expression of GFP is driven by 8.5 kb of Pou4f3 5' genomic DNA (Pou4f3/GFP). Electroporation was used to transfect cells of the greater epithelial ridge with multiple plasmids encoding human ATOH1 (hATOH1), hTCF3 (also known as E2A or TEF2), hGATA3, and hSP1. hATOH1 or hTCF3 alone induced Pou4f3/GFP cells but hGATA3 and hSP1 did not. hATOH1 but not hTCF3 induced conversion of greater epithelial ridge cells into Pou4f3/GFP and myosin VIIa double-positive cells. Transfection of hATOH1 in combination with hTCF3 or hGATA3 induced 2-3X more Pou4f3/GFP cells, and similarly enhanced Pou4f3/GFP and myosin VIIa double-positive cells, when compared to hATOH1 alone. Triple or quadruple TF combinations were generally not more effective than double TF combinations except in the middle turn, where co-transfection of hATOH1, hE2A, and hGATA3 was more effective than hATOH1 plus either hTCF3 or hGATA3. The results demonstrate that TFs can cooperate in regulation of the Pou4f3 gene and in the induction of at least one other element of a HC phenotype. Our data further indicate that combinations of TFs can be more effective than individual TFs in the inner ear."	"Targeted massive parallel sequencing: the effective detection of novel causative mutations associated with hearing loss in small families. Hereditary hearing loss is one of the most common heterogeneous disorders, and genetic variants that can cause hearing loss have been identified in over sixty genes. Most of these hearing loss genes have been detected using classical genetic methods, typically starting with linkage analysis in large families with hereditary hearing loss. However, these classical strategies are not well suited for mutation analysis in smaller families who have insufficient genetic information. Eighty known hearing loss genes were selected and simultaneously sequenced by targeted next-generation sequencing (NGS) in 8 Korean families with autosomal dominant non-syndromic sensorineural hearing loss. Five mutations in known hearing loss genes, including 1 nonsense and 4 missense mutations, were identified in 5 different genes (ACTG1, MYO1F, DIAPH1, POU4F3 and EYA4), and the genotypes for these mutations were consistent with the autosomal dominant inheritance pattern of hearing loss in each family. No mutational hot-spots were revealed in these Korean families. Targeted NGS allowed for the detection of pathogenic mutations in affected individuals who were not candidates for classical genetic studies. This report is the first documenting the effective use of an NGS technique to detect pathogenic mutations that underlie hearing loss in an East Asian population. Using this NGS technique to establish a database of common mutations in Korean patients with hearing loss and further data accumulation will contribute to the early diagnosis and fundamental therapies for hereditary hearing loss."	"Identification of two inherited copy number variants in a male with autism supports two-hit and compound heterozygosity models of autism. Autism is a childhood-onset neurodevelopmental disorder with complex genetic mechanism underlying its etiology. Recent studies revealed that a few single de novo copy number variants of genomic DNA (copy number variants [CNVs]) are pathogenic and causal in some sporadic cases, adding support to the hypothesis that some sporadic autism might be caused by single rare mutation with large clinical effect. In this study, we report the detection of two novel private CNVs simultaneously in a male patient with autism. These two CNVs include a microduplication of ~4.5 Mb at chromosome 4q12-13.1 that was transmitted from his mother and a microdeletion of ~1.8 Mb at 5q32 that was transmitted from his father. Several genes such as LPHN3, POU4F3, SH3RF2, and TCERG1 mapped to these two regions have psychiatric implications. However, the parents had only mild degree of attention deficit symptoms but did not demonstrate any obvious autistic symptoms or psychopathology. Our findings indicate that each of these two CNVs alone may not be pathogenic enough to cause clinical symptoms in their respective carriers, and hence they can be transmitted within each individual family. However, concomitant presence of these two CNVs might result in the clinical phenotypes of the affected patient reported here. Thus, our report of this family may represent an example to show that two hits of CNV and the presence of compound heterozygosity might be important mechanisms underlying the pathogenesis of autism."	"In vitro differentiation of mouse embryonic stem cells into inner ear hair cell-like cells using stromal cell conditioned medium. Hearing loss is mainly caused by loss of sensory hair cells (HCs) in the organ of Corti or cochlea. Although embryonic stem (ES) cells are a promising source for cell therapy, little is known about the efficient generation of HC-like cells from ES cells. In the present study, we developed a single-medium culture method for growing embryoid bodies (EBs), in which conditioned medium (CM) from cultures of ST2 stromal cells (ST2-CM) was used for 14-day cultures of 4-day EBs. At the end of the 14-day cultures, up to 20% of the cells in EB outgrowths expressed HC-related markers, including Math1 (also known as Atoh1), myosin6, myosin7a, calretinin, α9AchR and Brn3c (also known as Pou4f3), and also showed formation of stereocilia-like structures. Further, we found that these cells were incorporated into the developing inner ear after transplantation into chick embryos. The present inner ear HC induction method using ST2-CM (HIST2 method) is quite simple and highly efficient to obtain ES-derived HC-like cells with a relatively short cultivation time."	"Eya1-Six1 interaction is sufficient to induce hair cell fate in the cochlea by activating Atoh1 expression in cooperation with Sox2. Inner-ear hair cell differentiation requires Atoh1 function, while Eya1, Six1, and Sox2 are coexpressed in sensory progenitors and mutations in these genes cause sensorineural hearing loss. However, how these genes are linked functionally and the transcriptional networks controlling hair cell induction remain unclear. Here, we show (1) that Eya1/Six1 are necessary for hair cell development, and their coexpression in mouse cochlear explants is sufficient to induce hair cell fate in the nonsensory epithelium expressing low-level Sox2 by activating not only Atoh1-dependent but also Atoh1-independent pathways and (2) that both pathways induce Pou4f3 to promote hair cell differentiation. Sox2 cooperates with Eya1/Six1 to synergistically activate Atoh1 transcription via direct binding to the conserved Sox- and Six-binding sites in Atoh1 enhancers, and these proteins physically interact. Our findings demonstrate that direct and cooperative interactions between the Sox2, Six1, and Eya1 proteins coordinate Atoh1 expression to specify hair cell fate."	"A novel Atoh1 &quot;self-terminating&quot; mouse model reveals the necessity of proper Atoh1 level and duration for hair cell differentiation and viability. Atonal homolog1 (Atoh1) is a bHLH transcription factor essential for inner ear hair cell differentiation. Targeted expression of Atoh1 at various stages in development can result in hair cell differentiation in the ear. However, the level and duration of Atoh1 expression required for proper hair cell differentiation and maintenance remain unknown. We generated an Atoh1 conditional knockout (CKO) mouse line using Tg(Atoh1-cre), in which the cre expression is driven by an Atoh1 enhancer element that is regulated by Atoh1 protein to &quot;self-terminate&quot; its expression. The mutant mice show transient, limited expression of Atoh1 in all hair cells in the ear. In the organ of Corti, reduction and delayed deletion of Atoh1 result in progressive loss of almost all the inner hair cells and the majority of the outer hair cells within three weeks after birth. The remaining cells express hair cell marker Myo7a and attract nerve fibers, but do not differentiate normal stereocilia bundles. Some Myo7a-positive cells persist in the cochlea into adult stages in the position of outer hair cells, flanked by a single row of pillar cells and two to three rows of disorganized Deiters cells. Gene expression analyses of Atoh1, Barhl1 and Pou4f3, genes required for survival and maturation of hair cells, reveal earlier and higher expression levels in the inner compared to the outer hair cells. Our data show that Atoh1 is crucial for hair cell mechanotransduction development, viability, and maintenance and also suggest that Atoh1 expression level and duration may play a role in inner vs. outer hair cell development. These genetically engineered Atoh1 CKO mice provide a novel model for establishing critical conditions needed to regenerate viable and functional hair cells with Atoh1 therapy."	"Combinatorial expression of Brn3 transcription factors in somatosensory neurons: genetic and morphologic analysis. The three members of the Brn3 family of POU-domain transcription factors (Brn3a/Pou4f1, Brn3b/Pou4f2, and Brn3c/Pou4f3) are expressed in overlapping subsets of visual, auditory/vestibular, and somatosensory neurons. Using unmarked Brn3-null alleles and Brn3 conditional alleles in which gene loss is coupled to expression of an alkaline phosphatase reporter, together with sparse Cre-mediated recombination, we describe the following: (1) the overlapping patterns of Brn3 gene expression in somatosensory neurons; (2) the manner in which these patterns correlate with molecular markers, peripheral afferent arbor morphologies, and dorsal horn projections; and (3) the consequences for these neurons of deleting individual Brn3 genes in the mouse. We observe broad expression of Brn3a among DRG neurons, but subtype-restricted expression of Brn3b and Brn3c. We also observe a nearly complete loss of hair follicle-associated sensory endings among Brn3a(-/-) neurons. Together with earlier analyses of Brn3 gene expression patterns in the retina and inner ear, these experiments suggest a deep functional similarity among primary somatosensory neurons, spiral and vestibular ganglion neurons, and retinal ganglion cells. This work also demonstrates the utility of sparse genetically directed labeling for visualizing individual somatosensory afferent arbors and for defining cell-autonomous mutant phenotypes."	"Defects in sensory organ morphogenesis and generation of cochlear hair cells in Gata3-deficient mouse embryos. The development of the inner ear sensory epithelia involves a complex network of transcription factors and signaling pathways and the whole process is not yet entirely understood. GATA3 is a DNA-binding factor that is necessary for otic morphogenesis and without GATA3 variable defects have been observed already at early stages in mouse embryos. In the less severe phenotypes, one small oval shaped vesicle is formed whereas in the more severe cases, the otic epithelium becomes disrupted and the endolymphatic domain becomes separated from the rest of the otic epithelium. Despite these defects, the early sensory fate specification occurs in Gata3-/- otic epithelium. However, due to the early lethality of Gata3-deficient embryos, the later morphogenesis and sensory development have remained unclear. To gain information of these later processes we produced drug-rescued Gata3-/- embryos that survived up to late gestation. In these older Gata3-/- embryos, a similar variability was observed as earlier. In the more severely affected ears, the development of the separate endolymphatic domain arrested completely whereas the remaining vesicle formed an empty cavity with variable forms, but without any distinguishable otic compartments or morphologically distinct sensory organs. However, the dorsal part of this vesicle was able to adopt a sensory fate and to produce some hair cells. In the less severe cases of Gata3-/- ears, distinct utricular, saccular and cochlear compartments were present and hair cells could be detected in the vestibular sensory epithelia. Although clear cristae and maculae formed, the morphology and size of these sensory areas were abnormal and they remained often un-separated. In contrast to the vestibule, the cochlear sensory compartment remained more immature and no hair or supporting cells could be detected. Our results suggest that GATA3 is critical for normal vestibular and cochlear morphogenesis and that it is especially important for cochlear sensory differentiation."	"Regulation of POU4F3 gene expression in hair cells by 5' DNA in mice. The POU-domain transcription POU4F3 is expressed in the sensory cells of the inner ear. Expression begins shortly after commitment to the hair cell (HC) fate, and continues throughout life. It is required for terminal HC differentiation and survival. To explore regulation of the murine Pou4f3 gene, we linked enhanced green fluorescent protein (eGFP) to 8.5 kb of genomic sequence 5' to the start codon in transgenic mice. eGFP was uniformly present in all embryonic and neonatal HCs. Expression of eGFP was also observed in developing Merkel cells and olfactory neurons as well as adult inner and vestibular HCs, mimicking the normal expression pattern of POU4F3 protein, with the exception of adult outer HCs. Apparently ectopic expression was observed in developing inner ear neurons. On a Pou4f3 null background, the transgene produced expression in embryonic HCs which faded soon after birth both in vivo and in vitro. Pou4f3 null HCs treated with caspase 3 and 9 inhibitors survived longer than untreated HCs, but still showed reduced expression of eGFP. The results suggest the existence of separate enhancers for different HC types, as well as strong autoregulation of the Pou4f3 gene. Bioinformatic analysis of four divergent mammalian species revealed three highly conserved regions within the transgene: 400 bp immediately 5' to the Pou4f3 ATG, a short sequence at -1.3 kb, and a longer region at -8.2 to -8.5 kb. The latter contained E-box motifs that bind basic helix-loop-helix (bHLH) transcription factors, including motifs activated by ATOH1. Cotransfection of HEK293 or VOT-E36 cells with ATOH1 and the transgene as a reporter enhanced eGFP expression when compared with the transgene alone. Chromatin immunoprecipitation of the three highly conserved regions revealed binding of ATOH1 to the distal-most conserved region. The results are consistent with regulation of Pou4f3 in HCs by ATOH1 at a distal enhancer."	"Differential expression of Brn3 transcription factors in intrinsically photosensitive retinal ganglion cells in mouse. Several subtypes of melanopsin-expressing, intrinsically photosensitive retinal ganglion cells (ipRGCs) have been reported. The M1 type of ipRGCs exhibit distinct properties compared with the remaining (non-M1) cells. They differ not only in their soma size and dendritic arbor, but also in their physiological properties, projection patterns, and functions. However, it is not known how these differences arise. We tested the hypothesis that M1 and non-M1 cells express Brn3 transcription factors differentially. The Brn3 family of class IV POU-domain transcription factors (Brn3a, Brn3b, and Brn3c) is involved in the regulation of differentiation, dendritic stratification, and axonal projection of retinal ganglion cells during development. By using double immunofluorescence for Brn3 transcription factors and melanopsin, and with elaborate morphometric analyses, we show in mouse retina that neither Brn3a nor Brn3c are expressed in ipRGCs. However, Brn3b is expressed in a subset of ipRGCs, particularly those with larger somas and lower melanopsin levels, suggesting that Brn3b is expressed preferentially in the non-M1 cells. By using dendritic stratification to distinguish M1 from non-M1 cells, we found that whereas nearly all non-M1 cells expressed Brn3b, a vast majority of the M1 cells were negative for Brn3b. Interestingly, in the small proportion of the M1 cells that did express Brn3b, the expression level of Brn3b was significantly lower than in the non-M1 cells. These results provide insights about how expression of specific molecules in a ganglion cell could be linked to its role in visual function."	"AP-2δ is a crucial transcriptional regulator of the posterior midbrain. Ap-2 transcription factors comprise a family of 5 closely related sequence-specific DNA binding proteins that play pivotal and non-redundant roles in embryonic organogenesis. To investigate the function of Ap-2δ, wδe analyzed its expression during embryogenesis and generated Ap-2δ-deficient mice. In line with the specific expression pattern of Ap-2δ in the mesencephalic tectum and the dorsal midbrain, Ap-2δ-deficient mice failed to maintain the colliculus inferior, a derivative of the dorsal midbrain, as a consequence of increased apoptotic cell death. To identify specific Ap-2δ target genes in cells of the developing dorsal midbrain, we performed whole genome analysis of cDNA expression levels. This approach identified a set of 12 putative target genes being expressed in the developing midbrain, including the transcription factors Pitx2, Mef2c, Bhlhb4 and Pou4f3. Using chromatin immunoprecipitation (CHIP) we showed that some of these genes are direct targets of Ap-2δ. Consistently, we demonstrate that Ap-2δ occupies and activates the Pou4f3 and Bhlhb4 promoters. In addition, known Pou4f3 target genes were downregulated in the posterior midbrain of Ap-2δ-deficient mice. Despite the absence of a central part of the auditory pathway, the presence of neuronal responses to sounds in the neocortex of Ap-2δ-deficient mice indicates that auditory information from the brainstem still reaches the neocortex. In summary, our data define Ap-2δ as an important transcription factor, specifying gene expression patterns required for the development of the posterior midbrain."	"Fucoidan promotes mechanosensory hair cell regeneration following amino glycoside-induced cell death. Lateral line system of the zebrafish is a useful model for study of hair cell toxicity and regeneration. We found that low molecular weight fucoidan (LMWF) stimulated the regeneration of mechanosensory hair cells after neomycin-induced cell death in zebrafish lateral line. The aims of this study were to quantify the regenerative effects of LMWF and determine their relationship to the Notch and FGF signaling pathways. Wild-type zebrafish and three different transgenic zebrafish lines (Pou4f3::GFP, scm1::GFP, and ET20::GFP) were used. At 4.5-6 days post-fertilization, lateral line hair cells of larvae were eliminated using neomycin (500 μM). Larvae were then treated with LMWF. Neuromasts were observed using confocal microscopy. Stereocilia morphology was observed using scanning electron microscopy, and the location and status of regeneration was assessed using 5-bromo-2-deoxyuridine (BrdU) incorporation. Hair cells damaged by neomycin treatment regenerated faster in wild-type and Pou4f3::GFP larvae treated with LMWF (50 μg/ml) than in untreated controls. LMWF also enhanced the regeneration of supporting cells in scm1::GFP and ET20::GFP larvae. Increased numbers of BrdU-labeled cells were found after LMWF treatment in neuromast regions corresponding to internal and peripheral supporting cells. The effect of LMWF was mimicked by the Notch signaling inhibitor N-[N-(3,5-difluorophenacetyl)-1-alanyl]-S-phenylglycine t-butyl ester (DAPT), but the effects of LMWF and DAPT were not additive. LMWF enhances the regeneration of hair cells damaged by neomycin. The mechanism may involve the Notch signaling pathway. LMWF shows promise as a therapeutic agent for hearing and balance disorders."	"Expression analysis of prestin and selected transcription factors in newborn rats. Transcription factors (TFs) have a central role to play in regulating gene expression. To analyze the co-expression patterns of selected TFs with the motor protein prestin of the outer hair cells, we applied an real-time PCR approach combining several kinds of information: (i) expression changes during postnatal development, (ii) expression changes by exposure of organotypic cultures of the organ of Corti to factors which significantly affect prestin expression [thyroid hormone (T4), retinoic acid (RA), butyric acid (BA), increased KCl concentration] and (iii) changes along the apical-basal gradient. We found that the mRNA levels of the TF Brn-3c (Pou4f3), a member of the POU family, are significantly associated with the regulation of prestin during postnatal development and in cultures supplemented with T4 (0.5 μM), BA (0.5-2.0 mM), and high KCl (50 mM) concentration. The mRNA level of the constitutively active TF C/ebpb (CCAAT/enhancer binding protein beta) correlates positively with the prestin expression during postnatal development and in cultures exposed to T4 and RA (50-100 μM). The mRNA levels of the calcium-dependent TF CaRF correlates significantly with the prestin expression in cultures exposed to T4 and high KCl concentration. The observed coexpression patterns may suggest that the TFs Brn-3c, C/ebpb, and Carf contribute to regulating the expression of prestin under the investigated conditions."	"Generating mouse models of degenerative diseases using Cre/lox-mediated in vivo mosaic cell ablation. Most degenerative diseases begin with a gradual loss of specific cell types before reaching a threshold for symptomatic onset. However, the endogenous regenerative capacities of different tissues are difficult to study, because of the limitations of models for early stages of cell loss. Therefore, we generated a transgenic mouse line (Mos-iCsp3) in which a lox-mismatched Cre/lox cassette can be activated to produce a drug-regulated dimerizable caspase-3. Tissue-restricted Cre expression yielded stochastic Casp3 expression, randomly ablating a subset of specific cell types in a defined domain. The limited and mosaic cell loss led to distinct responses in 3 different tissues targeted using respective Cre mice: reversible, impaired glucose tolerance with normoglycemia in pancreatic β cells; wound healing and irreversible hair loss in the skin; and permanent moderate deafness due to the loss of auditory hair cells in the inner ear. These mice will be important for assessing the repair capacities of tissues and the potential effectiveness of new regenerative therapies."	"Caprin-1 is a target of the deafness gene Pou4f3 and is recruited to stress granules in cochlear hair cells in response to ototoxic damage. The POU4 family of transcription factors are required for survival of specific cell types in different sensory systems. Pou4f3 is essential for the survival of auditory sensory hair cells and several mutations in human POU4F3 cause hearing loss. Thus, genes regulated by Pou4f3 are likely to be essential for hair cell survival. We performed a subtractive hybridisation screen in an inner-ear-derived cell line to find genes with differential expression in response to changes in Pou4f3 levels. The screen identified the stress-granule-associated protein Caprin-1 as being downregulated by Pou4f3. We demonstrated that this regulation occurs through the direct interaction of Pou4f3 with binding sites in the Caprin-1 5' flanking sequence, and describe the expression pattern of Caprin-1 mRNA and protein in the cochlea. Moreover, we found Caprin-1-containing stress granules are induced in cochlear hair cells following aminoglycoside-induced damage. This is the first report of stress granule formation in mammalian hair cells and suggests that the formation of Caprin-1-containing stress granules is a key damage response to a clinically relevant ototoxic agent. Our results have implications for the understanding of aminoglycoside-induced hearing loss and provide further evidence that stress granule formation is a fundamental cellular stress response."	"Characterization of cytarabine-resistant leukemic cell lines established from five different blood cell lineages using gene expression and proteomic analyses. Cytarabine (ara-C) is the key drug for treatment of acute myeloid leukemia. Since intracellular cytarabine triphosphate (ara-CTP) is an active metabolite of ara-C, factors that reduce the amount of ara-CTP are known to induce drug resistance. However, these factors do not fully explain the development of resistance to ara-C. The present study was conducted to search for new candidate ara-C resistance factors, including those that are unrelated to ara-CTP production. For this purpose, we newly established five ara-C-resistant leukemic clones from different blood cell lineage leukemic cell lines (HL-60, K562, CEM, THP1 and U937). The resistant subclones were 5-58-fold more ara-C-resistant than their parental counterparts. All of the ara-C-resistant subclones, except for ara-C-resistant CEM cells, displayed alteration of ara-CTP-related factors such as ara-C membrane transport capacity, deoxycytidine kinase activity or cytosolic nucleotidase II activity. To identify new candidate factors, we used two comprehensive approaches: DNA microarray and proteome analyses. The DNA microarray analysis revealed eight genes (C19orf2, HSPA8, LGALS1, POU4F3, PSAP, AKT1, MBC2 and CACNA2D3) that were altered in all five ara-C-resistant lines compared to parental cells. Both proteome and DNA microarray analyses further detected a reduced protein level of stathmin1 in the ara-C-resistant CEM subclone compared to its parental line. Thus, the present findings suggested the involvement of novel multiple mechanisms in mediating the ara-C resistance of leukemic cells. The role of some of these molecules in resistance is still unclear."	"Overlapping and distinct pRb pathways in the mammalian auditory and vestibular organs. Retinoblastoma gene (Rb1) is required for proper cell cycle exit in the developing mouse inner ear and its deletion in the embryo leads to proliferation of sensory progenitor cells that differentiate into hair cells and supporting cells. In a conditional hair cell Rb1 knockout mouse, Pou4f3-Cre-pRb(-/-), pRb(-/-) utricular hair cells differentiate and survive into adulthood whereas differentiation and survival of pRb(-/-) cochlear hair cells are impaired. To comprehensively survey the pRb pathway in the mammalian inner ear, we performed microarray analysis of (pRb(-/-) cochlea and utricle. The comparative analysis shows that the core pathway shared between pRb(-/-) cochlea and utricle is centered on E2F, the key pathway that mediates pRb function. A majority of differentially expressed genes and enriched pathways are not shared but uniquely associated with pRb(-/-) cochlea or utricle. In pRb(-/-) cochlea, pathways involved in early inner ear development such as Wnt/β-catenin and Notch were enriched, whereas pathways involving in proliferation and survival are enriched in pRb(-/-) utricle. Clustering analysis showed that the pRb(-/-) inner ear has characteristics of a younger control inner ear, an indication of delayed differentiation. We created a transgenic mouse model (ER-Cre-pRb(flox/flox)) in which Rb1 can be acutely deleted postnatally. Acute Rb1 deletion in the adult mouse fails to induce proliferation or cell death in inner ear, strongly indicating that Rb1 loss in these postmitotic tissues can be effectively compensated for, or that pRb-mediated changes in the postmitotic compartment result in events that are functionally irreversible once enacted. This study thus supports the concept that pRb-regulated pathways relevant to hair cell development, encompassing proliferation, differentiation and survival, act predominantly during early development."	"Morphologies of mouse retinal ganglion cells expressing transcription factors Brn3a, Brn3b, and Brn3c: analysis of wild type and mutant cells using genetically-directed sparse labeling. The mammalian retina contains more than 50 distinct neuronal types, which are broadly classified into several major classes: photoreceptor, bipolar, horizontal, amacrine, and ganglion cells. Although some of the developmental mechanisms involved in the differentiation of retinal ganglion cells (RGCs) are beginning to be understood, there is little information regarding the genetic and molecular determinants of the distinct morphologies of the 15-20 mammalian RGC cell types. Previous work has shown that the transcription factor Brn3b/Pou4f2 plays a major role in the development and survival of many RGCs. The roles of the closely related family members, Brn3a/Pou4f1 and Brn3c/Pou4f3 in RGC development are less clear. Using a genetically-directed method for sparse cell labeling and sparse conditional gene ablation in mice, we describe here the sets of RGC types in which each of the three Brn3/Pou4f transcription factors are expressed and the consequences of ablating these factors on the development of RGC morphologies."	"A novel frameshift mutation of POU4F3 gene associated with autosomal dominant non-syndromic hearing loss. Autosomal dominant mutations in the transcription factor POU4F3 gene are associated with non-syndromic hearing loss in humans; however, there have been few reports of mutations in this gene worldwide. We performed a mutation analysis of the POU4F3 gene in 42 unrelated Koreans with autosomal dominant non-syndromic hearing loss, identifying a novel 14-bp deletion mutation in exon 2 (c.662del14) in one patient. Audiometric examination revealed severe bilateral sensorineural hearing loss in this patient. The novel mutation led to a truncated protein that lacked both functional POU domains. We further investigated the functional distinction between wild-type and mutant POU4F3 proteins using in vitro assays. The wild-type protein was completely localized in the nucleus, while the truncation of protein seriously affected its nuclear localization. In addition, the mutant failed to activate reporter gene expression. This is the first report of a POU4F3 mutation in Asia, and moreover our data suggest that further investigation will need to delineate ethnicity-specific genetic background for autosomal dominant non-syndromic hearing loss within Asian populations."	"Anti-apoptotic factor z-Val-Ala-Asp-fluoromethylketone promotes the survival of cochlear hair cells in a mouse model for human deafness. A major challenge in the inner ear research field is to restore hearing loss of both non-genetic and genetic origin. A large effort is being made to protect hair cells from cell death after exposure to noise or drugs that can cause hearing loss. Our research focused on protecting hair cells from cell death occurring in a genetic model for human deafness. POU4F3 is a transcription factor associated with human hearing impairment. Pou4f3 knockout mice (Pou4f3(-/-)) have no cochlear hair cells, resulting in complete deafness. Although the hair cells appear to form properly, they progressively degenerate via apoptosis. In order to rescue the hair cells in the knockout mice, we produced explant cultures from mouse cochleae at an early embryonic stage and treated the cells with z-Val-Ala-Asp-fluoromethylketone (z-VAD-fmk), a general caspase inhibitor. Hair cell numbers in the knockout mice treated with z-VAD-fmk were significantly higher than in the untreated mice. We found that the time window that z-VAD-fmk has a protective effect is between E14.5 (P=0.001) to E16.5 (P=0.03), but not after E18.5. The source of the surviving hair cells is not due to proliferation, as measured by 5-bromo-2-deoxyuridine (BrdU) labeling, or to supporting cell transdifferentiation to hair cells, since there was no change in supporting cell numbers. Instead, the survival appears to be a direct effect of the anti-apoptotic agent on the dying hair cells with an early developmental window. These results help towards providing a comprehensive understanding of the molecular mechanisms of hair cell death, which might lead to the development of new therapeutic anti-apoptotic agents to alleviate hereditary hearing loss (HL)."	"CpG island hypermethylation in human astrocytomas. Astrocytomas are common and lethal human brain tumors. We have analyzed the methylation status of over 28,000 CpG islands and 18,000 promoters in normal human brain and in astrocytomas of various grades using the methylated CpG island recovery assay. We identified 6,000 to 7,000 methylated CpG islands in normal human brain. Approximately 5% of the promoter-associated CpG islands in the normal brain are methylated. Promoter CpG island methylation is inversely correlated whereas intragenic methylation is directly correlated with gene expression levels in brain tissue. In astrocytomas, several hundred CpG islands undergo specific hypermethylation relative to normal brain with 428 methylation peaks common to more than 25% of the tumors. Genes involved in brain development and neuronal differentiation, such as BMP4, POU4F3, GDNF, OTX2, NEFM, CNTN4, OTP, SIM1, FYN, EN1, CHAT, GSX2, NKX6-1, PAX6, RAX, and DLX2, were strongly enriched among genes frequently methylated in tumors. There was an overrepresentation of homeobox genes and 31% of the most commonly methylated genes represent targets of the Polycomb complex. We identified several chromosomal loci in which many (sometimes more than 20) consecutive CpG islands were hypermethylated in tumors. Seven such loci were near homeobox genes, including the HOXC and HOXD clusters, and the BARHL2, DLX1, and PITX2 genes. Two other clusters of hypermethylated islands were at sequences of recent gene duplication events. Our analysis offers mechanistic insights into brain neoplasia suggesting that methylation of the genes involved in neuronal differentiation, in cooperation with other oncogenic events, may shift the balance from regulated differentiation towards gliomagenesis."	"Sonic hedgehog (SHH) promotes the differentiation of mouse cochlear neural progenitors via the Math1-Brn3.1 signaling pathway in vitro. Sonic hedgehog (SHH) is essential for the development of the cochlear duct that harbors the organ of Corti. However, little is known about the molecular signaling pathway through which SHH promotes the development of the organ of Corti, especially cochlear sensory epithelial cells. In this study, we demonstrated that SHH contributes to the differentiation of cochlear neural progenitors (CNPs), which are derived from the postnatal day 1 organ of Corti in mice. Addition of SHH to CNPs increased the formation of epithelial cell islands, simultaneously activated the expression of Math1 that is a transcription factor for the initial differentiation of auditory hair cells. The increased expression of Math1 then regulated the promoter activity of Brn3.1, another transcription factor that controls the further differentiation and survival of auditory hair cells. Taken together, our data suggest that SHH plays an important role in the promotion of auditory hair cell differentiation via the Math1-Brn3.1 signaling pathway."	"Cellular targeting for cochlear gene therapy. Gene therapy has considerable potential for the treatment of disorders of the inner ear. Many forms of inherited hearing loss have now been linked to specific locations in the genome, and for many of these the genes and specific mutations involved have been identified. This information provides the basis for therapy based on genetic approaches. However, a major obstacle to gene therapy is the targeting of therapy to the cells and the times that are required. The inner ear is a very complex organ, involving dozens of cell types that must function in a coordinated manner to result in the formation of the ear, and in hearing. Mutations that result in hearing loss can affect virtually any of these cells. Moreover, the genes involved are active during particular times, some for only brief periods of time. In order to be effective, gene therapy must be delivered to the appropriate cells, and at the appropriate times. In many cases, it must also be restricted to these cells and times. This requires methods with which to target gene therapy in space and time. Cell-specific gene promoters offer the opportunity to direct gene therapy to a desired cell type. Moreover, conditional promoters allow gene expression to be turned off and on at desired times. Theoretically, these technologies offer a mechanism by which to deliver gene therapy to any cell, at any given time. This chapter will examine the potential for such targeting to deliver gene therapy to the inner ear in a precisely controlled manner."	"Mild and variable audiometric and vestibular features in a third DFNA15 family with a novel mutation in POU4F3. Cochleovestibular characteristics were investigated in a Dutch DFNA15 family with a novel POU4F3 mutation, L223P. A 4-generation pedigree was constructed of the Dutch family with the novel L223P POU4F3 mutation. Pure tone audiometric data were collected and analyzed cross-sectionally in mutation carriers. Age-related typical audiograms were derived. Vestibular examination was performed in most of the mutation carriers. The results were compared to those obtained from previously identified 884de18 and L289F POU4F3 mutation carriers. A novel mutation (L223P) in POU4F3 segregated with hearing impairment in the present family. Audiometric analysis generally showed an early-adult to midlife onset of hearing impairment. High-frequency hearing impairment was observed most frequently. Age-related typical audiograms showed a down-sloping configuration at ages of more than 30 years, with the fastest rate of progression at the high frequencies. Vestibular function tests revealed hypofunction of the vestibular labyrinth in 2 mutation carriers (not statistically significant). The clinical features in the present family with a POU4F3 mutation were fairly similar to those in the 2 previously described DFNA15 families, but the level of hearing impairment was milder, and there was no substantial vestibular dysfunction."	"Constitutive expression of the alpha10 nicotinic acetylcholine receptor subunit fails to maintain cholinergic responses in inner hair cells after the onset of hearing. Efferent inhibition of cochlear hair cells is mediated by alpha9alpha10 nicotinic cholinergic receptors (nAChRs) functionally coupled to calcium-activated, small conductance (SK2) potassium channels. Before the onset of hearing, efferent fibers transiently make functional cholinergic synapses with inner hair cells (IHCs). The retraction of these fibers after the onset of hearing correlates with the cessation of transcription of the Chrna10 (but not the Chrna9) gene in IHCs. To further analyze this developmental change, we generated a transgenic mice whose IHCs constitutively express alpha10 into adulthood by expressing the alpha10 cDNA under the control of the Pou4f3 gene promoter. In situ hybridization showed that the alpha10 mRNA is expressed in IHCs of 8-week-old transgenic mice, but not in wild-type mice. Moreover, this mRNA is translated into a functional protein, since IHCs from P8-P10 alpha10 transgenic mice backcrossed to a Chrna10(-/-) background (whose IHCs have no cholinergic function) displayed normal synaptic and acetylcholine (ACh)-evoked currents in patch-clamp recordings. Thus, the alpha10 transgene restored nAChR function. However, in the alpha10 transgenic mice, no synaptic or ACh-evoked currents were observed in P16-18 IHCs, indicating developmental down-regulation of functional nAChRs after the onset of hearing, as normally observed in wild-type mice. The lack of functional ACh currents correlated with the lack of SK2 currents. These results indicate that multiple features of the efferent postsynaptic complex to IHCs, in addition to the nAChR subunits, are down-regulated in synchrony after the onset of hearing, leading to lack of responses to ACh."	"Vestibular impairment in a Dutch DFNA15 family with an L289F mutation in POU4F3. Vestibular examination (electronystagmography with rotatory chair and caloric tests) was performed on 18 carriers and 1 phenocopy carrier in a Dutch family with autosomal dominant nonsyndromic DFNA15. This is the second DFNA15 family worldwide to have a novel L289F mutation in POU4F3. Vestibular involvement appeared to be present in 2 affected individuals according to their medical history. Vestibular examination results in an extended subset of L289F POU4F3 mutation carriers varied from normal to areflexia. DFNA15 is the third cochleovestibular disorder, after DFNA9 and DFNA11, in the autosomal dominant nonsyndromic hearing impairment."	"BARHL2 differentially regulates the development of retinal amacrine and ganglion neurons. Through transcriptional regulations, the BarH family of homeodomain proteins play essential roles in cell fate specification, cell differentiation, migration, and survival. Barhl2, a member of the Barh gene family, is expressed in retinal ganglion cells (RGCs), amacrine cells (ACs), and horizontal cells. Here, to investigate the role of Barhl2 in retinal development, Barhl2-deficient mice were generated. Analysis of AC subtypes in Barhl2-deficient retinas suggests that Barhl2 plays a critical role in AC subtype determination. A significant reduction of glycinergic and GABAergic ACs with a substantial increase in the number of cholinergic ACs was observed in Barhl2-null retinas. Barhl2 is also critical for the development of a normal complement of RGCs. Barhl2 deficiency resulted in a 35% increase in RGCs undergoing apoptosis during development. Genetic analysis revealed that Barhl2 functions downstream of the Atoh7-Pou4f3 regulatory pathway and regulates the maturation and/or survival of RGCs. Thus, BARHL2 appears to have numerous roles in retinal development, including regulating neuronal subtype specification, differentiation, and survival."	"Stem cells and molecular strategies to restore hearing. Hearing loss is a costly and growing problem for the elderly population worldwide with millions of people being affected. There are currently two prosthetic devices available to minimize problems associated with the two forms of hearing loss: hearing aids that amplify sound to overcome middle ear based conductive hearing loss and cochlear implants that restore some hearing after neurosensory hearing loss. The current presentation provides information on the treatment of neurosensory hearing loss. Although the cochlear implant solution for neurosensory hearing loss is technologically advanced; it still provides only moderate hearing capacity in neurosensory deaf individuals. Inducible stem cells and molecular therapies are appealing alternatives to the cochlear implant and may provide more than a new form of treatment as they hold the promise for a cure. To this end, current insights into inducible stem cells that may provide cells for seeding the cochlea with the hope of new hair cell formation are being reviewed. Alternatively, similar to induction of stem cells, cells of the flat epithelium that remains after hair cell loss could be induced to proliferate and differentiate into hair cells. In either of these strategies, hair cell specific genes known to be essential for hair cell differentiation or maintenance such as ATOH1, POU4F3, GFI1, and miRNA-183 will be utilized with the hope of completely restoring hearing to all patients with hearing loss."	"Audiometric characteristics of a Dutch family linked to DFNA15 with a novel mutation (p.L289F) in POU4F3. To report on the audiometric characteristics of a large Dutch family linked to DFNA15 with a novel mutation (p.L289F) in POU4F3 (OMIM 602460). Clinical investigation. Tertiary referral center. Family members from a large 5-generation pedigree with sensorineural hearing impairment segregating as an autosomal dominant trait. Cross-sectional and longitudinal analyses of pure-tone audiometric data, and cross-sectional analyses of speech audiometry data. Overall, a flat to gently downsloping audiometric configuration was observed with a progression rate of approximately 0.8 dB/y across most frequencies. Speech recognition scores remained fairly good in relation to age and hearing level compared with a group of patients with presbycusis. Interindividual variability was observed in terms of subjective onset age and audiometric configuration. Two mutation carriers, who reported vestibular symptoms, underwent vestibular examination and showed hypofunction of the vestibular labyrinth. The audiometric phenotype of the Dutch family linked to DFNA15 with a novel mutation in POU4F3 is comparable to that observed in the original Israeli family linked to DFNA15. Relatively good speech recognition scores suggest outer hair cell involvement. DFNA15 may represent a cochleovestibular disorder."	"Missense mutations in POU4F3 cause autosomal dominant hearing impairment DFNA15 and affect subcellular localization and DNA binding. In a Dutch pedigree suffering from autosomal dominant nonsyndromic hearing impairment (ADNSHI), linkage was found to the locus for DFNA15, with a two-point logarithm of the odds (LOD) score of 5.1. Sequence analysis of the POU4F3 gene that is involved in DFNA15 revealed the presence of a missense mutation (c.865C&gt;T), segregating with the deafness in this family. The mutation is predicted to result in the substitution of a phenylalanine residue for a leucine residue (p.L289F) in the POU homeodomain of the transcription factor POU4F3. Mutation analysis of the POU4F3 gene in 30 patients suffering from dominantly inherited hearing impairment revealed a second novel missense mutation (c.668T&gt;C), resulting in the substitution of a proline for a leucine residue (p.L223P) within the POU-specific DNA-binding domain of the protein. In a computer model describing the structure of the two DNA-binding domains, the alterations are predicted to affect the tertiary structure of these domains. Transient transfection studies showed that whereas the wild-type POU4F3 is located almost exclusively in the nucleus, part of the mutant proteins was also present in the cytoplasm. In addition, both mutant proteins showed greatly reduced capability for binding to DNA as well as transcriptionally activating reporter gene expression. Together, our results describe the identification of the first missense mutations in POU4F3 causing DFNA15. Furthermore, mutations in this gene do not seem to be a rare cause of hearing impairment in the Dutch population, and the POU4F3 gene may thus be suitable for implementation in diagnostic testing."	"Barhl1 regulatory sequences required for cell-specific gene expression and autoregulation in the inner ear and central nervous system. The development of the nervous system requires the concerted actions of multiple transcription factors, yet the molecular events leading to their expression remain poorly understood. Barhl1, a mammalian homeodomain transcription factor of the BarH class, is expressed by developing inner ear hair cells, cerebellar granule cells, precerebellar neurons, and collicular neurons. Targeted gene inactivation has demonstrated a crucial role for Barhl1 in the survival and/or migration of these sensory cells and neurons. Here we report the regulatory sequences of Barhl1 necessary for directing its proper spatiotemporal expression pattern in the inner ear and central nervous system (CNS). Using a transgenic approach, we have found that high-level and cell-specific expression of Barhl1 within the inner ear and CNS depends on both its 5' promoter and 3' enhancer sequences. Further transcriptional, binding, and mutational analyses of the 5' promoter have identified two homeoprotein binding motifs that can be occupied and activated by Barhl1. Moreover, proper Barhl1 expression in inner ear hair cells and cerebellar and precerebellar neurons requires the presence of Atoh1. Together, these data delineate useful Barhl1 regulatory sequences that direct strong and specific gene expression to inner ear hair cells and CNS sensory neurons, establish a role for autoregulation in the maintenance of Barhl1 expression, and identify Atoh1 as a key upstream regulator."	"Molecular modelling insights into DFNA15 mediated enhancement of POU4F3 stability. The POU4F3 transcription factor is expressed in the cochlear and vestibular hair cells of the inner ear and its targeted deletion results in a loss of inner ear hair cells. The DFNA15 truncation mutation has been demonstrated to result in a loss of transcriptional activity, but an increase in the stability of the protein. Molecular modelling is utilised to propose a mechanism of stability enhancement, via an interaction between the truncated POU(HD) domain and the POU(S) domain of the transcription factor."	"The human fetal cochlea can be a source for auditory progenitors/stem cells isolation. The development of new stem cell-based technologies is creating new hopes in regenerative medicine. Hearing-impaired individuals should benefit greatly from the development of a cell-based regenerative strategy to treat deafness. An important achievement would be to develop a human-based system that could bring the advances made in animal models closer to clinical application. In this work, we have explored the suitability of the developing fetal cochlea to be used as a source for the extraction of auditory progenitor/stem cells. We have established cultures that express critical markers such as NESTIN, SOX2, GATA3 and PAX2. These cultures can be expanded in vitro for several months and differentiating markers such as ATOH1/HATH1 and POU4F3/BRN3C can be induced by manipulating the culture conditions using specific growth factors such as bFGF, EGF and retinoic acid."	"Identification and functional analysis of common sequence variants in the DFNA15 gene, Brn-3c. A rare mutation in Brn-3c (Brn3.1, POU4F3) underlies adult onset hearing loss (DFNA15) and targeted deletion of this gene in mice leads to complete deafness due to loss of sensory hair cells from the cochlea. Therefore the aim of our study was to identify and characterise common functional variation in the Brn-3c gene, which could potentially be a genetic risk for more common forms of adult onset hearing loss. We identified seven sequence variants at the Brn-3c locus. One of these, a novel, common variant at position -3432 was extremely complex consisting of a variable guanine repeat that also exhibited single nucleotide substitutions within the poly-guanine repeat: -3432 poly-G polymorphism. In-vitro studies show that this polymorphism modifies binding affinity for the SP1 transcription factor. Furthermore, reporter constructs of the Brn-3c 5'-flanking region containing different -3432 poly-G alleles show altered transcriptional activity when endogenous SP1 levels are reduced using a dominant negative approach. Results also indicate that this effect is influenced by the length of a novel polymorphic (GT)(n) repeat at position -566 in the Brn-3c 5'-flanking region. In summary, our data show there are common sequence variants in the Brn-3c 5'-flanking region that affect transcriptional regulation in vitro; these variants are candidates for large-scale population based association analysis as they could potentially affect the genetic risk for more common types of adult onset hearing loss."	"Lhx3, a LIM domain transcription factor, is regulated by Pou4f3 in the auditory but not in the vestibular system. A dominant mutation of the gene encoding the POU4F3 transcription factor underlies human non-syndromic progressive hearing loss DFNA15. Using oligonucleotide microarrays to generate expression profiles of inner ears of Pou4f3(ddl/ddl) mutant and wild-type mice, we have identified and validated Lhx3, a LIM domain transcription factor, as an in vivo target gene regulated by Pou4f3. Lhx3 is a hair cell-specific gene expressed in all hair cells of the auditory and vestibular system as early as embryonic day 16. The level of Lhx3 mRNA is greatly reduced in the inner ears of embryonic Pou4f3 mutant mice. Our data also show that the expression of Lhx3 is regulated differently in auditory and vestibular hair cells. This is the first example of a hair cell-specific gene expressed both in auditory and in vestibular hair cells, with differential regulation of expression in these two closely related systems."	"Identification and characterization of mouse cochlear stem cells. Genetic, noise- and drug-induced loss of hair cells in the mouse and human cochlea leads to permanent hearing loss due to lack of regeneration of hair cells, which may be due to reduced numbers or loss of the regenerative ability of stem cells in the adult cochlea. We hypothesized that the mouse neonate cochlea harbors stem cells capable of differentiating into hair cells. Cells from the primary neonate cochlear culture began to proliferate and formed floating spheres after 14 days in vitro (DIV). By comparison, spheres from the primary culture of the cortex were observed after 7 DIV. Cochlear sphere cells could be passaged and the new spheres were observed after 7 DIV. Cochlear sphere cells were capable of differentiating into astrocytes and oligodendrocytes, but not neurons under the conditions tested. Cochlear sphere cells expressed Sox2 and Myo7a, but failed to show markers that are expressed exclusively in mature cochlear tissue, while cells from cortex spheres expressed Sox2 and Otx2, but not Myo7a. Our results show that cochleae from neonatal mice harbor cells capable of forming spheres and cells from these spheres appear to be better endowed to become hair cells."	"Inner ear proteomics of mouse models for deafness, a discovery strategy. Inner ear dysfunction is often associated with defective hair cells. Therefore, hair cells are the focus of study in many of the mouse mutants showing auditory and vestibular deficits. However, harvesting sufficient numbers of hair cells from the tiny bony mouse inner ear for proteomic analysis is challenging. New approaches that would take advantage of mouse mutants and avoid processing steps, such as decalcification or microdissetion, would be more suitable for proteomic analysis. Here, we propose a novel approach called SSUMM-Subtractive Strategy Using Mouse Mutants. SSUMM takes advantage of the differences between control and affected or mutant samples. We predict that SSUMM would be a useful method in proteomics, especially in those cases in which the investigator must work with small numbers of diverse cell types from a tiny organ. Here, we discuss the potential utility of SSUMM to unravel the protein expression profiles of hair cells using the Pou4f3 mouse mutant as an example. Pou4f3 mutant mice exhibit a total loss of inner and outer hair cells, but supporting cells remain relatively intact in the cochlea, thus providing an excellent model for identifying proteins and transcripts that are specific to the hair cell at all life stages. SSUMM would maximize the sensitivity of the analyses while obviating the need for tedious sessions of microdissection and collection of hair cells. By comparing the mutant to control ears at specific time points, it is possible to identify direct targets of a gene product of interest. Further, SSUMM could be used to identify and analyze inner ear development markers and other known genes/proteins that are coexpressed in the ear. In this short technical report, we also discuss protein-profiling approaches suitable for SSUMM and briefly discuss other approaches used in the field of proteomics."	"Transcriptional regulation by Barhl1 and Brn-3c in organ-of-Corti-derived cell lines. Barhl1 and Brn-3c have been identified as transcription factors that are essential for survival and maintenance of hair cells of the inner ear. Little is known about the mechanism of how Brn-3c or Barhl1 may regulate transcription in the inner ear. In this study, the transcriptional function of both Brn-3c and Barhl1 was investigated in the organ-of-Corti-derived cell lines, OC-1 and OC-2. We examined regulatory domains in these transcription factors by linking regions of Barhl1 and Brn-3c to the DNA binding domain of the heterologous transcription factor GAL4 and assayed their effect on a heterologous promoter containing GAL4 DNA binding sites by co-transfection into OC-1 and OC-2 cell lines. Brn-3c was found to contain an independent N-terminal activation domain that is sufficient to activate gene transcription in the organ of corti derived cell lines. Barhl1 on the other hand was found to act as a transcriptional repressor with repressive activity not restricted to a particular domain of Barhl1. In addition, we analyzed the effect of Barhl1 on the promoters of the neurotrophin genes NT-3 and BDNF in OC-1 and OC-2 cell lines. However, Barhl1 was not found to directly regulate neurotrophin promoter constructs in these cells."	"Mutant mice reveal the molecular and cellular basis for specific sensory connections to inner ear epithelia and primary nuclei of the brain. We review the in vivo evidence for afferent fiber guidance to the inner ear sensory epithelia and the central nuclei of termination. Specifically, we highlight our current molecular understanding for the role of hair cells and sensory epithelia in guiding afferents, how disruption of certain signals can alter fiber pathways, even in the presence of normal hair cells, and what role neurotrophins play in fiber guidance of sensory neurons to hair cells. The data suggest that the neurotrophin BDNF is the most important molecule known for inner ear afferent fiber guidance to hair cells in vivo. This suggestion is based on experiments on Ntf3 transgenic mice expressing BDNF under Ntf3 promoter that show deviations of fiber growth in the ear to areas that express BDNF but have no hair cells. However, fiber growth can occur in the absence of BDNF as demonstrated by double mutants for BDNF and Bax. We directly tested the significance of hair cells or sensory epithelia for fiber guidance in mutants that lose hair cells (Pou4f3) or do not form a posterior crista (Fgf10). While these data emphasize the role played by BDNF, normally released from hair cells, there is some limited capacity for directed growth even in the absence of hair cells, BDNF, or sensory epithelia. This directed growth may rely on semaphorins or other matrix proteins because targeted ablation of the sema3 docking site on the sema receptor Npn1 results in targeting errors of fibers even in the presence of hair cells and BDNF. Overall, our data support the notion that targeting of the afferent processes in the ear is molecularly distinct from targeting processes in the central nuclei. This conclusion is derived from data that show no recognizable central projection deviation, even if fibers are massively rerouted in the periphery, as in Ntf3(tgBDNF) mice in which vestibular fibers project to the cochlea."	"[An analysis of a large hereditary postlingually deaf families and detecting mutation of the deafness genes]. To make a further exploration of the mutation frequence of Chinese genetic deafness and make clear if the genetic deafness genealogy that we collected recently was resulted from the mutation of the deafness genes which had been cloned. We made regular otologic examination, hearing test and physical examination among the members of this genealogy, and also inspected the mutation of seven autosomal domiant deafness genes, HDIAI,GJB2, GJB3, DFNA5, a-tectorin(resulting in two types of genetic deafness, DFNA8 and DFNA12), MYO7A,POU4F3, with PCR-Sequencing method in this genealogy. 1. The analysis of hereditary mode: There were forty-seven persons collected in five generations of this genealogy, and eighteen persons of them were deafness. It accorded with autosomal dominant inheritance from the pedigree. 2. The clinic feature: All patients with deafness were postlingual deafness. Their hearing decreased onset between sixteen to thirty years old, and the deafness was binaural symmetrical, progressive sensorineural and without other systems abnormity. 3. Analysis of mutation detection: We found two nucleotides changes in CX26 genes, A341G and GC257-258CG, and one changed nucleotide in POU4F3 gene,T90C. But we didn't think the changed nucleotides caused deafness after we analysed them. No mutation was found in other five genes. The possibility that the deafness of this genealogy was resulted from the cloned gene is relatively small. Now, We are scanning the whole gene groups and making linkage analysis on this pedigree, it is most probably to orientate a new deafness gene position."	"DFNA54, a third locus for low-frequency hearing loss. Nonsyndromic hereditary hearing impairment (NSHHI) is a highly heterogeneous disorder with more than 90 loci mapped, of which nearly one-half of the responsible genes are identified. In dominant NSSHI hearing loss is typically biased towards the high frequencies while low-frequency hearing loss is unusual. Only two NSHHI loci, DFNA1 and DFNA6/14/38, are associated with predominantly low-frequency loss. We mapped the loci harboring the gene responsible for autosomal dominant low-frequency hearing loss in a multigenerational family. The pedigree of a Swiss family with low-frequency hearing loss was established. Using genomic DNA, DFNA1 and DFNA6/14/38 were excluded by linkage analysis or by direct sequencing of the responsible gene. Genome-wide linkage analysis was performed using commercially available microsatellite markers. Two-point linkage analysis demonstrated linkage to chromosome 5q31, the locus for DFNA15, with a lod score of 6.32 at recombination fraction theta=0 for marker D5S436. Critical recombinations were seen at markers D5S1972 and D5S410. Sequencing of the corresponding gene POU4F3 yielded no pathogenic mutation segregating with the affected members. In addition to Wolfram syndrome gene 1 (DFNA6/14/38) and diaphanous (DFNA1) there is evidence for a third gene involved in low-frequency hearing loss located at DFNA15. Because of the differences in auditory phenotype and the absence of pathogenic mutation in the coding region of POU4F3 it is likely that there is a second gene in 5q31, designated DFNA54, associated with NSHHI."	"Brn-3c (POU4F3) regulates BDNF and NT-3 promoter activity. Brn-3c is a transcription factor necessary for maturation and survival of hair cells in the inner ear. Mutations in Brn-3c are associated with deafness in mice and with hearing loss in humans. Mice lacking Brn-3c also show reduced innervation and loss of sensory neurons presumed to be an indirect effect of hair cell loss potentially through lower BDNF and NT-3 expression. Using transient transfection assays we show that Brn-3c is capable of activating both BDNF and NT-3 promoters in inner ear sensory epithelial cell lines. In vitro analysis shows that Brn-3c binds to specific elements within the promoters of both genes and these elements are sufficient to confer Brn-3c regulation on a heterologous promoter. Additionally, BDNF expression is reduced in the inner ear of a Brn-3c mutant mouse during embryogenesis. Our data suggest that Brn-3c may play a role in regulating neurotrophin gene expression in the inner ear."	"Transcription profiling of inner ears from Pou4f3(ddl/ddl) identifies Gfi1 as a target of the Pou4f3 deafness gene. Pou4f3 (Brn3.1, Brn3c) is a class IV POU domain transcription factor that has a central function in the development of all hair cells in the human and mouse inner ear sensory epithelia. A mutation of POU4F3 underlies human autosomal dominant non-syndromic progressive hearing loss DFNA15. Through a comparison of inner ear gene expression profiles of E16.5 wild-type and Pou4f3 mutant deaf mice using a high density oligonucleotide microarray, we identified the gene encoding growth factor independence 1 (Gfi1) as a likely in vivo target gene regulated by Pou4f3. To validate this result, we performed semi-quantitative RT-PCR and in situ hybridizations for Gfi1 on wild-type and Pou4f3 mutant mice. Our results demonstrate that a deficiency of Pou4f3 leads to a statistically significant reduction in Gfi1 expression levels and that the dynamics of Gfi1 mRNA abundance closely follow the pattern of expression for Pou4f3. To examine the role of Gfi1 in the pathogenesis of Pou4f3-related deafness, we performed comparative analyses of the embryonic inner ears of Pou4f3 and Gfi1 mouse mutants using immunohistochemistry and scanning electron microscopy. The loss of Gfi1 results in outer hair cell degeneration, which appears comparable to that observed in Pou4f3 mutants. These results identify Gfi1 as the first downstream target of a hair cell specific transcription factor and suggest that outer hair cell degeneration in Pou4f3 mutants is largely or entirely a result of the loss of expression of Gfi1."	"Developmental expression of the POU domain transcription factor Brn-3b (Pou4f2) in the lateral line and visual system of zebrafish. Members of the class IV POU domain transcription factors are important regulators of neural development. In mouse, Brn-3b (Pou4f2, Brn3.2) and Brn-3c (Pou4f3, Brn3.1) are essential for the normal differentiation and maturation of retinal ganglion cells (RGCs) and hair cells of the auditory system, respectively. In this report, the cloning and expression profile of brn-3b in the zebrafish (Danio rerio) were assessed as the first step for understanding its role in the development of sensory systems. Two brn-3b alternative transcripts exhibited different onset of expression during development but shared overlapping expression domains in the adult visual system. The brn-3b expression in the zebrafish retina was consistent with a conserved role in differentiation and maintenance of RGCs. Expression was also observed in the optic tectum. Unexpectedly, brn-3b was prominently expressed in the migrating posterior lateral line primordium and larval neuromasts. For comparison, brn-3c expression was limited to the otic vesicle and was not detected in the lateral line during embryonic development. The expression of brn-3b in the mechanosensory lateral line of fish suggests a conserved function of a class IV POU domain transcription factor in sensory system development."	"The DFNA15 deafness mutation affects POU4F3 protein stability, localization, and transcriptional activity. A mutation in the POU4F3 gene (BRN-3.1, BRN3C) is responsible for DFNA15 (MIM 602459), autosomal-dominant nonsyndromic hearing loss. POU4F3 is a member of the POU family of transcription factors and is essential for inner-ear hair cell maintenance. To test the potential effects of the human POU4F3 mutation, we performed a series of experiments in cell culture to mimic the human mutation. Mutant POU4F3 loses most of its transcriptional activity and most of its ability to bind to DNA and does not function in a dominant-negative manner. Moreover, whereas wild-type POU4F3 is found exclusively in the nucleus, our studies demonstrate that the mutant protein is localized both to the nucleus and the cytoplasm. Two nuclear localization signals were identified; both are essential for proper nuclear entry of POU4F3 protein. We found that the mutant protein half-life is longer than that of the wild type. We propose that the combination of defects caused by the mutation on the function of the POU4F3 transcription factor eventually leads to hair cell morbidity in affected family H members."	"Transcription cooperation by NFAT.C/EBP composite enhancer complex. The nuclear factor of activated T cells (NFAT) group of transcription factors regulates gene expression in immune and non-immune cells. NFAT-mediated gene transcription is orchestrated, in part, by formation of a composite regulatory element. Here we demonstrate that NFAT interacts with transcription factor CCAAT/enhancer-binding protein (C/EBP) to form a composite enhancer complex, to potentiate expression of the peroxisome proliferator-activated receptor-gamma2 gene. Formation of a ternary NFAT.C/EBP.DNA complex is required for the transcriptional cooperation. A similar NFAT.C/EBP composite element is found in the regulatory region of the insulin-like growth factor 2, angiotensin-converting enzyme homolog, and transcription factor POU4F3 genes. Thus, the NFAT.C/EBP composite element represents a novel regulatory enhancer to direct NFAT-mediated gene transcription."	"Brn3c null mutant mice show long-term, incomplete retention of some afferent inner ear innervation. Ears of Brn3c null mutants develop immature hair cells, identifiable only by certain molecular markers, and undergo apoptosis in neonates. This partial development of hair cells could lead to enough neurotrophin expression to sustain sensory neurons through embryonic development. We have therefore investigated in these mutants the patterns of innervation and of expression of known neurotrophins. At birth there is a limited expression of BDNF and NT-3 in the mutant sensory epithelia and DiI tracing shows no specific reduction of afferents or efferents that resembles neurotrophin null mutations. At postnatal day 7/8 (P7/8), innervation is severely reduced both qualitatively and quantitatively. 1% of myosin VIIa-positive immature hair cells are present in the mutant cochlea, concentrated in the base. Around 20% of immature hair cells exist in the mutant vestibular sensory epithelia. Despite more severe loss of hair cells (1% compared to 20%), the cochlea retains many more sensory neurons (46% compared to 15%) than vestibular epithelia. Even 6 months old mutant mice have some fibers to all vestibular sensory epithelia and many more to the cochlear apex which lacks MyoVIIa positive hair cells. Topologically organized central cochlea projections exist at least until P8, suggesting that functional hair cells are not required to establish such projections. The limited expression of neurotrophins in the cochlea of Brn3c null mice suffices to support many sensory neurons, particularly in the cochlea, until birth. The molecular nature of the long term survival of apical spiral neurons remains unclear."	"A novel locus for autosomal dominant nonsyndromic hearing loss identified at 5q31.1-32 in a Chinese pedigree. Hearing impairment is an extremely heterogeneous disorder. A total of 35 loci and 17 related genes for autosomal dominant nonsyndromic hearing loss have been identified. In a Chinese pedigree characterized by autosomal dominant inheritance with bilateral, postlingual, progressive, and sensorineural nonsyndromic hearing impairment, the putative disease gene locus was localized to chromosome 5q31.1-32 by a genome-wide scan. Fine mapping indicated that the disease gene was located within an 8.8-cM region between markers D5S2056 and D5S638, with a maximum two-point logarithm of differences (LOD) score of 6.89 (theta = 0) at D5S2017. By the candidate gene approach, mutation screening of the DIAPH1 and POU4F3 genes at 5q31 was performed. No mutation was found, suggesting that this is a novel deafness locus, which has been named DFNA42."	"Early steps in the production of sensory neurons by the neurogenic placodes. Neurogenic placodes are specialized regions of the embryonic ectoderm that generate the majority of the neurons of the cranial sensory ganglia. Here we have accurately determined the onset of neurogenesis in each of the placodes in the chick, and we have also analyzed the expression profiles of genes that are believed to be involved in determining the types of sensory neurons produced by each placode. Interestingly, we find that there is a major difference in the expression domains of neurogenin-1 and neurogenin-2 in the chick, when compared with those reported for the mouse. We do find, however, that Brn-3a and Phox-2a and Phox-2b which are also associated with the specification of neuronal type are expressed in the same domains in the chick as they are in the mouse. These results suggest that neurogenin-1 and neurogenin-2 are functionally interchangeable in neurogenic placodes. We have also found major differences between the ophthalmic and maxillomandibular trigeminal placodes, and while all of the other placodes generate mitotically active cells the ophthalmic trigeminal placode seems to throw off postmitotic neuronal cells."	"Evidence for vestibular regulation of autonomic functions in a mouse genetic model. Physiological responses to changes in the gravitational field and body position, as well as symptoms of patients with anxiety-related disorders, have indicated an interrelationship between vestibular function and stress responses. However, the relative significance of cochlear and vestibular information in autonomic regulation remains unresolved because of the difficulties in distinguishing the relative contributions of other proprioceptive and interoceptive inputs, including vagal and somatic information. To investigate the role of cochlear and vestibular function in central and physiological responses, we have examined the effects of increased gravity in wild-type mice and mice lacking the POU homeodomain transcription factor Brn-3.1 (Brn-3bPou4f3). The only known phenotype of the Brn-3.1(-/-) mouse is related to hearing and balance functions, owing to the failure of cochlear and vestibular hair cells to differentiate properly. Here, we show that normal physiological responses to increased gravity (2G exposure), such as a dramatic drop in body temperature and concomitant circadian adjustment, were completely absent in Brn-3.1(-/-) mice. In line with the lack of autonomic responses, the massive increase in neuronal activity after 2G exposure normally detected in wild-type mice was virtually abolished in Brn-3.1(-/-) mice. Our results suggest that cochlear and vestibular hair cells are the primary regulators of autonomic responses to altered gravity and provide genetic evidence that these cells are sufficient to alter neural activity in regions involved in autonomic and neuroendocrine control."	"The clinical presentation of DFNA15/POU4F3. NA"	"Transgenic and gene targeting studies of hair cell function in mouse inner ear. Despite the rapid discovery of a large number of genes in sensory hair cells of the inner ear, the functional roles of these genes in hair cells remain largely undetermined. Recent advances in transgenic and gene targeting technologies in mice have offered unprecedented opportunities to genetically manipulate the expression of these genes and to study their functional roles in hair cells in vivo. Transgenic analyses have revealed the presence of hair-cell-specific promoters in the genes encoding Math1, myosin VIIa, Pou4f3, and the alpha9 subunit of the acetylcholine receptor (alpha9 AChR). Targeted inactivation using embryonic stem cell technology and transgenic expression studies have revealed the roles of several genes involved in hair cell lineage (Math1), differentiation (Pou4f3), mechanotransduction (Myo1c, and Myo7a), electromotility (Prestin), and efferent modulation (Chrna9, encoding alpha9 AChR). Although many of these genes also play roles in other tissues, inactivation of these genes in hair cells alone will soon be possible by using the Cre-loxP system. Also imminent is the development of genetic methods to inactivate genes specifically in mouse hair cells at a desired time, by using inducible systems established in other types of neurons. Combining these types of manipulation of gene expression will enable hearing researchers to elucidate some of the fundamental and unique features of hair cell function such as mechanotransduction, frequency tuning, active mechanical amplification, and efferent modulation."	"Non-syndromic autosomal-dominant deafness. Non-syndromic deafness is a paradigm of genetic heterogeneity. More than 70 loci have been mapped, and 25 of the nuclear genes responsible for non-syndromic deafness have been identified. Autosomal-dominant genes are responsible for about 20% of the cases of hereditary non-syndromic deafness, with 16 different genes identified to date. In the present article we review these 16 genes, their function and their contribution to deafness in different populations. The complexity is underlined by the fact that several of the genes are involved in both dominant and recessive non-syndromic deafness or in both non-syndromic and syndromic deafness. Mutations in eight of the genes have so far been detected in only single dominant deafness families, and their contribution to deafness on a population base might therefore be limited, or is currently unknown. Identification of all genes involved in hereditary hearing loss will help in the understanding of the basic mechanisms underlying normal hearing, will facilitate early diagnosis and intervention and might offer opportunities for rational therapy."	"All Brn3 genes can promote retinal ganglion cell differentiation in the chick. Targeted gene disruption studies in the mouse have demonstrated crucial roles for the Brn3 POU domain transcription factor genes, Brn3a, Brn3b, Brn3c (now called Pou4f1, Pou4f2, Pou4f3, respectively) in sensorineural development and survival. During mouse retinogenesis, the Brn3b gene is expressed in a large set of postmitotic ganglion cell precursors and is required for their early and terminal differentiation. In contrast, the Brn3a and Brn3c genes, which are expressed later in ganglion cells, appear to be dispensable for ganglion cell development. To understand the mechanism that causes the functional differences of Brn3 genes in retinal development, we employed a gain-of-function approach in the chick embryo. We find that Brn3b(l) and Brn3b(s), the two isoforms encoded by the Brn3b gene, as well as Brn3a and Brn3c all have similar DNA-binding and transactivating activities. We further find that the POU domain is minimally required for these activities. Consequently, we show that all these Brn3 proteins have a similar ability to promote development of ganglion cells when ectopically expressed in retinal progenitors. During chick retinogenesis, cBrn3c instead of cBrn3b exhibits a spatial and temporal expression pattern characteristic of ganglion cell genesis and its misexpression can also increase ganglion cell production. Based on these data, we propose that all Brn3 factors are capable of promoting retinal ganglion cell development, and that this potential may be limited by the order of expression in vivo."	"DFNA15. NA"	"Clinical characterization of genetic hearing loss caused by a mutation in the POU4F3 transcription factor. To describe the detailed auditory phenotype of DFNA15, genetic hearing loss associated with a mutation in the POU4F3 transcription factor, and to define genotype-phenotype correlations, namely, how specific mutations lead to particular clinical consequences. An analysis of clinical features of hearing-impaired members of an Israeli family, family H, with autosomal dominant-inherited hearing loss. Department of Human Genetics and Molecular Medicine, Sackler School of Medicine, Tel Aviv University, Tel Aviv, Israel; Department of Audiology, Rabin Medical Center, Petah Tiqwa, Israel; and audiological centers. Clinical features of 11 affected and 5 unaffected individuals older than 40 years from family H were studied. Mutation analysis was performed in 6 presymptomatic individuals younger than 30 years; clinical features were analyzed in 4 of these family H members. Hearing was measured by pure-tone audiometry and speech audiometry on all participating relatives of family H. Immittance testing (tympanometry and acoustic reflexes), auditory brainstem response, and otoacoustic emissions were done in a selected patient population. The patients presented with progressive high-tone sensorineural hearing impairment, which became apparent between ages 18 and 30 years. The hearing impairment became more severe with time, eventually causing significant hearing loss across the spectrum at all frequencies. Our results indicate that POU4F3 mutation-associated deafness cannot be identified through clinical evaluation, but only through molecular analysis. Intrafamilial variability suggests that other genetic or environmental factors may modify the age at onset and rate of progression."	"Effects of a hair cell transcription factor, Brn-3.1, gene deletion on homozygous and heterozygous mouse cochleas in adulthood and aging. The transcription factor Brn-3.1, is expressed in the inner ear hair cells throughout life and is necessary for the development of these cells. Mutant mice in which the Brn-3.1 encoding region has been deleted have no identifiable hair cells, greatly reduced numbers of spiral ganglion cells and are deaf. A mutation in the human homologue of this gene has been shown to be related to adult onset, sensorineural hearing loss (Vahava et al., 1998). The question whether haploinsufficiency in the mutant Brn-3.1 mouse with a mixed C57BL6/129Sv genetic background could affect the adult or aged cochlea was tested, therefore, by measuring the auditory brainstem responses and examining the cochlea's histologically at 2, 18 and 24 months of age. The heterozygotes had a comparable hearing to the wild-type animals and similar patterns of cochlear degeneration. Both groups showed an about 30 dB hearing loss beginning at 18 months of age, outer hair cell degeneration and loss of spiral ganglion neurons in the basal turn. There appeared to be no effect of Brn-3.1 haploinsufficiency on the mouse cochlea, implying that one intact copy of the gene is sufficient to maintain a normal cochlea."	"The role of mouse mutants in the identification of human hereditary hearing loss genes. The mouse is the model organism for the study of hearing loss in mammals. In recent years, the identification of five different mutated genes in the mouse (Pax3, Mitf; Myo7a, Pou4f3, and Myo15) has led directly to the identification of mutations in families with either congenital sensorineural deafness or progressive sensorineural hearing loss. Each of these cases is reviewed here. In addition to providing a powerful gateway to the identification of human hearing loss genes, the study of mouse deafness mutants can lead to the discovery of critical components of the auditory system. Given the availability of several mouse mutants that affect possible homologues of other human deafness genes, it is likely that the mouse will play a key role in identifying other human hearing loss genes in the years to come."	"Genomics and hearing impairment. Hearing impairment is clinically and genetically heterogeneous. There are &gt;400 disorders in which hearing impairment is a characteristic of the syndrome, and family studies demonstrate that there are at least 30 autosomal loci for nonsyndromic hearing impairment. The genes that have been identified encode diaphanous (HDIA1), alpha-tectorin (TECTA), the transcription factor POU4F3, connexin 26 (GJB2), and two unconventional myosins (MYO7A and MYO15), and four novel proteins (PDS, COCH, DFNA5, DFNB9). The same clinical phenotype in hearing-impaired individuals, even those within the same family, can result from mutations in different genes. Conversely, mutations in the same gene can result in a variety of clinical phenotypes with different modes of inheritance. For example, mutations in the gene encoding MYO7A cause Usher syndrome type IB, autosomal-recessive nonsyndromic hearing impairment (DFNB2), and autosomal-dominant nonsyndromic hearing impairment (DFNA11). Additionally, the mouse ortholog of the MYO7A gene is the shaker-1 gene. Mouse models such as shaker-1 have facilitated the identification of genes that cause hearing impairment in humans. The availability of high-resolution maps of the human and mouse genomes and new technologies for gene identification are advancing molecular understanding of hearing impairment and the complex mechanisms of the auditory system."	"Two deaf mice, two deaf mice... NA"	"Progress in progressive hearing loss. NA"	"Mutation in transcription factor POU4F3 associated with inherited progressive hearing loss in humans. The molecular basis for autosomal dominant progressive nonsyndromic hearing loss in an Israeli Jewish family, Family H, has been determined. Linkage analysis placed this deafness locus, DFNA15, on chromosome 5q31. The human homolog of mouse Pou4f3, a member of the POU-domain family of transcription factors whose targeted inactivation causes profound deafness in mice, was physically mapped to the 25-centimorgan DFNA15-linked region. An 8-base pair deletion in the POU homeodomain of human POU4F3 was identified in Family H. A truncated protein presumably impairs high-affinity binding of this transcription factor in a dominant negative fashion, leading to progressive hearing loss."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SLC17A8"	"nonsyndromic genetic deafness"	"Characterization of the transcriptomes of Atoh1-induced hair cells in the mouse cochlea. Postnatal mammalian cochlear hair cells (HCs) can be regenerated by direct transdifferentiation or by mitotic regeneration from supporting cells through many pathways, including Atoh1, Wnt, Hedgehog and Notch signaling. However, most new HCs are immature HCs. In this study we used RNA-Seq analysis to compare the differences between the transcriptomes of Atoh1 overexpression-induced new HCs and the native HCs, and to define the factors that might help to promote the maturation of new HCs. As expected, we found Atoh1-induced new HCs had obvious HC characteristics as demonstrated by the expression of HC markers such as Pou4f3 and Myosin VIIA (Myo7a). However, Atoh1-induced new HCs had significantly lower expression of genes that are related to HC function such as Slc26a5 (Prestin), Slc17a8 and Otof. We found that genes related to HC cell differentiation and maturation (Kcnma1, Myo6, Myo7a, Grxcr1, Gfi1, Wnt5a, Fgfr1, Gfi1, Fgf8 etc.) had significantly lower expression levels in new HCs compared to native HCs. In conclusion, we found a set of genes that might regulate the differentiation and maturation of new HCs, and these genes might serve as potential new therapeutic targets for functional HC regeneration and hearing recovery."	"Exposure to sodium salicylate disrupts VGLUT3 expression in cochlear inner hair cells and contributes to tinnitus. To examine whether exposure to sodium salicylate disrupts expression of vesicular glutamate transporter 3 (VGLUT3) and whether the alteration in expression corresponds to increased risk for tinnitus. Rats were treated with saline (control) or sodium salicylate (treated) Rats were examined for tinnitus by monitoring gap-pre-pulse inhibition of the acoustic startle reflex (GPIAS). Auditory brainstem response (ABR) was applied to evaluate hearing function after treatment. Rats were sacrificed after injection to obtain the cochlea, cochlear nucleus (CN), and inferior colliculus (IC) for examination of VGLUT3 expression. No significant differences in hearing thresholds between groups were identified (p&gt;0.05). Tinnitus in sodium salicylate-treated rats was confirmed by GPIAS. VGLUT3 encoded by solute carrier family 17 members 8 (SLC17a8) expression was significantly increased in inner hair cells (IHCs) of the cochlea in treated animals, compared with controls (p&lt;0.01). No significant differences in VGLUT3 expression between groups were found for the cochlear nucleus (CN) or IC (p&gt;0.05). Exposure to sodium salicylate may disrupt SLC17a8 expression in IHCs, leading to alterations that correspond to tinnitus in rats. However, the CN and IC are unaffected by exposure to sodium salicylate, suggesting that enhancement of VGLUT3 expression in IHCs may contribute to the pathogenesis of tinnitus."	"Genome-Wide Methylation of Mild Cognitive Impairment in Mexican Americans Highlights Genes Involved in Synaptic Transport, Alzheimer's Disease-Precursor Phenotypes, and Metabolic Morbidities. The Mexican American population is among the fastest growing aging population and has a younger onset of cognitive decline. This group is also heavily burdened with metabolic conditions such as hypertension, diabetes, and obesity. Unfortunately, limited research has been conducted in this group. Understanding methylation alterations, which are influenced by both genetic and lifestyle factors, is key to identifying and addressing the root cause for mild cognitive impairment, a clinical precursor for dementia. We conducted an epigenome-wide association study on a community-based Mexican American population using the Illumina EPIC array. Following rigorous quality control measures, we identified 10 CpG sites to be differentially methylated between normal controls and individuals with mild cognitive impairment annotated to PKIB, KLHL29, SEPT9, OR2C3, CPLX3, BCL2L2-PABPN1, and CCNY. We found four regions to be differentially methylated in TMEM232, SLC17A8, ALOX12, and SEPT8. Functional gene-set analysis identified four gene-sets, RIN3, SPEG, CTSG, and UBE2L3, as significant. The gene ontology and pathway analyses point to neuronal cell death, metabolic dysfunction, and inflammatory processes. We found 1,450 processes to be enriched using empirical Bayes gene-set enrichment. In conclusion, the functional overlap of differentially methylated genes associated with cognitive impairment in Mexican Americans implies cross-talk between metabolically-instigated systemic inflammation and disruption of synaptic vesicular transport."	"Modeling Retinitis Pigmentosa: Retinal Organoids Generated From the iPSCs of a Patient With the USH2A Mutation Show Early Developmental Abnormalities. Retinitis pigmentosa (RP) represents a group of inherited retinopathies with early-onset nyctalopia followed by progressive photoreceptor degeneration causing irreversible vision loss. Mutations in USH2A are the most common cause of non-syndromic RP. Here, we reprogrammed induced pluripotent stem cells (iPSCs) from a RP patient with a mutation in USH2A (c.8559-2A &gt; G/c.9127_9129delTCC). Then, multilayer retinal organoids including neural retina (NR) and retinal pigment epithelium (RPE) were generated by three-step &quot;induction-reversal culture.&quot; The early retinal organoids derived from the RP patient with the USH2A mutation exhibited significant defects in terms of morphology, immunofluorescence staining and transcriptional profiling. To the best of our knowledge, the pathogenic mutation (c.9127_9129delTCC) in USH2A has not been reported previously among RP patients. Notably, the expression of laminin in the USH2A mutation organoids was significantly lower than in the iPSCs derived from healthy, age- and sex-matched controls during the retinal organogenesis. We also observed that abnormal retinal neuroepithelium differentiation and polarization caused defective retinal progenitor cell development and retinal layer formation, disordered organization of NRs in the presence of the USH2A mutation. Furthermore, the USH2A mutation bearing RPE cells presented abnormal morphology, lacking pigmented foci and showing an apoptotic trend and reduced expression of specific makers, such as MITF, PEDF, and RPE65. In addition, the USH2A mutation organoids had lower expression of cilium-associated (especially CFAP43, PIFO) and dopaminergic synapse-related genes (including DLGAP1, GRIK1, SLC17A7, and SLC17A8), while there was higher expression of neuron apoptotic process-related genes (especially HIF1A, ADARB1, and CASP3). This study may provide essential assistance in the molecular diagnosis and screening of RP. This work recapitulates the pathogenesis of USH2A using patient-specific organoids and demonstrated that alterations in USH2A function due to mutations may lead to cellular and molecular abnormalities."	"Wnt/β-catenin signaling was activated in supporting cells during exposure of the zebrafish lateral line to cisplatin. Zebrafish lateral line neuromasts are composed of central hair cells surrounded by supporting cells. Cisplatin is a common anticancer drug, with hair cell disruption being a frequent side effect of this drug. In our study, we observed complete functional hair cell loss after six hours of cisplatin insult in neuromasts, as demonstrated by anti-parvalbumin 3 immunofluorescence staining or YO-PRO1 vital dye staining. Time course analysis of neuromast hair cell regeneration showed that regenerated hair cells first appeared between 12 and 24h after damage, and the abundance of these cells increased stepwise with recovery time. After 72h, 90% of the hair cells were regenerated, and after 84h, the number of regenerated hair cells was comparable to the number of neuromast hair cells before treatment. The expression pattern of slc17a8 also showed that hair cells were regenerated after cisplatin exposure. Meanwhile, peripheral supporting cells moved toward the center of the neuromasts, as shown by the in situ expression pattern of sox21a. Increased hair cell progenitor formation was also observed, as demonstrated by the in situ expression pattern of atoh1a. Furthermore, we detected increased expression of wnt2, wnt3a, and ctnnb1 in sorted supporting cells from the sqet10 transgenic line, which labels neuromast supporting cells specifically. In situ hybridization analysis also showed decreased expression of dkk1a and dkk2. Regenerated hair cells were inhibited by early inhibition of Wnt/β-catenin signaling. Taken together, the results presented here showed that Wnt/β-catenin signaling was activated in supporting cells during cisplatin exposure earlier than expected. Our results also indicated that supporting cells enabled hair cell regeneration via Wnt/β-catenin signaling during cisplatin exposure."	"[The clinical application of gene diagnosis and genetic counseling on hereditary hearing loss]. Objective:To summarize the clinic procedure and experience about gene diagnosis and genetic counseling on hereditary hearing loss, and explore the strategy and principle about gene diagnosis and genetic counseling on hereditary hearing loss.Method:A retrospective analysis was used on the clinical data of 151 cases who aim at genetic counseling. The all cases were divided into 5 groups according to the purpose of genetic counseling, such as the occurrence risk of hearing loss, the etiological analysis, the choice of the intervention way, the examination guidance, the prevention of hearing loss and the usage requirement of Aminogly cosides drugs. The counseling procedure includes the investigation of the etiology and family history, drawing the family pedigree, general physical examination, auditory examination and genetic analysis. Sanger sequencing analysis and/or Targeted nextgeneration sequencing was utilized to detect the deaf-gene mutations. At last, the genetic counseling, fertility guidance and prenatal diagnosis will be made on the basis of the results of gene detection. Result:There are 33 newborns who did not pass the deafgene screening, 9 of them could be diagnosed definitely as hereditary hearing loss, and the other 24 were the carriers of deafgene mutation. Eighty of 104 deaf patients were diagnosed definitely as hereditary hearing loss and the related gene mutation was found. Six objects in the 10 patients with auditory neuropathy are diagnosed as OTOF or SLC17A8 gene mutations before cochlear implantation. Three of 7 reproductive age objects who had family history were recessive deaf-gene carriers, 2 of them carried the same target gene with the mate who receive our fertility guidance and prenatal diagnose. The other 1 object carried the dominant genetic mutation(incomplete dominant heredity). There were 4 pregnant women who did not pass the deaf-gene screening, 1 of them carry the same target gene with the mate. The populations who want to use Aminoglycosides drugs were not diagnosed as carrying any related mitochondrial gene mutation. We carried out the genetic counseling according to the results of gens detection and clinical phenotype.Conclusion:Genetic counseling is based on the different purpose. The analysis of gene diagnosis should be considered to combine with the clinical phenotype. The principle of choosing the objects to make a gene diagnosis includes: ①the all deaf-genes sequencing was applied for the deaf patients. ② the screening target gene sequencing was used for the newborns who did not pass the deaf-gene screening and the mate whose pregnant wife did not pass the deafgene screening. ③the specific target gene sequencing could be used for the patients who has a clear family history or specific phenotype."	"Differential expression of VGLUT3 in laboratory mouse strains: Impact on drug-induced hyperlocomotion and anxiety-related behaviors. The atypical vesicular glutamate transporter VGLUT3 is present in subpopulations of GABAergic interneurons in the cortex and the hippocampus, in subgroups of serotoninergic neurons in raphe nuclei, and in cholinergic interneurons in the striatum. C56BL/6N mice that no longer express VGLUT3 (VGLUT3<sup>-/-</sup> ) display anxiety-associated phenotype, increased spontaneous and cocaine-induced locomotor activity and decreased haloperidol-induced catalepsy. Inbred mouse strains differ markedly in their sensitivity to anxiety and behavioral responses elicited by drugs. The purpose of this study was to investigate strain differences in VGLUT3 expression levels and its potential correlates with anxiety and reward-guided behaviors. Five inbred mouse lines were chosen according to their contrasted anxiety and drugs sensitivity: C57BL/6N, C3H/HeN, DBA/2J, 129/Sv, and BALB/c. VGLUT3 protein expression was measured in different brain areas involved in reward or mood regulation (such as the striatum, the hippocampus, and raphe nuclei) and genetic variations in Slc17a8, the gene encoding for VGLUT3, have been explored. These five inbred mouse strains express very different levels of VGLUT3, which cannot be attributed to the genetic variation of the Slc17a8 locus. Furthermore, mice behavior in the open field, elevated plus maze, spontaneous- and cocaine-induced locomotor was highly heterogeneous and only partially correlated to VGLUT3 levels. These data highlight the fact that one single gene polymorphism could not account for VGLUT3 expression variations, and that region specific VGLUT3 expression level variations might play a key role in the modulation of discrete behaviors."	"Simultaneous zygotic inactivation of multiple genes in mouse through CRISPR/Cas9-mediated base editing. In vivo genetic mutation has become a powerful tool for dissecting gene function; however, multi-gene interaction and the compensatory mechanisms involved can make findings from single mutations, at best difficult to interpret, and, at worst, misleading. Hence, it is necessary to establish an efficient way to disrupt multiple genes simultaneously. CRISPR/Cas9-mediated base editing disrupts gene function by converting a protein-coding sequence into a stop codon; this is referred to as CRISPR-stop. Its application in generating zygotic mutations has not been well explored yet. Here, we first performed a proof-of-principle test by disrupting Atoh1, a gene crucial for auditory hair cell generation. Next, we individually mutated vGlut3 (Slc17a8), otoferlin (Otof) and prestin (Slc26a5), three genes needed for normal hearing function. Finally, we successfully disrupted vGlut3, Otof and prestin simultaneously. Our results show that CRISPR-stop can efficiently generate single or triple homozygous F0 mouse mutants, bypassing laborious mouse breeding. We believe that CRISPR-stop is a powerful method that will pave the way for high-throughput screening of mouse developmental and functional genes, matching the efficiency of methods available for model organisms such as Drosophila."	"Characterizing a novel vGlut3-P2A-iCreER knockin mouse strain in cochlea. Precise mouse genetic studies rely on specific tools that can label specific cell types. In mouse cochlea, previous studies suggest that vesicular glutamate transporter 3 (vGlut3), also known as Slc17a8, is specifically expressed in inner hair cells (IHCs) and loss of vGlut3 causes deafness. To take advantage of its unique expression pattern, here we generate a novel vGlut3-P2A-iCreER knockin mouse strain. The P2A-iCreER cassette is precisely inserted before stop codon of vGlut3, by which the endogenous vGlut3 is intact and paired with iCreER as well. Approximately, 10.7%, 85.6% and 41.8% of IHCs are tdtomato + when tamoxifen is given to vGlut3-P2A-iCreER/+; Rosa26-LSL-tdtomato/+ reporter strain at P2/P3, P10/P11 and P30/P31, respectively. Tdtomato + OHCs are never observed. Interestingly, besides IHCs, glia cells, but not spiral ganglion neurons (SGNs), are tdtomato+, which is further evidenced by the presence of Sox10+/tdtomato+ and tdtomato+/Prox1(Gata3 or Tuj1)-negative cells in SGN region. We further independently validate vGlut3 expression in SGN region by vGlut3 in situ hybridization and antibody staining. Moreover, total number of tdtomato + glia cells decreased gradually when tamoxifen is given from P2/P3 to P30/P31. Taken together, vGlut3-P2A-iCreER is an efficient genetic tool to specifically target IHCs for gene manipulation, which is complimentary to Prestin-CreER strain exclusively labelling cochlear outer hair cells (OHCs)."	"Essential roles of aspartate aminotransferase 1 and vesicular glutamate transporters in β-cell glutamate signaling for incretin-induced insulin secretion. Incretins (GLP-1 and GIP) potentiate insulin secretion through cAMP signaling in pancreatic β-cells in a glucose-dependent manner. We recently proposed a mechanistic model of incretin-induced insulin secretion (IIIS) that requires two critical processes: 1) generation of cytosolic glutamate through the malate-aspartate (MA) shuttle in glucose metabolism and 2) glutamate transport into insulin granules by cAMP signaling to promote insulin granule exocytosis. To directly prove the model, we have established and characterized CRISPR/Cas9-engineered clonal mouse β-cell lines deficient for the genes critical in these two processes: aspartate aminotransferase 1 (AST1, gene symbol Got1), a key enzyme in the MA shuttle, which generates cytosolic glutamate, and the vesicular glutamate transporters (VGLUT1, VGLUT2, and VGLUT3, gene symbol Slc17a7, Slc17a6, and Slc17a8, respectively), which participate in glutamate transport into secretory vesicles. Got1 knockout (KO) β-cell lines were defective in cytosolic glutamate production from glucose and showed impaired IIIS. Unexpectedly, different from the previous finding that global Slc17a7 KO mice exhibited impaired IIIS from pancreatic islets, β-cell specific Slc17a7 KO mice showed no significant impairment in IIIS, as assessed by pancreas perfusion experiment. Single Slc17a7 KO β-cell lines also retained IIIS, probably due to compensatory upregulation of Slc17a6. Interestingly, triple KO of Slc17a7, Slc17a6, and Slc17a8 diminished IIIS, which was rescued by exogenously introduced wild-type Slc17a7 or Slc17a6 genes. The present study provides direct evidence for the essential roles of AST1 and VGLUTs in β-cell glutamate signaling for IIIS and also shows the usefulness of the CRISPR/Cas9 system for studying β-cells by simultaneous disruption of multiple genes."	"Identification of a novel splicing mutation within SLC17A8 in a Korean family with hearing loss by whole-exome sequencing. Hereditary hearing loss (HHL) is a common genetically heterogeneous disorder, which follows Mendelian inheritance in humans. Because of this heterogeneity, the identification of the causative gene of HHL by linkage analysis or Sanger sequencing have shown economic and temporal limitations. With recent advances in next-generation sequencing (NGS) techniques, rapid identification of a causative gene via massively parallel sequencing is now possible. We recruited a Korean family with three generations exhibiting autosomal dominant inheritance of hearing loss (HL), and the clinical information about this family revealed that there are no other symptoms accompanied with HL. To identify a causative mutation of HL in this family, we performed whole-exome sequencing of 4 family members, 3 affected and an unaffected. As the result, A novel splicing mutation, c.763+1G&gt;T, in the solute carrier family 17, member 8 (SLC17A8) gene was identified in the patients, and the genotypes of the mutation were co-segregated with the phenotype of HL. Additionally, this mutation was not detected in 100 Koreans with normal hearing. Via NGS, we detected a novel splicing mutation that might influence the hearing ability within the patients with autosomal dominant non-syndromic HL. Our data suggests that this technique is a powerful tool to discover causative genetic factors of HL and facilitate diagnoses of the primary cause of HHL."	"Characterization of a Human Point Mutation of VGLUT3 (p.A211V) in the Rodent Brain Suggests a Nonuniform Distribution of the Transporter in Synaptic Vesicles. The atypical vesicular glutamate transporter type 3 (VGLUT3) is expressed by subpopulations of neurons using acetylcholine, GABA, or serotonin as neurotransmitters. In addition, VGLUT3 is expressed in the inner hair cells of the auditory system. A mutation (p.A211V) in the gene that encodes VGLUT3 is responsible for progressive deafness in two unrelated families. In this study, we investigated the consequences of the p.A211V mutation in cell cultures and in the CNS of a mutant mouse. The mutation substantially decreased VGLUT3 expression (-70%). We measured VGLUT3-p.A211V activity by vesicular uptake in BON cells, electrophysiological recording of isolated neurons, and its ability to stimulate serotonergic accumulation in cortical synaptic vesicles. Despite a marked loss of expression, the activity of the mutated isoform was only minimally altered. Furthermore, mutant mice displayed none of the behavioral alterations that have previously been reported in VGLUT3 knock-out mice. Finally, we used stimulated emission depletion microscopy to analyze how the mutation altered VGLUT3 distribution within the terminals of mice expressing the mutated isoform. The mutation appeared to reduce the expression of the VGLUT3 transporter by simultaneously decreasing the number of VGLUT3-positive synaptic vesicles and the amount of VGLUT3 per synapses. These observations suggested that VGLUT3 global activity is not linearly correlated with VGLUT3 expression. Furthermore, our data unraveled a nonuniform distribution of VGLUT3 in synaptic vesicles. Identifying the mechanisms responsible for this complex vesicular sorting will be critical to understand VGLUT's involvement in normal and pathological conditions.SIGNIFICANCE STATEMENT VGLUT3 is an atypical member of the vesicular glutamate transporter family. A point mutation of VGLUT3 (VGLUT3-p.A211V) responsible for a progressive loss of hearing has been identified in humans. We observed that this mutation dramatically reduces VGLUT3 expression in terminals (∼70%) without altering its function. Furthermore, using stimulated emission depletion microscopy, we found that reducing the expression levels of VGLUT3 diminished the number of VGLUT3-positive vesicles at synapses. These unexpected findings challenge the vision of a uniform distribution of synaptic vesicles at synapses. Therefore, the overall activity of VGLUT3 is not proportional to the level of VGLUT3 expression. These data will be key in interpreting the role of VGLUTs in human pathologies."	"Mild Maternal Iron Deficiency Anemia Induces Hearing Impairment Associated with Reduction of Ribbon Synapse Density and Dysregulation of VGLUT3, Myosin VIIa, and Prestin Expression in Young Guinea Pigs. Mild maternal iron deficiency anemia (IDA) adversely affects the development of cochlear hair cells of the young offspring, but the mechanisms underlying the association are incompletely understood. The aim of this study was to evaluate whether mild maternal IDA in guinea pigs could interrupt inner hair cell (IHC) ribbon synapse density and outer hair cell motility of the offspring. Here, we established a dietary restriction model that allows us to study quantitative changes in the number of IHC ribbon synapses and hearing impairment in response to mild maternal IDA in young guinea pig. The offspring were weaned on postnatal day (PND) 9 and then were given the iron-sufficient diet. On PND 24, pups were examined the hearing function by auditory brainstem response (ABR) and distortion product otoacoustic emission (DPOAE) measurements. Then, the cochleae were harvested for assessment of the number of IHC ribbon synapses by immunofluorescence, the morphology of cochlear hair cells, and spiral ganglion cells (SGCs) by scanning electron microscope and hematoxylin-eosin staining, the location, and expression of vesicular glutamate transporter (VGLUT) 3, myosin VIIa, and prestin by immunofluorescence and blotting. Here, we show that mild maternal IDA in guinea pigs induced elevated ABR threshold shifts, declined DPOAE level shifts, and reduced the number of ribbon synapses, impaired the morphology of cochlear hair cells and SGCs in offsprings. In addition, downregulation of VGLUT3 and myosin VIIa, and upregulation of prestin were observed in the cochlea of offsprings from mild maternal IDA in guinea pigs. These data indicate that mild maternal IDA in guinea pigs induced hearing impairment in offsprings, and this deficit may be attributed to the reduction of ribbon synapse density and dysregulation of VGLUT3, myosin VIIa, and prestin. "	"Screening of the SLC17A8 gene as a causative factor for autosomal dominant non-syndromic hearing loss in Koreans. One of the causes of sensorineural hearing loss (SNHL) is degeneration of the inner hair cells in the organ of Corti in the cochlea. The SLC17A8 (solute carrier family 17, member 8) gene encodes vesicular glutamate transporter 3 (VGLUT3), and among its isoforms (VGLUT1-3), only VGLUT3 is expressed selectively in the inner hair cells (IHCs). VGLUT3 transports the neurotransmitter glutamate into the synaptic vesicles of the IHCs. Mutation of the SLC17A8 gene is reported to be associated with DFNA25 (deafness, autosomal dominant 25), an autosomal dominant non-syndromic hearing loss (ADNSHL) in humans. In this study, we performed a genetic analysis of 87 unrelated Korean patients with ADNSHL to determine whether the SLC17A8 gene affects hearing ability in the Korean population. We found a novel heterozygous frameshift mutation, 2 non-synonymous variations, and a synonymous variation. The novel frameshift mutation, p.M206Nfs*4, in which methionine is changed to asparagine at amino acid position 206, resulted in a termination codon at amino acid position 209. This alteration is predicted to encode a truncated protein lacking transmembrane domains 5 to 12. This mutation is located in a highly conserved region in VGLUT3 across multiple amino acid alignments in different vertebrate species, but it was not detected in 100 unrelated controls who had normal hearing ability. The results from our study suggest that the p.M206Nfs*4 mutation in the SLC17A8 gene is likely a pathogenic mutation that causes ADNSHL. Our findings can facilitate the prediction of the primary cause of ADNSHL in Korean patients."	"The absence of VGLUT3 predisposes to cocaine abuse by increasing dopamine and glutamate signaling in the nucleus accumbens. Tonically active cholinergic interneurons (TANs) from the nucleus accumbens (NAc) are centrally involved in reward behavior. TANs express a vesicular glutamate transporter referred to as VGLUT3 and thus use both acetylcholine and glutamate as neurotransmitters. The respective roles of each transmitter in the regulation of reward and addiction are still unknown. In this study, we showed that disruption of the gene that encodes VGLUT3 (Slc17a8) markedly increased cocaine self-administration in mice. Concomitantly, the amount of dopamine (DA) release was strongly augmented in the NAc of VGLUT3(-/-) mice because of a lack of signaling by metabotropic glutamate receptors. Furthermore, dendritic spines and glutamatergic synaptic transmission on medium spiny neurons were increased in the NAc of VGLUT3(-/-) mice. Increased DA and glutamate signaling in the NAc are hallmarks of addiction. Our study shows that TANs use glutamate to reduce DA release and decrease reinforcing properties of cocaine in mice. Interestingly, we also observed an increased frequency of rare variations in SLC17A8 in a cohort of severe drug abusers compared with controls. Our findings identify VGLUT3 as an unexpected regulator of drug abuse. "	"Altered vesicular glutamate transporter expression in human temporal lobe epilepsy with hippocampal sclerosis. Vesicular glutamate transporters (VGLUTs) are responsible for loading glutamate into synaptic vesicles. Altered VGLUT protein expression has been suggested to affect quantal size and glutamate release under both physiological and pathological conditions. In this study, we investigated mRNA and protein expression levels of the three VGLUT subtypes in hippocampal tissue of patients suffering from temporal lobe epilepsy (TLE) with hippocampal sclerosis (HS), International League Against Epilepsy type 1 (ILAE type 1) compared to autopsy controls, using quantitative polymerase chain reaction and semi-quantitative western blotting. mRNA expression levels of the VGLUTs are unaffected in hippocampal epileptic tissue compared to autopsy controls. At the protein level, VGLUT1 expression remains unaltered, while VGLUT2 is significantly decreased and VGLUT3 protein is significantly increased in hippocampal biopsies from TLE patients compared to controls. Our findings at the protein level can be explained by previously described histopathological changes observed in HS. Although VGLUTs have been repeatedly investigated in distinct rodent epilepsy models, their expression levels were hitherto not fully unraveled in the most difficult-to-treat form of epilepsy: TLE with HS ILAE type 1. We here, demonstrate for the first time that VGLUT2 protein expression is significantly decreased and VGLUT3 protein is significantly increased in the hippocampus of patients suffering from TLE with HS ILAE type 1 compared to autopsy controls."	"Characterization of transcriptomes of cochlear inner and outer hair cells. Inner hair cells (IHCs) and outer hair cells (OHCs) are the two types of sensory receptor cells that are critical for hearing in the mammalian cochlea. IHCs and OHCs have different morphology and function. The genetic mechanisms that define their morphological and functional specializations are essentially unknown. The transcriptome reflects the genes that are being actively expressed in a cell and holds the key to understanding the molecular mechanisms of the biological properties of the cell. Using DNA microarray, we examined the transcriptome of 2000 individually collected IHCs and OHCs from adult mouse cochleae. We show that 16,647 and 17,711 transcripts are expressed in IHCs and OHCs, respectively. Of those genes, ∼73% are known genes, 22% are uncharacterized sequences, and 5.0% are noncoding RNAs in both populations. A total of 16,117 transcripts are expressed in both populations. Uniquely and differentially expressed genes account for &lt;15% of all genes in either cell type. The top 10 differentially expressed genes include Slc17a8, Dnajc5b, Slc1a3, Atp2a3, Osbpl6, Slc7a14, Bcl2, Bin1, Prkd1, and Map4k4 in IHCs and Slc26a5, C1ql1, Strc, Dnm3, Plbd1, Lbh, Olfm1, Plce1, Tectb, and Ankrd22 in OHCs. We analyzed commonly and differentially expressed genes with the focus on genes related to hair cell specializations in the apical, basolateral, and synaptic membranes. Eighty-three percent of the known deafness-related genes are expressed in hair cells. We also analyzed genes involved in cell-cycle regulation. Our dataset holds an extraordinary trove of information about the molecular mechanisms underlying hair cell morphology, function, pathology, and cell-cycle control. "	"Deafness gene expression patterns in the mouse cochlea found by microarray analysis. Tonotopy is one of the most fundamental principles of auditory function. While gradients in various morphological and physiological characteristics of the cochlea have been reported, little information is available on gradient patterns of gene expression. In addition, the audiograms in autosomal dominant non syndromic hearing loss can be distinctive, however, the mechanism that accounts for that has not been clarified. We thought that it is possible that tonotopic gradients of gene expression within the cochlea account for the distinct audiograms. We compared expression profiles of genes in the cochlea between the apical, middle, and basal turns of the mouse cochlea by microarray technology and quantitative RT-PCR. Of 24,547 genes, 783 annotated genes expressed more than 2-fold. The most remarkable finding was a gradient of gene expression changes in four genes (Pou4f3, Slc17a8, Tmc1, and Crym) whose mutations cause autosomal dominant deafness. Expression of these genes was greater in the apex than in the base. Interestingly, expression of the Emilin-2 and Tectb genes, which may have crucial roles in the cochlea, was also greater in the apex than in the base. This study provides baseline data of gradient gene expression in the cochlea. Especially for genes whose mutations cause autosomal dominant non syndromic hearing loss (Pou4f3, Slc17a8, Tmc1, and Crym) as well as genes important for cochlear function (Emilin-2 and Tectb), gradual expression changes may help to explain the various pathological conditions."	"Genome-wide association study identifies a novel susceptibility locus at 12q23.1 for lung squamous cell carcinoma in han chinese. Adenocarcinoma (AC) and squamous cell carcinoma (SqCC) are two major histological subtypes of lung cancer. Genome-wide association studies (GWAS) have made considerable advances in the understanding of lung cancer susceptibility. Obvious heterogeneity has been observed between different histological subtypes of lung cancer, but genetic determinants in specific to lung SqCC have not been systematically investigated. Here, we performed the GWAS analysis specifically for lung SqCC in 833 SqCC cases and 3,094 controls followed by a two-stage replication in additional 2,223 lung SqCC cases and 6,409 controls from Chinese populations. We found that rs12296850 in SLC17A8-NR1H4 gene region at12q23.1 was significantly associated with risk of lung SqCC at genome-wide significance level [additive model: odds ratio (OR) = 0.78, 95% confidence interval (CI) = 0.72-0.84, P = 1.19×10(-10)]. Subjects carrying AG or GG genotype had a 26% (OR = 0.74, 95% CI = 0.67-0.81) or 32% (OR = 0.68, 95% CI = 0.56-0.83) decreased risk of lung SqCC, respectively, as compared with AA genotype. However, we did not observe significant association between rs12296850 and risk of lung AC in a total of 4,368 cases with lung AC and 9,486 controls (OR = 0.96, 95% CI = 0.90-1.02, P = 0.173). These results indicate that genetic variations on chromosome 12q23.1 may specifically contribute to lung SqCC susceptibility in Chinese population."	"Distinct features of neurotransmitter systems in the human brain with focus on the galanin system in locus coeruleus and dorsal raphe. Using riboprobe in situ hybridization, we studied the localization of the transcripts for the neuropeptide galanin and its receptors (GalR1-R3), tryptophan hydroxylase 2, tyrosine hydroxylase, and nitric oxide synthase as well as the three vesicular glutamate transporters (VGLUT 1-3) in the locus coeruleus (LC) and the dorsal raphe nucleus (DRN) regions of postmortem human brains. Quantitative real-time PCR (qPCR) was used also. Galanin and GalR3 mRNA were found in many noradrenergic LC neurons, and GalR3 overlapped with serotonin neurons in the DRN. The qPCR analysis at the LC level ranked the transcripts in the following order in the LC: galanin &gt; GalR3 &gt; GalR1 &gt; GalR2; in the DRN the ranking was galanin &gt; GalR3 &gt; GalR1 = GalR2. In forebrain regions the ranking was GalR1 &gt; galanin &gt; GalR2. VGLUT1 and -2 were strongly expressed in the pontine nuclei but could not be detected in LC or serotonin neurons. VGLUT2 transcripts were found in very small, nonpigmented cells in the LC and in the lateral and dorsal aspects of the periaqueductal central gray. Nitric oxide synthase was not detected in serotonin neurons. These findings show distinct differences between the human brain and rodents, especially rat, in the distribution of the galanin system and some other transmitter systems. For example, GalR3 seems to be the important galanin receptor in both the human LC and DRN versus GalR1 and -2 in the rodent brain. Such knowledge may be important when considering therapeutic principles and drug development."	"Genetic inactivation of the vesicular glutamate transporter 2 (VGLUT2) in the mouse: what have we learnt about functional glutamatergic neurotransmission? During the past decade, three proteins that possess the capability of packaging glutamate into presynaptic vesicles have been identified and characterized. These three vesicular glutamate transporters, VGLUT1-3, are encoded by solute carrier genes Slc17a6-8. VGLUT1 (Slc17a7) and VGLUT2 (Slc17a6) are expressed in glutamatergic neurons, while VGLUT3 (Slc17a8) is expressed in neurons classically defined by their use of another transmitter, such as acetylcholine and serotonin. As glutamate is both a ubiquitous amino acid and the most abundant neurotransmitter in the adult central nervous system, the discovery of the VGLUTs made it possible for the first time to identify and specifically target glutamatergic neurons. By molecular cloning techniques, different VGLUT isoforms have been genetically targeted in mice, creating models with alterations in their glutamatergic signalling. Glutamate signalling is essential for life, and its excitatory function is involved in almost every neuronal circuit. The importance of glutamatergic signalling was very obvious when studying full knockout models of both VGLUT1 and VGLUT2, none of which were compatible with normal life. While VGLUT1 full knockout mice die after weaning, VGLUT2 full knockout mice die immediately after birth. Many neurological diseases have been associated with altered glutamatergic signalling in different brain regions, which is why conditional knockout mice with abolished VGLUT-mediated signalling only in specific circuits may prove helpful in understanding molecular mechanisms behind such pathologies. We review the recent studies in which mouse genetics have been used to characterize the functional role of VGLUT2 in the central nervous system."	"Glutamate co-release at GABA/glycinergic synapses is crucial for the refinement of an inhibitory map. Many nonglutamatergic synaptic terminals in the mammalian brain contain the vesicular glutamate transporter 3 (VGLUT3), indicating that they co-release the excitatory neurotransmitter glutamate. However, the functional role of glutamate co-transmission at these synapses is poorly understood. In the auditory system, VGLUT3 expression and glutamate co-transmission are prominent in a developing GABA/glycinergic sound-localization pathway. We found that mice with a genetic deletion of Vglut3 (also known as Slc17a8) had disrupted glutamate co-transmission and severe impairment in the refinement of this inhibitory pathway. Specifically, loss of glutamate co-transmission disrupted synaptic silencing and the strengthening of GABA/glycinergic connections that normally occur with maturation. Functional mapping studies further revealed that these deficits markedly degraded the precision of tonotopy in this inhibitory auditory pathway. These results indicate that glutamate co-transmission is crucial for the synaptic reorganization and topographic specification of a developing inhibitory circuit."	"Injury-induced mechanical hypersensitivity requires C-low threshold mechanoreceptors. Mechanical pain contributes to the morbidity associated with inflammation and trauma, but primary sensory neurons that convey the sensation of acute and persistent mechanical pain have not been identified. Dorsal root ganglion (DRG) neurons transmit sensory information to the spinal cord using the excitatory transmitter glutamate, a process that depends on glutamate transport into synaptic vesicles for regulated exocytotic release. Here we report that a small subset of cells in the DRG expresses the low abundance vesicular glutamate transporter VGLUT3 (also known as SLC17A8). In the dorsal horn of the spinal cord, these afferents project to lamina I and the innermost layer of lamina II, which has previously been implicated in persistent pain caused by injury. Because the different VGLUT isoforms generally have a non-redundant pattern of expression, we used Vglut3 knockout mice to assess the role of VGLUT3(+) primary afferents in the behavioural response to somatosensory input. The loss of VGLUT3 specifically impairs mechanical pain sensation, and in particular the mechanical hypersensitivity to normally innocuous stimuli that accompanies inflammation, nerve injury and trauma. Direct recording from VGLUT3(+) neurons in the DRG further identifies them as a poorly understood population of unmyelinated, low threshold mechanoreceptors (C-LTMRs). The analysis of Vglut3(-/-) mice now indicates a critical role for C-LTMRs in the mechanical hypersensitivity caused by injury."	"Impairment of SLC17A8 encoding vesicular glutamate transporter-3, VGLUT3, underlies nonsyndromic deafness DFNA25 and inner hair cell dysfunction in null mice. Autosomal-dominant sensorineural hearing loss is genetically heterogeneous, with a phenotype closely resembling presbycusis, the most common sensory defect associated with aging in humans. We have identified SLC17A8, which encodes the vesicular glutamate transporter-3 (VGLUT3), as the gene responsible for DFNA25, an autosomal-dominant form of progressive, high-frequency nonsyndromic deafness. In two unrelated families, a heterozygous missense mutation, c.632C--&gt;T (p.A211V), was found to segregate with DFNA25 deafness and was not present in 267 controls. Linkage-disequilibrium analysis suggested that the families have a distant common ancestor. The A211 residue is conserved in VGLUT3 across species and in all human VGLUT subtypes (VGLUT1-3), suggesting an important functional role. In the cochlea, VGLUT3 accumulates glutamate in the synaptic vesicles of the sensory inner hair cells (IHCs) before releasing it onto receptors of auditory-nerve terminals. Null mice with a targeted deletion of Slc17a8 exon 2 lacked auditory-nerve responses to acoustic stimuli, although auditory brainstem responses could be elicited by electrical stimuli, and robust otoacoustic emissions were recorded. Ca(2+)-triggered synaptic-vesicle turnover was normal in IHCs of Slc17a8 null mice when probed by membrane capacitance measurements at 2 weeks of age. Later, the number of afferent synapses, spiral ganglion neurons, and lateral efferent endings below sensory IHCs declined. Ribbon synapses remaining by 3 months of age had a normal ultrastructural appearance. We conclude that deafness in Slc17a8-deficient mice is due to a specific defect of vesicular glutamate uptake and release and that VGLUT3 is essential for auditory coding at the IHC synapse."	"Developmental pattern of three vesicular glutamate transporters in the myenteric plexus of the human fetal small intestine. Three vesicular glutamate transporters (VGLUT1-3) have previously been identified in the central nervous system, where they define the glutamatergic phenotype, and their expression is tightly regulated during brain development. In the present study we applied immunocytochemistry to examine the distribution of the immunoreactivity of all three VGLUTs during prenatal development of the myenteric plexus in the human small intestine. We also investigated changes in their localization in the different segments of the small intestine and in the different compartments of the developing myenteric ganglia. Immunoreactivity against all three VGLUTs was found predominantly in the ganglionic neuropil, interganglionic varicose fibers and perisomatic puncta, but cytoplasmic labeling with different intensities also occurred. Each transporter displayed a characteristic spatiotemporal expression pattern, with the transient increase or decrease of immunoreactive cell bodies, varicosities or perisomatic puncta, depending on the fetal age, the gut segment or the ganglionic compartment. Throughout gestational weeks 14-23, VGLUT1 immunoreactivity always predominated over VGLUT2 immunoreactivity, though both peaked around week 20. VGLUT3 immunoreactivity was less abundant in the developing myenteric plexus than those of VGLUT1 and VGLUT2 immunoreactivity. It was mainly expressed in the ganglionic neuropil and in the perisomatic puncta throughout the examined gestational period. Neuronal perikarya immunoreactive for VGLUT3 were restricted to between weeks 18 and 20 of gestation and exclusively to the oral part of the small intestine."	"The vesicular glutamate transporter VGLUT3 synergizes striatal acetylcholine tone. Three subtypes of vesicular transporters accumulate glutamate into synaptic vesicles to promote its vesicular release. One of the subtypes, VGLUT3, is expressed in neurons, including cholinergic striatal interneurons, that are known to release other classical transmitters. Here we showed that disruption of the Slc17a8 gene (also known as Vglut3) caused an unexpected hypocholinergic striatal phenotype. Vglut3(-/-) mice were more responsive to cocaine and less prone to haloperidol-induced catalepsy than wild-type littermates, and acetylcholine release was decreased in striatum slices lacking VGLUT3. These phenotypes were associated with a colocalization of VGLUT3 and the vesicular acetylcholine transporter (VAChT) in striatal synaptic vesicles and the loss of a synergistic effect of glutamate on vesicular acetylcholine uptake. We propose that this vesicular synergy between two transmitters is the result of the unbalanced bioenergetics of VAChT, which requires anion co-entry for continuing vesicular filling. Our study reveals a previously unknown effect of glutamate on cholinergic synapses with potential functional and pharmacological implications."	"Docking and homology modeling explain inhibition of the human vesicular glutamate transporters. As membrane transporter proteins, VGLUT1-3 mediate the uptake of glutamate into synaptic vesicles at presynaptic nerve terminals of excitatory neural cells. This function is crucial for exocytosis and the role of glutamate as the major excitatory neurotransmitter in the central nervous system. The three transporters, sharing 76% amino acid sequence identity in humans, are highly homologous but differ in regional expression in the brain. Although little is known regarding their three-dimensional structures, hydropathy analysis on these proteins predicts 12 transmembrane segments connected by loops, a topology similar to other members in the major facilitator superfamily, where VGLUT1-3 have been phylogenetically classified. In this work, we present a three-dimensional model for the human VGLUT1 protein based on its distant bacterial homolog in the same superfamily, the glycerol-3-phosphate transporter from Escherichia coli. This structural model, stable during molecular dynamics simulations in phospholipid bilayers solvated by water, reveals amino acid residues that face its pore and are likely to affect substrate translocation. Docking of VGLUT1 substrates to this pore localizes two different binding sites, to which inhibitors also bind with an overall trend in binding affinity that is in agreement with previously published experimental data."	"The diverse roles of vesicular glutamate transporter 3. The expression of vesicular glutamate transporters (VGLUTs) 1 and 2 accounts for the ability of most traditionally accepted excitatory neurons to release glutamate by exocytosis. However, several cell populations (serotonin and dopamine neurons) have been demonstrated to release glutamate in vitro and do not obviously express these transporters. Rather, these neurons express a novel, third isoform that in fact appears confined to neurons generally associated with a transmitter other than glutamate. They include serotonin and possibly dopamine neurons, cholinergic interneurons in the striatum, and GABAergic interneurons of the hippocampus and cortex. Although the physiological role of VGLUT3 remains largely conjectural, several observations in vivo suggest that the glutamate release mediated by VGLUT3 has an important role in synaptic transmission, plasticity, and development."	"Distribution of vesicular glutamate transporters in rat and human retina. Central nervous system neurons have traditionally been thought to express exclusively membrane transporters and/or vesicular transporters for their transmitter. Three vesicular glutamate transporters have recently been cloned: BNPI/VGLUT1 (a brain-specific sodium-dependent inorganic phosphate (Pi) transporter), and its homologs DNPI/VGLUT2 (differentiation-associated sodium-dependent Pi transporter) and VGLUT3. We investigated the subcellular distributions of these three vesicular transporters in rat and human retina. VGLUT1 was present in the outer and inner plexiform layers (OPL and IPL), as shown by punctate staining in both human and rat retina. In the OPL, it was colocalized with synaptophysin, consistent with its expression in glutamatergic photoreceptor terminals, and it was present in PKC-alpha-labeled glutamatergic bipolar cell terminals in the IPL. By contrast, VGLUT2 was present in horizontal cells and ganglion cells in rat and human retina. In human retina, VGLUT2 was also found in some amacrine cells, including GAD-immunopositive amacrine cells. VGLUT3 was present in glycine-releasing amacrine cells in rat retina but was restricted to a few ganglion cells in human retina. The distribution of VGLUT1 in excitatory synaptic terminal was consistent with its involvement in glutamate release at excitatory synapses, whereas the cellular distributions of VGLUT2 and VGLUT3 suggested that these molecules may be involved in functions other than glutamate release, such as glutamate storage for GABA synthesis in non-glutamatergic neurons."	"Colocalization of serotonin and vesicular glutamate transporter 3-like immunoreactivity in the midbrain raphe of Syrian hamsters (Mesocricetus auratus). Vesicular glutamate transporter 3 (VGLUT3) expression has been specifically localized to brain regions rich in serotonergic cells. It has been suggested that this transporter may contribute to the regulation of extracellular glutamate concentrations via a nonsynaptic mechanism. In this study, we examine the colocalization of vesicular glutamate transporter 3 immunoreactivity with serotonin immunoreactivity in the dorsal and median raphe nuclei of Syrian hamsters. Brain sections from adult hamsters were fluorescently labeled for serotonin-ir and VGLUT3-ir and examined using confocal microscopy. The results indicate that most serotonergic cells of the midbrain raphe also expressed vesicular glutamate transporter 3. In addition, nonserotonergic cells in these brain regions also show immunoreactivity for the transporter. These data confirm previous findings of vesicular glutamate transporter 3 expression in serotonergic and nonserotonergic neurons in rats. These findings suggest that the location of vesicular glutamate transporter 3 may be as much a function of neuroanatomical location as of the neurochemical identity of the expressing neurons."	"Inhibitor of the glutamate vesicular transporter (VGLUT). The vesicular glutamate transporter (VGLUT) is responsible for the uptake of the excitatory amino acid, L-glutamate, into synaptic vesicles. VGLUT activity is coupled to an electrochemical gradient driven by a vacuolar ATPase and stimulated by low Cl-. VGLUT has relatively low affinity (K(m) = 1-3 mM) for glutamate and is pharmacologically and structurally distinct from the Na+-dependent, excitatory amino acid transporters (EAATs) found on the plasma membrane. Because glutamatergic neurotransmission begins with vesicular release, compounds that block the uptake of glutamate into the vesicle may reduce excitotoxic events. Several classes of competitive VGLUT inhibitors have emerged including amino acids and amino acid analogs, fatty acids, azo dyes, quinolines and alkaloids. The potency with which these agents inhibit VGLUT varies from millimolar (amino acids) to nanomolar (azo dyes) concentrations. These inhibitors represent highly diverse structures and have collectively begun to reveal key pharmacophore elements that may elucidate the key interactions important to binding VGLUT. Using known inhibitor structures and preliminary molecular modeling, a VGLUT pharmacophore is presented that will aid in the design of new, highly potent and selective agents."	"Localization of glycine receptor alpha subunits on bipolar and amacrine cells in primate retina. The major inhibitory neurotransmitter glycine is used by about half of the amacrine cells in the retina. Amacrine cells provide synaptic output to bipolar, ganglion, and other amacrine cells. The present study investigated whether different bipolar and amacrine cell types in the primate retina differ with respect to the expression of glycine receptor (GlyR) subtypes. Antibodies specific for the alpha1, alpha2, and alpha3 subunits of the GlyR were combined with immunohistochemical markers for bipolar and amacrine cells and applied to vertical sections of macaque (Macaca fascicularis) and marmoset (Callithrix jacchus) retinae. For all subunits, punctate immunoreactivity was expressed in the inner plexiform layer. The GlyRalpha2 immunoreactive (IR) puncta occur at the highest density, followed by GlyR(alpha)3 and GlyR(alpha)1 IR puncta. Postembedding electron microscopy showed the postsynaptic location of all subunits. Double immunofluorescence demonstrated that the three alpha subunits are clustered at different postsynaptic sites. Two OFF cone bipolar cell types (flat midget and diffuse bipolar DB3), are predominantly associated with the alpha1 subunit. Two ON bipolar cell types, the DB6 and the rod bipolar cell, are predominantly associated with the alpha2 subunit. The glycinergic AII amacrine cell is presynaptic to the alpha1 subunit in the OFF-sublamina, and postsynaptic to the alpha2 subunit in the ON-sublamina. Another putative glycinergic cell, the vesicular glutamate transporter 3 cell, is predominantly presynaptic to the alpha2 subunit. The dopaminergic amacrine cell expresses the alpha3 subunit at a low density."	"Molecular physiology of vesicular glutamate transporters in the digestive system. Glutamate is the major excitatory neurotransmitter in the mammalian central nervous system (CNS). Packaging and storage of glutamate into glutamatergic neuronal vesicles require ATP-dependent vesicular glutamate uptake systems, which utilize the electrochemical proton gradient as a driving force. Three vesicular glutamate transporters (VGLUT1-3) have been recently identified from neuronal tissue where they play a key role to maintain the vesicular glutamate level. Recently, it has been demonstrated that glutamate signaling is also functional in peripheral neuronal and non-neuronal tissues, and occurs in sites of pituitary, adrenal, pineal glands, bone, GI tract, pancreas, skin, and testis. The glutamate receptors and VGLUTs in digestive system have been found in both neuronal and endocrinal cells. The glutamate signaling in the digestive system may have significant relevance to diabetes and GI tract motility disorders. This review will focus on the most recent update of molecular physiology of digestive VGLUTs."	"Developmental pattern of three vesicular glutamate transporters in the rat superior olivary complex. Vesicular glutamate transporters (VGLUTs) mediate the packaging of the excitatory neurotransmitter glutamate into synaptic vesicles. Three VGLUT subtypes have been identified so far, which are differentially expressed in the brain. Here, we have investigated the spatiotemporal distribution of the three VGLUTs in the rat superior olivary complex (SOC), a prominent processing center, which receives strong glutamatergic inputs and which lies within the auditory brainstem. Immunoreactivity (ir) against all three VGLUTs was found in the SOC nuclei throughout development (postnatal days P0-P60). It was predominantly seen in axon terminals, although cytoplasmic labeling also occurred. Each transporter displayed a characteristic expression pattern. In the adult SOC, VGLUT1 labeling varied from strong in the medial nucleus of the trapezoid body, lateral superior olive, and medial superior olive (MSO) to moderate (ventral and lateral nuclei of the trapezoid body) to faint (superior paraolivary nucleus). VGLUT2-ir was moderate to strong throughout the SOC, whereas VGLUT3 was only weakly expressed. These results extend previous reports on co-localization of VGLUTs in the auditory brainstem. As in the adult, specific features were seen during development for all three transporters. Intensity increases and decreases occurred with both VGLUT1 and VGLUT3, whereas VGLUT2-ir remained moderately high throughout development. A striking result was obtained with VGLUT3, which was only transiently expressed in the different SOC nuclei between P0 and P12. A transient occurrence of VGLUT1-immunoreactive terminals on somata of MSO neurons was another striking finding. Our results imply a considerable amount of synaptic reorganization in the glutamatergic inputs to the SOC and suggest differential roles of VGLUTs during maturation and in adulthood."	"Most peptide-containing sensory neurons lack proteins for exocytotic release and vesicular transport of glutamate. We used multiple-labeling immunohistochemistry and confocal microscopy to examine co-expression of immunoreactivity for vesicular glutamate transporters (VGluTs), synaptic vesicle proteins, and soluble N-ethylmaleimide-sensitive factor attachment protein receptor (SNARE) proteins in peptide-containing sensory neurons of guinea pigs, mice, and toads. Axon terminals in the superficial layers of the dorsal horn of the spinal cord with immunoreactivity (IR) for both substance P (SP) and calcitonin gene-related peptide (CGRP) lacked IR for synaptosome-associated protein of 25 kDa (SNAP-25), syntaxin, synaptotagmin, synaptophysin, and synapsin, although adjacent varicosities without neuropeptides had IR for these synaptic proteins. Similarly, peptide-containing axon terminals in the superficial dorsal horn lacked IR for VGluT1 and VGluT2, despite the presence of VGluT2-IR in nearby nonpeptide varicosities. VGluT3-IR was sparse in the dorsal horn of the mouse spinal cord and was not present in peptide-containing axons. Most peripheral terminals of sensory neurons with both SP-IR and CGRP-IR in the skin, viscera, and autonomic ganglia of guinea pigs and mice also lacked IR for synaptic vesicle proteins, SNARE proteins, VGluT1, and VGluT2. In dorsal root ganglia from guinea pigs and mice, most small neurons with IR for both SP and CGRP lacked IR for SNAP-25, VGluT1, and VGluT2. Thus, proteins considered essential for vesicular uptake and exocytotic release of glutamate are not expressed at detectable levels by most sensory neurons containing SP and CGRP in rodents and toads. These data raise the possibility that most peptide-containing sensory neurons may not normally release glutamate as a transmitter."	"Sympathetic premotor neurons mediating thermoregulatory functions. The sympathetic nervous system controls various homeostatic conditions, such as blood circulation, body temperature, and energy expenditure, through the regulation of diverse peripheral effector organs. In this system, sympathetic premotor neurons play a crucial role by mediating efferent signals from higher autonomic centers directly to sympathetic preganglionic neurons in the intermediolateral cell column of the spinal cord. The medulla oblongata is thought to subsume many sympathetic premotor neurons, and the rostral ventrolateral medulla (RVLM) has been established to contain the sympathetic premotor neurons responsible for cardiovascular control. Although premotor neurons controlling other effector organs than the cardiovascular system have been largely unknown, recent accumulating findings have suggested that medullary raphe regions including the raphe pallidus and raphe magnus nuclei are candidates for the pools of excitatory sympathetic premotor neurons involved in thermoregulation. Further recently, excitatory premotor neurons controlling the thermoregulatory effector organs, brown adipose tissue and tail, have been identified with expression of vesicular glutamate transporter (VGLUT)3, whereas those for cardiovascular control were characterized with VGLUT2 expression. The VGLUT3-expressing premotor neurons would mediate thermoregulation including fever induction, and could be also involved in the control of energy metabolism."	"Expression of the vesicular glutamate transporters during development indicates the widespread corelease of multiple neurotransmitters. Three closely related proteins transport glutamate into synaptic vesicles for release by exocytosis. Complementary patterns of expression in glutamatergic terminals have been reported for VGLUT1 and VGLUT2. VGLUT3 shows expression by many cells not considered to be glutamatergic. Here we describe the changes in VGLUT expression that occur during development. VGLUT1 expression increases gradually after birth and eventually predominates over the other isoforms in telencephalic regions. Expressed at high levels shortly after birth, VGLUT2 declines with age in multiple regions, in the cerebellum by 14-fold. In contrast, Coexpression of the two isoforms occurs transiently during development as well as permanently in a restricted subset of glutamatergic terminals in the adult. VGLUT3 is transiently expressed at high levels by select neuronal populations, including terminals in the cerebellar nuclei, scattered neurons in the cortex, and progenitor-like cells, implicating exocytotic glutamate release in morphogenesis and development. VGLUT3 also colocalizes extensively during development with the neuronal vesicular monoamine transporter VMAT2, with the vesicular acetylcholine transporter VAChT, and with the vesicular gamma-aminobutyric acid transporter VGAT. Such coexpression occurs particularly at some specific developmental stages and is restricted to certain sets of cells. In skeletal muscle, VGLUT3 localizes to granular organelles in the axon terminal as well as in the muscle sarcoplasm. The results suggest novel mechanisms and roles for regulated transmitter release."	"Vesicular glutamate transporter 3 expression identifies glutamatergic amacrine cells in the rodent retina. Synaptic transmission from glutamatergic neurons requires vesicular glutamate transporters (VGLUTs) to concentrate cytosolic glutamate in synaptic vesicles. In retina, glutamatergic photoreceptors and bipolar cells exclusively express the VGLUT1 isoform, whereas ganglion cells express VGLUT2. Surprisingly, the recently identified VGLUT3 isoform was found in presumed amacrine cells, generally considered to be inhibitory interneurons. To investigate the synaptic machinery and conceivable secondary neurotransmitter composition of VGLUT3 cells, and to determine a potential functional role, we further investigated these putative glutamatergic amacrine cells in adult and developing rodent retina. Reverse transcriptase-PCR substantiated VGLUT3 expression in mouse retina. VGLUT3 cells did not immunostain for ganglion or bipolar cell markers, providing evidence that they are amacrine cells. VGLUT3 colocalized with synaptic vesicle markers, and electron microscopy showed that VGLUT3 immunostained synaptic vesicles. VGLUT3 cells were not immunoreactive for amacrine cell markers gamma-aminobutyric acid, choline acetyltransferase, calretinin, or tyrosine hydroxylase, although they immunostain for glycine. VGLUT3 processes made synaptic contact with ganglion cell dendrites, suggesting input onto these cells. VGLUT3 immunostaining was closely associated with the metabotropic glutamate receptor 4, which is consistent with glutamatergic synaptic exocytosis by these cells. In the maturing mouse retina, Western blots showed VGLUT3 expression at postnatal day 7/8 (P7/8). VGLUT3 immunostaining in retinal sections was first observed at P8, achieving an adult pattern at P12. Thus, VGLUT3 function commences around the same time as VGLUT1-mediated glutamatergic transmission from bipolar cells. Furthermore, a subset of VGLUT3 cells expressed the circadian clock gene period 1, implicating VGLUT3 cells as part of the light-entrainable retina-based circadian system."	"An essential role for vesicular glutamate transporter 1 (VGLUT1) in postnatal development and control of quantal size. Quantal neurotransmitter release at excitatory synapses depends on glutamate import into synaptic vesicles by vesicular glutamate transporters (VGLUTs). Of the three known transporters, VGLUT1 and VGLUT2 are expressed prominently in the adult brain, but during the first two weeks of postnatal development, VGLUT2 expression predominates. Targeted deletion of VGLUT1 in mice causes lethality in the third postnatal week. Glutamatergic neurotransmission is drastically reduced in neurons from VGLUT1-deficient mice, with a specific reduction in quantal size. The remaining activity correlates with the expression of VGLUT2. This reduction in glutamatergic neurotransmission can be rescued and enhanced with overexpression of VGLUT1. These results show that the expression level of VGLUTs determines the amount of glutamate that is loaded into vesicles and released and thereby regulates the efficacy of neurotransmission."	"VGLUTs define subsets of excitatory neurons and suggest novel roles for glutamate. Exocytotic release of the excitatory neurotransmitter glutamate depends on transport of this amino acid into synaptic vesicles. Recent work has identified a distinct family of proteins responsible for vesicular glutamate transport (VGLUTs) that show no sequence similarity to the other two families of vesicular neurotransmitter transporters. The distribution of VGLUT1 and VGLUT2 accounts for the ability of most established excitatory neurons to release glutamate by exocytosis. Surprisingly, they show a striking complementary pattern of expression in adult brain that might reflect differences in membrane trafficking. By contrast, VGLUT3 is expressed by many cells traditionally considered to release a different classical transmitter, suggesting novel roles for glutamate as an extracellular signal. VGLUT3 also differs from VGLUT1 and VGLUT2 in its subcellular location, with somatodendritic as well as axonal expression."	"Localization of VGLUT3, the vesicular glutamate transporter type 3, in the rat brain. We have recently identified a third subtype of glutamate vesicular transporter (VGLUT) named VGLUT3. In the present study, we provide a detailed account of the regional and cellular distributions of VGLUT3 in the rat brain, using specific nucleotide probes and antisera. The distribution of VGLUT3 protein was compared with that of the other vesicular transporters (VGLUT1 and VGLUT2). All the areas expressing VGLUT3 also contain high levels of VGLUT1 and -2 proteins, but, at a finer level of analysis, the distribution of the three subtypes differs. Unlike VGLUT1 and -2, VGLUT3 expression is limited to discrete cell populations. Neurons containing VGLUT3 transcript are essentially observed in the caudate-putamen, the olfactory tubercle, the nucleus accumbens, the hippocampus, the interpeduncular nucleus and the dorsal and medial raphe nuclei. More scattered populations of VGLUT3 expressing neurons are found in the cerebral cortex. The distribution of the VGLUT3 protein, as determined with specific antisera, overlaps with that of the transcript in the caudate-putamen, olfactory tubercles, hippocampus, cortex, interpeduncular nucleus, and raphe nuclei, suggesting that VGLUT3 is essentially present in local projection neurons in these regions. Microscopic examination reveals staining of terminals and perikarya. Furthermore, co-localization studies indicate that VGLUT3 is present in GABAergic interneurons in the hippocampus, as well as in the interpeduncular nucleus. However, other regions, such as the substantia nigra (pars compacta), the ventral tegmental area, and the parabigeminal nucleus, receive a dense VGLUT3 terminal labeling although they do not contain VGLUT3 expressing neurons. In these regions, VGLUT3 immunoreactivity may be present in terminals of long projecting neurons. This subclass of glutamatergic afferents differs from other &quot;classical&quot; excitatory terminals that express VGLUT1 or VGLUT2. The distribution of VGLUT3 in the rat brain suggests an unsuspected function of vesicular glutamate transport in subsets of interneurons and in neuromodulatory neurons."	"Expression of transcripts for the vesicular glutamate transporters in the human medial temporal lobe. NA"	"Characterization of an amacrine cell type of the mammalian retina immunoreactive for vesicular glutamate transporter 3. Immunocytochemical staining of vertical sections through rat, mouse, and macaque monkey retinae with antibodies against the vesicular glutamate transporter vesicular glutamate transporter 3 (vGluT3) showed a sparse population of amacrine cells. The labeled cells had similar appearances in the three species and probably represent homologous types. They were studied in detail in the rat retina. The thin varicose dendrites of vGluT3 amacrine cells formed a convoluted dendritic tree of approximately 100 microm in diameter that was bistratified in the center of the inner plexiform layer. The dendrites of vGluT3 cells were squeezed between the two strata of cholinergic dendrites. The density of vGluT3 cells was measured in retinal wholemounts and increased from 200/mm2 in peripheral retina to 400/mm2 in central retina, accounting for about 1% of all amacrine cells in the rat retina. The vGluT3 cells had a two- to threefold dendritic overlap, and their cell bodies formed a regular mosaic, suggesting they represent a single type of amacrine cell. The vGluT3 amacrine cells expressed glycine and glycine transporter 1 (GlyT1) but not the vesicular glycine transporter (vesicular inhibitory amino acid transporter). They also expressed glutamate; hence, there is the possibility that, comparable to cholinergic amacrine cells, they are &quot;dual transmitter&quot; amacrine cells. The synaptic input of vGluT3 cells was studied by electron microscopy. They received input from bipolar cells at ribbon synapses and from other amacrine cells at conventional synapses. The types of bipolar cells possibly involved with vGluT3 cells were demonstrated by double labeling sections for vGluT3 and the calcium-binding protein CaB5. The axon terminals of type 3 and 5 bipolar cells costratified with vGluT3 dendrites, and it is possible that vGluT3 cells have ON and OFF light responses."	"Complementary distribution of type 1 cannabinoid receptors and vesicular glutamate transporter 3 in basal forebrain suggests input-specific retrograde signalling by cholinergic neurons. Basal forebrain cholinergic neurons project to diverse cortical and hippocampal areas and receive reciprocal projections therefrom. Maintenance of a fine-tuned synaptic communication between pre- and postsynaptic cells in neuronal circuitries also requires feedback mechanisms to control the probability of neurotransmitter release from the presynaptic terminal. Release of endocannabinoids or glutamate from a postsynaptic neuron has been identified as a means of retrograde synaptic signalling. Presynaptic action of endocannabinoids is largely mediated by type 1 cannabinoid (CB1) receptors, while fatty-acid amide hydrolase (FAAH) is involved in inactivating some endocannabinoids postsynaptically. Alternatively, vesicular glutamate transporter 3 (VGLUT3) controls release of glutamate from postsynaptic cells. Here, we studied the distribution of CB1 receptors, FAAH and VGLUT3 in cholinergic basal forebrain nuclei of mouse and rat. Cholinergic neurons were devoid of CB1 receptor immunoreactivity. A fine CB1 receptor-immunoreactive (ir) fibre meshwork was present in medial septum, diagonal bands and nucleus basalis. In contrast, the ventral pallidum and substantia innominata received dense CB1 receptor-ir innervation and cholinergic neurons received CB1 receptor-ir presumed synaptic contacts. Consistent with CB1 receptor distribution, FAAH-ir somata were abundant in basal forebrain and appeared in contact with CB1 receptor-containing terminals. Virtually all cholinergic neurons were immunoreactive for FAAH. A significant proportion of cholinergic cells exhibited VGLUT3 immunoreactivity in medial septum, diagonal bands and nucleus basalis, and were in close apposition to VGLUT3-ir terminals. VGLUT3 immunoreactivity was largely absent in ventral pallidum and substantia innominata. We propose that specific subsets of cholinergic neurons may utilize endocannabinoids or glutamate for retrograde control of the efficacy of input synapses, and the mutually exclusive complementary distribution pattern of CB1 receptor-ir and VGLUT3-ir fibres in basal forebrain suggests segregated input-specific signalling mechanisms by cholinergic neurons."	"Plasma membrane and vesicular glutamate transporter mRNAs/proteins in hypothalamic neurons that regulate body weight. After synaptic release, glutamate is taken up by the nerve terminal via a plasma membrane-associated protein termed excitatory amino acid transporter 3 (EAAT3). Following entry into the nerve terminal, glutamate is pumped into synaptic vesicles by a vesicular transport system. Three different vesicular glutamate transporter proteins (VGLUT1-3) representing unique markers for glutamatergic neurons were recently characterized. The presence of EAAT3, glutaminase and VGLUT1-3 was examined in mouse, rat and rabbit species at mRNA and protein levels in hypothalamic neurons which are involved in the regulation of body weight using in situ hybridization and immunohistochemistry. EAAT3 and glutaminase mRNAs were demonstrated in all parts of the arcuate nucleus in the dorsomedial and ventromedial hypothalamic nuclei and lateral hypothalamic area. VGLUT1 mRNA was present in the magnocellular lateral hypothalamic nucleus. VGLUT2 mRNA was demonstrated in a subpopulation of neurons in the arcuate nucleus and in the ventromedial and dorsomedial hypothalamic nuclei and lateral hypothalamic area. Few VGLUT3 mRNA expressing neurons were scattered throughout the medial and lateral hypothalamus. EAAT3-like immunoreactivity (-li) was demonstrated in glutamate, neuropeptide Y (NPY), agouti-related peptide (AGRP), pro-opiomelanocortin (POMC), cocaine and amphetamine-regulated transcript (CART), melanin-concentrating hormone and orexin-immunoreactive (-ir) neurons. VGLUT2-li could only be demonstrated in POMC- and CART-ir neurons of the ventrolateral arcuate nucleus. The results show that key neurons involved in regulation of energy balance are glutamatergic and/or densely innervated by glutamatergic nerve terminals. Whereas orexigenic NPY/AGRP neurons situated in the ventromedial part of the arcuate nucleus are mainly GABAergic, it is shown that several anorexigenic POMC/CART neurons of the ventromedial arcuate nucleus are most likely glutamatergic [corrected]."	"Cellular localization of three vesicular glutamate transporter mRNAs and proteins in rat spinal cord and dorsal root ganglia. Glutamate is transported into synaptic vesicles by vesicular glutamate transporter (VGLUT) proteins. Three different VGLUTs, VGLUT1, VGLUT2, and VGLUT3, have recently been characterized, and they are considered to represent the most specific marker so far for neurons using glutamate as transmitter. We analyzed the cellular localization of VGLUT1-3 in the rat spinal cord and dorsal root ganglia (DRGs) in control rats and after dorsal rhizotomy. Using in situ hybridization, VGLUT1 mRNA containing neurons were shown in the dorsomedial part of the intermediate zone, whereas VGLUT2 mRNA-expressing neurons were present in the entire intermediate zone, both populations most likely representing interneurons. VGLUT3 mRNA could not be detected in the spinal cord. In the ventral horn, a dense plexus of VGLUT1-immunoreactive (ir) nerve terminals was present, with large varicosities abutting on presumed motoneurons. In the dorsal horn a similarly dense plexus was seen, except in laminae I and II. A very dense plexus of VGLUT2-ir fibers was distributed in the entire gray matter of the spinal cord, with many fibers lying close to presumed motoneurons. Few VGLUT3-ir fibers were distributed in the white and gray matter, including lamina IX. However, a dense VGLUT3-ir plexus was seen in the sympathetic intermedio-lateral column (IML). Multiple-labeling immunohistochemistry revealed that the VGLUT1-, VGLUT2-, and VAChT-containing varicosities in lamina IX all represent separate entities. There was no colocalization of VGLUT3 with VAChT or 5-HT in varicose fibers of the ventral horn, but some VGLUT3-ir fibers in the IML were 5-HT-positive. Lesioning of the dorsal roots resulted in an almost complete disappearance of VGLUT1-ir fibers around motoneurons and a less pronounced decrease in the remaining gray matter, whereas the density of VGLUT2- and VAChT-ir fibers appeared unaltered after lesion. Many VGLUT1-ir neurons were observed in DRGs; they were almost all large and did not colocalize calcitonin gene-related peptide (CGRP), and there was no overlap between these markers in fibers in the superficial dorsal horn. VGLUT2 was, at most, seen in a few DRG neurons. Taken together, these results suggest that the VGLUTs mRNAs are present in distinct subsets of neuronal populations at the spinal level. VGLUT1 is mainly present in primary afferents from large, CGRP-negative DRG neurons, VGLUT2 has mainly a local origin, and VGLUT3 fibers probably have a supraspinal origin."	"The identification of vesicular glutamate transporter 3 suggests novel modes of signaling by glutamate. Quantal release of the principal excitatory neurotransmitter glutamate requires a mechanism for its transport into secretory vesicles. Within the brain, the complementary expression of vesicular glutamate transporters (VGLUTs) 1 and 2 accounts for the release of glutamate by all known excitatory neurons. We now report the identification of VGLUT3 and its expression by many cells generally considered to release a classical transmitter with properties very different from glutamate. Remarkably, subpopulations of inhibitory neurons as well as cholinergic interneurons, monoamine neurons, and glia express VGLUT3. The dendritic expression of VGLUT3 by particular neurons also indicates the potential for retrograde synaptic signaling. The distribution and subcellular location of VGLUT3 thus suggest novel modes of signaling by glutamate."	"Molecular cloning and functional identification of mouse vesicular glutamate transporter 3 and its expression in subsets of novel excitatory neurons. We have cloned and functionally characterized a third isoform of a vesicular glutamate transporter (VGLUT3) expressed on synaptic vesicles that identifies a distinct glutamatergic system in the brain that is partly and selectively promiscuous with cholinergic and serotoninergic transmission. Transport activity was specific for glutamate, was H(+)-dependent, was stimulated by Cl(-) ion, and was inhibited by Rose Bengal and trypan blue. Northern analysis revealed higher mRNA levels in early postnatal development than in adult brain. Restricted patterns of mRNA expression were observed in presumed interneurons in cortex and hippocampus, and projection systems were observed in the lateral and ventrolateral hypothalamic nuclei, limbic system, and brainstem. Double in situ hybridization histochemistry for vesicular acetylcholine transporter identified VGLUT3 neurons in the striatum as cholinergic interneurons, whereas VGLUT3 mRNA and protein were absent from all other cholinergic cell groups. In the brainstem VGLUT3 mRNA was concentrated in mesopontine raphé nuclei. VGLUT3 immunoreactivity was present throughout the brain in a diffuse system of thick and thin beaded varicose fibers much less abundant than, and strictly separated from, VGLUT1 or VGLUT2 synapses. Co-existence of VGLUT3 in VMAT2-positive and tyrosine hydroxylase -negative varicosities only in the cerebral cortex and hippocampus and in subsets of tryptophan hydroxylase-positive cell bodies and processes in differentiating primary raphé neurons in vitro indicates selective and target-specific expression of the glutamatergic/serotoninergic synaptic phenotype."	"Molecular cloning and functional characterization of human vesicular glutamate transporter 3. Glutamate is the major excitatory neurotransmitter in the mammalian CNS. It is loaded into synaptic vesicles by a proton gradient-dependent uptake system and is released by exocytosis upon stimulation. Recently, two mammalian isoforms of a vesicular glutamate transporter, VGLUT1 and VGLUT2, have been identified, the expression of which enables quantal release of glutamate from glutamatergic neurons. Here, we report a novel isoform of a human vesicular glutamate transporter (hVGLUT3). The predicted amino acid sequence of hVGLUT3 shows 72% identity to both hVGLUT1 and hVGLUT2. hVGLUT3 functions as a vesicular glutamate transporter with similar properties to the other isoforms when it is heterologously expressed in a neuroendocrine cell line. Although mammalian VGLUT1 and VGLUT2 exhibit a complementary expression pattern covering all glutamatergic pathways in the CNS, expression of hVGLUT3 overlaps with them in some brain areas, suggesting molecular diversity that may account for physiological heterogeneity in glutamatergic synapses."	"A third vesicular glutamate transporter expressed by cholinergic and serotoninergic neurons. Two proteins previously known as Na(+)-dependent phosphate transporters have been identified recently as vesicular glutamate transporters (VGLUT1 and VGLUT2). Together, VGLUT1 and VGLUT2 are operating at most central glutamatergic synapses. In this study, we characterized a third vesicular glutamate transporter (VGLUT3), highly homologous to VGLUT1 and VGLUT2. Vesicles isolated from endocrine cells expressing recombinant VGLUT3 accumulated l-glutamate with bioenergetic and pharmacological characteristics similar, but not identical, to those displayed by the type-1 and type-2 isoforms. Interestingly, the distribution of VGLUT3 mRNA was restricted to a small number of neurons scattered in the striatum, hippocampus, cerebral cortex, and raphe nuclei, in contrast to VGLUT1 and VGLUT2 transcripts, which are massively expressed in cortical and deep structures of the brain, respectively. At the ultrastructural level, VGLUT3 immunoreactivity was concentrated over synaptic vesicle clusters present in nerve endings forming asymmetrical as well as symmetrical synapses. Finally, VGLUT3-positive neurons of the striatum and raphe nuclei were shown to coexpress acetylcholine and serotonin transporters, respectively. Our study reveals a novel class of glutamatergic nerve terminals and suggests that cholinergic striatal interneurons and serotoninergic neurons from the brainstem may store and release glutamate."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TECTA"	"nonsyndromic genetic deafness"	"Tuning of olfactory cortex ventral tenia tecta neurons to distinct task elements of goal-directed behavior. The ventral tenia tecta (vTT) is a component of the olfactory cortex and receives both bottom-up odor signals and top-down signals. However, the roles of the vTT in odor-coding and integration of inputs are poorly understood. Here, we investigated the involvement of the vTT in these processes by recording the activity from individual vTT neurons during the performance of learned odor-guided reward-directed tasks in mice. We report that individual vTT cells are highly tuned to a specific behavioral epoch of learned tasks, whereby the duration of increased firing correlated with the temporal length of the behavioral epoch. The peak time for increased firing among recorded vTT cells encompassed almost the entire temporal window of the tasks. Collectively, our results indicate that vTT cells are selectively activated during a specific behavioral context and that the function of the vTT changes dynamically in a context-dependent manner during goal-directed behaviors."	"Whole exome sequencing identified mutations causing hearing loss in five consanguineous Pakistani families. Hearing loss is the most common sensory defect, and it affects over 6% of the population worldwide. Approximately 50-60% of hearing loss patients are attributed to genetic causes. Currently, more than 100 genes have been reported to cause non-syndromic hearing loss. It is possible and efficient to screen all potential disease-causing genes for hereditary hearing loss by whole exome sequencing (WES). We collected 5 consanguineous pedigrees from Pakistan with hearing loss and applied WES in selected patients for each pedigree, followed by bioinformatics analysis and Sanger validation to identify the causal genes. Variants in 7 genes were identified and validated in these pedigrees. We identified single candidate variant for 3 pedigrees: GIPC3 (c.937 T &gt; C), LOXHD1 (c.6136G &gt; A) and TMPRSS3 (c.941 T &gt; C). The remaining 2 pedigrees each contained two candidate variants: TECTA (c.4045G &gt; A) and MYO15A (c.3310G &gt; T and c.9913G &gt; C) for one pedigree and DFNB59 (c.494G &gt; A) and TRIOBP (c.1952C &gt; T) for the other pedigree. The candidate variants were validated in all available samples by Sanger sequencing. The candidate variants in hearing-loss genes were validated to be co-segregated in the pedigrees, and they may indicate the aetiologies of hearing loss in such patients. We also suggest that WES may be a suitable strategy for hearing-loss gene screening in clinical detection."	"A comparative analysis of genetic hearing loss phenotypes in European/American and Japanese populations. We present detailed comparative analyses to assess population-level differences in patterns of genetic deafness between European/American and Japanese cohorts with non-syndromic hearing loss. One thousand eighty-three audiometric test results (921 European/American and 162 Japanese) from members of 168 families (48 European/American and 120 Japanese) with non-syndromic hearing loss secondary to pathogenic variants in one of three genes (KCNQ4, TECTA, WFS1) were studied. Audioprofile characteristics, specific mutation types, and protein domains were considered in the comparative analyses. Our findings support differences in audioprofiles driven by both mutation type (non-truncating vs. truncating) and ethnic background. The former finding confirms data that ascribe a phenotypic consequence to different mutation types in KCNQ4; the latter finding suggests that there are ethnic-specific effects (genetic and/or environmental) that impact gene-specific audioprofiles for TECTA and WFS1. Identifying the drivers of ethnic differences will refine our understanding of phenotype-genotype relationships and the biology of hearing and deafness."	"Somatic synonymous mutations in regulatory elements contribute to the genetic aetiology of melanoma. Non-synonymous mutations altering tumor suppressor genes and oncogenes are widely studied. However, synonymous mutations, which do not alter the protein sequence, are rarely investigated in melanoma genome studies. We explored the role of somatic synonymous mutations in melanoma samples from TCGA (The Cancer Genome Atlas). The pathogenic synonymous mutation and neutral synonymous mutation data were used to assess the significance of pathogenic synonymous mutations in melanoma likely to affect genetic regulatory elements using Fisher's exact test. Poisson distribution probabilities of each gene were used to mine the genes with multiple potential functional synonymous mutations affecting regulatory elements. Concentrating on five types of genetic regulatory functions, we found that the mutational patterns of pathogenic synonymous mutations are mostly involved in exonic splicing regulators in near-splicing sites or inside DNase I hypersensitivity sites or non-optimal codon. Moreover, the sites of miRNA binding alteration exhibit a significantly lower rate of evolution than other sites. Finally, 12 genes were hit by recurrent potentially functional synonymous mutations, which showed statistical significance in the pathogenic mutations. Among them, nine genes (DNAH5, ADCY8, GRIN2A, KSR2, TECTA, RIMS2, XKR6, MYH1, SCN10A) have been reported to be mutated in melanoma, and other three genes (SLC9A2, CASR, SLC8A3) have a great potential to impact melanoma. These findings confirm the functional consequences of somatic synonymous mutations in melanoma, emphasizing the significance of research in future studies."	"Sesamum indicum L. Oil and Sesamin Induce Auditory-Protective Effects Through Changes in Hearing Loss-Related Gene Expression. Changing consumption patterns and increasing health awareness, especially in Europe, are resulting in an increased demand for sesame seeds. In 2016, Asia imported the highest quantity of sesame seeds, followed by Europe and North America. We examined, for the first time, the effects of treatment with sesame oil and sesamin in hearing impairment models. Sesame oil exhibited an ameliorative effect on auditory impairment in a hair cell line in zebrafish and mice. In ototoxic zebrafish larvae, neuromasts and otic cells increased in numbers because of sesame oil. Furthermore, auditory function in noise-induced hearing loss (NIHL) was studied through auditory brainstem response to evaluate the therapeutic effects of sesame oil. Sesame oil reduced the hearing threshold shift in response to clicks and 8, 16-kHz tone bursts in NIHL mice. Auditory-protective effect of sesame oil was seen in zebrafish and mice; therefore, we used chromatographic analysis to study sesamin, which is the major effective factor in sesame oil. To investigate its effects related to auditory function, we studied the hearing-related gene, Tecta, using the 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyl-tetrazoliumbromide (MTT) assay. Auditory cell proliferation was induced by treatment with sesame oil and sesamin using Tecta (Tectorin Alpha) regulation. The expression of Tecta increases in the apex area of the cochlear hair cells as they grow, and their activity is enhanced by sesame oil and sesamin. These results provide a novel mechanistic insight into the sesame oil activities and suggest that sesamin, the key constituent in sesame oil, is responsible for its auditory function related benefits, including protection of auditory cells and reversal of their impairments."	"A central master driver of psychosocial stress responses in the rat. The mechanism by which psychological stress elicits various physiological responses is unknown. We discovered a central master neural pathway in rats that drives autonomic and behavioral stress responses by connecting the corticolimbic stress circuits to the hypothalamus. Psychosocial stress signals from emotion-related forebrain regions activated a VGLUT1-positive glutamatergic pathway from the dorsal peduncular cortex and dorsal tenia tecta (DP/DTT), an unexplored prefrontal cortical area, to the dorsomedial hypothalamus (DMH), a hypothalamic autonomic center. Genetic ablation and optogenetics revealed that the DP/DTT→DMH pathway drives thermogenic, hyperthermic, and cardiovascular sympathetic responses to psychosocial stress without contributing to basal homeostasis. This pathway also mediates avoidance behavior from psychosocial stressors. Given the variety of stress responses driven by the DP/DTT→DMH pathway, the DP/DTT can be a potential target for treating psychosomatic disorders."	"Effects of two little-studied environmental pollutants on early development in anurans. Despite intensive ecotoxicological research, we still know relatively little about the ecological impacts of many environmental contaminants. Filling these knowledge gaps is particularly important regarding amphibians, because they play significant roles in freshwater and terrestrial ecosystems, and their populations are declining worldwide. In this study, we investigated two pollutants that have been poorly studied in ecotoxicology despite their widespread occurrence in surface waters: the herbicide terbuthylazine and the pharmaceutical drug carbamazepine. We exposed two anuran species throughout their larval development to each of two environmentally relevant concentrations of each pollutant, and recorded mortality and 17 sub-lethal endpoints up to several months after exposure. Mortality was low and unrelated to treatment. In agile frogs (Rana dalmatina), we found that treatment with 0.3 μg/L terbuthylazine decreased tadpole activity and reduced fat bodies in juveniles, whereas treatment with 50 μg/L carbamazepine decreased spleen size and increased spleen pigmentation. In common toads (Bufo bufo), treatment with 0.003 μg/L terbuthylazine increased body mass at metamorphosis, treatment with 0.3 μg/L terbuthylazine increased the size of optic tecta, and treatment with 0.5 μg/L carbamazepine decreased hypothalamus size. Treatment with 50 μg/L carbamazepine reduced the feeding activity of toad tadpoles, decreased their production of anti-predatory bufadienolide toxins, and increased their body mass at metamorphosis; juvenile toads in this treatment group had reduced spleen pigmentation. Neither treatments affected the time to metamorphosis, post-metamorphic body mass, or sex ratios significantly. These results show that environmental levels of both terbuthylazine and carbamazepine can have several sub-lethal effects on anurans, which may be detrimental to individual fitness and population persistence in natural conditions. Our findings further highlight that toxic effects cannot be generalized between chemicals of similar structure, because the terbuthylazine effects we found do not conform with previously reported effects of atrazine, a related and extensively studied herbicide."	"Tectal CRFR1 receptor involvement in avoidance and approach behaviors in the South African clawed frog, Xenopus laevis. Animals in the wild must balance food intake with vigilance for predators in order to survive. The optic tectum plays an important role in the integration of external (predators) and internal (energy status) cues related to predator defense and prey capture. However, the role of neuromodulators involved in tectal sensorimotor processing is poorly studied. Recently we showed that tectal CRFR1 receptor activation decreases food intake in the South African clawed frog, Xenopus laevis, suggesting that CRF may modulate food intake/predator avoidance tradeoffs. Here we use a behavioral assay modeling food intake and predator avoidance to test the role of CRFR1 receptors and energy status in this tradeoff. We tested the predictions that 1) administering the CRFR1 antagonist NBI-27914 via the optic tecta will increase food intake and feeding-related behaviors in the presence of a predator, and 2) that prior food deprivation, which lowers tectal CRF content, will increase food intake and feeding-related behaviors in the presence of a predator. Pre-treatment with NBI-27914 did not prevent predator-induced reductions in food intake. Predator exposure altered feeding-related behaviors in a predictable manner. Pretreatment with NBI-27914 reduced the response of certain behaviors to a predator but also altered behaviors irrelevant of predator presence. Although 1-wk of food deprivation altered some non-feeding behaviors related to energy conservation strategy, food intake in the presence of a predator was not altered by prior food deprivation. Collectively, our data support a role for tectal CRFR1 in modulating discrete behavioral responses during predator avoidance/foraging tradeoffs."	"The release of surface-anchored α-tectorin, an apical extracellular matrix protein, mediates tectorial membrane organization. The tectorial membrane (TM) is an apical extracellular matrix (ECM) that hovers over the cochlear sensory epithelium and plays an essential role in auditory transduction. The TM forms facing the luminal endolymph-filled space and exhibits complex ultrastructure. Contrary to the current extracellular assembly model, which posits that secreted collagen fibrils and ECM components self-arrange in the extracellular space, we show that surface tethering of α-tectorin (TECTA) via a glycosylphosphatidylinositol anchor is essential to prevent diffusion of secreted TM components. In the absence of surface-tethered TECTA, collagen fibrils aggregate randomly and fail to recruit TM glycoproteins. Conversely, conversion of TECTA into a transmembrane form results in a layer of collagens on the epithelial surface that fails to form a multilayered structure. We propose a three-dimensional printing model for TM morphogenesis: A new layer of ECM is printed on the cell surface concomitant with the release of a preestablished layer to generate the multilayered TM."	"Expanding the Genetic Landscape of Usher-Like Phenotypes. Usher syndrome (USH) is a rare disorder characterized by retinitis pigmentosa (RP) and sensorineural hearing loss. Several genes are responsible for the disease, but not all cases are explained by mutations in any of these, supporting the fact that there remain other unknown genes that have a role in the syndrome. We aimed to find the genetic cause of presumed USH patients lacking pathogenic mutations in the known USH genes. Whole exome sequencing was performed on a priori USH-diagnosed subjects from nine unrelated families, which had shown negative results for an USH-targeted panel in a previous study. We identified possible pathogenic variants in six of the studied families. One patient harbored mutations in REEP6 and TECTA, each gene tentatively causative of one of the two main symptoms of the disease, mimicking the syndrome. In three patients, only the retinal degeneration causative mutations were detected (involving EYS, WDR19, and CNGB1 genes). Another family manifested a dementia-linked retinal dystrophy dependent on an allele dosage in the GRN gene. Last, another case presented a homozygous mutation in ASIC5, a gene not yet associated with USH. Our findings demonstrate that pending cases should be clinically and genetically carefully assessed, since more patients than expected may be either related phenocopies or affected by a more complex disease encompassing additional symptoms rather than classical USH."	"Re-classification of Lycoriella Frey sensu lato (Diptera, Sciaridae), with description of Trichocoelina gen. n. and twenty new species. On the basis of re-evaluation of morphological characters of the Lycoriella group of genera and subgenera, generic rank is given to the two species groups belonging to Lycoriella (Hemineurina) Frey, 1942 and to Lycoriella (Coelostylina) Tuomikoski, 1960. The Lycoriella (Hemineurina) inflata group, including the type species of the subgenus, Sciara conspicua Winnertz, 1867, is treated as the genus Hemineurina stat. n. and the Lycoriella (Hemineurina) vitticollis group as the genus Trichocoelina gen. n. (type species Sciara vitticollis Holmgren, 1883). Coelostylina Tuomikoski, 1960 (type species Lycoriella (Coelostylina) freyi Tuomikoski, 1960) is a junior homonym of Coelostylina Kittl, 1894, and is renamed Stenacanthella nom. et stat. n. The genera are diagnosed and their phylogeny is discussed. Eight species are excluded from the Lycoriella group. They are transferred to the genera Bradysiopsis Tuomikoski, 1960, Camptochaeta Hippa Vilkamaa, 1994, Merizomma Sasakawa, 2003 stat. n. and Scatopsciara Edwards, 1927 (five species) or are for the time being regarded as incertae sedis (two species) and as nomen nudum (one name). Numerous nomenclatural corrections are made also in the genera Hemineurina Frey, Stenacanthella Vilkamaa Menzel and Trichocoelina Vilkamaa Menzel. Altogether 42 new combinations, three changes in status and one new synonym are presented. A lectotype is designated for Hemineurina algida (Frey, 1948) and two Hemineurina species names are removed from synonymy and given full species status. The following species of Trichocoelina are newly described: Trichocoelina absidata sp. n. (Russia: Krasnodarsk region), T. aemula sp. n. (Finland, Russia: Krasnodarsk region), T. biplex sp. n. (Canada: Newfoundland and Labrador, Yukon), T. dicksoni sp. n. (Russia: Arkhangelsk oblast, Kemerovsk oblast, Krasnodarsk region), T. dispansa sp. n. (Russia: Krasnodarsk region), T. dividua sp. n. (Canada: Northwest Territories), T. hians sp. n. (Canada: Yukon), T. imitator sp. n. (Canada: Yukon), T. incrassata sp. n. (USA: Alaska), T. ithyspina sp. n. (Norway), T. jukkai sp. n. (Finland), T. magnifica sp. n. (Canada: Yukon), T. nefrens sp. n. (Russia: Krasnodarsk region), T. obesula sp. n. (Norway), T. oricillifera sp. n. (Finland, Norway), T. planilobata sp. n. (Finland), T. quintula sp. n. (Finland), T. semisphaera sp. n. (Finland, Norway), T. semusta sp. n. (Italy, USA: Alaska), and T. tecta sp. n. (Canada: Nunavut, Yukon, Russia: Krasnodarsk region, Yamalo-Nenets Autonomous Okrug, USA: Alaska). The Trichocoelina species are keyed, the 20 new species are described and illustrated, and the 9 previously known ones, transferred to the new genus, are briefly diagnosed and the taxonomically relevant literature regarding them is listed. Trichocoelina janetscheki (Lengersdorf, 1953) comb. n. and Trichocoelina brevicubitalis (Lengersdorf, 1926) comb. n. are redescribed. The genus Trichocoelina currently includes 29 species: 17 in the Palaearctic, 6 in the Nearctic and 6 in the Holarctic. All known species are northern or montane."	"Clinical utility of next-generation sequencing in the aetiological diagnosis of sensorineural hearing loss in a Childhood Hearing Loss Unit. Sensorineural hearing loss (SNL) is the most prevalent sensory deficit in our environment. Next generation genomic sequencing (NGS) enables an aetiological diagnosis in a high percentage of patients. Our pilot study shows the results of the systematic application of NGS in a Childhood Hearing Loss Unit, as well as its implications for the clinical management of patients and their families. We included 27 patients diagnosed with SNL between 2014 and 2017, in which an environmental cause was ruled out. The genetic test consisted of a panel of genes analyzed by NGS (OTOgenicsTM panel). This panel has been designed to include genes associated with sensorineural or mixed hearing loss, early onset or late, syndromic and non-syndromic, regardless of their inheritance pattern. A genetic diagnosis was obtained in 56% (15/27) of the patients (62% in the case of bilateral SNL). Of the patients, 5/27 (19%) presented pathogenic variants in the GJB2 gene and the rest pathogenic and / or probably pathogenic variants in other genes associated with isolated SNL (PR2X2, TECTA and STRC), with syndromic SNL (CHD7, GATA3, COL4A5, MITF and SOX10) or with syndromic and non-syndromic SNL (BSND, ACTG1 and CDH23). The aetiological diagnosis of SNL is a challenge in clinical practice. Our series demonstrates that it is possible to implement genetic diagnosis in the care routine and that this information has prognostic and therapeutic implications."	"Novel long-range inhibitory nNOS-expressing hippocampal cells. The hippocampus, a brain region that is important for spatial navigation and episodic memory, benefits from a rich diversity of neuronal cell-types. Through the use of an intersectional genetic viral vector approach in mice, we report novel hippocampal neurons which we refer to as LINCs, as they are long-range inhibitory neuronal nitric oxide synthase (nNOS)-expressing cells. LINCs project to several extrahippocampal regions including the tenia tecta, diagonal band, and retromammillary nucleus, but also broadly target local CA1 cells. LINCs are thus both interneurons and projection neurons. LINCs display regular spiking non-pyramidal firing patterns, are primarily located in the stratum oriens or pyramidale, have sparsely spiny dendrites, and do not typically express somatostatin, VIP, or the muscarinic acetylcholine receptor M2. We further demonstrate that LINCs can strongly influence hippocampal function and oscillations, including interregional coherence. The identification and characterization of these novel cells advances our basic understanding of both hippocampal circuitry and neuronal diversity."	"The Prevalence and Clinical Characteristics of TECTA-Associated Autosomal Dominant Hearing Loss. TECTA is well known as a causative gene for autosomal dominant mid-frequency hearing loss observed in various populations. In this study, we performed next-generation sequencing analysis of a large Japanese hearing loss cohort, including eight hundred and twelve (812) subjects from unrelated autosomal dominant hearing loss families, to estimate the prevalence and phenotype-genotype correlations in patients with TECTA mutations. The prevalence of TECTA mutations in Japanese autosomal dominant sensorineural hearing loss families was found to be 3.2%. With regard to the type of hearing loss, the patients with mutations in the nidogen-like domain or ZA domain of TECTA showed varied audiograms. However, most of the patients with mutations in the ZP domain showed mid-frequency hearing loss. The rate of hearing deterioration in TECTA-associated hearing loss patients and in the normal hearing Japanese control population were the same and regression lines for each group were parallel. We carried out haplotype analysis for four families which had one recurring missense variant, c.5597C&gt;T (p.Thr1866Met). Our results revealed four different haplotypes, suggesting that this mutation occurred independently in each family. In conclusion, TECTA variants represent the second largest cause of autosomal dominant sensorineural hearing loss in Japan. The hearing loss progression observed in the patients with TECTA mutations might reflect presbycusis. The c.5597C&gt;T mutation occurred in a mutational hot spot and is observed in many ethnic populations."	"Neuroendocrine modulation of predator avoidance/prey capture tradeoffs: Role of tectal NPY2R receptors. The optic tectum rapidly inhibits food intake when a visual threat is present. Anatomical and electrophysiological evidence support a role for neuropeptide Y (NPY), originating from cells in the thalamus, in the tectal inhibition of prey capture. Here we test the hypothesis that tectal NPY receptor type 2 (NPY2R) influences prey-capture and predator-avoidance responses in the African clawed frog, Xenopus laevis. We tested two questions: 1) Does tectal NPY administration decrease food intake and alter prey-capture behavior? 2) Does tectal administration of a NPY2R antagonist increase food intake, alter prey-capture behavior, and alter predator avoidance behavior? NPY microinjected bilaterally into the tecta failed to significantly alter food intake at any dose tested, although predator presence significantly reduced food intake. However, NPY differentially altered discrete components of prey capture including increasing the latency to contact food and reducing the amount of time in contact with food. These effects were blocked by the NPY2R antagonist BIIE0246. Additionally, BIIE0246 elevated food intake on its own after bilateral tectal microinjection. Furthermore, BIIE0246 reversed the reduction of food intake caused by exposure to a predator. Overall, these findings indicate that tectal NPY2R activation causes frogs to consume food more quickly, which may be adaptive in predator-rich environments. Blocking tectal NPY2R increases baseline food intake and reduces or eliminates predator-induced changes in prey capture and food intake."	"Systematic Review of Hearing Loss Genes in the African American Population. Literature review of the genetic etiology of hearing loss (HL) in the African American (AA) population. PubMed, EBSCO, and CINAHL were accessed from 1966 to 2018. PRISMA guidelines were followed. Search terms included permutations of &quot;hearing loss,&quot; &quot;African American,&quot; &quot;black,&quot; and &quot;genetic&quot;; &quot;African American&quot; was then cross-referenced against documented HL genes. AA subjects included in multiethnic cohorts of genetic HL testing were identified by searching the key terms &quot;hearing loss&quot; and &quot;ethnic cohort&quot; and &quot;genetic.&quot; The Q-Genie tool was used in the quality assessment of included studies. An allele frequency meta-analysis of pathogenic GJB2 variants in the AA population was performed and stratified by hearing status. Four hundred seventeen articles were reviewed, and 26 met our inclusion criteria. Ten studies were included in the GJB2 meta-analysis. In the general AA population, pathogenic GJB2 variants are rare, including the 35delG allele, which displayed a carrier frequency of 0.05%. Pathogenic variants were discovered in seven nonsyndromic HL genes (GJB2, MYO3A, TECTA, STRC, OTOF, MYH14, TMC1), eight syndromic HL genes, and one mitochondrial HL gene. Recent comprehensive genetic testing using custom genetic HL testing platforms has yielded only a 26% molecular diagnosis rate for HL etiologies in the AA population. Investigators should be encouraged to provide an ethnic breakdown of results. Sparse literature and poor diagnosis rates indicate that genes involved in HL in the AA population have yet to be identified. Future explorative investigations using next-generation sequencing technologies, such as whole-exome sequencing, into the AA population are warranted."	"The TECTA mutation R1890C is identified as one of the causes of genetic hearing loss: a case report. Many mutations in the α-tectorin gene (TECTA) have been reported to cause non-syndromic hearing loss (NSHL) in either a dominant or recessive inheritance pattern. Among the identified TECTA mutations, H1400Y has been associated with NSHL in two independent studies. However, its exact role in contributing to genetic hearing loss remains elusive. We herein report the whole-exome sequencing of a proband presenting with prelingual, non-progressive, mild-to-moderate hearing loss in a simplex family. By using trio-based whole-exome sequencing, we found two heterozygous mutations of R1890C and H1400Y in the ZP and ZA domains of TECTA, respectively. R1890C, previously reported as a pathogenic autosomal dominant mutation of genetic hearing loss, was found to be inherited in a de novo pattern, causing hearing loss in the proband. By contrast, H1400Y was not segregated in this family, and one family member with normal hearing also carried the H1400Y mutation. According to the hearing loss-specific American College of Medical Genetics and Genomics (ACMG) guidelines, we conclude that H1400Y should be disqualified as a cause of genetic hearing loss. True pathogenic variants causing genetic hearing loss should be more deliberately reported in accordance with ACMG guidelines."	"Cochlear outer hair cell horizontal top connectors mediate mature stereocilia bundle mechanics. Outer hair cell (OHC) stereocilia bundle deflection opens mechanoelectrical transduction channels at the tips of the stereocilia from the middle and short rows, while bundle cohesion is maintained owing to the presence of horizontal top connectors. Here, we used a quantitative noncontact atomic force microscopy method to investigate stereocilia bundle stiffness and damping, when stimulated at acoustic frequencies and nanometer distances from the bundle. Stereocilia bundle mechanics were determined in stereocilin-deficient mice lacking top connectors and with detached tectorial membrane (Strc<sup>-/-</sup>/Tecta<sup>-/-</sup> double knockout) and heterozygous littermate controls (Strc<sup>+/-</sup>/Tecta<sup>-/-</sup>). A substantial decrease in bundle stiffness and damping by ~60 and ~74% on postnatal days P13 to P15 was observed when top connectors were absent. Additionally, we followed bundle mechanics during OHC top connectors development between P9 and P15 and quantified the observed increase in OHC bundle stiffness and damping in Strc<sup>+/-</sup>/Tecta<sup>-/-</sup> mice while no significant change was detected in Strc<sup>-/-</sup>/Tecta<sup>-/-</sup> animals."	"[Diagnosis and reproductive guidance for a couple carrying a novel c.1893C&gt;T mutation of the TECTA gene]. To explore the molecular basis for an individual with postnatal deafness and provide genetic counseling for her family. Following extraction of genomic DNA from peripheral blood samples, 127 genes associated with deafness were subjected to targeted capturing and next generation sequencing. Suspected mutation was verified by Sanger sequencing. The proband was found to carry a homozygous c.1893C&gt;A mutation in the TECTA gene, which is located in the tectorial membrane of inner ear and may cause premature termination of translation of TECTA protein. In addition, two heterozygous mutations, c.13010C&gt;T and c.12790G&gt;A, were found in the USH2A gene. Whilst the former is likely to be pathogenic, the latter has unknown clinical significance. Further analysis suggested that all three mutations have derived from the parents of the proband. The homozygous c.1893C&gt;A mutation of the TECTA gene probably underlies the proband's hearing loss which conformed to an autosomal recessive inheritance."	"Spontaneous Otoacoustic Emissions in Tecta<sup>Y1870C/+</sup> Mice Reflect Changes in Cochlear Amplification and How It Is Controlled by the Tectorial Membrane. Spontaneous otoacoustic emissions (SOAEs) recorded from the ear canal in the absence of sound reflect cochlear amplification, an outer hair cell (OHC) process required for the extraordinary sensitivity and frequency selectivity of mammalian hearing. Although wild-type mice rarely emit, those with mutations that influence the tectorial membrane (TM) show an incidence of SOAEs similar to that in humans. In this report, we characterized mice with a missense mutation in Tecta, a gene required for the formation of the striated-sheet matrix within the core of the TM. Mice heterozygous for the Y1870C mutation (Tecta<sup>Y1870C/+</sup> ) are prolific emitters, despite a moderate hearing loss. Additionally, Kimura's membrane, into which the OHC stereocilia insert, separates from the main body of the TM, except at apical cochlear locations. Multimodal SOAEs are also observed in Tecta<sup>Y1870C/+</sup> mice where energy is present at frequencies that are integer multiples of a lower-frequency SOAE (the primary). Second-harmonic SOAEs, at twice the frequency of a lower-frequency primary, are the most frequently observed. These secondary SOAEs are found in spatial regions where stimulus-evoked OAEs are small or in the noise floor. Introduction of high-level suppressors just above the primary SOAE frequency reduce or eliminate both primary and second-harmonic SOAEs. In contrast, second-harmonic SOAEs are not affected by suppressors, either above or below the second-harmonic SOAE frequency, even when they are much larger in amplitude. Hence, second-harmonic SOAEs do not appear to be spatially separated from their primaries, a finding that has implications for cochlear mechanics and the consequences of changes to TM structure."	"Genomic Studies in a Large Cohort of Hearing Impaired Italian Patients Revealed Several New Alleles, a Rare Case of Uniparental Disomy (UPD) and the Importance to Search for Copy Number Variations. Hereditary hearing loss (HHL) is a common disorder characterized by a huge genetic heterogeneity. The definition of a correct molecular diagnosis is essential for proper genetic counseling, recurrence risk estimation, and therapeutic options. From 20 to 40% of patients carry mutations in GJB2 gene, thus, in more than half of cases it is necessary to look for causative variants in the other genes so far identified (~100). In this light, the use of next-generation sequencing technologies has proved to be the best solution for mutational screening, even though it is not always conclusive. Here we describe a combined approach, based on targeted re-sequencing (TRS) of 96 HHL genes followed by high-density SNP arrays, aimed at the identification of the molecular causes of non-syndromic HHL (NSHL). This strategy has been applied to study 103 Italian unrelated cases, negative for mutations in GJB2, and led to the characterization of 31% of them (i.e., 37% of familial and 26.3% of sporadic cases). In particular, TRS revealed TECTA and ACTG1 genes as major players in the Italian population. Furthermore, two de novo missense variants in ACTG1 have been identified and investigated through protein modeling and molecular dynamics simulations, confirming their likely pathogenic effect. Among the selected patients analyzed by SNP arrays (negative to TRS, or with a single variant in a recessive gene) a molecular diagnosis was reached in ~36% of cases, highlighting the importance to look for large insertions/deletions. Moreover, copy number variants analysis led to the identification of the first case of uniparental disomy involving LOXHD1 gene. Overall, taking into account the contribution of GJB2, plus the results from TRS and SNP arrays, it was possible to reach a molecular diagnosis in ~51% of NSHL cases. These data proved the usefulness of a combined approach for the analysis of NSHL and for the definition of the epidemiological picture of HHL in the Italian population."	"Aging is associated with larger brain mass and volume in homing pigeons (Columba livia). In mammals, the brain decreases in mass and volume as a function of age. The current study is, to the best of our knowledge, the first to investigate age-related changes in brain mass and volume in birds. Following perfusion, brains from young and old homing pigeons were weighed on a balance and orthogonal measurements of the telencephalon, cerebellum, and tecta were obtained with a digital caliper. It was found that older pigeons had heavier brains than younger pigeons, a difference that remained after controlling for body mass. Additionally, older pigeons had on average greater estimated telencephalon volumes than younger pigeons, again also after controlling for body mass. Cerebellum and right tectum volumes also differed between age groups after controlling for body mass, with older pigeons having a larger cerebellum and right tectum than younger pigeons. In sum, brains are on average heavier and larger in old pigeons, which display age-related cognitive decline, compared to young adult pigeons. The larger brain in older homing pigeons also lies in stark contrast with aging of the mammalian brain."	"Taxonomic revision of the Western Palaearctic bees of the subgenus Pseudomegachile (Hymenoptera, Apiformes, Megachilidae, Megachile). The subgenus Pseudomegachile Friese of the large genus Megachile Latreille is revised for the Western Palaearctic region, Iran, and the Arabian Peninsula. Twenty species are recognized, of which five are new: Megachile blepharis Dorchin Praz from Israel, M. plumigera Dorchin Praz from Oman and the United Arab Emirates, M. syriaca Dorchin Praz from Syria and Turkey, M. yezidica Dorchin Praz from Turkey and Iran, and M. maxschwarzi Dorchin Praz from Iran and Central Asia. The following new synonymies are proposed: M. inermis Radoszkowski 1893 (as well as the replacement name M. mitis Cockerell 1899), M. albifasciata Rebmann 1970 and M. transgrediens Rebmann 1970 are placed in synonymy with M. saussurei Radoszkowski 1874; M. tuberculata Radoszkowski 1893 (as well as the replacement name M. tuberculosa Dalla Torre 1896) is placed in synonymy with M. seraxensis Radoszkowski 1893; M. rubripes Morawitz 1875 and M. persica Rebmann 1972 are placed in synonymy with M. flavipes Spinola 1838; M. stolzmanni Radoszkowski 1893 and M. flavidula Rebmann 1970 are placed in synonymy with M. tecta Radoszkowski 1888. Lectotypes are designated for M. cinnamomea Alfken 1926, M. nilotica Pérez 1897, M. inermis, M. seraxensis, M. tuberculata, M. farinosa Smith 1853, M. derasa Gerstäcker 1869, M. erythrocnemis Alfken 1930 and M. xanthocnemis Alfken 1938. An identification key is provided, a phylogenetic hypothesis including most species in the subgenus is presented, and the biology of the species is briefly summarized."	"The effect of Peruvian small-scale fisheries on sunfishes (Molidae). Reports were compiled of sunfish (family Molidae) by-catch in Peruvian small-scale fisheries and sunfish by-catch rates were estimated using data from shore-based and onboard monitoring programmes. A total of 114 sunfishes were reported in the longline and gillnet fisheries along the Peru coast from 2005 to 2017. Systematic monitoring effort of small-scale gillnets leads to an estimate of between 23 and 352 individuals captured annually by the fleet fishing from the northern port of Salaverry and central ports of Ancon and Chorrillos and suggests that the actual number captured by the Peruvian gillnet fleet is in the thousands of individuals. Thus, Peruvian small-scale fisheries have the potential to greatly affect populations of these still poorly studied species. Moreover, new occurrence locations are reported for the newly described Mola tecta, which was only observed south of 11° S. Because of physical similarities among Mola species it was difficult to identify sunfishes to the species level and thus further studies (e.g., genetics) will be required to provide more detailed information on individual species vulnerability to by-catch in Peruvian waters."	"Brain differences in ecologically differentiated sticklebacks. Populations that have recently diverged offer a powerful model for studying evolution. Ecological differences are expected to generate divergent selection on multiple traits, including neurobiological ones. Animals must detect, process, and act on information from their surroundings and the form of this information can be highly dependent on the environment. We might expect different environments to generate divergent selection not only on the sensory organs, but also on the brain regions responsible for processing sensory information. Here, we test this hypothesis using recently evolved reproductively isolated species pairs of threespine stickleback fish Gasterosteus aculeatus that have well-described differences in many morphological and behavioral traits correlating with ecological differences. We use a state-of-the-art method, magnetic resonance imaging, to get accurate volumetric data for 2 sensory processing regions, the olfactory bulbs and optic tecta. We found a tight correlation between ecology and the size of these brain regions relative to total brain size in 2 lakes with intact species pairs. Limnetic fish, which rely heavily on vision, had relatively larger optic tecta and smaller olfactory bulbs compared with benthic fish, which utilize olfaction to a greater extent. Benthic fish also had larger total brain volumes relative to their body size compared with limnetic fish. These differences were erased in a collapsed species pair in Enos Lake where anthropogenic disturbance has led to intense hybridization. Together these data indicate that evolution of sensory processing regions can occur rapidly and independently."	"The time course of blood brain barrier leakage and its implications on the progression of methamphetamine-induced seizures. The initial goals of these experiments were to determine: 1) if blood-brain barrier (BBB) breakdown was a cause or an effect of METH-induced seizures; 2) all the brain regions where BBB is disrupted as seizures progress; and 3) the correlations between body temperature and vascular leakage and neurodegeneration. A fourth objective was added after initial experimentation to determine if sub-strain differences existed in adult male C57 B6 J (Jackson laboratories, JAX) versus C57 B6N (Charles River, CR) mice involving their susceptibility to BBB breakdown and seizure severity. With the 1st &quot;maximal&quot; intensity myoclonic-tonic seizure (MCT) varying degrees of IgG infiltration across the BBB (≤1 mm<sup>2</sup>) were prominent in olfactory system (OS) associated regions and in thalamus, hypothalamus and neocortex. IgG infiltration areas in the OS-associated regions of the bed nucleus of the stria terminalis, septum and more medial amygdala nuclei, and the hypothalamus were increased significantly by the time continuous behavioral seizures (CBS) developed. Mice receiving METH that had body temperatures of ≥40 °C had IgG infiltration along with MCT or CBS but peak body temperatures above 40 °C did not significantly increase IgG infiltration. Neurodegeneration seen at ≥6 h was restricted to the OS in both JAX and CR mice and was most prominent in the posteromedial cortical amygdaloid nucleus. Neurodegeneration in the anterior septum (tenia tecta) was seen only in the JAX mice. We hypothesize that METH-induced hypertension and hyperthermia lead to BBB breakdown and other vascular dysfunctions in the OS brain regions resulting in OS hyperexcitation. Excitation of the OS neural network then leads to the development of seizures. These seizures in turn exacerbate the energy depletions and the reactive oxygen stress produced by hyperthermia further damaging the BBB and vascular function. These events form a recurrent cycle that results in ever increasing seizure activity and neurotoxicity."	"Molecular parallelism in fast-twitch muscle proteins in echolocating mammals. Detecting associations between genomic changes and phenotypic differences is fundamental to understanding how phenotypes evolved. By systematically screening for parallel amino acid substitutions, we detected known as well as novel cases (Strc, Tecta, and Cabp2) of parallelism between echolocating bats and toothed whales in proteins that could contribute to high-frequency hearing adaptations. Our screen also showed that echolocating mammals exhibit an unusually high number of parallel substitutions in fast-twitch muscle fiber proteins. Both echolocating bats and toothed whales produce an extremely rapid call rate when homing in on their prey, which was shown in bats to be powered by specialized superfast muscles. We show that these genes with parallel substitutions (Casq1, Atp2a1, Myh2, and Myl1) are expressed in the superfast sound-producing muscle of bats. Furthermore, we found that the calcium storage protein calsequestrin 1 of the little brown bat and the bottlenose dolphin functionally converged in its ability to form calcium-sequestering polymers at lower calcium concentrations, which may contribute to rapid calcium transients required for superfast muscle physiology. The proteins that our genomic screen detected could be involved in the convergent evolution of vocalization in echolocating mammals by potentially contributing to both rapid Ca<sup>2+</sup> transients and increased shortening velocities in superfast muscles."	"The brain of the tree pangolin (Manis tricuspis). II. The olfactory system. This study employed a range of neuroanatomical stains to determine the organization of the main and accessory olfactory systems within the brain of the tree pangolin. The tree pangolin has a typically mammalian olfactory system, but minor variations were observed. The main olfactory system is comprised of the layered main olfactory bulb (MOB), the anterior olfactory nucleus (AON), the rostral olfactory cortex (including the taenia tecta, anterior hippocampal continuation and induseum griseum), the olfactory tubercle (Tu), the lateral olfactory tract (lot) and the olfactory limb of the anterior commissure, the nucleus of the lateral olfactory tract (NLOT), the piriform cortex (PIR) and a typically mammalian rostral migratory stream (RMS). The accessory olfactory system included the layered accessory olfactory bulb (AOB) and the nucleus of the accessory olfactory tract (NAOT). Volumetric analysis of the relative size of the MOB and PIR indicate that the tree pangolin has an olfactory system that occupies a proportion of the brain typical for the majority of mammals. Within the MOB, the glomeruli of the tree pangolin, at 200 μm diameter, are larger than observed in most other mammalian species, and the MOB lacks a distinct internal plexiform layer. In addition, the laminate appearance of the NLOT was not observed in the tree pangolin. The accessory olfactory system appears to lack the posterior compartment of the accessory olfactory bulb. These observations are contextualized in relation to olfactory-mediated behaviors in pangolins."	"Genetic heterogeneity of congenital hearing impairment in Algerians from the Ghardaïa province. Consanguinity rate is high in Algeria, and the population is thus at high risk for genetic diseases transmitted on an autosomal recessive mode. Inherited congenital hearing impairment (HI) is a highly heterogeneous disorder, which affects approximately 1 in 800 Algerian newborns. Several hundreds of genes responsible for deafness have been reported among which more than one hundred are responsible for isolated deafness, of which 19 have already been reported to be involved in the Algerian population. This study focuses on patients from the Ghardaïa province, an ethnically and geographically isolated region of Southern Algeria that has the highest consanguinity rate in the country (56%). Eleven families, with at least two related members experiencing moderate to profound congenital HI, were recruited and screened for mutations in known HI genes. A preliminary screening for common mutations in GJB2 and GJB6 identified the prevalent GJB2:c.35delG mutation in four families. Targeted exome sequencing further identified the causal mutations in the remaining seven families: CIB2:c.97C &gt; T; p.(Arg33*), MYO7A:c.470+1G &gt; A; p.(?), and SLC26A4:c.410C &gt; T; p.(Ser137Leu) biallelic mutations in two families each, and a TECTA:c.2743 A &gt; G; p.(Ile915Val) monoallelic mutation in the only family with autosomal dominant transmission of the HI. Of note, the missense mutations of SLC26A4 and TECTA had not been previously reported. These results further substantiate the genetic heterogeneity of HI, even in reportedly isolated populations. However, several families may harbor the same mutations as a result of a long history of marriages between relatives. This study has important implications for the HI molecular diagnosis strategy, and to develop genetic counseling for families originating from the Ghardaïa province of Algeria."	"N-terminal and central domains of APC function to regulate branch number, length and angle in developing optic axonal arbors in vivo. During formation of neuronal circuits, axons navigate long distances to reach their target locations in the brain. When axons arrive at their target tissues, in many cases, they extend collateral branches and/or terminal arbors that serve to increase the number of synaptic connections they make with target neurons. Here, we investigated how Adenomatous Polyposis Coli (APC) regulates terminal arborization of optic axons in living Xenopus laevis tadpoles. The N-terminal and central domains of APC that regulate the microtubule cytoskeleton and stability of β-catenin in the Wnt pathway, were co-expressed with GFP in individual optic axons, and their terminal arbors were then imaged in tectal midbrains of intact tadpoles. Our data show that the APCNTERM and APCβ-cat domains both decreased the mean number, and increased the mean length, of branches in optic axonal arbors relative to control arbors in vivo. Additional analysis demonstrated that expression of the APCNTERM domain increased the average bifurcation angle of branching in optic axonal arbors. However, the APCβ-cat domain did not significantly affect the mean branch angle of arbors in tecta of living tadpoles. These data suggest that APC N-terminal and central domains both modulate number and mean length of branches optic axonal arbors in a compensatory manner, but also define a specific function for the N-terminal domain of APC in regulating branch angle in optic axonal arbors in vivo. Our findings establish novel mechanisms for the multifunctional protein APC in shaping terminal arbors in the visual circuit of the developing vertebrate brain."	"Novel West syndrome candidate genes in a Chinese cohort. West syndrome (WS) is a classic form of early infantile epileptic encephalopathy (EIEE) characterized by tonic spasms with clustering, arrest of psychomotor development, and hypsarrhythmia on electroencephalography. Genetic defects play a critical role in the pathology of WS, and 54 EIEE genes have been identified till date. This study was designed to uncover new candidate genes for West syndrome. In this study, we recruited 56 Chinese families with WS of unknown etiology. Whole exome sequencing (WES) was performed to identify Mendelian inheritance rare or novel variants. The association between candidate genes and WS was analyzed from many aspects, including recurrent genes in patients, predicted variant effect on genes, human tolerance to deficient genes, gene expression in the nervous system, coexpression with EIEE genes, mutual interaction with known EIEE proteins, genes related to ion channel or fragile X mental retardation protein function, and mouse models with manifestation of seizures. Genes with supporting evidence from those aspects were defined as highlight candidate genes. Whole exome sequencing identified 112 candidate variants in 89 genes. Among the candidate genes, 33 were autosomal dominant, 22 were autosomal recessive, and 34 were X-linked. Complex bioinformatic analysis revealed 17 highlight candidate genes: ATP2A2, CD99L2, CLCN6, CYFIP1, CYFIP2, GNB1, GPT2, HUWE1, KMT2D, MYO18A, NOS3, RYR1, RYR2, RYR3, TAF1, TECTA, and UBA1. The majority of highlight candidate genes are calcium-signaling pathway and mental retardation genes. This is the first WES study of Chinese WS patients with unknown etiology. This combination of phenotypic and genomic data will enable further testing to elucidate mechanisms underlying the pathogenesis of WS."	"Independent replication of polymorphisms predicting toxicity in breast cancer patients randomized between dose-dense and docetaxel-containing adjuvant chemotherapy. Although pharmacogenomics has evolved substantially, a predictive test for chemotherapy toxicity is still lacking. We compared the toxicity of adjuvant dose-dense doxorubicin-cyclophosphamide (ddAC) and docetaxel-doxorubicin-cyclophosphamide (TAC) in a randomized multicenter phase III trial and replicated previously reported associations between genotypes and toxicity. 646 patients (97%) were evaluable for toxicity (grade 2 and higher). Whereas AN was more frequent after ddAC (P &lt; 0.001), TAC treated patients more often had PNP (P &lt; 0.001). We could replicate 2 previously reported associations: TECTA (rs1829; OR 4.18, 95% CI 1.84-9.51, P = 0.001) with PNP, and GSTP1 (rs1138272; OR 2.04, 95% CI 1.13-3.68, P = 0.018) with PNP. Patients with pT1-3, pN0-3 breast cancer were randomized between six cycles A60C600 every 2 weeks or T75A50C500 every 3 weeks. Associations of 13 previously reported single nucleotide polymorphisms (SNPs) with the most frequent toxicities: anemia (AN), febrile neutropenia (FN) and peripheral neuropathy (PNP) were analyzed using logistic regression models. In this independent replication, we could replicate an association between 2 out of 13 SNPs and chemotherapy toxicities. These results warrant further validation in order to enable tailored treatment for breast cancer patients."	"Diagnostic outcomes of exome sequencing in patients with syndromic or non-syndromic hearing loss. Hereditary hearing loss (HL) is a common sensory disorder, with an incidence of 1-2 per 1000 newborns, and has a genetic etiology in over 50% of cases. It occurs either as part of a syndrome or in isolation and is genetically very heterogeneous which poses a challenge for clinical and molecular diagnosis. We used exome sequencing to seek a genetic cause in a group of 56 subjects (49 probands) with HL: 32 with non-syndromic non-GJB2 HL and 17 with syndromic HL. Following clinical examination and clinical exome sequencing, an etiological diagnosis was established in 15 probands (15/49; 30%); eight (8/17;47%) from the syndromic group and seven (7/32; 21%) from the non-syndromic non-GJB2 subgroup. Fourteen different (half of them novel) non-GJB2 variants causing HL were found in 10 genes (CHD7, HDAC8, MITF, NEFL, OTOF, SF3B4, SLC26A4, TECTA, TMPRSS3, USH2A) among 13 probands, confirming the genetic heterogeneity of hereditary HL. Different genetic causes for HL were found in a single family while three probands with apparent syndromic HL were found to have HL as a separate clinical feature, distinct from the complex phenotype. Clinical exome sequencing proved to be an effective tool used to comprehensively address the genetic heterogeneity of HL, to detect clinically unrecognized HL syndromes, and to decipher complex phenotypes in which HL is a separate feature and not part of a syndrome."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"Prevalence of TECTA mutation in patients with mid-frequency sensorineural hearing loss. To date, 102 genes have been reported as responsible for non-syndromic hearing loss, some of which are associated with specific audiogram features. Four genes have been reported as causative for mid-frequency sensorineural hearing loss (MFSNHL), among which TECTA is the most frequently reported; however, the prevalence of TECTA mutations is unknown. To elucidate the prevalence of TECTA mutation in MFSNHL and clarify genotype-phenotype correlations, we analyzed the genetic and clinical features of patients with MFSNHL. Subjects with bilateral non-syndromic hearing loss were prescreened for GJB2 and m.1555A &gt; G and m.3243A &gt; G mitochondrial DNA mutations, and patients with inner ear malformations were excluded. We selected MFSNHL patients whose audiograms met the U-shaped criterion proposed by the GENDEAF study group, along with those with shallow U-shaped audiograms, for TECTA analysis. All TECTA exons were analyzed by Sanger sequencing. Novel missense variants were classified as possibly pathogenic, non-pathogenic, and variants of uncertain significance, based on genetic data. To evaluate novel possibly pathogenic variants, we predicted changes in protein structure by molecular modeling. Pathogenic and possibly pathogenic variants of TECTA were found in 4 (6.0%) of 67 patients with MFSNHL. In patients with U-shaped audiograms, none (0%) of 21 had pathogenic or possibly pathogenic variants. In patients with shallow U-shaped audiograms, four (8.7%) of 46 had pathogenic or possibly pathogenic variants. Two novel possibly pathogenic variants were identified and two previously reported mutations were considered as variant of unknown significance. The clinical features of patients with pathogenic and possibly pathogenic variants were consistent with those in previous studies. Pathogenic or possibly pathogenic variants were identified in 3 of 23 families (13.0%) which have the family histories compatible with autosomal dominant and 1 of 44 families (2.3%) which have the family histories compatible with sporadic or autosomal recessive. TECTA mutations were identified in 6.0% of MFSNHL. These mutations were more frequent in patients with shallow U-shaped audiograms than those with U-shaped audiograms, and in families which have the family histories compatible with autosomal dominant than those with the family histories compatible with sporadic or autosomal recessive."	"A tectorin-based matrix and planar cell polarity genes are required for normal collagen-fibril orientation in the developing tectorial membrane. The tectorial membrane is an extracellular structure of the cochlea. It develops on the surface of the auditory epithelium and contains collagen fibrils embedded in a tectorin-based matrix. The collagen fibrils are oriented radially with an apically directed slant - a feature considered crucial for hearing. To determine how this pattern is generated, collagen-fibril formation was examined in mice lacking a tectorin-based matrix, epithelial cilia or the planar cell polarity genes Vangl2 and Ptk7 In wild-type mice, collagen-fibril bundles appear within a tectorin-based matrix at E15.5 and, as fibril number rapidly increases, become co-aligned and correctly oriented. Epithelial width measurements and data from Kif3a<sup>cKO</sup> mice suggest, respectively, that radial stretch and cilia play little, if any, role in determining normal collagen-fibril orientation; however, evidence from tectorin-knockout mice indicates that confinement is important. PRICKLE2 distribution reveals the planar cell polarity axis in the underlying epithelium is organised along the length of the cochlea and, in mice in which this polarity is disrupted, the apically directed collagen offset is no longer observed. These results highlight the importance of the tectorin-based matrix and epithelial signals for precise collagen organisation in the tectorial membrane."	"Gross brain morphology of the armoured catfish Rineloricaria heteroptera, Isbrücker and Nijssen (1976), (Siluriformes: Loricariidae: Loricariinae): A descriptive and quantitative approach. The gross morphology of the brain of Rineloricaria heteroptera and its relation to the sensory/behavioural ecology of the species is described and discussed. The sexual and ontogenetic intraspecific variation in the whole brain length and mass, as well as within/between the eight different brain subdivisions volumes, is also examined and discussed. Negative allometry for the whole brain length/mass and relative growth of the telencephalon and optic tecta was observed. Positive allometry was observed for the relative growth of the olfactory bulbs and medulla oblongata. Univariate and multivariate statistical analyses did not reveal significant differences in the brain subdivision growth rates among sexes and/or developmental stages, except for the optic tectum and some portions of the medulla oblongata, with juveniles and males showing more developed optic tecta and medullary subdivisions, respectively. The growth rates for each brain subdivision were relatively constant, and the slopes of the growth equations were almost parallel, except for those of the olfactory bulbs and medulla oblongata subdivisions, suggesting some degree of tachyauxesis of subdivisions against the entire brain. The corpus cerebelli was the more voluminous brain subdivision in most specimens (principally adults), followed by the optic tectum (the more voluminous subdivision in juveniles), hypothalamus, and telencephalon, in that order. Differences in the number of lamellae and relative size of the olfactory organ were also detected among developmental stages, which were more numerous and larger in adults. Based on these results, it is possible to infer an ontogenetic shift in the habitat/resource use and behaviour of R. heteroptera. Vision, primarily routed through the optic tectum, could be fundamental in early stages, whereas in adults, olfaction and taste, primarily routed through the olfactory bulbs and medulla oblongata, play more important roles."	"Sexual selection impacts brain anatomy in frogs and toads. Natural selection is a major force in the evolution of vertebrate brain size, but the role of sexual selection in brain size evolution remains enigmatic. At least two opposing schools of thought predict a relationship between sexual selection and brain size. Sexual selection should facilitate the evolution of larger brains because better cognitive abilities may aid the competition for mates. However, it may also restrict brain size evolution due to energetic trade-offs between brain tissue and sexually selected traits. Here, we examined the patterns of selection on brain size and brain anatomy in male anurans (frogs and toads), a group where the strength of sexual selection differs markedly among species, using a phylogenetically controlled generalized least-squared (PGLS) regression analyses. The analysis revealed that in 43 Chinese anuran species, neither mating system, nor type of courtship, or testes mass was significantly associated with relative brain size. While none of those factors related to the relative size of olfactory nerves, optic tecta, telencephalon, and cerebellum, the olfactory bulbs were relatively larger in monogamous species and those using calls during courtship. Our findings support the mosaic model of brain evolution and suggest that while the investigated aspects of sexual selection do not seem to play a prominent role in the evolution of brain size of anurans, they do impact their brain anatomy."	"The Application of Next-Generation Sequencing for Mutation Detection in Autosomal-Dominant Hereditary Hearing Impairment. Identification of the causative mutation using next-generation sequencing in autosomal-dominant hereditary hearing impairment, as mutation analysis in hereditary hearing impairment by classic genetic methods, is hindered by the high heterogeneity of the disease. Two Swiss families with autosomal-dominant hereditary hearing impairment. Amplified DNA libraries for next-generation sequencing were constructed from extracted genomic DNA, derived from peripheral blood, and enriched by a custom-made sequence capture library. Validated, pooled libraries were sequenced on an Illumina MiSeq instrument, 300 cycles and paired-end sequencing. Technical data analysis was performed with SeqMonk, variant analysis with GeneTalk or VariantStudio. The detection of mutations in genes related to hearing loss by next-generation sequencing was subsequently confirmed using specific polymerase-chain-reaction and Sanger sequencing. Mutation detection in hearing-loss-related genes. The first family harbored the mutation c.5383+5delGTGA in the TECTA-gene. In the second family, a novel mutation c.2614-2625delCATGGCGCCGTG in the WFS1-gene and a second mutation TCOF1-c.1028G&gt;A were identified. Next-generation sequencing successfully identified the causative mutation in families with autosomal-dominant hereditary hearing impairment. The results helped to clarify the pathogenic role of a known mutation and led to the detection of a novel one. NGS represents a feasible approach with great potential future in the diagnostics of hereditary hearing impairment, even in smaller labs."	"A novel TECTA mutation causes ARNSHL. Autosomal recessive nonsyndromic hearing loss (ARNSHL) is a genetically heterogeneous sensorineural disorder. Alpha-tectorin, which is encoded by the TECTA gene, is a non-collagenous component of the tectorial membrane in the inner ear defect of which leads to moderate to severe hearing loss (HL). 25 unrelated Iranian multiplex ARNSHL families, negative for GJB2 mutations, were recruited in this study. Clinical inspections including audiometric and otologic examinations ruled out syndromic forms. Genetic linkage analysis was performed using six short tandem repeat markers closely linked to DFNB21. Haplotype and LOD score analysis were used to confirm possible linkage. All coding exons of TECTA were subject to DNA sequencing in the linked family. A novel homozygous variant (c.734G &gt; A) was found in exon 5 of the TECTA gene in one family leading to a nonsense mutation (p.W245×). It co-segregated with HL in the family. This variant was not detected in 50 controls. All affected individuals in the family had moderate to severe HL. It full filled the criteria of a pathogenic variant. Our data confirms the phenotype-directed genotyping for DFNB21 deafness against the typical profound HL phenotype seen in the most families segregating ARNSHL. We recommend mutation screening of TECTA in ARNSHL families segregating moderate to severe HL phenotype."	"Targeted Next-Generation Sequencing Successfully Detects Causative Genes in Chinese Patients with Hereditary Hearing Loss. We attempted to identify the genetic epidemiology of hereditary hearing loss among the Chinese Han population using next-generation sequencing (NGS). The entire length of the genes GJB2, SLC26A4, and GJB3, as well as exons of 57 additional candidate genes were sequenced from 116 individuals suffering from hearing loss. Thirty potentially causative mutations from these 60 genes were identified as the likely etiologies of hearing loss in 67 of the cases. In our study, SLC26A4 and GJB2 were the most frequently affected genes among the Chinese Han population with hearing loss. Collectively, they account for 52.8% of the cases, followed by MTRNR1, PCDH15, and TECTA. These data also illustrate that NGS can be used to identify rare alleles responsible for hereditary hearing loss: 22 of the 30 (73.3%) genes identified with mutations are rarely mutated in hereditary hearing loss and only account for 21.5% (42/195) of the total mutation frequency, explaining no more than 2% for each gene. These rarely mutated genes would be missed by conventional diagnostic sequencing approaches. NGS can be used effectively to identify both the common and rare genes causing hereditary hearing loss."	"Experience-dependent plasticity of excitatory and inhibitory intertectal inputs in Xenopus tadpoles. Communication between optic tecta/superior colliculi is thought to be required for sensorimotor behaviors by comparing inputs across the midline, however the development of and the role of visual experience in the function and plasticity of intertectal connections are unclear. We combined neuronal tracing, in vivo time-lapse imaging, and electrophysiology to characterize the structural and functional development of intertectal axons and synapses in Xenopus tadpole optic tectum. We find that intertectal connections are established early during optic tectal circuit development. We determined the neurotransmitter identity of intertectal neurons using both rabies virus-mediated tracing combined with post-hoc immunohistochemistry, and electrophysiology. Excitatory and inhibitory intertectal neuronal somata are similarly distributed throughout the tectum. Excitatory and inhibitory intertectal axons are structurally similar and elaborate broadly in the contralateral tectum. We demonstrate that intertectal and retinotectal axons converge onto tectal neurons by recording postsynaptic currents after stimulating intertectal and retinotectal inputs. Cutting the intertectal commissure removes synaptic responses to contralateral tectal stimulation. In vivo time-lapse imaging demonstrated that visual experience drives plasticity in intertectal bouton size and dynamics. Finally, visual experience coordinately drives the maturation of excitatory and inhibitory intertectal inputs by increasing AMPA- and GABA-receptor mediated currents, comparable to experience-dependent maturation of retinotectal inputs. These data indicate that visual experience regulates plasticity of excitatory and inhibitory intertectal inputs, maintaining the excitatory: inhibitory ratio of intertectal input. These studies place intertectal inputs as key players in tectal circuit development and suggest that they may play a role in sensory information processing critical to sensorimotor behaviors."	"Two-Dimensional Cochlear Micromechanics Measured In Vivo Demonstrate Radial Tuning within the Mouse Organ of Corti. The exquisite sensitivity and frequency discrimination of mammalian hearing underlie the ability to understand complex speech in noise. This requires force generation by cochlear outer hair cells (OHCs) to amplify the basilar membrane traveling wave; however, it is unclear how amplification is achieved with sharp frequency tuning. Here we investigated the origin of tuning by measuring sound-induced 2-D vibrations within the mouse organ of Corti in vivo Our goal was to determine the transfer function relating the radial shear between the structures that deflect the OHC bundle, the tectorial membrane and reticular lamina, to the transverse motion of the basilar membrane. We found that, after normalizing their responses to the vibration of the basilar membrane, the radial vibrations of the tectorial membrane and reticular lamina were tuned. The radial tuning peaked at a higher frequency than transverse basilar membrane tuning in the passive, postmortem condition. The radial tuning was similar in dead mice, indicating that this reflected passive, not active, mechanics. These findings were exaggerated in Tecta(C1509G/C1509G) mice, where the tectorial membrane is detached from OHC stereocilia, arguing that the tuning of radial vibrations within the hair cell epithelium is distinct from tectorial membrane tuning. Together, these results reveal a passive, frequency-dependent contribution to cochlear filtering that is independent of basilar membrane filtering. These data argue that passive mechanics within the organ of Corti sharpen frequency selectivity by defining which OHCs enhance the vibration of the basilar membrane, thereby tuning the gain of cochlear amplification. Outer hair cells amplify the traveling wave within the mammalian cochlea. The resultant gain and frequency sharpening are necessary for speech discrimination, particularly in the presence of background noise. Here we measured the 2-D motion of the organ of Corti in mice and found that the structures that stimulate the outer hair cell stereocilia, the tectorial membrane and reticular lamina, were sharply tuned in the radial direction. Radial tuning was similar in dead mice and in mice lacking a tectorial membrane. This suggests that radial tuning comes from passive mechanics within the hair cell epithelium, and that these mechanics, at least in part, may tune the gain of cochlear amplification."	"A novel biallelic splice site mutation of TECTA causes moderate to severe hearing impairment in an Algerian family. Congenital deafness is certainly one of the most common monogenic diseases in humans, but it is also one of the most genetically heterogeneous, which makes molecular diagnosis challenging in most cases. Whole-exome sequencing in two out of three Algerian siblings affected by recessively-inherited, moderate to severe sensorineural deafness allowed us to identify a novel splice donor site mutation (c.5272+1G &gt; A) in the gene encoding α-tectorin, a major component of the cochlear tectorial membrane. The mutation was present at the homozygous state in the three affected siblings, and at the heterozygous state in their unaffected, consanguineous parents. To our knowledge, this is the first reported TECTA mutation leading to the DFNB21 form of hearing impairment among Maghrebian individuals suffering from congenital hearing impairment, which further illustrates the diversity of the genes involved in congenital deafness in the Maghreb. "	"Expression of Serotonin2C Receptors in Pyramidal and GABAergic Neurons of Rat Prefrontal Cortex: A Comparison with Striatum. The prefrontal cortex (PFC) is enriched in several serotonin receptors, including 5-HT1A-R, 5-HT2A-R, and 5-HT3-R. These receptors modulate PFC activity due to their expression in large neuronal populations (5-HT1A-R, 5-HT2A-R) or in selected GABAergic populations (5-HT3-R). They are also relevant for antidepressant and antipsychotic drug action. Less is known about the localization of 5-HT2C-R, for which atypical antipsychotics show high affinity. Here, we report on the cellular distribution of 5-HT2C-R in rat PFC and striatum, using double in situ hybridization histochemistry. In PFC, 5-HT2C-R are expressed in pyramidal (VGLUT1-positive) and GABAergic (GAD-positive) neurons, including parvalbumin-positive neurons. There is a marked dorso-ventral gradient in the proportion of VGLUT1-positive cells expressing 5-HT2C-R (9% in the cingulate cortex, 61% in the tenia tecta and 66% in the piriform cortex), less marked for GABAergic neurons (13-27%). There is also a laminar gradient, with more cells expressing 5-HT2C-R in deep (V-VI) than in intermediate (II-III) layers. In common with 5-HT3-R, layer I GABAergic cells express 5-HT2C-R. The proportion of 5-HT2C-R-expressing striatal neurons was 23% (dorsolateral caudate-putamen), 37% (ventromedial caudate-putamen), 53% (nucleus accumbens-core), and 49% (nucleus accumbens-shell). These results help to better understand the serotonergic modulation of PFC-based networks, including basal ganglia circuits, and atypical antipsychotic drug action."	"Optic nerve injury upregulates retinoic acid signaling in the adult frog visual system. Retinoic acid (RA) is important during development, in neuronal plasticity, and also in peripheral nervous system regeneration. Here we use the frog visual system as a model to investigate the changes in RA signaling that take place after axonal injury to the central nervous system. Immunocytochemistry was used to localize different components of RA signaling within sections of the retina and optic tectum, namely, the synthetic enzyme retinaldehyde dehydrogenase (RALDH), the RA binding proteins CRABPI and II, the retinoic acid receptors RARα, β and γ, and finally the catabolic enzyme CYP26A1. The levels of these proteins were quantified in extracts of retina and tectum using Western blotting. Animals were studied at 1 week, 3 weeks and 6 weeks after optic nerve transection. At the latter time point the RGC axons were re-entering the optic tectum. All the components of RA signaling were present at low to moderate levels in retinas and tecta of control, unoperated animals. In retina, soon after optic nerve injury there was a large increase in RALDH, some increase in the CRABPs, and a large increase in RGC RARβ and (expression. These increases continued as the RGC axons were regenerating, with the addition of later RARα expression at 6 weeks. At no stage did CYP26A1 expression significantly change. In the tectum the levels of RALDH increased after axotomy and during regrowth of axons (3 weeks), then decreased at 6 weeks, at which time the levels of CYP26A1 increased. Axotomy did not cause an immediate increase in tectal RAR levels but RARα and RARβ increased after 3 weeks and RARγ only after 6 weeks. These results are consistent with RA signaling playing an important role in the survival and regeneration of frog RGCs."	"Research progress in pathogenic genes of hereditary non-syndromic mid-frequency deafness. Hearing impairment is considered as the most prevalent impairment worldwide. Almost 600 million people in the world suffer from mild or moderate hearing impairment, an estimated 10% of the human population. Genetic factors play an important role in the pathogenesis of this disorder. Hereditary hearing loss is divided into syndromic hearing loss (associated with other anomalies) and non-syndromic hearing loss (not associated with other anomalies). Approximately 80% of genetic deafness is non-syndromic. On the basis of the frequency of hearing loss, hereditary non-syndromic hearing loss can be divided into high-, mid-, low-, and total-frequency hearing loss. An audiometric finding of mid-frequency sensorineural hearing loss, or a &quot;bowl-shaped&quot; audiogram, is uncommon. Up to now, merely 7 loci have been linked to mid-frequency hearing loss. Only four genetic midfrequency deafness genes, namely, DFNA10 (EYA4), DFNA8/12 (TECTA), DFNA13 (COL11A2), DFNA44 (CCDC50), have been reported to date. This review summarizes the research progress of the four genes to draw attention to mid-frequency deafness genes. "	"A GABAergic tecto-tegmento-tectal pathway in pigeons. Previous studies have demonstrated that the optic tecta of the left and right brain halves reciprocally inhibit each other in birds. In mammals, the superior colliculus receives inhibitory γ-aminobutyric acid (GABA)ergic input from the basal ganglia via both the ipsilateral and the contralateral substantia nigra pars reticulata (SNr). This contralateral SNr projection is important in intertectal inhibition. Because the basal ganglia are evolutionarily conserved, the tectal projections of the SNr may show a similar pattern in birds. Therefore, the SNr could be a relay station in an indirect tecto-tectal pathway constituting the neuronal substrate for the tecto-tectal inhibition. To test this hypothesis, we performed bilateral anterograde and retrograde tectal tracing combined with GABA immunohistochemistry in pigeons. Suprisingly, the SNr has only ipsilateral projections to the optic tectum, and these are non-GABAergic. Inhibitory GABAergic input to the contralateral optic tectum arises instead from a nearby tegmental region that receives input from the ipsilateral optic tectum. Thus, a disynaptic pathway exists that possibly constitutes the anatomical substrate for the inhibitory tecto-tectal interaction. This pathway likely plays an important role in attentional switches between the laterally placed eyes of birds. J. Comp. Neurol. 524:2886-2913, 2016. © 2016 Wiley Periodicals, Inc."	"A structured interdomain linker directs self-polymerization of human uromodulin. Uromodulin (UMOD)/Tamm-Horsfall protein, the most abundant human urinary protein, plays a key role in chronic kidney diseases and is a promising therapeutic target for hypertension. Via its bipartite zona pellucida module (ZP-N/ZP-C), UMOD forms extracellular filaments that regulate kidney electrolyte balance and innate immunity, as well as protect against renal stones. Moreover, salt-dependent aggregation of UMOD filaments in the urine generates a soluble molecular net that captures uropathogenic bacteria and facilitates their clearance. Despite the functional importance of its homopolymers, no structural information is available on UMOD and how it self-assembles into filaments. Here, we report the crystal structures of polymerization regions of human UMOD and mouse ZP2, an essential sperm receptor protein that is structurally related to UMOD but forms heteropolymers. The structure of UMOD reveals that an extensive hydrophobic interface mediates ZP-N domain homodimerization. This arrangement is required for filament formation and is directed by an ordered ZP-N/ZP-C linker that is not observed in ZP2 but is conserved in the sequence of deafness/Crohn's disease-associated homopolymeric glycoproteins α-tectorin (TECTA) and glycoprotein 2 (GP2). Our data provide an example of how interdomain linker plasticity can modulate the function of structurally similar multidomain proteins. Moreover, the architecture of UMOD rationalizes numerous pathogenic mutations in both UMOD and TECTA genes. "	"Tectorins crosslink type II collagen fibrils and connect the tectorial membrane to the spiral limbus. All inner ear organs possess extracellular matrix appendices over the sensory epithelia that are crucial for their proper function. The tectorial membrane (TM) is a gelatinous acellular membrane located above the hearing sensory epithelium and is composed mostly of type II collagen, and α and β tectorins. TM molecules self-assemble in the endolymph fluid environment, interacting medially with the spiral limbus and distally with the outer hair cell stereocilia. Here, we used immunogold labeling in freeze-substituted mouse cochleae to assess the fine localization of both tectorins in distinct TM regions. We observed that the TM adheres to the spiral limbus through a dense thin matrix enriched in α- and β-tectorin, both likely bound to the membranes of interdental cells. Freeze-etching images revealed that type II collagen fibrils were crosslinked by short thin filaments (4±1.5nm, width), resembling another collagen type protein, or chains of globular elements (15±3.2nm, diameter). Gold-particles for both tectorins also localized adjacent to the type II collagen fibrils, suggesting that these globules might be composed essentially of α- and β-tectorins. Finally, the presence of gold-particles at the TM lower side suggests that the outer hair cell stereocilia membrane has a molecular partner to tectorins, probably stereocilin, allowing the physical connection between the TM and the organ of Corti. "	"Experimental evidence for sex-specific plasticity in adult brain. Plasticity in brain size and the size of different brain regions during early ontogeny is known from many vertebrate taxa, but less is known about plasticity in the brains of adults. In contrast to mammals and birds, most parts of a fish's brain continue to undergo neurogenesis throughout adulthood, making lifelong plasticity in brain size possible. We tested whether maturing adult three-spined sticklebacks (Gasterosteus aculeatus) reared in a stimulus-poor environment exhibited brain plasticity in response to environmental enrichment, and whether these responses were sex-specific, thus altering the degree of sexual size dimorphism in the brain. Relative sizes of total brain and bulbus olfactorius showed sex-specific responses to treatment: males developed larger brains but smaller bulbi olfactorii than females in the enriched treatment. Hence, the degree of sexual size dimorphism (SSD) in relative brain size and the relative size of the bulbus olfactorius was found to be environment-dependent. Furthermore, the enriched treatment induced development of smaller tecta optica in both sexes. These results demonstrate that adult fish can alter the size of their brain (or brain regions) in response to environmental stimuli, and these responses can be sex-specific. Hence, the degree of SSD in brain size can be environment-dependent, and our results hint at the possibility of a large plastic component to SSD in stickleback brains. Apart from contributing to our understanding of the processes shaping and explaining variation in brain size and the size of different brain regions in the wild, the results show that provision of structural complexity in captive environments can influence brain development. Assuming that the observed plasticity influences fish behaviour, these findings may also have relevance for fish stocking, both for economical and conservational purposes."	"Evolution of anuran brains: disentangling ecological and phylogenetic sources of variation. Variation in ecological selection pressures has been implicated to explain variation in brain size and architecture in fishes, birds and mammals, but little is known in this respect about amphibians. Likewise, the relative importance of constraint vs. mosaic hypotheses of brain evolution in explaining variation in brain size and architecture remains contentious. Using phylogenetic comparative methods, we studied interspecific variation in brain size and size of different brain parts among 43 Chinese anuran frogs and explored how much of this variation was explainable by variation in ecological factors (viz. habitat type, diet and predation risk). We also evaluated which of the two above-mentioned hypotheses best explains the observed patterns. Although variation in brain size explained on average 80.5% of the variation in size of different brain parts (supporting the constraint hypothesis), none of the three ecological factors were found to explain variation in overall brain size. However, habitat and diet type explained a significant amount of variation in telencephalon size, as well in three composite measures of brain architecture. Likewise, predation risk explained a significant amount of variation in bulbus olfactorius and optic tecta size. Our results show that evolution of anuran brain accommodates features compatible with both constraint (viz. strong allometry among brain parts) and mosaic (viz. independent size changes in response to ecological factors in certain brain parts) models of brain size evolution. "	"Molecular organization and fine structure of the human tectorial membrane: is it replenished? Auditory sensitivity and frequency resolution depend on the physical properties of the basilar membrane in combination with outer hair cell-based amplification in the cochlea. The physiological role of the tectorial membrane (TM) in hair cell transduction has been controversial for decades. New insights into the TM structure and function have been gained from studies of targeted gene disruption. Several missense mutations in genes regulating the human TM structure have been described with phenotypic expressions. Here, we portray the remarkable gradient structure and molecular organization of the human TM. Ultrastructural analysis and confocal immunohistochemistry were performed in freshly fixed human cochleae obtained during surgery. Based on these findings and recent literature, we discuss the role of human TMs in hair cell activation. Moreover, the outcome proposes that the α-tectorin-positive amorphous layer of the human TM is replenished and partly undergoes regeneration during life. "	"Activity-dependent regulation of prestin expression in mouse outer hair cells. Prestin is a membrane protein necessary for outer hair cell (OHC) electromotility and normal hearing. Its regulatory mechanisms are unknown. Several mouse models of hearing loss demonstrate increased prestin, inspiring us to investigate how hearing loss might feedback onto OHCs. To test whether centrally mediated feedback regulates prestin, we developed a novel model of inner hair cell loss. Injection of diphtheria toxin (DT) into adult CBA mice produced significant loss of inner hair cells without affecting OHCs. Thus, DT-injected mice were deaf because they had no afferent auditory input despite OHCs continuing to receive normal auditory mechanical stimulation and having normal function. Patch-clamp experiments demonstrated no change in OHC prestin, indicating that loss of information transfer centrally did not alter prestin expression. To test whether local mechanical feedback regulates prestin, we used Tecta(C1509G) mice, where the tectorial membrane is malformed and only some OHCs are stimulated. OHCs connected to the tectorial membrane had normal prestin levels, whereas OHCs not connected to the tectorial membrane had elevated prestin levels, supporting an activity-dependent model. To test whether the endocochlear potential was necessary for prestin regulation, we studied Tecta(C1509G) mice at different developmental ages. OHCs not connected to the tectorial membrane had lower than normal prestin levels before the onset of the endocochlear potential and higher than normal prestin levels after the onset of the endocochlear potential. Taken together, these data indicate that OHC prestin levels are regulated through local feedback that requires mechanoelectrical transduction currents. This adaptation may serve to compensate for variations in the local mechanical environment. "	"A novel mutation of EYA4 in a large Chinese family with autosomal dominant middle-frequency sensorineural hearing loss by targeted exome sequencing. The middle-frequency sensorineural hearing loss (MFSNHL) is rare among hereditary non-syndromic hearing loss. To date, only three genes are reported to be associated with MFSNHL, including TECTA, EYA4 and COL11A2. In this report, we analyzed and explored the clinical audiological characteristics and the causative gene of a Chinese family named HG-Z087 with non-syndromic autosomal dominant inherited MFSNHL. Clinical audiological characteristics and inheritance pattern of a family were evaluated, and pedigree was drawn based on medical history investigation. Our results showed that the Chinese family was characterized by late onset, progressive, non-sydromic autosomal dominant MFSNHL. Targeted exome sequencing, conducted using DNA samples of an affected member in this family, revealed a novel heterozygous missense mutation c.1643C&gt;G in exon 18 of EYA4, causing amino-acid (aa) substitution Arg for Thr at a conserved position aa-548. The p.T548R mutation related to hearing loss in the selected Chinese family was validated by Sanger sequencing. However, the mutation was absent in control group containing 100 DNA samples from normal Chinese families. In conclusion, we identified the pathogenic gene and found that the novel missense mutation c.1643C&gt;G (p.T548R) in EYA4 might have caused autosomal dominant non-syndromic hearing impairment in the selected Chinese family. "	"Otolith tethering in the zebrafish otic vesicle requires Otogelin and α-Tectorin. Otoliths are biomineralised structures important for balance and hearing in fish. Their counterparts in the mammalian inner ear, otoconia, have a primarily vestibular function. Otoliths and otoconia form over sensory maculae and are attached to the otolithic membrane, a gelatinous extracellular matrix that provides a physical coupling between the otolith and the underlying sensory epithelium. In this study, we have identified two proteins required for otolith tethering in the zebrafish ear, and propose that there are at least two stages to this process: seeding and maintenance. The initial seeding step, in which otolith precursor particles tether directly to the tips of hair cell kinocilia, fails to occur in the einstein (eis) mutant. The gene disrupted in eis is otogelin (otog); mutations in the human OTOG gene have recently been identified as causative for deafness and vestibular dysfunction (DFNB18B). At later larval stages, maintenance of otolith tethering to the saccular macula is dependent on tectorin alpha (tecta) function, which is disrupted in the rolling stones (rst) mutant. α-Tectorin (Tecta) is a major constituent of the tectorial membrane in the mammalian cochlea. Mutations in the human TECTA gene can cause either dominant (DFNA8/12) or recessive (DFNB21) forms of deafness. Our findings indicate that the composition of extracellular otic membranes is highly conserved between mammals and fish, reinforcing the view that the zebrafish is an excellent model system for the study of deafness and vestibular disease. "	"Whole-exome sequencing reveals diverse modes of inheritance in sporadic mild to moderate sensorineural hearing loss in a pediatric population. This study was designed to delineate genetic contributions, if any, to sporadic forms of mild to moderate sensorineural hearing loss (SNHL) not related to GJB2 mutations (DFNB1) in a pediatric population. We recruited 11 non-DFNB1 simplex cases of mild to moderate SNHL in children. We applied whole-exome sequencing to all 11 probands. We used a filtering strategy assuming that de novo variants of known autosomal dominant (AD) deafness genes, biallelic mutations in autosomal recessive (AR) genes, monoallelic mutations in X chromosome genes for males, and digenic inheritance could be associated. Candidate variants first were prioritized with allele frequency in public databases and confirmed by a phase or a segregation test in each family. Additional information from the literature or public databases was used to identify strong candidate variants. Strong candidate variants were detected in 5 of 11 probands (45.4%). A diverse mode of inheritance implicated the sporadic occurrence of the phenotype. AR mutations in OTOGL and SERPINB6 and digenic inheritance involving two deafness genes, GPR98 and PDZ7, were detected. A de novo AD mutation also was detected in TECTA and MYH14. No syndromic feature was detected in individuals with GPR98/PDZ7 or MYH14 variants in our cohort at this moment. Mild to moderate pediatric SNHL, even if sporadic, features a strong genetic etiology and can manifest via diverse modes of inheritance. In addition, a multidisciplinary approach should be used for a correct diagnosis."	"Macromolecular organization and fine structure of the human basilar membrane - RELEVANCE for cochlear implantation. Cochlear micromechanics and frequency tuning depend on the macromolecular organization of the basilar membrane (BM), which is still unclear in man. Novel techniques in cochlear implantation (CI) motivate further analyses of the BM. Normal cochleae from patients undergoing removal of life-threatening petro-clival meningioma and an autopsy specimen from a normal human were used. Laser-confocal microscopy, high resolution scanning (SEM) and transmission electron microscopy (TEM) were carried out in combination. In addition, one human temporal bone was decellularized and investigated by SEM. The human BM consisted in four separate layers: (1) epithelial basement membrane positive for laminin-β2 and collagen IV, (2) BM &quot;proper&quot; composed of radial fibers expressing collagen II and XI, (3) layer of collagen IV and (4) tympanic covering layer (TCL) expressing collagen IV, fibronectin and integrin. BM thickness varied both radially and longitudinally (mean 0.55-1.16 μm). BM was thinnest near the OHC region and laterally. There are several important similarities and differences between the morphology of the BM in humans and animals. Unlike in animals, it does not contain a distinct pars tecta (arcuate) and pectinata. Its width increases and thickness decreases as it travels apically in the cochlea. Findings show that the human BM is thinnest and probably most vibration-sensitive at the outer pillar feet/Deiter cells at the OHCs. The inner pillar and IHCs seem situated on a fairly rigid part of the BM. The gradient design of the BM suggests that its vulnerability increases apical wards when performing hearing preservation CI surgery."	"Modified protein expression in the tectorial membrane of the cochlea reveals roles for the striated sheet matrix. The tectorial membrane (TM) of the mammalian cochlea is a complex extracellular matrix which, in response to acoustic stimulation, displaces the hair bundles of outer hair cells (OHCs), thereby initiating sensory transduction and amplification. Here, using TM segments from the basal, high-frequency region of the cochleae of genetically modified mice (including models of human hereditary deafness) with missing or modified TM proteins, we demonstrate that frequency-dependent stiffening is associated with the striated sheet matrix (SSM). Frequency-dependent stiffening largely disappeared in all three TM mutations studied where the SSM was absent either entirely or at least from the stiffest part of the TM overlying the OHCs. In all three TM mutations, dissipation of energy is decreased at low (&lt;8 kHz) and increased at high (&gt;8 kHz) stimulus frequencies. The SSM is composed of polypeptides carrying fixed charges, and electrostatic interaction between them may account for frequency-dependent stiffness changes in the material properties of the TM. Through comparison with previous in vivo measurements, it is proposed that implementation of frequency-dependent stiffening of the TM in the OHC attachment region facilitates interaction among tones, backward transmission of energy, and amplification in the cochlea. "	"RWDD3 and TECTA variants not linked to paclitaxel induced peripheral neuropathy in North American trial Alliance N08C1. NA"	"Novel TECTA mutations identified in stable sensorineural hearing loss and their clinical implications. TECTA is a causative gene of autosomal dominant (DFNA8/A12) and autosomal recessive (DFNB 21) nonsyndromic sensorineural hearing loss (NSHL). Mutations in TECTA account for 4% of all autosomal dominant NSHL cases in some populations and are thus thought to be one of the major causes of autosomal dominant NSHL. A genotype-phenotype correlation for autosomal dominant mutations in the TECTA gene has been proposed. Two families (SB146 and SB149), which segregated moderate NSHL in an autosomal dominant fashion, were included in this study. We performed targeted resequencing of 134 known deafness genes (TRS-134) and bioinformatics analyses to find causative mutations for NSHL in these 2 families. Through TRS-134, we detected 2 novel mutations, i.e. c.3995G&gt;T (p.C1332F) and c.5618C&gt;T (p.T1873I), in the TECTA gene. These mutations cosegregated with NSHL in the studied families and were not detected in normal controls. The mutations c.3995G&gt;T and c.5618C&gt;T reside in the von Willebrand factor type D3-D4 (vWFD3-D4) interdomain of the zonadhesin (ZA) domain and the zona pellucida (ZP) domain, respectively. p.C1332F is the first mutation detected in the vWFD3-D4 interdomain of the ZA domain. The mutations p.C1332F and p.T1873I were associated with stable high-frequency and mid-frequency hearing loss, respectively. Notably, the cysteine residue mutated to phenylalanine in SB146 was not related to progression of sensorineural hearing loss, which argues against the previous hypothesis. Here we confirm a known genotype-phenotype correlation for the ZP domain and propose a hypothetical genotype-phenotype correlation which relates mutations in vWFD3-D4 to stable high-frequency NSHL in Koreans. This clinical feature makes subjects with the missense mutation in the vWFD3-D4 interdomain of TECTA potentially good candidates for middle ear implantation."	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Regional Fos-expression induced by γ-hydroxybutyrate (GHB): comparison with γ-butyrolactone (GBL) and effects of co-administration of the GABAB antagonist SCH 50911 and putative GHB antagonist NCS-382. γ-Hydroxybutyrate (GHB) has a complex array of neural actions that include effects on its own high-affinity GHB receptor, the release of neuroactive steroids, and agonist actions at GABAA and GABAB receptors. We previously reported partial overlap in the c-Fos expression patterns produced by GHB and the GABAB agonist, baclofen in rats. The present study extends these earlier findings by examining the extent to which GHB Fos expression and behavioral sedation are prevented by (2S)-(+)-5,5-dimethyl-2-morpholineacetic acid (SCH 50911), a GABAB antagonist, and NCS-382, a putative antagonist at the high-affinity GHB receptor. We also compare Fos expression caused by GHB and its precursor γ-butyrolactone (GBL), which is a pro-drug for GHB but lacks the high sodium content of the parent GHB molecule. Both GHB (1,000 mg/kg) and GBL (600 mg/kg) induced rapid sedation in rats that lasted over 90 min and caused similar Fos expression patterns, albeit with GBL causing greater activation of the nucleus accumbens (core and shell) and dentate gyrus (granular layer). Pretreatment with SCH 50911 (100mg/kg) partly reversed the sedative effects of GHB and significantly reduced GHB-induced Fos expression in only four regions: the tenia tecta, lateral habenula, dorsal raphe and laterodorsal tegmental nucleus. NCS-382 (50mg/kg) had no effect on GHB-induced sedation or Fos expression. When given alone, both NCS-382 and SCH 50911 increased Fos expression in the bed nucleus of the stria terminalis, central amygdala, parasubthalamic nucleus and nucleus of the solitary tract. SCH 50911 alone affected the Islands of Calleja and the medial, central and paraventricular thalamic nuclei. Overall, this study shows a surprising lack of reversal of GHB-induced Fos expression by two relevant antagonists, both of which have marked intrinsic actions. This may reflect the limited doses tested but also suggests that GHB Fos expression reflects mechanisms independent of GHB and GABAB receptors."	"Loss of the tectorial membrane protein CEACAM16 enhances spontaneous, stimulus-frequency, and transiently evoked otoacoustic emissions. α-Tectorin (TECTA), β-tectorin (TECTB), and carcinoembryonic antigen-related cell adhesion molecule 16 (CEACAM) are secreted glycoproteins that are present in the tectorial membrane (TM), an extracellular structure overlying the hearing organ of the inner ear, the organ of Corti. Previous studies have shown that TECTA and TECTB are both required for formation of the striated-sheet matrix within which collagen fibrils of the TM are imbedded and that CEACAM16 interacts with TECTA. To learn more about the structural and functional significance of CEACAM16, we created a Ceacam16-null mutant mouse. In the absence of CEACAM16, TECTB levels are reduced, a clearly defined striated-sheet matrix does not develop, and Hensen's stripe, a prominent feature in the basal two-thirds of the TM in WT mice, is absent. CEACAM16 is also shown to interact with TECTB, indicating that it may stabilize interactions between TECTA and TECTB. Although brain-stem evoked responses and distortion product otoacoustic emissions are, for most frequencies, normal in young mice lacking CEACAM16, stimulus-frequency and transiently evoked emissions are larger. We also observed spontaneous otoacoustic emissions (SOAEs) in 70% of the homozygous mice. This incidence is remarkable considering that &lt;3% of WT controls have SOAEs. The predominance of SOAEs &gt;15 kHz correlates with the loss of Hensen's stripe. Results from mice lacking CEACAM16 are consistent with the idea that the organ of Corti evolved to maximize the gain of the cochlear amplifier while preventing large oscillations. Changes in TM structure appear to influence the balance between energy generation and dissipation such that the system becomes unstable. "	"A rare novel mutation in TECTA causes autosomal dominant nonsyndromic hearing loss in a Mongolian family. The genetic basis of autosomal dominant nonsyndromic hearing loss is complex. Genetic factors are responsible for approximately 50% of cases with congenital hearing loss. However, no previous studies have documented the clinical phenotype and genetic basis of autosomal dominant nonsyndromic hearing loss in Mongolians. In this study, we performed exon capture sequencing of a Mongolian family with hereditary hearing loss and identified a novel mutation in TECTA gene, which encodes α -tectorin, a major component of the inner ear extracellular matrix that contacts the specialized sensory hair cells. The novel G → T missense mutation at nucleotide 6016 results in a substitution of amino acid aspartate at 2006 with tyrosine (Asp2006Tyr) in a highly conserved zona pellucida (ZP) domain of α-tectorin. The mutation is not found in control subjects from the same family with normal hearing and a genotype-phenotype correlation is observed. A novel missense mutation c.6016 G &gt; T (p.Asp2006Tyr) of TECTA gene is a characteristic TECTA-related mutation which causes autosomal dominant nonsyndromic hearing loss. Our result indicated that mutation in TECTA gene is responsible for the hearing loss in this Mongolian family."	"Vibration of the organ of Corti within the cochlear apex in mice. The tonotopic map of the mammalian cochlea is commonly thought to be determined by the passive mechanical properties of the basilar membrane. The other tissues and cells that make up the organ of Corti also have passive mechanical properties; however, their roles are less well understood. In addition, active forces produced by outer hair cells (OHCs) enhance the vibration of the basilar membrane, termed cochlear amplification. Here, we studied how these biomechanical components interact using optical coherence tomography, which permits vibratory measurements within tissue. We measured not only classical basilar membrane tuning curves, but also vibratory responses from the rest of the organ of Corti within the mouse cochlear apex in vivo. As expected, basilar membrane tuning was sharp in live mice and broad in dead mice. Interestingly, the vibratory response of the region lateral to the OHCs, the &quot;lateral compartment,&quot; demonstrated frequency-dependent phase differences relative to the basilar membrane. This was sharply tuned in both live and dead mice. We then measured basilar membrane and lateral compartment vibration in transgenic mice with targeted alterations in cochlear mechanics. Prestin(499/499), Prestin(-/-), and Tecta(C1509G/C1509G) mice demonstrated no cochlear amplification but maintained the lateral compartment phase difference. In contrast, Sfswap(Tg/Tg) mice maintained cochlear amplification but did not demonstrate the lateral compartment phase difference. These data indicate that the organ of Corti has complex micromechanical vibratory characteristics, with passive, yet sharply tuned, vibratory characteristics associated with the supporting cells. These characteristics may tune OHC force generation to produce the sharp frequency selectivity of mammalian hearing. "	"Whole-exome sequencing identifies a novel genotype-phenotype correlation in the entactin domain of the known deafness gene TECTA. Postlingual progressive hearing loss, affecting primarily the high frequencies, is the clinical finding in most cases of autosomal dominant nonsyndromic hearing loss (ADNSHL). The molecular genetic etiology of ADNSHL is extremely heterogeneous. We applied whole-exome sequencing to reveal the genetic etiology of high-frequency hearing loss in a mid-sized Korean family without any prior linkage data. Whole-exome sequencing of four family members (two affected and two unaffected), together with our filtering strategy based on comprehensive bioinformatics analyses, identified 21 potential pathogenic candidates. Sanger validation of an additional five family members excluded 20 variants, leaving only one novel variant, TECTA c.710C&gt;T (p.T237I), as the strongest candidate. This variant resides in the entactin (ENT) domain and co-segregated perfectly with non-progressive high-frequency hearing loss in the family. It was absent among 700 ethnically matched control chromosomes, and the T237 residue is conserved among species, which supports its pathogenicity. Interestingly, this finding contrasted with a previously proposed genotype-phenotype correlation in which variants of the ENT domain of TECTA were associated with mid-frequency hearing loss. Based upon what we observed, we propose a novel &quot;genotype to phenotype&quot; correlation in the ENT domain of TECTA. Our results shed light on another important application of whole-exome sequencing: the establishment of a novel genotype-phenotype in the molecular genetic diagnosis of autosomal dominant hearing loss. "	"Biogeography and phylogenomics of New World Bambusoideae (Poaceae), revisited. • New World Bambusoideae have only recently been studied in a phylogenomic context. Plastome sequences were determined and analyzed from Arundinaria appalachiana, A. tecta, and Olyra latifolia, to refine our knowledge of their evolution and historical biogeography. A correction is noted regarding an error in an earlier report on the biogeography of Cryptochloa• Single-end DNA libraries were prepared and sequenced on the Illumina platform. Complete plastomes were assembled and analyzed with 13 other Poaceae.• Complete sampling in Arundinaria and an additional species of Olyreae gave a more detailed picture of their evolution/historical biogeography. Phylogenomic analyses indicated that the first major divergence in Arundinaria occurred around 2.3 to 3.2 mya and that Arundinaria tecta and A appalachiana diverged from their common ancestor around 0.57 to 0.82 mya. Estimates of the divergence of Olyra latifolia from Cryptochloa strictiflora ranged from 14.6 to 20.7 mya. The age of the stem node of Olyreae ranged from an estimated 26.9 to 38.2 mya.• Estimates of divergences in Arundinaria can be correlated with paleoclimatic events including an early Pliocene warming, subsequent cooling, and North American glaciations. Discriminating between alternate evolutionary/biogeographic scenarios in Olyreae is challenging."	"Role of En2 in the tectal laminar formation of chick embryos. The chick optic tectum consists of 16 laminae. Here, we report contribution of En2 to laminar formation in chick optic tecta. En2 is specifically expressed in laminae g-j of stratum griseum et fibrosum superficiale (SGFS). Misexpression of En2 resulted in disappearance of En2-expressing cells from the superficial layers (laminae a-f of SGFS), where endogenous En2 is not expressed. Misexpression of En2 before postmitotic cells had left the ventricular layer indicated that En2-misexpressing cells stopped at the laminae of endogenous En2 expression and that they did not migrate into the superficial layers. Induction of En2 misexpression using a tetracycline-inducible system after the postmitotic cells had reached superficial layers also resulted in disappearance of En2-expressing cells from the superficial layers. Time-lapse analysis showed that En2-misexpressing cells migrated back from the superficial layers towards the middle layers, where En2 is strongly expressed endogenously. Our results suggest a potential role of En2 in regulating cell migration and positioning in the tectal laminar formation."	"Hereditary hearing loss: a 96 gene targeted sequencing protocol reveals novel alleles in a series of Italian and Qatari patients. Deafness is a really common disorder in humans. It can begin at any age with any degree of severity. Hereditary hearing loss is characterized by a vast genetic heterogeneity with more than 140 loci described in humans but only 65 genes so far identified. Families affected by hearing impairment would have real advantages from an early molecular diagnosis that is of primary relevance in genetic counseling. In this perspective, here we report a family-based approach employing Ion Torrent DNA sequencing technology to analyze coding and UTR regions of 96 genes related to hearing function and loss in a first series of 12 families coming from Italy and Qatar. Using this approach we were able to find the causative gene in 4 out of these 12 families (33%). In particular 5 novel alleles were identified in the following genes LOXHD1, TMPRSS3, TECTA and MYO15A already associated with hearing impairment. Our study confirms the usefulness of a targeted sequencing approach despite larger numbers are required for further validation and for defining a molecular epidemiology picture of hearing loss in these two countries."	"Porosity controls spread of excitation in tectorial membrane traveling waves. Cochlear frequency selectivity plays a key role in our ability to understand speech, and is widely believed to be associated with cochlear amplification. However, genetic studies targeting the tectorial membrane (TM) have demonstrated both sharper and broader tuning with no obvious changes in hair bundle or somatic motility mechanisms. For example, cochlear tuning of Tectb(-/-) mice is significantly sharper than that of Tecta(Y1870C/+) mice, even though TM stiffnesses are similarly reduced relative to wild-type TMs. Here we show that differences in TM viscosity can account for these differences in tuning. In the basal cochlear turn, nanoscale pores of Tecta(Y1870C/+) TMs are significantly larger than those of Tectb(-/-) TMs. The larger pore size reduces shear viscosity (by ∼70%), thereby reducing traveling wave speed and increasing spread of excitation. These results demonstrate the previously unrecognized importance of TM porosity in cochlear and neural tuning."	"A Japanese family showing high-frequency hearing loss with KCNQ4 and TECTA mutations. We describe a Japanese family with high-frequency sensorineural hearing loss (SNHL) harboring a c.211delC mutation in the KCNQ4 gene. Families showing progressive high-frequency SNHL should be investigated for mutations in the KCNQ4 gene. To determine the responsible deafness gene in a Japanese family with dominantly inherited high-frequency SNHL of unknown etiology. We performed hearing tests for five members of the family, and the three affected with hearing loss underwent further audiological and vestibular examinations. Genetic analysis was performed to identify any possible causative mutations, as well as analysis of detailed clinical findings to determine the phenotype. The three affected subjects showed high-frequency SNHL. Extensive audiologic evaluation suggested cochlear involvement and progressive hearing loss. As for bilateral caloric testing, two of the three affected subjects showed hyporeflexia with recurrent vestibular symptoms. We identified the c.211delC mutation in the KCNQ4 gene and the c.2967C&gt;A (p.H989Q) mutation in the TECTA gene. Based on the genotype-phenotype correlation, the c.211delC mutation in the KCNQ4 gene was associated with high-frequency SNHL in this family."	"Despite a lack of otoacoustic emission, word recognition is not seriously influenced in a TECTA DFNA8/12 family. Similar to other zona pellucida mutations in the alpha-tectorin (TECTA) gene, the p.Y1870C alteration in DFNA8/12 causes prelingual, nonsyndromic, autosomal dominant hearing loss. Here we investigated the effect of p.Y1870C on reverse transduction by audiometric studies in the family. Pure tone audiometry, brainstem evoked response audiometry, the Freiburger test for speech understanding and transient evoked and distortion product otoacoustic emissions were assessed in three available affected members bearing p.Y1870C. Pure tone audiometry showed U-shaped curves with moderate to severe degrees of hearing impairment confirmed by brainstem evoked response audiometry. Transient evoked and distortion product otoacoustic emissions were completely absent in all affected family members whereas word recognition scores were up to 95%. Although the missense p.Y1870C TECTA mutation leads to complete failure of the cochlear amplifier in humans, very high speech perception scores can be achieved with appropriate therapy."	"A novel mutation in the TECTA gene in a Chinese family with autosomal dominant nonsyndromic hearing loss. TECTA-related deafness can be inherited as autosomal-dominant nonsyndromic deafness (designated DFNA) or as the autosomal-recessive version. The α-tectorin protein, which is encoded by the TECTA gene, is one of the major components of the tectorial membrane in the inner ear. Using targeted DNA capture and massively parallel sequencing (MPS), we screened 42 genes known to be responsible for human deafness in a Chinese family (Family 3187) in which common deafness mutations had been ruled out as the cause, and identified a novel mutation, c.257-262CCTTTC&gt;GCT (p. Ser86Cys; p. Pro88del) in exon 3 of the TECTA gene in the proband and his extended family. All affected individuals in this family had moderate down-sloping hearing loss across all frequencies. To our knowledge, this is the second TECTA mutation identified in Chinese population. This study demonstrates that targeted genomic capture, MPS, and barcode technology might broaden the availability of genetic testing for individuals with undiagnosed DFNA. "	"Aromatase inhibitor letrozole downregulates steroid receptor coactivator-1 in specific brain regions that primarily related to memory, neuroendocrine and integration. As one of the third generation of aromatase inhibitors, letrozole is a favored drug for the treatment of hormone receptor-positive breast cancer with some adverse effects on the nervous system, but the knowledge is limited and the results are controversial, the mechanism underlying its central action is also unclear. Accumulated evidences have demonstrated that estrogens derived from androgens by aromatase play profound roles in the brain through their receptors, which needs coactivator for the transcription regulation, among which steroid receptor coactivator-1 (SRC-1) has been shown to be multifunctional potentials in the brain, but whether it is regulated by letrozole is currently unknown. In this study, we examined letrozole regulation on SRC-1 expression in adult mice brain using immunohistochemistry. The results showed that letrozole induced dramatic decrease of SRC-1 in the medial septal, hippocampus, medial habenular nucleus, arcuate hypothalamic nucleus and superior colliculus (p&lt;0.01). Significant decrease was detected in the dorsal lateral septal nucleus, bed nucleus of stria terminalis, ventral taenia tecta, dorsomedial and ventromedial hypothalamic nuclei, dorsomedial periaqueductal gray, superior paraolivary nucleus and pontine nucleus (p&lt;0.05). In the hippocampus, levels of estradiol content, androgen receptor, estrogen receptor α and β also decreased significantly after letrozole injection. The above results demonstrated letrozole downregulation of SRC-1 in specific regions that are primarily related to learning and memory, cognition and mood, neuroendocrine as well as information integration, indicating that SRC-1 may be one important downstream central target of letrozole. Furthermore, these potential central adverse effects of letrozole should be taken into serious considerations. "	"Similar phenotypes caused by mutations in OTOG and OTOGL. Recently, OTOG and OTOGL were identified as human deafness genes. Currently, only four families are known to have autosomal recessive hearing loss based on mutations in these genes. Because the two genes code for proteins (otogelin and otogelin-like) that are strikingly similar in structure and localization in the inner ear, this study is focused on characterizing and comparing the hearing loss caused by mutations in these genes. To evaluate this type of hearing, an extensive set of audiometric and vestibular examinations was performed in the 13 patients from four families. All families show a flat to downsloping configuration of the audiogram with mild to moderate sensorineural hearing loss. Speech recognition scores remain good (&gt;90%). Hearing loss is not significantly different in the four families and the psychophysical test results also do not differ among the families. Vestibular examinations show evidence for vestibular hyporeflexia. Because otogelin and otogelin-like are localized in the tectorial membrane, one could expect a cochlear conductive hearing loss, as was previously shown in DFNA13 (COL11A2) and DFNA8/12 (TECTA) patients. Results of psychophysical examinations, however, do not support this. Furthermore, the authors conclude that there are no phenotypic differences between hearing loss based on mutations in OTOG or OTOGL. This phenotype description will facilitate counseling of hearing loss caused by defects in either of these two genes."	"Prestin regulation and function in residual outer hair cells after noise-induced hearing loss. The outer hair cell (OHC) motor protein prestin is necessary for electromotility, which drives cochlear amplification and produces exquisitely sharp frequency tuning. Tecta(C1509G) transgenic mice have hearing loss, and surprisingly have increased OHC prestin levels. We hypothesized, therefore, that prestin up-regulation may represent a generalized response to compensate for a state of hearing loss. In the present study, we sought to determine the effects of noise-induced hearing loss on prestin expression. After noise exposure, we performed cytocochleograms and observed OHC loss only in the basal region of the cochlea. Next, we patch clamped OHCs from the apical turn (9-12 kHz region), where no OHCs were lost, in noise-exposed and age-matched control mice. The non-linear capacitance was significantly higher in noise-exposed mice, consistent with higher functional prestin levels. We then measured prestin protein and mRNA levels in whole-cochlea specimens. Both Western blot and qPCR studies demonstrated increased prestin expression after noise exposure. Finally, we examined the effect of the prestin increase in vivo following noise damage. Immediately after noise exposure, ABR and DPOAE thresholds were elevated by 30-40 dB. While most of the temporary threshold shifts recovered within 3 days, there were additional improvements over the next month. However, DPOAE magnitudes, basilar membrane vibration, and CAP tuning curve measurements from the 9-12 kHz cochlear region demonstrated no differences between noise-exposed mice and control mice. Taken together, these data indicate that prestin is up-regulated by 32-58% in residual OHCs after noise exposure and that the prestin is functional. These findings are consistent with the notion that prestin increases in an attempt to partially compensate for reduced force production because of missing OHCs. However, in regions where there is no OHC loss, the cochlea is able to compensate for the excess prestin in order to maintain stable auditory thresholds and frequency discrimination. "	"Three deaf mice: mouse models for TECTA-based human hereditary deafness reveal domain-specific structural phenotypes in the tectorial membrane. Tecta is a modular, non-collagenous protein of the tectorial membrane (TM), an extracellular matrix of the cochlea essential for normal hearing. Missense mutations in Tecta cause dominant forms of non-syndromic deafness and a genotype-phenotype correlation has been reported in humans, with mutations in different Tecta domains causing mid- or high-frequency hearing impairments that are either stable or progressive. Three mutant mice were created as models for human Tecta mutations; the Tecta(L1820F,G1824D/+) mouse for zona pellucida (ZP) domain mutations causing stable mid-frequency hearing loss in a Belgian family, the Tecta(C1837G/+) mouse for a ZP-domain mutation underlying progressive mid-frequency hearing loss in a Spanish family and the Tecta(C1619S/+) mouse for a zonadhesin-like (ZA) domain mutation responsible for progressive, high-frequency hearing loss in a French family. Mutations in the ZP and ZA domains generate distinctly different changes in the structure of the TM. Auditory brainstem response thresholds in the 8-40 kHz range are elevated by 30-40 dB in the ZP-domain mutants, whilst those in the ZA-domain mutant are elevated by 20-30 dB. The phenotypes are stable and no evidence has been found for a progressive deterioration in TM structure or auditory function. Despite elevated auditory thresholds, the Tecta mutant mice all exhibit an enhanced tendency to have audiogenic seizures in response to white noise stimuli at low sound pressure levels (≤84 dB SPL), revealing a previously unrecognised consequence of Tecta mutations. These results, together with those from previous studies, establish an allelic series for Tecta unequivocally demonstrating an association between genotype and phenotype. "	"Efferent and afferent connections of the olfactory bulb and prepiriform cortex in the pigeon (Columba livia). Although olfaction in birds is known to be involved in a variety of behaviors, there is comparatively little detailed information on the olfactory brain. In the pigeon brain, the olfactory bulb (OB) is known to project to the prepiriform cortex (CPP), piriform cortex (CPi), and dorsolateral corticoid area (CDL), which together are called the olfactory pallium, but centrifugal pathways to the OB have not been fully explored. Fiber connections of CPi and CDL have been reported, but those of other olfactory pallial nuclei remain unknown. The present study examines the fiber connections of OB and CPP in pigeons to provide a more detailed picture of their connections using tract-tracing methods. When anterograde and retrograde tracers were injected in OB, projections to a more extensive olfactory pallium were revealed, including the anterior olfactory nucleus, CPP, densocellular part of the hyperpallium, tenia tecta, hippocampal continuation, CPi, and CDL. OB projected commissural fibers to the contralateral OB but did not receive afferents from the contralateral olfactory pallium. When tracers were injected in CPP, reciprocal ipsilateral connections with OB and nuclei of the olfactory pallium were observed, and CPP projected to the caudolateral nidopallium and the limbic system, including the hippocampal formation, septum, lateral hypothalamic nucleus, and lateral mammillary nucleus. These results show that the connections of OB have a wider distribution throughout the olfactory pallium than previously thought and that CPP provides a centrifugal projection to the OB and acts as a relay station to the limbic system."	"Massively parallel DNA sequencing successfully identifies new causative mutations in deafness genes in patients with cochlear implantation and EAS. Genetic factors, the most common etiology in severe to profound hearing loss, are one of the key determinants of Cochlear Implantation (CI) and Electric Acoustic Stimulation (EAS) outcomes. Satisfactory auditory performance after receiving a CI/EAS in patients with certain deafness gene mutations indicates that genetic testing would be helpful in predicting CI/EAS outcomes and deciding treatment choices. However, because of the extreme genetic heterogeneity of deafness, clinical application of genetic information still entails difficulties. Target exon sequencing using massively parallel DNA sequencing is a new powerful strategy to discover rare causative genes in Mendelian disorders such as deafness. We used massive sequencing of the exons of 58 target candidate genes to analyze 8 (4 early-onset, 4 late-onset) Japanese CI/EAS patients, who did not have mutations in commonly found genes including GJB2, SLC26A4, or mitochondrial 1555A&gt;G or 3243A&gt;G mutations. We successfully identified four rare causative mutations in the MYO15A, TECTA, TMPRSS3, and ACTG1 genes in four patients who showed relatively good auditory performance with CI including EAS, suggesting that genetic testing may be able to predict the performance after implantation. "	"Identification of a Novel TECTA mutation in a Chinese DFNA8/12 family with prelingual progressive sensorineural hearing impairment. Tectorial membrane, an extracellular matrix of the cochlea, plays a crucial role in the transmission of sound to the sensory hair cells. Alpha-tectorin is the most important noncollagenous component of the tectorial membrane and the otolith membrane in the maculae of the vestibular system. Defects in TECTA, the gene encodes alpha-tectorin, are cause of both dominant (DFNA8/12) and recessive (DFNB21) forms of deafness. Here, we report a three-generation Chinese family characterized by prelingual progressive sensorineural hearing impairment. We mapped the disease locus to chromosome 11q23-24 region, overlapping with the DFNA8/12 locus. Sequencing of candidate gene TECTA revealed a heterozygous c.5945C&gt;A substitution in exon 19, causing amino acid substitution of Ala to Asp at a conservative position 1982. The A1982D substitution is consistent with hearing loss in this Chinese family and has not been found in 200 random control chromosomes. To our knowledge, this is the first TECTA mutation identified in Chinese population. Our data provides additional molecular and clinical information for establishing a better genotype-phenotype understanding of DFNA8/12. "	"The improved PCR of the fstA (ferric siderophore receptor) gene differentiates the fish pathogen Aeromonas salmonicida from other Aeromonas species. The members of the genus Aeromonas are autochthonous of aquatic ecosystems and several species have been associated to septicaemia, ulcerative and haemorrhagic diseases in fish, causing significant mortality in both wild and farmed, freshwater and marine fish species. The species Aeromonas salmonicida is generally recognized as the most important fish pathogen responsible for epidemic outbreaks of furunculosis in salmonids, also being able to produce infections in other cultured fish such as turbot, halibut, sea bream or goldfish. New species, i.e. Aeromonas aquariorum, Aeromonas tecta and Aeromonas piscicola, have recently been discovered and isolated from diseased fish. The species A. piscicola and Aeromonas bestiarum are practically impossible to differentiate phenotypically and genetically (when using the 16S rRNA gene) from each other and from A. salmonicida. In the present study, two previously described PCR protocols, based on the fstA and gyrB genes, for the specific detection of A. salmonicida were re-evaluated with the type strains of all Aeromonas species and with a set of A. piscicola and A. bestiarum strains. Contrary to what had been published previously it was demonstrated that the gyrB-PCR is not specific for A. salmonicida because of cross-reactions with other Aeromonas species. However, in agreement with previous results, A. salmonicida was detected on the basis of the fstA-PCR, for which an improved protocol was proposed. "	"Expression of the calcium binding proteins Necab-1,-2 and -3 in the adult mouse hippocampus and dentate gyrus. The family of EF-hand calcium binding proteins is composed of more than 250 members. In search for other neuronal markers, we studied the expression pattern of Necab-1, -2 and -3 in the Ammons horn of adult mice at the gene- and protein levels using in-situ hybridization and immunohistochemistry. The genes for the three Necab's were expressed in specific, non-overlapping areas of the hippocampus. A minority of the Necab-positive interneurons were GABA-ergic, and they virtually never coexpressed one of the classical calcium binding proteins (calretinin, calbindin D-28k and parvalbumin). Necab's are promising new neuronal markers in the brain. "	"Genetic etiology study of the non-syndromic deafness in Chinese Hans by targeted next-generation sequencing. Although over 60 non-syndromic deafness genes have been identified to date, the etiologic contribution of most deafness genes remained elusive. In this study, we addressed this issue by targeted next-generation sequencing of a large cohort of non-syndromic deaf probands. Probands with mutations in commonly screened deafness genes GJB2, SLC26A4 and MT-RNR1 were pre-excluded by Sanger sequencing. The remaining 125 deaf probands proceeded through targeted exon capturing of 79 known deafness genes and Illumina HiSeq2000 sequencing. Bi-allelic mutations in 15 less commonly screened deafness genes were identified in 28 deaf probands, with mutations in MYO15A, GPR98, TMC1, USH2A and PCDH15 being relatively more frequent (≥3 probands each). Dominant mutations in MYO6, TECTA, POU4F3 and COCH were identified in 4 deaf families. A mitochondrial MTTS1 mutation was identified in one maternally inherited deaf family. No pathogenic mutations were identified in three dominant deaf families and two consanguineous families. Mutations in the less commonly screened deafness genes were heterogeneous and contributed to a significant percentage (17.4%) of causes for non-syndromic deafness. Targeted next-generation sequencing provided a comprehensive and efficient diagnosis for known deafness genes. Complementary to linkage analysis or whole-exome sequencing of deaf families, pre-exclusion of known deafness genes by this strategy may facilitate the discovery of novel deafness genes."	"A phylomedicine approach to understanding the evolution of auditory sensory perception and disease in mammals. Hereditary deafness affects 0.1% of individuals globally and is considered as one of the most debilitating diseases of man. Despite recent advances, the molecular basis of normal auditory function is not fully understood and little is known about the contribution of single-nucleotide variations to the disease. Using cross-species comparisons of 11 'deafness' genes (Myo15, Ush1 g, Strc, Tecta, Tectb, Otog, Col11a2, Gjb2, Cldn14, Kcnq4, Pou3f4) across 69 evolutionary and ecologically divergent mammals, we elucidated whether there was evidence for: (i) adaptive evolution acting on these genes across mammals with similar hearing capabilities; and, (ii) regions of long-term evolutionary conservation within which we predict disease-associated mutations should occur. We find evidence of adaptive evolution acting on the eutherian mammals in Myo15, Otog and Tecta. Examination of selection pressures in Tecta and Pou3f4 across a taxonomic sample that included a wide representation of auditory specialists, the bats, did not uncover any evidence for a role in echolocation. We generated 'conservation indices' based on selection estimates at nucleotide sites and found that known disease mutations fall within sites of high evolutionary conservation. We suggest that methods such as this, derived from estimates of evolutionary conservation using phylogenetically divergent taxa, will help to differentiate between deleterious and benign mutations."	"Prenatal smoke exposure: effects on infant auditory system and placental gene expression. Prenatal smoke exposure has been shown to change cochlear echo response amplitudes and auditory brainstem response (ABR) wave latencies in newborns. Since gene expression changes are often synchronized in different tissue types, the goal of the present work was to determine the relationships between prenatal smoke exposure induced changes in hearing responses with changes in placental gene expression. Results showed significant cotinine level elevations in mothers who smoked ≥10cigarettes/day during their pregnancy compared to no detectable cotinine in nonsmoking mothers. Cochlear echo response amplitudes in the 2-8kHz range and ABR wave latencies, specifically wave V and interpeak interval I-V, were also significantly reduced in newborns of smoking mothers. Functional pathway analysis of upregulated placental genes using the Database for Annotation, Visualization and Integrated Discovery (DAVID) online software showed significant enrichment of terms associated with neurodevelopmental processes including glutamatergic and cholinergic systems and a number of wingless type proteins in the top two tiers with corrected enrichment p-values of ≤0.05. Other relevant functional pathways were significant at unadjusted enrichment p-values of 0.001-0.11 and included calcium signaling, neurotransmission/neurological processes and oxidative stress. The neurological process clusters included 7 genes (EML2, OTOR, SLC26A5, TBL1X, TECTA, USH1C and USH1G) known to modulate cochlear outer hair cell motility. We localized proteins encoded by the top two regulated genes, TBL1X and USH1C, using immunohistochemistry to placental stem and anchoring villi associated with active contractile function. These placental genes may mediate active contraction and relaxation in the placental villi, for example, during maternal-fetal perfusion matching, similar to the active lengthening and shortening of the cochlear outer hair cells during sensory transduction. Thus, the functional consequence of their alteration in the cochlea would be reflected as a decline in cochlear echoes as shown in this study. Such parallel changes suggest the potential utility of placental gene expression as a surrogate for evaluating changes in the developing cochlea related to potential aberrant cochlear function in newborns with prenatal smoke exposure. "	"Neuropeptide S facilitates mice olfactory function through activation of cognate receptor-expressing neurons in the olfactory cortex. Neuropeptide S (NPS) is a newly identified neuromodulator located in the brainstem and regulates various biological functions by selectively activating the NPS receptors (NPSR). High level expression of NPSR mRNA in the olfactory cortex suggests that NPS-NPSR system might be involved in the regulation of olfactory function. The present study was undertaken to investigate the effects of intracerebroventricular (i.c.v.) injection of NPS or co-injection of NPSR antagonist on the olfactory behaviors, food intake, and c-Fos expression in olfactory cortex in mice. In addition, dual-immunofluorescence was employed to identify NPS-induced Fos immunereactive (-ir) neurons that also bear NPSR. NPS (0.1-1 nmol) i.c.v. injection significantly reduced the latency to find the buried food, and increased olfactory differentiation of different odors and the total sniffing time spent in olfactory habituation/dishabituation tasks. NPS facilitated olfactory ability most at the dose of 0.5 nmol, which could be blocked by co-injection of 40 nmol NPSR antagonist [D-Val(5)]NPS. NPS administration dose-dependently inhibited food intake in fasted mice. Ex-vivo c-Fos and NPSR immunohistochemistry in the olfactory cortex revealed that, as compared with vehicle-treated mice, NPS markedly enhanced c-Fos expression in the anterior olfactory nucleus (AON), piriform cortex (Pir), ventral tenia tecta (VTT), the anterior cortical amygdaloid nucleus (ACo) and lateral entorhinal cortex (LEnt). The percentage of Fos-ir neurons that also express NPSR were 88.5% and 98.1% in the AON and Pir, respectively. The present findings demonstrated that NPS, via selective activation of the neurons bearing NPSR in the olfactory cortex, facilitates olfactory function in mice."	"Identification of a novel in-frame deletion in KCNQ4 (DFNA2A) and evidence of multiple phenocopies of unknown origin in a family with ADSNHL. Autosomal dominant sensorineural hearing loss (ADSNHL) is extremely genetically heterogeneous, making it difficult to molecularly diagnose. We identified a multiplex (n=28 affected) family from the genetic isolate of Newfoundland, Canada with variable SNHL and used a targeted sequencing approach based on population-specific alleles in WFS1, TMPRSS3 and PCDH15; recurrent mutations in GJB2 and GJB6; and frequently mutated exons of KCNQ4, COCH and TECTA. We identified a novel, in-frame deletion (c.806_808delCCT: p.S269del) in the voltage-gated potassium channel KCNQ4 (DFNA2), which in silico modeling predicts to disrupt multimerization of KCNQ4 subunits. Surprisingly, 10/23 deaf relatives are non-carriers of p.S269del. Further molecular characterization of the DFNA2 locus in deletion carriers ruled out the possibility of a pathogenic mutation other than p.S269del at the DFNA2A/B locus and linkage analysis showed significant linkage to DFNA2 (maximum LOD=3.3). Further support of genetic heterogeneity in family 2071 was revealed by comparisons of audio profiles between p.S269del carriers and non-carriers suggesting additional and as yet unknown etiologies. We discuss the serious implications that genetic heterogeneity, in this case observed within a single family, has on molecular diagnostics and genetic counseling. "	"Triploidy alters brain morphology in pre-smolt Atlantic salmon Salmo salar: possible implications for behaviour. Total brain mass and the volumes of five specific brain regions in diploid and triploid Atlantic salmon Salmo salar pre-smolts were measured using digital images. There were no significant differences (P &gt; 0·05) in total brain mass when corrected for fork length, or the volumes of the optic tecta or hypothalamus when corrected for brain mass, between diploids and triploids. There was a significant effect (P &lt; 0·01) of ploidy on the volume of the olfactory bulb, with it being 9·0% larger in diploids compared with triploids. The cerebellum and telencephalon, however, were significantly larger, 17 and 8% respectively, in triploids compared with diploids. Sex had no significant effect (P &gt; 0·05) on total brain mass or the volumes of any measured brain region. As the olfactory bulbs, cerebellum and telencephalon are implicated in a number of functions, including foraging ability, aggression and spatial cognition, these results may explain some of the behavioural differences previously reported between diploids and triploids."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"Aberrant transcript produced by a splice donor site deletion in the TECTA gene is associated with autosomal dominant deafness in a Brazilian family. We ascertained a Brazilian family with nine individuals affected by autosomal dominant nonsyndromic sensorineural hearing loss. The bilateral hearing loss affected mainly mid-high frequencies, was apparently stable with an early onset. Microsatellites close to the DFNA8/DFNA12 locus, which harbors the TECTA gene, showed significant multipoint lod scores (3.2) close to marker D11S4107. Sequencing of the exons and exon-intron boundaries of the TECTA gene in one affected subject revealed the deletion c.5383+5delGTGA in the 5' end of intron 16, that includes the last two bases of the donor splice site consensus sequence. This mutation segregates with deafness within the family. To date, 33 different TECTA mutations associated with autossomal dominant hearing loss have been described. Among them is the mutation reported herein, first described by Hildebrand et al. (2011) in a UK family. The audioprofiles from the UK and Brazilian families were similar. In order to investigate the transcripts produced by the mutated allele, we performed cDNA analysis of a lymphoblastoid cell line from an affected heterozygote with the c.5383+5delGTGA and a noncarrier from the same family. The analysis allowed us to identify an aberrant transcript with skipping of exon 16, without affecting the reading frame. One of the dominant TECTA mutations already described, a synonymous substitution in exon 16 (c.5331G&lt;A), was also shown to affect splicing, resulting in an aberrant transcript lacking exon 16. Despite the difference in the DNA level, both the synonymous substitution in exon 16 (c.5331G&lt;A) and the mutation described herein affect splicing of exon 16, leading to its skipping. At the protein level they would have the same effect, an in-frame deletion of 37 amino-acids (p.S1758Y/G1759_N1795del) probably leading to an impaired function of the ZP domain. Thus, like the TECTA missense mutations associated with dominant hearing loss, the c.5383+5delGTGA mutation does not have an inactivating effect on the protein."	"Allometric scaling of the optic tectum in cartilaginous fishes. In cartilaginous fishes (Chondrichthyes; sharks, skates and rays (batoids), and holocephalans), the midbrain or mesencephalon can be divided into two parts, the dorsal tectum mesencephali or optic tectum (analogous to the superior colliculus of mammals) and the ventral tegmentum mesencephali. Very little is known about interspecific variation in the relative size and organization of the components of the mesencephalon in these fishes. This study examined the relative development of the optic tectum and the tegmentum in 75 chondrichthyan species representing 32 families. This study also provided a critical assessment of attempts to quantify the size of the optic tectum in these fishes volumetrically using an idealized half-ellipsoid approach (method E), by comparing this method to measurements of the tectum from coronal cross sections (method S). Using species as independent data points and phylogenetically independent contrasts, relationships between the two midbrain structures and both brain and mesencephalon volume were assessed and the relative volume of each brain area (expressed as phylogenetically corrected residuals) was compared among species with different ecological niches (as defined by primary habitat and lifestyle). The relatively largest tecta and tegmenta were found in pelagic coastal/oceanic and oceanic sharks, benthopelagic reef sharks, and benthopelagic coastal sharks. The smallest tecta were found in all benthic sharks and batoids and the majority of bathyal (deep-sea) species. These results were consistent regardless of which method of estimating tectum volume was used. We found a highly significant correlation between optic tectum volume estimates calculated using method E and method S. Taxon-specific variation in the difference between tectum volumes calculated using the two methods appears to reflect variation in both the shape of the optic tectum relative to an idealized half-ellipsoid and the volume of the ventricular cavity. Because the optic tectum is the principal termination site for retinofugal fibers arising from the retinal ganglion cells, the relative size of this brain region has been associated with an increased reliance on vision in other vertebrate groups, including bony fishes. The neuroecological relationships between the relative size of the optic tectum and primary habitat and lifestyle we present here for cartilaginous fishes mirror those established for bony fishes; we speculate that the relative size of the optic tectum and tegmentum similarly reflects the importance of vision and sensory processing in cartilaginous fishes."	"Changes in fibroblast growth factor-2 and FGF receptors in the frog visual system during optic nerve regeneration. We have previously shown that application of fibroblast growth factor-2 (FGF-2) to cut optic nerve axons enhances retinal ganglion cell (RGC) survival in the adult frog visual system. These actions are mediated via activation of its high affinity receptor FGFR1, enhanced BDNF and TrkB expression, increased CREB phosphorylation, and by promoting MAPK and PKA signaling pathways. The role of endogenous FGF-2 in this system is less well understood. In this study, we determine the distribution of FGF-2 and its receptors in normal animals and in animals at different times after optic nerve cut. Immunohistochemistry and Western blot analysis were conducted using specific antibodies against FGF-2 and its receptors in control retinas and optic tecta, and after one, three, and six weeks post nerve injury. FGF-2 was transiently increased in the retina while it was reduced in the optic tectum just one week after optic nerve transection. Axotomy induced a prolonged upregulation of FGFR1 and FGFR3 in both retina and tectum. FGFR4 levels decreased in the retina shortly after axotomy, whereas a significant increase was detected in the optic tectum. FGFR2 distribution was not affected by the optic nerve lesion. Changes in the presence of these proteins after axotomy suggest a potential role during regeneration."	"GWAS-based association between RWDD3 and TECTA variants and paclitaxel induced neuropathy could not be confirmed in Scandinavian ovarian cancer patients. NA"	"A commentary on 'TECTA mutations in Japanese with mid-frequency hearing loss affected by Zona Pellucida domain protein secretion'. NA"	"Audiometric characteristics of two Dutch families with non-ocular Stickler syndrome (COL11A2). To evaluate hearing impairment and cochlear function in non-ocular Stickler syndrome. Multifamily study. Ten patients from two different families with non-ocular Stickler syndrome (Stickler syndrome type 3) were included. Six members of the first family and four members of the second family participated in this study. Otorhinolaryngologic examinations were performed. Pure-tone and speech audiograms were obtained. Longitudinal analysis was performed. Psychophysical measurements, including loudness scaling, gap detection, difference limen for frequency and speech perception in noise were administered to assess cochlear function at a deeper level. Affected individuals in the first family were carriers of a heterozygous splice donor mutation in the COL11A2 gene. Affected individuals in the second family were carriers of a novel heterozygous missense mutation in COL11A2. Both families showed bilateral, non-progressive hearing impairment with childhood onset. The severity of the hearing impairment exhibited inter- and intrafamilial variability and was mostly mild to moderate. The results of the psychophysical measurements were similar to those previously published for DFNA8/12 (TECTA) and DFNA13 (COL11A2) patients and thus consistent with an intra-cochlear conductive hearing impairment. This is in line with the theory that mutations in COL11A2 affect tectorial membrane function. Hearing impairment in non-ocular Stickler syndrome is characterized by non-progressive hearing loss, present since childhood, and mostly mild to moderate in severity. Psychophysical measurements in non-ocular Stickler patients were suggestive of intra-cochlear conductive hearing impairment."	"Expansion, folding, and abnormal lamination of the chick optic tectum after intraventricular injections of FGF2. Comparative research has shown that evolutionary increases in brain region volumes often involve delays in neurogenesis. However, little is known about the influence of such changes on subsequent development. To get at this question, we injected FGF2--which delays cell cycle exit in mammalian neocortex--into the cerebral ventricles of chicks at embryonic day (ED) 4. This manipulation alters the development of the optic tectum dramatically. By ED7, the tectum of FGF2-treated birds is abnormally thin and has a reduced postmitotic layer, consistent with a delay in neurogenesis. FGF2 treatment also increases tectal volume and ventricular surface area, disturbs tectal lamination, and creates small discontinuities in the pia mater overlying the tectum. On ED12, the tectum is still larger in FGF2-treated embryos than in controls. However, lateral portions of the FGF2-treated tectum now exhibit volcano-like laminar disturbances that coincide with holes in the pia, and the caudomedial tectum exhibits prominent folds. To explain these observations, we propose that the tangential expansion of the ventricular surface in FGF2-treated tecta outpaces the expansion of the pial surface, creating abnormal mechanical stresses. Two alternative means of alleviating these stresses are tectal foliation and the formation of pial holes. The latter probably alter signaling gradients required for normal cell migration and may generate abnormal patterns of cerebrospinal fluid flow; both abnormalities would generate disturbances in tectal lamination. Overall, our findings suggest that evolutionary expansion of sheet-like, laminated brain regions requires a concomitant expansion of the pia mater."	"TECTA mutations in Japanese with mid-frequency hearing loss affected by zona pellucida domain protein secretion. TECTA gene encodes α-tectorin, the major component of noncollagenous glycoprotein of the tectorial membrane, and has a role in intracochlear sound transmission. The TECTA mutations are one of the most frequent causes of autosomal dominant (AD) hearing loss and genotype-phenotype correlations are associated with mutations of TECTA in exons according to α-tectorin domains. In this study, we investigated the prevalence of hearing loss caused by TECTA mutations in Japanese AD hearing loss families, and confirmed genotype-phenotype correlation, as well as the intracellular localization of missense mutations in the α-tectorin domain. TECTA mutations were detected in 2.9% (4/139) of our Japanese AD hearing loss families, with the prevalence in moderate hearing loss being 7.7% (4/52), and all patients showed typical genotype-phenotype correlations as previously described. The present in vitro study showed differences of localization patterns between wild type and mutants, and suggested that each missense mutation may lead to a lack of assembly of secretion, and may reduce the incorporation of α-tectorin into the tectorial membrane."	"Loss of mammal-specific tectorial membrane component carcinoembryonic antigen cell adhesion molecule 16 (CEACAM16) leads to hearing impairment at low and high frequencies. The vertebrate-restricted carcinoembryonic antigen gene family evolves extremely rapidly. Among their widely expressed members, the mammal-specific, secreted CEACAM16 is exceptionally well conserved and specifically expressed in the inner ear. To elucidate a potential auditory function, we inactivated murine Ceacam16 by homologous recombination. In young Ceacam16(-/-) mice the hearing threshold for frequencies below 10 kHz and above 22 kHz was raised. This hearing impairment progressed with age. A similar phenotype is observed in hearing-impaired members of Family 1070 with non-syndromic autosomal dominant hearing loss (DFNA4) who carry a missense mutation in CEACAM16. CEACAM16 was found in interdental and Deiters cells and was deposited in the tectorial membrane of the cochlea between postnatal days 12 and 15, when hearing starts in mice. In cochlear sections of Ceacam16(-/-) mice tectorial membranes were significantly more often stretched out as compared with wild-type mice where they were mostly contracted and detached from the outer hair cells. Homotypic cell sorting observed after ectopic cell surface expression of the carboxyl-terminal immunoglobulin variable-like N2 domain of CEACAM16 indicated that CEACAM16 can interact in trans. Furthermore, Western blot analyses of CEACAM16 under reducing and non-reducing conditions demonstrated oligomerization via unpaired cysteines. Taken together, CEACAM16 can probably form higher order structures with other tectorial membrane proteins such as α-tectorin and β-tectorin and influences the physical properties of the tectorial membrane. Evolution of CEACAM16 might have been an important step for the specialization of the mammalian cochlea, allowing hearing over an extended frequency range."	"Etiology of unilateral hearing loss in a national hereditary deafness repository. The aim of this study was to characterize the genetic, audiologic, and epidemiologic characteristics of unilateral hearing loss (HL) in a national hereditary deafness repository. This is a prospective clinical study involving 34 subjects identified in a national hereditary deafness repository. Clinical data and family history of HL were obtained on enrollment. Candidate deafness genes were screened by single-stranded conformation polymorphism, and mutations were confirmed with sequencing. Thirty-four subjects (19 males, 15 females) with unilateral HL were identified, ranging in age from 2 months to 36 years. The mean age at diagnosis was 7 years, and the left ear was affected in 62% of the cases. The racial distribution of our sample was 62% white, 23% African American, and 15% Hispanic. Imaging results were available in 47%, and most (69%) were considered normal. Nineteen percent had enlarged vestibular aqueducts, 2 had ipsilateral Mondini dysplasia, and 1 had a common cavity deformity. Twenty subjects (59%) had a family history of HL, with 26% specifically reporting familial unilateral HL. Mutational screening revealed sequence variants in the GJB2 (connexin 26), GJB3 (connexin 31), TECTA, and COCH genes. Two novel mutations were detected in COCH and TECTA. Sequence variants in known deafness genes were detected in more than one-third of our study population, suggesting that gene/gene or gene/environmental interactions may indeed play a role in the etiology of some cases of unilateral deafness. Further prospective studies including congenital cytomegalovirus screening at birth and molecular screening of deafness genes in children with congenital unilateral HL will be required to establish the etiology of unilateral deafness with certainty."	"Imaging evolutionarily conserved neural networks: preferential activation of the olfactory system by food-related odor. Rodents routinely forge and rely on hippocampal-dependent spatial memory to guide them to sources of caloric rich food in their environment. Has evolution affected the olfactory system and its connections to the hippocampus and limbic cortex, so rodents have an innate sensitivity to energy rich food and their location? To test this notion, we used functional magnetic resonance imaging in awake rats to observe changes in brain activity in response to four odors: benzaldehyde (almond odor), isoamyl acetate (banana odor), methyl benzoate (rosy odor), and limonene (citrus odor). We chose the almond odor because nuts are high in calories and would be expected to convey greater valance as compared to the other odors. Moreover, the standard food chow is devoid of nuts, so laboratory bred rats would not have any previous exposure to this food. Activation maps derived from computational analysis using a 3D segmented rat MRI atlas were dramatically different between odors. Animals exposed to banana, rosy and citrus odors showed modest activation of the primary olfactory system, hippocampus and limbic cortex. However, animals exposed to almond showed a robust increase in brain activity in the primary olfactory system particularly the main olfactory bulb, anterior olfactory nucleus and tenia tecta. The most significant difference in brain activation between odors was observed in the hippocampus and limbic cortex. These findings show that fMRI can be used to identify neural circuits that have an innate sensitivity to environmental stimuli that may help in an animal's survival."	"Temporal expression pattern of Fkbp8 in rodent cochlea. FKBP8 is a multifunctional protein involved in many distinct processes like formation of central nervous system, viral RNA replication and inhibition of apoptosis. Fkbp8 expression was reported in different tissues, various cell lines and malignancies, in the latter displaying changes during carcinogenesis. Loss of Fkbp8 leads to substantial neurodegenerations during regular mouse development, thus hearing onset in mice could also potentially depend on Fkbp8 expression. Since Fkbp8 is crucial for patterning of neuronal function, we studied its expression during maturation of the rodent auditory function. Fkbp8 gene expression in rodent cochlear samples was studied by RT-PCR, qPCR, and western blot. Localization of Fkbp8 transcripts and protein was analyzed by in-situ hybridization and immunohistochemistry. Studies of auditory organ demonstrate that Fkbp8 gene activity is increasing just before hearing onset and gradually decreasing after onset of hearing. Western blot analysis suggests substantial levels of Fkbp8 protein before hearing onset, and slow degradation after onset of hearing. The Fkbp8 mRNA is localized in spiral ganglion of cochlea but its distribution changes over time to the stria vascularis, a finding supported by immunohistochemistry staining. Additionally, in pre-hearing time Fkbp8-specific signal was also observed in the tectorial membrane, whose α- and β-Tectorin components show similar time-dependent expression of mRNA as Fkbp8. These results indicate a temporal shift in expression of Fkbp8 which correlates with cochlear maturation, strongly suggesting a contribution of Fkbp8 to the onset of the rodent hearing processes."	"Jacobsen syndrome due to an unbalanced translocation between 11q23 and 22q11.2 identified at age 40 years. A woman with psychomotor developmental delay, congenital glaucoma, and distinctive facial features, and a short neck was diagnosed with Jacobsen syndrome (JBS) at age 40 years. A previously reported balanced translocation between chromosome 11 and 22 instead showed an unbalanced translocation by a microarray-based comparative hybridization analysis with the final karyotype of 46,XX,der(11)t(11;22)(q23.3;q11.21),del(22)(q11.21) dn. The breakpoint of chromosome 11 was determined to be at TECTA and not near the apolipoprotein gene cluster site or the fragile site (FRA11B), which are commonly seen in patients with t(11;22) and patients with typical 11q deletions, respectively. Although the phenotypic features of the patient, including psychomotor developmental delay, distinctive features, and mild thrombocytopenia, were consistent with JBS, congenital glaucoma, which is an uncommon finding of JBS, was the most prominent condition during her natural history."	"Identification and functional characterization of novel compound heterozygotic mutations in the TECTA gene. Mutations of the TECTA gene, which encodes alpha-tectorin, are associated with both dominant (DFNA8/A12) and recessive (DFNB 21) modes of inherited nonsyndromic sensorineural hearing loss, respectively. Although clinical data and genetic analysis for TECTA gene have been reported from different groups, there is no report that compound heterozygous mutations in the TECTA gene result in nonsyndromic sensorineural hearing loss. Here, we identified a missense mutation (p.C1691F) and a splicing mutation (c.6162+3insT), one in each TECTA allele, in the patient with hearing loss. Also, we demonstrated that the splicing mutation results in the abnormal skipping of an exon, which leads to a truncated protein as determined by exon-trapping analysis. To the best of our knowledge, this is the first report of an in vitro functional study of splice site mutations in the TECTA gene."	"Targeted genomic capture and massively parallel sequencing to identify genes for hereditary hearing loss in Middle Eastern families. Identification of genes responsible for medically important traits is a major challenge in human genetics. Due to the genetic heterogeneity of hearing loss, targeted DNA capture and massively parallel sequencing are ideal tools to address this challenge. Our subjects for genome analysis are Israeli Jewish and Palestinian Arab families with hearing loss that varies in mode of inheritance and severity. A custom 1.46 MB design of cRNA oligonucleotides was constructed containing 246 genes responsible for either human or mouse deafness. Paired-end libraries were prepared from 11 probands and bar-coded multiplexed samples were sequenced to high depth of coverage. Rare single base pair and indel variants were identified by filtering sequence reads against polymorphisms in dbSNP132 and the 1000 Genomes Project. We identified deleterious mutations in CDH23, MYO15A, TECTA, TMC1, and WFS1. Critical mutations of the probands co-segregated with hearing loss. Screening of additional families in a relevant population was performed. TMC1 p.S647P proved to be a founder allele, contributing to 34% of genetic hearing loss in the Moroccan Jewish population. Critical mutations were identified in 6 of the 11 original probands and their families, leading to the identification of causative alleles in 20 additional probands and their families. The integration of genomic analysis into early clinical diagnosis of hearing loss will enable prediction of related phenotypes and enhance rehabilitation. Characterization of the proteins encoded by these genes will enable an understanding of the biological mechanisms involved in hearing loss."	"The mouse olfactory peduncle. The olfactory peduncle, the region connecting the olfactory bulb with the basal forebrain, contains several neural areas that have received relatively little attention. The present work includes studies that provide an overview of the region in the mouse. An analysis of cell soma size in pars principalis (pP) of the anterior olfactory nucleus (AON) revealed considerable differences in tissue organization between mice and rats. An unbiased stereological study of neuron number in the cell-dense regions of pars externa (pE) and pP of the AON of 3-, 12-, and 24-month-old mice indicated that pE has about 16,500 cells in 0.043 mm(3) and pP about 58,300 cells in 0.307 mm(3) . Quantitative Golgi studies of pyramidal neurons in pP suggested that mouse neurons are similar to although smaller than those of the rat. An immunohistochemical analysis demonstrated that all peduncular regions (pE, pP, the dorsal peduncular cortex, ventral tenia tecta, and anterior olfactory tubercle and piriform cortex) have cells that express either calbindin, calretinin, parvalbumin, somatostatin, vasoactive intestinal polypeptide, neuropeptide Y, or cholecystokinin (antigens commonly co-expressed by subspecies of γ-aminobutyric acid [GABA]ergic neurons), although the relative numbers of each cell type differ between zones. Finally, an electron microscopic comparison of the organization of myelinated fibers in lateral olfactory tract in the anterior and posterior peduncle indicated that the region is less orderly in mice than in rats. The results provide a caveat for investigators who generalize data between species, as both similarities and differences between the laboratory mouse and rat were observed."	"Structural and mechanical analysis of tectorial membrane Tecta mutants. The tectorial membrane (TM) is an extracellular matrix of the cochlea whose prominent role in hearing has been demonstrated through mutation studies. The C1509G mutation of the Tecta gene, which encodes for the α-tectorin protein, leads to hearing loss. The heterozygote TM only attaches to the first row of outer hair cells (OHCs), and the homozygote TM does not attach to any OHCs. Here we measured the morphology and mechanical properties of wild-type, heterozygous, and homozygous Tecta TMs. Morphological analyses conducted with second- and third-harmonic imaging, scanning electron microscopy, and immunolabeling revealed marked changes in the collagen architecture and stereocilin-labeling patterns of the mutant TMs. The mechanical properties of the mutant TM were measured by force spectroscopy. Whereas the axial Young's modulus of the low-frequency (apical) region of Tecta mutant TM samples was similar to that of wild-type TMs, it significantly decreased in the basal region to a value approaching that found at the apex. Modeling simulations suggest that a reduced TM Young's modulus is likely to reduce OHC stereociliary deflection. These findings argue that the heterozygote C1509G mutation results in a lack of attachment of the TM to the OHCs, which in turn reduces both the overall number of OHCs that are involved in mechanotransduction and the degree of mechanotransduction exhibited by the OHCs that remain attached to the TM."	"Biophysical mechanisms underlying outer hair cell loss associated with a shortened tectorial membrane. The tectorial membrane (TM) connects to the stereociliary bundles of outer hair cells (OHCs). Humans with an autosomal dominant C1509G mutation in alpha-tectorin, a protein constituent of the TM, are born with a partial hearing loss that worsens over time. The Tecta(C1509/+) transgenic mouse with the same point mutation has partial hearing loss secondary to a shortened TM that only contacts the first row of OHCs. As well, Tecta(C1509G/+) mice have increased expression of the OHC electromotility protein, prestin. We sought to determine whether these changes impact OHC survival. Distortion product otoacoustic emission thresholds in a quiet environment did not change to 6 months of age. However, noise exposure produced acute threshold shifts that fully recovered in Tecta (+/+) mice but only partially recovered in Tecta(C1509G/+) mice. While Tecta(+/+) mice lost OHCs primarily at the base and within all three rows, Tecta(C1509G/+) mice lost most of their OHCs in a more apical region of the cochlea and nearly completely within the first row. In order to estimate the impact of a shorter TM on the forces faced by the stereocilia within the first OHC row, both the wild type and the heterozygous conditions were simulated in a computational model. These analyses predicted that the shear force on the stereocilia is ~50% higher in the heterozygous condition. We then measured electrically induced movements of the reticular lamina in situ and found that while they decreased to the noise floor in prestin null mice, they were increased by 4.58 dB in Tecta(C1509G/+) mice compared to Tecta(+/+) mice. The increased movements were associated with a fourfold increase in OHC death as measured by vital dye staining. Together, these findings indicate that uncoupling the TM from some OHCs leads to partial hearing loss and places the remaining coupled OHCs at higher risk. Both the mechanics of the malformed TM and the increased prestin-related movements of the organ of Corti contribute to this higher risk profile."	"Brain plasticity over the metamorphic boundary: carry-over effect of larval environment on froglet brain development. Brain development shows high plasticity in response to environmental heterogeneity. However, it is unknown how environmental variation during development may affect brain architecture across life history switch points in species with complex life cycles. Previously, we showed that predation and competition affect brain development in common frog (Rana temporaria) tadpoles. Here, we studied whether larval environment had carry-over effects in brains of metamorphs. Tadpoles grown at high density had large optic tecta at metamorphosis, whereas tadpoles grown under predation risk had small diencephala. We found that larval density had a carry-over effect on froglet optic tectum size, whereas the effect of larval predation risk had vanished by metamorphosis. We discuss the possibility that the observed changes may be adaptive, reflecting the needs of an organism in given environmental and developmental contexts."	"DFNA8/12 caused by TECTA mutations is the most identified subtype of nonsyndromic autosomal dominant hearing loss. The prevalence of DFNA8/DFNA12 (DFNA8/12), a type of autosomal dominant nonsyndromic hearing loss (ADNSHL), is unknown as comprehensive population-based genetic screening has not been conducted. We therefore completed unbiased screening for TECTA mutations in a Spanish cohort of 372 probands from ADNSHL families. Three additional families (Spanish, Belgian, and English) known to be linked to DFNA8/12 were also included in the screening. In an additional cohort of 835 American ADNSHL families, we preselected 73 probands for TECTA screening based on audiometric data. In aggregate, we identified 23 TECTA mutations in this process. Remarkably, 20 of these mutations are novel, more than doubling the number of reported TECTA ADNSHL mutations from 13 to 33. Mutations lie in all domains of the α-tectorin protein, including those for the first time identified in the entactin domain, as well as the vWFD1, vWFD2, and vWFD3 repeats, and the D1-D2 and TIL2 connectors. Although the majority are private mutations, four of them-p.Cys1036Tyr, p.Cys1837Gly, p.Thr1866Met, and p.Arg1890Cys-were observed in more than one unrelated family. For two of these mutations founder effects were also confirmed. Our data validate previously observed genotype-phenotype correlations in DFNA8/12 and introduce new correlations. Specifically, mutations in the N-terminal region of α-tectorin (entactin domain, vWFD1, and vWFD2) lead to mid-frequency NSHL, a phenotype previously associated only with mutations in the ZP domain. Collectively, our results indicate that DFNA8/12 hearing loss is a frequent type of ADNSHL."	"Identification of genes concordantly expressed with Atoh1 during inner ear development. The inner ear is composed of a cochlear duct and five vestibular organs in which mechanosensory hair cells play critical roles in receiving and relaying sound and balance signals to the brain. To identify novel genes associated with hair cell differentiation or function, we analyzed an archived gene expression dataset from embryonic mouse inner ear tissues. Since atonal homolog 1a (Atoh1) is a well known factor required for hair cell differentiation, we searched for genes expressed in a similar pattern with Atoh1 during inner ear development. The list from our analysis includes many genes previously reported to be involved in hair cell differentiation such as Myo6, Tecta, Myo7a, Cdh23, Atp6v1b1, and Gfi1. In addition, we identified many other genes that have not been associated with hair cell differentiation, including Tekt2, Spag6, Smpx, Lmod1, Myh7b, Kif9, Ttyh1, Scn11a and Cnga2. We examined expression patterns of some of the newly identified genes using real-time polymerase chain reaction and in situ hybridization. For example, Smpx and Tekt2, which are regulators for cytoskeletal dynamics, were shown specifically expressed in the hair cells, suggesting a possible role in hair cell differentiation or function. Here, by reanalyzing archived genetic profiling data, we identified a list of novel genes possibly involved in hair cell differentiation."	"Dissociations between medial prefrontal cortical subregions in the modulation of learning and action. The medial prefrontal cortex (mPFC) has been implicated in various attentional functions. This experiment examined the involvement of mPFC subregions in the allocation of attention in learning and action as a function of the predictive accuracy of cues. Rats with dorsal (encompassing anterior cingulate, prelimbic, and infralimbic cortices) or ventral (encompassing mainly infralimbic and dorsopeduncular cortices and tenia tecta) mPFC lesions were trained in a multiple-choice discrimination task in which operant nosepoke responses to some visual cues were consistently (100%) reinforced (CRF) with food, whereas responses to other visual cues were partially (50%) reinforced (PRF). In challenge tests designed to assess attention in the control of action, responding was directed more to CRF cues than to PRF cues in sham and dorsal mPFC-lesioned rats, but ventral mPFC-lesioned rats showed similar levels of responding to both CRF and PRF cues. Nevertheless, when given a choice between simultaneously presented CRF and PRF cues in a cue competition test, all groups responded more to CRF cues. In a subsequent Pavlovian overshadowing phase designed to assess attention in the acquisition of new learning, previously trained CRF cues overshadowed conditioning to novel auditory cues more than did PRF cues in dorsal mPFC-lesioned rats, whereas the opposite pattern was observed in sham and ventral mPFC-lesioned rats. These results suggest a dissociation within the mPFC in the use of reinforcement prediction information to allocate attention for new learning and for the control of action."	"Astrocyte precursor response to embryonic brain injury. Penetrating traumatic insult during pregnancy is a leading cause of human fetal demise; in particular, trauma to the brain may lead to devastating long-term cognitive sequelae. Perinatal brain injury involves glial precursors, but the neural mechanisms controlling astrocyte ontogeny after injury remain incompletely understood, partly due to a lack of appropriate markers and animal models. We analyzed astrocyte precursor response to injury at the beginning (E11) and peak (E15) of gliogenesis in an avian tectal model of penetrating embryonic brain trauma, without confounding maternal and sibling effects. At both ages, lateral ventricular dilatation, necrotic foci, periventricular cysts and intraventricular hemorrhages were observed distal to stab wounds two days after a unilateral stab injury to optic tecta. Neuronal (TUBB3) and oligodendrocyte precursor (PLP) markers were down-regulated, even far-removed from the wound site. In contrast, the mature astrocyte marker, GFAP, was up-regulated at the wound site, around necrotic areas and cysts, plus in usual areas of GFAP expression. Increased inflammatory response and apoptotic cell death were also confirmed in the injured tecta. Increased expression of NFIA, SOX9 and GLAST at the wound site and in the ventricular zone (VZ) of the injured tecta indicated an astroglial precursor response. However, cell division increased in the VZ only in early (E11) injury, but not later (E15), indicating that in late injury the astrogliogenesis occurring after acute injury is predominantly due to precursor differentiation rather than precursor proliferation. The inability to replenish the glial precursor pool during the critical period of vulnerability to injury may be an important cause of subsequent developmental abnormalities."	"Effects of dorsal or ventral medial prefrontal cortical lesions on five-choice serial reaction time performance in rats. Lesions of the rat medial prefrontal cortex (mPFC) produce behavioral impairments in the 5-choice serial reaction time (5CSRT) task, a widely used measure of sustained and selective visual attention. This experiment compared the effects of &quot;dorsal&quot; (centered on prelimbic and infralimbic cortices) and &quot;ventral&quot; (centered on dorsal peduncular cortex and tenia tecta) mPFC lesions on performance in a variant of the 5CSRT task. Because in some associative learning theories, the predictive validity of events determines the allocation of attention to them, we also examined the effects of cue validity in this task. Operant nosepoke responses to some briefly illuminated ports were consistently (100%) reinforced (CRF) with food, whereas for other ports, responding was reinforced on only 50% of the trials (partial reinforcement, PRF). Different patterns of impairment emerged depending on lesion location within the mPFC. Dorsal- and sham-lesioned rats responded more to CRF than to PRF cues, but ventral-lesioned rats responded similarly to CRF and PRF cues. Additionally, under some conditions of increased attentional demands, dorsal-lesioned rats failed to respond on many trials, whereas the impairment in ventral-lesioned rats was manifested as an increase in response errors. These results demonstrate separable roles for dorsal and ventral mPFC subregions in controlling attention."	"Carcinoembryonic antigen-related cell adhesion molecule 16 interacts with alpha-tectorin and is mutated in autosomal dominant hearing loss (DFNA4). We report on a secreted protein found in mammalian cochlear outer hair cells (OHC) that is a member of the carcinoembryonic antigen-related cell adhesion molecule (CEACAM) family of adhesion proteins. Ceacam16 mRNA is expressed in OHC, and its protein product localizes to the tips of the tallest stereocilia and the tectorial membrane (TM). This specific localization suggests a role in maintaining the integrity of the TM as well as in the connection between the OHC stereocilia and TM, a linkage essential for mechanical amplification. In agreement with this role, CEACAM16 colocalizes and coimmunoprecipitates with the TM protein α-tectorin. In addition, we show that mutation of CEACAM16 leads to autosomal dominant nonsyndromic deafness (ADNSHL) at the autosomal dominant hearing loss (DFNA4) locus. In aggregate, these data identify CEACAM16 as an α-tectorin-interacting protein that concentrates at the point of attachment of the TM to the stereocilia and, when mutated, results in ADNSHL at the DFNA4 locus."	"Autosomal Recessive Nonsyndromic Hearing Impairment due to a Novel Deletion in the RDX Gene. The RDX gene anchors cytoskeletal actin of stereocilia to hair cell transmembrane and is responsible for autosomal recessive nonsyndromic hearing impairment (ARNSHI) due to DFNB24. A genome scan was performed using DNA samples from a consanguineous Pakistani family with ARNSHI. A significant maximum two-point LOD score of 4.5 (θ = 0) and multipoint LOD score of 5.8 were achieved at marker D11S1998 (chr11 : 117.20 Mb). The region of homozygosity is bounded by markers D11S2000 (105.06 Mb) and D11S4464 (123.13 Mb) and contains the NSHI genes TECTA and RDX. Although no potentially causal variants were identified in the TECTA gene, within the RDX gene a novel deletion c.1076_1079delTTAA (p.Ile359Lysfs∗6) was identified. The RDX deletion segregates with ARNSHI within the family and was not observed in 500 control chromosomes. It is predicted to cause premature truncation of radixin at the α-helical domain and to result in nonfunctional transcripts within the cochlea. RDX isoforms which encode the coiled-coil region of the α-helical domain are deemed necessary for proper function of hair cell stereocilia."	"Tectorial membrane material properties in Tecta(Y)(1870C/+) heterozygous mice. The solid component of the tectorial membrane (TM) is a porous matrix made up of the radial collagen fibers and the striated sheet matrix. The striated sheet matrix is believed to contribute to shear impedance in both the radial and longitudinal directions, but the molecular mechanisms involved have not been determined. A missense mutation in Tecta, a gene that encodes for the α-tectorin protein in the striated sheet matrix, causes a 60-dB threshold shift in mice with relatively little reduction in outer hair cell amplification. Here, we show that this threshold shift is coupled to changes in shear impedance, response to osmotic pressure, and concentration of fixed charge of the TM. In Tecta(Y)(1870C/+) mice, the tectorin content of the TM was reduced, as was the content of glycoconjugates reacting with the lectin wheat germ agglutinin. Charge measurements showed a decrease in fixed charge concentration from -6.4±1.4 mmol/L in wild-types to -2.1±0.7 mmol/L in Tecta(Y)(1870C/+) TMs. TMs from Tecta(Y)(1870C/+) mice showed little volume change in response to osmotic pressure compared to those of wild-type mice. The magnitude of both radial and longitudinal TM shear impedance was reduced by 10±1.6 dB in Tecta(Y)(1870C/+) mice. However, the phase of shear impedance was unchanged. These changes are consistent with an increase in the porosity of the TM and a corresponding decrease of the solid fraction. Mechanisms by which these changes can affect the coupling between outer and inner hair cells are discussed."	"Quantitative assessment of brain volumes in fish: comparison of methodologies. When correlating brain areas with behavioral and environmental characteristics, a variety of techniques are employed. In fishes (elasmobranchs and teleosts), 2 methods, histology and the idealized ellipsoid and/or half-ellipsoid technique, are primarily used to calculate the volume of a brain area and therefore its relationship to social or ecological complexity. In this study on a perciform teleost, we have quantitatively compared brain volumes obtained using the conventional techniques of histology and approximating brain volume to an idealized ellipsoid (or half ellipsoid) and magnetic resonance imaging, an established clinical tool typically used for assessing brain volume in other vertebrates. Our results indicate that, when compared to brain volumes measured using magnetic resonance imaging of brain regions in situ, variations in brain shape and histological artifacts can lead to significant differences in brain volume, especially in the telencephalon and optic tecta. Consequently, in comparative studies of brain volumes, we advise caution when using the histological and/or ellipsoid methods to make correlations between brain area size and environmental, behavioral and social characteristics and, when possible, we propose the use of magnetic resonance imaging."	"How the genetics of deafness illuminates auditory physiology. Although the basic principles underlying the function of the peripheral auditory system have been known for many years, the molecules required for hearing have hitherto remained elusive. Genetic approaches have recently provided unparalleled molecular insight into how the hair bundle, the hair cell's mechanosensory organelle, forms and functions. We discuss how the proteins encoded by the Usher syndrome type 1 genes form molecular complexes required for hair-bundle development and for gating the mechanotransducer channel. We show how mouse models for nonsyndromic forms of deafness involving genes encoding Triobp and stereocilin reveal, respectively, the way stereocilia rootlets contribute to the hair bundle's mechanical properties and how the hair bundle produces suppressive masking, a property that contributes to speech intelligibility. Finally, we examine how mutations in the genes encoding α- and β-tectorin reveal multiple roles for the tectorial membrane, an extracellular matrix unique to the cochlea, in stimulating hair bundles."	"Predation- and competition-mediated brain plasticity in Rana temporaria tadpoles. An increasing number of studies have demonstrated phenotypic plasticity in brain size and architecture in response to environmental variation. However, our knowledge on how brain architecture is affected by commonplace ecological interactions is rudimentary. For example, while intraspecific competition and risk of predation are known to induce adaptive plastic modifications in morphology and behaviour in a wide variety of organisms, their effects on brain development have not been studied. We studied experimentally the influence of density and predation risk on brain development in common frog (Rana temporaria) tadpoles. Tadpoles grown at low density and under predation risk developed smaller brains than tadpoles at the other treatment combinations. Further, at high densities, tadpoles developed larger optic tecta and smaller medulla oblongata than those grown at low densities. These results demonstrate that ecological interactions - like intraspecific competition and predation risk - can have strong effects on brain development in lower vertebrates."	"Two novel missense mutations in the TECTA gene in Korean families with autosomal dominant nonsyndromic hearing loss. The TECTA gene, which encodes alpha-tectorin, is known as a causative gene for DFNA8/DFNA12, and DFNB21 hearing loss in humans. In the present study, mutation analysis of the TECTA gene was performed in 62 Korean patients with hereditary hearing loss. Two novel nucleotide substitutions, p.V317E and p.T1866M, were identified for the first time in the Korean population. These mutations result in the substitution of amino acids in the zonadhesin (ZA) and the zona pellucida (ZP) domains, and show a genotype-phenotype correlation, which is a characteristic of TECTA-related mutations in autosomal dominant nonsyndromic hearing loss. Both mutations are located in highly conserved regions of alpha-tectorin and were not found in 120 unrelated control subjects with normal hearing. Based on this evidence, it is likely that both mutations are the pathogenic ones causing the hearing loss. This study provides useful information for the functional study of hereditary hearing loss caused by tectorial membrane defects."	"Genetic causes of nonsyndromic hearing loss in Iran in comparison with other populations. Hearing loss (HL) is the most prevalent sensory defect affecting 1 in 500 neonates. Genetic factors are involved in half of the cases. The extreme heterogeneity of HL makes it difficult to analyze and determine the accurate genetic causes of the impairment. Up to now, 10 genes, namely, GJB2, GJB6, SLC26A4, TECTA, PJVK, Col11A2, Myo15A, TMC1, RDX and microRNA (miR-183), have been studied in an Iranian population. The prevalence of HL in Iran was estimated to be 2-3 times higher than that in other parts of the world. Here, the most common bases of congenital nonsyndromic hearing loss (NSHL) are discussed. We reviewed GJB2, GJB6 (large deletion), TECTA, SLC26A4 and PEJVK mutations, and studied their frequencies and distributions in different ethnic groups in 1934, 500, 121, 80 and 34 unrelated families throughout Iran, respectively. GJB2 mutation was the most common factor causing NSHL, with a mean frequency of 18.17% in the Iranian population. The importance of Iran's geographical location in the migration pathway from west to east through the silk route was also highlighted. SLC26A4 and TECTA mutations were the second and third main reasons of HL and accounted for up to 10 and 4% of prelingual HL in Iran, respectively. Mutations in GJB2, SLC26, TECTA and PJVK genes have an important role in HL in Iran and a screening test should be generated for better intervention and diagnosis programs."	"Neurotoxicity of ecstasy (MDMA): an overview. &quot;Ecstasy&quot; (MDMA) is a powerful hallucinogenic drug which has raised concern worldwide because of its high abuse liability. A plethora of studies have demonstrated that MDMA has the potential to induce neurotoxicity both in human and laboratory animals. Although research on MDMA has been carried out by many different laboratories, the mechanism underlying MDMA induced toxicity has not been fully elucidated. MDMA has the ability to reduce serotonin levels in terminals of axons in the cortex of rats and mice. Recently we have shown that it also has the potential to produce degenerate neurons in discrete areas of the brain such as insular and parietal cortex, thalamus, tenia tecta and bed nucleus of stria terminalis (BST). Acute effects of MDMA can result in a constellation of changes including arrthymias, hypertension, hyperthermia, serotonin (5-HT) syndrome, liver problems, seizures and also long lasting neurocognitive impairments including mood disturbances. In human MDMA abusers, there is evidence for reduction of serotonergic biochemical markers. Several factors may contribute to the MDMA-induced neurotoxicity, especially hyperthermia. Other factors potentially influencing MDMA toxicity include monoamine oxidase metabolism of dopamine and serotonin, nitric oxide generation, glutamate excitotoxicity, serotonin 2A receptor agonism and the formation of MDMA neurotoxic metabolites. In this review we will cover the following topics: pharmacological mechanisms, metabolic pathways and acute effects in laboratory animals, as well as in humans, with special attention on the mechanism and pathology of MDMA induced neurotoxicity."	"Comparison of phenotypical and genetic identification of Aeromonas strains isolated from diseased fish. Phenotypicaly identified Aeromonas strains (n=119) recovered mainly from diseased fish were genetically re-identified and the concordance between the results was analysed. Molecular characterization based on the GCAT genus specific gene showed that only 90 (75.6%) strains belonged to the genus Aeromonas. The 16S rDNA-RFLP method identified correctly most of the strains with the exception of a few that belonged to A. bestiarum, A. salmonicida or A. piscicola. Separation of these 3 species was correctly assessed with the rpoD gene sequences, which revealed that 5 strains with the RFLP pattern of A. salmonicida belonged to A. piscicola, as did 1 strain with the pattern of A. bestiarum. Correct phenotypic identification occurred in only 32 (35.5%) of the 90 strains. Only 14 (21.8%) of the 64 phenotypically identified A. hydrophila strains belonged to this species. However, coincident results were obtained in 88% (15/17) of the genetically identified A. salmonicida strains. Phenotypic tests were re-evaluated on the 90 genetically characterized Aeromonas strains and there were contradictions in the species A. sobria for a number of previously published species-specific traits. After genetic identification, the prevailing species were A. sobria, A. salmonicida, A. bestiarum, A. hydrophila, A. piscicola and A. media but we could also identify a new isolate of the recently described species A. tecta. This work emphasizes the need to rely on the 16S rDNA-RFLP method and sequencing of housekeeping genes such as rpoD for the correct identification of Aeromonas strains."	"Phylogenetic relationships and natural hybridization among the North American woody bamboos (Poaceae: Bambusoideae: Arundinaria). In spite of the ecological and economic importance of temperate bamboos, relatively little is known about their population biology or evolutionary history. Recently, hybridization has emerged as a potential source of diversity in this group, as well as an underlying cause of taxonomic problems. As part of a broader phylogenetic study of the temperate bamboos, we report the results of an analysis of the North American Arundinaria gigantea species complex, including estimates of genetic variation and molecular evidence of natural hybridization among A. gigantea, A. tecta, and A. appalachiana. The study involved a comparative analysis of amplified fragment length polymorphisms (AFLPs) and chloroplast DNA sequences representing diversity within and among all three species plus individuals with intermediate or unusual morphological characteristics (putative hybrids). Molecular results support the recognition of three species previously defined on the basis of morphology, anatomy, and ecology, with most of the molecular variance accounted for by among-species variation. Molecular evidence also demonstrates that A. tecta and A. appalachiana are sister species, forming a clade that is significantly divergent from A. gigantea. The role of hybridization in the phylogenetic history of Arundinaria is discussed along with implications for the evolution and taxonomy of the temperate woody bamboos."	"Deficient forward transduction and enhanced reverse transduction in the alpha tectorin C1509G human hearing loss mutation. Most forms of hearing loss are associated with loss of cochlear outer hair cells (OHCs). OHCs require the tectorial membrane (TM) for stereociliary bundle stimulation (forward transduction) and active feedback (reverse transduction). Alpha tectorin is a protein constituent of the TM and the C1509G mutation in alpha tectorin in humans results in autosomal dominant hearing loss. We engineered and validated this mutation in mice and found that the TM was shortened in heterozygous Tecta(C1509G/+) mice, reaching only the first row of OHCs. Thus, deficient forward transduction renders OHCs within the second and third rows non-functional, producing partial hearing loss. Surprisingly, both Tecta(C1509G/+) and Tecta(C1509G/C1509G) mice were found to have increased reverse transduction as assessed by sound- and electrically-evoked otoacoustic emissions. We show that an increase in prestin, a protein necessary for electromotility, in all three rows of OHCs underlies this phenomenon. This mouse model demonstrates a human hearing loss mutation in which OHC function is altered through a non-cell-autonomous variation in prestin."	"Extracellular Engrailed participates in the topographic guidance of retinal axons in vivo. Engrailed transcription factors regulate the expression of guidance cues that pattern retinal axon terminals in the dorsal midbrain. They also act directly to guide axon growth in vitro. We show here that an extracellular En gradient exists in the tectum along the anterior-posterior axis. Neutralizing extracellular Engrailed in vivo with antibodies expressed in the tectum causes temporal axons to map aberrantly to the posterior tectum in chick and Xenopus. Furthermore, posterior membranes from wild-type tecta incubated with anti-Engrailed antibodies or posterior membranes from Engrailed-1 knockout mice exhibit diminished repulsive activity for temporal axons. Since EphrinAs play a major role in anterior-posterior mapping, we tested whether Engrailed cooperates with EphrinA5 in vitro. We find that Engrailed restores full repulsion to axons given subthreshold doses of EphrinA5. Collectively, our results indicate that extracellular Engrailed contributes to retinotectal mapping in vivo by modulating the sensitivity of growth cones to EphrinA."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"Additional heterozygous 2507A&gt;C mutation of WFS1 in progressive hearing loss at lower frequencies. To describe the audiological profiles in a Japanese family with autosomal dominant hereditary sensorineural hearing loss (SNHL) and to identify the causative gene. A family study at an academic tertiary referral center. A family with autosomal dominant hereditary SNHL was enrolled. Hearing loss (HL) of affected members showed mid-frequency SNHL in childhood and progressed at lower frequencies with age, resulting in low-frequency SNHL. To understand the pathology of HL of this family, we performed a genetic analysis of WFS1, TECTA, and GJB2 by direct sequencing, and further audiovestibular examinations, including speech audiometry, distortion product otoacoustic emissions, electrocochleography, auditory brainstem responses, and electronystagmography for some affected members. A heterozygous A-to-C nucleotide transversion (c.2507A&gt;C), resulting in a lysine-to-threonine substitution at codon 836 (K836T) was identified in exon 8 of WFS1. K836T was segregated with HL in the 15 participants in the genetic study but was not detected in the 212 normal chromosomes. Only polymorphic changes were detected in TECTA and GJB2. Audiovestibular examinations indicated purely cochlear HL and normal vestibular function. The summating potential/action potential ratios in electrocochleography increased in the bilateral ears of the proband. The family described with autosomal dominant inheritance of K836T of the WFS1 gene demonstrates a progressive hearing loss in the lower frequencies."	"Opposite role of infralimbic and prelimbic cortex in the tachycardiac response evoked by acute restraint stress in rats. The ventral medial prefrontal cortex (vMPFC) comprises the prelimbic cortex (PL) and the infralimbic cortex (IL). Conflicting results have been reported from studies aiming to investigate the role played by the vMPFC in behavioral and autonomic responses evoked in rodents exposed to experimental protocols that promote defense responses. Acute restraint is an unavoidable stress situation that evokes marked and sustained cardiovascular changes, which are characterized by elevated blood pressure (BP) and intense heart rate (HR) increases. We report here a comparison between the effects of pharmacological inhibition of IL and PL neurotransmission on BP and HR responses evoked by acute restraint in rats. Bilateral microinjection of 200 nl of the unspecific synaptic blocker CoCl(2) (1 mM) into the PL increased HR response associated with restraint, without affecting the restraint-induced BP response. However, when local synapses in the IL were inhibited by bilateral injection of CoCl(2) into that area, the restraint-induced HR increases were significantly reduced, without a significant effect on the concomitant BP response. No responses were observed when CoCl(2) was microinjected into structures surrounding the vMPFC, such as the cingulate cortex area 1, the corpus callosum, or the tenia tecta. The present results confirm the involvement of the vMPFC in modulation of the tachycardiac response evoked by acute restraint but not of the restraint-evoked blood pressure response. They also indicate that the IL and PL areas have opposite roles in the cardiac response, facilitating and reducing, respectively, restraint-evoked tachycardiac responses."	"Habitat-dependent and -independent plastic responses to social environment in the nine-spined stickleback (Pungitius pungitius) brain. The influence of environmental complexity on brain development has been demonstrated in a number of taxa, but the potential influence of social environment on neural architecture remains largely unexplored. We investigated experimentally the influence of social environment on the development of different brain parts in geographically and genetically isolated and ecologically divergent populations of nine-spined sticklebacks (Pungitius pungitius). Fish from two marine and two pond populations were reared in the laboratory from eggs to adulthood either individually or in groups. Group-reared pond fish developed relatively smaller brains than those reared individually, but no such difference was found in marine fish. Group-reared fish from both pond and marine populations developed larger tecta optica and smaller bulbi olfactorii than individually reared fish. The fact that the social environment effect on brain size differed between marine and pond origin fish is in agreement with the previous research, showing that pond fish pay a high developmental cost from grouping while marine fish do not. Our results demonstrate that social environment has strong effects on the development of the stickleback brain, and on the brain's sensory neural centres in particular. The potential adaptive significance of the observed brain-size plasticity is discussed."	"Eph/ephrin gradients in the retinotectal system of Rana pipiens: developmental and adult expression patterns. Eph/ephrin-receptor/ligand A and B families play a variety of roles during CNS development, including patterning the retinotectal projection. However, the alignment of their expression gradients with developing retinotectal maps and gradients of cellular development is not well understood in species whose midbrain tecta undergo a protracted anterior to posterior development. By using anatomical tracing methods and (3)H-thymidine neuronography, we have mapped the retinotectal projection and the spatiotemporal progression of tectal cellular development onto Eph/ephrin expression patterns in the tectum of larval Rana pipiens, as studied by means of in situ affinity analysis with fusion proteins. EphA expression is maximal in anterior tectum (and temporal retina); ephrin-A expression is maximal at the posterior pole (and nasal retina). EphB expression is graded in the early larva, where it is maximal in the posterior tectum just anterior to the posterior pole (and in the ventral retina). Tectal EphB expression becomes uniform at later stages and remains so in the adult, although its retinal expression remains maximal ventrally. In the early larva, EphA, EphB, and ephrin-A protein gradients are parallel to each other and align with the temporonasal axis of the retinal projection. The early EphB expression maximum overlaps the boundary between the mantle layer of newly postmitotic cells and the posterior, epithelial region of cell proliferation, suggesting that the expression maximum is associated with the initial migrations of the postmitotic cells. Ephrin-B expression was detected in the olfactory bulb and dorsal retina at all ages, but not in the tectum."	"Emergence of binocular functional properties in a monocular neural circuit. Sensory circuits frequently integrate converging inputs while maintaining precise functional relationships between them. For example, in mammals with stereopsis, neurons at the first stages of binocular visual processing show a close alignment of receptive-field properties for each eye. Still, basic questions about the global wiring mechanisms that enable this functional alignment remain unanswered, including whether the addition of a second retinal input to an otherwise monocular neural circuit is sufficient for the emergence of these binocular properties. We addressed this question by inducing a de novo binocular retinal projection to the larval zebrafish optic tectum and examining recipient neuronal populations using in vivo two-photon calcium imaging. Notably, neurons in rewired tecta were predominantly binocular and showed matching direction selectivity for each eye. We found that a model based on local inhibitory circuitry that computes direction selectivity using the topographic structure of both retinal inputs can account for the emergence of this binocular feature."	"O-GlcNAc modification of radial glial vimentin filaments in the developing chick brain. We examined the post-translational modification of intracellular proteins by beta-O-linked N-acetylglucosamine (O-GlcNAc) with regard to neurofilament phosphorylation in the developing chick optic tectum. A regulated developmental pattern of O-GlcNAcylation was discovered in the developing brain. Most notably, discernible staining occurs along radial glial filaments but not along neuronal filaments in vivo. Immunohistochemical analyses in sections of progressive stages of development suggest upregulation of O-GlcNAc in the ependyma, tectofugal neuron bodies, and radial glial processes, but not in axons. In contrast, double-label immunostaining of monolayer cultures made from dissociated embryonic day (E) 7 optic tecta revealed O-GlcNAcylation of most axons. Labeling of brain sections together with Western blot analyses showed O-GlcNAc modification of a few discrete proteins throughout development, and suggested vimentin as the protein in radial glia. Immunoprecipitation of vimentin from E9 whole brain lysates confirmed O-GlcNAcylation of vimentin in development. These results indicate a regulated pattern of O-GlcNAc modification of vimentin filaments, which in turn suggests a role for O-GlcNAc-modified intermediate filaments in radial glia, but not in neurons during brain development. The control mechanisms that regulate this pattern in vivo, however, are disrupted when cells are placed in vitro."	"Flat threshold and mid-frequency hearing impairment in a Dutch DFNA8/12 family with a novel mutation in TECTA. Some evidence for protection of the inner ear. A novel TECTA mutation (c.5331G&gt;A) was identified affecting alpha-tectorin just N-terminally of the zona pellucida domain in a Dutch family with nonsyndromic autosomal dominant sensorineural hearing impairment. The present mutation is clearly associated with a flat-threshold type of hearing impairment. Intriguingly, our results demonstrated that the present TECTA mutation had a significant protective effect against presbyacusis. Substantial protection against presbyacusis is a novel finding in a family with autosomal dominant hearing impairment."	"Inputs to the ventrolateral bed nucleus of the stria terminalis. The ventrolateral bed nucleus of the stria terminalis (BSTvl) receives direct input from two specific subpopulations of neurons in the nucleus tractus solitarius (NTS). It is heavily innervated by aldosterone-sensitive NTS neurons, which are selectively activated by sodium depletion, and by the A2 noradrenergic neurons, which are activated by visceral and immune- and stress-related stimuli. Here, we used a retrograde neuronal tracer to identify other brain sites that innervate the BSTvl. Five general brain regions contained retrogradely labeled neurons: cerebral cortex (infralimbic and insular regions), rostral forebrain structures (subfornical organ, organum vasculosum of the lamina terminalis, taenia tecta, nucleus accumbens, lateral septum, endopiriform nucleus, dorsal BST, substantia innominata, and, most prominently the amygdala--primarily its basomedial and central subnuclei), thalamus (central medial, intermediodorsal, reuniens, and, most prominently the paraventricular thalamic nucleus), hypothalamus (medial preoptic area, perifornical, arcuate, dorsomedial, parasubthalamic, and posterior hypothalamic nuclei), and brainstem (periaqueductal gray matter, dorsal and central superior raphe nuclei, parabrachial nucleus, pre-locus coeruleus region, NTS, and A1 noradrenergic neurons in the caudal ventrolateral medulla). In the arcuate hypothalamic nucleus, some retrogradely labeled neurons contained either agouti-related peptide or cocaine/amphetamine-regulated transcript. Of the numerous retrogradely labeled neurons in the perifornical hypothalamic area, few contained melanin-concentrating hormone or orexin. In the brainstem, many retrogradely labeled neurons were either serotoninergic or catecholaminergic. In summary, the BSTvl receives inputs from a variety of brain sites implicated in hunger, salt and water intake, stress, arousal, and reward."	"Subventricular zone-derived, newly generated neurons populate several olfactory and limbic forebrain regions. Neurogenesis persists in several regions of the adult mammalian brain. Although the hippocampus and olfactory bulb are most commonly studied in the context of adult neurogenesis, there is an increasing body of evidence in support of neurogenesis occurring outside of these two regions. The current study expands on previous data by showing newborn neurons with a mature phenotype are located in several olfactory and limbic structures outside of the hippocampus and olfactory bulb, where we previously described doublecortin/bromodeoxyuridine immature neurons. Notably, newborn neurons with a mature neuronal phenotype are found in the olfactory tubercles, anterior olfactory nuclei, tenia tecta, islands of Calleja, amygdala, and lateral entorhinal cortex. The appearance of newborn neurons with a mature phenotype in these regions suggests that these structures are destinations, and that newborn neurons are not simply passing through these structures. In light of the increasing body of evidence for neurogenesis in these and other olfactory, limbic, and striatal structures, we hypothesize that brain regions displaying adult neurogenesis are functionally linked."	"Afferent and efferent connections of the cortical and medial nuclei of the amygdala in sheep. The cortical (CoA) and the medial (MeA) nuclei of the amygdala are involved in the processing of olfactory information relevant to social recognition in the ewe. To better understand the neural pathways responsible for these effects, the connections of both CoA and MeA with the telencephalic and diencephalic regions were studied by injecting an anterograde (Biotin-Dextran-Amine, BDA) or a retrograde (Fluorogold, FG) neuronal tracer into either the CoA or the MeA. Concerning the primary olfactory structures, the CoA receives inputs from both the main olfactory bulb and the accessory olfactory bulb (AOB), while the MeA is innervated by cells only from the AOB. Among the other olfactory structures, only the entorhinal cortex and the tenia tecta are connected with both the CoA and the MeA. With respect to the other secondary olfactory structures, the connections with the CoA and the MeA show segregating neuronal routes. The CoA is connected with the accessory olfactory nucleus, the piriform, the endopiriform and the orbitofrontal cortices while the MeA exhibited connections with the nucleus of the lateral olfactory tract, the perirhinal and the insular cortices. Concerning the diencephalic structures, only the MeA receives projections from the PVN and the MBH. On the other hand, we showed that the BNST is the major site of connection with both the CoA and the MeA. Reciprocal projections were observed between the CoA and the MeA and between both nuclei and the basal or the lateral nuclei of the amygdala with the exception of the CoA which does not send inputs to the lateral nucleus. These data are discussed in relation with olfactory learning in the context of sexual and maternal behavior in sheep."	"The tectorial membrane: one slice of a complex cochlear sandwich. The review is both timely and relevant, as recent findings have shown the tectorial membrane plays a more dynamic role in hearing than hitherto suspected, and that many forms of deafness can result from mutations in tectorial membrane proteins. Main themes covered are the molecular composition, the structural organization and properties of the tectorial membrane, the role of the tectorial membrane as a second resonator and a structure within which there is significant longitudinal coupling, and how mutations in tectorial membrane proteins cause deafness in mice and men. Findings from experimental models imply that the tectorial membrane plays multiple, critical roles in hearing. These include coupling elements along the length of the cochlea, supporting a travelling wave and ensuring the gain and timing of cochlear feedback are optimal. The clinical findings suggest stable, moderate-to-severe forms of hereditary hearing loss may be diagnostic of a mutation in TECTA, a gene encoding one of the major, noncollagenous proteins of the tectorial membrane."	"Histopathology of nonsyndromic autosomal dominant midfrequency sensorineural hearing loss. Autosomal dominant, nonsyndromic, midfrequency sensorineural hearing loss (SNHL) is a well-known clinical entity. There are no reported histopathologic studies of temporal bones from individuals with such a hearing loss. To describe the otopathology in 2 affected individuals from 2 different kindreds with nonsyndromic, dominant, midfrequency SNHL. Both subjects belonged to multigenerational families with nonsyndromic, autosomal dominant SNHL showing a cookie-bite pattern. Temporal bones were removed at autopsy and studied by light microscopy. Cytocochleograms were constructed for hair cells, stria vascularis, and cochlear neuronal cells. Subject 1 (a 77-yr-old man) from Kindred A was diagnosed in early childhood with an SNHL that was progressive, reaching profound levels by adulthood. Both cochleae showed complete loss of inner and outer hair cells, moderate to severe diffuse atrophy of the stria vascularis, and severe loss of cochlear neurons, including the peripheral dendrites. The hearing loss in Subject 2 (an 82-yr-old man from Kindred B) began in late childhood, was slowly progressive, and involved the higher frequencies later in life. Histopathology showed loss of outer and inner hair cells in the basal turn of the cochlea, moderate to severe loss of stria vascularis, but relative preservation of peripheral dendrites and cochlear neurons. The main histopathologic abnormalities were loss of hair cells, stria vascularis, and cochlear neurons in 1 case and loss of hair cells and stria vascularis in the second case. Our results are consistent with the hypothesis that dysfunction and loss of hair cells may have been the primary histopathologic correlate for the midfrequency hearing losses in these 2 subjects."	"Aeromonas tecta sp. nov., isolated from clinical and environmental sources. Five Aeromonas strains, isolated from both clinical and environmental sources and characterized by a polyphasic approach, including phylogenetic analysis derived from gyrB, rpoD, and 16S rRNA gene sequencing, as well as DNA-DNA hybridization, extensive biochemical and antibiotic susceptibility tests, were recognized as members of an unknown, or undescribed, Aeromonas species. These &quot;Aeromonas eucrenophila-like&quot; strains were closely related to the species A. eucrenophila and Aeromonas encheleia, but they were negative for indole and acid from glycerol tests. Therefore, based on the results of the phylogenetic analyses and DNA-DNA pairing data of these strains, a novel species of the genus Aeromonas is described, for which the name Aeromonas tecta is proposed with isolate F518(T) (CECT7082(T), DSM17300(T), MDC91(T)) as the type strain."	"Distribution of oxytocin in the brain of a eusocial rodent. Naked mole-rats are highly social rodents that live in large colonies characterized by a rigid social and reproductive hierarchy. Only one female, the queen, breeds. Most colony members are non-reproductive subordinates that work cooperatively to rear the young and maintain an underground burrow system. Little is known about the neurobiological basis of the complex sociality exhibited by this species. The neuropeptide oxytocin (Oxt) modulates social bonding and other social behaviors in many vertebrates. Here we examined the distribution of Oxt immunoreactivity in the brains of male and female naked mole-rats. As in other species, the majority of Oxt-immunoreactive (Oxt-ir) cells were found in the paraventricular and supraoptic nuclei, with additional labeled cells scattered throughout the preoptic and anterior hypothalamic areas. Oxt-ir fibers were found traveling toward and through the median eminence, as well as in the tenia tecta, septum, and nucleus of the diagonal band of Broca. A moderate network of fibers covered the bed nucleus of the stria terminalis and preoptic area, and a particularly dense fiber innervation of the nucleus accumbens and substantia innominata was observed. In the brainstem, Oxt-ir fibers were found in the periaqueductal gray, locus coeruleus, parabrachial nucleus, nucleus of the solitary tract, and nucleus ambiguus. The high levels of Oxt immunoreactivity in the nucleus accumbens and preoptic area are intriguing, given the link in other rodents between Oxt signaling in these regions and maternal behavior. Although only the queen gives birth or nurses pups in a naked mole-rat colony, most individuals actively participate in pup care."	"Mid-frequency DFNA8/12 hearing loss caused by a synonymous TECTA mutation that affects an exonic splice enhancer. Autosomal dominant hearing loss is highly heterogeneous. Hearing impairment mainly involves the mid-frequencies (500-2000 Hz) in only a low percentage of the cases. In a Dutch family with autosomal dominant mid-frequency/flat hearing loss, genome-wide SNP analysis combined with fine mapping using microsatellite markers mapped the defect to the DFNA8/12 locus, with a maximum two-point LOD score of 3.52. All exons and intron-exon boundaries of the TECTA gene, of which mutations are causative for DFNA8/12, were sequenced. Only one heterozygous synonymous change in exon 16 (c.5331G&gt;A; p.L1777L) was found to segregate with the hearing loss. This change was predicted to cause the loss of an exonic splice enhancer (ESE). RT-PCR using primers flanking exon 16 revealed, besides the expected PCR product from the wild-type allele, a smaller fragment only in the affected individual, representing part of an aberrant TECTA transcript lacking exon 16. The aberrant splicing is predicted to result in a deletion of 37 amino acids (p.S1758Y/G1759_N1795del) in alpha-tectorin. Subsequently, the same mutation was detected in two out of 36 individuals with a comparable phenotype. Owing to the position of the protein deletion just N-terminal of the zona pellucida (ZP) domain of alpha-tectorin, it is likely that the deletion of 37 amino acids may affect the proteolytic processing, structure and/or function of this domain, which results in a clinical phenotype comparable to that of missense mutations in the ZP domain. In addition, this is the first report of a synonymous mutation that affects an ESE and causes hereditary hearing loss."	"Outer hair cell somatic, not hair bundle, motility is the basis of the cochlear amplifier. Sensitivity, dynamic range and frequency tuning of the cochlea are attributed to amplification involving outer hair cell stereocilia and/or somatic motility. We measured acoustically and electrically elicited basilar membrane displacements from the cochleae of wild-type and Tecta(DeltaENT/DeltaENT) mice, in which stereocilia are unable to contribute to amplification near threshold. Electrically elicited responses from Tecta(DeltaENT/DeltaENT) mice were markedly similar to acoustically and electrically elicited responses from wild-type mice. We conclude that somatic, and not stereocilia, motility is the basis of cochlear amplification."	"Brain morphology and immunohistochemical localization of the gonadotropin-releasing hormone in the bluefin tuna, Thunnus thynnus. The present study was focused on the morphology of the diencephalic nuclei (likely involved in reproductive functions) as well as on the distribution of GnRH (gonadotropin-releasing hormone) in the rhinencephalon, telencephalon and the diencephalon of the brain of bluefin tuna (Thunnus thynnus) by means of immunohistochemistry. Bluefin tuna has an encephalization quotient (QE) similar to that of other large pelagic fish. Its brain exhibits well-developed optic tecta and corpus cerebelli. The diencephalic neuron cell bodies involved in reproductive functions are grouped in two main nuclei: the nucleus preopticus-periventricularis and the nucleus lateralis tuberis. The nucleus preopticus-periventricularis consists of the nucleus periventricularis and the nucleus preopticus consisting of a few sparse multipolar neurons in the rostral part and numerous cells closely packed and arranged in several layers in its aboral part. The nucleus lateralis tuberis is located in the ventral-lateral area of the diencephalon and is made up of a number of large multipolar neurones. Four different polyclonal primary antibodies against salmon (s)GnRH, chicken (c)GnRH-II (cGnRH-II 675, cGnRH-II 6) and sea bream (sb)GnRH were employed in the immunohistochemical experiments. No immunoreactive structures were found with anti sbGnRH serum. sGnRH and cGnRH-II antisera revealed immunoreactivity in the perikarya of the olfactory bulbs, preopticus-periventricular nucleus, oculomotor nucleus and midbrain tegmentum. The nucleus lateralis tuberis showed immunostaining only with anti-sGnRH serum. Nerve fibres immunoreactive to cGnRH and sGnRH sera were found in the olfactory bulbs, olfactory nerve and neurohypophysis. The significance of the distribution of the GnRH-immunoreactive neuronal structures is discussed."	"Characterization of a spontaneous, recessive, missense mutation arising in the Tecta gene. The TECTA gene encodes alpha-tectorin (TECTA), a major noncollagenous component of the tectorial membrane (TM). In humans, mutations in TECTA lead to either dominant (DFNA8/A12) or recessive (DFNB21) forms of nonsyndromic hearing loss. All missense mutations in TECTA that have been reported thus far are associated with the dominant subtype, whereas those leading to recessive deafness are all inactivating mutations. In this paper, we characterize a spontaneous missense mutation (c.1046C &gt; A, p.A349D) arising in the mouse Tecta gene that is, unlike all previously reported missense mutations in TECTA, recessive. The morphological phenotype of the Tecta (A349D/A349D) mouse resembles but is not identical to that previously described for the Tecta(deltaENT)/(deltaENT) mouse. As in the Tecta(deltaENT/(deltaENT) mouse, the TM is completely detached from the surface of the organ of Corti and spiral limbus, lacks a striated-sheet matrix, and is deficient in both beta-tectorin (Tectb) and otogelin. A significant amount of Tecta is, however, detected in the TM of the Tecta (A349D/A349D) mouse, and numerous, electron-dense matrix granules are seen interspersed among the disorganized collagen fibrils. Mutated Tecta (A349D) is therefore incorporated into the TM but presumably unable to interact with either Tectb or otogelin. The Tecta (A349D/A349D) mouse reveals that missense mutations in Tecta can be recessive and lead to TM detachment and suggests that should similar mutations arise in the human population, they would likely cause deafness."	"Multiple expressed MHC class II loci in salmonids; details of one non-classical region in Atlantic salmon (Salmo salar). In teleosts, the Major Histocompatibility Complex (MHC) class I and class II molecules reside on different linkage groups as opposed to tetrapods and shark, where the class I and class II genes reside in one genomic region. Several teleost MHC class I regions have been sequenced and show varying number of class I genes. Salmonids have one major expressed MHC class I locus (UBA) in addition to varying numbers of non-classical genes. Two other more distant lineages are also identifyed denoted L and ZE. For class II, only one major expressed class II alpha (DAA) and beta (DAB) gene has been identified in salmonids so far. We sequenced a genomic region of 211 kb encompassing divergent MHC class II alpha (Sasa-DBA) and beta (Sasa-DBB) genes in addition to NRGN, TIPRL, TBCEL and TECTA. The region was not linked to the classical class II genes and had some synteny to genomic regions from other teleosts. Two additional divergent and expressed class II sequences denoted DCA and DDA were also identified in both salmon and trout. Expression patterns and lack of polymorphism make these genes non-classical class II analogues. Sasa-DBB, Sasa-DCA and Sasa-DDA had highest expression levels in liver, hindgut and spleen respectively, suggestive of distinctive functions in these tissues. Phylogenetic studies revealed more yet undescribed divergent expressed MHC class II molecules also in other teleosts. We have characterised one genomic region containing expressed non-classical MHC class II genes in addition to four other genes not involved in immune function. Salmonids contain at least two expressed MHC class II beta genes and four expressed MHC class II alpha genes with properties suggestive of new functions for MHC class II in vertebrates. Collectively, our data suggest that the class II is worthy of more elaborate studies also in other teleost species."	"The responsible genes in Japanese deafness patients and clinical application using Invader assay. Discovery of deafness genes has progressed but clinical application lags because of the genetic heterogeneity. To establish clinical application strategy, we reviewed the frequency and spectrum of mutations found in Japanese hearing loss patients and compared them to those in populations of European ancestry. Screening revealed that in Japanese, mutations in GJB2, SLC26A4, and CDH23, and the mitochondrial 12S rRNA are the major causes of hearing loss. Also, mutations in KCNQ4, TECTA, COCH, WFS1, CRYM, COL9A3, and KIAA1199 were found in independent autosomal dominant families. Interestingly, spectrums of GJB2, SLC26A4, and CDH23 mutations in Japanese were quite different from those in Europeans. Simultaneous screening of multiple deafness mutations based on the mutation spectrum of a corresponding population using an Invader panel revealed that approximately 30% of subjects could be diagnosed. This assay will enable us to detect deafness mutations in an efficient and practical manner in the clinical platform. We conclude that specific racial populations may have unique deafness gene epidemiologies; therefore, ethnic background should be considered when genetic testing is performed. Simultaneous examination of multiple mutations based on a population's spectrum may be appropriate and effective for detecting deafness genes, facilitating precise clinical diagnosis, appropriate counseling, and proper management."	"Projections of the paraventricular and paratenial nuclei of the dorsal midline thalamus in the rat. The paraventricular (PV) and paratenial (PT) nuclei are prominent cell groups of the midline thalamus. To our knowledge, only a single early report has examined PV projections and no previous study has comprehensively analyzed PT projections. By using the anterograde anatomical tracer, Phaseolus vulgaris leucoagglutinin, and the retrograde tracer, FluoroGold, we examined the efferent projections of PV and PT. We showed that the output of PV is virtually directed to a discrete set of limbic forebrain structures, including 'limbic' regions of the cortex. These include the infralimbic, prelimbic, dorsal agranular insular, and entorhinal cortices, the ventral subiculum of the hippocampus, dorsal tenia tecta, claustrum, lateral septum, dorsal striatum, nucleus accumbens (core and shell), olfactory tubercle, bed nucleus of stria terminalis (BST), medial, central, cortical, and basal nuclei of amygdala, and the suprachiasmatic, arcuate, and dorsomedial nuclei of the hypothalamus. The posterior PV distributes more heavily than the anterior PV to the dorsal striatum and to the central and basal nuclei of amygdala. PT projections significantly overlap with those of PV, with some important differences. PT distributes less heavily than PV to BST and to the amygdala, but much more densely to the medial prefrontal and entorhinal cortices and to the ventral subiculum of hippocampus. As described herein, PV/PT receive a vast array of afferents from the brainstem, hypothalamus, and limbic forebrain, related to arousal and attentive states of the animal, and would appear to channel that information to structures of the limbic forebrain in the selection of appropriate responses to changing environmental conditions. Depending on the specific complement of emotionally associated information reaching PV/PT at any one time, PV/PT would appear positioned, by actions on the limbic forebrain, to direct behavior toward a particular outcome over a range of outcomes."	"Intraretinal RGMa is involved in retino-tectal mapping. The repulsive guidance molecule (RGMa) is involved in controlling the topography of retinal ganglion cell axons along the anterioposterior axis of the tectum. Here, we generated a new RGMa-monoclonal antibody and show that it is expressed in the developing retina, suggesting that it may regulate retinal axon pathfinding. We tested this hypothesis by using in ovo electroporation to either overexpress or downregulate RGMa in the eye. Anterograde labeling of retinal axons entering the optic tecta revealed abnormal phenotypes when RGMa expression is perturbed. These included the absence of terminal zone, the premature stalling of arborization of fibers, overshooting of terminal zone, aberrant axonal turns in the optic tectum and abnormal projections into deeper tectal layers. Moreover, RGMa overexpression frequently leads to intraretinal pathfinding errors. Thus, these data suggest that RGMa expression on retinal axons is a major determinant of topographic targeting in the retino-tectal projection and in the retina."	"The role of prestin in the generation of electrically evoked otoacoustic emissions in mice. Electrically evoked otoacoustic emissions are sounds emitted from the inner ear when alternating current is injected into the cochlea. Their temporal structure consists of short- and long-delay components and they have been attributed to the motile responses of the sensory-motor outer hair cells of the cochlea. The nature of these motile responses is unresolved and may depend on either somatic motility, hair bundle motility, or both. The short-delay component persists after almost complete elimination of outer hair cells. Outer hair cells are thus not the sole generators of electrically evoked otoacoustic emissions. We used prestin knockout mice, in which the motor protein prestin is absent from the lateral walls of outer hair cells, and Tecta(Delta ENT/Delta ENT) mice, in which the tectorial membrane, a structure with which the hair bundles of outer hair cells normally interact, is vestigial and completely detached from the organ of Corti. The amplitudes and delay spectra of electrically evoked otoacoustic emissions from Tecta(Delta ENT/Delta ENT) and Tecta(+/+) mice are very similar. In comparison with prestin(+/+) mice, however, the short-delay component of the emission in prestin(-/-) mice is dramatically reduced and the long-delay component is completely absent. Emissions are completely suppressed in wild-type and Tecta(Delta ENT/Delta ENT) mice at low stimulus levels, when prestin-based motility is blocked by salicylate. We conclude that near threshold, the emissions are generated by prestin-based somatic motility."	"A novel TECTA mutation confirms the recognizable phenotype among autosomal recessive hearing impairment families. Mutations in the TECTA gene result in sensorineural non-syndromic hearing impairment. TECTA-related deafness can be inherited autosomal dominantly (designated as DFNA8/12) or autosomal recessively (as DFNB21). The alpha-tectorin protein, which is encoded by the TECTA gene, is one of the major components of the tectorial membrane in the inner ear. Six mutations in the TECTA gene have already been reported in families segregating autosomal recessive non-syndromic hearing impairment. In this study, seventy-five Iranian families segregating autosomal recessive non-syndromic hearing impairment were analyzed for homozygosity at the DFNB21 locus by genotyping two short tandem repeat markers closely linked to the TECTA gene. Allelic segregation consistent with possible linkage to the DFNB21 locus was found in 1/75 families studied. By sequencing all 23 coding exons of TECTA, a 16bp deletion (c.6203-6218del16) in exon 21, leading to a frameshift, segregating with the hearing loss was found. All 3 affected individuals of this family have moderate-to-severe hearing loss across all frequencies, which is more pronounced in the mid frequencies. This new mutation, as well as the six previously reported mutations in the TECTA gene, is inactivating. All of these mutations lead to an easily recognized audiometric profile of moderate to severe hearing impairment as presented by the family in this study too. The TECTA autosomal recessive non-syndromic deafness phenotype differs from the typical profound deafness phenotype that is seen in most families segregating autosomal recessive non-syndromic deafness. On the basis of the recognizable phenotype, we recommend mutation screening of TECTA in families with this hearing phenotype."	"Anxiolytic-like effects induced by medial prefrontal cortex inhibition in rats submitted to the Vogel conflict test. Conflicting results have been obtained in studies aimed at investigating the role of the ventral portion of the medial prefrontal cortex (vMPFC), which comprise the prelimbic cortex (PL) and infralimbic cortex (IL), on anxiety responses in rodents evoked by animal models such as fear conditioning, elevated plus maze or social interaction. This may reflect the use of different lesion techniques and/or experimental paradigms based on distinct behaviors properties. Among the latter, the Vogel punished-licking test has been widely used to measure anxiety. However, the role of the vMPFC on anxiety-like behavior evoked by the Vogel model has not been evaluated. Thus, the present study verified the effects of acute and reversible bilateral inhibition of the vMPFC on the behavioral responses in the Vogel conflict test. After 24 h of water deprivation, male Wistar rats were subjected to an initial 3-min non-punished (pretest) drinking session. After an additional 24-h period of water deprivation they were exposed to a 3-min punished-licking session (test).Bilateral microinjections of lidocaine 2% (200 nL) or CoCl(2) (1 mM/200 nL) into the PL or IL produced similar anticonflict effects, increasing the number of punished licks. No responses were observed when lidocaine 2% was microinjected into vMPFC surrounding structures such as the cingulate cortex area 1, the corpus callosum and the tenia tecta. In control experiments the drugs did not change the number of unpunished licks nor had any effect in the tail-flick test. The present results, therefore, indicate that the vMPFC is involved in the behavioral responses elicited by punished stimuli."	"Audioprofiling identifies TECTA and GJB2-related deafness segregating in a single extended pedigree. An audioprofile displays phenotypic data from several audiograms on a single graph that share a common genotype. In this report, we describe the application of audioprofiling to a large family in which a genome-wide screen failed to identify a deafness locus. Analysis of audiograms by audioprofiling suggested that two persons with hearing impairment had a different deafness genotype. On this basis, we reassigned affectation status and identified a p.Cys1837Arg autosomal dominant mutation in alpha-tectorin segregating in all family members except two persons, who segregated autosomal recessive deafness caused by p.Val37Ile and p.Leu90Pro mutations in Connexin 26. One nuclear family in the extended pedigree segregates both dominant and recessive non-syndromic hearing loss."	"Cellular and subcellular rat brain spermidine synthase expression patterns suggest region-specific roles for polyamines, including cerebellar pre-synaptic function. In the brain, the polyamines spermidine (Spd) and spermine (Spm) serve highly specific functions by interacting with various ion channel receptors intimately involved with synaptic signaling. Both, glial cells and neurons contain Spd/Spm, but release and uptake mechanisms could re-distribute polyamines between cell types. The cellular and subcellular localization of polyamine biosynthetic enzymes may therefore offer a more appropriate tool to identify local sources of enhanced Spd/Spm synthesis, which may be related with specific roles in neuronal circuits and synaptic function. A recently characterized antibody against Spd synthase was therefore used to screen the rat brain for compartment-specific peaks in enzyme expression. The resulting labeling pattern indicated a clearly heterogeneous expression predominantly localized to neurons and neuropil. The highest levels of Spd synthase expression were detected in the accumbens nucleus, taenia tecta, cerebellar cortex, cerebral cortical layer I, hippocampus, hypothalamus, mesencephalic raphe nuclei, central and lateral amygdala, and the circumventricular organs. Besides a diffuse labeling of the neuropil in several brain areas, the distinct labeling of mossy fiber terminals in the cerebellar cortex directly indicated a synaptic role for Spd synthesis. Electron microscopy revealed a preferential distribution of the immunosignal in synaptic vesicle containing areas. A pre-synaptic localization was also observed in parallel and climbing fiber terminals. Electrophysiological recordings in acute cerebellar slices revealed a Spd-induced block of evoked extracellular field potentials resulting from mossy fiber stimulation in a dose-dependent manner."	"Spatial organization of direct hippocampal field CA1 axonal projections to the rest of the cerebral cortex. The spatial distribution of axonal projections descending from rat field CA1 to thalamus and hypothalamus was analyzed previously with the PHAL method [Cenquizca, L.A., Swanson, L.W. 2006. An analysis of direct hippocampal cortical field CA1 axonal projections to diencephalon in the rat. J Comp Neurol 497:101-114.]. The same experimental material was used here to define the topography of field CA1 association projections to other cerebral cortical areas. First, the results confirm and extend known intrahippocampal formation inputs to dentate gyrus, subiculum, presubiculum, parasubiculum, and entorhinal area, which are arranged generally along the formation's transverse axis and dominated by the subicular projection-by far the densest established by field CA1 anywhere in the brain. And second, field CA1 innervates a virtually complete ring of extrahippocampal formation cortex via three routes. A dorsal pathway from the dorsal third of field CA1 innervates moderately the retrosplenial area; a moderately strong ventral pathway from the ventral two thirds of field CA1 passing through the longitudinal association bundle sends offshoots to visual, auditory, somatosensory, gustatory, main and accessory olfactory, and visceral areas-as well as the basolateral amygdalar complex and the agranular insular and orbital areas; and a cortical-subcortical-cortical pathway through the fornix from the whole longitudinal extent of field CA1 innervates rather strongly a rostral region that includes the tenia tecta along with the anterior cingulate, prelimbic, infralimbic, and orbital areas. The functional consequences of long-term potentiation in field CA1 projection neurons remain to be explored."	"Restoration of visual function following optic nerve regeneration in bluegill (Lepomis macrochirus) x pumpkinseed (Lepomis gibbosus) hybrid sunfish. Simple (dorsal light reflex) and complex (predator-prey interactions) visually mediated behaviors were used concurrently with morphological examination to assess restoration of visual function following optic nerve crush in bluegill (Lepomis macrochirus) x pumpkinseed (Lepomis gibbosus) hybrid sunfish. Regenerating optic nerve axons projected into the stratum opticum-stratum fibrosum et griseum superficiale by week 2, the stratum griseum centrale by week 4, and stratum album centrale by week 6. Initial projections into the laminae were diffuse and less stratified compared to controls. By week 12, the projection pattern of regenerating nerve fibers closely resembled the innervation of normal tecta. Visual improvements were correlated with increasing projections into the tectum. The dorsal light reflex improved from a 45 degrees vertical deviation following nerve crush to 4.5 degrees by week 16. Initial predator-prey interactions were exclusively mediated by the control eye. As regeneration progressed, there was a gradual expansion of the visual field. The reaction distance and attack angles within the visual field of the experimental eye were initially less than controls, however, these differences disappeared by week 10. Improvements in visual function were closely correlated with an increase of regenerating ganglion cell axons into the optic tectum indicating sufficient synaptogenesis to mediate both simple and complex visual behavior."	"Novel somatic and germline mutations in cancer candidate genes in glioblastoma, melanoma, and pancreatic carcinoma. A recent systematic sequence analysis of well-annotated human protein coding genes or consensus coding sequences led to the identification of 189 genes displaying somatic mutations in breast and colorectal cancers. Based on their mutation prevalence, a subset of these genes was identified as cancer candidate (CAN) genes as they could be potentially involved in cancer. We evaluated the mutational profiles of 19 CAN genes in the highly aggressive tumors: glioblastoma, melanoma, and pancreatic carcinoma. Among other changes, we found novel somatic mutations in EPHA3, MLL3, TECTA, FBXW7, and OBSCN, affecting amino acids not previously found to be mutated in human cancers. Interestingly, we also found a germline nucleotide variant of OBSCN that was previously reported as a somatic mutation. Our results identify specific genetic lesions in glioblastoma, melanoma, and pancreatic cancers and indicate that CAN genes and their mutational profiles are tumor specific. Some of the mutated genes, such as the tyrosine kinase EPHA3, are clearly amenable to pharmacologic intervention and could represent novel therapeutic targets for these incurable cancers. We also speculate that similar to other oncogenes and tumor suppressor genes, mutations affecting OBSCN could be involved in cancer predisposition."	"Identification of three novel TECTA mutations in Iranian families with autosomal recessive nonsyndromic hearing impairment at the DFNB21 locus. Forty-five consanguineous Iranian families segregating autosomal recessive nonsyndromic hearing loss (ARNSHL) and negative for mutations at the DFNB1 locus were screened for allele segregation consistent with homozygosity by descent (HBD) at the DFNB21 locus. In three families demonstrating HBD at this locus, mutation screening of TECTA led to the identification of three novel homozygous mutations: one frameshift mutation (266delT), a transversion of a cytosine to an adenine (5,211C &gt; A) leading to a stop codon, and a 9.6 kb deletion removing exon 10. In total, six mutations in TECTA have now been described in families segregating ARNSHL. All of these mutations are inactivating and produce a similar phenotype that is characterized by moderate-to-severe hearing loss across frequencies with a mid frequency dip. The truncating nature of these mutations is consistent with loss-of-function, and therefore the existing TECTA knockout mouse mutant represents a good model in which to study DFNB21-related deafness."	"[From gene to disease; DFNA8/12, an autosomal dominant inherited bowl-shaped sensorineural hearing impairment]. An autosomal dominant inherited disorder known as DFNA8/12 causes mild-to-moderate/severe mid-frequency or mild-to-severe progressive high-frequency sensorineural hearing impairment. The causative gene, TECTA, encodes alpha-tectorin, the most important non-collagenous component of the tectorial membrane in the cochlea and the otolith membrane in the maculae of the vestibular system. Mutations in the zona pellucida domain of alpha-tectorin cause mid-frequency hearing impairment, whereas mutations in the zonadhesin domain cause progressive high-frequency hearing impairment. The intact hearing in the low and high frequencies may prohibit successful correction with a hearing aid."	"Combining visual information from the two eyes: the relationship between isthmotectal cells that project to ipsilateral and to contralateral optic tectum using fluorescent retrograde labels in the frog, Rana pipiens. The frog nucleus isthmi (homolog of the mammalian parabigeminal nucleus) is a visually responsive tegmental structure that is reciprocally connected with the ipsilateral optic tectum; cells in nucleus isthmi also project to the contralateral optic tectum. We investigated the location of the isthmotectal cells that project ipsilaterally and contralaterally using three retrograde fluorescent label solutions: Alexa Fluor 488 10,000 mw dextran conjugate; Rhodamine B isothiocyanate; and Nuclear Yellow. Dye solutions were pressure-injected into separate sites in the superficial optic tectum. Following a 6-day survival, brains were fixed, sectioned, and then photographed. Injection of the different labels at separate, discrete locations in the optic tectum result in retrograde filling of singly labeled clusters of cells in both the ipsilateral and contralateral nucleus isthmi. Generally, ipsilaterally projecting cells are dorsal to the contralaterally projecting cells, but there is a slight overlap between the two sets of cells. Nonetheless, when different retrograde labels are injected into opposite tecta, there is no indication that individual cells project to both tecta. The set of cells that project to the ipsilateral tectum and the set of cells that project to the contralateral tectum form a visuotopic map in a roughly vertical, transverse slab. Our results suggest that nucleus isthmi can be separated into two regions with cells in the dorsolateral portion projecting primarily to the ipsilateral optic tectum and cells in the ventrolateral nucleus isthmi projecting primarily to the contralateral optic tectum."	"Sharpened cochlear tuning in a mouse with a genetically modified tectorial membrane. Frequency tuning in the cochlea is determined by the passive mechanical properties of the basilar membrane and active feedback from the outer hair cells, sensory-effector cells that detect and amplify sound-induced basilar membrane motions. The sensory hair bundles of the outer hair cells are imbedded in the tectorial membrane, a sheet of extracellular matrix that overlies the cochlea's sensory epithelium. The tectorial membrane contains radially organized collagen fibrils that are imbedded in an unusual striated-sheet matrix formed by two glycoproteins, alpha-tectorin (Tecta) and beta-tectorin (Tectb). In Tectb(-/-) mice the structure of the striated-sheet matrix is disrupted. Although these mice have a low-frequency hearing loss, basilar-membrane and neural tuning are both significantly enhanced in the high-frequency regions of the cochlea, with little loss in sensitivity. These findings can be attributed to a reduction in the acting mass of the tectorial membrane and reveal a new function for this structure in controlling interactions along the cochlea."	"Audiological evaluation of affected members from a Dutch DFNA8/12 (TECTA) family. In DFNA8/12, an autosomal dominantly inherited type of nonsyndromic hearing impairment, the TECTA gene mutation causes a defect in the structure of the tectorial membrane in the inner ear. Because DFNA8/12 affects the tectorial membrane, patients with DFNA8/12 may show specific audiometric characteristics. In this study, five selected members of a Dutch DFNA8/12 family with a TECTA sensorineural hearing impairment were evaluated with pure-tone audiometry, loudness scaling, speech perception in quiet and noise, difference limen for frequency, acoustic reflexes, otoacoustic emissions, and gap detection. Four out of five subjects showed an elevation of pure-tone thresholds, acoustic reflex thresholds, and loudness discomfort levels. Loudness growth curves are parallel to those found in normal-hearing individuals. Suprathreshold measures such as difference limen for frequency modulated pure tones, gap detection, and particularly speech perception in noise are within the normal range. Distortion otoacoustic emissions are present at the higher stimulus level. These results are similar to those previously obtained from a Dutch DFNA13 family with midfrequency sensorineural hearing impairment. It seems that a defect in the tectorial membrane results primarily in an attenuation of sound, whereas suprathreshold measures, such as otoacoustic emissions and speech perception in noise, are preserved rather well. The main effect of the defects is a shift in the operation point of the outer hair cells with near intact functioning at high levels. As most test results reflect those found in middle-ear conductive loss in both families, the sensorineural hearing impairment may be characterized as a cochlear conductive hearing impairment."	"Current source density analysis of contra- and ipsilateral isthmotectal connections of the frog. The nucleus isthmi (NI) of the frog receives input from the ipsilateral optic tectum and projects back to both optic tecta. After ablation of NI, frogs display no visually elicited prey-catching or threat avoidance behavior. Neural mechanisms that underlie the loss of such important behavior have not been solved. Electrophysiological examination of the contralateral isthmotectal projection has proved that it contributes to binocular vision. On the other hand, there are very few physiological investigations of the ipsilateral isthmotectal projection. In this study, current source density (CSD) analysis was applied to contra- and ipsilateral isthmotectal projections. The contralateral projection produced monosynaptic sinks in superficial layers and in layer 8. The results confirmed former findings obtained by single unit recordings. The ipsilateral projection elicited a prominent monosynaptic sink in layer 8. Recipient neurons were located in layers 6-7. These results, combined with those from the former intracellular study, led to the following neuronal circuit. Afferents from the ipsilateral NI inhibit non-efferent pear shaped neurons in the superficial layers, and strongly excite large ganglionic neurons projecting to the descending motor regions. Thus feedback to the output neurons strengthens the visually elicited responses."	"FISH mapping of 10 canine BAC clones harbouring genes and microsatellites in the arctic fox and the Chinese raccoon dog genomes. Cytogenetic mapping of the arctic fox and the Chinese raccoon dog were performed using a set of canine probes derived from the Bacterial Artificial Chromosome (BAC) library. Altogether, 10 BAC clones containing sequences of selected genes (PAX3, HBB, ATP2A2, TECTA, PIT1, ABCA4, ESR2, TPH1, HTR2A, MAOA) and microsatellites were mapped by fluorescence in situ hybridization (FISH) experiments to chromosomes of the canids studied. At present, the cytogenetic map on the arctic fox and Chinese raccoon dog consists of 45 loci each. Chromosomal localization of the BAC clones was in agreement with data obtained by earlier independent comparative chromosome painting. However, two events of telomere-to-centromere inversions were tentatively identified while compared with assignments in the dog karyotype."	"Reverse correlation of rapid calcium signals in the zebrafish optic tectum in vivo. Reverse correlation techniques provide a quantitative means of computing neuronal input/output relationships. Until now these methods have been limited to electrically recorded responses since unprocessed optical signals generally lack necessary temporal characteristics. We sought to overcome this barrier since combining reverse correlation with calcium imaging would afford a powerful alternative to current methods of measuring response properties of neurons non-invasively in vivo. We labeled zebrafish optic tecta with a calcium indicator and measured responses to a whole-field random flicker light stimulus. Although calcium signals exhibited slow decay kinetics, we could use computational modeling to show that the positive differential of these traces extracts high frequency information. Experimentally, we found that calcium signals processed in this way were synchronous with simultaneously measured synaptic responses and could be used with reverse correlation to determine temporal filters of neurons in the zebrafish optic tectum. These findings demonstrate that calcium responses to physiological stimulation can be processed to obtain rapid signal information and consequently to determine linear filter properties in vivo."	"Harmful algal bloom toxins alter c-Fos protein expression in the brain of killifish, Fundulus heteroclitus. The immediate early gene c-fos, and its protein product c-Fos, are known to be induced in neurons of mammals and fish as a result of neuronal stimulation. The purpose of this study was to quantitatively examine CNS alterations in killifish, Fundulus heteroclitus, in relation to harmful algal bloom (HAB) toxin exposure. c-Fos expression was visualized using immunocytochemistry in the brains of killifish exposed to the excitatory neurotoxins domoic acid (DA) and brevetoxin (PbTx-2), and a paralytic neurotoxin, saxitoxin (STX), released from HABs. In addition, a simulated transport stress experiment was conducted to investigate effects of physical stress on c-Fos induction. Groups of fish were exposed to the different stress agents, brain sections were processed for c-Fos staining, and expression was quantified by brain region. Fish exposed to DA, STX, and transport stress displayed significant alterations in neuronal c-Fos expression when compared to control fish (p&lt; or = 0.05). DA, PbTx-2, and transport stress increased c-Fos expression in the optic tecta regions of the brain, whereas STX significantly decreased expression. This is the first study to quantify c-Fos protein expression in fish exposed to HAB toxins. General alterations in brain activity, as well as knowledge of specific regions within the brain activated in association with HABs or other stressors, provides valuable insights into the neural control of fish behavior as well as sublethal effects of specific stressors in the CNS."	"A study of the rat neuropeptide B/neuropeptide W system using in situ techniques. In the rat, the neuropeptide B/neuropeptide W (NPB/NPW) system is composed of two ligands, neuropeptide B (NPB) and neuropeptide W (NPW), and one receptor, GPR7. Although preliminary analyses show roles in feeding, hormone secretion, and analgesia, the lack of a detailed anatomical map impairs our understanding of the NPB/NPW system. We demonstrate in this report the expression patterns of GPR7, NPB, and NPW precursor messenger ribonucleic acid (mRNA) in the rat brain by using in situ hybridization and in situ binding experiments. The amygdala expresses the highest levels of GPR7 mRNA and binding signals. Other nuclei with high levels of expression and binding are the suprachiasmatic and the ventral tuberomamillary nuclei. Moderate levels are seen in the dorsal endopiriform, dorsal tenia tecta, bed nucleus, and the red nucleus. Low levels are in the olfactory bulb, parastrial nucleus, hypothalamus, laterodorsal tegmentum, superior colliculus, locus coeruleus, and the nucleus of the solitary tract. Although the NPB precursor is mostly expressed at low levels in the brain, moderate expression is seen in anterior olfactory nucleus, piriform cortex, median preoptic nucleus, basolateral amygdala, hippocampus, medial tuberal nucleus, substantia nigra, dorsal raphe nucleus, Edinger-Westphal nucleus, and the locus coeruleus. To our surprise, the expression of NPW precursor was not detected. Our study greatly expands the preliminary in situ data previously reported. With this map of the NPB/NPW system in the rat brain, a better understanding of the functional implications of the system in various behavioral paradigms is now possible."	"A novel TECTA mutation in a Dutch DFNA8/12 family confirms genotype-phenotype correlation. A novel TECTA mutation, p.R1890C, was found in a Dutch family with nonsyndromic autosomal dominant sensorineural hearing impairment. In early life, presumably congenital, hearing impairment occurred in the midfrequency range, amounting to about 40 dB at 1 kHz. Speech recognition was good with all phoneme recognition scores exceeding 90%. An intact horizontal vestibuloocular reflex was found in four tested patients. The missense mutation is located in the zona pellucida (ZP) domain of alpha-tectorin. Mutations affecting the ZP domain of alpha-tectorin are significantly associated with midfrequency hearing impairment. Substitutions affecting other amino acid residues than cysteines show a significant association with hearing impairment without progression. Indeed, in the present family progression seemed to be absent. In addition, the presently identified mutation affecting the ZP domain resulted in a substantially lesser degree of hearing impairment than was previously reported for DFNA8/12 traits with mutations affecting the ZP domain of alpha-tectorin."	"Enhanced cyclooxygenase-2 expression in olfactory-limbic forebrain following kainate-induced seizures. Cyclooxygenase-2 is expressed at low levels in a subset of neurons in CNS and is rapidly induced by a multiplicity of factors including seizure activity. A putative relationship exists between cyclooxygenase-2 induction and glutamatergic neurotransmission. Cyclooxygenase-1 is constitutively expressed in glial cells and has been specifically linked to microglia. In this study we evaluated cyclooxygenase-2 protein immunocytochemically and found markedly enhanced immunostaining primarily in olfactory-limbic regions at 2, 6 and 24 h following kainate-induced status epilepticus. Impressive enhanced cyclooxygenase-2 immunoreactivity was localized in anterior olfactory nucleus, tenia tecta, nucleus of the lateral olfactory tract, piriform cortex, lateral and basolateral amygdala, orbital frontal cortex, nucleus accumbens (shell) and associated areas of ventral striatum, entorhinal cortex, dentate gyrus granule cells and hilar neurons, hippocampal CA subfields and subiculum. Alternate sections were processed for dual immunocytochemical analysis utilizing c-Fos and cyclooxygenase-2 antiserum to examine the possibility that the neuronal induction of cyclooxygenase-2 was associated with seizure activity. Neurons that showed a timeline of cyclooxygenase-2 upregulation were found to possess c-Fos immunopositive nuclei. Additional results from all seizure groups showed cyclooxygenase-1 induction in microglia, which was confirmed by Western blot analysis of hippocampus. Western blot and real-time quantitative RT-PCR analysis showed significant upregulation of cyclooxygenase-2 expression, confirming its induction in neurons. These data indicate that cyclooxygenase-2 induction in a neuronal network can be a useful marker for pathways associated with seizure activity."	"Selective cultivation of N-cadherin expressing cells from the optic tectum of the chick. Dissociated primary cell cultures of the nervous system are usually composed of many different cell types, which makes it difficult to investigate a specific cell type and to describe its development in vitro without direct or indirect influence of other cell types. Although various methods have been published to specifically separate either neurons or glial cells, there is still a need for simple protocols to isolate distinct neuronal subpopulations. Here we describe a method to purify specific neuronal subtypes from the chick embryonic midbrain. Embryonic (E10) optic tecta were dissociated and a cell suspension was produced. Cells were separated by magnetic cell sorting (MACS) based on their specific expression of somatic N-cadherin. After cultivation on poly-D-lysine coated dishes in serum-free culture medium supplemented with B27, cells were fixed and analyzed with immuncytochemistry. Enriched primary cultures contained about 70% of N-cadherin positive cells compared to 46% before sorting. 7 days after cultivation, N-cadherin expression and its co-localization with synapses was demonstrated."	"Species identification of Kachuga tecta using the cytochrome b gene. A DNA technique has been established for the identification to species level of tortoises. The test on the shell of the animal was used to identify samples from the species Kachuga tecta. A total of 100 tortoise shell specimens collected from the National Council of Agriculture (COA), Taiwan, were used in this study. Primer pairs were designed to amplify partial DNA fragments of cytochrome b within the mitochondrial genome. The DNA data showed that among the 100 samples, there were four distinct haplotype DNA sequences, within which there were a total of 90 variable sites. Between haplotypes I and II, there was only 1 nucleotide difference at position 228. Between haplotypes I and III, 65 nucleotide differences were observed; haplotypes I and IV, 62 nucleotide differences; and haplotypes III and IV, 56 nucleotide differences were observed. There were 66 and 63 nucleotide differences between haplotypes II and III and haplotypes II and IV respectively. All four haplotypes were compared with the DNA sequences held at the GenBank and EMBL databases. The most similar species were K. tecta (haplotype I and II), Morenia ocellata (haplotype III) and Geoclemys hamiltonii (haplotype IV), and their respective mtDNA similarities were 99.5%, 99.3%, 89.9% and 99.5%. However, as haplotype III was only 89.9% homologous with M. ocellata, it would seem that this haplotype shows only a limited relationship with a similar species registered currently in these databases. The method established by this study is an additional method for the identification of samples protected under Convention International Trade in Endangered Species (CITES) and will improve the work for the preservation of the endangered species."	"Intracellular and current source density analyses of somatosensory input to the optic tectum of the frog. This is the first report of current source density (CSD) and intracellular analyses of non-optic processing in the frog optic tectum. Sciatic nerve stimulation was used to test for somatosensory input to the optic tectum. To demonstrate the distribution of somatosensory input, field potentials were recorded from the whole surface of both tecta. Two components were observed. An early component was found in the whole area, but a late component was detected only in medial and caudal regions of the contralateral tectum. The effect of different stimulus intensity suggested that the optic tectum receives mainly the tactile sensation with fast conducting, low threshold level afferents from the sciatic nerve. The result of CSD analysis suggests that somatosensory afferents terminate on the tectal neurons with vertically expanding dendrites at the medial site of the contralateral optic tectum where the late component was found. Intracellular recordings demonstrated postsynaptic potentials in the middle and deeper layers, which is consistent with results from mammalian superior colliculus in earlier studies. Additional stimulation of the optic tract demonstrated that some somatosensory neurons had bimodal responses. The responses of those in the middle layers appeared to participate in avoidance behavior, based upon previous CSD analysis of the tectum using optic tract stimulation. All somatosensory responses elicited in these neurons were IPSPs. The findings imply that the somatosensory input to the optic tectum gives a suppressive effect on avoidance behavior. A somatosensory effect on prey-catching behavior could not be found in the present small number of intracellular data."	"Assessment of the genetic causes of recessive childhood non-syndromic deafness in the UK - implications for genetic testing. Approximately one in 2000 children is born with a genetic hearing impairment, mostly inherited as a non-syndromic, autosomal recessive trait, for which more than 30 different genes have been identified. Previous studies have shown that one of these genes, connexin 26 (GJB2), accounts for 30-60% of such deafness, but the relative contribution of the many other genes is not known, especially in the outbred UK population. This lack of knowledge hampers the development of diagnostic genetic services for deafness. In an effort to determine the molecular aetiology of deafness in the population, 142 sib pairs with early-onset, non-syndromic hearing impairment were recruited. Those in whom deafness could not be attributed to GJB2 mutations were investigated further for other mapped genes. The genetic basis of 55 cases (38.7%) was established, 33.1% being due to mutations in the GJB2 gene and 3.5% due to mutations in SLC26A4. None of the remaining 26 loci investigated made a significant contribution to deafness in a Caucasian population. We suggest that screening the GJB2 and SLC26A4 genes should form the basis of any genetic testing programme for childhood deafness and highlight a number of important issues for consideration and future work."	"Brain and sensory organ morphology in Antarctic eelpouts (Perciformes: Zoarcidae: Lycodinae). Eelpouts of the family Zoarcidae comprise a monophyletic group of marine fishes with a worldwide distribution. Centers of high zoarcid diversity occur in the North Atlantic and North Pacific, with important radiations into the Arctic, along southern South America, and into the Southern Ocean around Antarctica. Along with snailfishes (Liparidae), zoarcids form an important component of the non-notothenioid fauna in the subzero shelf waters of Antarctica. We document the anatomy and histology of the brains, cranial nerves, olfactory apparatus, cephalic lateral lines, taste buds, and retinas of three Antarctic zoarcid species, living at depths of 310-939 m, representing three of the nine genera from this region. The primary emphasis is on Ophthalmolycus amberensis, and we provide a detailed drawing of the brain and cranial nerves of this species. Although this brain reflects general perciform neural morphology, it exhibits a reduction of the (optic) tecta and the eminentia granulares and crista cerebellares of the lateral line system. Interspecific differences among the three species are slight. The olfactory rosette consists of three to four lamellae and the nasal sac, contrary to the claim of Fanta et al. ([2001] Antarct Rec, Natl Inst Polar Res, Tokyo 45:27-42), is not in communication with the cephalic lateral line system. Primary olfactory neurons are abundant and converge on branches of the olfactory nerve. Numerous taste buds are located in the lips. All three species lack an ocular choroid rete and have relatively thin retinas with a low cell density and a single bank of rods as the only type of photoreceptor. Neural diversification among Antarctic zoarcids has not involved the evolution of sensory specialists; brain and sensory organ morphologies do not approach the condition seen in primary deep-sea fishes, or even that of some sympatric non-perciform secondary deep-sea fishes, including liparids and muraenolepidids (eel cods). There may be phylogenetic constraints on brain morphology in perciforms such that we do not see extreme specialization in sensory and neural systems for deep habitats. We suggest that the brains and sensory organs of Antarctic zoarcids reflect habitation of 500-2,000-m depths and likely reflect morphologies seen in zoarcids living on continental slopes elsewhere in the world. This balance among the sensory modalities makes zoarcids relatively generalized among secondary deep-sea fishes and may be one of the reasons this opportunistic and adaptable group has been successful in colonizing a variety of emergent and ephemeral habitats."	"Photic inhibition of TrkB/Ras activity in the pigeon's tectum during development: impact on brain asymmetry formation. Asymmetric photic stimulation during embryonic or post-hatch development induces a functional lateralization of the pigeon's visual system, which is accompanied by left-right differences in tectal cell sizes. The intracellular membrane-anchored GTPase Ras can be activated by a number of upstream mechanisms including binding of brain-derived neurotrophic factor to its specific TrkB receptor. Ras activity plays an important morphogenetic role in neurons and therefore might also be involved in the asymmetric differentiation of tectal cells. To investigate the role of Ras, we determined the relative levels of activated Ras and of signalling active phospho-TrkB in tecta of light- and dark-incubated pigeons and combined this with an immunohistochemical detection of Ras-GTP and TrkB receptors. While Ras activation levels did not differ between light- and dark-incubated pigeons during embryonic development, directly after hatching Ras activity was significantly decreased in the stronger stimulated left tectum of light-incubated animals. This was accompanied by lower levels of TrkB phosphorylation. Immunohistochemical staining revealed Ras-GTP-positive cell bodies within the efferent cell layer. These cells were TrkB-positive and developed enlarged soma sizes within the right tectum during the first week after hatching. This association suggests asymmetric Ras activation to be involved in the asymmetric differentiation of the efferent cells as a result of asymmetric TrkB signalling. Because asymmetric light exposure occurs only during embryonic development, the observed transient asymmetric inhibition of TrkB/Ras activity after hatching may reflect differential embryonic maturation of tectal inhibitory circuits leading to a functional superiority of the right eye in the adult organism."	"Permanent focal brain ischemia induces isoform-dependent changes in the pattern of Na+/Ca2+ exchanger gene expression in the ischemic core, periinfarct area, and intact brain regions. Dysregulation of sodium [Na+]i and calcium [Ca2+]i homeostasis plays a pivotal role in the pathophysiology of cerebral ischemia. Three gene products of the sodium-calcium exchanger family NCX1, NCX2, and NCX3 couple, in a bidirectional way, the movement of these ions across the cell membrane during cerebral ischemia. Each isoform displays a selective distribution in the rat brain. To determine whether NCX gene expression can be regulated after cerebral ischemia, we used NCX isoform-specific antisense radiolabeled probes to analyze, by radioactive in situ hybridization histochemistry, the pattern of NCX1, NCX2, and NCX3 transcripts in the ischemic core, periinfarct area, as well as in nonischemic brain regions, after 6 and 24 h of permanent middle cerebral artery occlusion (pMCAO) in rats. We found that in the focal region, comprising divisions of the prefrontal, somatosensory, and insular cortices, all three NCX transcripts were downregulated. In the periinfarct area, comprising part of the motor cortex and the lateral compartments of the caudate-putamen, NCX2 messenger ribonucleic acid (mRNA) was downregulated, whereas NCX3 mRNA was significantly upregulated. In remote nonischemic brain regions such as the prelimbic and infralimbic cortices, and tenia tecta, both NCX1 and NCX3 transcripts were upregulated, whereas in the medial caudate-putamen only NCX3 transcripts increased. In all these intact regions, NCX2 signal strongly decreased. These results indicate that NCX gene expression is regulated after pMCAO in a differential manner, depending on the exchanger isoform and region involved in the insult. These data may provide a better understanding of each NCX subtype's pathophysiologic role and may allow researchers to design appropriate pharmacological strategies to treat brain ischemia."	"Postsynaptic potentials of tectal neurons evoked by electrical stimulation of the pretectal nuclei in bullfrogs (Rana catesbeiana). Postsynaptic responses of the tectal cells to electrical stimulation of pretectal (Lpd/P) nuclei were intracellularly recorded in the bullfrog (Rana catesbeiana). The pretectal stimulation elicited mainly two types of responses in the ipsilateral tectum: an EPSP followed by an IPSP and a pure IPSP. The latter predominates in the tectal cells responding to ipsilateral pretectal stimulation. In a few cells, biphasic hyperpolarization appeared under stronger stimulus intensities. Only one type of response was found in the contralateral tectum, a pure IPSP. The antidromically invaded tecto-pretectal projecting cells were recorded in both tecta, which revealed reciprocal connections between the tectum and particular pretectal nuclei. This paper demonstrates the synaptic nature underlying pretectotectal information transfer. EPSPs with short latencies were concluded to be monosynaptic. Most IPSPs were generated through polysynaptic paths, but monosynaptic IPSPs were also recorded in both optic tecta. Nearly 98% of impaled tectal cells (except for intra-axonally recorded and antidromically invaded cells) showed inhibitory responses to pretectal stimulation. The results provide strong evidence that pretectal cells broadly inhibit tectal neurons as suggested by behavioral and extracellular recording studies."	"A deafness mutation isolates a second role for the tectorial membrane in hearing. Alpha-tectorin (encoded by Tecta) is a component of the tectorial membrane, an extracellular matrix of the cochlea. In humans, the Y1870C missense mutation in TECTA causes a 50- to 80-dB hearing loss. In transgenic mice with the Y1870C mutation in Tecta, the tectorial membrane's matrix structure is disrupted, and its adhesion zone is reduced in thickness. These abnormalities do not seriously influence the tectorial membrane's known role in ensuring that cochlear feedback is optimal, because the sensitivity and frequency tuning of the mechanical responses of the cochlea are little changed. However, neural thresholds are elevated, neural tuning is broadened, and a sharp decrease in sensitivity is seen at the tip of the neural tuning curve. Thus, using Tecta(Y1870C/+) mice, we have genetically isolated a second major role for the tectorial membrane in hearing: it enables the motion of the basilar membrane to optimally drive the inner hair cells at their best frequency."	"Pressor and tachycardic responses evoked by microinjections of L-glutamate into the medial prefrontal cortex of unanaesthetized rats. The ventral medial prefrontal cortex (vMPFC) is involved in central cardiovascular control. In the present study, we studied the cardiovascular effects of injections of L-glutamate into the vMPFC of unanaesthetized rats and the mechanisms of these effects. Male Wistar rats were used and L-glutamate was microinjected in the vMPFC in a final volume of 200 nL. Microinjections of L-glutamate (9, 27, 81, 150 or 300 nmol) caused long-lasting, dose-related pressor and tachycardic responses in unanaesthetized rats. No differences were observed among cardiovascular responses when L-glutamate was injected into the three sub-areas that comprise the vMPFC, namely the prelimbic, the infralimbic and the dorsal peduncular cortices. No responses were observed when the dose of 81 nmol of L-glutamate was microinjected into surrounding structures such as the cingulate cortex area 1, the corpus callosum and the tenia tecta, indicating a predominant action on the vMPFC. The cardiovascular response to L-glutamate into the vMPFC was blocked by intravenous pretreatment with the ganglion blocker pentolinium (10 mg/kg, i.v.) or the beta1-adrenoceptor antagonist atenolol (1.5 mg/kg, i.v.), supporting the involvement of the cardiac sympathetic nervous system in the response to L-glutamate. Pretreatment with the muscarinic antagonist homatropine methyl bromide (1 mg/kg, i.v.) reduced the latency to the onset of the pressor and tachycardic responses to L-glutamate injected into the vMPFC without significant effects on response duration or maximum effect. We conclude that stimulation of the vMPFC with L-glutamate caused pressor and tachycardic responses in unanaesthetized rats, responses which were dependent on cardiac sympathetic nerve activation and were potentiated by blockade of peripheral muscarinic receptors."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Predation regulation of sedimentary faunal structure: potential effects of a fishery-induced switch in predators in a Newfoundland sub-Arctic fjord. The collapse of the cod fishery in Newfoundland has coincided with marked increases in abundances of snow crab, pandalid shrimp, and other crustaceans that prey on sedimentary infauna. A 3-year sampling program in Bonne Bay, Newfoundland indicates differences in composition and number of these predators in the two main arms of the fjord that coincide with strong differences in benthic community structure. To test whether predation pressure contributes to the observed patterns in sedimentary fauna, exclusion field experiments with full and partial cages were deployed in both arms at 30-m depth and sampled along with ambient sediments at 0-, 4-, and 8-week periods. Predation significantly influenced species composition, abundance and, in some cases, diversity. The most striking changes included increases in the polychaetes Phöloe tecta and Ophelina cylindricaudata in exclusions relative to controls, and concurrent declines in the polychaete Paradoneis lyra and the cumacean Lamphros fuscata. In laboratory experiments, fresh non-disturbed sediment cores from each experimental area were either protected or exposed to snow crab, the most abundant predator in the bay. A snow crab inclusion experiment was also carried out in the field, using cages similar to those used for exclusions. Despite differences in sedimentary faunas in the two arms, both types of experiments detected a predator effect that was very similar to that documented in exclusion experiments. Thus, despite differences in the scales associated with each type of manipulation, our results suggest that crab predation is a significant structuring force in Newfoundland sedimentary communities. Given the historical changes that have occurred in predator composition as a result of cod over-fishing, we hypothesize that broad-scale community changes may be taking place in North Atlantic benthic ecosystems."	"RT-PCR analysis of Tecta, Coch, Eya4 and Strc in mouse cochlear explants. Tecta, Coch, Eya4 and Strc are mouse orthologs of four human deafness-associated genes. Their expression is markedly restricted to specific cell types in cochleae. Cochleae were dissected on embryonic day 15 and cultured in vitro. Relative messenger RNA abundance of each gene was quantified by RT-PCR and compared in-vivo cochleae of equivalent embryonic age. After 48 h in culture, in-vivo and explant Strc expression levels were equivalent, Eya4 level reduced in explanted tissues, and expression of Tecta and Coch did not show the expected temporal rise. Expression of these genes was detectable even after 96 h. These results suggest that it is feasible to test the expression of inner ear specific genes in explanted cochleae."	"The differential expression patterns of messenger RNAs encoding Nogo-A and Nogo-receptor in the rat central nervous system. Nogo-A and Nogo-receptor have been considered to play pivotal roles in controlling axonal regeneration and neuronal plasticity. We investigated the total distribution of Nogo-A and Nogo-receptor mRNAs in the adult rat central nervous system using in situ hybridization histochemistry. Nogo-A is abundantly expressed in both neurons and oligodendrocytes throughout the central nervous system. Interestingly, we could not find any neuron which lacks Nogo-A mRNA expression, indicating that Nogo-A mRNA is universally expressed in all neurons. In contrast, Nogo-R mRNA expression was very restricted. Nogo-R mRNA was expressed in the olfactory bulb, hippocampus, tentia tecta, some amygdala nuclei, cerebral cortex, some thalamic nuclei, medial habenular, whereas we could not detect it in the other regions. Interestingly, we did not detect Nogo-R mRNA in monoaminergic neurons, which are known to have high regenerative capacity, in the substantia nigra, ventral tegmental area, locus caeruleus, and raphe nuclei. In addition, although neurons in the reticular thalamus and cerebellar nuclei are also known to show high capacity for regeneration, Nogo-R mRNA was not detected there. These data indicate that Nogo-A and Nogo-R mRNAs were differentially expressed in the central nervous system, and suggest that the lack of Nogo-R expression in a given neuron might be necessary to keep its high regenerative capacity."	"Afferent projections to nucleus reuniens of the thalamus. The nucleus reuniens (RE) is the largest of the midline nuclei of the thalamus and the major source of thalamic afferents to the hippocampus and parahippocampal structures. Nucleus reuniens has recently been shown to exert powerful excitatory actions on CA1 of the hippocampus. Few reports on any species have examined afferent projections to nucleus reuniens. By using the retrograde anatomical tracer Fluorogold, we examined patterns of afferent projections to RE in the rat. We showed that RE receives a diverse and widely distributed set of afferents projections. The main sources of input to nucleus reuniens were from the orbitomedial, insular, ectorhinal, perirhinal, and retrosplenial cortices; CA1/subiculum of hippocampus; claustrum, tania tecta, lateral septum, substantia innominata, and medial and lateral preoptic nuclei of the basal forebrain; medial nucleus of amygdala; paraventricular and lateral geniculate nuclei of the thalamus; zona incerta; anterior, ventromedial, lateral, posterior, supramammillary, and dorsal premammillary nuclei of the hypothalamus; and ventral tegmental area, periaqueductal gray, medial and posterior pretectal nuclei, superior colliculus, precommissural/commissural nuclei, nucleus of the posterior commissure, parabrachial nucleus, laterodorsal and pedunculopontine tegmental nuclei, nucleus incertus, and dorsal and median raphe nuclei of the brainstem. The present findings of widespread projections to RE, mainly from limbic/limbic-associated structures, suggest that nucleus reuniens represents a critical relay in the transfer of limbic information (emotional/cognitive) from RE to its major targets, namely, to the hippocampus and orbitomedial prefrontal cortex. RE appears to be a major link in the two-way exchange of information between the hippocampus and the medial prefrontal cortex."	"Distribution of zincergic neurons in the mouse forebrain. Synaptically released zinc is thought to play an important role in neuronal signaling by modulating excitatory and inhibitory receptors and intracellular signaling proteins. Consequently, neurons that release zinc have been implicated in synaptic plasticity underlying learning and memory as well as neuropathological processes such as epilepsy, stroke, and Alzheimer's disease. To characterize the distribution of these neurons, investigators have relied on a technique that involves the retrograde transport of zinc-selenium crystals from axonal boutons to the cell bodies of origin. However, one major problem with this method is that labeling of cell bodies is obscured by high levels of staining in synaptic boutons, particularly within forebrain structures where this staining is most intense. Here, we used a modification of the retrograde labeling method that eliminates terminal staining for zinc, thereby enabling a clear and comprehensive description of these neurons. Zincergic neurons were found in all cerebral cortical regions and were arranged in a distinct laminar pattern, restricted to layers 2/3, 5, and 6 with no labeling in layer 4. In the hippocampus, labeling was present in CA1, CA3, and the dentate gyrus but not in CA2. Labeled cell bodies were also observed in most amygdaloid nuclei, anterior olfactory nuclei, claustrum, tenia tecta, endopiriform region, lateral ventricle, lateral septum, zona incerta, superior colliculus, and periaqueductal gray. Moreover, retrograde labeling was also noted in the dorsomedial and lateral hypothalamus, regions that previously were thought to be devoid of neurons with a zincergic phenotype. Collectively these data show that zincergic neurons comprise a large population of neurons in the murine forebrain and will provide an anatomical framework for understanding the functional importance of these neurons in the mammalian brain."	"A genotype-phenotype correlation with gender-effect for hearing impairment caused by TECTA mutations. Alpha-tectorin is a noncollagenous component of the tectorial membrane which plays an essential role in auditory transduction. In several DFNA12 families mutations in TECTA, the gene encoding alpha-tectorin, were shown to cause hearing impairment (HI) with different phenotypes depending on the location of the mutation. Here we report a Turkish family displaying autosomal dominant inherited HI. Linkage analysis revealed significant cosegregation (LOD score: 4.6) of the disease to markers on chromosome 11q23.3- q24. This region contains the TECTA gene which was subsequently sequenced. A nucleotide change in exon 13, 4526T&gt;G, was detected leading to a substitution from cysteine to glycine at codon 1509 of the TECTA protein. This cysteine is located in vWFD4 domain, a protein domain which is supposed to be involved in disulfide bonds and protein-protein interactions. It is conspicuous that the phenotype in this family correlates with other families, also displaying mutations involving conserved cysteines. In all three families these mutations result in progressive HI involving high frequencies. In contrast, mutations which are not affecting the vWFD domains seem to provoke mid-frequency sensorineural HI. Furthermore, evaluation of clinical data in our family revealed a gender effect for the severity of hearing impairment. Males were significantly more affected than females. The identification of the third family displaying a missense mutation in the vWFD domain of alpha-tectorin underlines the phenotype-genotype correlation based on different mutations in TECTA."	"Molecular cloning and characterization of a novel sequence, vof-16, with enhanced expression in permanent ischemic rat brain. We reported previously that chronic hypoperfusion induced by permanent occlusion of the bilateral common carotid arteries (2VO) in rats caused progressive cognitive deficits and neuronal damage in the hippocampus and the white matter. These changes are similar to those observed in human dementia. Reverse transcription-polymerase chain reaction (RT-PCR) differential display was carried out to identify mRNAs encoding the intrinsic factors involved in permanent ischemia from the 2VO rat brain. Over 20 clones which showed different expression levels in 2VO and sham-operated rats were isolated. One of these, named vof-16, was markedly enhanced the expression by 2VO. The whole sequence of vof-16 mRNA was 2098 nt. The distribution of vof-16 transcripts was examined by RT-PCR and in situ hybridization. The results revealed that vof-16 was abundant in the hippocampus, the tenia tecta, the piriform cortex and the area around the aorta. The expression levels of vof-16 in 2VO and sham-operated rat hippocampus were determined by a quantitative PCR method. The expression was abundant in the hippocampus of rats with cognitive impairment induced by 2VO. In contrast, the expression levels of vof-16 were lower in the 2VO rats with no impairment and in sham-operated rats. These results suggest that the expression levels of vof-16 may be related to the cognitive impairment induced by chronic ischemia after 2VO."	"Expression of serotonin1A and serotonin2A receptors in pyramidal and GABAergic neurons of the rat prefrontal cortex. Serotonergic 5-HT1A and 5-HT2A receptors are abundantly expressed in prefrontal cortex (PFC) and are targets of atypical antipsychotic drugs. They mediate, respectively, inhibitory and excitatory actions of 5-HT. The transcripts for both receptors are largely (approximately 80%) colocalized in rat and mouse PFC, yet their quantitative distribution in pyramidal and GABAergic interneurons is unknown. We used double in situ hybridization histochemistry to estimate the proportion of pyramidal and GABAergic neurons expressing these receptor transcripts in rat PFC. The number of GABAergic interneurons (expressing GAD mRNA) was a 22% of glutamatergic neurons (expressing vGluT1 mRNA, considered as putative pyramidal neurons). 5-HT2A receptor mRNA was present in a large percentage of pyramidal neurons (from 55% in prelimbic cortex to 88% in tenia tecta), except in layer VI, where it was localized only in 30% of those neurons. 5-HT2A receptor mRNA was present in approximately 25% of GAD-containing cells except in layer VI (10%). Likewise, approximately 60% of glutamatergic cells contained the 5-HT1A receptor transcript. We also found that approximately 25% of GAD-expressing cells contained the 5-HT1A receptor mRNA. These data help to clarify the role of 5-HT in prefrontal circuits and shed new light to the cellular elements involved in the action of atypical antipsychotics."	"Increased expression of forebrain GnRH mRNA and changes in testosterone negative feedback following pubertal maturation. Pubertal development is associated with increased activity of the gonadotropin releasing hormone (GnRH) neuronal system and rising gonadal steroid levels. The purpose of this study was to determine whether different circulating levels of testosterone affect GnRH mRNA and luteinizing hormone (LH) to the same degree prior to and following pubertal maturation. Pre- and post-pubertal male Syrian hamsters were gonadectomized and treated with timed-release testosterone pellets (0, 0.5, 1.5, or 2.5mg) for one week. Following treatment, three separate brain tissue dissections containing the majority of GnRH cell bodies, tenia tecta and medial septum (TT/MS), diagonal band of Broca/organum vasculosum of the lamina terminalis (DBB/OVLT), and preoptic area (POA), were analyzed for GnRH mRNA levels by RNase protection assay and terminal plasma luteinizing hormone concentrations were determined by radioimmunoassay. Pre-pubertal animals were more sensitive to testosterone negative feedback on LH. Conversely, the ability of testosterone to reduce GnRH mRNA was much greater after pubertal development. Specifically, GnRH mRNA in the TT/MS was considerably higher in adults, and testosterone reduced GnRH mRNA in a dose-dependent manner only in adults. These data indicate that although testosterone is a powerful suppressor of LH release before puberty, it does not have appreciable control over GnRH mRNA until after puberty. Furthermore, the pubertal increase in GnRH mRNA appears to occur via steroid feedback-independent mechanisms in the male Syrian hamster."	"Spatial and temporal expression pattern of a novel gene in the frog Xenopus laevis: correlations with adult intestinal epithelial differentiation during metamorphosis. We report the cloning of a novel gene (ID14) and its expression pattern in tadpoles and adults of Xenopus laevis. ID14 encodes a 315-amino acid protein that has a signal peptide and a nidogen domain. Even though several genes have a nidogen domain, ID14 is not the homolog of any known gene. ID14 is a late thyroid hormone (TH)-regulated gene in the tadpole intestine, and its expression in the intestine does not begin until the climax of metamorphosis, correlating with adult intestinal epithelial differentiation. In contrast, ID14 is expressed in tadpole skin and tail and is not regulated by TH. In situ hybridization revealed that this putative extracellular matrix protein is expressed in the epithelia of the tadpole skin and tail and in the intestinal epithelium after metamorphosis. In the adult, ID14 is found predominantly in the intestine with weak expression in the stomach, lung, and testis. Its exclusive expression in the adult intestinal epithelial cells makes it a useful marker for developmental studies and may give insights into cell/cell interactions in intestinal metamorphosis and adult intestinal stem cell maintenance."	"Characterization of the synaptic properties of olfactory bulb projections. The olfactory bulb directly projects to several diverse telencephalic structures, but, to date, few studies have investigated the physiological characteristics of most of these areas. As an initial step towards understanding the odor processing functions of these secondary olfactory structures, we recorded evoked field potentials in response to lateral olfactory tract stimulation in vivo in urethane-anesthetized Sprague-Dawley rats in the following brain structures: anterior olfactory nucleus, ventral and dorsal tenia tecta, olfactory tubercle, anterior and posterior piriform cortex, the anterior cortical nucleus of the amygdala, and lateral entorhinal cortex. Using paired-pulse stimulation with interpulse intervals of 25-1000 ms, we observed facilitation of the response to the second pulse in every structure examined, although the degree of facilitation varied among the target structures. Additionally, pulse train stimulation at three different frequencies (40, 10 and 2 Hz) produced facilitation of evoked field potentials that also varied among target structures. We discuss the potential utility of such short-term facilitation in olfactory processing."	"Polarity and laminar formation of the optic tectum in relation to retinal projection. The mes-metencephalic boundary (isthmus) works as an organizer for the tectum, and the organizing molecule may be Fgf8. The region where Otx2, En1, and Pax2 are expressed overlappingly may differentiate into the mesencephalon. The di-mesencephalic and mes-metencephalic boundaries are determined by repressive interaction of Pax6 and En1/Pax2 and of Otx2 and Gbx2, respectively. The optic tectum is a visual center in lower vertebrates. The tectum and the retina should be regionalized and be positionally specialized for the proper retinotopic projection. Gradient of En2 plays a crucial role in rostrocaudal polarity formation of the tectum. En2 confers caudal characteristics of the retina by inducing ephrinA2 and A5, which are the repellant molecules for the growth cones of temporal retinal ganglion cells. Grg4 antagonizes the isthmus-related genes, and is involved in the formation of di-mesencephalic boundary and tectal polarity formation at an early phase of development. Then, Grg4 plays a role in tectal laminar formation by controlling the migration pathway. Migration pathway of tectal postmitotic cells changes after E5. The late migratory cells split the early migratory neurons to form laminae h-j of SGFS. Grg4 is expressed in the ventricular layer after E5, and forces postmitotic cells to follow the late migratory pathway, though retinal fibers terminate at laminae a-f of SGFS. Misexpression of Grg4 disrupts the lamina g, and in such tecta retinal arbors invade deep into the tectal layer, indicating that lamina g is a nonpermissive lamina for the retinal arbors."	"Role of the tectorial membrane revealed by otoacoustic emissions recorded from wild-type and transgenic Tecta(deltaENT/deltaENT) mice. Distortion product otoacoustic emissions (DPOAE) were recorded from wild-type mice and mutant Tecta(deltaENT/deltaENT) mice with detached tectorial membranes (TM) under combined ketamine/xylaxine anesthesia. In Tecta(deltaENT/deltaENT) mice, DPOAEs could be detected above the noise floor only when the levels of the primary tones exceeded 65 dB SPL. DPOAE amplitude decreased with increasing frequency of the primaries in Tecta(deltaENT/deltaENT) mice. This was attributed to hair cell excitation via viscous coupling to the surrounding fluid and not by interaction with the TM as in the wild-type mice. Local minima and corresponding phase transitions in the DPOAE growth functions occurred at higher DPOAE levels in wild-type than in Tecta(deltaENT/deltaENT) mice. In less-sensitive Tecta(deltaENT/deltaENT) mice, the position of the local minima varied nonsystematically with frequency or no minima were observed. A bell-like dependence of the DPOAE amplitude on the ratio of the primaries was recorded in both wild-type and Tecta(deltaENT/deltaENT) mice. However, the pattern of this dependence was different in the wild-type and Tecta(deltaENT/deltaENT) mice, an indication that the bell-like shape of the DPOAE was produced by a combination of different mechanisms. A nonlinear low-frequency resonance, revealed by nonmonotonicity of the phase behavior, was seen in the wild-type but not in Tecta(deltaENT/deltaENT) mice."	"The role of connexins in human disease. Connexins are the building blocks of gap junctions. In forming a gap junction, six connexins oligomerize to form a hexameric torus called a connexon. The number of gap junctions in a cell ranges from a few to over 105 and imparts to interconnected cells a uniform phenotype. The crucial role that gap junctions play in normal physiology is reflected by the diverse spectrum of human diseases in which allele variants of different gap junction genes are implicated. In particular, mutations in GJB2 are a major cause of autosomal recessive non-syndromic deafness. This discovery has impacted medical practice and makes it incumbent on clinicians to familiarize themselves with the genetic advances that are rapidly occurring in our field."	"Distinctive audiometric profile associated with DFNB21 alleles of TECTA. NA"	"Demonstration and localization of neuronal degeneration in the rat forebrain following a single exposure to MDMA. Methylenedioxymethamphetamine (MDMA, Ecstasy) is a powerful releaser of serotonin. Increasing recreational use of this stimulant and hallucinogenic drug has raised concerns about its potential to produce brain damage. The vast majority of previous research studies have focused on the compound's ability to deplete serotonin (5-hydroxytryptamine, 5-HT) from axon terminals. Despite extensive research on this '5-HT terminal neurotoxicity', a much less studied aspect of MDMA toxicity involves its ability to actually kill nerve cells. Only two prior studies mention the existence of MDMA-induced neuronal degeneration, as reflected by a limited number of argyrophylic neurons within the somatosensory cortex, following very high doses of MDMA. The development of Fluoro-Jade B as a simple and reliable marker of neuronal degeneration has allowed us to conduct the first comprehensive localization of MDMA induced neuronal degeneration throughout the entire rat forebrain. In addition to the previously reported neuronal degeneration within parietal cortex, degenerating neurons were also observed in the insular/perirhinal cortex, the ventromedial/ventrolateral thalamus, and the tenia tecta. The extent of neuronal degeneration observed generally correlated with the degree of hyperthermia achieved."	"5-Hydroxytryptamine7 (5-HT7) receptor immunoreactivity-positive 'stigmoid body'-like structure in developing rat brains. We examined the expression of 5-hydroxytryptamine(7) (5-HT(7)) receptor protein in developing and adult rats with immunohistochemical technique. In adult male rats, 5-HT(7) receptor immunoreactivity was detected in the septum, striatum, indusium griseum, tenia tecta, thalamus, hippocampus and hypothalamus in the forebrain as well as the pons and cerebellum. In brains of 1, 7, 15 and 21 days old male rats but not of adult ones, 5-HT(7) receptor immunoreactivity-positive dot-like structures were detected. The dot-like structures were visualized in hypothalamus, hippocampus, frontal cortex, brainstem and cerebellum at 1 day old male rats. In 7 days old male rats, the dot-like structures were found in the hypothalamus, medial preoptic area (MPA), bed nucleus of the stria terminalis (BST), amygdaloid nucleus and brainstem reticular formation. In 15 and 21 days old male and female rats, 5-HT(7) receptor immunoreactive dots were most clearly detected in MPA, hypothalamus, raphe pallidus, raphe magnus and brainstem reticular formation. The 5-HT(7) receptor immunoreactivity-positive dot-like structures were shown in the cytoplasm and they were less than 1 microm in diameter in 1 and 7 days old rats and became larger to 1-3 microm in 15 and 21 days old rats. From the distribution and morphologic features, the 5-HT(7) receptor immunoreactivity-positive dot-like structure found in developing rat brains is considered to be identical to a cytoplasmic inclusion named 'stigmoid body'."	"Removal of polysialic acid induces aberrant pathways, synaptic vesicle distribution, and terminal arborization of retinotectal axons. Developing chick retinotectal projections extend rostrally in the superficial stratum opticum of the tectum until they reach their appropriate target zone. They then penetrate, arborize, and form synapses within distinct tectal retinorecipient layers. In this study, we show that the polysialylated neural cell adhesion molecule is expressed both on the membrane of these developing projections and in the stratum opticum and retinorecipient layers during the period of optic innervation. On this basis, the role of polysialic acid was analyzed with respect to both trajectory and arborization in the tectum, using confocal imaging of DiI-labeled retinotectal fibers in whole-mount tecta of embryos pretreated with a polysialic acid-specific degrading enzyme, endoneuraminidase N. The removal of polysialic acid caused several distinct abnormalities, including random dorsal/ventral meandering of fibers in the stratum opticum, a distorted branching and extension of arbors in the retinorecipient layers, and inappropriate synaptic vesicle accumulation in pretarget areas. These findings indicate that the unique ability of polysialic acid to regulate different types of cell interactions is an essential component of axon behavior during multiple steps of tectal target innervation."	"Presynaptic neurotrophin-3 increases the number of tectal synapses, vesicle density, and number of docked vesicles in chick embryos. To determine whether presynaptically derived neurotrophins may contribute to synaptic plasticity, we examined whether neurotrophin-3 (NT-3) changed the number, size, vesicle content, or vesicle distribution of synapses within the retinorecipient layers of the chick optic tectum. In this system, endogenous NT-3 derives presynaptically from retinal ganglion cell axons. Retinotectal synapses comprise the majority of synapses in superficial tectal layers, as demonstrated by destruction of retinotectal input by intraocular application of the drug monensin. To examine the effect of increased or decreased levels of NT-3, either exogenous NT-3 or monoclonal NT-3 blocking antibodies were injected into the optic tectum of 19-day-old chick embryos, spiked with radiolabeled protein to verify the success of injections and estimate effective concentrations. After 48 hours, the ultrastructure of superficial tectal layers was analyzed and compared with samples from control tecta injected with cytochrome C. NT-3 increased the number of synapses, synaptic vesicles/profile, synaptic vesicle densities, the number of docked vesicles, and the length of the synaptic profile. Deprivation of anterogradely transported endogenous NT-3 with NT-3 antibodies resulted in the opposite effect: decreased numbers of synapses, decreased vesicle densities, and decreased numbers of docked vesicles. Brain-derived neurotrophic factor (BDNF) had a largely different effect than NT-3. BDNF increased the density of vesicles and deprivation of endogenous TrkB ligands with TrkB fusion protein reduced the density of vesicles in the synapses, without effects on synapse number or docked vesicles. We conclude that anterogradely transported NT-3 affects synapse strength in a way that differs from that of presumably postsynaptic-derived BDNF."	"Intensity-dependent alteration of minnow (Pimephales promelas) behavior by a brain-encysting trematode. We examined the relationship between the numbers of brain-encysting trematodes (Ornithodiplostomum ptychocheilus) and the magnitude of altered behaviors in fathead minnows (Pimephales promelas). Because cysts develop within a brain region that integrates visual stimuli with motor response. we evaluated the standard optomotor response (OMR). Monitoring this task involved recording the time minnows spent following a spinning drum, on which alternating black and white stripes had been painted. Minnows were exposed to 0, 5, 20, 120, and 300 cercariae and then their OMR was evaluated at 2-wk postinfection. Surprisingly, only minnows that had high numbers of parasites (155 +/- 31 worms/fish) or low numbers of parasites (3 +/- 3 worms/ fish) differed significantly in their optomotor performance compared with controls. Reduced OMR of heavily infected minnows was positively correlated with reduction in minnow activity. In contrast, reduced OMR in lightly infected minnows was independent of host activity and was likely associated with the rapid development of parasite larvae within the optic tecta. The nonlinear relationship between parasite intensity and effect on host behavior was consistent with an earlier study, but the underlying mechanisms producing this pattern are unknown."	"The role of Grg4 in tectal laminar formation. Mature chick optic tecta consist of 16 laminae and receive retinal fiber projections in a precise retinotopic manner. Retinal axons arborize in laminae a-f of the SGFS, but do not cross the border between lamina f and g. In order to elucidate molecular mechanisms of tectal laminar formation, we first looked at the migration of tectal postmitotic cells. We found that the migration pattern of postmitotic cells changes around E5 and that late migratory cells intervened laminae that were formed by early migratory cells. The coincident appearance of Grg4 expression in the tectal ventricular layer and the change in migration pattern suggested an important role for Grg4. Clonal misexpression of Grg4 resulted in cells migrating to laminae h-j of the SGFS. Massive misexpression of Grg4 resulted in disruption of laminae that were formed by early migratory cells, in particular lamina g of the SGFS. Application of Grg4 morpholino antisense oligonucleotide or the misexpression of a dominant-negative form of Grg4 exerted the opposite effect. We concluded that Grg4 may direct tectal postmitotic cells to follow a late migratory pathway."	"Ontogeny and the possible function of a novel epidermal growth factor-like repeat domain-containing protein, NELL2, in the rat brain. In this study we investigated the mRNA expression of NELL2, a neural tissue-specific epidermal growth factor (EGF)-like repeat domain-containing protein, in the developing and adult rat CNS using in situ hybridization histochemistry and northern blot analysis. The possible candidates that interact with or be regulated by NELL2 were screened with a cDNA expression array in antisense (AS) NELL2 oligodeoxynucleotide (ODN)-injected rat hypothalami. NELL2 mRNA was detected as early as embryonic day 10, and was predominant in the CNS throughout the pre-natal stages. Its expression gradually increased during embryonic development and its strong expression was observed throughout the CNS until embryonic day 20. It was detected in the ventricular zone of the spinal cord, medulla and pons in 12-day-old-embryos, suggesting that NELL2 plays a role in the neurogenesis of these areas. After birth its expression gradually decreased, but high levels of expression could be observed in the tenia tecta, piriform cortex, hippocampus, dentate gyrus, cerebellar cortex, ambiguus nucleus, and inferior olivary nucleus of adult rat brains. The analysis of cDNA expression arrays revealed that the administration of AS NELL2 ODN markedly decreased the expression of several Ca2+-binding proteins and those involved in the transport and release of vesicles such as EF-hand Ca2+-binding protein p22 and rab7. This finding was confirmed by relative reverse transcription-polymerase chain reaction. The effect of NELL2 on synaptic vesicle content in median eminence (ME) nerve terminals was determined with synaptophysin levels as a marker protein in the AS NELL2 ODN-injected rat. It was significantly decreased by the AS ODN. These data suggest that NELL2 may play an important role in the development of the CNS as well as maintenance of neural functions, by regulating the intracellular machinery involving Ca2+ signaling, synaptic transport and/or release of vesicles."	"Retrograde tracing of zinc-enriched (ZEN) neuronal somata projecting to the olfactory bulb. Zinc ions seem to be important to several neurological functions and have been connected to the pathophysiology of epilepsy, neuronal cell death after seizure or stroke, and Alzheimer's disease. Both epilepsy and Alzheimer's disease are clinical conditions believed to involve the olfactory bulb. The mammalian olfactory bulb is densely innervated by zinc-enriched (ZEN) neurons, and the distribution of the ZEN terminals in the mouse olfactory bulb has previously been described. The aim of this study was to describe the origins of ZEN terminals projecting into the main olfactory bulb of the rat. Selective labeling of ZEN terminals was accomplished by intracerebral infusion of sodium selenide, whereby zinc selenium clusters are created in the ZEN terminals. Some of these clusters move by retrograde axonal transport to the somata where they can be silver-enhanced by autometallography (AMG). After infusion of sodium selenide into the main olfactory bulb, retrogradely labeled ZEN somata were found (1) ipsilaterally in all anterior olfactory nuclei, taenia tecta, piriform cortex and lateral entorhinal cortex, and (2) contralaterally in anterior olfactory nuclei except the external division. The ipsilateral anterior olfactory nucleus had the densest population of ZEN somata, and it was found that these somata originated mainly from pyramidal neurons in layers II and III of each area. The olfactory-related centrifugal afferents to the main olfactory bulb are discussed."	"Assignment of the canine tectorin alpha gene (TECTA) to CFA5q12--&gt;q13 by FISH and confirmation by radiation hybrid mapping. NA"	"DFNB21. NA"	"Clinical presentation of DFNA8-DFNA12. NA"	"Extracellular matrices associated with the apical surfaces of sensory epithelia in the inner ear: molecular and structural diversity. The ultrastructure and molecular composition of the extracellular matrices that are associated with the apical surfaces of the mechanosensory epithelia in the mouse inner ear are compared. A progressive increase in molecular and structural organization is observed, with the cupula being the simplest, the otoconial membrane exhibiting an intermediate degree of complexity, and the tectorial membrane being the most elaborate of the three matrices. These differences may reflect changes that occurred in the acellular membranes of the inner ear as a mammalian hearing organ arose during evolution from a simple equilibrium receptor. A comparison of the molecular composition of the acellular membranes in the chick inner ear suggests the auditory epithelium and the striolar region of the maculae are homologous, indicating the basilar papilla may have evolved from the striolar region of an otolithic organ. A comparison of the tectorial membranes in the chick cochlear duct and the mouse cochlea reveals differences in the structure of the noncollagenous matrix in the two species that may result from differences in the stochiometry of alpha- and beta-tectorin and/or differences in the post-translational modification of alpha-tectorin. This comparison also indicates that the appearance of collagen in the mammalian tectorial membrane may have been a major step in the evolution of an electromechanically tuned vertebrate hearing organ that operates over an extended frequency range."	"Genetic differentiation between alternate-year cohorts of Xestia tecta (Lepidoptera, Noctuidae) in Finnish Lapland. Several species in the noctuid genus Xestia exhibit periodic dynamics, with two coexisting cohorts flying in alternate years. The population dynamics and two-year life cycle of Xestia moths suggest that the two cohorts are more or less isolated in time. Typically one cohort is abundant and the other one is rare. Knowledge of the extent of isolation between the two cohorts is important to fully understand the population dynamics and the evolution of alternate-year flight in these species. We applied allozyme electrophoresis and mitochondrial genome sequencing to infer the extent of genetic differentiation among different cohorts of Xestia tecta (Hübner) within the same geographical area as well as between cohorts with opposite-phase flight pattern in different geographical regions. We found no evidence for substantial genetic differentiation and isolation between the even- and odd-year cohorts in eastern Lapland, nor between the cohorts in eastern and western Lapland. The most informative markers were the most polymorphic allozyme loci (Pgm and Mpi) and the AT-rich region in the mtDNA. However, owing to the generally low levels of genetic variation it was not possible to establish conclusively the degree of genetic isolation between the different cohorts. We discuss the implications of our results in relation to two different hypotheses which could account for this pattern: ongoing gene flow between different cohorts and recent common ancestry."	"Central olfactory connections in the microsmatic marmoset monkey (Callithrix jacchus). The mammalian primary olfactory system consists of a set of different telencephalic structures, including paleo-, archi-, periarchi- and mesocortical components. We present the first characterisation of the normal and connectional anatomy of the primary olfactory cortex of the common marmoset, a microsmatic simian species increasingly used in primate research. The centrifugal and centripetal bulbar projections were determined by injections of the anterograde and retrograde tracer wheat germ agglutinin-conjugated horseradish peroxidase and fluorescent dyes into the ipsilateral main olfactory bulb. The efferent projections of the marmoset bulb are organised entirely ipsilaterally and are established via a rudimentary medial olfactory tract and the dominant lateral olfactory tract. Target areas are the anterior olfactory nucleus, the entire prepiriform cortex, ventral tenia tecta, periamygdaloid cortex and the rostral part of the entorhinal cortex. The bulbar axons predominantly terminate in the outer part of layer I. The anterior olfactory nucleus receives a weak additional input within layer II and III, which is not found in macrosmatic rodents. Further anterograde labelling was found in the endopiriform nucleus deep under the prepiriform cortex and within an anterolateral strip of the olfactory tubercle. However, control injections into the olfactory tubercle suggest that the marmoset olfactory tubercle receives a bisynaptic olfactory input only. Retrograde labelling after bulb injections revealed that, except for the olfactory tubercle, all primary olfactory cortices contributed to an ipsilateral bulbopetal feedback projection. Like in rodents, the only bulbopetal projection organised bilaterally in the marmoset is maintained by the anterior olfactory nucleus. With few exceptions, the projections of the marmoset olfactory brain are organised similarly to that of the macaque monkey or those of macrosmatic species."	"Hereditary deafness and phenotyping in humans. Hereditary deafness has proved to be extremely heterogeneous genetically with more than 40 genes mapped or cloned for non-syndromic dominant deafness and 30 for autosomal recessive non-syndromic deafness. In spite of significant advances in the understanding of the molecular basis of hearing loss, identifying the precise genetic cause in an individual remains difficult. Consequently, it is important to exclude syndromic causes of deafness by clinical and special investigation and to use all available phenotypic clues for diagnosis. A clinical approach to the aetiological investigation of individuals with hearing loss is suggested, which includes ophthalmology review, renal ultrasound scan and neuro-imaging of petrous temporal bone. Molecular screening of the GJB2 (Connexin 26) gene should be undertaken in all cases of non-syndromic deafness where the cause cannot be identified, since it is a common cause of recessive hearing impairment, the screening is straightforward, and the phenotype unremarkable. By the same token, mitochondrial inheritance of hearing loss should be considered in all multigeneration families, particularly if there is a history of exposure to aminoglycoside antibiotics, since genetic testing of specific mitochondrial genes is technically feasible. Most forms of non-syndromic autosomal recessive hearing impairment cause a prelingual hearing loss, which is generally severe to profound and not associated with abnormal radiology. Exceptions to this include DFNB2 (MYO7A), DFNB8/10 (TMPRSS3) and DFNB16 (STRC) where age of onset may sometimes be later on in childhood, DFNB4 (SLC26A4) where there may be dilated vestibular aqueducts and endolymphatic sacs, and DFNB9 (OTOF) where there may also be an associated auditory neuropathy. Unusual phenotypes in autosomal dominant forms of deafness, include low frequency hearing loss in DFNA1 (HDIA1) and DFNA6/14/38 (WFS1), mid-frequency hearing loss in DFNA8/12 (TECTA), DFNA13 (COL11A2) and vestibular symptoms and signs in DFNA9 (COCH) and sometimes in DFNA11 (MYO7A). Continued clinical evaluation of types and course of hearing loss and correlation with genotype is important for the intelligent application of molecular testing in the next few years."	"Association of clinical features with mutation of TECTA in a family with autosomal dominant hearing loss. The TECTA gene, which encodes alpha-tectorin, has recently been cloned. alpha-Tectorin is a major component of the noncollagenous matrix of the tectorial membrane. Nonsyndromic hearing impairment caused by TECTA mutations has been reported in Austrian, Belgian, Swedish, French, and Lebanese families. The phenotypes and genotypes were different among these families. Our study family displayed autosomal dominant hearing impairment through 3 generations. We sequenced the coding exons of the TECTA gene in 4 affected individuals, and we report the clinical features in a Japanese family with nonsyndromic hearing impairment and a mutation in the TECTA gene. The 5-frequency average of 250, 500, 1000, 2000, and 4000 Hz in 4 affected individuals was 42.2 +/- 3.7 (mean +/- SD) dB in the right ear and 42.3 +/- 4.5 dB in the left ear. The mean age at onset of hearing impairment was 5 years. The progression of hearing impairment was not confirmed for a 15-year period, from the age of 6 to 21 years, in 1 affected member. The 4 patients had a G--&gt;A missense mutation at nucleotide 6063 in exon 20. This mutation replaces arginine at residue 2021 with histidine (R2021H). All 4 affected members showed symmetrical and stable bilateral mild to moderate hearing impairment in the midfrequencies. The mean threshold level of 2000 Hz was the worst among the 5 frequencies. All the affected members had normal vestibular function. The mutation in the TECTA gene, localized in the zona pellucida domain, was detected in all 4 affected individuals. The localization of the mutation in the different modules of the protein may have caused the different clinical features."	"Non-syndromic autosomal-dominant deafness. Non-syndromic deafness is a paradigm of genetic heterogeneity. More than 70 loci have been mapped, and 25 of the nuclear genes responsible for non-syndromic deafness have been identified. Autosomal-dominant genes are responsible for about 20% of the cases of hereditary non-syndromic deafness, with 16 different genes identified to date. In the present article we review these 16 genes, their function and their contribution to deafness in different populations. The complexity is underlined by the fact that several of the genes are involved in both dominant and recessive non-syndromic deafness or in both non-syndromic and syndromic deafness. Mutations in eight of the genes have so far been detected in only single dominant deafness families, and their contribution to deafness on a population base might therefore be limited, or is currently unknown. Identification of all genes involved in hereditary hearing loss will help in the understanding of the basic mechanisms underlying normal hearing, will facilitate early diagnosis and intervention and might offer opportunities for rational therapy."	"Chick PTPsigma regulates the targeting of retinal axons within the optic tectum. Chick PTPsigma (cPTPsigma), also known as CRYPalpha, is a receptor-like protein tyrosine phosphatase found on axons and growth cones. Putative ligands for cPTPsigma are distributed within basement membranes and on glial end feet of the retina, optic nerve, and optic tectum, suggesting that cPTPsigma signaling is occurring along the whole retinotectal pathway. We have shown previously that cPTPsigma plays a role in supporting the retinal phase of axon outgrowth. Here we have now addressed the role of cPTPsigma within retinal axons as they undergo growth and topographic targeting in the optic tectum. With the use of retroviruses, a secretable cPTPsigma ectodomain was ectopically expressed in ovo in the developing chick optic tectum, with the aim of directly disrupting the function of endogenous cPTPsigma. In ovo, the secreted ectodomains accumulated at tectal sites in which cPTPsigma ligands are also specifically found, suggesting that they are binding to these endogenous ligands. Anterograde labeling of retinal axons entering these optic tecta revealed abnormal axonal phenotypes. These included the premature stalling and arborization of fibers, excessive pretectal arbor formation, and diffuse termination zones. Most of the defects were rostral of the predicted termination zone, indicating that cPTPsigma function is necessary for sustaining the growth of retinal axons over the optic tectum and for directing axons to their correct sites of termination. This demonstrates that regulation of cPTPsigma signaling in retinal axons is required for their topographic mapping, the first evidence of this function for a receptor-like protein tyrosine phosphatase in the retinotectal projection."	"Expression of p73 and Reelin in the developing human cortex. Cajal-Retzius (CR) cells of the developing neocortex secrete Reelin (Reln), a glycoprotein involved in neuronal migration. CR cells selectively express p73, a p53 family member implicated in cell survival and apoptosis. Immunocytochemistry in prenatal human telencephalon reveals a complex sequence of migration waves of p73- and Reln-immunoreactive (IR) neurons into the cortical marginal zone (MZ). At early preplate stages, p73/Reln-IR cells arise in distinct sectors of the telencephalon, including cortical primordium and ganglionic eminences. After the appearance of the cortical plate, further p73/Reln-IR cells originate in the medial periolfactory forebrain. In addition, p73 marks a novel cell population that appears at the choroid-cortical junction or cortical hem before the emergence of the dorsal hippocampus. A pronounced mediolateral gradient in the density of p73/Reln-IR neurons in the neocortical MZ at 8 gestational weeks suggests that a subset of CR cells migrate tangentially from cortical hem and taenia tecta into neocortical territory. This hypothesis is supported by the absence of p73-transcripts in prospective neocortex of p73-/-mice at embryonic day 12 (E12), whereas they are present in cortical hem and taenia tecta. In the p73-/- preplate, Reln is faintly expressed in a calretinin-positive cell population, not present in this form in the E12 wild-type cortex. At P2, Reln-IR CR cells are undetectable in the p73-/- cortex, whereas Reln-expression in interneurons is unchanged. Our results point to a close association between p73 and Reln in CR cells of the developing neocortex, with a partial dissociation in early preplate and basal telencephalon, and to a p73-mediated role of the cortical hem in neocortical development."	"The presence and arrangement of type II collagen in the basilar membrane. Previous studies demonstrating the presence of collagen II in the basilar membrane have used a biochemical approach or have used immunohistochemistry at the light microscopic level. In this investigation both the presence and arrangement of collagen II were demonstrated at the ultrastructural level using pre- and post-embedding immunoelectron microscopy. Labeling was dependent on the development of protocols to expose epitopes while maintaining identifiable ultrastructure. Both positive and negative controls indicate that the labeling was specific for collagen II. Collagen II was detected in the fibrous sheet of the pars tecta and in the two fibrous layers of the pars pectinata. It was detected in situ and on isolated individual 10-12 nm fibrils. The presence of collagen II in all the fibrous layers of the basilar membrane places constraints on the biomechanical properties of this important structure."	"Redefining gonadotropin-releasing hormone (GnRH) cell groups in the male Syrian hamster: testosterone regulates GnRH mRNA in the tenia tecta. Gonadotropin-releasing hormone (GnRH) regulates the production of testosterone via the hypothalamic-pituitary-gonadal axis and testosterone, in turn, regulates the GnRH system via negative feedback. We compared testosterone regulation of GnRH mRNA expression in four anatomically defined GnRH cell groups in juvenile and adult male Syrian hamsters, including a rostral population of GnRH cells in the tenia tecta. In situ hybridization histochemistry (ISHH) was used to measure GnRH mRNA in brains from castrated juveniles and adults treated with 0 mg or 2.5 mg testosterone pellets for one week. ISHH was performed on coronal sections using a 35S-cRNA probe generated from Syrian hamster GnRH cDNA. Testosterone treatment resulted in a significant reduction in mean area of GnRH neurones covered by silver grains within the tenia tecta, but only a trend toward decreased GnRH mRNA in the diagonal band of Broca/organum vasculosum of the lamina terminalis (DBB/OVLT), medial septum (MS), and caudal preoptic area (cPOA). The effects of testosterone were independent of age. Frequency distribution analyses unveiled a significant reduction in the number of heavily labelled cells following testosterone treatment within the tenia tecta and MS. Simple regression analyses revealed a significant positive correlation between plasma luteinizing hormone concentrations and GnRH mRNA only in the tenia tecta. These data indicate that, overall, GnRH mRNA is modestly reduced by testosterone, and the most robust attenuation of GnRH mRNA occurs within the tenia tecta. This is the first report to link mechanisms of steroid negative feedback with tenia tecta GnRH neurones, providing a new focus for investigating brain region-specific steroidal regulation of GnRH synthesis."	"CNS inputs to the suprachiasmatic nucleus of the rat. The neural circuits that modulate the suprachiasmatic nucleus (SCN) of the rat were studied with the retrograde transneuronal tracer--pseudorabies virus. First-order afferents were also identified using cholera toxin beta subunit. Olfactory processing regions (viz., main olfactory bulb, anterior olfactory nucleus, taenia tecta, endopiriform nucleus, medial amygdaloid nucleus, piriform cortex, and posteriomedial cortical amygdaloid nucleus) were virally labeled. The subfornical organ directly innervates SCN; two other circumventricular organs: organum vasculosum of the lamina terminalis and area postrema provide multisynaptic inputs. Direct limbic afferents arise from lateral septum, bed nucleus of the stria terminalis, amygdalohippocampal zone, and ventral subiculum; multineuronal connections come from the basolateral and basomedial amygdaloid nuclei, ventral hippocampus, amygdalopiriform area, as well as lateral entorhinal, perirhinal, and ectorhinal cortices. Most preoptic regions project directly to SCN. Multisynaptic inputs come from the lateral preoptic region. Hypothalamic inputs originate from the anterior, arcuate, dorsal, dorsomedial, lateral, paraventricular, posterior, periventricular posterior, retrochiasmatic, subparaventricular, ventromedial and tuberomammillary nuclei. Paraventricular thalamic nucleus, intergeniculate leaflet and zona incerta directly innervate SCN. Polyneuronal inputs arise from the subparafascicular parvicellular thalamic nucleus. Brainstem afferents originate from the pretectum, superior colliculus, periaqueductal gray matter, parabrachial nucleus, pedunculopontine nucleus, raphe system, locus coeruleus, nucleus incertus and reticular formation. Nucleus tractus solitarius, C3 catecholamine region, rostral ventrolateral medulla and spinal trigeminal nucleus provide indirect inputs. We propose that the SCN receives feedback primarily from interoceptive systems such as the circumventricular, autonomic, and neuroendocrine systems that are important in the central regulation of glucose metabolism (e.g., insulin and glucocorticoids)."	"Mechanisms of the release of anterogradely transported neurotrophin-3 from axon terminals. Neurotrophins have profound effects on synaptic function and structure. They can be derived from presynaptic, as well as postsynaptic, sites. To date, it has not been possible to measure the release of neurotrophins from axon terminals in intact tissue. We implemented a novel, extremely sensitive assay for the release and transfer of anterogradely transported neurotrophin-3 (NT-3) from a presynaptic to a postsynaptic location that uses synaptosomal fractionation after introduction of radiolabeled NT-3 into the retinotectal projection of chick embryos. Release of the anterogradely transported NT-3 in intact tissue was assessed by measuring the amount remaining in synaptosomal preparations after treatment of whole tecta with pharmacological agents. Use of this assay reveals that release of NT-3 from axon terminals is increased by depolarization, calcium influx via N-type calcium channels, and cAMP analogs, and release is most profoundly increased by excitation with kainic acid or mobilization of calcium from intracellular stores. NT-3 release depends on extracellular sodium, CaM kinase II activity, and requires intact microtubules and microfilaments. Dantrolene inhibits the high potassium-induced release of NT-3, indicating that release of calcium from intracellular stores is required. Tetanus toxin also inhibits NT-3 release, suggesting that intact synaptobrevin or synaptobrevin-like molecules are required for exocytosis. Ultrastructural autoradiography and immunolabel indicate that NT-3 is packaged in presumptive large dense-core vesicles. These data show that release of NT-3 from axon terminals depends on multiple regulatory proteins and ions, including the mobilization of local calcium. The data provide insight in the mechanisms of anterograde neurotrophins as synaptic modulators."	"Quantification of TECTA and DFNA5 expression in the developing mouse cochlea. TECTA and DFNA5 are the mouse orthologues of the human deafness-associated genes TECTA and DFNA5. To determine how expression of these genes is regulated during development, relative mRNA abundance was examined in mice by non-radioactive RT-PCR. TECTA mRNA was detected on embryonic day 15 (E15), increased to its highest level on postnatal day 3 (P3) and then dramatically decreased by P15. Low levels persisted (adulthood, P45 to 67) with mean mRNA abundance after P15 less than 25% of P3 levels. DFNA5 mRNA expression was constant throughout these time points. These results imply that TECTA is transcribed at a particularly high level during tectorial membrane morphogenesis. In contrast, DFNA5 is present in both the developing and mature cochlea."	"Regional specificity of ethanol and NMDA action in brain revealed with FOS-like immunohistochemistry and differential routes of drug administration. Inhibition of NMDA receptor function in brain is believed to be an important action of ethanol (EtOH). To investigate EtOH inhibition of NMDA receptor responses in vivo, the interaction of these agents in brain after different routes of administration were investigated by using transcription factor Fos protein expression to follow NMDA receptor activation and EtOH inhibition of this response. The induction of Fos-like immunoreactivity (Fos-LI) in 38 regions of the rat brain was measured 2 hr after treatment with NMDA, EtOH, or both. To determine the relative contribution of abdominal drug effects on Fos induction, rats received either intraperitoneal (ip) or intragastric (ig) EtOH and ip or intravenous (iv) NMDA. Rats received EtOH (2.5 g/kg ip or 4 g/kg ig) or vehicle 15 min before NMDA (125 mg/kg ip or 60 mg/kg iv) or vehicle. For the 38 forebrain regions examined, ip and iv NMDA significantly induced Fos-LI in 13 and 32 regions, respectively. These effects occurred without elicitation of tonic-clonic seizure activity and were strong after iv NMDA in the frontal, prefrontal, and cingulate cortices, supraoptic nucleus, anterior lateral septum, and dentate gyrus. For EtOH, prominent Fos-LI induction was found in the central amygdala, dorsolateral bed nucleus of the stria terminalis, Edinger-Westphal nucleus, and paraventricular hypothalamus. Despite ip and ig EtOH induction of Fos-LI in these regions, the major effect of EtOH was to block NMDA-induced Fos-LI in 8 of 13 (ip) and 27 of 32 (ig) of the NMDA-positive regions, respectively, including retrosplenial, cingulate, and medial prefrontal cortices, central amygdala, and taenia tecta. These results provide new evidence for the regionally specific functional interactions of EtOH on NMDA receptors in vivo. Moreover, these results support efforts to identify brain region-specific targets for EtOH and EtOH-induced changes in gene expression."	"MAP2 phosphorylation and visual plasticity in Xenopus. Microtubule-associated protein 2 (MAP2) has been implicated in activity-dependent structural changes in dendrites. MAP2 regulates the assembly of cytoskeletal proteins such as microtubules and actin, and its function is phosphorylation-dependent. In hippocampus, MAP2 has been reported to be dephosphorylated by activation of the NMDA-type glutamate receptor, a key player in synaptic plasticity. In this work, we used a phospho-specific MAP2 antibody (Ab 305) that recognizes epitopes close to the microtubule-binding domain to investigate the possible role of MAP2 in the Xenopus visual system. The binocular system in Xenopus exhibits activity-dependent synapse rearrangement during a critical period of development. We have found that, in critical period animals, NMDA receptor activation leads to the dephosphorylation of MAP2 at sites recognized by Ab 305 in a dose-dependent manner. We compared the responses of MAP2 to NMDA treatment in animals with high binocular plasticity (critical period juveniles and dark-reared adults) and low plasticity (normal adults). Our results show that, in all groups, NMDA treatment induces the dephosphorylation of MAP2. Tecta from frogs with different degrees of plasticity show no differences in the baseline level of MAP2 phosphorylation or in the NMDA-induced MAP2 dephosphorylation response. These results suggest that activity may modify dendrite structure via the NMDA receptor--MAP2-cytoskeletal protein pathway, but this pathway does not seem to be a determinant of the degree of plasticity."	"Expression of c-Fos in Alko alcohol rats responding for ethanol in an operant paradigm. Identification of the brain regions involved in ethanol administration is important for understanding the neurobiology of ethanol addiction. Animal studies with different brain mapping techniques found that voluntary ethanol self-administration leads to changes in activity of specific brain regions in patterns that only partially overlap with patterns of brain regions affected by involuntary (i.e., experimenter-administered) ethanol administration. As an extension of studies mapping changes in neural activity after voluntary ethanol drinking, this study analyzed expression of the inducible transcription factor c-Fos after ethanol consumption in an operant procedure. AA (Alko alcohol) rats were trained to operantly respond for water, 0.2% saccharin, 0.2% saccharin/10% (w/v) ethanol, or 10% ethanol in a 30-min limited-access procedure. Animals were allowed to self-administer solutions for at least 40 ethanol response sessions and were killed 1.5 hr after beginning of the last session. Forty-seven brain regions were immunohistochemically analyzed for c-Fos expression. In this paradigm, ethanol dose-dependently increased c-Fos expression in the Edinger-Westphal nucleus (EW) and decreased expression in the dorsal tenia tecta compared with no-ethanol controls. No effects of saccharin on c-Fos expression were found. Our results extend previous findings of preferential sensitivity of EW to alcohol in voluntary self-administration procedures to operant responding for ethanol and warrant further investigation of ethanol's effects on the EW. The finding that ethanol attenuated c-Fos expression in the tenia tecta is novel. Taken together, these findings confirm that voluntary ethanol self-administration leads to changes in activity of a limited number of brain regions with previously unexamined roles in ethanol sensitivity and addiction."	"A cysteine substitution in the zona pellucida domain of alpha-tectorin results in autosomal dominant, postlingual, progressive, mid frequency hearing loss in a Spanish family. NA"	"Adaptive adjustment of connectivity in the inferior colliculus revealed by focal pharmacological inactivation. In the midbrain sound localization pathway of the barn owl, a map of auditory space is synthesized in the external nucleus of the inferior colliculus (ICX) and transmitted to the optic tectum. Early auditory experience shapes these maps of auditory space in part by modifying the tuning of the constituent neurons for interaural time difference (ITD), a primary cue for sound-source azimuth. Here we show that these adaptive modifications in ITD tuning correspond to changes in the pattern of connectivity within the inferior colliculus. We raised owls with an acoustic filtering device in one ear that caused frequency-dependent changes in sound timing and level. As reported previously, device rearing shifted the representation of ITD in the ICX and tectum but not in the primary source of input to the ICX, the central nucleus of the inferior colliculus (ICC). We applied the local anesthetic lidocaine (QX-314) iontophoretically in the ICC to inactivate small populations of neurons that represented particular values of frequency and ITD. We measured the effect of this inactivation in the optic tecta of a normal owl and owls raised with the device. In the normal owl, inactivation at a critical site in the ICC eliminated responses in the tectum to the frequency-specific ITD value represented at the site of inactivation in the ICC. The location of this site was consistent with the known pattern of ICC-ICX-tectum connectivity. In the device-reared owls, adaptive changes in the representation of ITD in the tectum corresponded to dramatic and predictable changes in the locations of the critical sites of inactivation in the ICC. Given that the abnormal representation of ITD in the tectum depended on frequency and was likely conveyed directly from the ICX, these results suggest that experience causes large-scale, frequency-specific adjustments in the pattern of connectivity between the ICC and the ICX."	"Role of aquaporin-4 water channel in the development and integrity of the blood-brain barrier. In this study, we have investigated the expression of aquaporin 4 during blood-brain barrier development in the optic tectum of chick embryos and newly hatched chicks, by means of western-blot, reverse transcriptase-polymerase chain reaction, immunohistochemistry, and freeze-fracture and high-resolution immunogold electron microscopy. In the optic tecta of day-14 embryos, western blot analysis revealed an approx. 30 kDa band, immunoreactive for aquaporin-4, which was increased in day-20 embryos and in chicks. Semi-quantitative reverse transcriptase chain reaction experiments showed that there was already a high level of aquaporin-4 mRNA in day-9 embryos as well as in the subsequent stages and in newly hatched chicks. Immunohistochemically, reactivity for aquaporin-4 was detected in the optic tectum of day-14 embryos; similar results were obtained in telencephalon and cerebellum. Ultrastructurally, the microvessels of the tectum showed immunoreactivity for aquaporin-4 on the astroglial endfeet, which discontinuously surrounded endothelial cells joined by immature tight junctions. In the tectum, telencephalon and cerebellum of 20-day embryos and chicks, aquaporin-4 strongly labeled the ependymal cells and the subpial glial membranes, as well as the bodies and processes of astroglial cells. A continuous aquaporin-4 staining was found around the microvessel endothelial cells, which were sealed off from one another by extensive tight junctions. A complete astrocytic sheath, labeled by anti-aquaporin-4 gold particles, enveloped the endothelium-pericyte layer. Orthogonal arrays of particles were observed on fractured astrocytic membranes, starting from embryonic day 14 when the aquaporin-4 immunogold staining revealed clusters of gold particles, often forming square or rectangular clusters. The results showed that aquaporin-4 expression and organization of the intramembrane particles in orthogonal arrays followed the same temporal sequence. Finally, the lipopolysaccharide, a substance that induces blood-brain barrier disruption, determines a remarkable reduction in aquaporin-4 labeling, expressed by a few aquaporin-4 gold particles attached on swollen perivascular glial membranes. All these data show that aquaporin-4 expression occurs in the chick embryonic brain, in parallel with maturation and functioning of the blood-brain barrier and suggest that there is a close relationship between water transport regulation and brain development."	"Localization of 5-HT(7) receptors in rat brain by immunocytochemistry, in situ hybridization, and agonist stimulated cFos expression. 5-HT(7) receptors are recently identified members of the serotonin receptor family that have moderate to high affinity for several important psychotropic drugs. However, the lack of selective ligands has impeded the study of the brain distribution of these receptors. In this report, we describe the localization of 5-HT(7) receptor in rat forebrain by immunocytochemistry, in situ hybridization of 5-HT(7) mRNA, and functional stimulation of cFOS expression by 5-HT(7) receptor activation. The anatomical localization of 5-HT(7) mRNA in situ hybridization signal. Prominent immunostaining was apparent in numerous sites within the cerebral cortex, hippocampal formation, tenia tecta, thalamus and hypothalamus. 5-HT(7) receptors were detected in suprachiasmatic nucleus by both immunocytochemistry and in situ hybridization. At a microscopic level, both cell bodies and proximal fibers were strongly stained in these regions, suggesting a somatodendritic subcellular distribution. 5-HT(7) receptor-like immunoreactivity was further compared with 5-HT(7) mediated biological function by administering 8-OH-DPAT intracerebroventricular injection (icv)with WAY 100135 (to block 5-HT(1A) receptors) followed by double immunostaining localization of cFos activation and 5-HT(7) receptors. In all regions examined, cFos stimulation and 5-HT(7)-like immunoreactivity colocalized to the same neurons. Furthermore, cFos activation by 8-OH-DPAT was blocked by pimozide--a 5-HT(7) antagonist. Therefore, by using multiple strategies, we were able to localize 5-HT(7) receptors in rat brain unequivocally. The distribution of these receptors is consistent with their involvement in the control of circadian activity and the action of anti-depressants and atypical neuroleptics."	"Expression of the Per1 gene in the hamster: brain atlas and circadian characteristics in the suprachiasmatic nucleus. Recent progress in study on the molecular component of mammalian clocks has claimed that mammals and Drosophila share the similar fundamental clock oscillating system. In the present study, we investigated expression of Per1, the first gene of the mammalian homolog of the Drosophila clock gene period, in the hamster brain, and we also examined its circadian expression pattern in the mammalian clock center, the suprachiasmatic nucleus (SCN). In situ hybridization using isotope-labeled cRNA probes revealed a wide and region-specific distribution of Per1 in the hamster brain and spinal cord. High levels of Per1 were found in the internal granular layer of the granular cells of the olfactory bulb, anterior olfactory nuclei, tenia tecta, olfactory tubercle, piriform cortex, suprachiasmatic nucleus, and gyrus dentatus of hippocampus. Moderate levels of expression were detected in many brain regions including the granular layer of the cerebellum, anterior paraventricular thalamic nucleus, caudate-putamen, inferior colliculus, pontine nuclei, inferior olive, and nucleus of the solitary tract. We examined the circadian profile of hamster Per1 mRNA in the SCN in constant darkness and found that Per1 expression showed a peak at subjective day (circadian time [CT] 4) and formed a trough at subjective night (CT16-CT20). A brief exposure of light at CT16 could acutely induce large quantities of Per1 mRNA in the hamster SCN, except for its dorsomedial subdivision. These findings suggest that the characteristics of Per1 gene expression in the mammalian circadian center (showing a peak in the daytime and a trough in the nighttime and a rapid inducibility by light) are common among mammalian species. Lastly, in hamster brain, Per1 gene is also inducible in extra-SCN brain nuclei, since light at night also elicited Per1 mRNA in neurons of the hypothalamic paraventricular nucleus."	"Neuronal degeneration in the limbic system of weanling rats exposed to saline, hyperthermia or d-amphetamine. Neuronal degeneration was detected in the tenia tecta and other regions of the anterior limbic system of male weanling rats 3 days after four doses of 5 mg/kg d-amphetamine (4 x 5 mg/kg AMPH) when seizures occurred during AMPH exposure. Neurodegeneration in the parietal cortex, loss of tyrosine hydroxylase immunoreactivity in the caudate-putamen (CPu) and decreases in CPu tissue dopamine levels in weanlings was much less than those previously observed in adults. The neurotoxicity seen in the parietal cortex and CPu of the weanlings was much less than previously seen in adults even though severe hyperthermia and the behavior of retrograde propulsion occurred during AMPH exposure. Neurodegeneration was not detected in any of the previously mentioned brain regions in controls and weanlings made hyperthermic by a warm environment. However, signs of spontaneous neurodegeneration were seen in the posterior piriform cortex (Pir), posteriolateral cortical amygdaloid nucleus (PLCo), and the amygdalopiriform transition area (APir) of control weanlings. The doses of AMPH and the degree of hyperthermia necessary to induce seizures were substantially lower in weanlings compared to those previously observed in adult rats. Further studies will be necessary to determine if the susceptibility of weanlings to AMPH-induced seizures is related to or dependent on the same processes involved in producing degeneration in the posterior limbic system of saline controls."	"A targeted deletion in alpha-tectorin reveals that the tectorial membrane is required for the gain and timing of cochlear feedback. alpha-tectorin is an extracellular matrix molecule of the inner ear. Mice homozygous for a targeted deletion in a-tectorin have tectorial membranes that are detached from the cochlear epithelium and lack all noncollagenous matrix, but the architecture of the organ of Corti is otherwise normal. The basilar membranes of wild-type and alpha-tectorin mutant mice are tuned, but the alpha-tectorin mutants are 35 dB less sensitive. Basilar membrane responses of wild-type mice exhibit a second resonance, indicating that the tectorial membrane provides an inertial mass against which outer hair cells can exert forces. Cochlear microphonics recorded in alpha-tectorin mutants differ in both phase and symmetry relative to those of wild-type mice. Thus, the tectorial membrane ensures that outer hair cells can effectively respond to basilar membrane motion and that feedback is delivered with the appropriate gain and timing required for amplification."	"Sound amplification in the inner ear: it takes TM to tango. NA"	"Foveate vision in deep-sea teleosts: a comparison of primary visual and olfactory inputs. The relative importance of vision in a foveate group of alepocephalid teleosts is examined in the context of a deep-sea habitat beyond the penetration limits of sunlight. The large eyes of Conocara spp. possess deep convexiclivate foveae lined with Müller cells comprising radial shafts of intermediate filaments and horizontal processes. Photoreceptor cell (171.8 x 10(3) rods mm(-2)) and retinal ganglion cell (11.9 x 10(3) cells mm(-2)) densities peak within the foveal clivus and the perifloveal slopes, respectively, with a centro-peripheral gradient between 3:1 (photoreceptors) and over 20:1 (ganglion cells). The marked increase in retinal sampling localized in temporal retina, coupled with a high summation ratio (13:1), suggest that foveal vision optimizes both spatial resolving power and sensitivity in the binocular frontal visual field. The elongated optic nerve head is comprised of over 500 optic papillae, which join at the embryonic fissure to form a thin nervous sheet behind the eye. The optic nerve is divided into two axonal bundles; one receiving input from the fovea (only unmyelinated axons) and the other from non-specialized retinal regions (25% of axons are myelinated), both of which appear to be separated as they reach the visual centres of the central nervous system. Comparison of the number of primary (first-order) axonal pathways for the visual (a total of 63.4 x 10(6) rod photoreceptors) and olfactory (a total of 15.24 x 10(3) olfactory nerve axons) inputs shows a marked visual bias (ratio of 41:1). Coupled with the relative size of the optic tecta (44.0 mm3) and olfactory bulbs (0.9 mm3), vision appears to play a major role in the survival of these deep-sea teleosts and emphasizes that ecological and behavioural strategies account for significant variation in sensory brain structure."	"Gradients of ephrin-A2 and ephrin-A5b mRNA during retinotopic regeneration of the optic projection in adult zebrafish. Regeneration of optic axons in the continuously growing optic system of adult zebrafish was analyzed by anterograde tracing and correlated with the mRNA expression patterns of the recognition molecules ephrin-A2 and ephrin-A5b in retinal targets. The optic tectum and diencephalic targets are all reinnervated after a lesion. However, the rate of erroneous pathway choices was increased at the chiasm and the bifurcation between the ventral and dorsal brachium of the optic tract compared to unlesioned animals. Tracer application to different retinal positions revealed retinotopic reinnervation of the tectum within 4 weeks after the lesion. In situ hybridization analysis indicated the presence of rostral-low to caudal-high gradients of ephrin-A2 and ephrin-A5b mRNAs in unlesioned control tecta and after a unilateral optic nerve lesion. By contrast, the parvocellular superficial pretectal nucleus showed retinotopic organization of optic fibers but no detectable expression of ephrin-A2 and ephrin-A5b mRNAs. However, a row of cells delineating the terminal field of optic fibers in the dorsal part of the periventricular pretectal nucleus was intensely labeled for ephrin-A5b mRNA and may thus provide a stop signal for ingrowing axons. Ephrin-A2 and ephrin-A5b mRNAs were not detectable in the adult retina, despite their prominent expression during development. Thus, given a complementary receptor system in retinal ganglion cells, expression of ephrin-A2 and ephrin-A5b in primary targets of optic fibers in adult zebrafish may contribute to guidance of optic axons that are continuously added to the adult projection and of regenerating axons after optic nerve lesion."	"Transient up-regulation of the rostrocaudal gradient of ephrin A2 in the tectum coincides with reestablishment of orderly projections during optic nerve regeneration in goldfish. During development, a graded expression of ephrin A2 has been implicated in retinotectal map formation. Here we have examined ephrin A2 expression during optic nerve regeneration in the mature goldfish. In the tecta of normal animals, a gradient of ephrin A2 expression is detected in cell bodies within the stratum fibrosum et griseum superficiale with more immunopositive cells caudally than rostrally. The gradient in the mature animal presumably reflects the plasticity associated with continued retinal and tectal neurogenesis. During optic nerve regeneration, expression throughout the tectum is increased by 1 month as a strong rostrocaudal gradient. The gradient declines to normal by 3 months. The up-regulation of ephrin A2 during optic nerve regeneration is likely to be instrumental in reestablishing the retinotectal map."	"Normal corpus callosum in Emx1 mutant mice with C57BL/6 background. The Emx1 gene is a mouse homologue of a Drosophila head gap gene, empty spiracles. Corpus callosum defects have been reported for mutant mice lacking the Emx1 gene, indicating a possible involvement of the Emx1 gene in the regulation of axon guidance during development. However, it has recently come to light that genetic background could influence the outcome of the corpus callosum defects in mutant mice generated by ES cell technology. To investigate whether the corpus callosum defects resulted directly from Emx1 gene inactivation, we backcrossed the Emx1 mutant mice into the C57BL/6 background and found that the Emx1 homozygous mutant mice with the C57BL/6 background showed a normal corpus callosum score even though the cross-sectional area was 8% less than that of their wild-type littermates, indicating that genetic background could change the pattern of corpus callosum defects in Emx1 mutant mice. Furthermore, the indusium griseum and taenia tecta were always present and the cerebral cortical layers were well differentiated in Emx1 mutant mice. These results suggest that inactivation of the Emx1 gene does not contribute directly to the defects of corpus callosum and other brain structures associated with Emx1 mutant mice derived from a 129/Sv background."	"Alpha-tectorin involvement in hearing disabilities: one gene--two phenotypes. The human alpha-tectorin (TECTA) gene has recently been cloned and proposed to be involved in autosomal dominant non-syndromic hearing impairment (NSHI) in two families linked to the DFNA12 locus. We have studied a Swedish pedigree with autosomal dominant NSHI with possible digenic inheritance of the disease, involving locus DFNA12 in chromosome 11 and locus DFNA2 in chromosome 1. Mutation analysis of the TECTA gene in this family has identified eight nucleotide substitutions indicating that TECTA is highly polymorphic. One of the changes results in a cysteine to serine (C 1057 S) mutation, in the zonadhesin domain of TECTA; this segregates with the disease haplotype on chromosome 11 and is not present in a control population. The mutation results in the replacement of a cysteine in one of the repeats of the zonadhesin/Von Willebrand domain of the protein and might cause a change in the crosslinking of the polypeptide. These findings add support to the involvement of TECTA in hearing disabilities. However, the three families carrying different TECTA mutations also show phenotypic differences: the hearing loss ranges from prelingual to progressive with late onset. The explanation for the different phenotypes and some clues regarding the functions of TECTA may lie in the localization of the mutations in the different modules of the protein. Another possibility is that the phenotype in the Swedish family is the result of two defective genes."	"Pollen morphology, exine structure, and systematics of Acalyphoideae (Euphorbiaceae), part 3. Tribes Epiprineae (Epiprinus, Symphyllia, Adenochlaena, Cleidiocarpon, Koilodepas, Cladogynos, Cephalocrotonopsis, Cephalocroton, Cephalomappa), Adelieae (Adelia, Crotonogynopsis, Enriquebeltrania, Lasiocroton, Leucocroton), Alchorneae (Orfilea, Alchornea, Coelebogyne, Aparisthmium, Bocquillonia, Conceveiba, Gavarretia), Acalypheae pro parte (Ricinus, Adriana, Mercurialis, Leidesia, Dysopsis, Wetria, Cleidion, Sampantaea, Macaranga). This is the third paper of an extensive study of pollen morphology and exine structure of Acalyphoideae (Euphorbiaceae) following the most recent system of Webster. Pollen from 120 collections representing 96 species and 30 genera is described and illustrated with light microscopy, scanning and transmission electron microscopy. These taxa are from tribes Epiprineae, Adelieae, Alchorneae, and Acalypheae pro parte. Pollen of eight genera, Epiprinus, Symphyllia, Adenochlaena, Cleidiocarpon, Koilodepas, Cladogynos, Cephalocrotonopsis and Cephalocroton, of the nine assigned to Epiprinae share 3-colporate apertures, microreticulate, punctate or deeply punctate tecta, well developed or prominent columellae (Koilodepas excepted) and thin foot layers; pollen of the ninth genus, Cephalomappa, has porelike colpi, a coarsely reticulate exine, irregular columellae and an irregular foot layer. Of the five genera assigned to Adelieae, pollen of Adelia, Lasiocroton and Leucocroton is similar: 3-colp(oroid)ate with stratified opercula, crotonoid tecta and thin foot layers; grains of Enriquebeltrania and Crotonogynopsis lack opercula and the latter has a distinctive infratectum of poorly differentiated columellae. All genera examined of tribe Alchorneae, seven of the nine, have exines with unstratified opercula and elongated columellae near the endoaperture. Exines of subtribe Alchorneinae (Orfilea, Alchornea, Coelebogyne, Aparisthmium, Bocquillonia) have complex infratecta of poorly differentiated columellae, whereas pollen of Conceveiba and Gavarretia, the two genera examined of the three assigned to subtribe Conceveibinae, has a single layer of short columellae and almost identical tectal morphology. In the large tribe Acalypheae, pollen of the first six of the 11 subtribes was examined. Pollen of Ricinus (Ricininae) and Adriana (Adrianinae) share indistinguishable exine structures and tecta. Pollen of Mercurialis and Leidesia of subtribe Mercurialinae and pollen of Dysopsis of subtribe Dysopsidinae are almost identical: finely reticulate tecta, very thin apertural endexines, elongate columellae, and channeled/perforate foot layers. All three genera of subtribe Cleidiinae have grains that are 3-colporate and have complete tecta; pollen of Wetria has a tectum morphology very similar to that of Ricinus and Adriana; pollen of Cleidion is 3-brevicolporate with microrugulose or punctate tecta, and has threadlike non-apertural endexines and foot layers, and thick tecta; exines of Sampantaea have an endexine throughout the grain, thin foot layers, very short columellae and a thick continuous tectum. Pollen of Macaranga of subtribe Macaranginae is small, 3-colporate with poorly defined endoapertures, and an exine structure characterized by thin foot layers, short columellae, and thick tecta. Pollen data support: the concept of the subtribe Epiprininae, but indicate that subtribe Cephalomappinae (Cephalomappa) is not related and should be considered for separate tribal status; a close relationship among Adelia, Lasiocroton and Leucocroton, but not with the two remaining members of Adelieae, Enriquebeltrania and Crotonogynopsis, which do not appear to be closely related to each other; the present concept of Alchorneae and subtribes Alchorneinae and Conceveibinae. Within the genera examined of the first six subtribes of Acalypheae, the pollen data: support a close relationship between the monogeneric subtribes Ricininae and Adrianinae; indicate a close relationship between subtribes Mercurialinae (Mercurialis, Leidesia) and Dysopsidinae (Dysopsis); suggest that Wetria is not closely related to Cleidion or Sampantaea (Cleidiinae); tentatively support the concept of Macaranginae as comprising only Macaranga."	"Distribution and development of nicotinic acetylcholine receptor subtypes in the optic tectum of Rana pipiens. Acetylcholine allows the elicitation of visually evoked behaviors mediated by the frog optic tectum, but the mechanisms behind its effects are unknown. Although nicotinic acetylcholine receptors (nAChRs) exist in the tectum, their subtype has not been assessed. By using quantitative autoradiography, we examined the binding of [(3)H]cytisine and [(125)I]alpha-bungarotoxin in the laminated tectum. In mammalian systems, these radioligands bind with high affinity to alpha4 nAChR subunits and alpha7 nAChR subunits, respectively. [(3)H]Cytisine demonstrated high specific binding in adult frogs in retinorecipient layer 9, intermediate densities in layer 8, and low binding in layers 1-7 of the tectum. [(3)H]Cytisine binding was significantly higher in the tecta of adults than in those of tadpoles. Lesioning the optic nerve for 6 weeks decreased [(3)H]cytisine binding in layers 8/9 by 70+/-1%, whereas 6-month lesions decreased binding by 76+/-3%. Specific binding of [(125)I]alpha-bungarotoxin in adults was present only at intermediate levels in tectal layers 8 and 9, and undetectable in the deeper tectal layers. However, the nucleus isthmi, a midbrain structure reciprocally connected to the tectum, exhibited high levels of binding. There were no significant differences in tectal [(125)I]alpha-bungarotoxin binding between tadpoles and adults. Six-week lesions of the optic nerve decreased tectal [(125)I]alpha-bungarotoxin binding by 33+/-10%, but 6-month lesions had no effect. The pharmacokinetic characteristics of [(3)H]cytisine and [(125)I]alpha-bungarotoxin binding in the frog brain were similar to those demonstrated in several mammalian species. These results indicate that [(3)H]cytisine and [(125)I]alpha-bungarotoxin identify distinct nAChR subtypes in the tectum that likely contain non-alpha7 and alpha7 subunits, respectively. The majority of non-alpha7 receptors are likely associated with retinal ganglion cell terminals, whereas alpha7-containing receptors appear to have a different localization."	"A site of auditory experience-dependent plasticity in the neural representation of auditory space in the barn owl's inferior colliculus. The barn owl's optic tectum contains a map of auditory space that is based, in part, on a map of interaural time difference (ITD). Previous studies have shown that this ITD map is shaped by auditory experience. In this study, we investigated whether the plasticity responsible for experience-induced changes in ITD tuning in the tectum occurs within the tectum itself or at an earlier stage in the auditory pathway. We altered auditory experience in young owls by implanting an acoustic filtering device in one ear that caused frequency-dependent changes in sound timing and level. We analyzed the representation of ITD in normal and device-reared owls in two nuclei in the ascending pathway: the external nucleus of the inferior colliculus (ICX), the primary source of ascending auditory input to the tectum, and the lateral shell of the central nucleus of the inferior colliculus (ICCls), the primary source of input to the ICX. In the ICX, device rearing caused adaptive, frequency-dependent changes in ITD tuning, as well as changes in frequency tuning. These changes in tuning were similar to changes that occurred in the optic tectum in the same owls. In contrast, in the ICCls, tuning for ITD and frequency was unaffected by device rearing. The data indicate that plasticity at the level of the ICX is largely responsible for the adaptive adjustments in ITD tuning and frequency tuning that are observed in the optic tecta of owls raised with abnormal auditory experience."	"[Disruption of the arteria nutricia tibiae by reamed and unreamed intramedullary nailing. Study of the vascular architecture of the human tibial intramedullary cavity]. By reason of the pseudarthrotic healing of fractures due to vascular complications after reamed and unreamed intramedullary nailing, the intraosseous course and branching of the tibial nutrient artery and its impairment by nailing procedures needs an actual analysis. The nutrient vessel of 24 tibiae taken from fresh corpses were prepared by injection of Technovit and lead oxide. After this procedure the medullary cavities of 12 bones were opened by a frontal cut. These specimens were subjected to routine maceration. The other 12 tibiae were naed with the unreamed (6) and the reamed nailing (6) techniques. X-rays were also taken routinely. After penetration of the tibial compact bone the main trunk of the nutrient vessel runs through a perforated osseous tunnel (pars tecta arteriae nutriciae tibiae). At its end the vessel divides into a descending branch (obligate) and two ascending branches (facultative). The descending branch lies near to the centromedial region of the medullary cavity which is termed as the pars liberal arteriae nutriciae tibiae. All branches pass through supporting horizontal osseous lamellas. Due to this topography the reamed nailing technique destroyed the nutrient vessel completely in all specimens. In contrast to this observation the unreamed nailing destroyed the vessel completely only in 1 (16.7%) and partially in 3 (50%) bones; 2 (33.3%) specimens exhibited no destruction of the vessel. The unreamed as well as the reamed nailing technique can destroy the intramedullary course of the tibial nutrient artery. Fractures as well as displacement osteotomies or corticotomies are able to diminish the medullary blood supply seriously, if they are localised within the area of the tactic an of the tibial nutrient artery."	"Evidence for physiological asymmetries in the intertectal connections of the pigeon (Columba livia) and their potential role in brain lateralisation. In pigeons, visual object processing is lateralised with a dominance of the left tectofugal system. To test the hypothesis, that avian visual lateralisation may arise, at least in part, from asymmetric interhemispheric inhibition, the intertectal modulation was quantified in 19 pigeons. Field potentials were recorded from intratectal electrodes in response to a stroboscope flash to the contralateral eye. Electrical stimulation of the contralateral tectum changed these flash-evoked potentials. This change was taken as a measure of intertectal modulation. It was found that the left-to-right tectotectal modulation was more pronounced than vice versa, supporting the hypothesis of an asymmetric modulation between the tecta of both hemispheres. It is conceivable that this lateralised interhemispheric crosstalk could constitute an important component of asymmetric visual processing."	"Light experience and lateralization of the two visual pathways in the chick. Using retrograde labelling with the fluorescent tracer rhodamine B isocyanate (RITC), we have examined the organisation of the thalamofugal and tectofugal visual projections to the forebrain of the young chick. In addition, we have investigated the influence of light exposure prior to hatching on the development of the tectofugal visual projections. Our results for the thalamofugal projections confirm those found previously; viz., that there are more projections from the left side of the thalamus to the right hyperstriatum of the forebrain than from the right side of the thalamus to the left hyperstriatum in males and females. The organisation of the tectofugal visual projections to the rotundal nuclei was more symmetrical (males only examined) although there was a trend towards a greater number of projections from the left optic tectum to its ipsilateral nucleus rotundus than from the right optic tectum to its ipsilateral nucleus rotundus. There are numerous projections from the optic tecta to their contralateral rotundal nuclei but, in contrast to reports for the pigeon, no marked asymmetry was present in these. The ratio of contralateral to ipsilateral projections revealed significant asymmetry for projections from the ventral regions of the optic tecta and symmetry from the dorsal regions. Thus both visual pathways of the chick have asymmetrical organisation but the asymmetry is much greater in the thalamofugal pathway. The slight asymmetry in the tectofugal projections may be determined by exposing the embryo to light just before hatching, as known to be the case for thalamofugal projections."	"Functional subdivisions of the ascending visual pathways in the pigeon. This study represents an attempt to examine an alternative view of the functional architecture of the ascending visual pathways in pigeons. According to this conception the pars dorsalis (GLd) of the thalamofugal system represents the lateral monocular field of view and is frontally blind to a large extent. The tectofugal system, on the other hand, processes frontal visual input within the framework of asymmetrical tectorotundal connections. As a result, the left, but not the right, rotundus should be able to integrate to an important degree the input from both eyes via the tecta of both hemispheres. Two lesion studies were conducted to test these assumptions. In the first psychophysical experiment, the visual acuity was determined in head-fixed pigeons. After thresholds were determined, stereotaxic lesions were placed in the GLd and/or the rotundus. Multiple regressions between structure specific lesion extents and postoperative threshold alterations demonstrated that only GLd lesions contributed to acuity reductions. In the second experiment the acuity threshold of pigeons under binocular and monocular conditions was determined in a conventional skinner box before GLd and/or rotundus lesions. Multiple regression analyses showed that rotundus--but not GLd lesions--contributed to performance losses. The left rotundus lesions were significantly related to threshold elevations under both monocular conditions, while the right rotundus only contributed together with the left rotundus to binocular performance. The double dissociation revealed in these experiments indicates that the ascending pathways in pigeons are functionally segregated and differentially process frontal and lateral as well as left- and right-sided inputs."	"Interferon beta-1a prevents the effects of lipopolysaccharide on embryonic brain microvessels. By means of light and electron microscopy we have studied the effect of interferon beta-1a (IFNbeta-1a) in the optic tecta of 20-day-old chick embryos under normal conditions and after exposure to lipopolysaccharide (LPS) which mimics the blood-brain barrier (BBB) disruption in meningoencephalitis. Optic tecta were examined for: (i) ultrastructure by means of transmission electron microscopy; (ii) the immunohistochemical localization of HT7 antigen, a specific marker of differentiation of the brain microvessels; (iii) the brain microvessel permeability, by means of horseradish peroxidase (HRP) tracer; (iv) the expression of microvessel glycoconjugates, by means of lectin histochemistry, using Ricinus communis agglutinin-I (RCA-I), specific for beta-D-galactosyl moieties and Wheat Germ agglutinin (WGA) specific for sialyl and N-acetylglucosaminyl moieties. A morphometric evaluation of brain microvessel permeability and of glycoconjugate expression was also performed. In control- and in IFNbeta-1a-treated embryos, HRP was confined to the vessel lumina which were sealed by the interendothelial tight junctions. RCA-I binding sites were recognizable both in the basal membranes and in the tight junctions, while WGA sites were present on the luminal side of the endothelial cells. HRP was blocked in the vessels lumina by the interendothelial tight junctions. After LPS treatment, HRP showed an extravascular localization and the labeling of microvessels by anti-HT7 antibodies disappeared. RCA-I binding was only found ultrastructurally and appeared as irregularly clustered gold particles, in the cleft of damaged tight junctions, but were no longer detectable in the endothelial basement membranes. After pretreatment of LPS-treated embryos with IFNbeta-1a, the vessel permeability to HRP strongly decreased and the vessels showed the normal pattern of HT7 protein and of the RCA-I binding sites. These results indicate that the changes induced by LPS in the endothelial cells are prevented by IFNbeta-1a."	"A take on the tectorial membrane. NA"	"Detailed localization of aquaporin-4 messenger RNA in the CNS: preferential expression in periventricular organs. We have performed a detailed in situ hybridization study of the distribution of aquaporin-4 messenger RNA in the CNS. Contrary to expectation, we demonstrate that aquaporin-4 is ubiquitously expressed in the CNS. Strong hybridization labeling was detected in multiple olfactory areas, cortical cells, medial habenular nucleus, bed nucleus of the stria terminalis, tenia tecta, pial surface, pontine nucleus, hippocampal formation and multiple thalamic and hypothalamic areas. A low but significant hybridization signal was found, among others, in the choroid plexus of the lateral ventricles, ependymal cells, dorsal raphe and cerebellum. Overall, a preferential distribution of aquaporin-4 messenger RNA-expressing cells was evident in numerous periventricular organs. From the distribution study, the presence of aquaporin-4 messenger RNA-expressing cells in neuronal layers was evident in neuronal layers including the CA1 -CA3 hippocampal pyramidal cells, granular dentate cells and cortical cells. Further evidence of neuronal expression comes from the semicircular arrangement of aquaporin-4 messenger RNA-expressing cells in the bed nucleus of the stria terminalis and medial habenular nucleus exhibiting Nissl-stained morphological features typical of neurons. Combined glial fibrillary acidic protein immunohistochemistry and aquaporin-4 messenger RNA in situ hybridization demonstrated that aquaporin-4 messenger RNA is expressed by glial fibrillary acidic protein-lacking cells. We conclude that aquaporin-4 messenger RNA is present in a collection of structures typically involved in the regulation of water and sodium intake and that aquaporin-4 water channels could be the osmosensor mechanism responsible for detecting changes in cell volume by these cells."	"Expression of neurotrophin-3 in the mouse forebrain: insights from a targeted LacZ reporter. To obtain insights into the expression of neurotrophin-3 (NT-3) in the mouse, we have utilized mice in which the Escherichia coli lacZ gene is integrated into the neurotrophin-3 locus (NT-3(lacZneo), Fariñas et al. [1994] Nature 369:658-661). In this mouse strain, beta-galactosidase production is under control of the NT-3 promoter in its normal chromosomal environment, and histochemical measurement of beta-galactosidase provides a simple, sensitive method to determine which cells express NT-3. Our data correlate well with previous in situ mRNA and immunocytochemical studies reporting the localization of NT-3. For example, in adult NT-3(lacZneo)/+ mice, beta-galactosidase is expressed in high amounts in limbic areas of the cortex (cingulate, retrosplenial, piriform, and entorhinal), in the visual cortex, in the hippocampal formation (dentate granule cells, CA2 cells, fasciola cinereum, induseum griseum, tenia tecta, presubiculum, and parasubiculum), and in the septum (septohippocampal nucleus and lateral dorsal septum). In contrast with other studies, our results suggest more extensive expression of NT-3 in adult and aged mouse brains with cortical expression apparent at 4.5 months. To further define the cell populations expressing NT-3 in adult mice, we have combined immunocytochemistry with histochemical staining and found that beta-galactosidase is coexpressed with a neuronal marker (NeuN) and with parvalbumin and neuropeptides, markers for GABAergic interneurons. Our studies of embryonic beta-galactosidase expression in NT-3(lacZneo)/+ mice suggest sites of NT-3 expression not previously described, including embryonic piriform cortical cells and dentate granule cell precursors."	"Retinal projections throughout optic nerve regeneration in the ornate dragon lizard, Ctenophorus ornatus. In goldfish and frog, optic nerve regeneration is successful, with restoration of retinotopic projections in visual brain centres and the return of functional vision within 1-2 months. By contrast, at 1 year after unilateral optic nerve crush in the ornate dragon lizard (Ctenophorus ornatus), the regenerated retinotectal projections lack topographic order, presumably explaining why the lizards are blind via the experimental eye (Beazley et al. [1997] J. Comp. Neurol. 377:105-120). To determine whether other abnormalities are associated with the inability to restore topographic projections in the lizard, we charted anatomically the time course, accuracy, and stability of optic nerve regeneration by examining visual projections with the lipophillic dye 1,1'-dioctadecyl-3,3,3', 3'-tetramethylindocarbocyanine perchlorate (DiI) applied to the optic disk at intervals up to 1 year after optic nerve crush; in addition, DiI tracing of small groups of axons was used to examine the topicity of axons projecting to the tectum. Axons re-innervated visual centres from between 1 and 2 months, a time frame comparable with that in goldfish and frog. However, the projections in lizard were found to differ from those in goldfish and frog in three major ways. First, there was considerable variability within the projection patterns both between individual lizards at any one stage and with time. Second, the projections were inaccurate. As in normal lizards, the major projection was to the contralateral optic tectum, although it lacked detectable retinotopic axon order throughout. Furthermore, misrouting occurred such that regenerating axons formed a persistent projection to the ipsilateral side of the brain that was considerably stronger and more widespread than normal. Minor visual centres also became re-innervated but, in addition, regenerating axons formed persistent projections into the opposite optic nerve and to non-retino-recipient regions such as the nucleus rotundus, hypothalamus, and olfactory nerve, as well as the posterior and tectal commissures. Third, the projections appeared unstable. Projections to both tecta were strongest between 3 and 5 months, but they diminished thereafter. The results suggest that, compared with goldfish and frog, in lizards both pathway and target cues are degraded and/or cannot be read adequately; as a consequence, regenerating axons are unable to navigate exclusively to visual centres and cannot re-form stable connections."	"In vivo regulation of glial cell line-derived neurotrophic factor-inducible transcription factor by kainic acid. A putative transcription factor induced in vitro by glial cell line-derived neurotrophic factor (GDNF) and transforming growth factor-beta was recently cloned and characterized [Yajima S. et al. (1997) J. Neurosci. 17, 8657-8666]. The messenger RNA of this protein, termed murine GDNF-inducible transcription factor (mGIF, hereafter referred to as GIF), is localized within cortical and hippocampal regions of brain, suggesting that GIF might be regulated by perturbations of these brain regions. In an effort to learn more about the role of GIF in vivo, we examined GIF messenger RNA in the brains of rats treated with the glutamatergic agonist kainic acid. This treatment is known to induce seizures and alter the messenger RNA expression of several growth factors, including GDNF, in several brain regions. Rats were given intraperitoneal saline (1 ml/kg) or kainic acid (15 mg/kg) and were killed at various time-points for in situ hybridization of brain sections with a GIF messenger RNA riboprobe. In saline-treated rats, GIF messenger RNA was present at low levels in cerebral cortex, hippocampus and hippocampal remnants such as the taenia tecta. Kainic acid treatment induced robust increases in GIF messenger RNA in several brain regions, including cerebral cortex, hippocampus, caudate-putamen, nucleus accumbens, and several nuclei of the amygdala and hypothalamus. Most brain regions showed the greatest increase in GIF messenger RNA 4-6 h after kainic acid administration and a return towards normal levels at 48 h. The CA3 region of hippocampus, however, showed a more rapid increase in GIF messenger RNA that was also evident 48 h after kainic acid administration. These results demonstrate that GIF messenger RNA can be regulated in vivo, and that this novel factor warrants further study as a central mediator of GDNF and perhaps other neurotrophic factors."	"Non-syndromic hearing impairment: gene linkage and cloning. Non-syndromic hearing impairment (NSHI) affects approximately 1:2000 newborns and is a significant cause of hearing loss in the elderly. Although the phenotype is quite similar, NSHI is extremely heterogeneous, with over 40 genetic loci now known. A number of the relevant genes have been cloned. These advances are impacting clinical practice and revolutionizing our understanding of the biology of hearing."	"Differentiation of the chick retinotectal topographic map by remodeling in specificity and refinement in accuracy. To understand the development of the retinotopic map, differentiation of the topographic map was quantitatively examined in the chick. Labeling the retinal ganglion cell (RGC) axons anterogradely with the local injections of DiI revealed the relative anteroposterior positions of their growth cones (GCs) on the tecta as a function of the nasotemporal positions of the injected sites in the retinae, which allowed a graphic representation of the map. The topographic map was depicted by combination of two parameters: specificity which indicates strictness of the topographic relationship between locations of the RGC bodies and their GCs on the tectum, and accuracy which indicates an extent of the GC displacement on the tectum. A crude projection with low specificity emerged at embryonic day 11 (E11). The initial crude projection was remodeled into the inaccurate map with high specificity by E13; thereafter, it was refined to the accurate map with higher specificity by E15. The results suggest that the elements of the guidance mechanism operate stage by stage through the formation of the crude projection, the remodeling in specificity, and the refinement in accuracy to establish the final topographic map."	"Pollen ultrastructure of Panax(the ginseng genus, Araliaceae),an eastern Asian and eastern NorthAmerican disjunct genus. Pollen of ten species of Panax and six species of Aralia was examined in light microscopy and scanning and transmission electron microscopy. Grains of both genera have similar complex apertures, short columellae, and overlapping tectal sculptures, suggesting a close relationship. Most species of Panax have pollen characterized by striato-reticulate tecta, short columellae, thick foot layers, costa ectocolpi, and lalongate endoapertures. The eastern North American P. trifolius, commonly known as the dwarf ginseng, has a distinctive pollen morphology and exine structure, supporting the hypothesis of its phylogenetically isolated position. Pollen of the eastern Asian P. ginseng (ginseng) can be distinguished from the eastern North American P. quinquefolius (American ginseng) by differences in ultrastructure. The monophyly of the three medicinally important species, P. ginseng, P. notoginseng, and P. quinquefolius, suggested by triterpenoid data, is not supported by pollen data. The results of the pollen study are generally congruent with those from the sequences of nuclear ribosomal DNA."	"Afferents to the rostral olfactory bulb in sheep with special emphasis on the cholinergic, noradrenergic and serotonergic connections. The olfactory bulb (OB) is involved in the processing of olfactory information particularly through the activation of its afferents. To localize their cell origin in sheep, a specific retrograde fluorescent tracer, Fluoro-Gold, was injected into the olfactory bulb of seven ewes. By using immunocytochemical techniques, retrogradely labeled neurons were colocalized with choline acetyltransferase, tyrosine hydroxylase, dopamine-beta-hydroxylase and serotonin to characterize cholinergic, noradrenergic and serotonergic Fluoro-Gold-labeled neurons. Most afferents originated from the ipsilateral side of the injection site. The OB received major inputs from the anterior olfactory nucleus (AON), the piriform cortex (PC), the olfactory tubercle, the diagonal band of Broca (DBB) and the amygdala. Other retrogradely labeled neurons were observed in the taenia tecta, the septum, the nucleus of the lateral olfactory tract, the preoptic area, the lateral hypothalamic area, the mediobasal hypothalamus, the lateral part of the premammillary nucleus, the paraventricular nucleus of the hypothalamus, the paraventricular thalamic nucleus, the central grey, the substantia nigra (SN), the ventral tegmental area (VTA), the lateral nucleus to the interpeduncular nucleus (IIP), the raphe and the locus coeruleus (LC). Contralateral labeling was also found in the AON, the PC, the SN compacta, the VTA, the IIP and the LC. Cholinergic Fluoro-Gold-labeled neurons belonged to the horizontal and vertical branch of the DBB. Noradrenergic afferents came from the LC and serotoninergic afferents came from the medial raphe nuclei and the 1IP. These data are discussed in relation with olfactory learning in the context of maternal behavior in sheep."	"Nitric oxide in the retinotectal system: a signal but not a retrograde messenger during map refinement and segregation. The role of nitric oxide (NO) as a mediator of synaptic plasticity is controversial in both the adult and developing brain. NO generation appears to be necessary for some types of NMDA receptor-dependent synaptic plasticity during development but not for others. Our previous work using several NO donors revealed that Xenopus laevis retinal ganglion cell axons stop growing in response to NO exposure. We demonstrate here that the same response occurs in tectal neuron processes bathed in the NO donor S-nitrosocysteine (SNOC) and in RGC growth cones to which SNOC is very locally applied. We show that NO synthase (NOS) activity is present in the Rana pipiens optic tectum throughout development in a dispersed subpopulation of tectal neurons, although effects of NO on synaptic function in a Rana pipiens tectal slice were varied. We chronically inhibited NOS in doubly innervated Rana tadpole optic tecta using L-N(G)-nitroarginine methyl ester in Elvax. Despite significant NOS inhibition as measured biochemically, eye-specific stripes remained normally segregated. This suggests that NOS activity is not downstream of NMDA receptor activation during retinotectal synaptic competition because NMDA receptor activation is necessary for segregation of retinal afferents into ocular dominance stripes in the doubly innervated tadpole optic tectum. We conclude that NO has some signaling function in the retinotectal pathway, but this function is not critical to the mechanism that refines the projection and causes eye-specific stripes."	"Tectotectal connectivity in goldfish. The vertebrate optic tectum is a functionally coupled bilateral structure which plays a major role in the generation of motor commands for orienting responses. However, the characteristics of the tectotectal connectivity are unknown in fish, and have been reported only to a limited extent in other vertebrates. The purpose of the present study was to determine the anatomical basis underlying the functional coupling between tecta in goldfish, and to identify both similarities and differences to those features reported in other vertebrate species. The present experiments used the bidirectional tracer biotinylated dextran amine to map the distribution of labeled cells and synaptic boutons in the contralateral tectum following injections into identified tectal sites. Fibers that interconnect both tecta coursed through the tectal commissure. The cells of origin of these fibers, the tectotectal cells, and their synaptic endings were located in the deep layers, mainly in the strata periventricular and griseum central, respectively. Corresponding sites throughout the two tecta were interconnected in a symmetrical point-to-point fashion. The tectal commissure was composed of at least two distinct bundles of axons, which differed in their dorsoventral location, fiber diameter, and projection targets. The dorsal axons were tectotectal axons, they were thinner in diameter and profusely branched, and gave off en passant and terminal boutons in the deep layers of the contralateral tectum. The ventral axons were thicker in diameter, and formed the contralateral tectofugal-descending tract. Such fibers had few axon collaterals and boutons in the contralateral tectum. Boutons adjacent to retrogradely labeled tectotectal cells were very scarce. The data are discussed in terms of the coupling between tecta generating the motor commands required for orienting movements."	"Laminar redistribution of a glial subtype in the chick optic tectum. Lamination is a central feature of structural organization and segregation within the central nervous system. Afferent fibers typically restrict their synapses to only one or a few specific laminae in the target region. Astroglial cells act as boundary markers for functional segregation of inputs in somatosensory cortex and the olfactory bulb and might also help to segregate particular connections in the neostriatum. This work presents evidence that a subset of astroglial cells expressing the carbohydrate recognized by tomato lectin are enriched in retino-non-recipient laminae of the chick optic tectum. This segregation is dependent upon retinal innervation; enucleated chick tecta contain cells that bind tomato lectin but do not segregate into their normal laminae. These results suggest that tomato lectin positive astrocytes of the superficial chick tectum play a role in defining or restricting lamina specific connections of retinal axons."	"Effects of choline and other nicotinic agonists on the tectum of juvenile and adult Xenopus frogs: a patch-clamp study. We have used anatomical methods and whole-cell patch-clamp recording to assess the distribution of nicotinic receptors in the tectum of Xenopus frogs and to measure effects of nicotinic ligands (carbachol, cytisine and nicotine) on glutamatergic spontaneous miniature excitatory postsynaptic currents. Our results confirm that retinotectal axons account for the majority of nicotinic receptors in the tectum and that nicotinic agonists exert presynaptic effects that increase the rate of transmitter release on to tectal cells. The nicotinic blockers mecamylamine and methyllycaconitine reduced responses to carbachol and cytisine. A small percentage of cells also showed postsynaptic responses. We have assessed whether there are developmental changes in the frequency of occurrence of spontaneous miniature excitatory postsynaptic currents. The first three months post-metamorphosis fall within the critical period for the dramatic plasticity displayed by binocular inputs during development in Xenopus. During this period, visual activity governs the formation of orderly maps relayed from the ipsilateral eye via the cholinergic projection from the nucleus isthmi to the tectum. In this study, we have found that critical-period tecta (two to 12 weeks postmetamorphosis) tend to have higher spontaneous activity than do older tecta (two to 69 weeks postmetamorphosis), and that nicotinic agonists increase that activity in both groups, with the result that the peak rates in response to nicotinic agonists are higher during the critical period than later. We also investigated the possible role of choline as an agonist of nicotinic receptors in the tectum. We have found that choline, as well as carbachol and cytisine, can cause a reversible increase in the rate of miniature excitatory postsynaptic currents. This result may help to explain how the isthmotectal projection, which accounts for the overwhelming majority of cholinergic input to the tectum, can exert effects on retinotectal terminals even though there are no morphologically identifiable synapses between the two populations. We have examined the morphology of cells filled with biocytin during the patch-clamp experiments, and we find that cells with dendrites in the stratum zonale, a layer with particularly dense input from the contralateral nucleus isthmi, have higher spontaneous activity than cells with dendrites that do not extend into that layer. Nicotinic agonists increased the activity recorded in both classes of cells. In addition, four pretectal cells were identified. Nicotinic agonists increased the rate of spontaneous activity recorded in that population. The results indicate that retinotectal transmission in the superior colliculus can be increased presynaptically by activity of the cholinergic projections of the nucleus isthmi. This modulation may be the basis for observations that blocking of cholinergic input disrupts the formation of topographic retinotectal projections. Moreover, the ability of choline to activate these receptors suggests that this metabolite of acetylcholine may permit paracrine activation of presynaptic receptors even though the tectum contains high acetylcholinesterase activity."	"Requirement for the zebrafish mid-hindbrain boundary in midbrain polarisation, mapping and confinement of the retinotectal projection. The organizer at the midbrain-hindbrain boundary (MHB organizer) has been proposed to induce and polarize the midbrain during development. We investigate the requirement for the MHB organizer in acerebellar mutants, which lack a MHB and cerebellum, but retain a tectum, and are mutant for fgf8, a candidate inducer and polarizer. We examine the retinotectal projection in the mutants to assay polarity in the tectum. In mutant tecta, retinal ganglion cell (RGC) axons form overlapping termination fields, especially in the ventral tectum, and along both the anterior-posterior and dorsal-ventral axis of the tectum, consistent with a MHB requirement in generating midbrain polarity. However, polarity is not completely lost in the mutant tecta, in spite of the absence of the MHB. Moreover, graded expression of the ephrin family ligand Ephrin-A5b is eliminated, whereas Ephrin-A2 and Ephrin-A5a expression is leveled in acerebellar mutant tecta, showing that ephrins are differentially affected by the absence of the MHB. Some RGC axons overshoot beyond the mutant tectum, suggesting that the MHB also serves a barrier function for axonal growth. By transplanting whole eye primordia, we show that mapping defects and overshooting largely, but not exclusively, depend on tectal, but not retinal genotype, and thus demonstrate an independent function for Fgf8 in retinal development. The MHB organizer, possibly via Fgf8 itself, is thus required for midbrain polarisation and for restricting axonal growth, but other cell populations may also influence midbrain polarity."	"Chick alpha-tectorin: molecular cloning and expression during embryogenesis. The avian and mammalian tectorial membranes both contain two non-collagenous glycoproteins, alpha and beta-tectorin. To determine whether variations in the primary sequences of the chick and mouse alpha-tectorins account for differences in subunit composition and matrix structure of the tectorial membranes in these two species, cDNAs spanning the entire open reading frame of chick alpha-tectorin were cloned and the derived amino acid sequence was compared with that of mouse alpha-tectorin. Chick alpha-tectorin shares 73% amino acid sequence identity with mouse alpha-tectorin and, like mouse alpha-tectorin, is composed of three distinct modules: an N-terminal region similar to the G1 domain of entactin, a central region that shares identity with zonadhesin and contains three full and two partial von Willebrand factor type D repeats, and a C-terminal region containing a zona pellucida domain. The central region of chick alpha-tectorin contains fewer potential N-glycosylation sites than that of mouse alpha-tectorin and is cleaved at two additional sites. Differences in the glycosylation and proteolytic processing of chick and mouse alpha-tectorin may therefore account for the variation observed in the composition and structure of the collagenase-insensitive matrices of the avian and mammalian tectorial membranes. In situ hybridisation and Northern blot analysis of chick inner ear tissue indicate that the spatial and temporal patterns of alpha and beta-tectorin mRNA expression in the developing chick inner ear are different, suggesting the two tectorins may each form homomeric filaments."	"Induction of cyclooxygenase-2 in brain during acute and chronic ethanol treatment and ethanol withdrawal. Prostaglandins play an important role in the regulation of nervous system function including thermoregulation, autonomic nervous system function, hypothalamic regulation of pituitary function, and neuronal excitation. Prostaglandin synthesis is catalyzed by cyclooxygenase (COX; prostaglandin synthase) which occurs as two isozymes, COX-1 and COX-2. COX-1 and COX-2 are constitutively expressed in brain whereas COX-2 type is also inducible in brain by excitatory neurotransmission. Ethanol intoxication and the hyperexcitability of ethanol withdrawal may be influenced by inducible proteins, thus we investigated COX-2 in the rat brain during acute and chronic ethanol treatment, ethanol withdrawal, and after peripheral administration of excitatory amino acids. Kainic acid or NMDA treatment increased COX-2 immunoreactivity in the cortex, hippocampus, and amygdala. An acute dose of ethanol (5 g/kg, intragastric-i.g.) increased COX-2, particularly in the CA4 region of the hippocampus and agranular insular cortex. Chronic ethanol treatment (4 days-intragastric) robustly induced COX-2 in limbic cortex, isocortex, and amygdala. Particularly dense immunocytochemical staining was found in perirhinal and piriform cortices, dentate gyrus, and tenia tecta. During ethanol withdrawal, COX-2 expression increased further in some regions, peaking in most areas 16 hr after the last dose of ethanol. These results indicate that COX-2 immunoreactivity is: 1) increased in the brain during acute ethanol exposure that increases further during chronic treatment; 2) sensitive to excitatory amino acid receptor stimulation; and 3) dramatically increased during ethanol withdrawal. These studies suggest that COX-2 induction may be involved in the acute and chronic effects of ethanol."	"Mutation in the zonadhesin-like domain of alpha-tectorin associated with autosomal dominant non-syndromic hearing loss. A gene responsible for autosomal dominant non-syndromic hearing impairment in two families (DFNA8 and DFNA12) has recently been identified as TECTA encoding alpha-tectorin, a major component of the tectorial membrane. In these families, missense mutations within the zona pellucida domain of alpha-tectorin were associated with stable severe mid-frequency hearing loss. The present study reports linkage to DFNA12 in a new family with autosomal dominant high frequency hearing loss progressing from mild to moderate severity. The candidate region refined to 3.8 cM still contained the TECTA gene. A missense mutation (C1619S) was identified in the zonadhesin-like domain. This mutation abolishes the first of the vicinal cysteines (1619Cys-Gly-Leu- 1622Cys) present in the D4 von Willebrand factor (vWf) type D repeat. These results further support the involvement of TECTA mutations in autosomal dominant hearing impairment, and suggest that vicinal cysteines are involved in tectorial membrane matrix assembly."	"Regional changes in 5-HT1A but not in 5-HT2A receptors in mouse brain after Semliki Forest virus infection: radioligand binding and autoradiographic studies. Dysfunction of brain 5-hydroxytryptaminergic systems has been associated with several neurological and psychiatric diseases which may have a viral aetiology. The effect of Semliki Forest virus (SFV) on 5-hydroxytryptamine (5-HT1A and 5-HT2A) receptors in mouse brain has been assessed by membrane homogenate binding and autoradiography. Adult mice were injected with saline or virus and brains removed 2, 6, 14, 22 and 35 days after infection. 5-HT1A and 5-HT2A receptors were characterised by saturation studies using [3H] 8-OH-DPAT and [3H] Ketanserin respectively. SFV infection increased 5-HT1A receptor numbers by up to 80% in the cortex on days 6, 14, and 22 but had no effect on Bmax in the midbrain, pons/medulla and the hypothalamus. SFV infection did not affect 5-HT2A receptor number in any of the brain regions studied and the affinity (Kd) of either ligand for 5-HT1A or 5-HT2A receptors was unaffected. Autoradiographic mapping of 5-HT1A receptors in SFV-infected brain showed substantially higher binding in nucleus accumbens, tenia tecta, septohippocampal nucleus, septum, medial and basolateral amygdaloid nucleus, anterioventral preoptic nucleus, hippocampus, interpeduncular nucleus, frontal, lateral orbital, and entorhinal cortex and claustrum on days 6 and 14. Elevated binding persisted in tenia tecta, frontal, lateral orbital, entorhinal cortex, and hippocampal formation to day 22. Autoradiography of 5-HT2A receptors using [3H] Ketanserin showed no difference in the binding in SFV-infected brains. A decrease in plasma corticosterone levels in SFV-infected mice was observed on post infection days 6 and 22. These results show SFV infection induces a regionally selective upregulation of 5-HT1A but not 5-HT2A receptors."	"Tectorin mRNA expression is spatially and temporally restricted during mouse inner ear development. The tectorial and otolithic membranes are extracellular matrices that cover the sensory epithelia of the inner ear. They are required for mechanotransduction and may influence hair-cell development. The mRNA expression patterns for two major glycoproteins of these matrices, alpha- and beta-tectorin, were examined during mouse inner ear development to determine when and where these proteins are produced relative to hair cells and whether tectorin production is continuous or transient. Using in situ hybridisation, alpha- and beta-tectorin mRNAs are first detected in the basal end of the cochlea at embryonic day (E) 12.5, and the distinct patterns observed for each tectorin mRNA in the neonate become visible by E14.5. The neonatal expression patterns indicate that some cell types in the cochlea express both alpha- and beta-tectorin mRNAs, while other cells only express one tectorin mRNA. Although expressed early in development, alpha- and beta-tectorin mRNAs cannot be detected in the cochlea by postnatal day (P) 22. In the saccule and utricle, alpha-tectorin mRNA is detected at E12.5, but beta-tectorin mRNA is not observed until E14.5. Expression of alpha-tectorin mRNA ceases after P15, whereas beta-tectorin mRNA expression continues within the striolar region of the utricle until at least P150. The results show alpha- and beta-tectorin mRNAs are expressed during the early stages of inner ear development, prior to or concomitant with hair-cell differentiation, and before the appearance of hair bundles. The expression patterns suggest different cell types contribute to the formation of the various regions of the tectorial membrane. Although tectorin mRNAs are only expressed transiently during cochlear development, beta-tectorin mRNA is continuously expressed within the striolar region of the utricle."	"An alpha-tectorin gene defect causes a newly identified autosomal recessive form of sensorineural pre-lingual non-syndromic deafness, DFNB21. In our efforts to identify new loci responsible for non-syndromic autosomal recessive forms of deafness, DFNB loci, we have pursued the analysis of large consanguineous affected families living in geographically isolated areas. Here, we report on the study of a Lebanese family comprising nine members presenting with a pre-lingual severe to profound sensorineural isolated form of deafness. Linkage analysis led to the characterization of a new locus, DFNB21, which was assigned to chromosome 11q23-25. Already mapped to this chromosomal region was TECTA. This gene encodes alpha-tectorin, a 2155 amino acid protein which is a component of the tectorial membrane. This gene recently has been shown to be responsible for a dominant form of deafness, DFNA8/12. Sequence analysis of the TECTA gene in the DFNB21-affected family revealed a G to A transition in the donor splice site (GT) of intron 9, predicted to lead to a truncated protein of 971 amino acids. This establishes that alpha-tectorin mutations can be responsible for both dominant and recessive forms of deafness. Comparison of the phenotype of the DFNB21 heterozygous carriers with that of DFNA8/12-affected individuals supports the hypothesis that the TECTA mutations which cause the dominant form of deafness have a dominant-negative effect. The present results provide genetic evidence for alpha-tectorin forming homo- or heteromeric structures."	"Genomics and hearing impairment. Hearing impairment is clinically and genetically heterogeneous. There are &gt;400 disorders in which hearing impairment is a characteristic of the syndrome, and family studies demonstrate that there are at least 30 autosomal loci for nonsyndromic hearing impairment. The genes that have been identified encode diaphanous (HDIA1), alpha-tectorin (TECTA), the transcription factor POU4F3, connexin 26 (GJB2), and two unconventional myosins (MYO7A and MYO15), and four novel proteins (PDS, COCH, DFNA5, DFNB9). The same clinical phenotype in hearing-impaired individuals, even those within the same family, can result from mutations in different genes. Conversely, mutations in the same gene can result in a variety of clinical phenotypes with different modes of inheritance. For example, mutations in the gene encoding MYO7A cause Usher syndrome type IB, autosomal-recessive nonsyndromic hearing impairment (DFNB2), and autosomal-dominant nonsyndromic hearing impairment (DFNA11). Additionally, the mouse ortholog of the MYO7A gene is the shaker-1 gene. Mouse models such as shaker-1 have facilitated the identification of genes that cause hearing impairment in humans. The availability of high-resolution maps of the human and mouse genomes and new technologies for gene identification are advancing molecular understanding of hearing impairment and the complex mechanisms of the auditory system."	"Functional neuroanatomy of auditory pathways in the sound-producing fish Pollimyrus. We have described the acoustic pathway from the ear to the diencephalon in a sound-producing fish (Pollimyrus) based on simultaneous neurophysiological recordings from single neurons and injections of biotin pathway tracers at the recording sites. Fundamental transformations of auditory information from highly phase-locked and entrained responses in primary eighth nerve afferents and first-order medullary neurons to more weakly phase-locked responses in the auditory midbrain were revealed by physiological recordings. Anatomical pathway tracing uncovered a bilateral array of both first- and second-order medullary nuclei and a perilemniscal nucleus. Interconnections within the medullary auditory areas were extensive. Medullary nuclei projected to the auditory midbrain by means of the lateral lemniscus. Midbrain auditory areas projected to both ipsilateral and contralateral optic tecta and to an array of three nuclei in the auditory thalamus. The significance of these findings to the elucidation of mechanisms for the analysis of communication sounds and spatial hearing in this vertebrate animal is discussed."	"Distribution of orexin receptor mRNA in the rat brain. The expression pattern of mRNA encoding two orexin receptors (OX1R and OX2R) in the rat brain was examined. OX1R and OX2R exhibited marked differential distribution. Within the hypothalamus, OX1R mRNA is most abundant in the ventromedial hypothalamic nucleus whereas OX2R is predominantly expressed in the paraventricular nucleus. High levels of OX1R mRNA were also detected in tenia tecta, the hippocampal formation, dorsal raphe, and locus coeruleus. OX2R mRNA is mainly expressed in cerebral cortex, nucleus accumbens, subthalamic and paraventricular thalamic nuclei, anterior pretectal nucleus. The presence of orexin receptor mRNA in the hypothalamus is in support of its proposed role in feeding regulation. Broad central distribution of orexin receptors may indicate additional functions for orexins."	"Neuronal degeneration in rat forebrain resulting from D-amphetamine-induced convulsions is dependent on seizure severity and age. Neuronal damage and degeneration in the rat forebrain was characterized by B4 isolectin and Fluoro-Jade labeling techniques after 4 doses of 15 mg/kg amphetamine i.p. in 70- and 180-day-old Sprague-Dawley rats. In amphetamine-dosed rats some seizure activity occurred in all rats exhibiting pronounced hyperthermia but the degree of seizure activity varied greatly between individual rats. Over 90% of the rats in both age groups that showed behavioral signs of limbic seizures had somatic degeneration in the taenia tecta within 3 days of amphetamine exposure. Degenerating small star-shaped cells were seen in the septum and hippocampus in 70-day-old rats having extensive seizure activity. Although somatic degeneration only sporadically occurred in the piriform cortex of the younger rats, extensive B4 isolectin binding to activated microglia was observed in this area. In older rats prominent somatic degeneration was seen in the piriform cortex and orbital and insular areas of the frontal cortex of rats having seizures. Damage to the basal ganglia and related areas, including the thalamus, parietal cortex and dorsal medial striatum, occurred in rats with pronounced hyperthermia but only correlated with seizures in older rats. In the more severe cases of thalamic damage the highest density of neurodegeneration was localized perivascularly. Thus, amphetamine can produce notable damage to the limbic system when seizures occur and to the basal ganglia and related areas when hyperthermia occurs but the neurotoxicity profiles in these areas are age-dependent and not produced solely by hyperthermia. Further studies to determine whether neuronal damage is the result of or the cause of amphetamine-induced seizures are necessary."	"Autosomal-dominant, prelingual, nonprogressive sensorineural hearing loss: localization of the gene (DFNA8) to chromosome 11q by linkage in an Austrian family. A four-generation family suffering from an autosomal-dominant, congenital, nonprogressive, nonsyndromic hearing loss was found in a rural region of Austria. The hearing loss was moderate to severe, a pure tone audiogram showing a U-shaped form with maximum loss at 2, 000 Hz. An initial genome search led to a lod score of 3.01 with markers on chromosome 15. This locus was registered as DFNA8 in the HUGO data base. Further sampling of the family, however, yielded data that reduced the maximal lod score with chromosome 15 markers to 1.81. The genome search was restarted using an ABITM genotyper, which eventually detected several positive two-point lod scores with markers from the long arm of chromosome 11. The highest value was 3. 6, which was seen with the marker D11S934. Haplotype analysis excluded the gene from the chromosomal region proximal from D11S898 and distal to D11S1309. These results place the gene in the region of the hearing loss gene DFNA12. Recent evidence suggests that the somewhat different phenotypes found in these two families are due to two different mutations in the human alpha-tectorine gene (Verhoeven et al., 1998)."	"Melatonin receptor ligands: synthesis of new melatonin derivatives and comprehensive comparative molecular field analysis (CoMFA) study. The CoMFA methodology was applied to melatonin receptor ligands in order to establish quantitative structure-affinity relationships. One hundred thirty-three compounds were considered: they were either collected from literature or newly synthesized in order to gain information about the less explored positions. To this end, various melatonin derivatives were prepared and their affinity for quail optic tecta melatonin receptor was tested. Compounds were aligned on the putative active conformation of melatonin proposed by our previously reported pharmacophore search, and their relative affinities were calculated from the displacement of 2-[125I]-iodomelatonin on different tissues expressing aMT receptors. Compounds were grouped into three sets according to their topology. Subset A: melatonin-like compounds; subset B: N-acyl-2-amino-8-methoxytetralins and related compounds; subset C:N-acyl-phenylalkylamines and related compounds. CoMFA models were derived for each set, using the steric, electrostatic, and lipophilic fields as structural descriptors; the PLS analyses were characterized by good statistical parameters, taking into account the heterogeneity of the binding data, obtained with different experimental protocols. From the CoMFA model for the melatonin-like compounds, besides the well-known positive effect of 2-substitution, a low steric tolerance for substituents in 1, 6, and 7, and a negative effect of electron-rich 4-substituents were observed; the information provided by the newly synthesized compounds was essential for these results. Moreover, a comprehensive model for the 133 compounds, accounting for a common alignment and a common mode of interaction at the melatonin receptor, was derived (Q2 = 0.769, R2 = 0.905). This model validates our previously reported pharmacophore search and offers a clear depiction of the structure-affinity relationships for the melatonin receptor ligands."	"Retroviral transfer of antisense integrin alpha6 or alpha8 sequences results in laminar redistribution or clonal cell death in developing brain. To assess the roles of two integrin alpha subunits (alpha6 and alpha8) in the developing chicken optic tectum, progenitors were infected with retroviral vectors that contained the marker gene lacZ plus antisense sequences from either the alpha6 or alpha8 integrin subunit cDNAs. On embryonic day 3 (E3), the vector was injected into tectal ventricles of chicken embryos. On E6, E7.5, E9, or later, chicken embryos were killed, and optic tecta were dissected and processed for histochemical detection of lacZ-positive cells. The antisense-bearing cell clones (descendants of a single infected progenitor) were analyzed for proliferation and migration patterns and were compared with lacZ-only vector-infected control clones. At E6, both alpha6 and alpha8 integrin antisense-containing cell clones were similar to controls. At E7.5, integrin alpha8 antisense-containing clones exhibited a cell number reduction in upper laminae (intermediate zone and tectal plate), and at E9, they exhibited a reduction in the ventricular zone as well. Integrin alpha6 antisense-containing cell clones exhibited no difference in total cell number at E9 but had a net laminar redistribution of more cells in the ventricular zone and less cells in the tectal plate. Our data show that different integrins play different roles during brain development: alpha6 integrin is essential for migration of tectal cells into specific laminae, and alpha8 integrin is essential for the survival of optic tectum cells. Also alpha8 integrin-substrate interactions may suppress early programmed cell death in premigratory and migratory neuroblasts."	"Topographic mapping in the retinotectal projection by means of complementary ligand and receptor gradients: a computer simulation study. Based on recent experimental studies of complementary gradients of receptor density (R) on the retinal surface and ligand density (L) on the tectal surface, and mapping of the high point on the receptor gradient to the low point on the ligand and vice versa, the servomechanism model was constructed involving a mechanism for the retinal axon to reach its target automatically sensing a difference between the signal strength (R.L) and the standard value (S). Computer simulations based on the model demonstrated desired two-dimensional topographic mapping of the retinal axons on the tectum, and explained three strange behaviors of the retinal axons that had been observed in stripe assays for retinal axons using stripes composed of tectal membrane fragments: repulsive behaviors of the retinal axons by the ligand substances, uncertainty of the nasal axons whether or not they show regional selectivity between substances of anterior and posterior tecta, and abrupt transition of growth of the axons originating at continuously varied retinal positions on the stripes having graded ligand density. Finally we suggested what is to be improved in stripe assays with the artificial gradient of the tectal membrane fragments."	"More deafness genes. NA"	"Bottlebrush dendritic endings and large dendritic fields: motion-detecting neurons in the tectofugal pathway. In avian and mammalian brains, visual information from the retina is conveyed to the telencephalon via two separate pathways: the thalamofugal and the tectofugal pathways. Recently, Karten et al. ([1997] J. Comp. Neurol. 387:449-465) examined a portion of the tectofugal pathway, the projection from the optic tectum to the nucleus rotundus thalami, in pigeons. They defined two distinct subpopulations of tectal neurons projecting from the stratum griseum centrale (SGC; tectal layer 13) to specific divisions of the rotundus. The goal of this study in chick was to verify the existence of the type I and type II SGC neurons, as defined by Karten et al., and then examine in greater detail the connectivity and morphology of these SGC neurons. Furthermore, our results suggest how the unique morphological characteristics of SGC neurons contribute to the large receptive fields (20-50 degrees) found in physiological recordings and the SGC neuronal response to extremely small (ca. 0.05 degree), fast-moving (100 degrees/second) stimuli. By injecting retrograde tracer into various divisions of the chick rotundus, we verified that, indeed, the chick did possess type I and type II SGC neurons, as well as a &quot;new&quot; type of SGC neuron, type III, that is not found in the pigeon. We then used intracellular cell-filling techniques to define further these three types of SGC neurons. Our examination revealed the following: Type I SGC neurons had large, circular dendritic fields (average diameter, 1,725 microns) composed of smooth dendrites and ending in spine-rich, bottlebrush endings located in retinorecipient tectal layer 5b; type II SGC neurons had elliptical dendritic fields (average 1,447 microns) and dendritic endings located never more superficially than tectal layer 8; and type III SGC neurons had large dendritic fields (average 1,800 microns) of unknown shape and bottlebrush dendritic endings located in retinorecipient tectal layer 4. We suggest that the neuronal features of the SGC neurons (i.e., bottlebrush dendritic endings and large dendritic fields) are key morphological characteristics for the detection of motion within the tectofugal pathway. Furthermore, because neurons with similar morphology have also been found in the tecta of both mammals and reptiles, we suggest that these neuronal features are fundamental components of a phylogenetically conserved system used for the &quot;extrastriate&quot; detection of motion in vertebrates."	"Suppression of sprouting: An early function of NMDA receptors in the absence of AMPA/kainate receptor activity. Electrophysiological studies have documented the existence of synapses showing only NMDA ionotropic glutamate receptor function that are therefore presumably &quot;silent&quot; at resting membrane potentials. Silent synapses are more prevalent in young than in older neurons, and NMDA receptor activity at such contacts may facilitate the appearance of functional AMPA receptors. However, it is uncertain whether such silent synapses actually have a function in young neurons independent of AMPA receptor induction. Using a newly characterized culture system for neurons from larval Xenopus tecta, we show that blocking NMDA receptors or preventing changes in intracellular free Ca2+ concentration with BAPTA AM significantly increases neurite sprouting and elongation in contacted but not in isolated neurons. Blocking AMPA/KA receptors or Na+-dependent action potentials does not mimic this effect. Moreover, in these young neurons, NMDA receptor-dependent Ca2+ responses to glutamate measured with confocal fluo-3 imaging are retained during AMPA/KA receptor blockade. The data suggest that many of the young contacts in these cultures are active even though they use only NMDA ionotropic glutamate receptors. Calcium influx through the NMDA receptor at these contacts seems to reduce neurite motility. This effect should lead to the accumulation of glutamatergic inputs on NMDA receptor-expressing dendrites, which could facilitate the onset of AMPA/KA receptor function and the action potential-dependent phase of synaptogenesis."	"Mutations in the human alpha-tectorin gene cause autosomal dominant non-syndromic hearing impairment. The tectorial membrane is an extracellular matrix of the inner ear that contacts the stereocilia bundles of specialized sensory hair cells. Sound induces movement of these hair cells relative to the tectorial membrane, deflects the stereocilia, and leads to fluctuations in hair-cell membrane potential, transducing sound into electrical signals. Alpha-tectorin is one of the major non-collagenous components of the tectorial membrane. Recently, the gene encoding mouse alpha-tectorin (Tecta) was mapped to a region of mouse chromosome 9, which shows evolutionary conservation with human chromosome 11q (ref. 3), where linkage was found in two families, one Belgian (DFNA12; ref. 4) and the other, Austrian (DFNA8; unpublished data), with autosomal dominant non-syndromic hearing impairment. We determined the complete sequence and the intron-exon structure of the human TECTA gene. In both families, mutation analysis revealed missense mutations which replace conserved amino-acid residues within the zona pellucida domain of TECTA. These findings indicate that mutations in TECTA are responsible for hearing impairment in these families, and implicate a new type of protein in the pathogenesis of hearing impairment."	"Hair hear! NA"	"Two deaf mice, two deaf mice... NA"	"Induction of Fos-like proteins and ultrasonic vocalizations during ethanol withdrawal: further evidence for withdrawal-induced anxiety. The ethanol withdrawal syndrome includes anxiety as a prominent symptom. Because the extent that specific regions of brain are critical to the generation of this emotional state is unknown, Fos-like immunoreactivity (Fos-LI) was used to associate specific regions of the rat brain with the anxiety component of the ethanol withdrawal syndrome exacerbated by an air puff challenge in rats. Chronic ethanol liquid diet was administered intragastrically for 4 days or by having the rats consume the diet for 14 days. During withdrawal from either treatment protocol, Fos-LI was induced most prominently in forebrain areas, although the midbrain and hindbrain were also represented. Included in these Fos-LI positive regions were many cortical regions, septum, accumbens, claustrum, amygdala, paraventricular nucleus of the thalamus and hypothalamus, hippocampus, locus coeruleus, and central gray. Fos-LI expression differed mostly in intensity between the two treatment and withdrawal protocols, with the gastric protocol producing the greatest Fos-LI induction in most brain regions. The threshold for air puff-induced ultrasonic vocalizations was decreased, and the number of vocalizations was increased and the period of vocalization was extended. These behavioral data indicate that aversively motivated responding in rats during ethanol withdrawal can be readily quantified with the ultrasonic vocalizations test without precipitating convulsive activity. Furthermore, a comparison of the effects of the air puff challenge versus withdrawal on Fos-LI indicated that the behavioral state induced in these two situations share functional neuroanatomical features. Some regions--such as the accumbens core, medial septum, subregions of the amygdala, hippocampus, substantia nigra, and cerebellum--exhibited little Fos-LI during withdrawal and also did not exhibit strong increases after the addition of the air puff challenge. However, other regions-such as the cerebral cortex (medial prefrontal, frontal, cingulate and ventrolateral orbital, claustrum, and tenia tecta), hypothalamus, and locus ceoruleus- exhibited Fos-LI at levels higher than that seen after either the ethanol withdrawal or puff challenge alone. These overlapping patterns of Fos-LI in specific regions of the brain, activated by both ethanol withdrawal and an anxiety provoking behavioral challenge, suggest that specific neuroanatomical sites in brain are associated with the symptom of anxiety observed during the &quot;ethanol withdrawal syndrome.&quot;"	"Localization and partial characterization of melatonin receptors in amphioxus, hagfish, lamprey, and skate. Through its secretion of melatonin, the pineal complex of vertebrates exerts a range of physiological effects including regulation of circadian rhythms, seasonal reproduction, metamorphosis, and body color change. Little is known about phylogenetic differences in the distribution and characteristics of melatonin binding sites in fishes. We used in vitro autoradiography to examine binding of [2-125I]iodomelatonin (IMEL) in 20-micron frozen sections of amphioxus (Branchiostoma lanceolatum), Atlantic hagfish (Myxine glutinosa), larval and adult lamprey (Petromyzon marinus), little skate (Raja erinacea), and rainbow trout (Oncorhynchus mykiss). Tissue was incubated with IMEL in the presence or absence of unlabeled melatonin (1 muM, in order to assess nonspecific binding). A concentration of 32 pM IMEL was used for single point assays and competition studies. No specific binding was found in hagfish or amphioxus, which lack a pineal complex. In the optic tecta of lamprey, skate, and trout, IMEL binding is highly specific (melatonin &gt; N-acetylserotonin &gt; 5- methoxytryptophol &gt; serotonin). Scatchard analysis revealed that the tectal binding sites are of high affinity (Kd = 36, 38, and 50 pM) and low capacity (Bmax = 8.1, 19.8, and 21.8 fmol/mg protein) in lamprey, skate, and trout, respectively. In adult lampreys, intense specific IMEL binding is found in the optic tectum (layer I &gt; II &gt; III) and preoptic nucleus (pars parvocellularis &gt; magnocellularis). Binding was less intense and consistent in the same areas of ammocoete brain. In skates and trout, intense specific binding is found in optic tectum, lateral geniculate body, diencephalic preoptic and suprachiasmatic nuclei, basal hypothalamus, and the medial pallium. These results indicate that specific melatonin binding sites are present in all craniate taxa examined except in hagfish. Although we cannot rule out the possibility that melatonin receptors are secondarily lost in hagfish, their absence in amphioxus makes this unlikely. We speculate that melatonin actions in early vertebrates may have included regulation of visual and endocrine responses to light."	"Increased corticotropin-releasing factor immunoreactivity in select brain sites following kainate elicited seizures. The literature has focused on the localization, regulation and function of corticotropin-releasing factor (CRF) expressing neurons localized in the paraventricular nucleus (PVN) of hypothalamus. However, less information is available on the expression, regulation, and function of CRF at extrahypothalamic sites. The current study examined the induction of CRF in extrahypothalamic brain sites following generalized clonic seizures induced by kainic acid. At 24 h post seizure onset, there was a marked increase of CRF immunolabeled perikarya in select brain areas, which contained little, if any, CRF in control brains. This CRF-like labeling was observed in olfactory structures such as the main olfactory bulb (internal granular layer), anterior olfactory nucleus, and deep layers of piriform cortex. Other sites of increased CRF-like immunoreactivity included the tenia tecta, inner layers of cingulate cortex, lateral septum, dorsal endopiriform nucleus, fundus striatum, and nucleus of the lateral olfactory tract. Additionally, CRF-like labeling was atypically increased in the amygdala (lateral and basolateral amygdaloid nuclei) and hippocampal formation (pyramidal cells of regions CA1/CA3 and polymorph cells within the dentate hilus). An association between the increased CRF immunoreactivity and neuropathological processes, characteristic of this seizure model, is hypothesized and discussed."	"Expression of VGF mRNA in the adult rat central nervous system. VGF is a secretory peptide precursor that is expressed and processed by neuronal cells in a cell type-specific fashion. In addition, VGF transcription and secretion are rapidly and relatively selectively induced by neurotrophins and depolarization in vitro. To gain insight into the possible function(s) of VGF in the nervous system, we have carried out a detailed examination of the distribution of VGF mRNA in the adult rat central nervous system by using in situ hybridization. Robust expression was detected in many neurons throughout the brain and spinal cord, in several types of neurons in the retina, and in presumptive chromaffin cells of the adrenal medulla. In the brain, prominent expression of VGF mRNA was observed in neurons of the main and accessory olfactory bulbs; in the anterior olfactory nucleus; in the induseum griseum and taenia tecta; in the olfactory tubercle; in CA1-CA3, the hilus of the dentate gyrus, and the subicular complex of the hippocampal formation; in the piriform, periamygdaloid, transitional, and lateral entorhinal cortices; in the endopiriform nucleus; in the hypothalamus, particularly the preoptic, periventricular, supraoptic, suprachiasmatic, and arcuate nuclei; and in a number of septal, thalamic, amygdaloid, and brainstem nuclei. Labeling was also seen in neurons of the neocortex and transitional cortical areas, particularly in layer V, and in basal ganglia and cerebellum. These data demonstrate that VGF mRNA is expressed much more extensively in the brain than has been described in previous RNA or immunohistochemical studies, and, furthermore, that VGF is widely expressed in the spinal cord and retina."	"Mapping of the alpha-tectorin gene (TECTA) to mouse chromosome 9 and human chromosome 11: a candidate for human autosomal dominant nonsyndromic deafness. alpha-Tectorin is one of the major noncollagenous components of the mammalian tectorial membrane in the inner ear. We have mapped the gene encoding alpha-tectorin to mouse chromosome 9 and human chromosome 11 in a known region of conserved synteny. Human YAC clones containing alpha-tectorin have been identified, demonstrating physical linkage to the anonymous marker D11S925. This places alpha-tectorin within the genetic interval that contains both the human nonsyndromic autosomal dominant deafness DFNA12 and the proximal limit of a subset of deletions within Jacobsen syndrome. Thus both DFNA12 and the hearing loss in some cases of Jacobsen syndrome may be due to haploinsufficiency for TECTA."	"Adolescent development alters stressor-induced Fos immunoreactivity in rat brain. Adult-typical behavioural responses to environmental challenges as well as the stressor responsiveness of several neural systems emerge over adolescent development. The present study was undertaken to determine whether stressors might activate different neural populations in adult vs juvenile male rats. Fos-immunoreactivity was determined in various forebrain nuclei following 15 min or 2 h of restraint in 28- and 60-day-old male rats (representing late juvenile and young adult ages, respectively) and compared to non-restrained control animals at each age. Few Fos-positive cells were identified in unrestrained controls at either age. Restraint, however, induced the production of Fos in several areas. Fos immunoreactivity was marked in parvocellular regions of the paraventricular nucleus of the hypothalamus following both restraint periods and at both ages, an observation consistent with previous observations that restraint increases plasma corticosterone at both ages. And at both ages, Fos immunoreactivity was evident in magnocellular regions of the hypothalamus only following the longer restraint period. Fos immunoreactivity, however, clearly varied as a function of adolescent age in several regions. Moderate to intense Fos immunoreactivity was observed in adults in all divisions of the anterior olfactory nucleus, cortical and medial amygdaloid nuclei, pyriform cortex and tenia tecta. In contrast to the adult, only a few Fos positive cells were observed in any of these regions in juveniles. Exposure to the same stressor induced Fos in a broader spectrum of neurons in young adult than in juvenile male rats. The lack of Fos-positive cells in specific areas of juveniles may relate to maturation in specific amygdaloid nuclei, which project to many of the other regions that showed age-related differences in Fos production. The emergence over adolescence of Fos-positive cells in specific areas in response to stressors may underlie the emergence of adult-typical behavioural and neural stressor-responsiveness."	"N-methyl-D-aspartate receptor activation and visual activity induce elongation factor-2 phosphorylation in amphibian tecta: a role for N-methyl-D-aspartate receptors in controlling protein synthesis. N-methyl-D-aspartate receptor (NMDAR) activation has been implicated in forms of synaptic plasticity involving long-term changes in neuronal structure, function, or protein expression. Transcriptional alterations have been correlated with NMDAR-mediated synaptic plasticity, but the problem of rapidly targeting new proteins to particular synapses is unsolved. One potential solution is synapse-specific protein translation, which is suggested by dendritic localization of numerous transcripts and subsynaptic polyribosomes. We report here a mechanism by which NMDAR activation at synapses may control this protein synthetic machinery. In intact tadpole tecta, NMDAR activation leads to phosphorylation of a subset of proteins, one of which we now identify as the eukaryotic translation elongation factor 2 (eEF2). Phosphorylation of eEF2 halts protein synthesis and may prepare cells to translate a new set of mRNAs. We show that NMDAR activation-induced eEF2 phosphorylation is widespread in tadpole tecta. In contrast, in adult tecta, where synaptic plasticity is reduced, this phosphorylation is restricted to short dendritic regions that process binocular information. Biochemical and anatomical evidence shows that this NMDAR activation-induced eEF2 phosphorylation is localized to subsynaptic sites. Moreover, eEF2 phosphorylation is induced by visual stimulation, and NMDAR blockade before stimulation eliminates this effect. Thus, NMDAR activation, which is known to mediate synaptic changes in the developing frog, could produce local postsynaptic alterations in protein synthesis by inducing eEF2 phosphorylation."	"Type 2 interleukin-1 receptor mRNA is induced by kainic acid in the rat brain. The in situ hybridization technique was used to examine the expression of type 2 interleukin-1 receptor (IL-1R2) mRNA in the rat brain following the systemic injection of kainic acid at a convulsive dose. The expression of IL-1R2 mRNA was not detected in any brain regions of the saline-injected control rats. 8 h after the systemic injection of kainic acid, weak expression of IL-1R2 mRNA was observed in the dentate gyrus and basolateral amygdaloid nucleus. At 12 and 24 h after the injection of kainic acid, IL-1R2 mRNA was markedly induced in various brain regions including the CA1 and CA3 fields of the hippocampus, dentate gyrus, basolateral amygdaloid nucleus, piniform cortex, claustrum, tenia tecta, arcuate hypothalamic nucleus, dorsomedial hypothalamic nucleus, suprachiasmatic nucleus, tuberal magnocellular nucleus and supramammillary nucleus. In these regions, the signals of IL-1R2 mRNA were observed on likely neuronal cells. Around the mediodorsal thalamic nucleus and the paraventricular thalamic nucleus, dispersed intense signals were observed on the non-neuronal cells. In addition, the expression of the mRNA on the venules was observed at 12 h. The strength of signals significantly decreased by 48 h after the injection. These findings revealed the spatiotemporal induction of IL-1R2 mRNA in the rat brain following the systemic administration of kainic acid, which has shown to cause neuronal degeneration, suggesting the pathological roles of IL-1R2 in the brain."	"The distribution of estrogen receptor-beta mRNA in forebrain regions of the estrogen receptor-alpha knockout mouse. Neurons in the hypothalamus of estrogen receptor alpha-knockout (ER alphaKO) mice have been shown to concentrate radiolabeled estrogen and estrogen treatment regulates the expression of progesterone receptor mRNA. The purpose of the present study was to utilize in situ hybridization histochemistry to determine the anatomical distribution of ER beta mRNA in ER alphaKO mouse forebrain. The results of these studies revealed an extensive distribution of ER beta mRNA in the hypothalamic regions including medial preoptic area, suprachiasmatic nucleus, paraventricular nucleus, dorsomedial nucleus, medial tuberal nucleus, and the premammillary nuclei. Additional labeled perikarya were also detected in the glomerular layer of the olfactory bulb; tenia tecta; anterior septum; bed nucleus of the stria terminalis; medial, basolateral and cortical nuclei of the amygdala; cerebral and entorhinal cortex; the septohippocampal nucleus; Ammon's horn of the hippocampus and the dorsal raphe. The results of these in situ hybridization histochemical studies have provided novel information about the distribution of ER beta mRNA in the ER alphaKO mouse forebrain. In addition, these morphological data provides evidence that estrogen may exert its actions in the ER alphaKO mouse brain via ER beta and thereby maintain organizational and activational effects."	"Functional guidance components and their cellular distribution in retinotectal co-cultures. Recent advances in the study of the developmental processes that direct afferent axons toward their final destinations are beginning to elucidate the cellular and molecular bases for the early development of retinotectal topography. The present review focuses on two guidance components (repulsive and adhesive) and their cellular localization as revealed by a newly established retinotectal co-culture system. These co-cultures enable general outgrowth patterns to be examined when retinal ganglion cell (RGC) axons attempt to traverse cells dissociated from their target nuclei. Additionally, the recording of RGC growth cone responses to single living target cells allows a cellular localization of guidance components that is not possible by other methods. This co-culture system, therefore, complements the repertoire of cell-culture techniques used to investigate the sequence of cellular events that underlie the establishment of retinotopic development. With this new approach, time-lapse micrographs were collected when RGC growth cones from temporal or nasal regions of embryonic chick retinae encountered individual cells dissociated from optic tecta. Temporal RGC growth cones collapsed and retracted with a high probability from neuronal cells dissociated from posterior tecta, indicating that repellent components were enriched on posterior target neurons. The response to non-neuronal cells revealed a separate effect on axonal outgrowth that was less dependent upon the particular region of retina or tectum from which the cells originated: most RGC axons adhered to the edge of non-neuronal cells, without retracting. Together, the localization of repellent and adhesive components suggests a sequence of events that occurs during the early stages of tectal innervation and that results in the rudiments of retinotopic projection, and furthermore, it raises a number of experimentally approachable questions concerning the functional expression of several guidance components."	"Experimental down-regulation of the NMDA channel associated with synapse pruning. The N-methyl-D-aspartate (NMDA) receptor has been implicated in activity-dependent synapse stabilization, but its role as a detector of correlated activity during development is debated. In the amphibian retinotectal system, synaptic sorting and stabilization occur throughout larval life, and map refinement is dependent on continuous NMDA receptor function. Moreover, tadpole tecta chronically treated with NMDA selectively fail to maintain retinal synapses wherever their activity correlations are lowest. To determine whether this synapse elimination is associated with a specific down-regulation of NMDA receptor function, whole cell voltage-clamp recordings were made from single neurons in tectal slices. After chronic NMDA treatment, decreases in the magnitude of NMDA currents were detected in glutamatergic synaptic currents, in agonist-evoked currents, and in single-channel currents activated by NMDA. The results suggest that the efficacy of NMDA receptors on tectal neurons determines the amount of correlation required to stabilize sets of tectal inputs during formation of the retinotectal projection."	"Developmental profile of NGF immunoreactivity in the rat brain: a possible role of NGF in the establishment of cholinergic terminal fields in the hippocampus and cortex. In the current investigation, we have examined the developmental profile of nerve growth factor immunoreactivity (NGF-ir) in the postnatal rat. During the first 3 weeks after birth, NGF-ir was observed within the hippocampal mossy fiber region, where it persists throughout adulthood and appeared transiently within three additional zones-the dentate gyrus supragranular zone, the tenia tecta/intermediate lateral septum, and the cingulate/retrosplenial cortex. In all cases, the appearance of NGF-ir progressed in a rostrocaudal pattern over time. A strong correlation was seen between the pattern of NGF-ir and cholinergic innervation in the dentate gyrus supragranular zone, both spatially and temporally, suggesting that NGF may direct the innervation of cholinergic afferents to this region. A spatial correlation was also observed between NGF-ir and cholinergic innervation within the retrosplenial cortex and tenia tecta. With our current techniques, however, we were unable to determine at what point during development the adult-like pattern of cholinergic terminal innervation in these regions occurred and, thus, were not able establish a temporal correlation in these regions. Within the cingulate cortex, there was no evidence suggesting that the developmental appearance of NGF-ir in this region was associated with a specific enhancement of cholinergic innervation. Thus, the results of the current investigation clearly identify the presence of transiently occurring zones of NGF-ir during postnatal CNS development, although defining their exact functional role will require additional investigation."	"Brain asymmetry as a potential biomarker for developmental TCDD intoxication: a dose-response study. Previous studies have indicated that in ovo exposure to 2,3,7,8-tetrachlorodibenzo-p-dioxin (TCDD) and related compounds is correlated with the development of grossly asymmetric brains. This asymmetry is manifested as a difference between the two halves of the forebrain and the tecta. Previously, only wildlife species (heron, cormorant, and eagle) had been shown to manifest this response. In the wildlife studies, the frequency and degree of left-right interhemispheric differences had been correlated with the levels of polychlorinated dibenzo-p-dioxin toxic equivalency factors (TEFs) in eggs from the same nest (heron, cormorant). We studied the effect of in ovo exposure to TCDD on the brain throughout development in a sensitive laboratory model (chicken). Embryos from chicken eggs (Gallus gallus) injected with one of several doses of TCDD or vehicle control were sacrificed after 9, 11, 13, 15, 17, or 20 days of incubation, or incubated to hatch and then sacrificed either within 24 hr or at 3 weeks post-hatch. Measurements of both chicken embryo and hatchling brains indicated that 1) TCDD alone induced the brain asymmetry in developing chickens; 2) this brain asymmetry was similar to that observed in animals exposed in the wild to a mixture of TCDD-related contaminants; 3) there was a dose-related increase in both the frequency and severity of brain asymmetry observed at all ages measured; and 4) the asymmetry was measurable in embryonic brains at an age when the braincase was a thin, flexible layer (embryonic day 9), implying that the effect of TCDD was directly on the developing brain and not indirectly via an effect on the braincase."	"1-(2-Alkanamidoethyl)-6-methoxyindole derivatives: a new class of potent indole melatonin analogues. A new series of indole melatonin analogues, bearing the amido ethyl side chain attached at the N-1 position of the indole nucleus, were synthesized and tested for their affinity for the melatonin receptor isolated from quail optic tecta in a series of in vitro ligand-binding experiments using 2-[125I]iodomelatonin as the labeled ligand. The biological activity was evaluated using two models: effects on the forskolin-stimulated cAMP accumulation in explants from quail optic tecta and evaluation of the GTP gamma S index derived from competition experiments performed in the absence or presence of GTP gamma S. Compounds 2a and 2k-n, obtained by shifting the methoxy group and the ethylamido side chain from the C-5 and C-3 positions of melatonin to the C-6 and N-1 positions of the indole nucleus, exhibited an affinity similar to that of melatonin itself, as well as full agonist activity. Optimization of the C-2 substituent by introducing Br, phenyl, or COOCH3 (2b-d) resulted in a significantly enhanced affinity (in the picomolar range) and improved agonist biological activity. Compounds lacking the methoxy group and bearing an N-alicyclic group (2h-j) behaved as partial agonists or antagonists."	"Methamphetamine exposure can produce neuronal degeneration in mouse hippocampal remnants. Neuronal cell death in hippocampal remnants was seen after methamphetamine (METH) exposure. Two techniques (Fluoro-Jade labeling and argyrophylia) showed that neuronal degeneration occurred in the indusium griseum, tenia tecta and fasciola cinerea within 5 days post-METH exposure in 70% of the mice. Neurodegeneration also occasionally occurred in the piriform cortex, hippocampus and frontal/parietal cortex. This cell death, unlike striatal neurotoxicity, was not dependent on magnitude of hyperthermia occurring but did correlate with behavioral seizure activity during METH exposure. Excitotoxic mechanisms may be underlying the neuronal degeneration since co-administration of phenobarbital blocked cell death."	"The contribution of protein kinases to plastic events in the superior colliculus. 1. The superior colliculus (SC)/optic tectum is a multi-layered midbrain area that harbours representations of visual and auditory space and somatic body surface. The development and maintenance of these sensory maps has been shown to involve activity and experience-dependent mechanisms. 2. The implantation of an extra eye primordium into the developing forebrain of Rana pipens results in the formation of dually innervated tecta that would have normally be solely innervated by the contralateral retina. The retinal projections are arranged in an interdigitating pattern of alternate stripes of terminations from each retina. The establishment of this striped pattern requires retinal activity and depends on N-methyl-D-aspartate (NMDA) receptors. Manipulation of protein kinase activity leads to the formation of an abnormal stripe pattern. 3. Regeneration of the goldfish retinotectal projection, following crush of the optic nerve, occurs in an activity dependent manner involving NMDA receptors. Furthermore, a critical period exists, during which retinal activity is vital for reformation of the visual map. Protein kinase manipulations during this period disrupt normal reformation. The same manoeuvres at other time points have little effect on map reformation. 4. An unusual form of long-term potentiation (SC-LTP) has been demonstrated in the in vitro preparation of the guinea-pig SC. By stimulating the optic layer of the SC, a postsynaptic potentiation can be recorded in the superficial grey layer. The expression of SC-LTP is masked but not prevented by blockade of NMDA receptors. The role of protein kinases in this form of synaptic modification has also been studied using various manipulations and inhibitors with varying substrate specificity. Whereas H7, an inhibitor reputed to be protein kinase C specific, only masks the expression of SC-LTP, K252a which has a broad substrate specificity blocks the induction of SC-LTP. 5. Experience-dependent formation of the auditory space map in the deeper layers of the SC is believed to be under the instruction of the visual representation in the superficial layers. Furthermore, a crucial period exists during which normal auditory and visual experience are required for successful establishment of the auditory map. Chronic exposure to 5-aminophosphonopentanoic acid (AP5) during this time prevents the formation of the map. Chronic exposure to K252a, a broad kinase inhibitor, over the same time period, also disrupts the formation of the auditory space map. 6. Taken together, these models emphasise the role of protein kinases in synaptic plasticity observed in the SC. Furthermore, interference with protein kinase activity at crucial stages of regeneration or development appears to disrupt the sequence of events that lead to the consolidation of SC receptive fields."	"Xenopus Brn-3.0, a POU-domain gene expressed in the developing retina and tectum. Not regulated by innervation. To study the effect of denervation on the expression of the POU-domain gene Brn-3.0 in the Xenopus visual system. An oligonucleotide probe was used to identify homologs of the murine gene Brn-3.0 in the retina. In situ hybridization was used to determine the spatial distribution of the mRNA within the developing embryo. To study the effects of denervation on Brn-3.0 expression and cell fate, embryonic eyes were transplanted to an ectopic location on the animal (the flank) before the onset of retinal ganglion cell (RGC) axonogenesis. Gene expression in ectopic eyes and denervated tecta was analyzed over time using in situ hybridization. The deduced, partial amino acid sequence for Xenopus Brn-3.0 shows 100% identity with the mouse Brn-3.0 and the human Brn-3a gene products. It is expressed during early embryonic development in distinct populations of the neural crest and later in specific cranial ganglia. It also is expressed in RGCs and in the optic tectum, beginning before the first RGC axons have reached the tectum and continuing without interruption throughout the period when retino-tectal connections are established and refined. If the retino-tectal projection is kept from forming by transplanting one eye to an ectopic location, Brn-3.0 expression is unaffected in both the ectopic eye and the denervated side of the tectum. Coordinate expression of Brn-3.0 in afferent and efferent pathways suggests mutual regulation. However, the authors' evidence shows that expression in the retina is not regulated by target-derived factors nor is expression in the tectum regulated by retinal innervation."	"The mouse tectorins. Modular matrix proteins of the inner ear homologous to components of the sperm-egg adhesion system. The cDNA and derived amino acid sequences for the two major non-collagenous proteins of the mouse tectorial membrane, alpha- and beta-tectorin, are presented. The cDNA for alpha-tectorin predicts a protein of 239,034 Da with 33 potential N-glycosylation sites, and that of beta-tectorin a smaller protein of 36,074 Da with 4 consensus N-glycosylation sites. Southern and Northern blot analysis indicate alpha- and beta-tectorin are single copy genes only expressed in the inner ear, and in situ hybridization shows they are expressed by cells both in and surrounding the mechanosensory epithelia. Both sequences terminate with a hydrophobic COOH terminus preceded by a potential endoproteinase cleavage site suggesting the tectorins are synthesized as glycosylphosphatidylinositol-linked, membrane bound precursors, targeted to the apical surface of the inner ear epithelia by the lipid and proteolytically released into the extracellular compartment. The mouse beta-tectorin sequence contains a single zona pellucida domain, whereas alpha-tectorin is composed of three distinct modules: an NH2-terminal region similar to part of the entactin G1 domain, a large central segment with three full and two partial von Willebrand factor type D repeats, and a carboxyl-terminal region which, like beta-tectorin, contains a single zona pellucida domain. The central, high molecular mass region of alpha-tectorin containing the von Willebrand factor type D repeats has homology with zonadhesin, a sperm membrane protein that binds to the zona pellucida. These results indicate the two major non-collagenous proteins of the tectorial membrane are similar to components of the sperm-egg adhesion system, and, as such may interact in the same manner."	"Ultrastructure of the isthmic nucleus and identification of the synaptic contacts received by the neurons of the crossed isthmotectal projection in Rana esculenta. The isthmic nucleus receives its major input from the ipsilateral optic tectum and projects to both tecta. It has been regarded as a relay station that is not involved in further processing of visual information. Recent studies on the connectivity and neurochemistry of this nucleus yielded substantial new data suggesting a more important role as being a simple relay. Since data on the ultrastructure of this nucleus are scarce the aim of this study was to obtain further information about the synaptic organisation of the nucleus. The frog Rana esculenta was used for our studies. The projection neurons of the isthmic nucleus were retrogradely labelled with HRP via the crossed isthmotectal tract. The tracer has been visualised with the diaminobenzidine reaction and the synaptic contacts have been studied with the electron microscope. Analysis of the synapses and profile types showed that both symmetrical and asymmetrical synapses are present in the nucleus. The dominant synapse type is axodendritic. Presynaptic profiles contain primarily round clear vesicles, but flattened vesicles also occur. Besides the axodendritic synapses, axosomatic contacts were also found in low number. Two kinds of dense core vesicles (large round or large elongated) were seen coexisting in the above described terminals. Close membrane appositions between the cortical cells suggest the probability of electrotonic coupling. Analysis of the relative frequency of synaptic profiles in different locations of the nucleus showed that the medullar neuropile is inhomogeneous. Our data support the view that the organisation of the isthmic nucleus is more diverse than that has been supposed until recently raising new functional considerations regarding isthmic information processing."	"The NADPH-diaphorase-containing system in the brain of the budgerigar (Melopsittacus undulatus). In the present investigation we studied the presence and distribution of histochemically detected neuronal NADPH-diaphorase (ND) in the brain of the budgerigar, Melopsittacus undulatus. Positive neurons are widely distributed throughout the central nervous system. ND-containing neurons are present in the telencephalon and the paleostriatal-parolfactory lobe complex. Positive cells were observed also in the neostriatum, including the main auditory area (field L), in several nuclei of the archistriatum and in the hyperstriatum (accessory, dorsal, and ventral). In the diencephalon, positive neurons were present both in the lateral hypothalamic and periventricular areas, and in a segregate area at the confluence of the anterior commissure and the lateral prosencephalic bundle. A group of positive perikarya was located lateral to the dorsal part of the IIIrd ventricle, and continued laterally into the thalamus. Weakly stained neurons were observed in the thalamic dorsomedial posterior nucleus. In the mesencephalon, ND-containing neurons were scattered in the reticular formation (pars lateralis and pars medialis) and in the optic tecta. A large population of positive neurons was observed in the substantia nigra, the ventral area of Tsai and the nucleus interpeduncularis. Positive neurons extended through the tegmental nuclei to the locus coeruleus. In the cerebellum, the granular neurons were weakly stained and the internal cerebellar nuclei were surrounded by a wide network of positive fibers. In the medulla the number of positive cells was highly reduced, but stained neurons were observed in the cochlear as well in the vestibular nuclei. The data here presented suggest that the distribution of ND-containing neurons in the brain of the budgerigar is different from those of the chicken and quail. The locations of positive neurons suggest also a possible involvement in sound perception and production pathways, and visual perception."	"Brain distribution of nitric oxide synthase in neuronal or endothelial nitric oxide synthase mutant mice using [3H]L-NG-nitro-arginine autoradiography. The regional distribution of nitric oxide synthase in the central nervous system was assessed by quantitative autoradiography using [3H]L-NG-nitro-arginine binding in wild-type mice (SV-129 and C57black/6) and in mice lacking expression of the neuronal (type 1) and endothelial (type 3) nitric oxide synthase gene. The distribution of nitric oxide synthase binding sites in wild-type mice was similar to that described for rat brain by nicotinamide adenine dinucleotide phosphate-diaphorase staining and immunohistochemistry, and as determined by quantitative autoradiography. In the wild-type mice, the densest labelling was observed in the granular layer of the olfactory bulb, tenia tecta, rhinal fissure, amygdaloid complex and molecular layer of cerebellum. The islands of Calleja, the hippocampal CA1 and CA3 subfields, dentate gyrus, cortical layers I-II, the superficial gray layer of superior colliculus and the granule layer of cerebellum displayed intermediate binding. Cortical layers III-VI, the striatum and the thalamus were only weakly labelled. Binding was saturable and of high affinity, and was displaced by 7-nitroindazole (100 microM), a potent and selective inhibitor of type 1 nitric oxide synthase, and by unlabelled L-NG-nitro-arginine (10 microM). The density of [3H]L-NG-nitro-arginine binding was dramatically reduced in all brain regions in type 1 mutant mice, whereas there were no detectable binding differences between wild-type and type 3 nitric oxide synthase mutant mice. Hence, type 1 nitric oxide synthase is the major source of [3H]L-NG-nitro-arginine binding in the mouse brain. [3H]L-NG-Nitro-arginine autoradiography may be a useful tool to quantify nitric oxide synthase in different brain areas after pharmacological or physiological manipulations."	"Retroviral misexpression of engrailed genes in the chick optic tectum perturbs the topographic targeting of retinal axons. We have investigated the role of the homeodomain transcription factor genes En-1 and En-2, homologs of the Drosophila segment polarity gene engrailed, in regulating the development of the retinotopic map in the chick optic tectum. The En proteins are distributed in a gradient along the rostral-caudal axis of the developing tectum, with highest amounts found caudally. Previous evidence suggests that En-1 and En-2 may regulate the polarity of the rostral-caudal axis of the tectum and the subsequent topographic mapping of retinal axons. We have tested this hypothesis by using a recombinant replication-competent retrovirus to overexpress the En-1 or En-2 genes in the developing tectum. Anterograde labeling with the axon tracer Dil was used to analyze the topographic mapping of retinal axons after the time that the retinotectal projection is normally topographically organized. Overexpression of either En-1 or En-2 perturbed the topographic targeting of retinal axons. In En-infected tecta, nasal retinal axons form an abnormally diffuse projection with numerous aberrant axons, branches, and arbors found at topographically incorrect locations, colocalized with domains of viral infection. In contrast, temporal axons did not form a diffuse projection or discrete aberrant arbors; however, many temporal axons were stunted and ended aberrantly rostral to their appropriate TZ, or in other cases either did not enter the tectum or formed a dense termination at its extreme rostral edge. These findings indicate that En-1 and En-2 are involved in regulating the development of the retinotopic map in the tectum. Furthermore, they support the hypothesis that En genes regulate the polarity of the rostral-caudal axis of the tectum, most likely by controlling the expression of retinal axon guidance molecules."	"Presynaptic calcium dynamics at the frog retinotectal synapse. 1. We characterized the kinetics of presynaptic Ca2+ ion concentration in optic nerve fibers and terminals of the optic tectum in Rana pipiens with the use of microfluorimetry. Isolated frog brains were incubated with the membrane-permeant tetraacetoxymethyl ester (AM) of the Ca2+ indicator fura-2. An optic nerve shock caused a transient decrease in the 380-nm excited fluorescence in the optic tectum with a rise time of &lt;15 ms and a recovery to prestimulus levels on a time scale of seconds. 2. In normal saline, the amplitude of the fluorescence transients was dependent on stimulus intensity and at all levels it was directly correlated with the amplitude of postsynaptic field potentials produced by activation of unmyelinated optic nerve fibers. In the presence of the non-N-methyl-D-aspartate glutamate receptor antagonist 6-cyano-7-nitroquinoxaline-2,3-dione, the amplitude and time course of fluorescence transients remained essentially unchanged while postsynaptic field potential amplitude was greatly reduced. Replacing extracellular Ca2+ with Ba2+ blocked unfacilitated postsynaptic field potentials while fluorescence transients remained significant. In reduced-Ca2+ salines (&lt;1 mM), the amplitude of fluorescence transients increased approximately linearly with extracellular [Ca2+], whereas the amplitude the corresponding field potential was nonlinearly related to the fluorescent transient amplitude (approximately 2.5 power). In thin sections of labeled tecta, fluorescence labeling was localized to 1-micron puncta in the termination zone of optic nerve fibers in the superficial layers. Taken together, these results provide strong evidence that the fluorescence transients correspond to an increase in Ca2+ in presynaptic terminals of unmyelinated optic nerve fibers. 3. During trains of optic nerve stimulation, the amplitude of fluorescence transients to succeeding action potentials became smaller. The decrement of the amplitudes was not observed in mag-fura-5-labeled tecta, when the intracellular Ca2+ buffering capacity of fura-2-labeled terminals was increased by incubation with bis-(o-aminophenoxy)-N,N,N',N'-tetraacetic acid (BAPTA)-AM or ethylene glycol-bis (beta-aminoethyl ether)-N,N,N',N'-tetraacetic acid (EGTA)-AM, or in low-Ca2+ saline. We conclude that the Ca2+ influx per action potential is constant during the train and that the reduced response was produced by saturation of the fura-2. We provide a mathematical analysis of this saturation effect and use it to estimate the Ca2+ change per action potential. 4. Both BAPTA-AM and EGTA-AM reduced the overall amplitude of fura-2-measured Ca2+ transients and reduced the saturation effect in action potential trains. However, there was a qualitative difference in their effects on the shape of the transient. Incubation with the fast buffer BAPTA prolonged the decay to baseline. In contrast, the slow buffer EGTA (or EDTA) produced an initial decay faster than the control condition while also producing the slower subsequent phase observed with BAPTA. We demonstrate that these results are consistent with numerical simulations of Ca2+ dynamics in a single-compartment model where the fast initial decay is produced by the forward rate of Ca2+ binding to EGTA. 5. Ca2+ influx into tectal presynaptic structures, and also into unmyelinated axons in the isolated optic nerve, was diminished (60-70%) in the presence of the voltage-activated Ca2+ channel blocker omega-conotoxin GVIA, but was only weakly affected (approximately 10%) by omega-agatoxin IVA. 6. After 10- to 50-Hz stimulus trains, synaptic enhancement of unmyelinated fibers decayed with a characteristic time similar to fura-2 fluorescence decays. Incubation with EDTA-AM or EGTA-AM produced little effect on evoked release but reduced both the amplitude of the fura-2-measured Ca2+ transient and the amplitude of short-term synaptic enhancement."	"Optic nerve-dependent changes in adult frog tectal cell phenotypes. Optic nerve activity helps determine the placement of retinal ganglion cell terminals in the optic tectum of the frog. We investigated whether the presence of this nerve might also influence a characteristic of its target structure, neurotransmitter biosynthesis. We performed unilateral optic nerve transections on adult animals and assayed the percent and intensity of substance P- and serotoninlike immunoreactive (SP-ir and 5-HT-ir, respectively) cells in the deafferented and afferented tectal lobes. Regeneration of the optic nerve was prevented. The percent of SP-ir cells in the afferented tectal lobes was significantly less than that in the deafferented ones either 6 weeks or 5 months following optic nerve lesion. Comparison to normal animals indicated that the change in SP-ir expression was due to a decrease in the percent of immunoreactive cells in the afferented tecta ipsilateral to the optic nerve lesion. The serotoninlike immunoreactivity of tectal cells was also significantly different in the two lobes following optic nerve lesions. This difference resulted from an increase in the percent of 5-HT-ir cells in the deafferented tectum. In addition, the intensity of 5-HT-ir cells in the deafferented lobe was significantly greater than in the afferented one. The staining intensity of SP-ir cells underwent only a transient, relative decrease in the deafferented tectum. We conclude that the optic nerve does regulate substance P and serotonin expression in the tectum, but that this regulation likely occurs through different pathways."	"Differential coexpression of genes encoding prothyrotropin-releasing hormone (pro-TRH) and prohormone convertases (PC1 and PC2) in rat brain neurons: implications for differential processing of pro-TRH. Pro-TRH is cleaved at paired basic residues to yield five copies of TRH and cryptic peptides. Recent studies have shown that the prohormone convertases, PC1 and PC2, can process pro-TRH correctly. To determine whether these two enzymes could play a role in pro-TRH processing in vivo, the regional and cellular colocalization of pro-TRH messenger RNA (mRNA) with the mRNAs encoding the prohormone convertases PC1 and PC2 was examined in rat brain, using in situ hybridization histochemistry. Differential regional distribution of pro-TRH mRNA with PC1 and/or PC2 mRNA was found in several brain regions. For example, in the olfactory regions, there was coexpression of pro-TRH mRNA in the glomerular layer with PC2 mRNA, but not PC1 mRNA, whereas in the tenia tecta, coexpression of pro-TRH and PC1 mRNAs was evident, but PC2 mRNA was absent. Pro-TRH mRNA in the paraventricular nucleus was coexpressed with both PC1 and PC2 mRNAs, whereas the basal lateral hypothalamus showed coexistence of pro-TRH mRNA with PC2 mRNA, but not PC1 mRNA. Interestingly, pro-TRH was expressed in the thalamic reticular nucleus, but neither PC1 nor PC2 was detectable in this region. Cellular colocalization studies using double in situ hybridization histochemistry showed the presence of PC2 mRNA in the pro-TRH neurons of the olfactory glomerular layer and basal lateral hypothalamus, and PC1 mRNA in the pro-TRH neurons in the paraventricular nucleus. These results suggest that PC1 and PC2 are enzyme candidates for the processing of pro-TRH in vivo. Moreover, the differential distribution of PC1 and PC2 mRNAs with pro-TRH mRNA may be responsible for the differential processing of this prohormone in the central nervous system. The absence of PC1 and PC2 mRNAs in certain TRH neurons raises the possibility that prohormone convertases other than PC1 and PC2 may be involved in the processing of brain pro-TRH."	"Neuroanatomical characterization of Fos induction in rat behavioral models of anxiety. Immunohistochemical staining for Fos-like immunoreactivity (Fos-LI) was used to map functional activation in discrete brain regions of rats processed in three empirical models of anxiety: foot shock avoidance responding in a shuttle box, the elevated plus maze, and an air puff-induced ultrasonic vocalization test. The avoidance test and elevated plus maze induced prominent Fos-LI in select brain regions, including the medial prefrontal, cingulate, and ventrolateral orbital cortices, taenia tecta, nucleus accumbens, paraventricular nucleus of the hypothalamus, medial nucleus of the amygdala and lateral septum. Air puff stimuli that produced ultrasonic vocalizations induced Fos-LI to a more limited extent compared to the plus maze and avoidance test, with only the medial prefrontal cortex, medial nucleus of the amygdala, and lateral septum being significantly affected by air-puff. Even though the sensory stimuli and environmental conditions associated with the three anxiety models were markedly different, specific common forebrain regions were affected, i.e. the medial prefrontal cortex, medial amygdala, and lateral septum. It is hypothesized that these regions are components of a circuit in the rat brain related to anxiety or distress. To determine the potential relationship between generalized arousal and the observed induction of Fos-LI in the anxiety models, rats were tested in a non-aversive situation involving marked behavioral activation. Accordingly, after vigorous bar pressing behavior for reinforcement with sweetened condensed milk, induction of Fos-LI was minimal and comparable to that in unhandled control rats. These latter data indicate that the distinctive neuroanatomical patterns of Fos-LI observed in the paradigms related to anxiety were not simply due to generalized behavioral activation. In summary, select common brain regions were identified that express Fos-LI in empirical models of anxiety. These data provide a functional framework to explore neuroanatomical sites of action of psychotherapeutic drugs that influence behavioral responses in these tasks."	"Induction of NADPH-diaphorase activity in the rat forebrain after middle cerebral artery occlusion. Induction of NADPH-diaphorase (NDP) following ischemic infarction was studied by means of histochemistry in the rat cerebral cortex 1,2,7, and 14 days after distal occlusion of the right middle cerebral artery (MCA). The fine structure of cells in the penumbra region of the necrotic center was also investigated. MCA distal occlusion resulted in ischemic lesion of the frontoparietal cortex of variable extent; NDP induction was detected in neurons, astrocytes, macrophages, and endothelial cells, with regional specificity and a temporal gradient. One, two, and seven days after MCA occlusion, weak NDP positivity was consistently induced in some pyramidal neurons in cortical areas neighboring the necrotic area; NDP induction was also seen in pyramidal neurons of the ipsilateral anterior cingulate and infralimbic cortices and in the tenia tecta. In addition, numerous NDP-positive pyramidal neurons were detected in the contralateral frontoparietal cortex after relatively large ischemic lesions. Two weeks after MCA occlusion, NDP induction in neurons was only evident in the deep cortical layers near the lesion. NDP histochemistry combined with glial fibrillary acidic protein immunofluorescence, performed 7 days after MCA occlusion, indicated that the astrocytes at the periphery of the necrotic area were hypertrophic and some of them were also NDP-positive. One and two days after MCA occlusion, numerous macrophages displaying NDP positivity of variable intensity were seen at the periphery of the necrotic area and in the external capsule of the ischemic cerebral hemisphere. Many endothelial cells in the cortex and subcortical white matter were consistently NDP-positive in all rats. Electron microscopic studies indicated that the area adjacent to the necrotic center was composed of fibrous astrocytes, with the morphological characteristics of proliferation, and numerous lysosome-filled macrophages. Altogether the present results suggest that focal cerebral ischemia may induce in different cell types nitric oxide synthase, which is equivalent to NDP in fixed tissue. The induction of nitric oxide synthase may be related to (1) blood-flow regulation at relatively early postischemic stages, which may decline when collateral circulation is established, and/or (2) cytotoxic or neuroprotective mechanisms."	"NMDA receptor activation-responsive phosphoproteins in the developing optic tectum. A front phosphorylation assay followed by two-dimensional gel electrophoresis was used to detect proteins in the tadpole optic tectum, the phosphorylation state of which is regulated by NMDA receptor activation. Five proteins with isoelectric points between 4 and 7 displayed marked increases in their phosphorylation state in response to application of 10 microM glutamate and 50 microM NMDA. This response was inhibited by 60 microM 2-amino-5-phosphopentanoic acid. These proteins are termed NMDA receptor activation-responsive phosphoproteins (NARPPs). Two NARPPs were identified as both in vitro and in vivo substrates for protein kinase C. Of these two NARPPs, one was located in the postsynaptic density (NARPP-50), and one was located in the nuclear fraction (NARPP-21). Phosphorylation of NARPP-21 was also induced by application of the metabotropic glutamate receptor agonist trans-(+/-)-1-amino-1,3-cyclopentanedicarboxylic acid (trans-ACPD) (100 microM). Phosphorylation of all NARPPs was eliminated by dantrolene, which inhibits release of calcium from intracellular stores. In adult tecta, only NARPP-21 and -50 were phosphorylation. Thus the phosphorylation state of most NARPPs is regulated differently when synaptic plasticity is low. Further characterization of NARPPs should lead to identification of second messenger systems involved in NMDA receptor signaling and developmental synaptic plasticity."	"Distribution of the mRNA for protein phosphatase T in rat brain. We have recently cloned a novel protein serine/threonine phosphatase (PPT) from rat mRNA which is predominantly expressed in the brain (Becker et al., J. Biol. Chem., 269 (1994) 22586-22592). In the present study, the regional distribution of PPT mRNA in the brain of adult rats was characterized by in situ hybridization histochemistry. PPT mRNA was found to be differentially expressed throughout the rat brain. Highest transcript levels were found in specific neuronal populations (hippocampus, piriform cortex, taenia tecta, medial habenula, granular cell layer of the cerebellum) as well as in the choroid plexus of the third and lateral ventricles. In contrast, expression levels in some brain areas, e.g., caudate putamen and white matter, were beyond the detection limit of in situ hybridization. The pattern of expression of PPT in rat brain differs from that of other protein serine/threonine phosphatases and may reflect specific functions of this phosphatase."	"Differential expression of oxytocin receptor mRNA in the developing rat brain. The embryonic and postnatal localizations of oxytocin receptor mRNA in the developing rat brain were studied by in situ hybridization histochemistry. The hybridization signal was first detected at embryonic-day 13 in the primordium of the dorsal motor nucleus of vagus. Other positive regions progressively appeared after this time. The developmental profile of oxytocin receptor gene expression could be classified into two types; transient expression and constant abundant expression. The caudate putamen, cingulate cortex, the anterior thalamic nuclei, and the ventral tegmental area belonged to the first type. In these regions, oxytocin receptor mRNA was expressed intensely only during the early postnatal period. The regions such as the anterior olfactory nucleus, tenia tecta, some amygdaloid nuclei, piriform cortex, the ventromedial hypothalamic nucleus, subiculum, the prepositus hypoglossal nucleus and the dorsal motor nucleus of vagus showed constant expression of oxytocin receptor mRNA at high levels throughout development and in the adult. These findings concurred well with those of the ontogenic studies using receptor binding autoradiography with a ligand specific to oxytocin. Thus, the transient expression of oxytocin receptor during development was regulated at the transcriptional level in several brain regions, and oxytocin may play a role in brain development as well as in neural transmission in the mature brain."	"Autoradiographic distribution of [125I]Leu31,Pro34]PYY and [125I]PYY3-36 binding sites in the rat brain evaluated with two newly developed Y1 and Y2 receptor radioligands. The peptide YY derivatives [Leu31,Pro34]PYY and PYY3-36 are highly selective Y1 and Y2 agonists, devoid of activity on the Y3 receptor subtype [Dumont et al. (1994) Molec. Brain Res., 26:3220-3324]. These selective ligands were iodinated and used to evaluate the respective quantitative autoradiographic distribution of the Y1 and Y2 receptor subtypes in the rat brain, excluding a potential contamination from Y3 receptor. Specific [125I][Leu31,Pro34]PYY (Y1), and [125I]PYY3-36 (Y2) binding sites are detected in various brain regions, but each showed a differential distribution profile. Y1/[125I][Leu31,Pro34]PYY sites are especially concentrated in superficial layers of the cortex, the olfactory tubercle, islands of Calleja, tenia tecta, molecular layer of the dentate gyrus, several thalamic nuclei, and the posterior part of the medial mammaliary nucleus. These areas generally contained only low densities of Y2/[125I]PYY3-36 binding sites. In contrast, [125I]PYY3-36 binding is most abundant in multiple other regions including the lateral septum, piriform cortex, triangular septal nucleus, bed nucleus of the stria terminalis, oriens layer and stratum radiatum of the dorsal hippocampus, ventral tegmental area, substantia nigra, dorsal raphe nucleus, and the granular cell layer of the cerebellum. Few areas of the rat brain contained significant amounts of both [125I][Leu31,Pro34]PYY and [125I]PYY3-36 binding sites such as the anterior olfactory nuclei, oriens layer and stratum radiatum of the ventral hippocampus, nucleus tractus solitarius, area postrema, and inferior olive. Taken together, these results and the use of two selective radioligands demonstrate further the discrete, differential distribution of the Y1 and Y2 receptor subtypes in the rat brain."	"Distribution of Fluoro-Gold (FG) in the central nervous system of the rat following its injection into the cerebello-medullary cistern. Fluoro-Gold (FG) injected into the cerebello-medullary cistern (CMC) is accumulated in several nuclei and neurons of the brain. These structures include: taenia tecta, some fusiform perikarya in the diagonal band of Broca, pyramidal cells in the fifth layer of the cerebral cortex, paraventricular nuclei, zona incerta, medial habenular nuclei, red nuclei, dorsal tegmental nuclei, median raphe nucleus, nuclei pontis, cochlear and vestibular nuclei and some Purkinje cells in the most lateral segment of the cerebellar cortex. The supraoptic nucleus and the median eminence are free of FG. Many nuclei in the myelencephalon and large groups of neurons in the dorsal, intermediate and anterior horns of the spinal cord are also labeled with FG, but exact identification of these cell groups needs further experimentation. Our findings indicate that FG can be picked up from the subarachnoid space into many cell groups of the brain and spinal cord. It is concluded that possible leaking of FG into the subarachnoid space following its injection into the central nervous system has to be taken into account whenever FG is used in tract tracing experiments."	"Similarities and differences in the cytoarchitecture of the tectum of frogs and salamanders. Frogs exhibit a morphologically complex (multiply laminated) optic tectum, while salamanders have one of the morphologically simplest tecta among vertebrates. In a comparative approach, the morphology of tectal projection neurons is investigated in three salamander species, Hydromantes italicus, H. genei and Plethodon jordani, and two frog species, Discoglossus pictus and Eleutherodactylus coqui, by means of retrograde Biocytin labeling complemented by intracellular Biocytin staining of cells. Despite striking differences in the gross anatomy of the tectum, salamanders and frogs have the same types of tectal neurons with respect to their dendritic arborization and the pattern of ipsilaterally and bilaterally ascending (to praetectum and thalamus) and ipsilaterally or contralaterally descending projections (to nucleus isthmi, medulla oblongata and rostral spinal cord). In the light of these findings, the relationship between morphological complexity of the tectum and behavioral complexity (feeding behavior) is discussed."	"Polysialylated neural cell adhesion molecule and plasticity of ipsilateral connections in Xenopus tectum. The optic tectum of Xenopus offers a readily manipulated system for testing the hypothesis that polysialylation of the neural cell adhesion molecule is associated with axonal plasticity. Axons relaying input to the tectum from the ipsilateral eye employ visual input to establish a topographic map in register with the contralateral map, despite naturally-occurring or surgically-induced repositioning of the eyes. This capacity for activity-dependent refinement or re-organization of the ipsilateral map is normally confined to a period between about one and four months postmetamorphosis but can be restored in adults by local application of N-methyl-D aspartate to the tectum. In addition, dark-rearing prolongs plasticity indefinitely. We have used immunohistochemical staining with antibodies to polysialic acid to determine whether conditions of high plasticity are correlated with high levels of polysialylated neural cell adhesion molecule in the tectum. We find that the staining level is high in tecta from one to three month postmetamorphic frogs but is low both before and after this period. Thus, in normal Xenopus frogs, anti-polysialic acid staining is heavier in the period of high plasticity than in the preceding or following postmetamorphic periods. As a further test of this relationship, we examined brains of adults with experimentally-induced plasticity. Tecta of N-methyl-D-aspartate-treated adults and of dark-reared adults showed higher levels of staining than did the tecta of normally-reared adults. These results also support the hypothesis that the presence of high levels of polysialic acid on neural cell adhesion molecules is causally related to activity-related changes in axonal growth patterns."	"Morphogenesis of the brain in larval and juvenile Japanese eels, Anguilla japonica. We compared the morphology, including relative volumes (RV), of some brain regions in leptocephalus larvae (10-30 mm in total length), glass eels (elvers), young, and immature pre-adults of the Japanese eel Anguilla japonica. The external brain shape of the leptocephali gradually changes from a laterally compressed one to a depressed elongated one. These changes are fundamentally due to biased growth of the telencephalon and optic tectum. The dramatic brain transformation progresses until the juvenile stage and culminates in an adult-type brain arrangement, with a developed cerebellum and eminentia granularis and a much more flattened appearance. The RVs of brain regions closely related to somatic sensory functions are quite different in larvae and juveniles. The larvae possess larger optic tecta and smaller chemo- and mechanosensory regions than the juveniles. The RV of the olfactory bulb increases, and that of the optic tectum decreases, until the adult stage, unlike the condition in a pelagic fish, Pagrus major, suggesting that adult eels are inferior to pelagic fishes in visual perception. In contrast, the brain morphology of the larvae suggests that they are equipped with a well-developed visual system, while the functional significance of the system still remains a mystery. It might be important for feeding, orientation and diurnal vertical migration of the larvae."	"Embryonic and postnatal mRNA distribution of five somatostatin receptor subtypes in the rat brain. The messenger RNA (mRNA) expression of somatostatin (SRIF) receptors SSTR-1, SSTR-2, SSTR-3, SSTR-4 and SSTR-5 (called sst1-5, now) was studied in rat brain between embryonic day 17 (E17) and post-natal day 5 (P5) by in situ hybridization histochemistry and compared to that of adult rats. sst1 receptor mRNA expression was very low and restricted at E17, spread out at E18, to reach very high levels comparable to that of adult at P5 (e.g. in temia tecta, posteromedial cortical amygdaloid nucleus, subiculum). At E17/E18, sst2 receptor mRNA expression was low and limited (telencephalon); significant levels were present at P5 in allocortex, hippocampus, locus coeruleus, similarly to adult brain. sst3 receptor mRNA was high at E17 in most brain regions, and almost as ubiquitous as in adult brain at P5. sst4 receptor mRNA was apparently absent at E17, with low levels in the hippocampus, amygdala and habenula at E18; a wider distribution, especially in the hippocampus and cerebral cortex was observed at P5, similar to that of adult. sst5 receptor mRNA was not detected at E17 and negligible at E18; low levels were found in the cortex, hippocampus and cerebellum at P5. However, in adult brain, only the cerebellum and hind-brain showed some sst5 receptor mRNA transcripts. The presence and distribution of SRIF receptor mRNAs differs substantially in embryo and adult brain. Some mRNAs are present throughout development, while others proceed only postnatally to the adult form. There are striking differences within and between the different SRIF receptor mRNAs, suggesting a role in neurogenesis for some SRIF receptors (e.g. sst2). However, mRNA and protein levels do not necessarily correlate."	"Changes in retinal arbors in compressed projections to half tecta in goldfish. In adult goldfish, electrophysiological studies have shown that the retinotectal projection reorganizes, following removal of half of the tectum, to form a complete but compressed projection over the remaining half tectum. As a result, each fiber terminates more rostrally than normal. Electron microscopic studies suggest a competition between retinal fibers for a fixed number of synaptic sites. The current study examines whether retinal arbors in the compressed projection are smaller than normal in extent or branching and whether the fiber paths in the tectum show the rostral movements and the search strategy that the retinal fibers use. The caudal half tectum was removed without cutting retinal fibers except those at the cut edge. At 3 to 19 months afterward, retinal fibers were labeled with horseradish peroxidase. In whole-mounted tecta, fibers and terminals were drawn under camera lucida and compared with normal arbors. The axonal paths were also traced across the tectum to their termination sites. At 3 to 6 months (early stages of compression), the arbors were rather normal in appearance, although they were actually significantly larger (23%) than normal in linear extent, arborized somewhat deeper and had fewer branches (18%). The fibers normally terminating in the rostral tectum followed normal stereotyped paths, whereas those cut at the edge had grown back and forth loops (apparent searching behavior) with little branching. By 10 months when compression is complete, arbors were significantly smaller than normal (19%), were arborizing significantly deeper, and had significantly fewer branches (19%). The differences were more pronounced in arbors of coarse and medium caliber than in fine caliber axons. The axons still ran in stereotyped fascicles, but included an extrafascicular portion that, unlike any axons in normals, turned back in a rostral direction before branching. This striking effect, present even in far rostral tectum, indicated that arbors had been forced to move rostrally to accomodate those from the ablated half. The small effect on arbor extent suggests that this is influenced by factors other than the magnification factor of the map, perhaps postsynaptic dendritic extent. The increased depth of termination is consistent with the increased thickness of the retinal terminal layer. The decreased number of branches is consistent with the conclusion that the remaining fixed number of synaptic sites shared among the full complement of retinal fibers should result in fewer synapses per retinal fiber."	"NMDA receptors mediate heat shock protein induction in the mouse brain following administration of the ibotenic acid analogue AMAA. Expression of inducible heat shock protein-70 (HSP-70) and hsp-70 mRNA were studied in the adult mouse brain following systemic administration of the ibotenic acid analogue (+/-)-2-amino-3-hydroxy-5-methyl-4-isoxazoleacetic acid (AMAA), which is a potent N-methyl-D-aspartate (NMDA) agonist. At the dose of 20 mg/kg, AMAA produced excitatory behaviours in adult mice but overt convulsions were not seen. This treatment did not result in any detectable morphological brain damage at 4 days following administration. At 2.5 h and 5 h following treatment induction of hsp-70 mRNA expression was found in the pyramidal cell layers of CA1 and, to a lesser extent, CA3 fields of hippocampal Ammon's horn, amygdala, olfactory lobes, tenia tecta, hypothalamic nuclei and a superficial layer of cingulate, frontal and retrosplenial cortices. The presence of HSP-70 was detected by immunochemistry at 24 h following drug administration in those regions previously showing hsp-70 mRNA induction. AMAA-induced hsp-70 mRNA expression was prevented by pre-treatment with the non-competitive NMDA antagonist MK-801. These results suggest that NMDA receptors are involved in the stress response induced by AMAA."	"The cochlea of Tadarida brasiliensis: specialized functional organization in a generalized bat. Tadarida brasiliensis mexicana employs a broad-band sonar system at frequencies between 80 and 20 kHz and is characterized by non-specialized hearing capabilities. The cochlear frequency map was determined with extracellular horseradish peroxidase tracing in relation to quantitative morphological data obtained with light, scanning and transmission electron microscopy. These data reveal distinct species characteristic specializations clearly separate from the patterns observed in other bats with either broad-band or narrow-band sonar systems. The basilar membrane (BM) is coiled to 2.5 turns and about 12 mm long. Its thickness and width only change within the extreme basal and apical ends. The frequency range from about 30 to 80 kHz is represented in the lower basal turn with a typically mammalian mapping coefficient of about 3 mm/octave. This region exhibits morphological features correlated with non-specialized processing of high frequencies. (1) The BM is radially segmented by thickenings of pars tecta and pars pectinata. (2) The 3 rows of outer hair cells (OHCs) have similar morphology. Between 35 and 86% distance from base, frequencies between 30 and 12 kHz are represented with a slightly expanded mapping coefficient of about 6 mm/octave. In analogy to previous work, this cochlea region is termed acoustic fovea. It includes the frequency range of maximum sensitivity and sharpest tuning (21-27 kHz) but also frequencies below the sonar signals. The fovea is characterized by several morphological specializations. (1) The BM features a continuous radial thickening mainly composed of hyaline substance. (2) There is an increased number of layers of tension fibroblasts in the spiral ligament. (3) There are morphological differences in the arrangements of stereocilia bundles among the 3 rows of OHCs. The transitions between non-specialized and specialized cochlear regions occur gradually within a distance of about 600 microns. The gradients in stereocilia length of both receptor cell types and the gradations in length of the OHC bodies match specialized aspects of the frequency map."	"Target-independent diversification and target-specific projection of chemically defined retinal ganglion cell subsets. In diverse vertebrate species, defined subsets of retinal ganglion cells (RGCs, the neurons that project from retina to brain) are distinguishable on the basis of their dendritic morphology, physiological properties, neurotransmitter content and synaptic targets. Little is known about when this diversity arises, whether diversification requires target-derived signals, and how subtype-specific projection patterns are established. Here, we have used markers for two chemically defined RGC subsets in chick retina to address these issues. Antibodies to substance P (SP) and the nicotine acetylcholine receptor (AChR) beta 2 subunit label two small ( &lt; 10%), mutually exclusive groups of RGCs in mature retina. SP and AChRs accumulate in distinct RGCs before retinotectal synapses have formed. Moreover, both populations of RGCs form in retinae that develop following tectal ablation or transplantation to the coelomic cavity. Thus, RGC subsets acquire distinct neurotransmitter phenotypes in the absence of extraretinal cues. In the mature optic tectum, SP- and AChR-positive RGC axonal arbors are confined to distinct retinorecipient (synaptic) laminae. In the developing tectum, SP- and AChR-positive axons are initially intermingled in a superficial fiber layer, but then enter and arborize in appropriate laminae soon after those laminae form. Importantly, SP-positive axons, which synapse in a superficial lamina, never extend into the deeper, AChR-positive lamina. Tectal interneurons rich in SP receptors are concentrated in the lamina to which SP-positive RGC axons project, and a set of cholinergic (choline acetyltransferase-positive) tectal projection neurons elaborate dendrites in the lamina to which AChR-positive RGC axons project. These populations of tectal neurons, which are likely targets of the RGC subsets, form in tecta that develop following enucleation. Thus, RGCs and their targets can diversify in each others absence. Accordingly, we propose that the lamina-selective connectivity we observe reflects the presence of complementary cues on RGC subsets and their laminar targets."	"Distribution of mRNA encoding the inwardly rectifying K+ channel, BIR1 in rat tissues. The distribution of mRNA encoding the inwardly rectifying K+ channel, BIR1 [1] was investigated in rat tissues, and a comparison made with the expression of related genes rcKATP and GIRK1 using the reverse transcription-polymerase chain reaction (RT-PCR). This showed BIR1 to be expressed in all areas of the brain examined, in the eye but not in any other peripheral tissue. This pattern was distinct from rcKATP and GIRK1. Additional in situ hybridisation studies of the central expression of BIR1 demonstrated high levels of BIR1 mRNA in the hippocampus, dentate gyrus, taenia tecta and cerebellum and at lower levels in the cortex, habenular nucleus, olfactory bulb, primary olfactory cortex, thalamus, pontine nucleus and amygdaloid nucleus."	"Absence of topography in precociously innervated tecta. The retinotectal map in Xenopus forms very early: retinal axons are topographically ordered along the dorsoventral axis of the tectum by stage 39, as they first arrive. To test whether topographic cues are present even earlier, we forced retinal axons to innervate the tectum prematurely by transplanting stage 28 eye primordia into stage 20 hosts, then assayed dorsoventral topography using focal injections of lipophilic dye into dorsal and ventral retina at donor stages 39-40. Unoperated and isochronic control projections showed normal dorsoventral ordering both in the optic tract and in the tectum. In contrast, projections from heterochronically transplanted eyes were ordered in the tract, but spread out upon entering the tectum and did not show significant dorsoventral ordering. Individual axons entering the tectum precociously often made abnormally abrupt and topographically incorrect turns. Thus, the topographical cues normally expressed in the tectum at stage 39 appear to be absent a few hours earlier. However, this lack of cues is only temporary, since heterochronic transplants allowed to survive to donor stages 45-46 showed normal topography. The absence of tectal topography at a stage when retinal axons can navigate to the young tectum strongly suggests that the molecules that provide tectal topographical signals are distinct from those used for pathfinding in the diencephalon and target recognition at the tectum."	"Migration and differentiation of neurons in the retina and optic tectum of the chick. Migration and differentiation of immature neurons in the retina and optic tectum were studied using retrograde transport of DiI and immunocytochemistry. The results demonstrate that many of these cells migrate via a method of perikaryal translocation. DiI was applied to the optic nerves or tecta in fixed chick embryos (Embryonic Days 4-10); 1-2 months later the tissues were dissected and examined as whole mounts or vibratome sections using fluorescent and confocal microscopy. In both the retina and the optic tectum many labeled cells have a bipolar shape with leading and trailing processes contacting the pial and ventricular surfaces, respectively. Axons grow from the leading processes before somata reach their final locations and dendrites sometimes begin to grow prior to retraction of trailing processes. Immunocytochemical studies using a monoclonal antibody (TUJ1) specific for postmitotic neurons show a similar pattern. These results indicate that neuronal migration occurs via more than one mode. In thin tissues like the retina and newly forming optic tectum, many postmitotic neurons migrate by translocating their somata while retaining connections with the pial and/or ventricular surfaces. In thicker, more complex tissues like the maturing optic tectum, cerebral cortex, and cerebellum, most young neurons appear to detach from the surfaces and migrate along processes of radial glia or other cell types."	"Lamina-specific expression of adhesion molecules in developing chick optic tectum. The optic tectum is the major synaptic target of retinal axons in birds. In the chick, retinal ganglion cell axons enter the optic tectum through a superficial lamina (the stratum opticum), extended branches into deeper laminae, and arborize in specific &quot;retinorecipient&quot; laminae, where they form synapses. Studies using an organotypic culture system have provided evidence that the tectum bears a series of distinct, lamina-specific, cell surface-associated cues that direct these axonal behaviors (Yamagata and Sanes, 1995). Here, we have used a panel of antibodies to 30 membrane and matrix components to ask whether known adhesive molecules are distributed in lamina-specific patterns. Among many spatiotemporal pattern of expression documented, three were particularly noteworthy: (1) The cell adhesion molecules NgCAM/L1 and TAG-1/axonin-1 were concentrated in the stratum opticum. (2) SC1/JC7/DM-GRASP/BEN, N-cadherin, neuropilin, polysialylated N-CAM, and glycoconjugates recognized by the lectin VVA-B4 were concentrated in retinorecipient laminae. (3) Neurofascin, tenascin-C/cytotactin, and a matrix molecule defined by the &quot;Sigma&quot; antibody were present at highest levels in areas that border the retinorecipient laminae. Some members of each group (NgCAM/L1, TAG-1/axonin, SC1/JC7, polysialic acid, VVA-B4-receptors, and neurofascin) appeared on schedule and in lamina-restricted patterns in tecta from embryos that had been enucleated before retinal axons left the eye. Thus, molecules in these three categories could provide signals to retinal axons that promote extension through the stratum opticum, induce arborization or synaptogenesis in retinorecipient laminae, and prevent sprouting into adjoining laminae. Interestingly, N-cadherin accumulated in retinorecipient laminae only following the onset of synapse formation, and failed to accumulate in enucleated tecta. Immunoelectron microscopy of normal tecta demonstrated the presence of N-cadherin in the synaptic cleft, suggesting a role for this molecule in synaptic maintenance."	"The optic tract and tectal ablation influence the composition of neurofilaments in regenerating optic axons of Xenopus laevis. Neurofilaments have been proposed to regulate axonal stability and diameter through changes in number and subunit composition. We have found that pathway and target innervation directly influence the molecular composition of neurofilaments within regenerating optic axons of Xenopus laevis. Immunocytochemistry was used to examine neurofilaments within two abnormal visual pathways. The first was an aberrant, transient retinoretinal projection, which formed when some axons entered the contralateral optic nerve at the chiasm. The second was formed by regenerating axons deprived of their normal targets by surgical ablation of both optic tecta. Distal to an orbital nerve crush, the neurofilament proteins NF-L, NF-M, NF-H, and XNIF disappear from degenerating fibers. In normally regenerating axons, these neurofilament proteins emerge in a progression reminiscent of development. In the aberrant retinoretinal projection, levels of XNIF, NF-L, and -M remained lower than in normally regenerating axons, whereas NF-H and a phosphorylated form of NF-M were undetectable for at least 35 d after nerve crush. Normally, these two latter forms reappear between 15 and 21 d after surgery. Thus, this transient, incorrect axonal projection expressed neurofilaments in a very different pattern from correctly regenerating axons. In tecta-ablated frogs, staining of phosphorylation independent epitopes of XNIF, NF-L, and -M increased normally after axons entered the tract, but that of NF-H and phosphorylated NF-M remained low for at least 42 d after axotomy. Thus, separate parts of the visual pathway influence the complexity of neurofilaments."	"Anatomical localisation of preproatrial natriuretic peptide mRNA in the rat brain by in situ hybridisation histochemistry: novel identification in olfactory regions. Atrial natriuretic peptide (ANP) is one of three structurally homologous natriuretic peptides present in heart and brain, which is thought to be involved in the regulation of water and salt intake, blood pressure, and hormone secretion. In the present study, the distribution of preproatrial natriuretic peptide (ppANP) mRNA in the central nervous system of the rat was examined by in situ hybridisation histochemistry by using [35S]-labelled oligonucleotides. Cells expressing ppANP mRNA were apparent in several major neuronal systems, being present in hypothalamic, limbic, pontine and forebrain olfactory regions. Relatively high densities of ppANP mRNA-positive neurones were found in the anterior medial preoptic hypothalamic nucleus, medial habenular nucleus, and in Barrington's nucleus in the pons. Moderate numbers of ppANP mRNA-positive cells were present in a number of amygdaloid nuclei, including the posterolateral and anterior cortical nuclei, in the zona incerta, and the pedunculopontine tegmental nucleus. Other areas, including the ventromedial hypothalamic nucleus and the laterodorsal tegmental nucleus, displayed only low densities of ppANP mRNA-positive neurones. A number of structures in which ppANP mRNA (or ANP-like immunoreactivity) has not previously been reported were found to contain moderate to high numbers of ppANP mRNA-positive neurones including several nuclei associated with the olfactory system, such as the anterior olfactory nucleus and neurones of the tenia tecta and ventrolateral orbital cortex. Although ppANP mRNA in CA1 pyramidal cells of the hippocampus has been described, we also detected labelling in CA2 and ventral CA3 regions of the hippocampus. Conversely, nuclei such as the bed nucleus of the stria terminalis and the nucleus of the solitary tract, which are reported to possess ANP-like immunoreactivity, were found not to contain ppANP mRNA. Overall, these results demonstrate the presence of ANP gene expression in discrete neuronal populations of the rat central nervous system and provide additional evidence to support a putative role for this peptide in regulating and integrating hypothalamic, olfactory, limbic, and neuroendocrine systems."	"Developmental changes in melanin-concentrating hormone in Rana temporaria. Melanin-concentrating hormone (MCH) is a vertebrate neuropeptide produced in hypothalamic neurons. In bony fish, such as trout, MCH acts as a neurohypophysial hormone which, once released into the circulation, acts on pigmented skin cells with the result that the fish turns pale to camouflage itself against a light colored background. In other animals the role of MCH is not clearly established but it appears to be a neuromodulator/transmitter within the central nervous system rather than a hormone. The present study examines MCH function in the grass frog, Rana temporaria. Using immunocytochemistry the location and morphology of irMCH neurons were followed, from tadpole to adult frog. In adult R. temporaria a group of MCH neurons appeared to comprise small and large-celled populations located in the ventral and dorsal infundibular regions, respectively. A group of MCH neurons in the preoptic area is proposed, although the perikarya were rarely immunostainable. Immunoreactive fibers were seen in various areas of the brain, including the olfactory lobes, optic tecta, habenular nucleus, and spinal cord. Immunoreactive MCH cells were only visible in midmetamorphic climax stages, and cellular morphology suggested low secretory activity until the animal first emerged onto land at which time nuclear size and granulation increased significantly. No such increase was observed in equivalent stages of the South African clawed toad, Xenopus laevis, an animal which is fully aquatic throughout its life in contrast to R. temporaria which is terrestrial.(ABSTRACT TRUNCATED AT 250 WORDS)"	"Mating alters gonadotropin-releasing hormone cell number and content. Female musk shrews (Suncus murinus) are induced ovulators, which lack a behavioral and ovarian estrous cycle. Females mate the first time they are introduced to a male, but a second or third mating, at least 24 h later, is usually required to induce ovulation. Because GnRH-immunoreactive (GnRH-ir) cell numbers increase during and after exposure to a male, we hypothesized that mating promotes synthesis of this important peptide. To test this hypothesis, we examined changes in GnRH-ir cell number and GnRH-ir content at select time points after mating and ovulation. One hour after mating, GnRH-ir cell numbers in olfactory-related regions of the forebrain were increased. By 15 h after mating, just before ovulation, GnRH-ir cell number and content were increased. Twenty-four hours after mating, GnRH-ir cell numbers in the tenia tecta and medial septum/diagonal band were lower in females that ovulated compared with females that did not ovulate. By 40 h postmating, females that ovulated had fewer GnRH-ir neurons and lower GnRH content in the entire brain than females that did not ovulate. In addition, we found significant negative correlations between plasma estradiol concentrations and both GnRH-ir cell numbers and content in the preoptic area of animals killed around the time of ovulation. Interestingly, significantly more GnRH-ir neurons and a greater content of GnRH peptide were observed in several forebrain nuclei of females that did not ovulate 40, compared to 24, h after mating. In contrast, numbers of GnRH-ir neurons in the midbrain declined 40 h postmating in ovulated females. These results suggest that mating stimulates activity in GnRH-ir neurons, and that ovulation is correlated with a decline in GnRH-ir cell number and content. In this species, mating can be used as an external trigger to activate GnRH neurons and examine the regulation and production of GnRH in heterogenic neuronal populations."	"Brain regions and encephalization in anurans: adaptation or stability? Relative brain size and the relative size of six brain regions (main olfactory bulbs, accessory olfactory bulbs, telencephalon, optic tectum, cerebellum and brain stem) in ten species of anurans from five habitats were examined to determine whether there was any evidence of adaptation in brain structure. A previously published data set was also reanalysed. Arboreal frogs have larger body-size corrected brains than frogs from other habitats. Arboreal ranid (Platymantis vitiensis) and hylid (Hyla versicolor) possess slightly larger cerebella than the ranids and hylids from other habitats. Platymantis vitiensis lacks an accessory olfactory bulb. The fully-aquatic Xenopus laevis (Pipidae) has a smaller optic tectum and cerebellum than the non-fossorial hylids and ranids. Adaptation to life underground appears to explain the modified brains of two fossorial frogs, Hemisus guineensis (Ranidae) and Rhinophrynus dorsalis (Rhinophrynidae). Both species of fossorial frogs have reduced optic tecta, larger main olfactory and smaller accessory olfactory bulbs, and larger torus semicircularis than non-fossorial species. Our data showed a strong negative correlation between the size of the optic tectum and the size of the main olfactory bulbs. We conclude that, although anuran brains are very similar across taxa in qualitative and general structure, there are some interesting, apparent adaptations, to fossorial and arboreal life."	"Spontaneous bursting and long-lived local correlation in normal and denervated tectum of goldfish. The formation of fine retinotopic order by growing optic fibers in the goldfish is thought to be mediated by the correlated firing of optic fibers from neighboring retinal ganglion cells. Although the activity of the tectal cells must also be important for this activity-dependent refinement, few studies have analyzed the pattern and local correlation of the intrinsic activity of tectal neurons and the effect of denervation on this activity. To address this issue, spontaneous (nonoptic driven) activity was analyzed and cross-correlograms were computed between individual tectal neurons using single and double electrode extracellular recordings. Recordings were made in normally innervated tectum in which the contribution of optic activity was eliminated by short-term intraocular blockade with tetrodotoxin and in denervated tecta in which the optic nerve had been severed several weeks prior. Several observations were relevant to activity-dependent refinement: First, coupling between neighboring tectal cells is weak. Second, the time duration for local correlation is relatively long, as long as 200 ms. Third, tectal neurons exhibit spontaneous bursting. Fourth, denervation increased the level of spontaneous activity in the tectum. The increased spontaneous activity and bursting following denervation implies that tectal neurons are more excitable when optic fibers are beginning to reinnervate the tectum. This could make it possible for optic fibers to drive tectal neurons at a time when their input to individual neurons is severely weakened by a lack of spatial convergence. The weak coupling between tectal cells and the consequent long-time constant for correlated activity implies a constraint on the duration of correlated retinal activity that is used for activity-dependent refinement. Since optic fibers likely need to detect the postsynaptic activity of a local group of tectal neurons, rather than that of a single neuron, the long tectal time constant means that retinal activity need not be correlated with precision much better than 200 ms because the postsynaptic circuitry cannot generate shorter correlations."	"Expression patterns of a glutamate-binding protein in the rat central nervous system: comparison with N-methyl-D-aspartate receptor subunit 1 in rat. Using radioactive in situ hybridization histochemistry, we examined the topographical patterns of expression of the messenger RNA encoding a glutamate-binding protein (N-methyl-D-aspartate receptor glutamate-binding protein in rat; NMDARgbs) in the central nervous system of the rat. Expression patterns of N-methyl-D-aspartate receptor glutamate-binding protein were compared with those of N-methyl-D-aspartate receptor subunit 1 (NMDAR1) of the N-methyl-D-aspartate receptor on adjacent sections. N-methyl-D-aspartate receptor glutamate-binding protein is not expressed in glial cells. The expression of both N-methyl-D-aspartate receptor glutamate-binding protein and N-methyl-D-aspartate receptor subunit 1 was observed in virtually all neurons throughout the central nervous system. The mean level of N-methyl-D-aspartate receptor subunit 1 expression was higher than that of N-methyl-D-aspartate receptor glutamate-binding protein. Similar topographical patterns of expression of N-methyl-D-aspartate receptor glutamate-binding protein and N-methyl-D-aspartate receptor were observed in most regions, except in discrete thalamic, hypothalamic and brainstem nuclei. Concomitantly for N-methyl-D-aspartate receptor glutamate-binding protein and N-methyl-D-aspartate receptor subunit 1, the highest expression levels were distributed in the mitral layer of main and accessory olfactory bulbs, granule cell layer of the dentate gyrus, polymorphic and pyramidal layers of CA1-3 fields of Ammon's horn. A slightly less prominent expression was observed in the glomerular and granule cell layers of main and accessory olfactory bulbs, anterior olfactory nucleus, layer 2 of piriform cortex, olfactory tubercle and taenia tecta. In the cerebellum, the prominent level of N-methyl-D-aspartate receptor glutamate-binding protein expression was slightly higher in the Purkinje cell layer than in the granule cell layer, an opposite pattern being observed for N-methyl-D-aspartate receptor subunit 1. A moderately high expression level of both messenger RNAs was observed in the medial septal nucleus, nucleus of the diagonal band of Broca, dorsal part of the endopiriform nucleus, and in the anteroventral and anterolateral parts of the bed nucleus of the stria terminalis. In the neocortex, the mean expression level of N-methyl-D-aspartate receptor glutamate-binding protein is moderate, while the mean level of N-methyl-D-aspartate receptor subunit 1 expression is high. With both probes, layer IV is slightly less labeled than the other layers.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Competitive and non-competitive NMDA antagonists induce similar limbic degeneration. Neural degeneration was observed in a similar set of limbic structures following the continuous administration of several NMDA antagonists (phencyclidine, dizocilpine, and LY235959). The earliest signs involved terminals and processes, followed by cell bodies. In retrosplenial cortex the predominant staining showed a distribution very similar to that observed for cholinergic innervations. Considerable degeneration was also observed in entorhinal cortex and its principal output, dentate gyrus of hippocampus, and in olfactory regions such as olfactory tubercle and tenia tecta, and in piriform cortex. These results, when considered together with those from studies of glucose metabolism following NMDA antagonists, suggest that a hypermetabolic circuit was involved, and indicate that both competitive and non-competitive NMDA antagonists can induce these effects."	"Site of auditory plasticity in the brain stem (VLVp) of the owl revealed by early monaural occlusion. 1. The optic tectum of the barn owl contains a physiological map of interaural level difference (ILD) that underlies, in part, its map of auditory space. Monaural occlusion shifts the range of ILDs experienced by an animal and alters the correspondence of ILDs with source locations. Chronic monaural occlusion during development induces an adaptive shift in the tectal ILD map that compensates for the effects of the earplug. The data presented in this study indicate that one site of plasticity underlying this adaptive adjustment is in the posterior division of the ventral nucleus of the lateral lemniscus (VLVp), the first site of ILD comparison in the auditory pathway. 2. Single and multiple unit sites were recorded in the optic tecta and VLVps of ketamine-anesthetized owls. The owls were raised from 4 wk of age with one ear occluded with an earplug. Auditory testing, using digitally synthesized dichotic stimuli, was carried out 8-16 wk later with the earplug removed. The adaptive adjustment in ILD coding in each bird was quantified as the shift from normal ILD tuning measured in the optic tectum. Evidence of adaptive adjustment in the VLVp was based on statistical differences between the VLVp's ipsilateral and contralateral to the occluded ear in the sensitivity of units to excitatory-ear and inhibitory-ear stimulation. 3. The balance of excitatory to inhibitory influences on VLVp units was shifted in the adaptive direction in six out of eight owls. In three of these owls, adaptive differences in inhibition, but not in excitation, were found. For this group of owls, the patterns of response properties across the two VLVps can only be accounted for by plasticity in the VLVp. For the other three owls, the possibility that the difference between the two VLVps resulted from damage to one of the VLVps could not be eliminated, and for one of these, plasticity at a more peripheral site (in the cochlea or cochlear nucleus) could also explain the data. In the remaining two owls, there was no evidence of adaptive adjustment in the VLVp despite large adaptive adjustments in the optic tectum. 4. The adjustment of ILD coding in the VLVp was always substantially smaller than expected based on the adjustment of ILD tuning in the optic tectum measured in the same animals. This indicates the involvement of at least one additional site of adaptive plasticity in the auditory pathway above the level of the VLVp.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Dynamics of retinotectal synaptogenesis in normal and 3-eyed frogs: evidence for the postsynaptic regulation of synapse number. Quantitative stereological methods were used to determine if the number, density, and types of synaptic connections formed during development are regulated by presynaptic input or by postsynaptic target cells in the optic tectum of normal and 3-eyed Rana pipiens tadpoles and frogs. Our analysis indicates that the number and size of synapses is approximately the same in both tecta of 3-eyed tadpoles and frogs, even though one tectal lobe is receiving input from twice the normal complement of retinal ganglion cells. Moreover, the number and size of synapses in the tectal lobes of 3-eyed animals did not differ significantly from values determined for normal tadpoles and frogs of the same developmental stage. These data suggest strongly that developing tectal cells regulate the number of synaptic contacts they will form. Differences in several morphological features between singly and doubly innervated tecta, however, including synapse density, distribution and complexity, amount of extracellular space, and number of myelin figures, suggest that the presence of supernumerary input retards tectal maturation. We propose that the noncorrelated activity of retinal ganglion cell terminals in the doubly innervated tectum results in fewer stabilized synapses per unit volume of neuropil and in the delayed maturation of the tectal neuropil. Taken together, our data suggest a complex dynamic interaction between retina and tectum during development."	"Development of microglia in the quail optic tectum. The development of microglia in the quail optic tectum from embryonic day 6 to adulthood was studied by using the QH1 monoclonal antibody. In youngest tecta, microglial cells were scarcely present, but their number rose in subsequent stages. A clear pattern of microglial cell distribution was observable in embryos of 9-16 days. (1) Round cells appeared close to the ventricular layer. (2) Large numbers of ameboid and round labeled cells were seen in the stratum album centrale during development. A gradient of cell density was observable in this layer, as fewer labeled cells appeared in medial regions of the tectum than in lateral regions. (3) Maturing ramified cells were found in layers external to the stratum album centrale, where they increased in number and in branching complexity during development. In adult tecta, almost all microglial cells were of the mature ramified type and were distributed homogeneously in the different tectal layers, although in some layers they had particular morphological features. The distribution of microglia in the developing tectum and in adjacent regions provided insight into the routes of microglial cell invasion of the tectum during development. Apparently, a proportion of microglial cells reached the tectal parenchyma from the meninges and from the ventricular lumen, but the majority of them migrated along nerve fiber tracts from their entry point at the pial surface of the ventromedial caudal tectum. After they reached the stratum album centrale, microglial cells continued their migration toward more external layers, where they differentiated into ramified microglia."	"Central olfactory connections in the macaque monkey. The connections between the olfactory bulb, primary olfactory cortex, and olfactory related areas of the orbital cortex were defined in macaque monkeys with a combination of anterograde and retrograde axonal tracers and electrophysiological recording. Anterograde tracers placed into the olfactory bulb labeled axons in eight primary olfactory cortical areas: the anterior olfactory nucleus, piriform cortex, ventral tenia tecta, olfactory tubercle, anterior cortical nucleus of the amygdala, periamygdaloid cortex, and olfactory division of the entorhinal cortex. The bulbar axons terminate in the outer part of layer I throughout these areas and are most dense in areas that are close to the lateral olfactory tract. Labeled axons also were found in the superficial part of nucleus of the horizontal diagonal band. Retrograde tracers injected into the olfactory bulb labeled cells in the nucleus of the diagonal band and in all of the primary olfactory cortical areas except the olfactory tubercle. Electrical stimulation of the olfactory bulb evoked short-latency unit responses and a characteristic field wave in the primary olfactory cortex. Multiunit activity in layer II tended to be of shorter latency than that in layer III and the endopiriform nucleus. Associational connections within the primary olfactory cortex were demonstrated with anterograde tracer injections into the piriform cortex and the entorhinal cortex. Injections into the piriform cortex near the lateral olfactory tract labeled axons in the deep part of layer I of many primary olfactory areas, but especially in areas near the tract. An injection into the rostral entorhinal cortex, distant to the lateral olfactory tract, labeled a complementary distribution of axons in deep layer I of olfactory areas medial and caudoventral to the tract. This organization resembles that reported in the primary olfactory cortex of the rat [Luskin and Price (1983) J. Comp. Neurol. 216:264-291]. The anterograde tracer injections into the piriform cortex and retrograde tracer injections into the orbital and medial prefrontal cortex and rostral insula label connections from the primary olfactory cortex to nine areas in the caudal orbital cortex, including the agranular insula areas Iam, Iai, Ial, Iapm, and Iapl and areas 14c, 25, 13a, and 13m. The piriform cortex projects most heavily to layer I of these areas. Only Iam, Iapm, and 13a receive a substantial projection to the deeper layers. Areas Iam, Iapm, and 13a were also the only areas that responded with multiunit action potentials to olfactory bulb stimulation in anesthetized animals.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Localization and age-dependent expression of hexokinase mRNA in the rat brain. Localization of mRNA encoding for the enzyme hexokinase and its regulation in aged animals was carried out in rat brain using the in situ hybridization technique. The highest levels of the hybridization signal were observed in the olfactory bulb, piriform cortex, tenia tecta, hippocampus and granular cells of the cerebellum. Other brain areas and nuclei including cerebral cortex, thalamus, hypothalamus, substantia nigra, subiculum, choroid plexus and superior colliculus displayed moderate to low density of transcripts. Correlation between relative hexokinase content and levels of its mRNA was found only for some brain regions such as caudate-putamen, geniculate nucleus, ventral and lateral thalamic nuclei, superior colliculus and granular cells of the cerebellum. In the cerebral cortex and hippocampus of old animals the expression of hexokinase was significantly increased at 18 and 24 months of age. From the present data we conclude that although hexokinase is an ubiquitous enzyme, sites of synthesis display a discrete and uneven localization in rat CNS and expression, in the aging brain, might be regulated to compensate for reduced oxidative phosphorylation in the brain tissue."	"Localization of nitric oxide synthase in the adult rat brain. The distribution of the immunoreactivity to nitric oxide synthase has been examined from rostral to caudal areas of the rat central nervous system using light microscopy. Endogenous nitric oxide synthase was located using a specific polyclonal antiserum, produced against affinity purified nitric oxide synthase from whole rat brain, following the avidin-biotin peroxidase procedure. Immunoreactive cell bodies and processes showed a widespread distribution in the brain. In the telencephalon, immunoreactive structures were distributed in all areas of the cerebral cortex, the ventral endopiriform nucleus and claustrum, the main and accessory olfactory bulb, the anterior and posterior olfactory nuclei, the precommisural hippocampus, the taenia tecta, the nucleus accumbens, the stria terminalis, the caudate putamen, the olfactory tubercle and islands of Calleja, septum, globus pallidus and substantia innominata, hippocampus and amygdala. In the diencephalon, the immunoreactivity was largely found in both the hypothalamus and thalamus. In the hypothalamus, immunoreactive cell bodies were characteristically located in the perivascular-neurosecretory systems and mamillary bodies. In addition, immunoreactive nerve fibres were detected in the median eminence of the infundibular stem. The mesencephalon showed nitric oxide synthase immunoreactivity in the ventral tegmental area, the interpeduncular nucleus, the rostral linear nucleus of the raphe and the dorsal raphe nucleus. Immunoreactive structures were also found in the nuclei of the central grey, the peripeduncular nucleus and substantia nigra pars lateralis, the geniculate nucleus and in the superior and inferior colliculi. The pons displayed immunoreactive structures principally in the pedunculopontine and laterodorsal tegmental nuclei, the ventral tegmental nucleus, the reticulotegmental pontine nucleus, the parabrachial nucleus and locus coeruleus. In the medulla oblongata, immunoreactive neurons and processes were detected in the principal sensory trigeminal nucleus, the trapezoid body, the raphe magnus, the pontine reticular nuclei, the supragenual nucleus, the prepositus hypoglossal nucleus, the medial and spinal vestibular nuclei, the dorsal cochlear nucleus, the medullary reticular field, the nucleus of the solitary tract, the gracile and cuneate nuclei, the dorsal nucleus of the vagus nerve and the oral, interpolar and caudal parts of the spinal trigeminal nucleus. In the cerebellum, the stellate and basket cells showed immunoreactivity, which was also seen in the basket terminal fibres of the Purkinje cell layer. Isolated immunoreactive Purkinje cells were found in the vermis and parafloccular regions of the cerebellum. In the granular layer of the cerebellum, the granular cells and glomeruli were also immunoreactive. Numerous positive varicose nerve fibres and occasional neurons were also found in the lateral and interposed cerebellar nuclei.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Autoradiographic comparison of [125I]LSD-labeled 5-HT2A receptor distribution in rat and guinea pig brain. Although the density and distribution of 5-HT2A (5-hydroxytryptamine-2A) receptors is well established for rat brain, the 5-HT2A receptor distribution and density in guinea pig brain has not been extensively studied. In the present in vitro study, we have utilized 125I-lysergic acid diethylamide ([125I]LSD) to quantify and compare 5-HT2A receptor density in coronal sections of rat and guinea pig brain. Spiperone (1 microM) and sulpiride (1 microM) were used to displace [125I]LSD binding from 5-HT2A and D2 binding sites, respectively. Ligand binding was quantified by computer-aided image analysis densitometry (MCID). Similar to the rat, areas of highest specific 5-HT2A receptor binding (fmol/mg protein) in guinea pig brain included the claustrum and Layer 4 of the cerebral cortex. Significant binding was also found in remaining neocortical layers, islands of Calleja, caudate putamen, olfactory bulb, nucleus accumbens, and choroid plexus. While the rat brain exhibited a high level of specific binding in the tenia tecta and mammillary nuclei, little binding was observed in these regions in the guinea pig. In both rat and guinea pig, low specific binding was found in amygdaloid, thalamic, or cerebellar areas. These studies indicate a general similarity between 5-HT2A binding site distribution and relative density in guinea pig and rat brain but point to a few brain regions where significant differences exist."	"Rostrocaudal polarity formation of chick optic tectum. The optic tectum receives retinal fibers in a topographically ordered manner. For the formation of the precise connections, the tectum is believed to be positionally specified by gradients of molecules along axes. Rostrocaudal polarity of the tectum is first detectable at embryonic day 2 (E2) in the chick, by the caudorostral gradient of en expression, then by the rostrocaudal gradient of cytoarchitectonic development. Tectum rotation experiments showed that tectum rostrocaudal polarity is not determined at around 10-somite stage, but is fixed on E3. Ectopic tectum was produced in the diencephalon by transplanting the mesencephalic alar plate heterotopically. In the ectopic tectum, en expression was weakest at the caudal (nearest to the host diencephalo-mesencephalon junction) and strongest at the rostral end. Consequently, the pattern of en expression in the host and ectopic tecta was nearly a mirror image. Retinal fibers projected to the ectopic tectum in a topographic order in accordance with the inverted gradient of the en expression pattern. Ectopic tecta was also produced by heterochronal transplantations between E3 host and E2 donor, where the en pattern was preserved. Retinotectal projection pattern was also preserved, suggesting that en expression patterns are followed by retinotopic order with regard to rostrocaudal polarity."	"Cell size predicts morphological complexity in the brains of frogs and salamanders. The morphological organization of the brain of frogs and salamanders varies greatly in the degree to which it is subdivided and differentiated. Members of these taxa are visually oriented predators, but the morphological complexity of the visual centers in the brain varies interspecifically. We give evidence that the morphological complexity of the amphibian tectum mesencephali, the main visual center, can be predicted from knowledge of cell size, which varies greatly among these taxa. Further, cell size is highly correlated with genome size. Frogs with small cells have more complex morphologies of the tectum than do those with large cells independent of body and brain size. In contrast, in salamanders brain-body size relationships also are correlated with morphological complexity of the brain. Small salamanders with large cells have the simplest tecta, whereas large salamanders with small cells exhibit the most complex tectal morphologies. Increases in genome, and consequently cell size, are associated with a decrease in the differentiation rate of nervous tissue, which leads to the observed differences in brain morphology. On the basis of these findings we hypothesize that important features of the structure of the brain can arise independently of functional demands, from changes at a lower level of organismal organization--in this case increase in genome size, which induces simplification of brain morphology."	"Rapid remodeling of retinal arbors in the tectum with and without blockade of synaptic transmission. Dynamic rearrangements of axon terminal arbors may be critical for establishing appropriate connections in the developing nervous system. Here, the changes in complex retinal axon arbors in the tecta of live Xenopus larvae were followed during the formation of the topographic retinotectal projection. Three-dimensional reconstructions of terminal arbors made with a confocal microscope at hourly intervals revealed rapid remodeling of arbor extensions. Shorter branches were extended and retracted very rapidly, suggesting that they probe the environment for the optimal sites to form stable branches. About 27% of longer branches were present throughout the entire observation period and may be sites of stabilized synaptic contacts. Treatment of the animals to block postsynaptic activity resulted in increased rates of arbor rearrangements, which may coincide with decreased synapse stability. These studies reveal the dynamic behavior of nerve arbors and provide estimates for the lifetimes of retinotectal branches."	"Distribution of the serotonin 5-HT2 receptor family mRNAs: comparison between 5-HT2A and 5-HT2C receptors. Because of their similarities, serotonin 5-HT2, 5-HT1C, and the recently described 5-HT2F receptors have been classified as members of the 5-HT2 receptor family, and they have been renamed 5-HT2A, 5-HT2C and 5-HT2B, respectively. The regional distribution and cellular localization of mRNA coding for the members of 5-HT2 receptor family were investigated in consecutive tissue sections from the rat brain by in situ hybridization histochemistry. No evidence for the expression of 5-HT2B receptor was found. High levels of 5-HT2A (formerly 5-HT2) receptor mRNA were observed only in few areas, as the frontal cortex, piriform cortex, ventro-caudal part of CA3, medial mammillary nucleus, the pontine nuclei and the motor cranial nerve nuclei in the brainstem, and the ventral horn of the spinal cord. The distribution of 5-HT2A receptor mRNA is generally in good agreement with that of the corresponding binding sites, although discrepancies were sometimes observed. 5-HT2C (formerly 5-HT1C) mRNA was present at very high levels in the choroid plexuses. However, very high levels were also seen in many other brain regions, as the retrosplenial, piriform and entorhinal cortex, anterior olfactory nucleus, lateral septal nucleus, subthalamic nucleus, amygdala, subiculum and ventral part of CA3, lateral habenula, substantia nigra pars compacta, several brainstem nuclei and the whole grey matter of the spinal cord. These results confirm and extend previous observations that 5-HT2C receptor mRNA is present in many brain areas in addition to those autoradiographically shown to have the corresponding binding sites and that 5-HT2C receptor subtype is a principal 5-HT receptor in the brain. From the comparison between their distributions, 5-HT2A and 5-HT2C receptor mRNAs appeared to be expressed in distinct but overlapping sets of brain regions. Both mRNAs coexisted at high levels in the anterior olfactory nucleus, piriform cortex, endopiriform nucleus, claustrum, pyramidal cell layer of the ventral part of CA3, taenia tecta, substantia nigra pars compacta, and several brainstem nuclei. In other regions both mRNAs were present but with different distributions, as the caudate-putamen. These results are also discussed in relation to the physiological meaning of the existence of two so similar receptor subtypes in the brain."	"Hybridization histochemical localization of activin receptor subtypes in rat brain, pituitary, ovary, and testis. We have studied the distribution of activin receptor gene expression in the brain, pituitary, ovary, and testis of the adult rat by in situ hybridization, using probes complementary to the mRNAs encoding the mouse activin receptor subtypes II and IIB (ActRII and ActRIIB). Throughout the brain, ActRII mRNA expression was stronger than that of ActRIIB, and the patterns of expression were similar, although not identical. The most intense sites of activin receptor gene expression were the hippocampal formation, especially the dentate gyrus (ActRII), taenia tecta, and induseum griseum; the amygdala, particularly the amygdaloid-hippocampal transition zone; and throughout the cortical mantle, including the primary olfactory cortex (piriform cortex and olfactory tubercle); other regions of the cortex showing lesser degrees of hybridization included the cingulate cortex, claustrum, entorhinal cortex, and subiculum. In addition, moderate levels of expression were observed in several hypothalamic areas involved in neuroendocrine regulation, such as the suprachiasmatic, supraoptic, paraventricular, and arcuate nuclei. Moreover, activin receptors were also expressed in regions with inputs to the hypothalamus, both in the forebrain (bed nucleus of the stria terminalis and medial preoptic area) and within the brainstem (nucleus of the solitary tract, dorsal motor nucleus of the vagus, locus coeruleus, and mesencephalic raphé system). ActRII mRNA was observed in the intermediate lobe of the pituitary and, less prominently, in the anterior lobe, whereas ActRIIB appeared to be weakly expressed throughout all three pituitary divisions. In both male and female gonads, activin receptor message was clearly present in germ cells, and ActRII was the predominant form. In the ovary, in addition to an intense signal in the oocyte, activin receptor was expressed in corpus luteum and granulosa cells during diestrous day 1. In the testis, there was a strong ActRII signal in rounded spermatids, and a moderate signal in pachytene spermatocytes. In contrast, ActRIIB was absent within tubules, but weakly expressed in interstitial and Leydig cells. This is the first report of the distribution of activin receptor message in adult mammalian tissues. Although consistent with some previously suggested functional associations of activin-containing pathways in the brain, this pattern of expression suggests a greater role for activin than was previously appreciated in cortical, limbic, and somatosensory pathways and in the maturation of germ cells in the gonads of both male and female rats."	"Localization of somatostatin (SRIF) SSTR-1, SSTR-2 and SSTR-3 receptor mRNA in rat brain by in situ hybridization. In situ hybridization histochemistry was performed to analyse the distribution of the messenger RNA (mRNA) of three putative somatostatin (SRIF) receptors in rat brain, using oligonucleotide probes derived from the cDNA coding for SSTR-1, SSTR-2, and SSTR-3 receptors. SSTR-1 signals were found in layers V-VI of the cerebral cortex, in primary olfactory cortex, taenia tecta, subiculum, entorhinal cortex, granular layer of the dentate gyrus, amygdala and cerebellar nuclei. Signals for SSTR-2 were found in the frontal cerebral cortex (layers IV, V and VI), taenia tecta, claustrum, endopiriform nucleus, locus coeruleus, medial habenula, subiculum, granular cell layer of the dentate gyrus and amygdala. High levels of SSTR-3 hybridization were found in the olfactory bulb, primary olfactory cortex, islands of Calleja, medial habenula, amygdala, granular layer of the dentate gyrus, various thalamic and pontine nuclei and in the granular and Purkinje cell layers of the cerebellum. The distribution of the hybridization signals of the oligoprobes is consistent with the labelling of specific SRIF binding sites in rat brain. Especially, SSTR-2 and SSTR-1 oligos seem to label regions in which SS-1 and SS-2 receptors, respectively, have been previously characterized in autoradiographical studies. The situation is less clear with SSTR-3 mRNA, since SRIF binding in adult rats is usually low or absent in cerebellum, although some cerebellar nuclei appear to be labelled in the adult. The localization of SSTR-1, SSTR-2 and SSTR-3 mRNAs suggests that SRIF receptor subtypes in rat brain show profound differences in their distribution and are involved in a variety of central, in addition to neuroendocrine, functions."	"Seizures increase basic fibroblast growth factor mRNA in adult rat forebrain neurons and glia. The distribution of basic fibroblast growth factor (bFGF) mRNA in normal rat forebrain, and the influence of recurrent seizure activity on the expression of this mRNA, was evaluated using in situ hybridization and S1 nuclease protection techniques. In the untreated adult rat, hybridization of 35S-labeled bFGF cRNA densely labeled neurons in a few discrete areas including the tenia tecta, indusium gresium, and hippocampal stratum pyramidale of regions CA2 and rostromedial CA1. Neurons in the prosubiculum and rostromedial dentate gyrus stratum granulosum were lightly labeled. In addition, a diffuse distribution of autoradiographic labeling in areas such as the hippocampal molecular layers, olfactory cortical layer I, and the olfactory nerve layer was suggestive of localization in glial cells. Platinum wire hilar lesions, which did not induce seizures, increased cRNA hybridization in glial cells in primary and secondary areas of degeneration in the ipsilateral hemisphere only; hybridization was not noticeably increased in neurons in these lesion-control rats. Focal stainless-steel wire hilar lesions, which caused recurrent seizures 2-10 h postlesion, induced bilaterally distributed increases in cRNA hybridization in hippocampus, neocortex, olfactory cortex, amygdala, and septum. These seizure-dependent increases in hybridization were evident 6 h postlesion, were maximal from 12 to 24 h postlesion, and declined to near control levels by 4 days. In most regions the elevated hybridization appeared to be associated primarily with astroglia but in experimental seizure rats sacrificed 12 and 24 h postlesion hybridization was also markedly increased in the dentate gyrus granule cells and olfactory cortical neurons. These results demonstrate that recurrent seizures increase bFGF mRNA expression by both forebrain neurons and glia and implicate bFGF in the coordination of other changes in the biosynthetic activities of forebrain neurons that occur after seizures."	"Seizure-induced increases in NGF mRNA exhibit different time courses across forebrain regions and are biphasic in hippocampus. In the present study, in situ hybridization and S1 nuclease protection analyses were used to evaluate the temporal and spatial parameters of changes in nerve growth factor (NGF) mRNA expression in rat forebrain following hilus lesion-induced recurrent limbic seizures. Seizure-induced increases in NGF mRNA levels were widespread with differences in the temporal parameters of change between brain areas. There were two distinct increases in NGF cRNA hybridization in dentate gyrus stratum granulosum. Hybridization was increased several-fold by 6 h after a seizure-producing hilus lesion (HL), declined to below control values by 12 h post-HL, and then increased again by 24 h post-HL, or 12 h after the termination of seizures. This biphasic increase was corroborated by S1 nuclease protection analysis. In entorhinal cortex, cingulate cortex and neocortex NGF cRNA hybridization was markedly increased first in layers II/III by 6-12 h post-HL and progressed to layers V/VI by 24 h post-HL. Striking increases in NGF mRNA were detected in the majority of amygdaloid nuclei beginning with the cortical nuclei by 12 h postlesion and extending into the more deeply placed nuclei by 24 h postlesion. Labeling was increased in sparsely distributed neurons in the caudate putamen, ventral pallidum, and tenia tecta at 24 h post-HL. In all areas, hybridization declined to control values by 48-96 h post-HL. NGF expression was not changed in some forebrain regions which normally contain NGF mRNA including the diagonal bands of Broca and select thalamic nuclei. These data demonstrate that seizures stimulate NGF expression in many different types of neurons. Moreover, regional differences in the time courses of induction suggest that distinct regulatory mechanisms subserve activity-dependent changes in NGF mRNA expression in different neuronal populations."	"Orthogonal arrays of particles (OAPs) in perivascular astrocytes and tight junctions in endothelial cells. A comparative study in developing and adult brain microvessels. The plasmamembranes of the astrocyte processes, which envelop the capillaries of the adult brain, contributing to the blood-brain barrier constitution, are characterized by peculiar aggregates of intramembrane particles (IMPs) packed in orthogonal arrays (orthogonal arrays of particles, OAPs). With the aim of investigating the maturation sequence of the cerebral microvasculature, the IMPs distribution has been analysed in the plasmamembranes of both perivascular astrocytes and endothelial cells of fractured microvessels, in 16-, 20-, 21-day chick embryo and 10-day chicken optic tecta. The IMPs distribution undergoes remarkable changes from late embryonic to early postnatal life in the astrocytes and endothelial cells as well. In the astrocyte plasmamembranes, short chains of individual particles and linear units of packed ones precede the appearance of complete OAPs; in the endothelium junctional plasmamembranes, fibrils of fused particles precede the formation of fibrillary networks which express the tight junction setting up. The parallel formation of the astrocytic OAPs and the endothelial tight junctions further supports the suggestion that mutual relationships establish between perivascular glia and endothelium in the cerebral microvasculature differentiation during the blood-brain barrier development."	"Isolation and characterization of Bsk, a growth factor receptor-like tyrosine kinase associated with the limbic system. Neuronal degeneration has been shown to be involved in various neurological disorders. Growth/trophic factors and their receptors are known to be important for the regeneration and survival of neurons. We report here the molecular cloning of a receptor-like protein tyrosine kinase, bsk, (for brain specific kinase). Bsk is highly related to the eph/elk receptor-like kinase family members. Northern blot analysis shows that it is expressed specifically in the brain, with no expression detected in adult heart, spleen, lung, liver, skeletal muscle, and kidney. In situ hybridization analysis of adult mouse brain sections indicates that bsk is expressed at high levels in the hippocampus, tenia tecta, indusium griseum, and the piriform cortex, major components of the limbic system that are important for learning and memory. In addition, elevated levels of expression are found in other areas of the limbic system such as the amygdala, medial septum, and nucleus of the diagonal band, and in the olfactory bulb, which has close connections to the limbic system. The highest level of expression is found in the CA3 region of the hippocampus and the pyramidal cell layer of the piriform cortex. In 16.5 day mouse embryos, bsk is expressed predominantly in the primordial cortex of the telencephalon. An antibody against a C-terminal peptide of bsk recognized a 105 kD protein in the 16.5 day embryonic head extract. Our analysis shows that bsk is a growth factor receptor-like protein tyrosine kinase and that its greatest expression in the adult brain is associated with components of the limbic system."	"Fine-structural alterations and clustering of developing synapses after chronic treatments with low levels of NMDA. In the visual pathway of frogs it is possible to apply low levels of NMDA chronically to the optic tectum and study the mechanisms underlying the stabilization of synapses developing within the CNS. Earlier studies (Cline and Constantine-Paton, 1990) found that chronic NMDA treatment of tecta innervated by two retinas results in a reduction of branching within the terminal arbors of retinal ganglion cells (RGCs). We now report that this same chronic NMDA treatment produces fine-structural changes in synaptic morphology as well as local synaptic rearrangements within the retinotectal neuropil. Chronic NMDA treatment of doubly innervated tecta was associated with a thickening or darkening of both pre- and postsynaptic densities. These changes in synapse morphology were restricted to the superficial neuropil of tecta in regions where reductions in branches of RGC axonal arbors were observed at the light microscopic level. The fine-structural effects were absent from similarly treated tecta innervated by only one eye, where RGC axonal arbor pruning was not observed. Stereological analyses indicated that the incidence of two or more presynaptic profiles converging on the same postsynaptic process was significantly increased in the NMDA-treated, doubly innervated tecta. This observed increase in synaptic clustering was not associated with a larger synaptic active zone, or with an increase in the number of synapses per unit volume. These data are discussed in the context of the hypothesis that chronic NMDA treatment raises the threshold for synapse stabilization in tectal neurons, causing the selective loss of poorly correlated synapses of both retinal and non-retinal origin from tectal neuropil that is innervated by two retinas: increased pre- and postsynaptic thickening could reflect greater efficiency in the remaining synaptic contacts and their closer spatial proximity on the same postsynaptic process is consistent with greater cooperativity and less competition."	"An iodinated vasopressin (V1) antagonist blocks flank marking and selectively labels neural binding sites in golden hamsters. An arginine-vasopressin (AVP) derivative, [d(CH2)5,Sar7]AVP (SAVP), has been characterized as an antagonist to vasopressin V1 receptors. Using AVP-dependent flank-marking behavior as a bioassay, it was possible to verify that iodinated SAVP (I-SAVP) retains biological activity within the central nervous system, as the antagonist blocked the behavior. Furthermore, 125I-SAVP was used to localize specific V1 binding sites in the brain. The resulting binding was localized to discrete anatomical sites, and highly specific to V1-like receptors. While we confirmed previous findings using 3H-AVP in golden hamsters, we also identified binding in many areas previously unreported (e.g., arcuate and paraventricular nuclei of the hypothalamus, tenia tecta, posteromedial cortical nucleus of the amygdala, and zona incerta), suggesting that 125I-SAVP provides a greater level of resolution. In addition, specific binding was observed in the lateral septum, anterior hypothalamus, and midbrain central gray, areas that have previously been shown to trigger flank marking in response to AVP microinjection. The presence of AVP binding sites in limbic and mesencephalic areas involved in the regulation of flank marking suggests that this neuropeptide may play an important role as a neurotransmitter at multiple levels in the neural circuits controlling this behavior."	"Phototaxic behavior and the retinotectal transport of horseradish peroxidase (HRP) in surgically created cyclopean salamander larvae (Ambystoma). Negative phototaxis (NP) was used to evaluate the recovery of vision in albino axolotl larvae with one eye discarded and the other transplanted either to the orbit (orthoclops) or to the top of the head (cyclops). NP was assessed at approximately 1, 2 and 3 months postoperatively, using an automated, infrared monitor. Some 88% of the orthoclopes and 64% of the cyclopes recovered NP. However, among the cyclopes that did recover, the quantitative aspects of NP were virtually the same as those of the orthoclopes. That the cyclopean eye can regenerate retinotectal pathways was established by anterograde tracing of horseradish peroxidase (HRP). But where previously uninjured animals transported HRP to the contralateral tectum, both the cyclopes and the orthoclopes distributed the enzyme to the left and right tectal halves. Heavy deposits of HRP were found in the tecta of some animals that lacked NP. To find out if an optic tectum is actually required for NP, a series of ablation experiments were performed, using Ambystoma punctatum larvae. Tectectomy had the same effect on NP as bilaterally extirpating the eyes or intracranially severing both optic nerves, i.e. removing the tectum abolished NP. (1) confirm the efficacy of the ectopic eye in the cyclops preparation; (2) show that the ectopic eye can regenerate retinotectal pathways; (3) indicate that retinotectal contact is a necessary but insufficient condition for NP."	"Molecular cloning, characterization, and localization of a high-affinity serotonin receptor (5-HT7) activating cAMP formation. By using a strategy based on nucleotide sequence homology, we have cloned a cDNA encoding a functional serotonin (5-HT) receptor. The deduced amino acid sequence of the 5-HT7 receptor displays limited homology with that of other 5-HT receptors. In addition to the seven stretches of hydrophobic amino acids that characterize the superfamily of receptors interacting with guanine nucleotide-binding proteins, the 448-aa sequence of the 5-HT7 receptor contains a hydrophobic domain located at its N-terminal end. Genomic analysis indicated the presence of introns interrupting the coding sequence. The 5-HT7 receptor, stably expressed in transfected CHO cells, bound [3H]5-HT with high affinity (Kd = 1 nM), like receptors of the 5-HT1 subfamily from which, however, it was clearly distinguished by its pharmacology. 5-HT in nanomolar concentrations stimulated cAMP accumulation in these CHO cells by approximately 10-fold, whereas lysergic acid diethylamide displayed low intrinsic agonist activity. These various properties differentiate the 5-HT7 receptor from the four other subfamilies of mammalian 5-HT receptors (i.e., the 5-HT1-, 5-HT2-, 5-HT3-, and 5-HT4-like subfamilies) and, therefore, appear to define another receptor subfamily. Northern blot and in situ hybridization analyses showed the 5-HT7 transcripts to be expressed in discrete areas of the limbic brain (e.g., pyramidal hippocampus cells, tenia tecta, amygdaloid, or mammillary nuclei), suggesting that the receptor mediates serotoninergic controls in functions like mood, learning, or neuroendocrine and vegetative behaviors."	"Localization of oxytocin receptor messenger ribonucleic acid in the rat brain. The expression of oxytocin receptor (OT-R) mRNA in the rat central nervous system was examined by in situ hybridization histochemistry using cRNA probe. Wide distribution of cells expressing OT-R mRNA was observed not only in the hypothalamus, but also in other regions. There were high levels of OT-R mRNA in the anterior olfactory nuclei, tenia tecta, olfactory tubercle, rostral most region of the frontal cortex, piriform cortex, layers 2 and 3 of the neocortex, bed nucleus of the stria terminalis, anterior medial preoptic nucleus (AV3V region), magnocellular preoptic nucleus, supraoptic nucleus, paraventricular hypothalamic nucleus, retrochiasmatic nucleus, ventromedial hypothalamic nucleus, paraventricular thalamic nucleus, central amygdaloid nucleus, medial amygdaloid nucleus, posterior cortical amygdaloid nucleus, amygdalohippocampal area, subiculum, prepositus hypoglossal nucleus, and dorsal motor nucleus of vagus. In most regions of the brain, our findings concurred with those obtained by receptor binding autoradiography using a ligand specific to OT. However, in the inferior olive nucleus, OT-R mRNA was not detected despite an abundance of binding sites showed by receptor binding autography. Despite this discrepancy OT appears to have central nervous system functions in addition to its hormonal functions."	"Developmentally regulated and spatially restricted antigens of radial glial cells. Radial glial cells, present in many parts of the embryonic vertebrate central nervous system (CNS), have been implicated in the guidance of neuroblasts from the ventricular zone to their laminar destinations. Moreover, radial glial cells may be progenitors of some CNS neurons and glia. To gain new insight into the structure and development of these cells, we have generated and characterized a panel of monoclonal antibodies that recognize radial glial cells of the chick optic tectum. Mice were immunized with homogenates of embryonic day (E) 10 tectum, and antibodies were analyzed by immunofluorescence and immunoblotting. We describe here three pairs of antibodies. 1) H5 and a previously generated antibody, R5 (Dräger et al., J. Neurosci. 4:2025, 1984), stain the whole extent of the radial glial cell from E7 to E20. In cultures prepared from E10 tecta, both stain a filamentous meshwork in glial cells but not in neurons. On immunoblots, both recognize a protein of approximately 52 kD that is closely related (or identical) to vimentin. 2) H28 and H29 stain radial glia between E7 and E14, but not later. Moreover, H28 and H29 staining is markedly more intense in the ventricular and intermediate zones than in the laminae of the tectal plate. Both of these antibodies recognize an intracellular epitope in cultured glial cells and a protein of approximately 35 kD on immunoblots. 3) H2 and H27 recognize antigens concentrated in the most superficial processes and endfeet of radial glia in late (E16-E20) embryos. They stain distinct structures in cultured glia, suggesting that they recognize distinct antigens. H27 recognizes a protein of approximately 29 kD on immunoblots. Thus antibodies H5 and R5 are good markers of radial glial cells at all stages, whereas the others define antigens that are developmentally regulated and localized to discrete domains. Together, these antibodies can be used to study temporal and spatial specializations of radial glia."	"Expression of relaxin mRNA and relaxin receptors in postnatal and adult rat brains and hearts. Localization and developmental patterns. Relaxin is a polypeptide hormone best known for its role in parturition. However, high affinity relaxin receptors have been localized in the rat brain and heart in addition to the uterus. Several lines of evidence also suggest that relaxin may be involved in the regulation of blood pressure, heart rate, and the release of oxytocin and vasopressin. We now show by Northern analysis that a 1-kilobase relaxin transcript is detected in the rat brain as well as the ovary of pregnant rats. Using in situ hybridization, relaxin mRNA is localized in discrete regions of the male and female brains, including the anterior olfactory nucleus, tenia tecta, pyriform cortex, neocortex, and hippocampus. Developmental studies show that relaxin mRNA is present in the 1-day postnatal brain, while relaxin receptors are not detectable until 7 days after birth. The relaxin receptor binding affinity was similar in the developing brains, but there was a steady increase in relaxin binding sites during postnatal days 7 to 29, suggesting that relaxin may play a role in brain maturation. While relaxin mRNA is not detected in the heart, high levels of relaxin receptors are detected in the cardiac atrium as early as 1 day after birth. These atrial receptors remained at similar levels throughout postnatal development, suggesting an important role for relaxin in cardiovascular function."	"Regenerating retinal fibers display error-free homing along undamaged normal fibers. After crushing one optic nerve in a bony fish, retinal fibers regenerate to both tecta. Anterograde labelling indicates that the ipsilaterally regenerating fibers have a rather straight growth, apparently along the undamaged fibers of the contralateral retina. In contrast, the contralaterally regenerating fibers deviate widely from a straight course. Retrograde labelling shows a mirror-symmetric distribution of regenerated ipsilateral and resident contralateral ganglion cells in a comparable annulus. In contrast, ganglion cells in the regenerated contralateral retina show no topological order after comparable small Dil applications to the ventrolateral tectum. These data suggest that regenerating fibers can orient on the undisturbed, contralateral fibers."	"Distribution of NCAM-180 and polysialic acid in the developing tectum mesencephali of the frog Discoglossus pictus and the salamander Pleurodeles waltl. The 180 kDa component of the neural cell adhesion molecule (NCAM-180), total NCAM (NCAM-total) and the polysialic acid modification of NCAM (PSA) show similar temporal and spatial regulation in the developing tecta of Pleurodeles waltl (salamander) and Discoglossus pictus (frog). Whereas NCAM-total is found throughout the tectal tissue on neurons and glia, NCAM-180 is only found on non-proliferating neurons and in fiber layers. PSA is expressed by a subset of NCAM-180-positive cells. Western blots show that there is little polysialylated NCAM-140 in the developing amphibian tectum. Regions unstained for PSA and NCAM-180 correspond precisely to the growth zones of the tectum. NCAM-180 and PSA are not present in tecta of early larvae. Staining intensity is strongest at midlarval stages for both antigens. At metamorphosis, PSA is strongly downregulated, whereas NCAM-180 is downregulated in juvenile animals. Both antigens are still present in fiber layers of adult animals. In dissociated tissue culture of the frog tectum, NCAM-180 is not present on astrocytes, but on neuronal cells. Expression is enhanced at cell contact sites, suggesting that NCAM-180 is involved in cell contact stabilization. This study shows that general features of temporal and spatial regulation of NCAM isoforms and PSA are highly conserved in frog and salamander tecta, despite large differences in the rate of cell migration and the degree of lamination in these homologous brain regions."	"Expression of members of the trk family in the developing postnatal rat brain. Tyrosine protein kinases trk, trkB and trkC are essential components of the high affinity receptors necessary to mediate biological effects of the neurotrophins NGF, BDNF, NT-3 and NT-4. Here we report on the expression of these receptors during postnatal development in the rat brain. Cells expressing mRNAs encoding different members of the trk family were identified by in situ hybridization using oligonucleotides complementary to their respective mRNA. In septum, striatum and brainstem, higher levels of trk mRNA were detected at 2 and 4 weeks than at 1 weeks of age. In thalamic nuclei associated with the limbic system, trkB and trkC mRNA were highly expressed at P1 to P7, but the expression declined gradually in 2 and 4 week old animals. Other structures where a developmentally regulated expression was seen included the tenia tecta and piriform cortex where trkB mRNA was not detected until 2 weeks of age. A high labeling was found for trkC mRNA in the deeper parts of neocortex in P1 and P4 animals, while in 2 and 4 weeks old animals the highest labeling was seen over the outer neocortical layers. Several brainstem nuclei showed a higher labeling for trkC mRNA at P1 to P7 than in animals of older age. These data show that expression of members of the trk family is developmentally regulated during postnatal brain development and suggest that high affinity neurotrophin receptors mediate a transient response to neurotrophins in many regions during brain ontogeny."	"The development of non-retinal afferent projections to the frog optic tectum and the substance P immunoreactivity of tectal connections. Accessibility in early development and the presence of a retinotopic map have made the amphibian optic tectum a popular system for exploration of the role of synaptic function in central map refinement. Although a great deal is known about the development of retinal innervation of the tectum, little information exists about the development of non-retinal tectal inputs. Since these other afferent systems may contribute to the synaptic drive of developing tectal cells and thereby be involved in the activity-dependent refinement of the retinotectal map, we sought to determine whether these inputs are present at the early tadpole stages when the first retinal axons refine their synaptic order within the tectal neuropil. Rhodamine-labelled latex beads, retrogradely transported from injection sites in the optic tecta, were used to identify tectal afferent projections. Projection patterns in very young tadpoles were identical to those found in juvenile frogs and heavily labelled regions included areas of the posteroventral tegmental field, the posterior tuberculum, the ventromedial thalamic nucleus, the ventral part of the ventrolateral thalamic nucleus, the suprachiasmatic nucleus and discrete regions within the central and anterior thalamic nuclei. Ipsilateral nucleus isthmi cells were also labelled, indicating the existence of an isthmo-tectal projection in even the youngest animals examined. Additionally, substance P-like immunoreactive tecto-isthmal fibers were traced from the optic tectum to the nucleus isthmi. The presence of these connections suggests that feedback from the nucleus isthmi and/or input from the other brain areas projecting to the tectum may play a role in modulating the cellular mechanisms that underlie the formation of the visual map."	"Distribution of the neurons containing inositol 1,4,5-trisphosphate 3-kinase and its messenger RNA in the developing rat brain. As a result of its interaction with a specific receptor, inositol 1,4,5-trisphosphate (InsP3) mobilizes intracellular calcium. The metabolism of InsP3 is rather complex: InsP3 3-kinase produces Inositol 1,3,4,5-tetrakisphosphate (InsP4), a putative second messenger also involved in the intraneuronal calcium homeostasis. The distribution of the messenger RNA coding for the recently cloned InsP3 3-kinase was studied in the developing rat brain by using oligonucleotides derived from the rat cDNA sequence and in situ hybridization combined with Northern blot analysis. In addition, the locations of the enzyme were determined by immunohistochemistry in combination with Western blot analysis. By Northern blot and Western blot analyses on rat brain, the kinase was not detected in the embryo, was first found slightly at birth, and reached adult levels around 2-3 postnatal weeks. These findings were confirmed in the different positive regions by in situ hybridization conducted at the macroscopic level. At the cellular level, the mRNA was found exclusively in the neuronal populations previously demonstrated in the adult. The levels of transcripts per neuron were however higher in the adult than in the neonate brain. The enzyme mRNA could be detected first at postnatal day 0, (birth, P0) in the perikarya of the cerebellar Purkinje cells, followed at P4 by the hippocampal CA1 pyramidal cells and granule cells of the dentate gyrus and finally, at P9, by a majority of the neurons in the cortical layers II-III and V, especially in the frontal cortex and cingulate cortex; claustrum; caudate, putamen, accumbens, olfactory tubercle and calleja islets; anterior olfactory nucleus; taenia tecta; piriform piriform cortex; dorsolateral septum; bed nucleus stria terminalis; amygdala; hippocampal CA2-4 sectors and subiculum. By immunohistochemistry, the enzyme was initially found in the periphery of the cell bodies of the neonatal neurons; was progressively enriched in the developing dendritic arborization during the first postnatal weeks where it remained exclusively localized in the adult. In conclusion, in the developing brain, InsP3 3-kinase was first detected at birth, and thereafter its concentrations increased to reach adult levels around 2-3 postnatal weeks. At the cellular level, the kinase was exclusively found in the neurons. The small amounts of transcripts found per neuron in the neonate increase during synaptogenesis and the protein became progressively enriched in the developing dendritic arborization, where it is localized in the adult."	"Optic tectum in congenitally monophthalmic fishes and chicks. Morphometry of optic tectum layers was performed in fishes and birds that were congenitally monophthalmic (or had one very small or malformed eye). The optic chiasm was studied with regard to possible anomalies of the fiber distribution. In two very young fish larvae with only one ocular rudiment, no differences were found between the two tecta. In fishes and chicks with one normal and one eye of reduced size, the volume of superficial tectal layers contralateral to the small eye was significantly more affected (reduction by 40 to 70%) than that of the deep layers (reduction by 10 to 30%). Particularly pronounced differences between the superficial tectal layers of both sides were found in a fish where a thin optic nerve, originating in an unusually small eye, projected to the ipsilateral side of the brain. It is concluded that (1) the development of superficial tectal layers depends more strongly on optic innervation than that of deep layers; (2) obvious differences between tecta with and without optic innervation develop rather late in ontogeny; (3) there seems to be no measurable difference between effects of a poor (less than 25%) innervation of the tectum and a complete lack of this projection."	"Retrovirally introduced antisense integrin RNA inhibits neuroblast migration in vivo. We used retrovirus-mediated gene transfer to ask whether integrins are involved in the development of neuroblasts in the chicken optic tectum. Vectors were constructed with the E. coli lacZ gene in the sense orientation and beta 1 integrin sequences in the antisense orientation. Tests in culture showed that the progeny of cells infected by these vectors were identifiable by expression of LacZ and had reduced levels of beta 1 integrins on their surfaces. We then injected these vectors into optic tecta on E3, at the height of neuronal production. Clones of LacZ-positive cells were analyzed 3-9 days later, as they migrated along radial glia to form the tectal plate. Antisense sequences had little effect on the proliferation of progenitors, or on the radial stacking of their progeny in the ventricular zone (E6). However, many antisense-bearing cells accumulated in the ventricular zone and failed to migrate into the tectal plate (E7.5 and E9). At later stages (E12), few antisense-bearing cells could be found. Thus, integrin appears to be required in the migratory process, and cells that fail to engage in integrin-mediated interactions may die."	"Rapid onset of neuronal death induced by blockade of either axoplasmic transport or action potentials in afferent fibers during brain development. We have investigated how neurons in the optic tecta of embryonic day 16 chick embryos depend for survival on their afferents from the retina. To distinguish between activity-mediated effects and other, &quot;trophic,&quot; ones, we compared the effects on the tectal neurons of blocking intraocular axoplasmic transport (with colchicine) or action potentials (by means of TTX). Both interventions rapidly induced the appearance of dying (pyknotic) neurons in the tectum, with major increases in their number occurring within 13 hr post-colchicine and within 9 hr post-TTX. Following both drugs, the dying neurons were morphologically similar, and in both cases the cell death depended on protein synthesis. However, the effects of colchicine and of TTX could be dissociated, since the most superficial tectal neurons became pyknotic only in response to colchicine, and, with a sufficiently short survival time (9 hr), the deep cells of the stratum griseum centrale became pyknotic only in response to TTX. We hence argue that the survival of the tectal neurons depends on their ongoing maintenance by substances released from retinotectal axon terminals, the release being activity dependent in the case of the deep neurons but independent of activity in the case of the superficial ones."	"Characterisation of a novel glycoprotein (AvGp50) in the avian nervous system, with a monoclonal antibody. A size fractionated lentil lectin-positive fraction derived from a deoxycholate extract of 1-day-old chick forebrain membranes was used to generate a series of monoclonal antibodies (Mabs) against neural antigens. One of these, MabSA1.7 recognises a glycoprotein which is enriched in synaptic plasma membranes, designated AvGp50. Polyacrylamide gel electrophoresis and Western blots show that AvGp50 is comprised of at least two glycoforms, with M(r)s of 53 kDa and 49 kDa respectively. AvGp50 is nervous system specific and most abundantly expressed in the forebrain, tecta and cerebellum where its pattern of expression is developmentally regulated. Immunohistochemical data localises AvGp50 to regions characterised by highly concentrated synapses, in particular, the molecular and granule cell layers of the cerebellum and in the inner and outer plexiform layers in the retina. Solubilization of the protein with the detergent Triton X-100 shows that AvGp50 is predominantly a cytoskeletally associated glycoprotein. However, when a synaptic plasma membrane fraction was treated with Triton X-114, AvGp50 partitioned into the detergent phase. Digestion of the protein with N-glycanase cleaved five N-linked carbohydrate side chains and reduced the molecular weight to approximately 34 and 31 kDa. Removal of the carbohydrate side chains led to an almost complete loss of recognition of the 34 kDa glycoform by the MabSA1.7, suggesting that the monoclonal antibody recognises a carbohydrate rather than peptide epitope."	"Adaptive adjustment of unit tuning to sound localization cues in response to monaural occlusion in developing owl optic tectum. Bimodal units in the barn owl's optic tectum are tuned to the location of auditory and visual stimuli, and are systematically organized according to their spatial tuning to form mutually aligned maps of auditory and visual space. Map alignment results from the fact that, normally, units are tuned to the values of interaural level difference (ILD) and interaural time difference (ITD) produced by a sound source at the location of their visual receptive fields (VRFs). Monaural occlusion alters the correspondence of ILD and ITD values with locations in space. We investigated the effect that raising owls with a chronic monaural occlusion has on the tuning of tectal units to ILD and ITD. Owls were monaurally occluded beginning at 1 month of age. The effects of monaural occlusion were assessed 2-4 months later by comparing the ILD and ITD tuning of units in monaurally occluded owls with the ILD and ITD tuning of units with equivalent VRFs in normal owls. ILD and ITD tuning was shifted substantially and in the direction of the unoccluded ear (the adaptive direction) in owls raised with a monaural occlusion. In most tecta, the mapped representations of ILD and ITD were shifted systematically. In addition, in some tecta, monaural occlusion induced a change in the topography of the ILD map such that ILD tuning remained essentially constant at values near 0 dB over abnormally large portions of the tectum. Across all recording sites, the average shift in ILD tuning was 9 dB (n = 396) and the average shift in ITD tuning was 40 microseconds (n = 414). In four of five animals, the magnitude of the effect was not equivalent on the two sides of the brain, the adjustments being significantly larger and more systematic on the side ipsilateral to the occlusion. Such differences in the altered ILD and ITD maps on the two sides of the brain in individual animals indicate that, although a component of the adaptive adjustment might be due to regulation of the gain and phase response of the monaural signals early in the auditory pathway, a major component of the adjustment must occur at or beyond the level where the encoding of ILDs and ITDs for left and right space separates."	"Comparison of neuronal inositol 1,4,5-trisphosphate 3-kinase and receptor mRNA distributions in the adult rat brain using in situ hybridization histochemistry. As a result of its interaction with a specific receptor, inositol 1,4,5-trisphosphate mobilizes intracellular calcium. The metabolism of inositol 1,4,5-trisphosphate is rather complex: inositol 1,4,5-trisphosphate 3-kinase produces inositol 1,3,4,5-tetrakisphosphate, a putative second messenger. In order to elucidate inositol 1,3,4,5-tetrakisphosphate function, a comparative in situ hybridization study of the distributions of inositol 1,4,5-trisphosphate 3-kinase and receptor mRNAs was performed in the adult rat brain using oligonucleotides derived from their cDNA sequences. The neuronal distributions of the mRNA for the receptor were larger than for the kinase. Highest levels of both mRNAs were found in the cerebellar Purkinje cells, where they were enriched in their neuronal perikarya and to a lesser extent in their dendrites. In addition to the cerebellum, mRNAs were mainly detected in the hippocampal pyramidal cells of the CA1 sector of the Ammon's horn and in the granule cells of the dentate gyrus, and also in a majority of the neurons in the cortical layers II-III and V, especially in the frontal cortex and cingulate cortex; caudate-putamen, accumbens, olfactory tubercle and Calleja islets; claustrum; anterior olfactory nucleus; taenia tecta; piriform cortex; dorsolateral septum; bed nucleus stria terminalis; amygdala; hippocampal CA2-4 sectors and subiculum. The inositol 1,4,5-trisphosphate receptor mRNA but not kinase mRNA was found in a majority of the neurons in the thalamus, especially in the parafascicular nucleus; hypothalamus, especially the medial hypothalamus; substantia nigra pars compacta and ventral tegmental area; superior colliculus; lateral interpeduncular nucleus and central gray. Taking into account the limitation in sensitivity of the technique, both mRNAs were not detected in glial cells and in the olfactory bulb; basal nucleus of Meynert, diagonal band nuclei; medial septal nucleus; substantia innominata; globus pallidus; entopeduncular nucleus; substantia nigra pars reticulata; ventral pallidum; subthalamic nucleus; spinal cord and dorsal root ganglia. In conclusion, cerebellum and hippocampus appear to contain almost similar levels of kinase mRNA. This is in contrast to receptor mRNA levels which were at much higher levels in the cerebellum when compared with the hippocampus. For this reason, we have chosen hippocampal CA1 pyramidal cells and dentate gyrus granule cells for studying inositol 1,4,5-trisphosphate 3-kinase function."	"Regional distribution of DARPP-32 (dopamine- and adenosine 3',5'-monophosphate-regulated phosphoprotein of Mr = 32,000) mRNA in mouse brain. DARPP-32 (dopamine- and adenosine 3',5'-monophosphate-regulated phosphoprotein of Mr = 32,000) mRNA distribution was examined in adult mouse central nervous system by in situ hybridization. In general, DARPP-32 mRNA was found in regions of brain where cells express the dopamine D1 subtype receptor. Cells of the olfactory tubercle, caudate-putamen, and nucleus accumbens had the highest levels of DARPP-32 mRNA, as did choroid plexus and Purkinje cells. Relatively high levels were found in medial habenula and lateral piriform cortex. Moderate levels were seen in cerebral cortex layer VI, medial piriform cortex, lateral entorhinal cortex, tenia tecta, anterior olfactory nucleus, and lateral bed nucleus of the stria terminalis. Low levels were observed in hippocampus, cerebral cortex layers II and III, olfactory bulb, and the nucleus of the lateral olfactory tract. DARPP-32 mRNA levels in the amygdaloid nuclei varied greatly."	"A correlative SEM/TEM examination of the endothelium surface in neural capillaries. The modifications of the endothelial surfaces were analyzed in growing neural microvessels by scanning and transmission electron microscopes in the optic tecta of chick embryos and chickens. The endothelial inner aspect appears regular and smooth in the early stages of the vessel growth (7th incubation day). Later (14th incubation day) both the abluminal and luminal surfaces of the endothelium follow a very sinuous course and the luminal ones appear extremely rich in pleomorphic microprojections. When the endothelium differentiation is concluded (5-day-old chicken), the cells are very thin and again exhibit regular and smooth surfaces. These findings reveal a great mobility of the cell membrane of the endothelial cells when they are growing longer and thinner by a moulding process. Moreover, the presence of a number of pinocytotic pits in the embryo vessels would indicate that the neutral vessels, provided with a typically low pinocytotic activity in the adult life, are engaged in this function during development."	"GAP-43 mRNA localization in the rat hippocampus CA3 field. Gene expression of the axonal growth-associated protein, GAP-43, has been studied in the adult rat brain by in situ hybridization histochemistry. This protein is synthesized at high levels in neuronal somata in immature and regenerating neurons, but after establishment of mature synaptic relations its synthesis generally declines sharply, thus providing a marker denoting propensity for exhibiting synaptic plasticity. Detailed examination of the distribution of mRNA for GAP-43 in rat hippocampus is selectively and robustly expressed in the pyramidal neurons of field CA3 and, to a lesser extent, the polymorph neurons of the hilus of the dentate gyrus. Additional hippocampal regions of moderate expression include the tenia tecta and the subicular and entorhinal fields, but CA1 and CA2 are strikingly lower in signal. The significance of this pattern of localization is considered in the context of the phosphorylation of GAP-43 and its role in influencing synaptic events underlying the establishment and maintenance of long-term potentiation and plasticity in the hippocampus."	"Is visual lateralization in pigeons sex-dependent? Adult homing pigeons (Columba livia) of both sexes were trained binocularly on a successive pattern discrimination task. After reaching criterion they performed the task on alternate sessions under monocular left or right viewing conditions. Regardless of their gender, all animals reached higher pecking scores when sight was restricted to the right eye. Due probably to a ceiling effect, the discrimination-accuracy scores did not differ between left and right condition. Thus, at least with respect to the number of responses emitted, a sex dependency of visual lateralization could not be demonstrated. The results are discussed in the light of studies which demonstrate that male and female pigeons have similar anatomical asymmetries of their optic tecta."	"Region-specific expression of GABAA receptor alpha 3 and alpha 4 subunits mRNAs in the rat brain. The expression of mRNAs encoding the alpha 3 and alpha 4 subunits of the gamma-aminobutyric acid A (GABAA) receptor in the rat brain was investigated by in situ hybridization histochemistry. Both subunits showed a wide but uneven distribution, which did not coincide with the distribution of any other subunit so far reported. The cerebral cortex, anterior olfactory nucleus, lateral septum, subiculum, lateral and medial nuclei of the amygdaloid complex, anterior nuclei of the thalamus, pars compacta of the substantia nigra, trigeminal sensory nuclei, and cochlear nucleus were some of the areas where strong expression of mRNA for both the alpha 3 and alpha 4 subunits was detected. In the mitral cell layer of the olfactory bulb, the preoptic area and locus coeruleus, strong expression of only the alpha 3 subunit was detected. In the granular cell layer of the olfactory bulb, caudate-putamen, tenia tecta, pyramidal cell layer of the CA region and granular cell layer of the dentate gyrus in the hippocampal formation, dorsomedial and ventrolateral nuclei of the thalamus, dorsal part of the lateral geniculate body, preolivary nuclei and pontine nuclei, only the alpha 4 subunit showed strong expression. The diverse distribution of these two subunits is considered to indicate that each has a different role in the central nervous system."	"Target regulation of synaptic number in the expanded retinotectal projection of goldfish: the half-retinal preparation. The nature of the expansion of the visual field projection was studied in goldfish in which size disparities were created between the retina and the tectum. After removal of one-half of the retina, the remaining retinal ganglion cells expand their projections so that the entire contralateral optic tectum is encompassed (Schmidt et al.1978). We wished to determine whether this expansion is accompanied by increased arborization including proliferation of synaptic terminals by the spared retinal ganglion axons or whether field expansion is accomplished by increased arborization without changes in synaptic number. Portions of the retina were ablated and the animals were allowed to survive for at least 5 months, the time at which expansion can be demonstrated, before sacrifice. We mapped retinotectal projections to determine the extent of the expanded visual fields and used stereological and morphometric analyses of synaptic contacts in the retinal target lamina, the stratum fibrosum et griseum superficialis (SFGS), in the optic tectum to estimate synaptic number. Numbers of synaptic terminals in the SFGS contralateral to the lesioned retina were not different from numbers in the comparable portion of control tecta. These observations indicate that the surviving retinal axons increased the number of synaptic contacts on tectal target cells in response to removal of other retinal ganglion cells."	"Different postnatal development of cells expressing mRNA encoding neurotensin receptor. In situ hybridization histochemistry revealed three different ontogenetic patterns of localized expression of the high-affinity type of neurotensin receptor mRNA in the developing rat brain: one comprises sites which showed transient expression of neurotensin receptor mRNA during the first postnatal week, the expression greatly decreasing thereafter (type I); another comprises sites at which there is a gradual increase in neurotensin receptor mRNA after birth, as there is in cell number and intensity, with advancing age, followed by a plateau (type II); the third comprises sites at which there is much expression of neurotensin receptor mRNA already at birth, and a slight decrease thereafter (type III). The cerebral cortex, except retrosplenial and entorhinal cortices, and the anterior dorsal thalamic nucleus exhibit the type I pattern, while the horizontal and vertical limbs of the diagonal band of Broca, magnocellular preoptic nucleus, substantia innominata, ventral part of the suprachiasmatic nucleus, medial habenular nucleus, ventral tegmental area and substantia nigra pars compacta exhibit the type II pattern. The tenia tecta, retrosplenial and entorhinal cortices exhibit the type III pattern. One of the most striking findings in this study was that the entire neocortex and most of the limbic cortex exhibit the type I pattern, i.e. neurotensin receptor mRNA is expressed transiently long before a neuronal network is established there. This suggests that neurotensin plays an important role in cortical development, other than its reported transmitter-like role in the adult."	"Permeability-related structures in developing and mature microvessels of the chicken optic tectum. The mode and the temporal sequence of the modifications undergone by permeability-related structures in the neural microvessels have been ultrastructurally and morphometrically investigated in optic tecta of 6, 14, and 18 incubation day (i.d.) chicken embryos and of 30 day chickens. Horseradish peroxidase was utilized as a permeability marker. The endo- and exocytosis-related structures (vesicles and vacuoles) and the interendothelial junctions remarkably change during development: the density of the vacuoles is decreased at the 14th i.d., while that of the vesicles becomes significantly low at the 18th i.d., both reaching lowest values in the chicken; the passage of the marker through the endothelial junctions begins to be hindered from the 14th i.d., parallel to the perivascular arrangement of astrocytic glia endfeet, and it is completely blocked at hatching time. The findings suggest that the optic tectum microvessels are permeable, and thus immature, in the early development and progressively acquire morphofunctional features of vessels provided with barrier devices during the pre- and post-natal development of the brain."	"Establishment of rostrocaudal polarity in tectal primordium: engrailed expression and subsequent tectal polarity. In the E4 (embryonic day 4) chick tectal primordium, engrailed expression is strong at the caudal end and gradually weakens toward the rostral end. We used quail-chick chimeric tecta to investigate how the caudorostral gradient of engrailed expression is established and whether it is correlated with the subsequent rostrocaudal polarity of tectal development. To examine the positional value of the tectal primordium, we produced ectopic tecta in the diencephalon by transplanting a part of the mesencephalic alar plate heterotopically. In the ectopic tectum, the gradient of the engrailed expression reversed and the strength of the expression was dependent on the distance from the mes-diencephalon junction; the nearer the ectopic tectum was to the junction, the weaker the expression was. Consequently, the pattern of the engrailed expression in the host and ectopic tecta was nearly a mirror image, suggesting the existence of a repressive influence around the mes-diencephalon junction on the engrailed expression. We examined cytoarchitectonic development in the ectopic tecta, which normally proceeds in a gradient along the rostrocaudal axis; the rostral shows more advanced lamination than the caudal. In contrast, the caudal part of the ectopic tecta (near to the mes-diencephalon junction) showed more advanced lamination than the rostral. In both the host and ectopic tecta, advanced lamination was observed where the engrailed expression was repressed, and vice versa. Next we studied the correlation between engrailed expression and retinotectal projection from a view of plasticity and rigidity of rostrocaudal polarity in the tectum. We produced ectopic tecta by anisochronal transplantations between E3 host and E2 donor, and showed that there is little repressive influence at E3 around the mes-diencephalon junction. We then made chimeric double-rostral tectum (caudal half of it was replaced by rostral half of the donor tectum) or double-caudal tectum at E3. The transplants kept their original staining pattern in hosts. Consequently, the chimeric tecta showed wholly negative or positive staining of engrailed protein on the grafted side. In such tecta retinotectal projection pattern was disturbed as if the transplants retained their original position-specific characters. We propose from these heterotopic and anisochronal experiments that the engrailed expression can be a marker for subsequent rostrocaudal polarity in the tectum, both as regards cytoarchitectonic development and retinotectal projection."	"Ultrastructural evidence for an olfactory-autonomic pathway through the rat central amygdaloid nucleus. The innervation of medullary projection neurons in the central amygdaloid nucleus (Ce) by afferents from the ventral taenia tecta (VTT) was investigated using combined lesion-induced axonal degeneration and retrograde transport of horseradish peroxidase-conjugated wheat germ agglutinin (HRP-WGA). Injections of HRP-WGA into the nucleus tractus solitarii resulted in retrograde labeling of neurons in the medial Ce. Ultrastructurally HRP-WGA reaction product was identifiable in the perikarya and proximal dendrites of Ce neurons. Degenerating terminals, probably due to damage at the HRP-WGA injection site, were few and confined to the ventral Ce. Electrolytic coagulation of the VTT resulted in approximately 9% of terminals in medial Ce showing signs of degeneration at 5 days post-lesion. Of the terminals sampled, slightly more than 40% were in contact with the dendrites of retrogradely labeled neurons. Where evident, these terminals formed exclusively symmetrical synaptic contacts. These data provide evidence for an oligosynaptic olfactory-autonomic pathway in the rat that may mediate olfactory influences on gastric and cardiovascular aspects of autonomic function."	"Differential expression of mRNAs for the NGF family of neurotrophic factors in the adult rat central olfactory system. The cellular localization of mRNAs for nerve growth factor (NGF), brain-derived neurotrophic factor (BDNF), and neurotrophin-3 (NT3), in the rat central olfactory system was evaluated with in situ hybridization of 35S-labeled cRNA probes. In the main olfactory bulb, low levels of NGF and BDNF mRNA expression were detected. NGF mRNA was restricted to the glomerular region while BDNF mRNA was predominantly localized to the granule cell layer. No cellular hybridization to NT3 cRNA was seen. The accessory olfactory bulb did not express detectable levels of mRNA for any of the three related neurotrophic factors. Areas which receive olfactory bulb afferents expressed comparatively high levels of both NGF and BDNF mRNA. Cell labeling with cRNAs for NGF and BDNF occurred throughout the cellular layers of the anterior olfactory nucleus and in layers 2 and 3 of rostral piriform cortex. BDNF mRNA expression in these areas appeared more robust than that of NGF mRNA, while NT3 mRNA was not detectable. In contrast, tenia tecta exhibited dense labeling with the cRNAs for all three neurotrophic factors. The localization of NGF mRNA to primary target neurons of the olfactory nerve in the periglomerular region of the main olfactory bulb suggests that bulb cells may influence the ingrowth and continual turnover of olfactory sensory afferents. However, as there is a strong correlation between the distribution of neurotrophic factor mRNAs within rostral olfactory structures and the distribution of centrifugal cholinergic afferents, it is more likely that bulb-derived NGF, and possibly BDNF, act on the cholinergic neurons of the basal forebrain."	"Distribution of GABAA-receptor alpha 1 subunit gene expression in the rat forebrain. The localization of neurons containing mRNA of the alpha 1 subunit of the gamma-aminobutyric acid-A (GABAA) receptor was examined in the rat forebrain by in situ hybridization histochemistry using an oligonucleotide probe for the alpha 1 subunit. Moderately to strongly labeled neurons were numerous in the mitral cell layer of the olfactory bulb, the anterior olfactory nucleus, the diagonal band of Broca, the globus pallidus, the tenia tecta, the hippocampal formation, the thalamic and subthalamic nuclei, the zona incerta, and the amygdaloid complex. A few positive neurons were found in the caudate-putamen, the lateral and medial septal areas, the nucleus accumbens, the bed nucleus of the stria terminalis, the ventral pallidum, and the hypothalamus. The distribution of neurons containing alpha 1 subunit mRNA in the forebrain was very similar to that of neurons expressing beta 2 subunit mRNA, suggesting that these two subunits frequently coexist in the same neurons in the forebrain."	"Localization of insulin-like growth factor I (IGF-I)-like immunoreactivity in the developing and adult rat brain. The cellular distribution of insulin-like growth factor I (IGF-I) immunoreactivity was examined in the rat brain from embryonic day 15 to maturity. IGF-I immunoreactivity was found in the perikarya of neurons distributed along the entire extension of the neuronal tube in all the embryonic ages studied (E15, E17, E19 and E21). In E21 animals, the majority of immunoreactive neurons was located in the olfactory bulb, cerebral cortex, hippocampus, striatum, diencephalon, mesencephalic colliculi, trigeminal nuclei, trigeminal ganglion and in motoneurons of the brainstem. In 10- and 20-day-old rats, in addition to the above areas, IGF-I immunoreactivity was also observed in capillary walls, ependymal cells, choroid plexus, glial cells and most fiber paths. In postnatal ages, immunoreactivity in neuronal somas was mainly restricted to the cell nuclei. However, IGF-I immunoreactivity in the neuronal cytoplasm was observed in 20-day-old rats treated with colchicine while fiber paths and neuronal cell nuclei were negative in these animals. In the telencephalon of 20-day-old rats injected with colchicine, the most intense immunoreactive neurons were observed in the olfactory bulb, cerebral cortex, tenia tecta, hippocampus, islands of Calleja, septal nuclei, striatum, endopyriform nucleus and amygdala. Most diencephalic nuclei, the substantia nigra, the mesencephalic colliculi, Purkinje cells in the cerebellar cortex and several nuclei in mesencephalon, pons and medulla oblongata were also immunoreactive. In adult rats injected with colchicine, IGF-I immunoreactivity was located in the same areas as in 20-day-old rats. The number of immunoreactive cells and the intensity of the staining was reduced in adult rats as compared to that found in young postnatal animals.(ABSTRACT TRUNCATED AT 250 WORDS)"	"Regenerating retinal axons of goldfish respond to a repellent guiding component on caudal tectal membranes of adult fish and embryonic chick. On a substrate of rostral/caudal tectal membrane stripes of adult fish, regenerating temporal retinal axons avoid the caudal membranes. Thus they behave like embryonic chick axons on chick E9 membranes. The caudal membranes of adult fish contain a repellent component that, as has previously been shown in the chick, is inactivated by the enzyme PI-PLC. Fish axons respond not only to their own but also to the repellent component of embryonic chick membranes. Fish and more so chick E9 caudal membranes have an outgrowth reducing effect on fish axons that is also abolished by PI-PLC treatment and is weaker on chick E16 membranes. Thus adult fish tecta express a guiding component for retinal axons related to that in the embryonic chick."	"The optic tectum of the dogfish Scyliorhinus canicula L.: a Golgi study. The optic tectum of the dogfish Scyliorhinus canicula L. was studied by using the methods of Nissl, reduced silver nitrate, Golgi-aldehyde, and Golgi-Cox. Six layers and eight types of neurons were recognized. These cell types are not restricted to one layer; in fact some are found in all six tectal layers. The types of cells found are A) monopolar, B) triangular, C) radial bipolar, D) horizontal fusiform, E) large tectal, F) small tectal, G) pyriform, and H) stellate cells. In at least six of the cell types a series of dendritic specializations can be observed, such as spines in the form of &quot;drumsticks&quot; and thin varicose appendages, similar to those reported previously in the optic tecta of amphibians and teleosts. The optic tectum of the dogfish shows a degree of complexity comparable to that of amphibians and teleosts."	"Compensation for population size mismatches in the hamster retinotectal system: alterations in the organization of retinal projections. Unilateral partial ablation of the superior colliculus in the hamster results in a compression of the retinotopic map onto the remaining tectal fragment. In a previous electrophysiological study (Pallas &amp; Finlay, 1989a), we demonstrated that receptive-field properties of single tectal units (including receptive-field size) remain unchanged, despite the increased afferent/target convergence ratios in the compressed tecta. The present study was done to investigate the mechanism that produces increased convergence from retina to tectum at the population level while maintaining apparent stability of convergence at the single neuron level. We injected comparable quantities of horseradish peroxidase into the tecta of normal adult hamsters and adult hamsters that had received neonatal partial tectal ablations of varying magnitude. We then compared the area of retina backfilled from the injection and the number and density of labeled retinal ganglion cells within it to the size of the remaining tectal fragment. As expected from earlier anatomical (Jhaveri &amp; Schneider, 1974) and physiological (Finlay et al., 1979a; Pallas &amp; Finlay, 1989a) studies demonstrating compression of the retinotectal projection, we found that the area of retina labeled from a single tectal injection site increases linearly with decreasing tectal fragment size. However, for fragment sizes down to 30% of normal, total number of retinal ganglion cells projecting to the injection site remains in or above the normal range. For large lesions (less than 30% of tectum remaining), total number of labeled retinal ganglion cells declines from normal, despite the fact that a larger absolute area of retina is represented on each unit of tectum under these conditions. Comparison of retinal ganglion cell density with tectal fragment size shows an initial decline with decreasing fragment size, which becomes sharper with very large lesions (small tectal fragments). The maintenance of the normal number of retinal ganglion cells innervating each patch of tectum could be accomplished by an elimination of the tectal collaterals of some retinal ganglion cells. Our results suggest that, in addition to collateral elimination, reduction in the size of ganglion cell arbors is occurring, since the peak density of backfilled ganglion cells declines less rapidly than backfilled retinal area increases, especially for small lesions. However, arbor reduction and collateral elimination must occur in such a way that individual tectal cells represent the same amount of visual space as normal. Thus, collateral elimination and arbor reduction are two mechanisms that operate to maintain afferent/target convergence ratios (and thus receptive-field properties) over large variations in afferent availability.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Retention of retinal axon collateral is responsible for induced ipsilateral retinotectal projections in adult goldfish. In normal goldfish, optic axons innervate only the contralateral optic tectum. When one eye was enucleated and the optic nerve of the other eye crushed, the regenerating optic axons innervated both optic tecta. We studied the presence of bilaterally projecting retinal ganglion cells by double retrograde cell labeling methods using Nuclear Yellow and True Blue dyes. About 10% of the retinal ganglion cells were double labeled and these cells were found throughout the retina. In addition, HRP application to the ipsilateral tectum revealed retrogradely-labeled retinal ganglion cells of all morphological types. These results suggest that induced ipsilateral projections are formed by regenerating axon collaterals and that all cell types are involved in the generation of normal mirror image typography."	"Comparison of glutathione S-transferase activity in the rat and birds: tissue distribution and rhythmicity in chicken (Gallus domesticus) liver. 1. Mature, male chickens, Bobwhite quail, and rats differed with respect to glutathione S-transferase (GST) activity in the kidney, duodenum and testis, but species differences were not observed in the liver. 2. GST activity was present in the heart, spleen, liver, duodenum, kidney, testis, cerebral cortex, cerebellum, optic tecta, and medulla oblongata of chickens with differences in tissues and breeds. 3. Renal GST activity was higher in female chickens, whereas enzyme activity in the brain was higher in males. 4. Hepatic GST activity fluctuated about a mean of 784 nmol min-1 mg protein-1 with a 12 hr periodicity which was not a feeding phenomenon. 5. The results demonstrate that GST activity occurs in diverse tissues of the chicken and Bobwhite quail with kidney greater than liver greater than duodenum greater than testis, compared to testis greater than liver greater than duodenum greater than kidney in the rat. Hepatic GST activity exhibits an ultradian periodicity."	"Quantitative study of the tectally projecting retinal ganglion cells in the adult frog: I. The size of the contralateral and ipsilateral projections. The proportion of ganglion cells connected to the several central targets of the retinal projection varies in different species. In the frog, the retinotectal projection is clearly the largest branch of the optic pathway and the relative size of the tectally projecting population can be expected to be correspondingly great. However, there have been no studies aimed at quantifying the size of this population and at partitioning its contralateral and ipsilateral components. We injected the tectum with horseradish peroxidase (HRP) dried onto fine needles to count the numbers of retinal ganglion cells labeled by retrograde transport. The retinas were prepared as flat-mounts to facilitate the cell counting. The tecta were injected either unilaterally or bilaterally in mirror-symmetric loci. Specimens included completely normal frogs and frogs which had undergone unilateral optic nerve regeneration, although only normal retinas are presented in the current study. The retrograde transport interval was varied progressively (from 3 to 5 days), and single or multiple injections of HRP were placed singly or as clusters, in order to increment the cell counts toward a level of saturation. Approximately 70.9% of the neurons in the ganglion cell layer could be labeled by this method. Correcting for the presence of displaced amacrine cells, estimated to comprise approximately 16% of the neurons in the ganglion cell layer (Scalia et al., '85, Brain Res. 344:267-280), we calculate that approximately 84.4% of the retinal ganglion cells project contralaterally to the optic tectum. Flat-mounted retinas ipsilateral to unilaterally injected tecta of completely normal frogs were also examined for labeled cells. The results of injections in the rostrolateral, caudomedial, and caudolateral tectum were studied. We found that ipsilaterally labeled cells comprised no more than 2.3% of the overall population of ganglion cells in the ganglion cell layer. The ipsilaterally projecting cells were found in loci which were approximately mirror-symmetric to the regions of maximal cell labeling in the contralateral retinas from the same animals. The ipsilateral population was always displaced toward the periphery of the retina with respect to the contralateral population, regardless of whether the contralateral locus was centered in the temporal, ventronasal, or dorsonasal sector of the retina. Because the ipsilaterally projecting ganglion cells form such a minor population, and because they exist in the monocular as well as the binocular parts of the retina, it seems likely that they may not play a significant role in visual function in the frog."	"Substance P- and opioid-immunoreactive structures in olfactory centers of the cat: adult pattern and postnatal development. Substance P (SP)-ir and opioid-ir structures were studied in the cat main olfactory bulb (MOB), accessory olfactory bulb (AOB), and olfactory peduncle. In the MOB, the opioid-ir and the majority of the SP-ir neurons belong to the granule cell type. SP-ir granule cells reside in the deeper granule cell layer, whereas opioid-ir granule cells reside in the superficial granule cell layer, internal plexiform, and mitral cell layer. Many granule cells are observed in the external plexiform and glomerular layer. Other granule cells were found in the bulbar/peduncular white matter, the taenia tecta, and the genu of the corpus callosum. A new substance P-ir cell type was identified in the glomerular layer. This cell type was also identified by using the technique of intracellular injection of Lucifer Yellow. The cell type corresponds neither to the external tufted type nor to the short axon cell types described so far. The AOB resembles the MOB with respect to large numbers of SP-ir and opioid-ir granule cells. In addition, a few opioid-ir neurons, probably superficial mitral cells, were found in the glomerular layer. The AOB is surrounded by islands of immunoreactive granule cells, which connect to the granule cell layer by extremely long processes. Opioid-ir and SP-ir beaded axons pass through the olfactory peduncle terminating on granule cells, and ascend as far as the glomerular layer. All subdivisions of the anterior olfactory nucleus (AON) contain immunoreactive terminal fields. Afferent fibers and terminal plexuses derive from a population of immunoreactive neurons located predominantly in the region of the septo-olfactory junction. They have large somata. Their axons form recurrent collaterals, some of which run rostrally in the peduncular white matter. Others ascend caudally towards the septal region. The fibers seem to remain ipsilaterally, since the olfactory limb of the anterior commissure and the commissure proper are devoid of SP-ir and opioid-ir fibers. During development SP and opioid immunoreactivity were found only in differentiated granule cells. The peptides were not detectable in migrating or immature granule cells, as identified in Golgi-impregnated material. The granule cell population largely develops during postnatal life. The number of opioid-ir granule cells increases slowly and continuously, reaching the adult level not before the sixth postnatal month. Strikingly, SP-ir granule cell number increases fast and reaches a transient peak during the second month. Thereafter it declines (40% decrease) to the adult density, which is similar to that of opioid-ir granule cells."	"Identification of cells in rat brain and peripheral tissues expressing mRNA for members of the nerve growth factor family. Cells expressing mRNA for hippocampus-derived neurotrophic factor (HDNF/NT-3) or brain-derived neurotrophic factor (BDNF) were identified by in situ hybridization. In the rat brain, HDNF mRNA was predominantly found in pyramidal neurons in CA1 and CA2 of the hippocampus. Lower levels of HDNF mRNA were found in granular neurons of the dentate gyrus and in neurons of the taenia tecta and induseum griseum. BDNF mRNA-expressing cells were more widely distributed in the rat brain, with high levels in neurons of CA2, CA3, and the hilar region of the dentate gyrus, in the external and internal pyramidal layers of the cerebral cortex, in the claustrum, and in one brainstem structure. Lower levels were seen in CA1 and in the granular layer of the hippocampus, in the taenia tecta, and in the mammillary complex. In peripheral tissues, HDNF mRNA was found in glomerular cells in the kidney, secretory cells in the male rat submandibular gland, and epithelial cells in secondary and tertiary follicles in the ovary. Cells expressing BDNF mRNA were found in the dorsal root ganglia, where neurons of various sizes were labeled."	"Differential extraction of axonally transported proteoglycans. Axonally transported proteoglycans were differentially solubilized by a sequence of extractions designed to infer their relationship to nerve terminal membranes. Groups of goldfish were injected unilaterally with 35SO4 and contralateral optic tecta containing axonally transported molecules were removed 16 h later. Tecta were homogenized in isotonic buffer and centrifuged at 100,000 g for 60 min to create a &quot;total supernatant&quot; fraction. Subsequent homogenizations followed by recentrifugation were with hypotonic buffer (lysis extract), 1 M NaCl, Triton X-100 or alternatively Triton-1 M NaCl. Populations of proteoglycans in each extract were isolated on DEAE ion exchange columns and evaluated for content of glycosaminoglycans (GAGs). Results show the distribution of transported proteoglycans to be 26.3% total soluble, 13.7% lysis extract, 13.8% NaCl extract, 12.2% Triton extract, and 46.2% Triton-NaCl extract. Proteoglycans from all fractions contained heparan sulfate as the predominant GAG, with lesser amounts of chondroitin (4 or 6) sulfate. The possible localizations of transported proteoglycans suggested by the extraction results are discussed."	"The differential influence of protein kinase inhibitors on retinal arbor morphology and eye-specific stripes in the frog retinotectal system. We investigated retinal axon morphology and eye-specific afferent termination zones in the optic tectum of three-eyed tadpoles that were chronically treated with protein kinase inhibitors. The kinase inhibitors sphingosine, H-7, and phorbol ester, which down-regulates protein kinase C with chronic exposure, were applied to the tecta in a slow release plastic, Elvax. In vivo protein phosphorylation assays in drug-treated tadpoles indicated that the treatments decreased 32P incorporation into some protein bands by as much as 60%. Although the drugs did not cause a desegregation of the eye-specific stripes, treated retinal axon arbors covered about half the area covered by untreated arbors or arbors treated with inactive analogs of the drugs. We conclude that eye-specific segregation can be maintained under conditions that markedly alter retinal ganglion cell axon arbor size and that significantly perturb protein phosphorylation. Furthermore, we conclude that the protein kinase(s) that we blocked with these treatments is involved in the growth of axon arbors."	"Ultrastructure of the crossed isthmotectal projection in Xenopus frogs. The nucleus isthmi (NI) of frogs is a relay for input from the eye to the ipsilateral tectum; each NI receives retinotopic input from one tectum and sends retinotopic output to both tecta. The crossed isthmotectal projection in Xenopus displays tremendous plasticity during development. Physiological and anatomical studies have suggested that the location at which a developing isthmotectal axon will terminate is determined by the correlation of its visually evoked activity with the activity of nearby retinotectal terminals. What structures could mediate such communication? We have examined quantitatively the ultrastructural characteristics of crossed isthmotectal axons and synapses in order to determine whether retinotectal axons communicate directly with isthmotectal axons via axo-axonic synapses or whether the communication is indirect, e.g., via common postsynaptic dendrites. Our results support the conclusion that isthmotectal axons interact with retinotectal axons indirectly and that tectal cell dendrites are the critical site of interaction."	"Nucleus isthmi: its contribution to tectal acetylcholinesterase and choline acetyltransferase in the frog Rana pipiens. The distribution of acetylcholinesterase and the activity of choline acetyltransferase was studied in the tecta of normal frogs and frogs without retinal and/or nucleus (n.) isthmi inputs. In normal animals acetylcholinesterase activity is found primarily in three bands in the outer layers of the tectum-lamina A, laminae C-F, and lamina G. After retinal and contralateral n. isthmi deafferentation three distinct bands of tectal acetylcholinesterase activity are still present. After bilateral n. isthmi deafferentation there is loss of activity in lamina G and reduced activity in lamina A. With retinal and ipsilateral n. isthmi deafferentation, activity is seen only in lamina A. With retinal and bilateral n. isthmi deafferentation there is virtually no acetylcholinesterase activity in the outer tectal layers. Following unilateral retinal deafferentation there is no statistically significant difference in choline acetyltransferase specific activity between intact and deafferented tectal lobes after two, four and nine weeks. With unilateral nucleus isthmi lesions and survival times of between 10 and 40 days, choline acetyltransferase specific activity in the tectal lobe ipsilateral to the ablation is approximately 38% of the specific activity of the contralateral lobe. With bilateral n. isthmi lesions there is a strong correlation between amount of n. isthmi ablated and reduction of choline acetyltransferase activity. In vitro tectal acetylcholine synthesis was also determined in animals with unilateral n. isthmi ablation. On average, tectal lobes ipsilateral to the ablated n. isthmi synthesize acetylcholine at a rate which is approximately 58% of that of contralateral tecta. Collectively, these results imply that n. isthmi is the sole cholinergic input to the frog optic tectum, with ipsilaterally projecting isthmotectal fibers accounting for the greater share."	"The directed growth of retinal axons towards surgically transposed tecta in Xenopus; an examination of homing behaviour by retinal ganglion cell axons. The growth of optic axons towards experimentally rotated tecta has been studied. In stage 24/25 embryos, a piece of the dorsal neural tube, containing the dorsal midbrain rudiment, was rotated through 180 degrees. At later stages of development, the pathways of growing optic axons were investigated by labelling with either horseradish peroxidase or fluorescent dye. It is shown that retinal ganglion cell axons followed well-defined pathways, in spite of the abnormal structure of the brain, and were able to locate displaced tecta. This directed outgrowth of retinal axons in the optic tracts appears to be related either to the tectum or to some other component included in the graft operations. In tadpoles in which the midbrain rudiment was removed, optic axons still followed the normal course of the optic tract. This observation argues against long-range target attraction as being essential in guiding growing retinal axons towards the tectum. An alternative axon guidance mechanism, selective fasciculation, is discussed as a possible alternative to explain the directed axon outgrowth which occurs in both the normal and in these experimentally manipulated tadpoles."	"The induction of an anomalous ipsilateral retinotectal projection in Xenopus laevis. The conditions necessary for extensive regeneration of fibres from one optic nerve to both tecta in Xenopus have been investigated. The effects of various types and positions of nerve lesion on the distribution of regenerated projections were examined by labelling the regenerated projections with either horseradish peroxidase or tritiated proline. The only types of nerve lesion which consistently gave rise to extensive regeneration to both the contralateral and the ipsilateral tectum were those close to the chiasma, liable to have caused damage to the nerve entry point. However, all other types of lesion studied (near the eye; near the skull; crush or cut) frequently led to regeneration of a very few fibres to the ipsilateral tectum. These fibres gained access to the ipsilateral tectum by various routes: in some cases via the optic tract; but more commonly either across the posterior commissure or by a complex pathway following the oculomotor nerve root. Over time periods of between one and seven months, the distribution of the regenerated fibres following each type of lesion showed little change. We conclude that the regeneration of bilateral retinotectal projections in Xenopus is caused by tissue damage to the region of the chiasma resulting in misrouting of fibres."	"Development of topographic connections between the isthmic nuclei and optic tecta in the frog Limnodynastes dorsalis. In the frog Limnodynastes dorsalis, the pattern of topographic connections between the isthmic nuclei and optic tecta was determined by anterograde and retrograde transport of horseradish peroxidase from localised tectal regions. In both larvae and adults, reciprocal mapping of the uncrossed isthmo-tectal and tecto-isthmal projections was evidenced by the juxtaposition of labelled tecto-isthmal terminations with labelled cells in the cortex and medulla of the ipsilateral isthmic nucleus. The crossed isthmo-tectal projection was revealed by labelled cells in the cortex and medulla of the nucleus contralateral to the injection. In adults, rostral tectal areas projected to rostral and ventral regions of the ipsilateral isthmic nucleus. Following more caudal tectal injections, labelled cells were found in progressively more dorsal locations within the nucleus. Labelled cells in the contralateral nucleus were found in the rim cortex abutting a neuropil and in medullary cells adjacent to this region. Connections between ventral isthmic regions and most rostral tectum and between dorsomedial nucleus and caudomedial tectum were similar in both nuclei. However, for isthmic areas projecting to rostromedial and mid-tectum, the location of labelled cells in the contralateral nucleus was inverted with respect to the ipsilateral nucleus. This inversion would allow both nuclei to project to visually corresponding regions of each tectum. During larval stages the basic adult topography was established despite the continued neurogenesis of both isthmic nuclei and optic tecta. In late larval stages a rim neuropil appeared adjacent to the cortical region in the isthmic nuclei where labelled cells of the crossed isthmotectal projection were found. Prior to this stage labelled cells abutted labelled medullary cells. The appearance of this neuropil was approximately temporally correlated with the onset of electrophysiologically detectable responses in the ipsilateral visuotectal projection. Formation of the rim neuropil may relate to maturation of the tecto-isthmo-tectal connections which underlie this visual projection."	"Malformations of the regenerating optic tectum of larvae of the Egyptian toad, Bufo regularis Reuss. Morphological and histological abnormalities were observed in the regenerating optic tecta of Bufo regularis larvae after partial excision of the left tectum and total excision of the right tectum. They were found in both the left and the right tectum. Invagination of the tectal tissue into the optic ventricle, masses of blood capillaries and gaps or cavities in the tectal tissue were observed. The size of the optic tecta was reduced and the shape and structure of the dorsal aspect of the midbrain were highly anomalous."	"Quantitative autoradiographic distribution of [125I]Bolton-Hunter neuropeptide Y receptor binding sites in rat brain. Comparison with [125I]peptide YY receptor sites. The autoradiographic distribution of [125I]Bolton-Hunter neuropeptide Y receptor binding sites was quantified in rat brain. The highest level of [125I]Bolton-Hunter neuropeptide Y binding sites was seen in the hippocampus (ventral stratum radiatum, CA3 subfield: 6029 +/- 250 fmol/g tissue). The distribution of these sites was clearly laminated, being particularly concentrated in the oriens layer (dorsal CA3 subfield: 2562 +/- 147 fmol/g tissue) and stratum radiatum (dorsal CA3 subfield: 2577 +/- 95 fmol/g tissue). Lower levels of sites were seen in the pyramidal cell layer (1708 +/- 105 fmol/g tissue) and the molecular layer (1155 +/- 116 fmol/g tissue). The cortical distribution of [125I]Bolton-Hunter neuropeptide Y receptor sites was also laminated, being particularly enriched in superficial laminae (occipital cortex, layers I-II, 4038 +/- 148 fmol/g tissue; layers III-IV, 1392 +/- 97 fmol/g tissue and layers V-VI, 1522 +/- 138 fmol/g tissue). Other areas containing high amounts of sites included the anterior olfactory nuclei (ventral part, 4935 +/- 119 fmol/g tissue; lateral part, 4530 +/- 149 fmol/g tissue; dorsal part, 3378 +/- 140 fmol/g tissue and medial part, 2601 +/- 150 fmol/g tissue); anteromedial (5168 +/- 211 fmol/g tissue), medial (4611 +/- 107 fmol/g tissue) and lateral posterior thalamic nuclei (4465 +/- 189 fmol/g tissue); medial mammillary nucleus (5555 +/- 241 fmol/g tissue); medial geniculate nucleus (4747 +/- 56 fmol/g tissue); claustrum (4123 +/- 235 fmol/g tissue); posteromedial cortical amygdaloid nucleus (3524 +/- 138 fmol/g tissue), tenia tecta (2540 +/- 195 fmol/g tissue); lateral septum (1785 +/- 90 fmol/g tissue); suprachiasmatic hypothalamic nucleus (1604 +/- 115 fmol/g tissue), and substantia nigra, pars compacta (1846 +/- 142 fmol/g tissue) and pars lateralis (1750 +/- 165 fmol/g tissue). Areas moderately enriched with [125I]Bolton-Hunter neuropeptide Y binding sites included the zonal layer of the superior colliculus (1347 +/- 71 fmol/g tissue); anterior pretectal nucleus (1172 +/- 113 fmol/g tissue); ventral tegmental area (1090 +/- 97 fmol/g tissue); periventricular fibre system (1026 +/- 48 fmol/g tissue); core of nucleus accumbens (948 +/- 29 fmol/g tissue) and area postrema (799 +/- 87 fmol/g tissue). These results are discussed with regard to some of the suggested biological effects of neuropeptide Y in the central nervous system such as effects on learning, locomotion and circadian rhythms. Moreover, we also compared the distribution of [125I]Bolton-Hunter neuropeptide Y receptor sites with that of [125I]peptide YY sites in rat brain. The resolution of the autoradiographic image is better with [125I]peptide YY most likely because of higher affinity and percentage of specific labelling.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Evidence for the stability of positional markers in the goldfish tectum. Positional markers in the tectum, which are thought to guide growing axons to their target sites, have been proposed to be induced by axons, to be only transiently associated with the tectal cells, and then lost after long-term denervation periods (Schmidt: J. Comp. Neurol. 177:279-300, '78). To further investigate this concept, retinal axons were induced to regenerate into ipsilateral tecta which had been deprived of their retinal afferents for shorter (0-4 months) and longer periods (4-8 months). The paths of HRP-labeled regenerating axons of known retinal origin were traced and used as an operational test to decide whether the axons might navigate under the influence of positional markers. Two different kinds of experiments were performed: 1. The axons from a subpopulation of all ganglion cells in the retina were labeled by applying a small crystal of HRP at defined retinal regions. Independent of the denervation period of the tectum, the labeled regenerating axons traveled in abnormal but nonrandom routes. In early regeneration stages, axons exhibited signs of exploratory growth. They extended branches equipped with growth cones and filopodia into various regions of the tectum. In late regeneration stages, the axons lost these branches, exhibited U-turns and bends, and ended in terminal arbors in the retinotopic target region. These findings suggest that the axons travel under the influence of tectal positional markers and that these markers are not transient. 2. Axons from a surgically created temporal hemiretina were labeled by application of HRP to the optic nerve to test whether the temporal axons might expand into the caudal tectum in long-term-denervated tecta. The HRP-labeled axons coursed over rostral and midtectal regions. Instead of invading the caudal tectum they bent and terminated in the rostral tectal half. These results add further support for the conclusion that the path of regenerating retinal axons is governed by long-lasting positional markers."	"Localization and Characterization of Insulin-Like Growth Factor-I Receptors in Rat Brain and Pituitary Gland Using in vitro Autoradiography and Computerized Densitometry* A Distinct Distribution from Insulin Receptors. Abstract In order to identify likely sites of action of insulin-like growth factor-I (IGF-I) in rat brain and pituitary gland, we have used the technique of in vitro autoradiography and computerized densitometry to map, characterize and quantify its receptors in coronal and sagittal sections. A discrete and characteristic distribution of IGF-I receptor binding was demonstrated, with specific binding representing 85% of total binding. Displacement and specificity competition curves in the olfactory bulb were typical for authentic IGF-I receptors and computer analysis indicated a single class of binding site with a dissociation constant (K(d)) of 13 nM for the choroid plexus and 5.1 nM for the olfactory cortex. IGF-I receptor density was very high in the choroid plexus in ail ventricles, but the binding in other circumventricular organs was variable, with high levels in the median eminence and the sub-fornical organ, and low levels in the organum vasculosum of the lamina terminalis. Highest binding was seen in the glomerular layer of the olfactory bulb and its associated regions the taenia tecta and anteromedial olfactory nucleus. The preoptic and septal regions showed moderate binding, while the hypothalamus, with the exception of the median eminence, showed low IGF-I binding. The pituitary gland showed very high binding density in both anterior and posterior lobes, similar to the median eminence. The thalamus had high IGF-I binding density, while it was low in basal ganglia. In the limbic system the hippocampal CA2, CAS, CA4 layers showed high binding, with little in CA1, while binding was high also in the adjacent amygdala. Binding was low in the mid and hindbrain, with the exception of the geniculate bodies, and the sensory nucleus of the trigeminal nerve. Binding was high in the primary olfactory and endopyriform cortex and in specific superficial layers. Cerebellar binding was also high in the molecular layer. Fibre layers showed no binding. Comparison with insulin receptors revealed common distribution in the choroid plexus, paraventricular nucleus, cerebellum, entorhinal cortex and amygdala, with receptor density three- to five-fold higher for IGF-I than for insulin. In contrast, in the hippocampus, insulin binding was high in the CA1 field, and low in CA2, CA3, CA4 while for IGF-I binding the converse was seen. The arcuate nucleus showed prominent insulin labelling and minimal IGF-I binding, while the median eminence showed low insulin and high IGF-I binding. The hypothalamus was more widely labelled with insulin, while in the thalamus the converse was true. Olfactory bulb laminae were labelled with differing intensity by insulin and IGF-I. In common with insulin receptor distribution was the high density of IGF-I receptors over areas of extensive dendritic arborizations which receive rich synaptic inputs, in the cerebellum, hippocampus and olfactory bulb. We conclude that IGF-I receptors are widespread throughout rat brain and pituitary gland, with concentration in regions concerned with olfaction, autonomie and sensory processing, as well as in regulation of growth hormone release, via feedback at the median eminence and pituitary gland. Many of these regions have in common high rates of metabolic and synthetic activity, which may be mediated by IGF-I and its receptors."	"Neuronal localization of cholecystokinin mRNA in the rat brain by using in situ hybridization histochemistry. The distribution of cholecystokinin (CCK) mRNA in the rat brain was determined by means of in situ hybridization histochemistry. Our results demonstrate a widespread distribution of neurons containing CCK mRNA throughout the rat brain. Hybridization-positive neurons were distributed throughout the neocortex, olfactory bulb, claustrum, amygdala, the dentate gyrus and hippocampus proper, and several subnuclei of the thalamus and the hypothalamus. The most abundant and most heavily labeled neurons were found in the endopiriform/piriform cortex, tenia tecta, and the ventral tegmental area. The distribution of neurons positive for CCK mRNA paralleled that of CCK-like immunoreactive neurons. These results detail the distribution of CCK mRNA and clearly identify the existence of CCK-synthesizing neurons in regions such as the paraventricular and supraoptic nuclei of the hypothalamus, where the presence of CCK cell bodies was previously uncertain."	"A revision of the western Palaearctic species of Urophora Robineau-Desvoidy (Diptera: Tephritidae). Abstract A key is provided to twenty-four western Palaearctic species of Urophora Robineau-Desvoidy. The hosts of twenty-three species which attack Asteraceae are listed, including those being used or investigated as possible weed biocontrol agents. The species are divided into four species groups and the differing host relationships and types of galls induced by these groups are discussed. U.lopholomae sp.n. and U.affinis ssp. calcitrapae ssp.n., associated with Centaurea (Lopholoma) spp. and C. (Calcitrapa) spp. respectively, are described. U. algerica (Hering) and U.sjumorum (Rohdendorf) are both treated as subspecies of U. quadrifasciata (Meigen). U.pontica is given full specific status and U.hispanica is removed from synonymy. The following new synonymies are made (junior synonyms in parentheses): U. angustifascia (Hering) (=Euribia phaeocera Hering); U. cardui (Linnaeus) (=U. reaumurii Robineau-Desvoidy, lectotype designated); U. jaceana (Hering) (=E.conyzae Hering); U.maura (Frauenfeld) (=E. tecta Hering); U. mauritanica Macquart (=U. lejura Rondani, Trypeta macrura Loew); U.solstitialis (Linnaeus) (=E.sonderupi Hering, U. veruata Rondani); U.stylata (Fabricius) (=E.pia Hering, U. vulcaanica Rondani); U. terebrans (Loew) (=E. approximata Hering, T. eriolepidis Loew, E. manni Hendel). The possibility that U. quadrifasciata is a species complex is discussed; it is also suggested that U.affinis and U.jaceana represent the morphological extremes of a complex. The misuse of the name Musca stylata Fabricius in the genus Myopites Blot is noted."	"Ethyl-oxide effects on a newly formed blood-brain barrier. The morphofunctional effects of ethyl-oxide, utilized as anaesthetic, on the optic tectum blood-brain barrier were investigated in hatching chick embryos (21st incubation day) and young chickens in which the barrier to the marker of vascular permeability horseradish peroxidase is complete after the 18th incubation day. Results indicate that ethyl-oxide administration produces horseradish peroxidase extravasation by opening the tight interendothelial junctions. The escape rate of the marker is higher in the tecta of hatching embryos than in those of chickens and in both horseradish peroxidase extravascular diffusion is more frequent at the level of vessel bifurcation than along the branchless vessel tracts."	"Connections of the olfactory bulb and nucleus olfactorius anterior in the hedgehog (Erinaceus europaeus): fluorescent tracers and HRP study. The projections of the main olfactory bulbs (MOBs) and the dorsal part of the anterior olfactory nucleus (NOA) in the hedgehog (Erinaceus europaeus) have been studied by fluorescent tracers and the horseradish peroxidase method (HRP), respectively, to reveal the pattern of labeling from these structures. After different dye injections in both MOBs, labeled cells were present in the following structures: tenia tecta, vertical limb of the diagonal band of Broca, and medial septal nucleus in the ipsilateral injection site; and the NOA, piriform cortex, nucleus of the lateral olfactory tract, horizontal limb of the diagonal band of Broca, posterolateral cortical amygdaloid nucleus, anterior amygdaloid area, and dorsal raphe nucleus in both hemispheres. Structures showing double-labeled cells were the NOA, horizontal limb of the diagonal band of Broca, nucleus of the lateral olfactory tract, anterior amygdaloid area, and posterolateral cortical amygdaloid nucleus. After HRP injections in the dorsal part of the NOA, labeled cells were distributed in the NOA, nucleus of the lateral olfactory tract, posterolateral cortical amygdaloid nucleus, piriform cortex, horizontal and vertical limbs of the diagonal band of Broca, mitral cell layer of the MOB, tenia tecta, anterior amygdaloid area, and the contralateral NOA. We suggest that the contralateral projection nuclei to the MOB of the hedgehog, unusual in other mammals, and the large number of cells with axonal collaterals projecting to both hemispheres, may be a strategy in these animals to bilaterally integrate brain functions at the expense of its reduced corpus callosum."	"Changing patterns of binocular visual connections in the intertectal system during development of the frog, Xenopus laevis. I. Normal maturational changes in response to changing binocular geometry. During metamorphic and post-metamorphic life in the frog. Xenopus laevis, growth-related changes in skull shape produce radical alterations in the spatial relationship between the two eyes. These changes in binocular visual geometry were measured using optical techniques. Between the onset of metamorphic climax at stage 60 and adulthood (2 or more years post-metamorphosis) each eye migrates nasally by 55 degrees and dorsally by 50 degrees with respect to the major body axes of the animal. As a result the nasotemporal extent of the binocular visual field increases from 30 degrees to 162 degrees between these ages. Electrophysiological methods were used to determine changes in the neural representation of the binocular visual field at the paired midbrain optic tecta and in the tectal projection of pairs of corresponding retinal loci at various developmental points between these ages. The proportion of each tectal surface devoted to the representation of the binocular visual field increases from 11% at stage 60 to 77% at adulthood. Retinal correspondence, and hence the tectal projection of corresponding retinal loci, undergoes radical alteration during this period. In normal adults an intertectal system of connections selectively links the tectal projection of corresponding retinal loci and thus provides a neuronal mechanism for integrating binocular visual information in the optic tecta. Electrophysiological methods were used to determine how the intertectal system accommodates the developmental challenge posed by the enlarging binocular visual field and changing retinal correspondence. Between stage 60 and adulthood the ipsilateral visuotectal projection which is the product of the intertectal system, increases in size as the binocular visual field and its tectal representation enlarges. Moreover, throughout this period, it provides a mechanism for integrating binocular visual information in the optic tecta by maintaining its spatial registration with the contralateral visuotectal projection from the other eye. Analysis of the pattern of functional intertectal connections reveals that during the course of normal maturation this system undergoes continuous processes of expansion and of orderly and major remodelling."	"Fused binocular vision is required for development of proper eye alignment in barn owls. The eyes of adult barn owls (Tyto alba) are virtually fixed in the head in positions that are highly consistent from one individual to the next. However, early in development the eyes are exodeviated; the eyes achieve their adult positions during the owl's second month of life. Disruption of binocular vision in baby owls leads to permanent, highly abnormal eye positions and interocular alignment. Of three owls raised with both eyelids sutured closed, two developed exotropic strabismus and one developed esotropic strabismus. Two owls reared with monocular vision developed esotropic strabismus, whereas three owls reared with fused, but optically deviated binocular vision developed normal eye positions. Thus, the alignment of the eyes in adults results from an active process that depends on fused binocular vision during early life. Extracellular microelectrode recordings from the optic tecta of strabismic owls reveal that many units retain binocular inputs from corresponding points of the two eyes: the left-eye and right-eye receptive fields of individual units are misaligned by an amount predicted by the direction and magnitude of the strabismus. These results indicate that an innately determined pattern of connections in the brain anticipates the eye positions necessary to achieve binocular fusion. The hypothesis is put forth that the powerful activation of such binocular neurons by strong, synchronous inputs from the two eyes is the signal required by the optimotor system that proper eye alignment has been attained."	"Control of tectal cell number during larval development in Rana pipiens. Cell production and cell deaths were determined in larval Rana pipiens both in control tecta and in tecta following unilateral eyeball removal in embryos and larvae. Such enucleations produce significantly reduced rates of cell division in the contralateral tecta for virtually the entire larval period (confirming studies with enucleation almost exclusively performed in embryos--Kollros: J. Exp. Zool. 123:153-187, '53, and J. Comp. Neurol. 205:171-178, '82). Significant numbers of cell deaths in all nonependymal tectal cell layers were also observed. Control cell division rates peak at stage X, while cell death peaks are reached in stages XIII-XX. Overall, about 10(6) nonependymal cells are produced in control tecta, and about 350,000 of them die by the end of metamorphosis. Control of cell numbers following enucleation is shown to depend mainly on reductions in cell division rates when the operation occurs early in development and mainly on increases in cell death rates when the operation occurs late in larval life. Such increases in death rates are invariably present within 1 day of the operation whereas the reduced division rates ordinarily require several more days to be seen. The modified rates, both of cell divisions and cell death, are limited to tectal areas to which optic nerve fibers have already extended. Maps of the positions of tectal cell divisions in many larval stages provide the basis for modifying the current dogma that tectal formation occurs as a series of newly formed mediocaudal wedges pushing previously produced wedges rostrolaterad. All such &quot;old&quot; wedges receive substantial cell additions for many stages, with the rate of addition decreasing rostrad earlier than caudad."	"Development of the optic tecta in the frog Limnodynastes dorsalis. In Limnodynastes dorsalis neurogenesis of the optic tecta and the pattern of cellular lamination was determined by [3H]thymidine autoradiography. There was a rostral to caudal gradient of cell proliferation with peak neurogenesis in mid-larval life and by metamorphosis generation was complete. The cellular layers formed as each portion of tectum was generated. As evidenced by comparison of animals killed within 24 h of [3H]thymidine injection and those injected as larvae and killed at more mature stages, cells were generated in the ependymal and peri-ependymal layers and during development they migrated to form the peripheral layers. During late larval life, the soma diameter of cells in the most superficial layers, and the width of these layers increased. Tectal innervation during development was assessed by tracing axonal trajectories with horseradish peroxidase. Innervation recapitulated tectal growth with more caudal areas being progressively encompassed by primary optic fibres. By metamorphosis, the entire tectum was innervated. These results indicate that tectal generation, cellular lamination and innervation by optic fibres have a rostral to caudal gradient of development which is complete by metamorphic climax. Therefore to accommodate postmetamorphic retinal growth the developing retinotectal projection must remain labile beyond metamorphosis."	"Topography of the oxytocin receptor system in rat brain: an autoradiographical study with a selective radioiodinated oxytocin antagonist. A new, highly selective radio-iodinated oxytocin receptor antagonist [( 1-(beta-mercapto-beta, beta-cyclopentamethylenepropionic acid, 2-O-methyltyrosine, 4-threonine, 8-ornithine, 9-tyrosylamide]-vasotocin) was used to identify and quantitate specific binding sites for the neurohypophyseal hormone oxytocin with in vitro incubation of rat brain sections and autoradiography. Exclusively oxytocin binding sites were detected in view of the high affinity of the [125I]-labelled oxytocin antagonist for oxytocin binding sites and the negligible affinity for the vasopressin liver (V1) and kidney (V2) receptor types. The putative oxytocin receptors were abundantly present in several brain regions, where previously discrimination between oxytocin and vasopressin binding was difficult, i.e. the olfactory nucleus, the islands of Calleja, the ventromedial nucleus of the hypothalamus, the central amygdaloid nucleus and the ventral subiculum of the hippocampus. In addition oxytocin receptors were demonstrated in other areas, such as the taenia tecta, dorsolateral caudate putamen, ventral pallidum, accumbens, lateral septum, bed nucleus of the stria terminalis, thalamic paraventricular nucleus, lateral, basolateral and medial amygdala, the dorsal subiculum, perirhinal cortex and the amygdaloid-hippocampal area. The high affinity and the low detection threshold of this [125I]-labelled oxytocin antagonist permitted identification of oxytocin receptors in new regions such as the ventral part of the lateral septum, medial septum, dorsal motor nucleus of the vagus nerve and the olive nuclei in the brain stem."	"Cultured fetal tectal tissue grafted to the midbrain of newborn rats: morphology of grafts and innervation by host retinal and cortical axons. It has been shown previously that tectal tissue obtained from young embryos can be successfully transplanted to the neonatal rat brain. In the present study, tecta from E15 rat embryos were maintained as free-floating explants for 3-14 days in vitro (DIV) before being transplanted to the midbrain of newborn rats. We wished to determine how explant culture affected (i) graft survival, (ii) the subsequent morphological and histochemical development of tectal grafts and (iii) the specificity with which host retinal and cortical axons grew into and innervated the graft neuropil. Grafts were examined 6-40 weeks posttransplantation. Host retinal input was assessed by injecting the host eyes with either [3H]proline, horseradish peroxidase (HRP) or wheat-germ agglutinin conjugated HRP. The host cortical projection was examined using anterograde degeneration techniques. Frozen tissue sections were also stained for Nissl, neurofibrils or reacted for acetylcholinesterase (AChE). All 3 DIV and 7 DIV explants survived transplantation and many grew considerably in size within the host brain. 14 DIV grafts were smaller and were found in only 50% of host brains. The cellular organization, fibre architecture and pattern of AChE staining in cultured grafts was similar to that found in non-cultured tectal transplants. Furthermore, host retina and cortex projected into the grafts in a manner similar to their innervation of non-cultured tectal tissue.(ABSTRACT TRUNCATED AT 250 WORDS)"	"Relationships between segregated afferents and postsynaptic neurones in the optic tectum of three-eyed frogs. In 3-eyed frogs, afferents from 2 eyes converge on an optic tectum that normally receives input from only 1 eye. This produces an interdigitating series of stripes, resembling the ocular dominance columns in cats and monkeys. The consequences of this induced striping on the behavior of tectal dendrites was investigated in an in vitro preparation of the tectum. Stripes were labeled by anterograde transport of a fluorescent dye (rhodamine) and postsynaptic tectal cells labeled by intracellular injections of Lucifer yellow. The same types of cells were present in both normal and striped tecta, but dendritic arbors were altered in 2 ways. In normal tecta, dendrites were most frequently biased in a rostral direction. In striped tecta, dendrites were more frequently unbiased: fewer arbors had a strong rostral bias. The second effect of stripes was on the behaviors of individual dendrites of certain cell types. Some cells, primarily those with small, highly branched arbors, had dendrites that abruptly terminated at the borders between stripes. Other cells, with larger arbors, maintained &quot;clumps&quot; of dendrites in both eye's stripes. While these cells had portions of their dendritic arbor in more than one stripe, each individual dendrite was restricted to a single stripe. However, the processes of many cells, especially those with extensive, medial-laterally oriented dendrites, did not respect stripe boundaries in any obvious fashion. At the border between 2 stripes, there is an abrupt discontinuity in the patterns of activity in afferent axons. The dendritic alterations seen in striped tecta suggest that correlated activity can, in some cells, modulate the spatial arrangement of dendrites, such that an individual dendrite preferentially arborizes within such areas, but not between them. These cells as a whole can accommodate uncorrelated inputs, if these are segregated onto separate dendrites. This implies that local interactions between presynaptic terminals and postsynaptic dendrites, rather than action potentials in the postsynaptic cells, may furnish important signals for the modulation of dendritic arbor shape."	"Optic synapse number but not density is constrained during regeneration onto surgically halved tectum in goldfish: HRP-EM evidence that optic fibers compete for fixed numbers of postsynaptic sites on the tectum. The number of optic synapses in the half tectum of goldfish was counted by using an improved HRP-labeling protocol and a columnar sampling method that spanned the entire optic innervation layer, S-SO-SFGS. It was previously found by using this procedure in intact tectum that the normal number of optic synapses was regenerated by 30 days and maintained thereafter even in the absence of impulse activity. This suggested that the number of synapses in this system was intrinsically fixed. In order to examine whether this limit was imposed by optic fibers or by target cells, optic synapses were counted in surgically halved tecta which received compressed optic projections consisting of regenerating optic fibers from the entire retina. We reasoned that if synapse number is a function of the number of afferents, then there should be twice the normal number of optic synapses per column; on the other hand, if their number is fixed by target, then their number per column should be normal. We found that the number of optic (labeled) synapses was normal in sample columns from fish at 70 days and 160 days after optic nerve crush. Thus, retinal ganglion cells, on average, formed half as many synapses on the half tectum compared to intact tectum, indicating the number of optic synapses was limited by the tectum. The number of nonoptic (unlabeled) synapses was also found to be normal. By contrast, the S-SO-SFGS was found to be 88-103% thicker compared to normal fish, apparently because of a 20-fold increase in the number of optic fibers. As a result, the density of synapses was about half normal in half tecta, and so, in contrast to synapse number, synaptic density is not constrained during regeneration. We infer from these data that optic fibers compete for limited numbers of postsynaptic sites during regeneration and suggest that this competition promotes neural map refinement and the various plasticities described for this projection."	"Association of axonally transported heparan sulfate with isolated synaptic plasma membrane. Studies on isolated synaptic plasma membranes (SPM) have detected little if any heparan sulfate or other glycosaminoglycans (GAGs), while more recent studies employing proteoglycan antibodies have localized heparan sulfate proteoglycan in presynaptic plasma membrane of intact tissue. To further address the issue of proteoglycans in synaptic plasma membrane, we have investigated the possible presence of axonally transported GAGs in SPM isolated from the goldfish optic tectum. SPMs isolated from tecta following rapid axonal transport of 35SO4 labeled molecules down the optic nerve, showed specific radioactivity approximately two-fold higher than the starting homogenate. Treatment of the transport labeled SPM with the enzyme heparitinase liberated 21% of the radioactivity, indicating the presence of a significant fraction of transported label in heparan sulfate. In a separate series of experiments a GAG fraction was isolated from transport labeled SPM and was found to consist of heparan sulfate containing 28% of transported radioactivity. Chondroitin (4 or 6) sulfate, which undergoes axonal transport in the goldfish optic system, was not found associated with SPM. Taken together the results support immunological evidence for the presence of heparan sulfate proteoglycans in presynaptic plasma membrane."	"A longitudinal study of the effects of retinal ablation on the organization of the retinal target lamina of the optic tectum in the teleost, Rutilus rutilus. The optic tecta of 55 Rutilus rutilus were examined at intervals varying from 2 days to 4 years after unilateral retinal ablation. Qualitative ultrastructural examination of the retinal target lamina of the optic tectum (stratum fibrosum et griseum superficiale, SFGS) revealed that an initial period of degeneration and glial reaction, each of which could take one of a variety of forms and which lasted for 1-3 months after ablation, was followed by the temporary formation of heterologous synapses which persisted for a further 1-12 months. This in turn was followed by the degeneration of these synapses during the second year after ablation. Quantitative analysis at the level of the light microscope revealed a shrinkage of the SFGS throughout the level of the light microscope revealed a shrinkage of the SFGS throughout the first 14 postoperative months with no further reduction taking place thereafter. Analysis at the ultrastructural level revealed that this shrinkage was due to the disappearance, and not to the reduction in size, of pre- and postsynaptic profiles accompanied by glial reaction. No signs of collateral sprouting were seen throughout the survival period. Thus, partial deafferentation of the SFGS leads in the long run to a marked impoverishment of its neuronal network, without any apparent compensation."	"Antibodies to ependymin block the sharpening of the regenerating retinotectal projection in goldfish. The regenerating optic nerve of goldfish first reestablishes a rough retinotopic map on the tectum, then goes through an activity dependent refinement that appears to involve the elimination of inappropriate branches from early regenerated arbors. Retinotopically appropriate branches and synapses may be stabilized because the normally correlated firing of neighboring ganglion cells could cause summation of their postsynaptic responses, making them more effective. Thus, refinement of the map may be similar in several ways to associative learning. In this study, we therefore tested whether ependymin, a major protein component of the extracellular fluid that has been implicated in synaptic changes thought to be associated with learning a simple task in goldfish, may also be involved in refinement of the retinotopic map. Goldfish that had undergone unilateral optic nerve crush received intraventricular infusion of antiependymin IgG or of control IgG's beginning at 21 days postcrush. Tectal recordings from these fish at 39-56 days postcrush showed that the projection had failed to sharpen, much as in the fish with activity blocked or synchronized; the average size of the multiunit receptive fields was 31 degrees vs 11 degrees normally. The field potentials elicited from these tecta by optic nerve shock were not significantly smaller than in controls, suggesting normal levels of synaptogenesis. Control projections, identically treated but infused with either unrelated IgG or Ringer's alone regenerated normally, giving multiunit receptive fields of 12 degrees. Intact (non-regenerating) projections of the experimental fish were not rendered abnormal by the IgG treatment. Histology showed the retinas and tecta of the infused fish to be normal in appearance. The results show a specific block of sharpening by antiependymin IgG. The ependymal glia of the tectum stain positively for ependymin in normal fish, particularly the cell bodies in the ependymal layer. The tectum, particularly the ependymal layer, stains more intensely during regeneration, which appears to trigger increased synthesis of ependymins in the ependymal glia. This increase and the block of sharpening by specific antibodies to ependymin suggest a possible role for ependymin in activity dependent synaptic stabilization, possibly through its polymerization when calcium is focally depleted at active synapses."	"Connections between the nucleus isthmi and the tectum in larval and post-metamorphic axolotls. The nucleus isthmi (NI) is the primary relay for the frog's ipsilateral visuotectal projection. Using electrophysiological methods, ipsilateral visuotectal activity has been recorded in thyroxine-treated, postmetamorphic axolotls but not in larval axolotls. In order to determine whether changes in isthmotectal projections are responsible for this change in electrophysiological responsiveness, we have investigated the connections between the tectum and the NI using horseradish peroxidase. Our results indicate that the axolotl's isthmotectal pathways are strikingly similar to those of the frog NI, and that the NI sends bilateral projections to the tecta in both larval and thyroxine-treated, postmetamorphic axolotls. Thus, the anatomical connections underlying the ipsilateral visuotectal projection are present during larval stages, despite the lack of electrophysiological evidence for the larval ipsilateral visuotectal projection. We hypothesize that thyroxine-induced metamorphosis produces changes in the terminal arborizations of the crossed isthmotectal projection which allow them to be detected by presynaptic electrophysiological techniques."	"The ultrastructural organization of the isthmic nucleus in Xenopus. The isthmic nucleus (IN) of the frog brain forms a linkage, relaying visual information from one tectum to the other. It receives afferent input from the tectum of the same side and projects bilaterally to both tecta. The ultrastructural features of the tecto-isthmic synaptic connections were studied in young postmetamorphic Xenopus frogs. Most synaptic profiles in the isthmic nucleus have spheroidal vesicles and an asymmetric zone of apposition. Frequently, synaptic glomeruli consisting of up to 8 terminal boutons surrounding a shaft dendrite were observed. The synaptic density in the rostral IN was slightly higher than in the middle or caudal portions. Partial deafferentation by transection of the tecto-isthmic pathway or total deafferentation by removal of the tectum was followed by a widespread degeneration of terminals in the ipsilateral IN. In the former case, the density of synapses in the IN decreased initially by about 64%, and then increased by 30 days after operation to about 50% of the normal synaptic density. After tectal removal, all the terminal boutons in the isthmic neuropil degenerated by 3 days after operation. These studies, along with recent findings, indicate that most, if not all, of the afferent fibres to IN are of tectal origin."	"The effects of tectal lesion on the survival of isthmic neurones in Xenopus. The isthmic nucleus (IN) is a visual relay centre of the frog brain. It receives afferent projection from the optic tectum of the same side and projects bilaterally to both tecta. In young postmetamorphic Xenopus frogs, the survival of neurones in the IN on both sides was studied following the complete removal of the right tectum. In 6- to 8-week-old frogs, the right tectum was surgically removed and the operated animals allowed to survive for 1 to 13 weeks after operation. In selected animals, 3 days before the intended sacrifice, the postoptic commissure was transected and the cut isthmotectal fibres filled with horseradish peroxidase (HRP). In serial paraffin sections of the midbrain, the numbers of surviving and dying (pyknotic) neurones in the left and right IN were counted. The soma size of viable isthmic neurones and the volume of both IN were measured. Pyknotic neurones were seen between 1 and 6 weeks after operation in both the left and right IN, although the rate of cell loss was much greater in the latter. Virtually all the neurones of the right IN degenerated by 6 weeks after tectal ablation. In contrast, approximately 60% of neurones of the left IN survived. HRP histochemistry showed labelled isthmic neurones both in the left and right IN up to 3 weeks after operation. Thereafter, HRP-labelled neurones appeared only in the left IN. These observations indicate that the removal of the natural target of isthmic neurones brings about severe neurone death.(ABSTRACT TRUNCATED AT 250 WORDS)"	"Intravitreal kainic acid severely reduces the size of the developing optic tectum in newly hatched chickens. Following a single intravitreal injection of 200 nmol of kainic acid (KA) to newly hatched chickens, there are acute and long-term effects on retinal ganglion cells in the chicken retina. Thirty min after injection, most ganglion cells showed cytoplasmic vacuolization. However, 14 days later, most ganglion cell soma appeared normal. Almost 60% of the cells in the ganglion cell layer (GCL) were lost, suggesting that displaced amacrine cells and not more than 40% of the ganglion cells had been eliminated. Following intravitreal injection of wheat germ agglutinin conjugated to horseradish peroxidase 14 days after the KA lesion, the amount of HRP reaction product was reduced in all retinorecipient layers, especially layers IIc and IId, of the tectum contralateral to the KA-treated eye. Fourteen days after the injection of kainic acid, during which the control tecta grow appreciably, all the superficial layers of the tectum contralateral to the kainic acid-lesioned eye, especially layers IIc and IId, were smaller than in controls, and did not differ in size from those seen in tecta contralateral to cut optic nerves. It is not clear whether this is a result of a developmental failure, or a shrinkage, or a combination of these factors. These results suggest that subtypes of ganglion cells may have a disproportionate influence in the maintenance of the cytoarchitectural integrity in the optic tectum. Alternatively the removal of the OFF-bipolar cells and amacrine cells presynaptic to ganglion cells may decrease their metabolism, and restrict the supply of trophic influences to the developing tectal cells."	"An L1-like molecule, the 8D9 antigen, is a potent substrate for neurite extension. The 8D9 antigen, a cell surface protein isolated from chicken brain that is related to the L1 class of cell adhesion molecules, is shown to contain an activity that promotes the attachment of neurons and the outgrowth of neurites from chicken tecta and mouse cerebellum. When purified 8D9 antigen is attached to a nitrocellulose-coated substrate, neurons rapidly attach and extend unfasciculated neurites. Little or no attachment of astroglia, oligodendroglia, and fibroblast-like cells to the 8D9 antigen is observed. We propose that a function of the 8D9 antigen is that of a neurite extension-promoting substrate in axon fascicles and in regeneration of peripheral nerves."	"Development of adenosine-dependent cyclic AMP accumulation in the avian optic tectum. The present work shows the existence of adenosine-dependent cyclic adenosine monophosphate (AMP) accumulation in the chick optic tectum. When tecta from 18-day-old embryos were incubated with the phosphodiesterase inhibitor IBMX and RO 20-1724, the cyclic AMP level increased from 39.2 to 73.3 and 285.5 pmol/mg protein, respectively. The high level obtained with RO 20-1724 could be inhibited by increasing concentrations of IBMX or by adenosine deaminase, but not by dipyridamole. 2-Chloroadenosine promoted a dose-dependent cyclic AMP accumulation in tecta incubated with RO 20-1724 and adenosine deaminase. This effect was blocked by IBMX and varied substantially during the development of the tissue. The degree of stimulation increased after day 11 of incubation, attaining maximal levels on day 14. The effect of 2-chloroadenosine remained constant until day 18, a period when both the protein content and the basal cyclic AMP levels are increasing in the developing tectum. The cyclic AMP increase elicited by 2-chloroadenosine was greatly reduced in tecta from 20-day-old embryos and 2-day-old chicks. The putative transmitters glutamate and glycine and the neurotransmitter analogs isoproterenol and carbachol had no stimulatory effect on the cyclic AMP accumulation of tecta from 10- and 17-day-old embryos."	"Recycling of plasmalemma in chick tectal growth cones. Growth cones from freeze-substituted intact chick optic tectum were analyzed in serial reconstructions of thin-section electron micrographs in order to determine which internal organelles might contribute membrane for plasmalemmal expansion. These growth cones contain numerous stacked and single lumenless membrane-limited disks; the stacks are arrays of single disks interconnected, and possibly organized, by intervening electron-dense cross-links. The single and stacked disks together account for 80% of the total intracellular membrane in the growth cones. Single disks frequently lie close to and occasionally contact the filopodial plasmalemma; regularly spaced electron-dense cross-links also occur at these juxtapositions between single disks and the plasmalemma. Some of the juxtaposed disk membranes contact the growth cone plasmalemma, and images of some of these contacts appear to indicate fusion of the disk membrane with the plasmalemma. When excised optic tecta are exposed to cationized ferritin for various times, ferritin micelles appear sequentially in coated pits, coated vesicles, smooth vesicles, vacuoles, and then in stacked and single disks, including some of those contacting the plasmalemma. Because the cytoplasmic disks filled only at the longest times after exposure to ferritin, the membrane continuities between the disks and the plasmalemma are thought to be indicative of exocytosis rather than endocytosis. We propose, therefore, that components of the plasma membrane are recycled through the stacks of lumenless disks in the chick tectal growth cones; the disks therefore represent a pool of internal membrane waiting to be added to the growth cone plasmalemma that could be used for filopodial extension or neuritic extension."	"N-methyl-D-aspartate receptor antagonist desegregates eye-specific stripes. The optic tecta of surgically produced three-eyed tadpoles were chronically exposed to the N-methyl-D-aspartate (NMDA) receptor antagonist aminophosphonovaleric acid (APV), or to NMDA itself, to assess the influence of NMDA receptor/channels on the eye-specific segregation of retinal ganglion cell (RGC) terminals that occurs whenever two retinas innervate one tectal lobe. Exposure of the tectum to the active isomer of APV produces desegregation of the RGC terminals without blocking electrical activity in the afferents or altering their terminal arbor morphology. Exposure to the inactive isomer of APV causes no perturbation of the normal stripe pattern. APV-induced desegregation is completely reversible within 2 weeks of removal of the APV. In addition, exposure of the optic tectum to NMDA results in stripes with sharper borders and fewer forks and fusions than untreated animals. These results suggest that the NMDA receptor/channel plays a role in eye-specific segregation in the three-eyed tadpole."	"The avian pecten provides a potent substrate for growth and development of dissociated embryonic neural implants. A cell suspension of the optic tecta of 3-day-old chick embryos was injected into the vitreal chamber of 2-day-old posthatch chicks. After a 14-21-day survival period, examination of eyeballs showed that all implants survived and, in 50% of cases, were attached to the pecten. The implants had proliferated and showed a laminated pattern of organization, with small cells in the superficial regions and large cells in the deep regions of the implant. The implants also contained a well-developed neuropil with mature synapses. The host retina was not affected by the presence of the implant. We suggest that the avian pecten represents a highly amenable structure for studies involving the response(s) by damaged retinae to neural implants."	"A projection from the mesencephalic tegmentum to the nucleus isthmi in the frogs, Rana pipiens and Acris crepitans. The nucleus isthmi is a prominent part of the frog's visual system. Each nucleus isthmi receives input from the ipsilateral tectum and sends output to both tecta. Until now, no non-tectal inputs to the nucleus isthmi of amphibians have been demonstrated. Anterograde and retrograde tracing with horseradish peroxidase in Rana pipiens and Acris crepitans now reveal that a diffuse group of cells in the mesencephalic tegmentum projects to the caudal region of the contralateral nucleus isthmi. These cells are primarily within the nucleus anterodorsalis tegmenti. This same group of tegmental cells may also project to the caudal region of the ipsilateral nucleus isthmi. A similar investigation of the brain of another frog, Xenopus laevis, has not revealed any evidence of this tegmento-isthmic projection."	"Adenosine deaminase-containing neurons in the olfactory system of the rat during development. The development, distribution and olfactory bulb projections of neurons immunoreactive for the enzyme adenosine deaminase (ADA) were studied in olfactory systems of embryonic, early postnatal and young adult rats. On embryonic day (E) 12, ADA-immunoreactivity first appeared in the placode of the olfactory epithelium. On E15, ADA-immunoreactive olfactory receptor and precursor cells gave rise to immunostained axons projecting to the olfactory bulb. Numerous immunostained glomeruli were observed on postnatal day (P) 1. After P25, immunoreactivity within receptor cells and glomeruli decreased. In prenatal and early postnatal animals, ADA-immunoreactive neurons were observed in the anterior olfactory nucleus (AON), dorsal transition area, ventral taenia tecta, primary olfactory cortex (POC), entorhinal cortex and ventral agranular insular cortex. After P25 to P30, these neurons lost their immunoreactivity, except those in the medial AON where light immunostaining persisted. In contrast, ADA-immunostaining of neurons in the horizontal limb of the diagonal band (HDB) and olfactory tubercle increased throughout development. About 70 to 75% of the ADA-immunoreactive neurons in the AON, a small number of those in the POC and about 75% of the ADA-immunoreactive non-cholinergic neurons in the HDB were found to project to the olfactory bulb. The functions of ADA in the olfactory system may be related to the precocious development of, and/or purinergic neurotransmission within, this system."	"Localization of preproenkephalin mRNA in the rat brain and spinal cord by in situ hybridization. To determine the localization in rat brain and spinal cord of individual neurons that contain the messenger RNA coding for the opioid peptide precursor preproenkephalin, we performed in situ hybridization with a tritiated cDNA probe complementary to a protion of preproenkephalin mRNA. We observed autoradiographic signal over the cytoplasm of neurons of many regions of the central nervous system. Several types of controls indicated specificity of the labeling. Neurons containing preproenkephalin mRNA were found in the piriform cortex, ventral tenia tecta, several regions of the neocortex, nucleus accumbens, olfactory tubercle, caudate-putamen, lateral septum, bed nucleus of the stria terminalis, diagonal band of Broca, preoptic area, amygdala (especially central nucleus, with fewer labeled neurons in all other nuclei), hippocampal formation, anterior hypothalamic nucleus, perifornical region, lateral hypothalamus, paraventricular nucleus, dorsomedial and ventromedial hypothalamic nuclei, arcuate nucleus, dorsal and ventral premamillary nuclei, medial mamillary nucleus, lateral geniculate nucleus, zona incerta, periaqueductal gray, midbrain reticular formation, ventral tegmental area of Tsai, inferior colliculus, dorsal and ventral tegmental nuclei of Gudden, dorsal and ventral parabrachial nuclei, pontine and medullary reticular formation, several portions of the raphe nuclei, nucleus of the solitary tract, nucleus of the spinal trigeminal tract (especially substantia gelatinosa), ventral and dorsal cochlear nuclei, medial and spinal vestibular nuclei, cuneate and external cuneate nuclei, gracile nucleus, superior olive, nucleus of the trapezoid body, some deep cerebellar nuclei, Golgi neurons in the cerebellum, and most laminae of the spinal cord. In most of these brain regions, the present results indicate that many more neurons contain preproenkephalin mRNA than have been appreciated previously on the basis of immunocytochemistry."	"Cytodifferentiation of quail tectal primordium transplanted homotopically into the chick embryo. The development of the retinotectal system in the quail embryo starts earlier and evolves faster than in the chick embryo. In order to establish whether the mesencephalic alar plate (i.e., the primordium of the optic tectum) of a quail embryo maintains its own rate of cytodifferentiation after transplantation into a chick embryo or whether this rate could be influenced by the host, we performed homotopic transplantations of the tectal primordium between the two species on day 2 of incubation (E2) by removing the mesencephalic alar plate in the chick and replacing it with that of the quail embryo. Graft extension was evaluated by means of the well-known quail nucleolar marker, and cytodifferentiation of both operated and unoperated tecta was analyzed from E3 to E12. It was found that: in most cases, the operated tectum is a chimera formed by a large dorsal territory consisting solely of grafted quail cells and a smaller ventral territory almost entirely made up of host chick cells. A clear boundary exists at the interface between these two territories. In the host, the temporal sequence of appearance of the various laminae, following a well-established rostroventral-caudodorsal developmental gradient, is comparable in both the operated tectum and the host territory of the chimeric tectum to that of a control chick tectum. In the graft, the migration of postmitotic cells starts earlier than in the host. However, in the former there is about a 12-h delay with respect to a control quail tectum. Proliferation and migration of cells take place in the graft much faster than in the host. Thus, the formation of the 8 deepest layers occurs according to the normal quail schedule, indicating that the early delay is quickly recuperated. This process of lamination follows the normal quail rostroventral-caudodorsal developmental gradient. The post-mitotic neurons originating in the grafted neuroepithelium follow a normal radial migration. Nevertheless, a few grafted cells occupy the host tectal territory far from the host/graft interface. These cells have been observed in both the stratum griseum centralis and the uppermost tectal layers, indicating that some tectal neurons are able to displace themselves tangentially. Contrary to what happens in the 8 deepest layers, which in the graft follow the normal quail cytodifferentiation schedule independently of the host, cytodifferentiation in the upper tectal layers is partially influenced by the host.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Outgrowth and directional specificity of fibers from embryonic retinal transplants in the chick optic tectum. Retinal pieces taken from known positions of 6-day chick embryos were vitally labeled with the fluorescent dye Rhodamine-B-isothiocyanate (RITC). They were then transferred onto the surfaces of optic tecta following early bilateral removal of the embryo's optic vesicles. One to 5 days after transplantation the tecta were fixed and transplants that issued fibers were examined on tectal whole-mounts or were sectioned and viewed with a fluorescence microscope. Retinal fibers growing out from transplants on day E6 tecta showed a capacity for changing their initial outgrowth directions and for reorienting themselves towards their specific retinotopic projection area. Frequently, changes in growth direction appeared in a right-angled pattern. The capacity for turning was strongest for fibers of nasal retinal origin, less strong for fibers of temporal origin, and occurred rarely but unquantifiably in the case of fibers of ventral retinal origin. Fibers of all investigated retinal quadrants were found to reach their corresponding projection areas and to arborize there, that is, fibers of nasal retinal transplants in the posterior tectum, of temporal transplants in the anterior tectum, and of ventral transplants in the dorsal tectum. Furthermore, once in their target region, the fibers left the outer layer of the tectum and turned, again in right angles, to invade deeper layers. Capacity of fibers to turn towards their projection area was not observed for fibers issued from transplants placed on the tectum later than day E8. We suggest that there is a specific guidance of retinal axons on the tectum."	"Pre- and postsynaptic correlates of interocular competition and segregation in the frog. Segregated zones of termination between converging inputs that arise from different presynaptic populations are a common property of topographically organized zones within the vertebrate central nervous system. Increasing evidence suggests that such segregation is at least in part established on the basis of competitive interactions that depend upon the activity patterns within each afferent population. However, the cellular mechanisms of these interactions are poorly understood. We have used a preparation in which a stereotyped interdigitating pattern of retina-specific termination stripes are produced in frog tecta innervated by two retinas as a result of embryonic implantation of a third eye primordia. In these animals it has been possible to examine the relationship between the number of retinal ganglion cells in each of the retinas innervating a striped tectum, the volumetric changes in the tectum as a result of this double innervation, and the pattern of eye-specific segregation that is produced. Counts of retinal ganglion cells in the retinas of the three-eyed frogs with one completely striped tectal lobe revealed no significant differences between cell numbers in the doubly innervating retinas and the normal retinas of the same animals. The average increase in retinal ganglion cell innervation to the striped tecta of these animals was 100%. However the tecta only increased in total volume by 26%. This later increase consisted of a 25% increase in the volume of the deep lying and predominantly cellular tectal laminae and a 37% increase in the superficial retinotectal synaptic zone. In many of these same animals HRP and 3H-proline were used to differentially label the set of stripes from each retina and measurements of the extent of each projection were performed. We found that the volume of tectal neuropil occupied by a striped projection is relatively unrelated to the number of ganglion cells making up that projection. Observations of the striping pattern after HRP processing to visualize stripes in whole unsectioned tecta indicate that the periodicities and rostrocaudal orientation of stripes are robust over a wide range of relative innervation densities. When one projection is much smaller than the other, stripes appear to break down into a series of &quot;puffs&quot; or islands of retina-specific termination zones. Nevertheless, these puffs still have a rostrocaudal alignment and the spacing of fully formed stripes. These observations suggest that the formation of exclusive termination zones may be a threshold phenomenon: so after a certain innervation density is reached one input can take over a unit of target neuropil in an all-or-none manner.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Direct projections from Ammon's horn to the septum in the cat. Direct projections from Ammon's horn to the septum were studied in the cat by the anterograde tracing method after injecting WGA-HRP (wheat germ agglutinin-horseradish peroxidase conjugate) into Ammon's horn. The results were further confirmed by the retrograde WGA-HRP method after injecting WGA-HRP into the septum. Pyramidal neurons in fields CA1, CA2 and CA3 were observed to send their axons ipsilaterally to the lateral septal nucleus; the septal parts of the hippocampus sent projection fibers to the dorsomedial portions of the lateral septal nucleus via the medial aspects of the subcallosal fornix, while the hippocampal regions successively more proximal to the temporal pole sent projection fibers to progressively more ventrolateral portions of the lateral septal nucleus via more lateral aspects of the subcallosal fornix. It was also found that the septal parts of fields CA1, CA2 and CA3 sent projection fibers bilaterally to the dorsomedial aspects of the lateral septal nucleus. Field CA4 appeared to send projection fibers only sparsely, if at all, to the medial septal nucleus. The rudimentary parts of the hippocampal formation, taenia tecta and indusium griseum, were found to have reciprocal ipsilateral connections with the dorsal portions of the lateral septal nucleus."	"Rapid axonal transport of the neural cell adhesion molecule. The neural cell adhesion molecule (NCAM) is a cell-surface glycoprotein that mediates cell-cell interactions in the nervous system during development. In the present study, we demonstrate that NCAM is axonally transported in 3-d-old chick retinal ganglion cells and that it travels within the fast component of axonal transport (FC). Proteins were radiolabeled in retinal ganglion cell bodies after intraocular injection of 35S-methionine. The presence of radiolabeled NCAM in the optic nerves and contralateral tecta was detected by specific immunoadsorption to a monoclonal antibody. Major radioactive polypeptide bands at relative mobilities of approximately 200,000, 150,000, and 120,000 Mr (after SDS-PAGE) were recognized by the anti-NCAM antibody. These bands comigrated in 1-dimensional gels with components of purified NCAM from chick brain. The 2 largest NCAM polypeptides (at 200,000 and 150,000 Mr) were found to be transported in this system, while the 120,000 Mr form was apparently not transported. The ratio and electrophoretic profiles of the 2 transported forms of NCAM remained similar in the retina, optic nerve, chiasm, tract, and tectum, suggesting that there is no interconversion of the 2 major polypeptides. The fraction of NCAM in the 35S-labeled FC proteins appears to be at least an order of magnitude less than in the plasma membrane, suggesting that the turnover rate of NCAM at this age is slower than for other membrane proteins of the CNS."	"Connections of the parahippocampal cortex in the cat. III. Cortical and thalamic efferents. To study the distribution of the cortical and thalamic efferent projections from the parahippocampal cortex in the cat, a series of injections of anterogradely transported radioactively labeled amino acids were placed in different parts of the entorhinal and perirhinal cortices. Subsequently, some of the identified cortical and thalamic target areas were injected with retrograde tracers such as wheat germ-agglutinin conjugated with horseradish peroxidase (WGA-HRP) or with a fluorescent tracer--fast blue or nuclear yellow--in order to disclose the laminar origin of the parahippocampal efferent projections. The results indicate that the parahippocampal cortex gives rise to widespread projections to the association cortex, and, to a lesser extent, sends fibers to the limbic cortex and the primary sensory cortex. These projections arise mainly from the deep layers of the parahippocampal cortex and terminate predominantly in superficial layers of the cortex, with a preference for layer I. Within the cortical projections a medial-to-lateral topography could be observed such that the entorhinal cortex projects predominantly to the allocortical and periallocortical limbic areas, including parts of the subicular complex, the ventral retrosplenial and the infralimbic cortices, and olfactory related areas--i.e., the olfactory bulb, the anterior olfactory nucleus, the prepiriform cortex, and the ventral tenia tecta. The more lateral parts of the parahippocampal cortex, which surround the posterior rhinal sulcus, project in addition to extensive parts of the paralimbic association cortex that include the proisocortical cingular, prelimbic, orbitofrontal, and agranular and granular insular cortices. The most lateral portion of the parahippocampal cortex, the perirhinal cortex, furthermore issues projections to widespread neocortical areas on the lateral and medial aspects of the hemisphere that constitute part of the parasensory association cortex. Weak-to-moderate projections are found to the cortex of the middle suprasylvian and anterior ectosylvian sulci, as well as the cruciate and splenial sulci, all of which have been reported to constitute sensory convergence areas. The most marked projections from the perirhinal cortex reach a zone of neocortex directly lateral to the perirhinal cortex including ventral parts of the posterior sylvian, posterior ectosylvian, posterior suprasylvian, and lateral gyri. These projections appear to be topographically organized such that rostral parts of the perirhinal cortex project more rostrally, and more caudal parts of the perirhinal cortex project to more caudal parts of this cortical zone.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Movement of retinal terminals in goldfish optic tectum predicted by analysis of neuronal proliferation. Quantitative, computer-assisted autoradiography was used to assess the relative rate and pattern of growth of retina and tectum in larval and early juvenile goldfish. 3H-thymidine was used to mark the boundary of retina and tectum, and the location of this boundary was charted as the eye and brain grew and added more cells. The pattern of growth is at all times discordant. The original (larval) retina becomes surrounded by annuli of new tissue, whereas the larval tectum remains adjacent to the rostral edge as crescents of new tissue are added to the caudal end. After 2 years of growth, more than 95% of the total surface area of retina and tectum in goldfish derives from cells born after larval stages. Computer-aided reconstructions of 3H-thymidine labeled retina and tecta were used to predict the direction and magnitude of displacement of the retinotopic map. It was estimated that retinal terminals can shift 1.5-1.8 mm caudally at a rate of 5 micron/d during the first 2 years of growth. The terminals that move the farthest are those from temporal retina that project to rostral tectum. The magnitude and direction of the predicted movements matches certain features of HRP-filled retinal axons that others have assumed represented the history of displacements of the terminal arbors."	"Topography of projections from the medial prefrontal cortex to the amygdala in the rat. The projections from the rat medial prefrontal cortex to the amygdaloid complex were investigated using retrograde transport of fluorescent dyes and anterograde transport of horseradish peroxidase-WGA. The ventral anterior cingulate, prelimbic, infralimbic and medial orbital areas and the taenia tecta were found to project to the amygdaloid complex. The projections from the prelimbic area arose bilaterally. The medial orbital, prelimbic and anterior cingulate areas send convergent projections to the basolateral nucleus. The prelimbic area has additional projections to the posterolateral cortical nucleus and amygdalo-hippocampal area. The infralimbic area does not project to the basolateral nucleus and cortico-amygdaloid projections from this area are focussed on the anterior cortical nucleus and the anterior amygdaloid area. Both prelimbic and infralimbic areas project to an area situated between the central, medial and basomedial nuclei. Based on similar projections, this area appears to be a caudal continuation of the anterior amygdaloid area. The results indicate that the medial prefrontal component of the &quot;basolateral limbic circuit&quot; is restricted to the anterior cingulate and prelimbic areas. No evidence was obtained to support the existence of a medial prefronto-amygdaloid component of the &quot;visceral forebrain&quot;."	"Optic fibers follow aberrant pathways from rotated eyes in Xenopus laevis. The rotated eye paradigm has been a major experimental test of the neuronal specificity model for the development of ordered retinotectal connections in amphibians. In most studies, however, no optic fiber pathways were traced from rotated eyes and correlated with visuotectal projections. As an initial approach to this question, optic fibers from eyes rotated at different embryonic stages were traced with 3H-proline autoradiography. Three experimental series were prepared: in situ eye rotations, isochronic transplants of eyes rotated between embryos at the same stage, and heterochronic transplants of eyes rotated between embryos at different stages. Single or multiple optic fiber pathways developing from rotated eyes are identified by their sites of entry and trajectory in the brain. These include a normal chiasmatic (CH) pathway, and three aberrant pathways, identified as trigeminal (TR), diencephalic (DI), and oculomotor (OC). The latter three enter the brain ipsilaterally, some crossing contralaterally via commissural pathways. Depending on stage and type of operation, TR pathways develop in 50-100% of the animals, while CH pathways are more common after rotation at stage 21/22. The surgical procedure affects the initial trajectory of fibers from the retina, perturbs guidance cues in the surrounding orbit, and determines the patterns of optic pathways that develop. In most cases, optic fibers follow motor (oculomotor) or sensory (trigeminal) nerves, usually the first fibers encountered near the orbit by axonal pioneers exiting the retina. Evidently, optic fibers exhibit no pathway selectivity; any axon serves as a guidance cue. Tecta are innervated in about 50% of the cases, usually by fibers following abnormal trajectories from CH and OC pathways. The results suggest that the development of ordered visuotectal projections from rotated eyes is a complex process that may be independent of the trajectory of fiber arrival. Unless pathways and visuotectal maps are directly compared in each animal, however, the question remains open because we still do not know which anomalous pathways, if any, correlate with ordered projections."	"Substance P-containing ganglion cells become progressively less detectable during retinotectal development in the frog Rana pipiens. Substance P-like immunoreactivity (SPLI) was immunohistochemically analyzed in the retinae and optic tecta of Rana pipiens embryos and tadpoles between stages 25 of Shumway (S25) and XXV of Taylor and Kollros (TKXXV). A population of retinal ganglion cell (RGC) somata display SPLI. The number of labeled cell bodies increases in proportion and staining intensity between S25 and TKX and progressively decreases toward the end of metamorphosis. At TKXXV, only occasional cells in the periphery of the retina displaying SPLI can be observed in the RGC layer, heralding the adult condition, in which SPLI can only be seen rarely in occasional RGCs. An increasing proportion of optic nerve axons display SPLI from S25 through TKXVI, decreasing progressively thereafter toward the end of the larval period. Concurrently, SPLI appears for the first time in the superficial tectal neuropil between TKIII and TKV, with progressively increasing staining intensity and in a discrete lamina previously shown to contain retinofugal terminals in the adult. These observations corroborate inferences from previous studies indicating the existence of populations of peptidergic RGCs that terminate within precisely restricted synaptic loci in the tectum and presumably perform different functional operations in the adult. Previous observations, however, necessitated various experimental manipulations involving injuries to the visual system in order to demonstrate neuroactive peptide-like immunoreactivity in RGCs, thus allowing the possibility of posttraumatic expression of anomalous peptide phenotypes that may not reflect normal features of RGCs. The present study eliminates this variable and provides further evidence of the existence of peptidergic RGCs."	"Normal maturation involves systematic changes in binocular visual connections in Xenopus laevis. Systematic changes in neuronal connections have been observed during the development of many vertebrate neuronal systems. These changes have usually involved a refinement from an initial exuberance of connections or a response to some experimental perturbation. Here we report on a system of neuronal connections, which, during a protracted developmental period, undergo ordered changes in response to normally occurring changes in functional requirements. In the frog Xenopus laevis, interocular alignment changes markedly during late larval and post-metamorphic life, producing a progressive enlargement of the binocular portion of the visual field. An intertectal system links the two mid-brain optic tecta and is concerned with the neural representation of binocular visual space. In the adult animal, connections in this system link corresponding points (points receiving information from one locus of binocular visual space) on the two tecta. Changes in eye position with development, however, change the set of corresponding points. Therefore, if the intertectal connections link corresponding tectal points throughout development, they must undergo an ordered change with time. We present electrophysiological evidence that the intertectal connections do, indeed, undergo such changes in response to changes in eye alignment, and that the changes are major."	"The discontinuous visual projections on the Xenopus optic tectum following regeneration after unilateral nerve section. The establishment of retinotectal projections following transection of one optic nerve in developing Xenopus has been investigated. Between 3 weeks and 11 months after the operation, the nerve fibre tracer horseradish peroxidase (HRP) was applied to either the operated or the unoperated nerve, and the brains were prepared for examination as whole mounts. In most cases fibres from the operated nerve innervated both tecta, with the result that one tectum was doubly innervated and one tectum singly innervated. Two months after transection of the optic nerve in tadpole life, between stages 50 and 54, this nerve usually made a uniform projection on the contralateral tectum and a striped projection on the ipsilateral, doubly innervated, tectum. The projection made by the unoperated nerve on this tectum was a similar pattern of stripes, which ran generally rostrocaudally. Two months after transection of the optic nerve of newly metamorphosed animals, the projection formed by the operated nerve on the doubly innervated tectum was usually a pattern of spots or spots mixed together with stripes in no particular orientation superimposed on a roughly uniform background. In a small number of cases the projections made by the same nerve on the two tecta were approximately complementary; that is, the presence of label on one tectum corresponded with its absence on the other tectum. The results are examined in the context of the development of the retina and of the tectum. It is suggested that the consistently oriented stripes which result from nerve transection at a stage at which only a small proportion of the retinal fibres had reached the tectum are formed by the interaction of two equally matched sets of developing fibres, stripe orientation being determined by the mode of growth of the optic tectum. The formation of patterns of spots or spots mixed together with stripes following nerve transection after the end of the main phase of tectal histogenesis, and when 50% of the optic fibres had already reached the tectum, is attributed to an unequal competition between the two sets of fibres."	"Light microscopic autoradiographic localization of [3H]oxytocin binding sites in the rat brain, pituitary and mammary gland. An autoradiographical oxytocin (OXT) labeling procedure using frozen, unfixed tissue sections resulted in very dense labeling of the mammary gland. Binding sites for OXT were also found in various forebrain areas, including the hippocampus, especially the ventral subiculum and taenia tecta, central amygdala, posterior part of the anterior olfactory nucleus, claustrum, nucleus accumbens, bed nucleus of the stria terminalis, ventromedial hypothalamic nucleus, and the posterior pituitary. The ependyma of the lateral ventricle and/or the chorioid plexus near the lateral septum was labeled as well. These data support the hypothesis that OXT plays a role in a number of centrally regulated processes."	"Factors guiding regenerating retinotectal fibres in the frog Xenopus laevis. I have examined the pathways of retinotectal fibres regenerating back to the contralateral tectum, and also to innervated and 'virgin' ipsilateral tecta in postmetamorphic Xenopus. The fibres were visualized by HRP labelling of either the whole optic nerve, or a selected quadrant of the retina. Most fibres grow into either the ipsilateral or contralateral optic tract, although a small proportion go down the outside of the contralateral optic nerve. In the tracts, many fibres grow superficially, close beneath the pia, but a variable proportion runs more deeply. Axonal growth is not, therefore, restricted absolutely to the subpial region in the postmetamorphic Xenopus brain. Fibres growing onto the contralateral, or a 'virgin' tectum mostly grow straight onto the rostral margin of the tectal lobe, without growing around its margin in the form of a medial or lateral brachium. Most of these fibres grow through the deeper part of the tectal layer which normally contains optic neuropil, but a proportion of them grow immediately deep to the pia. Fibres regenerating to an innervated ipsilateral tectum mostly enter either the medial or lateral brachium of the optic tract, and only leave this close to their site of termination. In the brachia the fibres run superficially under the pia, but when they leave the brachia they mostly run through the deeper retinorecipient layers. These observations provide further evidence that ingrowing optic fibres have their pathways influenced by the axons which have preceded them."	"Experience alters the spatial tuning of auditory units in the optic tectum during a sensitive period in the barn owl. The auditory spatial tuning of bimodal (auditory-visual) units in the optic tectum of the barn owl was altered by raising animals with one ear occluded. Changes in spatial tuning were assessed by comparing the location of a unit's auditory best area with that of its visual receptive field. As shown previously, auditory best areas are aligned with visual receptive fields in the tecta of normal birds (Knudsen, E. I. (1982) J. Neurosci. 2: 1177-1194). It was demonstrated in this study that, when birds were raised with one ear occluded, best areas and visual receptive fields were aligned only as long as the earplug was in place. When the earplug was removed, best areas and visual receptive fields became misaligned, indicating that a change in auditory spatial tuning had taken place during the period of occlusion. However, in a bird that received an earplug as an adult, no such alterations in auditory spatial tuning were observed; even after 1 year of monaural occlusion, auditory best areas and visual receptive fields were misaligned so long as the earplug was in place, and were aligned when the earplug was removed. These results suggest that exposure to abnormal localization cues modifies the auditory spatial tuning of tectal units only during a restricted, sensitive period early in development. After the earplug was removed from a juvenile bird that had been raised with an occluded ear, the initial misalignment between auditory best areas and visual receptive fields decreased gradually over a period of weeks. In contrast, when earplugs were removed from two adult birds that had been raised with monaural occlusions, auditory-visual misalignments persisted for as long as measurements were made, which was up to 1 year after earplug removal. These data indicate that auditory cues become permanently associated with locations in visual space during a critical period which draws to a close at about the age when the animal reaches adulthood. Horseradish peroxidase was injected into two optic tecta (in a single animal) that contained units with permanently altered auditory spatial tuning. The positions of retrogradely labeled cells in the external nucleus of the inferior colliculus (ICX) were the same as those observed in control birds (Knudsen, E. I., and P. F. Knudsen (1983) J. Comp. Neurol. 218: 187-196). Thus, the changes in spatial tuning were not due to a shift in the topographic projection from the ICX to the optic tectum.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Polarized compartmentalization of organelles in growth cones from developing optic tectum. We have used computer-assisted reconstructions of continuous serial sections to study the cytoplasmic organization of growth cones in vivo. Optic tecta from 6.25-6.5-d-old chicken embryos were quick-frozen and then freeze-substituted in acetone-osmium tetroxide or, for comparison, prepared by conventional fixation. Images of eight freeze-substituted and two conventionally fixed growth cones were reconstructed from aligned serial micrographs. After freeze-substitution, numerous lumenless membrane-bound sacs arrayed in multilamellar stacks appear to replace the abundant smooth endoplasmic reticulum found after chemical fixation. Microtubule fascicles progressively diverge from their typical fascicular organization in the initial segment of the growth cone and are absent in the varicosity and the more distal segment. Mitochondria, in contrast, are concentrated in the proximal segment of the varicosity; multilamellar stacks and endosome-like vacuoles are in the distal segment; and coated pits and vesicles are concentrated near the terminal filopodium, which is the most distal and organelle-poor domain of the growth cone. These observations suggest that dilation and fusion of the lumenless, membrane-bound sacs that occurs during chemical fixation give rise to the network of smooth endoplasmic reticulum. The three-dimensional reconstructions show that the cytoplasmic components of growth cones, including the membrane-bound sacs and multilamellar stacks revealed by freeze substitution, are polarized along the axis of these growth cones, which suggests that they have a role in recycling of membrane during elongation of the growth cone."	"Regeneration of peptide-containing retinofugal axons into the optic tectum with reappearance of a substance P-containing lamina. Twenty-five specimens of Rana pipiens were subjected to a unilateral crush of the optic nerve. Substance P (SP)-, leucine enkephalin (LENK)-, cholecystokinin octapeptide (CCK8)-, and bombesin (BOM)-like immunoreactivities were analyzed in the retinae, optic nerves, and optic tecta, 9 days to 9 months postoperatively, by means of immunohistochemical methods. Peptide-like immunoreactivity was observed in axons within the optic nerve stump retinal to the crush, as in previous studies (Kuljis and Karten, '83b, Kuljis et al., '84). Peptide-containing retinofugal axons began traversing the lesion site between 10 and 20 days postoperatively, in progressively increasing numbers. Ten to 20 days following crush of the optic nerve SP-, LENK-, and CCK8-containing axons could be found in the cerebral stump of the optic nerve and in the optic chiasm, advancing to the side of the brain deafferented by the crush. The number of axons displaying peptide-like immunoreactivity within the optic nerve, retinal or cerebral to the crush, and within the optic chiasm gradually decreased after 2-3 months. The optic nerve contralateral to the procedure displayed only occasional isolated peptide-containing fibers, as in normal optic nerves. The retinae ipsilateral and contralateral to the crush exhibited no change in the normal pattern of peptide-like immunoreactivity, including the absence of demonstrable peptide-like immunoreactivity in the somata of retinal ganglion cells. The optic tectum deafferented by the procedure underwent modifications in the pattern of peptide-like immunoreactivity identical to those reported following unilateral eye enucleation (Kuljis and Karten, '82a, '83a). The patterns of LENK-, CCK8-, and BOM-like immunoreactivities in the tectum were identical to those following irreversible retinal deafferentation as long as 9 months postoperatively. SP-like immunoreactivity, however, was gradually restored in layer 11 of Ramón y Cajal ('46; layer D of Potter, '69) of the superficial (retinorecipient) neuropil 4-6 months postoperatively. The persistence of lamina-specific depletion patterns of LENK-, CCK8-, and BOM-like immunoreactivities in reafferented tecta represents a puzzling observation. The latter findings contrast sharply with the recovery of SP-like immunoreactivity, which occurs long after apparently complete restitution of the retinofugal projection, as shown by anatomical (Stelzner et al., '81), physiological (Maturana et al., '59), and behavioral (Sperry, '44) methods.(ABSTRACT TRUNCATED AT 400 WORDS)"	"A species difference between Rana and Xenopus in the occurrence of intertectal neuronal plasticity. In anuran amphibians, a system of neuronal connections links the two optic tecta and is involved in projections of the binocular visual field to the optic tecta. Electrophysiological studies have shown that in the frog, Xenopus laevis, the pattern of connections may be modified by procedures such as larval rotation of one eye. This modification appears to be effected by visual experience. Workers in other laboratories, however, found no evidence of such a modification in the related frog Rana pipiens. This difference in results may have been due to different rearing conditions and different recording techniques or may reflect a true species difference, in this respect, between Rana and Xenopus. In the present experiments, an attempt was made to distinguish between these possibilities by performing eye rotations in Rana and Xenopus, rearing them as identically as possible and recording from them under identical conditions. It was found that while Xenopus displayed the modification of intertectal connections, Rana did not. It is concluded that the different responses of the intertectal systems to larval eye rotation in Xenopus and Rana reflect a species difference."	"The response of optic tract glia during regeneration of the goldfish visual system. II. Tectal factors stimulate optic tract glia. After transection, retinal ganglion cell axons of the goldfish will regenerate by growing into a primary target tissue, the optic tectum. To determine what role the target tissue may play in regulating glial cell growth, we measured biosynthetic activity of optic tract glia following excision of the optic tectum and compared it to activity of glia found in the regenerating visual system. Ablation of the tectum reduced glial incorporation of both [3H]thymidine and [35S]methionine. Tectal ablation also led to nearly 80% reduction of amino acids incorporated by oligodendroglia as well as a decrease in the amount of newly synthesized protein found within multipotential glia and within cytoplasmic projections of astroglia. Since the tectal influence upon optic tract glia was detected at a time when tract and tectum are physically separated, we sought to determine if the optic tectum contained soluble glia-promoting factors. A soluble fraction recovered from tecta of the regenerating visual system increased amino acid incorporation within optic tract glia at 2-3-fold above preparations incubated with fractions from control, intact tecta. Comparisons of radiolabeled proteins separated by sodium dodecyl polyacrylamide gel electrophoresis from regenerating and factor-stimulated optic tract were similar and indicated that a soluble tectal fraction promoted biosynthesis of specific glial proteins. Our findings suggest that during regeneration of the goldfish visual system glia are influenced by humoral factor(s) released from the synaptic target site."	"Fetal retinae transplanted over tecta of neonatal rats respond to light and evoke patterned neuronal discharges in the host superior colliculus. NA"	"Eye-specific segregation requires neural activity in three-eyed Rana pipiens. The addition of a third eye primordium to the forebrain region of a Rana pipiens embryo invariably results in the development of a series of periodic, mutually exclusive eye-specific bands in tectal lobes dually innervated by the host and supernumerary fibers. A number of investigators have proposed that such source-specific segregation arises as a compromise between two mechanisms that are normally involved in retinotectal map formation: one which is dependent on cell surface affinities to align the map and produce a rough retinotopy and a second that &quot;fine tunes&quot; the map by stabilizing adjacent terminals from neighboring retinal ganglion cell bodies at the expense of terminals from non-neighboring cells. In this study we have tested the idea that this second &quot;fine-tuning&quot; mechanism is dependent on neural activity by blocking impulse activity in the optic nerves of three-eyed tadpoles. To assess the requirement for activity on the formation of bands, both normal optic nerves of 17 three-eyed tadpoles were crushed intraorbitally. Two weeks after this operation, the supernumerary retinal projection had debanded and spread to cover the entire tectum in a continuous fashion. By 4 weeks, however, the host optic fibers regenerated back to the tecta and began to form segregated stripes with the fibers from the third eye. Six to 7 weeks after the optic nerve crush the periodic pattern of eye-specific segregation characteristic of dually innervated tecta was again pronounced. When activity in all three optic nerves was eliminated with tetrodotoxin (TTX; embedded in a slow release plastic) during the last 3 weeks of this process, the fibers from the two competing eyes failed to segregate and, instead, formed two completely overlapping, continuous projections across the tectal surface. To test for the requirement of activity in the maintenance of segregation, we also subjected three-eyed tadpoles without optic nerve crush to TTX blockade for 2, 3, and 4 weeks. Animals sacrificed at 2 weeks show overlap of the projections in the rostral tectum but distinct interdigitating stripes in other regions of these lobes. After 3 weeks of blockade, segregation of the projections was less distinct in the central tectum as well. After 4 weeks of TTX blockade the terminals from both eyes spread to form continuous overlapping projections throughout the tectum. Examination of well isolated, individual retinal ganglion cell terminal arbors during this period reveals that they occupy a significantly greater area of tectum following the TTX treatment.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Selective retinal reinnervation of a surgically created tectal island in goldfish. II. Electron microscopic analysis. In the preceding study (Edwards et al., '85), we showed that regenerating optic axons reestablish a topographically restricted projection to a caudal tectal island created by surgical removal of a 1-mm-wide strip of caudal tectum in goldfish. In the present ultrastructural study, we evaluated the dependence of this axonal outgrowth on the presence of tectal target tissue caudal to the gap. Axon counts in the lesion zone were compared between cases with complete caudal tectal ablation and cases with ablation sparing a caudal tectal island (with and without optic nerve crush). During the postoperative interval of 20-50 days (early period), up to about 1,000 unmyelinated axons with features characteristic of optic axons were present in numerous small subpial bundles in both preparations. In the subsequent interval of 50-110 days (middle period), less than 200 axons were counted caudal to simple half-tecta, whereas 4,000-14,000 myelinated and unmyelinated axons were present in a few large bundles which crossed the lesion zone of tectal island cases. In this period, optic terminals could be demonstrated in the tectal island using the anterograde horseradish peroxidase method. At 170-300 days after surgery (late period), bridging bundles contained between 2,000 and 6,000 largely myelinated axons. We conclude that caudal tectal tissue is not necessary for the initial outgrowth of a small number of axons beyond a rostral half-tectum. The target is essential, however, for the maintenance of these axon fascicles and for the subsequent massive outgrowth of axons to the island. The contributions of glial guidance, diffuse exploratory outgrowth, and target-produced trophic factors to the formation of an initially exuberant projection to the island are discussed. A process of selective axon collateral withdrawal is proposed to account for the decrease in axon numbers within bridging bundles in the late period and for the late restriction in the retinal origin of the island projection indicated by results in the preceding study (Edwards et al., '85)."	"Projections of growth-cone-bearing fibers of retinal ganglion cells within co-cultured tectal explants: early branching depends on age of target tissue. The projections of retinal ganglion cell axons within co-cultured tectal explants were analyzed in order to investigate some of the factors that determine the earliest responses of retinal axons to cues present in an isolated target tissue. Half retinas and superior colliculi (tecta) from the embryonal mouse were explanted, separated by a 0.5 mm gap. After 5 days in vitro retinal ganglion cells were labeled by extracellular ionophoresis of HRP into the optic nerve head region. Cleared co-cultures were studied as whole mounts. Growth-cone-bearing retinal fibers were studied in standard tectal co-cultures, and in cases where tectum had been explanted 2 weeks prior to retina. The heterochronously prepared cultures had a higher proportion of fibers with complex branching patterns than the synchronous explants. Cultures in which retinas were explanted 1 week after tecta exhibited intermediate proportions of such fibers. These observations suggest that older tecta facilitate branching of ingrowing retinal fibers, although other alterations during in vitro development must be evaluated. The growth patterns of axons originating in nasal and temporal hemi-retinas were analyzed in terms of possible positional cues provided by the target tecta. Axons originating in temporal hemi-retinas did not show evidence of preferential branching in, or growth toward, appropriate anterior regions of co-cultured tectal explants. In contrast, the majority of nasal retinal axons showed enhanced terminations and complex branching in, and bending towards, the posterior tectum."	"[Use of horseradish peroxidase as a marker in studies of the formation of the blood-brain barrier (optic tectum of the normal and experimentally-treated chick embryo)]. The development of the blood brain barrier (BBB) and the vessel permeability to horseradish peroxidase (HRP) have been analyzed in the optic tectum of chick embryos developed under normal and hypoxic conditions, normal chickens, and chickens born from fertilized eggs incubated under hypoxia but kept in the open air after hatching. The development of chick embryos under a situation of chronic hypoxia was obtained by covering, a half of the shell of fertilized eggs with a thick layer of melted paraffin to obtain a reduction of the exchanges normally occurring between embryonic blood vessels and open air. In the tecta developed in normal conditions the BBB to HRP begins to form on the 14th i.d. and it is complete on the 17th i.d. The O2 deprivation, producing remarkable alterations of the neural substratum, does not affect the development of the BBB to HRP, since in chicks of 17 i.d., grown up under hypoxic conditions, the tectal microvessels are not permeable to the tracer, being it mainly confined within the vessel lumina. Nevertheless in specimens kept under hypoxia until hatching, areas of perivascular spread of the marker have been observed corresponding to the vessel wall tracts presumably damaged by the experimental conditions along which the BBB to HRP is not complete."	"Retinotectal synapses formed by ipsilaterally projecting fibers in the doubly innervated goldfish tectum. When one tectum of an adult goldfish is removed, the severed retinal fibers regenerate ipsilaterally into the remaining tectal lobe. Initially fibers from the two eyes overlap in the tectum but EM-HRP data suggest that few mature retinal synapses are formed between the ipsilateral eye and tectum at this time. At longer time periods, when some fibers appear to segregate into eye-specific termination bands, our data suggest that a significant number of synapses from the ipsilateral eye are present. These findings have important implications for how eye-specific termination bands are formed in doubly innervated tecta."	"Ultrastructural basis of the vessel wall differentiation in the chick embryo optic tectum. The mode and the temporal sequence of the growth and differentiation processes of the intraneural blood vessels have been ultrastructurally analyzed in optic tecta of 4, 8, 12, 16 and 19 incubation day chick embryos and of chicks 15 days after hatching. The findings suggest that the morphological maturation of the various components of the vascular wall and perivascular spaces, leading to the formation of the blood-brain barrier, unfold according to a spatio-temporal gradient, radially extending from the surface of the tectum rudiment."	"Developmental variation in monosialoganglioside content of embryonic chick retina and tectum. Monosialogangliosides were extracted from the retinas and optic tecta of chick embryos at 6-12 days of incubation, and analyzed by high-performance liquid chromatography. The dominant monosialoganglioside was found to be N-acetylgalactosaminyl (N-acetylneuraminyl) galactosylglucosylceramide (GM2). The specific concentration of GM2 in both the retina and tectum rose to a peak at 8-9 days of incubation, then declined. At day 10, GM2 was significantly lower in the dorsal than in the ventral or temporal quadrants of the retina. The same trend to a lesser degree was seen in the tectum. These results demonstrate striking variations in the monosialoganglioside content of the retina and tectum during formation of the retinotectal projection, and suggest that topological gradients may be a consequence of these developmental and spatial variations."	"Apparent movement of optic terminals out of a local postsynaptically blocked region in goldfish optic tectum. In goldfish tectum, alpha-bungarotoxin (alpha BTX) blocks postsynaptically generated field potentials elicited by either photic or electrical stimulation, but leaves presynaptic activity unaffected. To assess the chronic effects of blocking transmission on synaptic stability, small restricted areas of synaptic block were created by slow, low-pressure microinjection of toxin-Ringer's solution from a micropipette. Local transmission was blocked, but field potentials outside the injected region were unchanged. Radioautography of 125I-alpha BTX demonstrated that 6 days postinjection it was still highly localized and concentrated in discrete synaptic laminae of the tectal neuropil, in agreement with its known tight binding in goldfish brain (18). Electrophysiological maps made 6-8 days postinjection showed that few if any optic terminals could be recorded in the toxin-blocked zone, but there was no scotoma in the visual field. Terminals with receptive fields that would normally have corresponded to the region of injection were instead recorded from surrounding tectal areas. Since the normal units were also recorded there, this produced very large multiunit receptive fields. Apparently the optic terminals within the toxin-blocked area moved outward and innervated neighboring areas. In a minority of cases, no silent areas were noted and only the enlarged multiunit receptive fields were seen in the injection zone. All tecta injected with alpha BTX, but none injected with Ringer's, showed these disturbances in the map at the treated area at 6-8 days postinjection. By 2-3 wk, the maps in the alpha BTX-injected tecta had returned to normal. There were no silent areas and no enlarged receptive fields. The movement of the optic arbors was shown to be dependent on activity in the optic fibers. In fish receiving intraocular injections of tetrodotoxin (TTX) for the first 4-6 days, no changes were seen in the retinotectal maps recorded after the effects of the TTX wore off. When the entire surface of the tectum was blocked with multiple injections of alpha BTX, normal maps were recorded at 6-8 days postinjection. Thus in order to produce movements in optic terminals, the fibers require activity and an opportunity to make effective synapses in a nearby zone."	"Changes in the topographically organized connections between the nucleus isthmi and the optic tectum after partial tectal ablation in adult goldfish. The projection of the nucleus isthmi to the ipsilateral optic tectum was examined in normal goldfish. This was compared to the projection in animals in which the entire visual field had been induced to compress onto a rostral half tectum by caudal tectal ablation. The isthmo-tectal projection was examined by making localized injections of horseradish peroxidase into the optic tecta and observing the patterns of labeled cells within the nucleus isthmi. The teleost nucleus isthmi consists of a cell sparse medulla covered by a cellular cortex, which is thick on the rostral, medial, and dorsal surfaces of the nucleus. Almost all isthmic cells projecting to the tectum were located in the area of thick cortex. In normal fish, rostral tectal injections labeled cells in the rostroventral portion of the thick cortex; injections midway in the rostrocaudal tectal axis labeled more caudodorsally located cells, and caudal tectal injections labeled cells a little further caudally in extreme dorsal cortex. The rostroventral to caudodorsal isthmic axis was therefore seen to project rostrocaudally along the tectum. This topography contrasts somewhat with the situation seen in amphibia where the rostrocaudal tectal axis receives projections from the rostrocaudal isthmic axis. In fish with half-tectal ablations, injections near the caudal edge of the half tectum (at a site that had originally been midtectal) labeled cells that had previously projected to caudal tectum. Rostral tectal injections in fish with compression of the visual field gave a normal pattern of labeled isthmic cells. The results indicate that a topographically ordered isthmo-tectal projection exists in goldfish that may be induced to compress onto a half tectum."	"Evidence for a neurotransmitter role of aspartate and/or glutamate in the projection from the torus longitudinalis to the optic tectum of the goldfish. Different experimental approaches have been used to demonstrate that aspartate and/or glutamate is a transmitter(s) in the projection from the torus longitudinalis to the marginal layer of the optic tectum in the goldfish. Slices of the optic tectum incubated in vitro in the presence of D-[3H]aspartate and processed for light microscopic autoradiography, demonstrated a preferential accumulation of the labeled compound in the marginal layer. Under the same experimental conditions several neurons in the central part of the torus longitudinalis selectively accumulated D-[3H]aspartate. Synaptosome-enriched preparations from the optic tectum showed high-affinity uptake for D-[3H]aspartate and the rate of the uptake was significantly decreased after disconnection from the ipsilateral torus longitudinalis. The same subcellular preparations showed Ca2+-dependent release of previously accumulated D-[3H]aspartate under high potassium stimulation. This release was significantly reduced in preparations from optic tecta 5 days after cutting their connection with the ipsilateral torus longitudinalis. Finally, D-[3H]aspartate injected in the optic tectum retrogradely labeled the fiber systems connecting the marginal layer with the ipsilateral torus longitudinalis as well as neuronal cell bodies in the torus longitudinalis itself. From autoradiographic experiments it was, in addition, noticed that several tectal neurons selectively accumulated D-[3H]aspartate in the cell bodies as well as in main dendritic trunks. This observation suggests tht aspartate and/or glutamate may be a transmitter(s) in some intrinsic circuits and extrinsic projections of the optic tectum."	"Retinal terminals in the goldfish optic tectum: identification and characterization. Retinal terminal profiles in the goldfish optic tectum were identified electron microscopically after (1) labeling with horseradish peroxidase and (2) in the early stages of degeneration in short-term eye enucleates. All labeled terminals shared certain common morphological characteristics which were identical to those of a population of terminals in normal tecta. Terminals of this type disappeared 30 days after enucleation of the contralateral eye. Retinal terminal presynaptic profiles were characterized by (1) round and oval synaptic vesicles; (2) mitochondria with irregular, randomly oriented cristae, large intracristal spaces, dilated membrane spaces, and primarily light matrices; (3) a wide range in profile area, 0.06-6.82 micrometers2; (4) large numbers of synaptic vesicles per profile area (168 +/- 33 synaptic vesicles per micrometers2; (5) asymmetric synapses; and (6) multiple synaptic contacts (1.46 +/- 0.73 per terminal profile). The postsynaptic elements included both dendritic and, less commonly, pleomorphic vesicle-containing profiles. The majority of postsynaptic dendritic profiles were small (0.01-0.40 micrometers2). Serial synaptic contacts were occasionally seen. The combination of vesicular and mitochondrial morphology (1 and 2 above) was necessary and sufficient to establish the retinal origin of a terminal, but use of such criteria would underestimate the number of retinotectal terminals by omitting those which did not have a mitochondrion in the plane of section. The number of such terminals was calculated from independent measurements, and the total number of retinal terminal profiles per area of neuropil was estimated."	"Alteration of the retinotectal map in Xenopus by antibodies to neural cell adhesion molecules. The neural cell adhesion molecule (N-CAM) mediates neuron-neuron adhesion, is ubiquitous in the nervous system of developing and mature vertebrates, and undergoes major alterations in both amount and distribution during development. Perturbation of homophilic (N-CAM to N-CAM) binding by univalent fragments of specific anti-N-CAM antibodies has previously been found to alter neural tissue patterns in vitro. To show that significant alterations can also occur in vivo, antibodies to Xenopus N-CAM were embedded in agarose microcylinders and implanted in the tecta of juvenile Xenopus laevis frogs that were undergoing regeneration of their retinotectal projections; 1 week later, the effects of implantation on the projection pattern from the optic nerve were determined. Both polyclonal and monoclonal antibodies to N-CAM distorted the retinotectal projection pattern and greatly decreased the precision of the projection; these alterations recovered to near normal after an additional 3 weeks. Similar but smaller effects were obtained when normally developing froglets received tectal implants. In control animals, implants of immunoglobulins from preimmune serum and monoclonal antibodies not directed against N-CAM had little or no effect on the pattern. The results suggest that neuronal adhesion mediated by N-CAM is important in establishing and maintaining the precision and topography of neural patterns."	"Paths of axons in the visual system of perciform fish and implications of these paths for rules governing axonal growth. The optic nerve of many perciform fish is ribbon-shaped, and axons from ganglion cells in specific parts of the retina are consistently found in specific places in this ribbon. I utilized this organization to fill selected groups of axons with horseradish peroxidase. I then traced these groups of axons through the nerve and across the tectum to their terminal arbors. The paths of the axons suggest that axons use a number of different mechanisms to guide them to their correct terminal sites. At some points they appear simply to grow along the surface created by earlier axons, but at other points they seem to be using cues more complex than simple mechanical guidance. In addition, I have demonstrated that for every anulus of ganglion cells on the retina there is an anulus of terminal arbors on the tectum. With time the terminals in a given anulus must move caudally to keep the retinotopic map centered on the tectum while the tectum continues growing nonsymmetrically . I have shown both that the anuli of terminals do remain roughly centered on the tectum and that the predicted pattern of terminal movement is visible on the tecta of perciform fish."	"Homotopic and heterotopic transplantations of quail tectal primordia in chick embryos: organization of the retinotectal projections in the chimeric embryos. To study the adaptative capabilities of the retinotectal system in birds, the primordium of one optic tectum from 12-somite embryos of Japanese quail was transplanted either homotopically , to replace the ablated same primordium, or heterotopically, to replace the ablated dorsal diencephalon in White Leghorn chick embryos of the same stage. The quail nucleolar marker was used to recognize the transplants. The cytoarchitecture of the tecta and the retinal projections from the eye contralateral to the graft were studied on the 17th or 18th day of incubation in the chimeric embryos by autoradiographic or horseradish peroxidase tracing methods. Morphometric analysis was applied to evaluate the percentage of the tectal surface receiving optic projections. It was observed that: (i) quail mesencephalic alar plate can develop a fully laminated optic tectum even when transplanted heterotopically; (ii) retinal ganglion cells from the chick not only recognize the tectal neurons of the quail as their specific targets in homotopic grafts, but the optic fibers deviate to innervate the heterotopically grafted tectum; (iii) in the presence of a graft, the chick retina is unable to innervate a tectal surface of similar or larger size than that of the control tectum; (iv) tectal regions devoid of optic projections, whether formed by donor or by host cells, always present an atrophic lamination; (v) the diencephalic supernumerary optic tectum competes with and prevails over the host tectum as a target for optic fiber terminals."	"Peptides from the regenerating central nervous system of goldfish stimulate glia. Severed ganglion cell axons of the goldfish retina regrow and form new synaptic connections within their primary target tissue, the optic tectum. During axonal regeneration, optic tract glia show increased incorporation of both thymidine and amino acids. Ablation of the tectum reduces the biosynthetic activity of cells in the optic tract, suggesting that humoral factors released from the tectum may stimulate neighboring glia. A soluble fraction isolated from denervated tecta increases glial incorporation of both thymidine and amino acids by 2- to 3-fold when compared to control cells treated with soluble material from intact tecta. One glial promoting factor, designated GPF -1, is a trypsin-sensitive peptide of about 14,000 daltons. Peptides released from target tissues may help to regulate growth of glial cells during neuronal regeneration."	"The connections of the mouse olfactory bulb: a study using orthograde and retrograde transport of wheat germ agglutinin conjugated to horseradish peroxidase. The efferent and centrifugal afferent connections of the main olfactory bulb (MOB) of the mouse were studied by orthograde and retrograde transport of wheat germ agglutinin conjugated to horseradish peroxidase (WGA-HRP). MOB projects ipsilaterally to the anterior olfactory nucleus, taenia tecta, anterior hippocampal continuation, indusium grisium, olfactory tubercle, and the lateral and medial divisions of the entorhinal area. In the region of the anterior one-half to two-thirds of the posterior division of the insular cortex the projection from MOB extends into the insular cortex. The only efferent projection of MOB to the contralateral half of the brain was to the anterior olfactory nucleus. All efferent projections of MOB, thus, are to telencephalic structures. By contrast the centrifugal afferents to MOB originate from every major division of the neuraxis. Neurons projecting to the bulb were found ipsilaterally in all divisions of the anterior olfactory nucleus (AON). In some cases, labeling in the external division of AON was weak or absent. In the contralateral AON, pars externa was the most intensively labeled sub-division. Retrogradely labeled neurons were also present in all other subdivisions of the contralateral AON but were fewer in number and less heavily labeled than in the ipsilateral AON. Ipsilaterally, positive neurons were also present in taenia tecta, and the anterior hippocampal continuation. There was profuse retrograde labeling of neurons in the entire extent of the ipsilateral piriform cortex (PC). There was a rostral to caudal gradient of labeling in PC with more positive neurons in rostral than caudal parts. Labeled neurons were present in the lateral entorhinal cortex LEC and in the transitional cortex between LEC and PC. Very heavy retrograde labeling was present in the nuclei of the horizontal and vertical limbs of the diagonal band (HDB and VDB). More cells were labeled in HDB than in VDB. Neurons were labeled in the ipsilateral nucleus of the lateral olfactory tract (NLOT) and, when the injection spread into the accessory olfactory bulb, labeled neurons were present ventral to NLOT in accessory NLOT. A few lightly labeled neurons were always present in the posterolateral and medial cortical amygdaloid areas. Neurons were labeled in the zona inserta and scattered throughout several hypothalamic nuclei. There was massive retrograde labeling of neurons in the locus coeruleus and neurons were abundantly labeled in the dorsal and medial raphe nuclei and nucleus raphe pontis. In general, the labeling of MOB connections was more extensive than that which has been reported in closely related species.(ABSTRACT TRUNCATED AT 400 WORDS)"	"Visualization of HRP-filled axons in unsectioned, flattened optic tecta of frogs. In order to trace individual axons in the tectum, a curved structure, we have modified the HRP method of Adams for use on unsectioned, flattened tecta. Filled axons appear dark and uniformly filled and can be followed without the necessity for reconstructions from serial sections."	"Early auditory experience aligns the auditory map of space in the optic tectum of the barn owl. Auditory and visual space are mapped in the optic tectum of the barn owl. Normally, these maps of space are in close mutual alignment. Ear plugs inserted unilaterally in young barn owls disrupted the binaural cues that constitute the basis of the auditory map. Yet when recordings were made from the tecta of these birds as adults, the auditory and visual maps were in register. When the ear plugs were removed from these adult birds and binaural balance was restored, the auditory maps were shifted substantially relative to the visual maps and relative to the physical borders of the tecta. These results demonstrate that the neural connectivity that gives rise to the auditory map of space in the optic tectum can be modified by experience in such a way that spatial alignment between sensory modalities is maintained."	"In vitro protein synthesis in the goldfish retinotectal pathway during regeneration: evidence for specific axonal proteins of retinal origin in the optic nerve. Four proteins with molecular weights of 58,000 can be separated as a linear array by two-dimensional gel electrophoresis. They are highly concentrated in the goldfish optic nerve and are designated as ON1, ON2, ON3, and ON4. Proteins ON1 and ON2 are undetectable in the optic nerve after disconnection and their concentration is gradually restored during regeneration. In vitro incubations of retinas, optic nerves, or tecta in the presence of [35S]methionine indicate that proteins ON1 and ON2 are of retinal origin. The labeling rate of these proteins in the retina increases fourfold after optic nerve crush whereas the overall labeling rate in the retina remains largely constant. Their synthesis cannot be detected in tissues devoid of retinal ganglion cells. This is consistent with the view that ON1 and ON2 are synthesized by retinal ganglion cells and are consequently of neuronal origin in the optic nerve. In contrast, similar experiments indicate that ON3 and ON4 are of nonneuronal origin. They are synthesized in the optic nerve in the absence of retinal ganglion cells."	"The organization of the fibers in the optic nerve of normal and tectum-less Rana pipiens. We have examined the detailed order of retinal ganglion cell (RGC) axons in the optic nerve and tract of the frog, Rana pipiens. By using horseradish peroxidase (HRP) injections into small regions of the retina, the tectum, and at various points along the visual pathway, it has been possible to follow labelled fibers throughout their course in the nerve and tract. Several surprising features in the order of fibers in the visual pathway were discovered in our investigation. The fascicular pattern of RGC axons in the retina is similar to that described in other vertebrates; however, immediately central to their entry into the optic nerve head, approximately half of the fibers from the nasal or temporal retina cross over to the opposite side of the nerve. Although the axons from the dorsal and ventral regions of the retina generally remain in the dorsal and ventral regions of the nerve, some fiber crossing occurs in those axons as well. The result of this seemingly complex rearrangement is that the optic nerve of Rana pipiens contains mirror symmetric representations of the retinal surface on either side of the dorsal ventral midline of the nerve. The fibers in each of these representations are arranged as semicircles representing the full circumference of the retina. This precise fiber order is preserved in the nerve until immediately peripheral to the optic chiasm, at which point age-related axons from both sides of the nerve bundle together. Consequently, when a small pellet of HRP is placed in the chiasmic region of the nerve, an annulus of retinal ganglion cells and a corresponding annulus of RGC terminals in the tectum are labelled. As the age-related bundles of fibers emerge from the chiasm they split to form a medial bundle and a lateral bundle, which grow in the medial and lateral branches of the optic tract, respectively. Although the course followed by RGC axons in the visual pathway is complex, we propose a model in which the organization of fibers in the nerve and tract can arise from a few rules of axon guidance. To determine whether the optic tecta, the primary retinal targets, play a role in the development and organization of the optic nerve and tract, we removed the tectal primordia in Rana embryos and examined the order in the nerve when the animals had reached larval stages. We found that the order in the nerve and tract was well preserved in tectumless frogs. Therefore, we propose that guidance factors independent of the target direct axon growth in the frog visual system."	"Inhibition of non-neuronal cell proliferation in the goldfish visual pathway affects the regenerative capacity of the retina. Proliferating cells associated with the visual pathway were found in the present study to affect the regenerative capacity of the goldfish retina following optic nerve injury. The contribution of these cells to the process of regeneration was investigated in the goldfish visual system by reducing their proliferation in the optic tract and tecta, using X-irradiation. The regenerative ability of the retina was then evaluated by the following parameters: sprouting from retinal explants, protein synthesis in the retina and accumulation of radiolabeled transported components in the tectum. X-irradiation of the visual system at an early stage of the regeneration process had a promoting effect whereas irradiation at a later stage resulted in a reduced capacity to regenerate. The results are discussed with respect to the possibility that proliferating cells, possibly glia, exert two contradictory contributions: an inhibitory effect at the site of injury, whereas distal to it, a supportive, perhaps trophic effect."	"The laminar distribution of intracortical fibers originating in the olfactory cortex of the rat. In this study, the autoradiographic method for tracing axonal connections was used to identify the laminar distribution of intracortical fibers originating in the olfactory cortical areas of the rat. Most of the projections can be divided into two major fiber systems with different laminar patterns of termination. The first of these, termed the layer Ib fiber system, arises in the anterior olfactory nucleus, the anterior and posterior piriform cortex, and the lateral entorhinal cortex, and terminates predominantly in layer Ib and, in many cases, layer III of the entire olfactory cortex. The second system, termed the layer II-deep Ib fiber system, originates in three relatively small olfactory cortical areas--the dorsal peduncular cortex, the ventral tenia tecta, and the periamygdaloid cortex--and terminates in and around the cells of layer II in most parts of the olfactory cortex. There is significant overlap in the laminar distribution of the two systems, although the distinction between them is readily apparent. Within the layer Ib fiber system there are relatively slight but consistent differences in the lamination of fibers from different areas. The fibers from the anterior olfactory nucleus are concentrated in the deep part of layer Ib while those from the anterior piriform cortex are concentrated in the superficial part of this layer. The fibers from the posterior piriform cortex tend to be densest in the middle of layer Ib. These differences are maintained in all areas of termination of each set of fibers, both ipsilaterally and contralaterally. In addition, intracortical fibers from the anterior cortical nucleus of the amygdala are distributed throughout layer I, including layer Ia and Ib. Fibers from the nucleus of the lateral olfactory tract terminate bilaterally around the cells of the islands of Calleja and the medial edge of the anterior piriform cortex."	"The topographic organization of associational fibers of the olfactory system in the rat, including centrifugal fibers to the olfactory bulb. This study analyzed the topographic organization of the associational fibers within the olfactory cortex of the rat, by using the autoradiographic method. Small injections of 3H-leucine were placed in all of the subdivisions of the olfactory cortex, to label selectively the fibers arising in each area. Intracortical fibers were identified from all of the olfactory cortical areas except the olfactory tubercle and were classified into two major systems (the layer Ib system and the layer II-deep Ib system) on the basis of their laminar pattern of termination (see Luskin and Price, '83). The layer Ib fiber system arises in the anterior olfactory nucleus, piriform cortex, and lateral entorhinal area, and is broadly organized in relation to the lateral olfactory tract. Cortical areas deep to or near the lateral olfactory tract are preferentially interconnected with areas near the tract, while parts of the cortex lateral and caudal to the lateral olfactory tract are most heavily interconnected with areas lateral, caudal, and medial to the tract. Commissural projections from the anterior olfactory nucleus and the anterior piriform cortex match some (but not all) components of the ipsilateral layer Ib fiber system. The layer II-deep Ib fiber system arises in three small areas--the ventral tenia tecta, the dorsal peduncular cortex, and the periamygdaloid cortex. The fibers from the ventral tenia tecta terminate in layer II of the anterior olfactory nucleus and are topographically organized. The fibers from the dorsal peduncular cortex and the periamygdaloid cortex are more widely distributed, especially in the lateral and caudal parts of the cortex. Two other intracortical projections do not fit into either of these fiber systems. The nucleus of the lateral olfactory tract projects bilaterally to the islands of Calleja and the medial edge of the anterior piriform cortex. The anterior cortical nucleus projects to many parts of the olfactory cortex, but the fibers end in both superficial and deep parts of layer I (layer Ia and Ib). There are projections from several of the olfactory cortical areas to the cortical areas surrounding the olfactory cortex. Virtually all of the olfactory areas also project to the ventral and dorsal endopiriform nuclei deep to the piriform cortex and/or to the polymorph zone deep to the olfactory tubercle. In addition, projections have been demonstrated to the deep amygdaloid nuclei, especially from the more ventromedial and caudal parts of the olfactory cortex."	"Differences between embryos and adults in the plasticity of somatosensory afferents to the axolotl tectum. The plasticity of somatosensory afferents in the adult axolotl tectum was studied in two ways. First, normal adult axolotls were monocularly enucleated, and second, adult animals which had been monocular since embryogenesis had the tectum contralateral to the remaining eye excised. After a survival time of about one year the brains of these animals were studied electrophysiologically and histochemically. In the enucleated adults, the deprived tectum lacked visual activity, and the acetylcholinesterase staining, dense in the superficial neuropil of the normally innervated tectum, was much reduced. Somatosensory units remained deep in the tectal neuropil, as in normally innervated tecta. Serotonergic terminals associated with somatosensory responses were correspondingly largely restricted to the deeper tectal neuropil in these animals. This result is in contrast to that of embryonic enucleation where somatosensory activity and serotonergic terminals are found in the superficial tectal neuropil of the adult. Autoradiographic results from the tectal excision experiments showed that retinal axons in adults regrew to innervate the ipsilateral tectum when deprived of their normal targets. Associated with the ipsilateral innervation both visual units and acetylcholinesterase staining were found in the superficial tectum. In spite of this change in the visual innervation of the tectum, there was little difference in the distribution of somatosensory responses or serotonergic terminals; both remained relatively superficial and appeared to be unaffected by the late ingrowing retinal axons. This result is in contrast to the findings from embryonic transplants to genetically eyeless embryos which, as adults, show somatosensory responses and serotonergic endings restricted to the deeper tectal neuropil."	"Pathways of Xenopus optic fibres regenerating from normal and compound eyes under various conditions. We have used Horseradish peroxidase to investigate the pathways taken by Xenopus optic fibres regenerating from normal and electrophysiologically-confirmed compound eyes to the optic tectum. Optic fibres, when sectioned near the chiasma, regenerate up both sides of the diencephalon to both tecta. We have therefore been able, by using animals in which one eye had or had not been removed at early embryonic stages, to look at the behaviour of regenerating axons in three different situations: (1) regeneration to the contralateral tectum, previously innervated by the sectioned fibres; (2) regeneration to a &quot;virgin' ipsilateral tectum, never before innervated by optic fibres; and (3) regeneration to an ipsilateral tectum already innervated by fibres from a normal eye. From the chiasma to the tectodiencephalic junction regenerating fibres behave similarly in all three situations, following roughly the course of the normal optic tract, but running in a rather disorganised way, with frequent crossing over of fibres. However fibres of nasal retinal origin (from an NN eye) spread to occupy a much larger area of the side of the diencephalon than those of temporal origin (from a TT eye). From the tectodiencephalic junction to the tectal termination of the fibres there are differences between the three situations investigated; fibres regenerating to a 'virgin' ipsilateral, or to a denervated contralateral tectum, tend to grow straight onto the tectum, instead of being channelled into lateral or medial brachium as uncut fibres tend to be. There is however, the remains of a brachial organisation, and of differential selection of these brachia by fibres from the different types of compound eye, this being well seen on &quot;virgin' tecta. Fibres regenerating to an ipsilateral innervated tectum behave very differently. As they reach the tectodiencephalic junction they suddenly start to grow in a less disorganised way, and are channelled into well defined brachia. If from a compound eye, these fibres terminate on only that part of the tectum innervated by fibres from the corresponding part of the normal eye. Thus fibres from a VV eye and those from the ventral half of the normal eye all terminate on medial tectum; fibres from an NN eye, and those from the nasal half of the normal eye all terminate in caudal tectum; and temporal fibres from both normal and TT eyes terminate in rostral tectum."	"Abnormal visual input leads to development of abnormal axon trajectories in frogs. Throughout the normal vertebrate brain, visual maps form the left and right eyes overlap and are in register with one another. Visual input has a major role in the development of the pathways which mediate these binocular projections. A dramatic example of the developmental role of sensory input occurs in the isthmo-tectal projection, which is part of the polysynaptic relay from the eye to the ipsilateral tectum of the frog, Xenopus laevis. If one eye is rotated when the animal is still a tadpole, the isthmic axons respond by changing the topography of their terminations in the tectum; for example, a given isthmo-tectal axon which normally would connect with medial tectum can be induced to terminate in lateral tectum. Such rearrangements bring the ipsilateral visual map into register with the contralateral retinotectal map, even though one eye has been rotated. Indirect evidence has suggested that after early eye rotation, isthmo-tectal axons do not grow directly to their new tectal targets but instead reach those targets by routes which pass through their normal termination zones. Here I have used anterograde horseradish peroxidase labelling of isthmo-tectal fibres to show the trajectories of such axons and to compare them with the routes which axons take when allowed to develop normally. Tracings of individual axons in flat-mounted, unsectioned tecta show that most axons in normal Xenopus follow fairly straight paths in the tectum. In contrast, early eye rotation causes many isthmo-tectal axons to follow crooked, circuitous pathways before they terminate."	"Axonal transport of gangliosides in the visual system of the developing chick embryo. Chick embryos aged 7-18 days of development were injected with N-[ (3)H] acetylmannosamine into one eye. The labeling of gangliosides was significantly higher in the contralateral- than in the ipsilateral-optic tectum in embryos aged 14 days or older. Comparison of the radioactivities of thin-layer chromatograms of gangliosides from the contralateral- and ipsilateral-optic tecta showed that in the 14-day-old embryo about 56 and 29% of the transported radioactivity chromatographed as GD1a and GT1, respectively. Most of the remaining radioactivity chromatographed in the zone of less complex gangliosides (GM2-GD3, 3%; GM3, 6%). In the 18-day-old embryo about 72% of the transported radioactivity chromatographed as GD1a; the radioactivity in the zone of GT1 was reduced to about 2% and that in the less complex gangliosides remained low (about 14% in the zone of GM2-GD3 and 7% in the zone of GM3). "	"Muscarinic cholinergic binding in chick embryo retino-tectal system: effects of corticosterone. Muscarinic binding sites were measured using the radioligand [3H]quinuclidinyl benzilate (QNB) in the retina and tectum of 11-day-old chick embryos, after intracerebral administration of 0.02 microgram of corticosterone at 8 days of incubation. This age was chosen because the hormone preferentially accumulates in retinas at 8 days of development. Hormone treatment significantly affected the affinity of 3H-QNB-binding sites in retinas and slightly affected the affinity in treated tecta, whereas the number of binding sites remained unchanged. The specific binding was determined with either atropine or unlabeled QNB. Scatchard plot analysis of specific 3H-QNB binding revealed the presence of nonsaturable binding at high 3H-QNB concentrations (6-11 nM) in the treated retinas, but not in controls. It can be concluded from these data that the hormone has a primary effect on retinal cells during early growth in the chick embryo. The possibility that the hormone delays maturation of specific populations of retinal cells is considered in the discussion."	"Distribution of gamma aminobutyric acid containing neurons and terminals in the septal area. An immunohistochemical study using antibodies to glutamic acid decarboxylase in the rat brain. The distribution of gamma aminobutyric acid (GABA)-containing neurons and nerve terminals was examined in the rat septal area by using specific antibodies to the enzyme glutamic acid decarboxylase (GAD) in combination with the avidin-biotin immunoperoxidase method. Whereas only a few GAD positive neurons were present in the septum of normal rats, the septal area of rats treated with colchicine, an inhibitor of fast axonal transport, showed numerous GAD-immunoreactive neurons. These neurons were evenly filled with GAD-immunoreactive material throughout the cytoplasm of the soma and proximal parts of the dendrites. Although GAD-positive neurons were present in most parts of the septal area, their density differed greatly in the different septal subnuclei. Both the diagonal band of Broca (vertical and horizontal parts) and the lateral septum were rich in GAD positive cell bodies, whereas the medial septal nucleus and the intermediate parts of the lateral septum contained relatively few. Within the lateral septum itself a larger number of labeled cell bodies was present in its ventral subdivision. The anterior hippocampal rudiment (taenia tecta) contained numerous GAD-positive neurons, while the septal component of the island of Calleja (insula magna) was devoid of them. GAD-immuno-positive neurons found within the septum ranged from small (15 microns) to large (30-35 micron). They were round or multipolar in the diagonal band, medium-sized multipolar in the lateral septum, and pyramidal, round or fusiform in the anterior hippocampal rudiment. GAD-immunoreactive nerve terminals are present in most subdivisions of the septal nuclei, with the exception of myelinated fiber tracts, and throughout all rostrocaudal levels of the septum. However, the density of the innervation is not the same within all individual nuclei. The lateral septum (dorsal and ventral parts) contained high density innervation but the diagonal band of Broca had a lower density of GAD-positive terminals. The lateral border of the islands of Calleja was rich in thick GAD-positive processes that appeared to be continuous with GAD-immunoreactive processes of the substantia inominata. The inner portion of the molecular layer adjacent to the granule cells of the anterior hippocampal rudiment contained a rich GAD-positive terminal field."	"Some determinants of optic terminal localization and retinotopic polarity within fibre populations in the tectum of goldfish. 1. The reorganization of the retinotectal projection which results after partial ablation of tectal tissue was examined in goldfish using electrophysiological methods. 2. Regardless of the size of a unilateral ablation of caudal tectum, an orderly and virtually complete, 'compressed', visual projection re-formed on the remaining tectum after crushing the optic nerve and allowing it to regenerate. 3. If the optic nerve was left intact after ablations of caudal tectum, compressed projections were only found when the ablations were small. Large caudal ablations involving half or more of the dorsal tectum resulted in the cut fibres transposing onto the remaining tectum and forming an overlaid, 'duplicate', projection on the remaining intact projection. 4. In approximately one third of cases the duplicate projection lay in a reversed polarity along the rostrocaudal axis of the tectum. In the remaining cases the polarity of the duplicate projection was normal. 5. Transposed projections of reversed rostrocaudal polarity could be consistently obtained by ablating temporal retina and caudal tectum, leaving an intact strip of fibres terminals along the caudal edge of the tectal remnant. 6. Compression and duplication occurred in the same way if fish were maintained in constant light. 7. After ablations of lateral tectum, leaving the optic nerve intact, compression and some disorderly duplications were found. 8. Reversed projections could be induced across the mediolateral axis of dorsal tectum by denervating the medial tectum and ablating a strip of lateral tectum. 9. Projections of normal polarity were found after the optic nerve was allowed to regenerate into tecta which had previously supported reversed polarity projections."	"The development of connections between the isthmic nucleus and the tectum in Xenopus and Limnodynastes tadpoles. In adult Anura reciprocal connections exist between the isthmic nucleus and ipsilateral tectum. These pathways, with a projection from the isthmic nucleus to the opposite tectum, constitute the binocular visual connections. Isthmic nuclei were examined histologically after injection of horseradish peroxidase into the tectum of Xenopus laevis and Limnodynastes dorsalis from midlarval stages to the completion of metamorphosis and in adults. The isthmic nuclei were present throughout, their cell number reaching the adult complement by metamorphic climax. At all stages each isthmic nucleus projected to both tecta. Late onset of electrical activity in the intertectal pathway cannot therefore be explained by the time at which isthmic fibres reach the tecta."	"Errant optic axons in the normal goldfish retina reach retinotopic tectal sites. Optic axons in the goldfish retina generally run radially from their origins to the optic nerve. However, horseradish peroxidase (HRP), introduced into small groups of axons through lesions in the tecta of normal fish, consistently filled some which ran parallel to the retinal margin for long distances before turning centrally. Since all the HRP-filled ganglion cells lay close together, their axons evidently reached adjacent tectal sites by these widely divergent routes."	"A banded distribution of retinal afferents within layer 9A of the normal frog optic tectum. A banded distribution of retinal ganglion cell axons within layer 9A of the superficial tectal neuropil in Rana pipiens was revealed through anterograde labeling with horseradish peroxidase. Layer 9A previously has been demonstrated to mediate binocular vision through a polysynaptic pathway by way of the nucleus isthmi. This nucleus interconnects analogous regions of the two tectal lobes such that isthmic axons retinotopically map the visual world of the ipsilateral eye within tectal layers 9A and 8. Thus, we have found that a pattern of retinal ganglion cell bands occurs in binocular regions of normal frogs. This pattern is similar, but not identical, to the experimentally produced stripes previously observed in the doubly innervated tecta of 3-eyed and single tecta frogs. Qualitative and quantitative comparisons of these two types of afferent segregation patterns have implicated several structural and functional parameters which might be involved in band formation."	"Target regulation of synaptic number in the compressed retinotectal projection of goldfish. In order to determine the morphological consequences of the formation of a compressed retinotectal projection, the optic neuropil lamina (stratum fibrosum et griseum superficialis, SFGS) was examined in large goldfish 3 months to 4 years after ablation of the caudal half of the tectum both with crush of the optic nerve (HTX) without (HT). In semithin sections, the SFGS, as delineated with orthograde HRP labeling, shows a persistent hypertrophy of about 25% in HTX and HT groups. Comparison of ultrastructural stereological data with similar data on control and regenerated projections to intact tecta (Murray and Edwards, '82) indicated that this hypertrophy can be attributed largely to an increased number of axons and not to increases in terminal or dendritic compartments. A normal number of synaptic terminals per column through SFGS is conserved in HTX and HT groups. Planimetric analysis and observations using orthograde HRP labeling reveal no group differences in size and shape of terminal profiles. The same number of retinal ganglion cells project to a half-tectum as to an intact tectum, as indicated by estimates of ganglion cell number and of the minimum percentage of them which project to the tectum using retrograde HRP labeling. The results suggest that the regenerating and sprouting optic axons participating in the formation of a compressed retinotopic projection compete for a limited accommodation inthe SFGS and that this capacity to accept synaptic input becomes saturated at the control innervation density. The results are consistent with the formation of a smaller than normal number of terminals per optic axon, numerical estimates for which are given. If the percentage of terminals which are optic does not change, then the number of terminals per axon is reduced by about 40%."	"Retinotectal map formation in dually innervated tecta: a regeneration study in Xenopus with one compound eye following bilateral optic nerve section. Retinotectal map formation was studied during regeneration in young adult Xenopus. Right compound double-temporal eyes (TT) were formed in tailbud stage embryos by the fusion of two temporal halves of the eye blastema in the same orbit. In other animals right compound double-nasal eyes (NN) were prepared. In both combinations the left eye was kept intact. After metamorphosis the right and left optic nerves were sectioned to induce optic fiber regeneration from each eye to both tecta. The patterns of retinotectal projections from the compound and normal eyes were studied from 37 to 364 days after optic nerve section, using electrophysiological recording of the visuotectal projections and 3H-proline autoradiographic assay from one of the two eyes. The left normal eyes projected in a retinotopic fashion, across the entire extent of the right and left dually innervated tecta. In contrast, the right compound eye projections were confined to the rostrolateral or to the caudomedial part of the right and left tecta and TT and NN animals, respectively. These tectal areas corresponded to the termination of temporal and nasal hemiretinal fibers of the normal eye. Discontinuous, interdigitating projection patterns from the right and left eyes were found in parts of the tecta where the compound and the normal eye projections overlapped. These results indicate that the normal optic fiber projections caused the originally expanded compound eye projections to be restricted to the corresponding part of the dually innervated tecta. It is suggested that the orderliness and the extent of the retinotectal map are established by the competition and interaction of optic fibers based on stable positional programming of the retinal ganglion cells."	"The transplantation of eyes to genetically eyeless salamanders: visual projections and somatosensory interactions. Eyes were transplanted from normal axolotls to eyeless mutants, and several anatomical and physiological observations were made on the central visual centers in these animals. Some central projections were bilateral to the optic centers of the thalamus and midbrain, some traveled ipsilaterally to the same centers, and the rest grew down the spinal cord. This is similar to what has been found in eyes transplanted to normal hosts. The type of projection made in eyeless hosts correlated with the site of nerve entry into the CNS as in control hosts. Thus, the transplanted projection did not appear to be influenced by the host's optic nerves and tracts or lack of them. In spite of the transplanted optic fibers' taking abnormal paths, they made normally organized topographic maps on the host tecta. The visual and somatosensory topographic projections to the tectum were found to be in near perfect register normally, but in eyeless mutants to which rotated eyes had been transplanted, they were not. Acetylcholinesterase activity, found in the primary optic neuropil in normal animals, was greatly diminished in eyeless mutants, yet normal mutants with grafted eyes. Finally, transplantation of an eye to an eyeless mutant corrected the abnormally dark pigmentation caused by eyelessness but only in those cases of bilateral central innervation."	"4 S RNA in regenerating optic axons of goldfish. Previous experiments have demonstrated that 4 S RNA is transported axonally during the reconnection period of optic nerve regeneration in goldfish. The present experiments were performed to determine whether 4 S RNA is transported axonally during later, maturational stages of nerve regeneration and to examine some of the characteristics of 4 S RNA in regenerating axons. [3H]Uridine was injected into both eyes of fish 18 days (near the time of reconnection) after bilateral optic nerve crush and the fish were sacrificed at various times up to 180 days after injection. [2H]RNA was isolated by phenol extraction and ethanol precipitation from 24 pooled tecta and fractionated by SDS-polyacrylamide tube gel electrophoresis. Data from these experiments showed that 70% of the [3H]RNA is present as 4 S RNA 12 days after injection, and 60 days after injection, this value is still approximately 50%. When nerves were cut 36 days after injection (54 days post-crush) and allowed to degenerate for 6 days before determining tectal [3H]RNA, the majority of the 4 S[3H]RNA was lost from the tectum. This indicates that up to 36 days after injection, 4 S [3H]RNA remains within regenerating axons and that it is unlikely that significant amounts of axonally transported 4 S RNA are transferred out of the axon to surrounding cells. In other experiments, the time of sacrifice after injection was held constant and the time of injection after nerve crush was varied. Analysis of tectal [3H]RNA showed that the major period of axonal transport of 4 S [3H]RNA was in early stages of regeneration at 24 and 36 days after nerve crush and that the amount of 4 S [3H]RNA which is transported axonally decreased at later time points. Calculations of the amount of axonal 4 S [3H]RNA versus what is synthesized in periaxonal cells gave results suggesting that 4 S RNA in regeneration axons turns over relatively slowly when compared with 4 S RNA in tectal cells."	"Peripheral control of midbrain mitotic activity in the frog. Eyes were removed unilaterally from stage 19-25 embryos and stage I larvae of Rana pipiens. Control and operated animals were fixed 2-27 days later, at stages I through V+. Midbrains were removed and sectioned, and complete counts of all mitoses in both tecta were made, to permit comparisons between tecta receiving optic nerve fibers and those lacking them. Differences between the two sides were insignificant in control animals and in those fixed at stages I and II. In the 39 stage III animals differences approached significance (P less than 0.06) whereas for stages IV and V, with 20 animals in each group, significance was seen (P less than 0.01). Rostral parts of the tectum, richly supplied by optic nerve fibers, showed much greater percentage differences in mitotic activity than did the caudal parts of the tectum, poorly supplied or lacking such fiber input. Overall, areas of ventricular surface in the affected tecta at stages IV and V were reduced very nearly to the same degree as was cell division. The role of the optic nerve fibers in maintaining division rates is made evident, particularly by the reduction of numbers of prospective ependymal cells. That the influence is seen so very early implies that production of prospective neurons, not just glia, has been affected."	"Connections of the amygdala of the rat. IV: Corticoamygdaloid and intraamygdaloid connections as studied with axonal transport of horseradish peroxidase. The corticoamygdaloid and intraamygdaloid projections of the rat were studied by the use of retrograde transport of horseradish peroxidase (HRP). Observations based on anterograde transport of the enzyme were exploited to determine the course of the intrinsic connections. The HRP was injected stereotactically by means of iontophoresis. Most of the amygdaloid nuclei were selectively injected, and all but a few were reached by more than one approach. The vast majority of corticoamygdaloid fibers was found to originate in cortical areas defined as allocortical (Stephan, '75). From the medial frontal cortex the central amygdaloid nucleus (AC) receives a hitherto undescribed projection originating in the tenia tecta; and both the AC and the lateral amygdaloid nucleus (AL) receive fibers from the prelimbic and infralimbic areas. The anterior cingulate area entertains a weak connection with the basolateral amygdaloid nucleus (BL). As to the insular cortex, the posterior agranular insular area projects to all amygdaloid subdivisions; the BL, AC, and the anterior cortical nucleus (COa) receive, in addition, fibers from the ventral agranular area. The prepyriform cortex connects with the entire amygdala except the medial nucleus (Am). The amygdala receives afferents from a transitional area between the amygdala and the entorhinal area. The entorhinal area proper is related to the amygdala via projections from the ventral part of the lateral entorhinal area to the AL and from the dorsal part of the lateral entorhinal area to the BL. The former nucleus also receives fibers from the perirhinal region. Additional amygdalopetal connections from the hippocampal region include a previously undescribed projection from the temporal two-thirds of CA1 to the AL and BL and to the posterior cortical nucleus (COp) with the adjacent periamygdaloid cortex (PAC). The subiculum projections to the AL, and more modestly to other amygdaloid nuclei. There is an extensive network of intraamygdaloid connections, the Am and AC being the only nuclei not giving rise to the intrinsic fibers."	"Effects of enucleation on high-affinity binding sites in chick optic tecta. The effect of unilateral eye extirpation on the development of the chick optic tectum has been studied in both the embryo and the newly hatched chick. Although the prevention of normal afferentation of the embryonic tectum retarded its growth, there appeared to be a significant increase of muscarinic acetylcholine binding site in the noninnervated tectum. This phenomenon was repeated also in the posthatch denervated system wherein the functioning optic nerve is severed. A significant increase in the number of binding sites as well as reduced dissociation constant of the interactions of this receptor with [3H]quinuclindinyl benzilate was found in the deafferented optic tectum. This may suggest the presence of a denervation-supersensitivity-like modulation. Similar increases were not detected with other binding sites studied in either the noninnervated embryonic or deafferented posthatch optic lobes. The possibility that acetylcholine is a primary neurotransmitter of the optic system is discussed."	"In vitro experiments on axon guidance demonstrating an anterior-posterior gradient on the tectum. Axonal growth cones originating from explants of embryonic chick retina were simultaneously exposed to two different cell monolayers and their preference for particular monolayers as a substrate for growth was determined. These experiments show that: (1) nasal retinal axons can distinguish between retinal and tectal cells; (2) temporal retinal axons can distinguish between tectal cells that originated from different positions within the tectum along the antero-posterior axis; (3) axons originating from nasal parts of the retina have different recognizing capabilities from temporal axons; (4) the property of the tectal cells, which is attractive for temporal axons, has a graded distribution along the antero-posterior axis of the tectum; and (5) this gradient also exists in non-innervated tecta."	"Interactions between compound and normal eye projections in dually innervated tectum: a study of optic nerve regeneration in Xenopus. Right compound eyes were formed in Xenopus embryos at tailbud stages by the fusion of two nasal (NN), two temporal (TT) or two ventral (VV) halves. The left eye was kept intact. Two to four weeks after metamorphosis the optic nerve from the intact eye was severed to induced bilateral optic nerve regeneration. The contralateral retinotectal projections from the compound eye and the induced ipsilateral projections from the intact eye to the same (dually innervated) tectum were studied by [3H]proline autoradiography and visuotectal mapping from 3 to 6 months after the postmetamorphic surgery. The results showed that the NN, TT and VV projections, in the presence of optic fibres from the intact eye failed to spread across the whole extent of the dually innervated tectum. Unexpectedly the bulk of the regenerating projection from the intact eye was confined to the previously uninnervated parts of the dually innervated tecta, the caudomedial region in TT, the rostrolateral region in NN and the lateral region in VV eye animals. The partial segregation of the two populations of optic fibres in the dually innervated tectum has been taken as a further indication of the role of fibre-fibre and fibre-tectum interactions in retinotectal map formation."	"Rapid effect of enucleation on neurotransmitter receptor binding in chick optic tecta. NA"	"Efferent connections of the olfactory bulb in the opossum (Didelphis marsupialis aurita): a Fink-Heimer study. The efferent concentrations of the olfactory bulb (OB) in the opossum (Didelphis marsupialis aurita) were studied by the aid of the Fink-Heimer technique. Following lesions restricted to the OB, ipsilateral degenerating fibers entered the lateral olfactory tract and were treated to terminal fields essentially limited to the outer portion of the plexiform layer (sublamina IA) of the following structures: all the subdivisions of the anterior olfactory nucleus, the rostroventral tenia tecta, the full extent of the olfactory tubercle, the nucleus of the lateral olfactory tract, the anterior portion of the medial amygdaloid nucleus, the whole cortical amygdaloid nucleus (in the posteromedial subdivision of this structure the degeneration was very scanty), and the sulcal, piriform, and lateral entorhinal cortices. Some degree of topographical organization in the OB projections was noticed in the rostral portion of the lateral olfactory tract and within the external and lateral subdivisions of the anterior olfactory nucleus. In another series of experiments, when the lesion also involved the accessory olfactory bulb, heavy terminal degeneration occurred along the whole extent of the medial amygdaloid nucleus and in the posteromedial subdivision of the cortical amygdaloid nucleus. These findings indicate that, although very similar to those described in other mammals, the OB efferent connections in the opossum present some peculiarities; namely, the existence of dense terminal fields in the sulcal cortex and in the rostral district of the medial amygdaloid nucleus."	"The growth and organization of the optic nerve and tract in juvenile and adult goldfish. The optic nerves, tracts, and tecta of goldfish, 1 to 5 years old, have been studied anatomically using light and electron microscopy, horseradish peroxidase (HRP), and tritiated proline radioautography. The aims were to document an earlier inference that fibers are added to the nerve continually and to describe the growth and organization of the pathway. (1) The numbers of optic fibers were counted in electron micrographs of the nerve. There were about 120,000, 165,000 and 180,000 in 1-, 3-, and 5-year-old fish, respectively. (2) In young fish, there are a few thousand nonmyelinated fibers which exit the retina together and cluster together in the nerve and tract. When the axons of only the newest (peripheral) ganglion cells were cut intraretinally, fibers in and around the bundles of nonmyelinated fibers degenerated. The nonmyelinated fibers are, therefore, the new ones. (3) Fibers from ventral or dorsal hemiretinas were backfilled selectively with HRP introduced into one of the brachia of the optic tract. Behind the optic papilla, where the cross-section of the optic nerve was trapezoidal, the new fibers were found in a strip along the narrow base of the two flanking zones. Closer to the brain, the fibers from the two hemiretinas intermingled before being segregated again at the origin of the brachia. (4) Small groups of ganglion cells were labeled by intraretinal injection of HRP and their fibers were traced in sections of the nerve and tract. The labeled fibers were clustered, but the positions of the fibers in the cross-section of the nerve were defined less precisely than the positions of the somata in the retina. (5) Hemisection of the nerve in the orbit, followed by intraocular injection of tritiated proline, produced radioautographs with an unlabeled annular zone of tectum. Since the retina projects topographically to the tectum, the severed fibers must have originated from an annular region of the retina. We infer that new fibers are added to the nerve continually and that the retinal origins of fibers are correlated with their positions in the cross-section of the nerve. These rules of order change with distance from the retina; the strict order at the optic papilla changes gradually to an equally strict but different, order at the level of the brachia."	"An autoradiographic study of the efferent connections of the entorhinal cortex in the rat. The longer connections of the entorhinal cortex have been studied autoradiographically in a series of rats, each of which received a small injection of 3H-amino acids in one of the various cytoarchitectonic subfields of the entorhinal cortex. The major findings can be summarized as follows. Whereas the projection of the lateral entorhinal area (LEA) to the dentate gyrus is broad in its longitudinal extent, the medial entorhinal area (MEA), and especially the ventral portion of this zone, projects in a more lamellar fashion. In the transverse plane the LEA preferentially projects to the inner (dorsal) blade of the dentate gyrus, while the MEA innervates both blades equally. Within the radial dimension, the entorhinal cortex projects to the dentate gyrus according to a medial to lateral gradient, with lateral portions of the LEA projecting along the pial surface and successively more medial portions of the entorhinal projecting closer to the granule cells. The commissural entorhinal to dentate projections are similar to the ipsilateral projections in location; however, they are considerably reduced in septotemporal extent and do not arise from cells in the ventral half of either LEA or the intermediate entorhinal area (IEA). The projection of the entorhinal cortex to Ammon's horn reflects the same longitudinal characteristics as the dentate projections. An alvear input which extends only to the pyramidal cells at the CA1-subicular junction was most noticeable at ventral hippocampal levels. Finally the extrahippocampal projections have been analyzed. These arise predominantly from cells in the LEA and project forward along the angular bundle to the piriform and periamygdaloid cortices, as well as the endopiriform nucleus, the lateral, basolateral, and cortical amygdaloid nuclei, the nucleus of the lateral olfactory tract, the olfactory tubercle, the anterior olfactory nucleus, the taenia tecta, and the indusium griseum. These extrinsic projections are to a large extent reciprocal to the major extrinsic inputs to the LEA."	"Anatomy and physiology of experimentally produced striped tecta. Transplantation of a third eye primordium to the forebrain region of a frog (Rana pipiens) embryo causes two retinal projections to converge on a single tectal lobe. These projections form stereotyped eye-specific termination bands (Constantine-Paton, M., and M. I. Law (1978) Science 202: 639-641) that are similar to the source-specific stripes found normally in many regions of the mammalian brain. In the present study, we use quantitative analyses of anatomical data and double labeling techniques to demonstrate that induced bands of three-eyed frogs are approximately 200 micrometers wide, that they invariably run in a rostrolateral to caudomedial direction, and that they represent interdigitating synaptic zones which fill the entire superficial neuropil of the dually innervated tectal lobe. This periodic segregation pattern is not seen in the superinnervated diencephalon or in the optic tracts. Morphometric measurements on animals with dually innervated tectal lobes revealed an approximate 30% hyperplasia that was restricted largely to the deeper predominantly cellular tectal layers. Each of the banded retinal projections occupied neuropil volumes that were roughly 50% smaller than the volume occupied by the noncompeting retina of the same animal. Eye-specific segregation was detected with extracellular recording techniques as an ability of one of the two eyes to elicit consistently more and larger action potentials throughout a radial penetration of the superficial tectal neuropil. In several preparations, electrolytic lesions confirmed that physiologically defined positions of eye dominance corresponded to a band from the same eye. Maps of the visual field projections within dually innervated tecta were relatively normal and their orientation was consistent with the initial embryonic orientation of the retinas. Eye laterality, time of arrival, or fasciculation during growth are not responsible for this induced banding. Instead, our results are attributed to two mechanisms that are probably fundamental to neural mapping. These are: differential affinities between retinal and tecta loci which normally align the projection by bringing together appropriate pre- and postsynaptic areas and interactions among retinal ganglion cell fibers. The latter causes axons from physically neighboring retinal ganglion cell bodies to terminate together within the tectum and consequently increases the internal order of map. We propose that these same two mapping mechanisms may be responsible for the afferent segregation found in diverse regions of many vertebrate brains."	"Electrophoretic analysis of axonally transported proteins in toad retinal ganglion cells. As a preliminary step to studying changes in axonal transport in regenerating neurons, we have analyzed the composition and organization of polypeptides normally axonally transported in a neuronal system capable of regeneration, i.e., the retinal ganglion cells of the toad, Bufo marinus. We labeled proteins synthesized in the retina with 35S-methionine and subsequently used one-dimensional sodium dodecyl sulfate polyacrylamide gel electrophoresis to analyze labeled, transported proteins in tissues containing segments of the axons (the optic nerve, optic tract, and optic tecta) of the retinal ganglion cells. The transported polypeptides could be divided into five groups according to their apparent transport velocities. Many of the polypeptides of each group were electrophoretically similar to polypeptides of corresponding groups previously described in rabbit and guinea pig retinal ganglion cells, and in some cases, additional properties of the polypeptides indicated that the transported materials of the two vertebrate classes were homologous. These results serve two purposes. First they establish the retinal ganglion cells of the toad Bufo marinus as a model system in which changes in gene expression related to regeneration may be studied. Second they show that the organization and many aspects of the composition of axonal transport in retinal ganglion cells have been conserved in animals as unrelated as amphibians, and mammals."	"Retinal projection in a non-visual area after bilateral tectal ablation in goldfish. If, in the adult goldfish, one optic tectum is ablated, the regenerating optic axons from the contralateral retina innervate the remaining tectum, where they form a retinotopically ordered map. The pathway for this induced ipsilateral projection coincides with many of the pathways which normally connect the two tecta, but early in regeneration the optic fibres also enter non-visual centres to which there are degenerating tectal efferent pathways to follow. We have therefore now investigated the fate of regenerating optic axons in goldfish from which both optic tecta have been removed; they are found to innervate non-visual centres, where again they generate a retinotopic map."	"Preferential accumulation of [3H] corticosterone in chick brain during embryonic development. In the present study, we examined the distribution of [3H]corticosterone ([3H]B) in chick embryonic brain during development using two different routes of administration: intracerebral and intraocular. After injection of 1 microCi into the brain of 8-day embryos, [3H]B was preferentially accumulated in the retinas, whereas regions such as cerebral hemispheres, optic tecta, and midbrain showed lower amounts of [3H]B. In 14-day embryos, a slightly higher amount of [3H]B was found in retinas and midbrain in comparison with other regions of the brain. After injection into the eye, [3H]B seemed to easily diffuse to brain regions and toe preferentially accumulate in the opposite eye and very slowly diffused to other brain areas. The accumulation of the hormone in the retina parallels the presence of hormone receptors reported by others. A correlation between the preferential accumulation of hormone and its action is proposed."	"Mapping retinal projections from double nasal and double temporal compound eyes to dually innervated tectum in Xenopus. Right double nasal (NN) and left double temporal (TT) compound eyes were formed in the same animal by the fusion of two similar halves at early embryonic stages in Xenopus. After metamorphosis either the right or left optic nerve was sectioned to induce optic fiber regeneration from one of the two eyes to both tecta. Retinal projections from each eye to the monocularly and dually innervated tecta were later investigated by visuotectal mapping and by [3H]proline autoradiography. Visuotectal and autoradiographic maps from NN and TT eyes showed the restoration of typical compound eye projections where each of the hemiretinal projections extended across the entire contralateral (monocularly innervated) tectum. In contrast, the tectum ipsilateral to the optic nerve section was dually innervated by fibers from the TT and NN eyes. The rostral and caudal poles of the tectum were innervated by fibers from the TT and NN eyes respectively, whereas the middle third received partially overlapping projections from both eyes. Thus the full expansion of the hemiretinal projection across the dually innervated tectum was prevented by fiber-fiber interactions between optic fibers from the TT and NN eyes. It is concluded that tectal polarity cues determine the proper orientation, and fiber-fiber interaction the extent and orderliness of the retinotectal map. The formation of the latter two features of the retinotectal map does not require the existence of independent tectal positional markers."	"Topographic and morphometric effects of bilateral embryonic eye removal on the optic tectum and nucleus isthmus of the leopard frog. Rana pipiens were raised through metamorphosis after extirpation of both eye primordia at Shumway embryonic stage 17 (Shumway '40). The visual connections between the isthmic nuclei and the optic tectum were examined in these animals using horseradish peroxidase (HRP) histochemistry. Isthmo-tectal projections are normally aligned with the primary retinotectal map. We asked whether these connections would develop normal topographic organization in the absence of normal retinal input. HRP was formed into a solid pellet (congruent to 200-500 micrometer diameter) and inserted into one tectal lobe on the tip of a fine metal probe. The procedure produced relatively restricted retrograde label in somas and dendrites in both isthmi nuclei. In the nucleus isthmus ipsilateral to the tectal lobe receiving the HRP pellet, processes of tecto-isthmi neurons were labeled by anterograde transport. The topography of the isthmo-tectal and tecto-isthmic projections were identical in the developmentally enucleated animals and in normal frogs, even though eye removal severely reduced the volume of the optic tecta and the isthmi nuclei. Thus our analyses indicate that retinal contacts do not play an active role in the development of the positional or polarity cues that are involved in &quot;mapping&quot; projections between central visual nuclei. These results are discussed in the context of peripheral specification of central connections and in terms of models that have recently been proposed to explain the development of the retinotectal system."	"Spreading of hemiretinal projections in the ipsilateral tectum following unilateral enucleation: a study of optic nerve regeneration in Xenopus with one compound eye. Right compound eyes were formed in Xenopus embryos at stages 32-33 by the fusion of two nasal (NN), two ventral (VV) or two temporal (TT) halves. Shortly after metamorphosis the optic nerve from the compound eye was sectioned and the left intact eye removed. The retinotectal projections from the compound eye to the contralateral and ipsilateral tecta were studied by [3H]proline autoradiography and electrophysiological mapping between 6 weeks and 5 months after the postmetamorphic surgery. The results showed that NN and VV eyes projected to the entire extent of both tecta. In contrast, optic fibre projection from TT eyes, although more extensive than the normal temporal hemiretinal projection, failed to cover the caudomedial portion of the tecta. The visuotectal projections in all three combinations corresponded to typical reduplicated maps to be expected from such compound eyes, where each of the hemiretinae projected across the contralateral and ipsilateral tecta in an overlapping fashion. The rapid expansion of the hemiretinal projections of the compound eyes in the ipsilateral tectum following the removal of the resident optic fibre projection suggests that tectal markers may be carried and deployed by the incoming optic fibres themselves."	"Density of optic terminals in half tecta of goldfish with compressed retinotectal projections. NA"	"Embryonic chick retinal ganglion cells identified &quot;in vitro&quot;. Their survival is dependent on a factor from the optic tectum. When HRP is injected into the optic tecta of embryonic or newly hatched chicks, the ganglion cells in the contralateral retina can be successfully dissociated into culture and identified at any time by appropriate histochemical staining. Histological examination of whole mounts of retinae both ipsilateral and contralateral to an injection site indicated that no HRP diffused out of an injected tectum, and that the only reaction product that could be visualized was restricted to the ganglion cell layer of the contralateral eye. Because retinal ganglion cells are the only retinal neurons to project to the optic tectum, the intraxonal retrograde transport of HRP to these cells allows their unequivocal identification from amongst the heterogeneous population of retinal neurons present after dispersal into single cells in monolayer culture. The presence of HRP in the cell bodies did not appear to impair their ability to survive, grow or express neurites. Counts of labeled cells from progressively aged birds confirmed that the peak number of generated ganglion cells occurs on embryonic day 10,and that is a 40% decline in the number these neurons over the following 3 days. However, when labelled ganglion cells from 10 day embryos were grown in culture with optic tectum, all the ganglion cells survived over the following 4 days, including those destined to die in vivo. This trophic effect cannot be induced by cerebellum, but is partly induced by media first conditioned over tectal cells. The trophic effect exerted by optic tectum appears therefore to be specific and chemically mediated. We suggest that the death of retinal ganglion cells in vivo may be a consequence of the inability of some cells to establish adequate supplies of a growth factor from the optic tectum."	NA
+"TMC1"	"nonsyndromic genetic deafness"	"In vivo base editing restores sensory transduction and transiently improves auditory function in a mouse model of recessive deafness. Most genetic diseases arise from recessive point mutations that require correction, rather than disruption, of the pathogenic allele to benefit patients. Base editing has the potential to directly repair point mutations and provide therapeutic restoration of gene function. Mutations of transmembrane channel-like 1 gene (TMC1) can cause dominant or recessive deafness. We developed a base editing strategy to treat Baringo mice, which carry a recessive, loss-of-function point mutation (c.A545G; resulting in the substitution p.Y182C) in Tmc1 that causes deafness. Tmc1 encodes a protein that forms mechanosensitive ion channels in sensory hair cells of the inner ear and is required for normal auditory function. We found that sensory hair cells of Baringo mice have a complete loss of auditory sensory transduction. To repair the mutation, we tested several optimized cytosine base editors (CBEmax variants) and guide RNAs in Baringo mouse embryonic fibroblasts. We packaged the most promising CBE, derived from an activation-induced cytidine deaminase (AID), into dual adeno-associated viruses (AAVs) using a split-intein delivery system. The dual AID-CBEmax AAVs were injected into the inner ears of Baringo mice at postnatal day 1. Injected mice showed up to 51% reversion of the Tmc1 c.A545G point mutation to wild-type sequence (c.A545A) in Tmc1 transcripts. Repair of Tmc1 in vivo restored inner hair cell sensory transduction and hair cell morphology and transiently rescued low-frequency hearing 4 weeks after injection. These findings provide a foundation for a potential one-time treatment for recessive hearing loss and support further development of base editing to correct pathogenic point mutations."	"Disruption of tmc1/2a/2b Genes in Zebrafish Reveals Subunit Requirements in Subtypes of Inner Ear Hair Cells. Detection of sound and head movement requires mechanoelectrical transduction (MET) channels at tips of hair-cell stereocilia. In vertebrates, the transmembrane channel-like (TMC) proteins TMC1 and TMC2 fulfill critical roles in MET, and substantial evidence implicates these TMCs as subunits of the MET channel. To identify developmental and functional roles of this Tmc subfamily in the zebrafish inner ear, we tested the effects of truncating mutations in tmc1, tmc2a, and tmc2b on in vivo mechanosensation at the onset of hearing and balance, before gender differentiation. We find that tmc1/2a/2b triple-mutant larvae cannot detect sound or orient with respect to gravity. They lack acoustic-evoked behavioral responses, vestibular-induced eye movements, and hair-cell activity as assessed with FM dye labeling and microphonic potentials. Despite complete loss of hair-cell function, tmc triple-mutant larvae retain normal gross morphology of hair bundles and proper trafficking of known MET components Protocadherin 15a (Pcdh15a), Lipoma HMGIC fusion partner-like 5 (Lhfpl5), and Transmembrane inner ear protein (Tmie). Transgenic, hair cell-specific expression of Tmc2b-mEGFP rescues the behavioral and physiological deficits in tmc triple mutants. Results from tmc single and double mutants evince a principle role for Tmc2a and Tmc2b in hearing and balance, respectively, whereas Tmc1 has lower overall impact. Our experiments reveal that, in developing cristae, hair cells stratify into an upper, Tmc2a-dependent layer of teardrop-shaped cells and a lower, Tmc1/2b-dependent tier of gourd-shaped cells. Collectively, our genetic evidence indicates that auditory/vestibular end organs and subsets of hair cells therein rely on distinct combinations of Tmc1/2a/2b.SIGNIFICANCE STATEMENT We assessed the effects of tmc1/2a/2b truncation mutations on mechanoelectrical transduction (MET) in the inner-ear hair cells of larval zebrafish. tmc triple mutants lacked behavioral responses to sound and head movements, while further assays demonstrated no observable mechanosensitivity in the tmc1/2a/2b triple mutant inner ear. Examination of tmc double mutants revealed major contributions from Tmc2a and Tmc2b to macular function; however, Tmc1 had less overall impact. FM labeling of lateral cristae in tmc double mutants revealed the presence of two distinct cell types, an upper layer of teardrop-shaped cells that rely on Tmc2a, and a lower layer of gourd-shaped cells that rely on Tmc1/2b."	"TMIE Defines Pore and Gating Properties of the Mechanotransduction Channel of Mammalian Cochlear Hair Cells. TMC1 and TMC2 (TMC1/2) have been proposed to form the pore of the mechanotransduction channel of cochlear hair cells. Here, we show that TMC1/2 cannot form mechanotransduction channels in cochlear hair cells without TMIE. TMIE binds to TMC1/2, and a TMIE mutation that perturbs TMC1/2 binding abolishes mechanotransduction. N-terminal TMIE deletions affect the response of the mechanotransduction channel to mechanical force. Similar to mechanically gated TREK channels, the C-terminal cytoplasmic TMIE domain contains charged amino acids that mediate binding to phospholipids, including PIP2. TMIE point mutations in the C terminus that are linked to deafness disrupt phospholipid binding, sensitize the channel to PIP2 depletion from hair cells, and alter the channel's unitary conductance and ion selectivity. We conclude that TMIE is a subunit of the cochlear mechanotransduction channel and that channel function is regulated by a phospholipid-sensing domain in TMIE with similarity to those in other mechanically gated ion channels."	"Ankyrin Is An Intracellular Tether for TMC Mechanotransduction Channels. Mechanotransduction channels have been proposed as force sensors in various physiological processes, such as hearing and touch. In particular, TMC1 has been shown to constitute the pore of hair cell mechanotransduction channels, but little is known about how force is sensed by TMC channels. Here, we identify UNC-44/ankyrin as an essential component of the TMC-1 mechanotransduction channel complex in the sensory cilia of Caenorhabditis elegans mechanoreceptor neurons. Ankyrin binds indirectly to TMC-1 via evolutionarily conserved CIB proteins, which are required for TMC-1-mediated mechanosensation in C. elegans OLQ neurons and body wall muscles. Mechanosensory activity conferred by ectopically expressed TMCs in mechanoinsensitive neurons depends on both ankyrin and CIB proteins, indicating that the ankyrin-CIB subcomplex is required for TMC mechanosensitivity. Our work indicates that ankyrin is a long-sought intracellular tether that transmits force to TMC mechanotransduction channels."	"In or Out? New Insights on Exon Recognition through Splice-Site Interdependency. Noncanonical splice-site mutations are an important cause of inherited diseases. Based on in vitro and stem-cell-based studies, some splice-site variants show a stronger splice defect than expected based on their predicted effects, suggesting that other sequence motifs influence the outcome. We investigated whether splice defects due to human-inherited-disease-associated variants in noncanonical splice-site sequences in ABCA4, DMD, and TMC1 could be rescued by strengthening the splice site on the other side of the exon. Noncanonical 5'- and 3'-splice-site variants were selected. Rescue variants were introduced based on an increase in predicted splice-site strength, and the effects of these variants were analyzed using in vitro splice assays in HEK293T cells. Exon skipping due to five variants in noncanonical splice sites of exons in ABCA4, DMD, and TMC1 could be partially or completely rescued by increasing the predicted strengths of the other splice site of the same exon. We named this mechanism &quot;splicing interdependency&quot;, and it is likely based on exon recognition by splicing machinery. Awareness of this interdependency is of importance in the classification of noncanonical splice-site variants associated with disease and may open new opportunities for treatments."	"[Sequencing of 100 common variation sites of 18 deafness susceptibility genes among 16 182 individuals from Dongguan]. To determine the type and carrier rate of deafness-related variants in Dongguan, China. A total of 16 182 subjects were screened. Heel blood samples were collected from newborns, while peripheral venous blood samples were collected from the remainders. For each individual, 100 variations of 18 deafness susceptibility genes were detected. In total 1631 deafness-related variants (including 5 homozygous mutations) were detected, which gave a detection rate of 10.08%. The detection rate of SLC26A4 gene variants was the highest (845 cases, 5.22%), which was followed by GJB2 (673 cases, 4.16%), GJB3 (100 cases, 0.62%), TMC1 (12 cases, 0.07%), and MYO15A (1 case, 0.01%). The detection rate for GJB2 c.235delC variant was the highest (524 cases, 3.24%), which was followed by SLC26A4 IVS7-2A&gt;G variant (270 cases, 1.67%). Thirty three individuals (0.20%) carried two variants at the same time, 7 of them (0.04%) carried compound heterozygous variants of the same gene. To expand the range of screening can help with determination of the carrier status and provision of early intervention and genetic counseling for the examinees."	"Tmc proteins are essential for zebrafish hearing where Tmc1 is not obligatory. Perception of sound is initiated by mechanically gated ion channels at the tips of stereocilia. Mature mammalian auditory hair cells require transmembrane channel-like 1 (TMC1) for mechanotransduction, and mutations of the cognate genetic sequences result in dominant or recessive heritable deafness forms in humans and mice. In contrast, zebrafish lateral line hair cells, which detect water motion, require Tmc2a and Tmc2b. Here, we use standard and multiplex genome editing in conjunction with functional and behavioral assays to determine the reliance of zebrafish hearing and vestibular organs on Tmc proteins. Surprisingly, our approach using multiple mutant alleles demonstrates that hearing in zebrafish is not dependent on Tmc1, nor is it fully dependent on Tmc2a and Tmc2b. Hearing however is absent in triple-mutant zebrafish that lack Tmc1, Tmc2a and Tmc2b. These outcomes reveal a striking resemblance of Tmc protein reliance in the vestibular sensory epithelia of mammals to the maculae of zebrafish. Moreover, our findings disclose a logic of Tmc use where hearing depends on a complement of Tmc proteins beyond those employed to sense water motion."	"Systemic Fluorescent Gentamicin Enters Neonatal Mouse Hair Cells Predominantly Through Sensory Mechanoelectrical Transduction Channels. Systemically administered aminoglycoside antibiotics can enter inner ear hair cells and trigger apoptosis. However, the in vivo route(s) by which aminoglycoside antibiotics enter hair cells remains controversial. Aminoglycosides can enter mouse hair cells by endocytosis or by permeation through transmembrane ion channels such as sensory mechanoelectrical transduction (MET) channels, transient receptor potential (TRP) channels, P2X channels, Piezo2-containing ion channels, or a combination of these routes. Transmembrane channel-like 1 (TMC1) and TMC2 are essential for sensory MET and appear to be the pore-forming components of sensory MET channels. The present study tested the hypothesis that systemic fluorescent gentamicin enters mouse hair cells predominantly through sensory MET channels. We employed Tmc1<sup>Δ</sup>, Tmc2<sup>Δ</sup>, and Tmc1::mCherry mice. In Tmc1::mCherry mice, the transgene was integrated on the X chromosome, resulting in mosaic expression of TMC1-mCherry in the hair cells of female heterozygous mice. After systemic administration of gentamicin-conjugated Texas Red (GTTR) into Tmc1<sup>Δ</sup>;Tmc2<sup>Δ</sup> mice and wild-type mice at postnatal day 4 (P4), robust GTTR fluorescence was detected in wild-type hair cells, whereas little or no GTTR fluorescence was detected in Tmc1<sup>Δ</sup>;Tmc2<sup>Δ</sup> hair cells. When GTTR was injected into developing mice at P0, P2, P4, or P6, the GTTR fluorescent intensity gradually increased from P0 to P4 in wild-type hair cells, whereas the intensity was stably low from P0 through P6 in Tmc1<sup>Δ</sup>;Tmc2<sup>Δ</sup> hair cells. The increase in the GTTR intensity coincided with the spatio-temporal onset of sensory MET in wild-type hair cells. In Tmc1::mCherry cochleae, only hair cells that showed a significant uptake of systemic GTTR took up FM1-43. Transmission electron microscopy could detect no disruption of normal endocytosis at the apical surface of Tmc1<sup>Δ</sup>;Tmc2<sup>Δ</sup> hair cells in vitro. These results provide substantial novel evidence that in vivo gentamicin enters neonatal mouse hair cells predominantly through sensory MET channels and not via endocytosis."	"[INNOVATIONS IN RESEARCH OF HEREDITARY DEAFNESS]. Deafness is the most common sensory disability in humans affecting all aspects of life. Approximately 50% of congenital deafness is hereditary and about half of genetic deafness is still unsolved. To date, more than 150 genes are known to cause hearing loss worldwide, with specific genes contributing to deafness in distinct populations. Of these, more than 20 genes are involved in deafness among the Jewish Israeli hearing-impaired population. The most common gene in many worldwide populations, including Israel, is GJB2, which encodes the connexin 26 protein. The second most common gene among Jews is TMC1, with most pathogenic variants found only among Jews of Moroccan origin. Most other pathogenic variants found in the Jewish population are origin-specific and not found in other Jewish ethnic groups or in other worldwide populations. In patients where hereditary deafness is suspected, known variants in the specific ethnicity are routinely examined. In Israel, the GJB2 gene is screened in all cases of hereditary deafness and the TMC1 gene is screened in deaf persons of Jewish Moroccan origin. In cases where no variant is found in a known gene, more comprehensive diagnostic tests should be used. Since the beginning of the deep sequencing era, less than a decade ago, the number of deafness-related genes in the Jewish population has increased by threefold. Identifying the pathogenic variant makes it possible to study molecular pathogenesis, to anticipate and understand the prognosis, to calculate probability of concomitant morbidity, to offer prenatal diagnosis, prevent recurrence of deafness in the family and early rehabilitation. Currently, cochlear implant offers the greatest chance for rehabilitation. The hope is that understanding the molecular pathogenesis will in the future lead to personalized medical treatment. We review the genetics of deafness, with an emphasis on the Jewish population in Israel, new diagnostic methods and suggest a diagnostic algorithm and future treatment methods."	"The lhfpl5 Ohnologs lhfpl5a and lhfpl5b Are Required for Mechanotransduction in Distinct Populations of Sensory Hair Cells in Zebrafish. Hair cells sense and transmit auditory, vestibular, and hydrodynamic information by converting mechanical stimuli into electrical signals. This process of mechano-electrical transduction (MET) requires a mechanically gated channel localized in the apical stereocilia of hair cells. In mice, lipoma HMGIC fusion partner-like 5 (LHFPL5) acts as an auxiliary subunit of the MET channel whose primary role is to correctly localize PCDH15 and TMC1 to the mechanotransduction complex. Zebrafish have two lhfpl5 genes (lhfpl5a and lhfpl5b), but their individual contributions to MET channel assembly and function have not been analyzed. Here we show that the zebrafish lhfpl5 genes are expressed in discrete populations of hair cells: lhfpl5a expression is restricted to auditory and vestibular hair cells in the inner ear, while lhfpl5b expression is specific to hair cells of the lateral line organ. Consequently, lhfpl5a mutants exhibit defects in auditory and vestibular function, while disruption of lhfpl5b affects hair cells only in the lateral line neuromasts. In contrast to previous reports in mice, localization of Tmc1 does not depend upon Lhfpl5 function in either the inner ear or lateral line organ. In both lhfpl5a and lhfpl5b mutants, GFP-tagged Tmc1 and Tmc2b proteins still localize to the stereocilia of hair cells. Using a stably integrated GFP-Lhfpl5a transgene, we show that the tip link cadherins Pcdh15a and Cdh23, along with the Myo7aa motor protein, are required for correct Lhfpl5a localization at the tips of stereocilia. Our work corroborates the evolutionarily conserved co-dependence between Lhfpl5 and Pcdh15, but also reveals novel requirements for Cdh23 and Myo7aa to correctly localize Lhfpl5a. In addition, our data suggest that targeting of Tmc1 and Tmc2b proteins to stereocilia in zebrafish hair cells occurs independently of Lhfpl5 proteins."	"Mechanotransduction-Dependent Control of Stereocilia Dimensions and Row Identity in Inner Hair Cells. Actin-rich structures, like stereocilia and microvilli, are assembled with precise control of length, diameter, and relative spacing. By quantifying actin-core dimensions of stereocilia from phalloidin-labeled mouse cochleas, we demonstrated that inner hair cell stereocilia developed in specific stages, where a widening phase is sandwiched between two lengthening phases. Moreover, widening of the second-tallest stereocilia rank (row 2) occurred simultaneously with the appearance of mechanotransduction. Correspondingly, Tmc1<sup>KO/KO</sup>;Tmc2<sup>KO/KO</sup> or Tmie<sup>KO/KO</sup> hair cells, which lack transduction, have significantly altered stereocilia lengths and diameters, including a narrowed row 2. EPS8 and the short splice isoform of MYO15A, identity markers for mature row 1 (the tallest row), lost their row exclusivity in transduction mutants. GNAI3, another member of the mature row 1 complex, accumulated at mutant row 1 tips at considerably lower levels than in wild-type bundles. Alterations in stereocilia dimensions and in EPS8 distribution seen in transduction mutants were mimicked by block of transduction channels of cochlear explants in culture. In addition, proteins normally concentrated at mature row 2 tips were also distributed differently in transduction mutants; the heterodimeric capping protein subunit CAPZB and its partner TWF2 never concentrated at row 2 tips like they do in wild-type bundles. The altered distribution of marker proteins in transduction mutants was accompanied by increased variability in stereocilia length. Transduction channels thus specify and maintain row identity, control addition of new actin filaments to increase stereocilia diameter, and coordinate stereocilia height within rows."	"Identification of TMC1 as a relatively common cause for nonsyndromic hearing loss in the Saudi population. Hearing loss (HL) is the most common sensory disorder worldwide and genetic factors contribute to approximately half of congenital HL cases. HL is subject to extensive genetic heterogeneity, rendering molecular diagnosis difficult. Mutations of the transmembrane channel-like 1 (TMC1) gene cause hearing defects in humans and mice. The precise function of TMC1 protein in the inner ear is unknown, although it is predicted to be involved in functional maturation of cochlear hair cells. TMC1 mutations result in autosomal recessive (DFNB7/11) and sometimes dominant (DFNA36) nonsyndromic HL. Mutations in TMC1 are responsible for a significant portion of HL, particularly in consanguineous populations. To evaluate the importance of TMC1 mutations in the Saudi population, we used a combination of autozygome-guided candidate gene mutation analysis and targeted next generation sequencing in 366 families with HL previously shown to lack mutations in GJB2. We identified 12 families that carried five causative TMC1 mutations; including three novel (c.362+3A &gt; G; c.758C &gt; T [p.Ser253Phe]; c.1396_1398delACC [p.Asn466del]) and two reported mutations (c.100C &gt; T [p.Arg34Ter]; c.1714G &gt; A [p.Asp572Asn]). Each of the identified recessive mutation was classified as severe, by both age of onset and severity of HL. Similarly, consistent with the previously reported dominant variant p.Asp572Asn, the HL phenotype was progressive. Eight families in our cohort were found to share the pathogenic p.Arg34Ter mutation and linkage disequilibrium was observed between p.Arg34Ter and SNPs investigated. Our results indicate that TMC1 mutations account for about 3.3% (12/366) of Saudi HL cases and that the recurrent TMC1 mutation p.Arg34Ter is likely to be a founder mutation."	"TMC1 and TMC2 Proteins Are Pore-Forming Subunits of Mechanosensitive Ion Channels. Transmembrane channel-like (TMC) 1 and 2 are required for the mechanotransduction of mouse inner ear hair cells and localize to the site of mechanotransduction in mouse hair cell stereocilia. However, it remains unclear whether TMC1 and TMC2 are indeed ion channels and whether they can sense mechanical force directly. Here we express TMC1 from the green sea turtle (CmTMC1) and TMC2 from the budgerigar (MuTMC2) in insect cells, purify and reconstitute the proteins, and show that liposome-reconstituted CmTMC1 and MuTMC2 proteins possess ion channel activity. Furthermore, by applying pressure to proteoliposomes, we demonstrate that both CmTMC1 and MuTMC2 proteins can indeed respond to mechanical stimuli. In addition, CmTMC1 mutants corresponding to human hearing loss mutants exhibit reduced or no ion channel activity. Taken together, our results show that the CmTMC1 and MuTMC2 proteins are pore-forming subunits of mechanosensitive ion channels, supporting TMC1 and TMC2 as hair cell transduction channels."	"TMC1 is an essential component of a leak channel that modulates tonotopy and excitability of auditory hair cells in mice. Hearing sensation relies on the mechano-electrical transducer (MET) channel of cochlear hair cells, in which transmembrane channel-like 1 (TMC1) and transmembrane channel-like 2 (TMC2) have been proposed to be the pore-forming subunits in mammals. TMCs were also found to regulate biological processes other than MET in invertebrates, ranging from sensations to motor function. However, whether TMCs have a non-MET role remains elusive in mammals. Here, we report that in mouse hair cells, TMC1, but not TMC2, provides a background leak conductance, with properties distinct from those of the MET channels. By cysteine substitutions in TMC1, we characterized four amino acids that are required for the leak conductance. The leak conductance is graded in a frequency-dependent manner along the length of the cochlea and is indispensable for action potential firing. Taken together, our results show that TMC1 confers a background leak conductance in cochlear hair cells, which may be critical for the acquisition of sound-frequency and -intensity."	"An uncharacterized region within the N-terminus of mouse TMC1 precludes trafficking to plasma membrane in a heterologous cell line. Mechanotransduction by hair cell stereocilia lies at the heart of sound detection in vertebrates. Considerable effort has been put forth to identify proteins that comprise the hair cell mechanotransduction apparatus. TMC1, a member of the transmembrane channel-like (TMC) family, was identified as a core protein of the mechanotransduction complex in hair cells. However, the inability of TMC1 to traffic through the endoplasmic reticulum in heterologous cellular systems has hindered efforts to characterize its function and fully identify its role in mechanotransduction. We developed a novel approach that allowed for the detection of uncharacterized protein regions, which preclude trafficking to the plasma membrane (PM) in heterologous cells. Tagging N-terminal fragments of TMC1 with Aquaporin 3 (AQP3) and GFP fusion reporter, which intrinsically label PM in HEK293 cells, indicated that residues at the edges of amino acid sequence 138-168 invoke intracellular localization and/or degradation. This signal is able to preclude surface localization of PM protein AQP3 in HEK293 cells. Substitutions of the residues by alanine or serine corroborated that the information determining the intracellular retention is present within amino acid sequence 138-168 of TMC1 N-terminus. This novel signal may preclude the proper trafficking of TMC1 to the PM in heterologous cells."	"The contribution of TMC1 to adaptation of mechanoelectrical transduction channels in cochlear outer hair cells. Hair cell mechanoelectrical transducer channels are opened by deflections of the hair bundle about a resting position set by incompletely understood adaptation mechanisms. We used three characteristics to define adaptation in hair cell mutants of transmembrane channel-like proteins, TMC1 and TMC2, which are considered to be channel constituents. The results obtained demonstrate that the three characteristics are not equivalent, and raise doubts about simple models in which intracellular Ca<sup>2+</sup> regulates adaptation. Adaptation is faster and more effective in TMC1-containing than in TMC2-containing transducer channels. This result ties adaptation to the channel complex, and suggests that TMC1 is a better isoform for use in cochlear hair cells. We describe a TMC1 point mutation, D569N, that reduces the resting open probability and Ca<sup>2+</sup> permeability of the transducer channels, comprising properties that may contribute to the deafness phenotype. Recordings of mechanoelectrical transducer (MET) currents in cochlear hair cells were made in mice with mutations of transmembrane channel-like (TMC) protein to examine the effects on fast transducer adaptation. Adaptation was faster and more complete in Tmc2<sup>-/-</sup> than in Tmc1<sup>-/-</sup> , although this disparity was not explained by differences in Ca<sup>2+</sup> permeability or Ca<sup>2+</sup> influx between the two isoforms, with TMC2 having the larger permeability. We made a mouse mutation, Tmc1 p.D569N, homologous to a human DFNA36 deafness mutation, which also had MET channels with lower Ca<sup>2+</sup> -permeability but showed better fast adaptation than wild-type Tmc1<sup>+/+</sup> channels. Consistent with the more effective adaptation in Tmc1 p.D569N, the resting probability of MET channel opening was smaller. The three TMC variants studied have comparable single-channel conductances, although the lack of correlation between channel Ca<sup>2+</sup> permeability and adaptation opposes the hypothesis that adaptation is controlled simply by Ca<sup>2+</sup> influx through the channels. During the first postnatal week of mouse development, the MET currents amplitude grew, and transducer adaptation became faster and more effective. We attribute changes in adaptation partly to a developmental switch from TMC2- to TMC1- containing channels and partly to an increase in channel expression. More complete and faster adaptation, coupled with larger MET currents, may account for the sole use of TMC1 in the adult cochlear hair cells."	"Mammalian Mechanoelectrical Transduction: Structure and Function of Force-Gated Ion Channels. The conversion of force into an electrical cellular signal is mediated by the opening of different types of mechanosensitive ion channels (MSCs), including TREK/TRAAK K2P channels, Piezo1/2, TMEM63/OSCA, and TMC1/2. Mechanoelectrical transduction plays a key role in hearing, balance, touch, and proprioception and is also implicated in the autonomic regulation of blood pressure and breathing. Thus, dysfunction of MSCs is associated with a variety of inherited and acquired disease states. Significant progress has recently been made in identifying these channels, solving their structure, and understanding the gating of both hyperpolarizing and depolarizing MSCs. Besides prototypical activation by membrane tension, additional gating mechanisms involving channel curvature and/or tethered elements are at play."	"Distinct functions of TMC channels: a comparative overview. In the past two decades, transmembrane channel-like (TMC) proteins have attracted a significant amount of research interest, because mutations of Tmc1 lead to hereditary deafness. As evolutionarily conserved membrane proteins, TMC proteins are widely involved in diverse sensorimotor functions of many species, such as hearing, chemosensation, egg laying, and food texture detection. Interestingly, recent structural and physiological studies suggest that TMC channels may share a similar membrane topology with the Ca<sup>2+</sup>-activated Cl<sup>-</sup> channel TMEM16 and the mechanically activated OSCA1.2/TMEM63 channel. Namely, these channels form dimers and each subunit consists of ten transmembrane segments. Despite this important structural insight, a key question remains: what is the gating mechanism of TMC channels? The major technical hurdle to answer this question is that the reconstitution of TMC proteins as functional ion channels has been challenging in mammalian heterologous systems. Since TMC channels are conserved across taxa, genetic studies of TMC channels in model organisms such as C. elegans, Drosophila, and zebrafish may provide us critical information on the physiological function and regulation of TMCs. Here, we present a comparative overview on the diverse functions of TMC channels in different species."	"A Tmc1 mutation reduces calcium permeability and expression of mechanoelectrical transduction channels in cochlear hair cells. Mechanoelectrical transducer (MET) currents were recorded from cochlear hair cells in mice with mutations of transmembrane channel-like protein TMC1 to study the effects on MET channel properties. We characterized a Tmc1 mouse with a single-amino-acid mutation (D569N), homologous to a dominant human deafness mutation. Measurements were made in both Tmc2 wild-type and Tmc2 knockout mice. By 30 d, Tmc1 pD569N heterozygote mice were profoundly deaf, and there was substantial loss of outer hair cells (OHCs). MET current in OHCs of Tmc1 pD569N mutants developed over the first neonatal week to attain a maximum amplitude one-third the size of that in Tmc1 wild-type mice, similar at apex and base, and lacking the tonotopic size gradient seen in wild type. The MET-channel Ca<sup>2+</sup> permeability was reduced 3-fold in Tmc1 pD569N homozygotes, intermediate deficits being seen in heterozygotes. Reduced Ca<sup>2+</sup> permeability resembled that of the Tmc1 pM412K Beethoven mutant, a previously studied semidominant mouse mutation. The MET channel unitary conductance, assayed by single-channel recordings and by measurements of current noise, was unaffected in mutant apical OHCs. We show that, in contrast to the Tmc1 M412K mutant, there was reduced expression of the TMC1 D569N channel at the transduction site assessed by immunolabeling, despite the persistence of tip links. The reduction in MET channel Ca<sup>2+</sup> permeability seen in both mutants may be the proximate cause of hair-cell apoptosis, but changes in bundle shape and protein expression in Tmc1 D569N suggest another role for TMC1 apart from forming the channel."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Proband Whole-Exome Sequencing Identified Genes Responsible for Autosomal Recessive Non-Syndromic Hearing Loss in 33 Chinese Nuclear Families. Autosomal recessive non-syndromic hearing loss (ARNSHL) is a highly heterogeneous disease involving more than 70 pathogenic genes. However, most ARNSHL families have small-sized pedigrees with limited genetic information, rendering challenges for the molecular diagnosis of these patients. Therefore, we attempted to establish a strategy for identifying deleterious variants associated with ARNSHL by applying proband whole-exome sequencing (proband-WES). Aside from desiring to improve molecular diagnostic rates, we also aimed to search for novel deafness genes shared by patients with similar phenotype, making up for the deficiency of small ARNSHL families. In this study, 48.5% (16/33) families were detected the pathogenic variants in eight known deafness genes, including 10 novel variants identified in TMPRSS3 (MIM 605551), MYO15A (MIM 602666), TMC1 (MIM 606706), ADGRV1 (MIM 602851), and PTPRQ (MIM 603317). Apart from six novel variants with a truncating effect (nonsense, deletion, insertion, and splice-site), four novel missense variants were not found in 200 unrelated control population by using Sanger sequencing. It is important to note that none of novel genes were shared across different pedigrees, indicating that a larger sample size might be needed. Proband-WES is a cost-effective and precise way of identifying causative variants in nuclear families with ARNSHL. This economical strategy may be appropriated as a clinical application to provide molecular diagnostics, genetic counseling, and individualized health maintenance measures for patients with ARNSHL at hearing clinics."	"Allele-specific gene editing prevents deafness in a model of dominant progressive hearing loss. Since most dominant human mutations are single nucleotide substitutions<sup>1,2</sup>, we explored gene editing strategies to disrupt dominant mutations efficiently and selectively without affecting wild-type alleles. However, single nucleotide discrimination can be difficult to achieve<sup>3</sup> because commonly used endonucleases, such as Streptococcus pyogenes Cas9 (SpCas9), can tolerate up to seven mismatches between guide RNA (gRNA) and target DNA. Furthermore, the protospacer-adjacent motif (PAM) in some Cas9 enzymes can tolerate mismatches with the target DNA<sup>3,4</sup>. To circumvent these limitations, we screened 14 Cas9/gRNA combinations for specific and efficient disruption of a nucleotide substitution that causes the dominant progressive hearing loss, DFNA36. As a model for DFNA36, we used Beethoven mice<sup>5</sup>, which harbor a point mutation in Tmc1, a gene required for hearing that encodes a pore-forming subunit of mechanosensory transduction channels in inner-ear hair cells<sup>6</sup>. We identified a PAM variant of Staphylococcus aureus Cas9 (SaCas9-KKH) that selectively and efficiently disrupted the mutant allele, but not the wild-type Tmc1/TMC1 allele, in Beethoven mice and in a DFNA36 human cell line. Adeno-associated virus (AAV)-mediated SaCas9-KKH delivery prevented deafness in Beethoven mice up to one year post injection. Analysis of current ClinVar entries revealed that ~21% of dominant human mutations could be targeted using a similar approach."	"Next-generation sequencing reveals a novel pathological mutation in the TMC1 gene causing autosomal recessive non-syndromic hearing loss in an Iranian kindred. Hearing loss (HL) is the most common sensory-neural disorder with excessive clinical and genetic heterogeneity, which negatively affects life quality. Autosomal recessive non-syndromic hearing loss (ARNSHL) is the most common form of the disease with no specific genotype-phenotype correlation in most of the cases. Whole exome sequencing (WES) is a powerful tool to overcome the problem of finding mutations in heterogeneous disorders. A comprehensive clinical and pedigree examination was performed on a multiplex family from Khuzestan province suffering from hereditary HL. Direct sequencing of GJB2 and genetic linkage analysis of DFNB1A/B was accomplished. WES was utilized to find possible genetic etiology of the disease. Co-segregation analysis of the candidate variant was done. High resolution melting analysis was applied to detect variant status in 50 healthy matched controls. Clinical investigations suggested ARNSHL in the pedigree. The family was negative for DFNB1A/B. WES revealed a novel nonsense mutation, c.256G &gt; T (p.Glu86*), in TMC1 segregating with the phenotype in the pedigree. The variant was absent in the controls. Here, we report successful application of WES to identify the molecular pathogenesis of ARNSHL in a large family. The novel nonsense TMC1 variant meets the criteria of being pathogenic according to the ACMG-AMP variant interpretation guideline."	"Systematic Review of Hearing Loss Genes in the African American Population. Literature review of the genetic etiology of hearing loss (HL) in the African American (AA) population. PubMed, EBSCO, and CINAHL were accessed from 1966 to 2018. PRISMA guidelines were followed. Search terms included permutations of &quot;hearing loss,&quot; &quot;African American,&quot; &quot;black,&quot; and &quot;genetic&quot;; &quot;African American&quot; was then cross-referenced against documented HL genes. AA subjects included in multiethnic cohorts of genetic HL testing were identified by searching the key terms &quot;hearing loss&quot; and &quot;ethnic cohort&quot; and &quot;genetic.&quot; The Q-Genie tool was used in the quality assessment of included studies. An allele frequency meta-analysis of pathogenic GJB2 variants in the AA population was performed and stratified by hearing status. Four hundred seventeen articles were reviewed, and 26 met our inclusion criteria. Ten studies were included in the GJB2 meta-analysis. In the general AA population, pathogenic GJB2 variants are rare, including the 35delG allele, which displayed a carrier frequency of 0.05%. Pathogenic variants were discovered in seven nonsyndromic HL genes (GJB2, MYO3A, TECTA, STRC, OTOF, MYH14, TMC1), eight syndromic HL genes, and one mitochondrial HL gene. Recent comprehensive genetic testing using custom genetic HL testing platforms has yielded only a 26% molecular diagnosis rate for HL etiologies in the AA population. Investigators should be encouraged to provide an ethnic breakdown of results. Sparse literature and poor diagnosis rates indicate that genes involved in HL in the AA population have yet to be identified. Future explorative investigations using next-generation sequencing technologies, such as whole-exome sequencing, into the AA population are warranted."	"Bi-allelic Pro291Leu variant in KCNQ4 leads to early onset non-syndromic hearing loss. Variants of KCNQ4 are one of the most common causes of dominantly inherited nonsyndromic hearing loss. We investigated a consanguineous family in which two individuals had prelignual hearing loss, apparently inherited in a recessive mode. Whole-exome sequencing analyses demonstrated genetic heterogeneity as variants in two different genes segregated with the phenotype in two branches of the family. Members in one branch were homozygous for a pathogenic variant of TMC1. The other two affected individuals were homozygous for a missense pathogenic variant in KCNQ4 c.872C&gt;T; p.(Pro291Leu). These two individuals had prelingual, progressive moderate to severe hearing loss, while a heterozygous carrier had late onset mild hearing loss. Our work demonstrates that p.Pro291L variant is semi-dominantly inherited. This is the first report of semi-dominance of a KCNQ4 variant."	"The prevalence of deafness-associated mutations in neonates: A meta-analysis of clinical trials. The causative genes associated with autosomal recessive non-syndromic hearing loss (ARNSHL) have been identified, in order of prevalence are GJB2, SLC26A4, MYO15A, OTOF, CDH23, and TMC1. To evaluate the prevalence of deafness-associated mutations in neonates and the clinical value of screening, we performed a meta-analysis of clinical trials. The main criteria used to select articles was that the studies were designed to detect deafness genetic mutations in Chinese's neonates, and the screening kits were designed to detect 9 or 20 sites in four deafness-causative genes. The combined effect of genetic screening was measured by the pooled prevalence of mutations with 95% confidence intervals (CIs). The Random Model was used to estimate the pooled prevalence of mutations. We included 18 studies (a total of 261766 neonates) from studies using 9-mutation screening kit, and 15 studies (a total of 131158 neonates) from studies using the 20-mutation screening kit to conduct meta-analysis. The Random Model was used to estimate the pooled prevalence of mutations due to large heterogeneity (9 sites: I<sup>2</sup> = 89.1%, P = 0.0000; 20 sites: I<sup>2</sup> = 97.3%, P = 0.0002). The pooled prevalence of mutations in 9 sites group was 0.043 (95%CI:0.039-0.047, Z = 21.49, P = 0.000)and 20 sites group was 0.047(95%CI:0.041-0.053, Z = 15.84, P = 0.000). The prevalence of deafness-associated mutations in neonates in China is 4.7%; Based on the current detection technology and deafness genetics knowledge, it may be more reasonable to offer 1494C &gt; T and 1555A &gt; G mutation screening to pregnant women. Decision makers should think about how to use the current deafness genetic screening to amplify the effectiveness of hearing screening."	"Direction Selectivity in Drosophila Proprioceptors Requires the Mechanosensory Channel Tmc. Drosophila Transmembrane channel-like (Tmc) is a protein that functions in larval proprioception. The closely related TMC1 protein is required for mammalian hearing and is a pore-forming subunit of the hair cell mechanotransduction channel. In hair cells, TMC1 is gated by small deflections of microvilli that produce tension on extracellular tip-links that connect adjacent villi. How Tmc might be gated in larval proprioceptors, which are neurons having a morphology that is completely distinct from hair cells, is unknown. Here, we have used high-speed confocal microscopy both to measure displacements of proprioceptive sensory dendrites during larval movement and to optically measure neural activity of the moving proprioceptors. Unexpectedly, the pattern of dendrite deformation for distinct neurons was unique and differed depending on the direction of locomotion: ddaE neuron dendrites were strongly curved by forward locomotion, while the dendrites of ddaD were more strongly deformed by backward locomotion. Furthermore, GCaMP6f calcium signals recorded in the proprioceptive neurons during locomotion indicated tuning to the direction of movement. ddaE showed strong activation during forward locomotion, while ddaD showed responses that were strongest during backward locomotion. Peripheral proprioceptive neurons in animals mutant for Tmc showed a near-complete loss of movement related calcium signals. As the strength of the responses of wild-type animals was correlated with dendrite curvature, we propose that Tmc channels may be activated by membrane curvature in dendrites that are exposed to strain. Our findings begin to explain how distinct cellular systems rely on a common molecular pathway for mechanosensory responses."	"Localization of TMC1 and LHFPL5 in auditory hair cells in neonatal and adult mice. The channel that governs mechanotransduction (MT) by hair cells in the inner ear has been investigated intensively for 4 decades, but its precise molecular composition remains enigmatic. Transmembrane channel-like protein 1 (TMC1) was recently identified as a component of the MT channel, and lipoma HMGIC fusion partner-like 5 (LHFPL5) is considered to be part of the MT complex and may functionally couple the tip link to the MT channel. As components of the MT complex, TMC1 and LHFPL5 are expected to localize at the lower end of the tip link in hair cells, a notion generally supported by previous studies on neonatal mice. However, the localization of these 2 proteins, particularly in the hair cells of adult mice, remains incompletely elucidated. Because determination of TMC1 and LHFPL5 localization at distinct developmental stages is essential for understanding their function and regulation, we used several approaches to examine the localization of these proteins in neonatal and adult hair cells in the mouse. We report several notable findings: 1) TMC1 and LHFPL5 predominantly localize at the tip of the shorter rows of stereocilia in neonatal hair cells, which largely verifies the previously published findings in neonatal hair cells; 2) LHFPL5 persists in the hair bundle of hair cells after postnatal day (P)7, which clarifies the previously reported unexpected absence of LHFPL5 after P7 and supports the view that LHFPL5 is a permanent component in the MT complex; and 3) TMC1 and LHFPL5 remain at the tip of the shorter rows of stereocilia in adult outer hair cells, but in adult inner hair cells, TMC1 is uniformly distributed in both the tallest row and the shorter rows of stereocilia, whereas LHFPL5 is uniformly distributed in the shorter rows of stereocilia. These findings raise intriguing questions regarding the turnover rate, regulation, additional functions, and functional interaction of TMC1 and LHFPL5. Our study confirms the previous findings in neonatal hair cells and reveals several previously unidentified aspects of TMC1 and LHFPL5 localization in more mature hair cells.-Li, X., Yu, X., Chen, X., Liu, Z., Wang, G., Li, C., Wong, E. Y. M., Sham, M. H., Tang, J., He, J., Xiong, W., Liu, Z., Huang, P. Localization of TMC1 and LHFPL5 in auditory hair cells in neonatal and adult mice."	"Publisher Correction: Improved TMC1 gene therapy restores hearing and balance in mice with genetic inner ear disorders. The original version of this Article contained errors in Fig. 5. In panels i and j the three rightmost x-axis labels inadvertently read 'Tmc1' instead of 'Tmc2'. These errors have been corrected in both the PDF and HTML versions of the Article."	"Elucidation of the unique mutation spectrum of severe hearing loss in a Vietnamese pediatric population. The mutational spectrum of deafness in Indochina Peninsula, including Vietnam, remains mostly undetermined. This significantly hampers the progress toward establishing an effective genetic screening method and early customized rehabilitation modalities for hearing loss. In this study, we evaluated the genetic profile of severe-to-profound hearing loss in a Vietnamese pediatric population using a hierarchical genetic analysis protocol that screened 11 known deafness-causing variants, followed by massively parallel sequencing targeting 129 deafness-associated genes. Eighty-seven children with isolated severe-to-profound non-syndromic hearing loss without family history were included. The overall molecular diagnostic yield was estimated to be 31.7%. The mutational spectrum for severe-to-profound non-syndromic hearing loss in our Vietnamese population was unique: The most prevalent variants resided in the MYO15A gene (7.2%), followed by GJB2 (6.9%), MYO7A (5.5%), SLC26A4 (4.6%), TMC1 (1.8%), ESPN (1.8%), POU3F4 (1.8%), MYH14 (1.8%), EYA1 (1.8%), and MR-RNR1 (1.1%). The unique spectrum of causative genes in the Vietnamese deaf population was similar to that in the southern Chinese deaf population. It is our hope that the mutation spectrum provided here could aid in establishing an efficient protocol for genetic analysis of severe-to-profound hearing loss and a customized screening kit for the Vietnamese population."	"Subunits of the mechano-electrical transduction channel, Tmc1/2b, require Tmie to localize in zebrafish sensory hair cells. Mutations in transmembrane inner ear (TMIE) cause deafness in humans; previous studies suggest involvement in the mechano-electrical transduction (MET) complex in sensory hair cells, but TMIE's precise role is unclear. In tmie zebrafish mutants, we observed that GFP-tagged Tmc1 and Tmc2b, which are subunits of the MET channel, fail to target to the hair bundle. In contrast, overexpression of Tmie strongly enhances the targeting of Tmc1-GFP and Tmc2b-GFP to stereocilia. To identify the motifs of Tmie underlying the regulation of the Tmcs, we systematically deleted or replaced peptide segments. We then assessed localization and functional rescue of each mutated/chimeric form of Tmie in tmie mutants. We determined that the first putative helix was dispensable and identified a novel critical region of Tmie, the extracellular region and transmembrane domain, which is required for both mechanosensitivity and Tmc2b-GFP expression in bundles. Collectively, our results suggest that Tmie's role in sensory hair cells is to target and stabilize Tmc channel subunits to the site of MET."	"Ultrastructural localization of the likely mechanoelectrical transduction channel protein, transmembrane-like channel 1 (TMC1) during development of cochlear hair cells. Transmembrane channel like protein 1 (TMC1) is likely to be a pore-forming subunit of the transduction channel of cochlear hair cells that is mechanically gated by tension on tip links in the stereocilia bundle. To localise TMC1 precisely, we labelled mice cochleae of different ages using custom-made polyclonal antibodies to TMC1 for light and transmission electron microscopy (TEM). Immunofluorescence revealed stereocilia labelling at P9 but not at P3 in apical hair cells. Immunogold labelling for TEM confirmed that labelling was absent at P3, and showed weak labelling at P6 with no stereocilia tip labelling, increasing at P9, with specific tip labelling on shorter stereocilia and some throughout the bundle. At P12 and P21, labelling was refined mostly to stereocilia tips. Quantification showed that labelling overall reached maximum by P12, labelling per tip was relatively constant from P9 to P21, but percent tips labelled was reduced from 16% to 8%. Tmc1<sup>-/-</sup> showed no labelling. Thus TMC1 occurs at the lower end of the tip link, supporting its presence in the MET complex and likely the channel. Tip localisation from P9 onwards coincides with lipoma HMGIC fusion partner-like 5 (LHFPL5), a protein that may be involved in acquiring/maintaining TMC1 localisation."	"Targeted Allele Suppression Prevents Progressive Hearing Loss in the Mature Murine Model of Human TMC1 Deafness. Hearing loss is the most common human sensory deficit. Its correction has been the goal of several gene-therapy based studies exploring a variety of interventions. Although these studies report varying degrees of success, all treatments have targeted developing inner ears in neonatal mice, a time point in the structural maturation of the cochlea prior to 26 weeks gestational age in humans. It is unclear whether cochlear gene therapy can salvage hearing in the mature organ of Corti. Herein, we report the first study to test gene therapy in an adult murine model of human deafness. Using a single intracochlear injection of an artificial microRNA carried in an AAV vector, we show that RNAi-mediated gene silencing can slow progression of hearing loss, improve inner hair cell survival, and prevent stereocilia bundle degeneration in the mature Beethoven mouse, a model of human TMC1 deafness. The ability to study gene therapy in mature murine ears constitutes a significant step toward its translation to human subjects."	"Mutation screening in non-syndromic hearing loss patients with cochlear implantation by massive parallel sequencing in Taiwan. To explore the molecular epidemiology of rare deafness genes in Taiwanese sensorineural hearing impairment (SNHI) patients with cochlear implantation (CI) by performing massive parallel sequencing (MPS) and correlating genetic factors and CI outcomes. We enrolled 41 Taiwanese non-syndromic deafness patients with CI that lacked known mutations in common deafness genes. All probands were screened by a targeted exon amplification method that used massively parallel sequencing to screen a customized panel that included 40 relatively rare non-syndromic deafness genes. Thirteen candidate variants in nine relatively rare deafness genes (MYO15A, TMC1, MYH14, MYO3A, ACTG1, COL11A2, DSPP, GRHL2, and WFS1) were identified in 24.4% (10/41) of the non-syndromic deafness probands with CI. According to the ACMG Standards and Guidelines, five variants in MYO15A and ACTG1 were classified as likely pathogenic variants. Two of three multi-generational pedigrees exhibiting deafness were analyzed for the segregation of the disorder with the possible disease-causing variants. Patients with variants detected in most of the identified variant-bearing genes showed relatively good CI outcomes. We successfully identified candidate variants in partially deaf Taiwanese probands who lacked the known mutations in common deafness genes. Comparing the progress of hearing rehabilitation in CI patients with their apparent causative variants and the expression profiles of their altered genes allowed us to speculate on how alterations in specific gene sets may influence outcomes in hearing rehabilitation after CI."	"Improved TMC1 gene therapy restores hearing and balance in mice with genetic inner ear disorders. Fifty percent of inner ear disorders are caused by genetic mutations. To develop treatments for genetic inner ear disorders, we designed gene replacement therapies using synthetic adeno-associated viral vectors to deliver the coding sequence for Transmembrane Channel-Like (Tmc) 1 or 2 into sensory hair cells of mice with hearing and balance deficits due to mutations in Tmc1 and closely related Tmc2. Here we report restoration of function in inner and outer hair cells, enhanced hair cell survival, restoration of cochlear and vestibular function, restoration of neural responses in auditory cortex and recovery of behavioral responses to auditory and vestibular stimulation. Secondarily, we find that inner ear Tmc gene therapy restores breeding efficiency, litter survival and normal growth rates in mouse models of genetic inner ear dysfunction. Although challenges remain, the data suggest that Tmc gene therapy may be well suited for further development and perhaps translation to clinical application."	"KCNQ1 rescues TMC1 plasma membrane expression but not mechanosensitive channel activity. Transmembrane channel-like protein isoform 1 (TMC1) is essential for the generation of mechano-electrical transducer currents in hair cells of the inner ear. TMC1 disruption causes hair cell degeneration and deafness in mice and humans. Although thought to be expressed at the cell surface in vivo, TMC1 remains in the endoplasmic reticulum when heterologously expressed in standard cell lines, precluding determination of its roles in mechanosensing and pore formation. Here, we report that the KCNQ1 Kv channel forms complexes with TMC1 and rescues its surface expression when coexpressed in Chinese Hamster Ovary cells. TMC1 rescue is specific for KCNQ1 within the KCNQ family, is prevented by a KCNQ1 trafficking-deficient mutation, and is influenced by KCNE β subunits and inhibition of KCNQ1 endocytosis. TMC1 lowers KCNQ1 and KCNQ1-KCNE1 K<sup>+</sup> currents, and despite the surface expression, it does not detectably respond to mechanical stimulation or high salt. We conclude that TMC1 is not intrinsically mechano- or osmosensitive but has the capacity for cell surface expression, and requires partner protein(s) for surface expression and mechanosensitivity. We suggest that KCNQ1, expression of which is not thought to overlap with TMC1 in hair cells, is a proxy partner bearing structural elements or a sequence motif reminiscent of a true in vivo TMC1 hair cell partner. Discovery of the first reported strategy to rescue TMC1 surface expression should aid future studies of the TMC1 function and native partners."	"Genetic screening involving 101 hot spots for neonates not passing newborn hearing screening and those random recruited in Dongguan. In order to investigate essential molecular causes for hearing loss and mutation frequency of deafness-related genes, 1315 newborns who did not pass the Newborn Hearing Screening (NHS) (audio-no-pass) and 1000 random-selected infants were subjected to detection for 101 hotspot mutations in 18 common deafness-related genes. Totally, 23 alleles of 7 deafness genes were detected out. Significant difference (χ<sup>2</sup> = 25.320, p = 0.000) existed in causative mutation frequency between audio-no-pass group (81/1315, 6.160%) and random-selected cohort (18/1000, 1.80%). Of the genes detected out, GJB2 gene mutation was with significant difference (χ<sup>2</sup> = 75.132, p = 0.000) between audio-no-pass group (417/1315, 31.711%) and random-selected cohort (159/1000, 15.900%); c.109G &gt; A was the most common allele, as well as the only one with significantly different allele frequency (χ<sup>2</sup> = 79.327, p = 0.000) between audio-no-pass group (392/1315, 16.84%) and random-selected cohort (140/1000, 7.55%), which suggested c.109G &gt; A mutation was critical for newborns' hearing loss. This study performed detection for such a large scale of deafness-associated genes and for the first time compared mutations between audio-no-pass and random-recruited neonates, which not only provided more reliable DNA diagnosis result for medical practioners and enhanced clinical care for the newborns, but gave more accurate estimation for mutation frequency."	"Function and Dysfunction of TMC Channels in Inner Ear Hair Cells. The TMC1 channel was identified as a protein essential for hearing in mouse and human, and recognized as one of a family of eight such proteins in mammals. The TMC family is part of a superfamily of seven branches, which includes the TMEM16s. Vertebrate hair cells express both TMC1 and TMC2. They are located at the tips of stereocilia and are required for hair cell mechanotransduction. TMC1 assembles as a dimer and its similarity to the TMEM16s has enabled a predicted tertiary structure with an ion conduction pore in each subunit of the dimer. Cysteine mutagenesis of the pore supports the role of TMC1 and TMC2 as the core channel proteins of a larger mechanotransduction complex that includes PCDH15 and LHFPL5, and perhaps TMIE, CIB2 and others."	"TMC1 Forms the Pore of Mechanosensory Transduction Channels in Vertebrate Inner Ear Hair Cells. The proteins that form the permeation pathway of mechanosensory transduction channels in inner-ear hair cells have not been definitively identified. Genetic, anatomical, and physiological evidence support a role for transmembrane channel-like protein (TMC) 1 in hair cell sensory transduction, yet the molecular function of TMC proteins remains unclear. Here, we provide biochemical evidence suggesting TMC1 assembles as a dimer, along with structural and sequence analyses suggesting similarity to dimeric TMEM16 channels. To identify the pore region of TMC1, we used cysteine mutagenesis and expressed mutant TMC1 in hair cells of Tmc1/2-null mice. Cysteine-modification reagents rapidly and irreversibly altered permeation properties of mechanosensory transduction. We propose that TMC1 is structurally similar to TMEM16 channels and includes ten transmembrane domains with four domains, S4-S7, that line the channel pore. The data provide compelling evidence that TMC1 is a pore-forming component of sensory transduction channels in auditory and vestibular hair cells."	"Transgenic Tmc2 expression preserves inner ear hair cells and vestibular function in mice lacking Tmc1. Recent work has demonstrated that transmembrane channel-like 1 protein (TMC1) is an essential component of the sensory transduction complex in hair cells of the inner ear. A closely related homolog, TMC2, is expressed transiently in the neonatal mouse cochlea and can enable sensory transduction in Tmc1-null mice during the first postnatal week. Both TMC1 and TMC2 are expressed at adult stages in mouse vestibular hair cells. The extent to which TMC1 and TMC2 can substitute for each other is unknown. Several biophysical differences between TMC1 and TMC2 suggest these proteins perform similar but not identical functions. To investigate these differences, and whether TMC2 can substitute for TMC1 in mature hair cells, we generated a knock-in mouse model allowing Cre-inducible expression of Tmc2. We assayed for changes in hair cell sensory transduction and auditory and vestibular function in Tmc2 knockin mice (Tm[Tmc2]) in the presence or absence of endogenous Tmc1, Tmc2 or both. Our results show that expression of Tm[TMC2] restores sensory transduction in vestibular hair cells and transiently in cochlear hair cells in the absence of TMC1. The cellular rescue leads to recovery of balance but not auditory function. We conclude that TMC1 provides some additional necessary function, not provided by TMC2."	"Tmc2 expression partially restores auditory function in a mouse model of DFNB7/B11 deafness caused by loss of Tmc1 function. Mouse Tmc1 and Tmc2 are required for sensory transduction in cochlear and vestibular hair cells. Homozygous Tmc1<sup>∆/∆</sup> mice are deaf, Tmc2<sup>∆/∆</sup> mice have normal hearing, and double homozygous Tmc1<sup>∆/∆</sup>; Tmc2<sup>∆/∆</sup> mice have deafness and profound vestibular dysfunction. These phenotypes are consistent with their different spatiotemporal expression patterns. Tmc1 expression is persistent in cochlear and vestibular hair cells, whereas Tmc2 expression is transient in cochlear hair cells but persistent in vestibular hair cells. On the basis of these findings, we hypothesized that persistent Tmc2 expression in mature cochlear hair cells could restore auditory function in Tmc1<sup>∆/∆</sup> mice. To express Tmc2 in mature cochlear hair cells, we generated a transgenic mouse line, Tg[PTmc1::Tmc2], in which Tmc2 cDNA is expressed under the control of the Tmc1 promoter. The Tg[PTmc1::Tmc2] transgene slightly but significantly restored hearing in young Tmc1<sup>∆/∆</sup> mice, though hearing thresholds were elevated with age. The elevation of hearing thresholds was associated with deterioration of sensory transduction in inner hair cells and loss of outer hair cell function. Although sensory transduction was retained in outer hair cells, their stereocilia eventually degenerated. These results indicate distinct roles and requirements for Tmc1 and Tmc2 in mature cochlear hair cells."	"Structural relationship between the putative hair cell mechanotransduction channel TMC1 and TMEM16 proteins. The hair cell mechanotransduction (MET) channel complex is essential for hearing, yet it's molecular identity and structure remain elusive. The transmembrane channel-like 1 (TMC1) protein localizes to the site of the MET channel, interacts with the tip-link responsible for mechanical gating, and genetic alterations in TMC1 alter MET channel properties and cause deafness, supporting the hypothesis that TMC1 forms the MET channel. We generated a model of TMC1 based on X-ray and cryo-EM structures of TMEM16 proteins, revealing the presence of a large cavity near the protein-lipid interface that also harbors the Beethoven mutation, suggesting that it could function as a permeation pathway. We also find that hair cells are permeable to 3 kDa dextrans, and that dextran permeation requires TMC1/2 proteins and functional MET channels, supporting the presence of a large permeation pathway and the hypothesis that TMC1 is a pore forming subunit of the MET channel complex."	"Variable number of TMC1-dependent mechanotransducer channels underlie tonotopic conductance gradients in the cochlea. Functional mechanoelectrical transduction (MET) channels of cochlear hair cells require the presence of transmembrane channel-like protein isoforms TMC1 or TMC2. We show that TMCs are required for normal stereociliary bundle development and distinctively influence channel properties. TMC1-dependent channels have larger single-channel conductance and in outer hair cells (OHCs) support a tonotopic apex-to-base conductance gradient. Each MET channel complex exhibits multiple conductance states in ~50 pS increments, basal MET channels having more large-conductance levels. Using mice expressing fluorescently tagged TMCs, we show a three-fold increase in number of TMC1 molecules per stereocilium tip from cochlear apex to base, mirroring the channel conductance gradient in OHCs. Single-molecule photobleaching indicates the number of TMC1 molecules per MET complex changes from ~8 at the apex to ~20 at base. The results suggest there are varying numbers of channels per MET complex, each requiring multiple TMC1 molecules, and together operating in a coordinated or cooperative manner."	"Mechanically Gated Ion Channels in Mammalian Hair Cells. Hair cells in the inner ear convert mechanical stimuli provided by sound waves and head movements into electrical signal. Several mechanically evoked ionic currents with different properties have been recorded in hair cells. The search for the proteins that form the underlying ion channels is still in progress. The mechanoelectrical transduction (MET) channel near the tips of stereociliary in hair cells, which is responsible for sensory transduction, has been studied most extensively. Several components of the sensory mechanotransduction machinery in stereocilia have been identified, including the multi-transmembrane proteins tetraspan membrane protein in hair cell stereocilia (TMHS)/LHFPL5, transmembrane inner ear (TMIE) and transmembrane channel-like proteins 1 and 2 (TMC1/2). However, there remains considerable uncertainty regarding the molecules that form the channel pore. In addition to the sensory MET channel, hair cells express the mechanically gated ion channel PIEZO2, which is localized near the base of stereocilia and not essential for sensory transduction. The function of PIEZO2 in hair cells is not entirely clear but it might have a role in damage sensing and repair processes. Additional stretch-activated channels of unknown molecular identity and function have been found to localize at the basolateral membrane of hair cells. Here, we review current knowledge regarding the different mechanically gated ion channels in hair cells and discuss open questions concerning their molecular composition and function."	"Identification of Pathogenic Genes of Nonsyndromic Hearing Loss in Uyghur Families Using Massively Parallel DNA Sequencing Technique. We aim to identify the mutations of deafness genes using massively parallel DNA sequencing in the 12 Uyghur families. SNPscan method was used to screen against the 124 sites in the common deafness genes in probands. Subjects with SNPscan negativity were subject to massively parallel DNA sequencing for the sequencing of 97 genes known to be responsible for hearing loss. Eight families (66.7%) showed biallelic mutations in probands, including MYO15A mutation (6892C&gt;T in J02 family, 9514C&gt;T/7894G&gt;T in J07 family, and 9514C&gt;T in J16 family), MYO7A mutation (1258A&gt;T in J03 family), TMC1 mutation (773G&gt;A in J09 family and 1247T&gt;G/1312G&gt;A in J11 family), and PCDH15 mutation (4658delT in J08 and J13 families). Six novel types of mutation were identified including 6892C&gt;T, 9514C&gt;T/7894G&gt;T, and 9514C&gt;T in MYO15A gene, 1258A&gt;T in MYO7A, 773G&gt;A in TMC1, and 4658delT in PCDH15. The ratio of nonsense mutation and frameshift mutation was comparatively high. All these indicated that the mutation types reported in this study were rare. In conclusion, rare deafness genes were identified in the Uyghur families using massively parallel DNA sequencing, part of which were suggested to be related to the pathogenesis of the disease."	"Identification of four TMC1 variations in different Chinese families with hereditary hearing loss. Variants in TMC1 (transmembrane channel-like 1) can cause both autosomal dominant and recessive hearing loss in human population. Mice with Tmc1 variants have been shown to be ideal animal models for gene therapy. In this article, we report four TMC1 variants in four different Chinese families and the follow-up auditory phenotype of a previously reported family. Four families with TMC1 variants, as well as a previously described family with TMC1 variant orthologous to the Beethoven mouse, were recruited in this study. A comprehensive auditory evaluation was performed on all ascertained family members. High-throughput sequencing was conducted using genomic DNA from the probands and other family members to identify probable deafness genes. We identified four TMC1 (NM_138691.2) variations, including two pathogenic variants, c.1714G&gt;A, and c.1253T&gt;A, one likely pathogenic variant, c.[797T&gt;C];[797T&gt;C], and one single nucleotide polymorphism (SNP), c.2276G&gt;A. Among these variants, c.[797T&gt;C];[797T&gt;C] is a novel likely pathogenic variant, and c.1714G&gt;A and c.1253T&gt;A are known pathogenic variants at the DFNB7/11 (DFNA36) locus. Phenotype-genotype correlation analysis of TMC1 variants showed that the TMC1 dominant variation-related phenotype was late-onset, progressive, high frequency to all frequency sensorineural hearing loss, while the TMC1 recessive variant was related to congenital all frequency sensorineural hearing impairment. Two pathogenic, one likely pathogenic variants and one SNP of TMC1 were identified in four Chinese families with hereditary hearing loss, indicating that TMC1 may be a more frequent cause of hearing loss than expected. TMC1 variants related to hearing loss result in specific phenotypes. The TMC1 c.1253T&gt;A (p.M418K) variation, homologous to the Tmc1 c. 1235 T&gt; A (p.M412K) variant in Beethoven mice, was the second report of this variant in human patients with hearing loss, suggesting the possibility to translational gene therapy from Beethoven mice to human patients."	"A CRISPR Way to Restore Hearing. NA"	"Mutation spectra and founder effect of TMC1 in patients with non-syndromic deafness in Xiamen area, China. To analyze the spectrum and founder effect of TMC1 mutations in patients with non-syndromic deafness in the Xiamen area. Sporadic pedigrees were detected by targeted next-generation sequencing, and 110 unrelated patients from Xiamen Special Education School were analyzed through Sanger sequencing for the TMC1 gene. In total, 53 SNPs were designed to analyze the haplotypes of the TMC1 c.2050G&gt;C mutation. The probands of three families were found to be homozygous for TMC1 c.2050G&gt;C, and their parents were all heterozygous for the TMC1 c.2050G&gt;C mutation. In 110 unrelated patients from Xiamen Special Education School, four were found to carry compound heterozygotes of TMC1 c.2050G&gt;C, which were compound heterozygotes of c.804G&gt;A, c.1127T&gt;C, c.1165C&gt;T, and c.1396_1398delAAC, respectively. Three types of TMC1 polymorphisms (c.45C&gt;T, c.1713C&gt;T, c.2208+49C&gt;T) and two heterozygotes of novel variants (c.1764-4C&gt;A, c.2073G&gt;A[p.K691K]) were found in the remaining 100 patients. In total, four novel variants were detected in this study. These mutations and variants were not detected in 100 normal samples. The haplotypes of the probands of families with TMC1 c.2050G&gt;C were identical. There were unique hotspots and spectra of TMC1 mutations in the Xiamen deaf population. Haplotype analysis is useful to understand the founder effect of the hot spot mutation."	"Mutations in OTOF, CLDN14 &amp; SLC26A4 genes as major causes of hearing impairment in Dhadkai village, Jammu &amp; Kashmir, India. A high incidence of hearing impairment is reported from the village of Dhadkai in the State of Jammu and Kashmir, India. Prevalence of endogamy in this community suggested a common genetic basis for the disorder. A genetic study was undertaken to ascertain the basis for the high incidence of hearing impairment in this region. In a two-step approach to identify the causative mutation/s, a whole-genome-based linkage analysis of an extended family of 45 members was carried out, which included 23 affected and 22 unaffected members. Mutational analysis for the candidate deafness genes helped reveal causative mutations in the family. In addition, seven deafness-causing genes, Cx26, SLC26A4, CLDN14, TMPRSS3, TMC1, TMIE and USH1C, were analyzed in smaller families with hearing impairment. In the 45-member extended family, the critical chromosomal region mapped to 2p24-p22.The c.2122C&gt;T (p.R708X) mutation in OTOF in 2p24-p22was identified as being the causal change. Linkage to 2p24-p22 locus was not observed in a particular branch of this extended family. Analysis of seven known deafness-causing genes in this branch revealed a mutation, c.254T&gt;A (p.V85D), in CLDN14. Among seven small families unrelated to the 45-member extended family, hearing loss was attributable to p.R708X in OTOF in three families and to p.V85D in CLDN14 in one family; a new mutation c.1668T&gt;A (p.Y556X) SLC26A4 was identified in two families and the causative change could not be identified in one family. This study suggested considerable genetic heterogeneity in the causation of hearing loss in Dhadkai. Recessive mutations were observed in at least three genes causing hearing loss: OTOF (p.R708X), SLC26A4 (p.Y556X) and CLDN14 (p.V85D). Mutation p.R708X appeared to be the major cause of hearing impairment in Dhadkai."	"TMC Proteins Modulate Egg Laying and Membrane Excitability through a Background Leak Conductance in C. elegans. Membrane excitability is a fundamentally important feature for all excitable cells including both neurons and muscle cells. However, the background depolarizing conductances in excitable cells, especially in muscle cells, are not well characterized. Although mutations in transmembrane channel-like (TMC) proteins TMC1 and TMC2 cause deafness and vestibular defects in mammals, their precise action modes are elusive. Here, we discover that both TMC-1 and TMC-2 are required for normal egg laying in C. elegans. Mutations in these TMC proteins cause membrane hyperpolarization and disrupt the rhythmic calcium activities in both neurons and muscles involved in egg laying. Mechanistically, TMC proteins enhance membrane depolarization through background leak currents and ectopic expression of both C. elegans and mammalian TMC proteins results in membrane depolarization. Therefore, we have identified an unexpected role of TMC proteins in modulating membrane excitability. Our results may provide mechanistic insights into the functions of TMC proteins in hearing loss and other diseases."	"Ellis-van Creveld syndrome and profound deafness resulted by sequence variants in the EVC/EVC2 and TMC1 genes. Ellis-van Creveld syndrome is an autosomal recessive skeletal dysplasia primarily characterized by the features such as disproportionate dwarfism, short ribs, short limbs, dysplastic nails, cardiovascular malformations, post-axial polydactyly (PAP) (bilateral) of hands and feet. EVC/EVC2 located in head-to-head arrangement on chromosome 4p16 are the causative genes for EvC syndrome. In the study, we present two families, A and B, with Pakistani and Republic of Kosovo origin, respectively. They showed features of EvC syndrome and were clinically and genetically characterized. In family A, the affected members showed an additional feature of profound deafness. The whole exome sequencing (WES) in this family revealed two homozygous variants in EVC2 (c.30dupC; p.Thr11Hisfs*45) and TMC1 (c.1696-1G&gt;A) genes. In family B, WES revealed novel compound heterozygous variants (p.Ser307Pro, c.2894+3A&gt;G) in the EVC gene. This study reports first case of variants in the genes causing EvC syndrome and profound deafness in the same family."	"Common founder effects of hereditary hemochromatosis, Wilson´s disease, the long QT syndrome and autosomal recessive deafness caused by two novel mutations in the WHRN and TMC1 genes. Genealogy and molecular genetic studies of a Swedish river valley population resulted in a large pedigree, showing that the hereditary hemochromatosis (HH) HFE/p.C282Y mutation is inherited with other recessive disorders such as Wilson´s disease (WND), a rare recessive disorder of copper overload. The population also contain individuals with the Swedish long QT syndrome (LQTS1) founder mutation (KCNQ1/p.Y111C) which in homozygotes causes the Jervell &amp; Lange Nielsen syndrome (JLNS) and hearing loss (HL).Aims of the study were to test whether the Swedish long QT founder mutation originated in an ancestral HFE family and if carriers had an increased risk for hemochromatosis (HH), a treatable disorder. We also aimed to identify the pathogenic mutation causing the hearing loss disorder segregating in the pedigree. LQTS patients were asked about their ancestry and possible origin in a HH family. They were also offered a predictive testing for the HFE genotype. Church books were screened for families with hearing loss. One HH family had two members with hearing loss, who underwent molecular genetic analysis of the LQTS founder mutation, connexin 26 and thereafter exome sequencing. Another family with hearing loss in repeat generations was also analyzed for connexin 26 and underwent exome sequencing. Of nine LQTS patients studied, four carried a HFE mutation (two p.C282Y, two p.H63D), none was homozygous. Three LQTS patients confirmed origin in a female founder ( b 1694, identical to AJ b 1694, a HFE pedigree member from the Fax river. Her descent of 44 HH families, included also 29 families with hearing loss (HL) suggesting JLNS. Eleven LQTS probands confirmed origin in a second founder couple (b 1614/1605) in which the woman b 1605 was identical to a HFE pedigree member from the Fjällsjö river. In her descent there were not only 64 HH, six WND families, one JLNS, but also 48 hearing loss families. Most hearing loss was non syndromic and caused by founder effects of the late 16<sup>th</sup> century. One was of Swedish origin carrying the WHRN, c.1977delC, (p.S660Afs*30) mutation, the other was a TMC1(NM_138691),c.1814T&gt;C,(p.L605P) mutation, possibly of Finnish origin. Deep human HFE genealogies show HFE to be associated with other genetic disorders like Wilson´s disease, LQTS, JLNS, and autosomal recessive hearing loss. Two new homozygous HL mutations in WHRN/p.S660Afs*30 and TMC1/p.L605P were identified,none of them previously reported from Scandinavia. The rarity of JLNS was possibly caused by miscarriage or intrauterine death. Most hearing loss (81.7%) was seen after 1844 when first cousin marriages were permitted. However, only 10 (10.3%) came from 1<sup>st</sup> cousin unions and only 2 (2.0 %) was born out of wedlock."	"Treatment of autosomal dominant hearing loss by in vivo delivery of genome editing agents. Although genetic factors contribute to almost half of all cases of deafness, treatment options for genetic deafness are limited. We developed a genome-editing approach to target a dominantly inherited form of genetic deafness. Here we show that cationic lipid-mediated in vivo delivery of Cas9-guide RNA complexes can ameliorate hearing loss in a mouse model of human genetic deafness. We designed and validated, both in vitro and in primary fibroblasts, genome editing agents that preferentially disrupt the dominant deafness-associated allele in the Tmc1 (transmembrane channel-like gene family 1) Beethoven (Bth) mouse model, even though the mutant Tmc1<sup>Bth</sup> allele differs from the wild-type allele at only a single base pair. Injection of Cas9-guide RNA-lipid complexes targeting the Tmc1<sup>Bth</sup> allele into the cochlea of neonatal Tmc1<sup>Bth/+</sup> mice substantially reduced progressive hearing loss. We observed higher hair cell survival rates and lower auditory brainstem response thresholds in injected ears than in uninjected ears or ears injected with control complexes that targeted an unrelated gene. Enhanced acoustic startle responses were observed among injected compared to uninjected Tmc1<sup>Bth/+</sup> mice. These findings suggest that protein-RNA complex delivery of target gene-disrupting agents in vivo is a potential strategy for the treatment of some types of autosomal-dominant hearing loss."	"Combined genetic approaches yield a 48% diagnostic rate in a large cohort of French hearing-impaired patients. Hearing loss is the most common sensory disorder and because of its high genetic heterogeneity, implementation of Massively Parallel Sequencing (MPS) in diagnostic laboratories is greatly improving the possibilities of offering optimal care to patients. We present the results of a two-year period of molecular diagnosis that included 207 French families referred for non-syndromic hearing loss. Our multi-step strategy involved (i) DFNB1 locus analysis, (ii) MPS of 74 genes, and (iii) additional approaches including Copy Number Variations, in silico analyses, minigene studies coupled when appropriate with complete gene sequencing, and a specific assay for STRC. This comprehensive screening yielded an overall diagnostic rate of 48%, equally distributed between DFNB1 (24%) and the other genes (24%). Pathogenic genotypes were identified in 19 different genes, with a high prevalence of GJB2, STRC, MYO15A, OTOF, TMC1, MYO7A and USH2A. Involvement of an Usher gene was reported in 16% of the genotyped cohort. Four de novo variants were identified. This study highlights the need to develop several molecular approaches for efficient molecular diagnosis of hearing loss, as this is crucial for genetic counselling, audiological rehabilitation and the detection of syndromic forms."	"TMC2 Modifies Permeation Properties of the Mechanoelectrical Transducer Channel in Early Postnatal Mouse Cochlear Outer Hair Cells. The ability of cochlear hair cells to convert sound into receptor potentials relies on the mechanoelectrical transducer (MET) channels present in their stereociliary bundles. There is strong evidence implying that transmembrane channel-like protein (TMC) 1 contributes to the pore-forming subunit of the mature MET channel, yet its expression is delayed (~&gt;P5 in apical outer hair cells, OHCs) compared to the onset of mechanotransduction (~P1). Instead, the temporal expression of TMC2 coincides with this onset, indicating that it could be part of the immature MET channel. We investigated MET channel properties from OHCs of homo- and heterozygous Tmc2 knockout mice. In the presence of TMC2, the MET channel blocker dihydrostreptomycin (DHS) had a lower affinity for the channel, when the aminoglycoside was applied extracellularly or intracellularly, with the latter effect being more pronounced. In Tmc2 knockout mice OHCs were protected from aminoglycoside ototoxicity during the first postnatal week, most likely due to their small MET current and the lower saturation level for aminoglycoside entry into the individual MET channels. DHS entry through the MET channels of Tmc2 knockout OHCs was lower during the first than in the second postnatal week, suggestive of a developmental change in the channel pore properties independent of TMC2. However, the ability of TMC2 to modify the MET channel properties strongly suggests it contributes to the pore-forming subunit of the neonatal channel. Nevertheless, we found that TMC2, different from TMC1, is not necessary for OHC development. While TMC2 is required for mechanotransduction in mature vestibular hair cells, its expression in the immature cochlea may be an evolutionary remnant."	"Spatiotemporal changes in the distribution of LHFPL5 in mice cochlear hair bundles during development and in the absence of PCDH15. Mechanosensory transduction by vertebrate hair cells depends on a protein complex at the tips of shorter stereocilia associated with mechanoelectrical transduction channels activated by tip links in the hair bundle. In mammalian hair cells, this complex includes transmembrane channel-like protein subunit 1 (TMC1), lipoma HMGIC fusion partner-like 5 protein (LHFPL5) and protocadherin 15 (PCDH15), a lower-end component of the tip link. TMC1 interacts with LHFPL5 and PCDH15 but how the complex develops to maturity, and the relationships between these proteins, remains uncertain. Here we evaluate the spatiotemporal development of LHFPL5 distributions in mouse cochlear hair bundles by immunofluorescence and immunogold transmission electron microscopy, from postnatal day 0 (P0) through P21 in wild type and PCDH15-deficient mice. At P0, hair bundles contain many short microvilli-like processes which we term unranked stereocilia, and a subset of lengthening rows, adjacent to a kinocilium. LHFPL5 is distributed throughout the bundle, including on stereocilia tips and the kinocilium. At P3, 4-to-6 rows of ranked stereocilia are evident, total LHFPL5 expression peaks, and LHFPL5 is localised to ranked stereocilia tips of all rows and to lower shaft/ankle links. By P12, the bundle has a mature pattern with 3 ranked rows but virtually no unranked stereocilia or kinocilium; LHFPL5 expression has declined and become restricted to the tips of shorter stereocilia. Throughout development from P0, expression of LHFPL5 is greater overall on apical than basal bundles, but there is, on average, an equal amount of labelling per labelled tip. In P3 mice lacking PCDH15, LHFPL5 labelling is not at the tips but is primarily on unranked stereocilia and lower lateral links. These data show that LHFPL5 is already present in the MET apparatus at P0 but requires PCDH15 at P3 to remain there. Shaft/ankle link localisation suggests it interacts with link proteins other than PCDH15."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"Identification of a novel homozygous mutation in transmembrane channel like 1 (TMC1) gene, one of the second-tier hearing loss genes after GJB2 in India. Hearing impairment is a common and heterogeneous sensory disorder in humans. Among about 90 genes, which are known to be associated with hearing impairment, mutations in the GJB2 (gap junction protein beta 2) gene are the most prevalent in individuals with hereditary hearing loss. Contribution of the other deafness-causing genes is relatively poorly understood. Here, we present our findings on two families with transmembrane channel like 1 (TMC1) gene variants of the 47 families with nonsyndromic hearing loss (NSHL) studied. Forty seven families including 26 consanguineous families with at least two hearing impaired children and one normal hearing child and 21 non-consanguineous families having at least three hearing impaired children and one normal hearing child were enrolled for this study. Genetic linkage studies were carried out in 41 families that were GJB2 (Connexin 26) negative. Seven polymorphic short tandem repeat markers at the DFNB7/11 locus were studied employing fluorescently labelled markers. A novel homozygous missense mutation c.1283C&gt;A (p.Ala428Asp) was identified co-segregating with hearing loss. This change results in substitution of a highly conserved polar alanine to a charged aspartic acid and is predicted to be deleterious. In addition, a previously reported nonsense mutation, p.R34X in TMC1, was found. While mutations in TMC1 are not as common a cause of NSHL as those in GJB2, TMC1 should be considered for diagnostic investigations in cases of NSHL in GJB2-negative families."	"CIB2 interacts with TMC1 and TMC2 and is essential for mechanotransduction in auditory hair cells. Inner ear hair cells detect sound through deflection of stereocilia, the microvilli-like projections that are arranged in rows of graded heights. Calcium and integrin-binding protein 2 is essential for hearing and localizes to stereocilia, but its exact function is unknown. Here, we have characterized two mutant mouse lines, one lacking calcium and integrin-binding protein 2 and one carrying a human deafness-related Cib2 mutation, and show that both are deaf and exhibit no mechanotransduction in auditory hair cells, despite the presence of tip links that gate the mechanotransducer channels. In addition, mechanotransducing shorter row stereocilia overgrow in hair cell bundles of both Cib2 mutants. Furthermore, we report that calcium and integrin-binding protein 2 binds to the components of the hair cell mechanotransduction complex, TMC1 and TMC2, and these interactions are disrupted by deafness-causing Cib2 mutations. We conclude that calcium and integrin-binding protein 2 is required for normal operation of the mechanotransducer channels and is involved in limiting the growth of transducing stereocilia.Inner ear hair cells detect sound through deflection of stereocilia that harbor mechanically-gated channels. Here the authors show that protein responsible for Usher syndrome, CIB2, interacts with these channels and is essential for their function and hearing in mice."	"Integration of Tmc1/2 into the mechanotransduction complex in zebrafish hair cells is regulated by Transmembrane O-methyltransferase (Tomt). Transmembrane O-methyltransferase (TOMT/LRTOMT) is responsible for non-syndromic deafness DFNB63. However, the specific defects that lead to hearing loss have not been described. Using a zebrafish model of DFNB63, we show that the auditory and vestibular phenotypes are due to a lack of mechanotransduction (MET) in Tomt-deficient hair cells. GFP-tagged Tomt is enriched in the Golgi of hair cells, suggesting that Tomt might regulate the trafficking of other MET components to the hair bundle. We found that Tmc1/2 proteins are specifically excluded from the hair bundle in tomt mutants, whereas other MET complex proteins can still localize to the bundle. Furthermore, mouse TOMT and TMC1 can directly interact in HEK 293 cells, and this interaction is modulated by His183 in TOMT. Thus, we propose a model of MET complex assembly where Tomt and the Tmcs interact within the secretory pathway to traffic Tmc proteins to the hair bundle."	"Targeted sequencing identifies novel variants involved in autosomal recessive hereditary hearing loss in Qatari families. Hereditary hearing loss is characterized by a very high genetic heterogeneity. In the Qatari population the role of GJB2, the worldwide HHL major player, seems to be quite limited compared to Caucasian populations. In this study we analysed 18 Qatari families affected by non-syndromic hearing loss using a targeted sequencing approach that allowed us to analyse 81 genes simultaneously. Thanks to this approach, 50% of these families (9 out of 18) resulted positive for the presence of likely causative alleles in 6 different genes: CDH23, MYO6, GJB6, OTOF, TMC1 and OTOA. In particular, 4 novel alleles were detected while the remaining ones were already described to be associated to HHL in other ethnic groups. Molecular modelling has been used to further investigate the role of novel alleles identified in CDH23 and TMC1 genes demonstrating their crucial role in Ca2+ binding and therefore possible functional role in proteins. Present study showed that an accurate molecular diagnosis based on next generation sequencing technologies might largely improve molecular diagnostics outcome leading to benefits for both genetic counseling and definition of recurrence risk."	"Mechanosensory hair cells express two molecularly distinct mechanotransduction channels. Auditory hair cells contain mechanotransduction channels that rapidly open in response to sound-induced vibrations. We report here that auditory hair cells contain two molecularly distinct mechanotransduction channels. One ion channel is activated by sound and is responsible for sensory transduction. This sensory transduction channel is expressed in hair cell stereocilia, and previous studies show that its activity is affected by mutations in the genes encoding the transmembrane proteins TMHS, TMIE, TMC1 and TMC2. We show here that the second ion channel is expressed at the apical surface of hair cells and that it contains the Piezo2 protein. The activity of the Piezo2-dependent channel is controlled by the intracellular Ca<sup>2+</sup> concentration and can be recorded following disruption of the sensory transduction machinery or more generally by disruption of the sensory epithelium. We thus conclude that hair cells express two molecularly and functionally distinct mechanotransduction channels with different subcellular distributions."	"Molecular Identity of the Mechanotransduction Channel in Hair Cells: Not Quiet There Yet. Hair cells in the mammalian cochlea are specialized mechanosensory cells that convert sound-induced vibrations into electrochemical signals. The molecular composition of the mechanotransduction channel underlying auditory perception has been difficult to define. The study of genes that are linked to inherited forms of deafness has recently provided tantalizing clues. Current findings indicate that the mechanotransduction channel in hair cells is a complex molecular machine. Four different proteins (TMHS/LHFPL5, TMIE, TMC1, and TMC2) have so far been linked to the transduction channel, but which proteins contribute to the channel pore still needs to be determined. Current evidence also suggests that the channel complex may contain additional, yet to be identified components."	"Are TMCs the Mechanotransduction Channels of Vertebrate Hair Cells? Sensory transduction in vertebrate hair cells and the molecules that mediate it have long been of great interest. Some components of the mechanotransduction apparatus have been identified, most as deafness gene products. Although prior candidates for the mechanotransduction channel have been proposed, each has faded with new evidence. Now, two strong candidates, TMC1 and TMC2 (transmembrane channel-like), have emerged from discovery of deafness genes in humans and mice. They are expressed at the right time during development: exactly at the onset of mechanosensitivity. They are expressed in the right place: in hair cells but not surrounding cells. Fluorescently tagged TMCs localize to the tips of stereocilia, the site of the transduction channels. TMCs bind other proteins essential for mechanosensation, suggesting a larger transduction complex. Although TMC1 and TMC2 can substitute for each other, genetic deletion of both renders mouse hair cells mechanically insensitive. Finally, the conductance and Ca<sup>2+</sup> selectivity of the transduction channels depend on the TMC proteins, differing when hair cells express one or the other TMC, and differing if TMC1 harbors a point mutation. Some contrary evidence has emerged: a current activated in hair cells by negative pressure, with some similarity to the transduction current, persists in TMC knock-outs. But it is not clear that this anomalous current is carried by the same proteins. Further evidence is desired, such as production of a mechanically gated conductance by pure TMCs. But the great majority of evidence is consistent with these TMCs as pore-forming subunits of the long-sought hair-cell transduction channel."	"Genetic causes of moderate to severe hearing loss point to modifiers. The genetic underpinnings of recessively inherited moderate to severe sensorineural hearing loss are not well understood, despite its higher prevalence in comparison to profound deafness. We recruited 92 consanguineous families segregating stable or progressive, recessively inherited moderate or severe hearing loss. We utilized homozygosity mapping, Sanger sequencing, targeted capture of known deafness genes with massively parallel sequencing and whole exome sequencing to identify the molecular basis of hearing loss in these families. Variants of the known deafness genes were found in 69% of the participating families with the SLC26A4, GJB2, MYO15A, TMC1, TMPRSS3, OTOF, MYO7A and CLDN14 genes together accounting for hearing loss in 54% of the families. We identified 20 reported and 21 novel variants in 21 known deafness genes; 16 of the 20 reported variants, previously associated with stable, profound deafness were associated with moderate to severe or progressive hearing loss in our families. These data point to a prominent role for genetic background, environmental factors or both as modifiers of human hearing loss severity."	"Discoloration of the mucosa caused by different restorative materials - a spectrophotometric in vitro study. To evaluate the discoloration of the mucosa caused by different ceramic and metal-based materials. On six pig maxillae, trap-door flaps were prepared bilaterally. Different ceramic and metal-based specimens were placed underneath the flap. To simulate increasing mucosal thicknesses (MC), connective tissue grafts (CTGs) were harvested. Spectrophotometric measurements were performed prior to flap elevation (TBL ) and for each material under the flap alone (1 mm MC) (TMC1 ), with a 1-mm CTG (2-mm MC) (TMC2 ) and with a 2-mm CTG (3-mm MC) (TMC3 ). Tested materials were as follows: Zr1 (zirconia), Zr2 (zirconia + pink ceramic), Zr3 (zirconia), Zr4 (fluorescent zirconia), Zr5 (zirconia), Zr6 (high translucent zirconia), Zr7 (low translucent zirconia) and Zr8 (low translucent zirconia), Gol (gold alloy), Ti1 (titanium alloy), Ti2 (anodized gold-shaded titanium alloy) and Ti3 (anodized pink-shaded titanium alloy). Color differences (ΔE) were calculated comparing the measurement of the native tissue (TBL ) and the measurements with varying mucosal thicknesses (TMC1-3 ). For ceramic materials, the median ΔE values for the different time-point comparison ranged as follows: 3.80 (Zr4) - 7.47 (Zr2) (pooled); 3.15 (Zr4) - 8.13 (Zr2) (TBL -TMC1 ); 3.39 (Zr4) - 7.24 (Zr2) (TBL -TMC2 ); 4.31 (Zr8) - 6.99 (Zr2) (TBL -TMC3 ). For metal-based materials, the median ΔE values were as follows: 4.20 (Gol) - 5.82 (Ti3) (pooled); 3.21 (Gol) - 13.56 (Ti1) (TBL -TCM1 ); 4.0 (Ti1) - 5.27 (Gol) (TBL -TCM2 ); 3.11 (Ti1) - 5.11 (Gol) (TBL -TCM2 ). The comparison of the materials and the time points showed in the nonparametric linear mixed model a significant interaction effect between material and time point (P &lt; 0.001). The side was not a significant main effect, nor as term in an interaction with the other two effects. Reconstructive materials result in an evident discoloration of the mucosal tissue, tending to decrease with increasing mucosal thickness. The use of fluorescent zirconia (ceramic materials) or gold alloy (metal-based materials) lead to the least discoloration."	"Is TMC1 the Hair Cell Mechanotransducer Channel? Transmembrane channel-like protein isoform-1 (TMC1) has emerged over the past five years as a prime contender for the mechano-electrical transducer (MET) channel in hair cells of the inner ear. TMC1 is thought to have a six-transmembrane domain structure reminiscent of some other ion-channel subunits, and is targeted to the tips of the stereocilia in the sensory hair bundle, where the MET channel is located. Moreover, there are TMC1 mutations linked to human deafness causing loss of conventional MET currents, hair cell degeneration, and deafness in mice. Finally, mutations of Tmc1 can alter the conductance and Ca(2+) selectivity of the MET channels. For several reasons though, it is unclear that TMC1 is indeed the MET channel pore: 1) in other animals or tissues, mutations of TMC family members do not directly affect cellular mechanosensitivity; 2) there are residual manifestations of mechanosensitivity in hair cells of mouse Tmc1:Tmc2 double knockouts; 3) there is so far no evidence that expression of mammalian Tmc1 generates a mechanically sensitive ion channel in the plasma membrane when expressed in heterologous cells; and 4) there are other proteins, such as TMIE and LHFPL5, which behave similarly to TMC1, their mutation also leading to loss of MET current and deafness. This review will present these disparate lines of evidence and describes recent work that addresses the role of TMC1. "	"Transmembrane channel-like (tmc) gene regulates Drosophila larval locomotion. Drosophila larval locomotion, which entails rhythmic body contractions, is controlled by sensory feedback from proprioceptors. The molecular mechanisms mediating this feedback are little understood. By using genetic knock-in and immunostaining, we found that the Drosophila melanogaster transmembrane channel-like (tmc) gene is expressed in the larval class I and class II dendritic arborization (da) neurons and bipolar dendrite (bd) neurons, both of which are known to provide sensory feedback for larval locomotion. Larvae with knockdown or loss of tmc function displayed reduced crawling speeds, increased head cast frequencies, and enhanced backward locomotion. Expressing Drosophila TMC or mammalian TMC1 and/or TMC2 in the tmc-positive neurons rescued these mutant phenotypes. Bending of the larval body activated the tmc-positive neurons, and in tmc mutants this bending response was impaired. This implicates TMC's roles in Drosophila proprioception and the sensory control of larval locomotion. It also provides evidence for a functional conservation between Drosophila and mammalian TMCs."	"Mutation Screening of Exons 7 and 13 of the TMC1 Gene in Autosomal Recessive Non-syndromic Hearing Loss (ARNSHL) in Iran. Non-syndromic hearing loss (NSHL) is the most common birth defect and occurs in approximately 1/1,000 newborns. NSHL is a heterogeneous trait and can arise due to both genetic and environmental factors. Mutations of the transmembrane channel-like 1 (TMC1) gene cause non-syndromic deafness in humans and mice. The aim of the present study was to investigate the association of TMC1 gene mutations of the locus DFNB7/11 in exons 7 and 13 in a cohort of 100 patients with hearing loss in Iran using polymerase chain reaction-single-stranded conformation polymorphism (PCR-SSCP), heteroduplex analysis (HA), and DNA sequencing. In this experimental study, the blood samples of 100 NSHL patients were collected from 10 provinces in Iran. These patients had a mean age of 16.5 ± 2.01 years and 74.15% of their parents had consanguinity. DNA was extracted from specimens and mutations of exons 7 and 13 of the TMC1 gene were investigated using PCR-SSCP. All samples were checked via HA reaction and suspected specimens with shift bands were subjected to DNA sequencing for investigation of any gene variation. In this study, no mutation was found in the two exons of TMC1 gene. It was concluded from these results that mutations of the TMC1 gene's special exons 7 and 13 have a low contribution in patients and are not great of clinical importance in these Iranian provinces. More studies are needed to investigate the relationship between other parts of this gene with hearing loss in different populations through the country. More research could clarify the role of this gene and its relation with deafness and provide essential information for the prevention and management of auditory disorders caused by genetic factors in the Iranian population."	"RNA Interference Prevents Autosomal-Dominant Hearing Loss. Hearing impairment is the most common sensory deficit. It is frequently caused by the expression of an allele carrying a single dominant missense mutation. Herein, we show that a single intracochlear injection of an artificial microRNA carried in a viral vector can slow progression of hearing loss for up to 35 weeks in the Beethoven mouse, a murine model of non-syndromic human deafness caused by a dominant gain-of-function mutation in Tmc1 (transmembrane channel-like 1). This outcome is noteworthy because it demonstrates the feasibility of RNA-interference-mediated suppression of an endogenous deafness-causing allele to slow progression of hearing loss. Given that most autosomal-dominant non-syndromic hearing loss in humans is caused by this mechanism of action, microRNA-based therapeutics might be broadly applicable as a therapy for this type of deafness."	"Tmc1 Is a Dynamically Regulated Effector of the Rpn4 Proteotoxic Stress Response. The ubiquitin-proteasome system represents the major pathway of selective intracellular protein degradation in eukaryotes. Misfolded proteins represent an important class of substrates for this pathway, and the failure to destroy misfolded proteins is associated with a number of human diseases. The transcription factor Rpn4 mediates a key proteotoxic stress response whose best known function is to control proteasome abundance by a homeostatic feedback mechanism. Here we identify the uncharacterized zinc finger protein Tmc1 as a dynamically regulated stress-responsive protein. Rpn4 induces TMC1 transcription in response to misfolded proteins. However, this response is counteracted by rapid proteasome-dependent degradation of Tmc1, which serves to normalize Tmc1 protein levels after induction. Precise control of Tmc1 levels is needed in vivo to survive multiple stressors related to proteostasis. Thus, Tmc1 represents a novel effector and substrate of the Rpn4 proteotoxic stress response."	"Development and localization of reverse-polarity mechanotransducer channels in cochlear hair cells. Cochlear hair cells normally detect positive deflections of their hair bundles, rotating toward their tallest edge, which opens mechanotransducer (MT) channels by increased tension in interciliary tip links. After tip-link destruction, the normal polarity of MT current is replaced by a mechanically sensitive current evoked by negative bundle deflections. The &quot;reverse-polarity&quot; current was investigated in cochlear hair cells after tip-link destruction with BAPTA, in transmembrane channel-like protein isoforms 1/2 (Tmc1:Tmc2) double mutants, and during perinatal development. This current is a natural adjunct of embryonic development, present in all wild-type hair cells but declining after birth with emergence of the normal-polarity current. Evidence indicated the reverse-polarity current seen developmentally was a manifestation of the same ion channel as that evident under abnormal conditions in Tmc mutants or after tip-link destruction. In all cases, sinusoidal fluid-jet stimuli from different orientations suggested the underlying channels were opened not directly by deflections of the hair bundle but by deformation of the apical plasma membrane. Cell-attached patch recording on the hair-cell apical membrane revealed, after BAPTA treatment or during perinatal development, 90-pS stretch-activated cation channels that could be blocked by Ca(2+) and by FM1-43. High-speed Ca(2+) imaging, using swept-field confocal microscopy, showed the Ca(2+) influx through the reverse-polarity channels was not localized to the hair bundle, but distributed across the apical plasma membrane. These reverse-polarity channels, which we propose to be renamed &quot;unconventional&quot; mechanically sensitive channels, have some properties similar to the normal MT channels, but the relationship between the two types is still not well defined."	"DNA Diagnostics of Hereditary Hearing Loss: A Targeted Resequencing Approach Combined with a Mutation Classification System. Although there are nearly 100 different causative genes identified for nonsyndromic hearing loss (NSHL), Sanger sequencing-based DNA diagnostics usually only analyses three, namely, GJB2, SLC26A4, and OTOF. As this is seen as inadequate, there is a need for high-throughput diagnostic methods to detect disease-causing variations, including single-nucleotide variations (SNVs), insertions/deletions (Indels), and copy-number variations (CNVs). In this study, a targeted resequencing panel for hearing loss was developed including 79 genes for NSHL and selected forms of syndromic hearing loss. One-hundred thirty one presumed autosomal-recessive NSHL (arNSHL) patients of Western-European ethnicity were analyzed for SNVs, Indels, and CNVs. In addition, we established a straightforward variant classification system to deal with the large number of variants encountered. We estimate that combining prescreening of GJB2 with our panel leads to a diagnosis in 25%-30% of patients. Our data show that after GJB2, the most commonly mutated genes in a Western-European population are TMC1, MYO15A, and MYO7A (3.1%). CNV analysis resulted in the identification of causative variants in two patients in OTOA and STRC. One of the major challenges for diagnostic gene panels is assigning pathogenicity for variants. A collaborative database collecting all identified variants from multiple centers could be a valuable resource for hearing loss diagnostics."	"[Advances in hereditary hearing loss caused by TMC1 mutations]. Hearing loss is the most frequent sensorineural disorder worldwild, among which about 50% are caused by genetic factors. TMC1 is one of the common genes causing hereditary hearing loss. TMC1 mutations can cause pre-lingual profound/severe autosomal recessive (DFNB7/11) and post-lingual progressive autosomal dominant (DFNA36) non-syndromic hearing loss. Murine models studies show that TMC1, 2 are expressed in cochlea inner and outer hair cells and maintain normal mechanoelectrical transduction (MET) functions of the hair cells. A growing number of evidence indicate that TMC1, 2 are components of the MET complex. It is necessary to definite the precise distribution and exact function of TMC1, 2, because it is important to understand the regulating mechanism of auditory function. "	"Recessive mutations of TMC1 associated with moderate to severe hearing loss. TMC1 encodes a protein required for the normal function of mechanically activated channels that enable sensory transduction in auditory and vestibular hair cells. TMC1 protein is localized at the tips of the hair cell stereocilia, the site of conventional mechanotransduction. In many populations, loss-of-function recessive mutations of TMC1 are associated with profound deafness across all frequencies tested. In six families reported here, variable moderate-to-severe or moderate-to-profound hearing loss co-segregated with STR (short tandem repeats) markers at the TMC1 locus DFNB7/11. Massively parallel and Sanger sequencing of genomic DNA revealed each family co-segregating hearing loss with a homozygous TMC1 mutation: two reported mutations (p.R34X and p.R389Q) and three novel mutations (p.S596R, p.N199I, and c.1404 + 1G &gt; T). TMC1 cDNA sequence from affected subjects homozygous for the donor splice site transversion c.1404 + 1G &gt; T revealed skipping of exon 16, deleting 60 amino acids from the TMC1 protein. Since the mutations in our study cause less than profound hearing loss, we speculate that there is hypo-functional TMC1 mechanotransduction channel activity and that other even less damaging variants of TMC1 may be associated with more common mild-to-severe sensorineural hearing loss."	"Exome sequencing identifies a mutation in TMC1 as a novel cause of autosomal recessive nonsyndromic hearing loss. Autosomal recessive non-syndromic hearing loss (ARNSHL) is highly heterogeneous, and mutations in the gene encoding transmembrane channel-like 1 (TMC1) have been implicated in its development. To date, 35 homozygous mutations in TMC1, identified in over 60 families worldwide, have been shown to be associated with ARNSHL. However, few of these mutations were detected in the Chinese population. In this study, we describe a pathogenic missense mutation located in the T5-T6 domain of TMC1 in a three-generation Chinese family with 14 members. Whole exome sequencing was performed using samples from one unaffected individual and two affected individuals to systematically search for deafness susceptibility genes. Candidate mutations and cosegregation of the phenotype were verified by polymerase chain reaction and Sanger sequencing in all of the family members. We identified a novel TMC1 mutation in exon 20, c.1979C&gt;T, p.P660L, which segregated with prelingual autosomal recessive sensorineural hearing loss. We found a new missense mutation in the T5-T6 domain of TMC1, which is highly conserved in many species. These data support the potential conserved role of p.P660L in human TMC1 function."	"Tmc1 Point Mutation Affects Ca2+ Sensitivity and Block by Dihydrostreptomycin of the Mechanoelectrical Transducer Current of Mouse Outer Hair Cells. The transduction of sound into electrical signals depends on mechanically sensitive ion channels in the stereociliary bundle. The molecular composition of this mechanoelectrical transducer (MET) channel is not yet known. Transmembrane channel-like protein isoforms 1 (TMC1) and 2 (TMC2) have been proposed to form part of the MET channel, although their exact roles are still unclear. Using Beethoven (Tmc1(Bth/Bth)) mice, which have an M412K point mutation in TMC1 that adds a positive charge, we found that Ca(2+) permeability and conductance of the MET channel of outer hair cells (OHCs) were reduced. Tmc1(Bth/Bth) OHCs were also less sensitive to block by the permeant MET channel blocker dihydrostreptomycin, whether applied extracellularly or intracellularly. These findings suggest that the amino acid that is mutated in Bth is situated at or near the negatively charged binding site for dihydrostreptomycin within the permeation pore of the channel. We also found that the Ca(2+) dependence of the operating range of the MET channel was altered by the M412K mutation. Depolarization did not increase the resting open probability of the MET current of Tmc1(Bth/Bth) OHCs, whereas raising the intracellular concentration of the Ca(2+) chelator BAPTA caused smaller increases in resting open probability in Bth mutant OHCs than in wild-type control cells. We propose that these observations can be explained by the reduced Ca(2+) permeability of the mutated MET channel indirectly causing the Ca(2+) sensor for adaptation, at or near the intracellular face of the MET channel, to become more sensitive to Ca(2+) influx as a compensatory mechanism. In the auditory system, the hair cells convert sound-induced mechanical movement of the hair bundles atop these cells into electrical signals through the opening of mechanically gated ion channels at the tips of the bundles. Although the nature of these mechanoelectrical transducer (MET) channels is still unclear, recent studies implicate transmembrane channel-like protein isoform 1 (TMC1) channels in the mammalian cochlea. Using a mutant mouse model (Beethoven) for progressive hearing loss in humans (DFNA36), which harbors a point mutation in the Tmc1 gene, we show that this mutation affects the MET channel pore, reducing its Ca(2+) permeability and its affinity for the permeant blocker dihydrostreptomycin. A number of phenomena that we ascribe to Ca(2+)-dependent adaptation appear stronger, in compensation for the reduced Ca(2+) entry."	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"In the Right Place at the Right Time: Is TMC1/2 the Transduction Channel for Hearing? Recent papers suggest that TMC1 and TMC2 constitute the ion channels mediating hearing and balance. Kurima et al. (2015) now show these proteins are expressed in the right place and at the right time, bringing us closer to definitive identification. "	"The effects of Tmc1 Beethoven mutation on mechanotransducer channel function in cochlear hair cells. Sound stimuli are converted into electrical signals via gating of mechano-electrical transducer (MT) channels in the hair cell stereociliary bundle. The molecular composition of the MT channel is still not fully established, although transmembrane channel-like protein isoform 1 (TMC1) may be one component. We found that in outer hair cells of Beethoven mice containing a M412K point mutation in TMC1, MT channels had a similar unitary conductance to that of wild-type channels but a reduced selectivity for Ca(2+). The Ca(2+)-dependent adaptation that adjusts the operating range of the channel was also impaired in Beethoven mutants, with reduced shifts in the relationship between MT current and hair bundle displacement for adapting steps or after lowering extracellular Ca(2+); these effects may be attributed to the channel's reduced Ca(2+) permeability. Moreover, the density of stereociliary CaATPase pumps for Ca(2+) extrusion was decreased in the mutant. The results suggest that a major component of channel adaptation is regulated by changes in intracellular Ca(2+). Consistent with this idea, the adaptive shift in the current-displacement relationship when hair bundles were bathed in endolymph-like Ca(2+) saline was usually abolished by raising the intracellular Ca(2+) concentration. "	"TMC1 and TMC2 Localize at the Site of Mechanotransduction in Mammalian Inner Ear Hair Cell Stereocilia. Mechanosensitive ion channels at stereocilia tips mediate mechanoelectrical transduction (MET) in inner ear sensory hair cells. Transmembrane channel-like 1 and 2 (TMC1 and TMC2) are essential for MET and are hypothesized to be components of the MET complex, but evidence for their predicted spatiotemporal localization in stereocilia is lacking. Here, we determine the stereocilia localization of the TMC proteins in mice expressing TMC1-mCherry and TMC2-AcGFP. Functionality of the tagged proteins was verified by transgenic rescue of MET currents and hearing in Tmc1(Δ/Δ);Tmc2(Δ/Δ) mice. TMC1-mCherry and TMC2-AcGFP localize along the length of immature stereocilia. However, as hair cells develop, the two proteins localize predominantly to stereocilia tips. Both TMCs are absent from the tips of the tallest stereocilia, where MET activity is not detectable. This distribution was confirmed for the endogenous proteins by immunofluorescence. These data are consistent with TMC1 and TMC2 being components of the stereocilia MET channel complex."	"Comparative transcriptome analysis reveals that the extracellular matrix receptor interaction contributes to the venous metastases of hepatocellular carcinoma. Hepatocellular carcinoma (HCC) is the most common type of liver cancer in the world. Portal vein tumor thrombus (PVTT) is one of the most serious complications of HCC and is strongly correlated with a poor prognosis for HCC patients. However, the detailed mechanism of PVTT development remains to be explored. In this study, we present a large-scale transcriptome analysis, by RNA sequencing, of 11 patients diagnosed with HCC with PVTT. The dysregulated genes between HCC and PVTT suggested that the extracellular matrix receptor interaction was correlated with the venous metastases of HCC. Among all of the recurrent alternative splicing events, we identified exon 6 skipping of RPS24, which is likely to be a cancer driver. We also identified five common fusion genes between HCC and its corresponding PVTT samples, including ARID1A-GPATCH3, MDM1-NUP107, PTGES3-RARG, PRLR-TERT, and C9orf3-TMC1. All of these findings broaden our knowledge of PVTT development and may also contribute to the diagnosis and treatment of HCC patients with PVTT. "	"A novel mutation in the TMC1 gene causes non-syndromic hearing loss in a Moroccan family. Autosomal recessive non-syndromic hearing loss (ARNSHL) is one of the most common genetic diseases in human and is subject to important genetic heterogeneity, rendering molecular diagnosis difficult. Whole-exome sequencing is thus a powerful strategy for this purpose. After excluding GJB2 mutation and other common mutations associated with hearing loss in Morocco, whole-exome sequencing was performed to study the genetic causes of one sibling with ARSHNL in a consanguineous Moroccan family. After filtering data and Sanger sequencing validation, one novel pathogenic homozygous mutation c.1810C&gt;G (p.Arg604Gly) was identified in TMC1, a gene reported to cause deafness in various populations. Thus, we identified here the first mutation in the TMC1 gene in the Moroccan population causing non-syndromic hearing loss. "	"Comprehensive analysis via exome sequencing uncovers genetic etiology in autosomal recessive nonsyndromic deafness in a large multiethnic cohort. Autosomal recessive nonsyndromic deafness (ARNSD) is characterized by a high degree of genetic heterogeneity, with reported mutations in 58 different genes. This study was designed to detect deafness-causing variants in a multiethnic cohort with ARNSD by using whole-exome sequencing (WES). After excluding mutations in the most common gene, GJB2, we performed WES in 160 multiplex families with ARNSD from Turkey, Iran, Mexico, Ecuador, and Puerto Rico to screen for mutations in all known ARNSD genes. We detected ARNSD-causing variants in 90 (56%) families, 54% of which had not been previously reported. Identified mutations were located in 31 known ARNSD genes. The most common genes with mutations were MYO15A (13%), MYO7A (11%), SLC26A4 (10%), TMPRSS3 (9%), TMC1 (8%), ILDR1 (6%), and CDH23 (4%). Nine mutations were detected in multiple families with shared haplotypes, suggesting founder effects. We report on a large multiethnic cohort with ARNSD in which comprehensive analysis of all known ARNSD genes identifies causative DNA variants in 56% of the families. In the remaining families, WES allows us to search for causative variants in novel genes, thus improving our ability to explain the underlying etiology in more families.Genet Med 18 4, 364-371."	"Tmc gene therapy restores auditory function in deaf mice. Genetic hearing loss accounts for up to 50% of prelingual deafness worldwide, yet there are no biologic treatments currently available. To investigate gene therapy as a potential biologic strategy for restoration of auditory function in patients with genetic hearing loss, we tested a gene augmentation approach in mouse models of genetic deafness. We focused on DFNB7/11 and DFNA36, which are autosomal recessive and dominant deafnesses, respectively, caused by mutations in transmembrane channel-like 1 (TMC1). Mice that carry targeted deletion of Tmc1 or a dominant Tmc1 point mutation, known as Beethoven, are good models for human DFNB7/11 and DFNA36. We screened several adeno-associated viral (AAV) serotypes and promoters and identified AAV2/1 and the chicken β-actin (Cba) promoter as an efficient combination for driving the expression of exogenous Tmc1 in inner hair cells in vivo. Exogenous Tmc1 or its closely related ortholog, Tmc2, were capable of restoring sensory transduction, auditory brainstem responses, and acoustic startle reflexes in otherwise deaf mice, suggesting that gene augmentation with Tmc1 or Tmc2 is well suited for further development as a strategy for restoration of auditory function in deaf patients who carry TMC1 mutations. "	"Gene therapy for deafness: How close are we? Virus-mediated transfer of genes encoding the mechanotransducer channel candidates TMC1 and TMC2 into hair cells of the ear partially restores hearing in animal models of human genetic deafness (Askew et al., this issue). "	"A QTL on Chr 5 modifies hearing loss associated with the fascin-2 variant of DBA/2J mice. Inbred mouse strains serve as important models for human presbycusis or age-related hearing loss. We previously mapped a locus (ahl8) contributing to the progressive hearing loss of DBA/2J (D2) mice and later showed that a missense variant of the Fscn2 gene, unique to the D2 inbred strain, was responsible for the ahl8 effect. Although ahl8 can explain much of the hearing loss difference between C57BL/6J (B6) and D2 strain mice, other loci also contribute. Here, we present results of our linkage analyses to map quantitative trait loci (QTLs) that modify the severity of hearing loss associated with the D2 strain Fscn2 (ahl8) allele. We searched for modifier loci by analyzing 31 BXD recombinant inbred (RI) lines fixed for the predisposing D2-derived Fscn2 (ahl8/ahl8) genotype and found a statistically significant linkage association of threshold means with a QTL on Chr 5, which we designated M5ahl8. The highest association (LOD 4.6) was with markers at the 84-90 Mb position of Chr 5, which could explain about 46 % of the among-RI strain variation in auditory brainstem response (ABR) threshold means. The semidominant nature of the modifying effect of M5ahl8 on the Fscn2 (ahl8/ahl8) phenotype was demonstrated by analysis of a backcross involving D2 and B6.D2-Chr11D/LusJ strain mice. The Chr 5 map position of M5ahl8 and the D2 origin of its susceptibility allele correspond to Tmc1m4, a previously reported QTL that modifies outer hair cell degeneration in Tmc1 (Bth) mutant mice, suggesting that M5ahl8 and Tmc1m4 may represent the same gene affecting maintenance of stereocilia structure and function during aging. "	"Targeted gene capture and massively parallel sequencing identify TMC1 as the causative gene in a six-generation Chinese family with autosomal dominant hearing loss. Hereditary nonsyndromic hearing loss is extremely heterogeneous. Mutations in the transmembrane channel-like gene1 (TMC1) are known to cause autosomal dominant and recessive forms of nonsyndromic hearing loss linked to the loci of DFNA36 and DFNB7/11, respectively. We characterized a six-generation Chinese family (5315) with progressive, postlingual autosomal dominant nonsyndromic hearing loss (ADNSHL). By combining targeted capture of 82 known deafness genes, next-generation sequencing and bioinformatic analysis, we identified TMC1 c.1714G&gt;A (p. D572N) as the disease-causing mutation. This mutation co-segregated with hearing loss in other family members and was not detected in 308 normal controls. In order to determine the prevalence of TMC1 c.1714G&gt;A in Chinese ADNSHL families, we used DNA samples from 67 ADNSHL families with sloping audiogram and identified two families carry this mutation. To determine whether it arose from a common ancestor, we analyzed nine STR markers. Our results indicated that TMC1 c.1714G&gt;A (p.D572N) account for about 4.4% (3/68) of ADNSHL in the Chinese population."	"The tip-link molecular complex of the auditory mechano-electrical transduction machinery. Sound waves are converted into electrical signals by a process of mechano-electrical transduction (MET), which takes place in the hair bundle of cochlear hair cells. In response to the mechanical stimulus of the hair bundle, the tip-links, key components of the MET machinery, are tensioned and the MET channels open, which results in the generation of the cell receptor potential. Tip-links are composed of cadherin-23 (Cdh23) and protocadherin-15 (Pcdh15), both non-conventional cadherins, that form the upper and the lower part of these links, respectively. Here, we review the various Pcdh15 isoforms present in the organ of Corti, their localization in the auditory hair bundles, their involvement in the molecular complex forming the tip-link, and their interactions with transmembrane molecules that are components of the lower MET machinery."	"Diversity of the causal genes in hearing impaired Algerian individuals identified by whole exome sequencing. The genetic heterogeneity of congenital hearing disorders makes molecular diagnosis expensive and time-consuming using conventional techniques such as Sanger sequencing of DNA. In order to design an appropriate strategy of molecular diagnosis in the Algerian population, we explored the diversity of the involved mutations by studying 65 families affected by autosomal recessive forms of nonsyndromic hearing impairment (DFNB forms), which are the most prevalent early onset forms. We first carried out a systematic screening for mutations in GJB2 and the recurrent p.(Arg34*) mutation in TMC1, which were found in 31 (47.7%) families and 1 (1.5%) family, respectively. We then performed whole exome sequencing in nine of the remaining families, and identified the causative mutations in all the patients analyzed, either in the homozygous state (eight families) or in the compound heterozygous state (one family): (c.709C&gt;T: p.(Arg237*)) and (c.2122C&gt;T: p.(Arg708*)) in OTOF, (c.1334T&gt;G: p.(Leu445Trp)) in SLC26A4, (c.764T&gt;A: p.(Met255Lys)) in GIPC3, (c.518T&gt;A: p.(Cys173Ser)) in LHFPL5, (c.5336T&gt;C: p.(Leu1779Pro)) in MYO15A, (c.1807G&gt;T: p.(Val603Phe)) in OTOA, (c.6080dup: p.(Asn2027Lys*9)) in PTPRQ, and (c.6017del: p.(Gly2006Alafs*13); c.7188_7189ins14: p.(Val2397Leufs*2)) in GPR98. Notably, 7 of these 10 mutations affecting 8 different genes had not been reported previously. These results highlight for the first time the genetic heterogeneity of the early onset forms of nonsyndromic deafness in Algerian families. "	"Targeted next-generation sequencing in Uyghur families with non-syndromic sensorineural hearing loss. The mutation spectrum of deafness genes may vary in different ethnical groups. In this study, we investigated the genetic etiology of nonsyndromic deafness in four consanguineous and two multiplex Uyghur families in which mutations in common deafness genes GJB2, SLC26A4 and MT-RNR1 were excluded. Targeted next-generation sequencing of 97 deafness genes was performed in the probands of each family. Novel pathogenic mutations were identified in four probands including the p.L416R/p.A438T compound heterozygous mutations in TMC1, the homozygous p.V1880E mutation in MYO7A, c.1238delT frameshifting deletion in PCDH15 and c.9690+1G&gt;A splice site mutation in MYO15A. Co-segregation of the mutations and the deafness were confirmed within each family by Sanger sequencing. No pathogenic mutations were identified in one multiplex family and one consanguineous family. Our study provided a useful piece of information for the genetic etiology of deafness in Uyghurs. "	"A TMC1 (transmembrane channel-like 1) mutation (p.S320R) in a Polish family with hearing impairment. After excluding frequent mutations in common genes like GJB2, SLC26A4 and MT-RNR1 by straightforward Sanger sequencing in about 20 Polish families with hearing impairment, new and possibly pathogenic mutations were searched for by next-generation sequencing (NGS) screening using a specialised panel including more than 80 genes connected with hearing disorders. Due to high rates of false-positive pathogen predictions for newly discovered single-nucleotide polymorphisms (SNPs), different prediction models were combined to enhance the prediction power. In one family with a record of over four generations, II,3 and II,4 were suspected of hearing impairment without medical records. A male person (III,2) displayed hearing loss of 40 dB hearing level (HL) and his two sons, IV,1 and IV,2, were both affected; one with 90 dB HL and the other with 40 dB HL. Here, one heterozygous, non-synonymous variant was detected, with the SNP causing an amino acid substitution in TMC1 (transmembrane channel-like 1), a gene reported with many mutations in DFNA36 and DFNB7/11 (OMIM #606705 and #600974, respectively). Until now, the substitution p.S320R has not been described in any database. Instead of the significance of this mutation by bioinformatics tools, we confirmed the genotype-phenotype co-segregation in family members. The involvement of TMC1 in hereditary hearing impairment has not been observed in the Polish population so far."	"Subunit determination of the conductance of hair-cell mechanotransducer channels. Cochlear hair cells convert sound stimuli into electrical signals by gating of mechanically sensitive ion channels in their stereociliary (hair) bundle. The molecular identity of this ion channel is still unclear, but its properties are modulated by accessory proteins. Two such proteins are transmembrane channel-like protein isoform 1 (TMC1) and tetraspan membrane protein of hair cell stereocilia (TMHS, also known as lipoma HMGIC fusion partner-like 5, LHFPL5), both thought to be integral components of the mechanotransduction machinery. Here we show that, in mice harboring an Lhfpl5 null mutation, the unitary conductance of outer hair cell mechanotransducer (MT) channels was reduced relative to wild type, and the tonotopic gradient in conductance, where channels from the cochlear base are nearly twice as conducting as those at the apex, was almost absent. The macroscopic MT current in these mutants was attenuated and the tonotopic gradient in amplitude was also lost, although the current was not completely extinguished. The consequences of Lhfpl5 mutation mirror those due to Tmc1 mutation, suggesting a part of the MT-channel conferring a large and tonotopically variable conductance is similarly disrupted in the absence of Lhfpl5 or Tmc1. Immunolabelling demonstrated TMC1 throughout the stereociliary bundles in wild type but not in Lhfpl5 mutants, implying the channel effect of Lhfpl5 mutations stems from down-regulation of TMC1. Both LHFPL5 and TMC1 were shown to interact with protocadherin-15, a component of the tip link, which applies force to the MT channel. We propose that titration of the TMC1 content of the MT channel sets the gradient in unitary conductance along the cochlea. "	"TMIE is an essential component of the mechanotransduction machinery of cochlear hair cells. Hair cells are the mechanosensory cells of the inner ear. Mechanotransduction channels in hair cells are gated by tip links. The molecules that connect tip links to transduction channels are not known. Here we show that the transmembrane protein TMIE forms a ternary complex with the tip-link component PCDH15 and its binding partner TMHS/LHFPL5. Alternative splicing of the PCDH15 cytoplasmic domain regulates formation of this ternary complex. Transducer currents are abolished by a homozygous Tmie-null mutation, and subtle Tmie mutations that disrupt interactions between TMIE and tip links affect transduction, suggesting that TMIE is an essential component of the hair cell's mechanotransduction machinery that functionally couples the tip link to the transduction channel. The multisubunit composition of the transduction complex and the regulation of complex assembly by alternative splicing is likely critical for regulating channel properties in different hair cells and along the cochlea's tonotopic axis. "	"Autosomal recessive non-syndromic hearing loss is caused by novel compound heterozygous mutations in TMC1 from a Tibetan Chinese family. Hearing loss is the most common sensory disorder worldwide. Biallelic mutations in 42 different genes have been identified as associated with autosomal recessive non-syndromic hearing loss (ARNSHL). One of the common genes responsible for ARNSHL is TMC1. TMC1 mutations have been reported to cause non-syndromic hearing loss in a variety of populations. The current study is designed to investigate mutations prevalent among Chinese ethnic groups with ARNSHL. Targeted exome sequencing (TES) was employed to study the genetic causes of two siblings with ARNSHL in a Tibetan Chinese family. Variants identified by TES were further confirmed by Sanger sequencing. We identified two distinct variants in the TMC1 gene in two deaf siblings of one Tibetan Chinese family using TES. Both siblings inherited a paternal allele containing a deletion of c.1396_1398AAC (p.Asn466del) and a maternal allele containing an insertion of c.2210_2211insCT (p.Glu737HisfsX2). The former disrupts a highly conserved residue in the large intracellular loop domain adjacent to the fourth transmembrane domain, and the latter causes a truncation of a portion of the C-terminal domain. These variants were compound heterzygous and segregated with the hearing impairment in this family. The novel compound heterozygous mutant alleles of TMC1 identified in this study were responsible for the ARNSHL in this Tibetan Chinese family. Although compound heterozygous mutations in TMC1 occurring in different TMC1 domains have been previously described in Han Chinese; this result suggests that the TMC1 variants contributing to hereditary deafness in Chinese populations may be more complex than initially assumed and that sequence-based diagnostics will be required for a comprehensive evaluation of ARNSHL."	"Allelic heterogeneity among Iranian DFNB7/11 families: report of a new Iranian deaf family with TMC1 mutation identified by next-generation sequencing. Co-segregation of c.2030T&gt;C mutation with hearing loss in an Iranian family and absence of this mutation in 100 Iranian controls confirms the pathogenicity of this mutation. Allelic heterogeneity among Iranian DFNB7/11 families has been shown by the identification of six different mutations in eight families. Transmembrane channel-like 1 (TMC1) gene encodes an integral membrane protein such that its mutations can cause DFNB7/11 hearing loss. To date, several TMC1 mutations have been reported from Iran. Here we report a new DFNB7/11 Iranian family with an unreported TMC1 mutation in Iran. A total of 66 genes related to hearing loss were analyzed using the OtoSCOPE platform in an affected member of an Iranian deaf family (Irn-Deaf-6866). Sanger sequencing was performed to confirm next-generation sequencing findings. A mutation, c.2030T&gt;C, was identified in exon 21 of the TMC1 gene in the investigated member of the family. Sequencing results in all members of the family confirmed association of this mutation with hearing loss. None of 100 ethnically matched healthy controls had this mutation."	"Targeted genomic capture and massively parallel sequencing to identify novel variants causing Chinese hereditary hearing loss. Hereditary hearing loss is genetically heterogeneous, and hundreds of mutations in than 60 genes are involved in this disease. Therefore, it is difficult to identify the causative gene mutations involved. In this study, we combined targeted genomic capture and massively parallel sequencing (MPS) to address this issue. Using targeted genomic capture and MPS, 104 genes and three microRNA regions were selected and simultaneously sequenced in 23 unrelated probands of Chinese families with nonsyndromic hearing loss. The results were validated by Sanger sequencing for all available members of the probands' families. To analyze the possible pathogenic functional effects of the variants, three types of prediction programs (Mutation Taster, PROVEAN and SIFT) were used. A total of 195 healthy Chinese Han individuals were compared as controls to verify the novel causative mutations. Of the 23 probands, six had mutations in DFNA genes [WFS1 (n = 2), COCH, ACTG1, TMC1, and POU4F3] known to cause autosomal dominant nonsyndromic hearing loss. These included one novel in-frame indel mutation, three novel missense mutations and two reported missense mutations. Furthermore, one proband from a family with recessive DFNB carried two monoallelic mutations in the GJB2 and USH2A genes. All of these mutations co-segregated with the hearing loss phenotype in 36 affected individuals from 7 families and were predicted to be pathogenic. Mutations in uncommon deafness genes contribute to a portion of nonsyndromic deafness cases. In the future, critical gene mutations may be accurately and quickly identified in families with hereditary hearing loss by targeted genomic capture and MPS."	"Tip-link protein protocadherin 15 interacts with transmembrane channel-like proteins TMC1 and TMC2. The tip link protein protocadherin 15 (PCDH15) is a central component of the mechanotransduction complex in auditory and vestibular hair cells. PCDH15 is hypothesized to relay external forces to the mechanically gated channel located near its cytoplasmic C terminus. How PCDH15 is coupled to the transduction machinery is not clear. Using a membrane-based two-hybrid screen to identify proteins that bind to PCDH15, we detected an interaction between zebrafish Pcdh15a and an N-terminal fragment of transmembrane channel-like 2a (Tmc2a). Tmc2a is an ortholog of mammalian TMC2, which along with TMC1 has been implicated in mechanotransduction in mammalian hair cells. Using the above-mentioned two-hybrid assay, we found that zebrafish Tmc1 and Tmc2a can interact with the CD1 or CD3 cytoplasmic domain isoforms of Pcdh15a, and this interaction depends on the common region shared between the two Pcdh15 isoforms. Moreover, an interaction between mouse PCDH15-CD3 and TMC1 or TMC2 was observed in both yeast two-hybrid assays and coimmunoprecipitation experiments. To determine whether the Pcdh15-Tmc interaction is relevant to mechanotransduction in vivo, we overexpressed N-terminal fragments of Tmc2a in zebrafish hair cells. Overexpression of the Tmc2a N terminus results in mislocalization of Pcdh15a within hair bundles, together with a significant decrease in mechanosensitive responses, suggesting that a Pcdh15a-Tmc complex is critical for mechanotransduction. Together, these results identify an evolutionarily conserved association between the fish and mouse orthologs of PCDH15 and TMC1 and TMC2, supporting the notion that TMCs are key components of the transduction complex in hair cells. "	"Transmembrane channel-like (TMC) genes are required for auditory and vestibular mechanosensation. Mutations of the transmembrane channel-like 1 (TMC1) gene can cause dominant and recessive forms of deafness in humans and mice. TMC1 is one of eight mammalian TMC genes of unknown function. The multi-pass transmembrane topologic structure of the proteins they encode suggests roles as a receptor, transporter, channel, or pump. Tmc1 and the closely related Tmc2 gene are expressed in neurosensory hair cells of the auditory and vestibular end organs of the mouse inner ear. Recent studies have demonstrated that Tmc1 and Tmc2 are specifically required for mechanoelectrical transduction in hair cells. The exact role of these proteins in mechanoelectrical transduction is unknown. TMC1 and TMC2 are viable candidates for the mechanoelectrical transduction channel of hair cells, whose component molecules have eluded identification for over 30 years. We expect that studies of TMC proteins will yield insights into molecular components and mechanisms of mechanosensation in auditory and vestibular hair cells, as well as in other tissues and organs."	"Conductance and block of hair-cell mechanotransducer channels in transmembrane channel-like protein mutants. Transmembrane channel-like (TMC) proteins TMC1 and TMC2 are crucial to the function of the mechanotransducer (MT) channel of inner ear hair cells, but their precise function has been controversial. To provide more insight, we characterized single MT channels in cochlear hair cells from wild-type mice and mice with mutations in Tmc1, Tmc2, or both. Channels were recorded in whole-cell mode after tip link destruction with BAPTA or after attenuating the MT current with GsMTx-4, a peptide toxin we found to block the channels with high affinity. In both cases, the MT channels in outer hair cells (OHCs) of wild-type mice displayed a tonotopic gradient in conductance, with channels from the cochlear base having a conductance (110 pS) nearly twice that of those at the apex (62 pS). This gradient was absent, with channels at both cochlear locations having similar small conductances, with two different Tmc1 mutations. The conductance of MT channels in inner hair cells was invariant with cochlear location but, as in OHCs, was reduced in either Tmc1 mutant. The gradient of OHC conductance also disappeared in Tmc1/Tmc2 double mutants, in which a mechanically sensitive current could be activated by anomalous negative displacements of the hair bundle. This &quot;reversed stimulus-polarity&quot; current was seen with two different Tmc1/Tmc2 double mutants, and with Tmc1/Tmc2/Tmc3 triple mutants, and had a pharmacological sensitivity comparable to that of native MT currents for most antagonists, except dihydrostreptomycin, for which the affinity was less, and for curare, which exhibited incomplete block. The existence in the Tmc1/Tmc2 double mutants of MT channels with most properties resembling those of wild-type channels indicates that proteins other than TMCs must be part of the channel pore. We suggest that an external vestibule of the MT channel may partly account for the channel's large unitary conductance, high Ca(2+) permeability, and pharmacological profile, and that this vestibule is disrupted in Tmc mutants. "	"Genetic spectrum of autosomal recessive non-syndromic hearing loss in Pakistani families. The frequency of inherited bilateral autosomal recessive non-syndromic hearing loss (ARNSHL) in Pakistan is 1.6/1000 individuals. More than 50% of the families carry mutations in GJB2 while mutations in MYO15A account for about 5% of recessive deafness. In the present study a cohort of 30 ARNSHL families was initially screened for mutations in GJB2 and MYO15A. Homozygosity mapping was performed by employing whole genome single nucleotide polymorphism (SNP) genotyping in the families that did not carry mutations in GJB2 or MYO15A. Mutation analysis was performed for the known ARNSHL genes present in the homozygous regions to determine the causative mutations. This allowed the identification of a causative mutation in all the 30 families including 9 novel mutations, which were identified in 9 different families (GJB2 (c.598G&gt;A, p.Gly200Arg); MYO15A (c.9948G&gt;A, p.Gln3316Gln; c.3866+1G&gt;A; c.8767C&gt;T, p.Arg2923* and c.8222T&gt;C, p.Phe2741Ser), TMC1 (c.362+18A&gt;G), BSND (c.97G&gt;C, p.Val33Leu), TMPRSS3 (c.726C&gt;G, p.Cys242Trp) and MSRB3 (c.20T&gt;G, p.Leu7Arg)). Furthermore, 12 recurrent mutations were detected in 21 other families. The 21 identified mutations included 10 (48%) missense changes, 4 (19%) nonsense mutations, 3 (14%) intronic mutations, 2 (9%) splice site mutations and 2 (9%) frameshift mutations. GJB2 accounted for 53% of the families, while mutations in MYO15A were the second most frequent (13%) cause of ARNSHL in these 30 families. The identification of novel as well as recurrent mutations in the present study increases the spectrum of mutations in known deafness genes which could lead to the identification of novel founder mutations and population specific mutated deafness genes causative of ARNSHL. These results provide detailed genetic information that has potential diagnostic implication in the establishment of cost-efficient allele-specific analysis of frequently occurring variants in combination with other reported mutations in Pakistani populations. "	"Mutations of TMC1 cause deafness by disrupting mechanoelectrical transduction. Mutations of transmembrane channel-like 1 gene (TMC1) can cause dominant (DFNA36) or recessive (DFNB7/B11) deafness. In this article, we describe the characteristics of DFNA36 and DFNB7/B11 deafness, the features of the Tmc1 mutant mouse strains, and recent advances in our understanding of TMC1 function. Publications related to TMC1, DFNA36, or DFNB7/B11 were identified through PubMed. All affected DFNA36 subjects showed post-lingual, progressive, sensorineural hearing loss (HL), initially affecting high frequencies. In contrast, almost all affected DFNB7/B11 subjects demonstrated congenital or prelingual severe to profound sensorineural HL. The mouse Tmc1 gene also has dominant and recessive mutant alleles that cause HL in mutant strains, including Beethoven, deafness, and Tmc1 knockout mice. These mutant mice have been instrumental for revealing that Tmc1 and its closely related paralog Tmc2 are expressed in cochlear and vestibular hair cells, and are required for hair cell mechanoelectrical transduction (MET). Recent studies suggest that TMC1 and TMC2 may be components of the long-sought hair cell MET channel. TMC1 mutations disrupt hair cell MET."	"Whole exome sequencing identifies new causative mutations in Tunisian families with non-syndromic deafness. Identification of the causative mutations in patients affected by autosomal recessive non syndromic deafness (DFNB forms), is demanding due to genetic heterogeneity. After the exclusion of GJB2 mutations and other mutations previously reported in Tunisian deaf patients, we performed whole exome sequencing in patients affected with severe to profound deafness, from four unrelated consanguineous Tunisian families. Four biallelic non previously reported mutations were identified in three different genes: a nonsense mutation, c.208C&gt;T (p.R70X), in LRTOMT, a missense mutation, c.5417T&gt;C (p.L1806P), in MYO15A and two splice site mutations, c.7395+3G&gt;A, and c.2260+2T&gt;A, in MYO15A and TMC1 respectively. We thereby provide evidence that whole exome sequencing is a powerful, cost-effective screening tool to identify mutations causing recessive deafness in consanguineous families. "	"A novel DFNA36 mutation in TMC1 orthologous to the Beethoven (Bth) mouse associated with autosomal dominant hearing loss in a Chinese family. Mutations in the transmembrane channel-like gene 1 (TMC1) can cause both DFNA36 and DFNB7/11 hearing loss. More than thirty DFNB7/11 mutations have been reported, but only three DFNA36 mutations were reported previously. In this study, we found a large Chinese family with 222 family members showing post-lingual, progressive sensorineural hearing loss which were consistent with DFNA36 hearing loss. Auditory brainstem response (ABR) test of the youngest patient showed a special result with nearly normal threshold but prolonged latency, decreased amplitude, and the abnormal waveform morphology. Exome sequencing of the proband found four candidate variants in known hearing loss genes. Sanger sequencing in all family members found a novel variant c.1253T&gt;A (p.M418K) in TMC1 at DFNA36 that co-segregated with the phenotype. This mutation in TMC1 is orthologous to the mutation found in the hearing loss mouse model named Bth ten years ago. In another 51 Chinese autosomal dominant hearing loss families, we screened the segments containing the dominant mutations of TMC1 and no functional variants were found. TMC1 is expressed in the hair cells in inner ear. Given the already known roles of TMC1 in the mechanotransduction in the cochlea and its expression in inner ear, our results may provide an interesting perspective into its function in inner ear. "	"Deafness gene expression patterns in the mouse cochlea found by microarray analysis. Tonotopy is one of the most fundamental principles of auditory function. While gradients in various morphological and physiological characteristics of the cochlea have been reported, little information is available on gradient patterns of gene expression. In addition, the audiograms in autosomal dominant non syndromic hearing loss can be distinctive, however, the mechanism that accounts for that has not been clarified. We thought that it is possible that tonotopic gradients of gene expression within the cochlea account for the distinct audiograms. We compared expression profiles of genes in the cochlea between the apical, middle, and basal turns of the mouse cochlea by microarray technology and quantitative RT-PCR. Of 24,547 genes, 783 annotated genes expressed more than 2-fold. The most remarkable finding was a gradient of gene expression changes in four genes (Pou4f3, Slc17a8, Tmc1, and Crym) whose mutations cause autosomal dominant deafness. Expression of these genes was greater in the apex than in the base. Interestingly, expression of the Emilin-2 and Tectb genes, which may have crucial roles in the cochlea, was also greater in the apex than in the base. This study provides baseline data of gradient gene expression in the cochlea. Especially for genes whose mutations cause autosomal dominant non syndromic hearing loss (Pou4f3, Slc17a8, Tmc1, and Crym) as well as genes important for cochlear function (Emilin-2 and Tectb), gradual expression changes may help to explain the various pathological conditions."	"TMC function in hair cell transduction. Transmembrane channel-like (TMC) proteins 1 and 2 are necessary for hair cell mechanotransduction but their precise function is controversial. A growing body of evidence supports a direct role for TMC1 and TMC2 as components of the transduction complex. However, a number of important questions remain and alternate hypotheses have been proposed. Here we present an historical overview of the identification and cloning of Tmc genes, a discussion of mutations in TMC1 that cause deafness in mice and humans and a brief review of other members of the Tmc gene superfamily. We also examine expression of Tmc mRNAs and localization of the protein products. The review focuses on potential functions of TMC proteins and the evidence from Beethoven mice that suggests a direct role for TMC1 in hair cell mechanotransduction. Data that support alternate interpretations are also considered. The article concludes with a discussion of outstanding questions and future directions for TMC research. This article is part of a Special Issue entitled &lt;Annual Reviews 2014&gt;. "	"Non-syndromic hearing impairment in India: high allelic heterogeneity among mutations in TMPRSS3, TMC1, USHIC, CDH23 and TMIE. Mutations in the autosomal genes TMPRSS3, TMC1, USHIC, CDH23 and TMIE are known to cause hereditary hearing loss. To study the contribution of these genes to autosomal recessive, non-syndromic hearing loss (ARNSHL) in India, we examined 374 families with the disorder to identify potential mutations. We found four mutations in TMPRSS3, eight in TMC1, ten in USHIC, eight in CDH23 and three in TMIE. Of the 33 potentially pathogenic variants identified in these genes, 23 were new and the remaining have been previously reported. Collectively, mutations in these five genes contribute to about one-tenth of ARNSHL among the families examined. New mutations detected in this study extend the allelic heterogeneity of the genes and provide several additional variants for structure-function correlation studies. These findings have implications for early DNA-based detection of deafness and genetic counseling of affected families in the Indian subcontinent. "	"Comparative inner ear transcriptome analysis between the Rickett's big-footed bats (Myotis ricketti) and the greater short-nosed fruit bats (Cynopterus sphinx). Bats have aroused great interests of researchers for the sake of their advanced echolocation system. However, this highly specialized trait is not characteristic of Old World fruit bats. To comprehensively explore the underlying molecular basis between echolocating and non-echolocating bats, we employed a sequence-based approach to compare the inner ear expression difference between the Rickett's big-footed bat (Myotis ricketti, echolocating bat) and the Greater short-nosed fruit bat (Cynopterus sphinx, non-echolocating bat). De novo sequence assemblies were developed for both species. The results showed that the biological implications of up-regulated genes in M. ricketti were significantly over-represented in biological process categories such as 'cochlea morphogenesis', 'inner ear morphogenesis' and 'sensory perception of sound', which are consistent with the inner ear morphological and physiological differentiation between the two bat species. Moreover, the expression of TMC1 gene confirmed its important function in echolocating bats. Our work presents the first transcriptome comparison between echolocating and non-echolocating bats, and provides information about the genetic basis of their distinct hearing traits."	"Optimization of simultaneous screening of the main mutations involved in non-syndromic deafness using the TaqMan® OpenArray™ Genotyping platform. Hearing loss is the most common sensory deficit in humans, affecting approximately 10% of the global population. In developed countries, one in every 500 individuals suffers from severe to profound bilateral sensorineural hearing loss. For those up to 5 years old, the proportion is higher, at 2.7 in 1000 individuals, and for adolescents the average is 3.5 in 1000. Among the causes of hearing loss, more than 50% are related to genetic factors. To date, nearly 150 loci and 64 genes have been associated with hearing loss. Mutations in the GJB2 gene, which encodes connexin 26, constitute the main genetic cause. So far, more than 300 variations have been described in this gene.As a response to the clinical and genetic heterogeneity of hearing loss and the importance of correct molecular diagnosis of individuals with hereditary hearing loss, this study worked in the optimization for a diagnostic protocol employing a high-throughput genotyping technology. For this work, was used the TaqMan® OpenArray™ Genotyping platform. This is a high performance, high-throughput technology based on real-time PCR, which enables the evaluation of up to 3072 SNPs (Single Nucleotide Polymorphisms), point mutations, small deletions, and insertions, using a single genotyping plate. For the study, were selected the layout allowing to analyze 32 alterations in 96 individuals simultaneously. In the end, the generated results were validated by conventional techniques, as direct sequencing, Multiplex PCR and RFLP-PCR. A total of 376 individuals were analyzed, of which 94 were healthy controls, totaling 4 plates in duplicate. All 31 of the changes analyzed were present in the nuclear genes GJB2, GJB6, CRYL1, TMC1, SLC26A4, miR-96, and OTOF, and in the mitochondrial genes MT-RNR1 and MT-TS1. The reactions were subsequently validated by established techniques (direct sequencing, multiplex PCR, and RFLP-PCR) that had previously been used to perform molecular screening of hearing loss at the Human Genetics Laboratory of the Center for Molecular Biology and Genetic Engineering (CBMEG), at the State University of Campinas (UNICAMP). In total, 11,656 genotyping reactions were performed. Of these, only 351 reactions failed, representing approximately 3.01% of the total. The average accuracy of genotyping using the OpenArray™ plates was 96.99%. The results demonstrated the accuracy, low cost, and good reproducibility of the technique, indicating that the TaqMan® OpenArray™ Genotyping Platform is a useful and reliable tool for application in molecular diagnostic testing of hearing loss."	"Who needs tip links? Backwards transduction by hair cells. NA"	"The role of transmembrane channel-like proteins in the operation of hair cell mechanotransducer channels. Sound stimuli elicit movement of the stereocilia that make up the hair bundle of cochlear hair cells, putting tension on the tip links connecting the stereocilia and thereby opening mechanotransducer (MT) channels. Tmc1 and Tmc2, two members of the transmembrane channel-like family, are necessary for mechanotransduction. To assess their precise role, we recorded MT currents elicited by hair bundle deflections in mice with null mutations of Tmc1, Tmc2, or both. During the first postnatal week, we observed a normal MT current in hair cells lacking Tmc1 or Tmc2; however, in the absence of both isoforms, we recorded a large MT current that was phase-shifted 180°, being evoked by displacements of the hair bundle away from its tallest edge rather than toward it as in wild-type hair cells. The anomalous MT current in hair cells lacking Tmc1 and Tmc2 was blocked by FM1-43, dihydrostreptomycin, and extracellular Ca(2+) at concentrations similar to those that blocked wild type. MT channels in the double knockouts carried Ca(2+) with a lower permeability than wild-type or single mutants. The MT current in double knockouts persisted during exposure to submicromolar Ca(2+), even though this treatment destroyed the tip links. We conclude that the Tmc isoforms do not themselves constitute the MT channel but are essential for targeting and interaction with the tip link. Changes in the MT conductance and Ca(2+) permeability observed in the absence of Tmc1 mutants may stem from loss of interaction with protein partners in the transduction complex. "	"Adaptive evolution of tight junction protein claudin-14 in echolocating whales. Toothed whales and bats have independently evolved specialized ultrasonic hearing for echolocation. Recent findings have suggested that several genes including Prestin, Tmc1, Pjvk and KCNQ4 appear to have undergone molecular adaptations associated with the evolution of this ultrasonic hearing in mammals. Here we studied the hearing gene Cldn14, which encodes the claudin-14 protein and is a member of tight junction proteins that functions in the organ of Corti in the inner ear to maintain a cationic gradient between endolymph and perilymph. Particular mutations in human claudin-14 give rise to non-syndromic deafness, suggesting an essential role in hearing. Our results uncovered two bursts of positive selection, one in the ancestral branch of all toothed whales and a second in the branch leading to the delphinid, phocoenid and ziphiid whales. These two branches are the same as those previously reported to show positive selection in the Prestin gene. Furthermore, as with Prestin, the estimated hearing frequencies of whales significantly correlate with numbers of branch-wise non-synonymous substitutions in Cldn14, but not with synonymous changes. However, in contrast to Prestin, we found no evidence of positive selection in bats. Our findings from Cldn14, and comparisons with Prestin, strongly implicate multiple loci in the acquisition of echolocation in cetaceans, but also highlight possible differences in the evolutionary route to echolocation taken by whales and bats. "	"TMC1 and TMC2 are components of the mechanotransduction channel in hair cells of the mammalian inner ear. Sensory transduction in auditory and vestibular hair cells requires expression of transmembrane channel-like (Tmc) 1 and 2 genes, but the function of these genes is unknown. To investigate the hypothesis that TMC1 and TMC2 proteins are components of the mechanosensitive ion channels that convert mechanical information into electrical signals, we recorded whole-cell and single-channel currents from mouse hair cells that expressed Tmc1, Tmc2, or mutant Tmc1. Cells that expressed Tmc2 had high calcium permeability and large single-channel currents, while cells with mutant Tmc1 had reduced calcium permeability and reduced single-channel currents. Cells that expressed Tmc1 and Tmc2 had a broad range of single-channel currents, suggesting multiple heteromeric assemblies of TMC subunits. The data demonstrate TMC1 and TMC2 are components of hair cell transduction channels and contribute to permeation properties. Gradients in TMC channel composition may also contribute to variation in sensory transduction along the tonotopic axis of the mammalian cochlea."	"Genetic etiology study of the non-syndromic deafness in Chinese Hans by targeted next-generation sequencing. Although over 60 non-syndromic deafness genes have been identified to date, the etiologic contribution of most deafness genes remained elusive. In this study, we addressed this issue by targeted next-generation sequencing of a large cohort of non-syndromic deaf probands. Probands with mutations in commonly screened deafness genes GJB2, SLC26A4 and MT-RNR1 were pre-excluded by Sanger sequencing. The remaining 125 deaf probands proceeded through targeted exon capturing of 79 known deafness genes and Illumina HiSeq2000 sequencing. Bi-allelic mutations in 15 less commonly screened deafness genes were identified in 28 deaf probands, with mutations in MYO15A, GPR98, TMC1, USH2A and PCDH15 being relatively more frequent (≥3 probands each). Dominant mutations in MYO6, TECTA, POU4F3 and COCH were identified in 4 deaf families. A mitochondrial MTTS1 mutation was identified in one maternally inherited deaf family. No pathogenic mutations were identified in three dominant deaf families and two consanguineous families. Mutations in the less commonly screened deafness genes were heterogeneous and contributed to a significant percentage (17.4%) of causes for non-syndromic deafness. Targeted next-generation sequencing provided a comprehensive and efficient diagnosis for known deafness genes. Complementary to linkage analysis or whole-exome sequencing of deaf families, pre-exclusion of known deafness genes by this strategy may facilitate the discovery of novel deafness genes."	"Novel compound heterozygous TMC1 mutations associated with autosomal recessive hearing loss in a Chinese family. Hereditary nonsyndromic hearing loss is highly heterogeneous and most patients with a presumed genetic etiology lack a specific diagnosis. It has been estimated that several hundred genes may be associated with this sensory deficit in humans. Here, we identified compound heterozygous mutations in the TMC1 gene as the cause of recessively inherited sensorineural hearing loss by using whole-exome sequencing in a family with two deaf siblings. Sanger sequencing confirmed that both siblings inherited a missense mutation, c.589G&gt;A p.G197R (maternal allele), and a nonsense mutation, c.1171C&gt;T p.Q391X (paternal allele), in TMC1. We also used DNA from 50 Chinese familial patients with ARNSHL and 208 ethnicity-matched negative samples to perform extended variants analysis. Both variants co-segregated in family 1953, which had the hearing loss phenotype, but were absent in 50 patients and 208 ethnicity-matched controls. Therefore, we concluded that the hearing loss in this family was caused by novel compound heterozygous mutations in TMC1."	"A transversion mutation in non-coding exon 3 of the TMC1 gene in two ethnically related Iranian deaf families from different geographical regions; evidence for founder effect. Transmembrane channel-like 1 (TMC1) gene is a member of the transmembrane channel-like (TMC) gene family that encodes an integral membrane protein of the inner ear. It is suggested that mutation in this gene is one of the main causes of autosomal recessive non-syndromic hearing loss (ARNSHL) in different populations. The aim of this study was to determine the contribution of the TMC1 gene mutations in causing hearing loss in Iran. In total 54 unrelated Iranian families containing 159 affected individuals with ARNSHL detected by audiometric and otologic examinations were analyzed. Haplotype analysis of all members of 45 GJB2- &amp; GJB6-negative families, using four microsatellite markers linked to DFNB7/11 was performed. Co-segregation of hearing loss with all investigated markers for the DFNB7/11 locus was found in one family. DNA sequencing of all coding and non-coding exons and intron boundaries of the TMC1 gene identified c.-258A&gt;C mutation in non-coding exon 3 only in individuals with hearing loss. This mutation has been previously reported in another Iranian family (G9) that share similar ethnicity. This variant was not detected in 300 ethnically matched healthy controls. These results increase the probability that this nucleotide variation may be a pathogenic mutation. This study showed that the ethnicity may be more useful than geographical location to design research strategy for determining which genes should be considered when a heterogeneous disorder is under investigation."	"tmc-1 encodes a sodium-sensitive channel required for salt chemosensation in C. elegans. Transmembrane channel-like (TMC) genes encode a broadly conserved family of multipass integral membrane proteins in animals. Human TMC1 and TMC2 genes are linked to human deafness and required for hair-cell mechanotransduction; however, the molecular functions of these and other TMC proteins have not been determined. Here we show that the Caenorhabditis elegans tmc-1 gene encodes a sodium sensor that functions specifically in salt taste chemosensation. tmc-1 is expressed in the ASH polymodal avoidance neurons, where it is required for salt-evoked neuronal activity and behavioural avoidance of high concentrations of NaCl. However, tmc-1 has no effect on responses to other stimuli sensed by the ASH neurons including high osmolarity and chemical repellents, indicating a specific role in salt sensation. When expressed in mammalian cell culture, C. elegans TMC-1 generates a predominantly cationic conductance activated by high extracellular sodium but not by other cations or uncharged small molecules. Thus, TMC-1 is both necessary for salt sensation in vivo and sufficient to generate a sodium-sensitive channel in vitro, identifying it as a probable ionotropic sensory receptor."	"Developmental changes in the cochlear hair cell mechanotransducer channel and their regulation by transmembrane channel-like proteins. Vibration of the stereociliary bundles activates calcium-permeable mechanotransducer (MT) channels to initiate sound detection in cochlear hair cells. Different regions of the cochlea respond preferentially to different acoustic frequencies, with variation in the unitary conductance of the MT channels contributing to this tonotopic organization. Although the molecular identity of the MT channel remains uncertain, two members of the transmembrane channel-like family, Tmc1 and Tmc2, are crucial to hair cell mechanotransduction. We measured MT channel current amplitude and Ca(2+) permeability along the cochlea's longitudinal (tonotopic) axis during postnatal development of wild-type mice and mice lacking Tmc1 (Tmc1-/-) or Tmc2 (Tmc2-/-). In wild-type mice older than postnatal day (P) 4, MT current amplitude increased ~1.5-fold from cochlear apex to base in outer hair cells (OHCs) but showed little change in inner hair cells (IHCs), a pattern apparent in mutant mice during the first postnatal week. After P7, the OHC MT current in Tmc1-/- (dn) mice declined to zero, consistent with their deafness phenotype. In wild-type mice before P6, the relative Ca(2+) permeability, P(Ca), of the OHC MT channel decreased from cochlear apex to base. This gradient in P(Ca) was not apparent in IHCs and disappeared after P7 in OHCs. In Tmc1-/- mice, P(Ca) in basal OHCs was larger than that in wild-type mice (to equal that of apical OHCs), whereas in Tmc2-/-, P(Ca) in apical and basal OHCs and IHCs was decreased compared with that in wild-type mice. We postulate that differences in Ca(2+) permeability reflect different subunit compositions of the MT channel determined by expression of Tmc1 and Tmc2, with the latter conferring higher P(Ca) in IHCs and immature apical OHCs. Changes in P(Ca) with maturation are consistent with a developmental decrease in abundance of Tmc2 in OHCs but not in IHCs."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"[TMC1 and TMC2: key partners in hearing and vestibular function]. NA"	"[Hereditary deafness in Kirov oblast: estimation of the incidence rate and DNA diagnosis in children]. Genetic analysis of hereditary deafness (HD) has been performed in the city of Kirov and ten rural districts of Kirov oblast (administrative region). The analysis employed the methods used in audiology, medical genetic counseling, and DNA diagnosis. Deafness has been established to be hereditary in 143 children from 100 unrelated families. The incidence rates of isolated and syndromic HDs in the period studied (1995-2001) have been estimated at 1.25 and 0.36 per 1000 newborns, respectively, the total incidence rate of all HD forms being 1.61 per 1000 newborns (1 case per 621 newborns). DNA analysis for the detection of seven frequent mutations in the genes GJB2 (the 35delG, 167delT, 235delC, and M34T mutations), GJB6 (the del(GJB6-D13S1854) and del(GJB6-D13S1830) mutations), and TMC1 (the R34X mutation) has been performed in families with isolated neurosensory deafness. Molecular genetic analysis has detected mutations in 51 children (48.6%); in 54 children (51.4%), no mutations have been found. The following genotypes have been identified in children with HD: 35delG/35delG in 32 probands (30.5%), 35delG/+ in 16 probands (15.2%), 35delG/235delC in 1 proband (0.95%), M34T/+ in 1 proband (0.95%), and M34T/35delG in 1 proband (0.95%). The 167delT mutation has not been found. The frequency of the 35delG mutation in the GJB2 gene has been estimated to be 39.05%. In the group with a family history of HD, mutations have been found in 66.7% of patients; in the group without a family history of HD, in 37.5% of patients. No mutation has been found in the GJB6 or TMC1 gene. Molecular genetic analysis has been performed in a family with clinically diagnosed Treacher Collins-Franceschetti syndrome. Sequencing has been used to find the 748-69C&gt;T polymorphism in intron 6 (in the homozygous state) and the 3635C&gt;G mutation in exon 23 leading to the substitution of glycine for alanine at position 1176 of the amino acid sequence (Ala1176Gly, in the heterozygous state), which have not been described before."	"Autosomal recessive nonsyndromic deafness genes: a review. More than 50 Percent of prelingual hearing loss is genetic in origin, and of these up to 93 Percent are monogenic autosomal recessive traits. Some forms of genetic deafness can be recognized by their associated syndromic features, but in most cases, hearing loss is the only finding and is referred to as nonsyndromic deafness. To date, more than 700 different mutations have been identified in one of 42 genes in individuals with autosomal recessive nonsyndromic hearing loss (ARNSHL). Reported mutations in GJB2, encoding connexin 26, makes this gene the most common cause of hearing loss in many populations. Other relatively common deafness genes include SLC26A4, MYO15A, OTOF, TMC1, CDH23, and TMPRSS3. In this report we summarize genes and mutations reported in families with ARNSHL. Founder effects were demonstrated for some recurrent mutations but the most significant findings are the extreme locus and allelic heterogeneity and different spectrum of genes and mutations in each population."	"Molecular diagnostics for congenital hearing loss including 15 deafness genes using a next generation sequencing platform. Hereditary hearing loss (HL) can originate from mutations in one of many genes involved in the complex process of hearing. Identification of the genetic defects in patients is currently labor intensive and expensive. While screening with Sanger sequencing for GJB2 mutations is common, this is not the case for the other known deafness genes (&gt; 60). Next generation sequencing technology (NGS) has the potential to be much more cost efficient. Published methods mainly use hybridization based target enrichment procedures that are time saving and efficient, but lead to loss in sensitivity. In this study we used a semi-automated PCR amplification and NGS in order to combine high sensitivity, speed and cost efficiency. In this proof of concept study, we screened 15 autosomal recessive deafness genes in 5 patients with congenital genetic deafness. 646 specific primer pairs for all exons and most of the UTR of the 15 selected genes were designed using primerXL. Using patient specific identifiers, all amplicons were pooled and analyzed using the Roche 454 NGS technology. Three of these patients are members of families in which a region of interest has previously been characterized by linkage studies. In these, we were able to identify two new mutations in CDH23 and OTOF. For another patient, the etiology of deafness was unclear, and no causal mutation was found. In a fifth patient, included as a positive control, we could confirm a known mutation in TMC1. We have developed an assay that holds great promise as a tool for screening patients with familial autosomal recessive nonsyndromal hearing loss (ARNSHL). For the first time, an efficient, reliable and cost effective genetic test, based on PCR enrichment, for newborns with undiagnosed deafness is available."	"Identification of three novel hearing loss mouse strains with mutations in the Tmc1 gene. We report the identification of three new mouse models, baringo, nice, and stitch, with recessively inherited sensorineural deafness due to novel mutations in the transmembrane channel-like gene 1 (Tmc1). These strains were generated by N-ethyl-N-nitrosourea mutagenesis. DNA sequence analysis revealed changes in c.545A&gt;G, c.1345T&gt;C, and c.1661G&gt;T, causing p.Y182C, p.Y449H, and p.W554L amino acid substitutions in baringo, nice, and stitch mutants, respectively. The mutations affect amino acid residues that are evolutionarily conserved across species. Similar to the previously reported Beethoven Tmc1 mutant, both p.Y182C and p.W554L are located outside a predicted transmembrane domain, whereas the p.Y449H mutation resides in the predicted transmembrane domain 4. Homozygous stitch-mutant mice have severe hearing loss at the age of 4 weeks and are deaf by the age of 8 weeks, whereas both baringo and nice mutants are profoundly deaf at the age of 4 weeks. None of the strains displays signs of vestibular dysfunction. Scanning electron microscopy revealed degeneration of outer hair cells in the basal region of baringo, nice, and stitch mutants. Immunolocalization studies revealed expression of TMC1 protein in the hair cells, spiral ganglion neurons, supporting cells, and stria ligament in the inner ear. Reduced levels of TMC1 protein were observed in the spiral ligament of mutants when compared with wild-type animals. These three allelic mutants provide valuable models for studying nonsyndromic recessive sensorineural hearing loss (DFNB7/11) in humans."	"The common TMC1 mutation c.100C&gt;T (p.Arg34X) is not a significant cause of deafness in British Asians. TMC1, a second-tier deafness gene below GJB2, is an appreciable cause of recessive nonsyndromic hearing loss (DFNB7/11) in North Africa, the Middle East, and parts of South Asia. Additionally, a single founder mutation, c.100C&gt;T (p.Arg34X), dominates the TMC1 mutation spectrum. We investigated the frequency of TMC1 c.100C&gt;T in a large set of British Asians with hearing loss, collectively a group with high prevalence of genetic deafness and limited routine clinical testing options beyond GJB2, on a candidate basis. An estimate of 0.21% (95% confidence interval, 0.04%-1.18%) was gained, indicating no significant enrichment in our set. Identification of the common non-GJB2 deafness genes and mutations in British Asian communities would require data from autozygosity mapping and/or massively parallel sequencing of gene panels."	"Parallel signatures of sequence evolution among hearing genes in echolocating mammals: an emerging model of genetic convergence. Recent findings of sequence convergence in the Prestin gene among some bats and cetaceans suggest that parallel adaptations for high-frequency hearing have taken place during the evolution of echolocation. To determine if this gene is an exception, or instead similar processes have occurred in other hearing genes, we have examined Tmc1 and Pjvk, both of which are associated with non-syndromic hearing loss in mammals. These genes were amplified and sequenced from a number of mammalian species, including echolocating and non-echolocating bats and whales, and were analysed together with published sequences. Sections of both genes showed phylogenetic signals that conflicted with accepted species relationships, with coding regions uniting laryngeal echolocating bats in a monophyletic clade. Bayesian estimates of posterior probabilities of convergent and divergent substitutions provided more direct evidence of sequence convergence between the two groups of laryngeal echolocating bats as well as between echolocating bats and dolphins. We found strong evidence of positive selection acting on some echolocating bat species and echolocating cetaceans, contrasting with purifying selection on non-echolocating bats. Signatures of sequence convergence and molecular adaptation in two additional hearing genes suggest that the acquisition of high-frequency hearing has involved multiple loci."	"Mechanotransduction in mouse inner ear hair cells requires transmembrane channel-like genes. Inner ear hair cells convert the mechanical stimuli of sound, gravity, and head movement into electrical signals. This mechanotransduction process is initiated by opening of cation channels near the tips of hair cell stereocilia. Since the identity of these ion channels is unknown, and mutations in the gene encoding transmembrane channel-like 1 (TMC1) cause hearing loss without vestibular dysfunction in both mice and humans, we investigated the contribution of Tmc1 and the closely related Tmc2 to mechanotransduction in mice. We found that Tmc1 and Tmc2 were expressed in mouse vestibular and cochlear hair cells and that GFP-tagged TMC proteins localized near stereocilia tips. Tmc2 expression was transient in early postnatal mouse cochlear hair cells but persisted in vestibular hair cells. While mice with a targeted deletion of Tmc1 (Tmc1(Δ) mice) were deaf and those with a deletion of Tmc2 (Tmc2(Δ) mice) were phenotypically normal, Tmc1(Δ)Tmc2(Δ) mice had profound vestibular dysfunction, deafness, and structurally normal hair cells that lacked all mechanotransduction activity. Expression of either exogenous TMC1 or TMC2 rescued mechanotransduction in Tmc1(Δ)Tmc2(Δ) mutant hair cells. Our results indicate that TMC1 and TMC2 are necessary for hair cell mechanotransduction and may be integral components of the mechanotransduction complex. Our data also suggest that persistent TMC2 expression in vestibular hair cells may preserve vestibular function in humans with hearing loss caused by TMC1 mutations."	"Perception of sound and gravity by TMC1 and TMC2. Central to our ability to hear and sense gravity is a cellular process known as mechanotransduction, which is initiated by the opening of mechanosensitive cation channels located near the tips of the stereocilia of auditory and vestibular inner ear hair cells. The molecular identity of the mechanotransduction channels has eluded researchers despite intensive investigations over the years. In this issue of the JCI, Kawashima et al. report their results obtained using mice with targeted deletion of both transmembrane channel-like 1 (Tmc1) and Tmc2. The use of inner ear hair cells isolated from these mice provided a nearly perfect system for testing the mechanotransduction channels without disrupting functions of other accessory proteins needed in the complicated molecular apparatus, and it allowed the authors to show that the proteins encoded by these genes are integral components of the mechanotransduction complex."	"Targeted genomic capture and massively parallel sequencing to identify genes for hereditary hearing loss in Middle Eastern families. Identification of genes responsible for medically important traits is a major challenge in human genetics. Due to the genetic heterogeneity of hearing loss, targeted DNA capture and massively parallel sequencing are ideal tools to address this challenge. Our subjects for genome analysis are Israeli Jewish and Palestinian Arab families with hearing loss that varies in mode of inheritance and severity. A custom 1.46 MB design of cRNA oligonucleotides was constructed containing 246 genes responsible for either human or mouse deafness. Paired-end libraries were prepared from 11 probands and bar-coded multiplexed samples were sequenced to high depth of coverage. Rare single base pair and indel variants were identified by filtering sequence reads against polymorphisms in dbSNP132 and the 1000 Genomes Project. We identified deleterious mutations in CDH23, MYO15A, TECTA, TMC1, and WFS1. Critical mutations of the probands co-segregated with hearing loss. Screening of additional families in a relevant population was performed. TMC1 p.S647P proved to be a founder allele, contributing to 34% of genetic hearing loss in the Moroccan Jewish population. Critical mutations were identified in 6 of the 11 original probands and their families, leading to the identification of causative alleles in 20 additional probands and their families. The integration of genomic analysis into early clinical diagnosis of hearing loss will enable prediction of related phenotypes and enhance rehabilitation. Characterization of the proteins encoded by these genes will enable an understanding of the biological mechanisms involved in hearing loss."	"Isolation of Ty1-copia retrotransposon in myrtle genome and development of S-SAP molecular marker. Long terminal repeat (LTR)-retrotransposons are mobile genetic elements that are ubiquitous in plants and constitute a major portion of their nuclear genomes. LTR- retrotransposons possess unique properties that make them appropriate for investigating relationships between populations, varieties and closely related species. Myrtus communis L. is an evergreen shrub growing spontaneously throughout the Mediterranean area. Accessions show significant variations for agriculturally important traits, so the development of specific molecular markers for conservation and characterization of myrtle germplasm is desirable to conserve biodiversity. In this study, we isolated the first retrotransposon Ty1-copia-like element (Tmc1) in Myrtus communis L. genome and used this as a molecular marker. We successfully employed the S-SAP marker system to specifically characterize four myrtle accessions belonging to different areas in the province of Caserta (Italy). The high level of polymorphism detected in isolated LTRs, make Tmc1 a good molecular marker for this species. Our findings confirm that retrotransposon-based molecular markers are particularly valuable tools for plant molecular characterization studies."	"Lateral superior olive function in congenital deafness. The development of cochlear implants for the treatment of patients with profound hearing loss has advanced considerably in the last few decades, particularly in the field of speech comprehension. However, attempts to provide not only sound decoding but also spatial hearing are limited by our understanding of circuit adaptations in the absence of auditory input. Here we investigate the lateral superior olive (LSO), a nucleus involved in interaural level difference (ILD) processing in the auditory brainstem using a mouse model of congenital deafness (the dn/dn mouse). An electrophysiological investigation of principal neurons of the LSO from the dn/dn mouse reveals a higher than normal proportion of single spiking (SS) neurons, and an increase in the hyperpolarisation-activated I(h) current. However, inhibitory glycinergic input to the LSO appears to develop normally both pre and postsynaptically in dn/dn mice despite the absence of auditory nerve activity. In combination with previous electrophysiological findings from the dn/dn mouse, we also compile a simple Hodgkin and Huxley circuit model in order to investigate possible computational deficits in ILD processing resulting from congenital hearing loss. We find that the predominance of SS neurons in the dn/dn LSO may compensate for upstream modifications and help to maintain a functioning ILD circuit in the dn/dn mouse. This could have clinical repercussions on the development of stimulation paradigms for spatial hearing with cochlear implants."	"Progressive sensorineural hearing loss and normal vestibular function in a Dutch DFNB7/11 family with a novel mutation in TMC1. In a Dutch family with autosomal recessive hearing loss, genome-wide single-nucleotide polymorphism analysis mapped the genetic defect to the DFNB7/11 locus. A novel homozygous A-to-G change in the TMC1 gene was detected near the splice donor site of intron 19 (c.1763+3A→G) segregating with the hearing loss in this family. One of the 6 transmembrane domains and the actual TMC channel domain are predicted to be absent in the mutant protein. The sensorineural hearing impairment in this DFNB7/11 family has a postlingual onset. Audiometric analysis initially showed a steeply downward-sloping threshold configuration. The progressive phenotype in this family resembles the phenotype previously described for families with dominant TMC1 mutations (DFNA36) rather than that of families with recessive TMC1 mutations (DFNB7/11) which invariably cause severe-to-profound prelingual hearing impairment."	"Mutations in TMC1 are a common cause of DFNB7/11 hearing loss in the Iranian population. We investigated the cause of autosomal recessive nonsyndromic hearing loss (ARNSHL) that segregated in 2 consanguineous Iranian families. Otologic and audiometric examinations were performed on affected members of each family. Genome-wide parametric multipoint linkage mapping using a recessive model was performed with Affymetrix 50K GeneChips or short tandem repeat polymorphisms. Direct sequencing was used to confirm the causative mutation in each family. In 2 Iranian families, L-1651 and L-8600606, with ARNSHL that mapped to the DFNB7/11 locus, homozygosity for a reported splice site mutation (c.776+1G&gt;A), and a novel deletion (c.1589_1590delCT; p.S530*) were identified in the TMC1 gene, respectively. Consistent with the previously reported phenotype in DFNB7/11 families, the 2 Iranian families had segregated congenital, profound hearing impairment. However, in family L-1651, one affected family member (IV:3) has milder hearing impairment than expected, suggesting a potential genetic modifier effect. These results indicate that DFNB7/11 is a common form of genetic hearing loss in Iran, because this population is the source of 6 of the 29 TMC1 mutations reported worldwide."	"Screening of 38 genes identifies mutations in 62% of families with nonsyndromic deafness in Turkey. More than 60% of prelingual deafness is genetic in origin, and of these up to 95% are monogenic autosomal recessive traits. Causal mutations have been identified in 1 of 38 different genes in a subset of patients with nonsyndromic autosomal recessive deafness. In this study, we screened 49 unrelated Turkish families with at least three affected children born to consanguineous parents. Probands from all families were negative for mutations in the GJB2 gene, two large deletions in the GJB6 gene, and the 1555A&gt;G substitution in the mitochondrial DNA MTRNR1 gene. Each family was subsequently screened via autozygosity mapping with genomewide single-nucleotide polymorphism arrays. If the phenotype cosegregated with a haplotype flanking one of the 38 genes, mutation analysis of the gene was performed. We identified 22 different autozygous mutations in 11 genes, other than GJB2, in 26 of 49 families, which overall explains deafness in 62% of families. Relative frequencies of genes following GJB2 were MYO15A (9.9%), TMIE (6.6%), TMC1 (6.6%), OTOF (5.0%), CDH23 (3.3%), MYO7A (3.3%), SLC26A4 (1.7%), PCDH15 (1.7%), LRTOMT (1.7%), SERPINB6 (1.7%), and TMPRSS3 (1.7%). Nineteen of 22 mutations are reported for the first time in this study. Unknown rare genes for deafness appear to be present in the remaining 23 families."	"Genetic causes of nonsyndromic hearing loss in Iran in comparison with other populations. Hearing loss (HL) is the most prevalent sensory defect affecting 1 in 500 neonates. Genetic factors are involved in half of the cases. The extreme heterogeneity of HL makes it difficult to analyze and determine the accurate genetic causes of the impairment. Up to now, 10 genes, namely, GJB2, GJB6, SLC26A4, TECTA, PJVK, Col11A2, Myo15A, TMC1, RDX and microRNA (miR-183), have been studied in an Iranian population. The prevalence of HL in Iran was estimated to be 2-3 times higher than that in other parts of the world. Here, the most common bases of congenital nonsyndromic hearing loss (NSHL) are discussed. We reviewed GJB2, GJB6 (large deletion), TECTA, SLC26A4 and PEJVK mutations, and studied their frequencies and distributions in different ethnic groups in 1934, 500, 121, 80 and 34 unrelated families throughout Iran, respectively. GJB2 mutation was the most common factor causing NSHL, with a mean frequency of 18.17% in the Iranian population. The importance of Iran's geographical location in the migration pathway from west to east through the silk route was also highlighted. SLC26A4 and TECTA mutations were the second and third main reasons of HL and accounted for up to 10 and 4% of prelingual HL in Iran, respectively. Mutations in GJB2, SLC26, TECTA and PJVK genes have an important role in HL in Iran and a screening test should be generated for better intervention and diagnosis programs."	"Topology of transmembrane channel-like gene 1 protein. Mutations of transmembrane channel-like gene 1 (TMC1) cause hearing loss in humans and mice. TMC1 is the founding member of a family of genes encoding proteins of unknown function that are predicted to contain multiple transmembrane domains. The goal of our study was to define the topology of mouse TMC1 expressed heterologously in tissue culture cells. TMC1 was retained in the endoplasmic reticulum (ER) membrane of five tissue culture cell lines that we tested. We used anti-TMC1 and anti-HA antibodies to probe the topologic orientation of three native epitopes and seven HA epitope tags along full-length TMC1 after selective or complete permeabilization of transfected cells with digitonin or Triton X-100, respectively. TMC1 was present within the ER as an integral membrane protein containing six transmembrane domains and cytosolic N- and C-termini. There is a large cytoplasmic loop, between the fourth and fifth transmembrane domains, with two highly conserved hydrophobic regions that might associate with or penetrate, but do not span, the plasma membrane. Our study is the first to demonstrate that TMC1 is a transmembrane protein. The topologic organization revealed by this study shares some features with that of the shaker-TRP superfamily of ion channels."	"A novel mutation adjacent to the Bth mouse mutation in the TMC1 gene makes this mouse an excellent model of human deafness at the DFNA36 locus. NA"	"High frequency of the p.R34X mutation in the TMC1 gene associated with nonsyndromic hearing loss is due to founder effects. Founder mutations, particularly 35delG in the GJB2 gene, have to a large extent contributed to the high frequency of autosomal recessive nonsyndromic hearing loss (ARNSHL). Mutations in transmembrane channel-like gene 1 (TMC1) cause ARNSHL. The p.R34X mutation is the most frequent known mutation in the TMC1 gene. To study the origin of this mutation and determine whether it arose in a common ancestor, we analyzed 21 polymorphic markers spanning the TMC1 gene in 11 unrelated individuals from Algeria, Iran, Iraq, Lebanon, Pakistan, Tunisia, and Turkey who carry this mutation. In nine individuals, we observed significant linkage disequilibrium between p.R34X and five polymorphic markers within a 220 kb interval, suggesting that p.R34X arose from a common founder. We estimated the age of this mutation to be between 1075 and 1900 years, perhaps spreading along the third Hadramaout population movements during the seventh century. A second founder effect was observed in Turkish and Lebanese individuals with markers in a 920 kb interval. Screening for the TMC1 p.R34X mutation is indicated in the genetic evaluation of persons with ARNSHL from North African and Southwest Asia."	"Expression of Epstein-Barr nuclear antigen 1 in gastric carcinoma cells is associated with enhanced tumorigenicity and reduced cisplatin sensitivity. Epstein-Barr nuclear antigen 1 (EBNA-1) is consistently expressed in all EBV-associated gastric carcinomas. We explored its biological effects in gastric carcinoma cells by expressing the protein in two Epstein-Barr virus (EBV)-negative gastric carcinoma cell lines (SCM1 and TMC1). EBNA1-expressing SCM1 and TMC1 cells displayed no significant differences in growth rates, respectively, compared to those of vector-transfected SCM1 and TMC1 cells in vitro. However, EBNA1 was able to enhance tumorigenicity, the growth rate and the malignant histopathological grade in a xenograft nude mice test. We also evaluated whether EBNA1 caused EBNA1-expressing cells to have enhanced tumorigenicity in an immunocompetent host. We showed that EBNA1-expressing LL/2 cells (derived from lung carcinoma of a Swiss mouse) had enhanced tumorigenicity and growth ability in the immunocompetent allograft Balb/c mice test. These results support the expression of EBNA1 in EBV-associated gastric carcinoma being able to provide advantages of EBV-mediated cell growth and transformation, and to enhance the malignant potential in vivo. In a clonogenic assay, we showed that EBNA1 could reduce the sensitivity of gastric carcinoma cells (SCM1 cells) harboring wild-type p53 to cisplatin, but this was not found in mutant p53-bearing TMC1 cells. In addition, we demonstrated that EBNA1-expressing SCM1 cells, but not EBNA1-expressing TMC1 cells, were associated with reduced expression levels of p53. These findings are compatible with EBNA1 efficiently competing with p53 for binding to ubiquitin-specific protease 7, which causes p53 to degrade by the ubiquitin/proteasome system. These findings suggest that EBNA1 expression is able to reduce the p53 protein level, resulting in the inhibition of its functional activities. Finally, our results suggest that EBV infection with EBNA1 expression in gastric carcinomas provides advantages for host cell survival, growth ability and transformation potential involving escape from immunosurveillance and a reduction in the sensitivity to DNA damage or other apoptotic stress stimuli mediated by suppression of the wild-type p53 protein level; these are distinct from the pathogenesis of EBV-negative gastric carcinomas."	"Mutations in TMC1 contribute significantly to nonsyndromic autosomal recessive sensorineural hearing loss: a report of five novel mutations. Genome wide homozygosity mapping using Affymetrix 10K arrays revealed the DFNB7/11 locus including the TMC1 gene in 5 of 35 Turkish families with autosomal recessive nonsyndromic severe to profound congenital or prelingual-onset sensorineural hearing loss (SNHL). Additional 51 families were later screened for co-segregation of the locus with the phenotype using microsatellite markers. GJB2 and mtDNA A1555G mutations were negative in probands from each family. Mutation analysis was performed in families showing co-segregation of autosomal recessive SNHL with haplotypes at the DFNB7/11 locus. A total of six different mutations in seven families were identified, including novel missense alterations, p.G444R (c.1330G&gt;A), p.R445C (c.1333C&gt;T), and p.I677T (c.2030T&gt;C), one novel splice site mutation IVS6+2 T&gt;A (c.64+2T&gt;A), and a novel large deletion of approximately 31kb at the 3' region of the gene including exons 19-24, as well as a previously reported nonsense mutation, p.R34X (c.100C&gt;T). All identified mutations co-segregated with autosomal recessive SNHL in all families and were not found in Turkish hearing controls. These results expand the mutation spectrum of TMC1 with five novel mutations and provide data for the significant contribution of TMC1 mutations in hearing loss."	"Amino acid 572 in TMC1: hot spot or critical functional residue for dominant mutations causing hearing impairment. Two different missense mutations, p.D572N and p.D572H, affecting the same nucleotide and codon of the TMC1 gene were earlier reported to cause autosomal dominant hearing impairment at locus DFNA36 in two North American families. No other dominant mutations of human TMC1 have been published. We ascertained a third North American family segregating autosomal dominant nonsyndromic hearing impairment at the DFNA36 locus. We identified the p.D572N mutation of TMC1 co-segregating with hearing loss in our study family. A comparative haplotype analysis of linked single nucleotide polymorphisms and short tandem repeats in the two families segregating p.D572N was not consistent with a founder effect. These findings can be explained in two ways. Either nucleotide 1714 is a hot spot for mutations or, alternatively, missense mutations at this site confer a specific pathogenic gain-of-function or dominant-negative effect."	"Gene symbol: TMC1. Disease: Hearing loss. NA"	"Gene symbol: TMC1. Disease: Deafness. NA"	"Forty-six genes causing nonsyndromic hearing impairment: which ones should be analyzed in DNA diagnostics? Hearing impairment is the most common sensory disorder, present in 1 of every 500 newborns. With 46 genes implicated in nonsyndromic hearing loss, it is also an extremely heterogeneous trait. Here, we categorize for the first time all mutations reported in nonsyndromic deafness genes, both worldwide and more specifically in Caucasians. The most frequent genes implicated in autosomal recessive nonsyndromic hearing loss are GJB2, which is responsible for more than half of cases, followed by SLC26A4, MYO15A, OTOF, CDH23 and TMC1. None of the genes associated with autosomal dominant nonsyndromic hearing loss accounts for a preponderance of cases, although mutations are somewhat more frequently reported in WFS1, KCNQ4, COCH and GJB2. Only a minority of these genes is currently included in genetic diagnostics, the selection criteria typically reflecting: (1) high frequency as a cause of deafness (i.e. GJB2); (2) association with another recognisable feature (i.e. SLC26A4 and enlarged vestibular aqueduct); or (3) a recognisable audioprofile (i.e. WFS1). New and powerful DNA sequencing technologies have been developed over the past few years, but have not yet found their way into DNA diagnostics. Implementing these technologies is likely to happen within the next 5 years, and will cause a breakthrough in terms of power and cost efficiency. It will become possible to analyze most - if not all - deafness genes, as opposed to one or a few genes currently. This ability will greatly improve DNA diagnostics, provide epidemiological data on gene-based mutation frequencies, and reveal novel genotype-phenotype correlations."	"Mutation analysis of TMC1 identifies four new mutations and suggests an additional deafness gene at loci DFNA36 and DFNB7/11. Hearing loss is the most frequent sensorineural disorder affecting 1 in 1000 newborns. In more than half of these babies, the hearing loss is inherited. Hereditary hearing loss is a very heterogeneous trait with about 100 gene localizations and 44 gene identifications for non-syndromic hearing loss. Transmembrane channel-like gene 1 (TMC1) has been identified as the disease-causing gene for autosomal dominant and autosomal recessive non-syndromic hearing loss at the DFNA36 and DFNB7/11 loci, respectively. To date, 2 dominant and 18 recessive TMC1 mutations have been reported as the cause of hearing loss in 34 families. In this report, we describe linkage to DFNA36 and DFNB7/11 in 1 family with dominant and 10 families with recessive non-syndromic sensorineural hearing loss. In addition, mutation analysis of TMC1 was performed in 51 familial Turkish patients with autosomal recessive hearing loss. TMC1 mutations were identified in seven of the families segregating recessive hearing loss. The pathogenic variants we found included two known mutations, c.100C&gt;T and c.1165C&gt;T, and four new mutations, c.2350C&gt;T, c.776+1G&gt;A, c.767delT and c.1166G&gt;A. The absence of TMC1 mutations in the remaining six linked families implies the presence of mutations outside the coding region of this gene or alternatively at least one additional deafness-causing gene in this region. The analysis of copy number variations in TMC1 as well as DNA sequencing of 15 additional candidate genes did not reveal any proven pathogenic changes, leaving both hypotheses open."	"TMC1 but not TMC2 is responsible for autosomal recessive nonsyndromic hearing impairment in Tunisian families. Hereditary nonsyndromic hearing impairment (HI) is extremely heterogeneous. Mutations of the transmembrane channel-like gene 1 (TMC1) have been shown to cause autosomal dominant and recessive forms of nonsyndromic HI linked to the loci DFNA36 and DFNB7/B11, respectively. TMC1 is 1 member of a family of 8 genes encoding transmembrane proteins. In the mouse, MmTmc1 and MmTmc2 are both members of Tmc subfamily A and are highly and almost exclusively expressed in the cochlea. The restricted expression of Tmc2 in the cochlea and its close phylogenetic relationship to Tmc1 makes it a candidate gene for nonsyndromic HI. We analyzed 3 microsatellite markers linked to the TMC1 and TMC2 genes in 85 Tunisian families with autosomal recessive nonsyndromic HI and without mutations in the protein-coding region of the GJB2 gene. Autozygosity by descent analysis of 2 markers bordering the TMC2 gene allowed us to rule out its association with deafness within these families. However, 5 families were found to segregate deafness with 3 different alleles of marker D9S1837, located within the first intron of the TMC1 gene. By DNA sequencing of coding exons of TMC1 in affected individuals, we identified 3 homozygous mutations, c.100C--&gt;T (p.R34X), c.1165C--&gt;T (p.R389X) and the novel mutation c.1764G--&gt;A (p.W588X). We additionally tested 60 unrelated deaf Tunisian individuals for the c.100C--&gt;T mutation. We detected this mutation in a homozygous state in 2 cases. This study confirms that mutations in the TMC1 gene may be a common cause for autosomal recessive nonsyndromic HI."	"Identities, frequencies and origins of TMC1 mutations causing DFNB7/B11 deafness in Pakistan. Non-syndromic deafness is genetically heterogeneous. We previously reported that mutations of transmembrane channel-like gene 1 (TMC1) cause non-syndromic recessive deafness at the DFNB7/B11 locus on chromosome 9q13-q21 in nine Pakistani families. The goal of this study was to define the identities, origins and frequencies of TMC1 mutations in an expanded cohort of 557 large Pakistani families segregating recessive deafness. We screened affected family members for homozygosity at short-tandem repeats flanking known autosomal recessive (DFNB) deafness loci, followed by TMC1 sequence analysis in families segregating deafness linked to DFNB7/B11. We identified 10 new families segregating DFNB7/B11 deafness and TMC1 mutations, including three novel alleles. Overall, 9 different TMC1 mutations account for deafness in 19 (3.4%) of the 557 Pakistani families. A single mutation, p.R34X, causes deafness in 10 (1.8%) of the families. Genotype analysis of p.R34X-linked markers indicates that it arose from a common founder. We also detected p.R34X among normal control samples of African-American and northern European origins, raising the possibility that p.R34X and other mutations of TMC1 are prevalent contributors to the genetic load of deafness across a variety of populations and continents."	"V2AlC, V4AlC3-x (x approximately 0.31), and V12Al3C8: synthesis, crystal growth, structure, and superstructure. Single crystals of V2AlC and the new carbides V4AlC3-x and V12Al3C8 were synthesized from metallic melts. V2AlC was formed with an excess of Al, while V4AlC3-x (x approximately 0.31) and V12Al3C8 require the addition of cobalt to the melt. All compounds were characterized by XRD, EDX, and WDX measurements. Crystal structures were refined on the basis of single-crystal data. The crystal structures can be explained with a building-block system consisting of two types of partial structures. The intermetallic part with a composition VAl is a two-layer cutting of the hexagonal closest packing. The carbide partial structure is a fragment of the binary carbide VC1-x containing one or three layers. V2AlC is a H-phase (211-phase) with space group P63/mmc, Z=2, and lattice parameters of a=2.9107(6) A, and c=13.101(4) A. V4AlC3-x (x approximately 0.31) represents a 413-phase with space group P63/mmc, Z=2, a=2.9302(4) A, and c=22.745(5) A. The C-deficit is limited to the carbon site of the central layer. V12Al3C8 is obtained at lower temperatures. In the superstructure (P63/mcm, Z=2, a=5.0882(7) A, and c=22.983(5) A) the vacancies on the carbon sites are ordered. The ordering is combined to a small shift of the V atoms. This ordered structure can serve as a structure model for the binary carbides TMC1-x as well. V4AlC3-x (x approximately 0.31) and V12Al3C8 are the first examples of the so-called MAX-phases (MX)nMM' (n=1, 2, 3), where a deficit of X and its ordered distribution in a superstructure is proven, (MX1-x)nMM'."	"A novel mutation at the DFNA36 hearing loss locus reveals a critical function and potential genotype-phenotype correlation for amino acid-572 of TMC1. We ascertained a North American Caucasian family (LMG248) segregating autosomal dominant, non-syndromic, post-lingual, progressive sensorineural hearing loss. The hearing loss begins in the second decade of life and initially affects high frequencies. It progresses to profound deafness at all frequencies by the fourth or fifth decade. The phenotype co-segregates with short-tandem repeat markers flanking the TMC1 gene at the DFNA36 locus on chromosome 9q31-q21. The affected individuals carry a novel missense substitution, p.D572H (c.G1714C), of the TMC1 gene. This mutation is at the same nucleotide and amino acid position as the only other reported DFNA36 mutation, p.D572N (c.G1714A). Our observations implicate a critical function for amino acid-572 for wild-type TMC1 function or the pathogenesis of DFNA36 hearing loss. The slower progression of hearing loss associated with p.D572H, in comparison with that caused by p.D572N, may reflect a correlation of DFNA36 phenotype with TMC1 genotype."	"Are gas-phase models of interstellar chemistry tenable? The case of methanol. We consider the case of methanol production in cold dark clouds, also known as quiescent cores, for which recent work shows that a purely gas-phase synthesis is unlikely to produce a sufficient amount to explain the observational fractional abundance of approximately 10(-9). Moreover, recent experiments appear to confirm a previous hypothesis that methanol can be formed on cold grain surfaces by the hydrogenation of CO via successive reactions with hydrogen atoms. In this paper we consider two ways of including the surface formation of methanol into chemical models of cold dark clouds. First, we use a gas-phase model and artificially include the surface formation of methanol in the same manner that the formation of molecular hydrogen is included. Secondly, we utilize a gas-grain code with a new mechanism for desorption following exothermic chemical reactions on grain surfaces. The latter method can reproduce the observed fractional abundance of gas-phase methanol and many other gas-phase species in the well-studied cold dark cloud TMC1-CP but the best fit to the observational data occurs at times significantly later than at ages estimated from gas-phase models."	"Elimination of TMC1 and TMIE as candidates for hereditary non-syndromic deafness in Dalmatian dogs. NA"	"Multiple quantitative trait loci modify cochlear hair cell degeneration in the Beethoven (Tmc1Bth) mouse model of progressive hearing loss DFNA36. Dominant mutations of transmembrane channel-like gene 1 (TMC1) cause progressive sensorineural hearing loss in humans and Beethoven (Tmc1Bth/+) mice. Here we show that Tmc1Bth/+ mice on a C3HeB/FeJ strain background have selective degeneration of inner hair cells while outer hair cells remain structurally and functionally intact. Inner hair cells primarily function as afferent sensory cells, whereas outer hair cells are electromotile amplifiers of auditory stimuli that can be functionally assessed by distortion product otoacoustic emission (DPOAE) analysis. When C3H-Tmc1Bth/Bth is crossed with either C57BL/6J or DBA/2J wild-type mice, F1 hybrid Tmc1Bth/+ progeny have increased hearing loss associated with increased degeneration of outer hair cells and diminution of DPOAE amplitudes but no difference in degeneration of inner hair cells. We mapped at least one quantitative trait locus (QTL), Tmc1m1, for DPOAE amplitude on chromosome 2 in [(C/B)F1xC]N2-Tmc1Bth/+ backcross progeny, and three other QTL on chromosomes 11 (Tmc1m2), 12 (Tmc1m3), and 5 (Tmc1m4) in [(C/D)F1xC]N2-Tmc1Bth/+ progeny. The polygenic basis of outer hair cell degeneration in Beethoven mice provides a model system for the dissection of common, complex hearing loss phenotypes, such as presbycusis, that involve outer hair cell degeneration in humans."	"Tmc1 is necessary for normal functional maturation and survival of inner and outer hair cells in the mouse cochlea. The deafness (dn) and Beethoven (Bth) mutant mice are models for profound congenital deafness (DFNB7/B11) and progressive hearing loss (DFNA36), respectively, caused by recessive and dominant mutations of transmembrane cochlear-expressed gene 1 (TMC1), which encodes a transmembrane protein of unknown function. In the mouse cochlea Tmc1 is expressed in both outer (OHCs) and inner (IHCs) hair cells from early stages of development. Immature hair cells of mutant mice seem normal in appearance and biophysical properties. From around P8 for OHCs and P12 for IHCs, mutants fail to acquire (dn/dn) or show reduced expression (Bth/Bth and, to a lesser extent Bth/+) of the K+ currents which contribute to their normal functional maturation (the BK-type current IK,f in IHCs, and the delayed rectifier IK,n in both cell types). Moreover, the exocytotic machinery in mutant IHCs does not develop normally as judged by the persistence of immature features of the Ca2+ current and exocytosis into adulthood. Mutant mice exhibited progressive hair cell damage and loss. The compound action potential (CAP) thresholds of Bth/+ mice were raised and correlated with the degree of hair cell loss. Homozygous mutants (dn/dn and Bth/Bth) never showed CAP responses, even at ages where many hair cells were still present in the apex of the cochlea, suggesting their hair cells never function normally. We propose that Tmc1 is involved in trafficking of molecules to the plasma membrane or serves as an intracellular regulatory signal for differentiation of immature hair cells into fully functional auditory receptors."	"Four novel TMC1 (DFNB7/DFNB11) mutations in Turkish patients with congenital autosomal recessive nonsyndromic hearing loss. Mutations in the transmembrane channel-like gene 1 (TMC1) cause prelingual autosomal recessive (DFNB7/11) and postlingual progressive autosomal dominant (DFNA36) nonsyndromic hearing loss. To determine the genetic causes of autosomal recessive nonsyndromic hearing loss (ARNSHL) in the northeast and east of Turkey, 65 unrelated families without mutations in the protein coding region of the GJB2 (GJB2-negative) were analyzed. A genomewide scan for homozygosity and linkage analysis in one of these families revealed a 13.2 cM critical region between D9S273 and D9S153 at chromosome 9p13.2-q21.31 with a maximum two-point lod score of 4.00 at theta=0.0 for marker D9S175. TMC1 is in this critical region. Homozygosity screening with intragenic markers for TMC1 in the remaining 64 families suggested involvement of this gene in three additional families. Subsequent sequencing of TMC1 in these four families revealed four novel homozygous mutations, c.776A&gt;G [p.Tyr259Cys], c.821C&gt;T [p.Pro274Leu], c.1334G&gt;A [p.Arg445His], and c.1083_1087delCAGAT [p.Arg362ProfrX6]. Our results indicate that TMC1 mutations account for at least 6% (4/65) of ARNSHL in GJB2-negative Turkish families from the northeast and east of Turkey."	"Novel sequence variants in the TMC1 gene in Pakistani families with autosomal recessive hearing impairment. Though many hearing impairment genes have been identified, only a few of these genes have been screened in population studies. For this study, 168 Pakistani families with autosomal recessive hearing impairment not due to mutations in the GJB2 (Cx26) gene underwent a genome scan. Two-point and multipoint parametric linkage analyses were carried out. Twelve families had two-point or multipoint LOD scores of 1.4 or greater within the transmembrane cochlear expressed gene 1 (TMC1) region and were subjected to further screening with direct DNA sequencing. Five novel putatively functional non-synonymous sequence variants, c.830A&gt;G (p.Y277C), c.1114G&gt;A (p.V372M), c.1334G&gt;A (p.R445H), c.2004T&gt;G (p.S668R), and c.2035G&gt;A (p.E679K), were found to segregate within seven families, but were not observed in 234 Pakistani control chromosomes. The variants c.830A&gt;G (p.Y277C), c.1114G&gt;A (p.V372M), and c.1334G&gt;A (p.R445H) occurred at highly conserved regions and were predicted to lie within hydrophobic transmembrane domains, while non-synonymous variants c.2004T&gt;G (p.S668R) and c.2035G&gt;A (p.E679K) occurred in extracellular regions that were not highly conserved. There is evidence that the c.2004T&gt;G (p.S668R) variant may have occurred at a phosphorylation site. One family has the known splice site mutation c.536 -8T&gt;A. The prevalence of non-syndromic hearing impairment due to TMC1 in this Pakistani population is 4.4% (95%CI: 1.9, 8.6%). The TMC1 protein might have an important function in K(+) channels of inner hair cells, which would be consistent with the hypothetical structure of protein domains in which sequence variants were identified."	"A chymotrypsin-like proteinase from the midgut of Tenebrio molitor larvae. A chymotrypsin-like proteinase was isolated from the posterior midgut of larvae of the yellow mealworm, Tenebrio molitor, by ion-exchange and gel filtration chromatography. The enzyme, TmC1, was purified to homogeneity as determined by SDS-PAGE and postelectrophoretic activity detection. TmC1 had a molecular mass of 23.0 kDa, pI of 8.4, a pH optimum of 9.5, and the optimal temperature for activity was 51 degrees C. The proteinase displayed high stability at temperatures below 43 degrees C and in the pH range 6.5-11.2, which is inclusive of the pH of the posterior and middle midgut. The enzyme hydrolyzed long chymotrypsin peptide substrates SucAAPFpNA, SucAAPLpNA and GlpAALpNA and did not hydrolyze short chymotrypsin substrates. Kinetic parameters of the enzymatic reaction demonstrated that the best substrate was SucAAPFpNA, with k(cat app) 36.5 s(-1) and K(m) 1.59 mM. However, the enzyme had a lower K(m) for SucAAPLpNA, 0.5 mM. Phenylmethylsulfonyl fluoride (PMSF) was an effective inhibitor of TmC1, and the proteinase was not inhibited by either tosyl-l-phenylalanine chloromethyl ketone (TPCK) or N(alpha)-tosyl-l-lysine chloromethyl ketone (TLCK). However, the activity of TmC1 was reduced with sulfhydryl reagents. Several plant and insect proteinaceous proteinase inhibitors were active against the purified enzyme, the most effective being Kunitz soybean trypsin inhibitor (STI). The N-terminal sequence of the enzyme was IISGSAASKGQFPWQ, which was up to 67% similar to other insect chymotrypsin-like proteinases and 47% similar to mammalian chymotrypsin A. The amino acid composition of TmC1 differed significantly from previously isolated T. molitor enzymes."	"Identification of chicken transmembrane channel-like (TMC) genes: expression analysis in the cochlea. Mutations of the human gene encoding transmembrane channel-like protein (TMC)1 cause dominant and recessive nonsyndromic hearing disorders, suggesting that this protein plays an important role in the inner ear. In this study, we cloned chicken Tmc2 (GgTmc2) from a cochlear cDNA library and we annotated four additional TMC family members: GgTmc1, GgTmc3, GgTmc6, and GgTmc7. All chicken TMCs possess the defining TMC signature motif and display high conservation of their genomic structure when compared with other vertebrate TMC genes. GgTmc1 is localized on the chicken sex chromosome Z at a locus that displays conserved synteny with the loci of mammalian orthologues residing on autosomes. In contrast, the locus of GgTmc2 does not exhibit conserved synteny with its mammalian orthologues. Because murine TMC1 and TMC2 are restrictively expressed in cochlear hair cells, we determined the expression of the chicken orthologues in the basilar papilla, the avian equivalent of the organ of Corti. While GgTmc2 was present throughout the basilar papilla and in other tissues, GgTmc1 transcript was detected specifically in the basal portion of the basilar papilla and was not detectable in any other tissue or organ studied. GgTmc3 and GgTmc6 were detectable in all organs analyzed. Antibody labeling revealed that GgTmc2 is predominantly associated with the lateral membranes of hair and supporting cells. The expression of GgTmc2 by both cell types was further confirmed by RT-PCR using isolated cells. This expression and subcellular localization of GgTmc2 is in agreement with the proposed potential role of this novel class of transmembrane proteins in ion transport."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Novel TMC1 structural and splice variants associated with congenital nonsyndromic deafness in a Sudanese pedigree. Mutations of the transmembrane channel-like gene 1 (TMC1) have been shown to cause autosomal dominant and recessive forms of congenital nonsyndromic deafness linked to the loci DFNA36 and DFNB7/B11, respectively. In a Sudanese pedigree affected by an apparently recessive form of nonsyndromic deafness, we performed a linkage analysis using markers covering the deafness loci DFNB1 - DFNB30. A two-point LOD score of 3.08 was obtained at marker position D9S1876, located within the first intron of the TMC1 gene at DFNB7/B11. By DNA sequencing of TMC1 exons 3-22, we identified the structural variant c.1165C&gt;T in exon 13, leading to the stop codon p.Arg389X, and the splice-site variant c.19+5G&gt;A, independently segregating with the deafness phenotype. The c.1165C&gt;T [p.Arg389X] mutation was also observed in four out of 243 unrelated deaf Sudanese individuals, but none of the mutations was found among 292 normal hearing controls. The finding of TMC1 mutations contributing to deafness in Sudan confirms and extends previous reports on the role of TMC1 in recessive nonsyndromic deafness and shows that deafness-causing TMC1 mutations may occur in various ethnic groups."	"Early onset and rapid progression of dominant nonsyndromic DFNA36 hearing loss. To characterize the auditory and vestibular phenotype of autosomal dominant nonsyndromic DFNA36 hearing loss. Clinical evaluation of individuals with DFNA36 hearing loss linked to the D572N mutation of transmembrane channel-like gene 1 (TMC1). Medical history interviews, physical examinations, and pure-tone air conduction audiometry were performed in the field. Audiology and radiology reports were available and retrospectively reviewed for a subset of subjects. Primary, secondary, and tertiary referral centers (retrospectively reviewed studies); subjects' homes (prospective clinical evaluations). Thirteen affected members of a North American Caucasian family segregating DFNA36 hearing loss. Pure-tone audiometric thresholds and their rates of progression. Subjects had bilateral, symmetric, sensorineural hearing loss with a postlingual onset in the first decade of life. High frequencies were initially affected, followed by rapid progression (5.9 dB/yr for the 0.5/1/2/4-kHz pure-tone average) to profound deafness across all frequencies by the second decade of life. Two individuals had excellent auditory-verbal communication after rehabilitation with cochlear implants placed over two decades after total deafening. DFNA36 has one of the earliest onsets and most rapid rates of progression among the autosomal dominant non-syndromic hearing loss phenotypes. These distinctive features should facilitate its clinical detection and the development of clinical-molecular genetic diagnostic algorithms for dominant nonsyndromic hearing loss."	"Mouse tales from Kresge: the deafness mouse. Mouse models for human deafness have not only proven instrumental in the identification of genes for hereditary hearing loss, but are excellent model systems in which to examine gene function as well as the resulting pathophysiology. One mouse model for human nonsyndromic deafness is the deafness (dn) mouse, a spontaneous mutation in the curly-tail (ct) stock. The dn gene is on mouse Chromosome 19 and it was recently shown to be a novel gene called Tmc1. A mutation in Tmc1 is also found in Beethoven (Bth), which is another deaf mouse mutant. In humans, one autosomal dominant form of nonsyndromic hearing loss (DFNA36) and two autosomal recessive forms (DFNB7 and DFNB11) are associated with mutations in TMC1, the human homologue of Tmc1. The transmembrane protein encoded by this gene is required for normal cochlear hair cell function and the mouse models will facilitate the elucidation of the molecular pathway that is disrupted when mutations are present."	"Characterization of the transmembrane channel-like (TMC) gene family: functional clues from hearing loss and epidermodysplasia verruciformis. Mutations of TMC1 cause deafness in humans and mice. TMC1 and a related gene, TMC2, are the founding members of a novel gene family. Here we describe six additional TMC paralogs (TMC3 to TMC8) in humans and mice, as well as homologs in other species. cDNAs spanning the full length of the predicted open reading frames of the mammalian genes were cloned and sequenced. All are strongly predicted to encode proteins with 6 to 10 transmembrane domains and a novel conserved 120-amino-acid sequence that we termed the TMC domain. TMC1, TMC2, and TMC3 comprise a distinct subfamily expressed at low levels, whereas TMC4 to TMC8 are expressed at higher levels in multiple tissues. TMC6 and TMC8 are identical to the EVER1 and EVER2 genes implicated in epidermodysplasia verruciformis, a recessive disorder comprising susceptibility to cutaneous human papilloma virus infections and associated nonmelanoma skin cancers, providing additional genetic and tissue systems in which to study the TMC gene family."	"TMC and EVER genes belong to a larger novel family, the TMC gene family encoding transmembrane proteins. Mutations in the transmembrane cochlear expressed gene 1 (TMC1) cause deafness in human and mouse. Mutations in two homologous genes, EVER1 and EVER2 increase the susceptibility to infection with certain human papillomaviruses resulting in high risk of skin carcinoma. Here we report that TMC1, EVER1 and EVER2 (now TMC6 and TMC8) belong to a larger novel gene family, which is named TMC for trans membrane channel-like gene family. Using a combination of iterative database searches and reverse transcriptase-polymerase chain reaction (RT-PCR) experiments we assembled contigs for cDNA encoding human, murine, puffer fish, and invertebrate TMC proteins. TMC proteins of individual species can be grouped into three subfamilies A, B, and C. Vertebrates have eight TMC genes. The majority of murine TMC transcripts are expressed in most organs; some transcripts, however, in particular the three subfamily A members are rare and more restrictively expressed. The eight vertebrate TMC genes are evolutionary conserved and encode proteins that form three subfamilies. Invertebrate TMC proteins can also be categorized into these three subfamilies. All TMC genes encode transmembrane proteins with intracellular amino- and carboxyl-termini and at least eight membrane-spanning domains. We speculate that the TMC proteins constitute a novel group of ion channels, transporters, or modifiers of such."	"Non-syndromic autosomal-dominant deafness. Non-syndromic deafness is a paradigm of genetic heterogeneity. More than 70 loci have been mapped, and 25 of the nuclear genes responsible for non-syndromic deafness have been identified. Autosomal-dominant genes are responsible for about 20% of the cases of hereditary non-syndromic deafness, with 16 different genes identified to date. In the present article we review these 16 genes, their function and their contribution to deafness in different populations. The complexity is underlined by the fact that several of the genes are involved in both dominant and recessive non-syndromic deafness or in both non-syndromic and syndromic deafness. Mutations in eight of the genes have so far been detected in only single dominant deafness families, and their contribution to deafness on a population base might therefore be limited, or is currently unknown. Identification of all genes involved in hereditary hearing loss will help in the understanding of the basic mechanisms underlying normal hearing, will facilitate early diagnosis and intervention and might offer opportunities for rational therapy."	"Beethoven, a mouse model for dominant, progressive hearing loss DFNA36. Despite recent progress in identifying genes underlying deafness, there are still relatively few mouse models of specific forms of human deafness. Here we describe the phenotype of the Beethoven (Bth) mouse mutant and a missense mutation in Tmc1 (transmembrane cochlear-expressed gene 1). Progressive hearing loss (DFNA36) and profound congenital deafness (DFNB7/B11) are caused by dominant and recessive mutations of the human ortholog, TMC1 (ref. 1), for which Bth and deafness (dn) are mouse models, respectively."	"Dominant and recessive deafness caused by mutations of a novel gene, TMC1, required for cochlear hair-cell function. Positional cloning of hereditary deafness genes is a direct approach to identify molecules and mechanisms underlying auditory function. Here we report a locus for dominant deafness, DFNA36, which maps to human chromosome 9q13-21 in a region overlapping the DFNB7/B11 locus for recessive deafness. We identified eight mutations in a new gene, transmembrane cochlear-expressed gene 1 (TMC1), in a DFNA36 family and eleven DFNB7/B11 families. We detected a 1.6-kb genomic deletion encompassing exon 14 of Tmc1 in the recessive deafness (dn) mouse mutant, which lacks auditory responses and has hair-cell degeneration. TMC1 and TMC2 on chromosome 20p13 are members of a gene family predicted to encode transmembrane proteins. Tmc1 mRNA is expressed in hair cells of the postnatal mouse cochlea and vestibular end organs and is required for normal function of cochlear hair cells."	"Epstein-Barr virus LMP1 modulates the malignant potential of gastric carcinoma cells involving apoptosis. About 10% of gastric carcinomas including lymphoepithelioma-like carcinoma and adenocarcinoma are associated with Epstein-Barr virus (EBV) infection. In EBV-associated gastric carcinomas, the tumor cells express Epstein-Barr nuclear antigen 1 (EBNA-1) but not EBNA-2, -3A, -3B, or -3C, leader protein, or latent membrane proteins (LMPs) because of gene methylation. Only a few exceptional cases have LMP1 expression in tumor cells as demonstrated by immunohistochemical studies. To elucidate the biological effects of LMP1 and the significance of its restricted expression in EBV-associated gastric carcinomas, the LMP1 gene was transferred into EBV-negative gastric carcinoma cell lines (SCM1 and TMC1) and into EBV-negative nasopharyngeal carcinoma (NPC) cells (HONE-1) as a control. The biological effects of LMP1 in gastric carcinoma cells were monitored in vitro and in vivo. These results showed that the consequence of LMP1 expression is a growth enhancement in NPC cells, but it is a growth suppression in gastric carcinoma cells. The LMP1-expressing gastric carcinoma cells had a reduced growth rate, colony-forming efficiency, mean colony size, and tumorigenicity and a lower malignant cytological grade. The reduced growth rate, colony-forming efficiency, and mean colony size were partially reversible in vitro with treatment with LMP1 antisense oligonucleotide. In addition, enhanced apoptosis was found in the LMP1-expressing gastric carcinoma cells. This suggests that LMP1 may negatively modulate the malignant potential of gastric carcinoma cells via an enhancement of apoptosis. We concluded that the restriction of LMP1 expression in EBV-associated gastric carcinomas may lead to a growth advantage for tumor cells by avoiding LMP1 apoptotic effects and immunologically mediated elimination."	"A mutation in the cAMP signaling pathway affects sexual development of Dictyostelium discoideum. Amoebae of cellular slime molds have two developmental modes, asexual fruiting body formation and sexual macrocyst formation. How developmental choice is made is an interesting subject of wide importance. Light exposure and dry conditions are favorable for asexual development, while conditions of darkness and high humidity are so for sexual development. In Dictyostelium discoideum, the latter conditions enhance zygote formation, which determines the fate of surrounding cells for sexual development. Here, a mutant (TMC1) defective in the post-fusion aggregation of cells during sexual development is described. This mutant is also aggregationless in asexual development, and the level of cyclic adenosine monophosphate (cAMP) receptor is reduced. Correspondingly, a series of existing mutants with defects in cAMP signaling pathways showed the same sexual phenotype as TMC1. These results suggest that molecular mechanisms of development are shared by the two alternative developmental modes."	"Methanol in dark clouds. We report observations, for the first time, of the 2(0) - 1(0)A+ and E, 2(-1) - 1(-1) E, and 1(0) - 0(0)A+ lines of methanol (CH3OH) in three dark cold clouds, TMC1, L134N, and B335. The CH3OH emission is extended in these clouds and shows a complex velocity structure. Clear indications of non LTE excitation are observed in TMC 1. Estimated column densities are a few 10(13) cm-2. Although less abundant than formaldehyde (H2CO), methanol is almost an order of magnitude more abundant than acetaldehyde (CH3CHO), in these clouds. Dimethyl ether was searched for in L134N, to an upper limit of 4 10(12) cm-2 (3 sigma). Implications for dark cloud excitation and chemistry are discussed. A new, more accurate, rest frequency 96741.39(0.01) MHz is determined for the 2(0) - 1(0) A+ E line of methanol."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CABP2"	"nonsyndromic genetic deafness"	"A Novel Pathogenic Variant in the CABP2 Gene Causes Severe Nonsyndromic Hearing Loss in a Consanguineous Iranian Family. Hereditary hearing loss (HL) can originate from mutations in one of many genes involved in the complex process of hearing. CABP2 mutations have been reported to cause moderate HL. Here, we report the whole exome sequencing (WES) of a proband presenting with prelingual, severe HL in an Iranian family. A comprehensive family history was obtained, and clinical evaluations and pedigree analysis were performed in the family with 2 affected members. After excluding mutations in the GJB2 gene and 7 other most common autosomal recessive nonsyndromic HL (ARNSHL) genes via Sanger sequencing and genetic linkage analysis in the family, WES was utilized to find the possible etiology of the disease. WES results showed a novel rare variant (c.311G&gt;A) in the CABP2gene.This missense variant in the exon 4 of the CABP2gene meets the criteria of being pathogenic according to the American College of Medical Genetics and Genomics (ACMG) interpretation guidelines. Up to now, 3 mutations have been reported for the CABP2gene to cause moderate ARNSHL in different populations. Our results show that CABP2variantsalso cause severe ARNSHL, adding CABP2to the growing list of genes that exhibit phenotypic heterogeneity. Expanding our understanding of the mutational spectrum of HL genes is an important step in providing the correct clinical molecular interpretation and diagnosis for patients."	"Epigenome-wide skeletal muscle DNA methylation profiles at the background of distinct metabolic types and ryanodine receptor variation in pigs. Epigenetic variation may result from selection for complex traits related to metabolic processes or appear in the course of adaptation to mediate responses to exogenous stressors. Moreover epigenetic marks, in particular the DNA methylation state, of specific loci are driven by genetic variation. In this sense, polymorphism with major gene effects on metabolic and cell signaling processes, like the variation of the ryanodine receptors in skeletal muscle, may affect DNA methylation. DNA-Methylation profiles were generated applying Reduced Representation Bisulfite Sequencing (RRBS) on 17 Musculus longissimus dorsi samples. We examined DNA methylation in skeletal muscle of pig breeds differing in metabolic type, Duroc and Pietrain. We also included F2 crosses of these breeds to get a first clue to DNA methylation sites that may contribute to breed differences. Moreover, we compared DNA methylation in muscle tissue of Pietrain pigs differing in genotypes at the gene encoding the Ca2+ release channel (RYR1) that largely affects muscle physiology. More than 2000 differently methylated sites were found between breeds including changes in methylation profiles of METRNL, IDH3B, COMMD6, and SLC22A18, genes involved in lipid metabolism. Depending on RYR1 genotype there were 1060 differently methylated sites including some functionally related genes, such as CABP2 and EHD, which play a role in buffering free cytosolic Ca<sup>2+</sup> or interact with the Na<sup>+</sup>/Ca<sup>2+</sup> exchanger. The change in the level of methylation between the breeds is probably the result of the long-term selection process for quantitative traits involving an infinite number of genes, or it may be the result of a major gene mutation that plays an important role in muscle metabolism and triggers extensive compensatory processes."	"Molecular parallelism in fast-twitch muscle proteins in echolocating mammals. Detecting associations between genomic changes and phenotypic differences is fundamental to understanding how phenotypes evolved. By systematically screening for parallel amino acid substitutions, we detected known as well as novel cases (Strc, Tecta, and Cabp2) of parallelism between echolocating bats and toothed whales in proteins that could contribute to high-frequency hearing adaptations. Our screen also showed that echolocating mammals exhibit an unusually high number of parallel substitutions in fast-twitch muscle fiber proteins. Both echolocating bats and toothed whales produce an extremely rapid call rate when homing in on their prey, which was shown in bats to be powered by specialized superfast muscles. We show that these genes with parallel substitutions (Casq1, Atp2a1, Myh2, and Myl1) are expressed in the superfast sound-producing muscle of bats. Furthermore, we found that the calcium storage protein calsequestrin 1 of the little brown bat and the bottlenose dolphin functionally converged in its ability to form calcium-sequestering polymers at lower calcium concentrations, which may contribute to rapid calcium transients required for superfast muscle physiology. The proteins that our genomic screen detected could be involved in the convergent evolution of vocalization in echolocating mammals by potentially contributing to both rapid Ca<sup>2+</sup> transients and increased shortening velocities in superfast muscles."	"Functions of CaBP1 and CaBP2 in the peripheral auditory system. CaBPs are a family of Ca<sup>2+</sup> binding proteins related to calmodulin. Two CaBP family members, CaBP1 and CaBP2, are highly expressed in the cochlea. Here, we investigated the significance of CaBP1 and CaBP2 for hearing in mice lacking expression of these proteins (CaBP1 KO and CaBP2 KO) using auditory brain responses (ABRs) and distortion product otoacoustic emissions (DPOAEs). In CaBP1 KO mice, ABR wave I was larger in amplitude, and shorter in latency and faster in decay, suggestive of enhanced synchrony of auditory nerve fibers. This interpretation was supported by the greater excitability of CaBP1 KO than WT neurons in whole-cell patch clamp recordings of spiral ganglion neurons in culture, and normal presynaptic function of CaBP1 KO IHCs. DPOAEs and ABR thresholds were normal in 4-week old CaBP1 KO mice, but elevated ABR thresholds became evident at 32 kHz at 9 weeks, and at 8 and 16 kHz by 6 months of age. In contrast, CaBP2 KO mice exhibited significant ABR threshold elevations at 4 weeks of age that became more severe in the mid-frequency range by 9 weeks. Though normal at 4 weeks, DPOAEs in CaBP2 KO mice were significantly reduced in the mid-frequency range by 9 weeks. Our results reveal requirements for CaBP1 and CaBP2 in the peripheral auditory system and highlight the diverse modes by which CaBPs influence sensory processing."	"Ca<sup>2+</sup>-binding protein 2 inhibits Ca<sup>2+</sup>-channel inactivation in mouse inner hair cells. Ca<sup>2+</sup>-binding protein 2 (CaBP2) inhibits the inactivation of heterologously expressed voltage-gated Ca<sup>2+</sup> channels of type 1.3 (CaV1.3) and is defective in human autosomal-recessive deafness 93 (DFNB93). Here, we report a newly identified mutation in CABP2 that causes a moderate hearing impairment likely via nonsense-mediated decay of CABP2-mRNA. To study the mechanism of hearing impairment resulting from CABP2 loss of function, we disrupted Cabp2 in mice (Cabp2<sup> LacZ/LacZ </sup> ). CaBP2 was expressed by cochlear hair cells, preferentially in inner hair cells (IHCs), and was lacking from the postsynaptic spiral ganglion neurons (SGNs). Cabp2<sup> LacZ/LacZ </sup> mice displayed intact cochlear amplification but impaired auditory brainstem responses. Patch-clamp recordings from Cabp2<sup> LacZ/LacZ </sup> IHCs revealed enhanced Ca<sup>2+</sup>-channel inactivation. The voltage dependence of activation and the number of Ca<sup>2+</sup> channels appeared normal in Cabp2<sup> LacZ/LacZ </sup> mice, as were ribbon synapse counts. Recordings from single SGNs showed reduced spontaneous and sound-evoked firing rates. We propose that CaBP2 inhibits CaV1.3 Ca<sup>2+</sup>-channel inactivation, and thus sustains the availability of CaV1.3 Ca<sup>2+</sup> channels for synaptic sound encoding. Therefore, we conclude that human deafness DFNB93 is an auditory synaptopathy."	"Lack of CaBP1/Caldendrin or CaBP2 Leads to Altered Ganglion Cell Responses. Calcium-binding proteins (CaBPs) form a subfamily of calmodulin-like proteins that were cloned from the retina. CaBP4 and CaBP5 have been shown to be important for normal visual function. Although CaBP1/caldendrin and CaBP2 have been shown to modulate various targets in vitro, it is not known whether they contribute to the transmission of light responses through the retina. Therefore, we generated mice that lack CaBP2 or CaBP1/caldendrin (Cabp2<sup>-/-</sup> and Cabp1<sup>-/-</sup> ) to test whether these CaBPs are essential for normal retinal function. By immunohistochemistry, the overall morphology of Cabp1<sup>-/-</sup> and Cabp2<sup>-/-</sup> retinas and the number of synaptic ribbons appear normal; transmission electron microscopy shows normal tethered ribbon synapses and synaptic vesicles as in wild-type retinas. However, whole-cell patch clamp recordings showed that light responses of retinal ganglion cells of Cabp2<sup>-/-</sup> and Cabp1<sup>-/-</sup> mice differ in amplitude and kinetics from those of wild-type mice. We conclude that CaBP1/caldendrin and CaBP2 are not required for normal gross retinal and synapse morphology but are necessary for the proper transmission of light responses through the retina; like other CaBPs, CaBP1/caldendrin and CaBP2 likely act by modulating presynaptic Ca<sup>2+</sup>-dependent signaling mechanisms."	"Mutations in eight small DFNB genes are not a frequent cause of non-syndromic hereditary hearing loss in Czech patients. To evaluate the contribution of eight small NSHL-AR (non-syndromic deafness, autosomal recessive) genes to hereditary hearing loss in Czech patients. Unrelated Czech patients, adults and children, diagnosed with pre-lingual hereditary hearing loss with at least one similarly affected deaf sibling and with previously excluded mutations in the GJB2 gene were investigated by Sanger sequencing of the selected eight small NSHL-AR associated genes (CABP2 - 51 patients, CIB2 - 45 patients, PJVK/DFNB59 - 53 patients, GJB3 - 46 patients, ILDR1 - 48 patients, LHFPL5 - 66 patients, LRTOMT - 60 patients, TMIE - 64 patients). Mutations were detected in the LHFPL5 (DFNB67) gene. The patient is heterozygote for two already described pathogenic variants (p.Tyr127Cys, p.Thr165Met). In five samples, five rare heterozygous variants (two novel) predicted as pathogenic were detected in genes CABP2, ILDR1, LHFPL5 and LRTOMT. Mutations in eight small NSHL-AR genes are not a frequent cause of hereditary hearing loss in the Czech Republic. This diagnostic approach permitted the clarification of HL in only one patient - two heterozygous mutations were detected in LHFPL5 gene for the first time in Central Europe. As the use of panel base MPS certainly improves the diagnostic yield, future studies should rather profit from that diagnostic strategy."	"Expression and Localization of CaBP Ca2+ Binding Proteins in the Mouse Cochlea. CaBPs are a family of EF-hand Ca2+ binding proteins that are structurally similar to calmodulin. CaBPs can interact with, and yet differentially modulate, effectors that are regulated by calmodulin, such as Cav1 voltage-gated Ca2+ channels. Immunolabeling studies suggest that multiple CaBP family members (CaBP1, 2, 4, and 5) are expressed in the cochlea. To gain insights into the respective auditory functions of these CaBPs, we characterized the expression and cellular localization of CaBPs in the mouse cochlea. By quantitative reverse transcription PCR, we show that CaBP1 and CaBP2 are the major CaBPs expressed in mouse cochlea both before and after hearing onset. Of the three alternatively spliced variants of CaBP1 (caldendrin, CaBP1-L, and CaBP1-S) and CaBP2 (CaBP2-alt, CaBP2-L, CaBP2-S), caldendrin and CaBP2-alt are the most abundant. By in situ hybridization, probes recognizing caldendrin strongly label the spiral ganglion, while probes designed to recognize all three isoforms of CaBP1 weakly label both the inner and outer hair cells as well as the spiral ganglion. Within the spiral ganglion, caldendrin/CaBP1 labeling is associated with cells resembling satellite glial cells. CaBP2-alt is strongly expressed in inner hair cells both before and after hearing onset. Probes designed to recognize all three variants of CaBP2 strongly label inner hair cells before hearing onset and outer hair cells after the onset of hearing. Thus, CaBP1 and CaBP2 may have overlapping roles in regulating Ca2+ signaling in the hair cells, and CaBP1 may have an additional function in the spiral ganglion. Our findings provide a framework for understanding the role of CaBP family members in the auditory periphery. "	"A mutation in CABP2, expressed in cochlear hair cells, causes autosomal-recessive hearing impairment. CaBPs are a family of Ca(2+)-binding proteins related to calmodulin and are localized in the brain and sensory organs, including the retina and cochlea. Although their physiological roles are not yet fully elucidated, CaBPs modulate Ca(2+) signaling through effectors such as voltage-gated Ca(v) Ca(2+) channels. In this study, we identified a splice-site mutation (c.637+1G&gt;T) in Ca(2+)-binding protein 2 (CABP2) in three consanguineous Iranian families affected by moderate-to-severe hearing loss. This mutation, most likely a founder mutation, probably leads to skipping of exon 6 and premature truncation of the protein (p.Phe164Serfs(∗)4). Compared with wild-type CaBP2, the truncated CaBP2 showed altered Ca(2+) binding in isothermal titration calorimetry and less potent regulation of Ca(v)1.3 Ca(2+) channels. We show that genetic defects in CABP2 cause moderate-to-severe sensorineural hearing impairment. The mutation might cause a hypofunctional CaBP2 defective in Ca(2+) sensing and effector regulation in the inner ear."	"Trimethylation of histone H3K4 is associated with the induction of fructose-inducible genes in rat jejunum. We previously reported that fructose force-feeding rapidly induces jejunal Slc2a5 gene expression in rats. In this study, we conducted microarray analyses using total RNA to identify genes upregulated in rat jejunum by fructose force-feeding. Rats were force-fed fructose, glucose or distilled water for 6h. Genes such as Slc2a5, Cdkn1c, Cabp2, Ranbp3, Vwce and Gcgr were induced by force-feeding with fructose compared with glucose or distilled water. Chromatin immunoprecipitation assays revealed that trimethylation of histone H3K4, and acetylation of histones H3 and H4, on the transcribed region of these fructose-inducible genes were enhanced by force-feeding of fructose, but not glucose or distilled water. These results suggest that the induction of genes in the rat jejunum by fructose force-feeding is coordinately regulated by histone modifications, particularly trimethylation of histone H3K4."	"Structure of the catalytic a(0)a fragment of the protein disulfide isomerase ERp72. Protein disulfide isomerases (PDIs) are responsible for catalyzing the proper oxidation and isomerization of disulfide bonds of newly synthesized proteins in the endoplasmic reticulum (ER). The ER contains many different PDI-like proteins. Some, such as PDI, are general enzymes that directly recognize misfolded proteins while others, such as ERp57 and ERp72, have more specialized roles. Here, we report the high-resolution X-ray crystal structure of the N-terminal portion of ERp72 (also known as CaBP2 or PDI A4), which contains two a(0)a catalytic thioredoxin-like domains. The structure shows that the a(0) domain contains an additional N-terminal beta-strand and a different conformation of the beta5-alpha4 loop relative to other thioredoxin-like domains. The structure of the a domain reveals that a conserved arginine residue inserts into the hydrophobic core and makes a salt bridge with a conserved glutamate residue in the vicinity of the catalytic site. A structural model of full-length ERp72 shows that all three catalytic sites roughly face each other and positions the adjacent hydrophobic patches that are likely involved in protein substrate binding."	"Structure of the noncatalytic domains and global fold of the protein disulfide isomerase ERp72. Protein disulfide isomerases are a family of proteins that catalyze the oxidation and isomerization of disulfide bonds in newly synthesized proteins in the endoplasmic reticulum. The family includes general enzymes such as PDI that recognize unfolded proteins, and others that are selective for specific classes of proteins. Here, we report the X-ray crystal structure of central non-catalytic domains of a specific isomerase, ERp72 (also called CaBP2 and protein disulfide-isomerase A4) from Rattus norvegicus. The structure reveals strong similarity to ERp57, a PDI-family member that interacts with the lectin-like chaperones calnexin and calreticulin but, unexpectedly, ERp72 does not interact with calnexin as shown by isothermal titration calorimetry and nuclear magnetic resonance (NMR) spectroscopy. Small-angle X-ray scattering (SAXS) of ERp72 was used to develop models of the full-length protein using both rigid body refinement and ab initio simulated annealing of dummy atoms. The two methods show excellent agreement and define the relative positions of the five thioredoxin-like domains of ERp72 and potential substrate or chaperone binding sites."	"Ca2+-binding proteins tune Ca2+-feedback to Cav1.3 channels in mouse auditory hair cells. Sound coding at the auditory inner hair cell synapse requires graded changes in neurotransmitter release, triggered by sustained activation of presynaptic Ca(v)1.3 voltage-gated Ca(2+) channels. Central to their role in this regard, Ca(v)1.3 channels in inner hair cells show little Ca(2+)-dependent inactivation, a fast negative feedback regulation by incoming Ca(2+) ions, which depends on calmodulin association with the Ca(2+) channel alpha(1) subunit. Ca(2+)-dependent inactivation characterizes nearly all voltage-gated Ca(2+) channels including Ca(v)1.3 in other excitable cells. The mechanism underlying the limited autoregulation of Ca(v)1.3 in inner hair cells remains a mystery. Previously, we established calmodulin-like Ca(2+)-binding proteins in the brain and retina (CaBPs) as essential modulators of voltage-gated Ca(2+) channels. Here, we demonstrate that CaBPs differentially modify Ca(2+) feedback to Ca(v)1.3 channels in transfected cells and explore their significance for Ca(v)1.3 regulation in inner hair cells. Of multiple CaBPs detected in inner hair cells (CaBP1, CaBP2, CaBP4 and CaBP5), CaBP1 most efficiently blunts Ca(2+)-dependent inactivation of Ca(v)1.3. CaBP1 and CaBP4 both interact with calmodulin-binding sequences in Ca(v)1.3, but CaBP4 more weakly inhibits Ca(2+)-dependent inactivation than CaBP1. Ca(2+)-dependent inactivation is marginally greater in inner hair cells from CaBP4(-/-) than from wild-type mice, yet CaBP4(-/-) mice are not hearing-impaired. In contrast to CaBP4, CaBP1 is strongly localized at the presynaptic ribbon synapse of adult inner hair cells both in wild-type and CaBP4(-/-) mice and therefore is positioned to modulate native Ca(v)1.3 channels. Our results reveal unexpected diversity in the strengths of CaBPs as Ca(2+) channel modulators, and implicate CaBP1 rather than CaBP4 in conferring the anomalous slow inactivation of Ca(v)1.3 Ca(2+) currents required for auditory transmission."	"Functional roles and efficiencies of the thioredoxin boxes of calcium-binding proteins 1 and 2 in protein folding. The rat luminal endoplasmic-recticulum calcium-binding proteins 1 and 2 (CaBP1 and CaBP2 respectively) are members of the protein disulphide-isomerase (PDI) family. They contain two and three thioredoxin boxes (Cys-Gly-His-Cys) respectively and, like PDI, may be involved in the folding of nascent proteins. We demonstrate here that CaBP1, similar to PDI and CaBP2, can complement the lethal phenotype of the disrupted Saccharomyces cerevisiae PDI gene, provided that the natural C-terminal Lys-Asp-Glu-Leu sequence is replaced by His-Asp-Glu-Leu. Both the in vitro RNase AIII-re-activation assays and in vivo pro-(carboxypeptidase Y) processing assays using CaBP1 and CaBP2 thioredoxin (trx)-box mutants revealed that, whereas the three trx boxes in CaBP2 seem to be functionally equivalent, the first trx box of CaBP1 is significantly more active than the second trx box. Furthermore, only about 65% re-activation of denatured reduced RNase AIII could be obtained with CaBP1 or CaBP2 compared with PDI, and the yield of PDI-catalysed reactions was significantly reduced in the presence of either CaBP1 or CaBP2. In contrast with PDI, neither CaBP1 nor CaBP2 could catalyse the renaturation of denatured glyceraldehyde-3-phosphate dehydrogenase (GAPDH), which is a redox-independent process, and neither protein had any effect on the PDI-catalysed refolding of GAPDH. Furthermore, although PDI can bind peptides via its b' domain, a property it shares with PDIp, the pancreas-specific PDI homologue, and although PDI can bind malfolded proteins such as 'scrambled' ribonuclease, no such interactions could be detected for CaBP2. We conclude that: (1) both CaBP2 and CaBP1 lack peptide-binding activity for GAPDH attributed to the C-terminal region of the a' domain of PDI; (2) CaBP2 lacks the general peptide-binding activity attributed to the b' domain of PDI; (3) interaction of CaBP2 with substrate (RNase AIII) is different from that of PDI and substrate; and (4) both CaBP2 and CaBP1 may promote oxidative folding by different kinetic pathways."	"Five members of a novel Ca(2+)-binding protein (CABP) subfamily with similarity to calmodulin. Five members of a novel Ca(2+)-binding protein subfamily (CaBP), with 46-58% sequence similarity to calmodulin (CaM), were identified in the vertebrate retina. Important differences between these Ca(2+)-binding proteins and CaM include alterations within their second EF-hand loop that render these motifs inactive in Ca(2+) coordination and the fact that their central alpha-helixes are extended by one alpha-helical turn. CaBP1 and CaBP2 contain a consensus sequence for N-terminal myristoylation, similar to members of the recoverin subfamily and are fatty acid acylated in vitro. The patterns of expression differ for each of the various members. Expression of CaBP5, for example, is restricted to retinal rod and cone bipolar cells. In contrast, CaBP1 has a more widespread pattern of expression. In the brain, CaBP1 is found in the cerebral cortex and hippocampus, and in the retina this protein is found in cone bipolar and amacrine cells. CaBP1 and CaBP2 are expressed as multiple, alternatively spliced variants, and in heterologous expression systems these forms show different patterns of subcellular localization. In reconstitution assays, CaBPs are able to substitute functionally for CaM. These data suggest that these novel CaBPs are an important component of Ca(2+)-mediated cellular signal transduction in the central nervous system where they may augment or substitute for CaM."	"A homologue of the calcium-binding disulfide isomerase CaBP1 is expressed in the developing CNS of Drosophila melanogaster. Previous studies identified a group of proteins localized to the endoplasmic reticulum (ER) that bind calcium and direct protein folding. Three of these proteins, CaBP1, CaBP2, and protein disulfide isomerase, have been purified from rat microsomes and analyzed biochemically. However, their function in vivo has not been determined. Here, we report the isolation of a homologue of the CaBP1 gene from the fruitfly Drosophila melanogaster (DmCaBP1). The predicted sequence of the Drosophila protein is very similar to that of rat CaBP1 and retains motifs thought to be functionally important in the mammalian protein. We show that DmCaBP1 is expressed in a specific spatiotemporal pattern during embryogenesis. In particular, it is expressed in midline precursor cells in the developing CNS. This is the first demonstration of tissue-specific expression for a member of this group of ER proteins and suggests a possible role for DmCABP1 as a molecular chaperone involved in nervous system development. The identification of the DmCaBP1 gene provides a basis for future genetic studies of its function."	"KDEL motif interacts with a specific sequence in mammalian erd2 receptor. The ER retention of lumenal proteins is achieved by a process which involves binding of escaped proteins via the C-terminal KDEL-tags to a KDEL receptor (erd2 receptor) in a post-ER compartment and return of the protein-receptor complex back to the ER. The transmembrane topology of the human KDEL receptor, which is an integral membrane protein, has been proposed. We have synthesised sets of cellulose-bound overlapping peptides covering the complete se quence of the receptor to study the interaction of the erd2 receptor with lumenal ER proteins, CaBP1 and CaBP2. At the next stage, the proposed lumenal loops of the receptor were more closely mapped. A short sequence, essential for the protein binding to the most efficient binding site of the receptor, was identified as 22KIWK25, which is in accordance with one of the proposed structural models of the receptor. The binding was of high specificity and was almost completely inhibited by KDEL-containing soluble peptides. The phosphorylation state of CaBP1/CaBP2 did not affect their binding to the KDEL receptor."	"BiP, a major chaperone protein of the endoplasmic reticulum lumen, plays a direct and important role in the storage of the rapidly exchanging pool of Ca2+. The activity of BiP, the major chaperone of the endoplasmic reticulum (ER) lumen, is known to be Ca2+-regulated; however, the participation of this protein in the ER storage of the cation has not yet been investigated. Here such a role is demonstrated in human epithelial (HeLa) cells transiently transfected with the hamster BiP cDNA and incubated in Ca2+-free medium, as revealed by two different techniques. In the first, co-transfected aequorin was employed as a probe for assaying either the cytosolic of the mitochondrial free Ca2+ concentration. By this approach higher Ca2+ release responses were revealed in BiP-transfected cells by experiments in which extensive store depletion was induced either by repetitive stimulation with inositol 1,4,5-trisphosphate-generating agonists or by treatment with the Ca2+ ionophore, A23187. In the second technique the cells were loaded at the equilibrium with 45Ca, and the release of the tracer observed upon treatment with thapsigargin, a blocker of the ER Ca2+ ATPases, was larger in BiP-transfected than in control cells. The latter results were obtained also when BiP was overexpressed not via transfection but as a response to ER stress by tunicamycin. These results are sustained by increases of the ER Ca2+ storage capacity rather than by artifacts or indirect readjustments induced in the cells by the overexpression of the chaperone since (a) the exogenous and endogenous BiP were both confined to the ER, (b) the expression levels of other proteins active in the ER Ca2+ storage were not changed, and (c) effects similar to those of wild type BiP were obtained with a deletion mutant devoid of chaperone activity. The specificity of the results was confirmed by parallel 45Ca experiments carried out in HeLa cells transfected with two other Ca2+-binding proteins, calreticulin and CaBP2(ERp72), only the first of which induced increases of Ca2+ capacity. We conclude that BiP has a dual function, in addition to its chaperone role it is a bona fide ER lumenal Ca2+ storage protein contributing, under resting cell conditions, to around 25% of the store, with a stoichiometry of 1-2 moles of calcium/mole of BiP."	"Phosphorylation of CaBP1 and CaBP2 by protein kinase CK2. Several proteins in the mammalian endoplasmic reticulum are substrates for protein kinases. Many unidentified phosphoproteins from this compartment are described in the literature, and this prompted us to try to identify at least the more dominant ones. When solubilized bovine and murine microsomes were phosphorylated with protein kinase CK2 and [32P]ATP and separated on SDS-PAGE, the corresponding autoradiogram showed three dominant 32P-labeled proteins. These three [32P]phosphoproteins were identified as calcium-binding proteins (CaBP) 1, 2, and 4 after purification on a MonoQ column followed by SDS-PAGE, proteolytic cleavage and subsequent amino acid sequencing of the purified 32P-labeled peptides. All three were also phosphorylated by an endogenous kinase, found by us to be of the CK2 type. This kinase phosphorylated CaBP1 N-terminally at serine 427. Of the three proteins, only CaBP4 was previously known to be a substrate of CK2. The newly identified substrates CaBP 1 and 2 are members of the thioredoxin family and have a signal tetrapeptide in the C-terminal of the protein for retention in the ER. Serines and/or threonines in the C-terminal were phosphorylated in CaBP1 when the endogenous CK2 was used as protein kinase. A protein with the same molecular mass as CaBP1 on SDS-PAGE was phosphorylated when intact hepatocytes were grown in the presence of [32P] phosphate. The in vitro phosphorylation with protein kinase CK2 can be used as a specific and sensitive method for identification of CaBP1, 2, and 4 in microsomes."	"Two resident ER-proteins, CaBP1 and CaBP2, with thioredoxin domains, are substrates for thioredoxin reductase: comparison with protein disulfide isomerase. Protein disulfide-isomerase (PDI) is the best known representative of a growing family of enzymes with thioredoxin domains. Two such proteins with thioredoxin (Trx) domains, CaBP1 and CaBP2 (ERp72), have previously been isolated from rat liver microsomes. Here we report that they, like PDI are substrates for thioredoxin reductase and will catalyze NADPH-dependent insulin disulfide reduction. The activity of CaBP1 and CaBP2 in this assay was higher than that of PDI but lower than that of E. coli Trx. Furthermore, as isolated the thioredoxin domains of CaBP1 and CaBP2 were in disulfide form as judged by stoichiometric oxidation of 2 and 3 mol of NADPH in CaBP1 and CaBP2, respectively. The redox potential of the active site disulfide/dithiol was estimated from the equilibrium with a mutant E. coli Trx, P34H Trx, with a known redox potential (-235 mV). This showed that CaBP1 and CaBP2, like PDI, have a much higher redox potential than wild type thioredoxin (-270 mV) in agreement with a role in formation of protein disulfide bonds. In conclusion, in vitro CaBP1 and CaBP2 share catalytic properties in thiol disulfide-interchange reactions with PDI. Thus, the well known activity of PDI is not unique in the endoplasmic reticulum and CaBP1 and CaBP2 may be regarded as functional equivalents."	"Systemic lupus erythematosus is associated with increased auto-antibody titers against calreticulin and grp94, but calreticulin is not the Ro/SS-A antigen. Auto-antibodies against purified human calreticulin were determined by an ELISA in sera from patients with systemic lupus erythematosus (SLE) and from healthy persons or patients without an autoimmune disease. More than 80% of patients with SLE had titers exceeding the highest value obtained in the group without SLE. Almost 30% of the patients had also elevated auto-antibody titers against purified rat grp94, another resident ER-protein of the KDEL-protein family, but not against rat ERp72 (CaBP2), an ER-resident protein of the proteindisulfide isomerase family. It could, however, be excluded that calreticulin is the Ro/SS-A antigen on the basis of the following observations: 1) Calreticulin purified from rat, bovine or human liver contained far less than 1 mol of phosphate per mol of calreticulin, showed an E280/E260-absorption ratio of about 2.0, and did not contain extractable RNA; 2) Sera from patients with SLE did not react with or precipitate endogenous calreticulin from Hep G2 cells; they did, however, precipitate hY-RNA from these cells; 3) Sera from SLE-patients, but not anti-calreticulin antisera precipitated [32P]-hY-RNA from [32P]-labelled Hep G2 cells."	"Effects of CaBP2, the rat analog of ERp72, and of CaBP1 on the refolding of denatured reduced proteins. Comparison with protein disulfide isomerase. It has been shown previously that CaBP2, the rat analog of the murine protein ERp72, and CaBP1, the rat analogue of the hamster protein P5, represent members of the protein disulfide isomerase (PDI) family and are able to catalyze the reduction of insulin in the presence of various reductants (Nguyen Van et al., 1993). We have now examined the abilities of CaBP2 and CaBP1 to catalyze the renaturation of denatured reduced model proteins. Both CaBP2 and CaBP1 catalyzed the reappearance of the biological activity of the denatured reduced Fab fragment of a monoclonal anti-human creatine phosphokinase antibody. The reaction rate was positively correlated with the amount of CaBP2 or CaBP1 and dependent on the GSH/GSSG ratio (maximum at GSH/GSSG = 1). Peptide prolyl-cis,trans-isomerase (PPI), which catalyzed some renaturation on its own, showed synergistic effects with PDI, CaBP2, and CaBP1. No synergistic effects could be observed when the combinations CaBP2 + PDI, CaBP1 + PDI, or CaBP2 + CaBP1 were tested. Variation of [Ca2+] between 0 and 1 mM did not have any effect on the rate or amount of renaturation catalyzed by CaBP2, CaBP1, or PDI, nor were these parameters affected by the simultaneous presence of BiP or grp94. Both CaBP2 and CaBP1 catalyzed also the renaturation of denatured reduced ribonuclease AIII in a way that depended on the amounts of CaBP2 or CaBP1 and on the redox potential of the redox system used (GSH/GSSG or CSH/CSSC). PPI alone had no effect on the rate of RNase AIII renaturation and did not significantly affect renaturation catalyzed by PDI, CaBP2, or CaBP1. PDI showed a moderate but significant synergism with CaBP2, and a strong synergism with CaBP1. The results indicate that both CaBP2 and CaBP1 can catalyze the formation of disulfide bonds and protein disulfide isomerization and may thus be involved in the folding of nascent proteins in the secretory pathway. This does not exclude the possibility of additional functions of these proteins in the pre-Golgi compartments."	"CaBP2 is a rat homolog of ERp72 with proteindisulfide isomerase activity. Ca-binding protein 2 (CaBP2) has been described previously as an intracisternal calcium-binding microsomal glycoprotein. We report now the primary sequence of this protein as deduced from the corresponding cDNA. The protein possesses a C-terminal -KEEL retention sequence and three repeats of the thioredoxin-like motive -EFYAPNCGHCK-, and represents the rat homolog of ERp72. In contrast to earlier reports on ERp72, CaBP2 possesses significant proteindisulfide isomerase activity. Furthermore, in contrast to ERp72, CaBP2 is a glycoporotein containing O-linked glycans. The amount of CaBP2 in H-35 Reuber hepatoma cells increases in parallel with that of immunoglobin heavy-chain-binding protein under conditions which lead to impaired glycosylation, while the amount of calreticulin, another KDEL-containing glycoprotein, remains almost unchanged."	"Different sorting of Lys-Asp-Glu-Leu proteins in rat liver. Most of the resident soluble proteins of the endoplasmic reticulum (ER) seem to be sorted into this compartment via their COOH-terminal tetrapeptide Lys-Asp-Glu-Leu (KDEL). This sorting is supposed to occur in a post-ER compartment. Three resident soluble ER glycoproteins belonging to the KDEL family are CaBP1, CaBP2, CaBP3 (= calreticulin), and CaBP4 (= grp94) (Nguyen Van, P., Peter, F., and Söling, H.-D. (1989) J. Biol. Chem. 264, 17494-17501). In rat liver, calreticulin possesses a carbohydrate moiety of the complex hybrid type with terminal galactoses (Nguyen Van, P., Peter, F., and Söling, H.-D. (1989) J. Biol. Chem. 264, 17494-17501). We can show now that practically all calreticulin molecules (and not only a fraction) possess terminal galactoses as well as the COOH-terminal KDEL sequence. This as well as pulse-chase experiments performed at 37 and 15 degrees C indicate that calreticulin must have passed through the trans-Golgi. Subcellular fractionations of post-mitochondrial supernatants from isolated rat hepatocytes by sucrose-Nycodenz gradient centrifugation revealed that calreticulin is confined mainly to the rough ER, grp94 mainly to the smooth ER. CaBP1, a member of the thioredoxin family, was recovered in fractions which most likely represent the intermediate compartment. This indicates that KDEL is a sorting signal which leads to the retention of these proteins in the pre-Golgi compartments. However, additional factors, most likely residing within the specific KDEL protein itself, determine the final location of the protein within the pre-Golgi compartments. This is underlined by experiments in which the density dependent distribution of total KDEL proteins was studied using a COOH-terminal KDEL-specific antibody."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CDH23"	"nonsyndromic genetic deafness"	"Pathophysiological changes in inner hair cell ribbon synapses in the ageing mammalian cochlea. Age-related hearing loss (ARHL) is associated with the loss of IHC ribbon synapses, lower hearing sensitivity and decreased ability to understand speech, especially in a noisy environment. Little is known about age-related physiological and morpholdogical changes that occur at ribbon synapses. We show that the differing degrees of ARHL in four selected mouse stains is correlated with the loss of ribbon synapses, being most severe for the strains C57BL/6NTac and C57BL/6J, less so for C57BL/6NTac<sup>Cdh23</sup> -Repaired and lowest in C3H/HeJ. Despite the loss of ribbon synapses with age, the volume of the remaining ribbons increased and the size and kinetics of Ca<sup>2+</sup> -dependent exocytosis in IHCs was unaffected, indicating the presence of a previously unknown degree of functional compensation at ribbon synapses. Although the age-related morphological changes at IHC ribbon synapses contribute to the different progression of ARHL, without the observed functional compensation hearing loss could be greater. Mammalian cochlear inner hair cells (IHCs) are specialized sensory receptors able to provide dynamic coding of sound signals. This ability is largely conferred by their ribbon synapses, which tether a large number of vesicles at the IHC's presynaptic active zones, allowing high rates of sustained synaptic transmission onto the afferent fibres. How the physiological and morphological properties of ribbon synapses change with age is still largely unknown. Here, we have investigated the biophysical and morphological properties of IHC ribbon synapses in the ageing cochlea (9-12 kHz region) of four mouse strains commonly used in hearing research: early-onset progressive hearing loss (C57BL/6J and C57BL/6NTac) and &quot;good hearing&quot; strains (C57BL/6NTac<sup>Cdh23+</sup> and C3H/HeJ). We found that with age, both modiolar and pillar sides of the IHC exhibited a loss of ribbons, but an increased volume of those that remained. These morphological changes, which only occurred after 6 months of age, were correlated with the level of hearing loss in the different mouse strains, being most severe for C57BL/6NTac and C57BL/6J, less so for C57BL/6NTac<sup>Cdh23+</sup> and absent in C3H/HeJ strains. Despite the age-related reduction in ribbon number in three out of four strains, the size and kinetics of Ca<sup>2+</sup> -dependent exocytosis, as well as the replenishment of synaptic vesicles, in IHCs was not affected. The degree of vesicle release at the fewer, but larger, individual remaining ribbon synapses colocalized with the post-synaptic afferent terminals is likely to increase, indicating the presence of a previously unknown degree of functional compensation in the ageing mouse cochlea. This article is protected by copyright. All rights reserved."	"The mutation frequencies of GJB2, GJB3, SLC26A4 and MT-RNR1 of patients with severe to profound sensorineural hearing loss in northwest China. To expose the spectrum and frequency of GJB2, GJB3, SLC26A4 and MT-RNR1 in northwest China and to investigate the underlying causative genes in patients without common mutations. We analyzed the mutation screening results of GJB2, GJB3, SLC26A4 and MT-RNR1 in 398 unrelated severe-to-profound probands with bilateral, symmetrical sensorineural hearing loss. Subsequently, we selected 10 probands with a significant family history of inherited hearing loss (HL) that did not have the above four common gene mutations to perform next-generation sequencing (NGS) of 139 known deafness genes, followed by co-segregation analysis of all available family members. Among the 398 patients, 69 (17.34%) had the biallelic GJB2 gene mutations, and the most common mutations were c.235delC, c.109G&gt;A and c.299_300delAT, with allele frequencies of 12.31%, 3.38% and 3.89%, respectively. A total of 63 (15.83%) cases with biallelic SLC26A4 mutations were detected, and the most common pathogenic alleles were c.919-2A&gt;G, c.2168A&gt;G and c.1174A&gt;T, with allele frequencies of 9.17%, 2.26% and 0.88%, respectively. Mitochondrial gene mutations were detected in 9 (2.26%) patients, with 5 cases of mitochondrial DNA (mtDNA) m.1555A&gt;G mutation and 4 cases of mtDNA m.1095T&gt;C mutation. In 10 probands with a clear family history of HL, NGS showed two novel pathogenic variants in 2 families, including c.4129C&gt;T/c.3268C&gt;T in LOXHD1, c.334G&gt;A/c.2968G&gt;T in CDH23. Sanger sequencing confirmed that these variants segregated with the HL in each family. Our results showed that GJB2 and SLC26A4 were the two major HL-causing genes in northwest China. The most common mutation alleles in GJB2 were c.235delC, c.109G&gt;A and c.299_300delAT, and those in SLC26A4 were c.919-2A&gt;G, c.2168A&gt;G and c.1174A&gt;T. In addition, both genes and their loci can be used as the first selection of deafness gene screening. Additionally, for patients who did not have mutations of these common genes, NGS provided an efficient diagnosis for increasing known deafness genes."	"Synonymous variants associated with Alzheimer disease in multiplex families. Synonymous variants can lead to disease; nevertheless, the majority of sequencing studies conducted in Alzheimer disease (AD) only assessed coding variation. To detect synonymous variants modulating AD risk, we conducted a whole-genome sequencing study on 67 Caribbean Hispanic (CH) families multiply affected by AD. Identified disease-associated variants were further assessed in an independent cohort of CHs, expression quantitative trait locus (eQTL) data, brain autopsy data, and functional experiments. Rare synonymous variants in 4 genes (CDH23, SLC9A3R1, RHBDD2, and ITIH2) segregated with AD status in multiplex families and had a significantly higher frequency in these families compared with reference populations of similar ancestry. In comparison to subjects without dementia, expression of CDH23 (β = 0.53, p = 0.006) and SLC9A3R1 (β = 0.50, p = 0.02) was increased, and expression of RHBDD2 (β = -0.70, p = 0.02) decreased in individuals with AD at death. In line with this finding, increased expression of CDH23 (β = 0.26 ± 0.08, p = 4.9E-4) and decreased expression of RHBDD2 (β = -0.60 ± 0.12, p = 5.5E-7) were related to brain amyloid load (p = 0.0025). SLC9A3R1 expression was associated with burden of TDP43 pathology (β = 0.58 ± 0.17, p = 5.9E-4). Using eQTL data, the CDH23 variant was in linkage disequilibrium with variants modulating CDH23 expression levels (top single nucleotide polymorphism: rs11000035, p = 4.85E-6, D' = 1.0). Using minigene splicing assays, the CDH23 and SLC9A3R1 variants affected splicing efficiency. These findings suggest that CDH23, SLC9A3R1, RHBDD2, and possibly ITIH2, which are involved in synaptic function, the glutamatergic system, and innate immunity, contribute to AD etiology. In addition, this study supports the notion that synonymous variants contribute to AD risk and that comprehensive scrutinization of this type of genetic variation is warranted and critical."	"Age-related changes in the biophysical and morphological characteristics of mouse cochlear outer hair cells. Age-related hearing loss (ARHL) is a very heterogeneous disease, resulting from cellular senescence, genetic predisposition and environmental factors (e.g. noise exposure). Currently, we know very little about age-related changes occurring in the auditory sensory cells, including those associated with the outer hair cells (OHCs). Using different mouse strains, we show that OHCs undergo several morphological and biophysical changes in the ageing cochlea. Ageing OHCs also exhibited the progressive loss of afferent and efferent synapses. We also provide evidence that the size of the mechanoelectrical transducer current is reduced in ageing OHCs, highlighting its possible contribution in cochlear ageing. Outer hair cells (OHCs) are electromotile sensory receptors that provide sound amplification within the mammalian cochlea. Although OHCs appear susceptible to ageing, the progression of the pathophysiological changes in these cells is still poorly understood. By using mouse strains with a different progression of hearing loss (C57BL/6J, C57BL/6NTac, C57BL/6NTac<sup>Cdh23+</sup> , C3H/HeJ), we have identified morphological, physiological and molecular changes in ageing OHCs (9-12 kHz cochlear region). We show that by 6 months of age, OHCs from all strains underwent a reduction in surface area, which was not a sign of degeneration. Although the ageing OHCs retained a normal basolateral membrane protein profile, they showed a reduction in the size of the K<sup>+</sup> current and non-linear capacitance, a readout of prestin-dependent electromotility. Despite these changes, OHCs have a normal Vm and retain the ability to amplify sound, as distortion product otoacoustic emission thresholds were not affected in aged, good-hearing mice (C3H/HeJ, C57BL/6NTac<sup>Cdh23+</sup> ). The loss of afferent synapses was present in all strains at 15 months. The number of efferent synapses per OHCs, defined as postsynaptic SK2 puncta, was reduced in aged OHCs of all strains apart from C3H mice. Several of the identified changes occurred in aged OHCs from all mouse strains, thus representing a general trait in the pathophysiological progression of age-related hearing loss, possibly aimed at preserving functionality. We have also shown that the mechanoelectrical transduction (MET) current from OHCs of mice harbouring the Cdh23<sup>ahl</sup> allele is reduced with age, highlighting the possibility that changes in the MET apparatus could play a role in cochlear ageing."	"An Age-Related Hearing Protection Locus on Chromosome 16 of BXD Strain Mice. Inbred mouse models are widely used to study age-related hearing loss (AHL). Many genes associated with AHL have been mapped in a variety of strains. However, little is known about gene variants that have the converse function-protective genes that confer strong resistance to hearing loss. Previously, we reported that C57BL/6J (B6) and DBA/2J (D2) strains share a common hearing loss allele in Cdh23. The cadherin 23 (Cdh23) gene is a key contributor to early-onset hearing loss in humans. In this study, we tested hearing across a large family of 54 BXD strains generated from B6 to D2 crosses. Five of 54 strains maintain the normal threshold (20 dB SPL) even at 2 years old-an age at which both parental strains are essentially deaf. Further analyses revealed an age-related hearing protection (ahp) locus on chromosome 16 (Chr 16) at 57~76 Mb with a maximum LOD of 5.7. A small number of BXD strains at 2 years with good hearing correspond roughly to the percentage of humans who have good hearing at 90 years old. Further studies to define candidate genes in the ahp locus and related molecular mechanisms involved in age-related resilience or resistance to AHL are warranted."	"Evidence of Echolocation in the Common Shrew from Molecular Convergence with Other Echolocating Mammals. Along with sophisticated echolocation found in bats and toothed whales, the common shrew (Sorex araneus) was confirmed to possess echolocation ability based on behavioral and experimental evidence such as high-frequency twittering and close-range spatial orientation. However, whether echolocation in the common shrew is convergent with bats and dolphins at the molecular level remains poorly understood. In this study, we gathered the coding region sequences of 11 hearing-related genes from genome data and previous studies. Convergent evolutionary analyses identified 13 amino acid residues (seven in CDH23, five in OTOF, and one in PRESTIN) under strong convergent evolution shared among the common shrew and other echolocating mammals (bats and dolphins). Furthermore, a phylogenetic tree was constructed based on the combined amino acid dataset of convergent/parallel substitutions, sites with parallel radical property changes, and sites supporting echolocator-convergence; it supported the converged topology of the simple echolocator Sorex araneus and sophisticated echolocating bats with high posterior probability. This study gives evidence at the molecular level that the common shrew echolocate and provides novel insights into the convergent evolution between the common shrew and bats and dolphins."	"A Novel Cadherin 23 Variant for Hereditary Hearing Loss Reveals Additional Support for a DFNB12 Nonsyndromic Phenotype of CDH23. Identification of the pathogenic mutations underlying hereditary hearing loss (HL) is difficult, since causative mutations in 60 different genes have so far been reported. A comprehensive clinical and pedigree examination was performed on a multiplex family suffering from HL. Direct sequencing of GJB2 and genetic linkage analysis of 5 other most common recessive nonsyndromic HL (ARNSHL) genes were accomplished. Next-generation sequencing (NGS) was utilized to reveal the possible genetic etiology of the disease. NGS results showed a novel rare variant c.2977G&gt;A (p.Asp993Asn) in the CDH23 gene. The variant, which is a missense in exon 26 of the CDH23 gene, fulfills the criteria of being categorized as pathogenic according to the American College of Medical Genetics and Genomics (ACMG) guideline. Electroretinography rejects the Usher syndrome in the family. The present study shows that an accurate molecular diagnosis based on NGS technologies largely improves molecular-diagnostic outcome and thus genetic counseling, and helps to clarify the recurrence risk in deaf families."	"A novel highly frequent single‑nucleotide polymorphism site of cadherin 23 in clear cell renal cell carcinoma with sarcomatoid differentiation based on whole exome sequencing. Clear cell renal cell carcinoma (CCRCC) with sarcomatoid differentiation (CCRCCS) displays invasive behavior, poor prognosis, and poor therapeutic response. The present study was aimed to gain new insights into the molecular mechanisms of sarcomatoid transformation, and identify new prognostic and therapeutic targets for CCRCCS. Whole exome sequencing was performed on matched carcinomatous and sarcomatoid elements from five specimens with CCRCCS. A non‑synonymous single‑nucleotide polymorphism (SNP) of cadherin 23 (CDH23) was further studied through Sanger sequencing in expanded 40 specimens with CCRCCS and 50 specimens with CCRCC. Carcinomatous and sarcomatoid elements shared most somatic single‑nucleotide variants (SSNVs) as revealed through whole exome sequencing. Sarcomatoid element had higher overall SSNVs than carcinomatous element. A highly frequent mutation of CDH23 (rs3802711) was observed in CCRCCS that resulted in an alteration in the highly conserved calcium‑binding site in the three‑dimensional (3D) structure mediating the functions of cadherins. In the expanded 90 specimens, CDH23 SNP (rs3802711) was a highly frequent mutation in CCRCCS than that in all CCRCC samples and even high grade CCRCC. Cox multivariate analysis indicated that CDH23 (rs3802711) genotype was an independent prognostic factor affecting the overall survival of the cohort. CDH23 gene and protein were negatively or weakly expressed in most CCRCCS specimens with CDH23 mutation. The present study revealed, for the first time, that the CDH23 (rs3802711) was a highly genetic risk factor for CCRCCS. It was associated with the decreased expression of CDH23 protein, resulting in the absence of cadherin function of CDH23, indicating that the CDH23 mutation may be involved in the sarcomatoid transformation in CCRCCS. Collectively, a novel and specific SNP of CDH23 was identified in CCRCCS and a new candidate cadherin involved in EMT was revealed. Furthermore, a new prognostic evaluation factor and potential therapeutic target for CCRCCS was identified."	"Targeted Next-Generation Sequencing Identified Novel Compound Heterozygous Variants in the CDH23 Gene Causing Usher Syndrome Type ID in a Chinese Patient. Usher syndrome includes a group of genetically and clinically heterogeneous autosomal recessive diseases, such as retinitis pigmentosa (RP) and sensorineural hearing loss. Usher syndrome type I (USHI) is characterized by profound hearing impairment beginning at birth, vestibular dysfunction, and unintelligible speech in addition to RP. The relationships between the Usher syndrome causing genes and the resultant phenotypes of Usher syndrome have not yet been fully elucidated. In the present study, we recruited a Chinese family with Usher syndrome and conducted paneled next-generation sequencing, Sanger sequencing, segregation analysis, and expression profile analysis. The functional effects of the identified cadherin-related 23 (CDH23) pathogenic variants were analyzed. The M101 pedigree consisted of a proband and seven family members, and the proband was a 39-year-old Chinese male who claimed that he first began to experience night blindness 11 years ago. We revealed novel, missense compound heterozygous variants c. 2572G &gt; A (p.V858I) and c. 2891G &gt; A (p.R964Q) in the CDH23 gene, which co-segregated with the disease phenotype causing Usher syndrome type ID (USH1D) in this Chinese pedigree. CDH23 mRNA was highly expressed in the retina, and this protein was highly conserved as revealed by the comparison of Homo sapiens CDH23 with those from nine other species. This is the first study to identify the novel, missense compound heterozygous variants c. 2572G &gt; A (p.V858I) and c.2891G &gt; A (p.R964Q) of CDH23, which might cause USH1D in the studied Chinese family, thereby extending CDH23 mutation spectra. Identifying CDH23 pathogenic variants should help in the detailed phenotypic characterization of USH1D."	"Aging But Not Age-Related Hearing Loss Dominates the Decrease of Parvalbumin Immunoreactivity in the Primary Auditory Cortex of Mice. Alterations in inhibitory circuits of the primary auditory cortex (pAC) have been shown to be an aspect of aging and age-related hearing loss (AHL). Several studies reported a decline in parvalbumin (PV) immunoreactivity in aged rodent pAC of animals displaying AHL and conclude a relationship between reduced sensitivity and declined PV immunoreactivity. However, it remains elusive whether AHL or a general molecular aging is causative for decreased PV immunoreactivity. In this study, we aimed to disentangle the effects of AHL and general aging on PV immunoreactivity patterns in inhibitory interneurons of mouse pAC. We compared young and old animals of a mouse line with AHL (C57BL/6) and a mutant (C57B6.CAST-Cdh23<sup>Ahl+</sup> ) that is not vulnerable to AHL according to their hearing status by measuring auditory brainstem responses (ABRs) and by an immunohistochemical evaluation of the PV immunoreactivity patterns in two dimensions (rostro-caudal and layer) in the pAC. Although AHL could be confirmed by ABR measurements for the C57BL/6 mice, both aged strains showed a similar reduction of PV<sup>+</sup> positive interneurons in both, number and density. The pattern of reduction across the rostro-caudal axis and across cortical layers was similar for both aged lines. Our results demonstrate that a reduced PV immunoreactivity is a sign of general, molecular aging and not related to AHL."	"[Relationship research among CDH23 gene and the risk of noise-induced hearing loss]. Objective: To explore the relationship among CDH23 gene variation and the risk of noise-induced hearing loss (NIHL) . Methods: The nested case-control study was performed and this study followed a cohort of 6297 noise-exposed workers in a steel factory of Henan province in China from January 1, 2006 to December 31, 2015. In July 2019, subjects whose average hearing threshold were more than 40 dB in high frequency were defined as the case group, and subjects whose average hearing threshold were less than 35 dB in high frequency and less than 25 dB in speech frequency were defined as the control group. A nested case-control study which included 572 subjects was carried out, in which subjects consisted of 286 cases and 286 controls. 18 single nucleotide polymorphisms (SNPs) in CDH23 were selected and genotyped, then we analyzed the association among SNPs in CDH23, haplotypes in CDH23 and NIHL risk. Logistic regression was performed to analyze the main effects of SNPs and the interactions between CNE and SNPs adjusting cumulative noise exposure (CNE) , smoking, drinking, physical exercise and hypertension. Moreover, the association between haplotypes in CDH23 and NIHL risk were also analyzed. We ananlyzed the relationship amongst different SNP groups and NIHL risk using the generalized multifactor dimensionality reduction (GMDR) method. Results: The results suggested that significant associations were observed for rs3802711, rs3752751, rs3752752, rs11592462, rs10762480, rs3747867 for NIHL overall and/or various CNE strata by adjusting CNE, smoking, drinking, physical exercise and blood pressure. For rs3802711, workers exposure to noise carrying the AA/GA genotype of rs3802711 increased risk of NIHL than those carrying GG genotype (OR=3.121; 95%CI:1.054-9.239, P=0.035) in overall; In the stratified analysis of CNE (&gt;97 dB (A) ·year at rs3802711 locus, workers exposure to noise carrying GA genotype (OR=2.056; 95%CI:1.226~3.448, P=0.006) and GA+AA/GA genotype (OR=2.221; 95%CI:1.340~3.681, P=0.002) increased NIHL risk. For rs11592462, workers exposure to noise carrying the GG genotype of rs11592462 increased risk of NIHL than those carrying CC genotype in overall (OR=3.951; 95%CI:1.104-14.137, P=0.04) ; workers exposure to noise carrying the GG genotype of rs11592462 increased risk of NIHL than those carrying CG+CC genotype in overall (OR=4.06; 95%CI:1.145-14.391, P=0.03) . After adjusting CNE, smoking, drinking, physical exercise and blood pressure, the haplotypes of CDH23 rs1227049, rs10999947, rs3752752, rs3752751, rs10762480, rs3802711, rs11592462, rs10466026, rs4747194, rs4747195 were not associated with the risk of NIHL. GMDR analysis showed no association between SNP combination and NIHL risk after adjusting CNE, smoking, drinking, physical exercise and blood pressure. Conclusion: Gene polymorphisms in CDH23 might associate significantly with the risk of NIHL. 目的: 探讨CDH23基因多态性与噪声性听力损失(noise-induced hearing loss,NIHL)发生风险的关系。 方法: 从2006年1月1日起,以河南省某钢铁企业的6 297名接触噪声作业工人为队列研究人群,随访至2015年12月31日。于2019年7月,以1:1巢式病例对照研究方法在队列研究对象中按照年龄、接噪工龄、性别、工种因素选择双耳高频(3 000、4 000、6 000 Hz)平均听阈≥40 dB者选为听力损失组,选择双耳高频平均听阈&lt;35 dB任一耳语频的任一频段(500、1 000、2 000 Hz)听阈均≤25 dB者为对照组,两组研究对象各286例。对调查对象进行一般体格检查和问卷调查,进行纯音听力测试和作业现场噪声测量,采用中高通量单核苷酸多态性分型检测技术(SNPscanTM法)对研究对象的CDH23基因18个位点进行检测。并采用条件Logistic回归分析不同单核苷酸多态性(single nucleotide polymorphism,SNP)与NIHL的关系,及调整协变量后不同多态位点与NIHL发生风险的关系;以不同累积噪声暴露量(cumulative noise exposure,CNE)分层后,采用条件logistic回归对不同位点与NIHL发生风险关系进行分析。采用广义多因子降维法(generalized multifactor dimensionality reduction,GMDR)分析不同SNP组合与NIHL发生风险的关系。 结果: 与对照组比较,听力损失组在年龄、接噪工龄、CNE、饮酒习惯、高血压患病情况和体育锻炼情况的分布差异均无统计学意义(P&gt;0.05);听力损失组研究对象吸烟人数多,听力损失组双耳高频平均听阈位移高,差异有统计学意义(P&lt;0.01)。在调整了CNE、吸烟、饮酒、体育锻炼、高血压混杂因素的条件下,分析结果显示CDH23基因rs3802711、rs3752751、rs3752752、rs11592462、rs10762480、rs3747867多态位点在总体或CNE分层分析结果与NIHL发生风险均有关(P&lt;0.05)。rs3802711位点总体分析结果和CNE≥97 dB(A)·年分层分析结果均显示,与携带GG基因型的噪声作业工人比较,携带AA/GA或GA+AA基因型的噪声作业工人更易发生NIHL(OR=3.121,95CI%:1.054~9.239,P=0.04;OR=2.056,95CI%: 1.226~3.448,P=0.006;OR=2.221,95CI%: 1.340~3.681,P=0.002);rs11592462位点总体分析结果中,与携带CC基因型或CG+CC基因型的噪声作业工人比较,携带GG基因型的噪声作业工人更易发生NIHL(OR=3.951,95CI%:1.104~14.137,P=0.035;OR=4.060,95CI%: 1.145~14.391,P=0.030)。在调整了CNE、吸烟、饮酒、体育锻炼、高血压混杂因素的条件下,CDH23 rs1227049、rs10999947、rs3752752、rs3752751、rs10762480、rs3802711、rs11592462、rs10466026、rs4747194、rs4747195位点在构成的单体型与NIHL发生风险均无关联(P&gt;0.05)。本研究在调整了CNE、吸烟、饮酒、高血压和体育锻炼因素后GMDR分析结果均未见SNP组合与NIHL发生风险有关联(P&gt;0.05)。 结论: CDH23基因位点变异可能与NIHL的发生风险有关。."	"High-Throughput Sequencing Identifies 3 Novel Susceptibility Genes for Hereditary Melanoma. Cutaneous melanoma is one of the most aggressive human cancers due to its high invasiveness. Germline mutations in high-risk melanoma susceptibility genes have been associated with development hereditary melanoma; however, most genetic culprits remain elusive. To unravel novel susceptibility genes for hereditary melanoma, we performed whole exome sequencing (WES) on eight patients with multiple primary melanomas, high number of nevi, and negative for high and intermediate-risk germline mutations. Thirteen new potentially pathogenic variants were identified after bioinformatics analysis and validation. CDH23, ARHGEF40, and BRD9 were identified as the most promising susceptibility genes in hereditary melanoma. In silico analysis of CDH23 and ARHGEF40 variants provided clues for altered protein structure and function associated with the identified mutations. Then, we also evaluated the clinical value of CDH23, ARHGEF40, and BRD9 expression in sporadic melanoma by using the TCGA dataset (n = 461). No differences were observed in BRD9 expression between melanoma and normal skin samples, nor with melanoma stage, whereas ARHGEF40 was found overexpressed, and CDH23 was downregulated and its loss was associated with worse survival. Altogether, these results reveal three novel genes with clinical relevance in hereditary and sporadic melanoma."	"Association Analysis of Candidate Gene Polymorphisms and Audiometric Measures of Noise-Induced Hearing Loss in Young Musicians. This study aimed to investigate the association between candidate genetic variants and audiometric measures of noise-induced hearing loss (NIHL) in young musicians. The study analyzed a database by Phillips et al. (Feasibility of a bilateral 4000-6000 Hz notch as a phenotype for genetic association analysis. Int J Audiol 2015;54:645-52.) which included behavioral hearing thresholds, distortion-product otoacoustic emissions (DPOAE), tympanometric, and genetic data of 166 participants meeting the inclusion criteria. Nineteen single nucleotide polymorphisms (SNPs) in 13 cochlear genes previously associated with NIHL in factory workers were included in the present investigation. The average hearing threshold at 3000 and 4000 Hz (AHT) and average DPOAE signal to noise ratio (DPOAE SNR) in both ears were calculated. The regression analyses showed that two SNPs- one in KCNE1 (rs2070358) and the other in CAT (rs12273124) revealed a statistically significant relationship with DPOAE SNR in both ears. Two SNPs in MYH14 and one in GJB4 revealed a significant association with DPOAE SNR in the left ear. Two SNPs in HSP70, one in CDH23 and one in KCNJ10 showed significant association with DPOAE SNR in the right ear. None of the included SNPs showed association with AHT in both ears. A genetic variant in KCNE1 was associated with the strength of the cochlear amplifier as assessed by DPOAE SNR. Musicians carrying causal genetic variants to NIHL might exhibit changes in their auditory functions early in the lifespan even when most subjects had their hearing thresholds within normal limits. These participants are likely to show the clinical manifestation of NIHL in the future if no preventive measures are applied."	"Genetic testing has the potential to impact hearing preservation following cochlear implantation. Background: Recent advances in less-invasive surgery and electrode design allow for a high degree of hearing preservation (HP) after cochlear implantation (CI), although residual hearing still deteriorates in some patients. To date, the factors predictive of preserving residual hearing remain a controversial topic.Objective: The aim of this study was to investigate the predictive factors, including the etiology of hearing loss (HL) as a patient-related factor, influencing residual HP after CI.Methods: Forty-four patients (50 ears, 41 families) with residual acoustic hearing who underwent CI were included. Auditory thresholds before and at 6 months after initial activation were measured. Genetic testing was performed to identify the responsible genes for HL.Results: We identified the cause of HL in 21 families (51.2%). HP was marginally correlated with age at implantation, while it was independent of pre-operative low-frequency hearing thresholds, cochlear duct length, and electrode length. We found that patients who had pathogenic variants in the CDH23, MYO7A, or MYO15A gene showed statistically better HP scores compared with patients with HL due to other causes (p = .002).Conclusions: Identification of the etiology of HL using genetic testing is likely to facilitate the prediction of HP after implant surgery."	"In silico analysis of a novel causative mutation in Cadherin23 gene identified in an Omani family with hearing loss. Hereditary hearing loss is a heterogeneous group of complex disorders with an overall incidence of one in every 500 newborns presented as syndromic and non-syndromic forms. Cadherin-related 23 (CDH23) is one of the listed deafness causative genes. It is found to be expressed in the stereocilia of hair cells and in the retina photoreceptor cells. Defective CDH23 have been associated mostly with prelingual severe-to-profound sensorineural hearing loss (SNHL) in either syndromic (USH1D) or non-syndromic SNHL (DFNB12) deafness. The purpose of this study was to identify causative mutations in an Omani family diagnosed with severe-profound sensorineural hearing loss by whole exome sequencing technique and analyzing the detected variant in silico for pathogenicity using several in silico mutation prediction software. A novel homozygous missense variant, c.A7436C (p. D2479A), in exon 53 of CDH23 was detected in the family while the control samples were all negative for the detected variant. In silico mutation prediction analysis showed the novel substituted D2479A to be deleterious and protein destabilizing mutation at a conserved site on CDH23 protein. In silico mutation prediction analysis might be used as a useful molecular diagnostic tool benefiting both genetic counseling and mutation verification. The aspartic acid 2479 alanine missense substitution might be the main disease-causing mutation that damages CDH23 function and could be used as a genetic hearing loss marker for this particular Omani family."	"c.753A&gt;G genome editing of a Cdh23<sup>ahl</sup> allele delays age-related hearing loss and degeneration of cochlear hair cells in C57BL/6J mice. C57BL/6J mice have long been studied as a model of age-related hearing loss (ARHL). In C57BL/6J mice, ARHL begins in the high-frequency range at 3 months of age and spreads toward low frequencies by 10 months of age. We previously confirmed that c.753A&gt;G genome editing of an ahl allele (c.753A) in the cadherin 23 gene (Cdh23) suppressed the onset of ARHL until 12 months of age. We further investigated the hearing phenotypes of the original and genome-edited C57BL/6J-Cdh23<sup>+/+</sup> (c.753G/G) mice until 24 months of age. The hearing tests revealed that most of the C57BL/6J mice maintained good hearing levels until 14 months of age following genome editing of a Cdh23<sup>ahl</sup> allele. However, the hearing levels of the C57BL/6J-Cdh23<sup>+/+</sup> mice gradually declined, and severe ARHL developed with increasing age. ARHL in the C57BL/6J mice was correlated with degeneration of the stereocilia in cochlear hair cells. The stereocilia degeneration was rescued in the C57BL/6J-Cdh23<sup>+/+</sup> mice at 12 months of age, but the stereocilia bundles exhibited abnormal phenotypes similar to those of the original C57BL/6J mice at more advanced ages. Therefore, genome editing of Cdh23<sup>ahl</sup> did not completely suppress ARHL in C57BL/6J mice. We also compared the hearing levels of C57BL/6J-Cdh23<sup>+/+</sup> mice with those of C3H/HeN and MSM/Ms mice, which carry the Cdh23<sup>+</sup> allele. The severity and onset patterns of ARHL in the C57BL/6J-Cdh23<sup>+/+</sup> mice differed from those observed in other Cdh23<sup>+/+</sup> mice. Therefore, we hypothesize that other susceptible and/or resistant alleles of ARHL exist in the genetic backgrounds of these mice."	"Simultaneous expression of two pathogenic genes in four Chinese patients affected with inherited retinal dystrophy. To describe the complex, overlapping phenotype of four Chinese patients with inherited retinal dystrophies (IRDs) who harbored two pathogenic genes simultaneously. This retrospective study included 4 patients affected with IRDs. Medical and ophthalmic histories were obtained, and clinical examinations were performed. A specific Hereditary Eye Disease Enrichment Panel (HEDEP) based on exome capture technology was used for genetic screening. Four patients were identified to harbor disease-causing variants in two different genes. Patient retinitis pigmentosa (RP) 01-II:1 exhibited both classical ABCA4-induced Stargardt disease (STGD) 1 and USH2A-associated RP, patient RP02-III:2 exhibited both classical ABCA4-induced STGD1 and CDH23-associated RP, patient RP03-II:1 exhibited both USH2A-induced autosomal recessive retinitis pigmentosa (arRP) syndrome and SNRNP200-induced autosomal dominant retinitis pigmentosa (adRP), and patient RP04-II:2 exhibited USH2A-induced arRP syndrome and EYS-induced arRP at the same time. Our study demonstrates that genotype-phenotype correlations and comprehensive genetic screening is crucial for diagnosing IRDs and helping family planning for patients suffering from the disease."	"Clinical and genetic study of 12 Chinese Han families with nonsyndromic deafness. Nonsyndromic hearing loss is clinically and genetically heterogeneous. In this study, we characterized the clinical features of 12 Chinese Han deaf families in which mutations in common deafness genes GJB2, SLC26A4, and MT-RNR1 were excluded. Targeted next-generation sequencing of 147 known deafness genes was performed in probands of 10 families, while whole-exome sequencing was applied in those of the rest two. Pathogenic mutations in a total of 11 rare deafness genes, OTOF, CDH23, PCDH15, PDZD7, ADGRV1, KARS, OTOG, GRXCR2, MYO6, GRHL2, and POU3F4, were identified in all 12 probands, with 16 mutations being novel. Intrafamilial cosegregation of the mutations and the deafness phenotype were confirmed by Sanger sequencing. Our results expanded the mutation spectrum and genotype-phenotype correlation of nonsyndromic hearing loss in Chinese Hans and also emphasized the importance of combining both next-generation sequencing and detailed auditory evaluation to achieve a more accurate diagnosis for nonsyndromic hearing loss."	"Role of melatonin in prevention of age-related hearing loss. Age-related hearing loss (ARHL) is a consequence of aging of the auditory system. The best known mechanism of cell death in ARHL is apoptosis due to increased production of reactive oxygen species. In this context, it is hypothesized that melatonin, owing to its high antioxidant potential and its action in the mitochondria, helps prevent or delay outer hair cell dysfunction (HCD). To evaluate the effect of melatonin on the prevention of HCD dysfunction in the ARHL process in a susceptible murine C57BL/6J model. C57BL/6J animals were divided into two groups: control (CG) and melatonin (MG). The CG received a saline and ethanol solution and the MG, melatonin (10 mg/kg/day). The solutions were offered daily (50 μl) orally over a 10-month period. Distortion Product Otoacoustic Emissions (DPOAE) measurements were conducted once a month. There was a decrease in DPOAE values in both groups over time and a differentiation between them from the 10th month of life onwards. At 10 months, the MG maintained higher DPOAE values than the CG at all frequencies tested. The use of melatonin has otoprotective effects on HCD in the ARHL process in the C57BL/6J model."	"The lhfpl5 Ohnologs lhfpl5a and lhfpl5b Are Required for Mechanotransduction in Distinct Populations of Sensory Hair Cells in Zebrafish. Hair cells sense and transmit auditory, vestibular, and hydrodynamic information by converting mechanical stimuli into electrical signals. This process of mechano-electrical transduction (MET) requires a mechanically gated channel localized in the apical stereocilia of hair cells. In mice, lipoma HMGIC fusion partner-like 5 (LHFPL5) acts as an auxiliary subunit of the MET channel whose primary role is to correctly localize PCDH15 and TMC1 to the mechanotransduction complex. Zebrafish have two lhfpl5 genes (lhfpl5a and lhfpl5b), but their individual contributions to MET channel assembly and function have not been analyzed. Here we show that the zebrafish lhfpl5 genes are expressed in discrete populations of hair cells: lhfpl5a expression is restricted to auditory and vestibular hair cells in the inner ear, while lhfpl5b expression is specific to hair cells of the lateral line organ. Consequently, lhfpl5a mutants exhibit defects in auditory and vestibular function, while disruption of lhfpl5b affects hair cells only in the lateral line neuromasts. In contrast to previous reports in mice, localization of Tmc1 does not depend upon Lhfpl5 function in either the inner ear or lateral line organ. In both lhfpl5a and lhfpl5b mutants, GFP-tagged Tmc1 and Tmc2b proteins still localize to the stereocilia of hair cells. Using a stably integrated GFP-Lhfpl5a transgene, we show that the tip link cadherins Pcdh15a and Cdh23, along with the Myo7aa motor protein, are required for correct Lhfpl5a localization at the tips of stereocilia. Our work corroborates the evolutionarily conserved co-dependence between Lhfpl5 and Pcdh15, but also reveals novel requirements for Cdh23 and Myo7aa to correctly localize Lhfpl5a. In addition, our data suggest that targeting of Tmc1 and Tmc2b proteins to stereocilia in zebrafish hair cells occurs independently of Lhfpl5 proteins."	"Molecular epidemiology of Chinese Han deaf patients with bi-allelic and mono-allelic GJB2 mutations. Recessive mutations in GJB2 is the most common cause of genetic hearing loss worldwide. The aim of this study is to determine the spectrum and frequency of GJB2 variants in Chinese Han deaf patients and to investigate the underlying causative genes in patients with mono-allelic GJB2 mutations. We analyzed the mutation screening results of GJB2 in 1852 Chinese Han probands with apparently autosomal-recessive hearing loss in our laboratory. Targeted next-generation sequencing of 139 known deafness-related genes were performed in 44 probands with mono-allelic GJB2 mutations. Bi-allelic GJB2 mutations was identified in 25.65% of patients, in which the c.235delC (p.L79Cfs*3) mutation is the most frequent cause for both severe-to-profound (84.93%) and mild-to-moderate hearing loss (54.05%), while the c.109G &gt; A (p.V37I) mutation is another frequent cause for mild-to-moderate hearing loss (40.54%). In 3.89% of patients only one mutant allele can be identified in GJB2. Targeted next generation sequencing in 44 such probands revealed digenic heterozygous mutations in GJB2/GJB6 and GJB2/GJB3 as the likely pathogenic mechanism in three probands. In 13 probands, on the other hand, pathogenic mutations in other deafness-associated genes (STRC, EYA1, MITF, PCDH15, USH2A, MYO15A, CDH23, OTOF, SLC26A4, SMPX, and TIMM8A) can be identified as the independent genetic cause, suggesting that the mono-allelic GJB2 mutations in those probands is likely co-incidental. Our results demonstrated that GJB2 should be a primary target for mutation screening in Chinese Han deaf patients, and those with mono-allelic GJB2 mutations should be further screened by next generation sequencing."	"Generation of a ChAT<sup>Cre</sup> mouse line without the early onset hearing loss typical of the C57BL/6J strain. The development of knockin mice with Cre recombinase expressed under the control of the promoter for choline acetyltransferase (ChAT) has allowed experimental manipulation of cholinergic circuits. However, currently available ChAT<sup>Cre</sup> mouse lines are on the C57BL/6J strain background, which shows early onset age-related hearing loss attributed to the Cdh23<sup>753A</sup> mutation (a.k.a., the ahl mutation). To develop ChAT<sup>Cre</sup> mice without accelerated hearing loss, we backcrossed ChAT<sup>IRES-Cre</sup> mice with CBA/CaJ mice that have normal hearing. We used genotyping to obtain mice homozygous for ChAT<sup>IRES-Cre</sup> and the wild-type allele at the Cdh23 locus (ChAT<sup>Cre,Cdh23WT</sup>). In the new line, auditory brainstem response thresholds were ∼20 dB lower than those in 9 month old ChAT<sup>IRES-Cre</sup> mice at all frequencies tested (4-31.5 kHz). These thresholds were stable throughout the period of testing (3-12 months of age). We then bred ChAT<sup>Cre,Cdh23WT</sup> animals with Ai14 reporter mice to confirm the expression pattern of ChAT<sup>Cre</sup>. In these mice, tdTomato-labeled cells were observed in all brainstem regions known to contain cholinergic cells. We then stained the tissue with a neuron-specific marker, NeuN, to determine whether Cre expression was limited to neurons. Across several brainstem nuclei (pontomesencephalic tegmentum, motor trigeminal and facial nuclei), 100% of the tdTomato-labeled cells were double-labeled with anti-NeuN (n = 1896 cells), indicating Cre-recombinase was limited to neurons. Almost all of these cells (1867/1896 = 98.5%) also stained with antibodies against ChAT, indicating that reporter label was expressed almost exclusively in cholinergic neurons. Finally, an average 88.7% of the ChAT+ cells in these nuclei were labeled with tdTomato, indicating that the Cre is expressed in a large proportion of the cholinergic cells in these nuclei. We conclude that the backcrossed ChAT<sup>Cre,Cdh23WT</sup> mouse line has normal hearing and expresses Cre recombinase almost exclusively in cholinergic neurons. This ChAT<sup>Cre,Cdh23WT</sup> mouse line may provide an opportunity to manipulate cholinergic circuits without the confound of accelerated hearing loss associated with the C57BL/6J background. Furthermore, comparison with lines that do show early hearing loss may provide insight into possible cholinergic roles in age-related hearing loss."	"A Novel Heterozygous Missense Variant (c.667G&gt;T;p.Gly223Cys) in USH1C That Interferes With Cadherin-Related 23 and Harmonin Interaction Causes Autosomal Dominant Nonsyndromic Hearing Loss. Pathogenic variants of USH1C, encoding a PDZ-domain-containing protein called harmonin, have been known to cause autosomal recessive syndromic or nonsyndromic hearing loss (NSHL). We identified a causative gene in a large Korean family with NSHL showing a typical pattern of autosomal dominant (AD) inheritance. Exome sequencing was performed for five affected and three unaffected individuals in this family. Following identification of a candidate gene variant, segregation analysis and functional studies, including circular dichroism and biolayer interferometry experiments, were performed. A novel USH1C heterozygous missense variant (c.667G&gt;T;p.Gly223Cys) was shown to segregate with the NSHL phenotype in this family. This variant affects an amino acid residue located in the highly conserved carboxylate-binding loop of the harmonin PDZ2 domain and is predicted to disturb the interaction with cadherin-related 23 (cdh23). The affinity of the variant PDZ2 domain for a biotinylated synthetic peptide containing the PDZ-binding motif of cdh23 was approximately 16-fold lower than that of the wild-type PDZ2 domain and that this inaccessibility of the binding site was caused by a conformational change in the variant PDZ2 domain. A heterozygous variant of USH1C that interferes with the interaction between cdh23 and harmonin causes novel AD-NSHL."	"Brief Report of Variants Detected in Hereditary Hearing Loss Cases in Iran over a 3-Year Period. Diagnosis of hereditary hearing loss (HHL) as a heterogeneous disorder is very important especially in countries with high rates of consanguinity where the autosomal recessive pattern of inheritance is prevalent. Techniques such as next-generation sequencing, a comprehensive genetic test using targeted genomic enrichment and massively parallel sequencing (TGE + MPS), have made the diagnosis more cost-effective. The aim of this study was to determine HHL variants with comprehensive genetic testing in our country. Fifty GJB2 negative individuals with HHL were referred to the Kariminejad-Najmabadi Pathology and Genetics Center, Tehran, one of the reference diagnostic genetic laboratories in Iran, during a 3-year period between 2014 and 2017. They were screened with the OtoSCOPE test, the targeted genomic enrichment and massively parallel sequencing (TGE + MPS) platform after a detailed history had been taken along with clinical evaluation. Among 32 out of 50 GJB2 negative patients (64%), 34 known pathogenic and novel variants were detected of which 16 (47%) were novel, identified in 10 genes of which the most prevalent were CDH23, MYO7A and MYO15A. These results provide a foundation from which to make appropriate recommendations for the use of comprehensive genetic testing in the evaluation of Iranian patients with hereditary hearing loss."	"Insights into pituitary tumorigenesis: from Sanger sequencing to next-generation sequencing and beyond. Introduction: This review explores insights provided by next-generation sequencing (NGS) of pituitary tumors and the clinical implications.Areas covered: Although syndromic forms account for just 5% of pituitary tumours, past Sanger sequencing studies pragmatically focused on them. These studies identified mutations in MEN1, CDKN1B, PRKAR1A, GNAS and SDHx causing Multiple Endocrine Neoplasia-1 (MEN1), MEN4, Carney Complex-1, McCune Albright Syndrome and 3P association syndromes, respectively. Furthermore, linkage analysis of single-nucleotide polymorphisms identified AIP mutations in 20% with familial isolated pituitary adenomas (FIPA). NGS has enabled further investigation of sporadic tumours. Thus, mutations of USP8 and CABLES1 were identified in corticotrophinomas, BRAF in papillary craniopharyngiomas and CTNNB1 in adamantinomatous craniopharyngiomas. NGS also revealed that pituitary tumours occur in the DICER1 syndrome, due to DICER1 mutations, and CDH23 mutations occur in FIPA. These discoveries revealed novel therapeutic targets and studies are underway of BRAF inhibitors for papillary craniopharyngiomas, and EGFR and USP8 inhibitors for corticotrophinomas.Expert opinion: It has become apparent that single-nucleotide variants and small insertion/deletion DNA mutations cannot explain all pituitary tumorigenesis. Integrated and improved analyses including whole-genome sequencing, copy number, and structural variation analyses, RNA sequencing and epigenomic analyses, with improved genomic technologies, are likely to further define the genomic landscape."	"A novel splice-site variant in CDH23 in a patient with Usher syndrome type 1. Background: Gene editing has shown huge potential in correcting aberrant splicing and Cas13 has been identified as being particularly suitable for targeting RNA. It has therefore become increasingly important to highlight new splice site mutations that may be correctable, particularly in genes that are too large to be encoded by AAV vectors. About 20% of Usher Type 1 cases are caused by mutations in CDH23.Purpose: To report a novel splice site mutation of CDH23 associated with Usher Type 1D.Materials and Methods: Case report.Results: A 35-year-old Caucasian female who is congenitally deaf with vestibular dysfunction presented with visual acuity of 6/12 in both eyes. Fundus examination revealed findings typical of retinitis pigmentosa with foveal preservation of photoreceptor layer. Next generation sequencing analysis revealed a novel homozygous variant, c.9319 + 1G&gt;T in CDH23 consistent with the diagnosis of Usher Syndrome Type 1D. The c.9319 + 1G&gt;T variant is predicted to affect splicing at the exon 65/intron 65 boundary, which highly likely leads to complete skipping of exon 65.Conclusions: We describe a case of a typical Usher Syndrome Type 1D caused by a novel splice site variant in CDH23. Currently there are no treatments for CDH23 related retinal degeneration, partly because the cDNA size of 10kb is too large for AAV vector gene augmentation therapy. Alternative strategies include CRISPR-Cas9 adenine base editors and RNA editing with CRISPR-Cas13. Single-nucleotide editing represents a promising approach for targeting this variant in CDH23 to restore the wildtype splice donor site at this position."	"Linkage analysis of hearing impairment in families of Bannu Distric. To link congenital hearing loss with known loci to establish a platform for future research. The cross-sectional study was conducted from February 2016 to March 2017 in Bannu, Khyber Pakhtunkhwa, Pakistan, and comprised families with Pashtun ethnicity having at least 2 individuals suffering from congenital hearing loss. Deoxyribonucleic acid from whole blood samples was extracted by salting-out method. Amplification was done through touchdown polymerase chain reaction to see any possible linkage to already reported deafness loci. Linkage analysis was carried out using microsatellite markers for each locus. Genotyping of the samples was done and haplotypes were accordingly generated to either include or exclude the linked / unlinked regions. Of the 4 families, family PKDF 1620 showed linkage with DFNB12/CDH23 (D10S1432, D10S606, and D10S1694) and family PKDF 1625 had linkage with DFNB3/MYO15A (D17S2196, D17S2207 and D17S2206). Families PKDF1623 and PKDF1624 showed no linkage with any of the prevalent reported loci in Pakistan . Linkage to DFNB12 and MYO 15 showed heterogeneity of congenital deafness."	"Clinical utility of next-generation sequencing in the aetiological diagnosis of sensorineural hearing loss in a Childhood Hearing Loss Unit. Sensorineural hearing loss (SNL) is the most prevalent sensory deficit in our environment. Next generation genomic sequencing (NGS) enables an aetiological diagnosis in a high percentage of patients. Our pilot study shows the results of the systematic application of NGS in a Childhood Hearing Loss Unit, as well as its implications for the clinical management of patients and their families. We included 27 patients diagnosed with SNL between 2014 and 2017, in which an environmental cause was ruled out. The genetic test consisted of a panel of genes analyzed by NGS (OTOgenicsTM panel). This panel has been designed to include genes associated with sensorineural or mixed hearing loss, early onset or late, syndromic and non-syndromic, regardless of their inheritance pattern. A genetic diagnosis was obtained in 56% (15/27) of the patients (62% in the case of bilateral SNL). Of the patients, 5/27 (19%) presented pathogenic variants in the GJB2 gene and the rest pathogenic and / or probably pathogenic variants in other genes associated with isolated SNL (PR2X2, TECTA and STRC), with syndromic SNL (CHD7, GATA3, COL4A5, MITF and SOX10) or with syndromic and non-syndromic SNL (BSND, ACTG1 and CDH23). The aetiological diagnosis of SNL is a challenge in clinical practice. Our series demonstrates that it is possible to implement genetic diagnosis in the care routine and that this information has prognostic and therapeutic implications."	"A study combining whole-exome sequencing and structural neuroimaging analysis for major depressive disorder. Genetic variations associated with major depressive disorder (MDD) may affect the structural aspects of neural networks mediated by the molecular pathways involved in neuronal survival and synaptic plasticity. However, few studies have applied a novel approach such as whole-exome sequencing (WES) analysis to investigate the genetic contribution to the neurostructural changes in MDD. In the first part of the study, we investigated rare variants of selected genes from previous WES studies using a WES analysis in 184 patients with MDD and 82 healthy controls. In the second part of the study, we explored the association between the common genetic variants from the WES analysis and cortical thickness in 91 patients with MDD and 75 healthy controls. The gray-matter thickness of each cortical region was measured using FreeSurfer. We identified recurrent non-silent variants in 24 MDD-related genes including FASN, MYH13, UNC13D, LILRA1, CACNA1B, TRIO, HOMER3, and BCAR3, and observed eleven recurrently altered copy number alternations where a gain on 15q11.2 and losses on 7q34 and 15q11.1-q11.2 in MDD genomes. We also found that rs11592462 in CDH23, a calcium-dependent cell-adhesion molecule encoding gene, was significantly associated with thinning in the right anterior cingulate cortex. The small sample size may lead our findings to be underpowered regarding rare variants. The present study identified that non-synonymous rare variants were significantly associated with risk of MDD and found that genetic contributions to the development of MDD may be mediated by alterations in cortical thickness of emotion-processing neural circuits."	"&quot;Passenger gene&quot; problem in transgenic C57BL/6 mice used in hearing research. Despite recent advances in genome engineering technologies, traditional transgenic mice generated on a mixed genetic background of C57BL/6 and 129/Sv mice remain widely used in age-related hearing loss (AHL) research, since C57BL/6 mice exhibit early onset and progression of AHL due to a mutation in cadherin 23-encoding gene (Cdh23<sup>753G&gt;A</sup>). In these transgenic mice, backcrossing for more than 10 generations results in replacement of the donor background (129/Sv) with that of the recipient (C57BL/6), so that approximately 99.9% of genes are C57BL/6-derived and are considered congenic. However, the regions flanking the target gene may still be of 129/Sv origin, creating a so-called &quot;passenger gene problem&quot; where the normal 129/Sv-derived Cdh23<sup>753G</sup> allele can travel with the target gene. In this study, we investigated the role of fatty acid-binding protein 7 (Fabp7), which is important for cellular uptake and intracellular trafficking of fatty acids in the cochlea, using traditional Fabp7 knockout (KO) mice on the C57BL/6 background. We found that Fabp7 KO mice showed delayed AHL progression and milder cochlear degeneration. However, the genotype of the Cdh23 region flanking Fabp7 was still that of 129/Sv origin (Cdh23<sup>753GG</sup>). Our findings reveal the potential risk of contamination for traditional transgenic mice generated on the C57BL/6 background."	"Aberrant Splicing Events Associated to CDH23 Noncanonical Splice Site Mutations in a Proband with Atypical Usher Syndrome 1. The aim of this study was the genetic diagnosis by next generation sequencing (NGS) of a patient diagnosed with Usher syndrome type 2 and the functional evaluation of the identified genetic variants to establish a phenotype-genotype correlation. Whole exome sequencing (WES) analysis identified two heterozygous intronic variants in CDH23, a gene responsible of Usher syndrome type 1. Evaluation of the putative splicing effects was performed in vivo, in whole blood samples, and in vitro, by transfection of midigene constructs in HEK293T cells. Two intronic variants were identified in intron 45 of CDH23-one novel, c.6050-15G&gt;A, and the other, c.6050-9G&gt;A, already reported as a noncanonical splice site (NCSS) mutation-with partial functional characterization. In vivo and in vitro analyses showed aberrant transcripts by the addition of 13 and 7 nucleotides to exon 46, respectively. Transcript degradation by nonsense mediated decay (NMD) in blood cells could only be prevented by cycloheximide treatment. Midigene constructs showed that the two variants contributed to exon skipping and generated aberrantly spliced transcripts. A combination of in vivo and in vitro assays provided a comprehensive view of the physiological effects of NCSS variants, which in this case led to a clinical reassignment of the proband as affected with atypical USH1 syndrome."	"Whole-exome sequencing identifies rare pathogenic and candidate variants in sporadic Chinese Han deaf patients. Genetic causes of hearing loss are highly heterogeneous and often ethnically specific. In recent years, a variety of next-generation sequencing (NGS) panels have been developed to target deafness-causative genes. Whole-exome sequencing (WES), on the other hand, was rarely used for genetic testing for deafness. In this study, we performed WES in 38 sporadic Chinese Han deaf patients who have been pre-excluded for mutations in common deafness genes GJB2, SLC26A4 and MT-RNR1. Non-synonymous variants have been filtered based on their minor allele frequencies in public databases and ethnically matched controls. Bi-allelic pathogenic mutations in eight deafness genes, OTOF, TRIOBP, ESPN, HARS2, CDH23, MYO7A, USH1C and TJP2, were identified in 10 patients, with 17 mutations identified in this study not being associated with deafness previously. For the rest 28 patients, possibly bi-allelic rare non-synonymous variants in an averaged 4.7 genes per patient were identified as candidate pathogenic causes for future analysis. Our study showed that WES may provide a unified platform for genetic testing of deafness and enables retro-analyzing when new causative genes are revealed."	"Identification of a novel CDH23 gene variant associated with non-syndromic progressive hearing loss in a Chinese family: Individualized hearing rehabilitation guided by genetic diagnosis. NA"	"Blood Leukocyte DNA Methylation Predicts Risk of Future Myocardial Infarction and Coronary Heart Disease. DNA methylation is implicated in coronary heart disease (CHD), but current evidence is based on small, cross-sectional studies. We examined blood DNA methylation in relation to incident CHD across multiple prospective cohorts. Nine population-based cohorts from the United States and Europe profiled epigenome-wide blood leukocyte DNA methylation using the Illumina Infinium 450k microarray, and prospectively ascertained CHD events including coronary insufficiency/unstable angina, recognized myocardial infarction, coronary revascularization, and coronary death. Cohorts conducted race-specific analyses adjusted for age, sex, smoking, education, body mass index, blood cell type proportions, and technical variables. We conducted fixed-effect meta-analyses across cohorts. Among 11 461 individuals (mean age 64 years, 67% women, 35% African American) free of CHD at baseline, 1895 developed CHD during a mean follow-up of 11.2 years. Methylation levels at 52 CpG (cytosine-phosphate-guanine) sites were associated with incident CHD or myocardial infarction (false discovery rate&lt;0.05). These CpGs map to genes with key roles in calcium regulation (ATP2B2, CASR, GUCA1B, HPCAL1), and genes identified in genome- and epigenome-wide studies of serum calcium (CASR), serum calcium-related risk of CHD (CASR), coronary artery calcified plaque (PTPRN2), and kidney function (CDH23, HPCAL1), among others. Mendelian randomization analyses supported a causal effect of DNA methylation on incident CHD; these CpGs map to active regulatory regions proximal to long non-coding RNA transcripts. Methylation of blood-derived DNA is associated with risk of future CHD across diverse populations and may serve as an informative tool for gaining further insight on the development of CHD."	"Broken force dispersal network in tip-links by the mutations at the Ca<sup>2+</sup>-binding residues induces hearing-loss. Tip-link as force-sensor in hearing conveys the mechanical force originating from sound to ion-channels while maintaining the integrity of the entire sensory assembly in the inner ear. This delicate balance between structure and function of tip-links is regulated by Ca<sup>2+</sup>-ions present in endolymph. Mutations at the Ca<sup>2+</sup>-binding sites of tip-links often lead to congenital deafness, sometimes syndromic defects impairing vision along with hearing. Although such mutations are already identified, it is still not clear how the mutants alter the structure-function properties of the force-sensors associated with diseases. With an aim to decipher the differences in force-conveying properties of the force-sensors in molecular details, we identified the conformational variability of mutant and wild-type tip-links at the single-molecule level using FRET at the endolymphatic Ca<sup>2+</sup> concentrations and subsequently measured the force-responsive behavior using single-molecule force spectroscopy with an Atomic Force Microscope (AFM). AFM allowed us to mimic the high and wide range of force ramps (10<sup>3</sup>-10<sup>6</sup> pN s<sup>-1</sup>) as experienced in the inner ear. We performed in silico network analysis to learn that alterations in the conformations of the mutants interrupt the natural force-propagation paths through the sensors and make the mutant tip-links vulnerable to input forces from sound stimuli. We also demonstrated that a Ca<sup>2+</sup> rich environment can restore the force-response of the mutant tip-links which may eventually facilitate the designing of better therapeutic strategies to the hearing loss."	"Identification of novel cadherin 23 variants in a Chinese family with hearing loss. The aim of the present study was to elucidate the role of the non‑syndromic autosomal recessive deafness 12 allelic variant of cadherin 23 (CDH23) in Chinese patients with non‑syndromic hearing loss. The present study focused on a Chinese family with hearing loss in which there were two siblings with autosomal, recessive deafness, ranging from severe to profound hearing loss over all frequencies. DNA sequencing was used to assess the genetic factors in the disease etiology. The data revealed a compound heterozygous mutation of CDH23 in both patients. Genetic CDH23 variants are known to be responsible for non‑syndromic hearing loss, and CDH23 variants frequently occur in various populations, including Japanese and Republic of Korean. Results from the present study, indicated a significant contribution of CDH23 variants to the non‑syndromic hearing loss in Chinese patients."	"Mice heterozygous for the Cdh23/Ahl1 mutation show age-related deficits in auditory temporal processing. A mutation in the Cdh23 gene is implicated in both syndromic and nonsyndromic hearing loss in humans and age-related hearing loss in C57BL/6 mice. It is generally assumed that human patients (as well as mouse models) only have a hearing loss phenotype if the mutation is homozygous. However, a major complaint for patients with a hearing disability is a reduced speech intelligibility that may be related to temporal processing deficits rather than just elevated thresholds. In this study, we used the amplitude modulation following response (AMFR) to test whether mice heterozygous for Cdh23<sup>735A &gt; G</sup> have an auditory phenotype that includes temporal processing deficits. The hearing of mice heterozygous for the Cdh23<sup>735A &gt; G</sup> mutation was compared with age-matched mice homozygous for either the mutation or the wild type in 3 cohorts of mice of both sexes at 2-3, 6, and 12 months of age. The AMFR technique was used to generate objective hearing thresholds for all mice across their range of hearing and to test their temporal processing. We found a genotype-dependent hearing loss in mice homozygous for the mutation starting at 5-11 weeks of age, an age when mice on the C57BL/6 background are often presumed to have normal hearing. The heterozygous animals retained normal hearing thresholds up to one year of age. Nevertheless, the heterozygous animals showed a decline in temporal processing abilities at one year of age that was independent of their hearing thresholds. These results suggest that mice heterozygous for the Cdh23 mutation do not have truly normal hearing."	"Genetic Screening of the Usher Syndrome in Cuba. Usher syndrome (USH) is a recessive inherited disease characterized by sensorineural hearing loss, retinitis pigmentosa, and sometimes, vestibular dysfunction. Although the molecular epidemiology of Usher syndrome has been well studied in Europe and United States, there is a lack of studies in other regions like Africa or Central and South America. We designed a NGS panel that included the 10 USH causative genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, ADGRV1, WHRN, and CLRN1), four USH associated genes (HARS, PDZD7, CEP250, and C2orf71), and the region comprising the deep-intronic c.7595-2144A&gt;G mutation in USH2A. NGS sequencing was performed in 11 USH patients from Cuba. All the cases were solved. We found the responsible mutations in the USH2A, ADGRV1, CDH23, PCDH15, and CLRN1 genes. Four mutations have not been previously reported. Two mutations are recurrent in this study: c.619C&gt;T (p.Arg207<sup>∗</sup>) in CLRN1, previously reported in two unrelated Spanish families of Basque origin, and c.4488G&gt;C (p.Gln1496His) in CDH23, first described in a large Cuban family. Additionally, c.4488G&gt;C has been reported two more times in the literature in two unrelated families of Spanish origin. Although the sample size is very small, it is tempting to speculate that the gene frequencies in Cuba are distinct from other populations mainly due to an &quot;island effect&quot; and genetic drift. The two recurrent mutations appear to be of Spanish origin. Further studies with a larger cohort are needed to elucidate the real genetic landscape of Usher syndrome in the Cuban population."	"Elasticity of individual protocadherin 15 molecules implicates tip links as the gating springs for hearing. Hair cells, the sensory receptors of the inner ear, respond to mechanical forces originating from sounds and accelerations. An essential feature of each hair cell is an array of filamentous tip links, consisting of the proteins protocadherin 15 (PCDH15) and cadherin 23 (CDH23), whose tension is thought to directly gate the cell's transduction channels. These links are considered far too stiff to represent the gating springs that convert hair bundle displacement into forces capable of opening the channels, and no mechanism has been suggested through which tip-link stiffness could be varied to accommodate hair cells of distinct frequency sensitivity in different receptor organs and animals. Consequently, the gating spring's identity and mechanism of operation remain central questions in sensory neuroscience. Using a high-precision optical trap, we show that an individual monomer of PCDH15 acts as an entropic spring that is much softer than its enthalpic stiffness alone would suggest. This low stiffness implies that the protein is a significant part of the gating spring that controls a hair cell's transduction channels. The tip link's entropic nature then allows for stiffness control through modulation of its tension. We find that a PCDH15 molecule is unstable under tension and exhibits a rich variety of reversible unfolding events that are augmented when the Ca<sup>2+</sup> concentration is reduced to physiological levels. Therefore, tip link tension and Ca<sup>2+</sup> concentration are likely parameters through which nature tunes a gating spring's mechanical properties."	"Screening of noise-induced hearing loss (NIHL)-associated SNPs and the assessment of its genetic susceptibility. The aim of this study was to screen for noise-induced hearing loss (NIHL)-associated single nucleotide polymorphisms (SNPs) and to construct genetic risk prediction models for NIHL in a Chinese population. Four hundred seventy-six subjects with NIHL and 476 matched controls were recruited from a cross-sectional survey on NIHL in China. A total of 83 candidate SNPs were genotyped using nanofluidic dynamic arrays on a Fluidigm platform. NIHL-associated SNPs were screened with a multiple logistic model, and a genetic risk model was constructed based on the genetic risk score (GRS). The results were validated using a prospective cohort population. Seven SNPs in the CDH23, PCDH15, EYA4, MYO1A, KCNMA1, and OTOG genes were significantly (P &lt; 0.05) associated with the risk of NIHL, whereas seven other SNPs were marginally (P &gt; 0.05 and P &lt; 0.1) associated with the risk of NIHL. A positive correlation was observed between GRS values and odds ratio (OR) for NIHL. Two SNPs, namely, rs212769 and rs7910544, were validated in the cohort study. Subjects with higher GRS (≧9) showed a higher risk of NIHL incidence with an OR of 2.00 (95% CI = 1.04, 3.86). Genetic susceptibility plays an important role in the incidence of NIHL. GRS values, which are based on NIHL-associated SNPs. GRS may be utilized in the evaluation of genetic risk for NIHL and in the determination of NIHL susceptibility."	"Novel deleterious mutation in MYO7A, TH and EVC2 in two Pakistani brothers with familial deafness. In Pakistan, 74% of consanguineous marriages are among the first cousins. Continuity of consanguineous marriages over generations increases the risk of recessive diseases such as deafness. The objective of this study was to investigate genetic origin of Pakistani deaf brothers with parents of consanguineous marriage. DNA was extracted from the blood through Qiagen kit. Paired-end sequencing library was prepared according to protocol of Illumina's TruSight Rapid Capture kit and TruSight Inherited Disease Panel. Library was normalized and used for Next Generation Sequencing through MiSeq. NGS data were analyzed using various bioinformatics tools. Both brothers were found to have novel deleterious mutation in MYO7A (c.2476G&gt;A) while the younger brother had additional novel deleterious mutation in TH (c.43C&gt;T) and EVC2 (c.2614C&gt;T) genes. It is concluded that in addition to novel mutations in MYO7A, TH and EVC2, the CDH23 and GJB2 can also be responsible for deafness in the family with consanguineous marriages."	"The prevalence of deafness-associated mutations in neonates: A meta-analysis of clinical trials. The causative genes associated with autosomal recessive non-syndromic hearing loss (ARNSHL) have been identified, in order of prevalence are GJB2, SLC26A4, MYO15A, OTOF, CDH23, and TMC1. To evaluate the prevalence of deafness-associated mutations in neonates and the clinical value of screening, we performed a meta-analysis of clinical trials. The main criteria used to select articles was that the studies were designed to detect deafness genetic mutations in Chinese's neonates, and the screening kits were designed to detect 9 or 20 sites in four deafness-causative genes. The combined effect of genetic screening was measured by the pooled prevalence of mutations with 95% confidence intervals (CIs). The Random Model was used to estimate the pooled prevalence of mutations. We included 18 studies (a total of 261766 neonates) from studies using 9-mutation screening kit, and 15 studies (a total of 131158 neonates) from studies using the 20-mutation screening kit to conduct meta-analysis. The Random Model was used to estimate the pooled prevalence of mutations due to large heterogeneity (9 sites: I<sup>2</sup> = 89.1%, P = 0.0000; 20 sites: I<sup>2</sup> = 97.3%, P = 0.0002). The pooled prevalence of mutations in 9 sites group was 0.043 (95%CI:0.039-0.047, Z = 21.49, P = 0.000)and 20 sites group was 0.047(95%CI:0.041-0.053, Z = 15.84, P = 0.000). The prevalence of deafness-associated mutations in neonates in China is 4.7%; Based on the current detection technology and deafness genetics knowledge, it may be more reasonable to offer 1494C &gt; T and 1555A &gt; G mutation screening to pregnant women. Decision makers should think about how to use the current deafness genetic screening to amplify the effectiveness of hearing screening."	"Novel compound heterozygous CDH23 variants in a patient with Usher syndrome type I. Usher syndrome type I (USH1) is characterized by congenital, bilateral, profound sensorineural hearing loss, vestibular areflexia, and adolescent-onset retinitis pigmentosa. Here, we report a 12-year-old female patient with typical USH1. Targeted panel sequencing revealed compound heterozygous variants of the Cadherin 23 (CDH23) gene, which confirmed the USH1 diagnosis. A novel NM_022124.5:c.130G&gt;A/p.(Glu44Lys) was identified, expanding the mutation spectrum of CDH23."	"Whole-exome sequencing identifies variants associated with structural MRI markers in patients with bipolar disorders. Bipolar disorder (BD) is one of the most heritable psychiatric disorders. A growing number of whole-exome sequencing (WES) studies for BD has been performed, however, no research has examined the association between single nucleotide variants (SNVs) from WES and structural magnetic resonance imaging (MRI) data. We sequenced whole-exomes in 53 patients with BD and 82 healthy control participants at an initial discovery stage and investigated the impacts of SNVs in risk genes from WES analysis on the cortical gray-matter thickness and integrity of white matter tracts and in the following stage. Cortical thickness and white matter integrity were investigated using the FreeSurfer and TRACULA (Tracts Constrained by UnderLying Anatomy). We identified 122 BD-related genes including KMT2C, AHNAK, CDH23, DCHS1, FRAS1, MACF1 and RYR3 and observed 27 recurrent copy number alteration regions including gain on 8p23.1 and loss on 15q11.1 - q11.2. Among them, single nucleotide polymorphism (SNP) rs4639425 in KMT2C gene, which regulates histone H3 lysine 4 (H3K4) methylation involved in chromatin remodeling, was associated with widespread alterations of white matter integrity including the cingulum, uncinate fasciculus, cortico-spinal tract, and superior longitudinal fasciculus. The small sample size of patients with BD in the genome data may cause our study to be underpowered when searching for putative rare mutations. This study first combined a WES approach and neuroimaging findings in psychiatric disorders. We postulate the rs4639425 may be associated with BD-related microstructural changes of white matter tracts."	"The strong propensity of Cadherin-23 for aggregation inhibits cell migration. Cadherin-23 (Cdh23), a long-chain non-classical cadherin, exhibits strong homophilic and heterophilic binding. The physiological relevance of strong heterophilic binding with protocadherin-15 at neuroepithelial tip links is well-studied. However, the role of Cdh23 homodimers in physiology is less understood, despite its widespread expression at the cell boundaries of various human and mouse tissues, including kidney, muscle, testes, and heart. Here, we performed immunofluorescence studies that revealed that Cdh23 is present as distinct puncta at the cell-cell boundaries of cancer cells. Analysis of patient data and quantitative estimation of Cdh23 in human tissues (normal and tumor) also indicated that Cdh23 is down-regulated via promoter methylation in lung adenocarcinoma (AD) and esophageal squamous cell carcinoma (SCC) cells; we also observed a clear inverse correlation between Cdh23 expression and cancer metastasis. Using HEK293T cells and four types of cancer cells differentially expressing Cdh23, we observed that cell migration was faster in cells with reduced levels of Cdh23 expression. The cell migration rate in cancer cells is further accelerated by the presence of excretory isoforms of Cdh23, which loosen its cell-adhesion ability by competitive binding. Overall, our data indicate the role of Cdh23 as a suppressor of cell migration."	"Characterization of the early pathology of cochlear stereocilia in four inbred mouse strains with progressive hearing loss. Inbred strains of mice offer promising models for understanding the genetic basis of age-related hearing loss (AHL). NOD/LtJ, A/J, DBA/2J and C57BL/6J mice are classical models of age-related hearing loss and exhibit early onset of pathology of AHL. This study was carried out to characterize the early pathology of cochlear stereocilia in the four mouse strains with age-related hearing loss. The structural features of stereocilia in NOD/LtJ, A/J, DBA/2J and C57BL/6J mice were observed by scanning electron microscopy (SEM) at age 2, 4, 6 or 8, and 10 or 12 weeks. Meanwhile, auditory-evoked brainstem response (ABR) and distortion product otoacoustic emission (DPOAE) amplitudes of the mice were measured at various intervals (3, 4, 6, 8, 10 and 12 weeks of age). The ABR thresholds in NOD/LtJ, A/J and DBA/2J mice increased with age from 3 to 12 weeks. DPOAE amplitudes in NOD/LtJ, A/J, DBA/2J mice were very low at 4 weeks and became negative at 8 weeks at f2 frequency of 17 672 Hz. In addition to the progressive hearing loss, the four mouse strains displayed early onset (at 2 weeks of age) and progressive degeneration of stereocilia in hair cells. Early degeneration of stereocilia contributes to the functional impairment of hair cells and hearing loss in NOD/LtJ, A/J, DBA/2J and C57BL/6J mice."	"The Prospects of Cadherin-23 as a Mediator of Homophilic Cell-Cell Adhesion. Cadherins (calcium-dependent adhesion proteins) constitute a family of cell surface proteins that mediate cell-cell adhesion and actively participate in tissue morphogenesis and in mediating tissue integrity. The ecto-domains of cadherins from opposing cell surfaces interact with each other to form the load-bearing trans-dimers and mechanically hold cells together. The &quot;classical&quot; cadherins and desmosomes that form separate groups in cadherin superfamily are mostly explored for their roles in cell-cell adhesion. However, majority of cadherins in cells belong to &quot;nonclassical&quot; group which is poorly explored in the context of their cell-binding properties. This review focuses on the role of &quot;nonclassical&quot; cadherin, cadherin-23, in cell-cell adhesion. Overall, this review highlights the need for further investigations on the role of &quot;nonclassical&quot; cadherin-23 in cell-cell adhesion."	"Hair-Bundle Links: Genetics as the Gateway to Function. Up to five distinct cell-surface specializations interconnect the stereocilia and the kinocilium of the mature hair bundle in some species: kinocilial links, tip links, top connectors, shaft connectors, and ankle links. In developing hair bundles, transient lateral links are prominent. Mutations in genes encoding proteins associated with these links cause Usher deafness/blindness syndrome or nonsyndromic (isolated) forms of human hereditary deafness, and mice with constitutive or conditional alleles of these genes have provided considerable insight into the molecular composition and function of the different links. We describe the structure of these links and review evidence showing CDH23 and PCDH15 are components of the tip, kinocilial, and transient-lateral links, that stereocilin (STRC) and protein tyrosine phosphatase (PTPRQ) are associated with top and shaft connectors, respectively, and that USH2A and ADGRV1 are associated with the ankle links. Whereas tip links are required for mechanoelectrical transduction, all link proteins play key roles in the normal development and/or the maintenance of hair bundle structure and function. Recent crystallographic and single-particle analyses of PCDH15 and CDH23 provide insight as to how the structure of tip link may contribute to the elastic element predicted to lie in series with the hair cell's mechanoelectrical transducer channel."	"Surgery-free video-oculography in mouse models: enabling quantitative and short-interval longitudinal assessment of vestibular function. Vestibulo-ocular reflex (VOR) responding to acceleration stimuli is originated from the vestibular apparatuses and thus widely used as an in vivo indicator of the vestibular function. We have developed a vestibular function testing (VFT) system that allows to evaluate VOR response with improved efficiency. The previously required surgical procedure has been avoided by using a newly designed animal-immobility setup. The efficacy of our VFT system was demonstrated on the mice with vestibular abnormalities caused by either genetic mutations (Lhfpl5<sup>-/-</sup> or Cdh23<sup>-/-</sup>) or applied vestibulotoxicant (3,3'-iminodipropionitrile, IDPN). Daily longitudinal inspection of the VOR response in the IDPN-administered mice gives the first VOR-based daily-progression profile of the vestibular impairment. The capability of VOR in quantifying the severity of toxicant-induced vestibular deficits has been also demonstrated. The acquired VOR-measurement results were validated against the corresponding behavioral-test results. Further validation against immunofluorescence microscopy was applied to the VOR data obtained from the IDPN-administered mice. We conclude that the improved efficiency of our surgery-free VFT system, firstly, enables the characterization of VOR temporal dynamics and quantification of vestibular-impairment severity that may reveal useful information in toxicological and/or pharmaceutical studies; and, secondly, confers our system promising potential to serve as a high-throughput screener for identifying genes and drugs that affect vestibular function."	"Targeted Mutation Analysis of the SLC26A4, MYO6, PJVK and CDH23 Genes in Iranian Patients with AR Nonsyndromic Hearing Loss. Hearing loss (HL) is the most prevalent sensory disorder. The over 100 genes implicated in autosomal recessive nonsyndromic hearing loss (ARNSHL) makes it difficult to analyze and determine the accurate genetic causes of hearing loss. We sought to de?ne the frequency of seven hearing loss-Causing causing genetic Variants in four genes in an Iranian population with hearing loss. One hundred ARNSHL patients with normal GJB2/GJB6 genes were included, and targeted mutations in SLC26A4, MYO6, PJVK and CDH23 genes were analyzed by ARMS-PCR. The negative and positive results were confirmed by the Sanger sequencing. We found only two mutations, one in MYO6 (c.554-1 G &gt; A) gene and another in PJVK (c.547C &gt; T). c.554-1G &gt; A and c.547C &gt; T mutations are responsible for 1% each of the Iranian ARNSHL patients. These genes are not a frequent cause of ARNSHL in an Iranian population."	"De novo and inherited loss-of-function variants of ATP2B2 are associated with rapidly progressive hearing impairment. ATP2B2 encodes the PMCA2 Ca<sup>2+</sup> pump that plays an important role in maintaining ion homeostasis in hair cells among others by extrusion of Ca<sup>2+</sup> from the stereocilia to the endolymph. Several mouse models have been described for this gene; mice heterozygous for loss-of-function defects display a rapidly progressive high-frequency hearing impairment. Up to now ATP2B2 has only been reported as a modifier, or in a digenic mechanism with CDH23 for hearing impairment in humans. Whole exome sequencing in hearing impaired index cases of Dutch and Polish origins revealed five novel heterozygous (predicted to be) loss-of-function variants of ATP2B2. Two variants, c.1963G&gt;T (p.Glu655*) and c.955delG (p.Ala319fs), occurred de novo. Three variants c.397+1G&gt;A (p.?), c.1998C&gt;A (p.Cys666*), and c.2329C&gt;T (p.Arg777*), were identified in families with an autosomal dominant inheritance pattern of hearing impairment. After normal newborn hearing screening, a rapidly progressive high-frequency hearing impairment was diagnosed at the age of about 3-6 years. Subjects had no balance complaints and vestibular testing did not yield abnormalities. There was no evidence for retrocochlear pathology or structural inner ear abnormalities. Although a digenic inheritance pattern of hearing impairment has been reported for heterozygous missense variants of ATP2B2 and CDH23, our findings indicate a monogenic cause of hearing impairment in cases with loss-of-function variants of ATP2B2."	"Genetics of Usher Syndrome: New Insights From a Meta-analysis. To describe the genetic and phenotypic spectrum of Usher syndrome after 6 years of studies by next-generation sequencing, and propose an up-to-date classification of Usher genes in patients with both visual and hearing impairments suggesting Usher syndrome, and in patients with seemingly isolated deafness. The systematic review and meta-analysis protocol was based on Cochrane and Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) guidelines. We performed 1) a meta-analysis of data from 11 next-generation sequencing studies in 684 patients with Usher syndrome; 2) a meta-analysis of data from 21 next-generation studies in 2,476 patients with seemingly isolated deafness, to assess the involvement of Usher genes in seemingly nonsyndromic hearing loss, and thus the proportion of patients at high risk of subsequent retinitis pigmentosa (RP); 3) a statistical analysis of differences between parts 1) and 2). In patients with both visual and hearing impairments, the biallelic disease-causing mutation rate was assessed for each Usher gene to propose a classification by frequency: USH2A: 50% (341/684) of patients, MYO7A: 21% (144/684), CDH23: 6% (39/684), ADGRV1: 5% (35/684), PCDH15: 3% (21/684), USH1C: 2% (17/684), CLRN1: 2% (14/684), USH1G: 1% (9/684), WHRN: 0.4% (3/684), PDZD7 0.1% (1/684), CIB2 (0/684). In patients with seemingly isolated sensorineural deafness, 7.5% had disease-causing mutations in Usher genes, and are therefore at high risk of developing RP. These new findings provide evidence that usherome dysfunction is the second cause of genetic sensorineural hearing loss after connexin dysfunction. These results promote generalization of early molecular screening for Usher syndrome in deaf children."	"Chemical chaperone 4-phenylbutyrate prevents hearing loss and cochlear hair cell death in Cdh23erl/erl mutant mice. We previously developed Cdh23 mutant mice (erl mice) as a model of hearing loss for otoprotective drug evaluation and showed that the erl mutation leads to hearing loss related to endoplasmic reticulum (ER) stress-induced cochlear hair cell apoptosis. Small molecular chemical chaperones, 4-phenylbutyrate (4PBA), targeting ER stress exert a neuroprotective effect. To evaluate whether 4PBA exerts an otoprotective effect, we intraperitoneally injected erl mice with 4PBA daily from postnatal age day 7 up to 12 weeks. Our results showed that treatment with 4PBA significantly alleviated hearing loss and suppressed hair cell death in erl mice. In addition, ER stress-related proteins were downregulated by 4PBA treatment. Our study showed that 4PBA exerts an otoprotective effect, which provides the potential to repurpose the drug for otoprotection."	"High-throughput sequencing for the molecular diagnosis of Usher syndrome reveals 42 novel mutations and consolidates CEP250 as Usher-like disease causative. Usher syndrome is a rare disorder causing retinitis pigmentosa, together with sensorineural hearing loss. Due to the phenotypic and genetic heterogeneity of this disease, the best method to screen the causative mutations is by high-throughput sequencing. In this study, we tested a semiconductor chip based sequencing approach with 77 unrelated patients, as a molecular diagnosis routine. In addition, Multiplex Ligation-dependent Probe Amplification and microarray-based Comparative Genomic Hybridization techniques were applied to detect large rearrangements, and minigene assays were performed to confirm the mRNA processing aberrations caused by splice-site mutations. The designed panel included all the USH causative genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, ADGRV1, WHRN and CLRN1) as well as four uncertainly associated genes (HARS, PDZD7, CEP250 and C2orf71). The outcome showed an overall mutation detection ratio of 82.8% and allowed the identification of 42 novel putatively pathogenic mutations. Furthermore, we detected two novel nonsense mutations in CEP250 in a patient with a disease mimicking Usher syndrome that associates visual impairment due to cone-rod dystrophy and progressive hearing loss. Therefore, this approach proved reliable results for the molecular diagnosis of the disease and also allowed the consolidation of the CEP250 gene as disease causative for an Usher-like phenotype."	"The p.P240L variant of CDH23 and the risk of nonsyndromic hearing loss: a meta-analysis. We conducted a meta-analysis assessing the association between the p.P240L (c.C719T) variant and the risk of nonsyndromic hearing loss (NSHL). Literatures that reported prevalence rates were identified using PubMed, EMBASE, OVID, Cochrane library, Web of Science, Chinese National Knowledge Infrastructure, Wanfang Databases for the period from inception to August 2017. Random and fixed effects models were used to generate pooled ORs and I<sup>2</sup> values. The heterogeneity assumption decided the effect model. A total of four relevant studies were included in the meta-analysis. The results of meta-analysis indicated that the p.P240L variant was correlated with the risk of NHSL in Asian populations (OR = 10.17, 95% CI = 2.74-37.82, P = 0.001). The T allele of p.P240L was associated with a 12-fold higher risk of NSHL than the C allele (OR = 11.68; 95% CI = 3.16-43.24, P &lt; 0.001). Specifically, p.P240L heterozygotes (OR = 8.49; 95% CI = 2.28-31.59, P = 0.001), had a significantly higher risk of NSHL. Publication bias of our meta-analysis was attributed to the limited availability of relevant results and the number of studies included in our meta-analysis was relatively small. The p.P240L variant increased the risk of NHSL in Asian populations, suggesting a remarkable ethnic specificity linked with susceptibility to this mutation."	"Genetic screening of Russian Usher syndrome patients toward selection for gene therapy. Usher syndrome (USH) is heterogeneous in nature and requires genetic test for diagnosis and management. Mutations in USH associated genes are reported in some populations except Russians. Here, we first time represented the mutation spectrum of a Russian USH cohort. Twenty-eight patients with USH were selected from 3214 patients from Deaf-Blind Support Foundation &quot;Con-nection&quot; during 2014-2016 following the observational study NCT03319524. Complete ophthalmologic, ENT, and vestibular medical tests were done for clinical characterization. NGS, MLPA, and Sanger sequencing were considered for genetic analysis. Around 53.57% and 39.28% patients had USH1 and USH2, respectively; 17.85% cases (n = 5/28) had no known mutation. Eleven (73.33%) subjects showed variations in USH1 associated genes MYO7A (72.72%), CDH23 (9.09%), PCDH15 (9.09%), and USH1C (9.09%). Eleven mutations are detected in MYO7A where 54.54% are novel. MYO7A: p.Q18* was most frequent (27.27%) mutation and is associated with early manifestation and most severe clinical picture. Two novel mutations (p.E1301* and c.158-?_318+?del) are detected in PCDH15 gene. Around 90.90% patients suspected to be USH2 are confirmed by genetic testing. Eleven mutations detected in the USH2A gene, where 27.27% were novel. Most common USH2A mutation is p.W3955* (50%) followed by p.E767fs, p.R1653*, and c.8682-9A&gt; G (20% each). The Russian USH cohort shows both novel and known USH mutations. Clinically the prevalence of USH2 is low (39.28%) and the frequency of MYO7A mutations responsible for USH1B is very high (63.63%, N = 7/11) compared to other cohorts. These seven patients carrying MYO7A mutations are preliminarily eligible for the UshStat® gene therapy."	"Prenatal diagnosis of a familial 5p14.3-p14.1 deletion encompassing CDH18, CDH12, PMCHL1, PRDM9 and CDH10 in a fetus with congenital heart disease on prenatal ultrasound. We present prenatal diagnosis of a familial 5p14.3-p14.1 deletion in a fetus with congenital heart disease on prenatal ultrasound. A 33-year-old woman underwent amniocentesis at 18 weeks of gestation because of fetal ventricular septal defect (VSD) and echogenic bowel on prenatal ultrasound. Amniocentesis revealed a karyotype of 46,XX,del (5) (p14p14). Simultaneous array comparative genomic hybridization (aCGH) analysis on the DNA extracted from uncultured amniocytes revealed a 5.589-Mb 5p14.3-p14.1 deletion or arr 5p14.3p14.1 (19, 497, 649-25,086,268) × 1.0 [GRCh37 (hg19)] encompassing CDH18, CDH12, PMCHL1, PRDM9 and CDH10. Cytogenetic and aCGH analyses of the parents showed that the phenotypically normal mother carried the 5p14.3-p14.1 deletion. The father did not have such a deletion. The parents elected to continue the pregnancy, and a 3426-g female baby was delivered at 38 weeks of gestation with no gross abnormalities. The infant postnatally manifested VSD, atrial septal defect and patent ductus areriosus, and underwent cardiac surgery to treat the congenital heart disease. When follow-up at age 1 year and 4 months, she had a body weight of 8.8 Kg (50th-75th centile), a body height of 75.6 cm (85th-95th centile) and normal psychomotor development. Fetuses with a 5p14.3-p14.1 deletion may present congenital heart disease on prenatal ultrasound, and aCGH is helpful for prenatal diagnosis under such a circumstance."	"CDH23 Methylation Status and Presbycusis Risk in Elderly Women. Introduction: Presbycusis, an age-related hearing impairment (ARHI) disease, is the most common cause for HI in adults worldwide. One of the best candidate genes for ARHI susceptibility is Cadherin 23 (CDH23) which encodes stereocilia tip-links of the inner ear sensory hair cell. Although alterations in the methylation status of CpG dinucleotides across various genes were reported to be associated with HI, methylation changes in CDH23 gene have not been reported previously. Objectives: This study aimed at investigating whether DNA methylation level of CDH23 gene at intragenic CpG island overlapping an exonic-intronic region at position chr10:73565570-73565827 (GRCh37/hg19) could be risk factor associated with ARHI. Materials and Methods: We screened for methylation changes in this particular position for CDH23 gene in 50 blood samples of elderly women affected with presbycusis and healthy control cohort. Methylation of CpG sites were assessed using Quantitative methylation-specific PCR (qMSP) following sodium bisulfite DNA conversion chemistry. Methylation levels were normalized against TSH2B reference gene. Results: DNA methylation analysis for the common CpG islands in CDH23 gene revealed 3.27-folds significant increase (p &lt; 0.0001) in methylation profile for ARHI women as compared to healthy controls with an elevated risk odds ratio (OR) of 2.219 [95% CI 1.071-4.597]. Conclusion: Our study is the first of its kind to prove that higher CpG site methylation levels in CDH23 gene are likely to be associated with ARHI."	"Genetic Etiology Study of Ten Chinese Families with Nonsyndromic Hearing Loss. Nonsyndromic hearing loss has been shown to have high genetic heterogeneity. In this report, we aimed to disclose the genetic causes of the subjects from the ten Chinese deaf families who did not have pathogenic common genes/mutation. Next-generation sequencing (NGS) of 142 known deafness genes was performed in the probands of ten families followed by cosegregation analysis of all family members. We identified novel pathogenic variants in six families including p.D1806E/p.R1588W, p.R964W/p.R1588W, and p.G17C/p.G1449D in CDH23; p.T584M/p.D1939N in LOXHD1; p.P1225L in MYO7A; and p.K612X in EYA4. Sanger sequencing confirmed that these mutations segregated with the hearing loss of each family. In four families, no pathogenic variants were identified. Our study provided better understanding of the mutation spectrum of hearing loss in the Chinese population."	"Zooming in on Cadherin-23: Structural Diversity and Potential Mechanisms of Inherited Deafness. Cadherin-23 (CDH23) is an essential component of hair-cell tip links, fine filaments that mediate inner-ear mechanotransduction. The extracellular domain of CDH23 forms about three-fourths of the tip link with 27 extracellular cadherin (EC) repeats that are structurally similar but not identical to each other. Calcium (Ca<sup>2+</sup>) coordination at the EC linker regions is key for tip-link elasticity and function. There are ∼116 sites in CDH23 affected by deafness-causing mutations, many of which alter conserved Ca<sup>2+</sup>-binding residues. Here we present crystal structures showing 18 CDH23 EC repeats, including the most and least conserved, a fragment carrying disease mutations, and EC repeats with non-canonical Ca<sup>2+</sup>-binding motif sequences and unusual secondary structure. Complementary experiments show deafness mutations' effects on stability and affinity for Ca<sup>2+</sup>. Additionally, a model of nine contiguous CDH23 EC repeats reveals helicity and potential parallel dimerization faces. Overall, our studies provide detailed structural insight into CDH23 function in mechanotransduction."	"Comprehensive genomic diagnosis of non-syndromic and syndromic hereditary hearing loss in Spanish patients. Sensorineural hearing loss (SNHL) is the most common sensory impairment. Comprehensive next-generation sequencing (NGS) has become the standard for the etiological diagnosis of early-onset SNHL. However, accurate selection of target genomic regions (gene panel/exome/genome), analytical performance and variant interpretation remain relevant difficulties for its clinical implementation. We developed a novel NGS panel with 199 genes associated with non-syndromic and/or syndromic SNHL. We evaluated the analytical sensitivity and specificity of the panel on 1624 known single nucleotide variants (SNVs) and indels on a mixture of genomic DNA from 10 previously characterized lymphoblastoid cell lines, and analyzed 50 Spanish patients with presumed hereditary SNHL not caused by GJB2/GJB6, OTOF nor MT-RNR1 mutations. The analytical sensitivity of the test to detect SNVs and indels on the DNA mixture from the cell lines was &gt; 99.5%, with a specificity &gt; 99.9%. The diagnostic yield on the SNHL patients was 42% (21/50): 47.6% (10/21) with autosomal recessive inheritance pattern (BSND, CDH23, MYO15A, STRC [n = 2], USH2A [n = 3], RDX, SLC26A4); 38.1% (8/21) autosomal dominant (ACTG1 [n = 3; 2 de novo], CHD7, GATA3 [de novo], MITF, P2RX2, SOX10), and 14.3% (3/21) X-linked (COL4A5 [de novo], POU3F4, PRPS1). 46.9% of causative variants (15/32) were not in the databases. 28.6% of genetically diagnosed cases (6/21) had previously undetected syndromes (Barakat, Usher type 2A [n = 3] and Waardenburg [n = 2]). 19% of genetic diagnoses (4/21) were attributable to large deletions/duplications (STRC deletion [n = 2]; partial CDH23 duplication; RDX exon 2 deletion). In the era of precision medicine, obtaining an etiologic diagnosis of SNHL is imperative. Here, we contribute to show that, with the right methodology, NGS can be transferred to the clinical practice, boosting the yield of SNHL genetic diagnosis to 50-60% (including GJB2/GJB6 alterations), improving diagnostic/prognostic accuracy, refining genetic and reproductive counseling and revealing clinically relevant undiagnosed syndromes."	"Genome-wide association study identified ATP6V1H locus influencing cerebrospinal fluid BACE activity. The activity of cerebrospinal fluid (CSF) β-site APP cleaving enzyme (BACE) is a potential diagnostic biomarker for Alzheimer disease (AD). A total of 340 non-Hispanic Caucasian participants from the Alzheimer's Disease Neuroimaging Initiative cohort (ADNI) database were included in this study with quality-controlled CSF BACE and genotype data. Association of CSF BACE with the genetic variants of single nucleotide polymorphisms (SNPs) was assessed using PLINK under the additive genetic model. The P values of all SNPs for CSF BACE were adjusted for multiple comparisons. One SNP (rs1481950) in the ATP6V1H gene reached genome-wide significance for associations with CSF BACE (P = 4.88 × 10<sup>- 9</sup>). The minor allele (G) of rs1481950 was associated with higher CSF BACE activity. Although seven SNPs in SNX31, RORA, CDH23, RGS20, LRRC4C, MAPK6PS1 and LOC105378355 did not reach genome-wide significance (P &lt; 10<sup>- 8</sup>), they were identified as suggestive loci (P &lt; 10<sup>- 5</sup>). This study identified rs1481950 within ATP6V1H influencing human CSF BACE activity, which indicated that ATP6V1H gene may play some roles in the pathogenesis of neurodegenerative diseases such as AD."	"Deterioration in Distortion Product Otoacoustic Emissions in Auditory Neuropathy Patients With Distinct Clinical and Genetic Backgrounds. Auditory neuropathy (AN) is a clinical disorder characterized by the absence of auditory brainstem response and presence of otoacoustic emissions. A gradual loss of otoacoustic emissions has been reported for some cases of AN. Such cases could be diagnosed as cochlear hearing loss and lead to misunderstanding of the pathology when patients first visit clinics after the loss of otoacoustic emissions. The purpose of this study was to investigate the time course of changes in distortion product otoacoustic emissions (DPOAEs) in association with patients' genetic and clinical backgrounds, including the use of hearing aids. DPOAE measurements from 31 patients with AN were assessed. Genetic analyses for GJB2, OTOF, and mitochondrial m.1555A&gt; G and m.3243A&gt; G mutations were conducted for all cases, and the analyses for CDH23 and OPA1 were conducted for the selected cases. Patients who were younger than 10 years of age at the time of AN diagnosis were designated as the pediatric AN group (22 cases), and those who were 18 years of age or older were designated as the adult AN group (9 cases). DPOAE was measured at least twice in all patients. The response rate for DPOAEs was defined and analyzed. The pediatric AN group comprised 10 patients with OTOF mutations, 1 with GJB2 mutations, 1 with OPA1 mutation, and 10 with indefinite causes. Twelve ears (27%) showed no change in DPOAE, 20 ears (46%) showed a decrease in DPOAE, and 12 ears (27%) lost DPOAE. Loss of DPOAE occurred in one ear (2%) at 0 years of age and four ears (9%) at 1 year of age. The time courses of DPOAEs in patients with OTOF mutations were divided into those with early loss and those with no change, indicating that the mechanism for deterioration of DPOAEs includes not only the OTOF mutations but also other common modifier factors. Most, but not all, AN patients who used hearing aids showed deterioration of DPOAEs after the start of using hearing aids. A few AN patients also showed deterioration of DPOAEs before using hearing aids. The adult AN group comprised 2 patients with OPA1 mutations, 2 with OTOF mutations, and 5 with indefinite causes. Four ears (22%) showed no change in DPOAE, 13 ears (72%) showed a decrease, and one ear (6%) showed a loss of DPOAE. Although the ratio of DPOAE decrease was higher in the adult AN group than in the pediatric AN group, the ratio of DPOAE loss was lower in the adult AN group. DPOAE was not lost in all four ears with OPA1 mutations and in all four ears with OTOF mutations in the adult group. DPOAE was decreased or lost in approximately 70% of pediatric and about 80% of adult AN patients. Eleven percent of pediatric AN patients lost DPOAEs by 1 year of age. Genetic factors were thought to have influenced the time course of DPOAEs in the pediatric AN group. In most adult AN patients, DPOAE was rarely lost regardless of the genetic cause."	"Comprehensive Molecular Screening in Chinese Usher Syndrome Patients. Usher syndrome (USH) refers to a group of autosomal recessive disorders causing deafness and blindness. The objectives of this study were to determine the mutation spectrum in a cohort of Chinese patients with USH and to describe the clinical features of the patients with mutations. A total of 119 probands who were clinically diagnosed with USH were recruited for genetic analysis. All probands underwent ophthalmic examinations. A combination of molecular screening methods, including targeted next-generation sequencing, Sanger-DNA sequencing, and multiplex ligation probe amplification assay, was used to detect mutations. We found biallelic mutations in 92 probands (77.3%), monoallelic mutations in 5 patients (4.2%), and 1 hemizygous mutation in 1 patient (0.8%), resulting in an overall mutation detection rate of 78.2%. Overall, 132 distinct disease-causing mutations involving seven USH (ABHD12, CDH23, GPR98, MYO7A, PCDH15, USH1C, and USH2A) genes; 5 other retinal degeneration genes (CHM, CNGA1, EYS, PDE6B, and TULP1); and 1 nonsyndromic hearing loss gene (MYO15A) were identified, and 78 were novel. Mutations of MYOA7 were responsible for 60% of USH1 families, followed by PCDH15 (20%) and USH1C (10%). Mutations of USH2A accounted for 67.7% of USH2 families, and mutation c.8559-2A&gt;G was the most frequent one, accounting for 19.1% of the identified USH2A alleles. Our results confirm that the mutation spectrum for each USH gene in Chinese patients differs from those of other populations. The formation of the mutation profile for the Chinese population will enable a precise genetic diagnosis for USH patients in the future."	"Targeted Next-Generation Sequencing of a Deafness Gene Panel (MiamiOtoGenes) Analysis in Families Unsuitable for Linkage Analysis. Hearing loss (HL) is a common sensory disorder in humans with high genetic heterogeneity. To date, over 145 loci have been identified to cause nonsyndromic deafness. Furthermore, there are countless families unsuitable for the conventional linkage analysis. In the present study, we used a custom capture panel (MiamiOtoGenes) to target sequence 180 deafness-associated genes in 5 GJB2 negative deaf probands with autosomal recessive nonsyndromic HL from Iran. In these 5 families, we detected one reported and six novel mutations in 5 different deafness autosomal recessive (DFNB) genes (TRIOBP, LHFPL5, CDH23, PCDH15, and MYO7A). The custom capture panel in our study provided an efficient and comprehensive diagnosis for known deafness genes in small families."	"Recombinant protein of the first two ectodomains of cadherin 23 from erl mice shows impairment in Ca<sup>2+</sup>-dependent proteolysis protection. The erl mouse is a mouse model of nonsyndromic autosomal recessive deafness (DFNB12) on the C57BL/6J background. This project was carried out to express the first two ectodomains of cadherin 23 (CDH23 EC1+2) of erl mice in Escherichia coli and identify the Ca<sup>2+</sup>-binding ability of the recombinant protein. DNA sequences of CDH23 EC1+2 from wild type and erl mice were synthesized and cloned into pBV220 plasmids. Recombinant plasmids were transformed into Escherichia coli and expression of CDH23 EC1+2 was induced by increasing the temperature from 30 °C to 42 °C. The proteins were analyzed by sodium dodecyl sulfate polyacrylamide gel electrophoresis (SDS-PAGE) and antigenicity of proteins was identified by Western Blotting. Inclusion bodies were denatured in 8 M urea, purified by ion-exchange and gel filtration chromatography and refolded with dialysis in buffer containing 0.1% sarkosyl. The Ca<sup>2+</sup>-binding ability of CDH23 EC1+2 was determined by Ca<sup>2+</sup>-dependent proteolysis protection. The results showed that the sizes and sequences of inserts in recombinant plasmids were consistent with expectation and that the recombinant proteins were found mainly in the form of inclusion bodies which maintain antigenicity. After refolding, the secondary structures of recombinant proteins were measured by circular dichroism (CD) spectra. Moreover, CDH23 EC1+2 from the erl mice showed less Ca<sup>2+</sup>-dependent proteolysis protection comparing with that of the wild type control. We therefore concluded that impairment of Ca<sup>2+</sup>-dependent protein interaction was likely involved in the progressive hearing loss in erl mice. The results may aid in understanding the mechanism of hearing loss in DFNB12."	"Tuning Inner-Ear Tip-Link Affinity Through Alternatively Spliced Variants of Protocadherin-15. Human hearing relies upon the tip-to-tip interaction of two nonclassical cadherins, protocadherin-15 (PCDH15) and cadherin-23 (CDH23). Together, these proteins form a filament called the tip link that connects neighboring stereocilia of mechanosensitive hair cells. As sound waves enter the cochlea, the stereocilia deflect and tension is applied to the tip link, opening nearby transduction channels. Disruption of the tip link by loud sound or calcium chelators eliminates transduction currents and illustrates that tip-link integrity is critical for mechanosensing. Tip-link remodeling after disruption is a dynamic process, which can lead to the formation of atypical complexes that incorporate alternatively spliced variants of PCDH15. These variants are categorized into six groups (N1-N6) based upon differences in the first two extracellular cadherin (EC) repeats. Here, we characterized the two N-terminal EC repeats of all PCDH15 variants (pcdh15(N1) to pcdh15(N6)) and combined these variants to test complex formation. We solved the crystal structure of a new complex composed of CDH23 EC1-2 (cdh23) and pcdh15(N2) at 2.3 Å resolution and compared it to the canonical cdh23-pcdh15(N1) complex. While there were subtle structural differences, the binding affinity between cdh23 and pcdh15(N2) is ∼6 times weaker than cdh23 and pcdh15(N1) as determined by surface plasmon resonance analysis. Steered molecular dynamics simulations predict that the unbinding force of the cdh23-pcdh15(N2) complex can be lower than the canonical tip link. Our results demonstrate that alternative heterophilic tip-link structures form stable protein-protein interactions in vitro and suggest that homophilic PCDH15-PCDH15 tip links form through the interaction of additional EC repeats."	"[The experimental study on endoplasmic reticulum stress-participated outer hair cell apoptosis in cadherin 23 gene mutant mice]. Objective: To test the mechanism and upstream pathway of outer hair cell apoptosis in Cadherin 23 (Cdh23) gene mutant mice. Method: The mutant Cdh23(erl/erl)(erl) mice were collected as the study group, while the C57BL/6J (B6) mice were chosen as the control group. A total of 70 mice per group were used in this study. The study group and control group underwent auditory-evoked brainstem response (ABR) tests at the same age. The terminal deoxynucleotidyl transferase dUTP nick end labeling (TUNEL) assay was performed to detect outer hair cell(OHC) apoptosis. The qRT-PCR was conducted to test the expression of ER stress markers immunoglobulin-binding protein (BiP) and C/EBP homologous protein (CHOP) mRNA. The expression and location of BiP and CHOP protein in OHC were detected by immunostaining. The expression of BiP protein in cochleae was identified by Western blot. The expression and location of CDH23 protein in OHC were discovered by immunostaining. Results: The ABR thresholds in erl mice were significantly higher than those in B6 mice at the age of 1 and 3 months (both P&lt;0.05). The surface preparation with TUNEL staining confirmed OHC apoptosis in erl mouse cochleae which showed a higher TUNEL positive cell ratio than B6 mouse(t=11.291, P&lt;0.01). The ER stress marker Bip and Chop mRNA were upregulated in the erl mouse inner ear, when compared with those in the B6 mouse(both P&lt;0.05). The BiP protein extracted from the erl mouse cochleae was significantly higher than that of B6 mouse measured by Western blot (t=3.66, P=0.02). Immunostaining showed that BiP and CHOP were highly detected in the OHC in erl mouse cochleae, and was mainly detected in the perinuclear region of OHC. However, a bare BiP and CHOP signal were shown in B6 mouse cochleae. The CDH23 protein was specifically localized at the top of the OHC in B6 mice, indicating the localization of the tip links in hair bundle stereocilia. On the contrary, the CDH23(erl) protein was found to be localized from the top to the nuclei of the OHC in erl mice. Portions of the CDH23(erl) proteins failed to reach the top of the hair bundles and remained in the OHC cytoplasm. Conclusion: As the downstream response of the Cdh23 gene mutation, portions of the mutant CDH23(erl) protein was accumulated in ER lumen resulting in the increase of ER loading and ultimately triggered ER stress and hair cell apoptosis in erl mouse cochleae. 目的: 探讨内质网应激参与钙黏蛋白23(Cadherin 23,Cdh23)基因突变小鼠耳蜗外毛细胞损伤的机制。 方法: 采用纯合型Cdh23基因突变小鼠(erl小鼠)为实验组,C57BL/6J小鼠(B6)为对照组,每组各70只。测试两组小鼠ABR阈值,脱氧核糖核苷酸末端转移酶介导的缺口末端标记(TUNEL)技术检测细胞凋亡。通过实时荧光定量PCR、蛋白免疫印迹(Western blot)及免疫荧光染色,检测内质网应激标志物免疫球蛋白结合蛋白(immunoglobulin-binding protein, BiP)和核转录因子C/EBP同源蛋白(C/EBP homologous protein,CHOP)在小鼠耳蜗中的表达及分布,观察CDH23蛋白在耳蜗外毛细胞的定位。 结果: 1月龄及3月龄erl小鼠8、16、32 kHz ABR阈值均显著高于对照组B6小鼠,差异具有统计学意义(P值均&lt;0.05)。erl小鼠耳蜗外毛细胞TUNEL阳性细胞率显著高于B6小鼠,差异具有统计学意义(t=11.291,P&lt;0.01)。Bip及Chop mRNA在erl小鼠耳蜗表达明显高于B6小鼠,BiP蛋白在erl小鼠耳蜗表达明显高于B6小鼠,差异具有统计学意义(P值均&lt;0.05)。B6小鼠耳蜗外毛细胞未检测到BiP及CHOP信号,而erl小鼠耳蜗外毛细胞细胞质中BiP及CHOP特异性高表达。CDH23蛋白在B6小鼠外毛细胞远离细胞核的顶端表达;在erl小鼠的耳蜗外毛细胞,突变型CDH23(erl)蛋白部分表达于远离细胞核的顶端,部分滞留于细胞质。 结论: 小鼠Cdh23基因突变导致CDH23蛋白质翻译异常,生成突变型CDH23(erl)蛋白,部分突变型蛋白转运障碍,滞留于内质网腔,引发内质网应激并最终导致外毛细胞损伤。."	"The tip link protein Cadherin-23: From Hearing Loss to Cancer. Cadherin-23 is an atypical member of the cadherin superfamily, with a distinctly long extracellular domain. It has been known to be a part of the tip links of the inner ear mechanosensory hair cells. Several studies have been carried out to understand the role of Cadherin-23 in the hearing mechanism and defects in the CDH23 have been associated with hearing impairment resulting from defective or absence of tip links. Recent studies have highlighted the role of Cadherin-23 in several pathological conditions, including cancer, suggesting the presence of several unknown functions. Initially, it was proposed that Cadherin-23 represents a yet unspecified subtype of Cadherins; however, no other proteins with similar characteristics have been identified, till date. It has a unique cytoplasmic domain that does not bear a β-catenin binding region, but has been demonstrated to mediate cell-cell adhesions. Several protein interacting partners have been identified for Cadherin-23 and the roles of their interactions in various cellular mechanisms are yet to be explored. This review summarizes the characteristics of Cadherin-23 and its roles in several pathologies including cancer."	"Inhibition of Mitochondrial Division Attenuates Cisplatin-Induced Toxicity in the Neuromast Hair Cells. Cisplatin and other related platinum antineoplastic drugs are commonly used in the treatment of a variety of cancers in both adults and children but are often associated with severe side effects, including hearing loss. Cisplatin's ototoxic effects are multifaceted, culminating in irreversible damage to the mechanosensory hair cells in the inner ear. Platinum drugs act on cancerous cells by forming nuclear DNA adducts, which may initiate signaling leading to cell cycle arrest or apoptosis. Moreover, it was reported that cisplatin may induce mitochondrial DNA damage in non-cancerous cells. Therefore, protecting mitochondria may alleviate cisplatin-induced insult to non-proliferating cells. Thus, it is important to identify agents that shield the mitochondria from cisplatin-induced insult without compromising the anti-tumor actions of the platinum-based drugs. In this study we tested the protective properties of mitochondrial division inhibitor, mdivi-1, a derivative of quinazolinone and a regulator of mitochondrial fission. Interestingly, it has been reported that mdivi-1 increases the apoptosis of cells that are resistant to cisplatin. The ability of mdivi-1 to protect hair cells against cisplatin-induced toxicity was evaluated in a fish model. Wild-type (Tübingen strain), cdh23 mutant, and transgenic pvalb3b::GFP zebrafish stably expressing GFP in the hair cells were used in this study. Larvae at 5-6 days post fertilization were placed in varying concentrations of cisplatin (50-200 μM) and/or mdivi-1 (1-10 μM) for 16 h. To evaluate hair cell's viability the number of hair bundles per neuromast were counted. To assess hair cell function, we used the FM1-43 uptake assay and recordings of neuromast microphonic potentials. The results showed that mdivi-1 protected hair cells of lateral line neuromasts when they were challenged by 50 μM of cisplatin: viability of hair cells increased almost twice from 19% ± 1.8% to 36% ± 2.0% (p &lt; 0.001). No protection was observed when higher concentrations of cisplatin were used. In addition, our data were in accord with previously reported results that functional mechanotransduction strongly potentiates cisplatin-induced hair cell toxicity. Together, our results suggest that mitochondrial protection may prevent cisplatin-induced damage to hair cells."	"Triple Vectors Expand AAV Transfer Capacity in the Retina. Retinal gene transfer with adeno-associated viral (AAV) vectors holds great promise for the treatment of inherited retinal degenerations (IRDs). One limit of AAV is its transfer capacity of about 5 kb, which can be expanded to about 9 kb, using dual AAV vectors. This strategy would still not suffice for treatment of IRDs such as Usher syndrome type 1D or Alström syndrome type I (ALMS) due to mutations in CDH23 or ALMS1, respectively. To overcome this limitation, we generated triple AAV vectors, with a maximal transfer capacity of about 14 kb. Transcriptomic analysis following triple AAV transduction showed the expected full-length products along a number of aberrant transcripts. However, only the full-length transcripts are efficiently translated in vivo. We additionally showed that approximately 4% of mouse photoreceptors are transduced by triple AAV vectors and showed correct localization of recombinant ALMS1. The low-photoreceptor transduction levels might justify the modest and transient improvement we observe in the retina of a mouse model of ALMS. However, the levels of transduction mediated by triple AAV vectors in pig retina reached 40% of those observed with single vectors, and this bodes well for further improving the efficiency of triple AAV vectors in the retina."	"A novel variant in the CDH23 gene is associated with non-syndromic hearing loss in a Chinese family. To explore the pathogenic causes of a proband who was diagnosed with non-syndromic hearing loss. We performed targeted capture of 159 known deafness-related genes and next-generation sequencing in the proband who was tested negative for the twenty hotspot variants in four common deafness-related genes(GJB2, GJB3, SLC26A4 and MTRNR1); Clinical reassessments, including detailed audiological and ocular examinations were performed in the proband and his normal parents. We identified a novel heterozygous variant of CDH23:c.4567A &gt; G (p.Asn1523Asp) in exon 37 (NM_022124), in conjunction with a reported mutation of CDH23:c.5101G &gt; A (p.Glu1701Lys) in exon 40, to be a potentially pathogenic compound heterozygosity in the proband. The unaffected father has a heterozygous variant of CDH23:c.4567A &gt; G, and the normal mother has another heterozygous variant, CDH23:c.5101G &gt; A. The novel variant was absent in the 1000 Genomes Project. The clinical reassessments revealed binaural profound sensorineural hearing loss (DFNB12) without retinitis pigmentosa in the proband. This study demonstrates that the novel variant c.4567A &gt; G (p.Asn1523Asp) in compound heterozygosity with c.5101G &gt; A (p. Glu1701Lys) in the CDH23 gene is the main cause of DFNB12 in the proband. Simultaneously, this study provides a foundation to further elucidate the CDH23-related mechanisms of DFNB12."	"Using thermal scanning assays to test protein-protein interactions of inner-ear cadherins. Protein-protein interactions play a crucial role in biological processes such as cell-cell adhesion, immune system-pathogen interactions, and sensory perception. Understanding the structural determinants of protein-protein complex formation and obtaining quantitative estimates of their dissociation constant (KD) are essential for the study of these interactions and for the discovery of new therapeutics. At the same time, it is equally important to characterize protein-protein interactions in a high-throughput fashion. Here, we use a modified thermal scanning assay to test interactions of wild type (WT) and mutant variants of N-terminal fragments (EC1+2) of cadherin-23 and protocadherin-15, two proteins essential for inner-ear mechanotransduction. An environmentally sensitive fluorescent dye (SYPRO orange) is used to monitor melting temperature (Tm) shifts of protocadherin-15 EC1+2 (pcdh15) in the presence of increasing concentrations of cadherin-23 EC1+2 (cdh23). These Tm shifts are absent when we use proteins containing deafness-related missense mutations known to disrupt cdh23 binding to pcdh15, and are increased for some rationally designed mutants expected to enhance binding. In addition, surface plasmon resonance binding experiments were used to test if the Tm shifts correlated with changes in binding affinity. We used this approach to find a double mutation (cdh23(T15E)- pcdh15(G16D)) that enhances binding affinity of the cadherin complex by 1.98 kJ/mol, roughly two-fold that of the WT complex. We suggest that the thermal scanning methodology can be used in high-throughput format to quickly compare binding affinities (KD from nM up to 100 μM) for some heterodimeric protein complexes and to screen small molecule libraries to find protein-protein interaction inhibitors and enhancers."	"Genome-wide meta-analysis identifies novel determinants of circulating serum progranulin. Progranulin is a secreted protein with important functions in processes including immune and inflammatory response, metabolism and embryonic development. The present study aimed at identification of genetic factors determining progranulin concentrations. We conducted a genome-wide association meta-analysis for serum progranulin in three independent cohorts from Europe: Sorbs (N = 848) and KORA (N = 1628) from Germany and PPP-Botnia (N = 335) from Finland (total N = 2811). Single nucleotide polymorphisms (SNPs) associated with progranulin levels were replicated in two additional German cohorts: LIFE-Heart Study (Leipzig; N = 967) and Metabolic Syndrome Berlin Potsdam (Berlin cohort; N = 833). We measured mRNA expression of genes in peripheral blood mononuclear cells (PBMC) by micro-arrays and performed mRNA expression quantitative trait and expression-progranulin association studies to functionally substantiate identified loci. Finally, we conducted siRNA silencing experiments in vitro to validate potential candidate genes within the associated loci. Heritability of circulating progranulin levels was estimated at 31.8% and 26.1% in the Sorbs and LIFE-Heart cohort, respectively. SNPs at three loci reached study-wide significance (rs660240 in CELSR2-PSRC1-MYBPHL-SORT1, rs4747197 in CDH23-PSAP and rs5848 in GRN) explaining 19.4%/15.0% of the variance and 61%/57% of total heritability in the Sorbs/LIFE-Heart Study. The strongest evidence for association was at rs660240 (P = 5.75 × 10-50), which was also associated with mRNA expression of PSRC1 in PBMC (P = 1.51 × 10-21). Psrc1 knockdown in murine preadipocytes led to a consecutive 30% reduction in progranulin secretion. In conclusion, the present meta-GWAS combined with mRNA expression identified three loci associated with progranulin and supports the role of PSRC1 in the regulation of progranulin secretion."	"Recurrence of reported CDH23 mutations causing DFNB12 in a special cohort of South Indian hearing impaired assortative mating families - an evaluation. Mutations in CDH23 are known to cause autosomal-recessive nonsyndromic hearing loss (DFNB12). Until now, there was only one study describing its frequency in Indian population. We screened for CDH23 mutations to identify prevalent and recurring mutations among South Indian assortative mating hearing-impaired individuals who were identified as non-DFNB1 (GJB2 and GJB6). Whole-exome sequencing was performed in individuals found to be heterozygous for CDH23 to determine whether there was a second pathogenic allele. In our study, 19 variants including 6 pathogenic missense mutations were identified. The allelic frequency of pathogenic mutations accounts to 4.7% in our cohort, which is higher than that reported previously; three mutations (c.429+4G&gt;A, c.2968G&gt;A, and c.5660C&gt;T) reported in the previous Indian study were found to recur. DFNB12 was found to be the etiology in 3.4% of our cohort, with missense mutation c.2968G&gt;A (p.Asp990Asn) being the most prevalent (2.6%). These results suggest a need to investigate the possibility for higher proportion of CDH23 mutations in the South Indian hearing-impaired population."	"Targeted next generation sequencing in Italian patients with Usher syndrome: phenotype-genotype correlations. We report results of DNA analysis with next generation sequencing (NGS) of 21 consecutive Italian patients from 17 unrelated families with clinical diagnosis of Usher syndrome (4 USH1 and 17 USH2) searching for mutations in 11 genes: MYO7A, CDH23, PCDH15, USH1C, USH1G, USH2A, ADGVR1, DFNB31, CLRN1, PDZD7, HARS. Likely causative mutations were found in all patients: 25 pathogenic variants, 18 previously reported and 7 novel, were identified in three genes (USH2A, MYO7A, ADGRV1). All USH1 presented biallelic MYO7A mutations, one USH2 exhibited ADGRV1 mutations, whereas 16 USH2 displayed USH2A mutations. USH1 patients experienced hearing problems very early in life, followed by visual impairment at 1, 4 and 6 years. Visual symptoms were noticed at age 20 in a patient with homozygous novel MYO7A missense mutation c.849G &gt; A. USH2 patients' auditory symptoms, instead, arose between 11 months and 14 years, while visual impairment occurred later on. A homozygous c.5933_5940del;5950_5960dup in USH2A was detected in one patient with early deafness. One patient with homozygous deletion from exon 23 to 32 in USH2A suffered early visual symptoms. Therefore, the type of mutation in USH2A and MYO7A genes seems to affect the age at which both auditory and visual impairment occur in patients with USH."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"A unique methylation pattern co-segregates with neural tube defect statuses in Han Chinese pedigrees. Neural tube defects (NTDs) are a complex trait associated with gene-environment interactions. Folic acid deficiency and planar cell polarity gene mutations account for some NTD cases; however, the etiology of NTDs is still little understood. In this study, in three Han Chinese NTD pedigrees (two with multiple affected children), with no information on folic acid deficiency or supplement, we examined genome-wide methylation profiles of each individual in these families. We further compared methylation status among cases and normal individuals within the pedigrees. A unique methylation pattern co-segregated with affected status: NTD cases had more hypermethylated than hypomethylated CpG islands; genes with different methylations clustered in pathways associated with epithelial-to-mesenchymal transition (ZEB2, SMAD6, and CDH23), folic acid/homocysteine metabolism (MTHFD1L), transcription/nuclear factors (HDAC4, HOXB7, SOX18), cell migration/motility/adhesion, insulin and cell growth, and neuron/axon development. Although the genetics of NTD are likely complex, epigenetic changes may concentrate in certain key pathways."	"Carrier re-sequencing reveals rare but benign variants in recessive deafness genes. For recessive Mendelian disorders, determining the pathogenicity of rare, non-synonymous variants in known causative genes can be challenging without expanded pedigrees and/or functional analysis. In this study, we proposed to establish a database of rare but benign variants in recessive deafness genes by systematic carrier re-sequencing. As a pilot study, 30 heterozygous carriers of pathogenic variants for deafness were identified from unaffected family members of 18 deaf probands. The entire coding regions of the corresponding genes were re-sequenced in those carriers by targeted next-generation sequencing or Sanger sequencing. A total of 32 non-synonymous variants were identified in the normal-hearing carriers in trans with the pathogenic variant and therefore were classified as benign. Among them were five rare (minor allele frequencies less than 0.005) variants that had previously undefined, disputable or even misclassified function: p.A434T (c.1300 G &gt; A) in SLC26A4, p.R266Q (c.797 G &gt; A) in LOXHD1, p.K96Q (c.286 A &gt; C) in MYO15A, p.T123N (c.368 C &gt; A) in GJB2 and p.V1299I (c.797 G &gt; A) in CDH23. Our results suggested that large scale carrier re-sequencing may be warranted to establish a database of rare but benign variants in causative genes in order to reduce false positive genetic diagnosis of recessive Mendelian disorders."	"Beyond Cell-Cell Adhesion: Sensational Cadherins for Hearing and Balance. Cadherins form a large family of proteins often involved in calcium-dependent cellular adhesion. Although classical members of the family can provide a physical bond between cells, a subset of special cadherins use their extracellular domains to interlink apical specializations of single epithelial sensory cells. Two of these cadherins, cadherin-23 (CDH23) and protocadherin-15 (PCDH15), form extracellular &quot;tip link&quot; filaments that connect apical bundles of stereocilia on hair cells essential for inner-ear mechanotransduction. As these bundles deflect in response to mechanical stimuli from sound or head movements, tip links gate hair-cell mechanosensitive channels to initiate sensory perception. Here, we review the unusual and diverse structural properties of these tip-link cadherins and the functional significance of their deafness-related missense mutations. Based on the structural features of CDH23 and PCDH15, we discuss the elasticity of tip links and models that bridge the gap between the nanomechanics of cadherins and the micromechanics of hair-cell bundles during inner-ear mechanotransduction."	"Auditory cortex interneuron development requires cadherins operating hair-cell mechanoelectrical transduction. Many genetic forms of congenital deafness affect the sound reception antenna of cochlear sensory cells, the hair bundle. The resulting sensory deprivation jeopardizes auditory cortex (AC) maturation. Early prosthetic intervention should revive this process. Nevertheless, this view assumes that no intrinsic AC deficits coexist with the cochlear ones, a possibility as yet unexplored. We show here that many GABAergic interneurons, from their generation in the medial ganglionic eminence up to their settlement in the AC, express two cadherin-related (cdhr) proteins, cdhr23 and cdhr15, that form the hair bundle tip links gating the mechanoelectrical transduction channels. Mutant mice lacking either protein showed a major decrease in the number of parvalbumin interneurons specifically in the AC, and displayed audiogenic reflex seizures. Cdhr15- and Cdhr23-expressing interneuron precursors in Cdhr23<sup>-/-</sup> and Cdhr15<sup>-/-</sup> mouse embryos, respectively, failed to enter the embryonic cortex and were scattered throughout the subpallium, consistent with the cell polarity abnormalities we observed in vitro. In the absence of adhesion G protein-coupled receptor V1 (adgrv1), another hair bundle link protein, the entry of Cdhr23- and Cdhr15-expressing interneuron precursors into the embryonic cortex was also impaired. Our results demonstrate that a population of newborn interneurons is endowed with specific cdhr proteins necessary for these cells to reach the developing AC. We suggest that an &quot;early adhesion code&quot; targets populations of interneuron precursors to restricted neocortical regions belonging to the same functional area. These findings open up new perspectives for auditory rehabilitation and cortical therapies in patients."	"GSR is not essential for the maintenance of antioxidant defenses in mouse cochlea: Possible role of the thioredoxin system as a functional backup for GSR. Glutathione reductase (GSR), a key member of the glutathione antioxidant defense system, converts oxidized glutathione (GSSG) to reduced glutathione (GSH) and maintains the intracellular glutathione redox state to protect the cells from oxidative damage. Previous reports have shown that Gsr deficiency results in defects in host defense against bacterial infection, while diquat induces renal injury in Gsr hypomorphic mice. In flies, overexpression of GSR extended lifespan under hyperoxia. In the current study, we investigated the roles of GSR in cochlear antioxidant defense using Gsr homozygous knockout mice that were backcrossed onto the CBA/CaJ mouse strain, a normal-hearing strain that does not carry a specific Cdh23 mutation that causes progressive hair cell degeneration and early onset of hearing loss. Gsr-/- mice displayed a significant decrease in GSR activity and GSH/GSSG ratios in the cytosol of the inner ears. However, Gsr deficiency did not affect ABR (auditory brainstem response) hearing thresholds, wave I amplitudes or wave I latencies in young mice. No histological abnormalities were observed in the cochlea of Gsr-/- mice. Furthermore, there were no differences in the activities of cytosolic glutathione-related enzymes, including glutathione peroxidase and glutamate-cysteine ligase, or the levels of oxidative damage markers in the inner ears between WT and Gsr-/- mice. In contrast, Gsr deficiency resulted in increased activities of cytosolic thioredoxin and thioredoxin reductase in the inner ears. Therefore, under normal physiological conditions, GSR is not essential for the maintenance of antioxidant defenses in mouse cochlea. Given that the thioredoxin system is known to reduce GSSG to GSH in multiple species, our findings suggest that the thioredoxin system can support GSSG reduction in the mouse peripheral auditory system."	"Transcriptome analysis for the identification of cellular markers related to trabecular meshwork differentiation. Development of primary open-angle glaucoma (POAG) is associated with the malfunctioning trabecular meshwork (TM). Cell therapy offers great potential for the treatment of POAG, but requires the generation of functional TM cells in vitro to replace the lost/dysfunctional cells. TM differentiation in vitro from various stem cell types must be monitored by the expression of specific markers. However, no single definitive marker of the TM has been identified. To identify robust markers of TM differentiation, we performed global transcriptome profiling using high-density oligonucleotide microarray on ex vivo TM tissue and cultured TM progenitors. Corneal and scleral tissues were also used in the analysis. After removal of genes expressed in the cornea and sclera, 18 genes were identified that were differentially expressed in the TM relative to the other samples. CDH23, F5, KCNAB1, FGF9, SPP1, and HEY1 were selected among the genes highly expressed in the TM, together with BDNF which was repressed, compared to progenitors for further investigation. Expression analysis by qPCR verified the differential expression and immunofluorescence of the anterior segment confirmed strong expression in the TM. Three independent cohort of expression studies have identified novel markers, fitting in identifying TM cells and in evaluating directed TM differentiation in vitro."	"Targeted sequencing identifies novel variants involved in autosomal recessive hereditary hearing loss in Qatari families. Hereditary hearing loss is characterized by a very high genetic heterogeneity. In the Qatari population the role of GJB2, the worldwide HHL major player, seems to be quite limited compared to Caucasian populations. In this study we analysed 18 Qatari families affected by non-syndromic hearing loss using a targeted sequencing approach that allowed us to analyse 81 genes simultaneously. Thanks to this approach, 50% of these families (9 out of 18) resulted positive for the presence of likely causative alleles in 6 different genes: CDH23, MYO6, GJB6, OTOF, TMC1 and OTOA. In particular, 4 novel alleles were detected while the remaining ones were already described to be associated to HHL in other ethnic groups. Molecular modelling has been used to further investigate the role of novel alleles identified in CDH23 and TMC1 genes demonstrating their crucial role in Ca2+ binding and therefore possible functional role in proteins. Present study showed that an accurate molecular diagnosis based on next generation sequencing technologies might largely improve molecular diagnostics outcome leading to benefits for both genetic counseling and definition of recurrence risk."	"Outcomes of cochlear implantation for the patients with specific genetic etiologies: a systematic literature review. Most of the cases with gene mutations of intra-cochlear etiology showed relatively good CI outcomes. To progress toward more solid evidence-based CI intervention, a greater number of reports including CI outcomes for specific gene mutations are desired. Cochlear implantation (CI) is the most important and effective treatment for patients with profound sensorineural hearing loss. However, the outcomes of CI vary among patients. One of the reasons of this heterogeneous outcome for cochlear implantation is thought to be the heterogeneous nature of hearing loss. Indeed, genetic factors, the most common etiology in severe-to-profound hearing loss, might be one of the key determinants of outcomes for CI and electric acoustic stimulation (EAS). Patients with genetic causes involving an 'intra-cochlear' etiology show good CI/EAS outcomes. This review article aimed to summarize the reports on CI/EAS outcomes in patients with special genetic causes as well as to assist in future clinical decision-making. Most of the cases were suspected of an intra-cochlear etiology, such as those with GJB2, SLC26A4, and OTOF mutations, which showed relatively good CI outcomes. However, there have only been a limited number of reports on patients with other gene mutations."	"Usher syndrome type 1-associated cadherins shape the photoreceptor outer segment. Usher syndrome type 1 (USH1) causes combined hearing and sight defects, but how mutations in USH1 genes lead to retinal dystrophy in patients remains elusive. The USH1 protein complex is associated with calyceal processes, which are microvilli of unknown function surrounding the base of the photoreceptor outer segment. We show that in Xenopus tropicalis, these processes are connected to the outer-segment membrane by links composed of protocadherin-15 (USH1F protein). Protocadherin-15 deficiency, obtained by a knockdown approach, leads to impaired photoreceptor function and abnormally shaped photoreceptor outer segments. Rod basal outer disks displayed excessive outgrowth, and cone outer segments were curved, with lamellae of heterogeneous sizes, defects also observed upon knockdown of Cdh23, encoding cadherin-23 (USH1D protein). The calyceal processes were virtually absent in cones and displayed markedly reduced F-actin content in rods, suggesting that protocadherin-15-containing links are essential for their development and/or maintenance. We propose that calyceal processes, together with their associated links, control the sizing of rod disks and cone lamellae throughout their daily renewal."	"Germline Mutations in CDH23, Encoding Cadherin-Related 23, Are Associated with Both Familial and Sporadic Pituitary Adenomas. Pituitary adenoma (PA) is one of the most common intracranial neoplasms. Several genetic predisposing factors for PA have been identified, but they account for a small portion of cases. In this study, we sought to identify the PA genetic risk factors by focusing on causative mutations for PAs. Among the 4 affected and 17 asymptomatic members from one family with familial PA, whole-exome sequencing identified cosegregation of the PA phenotype with the heterozygous missense mutation c.4136G&gt;T (p.Arg1379Leu) in cadherin-related 23 (CDH23). This mutation causes an amino acid substitution in the calcium-binding motif of the extracellular cadherin (EC) domains of CDH23 and is predicted to impair cell-cell adhesion. Genomic screening in a total of 12 families with familial PA (20 individuals), 125 individuals with sporadic PA, and 260 control individuals showed that 33% of the families with familial PA (4/12) and 12% of individuals with sporadic PA (15/125) harbored functional CDH23 variants. In contrast, 0.8% of the healthy control individuals (2/260) carried functional CDH23 variants. Gene-based analysis also revealed a significant association between CDH23 genotype and PA (p = 5.54 × 10<sup>-7</sup>). Moreover, PA individuals who did not harbor functional CDH23 variants displayed tumors that were larger in size (p = 0.005) and more invasive (p &lt; 0.001). Therefore, mutations in CDH23 are linked with familial and sporadic PA and could play important roles in the pathogenesis of PA."	"Genetic Predisposition to Sporadic Congenital Hearing Loss in a Pediatric Population. Discriminating between inherited and non-inherited sporadic hearing loss is challenging. Here, we attempted to delineate genetic inheritance in simplex cases of severe-to-profound congenital hearing loss in Korean children. Variations in SLC26A4 and GJB2 in 28 children with bilateral severe-to-profound non-syndromic hearing loss (NSHL) without familial history were analyzed using Sanger sequencing. Genetic analysis of individuals without mutations in SLC26A4 and GJB2 was performed by whole exome sequencing (WES). Bi-allelic mutations in SLC26A4 and GJB2 were identified in 12 and 3 subjects, respectively. Of the 13 individuals without mutations in SLC26A4 and GJB2, 2 and 1 carried compound heterozygous mutations in MYO15A and CDH23, respectively. Thus, 64.3% (18/28) of individuals with NSHL were determined to be genetically predisposed. Individuals with sporadic severe-to-profound NSHL were found to mostly exhibit an autosomal recessive inheritance pattern. Novel causative candidate genes for NSHL were identified by analysis of WES data of 10 families without mutations in known causative genes. Bi-allelic mutations predisposing to NSHL were identified in 64.3% of subjects with sporadic severe-to-profound NSHL. Given that several causative genes for NSHL are still unidentified, genetic inheritance of sporadic congenital hearing loss could be more common than that indicated by our results."	"Effects of Cdh23 single nucleotide substitutions on age-related hearing loss in C57BL/6 and 129S1/Sv mice and comparisons with congenic strains. A single nucleotide variant (SNV) of the cadherin 23 gene (Cdh23<sup>c.753A</sup>), common to many inbred mouse strains, accelerates age-related hearing loss (AHL) and can worsen auditory phenotypes of other mutations. We used homologous recombination in C57BL/6 NJ (B6N) and 129S1/SvImJ (129S1) embryonic stem cells to engineer mouse strains with reciprocal single base pair substitutions (B6-Cdh23<sup>c.753A&gt;G</sup> and 129S1-Cdh23<sup>c.753G&gt;A</sup>). We compared ABR thresholds and cochlear pathologies of these SNV mice with those of congenic (B6.129S1-Cdh23<sup>Ahl+</sup> and 129S1.B6-Cdh23<sup>ahl</sup>) and parental (B6N and 129S1) strain mice. Results verified the protective effect of the Cdh23<sup>c.753G</sup> allele, which prevented high frequency hearing loss in B6 mice to at least 18 months of age, and the AHL-inducing effect of the Cdh23<sup>c.753A</sup> allele, which worsened hearing loss in 129S1 mice. ABR thresholds differed between 129S-Cdh23<sup>c.753A</sup> SNV and 129S1.B6-Cdh23<sup>ahl</sup> congenic mice, and a linkage backcross involving these strains localized a Chr 10 QTL contributing to the difference. These results illustrate the large effects that strain background and congenic regions have on the hearing loss associated with Cdh23<sup>c.753</sup>alleles. Importantly, the B6-Cdh23<sup>c.753G</sup>strain can be used to eliminate the confounding influence of the Cdh23<sup>c.753A</sup>variant in hearing studies of B6 mice and mutant mice on the B6 background."	"Comprehensive genetic exploration of selective tooth agenesis of mandibular incisors by exome sequencing. Tooth agenesis is described as the absence of one or more teeth. It is caused by a failure in tooth development and is one of the most common human developmental anomalies. We herein report genomic analyses of selective mandibular incisor agenesis (SMIA) using exome sequencing. Two Japanese families with SMIA were subjected to exome sequencing, and family with sequence similarity 65 member A (FAM65), nuclear factor of activated T-cells 3 (NFATC3) and cadherin-related 23 gene (CDH23) were detected. In the follow-up study, 51 Japanese and 32 Korean sporadic patients with SMIA were subjected to exome analyses, and 18 reported variants in PAX9, AXIN2, EDA, EDAR, WNT10A, BMP2 and GREM2 and 27 variants of FAM65, NFATC3 and CDH23 were found in 38 patients. Our comprehensive genetic study of SMIA will pave the way for a full understanding of the genetic etiology of SMIA and provide targets for treatment."	"Laser-capture micro dissection combined with next-generation sequencing analysis of cell type-specific deafness gene expression in the mouse cochlea. Cochlear implantation (CI), which directly stimulates the cochlear nerves, is the most effective and widely used medical intervention for patients with severe to profound sensorineural hearing loss. The etiology of the hearing loss is speculated to have a major influence of CI outcomes, particularly in cases resulting from mutations in genes preferentially expressed in the spiral ganglion region. To elucidate precise gene expression levels in each part of the cochlea, we performed laser-capture micro dissection in combination with next-generation sequencing analysis and determined the expression levels of all known deafness-associated genes in the organ of Corti, spiral ganglion, lateral wall, and spiral limbs. The results were generally consistent with previous reports based on immunocytochemistry or in situ hybridization. As a notable result, the genes associated with many kinds of syndromic hearing loss (such as Clpp, Hars2, Hsd17b4, Lars2 for Perrault syndrome, Polr1c and Polr1d for Treacher Collins syndrome, Ndp for Norrie Disease, Kal for Kallmann syndrome, Edn3 and Snai2 for Waardenburg Syndrome, Col4a3 for Alport syndrome, Sema3e for CHARGE syndrome, Col9a1 for Sticker syndrome, Cdh23, Cib2, Clrn1, Pcdh15, Ush1c, Ush2a, Whrn for Usher syndrome and Wfs1 for Wolfram syndrome) showed higher levels of expression in the spiral ganglion than in other parts of the cochlea. This dataset will provide a base for more detailed analysis in order to clarify gene functions in the cochlea as well as predict CI outcomes based on gene expression data."	"[Association between CDH23 gene polymorphisms and susceptibility to noise-induced hearing loss in the Chinese population: a meta-analysis]. Objective: To investigate the association between cadherin-23 (CDH23) gene polymorphisms and susceptibility to noise-induced hearing loss (NIHL) in the Chinese population through a meta-analysis. Methods: In June 2016, CNKI, VIP, Wanfang Data, and PubMed were searched for studies on the association between CDH23 gene polymorphisms and susceptibility to NIHL in the Chinese population. The articles were screened according to inclusion and exclusion criteria and related data were extracted. RevMan 5.3 was used for the meta-analysis. Results: A total of three Chinese articles were included. For CDH23-rs1227049, the risk of NIHL in people with C allele was 0.82 times (95%CI 0.39-1.73) that in people with G allele, the risk of NIHL in people with CG+CC genotype in the dominant model was 0.70 times (95%CI 0.34-1.43) that in people with GG genotype, the risk of NIHL in people with CC genotype in the recessive model was 1.23 times (95%CI 0.28-5.43) that in people with CG+GG genotype, and the risk of NIHL in people with CC genotype in the additive model was 1.05 times (95%CI 0.20-5.44) that in people with GG genotype (all P&gt;0.05) . For CDH23-rs1227051, the risk of NIHL in people with T allele was 0.98 times (95%CI 0.71-1.37) that in people with C allele, and the risk of NIHL in people with CT+CC genotype in the dominant model was 1.09 times (95%CI 0.75-1.57) that in patients with TT genotype (both P&gt;0.05) . Conclusion: There is still no enough evidence for the determination of CDH23-rs1227049 and CDH23-rs1227051 to be the susceptibility gene loci of NIHL. 目的:对中国人群钙黏素23(CDH23)基因多态性与噪声性听力损失(NIHL)易感性关系进行meta分析。 方法:于2016年6月,检索CNKI、维普、万方、PubMed数据库获取关于中国人群CDH23基因多态性与NIHL易感性关系的研究,按纳入与排除标准筛选文献、提取资料,采用RevMan 5.3进行meta分析。 结果:共纳入3篇中文文献。meta分析结果显示,CDH23-rs1227049位点C等位基因NIHL发病风险是G等位基因的0.82倍(95%CI:0.39~1.73),显性模型CG+CC基因型NIHL发病风险是GG基因型的0.70倍(95%CI:0.34~1.43),隐性模型CC基因型NIHL发病风险是CG+GG基因型的1.23倍(95%CI:0.28~5.43),加性模型CC基因型NIHL发病风险是GG基因型的1.05倍(95%CI:0.20~5.44),但差异均无统计学意义(均P&gt;0.05);CDH23-rs1227051位点T等位基因NIHL发病风险是C等位基因的0.98倍(95%CI:0.71~1.37),显性模型CT+CC基因型NIHL发病风险是TT基因型的1.09倍(95%CI:0.75~1.57),但差异也均无统计学意义(均P&gt;0.05)。 结论:尚不能认为CDH23-rs1227049、CDH23-rs1227051是NIHL的易感基因位点。."	"Whole exome sequencing using Ion Proton system enables reliable genetic diagnosis of inherited retinal dystrophies. Inherited retinal dystrophies (IRD) comprise a wide group of clinically and genetically complex diseases that progressively affect the retina. Over recent years, the development of next-generation sequencing (NGS) methods has transformed our ability to diagnose heterogeneous diseases. In this work, we have evaluated the implementation of whole exome sequencing (WES) for the molecular diagnosis of IRD. Using Ion Proton<sup>TM</sup> system, we simultaneously analyzed 212 genes that are responsible for more than 25 syndromic and non-syndromic IRD. This approach was used to evaluate 59 unrelated families, with the pathogenic variant(s) successfully identified in 71.18% of cases. Interestingly, the mutation detection rate varied substantially depending on the IRD subtype. Overall, we found 63 different mutations (21 novel) in 29 distinct genes, and performed in vivo functional studies to determine the deleterious impact of variants identified in MERTK, CDH23, and RPGRIP1. In addition, we provide evidences that support CDHR1 as a gene responsible for autosomal recessive retinitis pigmentosa with early macular affectation, and present data regarding the disease mechanism of this gene. Altogether, these results demonstrate that targeted WES of all IRD genes is a reliable, hypothesis-free approach, and a cost- and time-effective strategy for the routine genetic diagnosis of retinal dystrophies."	"Contrasting patterns of adaptive sequence convergence among echolocating mammals. Several recent studies have described genes demonstrating adaptive sequence convergence between echolocating bats and dolphin, suggesting that common selective pressures can induce common molecular changes, even in distantly related species. However, in the case of the auditory genes Otoferlin (Otof), Cadherin 23 (Cdh23) and Protocadherin 15 (Pcdh15), the reported sequence convergence was supported only by incongruent gene and species trees and counts of convergent substitutions. Therefore, it remains unclear whether echolocating bats and dolphin really do demonstrate evidence of adaptive sequence convergence, or whether there is simply a high level of random background convergence in these genes. To address this question, we estimated the number of convergent and divergent amino acid substitutions along all independent branches of a sufficiently deep phylogeny containing between 22 and 32 mammals for each gene, and compared convergence between the two proposed suborders of bat, Yangochiroptera and Yinpterochiroptera, and dolphin. We find no support for convergence between bats and dolphin in the gene Pcdh15. For the gene Otof we report minimal evidence for convergent evolution only between the Yinpterochiroptera and dolphin. Cdh23 displayed a high level of convergence between dolphin and the Yinpterochiroptera. In addition, dolphin and certain members of the Yangochiroptera that emit high frequency echolocation calls shared several unique convergent substitutions. These results indicate that the convergent evolution of Cdh23 was likely driven by selection for hearing above a certain frequency threshold. Moreover, the contrasting patterns of convergence between the two bat suborders and dolphin in all auditory genes studied thus far suggest echolocation may have evolved independently in the Yinpterochiroptera and Yangochiroptera."	"ER stress inhibitor attenuates hearing loss and hair cell death in Cdh23<sup>erl/erl</sup> mutant mice. Hearing loss is one of the most common sensory impairments in humans. Mouse mutant models helped us to better understand the mechanisms of hearing loss. Recently, we have discovered that the erlong (erl) mutation of the cadherin23 (Cdh23) gene leads to hearing loss due to hair cell apoptosis. In this study, we aimed to reveal the molecular pathways upstream to apoptosis in hair cells to exploit more effective therapeutics than an anti-apoptosis strategy. Our results suggest that endoplasmic reticulum (ER) stress is the earliest molecular event leading to the apoptosis of hair cells and hearing loss in erl mice. We also report that the ER stress inhibitor, Salubrinal (Sal), could delay the progression of hearing loss and preserve hair cells. Our results provide evidence that therapies targeting signaling pathways in ER stress development prevent hair cell apoptosis at an early stage and lead to better outcomes than those targeting downstream factors, such as tip-link degeneration and apoptosis."	"Plasma Membrane Targeting of Protocadherin 15 Is Regulated by the Golgi-Associated Chaperone Protein PIST. Protocadherin 15 (PCDH15) is a core component of hair cell tip-links and crucial for proper function of inner ear hair cells. Mutations of PCDH15 gene cause syndromic and nonsyndromic hearing loss. At present, the regulatory mechanisms responsible for the intracellular transportation of PCDH15 largely remain unknown. Here we show that PIST, a Golgi-associated, PDZ domain-containing protein, interacts with PCDH15. The interaction is mediated by the PDZ domain of PIST and the C-terminal PDZ domain-binding interface (PBI) of PCDH15. Through this interaction, PIST retains PCDH15 in the trans-Golgi network (TGN) and reduces the membrane expression of PCDH15. We have previously showed that PIST regulates the membrane expression of another tip-link component, cadherin 23 (CDH23). Taken together, our finding suggests that PIST regulates the intracellular trafficking and membrane targeting of the tip-link proteins CDH23 and PCDH15."	"Discovery of CDH23 as a Significant Contributor to Progressive Postlingual Sensorineural Hearing Loss in Koreans. CDH23 mutations have mostly been associated with prelingual severe-to-profound sensorineural hearing loss (SNHL) in either syndromic or nonsyndromic SNHL (DFNB12). Herein, we demonstrate the contribution of CDH23 mutations to postlingual nonsyndromic SNHL (NS-SNHL). We screened 32 Korean adult probands with postlingual NS-SNHL sporadically or in autosomal recessive fashion using targeted panel or whole exome sequencing. We identified four (12.5%, 4/32) potential postlingual DFNB12 families that segregated the recessive CDH23 variants, qualifying for our criteria along with rapidly progressive SNHL. Three of the four families carried one definite pathogenic CDH23 variant previously known as the prelingual DFNB12 variant in a trans configuration with rare CDH23 variants. To determine the contribution of rare CDH23 variants to the postlingual NS-SNHL, we checked the minor allele frequency (MAF) of CDH23 variants detected from our postlingual NS-SNHL cohort and prelingual NS-SNHL cohort, among the 2040 normal control chromosomes. The allele frequency of these CDH23 variants in our postlingual cohort was 12.5%, which was significantly higher than that of the 2040 control chromosomes (5.53%), confirming the contribution of these rare CDH23 variants to postlingual NS-SNHL. Furthermore, MAF of rare CDH23 variants from the postlingual NS-SNHL group was significantly higher than that from the prelingual NS-SNHL group. This study demonstrates an important contribution of CDH23 mutations to poslingual NS-SNHL and shows that the phenotypic spectrum of DFNB12 can be broadened even into the presbycusis, depending on the pathogenic potential of variants. We also propose that pathogenic potential of CDH23 variants and the clinical fate of DFNB12 may be predicted by MAF."	"Screening of DFNB3 in Iranian families with autosomal recessive non-syndromic hearing loss reveals a novel pathogenic mutation in the MyTh4 domain of the MYO15A gene in a linked family. Non-syndromic sensorineural hearing loss (NSHL) is a common disorder affecting approximately 1 in 500 newborns. This type of hearing loss is extremely heterogeneous and includes over 100 loci. Mutations in the GJB2 gene have been implicated in about half of autosomal recessive non-syndromic hearing loss (ARNSHL) cases, making this the most common cause of ARNSHL. For the latter form of deafness, most frequent genes proposed include GJB2, SLC26A4, MYO15A, OTOF, and CDH23 worldwide. The aim of the present study was to define the role and frequency of MYO15A gene mutation in Iranian families. In this study 30 Iranian families were enrolled with over three deaf children and negative for GJB2. Then linkage analysis was performed by six DFNB3 short tandem repeat markers. Following that, mutation detection accomplished using DNA sequencing. One family (3.33%) showed linkage to DFNB3 and a novel mutation was identified in the MYO15A gene (c.6442T&gt;A): as the disease-causing mutation. Mutation co-segregated with hearing loss in the family but was not present in the 100 ethnicity-matched controls. Our results confirmed that the hearing loss of the linked Iranian family was caused by a novel missense mutation in the MYO15A gene. This mutation is the first to be reported in the world and affects the first MyTH4 domain of the protein."	"CDH23 Related Hearing Loss: A New Genetic Risk Factor for Semicircular Canal Dehiscence? To investigate the prevalence and relative risk of semicircular canal dehiscence (SCD) in pediatric patients with CDH23 pathogenic variants (Usher syndrome or non-syndromic deafness) compared with age-matched controls. Retrospective cohort study. Multi-institutional study. Pediatric patients (ages 0-5 years) were compared based on the presence of biallelic pathogenic variants in CDH23 with pediatric controls who underwent computed tomography (CT) temporal bone scan for alternative purposes. Retrospective review of diagnostic high resolution CT temporal bone scans and magnetic resonance imaging (MRI) for evaluation of SCD. Superior and posterior semicircular canals were evaluated by a neuroradiologist for presence of SCD or abnormal development. Forty-two CT scans were reviewed for SCD. Eighty-six percent of the CDH23 variant group had abnormalities in at least one canal compared with only 12% in age-matched controls. In the CDH23 variant group there were four patients with superior SCD (57%, RR = 10.0) and three patients with posterior canal abnormalities (43%, RR = 7.5) compared with two, and two patients, respectively, in the control population. Four CDH23 variant children had bilateral abnormalities. One child had thinning or dehiscence in both the superior and posterior canals. Relative risk of SCD in children with CDH23 pathogenic variants is 7.5 (p &lt; 0.001) compared with the pediatric control population. Children with a CDH23 pathogenic variants are at significantly increased risk of having SCD and this may be a contributing factor to the vestibular dysfunction in Usher syndrome type 1D patient population."	"Diversity of the Genes Implicated in Algerian Patients Affected by Usher Syndrome. Usher syndrome (USH) is an autosomal recessive disorder characterized by a dual sensory impairment affecting hearing and vision. USH is clinically and genetically heterogeneous. Ten different causal genes have been reported. We studied the molecular bases of the disease in 18 unrelated Algerian patients by targeted-exome sequencing, and identified the causal biallelic mutations in all of them: 16 patients carried the mutations at the homozygous state and 2 at the compound heterozygous state. Nine of the 17 different mutations detected in MYO7A (1 of 5 mutations), CDH23 (4 of 7 mutations), PCDH15 (1 mutation), USH1C (1 mutation), USH1G (1 mutation), and USH2A (1 of 2 mutations), had not been previously reported. The deleterious consequences of a missense mutation of CDH23 (p.Asp1501Asn) and the in-frame single codon deletion in USH1G (p.Ala397del) on the corresponding proteins were predicted from the solved 3D-structures of extracellular cadherin (EC) domains of cadherin-23 and the sterile alpha motif (SAM) domain of USH1G/sans, respectively. In addition, we were able to show that the USH1G mutation is likely to affect the binding interface between the SAM domain and USH1C/harmonin. This should spur the use of 3D-structures, not only of isolated protein domains, but also of protein-protein interaction interfaces, to predict the functional impact of mutations detected in the USH genes. "	"Establishment of a Flexible Real-Time Polymerase Chain Reaction-Based Platform for Detecting Prevalent Deafness Mutations Associated with Variable Degree of Sensorineural Hearing Loss in Koreans. Many cutting-edge technologies based on next-generation sequencing (NGS) have been employed to identify candidate variants responsible for sensorineural hearing loss (SNHL). However, these methods have limitations preventing their wide clinical use for primary screening, in that they remain costly and it is not always suitable to analyze massive amounts of data. Several different DNA chips have been developed for screening prevalent mutations at a lower cost. However, most of these platforms do not offer the flexibility to add or remove target mutations, thereby limiting their wider use in a field that requires frequent updates. Therefore, we aimed to establish a simpler and more flexible molecular diagnostic platform based on ethnicity-specific mutation spectrums of SNHL, which would enable bypassing unnecessary filtering steps in a substantial portion of cases. In addition, we expanded the screening platform to cover varying degrees of SNHL. With this aim, we selected 11 variants of 5 genes (GJB2, SLC26A4, MTRNR1, TMPRSS3, and CDH23) showing high prevalence with varying degrees in Koreans and developed the U-TOP™ HL Genotyping Kit, a real-time PCR-based method using the MeltingArray technique and peptide nucleic acid probes. The results of 271 DNA samples with wild type sequences or mutations in homo- or heterozygote form were compared between the U-TOP™ HL Genotyping Kit and Sanger sequencing. The positive and negative predictive values were 100%, and this method showed perfect agreement with Sanger sequencing, with a Kappa value of 1.00. The U-TOP™ HL Genotyping Kit showed excellent performance in detecting varying degrees and phenotypes of SNHL mutations in both homozygote and heterozygote forms, which are highly prevalent in the Korean population. This platform will serve as a useful and cost-effective first-line screening tool for varying degrees of genetic SNHL and facilitate genome-based personalized hearing rehabilitation for the Korean population. "	"Stereocilia morphogenesis and maintenance through regulation of actin stability. Stereocilia are actin-based protrusions on auditory and vestibular sensory cells that are required for hearing and balance. They convert physical force from sound, head movement or gravity into an electrical signal, a process that is called mechanoelectrical transduction. This function depends on the ability of sensory cells to grow stereocilia of defined lengths. These protrusions form a bundle with a highly precise geometry that is required to detect nanoscale movements encountered in the inner ear. Congenital or progressive stereocilia degeneration causes hearing loss. Thus, understanding stereocilia hair bundle structure, development, and maintenance is pivotal to understanding the pathogenesis of deafness. Stereocilia cores are made from a tightly packed array of parallel, crosslinked actin filaments, the length and stability of which are regulated in part by myosin motors, actin crosslinkers and capping proteins. This review aims to describe stereocilia actin regulation in the context of an emerging &quot;tip turnover&quot; model where actin assembles and disassembles at stereocilia tips while the remainder of the core is exceptionally stable."	"Prognostic Role of the Expression of Invasion-Related Molecules in Glioblastoma. Background Glioblastoma multiforme (GBM) is the most common malignant disease of the central nervous system. Its prognosis is unfavorable, and the median overall survival of patients is 16 to 24 months. The main cause of the poor survival data are the extensive invasion of cancer cells to the neighboring parenchyma, thus leading to inevitable local recurrence. The extracellular matrix (ECM) is a known factor in tumor invasion, and differences in the ECM of nontumor brain and glioblastoma has been proven. Methods In this research, 20 invasion-related expressions of ECM components were determined in 26 GBM flash-frozen samples using quantitative reverse transcription-polymerase chain reaction and proteomic measurements. Expression data were then set against the survival data of the patients. Results Significant alterations between groups with different survival rates could not be established in the individual evaluation of the expression level of the selected molecules. However, statistical analysis of the expression pattern of invasion-related molecules revealed a correlation with prognosis. The positive predictive values of the messenger RNA (mRNA) and the proteomic expression studies were 0.85 and 0.89, respectively. The receiver operation characteristic value was 0.775 for the mRNA expression data and 0.875 for the protein expression data. Furthermore, a group of molecules, including brevican, cadherin-12, integrin β1, integrin α3, laminin α4, and laminin β1, that play a prominent role in invasion were identified. Conclusions Joint assessment of the expression of invasion-related molecules provides a specific invasion spectrum of the tumor that correlates with the survival of glioblastoma patients. Using statistical classifiers enables the adoption of an invasion spectrum as a considerably accurate prognostic factor while gaining predictive information on potential molecular oncotherapeutic targets at the same time."	"Genetic analysis of Tunisian families with Usher syndrome type 1: toward improving early molecular diagnosis. Usher syndrome accounts for about 50% of all hereditary deaf-blindness cases. The most severe form of this syndrome, Usher syndrome type I (USH1), is characterized by profound congenital sensorineural deafness, vestibular dysfunction, and retinitis pigmentosa. Six USH1 genes have been identified, MYO7A, CDH23, PCDH15, USH1C, SANS, and CIB2, encoding myosin VIIA, cadherin-23, protocadherin-15, harmonin, scaffold protein containing ankyrin repeats and a sterile alpha motif (SAM) domain, and calcium- and integrin-binding member 2, respectively. In the present study, we recruited four Tunisian families with a diagnosis of USH1, together with healthy unrelated controls. Affected members underwent detailed audiologic and ocular examinations. We used the North African Deafness (NADf) chip to search for known North African mutations associated with USH. Then, we selected microsatellite markers covering USH1 known loci to genotype the DNA samples. Finally, we performed DNA sequencing of three known USH1 genes: MYO7A, PCDH15, and USH1C. Four biallelic mutations, all single base changes, were found in the MYO7A, USH1C, and PCDH15 genes. These mutations consist of a previously reported splicing defect c.470+1G&gt;A in MYO7A, three novel variants, including two nonsense (p.Arg3X and p.Arg134X) in USH1C and PCDH15, respectively, and one frameshift (p.Lys615Asnfs*6) in MYO7A. We found a remarkable genetic heterogeneity in the studied families with USH1 with a variety of mutations, among which three were novel. These novel mutations will be included in the NADf mutation screening chip that will allow a higher diagnosis efficiency of this extremely genetically heterogeneous disease. Ultimately, efficient molecular diagnosis of USH in a patient's early childhood is of utmost importance, allowing better educational and therapeutic management."	"Alternative splicing of inner-ear-expressed genes. Alternative splicing plays a fundamental role in the development and physiological function of the inner ear. Inner-ear-specific gene splicing is necessary to establish the identity and maintain the function of the inner ear. For example, exon 68 of Cadherin 23 (Cdh23) gene is subject to inner-ear-specific alternative splicing, and as a result, Cdh23(+ 68) is only expressed in inner ear hair cells. Alternative splicing along the tonotopic axis of the cochlea contributes to frequency tuning, particularly in lower vertebrates, such as chickens and turtles. Differential splicing of Kcnma1, which encodes for the α subunit of the Ca(2+)-activated K(+) channel (BK channel), has been suggested to affect the channel gating properties and is important for frequency tuning. Consequently, deficits in alternative splicing have been shown to cause hearing loss, as we can observe in Bronx Waltzer (bv) mice and Sfswap mutant mice. Despite the advances in this field, the regulation of alternative splicing in the inner ear remains elusive. Further investigation is also needed to clarify the mechanism of hearing loss caused by alternative splicing deficits. "	"Cadherin 23-C Regulates Microtubule Networks by Modifying CAMSAP3's Function. Cadherin-related 23 (CDH23) is an adhesive protein important for hearing and vision, while CAMSAP3/Marshalin is a microtubule (MT) minus-end binding protein that regulates MT networks. Although both CDH23 and CAMSAP3/Marshalin are expressed in the organ of Corti, and carry several protein-protein interaction domains, no functional connection between these two proteins has been proposed. In this report, we demonstrate that the C isoform of CDH23 (CDH23-C) directly binds to CAMSAP3/Marshalin and modifies its function by inhibiting CAMSAP3/Marshalin-induced bundle formation, a process that requires a tubulin-binding domain called CKK. We further identified a conserved N-terminal region of CDH23-C that binds to the CKK domain. This CKK binding motif (CBM) is adjacent to the domain that interacts with harmonin, a binding partner of CDH23 implicated in deafness. Because the human Usher Syndrome 1D-associated mutation, CDH23 R3175H, maps to the CBM, we created a matched mutation in mouse CDH23-C at R55H. Both in vivo and in vitro assays decreased the ability of CDH23-C to interact with CAMSAP3/Marshalin, indicating that the interaction between CDH23 and CAMSAP3/Marshalin plays a vital role in hearing and vision. Together, our data suggest that CDH23-C is a CAMSAP3/Marshalin-binding protein that can modify MT networks indirectly through its interaction with CAMSAP3/Marshalin."	"Differential effects of Cdh23(753A) on auditory and vestibular functional aging in C57BL/6J mice. The C57BL/6J (B6) mouse strain carries a cadherin 23 mutation (Cdh23(753A), also known as Ahl), which affects inner ear structures and results in age-related hearing loss. The B6.CAST strain harbors the wild type Cdh23 gene, and hence, the influence of Ahl is absent. The purpose of the present study was to characterize the effect of age and gender on gravity receptor function in B6 and B6.CAST strains and to compare functional aging between auditory and vestibular modalities. Auditory sensitivity declined at significantly faster rates than gravity receptor sensitivity for both strains. Indeed, vestibular functional aging was minimal for both strains. The comparatively smaller loss of macular versus cochlear sensitivity in both the B6 and B6.CAST strains suggests that the contribution of Ahl to the aging of the vestibular system is minimal, and thus very different than its influence on aging of the auditory system. Alternatively, there exist unidentified genes or gene modifiers that serve to slow the degeneration of gravity receptor structures and maintain gravity receptor sensitivity into advanced age."	"Heterozygous mutation of Ush1g/Sans in mice causes early-onset progressive hearing loss, which is recovered by reconstituting the strain-specific mutation in Cdh23. Most clinical reports have suggested that patients with congenital profound hearing loss have recessive mutations in deafness genes, whereas dominant alleles are associated with progressive hearing loss (PHL). Jackson shaker (Ush1g<sup>js</sup>) is a mouse model of recessive deafness that exhibits congenital profound deafness caused by the homozygous mutation of Ush1g/Sans on chromosome 11. We found that C57BL/6J-Ush1g<sup>js</sup><sup>/+</sup> heterozygous mice exhibited early-onset PHL (ePHL) accompanied by progressive degeneration of stereocilia in the cochlear outer hair cells. Interestingly, ePHL did not develop in mutant mice with the C3H/HeN background, thus suggesting that other genetic factors are required for ePHL development. Therefore, we performed classical genetic analyses and found that the occurrence of ePHL in Ush1g<sup>js</sup><sup>/+</sup> mice was associated with an interval in chromosome 10 that contains the cadherin 23 gene (Cdh23), which is also responsible for human deafness. To confirm this mutation effect, we generated C57BL/6J-Ush1g<sup>js</sup><sup>/+</sup>, Cdh23<sup>c.753A</sup><sup>/G</sup> double-heterozygous mice by using the CRISPR/Cas9-mediated Cdh23<sup>c.753A</sup><sup>&gt;G</sup> knock-in method. The Cdh23<sup>c.753A</sup><sup>/G</sup> mice harbored a one-base substitution (A for G), and the homozygous A allele caused moderate hearing loss with aging. Analyses revealed the complete recovery of ePHL and stereocilia degeneration in C57BL/6J-Ush1g<sup>js</sup><sup>/+</sup> mice. These results clearly show that the development of ePHL requires at least two mutant alleles of the Ush1g and Cdh23 genes. Our results also suggest that because the SANS and CDH23 proteins form a complex in the stereocilia, the interaction between these proteins may play key roles in the maintenance of stereocilia and the prevention of ePHL."	"Sector Retinitis Pigmentosa Associated With Novel Compound Heterozygous Mutations of CDH23. Usher syndrome is an autosomal recessive condition characterized by retinitis pigmentosa (RP) and congenital hearing loss, with or without vestibular dysfunction. Allelic variants of CDH23 cause both Usher syndrome type 1D (USH1D) and a form of nonsyndromic hearing loss (DFNB12). The authors describe here a 34-year-old patient with congenital hearing loss and a new diagnosis of sector RP who was found to have two novel compound heterozygous mutations in CDH23, including one missense (c.8530C &gt; A; p.Pro2844Thr) and one splice-site (c.5820 + 5G &gt; A) mutation. This is the first report of sector RP associated with these types of mutations in CDH23."	"Correction of the auditory phenotype in C57BL/6N mice via CRISPR/Cas9-mediated homology directed repair. Nuclease-based technologies have been developed that enable targeting of specific DNA sequences directly in the zygote. These approaches provide an opportunity to modify the genomes of inbred mice, and allow the removal of strain-specific mutations that confound phenotypic assessment. One such mutation is the Cdh23 (ahl) allele, present in several commonly used inbred mouse strains, which predisposes to age-related progressive hearing loss. We have used targeted CRISPR/Cas9-mediated homology directed repair (HDR) to correct the Cdh23 (ahl) allele directly in C57BL/6NTac zygotes. Employing offset-nicking Cas9 (D10A) nickase with paired RNA guides and a single-stranded oligonucleotide donor template we show that allele repair was successfully achieved. To investigate potential Cas9-mediated 'off-target' mutations in our corrected mouse, we undertook whole-genome sequencing and assessed the 'off-target' sites predicted for the guide RNAs (≤4 nucleotide mis-matches). No induced sequence changes were identified at any of these sites. Correction of the progressive hearing loss phenotype was demonstrated using auditory-evoked brainstem response testing of mice at 24 and 36 weeks of age, and rescue of the progressive loss of sensory hair cell stereocilia bundles was confirmed using scanning electron microscopy of dissected cochleae from 36-week-old mice. CRISPR/Cas9-mediated HDR has been successfully utilised to efficiently correct the Cdh23 (ahl) allele in C57BL/6NTac mice, and rescue the associated auditory phenotype. The corrected mice described in this report will allow age-related auditory phenotyping studies to be undertaken using C57BL/6NTac-derived models, such as those generated by the International Mouse Phenotyping Consortium (IMPC) programme."	"Discovery of gene-gene interactions across multiple independent data sets of late onset Alzheimer disease from the Alzheimer Disease Genetics Consortium. Late-onset Alzheimer disease (AD) has a complex genetic etiology, involving locus heterogeneity, polygenic inheritance, and gene-gene interactions; however, the investigation of interactions in recent genome-wide association studies has been limited. We used a biological knowledge-driven approach to evaluate gene-gene interactions for consistency across 13 data sets from the Alzheimer Disease Genetics Consortium. Fifteen single nucleotide polymorphism (SNP)-SNP pairs within 3 gene-gene combinations were identified: SIRT1 × ABCB1, PSAP × PEBP4, and GRIN2B × ADRA1A. In addition, we extend a previously identified interaction from an endophenotype analysis between RYR3 × CACNA1C. Finally, post hoc gene expression analyses of the implicated SNPs further implicate SIRT1 and ABCB1, and implicate CDH23 which was most recently identified as an AD risk locus in an epigenetic analysis of AD. The observed interactions in this article highlight ways in which genotypic variation related to disease may depend on the genetic context in which it occurs. Further, our results highlight the utility of evaluating genetic interactions to explain additional variance in AD risk and identify novel molecular mechanisms of AD pathogenesis. "	"Frequency of Usher syndrome type 1 in deaf children by massively parallel DNA sequencing. Usher syndrome type 1 (USH1) is the most severe of the three USH subtypes due to its profound hearing loss, absent vestibular response and retinitis pigmentosa appearing at a prepubescent age. Six causative genes have been identified for USH1, making early diagnosis and therapy possible through DNA testing. Targeted exon sequencing of selected genes using massively parallel DNA sequencing (MPS) technology enables clinicians to systematically tackle previously intractable monogenic disorders and improve molecular diagnosis. Using MPS along with direct sequence analysis, we screened 227 unrelated non-syndromic deaf children and detected recessive mutations in USH1 causative genes in five patients (2.2%): three patients harbored MYO7A mutations and one each carried CDH23 or PCDH15 mutations. As indicated by an earlier genotype-phenotype correlation study of the CDH23 and PCDH15 genes, we considered the latter two patients to have USH1. Based on clinical findings, it was also highly likely that one patient with MYO7A mutations possessed USH1 due to a late onset age of walking. This first report describing the frequency (1.3-2.2%) of USH1 among non-syndromic deaf children highlights the importance of comprehensive genetic testing for early disease diagnosis. "	"Cadherin-12 enhances proliferation in colorectal cancer cells and increases progression by promoting EMT. Cadherin-12 (CDH12) is a subtype of N-cadherin family. In this study, we investigated the expression of CDH12 and the role of CDH12 in prognosis of colorectal cancer (CRC) patients. In addition, we observed the influence of CDH12 on proliferation and progression of CRC cell lines. By using immunohistochemical staining, we analyzed CRC samples and adjacent non-tumor tissues collected from 78 patients who underwent laparoscopic surgery in Shanghai Minimally Invasive Center, China. Statistical analyses were used to analyze relationship between CDH12 and tumor features. Kaplan-Meier method was used to analyze patients' survival. Proliferation ability of CRC cells was tested by CCK-8 assay, and transwell assays were performed to detect migration and invasion ability. Western blot assay was performed to investigate epithelial-mesenchymal transition (EMT) variants. We found that expression of CDH12 in tumor tissue was higher than in adjacent normal tissue. High expression of CDH12 was associated with tumor invasion depth and predicts poor prognosis of CRC patients. Ectopic/repressing expression of CDH12 increased/decreased the proliferation and migration ability of CRC cells. CDH12 is able to increase cancer cell migration and invasion via promoting EMT by targeting transcriptional factor Snail. These findings may conclude that CDH12 may act as a predictor in CRC patients' prognosis and an oncogene in CRC cell proliferation and migration. CDH12 may influence CRC cell progression through promoting EMT by targeting Snail. In addition, CDH12 is promoted by MCP1 through induction of MCPIP. "	"Genome-Wide Analysis of DNA Methylation and Cigarette Smoking in a Chinese Population. Smoking is a risk factor for many human diseases. DNA methylation has been related to smoking, but genome-wide methylation data for smoking in Chinese populations is limited. We aimed to investigate epigenome-wide methylation in relation to smoking in a Chinese population. We measured the methylation levels at &gt; 485,000 CpG sites (CpGs) in DNA from leukocytes using a methylation array and conducted a genome-wide meta-analysis of DNA methylation and smoking in a total of 596 Chinese participants. We further evaluated the associations of smoking-related CpGs with internal polycyclic aromatic hydrocarbon (PAH) biomarkers and their correlations with the expression of corresponding genes. We identified 318 CpGs whose methylation levels were associated with smoking at a genome-wide significance level (false discovery rate &lt; 0.05), among which 161 CpGs annotated to 123 genes were not associated with smoking in recent studies of Europeans and African Americans. Of these smoking-related CpGs, methylation levels at 80 CpGs showed significant correlations with the expression of corresponding genes (including RUNX3, IL6R, PTAFR, ANKRD11, CEP135 and CDH23), and methylation at 15 CpGs was significantly associated with urinary 2-hydroxynaphthalene, the most representative internal monohydroxy-PAH biomarker for smoking. We identified DNA methylation markers associated with smoking in a Chinese population, including some markers that were also correlated with gene expression. Exposure to naphthalene, a byproduct of tobacco smoke, may contribute to smoking-related methylation. Zhu X, Li J, Deng S, Yu K, Liu X, Deng Q, Sun H, Zhang X, He M, Guo H, Chen W, Yuan J, Zhang B, Kuang D, He X, Bai Y, Han X, Liu B, Li X, Yang L, Jiang H, Zhang Y, Hu J, Cheng L, Luo X, Mei W, Zhou Z, Sun S, Zhang L, Liu C, Guo Y, Zhang Z, Hu FB, Liang L, Wu T. 2016. Genome-wide analysis of DNA methylation and cigarette smoking in Chinese. Environ Health Perspect 124:966-973; http://dx.doi.org/10.1289/ehp.1509834."	"Tauroursodeoxycholic acid prevents hearing loss and hair cell death in Cdh23(erl/erl) mice. Sensorineural hearing loss has long been the subject of experimental and clinical research for many years. The recently identified novel mutation of the Cadherin23 (Cdh23) gene, Cdh23(erl/erl), was proven to be a mouse model of human autosomal recessive nonsyndromic deafness (DFNB12). Tauroursodeoxycholic acid (TUDCA), a taurine-conjugated bile acid, has been used in experimental research and clinical applications related to liver disease, diabetes, neurodegenerative diseases, and other diseases associated with apoptosis. Because hair cell apoptosis was implied to be the cellular mechanism leading to hearing loss in Cdh23(erl/erl) mice (erl mice), this study investigated TUDCA's otoprotective effects in erl mice: preventing hearing impairment and protecting against hair cell death. Our results showed that systemic treatment with TUDCA significantly alleviated hearing loss and suppressed hair cell death in erl mice. Additionally, TUDCA inhibited apoptotic genes and caspase-3 activation in erl mouse cochleae. The data suggest that TUDCA could be a potential therapeutic agent for human DFNB12. "	"The Genetics of Deafness in Domestic Animals. Although deafness can be acquired throughout an animal's life from a variety of causes, hereditary deafness, especially congenital hereditary deafness, is a significant problem in several species. Extensive reviews exist of the genetics of deafness in humans and mice, but not for deafness in domestic animals. Hereditary deafness in many species and breeds is associated with loci for white pigmentation, where the cochlear pathology is cochleo-saccular. In other cases, there is no pigmentation association and the cochlear pathology is neuroepithelial. Late onset hereditary deafness has recently been identified in dogs and may be present but not yet recognized in other species. Few genes responsible for deafness have been identified in animals, but progress has been made for identifying genes responsible for the associated pigmentation phenotypes. Across species, the genes identified with deafness or white pigmentation patterns include MITF, PMEL, KIT, EDNRB, CDH23, TYR, and TRPM1 in dog, cat, horse, cow, pig, sheep, ferret, mink, camelid, and rabbit. Multiple causative genes are present in some species. Significant work remains in many cases to identify specific chromosomal deafness genes so that DNA testing can be used to identify carriers of the mutated genes and thereby reduce deafness prevalence. "	"Impact of the Usher syndrome on olfaction. Usher syndrome is a genetically and clinically heterogeneous disease in humans, characterized by sensorineural hearing loss, retinitis pigmentosa and vestibular dysfunction. This disease is caused by mutations in genes encoding proteins that form complex networks in different cellular compartments. Currently, it remains unclear whether the Usher proteins also form networks within the olfactory epithelium (OE). Here, we describe Usher gene expression at the mRNA and protein level in the OE of mice and showed interactions between these proteins and olfactory signaling proteins. Additionally, we analyzed the odor sensitivity of different Usher syndrome mouse models using electro-olfactogram recordings and monitored significant changes in the odor detection capabilities in mice expressing mutant Usher proteins. Furthermore, we observed changes in the expression of signaling proteins that might compensate for the Usher protein deficiency. In summary, this study provides novel insights into the presence and purpose of the Usher proteins in olfactory signal transduction. "	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"Gene expression profiling of DBA/2J mice cochleae treated with l-methionine and valproic acid. DBA/2J mice, which have homozygous mutations in Cdh23 and Fscn2, are characterized by early onset hearing loss at as early as three-weeks of age (Noben-Trauth et al., 2003 [1]) and are an animal model for progressive hearing loss research. Recently, it has been reported that epigenetic regulatory pathways likely play an important role in hearing loss (Provenzano and Domann, 2007 [2]; Mutai et al., 2009 [3]; Waldhaus et al., 2012 [4]). We previously reported that DBA/2J mice injected subcutaneously with a combination of epigenetic modifying reagents, l-methionine (MET) as methyl donor and valproic acid (VPA) as a pan-histone deacetylases (Hdac) inhibitor, showed a significant attenuation of progressive hearing loss by measuring their auditory brainstem response (ABR) thresholds (Mutai et al., 2015 [5]). Here we present genome wide expression profiling of the DBA/2J mice cochleae, with and without treatment of MET and VPA, to identify the genes involved in the reduction of progressive hearing loss. The raw and normalized data were deposited in NCBI's Gene Expression Omnibus (GEO ID: GSE62173) for ease of reproducibility and reanalysis. "	"Characterising the spectrum of autosomal recessive hereditary hearing loss in Iran. Countries with culturally accepted consanguinity provide a unique resource for the study of rare recessively inherited genetic diseases. Although hereditary hearing loss (HHL) is not uncommon, it is genetically heterogeneous, with over 85 genes causally implicated in non-syndromic hearing loss (NSHL). This heterogeneity makes many gene-specific types of NSHL exceedingly rare. We sought to define the spectrum of autosomal recessive HHL in Iran by investigating both common and rarely diagnosed deafness-causing genes. Using a custom targeted genomic enrichment (TGE) panel, we simultaneously interrogated all known genetic causes of NSHL in a cohort of 302 GJB2-negative Iranian families. We established a genetic diagnosis for 67% of probands and their families, with over half of all diagnoses attributable to variants in five genes: SLC26A4, MYO15A, MYO7A, CDH23 and PCDH15. As a reflection of the power of consanguinity mapping, 26 genes were identified as causative for NSHL in the Iranian population for the first time. In total, 179 deafness-causing variants were identified in 40 genes in 201 probands, including 110 novel single nucleotide or small insertion-deletion variants and three novel CNV. Several variants represent founder mutations. This study attests to the power of TGE and massively parallel sequencing as a diagnostic tool for the evaluation of hearing loss in Iran, and expands on our understanding of the genetics of HHL in this country. Families negative for variants in the genes represented on this panel represent an excellent cohort for novel gene discovery."	"Screening of genetic alterations related to non-syndromic hearing loss using MassARRAY iPLEX® technology. Recent advances in molecular genetics have enabled to determine the genetic causes of non-syndromic hearing loss, and more than 100 genes have been related to the phenotype. Due to this extraordinary genetic heterogeneity, a large percentage of patients remain without any molecular diagnosis. This condition imply the need for new methodological strategies in order to detect a greater number of mutations in multiple genes. In this work, we optimized and tested a panel of 86 mutations in 17 different genes screened using a high-throughput genotyping technology to determine the molecular etiology of hearing loss. The technology used in this work was the MassARRAY iPLEX® platform. This technology uses silicon chips and DNA amplification products for accurate genotyping by mass spectrometry of previous reported mutations. The generated results were validated using conventional techniques, as direct sequencing, multiplex PCR and RFLP-PCR. An initial genotyping of control subjects, showed failures in 20 % of the selected alterations. To optimize these results, the failed tests were re-designed and new primers were synthesized. Then, the specificity and sensitivity of the panel demonstrated values above 97 %. Additionally, a group of 180 individuals with NSHL without a molecular diagnosis was screened to test the diagnostic value of our panel, and mutations were identified in 30 % of the cases. In 20 % of the individuals, it was possible to explain the etiology of the HL. Mutations in GJB2 gene were the most prevalent, followed by other mutations in in SLC26A4, CDH23, MT-RNR1, MYO15A, and OTOF genes. The MassARRAY technology has the potential for high-throughput identification of genetic variations. However, we demonstrated that optimization is required to increase the genotyping success and accuracy. The developed panel proved to be efficient and cost-effective, being suitable for applications involving the molecular diagnosis of hearing loss."	"Comprehensive genetic testing with ethnic-specific filtering by allele frequency in a Japanese hearing-loss population. Recent advances in targeted genomic enrichment with massively parallel sequencing (TGE+MPS) have made comprehensive genetic testing for non-syndromic hearing loss (NSHL) possible. After excluding NSHL subjects with causative mutations in GJB2 and the MT-RNR1 (1555A&gt;G) variant by Sanger sequencing, we completed TGE+MPS on 194 probands with presumed NSHL identified across Japan. We used both publicly available minor allele frequency (MAF) datasets and ethnic-specific MAF filtering against an in-house database of 200 normal-hearing Japanese controls. Ethnic-specific MAF filtering allowed us to re-categorize as common 203 variants otherwise annotated as rare or novel in non-Japanese ethnicities. This step minimizes false-positive results and improves the annotation of identified variants. Causative variants were identified in 27% of probands with solve rates of 35%, 35% and 19% for dominant, recessive and sporadic NSHL, respectively. Mutations in MYO15A and CDH23 follow GJB2 as the frequent causes of recessive NSHL; copy number variations in STRC are a major cause of mild-to-moderate NSHL. Ethnic-specific filtering by allele frequency is essential to optimize the interpretation of genetic data."	"Strong founder effect of p.P240L in CDH23 in Koreans and its significant contribution to severe-to-profound nonsyndromic hearing loss in a Korean pediatric population. Despite the prevalence of CDH23 mutations in East Asians, its large size hinders investigation. The pathologic mutation p.P240L in CDH23 is common in East Asians. However, whether this mutation represents a common founder or a mutational hot spot is unclear. The prevalence of CDH23 mutations with prelingual severe-to-profound sporadic or autosomal recessive sensorineural hearing loss (arSNHL) is unknown in Koreans. From September 2010 to October 2014, children with severe-to-profound sporadic or arSNHL without phenotypic markers, and their families, were tested for mutations in connexins GJB2, GJB6 and GJB3. Sanger sequencing of CDH23 p.P240L was performed on connexin-negative samples without enlarged vestibular aqueducts (EVA), followed by targeted resequencing of 129 deafness genes, including CDH23, unless p.P240L homozygotes were detected in the first screening. Four p.P240L-allele-linked STR markers were genotyped in 40 normal-hearing control subjects, and the p.P240L carriers in the hearing-impaired cohort, to identify the haplotypes. Four (3.1 %) of 128 children carried two CDH23 mutant alleles, and SLC26A4 and GJB2 accounted for 18.0 and 17.2 %, respectively. All four children showed profound nonsyndromic SNHL with minimal residual hearing. Interestingly, all had at least one p.P240L mutant allele. Analysis of p.P240L-linked STR markers in these children and other postlingual hearing-impaired adults carrying p.P240L revealed that p.P240L was mainly carried on a single haplotype. p.P240L contributed significantly to Korean pediatric severe arSNHL with a strong founder effect, with implications for future phylogenetic studies. Screening for p.P240L as a first step in GJB2-negative arSNHL Koreans without EVA is recommended."	"Comprehensive analysis via exome sequencing uncovers genetic etiology in autosomal recessive nonsyndromic deafness in a large multiethnic cohort. Autosomal recessive nonsyndromic deafness (ARNSD) is characterized by a high degree of genetic heterogeneity, with reported mutations in 58 different genes. This study was designed to detect deafness-causing variants in a multiethnic cohort with ARNSD by using whole-exome sequencing (WES). After excluding mutations in the most common gene, GJB2, we performed WES in 160 multiplex families with ARNSD from Turkey, Iran, Mexico, Ecuador, and Puerto Rico to screen for mutations in all known ARNSD genes. We detected ARNSD-causing variants in 90 (56%) families, 54% of which had not been previously reported. Identified mutations were located in 31 known ARNSD genes. The most common genes with mutations were MYO15A (13%), MYO7A (11%), SLC26A4 (10%), TMPRSS3 (9%), TMC1 (8%), ILDR1 (6%), and CDH23 (4%). Nine mutations were detected in multiple families with shared haplotypes, suggesting founder effects. We report on a large multiethnic cohort with ARNSD in which comprehensive analysis of all known ARNSD genes identifies causative DNA variants in 56% of the families. In the remaining families, WES allows us to search for causative variants in novel genes, thus improving our ability to explain the underlying etiology in more families.Genet Med 18 4, 364-371."	"Zebrafish Models for the Mechanosensory Hair Cell Dysfunction in Usher Syndrome 3 Reveal That Clarin-1 Is an Essential Hair Bundle Protein. Usher syndrome type III (USH3) is characterized by progressive loss of hearing and vision, and varying degrees of vestibular dysfunction. It is caused by mutations that affect the human clarin-1 protein (hCLRN1), a member of the tetraspanin protein family. The missense mutation CLRN1(N48K), which affects a conserved N-glycosylation site in hCLRN1, is a common causative USH3 mutation among Ashkenazi Jews. The affected individuals hear at birth but lose that function over time. Here, we developed an animal model system using zebrafish transgenesis and gene targeting to provide an explanation for this phenotype. Immunolabeling demonstrated that Clrn1 localized to the hair cell bundles (hair bundles). The clrn1 mutants generated by zinc finger nucleases displayed aberrant hair bundle morphology with diminished function. Two transgenic zebrafish that express either hCLRN1 or hCLRN1(N48K) in hair cells were produced to examine the subcellular localization patterns of wild-type and mutant human proteins. hCLRN1 localized to the hair bundles similarly to zebrafish Clrn1; in contrast, hCLRN1(N48K) largely mislocalized to the cell body with a small amount reaching the hair bundle. We propose that this small amount of hCLRN1(N48K) in the hair bundle provides clarin-1-mediated function during the early stages of life; however, the presence of hCLRN1(N48K) in the hair bundle diminishes over time because of intracellular degradation of the mutant protein, leading to progressive loss of hair bundle integrity and hair cell function. These findings and genetic tools provide an understanding and path forward to identify therapies to mitigate hearing loss linked to the CLRN1 mutation. Mutations in the clarin-1 gene affect eye and ear function in humans. Individuals with the CLRN1(N48K) mutation are born able to hear but lose that function over time. Here, we develop an animal model system using zebrafish transgenesis and gene targeting to provide an explanation for this phenotype. This approach illuminates the role of clarin-1 and the molecular mechanism linked to the CLRN1(N48K) mutation in sensory hair cells of the inner ear. Additionally, the investigation provided an in vivo model to guide future drug discovery to rescue the hCLRN1(N48K) in hair cells."	"The tip-link molecular complex of the auditory mechano-electrical transduction machinery. Sound waves are converted into electrical signals by a process of mechano-electrical transduction (MET), which takes place in the hair bundle of cochlear hair cells. In response to the mechanical stimulus of the hair bundle, the tip-links, key components of the MET machinery, are tensioned and the MET channels open, which results in the generation of the cell receptor potential. Tip-links are composed of cadherin-23 (Cdh23) and protocadherin-15 (Pcdh15), both non-conventional cadherins, that form the upper and the lower part of these links, respectively. Here, we review the various Pcdh15 isoforms present in the organ of Corti, their localization in the auditory hair bundles, their involvement in the molecular complex forming the tip-link, and their interactions with transmembrane molecules that are components of the lower MET machinery."	"Attenuation of hearing loss in DBA/2J mice by anti-apoptotic treatment. DBA/2J mice are characterized by early onset hearing loss at about 3-4 weeks of age. Mutations in cadherin 23 (Cdh23) and fascin-2 (Fscn2) are responsible for the phenotypes, but the underlying mechanism is unknown. In the present study, DBA/2J mice displayed progressive hair cell loss and degeneration of spiral ganglion neurons (SGNs) after 2 weeks of age; however, the mRNA level of Caspase-3 in the inner ears was much higher at 2 weeks of age than that at 4 or 8 weeks of age. Moreover, transcriptional levels of Caspase-3 and Caspase-9 in the inner ears of DBA/2J mice were significantly higher than those of C57BL/6J mice at 2 or 8 weeks of age. Immunohistochemistry localized Caspase-3 and Caspase-9 mainly to the hair cells, SGNs and stria vascularis of the cochleae. To determine the significance of caspase-dependent apoptosis in the hearing loss, the pan-caspase inhibitor Z-VAD-FMK was given intraperitoneally to DBA/J2 mice over an 8-week period starting at one week of age. Blockage of caspases preserved hearing in the mice by more than 10 dB (dB) sound pressure level (SPL) of the ABR thresholds and significantly reduced outer hair cell loss at the basal turns of the cochleae. These results demonstrate that apoptosis in the cochleae of DBA/J2 mice contributes to the early onset of hearing loss, which can be attenuated by anti-apoptotic treatment. "	"High prevalence of CDH23 mutations in patients with congenital high-frequency sporadic or recessively inherited hearing loss. Mutations in CDH23 are responsible for Usher syndrome 1D and recessive non-syndromic hearing loss. In this study, we revealed the prevalence of CDH23 mutations among patients with specific clinical characteristics. After excluding patients with GJB2 mutations and mitochondrial m.1555A &gt; G and m.3243A &gt; G mutations, subjects for CDH23 mutation analysis were selected according to the following criteria: 1) Sporadic or recessively inherited hearing loss 2) bilateral non-syndromic congenital hearing loss, 3) no cochlear malformation, 4) a poorer hearing level at high frequencies than at low frequencies, and 5) severe or profound hearing loss at higher frequencies. Seventy-two subjects were selected from 621 consecutive probands who did not have environmental causes for their hearing loss. After direct sequencing, 13 of the 72 probands (18.1%) had homozygous or compound heterozygous CDH23 mutations. In total, we identified 16 CDH23 mutations, including five novel mutations. The 16 mutations included 12 missense, two frameshift, and two splice-site mutations. These results revealed that CDH23 mutations are highly prevalent in patients with congenital high-frequency sporadic or recessively inherited hearing loss and that the mutation spectrum was diverse, indicating that patients with these clinical features merit genetic analysis."	"Deafness gene variations in a 1120 nonsyndromic hearing loss cohort: molecular epidemiology and deafness mutation spectrum of patients in Japan. To elucidate the molecular epidemiology of hearing loss in a large number of Japanese patients analyzed using massively parallel DNA sequencing (MPS) of target genes. We performed MPS of target genes using the Ion PGM system with the Ion AmpliSeq and HiSeq 2000 systems using SureSelect in 1389 samples (1120 nonsyndromic hearing loss cases and 269 normal hearing controls). We filtered the variants identified using allele frequencies in a large number of controls and 12 predication program scores. We identified 8376 kinds of variants in the 1389 samples, and 409 835 total variants were detected. After filtering the variants, we selected 2631 kinds of candidate variants. The number of GJB2 mutations was exceptionally high among these variants, followed by those in CDH23, SLC26A4, MYO15A, COL11A2, MYO7A, and OTOF. We performed a large number of MPS analyses and clarified the genetic background of Japanese patients with hearing loss. This data set will be a powerful tool to discover rare causative gene mutations in highly heterogeneous monogenic diseases and reveal the genetic epidemiology of deafness."	"Quantitative trait loci on chromosome 5 for susceptibility to frequency-specific effects on hearing in DBA/2J mice. The DBA/2J strain is a model for early-onset, progressive hearing loss in humans, as confirmed in the present study. DBA/2J mice showed progression of hearing loss to low-frequency sounds from ultrasonic-frequency sounds and profound hearing loss at all frequencies before 7 months of age. It is known that the early-onset hearing loss of DBA/2J mice is caused by affects in the ahl (Cdh23(ahl)) and ahl8 (Fscn2(ahl8)) alleles of the cadherin 23 and fascin 2 genes, respectively. Although the strong contributions of the Fscn2(ahl8) allele were detected in hearing loss at 8- and 16-kHz stimuli with LOD scores of 5.02 at 8 kHz and 8.84 at 16 kHz, hearing loss effects were also demonstrated for three new quantitative trait loci (QTLs) for the intervals of 50.3-54.5, 64.6-119.9, and 119.9-137.0 Mb, respectively, on chromosome 5, with significant LOD scores of 2.80-3.91 for specific high-frequency hearing loss at 16 kHz by quantitative trait loci linkage mapping using a (DBA/2J × C57BL/6J) F1 × DBA/2J backcross mice. Moreover, we showed that the contribution of Fscn2(ahl8) to early-onset hearing loss with 32-kHz stimuli is extremely low and raised the possibility of effects from the Cdh23(ahl) allele and another dominant quantitative trait locus (loci) for hearing loss at this ultrasonic frequency. Therefore, our results suggested that frequency-specific QTLs control early-onset hearing loss in DBA/2J mice. "	"Caspase-mediated apoptosis in the cochleae contributes to the early onset of hearing loss in A/J mice. A/J and C57BL/6 J (B6) mice share a mutation in Cdh23 (ahl allele) and are characterized by age-related hearing loss. However, hearing loss occurs much earlier in A/J mice at about four weeks of age. Recent study has revealed that a mutation in citrate synthase (Cs) is one of the main contributors, but the mechanism is largely unknown. In the present study, we showed that A/J mice displayed more severe degeneration of hair cells, spiral ganglion neurons, and stria vascularis in the cochleae compared with B6 mice. Moreover, messenger RNA accumulation levels of caspase-3 and caspase-9 in the inner ears of A/J mice were significantly higher than those in B6 mice at 2 and 8 weeks of age. Immunohistochemistry localized caspase-3 expression mainly to the hair cells, spiral ganglion neurons, and stria vascularis in cochleae. In vitro transfection with Cs short hairpin RNA (shRNA) alone or cotransfection with Cs shRNA and Cdh23 shRNA significantly increased the levels of caspase-3 in an inner ear cell line (HEI-OC1). Finally, a pan-caspase inhibitor Z-VAD-FMK could preserve the hearing of A/J mice by lowering about 15 decibels of the sound pressure level for the auditory-evoked brainstem response thresholds. In conclusion, our results suggest that caspase-mediated apoptosis in the cochleae, which may be related to a Cs mutation, contributes to the early onset of hearing loss in A/J mice."	"Usher syndrome: an effective sequencing approach to establish a genetic and clinical diagnosis. Usher syndrome is an autosomal recessive disorder characterized by retinitis pigmentosa, sensorineural hearing loss and, in some cases, vestibular dysfunction. The disorder is clinically and genetically heterogeneous and, to date, mutations in 11 genes have been described. This finding makes difficult to get a precise molecular diagnosis and offer patients accurate genetic counselling. To overcome this problem and to increase our knowledge of the molecular basis of Usher syndrome, we designed a targeted resequencing custom panel. In a first validation step a series of 16 Italian patients with known molecular diagnosis were analysed and 31 out of 32 alleles were detected (97% of accuracy). After this step, 31 patients without a molecular diagnosis were enrolled in the study. Three out of them with an uncertain Usher diagnosis were excluded. One causative allele was detected in 24 out 28 patients (86%) while the presence of both causative alleles characterized 19 patients out 28 (68%). Sixteen novel and 27 known alleles were found in the following genes: USH2A (50%), MYO7A (7%), CDH23 (11%), PCDH15 (7%) and USH1G (2%). Overall, on the 44 patients the protocol was able to characterize 74 alleles out of 88 (84%). These results suggest that our panel is an effective approach for the genetic diagnosis of Usher syndrome leading to: 1) an accurate molecular diagnosis, 2) better genetic counselling, 3) more precise molecular epidemiology data fundamental for future interventional plans. "	"Genome-wide association study of kidney function decline in individuals of European descent. Genome-wide association studies (GWASs) have identified multiple loci associated with cross-sectional eGFR, but a systematic genetic analysis of kidney function decline over time is missing. Here we conducted a GWAS meta-analysis among 63,558 participants of European descent, initially from 16 cohorts with serial kidney function measurements within the CKDGen Consortium, followed by independent replication among additional participants from 13 cohorts. In stage 1 GWAS meta-analysis, single-nucleotide polymorphisms (SNPs) at MEOX2, GALNT11, IL1RAP, NPPA, HPCAL1, and CDH23 showed the strongest associations for at least one trait, in addition to the known UMOD locus, which showed genome-wide significance with an annual change in eGFR. In stage 2 meta-analysis, the significant association at UMOD was replicated. Associations at GALNT11 with Rapid Decline (annual eGFR decline of 3 ml/min per 1.73 m(2) or more), and CDH23 with eGFR change among those with CKD showed significant suggestive evidence of replication. Combined stage 1 and 2 meta-analyses showed significance for UMOD, GALNT11, and CDH23. Morpholino knockdowns of galnt11 and cdh23 in zebrafish embryos each had signs of severe edema 72 h after gentamicin treatment compared with controls, but no gross morphological renal abnormalities before gentamicin administration. Thus, our results suggest a role in the deterioration of kidney function for the loci GALNT11 and CDH23, and show that the UMOD locus is significantly associated with kidney function decline. "	"Gene-gene interaction of GJB2, SOD2, and CAT on occupational noise-induced hearing loss in Chinese Han population. The effects of genetic factors on the noise-induced hearing loss (NIHL) are still unclear. In the present study, eight single-nucleotide polymorphisms (SNPs) included rs1227049 and rs3802711 (CDH23), rs1695 (GSTP1), rs137852540 (GJB2), rs2289274 (PMCA2), rs4880 (SOD2), rs7943316, and rs769214 within CAT that might associated with NIHL were further validated in Chinese workers. The results showed that the carriers of the T allele (AT+TT) of rs7943316 and A allele (GA+AA) of rs769214, were significantly associated with an increased risk of NIHL compared to those with AA genotype (P&lt;0.05) and GG genotype (P&lt;0.05). Moreover, a significant three-locus model (P=0.0107) involving rs2016520, rs9794, and rs1805192 were observed that might associated with NIHL, with 53.95% of testing accuracy. Thus, our present study provided the evidence that GJB2, SOD2, and CAT genes might account for the NIHL development in independently and/or in an interactive manner. "	"Pathway analysis for a genome-wide association study of pneumoconiosis. The aim of this investigation was to identify pathways involved in pneumoconiosis susceptibility, clarify their potential mechanisms, and generate SNP-to-gene to pathway hypotheses using an analytical pathway-based approach. The identify candidate causal SNPs and pathways (ICSNPathway) was used to perform pathway analysis of a GWAS dataset for pneumoconiosis, which, after quality control filtering, harbored genotypes of 710,999 SNPs in 202 pneumoconiosis cases and 198 exposed controls. The first stage involved the pre-selection of candidate SNPs by linkage disequilibrium analysis and functional annotation of the most significant SNPs; the second stage involved annotation of biological mechanisms for the selected candidate SNPs using improved-gene set enrichment analysis. ICSNPathway analysis identified 18 candidate SNPs, involving 13 genes and 30 candidate pathways and revealed 13 hypothetical biological mechanisms. The strongest hypothetical biological mechanism was that rs8120 and rs2292151 alters the role of TICAM1, a gene involved in various pathways and processes, including positive regulation of tumor necrosis factor (TNF) production, innate immune response-activating signal transduction, positive regulation of the innate immune response, and the biosynthesis of type I interferon (0.001&lt;p&lt;0.008; 0.001&lt; false discovery rate (FDR) &lt;0.035). The second strongest mechanism was that rs2230656 modulates HIST3H3 to affect its role in chromatin assembly processes (p&lt;0.001; FDR &lt;0.001). The third mechanism was that rs11592462 modulates CDH23, which regulates organization of the inner ear stereocilia, auditory receptor cell morphogenesis, ear morphogenesis, and cellular homeostasis (0.001&lt;p&lt;0.006; 0.001&lt;FDR&lt;0.044). Of 13 candidate genes, TICAM1, HIST3H3, CA1, CA3, PTPRZ1, and IL27RA are associated with fibrosis. Some of the 30 candidate pathways, which include positive regulation of TNF production, innate immune response-activating signal transduction, and regulation of innate immune response, may be associated with susceptibility to pneumoconiosis. Other candidate genes and pathways were novel or lacking fibrosis-related research. By applying ICSNPathway analysis to the pneumoconiosis GWAS data, we identified candidate SNPs, genes such as TICAM1 and HIST3H3, and pathways involved in the positive regulation of TNF production that may contribute to pneumoconiosis susceptibility. Further analyses are needed to validate the results."	"Targeted next generation sequencing for molecular diagnosis of Usher syndrome. Usher syndrome is an autosomal recessive disease that associates sensorineural hearing loss, retinitis pigmentosa and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous. To date, 10 genes have been associated with the disease, making its molecular diagnosis based on Sanger sequencing, expensive and time-consuming. Consequently, the aim of the present study was to develop a molecular diagnostics method for Usher syndrome, based on targeted next generation sequencing. A custom HaloPlex panel for Illumina platforms was designed to capture all exons of the 10 known causative Usher syndrome genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, GPR98, DFNB31 and CLRN1), the two Usher syndrome-related genes (HARS and PDZD7) and the two candidate genes VEZT and MYO15A. A cohort of 44 patients suffering from Usher syndrome was selected for this study. This cohort was divided into two groups: a test group of 11 patients with known mutations and another group of 33 patients with unknown mutations. Forty USH patients were successfully sequenced, 8 USH patients from the test group and 32 patients from the group composed of USH patients without genetic diagnosis. We were able to detect biallelic mutations in one USH gene in 22 out of 32 USH patients (68.75%) and to identify 79.7% of the expected mutated alleles. Fifty-three different mutations were detected. These mutations included 21 missense, 8 nonsense, 9 frameshifts, 9 intronic mutations and 6 large rearrangements. Targeted next generation sequencing allowed us to detect both point mutations and large rearrangements in a single experiment, minimizing the economic cost of the study, increasing the detection ratio of the genetic cause of the disease and improving the genetic diagnosis of Usher syndrome patients."	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Domain analyses of Usher syndrome causing Clarin-1 and GPR98 protein models. Usher syndrome is an autosomal recessive disorder that causes hearing loss, Retinitis Pigmentosa (RP) and vestibular dysfunction. It is clinically and genetically heterogeneous disorder which is clinically divided into three types i.e. type I, type II and type III. To date, there are about twelve loci and ten identified genes which are associated with Usher syndrome. A mutation in any of these genes e.g. CDH23, CLRN1, GPR98, MYO7A, PCDH15, USH1C, USH1G, USH2A and DFNB31 can result in Usher syndrome or non-syndromic deafness. These genes provide instructions for making proteins that play important roles in normal hearing, balance and vision. Studies have shown that protein structures of only seven genes have been determined experimentally and there are still three genes whose structures are unavailable. These genes are Clarin-1, GPR98 and Usherin. In the absence of an experimentally determined structure, homology modeling and threading often provide a useful 3D model of a protein. Therefore in the current study Clarin-1 and GPR98 proteins have been analyzed for signal peptide, domains and motifs. Clarin-1 protein was found to be without any signal peptide and consists of prokar lipoprotein domain. Clarin-1 is classified within claudin 2 super family and consists of twelve motifs. Whereas, GPR98 has a 29 amino acids long signal peptide and classified within GPCR family 2 having Concanavalin A-like lectin/glucanase superfamily. It was found to be consists of GPS and G protein receptor F2 domains and twenty nine motifs. Their 3D structures have been predicted using I-TASSER server. The model of Clarin-1 showed only α-helix but no beta sheets while model of GPR98 showed both α-helix and β sheets. The predicted structures were then evaluated and validated by MolProbity and Ramachandran plot. The evaluation of the predicted structures showed 78.9% residues of Clarin-1 and 78.9% residues of GPR98 within favored regions. The findings of present study has resulted in the three dimensional structure prediction and conserved domain analysis which will be quite beneficial in better understanding of molecular components, protein-protein interaction, clinical heterogeneity and pathophysiology of Usher syndrome. "	"Resolving the genetic heterogeneity of prelingual hearing loss within one family: Performance comparison and application of two targeted next generation sequencing approaches. Here, we report an unconventional Chinese pedigree consisting of three branches all segregating prelingual hearing loss (HL) with unclear inheritance pattern. After identifying the cause of one branch as maternally inherited aminoglycoside-induced HL, targeted next generation sequencing (NGS) was applied to identify the genetic causes for the other two branches. One affected subject from each branch was subject to targeted NGS whose genomic DNA was enriched either by whole-exome capture (Agilent SureSelect All Exon 50 Mb) or by candidate genes capture (Agilent SureSelect custom kit). By NGS analysis, we identified that patients from Branch A were compound heterozygous for p.E1006K and p.D1663V in the CDH23 (DFNB12) gene; and patients from Branch B were homozygous for IVS7-2A&gt;G in the SLC26A4 (DFNB4) gene. Both CDH23 mutations altered conserved calcium binding sites of the extracellular cadherin domains. The co-occurrence of three different genetic causes in this family was exceedingly rare but fully compatible with the mutation spectrum of HL. Our study has also raised several technical and analytical issues when applying the NGS technique to genetic testing. "	"Molecular genetics of the Usher syndrome in Lebanon: identification of 11 novel protein truncating mutations by whole exome sequencing. Usher syndrome (USH) is a genetically heterogeneous condition with ten disease-causing genes. The spectrum of genes and mutations causing USH in the Lebanese and Middle Eastern populations has not been described. Consequently, diagnostic approaches designed to screen for previously reported mutations were unlikely to identify the mutations in 11 unrelated families, eight of Lebanese and three of Middle Eastern origins. In addition, six of the ten USH genes consist of more than 20 exons, each, which made mutational analysis by Sanger sequencing of PCR-amplified exons from genomic DNA tedious and costly. The study was aimed at the identification of USH causing genes and mutations in 11 unrelated families with USH type I or II. Whole exome sequencing followed by expanded familial validation by Sanger sequencing. We identified disease-causing mutations in all the analyzed patients in four USH genes, MYO7A, USH2A, GPR98 and CDH23. Eleven of the mutations were novel and protein truncating, including a complex rearrangement in GPR98. Our data highlight the genetic diversity of Usher syndrome in the Lebanese population and the time and cost-effectiveness of whole exome sequencing approach for mutation analysis of genetically heterogeneous conditions caused by large genes."	"The epigenetic landscape of Alzheimer's disease. Two independent epigenome-wide association studies of Alzheimer’s disease cohorts have identified overlapping methylation signals in four loci, ANK1, RPL13, RHBDF2 and CDH23, not previously associated with Alzheimer’s disease. These studies also suggest that epigenetic changes contribute more to Alzheimer’s disease than expected."	"Alzheimer's disease: early alterations in brain DNA methylation at ANK1, BIN1, RHBDF2 and other loci. We used a collection of 708 prospectively collected autopsied brains to assess the methylation state of the brain's DNA in relation to Alzheimer's disease (AD). We found that the level of methylation at 71 of the 415,848 interrogated CpGs was significantly associated with the burden of AD pathology, including CpGs in the ABCA7 and BIN1 regions, which harbor known AD susceptibility variants. We validated 11 of the differentially methylated regions in an independent set of 117 subjects. Furthermore, we functionally validated these CpG associations and identified the nearby genes whose RNA expression was altered in AD: ANK1, CDH23, DIP2A, RHBDF2, RPL13, SERPINF1 and SERPINF2. Our analyses suggest that these DNA methylation changes may have a role in the onset of AD given that we observed them in presymptomatic subjects and that six of the validated genes connect to a known AD susceptibility gene network. "	"Identification of CDH23 mutations in Korean families with hearing loss by whole-exome sequencing. Patient genetic heterogeneity renders it difficult to discover disease-cause genes. Whole-exome sequencing is a powerful new strategy that can be used to this end. The purpose of the present study was to identify a hitherto unknown mutation causing autosomal recessive nonsyndromic hearing loss (ARNSHL) in Korean families. We performed whole-exome sequencing in 16 individuals from 13 unrelated small families with ARNSHL. After filtering out population-specific polymorphisms, we focused on known deafness genes. Pathogenic effects of the detected mutations on protein structure or function were predicted via in silico analysis. We identified compound heterozygous CDH23 mutations in hearing-loss genes of two families. These include two previously reported pathological mutations, p.Pro240Leu and p.Glu1595Lys, as well as one novel mutation, p.Asn342Ser. The p.Pro240Leu mutation was found in both families. We also identified 26 non-synonymous variants in CDH23 coding exons from 16 hearing-loss patients and 30 Korean exomes. The present study is the first to show that CDH23 mutations cause hearing loss in Koreans. Although the precise contribution made by such mutations needs to be determined using a larger patient cohort, our data indicate that mutations in the CDH23 gene are one of the most important causes of non-syndromic hearing loss in East Asians. Further exome sequencing will identify common mutations or polymorphisms and contribute to the molecular diagnosis of, and development of new therapies for, hereditary hearing loss."	"Transduction without tip links in cochlear hair cells is mediated by ion channels with permeation properties distinct from those of the mechano-electrical transducer channel. Tip links between adjacent stereocilia are believed to gate mechano-electrical transducer (MET) channels and mediate the electrical responses of sensory hair cells. We found that mouse auditory hair cells that lack tip links due to genetic mutations or exposure to the Ca(2+) chelator BAPTA can, however, still respond to mechanical stimuli. These MET currents have unusual properties and are predominantly of the opposite polarity relative to those measured when tip links are present. There are other striking differences, for example, the channels are usually all closed when the hair cell is not stimulated and the currents in response to strong stimuli can be substantially larger than normal. These anomalous MET currents can also be elicited early in development, before the onset of mechano-electrical transduction with normal response polarity. Current-voltage curves of the anomalous MET currents are linear and do not show the rectification characteristic of normal MET currents. The permeant MET channel blocker dihydrostreptomycin is two orders of magnitude less effective in blocking the anomalous MET currents. The findings suggest the presence of a large population of MET channels with pore properties that are distinct from those of normal MET channels. These channels are not gated by hair-bundle links and can be activated under a variety of conditions in which normal tip-link-mediated transduction is not operational. "	"The homozygous p.V37I variant of GJB2 is associated with diverse hearing phenotypes. The homozygous p.V37I variant of GJB2 is frequent in East Asians and has been reported to have a pathogenic role in mild-to-moderate hearing impairment (HI). In this study, we investigated the prevalence and phenotypic spectrum of homozygous p.V37I in three Chinese Han cohorts with severe-to-profound HI (n = 857, Cohort S), mild-to-moderate HI (n = 88, Cohort M) and normal hearing (n = 1550, Cohort N). Sequencing of GJB2 showed that homozygous p.V37I was detected in 1.63% (14/857), 12.5% (11/88) and 0.32% (5/1550) of subjects in Cohorts S, M and N, respectively. It was strongly associated with both mild-to-moderate (p = 2.0 × 10(-11) ) and severe-to-profound (p = 0.001) HI, but was estimated to have a rather low penetrance (17%). Among the hearing impaired subjects with homozygous p.V37I, the onset of HI was congenital in 65% (11/17) and delayed in 35% (6/17). By targeted next-generation sequencing of 79 known deafness genes, we identified an additional homozygous pathogenic mutation of CDH23 in 1 of 14 p.V37I homozygous subjects from Cohort S. Our study suggested that homozygous p.V37I is associated with a broader spectrum of hearing phenotypes than previously revealed. Data presented in this study can be effectively applied to clinical evaluation and genetic counseling of people carrying this variant."	"Complexes of Usher proteins preassemble at the endoplasmic reticulum and are required for trafficking and ER homeostasis. Usher syndrome (USH), the leading cause of hereditary combined hearing and vision loss, is characterized by sensorineural deafness and progressive retinal degeneration. Mutations in several different genes produce USH, but the proximal cause of sensory cell death remains mysterious. We adapted a proximity ligation assay to analyze associations among three of the USH proteins, Cdh23, Harmonin and Myo7aa, and the microtubule-based transporter Ift88 in zebrafish inner ear mechanosensory hair cells. We found that the proteins are in close enough proximity to form complexes and that these complexes preassemble at the endoplasmic reticulum (ER). Defects in any one of the three USH proteins disrupt formation and trafficking of the complex and result in diminished levels of the other proteins, generalized trafficking defects and ER stress that triggers apoptosis. ER stress, thus, contributes to sensory hair cell loss and provides a new target to explore for protective therapies for USH. "	"[Recent research on the development mechanism of DFNB12]. NA"	"Cadherin-23 may be dynamic in hair bundles of the model sea anemone Nematostella vectensis. Cadherin 23 (CDH23), a component of tip links in hair cells of vertebrate animals, is essential to mechanotransduction by hair cells in the inner ear. A homolog of CDH23 occurs in hair bundles of sea anemones. Anemone hair bundles are located on the tentacles where they detect the swimming movements of nearby prey. The anemone CDH23 is predicted to be a large polypeptide featuring a short exoplasmic C-terminal domain that is unique to sea anemones. Experimentally masking this domain with antibodies or mimicking this domain with free peptide rapidly disrupts mechanotransduction and morphology of anemone hair bundles. The loss of normal morphology is accompanied, or followed by a decrease in F-actin in stereocilia of the hair bundles. These effects were observed at very low concentrations of the reagents, 0.1-10 nM, and within minutes of exposure. The results presented herein suggest that: (1) the interaction between CDH23 and molecular partners on stereocilia of hair bundles is dynamic and; (2) the interaction is crucial for normal mechanotransduction and morphology of hair bundles. "	"Genetic variants of CDH23 associated with noise-induced hearing loss. Noise-induced hearing loss (NIHL) is a complex disease resulting from the interaction between external and intrinsic/genetic factors. Based on mice studies, one of the most interesting candidate gene for NIHL susceptibility is CDH23-encoding cadherin 23, a component of the stereocilia tip links. The aim of this study was to analyze selected CDH23 single nucleotide polymorphisms (SNPs) and to evaluate their interaction with environmental and individual factors in respect to susceptibility for NIHL in humans. A study group consisted of 314 worst-hearing and 313 best-hearing subjects exposed to occupational noise, selected out of 3,860 workers database. Five SNPs in CDH23 were genotyped using real-time PCR. Subsequently, the main effect of genotype and its interaction with selected environmental and individual factors were evaluated. The significant results within the main effect of genotype were obtained for the SNP rs3752752, localized in exon 21. The effect was observed in particular in the subgroup of young subjects and in those exposed to impulse noise; CC genotype was more frequent among susceptible subjects, whereas genotype CT appeared more often among resistant to noise subjects. The effect of this polymorphism was not modified by none of environmental/individual factors except for blood pressure; however, the latter one should be further investigated. Smoking was shown as an independent factor determining NIHL development. The results of this study confirm that CDH23 genetic variant may modify the susceptibility to NIHL development in humans, as it was earlier proven in mice. Because the differences between the 2 study groups were not necessarily related to susceptibility to noise but they also were prone to age-related cochlear changes, these results should be interpreted with caution until replication in another population."	"Non-syndromic hearing impairment in India: high allelic heterogeneity among mutations in TMPRSS3, TMC1, USHIC, CDH23 and TMIE. Mutations in the autosomal genes TMPRSS3, TMC1, USHIC, CDH23 and TMIE are known to cause hereditary hearing loss. To study the contribution of these genes to autosomal recessive, non-syndromic hearing loss (ARNSHL) in India, we examined 374 families with the disorder to identify potential mutations. We found four mutations in TMPRSS3, eight in TMC1, ten in USHIC, eight in CDH23 and three in TMIE. Of the 33 potentially pathogenic variants identified in these genes, 23 were new and the remaining have been previously reported. Collectively, mutations in these five genes contribute to about one-tenth of ARNSHL among the families examined. New mutations detected in this study extend the allelic heterogeneity of the genes and provide several additional variants for structure-function correlation studies. These findings have implications for early DNA-based detection of deafness and genetic counseling of affected families in the Indian subcontinent. "	"Usher protein functions in hair cells and photoreceptors. The 10 different genes associated with the deaf/blind disorder, Usher syndrome, encode a number of structurally and functionally distinct proteins, most expressed as multiple isoforms/protein variants. Functional characterization of these proteins suggests a role in stereocilia development in cochlear hair cells, likely owing to adhesive interactions in hair bundles. In mature hair cells, homodimers of the Usher cadherins, cadherin 23 and protocadherin 15, interact to form a structural fiber, the tip link, and the linkages that anchor the taller stereocilia's actin cytoskeleton core to the shorter adjacent stereocilia and the elusive mechanotransduction channels, explaining the deafness phenotype when these molecular interactions are perturbed. The conundrum is that photoreceptors lack a synonymous mechanotransduction apparatus, and so a common theory for Usher protein function in the two neurosensory cell types affected in Usher syndrome is lacking. Recent evidence linking photoreceptor cell dysfunction in the shaker 1 mouse model for Usher syndrome to light-induced protein translocation defects, combined with localization of an Usher protein interactome at the periciliary region of the photoreceptors suggests Usher proteins might regulate protein trafficking between the inner and outer segments of photoreceptors. A distinct Usher protein complex is trafficked to the ribbon synapses of hair cells, and synaptic defects have been reported in Usher mutants in both hair cells and photoreceptors. This review aims to clarify what is known about Usher protein function at the synaptic and apical poles of hair cells and photoreceptors and the prospects for identifying a unifying pathobiological mechanism to explain deaf/blindness in Usher syndrome. "	"Cadherin-12 contributes to tumorigenicity in colorectal cancer by promoting migration, invasion, adhersion and angiogenesis. Cadherin 12 (CDH12), which encodes a type II classical cadherin from the cadherin superfamily, may mediate calcium-dependent cell adhesion. It has been demonstrated that CDH12 could play an important role in the invasion and metastasis of salivary adenoid cystic carcinoma. We decided to investigate the relationship between CDH12 expression level and clinicopathologic variables in colorectal carcinoma (CRC) patients and to explore the functions of CDH12 in tumorigenesis in CRC. The expression levels of CDH12 in colorectal carcinoma tissues were detected by immunohistochemistry. Real-time PCR and Western Blot were used to screen CDH12 high-expression cell lines. CCK-8 assay was used to detect the proliferation ability of CRC cells being transfected by shRNAs against CDH12. The wound assay and transwell assay were performed to test migration and invasion ability. The importance of CDH12 in cell-cell junctions was detected by cell adhesion assay and cell aggregation assay. Endothelial tube formation assay was used to test the influence of CDH12 on angiogenesis. Statistical analysis of clinical cases revealed that the positive rate of CDH12 was higher in the CRC tumor tissues compared with the adjacent non-tumor tissues. The expression levels of CDH12 in CRC patients are significantly correlated with invasion depth. Consistently, the ability of proliferation, migration and invasion were suppressed when CDH12 was decreased in CRC cells transfected with shRNAs. Cell adhesion assay and cell aggregation assay presented that tumor cells tend to disperse with the lack of CDH12. Endothelial tube formation assay showed that down-regulation of CDH12 could obviously inhibit the process of angiogenesis, implying that CDH12 may play an important role in tumor metastasis Our results showed that CDH12 promotes proliferation, migration, invasion, adhesion and angiogenesis, suggesting that CDH12 may be an oncogene in colorectal cancer. CDH12 is expected to become a new diagnostic and prognostic marker and a novel target of the treatment of colorectal cancer."	"Auditory event-related signals in mouse ERG recordings. In murine disease models, particularly in cases when retinal electrical activity is reduced, an event-related component becomes apparent that does not change with the stimulus intensity in electroretinogram (ERG) recordings. In this work, we show that this electric component is evoked by the sound of the flash discharge rather than the light flash itself. Wild-type mice (C57BL/6), mice with rod function only (Cnga3 (-/-)), mice lacking any photoreceptor function (Cnga3 (-/-) rho (-/-)), and mice with no auditory function (Cdh23 (vAlb/vAlb) ) were examined with Xenon flash ERG systems. An acoustic noise generator was used to mask discharge sounds. ERG recording modalities were identified where usually no discernible response can be elicited. These include photopic conditions in Cnga3 (-/-) mice, photopic conditions together with very low stimulus intensities in C57BL/6 mice, and both scotopic and photopic conditions in Cnga3 (-/-) rho (-/-) mice. However, in all of these cases, small signals, featuring an initial a-wave like deflection at about 20 ms and a subsequent b-wave like deflection peaking at about 40 ms after the flash, were detected. In contrast, such signals could not be detected in deaf Cdh23 (vAlb/vAlb) mice. Furthermore, masking the Xenon discharge sound by continuous acoustic noise led to a loss of the event-related signals in a reversible manner. We could identify an auditory event-related component, presumably resembling auditory evoked potentials, as a major source of ERG signals of non-visual origin in mice. This finding may be of particular importance for the analysis and interpretation of ERG data in mice with reduced visual responses."	"Compound heterozygosity of the functionally null Cdh23(v-ngt) and hypomorphic Cdh23(ahl) alleles leads to early-onset progressive hearing loss in mice. The waltzer (v) mouse mutant harbors a mutation in Cadherin 23 (Cdh23) and is a model for Usher syndrome type 1D, which is characterized by congenital deafness, vestibular dysfunction, and prepubertal onset of progressive retinitis pigmentosa. In mice, functionally null Cdh23 mutations affect stereociliary morphogenesis and the polarity of both cochlear and vestibular hair cells. In contrast, the murine Cdh23(ahl) allele, which harbors a hypomorphic mutation, causes an increase in susceptibility to age-related hearing loss in many inbred strains. We produced congenic mice by crossing mice carrying the v niigata (Cdh23(v-ngt)) null allele with mice carrying the hypomorphic Cdh23(ahl) allele on the C57BL/6J background, and we then analyzed the animals' balance and hearing phenotypes. Although the Cdh23(v-ngt/ahl) compound heterozygous mice exhibited normal vestibular function, their hearing ability was abnormal: the mice exhibited higher thresholds of auditory brainstem response (ABR) and rapid age-dependent elevation of ABR thresholds compared with Cdh23(ahl/ahl) homozygous mice. We found that the stereocilia developed normally but were progressively disrupted in Cdh23(v-ngt/ahl) mice. In hair cells, CDH23 localizes to the tip links of stereocilia, which are thought to gate the mechanoelectrical transduction channels in hair cells. We hypothesize that the reduction of Cdh23 gene dosage in Cdh23(v-ngt/ahl) mice leads to the degeneration of stereocilia, which consequently reduces tip link tension. These findings indicate that CDH23 plays an important role in the maintenance of tip links during the aging process. "	"Diverse spectrum of rare deafness genes underlies early-childhood hearing loss in Japanese patients: a cross-sectional, multi-center next-generation sequencing study. Genetic tests for hereditary hearing loss inform clinical management of patients and can provide the first step in the development of therapeutics. However, comprehensive genetic tests for deafness genes by Sanger sequencing is extremely expensive and time-consuming. Next-generation sequencing (NGS) technology is advantageous for genetic diagnosis of heterogeneous diseases that involve numerous causative genes. Genomic DNA samples from 58 subjects with hearing loss from 15 unrelated Japanese families were subjected to NGS to identify the genetic causes of hearing loss. Subjects did not have pathogenic GJB2 mutations (the gene most often associated with inherited hearing loss), mitochondrial m.1555A&gt;G or 3243A&gt;G mutations, enlarged vestibular aqueduct, or auditory neuropathy. Clinical features of subjects were obtained from medical records. Genomic DNA was subjected to a custom-designed SureSelect Target Enrichment System to capture coding exons and proximal flanking intronic sequences of 84 genes responsible for nonsyndromic or syndromic hearing loss, and DNA was sequenced by Illumina GAIIx (paired-end read). The sequences were mapped and quality-checked using the programs BWA, Novoalign, Picard, and GATK, and analyzed by Avadis NGS. Candidate genes were identified in 7 of the 15 families. These genes were ACTG1, DFNA5, POU4F3, SLC26A5, SIX1, MYO7A, CDH23, PCDH15, and USH2A, suggesting that a variety of genes underlie early-childhood hearing loss in Japanese patients. Mutations in Usher syndrome-related genes were detected in three families, including one double heterozygous mutation of CDH23 and PCDH15. Targeted NGS analysis revealed a diverse spectrum of rare deafness genes in Japanese subjects and underscores implications for efficient genetic testing."	"Targeted exon sequencing successfully discovers rare causative genes and clarifies the molecular epidemiology of Japanese deafness patients. Target exon resequencing using Massively Parallel DNA Sequencing (MPS) is a new powerful strategy to discover causative genes in rare Mendelian disorders such as deafness. We attempted to identify genomic variations responsible for deafness by massive sequencing of the exons of 112 target candidate genes. By the analysis of 216randomly selected Japanese deafness patients (120 early-onset and 96 late-detected), who had already been evaluated for common genes/mutations by Invader assay and of which 48 had already been diagnosed, we efficiently identified causative mutations and/or mutation candidates in 57 genes. Approximately 86.6% (187/216) of the patients had at least one mutation. Of the 187 patients, in 69 the etiology of the hearing loss was completely explained. To determine which genes have the greatest impact on deafness etiology, the number of mutations was counted, showing that those in GJB2 were exceptionally higher, followed by mutations in SLC26A4, USH2A, GPR98, MYO15A, COL4A5 and CDH23. The present data suggested that targeted exon sequencing of selected genes using the MPS technology followed by the appropriate filtering algorithm will be able to identify rare responsible genes including new candidate genes for individual patients with deafness, and improve molecular diagnosis. In addition, using a large number of patients, the present study clarified the molecular epidemiology of deafness in Japanese. GJB2 is the most prevalent causative gene, and the major (commonly found) gene mutations cause 30-40% of deafness while the remainder of hearing loss is the result of various rare genes/mutations that have been difficult to diagnose by the conventional one-by-one approach. In conclusion, target exon resequencing using MPS technology is a suitable method to discover common and rare causative genes for a highly heterogeneous monogenic disease like hearing loss. "	"Adaptive evolution of tight junction protein claudin-14 in echolocating whales. Toothed whales and bats have independently evolved specialized ultrasonic hearing for echolocation. Recent findings have suggested that several genes including Prestin, Tmc1, Pjvk and KCNQ4 appear to have undergone molecular adaptations associated with the evolution of this ultrasonic hearing in mammals. Here we studied the hearing gene Cldn14, which encodes the claudin-14 protein and is a member of tight junction proteins that functions in the organ of Corti in the inner ear to maintain a cationic gradient between endolymph and perilymph. Particular mutations in human claudin-14 give rise to non-syndromic deafness, suggesting an essential role in hearing. Our results uncovered two bursts of positive selection, one in the ancestral branch of all toothed whales and a second in the branch leading to the delphinid, phocoenid and ziphiid whales. These two branches are the same as those previously reported to show positive selection in the Prestin gene. Furthermore, as with Prestin, the estimated hearing frequencies of whales significantly correlate with numbers of branch-wise non-synonymous substitutions in Cldn14, but not with synonymous changes. However, in contrast to Prestin, we found no evidence of positive selection in bats. Our findings from Cldn14, and comparisons with Prestin, strongly implicate multiple loci in the acquisition of echolocation in cetaceans, but also highlight possible differences in the evolutionary route to echolocation taken by whales and bats. "	"A new Atp2b2 deafwaddler allele, dfw(i5), interacts strongly with Cdh23 and other auditory modifiers. Tight regulation of calcium (Ca2+) concentrations in the stereocilia bundles of auditory hair cells of the inner ear is critical to normal auditory transduction. The plasma membrane Ca2+ ATPase 2 (PMCA2), encoded by the Atp2b2 gene, is the primary mechanism for clearance of Ca2+ from auditory stereocilia, keeping intracellular levels low, and also contributes to maintaining adequate levels of extracellular Ca2+ in the endolymph. This study characterizes a novel null Atp2b2 allele, dfw(i5), by examining cochlear anatomy, vestibular function and auditory physiology in mutant mice. Loss of auditory function in PMCA2 mutants can be attributed to dysregulation of intracellular Ca2+ inside the stereocilia bundles. However, extracellular Ca2+ ions surrounding the stereocilia are also required for rigidity of cadherin 23, a component of the stereocilia tip-link encoded by the Cdh23 gene. This study further resolves the interaction between Atp2b2 and Cdh23 in a gene dosage and frequency-dependent manner, and finds that low frequencies are significantly affected by the interaction. In +/dfw(i5) mice, one mutant copy of Cdh23 is sufficient to cause broad frequency hearing impairment. Additionally, we report another modifying interaction with Atp2b2 on auditory sensitivity, possibly caused by an unidentified hearing loss gene in mice."	"Molecular remodeling of tip links underlies mechanosensory regeneration in auditory hair cells. Sound detection by inner ear hair cells requires tip links that interconnect mechanosensory stereocilia and convey force to yet unidentified transduction channels. Current models postulate a static composition of the tip link, with protocadherin 15 (PCDH15) at the lower and cadherin 23 (CDH23) at the upper end of the link. In terminally differentiated mammalian auditory hair cells, tip links are subjected to sound-induced forces throughout an organism's life. Although hair cells can regenerate disrupted tip links and restore hearing, the molecular details of this process are unknown. We developed a novel implementation of backscatter electron scanning microscopy to visualize simultaneously immuno-gold particles and stereocilia links, both of only a few nanometers in diameter. We show that functional, mechanotransduction-mediating tip links have at least two molecular compositions, containing either PCDH15/CDH23 or PCDH15/PCDH15. During regeneration, shorter tip links containing nearly equal amounts of PCDH15 at both ends appear first. Whole-cell patch-clamp recordings demonstrate that these transient PCDH15/PCDH15 links mediate mechanotransduction currents of normal amplitude but abnormal Ca(2+)-dependent decay (adaptation). The mature PCDH15/CDH23 tip link composition is re-established later, concomitant with complete recovery of adaptation. Thus, our findings provide a molecular mechanism for regeneration and maintenance of mechanosensory function in postmitotic auditory hair cells and could help identify elusive components of the mechanotransduction machinery."	"Genetic analysis through OtoSeq of Pakistani families segregating prelingual hearing loss. To identify the genetic cause of prelingual sensorineural hearing loss in Pakistani families using a next-generation sequencing (NGS)-based mutation screening test named OtoSeq. Prospective study. Research laboratory. We used 3 fluorescently labeled short tandem repeat (STR) markers for each of the known autosomal recessive nonsyndromic (DFNB) and Usher syndrome (USH) locus to perform a linkage analysis of 243 multigenerational Pakistani families segregating prelingual hearing loss. After genotyping, we focused on 34 families with potential linkage to MYO7A, CDH23, and SLC26A4. We screened affected individuals from a subset of these families using the OtoSeq platform to identify underlying genetic variants. Sanger sequencing was performed to confirm and study the segregation of mutations in other family members. For novel mutations, normal hearing individuals from ethnically matched backgrounds were also tested. Hearing loss was found to co-segregate with locus-specific STR markers for MYO7A in 32 families, CDH23 in 1 family, and SLC26A4 in 1 family. Using the OtoSeq platform, a microdroplet PCR-based enrichment followed by NGS, we identified mutations in 28 of the 34 families including 11 novel mutations. Sanger sequencing of these mutations showed 100% concordance with NGS data and co-segregation of the mutant alleles with the hearing loss phenotype in the respective families. Using NGS-based platforms like OtoSeq in families segregating hearing loss will contribute to the identification of common and population-specific mutations, early diagnosis, genetic counseling, and molecular epidemiology."	"β-Actin and fascin-2 cooperate to maintain stereocilia length. Stereocilia are actin-based protrusions on auditory sensory hair cells that are deflected by sound waves to initiate the conversion of mechanical energy to neuronal signals. Stereocilia maintenance is essential because auditory hair cells are not renewed in mammals. This process requires both β-actin and γ-actin as knock-out mice lacking either isoform develop distinct stereocilia pathology during aging. In addition, stereocilia integrity may hinge on immobilizing actin, which outside of a small region at stereocilia tips turns over with a very slow, months-long half-life. Here, we establish that β-actin and the actin crosslinking protein fascin-2 cooperate to maintain stereocilia length and auditory function. We observed that mice expressing mutant fascin-2 (p.R109H) or mice lacking β-actin share a common phenotype including progressive, high-frequency hearing loss together with shortening of a defined subset of stereocilia in the hair cell bundle. Fascin-2 binds β-actin and γ-actin filaments with similar affinity in vitro and fascin-2 does not depend on β-actin for localization in vivo. Nevertheless, double-mutant mice lacking β-actin and expressing fascin-2 p.R109H have a more severe phenotype suggesting that each protein has a different function in a common stereocilia maintenance pathway. Because the fascin-2 p.R109H mutant binds but fails to efficiently crosslink actin filaments, we propose that fascin-2 crosslinks function to slow actin depolymerization at stereocilia tips to maintain stereocilia length."	"Noddy, a mouse harboring a missense mutation in protocadherin-15, reveals the impact of disrupting a critical interaction site between tip-link cadherins in inner ear hair cells. In hair cells of the inner ear, sound or head movement increases tension in fine filaments termed tip links, which in turn convey force to mechanosensitive ion channels to open them. Tip links are formed by a tetramer of two cadherin proteins: protocadherin 15 (PCDH15) and cadherin 23 (CDH23), which have 11 and 27 extracellular cadherin (EC) repeats, respectively. Mutations in either protein cause inner ear disorders in mice and humans. We showed recently that these two cadherins bind tip-to-tip in a &quot;handshake&quot; mode that involves the EC1 and EC2 repeats of both proteins. However, a paucity of appropriate animal models has slowed our understanding both of the interaction and of how mutations of residues within the predicted interface compromise tip link integrity. Here, we present noddy, a new mouse model for hereditary deafness. Identified in a forward genetic screen, noddy homozygotes lack inner ear function. Mapping and sequencing showed that noddy mutant mice harbor an isoleucine-to-asparagine (I108N) mutation in the EC1 repeat of PCDH15. Residue I108 interacts with CDH23 EC2 in the handshake and its mutation impairs the interaction in vitro. The noddy mutation allowed us to determine the consequences of blocking the handshake in vivo: tip link formation and bundle morphology are disrupted, and mechanotransduction channels fail to remain open at rest. These results offer new insights into the interaction between PCDH15 and CDH23 and help explain the etiology of human deafness linked to mutations in the tip-link interface."	"Maintaining good hearing: calorie restriction, Sirt3, and glutathione. Reducing calorie intake extends the lifespan of a variety of experimental models and delays progression of age-related hearing loss (AHL). AHL is a common feature of aging and is characterized by age-related decline of hearing associated with loss of sensory hair cells, spiral ganglion neurons, and/or stria vascularis degeneration in the cochlea. Sirtuins are a family of NAD(+)-dependent enzymes that regulate lifespan in lower organisms and have emerged as broad regulators of cellular fate. Our recent study indicated that mitochondrial Sirt3, a member of the sirtuin family, mediates the anti-aging effects of calorie restriction (CR) on AHL in mice. Interestingly, we also found that weight loss alone may not be sufficient for maintaining normal hearing. How does CR slow the progression of AHL through regulation of Sirt3? Here we review the evidence that during CR, Sirt3 slows the progression of AHL by promoting the glutathione-mediated mitochondrial antioxidant defense system in mice. A significant reduction in food consumption in one's daily life may not be a desirable and realistic option for most people. Therefore, identification/discovery of compounds that induce the activation of SIRT3 or glutathione reductase, or that increase mitochondrial glutathione levels has potential for maintaining good hearing through mimicking the anti-aging effects of CR in human inner ear cells. "	"Study of USH1 splicing variants through minigenes and transcript analysis from nasal epithelial cells. Usher syndrome type I (USH1) is an autosomal recessive disorder characterized by congenital profound deafness, vestibular areflexia and prepubertal retinitis pigmentosa. The first purpose of this study was to determine the pathologic nature of eighteen USH1 putative splicing variants found in our series and their effect in the splicing process by minigene assays. These variants were selected according to bioinformatic analysis. The second aim was to analyze the USH1 transcripts, obtained from nasal epithelial cells samples of our patients, in order to corroborate the observed effect of mutations by minigenes in patient's tissues. The last objective was to evaluate the nasal ciliary beat frequency in patients with USH1 and compare it with control subjects. In silico analysis were performed using four bioinformatic programs: NNSplice, Human Splicing Finder, NetGene2 and Spliceview. Afterward, minigenes based on the pSPL3 vector were used to investigate the implication of selected changes in the mRNA processing. To observe the effect of mutations in the patient's tissues, RNA was extracted from nasal epithelial cells and RT-PCR analyses were performed. Four MYO7A (c.470G&gt;A, c.1342_1343delAG, c.5856G&gt;A and c.3652G&gt;A), three CDH23 (c.2289+1G&gt;A, c.6049G&gt;A and c.8722+1delG) and one PCDH15 (c.3717+2dupTT) variants were observed to affect the splicing process by minigene assays and/or transcripts analysis obtained from nasal cells. Based on our results, minigenes are a good approach to determine the implication of identified variants in the mRNA processing, and the analysis of RNA obtained from nasal epithelial cells is an alternative method to discriminate neutral Usher variants from those with a pathogenic effect on the splicing process. In addition, we could observe that the nasal ciliated epithelium of USH1 patients shows a lower ciliary beat frequency than control subjects."	"Otoprotective effects of erythropoietin on Cdh23erl/erl mice. The Cdh23(erl/erl) mice are a novel mouse model for DFNB12 and are characterized by progressive hearing loss. In this study, erythropoietin (EPO) was given to the Cdh23(erl/erl) mice by intraperitoneal injection every other day from P7 for 7 weeks. Phosphate-buffered saline-treated or untreated Cdh23(erl/erl) mice were used as controls. Auditory-evoked brainstem response (ABR) thresholds and distortion product oto-acoustic emission (DPOAE) were measured in the mouse groups at the age of 4, 6 and 8 weeks. The results show that EPO can significantly decrease the ABR thresholds in the Cdh23(erl/erl) mice as compared with those of the untreated mice at stimulus frequencies of click, 8-, 16- and 32-kHz at three time points. Meanwhile, DPOAE amplitudes in the EPO-treated Cdh23(erl/erl) mouse group were significantly higher than those of the untreated groups at f2 frequency of 15383 Hz at the three time points. Furthermore, the mean percentage of outer hair cell loss at middle through basal turns of cochleae was significantly lower in EPO-treated Cdh23(erl/erl) mice than in the untreated mice (P&lt;0.05). This is the first report that EPO acts as an otoprotectant in a DFNB12 mouse model with progressive hearing loss."	"Integrity and regeneration of mechanotransduction machinery regulate aminoglycoside entry and sensory cell death. Sound perception requires functional hair cell mechanotransduction (MET) machinery, including the MET channels and tip-link proteins. Prior work showed that uptake of ototoxic aminoglycosides (AG) into hair cells requires functional MET channels. In this study, we examined whether tip-link proteins, including Cadherin 23 (Cdh23), regulate AG entry into hair cells. Using time-lapse microscopy on cochlear explants, we found rapid uptake of gentamicin-conjugated Texas Red (GTTR) into hair cells from three-day-old Cdh23(+/+) and Cdh23(v2J/+) mice, but failed to detect GTTR uptake in Cdh23(v2J/v2J) hair cells. Pre-treatment of wildtype cochleae with the calcium chelator 1,2-bis(o-aminophenoxy) ethane-N,N,N',N'-tetraacetic acid (BAPTA) to disrupt tip-links also effectively reduced GTTR uptake into hair cells. Both Cdh23(v2J/v2J) and BAPTA-treated hair cells were protected from degeneration caused by gentamicin. Six hours after BAPTA treatment, GTTR uptake remained reduced in comparison to controls; by 24 hours, drug uptake was comparable between untreated and BAPTA-treated hair cells, which again became susceptible to cell death induced by gentamicin. Together, these results provide genetic and pharmacologic evidence that tip-links are required for AG uptake and toxicity in hair cells. Because tip-links can spontaneously regenerate, their temporary breakage offers a limited time window when hair cells are protected from AG toxicity."	"Cyclic nucleotide-gated channel α-3 (CNGA3) interacts with stereocilia tip-link cadherin 23 + exon 68 or alternatively with myosin VIIa, two proteins required for hair cell mechanotransduction. Previously, we obtained evidence for a photoreceptor/olfactory type of CNGA3 transcript in a purified teleost vestibular hair cell preparation with immunolocalization of CNGA3 protein to stereocilia of teleost vestibular and mammalian cochlear hair cells. The carboxyl terminus of highly Ca(2+)-permeable CNGA3 expressed in the mammalian organ of Corti and saccular hair cells was found to interact with an intracellular domain of microfibril interface-located protein 1 (EMILIN 1), a member of the elastin superfamily, also immunolocalizd to hair cell stereocilia (Selvakumar, D., Drescher, M. J., Dowdall, J. R., Khan, K. M., Hatfield, J. S., Ramakrishnan, N. A., and Drescher, D. G. (2012) Biochem. J. 443, 463-476). Here, we provide evidence for organ of Corti proteins, of Ca(2+)-dependent binding of the amino terminus of CNGA3 specifically to the carboxyl terminus of stereocilia tip-link protein CDH23 +68 (cadherin 23 with expressed exon 68) by yeast two-hybrid mating and co-transformation protocols, pulldown assays, and surface plasmon resonance analysis. Myosin VIIa, required for adaptation of hair cell mechanotransduction (MET) channel(s), competed with CDH23 +68, with direct Ca(2+)-dependent binding to the amino terminus of CNGA3. Based upon the premise that hair cell stereocilia tip-link proteins are closely coupled with MET, these results are consistent with the possibility that CNGA3 participates in hair-cell MET. Together with the demonstration of protein-protein interaction between HCN1 and tip-link protein protocadherin 15 CD3 (Ramakrishnan, N. A., Drescher, M. J., Barretto, R. L., Beisel, K. W., Hatfield, J. S., and Drescher, D. G. (2009) J. Biol. Chem. 284, 3227-3238; Ramakrishnan, N. A., Drescher, M. J., Khan, K. M., Hatfield, J. S., and Drescher, D. G. (2012) J. Biol. Chem. 287, 37628-37646), a protein-protein interaction for CNGA3 and a second tip-link protein, CDH23 +68, further suggests possible association of two different channels with a single stereocilia tip link."	"Structure of a force-conveying cadherin bond essential for inner-ear mechanotransduction. Hearing and balance use hair cells in the inner ear to transform mechanical stimuli into electrical signals. Mechanical force from sound waves or head movements is conveyed to hair-cell transduction channels by tip links, fine filaments formed by two atypical cadherins known as protocadherin 15 and cadherin 23 (refs 4, 5). These two proteins are involved in inherited deafness and feature long extracellular domains that interact tip-to-tip in a Ca(2+)-dependent manner. However, the molecular architecture of this complex is unknown. Here we combine crystallography, molecular dynamics simulations and binding experiments to characterize the protocadherin 15-cadherin 23 bond. We find a unique cadherin interaction mechanism, in which the two most amino-terminal cadherin repeats (extracellular cadherin repeats 1 and 2) of each protein interact to form an overlapped, antiparallel heterodimer. Simulations predict that this tip-link bond is mechanically strong enough to resist forces in hair cells. In addition, the complex is shown to become unstable in response to Ca(2+) removal owing to increased flexure of Ca(2+)-free cadherin repeats. Finally, we use structures and biochemical measurements to study the molecular mechanisms by which deafness mutations disrupt tip-link function. Overall, our results shed light on the molecular mechanics of hair-cell sensory transduction and on new interaction mechanisms for cadherins, a large protein family implicated in tissue and organ morphogenesis, neural connectivity and cancer."	"Rapid positional cloning of zebrafish mutations by linkage and homozygosity mapping using whole-genome sequencing. Forward genetic screens in zebrafish have identified &gt;9000 mutants, many of which are potential disease models. Most mutants remain molecularly uncharacterized because of the high cost, time and labor investment required for positional cloning. These costs limit the benefit of previous genetic screens and discourage future screens. Drastic improvements in DNA sequencing technology could dramatically improve the efficiency of positional cloning in zebrafish and other model organisms, but the best strategy for cloning by sequencing has yet to be established. Using four zebrafish inner ear mutants, we developed and compared two approaches for 'cloning by sequencing': one based on bulk segregant linkage (BSFseq) and one based on homozygosity mapping (HMFseq). Using BSFseq we discovered that mutations in lmx1b and jagged1b cause abnormal ear morphogenesis. With HMFseq we validated that the disruption of cdh23 abolishes the ear's sensory functions and identified a candidate lesion in lhfpl5a predicted to cause nonsyndromic deafness. The success of HMFseq shows that the high intrastrain polymorphism rate in zebrafish eliminates the need for time-consuming map crosses. Additionally, we analyzed diversity in zebrafish laboratory strains to find areas of elevated diversity and areas of fixed homozygosity, reinforcing recent findings that genome diversity is clustered. We present a database of &gt;15 million sequence variants that provides much of this approach's power. In our four test cases, only a single candidate single nucleotide polymorphism (SNP) remained after subtracting all database SNPs from a mutant's critical region. The saturation of the common SNP database and our open source analysis pipeline MegaMapper will improve the pace at which the zebrafish community makes unique discoveries relevant to human health."	"Localization of Usher 1 proteins to the photoreceptor calyceal processes, which are absent from mice. The mechanisms underlying retinal dystrophy in Usher syndrome type I (USH1) remain unknown because mutant mice lacking any of the USH1 proteins-myosin VIIa, harmonin, cadherin-23, protocadherin-15, sans-do not display retinal degeneration. We found here that, in macaque photoreceptor cells, all USH1 proteins colocalized at membrane interfaces (i) between the inner and outer segments in rods and (ii) between the microvillus-like calyceal processes and the outer segment basolateral region in rods and cones. This pattern, conserved in humans and frogs, was mediated by the formation of an USH1 protein network, which was associated with the calyceal processes from the early embryonic stages of outer segment growth onwards. By contrast, mouse photoreceptors lacked calyceal processes and had no USH1 proteins at the inner-outer segment interface. We suggest that USH1 proteins form an adhesion belt around the basolateral region of the photoreceptor outer segment in humans, and that defects in this structure cause the retinal degeneration in USH1 patients."	"The Usher gene cadherin 23 is expressed in the zebrafish brain and a subset of retinal amacrine cells. To characterize the expression pattern of cadherin 23 (cdh23) in the zebrafish visual system, and to determine whether zebrafish cdh23 mutants have retinal defects similar to those present in the human disease Usher syndrome 1D. In situ hybridization and immunohistochemistry were used to characterize cdh23 expression in the zebrafish, and to evaluate cdh23 mutants for retinal degeneration. Visual function was assessed by measurement of the optokinetic response in cdh23 siblings and mutants. We detected cdh23 mRNA expression in multiple nuclei of both the developing and adult central nervous system. In the retina, cdh23 mRNA was expressed in a small subset of amacrine cells, beginning at 70 h postfertilization and continuing through adulthood. No expression was detected in photoreceptors. The cdh23-positive population of amacrine cells was GABAergic. Examination of homozygous larvae expressing two different mutant alleles of cdh23-cdh23(tc317e) or cdh23(tj264a)-revealed no detectable morphological retinal defects or degeneration. In addition, the optokinetic response to moving gratings of varied contrast or spatial frequency was normal in both mutants. Unlike in other vertebrates, cdh23 is not detectable in zebrafish photoreceptors. Instead, cdh23 is expressed by a small subset of GABAergic amacrine cells. Moreover, larvae with mutations in cdh23 do not exhibit any signs of gross retinal degeneration or dysfunction. The role played by cdh23 in human retinal function is likely performed by either a different gene or an unidentified cdh23 splice variant in the retina that is not affected by the above mutations."	"Prevalence and clinical features of hearing loss patients with CDH23 mutations: a large cohort study. Screening for gene mutations in CDH23, which has many exons, has lagged even though it is likely to be an important cause for hearing loss patients. To assess the importance of CDH23 mutations in non-syndromic hearing loss, two-step screening was applied and clinical characteristics of the patients with CDH23 mutations were examined in this study. As a first screening, we performed Sanger sequencing using 304 probands compatible with recessive inheritance to find the pathologic mutations. Twenty-six possible mutations were detected to be pathologic in the first screening. For the second screening, using the probes for these 26 mutations, a large cohort of probands (n = 1396) was screened using Taqman amplification-based mutation analysis followed by Sanger sequencing. The hearing loss in a total of 52 families (10 homozygous, 13 compound heterogygous, and 29 heterozygous) was found to be caused by the CDH23 mutations. The majority of the patients showed congenital, high frequency involved, progressive hearing loss. Interestingly, some particular mutations cause late onset moderate hearing loss. The present study is the first to demonstrate the prevalence of CDH23 mutations among non-syndromic hearing loss patients and indicated that mutations of the CDH23 gene are an important cause of non-syndromic hearing loss."	"Large protein assemblies formed by multivalent interactions between cadherin23 and harmonin suggest a stable anchorage structure at the tip link of stereocilia. Stereocilia tip links of inner ear hair cells are subjected to constant stretching during hair-bundle deflection, and accordingly are well designed to prevent from being broken by mechanical tensions. The roots of tip links, which couple tip links with the cytoskeleton, supposedly play important roles in withstanding large forces under stimulated conditions. The upper root of the tip link is mainly formed by the cytoplasmic tail of cadherin23 and its actin-anchoring protein harmonin. However, the detailed organization mode of the two proteins that gives rise to a strong upper root remains unclear. Here we show that the exon68-encoded peptide of cadherin23 can either interact with the N-terminal domain (NTD) of harmonin or form a homodimer. We demonstrate that the three harmonin binding sites of cadherin23, namely the NTD-binding motif, the exon68 peptide, and the C-terminal PDZ binding motif, do not synergize with each other in binding to harmonin, instead they facilitate formation of polymeric cadherin23/harmonin complexes. The exon68 peptide can promote the cadherin23/harmonin polymer formation via either binding to harmonin NTD or self-dimerization. We propose that the polymeric cadherin23/harmonin complex formed beneath the upper tip link membranes may serve as part of the stable rootlet structure for anchoring the tip links of stereocilia."	"Mutation screening of the PCDH15 gene in Spanish patients with Usher syndrome type I. PCDH15 codes for protocadherin-15, a cell-cell adhesion protein essential in the morphogenesis and cohesion of stereocilia bundles and in the function or preservation of photoreceptor cells. Mutations in the PCDH15 gene are responsible for Usher syndrome type I (USH1F) and non-syndromic hearing loss (DFNB23). The purpose of this work was to perform PCDH15 mutation screening to identify the genetic cause of the disease in a cohort of Spanish patients with Usher syndrome type I and establish phenotype-genotype correlation. Mutation analysis of PCDH15 included additional exons recently identified and was performed by direct sequencing. The screening was performed in 19 probands with USH already screened for mutations in the most prevalent USH1 genes, myosin VIIA (MYO7A) and cadherin-23 (CDH23), and for copy number variants in PCDH15. Seven different point mutations, five novel, were detected. Including the large PCDH15 rearrangements previously reported in our cohort of patients, a total of seven of 19 patients (36.8%) were carriers of at least one pathogenic allele. Thirteen out of the 38 screened alleles carried pathogenic PCDH15 variants (34.2%). Five out of the seven point mutations reported in the present study are novel, supporting the idea that most PCDH15 mutations are private. Furthermore, no mutational hotspots have been identified. In most patients, detected mutations led to a truncated protein, reinforcing the hypothesis that severe mutations cause the Usher I phenotype and that missense variants are mainly responsible for non-syndromic hearing impairment."	"Parallel evolution of auditory genes for echolocation in bats and toothed whales. The ability of bats and toothed whales to echolocate is a remarkable case of convergent evolution. Previous genetic studies have documented parallel evolution of nucleotide sequences in Prestin and KCNQ4, both of which are associated with voltage motility during the cochlear amplification of signals. Echolocation involves complex mechanisms. The most important factors include cochlear amplification, nerve transmission, and signal re-coding. Herein, we screen three genes that play different roles in this auditory system. Cadherin 23 (Cdh23) and its ligand, protocadherin 15 (Pcdh15), are essential for bundling motility in the sensory hair. Otoferlin (Otof) responds to nerve signal transmission in the auditory inner hair cell. Signals of parallel evolution occur in all three genes in the three groups of echolocators--two groups of bats (Yangochiroptera and Rhinolophoidea) plus the dolphin. Significant signals of positive selection also occur in Cdh23 in the Rhinolophoidea and dolphin, and Pcdh15 in Yangochiroptera. In addition, adult echolocating bats have higher levels of Otof expression in the auditory cortex than do their embryos and non-echolocation bats. Cdh23 and Pcdh15 encode the upper and lower parts of tip-links, and both genes show signals of convergent evolution and positive selection in echolocators, implying that they may co-evolve to optimize cochlear amplification. Convergent evolution and expression patterns of Otof suggest the potential role of nerve and brain in echolocation. Our synthesis of gene sequence and gene expression analyses reveals that positive selection, parallel evolution, and perhaps co-evolution and gene expression affect multiple hearing genes that play different roles in audition, including voltage and bundle motility in cochlear amplification, nerve transmission, and brain function."	"Autosomal recessive nonsyndromic deafness genes: a review. More than 50 Percent of prelingual hearing loss is genetic in origin, and of these up to 93 Percent are monogenic autosomal recessive traits. Some forms of genetic deafness can be recognized by their associated syndromic features, but in most cases, hearing loss is the only finding and is referred to as nonsyndromic deafness. To date, more than 700 different mutations have been identified in one of 42 genes in individuals with autosomal recessive nonsyndromic hearing loss (ARNSHL). Reported mutations in GJB2, encoding connexin 26, makes this gene the most common cause of hearing loss in many populations. Other relatively common deafness genes include SLC26A4, MYO15A, OTOF, TMC1, CDH23, and TMPRSS3. In this report we summarize genes and mutations reported in families with ARNSHL. Founder effects were demonstrated for some recurrent mutations but the most significant findings are the extreme locus and allelic heterogeneity and different spectrum of genes and mutations in each population."	"Molecular diagnostics for congenital hearing loss including 15 deafness genes using a next generation sequencing platform. Hereditary hearing loss (HL) can originate from mutations in one of many genes involved in the complex process of hearing. Identification of the genetic defects in patients is currently labor intensive and expensive. While screening with Sanger sequencing for GJB2 mutations is common, this is not the case for the other known deafness genes (&gt; 60). Next generation sequencing technology (NGS) has the potential to be much more cost efficient. Published methods mainly use hybridization based target enrichment procedures that are time saving and efficient, but lead to loss in sensitivity. In this study we used a semi-automated PCR amplification and NGS in order to combine high sensitivity, speed and cost efficiency. In this proof of concept study, we screened 15 autosomal recessive deafness genes in 5 patients with congenital genetic deafness. 646 specific primer pairs for all exons and most of the UTR of the 15 selected genes were designed using primerXL. Using patient specific identifiers, all amplicons were pooled and analyzed using the Roche 454 NGS technology. Three of these patients are members of families in which a region of interest has previously been characterized by linkage studies. In these, we were able to identify two new mutations in CDH23 and OTOF. For another patient, the etiology of deafness was unclear, and no causal mutation was found. In a fifth patient, included as a positive control, we could confirm a known mutation in TMC1. We have developed an assay that holds great promise as a tool for screening patients with familial autosomal recessive nonsyndromal hearing loss (ARNSHL). For the first time, an efficient, reliable and cost effective genetic test, based on PCR enrichment, for newborns with undiagnosed deafness is available."	"Association of cadherin23 single nucleotide polymorphism with age-related hearing impairment in Han Chinese. Genetic variation of cadheri23 (cdh23; 753G&gt;A in exon 7) has been implicated with age-related hearing impairment (ARHI) in mice. This study aimed to test the association of the CDH23 tag single nucleotide polymorphism (SNP) in intron 7 with ARHI in Han Chinese. Individual cohort study. Tertiary medical center. A total of 1175 Han Chinese subjects were divided into the case group (n = 310, 26% with poorest hearing) and the control group (n = 308, the 26% with best hearing) according to the Z(high) score converted from the original frequency-specific hearing thresholds. The CDH23 SNP locus (rs7087735: C/T) in intron 7 (coordinate: 72996763) shown in the HapMap was genotyped with correlation to the hearing phenotype. The genotype distributions of CDH23 (CC/CT/TT) were not significantly different between the case and control group (P = .489). Compared with genotype CC, the odds ratios of the genotypes CT and TT for ARHI were not significantly different after adjustment for other environmental factors (P = .299 for CT; P = .610 for TT). Despite that the Ahl allele of Cdh23 had been implicated with ARHI in mice, we found no positive association of the CDH23 tag SNP in intron 7 with ARHI in Han Chinese."	"Patients with CDH23 mutations and the 1555A&gt;G mitochondrial mutation are good candidates for electric acoustic stimulation (EAS). CDH23 mutations and the 1555A&gt;G mitochondrial mutation were identified among our series of electric acoustic stimulation (EAS) patients, confirming that these genes were important in hearing loss with involvement of high frequency. Successful hearing preservation as well as good outcomes from EAS indicated that patients with this combination of mutations are good candidates for EAS. Screening for gene mutations that possibly cause hearing loss involving high frequency was performed to identify the responsible genes in patients with EAS. In addition to a review of the genetic background of the patients with residual hearing loss, the benefit of EAS for patients with particular gene mutations was evaluated. Eighteen patients (15 late-onset, 3 early-onset) with residual hearing who had received EAS were included in this study. Genetic analysis was performed to identify GJB2, CDH23, SLC26A4, and the 1555 mitochondrial mutations. Three early-onset patients had CDH23 mutations. One late-onset patient had the 1555 A&gt;G mitochondrial mutation."	"Cadherin-23 mediates heterotypic cell-cell adhesion between breast cancer epithelial cells and fibroblasts. In the early stages of breast cancer metastasis, epithelial cells penetrate the basement membrane and invade the surrounding stroma, where they encounter fibroblasts. Paracrine signaling between fibroblasts and epithelial tumor cells contributes to the metastatic cascade, but little is known about the role of adhesive contacts between these two cell types in metastasis. Here we show that MCF-7 breast cancer epithelial cells and normal breast fibroblasts form heterotypic adhesions when grown together in co-culture, as evidenced by adhesion assays. PCR and immunoblotting show that both cell types express multiple members of the cadherin superfamily, including the atypical cadherin, cadherin-23, when grown in isolation and in co-culture. Immunocytochemistry experiments show that cadherin-23 localizes to homotypic adhesions between MCF-7 cells and also to heterotypic adhesions between the epithelial cells and fibroblasts, and antibody inhibition and RNAi experiments show that cadherin-23 plays a role in mediating these adhesive interactions. Finally, we show that cadherin-23 is upregulated in breast cancer tissue samples, and we hypothesize that heterotypic adhesions mediated by this atypical cadherin may play a role in the early stages of metastasis."	"Digenic inheritance of deafness caused by 8J allele of myosin-VIIA and mutations in other Usher I genes. Inherited hearing loss in mice has contributed substantially to our understanding of inner-ear function. We identified a new allele at the Myo7a locus, Myo7a(sh1-8J); genomic characterization indicated that Myo7a(sh1-8J) arose from complex deletion encompassing exons 38-40 and 42-46. Homozygous mutant mice had no detectable auditory brainstem response, displayed highly disorganized hair-cell stereocilia and had no detectable MYO7A protein. We generated mice that were digenic heterozygotes for Myo7a(sh1-8J) and one of each Cdh23(v-2J), Ush1g(js) or Pcdh15(av-3J) alleles, or an Ush1c null allele. Significant levels of age-related hearing loss were detected in +/Myo7a(sh1-8J) +/Ush1g(js), +/Myo7a(sh1-8J) +/Cdh23(v-2J) and +/Myo7a(sh1-8J) +/Pcdh15(av-3J) double heterozygous mice compared with age-matched single heterozygous animals, suggesting epistasis between Myo7a and each of the three loci. +/Pcdh15(av-3J) +/Ush1g(js) double heterozygous mice also showed elevated hearing loss, suggesting Pcdh15-Ush1g epistasis. While we readily detected MYO7A, USH1C, CDH23 and PCDH15 using mass spectrometry of purified chick utricle hair bundles, we did not detect USH1G. Consistent with that observation, Ush1g microarray signals were much lower in chick cochlea than those of Myo7a, Ush1c, Cdh23 and Pcdh15 and were not detected in the chick utricle. These experiments confirm the importance of MYO7A for the development and maintenance of bundle function and support the suggestion that MYO7A, USH1G (Sans) and CDH23 form the upper tip-link complex in adult mice, likely in combination with USH1C (harmonin). MYO7A, USH1G and PCDH15 may form another complex in stereocilia. USH1G may be a limiting factor in both complexes."	"Role for a novel Usher protein complex in hair cell synaptic maturation. The molecular mechanisms underlying hair cell synaptic maturation are not well understood. Cadherin-23 (CDH23), protocadherin-15 (PCDH15) and the very large G-protein coupled receptor 1 (VLGR1) have been implicated in the development of cochlear hair cell stereocilia, while clarin-1 has been suggested to also play a role in synaptogenesis. Mutations in CDH23, PCDH15, VLGR1 and clarin-1 cause Usher syndrome, characterized by congenital deafness, vestibular dysfunction and retinitis pigmentosa. Here we show developmental expression of these Usher proteins in afferent spiral ganglion neurons and hair cell synapses. We identify a novel synaptic Usher complex comprised of clarin-1 and specific isoforms of CDH23, PCDH15 and VLGR1. To establish the in vivo relevance of this complex, we performed morphological and quantitative analysis of the neuronal fibers and their synapses in the Clrn1-/- mouse, which was generated by incomplete deletion of the gene. These mice showed a delay in neuronal/synaptic maturation by both immunostaining and electron microscopy. Analysis of the ribbon synapses in Ames waltzer(av3J) mice also suggests a delay in hair cell synaptogenesis. Collectively, these results show that, in addition to the well documented role for Usher proteins in stereocilia development, Usher protein complexes comprised of specific protein isoforms likely function in synaptic maturation as well."	"Hair cells, plasma membrane Ca²⁺ ATPase and deafness. Hearing relies on the ability of the inner ear to convert sound waves into electrical signals. The main actors in this process are hair cells. Their stereocilia contain a number of specific proteins and a scaffold of actin molecules. They are organized in bundles by tip-link filaments composed of cadherin 23 and protocadherin 15. The bundle is deflected by sound waves leading to the opening of mechano-transduction channels and to the influx of K(+) and Ca(2+) into the stereocilia. Cadherin 23 and the plasma membrane calcium ATPase isoform 2 (PMCA2) are defective in human and murine cases of deafness. While the involvement of cadherin 23 in deafness/hearing could be expected due to its structural role in the tip-links, that of PMCA2 has been discovered only recently. This review will summarize the structural and functional characteristics of hair cells, focusing on the proteins whose mutations may lead to a deafness phenotype."	"A mutation in the cdh23 gene causes age-related hearing loss in Cdh23(nmf308/nmf308) mice. Cadherin 23 (CDH23) is an important constituent of the hair cell tip link in the organ of Corti. Mutations in cdh23 are associated with age-related hearing loss (AHL). In this study, we proposed that the Cdh23(nmf308/nmf308) mice with progressive hair cell loss had specific morphological changes and suffered a base to apex gradient and age-related hearing loss, and that mutations in cdh23 were linked to AHL. The Cdh23(nmf308/nmf308) mice produced by the N-nitrosourea (ENU) mutagenesis program were used as an animal model to study AHL and progressive hair cell loss. RT-PCR was performed to confirm the cdh23 mutation in Cdh23(nmf308/nmf308) mice and genetic analysis was used to map the specific mutation site. Distortion product otoacoustic emission (DPOAE) assay and acoustic brainstem evoked response (ABR) threshold analysis were carried out to evaluate the AHL. Cochlear histology was examined with scanning electron microscope (SEM) and transmission electron microscope (TEM), as well as the nuclear labeling by propidium iodide staining; terminal deoxynucleotidyl transferase mediated dUTP nick end labeling (TUNEL) assay and caspase-3 activities were examined to evaluate cell apoptosis. Genetic mapping identified the candidate gene linking AHL in Cdh23(nmf308/nmf308) mice as cdh23. A mutation in exon3 (63 T&gt;C) was screened as compared with the sequence of the same position of the gene from B6 (+/+) mice. The cochleae outer hair cells were reduced from 5-10% at one month to 100% at three months in the basal region. DPOAE and ABR exhibited an increasing threshold at high frequencies (≥16kHz) from one month of age. Morphological and cellular analysis showed that Cdh23(nmf308/nmf308) mice exhibited a time course of histological alterations and cell apoptosis of outer hair cells. Our results suggest that the cdh23 mutation may be harmful to the stereociliary tip link and cause the hair cell apoptosis. Due to the same cdh23 mutations in human subjects with presbycusis (Petit et al., 2001; Zheng et al., 2005), the Cdh23(nmf308/nmf308) mouse is an excellent animal model for investigating the mechanisms involved in human AHL."	"Genetic background effects on age-related hearing loss associated with Cdh23 variants in mice. Inbred strain variants of the Cdh23 gene have been shown to influence the onset and progression of age-related hearing loss (AHL) in mice. In linkage backcrosses, the recessive Cdh23 allele (ahl) of the C57BL/6J strain, when homozygous, confers increased susceptibility to AHL, while the dominant allele (Ahl+) of the CBA/CaJ strain confers resistance. To determine the isolated effects of these alleles on different strain backgrounds, we produced the reciprocal congenic strains B6.CBACa-Cdh23(Ahl)(+) and CBACa.B6-Cdh23(ahl) and tested 15-30 mice from each for hearing loss progression. ABR thresholds for 8 kHz, 16 kHz, and 32 kHz pure-tone stimuli were measured at 3, 6, 9, 12, 15 and 18 months of age and compared with age-matched mice of the C57BL/6J and CBA/CaJ parental strains. Mice of the C57BL/6N strain, which is the source of embryonic stem cells for the large International Knockout Mouse Consortium, were also tested for comparisons with C57BL/6J mice. Mice of the C57BL/6J and C57BL/6N strains exhibited identical hearing loss profiles: their 32 kHz ABR thresholds were significantly higher than those of CBA/CaJ and congenic strain mice by 6 months of age, and their 16 kHz thresholds were significantly higher by 12 months. Thresholds of the CBA/CaJ, the B6.CBACa-Cdh23(Ahl)(+), and the CBACa.B6-Cdh23(ahl) strain mice differed little from one another and only slightly increased throughout the 18-month test period. Hearing loss, which corresponded well with cochlear hair cell loss, was most profound in the C57BL/6J and C57BL/6NJ strains. These results indicate that the CBA/CaJ-derived Cdh23(Ahl)(+) allele dramatically lessens hearing loss and hair cell death in an otherwise C57BL/6J genetic background, but that the C57BL/6J-derived Cdh23(ahl) allele has little effect on hearing loss in an otherwise CBA/CaJ background. We conclude that although Cdh23(ahl) homozygosity is necessary, it is not by itself sufficient to account for the accelerated hearing loss of C57BL/6J mice."	"Comprehensive sequence analysis of nine Usher syndrome genes in the UK National Collaborative Usher Study. Usher syndrome (USH) is an autosomal recessive disorder comprising retinitis pigmentosa, hearing loss and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous with three distinctive clinical types (I-III) and nine Usher genes identified. This study is a comprehensive clinical and genetic analysis of 172 Usher patients and evaluates the contribution of digenic inheritance. The genes MYO7A, USH1C, CDH23, PCDH15, USH1G, USH2A, GPR98, WHRN, CLRN1 and the candidate gene SLC4A7 were sequenced in 172 UK Usher patients, regardless of clinical type. No subject had definite mutations (nonsense, frameshift or consensus splice site mutations) in two different USH genes. Novel missense variants were classified UV1-4 (unclassified variant): UV4 is 'probably pathogenic', based on control frequency &lt;0.23%, identification in trans to a pathogenic/probably pathogenic mutation and segregation with USH in only one family; and UV3 ('likely pathogenic') as above, but no information on phase. Overall 79% of identified pathogenic/UV4/UV3 variants were truncating and 21% were missense changes. MYO7A accounted for 53.2%, and USH1C for 14.9% of USH1 families (USH1C:c.496+1G&gt;A being the most common USH1 mutation in the cohort). USH2A was responsible for 79.3% of USH2 families and GPR98 for only 6.6%. No mutations were found in USH1G, WHRN or SLC4A7. One or two pathogenic/likely pathogenic variants were identified in 86% of cases. No convincing cases of digenic inheritance were found. It is concluded that digenic inheritance does not make a significant contribution to Usher syndrome; the observation of multiple variants in different genes is likely to reflect polymorphic variation, rather than digenic effects."	"Allelic hierarchy of CDH23 mutations causing non-syndromic deafness DFNB12 or Usher syndrome USH1D in compound heterozygotes. Recessive mutant alleles of MYO7A, USH1C, CDH23, and PCDH15 cause non-syndromic deafness or type 1 Usher syndrome (USH1) characterised by deafness, vestibular areflexia, and vision loss due to retinitis pigmentosa. For CDH23, encoding cadherin 23, non-syndromic DFNB12 deafness is associated primarily with missense mutations hypothesised to have residual function. In contrast, homozygous nonsense, frame shift, splice site, and some missense mutations of CDH23, all of which are presumably functional null alleles, cause USH1D. The phenotype of a CDH23 compound heterozygote for a DFNB12 allele in trans configuration to an USH1D allele is not known and cannot be predicted from current understanding of cadherin 23 function in the retina and vestibular labyrinth. To address this issue, this study sought CDH23 compound heterozygotes by sequencing this gene in USH1 probands, and families segregating USH1D or DFNB12. Five non-syndromic deaf individuals were identified with normal retinal and vestibular phenotypes that segregate compound heterozygous mutations of CDH23, where one mutation is a known or predicted USH1 allele. One DFNB12 allele in trans configuration to an USH1D allele of CDH23 preserves vision and balance in deaf individuals, indicating that the DFNB12 allele is phenotypically dominant to an USH1D allele. This finding has implications for genetic counselling and the development of therapies for retinitis pigmentosa in Usher syndrome. ACCESSION NUMBERS: The cDNA and protein Genbank accession numbers for CDH23 and cadherin 23 used in this paper are AY010111.2 and AAG27034.2, respectively."	"Targeted genomic capture and massively parallel sequencing to identify genes for hereditary hearing loss in Middle Eastern families. Identification of genes responsible for medically important traits is a major challenge in human genetics. Due to the genetic heterogeneity of hearing loss, targeted DNA capture and massively parallel sequencing are ideal tools to address this challenge. Our subjects for genome analysis are Israeli Jewish and Palestinian Arab families with hearing loss that varies in mode of inheritance and severity. A custom 1.46 MB design of cRNA oligonucleotides was constructed containing 246 genes responsible for either human or mouse deafness. Paired-end libraries were prepared from 11 probands and bar-coded multiplexed samples were sequenced to high depth of coverage. Rare single base pair and indel variants were identified by filtering sequence reads against polymorphisms in dbSNP132 and the 1000 Genomes Project. We identified deleterious mutations in CDH23, MYO15A, TECTA, TMC1, and WFS1. Critical mutations of the probands co-segregated with hearing loss. Screening of additional families in a relevant population was performed. TMC1 p.S647P proved to be a founder allele, contributing to 34% of genetic hearing loss in the Moroccan Jewish population. Critical mutations were identified in 6 of the 11 original probands and their families, leading to the identification of causative alleles in 20 additional probands and their families. The integration of genomic analysis into early clinical diagnosis of hearing loss will enable prediction of related phenotypes and enhance rehabilitation. Characterization of the proteins encoded by these genes will enable an understanding of the biological mechanisms involved in hearing loss."	"Myosin VIIa and sans localization at stereocilia upper tip-link density implicates these Usher syndrome proteins in mechanotransduction. In the most accepted model for hair cell mechanotransduction, a cluster of myosin motors located at the stereocilia upper tip-link density (UTLD) keeps the tip-link under tension at rest. Both myosin VIIa (MYO7A) and myosin 1c have been implicated in mechanotransduction based on functional studies. However, localization studies are conflicting, leaving open the question of which myosin localizes at the UTLD and generates the tip-link resting tension. Using immunofluorescence, we now show that MYO7A and sans, a MYO7A-interacting protein, cluster at the UTLD. Analysis of the immunofluorescence intensity indicates that eight or more MYO7A molecules are present at each UTLD, consistent with a direct role for MYO7A in maintaining tip-link tension. MYO7A and sans localization at the UTLD is confirmed by transfection of hair cells with GFP-tagged constructs for these proteins. Cotransfection studies in a heterologous system show that MYO7A, sans, and the UTLD protein harmonin-b form a tripartite complex and that each protein is capable of interacting with one another independently. We propose that MYO7A, sans, and harmonin-b form the core components of the UTLD molecular complex. In this complex, MYO7A is likely the motor element that pulls on CDH23 to exert tension on the tip-link."	"An ENU-induced mutation of Cdh23 causes congenital hearing loss, but no vestibular dysfunction, in mice. Mutations in the human cadherin 23 (CDH23) gene cause deafness, neurosensory, autosomal recessive 12 (DFNB12) nonsyndromic hearing loss or Usher syndrome, type 1D (characterized by hearing impairment, vestibular dysfunction, and visual impairment). Reported waltzer mouse strains each harbor a Cdh23-null mutation and present with hearing loss and vestibular dysfunction. Two additional Cdh23 mouse mutants, salsa and erlong, each carry a homozygous Cdh23 missense mutation and have progressive hearing loss. We report the identification of a novel mouse strain, jera, with inherited hearing loss caused by an N-ethyl-N-nitrosourea-induced c.7079T&gt;A mutation in the Cdh23 gene. The mutation generates a missense change, p.V2360E, in Cdh23. Affected mice have profound sensorineural deafness, with no vestibular dysfunction. The p.V2360E mutation is semidominant because heterozygous mice have milder and more progressive hearing loss in advanced age. The mutation affects a highly conserved Ca(2+)-binding motif in extracellular domain 22, thought to be important for Cdh23 structure and dimerization. Molecular modeling suggests that the Cdh23(V2360E/V2360E) mutation alters the structural conformation of the protein and affects Ca(2+)-binding properties. Similar to salsa mice, but in contrast to waltzer mice, hair bundle development is normal in jera and hearing loss appears to be due to the loss of tip links. Thus, jera is a novel mouse model for DFNB12."	"High-frequency sensorineural hearing loss and its underlying genetics (Hfhl1 and Hfhl2) in NIH Swiss mice. Studies using inbred strains of mice have been invaluable for identifying alleles that adversely affect hearing. However, the efficacy of those studies is limited by the phenotypes that these strains express and the alleles that they segregate. Here, by selectively breeding phenotypically and genetically heterogeneous NIH Swiss mice, we generated two lines-the all-frequency hearing loss (AFHL) line and the high-frequency hearing loss (HFHL) line-with differential hearing loss. The AFHL line exhibited characteristics typical of severe, early-onset, sensorineural hearing impairment. In contrast, the HFHL line expressed a novel early-onset, mildly progressive, and frequency-specific sensorineural hearing loss. By quantitative trait loci (QTLs) analyses in these two lines, we identified QTLs on chromosomes 7, 8, and 10 that significantly affected hearing function. The loci on chromosomes 7 and 8 (Hfhl1 and Hfhl2, respectively) are novel and appear to adversely affect only high frequencies (≥30 kHz). Mice homozygous for NIH Swiss alleles at either Hfhl1 or Hfhl2 have 32-kHz auditory-evoked brain stem response thresholds that are 8-14 dB SPL higher than the corresponding heterozygotes. DNA sequence analyses suggest that both the Cdh23(ahl) and Gipc3(ahl5) variants contribute to the chromosome 10 QTL detected in the AFHL line. The frequency-specific hearing loss indicates that the Hfhl1 and Hfhl2 alleles may affect tonotopic development. In addition, dissecting the underlying complex genetics of high-frequency hearing loss may prove relevant in identifying less severe and common forms of hearing impairment in the human population."	"Mutations in protocadherin 15 and cadherin 23 affect tip links and mechanotransduction in mammalian sensory hair cells. Immunocytochemical studies have shown that protocadherin-15 (PCDH15) and cadherin-23 (CDH23) are associated with tip links, structures thought to gate the mechanotransducer channels of hair cells in the sensory epithelia of the inner ear. The present report describes functional and structural analyses of hair cells from Pcdh15(av3J) (av3J), Pcdh15(av6J) (av6J) and Cdh23(v2J) (v2J) mice. The av3J and v2J mice carry point mutations that are predicted to introduce premature stop codons in the transcripts for Pcdh15 and Cdh23, respectively, and av6J mice have an in-frame deletion predicted to remove most of the 9th cadherin ectodomain from PCDH15. Severe disruption of hair-bundle morphology is observed throughout the early-postnatal cochlea in av3J/av3J and v2J/v2J mice. In contrast, only mild-to-moderate bundle disruption is evident in the av6J/av6J mice. Hair cells from av3J/av3J mice are unaffected by aminoglycosides and fail to load with [(3)H]-gentamicin or FM1-43, compounds that permeate the hair cell's mechanotransducer channels. In contrast, hair cells from av6J/av6J mice load with both FM1-43 and [(3)H]-gentamicin, and are aminoglycoside sensitive. Transducer currents can be recorded from hair cells of all three mutants but are reduced in amplitude in all mutants and have abnormal directional sensitivity in the av3J/av3J and v2J/v2J mutants. Scanning electron microscopy of early postnatal cochlear hair cells reveals tip-link like links in av6J/av6J mice, substantially reduced numbers of links in the av3J/av3J mice and virtually none in the v2J/v2J mice. Analysis of mature vestibular hair bundles reveals an absence of tip links in the av3J/av3J and v2J/v2J mice and a reduction in av6J/av6J mice. These results therefore provide genetic evidence consistent with PCDH15 and CDH23 being part of the tip-link complex and necessary for normal mechanotransduction."	"Identification of genes concordantly expressed with Atoh1 during inner ear development. The inner ear is composed of a cochlear duct and five vestibular organs in which mechanosensory hair cells play critical roles in receiving and relaying sound and balance signals to the brain. To identify novel genes associated with hair cell differentiation or function, we analyzed an archived gene expression dataset from embryonic mouse inner ear tissues. Since atonal homolog 1a (Atoh1) is a well known factor required for hair cell differentiation, we searched for genes expressed in a similar pattern with Atoh1 during inner ear development. The list from our analysis includes many genes previously reported to be involved in hair cell differentiation such as Myo6, Tecta, Myo7a, Cdh23, Atp6v1b1, and Gfi1. In addition, we identified many other genes that have not been associated with hair cell differentiation, including Tekt2, Spag6, Smpx, Lmod1, Myh7b, Kif9, Ttyh1, Scn11a and Cnga2. We examined expression patterns of some of the newly identified genes using real-time polymerase chain reaction and in situ hybridization. For example, Smpx and Tekt2, which are regulators for cytoskeletal dynamics, were shown specifically expressed in the hair cells, suggesting a possible role in hair cell differentiation or function. Here, by reanalyzing archived genetic profiling data, we identified a list of novel genes possibly involved in hair cell differentiation."	"Usher type 1G protein sans is a critical component of the tip-link complex, a structure controlling actin polymerization in stereocilia. The mechanotransducer channels of auditory hair cells are gated by tip-links, oblique filaments that interconnect the stereocilia of the hair bundle. Tip-links stretch from the tips of stereocilia in the short and middle rows to the sides of neighboring, taller stereocilia. They are made of cadherin-23 and protocadherin-15, products of the Usher syndrome type 1 genes USH1D and USH1F, respectively. In this study we address the role of sans, a putative scaffold protein and product of the USH1G gene. In Ush1g(-/-) mice, the cohesion of stereocilia is disrupted, and both the amplitude and the sensitivity of the transduction currents are reduced. In Ush1g(fl/fl)Myo15-cre(+/-) mice, the loss of sans occurs postnatally and the stereocilia remain cohesive. In these mice, there is a decrease in the amplitude of the total transducer current with no loss in sensitivity, and the tips of the stereocilia in the short and middle rows lose their prolate shape, features that can be attributed to the loss of tip-links. Furthermore, stereocilia from these rows undergo a dramatic reduction in length, suggesting that the mechanotransduction machinery has a positive effect on F-actin polymerization. Sans interacts with the cytoplasmic domains of cadherin-23 and protocadherin-15 in vitro and is absent from the hair bundle in mice defective for either of the two cadherins. Because sans localizes mainly to the tips of short- and middle-row stereocilia in vivo, we conclude that it belongs to a molecular complex at the lower end of the tip-link and plays a critical role in the maintenance of this link."	"[Molecular diagnosis of deafness]. Despite advances in discovery of deafness genes, clinical application still entails difficulties because of the genetic heterogeneity of deafness. In order to establish strategy for clinical application, we reviewed the genes responsible for hearing loss patients in Japan (Usami S et al; Acta Otolaryngol 128: 446-454, 2008), and discussed diagnostic strategy for mutation screening based on a mutation/gene database (Abe S et al; Genet Test 11: 333-340, 2007). Our series of mutation screenings has revealed that mutations in GJB2, SLC26A4, and CDH23, and the 1555A&gt;G mutation in the mitochondrial 12S rRNA, were the major causes of hearing loss in Japanese patients. Interestingly, spectrums of GJB2, SLC26A4, and CDH23 mutations found in the Japanese population were quite different from those reported in populations with European ancestry. Our simultaneous screening of the multiple deafness mutations was based on the mutation spectrum of a corresponding population. The multicenter trial for this assay using an Invader panel revealed that approximately 40% of congenital hearing loss subjects could be diagnosed. This assay will enable us to detect deafness mutations in an efficient and practical manner in the clinical platform."	"An update on the genetics of usher syndrome. Usher syndrome (USH) is an autosomal recessive disease characterized by hearing loss, retinitis pigmentosa (RP), and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous and is the most common cause underlying deafness and blindness of genetic origin. Clinically, USH is divided into three types. Usher type I (USH1) is the most severe form and is characterized by severe to profound congenital deafness, vestibular areflexia, and prepubertal onset of progressive RP. Type II (USH2) displays moderate to severe hearing loss, absence of vestibular dysfunction, and later onset of retinal degeneration. Type III (USH3) shows progressive postlingual hearing loss, variable onset of RP, and variable vestibular response. To date, five USH1 genes have been identified: MYO7A (USH1B), CDH23 (USH1D), PCDH15 (USH1F), USH1C(USH1C), and USH1G(USH1G). Three genes are involved in USH2, namely, USH2A (USH2A), GPR98 (USH2C), and DFNB31 (USH2D). USH3 is rare except in certain populations, and the gene responsible for this type is USH3A."	"Novel mutations in the USH1C gene in Usher syndrome patients. Usher syndrome type I (USH1) is an autosomal recessive disorder characterized by severe-profound sensorineural hearing loss, retinitis pigmentosa, and vestibular areflexia. To date, five USH1 genes have been identified. One of these genes is Usher syndrome 1C (USH1C), which encodes a protein, harmonin, containing PDZ domains. The aim of the present work was the mutation screening of the USH1C gene in a cohort of 33 Usher syndrome patients, to identify the genetic cause of the disease and to determine the relative involvement of this gene in USH1 pathogenesis in the Spanish population. Thirty-three patients were screened for mutations in the USH1C gene by direct sequencing. Some had already been screened for mutations in the other known USH1 genes (myosin VIIA [MYO7A], cadherin-related 23 [CDH23], protocadherin-related 15 [PCDH15], and Usher syndrome 1G [USH1G]), but no mutation was found. Two novel mutations were found in the USH1C gene: a non-sense mutation (p.C224X) and a frame-shift mutation (p.D124TfsX7). These mutations were found in a homozygous state in two unrelated USH1 patients. In the present study, we detected two novel pathogenic mutations in the USH1C gene. Our results suggest that mutations in USH1C are responsible for 1.5% of USH1 disease in patients of Spanish origin (considering the total cohort of 65 Spanish USH1 patients since 2005), indicating that USH1C is a rare form of USH in this population."	"Phenotypes in defined genotypes including siblings with Usher syndrome. To characterize visual function in defined genotypes including siblings with Usher syndrome. Thirteen patients with phenotypically different subtypes of Usher syndrome, including 3 families with affected siblings, were selected. Genetic analysis and ophthalmological examinations including visual fields, full-field electroretinography (ERG), multifocal electroretinography (mf ERG), and optical coherence tomography (OCT) were assessed. The patients' degree of visual handicap was evaluated by a questionnaire (ADL). Twelve of thirteen patients were genotyped as Usher 1B, 1D, 1F, 2A, 2C or 3A. In 12 of 13 patients examined with ERG the 30 Hz flickering light response revealed remaining cone function. In 3 of the patients with Usher type 1 mf ERG demonstrated a specific pattern, with a sharp distinction between the area with reduced function and the central area with remaining macular function and normal peak time. OCT demonstrated loss of foveal depression with distortion of the foveal architecture in the macula in all patients. The foveal thickness ranged from 159 to 384 µm and was not correlated to retinal function. Three siblings shared the same mutation for Usher 2C but in contrast to previous reports regarding this genotype, 1 of them diverged in phenotype with substantially normal visual fields, almost normal OCT and mf ERG findings, and only moderately reduced rod and cone function according to ERG. Evaluation of visual function comprising both the severity of the rod cone degeneration and the function in the macular region confirm phenotypical heterogeneity within siblings and between different genotypes of Usher syndrome."	"Screening of 38 genes identifies mutations in 62% of families with nonsyndromic deafness in Turkey. More than 60% of prelingual deafness is genetic in origin, and of these up to 95% are monogenic autosomal recessive traits. Causal mutations have been identified in 1 of 38 different genes in a subset of patients with nonsyndromic autosomal recessive deafness. In this study, we screened 49 unrelated Turkish families with at least three affected children born to consanguineous parents. Probands from all families were negative for mutations in the GJB2 gene, two large deletions in the GJB6 gene, and the 1555A&gt;G substitution in the mitochondrial DNA MTRNR1 gene. Each family was subsequently screened via autozygosity mapping with genomewide single-nucleotide polymorphism arrays. If the phenotype cosegregated with a haplotype flanking one of the 38 genes, mutation analysis of the gene was performed. We identified 22 different autozygous mutations in 11 genes, other than GJB2, in 26 of 49 families, which overall explains deafness in 62% of families. Relative frequencies of genes following GJB2 were MYO15A (9.9%), TMIE (6.6%), TMC1 (6.6%), OTOF (5.0%), CDH23 (3.3%), MYO7A (3.3%), SLC26A4 (1.7%), PCDH15 (1.7%), LRTOMT (1.7%), SERPINB6 (1.7%), and TMPRSS3 (1.7%). Nineteen of 22 mutations are reported for the first time in this study. Unknown rare genes for deafness appear to be present in the remaining 23 families."	"β-actin and γ-actin are each dispensable for auditory hair cell development but required for Stereocilia maintenance. Hair cell stereocilia structure depends on actin filaments composed of cytoplasmic β-actin and γ-actin isoforms. Mutations in either gene can lead to progressive hearing loss in humans. Since β-actin and γ-actin isoforms are 99% identical at the protein level, it is unclear whether each isoform has distinct cellular roles. Here, we compared the functions of β-actin and γ-actin in stereocilia formation and maintenance by generating mice conditionally knocked out for Actb or Actg1 in hair cells. We found that, although cytoplasmic actin is necessary, neither β-actin nor γ-actin is required for normal stereocilia development or auditory function in young animals. However, aging mice with β-actin- or γ-actin-deficient hair cells develop different patterns of progressive hearing loss and distinct pathogenic changes in stereocilia morphology, despite colocalization of the actin isoforms. These results demonstrate overlapping developmental roles but unique post-developmental functions for β-actin and γ-actin in maintaining hair cell stereocilia."	"PIST regulates the intracellular trafficking and plasma membrane expression of cadherin 23. The atypical cadherin protein cadherin 23 (CDH23) is crucial for proper function of retinal photoreceptors and inner ear hair cells. As we obtain more and more information about the specific roles of cadherin 23 in photoreceptors and hair cells, the regulatory mechanisms responsible for the transport of this protein to the plasma membrane are largely unknown. PIST, a Golgi-associated, PDZ domain-containing protein, interacted with cadherin 23 via the PDZ domain of PIST and the C-terminal PDZ domain-binding interface (PBI) of cadherin 23. By binding to cadherin 23, PIST retained cadherin 23 in the trans-Golgi network of cultured cells. The retention was released when either of the two known cadherin 23-binding proteins MAGI-1 and harmonin was co-expressed. Similar to MAGI-1 and harmonin, PIST was detected in mouse inner ear sensory hair cells. PIST binds cadherin 23 via its PDZ domain and retains cadherin 23 in trans-Golgi network. MAGI-1 and harmonin can compete with PIST for binding cadherin 23 and release cadherin 23 from PIST's retention. Our finding suggests that PIST, MAGI-1 and harmonin collaborate in intracellular trafficking of cadherin 23 and regulate the plasma membrane expression of cadherin 23."	"Mutation analysis of the MYO7A and CDH23 genes in Japanese patients with Usher syndrome type 1. Usher syndrome (USH) is an autosomal recessive disorder characterized by retinitis pigmentosa and hearing loss. USH type 1 (USH1), the second common type of USH, is frequently caused by MYO7A and CDH23 mutations, accounting for 70-80% of the cases among various ethnicities, including Caucasians, Africans and Asians. However, there have been no reports of mutation analysis for any responsible genes for USH1 in Japanese patients. This study describes the first mutation analysis of MYO7A and CDH23 in Japanese USH1 patients. Five mutations (three in MYO7A and two in CDH23) were identified in four of five unrelated patients. Of these mutations, two were novel. One of them, p.Tyr1942SerfsX23 in CDH23, was a large deletion causing the loss of 3 exons. This is the first large deletion to be found in CDH23. The incidence of the MYO7A and CDH23 mutations in the study population was 80%, which is consistent with previous findings. Therefore, mutation screening for these genes is expected to be a highly sensitive method for diagnosing USH1 among the Japanese."	"Quantification of vestibular-induced eye movements in zebrafish larvae. Vestibular reflexes coordinate movements or sensory input with changes in body or head position. Vestibular-evoked responses that involve the extraocular muscles include the vestibulo-ocular reflex (VOR), a compensatory eye movement to stabilize retinal images. Although an angular VOR attributable to semicircular canal stimulation was reported to be absent in free-swimming zebrafish larvae, recent studies reveal that vestibular-induced eye movements can be evoked in zebrafish larvae by both static tilts and dynamic rotations that tilt the head with respect to gravity. We have determined herein the basis of sensitivity of the larval eye movements with respect to vestibular stimulus, developmental stage, and sensory receptors of the inner ear. For our experiments, video recordings of larvae rotated sinusoidally at 0.25 Hz were analyzed to quantitate eye movements under infrared illumination. We observed a robust response that appeared as early as 72 hours post fertilization (hpf), which increased in amplitude over time. Unlike rotation about an earth horizontal axis, rotation about an earth vertical axis at 0.25 Hz did not evoke eye movements. Moreover, vestibular-induced responses were absent in mutant cdh23 larvae and larvae lacking anterior otoliths. Our results provide evidence for a functional vestibulo-oculomotor circuit in 72 hpf zebrafish larvae that relies upon sensory input from anterior/utricular otolith organs."	"Development and regeneration of sensory transduction in auditory hair cells requires functional interaction between cadherin-23 and protocadherin-15. Tip links are extracellular filaments that connect pairs of hair cell stereocilia and convey tension to mechanosensitive channels. Recent evidence suggests that tip links are formed by calcium-dependent interactions between the N-terminal domains of cadherin-23 (CDH23) and protocadherin-15 (PCDH15). Mutations in either CDH23 or PCDH15 cause deafness in mice and humans, indicating the molecules are required for normal inner ear function. However, there is little physiological evidence to support a direct role for CDH23 and PCDH15 in hair cell mechanotransduction. To investigate the contributions of CDH23 and PCDH15 to mechanotransduction and tip-link formation, we examined outer hair cells of mouse cochleas during development and after chemical disruption of tip links. We found that tip links and mechanotransduction with all the qualitative properties of mature transduction recovered within 24 h after disruption. To probe tip-link formation, we measured transduction currents after extracellular application of recombinant CDH23 and PCDH15 fragments, which included putative interaction domains (EC1). Both fragments inhibited development and regeneration of transduction but did not disrupt transduction in mature cells. PCDH15 fragments that carried a mutation in EC1 that causes deafness in humans did not inhibit transduction development or regeneration. Immunolocalization revealed wild-type fragments bound near the tips of hair cell stereocilia. Scanning electron micrographs revealed that hair bundles exposed to fragments had a reduced number of linkages aligned along the morphological axis of sensitivity of the bundle. Together, the data provide direct evidence implicating CDH23 and PCDH15 proteins in the formation of tip links during development and regeneration of mechanotransduction."	"The R109H variant of fascin-2, a developmentally regulated actin crosslinker in hair-cell stereocilia, underlies early-onset hearing loss of DBA/2J mice. The quantitative trait locus ahl8 is a key contributor to the early-onset, age-related hearing loss of DBA/2J mice. A nonsynonymous nucleotide substitution in the mouse fascin-2 gene (Fscn2) is responsible for this phenotype, confirmed by wild-type BAC transgene rescue of hearing loss in DBA/2J mice. In chickens and mice, FSCN2 protein is abundant in hair-cell stereocilia, the actin-rich structures comprising the mechanically sensitive hair bundle, and is concentrated toward stereocilia tips of the bundle's longest stereocilia. FSCN2 expression increases when these stereocilia differentially elongate, suggesting that FSCN2 controls filament growth, stiffens exposed stereocilia, or both. Because ahl8 accelerates hearing loss only in the presence of mutant cadherin 23, a component of hair-cell tip links, mechanotransduction and actin crosslinking must be functionally interrelated."	"A new mouse mutant of the Cdh23 gene with early-onset hearing loss facilitates evaluation of otoprotection drugs. We report a novel mutation (erlong, erl) of the cadherin 23 (Cdh23) gene in a mouse model for DFNB12 characterized by progressive hearing loss beginning from postnatal day 27 (P27). Genetic and sequencing analysis revealed a 208 T &gt;C transition causing an amino-acid substitution (70S-P). Caspase expression was upregulated in mutant inner ears. Hearing was preserved (up to 35-dB improvement) in pan-caspase inhibitor Z-VAD-FMK-treated mutants compared with untreated mutants (P&lt;0.05). Outer hair cell (OHC) loss in the cochleae of Z-VAD-FMK-treated mutants was significantly reduced compared with those of untreated mice. Thus, the erl mutation can lead to hearing loss through apoptosis. This is the first genetic mouse model of hearing loss shown to respond to otoprotective drug therapy. The short interval from initial hearing loss to deafness (P27-P90) makes this model ideal for screening and validating otoprotective drugs."	"Cadherin-23, myosin VIIa and harmonin, encoded by Usher syndrome type I genes, form a ternary complex and interact with membrane phospholipids. Cadherin-23 is a component of early transient lateral links of the auditory sensory cells' hair bundle, the mechanoreceptive structure to sound. This protein also makes up the upper part of the tip links that control gating of the mechanoelectrical transduction channels. We addressed the issue of the molecular complex that anchors these links to the hair bundle F-actin core. By using surface plasmon resonance assays, we show that the cytoplasmic regions of the two cadherin-23 isoforms that do or do not contain the exon68-encoded peptide directly interact with harmonin, a submembrane PDZ (post-synaptic density, disc large, zonula occludens) domain-containing protein, with unusually high affinity. This interaction involves the harmonin Nter-PDZ1 supramodule, but not the C-terminal PDZ-binding motif of cadherin-23. We establish that cadherin-23 directly binds to the tail of myosin VIIa. Moreover, cadherin-23, harmonin and myosin VIIa can form a ternary complex, which suggests that myosin VIIa applies tension forces on hair bundle links. We also show that the cadherin-23 cytoplasmic region, harmonin and myosin VIIa interact with phospholipids on synthetic liposomes. Harmonin and the cytoplasmic region of cadherin-23, both independently and as a binary complex, can bind specifically to phosphatidylinositol 4,5-bisphosphate (PI(4,5)P(2)), which may account for the role of this phospholipid in the adaptation of mechanoelectrical transduction in the hair bundle. The distributions of cadherin-23, harmonin, myosin VIIa and PI(4,5)P(2) in the growing and mature auditory hair bundles as well as the abnormal locations of harmonin and myosin VIIa in cadherin-23 null mutant mice strongly support the functional relevance of these interactions."	"Frequency of Usher syndrome in two pediatric populations: Implications for genetic screening of deaf and hard of hearing children. Usher syndrome is a major cause of genetic deafness and blindness. The hearing loss is usually congenital and the retinitis pigmentosa is progressive and first noticed in early childhood to the middle teenage years. Its frequency may be underestimated. Newly developed molecular technologies can detect the underlying gene mutation of this disorder early in life providing estimation of its prevalence in at risk pediatric populations and laying a foundation for its incorporation as an adjunct to newborn hearing screening programs. A total of 133 children from two deaf and hard of hearing pediatric populations were genotyped first for GJB2/6 and, if negative, then for Usher syndrome. Children were scored as positive if the test revealed &gt; or =1 pathogenic mutations in any Usher gene. Fifteen children carried pathogenic mutations in one of the Usher genes; the number of deaf and hard of hearing children carrying Usher syndrome mutations was 15/133 (11.3%). The population prevalence was estimated to be 1/6000. Usher syndrome is more prevalent than has been reported before the genome project era. Early diagnosis of Usher syndrome has important positive implications for childhood safety, educational planning, genetic counseling, and treatment. The results demonstrate that DNA testing for Usher syndrome is feasible and may be a useful addition to newborn hearing screening programs."	"Nasal epithelial cells are a reliable source to study splicing variants in Usher syndrome. We have shown that nasal ciliated epithelium, which can be easily biopsied under local anesthetic, provides a good source of RNA transcripts from eight of the nine known genes that cause Usher syndrome, namely, MYO7A, USH1C, CDH23, PCDH15, USH1G for Usher type 1, and USH2A, GPR98, WHRN for Usher type 2. Furthermore, the known or predicted effect on mRNA splicing of eight variants was faithfully reproduced in the biopsied sample as measured by nested RT-PCR. These included changes at the canonical acceptor site, changes within the noncanonical acceptor site and both synonymous and nonsynonymous amino acid changes. This shows that mRNA analysis by this method will help in assessing the pathogenic effect of variants, which is a major problem in the molecular diagnosis of Usher syndrome."	"Targeting of the hair cell proteins cadherin 23, harmonin, myosin XVa, espin, and prestin in an epithelial cell model. We have developed an advantageous epithelial cell transfection model for examining the targeting, interactions, and mutations of hair cell proteins. When expressed in LLC-PK1-CL4 epithelial cells (CL4 cells), the outer hair cell protein prestin showed faithful domain-specific targeting to the basolateral plasma membrane. We examined the consequences of mutations affecting prestin activity and assigned a targeting role to the cytoplasmic tail. The stereociliary link protein cadherin 23 (Cdh23) was targeted to the plasma membrane of CL4 cell microvilli, the topological equivalent of stereocilia. In cells coexpressing the Cdh23 cytoplasmic binding protein harmonin, a large fraction of harmonin became colocalized with Cdh23 in microvilli. Using this assay and in vitro protein binding assays, we formulated an alternative model for Cdh23-harmonin binding, in which the primary interaction is between the harmonin N-domain and a 35-residue internal peptide in the Cdh23 cytoplasmic tail. Contrary to a previous model, we found no role for the Cdh23 C-terminal PDZ (PSD-95/Dlg/ZO-1)-binding motif and observed that Cdh23 bound similar levels of harmonin with or without the exon 68 peptide. We also examined two proteins involved in stereocilium elongation. The stereociliary actin-bundling protein espin was targeted to CL4 cell microvilli and caused microvillar elongation, whereas espin with the c.2469delGTCA or c.1988delAGAG human deafness mutation showed defects in microvillar targeting and elongation. The unconventional myosin motor myosin XVa accumulated at the tips of espin-elongated microvilli, by analogy to its location in stereocilia, whereas myosin XVa with the c.4351G&gt;A or c.4669A&gt;G human deafness mutation did not, revealing functional deficits in motor activity."	"Structure of the N terminus of cadherin 23 reveals a new adhesion mechanism for a subset of cadherin superfamily members. The cadherin superfamily encodes more than 100 receptors with diverse functions in tissue development and homeostasis. Classical cadherins mediate adhesion by binding interactions that depend on their N-terminal extracellular cadherin (EC) domains, which swap N-terminal beta-strands. Sequence alignments suggest that the strand-swap binding mode is not commonly used by functionally divergent cadherins. Here, we have determined the structure of the EC1-EC2 domains of cadherin 23 (CDH23), which binds to protocadherin 15 (PCDH15) to form tip links of mechanosensory hair cells. Unlike classical cadherins, the CDH23 N terminus contains polar amino acids that bind Ca(2+). The N terminus of PCDH15 also contains polar amino acids. Mutations in polar amino acids within EC1 of CDH23 and PCDH15 abolish interaction between the two cadherins. PCDH21 and PCDH24 contain similarly charged N termini, suggesting that a subset of cadherins share a common interaction mechanism that differs from the strand-swap binding mode of classical cadherins."	"Separate and combined effects of Sod1 and Cdh23 mutations on age-related hearing loss and cochlear pathology in C57BL/6J mice. Both the ahl allele of Cdh23 and the null mutation of Sod1 have been shown to contribute to age-related hearing loss (AHL) in mice, but mixed strain backgrounds have confounded analyses of their individual and combined effects. To test for the effects of Sod1 deficiency independently from those of Cdh23(ahl), we produced mice with four digenic genotypes: Sod1(+/+)Cdh23(ahl)(/ahl), Sod1(+/+)Cdh23(+/+), Sod1(-/-)Cdh23(ahl)(/ahl), and Sod1(-/-)Cdh23(+/+), all on a uniform C57BL(/)6J strain background. We assessed hearing loss by ABR threshold measurements and evaluated cochlear pathologies in age-matched mice of each digenic combination. ABR analysis showed that Sod1(+/+)Cdh23(+/+) mice retain normal hearing up to 15 months of age and that hearing loss of Sod1(+/+)Cdh23(ahl)(/ahl) mice is more age and frequency dependent than that of Sod1(-/-)Cdh23(+/+) mice. ABR results also showed that mice with both gene mutations (Sod1(-/-)Cdh23(ahl)(/ahl)) exhibit the earliest onset and most severe hearing loss, greater than predicted for strictly additive effects. Histological analysis of cochleas showed that hair cell lesions are most severe in Sod1(-)(/-)Cdh23(ahl)(/ahl) mice followed closely by Sod1(+)(/+)Cdh23(ahl)(/ahl) mice and much smaller in Sod1(-)(/-)Cdh23(+)(/+) and Sod1(+)(/+)Cdh23(+)(/+) mice. Despite extensive damage to cochlear hair cells, vestibular hair cells appeared remarkably normal in all strains. Although both Sod1(-/-) and Cdh23(ahl)(/ahl) genotypes had strong effects on hearing loss, the Cdh23(ahl/ahl) genotype was primarily responsible for the increase in hair cell loss, suggesting that the two mutations have different underlying mechanisms of pathology."	"Structural determinants of cadherin-23 function in hearing and deafness. The hair-cell tip link, a fine filament directly conveying force to mechanosensitive transduction channels, is composed of two proteins, protocadherin-15 and cadherin-23, whose mutation causes deafness. However, their molecular structure, elasticity, and deafness-related structural defects are unknown. We present crystal structures of the first and second extracellular cadherin repeats of cadherin-23. Overall, structures show typical cadherin folds, but reveal an elongated N terminus that precludes classical cadherin interactions and contributes to an N-terminal Ca(2+)-binding site. The deafness mutation D101G, in the linker region between the repeats, causes a slight bend between repeats and decreases Ca(2+) affinity. Molecular dynamics simulations suggest that cadherin-23 repeats are stiff and that either removing Ca(2+) or mutating Ca(2+)-binding residues reduces rigidity and unfolding strength. The structures define an uncharacterized cadherin family and, with simulations, suggest mechanisms underlying inherited deafness and how cadherin-23 may bind with itself and with protocadherin-15 to form the tip link."	"High-throughput detection of mutations responsible for childhood hearing loss using resequencing microarrays. Despite current knowledge of mutations in 45 genes that can cause nonsyndromic sensorineural hearing loss (SNHL), no unified clinical test has been developed that can comprehensively detect mutations in multiple genes. We therefore designed Affymetrix resequencing microarrays capable of resequencing 13 genes mutated in SNHL (GJB2, GJB6, CDH23, KCNE1, KCNQ1, MYO7A, OTOF, PDS, MYO6, SLC26A5, TMIE, TMPRSS3, USH1C). We present results from hearing loss arrays developed in two different research facilities and highlight some of the approaches we adopted to enhance the applicability of resequencing arrays in a clinical setting. We leveraged sequence and intensity pattern features responsible for diminished coverage and accuracy and developed a novel algorithm, sPROFILER, which resolved &gt;80% of no-calls from GSEQ and allowed 99.6% (range: 99.2-99.8%) of sequence to be called, while maintaining overall accuracy at &gt;99.8% based upon dideoxy sequencing comparison. Together, these findings provide insight into critical issues for disease-centered resequencing protocols suitable for clinical application and support the use of array-based resequencing technology as a valuable molecular diagnostic tool for pediatric SNHL and other genetic diseases with substantial genetic heterogeneity."	"The structure of the harmonin/sans complex reveals an unexpected interaction mode of the two Usher syndrome proteins. The hereditary hearing-vision loss disease, Usher syndrome I (USH1), is caused by defects in several proteins that can interact with each other in vitro. Defects in USH1 proteins are thought to be responsible for the developmental and functional impairments of sensory cells in the retina and inner ear. Harmonin/USH1C and Sans/USH1G are two of the USH1 proteins that interact with each other. Harmonin also binds to other USH1 proteins such as cadherin 23 (CDH23) and protocadherin 15 (PCDH15). However, the molecular basis governing the harmonin and Sans interaction is largely unknown. Here, we report an unexpected assembly mode between harmonin and Sans. We demonstrate that the N-terminal domain and the first PDZ domain of harmonin are tethered by a small-domain C-terminal to PDZ1 to form a structural and functional supramodule responsible for binding to Sans. We discover that the SAM domain of Sans, specifically, binds to the PDZ domain of harmonin, revealing previously unknown interaction modes for both PDZ and SAM domains. We further show that the synergistic PDZ1/SAM and PDZ1/carboxyl PDZ binding-motif interactions, between harmonin and Sans, lock the two scaffold proteins into a highly stable complex. Mutations in harmonin and Sans found in USH1 patients are shown to destabilize the complex formation of the two proteins."	"Biochemical characterization of native Usher protein complexes from a vesicular subfraction of tracheal epithelial cells. Usher syndrome is the major cause of deaf/blindness in the world. It is a genetic heterogeneous disorder, with nine genes already identified as causative for the disease. We noted expression of all known Usher proteins in bovine tracheal epithelial cells and exploited this system for large-scale biochemical analysis of Usher protein complexes. The dissected epithelia were homogenized in nondetergent buffer and sedimented on sucrose gradients. At least two complexes were evident after the first gradient: one formed by specific isoforms of CDH23, PCDH15, and VLGR-1 and a different one at the top of the gradient that included all of the Usher proteins and rab5, a transport vesicle marker. TEM analysis of these top fractions found them enriched in 100-200 nm vesicles, confirming a vesicular association of the Usher complex(es). Immunoisolation of these vesicles confirmed some of the associations already predicted and identified novel interactions. When the vesicles are lysed in the presence of phenylbutyrate, most of the Usher proteins cosediment into the gradient at a sedimentation coefficient of approximately 50 S, correlating with a predicted molecular mass of 2 x 10(6) Da. Although it is still unclear whether there is only one complex or several independent complexes that are trafficked within distinct vesicular pools, this work shows for the first time that native Usher protein complexes occur in vivo. This complex(es) is present primarily in transport vesicles at the apical pole of tracheal epithelial cells, predicting that Usher proteins may be directionally transported as complexes in hair cells and photoreceptors."	"Ex vivo splicing assays of mutations at noncanonical positions of splice sites in USHER genes. Molecular diagnosis in Usher syndrome type 1 and 2 patients led to the identification of 21 sequence variations located in noncanonical positions of splice sites in MYO7A, CDH23, USH1C, and USH2A genes. To establish experimentally the splicing pattern of these substitutions, whose impact on splicing is not always predictable by available softwares, ex vivo splicing assays were performed. The branch-point mapping strategy was also used to investigate further a putative branch-point mutation in USH2A intron 43. Aberrant splicing was demonstrated for 16 of the 21 (76.2%) tested sequence variations. The mutations resulted more frequently in activation of a nearby cryptic splice site or use of a de novo splice site than exon skipping (37.5%). This study allowed the reclassification as splicing mutations of one silent (c.7872G&gt;A (p.Glu2624Glu) in CDH23) and four missense mutations (c.2993G&gt;A (p.Arg998Lys) in USH2A, c.592G&gt;A (p.Ala198Thr), c.3503G&gt;C [p.Arg1168Pro], c.5944G&gt;A (p.Gly1982Arg) in MYO7A), whereas it provided clues about a role in structure/function in four other cases: c.802G&gt;A (p.Gly268Arg), c.653T&gt;A (p.Val218Glu) (USH2A), and c.397C&gt;T (p.His133Tyr), c.3502C&gt;T (p.Arg1168Trp) (MYO7A). Our data provide insights into the contribution of splicing mutations in Usher genes and illustrate the need to define accurately their splicing outcome for diagnostic purposes."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"Loss of myosin VI no insert isoform (NoI) induces a defect in clathrin-mediated endocytosis and leads to caveolar endocytosis of transferrin receptor. Myosin VI is a motor protein that moves toward the minus end of actin filaments. It is involved in clathrin-mediated endocytosis and associates with clathrin-coated pits/vesicles at the plasma membrane. In this article the effect of the loss of myosin VI no insert isoform (NoI) on endocytosis in nonpolarized cells was examined. The absence of myosin VI in fibroblasts derived from the Snell's waltzer mouse (myosin VI knock-out) gives rise to defective clathrin-mediated endocytosis with shallow clathrin-coated pits and a strong reduction in the internalization of clathrin-coated vesicles. To compensate for this defect in clathrin-mediated endocytosis, plasma membrane receptors such as the transferrin receptor (TfR) are internalized by a caveola-dependent pathway. Moreover the clathrin adaptor protein, AP-2, necessary for TfR internalization, follows the receptor and relocalizes in caveolae in Snell's waltzer fibroblasts."	"Expression of cadherin 23 isoforms is not conserved: implications for a mouse model of Usher syndrome type 1D. We compared cadherin 23 (Cdh23) mRNA and protein variants in the inner ear and retina of wild-type and mutant mice and primates to better understand the pleiotropic effects of Cdh23 mutations, and specifically to understand the absence of retinal degeneration in Cdh23 mutant mice. Semiquantitative real-time PCR was used to compare the level of expression of Cdh23 alternative transcripts in the inner ear and retina of wild-type and homozygous Cdh23(v-6J) (waltzer) mice. Antibodies generated against CDH23 isoforms were used in immunohistochemistry, immunohistology, electron microscopy, and western blot analyses of mouse and primate inner ear and retina to study the distribution of these isoforms in various cellular compartments. Cdh23 mRNA alternative splice variants were temporally and spatially regulated in the inner ear and retina. In the mature mouse retina, CDH23 isoforms were broadly expressed in various cellular compartments of the photoreceptor layer. The wild-type CDH23_V3 protein isoform, which has PDZ binding motifs but neither extracellular domains nor a transmembrane domain, localized exclusively to the outer plexiform layer of the retina containing photoreceptor cell synapses and to the synaptic region of auditory and vestibular hair cells. The longest CDH23 protein isoform, CDH23_V1, appeared by western blotting to be the only one affected by the Cdh23(v-6J) mutation; it was expressed in the wild-type mouse inner ear, but not in the mouse retina. However, CDH23_V1 was detected in western blot analyses of monkey and human retinas. The time- and tissue-dependent expression patterns that we have shown for Cdh23 alternative transcripts suggest developmental roles and tissue-specific functions for the various transcripts. Many of these isoforms continue to be expressed in waltzer mice. The longest CDH23 isoform (CDH23_V1), however, is not expressed in mutant mice and is necessary for normal inner ear function. The longest isoform is expressed in the retinas of primates, but not detected in the mouse retina. This species difference suggests that the mouse may not be a suitable model for studying the retinitis pigmentosa phenotype of human Usher syndrome type 1D."	"The mechanotransduction machinery of hair cells. Mechanotransduction, the conversion of mechanical force into an electrochemical signal, allows living organisms to detect touch, hear, register movement and gravity, and sense changes in cell volume and shape. Hair cells in the vertebrate inner ear are mechanoreceptor cells specialized for the detection of sound and head movement. Each hair cell contains, at the apical surface, rows of stereocilia that are connected by extracellular filaments to form an exquisitely organized bundle. Mechanotransduction channels, localized near the tips of the stereocilia, are gated by the gating spring, an elastic element that is stretched upon stereocilia deflection and mediates rapid channel opening. Components of the mechanotransduction machinery in hair cells have been identified and several are encoded by genes linked to deafness in humans, which indicates that defects in the mechanotransduction machinery are the underlying cause of some forms of hearing impairment."	"Microarray-based mutation analysis of 183 Spanish families with Usher syndrome. The purpose of this study was to test the ability of the genotyping microarray for Usher syndrome (USH) to identify the mutations responsible for the disease in a cohort of 183 patients with USH. DNA from 183 patients with Usher syndrome from the Spanish population was analyzed using a genotyping microarray containing 429 previously identified disease-associated variants in eight USH genes. Mutations detected by the array were confirmed by direct sequencing. Haplotype analysis was also performed in families carrying common Spanish mutations. The genotyping microarray identified 43 different variants, divided into 32 disease causative and 11 probably nonpathologic. Mutations were detected in 62 patients with USH (33.9%). According to the clinical classification of patients, pathologic variants were detected in 31.4% patients with USH1, 39.4% of with USH2, 22.2% with USH3 and 15.8% with unclassified Usher syndrome. Ninety-seven pathologic alleles were detected, corresponding to 26.5% of expected alleles. The USH2A mutations p.C3267R and p.T3571M were revealed as common in the Spanish population, and two major haplotypes linked to these mutations were observed. The genotyping microarray is a robust, low-cost, rapid technique that is effective for the genetic study of patients with USH. However, it also indicates variants of unclear pathologic nature and detection failures have also been observed. Results must be confirmed by direct sequencing to avoid misdiagnosis, and continuous updates of the microarray should be performed to increase the efficiency and rate of detection of mutations."	"Tip links in hair cells: molecular composition and role in hearing loss. Tip links are thought to be an essential element of the mechanoelectrical transduction (MET) apparatus in sensory hair cells of the inner ear. The molecules that form tip links have recently been identified, and the analysis of their properties has not only changed our view of MET but also suggests that tip-link defects can cause hearing loss. Structural, histological and biochemical studies show that the extracellular domains of two deafness-associated cadherins, cadherin 23 (CDH23) and protocadherin 15 (PCDH15), interact in trans to form the upper and lower part of each tip link, respectively. High-speed Ca imaging suggests that MET channels are localized exclusively at the lower end of each tip link. Biochemical and genetic studies provide evidence that defects in tip links cause hearing impairment in humans. The identification of the proteins that form tip links have shed new light on the molecular basis of MET and the mechanisms causing hereditary deafness, noise-induced hearing loss and presbycusis."	"EHD4 and CDH23 are interacting partners in cochlear hair cells. Cadherin 23 (CDH23), a transmembrane protein localized near the tips of hair cell stereocilia in the mammalian inner ear, is important for delivering mechanical signals to the mechano-electric transducer channels. To identify CDH23-interacting proteins, a membrane-based yeast two-hybrid screen of an outer hair cell (OHC) cDNA library was performed. EHD4, a member of the C-terminal EH domain containing a protein family involved in endocytic recycling, was identified as a potential interactor. To confirm the interaction, we first demonstrated the EHD4 mRNA expression in hair cells using in situ hybridization. Next, we showed that EHD4 co-localizes and co-immunoprecipitates with CDH23 in mammalian cells. Interestingly, the co-immunoprecipitation was found to be calcium-sensitive. To investigate the role of EHD4 in hearing, compound action potentials were measured in EHD4 knock-out (KO) mice. Although EHD4 KO mice have normal hearing sensitivity, analysis of mouse cochlear lysates revealed a 2-fold increase in EHD1, but no increase in EHD2 or EHD3, in EHD4 KO cochleae compared with wild type, suggesting that a compensatory increase in EHD1 levels may account for the absence of a hearing defect in EHD4 KO mice. Taken together, these data indicate that EHD4 is a novel CDH23-interacting protein that could regulate CDH23 trafficking/localization in a calcium-sensitive manner."	"Harmonin mutations cause mechanotransduction defects in cochlear hair cells. In hair cells, mechanotransduction channels are gated by tip links, the extracellular filaments that consist of cadherin 23 (CDH23) and protocadherin 15 (PCDH15) and connect the stereocilia of each hair cell. However, which molecules mediate cadherin function at tip links is not known. Here we show that the PDZ-domain protein harmonin is a component of the upper tip-link density (UTLD), where CDH23 inserts into the stereociliary membrane. Harmonin domains that mediate interactions with CDH23 and F-actin control harmonin localization in stereocilia and are necessary for normal hearing. In mice expressing a mutant harmonin protein that prevents UTLD formation, the sensitivity of hair bundles to mechanical stimulation is reduced. We conclude that harmonin is a UTLD component and contributes to establishing the sensitivity of mechanotransduction channels to displacement."	"Bottoms up: transduction channels at tip link bases. NA"	"Molecular screening of deafness in Algeria: high genetic heterogeneity involving DFNB1 and the Usher loci, DFNB2/USH1B, DFNB12/USH1D and DFNB23/USH1F. A systematic approach, involving haplotyping and genotyping, to the molecular diagnosis of non-syndromic deafness within 50 families and 9 sporadic cases from Algeria is described. Mutations at the DFNB1 locus (encompassing the GJB2 and GJB6 genes) are responsible for more than half of autosomal recessive prelingual non-syndromic deafness in various populations. A c.35delG mutation can account for up to 85% of GJB2 mutations and two large deletions del(GJB6-D13S1830) and del(GJB6-D13S1854) have also been reported in several population groups. In view of the genetic heterogeneity a strategy was developed which involved direct analysis of DFNB1. In negative familial cases, haplotype analysis was carried out, where possible, to exclude DFNB1 mutations. Following this, haplotype analysis of five Usher syndrome loci, sometimes involved in autosomal non-syndromic hearing loss, was carried out to identify cases in which Usher gene sequencing was indicated. When homozygosity was observed at a locus in a consanguineous family, the corresponding gene was exhaustively sequenced. Pathogenic DFNB1 genotypes were identified in 40% of the cases. Of the 21 cases identified with 2 pathogenic mutations, c.35delG represented 76% of the mutated alleles. The additional mutations were one nonsense, two missense and one splicing mutation. Four additional patients were identified with a single DFNB1 mutation. None carried the large deletions. Three families with non-syndromic deafness carried novel unclassified variants (UVs) in MYO7A (1 family) and CDH23 (2 families) of unknown pathogenic effect. Additionally, molecular diagnosis was carried out on two Usher type I families and pathogenic mutations in MYO7A and PCDH15 were found."	"Unraveling cadherin 23's role in development and mechanotransduction. NA"	"Identifying components of the hair-cell interactome involved in cochlear amplification. Although outer hair cells (OHCs) play a key role in cochlear amplification, it is not fully understood how they amplify sound signals by more than 100 fold. Two competing or possibly complementary mechanisms, stereocilia-based and somatic electromotility-based amplification, have been considered. Lacking knowledge about the exceptionally rich protein networks in the OHC plasma membrane, as well as related protein-protein interactions, limits our understanding of cochlear function. Therefore, we focused on finding protein partners for two important membrane proteins: Cadherin 23 (cdh23) and prestin. Cdh23 is one of the tip-link proteins involved in transducer function, a key component of mechanoelectrical transduction and stereocilia-based amplification. Prestin is a basolateral membrane protein responsible for OHC somatic electromotility. Using the membrane-based yeast two-hybrid system to screen a newly built cDNA library made predominantly from OHCs, we identified two completely different groups of potential protein partners using prestin and cdh23 as bait. These include both membrane bound and cytoplasmic proteins with 12 being de novo gene products with unknown function(s). In addition, some of these genes are closely associated with deafness loci, implying a potentially important role in hearing. The most abundant prey for prestin (38%) is composed of a group of proteins involved in electron transport, which may play a role in OHC survival. The most abundant group of cdh23 prey (55%) contains calcium-binding domains. Since calcium performs an important role in hair cell mechanoelectrical transduction and amplification, understanding the interactions between cdh23 and calcium-binding proteins should increase our knowledge of hair cell function at the molecular level. The results of this study shed light on some protein networks in cochlear hair cells. Not only was a group of de novo genes closely associated with known deafness loci identified, but the data also indicate that the hair cell tip link interacts directly with calcium binding proteins. The OHC motor protein, prestin, also appears to be associated with electron transport proteins. These unanticipated results open potentially fruitful lines of investigation into the molecular basis of cochlear amplification."	"Assembling stable hair cell tip link complex via multidentate interactions between harmonin and cadherin 23. The hereditary hearing-vision loss disease Usher syndrome (USH) is caused by defects in several proteins, most of which form an integrated protein network called Usher interactome. Harmonin/Ush1C is a master scaffold in the assembly of the Usher protein complexes, because harmonin is known to bind to every protein in the Usher interactome. However, the biochemical and structural mechanism governing the Usher protein complex formation is largely unclear. Here, we report that the highly-conserved N-terminal fragment of harmonin (N-domain) immediately preceding its PDZ1 adopts an autonomously-folded domain. We discovered that the N-domain specifically binds to a short internal peptide fragment of the cadherin 23 cytoplasmic domain. The structures of the harmonin N-domain alone and in complex with the cadherin 23 internal peptide fragment uncovered the detailed binding mechanism of this interaction between harmonin and cadherin 23. We further elucidated the harmonin PDZ domain-mediated cadherin 23 binding by solving the structure of the second harmonin PDZ domain in complex with the cadherin 23 carboxyl tail. The multidentate binding mode between harmonin and cadherin 23 provides a structural and biochemical basis for the harmonin-mediated assembly of stable tip link complex in the auditory hair cells."	"Mechanisms and genes in human strial presbycusis from animal models. Schuknecht proposed a discrete form of presbycusis in which hearing loss results principally from degeneration of cochlear stria vascularis and decline of the endocochlear potential (EP). This form was asserted to be genetically linked, and to arise independently from age-related pathology of either the organ of Corti or cochlear neurons. Although extensive strial degeneration in humans coincides with hearing loss, EPs have never been measured in humans, and age-related EP reduction has never been verified. No human genes that promote strial presbycusis have been identified, nor is its pathophysiology well understood. Effective application of animal models to this issue requires models demonstrating EP decline, and preferably, genetically distinct strains that vary in patterns of EP decline and its cellular correlates. Until recently, only two models, Mongolian gerbils and Tyrp1(B-lt) mice, were known to undergo age-associated EP reduction. Detailed studies of seven inbred mouse strains have now revealed three strains (C57BL/6J, B6.CAST-Cdh23(CAST), CBA/J) showing essentially no EP decline with age, and four strains ranging from modest to severe EP reduction (C57BL/6-Tyr(c-2J), BALB/cJ, CBA/CaJ, NOD.NON-H2(nbl)/LtJ). Collectively, animal models support five basic principles regarding a strial form of presbycusis: 1) Progressive EP decline from initially normal levels as a defining characteristic; 2) Non-universality, not all age-associated hearing loss involves EP decline; 3) A clear genetic basis; 4) Modulation by environment or stochastic events; and 5) Independent strial, organ of Corti, and neural pathology. Shared features between human strial presbycusis, gerbils, and BALB/cJ and C57BL/6-Tyr(c-2J) mice further suggest this condition frequently begins with strial marginal cell dysfunction and loss. By contrast, NOD.NON-H2(nbl) mice may model a sequence more closely associated with strial microvascular disease. Additional studies of these and other inbred mouse and rat models should reveal candidate processes and genes that promote EP decline in humans."	"A mouse model for nonsyndromic deafness (DFNB12) links hearing loss to defects in tip links of mechanosensory hair cells. Deafness is the most common form of sensory impairment in humans and is frequently caused by single gene mutations. Interestingly, different mutations in a gene can cause syndromic and nonsyndromic forms of deafness, as well as progressive and age-related hearing loss. We provide here an explanation for the phenotypic variability associated with mutations in the cadherin 23 gene (CDH23). CDH23 null alleles cause deaf-blindness (Usher syndrome type 1D; USH1D), whereas missense mutations cause nonsyndromic deafness (DFNB12). In a forward genetic screen, we have identified salsa mice, which suffer from hearing loss due to a Cdh23 missense mutation modeling DFNB12. In contrast to waltzer mice, which carry a CDH23 null allele mimicking USH1D, hair cell development is unaffected in salsa mice. Instead, tip links, which are thought to gate mechanotransduction channels in hair cells, are progressively lost. Our findings suggest that DFNB12 belongs to a new class of disorder that is caused by defects in tip links. We propose that mutations in other genes that cause USH1 and nonsyndromic deafness may also have distinct effects on hair cell development and function."	"Genome-wide association study of smoking initiation and current smoking. For the identification of genes associated with smoking initiation and current smoking, genome-wide association analyses were carried out in 3497 subjects. Significant genes that replicated in three independent samples (n = 405, 5810, and 1648) were visualized into a biologically meaningful network showing cellular location and direct interaction of their proteins. Several interesting groups of proteins stood out, including glutamate receptors (e.g., GRIN2B, GRIN2A, GRIK2, GRM8), proteins involved in tyrosine kinase receptor signaling (e.g., NTRK2, GRB14), transporters (e.g., SLC1A2, SLC9A9) and cell-adhesion molecules (e.g., CDH23). We conclude that a network-based genome-wide association approach can identify genes influencing smoking behavior."	"Double homozygous waltzer and Ames waltzer mice provide no evidence of retinal degeneration. To determine whether cadherin 23 and protocadherin 15 can substitute for one another in the maintenance of the retina and other tissues in the mouse. Does homozygosity for both v and av mutant alleles (i.e., a double homozygous mouse) cause retinal degeneration or an obvious retinal histopathology? We generated mice homozygous for both Cdh23(v-6J) and Pcdh15(av-Jfb) alleles. The retinal phenotypes of double heterozygous and double homozygous mutant mice were determined by light microscopy and electroretinography (ERG). Histology on 32 different tissues, scanning electron microscopy of organ of Corti hair cells as well as serum biochemical and hematological examinations were evaluated. ERG waves of double heterozygous and double homozygous mice showed similar shape, growth of the amplitude with intensity, and implicit time for both rod and cone pathway mediated responses. Mice homozygous for both Cdh23(v-6J) and Pcdh15(av-Jfb) mutations showed no sign of retinitis pigmentosa or photoreceptor degeneration but, as expected, were deaf and had disorganized hair cell sensory bundles. The simultaneous presence of homozygous mutant alleles of cadherin 23 and protocadherin 15 results only in deafness, not retinal degeneration or any other additional obvious phenotype of the major organ systems. We conclude that in the mouse cadherin 23 or protocadherin 15 appear not to compensate for one another to maintain the retina."	"Presence of interstereocilial links in waltzer mutants suggests Cdh23 is not essential for tip link formation. Cadherin23 has been proposed to form the upper part of the tip link, an interstereocilial link believed to control opening of transducer channels of sensory hair cells. However, we detect tip link-like links in mouse mutants with null alleles of Cdh23, suggesting the presence of other components that permit formation of a link between the tip of one stereocilium and the side of the adjacent taller stereocilium."	"MAGI-1, a candidate stereociliary scaffolding protein, associates with the tip-link component cadherin 23. Inner ear hair-cell mechanoelectrical transduction is mediated by a largely unidentified multiprotein complex associated with the stereociliary tips of hair bundles. One identified component of tip links, which are the extracellular filamentous connectors implicated in gating the mechanoelectrical transduction channels, is the transmembrane protein cadherin 23 (Cdh23), more specifically, the hair- cell-specific Cdh23(+68) splice variant. Using the intracellular domain of Cdh23(+68) as bait, we identified in a cochlear cDNA library MAGI-1, a MAGUK (membrane-associated guanylate kinase) protein. MAGI-1 binds via its PDZ4 domain to a C-terminal PDZ-binding site on Cdh23. MAGI-1 immunoreactivity was detectable throughout neonatal stereocilia in a distribution similar to that of Cdh23. As development proceeded, MAGI-1 occurred in a punctate staining pattern on stereocilia, which was maintained into adulthood. Previous reports suggest that Cdh23 interacts via an internal PDZ-binding site with the PDZ1 domain of the stereociliary protein harmonin, and potentially via a weaker binding of its C terminus with harmonin's PDZ2 domain. We propose that MAGI-1 has the ability to replace harmonin's PDZ2 binding at Cdh23's C terminus. Moreover, the strong interaction between PDZ1 of harmonin and Cdh23 is interrupted by a 35 aa insertion in the hair-cell-specific Cdh23(+68) splice variant, which puts forward MAGI-1 as an attractive candidate for an intracellular scaffolding partner of this tip-link protein. Our results consequently support a role of MAGI-1 in the tip-link complex, where it could provide a sturdy connection with the cytoskeleton and with other components of the mechanoelectrical transduction complex."	"Genome-wide association scan for five major dimensions of personality. Personality traits are summarized by five broad dimensions with pervasive influences on major life outcomes, strong links to psychiatric disorders and clear heritable components. To identify genetic variants associated with each of the five dimensions of personality we performed a genome-wide association (GWA) scan of 3972 individuals from a genetically isolated population within Sardinia, Italy. On the basis of the analyses of 362 129 single-nucleotide polymorphisms we found several strong signals within or near genes previously implicated in psychiatric disorders. They include the association of neuroticism with SNAP25 (rs362584, P=5 x 10(-5)), extraversion with BDNF and two cadherin genes (CDH13 and CDH23; Ps&lt;5 x 10(-5)), openness with CNTNAP2 (rs10251794, P=3 x 10(-5)), agreeableness with CLOCK (rs6832769, P=9 x 10(-6)) and conscientiousness with DYRK1A (rs2835731, P=3 x 10(-5)). Effect sizes were small (less than 1% of variance), and most failed to replicate in the follow-up independent samples (N up to 3903), though the association between agreeableness and CLOCK was supported in two of three replication samples (overall P=2 x 10(-5)). We infer that a large number of loci may influence personality traits and disorders, requiring larger sample sizes for the GWA approach to confidently identify associated genetic variants."	"Forty-six genes causing nonsyndromic hearing impairment: which ones should be analyzed in DNA diagnostics? Hearing impairment is the most common sensory disorder, present in 1 of every 500 newborns. With 46 genes implicated in nonsyndromic hearing loss, it is also an extremely heterogeneous trait. Here, we categorize for the first time all mutations reported in nonsyndromic deafness genes, both worldwide and more specifically in Caucasians. The most frequent genes implicated in autosomal recessive nonsyndromic hearing loss are GJB2, which is responsible for more than half of cases, followed by SLC26A4, MYO15A, OTOF, CDH23 and TMC1. None of the genes associated with autosomal dominant nonsyndromic hearing loss accounts for a preponderance of cases, although mutations are somewhat more frequently reported in WFS1, KCNQ4, COCH and GJB2. Only a minority of these genes is currently included in genetic diagnostics, the selection criteria typically reflecting: (1) high frequency as a cause of deafness (i.e. GJB2); (2) association with another recognisable feature (i.e. SLC26A4 and enlarged vestibular aqueduct); or (3) a recognisable audioprofile (i.e. WFS1). New and powerful DNA sequencing technologies have been developed over the past few years, but have not yet found their way into DNA diagnostics. Implementing these technologies is likely to happen within the next 5 years, and will cause a breakthrough in terms of power and cost efficiency. It will become possible to analyze most - if not all - deafness genes, as opposed to one or a few genes currently. This ability will greatly improve DNA diagnostics, provide epidemiological data on gene-based mutation frequencies, and reveal novel genotype-phenotype correlations."	"A locus on distal chromosome 11 (ahl8) and its interaction with Cdh23 ahl underlie the early onset, age-related hearing loss of DBA/2J mice. The DBA/2J inbred strain of mice is used extensively in hearing research, yet little is known about the genetic basis for its early onset, progressive hearing loss. To map underlying genetic factors we analyzed recombinant inbred strains and linkage backcrosses. Analysis of 213 mice from 31 BXD recombinant inbred strains detected linkage of auditory brain-stem response thresholds with a locus on distal chromosome 11, which we designate ahl8. Analysis of 225 N2 mice from a backcross of (C57BL/6JxDBA/2J) F1 hybrids to DBA/2J mice confirmed this linkage (LOD&gt;50) and refined the ahl8 candidate gene interval. Analysis of 214 mice from a backcross of (B6.CAST-Cdh23 Ahl+ xDBA/2J) F1 hybrids to DBA/2J mice demonstrated a genetic interaction of Cdh23 with ahl8. We conclude that ahl8 is a major contributor to the hearing loss of DBA/2J mice and that its effects are dependent on the predisposing Cdh23 ahl genotype of this strain."	"Cadherin 23-like polypeptide in hair bundle mechanoreceptors of sea anemones. We investigated hair bundle mechanoreceptors in sea anemones for a homolog of cadherin 23. A candidate sequence was identified from the database for Nematostella vectensis that has a shared lineage with vertebrate cadherin 23s. This cadherin 23-like protein comprises 6,074 residues. It is an integral protein that features three transmembrane alpha-helices and a large extracellular loop with 44 contiguous, cadherin (CAD) domains. In the second half of the polypeptide, the CAD domains occur in a quadruple repeat pattern. Members of the same repeat group (i.e., CAD 18, 22, 26, and so on) share nearly identical amino acid sequences. An affinity-purified antibody was generated to a peptide from the C-terminus of the cadherin 23-like polypeptide. The peptide is expected to lie on the exoplasmic side of the plasma membrane. In LM, the immunolabel produced punctate fluorescence in hair bundles. In TEM, immunogold particles were observed medially and distally on stereocilia of hair bundles. Dilute solutions of the antibody disrupted vibration sensitivity in anemones. We conclude that the cadherin 23-like polypeptide likely contributes to the mechanotransduction apparatus of hair bundle mechanoreceptors of anemones."	"Cadherins and mechanotransduction by hair cells. Mechanotransduction, the conversion of a mechanical stimulus into an electrical signal is crucial for our ability to hear and to maintain balance. Recent findings indicate that two members of the cadherin superfamily are components of the mechanotransduction machinery in sensory hair cells of the vertebrate inner ear. These studies show that cadherin 23 (CDH23) and protocadherin 15 (PCDH15) form several of the extracellular filaments that connect the stereocilia and kinocilium of a hair cell into a bundle. One of these filaments is the tip link that has been proposed to gate the mechanotransduction channel in hair cells. The extracellular domains of CDH23 and PCDH15 differ in their structure from classical cadherins and their cytoplasmic domains bind to distinct effectors, suggesting that evolutionary pressures have shaped the two cadherins for their function in mechanotransduction."	"UMD-USHbases: a comprehensive set of databases to record and analyse pathogenic mutations and unclassified variants in seven Usher syndrome causing genes. Using the Universal Mutation Database (UMD) software, we have constructed &quot;UMD-USHbases&quot;, a set of relational databases of nucleotide variations for seven genes involved in Usher syndrome (MYO7A, CDH23, PCDH15, USH1C, USH1G, USH3A and USH2A). Mutations in the Usher syndrome type I causing genes are also recorded in non-syndromic hearing loss cases and mutations in USH2A in non-syndromic retinitis pigmentosa. Usher syndrome provides a particular challenge for molecular diagnostics because of the clinical and molecular heterogeneity. As many mutations are missense changes, and all the genes also contain apparently non-pathogenic polymorphisms, well-curated databases are crucial for accurate interpretation of pathogenicity. Tools are provided to assess the pathogenicity of mutations, including conservation of amino acids and analysis of splice-sites. Reference amino acid alignments are provided. Apparently non-pathogenic variants in patients with Usher syndrome, at both the nucleotide and amino acid level, are included. The UMD-USHbases currently contain more than 2,830 entries including disease causing mutations, unclassified variants or non-pathogenic polymorphisms identified in over 938 patients. In addition to data collected from 89 publications, 15 novel mutations identified in our laboratory are recorded in MYO7A (6), CDH23 (8), or PCDH15 (1) genes. Information is given on the relative involvement of the seven genes, the number and distribution of variants in each gene. UMD-USHbases give access to a software package that provides specific routines and optimized multicriteria research and sorting tools. These databases should assist clinicians and geneticists seeking information about mutations responsible for Usher syndrome."	"Mutation profile of the CDH23 gene in 56 probands with Usher syndrome type I. Mutations in the human gene encoding cadherin23 (CDH23) cause Usher syndrome type 1D (USH1D) and nonsyndromic hearing loss. Individuals with Usher syndrome type I have profound congenital deafness, vestibular areflexia and usually begin to exhibit signs of RP in early adolescence. In the present study, we carried out the mutation analysis in all 69 exons of the CDH23 gene in 56 Usher type 1 probands already screened for mutations in MYO7A. A total of 18 of 56 subjects (32.1%) were observed to have one or two CDH23 variants that are presumed to be pathologic. Twenty one different pathologic genome variants were observed of which 15 were novel. Out of a total of 112 alleles, 31 (27.7%) were considered pathologic. Based on our results it is estimated that about 20% of patients with Usher syndrome type I have CDH23 mutations."	"Cochlear implantation in individuals with Usher type 1 syndrome. To analyze the occurrence of the Usher type 1 (USH1) gene mutations in cochlear implant recipients with deaf-blind Usher syndrome, and to assess the potential effect of these genes and other factors on the therapeutic outcome. Case series study of nine patients with the phenotypic diagnosis of USH1. Mutation analysis of four USH1 genes (MYO7A, USH1C, CDH23, and PCDH15) by single strand conformational polymorphism (SSCP) and direct sequencing methods. Pre- and post-implantation audiologic tests including pure tone audiometry, speech perception measures, and qualitative assessment of auditory performance. Nine USH1 patients who received their cochlear implants at the University of Miami Ear Institute, Miami, FL, USA, and at the Department of Cochlear Implants, Great Ormond Street Hospital for Children, London, UK. DNA samples from five of the nine patients were available for mutation analysis. Three of the five patients were found to carry USH1 mutations including two with a truncated mutation in CDH23 and one being a digenic inheritance with mutations in CDH23 and PCDH15. We may have failed to detect mutations in the amplicons analyzed, as neither SSCP nor direct sequencing, even combined, detects all mutations present. Our failure to detect mutations in all five patients may also confirm the genetic heterogeneity of USH1 and additional USH1 loci remain to be mapped. Pre-implantation assessment indicated that all of the subjects were pre-linguistically profoundly deaf, had no consistent response to sound, had varying degrees of auditory-oral habilitation. Age at implantation ranged from 2 to 11 years. There was post-implantation improvement in sound detection and speech recognition measures in closed-set format in all patients. Children implanted at an age of 3 years or less showed good open-set speech perception with lip-reading. All patients are implant users. Those patients who do not show open-set perception still use the cochlear implant as an adjunct of lip-reading or total communication. Testing for mutations in the USH1 genes allows early identification and intervention of children with USH1; timely intervention is important to maximize the development of useful auditory-oral communication skills prior to the onset of the visual impairment."	"The dimensions and structural attachments of tip links in mammalian cochlear hair cells and the effects of exposure to different levels of extracellular calcium. The tip links between stereocilia of acousticolateral hair cells have been suggested to contain cadherin 23 (CDH23) comprising an upper branched portion that is bound to a lower portion composed of protocadherin 15 (PCDH15). The molecular conformation of CDH23, its binding to PCDH15, the tip links, and mechanoelectrical transduction have all been shown previously to be sensitive to exposure to low levels of calcium. The aim of this study was to compare the characteristics of tip links in guinea-pig cochlear hair cells with reported features of the CDH23-PCDH15 complex. Tip links were examined using field emission scanning electron microscopy and transmission electron microscopy in conventional preparations and after treatment with the detergent Triton-X-100 or varying calcium concentrations in the extracellular solution. The results showed that tip links have a twisted double-stranded appearance with a branched upper region. They survived demembranation of the stereocilia by detergent suggesting that they have transmembrane domains at both ends. Their lengths, when fixed in the presence of 2 mM extracellular calcium, were approximately 150 nm. With prior exposure to 1 mM calcium their lengths were approximately 164 nm. The lengths in 50 microM calcium are similar ( approximately 185 nm) to those reported for CDH23-PCDH15 complexes in 100 microM calcium ( approximately 180 nm). Exposure to 1 microM calcium caused loss of tip links and an increased distance between the residual attachment sites. The data indicate that extracellular calcium concentration affects tip-link length. One model compatible with the recently proposed tip-link structure is that the CDH23 double strand undergoes calcium-dependent unfolding, changing the length of the links. The bundle may also tilt in the direction of the tallest row of stereocilia as the tip link lengthens and then is lost. Overall, our data are consistent with a tip link composed of complexes of CDH23 and PCDH15 but do not rule out other possibilities."	"The responsible genes in Japanese deafness patients and clinical application using Invader assay. Discovery of deafness genes has progressed but clinical application lags because of the genetic heterogeneity. To establish clinical application strategy, we reviewed the frequency and spectrum of mutations found in Japanese hearing loss patients and compared them to those in populations of European ancestry. Screening revealed that in Japanese, mutations in GJB2, SLC26A4, and CDH23, and the mitochondrial 12S rRNA are the major causes of hearing loss. Also, mutations in KCNQ4, TECTA, COCH, WFS1, CRYM, COL9A3, and KIAA1199 were found in independent autosomal dominant families. Interestingly, spectrums of GJB2, SLC26A4, and CDH23 mutations in Japanese were quite different from those in Europeans. Simultaneous screening of multiple deafness mutations based on the mutation spectrum of a corresponding population using an Invader panel revealed that approximately 30% of subjects could be diagnosed. This assay will enable us to detect deafness mutations in an efficient and practical manner in the clinical platform. We conclude that specific racial populations may have unique deafness gene epidemiologies; therefore, ethnic background should be considered when genetic testing is performed. Simultaneous examination of multiple mutations based on a population's spectrum may be appropriate and effective for detecting deafness genes, facilitating precise clinical diagnosis, appropriate counseling, and proper management."	"Single nucleotide polymorphisms in the cadherin 23 (CDH23) gene in Polish workers exposed to industrial noise. Single nucleotide polymorphisms (SNPs) are the most frequent type of variation in the human genome and may underlie differential susceptibility to common genetic diseases. A candidate gene for susceptibility to noise-induced hearing loss (NIHL) is Cadherin 23 (CDH23). This study aimed to analyze genetic variation in the CDH23 gene in a group of 10 individuals derived from a cohort of 949 workers exposed to noise, and consisted of five persons from each of the resistant and susceptible extremes. DNA samples were collected and the coding exons of CDH23 were sequenced. We identified a total of 35 SNPs: 11 amino acid substitutions, 8 silent nucleotide changes, and 16 substitutions in intervening sequences. Ten of the 11 amino acid substitutions were previously shown also to segregate in a Cuban population. The nonsynonymous SNPs localized to the part of the gene encoding the extracellular domain of Cadherin 23, in particular ectodomains 5, 13, 14, 15, 16, 17, 19, and 22. One amino acid change occurred at a conserved position in ectodomain 5. Our results provide a framework for future study of polymorphisms in CDH23 as risk factor for NIHL."	"A core cochlear phenotype in USH1 mouse mutants implicates fibrous links of the hair bundle in its cohesion, orientation and differential growth. The planar polarity and staircase-like pattern of the hair bundle are essential to the mechanoelectrical transduction function of inner ear sensory cells. Mutations in genes encoding myosin VIIa, harmonin, cadherin 23, protocadherin 15 or sans cause Usher syndrome type I (USH1, characterized by congenital deafness, vestibular dysfunction and retinitis pigmentosa leading to blindness) in humans and hair bundle disorganization in mice. Whether the USH1 proteins are involved in common hair bundle morphogenetic processes is unknown. Here, we show that mouse models for the five USH1 genetic forms share hair bundle morphological defects. Hair bundle fragmentation and misorientation (25-52 degrees mean kinociliary deviation, depending on the mutant) were detected as early as embryonic day 17. Abnormal differential elongation of stereocilia rows occurred in the first postnatal days. In the emerging hair bundles, myosin VIIa, the actin-binding submembrane protein harmonin-b, and the interstereocilia-kinocilium lateral link components cadherin 23 and protocadherin 15, all concentrated at stereocilia tips, in accordance with their known in vitro interactions. Soon after birth, harmonin-b switched from the tip of the stereocilia to the upper end of the tip link, which also comprises cadherin 23 and protocadherin 15. This positional change did not occur in mice deficient for cadherin 23 or protocadherin 15. We suggest that tension forces applied to the early lateral links and to the tip link, both of which can be anchored to actin filaments via harmonin-b, play a key role in hair bundle cohesion and proper orientation for the former, and in stereociliary elongation for the latter."	"[Usher type I syndrome in children: genotype/phenotype correlation and cochlear implant benefits]. To assess the benefit of cochlear implant in children presenting an Usher type 1 syndrome (speech understanding, speech production intelligibility, academic performance) and to search any correlation between the phenotype and the genotype in this population. Retrospective case series analysis about 13 implanted Usher type I children. Cochlear implantation was performed from 1995 to 2005. Our population was divided in three groups: group 1 (implantation between 1 and 3 years of age); group 2 (implantation between 4 and 7 years of age) and group 3 (implantation between 14 and 17 years of age). Postoperative speech perception, speech production intelligibility and education settings were evaluated. Molecular genetic analysis was performed in 11 patients and pathogenic mutations were identified in all cases: (mutation in myosin 7A gene in 5 cases; mutation in cadherin 23 gene in 6 cases). Four new mutations 2 in the MYO7A gene and 2 in the CDH23 gene never reported before were found. Walking delay and hearing level were not statistically correlated with the genotype abnormalities found. The speech discrimination skills, the speech production intelligibility and the academic performance were better in the group 1 children than the group 2 children after cochlear implantation. All the children of group 1 but one were in mainstreaming education. Specific language impairment was identified in two children of group 1. The group 3 children could not achieve open-set perceptive tasks after implantation--only closed-set word test can be done and their speech production remained unintelligible after cochlear implantation. Molecular analysis of Usher type I syndrome can ascertain the diagnosis in spite of the genetic heterogeneity. In this study, clinical symptoms weren't correlated with genotypic mutations. Speech discrimination skills, speech production quality, and academic performance were correlated with the age at implant."	"A locus on distal chromosome 10 (ahl4) affecting age-related hearing loss in A/J mice. The ahl locus, shown to be a strain-specific Cdh23 dimorphism, contributes to age-related hearing loss in many inbred mouse strains. A/J mice begin to lose hearing by 4 weeks of age, much earlier than C57BL/6J (B6) mice, although both strains have the same Cdh23(ahl) variant. Here, we use recombinant inbred strains, chromosome substitution strains, and a linkage backcross to map a locus on distal Chromosome 10, designated ahl4, that contributes to the early-onset hearing loss of A/J mice. Cochleae of 9-week-old A/J mice exhibit inner and outer hair cell loss from the basal turn through the apical turn, with outer hair cell loss at the base being severest. To quantify the progression of hair cell loss, cytocochleograms were evaluated from 0 to 20 weeks of age. A/J mice showed evidence of hair cell loss in the base of the cochlea as early as 14 days of age and the magnitude and extent of loss increased rapidly during the following 2-5 months. Hair cell loss occurred earlier and was much more severe and widespread in A/J mice than in B6 mice during the first 5 months of age. Spiral ganglion neurons, cells of the stria vascularis, and vestibular hair cell densities, however, appeared normal in 20-week-old A/J mice."	"Usher syndrome type 1 due to missense mutations on both CDH23 alleles: investigation of mRNA splicing. Usher syndrome (USH) is an autosomal recessive condition characterized by sensorineural hearing loss, vestibular dysfunction, and visual impairment due to retinitis pigmentosa. Truncating mutations in the cadherin-23 gene (CDH23) result in Usher syndrome type 1D (USH1D), whereas missense mutations affecting strongly conserved motifs of the CDH23 protein cause non-syndromic deafness (DFNB12). Four missense mutations constitute an exception from this genotype-phenotype correlation: they have been described in USH1 patients in homozygous state. Using a minigene assay, we have investigated these changes (c.1450G&gt;C, p.A484P; c.3625A&gt;G, p.T1209A; c.4520G&gt;A, p.R1507Q; and c.5237G&gt;A, p.R1746Q) for a possible impact on mRNA splicing which could explain the syndromic phenotype. While in silico analysis suggested impairment of splicing in all four cases, we found aberrant splicing for only one mutation, p.R1746Q. However, splicing was normal in case of p.A484P, p.T1209A and p.R1507Q. These three latter CDH23 missense mutations could interfere with functions of both, the auditory and the visual system. Alternatively, they could represent rare non-pathogenic polymorphisms."	"Redox-dependent structural ambivalence of the cytoplasmic domain in the inner ear-specific cadherin 23 isoform. Cadherin 23 (Cdh23), an essential factor in inner ear mechano-electric transduction, exists in two alternatively spliced forms, Cdh23(+68) and Cdh23(-68), depending on the presence and absence of exon 68. Cdh23(+68) is inner ear-specific. The exon 68-corresponding region confers an alpha-helical configuration upon the cytoplasmic domain (Cy) and includes a cysteine residue, Cys(3240). We demonstrate here that Cy(+68) as well as the transmembrane (TM) plus Cy(+68) region is present in two different forms in transfected cells, reduced and non-reduced, the latter existing in more compact configuration than the former. The observed characteristic of Cy(+68) was completely abolished by Cys(3240)Ala substitution. Treatment of TMCy(+68)-transfected cells with diethyl maleate, a glutathione depleting reagent, resulted in conversion of the non-reduced to the reduced form of TMCy(+68), suggesting glutathione to be a Cys(3240)-binding partner. Multiple alignment of mammalian Cdh23Cy sequences indicated the occurrence of conformation-inducible Cys in Cdh23Cy of mammals, but not lower vertebrates. The implications of Cys-dependent structural ambivalence of Cdh23 in inner ear mechanosensation are discussed."	"Genes encoding mitochondrial respiratory chain components are profoundly down-regulated with aging in the cochlea of DBA/2J mice. Age-related hearing loss (AHL) is the progressive loss of auditory function with aging. Mutations in the Cdh23 gene of DBA/2J mice result in AHL by 3 months of age. Hearing function was analyzed by auditory brainstem response (ABR) which confirmed that severe age-related hearing loss occurred in 8-month-old mice, whereas mild hearing loss occurred in 2-month-old mice. Cochlear gene expression of 2-month-old and 8-month-old DBA/2J mice was measured using Affymetrix microarrays. Comprehensive gene expression analysis identified significant expression changes correlated with AHL in over 4000 cochlear genes. AHL-correlated genes in the cochlea of 8-month-old DBA/2J mice were statistically associated with 15 mitochondrial process categories, including &quot;mitochondrial electron transport chain&quot;, &quot;oxidative phosphorylation&quot;, &quot;respiratory chain complex I&quot;, &quot;respiratory chain complex IV&quot;, and &quot;respiratory chain complex V&quot;. Furthermore, 31 genes encoding components of the mitochondrial respiratory chain complexes I, II, III, IV, and V were significantly down-regulated in the cochlea. Quantitative RT-PCR (QRT-PCR) validated the microarray data in a selected set of genes. Thus, these observations provide evidence that AHL is associated with profound down-regulation of genes involved in the mitochondrial respiratory chain complexes in the cochlea of aged DBA/2J mice."	"Distribution and frequencies of CDH23 mutations in Japanese patients with non-syndromic hearing loss. Mutations in the CDH23 gene are known to be responsible for both Usher syndrome type ID (USH1D) and non-syndromic hearing loss (DFNB12), and the molecular confirmation of the CDH23 gene has become important in the diagnosis of these conditions. The present study was performed to find whether the CDH23 mutations are also responsible for non-syndromic hearing loss in patients in the Japanese population. A total of 51 sequence variants were found in 64 Japanese probands with non-syndromic sensorineural hearing impairment from autosomal recessive families. Among them, at least four missense mutations in six patients from five families were confirmed to be responsible for deafness by segregation study. All mutations detected were missense mutations, corroborating the previous reports regarding DFNB12. The present data confirmed that CDH23 mutations are frequently found and significantly responsible in Japanese. Interestingly, the CDH23 mutation spectrum in Japanese is very different from that found in Caucasians. This Japanese spectrum may be representative of those in Eastern Asian populations and its elucidation is expected to facilitate the molecular diagnosis of DFNB12 and USH1D."	"Cadherin 23 and protocadherin 15 interact to form tip-link filaments in sensory hair cells. Hair cells of the inner ear are mechanosensors that transduce mechanical forces arising from sound waves and head movement into electrochemical signals to provide our sense of hearing and balance. Each hair cell contains at the apical surface a bundle of stereocilia. Mechanoelectrical transduction takes place close to the tips of stereocilia in proximity to extracellular tip-link filaments that connect the stereocilia and are thought to gate the mechanoelectrical transduction channel. Recent reports on the composition, properties and function of tip links are conflicting. Here we demonstrate that two cadherins that are linked to inherited forms of deafness in humans interact to form tip links. Immunohistochemical studies using rodent hair cells show that cadherin 23 (CDH23) and protocadherin 15 (PCDH15) localize to the upper and lower part of tip links, respectively. The amino termini of the two cadherins co-localize on tip-link filaments. Biochemical experiments show that CDH23 homodimers interact in trans with PCDH15 homodimers to form a filament with structural similarity to tip links. Ions that affect tip-link integrity and a mutation in PCDH15 that causes a recessive form of deafness disrupt interactions between CDH23 and PCDH15. Our studies define the molecular composition of tip links and provide a conceptual base for exploring the mechanisms of sensory impairment associated with mutations in CDH23 and PCDH15."	"Deafblindness in French Canadians from Quebec: a predominant founder mutation in the USH1C gene provides the first genetic link with the Acadian population. Usher syndrome type 1 (USH1) is the leading cause of deafblindness. In most populations, many private mutations are distributed across the five known USH1 genes. We investigated patients from the French Canadian population of Quebec (approximately 6 million people) that descends from about 8,500 French settlers who colonized the St Lawrence River valley between 1608 and 1759. We hypothesized that founder mutations in USH1 genes exist in this population. We have genetically characterized 15 patients from different regions of Quebec who were clinically diagnosed as USH1. Of these cases, 60% carried mutations of the USH1C gene, a genetic subtype that is rare outside the Acadian population. We have discovered a founder effect of the c.216G&gt;A mutation, which has previously been designated the 'Acadian allele' because it accounts for virtually all Acadian USH1 cases. It represents 40% of disease alleles in Quebec, and a carrier of c.216G&gt;A was identified in the general population. Mutations in other genes, except CDH23, are very rare. Based on our findings, approximately 0.5% of congenitally deaf children in Quebec are at risk of developing retinal degeneration due to homozygosity for c.216G&gt;A. Although the Acadians and French Canadians from Quebec are descended from French ancestors, they have always been considered genetically distinct. The genetic conditions common in Quebec are generally not found in Acadians, or they are due to different mutations. Our results, however, show that carriers of the c.216G&gt;A allele haplotype belonged to the early founders of both the Acadian and the Quebec population."	"Metabotropic glutamate receptors in the lateral superior olive activate TRP-like channels: age- and experience-dependent regulation. The lateral superior olive (LSO) is the primary auditory nucleus for processing of interaural sound level differences, which is one of the major cues for sound localization. During development, survival and maturation of LSO neurons critically depend on synaptic activity and intracellular calcium signaling. Before hearing onset, glutamatergic synaptic inputs from the cochlear nucleus (CN) to the LSO activate group I metabotropic glutamate receptors (mGluRs), which leads to calcium release from intracellular stores and large calcium influx from the extracellular milieu. Here, we investigated the nature of the mGluR-activated membrane channel that mediates the influx of extracellular calcium. Using Fura-2 calcium imaging in brain stem slices of neonatal and juvenile mice, we found that this calcium channel is blocked by Ni(2+), La(3+), and 2-aminoethoxydiphenylborane (2-APB), known antagonists of transient receptor potential (TRP) channels. During postnatal development, the contribution of extracellular calcium influx to mGluR-mediated Ca(2+) responses gradually decreased and was almost abolished by the end of the third postnatal week. Over this period, the contribution of Ca(2+) release from internal stores remained unchanged. The developmental decrease of TRP-like channel-mediated calcium influx was significantly less in congenitally deaf waltzer mice, suggesting that early auditory experience is necessary for the normal age-dependent downregulation of functional TRP channels."	"Fine mapping of Ahl3 affecting both age-related and noise-induced hearing loss. A region in the vicinity of D17Mit119 on mouse chromosome 17 harbors a susceptibility gene, designated as Ahl3, to age-related hearing loss (AHL). We produced congenic lines of C57BL/6 background that substituted regions around D17Mit119 with MSM-derived ones, and examined auditory brainstem response (ABR) thresholds for their hearing capacity at 6 and 12months of age. Three congenic lines carrying the approximately 14-Mb region between D17Mit274 and D17Mit183 retained normal hearing at 12months of age whereas two congenic lines not carrying this region tended to lose hearing at that age. We also investigated noise-induced hearing loss (NIHL) in congenic lines at 1, 7 and 14days after exposure to the noise of 100dB for 1h. Most congenic mice carrying the 14-Mb region did not exhibit permanent threshold shift (PTS) whereas mice not carrying this region exhibited a strong tendency of PTS, indicating the role of Ahl3 in susceptibility to NIHL. These results indicate that Ahl3 exists within the 14-Mb region and affects not only AHL but also NIHL."	"[Genetic factors in susceptibility to age- and noise-related hearing loss]. Individual susceptibility to age-related hearing loss (AHL) and noise-induced hearing loss (NIHL) varies greatly, and this inter-individual variation is due to an interaction of environmental factors, individual factors, and susceptibility genes. Majority of studies on susceptibility genes for AHL and NIHL have been performed in mice model. These findings suggest the role of the same genes in the development of AHL and NIHL, the more so as the pathogenesis of both diseases is similar with a crucial role of oxidative stress. The alleles responsible for AHL have been localized to the chromosome 10 (Ahl gene). Ahl-/- mice develop hearing impairment at early age and are also oversensitive to noise. Ahl gene is a recessive gene and it is probably responsible for the synthesis of cell junction proteins. In mice ahl codes for cadherin (CDH) proteins. The cadherin of interest is named otocadherin or CDH23, and it is localized to the links between stereocilia of hair cells. A hypomorphic 753G&gt;A single nucleotide polymorphism (SNP) in Cdh 23 is associated with AHL, and the 753A variant is also correlated with susceptibility to NIHL. An increased susceptibility to AHL and NIHL may rely on the SNPs of several other genes, including the groups of oxidative stress genes, K+ ions recycling genes, monogenic deafness genes (including Connexin 26 gene, which mutation is responsible for the most frequent hereditary deafness in Caucasians), as well as mitochondrial genes. Several oxidative stress enzyme (sod1-/-, gpx -/-) knock-out mice have been shown to be more susceptible to NIHL than wild strains. Current large-scale cohort studies on AHL and NIHL performed under the European projects in between-lab collaboration along with a dynamic progress in the field of genetics of deafness open up new opportunities to find human AHL and NIHL susceptibility genes and develop methods for AHUNIHL treatment."	"Genetic dependence of cochlear cells and structures injured by noise. The acute and permanent effects of a single damaging noise exposure were compared in CBA/J, C57BL/6 (B6), and closely related strains of mice. Two hours of broadband noise (4-45 kHz) at 110 dB SPL led to temporary reduction in the endocochlear potential (EP) of CBA/J and CBA/CaJ (CBA) mice and acute cellular changes in cochlear stria vascularis and spiral ligament. For the same exposure, B6 mice showed no EP reduction and little of the pathology seen in CBA. Eight weeks after exposure, all mice showed a normal EP, but only CBA mice showed injury and cell loss in cochlear lateral wall, despite the fact that B6 sustained larger permanent threshold shifts. Examination of noise injury in B6 congenics carrying alternate alleles of genes encoding otocadherin (Cdh23), agouti protein, and tyrosinase (albinism) indicated that none of these loci can account for the strain differences observed. Examination of CBA x B6 F1 mice and N2 backcross mice to B6 further indicated that susceptibility to noise-related EP reduction and associated cell pathology are inherited in an autosomal dominant manner, and are established by one or a few large effect quantitative trait loci. Findings support a common genetic basis for an entire constellation of noise-related cochlear pathologies in cochlear lateral wall and spiral limbus. Even within species, cellular targets of acute and permanent cochlear noise injury may vary with genetic makeup."	"Temporal and genetic influences on protection against noise-induced hearing loss by hypoxic preconditioning in mice. The protective benefits of hypoxic preconditioning (HPC) against permanent noise-induced hearing loss (NIHL) were investigated in mice. Hypoxia induced by exposure to 8% O2 for 4 h conferred significant protection against damaging broadband noise delivered 24-48 h later in male and female CBA/J (CBA) and CBA/CaJ mice. No protection was found in C57BL/6 (B6) mice, their B6.CAST-Cdh23(CAST) (B6.CAST) congenics, or in CBAxB6 F1 hybrid mice over the same interval, suggesting that the potential for HPC depends on one or a few autosomal recessive alleles carried by CBA-related strains, and is not influenced by the Cdh23 locus. Protection against NIHL in CBA mice was associated with significant up-regulation of hypoxia-inducible factor-1alpha (HIF-1alpha) within the organ of Corti, not found in B6.CAST. In both CBA and B6.CAST mice, some hypoxia-noise intervals shorter than 24 h were associated with exacerbation of NIHL. Cellular cascades underlying the early exacerbation of NIHL by hypoxia are therefore common to both strains, and not mechanistically linked to later protection. Elucidation of the events that underlie HPC, and how these are impacted by genetics, may lead to pharmacologic approaches to mimic HPC, and may help identify individuals with elevated risk of NIHL."	"Stereociliary myosin-1c receptors are sensitive to calcium chelation and absent from cadherin 23 mutant mice. The identities of some of the constituents of the hair-cell transduction apparatus have been elucidated only recently. The molecular motor myosin-1c (Myo1c) functions in adaptation of the hair-cell response to sustained mechanical stimuli and is therefore an integral part of the transduction complex. Recent data indicate that Myo1c interacts in vitro with two other molecules proposed to be important for transduction: cadherin 23 (Cdh23), a candidate for the stereociliary tip link, and phosphatidylinositol 4,5-bisphosphate (PIP2), which is abundant in the membranes of hair-cell stereocilia. It is not known, however, whether these interactions occur in hair cells. Using an in situ binding assay on saccular hair cells, we demonstrated previously that Myo1c interacts with molecules at stereociliary tips, the site of transduction, through sequences contained within its calmodulin (CaM)-binding neck domain, which can bind up to four CaM molecules. In the current study, we identify the second CaM-binding IQ domain as a region of Myo1c that mediates CaM-sensitive binding to stereociliary tips and to PIP2 immobilized on a solid support. Binding of Myo1c to stereociliary tips of cochlear and vestibular hair cells is disrupted by treatments that break tip links. In addition, Myo1c does not bind to stereocilia from mice whose hair cells lack Cdh23 protein despite the presence of PIP2 in the stereociliary membranes. Collectively, our data suggest that Myo1c and Cdh23 interact at the tips of hair-cell stereocilia and that this interaction is modulated by CaM."	"Survey of the frequency of USH1 gene mutations in a cohort of Usher patients shows the importance of cadherin 23 and protocadherin 15 genes and establishes a detection rate of above 90%. Usher syndrome, a devastating recessive disorder which combines hearing loss with retinitis pigmentosa, is clinically and genetically heterogeneous. Usher syndrome type 1 (USH1) is the most severe form, characterised by profound congenital hearing loss and vestibular dysfunction. To describe an efficient protocol which has identified the mutated gene in more than 90% of a cohort of patients currently living in France. The five genes currently known to cause USH1 (MYO7A, USH1C, CDH23, PCDH15, and USH1G) were tested for. Disease causing mutations were identified in 31 of the 34 families referred: 17 in MYO7A, 6 in CDH23, 6 in PCDH15, and 2 in USH1C. As mutations in genes other than myosin VIIA form nearly 50% of the total, this shows that a comprehensive approach to sequencing is required. Twenty nine of the 46 identified mutations were novel. In view of the complexity of the genes involved, and to minimise sequencing, a protocol for efficient testing of samples was developed. This includes a preliminary linkage and haplotype analysis to indicate which genes to target. It proved very useful and demonstrated consanguinity in several unsuspected cases. In contrast to CDH23 and PCDH15, where most of the changes are truncating mutations, myosin VIIA has both nonsense and missense mutations. Methods for deciding whether a missense mutation is pathogenic are discussed. Diagnostic testing for USH1 is feasible with a high rate of detection and can be made more efficient by selecting a candidate gene by preliminary linkage and haplotype analysis."	"Contributions of mouse models to understanding of age- and noise-related hearing loss. Once an oddity, mice have become the most widely used hearing research model. Their value for research in noise-induced hearing loss (NIHL) stems from their high vulnerability to noise and reduced variance of results, made possible by genetic standardization. To research in age-related hearing loss (ARHL), they offer economies of small size and a short lifespan, both of which reduce housing costs. Inbred mouse strains show a wide range of noise sensitivities and rates of hearing loss with age. These can be studied using classical genetic analysis, as well as hypothesis-driven experiments utilizing genetic engineering. Through such investigations, presently 3 loci have been identified to date that contribute to NIHL, 10 that promote ARHL, and at least 6 loci that promote both. The types of genes involved implicate homeostatic and protective mechanisms as key to the appearance of either type of pathology and support a causal link between injury and some apparent ARHL. While the majority of mouse ARHL models examined most closely resemble sensory ARHL, recent work has identified mice possessing the essential characteristics of neural and strial ARHL. Using these models, it should be possible to identify genes and alleles that promote the major forms of ARHL and their combinations."	"[Association of cadherin CDH23 gene polymorphisms with noise induced hearing loss in Chinese workers]. To investigate the association of cadherin 23 gene (CDH23) polymorphisms with the development of noise induced hearing loss (NIHL). 194 workers exposed to occupational noise were drawn as the subjects in the cross-sectional epidemiology study. According to the result of audiometry, they were divided into two groups: the NIHL group and the normal group. The genotypes of 93 workers with NIHL and 101 normal workers were tested by polymerase chain reaction followed by restriction fragment polymorphism analysis (PCR-RFLP). There were no significant difference in the distribution of genotypes and alleles frequencies of the rs1227049 and rs1227051 positions between NIHL group and normal group (P &gt; 0.05), there were significant differences between the two groups in the rs3802711 position and the terminal position of exon 7 (P &lt; 0.01). After adjusted for age, sex, smoking, history of explosive noise exposure and cumulative noise exposure (CNE) with multiple logistic regression analysis, the risk of rs1227049 CC genotype was found significantly increased than that of the GG genotype, the OR value of which was 3.865 (95% CI 1.076 - 13.886), the risk of rs3802711 TT genotype was significantly higher than that of the CT genotype, the OR value of which was 6.088 (95% CI 2.485 - 14.917). GG genotype in the terminal position of exon 7 was also found a significantly higher risk than the AG genotype, the OR value of which was 5.769 (95% CI 2.745 - 12.121). It was suggested that genetic polymorphism in cadherin CDH23 gene might play an important role in the development of NIHL in Chinese workers. The individuals with the rs1227049 CC genotype, rs3802711 TT genotype and GG genotype in the terminal position of exon 7 might be more susceptible to NIHL."	"Strain background effects and genetic modifiers of hearing in mice. Genetic modifiers can be detected in mice by looking for strain background differences in inheritance or phenotype of a mutation. They can be mapped by analyses of appropriate linkage crosses and congenic lines, and modifier genes of large effect can be identified by positional-candidate gene testing. Inbred strains of mice vary widely in onset and severity of age-related hearing loss (AHL), an important consideration when assessing hearing in mutant mice. At least 8 mapped loci and a mitochondrial variant (mt-Tr) are known to contribute to AHL in mouse strains; one locus (ahl) has been identified as a variant of the cadherin 23 gene (Cdh23(753A/G)). This variant also was shown to modify hearing loss associated with the Atp2b2(dfw-2J) and Mass1(frings) mutations. The hearing modifier (Moth1) of tubby (Tub(tub)) mutant mice was shown to be a strain variant of the Mtap1a gene. Human hearing modifiers include DFNM1, which suppresses recessive deafness DFNB26, and a nuclear gene that modulates the severity of hearing loss associated with a mitochondrial mutation. Recently, a variant of the human ATP2B2 gene was shown to exacerbate hearing loss in individuals homozygous for a CDH23 mutation, similar to the Atp2b2(dfw-2J)-Cdh23(753A/G) interaction affecting hearing in mice. Because modifier genes and digenic inheritance are not always distinguishable, we also include in this review several examples of digenic inheritance of hearing loss that have been reported in both mice and humans."	"Genetics of hearing loss: Allelism and modifier genes produce a phenotypic continuum. Recent genetic and genomic studies have greatly advanced our knowledge of the structure and function of genes involved in hearing loss. We are starting to recognize, however, that many of these genes do not appear to follow traditional Mendelian expression patterns and are subject to the effects of allelism and modifier genes. This review presents two genes illustrative of this concept that have varied expression pattern such that they may produce either syndromic or nonsyndromic hearing loss. One of these genes, cadherin 23, produces a spectrum of phenotypic traits, including presbycusis, nonsyndromic prelingual hearing loss (DFNB12), and syndromic hearing loss as part of Usher syndrome (Usher 1D). Missense mutations in CDH23 have been associated with presbycusis and DFNB12, whereas null alleles cause the majority of Usher 1D. Modifier gene products that interact with cadherin 23 also affect the phenotypic spectrum. Similarly, allelsim in the gene encoding wolframin (WFS1) causes either a nonsyndromic dominant low-frequency hearing loss (DFNA6/14/38) or Wolfram syndrome. Missense mutations within a defined region are associated with DFNA6/14/38, while more severe mutations spanning WFS1 are found in Wolfram syndrome patients. The phenotypic spectrum of Wolfram syndrome is also hypothesized to be influenced by modifier genes products. These studies provide increasing evidence for the importance of modifier genes in elucidating the functional pathways of primary hearing loss genes. Characterizing modifier genes may result in better treatment options for patients with hearing loss and define new diagnostic and therapeutic targets."	"Molecular basis of human Usher syndrome: deciphering the meshes of the Usher protein network provides insights into the pathomechanisms of the Usher disease. Usher syndrome (USH) is the most frequent cause of combined deaf-blindness in man. It is clinically and genetically heterogeneous and at least 12 chromosomal loci are assigned to three clinical USH types, namely USH1A-G, USH2A-C, USH3A (Davenport, S.L.H., Omenn, G.S., 1977. The heterogeneity of Usher syndrome. Vth Int. Conf. Birth Defects, Montreal; Petit, C., 2001. Usher syndrome: from genetics to pathogenesis. Annu. Rev. Genomics Hum. Genet. 2, 271-297). Mutations in USH type 1 genes cause the most severe form of USH. In USH1 patients, congenital deafness is combined with a pre-pubertal onset of retinitis pigmentosa (RP) and severe vestibular dysfunctions. Those with USH2 have moderate to severe congenital hearing loss, non-vestibular dysfunction and a later onset of RP. USH3 is characterized by variable RP and vestibular dysfunction combined with progressive hearing loss. The gene products of eight identified USH genes belong to different protein classes and families. There are five known USH1 molecules: the molecular motor myosin VIIa (USH1B); the two cell-cell adhesion cadherin proteins, cadherin 23 (USH1D) and protocadherin 15, (USH1F) and the scaffold proteins, harmonin (USH1C) and SANS (USH1G). In addition, two USH2 genes and one USH3A gene have been identified. The two USH2 genes code for the transmembrane protein USH2A, also termed USH2A (&quot;usherin&quot;) and the G-protein-coupled 7-transmembrane receptor VLGR1b (USH2C), respectively, whereas the USH3A gene encodes clarin-1, a member of the clarin family which exhibits 4-transmembrane domains. Molecular analysis of USH1 protein function revealed that all five USH1 proteins are integrated into a protein network via binding to PDZ domains in the USH1C protein harmonin. Furthermore, this scaffold function of harmonin is supported by the USH1G protein SANS. Recently, we have shown that the USH2 proteins USH2A and VLGR1b as well as the candidate for USH2B, the sodium bicarbonate co-transporter NBC3, are also integrated into this USH protein network. In the inner ear, these interactions are essential for the differentiation of hair cell stereocilia but may also participate in the mechano-electrical signal transduction and the synaptic function of maturated hair cells. In the retina, the co-expression of all USH1 and USH2 proteins at the synapse of photoreceptor cells indicates that they are organized in an USH protein network there. The identification of the USH protein network indicates a common pathophysiological pathway in USH. Dysfunction or absence of any of the molecules in the mutual &quot;interactome&quot; related to the USH disease may lead to disruption of the network causing senso-neuronal degeneration in the inner ear and the retina, the clinical symptoms of USH."	"Mapping quantitative trait loci for hearing loss in Black Swiss mice. In common inbred mouse strains, hearing loss is a highly prevalent quantitative trait, which is mainly controlled by the Cdh23(753A) variant and alleles at numerous other strain-specific loci. Here, we investigated the genetic basis of hearing loss in non-inbred strains. Mice of Swiss Webster, CF-1, NIH Swiss, ICR, and Black Swiss strains exhibited hearing profiles characteristic of progressive, sensorineural hearing impairment. In particular, CF-1, Black Swiss, and NIH Swiss mice showed early-onset hearing impairment, ICR and Swiss Webster mice expressed a delayed-onset hearing loss, and NMRI mice had normal hearing. By quantitative trait locus (QTL) mapping, two significant QTLs were identified underlying hearing loss in Black Swiss mice: one QTL mapped to chromosome (chr) 10 (named ahl5, LOD 8.9, peak association 35-42 cM) and a second QTL localized to chr 18 (ahl6, LOD 3.8, 38-44 cM). Ahl5 and ahl6 account for 61% and 32% of the variation in the backcross, respectively. Cadherin 23 (Cdh23) and protocadherin 15 (Pcdh15), mapping within the 95% confidence interval of ahl5, bear nucleotide polymorphisms in coding exons, but these appear to be unrelated to the hearing phenotype. Haplotype analyses across the Cdh23 locus demonstrated the phylogenetic relationship between Black Swiss and common inbred strains."	"Protocadherin-21 (PCDH21), a candidate gene for human retinal dystrophies. It has been demonstrated that mice lacking a functional copy of prCAD, the gene encoding protocadherin-21, show progressive photoreceptor degeneration. Therefore we searched for a human retinal phenotype associated with mutations in the orthologous human gene, PCDH21. We characterized the genomic organization of human PCDH21 and performed mutation screening in 224 patients with autosomal recessive retinitis pigmentosa, 29 patients with Leber congenital amaurosis, and 26 patients with Usher syndrome type 1. PCDH21 spans 23 kb, consists of 17 exons, and encodes a protein that shows close phylogenetic relationship to cadherin-23 (CDH23), the protein involved in Usher syndrome type 1D. In a total of three unrelated patients, we identified two different heterozygous missense changes (p.A212T and p.P532A), affecting evolutionarily conserved residues, that were not found in 100 unaffected controls. A second mutation allele was not detected. A novel intragenic microsatellite marker was identified. PCDH21 mutations are not a major cause of the retinal diseases investigated herein, and the corresponding human phenotype remains to be determined. Our data may facilitate future investigations of patients with various (other) forms of inherited retinal dystrophy."	"Fates of Cdh23/CDH23 with mutations affecting the cytoplasmic region. BUS/Idr mice carrying a mutant waltzer allele (vbus) are characterized by splayed hair bundles in inner ear sensory cells, providing a mouse homolog of USH1D/DFNB12. RT-PCR-based screening for the presence of mutations in mouse Cdh23, the gene responsible for the waltzer phenotype, has identified a G&gt;A mutation in the donor splice site of intron 67 (Cdh23:c.9633+1G&gt;A: GenBank AF308939.1), indicating that two altered Cdh23 molecules having intron-derived COOH-terminal structures could be generated in BUS mouse tissues. Immunochemical analyses with anti-Cdh23 antibodies showed, however, no clear Cdh23-related proteins in vbus/vbus tissues, while the antibodies immunoreacted with approximately 350 kDa proteins in control mice. Immunofluorescent experiments revealed considerable weakening of Cdh23 signals in sensory hair cell stereocilia and Reissner's membrane in the vbus/vbus inner ear, and transmission electron microscopy demonstrated abundant autophagosome/autolysosome vesicles, suggesting aberrant Cdh23:c.9633+1G&gt;A-derived protein-induced acceleration of lysosomal bulk degradation of proteins. In transfection experiments, signal sequence-preceded FLAG-tagged transmembrane plus cytoplasmic regions (TMCy) of tissue-specific Cdh23(+/-68) isoforms were localized to filamentous actin-rich protrusions and the plasma membrane of cultured cells, whereas FLAG-TMCy:c.9633+1G&gt;A proteins were highly insoluble and retained in the cytoplasm. In contrast, FLAG-tagged TMCy:p.Arg3175His and human TMCy:c.9625_9626insC forms were both localized to the plasma membrane in cultured cells, allowing prediction that USH1D-associated CDH23:p.Arg3175His and CDH23:c.9625_9626insC proteins could be transported to the plasma membrane in vivo. The present results thus suggest different fates of CDH23/Cdh23 with mutations affecting the cytoplasmic region."	"Have we found the tip link, transduction channel, and gating spring of the hair cell? Recent reports have offered candidates for key components of the apparatus used for mechanotransduction in hair cells. TRPA1 and cadherin 23 have been proposed to be the transduction channel and component of the tip link, respectively; moreover, ankyrin repeats in TRPA1 have been proposed to be the gating spring. Although these are excellent candidates for the three components, definitive experiments supporting each identification have yet to be performed."	"Sustained cadherin 23 expression in young and adult cochlea of normal and hearing-impaired mice. Cadherin 23 encodes a single-pass transmembrane protein with 27 extracellular cadherin-domains and localizes to stereocilia where it functions as an inter-stereocilia link. Cadherin 23-deficient mice show congenital deafness in combination with circling behavior as a result of organizational defects in the stereocilia hair bundle; common inbred mouse strains carrying the hypomorphic Cdh23(753A) allele are highly susceptible to sensorineural hearing loss. Here, we show that an antibody (N1086) directed against the intracellular carboxyterminus reacts specifically with cadherin 23 and detects with high sensitivity the isoform devoid of the peptide encoded by exon 68 (CDH23Delta68). Cochlea, vestibule, eye, brain and testis produce the CDH23Delta68 isoform in abundance and form moieties with different molecular weight due to variations in glycosylation content. In the cochlea, CDH23Delta68 expression is highest at postnatal day 1 (P1) and P7; expression is down regulated through P14 and P21 and persists at a low steady-state level throughout adulthood (P160). Furthermore, CDH23Delta68 expression levels in young and adult cochlea are similar among normal and hearing deficient strains (C3HeB/FeJ, C57BL/6J and BUB/BnJ). Finally, by immunofluorescence using an antibody (Pb240) specific for ectodomain 14, we show that cadherin 23 localizes to stereocilia during hair bundle development in late gestation and early postnatal days. Cadherin 23-specific labeling becomes weaker as the hair bundle matures but faint labeling concentrated near the top of stereocilia is still detectable at P35. No labeling of cochlea stereocilia was observed with N1086. In conclusion, our data describe a cadherin 23-specific antibody with high affinity to the CDH23Delta68 isoform, reveal a dynamic cochlea expression and localization profile and show sustained cadherin 23 levels in adult cochlea of normal and hearing-impaired mice."	"Photoreceptor expression of the Usher syndrome type 1 protein protocadherin 15 (USH1F) and its interaction with the scaffold protein harmonin (USH1C). The human Usher syndrome (USH) is the most common form of deaf-blindness. Usher type I (USH1), the most severe form, is characterized by profound congenital deafness, constant vestibular dysfunction and prepubertal onset of retinitis pigmentosa. Five corresponding genes of the seven USH1 genes have been cloned over the years. Recent studies indicated that three USH1 proteins, namely myosin VIIa (USH1B), SANS (USH1G), and cadherin 23 (USH1D) interact with the USH1C gene product harmonin. In these protein-protein complexes harmonin acts as the scaffold protein binding these USH1 molecules via its PDZ domains. The aim of the present study was to analyze whether or not the fifth identified USH1 protein protocadherin 15 (Pcdh15) also binds to harmonin and where these putative protein complexes might be localized in mammalian rod and cone photoreceptor cells. In vitro binding assays (GST pull-down, yeast two-hybrid assay) were applied. Antibodies against bacterial expressed USH1 proteins were generated. Affinity purified antibodies were used in immunoblot analyses of brain fractions and isolated retinas, in immunofluorescence studies, and in immunoelectron microscopic studies of rodent retinas. We showed that Pcdh15 (USH1F) interacted with harmonin PDZ2. Immunocytochemistry revealed that Pcdh15 is expressed in photoreceptor cells of the mammalian retina, where it is colocalized with harmonin, myosin VIIa, and cadherin 23 at the synaptic terminal. Colocalization of Pcdh15 with harmonin was found at the base of the photoreceptor outer segment, where newly synthesized disk membranes are present. Our data indicate that harmonin-Pcdh15 interactions probably play a role in disk morphogenesis. Furthermore, we provide evidence that a complex composed of all USH1 molecules may assemble at the photoreceptor synapse. This USH protein complex can contribute to the cortical cytoskeletal matrices of the pre- and postsynaptic regions, which are thought to play a fundamental role in the structural and functional organization of the synaptic junction. Defects in any of the USH1-complex partners may result in photoreceptor dysfunction causing retinitis pigmentosa, the clinical phenotype in the retina of USH1 patients."	"Spatiotemporal pattern and isoforms of cadherin 23 in wild type and waltzer mice during inner ear hair cell development. Mutant alleles of the gene encoding cadherin 23 are associated with Usher syndrome type 1 (USH1D), isolated deafness (DFNB12) in humans, and deafness and circling behavior in waltzer (v) mice. Stereocilia of waltzer mice are disorganized and the kinocilia misplaced, indicating the importance of cadherin 23 for hair bundle development. Cadherin 23 was localized to developing stereocilia and proposed as a component of the tip link. We show that, during development of the inner ear, cadherin 23 is initially detected in centrosomes at E14.5, then along the length of emerging stereocilia, and later becomes concentrated at and subsequently disappears from the tops of stereocilia. In mature vestibular hair bundles, cadherin 23 is present along the kinocilium and in the region of stereocilia-kinocilium bonds, a pattern conserved in mammals, chicks, and frogs. Cadherin 23 is also present in Reissner's membrane (RM) throughout development. In homozygous v(6J) mice, a reported null allele, cadherin 23 was absent from stereocilia, but present in kinocilia, RM, and centrosomes. We reconciled these results by identifying two novel isoforms of Cdh23 unaffected in sequence and expression by the v(6J) allele. Our results suggest that Cdh23 participation in stereocilia links may be restricted to developing hair bundles."	"Cadherin 23 is a component of the transient lateral links in the developing hair bundles of cochlear sensory cells. Cadherin 23 is required for normal development of the sensory hair bundle, and recent evidence suggests it is a component of the tip links, filamentous structures thought to gate the hair cells' mechano-electrical transducer channels. Antibodies against unique peptide epitopes were used to study the properties of cadherin 23 and its spatio-temporal expression patterns in developing cochlear hair cells. In the rat, intra- and extracellular domain epitopes are readily detected in the developing hair bundle between E18 and P5, and become progressively restricted to the distal tip of the hair bundle. From P13 onwards, these epitopes are no longer detected in hair bundles, but immunoreactivity is observed in the apical, vesicle-rich, pericuticular region of the hair cell. In the P2-P3 mouse cochlea, immunogold labeling reveals cadherin 23 is associated with kinocilial links and transient lateral links located between and within stereociliary rows. At this stage, the cadherin 23 ectodomain epitope remains on the hair bundle following BAPTA or La(3+) treatment, but is lost following exposure to the protease subtilisin. In contrast, mechano-electrical transduction is abolished by BAPTA but unaffected by subtilisin. These results suggest cadherin 23 is associated with transient lateral links that have properties distinct from those of the tip-link."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Listening to genetic background noise. NA"	"Modification of human hearing loss by plasma-membrane calcium pump PMCA2. Five adult siblings presented with autosomal recessive sensorineural hearing loss: two had high-frequency loss, whereas the other three had severe-to-profound loss affecting all frequencies. Genetic evaluation revealed that a homozygous mutation in CDH23 (which encodes cadherin 23) caused the hearing loss in all five siblings and that a heterozygous, hypofunctional variant (V586M) in plasma-membrane calcium pump PMCA2, which is encoded by ATP2B2, was associated with increased loss in the three severely affected siblings. V586M was detected in two unrelated persons with increased sensorineural hearing loss, in the other caused by a mutation in MYO6 (which encodes myosin VI) in one and by noise exposure, suggesting that this variant may modify the severity of sensorineural hearing loss caused by a variety of factors."	"The Mass1frings mutation underlies early onset hearing impairment in BUB/BnJ mice, a model for the auditory pathology of Usher syndrome IIC. The human ortholog of the gene responsible for audiogenic seizure susceptibility in Frings and BUB/BnJ mice (mouse gene symbol Mass1) recently was shown to underlie Usher syndrome type IIC (USH2C). Here we report that the Mass1frings mutation is responsible for the early onset hearing impairment of BUB/BnJ mice. We found highly significant linkage of Mass1 with ABR threshold variation among mice from two backcrosses involving BUB/BnJ mice with mice of strains CAST/EiJ and MOLD/RkJ. We also show an additive effect of the Cdh23 locus in modulating the progression of hearing loss in backcross mice. Together, these two loci account for more than 70% of the total ABR threshold variation among the backcross mice at all ages. The modifying effect of the strain-specific Cdh23ahl variant may account for the hearing and audiogenic seizure differences observed between Frings and BUB/BnJ mice, which share the Mass1frings mutation. During postnatal cochlear development in BUB/BnJ mice, stereocilia bundles develop abnormally and remain immature and splayed into adulthood, corresponding with the early onset hearing impairment associated with Mass1frings. Progressive base-apex hair cell degeneration occurs at older ages, corresponding with the age-related hearing loss associated with Cdh23ahl. The molecular basis and pathophysiology of hearing loss suggest BUB/BnJ and Frings mice as models to study cellular and molecular mechanisms underlying USH2C auditory pathology."	"Requirement of nicotinic acetylcholine receptor subunit beta2 in the maintenance of spiral ganglion neurons during aging. Age-related hearing loss (presbycusis) is a major health concern for the elderly. Loss of spiral ganglion neurons (SGNs), the primary sensory relay of the auditory system, is associated consistently with presbycusis. The causative molecular events responsible for age-related loss of SGNs are unknown. Recent reports directly link age-related neuronal loss in cerebral cortex with the loss of high-affinity nicotine acetylcholine receptors (nAChRs). In cochlea, cholinergic synapses are made by olivocochlear efferent fibers on the outer hair cells that express alpha9 nAChR subunits and on the peripheral projections of SGNs that express alpha2, alpha4-7, and beta2-3 nAChR subunits. A significantly decreased expression of the beta2 nAChR subunit in SGNs was found specifically in mice susceptible to presbycusis. Furthermore, mice lacking the beta2 nAChR subunit (beta2-/-), but not mice lacking the alpha5 nAChR subunit (alpha5-/-), have dramatic hearing loss and significant reduction in the number of SGNs. Our findings clearly established a requirement for beta2 nAChR subunit in the maintenance of SGNs during aging."	"Characterization of Usher syndrome type I gene mutations in an Usher syndrome patient population. Usher syndrome type I (USH1), the most severe form of this syndrome, is characterized by profound congenital sensorineural deafness, vestibular dysfunction, and retinitis pigmentosa. At least seven USH1 loci, USH1A-G, have been mapped to the chromosome regions 14q32, 11q13.5, 11p15, 10q21-q22, 21q21, 10q21-q22, and 17q24-25, respectively. Mutations in five genes, including MYO7A, USH1C, CDH23, PCDH15 and SANS, have been shown to be the cause of Usher syndrome type 1B, type 1C, type 1D, type 1F and type 1G, respectively. In the present study, we carried out a systematic mutation screening of these genes in USH1 patients from USA and from UK. We identified a total of 27 different mutations; of these, 19 are novel, including nine missense, two nonsense, four deletions, one insertion and three splicing defects. Approximatelly 35-39% of the observed mutations involved the USH1B and USH1D genes, followed by 11% for USH1F and 7% for USH1C in non-Acadian alleles and 7% for USH1G. Two of the 12 MYO7A mutations, R666X and IVS40-1G &gt; T accounted for 38% of the mutations at that locus. A 193delC mutation accounted for 26% of CDH23 (USH1D) mutations, confirming its high frequency. The most common PCDH15 (USH1F) mutation in this study, 5601-5603delAAC, accounts for 33% of mutant alleles. Interestingly, a novel SANS mutation, W38X, was observed only in the USA cohort. The present study suggests that mutations in MYO7A and CDH23 are the two major components of causes for USH1, while PCDH15, USH1C, and SANS are less frequent causes."	"Interactions in the network of Usher syndrome type 1 proteins. Defects in myosin VIIa, harmonin (a PDZ domain protein), cadherin 23, protocadherin 15 and sans (a putative scaffolding protein), underlie five forms of Usher syndrome type I (USH1). Mouse mutants for all these proteins exhibit disorganization of their hair bundle, which is the mechanotransduction receptive structure of the inner ear sensory cells, the cochlear and vestibular hair cells. We have previously demonstrated that harmonin interacts with cadherin 23 and myosin VIIa. Here we address the extent of interactions between the five known USH1 proteins. We establish the previously suggested sans-harmonin interaction and find that sans also binds to myosin VIIa. We show that sans can form homomeric structures and that harmonin b can interact with all harmonin isoforms. We reveal that harmonin also binds to protocadherin 15. Molecular characterization of these interactions indicates that through its binding to four of the five USH1 proteins, the first PDZ domain (PDZ1) of harmonin plays a central role in this network. We localize sans in the apical region of cochlear and vestibular hair cell bodies underneath the cuticular plate. In contrast to the other four known USH1 proteins, no sans labeling was detected within the stereocilia. We propose that via its binding to myosin VIIa and/or harmonin, sans controls the hair bundle cohesion and proper development by regulating the traffic of USH1 proteins en route to the stereocilia."	"Digenic inheritance of deafness caused by mutations in genes encoding cadherin 23 and protocadherin 15 in mice and humans. Mutations in genes coding for cadherin 23 and protocadherin 15 cause deafness in both mice and humans. Here, we provide evidence that mutations at these two cadherin loci can interact to cause hearing loss in digenic heterozygotes of both species. Using a classical genetic approach, we generated mice that were heterozygous for both Cdh23 and Pcdh15 mutations on a uniform C57BL/6J background. Significant levels of hearing loss were detected in these mice when compared to age-matched single heterozygous animals or normal controls. Cytoarchitectural defects in the cochlea of digenic heterozygotes, including degeneration of the stereocilia and a base-apex loss of hair cells and spiral ganglion cells, were consistent with the observed age-related hearing loss of these mice beginning with the high frequencies. In humans, we also have obtained evidence for a digenic inheritance of a USH1 phenotype in three unrelated families with mutations in CDH23 and PCDH15. Altogether, our data indicate that CDH23 and PCDH15 play an essential long-term role in maintaining the normal organization of the stereocilia bundle."	"Variable clinical features in patients with CDH23 mutations (USH1D-DFNB12). To describe the findings of audiovestibular and ophthalmologic examinations in four families with mutations in the CDH23 gene. Family study. Tertiary referral center. Four DFNB12 patients from a large consanguineous Dutch family and six patients from three different Usher syndrome Type ID families were examined. All were identified by at least one pathogenic mutation in the CDH23 gene. Audiovestibular examinations consisted of standard pure-tone audiometry, vestibulo-ocular reflex, optokinetic nystagmus, and in some cases the cervico-ocular reflex. Linear regression analysis was used to evaluate progression of hearing impairment, and the degree of hearing impairment of DFNB12 was compared with that found for USH1D. Ophthalmologic examinations consisted of best-corrected visual acuity, Goldmann perimetry, slit-lamp examinations, color vision testing, dark adaptation, electroretinography, electro-oculography, funduscopy and photography of the retina, and sometimes fluorescein angiography. The USH1D patients had significantly worse hearing impairment than the DFNB12 patients. The DFNB12 patients, identified by missense mutations in CDH23, had normal retinal and vestibular function. All USH1D patients had splice-site mutations in CDH23 and a typical Usher syndrome Type I phenotype. One DFNB12 patient had slightly abnormal yellowish flecks in the posterior poles of both eyes. Recessive missense mutations in CDH23 lead to a milder phenotype (DFNB12) than splice-site mutations (USH1D); however, abnormal bilateral flecks, suggestive for lipofuscin accumulation, can be observed in DFNB12 patients."	"Hearing: tightrope act. NA"	"Mutations in cadherin 23 affect tip links in zebrafish sensory hair cells. Hair cells have highly organized bundles of apical projections, or stereocilia, that are deflected by sound and movement. Displacement of stereocilia stretches linkages at the tips of stereocilia that are thought to gate mechanosensory channels. To identify the molecular machinery that mediates mechanotransduction in hair cells, zebrafish mutants were identified with defects in balance and hearing. In sputnik mutants, stereociliary bundles are splayed to various degrees, with individuals displaying reduced or absent mechanotransduction. Here we show that the defects in sputnik mutants are caused by mutations in cadherin 23 (cdh23). Mutations in Cdh23 also cause deafness and vestibular defects in mice and humans, and the protein is present in hair bundles. We show that zebrafish Cdh23 protein is concentrated near the tips of hair bundles, and that tip links are absent in homozygous sputnik(tc317e) larvae. Moreover, tip links are absent in larvae carrying weak alleles of cdh23 that affect mechanotransduction but not hair bundle integrity. We conclude that Cdh23 is an essential tip link component required for hair-cell mechanotransduction."	"Cadherin 23 is a component of the tip link in hair-cell stereocilia. Mechanoelectrical transduction, the conversion of mechanical force into electrochemical signals, underlies a range of sensory phenomena, including touch, hearing and balance. Hair cells of the vertebrate inner ear are specialized mechanosensors that transduce mechanical forces arising from sound waves and head movement to provide our senses of hearing and balance; however, the mechanotransduction channel of hair cells and the molecules that regulate channel activity have remained elusive. One molecule that might participate in mechanoelectrical transduction is cadherin 23 (CDH23), as mutations in its gene cause deafness and age-related hearing loss. Furthermore, CDH23 is large enough to be the tip link, the extracellular filament proposed to gate the mechanotransduction channel. Here we show that antibodies against CDH23 label the tip link, and that CDH23 has biochemical properties similar to those of the tip link. Moreover, CDH23 forms a complex with myosin-1c, the only known component of the mechanotransduction apparatus, suggesting that CDH23 and myosin-1c cooperate to regulate the activity of mechanically gated ion channels in hair cells."	"Cell adhesion molecules during inner ear and hair cell development, including notch and its ligands. Cellular adhesion plays a key role in a number of unique developmental events, including proliferation, cell fate, morphogenesis, neurite outgrowth, fasciculation, and synaptogensis. The number of families of molecules that can mediate cell adhesion and the number of members of each of those families has continued to increase over time. Moreover, the potential for the formation of different pairs of heterodimers with different binding specificities, and for both homo- and hetero-dimeric interactions suggest that a vast number of specific signaling events can be mediated through the expression of different combinations of adhesion factors at different developmental time points. By comparison with the number of known adhesion molecules and their potential effects, our understanding of the role of adhesion in ear development is extremely limited. The patterns of expression for some adhesion molecules have been determined for some aspects of inner ear development. Similarly, with a few exceptions, functional data to indicate the roles of these adhesion molecules are also lacking. However, a consideration of even the limited existing data must lead to the conclusion that adhesion molecules play key roles in all aspects of the development of the auditory system. Unique expression domains for different groups of adhesion molecules within the developing otocyst and ear strongly suggest a role in the determination of different cellular domains. Similarly, the specific expression of adhesion molecules on developing neurites and their target hair cells, suggests a key role for adhesion in the establishment of neuronal connections and possible the development of tonotopy. Finally, the recent demonstration that Cdh23 and Pcdh15 play specific roles in the formation of the hair cell stereociliary bundle provides compelling evidence for the importance of adhesion molecules in the development of stereocilia. With the imminent completion of the mouse genome, it seems likely that the number of adhesion molecules can soon be fixed and that it will then be possible to generate a more comprehensive map of expression of these molecules within the developing inner ear. At the same time, the generation of new transgenic and molecular technologies promises to provide researchers with new tools to examine the specific effects of different adhesion molecules during inner ear development."	"Progressive hearing loss and increased susceptibility to noise-induced hearing loss in mice carrying a Cdh23 but not a Myo7a mutation. Exposure to intense noise can damage the stereocilia of sensory hair cells in the inner ear. Since stereocilia play a vital role in the transduction of sound from a mechanical stimulus into an electrical one, this pathology is thought to contribute to noise-induced hearing loss. Mice homozygous for null mutations in either the myosin VIIa ( Myo7a) or cadherin 23 ( Cdh23) genes are deaf and have disorganized stereocilia bundles. We show that mice heterozygous for a presumed null allele of Cdh23 ( Cdh23(v)) have low- and high-frequency hearing loss at 5-6 weeks of age, the high-frequency component of which worsens with increasing age. We also show that noise-induced hearing loss in 11-12-week-old Cdh23(v) heterozygotes is two times greater than for wild-type littermates. Interestingly, these effects are dependent upon the genetic background on which the Cdh23(v) mutation is carried. Noise-induced hearing loss in 11-12-week-old mice heterozygous for a null allele of Myo7a ( Myo7a(4626SB)) is not significantly different from wild-type littermates. CDH23 is the first gene known to cause deafness in the human population to be linked with predisposition to noise-induced hearing loss."	"Cdh23 mutations in the mouse are associated with retinal dysfunction but not retinal degeneration. Mutations in the cadherin 23 gene (CDH23) cause Usher syndrome type 1D in humans, a disease that results in retinitis pigmentosa and deafness. Cdh23 is also mutated in the waltzer mouse. In order to determine if the retina of the waltzer mouse undergoes retinal degeneration and to gain insight into the function of cadherin 23 in the retina, we have characterized the anatomy and physiology of retinas of waltzer mouse mutants. Three mutant alleles of Cdh23 were examined by histology and electroretinography (ERG). ERGs of the three Cdh23 mutant groups revealed two of them to have abnormal retinal function. One allele had a- and b-waves that were only approximately 80% of Cdh23 heterozygotes. Another allele had a significantly faster implicit time for both the a- and b-waves of the ERG. No anatomical abnormality was detected in any of the Cdh23 mutants by light microscopy. Because the mutant Cdh23 phenotype was found to be similar to the previously reported retinal phenotype of Myo7a mutant mice, the orthologue of another Usher syndrome (type 1B) gene, we generated mice that carried mutations in both genes to test for genetic interaction in the retina. No functional interaction between cadherin 23 and myosin VIIa was detected by either microscopy or ERG."	"Differential distribution of harmonin isoforms and their possible role in Usher-1 protein complexes in mammalian photoreceptor cells. Human Usher syndrome is the most common form of combined deafness and blindness. Usher type I (USH1), the most severe form, is characterized by profound congenital deafness, constant vestibular dysfunction, and prepubertal onset retinitis pigmentosa. Previous studies have shown that the USH1-proteins myosin VIIa, harmonin, and cadherin 23 interact and form a functional network during hair cell differentiation in the inner ear. The purpose of the present study was to analyze the molecular and cellular functions of these USH1 proteins in the mammalian retina. Antibodies to USH1 proteins were generated and used in Western blot analysis of subcellular photoreceptor fractions and immunofluorescence and electron microscopy of the retina. Splice variants of harmonin were differentially expressed in the photoreceptor cell compartments. Whereas harmonin b isoforms were restricted to the light-sensitive outer segment, the harmonin a and c isoforms were more ubiquitously distributed in the photoreceptors. At the synaptic terminal of photoreceptor cells, harmonin a and c colocalized with myosin VIIa and cadherin 23. USH1 molecules can assemble to a supramolecular complex at photoreceptor synapses. Such a complex may contribute to the cortical cytoskeletal matrices of the pre- and postsynaptic regions, which are thought to play a fundamental role in the organization of synaptic junctions. Dysfunction of any of the USH1 complex partners may lead to synaptic dysfunction causing retinitis pigmentosa, the clinical phenotype in the retina of patients with USH1. Furthermore, in photoreceptor outer segments, harmonin may also contribute to the clustering of outer segment proteins into supramolecular complexes."	"Genetic influences in individual susceptibility to noise: a review. Individual animals and humans show differing susceptibility to noise damage even under very carefully controlled exposure conditions. This difference in susceptibility may be related to unknown genetic components. Common experimental animals (rats, guinea pigs, chinchillas, cats) are outbred-their genomes contain an admixture of many genes. Many mouse strains have been inbred over many generations reducing individual variability, making them ideal candidates for studying the genetic modulation of individual susceptibility. Erway et al. (1993) demonstrated a recessive gene associated with early presbycusis in the C57BL/6J inbred mouse. A series of studies have shown that mice homozygous for Ahl allele are more sensitive to the damaging effects of noise. Recent work has shown that mice homozygous for Ahl are not only more sensitive to noise, but also are probably damaged in a different manner by noise than mice containing the wild-type gene (Davis et al., 2001). Recent work in Noben-Trauth's lab (Di Palma et al., 2001) has shown that the wild-type Ahl gene codes for a hair cell specific cadherin. Cadherins are calcium dependent proteins that hold cells together at adherins junctions to form tissues and organs. The cadherin of interest named otocadherin or CDH23, is localized to the stereocillia of the outer hair cells. Our working hypothesis, suggests that otocadherin may form the lateral links between stereocilia described by Pickles et al (1989). Reduction of, or missing otocadherin weakens the cell and may allow stereocilia to be more easily physically damaged by loud sounds and by aging."	"Mouse models of USH1C and DFNB18: phenotypic and molecular analyses of two new spontaneous mutations of the Ush1c gene. We mapped two new recessive mutations causing circling behavior and deafness to the same region on chromosome 7 and showed they are allelic by complementation analysis. One was named 'deaf circler' (allele symbol dfcr) and the other 'deaf circler 2 Jackson' (allele symbol dfcr-2J). Both were shown to be mutations of the Ush1c gene, the mouse ortholog of the gene responsible for human Usher syndrome type IC and for the non-syndromic deafness disorder DFNB18. The Ush1c gene contains 28 exons, 20 that are constitutive and eight that are alternatively spliced. The dfcr mutation is a 12.8 kb intragenic deletion that eliminates three constitutive and five alternatively spliced exons. The dfcr-2J mutation is a 1 bp deletion in an alternatively spliced exon that creates a transcriptional frame shift, changing 38 amino acid codons before introducing a premature stop codon. Both mutations cause congenital deafness and severe balance deficits due to inner ear dysfunction. The stereocilia of cochlear hair cells are disorganized and splayed in mutant mice, with subsequent degeneration of the hair cells and spiral ganglion cells. Harmonin, the protein encoded by Ush1c, has been shown to bind, by means of its PDZ-domains, with the products of other Usher syndrome genes, including Myo7a, Cdh23 and Sans. The complexes formed by these protein interactions are thought to be essential for maintaining the integrity of hair cell stereocilia. The Ush1c mutant mice described here provide a means to directly investigate these interactions in vivo and to evaluate gene structure-function relationships that affect inner ear and eye phenotypes."	"Association of cadherin 23 with polygenic inheritance and genetic modification of sensorineural hearing loss. Age-related hearing loss (AHL) in common inbred mouse strains is a genetically complex quantitative trait. We found a synonymous single-nucleotide polymorphism in exon 7 of Cdh23 that shows significant association with AHL and the deafness modifier mdfw (modifer of deafwaddler). The hypomorphic Cdh23(753A) allele causes in-frame skipping of exon 7. Altered adhesion or reduced stability of CDH23 may confer susceptibility to AHL. Homozygosity at Cdh23(753A) or in combination with heterogeneous secondary factors is a primary determinant of AHL in mice."	"Bardet-Biedl syndrome and Usher syndrome. Bardet-Biedl syndrome (BBS) and Usher syndrome (USH) are the most prevalent syndromic forms of retinitis pigmentosa (RP), together they make up almost a quarter of the patients with RP. BBS is defined by the association of retinopathy, obesity, hypogonadism, renal dysfunction, postaxial polydactyly and mental retardation. This clinically complex syndrome is genetically heterogeneous with linkage to more than 6 loci, and 4 genes have been cloned so far. Recent molecular data present evidence that, in some instances, the clinical manifestation of BBS requires recessive mutations in 1 of the 6 BBS loci plus one or two additional mutations in a second BBS locus (tri- or tetra-allelic inheritance). USH is characterized by the combination of congenital or early-onset sensorineural deafness, RP, and variable degrees of vestibular dysfunction. Each of the three clinical types is genetically heterogeneous: 7 loci have been mapped for type 1, three loci for type 2, and two loci for type 3. Currently, 6 USH genes (MYO7A, USH1C, CDH23, PCDH15, USH2A, USH3) have been identified. Pathogenetically, mutations of the USH1 genes seem to result in defects of auditory and retinal sensory cells, the USH 2 phenotype is caused by defects of extracellular matrix or cell surface receptor proteins, and USH3 may be due to synaptic disturbances. The considerable contribution of syndromic forms of RP requires interdisciplinary approaches to the clinical and diagnostic management of RP patients."	"The molecular genetics of Usher syndrome. Association of sensorineural deafness and progressive retinitis pigmentosa with and without a vestibular abnormality is the hallmark of Usher syndrome and involves at least 12 loci among three different clinical subtypes. Genes identified for the more commonly inherited loci are USH2A (encoding usherin), MYO7A (encoding myosin VIIa), CDH23 (encoding cadherin 23), PCDH15 (encoding protocadherin 15), USH1C (encoding harmonin), USH3A (encoding clarin 1), and USH1G (encoding SANS). Transcripts from all these genes are found in many tissues/cell types other than the inner ear and retina, but all are uniquely critical for retinal and cochlear cell function. Many of these protein products have been demonstrated to have direct interactions with each other and perform an essential role in stereocilia homeostasis."	"Role of cadherins in Ca2+-mediated cell adhesion and inherited photoreceptor degeneration. NA"	"Mutations in the calcium-binding motifs of CDH23 and the 35delG mutation in GJB2 cause hearing loss in one family. We have ascertained a multi-generation family with apparent autosomal recessive non-syndromic childhood hearing loss (DFNB). Failure to demonstrate linkage in a genome-wide scan with 300 polymorphic markers has suggested genetic heterogeneity for the hearing loss in this family. This heterogeneity could be demonstrated by analysis of candidate loci and genes for DFNB. Patients in one branch of the family (branch C) are homozygous for the 35delG mutation in the GJB2 gene (DFNB1). Patients in two other branches (A and B) carry two new mutations in the cadherin 23 ( CDH23) gene (DFNB12). A homozygous CDH23 c.6442G--&gt;A (D2148N) mutation is present in branch A. Patients in branch B are compound heterozygous for this mutation and the c.4021G--&gt;A (D1341N) mutation. The substituted aspartic acid residues are highly conserved and are part of the calcium-binding sites of the extracellular cadherin (EC) domains. Molecular modeling of the mutated EC domains of CDH23 based on the structure of E-cadherin indicates that calcium-binding is impaired. In addition, other aspartic and glutamic acid residue substitutions in the highly conserved calcium-binding sites reported to cause DFNB12 are also likely to result in a decreased affinity for calcium. Since calcium provides rigidity to the elongated structure of cadherin molecules enabling homophilic lateral interaction, these mutations are likely to impair interactions of CDH23 molecules either with CDH23 or with other proteins. DFNB12 is the first human disorder that can be attributed to inherited missense mutations in the highly conserved residues of the extracellular calcium-binding domain of a cadherin."	"Myosin VIIa, harmonin and cadherin 23, three Usher I gene products that cooperate to shape the sensory hair cell bundle. Deaf-blindness in three distinct genetic forms of Usher type I syndrome (USH1) is caused by defects in myosin VIIa, harmonin and cadherin 23. Despite being critical for hearing, the functions of these proteins in the inner ear remain elusive. Here we show that harmonin, a PDZ domain-containing protein, and cadherin 23 are both present in the growing stereocilia and that they bind to each other. Moreover, we demonstrate that harmonin b is an F-actin-bundling protein, which is thus likely to anchor cadherin 23 to the stereocilia microfilaments, thereby identifying a novel anchorage mode of the cadherins to the actin cytoskeleton. Moreover, harmonin b interacts directly with myosin VIIa, and is absent from the disorganized hair bundles of myosin VIIa mutant mice, suggesting that myosin VIIa conveys harmonin b along the actin core of the developing stereocilia. We propose that the shaping of the hair bundle relies on a functional unit composed of myosin VIIa, harmonin b and cadherin 23 that is essential to ensure the cohesion of the stereocilia."	"Assignment of the canine cadherin related 23 gene (CDH23) to chromosome 4q12--&gt;q13 by fluorescence in situ hybridization and radiation hybrid mapping. NA"	"Clinical presentation of DFNB12 and Usher syndrome type 1D. NA"	"The Usher syndrome proteins cadherin 23 and harmonin form a complex by means of PDZ-domain interactions. Usher syndrome type 1 (USH1) patients suffer from sensorineuronal deafness, vestibular dysfunction, and visual impairment. Several genetic loci have been linked to USH1, and four of the relevant genes have been identified. They encode the unconventional myosin VIIa, the PDZ-domain protein harmonin, and the putative adhesion receptors cadherin 23 (CDH23) and protocadherin 15 (PCDH15). We show here that CDH23 and harmonin form a protein complex. Two PDZ domains in harmonin interact with two complementary binding surfaces in the CDH23 cytoplasmic domain. One of the binding surfaces is disrupted by sequences encoded by an alternatively spliced CDH23 exon that is expressed in the ear, but not the retina. In the ear, CDH23 and harmonin are expressed in the stereocilia of hair cells, and in the retina within the photoreceptor cell layer. Because CDH23-deficient mice have splayed stereocilia, our data suggest that CDH23 and harmonin are part of a transmembrane complex that connects stereocilia into a bundle. Defects in the formation of this complex are predicted to disrupt stereocilia bundles and cause deafness in USH1 patients."	"Stereocilia defects in waltzer (Cdh23), shaker1 (Myo7a) and double waltzer/shaker1 mutant mice. Mutations in myosin VIIa (Myo7a) and cadherin 23 (Cdh23) cause deafness in shaker1 (sh1) and waltzer (v) mouse mutants respectively. In humans, mutations in these genes cause Usher's syndrome type 1B and D respectively, as well as certain forms of non-syndromic deafness. Examination of the organ of Corti from shaker1 and waltzer mice has shown that these genes are required for the proper organisation of hair cell stereocilia. Here we show that at embryonic day 18.5, the outer hair cells of Cdh23(v) homozygote mutant mice appear immature, projecting fewer recognisable stereocilia than heterozygote controls, and by post-natal day (P) 4 their stereocilia are arranged in a disorganised pattern rather than in the regular 'V'-shape seen in heterozygotes. Inner hair cell stereocilia are also disorganised in Cdh23(v) mutant homozygotes. Myo7a was expressed normally in the hair cells of P0 Cdh23(v2J) mutants demonstrating that cadherin 23 is not required for Myo7a expression at this stage. No stereocilia defects were observed in P4 Cdh23(v)/Myo7a(4626SB) double heterozygotes (+/Cdh23(v) +/Myo7a(4626SB)) and neither the Cdh23(v) nor Myo7a(4626SB) homozygote phenotypes were affected by the presence of one mutant copy of Myo7a or Cdh23 respectively. The hair cell phenotype of double homozygote mutant mice did not differ from single Myo7a(4626SB) homozygote mutants. Finally, we found no significant correlation between loss of hearing and double heterozygosity for mutations in Cdh23 and Myo7a in mice aged between 7.5 and 10 months. These findings suggest that Cdh23 and Myo7a are both required for establishing and/or maintaining the proper organisation of the stereocilia bundle and that they do not genetically interact to affect this process nor to cause age-related hearing loss."	"CDH23 mutation and phenotype heterogeneity: a profile of 107 diverse families with Usher syndrome and nonsyndromic deafness. Usher syndrome type I is characterized by congenital hearing loss, retinitis pigmentosa (RP), and variable vestibular areflexia. Usher syndrome type ID, one of seven Usher syndrome type I genetic localizations, have been mapped to a chromosomal interval that overlaps with a nonsyndromic-deafness localization, DFNB12. Mutations in CDH23, a gene that encodes a putative cell-adhesion protein with multiple cadherin-like domains, are responsible for both Usher syndrome and DFNB12 nonsyndromic deafness. Specific CDH23 mutational defects have been identified that differentiate these two phenotypes. Only missense mutations of CDH23 have been observed in families with nonsyndromic deafness, whereas nonsense, frameshift, splice-site, and missense mutations have been identified in families with Usher syndrome. In the present study, a panel of 69 probands with Usher syndrome and 38 probands with recessive nonsyndromic deafness were screened for the presence of mutations in the entire coding region of CDH23, by heteroduplex, single-strand conformation polymorphism, and direct sequence analyses. A total of 36 different CDH23 mutations were detected in 45 families; 33 of these mutations were novel, including 18 missense, 3 nonsense, 5 splicing defects, 5 microdeletions, and 2 insertions. A total of seven mutations were common to more than one family. Numerous exonic and intronic polymorphisms also were detected. Results of ophthalmologic examinations of the patients with nonsyndromic deafness have found asymptomatic RP-like manifestations, indicating that missense mutations may have a subtle effect in the retina. Furthermore, patients with mutations in CDH23 display a wide range of hearing loss and RP phenotypes, differing in severity, age at onset, type, and the presence or absence of vestibular areflexia."	"Identification and in vitro expression of novel CDH23 mutations of patients with Usher syndrome type 1D. Usher syndrome (USH) is a group of autosomal recessive sensory disorders characterized by progressive retinitis pigmentosa (RP) and sensorineural hearing impairment. Usher syndrome type 1 (USH1), with additional vestibular dysfunction, represents the most severe form and shows extensive allelic and non-allelic heterogeneity. At least six USH1 loci exist (USH1A-F), and four of the underlying genes have been identified. Recently, a novel gene, cadherin 23 (CDH23), was shown to be mutated in USH1D. We performed mutation screening by single strand conformation polymorphism (SSCP) analysis and direct sequencing on 33 USH1 patients previously excluded for USH1B and USH1C. On eight disease alleles of four patients, four different mutations were identified, three of them novel (c.6933delT, c.5712G--&gt;A, and IVS45-9G--&gt;A). Exon trapping experiments were performed with two mutations. In the case of a c.5712G--&gt;A transition of the last base of exon 42, that is an apparently synonymous mutation, skipping of exon 42 was observed. By the mutation IVS45-9G--&gt;A, a novel splice acceptor site was created and the insertion of 7 intronic bp was observed. Two mutations, IVS45-9G--&gt;A and the previously described IVS51+5G--&gt;A, were each found in more than one patient. Haplotype analysis by SNPs within CDH23 suggests common ancestors for each of the mutations. Among the total of 52 USH1 cases studied by us, CDH23 mutations account for about 10% of all disease alleles. Our results further suggest that in patients with a typical USH1D phenotype, a significant portion of CDH23 mutations leads to premature termination of translation or loss of numerous amino acid residues, with a high frequency of changes causing aberrant splicing of CDH23 mRNA."	"Genomic structure, alternative splice forms and normal and mutant alleles of cadherin 23 (Cdh23). Cadherins are components of adherens junctions and play critical roles during embryogenesis and organogenesis. They interact through the formation of anti-parallel dimers to mediate cell adhesion, migration and compaction. We recently showed that cadherins also play important roles in the inner ear; mutations in cadherin 23 (Cdh23) disrupt stereocilia organization on hair cells leading to deafness and vestibular dysfunction in waltzer mice. Here we extend our initial study on the structure and function of Cdh23. The mouse Cdh23 locus is comprised of two 5'-untranslated exons and 69 coding exons; together they cover a genomic distance of at least 350 kb. Amino acid sequence alignments and secondary structure prediction suggest that Cdh23 ectodomains adopt a conformation similar to the classic cadherins. Nucleotide sequence analysis of six alleles of waltzer reveals a strong correlation between loss of function mutations and the deafness/waltzing phenotype. A Cdh23 transcript with a spliced exon 68 is the predominantly expressed isoform in the organ of Corti. Age-related hearing loss (Ahl) is a non-syndromic trait in common inbred strains of mice associated with the Ahl locus on chromosome 10. Sequence comparison of Cdh23 between C57BL/6J and CAST/Ei identified ten amino acid polymorphisms. In the 5'- and 3'-untranslated regions we detected 11 single nucleotide polymorphisms. None of these sequence changes correlate with the Ahl phenotype. Our results provide the necessary framework for further characterization of Cdh23-related hearing loss in mice."	"Identification of three novel non-classical cadherin genes through comprehensive analysis of large cDNAs. The terminal sequences of long cDNAs from human brains were subjected to an improved method of motif-trap screening. This process resulted in the identification of three novel genes that encode proteins with 27, 27, and six cadherin domains that we denoted as KIAA1773, KIAA1774 and KIAA1775, respectively. Sequence analysis indicated that the products of these genes were non-classical cadherins. KIAA1773 was found to be a mammalian homologue of the Drosophila dachsous gene but the remaining two genes did not have any likely homologues in public databases. Assessment of their expression in rat tissues indicated that these genes are expressed in highly distinct and tissue-specific patterns. Notably, KIAA1775 is expressed almost exclusively in the olfactory bulb in the rat brain. In situ hybridization further showed that KIAA1775 is strongly expressed by the mitral and tufted cells in the main and accessory olfactory bulbs, suggesting that KIAA1775 may be important in the formation and maintenance of neuronal networks, particularly those in the olfactory bulb. This study clearly shows the importance and usefulness of our cDNA project in search for genes encoding large proteins, as this project has allowed us to identify several novel non-classical cadherin genes that have thus far not been detected by conventional methods."	"Haplotype analysis of the USH1D locus and genotype-phenotype correlations. Usher syndrome (USH) is characterised by hearing impairment and progressive pigmentary retinopathy. USH can be divided into three subtypes based on the severity and progression of the major clinical findings. These subtypes are genetically heterogeneous, with at least six loci for USH1, three for USH2 and one for USH3. In the present study, five unrelated consanguineous families with USH1 were analysed for linkage to markers flanking the six USH1 loci. Two of these families, one Pakistani and one Turkish, demonstrated linkage to the USH1D locus. In another family, haplotype segregation was consistent with linkage to USH1C. The remaining families were not linked to any of the six USH1 loci, providing support for the existence of at least one additional USH1 locus. Analysis of these two new USH1D families allowed us to narrow the USH1D candidate region to a 7.3-cM interval with a telomeric flanking marker at D10S1752. Comparison of the affected haplotypes in our Pakistani family with the original Pakistani USH1D family yielded no evidence for a founder effect. The identification of two additional affected families suggests that the USH1D may be a more common form of USH1 than originally suspected. The USH1D (CDH23) gene has recently been cloned. Mutation analysis has shown two different CDH23 mutations in the two Pakistani USH1D families studied, which confirmed our finding that there was no evidence for a founder effect by haplotype analysis. The interesting correlations between genotype and phenotype in CDH23 are also summarised."	"Mutations in Cdh23 cause nonsyndromic hearing loss in waltzer mice. Mutations at the waltzer (v) locus result in deafness and vestibular dysfunction due to degeneration of the neuroepithelium within the inner ear. Here, we use a positional cloning approach to show that waltzer encodes a novel cadherin (Cdh23), which is most closely related to the Drosophila Fat protein. A single nucleotide deletion in the v(J) allele and a single nucleotide insertion in the v allele are predicted to truncate each protein near the N-terminus and produce a functional null allele. In situ hybridization analysis showed that Cdh23 is expressed in the sensory hair cells of the inner ear, where it has been suggested to be a molecule critical for crosslinking of the stereocilia. In addition, Cdh23 is expressed in the urticulo-saccular foramen,the ductus reuniens, and Reissner's membrane, suggesting that Cdh23 may also be involved in maintaining the ionic composition of the endolymph. Finally, mutations in human CDH23 have recently been described for two loci, DFNB12 and USH1D, which cause nonsyndromic deafness, identifying waltzer as a mouse model for human hearing loss."	"High-resolution genetic and physical mapping of modifier-of-deafwaddler (mdfw) and Waltzer (Cdh23v). Modifier-of-deafwaddler (mdfw) and waltzer (Cdh23v) are loci on mouse chromosome 10 encoding factors that are essential for the function of auditory hair cells. The BALB/cByJ-specific mdfw allele encodes a necessary and sufficient modifier that induces progressive early onset hearing loss in CBy-dfw2J heterozygotes. Recessive mutations in the waltzer locus result in circling behavior and congenital deafness. In this report we present a high-resolution integrated genetic and physical map of mdfw and Cdh23(v). Our genetic analyses localize mdfw between markers D10Mit60 and 148M13T7 within a 1.01-cM region. The Cdh23v critical interval is fully contained within the mdfw region and localizes between markers 146O23T7 and 148M13T7 within a 0.35-cM interval that is represented in an approximately 500-kb BAC contig. Our data suggest that mdfw and Cdh23v are allelic."	"A point mutation in a cadherin gene, Cdh23, causes deafness in a novel mutant, Waltzer mouse niigata. A novel mouse model for human nonsyndromic hearing loss, Waltzer niigata (v(ngt)), is found and subjected to positional cloning analysis. Genome-wide scan of 1648 backcross mice maps v(ngt) to the D10Mit258 locus near Waltzer (v). Recombination breakpoints are positioned on a physical map consisting of 13 BACs relative to the flanking markers in the vicinity of v(ngt). Allelism test done in parallel shows that v(ngt) and v are allelic. Sequence analysis reveals one-base deletion in the cDNA encoding a cadherin-related protein, Cdh23, mutation of which is recently reported in v mutants. The frame-shift change, producing a truncated protein of 51 amino acids, is ascribed to a base-substitution of G to A in the acceptor site of splicing junction which is predicted to cause one-base shift of the splicing position."	"Mutation of CDH23, encoding a new member of the cadherin gene family, causes Usher syndrome type 1D. Usher syndrome type I (USH1) is an autosomal recessive disorder characterized by congenital sensorineural hearing loss, vestibular dysfunction and visual impairment due to early onset retinitis pigmentosa (RP). So far, six loci (USH1A-USH1F) have been mapped, but only two USH1 genes have been identified: MYO7A for USH1B and the gene encoding harmonin for USH1C. We identified a Cuban pedigree linked to the locus for Usher syndrome type 1D (MIM 601067) within the q2 region of chromosome 10). Affected individuals present with congenital deafness and a highly variable degree of retinal degeneration. Using a positional candidate approach, we identified a new member of the cadherin gene superfamily, CDH23. It encodes a protein of 3,354 amino acids with a single transmembrane domain and 27 cadherin repeats. In the Cuban family, we detected two different mutations: a severe course of the retinal disease was observed in individuals homozygous for what is probably a truncating splice-site mutation (c.4488G--&gt;C), whereas mild RP is present in individuals carrying the homozygous missense mutation R1746Q. A variable expression of the retinal phenotype was seen in patients with a combination of both mutations. In addition, we identified two mutations, Delta M1281 and IVS51+5G--&gt;A, in a German USH1 patient. Our data show that different mutations in CDH23 result in USH1D with a variable retinal phenotype. In an accompanying paper, it is shown that mutations in the mouse ortholog cause disorganization of inner ear stereocilia and deafness in the waltzer mouse."	"Mutations in Cdh23, encoding a new type of cadherin, cause stereocilia disorganization in waltzer, the mouse model for Usher syndrome type 1D. Mouse chromosome 10 harbors several loci associated with hearing loss, including waltzer (v), modifier-of deaf waddler (mdfw) and Age-related hearing loss (Ahl). The human region that is orthologous to the mouse 'waltzer' region is located at 10q21-q22 and contains the human deafness loci DFNB12 and USH1D). Numerous mutations at the waltzer locus have been documented causing erratic circling and hearing loss. Here we report the identification of a new gene mutated in v. The 10.5-kb Cdh23 cDNA encodes a very large, single-pass transmembrane protein, that we have called otocadherin. It has an extracellular domain that contains 27 repeats; these show significant homology to the cadherin ectodomain. In v(6J), a GT transversion creates a premature stop codon. In v(Alb), a CT exchange generates an ectopic donor splice site, effecting deletion of 119 nucleotides of exonic sequence. In v(2J), a GA transition abolishes the donor splice site, leading to aberrant splice forms. All three alleles are predicted to cause loss of function. We demonstrate Cdh23 expression in the neurosensory epithelium and show that during early hair-cell differentiation, stereocilia organization is disrupted in v(2J) homozygotes. Our data indicate that otocadherin is a critical component of hair bundle formation. Mutations in human CDH23 cause Usher syndrome type 1D and thus, establish waltzer as the mouse model for USH1D."	"Usher syndrome 1D and nonsyndromic autosomal recessive deafness DFNB12 are caused by allelic mutations of the novel cadherin-like gene CDH23. Genes causing nonsyndromic autosomal recessive deafness (DFNB12) and deafness associated with retinitis pigmentosa and vestibular dysfunction (USH1D) were previously mapped to overlapping regions of chromosome 10q21-q22. Seven highly consanguineous families segregating nonsyndromic autosomal recessive deafness were analyzed to refine the DFNB12 locus. In a single family, a critical region was defined between D10S1694 and D10S1737, approximately 0.55 cM apart. Eighteen candidate genes in the region were sequenced. Mutations in a novel cadherin-like gene, CDH23, were found both in families with DFNB12 and in families with USH1D. Six missense mutations were found in five families with DFNB12, and two nonsense and two frameshift mutations were found in four families with USH1D. A northern blot analysis of CDH23 showed a 9.5-kb transcript expressed primarily in the retina. CDH23 is also expressed in the cochlea, as is demonstrated by polymerase chain reaction amplification from cochlear cDNA."	"Comparison of the phenotypes of the lpxA and lpxD mutants of Escherichia coli. We compared the phenotype of two thermosensitive Escherichia coli mutants defective in lipid A biosynthesis, i.e. SM101 (lpxA) and CDH23-213 (lpxD). More than 40% of the periplasmic 27-kDa marker enzyme beta-lactamase was released from SM101 at 28 degrees C. At this temperature, the mutant still grew with a generation time (67 min), not much longer than that of the parent control strain (57 min). CDH23-213 released beta-lactamase only at higher temperatures. SM101 and CDH23-213 were both unable to grow in hypo-osmotic conditions. Derivatives of SM101 and CDH23-213 with mdoA::Tn10 had identical phenotypes (including thermosensitivity and defective outer membrane permeability barrier to hydrophobic probes) to those of SM101 and CDH23-213, indicating that the potential loss of membrane-derived oligosaccharides (MDO) did not explain these phenotype properties. A method for the estimation of lipid A synthesis rate was developed."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CIB2"	"nonsyndromic genetic deafness"	"CIB4 is essential for the haploid phase of spermatogenesis in mice†. Spermatogenesis is a complex developmental process that involves the proliferation of diploid cells, meiotic division, and haploid differentiation. Many genes are shown to be essential for male fertility using knockout (KO) mice; however, there still remain genes to be analyzed to elucidate their molecular mechanism and their roles in spermatogenesis. Calcium- and integrin-binding protein 1 (CIB1) is a ubiquitously expressed protein that possesses three paralogs: CIB2, CIB3, and CIB4. It is reported that Cib1 KO male mice are sterile due to impaired haploid differentiation. In this study, we discovered that Cib4 is expressed strongly in mouse and human testis and begins expression during the haploid phase of spermatogenesis in mice. To analyze the function of CIB4 in vivo, we generated Cib4 KO mice using the CRISPR/Cas9 system. Cib4 KO male mice are sterile due to impaired haploid differentiation, phenocopying Cib1 KO male mice. Spermatogenic cells isolated from seminiferous tubules demonstrate an essential function of CIB4 in the formation of the apical region of the sperm head. Further analysis of CIB4 function may shed light on the etiology of male infertility caused by spermatogenesis defects, and CIB4 could be a target for male contraceptives because of its dominant expression in the testis."	"Oligomeric state, hydrodynamic properties and target recognition of human Calcium and Integrin Binding protein 2 (CIB2). Calcium- and Integrin-Binding protein 2 (CIB2) is a small and ubiquitously expressed protein with largely unknown biological function but ascertained role in hearing physiology and disease. Recent studies found that CIB2 binds Ca<sup>2+</sup> with moderate affinity and dimerizes under conditions mimicking the physiological ones. Here we provided new lines of evidence on CIB2 oligomeric state and the mechanism of interaction with the α7B integrin target. Based on a combination of native mass spectrometry, chemical cross-linking/mass spectrometry, analytical gel filtration, dynamic light scattering and molecular dynamics simulations we conclude that CIB2 is monomeric under all tested conditions and presents uncommon hydrodynamic properties, most likely due to the high content of hydrophobic solvent accessible surface. Surface plasmon resonance shows that the interaction with α7B occurs with relatively low affinity and is limited to the cytosolic region proximal to the membrane, being kinetically favored in the presence of physiological Mg<sup>2+</sup> and in the absence of Ca<sup>2+</sup>. Although CIB2 binds to an α7B peptide in a 1:1 stoichiometry, the formation of the complex might induce binding of another CIB2 molecule."	"Functional study of 14-3-3 protein epsilon (YWHAE) in keratinocytes: microarray integrating bioinformatics approaches. Previously, we detected that 14-3-3 protein epsilon (YWHAE) was involved in the pathogenesis of atopic dermatitis (AD) and tyrosinase-mediated pigmentation. In this study, we aimed to identify critical factors associated with YWHAE in human keratinocytes using high-throughput screening (HTS) approaches to reveal its functions in skin. We overexpressed YWHAE in human HaCaT keratinocytes and then conducted serial HTS studies, including RNA sequencing integrated with antibody arrays and the implementation of bioinformatics algorithms. Cumulatively, these approaches identified several novel genes in keratinocytes associated with the function of YWHAE including KRT9, KRT1, KRT6C, BST2, CIB2, APH1B, ACTC1, IFI27, TUBA1A, CAPN6, UTY, MX2, and MAPK15, based on RNA sequencing data, and MAPK1, MMP2, TYK2, NOS3, and CASP3, based on antibody array data. In particular, CD37 is a unique gene that was detected and validated in all the methods applied in this study. By integrating the datasets obtained from these HTS studies and utilizing the strengths of each method, we obtained new insights into the functional role of YWHAE in skin keratinocytes. The approach used here could contribute to the clinical understanding of YWHAE-associated applications in the treatment of AD disease. AbbreviationsDAVIDthe database for annotation, visualization and integrated discoveryHTSHigh-throughput screeningKEGGKyoto Encyclopedia of Genes and GenomesPPIprotein-protein interactionsCommunicated by Ramaswamy H. Sarma."	"Genetic Screening of the Usher Syndrome in Cuba. Usher syndrome (USH) is a recessive inherited disease characterized by sensorineural hearing loss, retinitis pigmentosa, and sometimes, vestibular dysfunction. Although the molecular epidemiology of Usher syndrome has been well studied in Europe and United States, there is a lack of studies in other regions like Africa or Central and South America. We designed a NGS panel that included the 10 USH causative genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, ADGRV1, WHRN, and CLRN1), four USH associated genes (HARS, PDZD7, CEP250, and C2orf71), and the region comprising the deep-intronic c.7595-2144A&gt;G mutation in USH2A. NGS sequencing was performed in 11 USH patients from Cuba. All the cases were solved. We found the responsible mutations in the USH2A, ADGRV1, CDH23, PCDH15, and CLRN1 genes. Four mutations have not been previously reported. Two mutations are recurrent in this study: c.619C&gt;T (p.Arg207<sup>∗</sup>) in CLRN1, previously reported in two unrelated Spanish families of Basque origin, and c.4488G&gt;C (p.Gln1496His) in CDH23, first described in a large Cuban family. Additionally, c.4488G&gt;C has been reported two more times in the literature in two unrelated families of Spanish origin. Although the sample size is very small, it is tempting to speculate that the gene frequencies in Cuba are distinct from other populations mainly due to an &quot;island effect&quot; and genetic drift. The two recurrent mutations appear to be of Spanish origin. Further studies with a larger cohort are needed to elucidate the real genetic landscape of Usher syndrome in the Cuban population."	"Proestrus Differentially Regulates Expression of Ion Channel and Calcium Homeostasis Genes in GnRH Neurons of Mice. In proestrus, the changing gonadal hormone milieu alters the physiological properties of GnRH neurons and contributes to the development of the GnRH surge. We hypothesized that proestrus also influences the expression of different ion channel genes in mouse GnRH neurons. Therefore, we performed gene expression profiling of GnRH neurons collected from intact, proestrous and metestrous GnRH-GFP transgenic mice, respectively. Proestrus changed the expression of 37 ion channel and 8 calcium homeostasis-regulating genes. Voltage-gated sodium channels responded with upregulation of three alpha subunits (Scn2a1, Scn3a, and Scn9a). Within the voltage-gated potassium channel class, Kcna1, Kcnd3, Kcnh3, and Kcnq2 were upregulated, while others (Kcna4, Kcnc3, Kcnd2, and Kcng1) underwent downregulation. Proestrus also had impact on inwardly rectifying potassium channel subunits manifested in enhanced expression of Kcnj9 and Kcnj10 genes, whereas Kcnj1, Kcnj11, and Kcnj12 subunit genes were downregulated. The two-pore domain potassium channels also showed differential expression with upregulation of Kcnk1 and reduced expression of three subunit genes (Kcnk7, Kcnk12, and Kcnk16). Changes in expression of chloride channels involved both the voltage-gated (Clcn3 and Clcn6) and the intracellular (Clic1) subtypes. Regarding the pore-forming alpha-1 subunits of voltage-gated calcium channels, two (Cacna1b and Cacna1h) were upregulated, while Cacna1g showed downregulation. The ancillary subunits were also differentially regulated (Cacna2d1, Cacna2d2, Cacnb1, Cacnb3, Cacnb4, Cacng5, Cacng6, and Cacng8). In addition, ryanodine receptor 1 (Ryr1) gene was downregulated, while a transient receptor potential cation channel (Trpm3) gene showed enhanced expression. Genes encoding proteins regulating the intracellular calcium homeostasis were also influenced (Calb1, Hpca, Hpcal1, Hpcal4, Cabp7, Cab 39l, and Cib2). The differential expression of genes coding for ion channel proteins in GnRH neurons at late proestrus indicates that the altering hormone milieu contributes to remodeling of different kinds of ion channels of GnRH neurons, which might be a prerequisite of enhanced cellular activity of GnRH neurons and the subsequent surge release of the neurohormone."	"Genetics of Usher Syndrome: New Insights From a Meta-analysis. To describe the genetic and phenotypic spectrum of Usher syndrome after 6 years of studies by next-generation sequencing, and propose an up-to-date classification of Usher genes in patients with both visual and hearing impairments suggesting Usher syndrome, and in patients with seemingly isolated deafness. The systematic review and meta-analysis protocol was based on Cochrane and Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) guidelines. We performed 1) a meta-analysis of data from 11 next-generation sequencing studies in 684 patients with Usher syndrome; 2) a meta-analysis of data from 21 next-generation studies in 2,476 patients with seemingly isolated deafness, to assess the involvement of Usher genes in seemingly nonsyndromic hearing loss, and thus the proportion of patients at high risk of subsequent retinitis pigmentosa (RP); 3) a statistical analysis of differences between parts 1) and 2). In patients with both visual and hearing impairments, the biallelic disease-causing mutation rate was assessed for each Usher gene to propose a classification by frequency: USH2A: 50% (341/684) of patients, MYO7A: 21% (144/684), CDH23: 6% (39/684), ADGRV1: 5% (35/684), PCDH15: 3% (21/684), USH1C: 2% (17/684), CLRN1: 2% (14/684), USH1G: 1% (9/684), WHRN: 0.4% (3/684), PDZD7 0.1% (1/684), CIB2 (0/684). In patients with seemingly isolated sensorineural deafness, 7.5% had disease-causing mutations in Usher genes, and are therefore at high risk of developing RP. These new findings provide evidence that usherome dysfunction is the second cause of genetic sensorineural hearing loss after connexin dysfunction. These results promote generalization of early molecular screening for Usher syndrome in deaf children."	"High-throughput sequencing for the molecular diagnosis of Usher syndrome reveals 42 novel mutations and consolidates CEP250 as Usher-like disease causative. Usher syndrome is a rare disorder causing retinitis pigmentosa, together with sensorineural hearing loss. Due to the phenotypic and genetic heterogeneity of this disease, the best method to screen the causative mutations is by high-throughput sequencing. In this study, we tested a semiconductor chip based sequencing approach with 77 unrelated patients, as a molecular diagnosis routine. In addition, Multiplex Ligation-dependent Probe Amplification and microarray-based Comparative Genomic Hybridization techniques were applied to detect large rearrangements, and minigene assays were performed to confirm the mRNA processing aberrations caused by splice-site mutations. The designed panel included all the USH causative genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, ADGRV1, WHRN and CLRN1) as well as four uncertainly associated genes (HARS, PDZD7, CEP250 and C2orf71). The outcome showed an overall mutation detection ratio of 82.8% and allowed the identification of 42 novel putatively pathogenic mutations. Furthermore, we detected two novel nonsense mutations in CEP250 in a patient with a disease mimicking Usher syndrome that associates visual impairment due to cone-rod dystrophy and progressive hearing loss. Therefore, this approach proved reliable results for the molecular diagnosis of the disease and also allowed the consolidation of the CEP250 gene as disease causative for an Usher-like phenotype."	"Global genetic insight contributed by consanguineous Pakistani families segregating hearing loss. Consanguineous Pakistani pedigrees segregating deafness have contributed decisively to the discovery of 31 of the 68 genes associated with nonsyndromic autosomal recessive hearing loss (HL) worldwide. In this study, we utilized genome-wide genotyping, Sanger and exome sequencing to identify 163 DNA variants in 41 previously reported HL genes segregating in 321 Pakistani families. Of these, 70 (42.9%) variants identified in 29 genes are novel. As expected from genetic studies of disorders segregating in consanguineous families, the majority of affected individuals (94.4%) are homozygous for HL-associated variants, with the other variants being compound heterozygotes. The five most common HL genes in the Pakistani population are SLC26A4, MYO7A, GJB2, CIB2 and HGF, respectively. Our study provides a profile of the genetic etiology of HL in Pakistani families, which will allow for the development of more efficient genetic diagnostic tools, aid in accurate genetic counseling, and guide application of future gene-based therapies. These findings are also valuable in interpreting pathogenicity of variants that are potentially associated with HL in individuals of all ancestries. The Pakistani population, and its infrastructure for studying human genetics, will continue to be valuable to gene discovery for HL and other inherited disorders."	"Function and Dysfunction of TMC Channels in Inner Ear Hair Cells. The TMC1 channel was identified as a protein essential for hearing in mouse and human, and recognized as one of a family of eight such proteins in mammals. The TMC family is part of a superfamily of seven branches, which includes the TMEM16s. Vertebrate hair cells express both TMC1 and TMC2. They are located at the tips of stereocilia and are required for hair cell mechanotransduction. TMC1 assembles as a dimer and its similarity to the TMEM16s has enabled a predicted tertiary structure with an ion conduction pore in each subunit of the dimer. Cysteine mutagenesis of the pore supports the role of TMC1 and TMC2 as the core channel proteins of a larger mechanotransduction complex that includes PCDH15 and LHFPL5, and perhaps TMIE, CIB2 and others."	"Preferential Binding of Mg<sup>2+</sup> Over Ca<sup>2+</sup> to CIB2 Triggers an Allosteric Switch Impaired in Usher Syndrome Type 1J. Calcium and integrin binding protein 2 (CIB2) shares with the other members of the CIB family the ability to bind Ca<sup>2+</sup> and Mg<sup>2+</sup> via two functional EF-hand motifs, namely EF3 and EF4. As a cation sensor, CIB2 is able to switch to a conformation likely associated with specific biological functions yet to be clarified. Recent findings demonstrate the involvement of CIB2 in hearing physiology and a single, conservative point mutation (p.E64D) has been related to Usher Syndrome type 1J (USH1J) and non-syndromic hearing loss. We present an exhaustive biochemical and biophysical characterization of human wild type (WT) and E64D CIB2. We found that CIB2 does not possibly work as a calcium sensor under physiological conditions, its affinity for Ca<sup>2+</sup> (Kd<sup>app</sup> = 0.5 mM) being too low for detecting normal intracellular levels. Instead, CIB2 displays a significantly high affinity for Mg<sup>2+</sup> (Kd<sup>app</sup> = 290 μM), and it is probably Mg<sup>2+</sup> -bound under physiological conditions. At odds with the homologous protein CIB1, CIB2 forms a non-covalent dimer under conditions that mimic the physiological ones, and as such it interacts with its physiological target α7B integrin. NMR spectroscopy revealed a long-range allosteric communication between the residue E64, located at the N-terminal domain, and the metal cation binding site EF3, located at the C-terminal domain. The conservative E64D mutation breaks up such inter-domain communication resulting in the impaired ability of CIB2 to switch to its Mg<sup>2+</sup>-bound form. The ability to bind the target integrin peptide was substantially conserved for E64D CIB2, thus suggesting that the molecular defect associated with USH1J resides in its inability to sense Mg<sup>2+</sup> and adopt the required conformation."	"Genetic heterogeneity of congenital hearing impairment in Algerians from the Ghardaïa province. Consanguinity rate is high in Algeria, and the population is thus at high risk for genetic diseases transmitted on an autosomal recessive mode. Inherited congenital hearing impairment (HI) is a highly heterogeneous disorder, which affects approximately 1 in 800 Algerian newborns. Several hundreds of genes responsible for deafness have been reported among which more than one hundred are responsible for isolated deafness, of which 19 have already been reported to be involved in the Algerian population. This study focuses on patients from the Ghardaïa province, an ethnically and geographically isolated region of Southern Algeria that has the highest consanguinity rate in the country (56%). Eleven families, with at least two related members experiencing moderate to profound congenital HI, were recruited and screened for mutations in known HI genes. A preliminary screening for common mutations in GJB2 and GJB6 identified the prevalent GJB2:c.35delG mutation in four families. Targeted exome sequencing further identified the causal mutations in the remaining seven families: CIB2:c.97C &gt; T; p.(Arg33*), MYO7A:c.470+1G &gt; A; p.(?), and SLC26A4:c.410C &gt; T; p.(Ser137Leu) biallelic mutations in two families each, and a TECTA:c.2743 A &gt; G; p.(Ile915Val) monoallelic mutation in the only family with autosomal dominant transmission of the HI. Of note, the missense mutations of SLC26A4 and TECTA had not been previously reported. These results further substantiate the genetic heterogeneity of HI, even in reportedly isolated populations. However, several families may harbor the same mutations as a result of a long history of marriages between relatives. This study has important implications for the HI molecular diagnosis strategy, and to develop genetic counseling for families originating from the Ghardaïa province of Algeria."	"A comprehensive transcriptome analysis of skeletal muscles in two Polish pig breeds differing in fat and meat quality traits. Pork is the most popular meat in the world. Unfortunately, the selection pressure focused on high meat content led to a reduction in pork quality. The present study used RNA-seq technology to identify metabolic process genes related to pork quality traits and fat deposition. Differentially expressed genes (DEGs) were identified between pigs of Pulawska and Polish Landrace breeds for two the most important muscles (semimembranosus and longissimus dorsi). A total of 71 significant DEGs were reported: 15 for longissimus dorsi and 56 for semimembranosus muscles. The genes overexpressed in Pulawska pigs were involved in lipid metabolism (APOD, LXRA, LIPE, AP2B1, ENSSSCG00000028753 and OAS2) and proteolysis (CST6, CTSD, ISG15 and UCHL1). In Polish Landrace pigs, genes playing a role in biological adhesion (KIT, VCAN, HES1, SFRP2, CDH11, SSX2IP and PCDH17), actin cytoskeletal organisation (FRMD6, LIMK1, KIF23 and CNN1) and calcium ion binding (PVALB, CIB2, PCDH17, VCAN and CDH11) were transcriptionally more active. The present study allows for better understanding of the physiological processes associated with lipid metabolism and muscle fiber organization. This information could be helpful in further research aiming to estimate the genetic markers."	"Loss of CIB2 Causes Profound Hearing Loss and Abolishes Mechanoelectrical Transduction in Mice. Calcium and integrin-binding protein 2 (CIB2) belongs to a protein family with four known members, CIB1 through CIB4, which are characterized by multiple calcium-binding EF-hand domains. Among the family members, the Cib1 and Cib2 genes are expressed in mouse cochlear hair cells, and mutations in the human CIB2 gene have been associated with nonsyndromic deafness DFNB48 and syndromic deafness USH1J. To further explore the function of CIB1 and CIB2 in hearing, we established Cib1 and Cib2 knockout mice using the clustered regularly interspaced short palindromic repeat (CRISPR)-associated Cas9 nuclease (CRISPR/Cas9) genome editing technique. We found that loss of CIB1 protein does not affect auditory function, whereas loss of CIB2 protein causes profound hearing loss in mice. Further investigation revealed that hair cell stereocilia development is affected in Cib2 knockout mice. Noticeably, loss of CIB2 abolishes mechanoelectrical transduction (MET) currents in auditory hair cells. In conclusion, we show here that although both CIB1 and CIB2 are readily detected in the cochlea, only loss of CIB2 results in profound hearing loss, and that CIB2 is essential for auditory hair cell MET."	"Variants in CIB2 cause DFNB48 and not USH1J. The genetic, mutational and phenotypic spectrum of deafness-causing genes shows great diversity and pleiotropy. The best examples are the group of genes, which when mutated can either cause non-syndromic hearing loss (NSHL) or the most common dual sensory impairment, Usher syndrome (USH). Variants in the CIB2 gene have been previously reported to cause hearing loss at the DFNB48 locus and deaf-blindness at the USH1J locus. In this study, we characterize the phenotypic spectrum in a multiethnic cohort with autosomal recessive non-syndromic hearing loss (ARNSHL) due to variants in the CIB2 gene. Of the 6 families we ascertained, 3 segregated novel loss-of-function (LOF) variants, 2 families segregated missense variants (1 novel) and 1 family segregated a previously reported pathogenic variant in trans with a frameshift variant. This report is the first to show that biallelic LOF variants in CIB2 cause ARNSHL and not USH. In the era of precision medicine, providing the correct diagnosis (NSHL vs USH) is essential for patient care as it impacts potential intervention and prevention options for patients. Here, we provide evidence disqualifying CIB2 as an USH-causing gene."	"Genetic Testing of Non-familial Deaf Patients for CIB2 and GJB2 Mutations: Phenotype and Genetic Counselling. CIB2 and GJB2 genes variants contribute significantly in familial cases of prelingual recessive hearing loss (HL). This study was aimed to determine the CIB2 and GJB2 variants and associated phenotype in 150 non-familial individuals with HL. After getting informed consent, 150 non-familial deaf patients were enrolled and blood samples were obtained for DNA extraction. Pure tone air conduction audiometry was performed. Coding exons of CIB2 and GJB2 genes were Sanger sequenced. A tetra primer ARMS assay was developed for recurrent CIB2 variant. Four bi-allelic GJB2 variants, c.71G&gt;A p.(Trp24*), c.231G&gt;A p.(Trp77*), c.235delC p.(Leu79Cysfs3*) and c.35delG p.(Gly11Leufs24*), were found in nine hearing impaired individuals. We also found four homozygotes and five carriers of c.380G&gt;A p. (Arg127His) variant of controversial clinical significance. CIB2 sequencing revealed single recurrent variant c.272T&gt;C p. (Phe91Ser) segregating with HL in ten individuals. Among our patients, c.71G&gt;A (p.Trp24*) was the most common variant, accounted for 45% of GJB2 variants. Two known GJB2 variants, c.235delC p. (Leu79Cysfs3*) and c.310del14 p. (Lys105Argfs2*), are reported here for the first time in Pakistani population. Our data further support the benign nature of c.380G&gt;A p. (Arg127His) variant. For CIB2, c.272T&gt;C p. (Phe91Ser) is the second common cause of HL among our sporadic cases. Phenotypically, in our patients, individuals homozygous for GJB2 variants had profound HL, whereas CIB2 homozygotes had severe to profound prelingual HL. Our results suggest that GJB2 and CIB2 are common cause of HL in different Pakistani ethnicities."	"CIB2, defective in isolated deafness, is key for auditory hair cell mechanotransduction and survival. Defects of CIB2, calcium- and integrin-binding protein 2, have been reported to cause isolated deafness, DFNB48 and Usher syndrome type-IJ, characterized by congenital profound deafness, balance defects and blindness. We report here two new nonsense mutations (pGln12* and pTyr110*) in CIB2 patients displaying nonsyndromic profound hearing loss, with no evidence of vestibular or retinal dysfunction. Also, the generated CIB2<sup>-/-</sup> mice display an early onset profound deafness and have normal balance and retinal functions. In these mice, the mechanoelectrical transduction currents are totally abolished in the auditory hair cells, whilst they remain unchanged in the vestibular hair cells. The hair bundle morphological abnormalities of CIB2<sup>-/-</sup> mice, unlike those of mice defective for the other five known USH1 proteins, begin only after birth and lead to regression of the stereocilia and rapid hair-cell death. This essential role of CIB2 in mechanotransduction and cell survival that, we show, is restricted to the cochlea, probably accounts for the presence in CIB2<sup>-/-</sup> mice and CIB2 patients, unlike in Usher syndrome, of isolated hearing loss without balance and vision deficits."	"Molecular analysis of CIB4 gene and protein in Kermani sheep. The human calcium- and integrin-binding protein (CIB) family is composed of CIB1, CIB2, CIB3, and CIB4 proteins and the CIB4 gene affects fertility. Kermani sheep is one of the most important breeds of Iranian sheep breeds. The aim of this study was to analyze for the first time molecular characteristics of the CIB4 gene and protein in Kermani sheep. Different tissues were collected from the Kermani sheep and real time PCR was performed. The PCR products were sequenced, comparative analyses of the nucleotide sequences were performed, a phylogenetic tree was constructed, and different characteristics of CIB4 proteins were predicted. Real time PCR results showed that the CIB4 gene is expressed only in testis of Kermani sheep. The cDNA nucleotide sequence was identical with small tail Han sheep, cattle, goat, camel, horse, dog, mouse and human, respectively 100, 99, 99, 98, 98, 96, 96, and 96%. Hence, it can be suggested that the CIB4 gene plays a role in male fertility. Based on the phylogenetic analysis, sheep CIB4 gene has a close relationship with goat and cattle first, and then with camel and whale. Although we demonstrated that CIB4 is a testis-specific gene, expressed only in the testis and it interacts with other proteins, the mechanisms by which CIB4 expression is regulated need to be elucidated."	"CIB2 Negatively Regulates Oncogenic Signaling in Ovarian Cancer via Sphingosine Kinase 1. Sphingosine kinase 1 (SK1) is a key regulator of the cellular balance between proapoptotic and prosurvival sphingolipids. Oncogenic signaling by SK1 relies on its localization to the plasma membrane, which is mediated by the calcium and integrin binding protein CIB1 via its Ca<sup>2+</sup>-myristoyl switch function. Here we show that another member of the CIB family, CIB2, plays a surprisingly opposite role to CIB1 in the regulation of SK1 signaling. CIB2 bound SK1 on the same site as CIB1, yet it lacks the Ca<sup>2+</sup>-myristoyl switch function. As a result, CIB2 blocked translocation of SK1 to the plasma membrane and inhibited its subsequent signaling, which included sensitization to TNFα-induced apoptosis and inhibition of Ras-induced neoplastic transformation. CIB2 was significantly downregulated in ovarian cancer and low CIB2 expression was associated with poor prognosis in ovarian cancer patients. Notably, reintroduction of CIB2 in ovarian cancer cells blocked plasma membrane localization of endogenous SK1, reduced in vitro neoplastic growth and tumor growth in mice, and suppressed cell motility and invasiveness both in vitro and in vivo Consistent with the in vitro synergistic effects between the SK1-specific inhibitor SK1-I and standard chemotherapeutics, expression of CIB2 also sensitized ovarian cancer cells to carboplatin. Together, these findings identify CIB2 as a novel endogenous suppressor of SK1 signaling and potential prognostic marker and demonstrate the therapeutic potential of SK1 in this gynecologic malignancy. Cancer Res; 77(18); 4823-34. ©2017 AACR."	"CIB2 interacts with TMC1 and TMC2 and is essential for mechanotransduction in auditory hair cells. Inner ear hair cells detect sound through deflection of stereocilia, the microvilli-like projections that are arranged in rows of graded heights. Calcium and integrin-binding protein 2 is essential for hearing and localizes to stereocilia, but its exact function is unknown. Here, we have characterized two mutant mouse lines, one lacking calcium and integrin-binding protein 2 and one carrying a human deafness-related Cib2 mutation, and show that both are deaf and exhibit no mechanotransduction in auditory hair cells, despite the presence of tip links that gate the mechanotransducer channels. In addition, mechanotransducing shorter row stereocilia overgrow in hair cell bundles of both Cib2 mutants. Furthermore, we report that calcium and integrin-binding protein 2 binds to the components of the hair cell mechanotransduction complex, TMC1 and TMC2, and these interactions are disrupted by deafness-causing Cib2 mutations. We conclude that calcium and integrin-binding protein 2 is required for normal operation of the mechanotransducer channels and is involved in limiting the growth of transducing stereocilia.Inner ear hair cells detect sound through deflection of stereocilia that harbor mechanically-gated channels. Here the authors show that protein responsible for Usher syndrome, CIB2, interacts with these channels and is essential for their function and hearing in mice."	"Laser-capture micro dissection combined with next-generation sequencing analysis of cell type-specific deafness gene expression in the mouse cochlea. Cochlear implantation (CI), which directly stimulates the cochlear nerves, is the most effective and widely used medical intervention for patients with severe to profound sensorineural hearing loss. The etiology of the hearing loss is speculated to have a major influence of CI outcomes, particularly in cases resulting from mutations in genes preferentially expressed in the spiral ganglion region. To elucidate precise gene expression levels in each part of the cochlea, we performed laser-capture micro dissection in combination with next-generation sequencing analysis and determined the expression levels of all known deafness-associated genes in the organ of Corti, spiral ganglion, lateral wall, and spiral limbs. The results were generally consistent with previous reports based on immunocytochemistry or in situ hybridization. As a notable result, the genes associated with many kinds of syndromic hearing loss (such as Clpp, Hars2, Hsd17b4, Lars2 for Perrault syndrome, Polr1c and Polr1d for Treacher Collins syndrome, Ndp for Norrie Disease, Kal for Kallmann syndrome, Edn3 and Snai2 for Waardenburg Syndrome, Col4a3 for Alport syndrome, Sema3e for CHARGE syndrome, Col9a1 for Sticker syndrome, Cdh23, Cib2, Clrn1, Pcdh15, Ush1c, Ush2a, Whrn for Usher syndrome and Wfs1 for Wolfram syndrome) showed higher levels of expression in the spiral ganglion than in other parts of the cochlea. This dataset will provide a base for more detailed analysis in order to clarify gene functions in the cochlea as well as predict CI outcomes based on gene expression data."	"The roles of USH1 proteins and PDZ domain-containing USH proteins in USH2 complex integrity in cochlear hair cells. Usher syndrome (USH) is the most common cause of inherited deaf-blindness, manifested as USH1, USH2 and USH3 clinical types. The protein products of USH2 causative and modifier genes, USH2A, ADGRV1, WHRN and PDZD7, interact to assemble a multiprotein complex at the ankle link region of the mechanosensitive stereociliary bundle in hair cells. Defects in this complex cause stereociliary bundle disorganization and hearing loss. The four USH2 proteins also interact in vitro with USH1 proteins including myosin VIIa, USH1G (SANS), CIB2 and harmonin. However, it is unclear whether the interactions between USH1 and USH2 proteins occur in vivo and whether USH1 proteins play a role in USH2 complex assembly in hair cells. In this study, we identified a novel interaction between myosin VIIa and PDZD7 by FLAG pull-down assay. We further investigated the role of the above-mentioned four USH1 proteins in the cochlear USH2 complex assembly using USH1 mutant mice. We showed that only myosin VIIa is indispensable for USH2 complex assembly at ankle links, indicating the potential transport and/or anchoring role of myosin VIIa for USH2 proteins in hair cells. However, myosin VIIa is not required for USH2 complex assembly in photoreceptors. We further showed that, while PDZ protein harmonin is not involved, its paralogous USH2 proteins, PDZD7 and whirlin, function synergistically in USH2 complex assembly in cochlear hair cells. In summary, our studies provide novel insight into the functional relationship between USH1 and USH2 proteins in the cochlea and the retina as well as the disease mechanisms underlying USH1 and USH2."	"Advances in genetic hearing loss: CIB2 gene. Hearing plays a crucial role in human development. Receiving and processing sounds are essential for the advancement of the speech ability during the early childhood and for a proper functioning in the society. Hearing loss is one of the most frequent disabilities that affect human senses. It can be caused by genetic or environmental factors or both of them. Calcium- and integrin-binding protein 2 (CIB2) is one of the recently identified genes, involved in HI pathogenesis. CIB2 is widely expressed in various human and animal tissues, mainly in skeletal muscle, nervous tissue, inner ear, and retina. The CIB2 protein is responsible for maintaining Ca<sup>2+</sup> homeostasis in cells and interacting with integrins-transmembrane receptors essential for cell adhesion, migration, and activation of signaling pathways. Calcium signaling pathway is crucial for signal transduction in the inner ear, and integrins regulate hair cell differentiation and maturation of the stereocilia. To date, mutations detected in CIB2 are causative for nonsyndromic hearing loss (DFNB48) or Usher syndrome type 1 J. Patients harboring biallelic CIB2 mutations suffer from bilateral, early onset, moderate to profound HI. In the paper, we summarize the current status of the research on CIB2."	"CIB1 and CIB2 are HIV-1 helper factors involved in viral entry. HIV-1 relies on the host-cell machinery to accomplish its replication cycle, and characterization of these helper factors contributes to a better understanding of HIV-host interactions and can identify potential novel antiviral targets. Here we explored the contribution of CIB2, previously identified by RNAi screening as a potential helper factor, and its homolog, CIB1. Knockdown of either CIB1 or CIB2 strongly impaired viral replication in Jurkat cells and in primary CD4+ T-lymphocytes, identifying these proteins as non-redundant helper factors. Knockdown of CIB1 and CIB2 impaired envelope-mediated viral entry for both for X4- and R5-tropic HIV-1, and both cell-free and cell-associated entry pathways were affected. In contrast, the level of CIB1 and CIB2 expression did not influence cell viability, cell proliferation, receptor-independent viral binding to the cell surface, or later steps in the viral replication cycle. CIB1 and CIB2 knockdown was found to reduce the expression of surface molecules implicated in HIV-1 infection, including CXCR4, CCR5 and integrin α4β7, suggesting at least one mechanism through which these proteins promote viral infection. Thus, this study identifies CIB1 and CIB2 as host helper factors for HIV-1 replication that are required for optimal receptor-mediated viral entry."	"Genetic analysis of Tunisian families with Usher syndrome type 1: toward improving early molecular diagnosis. Usher syndrome accounts for about 50% of all hereditary deaf-blindness cases. The most severe form of this syndrome, Usher syndrome type I (USH1), is characterized by profound congenital sensorineural deafness, vestibular dysfunction, and retinitis pigmentosa. Six USH1 genes have been identified, MYO7A, CDH23, PCDH15, USH1C, SANS, and CIB2, encoding myosin VIIA, cadherin-23, protocadherin-15, harmonin, scaffold protein containing ankyrin repeats and a sterile alpha motif (SAM) domain, and calcium- and integrin-binding member 2, respectively. In the present study, we recruited four Tunisian families with a diagnosis of USH1, together with healthy unrelated controls. Affected members underwent detailed audiologic and ocular examinations. We used the North African Deafness (NADf) chip to search for known North African mutations associated with USH. Then, we selected microsatellite markers covering USH1 known loci to genotype the DNA samples. Finally, we performed DNA sequencing of three known USH1 genes: MYO7A, PCDH15, and USH1C. Four biallelic mutations, all single base changes, were found in the MYO7A, USH1C, and PCDH15 genes. These mutations consist of a previously reported splicing defect c.470+1G&gt;A in MYO7A, three novel variants, including two nonsense (p.Arg3X and p.Arg134X) in USH1C and PCDH15, respectively, and one frameshift (p.Lys615Asnfs*6) in MYO7A. We found a remarkable genetic heterogeneity in the studied families with USH1 with a variety of mutations, among which three were novel. These novel mutations will be included in the NADf mutation screening chip that will allow a higher diagnosis efficiency of this extremely genetically heterogeneous disease. Ultimately, efficient molecular diagnosis of USH in a patient's early childhood is of utmost importance, allowing better educational and therapeutic management."	"Mutations in eight small DFNB genes are not a frequent cause of non-syndromic hereditary hearing loss in Czech patients. To evaluate the contribution of eight small NSHL-AR (non-syndromic deafness, autosomal recessive) genes to hereditary hearing loss in Czech patients. Unrelated Czech patients, adults and children, diagnosed with pre-lingual hereditary hearing loss with at least one similarly affected deaf sibling and with previously excluded mutations in the GJB2 gene were investigated by Sanger sequencing of the selected eight small NSHL-AR associated genes (CABP2 - 51 patients, CIB2 - 45 patients, PJVK/DFNB59 - 53 patients, GJB3 - 46 patients, ILDR1 - 48 patients, LHFPL5 - 66 patients, LRTOMT - 60 patients, TMIE - 64 patients). Mutations were detected in the LHFPL5 (DFNB67) gene. The patient is heterozygote for two already described pathogenic variants (p.Tyr127Cys, p.Thr165Met). In five samples, five rare heterozygous variants (two novel) predicted as pathogenic were detected in genes CABP2, ILDR1, LHFPL5 and LRTOMT. Mutations in eight small NSHL-AR genes are not a frequent cause of hereditary hearing loss in the Czech Republic. This diagnostic approach permitted the clarification of HL in only one patient - two heterozygous mutations were detected in LHFPL5 gene for the first time in Central Europe. As the use of panel base MPS certainly improves the diagnostic yield, future studies should rather profit from that diagnostic strategy."	"Correction: A Novel C-Terminal CIB2 (Calcium and Integrin Binding Protein 2) Mutation Associated with Non-Syndromic Hearing Loss in a Hispanic Family. NA"	"A Novel C-Terminal CIB2 (Calcium and Integrin Binding Protein 2) Mutation Associated with Non-Syndromic Hearing Loss in a Hispanic Family. Hearing loss is a complex disorder caused by both genetic and environmental factors. Previously, mutations in CIB2 have been identified as a common cause of genetic hearing loss in Pakistani and Turkish populations. Here we report a novel (c.556C&gt;T; p.(Arg186Trp)) transition mutation in the CIB2 gene identified through whole exome sequencing (WES) in a Caribbean Hispanic family with non-syndromic hearing loss. CIB2 belongs to the family of calcium-and integrin-binding (CIB) proteins. The carboxy-termini of CIB proteins are associated with calcium binding and intracellular signaling. The p.(Arg186Trp) mutation is localized within predicted type II PDZ binding ligand at the carboxy terminus. Our ex vivo studies revealed that the mutation did not alter the interactions of CIB2 with Whirlin, nor its targeting to the tips of hair cell stereocilia. However, we found that the mutation disrupts inhibition of ATP-induced Ca2+ responses by CIB2 in a heterologous expression system. Our findings support p.(Arg186Trp) mutation as a cause for hearing loss in this Hispanic family. In addition, it further highlights the necessity of the calcium binding property of CIB2 for normal hearing. "	"PDZD7 and hearing loss: More than just a modifier. Deafness is the most frequent sensory disorder. With over 90 genes and 110 loci causally implicated in non-syndromic hearing loss, it is phenotypically and genetically heterogeneous. Here, we investigate the genetic etiology of deafness in four families of Iranian origin segregating autosomal recessive non-syndromic hearing loss (ARNSHL). We used a combination of linkage analysis, homozygosity mapping, and a targeted genomic enrichment platform to simultaneously screen 90 known deafness-causing genes for pathogenic variants. Variant segregation was confirmed by Sanger sequencing. Linkage analysis and homozygosity mapping showed segregation with the DFNB57 locus on chromosome 10 in two families. Targeted genomic enrichment with massively parallel sequencing identified causal variants in PDZD7: a homozygous missense variant (p.Gly103Arg) in one family and compound heterozygosity for missense (p.Met285Arg) and nonsense (p.Tyr500Ter) variants in the second family. Screening of two additional families identified two more variants: (p.Gly228Arg) and (p.Gln526Ter). Variant segregation with the hearing loss phenotype was confirmed in all families by Sanger sequencing. The missense variants are predicted to be deleterious, and the two nonsense mutations produce null alleles. This report is the first to show that mutations in PDZD7 cause ARNSHL, a finding that offers addition insight into the USH2 interactome. We also describe a novel likely disease-causing mutation in CIB2 and illustrate the complexity associated with gene identification in diseases that exhibit large genetic and phenotypic heterogeneity."	"Integrated multiomics approach identifies calcium and integrin-binding protein-2 as a novel gene for pulse wave velocity. Carotid-femoral pulse wave velocity (PWV) is an important measure of arterial stiffness, which is an independent predictor of cardiovascular morbidity and mortality. In this study, we used an integrated genetic, epigenetic and transcriptomics approach to uncover novel molecular mechanisms contributing to PWV. We measured PWV in 1505 healthy twins of European descendent. A genomewide association analysis was performed using standardized residual of the inverse of PWV. We identified one single-nucleotide polymorphism (rs7164338) in the calcium and integrin-binding protein-2 (CIB2) gene on chromosome 15q25.1 associated with PWV [β = -0.359, standard error (SE) = 0.07, P = 4.8 × 10]. The same variant was also associated with increased CIB2 expression in leucocytes (β = 0.034, SE = 0.008, P = 4.95 × 10) and skin (β = 0.072, SE = 0.01, P = 2.35 × 10) and with hypomethylation of the gene promoter (β = -0.899, SE = 0.098, P = 3.63 × 10). Our data indicate that reduced methylation of the CIB2 promoter in individuals carrying rs7164338 may lead to increased CIB2 expression. Given that CIB2 is thought to regulate intracellular calcium levels, an increase in protein levels may prevent the accumulation of serum calcium and phosphate, ultimately slowing down the process of vascular calcification. This study shows the power of integrating multiple omics to discover novel cardiovascular mechanisms."	"Novel and recurrent CIB2 variants, associated with nonsyndromic deafness, do not affect calcium buffering and localization in hair cells. Variants in CIB2 can underlie either Usher syndrome type I (USH1J) or nonsyndromic hearing impairment (NSHI) (DFNB48). Here, a novel homozygous missense variant c.196C&gt;T and compound heterozygous variants, c.[97C&gt;T];[196C&gt;T], were found, respectively, in two unrelated families of Dutch origin. Besides, the previously reported c.272 T&gt;C functional missense variant in CIB2 was identified in two families of Pakistani origin. The missense variants are demonstrated not to affect subcellular localization of CIB2 in vestibular hair cells in ex vivo expression experiments. Furthermore, these variants do not affect the ATP-induced calcium responses in COS-7 cells. However, based on the residues affected, the variants are suggested to alter αIIβ integrin binding. HI was nonsyndromic in all four families. However, deafness segregating with the c.272T&gt;C variant in one Pakistani family is remarkably less severe than that in all other families with this mutation. Our results contribute to the insight in genotype-phenotype correlations of CIB2 mutations."	"Challenges and solutions for gene identification in the presence of familial locus heterogeneity. Next-generation sequencing (NGS) of exomes and genomes has accelerated the identification of genes involved in Mendelian phenotypes. However, many NGS studies fall short of identifying causal variants, with estimates for success rates as low as 25% for uncovering the pathological variant underlying disease etiology. An important reason for such failures is familial locus heterogeneity, where within a single pedigree causal variants in two or more genes underlie Mendelian trait etiology. As examples of intra- and inter-sibship familial locus heterogeneity, we present 10 consanguineous Pakistani families segregating hearing impairment due to homozygous variants in two different hearing impairment genes and a European-American pedigree in which hearing impairment is caused by four variants in three different genes. We have identified 41 additional pedigrees with syndromic and nonsyndromic hearing impairment for which a single previously reported hearing impairment gene has been identified but only segregates with the phenotype in a subset of affected pedigree members. We estimate that locus heterogeneity occurs in 15.3% (95% confidence interval: 11.9%, 19.9%) of the families in our collection. We demonstrate novel approaches to apply linkage analysis and homozygosity mapping (for autosomal recessive consanguineous pedigrees), which can be used to detect locus heterogeneity using either NGS or SNP array data. Results from linkage analysis and homozygosity mapping can also be used to group sibships or individuals most likely to be segregating the same causal variants and thereby increase the success rate of gene identification. "	"Targeted next generation sequencing for molecular diagnosis of Usher syndrome. Usher syndrome is an autosomal recessive disease that associates sensorineural hearing loss, retinitis pigmentosa and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous. To date, 10 genes have been associated with the disease, making its molecular diagnosis based on Sanger sequencing, expensive and time-consuming. Consequently, the aim of the present study was to develop a molecular diagnostics method for Usher syndrome, based on targeted next generation sequencing. A custom HaloPlex panel for Illumina platforms was designed to capture all exons of the 10 known causative Usher syndrome genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, GPR98, DFNB31 and CLRN1), the two Usher syndrome-related genes (HARS and PDZD7) and the two candidate genes VEZT and MYO15A. A cohort of 44 patients suffering from Usher syndrome was selected for this study. This cohort was divided into two groups: a test group of 11 patients with known mutations and another group of 33 patients with unknown mutations. Forty USH patients were successfully sequenced, 8 USH patients from the test group and 32 patients from the group composed of USH patients without genetic diagnosis. We were able to detect biallelic mutations in one USH gene in 22 out of 32 USH patients (68.75%) and to identify 79.7% of the expected mutated alleles. Fifty-three different mutations were detected. These mutations included 21 missense, 8 nonsense, 9 frameshifts, 9 intronic mutations and 6 large rearrangements. Targeted next generation sequencing allowed us to detect both point mutations and large rearrangements in a single experiment, minimizing the economic cost of the study, increasing the detection ratio of the genetic cause of the disease and improving the genetic diagnosis of Usher syndrome patients."	"Targeted and genomewide NGS data disqualify mutations in MYO1A, the &quot;DFNA48 gene&quot;, as a cause of deafness. MYO1A is considered the gene underlying autosomal dominant nonsyndromic hearing loss DFNA48, based on six missense variants, one small in-frame insertion, and one nonsense mutation. Results from NGS targeting 66 deafness genes in 109 patients identified three families challenging this assumption: two novel nonsense (p.Tyr740* and p.Arg262*) and a known missense variant were identified heterozygously not only in index patients, but also in unaffected relatives. Deafness in these families clearly resulted from mutations in other genes (MYO7A, EYA1, and CIB2). Most of the altogether 10 MYO1A mutations are annotated in dbSNP, and population frequencies (dbSNP, 1000 Genomes, Exome Sequencing Project) above 0.1% contradict pathogenicity under a dominant model. One healthy individual was even homozygous for p.Arg262*, compatible with homozygous Myo1a knockout mice lacking any overt pathology. MYO1A seems dispensable for hearing and overall nonessential. MYO1A adds to the list of &quot;erroneous disease genes&quot;, which will expand with increasing availability of large-scale sequencing data. "	"Usher protein functions in hair cells and photoreceptors. The 10 different genes associated with the deaf/blind disorder, Usher syndrome, encode a number of structurally and functionally distinct proteins, most expressed as multiple isoforms/protein variants. Functional characterization of these proteins suggests a role in stereocilia development in cochlear hair cells, likely owing to adhesive interactions in hair bundles. In mature hair cells, homodimers of the Usher cadherins, cadherin 23 and protocadherin 15, interact to form a structural fiber, the tip link, and the linkages that anchor the taller stereocilia's actin cytoskeleton core to the shorter adjacent stereocilia and the elusive mechanotransduction channels, explaining the deafness phenotype when these molecular interactions are perturbed. The conundrum is that photoreceptors lack a synonymous mechanotransduction apparatus, and so a common theory for Usher protein function in the two neurosensory cell types affected in Usher syndrome is lacking. Recent evidence linking photoreceptor cell dysfunction in the shaker 1 mouse model for Usher syndrome to light-induced protein translocation defects, combined with localization of an Usher protein interactome at the periciliary region of the photoreceptors suggests Usher proteins might regulate protein trafficking between the inner and outer segments of photoreceptors. A distinct Usher protein complex is trafficked to the ribbon synapses of hair cells, and synaptic defects have been reported in Usher mutants in both hair cells and photoreceptors. This review aims to clarify what is known about Usher protein function at the synaptic and apical poles of hair cells and photoreceptors and the prospects for identifying a unifying pathobiological mechanism to explain deaf/blindness in Usher syndrome. "	"Multiple bHLH proteins form heterodimers to mediate CRY2-dependent regulation of flowering-time in Arabidopsis. Arabidopsis thaliana cryptochrome 2 (CRY2) mediates light control of flowering time. CIB1 (CRY2-interacting bHLH 1) specifically interacts with CRY2 in response to blue light to activate the transcription of FT (Flowering Locus T). In vitro, CIB1 binds to the canonical E-box (CACGTG, also referred to as G-box) with much higher affinity than its interaction with non-canonical E-box (CANNTG) DNA sequences. However, in vivo, CIB1 binds to the chromatin region of the FT promoter, which only contains the non-canonical E-box sequences. Here, we show that CRY2 also interacts with at least CIB5, in response to blue light, but not in darkness or in response to other wavelengths of light. Our genetic analysis demonstrates that CIB1, CIB2, CIB4, and CIB5 act redundantly to activate the transcription of FT and that they are positive regulators of CRY2 mediated flowering. More importantly, CIB1 and other CIBs proteins form heterodimers, and some of the heterodimers have a higher binding affinity than the CIB homodimers to the non-canonical E-box in the in vitro DNA-binding assays. This result explains why in vitro CIB1 and other CIBs bind to the canonical E-box (G-box) with a higher affinity, whereas they are all associated with the non-canonical E-boxes at the FT promoter in vivo. Consistent with the hypothesis that different CIB proteins play similar roles in the CRY2-midiated blue light signaling, the expression of CIB proteins is regulated specifically by blue light. Our study demonstrates that CIBs function redundantly in regulating CRY2-dependent flowering, and that different CIBs form heterodimers to interact with the non-canonical E-box DNA in vivo. "	"Usher proteins in inner ear structure and function. Usher syndrome (USH) is a neurosensory disorder affecting both hearing and vision in humans. Linkage studies of families of USH patients, studies in animals, and characterization of purified proteins have provided insight into the molecular mechanisms of hearing. To date, 11 USH proteins have been identified, and evidence suggests that all of them are crucial for the function of the mechanosensory cells of the inner ear, the hair cells. Most USH proteins are localized to the stereocilia of the hair cells, where mechano-electrical transduction (MET) of sound-induced vibrations occurs. Therefore, elucidation of the functions of USH proteins in the stereocilia is a prerequisite to understanding the exact mechanisms of MET. "	"Mutations in CIB2 calcium and integrin-binding protein disrupt auditory hair cell calcium homeostasis in Usher syndrome type 1J and non-syndromic deafness DFNB48. NA"	"A discovery resource of rare copy number variations in individuals with autism spectrum disorder. The identification of rare inherited and de novo copy number variations (CNVs) in human subjects has proven a productive approach to highlight risk genes for autism spectrum disorder (ASD). A variety of microarrays are available to detect CNVs, including single-nucleotide polymorphism (SNP) arrays and comparative genomic hybridization (CGH) arrays. Here, we examine a cohort of 696 unrelated ASD cases using a high-resolution one-million feature CGH microarray, the majority of which were previously genotyped with SNP arrays. Our objective was to discover new CNVs in ASD cases that were not detected by SNP microarray analysis and to delineate novel ASD risk loci via combined analysis of CGH and SNP array data sets on the ASD cohort and CGH data on an additional 1000 control samples. Of the 615 ASD cases analyzed on both SNP and CGH arrays, we found that 13,572 of 21,346 (64%) of the CNVs were exclusively detected by the CGH array. Several of the CGH-specific CNVs are rare in population frequency and impact previously reported ASD genes (e.g., NRXN1, GRM8, DPYD), as well as novel ASD candidate genes (e.g., CIB2, DAPP1, SAE1), and all were inherited except for a de novo CNV in the GPHN gene. A functional enrichment test of gene-sets in ASD cases over controls revealed nucleotide metabolism as a potential novel pathway involved in ASD, which includes several candidate genes for follow-up (e.g., DPYD, UPB1, UPP1, TYMP). Finally, this extensively phenotyped and genotyped ASD clinical cohort serves as an invaluable resource for the next step of genome sequencing for complete genetic variation detection."	"Alterations of the CIB2 calcium- and integrin-binding protein cause Usher syndrome type 1J and nonsyndromic deafness DFNB48. Sensorineural hearing loss is genetically heterogeneous. Here, we report that mutations in CIB2, which encodes a calcium- and integrin-binding protein, are associated with nonsyndromic deafness (DFNB48) and Usher syndrome type 1J (USH1J). One mutation in CIB2 is a prevalent cause of deafness DFNB48 in Pakistan; other CIB2 mutations contribute to deafness elsewhere in the world. In mice, CIB2 is localized to the mechanosensory stereocilia of inner ear hair cells and to retinal photoreceptor and pigmented epithelium cells. Consistent with molecular modeling predictions of calcium binding, CIB2 significantly decreased the ATP-induced calcium responses in heterologous cells, whereas mutations in deafness DFNB48 altered CIB2 effects on calcium responses. Furthermore, in zebrafish and Drosophila melanogaster, CIB2 is essential for the function and proper development of hair cells and retinal photoreceptor cells. We also show that CIB2 is a new member of the vertebrate Usher interactome."	"Biophysical and structural studies of the human calcium- and integrin-binding protein family: understanding their functional similarities and differences. The human calcium- and integrin-binding protein 1 (CIB1) plays important roles in various cellular functions. In this study, three other members of this protein family (CIB2-4: CIB2, CIB3, and CIB4) were purified and subsequently characterized using biophysical and structural approaches. As expected from sequence alignments, CIB2-4 were shown to bind calcium (Ca(2+)) and magnesium (Mg(2+)) ions. Binding of Ca(2+) or Mg(2+) ions changes the secondary structure of CIB2-4 and the exposure of hydrophobic surface area. Ca(2+) and Mg(2+) ions also stabilize the tertiary structures for CIB2 and CIB3. Through in vitro binding experiments, we show that CIB2 can interact with the integrin αIIb cytoplasmic domain and the integrin α7b membrane-proximal fragment. Fluorescence experiments using a 7-azatryptophan labeled peptide demonstrate that CIB2, CIB3, and CIB4 are binding partners for the integrin αIIb subunit, which suggests that they are potentially involved in regulating integrin αIIb subunit activation. The distinct responses of αIIb to the different CIB3 and CIB4 metal (Ca(2+) and Mg(2+)) binding states imply a potential connection between the calcium and integrin signaling pathways."	"Biochemical characterization and expression analysis of a novel EF-hand Ca2+ binding protein calmyrin2 (Cib2) in brain indicates its function in NMDA receptor mediated Ca2+ signaling. Calmyrin2 (CaMy2, Cib2) is a novel EF-hand calcium-binding protein found recently in skeletal muscles. CaMy2 mRNA was also detected in brain, but nothing is known about CaMy2 protein localization and properties in the brain. We report cloning and characterization of CaMy2 in rat brain: its expression pattern, intracellular localization and biochemical features. CaMy2 binds Ca2+ and exhibits Ca2+/conformational switch. Moreover, CaMy2 undergoes N-myristoylation without Ca2+/myristoyl switch, is membrane-associated and localizes in neurons together with Golgi apparatus and dendrite markers. CaMy2 transcript and protein are present mainly in the hippocampus and cortex. In cultured hippocampal neurons, CaMy2 is induced upon neuronal activation. Most prominent increase in CaMy2 protein (7-fold), and mRNA (2-fold) occurs upon stimulation of NMDA receptor (NMDAR). The induction is blocked by translation inhibitors, specific antagonists of NMDAR, the Ca2+-chelator BAPTA, and inhibitors of ERK1/2 and PKC, kinases transmitting NMDAR-linked Ca2+ signal. Our results show that CaMy2 level is controlled by NMDAR and Ca2+ and suggest CaMy2 role in Ca2+ signaling underlying NMDAR activation."	"Molecular characterization of the sheep CIB1 gene. The calcium and integrin binding protein 1(CIB1), is an EF-hand-containing protein that binds many effector proteins including the platelet alphaIIbbeta3 integrin and potentially regulates their functions. Here we report the cloning and characterization of the sheep CIB1 gene. The CIB1 cDNA is 885-bp in size, containing a 45-bp of 5' untranslated region (UTR), a 264-bp long 3'-UTR and a 576-bp open reading frame that encodes 191 amino acids. The sheep CIB1 cDNA shows 98.3, 92.0, 91.8, 91.3, 90.5 and 90.1% of similarity, at the nucleotide level, to its equivalents in cattle, pigs, rhesus monkey, humans, rats and mice, respectively at the deduced protein level, the corresponding values are more than 94%. The sheep CIB1 gene consisted of seven exons. Quantitative PCR (Q-PCR) showed that CIB1 was widely expressed in different tissues with the highest level in the testis, suggesting that it may play a role in ram fertility. We cloned the sheep CIB2, CIB3 and CIB4 genes and detected their expression patterns in different tissues."	"Cib2 binds integrin alpha7Bbeta1D and is reduced in laminin alpha2 chain-deficient muscular dystrophy. Mutations in the gene encoding laminin alpha2 chain cause congenital muscular dystrophy type 1A. In skeletal muscle, laminin alpha2 chain binds at least two receptor complexes: the dystrophin-glycoprotein complex and integrin alpha7beta1. To gain insight into the molecular mechanisms underlying this disorder, we performed gene expression profiling of laminin alpha2 chain-deficient mouse limb muscle. One of the down-regulated genes encodes a protein called Cib2 (calcium- and integrin-binding protein 2) whose expression and function is unknown. However, the closely related Cib1 has been reported to bind integrin alphaIIb and may be involved in outside-in-signaling in platelets. Since Cib2 might be a novel integrin alpha7beta1-binding protein in muscle, we have studied Cib2 expression in the developing and adult mouse. Cib2 mRNA is mainly expressed in the developing central nervous system and in developing and adult skeletal muscle. In skeletal muscle, Cib2 colocalizes with the integrin alpha7B subunit at the sarcolemma and at the neuromuscular and myotendinous junctions. Finally, we demonstrate that Cib2 is a calcium-binding protein that interacts with integrin alpha7Bbeta1D. Thus, our data suggest a role for Cib2 as a cytoplasmic effector of integrin alpha7Bbeta1D signaling in skeletal muscle."	"Fine mapping of the keratoconus with cataract locus on chromosome 15q and candidate gene analysis. To report the fine mapping of the keratoconus with cataract locus on chromosome 15q and the mutational analysis of positional candidate genes. Genotyping of two novel microsatellite markers and a single nucleotide polymorphism (SNP) in the critical region of linkage for keratoconus with cataract on 15q was performed. Positional candidate genes (MORF4L1, KIAA1055, ETFA, AWP1, REC14, KIAA1199, RCN2, FAH, IDH3A, MTHFS, ADAMTS7, MAN2C1, PTPN9, KIAA1024, ARNT2, BCL2A1, ISL2, C15ORF22 (P24B), DNAJA4, FLJ14594, CIB2 (KIP2), C15ORF5, and PSMA4) prioritized on the basis of ocular expression and probable function were screened by PCR-based DNA sequencing methods. We report the refinement of the linkage region for keratoconus with cataract to an interval of approximately 5.5 Mb flanked by the MAN2C1 gene and the D15S211 marker on chromosome 15q. Mutational analysis of positional candidate genes detected many sequence variations and single nucleotide polymorphisms. None of the sequence variants were considered pathogenic as they were also found in unaffected family members and normal control DNA samples. Fine mapping of the keratoconus with cataract locus on 15q has reduced the linked region to 5.5 Mb, thereby excluding 28 candidate genes. A further 23 candidate genes were excluded by direct sequencing methods, although a pathogenic genomic rearrangement or exonic deletion would not have been detected."	"Regulation of replication of lambda phage and lambda plasmid DNAs at low temperature. It was previously demonstrated that while lysogenic development of bacteriophage lambda in Escherichia coli proceeds normally at low temperature (20-25 degrees C), lytic development is blocked under these conditions owing to the increased stability of the phage CII protein. This effect was proposed to be responsible for the increased stimulation of the pE promoter, which interferes with expression of the replication genes, leading to inhibition of phage DNA synthesis. Here we demonstrate that the burst size of phage lambda cIb2, which is incapable of lysogenic development, increases gradually over the temperature range from 20 to 37 degrees C, while no phage progeny are observed at 20 degrees C. Contrary to previous reports, it is possible to demonstrate that pE promoter activation by CII may be more efficient at lower temperature. Using density-shift experiments, we found that phage DNA replication is completely blocked at 20 degrees C. Phage growth was also inhibited in cells overexpressing cII, which confirms that CII is responsible for inhibition of phage DNA replication. Unexpectedly, we found that replication of plasmids derived from bacteriophage lambda is neither inhibited at 20 degrees C nor in cells overexpressing cII. We propose a model to explanation the differences in replication observed between lambda phage and lambda plasmid DNA at low temperature."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CLDN14"	"nonsyndromic genetic deafness"	"Integrative Omics Analyses Reveal Epigenetic Memory in Diabetic Renal Cells Regulating Genes Associated With Kidney Dysfunction. Diabetic kidney disease (DKD) is a major complication of diabetes and the leading cause of end-stage renal failure. Epigenetics has been associated with metabolic memory, in which prior periods of hyperglycemia enhance the future risk of developing DKD despite subsequent glycemic control. To understand the mechanistic role of such epigenetic memory in human DKD and identify new therapeutic targets, we profiled gene expression, DNA methylation, and chromatin accessibility in kidney proximal tubule epithelial cells (PTECs) derived from non-diabetic and Type-2 diabetic (T2D) subjects. T2D-PTECs displayed persistent gene expression and epigenetic changes with and without TGFβ1 treatment, even after culturing in vitro under similar conditions as non-diabetic PTECs, signified by deregulation of fibrotic and transport associated genes (TAGs). Motif-analysis of differential DNA methylation and chromatin accessibility regions associated with genes differentially regulated in T2D revealed enrichment for SMAD3, HNF4A, and CTCF transcription factor binding sites. Furthermore, the downregulation of several TAGs in T2D (including CLDN10, CLDN14, CLDN16, SLC16A2, SLC16A5) was associated with promoter hypermethylation, decreased chromatin accessibility and reduced enrichment of HNF4A, histone H3-lysine-27-acetylation, and CTCF. Together, these integrative analyses reveal epigenetic memory underlying the deregulation of key target genes in T2D-PTECs that may contribute to sustained renal dysfunction in DKD."	"Loss of inner hair cell ribbon synapses and auditory nerve fiber regression in Cldn14 knockout mice. Proper functioning of the auditory nerve is of critical importance for auditory rehabilitation by cochlear implants. Here we used the Cldn14<sup>-/-</sup> mouse to study in detail the effects of Claudin 14 loss on auditory synapses and the auditory nerve. Mutations in the tight junction protein Claudin 14 cause autosomal recessive non-syndromic hearing loss (DFNB29) in humans and mice, due to extensive degeneration of outer and inner hair cells. Here we show that massive inner hair cell loss in Cldn14<sup>-/-</sup> mice starts after the third postnatal week. Immunohistochemical analysis, using presynaptic Ribeye and postsynaptic GluR2 or PSD 95 as markers, revealed the degeneration of full ribbon synapses in inner hair cells from apical cochlear regions already at postnatal day 12 (P12). At P20, significant reduction in number of ribbon synapses has been observed for all cochlear regions and the loss of synaptic ribbons becomes even more prominent in residual inner hair cells from middle and apical cochlear regions at P45, which by then lost more than 40% of all ribbon synapses. In contrast to excessive noise exposure, loss of Claudin 14 does not cause an increase in &quot;orphan&quot; ribbons with no postsynaptic counterpart due to a reduction of postsynaptic structures. Hair cell loss in Cldn14<sup>-/-</sup> mice is associated with regression of peripheral auditory nerve processes, especially of outer radial fibers, which normally innervate the outer hair cells. The number of spiral ganglion neurons per area, however, was unchanged between the genotypes. Different effects were observed in the cochlear nucleus complex (CNC), the central projection area of the auditory nerve. While the dorsal cochlear nucleus (DCN) showed a significant 19.7% volume reduction, VGLUT-1 input was reduced by 34.4% in the ventral cochlear nucleus (VCN) but not in the DCN of Cldn14<sup>-/-</sup> mice. Taken together, massive inner hair cell loss starts after the third postnatal week in Cldn14<sup>-/-</sup> mice, but is preceded by the loss of ribbon synapses, which may be a first sign of an ongoing degeneration process in otherwise morphologically inconspicuously inner hair cells. In addition to the regression of peripheral nerve processes, reduced levels of VGLUT-1 in the VCN of Cldn14<sup>-/-</sup> mice suggests that Claudin 14 loss does not only cause hair cell loss but also affects peripheral and central connectivity of the auditory nerve."	"Claudins in Renal Physiology and Pathology. Claudins are integral proteins expressed at the tight junctions of epithelial and endothelial cells. In the mammalian kidney, every tubular segment express a specific set of claudins that give to that segment unique properties regarding permeability and selectivity of the paracellular pathway. So far, 3 claudins (10b, 16 and 19) have been causally traced to rare human syndromes: variants of CLDN10b cause HELIX syndrome and variants of CLDN16 or CLDN19 cause familial hypomagnesemia with hypercalciuria and nephrocalcinosis. The review summarizes our current knowledge on the physiology of mammalian tight junctions and paracellular ion transport, as well as on the role of the 3 above-mentioned claudins in health and disease. Claudin 14, although not having been causally linked to any rare renal disease, is also considered, because available evidence suggests that it may interact with claudin 16. Some single-nucleotide polymorphisms of CLDN14 are associated with urinary calcium excretion and/or kidney stones. For each claudin considered, the pattern of expression, the function and the human syndrome caused by pathogenic variants are described."	"Identification of claudin-2, -6, -11 and -14 as prognostic markers in human breast carcinoma. The development of cancer occurs with various genomic and epigenetic modifications that act as indicators for early diagnosis and treatment. Recent data have shown that the abnormal expression of the claudin (CLDN) tight junction (TJ) proteins is involved in the tumorigenesis of numerous human cancers. Real-time quantitative PCR and western blotting were used to explore the differences in the expression of the CLDN TJ proteins in breast carcinoma tissues and non-neoplastic tissues. The results showed that CLDN5, CLDN9, CLDN12 and CLDN13 were not expressed in breast carcinoma tissues or non-neoplastic tissues. CLDN1, CLDN3, CLDN8 and CLDN10 were expressed in breast carcinoma and non-neoplastic tissues, but there was no significant difference between the expression of these CLDN proteins among them. The expression of CLDN2, -6, -11 and -14 varied between the breast carcinoma and non-neoplastic tissues. Moreover, 86 samples of breast carcinoma and non-neoplastic tissues were examined for the expression of CLDN2, -6, -11 and -14 by streptavidin-peroxidase immunohistochemical staining. The data revealed that the CLDN2, CLDN6, and CLDN14 were expressed in the cell membrane and the expression levels of these proteins were downregulated in breast carcinoma. The CLDN11 was expressed in cell cytoplasm and the expression level of CLDN11 was upregulated compared with those in non-neoplastic tissues. Consistent with these findings, the expression of CLDN2, CLDN6 and CLDN14 were downregulated, while the expression of CLDN11 was upregulated in breast carcinoma compared with those in non-neoplastic tissues. Furthermore, the associations between these CLDNs and clinicopathologic indicators were analyzed, and these CLDN expressions were revealed to be associated with distant metastasis and to predict a poor prognosis. In conclusion, our data showed that the expression levels of CLDN2, -6, -11 and -14 differed between breast carcinoma tissues and histologically non-neoplastic tissues, and the expression levels of these CLDNs may be useful as molecular markers for the diagnosis of breast carcinoma as well as for the determination of metastasis and prognosis."	"Genetic architecture of Meniere's disease. Meniere's disease (MD) is a complex disorder of the inner ear that causes vertigo attacks, fluctuating sensorineural hearing loss (SNHL), tinnitus and aural fullness. MD has been attributed to an accumulation of endolymph in the cochlear duct. The diagnosis of MD is based on the phenomenological association of clinical symptoms and the demonstration of SNHL during the vertigo attacks. Several evidences support a genetic contribution to MD including differences in the prevalence according to the ethnic background and familial aggregation in European and Asian populations in multiplex families with autosomal dominant inheritance. The genetic underpinnings of MD may include some rare monogenic forms in isolated families and a polygenic contribution in most familial and sporadic cases. So, familial MD has been reported in 6-8% of sporadic cases and several genes have been described in single Familial MD including FAM136A, DTNA, PRKCB, SEMA3D and DPT, suggesting genetic heterogeneity. Multiplex rare missense variants in OTOG gene have been reported in 33% of familial MD, suggesting multiallelic inheritance. Moreover, the genetic landscape of sporadic MD is more complex and it involves multiplex rare variants in several SNHL genes such as GJB2, USH1G, SLC26A4, ESRRB, and CLDN14 and axonal-guidance signalling genes such as NTN4 and NOX3. This review summarizes evidence to support a genetic contribution in MD and the start of deciphering the genetic architecture to design and develop a molecular map of MD."	"A Novel Nonsense Mutation (c.414G&gt;A; p.Trp138*) in CLDN14 Causes Hearing Loss in Yemeni Families: A Case Report. Non-syndromic hearing loss (NSHL) is a hereditary disorder that affects many populations. Many genes are involved in NSHL and the mutational load of these genes often differs among ethnic groups. Claudin-14 (CLDN14), a tight junction protein, is known to be associated with NSHL in many populations. In this study, we aimed to identify the responsible variants in 3 different Yemeni families affected with NSHL. Firstly, clinical exome sequencing (CES) performed for 3 affected patients from these different families identified a new nonsense variant (c.414G &gt; A) in CLDN14. This variant was then confirmed by Sanger sequencing and PCR-RFLP. Subsequently, four microsatellite markers were used to genotype these families, which revealed a founder effect for this variant. Overall, this study illustrates the implication of the CLDN14 gene in the Yemeni population with NSHL and identifies a new founder variant."	"Detailed Clinical Features of Deafness Caused by a Claudin-14 Variant. Tight junctions are cellular junctions that play a major role in the epithelial barrier function. In the inner ear, claudins, occludin, tricellulin, and angulins form the bicellular or tricellular binding of membrane proteins. In these, one type of claudin gene, CLDN14, was reported to be responsible for human hereditary hearing loss, DFNB29. Until now, nine pathogenic variants have been reported, and most phenotypic features remain unclear. In the present study, genetic screening for 68 previously reported deafness causative genes was carried out to identify CLDN14 variants in a large series of Japanese hearing loss patients, and to clarify the prevalence and clinical characteristics of DFNB29 in the Japanese population. One patient had a homozygous novel variant (c.241C&gt;T: p.Arg81Cys) (0.04%: 1/2549). The patient showed progressive bilateral hearing loss, with post-lingual onset. Pure-tone audiograms indicated a high-frequency hearing loss type, and the deterioration gradually spread to other frequencies. The patient showed normal vestibular function. Cochlear implantation improved the patient's sound field threshold levels, but not speech discrimination scores. This report indicated that claudin-14 is essential for maintaining the inner ear environment and suggested the possible phenotypic expansion of DFNB29. This is the first report of a patient with a tight junction variant receiving a cochlear implantation."	"Dietary vinegar prevents kidney stone recurrence via epigenetic regulations. Epidemiological evidence of over 9000 people suggests that daily intake of vinegar whose principal bioactive component is acetic acid is associated with a reduced risk of nephrolithiasis. The underlying mechanism, however, remains largely unknown. We examined the in vitro and in vivo anti-nephrolithiasis effects of vinegar and acetate. A randomized study was performed to confirm the effects of vinegar in humans. We found individuals with daily consumption of vinegar compared to those without have a higher citrate and a lower calcium excretion in urine, two critical molecules for calcium oxalate (CaOx) kidney stone in humans. We observed that oral administration of vinegar or 5% acetate increased citrate and reduced calcium in urinary excretion, and finally suppressed renal CaOx crystal formation in a rat model. Mechanism dissection suggested that acetate enhanced acetylation of Histone H3 in renal tubular cells and promoted expression of microRNAs-130a-3p, -148b-3p and -374b-5p by increasing H3K9, H3K27 acetylation at their promoter regions. These miRNAs can suppress the expression of Nadc1 and Cldn14, thus enhancing urinary citrate excretion and reducing urinary calcium excretion. Significantly these mechanistic findings were confirmed in human kidney tissues, suggesting similar mechanistic relationships exist in humans. Results from a pilot clinical study indicated that daily intake of vinegar reduced stone recurrence, increased citrate and reduced calcium in urinary excretion in CaOx stone formers without adverse side effects. Vinegar prevents renal CaOx crystal formation through influencing urinary citrate and calcium excretion via epigenetic regulations. Vinegar consumption is a promising strategy to prevent CaOx nephrolithiasis occurrence and recurrence. FUND: National Natural Science Foundations of China and National Natural Science Foundation of Guangdong Province."	"Excess of Rare Missense Variants in Hearing Loss Genes in Sporadic Meniere Disease. Meniere's disease (MD) is a clinical spectrum of rare disorders characterized by vertigo attacks, associated with sensorineural hearing loss (SNHL) and tinnitus involving low to medium frequencies. Although it shows familial aggregation with incomplete phenotypic forms and variable expressivity, most cases are considered sporadic. The aim of this study was to investigate the burden for rare variation in SNHL genes in patients with sporadic MD. We conducted a targeted-sequencing study including SNHL and familial MD genes in 890 MD patients to compare the frequency of rare variants in cases using three independent public datasets as controls. Patients with sporadic MD showed a significant enrichment of missense variants in SNHL genes that was not found in the controls. The list of genes includes GJB2, USH1G, SLC26A4, ESRRB, and CLDN14. A rare synonymous variant with unknown significance was found in the MARVELD2 gene in several unrelated patients with MD. There is a burden of rare variation in certain SNHL genes in sporadic MD. Furthermore, the interaction of common and rare variants in SNHL genes may have an additive effect on MD phenotype. This study will contribute to design a gene panel for the genetic diagnosis of MD."	"Deregulated renal magnesium transport during lipopolysaccharide-induced acute kidney injury in mice. Magnesium (Mg<sup>2+</sup>) abnormalities during sepsis have been reported, but the underlying mechanisms during acute inflammation are poorly understood. We hypothesized that a decrease in GFR and/or changes in transporters or channels for Mg<sup>2+</sup> could be responsible for the observed Mg<sup>2+</sup> abnormalities. Therefore, we studied the metabolism of Mg<sup>2+</sup> in a murine model of endotoxemia. LPS-induced hypermagnesemia was paralleled by a decrease in creatinine clearance and an increase in the fractional excretion of Mg<sup>2+</sup>. In agreement with an altered renal Mg<sup>2+</sup> handling, endotoxemia decreased the renal expression of claudin (Cldn) 10b, Cldn16, Cldn19, parvalbumin, and of the solute carrier family (Slc) 41a3. Further, LPS increased the renal expression of Cldn14 and Slc41a1. The renal expression of the transient receptor potential melastin (Trpm) 6, Trpm7, and of cyclin M (Cnnm) 2 was unaltered in response to LPS. In vitro studies support a direct effect on the expression of Cldn10b, Cldn14, Cldn16, and Cldn19. Further, endotoxemia increased the fractional excretion of sodium, which was paralleled by a decrease of important renal sodium transporters. In the large intestine, the expression of Trpm7 was increased in response to LPS, whereas the expression of Trpm6 was decreased. Cnnm4 mRNA levels were unchanged in the large intestine. Further, Cldn12 and Na<sup>+</sup>-H<sup>+</sup> exchanger 3 (Slc9a3) expressions were decreased in the small intestine in response to LPS. Our findings indicate that endotoxemia is associated with hypermagnesemia and a disturbed Mg<sup>2+</sup> handling. It seems likely that LPS-induced hypermagnesemia is due to the decrease in renal function in response to LPS."	"Genetics of common complex kidney stone disease: insights from genome-wide association studies. Kidney stone disease is a common disorder in Western countries that is associated with significant suffering, morbidity, and cost for the healthcare system. Numerous studies have demonstrated familial aggregation of nephrolithiasis and a twin study estimated the heritability to be 56%. Over the past decade, genome-wide association studies have uncovered several sequence variants that confer increased risk of common complex kidney stone disease. The first reported variants were observed at the CLDN14 locus in the Icelandic population. This finding has since been replicated in other populations. The CLDN14 gene is expressed in tight junctions of the thick ascending limb of the loop of Henle, where the protein is believed to play a role in regulation of calcium transport. More recent studies have uncovered variants at the ALPL, SLC34A1, CASR, and TRPV5 loci, the first two genes playing a role in renal handling of phosphate, while the latter two are involved in calcium homeostasis. Although genetic data have provided insights into the molecular basis of kidney stone disease, much remains to be learned about the contribution of genetic factors to stone formation. Nevertheless, the progress made in recent years indicates that exciting times lie ahead in genetic research on kidney stone disease."	"Multiple claudin-claudin cis interfaces are required for tight junction strand formation and inherent flexibility. Tight junctions consist of a network of sealing strands that create selective ion permeability barriers between adjoining epithelial or endothelial cells. The current model for tight junction strands consists of paired rows of claudins (Cldn) coupled by a cis interface (X-1) derived from crystalline Cldn15. Here we show that tight junction strands exhibit a broad range of lateral bending, indicating diversity in cis interactions. By combining protein-protein docking, coevolutionary analysis, molecular dynamics, and a mutagenesis screen, we identify a new Cldn-Cldn cis interface (Cis-1) that shares interacting residues with X-1 but has an ~ 17° lateral rotation between monomers. In addition, we found that a missense mutation in a Cldn14 that causes deafness and contributes stronger to Cis-1 than to X-1 prevents strand formation in cultured cells. Our results suggest that Cis-1 contributes to the inherent structural flexibility of tight junction strands and is required for maintaining permeability barrier function and hearing."	"Novel Aspects of Renal Magnesium Homeostasis. Magnesium (Mg<sup>2+</sup>) is indispensable for several vital functions, such as neurotransmission, cardiac conductance, blood glucose, blood pressure regulation, and proper function of more than 300 enzymes. Thus, Mg<sup>2+</sup> homeostasis is subject to tight regulation. Besides the fast and immediate regulation of plasma Mg<sup>2+</sup>, a major part of Mg<sup>2+</sup> homeostasis is realized by a concerted action of epithelial molecular structures that tightly control intestinal uptake and renal absorption. This mechanism is provided by a combination of para- and transcellular pathways. Whereas the first pathway provides the organism with a maximal amount of vital substances by a minimal energy expenditure, the latter enables controlling and fine-tuning by means of local and regional regulatory systems and also, hormonal control. The paracellular pathway is driven by an electrochemical gradient and realized in principal by the tight junction (TJ), a supramolecular organization of membrane-bound proteins and their adaptor and scaffolding proteins. TJ determinants are claudins (CLDN), a family of membrane spanning proteins that generate a barrier or a pore between two adjacent epithelial cells. Many insights into molecular mechanisms of Mg<sup>2+</sup> handling have been achieved by the identification of alterations and mutations in human genes which cause disorders of paracellular Mg<sup>2+</sup> pathways (CLDN10, CLDN14, CLDN16, CLDN19). Also, in the distal convoluted tubule, a basolateral protein, CNNM2, causes if mutated, familial dominant and also recessive renal Mg<sup>2+</sup> wasting, albeit its true function has not been clarified yet, but is assumed to play a key role in the transcellular pathway. Moreover, mutations in human genes that are involved in regulating these proteins directly or indirectly cause, if mutated human diseases, mostly in combination with comorbidities as diabetes, cystic renal disease, or metabolic abnormalities. Generation and characterization of animal models harboring the corresponding mutations have further contributed to the elucidation of physiology and pathophysiology of Mg<sup>2+</sup> disorders. Finally, high-end crystallization techniques allow understanding of Mg<sup>2+</sup> handling in more detail. As this field is rapidly growing, we describe here the principles of physiology and pathophysiology of epithelial transport of renal Mg<sup>2+</sup> homeostasis with emphasis on recently identified mechanisms involved."	"Impact of ozone on claudins and tight junctions in the lungs. Claudins (CLDNs) are a major transmembrane protein component of tight junctions (TJs) in endothelia and epithelia. CLDNs are not only essential for sustaining the role of TJs in cell permeability but are also vital for cell signaling through protein-protein interactions. Ozone induces oxidative stress and lung inflammation in humans and experimental models, but the impact of ozone on claudins remains poorly understood. This study was to determine the expression of TJ proteins, such as claudin 3, 4, 5, and 14 following ozone exposure. Mice were exposed to 0.1, 1, or 2 ppm of ozone or ambient air for 6 h for 3 days. The impact of ozone on CLDNs, Nrf2, Keap1, and reactive oxygen species (ROS) were estimated using immunoblotting, immunohistochemical staining, confocal imaging, and ELISA analysis in mice and bronchial epithelial cells. Mice exposed to ozone experienced increased airway inflammatory cell infiltration and bronchial hyper-responsiveness compared to control mice. Additionally, CLDN3, CLDN4, ROS, Nrf2, and Keap1 protein expression increased, and lung CLDN14 protein expression decreased, in mice exposed to ozone compared with control mice. These results indicate that CLDNs are involved in airway inflammation following ozone exposure, suggesting that ozone affects TJ proteins through oxidative mechanisms."	"Transcription factor HNF1β regulates expression of the calcium-sensing receptor in the thick ascending limb of the kidney. Mutations in hepatocyte nuclear factor 1β (HNF1β) cause autosomal dominant tubulointerstitial kidney disease (ADTKD-HNF1β), and patients tend to develop renal cysts, maturity-onset diabetes of the young (MODY), and suffer from electrolyte disturbances, including hypomagnesemia, hypokalemia, and hypocalciuria. Previous HNF1β research focused on the renal distal convoluted tubule (DCT) to elucidate the ADTKD-HNF1β electrolyte phenotype, although 70% of Mg<sup>2+</sup> is reabsorbed in the thick ascending limb of Henle's loop (TAL). An important regulator of Mg<sup>2+</sup> reabsorption in the TAL is the calcium-sensing receptor (CaSR). This study used several methods to elucidate the role of HNF1β in electrolyte reabsorption in the TAL. HNF1β ChIP-seq data revealed a conserved HNF1β binding site in the second intron of the CaSR gene. Luciferase-promoter assays displayed a 5.8-fold increase in CaSR expression when HNF1β was present. Expression of the HNF1β p.Lys156Glu mutant, which prevents DNA binding, abolished CaSR expression. Hnf1β knockdown in an immortalized mouse kidney TAL cell line (MKTAL) reduced expression of the CaSR and Cldn14 (claudin 14) by 56% and 48%, respectively, while Cldn10b expression was upregulated 5.0-fold. These results were confirmed in a kidney-specific HNF1β knockout mouse, which exhibited downregulation of the Casr by 81%. Cldn19 and Cldn10b expression levels were also decreased by 37% and 83%, respectively, whereas Cldn3 was upregulated by 4.6-fold. In conclusion, HNF1β is a transcriptional activator of the CaSR. Consequently, patients with HNF1β mutations may have reduced CaSR activity in the kidney, which could explain cyst progression and hyperabsorption of Ca<sup>2+</sup> and Mg<sup>2+</sup> in the TAL resulting in hypocalciuria."	"Genetic analysis of CLDN14 in the Chinese population affected with non-syndromic hearing loss. The CLDN14 gene, encoding the tight junction protein Claudin-14, has been proposed as a candidate causative gene affecting autosomal recessive non-syndromic hearing loss (ARNSHL). Genetic analysis of nonsynonymous single-nucleotide variations (nsSNVs) in CLDN14 has been performed in different populations. The role of CLDN14 nsSNVs in contributing to hearing loss in Chinese populations would be investigated in this study. Target screening for CLDN14 variations were conducted in 500 unrelated patients diagnosed with non-syndromic hearing loss (NSHL). No reported pathogenic CLDN14 nsSNVs in heterozygote or homozygote were detected in this study, however, we identified 4 heterozygous nsSNVs [c.11C &gt; T, p.(Thr4Met); c.16G &gt; A, p.(Val6Met); c.68T &gt; C, p.(Ile23Thr); c.367A &gt; C, p.(Thr123Pro)] in CLDN14. The 4 nsSNVs are located at claudin-14 transmembrane domains, but assessed to be poorly conservative and non-pathogenic via multiple in silico algorithms. The structure-based analysis also suggested that the 4 nsSNVs had less structural and functional impact on claudin-14. Our findings indicated that CLDN14 might not be a major causative gene for NSHL in Chinese populations, which would contribute to fully understanding the genetic cause of NSHL in the East Asian populations."	"Mutations in OTOF, CLDN14 &amp; SLC26A4 genes as major causes of hearing impairment in Dhadkai village, Jammu &amp; Kashmir, India. A high incidence of hearing impairment is reported from the village of Dhadkai in the State of Jammu and Kashmir, India. Prevalence of endogamy in this community suggested a common genetic basis for the disorder. A genetic study was undertaken to ascertain the basis for the high incidence of hearing impairment in this region. In a two-step approach to identify the causative mutation/s, a whole-genome-based linkage analysis of an extended family of 45 members was carried out, which included 23 affected and 22 unaffected members. Mutational analysis for the candidate deafness genes helped reveal causative mutations in the family. In addition, seven deafness-causing genes, Cx26, SLC26A4, CLDN14, TMPRSS3, TMC1, TMIE and USH1C, were analyzed in smaller families with hearing impairment. In the 45-member extended family, the critical chromosomal region mapped to 2p24-p22.The c.2122C&gt;T (p.R708X) mutation in OTOF in 2p24-p22was identified as being the causal change. Linkage to 2p24-p22 locus was not observed in a particular branch of this extended family. Analysis of seven known deafness-causing genes in this branch revealed a mutation, c.254T&gt;A (p.V85D), in CLDN14. Among seven small families unrelated to the 45-member extended family, hearing loss was attributable to p.R708X in OTOF in three families and to p.V85D in CLDN14 in one family; a new mutation c.1668T&gt;A (p.Y556X) SLC26A4 was identified in two families and the causative change could not be identified in one family. This study suggested considerable genetic heterogeneity in the causation of hearing loss in Dhadkai. Recessive mutations were observed in at least three genes causing hearing loss: OTOF (p.R708X), SLC26A4 (p.Y556X) and CLDN14 (p.V85D). Mutation p.R708X appeared to be the major cause of hearing impairment in Dhadkai."	"miR-96 is required for normal development of the auditory hindbrain. The peripheral deafness gene Mir96 is expressed in both the cochlea and central auditory circuits. To investigate whether it plays a role in the auditory system beyond the cochlea, we characterized homozygous Dmdo/Dmdo mice with a point mutation in miR-96. Anatomical analysis demonstrated a significant decrease in volume of auditory nuclei in Dmdo/Dmdo mice. This decrease resulted from decreased cell size. Non-auditory structures in the brainstem of Dmdo/Dmdo mice or auditory nuclei of the congenital deaf Cldn14-/- mice revealed no such differences. Electrophysiological analysis in the medial nucleus of the trapezoid body (MNTB) showed that principal neurons fired preferentially multiple action potentials upon depolarization, in contrast to the single firing pattern prevalent in controls and Cldn14-/- mice. Immunohistochemistry identified significantly reduced expression of two predicted targets of the mutated miR-96, Kv1.6 and BK channel proteins, possibly contributing to the electrophysiological phenotype. Microscopic analysis of the Dmdo/Dmdo calyx of Held revealed a largely absent compartmentalized morphology, as judged by SV2-labeling. Furthermore, MNTB neurons from Dmdo/Dmdo mice displayed larger synaptic short-term depression, slower AMPA-receptor decay kinetics and a larger NMDA-receptor component, reflecting a less matured stage. Again, these synaptic differences were not present between controls and Cldn14-/- mice. Thus, deafness genes differentially affect the auditory brainstem. Furthermore, our study identifies miR-96 as an essential gene regulatory network element of the auditory system which is required for functional maturation in the peripheral and central auditory system alike."	"Measurements of ionic concentrations along with endocochlear potential in wild-type and claudin 14 knockout mice. To examine whether the changes in endolymphatic ion concentrations were involved in hair cells degeneration in claudin-14 knockout (KO) mice (Cldn14<sup>-/-</sup>), we measured the endocochlear potential (EP) along with concentrations of K<sup>+</sup>, Na<sup>+</sup>, H<sup>+</sup>, or Ca<sup>2+</sup> ([K]e, [Na]e, pHe, [Ca]e) in Cldn14<sup>-/-</sup>, in which hair cells were selectively damaged, and compared with measurements in wild type mice (Wt). We used the Cldn14<sup>-/-</sup> from 3 weeks of age, in which the auditory brain responses (ABR) was severely diminished. Using double-barreled ion-selective microelectrodes, we measured [K]e, [Na]e, pHe, and [Ca]e in both Wt and Cldn14<sup>-/-</sup> at 8-10 weeks of age. (1) In Wt, the EP was +92mV. [K]e, [Na]e, pHe, and [Ca]e were 169mM, ∼1.0mM, 7.50, and 395nM, respectively. In the Cldn14<sup>-/-</sup>, the EP was +96mV. [K]e, [Na]e, pHe, and [Ca]e were 167mM, ∼1.0mM, 7.73, and 179nM, respectively. No significant differences in the above values were observed between Wt and Cldn14<sup>-/-</sup>. (2) A significant linear correlation between EP and [Ca]e (R=0.93) was observed for both Wt and Cldn14<sup>-/-</sup>, but no correlation was observed between EP and K<sup>+</sup>, Na<sup>+</sup>, or H<sup>+</sup>. These findings suggest that (1) the changes in endolymphatic ion concentrations might not be involved in hair cells degeneration in Cldn14<sup>-/-</sup>, (2) [Ca]e might be regulated by EP in both Wt and Cldn14<sup>-/-</sup>."	"Genetic Risk Factors for Idiopathic Urolithiasis: A Systematic Review of the Literature and Causal Network Analysis. Urolithiasis has a high prevalence and recurrence rate. Prevention is key to patient management, but risk stratification is challenging. In particular, genetic predisposition for urinary stones is not fully understood. To review current evidence of potential causative genes for idiopathic urolithiasis and map their relationships to one another. This evidence is essential for future establishment of molecular targeted therapy. A systematic literature review from 2007 to 2017 was performed in accordance with the Preferred Reporting Items for Systematic Review and Meta-analyses guidelines. The search was restricted to human studies conducted as either case-control or genome-wide association studies, and published in English. We also performed a causal network analysis of candidate genes gained from the systematic review using Ingenuity Pathway Analysis (IPA). During the systematic screening of literature, 30 papers were selected for the review. A total of 20 genes with 42 polymorphisms/variants were found to be associated with urolithiasis risk. Their functional roles were mainly categorized as stone matrix, calcium and phosphate regulation, urinary concentration and constitution, and inflammation/oxidative stress. IPA network analysis revealed that these genes connected via signaling pathways and a proinflammatory/oxidative environment. This systematic review provides an updated gene list and novel causal networks for idiopathic urolithiasis risk. Although some genes such as SPP1, CASR, VDR, CLDN14, and SLC34A1 were identified by several studies and recognized by prior reviews, further investigation elucidating their roles in stone formation will be essential for future studies. In this review, we summarized recent literature regarding genes responsible for kidney stone risk. Based on a detailed review of 30 articles and computational network analysis, we concluded that disorder of mineral regulation with local inflammation in the kidney may cause kidney stone disease."	"Parathyroid hormone controls paracellular Ca<sup>2+</sup> transport in the thick ascending limb by regulating the tight-junction protein Claudin14. Renal Ca<sup>2+</sup> reabsorption is essential for maintaining systemic Ca<sup>2+</sup> homeostasis and is tightly regulated through the parathyroid hormone (PTH)/PTHrP receptor (PTH1R) signaling pathway. We investigated the role of PTH1R in the kidney by generating a mouse model with targeted deletion of PTH1R in the thick ascending limb of Henle (TAL) and in distal convoluted tubules (DCTs): Ksp-cre;Pth1r<sup> fl/fl </sup> Mutant mice exhibited hypercalciuria and had lower serum calcium and markedly increased serum PTH levels. Unexpectedly, proteins involved in transcellular Ca<sup>2+</sup> reabsorption in DCTs were not decreased. However, claudin14 (Cldn14), an inhibitory factor of the paracellular Ca<sup>2+</sup> transport in the TAL, was significantly increased. Analyses by flow cytometry as well as the use of Cldn14-lacZ knock-in reporter mice confirmed increased Cldn14 expression and promoter activity in the TAL of Ksp-cre;Pth1r<sup> fl/fl </sup> mice. Moreover, PTH treatment of HEK293 cells stably transfected with CLDN14-GFP, together with PTH1R, induced cytosolic translocation of CLDN14 from the tight junction. Furthermore, mice with high serum PTH levels, regardless of high or low serum calcium, demonstrated that PTH/PTH1R signaling exerts a suppressive effect on Cldn14. We therefore conclude that PTH1R signaling directly and indirectly regulates the paracellular Ca<sup>2+</sup> transport pathway by modulating Cldn14 expression in the TAL. Finally, systemic deletion of Cldn14 completely rescued the hypercalciuric and lower serum calcium phenotype in Ksp-cre;Pth1r<sup> fl/fl </sup> mice, emphasizing the importance of PTH in inhibiting Cldn14. Consequently, suppressing CLDN14 could provide a potential treatment to correct urinary Ca<sup>2+</sup> loss, particularly in patients with hypoparathyroidism."	"A variant in a cis-regulatory element enhances claudin-14 expression and is associated with pediatric-onset hypercalciuria and kidney stones. The greatest risk factor for kidney stones is hypercalciuria, the etiology of which is largely unknown. A recent genome-wide association study (GWAS) linked hypercalciuria and kidney stones to a claudin-14 (CLDN14) risk haplotype. However, the underlying molecular mechanism was not delineated. Recently, renal CLDN14 expression was found to increase in response to increased plasma calcium, thereby inducing calciuria. We hypothesized therefore that some children with hypercalciuria and kidney stones harbor a CLDN14 variant that inappropriately increases gene expression. To test this hypothesis, we sequenced the CLDN14 risk haplotype in a cohort of children with idiopathic hypercalciuria and kidney stones. An intronic SNP was more frequent in affected children. Dual luciferase and cell-based assays demonstrated increased reporter or CLDN14 expression when this polymorphism was introduced. In silico studies predicted the SNP introduced a novel insulinoma-associated 1 (INSM1) transcription factor binding site. Consistent with this, repeating the dual luciferase assay in the presence of INSM1 further increased reporter expression. Our data suggest that children with the INSM1 binding site within the CLDN14 risk haplotype have a higher likelihood of hypercalciuria and kidney stones. Enhanced CLDN14 expression may play a role in the pathophysiology of their hypercalciuria."	"Genetic Variants Associated with Circulating Parathyroid Hormone. Parathyroid hormone (PTH) is a primary calcium regulatory hormone. Elevated serum PTH concentrations in primary and secondary hyperparathyroidism have been associated with bone disease, hypertension, and in some studies, cardiovascular mortality. Genetic causes of variation in circulating PTH concentrations are incompletely understood. We performed a genome-wide association study of serum PTH concentrations among 29,155 participants of European ancestry from 13 cohort studies (n=22,653 and n=6502 in discovery and replication analyses, respectively). We evaluated the association of single nucleotide polymorphisms (SNPs) with natural log-transformed PTH concentration adjusted for age, sex, season, study site, and principal components of ancestry. We discovered associations of SNPs from five independent regions with serum PTH concentration, including the strongest association with rs6127099 upstream of CYP24A1 (P=4.2 × 10<sup>-53</sup>), a gene that encodes the primary catabolic enzyme for 1,25-dihydroxyvitamin D and 25-dihydroxyvitamin D. Each additional copy of the minor allele at this SNP associated with 7% higher serum PTH concentration. The other SNPs associated with serum PTH concentration included rs4074995 within RGS14 (P=6.6 × 10<sup>-17</sup>), rs219779 adjacent to CLDN14 (P=3.5 × 10<sup>-16</sup>), rs4443100 near RTDR1 (P=8.7 × 10<sup>-9</sup>), and rs73186030 near CASR (P=4.8 × 10<sup>-8</sup>). Of these five SNPs, rs6127099, rs4074995, and rs219779 replicated. Thus, common genetic variants located near genes involved in vitamin D metabolism and calcium and renal phosphate transport associated with differences in circulating PTH concentrations. Future studies could identify the causal variants at these loci, and the clinical and functional relevance of these variants should be pursued."	"Common variants in CLDN14 are associated with differential excretion of magnesium over calcium in urine. The nature and importance of genetic factors regulating the differential handling of Ca<sup>2+</sup> and Mg<sup>2+</sup> by the renal tubule in the general population are poorly defined. We conducted a genome-wide meta-analysis of urinary magnesium-to-calcium ratio to identify associated common genetic variants. We included 9320 adults of European descent from four genetic isolates and three urban cohorts. Urinary magnesium and calcium concentrations were measured centrally in spot urine, and each study conducted linear regression analysis of urinary magnesium-to-calcium ratio on ~2.5 million single-nucleotide polymorphisms (SNPs) using an additive model. We investigated, in mouse, the renal expression profile of the top candidate gene and its variation upon changes in dietary magnesium. The genome-wide analysis evidenced a top locus (rs172639, p = 1.7 × 10<sup>-12</sup>), encompassing CLDN14, the gene coding for claudin-14, that was genome-wide significant when using urinary magnesium-to-calcium ratio, but not either one taken separately. In mouse, claudin-14 is expressed in the distal nephron segments specifically handling magnesium, and its expression is regulated by chronic changes in dietary magnesium content. A genome-wide approach identified common variants in the CLDN14 gene exerting a robust influence on the differential excretion of Mg<sup>2+</sup> over Ca<sup>2+</sup> in urine. These data highlight the power of urinary electrolyte ratios to unravel genetic determinants of renal tubular function. Coupled with mouse experiments, these results support a major role for claudin-14, a gene associated with kidney stones, in the differential paracellular handling of divalent cations by the renal tubule."	"Targeted Resequencing of Deafness Genes Reveals a Founder MYO15A Variant in Northeastern Brazil. Identifying the genetic etiology in a person with hearing loss (HL) is challenging due to the extreme genetic heterogeneity in HL and the population-specific variability. In this study, after excluding GJB2 variants, targeted resequencing of 180 deafness-related genes revealed the causative variants in 11 of 19 (58%) Brazilian probands with autosomal recessive HL. Identified pathogenic variants were in MYO15A (10 families) and CLDN14 (one family). Remarkably, the MYO15A p.(Val1400Met) variant was identified in eight families from the city of Monte Santo in the northeast region of Brazil. Haplotype analysis of this variant was consistent with a single founder. No other cases with this variant were detected among 105 simplex cases from other cities of northeastern Brazil, suggesting that this variant is confined to a geographical region. This study suggests that it is feasible to develop population-specific screening for deafness variants once causative variants are identified in different geographical groups."	"A common variant in CLDN14 causes precipitous, prelingual sensorineural hearing loss in multiple families due to founder effect. Genetic isolates provide unprecedented opportunities to identify pathogenic mutations and explore the full natural history of clinically heterogeneous phenotypes such as hearing loss. We noticed a unique audioprofile, characterized by prelingual and rapid deterioration of hearing thresholds at frequencies &gt;0.5 kHz in several adults from unrelated families from the island population of Newfoundland. Targeted serial Sanger sequencing of probands for deafness alleles (n = 23) that we previously identified in this founder population was negative. Whole exome sequencing in four members of the largest family (R2010) identified a CLDN14 (DFNB29) variant [c.488C&gt;T; p. (Ala163Val)], likely pathogenic, sensorineural hearing loss, autosomal recessive. Although not associated with deafness or disease, CLDN14 p.(Ala163Val) has been previously reported as a variant of uncertain significance (VUS). Targeted sequencing of 169 deafness probands identified one homozygote and one heterozygous carrier. Genealogical studies, cascade sequencing and haplotype analysis across four unrelated families showed all subjects with the unique audioprofile (n = 12) were also homozygous for p.(Ala163Val) and shared a 1.4 Mb DFNB29-associated haplotype on chromosome 21. Most significantly, sequencing 175 population controls revealed 1% of the population are heterozygous for CLDN14 p.(Ala163Val), consistent with a major founder effect in Newfoundland. The youngest CLDN14 [c.488C&gt;T; p.(Ala163Val)] homozygote passed newborn screening and had normal hearing thresholds up to 3 years of age, which then deteriorated to a precipitous loss &gt;1 kHz during the first decade. Our study suggests that genetic testing may be necessary to identify at-risk children in time to prevent speech, language and developmental delay."	"Mutations of SGO2 and CLDN14 collectively cause coincidental Perrault syndrome. Perrault syndrome (PS) is a genetically heterogeneous disorder characterized by primary ovarian insufficiency (POI) in females and sensorineural hearing loss in males and females. In many PS subjects, causative variants have not been found in the five reported PS genes. The objective of this study was to identify the genetic cause of PS in an extended consanguineous family with six deaf individuals. Whole exome sequencing (WES) was completed on four affected members of a large family, and variants and co-segregation was confirmed by Sanger sequencing. All hearing impaired individuals, including the proband, are homozygous for a pathogenic variant of CLDN14, but this only explains the deafness. The PS proband is also homozygous for a frameshift variant (c.1453_1454delGA, p.(Glu485Lysfs*5)) in exon 7 of SGO2 encoding shugoshin 2, which is the likely cause of her concurrent ovarian insufficiency. In mouse, Sgol2a encoding shugoshin-like 2a is necessary during meiosis in both sexes to maintain the integrity of the cohesin complex that tethers sister chromatids. Human SGO2 has not previously been implicated in any disorder, but in this case of POI and perhaps others, it is a candidate for unexplained infertility."	"Genetic causes of moderate to severe hearing loss point to modifiers. The genetic underpinnings of recessively inherited moderate to severe sensorineural hearing loss are not well understood, despite its higher prevalence in comparison to profound deafness. We recruited 92 consanguineous families segregating stable or progressive, recessively inherited moderate or severe hearing loss. We utilized homozygosity mapping, Sanger sequencing, targeted capture of known deafness genes with massively parallel sequencing and whole exome sequencing to identify the molecular basis of hearing loss in these families. Variants of the known deafness genes were found in 69% of the participating families with the SLC26A4, GJB2, MYO15A, TMC1, TMPRSS3, OTOF, MYO7A and CLDN14 genes together accounting for hearing loss in 54% of the families. We identified 20 reported and 21 novel variants in 21 known deafness genes; 16 of the 20 reported variants, previously associated with stable, profound deafness were associated with moderate to severe or progressive hearing loss in our families. These data point to a prominent role for genetic background, environmental factors or both as modifiers of human hearing loss severity."	"Pathophysiology-based treatment of urolithiasis. Urolithiasis, a complex multifactorial disease, results from interactions between environmental and genetic factors. Epidemiological studies have shown the association of urolithiasis with a number of lifestyle-related diseases, including cardiovascular diseases, hypertension, chronic kidney disease, diabetes and metabolic syndrome. Elucidation of the mechanisms underlying urinary stone formation will enable development of new preventive treatments. The present article reviews the epidemiology, pathophysiology and potential treatment of urolithiasis. Recent literature has shown that oxidative stress and reactive oxygen species could be one such mechanistic pathway. Calcium oxalate crystals adhering to renal tubular cells are incorporated into the cells through the involvement of osteopontin. Stimulation of crystal-cell adhesion impairs acceleration of the mitochondrial permeability transition pore in tubular cells, resulting in mitochondrial collapse, oxidative stress and activation of the apoptotic pathway in the initial steps of renal calcium crystallization. With regard to genetic factors, studies show that single nucleotide polymorphisms in genes encoding calcium-sensing receptor, vitamin D receptor and osteopontin are correlated with urolithiasis. Genome-wide association studies have shown that CLDN14 and NPT2 are associated with urolithiasis in Caucasian and Japanese populations, respectively. Thus, single nucleotide polymorphism analysis would aid in the prediction of urolithiasis risk and recurrence. New diagnostic methods and preventive approaches, along with complete removal of stones, will improve the management of urolithiasis."	"CLDN14 is epigenetically silenced by EZH2-mediated H3K27ME3 and is a novel prognostic biomarker in hepatocellular carcinoma. Trimethylation of lysine 27 on histone H3 (H3K27ME3) is a transcription-suppressive histone mark mediated by enhancer of zeste homolog 2 (EZH2). We have previously suggested that EZH2-mediated H3K27ME3 plays a critical oncogenic role in human hepatocellular carcinoma (HCC) aggressiveness. However, the direct downstream targets of EZH2-H3K27ME3 and the molecular mechanisms by which regulates HCC pathogenesis remain unclear. In this study, we used chromatin immunoprecipitation together with high-throughput sequencing (ChIP-seq) and gene expression profiling by microarray analysis to assess genome-wide chromatin occupancy of H3K27ME3 in HCC cells. We identified that claudin14 (CLDN14) is a potentially direct target for EZH2-mediated H3K27ME3 in HCC. In a large cohort of clinical HCC tissues, we found that low expression of CLDN14 was significantly associated with advanced tumor stage and determined to be an independent predictor of shortened survival of HCC patients. Next, functional experiment demonstrated that depletion of CLDN14 substantially restored EZH2-silenced HCC cells motility and invasive capacities and supported cell epithelial-mesenchymal transition (EMT). Furthermore, downregulation of CLDN14 dramatically re-enhanced the wnt/β-catenin signaling activity in EZH2-silenced HCC cells by increasing the levels of active β-catenin and promoting the nuclear localization of β-catenin. These results, collectively, uncover that CLDN14 is a novel direct target of EZH2-mediated H3K27ME3, and provide an explanation for the aggressive nature of HCC with downregulation of CLDN14 and the underling mechanism that links the tumor suppressor CLDN14 to the wnt/β-catenin signaling pathway."	"Differential patterns of histone methylase EHMT2 and its catalyzed histone modifications H3K9me1 and H3K9me2 during maturation of central auditory system. Histone methylation is an important epigenetic mark leading to changes in DNA accessibility and transcription. Here, we investigate immunoreactivity against the euchromatic histone-lysine N-methyltransferase EHMT2 and its catalyzed mono- and dimethylation marks at histone 3 lysine 9 (H3K9me1 and H3K9me2) during postnatal differentiation of the mouse central auditory system. In the brainstem, expression of EHMT2 was high in the first postnatal week and down-regulated thereafter. In contrast, immunoreactivity in the auditory cortex (AC) remained high during the first year of life. This difference might be related to distinct demands for adult plasticity. Analyses of two deaf mouse models, namely Cldn14 (-/-) and Cacna1d (-/-), demonstrated that sound-driven or spontaneous activity had no influence on EHMT2 immunoreactivity. The methylation marks H3K9me1 and H3K9me2 were high throughout the auditory system up to 1 year. Young auditory neurons showed immunoreactivity against both methylations at similar intensities, whereas many mature neurons showed stronger labeling for either H3K9me1 or H3K9me2. These differences were only poorly correlated with cell types. To identify methyltransferases contributing to the persistent H3K9me1 and H3K9me2 marks in the adult brainstem, EHMT1 and the retinoblastoma-interacting zinc-finger protein RIZ1 were analyzed. Both were down-regulated during brainstem development, similar to EHMT2. Contrary to EHMT2, EHMT1 was also down-regulated in adult cortical areas. Together, our data reveal a marked difference in EHMT2 levels between mature brainstem and cortical areas and a decoupling between EHMT2 abundance and histone 3 lysine 9 methylations during brainstem differentiation. Furthermore, EHMT1 and EHMT2 are differentially expressed in cortical areas."	"A Common Variant in CLDN14 is Associated with Primary Biliary Cirrhosis and Bone Mineral Density. Primary biliary cirrhosis (PBC), a chronic autoimmune liver disease, has been associated with increased incidence of osteoporosis. Intriguingly, two PBC susceptibility loci identified through genome-wide association studies are also involved in bone mineral density (BMD). These observations led us to investigate the genetic variants shared between PBC and BMD. We evaluated 72 genome-wide significant BMD SNPs for association with PBC using two European GWAS data sets (n = 8392), with replication of significant findings in a Chinese cohort (685 cases, 1152 controls). Our analysis identified a novel variant in the intron of the CLDN14 gene (rs170183, Pfdr = 0.015) after multiple testing correction. The three associated variants were followed-up in the Chinese cohort; one SNP rs170183 demonstrated consistent evidence of association in diverse ethnic populations (Pcombined = 2.43 × 10(-5)). Notably, expression quantitative trait loci (eQTL) data revealed that rs170183 was correlated with a decline in CLDN14 expression in both lymphoblastoid cell lines and T cells (Padj = 0.003 and 0.016, respectively). In conclusion, our study identified a novel PBC susceptibility variant that has been shown to be strongly associated with BMD, highlighting the potential of pleiotropy to improve gene discovery. "	"Proper Notch activity is necessary for the establishment of proximal cells and differentiation of intermediate, distal, and connecting tubule in Xenopus pronephros development. Notch signaling in pronephros development has been shown to regulate establishment of glomus and proximal tubule, but how Notch signal works on competency of pronephric anlagen during the generation of pronephric components remains to be understood. We investigated how components of pronephros (glomus, proximal tubule, intermediate tubule, distal tubule, and connecting tubule) were generated in Xenopus embryos by timed overactivation and suppression of Notch signaling. Notch activation resulted in expansion of the glomus and disruption of the proximal tubule formation. Inhibition of Notch signaling reduced expression of wt1 and XSMP-30. In addition, when Notch signaling was overactivated at stage 20 on, intermediate, distal, and connecting tubule markers, gremlin and clcnkb, were decreased while Notch down-regulation increased gremlin and clcnkb. Similar changes were observed with segmental markers, cldn19, cldn14, and rhcg on activation or inhibition of Notch. Although Notch did not affect the expression of pan-pronephric progenitor marker, pax2, its activation inhibited lumen formation in the pronephros. Notch signal is essential for glomus and proximal tubule development and inhibition of Notch is critical for the differentiation of the intermediate, distal, and connecting tubule."	"Rs219780 SNP of Claudin 14 Gene is not Related to Clinical Expression in Primary Hyperparathyroidism. The CLDN14 gene encodes a protein involved in the regulation of paracellular permeability or ion transport at epithelial tight junctions as in the nephron. The C allele of the rs219780 SNP (single nucleotide polymorphism) of CLDN14 has been associated with renal lithiasis, high levels of parathormone (PTH), and with low bone mineral density (BMD) in healthy women. Our aim is to study the relationship between rs219780 SNP of CLDN14 and renal lithiasis, fractures, and BMD in patients with primary hyperparathyroidism (PHPT). We enrolled 298 Caucasian patients with PHPT and 328 healthy volunteers in a cross-sectional study. We analysed anthropometric data, history of fractures or kidney stones, biochemical parameters including markers for bone remodelling, abdominal ultrasound, and BMD and genotyping for the rs219780 SNP of CLDN14. We did not find any difference in the frequency of fractures or renal lithiasis between the genotype groups in PHPT patients. Moreover, we did not find any relationship between the T or C alleles and BMD or biochemical parameters. rs219780 SNP of CLDN14 does not appear to be a risk factor for the development of PHPT nor does it seem to influence the clinical expression of PHPT."	"Polymorphisms in CaSR and CLDN14 Genes Associated with Increased Risk of Kidney Stone Disease in Patients from the Eastern Part of India. Kidney stone disease (KSD) is a major clinical problem imposing a large burden for both healthcare and economy globally. In India, the prevalence of kidney stone disease is rapidly increasing. This study aimed to evaluate the association between genetic defects in vitamin D receptor (VDR), calcium sensing receptor (CaSR) and claudin 14 (CLDN14) genes and kidney stone disease in patients from eastern India. We enrolled 200 consecutive kidney stone patients (age 18-60 years) (cases) and their corresponding sex and age matched 200 normal individuals (controls). To identify genetic variants responsible for KSD, we performed sequence analysis of VDR, CaSR and CLDN14 genes. Four non-synonymous (rs1801725, rs1042636, rs1801726 and rs2228570), one synonymous (rs219780) and three intronic single nucleotide polymorphisms (SNPs) (rs731236, rs219777 and rs219778) were identified. Genotype and allele frequency analysis of these SNPs revealed that, rs1801725 (Ala986Ser), rs1042636 (Arg990Gly) of CaSR gene and rs219778, rs219780 (Thr229Thr) of CLDN14 gene were significantly associated with KSD. Serum calcium levels were significantly higher in subjects carrying 986Ser allele and calcium excretion was higher in subjects bearing 990Gly allele. In conclusion, rs1801725, rs1042636, rs219778 and rs219780 SNPs were associated with kidney stone risk in patients from the eastern part of India. "	"Idiopathic calcium nephrolithiasis: a review of pathogenic mechanisms in the light of genetic studies. Calcium nephrolithiasis is a multifactorial disease with a polygenic milieu. Association studies identified genetic polymorphisms potentially implicated in the pathogenesis of calcium nephrolithiasis. The present article reviews the mechanisms of calcium stone formation and the potential contribution of gene polymorphisms to lithogenic mechanisms. Endoscopy observations suggested that precipitation of calcium-oxalate on the Randall's plaque at the papilla surface may cause idiopathic calcium-oxalate stones. The Randall's plaque is a hydroxyapatite deposit in the interstitium of the kidney medulla, which resembles a soft tissue calcification. Conversely, calcium-phosphate stones may develop from crystalline deposits located at the tip of the Bellini duct. Polymorphisms of eleven genes have been associated with stones in genome-wide association studies and replicated candidate-gene association studies: VDR, SLC34A1, SLC34A4, CLDN14, and CaSR genes coding for proteins regulating tubular phosphate and calcium reabsorption; CaSR, MGP, OPN, PLAU, and UMOD genes coding for proteins preventing calcium salt precipitation; AQP1 gene coding for a water channel in the proximal tubule. The renal activity of the last gene, DGKH, is unknown. Polymorphisms in these genes may predispose to calcium-oxalate and -phosphate stones by increasing the risk of calcium-phosphate precipitation in the tubular fluid. Key Messages: Genetic findings suggest that tubular fluid supersaturation with respect to calcium and phosphate predisposes to calcium-oxalate stones by triggering cellular mechanisms that lead to the Randall's plaque formation."	"Epigenetic regulation of microRNAs controlling CLDN14 expression as a mechanism for renal calcium handling. The kidney has a major role in extracellular calcium homeostasis. Multiple genetic linkage and association studies identified three tight junction genes from the kidney--claudin-14, -16, and -19--as critical for calcium imbalance diseases. Despite the compelling biologic evidence that the claudin-14/16/19 proteins form a regulated paracellular pathway for calcium reabsorption, approaches to regulate this transport pathway are largely unavailable, hindering the development of therapies to correct calcium transport abnormalities. Here, we report that treatment with histone deacetylase (HDAC) inhibitors downregulates renal CLDN14 mRNA and dramatically reduces urinary calcium excretion in mice. Furthermore, treatment of mice with HDAC inhibitors stimulated the transcription of renal microRNA-9 (miR-9) and miR-374 genes, which have been shown to repress the expression of claudin-14, the negative regulator of the paracellular pathway. With renal clearance and tubule perfusion techniques, we showed that HDAC inhibitors transiently increase the paracellular cation conductance in the thick ascending limb. Genetic ablation of claudin-14 or the use of a loop diuretic in mice abrogated HDAC inhibitor-induced hypocalciuria. The genetic mutations in the calcium-sensing receptor from patients with autosomal dominant hypocalcemia (ADH) repressed the transcription of miR-9 and miR-374 genes, and treatment with an HDAC inhibitor rescued the phenotypes of cell and animal models of ADH. Furthermore, systemic treatment of mice with antagomiRs against these miRs relieved claudin-14 gene silencing and caused an ADH-like phenotype. Together, our findings provide proof of concept for a novel therapeutic principle on the basis of epigenetic regulation of renal miRs to treat hypercalciuric diseases."	"Genetic analysis of genes related to tight junction function in the Korean population with non-syndromic hearing loss. Tight junctions (TJs) are essential components of eukaryotic cells, and serve as paracellular barriers and zippers between adjacent tissues. TJs are critical for normal functioning of the organ of Corti, a part of the inner ear that causes loss of sensorineural hearing when damaged. To investigate the relation between genes involved in TJ function and hereditary loss of sensorineural hearing in the Korean population, we selected the TJP2 and CLDN14 genes as candidates for gene screening of 135 Korean individuals. The TJP2 gene, mutation of which causes autosomal dominant non-syndromic hearing loss (ADNSHL), lies at the DFNA51 locus on chromosome 9. The CLDN14 gene, mutation of which causes autosomal recessive non-syndromic hearing loss (ARNSHL), lies at the DFNB29 locus on chromosome 21. In the present study, we conducted genetic analyses of the TJP2 and CLDN14 genes in 87 unrelated patients with ADNSHL and 48 unrelated patients with either ARNSHL or potentially sporadic hearing loss. We identified two pathogenic variations, c.334G&gt;A (p.A112T) and c.3562A&gt;G (p.T1188A), and ten single nucleotide polymorphisms (SNPs) in the TJP2 gene. We found eight non-pathogenic variations in the CLDN14 gene. These findings indicate that, whereas mutation of the TJP2 gene might cause ADNSHL, CLDN14 is not a major causative gene for ARNSHL in the Korean population studied. Our findings may improve the understanding of the genetic cause of non-syndromic hearing loss in the Korean population. "	"Genetic and molecular analysis of the CLDN14 gene in Moroccan family with non-syndromic hearing loss. Hearing loss is the most prevalent human genetic sensorineural defect. Mutations in the CLDN14 gene, encoding the tight junction claudin 14 protein expressed in the inner ear, have been shown to cause non-syndromic recessive hearing loss DFNB29. We describe a Moroccan SF7 family with non-syndromic hearing loss. We performed linkage analysis in this family and sequencing to identify the mutation causing deafness. Genetic linkage analysis, suggested the involvement of CLDN14 and KCNE1 gene in deafness in this family. Mutation screening was performed using direct sequencing of the CLDN14 and KCNE1 coding exon gene. Our results show the presence of c.11C&gt;T mutation in the CLDN14 gene. Transmission analysis of this mutation in the family showed that the three affected individuals are homozygous, whereas parents and three healthy individuals are heterozygous. This mutation induces a substitution of threonine to methionine at position 4. These data show that CLDN14 gene can be i mplicated in the development of hearing loss in SF7 family; however, the pathogenicity of c.11C&gt;T mutation remains to be determined."	"Multistage genome-wide association meta-analyses identified two new loci for bone mineral density. Aiming to identify novel genetic variants and to confirm previously identified genetic variants associated with bone mineral density (BMD), we conducted a three-stage genome-wide association (GWA) meta-analysis in 27 061 study subjects. Stage 1 meta-analyzed seven GWA samples and 11 140 subjects for BMDs at the lumbar spine, hip and femoral neck, followed by a Stage 2 in silico replication of 33 SNPs in 9258 subjects, and by a Stage 3 de novo validation of three SNPs in 6663 subjects. Combining evidence from all the stages, we have identified two novel loci that have not been reported previously at the genome-wide significance (GWS; 5.0 × 10(-8)) level: 14q24.2 (rs227425, P-value 3.98 × 10(-13), SMOC1) in the combined sample of males and females and 21q22.13 (rs170183, P-value 4.15 × 10(-9), CLDN14) in the female-specific sample. The two newly identified SNPs were also significant in the GEnetic Factors for OSteoporosis consortium (GEFOS, n = 32 960) summary results. We have also independently confirmed 13 previously reported loci at the GWS level: 1p36.12 (ZBTB40), 1p31.3 (GPR177), 4p16.3 (FGFRL1), 4q22.1 (MEPE), 5q14.3 (MEF2C), 6q25.1 (C6orf97, ESR1), 7q21.3 (FLJ42280, SHFM1), 7q31.31 (FAM3C, WNT16), 8q24.12 (TNFRSF11B), 11p15.3 (SOX6), 11q13.4 (LRP5), 13q14.11 (AKAP11) and 16q24 (FOXL1). Gene expression analysis in osteogenic cells implied potential functional association of the two candidate genes (SMOC1 and CLDN14) in bone metabolism. Our findings independently confirm previously identified biological pathways underlying bone metabolism and contribute to the discovery of novel pathways, thus providing valuable insights into the intervention and treatment of osteoporosis. "	"Adaptive evolution of tight junction protein claudin-14 in echolocating whales. Toothed whales and bats have independently evolved specialized ultrasonic hearing for echolocation. Recent findings have suggested that several genes including Prestin, Tmc1, Pjvk and KCNQ4 appear to have undergone molecular adaptations associated with the evolution of this ultrasonic hearing in mammals. Here we studied the hearing gene Cldn14, which encodes the claudin-14 protein and is a member of tight junction proteins that functions in the organ of Corti in the inner ear to maintain a cationic gradient between endolymph and perilymph. Particular mutations in human claudin-14 give rise to non-syndromic deafness, suggesting an essential role in hearing. Our results uncovered two bursts of positive selection, one in the ancestral branch of all toothed whales and a second in the branch leading to the delphinid, phocoenid and ziphiid whales. These two branches are the same as those previously reported to show positive selection in the Prestin gene. Furthermore, as with Prestin, the estimated hearing frequencies of whales significantly correlate with numbers of branch-wise non-synonymous substitutions in Cldn14, but not with synonymous changes. However, in contrast to Prestin, we found no evidence of positive selection in bats. Our findings from Cldn14, and comparisons with Prestin, strongly implicate multiple loci in the acquisition of echolocation in cetaceans, but also highlight possible differences in the evolutionary route to echolocation taken by whales and bats. "	"A phylomedicine approach to understanding the evolution of auditory sensory perception and disease in mammals. Hereditary deafness affects 0.1% of individuals globally and is considered as one of the most debilitating diseases of man. Despite recent advances, the molecular basis of normal auditory function is not fully understood and little is known about the contribution of single-nucleotide variations to the disease. Using cross-species comparisons of 11 'deafness' genes (Myo15, Ush1 g, Strc, Tecta, Tectb, Otog, Col11a2, Gjb2, Cldn14, Kcnq4, Pou3f4) across 69 evolutionary and ecologically divergent mammals, we elucidated whether there was evidence for: (i) adaptive evolution acting on these genes across mammals with similar hearing capabilities; and, (ii) regions of long-term evolutionary conservation within which we predict disease-associated mutations should occur. We find evidence of adaptive evolution acting on the eutherian mammals in Myo15, Otog and Tecta. Examination of selection pressures in Tecta and Pou3f4 across a taxonomic sample that included a wide representation of auditory specialists, the bats, did not uncover any evidence for a role in echolocation. We generated 'conservation indices' based on selection estimates at nucleotide sites and found that known disease mutations fall within sites of high evolutionary conservation. We suggest that methods such as this, derived from estimates of evolutionary conservation using phylogenetically divergent taxa, will help to differentiate between deleterious and benign mutations."	"Analysis of CLDN14 gene in deaf Moroccan patients with non-syndromic hearing loss. Mutations in the CLDN14 gene, encoding the tight junction claudin 14 protein has been reported to date in an autosomal recessive form of isolated hearing loss DFNB29. In order to identify the contribution of CLDN14 to inherited deafness in Moroccan population, we performed a genetic analysis of this gene in 80 Moroccan familial cases. Our results show the presence of 7 mutations: 6 being conservative and one leading to a missense mutation (C11T) which was found at heterozygous and homozygous states, with a general frequency of 6.87%. The pathogenicity of the resulting T4M substitution is under discussion. Finally, our study suggests that CLDN14 gene can be implicated in the development of hearing loss in the Moroccan population."	"Activation of the Ca(2+)-sensing receptor increases renal claudin-14 expression and urinary Ca(2+) excretion. Kidney stones are a prevalent clinical condition imposing a large economic burden on the healthcare system. Hypercalciuria remains the major risk factor for development of a Ca(2+)-containing stone. The kidney's ability to alter Ca(2+) excretion in response to changes in serum Ca(2+) is in part mediated by the Ca(2+)-sensing receptor (CaSR). Recent studies revealed renal claudin-14 (Cldn14) expression localized to the thick ascending limb (TAL) and its expression to be regulated via the CaSR. We find that Cldn14 expression is increased by high dietary Ca(2+) intake and by elevated serum Ca(2+) levels induced by prolonged 1,25-dihydroxyvitamin D3 administration. Consistent with this, activation of the CaSR in vivo via administration of the calcimimetic cinacalcet hydrochloride led to a 40-fold increase in Cldn14 mRNA. Moreover, overexpression of Cldn14 in two separate cell culture models decreased paracellular Ca(2+) flux by preferentially decreasing cation permeability, thereby increasing transepithelial resistance. These data support the existence of a mechanism whereby activation of the CaSR in the TAL increases Cldn14 expression, which in turn blocks the paracellular reabsorption of Ca(2+). This molecular mechanism likely facilitates renal Ca(2+) losses in response to elevated serum Ca(2+). Moreover, dysregulation of the newly described CaSR-Cldn14 axis likely contributes to the development of hypercalciuria and kidney stones."	"Phenotypic variability of CLDN14 mutations causing DFNB29 hearing loss in the Pakistani population. Human hereditary deafness at the DFNB29 locus on chromosome 21q22.1 is caused by recessive mutations of CLDN14, encoding claudin 14. This tight junction protein is tetramembrane spanning that localizes to the apical tight junctions of organ of Corti hair cells and in many other tissues. Typically, the DFNB29 phenotype is characterized by prelingual, bilateral, sensorineural hearing loss. The goal of this study was to define the identity and frequency of CLDN14 mutations and associated inner ear phenotypes in a cohort of 800 Pakistani families segregating deafness. Hearing loss in 15 multi-generational families was found to co-segregate with CLDN14-linked STR markers. The sequence of the six exons and regions flanking the introns of CLDN14 in these 15 families revealed five likely pathogenic alleles. Two are novel missense substitutions (p.Ser87Ile and p.Ala94Val), whereas p.Arg81His, p.Val85Asp and p.Met133ArgfsX23 have been reported previously. Haplotype analyses indicate that p.Val85Asp and p.Met133ArgfsX23 are founder mutations. The p.Val85Asp accounts for ~67% of the mutant alleles of CLDN14 in our cohort. Combined with the previously reported data, CLDN14 mutations were identified in 18 of 800 Pakistani families (2.25; 95% CI, 1.4-3.5). Hearing loss in the affected individuals homozygous for CLDN14 mutations varied from moderate to profound. This phenotypic variability may be due to environmental factors (for example drug and noise exposure) and/or genetic modifiers."	"Novel CLDN14 mutations in Pakistani families with autosomal recessive non-syndromic hearing loss. Mutations in the CLDN14 gene are known to cause autosomal recessive (AR) non-sydromic hearing loss (NSHL) at the DFNB29 locus on chromosome 21q22.13. As part of an ongoing study to localize and identify NSHL genes, the ARNSHL segregating in four Pakistani consanguineous families were mapped to the 21q22.13 region with either established or suggestive linkage. Given the known involvement of CLDN14 gene in NSHL, DNA samples from hearing-impaired members from the four families were sequenced to potentially identify causal variants within this gene. Three novel CLDN14 mutations, c.167G&gt;A (p.Trp56*), c.242G&gt;A (p.Arg81His), and c.694G&gt;A (p.Gly232Arg), segregate with hearing loss (HL) in three of the families. The previously reported CLDN14 mutation c.254T&gt;A (p.Val85Asp) was observed in the fourth family. None of the mutations were detected in 400 Pakistani control chromosomes and all were deemed damaging based on bioinformatics analyses. The non-sense mutation c.167G&gt;A (p.Trp56*) is the first stop codon mutation in CLDN14 gene to be identified to cause NSHL. The c.242G&gt;A (p.Arg81His) and c.694G&gt;A (p.Gly232Arg) mutations were identified within the first extracellular loop and the carboxyl-tail of claudin-14, respectively, which highlights the importance of the extracellular domains and phosphorylation of cytoplasmic tail residues to claudin function within the inner ear. The HL due to novel CLDN14 mutations is prelingual, severe-to-profound with greater loss in the high frequencies."	"The mRNA of claudins is expressed in the endolymphatic sac epithelia. Claudins are a family of membrane proteins which localize to tight junctions (TJs). Recent studies have shown that claudins can form pores for ions in the TJs and regulate the permeability of epithelial paracellular ion transport. The endolymphatic sac (ES) is a part of the inner ear, absorbing the endolymphatic fluid. ES dysfunction may result in endolymphatic hydrops. In this study, we focused on the paracellular transport and examined claudin mRNA expression in the ES epithelia. Total RNA was isolated from whole ES epithelia of rats by laser capture microdissection. RT-PCR was used to evaluate the expression of claudins. The expression of each claudin mRNA in the epithelial cells of rat ES was confirmed by in situ hybridization. RT-PCR indicated the expression of cldn2, cldn4, cldn6, cldn7, cldn9, cldn11, cldn12, and cldn14. The expression of these claudin mRNAs in the epithelial cells of rat ES was confirmed by in situ hybridization. We demonstrated mRNA expression of multiple claudins in the rat ES epithelia. These results in the ES epithelia were consistent with a role of claudins in paracellular ion transport."	"Genetics and calcium nephrolithiasis. Calcium nephrolithiasis is one of the most prevalent uronephrologic disorders in the western countries. Studies in families and twins evidenced a genetic predisposition to calcium nephrolithiasis. Family-based or case-control studies of single-candidate genes evidenced the possible involvement of calcium-sensing receptor (CASR), vitamin D receptor (VDR), and osteopontin (OPN) gene polymorphisms in stone formation. The only high-throughput genome-wide association study identified claudin 14 (CLDN14) gene as a possible major gene of nephrolithiasis. Specific phenotypes were related with these genes: CASR gene in normocitraturic patients, VDR gene in hypocitraturic patients with severe clinical course, and CLDN14 gene in hypercalciuric patients. The pathogenetic weight of these genes remains unclear, but an alteration of their expression may occur in stone formers. Technological skills, accurate clinical examination, and a detailed phenotype description are the basis to get new insight about the genetic basis of nephrolithiasis."	"Mutations in CLDN14 are associated with different hearing thresholds. Mutations in CLDN14, encoding tight junction protein claudin 14, cause profound deafness in mice and humans. We identified a Pakistani family, in which the affected individuals were homozygous for a known pathogenic mutation c.254 T&gt;A resulting in p.V85D substitution in CLDN14; however, in contrast to the previously reported families with mutations in CLDN14, most of the affected individuals in this family exhibit only a severe hearing loss (HL). In order to identify the contribution of CLDN14 to less than profound deafness, we screened for mutations of CLDN14 in 30 multiplex and 57 sporadic cases with moderately severe to severe HL from Pakistan. We identified one other affected individual homozygous for p.V85D substitution. Comparison of audiometric data from all patients indicates that mutations in CLND14 cause varying degrees of HL, which may be enhanced at high frequencies. This suggests that a modifier can reduce the severity of HL associated with mutations of CLDN14. Our data indicate that mutations in CLDN14 should be explored when considering the etiology of less severe HL."	"Genome-wide association studies in nephrology research. Kidney diseases constitute a serious public health burden worldwide, with substantial associated morbidity and mortality. The role of a genetic contribution to kidney disease is supported by heritability studies of kidney function measures, the presence of monogenic diseases with renal manifestations, and familial aggregation studies of complex kidney diseases, such as chronic kidney disease. Because complex diseases arise from the combination of multiple genetic and environmental risk factors, the identification of underlying genetic susceptibility variants has been challenging. Recently, genome-wide association studies have emerged as a method to conduct searches for such susceptibility variants. They have successfully identified genomic loci that contain variants associated with kidney diseases and measures of kidney function. For example, common variants in the UMOD and PRKAG2 genes are associated with risk of chronic kidney disease; variants in CLDN14 with risk of kidney stone disease; and variants in or near SHROOM3, STC1, LASS2, GCKR, NAT8/ALMS1, TFDP2, DAB2, SLC34A1, VEGFA, FAM122A/PIP5K1B, ATXN2, DACH1, UBE2Q2/FBXO22, and SLC7A9, with differences in glomerular filtration rate. The purpose of this review is to provide an overview of the genome-wide association study method as it relates to nephrology research and summarize recent findings in the field. Results from genome-wide association studies of renal phenotypes represent a first step toward improving our knowledge about underlying mechanisms of kidney function and disease and ultimately may aid in the improved treatment and prevention of kidney diseases."	"Bilberry anthocyanin-rich extract alters expression of genes related to atherosclerosis development in aorta of apo E-deficient mice. Intake of anthocyanin-rich foods has been associated with a reduced risk of cardiovascular diseases. We recently reported that a nutritional supplementation with a bilberry anthocyanin-rich extract (BE) attenuates atherosclerotic lesion development in apolipoprotein E-deficient (apoE⁻/⁻) mice. However, the mechanism(s) of their preventive action are not completely understood. Anthocyanins may alter mRNA levels of genes related to atherosclerosis in cultured macrophages and endothelial cells, but in vivo studies remain scarce. The aim of the present study was to explore the in vivo mechanisms of action of the same bilberry extract, administered by supplementation at a nutritional level, in the aorta of apo E⁻/⁻ mice using a global transcriptomic approach. This study focused on the early stage of atherosclerosis development for better assessment of BE action on initiation mechanisms of this pathology. After a two week period, plasma lipid and antioxidant capacity were evaluated and the global genomic analysis was carried out using pangenomic microarrays. BE supplementation significantly improved hypercholesterolemia whereas the plasmatic antioxidant status remained unchanged. Nutrigenomic analysis identified 1261 genes which expression was modulated by BE in the aorta. Bioinformatic analysis revealed that these genes are implicated in different cellular processes such as oxidative stress, inflammation, transendothelial migration and angiogenesis, processes associated with atherosclerosis development/protection. Some of the most significantly down-regulated genes included genes coding for AOX1, CYP2E1 or TXNIP implicated in the regulation of oxidative stress, JAM-A coding for adhesion molecules or VEGFR2 implicate in regulation of angiogenesis. Other genes were up-regulated, such as CRB3, CLDN14 or CDH4 potentially associated with increased cell-cell adhesion and decreased paracellular permeability. These results provide a global integrated view of the mechanisms involved in the preventive action of bilberry anthocyanin-rich extract against atherosclerosis."	"CaV1.3 L-type Ca2+ channels modulate depression-like behaviour in mice independent of deaf phenotype. Mounting evidence suggests that voltage-gated L-type Ca2+ channels can modulate affective behaviour. We therefore explored the role of CaV1.3 L-type Ca2+ channels in depression- and anxiety-like behaviours using CaV1.3-deficient mice (CaV1.3-/-). We showed that CaV1.3-/- mice displayed less immobility in the forced swim test as well as in the tail suspension test, indicating an antidepressant-like phenotype. Locomotor activity in the home cage or a novel open-field test was not influenced. In the elevated plus maze (EPM), CaV1.3-/- mice entered the open arms more frequently and spent more time there indicating an anxiolytic-like phenotype which was, however, not supported in the stress-induced hyperthermia test. By performing parallel experiments in Claudin 14 knockout mice (Cldn14-/-), which like CaV1.3-/- mice are congenitally deaf, an influence of deafness on the antidepressant-like phenotype could be ruled out. On the other hand, a similar EPM behaviour indicative of an anxiolytic phenotype was also found in the Cldn14-/- animals. Using electroretinography and visual behavioural tasks we demonstrated that at least in mice, CaV1.3 channels do not significantly contribute to visual function. However, marked morphological changes were revealed in synaptic ribbons in the outer plexiform layer of CaV1.3-/- retinas by immunohistochemistry suggesting a possible role of this channel type in structural plasticity at the ribbon synapse. Taken together, our findings indicate that CaV1.3 L-type Ca2+ channels modulate depression-like behaviour but are not essential for visual function. The findings raise the possibility that selective modulation of CaV1.3 channels could be a promising new therapeutic concept for the treatment of mood disorders."	"Sequence variants in the CLDN14 gene associate with kidney stones and bone mineral density. Kidney stone disease is a common condition. To search for sequence variants conferring risk of kidney stones, we conducted a genome-wide association study in 3,773 cases and 42,510 controls from Iceland and The Netherlands. We discovered common, synonymous variants in the CLDN14 gene that associate with kidney stones (OR = 1.25 and P = 4.0 x 10(-12) for rs219780[C]). Approximately 62% of the general population is homozygous for rs219780[C] and is estimated to have 1.64 times greater risk of developing the disease compared to noncarriers. The CLDN14 gene is expressed in the kidney and regulates paracellular permeability at epithelial tight junctions. The same variants were also found to associate with reduced bone mineral density at the hip (P = 0.00039) and spine (P = 0.0077)."	"Mutation in gap and tight junctions in patients with non-syndromic hearing loss. Biallelic mutations in the GJB2, GJB3, GJB6 and CLDN14 genes have been implicated in autosomal recessive non-syndromic hearing impairment (ARNSHI). Moreover, a large number of GJB2 heterozygous patients was reported. The phenotype was in partly justified by the occurrence of two deletions including GJB6. We analysed GJB2, GJB6, GJB3 and CLDN14 in 102 Tunisian patients with ARNSHI. The deletions del(GJB6-D13S1830) and del(GJB6-D13S1854) were also screened. The c.35delG in GJB2 was the most frequent mutation (21.57%). It was detected at heterozygous state in 2 patients. The del(GJB6-D13S1830) was identified in one case at heterozygous state. No other mutation in studied gap junction genes was detected in heterozygous patients. Several polymorphisms were identified in GJB3, GJB6 and CLDN14. Our study confirms the importance of GJB2 screening in ARNSHI and suggests that in consanguineous populations, a single DFNB1 mutant allele in individuals with HI is likely due to a coincidental carrier state."	"tSNP-based identification of allelic loss of gene expression in a patient with a balanced chromosomal rearrangement. Identification of genes affected by disease-associated rare chromosomal rearrangements has led to the cloning of several disease genes. Here we have used a simple approach involving allele-specific RT-PCR-based detection of gene expression to identify a gene affected by a balanced autosome;autosome translocation. We identified a transcribed SNP (tSNP), c.68G--&gt;A, present in a novel untranslated exon of the CLDN14 gene in a male patient with mental retardation who had a balanced t(13;21) chromosomal translocation. We determined an allelic loss of expression of the CLDN14 gene isoform at the 21q22.1 chromosomal breakpoint. Although additional work is necessary to explore a possible function of the novel CLDN14 isoform in brain development and function and the potential pathogenic consequences of its disruption in this patient, the result clearly demonstrates the utility of a tSNP-based detection of allelic loss of gene expression in studies involving chromosomal rearrangements."	"Alterations in the GJB3 and CLDN14 genes in families with nonsyndromic sensorineural hearing loss. NA"	"Different mechanisms preclude mutant CLDN14 proteins from forming tight junctions in vitro. Mutations in claudin 14 (CLDN14) cause nonsyndromic DFNB29 deafness in humans. The analysis of a murine model indicated that this phenotype is associated with degeneration of hair cells, possibly due to cation overload. However, the mechanism linking these alterations to CLDN14 mutations is unknown. To investigate this mechanism, we compared the ability of wild-type and missense mutant CLDN14 to form tight junctions. Ectopic expression in L mouse fibroblasts (LM cells) of wild-type CLDN14 protein induced the formation of tight junctions, while both the c.254T&gt;A (p.V85D) mutant, previously identified in a Pakistani family, and the c.301 G&gt;A (p.G101R) mutant, identified in this study through the screen of 183 Spanish and Greek patients affected with sporadic nonsyndromic deafness, failed to form such junctions. However, the two mutant proteins differed in their ability to localize at the plasma membrane. We further identified hitherto undescribed exons of CLDN14 that are utilized in alternative spliced transcripts. We demonstrated that different mutations of CLDN14 impaired by different mechanisms the ability of the protein to form tight junctions. Our results indicate that the ability of CLDN14 to be recruited to these junctions is crucial for the hearing process."	"Claudin 14 knockout mice, a model for autosomal recessive deafness DFNB29, are deaf due to cochlear hair cell degeneration. Tight junctions (TJs) create ion-selective paracellular permeability barriers between extracellular compartments. In the organ of Corti of the inner ear, TJs of the reticular lamina separate K(+)-rich endolymph and Na(+)-rich perilymph. In humans, mutations of the gene encoding claudin 14 TJ protein cause profound deafness but the underlying pathogenesis is unknown. To explore the role of claudin 14 in the inner ear and in other tissues we created a mouse model by a targeted deletion of Cldn14. In the targeted allele a lacZ cassette is expressed under the Cldn14 promoter. In Cldn14-lacZ heterozygous mice beta-galactosidase activity was detected in cochlear inner and outer hair cells and supporting cells, in the collecting ducts of the kidney, and around the lobules of the liver. Cldn14-null mice have a normal endocochlear potential but are deaf due to rapid degeneration of cochlear outer hair cells, followed by slower degeneration of the inner hair cells, during the first 3 weeks of life. Monolayers of MDCK cells expressing claudin 14 show a 6-fold increase in the transepithelial electrical resistance by decreasing paracellular permeability for cations. In wild type mice, claudin 14 was immunolocalized at hair cell and supporting cell TJs. Our data suggest that the TJ complex at the apex of the reticular lamina requires claudin 14 as a cation-restrictive barrier to maintain the proper ionic composition of the fluid surrounding the basolateral surface of outer hair cells."	"Frequencies of gap- and tight-junction mutations in Turkish families with autosomal-recessive non-syndromic hearing loss. Mutations in genes encoding gap- and tight-junction proteins have been shown to cause distinct forms of hearing loss. We have now determined the GJB2[connexin 26 (Cx26)] mutation spectrum in 60 index patients from mostly large Turkish families with autosomal-recessive inherited non-syndromic sensorineural hearing loss (NSSHL). GJB2 mutations were found in 31.7% of the families, and the GJB2-35delG mutation accounted for 73.6% of all GJB2 mutations. The carrier frequency of GJB2-35delG in the normal Turkish population was found to be 1.17% (five in 429). In addition to the described W24X, 233delC, 120delE and R127H mutations, we also identified a novel mutation, Q80R, in the GJB2 gene. Interestingly, the Q80R allele was inherited on the same haplotype as V27I and E114G polymorphisms. As little is known about the mutation frequencies of most other recently identified gap- and tight-junction genes as a cause for hearing loss, we further screened our patients for mutations in GJB3 (Cx31), GJA1 (Cx43), DeltaGJB6-D13S1830 (Cx30) and the gene encoding the tight-junction protein, claudin 14 (CLDN14). Several novel polymorphisms, but no disease-associated mutations, were identified in the CLND14 and GJA1 genes, and we were unable to detect the DeltaGJB6-D13S1830 deletion. A novel putative mutation, P223T, was found in the GJB3 gene in heterozygous form in a family with two affected children. Our data shows that the frequency of GJB2 mutations in Turkish patients with autosomal-recessive NSSHL and the carrier rate of the GJB2-35delG mutation in the Turkish population, is much lower than described for other Mediterranean countries. Furthermore, mutations in other gap- and tight-junction proteins are not a frequent cause of hearing loss in Turkey."	"Mutations in the gene encoding tight junction claudin-14 cause autosomal recessive deafness DFNB29. Tight junctions in the cochlear duct are thought to compartmentalize endolymph and provide structural support for the auditory neuroepithelium. The claudin family of genes is known to express protein components of tight junctions in other tissues. The essential function of one of these claudins in the inner ear was established by identifying mutations in CLDN14 that cause nonsyndromic recessive deafness DFNB29 in two large consanguineous Pakistani families. In situ hybridization and immunofluorescence studies demonstrated mouse claudin-14 expression in the sensory epithelium of the organ of Corti."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ESPN"	"nonsyndromic genetic deafness"	"Results in the ESPN/ERA-EDTA Registry suggest disparities in access to kidney transplantation but little variation in graft survival of children across Europe. One of the main objectives of the European health policy framework is to ensure equitable access to high-quality health services across Europe. Here we examined country-specific kidney transplantation and graft failure rates in children and explore their country- and patient-level determinants. Patients under 20 years of age initiating kidney replacement therapy from January 2007 through December 2015 in 37 European countries participating in the ESPN/ERA-EDTA Registry were included in the analyses. Countries were categorized as low-, middle-, and high-income based on gross domestic product. At five years of follow-up, 4326 of 6909 children on kidney replacement therapy received their first kidney transplant. Overall median time from kidney replacement therapy start to first kidney transplantation was 1.4 (inter quartile range 0.3-4.3) years. The five-year kidney transplantation probability was 48.8% (95% confidence interval: 45.9-51.7%) in low-income, 76.3% (72.8-79.5%) in middle-income and 92.3% (91.0-93.4%) in high-income countries and was strongly associated with macro-economic factors. Gross domestic product alone explained 67% of the international variation in transplantation rates. Compared with high-income countries, kidney transplantation was 76% less likely to be performed in low-income and 58% less likely in middle-income countries. Overall five-year graft survival in Europe was 88% and showed little variation across countries. Thus, despite large disparities transplantation access across Europe, graft failure rates were relatively similar. Hence, graft survival in low-risk transplant recipients from lower-income countries seems as good as graft survival among all (low-, medium-, and high-risk) graft recipients from high-income countries."	"Different sized slices of cake: macroeconomic impacts on access to transplantation and graft survival for children. Transplantation for children with end-stage kidney disease confers clear survival, health, and health economic benefits. Access to transplantation and graft survival has been clearly shown to be affected by macroeconomic and patient-level factors in adults. This commentary explores the findings and implications of the &quot;Results in the ESPN/ERA-EDTA Registry Suggest Disparities in Access to Kidney Transplantation but Little Variation in Graft Survival of Children Across Europe&quot; study by Bonthuis et al., including key priorities in future research."	"Genetic aspects of congenital nephrotic syndrome: a consensus statement from the ERKNet-ESPN inherited glomerulopathy working group. Congenital nephrotic syndrome (CNS) is a heterogeneous group of disorders presenting with massive proteinuria within the first 3 months of life almost inevitably leading to end-stage kidney disease. The Work Group for the European Reference Network for Kidney Diseases (ERKNet) and the European Society for Pediatric Nephrology (ESPN) has developed consensus statement on genetic aspects of CNS diagnosis and management. The presented expert opinion recommends genetic diagnostics as the key diagnostic test to be ordered already during the initial evaluation of the patient, discusses which phenotyping workup should be performed and presents known genotype-phenotype correlations."	"Integrative analysis of DNA methylation and gene expression profiles identified potential breast cancer-specific diagnostic markers. Breast cancer is a common malignant tumor among women whose prognosis is largely determined by the period and accuracy of diagnosis. We here propose to identify a robust DNA methylation-based breast cancer-specific diagnostic signature. Genome-wide DNA methylation and gene expression profiles of breast cancer patients along with their adjacent normal tissues from the Cancer Genome Atlas (TCGA) were obtained as the training set. CpGs that with significantly elevated methylation level in breast cancer than not only their adjacent normal tissues and the other ten common cancers from TCGA but also the healthy breast tissues from the Gene Expression Omnibus (GEO) were finally remained for logistic regression analysis. Another independent breast cancer DNA methylation dataset from GEO was used as the testing set. Lots of CpGs were hyper-methylated in breast cancer samples compared with adjacent normal tissues, which tend to be negatively correlated with gene expressions. Eight CpGs located at RIIAD1, ENPP2, ESPN, and ETS1, were finally retained. The diagnostic model was reliable in separating BRCA from normal samples. Besides, chromatin accessibility status of RIIAD1, ENPP2, ESPN and ETS1 showed great differences between MCF-7 and MDA-MB-231 cell lines. In conclusion, the present study should be helpful for breast cancer early and accurate diagnosis."	"Autosomal dominant Alport syndrome due to a COL4A4 mutation with an additional ESPN variant detected by whole-exome analysis. Alport syndrome (AS) is a rare hereditary disease that presents with chronic kidney disease and sensorineural hearing loss, and is diagnosed by its clinical features, pathological features on renal tissue, and mode of inheritance. We report a woman in her 20 s who exhibited persistent haematuria with normal renal function and sensorineural hearing loss. Her family members exhibited the same clinical findings among three generations and were suspected of having autosomal dominant AS (ADAS). Renal biopsy showed minor glomerular abnormalities on light microscopy and extensive thinning of the glomerular basement membrane on electron microscopy. Whole-exome analysis revealed a known COL4A4 (type IV collagen α4) mutation (c. 2510 G &gt; C: p. Gly837Ala). Two pedigrees with the same variant have been reported previously, one as ADAS and the other as autosomal recessive AS. However, these two cases exhibited no sensorineural hearing loss. The analysis in the present case revealed another missense variant in ESPN (Espin), an actin-bundling protein, which is a causative gene for sensorineural hearing loss. Although the pathophysiological significance of this novel missense variant needs to be clarified, computational analysis predicted that the variant creates a new phosphorylation site for protein kinase C. Our case suggests a possible association of hereditary sensorineural hearing loss with ADAS. Whole-exome analysis should be considered to diagnose hereditary and multiple-organ disorders."	"The European Society for Paediatric Nephrology study of pediatric renal care in Europe: comparative analysis 1998-2017. In 1998, a survey of the European Society for Paediatric Nephrology (ESPN) revealed substantial disparities in pediatric renal care among European countries. Therefore, ESPN aimed at harmonizing renal care in all European countries in the following 20 years. In 2017, we conducted a survey to evaluate the current status of renal health policies for children in Europe. A 33-question web-based survey was designed and sent to presidents or representatives of national societies of pediatric nephrology in 44 European countries. Data was reported from 42 (95.5%) countries. The number of pediatric nephrologists per million child population increased from 1998 to 2017 in 70% of countries. Pediatric dialysis facilities for acute kidney injury and end-stage kidney disease were available in 95% of countries. The availability of pediatric kidney transplantation increased from 55 to 93% of countries. Considerable variation was found in the current availability of allied health professionals, including psychosocial and nutritional support, high-tech diagnostic methods, and treatment with expensive drugs for children with kidney diseases between different European countries. The 20-year follow-up analysis of pediatric renal care services in European countries revealed that pediatric nephrology has become a well-established subspecialty in pediatrics and nephrology in 2017. The ESPN will continue its efforts to further improve pediatric renal care for European children by harmonizing remaining disparities of renal care services."	"Think Twice before Postponing Chronic Dialysis in Children. NA"	"Identification of whirlin domains interacting with espin: A study of the mechanism of Usher syndrome type II. Usher syndrome is the most common condition of combined blindness and deafness and is classified into three types (USH1‑USH3). USH2 is the most commonly diagnosed of all Usher syndrome cases. There are three identified proteins (usherin, GPR98 and whirlin) that form the USH2 complex. Defects in any of these proteins may cause failure in the formation of the USH2 complex, which is the primary cause of USH2. Whirlin is a scaffold protein and is essential for the assembly of the USH2 protein complex. It has been reported that espin is an interacting partner protein for whirlin. However, which fragment of whirlin interacts with espin remains unclear. In the present study, whirlin N‑ and C‑terminal fragments in the pEGFP‑C2 vectors were constructed. The recombinant plasmids were transfected into COS‑7 cells to observe the co‑localization by confocal laser scanning microscopy. The interactions between whirlin and espin were investigated by co‑immunoprecipitation using the 293 cell line. It was demonstated that only the whirlin N‑terminal fragment was able to interact with espin and the PR (proline‑rich) region in whirlin may be important for the interaction. However, the present study did not investigate the interaction between whirlin and espin without the PR domain which warrants future research. Our findings elucidated a primary mechanism of interaction between whirlin and espin, which are crucial for further study on the USH2 complex and USH2 pathogenesis."	"The European Renal Association - European Dialysis and Transplant Association (ERA-EDTA) Registry Annual Report 2016: a summary. This article summarizes the ERA-EDTA Registry's 2016 Annual Report, by describing the epidemiology of renal replacement therapy (RRT) for end-stage renal disease (ESRD) in 2016 within 36 countries. In 2017 and 2018, the ERA-EDTA Registry received data on patients undergoing RRT for ESRD in 2016 from 52 national or regional renal registries. In all, 32 registries provided individual patient data and 20 provided aggregated data. The incidence and prevalence of RRT and the survival probabilities of these patients were determined. In 2016, the incidence of RRT for ESRD was 121 per million population (pmp), ranging from 29 pmp in Ukraine to 251 pmp in Greece. Almost two-thirds of patients were men, over half were aged ≥65 years and almost a quarter had diabetes mellitus as their primary renal diagnosis. Treatment modality at the start of RRT was haemodialysis for 84% of patients. On 31 December 2016, the prevalence of RRT was 823 pmp, ranging from 188 pmp in Ukraine to 1906 pmp in Portugal. In 2016, the transplant rate was 32 pmp, varying from 3 pmp in Ukraine to 94 pmp in the Spanish region of Catalonia. For patients commencing RRT during 2007-11, the 5-year unadjusted patient survival probability on all RRT modalities combined was 50.5%. For 2016, the incidence and prevalence of RRT were higher among men (187 and 1381 pmp) than women (101 and 827 pmp), and men had a higher rate of kidney transplantation (59 pmp) compared with women (33 pmp). For patients starting dialysis and for patients receiving a kidney transplant during 2007-11, the adjusted patient survival probabilities appeared to be higher for women than for men."	"Whole-exome sequencing identifies rare pathogenic and candidate variants in sporadic Chinese Han deaf patients. Genetic causes of hearing loss are highly heterogeneous and often ethnically specific. In recent years, a variety of next-generation sequencing (NGS) panels have been developed to target deafness-causative genes. Whole-exome sequencing (WES), on the other hand, was rarely used for genetic testing for deafness. In this study, we performed WES in 38 sporadic Chinese Han deaf patients who have been pre-excluded for mutations in common deafness genes GJB2, SLC26A4 and MT-RNR1. Non-synonymous variants have been filtered based on their minor allele frequencies in public databases and ethnically matched controls. Bi-allelic pathogenic mutations in eight deafness genes, OTOF, TRIOBP, ESPN, HARS2, CDH23, MYO7A, USH1C and TJP2, were identified in 10 patients, with 17 mutations identified in this study not being associated with deafness previously. For the rest 28 patients, possibly bi-allelic rare non-synonymous variants in an averaged 4.7 genes per patient were identified as candidate pathogenic causes for future analysis. Our study showed that WES may provide a unified platform for genetic testing of deafness and enables retro-analyzing when new causative genes are revealed."	"Should we abandon GFR in the decision to initiate chronic dialysis? The best time to start chronic dialysis during the course of CKD stage 5 is controversial. The first randomised control trial of dialysis initiation either in early or late CKD stage 5 in adults (IDEAL study), and 3 studies from the two largest paediatric registries, the U.S. Renal Data System (USRDS) and the European Society of Paediatric Nephrology (ESPN) Registry, have now provided us with evidence to guide us in this important decision-making process. The message 'no benefit from early start of dialysis' is the conclusion from all four studies. However, what are the limitations of these studies? Can GFR be assessed at CKD stages 4 and 5? What are the factors used to assess the benefit of early or late start? These issues are discussed in this review."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Clinical practice recommendations for growth hormone treatment in children with chronic kidney disease. Achieving normal growth is one of the most challenging problems in the management of children with chronic kidney disease (CKD). Treatment with recombinant human growth hormone (GH) promotes longitudinal growth and likely enables children with CKD and short stature to reach normal adult height. Here, members of the European Society for Paediatric Nephrology (ESPN) CKD-Mineral and Bone Disorder (MBD), Dialysis and Transplantation working groups present clinical practice recommendations for the use of GH in children with CKD on dialysis and after renal transplantation. These recommendations have been developed with input from an external advisory group of paediatric endocrinologists, paediatric nephrologists and patient representatives. We recommend that children with stage 3-5 CKD or on dialysis should be candidates for GH therapy if they have persistent growth failure, defined as a height below the third percentile for age and sex and a height velocity below the twenty-fifth percentile, once other potentially treatable risk factors for growth failure have been adequately addressed and provided the child has growth potential. In children who have received a kidney transplant and fulfil the above growth criteria, we recommend initiation of GH therapy 1 year after transplantation if spontaneous catch-up growth does not occur and steroid-free immunosuppression is not a feasible option. GH should be given at dosages of 0.045-0.05 mg/kg per day by daily subcutaneous injections until the patient has reached their final height or until renal transplantation. In addition to providing treatment recommendations, a cost-effectiveness analysis is provided that might help guide decision-making."	"International consensus statement on the diagnosis and management of autosomal dominant polycystic kidney disease in children and young people. These recommendations were systematically developed on behalf of the Network for Early Onset Cystic Kidney Disease (NEOCYST) by an international group of experts in autosomal dominant polycystic kidney disease (ADPKD) from paediatric and adult nephrology, human genetics, paediatric radiology and ethics specialties together with patient representatives. They have been endorsed by the International Pediatric Nephrology Association (IPNA) and the European Society of Paediatric Nephrology (ESPN). For asymptomatic minors at risk of ADPKD, ongoing surveillance (repeated screening for treatable disease manifestations without diagnostic testing) or immediate diagnostic screening are equally valid clinical approaches. Ultrasonography is the current radiological method of choice for screening. Sonographic detection of one or more cysts in an at-risk child is highly suggestive of ADPKD, but a negative scan cannot rule out ADPKD in childhood. Genetic testing is recommended for infants with very-early-onset symptomatic disease and for children with a negative family history and progressive disease. Children with a positive family history and either confirmed or unknown disease status should be monitored for hypertension (preferably by ambulatory blood pressure monitoring) and albuminuria. Currently, vasopressin antagonists should not be offered routinely but off-label use can be considered in selected children. No consensus was reached on the use of statins, but mTOR inhibitors and somatostatin analogues are not recommended. Children with ADPKD should be strongly encouraged to achieve the low dietary salt intake that is recommended for all children."	"Association between timing of dialysis initiation and clinical outcomes in the paediatric population: an ESPN/ERA-EDTA registry study. There is no consensus regarding the timing of dialysis therapy initiation for end-stage kidney disease (ESKD) in children. As studies investigating the association between timing of dialysis initiation and clinical outcomes are lacking, we aimed to study this relationship in a cohort of European children who started maintenance dialysis treatment. We used data on 2963 children from 21 different countries included in the European Society of Pediatric Nephrology/European Renal Association-European Dialysis and Transplant Association Registry who started renal replacement therapy before 18 years of age between 2000 and 2014. We compared two groups according to the estimated glomerular filtration rate (eGFR) at start: eGFR ≥8 mL/min/1.73 m2 (early starters) and eGFR &lt;8 mL/min/1.73 m2 (late starters). The primary outcomes were patient survival and access to transplantation. Secondary outcomes were growth and cardiovascular risk factors. Sensitivity analyses were performed to account for selection- and lead time-bias. The median eGFR at the start of dialysis was 6.1 for late versus 10.5 mL/min/1.73 m2 for early starters. Early starters were older [median: 11.0, interquartile range (IQR): 5.7-14.5 versus 9.4, IQR: 2.6-14.1 years]. There were no differences observed between the two groups in mortality and access to transplantation at 1, 2 and 5 years of follow-up. One-year evolution of height standard deviation scores was similar among the groups, whereas hypertension was more prevalent among late initiators. Sensitivity analyses resulted in similar findings. We found no evidence for a clinically relevant benefit of early start of dialysis in children with ESKD. Presence of cardiovascular risk factors, such as high blood pressure, should be taken into account when deciding to initiate or postpone dialysis in children with ESKD, as this affects the survival."	"Growth Patterns After Kidney Transplantation in European Children Over the Past 25 Years: An ESPN/ERA-EDTA Registry Study. Improved management of growth impairment might have resulted in less growth retardation after pediatric kidney transplantation (KT) over time. We aimed to analyze recent longitudinal growth data after KT in comparison to previous eras, its determinants, and the association with transplant outcome in a large cohort of transplanted children using data from the European Society for Paediatric Nephrology/European Renal Association and European Dialysis and Transplant Association Registry. A total of 3492 patients transplanted before 18 years from 1990 to 2012 were included. Height SD scores (SDS) were calculated using recent national or European growth charts. We used generalized equation models to estimate the prevalence of growth deficit and linear mixed models to calculate adjusted mean height SDS. Mean adjusted height post-KT was -1.77 SDS. Height SDS was within normal range in 55%, whereas 28% showed moderate, and 17% severe growth deficit. Girls were significantly shorter than boys, but catch-up growth by 5 years post-KT was observed in both boys and girls. Children &lt;6 years were shortest at KT and showed the greatest increase in height, whereas there was no catch-up growth in children transplanted &gt;12. Catch-up growth post-KT remains limited, height SDS did not improve over time, resulting in short stature in nearly half of transplanted children in Europe."	"Vascular access in children requiring maintenance haemodialysis: a consensus document by the European Society for Paediatric Nephrology Dialysis Working Group. There are three principle forms of vascular access available for the treatment of children with end stage kidney disease (ESKD) by haemodialysis: tunnelled catheters placed in a central vein (central venous lines, CVLs), arteriovenous fistulas (AVF), and arteriovenous grafts (AVG) using prosthetic or biological material. Compared with the adult literature, there are few studies in children to provide evidence based guidelines for optimal vascular access type or its management and outcomes in children with ESKD. The European Society for Paediatric Nephrology Dialysis Working Group (ESPN Dialysis WG) have developed recommendations for the choice of access type, pre-operative evaluation, monitoring, and prevention and management of complications of different access types in children with ESKD. For adults with ESKD on haemodialysis, the principle of &quot;Fistula First&quot; has been key to changing the attitude to vascular access for haemodialysis. However, data from multiple observational studies and the International Paediatric Haemodialysis Network registry suggest that CVLs are associated with a significantly higher rate of infections and access dysfunction, and need for access replacement. Despite this, AVFs are used in only ∼25% of children on haemodialysis. It is important to provide the right access for the right patient at the right time in their life-course of renal replacement therapy, with an emphasis on venous preservation at all times. While AVFs may not be suitable in the very young or those with an anticipated short dialysis course before transplantation, many paediatric studies have shown that AVFs are superior to CVLs. Here we present clinical practice recommendations for AVFs and CVLs in children with ESKD. The Grading of Recommendations Assessment, Development, and Evaluation (GRADE) system has been used to develop and GRADE the recommendations. In the absence of high quality evidence, the opinion of experts from the ESPN Dialysis WG is provided, but is clearly GRADE-ed as such and must be carefully considered by the treating physician, and adapted to local expertise and individual patient needs as appropriate."	"European Society of Pediatric Nephrology survey on current practice regarding recurrent focal segmental glomerulosclerosis after pediatric kidney transplantation. Primary FSGS is an important cause of ESRD in children. FSGS recurrence after kidney transplantation is associated with early graft loss. No guidelines for treatment of FSGS recurrence exist. We conducted a survey to gain insight into variation of treatment between centers. A survey was sent to all members of the ESPN on behalf of the &quot;Renal Transplantation&quot; and &quot;Idiopathic Nephrotic Syndrome&quot; working groups. Fifty-nine nephrologists from 31 countries responded, reporting 807 FSGS patients, with 241 (30%) FSGS recurrences after transplantation. Recurrence varied from 0% to 100% between respondents. Native nephrectomy before or during transplantation was performed, respectively, always (37%), never (39%), or on clinical indication (17%). Half of the respondents started preventive treatment before transplantation, using PF (n = 10); R (n = 4); PF or IA, plus R (n = 9); cyclosporine (n = 2); or unknown (n = 4). Immunosuppressive therapy for patients without known mutations consisted of a combination of steroids, tacrolimus/cyclosporine, and MMF, with or without IL-2R-blockade in, respectively, 61% and 86% of the respondents. Sixty-three percent applied a similar regimen to patients with known mutations. FSGS recurrence was treated with PF or IA, plus R by 66% of respondents; 54% observed no response. Complete remission in &gt;50% of patients was reported by 41% of the respondents. FSGS recurrence after transplantation is common, but varies greatly between centers. We found great variability in preventive and therapeutic treatment regimens. Future research should focus on predisposing factors, including biopsy findings and genetic mutations, and standardized treatment."	"Elucidation of the unique mutation spectrum of severe hearing loss in a Vietnamese pediatric population. The mutational spectrum of deafness in Indochina Peninsula, including Vietnam, remains mostly undetermined. This significantly hampers the progress toward establishing an effective genetic screening method and early customized rehabilitation modalities for hearing loss. In this study, we evaluated the genetic profile of severe-to-profound hearing loss in a Vietnamese pediatric population using a hierarchical genetic analysis protocol that screened 11 known deafness-causing variants, followed by massively parallel sequencing targeting 129 deafness-associated genes. Eighty-seven children with isolated severe-to-profound non-syndromic hearing loss without family history were included. The overall molecular diagnostic yield was estimated to be 31.7%. The mutational spectrum for severe-to-profound non-syndromic hearing loss in our Vietnamese population was unique: The most prevalent variants resided in the MYO15A gene (7.2%), followed by GJB2 (6.9%), MYO7A (5.5%), SLC26A4 (4.6%), TMC1 (1.8%), ESPN (1.8%), POU3F4 (1.8%), MYH14 (1.8%), EYA1 (1.8%), and MR-RNR1 (1.1%). The unique spectrum of causative genes in the Vietnamese deaf population was similar to that in the southern Chinese deaf population. It is our hope that the mutation spectrum provided here could aid in establishing an efficient protocol for genetic analysis of severe-to-profound hearing loss and a customized screening kit for the Vietnamese population."	"Effects of Game Characteristics and Player Positions on Concussion Incidence and Severity in Professional Football. Increasing efforts have been made to reduce the incidence and severity of concussion in high-contact sports. Despite these efforts, a relative lack of knowledge is available regarding modulating factors affecting concussion injury. To analyze the potential influence of game characteristics and outcomes on concussion incidence and severity in professional football. Descriptive epidemiology study. PBS Frontline Concussion Watch was used to collect concussion injury data from regular-season games of 32 National Football League (NFL) teams from 2012 to 2015. Game characteristic variables such as rushing and passing attempts, turnovers, and margin of victory were collected from ESPN. Analysis included descriptive statistics, analysis of variance, t tests, and correlation tests. Away teams demonstrated a significantly greater concussion incidence per game than home teams. Losing teams had a significantly greater concussion incidence per game than winning teams. Being both the away team and the losing team appeared to have an additive effect. The home-versus-away and win-versus-loss effects were significant for offensive but not defensive positions. Within individual positions, significantly greater concussion incidence was associated with tight ends, running backs, wide receivers, and cornerbacks. When running versus passing positions were compared, passing positions (wide receiver, tight end, cornerback, safety) had significantly greater concussion incidence. A total of 626 games were missed as a result of reported concussions. Away teams had significantly more games missed due to concussion when they lost. Play time did not significantly differ before or after concussion injury. Other game characteristic variables did not significantly affect concussion frequency or intensity. Position, game location, and game outcome affect concussion incidence for professional football players. In a subset of analyses, the number of games missed aligned with concussion incidence, but this appeared to be an imperfect measure. These findings highlight new factors that may modulate concussion incidence and merit further study on how they may influence concussion evaluation."	"An actin-binding protein ESPN is an independent prognosticator and regulates cell growth for esophageal squamous cell carcinoma. ESPN (Espin), an actin filament-binding protein, plays an important role in regulating the organization, dimensions, dynamics, and signaling capacities of the actin filament-rich, microvillus-type specializations that mediate sensory transduction in various mechanosensory and chemosensory cells. Recent few studies show that ESPN regulates metastasis and cell proliferation in melanoma. However, the significance of ESPN in other cancers such as esophageal squamous cell carcinoma (ESCC) remains largely unknown. Immunohistochemistry was performed in 169 patients with ESCC and correlated with clinicopathological features and survival. The functional role of ESPN in ESCC cells was determined by ESPN-mediated siRNA. Univariate analyses showed that high ESPN expression was associated with inferior overall survival (P = 0.005) and disease-free survival (P = 0.035). High ESPN expression was an independent prognosticator in multivariate analysis for overall survival (P = 0.009, hazard ratio = 1.688) and disease-free survival (P = 0.049, hazard ratio = 1.451). The 5-year overall survival rates were 30% and 54% in patients with high and low expression of ESPN, respectively. Inhibition of endogenous ESPN in ESCC cells decreased ESCC growth by reducing cell proliferating rates. High ESPN expression is independently associated with poor prognosis in patients with ESCC and downregulation of ESPN inhibits ESCC cell growth. Our results suggest that ESPN may be a novel therapeutic target for patients with ESCC."	"Hemodialysis vascular access and subsequent transplantation: a report from the ESPN/ERA-EDTA Registry. Current guidelines advocate use of arteriovenous fistula (AVF) over central venous catheter (CVC) for children starting hemodialysis (HD). European data on current practice, determinants of access choice and switches, patient survival, and access to transplantation are limited. We included incident patients from 18 European countries who started HD from 2000 to 2013 for whom vascular access type was reported to the ESPN/ERA-EDTA Registry. Data were evaluated using descriptive statistics, logistic and Cox regression models, and cumulative incidence competing risk analysis. Three hundred ninety-three (55.1%) of 713 children started HD with a CVC and were more often females, younger, had more often an unknown diagnosis, glomerulonephritis, or vasculitis, and lower hemoglobin and height-SDS at HD initiation. AVF patients were 91% less likely to switch to a second access, and two-year patient survival was 99.6% (CVC, 97.2%). Children who started with an AVF were less likely to receive a living donor transplant (adjusted HR, 0.30; 95% CI, 0.16-0.54) and more likely to receive a deceased donor transplant (adjusted HR, 1.50; 95% CI, 1.17-1.93), even after excluding patients who died or were transplanted in the first 6 months. CVC remains the most frequent type of vascular access in European children commencing HD. Our results suggest that the choice for CVC is influenced by the time of referral, rapid onset of end-stage renal disease, young age, and an expected short time to transplantation. The role of vascular access type on the pattern between living and deceased donation in subsequent transplantation requires further study."	"Infants with congenital nephrotic syndrome have comparable outcomes to infants with other renal diseases. Children with congenital nephrotic syndrome (CNS) commonly develop end stage renal failure in infancy and require dialysis, but little is known about the complications and outcomes of dialysis in these children. We conducted a retrospective case note review across members of the European Society for Pediatric Nephrology Dialysis Working Group to evaluate dialysis management, complications of dialysis, and outcomes in children with CNS. Eighty children (50% male) with CNS were identified form 17 centers over a 6-year period. Chronic dialysis was started in 44 (55%) children at a median age of 8 (interquartile range 4-14) months. Of these, 17 (39%) were on dialysis by the age of 6 months, 30 (68%) by 1 year, and 40 (91%) by 2 years. Peritoneal dialysis (PD) was the modality of choice in 93%, but 34% switched to hemodialysis (HD), largely due to catheter malfunction (n = 5) or peritonitis (n = 4). The peritonitis rate was 0.77 per patient-year. Weight and height SDS remained static after 6 months on dialysis. In the overall cohort, at final follow-up, 29 children were transplanted, 18 were still on dialysis (15 PD, 3 HD), 19 were in pre-dialysis chronic kidney disease (CKD), and there were 14 deaths (8 on dialysis). Median time on chronic dialysis until transplantation was 9 (6-18) months, and the median age at transplantation was 22 (14-28) months. Infants with CNS on dialysis have a comparable mortality, peritonitis rate, growth, and time to transplantation as infants with other primary renal diseases reported in international registry data."	"Genetic Aetiology of Nonsyndromic Hearing Loss in Moravia-Silesia. Hearing loss is the most common sensory deficit in humans. The aim of this study was to clarify the genetic aetiology of nonsyndromic hearing loss in the Moravian-Silesian population of the Czech Republic. This study included 200 patients (93 males, 107 females, mean age 16.9 years, ranging from 4 months to 62 years) with nonsyndromic sensorineural hearing loss. We screened all patients for mutations in GJB2 and the large deletion del(GJB6-D13S1830). We performed further screening for additional genes (SERPINB6, TMIE, COCH, ESPN, ACTG1, KCNQ4, and GJB3) with Sanger sequencing on a subset of patients that were negative for GJB2 mutations. We detected biallelic GJB2 mutations in 44 patients (22%). Among these patients, 63.6%, 9.1% and 2.3% exhibited homozygous c.35delG, p.Trp24*, and p.Met34Thr mutations, respectively. The remaining 25% of these patients exhibited compound heterozygous c.35delG, c.-23+1G&gt;A, p.Trp24*, p.Val37Ile, p.Met34Thr, p.Leu90Pro, c.235delC, c.313_326del14, p.Ser139Asn, and p.Gly147Leu mutations. We found a monoallelic GJB2 mutation in 12 patients (6.6%). We found no pathogenic mutations in the other tested genes. Conclusions: One fifth of our cohort had deafness related to GJB2 mutations. The del(GJB6-D13S1830), SERPINB6, TMIE, COCH, ESPN, ACTG1, GJB3, and KCNQ4 mutations were infrequently associated with deafness in the Moravian-Silesian population. Therefore, we suggest that del(GJB6-D13S1830) testing should be performed only when patients with deafness carry the monoallelic GJB2 mutation."	"Femoroacetabular Impingement in Professional Basketball Players: Return to Play, Career Length, and Performance After Hip Arthroscopy. Previous studies have demonstrated that hip arthroscopy is an effective treatment for symptomatic femoroacetabular impingement (FAI) in professional athletes across a variety of sports. However, the return-to-play rates and postoperative performance of elite basketball players after hip arthroscopy are currently unknown. To determine return-to-play rates and postoperative performance among professional basketball athletes after hip arthroscopy. Case series; Level of evidence, 3. Eighteen professional basketball players underwent hip arthroscopy (24 hips) for symptomatic FAI between 2001 and 2016 by a single surgeon. Return to play was defined as competing in a single professional game of equal level after surgery. Data were retrospectively obtained for each player from basketball-reference.com , ESPN.com , eurobasket.com, and individual team websites. Matched controls were selected from the websites to compare performances. The mean age at the time of surgery was 25.6 years, and the mean body mass index was 24.4 kg/m<sup>2</sup>. All players returned to their previous levels of competition, with a mean number of 4 seasons played after surgery (median, 3; range, 1-12). The mean ± SD time between the date of surgery and return to a professional game was 7.1 ± 4.4 months. There was no change in player efficiency rating when pre- and postinjury performance were compared. When compared with controls, players undergoing surgery also had no significant decline in player efficiency rating. Elite basketball athletes who undergo hip arthroscopy for the treatment of FAI return to their presurgical levels of competition at a high rate. These athletes demonstrate no significant overall decrease in performance upon their return to play."	"Programming Niche Accessibility and In Vitro Stemness with Intercellular DNA Reactions. Stem cells generally exist in low abundance and tend to lose stemness in the absence of self-renewal signals. While extracellular-matrix-mimicking techniques have been developed to support stem cell proliferation, the lack of niche cells in these synthetic systems often hampers continuous stem cell expansion and maintenance of pluripotency, which are indispensable for regenerative medicine. Here, an intercellular DNA-reaction-programmed ESPN (expansion of stem cells with pairing niches) strategy is developed for 3D culture of mammary stem cells (MaSCs). Boolean logic operations are implemented to confer DNA-programmed mechanical signaling and genetically engineered morphogen signaling by niche cells, resulting in sustained expansion of MaSCs in vitro. The creation of stem cell niches improves the proliferation of pluripotent cells by four times during one-week culture. This method thus provides a novel approach for logical regulation of stemness and proliferation of stem cells for biomedicine."	"Recovery of Kidney Function in Children Treated with Maintenance Dialysis. Data on recovery of kidney function in pediatric patients with presumed ESKD are scarce. We examined the occurrence of recovery of kidney function and its determinants in a large cohort of pediatric patients on maintenance dialysis in Europe. Data for 6574 patients from 36 European countries commencing dialysis at an age below 15 years, between 1990 and 2014 were extracted from the European Society for Pediatric Nephrology/European Renal Association-European Dialysis and Transplant Association Registry. Recovery of kidney function was defined as discontinuation of dialysis for at least 30 days. Time to recovery was studied using a cumulative incidence competing risk approach and adjusted Cox proportional hazard models. Two years after dialysis initiation, 130 patients (2%) experienced recovery of their kidney function after a median of 5.0 (interquartile range, 2.0-9.6) months on dialysis. Compared with patients with congenital anomalies of the kidney and urinary tract, recovery more often occurred in patients with vasculitis (11% at 2 years; adjusted hazard ratio [HR], 20.4; 95% confidence interval [95% CI], 9.7 to 42.8), ischemic kidney failure (12%; adjusted HR, 11.4; 95% CI, 5.6 to 23.1), and hemolytic uremic syndrome (13%; adjusted HR, 15.6; 95% CI, 8.9 to 27.3). Younger age and initiation on hemodialysis instead of peritoneal dialysis were also associated with recovery. For 42 patients (32%), recovery was transient as they returned to kidney replacement therapy after a median recovery period of 19.7 (interquartile range, 9.0-41.3) months. We demonstrate a recovery rate of 2% within 2 years after dialysis initiation in a large cohort of pediatric patients on maintenance dialysis. There is a clinically important chance of recovery in patients on dialysis with vasculitis, ischemic kidney failure, and hemolytic uremic syndrome, which should be considered when planning kidney transplantation in these children."	"Abstracts of the 51st Annual ESPN Meeting, Antalya, October 2018. NA"	"Self-Assembling Supramolecular Nanostructures Constructed from de Novo Extender Protein Nanobuilding Blocks. The design of novel proteins that self-assemble into supramolecular complexes is important for development in nanobiotechnology and synthetic biology. Recently, we designed and created a protein nanobuilding block (PN-Block), WA20-foldon, by fusing an intermolecularly folded dimeric de novo WA20 protein and a trimeric foldon domain of T4 phage fibritin (Kobayashi et al., J. Am. Chem. Soc. 2015, 137, 11285). WA20-foldon formed several types of self-assembling nanoarchitectures in multiples of 6-mers, including a barrel-like hexamer and a tetrahedron-like dodecamer. In this study, to construct chain-like polymeric nanostructures, we designed de novo extender protein nanobuilding blocks (ePN-Blocks) by tandemly fusing two de novo binary-patterned WA20 proteins with various linkers. The ePN-Blocks with long helical linkers or flexible linkers were expressed in soluble fractions of Escherichia coli, and the purified ePN-Blocks were analyzed by native PAGE, size exclusion chromatography-multiangle light scattering (SEC-MALS), small-angle X-ray scattering (SAXS), and transmission electron microscopy. These results suggest formation of various structural homo-oligomers. Subsequently, we reconstructed hetero-oligomeric complexes from extender and stopper PN-Blocks by denaturation and refolding. The present SEC-MALS and SAXS analyses show that extender and stopper PN-Block (esPN-Block) heterocomplexes formed different types of extended chain-like conformations depending on their linker types. Moreover, atomic force microscopy imaging in liquid suggests that the esPN-Block heterocomplexes with metal ions further self-assembled into supramolecular nanostructures on mica surfaces. Taken together, the present data demonstrate that the design and construction of self-assembling PN-Blocks using de novo proteins is a useful strategy for building polymeric nanoarchitectures of supramolecular protein complexes."	"26th Congress of the European Society for Pediatric Neurosurgery (ESPN) Bonn-Germany, 6-9 May 2018. NA"	"Inframe deletion of human ESPN is associated with deafness, vestibulopathy and vision impairment. Usher syndrome (USH) is a neurosensory disorder characterised by deafness, variable vestibular areflexia and vision loss. The aim of the study was to identify the genetic defect in a Pakistani family (PKDF1051) segregating USH. Genome-wide linkage analysis was performed by using an Illumina linkage array followed by Sanger and exome sequencing. Heterologous cells and mouse organ of Corti explant-based transfection assays were used for functional evaluations. Detailed clinical evaluations were performed to characterise the USH phenotype. Through homozygosity mapping, we genetically linked the USH phenotype segregating in family PKDF1051 to markers on chromosome 1p36.32-p36.22. The locus was designated USH1M. Using a combination of Sanger sequencing and exome sequencing, we identified a novel homozygous 18 base pair inframe deletion in ESPN. Variants of ESPN, encoding the actin-bundling protein espin, have been previously associated with deafness and vestibular areflexia in humans with no apparent visual deficits. Our functional studies in heterologous cells and in mouse organ of Corti explant cultures revealed that the six deleted residues in affected individuals of family PKDF1051 are essential for the actin bundling function of espin demonstrated by ultracentrifugation actin binding and bundling assays. Funduscopic examination of the affected individuals of family PKDF1051 revealed irregular retinal contour, temporal flecks and disc pallor in both eyes. ERG revealed diminished rod photoreceptor function among affected individuals. Our study uncovers an additional USH gene, assigns the USH1 phenotype to a variant of ESPN and provides a 12th molecular component to the USH proteome."	"Effects of nutritional vitamin D supplementation on markers of bone and mineral metabolism in children with chronic kidney disease. We investigated the effects of nutritional vitamin D supplementation on markers of bone and mineral metabolism, i.e. serum levels of fibroblast growth factor 23 (FGF23), Klotho, bone alkaline phosphatase (BAP) and sclerostin, in two cohorts with chronic kidney disease (CKD). In all, 80 vitamin D-deficient children were selected: 40 with mild to moderate CKD from the ERGO study, a randomized trial of ergocalciferol supplementation [estimated glomerular filtration rate (eGFR) 55 mL/min/1.73 m2], and 40 with advanced CKD from the observational Cardiovascular Comorbidity in Children with Chronic Kidney Disease (4C) study (eGFR 24 mL/min/1.73 m2). In each study, vitamin D supplementation was started in 20 children and 20 matched children not receiving vitamin D served as controls. Measures were taken at baseline and after a median period of 8 months. Age- and gender-related standard deviation scores (SDSs) were calculated. Before vitamin D supplementation, children in the ERGO study had normal FGF23 (median 0.31 SDS) and BAP (-0.10 SDS) but decreased Klotho and sclerostin (-0.77 and -1.04 SDS, respectively), whereas 4C patients had increased FGF23 (3.87 SDS), BAP (0.78 SDS) and sclerostin (0.76 SDS) but normal Klotho (-0.27 SDS) levels. Vitamin D supplementation further increased FGF23 in 4C but not in ERGO patients. Serum Klotho and sclerostin normalized with vitamin D supplementation in ERGO but remained unchanged in 4C patients. BAP levels were unchanged in all patients. In the total cohort, significant effects of vitamin D supplementation were noted for Klotho at eGFR 40-70 mL/min/1.73 m2. Vitamin D supplementation normalized Klotho and sclerostin in children with mild to moderate CKD but further increased FGF23 in advanced CKD."	"The European Renal Association - European Dialysis and Transplant Association (ERA-EDTA) Registry Annual Report 2015: a summary. This article summarizes the European Renal Association - European Dialysis and Transplant Association (ERA-EDTA) Registry's 2015 Annual Report. It describes the epidemiology of renal replacement therapy (RRT) for end-stage renal disease (ESRD) in 2015 within 36 countries. In 2016 and 2017, the ERA-EDTA Registry received data on patients who were undergoing RRT for ESRD in 2015, from 52 national or regional renal registries. Thirty-two registries provided individual patient-level data and 20 provided aggregated-level data. The incidence, prevalence and survival probabilities of these patients were determined. In 2015, 81 373 individuals commenced RRT for ESRD, equating to an overall unadjusted incidence rate of 119 per million population (pmp). The incidence ranged by 10-fold, from 24 pmp in Ukraine to 232 pmp in the Czech Republic. Of the patients commencing RRT, almost two-thirds were men, over half were aged ≥65 years and a quarter had diabetes mellitus as their primary renal diagnosis. Treatment modality at the start of RRT was haemodialysis for 85% of the patients, peritoneal dialysis for 11% and a kidney transplant for 4%. By Day 91 of commencing RRT, 82% of patients were receiving haemodialysis, 13% peritoneal dialysis and 5% had a kidney transplant. On 31 December 2015, 546 783 individuals were receiving RRT for ESRD, corresponding to an unadjusted prevalence of 801 pmp. This ranged throughout Europe by more than 10-fold, from 178 pmp in Ukraine to 1824 pmp in Portugal. In 2015, 21 056 kidney transplantations were performed, equating to an overall unadjusted transplant rate of 31 pmp. This varied from 2 pmp in Ukraine to 94 pmp in the Spanish region of Cantabria. For patients commencing RRT during 2006-10, the 5-year unadjusted patient survival probabilities on all RRT modalities combined was 50.0% (95% confidence interval 49.9-50.1)."	"Overexpression of microRNA-612 Restrains the Growth, Invasion, and Tumorigenesis of Melanoma Cells by Targeting Espin. microRNA (miR)-612 shows anticancer activity in several types of cancers, yet its function in melanoma is still unclear. This study was undertaken to investigate the expression of miR-612 and its biological relevance in melanoma cell growth, invasion, and tumorigenesis. The expression and prognostic significance of miR-612 in melanoma were examined. The effects of miR-612 overexpression on cell proliferation, colony formation, tumorigenesis, and invasion were determined. Rescue experiments were conducted to identify the functional target gene(s) of miR-612. miR-612 was significantly downregulated in melanoma tissues compared to adjacent normal tissues. Low miR-612 expression was significantly associated with melanoma thickness, lymph node metastasis, and shorter overall, and disease-free survival of patients. Overexpression of miR-612 significantly decreased cell proliferation, colony formation, and invasion of SK-MEL-28 and A375 melanoma cells. In vivo tumorigenic studies confirmed that miR-612 overexpression retarded the growth of A375 xenograft tumors, which was coupled with a decline in the percentage of Ki-67-positive proliferating cells. Mechanistically, miR-612 targeted Espin in melanoma cells. Overexpression of Espin counteracted the suppressive effects of miR-612 on melanoma cell proliferation, invasion, and tumorigenesis. A significant inverse correlation (r = -0.376, P = 0.018) was observed between miR-612 and Espin protein expression in melanoma tissues. In addition, overexpression of miR-612 and knockdown of Espin significantly increased the sensitivity of melanoma cells to doxorubicin. Collectively, miR-612 suppresses the aggressive phenotype of melanoma cells through downregulation of Espin. Delivery of miR-612 may represent a novel therapeutic strategy against melanoma."	"Expert consensus document: Clinical and molecular diagnosis, screening and management of Beckwith-Wiedemann syndrome: an international consensus statement. Beckwith-Wiedemann syndrome (BWS), a human genomic imprinting disorder, is characterized by phenotypic variability that might include overgrowth, macroglossia, abdominal wall defects, neonatal hypoglycaemia, lateralized overgrowth and predisposition to embryonal tumours. Delineation of the molecular defects within the imprinted 11p15.5 region can predict familial recurrence risks and the risk (and type) of embryonal tumour. Despite recent advances in knowledge, there is marked heterogeneity in clinical diagnostic criteria and care. As detailed in this Consensus Statement, an international consensus group agreed upon 72 recommendations for the clinical and molecular diagnosis and management of BWS, including comprehensive protocols for the molecular investigation, care and treatment of patients from the prenatal period to adulthood. The consensus recommendations apply to patients with Beckwith-Wiedemann spectrum (BWSp), covering classical BWS without a molecular diagnosis and BWS-related phenotypes with an 11p15.5 molecular anomaly. Although the consensus group recommends a tumour surveillance programme targeted by molecular subgroups, surveillance might differ according to the local health-care system (for example, in the United States), and the results of targeted and universal surveillance should be evaluated prospectively. International collaboration, including a prospective audit of the results of implementing these consensus recommendations, is required to expand the evidence base for the design of optimum care pathways."	"Impact of graft loss among kidney diseases with a high risk of post-transplant recurrence in the paediatric population. NA"	"Perinatal Diagnosis, Management, and Follow-up of Cystic Renal Diseases: A Clinical Practice Recommendation With Systematic Literature Reviews. Prenatal and neonatal cystic kidney diseases are a group of rare disorders manifesting as single, multiple unilateral, or bilateral cysts or with increased echogenicity of the renal cortex without macroscopic cysts. They may be accompanied by grossly enlarged kidneys, renal oligohydramnios, pulmonary hypoplasia, extrarenal abnormalities, and neonatal kidney failure. The prognosis is extremely variable from trivial to very severe or even uniformly fatal, which poses significant challenges to prenatal counseling and management. To provide a clinical practice recommendation for fetal medicine specialists, obstetricians, neonatologists, pediatric nephrologists, pediatricians, and human geneticists by aggregating current evidence and consensus expert opinion on current management of cystic nephropathies before and after birth. After 8 systematic literature reviews on clinically relevant questions were prepared (including 90 studies up to mid-2016), recommendations were formulated and formally graded at a consensus meeting that included experts from all relevant specialties. After further discussion, the final version was voted on by all members using the Delphi method. The recommendations were reviewed and endorsed by the working groups on inherited renal disorders of the European Renal Association-European Dialysis and Transplant Association (ERA-EDTA) and European Society for Paediatric Nephrology (ESPN); the German Society of Obstetrics and Gynecology (DGGG), German Society of Perinatal Medicine (DGPM), and German Society of Ultrasound in Medicine (DEGUM); and the alliance of patient organizations, PKD International. The group makes a number of recommendations on prenatal and postnatal imaging by ultrasound and magnetic resonance imaging, genetic testing, prenatal counseling, in utero therapeutic interventions, and postnatal management of prenatal and neonatal cystic kidney diseases, including provision of renal replacement therapy in neonates. In addition to detailed knowledge about possible etiologies and their prognosis, physicians need to be aware of recent improvements and remaining challenges of childhood chronic kidney disease, neonatal renal replacement therapy, and intensive pulmonary care to manage these cases and to empower parents for informed decision making."	"A propensity-matched comparison of hard outcomes in children on chronic dialysis. Data concerning outcomes of children on hemodialysis (HD) and peritoneal dialysis (PD) are scarce and frequently derived from single-center experiences. We sought to compare survival and transplantation rates in a large cohort of PD and HD patients. We extracted all patients initiating dialysis under 16 years of age between 2004 and 2013 from the Italian Registry of Pediatric Chronic Dialysis. Patients on PD were propensity-matched to those on HD based on gender, age, primary cause of ESRD, and the number of co-morbidities. Stratified Cox proportional hazard models were used to compare outcomes by dialysis modality. Three hundred ten patients were matched from 452 incident patients. In the unmatched cohort, PD patients were younger, more likely to be diagnosed with CAKUT, and had a higher urine output than HD patients. In the propensity-matched cohort, covariates were balanced between the two groups. At 2 years, the cumulative hazard ratio for death was similar (CHR 0.95, 95% CI 0.17-5.20) for HD relative to PD patients; and at 5 years, the CHR was lower for HD patients (0.22 95% CI 0.16-0.29). The cumulative incidence of transplantation at 3 years after dialysis initiation was 60.9% in HD patients and 59.7% in PD patients, with a CHR of 1.03 (95% CI 0.73-1.45). Pediatric PD and HD patients have distinct characteristics. After controlling for treatment-selection biases, children selected to start on PD or HD exhibit a similar mortality risk during the first 2 years on treatment, after which this risk increases in PD children. What is Known: • Few studies have compared hard outcomes in children on maintenance dialysis. • Children started on different dialysis modalities have distinct characteristics that impact on survival. What is New: • After controlling for treatment-selection biases, children selected to start dialysis on PD or HD exhibit a similar mortality risk during the first 2 years on treatment, after which this risk appears to be increased in PD children. • An &quot;integrative care&quot; approach should be used in children on PD, switching them to HD when PD-related morbidity tends to increase."	"The association of donor and recipient age with graft survival in paediatric renal transplant recipients in a European Society for Paediatric Nephrology/European Renal Association-European Dialysis and Transplantation Association Registry study. The impact of donor age in paediatric kidney transplantation is unclear. We therefore examined the association of donor-recipient age combinations with graft survival in children. Data for 4686 first kidney transplantations performed in 13 countries in 1990-2013 were extracted from the ESPN/ERA-EDTA Registry. The effect of donor and recipient age combinations on 5-year graft-failure risk, stratified by donor source, was estimated using Kaplan-Meier survival curves and Cox regression, while adjusting for sex, primary renal diseases with a high risk of recurrence, pre-emptive transplantation, year of transplantation and country. The risk of graft failure in older living donors (50-75 years old) was similar to that of younger living donors {adjusted hazard ratio [aHR] 0.74 [95% confidence interval (CI) 0.38-1.47]}. Deceased donor (DD) age was non-linearly associated with graft survival, with the highest risk of graft failure found in the youngest donor age group [0-5 years; compared with donor ages 12-19 years; aHR 1.69 (95% CI 1.26-2.26)], especially among the youngest recipients (0-11 years). DD age had little effect on graft failure in recipients' ages 12-19 years. Our results suggest that donations from older living donors provide excellent graft outcomes in all paediatric recipients. For young recipients, the allocation of DDs over the age of 5 years should be prioritized."	"Target sequencing of 307 deafness genes identifies candidate genes implicated in microtia. Microtia is a congenital malformation of the external ear caused by genetic and/or environmental factors. However, no causal genetic mutations have been identified in isolated microtia patients. In this study, we utilized targeted genomic capturing combined with next-generation sequencing to screen for mutations in 307 deafness genes in 32 microtia patients. Forty-two rare heterozygous mutations in 25 genes, including 22 novel mutations in 24 isolated unilateral microtia cases were identified. Pathway analysis found five pathways especially focal adhesion pathway and ECM-receptor interaction pathway were significantly associated with microtia. The low-frequency variants association study was used and highlighted several strong candidate genes MUC4, MUC6, COL4A4, MYO7A, AKAP12, COL11A1, DSPP, ESPN, GPR98, PCDH15, BSN, CACNA1D, TPRN, and USH1C for microtia (P = 2.51 × 10<sup>-4</sup>). Among these genes, COL4A4 and COL11A1 may lead to microtia through focal adhesion pathway and ECM-receptor interaction pathway which are connected to the downstream Wnt signaling pathway. The present results indicate that certain genes may affect both external/middle and inner ear development, and demonstrate the benefits of using a capture array in microtia patients."	"Clinical practice recommendations for treatment with active vitamin D analogues in children with chronic kidney disease Stages 2-5 and on dialysis. In patients with chronic kidney disease (CKD), renal synthesis of active vitamin D [1,25-dihydroxyvitamin D (1,25(OH)2D)] declines and is associated with hypocalcaemia, secondary hyperparathyroidism and the spectrum of CKD-mineral and bone disorder (MBD). In advanced CKD, active vitamin D analogues, including alfacalcidol, calcitriol and paricalcitol, are routinely administered. There are few studies on the use of vitamin D analogues in children with CKD and on dialysis. It is difficult to define bone-specific outcomes that can guide treatment with active vitamin D analogues in children with CKD-MBD. A core working group (WG) of the European Society for Paediatric Nephrology (ESPN) CKD-MBD and Dialysis WGs has developed recommendations for the use of active vitamin D therapy in children with CKD and on dialysis. A second document in parallel with this one covers treatment recommendations for native vitamin D therapy. The WGs have performed an extensive literature review to include systematic reviews and randomized controlled trials in adults and children with CKD and prospective observational studies in children with CKD. The Grading of Recommendation, Assessment, Development and Evaluation (GRADE) system was used to develop and grade the recommendations. In the absence of applicable study data, the opinion of experts from the ESPN CKD-MBD and Dialysis WGs is provided, but clearly GRADE-ed as such and must be carefully considered by the treating physician and adapted to individual patient needs as appropriate."	"Clinical practice recommendations for native vitamin D therapy in children with chronic kidney disease Stages 2-5 and on dialysis. Vitamin D deficiency is widely prevalent and often severe in children and adults with chronic kidney disease (CKD). Although native vitamin D {25-hydroxyvitamin D [25(OH)D]} is thought to have pleiotropic effects on many organ systems, its skeletal effects have been most widely studied. The 25(OH)D deficiency is causally linked with rickets and fractures in healthy children and those with CKD, contributing to the CKD-mineral and bone disorder (MBD) complex. There are few studies to provide evidence for vitamin D therapy or guidelines for its use in CKD. A core working group (WG) of the European Society for Paediatric Nephrology (ESPN) CKD-MBD and Dialysis WGs have developed recommendations for the evaluation, treatment and prevention of vitamin D deficiency in children with CKD. We present clinical practice recommendations for the use of ergocalciferol (vitamin D2) and cholecalciferol (vitamin D3) in children with CKD Stages 2-5 and on dialysis. A parallel document addresses treatment recommendations for active vitamin D analogue therapy. The WG has performed an extensive literature review to include meta-analyses and randomized controlled trials in healthy children as well as children and adults with CKD, and prospective observational studies in children with CKD. The Grading of Recommendation, Assessment, Development and Evaluation (GRADE) system has been used to develop and grade the recommendations. In the absence of applicable study data, the opinion of experts from the ESPN CKD-MBD and Dialysis WGs is provided, but clearly GRADE-ed as such and must be carefully considered by the treating physician, and adapted to individual patient needs as appropriate."	"Abstracts of the 50th Anniversary ESPN Meeting, Glasgow, September 2017. NA"	"Outcomes of renal replacement therapy in boys with prune belly syndrome: findings from the ESPN/ERA-EDTA Registry. As outcome data for prune belly syndrome (PBS) complicated by end-stage renal disease are scarce, we analyzed characteristics and outcomes of children with PBS using the European Society for Pediatric Nephrology/European Renal Association-European Dialysis and Transplant Association (ESPN/ERA-EDTA) Registry data. Data were available for 88 male PBS patients aged &lt;20 years who started renal replacement therapy (RRT) between 1990 and 2013 in 35 European countries. Patient characteristics, survival, and transplantation outcomes were compared with those of male patients requiring RRT due to congenital obstructive uropathy (COU) and renal hypoplasia or dysplasia (RHD). Median age at onset of RRT in PBS was lower [7.0; interquartile range (IQR) 0.9-12.2 years] than in COU (9.6; IQR: 3.0-14.1 years) and RHD (9.4; IQR: 2.7-14.2 years). Unadjusted 10-year patient survival was 85% for PBS, 94% for COU, and 91% for RHD. After adjustment for country, period, and age, PBS mortality was similar to that of RHD but higher compared with COU [hazard ratio (HR) 1.96, 95% confidence interval (CI) 1.03-3.74]. Seventy-four PBS patients (84%) received a first kidney transplant after a median time on dialysis of 8.4 (IQR 0.0-21.1) months. Outcomes with respect to time on dialysis before transplantation, chance of receiving a first transplant within 2 years after commencing RRT, and death-censored, adjusted risk of graft loss were similar for all groups. This study in the largest cohort of male patients with PBS receiving RRT to date demonstrates that outcomes are comparable with other congenital anomalies of the kidney and urinary tract, except for a slightly higher mortality risk compared with patients with COU."	"The European Renal Association - European Dialysis and Transplant Association Registry Annual Report 2014: a summary. Background: This article summarizes the European Renal Association - European Dialysis and Transplant Association Registry's 2014 annual report. It describes the epidemiology of renal replacement therapy (RRT) for end-stage renal disease (ESRD) in 2014 within 35 countries. Methods: In 2016, the ERA-EDTA Registry received data on patients who in 2014 where undergoing RRT for ESRD, from 51 national or regional renal registries. Thirty-two registries provided individual patient level data and 19 provided aggregated patient level data. The incidence, prevalence and survival probabilities of these patients were determined. Results: In 2014, 70 953 individuals commenced RRT for ESRD, equating to an overall unadjusted incidence rate of 133 per million population (pmp). The incidence ranged by 10-fold; from 23 pmp in the Ukraine to 237 pmp in Portugal. Of the patients commencing RRT, almost two-thirds were men, over half were aged ≥65 years and a quarter had diabetes mellitus as their primary renal diagnosis. By day 91 of commencing RRT, 81% of patients were receiving haemodialysis. On 31 December 2014, 490 743 individuals were receiving RRT for ESRD, equating to an unadjusted prevalence of 924 pmp. This ranged throughout Europe by more than 10-fold, from 157 pmp in the Ukraine to 1794 pmp in Portugal. In 2014, 19 406 kidney transplantations were performed, equating to an overall unadjusted transplant rate of 36 pmp. Again this varied considerably throughout Europe. For patients commencing RRT during 2005-09, the 5-year-adjusted patient survival probabilities on all RRT modalities was 63.3% (95% confidence interval 63.0-63.6). The expected remaining lifetime of a 20- to 24-year-old patient with ESRD receiving dialysis or living with a kidney transplant was 21.9 and 44.0 years, respectively. This was substantially lower than the 61.8 years of expected remaining lifetime of a 20-year-old patient without ESRD."	"Survival in children requiring chronic renal replacement therapy. Survival in the pediatric end-stage renal disease (ESRD) population has improved substantially over recent decades. Nonetheless, mortality remains at least 30 times higher than that of healthy peers. Patient survival is multifactorial and dependent on various patient and treatment characteristics and degree of economic welfare of the country in which a patient is treated. In this educational review, we aim to delineate current evidence regarding mortality risk in the pediatric ESRD population and provide pediatric nephrologists with up-to-date information required to counsel affected families."	"The Effect of the Number of Carries Among College Running Backs on Future Injury Risk and Performance in the National Football League. There has been speculation that running backs with an excessive number of carries in college are less likely to be successful in the National Football League (NFL). To determine whether there is a correlation between number of carries by college running backs and future performance and injury risk in the NFL. Cohort study; Level of evidence, 3. Using the ESPN archives of National Collegiate Athletic Association and NFL running backs, the following inclusion criteria were used: running backs who played their last college season from 1999 through 2012 and who were drafted in the first 4 rounds of the NFL draft following their college career. Players were grouped by number of carries during their final college season (group A, 100-200 carries; group B, 250+ carries). Performance and injury risk were compared between groups during the first 3 eligible seasons in the NFL. Groups were compared based on total number of carries, mean yards per carry, number of games missed due to injury, and the specific injuries resulting in missed playing time. During the seasons studied, a total of 103 running backs were included (group A, n = 42; group B, n = 61). There was a trend toward a significantly greater mean total number of carries through 3 NFL seasons in group B (group A, n = 276 carries; group B, n = 376 carries; P = .058). Mean yards per carry did not differ between groups (group A, n = 3.9 yards/carry; group B, n = 4.0 yards/carry; P = .67). Groups A and B missed a mean 5.8 and 5.7 games, respectively, due to injury during their first 3 NFL seasons (P = .98). A significantly greater proportion of players in group A suffered a concussion compared with group B (P = .014). There is no correlation between the number of carries by college running backs and future injury risk or performance during their early NFL career."	"Femoroacetabular Impingement in Professional Football Players: Return to Play and Predictors of Career Length After Hip Arthroscopy. Previous studies have shown hip arthroscopy to be a highly effective treatment for symptomatic femoroacetabular impingement (FAI) in a wide range of athletes; however, the rate of return to play and length of career after hip arthroscopy in professional football players are unknown. To determine how many athletes returned to professional football and the number of seasons they played after surgery. Case series; Level of evidence, 4. Fifty-one professional football players (60 hips) underwent hip arthroscopy for FAI between 2000 and 2014 by a single surgeon. Return to play was defined as competing in a preseason or regular season professional football game after surgery. Data were retrospectively obtained for each player from NFL.com , ESPN.com , individual team websites, and/or CFL.ca . We found that 87% (52/60) of the arthroscopic procedures allowed professional football players to return to play in a preseason or regular season game. Athletes who returned played an average of 38 games during 3.2 seasons after arthroscopy, with an average total career length of 7.4 seasons. Ninety-two percent (48/52) of players who returned had a minimum total career length of 3 years. When participants were analyzed by position, linemen were less likely to return after hip arthroscopy compared with other players (odds ratio 5.6; 95% CI, 1.1-35; P = .04). All quarterbacks and tight ends returned to play after surgery. No significant difference in return to play rate was found between athletes who underwent microfracture and those who did not (25% vs 38%, P = .698). Hip arthroscopy for treatment of FAI and associated pathologic abnormalities in professional football players resulted in a high rate of return to play. The study's findings demonstrate that 87% of the arthroscopic procedures allowed professional football players to return to play, linemen were less likely to return compared with other positions, and the presence of microfracture did not significantly affect the return to play rate. These findings support hip arthroscopy as an effective procedure to treat FAI and related pathologic abnormalities in the professional football player, and this information is important for proper counseling of athletes with FAI."	"Mortality risk disparities in children receiving chronic renal replacement therapy for the treatment of end-stage renal disease across Europe: an ESPN-ERA/EDTA registry analysis. We explored the variation in country mortality rates in the paediatric population receiving renal replacement therapy across Europe, and estimated how much of this variation could be explained by patient-level and country-level factors. In this registry analysis, we extracted patient data from the European Society for Paediatric Nephrology/European Renal Association-European Dialysis and Transplant Association (ESPN/ERA-EDTA) Registry for 32 European countries. We included incident patients younger than 19 years receiving renal replacement therapy. Adjusted hazard ratios (aHR) and the explained variation were modelled for patient-level and country-level factors with multilevel Cox regression. The primary outcome studied was all-cause mortality while on renal replacement therapy. Between Jan 1, 2000, and Dec 31, 2013, the overall 5 year renal replacement therapy mortality rate was 15·8 deaths per 1000 patient-years (IQR 6·4-16·4). France had a mortality rate (9·2) of more than 3 SDs better, and Russia (35·2), Poland (39·9), Romania (47·4), and Bulgaria (68·6) had mortality rates more than 3 SDs worse than the European average. Public health expenditure was inversely associated with mortality risk (per SD increase, aHR 0·69, 95% CI 0·52-0·91) and explained 67% of the variation in renal replacement therapy mortality rates between countries. Child mortality rates showed a significant association with renal replacement therapy mortality, albeit mediated by macroeconomics (eg, neonatal mortality reduced from 1·31 [95% CI 1·13-1·53], p=0·0005, to 1·21 [0·97-1·51], p=0·10). After accounting for country distributions of patient age, the variation in renal replacement therapy mortality rates between countries increased by 21%. Substantial international variation exists in paediatric renal replacement therapy mortality rates across Europe, most of which was explained by disparities in public health expenditure, which seems to limit the availability and quality of paediatric renal care. Differences between countries in their ability to accept and treat the youngest patients, who are the most complex and costly to treat, form an important source of disparity within this population. Our findings can be used by policy makers and health-care providers to explore potential strategies to help reduce these health disparities. ERA-EDTA and ESPN."	"The Effect of the Number of Carries on Injury Risk and Subsequent Season's Performance Among Running Backs in the National Football League. In recent years, several studies have correlated pitch count with an increased risk for injury among baseball pitchers. However, no studies have attempted to draw a similar conclusion based on number of carries by running backs (RBs) in football. To determine whether there is a correlation between number of carries by RBs in the National Football League (NFL) and risk of injury or worsened performance in the subsequent season. Cohort study; Level of evidence, 3. The ESPN NFL statistics archives were searched from the 2004 through 2014 regular seasons. During each season, data were collected on RBs with 150 to 250 carries (group A) and 300+ carries (group B). The following data were collected for each player and compared between groups: number of carries and mean yards per carry during the regular season of interest and the subsequent season, number of games missed due to injury during the season of interest and the subsequent season, and the specific injuries resulting in missed playing time during the subsequent season. Matched-pair t tests were used to compare changes within each group from one season to the next in terms of number of carries, mean yards per carry, and games missed due to injury. During the seasons studied, a total of 275 RBs were included (group A, 212; group B, 63). In group A, 140 RBs (66%) missed at least 1 game the subsequent season due to injury, compared with 31 RBs (49%) in group B (P = .016). In fact, players in group B missed significantly fewer games due to injury during the season of interest (P &lt; .0001) as well as the subsequent season (P &lt; .01). Mean yards per carry was not significantly different between groups in the preceding season (P = .073) or the subsequent season (P = .24). NFL RBs with a high number of carries are not placed at greater risk of injury or worsened performance during the subsequent season. These RBs may be generally less injury prone compared with other NFL RBs."	"Variability of diagnostic criteria and treatment of idiopathic nephrotic syndrome across European countries. The aim of the surveys conducted by the Idiopathic Nephrotic Syndrome Working Group of the ESPN was to study the possible variability of treatment in Europe at different stages of the disease by means of questionnaires sent to members of the Working Group. Four surveys have been completed: treatment of the first flare, treatment of the first relapse and the issue of steroid dependency, use of rituximab, and the management of steroid-resistant patients. A uniform treatment of the first flare was applied in only three countries, and ten additional centers have adopted one of the three main protocols. Reported treatment of the first relapse was relatively uniform, whereas the use of additional immunosuppressants in steroid dependency was widely variable. Rituximab had already been used in hundreds of patients, although the formal evidence of efficiency in steroid dependency was relatively recent at the time of the survey. The definition of steroid resistance was variable in the European centers, but strikingly, the first-line treatment was uniform throughout the centers and included the combination of prednisone plus calcineurin antagonists. The variability in the approach of idiopathic nephrotic syndrome is unexpectedly large and affects treatment of the first flare, strategies in the case of steroid dependency, as well as the definitions of steroid resistance. What is Known: • Steroids and immunosuppressants are the universal treatment of idiopathic nephrotic syndrome. What is New: • The variability of treatments and strategy of treatment in European centers of pediatric nephrology."	"Molecular Analysis of Twelve Pakistani Families with Nonsyndromic or Syndromic Hearing Loss. To investigate the causative genetic mutations in 12 Pakistani families with nonsyndromic or syndromic hearing loss. Mutations in the most common causative gene for hearing loss, GJB2, were evaluated by Sanger sequencing. Targeted next-generation sequencing or whole-exome sequencing was used to analyze the genomic DNA samples from 11 probands with hearing loss. Sanger sequencing was performed to verify all identified variants. We found pathogenic, or likely to be pathogenic, mutations in all 12 families, including six known mutations in GJB2, SLC26A4, LHFPL5, and USH2A and eight novel mutations in ESPN, MYO7A, LRTOMT, PCDH15, USH2A, or EPS8L2. Notably, four compound heterozygous mutations in the MYO7A and USH2A genes were detected in two consanguineous families. In addition, the novel frameshift mutation in EPS8L2 was first documented in Pakistan. Our study increases the spectrum of mutations associated with hearing loss in the Pakistani population. In addition, our study highlights the fact that compound heterozygous mutations, although rare, can occur in consanguineous families."	"De novo sequencing and comparative analysis of testicular transcriptome from different reproductive phases in freshwater spotted snakehead Channa punctatus. The spotted snakehead Channa punctatus is a seasonally breeding teleost widely distributed in the Indian subcontinent and economically important due to high nutritional value. The declining population of C. punctatus prompted us to focus on genetic regulation of its reproduction. The present study carried out de novo testicular transcriptome sequencing during the four reproductive phases and correlated differential expression of transcripts with various testicular events in C. punctatus. The Illumina paired-end sequencing of testicular transcriptome from resting, preparatory, spawning and postspawning phases generated 41.94, 47.51, 61.81 and 44.45 million reads, and 105526, 105169, 122964 and 106544 transcripts, respectively. Transcripts annotated using Rattus norvegicus reference protein sequences and classified under various subcategories of biological process, molecular function and cellular component showed that the majority of the subcategories had highest number of transcripts during spawning phase. In addition, analysis of transcripts exhibiting differential expression during the four phases revealed an appreciable increase in upregulated transcripts of biological processes such as cell proliferation and differentiation, cytoskeleton organization, response to vitamin A, transcription and translation, regulation of angiogenesis and response to hypoxia during spermatogenically active phases. The study also identified significant differential expression of transcripts relevant to spermatogenesis (mgat3, nqo1, hes2, rgs4, cxcl2, alcam, agmat), steroidogenesis (star, tkt, gipc3), cell proliferation (eef1a2, btg3, pif1, myo16, grik3, trim39, plbd1), cytoskeletal organization (espn, wipf3, cd276), sperm development (klhl10, mast1, hspa1a, slc6a1, ros1, foxj1, hipk1), and sperm transport and motility (hint1, muc13). Analysis of functional annotation and differential expression of testicular transcripts depending on reproductive phases of C. punctatus helped in developing a comprehensive understanding on genetic regulation of spermatogenic and steroidogenic events in seasonally breeding teleosts. Our findings provide the basis for future investigation on the precise role of testicular genes in regulation of seasonal reproduction in male teleosts."	"Plasma cytokine and angiogenic factors associated with prognosis and therapeutic response to sunitinib vs everolimus in advanced non-clear cell renal cell carcinoma. No biomarkers are available to predict relative clinical benefit from targeted therapies in patients with non-clear cell renal cell carcinoma (nccRCC). To identify candidate predictive markers, we investigated a set of cytokines and angiogenic factors (CAFs) in previously untreated patients with nccRCC participating in the phase II ESPN trial comparing first-line sunitinib to everolimus. Pre-treatment concentrations of 30 CAFs were measured in plasma from 37 patients treated with everolimus (n=16) or sunitinib (n=21), and associated with progression-free (PFS) and overall survival (OS) after adjusting for potential confounders. High (&gt;median) concentrations of soluble glycoprotein 130 (sgp130) were predictive of a longer PFS with sunitinib compared with everolimus (HR = 0.30; 95% CI: 0.11-0.85; P = 0.024). Significantly shorter PFS was noted, independently of treatment arm, in patients with high (&gt;median) levels of IL-8 (HR = 3.13; 95% CI: 1.41-6.92), IL-13 (HR = 3.36; 95% CI: 1.49-7.58), and soluble tumor necrosis factor receptor II (HR = 2.21; 95% CI: 1.04-4.72). High IL-8 levels were also associated with significantly shorter OS (HR = 3.55; 95% CI: 1.55-8.14). Thus, using CAF profiling we identified candidate prognostic and predictive circulating biomarkers that can be used to inform therapeutic decisions in nccRCC."	"Racial variation in cardiovascular disease risk factors among European children on renal replacement therapy-results from the European Society for Paediatric Nephrology/European Renal Association - European Dialysis and Transplant Association Registry. Racial differences in overall mortality rates have been found in children on renal replacement therapy (RRT). We used data from the European Society for Paediatric Nephrology/European Renal Association - European Dialysis and Transplant Association Registry to study racial variation in the prevalence of cardiovascular disease (CVD) risk factors among European children on RRT. We included patients aged &lt;20 years between 2006-13 who (i) initiated dialysis treatment or (ii) had a renal transplant vintage of ≥1 year. Racial groups were defined as white, black, Asian and other. The CVD risk factors assessed included uncontrolled hypertension, obesity, hyperphosphataemia and anaemia. Differences between racial groups in CVD risk factors were examined using generalized estimating equation (GEE) models while adjusting for potential confounders. In this study, 1161 patients on dialysis and 1663 patients with a transplant were included. The majority of patients in both groups were white (73.8% and 79.9%, respectively). The crude prevalence of the CVD risk factors was similar across racial groups. However, after adjustment for potential confounders, Asian background was associated with higher risk of uncontrolled hypertension both in the dialysis group [odds ratio (OR): 1.27; 95% confidence interval (CI): 1.01-1.64] and the transplant group (OR: 1.37; 95% CI: 1.11-1.68) compared with white patients. Patients of Asian and other racial background with a renal transplant had a higher risk of anaemia compared with white patients (OR: 1.50; 95% CI: 1.15-1.96 and OR: 1.45; 95% CI: 1.01-2.07, respectively). Finally, the mean number of CVD risk factors among dialysis patients was higher in Asian patients (1.83, 95% CI: 1.64-2.04) compared with white patients (1.52, 95% CI: 1.40-1.65). We found a higher prevalence of modifiable CVD risk factors in Asian children on RRT. Early identification and management of these risk factors could potentially improve long-term outcomes."	"MUST READS If It Can Happen to ESPN, It Can Happen to Health Care. NA"	"Infants Requiring Maintenance Dialysis: Outcomes of Hemodialysis and Peritoneal Dialysis. The impact of different dialysis modalities on clinical outcomes has not been explored in young infants with chronic kidney failure. Cohort study. Data were extracted from the ESPN/ERA-EDTA Registry. This analysis included 1,063 infants 12 months or younger who initiated dialysis therapy in 1991 to 2013. Type of dialysis modality. Differences between infants treated with peritoneal dialysis (PD) or hemodialysis (HD) in patient survival, technique survival, and access to kidney transplantation were examined using Cox regression analysis while adjusting for age at dialysis therapy initiation, sex, underlying kidney disease, and country of residence. 917 infants initiated dialysis therapy on PD, and 146, on HD. Median age at dialysis therapy initiation was 4.5 (IQR, 0.7-7.9) months, and median body weight was 5.7 (IQR, 3.7-7.5) kg. Although the groups were homogeneous regarding age and sex, infants treated with PD more often had congenital anomalies of the kidney and urinary tract (CAKUT; 48% vs 27%), whereas those on HD therapy more frequently had metabolic disorders (12% vs 4%). Risk factors for death were younger age at dialysis therapy initiation (HR per each 1-month later initiation, 0.95; 95% CI, 0.90-0.97) and non-CAKUT cause of chronic kidney failure (HR, 1.49; 95% CI, 1.08-2.04). Mortality risk and likelihood of transplantation were equal in PD and HD patients, whereas HD patients had a higher risk for changing dialysis treatment (adjusted HR, 1.64; 95% CI, 1.17-2.31). Inability to control for unmeasured confounders not included in the Registry database and missing data (ie, comorbid conditions). Low statistical power because of relatively small number of participants. Despite a widespread preconception that HD should be reserved for cases in which PD is not feasible, in Europe, we found 1 in 8 infants in need of maintenance dialysis to be initiated on HD therapy. Patient characteristics at dialysis therapy initiation, prospective survival, and time to transplantation were very similar for infants initiated on PD or HD therapy."	"Plastin 1 widens stereocilia by transforming actin filament packing from hexagonal to liquid. With their essential role in inner ear function, stereocilia of sensory hair cells demonstrate the importance of cellular actin protrusions. Actin packing in stereocilia is mediated by cross-linkers of the plastin, fascin, and espin families. Although mice lacking espin (ESPN) have no vestibular or auditory function, we found that mice that either lacked plastin 1 (PLS1) or had nonfunctional fascin 2 (FSCN2) had reduced inner ear function, with double-mutant mice most strongly affected. Targeted mass spectrometry indicated that PLS1 was the most abundant cross-linker in vestibular stereocilia and the second most abundant protein overall; ESPN only accounted for ∼15% of the total cross-linkers in bundles. Mouse utricle stereocilia lacking PLS1 were shorter and thinner than wild-type stereocilia. Surprisingly, although wild-type stereocilia had random liquid packing of their actin filaments, stereocilia lacking PLS1 had orderly hexagonal packing. Although all three cross-linkers are required for stereocilia structure and function, PLS1 biases actin toward liquid packing, which allows stereocilia to grow to a greater diameter."	"Kidney Versus Combined Kidney and Liver Transplantation in Young People With Autosomal Recessive Polycystic Kidney Disease: Data From the European Society for Pediatric Nephrology/European Renal Association-European Dialysis and Transplant (ESPN/ERA-EDTA) Registry. The choice for either kidney or combined liver-kidney transplantation in young people with kidney failure and liver fibrosis due to autosomal recessive polycystic kidney disease (ARPKD) can be challenging. We aimed to analyze the characteristics and outcomes of transplantation type in these children, adolescents, and young adults. Cohort study. We derived data for children, adolescents, and young adults with ARPKD with either kidney or combined liver-kidney transplants for 1995 to 2012 from the ESPN/ERA-EDTA Registry, a European pediatric renal registry collecting data from 36 European countries. Liver transplantation. Transplantation and patient survival. 202 patients with ARPKD aged 19 years or younger underwent transplantation after a median of 0.4 (IQR, 0.0-1.4) years on dialysis therapy at a median age of 9.0 (IQR, 4.1-13.7) years. 32 (15.8%) underwent combined liver-kidney transplantation, 163 (80.7%) underwent kidney transplantation, and 7 (3.5%) were excluded because transplantation type was unknown. Age- and sex-adjusted 5-year patient survival posttransplantation was 95.5% (95% CI, 92.4%-98.8%) overall: 97.4% (95% CI, 94.9%-100.0%) for patients with kidney transplantation in contrast to 87.0% (95% CI, 75.8%-99.8%) with combined liver-kidney transplantation. The age- and sex-adjusted risk for death after combined liver-kidney transplantation was 6.7-fold (95% CI, 1.8- to 25.4-fold) greater than after kidney transplantation (P=0.005). Five-year death-censored kidney transplant survival following combined liver-kidney and kidney transplantation was similar (92.1% vs 85.9%; P=0.4). No data for liver disease of kidney therapy recipients. Combined liver-kidney transplantation in ARPKD is associated with increased mortality compared to kidney transplantation in our large observational study and was not associated with improved 5-year kidney transplant survival. Long-term follow-up of both kidney and liver involvement are needed to better delineate the optimal transplantation strategy."	"Timing of renal replacement therapy does not influence survival and growth in children with congenital nephrotic syndrome caused by mutations in NPHS1: data from the ESPN/ERA-EDTA Registry. Congenital nephrotic syndrome (CNS) of the Finnish type, NPHS1, is the most severe form of CNS. Outcomes of renal replacement therapy (RRT) in NPHS1 patients in Europe were analysed using data from the ESPN/ERA-EDTA Registry. As NPHS1 is most prevalent in Finland and the therapeutic approach differs from that in many other countries, we compared outcomes in Finnish and other European patients. NPHS1 mutations were confirmed in 170 children with CNS who initiated RRT (dialysis or renal transplantation) between 1991 and 2012. Finnish (n = 66) and non-Finnish NPHS1 patients (n = 104) were compared with respect to treatment policy, age at first RRT and renal transplantation (RTX), patient and graft survival, estimated glomerular filtration rate (eGFR) and growth. Age-matched patients with congenital anomalies of the kidney and urinary tract (CAKUT) served as controls. Finnish NPHS1 patients were significantly younger than non-Finnish patients, both at the start of RRT and at the time of RTX. We found similar overall 5-year patient survival on RRT (91 %) and graft survival (89 %) in both NPHS1 groups and CAKUT controls. At the start of RRT, height standard deviation score (SDS) was higher in Finnish patients than in non-Finnish patients (mean [95 % CI]: -1.31 [-2.13 to -0.49] and -3.0 [-4.22 to -1.91], p &lt; 0.01 respectively), but not at 5 years of age. At 5 years of age height and body mass index (BMI) SDS were similar to those of CAKUT controls. Overall, 5-year patient and graft survival of both Finnish and non-Finnish NPHS1 patients on RRT were excellent and comparable with CAKUT patients with equally early RRT onset and was independent of the timing of RRT initiation and RTX."	"Performance analysis of CRF-based learning for processing WoT application requests expressed in natural language. In this paper, we investigate the effectiveness of a CRF-based learning method for identifying necessary Web of Things (WoT) application components that would satisfy the users' requests issued in natural language. For instance, a user request such as &quot;archive all sports breaking news&quot; can be satisfied by composing a WoT application that consists of ESPN breaking news service and Dropbox as a storage service. We built an engine that can identify the necessary application components by recognizing a main act (MA) or named entities (NEs) from a given request. We trained this engine with the descriptions of WoT applications (called recipes) that were collected from IFTTT WoT platform. IFTTT hosts over 300 WoT entities that offer thousands of functions referred to as triggers and actions. There are more than 270,000 publicly-available recipes composed with those functions by real users. Therefore, the set of these recipes is well-qualified for the training of our MA and NE recognition engine. We share our unique experience of generating the training and test set from these recipe descriptions and assess the performance of the CRF-based language method. Based on the performance evaluation, we introduce further research directions."	"Re: Nizar M. Tannir, Eric Jonasch, Laurence Albiges, et al. Everolimus Versus Sunitinib Prospective Evaluation in Metastatic Non-Clear Cell Renal Cell Carcinoma (ESPN):A Randomized Multicenter Phase 2 Trial. Eur Urol 2016;69:866-74. NA"	"Renal replacement therapy in Europe: a summary of the 2013 ERA-EDTA Registry Annual Report with a focus on diabetes mellitus. This article provides a summary of the 2013 European Renal Association-European Dialysis and Transplant Association (ERA-EDTA) Registry Annual Report (available at http://www.era-edta-reg.org), with a focus on patients with diabetes mellitus (DM) as the cause of end-stage renal disease (ESRD). In 2015, the ERA-EDTA Registry received data on renal replacement therapy (RRT) for ESRD from 49 national or regional renal registries in 34 countries in Europe and bordering the Mediterranean Sea. Individual patient data were provided by 31 registries, while 18 registries provided aggregated data. The total population covered by the participating registries comprised 650 million people. In total, 72 933 patients started RRT for ESRD within the countries and regions reporting to the ERA-EDTA Registry, resulting in an overall incidence of 112 per million population (pmp). The overall prevalence on 31 December 2013 was 738 pmp (n = 478 990). Patients with DM as the cause of ESRD comprised 24% of the incident RRT patients (26 pmp) and 17% of the prevalent RRT patients (122 pmp). When compared with the USA, the incidence of patients starting RRT pmp secondary to DM in Europe was five times lower and the incidence of RRT due to other causes of ESRD was two times lower. Overall, 19 426 kidney transplants were performed (30 pmp). The 5-year adjusted survival for all RRT patients was 60.9% [95% confidence interval (CI) 60.5-61.3] and 50.6% (95% CI 49.9-51.2) for patients with DM as the cause of ESRD."	"Mortality risk in European children with end-stage renal disease on dialysis. We aimed to describe survival in European pediatric dialysis patients and compare the differential mortality risk between patients starting on hemodialysis (HD) and peritoneal dialysis (PD). Data for 6473 patients under 19 years of age or younger were extracted from the European Society of Pediatric Nephrology, the European Renal Association, and European Dialysis and Transplant Association Registry for 36 countries for the years 2000 through 2013. Hazard ratios (HRs) were adjusted for age at start of dialysis, sex, primary renal disease, and country. A secondary analysis was performed on a propensity score-matched (PSM) cohort. The overall 5-year survival rate in European children starting on dialysis was 89.5% (95% confidence interval [CI] 87.7%-91.0%). The mortality rate was 28.0 deaths per 1000 patient years overall. This was highest (36.0/1000) during the first year of dialysis and in the 0- to 5-year age group (49.4/1000). Cardiovascular events (18.3%) and infections (17.0%) were the main causes of death. Children selected to start on HD had an increased mortality risk compared with those on PD (adjusted HR 1.39, 95% CI 1.06-1.82, PSM HR 1.46, 95% CI 1.06-2.00), especially during the first year of dialysis (HD/PD adjusted HR 1.70, 95% CI 1.22-2.38, PSM HR 1.79, 95% CI 1.20-2.66), when starting at older than 5 years of age (HD/PD: adjusted HR 1.58, 95% CI 1.03-2.43, PSM HR 1.87, 95% CI 1.17-2.98) and when children have been seen by a nephrologist for only a short time before starting dialysis (HD/PD adjusted HR 6.55, 95% CI 2.35-18.28, PSM HR 2.93, 95% CI 1.04-8.23). Because unmeasured case-mix differences and selection bias may explain the higher mortality risk in the HD population, these results should be interpreted with caution."	"25th Congress of the European Society for Pediatric Neurosurgery (ESPN) Paris-France, 8-11 May 2016. NA"	"Stereocilia-staircase spacing is influenced by myosin III motors and their cargos espin-1 and espin-like. Hair cells tightly control the dimensions of their stereocilia, which are actin-rich protrusions with graded heights that mediate mechanotransduction in the inner ear. Two members of the myosin-III family, MYO3A and MYO3B, are thought to regulate stereocilia length by transporting cargos that control actin polymerization at stereocilia tips. We show that eliminating espin-1 (ESPN-1), an isoform of ESPN and a myosin-III cargo, dramatically alters the slope of the stereocilia staircase in a subset of hair cells. Furthermore, we show that espin-like (ESPNL), primarily present in developing stereocilia, is also a myosin-III cargo and is essential for normal hearing. ESPN-1 and ESPNL each bind MYO3A and MYO3B, but differentially influence how the two motors function. Consequently, functional properties of different motor-cargo combinations differentially affect molecular transport and the length of actin protrusions. This mechanism is used by hair cells to establish the required range of stereocilia lengths within a single cell. "	"Hair cell stereociliary bundle regeneration by espin gene transduction after aminoglycoside damage and hair cell induction by Notch inhibition. Once inner ear hair cells (HCs) are damaged by drugs, noise or aging, their apical structures including the stereociliary arrays are frequently the first cellular feature to be lost. Although this can be followed by progressive loss of HC somata, a significant number of HC bodies often remain even after stereociliary loss. However, in the absence of stereocilia they are nonfunctional. HCs can sometimes be regenerated by Atoh1 transduction or Notch inhibition, but they also may lack stereociliary bundles. It is therefore important to develop methods for the regeneration of stereocilia, in order to achieve HC functional recovery. Espin is an actin-bundling protein known to participate in sterociliary elongation during development. We evaluated stereociliary array regeneration in damaged vestibular sensory epithelia in tissue culture, using viral vector transduction of two espin isoforms. Utricular HCs were damaged with aminoglycosides. The utricles were then treated with a γ-secretase inhibitor, followed by espin or control transduction and histochemistry. Although γ-secretase inhibition increased the number of HCs, few had stereociliary arrays. In contrast, 46 h after espin1 transduction, a significant increase in hair-bundle-like structures was observed. These were confirmed to be immature stereociliary arrays by scanning electron microscopy. Increased uptake of FM1-43 uptake provided evidence of stereociliary function. Espin4 transduction had no effect. The results demonstrate that espin1 gene therapy can restore stereocilia on damaged or regenerated HCs."	"Rh2(II,III) Catalysts with Chelating Carboxylate and Carboxamidate Supports: Electronic Structure and Nitrene Transfer Reactivity. Dirhodium-catalyzed C-H amination is hypothesized to proceed via Rh2-nitrene intermediates in either the Rh2(II,II) or Rh2(II,III) redox state. Herein, we report joint theoretical and experimental studies of the ground electronic state (GES), redox potentials, and C-H amination of [Rh2(II,III)(O2CCH3)4(L)n](+) (1_L) (L = none, Cl(-), and H2O), [Rh2(esp)2](+) (2), and Rh2(espn)2Cl (3) (esp = α,α,α',α'-tetramethyl-1,3-benzenedipropanoate and espn = α,α,α',α'-tetramethyl-1,3-benzenedipropanamidate). CASSCF calculations on 1_L yield a wave function with two closely weighted configurations, (δ*)(2)(π1*)(2)(π2*)(1) and (δ*)(2)(π1*)(1)(π2*)(2), consistent with reported EPR g values [Chem. Phys. Lett. 1986, 130, 20-23]. In contrast, EPR spectra of 2 show g values consistent with the DFT-computed (π*)(4)(δ*)(1) GES. EPR spectra and Cl K-edge XAS for 3 are consistent with a (π*)(4)(δ*)(1) GES, as supported by DFT. Nitrene intermediates 2N_L and 3N_L are also examined by DFT (the nitrene is an NSO3R species). DFT calculations suggest a doublet GES for 2N_L and a quartet GES for 3N_L. CASSCF calculations describe the GES of 2N as Rh2(II,II) with a coordinated nitrene radical cation, (π*)(4)(δ*)(2)(π(nitrene,1))(1)(π(nitrene,2))(0). Conversely, the GES of 3N is Rh2(II,III) with a coordinated triplet nitrene, (π*)(4)(δ*)(1)(π(nitrene,1))(1)(π(nitrene,2))(1). Quartet transition states ((4)TSs) are found to react via a stepwise radical mechanism, whereas (2)TSs are found to react via a concerted mechanism that is lower in energy compared to (4)TSs for both 2N_L and 3N_L. The experimental (determined by intramolecular competition) and (2)TS-calculated kinetic isotopic effect (KIE) shows a KIE ∼ 3 for both 2N and 3N, which is consistent with a concerted mechanism."	"Myosin III-mediated cross-linking and stimulation of actin bundling activity of Espin. Class III myosins (Myo3) and actin-bundling protein Espin play critical roles in regulating the development and maintenance of stereocilia in vertebrate hair cells, and their defects cause hereditary hearing impairments. Myo3 interacts with Espin1 through its tail homology I motif (THDI), however it is not clear how Myo3 specifically acts through Espin1 to regulate the actin bundle assembly and stabilization. Here we discover that Myo3 THDI contains a pair of repeat sequences capable of independently and strongly binding to the ankyrin repeats of Espin1, revealing an unexpected Myo3-mediated cross-linking mechanism of Espin1. The structures of Myo3 in complex with Espin1 not only elucidate the mechanism of the binding, but also reveal a Myo3-induced release of Espin1 auto-inhibition mechanism. We also provide evidence that Myo3-mediated cross-linking can further promote actin fiber bundling activity of Espin1. "	"Gender Disparities in Access to Pediatric Renal Transplantation in Europe: Data From the ESPN/ERA-EDTA Registry. Inequalities between genders in access to transplantation have been demonstrated. We aimed to validate this gender inequality in a large pediatric population and to investigate its causes. This cohort study included 6454 patients starting renal replacement therapy before 18 years old, in 35 countries participating in the European Society for Paediatric Nephrology/European Renal Association-European Dialysis and Transplant Association Registry. We used cumulative incidence competing risk and proportional hazards frailty models to study the time to receive a transplant and hierarchical logistic regression to investigate access to preemptive transplantation. Girls had a slower access to renal transplantation because of a 23% lower probability of receiving preemptive transplantation. We found a longer follow-up time before renal replacement therapy in boys compared with girls despite a similar estimated glomerular filtration rate at first appointment. Girls tend to progress faster toward end-stage renal disease than boys, which may contribute to a shorter time available for pretransplantation workup. Overall, medical factors explained only 70% of the gender difference. In Europe, girls have less access to preemptive transplantation for reasons that are only partially related to medical factors. Nonmedical factors such as patient motivation and parent and physician attitudes toward transplantation and organ donation may contribute to this inequality. Our study should raise awareness for the management of girls with renal diseases."	"Everolimus Versus Sunitinib Prospective Evaluation in Metastatic Non-Clear Cell Renal Cell Carcinoma (ESPN): A Randomized Multicenter Phase 2 Trial. Sunitinib and everolimus are standard first-line and second-line therapies, respectively, in clear cell renal cell carcinoma (ccRCC). To conduct a randomized phase 2 trial comparing sunitinib and everolimus in non-clear cell RCC (non-ccRCC). Patients with metastatic, non-ccRCC, or ccRCC with &gt;20% sarcomatoid features (ccSRCC) were randomized to receive sunitinib or everolimus with crossover at disease progression. Primary end point was progression-free survival (PFS) in first-line therapy; 108 patients were needed to show improvement in median PFS (mPFS) from 12 wk with sunitinib to 20 wk with everolimus. Interim analysis of 68 patients (papillary [27], chromophobe [12], unclassified [10], translocation [7], ccSRCC [12]) prompted early trial closure. The mPFS in first-line therapy was 6.1 mo with sunitinib and 4.1 mo with everolimus (p=0.6); median overall survival (mOS) was not reached with sunitinib and was 10.5 mo with everolimus, respectively (p=0.014). At final analysis, mOS was 16.2 and 14.9 mo with sunitinib and everolimus, respectively (p=0.18). There were four partial responses (PRs) in first-line therapy (sunitinib: 3 of 33 [9%]; everolimus, 1 of 35 [2.8%]) and four PRs in second-line therapy (sunitinib: 2 of 21 [9.5%]; everolimus, 2 of 23 [8.6%]), with mPFS of 1.8 mo and 2.8 mo, respectively. In patients without sarcomatoid features in their tumors (n=49), mOS was 31.6 mo with sunitinib and 10.5 mo with everolimus (p=0.075). Genomic profiling of a chromophobe RCC from a patient with a PR to first-line everolimus revealed a somatic TSC2 mutation. In this trial, everolimus was not superior to sunitinib. Both agents demonstrated modest efficacy, underscoring the need for better therapies in non-ccRCC. This randomized phase 2 trial provides the first head-to-head comparison of everolimus and sunitinib in patients with metastatic non-clear cell renal cell carcinoma (non-ccRCC). The observed very modest efficacy underscores the need to develop more effective therapies for non-ccRCC."	"Perception, diagnosis and management of BK polyomavirus replication and disease in paediatric kidney transplant recipients in Europe. BK polyomavirus (BKPyV)-associated nephropathy remains a challenge to the success of kidney transplantation, but its impact varies in different transplant programmes. We investigated current practice through a web-based questionnaire made available by the European Society for Paediatric Nephrology (ESPN). A total of 90 physicians (23% of 391 active members) from 27 countries participated in the study. BKPyV-associated nephropathy is seen in 1-5% of patients annually with treatment success in 30-60%, and graft loss in 10%. Quantitative BKPyV load testing is available to &gt;90% of physicians. Screening is performed in urine alone in 26%, in urine and blood in 37% and in blood alone in 37%. Most physicians (47%) screen at month 1, 2, 3, 6, 9 and 12 post-transplant. For patients with baseline renal function and plasma BKPyV loads of 10 000-1 000 000 copies/mL, 50% report performing renal biopsies prior to intervention. Intervention consists of reducing immunosuppression first with mycophenolate (Myc) in 40%, first with calcineurin inhibitors (CNI) in 29% or with both in 31%. Changing immunosuppressive drugs is considered mainly for biopsy-proven nephropathy consisting of discontinuation of Myc in 75%, and switching from CNI to mTOR inhibitors (52%). Cidofovir, intravenous immunoglobulin G, leflunomide and fluoroquinolones are used in less than one-third of this group. Furthermore, 66% of participants see a need for new antiviral drugs and new immmunosuppressive strategies, and almost 90% are willing to participate in future observational and interventional trials. This ESPN survey suggests that prompt translation of a positive screening test into reducing immunosuppression could improve outcomes."	"When celebrations go wrong: a case series of injuries after celebrating in sports. Athletes often engage in various celebration maneuvers during sports events. These celebrations can result in acute injuries. Our objective was to document publicized injuries in collegiate and professional athletes resulting from celebrations and examine associated variables. A retrospective case series study was performed based on internet searches performed using the following major sporting news websites: espn.com, SI.com, bleacherreport.com, totalprosports.com, cbssports.com, larrybrownspots.com, nfl.com, and mlb.com and PubMed. Keywords used during these searches included &quot;celebration injury&quot;, &quot;score celebration&quot;, and &quot;surgery after celebration&quot;. These same sources were used to document the sport, athlete's age at time of injury, celebration action, type of injury, previous play, and whether surgery was required. A total of 62 athletes sustained 62 injuries resulting from various types of celebrations. All but two athletes were males, and the average age was 26.5 years old. The injuries occurred between 1993 and 2015. Sixteen (25.8%) of these injuries required surgery. Professional soccer players accounted for the greatest number of these injuries with a total of 22 injuries. One celebration in a professional soccer player resulted in a cervical spinal cord injury and subsequent death. Common celebration maneuvers included leaping into the air, pile ups, sliding, and somersaults. Serious injuries occur in a diversity of sports after celebrations. The most prevalent celebration maneuvers resulting in injuries included sliding and pile ups. The most common injuries were ACL ruptures and ankle sprains. The most serious injuries were a spinal cord injury and ankle fractures. Sixteen (25.8%) of the injuries required surgery. By encouraging athletes to temper excessive celebrations and prohibiting certain types of celebrations, many injuries may be prevented."	"Racial Disparities in Access to and Outcomes of Kidney Transplantation in Children, Adolescents, and Young Adults: Results From the ESPN/ERA-EDTA (European Society of Pediatric Nephrology/European Renal Association-European Dialysis and Transplant Association) Registry. Racial disparities in kidney transplantation in children have been found in the United States, but have not been studied before in Europe. Cohort study. Data were derived from the ESPN/ERA-EDTA Registry, an international pediatric renal registry collecting data from 36 European countries. This analysis included 1,134 young patients (aged ≤19 years) from 8 medium- to high-income countries who initiated renal replacement therapy (RRT) in 2006 to 2012. Racial background. Differences between racial groups in access to kidney transplantation, transplant survival, and overall survival on RRT were examined using Cox regression analysis while adjusting for age at RRT initiation, sex, and country of residence. 868 (76.5%) patients were white; 59 (5.2%), black; 116 (10.2%), Asian; and 91 (8.0%), from other racial groups. After a median follow-up of 2.8 (range, 0.1-3.0) years, we found that black (HR, 0.49; 95% CI, 0.34-0.72) and Asian (HR, 0.54; 95% CI, 0.41-0.71) patients were less likely to receive a kidney transplant than white patients. These disparities persisted after adjustment for primary renal disease. Transplant survival rates were similar across racial groups. Asian patients had higher overall mortality risk on RRT compared with white patients (HR, 2.50; 95% CI, 1.14-5.49). Adjustment for primary kidney disease reduced the effect of Asian background, suggesting that part of the association may be explained by differences in the underlying kidney disease between racial groups. No data for socioeconomic status, blood group, and HLA profile. We believe this is the first study examining racial differences in access to and outcomes of kidney transplantation in a large European population. We found important differences with less favorable outcomes for black and Asian patients. Further research is required to address the barriers to optimal treatment among racial minority groups."	"Lessons learned from the ESPN/ERA-EDTA Registry. End-stage renal disease (ESRD) in children is a medically challenging condition. Due to its rarity and special features, methodologically sound collaborative studies are required. In 2007, a new European registry of pediatric renal replacement therapy (RRT), the ESPN/ERA-EDTA Registry, was launched. In recent years, the Registry has provided comprehensive data on incidence, prevalence, patient characteristics, RRT modalities, and mortality in pediatric ESRD, along with relevant insights into cardiovascular risk, anemia, nutrition and growth, transplantation outcomes, and rare diseases. In this review, we describe the study design and structure underlying the ESPN/ERA-EDTA Registry, summarize the major research findings from more than 20 publications, and discuss current limitations and the future challenges to overcome."	"Anemia in children following renal transplantation-results from the ESPN/ERA-EDTA Registry. Our aim was to determine the prevalence of sub-target hemoglobin (Hb) levels in children with a renal allograft and to identify potential determinants associated with these Hb levels. Data from 3669 children with a functioning renal allograft, aged &lt;18 years between 1 January 2000 and 31 December 2012, from 20 European countries were retrieved from the ESPN/ERA-EDTA Registry, providing 16,170 Hb measurements. According to the NKF/KDOQI classification and the UK-NICE guidelines, 49.8 and 7.8% of the patients, respectively, were anemic. Hb levels were strongly associated with graft function, with Hb levels of 12.6 g/dl in children with chronic kidney disease (CKD) stage 1, declining to 10.7 g/dl in children with CKD stage 5 (P &lt; 0.001). Higher Hb levels were associated with the use of tacrolimus compared to ciclosporin (0.14 g/dl; 95% confidence interval 0.02-0.27; P = 0.002). Low Hb levels were associated with an increased risk of graft failure (P = 0.01) or combined graft failure and death (P &lt; 0.01), but not with death alone (not significant). Anemia is present in a significant proportion of European pediatric kidney transplant recipients and is associated with renal allograft dysfunction and type of immunosuppressants used. In our patient cohort, higher Hb levels were associated with better graft and patient survival and less hypertension."	"Optimism Bias in Fans and Sports Reporters. People are optimistic about their prospects relative to others. However, existing studies can be difficult to interpret because outcomes are not zero-sum. For example, one person avoiding cancer does not necessitate that another person develops cancer. Ideally, optimism bias would be evaluated within a closed formal system to establish with certainty the extent of the bias and the associated environmental factors, such that optimism bias is demonstrated when a population is internally inconsistent. Accordingly, we asked NFL fans to predict how many games teams they liked and disliked would win in the 2015 season. Fans, like ESPN reporters assigned to cover a team, were overly optimistic about their team's prospects. The opposite pattern was found for teams that fans disliked. Optimism may flourish because year-to-year team results are marked by auto-correlation and regression to the group mean (i.e., good teams stay good, but bad teams improve). "	"Identification of subgroups by risk of graft failure after paediatric renal transplantation: application of survival tree models on the ESPN/ERA-EDTA Registry. Identification of patient groups by risk of renal graft loss might be helpful for accurate patient counselling and clinical decision-making. Survival tree models are an alternative statistical approach to identify subgroups, offering cut-off points for covariates and an easy-to-interpret representation. Within the European Society of Pediatric Nephrology/European Renal Association-European Dialysis and Transplant Association (ESPN/ERA-EDTA) Registry data we identified paediatric patient groups with specific profiles for 5-year renal graft survival. Two analyses were performed, including (i) parameters known at time of transplantation and (ii) additional clinical measurements obtained early after transplantation. The identified subgroups were added as covariates in two survival models. The prognostic performance of the models was tested and compared with conventional Cox regression analyses. The first analysis included 5275 paediatric renal transplants. The best 5-year graft survival (90.4%) was found among patients who received a renal graft as a pre-emptive transplantation or after short-term dialysis (&lt;45 days), whereas graft survival was poorest (51.7%) in adolescents transplanted after long-term dialysis (&gt;2.2 years). The Cox model including both pre-transplant factors and tree subgroups had a significantly better predictive performance than conventional Cox regression (P &lt; 0.001). In the analysis including clinical factors, graft survival ranged from 97.3% [younger patients with estimated glomerular filtration rate (eGFR) &gt;30 mL/min/1.73 m(2) and dialysis &lt;20 months] to 34.7% (adolescents with eGFR &lt;60 mL/min/1.73 m(2) and dialysis &gt;20 months). Also in this case combining tree findings and clinical factors improved the predictive performance as compared with conventional Cox model models (P &lt; 0.0001). In conclusion, we demonstrated the tree model to be an accurate and attractive tool to predict graft failure for patients with specific characteristics. This may aid the evaluation of individual graft prognosis and thereby the design of measures to improve graft survival in the poor prognosis groups."	"Considerable variations in growth hormone policy and prescription in paediatric end-stage renal disease across European countries-a report from the ESPN/ERA-EDTA registry. Growth retardation in paediatric end-stage renal disease (ESRD) has a serious impact on adult life. It is potentially treatable with recombinant growth hormone (rGH). In this study, we aimed to quantify the variation in rGH policies and actual provided care in these patients across Europe. Renal registry representatives of 38 European countries received a structured questionnaire on rGH policy. Cross-sectional data on height and actual use of rGH on children with ESRD aged &lt;18 years were retrieved from the ESPN/ERA-EDTA Registry. In 21 (75%) of 28 responding countries, rGH is reimbursed for children with ESRD. The specific conditions for reimbursement (minimum age, maximum age and chronic kidney disease stage) vary considerably. Mean height standard deviation scores (SDS) at renal replacement therapy (RRT) [95% confidence interval (CI)] were significantly higher in countries where rGH was reimbursed -1.80 (-2.06; -1.53) compared with countries in which it was not reimbursed [-2.34 (-2.49;-2.18), P &lt; 0.001]. Comparison of the mean height SDS at onset of RRT and final height SDS yielded similar results. Among the 13 countries for which both data on actual rGH use between 2007 and 2011 and data from the questionnaire were available, 30.1% of dialysis and 42.3% of transplanted patients had a short stature, while only 24.1 and 7.6% of those short children used rGH, respectively. Reimbursement of rGH associates with a less compromised final stature of ESRD children. In many countries with full rGH reimbursement, the actual rGH prescription in growth-retarded ESRD children is low and obviously more determined by the doctor's and patients' attitude towards rGH therapy than by financial hurdles."	"Spine fellowships, ESPN rankings, and the AP Top 25. NA"	"Renal replacement therapy in Europe: a summary of the 2011 ERA-EDTA Registry Annual Report. This article provides a summary of the 2011 ERA-EDTA Registry Annual Report (available at www.era-edta-reg.org). Data on renal replacement therapy (RRT) for end-stage renal disease (ESRD) from national and regional renal registries in 30 countries in Europe and bordering the Mediterranean Sea were used. From 27 registries, individual patient data were received, whereas 17 registries contributed data in aggregated form. We present the incidence and prevalence of RRT, and renal transplant rates in 2011. In addition, survival probabilities and expected remaining lifetimes were calculated for those registries providing individual patient data. The overall unadjusted incidence rate of RRT in 2011 among all registries reporting to the ERA-EDTA Registry was 117 per million population (pmp) (n = 71.631). Incidence rates varied from 24 pmp in Ukraine to 238 pmp in Turkey. The overall unadjusted prevalence of RRT for ESRD on 31 December 2011 was 692 pmp (n = 425 824). The highest prevalence was reported by Portugal (1662 pmp) and the lowest by Ukraine (131 pmp). Among all registries, a total of 22 814 renal transplantations were performed (37 pmp). The highest overall transplant rate was reported from Spain, Cantabria (81 pmp), whereas the highest rate of living donor transplants was reported from Turkey (39 pmp). For patients who started RRT between 2002 and 2006, the unadjusted 5-year patient survival on RRT was 46.8% [95% confidence interval (CI) 46.6-47.0], and on dialysis 39.3% (95% CI 39.2-39.4). The unadjusted 5-year patient survival after the first renal transplantation performed between 2002 and 2006 was 86.7% (95% CI 86.2-87.2) for kidneys from deceased donors and 94.3% (95% CI 93.6-95.0) for kidneys from living donors."	"Disparities in treatment rates of paediatric end-stage renal disease across Europe: insights from the ESPN/ERA-EDTA registry. Considerable disparities exist in the provision of paediatric renal replacement therapy (RRT) across Europe. This study aims to determine whether these disparities arise from geographical differences in the occurrence of renal disease, or whether country-level access-to-care factors may be responsible. Incidence was defined as the number of new patients aged 0-14 years starting RRT per year, between 2007 and 2011, per million children (pmc), and was extracted from the ESPN/ERA-EDTA registry database for 35 European countries. Country-level indicators on macroeconomics, perinatal care and physical access to treatment were collected through an online survey and from the World Bank database. The estimated effect is presented per 1SD increase for each indicator. The incidence of paediatric RRT in Europe was 5.4 cases pmc. Incidence decreased from Western to Eastern Europe (-1.91 pmc/1321 km, P &lt; 0.0001), and increased from Southern to Northern Europe (0.93 pmc/838 km, P = 0.002). Regional differences in the occurrence of specific renal diseases were marginal. Higher RRT treatment rates were found in wealthier countries (2.47 pmc/€10 378 GDP per capita, P &lt; 0.0001), among those that tend to spend more on healthcare (1.45 pmc/1.7% public health expenditure, P &lt; 0.0001), and among countries where patients pay less out-of-pocket for healthcare (-1.29 pmc/11.7% out-of-pocket health expenditure, P &lt; 0.0001). Country neonatal mortality was inversely related with incidence in the youngest patients (ages 0-4, -1.1 pmc/2.1 deaths per 1000 births, P = 0.10). Countries with a higher incidence had a lower average age at RRT start, which was fully explained by country GDP per capita. Inequalities exist in the provision of paediatric RRT throughout Europe, most of which are explained by differences in country macroeconomics, which limit the provision of treatment particularly in the youngest patients. This poses a challenge for healthcare policy makers in their aim to ensure universal and equal access to high-quality healthcare services across Europe."	"Evaluation of shear bond strength between dual cure resin cement and zirconia ceramic after thermocycling treatment. This study was performed to evaluate shear bond strength (SBS) between three dual-cured resin cements and silica coated zirconia, before and after thermocycling treatment. Sixty specimens were cut in 15 × 2.75 mm discs using zirconia. After air blasting of 50 µm alumina, samples were prepared by tribochemical silica coating with Rocatec™ plus. The specimens were divided into three groups according to the dual-cure resin cement used: (1) Calibra silane+Calibra®, (2) Monobond S+Multilink® N and (3) ESPN sil+RelyX™ Unicem Clicker. After the resin cement was bonded to the zirconia using a Teflon mold, photopolymerization was carried out. Only 10 specimens in each group were thermocycled 6,000 times. Depending on thermocycling treatment, each group was divided into two subgroups (n=10) and SBS was measured by applying force at the speed of 1 mm/min using a universal testing machine. To find out the differences in SBS according to the types of cements and thermocycling using the SPSS, two-way ANOVA was conducted and post-hoc analysis was performed by Turkey's test. In non-thermal aged groups, SBS of Multilink group (M1) was higher than that of Calibra (C1) and Unicem (U1) group (P&lt;.05). Moreover, even after thermocycling treatment, SBS of Multilink group (M2) was higher than the other groups (C2 and U2). All three cements showed lower SBS after the thermocycling than before the treatments. But Multilink and Unicem had a significant difference (P&lt;.05). In this experiment, Multilink showed the highest SBS before and after thermocycling. Also, bond strengths of all three cements decreased after thermocycling."	"Renal replacement therapy for rare diseases affecting the kidney: an analysis of the ERA-EDTA Registry. In recent years, increased efforts have been undertaken to address the needs of patients with rare diseases by international initiatives and consortia devoted to rare disease research and management. However, information on the overall prevalence of rare diseases within the end-stage renal disease (ESRD) population is limited. The aims of this study were (i) to identify those rare diseases within the ERA-EDTA Registry for which renal replacement therapy (RRT) is being provided and (ii) to determine the prevalence and incidence of RRT for ESRD due to rare diseases, both overall and separately for children and adults. The Orphanet classification of rare disease was searched for rare diseases potentially causing ESRD, and these diagnosis codes were mapped to the corresponding ERA-EDTA primary renal disease codes. Thirty-one diagnoses were defined as rare diseases causing ESRD. From 1 January 2007 to 31 December 2011, 7194 patients started RRT for a rare disease (10.6% children). While some diseases were exclusively found in adults (e.g. Fabry disease), primary oxalosis, cystinosis, congenital anomalies of the kidney and urinary tract (CAKUT) and medullary cystic kidney disease affected young patients in up to 46%. On 31 December 2011, 20 595 patients (12.4% of the total RRT population) were on RRT for ESRD caused by a rare disease. The point prevalence was 32.5 per million age-related population in children and 152.0 in adults. Only 5.8% of these patients were younger than 20 years; however, 57.7% of all children on RRT had a rare disease, compared with only 11.9% in adults. CAKUT and focal segmental glomerulosclerosis were the most prevalent rare disease entities among patients on RRT. More than half of all children and one of nine adults on RRT in the ERA-EDTA Registry suffer from kidney failure due to a rare disease, potentially with a large number of additional undiagnosed or miscoded cases. Comprehensive diagnostic assessment and the application of accurate disease classification systems are essential for improving the identification and management of patients with rare kidney diseases."	"Demographics of paediatric renal replacement therapy in Europe: a report of the ESPN/ERA-EDTA registry. The ESPN/ERA-EDTA Registry collects data on European children with end-stage renal disease receiving renal replacement therapy (RRT) who are listed on national and regional renal registries in Europe. In this paper we report on the analysis of demographic data collected from 2009 to 2011. Data on primary renal disease, incidence, prevalence, 4-year survival, transplantation rate and causes of death in paediatric patients receiving RRT were extracted from the ESPN/ERA-EDTA Registry for 37 European countries. The incidence of RRT in paediatric patients in Europe during the study period was 5.5 cases per million age-related population (pmarp) in patients aged 0-14 years and varied markedly between countries (interquartile range 3.4-7.0 years). The prevalence of RRT was 27.9 pmarp and increased with age, with 67 % of prevalent patients living with a functioning graft. The probability of receiving a transplant within 4 years was 76.9 % and was lowest in patients aged 0-4 years (68.9 %). Mortality in paediatric patients treated with RRT was 55-fold higher than that of the general EU paediatric population. Overall survival at 4 years was 93.7 %, with the poorest survival in patients aged 0-4 years and in patients starting on dialysis. Infections (19.9 %) were the primary cause of death in European paediatric RRT patients. Considerable variation exists in the current demographics of children treated with RRT across Europe."	"Virulence profiling of Shiga toxin-producing Escherichia coli recovered from domestic farm animals in Northwestern Mexico. Shiga toxin-producing Escherichia coli (STEC) is a zoonotic enteric pathogen that causes human gastrointestinal illnesses. The present study characterized the virulence profiles of O157 and non-O157 STEC strains, recovered from domestic animals in small rural farms within the agricultural Culiacan Valley in Mexico. Virulence genes coding for adhesins, cytotoxins, proteases, subtypes of Shiga toxin (Stx), and other effectors were identified in the STEC strains by PCR. The genotyping analysis revealed the presence of the effectors nleA, nleB, nleE, and nleH1-2, espK, and espN in the O157:H7 and O111:H8 STEC strains. Furthermore, the genes encoding the autoagglutinating adhesin (Saa) and subtilase (SubA) were exclusively identified in the O8:H19 eae-negative strains. The adhesin (iha) and the silent hemolysin (sheA) genes were detected in 79% of the O157 and non-O157 strains. To examine the relative toxicities of the STEC strains, a fluorescent Vero cell line, Vero-d2EGFPs, was employed to measure the inhibition of protein synthesis by Stx. Analysis of culture supernatants from serotype O8:H19 strains with the stx gene profile stx 1a, stx 2a, and stx 2c and serotypes O75:H8 and O146:H8 strains with the stx gene profile stx 1a, stx 1c, and stx 2b, resulted in a significant reduction in the Vero-d2EGFP fluorescent signal. These observations suggest that these non-O157 strains may have an enhanced ability to inhibit protein synthesis in Vero cells. Interestingly, analysis of the stx 2c-positive O157:H7 strains resulted in a high fluorescent signal, indicating a reduced toxicity in the Vero-d2EGFP cells. These findings indicate that the O157 and non-O157 STEC strains, recovered in the Culiacan Valley, display distinct virulence profiles and relative toxicities in mammalian cells and have provided information for evaluating risks associated with zoonotic STEC in this agricultural region in Mexico. "	"Survival and clinical outcomes of children starting renal replacement therapy in the neonatal period. End-stage renal disease requiring renal replacement therapy (RRT) during the neonatal period is a very rare condition, and little information is available regarding long-term RRT and outcomes. To gain more information, we performed a collaborative study on patient characteristics and treatment outcomes in children who started RRT as neonates during their first month of life between 2000 and 2011 who were prospectively registered in the ESPN/ERA-EDTA, the IPPN (since 2007), the Japanese registry, or the Australian and New Zealand Dialysis and Transplant (ANZDATA) registry. During the first month of life, 264 patients from 32 countries started RRT and were followed for a median of 29 months (interquartile range 11-60 months). Most neonates (242) started on peritoneal dialysis, 21 started on hemodialysis, and 1 patient with a transplant. The most important causes of renal failure were congenital anomalies of the kidney and urinary tract in 141, cystic kidneys in 35, and cortical necrosis in 30. Within 2 years after the start of RRT, 69 children changed dialysis modality and 53 received a renal transplant. After a median of 7 months, 45 children had died, mainly because of infection, resulting in an estimated 2-year survival of 81%, and 5-year survival of 76%. Growth retardation (63%), anemia (55%), and hypertension (57%) were still major problems after 2 years. Thus, relatively good medium-term patient survival may be achieved with RRT started during the neonatal period, but specific therapeutic challenges continue to exist in this age group. "	"Characterization and regulation of an additional actin-filament-binding site in large isoforms of the stereocilia actin-bundling protein espin. The espin actin-bundling proteins, which are produced as isoforms of different sizes from a single gene, are required for the growth of hair cell stereocilia. We have characterized an additional actin-filament-binding site present in the extended amino-termini of large espin isoforms. Constitutively active in espin 2, the site increased the size of actin bundles formed in vitro and inhibited actin fluorescence recovery in microvilli. In espin 1, which has an N-terminal ankyrin repeat domain, the site was autoinhibited by binding between the ankyrin repeat domain and a peptide near the actin-binding site. Deletion of this peptide from espin 1 activated its actin-binding site. The peptide resembled tail homology domain I of myosin III, a ligand of the ankyrin repeat domain localized with espin 1 at the tip of stereocilia. A myosin III tail homology domain I peptide, but not scrambled control peptides, inhibited internal binding of the ankyrin repeat domain and released the espin 1 actin-binding site from autoinhibition. Thus, this regulation could result in local activation of the additional actin-binding site of espin 1 by myosin III in stereocilia."	"Likelihood of children with end-stage kidney disease in Europe to live with a functioning kidney transplant is mainly explained by nonmedical factors. Registry data can be used to assess associations between medical and health-policy factors and the likelihood of children on renal replacement therapy (RRT) to live with a functioning kidney transplant in Europe. A survey questionnaire was distributed among renal registry representatives in 38 European countries, and additional data was obtained from the European Society for Pediatric Nephrology/European Renal Association-European Dialysis and Transplant Association (ESPN/ERA-EDTA) registry. Thirty-two countries with a pediatric RRT program responded. The median percentage of children by country on RRT with a functioning transplant was 62 % (interquartile range 39-77). One per million population increase in donation rate from deceased donors was associated with a 5 % increase in the percentage of functioning transplants; the existence of an intermediate and high pediatric priority policy doubled and tripled this percentage, respectively, compared with no priority, whereas an increase in living donor pediatric kidney transplant rate of one per million children was associated with a 14 % higher percentage of functioning transplants. The percentage of functioning transplants was also strongly associated with the gross domestic product (GDP). Considerable variations exist in the percentages of prevalent pediatric RRT populations with functioning renal transplants across Europe. A macroeconomic indicator such as GDP is the most important determinant of these international differences. Efforts should be made for living donation programs and pediatric allocation priority to increase access to kidney transplantation for children."	"Adult height in patients with advanced CKD requiring renal replacement therapy during childhood. Growth and final height are of major concern in children with ESRD. This study sought to describe the distribution of adult height of patients who started renal replacement therapy (RRT) during childhood and to identify determinants of final height in a large cohort of RRT children. A total of 1612 patients from 20 European countries who started RRT before 19 years of age and reached final height between 1990 and 2011 were included. Linear regression analyses were performed to calculate adjusted mean final height SD score (SDS) and to investigate its potential determinants. The median final height SDS was -1.65 (median of 168 cm in boys and 155 cm in girls). Fifty-five percent of patients attained an adult height within the normal range. Adjusted for age at start of RRT and primary renal diseases, final height increased significantly over time from -2.06 SDS in children who reached adulthood in 1990-1995 to -1.33 SDS among those reaching adulthood in 2006-2011. Older age at start of RRT, more recent period of start of RRT, cumulative percentage time on a functioning graft, and greater height SDS at initiation of RRT were independently associated with a higher final height SDS. Patients with congenital anomalies of the kidney and urinary tract and metabolic disorders had a lower final height than those with other primary renal diseases. Although final height remains suboptimal in children with ESRD, it has consistently improved over time."	"Performance and Return to Sport After Anterior Cruciate Ligament Reconstruction in X-Games Skiers and Snowboarders. Skiing and snowboarding have become increasingly popular since the inception of the winter X-Games in 1997. To determine (1) rate of return to sport (RTS) to the winter X-Games following anterior cruciate ligament (ACL) reconstruction and (2) performance upon RTS following ACL reconstruction. There is a high rate of RTS to the winter X-Games in subjects undergoing ACL reconstruction. There is no difference in performance upon RTS following ACL reconstruction versus preinjury. Case series; Level of evidence, 4. Skiers and snowboarders competing in the winter X-Games who tore their ACL and underwent ACL reconstruction between 1997 and 2012 were evaluated. Athlete data were extracted from winter X-Games media websites, ESPN, injury reports, player profiles/biographies, and press releases. All athlete, knee, and surgical demographic data were analyzed. RTS and performance as it related to the number of gold, silver, and bronze medals won both pre- and postoperatively in the X-Games were analyzed. Fifteen skiers (19 knees) and 10 snowboarders (10 knees) were analyzed. There were 13 males and 12 females, with a mean subject age of 22.6 ± 4.45 years. The rate of RTS in the X-Games following ACL reconstruction was 80% overall (20/25 subjects). The rate of RTS in winter X-Games following ACL reconstruction in skiers was 87% (13/15 subjects) and in snowboarders was 70% (7/10 subjects). The rate of RTS in winter X-Games following ACL reconstruction in males and females was 85% (11/13 subjects) and 75% (9/12 subjects), respectively. The rate of revision ACL reconstruction due to ACL tear following primary ACL reconstruction was 4% (1/25 subjects). There were more left- than right-sided tears (18 vs 11). Skiers and snowboarders competed in the X-Games for 3.84 ± 2.73 and 3.40 ± 2.84 years prior to ACL reconstruction and 2.56 ± 2.06 and 7.29 ± 3.30 years after ACL reconstruction, respectively. Skiers earned 22 medals prior to ACL reconstruction (9 gold, 5 silver, 8 bronze) and 24 medals after ACL reconstruction (16 gold, 2 silver, 6 bronze). Snowboarders earned 7 medals prior to ACL reconstruction (4 gold, 1 silver, 2 bronze) and 19 medals after ACL reconstruction (7 gold, 7 silver, 5 bronze). Winter X-Games skiers and snowboarders have a high rate of RTS after ACL reconstruction. Skiers earned a similar number of medals preinjury and postsurgery, while snowboarders earned more medals following surgery."	"Dyslipidaemia in children on renal replacement therapy. Information on lipid abnormalities in end-stage renal disease (ESRD) mainly originates from adult patients and small paediatric studies. We describe the prevalence of dyslipidaemia, and potential determinants associated with lipid measures in a large cohort of paediatric ESRD patients. In the ESPN/ERA-EDTA registry, lipid measurements were available for 976 patients aged 2-17 years from 19 different countries from the year 2000 onwards. Dyslipidaemia was defined as triglycerides &gt;100 mg/dL (2-9 years) or &gt;130 mg/dL (9-17 years), high-density lipoprotein (HDL) cholesterol &lt;40 mg/dL or non-HDL cholesterol &gt;145 mg/dL. Missing data were supplemented using multiple imputation. The prevalence of dyslipidaemia was 85.1% in peritoneal dialysis (PD) patients, 76.1% in haemodialysis (HD) patients and 55.5% among renal allograft recipients. Both low and high body mass index (BMI) were associated with a less favourable lipid profile. Younger age was associated with a worse lipid profile among PD patients. HDL levels significantly improved after transplantation, whereas no significant improvements were found for triglyceride and non-HDL levels. In transplant recipients, use of cyclosporin was associated with significantly higher non-HDL and HDL levels than tacrolimus usage (P &lt; 0.01). In transplant patients with eGFR &lt; 29 mL/min/1.73 m(2), the mean triglyceride level was 137 mg/dL (99% confidence interval (CI): 119-159) compared with 102 mg/dL among those with eGFR &gt; 90 mL/min/1.73 m(2) (P &lt; 0.0001). Dyslipidaemia is common among paediatric ESRD patients in Europe. Young age and PD treatment are associated with worse lipid profiles. Although lipid levels generally improve after transplantation, dyslipidaemia may persist due to decreased graft function, high BMI or to the use of certain immunosuppressants."	"ESPN Course 2013—the trainee's point of view. NA"	"Underweight, overweight and obesity in paediatric dialysis and renal transplant patients. The prevalence of childhood overweight is rising worldwide, but in children on renal replacement therapy (RRT) a poor nutritional status is still the primary concern. We aimed to study the prevalence of, and factors associated with, underweight and overweight/obesity in the European paediatric RRT population. Moreover, we assessed the evolution of body mass index (BMI) after the start of RRT. We included 4474 patients younger than 16 years from 25 countries of whom BMI data, obtained between 1995 and 2010, were available within the European Society for Paediatric Nephrology/European Renal Association-European Dialysis and Transplant Association Registry. Prevalence estimates for under- and overweight/obesity were calculated using age and sex-specific criteria of the World Health Organization (WHO, 0-1 year olds) and the International Obesity Task Force cut-offs (2-15 year olds). The prevalence of underweight was 3.5%, whereas 20.8% of the patients were overweight and 12.5% obese. Factors associated with being underweight were receiving dialysis treatment and infant age. Among transplanted recipients, a very short stature (OR: 1.64, 95% CI: 1.40-1.92) and glucocorticoid treatment (OR: 1.23, 95% CI: 1.03-1.47) were associated with a higher risk of being overweight/obese. BMI increased post-transplant, and a lower BMI and a higher age at the start of RRT were associated with greater BMI changes during RRT treatment. Overweight and obesity, rather than underweight, are highly prevalent in European children on RRT. Short stature among graft recipients had a strong association with overweight, while underweight appears to be only a problem in infants. Our findings suggest that nutritional management in children receiving RRT should focus as much on the prevention and treatment of overweight as on preventing malnutrition."	"Discrimination of enterohemorrhagic Escherichia coli (EHEC) from non-EHEC strains based on detection of various combinations of type III effector genes. Enterohemorrhagic Escherichia coli (EHEC) strains comprise a subgroup of Shiga-toxin (Stx)-producing E. coli (STEC) and are characterized by a few serotypes. Among these, seven priority STEC serotypes (O26:H11, O45:H2, O103:H2, O111:H8, O121:H19, O145:H28, and O157:H7) are most frequently implicated in severe clinical illness worldwide. Currently, standard methods using stx, eae, and O-serogroup-specific gene sequences for detecting the top 7 EHEC serotypes bear the disadvantage that these genes can be found in non-EHEC strains as well. Here, we explored the suitability of ureD, espV, espK, espN, Z2098, and espM1 genes and combinations thereof as candidates for a more targeted EHEC screening assay. For a very large panel of E. coli strains (n = 1,100), which comprised EHEC (n = 340), enteropathogenic E. coli (EPEC) (n = 392), STEC (n = 193), and apathogenic strains (n = 175), we showed that these genetic markers were more prevalent in EHEC (67.1% to 92.4%) than in EPEC (13.3% to 45.2%), STEC (0.5% to 3.6%), and apathogenic E. coli strains (0 to 2.9%). It is noteworthy that 38.5% of the EPEC strains that tested positive for at least one of these genetic markers belonged to the top 7 EHEC serotypes, suggesting that such isolates might be Stx-negative derivatives of EHEC. The associations of espK with either espV, ureD, or Z2098 were the best combinations for more specific and sensitive detection of the top 7 EHEC strains, allowing detection of 99.3% to 100% of these strains. In addition, detection of 93.7% of the EHEC strains belonging to other serotypes than the top 7 offers a possibility for identifying new emerging EHEC strains. "	"The CERTAIN Registry: a novel, web-based registry and research platform for pediatric renal transplantation in Europe. The results of pediatric renal transplantation have improved markedly in the last decade. However, a number of relevant clinical problems remain, such as organ damage caused by chronic rejection, long-term toxicity of immunosuppressive therapy, difficulty in developing tolerance-inducing protocols, secondary cardiovascular comorbidity, post-transplantation lymphoproliferative disease, suboptimal longitudinal growth, quality of life, adherence to immunosuppressive medication, and structured transition programs to adult care. These unmet clinical needs require intense collaborative and interdisciplinary clinical research. We recently founded the Cooperative European Paediatric Renal TransplAnt INitiative (CERTAIN; www.certain-registry.eu) as a research network and platform built on a novel, web-based registry. The registry's dataset provides essential information on generic kidney transplantation-related topics and also captures pediatric-specific topics, such as growth, physical and psychosocial development, and adherence. Due to its flexibility the system can be used as follows: (1) as a registry capturing a minimal or an extended dataset; (2) as a center and/or country-specific transplantation database; or (3) as a patient-specific electronic transplantation chart. The data can be exported directly from the CERTAIN web application into statistical software packages for scientific analyses. The rights regarding data ownership, evaluation, and publications are regulated in the registry's rules of procedure. Data quality is ensured by automatic software validation and a manual data review process. To avoid redundant data entry, CERTAIN has established interfaces for data change with Eurotransplant, the Collaborative Transplant Study (CTS), and the registry of the European Society of Pediatric Nephrology (ESPN) and European Renal Association - European Dialysis and Transplant Association (ERA-EDTA) (ESPN/ERA-EDTA registry). CERTAIN fulfils all regulatory and ethical requirements of the European Union and Germany, in particular, regarding patients' data privacy and security. Using modern information technology, the recently established multinational CERTAIN Registry fills a gap in Europe for collaborative 5 research and quality assurance in the field of pediatric renal transplantation."	"Disparities in policies, practices and rates of pediatric kidney transplantation in Europe. We aimed to provide an overview of kidney allocation policies related to children and pediatric kidney transplantation (KTx) practices and rates in Europe, and to study factors associated with KTx rates. A survey was distributed among renal registry representatives in 38 European countries. Additional data were obtained from the ESPN/ERA-EDTA and ERA-EDTA registries. Thirty-two countries (84%) responded. The median incidence rate of pediatric KTx was 5.7 (range 0-13.5) per million children (pmc). A median proportion of 17% (interquartile range 2-29) of KTx was performed preemptively, while the median proportion of living donor KTx was 43% (interquartile range 10-52). The median percentage of children on renal replacement therapy (RRT) with a functioning graft was 62%. The level of pediatric prioritization was associated with a decreased waiting time for deceased donor KTx, an increased pediatric KTx rate, and a lower proportion of living donor KTx. The rates of pediatric KTx, distribution of donor source and time on waiting list vary considerably between European countries. The lack of harmonization in kidney allocation to children raises medical and ethical issues. Harmonization of pediatric allocation policies should be prioritized. "	"Impact of graft loss among kidney diseases with a high risk of post-transplant recurrence in the paediatric population. Some kidney diseases tend to recur in the renal allograft after transplantation. We studied the risk of graft loss among primary renal diseases known for their high risk of recurrence and compared it with that of patients with hypoplasia and/or dysplasia. Within the European Society of Paediatric Nephrology and European Renal Association and European Dialysis and Transplant Association (ESPN/ERA-EDTA) registry, we studied children from 33 countries who received a kidney transplant before the age of 20 between 1990 and 2009. Patients were censored after 5 years of follow-up and cumulative incidence competing risk analysis was used to calculate survival curves. Patients with focal and segmental glomerulosclerosis (FSGS), haemolytic uraemic syndrome (HUS), membranoproliferative glomerulonephritis Type I or II (MPGN), IgA nephropathy or Henoch Schönlein Purpura (HSP/IgA) or systemic lupus erythomatosus (SLE) underwent pre-emptive transplantation significantly less often than patients with hypoplasia and/or dysplasia. The rate of living donation was lower among patients with FSGS and SLE than in patients with hypoplasia and/or dysplasia. In comparison with hypoplasia and/or dysplasia patients with a risk of 14.4%, the 5-year risk of graft loss was significantly increased in patients with FSGS (25.7%) and MPGN (32.4%) while it was not significantly increased in children with HUS (18.9%), HSP/IgA (16.3%) or SLE (20.3%). One-year graft survival strongly improved among HUS patients from 17.1% in 1995-1999 to 3.6% in 2005-2009 and was not accompanied by a decrease in the number of transplantations. The risk of graft loss is increased among specific causes of renal failure with a high risk of post-transplant recurrence. It seems likely that, due to anticipation of such risk, physicians perform less pre-emptive transplantation and provide fewer grafts from living related donors in patients with these conditions. Improved risk stratification by physicians, resulting in the identification of patients with HUS at higher or lower risk of recurrence, might explain the much improved graft survival rates."	"Introducing a mixed-valent dirhodium(II,III) catalyst with increased stability in C-H amination. A new mixed-valent Rh(2)(II,III) dimer, [Rh(2)(espn)(2)Cl] (espn(2-) = α,α,α',α'-tetramethyl-1,3-benzenedipropanamidate), is reported. This compound readily dissociates Cl(-) at low concentrations in solution to form the active [Rh(2)(espn)(2)](+) catalyst, which performs intramolecular C-H amination with TONs &gt; 1400. This work expands the scope of Rh(2)(II,III) dimers to nitrenoid chemistry."	"Use of national and international growth charts for studying height in European children: development of up-to-date European height-for-age charts. Growth charts based on data collected in different populations and time periods are key tools to assess children's linear growth. We analyzed the impact of geographic factors and the secular trend on height-for-age charts currently used in European populations, developed up-to-date European growth charts, and studied the effect of using different charts in a sample of growth retarded children. In an international survey we obtained 18 unique national height-for-age charts from 28 European countries and compared them with charts from the World Health Organization (WHO), Euro-Growth reference, and Centers of Disease Control and Prevention (CDC). As an example, we obtained height data from 3,534 children with end-stage renal disease (ESRD) from 13 countries via the ESPN/ERA-EDTA registry, a patient group generally suffering from growth retardation. National growth charts showed a clear secular trend in height (mean height increased on average 0.6 cm/decade) and a North-South height gradient in Europe. For countries without a recent (&gt;1990) national growth chart novel European growth charts were constructed from Northern and Southern European reference populations, reflecting geographic height differences in mean final height of 3.9 cm in boys and 3.8 cm in girls. Mean height SDS of 2- to 17-year-old ESRD patients calculated from recent national or derived European growth charts (-1.91, 95% CI: -1.97 to -1.85) was significantly lower than when using CDC or WHO growth charts (-1.55, 95% CI: -1.61 to -1.49) (P&lt;0.0001). Differences between height-for-age charts may reflect true population differences, but are also strongly affected by the secular trend in height. The choice of reference charts substantially affects the clinical decision whether a child is considered short-for-age. Therefore, we advocate using recent national or European height-for-age charts derived from recent national data when monitoring growth of healthy and diseased European children."	"Prevalence and predictors of the sub-target Hb level in children on dialysis. Anaemia is a common and potentially treatable co-morbidity of end-stage renal disease. We aimed to determine the prevalence of the sub-target haemoglobin (Hb) level among European children on dialysis and to identify factors associated with a low Hb level. From the European Society for Paediatric Nephrology (ESPN)/European Renal Association-European Dialysis Transplant Association (ERA-EDTA) registry, data were available on 2351 children between 1 month and 18 years of age, totalling 5546 measurements from 19 countries. The mean Hb level was 10.8 g/dL (5th-95th percentiles, 7.4-13.9). Among those above 2 years of age, the mean Hb level was 10.9 g/dL (11.4% below 8.5 g/dL), while it was 10.3 g/dL among those below 2 years (11.2% below 8.0 g/dL). A total of 91.2% of the patients were on an erythropoiesis-stimulating agent (ESA). Hb levels increased with age and were higher in peritoneal dialysis compared with haemodialysis patients. Patients with congenital anomalies of the kidney and urinary tract showed the highest Hb levels, and those with cystic kidney diseases or metabolic disorders the lowest ones. Ferritin levels between 25 and 50 ng/mL were associated with the highest Hb levels. We found a weak inverse association between parathyroid hormone (PTH) and Hb. Whereas standardized blood pressure (BP) was not elevated in patients with above-target Hb, elevated systolic BP z-score was noted in those with sub-target Hb levels. Sub-target Hb levels remain common in children on dialysis, in spite of virtually all children being treated with ESA; although we cannot exclude under-dosing. Optimal ferritin levels seemed to be slightly lower in children (25-50 ng/mL) than those in adults. Other risk factors for sub-target Hb are dialysis modality and a high PTH level."	"Expandable proximal femoral nails versus 95° dynamic condylar screw-plates for the treatment of reverse oblique intertrochanteric fractures. The treatment of a simple (AO/OTA classification 31A3.1) reverse oblique intertrochanteric hip fracture is a challenge for the orthopaedic surgeon. The surgical options include the use of side plates with various angled leg screws or intramedullary devices. The purpose of this study was to retrospectively assess our results of treating reverse oblique fracture with an expendable proximal femoral nail (EPFN) or with a dynamic condylar screw-plate (DCS: 95°) between January 2006 and July 2009. Thirty-three patients (6 males and 27 females, mean age 78 years) met the study inclusion criteria and comprised the two study groups: 19 had been treated by EPFNs and 14 had received DCSs. They were followed for a mean of 28 months (range 6-47). Eight patients (5 EPFN and 3 DCS) died during the follow-up period from causes not related to the operation. Two ESPN patients and 5 DCS patients had malunions. Functional outcome scores showed better results in the EPFN group, but the difference was statistically significant only for the sitting subcategory (p=0.04). Based on our results and experience, we propose that the EPFN is at least as good as the DCS for treating reverse oblique fractures of the femur."	"Characteristics and outcomes of children with primary oxalosis requiring renal replacement therapy. Primary hyperoxaluria (PH) as a cause of ESRD in children is believed to have poor outcomes. Data on management and outcomes of these children remain scarce. This study included patients aged &lt;19 years who started renal replacement therapy (RRT) between 1979 and 2009 from 31 countries providing data to a large European registry. Of 9247 incident patients receiving RRT, 100 patients had PH. PH children were significantly younger than non-PH children at the start of RRT. The median age at RRT of PH children decreased from 9.8 years in 1979-1989 to 1.5 years in 2000-2009. Survival was 86%, 79%, and 76% among PH patients at 1, 3, and 5 years after the start of RRT, compared with 97%, 94%, and 92% in non-PH patients, resulting in a three-fold increased risk of death over non-PH patients. PH and non-PH patient survival improved over time. Sixty-eight PH children received a first kidney (n=13) or liver-kidney transplantation (n=55). Although the comparison was hampered by the lower number of kidney transplantations primarily derived from the earlier era of RRT, kidney graft survival in PH patients was 82%, 79%, and 76% at 1, 3, and 5 years for liver-kidney transplantation and 46%, 28%, and 14% at 1, 3, and 5 years for kidney transplantation alone, compared with 95%, 90%, and 85% in non-PH patients. The outcomes of PH children with ESRD are still poorer than in non-PH children but have substantially improved over time."	"Biomimetic synthesis of chiral erbium-doped silver/peptide/silica core-shell nanoparticles (ESPN). Peptide-modified silver nanoparticles have been coated with an erbium-doped silica layer using a method inspired by silica biomineralization. Electron microscopy and small-angle X-ray scattering confirm the presence of an Ag/peptide core and silica shell. The erbium is present as small Er(2)O(3) particles in and on the silica shell. Raman, IR, UV-Vis, and circular dichroism spectroscopies show that the peptide is still present after shell formation and the nanoparticles conserve a chiral plasmon resonance. Magnetic measurements find a paramagnetic behavior. In vitro tests using a macrophage cell line model show that the resulting multicomponent nanoparticles have a low toxicity for macrophages, even on partial dissolution of the silica shell."	"A new autosomal recessive nonsyndromic hearing impairment locus DFNB96 on chromosome 1p36.31-p36.13. A novel locus for autosomal recessive nonsyndromic hearing impairment (ARNSHI), DFNB96, was mapped to the 1p36.31-p36.13 region. A whole-genome linkage scan was performed using DNA samples from a consanguineous family from Pakistan with ARNSHI. A maximum two-point logarithm of odds (LOD) score of 3.2 was obtained at marker rs8627 (chromosome 1: 8.34 Mb) at θ=0 and a significant maximum multipoint LOD score of 3.8 was achieved at 15 contiguous markers from rs630075 (9.3 Mb) to rs10927583 (15.13 Mb). The 3-unit support interval and the region of homozygosity were both delimited by markers rs3817914 (6.42 Mb) and rs477558 (18.09 Mb) and contained 11.67 Mb. Of the 125 genes within the DFNB96 interval, the previously identified ARNSHI gene for DFNB36, ESPN, and two genes that cause Bartter syndrome, CLCNKA and CLCNKB, were sequenced, but no potentially causal variants were identified."	"Improvement in the renal prognosis in nephropathic cystinosis. Nephropathic cystinosis (NC) is an autosomal recessive disorder occurring in one to two per 100,000 newborns. Because of the rarity of NC, long-term outcome data are scarce. 245 NC patients from 18 countries provided data to the ESPN/ERA-EDTA registry. We matched NC patients on renal replacement therapy (RRT) to non-NC children on RRT. Between 1979 and 2008, mean age at the start of RRT among NC children increased by 0.15 year per calendar year (95% confidence interval, 0.10 to 0.21) from 8.8 to 12.7 years, whereas we did not observe this in non-NC children. Five-year survival after the start of RRT improved in NC patients from 86.1% (before 1990) to 100% (since 2000) as compared with the control population (89.6% and 94.0%). NC patients received a renal allograft more often (relative risk, 1.09; 95% confidence interval, 1.00 to 1.17) as compared with matched RRT children, and 5-year graft survival was better (94.0% versus 84.0%). NC dialysis patients were less often hypertensive than non-NC children matched for age, country, and dialysis modality (42.7% versus 51.7%) and had lower parathyroid hormone levels (median, 56 versus 140 pg/ml). Although height at start of RRT slightly improved during the past decade, children with NC remained significantly shorter than non-NC children at the start of RRT. We demonstrated improved survival of the renal function as well as better patient and graft survival after the start of RRT in a large European cohort of NC patients over the last two decades."	"Demographics of blood pressure and hypertension in children on renal replacement therapy in Europe. Hypertension is a well-known complication in children on renal replacement therapy and an important risk factor for cardiovascular disease in later life. In order to define the prevalence of and risk factors for hypertension among children, we enrolled 3337 pediatric patients from 15 countries in the ESPN/ERA-EDTA Registry of whom 464 were on hemodialysis, 851 on peritoneal dialysis, and 2023 had received a renal allograft. Hypertension was defined as either systolic or diastolic blood pressures in the 95th percentile or greater for age, height, and gender or use of antihypertensive medication. Analyses were adjusted for age, gender, duration, and modality of renal replacement therapy. In 10 countries in which information on the use of antihypertensive medication was available, hypertension was present in over two-thirds of hemodialysis, peritoneal dialysis, or transplant patients. Blood pressure values above the 95th percentile were significantly more prevalent in very young patients (under 3 years) compared to 13- to 17-year olds (odds ratio 2.47), during the first year compared to over 5 years of renal replacement therapy (odds ratio 1.80), and in patients on hemodialysis compared to transplant recipients or those on peritoneal dialysis (odds ratios of 2.48 and 1.59, respectively). Over time, mean blood pressures decreased in both hemodialysis and transplant patients, but not in peritoneal dialysis patients. Hence, our findings highlight the extent of the problem of hypertension in children with end-stage renal disease in Europe."	"Epidemiology of chronic kidney disease in children. In the past 30 years there have been major improvements in the care of children with chronic kidney disease (CKD). However, most of the available epidemiological data stem from end-stage renal disease (ESRD) registries and information on the earlier stages of pediatric CKD is still limited. The median reported incidence of renal replacement therapy (RRT) in children aged 0-19 years across the world in 2008 was 9 (range: 4-18) [corrected] per million of the age-related population). [corrected] The prevalence of RRT in 2008 ranged from 18 to 100 per million of the age-related population. Congenital disorders, including congenital anomalies of the kidney and urinary tract (CAKUT) and hereditary nephropathies, are responsible for about two thirds of all cases of CKD in developed countries, while acquired causes predominate in developing countries. Children with congenital disorders experience a slower progression of CKD than those with glomerulonephritis, resulting in a lower proportion of CAKUT in the ESRD population compared with less advanced stages of CKD. Most children with ESRD start on dialysis and then receive a transplant. While the survival rate of children with ERSD has improved, it remains about 30 times lower than that of healthy peers. Children now mainly die of cardiovascular causes and infection rather than from renal failure."	"Identification of genetic markers for differentiation of Shiga toxin-producing, enteropathogenic, and avirulent strains of Escherichia coli O26. Shiga toxin-producing Escherichia coli (STEC) O26 is one of the top five enterohemorrhagic E. coli (EHEC) O groups most often associated with hemorrhagic colitis and hemolytic uremic syndrome (HUS) worldwide. STEC O26 is considered to have evolved from enteropathogenic (EPEC) O26 strains through the acquisition of Shiga toxin (Stx)-encoding genes. Our PCR data identified several STEC-like strains expressing all features of STEC except Stx production and carrying remnants of Stx phages that were probably derivatives of EHEC O26. EHEC and EPEC O26 strains phenotypically resemble O26 EHEC-like and apathogenic E. coli O26 strains and are therefore undistinguishable by cultural methods. A clear discrimination between the different O26 groups is required for diagnostics in patients and for control of food safety. To develop an assay for specific detection of EHEC and EHEC-like O26 strains, we used a high-throughput PCR approach for selection of discriminative genetic markers among 33 tested genes mostly encoding type III secretion system effector proteins. The genes ECs1822, nleH1-2, nleA, nleC, nleH1-1, nleG, nleG2, nleG6-1, nleG6-2, espJ, espM2, nleG8-2, espG, ent (or espL2), nleB, nleE, efa1, and espB were detected at different frequencies in O26 EHEC, EHEC-like, and EPEC strains, indicating the possible role of these genes in virulence of human pathogenic O26 strains. The espK and espN genes were detected only in EHEC and EHEC-like O26 strains. espK was present in 99.14% of EHEC and 91.14% of EHEC-like O26 strains and was hence the best candidate as a genetic marker for characterizing these pathogroups. These data were corroborated by a genotyping real-time PCR test based on allelic discrimination of the arcA (aerobic respiratory control protein A) gene. The results indicate that a combination of molecular detection tools for O26 wzx (wzx(O26)), eae-beta, stx, espK, and arcA genotyping is highly discriminative for clear identification of EHEC and EHEC-like E. coli O26 strains. This simple diagnostic test might be applicable in hospital service laboratories or public health laboratories to test strains isolated from stools of patients suffering from diarrhea."	"Selective ablation of the androgen receptor in mouse sertoli cells affects sertoli cell maturation, barrier formation and cytoskeletal development. The observation that mice with a selective ablation of the androgen receptor (AR) in Sertoli cells (SC) (SCARKO mice) display a complete block in meiosis supports the contention that SC play a pivotal role in the control of germ cell development by androgens. To delineate the physiological and molecular mechanism responsible for this control, we compared tubular development in pubertal SCARKO mice and littermate controls. Particular attention was paid to differences in SC maturation, SC barrier formation and cytoskeletal organization and to the molecular mediators potentially involved. Functional analysis of SC barrier development by hypertonic perfusion and lanthanum permeation techniques and immunohistochemical analysis of junction formation showed that SCARKO mice still attempt to produce a barrier separating basal and adluminal compartment but that barrier formation is delayed and defective. Defective barrier formation was accompanied by disturbances in SC nuclear maturation (immature shape, absence of prominent, tripartite nucleoli) and SC polarization (aberrant positioning of SC nuclei and cytoskeletal elements such as vimentin). Quantitative RT-PCR was used to study the transcript levels of genes potentially related to the described phenomena between day 8 and 35. Differences in the expression of SC genes known to play a role in junction formation could be shown from day 8 for Cldn11, from day 15 for Cldn3 and Espn, from day 20 for Cdh2 and Jam3 and from day 35 for ZO-1. Marked differences were also noted in the transcript levels of several genes that are also related to cell adhesion and cytoskeletal dynamics but that have not yet been studied in SC (Actn3, Ank3, Anxa9, Scin, Emb, Mpzl2). It is concluded that absence of a functional AR in SC impedes the remodeling of testicular tubules expected at the onset of spermatogenesis and interferes with the creation of the specific environment needed for germ cell development."	"Targeting of the hair cell proteins cadherin 23, harmonin, myosin XVa, espin, and prestin in an epithelial cell model. We have developed an advantageous epithelial cell transfection model for examining the targeting, interactions, and mutations of hair cell proteins. When expressed in LLC-PK1-CL4 epithelial cells (CL4 cells), the outer hair cell protein prestin showed faithful domain-specific targeting to the basolateral plasma membrane. We examined the consequences of mutations affecting prestin activity and assigned a targeting role to the cytoplasmic tail. The stereociliary link protein cadherin 23 (Cdh23) was targeted to the plasma membrane of CL4 cell microvilli, the topological equivalent of stereocilia. In cells coexpressing the Cdh23 cytoplasmic binding protein harmonin, a large fraction of harmonin became colocalized with Cdh23 in microvilli. Using this assay and in vitro protein binding assays, we formulated an alternative model for Cdh23-harmonin binding, in which the primary interaction is between the harmonin N-domain and a 35-residue internal peptide in the Cdh23 cytoplasmic tail. Contrary to a previous model, we found no role for the Cdh23 C-terminal PDZ (PSD-95/Dlg/ZO-1)-binding motif and observed that Cdh23 bound similar levels of harmonin with or without the exon 68 peptide. We also examined two proteins involved in stereocilium elongation. The stereociliary actin-bundling protein espin was targeted to CL4 cell microvilli and caused microvillar elongation, whereas espin with the c.2469delGTCA or c.1988delAGAG human deafness mutation showed defects in microvillar targeting and elongation. The unconventional myosin motor myosin XVa accumulated at the tips of espin-elongated microvilli, by analogy to its location in stereocilia, whereas myosin XVa with the c.4351G&gt;A or c.4669A&gt;G human deafness mutation did not, revealing functional deficits in motor activity."	"Determinants of eGFR at start of renal replacement therapy in paediatric patients. Few studies have investigated the determinants of glomerular filtration rate (GFR) in paediatric patients starting on dialysis or with a transplant. Data were collected as part of the European Society of Paediatric Nephrology/European Renal Association-European Dialysis and Transplant Association registry from 14 European countries and referred to incident paediatric patients starting on renal replacement therapy (RRT) between 2002 and 2007 under the age of 18 years. Estimated glomerular filtration rate (eGFR) was calculated using the Schwartz formula. Data were adjusted for age, gender, treatment modality at start, primary cause of renal failure (PRD) and regions in Europe (eGFR(adj)). Median eGFR in the 938 patients starting RRT was 10.4 mL/min/1.73 m(2) (5th and 95th percentile: 4.0-26.9). Twenty-six patients (2.8%), mainly infants with Finnish-type nephropathy, started with eGFR levels &gt;50 mL/min/1.73 m(2). Younger age, female gender, starting on dialysis and having a short time between the first visit to a paediatric nephrologist (PN) and start of RRT were associated with lower eGFR at start of RRT. Gender differences were only present during adolescent age and disappeared when using the same K value for both genders. The various PRDs showed large differences in the rate of decline in eGFR between the first visit to a PN and start of RRT; however, this did not result in differences in eGFR(adj) at start of RRT. The main determinants of eGFR at start of RRT were age, gender, treatment modality at start, and the time between the first visit to a PN and start of RRT. Research is needed to determine the consequences of these differences."	"Demographics of paediatric renal replacement therapy in Europe: 2007 annual report of the ESPN/ERA-EDTA registry. NA"	"Twinfilin 2 regulates actin filament lengths in cochlear stereocilia. Inner ear sensory hair cells convert mechanical stimuli into electrical signals. This conversion happens in the exquisitely mechanosensitive hair bundle that protrudes from the cell's apical surface. In mammals, cochlear hair bundles are composed of 50-100 actin-filled stereocilia, which are organized in three rows in a staircase manner. Stereocilia actin filaments are uniformly oriented with their barbed ends toward stereocilia tips. During development, the actin core of each stereocilium undergoes elongation due to addition of actin monomers to the barbed ends of the filaments. Here we show that in the mouse cochlea the barbed end capping protein twinfilin 2 is present at the tips of middle and short rows of stereocilia from postnatal day 5 (P5) onward, which correlates with a time period when these rows stop growing. The tall stereocilia rows, which do not display twinfilin 2 at their tips, continue to elongate between P5 and P15. When we expressed twinfilin 2 in LLC/PK1-CL4 (CL4) cells, we observed a reduction of espin-induced microvilli length, pointing to a potent function of twinfilin 2 in suppressing the elongation of actin filaments. Overexpression of twinfilin 2 in cochlear inner hair cells resulted in a significant reduction of stereocilia length. Our results suggest that twinfilin 2 plays a role in the regulation of stereocilia elongation by restricting excessive elongation of the shorter row stereocilia thereby maintaining the mature staircase architecture of cochlear hair bundles."	"Structural and viscoelastic properties of actin networks formed by espin or pathologically relevant espin mutants. The structural organization of the cytoskeleton determines its viscoelastic response which is crucial for the correct functionality of living cells. Both the mechanical response and microstructure of the cytoskeleton are regulated on a microscopic level by the local activation of different actin binding and/or bundling proteins (ABPs). Misregulations in the expression of these ABPs or mutations in their sequence can entail severe cellular dysfunctions and diseases. Here, we study the structural and viscoelastic properties of reconstituted actin networks cross-linked by the ABP espin and compare the obtained network properties to those of other bundled actin networks. Moreover, we quantify the impact of pathologically relevant espin mutations on the viscoelastic properties of these cytoskeletal networks."	"Progress with the European Society for Paediatric Nephrology (ESPN)/ERA-EDTA Registry for children with established renal failure (ERF). NA"	"Myosin IIIa boosts elongation of stereocilia by transporting espin 1 to the plus ends of actin filaments. Two proteins implicated in inherited deafness, myosin IIIa, a plus-end-directed motor, and espin, an actin-bundling protein containing the actin-monomer-binding motif WH2, have been shown to influence the length of mechanosensory stereocilia. Here we report that espin 1, an ankyrin repeat-containing isoform of espin, colocalizes with myosin IIIa at stereocilia tips and interacts with a unique conserved domain of myosin IIIa. We show that combined overexpression of these proteins causes greater elongation of stereocilia, compared with overexpression of either myosin IIIa alone or espin 1 alone. When these two proteins were co-expressed in the fibroblast-like COS-7 cell line they induced a tenfold elongation of filopodia. This extraordinary filopodia elongation results from the transport of espin 1 to the plus ends of F-actin by myosin IIIa and depends on espin 1 WH2 activity. This study provides the basis for understanding the role of myosin IIIa and espin 1 in regulating stereocilia length, and presents a physiological example where myosins can boost elongation of actin protrusions by transporting actin regulatory factors to the plus ends of actin filaments."	"Unique transgenic animal model for hereditary hearing loss. This study capitalizes on the unique molecular and developmental similarities between the auditory organs of Drosophila and mammals, to investigate genes implicated in human syndromic and nonsyndromic hearing loss in a genetically tractable experimental animal model, the fruit fly Drosophila. The Drosophila counterparts of 3 human deafness genes (DIAPH1/DFNA1, ESPN/DFNB36, and TMHS/DF-NB67) were identified by sequence similarity. An electrophysiological assay was used to record sound-evoked potentials in response to an acoustic stimulus, the Drosophila courtship song. Flies with mutations affecting the diaphanous,forked, and CG12026/TMHS genes displayed significant reductions in the amplitude of sound-evoked potentials compared to wild-type flies (p &lt; 0.05 to p &lt; 0.005). The mean responses were reduced from approximately 500 to 600 microV in wild-type flies to approximately 100 to 300 microV in most mutant flies. The identification of significant auditory dysfunction in Drosophila orthologs of human deafness genes will facilitate exploration of the molecular biochemistry of auditory mechanosensation. This may eventually allow for novel diagnostic and therapeutic approaches to human hereditary hearing loss."	"RAB13 participates in ectoplasmic specialization dynamics in the rat testis. During spermatogenesis, leptotene spermatocytes residing in the basal compartment of the seminiferous epithelium must traverse the blood-testis barrier (BTB) to gain entry into the adluminal compartment for further development. At the same time, these as well as other germ cell types in the epithelium must retain their close association with Sertoli cells via specialized cell junctions. In this study, we demonstrate that RAB13-a guanosine triphosphatase (GTPase) known to participate in tight junction function in other epithelia-also participates in the dynamics of the ectoplasmic specialization, a testis-specific type of anchoring junction. By immunohistochemistry microscopy, RAB13 localized to the ectoplasmic specialization. Moreover, RAB13 was found to associate with vinculin (VCL) and espin (ESPN), two putative ectoplasmic specialization actin (ACT)-binding proteins, by coimmunoprecipitation and immunofluorescence microscopy experiments. To address the role of RAB13 in ectoplasmic specialization dynamics, an in vivo model was used in which administration of Adjudin induced the disassembly of Sertoli-germ cell anchoring junctions. Following administration of this drug, the RAB13 level decreased steadily when the loss in testicular weight was taken into account. Similarly, the association of RAB13 with VCL decreased but was not completely lost during Adjudin-mediated ectoplasmic specialization restructuring. Taken collectively, these results suggest that RAB13 functions in ectoplasmic specialization dynamics in the testis."	"A novel mutation in the Espin gene causes autosomal recessive nonsyndromic hearing loss but no apparent vestibular dysfunction in a Moroccan family. NA"	"Espin actin-cytoskeletal proteins are in rat type I spiral ganglion neurons and include splice-isoforms with a functional nuclear localization signal. The espins are Ca(2+)-resistant actin-bundling proteins that are enriched in hair cell stereocilia and sensory cell microvilli. Here, we report a novel localization of espins to a large proportion of rat type I spiral ganglion neurons (SGNs) and their projections to the cochlear nucleus (CN). Moreover, we show that a fraction of these espins is in the nucleus of SGNs owing to the presence of splice-isoforms that contain a functional nuclear localization signal (NLS). Espin antibody labeled approximately 83% of type I SGNs, and the labeling intensity increased dramatically during early postnatal development. Type II SGNs and vestibular ganglion neurons were unlabeled. In the CN, espin-positive auditory nerve fibers showed a projection pattern typical of type I SGNs, with intense labeling in the nerve root region and posteroventral CN (PVCN). The anteroventral CN (AVCN) showed moderate labeling, whereas the dorsal CN showed weak labeling that was restricted to the deep layer. Espin-positive synaptic terminals were enriched around nerve root neurons and octopus cells in the PVCN and were also found on globular bushy cells and multipolar neurons in the PVCN and AVCN. SGNs expressed multiple espin transcripts and proteins, including splice-isoforms that contain a nonapeptide, which is rich in positively charged amino acids and creates a bipartite NLS. The nonapeptide was necessary to target espin isoforms to the nucleus and was sufficient to target an unrelated protein to the nucleus when joined with the upstream di-arginine-containing octapeptide. The presence of cytoplasmic and nuclear espins in SGNs suggests additional roles for espins in auditory neuroscience."	"Evaluation of ESPN, MYO3A, SLC26A5 and USH1C as candidates for hereditary non-syndromic deafness (congenital sensorineural deafness) in Dalmatian dogs. NA"	"Microvillar size and espin expression in principal cells of the adult rat epididymis are regulated by androgens. Principal cells of the epididymis are the most prominent cell type and are noted for an apical cell surface studded with microvilli. The latter contain channel proteins that condition the microenvironment of epididymal lumen and promote sperm maturation; however, the regulation of the structure and integrity of microvilli is not well known. Espins are a family of proteins implicated in microvillar growth. The objectives of this study were to assess the regulation of espin in epididymal principal cells both in vitro and in vivo. Treatment of immortalized rat caput epididymal (RCE) cells with increasing doses of a homogenized testicular extract revealed a dose-dependent increase in the size of microvilli. Reverse transcriptase-polymerase chain reaction (RT-PCR) of adult rat epididymal RNA using espin-specific primers indicated the presence of a band at about 290 base pairs (bp) in all regions. Western blot analysis using affinity-purified espin antibody confirmed the presence of an approximately 110-kDa band in the epididymis, corresponding to espin isoform 1. In adult rats, immunocytochemistry revealed espin expression over principal cells. In orchidectomized rats, espin expression was significantly reduced, whereas ligation of the efferent ducts resulted in a decrease of espin expression but not to the extent of orchidectomy. The fact that espin expression was restored to control levels in orchidectomized rats supplemented with high levels of testosterone indicated that its expression was dependent on androgens and not on other lumicrine factors derived from the testis. Taken together, these data indicate that espin is expressed in the epididymis and is regulated by androgens."	"Coxsackie and adenovirus receptor (CAR) is a product of Sertoli and germ cells in rat testes which is localized at the Sertoli-Sertoli and Sertoli-germ cell interface. The coxsackie and adenovirus receptor (CAR), a putative cell-cell adhesion molecule, has attracted wide interest due to its importance in viral pathogenesis and in mediating adenoviral gene delivery. However, the distribution pattern and physiological function of CAR in the testis is still not clear. Here, we identified CAR in Sertoli cells and germ cells of rats. In vivo studies have shown that CAR resides at the blood-testis barrier as well as at the ectoplasmic specialization. The persistent expression of CAR in rat testes from neonatal period throughout adulthood implicates its role in spermatogenesis. Using primary Sertoli cell cultures, we observed a significant induction of CAR during the formation of Sertoli cell epithelium. Furthermore, CAR was seen to be concentrated at inter-Sertoli cell junctions, co-localizing with tight junction protein marker ZO-1 and adherens junction protein N-cadherin. CAR was also found to be associated with proteins of Src kinase family and its protein level declined after TNFalpha treatment in Sertoli cell cultures. Immunofluorescent staining of isolated germ cells has revealed the presence of CAR on spermatogonia, spermatocytes, round spermatids and elongate spermatids. Taken together, we propose that CAR functions as an adhesion molecule in maintaining the inter-Sertoli cell junctions at the basal compartment of the seminiferous epithelium. In addition, CAR may confer adhesion between Sertoli and germ cells at the Sertoli-germ cell interface. It is possible that the receptor utilized by viral pathogens to breakthrough the epithelial barrier was also employed by developing germ cells to migrate through the inter-Sertoli cell junctions."	"Structural polymorphism of the actin-espin system: a prototypical system of filaments and linkers in stereocilia. We examine the interaction between cytoskeletal F-actin and espin 3A, a prototypical actin bundling protein found in sensory cell microvilli, including ear cell stereocilia. Espin induces twist distortions in F-actin as well as facilitates bundle formation. Mutations in one of the two F-actin binding sites of espin, which have been implicated in deafness, can tune espin-actin interactions and radically transform the system's phase behavior. These results are compared to recent theoretical work on the general phase behavior linker-rod systems."	"The founding and early history of the European Society for Paediatric Nephrology (ESPN). The founding of the European Society for Paediatric Nephrology (ESPN) in 1967 was the milestone for pediatric nephrology in Europe. Now, at the beginning of the 21st century, more than 2,000 European pediatricians in 46 European countries work in the field of pediatric nephrology, and approximately 500 of these meet regularly at the annual ESPN meetings. Half of these 2,000 pediatricians work in about 200 specialized pediatric nephrology centers in tertiary care units, whereas the other half work in secondary pediatric care, with a special interest in common renal diseases. In this article the founding and early years of the ESPN are outlined and include the structure of the first ten annual ESPN meetings from 1967-1976. Historical reports are given by five pioneers who were first-hand witnesses of the development of pediatric renal care in Europe."	"Renal transplantation in HUS patients with disorders of complement regulation. Haemolytic uraemic syndrome (HUS) is the primary diagnosis of 4.5% of children on chronic renal replacement therapy. Approximately 5% of all HUS cases have an &quot;atypical&quot; or recurrent course. Atypical HUS is an inadequate term that applies to a heterogeneous group of conditions. We describe this group as non-diarrhoeal (D-) ), non-EHEC (EHEC - ) HUS. Patients in the non-diarrhoeal, non-EHEC, relapsing group are much more likely to exhibit severe hypertension, histological findings of arterial as well as arteriolar disease, chronic and end-stage renal failure. In general, these patients have an alarmingly high risk of graft loss from disease recurrence or thrombosis ranging from 60-100%. Family history is crucial, and where family members have relapsing disease, transplantation is a very high risk procedure (recurrence 100%). Patients with (D-)HUS need very careful consideration before transplantation, including molecular investigation of complement regulators (and von Willebrandt protease (ADAMTS13) activity, although this goes beyond the scope of this review). Guidelines are accessible under http://www.espn.ucwm.ac.uk . On no account should live related donation take place unless the risks of graft loss are understood. International collaboration to identify safer ways of transplanting these challenging patients is urgently needed."	"Espins and the actin cytoskeleton of hair cell stereocilia and sensory cell microvilli. The espins are novel actin-bundling proteins that are produced in multiple isoforms from a single gene. They are present at high concentration in the parallel actin bundle of hair cell stereocilia and are the target of deafness mutations in mice and humans. Espins are also enriched in the microvilli of taste receptor cells, solitary chemoreceptor cells, vomeronasal sensory neurons and Merkel cells, suggesting that espins play important roles in the microvillar projections of vertebrate sensory cells. Espins are potent actin-bundling proteins that are not inhibited by Ca2+. In cells, they efficiently elongate parallel actin bundles and, thereby, help determine the steadystate length of microvilli and stereocilia. Espins bind actin monomer via their WH2 domain and can assemble actin bundles in cells. Certain espin isoforms can also bind phosphatidylinositol 4,5-bisphosphate, profilins or SH3 proteins. These biological activities distinguish espins from other actin-bundling proteins and may make them well-suited to sensory cells."	"FSH regulates the formation of adherens junctions and ectoplasmic specialisations between rat Sertoli cells in vitro and in vivo. Spermatogenesis is dependent on the ability of Sertoli cells to form mature junctions that maintain a unique environment within the seminiferous epithelium. Adjacent Sertoli cells form a junctional complex that includes classical adherens junctions and testis-specific ectoplasmic specialisations (ES). The regulation of inter-Sertoli cell junctions by the two main endocrine regulators of spermatogenesis, FSH and testosterone, is unclear. This study aimed to investigate the effects of FSH and testosterone on inter-Sertoli cell adherens junctions (as determined by immunolocalisation of cadherin, catenin and actin) and ES junctions (as determined by immunolocalisation of espin, actin and vinculin) in cultured immature Sertoli cells and GnRH-immunised adult rat testes given FSH or testosterone replacement in vivo. When hormones were absent in vitro, adherens junctions formed as discrete puncta between interdigitating, finger-like projections of Sertoli cells, but ES junctions were not present. The adherens junction puncta included actin filaments that were oriented perpendicularly to the Sertoli cell plasma membrane, but were not associated with the intermediate filament protein vimentin. When FSH was added in vitro, ES junctions formed, and adjacent adherens junction puncta fused into extensive adherens junction belts. After hormone suppression in vivo, ES junctions were absent, while FSH replacement restored ES junctions, as confirmed by electron microscopy and confocal analysis of ES-associated proteins. Testosterone alone did not affect adherens junctions or ES in vitro or in vivo. We conclude that FSH can regulate the formation of ES junctions and stimulate the organisation and orientation of extensive adherens junctions in Sertoli cells."	"Targeted wild-type and jerker espins reveal a novel, WH2-domain-dependent way to make actin bundles in cells. The espin actin-bundling proteins, which are the target of deafness mutations, are present in the parallel actin bundles of stereocilia and microvilli and appear to increase their steady-state length. Here, we report a new activity of the espins, one that depends on their enigmatic WH2 domain: the ability to assemble a large actin bundle when targeted to a specific subcellular location. This activity was observed for wild-type espins targeted to the centrosome in transfected neuronal cells and for jerker espins targeted to the nucleolus in a wide variety of transfected cells as a result of the frameshifted peptide introduced into the espin C-terminus by the jerker deafness mutation. This activity, which appears specific to espins, requires two espin F-actin-binding sites and the actin-monomer-binding activity of the espin WH2 domain, but can be mimicked by adding a WH2 domain to an unrelated actin-bundling protein, villin. Espins do not activate the Arp2/3 complex in vitro, and bundle assembly is not indicative of in-vitro nucleation activity. Our results suggest a novel way to build actin bundles at specific sites in cells."	"Differential expression of espin isoforms during epithelial morphogenesis, stereociliogenesis and postnatal maturation in the developing inner ear. The espins are a family of multifunctional actin cytoskeletal proteins. They are present in hair cell stereocilia and are the target of mutations that cause deafness and vestibular dysfunction. Here, we demonstrate that the different espin isoforms are expressed in complex spatiotemporal patterns during inner ear development. Espin 3 isoforms were prevalent in the epithelium of the otic pit, otocyst and membranous labyrinth as they underwent morphogenesis. This espin was down-regulated ahead of hair cell differentiation and during neuroblast delamination. Espin also accumulated in the epithelium of branchial clefts and pharyngeal pouches and during branching morphogenesis in other embryonic epithelial tissues, suggesting general roles for espins in epithelial morphogenesis. Espin reappeared later in inner ear development in differentiating hair cells. Its levels and compartmentalization to stereocilia increased during the formation and maturation of stereociliary bundles. Late in embryonic development, espin was also present in a tail-like process that emanated from the hair cell base. Increases in the levels of espin 1 and espin 4 isoforms correlated with stereocilium elongation and maturation in the vestibular system and cochlea, respectively. Our results suggest that the different espin isoforms play specific roles in actin cytoskeletal regulation during epithelial morphogenesis and hair cell differentiation."	"A quantitative survey of gravity receptor function in mutant mouse strains. The purpose of this research was to identify vestibular deficits in mice using linear vestibular evoked potentials (VsEPs). VsEP thresholds, peak latencies, and peak amplitudes from 24 strains with known genetic mutations and 6 inbred background strains were analyzed and descriptive statistics generated for each strain. Response parameters from mutant homozygotes were compared with heterozygote and/or background controls and all strain averages were contrasted to normative ranges. Homozygotes of the following recessive mutations had absent VsEPs at the ages tested: Espn(je), Atp2b2dfw-2J, Spnb4qv-lnd2J, Spnb4qv-3J, Myo7ash1, Tmie(sr), Myo6sv, jc, Pcdh15av-J, Pcdh15av-2J, Pcdh15av-3J, Cdh23v-2J, Sans(js), hr, Kcne1pkr and Pou3f4del. These results suggest profound gravity receptor deficits for these homozygotes, which is consistent with the structural deficits that have been documented for many of these strains. Homozygotes of Catna2cdf, Grid2ho4J, Wnt1sw, qk, and Mbpshi strains and heterozygotes of Grid2lc had measurable VsEPs but one or more response parameters differed from the respective control group (heterozygote or background strain) or were outside normal ranges. For example, qk and Mbpshi homozygotes showed significantly prolonged latencies consistent with the abnormal myelin that has been described for these strains. Prolonged latencies may suggest deficits in neural conduction; elevated thresholds suggest reduced sensitivity, and reduced amplitudes may be suggestive for reduced neural synchrony. One mutation, Otx1jv, had all VsEP response parameters within normal limits--an expected finding because the abnormality in Otxljv is presumably restricted to the lateral semicircular canal. Interestingly, some heterozygote groups also showed abnormalities in one or more VsEP response parameters, suggesting that vestibular dysfunction, although less severe, may be present in some heterozygous animals."	"Balanced levels of Espin are critical for stereociliary growth and length maintenance. Hearing and balance depend on microvilli-like actin-based projections of sensory hair cells called stereocilia. Their sensitivity to mechanical displacements on the nanometer scale requires a highly organized hair bundle in which the physical dimension of each stereocilium is tightly controlled. The length and diameter of each stereocilium are established during hair bundle maturation and maintained by life-long continuing dynamic regulation. Here, we studied the role of the actin-bundling protein Espin in stereociliary growth by examining the hair cell stereocilia of Espin-deficient jerker mice (Espn(je)), and the effects of transiently overexpressing Espin in the neuroepithelial cells of the organ of Corti cultures. Using fluorescence scanning confocal and electron microscopy, we found that a lack of Espin results in inhibition of stereociliary growth followed by progressive degeneration of the hair bundle. In contrast, overexpression of Espin induced lengthening of stereocilia and microvilli that mirrored the elongation of the actin filament bundle at their core. Interestingly, Espin deficiency also appeared to influence the localization of Myosin XVa, an unconventional myosin that is normally present at the stereocilia tip at levels proportional to stereocilia length. These results indicate that Espin is important for the growth and maintenance of the actin-based protrusions of inner ear neuroepithelial cells."	"Espin gene (ESPN) mutations associated with autosomal dominant hearing loss cause defects in microvillar elongation or organisation. Espins are actin bundling proteins present in hair cell stereocilia. A recessive mutation in the espin gene (Espn) has been detected in the jerker mouse and causes deafness, vestibular dysfunction, and hair cell degeneration. More recently mutations in the human espin gene (ESPN) have been described in two families affected by autosomal recessive hearing loss and vestibular areflexia. To report the identification of four additional ESPN mutations (S719R, D744N, R774Q, and delK848) in patients affected by autosomal dominant hearing loss without vestibular involvement. To determine whether the mutated ESPN alleles affected the biological activity of the corresponding espin proteins in vivo, their ability to target and elongate the parallel actin bundles of brush border microvilli was investigated in transfected LLC-PK1-CL4 epithelial cells. For three mutated alleles clear abnormalities in microvillar length or distribution were obtained. The results further strengthen the causative role of the espin gene in non-syndromic hearing loss and add new insights into espin structure and function."	"An ex vivo analysis of Sertoli cell actin dynamics following gonadotropic hormone withdrawal. The receptors for the steroid hormone testosterone and the peptide hormone follicle-stimulating hormone are localized to the somatic Sertoli cell in the seminiferous epithelium. In the rat, prolonged gonadotrophic hormone withdrawal has been shown to result in substantial germ cell apoptosis. Previous studies have shown that, coincident with the loss of germ cells following hypophysectomy, the actin cytoskeleton of the Sertoli cell becomes disorganized and diffuse throughout the cell's cytoplasm. The molecular mechanisms that govern Sertoli cell actin filament dynamics in response to the loss of gonadotrophic hormones remain undefined. It was therefore hypothesized that hypophysectomy brings about a decrease in the amount of polymerized actin (F-actin) within the Sertoli cell and that this decrease is associated with changes in the expression of genes known to govern Sertoli actin dynamics. To this end, Sertoli cells were isolated from adult control and hypophysectomized rats. Sertoli cells from hypophysectomized rats were found to contain significantly less (72%) F-actin relative to untreated controls, although overall, beta-actin protein and mRNA expression remained constant. The expression levels of genes known to directly influence the amount of F-actin in cells were then examined by Northern blot analysis. Cofilin and profilin I gene expression was unaffected by hypophysectomy, whereas the expression of profilin II and espin both decreased significantly (47% and 42%, respectively). Taken together, these results suggest that, following hypophysectomy, the actin cytoskeleton of the Sertoli cell shifts to a predominantly depolymerized state, perhaps in part because of decreases in profilin II and espin gene products."	"Mutations of ESPN cause autosomal recessive deafness and vestibular dysfunction. We mapped a human deafness locus DFNB36 to chromosome 1p36.3 in two consanguineous families segregating recessively inherited deafness and vestibular areflexia. This phenotype co-segregates with either of two frameshift mutations, 1988delAGAG and 2469delGTCA, in ESPN, which encodes a calcium-insensitive actin-bundling protein called espin. A recessive mutation of ESPN is known to cause hearing loss and vestibular dysfunction in the jerker mouse. Our results establish espin as an essential protein for hearing and vestibular function in humans. The abnormal vestibular phenotype associated with ESPN mutations will be a useful clinical marker for refining the differential diagnosis of non-syndromic deafness."	"Espins are multifunctional actin cytoskeletal regulatory proteins in the microvilli of chemosensory and mechanosensory cells. Espins are associated with the parallel actin bundles of hair cell stereocilia and are the target of mutations that cause deafness and vestibular dysfunction in mice and humans. Here, we report that espins are also concentrated in the microvilli of a number of other sensory cells: vomeronasal organ sensory neurons, solitary chemoreceptor cells, taste cells, and Merkel cells. Moreover, we show that hair cells and these other sensory cells contain novel espin isoforms that arise from a different transcriptional start site and differ significantly from other espin isoforms in their complement of ligand-binding activities and their effects on actin polymerization. The novel espin isoforms of sensory cells bundled actin filaments with high affinity in a Ca(2+)-resistant manner, bound actin monomer via a WASP (Wiskott-Aldrich syndrome protein) homology 2 domain, bound profilin via a single proline-rich peptide, and caused a dramatic elongation of microvillus-type parallel actin bundles in transfected epithelial cells. In addition, the novel espin isoforms of sensory cells differed from other espin isoforms in that they potently inhibited actin polymerization in vitro, did not bind the Src homology 3 domain of the adapter protein insulin receptor substrate p53, and did not bind the acidic, signaling phospholipid phosphatidylinositol 4,5-bisphosphate. Thus, the espins constitute a family of multifunctional actin cytoskeletal regulatory proteins with the potential to differentially influence the organization, dimensions, dynamics, and signaling capabilities of the actin filament-rich, microvillus-type specializations that mediate sensory transduction in various mechanosensory and chemosensory cells."	"Demography of paediatric renal care in Europe: organization and delivery. Members of the European Society of Paediatric Nephrology (ESPN) initiated a study of the demography and policy of paediatric renal care among European countries at the end of the 20th century. A questionnaire was mailed to the presidents of each of 43 national renal paediatric societies or working groups in Europe. Data on each country's population, income as reflected by its gross national product and infant mortality rate, were obtained from the United Nations. The paediatric health care systems were previously divided into three types: general practitioner care system, paediatric care system and combined care system (CCS). In 1998, 842 specialized paediatric nephrologists worked in hospitals in 42 European countries. The median number of paediatric nephrologists per million child population (pmcp) was 4.9 (range 0-15). The median number of children served per paediatric nephrologist was significantly higher in countries with the general practitioner care system than in those with the paediatric or combined care system (CCS), namely 370 747 vs 169 456 and 191 788, respectively. In addition to specially trained paediatric nephrologists, there were 1087 paediatricians with a part-time interest/activity in paediatric nephrology in hospitals in 34 European countries. Eastern European countries had significantly more general paediatricians with part-time nephrological activities than countries belonging to the European Union (EU), 16.7 vs 6.6 pmcp. In 1998, 92% of 42 European countries offered paediatric dialysis facilities for acute renal failure and 90% for chronic renal failure and 55% offered paediatric renal transplantation (RTx). Only 30% of Eastern European countries (central omitted) offered paediatric RTx vs 87% of EU countries. The availability of paediatric RTx was associated significantly with the countries' gross national product (r = 0.53, P&lt;0.001). The median number of paediatric hospitals offering dialysis for childhood chronic renal failure was 1.5 pmcp (range 0-5.0) and the median number of paediatric hospitals offering paediatric RTx was 0.4 pmcp (range 0-3.5). Fewer children were on dialysis or were transplanted in Eastern European countries than in the EU. At the end of the 20th century, there was a marked variation in delivery of paediatric renal care within Europe. This was related to factors such as size of the population, geographical and political situation, the type of primary paediatric care system and economic situation. European countries were far from equal with regard to access of renal replacement therapy for children. Improvement of the economic situation is beyond the capabilities of paediatric nephrologists. However, in these days of world-wide globalization paediatricians in greater Europe should be able to achieve better cooperation and exchange of ideas and information which would be the first step towards equality of renal care for children."	"Characterization of normal spermiation and spermiation failure induced by hormone suppression in adult rats. At the end of spermatogenesis, elongated spermatids are released from supporting Sertoli cells via the process termed spermiation. Previous studies have shown that spermiation failure occurs after hormone suppression, in which spermatids are retained instead of releasing. However, the molecular mechanisms involved in spermiation and spermiation failure are largely unknown. The aims of the present study were, first, to characterize the ultrastructural events associated with normal spermiation and spermiation failure using light and electron microscopy and, second, to investigate the localization of cell adhesion-associated (beta1-integrin and cadherins) and junction-associated molecules (integrin-associated kinase [ILK], beta-catenin, and espin) during these processes. Four adult Sprague-Dawley rats received testosterone and estradiol implants and FSH antibody (2 mg kg-1 day-1) for 7 days to suppress testicular testosterone and FSH and to induce spermiation failure. Four rats treated with saline were used as controls. After testosterone and FSH suppression, spermiation at the ultrastructural level appeared to be normal until the final disengagement of the spermatids from Sertoli cells (stage VIII), at which stage a large number of retained spermatids were noted. Immunohistochemical localization of espin showed that during spermiation, removal of the ectoplasmic specialization (ES) occurred 30 h before spermatid disengagement, suggesting that non-ES junctions mediate the spermatid-Sertoli cell interaction before and during disengagement. beta1-Integrin and beta-catenin remained associated with spermatids after ES removal and until disengagement; however, ILK was removed along with the ES. Though detectable, N-cadherin was not associated with the spermatid-Sertoli cell junction. After testosterone and FSH suppression, beta1-integrin, but not N-cadherin or beta-catenin, remained associated with spermatids that failed to spermiate. In conclusion, hormone suppression-induced spermiation failure is caused by defects in the disengagement of spermatids from the Sertoli cell, and this process likely is mediated by beta1-integrin in an ILK-independent mechanism."	"Novel espin actin-bundling proteins are localized to Purkinje cell dendritic spines and bind the Src homology 3 adapter protein insulin receptor substrate p53. We identified a group of actin-binding-bundling proteins that are expressed in cerebellar Purkinje cells (PCs) but are not detected in other neurons of the CNS. These proteins are novel isoforms of the actin-bundling protein espin that arise through the use of a unique site for transcriptional initiation and differential splicing. Light and electron microscopic localization studies demonstrated that these espin isoforms are enriched in the dendritic spines of PCs. They were detected in the head and neck and in association with the postsynaptic density (PSD) of dendritic spines in synaptic contact with parallel or climbing fibers. They were also highly enriched in PSD fractions isolated from cerebellum. The PC espins efficiently bound and bundled actin filaments in vitro, and these activities were not inhibited by Ca2+. When expressed in transfected neuronal cell lines, the PC espins colocalized with actin filaments and elicited the formation of coarse cytoplasmic actin bundles. The insulin receptor substrate p53 (IRSp53), an Src homology 3 (SH3) adapter protein and regulator of the actin cytoskeleton, was identified as an espin-binding protein in yeast two-hybrid screens. Cotransfection studies and pull-down assays showed that this interaction was direct and required the N-terminal proline-rich peptide of the PC espins. Thus, the PC espins exhibit the properties of modular actin-bundling proteins with the potential to influence the organization and dynamics of the actin cytoskeleton in PC dendritic spines and to participate in multiprotein complexes involving SH3 domain-containing proteins, such as IRSp53."	"Genetic and physical maps of jerker (Espn(je)) on mouse chromosome 4. The jerker mutation causes degeneration of cochlea and vestibular sensory hair cells in mice. A frame-shift mutation in the actin bundling gene Espin (Espn) leads to hair bundle defects by disrupting the actin filament assembly in stereocilia. Previously, jerker was mapped to distal mouse chromosome 4. Here, analyzing 2536 informative meioses derived from two intersubspecific intercrosses, we localize jerker to a 0.51+/-0.14cM interval on chromosome 4. The following order and distances of genes and markers were determined: D4Mit180-0.44+/-0.13cM-Hes2, Espn(je)-0.08+/-0.06cM-D4Mit356-0.28+/-0.1cM-D4Mit208. A 300kb physical bacterial artificial chromosome (BAC) contig was generated containing the Espn(je) locus. The human homologous region maps to 1p36.31. We present a detailed high-resolution genetic and physical map of markers located at distal chromosome 4 and demonstrate concordance of Espn with jerker."	"Violence in television commercials during nonviolent programming. The 1996 Major League Baseball playoffs. To identify the frequency of violent television commercials aired during major league baseball playoffs, traditionally thought to be a family-oriented viewing time. All 6 World Series games televised on the Fox Television Network (Fox), all 5 American League Championship Series playoff games televised by the National Broadcasting Company (NBC), and 4 first-round playoff games televised by ESPN Sports Television Network (ESPN) were videotaped in October 1996. During the 15 televised games reviewed, 104 (6.8%) of the 1528 commercials contained violent content. Sixty-one commercials (10 per game) that included violent interactions were noted during the World Series, 30 (6 per game) during the American League Championship Series, and 13 (3 per game) during the 4 first-round playoff games for a total of 104. In these 104 violent commercials, 69 contained at least 1 violent act, 90 contained at least 1 violent threat, and 27 contained evidence of at least 1 violent consequence. Seventy (67.3%) of the violent commercials were promotions for television programs, 7 (6.7%) were cable television program advertisements, and 20 (19.2%) were big-screen movie promotions. Twenty (71.4%) of 28 big-screen movie promotions were violent. Twenty-two (21.2%) of the 104 violent commercials and 7 &quot;nonviolent&quot; commercials contained blood or other graphic content, all of which were televised during the Fox presentation of the World Series. Fox also accounted for all 24 violent commercials that used a knife. Guns were involved in 25 violent commercials on NBC (5.0 per game), in 20 on Fox (3.33 per game), and in 7 on ESPN (1.75 per game). Overt violent content in commercials during the 1996 major league playoffs was common and consisted mainly of promotions for television programs and big-screen movies. It is counterintuitive to find such commercials in nonviolent programming and makes it difficult for parents to avoid exposing their children to this form of violence."	"Paediatric nephrology on the threshold of European integration. The European Society for Paediatric Nephrology (ESPN) was founded 25 years ago. The progress of paediatric nephrology in Europe since then has been considerable, but we now face a number of problems. The care of the child with kidney disease is often expensive and more needs to be done to examine the cost effectiveness of the management of the child with kidney disease. International co-operation can also foster clinical research to determine the effectiveness of treatment through the institution of controlled trials and outcome studies. Particular problems are posed by the need to integrate the countries of Eastern Europe that have changed from command to market economies over the last year. In many instances there is no shortage of doctors, nurses and hospital beds but there is a need to change administrative and academic structures and to introduce appropriate technology. It is suggested that this may be assisted by twinning units. The integration of Europe requires that the role of the paediatric nephrologist in different countries needs to be examined, and appropriate training to fulfil these responsibilities needs to be agreed. Different countries obviously have different ways of organising and providing services for children with kidney disease. Kidney failure is rare in childhood and there are economic and academic advantages from close collaboration, both with adult nephrology services and with other paediatric specialities. Where it is intended to integrate children's hospitals into large multidisciplinary university hospitals for economic reasons, it is nonetheless necessary to make sure that the requirements of children are properly recognised and the requirements of the European Charter for children in hospital are met.(ABSTRACT TRUNCATED AT 250 WORDS)"	"[Electrostimulation of the phrenic nerves in neural resuscitation]. Electrostimulation of the phrenic nerves (ESPN) on the cervical level was conducted by the transcutaneous and direct methods in 30 neurosurgical patients in the postoperative period. Hypoventilation, hypoxemia, as well as microfocal pneumonia were relieved rapidly in 10 patients after transcutaneous ESPN. In 10 patients in whom the generally applied therapeutic measures proved ineffective, ESPN made it possible to cope with severe, rapidly progressing confluent pneumonia in the shortest time. The authors discuss the possibility of applying ESPN for restoration of spontaneous ventilation in central respiratory disorders (8 patients) and note the inefficacy of ESPN in pathological types of respiration and division of the phrenic nerve."	"Lesions of the cerebral midline. 9th scientific meeting of the European Society for Paediatric Neurosurgery (ESPN). October 10-13, 1984, Vienna. NA"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ESRRB"	"nonsyndromic genetic deafness"	"Spectrum of genetic variants in moderate to severe sporadic hearing loss in Pakistan. Hearing loss affects 380 million people worldwide due to environmental or genetic causes. Determining the cause of deafness in individuals without previous family history of hearing loss is challenging and has been relatively unexplored in Pakistan. We investigated the spectrum of genetic variants in hearing loss in a cohort of singleton affected individuals born to consanguineous parents. Twenty-one individuals with moderate to severe hearing loss were recruited. We performed whole-exome sequencing on DNA samples from the participants, which identified seventeen variants in ten known deafness genes and one novel candidate gene. All identified variants were homozygous except for two. Eleven of the variants were novel, including one multi-exonic homozygous deletion in OTOA. A missense variant in ESRRB was implicated for recessively inherited moderate to severe hearing loss. Two individuals were heterozygous for variants in MYO7A and CHD7, respectively, consistent with de novo variants or dominant inheritance with incomplete penetrance as the reason for their hearing loss. Our results indicate that similar to familial cases of deafness, variants in a large number of genes are responsible for moderate to severe hearing loss in sporadic individuals born to consanguineous couples."	"ESRRB regulates glucocorticoid gene expression in mice and patients with acute lymphoblastic leukemia. Synthetic glucocorticoids (GCs), such as dexamethasone and prednisone, remain key components of therapy for patients with lymphoid malignancies. For pediatric patients with acute lymphoblastic leukemia (ALL), response to GCs remains the most reliable prognostic indicator; failure to respond to GC correlates with poor event-free survival. To uncover GC resistance mechanisms, we performed a genome-wide, survival-based short hairpin RNA screen and identified the orphan nuclear receptor estrogen-related receptor-β (ESRRB) as a critical transcription factor that cooperates with the GC receptor (GR) to mediate the GC gene expression signature in mouse and human ALL cells. Esrrb knockdown interfered with the expression of genes that were induced and repressed by GR and resulted in GC resistance in vitro and in vivo. Dexamethasone treatment stimulated ESRRB binding to estrogen-related receptor elements (ERREs) in canonical GC-regulated genes, and H3K27Ac Hi-chromatin immunoprecipitation revealed increased interactions between GR- and ERRE-containing regulatory regions in dexamethasone-treated human T-ALL cells. Furthermore, ESRRB agonists enhanced GC target gene expression and synergized with dexamethasone to induce leukemic cell death, indicating that ESRRB agonists may overcome GC resistance in ALL, and potentially, in other lymphoid malignancies."	"Five transcriptional factors reprogram fibroblast into myogenic lineage cells via paraxial mesoderm stage. It is hard to supply satellite cells as a cell source for therapy of muscle degenerative disease since the sampling of muscle tissue is very invasive to a patient with muscular disease. Direct conversion allows us to get specific cell types by transduction of defined transcriptional factors. To induce myogenic direct conversion, we transduced five transcriptional factors including Pax3, Sox2, Klf4, c-Myc, and Esrrb into mouse embryonic fibroblasts. We found that the transduction of the five transcriptional factors induced myogenic direct conversion of fibroblast. We revealed that the transduced cells with the five transcriptional factors were converted to myogenic lineage cells through a paraxial mesoderm-like stage. The expression level of myogenic-related genes of the transduced cells gradually increased as the passage increased. The induced myogenic lineage cells differentiated into muscle fibers in virto and in vivo. The current study revealed that the five transcription factors generated myogenic lineage cells from fibroblast via a paraxial mesoderm stage. The induced myogenic lineage cells may have a potential being applied as cell source for degenerative muscle disease."	"TET family regulates the embryonic pluripotency of porcine preimplantation embryos by maintaining the DNA methylation level of NANOG. The ten-eleven translocation (TET) family (TET1/2/3) initiates conversion of 5-methylcytosine to 5-hydroxymethylcytosine, thereby orchestrating the DNA demethylation process and changes in epigenetic marks during early embryogenesis. In this study, CRISPR/Cas9 technology and a TET-specific inhibitor were applied to elucidate the role of TET family in regulating pluripotency in preimplantation embryos using porcine embryos as a model. Disruption of TET1 unexpectedly resulted in the upregulation of NANOG and ESRRB transcripts, although there was no change to the level of DNA methylation in the promoter of NANOG. Surprisingly, a threefold increase in the transcript level of TET3 was observed in blastocysts carrying modified TET1, which may explain the upregulation of NANOG and ESRRB. When the activity of TET enzymes was inhibited by dimethyloxalylglycine (DMOG) treatment, a dioxygenase inhibitor, to investigate the role of TET1 while eliminating the potential compensatory activation of TET3, reduced level of pluripotency genes including NANOG and ESRRB, and increased level of DNA methylation in the NANOG promoter was detected. Blastocysts treated with DMOG also presented a lower inner cell mass/TE ratio, implying the involvement of TET family in lineage specification in blastocysts. Our results indicate that the TET family modulates proper expression of NANOG, a key pluripotency marker, by controlling its DNA methylation profile in the promoter during embryogenesis. This study suggests that TET family is a critical component in pluripotency network of porcine embryos by regulating gene expression involved in pluripotency and early lineage specification."	"Long noncoding RNA Q associates with Sox2 and is involved in the maintenance of pluripotency in mouse embryonic stem cells. Large intergenic noncoding RNAs (lincRNAs) in ESCs may play an important role in the maintenance of pluripotency. The identification of stem cell-specific lincRNAs and their interacting partners will deepen our understanding of the maintenance of stem cell pluripotency. We identified a lincRNA, LincQ, which is specifically expressed in ESCs and is regulated by core pluripotent transcription factors. It was rapidly downregulated during the differentiation process. Knockdown of LincQ in ESCs led to differentiation, downregulation of pluripotency-related genes, and upregulation of differentiation-related genes. We found that exon 1 of LincQ can specifically bind to Sox2. The Soxp region in Sox2, rather than the high mobility group domain, is responsible for LincQ binding. Importantly, the interaction between LincQ and Sox2 is required for the maintenance of pluripotency in ESCs and the transcription of pluripotency genes. Esrrb and Tfcp2l1 are key downstream targets of LincQ and Sox2, since overexpression of Esrrb and Tfcp2l1 can restore the loss of ESC pluripotency that is induced by LincQ depletion. In summary, we found that LincQ specifically interacts with Sox2 and contributes to the maintenance of pluripotency, highlighting the critical role of lincRNA in the pluripotency regulatory network."	"The Transcription Factor OVOL2 Represses ID2 and Drives Differentiation of Trophoblast Stem Cells and Placental Development in Mice. Trophoblasts are the first cell type to be specified during embryogenesis, and they are essential for placental morphogenesis and function. Trophoblast stem (TS) cells are the progenitor cells for all trophoblast lineages; control of TS cell differentiation into distinct trophoblast subtypes is not well understood. Mice lacking the transcription factor OVO-like 2 (OVOL2) fail to produce a functioning placenta, and die around embryonic day 10.5, suggesting that OVOL2 may be critical for trophoblast development. Therefore, our objective was to determine the role of OVOL2 in mouse TS cell fate. We found that OVOL2 was highly expressed in mouse placenta and differentiating TS cells. Placentas and TS cells lacking OVOL2 showed poor trophoblast differentiation potential, including increased expression of stem-state associated genes (Eomes, Esrrb, Id2) and decreased levels of differentiation-associated transcripts (Gcm1, Tpbpa, Prl3b1, Syna). Ectopic OVOL2 expression in TS cells elicited precocious differentiation. OVOL2 bound proximate to the gene encoding inhibitor of differentiation 2 (ID2), a dominant negative helix-loop-helix protein, and directly repressed its activity. Overexpression of ID2 was sufficient to reinforce the TS cell stem state. Our findings reveal a critical role of OVOL2 as a regulator of TS cell differentiation and placental development, in-part by coordinating repression of ID2."	"Dynamic CpG methylation delineates subregions within super-enhancers selectively decommissioned at the exit from naive pluripotency. Clusters of enhancers, referred as to super-enhancers (SEs), control the expression of cell identity genes. The organisation of these clusters, and how they are remodelled upon developmental transitions remain poorly understood. Here, we report the existence of two types of enhancer units within SEs typified by distinctive CpG methylation dynamics in embryonic stem cells (ESCs). We find that these units are either prone for decommissioning or remain constitutively active in epiblast stem cells (EpiSCs), as further established in the peri-implantation epiblast in vivo. Mechanistically, we show a pivotal role for ESRRB in regulating the activity of ESC-specific enhancer units and propose that the developmentally regulated silencing of ESRRB triggers the selective inactivation of these units within SEs. Our study provides insights into the molecular events that follow the loss of ESRRB binding, and offers a mechanism by which the naive pluripotency transcriptional programme can be partially reset upon embryo implantation."	"Synthetic and genomic regulatory elements reveal aspects of cis-regulatory grammar in mouse embryonic stem cells. In embryonic stem cells (ESCs), a core transcription factor (TF) network establishes the gene expression program necessary for pluripotency. To address how interactions between four key TFs contribute to cis-regulation in mouse ESCs, we assayed two massively parallel reporter assay (MPRA) libraries composed of binding sites for SOX2, POU5F1 (OCT4), KLF4, and ESRRB. Comparisons between synthetic cis-regulatory elements and genomic sequences with comparable binding site configurations revealed some aspects of a regulatory grammar. The expression of synthetic elements is influenced by both the number and arrangement of binding sites. This grammar plays only a small role for genomic sequences, as the relative activities of genomic sequences are best explained by the predicted occupancy of binding sites, regardless of binding site identity and positioning. Our results suggest that the effects of transcription factor binding sites (TFBS) are influenced by the order and orientation of sites, but that in the genome the overall occupancy of TFs is the primary determinant of activity. Transcription factors are proteins that flip genetic switches; their role is to control when and where genes are active. They do this by binding to short stretches of DNA called cis-regulatory sequences. Each sequence can have several binding sites for different transcription factors, but it is largely unclear whether the transcription factors binding to the same regulatory sequence actually work together. It is possible that each transcription factor may work independently and there only needs to be critical mass of transcription factors bound to throw the genetic switch. If this is the case, the most important features of a cis-regulatory sequence should be the number of binding sites it contains, and how tightly the transcription factors bind to those sites. The more transcription factors and the more strongly they bind, the more active the gene should be. An alternative option is that certain transcription factors may work better together, enhancing each other's effects such that the total effect is more than the sum of its parts. If this is true, the order, orientation and spacing of the binding sites within a sequence should matter more than the number. One way to investigate to distinguish between these possibilities is to study mouse embryonic stem cells, which have a core set of four transcription factors. Looking directly at a real genome, however, can be confusing and it is difficult to measure the effects of different cis-regulatory sequences because genes differ in so many other ways. To tackle this problem, King et al. created a synthetic set of cis-regulatory sequences based on the four core transcription factors found in mouse stem cells. The synthetic set had every combination of two, three or four of the binding sites, with each site either facing forwards or backwards along the DNA strand. King et al. attached each of the synthetic cis-regulatory sequences to a reporter gene to find out how well each sequence performed. This revealed that the cis-regulatory sequences with the most binding sites and the tightest binding affinities work best, suggesting that transcription factors mainly work independently. There was evidence of some interaction between some transcription factors, because, of the synthetic sequences with four binding sites, some worked better than others, and there were patterns in the most effective binding site combinations. However, these effects were small and when King et al. went on to test sequences from the real mouse genome, the most important factor by far was the number of binding sites. Synthetic libraries of DNA sequences allow researchers to examine gene regulation more clearly than is possible in real genomes. Yet this approach does have its limitations and it is impossible to capture every type of cis-regulatory sequence in one library. The next step to extend this work is to combine the two approaches, taking sequences from the real genome and manipulating them one by one. This could help to unravel the rules that govern how cis-regulatory sequences work in real cells."	"A Novel Approach to Identify Enhancer lincRNAs by Integrating Genome, Epigenome, and Regulatome. LincRNAs enriched with high H3K4me1 and low H3K4me3 signals often have the enhancer-like features which are named as enhancer-associated lincRNAs (elincRNAs). ElincRNAs are considered to be indispensable for target gene transcription, which play important roles in development, signaling events, and even diseases. In this study, we developed a regularized regression model to identify elincRNAs by integrating the genomic, epigenomic, and regulatory data. Application of the proposed method to mouse ESCs reveals that besides the basic well-known epigenetic features H3K4me1 and H3K4me3, more specific epigenetic features, such as high DNA methylation, high H3K122ac, and H3K36me3 were contributed to mark elincRNAs with the best accuracy and precision. Finally, 3729 elincRNAs were identified in mouse ESCs. Furthermore, the elincRNAs and canonical lincRNAs exhibit distinct genomic features, and elincRNAs have the higher CGI enrichment and lower sequence conservation. Through the analysis of transcription regulation, we found that elincRNAs were significantly regulated by NANOG, POU5F1, SOX2 and ESRRB, and were involved in the core transcriptional regulatory circuitry controlling ES cell state Function enrichment analysis further discovered that elincRNAs tended to regulate specific embryonic development biological processes. These results indicated that these two types of lincRNAs had both specific epigenetic and transcriptional regulation mechanism and display distinct functional characters. In conclusion, we presented a credible computational model to prioritize novel elincRNAs, and depicted the atlas of elincRNAs in mouse ESCs, which would help dissect the function roles of lncRNAs during the mammalian development and diseases."	"Genetic architecture of Meniere's disease. Meniere's disease (MD) is a complex disorder of the inner ear that causes vertigo attacks, fluctuating sensorineural hearing loss (SNHL), tinnitus and aural fullness. MD has been attributed to an accumulation of endolymph in the cochlear duct. The diagnosis of MD is based on the phenomenological association of clinical symptoms and the demonstration of SNHL during the vertigo attacks. Several evidences support a genetic contribution to MD including differences in the prevalence according to the ethnic background and familial aggregation in European and Asian populations in multiplex families with autosomal dominant inheritance. The genetic underpinnings of MD may include some rare monogenic forms in isolated families and a polygenic contribution in most familial and sporadic cases. So, familial MD has been reported in 6-8% of sporadic cases and several genes have been described in single Familial MD including FAM136A, DTNA, PRKCB, SEMA3D and DPT, suggesting genetic heterogeneity. Multiplex rare missense variants in OTOG gene have been reported in 33% of familial MD, suggesting multiallelic inheritance. Moreover, the genetic landscape of sporadic MD is more complex and it involves multiplex rare variants in several SNHL genes such as GJB2, USH1G, SLC26A4, ESRRB, and CLDN14 and axonal-guidance signalling genes such as NTN4 and NOX3. This review summarizes evidence to support a genetic contribution in MD and the start of deciphering the genetic architecture to design and develop a molecular map of MD."	"Delineation of Homozygous Variants Associated with Prelingual Sensorineural Hearing Loss in Pakistani Families. Hearing loss is a genetically heterogeneous disorder affecting approximately 360 million people worldwide and is among the most common sensorineural disorders. Here, we report a genetic analysis of seven large consanguineous families segregating prelingual sensorineural hearing loss. Whole-exome sequencing (WES) revealed seven different pathogenic variants segregating with hearing loss in these families, three novel variants (c.1204G&gt;A, c.322G&gt;T, and c.5587C&gt;T) in TMPRSS3, ESRRB, and OTOF, and four previously reported variants (c.208C&gt;T, c.6371G&gt;A, c.226G&gt;A, and c.494C&gt;T) in LRTOMT, MYO15A, KCNE1, and LHFPL5, respectively. All identified variants had very low frequencies in the control databases and were predicted to have pathogenic effects on the encoded proteins. In addition to being familial, we also found intersibship locus heterogeneity in the evaluated families. The known pathogenic c.226C&gt;T variant identified in KCNE1 only segregates with the hearing loss phenotype in a subset of affected members of the family GCNF21. This study further highlights the challenges of identifying disease-causing variants for highly heterogeneous disorders and reports the identification of three novel and four previously reported variants in seven known deafness genes."	"The orphan nuclear receptor estrogen-related receptor beta (ERRβ) in triple-negative breast cancer. Triple-negative breast cancer (TNBC)/basal-like breast cancer (BLBC) is a highly aggressive form of breast cancer. We previously reported that a small molecule agonist ligand for the orphan nuclear receptor estrogen-related receptor beta (ERRβ or ESRRB) has growth inhibitory and anti-mitotic activity in TNBC cell lines. In this study, we evaluate the association of ESRRB mRNA, copy number levels, and protein expression with demographic, clinicopathological, and gene expression features in breast tumor clinical specimens. ESRRB mRNA-level expression and clinical associations were analyzed using RNAseq data. Array-based comparative genomic hybridization determined ESRRB copy number in African-American and Caucasian women. Transcription factor activity was measured using promoter-reporter luciferase assays in TNBC cell lines. Semi-automatic quantification of immunohistochemistry measured ERRβ protein expression on a 150-patient tissue microarray series. ESRRB mRNA expression is significantly lower in TNBC/BLBC versus other breast cancer subtypes. There is no evidence of ESRRB copy number loss. ESRRB mRNA expression is correlated with the expression of genes associated with neuroactive ligand-receptor interaction, metabolic pathways, and deafness. These genes contain G/C-rich transcription factor binding motifs. The ESRRB message is alternatively spliced into three isoforms, which we show have different transcription factor activity in basal-like versus other TNBC cell lines. We further show that the ERRβ2 and ERRβsf isoforms are broadly expressed in breast tumors at the protein level. Decreased ESRRB mRNA expression and distinct patterns of ERRβ isoform subcellular localization and transcription factor activity are key features in TNBC/BLBC."	"Obesogen effect of bisphenol S alters mRNA expression and DNA methylation profiling in male mouse liver. Environmental pollution is increasingly considered an important factor involved in the obesity incidence. Endocrine disruptors (EDs) are important actors in the concept of DOHaD (Developmental Origins of Health and Disease), where epigenetic mechanisms play crucial roles. Bisphenol A (BPA), a monomer used in the manufacture of plastics and resins is one of the most studied obesogenic endocrine disruptor. Bisphenol S (BPS), a BPA substitute, has the same obesogenic properties, acting at low doses with a sex-specific effect following perinatal exposure. Since the liver is a major organ in regulating body lipid homeostasis, we investigated gene expression and DNA methylation under low-dose BPS exposure. The BPS obesogenic effect was associated with an increase of hepatic triglyceride content. These physiological disturbances were accompanied by genome-wide changes in gene expression (1366 genes significantly modified more than 1.5-fold). Gene ontology analysis revealed alteration of gene cascades involved in protein translation and complement regulation. It was associated with hepatic DNA hypomethylation in autosomes and hypermethylation in sex chromosomes. Although no systematic correlation has been found between gene repression and hypermethylation, several genes related to liver metabolism were either hypermethylated (Acsl4, Gpr40, Cel, Pparδ, Abca6, Ces3a, Sgms2) or hypomethylated (Soga1, Gpihbp1, Nr1d2, Mlxipl, Rps6kb2, Esrrb, Thra, Cidec). In specific cases (Hapln4, ApoA4, Cidec, genes involved in lipid metabolism and liver fibrosis) mRNA upregulation was associated with hypomethylation. In conclusion, we show for the first time wide disruptive physiological effects of low-dose of BPS, which raises the question of its harmlessness as an industrial substitute for BPA."	"CTCF confers local nucleosome resiliency after DNA replication and during mitosis. The access of Transcription Factors (TFs) to their cognate DNA binding motifs requires a precise control over nucleosome positioning. This is especially important following DNA replication and during mitosis, both resulting in profound changes in nucleosome organization over TF binding regions. Using mouse Embryonic Stem (ES) cells, we show that the TF CTCF displaces nucleosomes from its binding site and locally organizes large and phased nucleosomal arrays, not only in interphase steady-state but also immediately after replication and during mitosis. Correlative analyses suggest this is associated with fast gene reactivation following replication and mitosis. While regions bound by other TFs (Oct4/Sox2), display major rearrangement, the post-replication and mitotic nucleosome positioning activity of CTCF is not unique: Esrrb binding regions are also characterized by persistent nucleosome positioning. Therefore, selected TFs such as CTCF and Esrrb act as resilient TFs governing the inheritance of nucleosome positioning at regulatory regions throughout the cell-cycle."	"Estrogen-related receptor β activation and isoform shifting by cdc2-like kinase inhibition restricts migration and intracranial tumor growth in glioblastoma. Glioblastoma (GBM; grade 4 glioma) is a highly aggressive and incurable tumor. GBM has recently been characterized as highly dependent on alternative splicing, a critical driver of tumor heterogeneity and plasticity. Estrogen-related receptor β (ERR-β) is an orphan nuclear receptor expressed in the brain, where alternative splicing of the 3' end of the pre-mRNA leads to the production of 3 validated ERR-β protein products: ERR-β short form (ERR-βsf), ERR-β2, and ERR-β exon 10 deleted. Our prior studies have shown the ERR-β2 isoform to play a role in G2/M cell cycle arrest and induction of apoptosis, in contrast to the function of the shorter ERR-βsf isoform in senescence and G1 cell cycle arrest. In this study, we sought to better define the role of the proapoptotic ERR-β2 isoform in GBM. We show that the ERR-β2 isoform is located not only in the nucleus but also in the cytoplasm. ERR-β2 suppresses GBM cell migration and interacts with the actin nucleation-promoting factor cortactin, and an ERR-β agonist is able to remodel the actin cytoskeleton and similarly suppress GBM cell migration. We further show that inhibition of the splicing regulatory cdc2-like kinases in combination with an ERR-β agonist shifts isoform expression in favor of ERR-β2 and potentiates inhibition of growth and migration in GBM cells and intracranial tumors.-Tiek, D. M., Khatib, S. A., Trepicchio, C. J., Heckler, M. M., Divekar, S. D., Sarkaria, J. N., Glasgow, E., Riggins, R. B. Estrogen-related receptor β activation and isoform shifting by cdc2-like kinase inhibition restricts migration and intracranial tumor growth in glioblastoma."	"The TCL1 function revisited focusing on metabolic requirements of stemness. The oncogenic ability of the T-cell leukemia/lymphoma 1 gene, TCL1, has captured the attention in the field of prolymphocytic T-cell and B-cell chronic leukemias for more than two decades. However, the finding that TCL1 is also expressed in totipotent cells of the mouse preimplantation embryos and that it is among the 10 genes, including the transcription factors Nanog, Oct4, Sox2, Tbx3, and Esrrb, that are required for maintaining the mitotic self-renewal state of embryonic stem cells, raises a great interest. In this review, we highlight newly acquired evidence pinpointing TCL1 as a crucial regulator of metabolic pathways that dictate somatic cell reprogramming toward pluripotency. In our opinion, this feature provides a relevant hint for reframing the role that this factor plays at early stages of mammalian embryo development and in tumorigenesis. Hence, the TCL1-dependent enhancement of serine/threonine AKT/PKB kinase activity favoring cell proliferation appears to be associated to the promotion of glucose transport and activation of glycolytic pathways. This is also consistent with the TCL1 ability to suppress mitochondrial biogenesis and oxygen consumption, downplaying the contribution of oxidative phosphorylation to energy metabolism. It thus appears that TCL1 masters the direction of energy metabolism toward the glycolytic pathway to meet a critical metabolic requirement that goes beyond the mere ATP production. For instance, the synthesis of glycolytic intermediates that are required for DNA synthesis likely represents the most pressing cellular need for both cleavage-stage embryos and rapidly proliferating tumor cells."	"TBX1 is required for normal stria vascularis and semicircular canal development. Little is known about the role of TBX1 in post-otocyst stages of inner ear development. Here, we report on mice with a missense mutation of Tbx1 that are viable with fully developed but abnormally formed inner ears. Mutant mice are deaf due to an undeveloped stria vascularis and show vestibular dysfunction associated with abnormal semicircular canal formation. We show that TBX1 is expressed in endolymph-producing strial marginal cells and vestibular dark cells of the inner ear and is an upstream regulator of Esrrb, which previously was shown to control the developmental fate of these cells. We also show that TBX1 is expressed in sensory cells of the crista ampullaris, which may relate to the semicircular canal abnormalities observed in mutant mice. Inner ears of mutant embryos have a non-resorbed fusion plate in the posterior semicircular canal and a single ampulla connecting anterior and lateral canals. We hypothesize that the TBX1 missense mutation prevents binding with specific co-regulatory proteins. These findings reveal previously unknown functions of TBX1 during later stages of inner ear development."	"Next-generation unnatural monosaccharides reveal that ESRRB O-GlcNAcylation regulates pluripotency of mouse embryonic stem cells. Unnatural monosaccharides such as azidosugars that can be metabolically incorporated into cellular glycans are currently used as a major tool for glycan imaging and glycoproteomic profiling. As a common practice to enhance membrane permeability and cellular uptake, the unnatural sugars are per-O-acetylated, which, however, can induce a long-overlooked side reaction, non-enzymatic S-glycosylation. Herein, we develop 1,3-di-esterified N-azidoacetylgalactosamine (GalNAz) as next-generation chemical reporters for metabolic glycan labeling. Both 1,3-di-O-acetylated GalNAz (1,3-Ac2GalNAz) and 1,3-di-O-propionylated GalNAz (1,3-Pr2GalNAz) exhibit high efficiency for labeling protein O-GlcNAcylation with no artificial S-glycosylation. Applying 1,3-Pr2GalNAz in mouse embryonic stem cells (mESCs), we identify ESRRB, a critical transcription factor for pluripotency, as an O-GlcNAcylated protein. We show that ESRRB O-GlcNAcylation is important for mESC self-renewal and pluripotency. Mechanistically, ESRRB is O-GlcNAcylated by O-GlcNAc transferase at serine 25, which stabilizes ESRRB, promotes its transcription activity and facilitates its interactions with two master pluripotency regulators, OCT4 and NANOG."	"Genetic basis of rotator cuff injury: a systematic review. Rotator cuff disease is a widespread musculoskeletal pathology and a major cause of shoulder pain. Studies on familial predisposition suggest that genetic plays a role in the pathogenesis of rotator cuff disease. Several genes are responsible for rotator cuff disease. The aim of this study was to perform a systematic review on genetic association between rotator cuff disease and genes variations. A systematic review of the literature was performed, in accordance with the PRISMA guidelines. PubMed, Medline, CINAHL, Cochrane, Embase and Google Scholar databases were searched comprehensively using the keywords: &quot;Rotator cuff&quot;, &quot;Gene&quot;, &quot;Genetic&quot;, &quot;Predisposition&quot;, &quot;Single-nucleotide polymorphism&quot; and &quot;Genome-wide association&quot;. 8 studies investigating genes variations associated with rotator cuff tears were included in this review. 6 studies were case-control studies on candidate genes and 2 studies were GWASs. A significant association between SNPs and rotator cuff disease was found for DEFB1, FGFR1, FGFR3, ESRRB, FGF10, MMP-1, TNC, FCRL3, SASH1, SAP30BP, rs71404070 located next to cadherin8. Contradictory results were reported for MMP-3. Further investigations are warranted to identify complete genetic profiles of rotator cuff disease and to clarify the complex interaction between genes, encoded proteins and environment. This may lead to individualized strategies for prevention and treatment of rotator cuff disease. Level IV, Systematic Review."	"Regulation of Cyclin E by transcription factors of the naïve pluripotency network in mouse embryonic stem cells. Continuous, non-cell cycle-dependent expression of cyclin E is a characteristic feature of mouse embryonic stem cells (mESCs). We studied the 5' regulatory region of Cyclin E, also known as Ccne1, and identified binding sites for transcription factors of the naïve pluripotency network, including Esrrb, Klf4, and Tfcp2l1 within 1 kilobase upstream of the transcription start site. Luciferase assay and chromatin immunoprecipitation-quantitative polymerase chain reaction (ChiP-qPCR) study highlighted one binding site for Esrrb that is essential to transcriptional activity of the promoter region, and three binding sites for Klf4 and Tfcp2l1. Knockdown of Esrrb, Klf4, and Tfcp2l1 reduced Cyclin E expression whereas overexpression of Esrrb and Klf4 increased it, indicating a strong correlation between the expression level of these factors and that of cyclin E. We observed that cyclin E overexpression delays differentiation induced by Esrrb depletion, suggesting that cyclin E is an important target of Esrrb for differentiation blockade. We observed that mESCs express a low level of miR-15a and that transfection of a miR-15a mimic decreases Cyclin E mRNA level. These results lead to the conclusion that the high expression level of Cyclin E in mESCs can be attributed to transcriptional activation by Esrrb as well as to the absence of its negative regulator, miR-15a."	"Effects of long-term feeding of rapeseed meal on skeletal muscle transcriptome, production efficiency and meat quality traits in Norwegian Landrace growing-finishing pigs. This study was performed to investigate the effects of dietary inclusion of 20% rapeseed meal (RSM) as an alternative to soybean meal (SBM) in a three-month feeding experiment with growing finishing pigs. Dietary alteration affected growth performance, several carcass traits and transcriptional responses in the skeletal muscle, but did not affect measured meat quality traits. In general, pigs fed the RSM test diet exhibited reduced growth performance compared to pigs on SBM control diet. Significant transcriptional changes in the skeletal muscle of growing pigs fed RSM diet were likely the consequence of an increased amount of fiber and higher polyunsaturated fatty acids, and presence of bioactive phytochemicals, such as glucosinolates. RNAseq pipeline using Tophat2-Cuffdiff identified 57 upregulated and 63 downregulated genes in RSM compared to SBM pigs. Significantly enriched among downregulated pathways was p53-mediated signalling involved in cellular proliferation, while activation of negative growth regulators (IER5, KLF10, BTG2, KLF11, RETREG1, PRUNE2) in RSM fed pigs provided further evidence for reduced proliferation and increased cellular death, in accordance with the observed reduction in performance traits. Upregulation of well-known metabolic controllers (PDK4, UCP3, ESRRG and ESRRB), involved in energy homeostasis (glucose and lipid metabolism, and mitochondrial function), suggested less available energy and nutrients in RSM pigs. Furthermore, several genes supported more pronounced proteolysis (ABTB1, OTUD1, PADI2, SPP1) and reduced protein synthesis (THBS1, HSF4, AP1S2) in RSM muscle tissue. In parallel, higher levels of NR4A3, PDK4 and FGF21, and a drop in adropin, ELOVL6 and CIDEC/FSP27 indicated increased lipolysis and fatty acid oxidation, reflective of lower dressing percentage. Finally, pigs exposed to RSM showed greater expression level of genes responsive to oxidative stress, indicated by upregulation of GPX1, GPX2, and TXNIP."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Esrrb function is required for proper primordial germ cell development in presomite stage mouse embryos. Estrogen related receptor beta (Esrrb) is an orphan nuclear receptor that is required for self-renewal and pluripotency in mouse embryonic stem (ES) cells. However, in the early post-implantation mouse embryo, Esrrb is specifically expressed in the extraembryonic ectoderm (ExE) and plays a crucial role in trophoblast development. Previous studies showed that Esrrb is also required to maintain trophoblast stem (TS) cells, the in vitro stem cell model of the early trophoblast lineage. In order to identify regulatory targets of Esrrb in vivo, we performed microarray analysis of Esrrb-null versus wild-type post-implantation ExE, and identified 30 genes down-regulated in Esrrb-mutants. Among them is Bmp4, which is produced by the ExE and known to be critical for primordial germ cell (PGC) specification in vivo. We further identified an enhancer region bound by Esrrb at the Bmp4 locus by performing Esrrb ChIP-seq and luciferase reporter assay using TS cells. Finally, we established a knockout mouse line in which the enhancer region was deleted using CRISPR/Cas9 technology. Both Esrrb-null embryos and enhancer knockout embryos expressed lower levels of Bmp4 in the ExE, and had reduced numbers of PGCs. These results suggested that Esrrb functions as an upstream factor of Bmp4 in the ExE, regulating proper PGC development in mice."	"Nuclear CD44 Mediated by Importin β Participated in Naïve Genes Transcriptional Regulation in C3A-iCSCs. CD44 is one of biomarkers of liver cancer stem cells (CSCs). The investigation of mechanism of CD44 translocation helps to uncover new molecular pathways participated in the regulation of various cellular processes in CSCs. In the present study, we observed the translocation of CD44 from cytoplasm to nuclear in the reprogramming process of C3A cells, full-length CD44 presented in the nucleus of liver iCSCs. CD44 was bound with importin β and transportin 1 in liver iCSCs. Inhibition of importin β transport leads to reduction of CD44 in the nucleus. Translocation of CD44 is also influenced by importin α. Besides, overexpression of naïve pluripotent genes, KLF2, KLF5, DNMT3L, GBX2, ZFP42, ESRRB and DPPA4 were found in liver iCSCs. Inhibition of CD44 leads to the reduction of these naïve genes. Luciferase and chromatin immunoprecipitation (ChIP) assays further identified nuclear CD44 bound to the promoter regions of naïve genes, KLF2, KLF5, and ESRRB functioned as transcriptional activators in liver iCSCs. Our present work provides new insight into the dynamic states and functions of CD44 in iCSCs."	"Do estrogens regulate lipid status in testicular steroidogenic Leydig cell? In this study mouse Leydig cell (MA-10) were treated with G-protein coupled membrane estrogen receptor antagonist (G-15; 10 nM). Cells were analyzed by Western blotting for expression of estrogen-related receptors (ERRα, β and γ), steroidogenic markers (lutropin receptor; LHR and 3β-hydroxysteroid dehydrogenase; 3β-HSD) and lipid droplet markers (perilipin; PLIN and microtubule-associated protein 1 A/1B-light chain 3; LC3). Concomitantly, microscopic analyses by light microscope (immunofluorescent staining for lipid droplets, PLIN and LC3) as well as by electron microscope (for lipid droplet ultrastructure) were utilized. For analysis of cholesterol content, cAMP level and progesterone secretion, G-15, estrogen receptor (ER) antagonist (ICI 182,780; 10 μM), 17β-estradiol (10 mM) and, bisphenol A (BPA; 10 nM) were used alone or in combinations. We revealed no changes in ERRs expression but alterations in ERRβ and γ localization in G-15-treated cells when compared to control. Partial translocation of ERRβ and γ from the cell nucleus to cytoplasm was observed. Decreased expression of LHR, 3β-HSD, PLIN and LC3 was detected. Moreover, in treated cells large lipid droplets and differences in their distribution were found. Very strong signal of co-localization for PLIN and LC3 was found in treated cells when compared to control. In ultrastructure of treated cells, degenerating lipid droplets and double membrane indicating on presence of lipophagosome were observed. We found, that only (i) BPA and G-15 did not effect on cholesterol content, (ii) BPA, G-15 and ICI did not effect on cAMP level and (iii) BPA, ICI alone and in combination, and BPA with G-15 did not modulate progesterone secretion. These findings showed complex and diverse estrogen effects on mouse Leydig cells at various steps of steroid hormone production (cholesterol storage, release and processing). Lipid homeostasis and metabolism in these cells were affected by endogenous and exogenous estrogen, interactions of receptors (GPER, ER and ERR) and GPER and ER antagonists."	"Epigenetic modulation of a hardwired 3D chromatin landscape in two naive states of pluripotency. The mechanisms underlying enhancer activation and the extent to which enhancer-promoter rewiring contributes to spatiotemporal gene expression are not well understood. Using integrative and time-resolved analyses we show that the extensive transcriptome and epigenome resetting during the conversion between 'serum' and '2i' states of mouse embryonic stem cells (ESCs) takes place with minimal enhancer-promoter rewiring that becomes more evident in primed-state pluripotency. Instead, differential gene expression is strongly linked to enhancer activation via H3K27ac. Conditional depletion of transcription factors and allele-specific enhancer analysis reveal an essential role for Esrrb in H3K27 acetylation and activation of 2i-specific enhancers. Restoration of a polymorphic ESRRB motif using CRISPR-Cas9 in a hybrid ESC line restores ESRRB binding and enhancer H3K27ac in an allele-specific manner but has no effect on chromatin interactions. Our study shows that enhancer activation in serum- and 2i-ESCs is largely driven by transcription factor binding and epigenetic marking in a hardwired network of chromatin interactions."	"Direct Induction of the Three Pre-implantation Blastocyst Cell Types from Fibroblasts. Following fertilization, totipotent cells undergo asymmetric cell divisions, resulting in three distinct cell types in the late pre-implantation blastocyst: epiblast (Epi), primitive endoderm (PrE), and trophectoderm (TE). Here, we aim to understand whether these three cell types can be induced from fibroblasts by one combination of transcription factors. By utilizing a sophisticated fluorescent knockin reporter system, we identified a combination of five transcription factors, Gata3, Eomes, Tfap2c, Myc, and Esrrb, that can reprogram fibroblasts into induced pluripotent stem cells (iPSCs), induced trophoblast stem cells (iTSCs), and induced extraembryonic endoderm stem cells (iXENs), concomitantly. In-depth transcriptomic, chromatin, and epigenetic analyses provide insights into the molecular mechanisms that underlie the reprogramming process toward the three cell types. Mechanistically, we show that the interplay between Esrrb and Eomes during the reprogramming process determines cell fate, where high levels of Esrrb induce a XEN-like state that drives pluripotency and high levels of Eomes drive trophectodermal fate."	"Wnt3a Activates the WNT-YAP/TAZ Pathway to Sustain CDX2 Expression in Bovine Trophoblast Stem Cells. Trophoblast stem cells (TSCs), the precursors of placental cells, are effective for studying placental formation in vitro. Using a dual inhibition (2i) medium and mixed L-Wnt3a/mouse embryonic fibroblast feeder cells, we previously established the bovine trophoblast cell line BTS-1. In this study, we used bovine fetal fibroblasts and added Wnt3a to the 2i medium to establish another bovine TSC line (BTSW). BTSW cells expressed pluripotency markers, including NANOG, SOX2, OCT4, TRA-1-60, TRA-1-81, SSEA4, CDH1, and KRT18, and TSC markers CDX2, TEAD4, and ESRRB. Methylation sequencing of the promoter regions of NANOG, OCT4, and CDX2 revealed no significant differences between BTS-1 and BTSW cells. Removal of Wnt3a from the culture medium resulted in downregulation (p &lt; 0.05) of NANOG, OCT4, CDX2, and TSC marker genes, and upregulation of TSC differentiation markers, including MASH2, GCM1, and PAG. Western blotting indicated activation of the WNT-YAP/TAZ signaling pathway in BTS-1 and BTSW cells, consequently activating TEAD4 transcription. However, this pathway was not activated in BCFF cells, an established bovine embryonic stem-like cell line that expresses OCT4, SOX2, and NANOG, but not CDX2. Thus, Wnt3a may play a critical role in bovine TSC maintenance by activating and regulating CDX2 expression through the WNT-YAP/TAZ signaling pathway."	"Excess of Rare Missense Variants in Hearing Loss Genes in Sporadic Meniere Disease. Meniere's disease (MD) is a clinical spectrum of rare disorders characterized by vertigo attacks, associated with sensorineural hearing loss (SNHL) and tinnitus involving low to medium frequencies. Although it shows familial aggregation with incomplete phenotypic forms and variable expressivity, most cases are considered sporadic. The aim of this study was to investigate the burden for rare variation in SNHL genes in patients with sporadic MD. We conducted a targeted-sequencing study including SNHL and familial MD genes in 890 MD patients to compare the frequency of rare variants in cases using three independent public datasets as controls. Patients with sporadic MD showed a significant enrichment of missense variants in SNHL genes that was not found in the controls. The list of genes includes GJB2, USH1G, SLC26A4, ESRRB, and CLDN14. A rare synonymous variant with unknown significance was found in the MARVELD2 gene in several unrelated patients with MD. There is a burden of rare variation in certain SNHL genes in sporadic MD. Furthermore, the interaction of common and rare variants in SNHL genes may have an additive effect on MD phenotype. This study will contribute to design a gene panel for the genetic diagnosis of MD."	"The transcription factor TFCP2L1 induces expression of distinct target genes and promotes self-renewal of mouse and human embryonic stem cells. TFCP2L1 (transcription factor CP2-like 1) is a transcriptional regulator critical for maintaining mouse and human embryonic stem cell (ESC) pluripotency. However, the direct TFCP2L1 target genes are uncharacterized. Here, using gene overexpression, immunoblotting, quantitative real-time PCR, ChIP, and reporter gene assays, we show that TFCP2L1 primarily induces estrogen-related receptor β (Esrrb) expression that supports mouse ESC identity and also selectively enhances Kruppel-like factor 4 (Klf4) expression and thereby promotes human ESC self-renewal. Specifically, we found that in mouse ESCs, TFCP2L1 binds directly to the Esrrb gene promoter and regulates its transcription. Esrrb knockdown impaired Tfcp2l1's ability to induce interleukin 6 family cytokine (leukemia inhibitory factor)-independent ESC self-renewal and to reprogram epiblast stem cells to naïve pluripotency. Conversely, Esrrb overexpression blocked differentiation induced by Tfcp2l1 down-regulation. Moreover, we identified Klf4 as a direct TFCP2L1 target in human ESCs, bypassing the requirement for activin A and basic fibroblast growth factor in short-term human ESC self-renewal. Enforced Klf4 expression recapitulated the self-renewal-promoting effect of Tfcp2l1, whereas Klf4 knockdown eliminated these effects and caused loss of colony-forming capability. These findings indicate that TFCP2L1 functions differently in naïve and primed pluripotency, insights that may help elucidate the different states of pluripotency."	"Folliculin regulates mTORC1/2 and WNT pathways in early human pluripotency. To reveal how cells exit human pluripotency, we designed a CRISPR-Cas9 screen exploiting the metabolic and epigenetic differences between naïve and primed pluripotent cells. We identify the tumor suppressor, Folliculin(FLCN) as a critical gene required for the exit from human pluripotency. Here we show that FLCN Knock-out (KO) hESCs maintain the naïve pluripotent state but cannot exit the state since the critical transcription factor TFE3 remains active in the nucleus. TFE3 targets up-regulated in FLCN KO exit assay are members of Wnt pathway and ESRRB. Treatment of FLCN KO hESC with a Wnt inhibitor, but not ESRRB/FLCN double mutant, rescues the cells, allowing the exit from the naïve state. Using co-immunoprecipitation and mass spectrometry analysis we identify unique FLCN binding partners. The interactions of FLCN with components of the mTOR pathway (mTORC1 and mTORC2) reveal a mechanism of FLCN function during exit from naïve pluripotency."	"Transcription factor activity and nucleosome organization in mitosis. Mitotic bookmarking transcription factors (BFs) maintain the capacity to bind to their targets during mitosis, despite major rearrangements of the chromatin. While they were thought to propagate gene regulatory information through mitosis by statically occupying their DNA targets, it has recently become clear that BFs are highly dynamic in mitotic cells. This represents both a technical and a conceptual challenge to study and understand the function of BFs: First, formaldehyde has been suggested to be unable to efficiently capture these transient interactions, leading to profound contradictions in the literature; and second, if BFs are not permanently bound to their targets during mitosis, it becomes unclear how they convey regulatory information to daughter cells. Here, comparing formaldehyde to alternative fixatives we clarify the nature of the chromosomal association of previously proposed BFs in embryonic stem cells: While ESRRB can be considered as a canonical BF that binds at selected regulatory regions in mitosis, SOX2 and POU5F1 (also known as OCT4) establish DNA sequence-independent interactions with the mitotic chromosomes, either throughout the chromosomal arms (SOX2) or at pericentromeric regions (POU5F1). Moreover, we show that ordered nucleosomal arrays are retained during mitosis at ESRRB bookmarked sites, whereas regions losing transcription factor binding display a profound loss of order. By maintaining nucleosome positioning during mitosis, ESRRB might ensure the rapid post-mitotic re-establishment of functional regulatory complexes at selected enhancers and promoters. Our results provide a mechanistic framework that reconciles dynamic mitotic binding with the transmission of gene regulatory information across cell division."	"Molecular network of miR-1343 regulates the pluripotency of porcine pluripotent stem cells via repressing OTX2 expression. Porcine OTX2 was found to be highly activated in porcine iPS cells (piPSCs) that were reported by different laboratories worldwide. To reveal the regulatory function of OTX2 in porcine reprogrammed cells, we screened porcine miRNA-seq databases and found two miRNAs, miR-1343 and miR-545, that could specifically bind to 3'UTR of OTX2 and suppress endogenous OTX2 expression in piPSCs. Knockdown of OTX2 by miR-1343 and miR-545 could significantly increase the expression of SOX2 and ESRRB, but did not alter the expressions of OCT4 and KLF4, and improve the pluripotency of piPSCs. The promoter-based assays showed that OTX2 potentially bound to the promoter region of SOX2 and ESRRB and suppressed their expression. On the other hand, SOX2 could interact with OTX2 promoter. Ectopic expression of SOX2 could significantly decrease OTX2 promoter activity, showing that there is a negative feedback loop between SOX2 and OTX2. Additionally, SOX2 and ESRRB significantly stimulated miR-1343 expression in piPSCs, but OTX2 down regulated the expression of miR-1343 in either direct or indirect manners. In summary, this study demonstrates that there is a regulatory network mediated by miR-1343, in which downregulation of OTX2 by miR-1343 can elevate the expression of pluripotent genes that were then sustain the pluripotency of piPSCs."	"Estrogen receptor gene is associated with dental fluorosis in Brazilian children. The aim of this study was investigate the association between genetic polymorphisms in ESR1, ESR2, and ESRRB and dental fluorosis (DF) in a well-characterized sample of children from Curitiba, Brazil. From a representative sample of 538 children, 12-year-old were evaluated. DF was assessed in erupted permanent teeth by the Dean's index modified. Fourteen polymorphisms were selected in intronic and intergenic regions of ESR1, ESR2, and ESRRB and genotyped in genomic DNA source from saliva using TaqMan chemistry and end-point analysis. Allele and genotype distributions between DF and DF free groups were analyzed using the Epi Info 7.2. Chi-square or Fisher's exact tests at a level of significance of 5% and odds ratios calculations with 95% confidence intervals were used to determine the statistical associations. Among 538 children, 147 were DF and 391 were DF free. Genotype distribution for the polymorphism rs12154178 in ESR1 was different between the two groups (p = 0.037; OR = 0.91; CI = 0.67-1.22). The dominant model analysis (AA+AC vs. CC) demonstrated that CC is a protective factor for DF (p = 0.038; OR = 0.51, 0.27-0.97 95% CI). We did not find differences in frequency distributions in the other evaluated polymorphisms. This study provides evidence that ESR1 is associated with DF. Dental fluorosis is an important condition that affects the mineralized tissues of the teeth. In severe cases, the treatment takes time and is extremely costly. This research provides evidences that there are genetic factors involved in dental fluorosis and will help professionals to plan more precise strategies to reduce dental fluorosis occurrence."	"Promoter-Enhancer Communication Occurs Primarily within Insulated Neighborhoods. Metazoan chromosomes are sequentially partitioned into topologically associating domains (TADs) and then into smaller sub-domains. One class of sub-domains, insulated neighborhoods, are proposed to spatially sequester and insulate the enclosed genes through self-association and chromatin looping. However, it has not been determined functionally whether promoter-enhancer interactions and gene regulation are broadly restricted to within these loops. Here, we employed published datasets from murine embryonic stem cells (mESCs) to identify insulated neighborhoods that confine promoter-enhancer interactions and demarcate gene regulatory regions. To directly address the functionality of these regions, we depleted estrogen-related receptor β (Esrrb), which binds the Mediator co-activator complex, to impair enhancers of genes within 222 insulated neighborhoods without causing mESC differentiation. Esrrb depletion reduces Mediator binding, promoter-enhancer looping, and expression of both nascent RNA and mRNA within the insulated neighborhoods without significantly affecting the flanking genes. Our data indicate that insulated neighborhoods represent functional regulons in mammalian genomes."	"Esrrb Unlocks Silenced Enhancers for Reprogramming to Naive Pluripotency. NA"	"Establishment of stably expandable induced myogenic stem cells by four transcription factors. Life-long regeneration of healthy muscle by cell transplantation is an ideal therapy for patients with degenerative muscle diseases. Yet, obtaining muscle stem cells from patients is very limited due to their exhaustion in disease condition. Thus, development of a method to obtain healthy myogenic stem cells is required. Here, we showed that the four transcription factors, Six1, Eya1, Esrrb, and Pax3, converts fibroblasts into induced myogenic stem cells (iMSCs). The iMSCs showed effective differentiation into multinucleated myotubes and also higher proliferation capacity than muscle derived stem cells both in vitro and in vivo. The iMSCs do not lose their proliferation capacity though the passaging number is increased. We further isolated CD106-negative and α7-integrin-positive iMSCs (sort-iMSCs) showing higher myogenic differentiation capacity than iMSCs. Moreover, genome-wide transcriptomic analysis of iMSCs and sort-iMSCs, followed by network analysis, revealed the genes and signaling pathways associated with enhanced proliferation and differentiation capacity of iMSCs and sort-iMSCs, respectively. The stably expandable iMSCs provide a new source for drug screening and muscle regenerative therapy for muscle wasting disease."	"Esrrb plays important roles in maintaining self-renewal of trophoblast stem cells (TSCs) and reprogramming somatic cells to induced TSCs. Trophoblast stem cells (TSCs), which can be derived from the trophoectoderm of a blastocyst, have the ability to sustain self-renewal and differentiate into various placental trophoblast cell types. Meanwhile, essential insights into the molecular mechanisms controlling the placental development can be gained by using TSCs as the cell model. Esrrb is a transcription factor that has been shown to play pivotal roles in both embryonic stem cell (ESC) and TSC, but the precise mechanism whereby Esrrb regulates TSC-specific transcriptome during differentiation and reprogramming is still largely unknown. In the present study, we elucidate the function of Esrrb in self-renewal and differentiation of TSCs, as well as during the induced TSC (iTSC) reprogramming. We demonstrate that the precise level of Esrrb is critical for stem state maintenance and further trophoblast differentiation of TSCs, as ectopically expressed Esrrb can partially block the rapid differentiation of TSCs in the absence of fibroblast growth factor 4. However, Esrrb depletion results in downregulation of certain key TSC-specific transcription factors, consequently causing a rapid differentiation of TSCs and these Esrrb-deficient TSCs lose the ability of hemorrhagic lesion formation in vivo. This function of Esrrb is exerted by directly binding and activating a core set of TSC-specific target genes including Cdx2, Eomes, Sox2, Fgfr4, and Bmp4. Furthermore, we show that Esrrb overexpression can facilitate the MEF-to-iTSC conversion. Moreover, Esrrb can substitute for Eomes to generate GEsTM-iTSCs. Thus, our findings provide a better understanding of the molecular mechanism of Esrrb in maintaining TSC self-renewal and during iTSC reprogramming."	"Genome-wide association study identifies two risk loci for tuberculosis in Han Chinese. Tuberculosis (TB) is an infectious disease caused by Mycobacterium tuberculosis (Mtb), and remains a leading public health problem. Previous studies have identified host genetic factors that contribute to Mtb infection outcomes. However, much of the heritability in TB remains unaccounted for and additional susceptibility loci most likely exist. We perform a multistage genome-wide association study on 2949 pulmonary TB patients and 5090 healthy controls (833 cases and 1220 controls were genome-wide genotyped) from Han Chinese population. We discover two risk loci: 14q24.3 (rs12437118, Pcombined = 1.72 × 10<sup>-11</sup>, OR = 1.277, ESRRB) and 20p13 (rs6114027, Pcombined = 2.37 × 10<sup>-11</sup>, OR = 1.339, TGM6). Moreover, we determine that the rs6114027 risk allele is related to decreased TGM6 transcripts in PBMCs from pulmonary TB patients and severer pulmonary TB disease. Furthermore, we find that tgm6-deficient mice are more susceptible to Mtb infection. Our results provide new insights into the genetic etiology of TB."	"Esrrb extinction triggers dismantling of naïve pluripotency and marks commitment to differentiation. Self-renewal of embryonic stem cells (ESCs) cultured in LIF/fetal calf serum (FCS) is incomplete with some cells initiating differentiation. While this is reflected in heterogeneous expression of naive pluripotency transcription factors (TFs), the link between TF heterogeneity and differentiation is not fully understood. Here, we purify ESCs with distinct TF expression levels from LIF/FCS cultures to uncover early events during commitment from naïve pluripotency. ESCs carrying fluorescent Nanog and Esrrb reporters show Esrrb downregulation only in Nanog<sup>low</sup> cells. Independent Esrrb reporter lines demonstrate that Esrrb<sup>negative</sup> ESCs cannot effectively self-renew. Upon Esrrb loss, pre-implantation pluripotency gene expression collapses. ChIP-Seq identifies different regulatory element classes that bind both OCT4 and NANOG in Esrrb<sup>positive</sup> cells. Class I elements lose NANOG and OCT4 binding in Esrrb<sup>negative</sup> ESCs and associate with genes expressed preferentially in naïve ESCs. In contrast, Class II elements retain OCT4 but not NANOG binding in ESRRB-negative cells and associate with more broadly expressed genes. Therefore, mechanistic differences in TF function act cumulatively to restrict potency during exit from naïve pluripotency."	"A CRISPR/Cas9 platform for MS2-labelling of single mRNA in live stem cells. The MS2 system is a powerful tool for investigating transcription dynamics at the single molecule directly in live cells. In the past, insertion of the RNA-labelling cassette at specific gene loci has been a major hurdle. Here, we present a CRISPR/Cas9-based approach to insert an MS2 cassette with selectable marker at the start of the 3' untranslated region of any coding gene. We demonstrate applicability of our approach by tagging RNA of the stem cell transcription factor Esrrb in mouse embryonic stem cells. Using quantitative fluorescence microscopy we determine the number of nascent transcripts at the Esrrb locus and the fraction of cells expressing the gene. We find that upon differentiation towards epiblast-like cells, expression of Esrrb is down-regulated in an increasing fraction of cells in a binary manner."	"Prediction of novel pluripotent proteins involved in reprogramming of male Germline stem cells (GSCs) into multipotent adult Germline stem cells (maGSCs) by network analysis. Germline stem cells (GSCs) are known to transmit genetic information from parents to offspring. These GSCs can undergo reprogramming to transform themselves into pluripotent stem cells, called as Multipotent adult Germline stem cells (maGSCs). The mechanism of the reprogramming of GSCs to maGSCs is elusive. To investigate novel factors that may govern the process of reprogramming, the RNA-seq data of both GSCs and maGSCs were retrieved and subjected to Tuxedo protocol using Galaxy server. Total 1558 differentially expressed genes were identified from the analysis. Protein sequence in the FASTA format of all 1558 differentially expressed genes was retrieved and submitted to Pluripred web server to predict whether the proteins were pluripotent or not. A total of 232 proteins were predicted as pluripotent, and to identify the novel proteins, these were submitted to STRING database to obtain an interaction map. The obtained interaction map was submitted to Cytoscape, and various apps such as MCODE and Centiscape were used to identify the clusters and centrality measures between the nodes of the generated network. Five clusters were identified and ranked according to their score. Novel pluripotent proteins like cadherin related cdh5, cdh10 were predicted. Phox2b, Nrp2, Dll1, Shh, Gbx2, Nodal, Lefty1, Wnt7b, Pitx2, fgf4, Pou5f1, Nanog, Tet1, trim8, alx2, Dppa2, Prdm14,Sox11, Esrrb were predicted to be involved in the stem cell development. Dppa2, Sox11, Sox2, Bmp4, Shh, and Otp were predicted to be involved in positive regulation of the stem cell proliferation. Pathway analysis further revealed that signaling pathways such as Wnt, Jak-Stat and PI3K may play important role in the pluripotency of the maGSCs. Novel proteins involved in pluripotency, which were predicted by our findings, can be experimentally researched in future."	"Pioneering of Enhancer Landscapes during Pluripotent State Transitions. The transitions between different pluripotency states are regulated by large changes in enhancer landscapes. Two publications in this issue of Cell Stem Cell suggest that the pioneering and subsequent activation of silent enhancers by transcription factors (i.e., ESRRB and GRHL2) is a crucial event during these transitions (Adachi et al., 2018; Chen et al., 2018)."	"Exploring Confluence-Related Signalling to Modulate the Expression of Oct4 - A Role in Facilitating Mouse Somatic Cell Reprogramming? Oct4 is uniformly expressed by all types of pluripotent cells and is essential for pluripotency. Oct4 is also the central reprogramming factor that is constant in most transcription factor cocktails used to generate iPS cells. This article discusses the mechanisms of regulating Oct4 expression by confluence-based Hgf and hypoxia signalling in mouse somatic cells. Stat3 is activated ligandindependently in confluent cells and triggers the formation of cell aggregates. Hgf signalling is preserved after confluence, stimulating β-catenin and Stat3 activity, which are both crucial for Oct4 transcription. Stat3 and β-catenin activities also help sustain cell survival and proliferation, resulting in the formation of cell spheres. Hypoxic conditions in spheres activate regulators of Oct4 and further induce Oct4 expression. Activation of the Oct4 gene depends on nuclear receptors Lrh1/SF1, Esrrb, and Rars. These interact synergistically to initiate Oct4 transcription through organizing a transcriptional initiation complex. cAMP signalling stimulates the production of the SF1/Lrh1 ligand. Esrrb agonist or estrogen might function in activating Esrrb, while Rars might be induced by hypoxia. Taken together, Oct4 expression is probably induced in mouse somatic cells by culturing post-confluence cells with media containing Hgf, Esrrb agonist, and cAMP agonist. Exploring confluence-related signalling to modulate the expression of Oct4 might be helpful in finding novel strategies for reprogramming somatic cells."	"[AICAR-Dependent Activation of AMPK Kinase Is Not Accompanied by G1/S Block in Mouse Embryonic Stem Cells]. Embryonic stem cells (ESCs) have the capacity for self-renewal and pluripotency. Due to high proliferative activity, ESCs use a specific pathway of the formation of ATP molecules, which can lead to the development of the adaptive metabolic response under the conditions of energy deficiency (which is different from the response of differentiated cells). It is known that metabolic signals are integrated with the cell cycle progression; however, the signaling pathways that connect the availability of nutrients with the regulation of cell cycle in ESCs are insufficiently studied. We have studied the effect of the AICAR agent, which imitates an increase in AMP level and induces the activation of the metabolic sensor AMPK, on proliferation, cell cycle distribution, and pluripotency of mouse ESCs (mESCs). It has been demonstrated that cells treated with AICAR do not stop at the control G1/S point of the cell cycle, since they do not accumulate P21/WAF1 (G1/S checkpoint regulator), despite P53 activation. On the contrary, AICAR increases the rate of mESC proliferation, which correlates with increased expression of pluripotency marker genes (OCT3/4, NANOG, SOX2, KLF4, ESRRB, PRDM14). In addition, an increase in the transcription of the HIFlα gene (a key regulator of the cell proliferation and viability, as well as glucose metabolism under stress) was detected. An increase in the expression of glycolytic enzyme genes (LDHA, ALDOA, PCK2, GLUT4) under the effect of AICAR indicates a change in mESC metabolism towards increased glycolysis. Thus, AICAR-dependent AMPK activation as one of possible mechanisms of the mESC adaptive response to the emergence of energetic imbalance is not accompanied by a cell cycle arrest at the G1/S checkpoint, but involves the processes of increasing glycolytic activity."	"Estrogen-related receptors alpha, beta and gamma expression and function is associated with transcriptional repressor EZH2 in breast carcinoma. Orphan nuclear receptors ERRα, ERRβ and ERRγ that belong to NR3B or type IV nuclear receptor family are well studied for their role in breast cancer pathophysiology. Their homology with the canonical estrogen receptor dictates their possible contributing role in mammary gland development and disease. Although function and regulation of ERRα, ERRγ and less about ERRβ is reported, role of histone methylation in their altered expression in cancer cells is not studied. Transcriptional activity of nuclear receptors depends on co-regulatory proteins. The present study for the first time gives an insight into regulation of estrogen-related receptors by histone methylation specifically through methyltransferase EZH2 in breast cancer. Expression of ERRα, ERRβ, ERRγ and EZH2 was assessed by immunohistochemistry in four identical tissue array slides that were prepared as per the protocol. The array slides were stained with ERRα, ERRβ, ERRγ and EZH2 simultaneously. Array data was correlated with expression in MERAV expression dataset. Pearson correlation coeficient r was calculated from the partial matrix expression values available at MERAV database to study the strength of association between EZH2 and three orphan nuclear receptors under study. By western blot and real time PCR, their correlated expression was studied in breast cancer cell lines MCF-7, MDA-MB-231, T47D and MDA-MB-453 including normal breast epithelial MCF-10A cells at both protein and RNA level. Regulation of ERRα, ERRβ, ERRγ by EZH2 was further investigated upon overexpression and silencing of EZH2. The interaction between ERRs and EZH2 was validated in vivo by CHIP-qPCR. We found a negative correlation between estrogen-related receptors and Enhancer of Zeste Homolog 2, a global repressor gene. Immunohistochemistry in primary breast tumors of different grades showed a correlated expression of estrogen-related receptors and EZH2. Their correlated expression was further validated using online MERAV expression dataset where a negative correlation of variable strengths was observed in breast cancer. Ectopic expression of EZH2 in low EZH2-expressing normal breast epithelial cells abrogated their expression and at the same time, its silencing enhanced the expression of estrogen-related receptors in cancerous cells. Global occupancy of EZH2 on ERRα and ERRβ was observed in-vivo. Our findings identify EZH2 as a relevant coregulator for estrogen-related receptors in breast carcinoma."	"Low-fat diet, and medium-fat diets containing coconut oil and soybean oil exert different metabolic effects in untrained and treadmill-trained mice. Diets containing fats of different proportions and types have been demonstrated to influence metabolism. These fats differ in long chain fatty acids (LCFAs) or medium chain fatty acids (MCFAs) content. In our laboratory using swimming as the training modality, MCFAs increased endurance attributed to increased activities of oxidative enzymes. How it affects whole-body metabolism remains unexplored. The present study investigated the metabolic, biochemical and genetic adaptations with treadmill running as the training modality. C57BL/6N mice were divided into untrained and trained groups and provided with low-fat (10% kcal from soybean oil), coconut oil (10% kcal from soybean oil, 20% kcal from coconut oil) or soybean oil (30% kcal from soybean oil) diet. Training was performed on a treadmill for 30 days. After recovery, whole-body metabolism at rest and during exercise, endurance, substrate metabolism, mitochondrial enzyme activities, and gene expression of training-adaptive genes in the muscle and liver were measured. At rest, medium-fat diets decreased respiratory exchange ratio (RER) (p &lt; 0.05). Training increased RER in all diet groups without affecting oxygen consumption (p &lt; 0.05). During exercise, diets had no overt effects on metabolism while training decreased oxygen consumption indicating decreased energy expenditure (p &lt; 0.05). Coconut oil without training improved endurance based on work (p &lt; 0.05). Training improved all endurance parameters without overt effects of diet (p &lt; 0.05). Moreover, training increased the activities of mitochondrial enzymes likely related to the increased expression of estrogen related receptor (ERR) α and ERRβ (p &lt; 0.05). Coconut oil inhibited peroxisome proliferator-activated receptor (PPAR) β/δ activation and glycogen accumulation in the muscle but activated PPARα in the liver in the trained state (p &lt; 0.05). Substrate utilization data suggested that coconut oil and/or resulting ketone bodies spared glycogen utilization in the trained muscle during exercise thereby preserving endurance. Our data demonstrated the various roles of diet and fat types in training adaptation. Diets exerted different roles in PPAR activation and substrate handling in the context of endurance exercise training. However, the role of fat types in training adaptations is limited as training overwhelms and normalizes the effects of diet in the untrained state particularly on endurance performance, mitochondrial biogenesis, and ERR expression."	"Esrrb Unlocks Silenced Enhancers for Reprogramming to Naive Pluripotency. Transcription factor (TF)-mediated reprogramming to pluripotency is a slow and inefficient process, because most pluripotency TFs fail to access relevant target sites in a refractory chromatin environment. It is still unclear how TFs actually orchestrate the opening of repressive chromatin during the long latency period of reprogramming. Here, we show that the orphan nuclear receptor Esrrb plays a pioneering role in recruiting the core pluripotency factors Oct4, Sox2, and Nanog to inactive enhancers in closed chromatin during the reprogramming of epiblast stem cells. Esrrb binds to silenced enhancers containing stable nucleosomes and hypermethylated DNA, which are inaccessible to the core factors. Esrrb binding is accompanied by local loss of DNA methylation, LIF-dependent engagement of p300, and nucleosome displacement, leading to the recruitment of core factors within approximately 2 days. These results suggest that TFs can drive rapid remodeling of the local chromatin structure, highlighting the remarkable plasticity of stable epigenetic information."	"Toxicity and non-harmful effects of the soya isoflavones, genistein and daidzein, in embryos of the zebrafish, Danio rerio. Based on the assumed oestrogenic and apoptotic properties of soya isoflavones (genistein, daidzein), and following the current OECD test-guidelines and principle of 3Rs, we have studied the potential toxicity of phytochemicals on the zebrafish embryos test (ZFET). For this purpose, zebrafish embryos at 2-3 h post-fertilisation (hpf) were exposed to both soya isoflavones (from 1.25 mg/L to 20 mg/L) and assayed until 96 hpf. Lethal and sub-lethal endpoints (mortality, hatching rates and malformations) were estimated in the ZFET, which was expanded to potential gene expression markers, determining the lowest observed effect (and transcriptional) concentrations (LOEC, LOTEC), and the no-observable effect (and transcriptional) concentrations (NOEC, NOTEC). The results revealed that genistein is more toxic (LC50-96 hpf: 4.41 mg/L) than daidzein (over 65.15 mg/L). Both isoflavones up-regulated the oestrogen (esrrb) and death receptors (fas) and cyp1a transcript levels. Most thyroid transcript signals were up-regulated by genistein (except for thyroid peroxidase/tpo), and the hatching enzyme (he1a1) was exclusively up-regulated by daidzein (from 1.25 mg/L onwards). The ZFET proved suitable for assessing toxicant effects of both isoflavones and potential disruptions (i.e. oestrogenic, apoptotic, thyroid, enzymatic) during the embryogenesis and the endotrophic larval period."	"Estrogen receptor α dependent regulation of estrogen related receptor β and its role in cell cycle in breast cancer. Breast cancer (BC) is highly heterogeneous with ~ 60-70% of estrogen receptor positive BC patient's response to anti-hormone therapy. Estrogen receptors (ERs) play an important role in breast cancer progression and treatment. Estrogen related receptors (ERRs) are a group of nuclear receptors which belong to orphan nuclear receptors, which have sequence homology with ERs and share target genes. Here, we investigated the possible role and clinicopathological importance of ERRβ in breast cancer. Estrogen related receptor β (ERRβ) expression was examined using tissue microarray slides (TMA) of Breast Carcinoma patients with adjacent normal by immunohistochemistry and in breast cancer cell lines. In order to investigate whether ERRβ is a direct target of ERα, we investigated the expression of ERRβ in short hairpin ribonucleic acid knockdown of ERα breast cancer cells by western blot, qRT-PCR and RT-PCR. We further confirmed the binding of ERα by electrophoretic mobility shift assay (EMSA), chromatin immunoprecipitation (ChIP), Re-ChIP and luciferase assays. Fluorescence-activated cell sorting analysis (FACS) was performed to elucidate the role of ERRβ in cell cycle regulation. A Kaplan-Meier Survival analysis of GEO dataset was performed to correlate the expression of ERRβ with survival in breast cancer patients. Tissue microarray (TMA) analysis showed that ERRβ is significantly down-regulated in breast carcinoma tissue samples compared to adjacent normal. ER + ve breast tumors and cell lines showed a significant expression of ERRβ compared to ER-ve tumors and cell lines. Estrogen treatment significantly induced the expression of ERRβ and it was ERα dependent. Mechanistic analyses indicate that ERα directly targets ERRβ through estrogen response element and ERRβ also mediates cell cycle regulation through p18, p21<sup>cip</sup> and cyclin D1 in breast cancer cells. Our results also showed the up-regulation of ERRβ promoter activity in ectopically co-expressed ERα and ERRβ breast cancer cell lines. Fluorescence-activated cell sorting analysis (FACS) showed increased G0/G1 phase cell population in ERRβ overexpressed MCF7 cells. Furthermore, ERRβ expression was inversely correlated with overall survival in breast cancer. Collectively our results suggest cell cycle and tumor suppressor role of ERRβ in breast cancer cells which provide a potential avenue to target ERRβ signaling pathway in breast cancer. Our results indicate that ERRβ is a negative regulator of cell cycle and a possible tumor suppressor in breast cancer. ERRβ could be therapeutic target for the treatment of breast cancer."	"Genome-wide uniparental diploidy of all paternal chromosomes in an 11-year-old girl with deafness and without malignancy. Approximately 20 cases of genome-wide uniparental disomy or diploidy (GWUPD) as mosaicism have previously been reported. We present the case of an 11-year-old deaf girl with a paternal uniparental diploidy or isodisomy with a genome-wide loss of heterozygosity (LOH). The patient was originally tested for non-syndromic deafness, and the novel variant p.V234I in the ESRRB gene was found in a homozygous state. Our female proband is the seventh patient diagnosed with GWUPD at a later age and is probably the least affected of the seven, as she has not yet presented any malignancy. Most, if not all, reported patients with GWUPD whose clinical details have been published have developed malignancy, and some of those patient developed malignancy several times. Therefore, our patient has a high risk of malignancy and is carefully monitored by a specific outpatient pediatric oncology program. This observation seems to be novel and unique in a GWUPD patient. Our study is also unique as it not only provides very detailed documentation of the genomic situations of various tissues but also reports differences in the mosaic ratios between the blood and saliva, as well as a normal biparental allelic situation in the skin and biliary duct. Additionally, we were able to demonstrate that the mosaic ratio in the blood remained stable even after 3 years and has not changed over a longer period."	"Gas5 is an essential lncRNA regulator for self-renewal and pluripotency of mouse embryonic stem cells and induced pluripotent stem cells. The regulatory role of long noncoding RNAs (lncRNAs) have been partially proved in embryonic stem cells (ESCs) and induced pluripotent stem cells (iPSCs). In the current study, we investigated mouse ESC (mESC) self-renewal, differentiation, and proliferation in vitro by knocking down a lncRNA, growth arrest specific 5 (Gas5). A series of related indicators were examined by cell counting kit-8 (CCK-8) assay, quantitative reverse-transcription polymerase chain reaction (qRT-PCR), Western blot, alkaline phosphatase staining, propidium iodide (PI) staining, Annexin V staining, competition growth assay, immunofluorescence, and chromatin immunoprecipitation (ChIP)-qPCR. An in vivo teratoma formation assay was also performed to validate the in vitro results. qRT-PCR, fluorescence-activated cell sorting (FACS), alkaline phosphatase staining, and immunofluorescence were used to evaluate the role of Gas5 during mouse iPSC reprogramming. The regulatory axis of Dicer-miR291a-cMyc-Gas5 and the relationship between Gas5 and Tet/5hmC in mESCs was examined by qRT-PCR, Dot blot, and Western blot. We identified that Gas5 was required for self-renewal and pluripotency of mESCs and iPSCs. Gas5 formed a positive feedback network with a group of key pluripotent modulators (Sox2, Oct4, Nanog, Tcl1, Esrrb, and Tet1) in mESCs. Knockdown of Gas5 promoted endodermal differentiation of mESCs and impaired the efficiency of iPSC reprogramming. In addition, Gas5 was regulated by the Dicer-miR291a-cMyc axis and was involved in the DNA demethylation process in mESCs. Taken together, our results suggest that the lncRNA Gas5 plays an important role in modulating self-renewal and pluripotency of mESCs as well as iPSC reprogramming."	"Preserving self-renewal of porcine pluripotent stem cells in serum-free 3i culture condition and independent of LIF and b-FGF cytokines. Derivation of bona fide porcine pluripotent stem cells is still a critical issue because porcine embryonic stem cells (ESCs) are not available yet, and most of the culture conditions to maintain porcine induced pluripotent stem cells (piPSCs) are based on conditions for mouse and human iPS cells. In this study, we generated a doxycycline-inducible porcine iPS cell line (DOX-iPSCs) and used it to screen the optimal culture condition to sustain the self-renewal of piPSCs. We found that LIF and b-FGF were required for porcine cell reprogramming, but were not essential cytokines for maintaining the self-renewal and pluripotency of piPSCs. A serum-free 3i medium, which includes three inhibitors CHIR99021, SB431542, and PD0325901, three cytokines BMP4, SCF, and IL-6, and human platelet lysates (PL), was made through serious selections. In 3i condition, the doxycycline-inducible iPSCs could be passaged for a long term without the addition of doxycycline, and the flattened morphology of intermediate state piPSCs could convert to the naïve-like morphology with the increase in endogenous pluripotent gene expressions. Additionally, pPSC cell line isolated from 5.5 days blastocysts could be sustained in 3i medium and the expression of endogenous pluripotent genes OCT4, ESRRB, and STELLA was significantly increased. Our finding directed a new reprogramming strategy by using 3i condition to maintain and convert primed piPSCs into naïve-like pluripotent state. A combination of traditional LIF/b-FGF conditions and 3i condition may help us to find out an appropriate reprogramming approach to generate the naïve state of porcine iPSCs."	"Telomeric noncoding RNA promotes mouse embryonic stem cell self-renewal through inhibition of TCF3 activity. Although long noncoding RNAs (lncRNAs) are emerging as new modulators in the fate decision of pluripotent stem cells, the functions of specific lncRNAs remain unclear. Here, we found that telomeric RNA (TERRA or TelRNA), one type of lncRNAs, is highly expressed in mouse embryonic stem cells (mESCs) but declines significantly upon differentiation. TERRA is induced by the Wnt/β-catenin signaling pathway and can reproduce its self-renewal-promoting effect when overexpressed. Further studies revealed that T cell factor 3 ( TCF3) is a potential downstream target of TERRA and mediates the effect of TERRA in mESC maintenance. TERRA inhibits TCF3 transcription, while enforced TCF3 expression abrogates the undifferentiated state of mESCs supported by TERRA. Accordingly, the transcripts of the pluripotency genes Esrrb, Tfcp2l1, and Klf2, repressed by TCF3 in mESCs, are increased in TERRA-overexpressing cells. Our study therefore highlights the important role of TERRA in mESC maintenance and also uncovers a mechanism by which TERRA promotes self-renewal. These data will expand our understanding of the pluripotent regulatory network of ESCs."	"Esrrb Complementation Rescues Development of Nanog-Null Germ Cells. The transcription factors (TFs) Nanog and Esrrb play important roles in embryonic stem cells (ESCs) and during primordial germ-cell (PGC) development. Esrrb is a positively regulated direct target of NANOG in ESCs that can substitute qualitatively for Nanog function in ESCs. Whether this functional substitution extends to the germline is unknown. Here, we show that germline deletion of Nanog reduces PGC numbers 5-fold at midgestation. Despite this quantitative depletion, Nanog-null PGCs can complete germline development in contrast to previous findings. PGC-like cell (PGCLC) differentiation of Nanog-null ESCs is also impaired, with Nanog-null PGCLCs showing decreased proliferation and increased apoptosis. However, induced expression of Esrrb restores PGCLC numbers as efficiently as Nanog. These effects are recapitulated in vivo: knockin of Esrrb to Nanog restores PGC numbers to wild-type levels and results in fertile adult mice. These findings demonstrate that Esrrb can replace Nanog function in germ cells."	"Network Features and Dynamical Landscape of Naive and Primed Pluripotency. Although the broad and unique differentiation potential of pluripotent stem cells relies on a complex transcriptional network centered around Oct4, Sox2, and Nanog, two well-distinct pluripotent states, called &quot;naive&quot; and &quot;primed&quot;, have been described in vitro and markedly differ in their developmental potential, their expression profiles, their signaling requirements, and their reciprocal conversion. Aiming to determine the key features that segregate and coordinate these two states, data-driven optimization of network models is performed to identify relevant parameter regimes and reduce network complexity to its core structure. Decision dynamics of optimized networks is characterized by signal-dependent multistability and strongly asymmetric transitions among naive, primed, and nonpluripotent states. Further model perturbation and reduction approaches reveal that such a dynamical landscape of pluripotency involves a functional partitioning of the regulatory network. Specifically, two overlapping positive feedback modules, Klf4/Esrrb/Nanog and Oct4/Nanog, stabilize the naive or the primed state, respectively. In turn, their incoherent feedforward and negative feedback coupling mediated by the Erk/Gsk3 module is critical for robust segregation and sequential progression between naive and primed states before irreversible exit from pluripotency."	"Cardiac-specific ablation of the E3 ubiquitin ligase Mdm2 leads to oxidative stress, broad mitochondrial deficiency and early death. The maintenance of normal heart function requires proper control of protein turnover. The ubiquitin-proteasome system is a principal regulator of protein degradation. Mdm2 is the main E3 ubiquitin ligase for p53 in mitotic cells thereby regulating cellular growth, DNA repair, oxidative stress and apoptosis. However, which of these Mdm2-related activities are preserved in differentiated cardiomyocytes has yet to be determined. We sought to elucidate the role of Mdm2 in the control of normal heart function. We observed markedly reduced Mdm2 mRNA levels accompanied by highly elevated p53 protein expression in the hearts of wild type mice subjected to myocardial infarction or trans-aortic banding. Accordingly, we generated conditional cardiac-specific Mdm2 gene knockout (Mdm2f/f;mcm) mice. In adulthood, Mdm2f/f;mcm mice developed spontaneous cardiac hypertrophy, left ventricular dysfunction with early mortality post-tamoxifen. A decreased polyubiquitination of myocardial p53 was observed, leading to its stabilization and activation, in the absence of acute stress. In addition, transcriptomic analysis of Mdm2-deficient hearts revealed that there is an induction of E2f1 and c-Myc mRNA levels with reduced expression of the Pgc-1a/Ppara/Esrrb/g axis and Pink1. This was associated with a significant degree of cardiomyocyte apoptosis, and an inhibition of redox homeostasis and mitochondrial bioenergetics. All these processes are early, Mdm2-associated events and contribute to the development of pathological hypertrophy. Our genetic and biochemical data support a role for Mdm2 in cardiac growth control through the regulation of p53, the Pgc-1 family of transcriptional coactivators and the pivotal antioxidant Pink1."	"LIF-activated Jak signaling determines Esrrb expression during late-stage reprogramming. The regulatory process of naïve-state induced pluripotent stem cell (iPSC) generation is not well understood. Leukemia inhibitory factor (LIF)-activated Janus kinase/signal transducer and activator of transcription 3 (Jak/Stat3) is the master regulator for naïve-state pluripotency achievement and maintenance. The estrogen-related receptor beta (Esrrb) serves as a naïve-state marker gene regulating self-renewal of embryonic stem cells (ESCs). However, the interconnection between Esrrb and LIF signaling for pluripotency establishment in reprogramming is unclear. We screened the marker genes critical for complete reprogramming during mouse iPSC generation, and identified genes including Esrrb that are responsive to LIF/Jak pathway signaling. Overexpression of Esrrb resumes the reprogramming halted by inhibition of Jak activity in partially reprogrammed cells (pre-iPSCs), and leads to the generation of pluripotent iPSCs. We further show that neither overexpression of Nanog nor stimulation of Wnt signaling, two upstream regulators of Esrrb in ESCs, stimulates the expression of Esrrb in reprogramming when LIF or Jak activity is blocked. Our study demonstrates that Esrrb is a specific reprogramming factor regulated downstream of the LIF/Jak signaling pathway. These results shed new light on the regulatory role of LIF pathway on complete pluripotency establishment during iPSC generation."	"Association Between Polymorphisms in the Genes of Estrogen Receptors and the Presence of Temporomandibular Disorders and Chronic Arthralgia. The high prevalence of painful temporomandibular disorders (TMDs) in women suggests that estrogen and its receptors play a fundamental etiologic role in the development of this joint pathology through complex action mechanisms. The aim of this study was to evaluate the possible association between polymorphisms in the ESR1 (estrogen receptor-1) and ESRRB (estrogen-related receptor-β) genes and the risk of simultaneous development of TMDs and pain in other joints in the body. All participants were clinically evaluated for the presence of TMD (Research Diagnostic Criteria for TMD) and asked about the presence of chronic joint pain. The control group consisted of 72 patients without TMD and without pain. Participants with arthralgia were divided into 3 groups: with muscular TMD (n = 42), with articular TMD (n = 16), and without TMD and with systemic arthralgia (n = 82). Eight single-nucleotide polymorphisms in the ESR1 (rs12154178, rs1884051, rs2273206, rs7774230) and ESRRB (rs1676303, rs4903399, rs10132091, rs7151924) genes were investigated. The χ<sup>2</sup> test and Student t and Mann-Whitney tests were used to assess the relevance of nominal and continuous variables, respectively. A P value less than .05 was considered significant. The TT (timin/timin) genotype for the ESR1 (rs2273206) gene was strongly associated with the risk of developing muscle TMDs and temporomandibular joint pain (P = .04). For the ESRRB (rs1676303) gene, an association was observed between the CC (cytosine/cytosine) genotype and the presence of articular TMDs associated with other chronic arthralgia (P = .02). These results were confirmed by the increased risk of developing articular TMDs associated with the C allele (P = .04). This study supports the hypothesis that changes in the ESR1 and ESRRB genes influence the presence of TMDs associated with chronic joint pain."	"Naive-like ESRRB<sup>+</sup> iPSCs with the Capacity for Rapid Neural Differentiation. Several groups have reported the existence of a form of pluripotency that resembles that of mouse embryonic stem cells (mESCs), i.e., a naive state, in human pluripotent stem cells; however, the characteristics vary between reports. The nuclear receptor ESRRB is expressed in mESCs and plays a significant role in their self-renewal, but its expression has not been observed in most naive-like human induced pluripotent stem cells (hiPSCs). In this study, we modified several methods for converting hiPSCs into a naive state through the transgenic expression of several reprogramming factors. The resulting cells express the components of the core transcriptional network of mESCs, including ESRRB, at high levels, which suggests the existence of naive-state hiPSCs that are similar to mESCs. We also demonstrate that these cells differentiate more readily into neural cells than do conventional hiPSCs. These features may be beneficial for their use in disease modeling and regenerative medicine."	"Common microRNA-mRNA interactions exist among distinct porcine iPSC lines independent of their metastable pluripotent states. Previous evidences have proved that porcine-induced pluripotent stem cells (piPSCs) could be induced to distinctive metastable pluripotent states. This raises the issue of whether there is a common transcriptomic profile existing among the piPSC lines at distinctive state. In this study, we performed conjoint analysis of small RNA-seq and mRNA-seq for three piPSC lines which represent LIF dependence, FGF2 dependence and LFB2i dependence, respectively. Interestingly, we found there are 16 common microRNAs which potentially target 13 common mRNAs among the three piPSC lines. Dual-luciferase reporter assay validated that miR-370, one of the 16 common microRNAs, could directly target the 3'UTR of LIN28A. When the differentiation occurred, miR-370 could be activated in piPSCs and switched off the expression of LIN28A. Ectopic expression of miR-370 in piPSCs could reduce LIN28A expression, decrease the alkaline phosphatase activity, slow down the proliferation, and further cause the downregulation of downstream pluripotent genes (OCT4, SOX2, NANOG, SALL4 and ESRRB) and upregulation of differentiation relevant genes (SOX9, JARID2 and JMJD4). Moreover, these phenotypes caused by miR-370 could be rescued by overexpressing LIN28A. Collectively, our findings suggest that a set of common miRNA-mRNA interactions exist among the distinct piPSC lines, which orchestrate the self-renewal and differentiation of piPSCs independent of their metastable pluripotent states."	"A dynamic interplay of enhancer elements regulates Klf4 expression in naïve pluripotency. Transcription factor (TF)-directed enhanceosome assembly constitutes a fundamental regulatory mechanism driving spatiotemporal gene expression programs during animal development. Despite decades of study, we know little about the dynamics or order of events animating TF assembly at cis-regulatory elements in living cells and the long-range molecular &quot;dialog&quot; between enhancers and promoters. Here, combining genetic, genomic, and imaging approaches, we characterize a complex long-range enhancer cluster governing Krüppel-like factor 4 (Klf4) expression in naïve pluripotency. Genome editing by CRISPR/Cas9 revealed that OCT4 and SOX2 safeguard an accessible chromatin neighborhood to assist the binding of other TFs/cofactors to the enhancer. Single-molecule live-cell imaging uncovered that two naïve pluripotency TFs, STAT3 and ESRRB, interrogate chromatin in a highly dynamic manner, in which SOX2 promotes ESRRB target search and chromatin-binding dynamics through a direct protein-tethering mechanism. Together, our results support a highly dynamic yet intrinsically ordered enhanceosome assembly to maintain the finely balanced transcription program underlying naïve pluripotency."	"The molecular characterization of porcine egg precursor cells. Female-factor infertility can be caused by poor oocyte quality and depleted ovarian reserves. Egg precursor cells (EPCs), isolated from the ovarian cortex, have the potential to be used to overcome female infertility. We aimed to define the origins of EPCs by analyzing their gene expression profiles and mtDNA content using a mini-pig model. We characterized FAC-sorted DDX4<sup>+</sup>-derived porcine EPCs by performing RNA-sequencing and determined that they utilize pathways important for cell cycle and proliferation, which supports the existence of adult mitotically active oogonial cells. Expression of the pluripotent markers Sox2 and Oct4, and the primitive germ cell markers Blimp1 and Stella were not detected. However, Nanog and Ddx4 were expressed, as were the primitive germ cell markers Fragilis, c-Kit and Tert. Moreover, porcine EPCs expressed self-renewal and proliferation markers including Myc, Esrrb, Id2, Klf4, Klf5, Stat3, Fgfr1, Fgfr2 and Il6st. The presence of Zp1, Zp2, Zp3 and Nobox were not detected, indicating that porcine EPCs are not indicative of mature primordial oocytes. We performed mitochondrial DNA Next Generation Sequencing and determined that one mtDNA variant harbored by EPCs was present in oocytes, preimplantation embryos and somatic tissues over three generations in our mini-pig model indicating the potential germline origin of EPCs."	"Passive DNA demethylation preferentially up-regulates pluripotency-related genes and facilitates the generation of induced pluripotent stem cells. A high proliferation rate has been observed to facilitate somatic cell reprogramming, but the pathways that connect proliferation and reprogramming have not been reported. DNA methyltransferase 1 (DNMT1) methylates hemimethylated CpG sites produced during S phase and maintains stable inheritance of DNA methylation. Impairing this process results in passive DNA demethylation. In this study, we show that the cell proliferation rate positively correlated with the expression of Dnmt1 in G1 phase. In addition, as determined by whole-genome bisulfate sequencing and high-performance liquid chromatography, global DNA methylation of mouse embryonic fibroblasts was significantly higher in G1 phase than in G2/M phase. Thus, we suspected that high cellular proliferation requires more Dnmt1 expression in G1 phase to prevent passive DNA demethylation. The methylation differences of individual CpG sites between G1 and G2/M phase were related to the methylation status and the positions of their surrounding CpG sites. In addition, larger methylation differences were observed on the promoters of pluripotency-related genes; for example, Oct4, Nanog, Sox2, Esrrb, Cdh1, and Epcam When such methylation differences or passive DNA demethylation accumulated with Dnmt1 suppression and proliferation acceleration, DNA methylation on pluripotency-related genes was decreased, and their expression was up-regulated, which subsequently promoted pluripotency and mesenchymal-epithelial transition, a necessary step for reprogramming. We infer that high cellular proliferation rates promote generation of induced pluripotent stem cells at least partially by inducing passive DNA demethylation and up-regulating pluripotency-related genes. Therefore, these results uncover a connection between cell reprogramming and DNA methylation."	"Replacing reprogramming factors with antibodies selected from combinatorial antibody libraries. The reprogramming of differentiated cells into induced pluripotent stem cells (iPSCs) is usually achieved by exogenous induction of transcription by factors acting in the nucleus. In contrast, during development, signaling pathways initiated at the membrane induce differentiation. The central idea of this study is to identify antibodies that can catalyze cellular de-differentiation and nuclear reprogramming by acting at the cell surface. We screen a lentiviral library encoding ∼100 million secreted and membrane-bound single-chain antibodies and identify antibodies that can replace either Sox2 and Myc (c-Myc) or Oct4 during reprogramming of mouse embryonic fibroblasts into iPSCs. We show that one Sox2-replacing antibody antagonizes the membrane-associated protein Basp1, thereby de-repressing nuclear factors WT1, Esrrb and Lin28a (Lin28) independent of Sox2. By manipulating this pathway, we identify three methods to generate iPSCs. Our results establish unbiased selection from autocrine combinatorial antibody libraries as a robust method to discover new biologics and uncover membrane-to-nucleus signaling pathways that regulate pluripotency and cell fate."	"Esrrb, an estrogen-related receptor involved in early development, pluripotency, and reprogramming. Estrogen-related receptor b (Esrrb) is part of a family of three orphan nuclear receptors with broad expression profiles and a generic function in regulating energy metabolism in mammals. However, Esrrb performs specific functions during early mouse development, in pluripotent and multipotent populations of the embryo as well as in primordial germ cells. Moreover, Esrrb also impinges upon the control of self-renewal in embryo-derived stem cells and enhances reprogramming. Here, we review the function of Esrrb with special emphasis on its role in pluripotency. Esrrb activity at crucial regulatory elements of the pluripotency network, coupled with its role as a mitotic bookmarking factor and the ability to reset cellular metabolism, might explain its potent functions in ensuring the stability of pluripotency and driving the late stages of reprogramming. Hence, we argue that Esrrb represents a key addition to the pantheon of transcription factors sustaining pluripotent stem cell identity in mice. Understanding the mechanisms governing the interplay between different estrogen-related receptors (ERRs) and their specificity of action may clarify the role these factors play during preimplantation development and in pluripotent cells in both mouse and humans."	"Single Nucleotide Polymorphism in the Aetiology of Caries: Systematic Literature Review. Recent progress in the field of molecular biology and techniques of DNA sequence analysis allowed determining the meaning of hereditary factors of many common human diseases. Studies of genetic mechanisms in the aetiology of caries encompass, primarily, 4 main groups of genes responsible for (1) the development of enamel, (2) formation and composition of saliva, (3) immunological responses, and (4) carbohydrate metabolism. The aim of this study was to present current knowledge about the influence of single nucleotide polymorphism (SNP) genetic variants on the occurrence of dental caries. PubMed/Medline, Embase, and Cochrane Library databases were searched for papers on the influence of genetic factors connected with SNP on the occurrence of dental caries in children, teenagers, and adults. Thirty original papers written in English were included in this review. Study groups ranged from 30 to 13,000 subjects. SNPs were observed in 30 genes. Results of the majority of studies confirm the participation of hereditary factors in the aetiology of caries. Three genes, AMELX, AQP5, and ESRRB, have the most promising evidence based on multiple replications and data, supporting a role of these genes in caries. The review of the literature proves that SNP is linked with the aetiology of dental caries."	"ESRRB plays a crucial role in the promotion of porcine cell reprograming. The estrogen-related receptor b (ESRRB) is an orphan nuclear receptor and targets many genes involved in self-renewal and pluripotency. In mouse ES cells, overexpression of ESRRB can maintain LIF-independent self-renewal in the absence of Nanog. However, the fundamental features of porcine ESRRB remain elusive. In this study, we revealed the expression profiles of ESRRB in both porcine pluripotent stem cells and early stage embryos and dissected the functional domains of ESRRB protein to prove that ESRRB is a key transcription factor that enhanced porcine pluripotent gene activation. Addition of ESRRB into the cocktail of core pluripotent factors Oct4, Sox2, Klf4, and c-Myc (OSKM + E) could significantly enhance the reprograming efficiency and the formation of alkaline phosphatase positive colonies. Conversely, knockdown of ESRRB in piPSCs significantly reduced the expression level of pluripotent genes, minimized the alkaline phosphatase activity, and initiated the porcine induced pluripotent stem cell differentiation. Therefore, porcine ESRRB is a crucial transcription factor to improve the self-renewal of piPSCs."	"Dynamic regulation of Nanog and stem cell-signaling pathways by Hoxa1 during early neuro-ectodermal differentiation of ES cells. Homeobox a1 (Hoxa1) is one of the most rapidly induced genes in ES cell differentiation and it is the earliest expressed Hox gene in the mouse embryo. In this study, we used genomic approaches to identify Hoxa1-bound regions during early stages of ES cell differentiation into the neuro-ectoderm. Within 2 h of retinoic acid treatment, Hoxa1 is rapidly recruited to target sites that are associated with genes involved in regulation of pluripotency, and these genes display early changes in expression. The pattern of occupancy of Hoxa1 is dynamic and changes over time. At 12 h of differentiation, many sites bound at 2 h are lost and a new cohort of bound regions appears. At both time points the genome-wide mapping reveals that there is significant co-occupancy of Nanog (Nanog homeobox) and Hoxa1 on many common target sites, and these are linked to genes in the pluripotential regulatory network. In addition to shared target genes, Hoxa1 binds to regulatory regions of Nanog, and conversely Nanog binds to a 3' enhancer of Hoxa1 This finding provides evidence for direct cross-regulatory feedback between Hoxa1 and Nanog through a mechanism of mutual repression. Hoxa1 also binds to regulatory regions of Sox2 (sex-determining region Y box 2), Esrrb (estrogen-related receptor beta), and Myc, which underscores its key input into core components of the pluripotential regulatory network. We propose a model whereby direct inputs of Nanog and Hoxa1 on shared targets and mutual repression between Hoxa1 and the core pluripotency network provides a molecular mechanism that modulates the fine balance between the alternate states of pluripotency and differentiation."	"Hybrid Cellular Metabolism Coordinated by Zic3 and Esrrb Synergistically Enhances Induction of Naive Pluripotency. Naive pluripotent stem cells (PSCs) utilize both glycolysis and oxidative phosphorylation (OXPHOS) to satisfy their metabolic demands. However, it is unclear how somatic cells acquire this hybrid energy metabolism during reprogramming toward naive pluripotency. Here, we show that when transduced with Oct4, Sox2, and Klf4 (OSK) into murine fibroblasts, Zic3 and Esrrb synergistically enhance the reprogramming efficiency by regulating cellular metabolic pathways. These two transcription factors (TFs) cooperatively activate glycolytic metabolism independently of hypoxia inducible factors (HIFs). In contrast, the regulatory modes of the TFs on OXPHOS are antagonistic: Zic3 represses OXPHOS, whereas Esrrb activates it. Therefore, when introduced with Zic3, Esrrb restores OXPHOS activity, which is essential for efficient reprogramming. In addition, Esrrb-mediated OXPHOS activation is critical for the conversion of primed PSCs into the naive state. Our study suggests that the combinatorial function of TFs achieves an appropriate balance of metabolic pathways to induce naive PSCs."	"Context-Dependent Functions of NANOG Phosphorylation in Pluripotency and Reprogramming. The core pluripotency transcription factor NANOG is critical for embryonic stem cell (ESC) self-renewal and somatic cell reprogramming. Although NANOG is phosphorylated at multiple residues, the role of NANOG phosphorylation in ESC self-renewal is incompletely understood, and no information exists regarding its functions during reprogramming. Here we report our findings that NANOG phosphorylation is beneficial, although nonessential, for ESC self-renewal, and that loss of phosphorylation enhances NANOG activity in reprogramming. Mutation of serine 65 in NANOG to alanine (S65A) alone has the most significant impact on increasing NANOG reprogramming capacity. Mechanistically, we find that pluripotency regulators (ESRRB, OCT4, SALL4, DAX1, and TET1) are transcriptionally primed and preferentially associated with NANOG S65A at the protein level due to presumed structural alterations in the N-terminal domain of NANOG. These results demonstrate that a single phosphorylation site serves as a critical interface for controlling context-dependent NANOG functions in pluripotency and reprogramming."	"Transcriptional regulatory networks underlying the reprogramming of spermatogonial stem cells to multipotent stem cells. Spermatogonial stem cells (SSCs) are germline stem cells located along the basement membrane of seminiferous tubules in testes. Recently, SSCs were shown to be reprogrammed into multipotent SSCs (mSSCs). However, both the key factors and biological networks underlying this reprogramming remain elusive. Here, we present transcriptional regulatory networks (TRNs) that control cellular processes related to the SSC-to-mSSC reprogramming. Previously, we established intermediate SSCs (iSSCs) undergoing the transition to mSSCs and generated gene expression profiles of SSCs, iSSCs and mSSCs. By comparing these profiles, we identified 2643 genes that were up-regulated during the reprogramming process and 15 key transcription factors (TFs) that regulate these genes. Using the TF-target relationships, we developed TRNs describing how these TFs regulate three pluripotency-related processes (cell proliferation, stem cell maintenance and epigenetic regulation) during the reprogramming. The TRNs showed that 4 of the 15 TFs (Oct4/Pou5f1, Cux1, Zfp143 and E2f4) regulated cell proliferation during the early stages of reprogramming, whereas 11 TFs (Oct4/Pou5f1, Foxm1, Cux1, Zfp143, Trp53, E2f4, Esrrb, Nfyb, Nanog, Sox2 and Klf4) regulated the three pluripotency-related processes during the late stages of reprogramming. Our TRNs provide a model for the temporally coordinated transcriptional regulation of pluripotency-related processes during the SSC-to-mSSC reprogramming, which can be further tested in detailed functional studies."	"Genes Involved in the Enamel Development Are Associated with Calcium and Phosphorus Level in Saliva. Saliva components play a crucial role in the integrity of the dental enamel and in caries susceptibility. The saliva characteristics are controlled by many factors, including genetic factors. Therefore, this study aimed to evaluate the association between the genetic variations in genes expressed in enamel development with calcium and phosphorus levels in saliva. We collected 276 unrelated 12-year-old children from private and public schools. Saliva was collected for DNA extraction from oral cells and for measurement of calcium and phosphorus. Inductively coupled plasma-mass spectrometry determined calcium and phosphorus levels in whole saliva. Fifteen genetic variations in 9 genes were analyzed. The genotype was determined by real-time polymerase chain reactions. Data were analyzed using Plink with an alpha of 5%. Genetic variations in AMELX, AMNB and ESRRB were associated with the calcium level in saliva (p &lt; 0.05). A borderline association was observed in ENAM allele distribution shown with phosphate level in saliva (p = 0.049). In conclusion, our results are the first to report that genetic variations contribute to calcium and phosphorus levels in saliva."	"EpCAM Intracellular Domain Promotes Porcine Cell Reprogramming by Upregulation of Pluripotent Gene Expression via Beta-catenin Signaling. Previous study showed that expression of epithelial cell adhesion molecule (EpCAM) was significantly upregulated in porcine induced pluripotent stem cells (piPSCs). However, the regulatory mechanism and the downstream target genes of EpCAM were not well investigated. In this study, we found that EpCAM was undetectable in fibroblasts, but highly expressed in piPSCs. Promoter of EpCAM was upregulated by zygotic activated factors LIN28, and ESRRB, but repressed by maternal factors OCT4 and SOX2. Knocking down EpCAM by shRNA significantly reduced the pluripotent gene expression. Conversely, overexpression of EpCAM significantly increased the number of alkaline phosphatase positive colonies and elevated the expression of endogenous pluripotent genes. As a key surface-to-nucleus factor, EpCAM releases its intercellular domain (EpICD) by a two-step proteolytic processing sequentially. Blocking the proteolytic processing by inhibitors TAPI-1 and DAPT could reduce the intracellular level of EpICD and lower expressions of OCT4, SOX2, LIN28, and ESRRB. We noticed that increasing intracellular EpICD only was unable to improve activity of EpCAM targeted genes, but by blocking GSK-3 signaling and stabilizing beta-catenin signaling, EpICD could then significantly stimulate the promoter activity. These results showed that EpCAM intracellular domain required beta-catenin signaling to enhance porcine cell reprogramming."	"Noise-processing by signaling networks. Signaling networks mediate environmental information to the cell nucleus. To perform this task effectively they must be able to integrate multiple stimuli and distinguish persistent signals from transient environmental fluctuations. However, the ways in which signaling networks process environmental noise are not well understood. Here we outline a mathematical framework that relates a network's structure to its capacity to process noise, and use this framework to dissect the noise-processing ability of signaling networks. We find that complex networks that are dense in directed paths are poor noise processors, while those that are sparse and strongly directional process noise well. These results suggest that while cross-talk between signaling pathways may increase the ability of signaling networks to integrate multiple stimuli, too much cross-talk may compromise the ability of the network to distinguish signal from noise. To illustrate these general results we consider the structure of the signalling network that maintains pluripotency in mouse embryonic stem cells, and find an incoherent feedforward loop structure involving Stat3, Tfcp2l1, Esrrb, Klf2 and Klf4 is particularly important for noise-processing. Taken together these results suggest that noise-processing is an important function of signaling networks and they may be structured in part to optimize this task."	"Analysis of Co-Associated Transcription Factors via Ordered Adjacency Differences on Motif Distribution. Transcription factors (TFs) binding to specific DNA sequences or motifs, are elementary to the regulation of transcription. The gene is regulated by a combination of TFs in close proximity. Analysis of co-TFs is an important problem in understanding the mechanism of transcriptional regulation. Recently, ChIP-seq in mapping TF provides a large amount of experimental data to analyze co-TFs. Several studies show that if two TFs are co-associated, the relative distance between TFs exhibits a peak-like distribution. In order to analyze co-TFs, we develop a novel method to evaluate the associated situation between TFs. We design an adjacency score based on ordered differences, which can illustrate co-TF binding affinities for motif analysis. For all candidate motifs, we calculate corresponding adjacency scores, and then list descending-order motifs. From these lists, we can find co-TFs for candidate motifs. On ChIP-seq datasets, our method obtains best AUC results on five datasets, 0.9432 for NMYC, 0.9109 for KLF4, 0.9006 for ZFX, 0.8892 for ESRRB, 0.8920 for E2F1. Our method has great stability on large sample datasets. AUC results of our method on all datasets are above 0.8."	"Identification of novel inverse agonists of estrogen-related receptors ERRγ and ERRβ. Estrogen-related receptors (ERRs, α, β, and γ) are orphan nuclear receptors most closely related in sequence to estrogen receptors (ERα and ERβ). Much attention has been paid recently to the functions of ERRs for their potential roles as new therapeutic targets implicated in the etiology of metabolic disorders. While no endogenous ligand has been identified for any of the ERR isoforms to date, the potential for using synthetic small molecules to modulate their activity has been demonstrated. In the present study, a series of novel inverse agonists of ERRγ and ERRβ were synthesized using regio- and stereo-specific direct substitution of triarylethylenes. These compounds were evaluated for their ability to modulate the activities of ERRs. The rational directed substitution approach and extensive SAR studies resulted in the discovery of compound 4a (DY40) as the most potent ERRγ inverse agonist described to date with mixed ERRγ/ERRβ functional activities, which potently suppressed the transcriptional functions of ERRγ with IC50=0.01μM in a cell-based reporter gene assay and antagonized ERRγ with a potency approximately 60 times greater than its analog Z-4-OHT (Z-4-hydroxytamoxifen). In addition, compound 3h (DY181) was identified as the most potent synthetic inverse agonist for the ERRβ that exhibited excellent selectivity over ERRα/γ in functional assays. This selectivity was also supported by computational docking models that suggest DY181 forms more extensive hydrogen bound network with ERRβ which should result in higher binding affinity on ERRβ over ERRγ."	"Novel peptides for deciphering structural and signalling functions of E-cadherin in mouse embryonic stem cells. We have previously shown that E-cadherin regulates the naive pluripotent state of mouse embryonic stem cells (mESCs) by enabling LIF-dependent STAT3 phosphorylation, with E-cadherin null mESCs exhibiting over 3000 gene transcript alterations and a switch to Activin/Nodal-dependent pluripotency. However, elucidation of the exact mechanisms associated with E-cadherin function in mESCs is compounded by the difficulty in delineating the structural and signalling functions of this protein. Here we show that mESCs treated with the E-cadherin neutralising antibody DECMA-1 or the E-cadherin binding peptide H-SWELYYPLRANL-NH2 (Epep) exhibit discrete profiles for pluripotent transcripts and NANOG protein expression, demonstrating that the type of E-cadherin inhibitor employed dictates the cellular phenotype of mESCs. Alanine scanning mutation of Epep revealed residues critical for Tbx3, Klf4 and Esrrb transcript repression, cell-cell contact abrogation, cell survival in suspension, STAT3 phosphorylation and water solubility. STAT3 phosphorylation was found to be independent of loss of cell-cell contact and Activin/Nodal-dependent pluripotency and a peptide is described that enhances STAT3 phosphorylation and Nanog transcript and protein expression in mESCs. These peptides represent a useful resource for deciphering the structural and signalling functions of E-cadherin and demonstrate that complete absence of E-cadherin protein is likely required for hierarchical signalling pathway alterations in mESCs."	"Genetic and familial predisposition to rotator cuff disease: a systematic review. Rotator cuff disease is a common disorder leading to shoulder pain and loss of function. Its etiology in atraumatic cases is uncertain and is likely to extend beyond repetitive microtrauma or overuse. Our objective was to determine whether there is a genetic or familial predisposition to rotator cuff disease. A literature search of PubMed and Embase databases identified 251 citations. After review of the titles, abstracts, and full articles, 7 met our inclusion and exclusion criteria. Four studies assessed familial predisposition to rotator cuff disease. One of these demonstrated that siblings of an individual with a rotator cuff tear were more likely to develop a full-thickness tear and more likely to be symptomatic. A 5-year follow-up showed that the relative risks were increased for the siblings to have a full-thickness tear, for a tear to progress in size, and for being symptomatic. Another study demonstrated that a significantly higher number of individuals with tears had family members with a history of tears or surgery than those without tears did. The other 3 studies investigated whether a genetic predisposition to rotator cuff disease exists and found significant association of haplotypes in DEFB1, FGFR1, FGF3, ESRRB, and FGF10 and 2 single-nucleotide polymorphisms within SAP30BP and SASH1. Prior studies provide preliminary evidence for genetic and familial predisposition to rotator cuff disease. However, there is a lack of large genome-wide studies that can provide more definitive information and guide early detection of individuals at risk, prophylactic rehabilitation, and potential gene therapies and regenerative medicine interventions."	"Development of dilated cardiomyopathy and impaired calcium homeostasis with cardiac-specific deletion of ESRRβ. Mechanisms underlying the development of idiopathic dilated cardiomyopathy (DCM) remain poorly understood. Using transcription factor expression profiling, we identified estrogen-related receptor-β (ESRRβ), a member of the nuclear receptor family of transcription factors, as highly expressed in murine hearts and other highly oxidative striated muscle beds. Mice bearing cardiac-specific deletion of ESRRβ (MHC-ERRB KO) develop DCM and sudden death at ~10 mo of age. Isolated adult cardiomyocytes from the MHC-ERRB KO mice showed an increase in calcium sensitivity and impaired cardiomyocyte contractility, which preceded echocardiographic cardiac remodeling and dysfunction by several months. Histological analyses of myocardial biopsies from patients with various cardiomyopathies revealed that ESRRβ protein is absent from the nucleus of cardiomyocytes from patients with DCM but not other forms of cardiomyopathy (ischemic, hypertrophic, and arrhythmogenic right ventricular cardiomyopathy). Taken together these observations suggest that ESRRβ is a critical component in the onset of DCM by affecting contractility and calcium balance.NEW &amp; NOTEWORTHY Estrogen-related receptor-β (ESRRβ) is highly expressed in the heart and cardiac-specific deletion results in the development of a dilated cardiomyopathy (DCM). ESRRβ is mislocalized in human myocardium samples with DCM, suggesting a possible role for ESRRβ in the pathogenesis of DCM in humans."	"OTX2 impedes self-renewal of porcine iPS cells through downregulation of NANOG expression. The transcription factor Otx2 acts as a negative switch in the regulation of transition from naive to primed pluripotency in mouse pluripotent stem cells. However, the molecular features and function of porcine OTX2 have not been well elucidated in porcine-induced pluripotent stem cells (piPSCs). By studying high-throughput transcriptome sequencing and interfering endogenous OTX2 expression, we demonstrate that OTX2 is able to downgrade the self-renewal of piPSCs. OTX2 is highly expressed in porcine brain, reproductive tissues, and preimplantation embryos, but is undetectable in fibroblasts and most somatic tissues. However, the known piPSC lines reported previously produced different levels of OTX2 depending on the induction procedures and culture conditions. Overexpression of porcine OTX2 can reduce the percentage of alkaline phosphatase-positive colonies and downregulate NANOG and OCT4 expression. In contrast, knockdown of OTX2 can significantly increase endogenous expressions of NANOG, OCT4, and ESRRB, and stabilize the pluripotent state of piPSCs. On the other hand, NANOG can directly bind to the OTX2 promoter as shown in ChIP-seq data and repress OTX2 promoter activity in a dose-dependent manner. These observations indicate that OTX2 and NANOG can form a negative feedback circuitry to regulate the pluripotency of porcine iPS cells."	"Characterization and genetic manipulation of primed stem cells into a functional naïve state with ESRRB. To identify differences between primed mouse embryonic stem cells (ESCs) and fully functional naive ESCs; to manipulate primed cells into a naive state. We have cultured 3 lines of cells from different mouse strains that have been shown to be naive or primed as determined by generating germline-transmitting chimeras. Cells were put through a battery of tests to measure the different features. RNA from cells was analyzed using microarrays, to determine a priority list of the differentially expressed genes. These were later validated by quantificational real-time polymerase chain reaction. Viral cassettes were created to induce expression of differentially expressed genes in the primed cells through lentiviral transduction. Primed reprogrammed cells were subjected to in-vivo incorporation studies. Most results show that both primed and naive cells have similar features (morphology, proliferation rates, stem cell genes expressed). However, there were some genes that were differentially expressed in the naïve cells relative to the primed cells. Key upregulated genes in naïve cells include ESRRB, ERAS, ATRX, RNF17, KLF-5, and MYC. After over-expressing some of these genes the primed cells were able to incorporate into embryos in-vivo, re-acquiring a feature previously absent in these cells. Although there are no notable phenotypic differences, there are key differences in gene expression between these naïve and primed stem cells. These differences can be overcome through overexpression."	"Control of embryonic stem cell self-renewal and differentiation via coordinated alternative splicing and translation of YY2. Translational control of gene expression plays a key role during the early phases of embryonic development. Here we describe a transcriptional regulator of mouse embryonic stem cells (mESCs), Yin-yang 2 (YY2), that is controlled by the translation inhibitors, Eukaryotic initiation factor 4E-binding proteins (4E-BPs). YY2 plays a critical role in regulating mESC functions through control of key pluripotency factors, including Octamer-binding protein 4 (Oct4) and Estrogen-related receptor-β (Esrrb). Importantly, overexpression of YY2 directs the differentiation of mESCs into cardiovascular lineages. We show that the splicing regulator Polypyrimidine tract-binding protein 1 (PTBP1) promotes the retention of an intron in the 5'-UTR of Yy2 mRNA that confers sensitivity to 4E-BP-mediated translational suppression. Thus, we conclude that YY2 is a major regulator of mESC self-renewal and lineage commitment and document a multilayer regulatory mechanism that controls its expression."	"Pluripotency induction in HEK293T cells by concurrent expression of STELLA, OCT4 and NANOS2. Germline stem cells (GSCs) are attractive biological models because of their strict control on pluripotency gene expression, and their potential for huge epigenetic changes in a short period of time. Few data exists on the cooperative impact of GSC-specific genes on differentiated cells. In this study, we over-expressed 3 GSC-specific markers, STELLA, OCT4 and NANOS2, collectively designated as (SON), using the novel polycistronic lentiviral gene construct FUM-FD, in HEK293T cells and evaluated promoter activity of the Stra8 GSC marker gene We could show that HEK293T cells expressed pluripotency and GSC markers following ectopic expression of the SON genes. We also found induction of pluripotency markers after serum starvation in non-transduced HEK293T cells. Expression profiling of SON-expressing and serum-starved cells at mRNA and protein level showed the potential of SON factors and serum starvation in the induction of ESRRB, NANOG, OCT4 and REX1 expression. Additionally, the data indicated that the mouse Stra8 promoter could only be activated in a subpopulation of HEK293T cells, regardless of SON gene expression. We conclude that heterogeneous population of the HEK293T cells might be easily shifted towards expression of the pluripotency markers by ectopic expression of the SON factors or by growth in serum depleted media."	"A new bookmark of the mitotic genome in embryonic stem cells. Embryonic stem cells maintain pluripotency through countless mitoses. A recent report shows that the transcription factor Esrrb remains bound to chromatin during mitosis, including at regulatory regions that support pluripotency. Mitotic chromatin occupancy by Esrrb might stabilize the defining transcriptional programmes of embryonic stem cells through cell division."	"Mitotic binding of Esrrb marks key regulatory regions of the pluripotency network. Pluripotent mouse embryonic stem cells maintain their identity throughout virtually infinite cell divisions. This phenomenon, referred to as self-renewal, depends on a network of sequence-specific transcription factors (TFs) and requires daughter cells to accurately reproduce the gene expression pattern of the mother. However, dramatic chromosomal changes take place in mitosis, generally leading to the eviction of TFs from chromatin. Here, we report that Esrrb, a major pluripotency TF, remains bound to key regulatory regions during mitosis. We show that mitotic Esrrb binding is highly dynamic, driven by specific recognition of its DNA-binding motif and is associated with early transcriptional activation of target genes after completion of mitosis. These results indicate that Esrrb may act as a mitotic bookmarking factor, opening another perspective to molecularly understand the role of sequence-specific TFs in the epigenetic control of self-renewal, pluripotency and genome reprogramming."	"Expression of Six Proteins Causes Reprogramming of Porcine Fibroblasts Into Induced Pluripotent Stem Cells With Both Active X Chromosomes. In this study, we created porcine-induced pluripotent stem (iPS) cells with the expression of six reprogramming factors (Oct3/4, Klf4, Sox2, c-Myc, Lin28, and Nanog). The resulting cells showed growth dependent on LIF (leukemia inhibitory factor) and expression of multiple stem cell markers. Furthermore, the iPS cells caused teratoma formation with three layers of differentiation and had both active X chromosomes (XaXa). Our iPS cells satisfied the both of important characteristics of stem cells: teratoma formation and activation of both X chromosomes. Injection of these iPS cells into morula stage embryos showed that these cells participate in the early stage of porcine embryogenesis. Furthermore, the RNA-Seq analysis detected that expression levels of endogenous pluripotent related genes, NANOG, SOX2, ZFP42, OCT3/4, ESRRB, and ERAS were much higher in iPS with six factors than that with four reprogramming factors. We can conclude that the expression of six reprogramming factors enables the creation of porcine iPS cells, which is partially close to naive iPS state. J. Cell. Biochem. 118: 537-553, 2017. © 2016 Wiley Periodicals, Inc."	"Complementary Roles of Estrogen-Related Receptors in Brown Adipocyte Thermogenic Function. Brown adipose tissue (BAT) thermogenesis relies on a high abundance of mitochondria and the unique expression of the mitochondrial Uncoupling Protein 1 (UCP1), which uncouples substrate oxidation from ATP synthesis. Adrenergic stimulation of brown adipocytes activates UCP1-mediated thermogenesis; it also induces the expression of Ucp1 and other genes important for thermogenesis, thereby endowing adipocytes with higher oxidative and uncoupling capacities. Adipocyte mitochondrial biogenesis and oxidative capacity are controlled by multiple transcription factors, including the estrogen-related receptor (ERR)α. Whole-body ERRα knockout mice show decreased BAT mitochondrial content and oxidative function but normal induction of Ucp1 in response to cold. In addition to ERRα, brown adipocytes express ERRβ and ERRγ, 2 nuclear receptors that are highly similar to ERRα and whose function in adipocytes is largely unknown. To gain insights into the roles of all 3 ERRs, we assessed mitochondrial function and adrenergic responses in primary brown adipocytes lacking combinations of ERRs. We show that adipocytes lacking just ERRα, the most abundant ERR, show only mild mitochondrial defects. Adipocytes lacking ERRβ and ERRγ also show just mild defects. In contrast, adipocytes lacking all 3 ERRs have severe reductions in mitochondrial content and oxidative capacity. Moreover, adipocytes lacking all 3 ERRs have defects in the transcriptional and metabolic response to adrenergic stimulation, suggesting a wider role of ERRs in BAT function than previously appreciated. Our study shows that ERRs have a great capacity to compensate for each other in protecting mitochondrial function and the metabolic response to adrenergic signaling, processes vital to BAT function."	"Esrrb directly binds to Gata6 promoter and regulates its expression with Dax1 and Ncoa3. Estrogen-related receptor beta (Esrrb) is expressed in embryonic stem (ES) cells and is involved in self-renewal ability and pluripotency. Previously, we found that Dax1 is associated with Esrrb and represses its transcriptional activity. Further, the disruption of the Dax1-Esrrb interaction increases the expression of the extra-embryonic endoderm marker Gata6 in ES cells. Here, we investigated the influences of Esrrb and Dax1 on Gata6 expression. Esrrb overexpression in ES cells induced endogenous Gata6 mRNA and Gata6 promoter activity. In addition, the Gata6 promoter was found to contain the Esrrb recognition motifs ERRE1 and ERRE2, and the latter was the responsive element of Esrrb. Associations between ERRE2 and Esrrb were then confirmed by biotin DNA pulldown and chromatin immunoprecipitation assays. Subsequently, we showed that Esrrb activity at the Gata6 promoter was repressed by Dax1, and although Dax1 did not bind to ERRE2, it was associated with Esrrb, which directly binds to ERRE2. In addition, the transcriptional activity of Esrrb was enhanced by nuclear receptor co-activator 3 (Ncoa3), which has recently been shown to be a binding partner of Esrrb. Finally, we showed that Dax1 was associated with Ncoa3 and repressed its transcriptional activity. Taken together, the present study indicates that the Gata6 promoter is activated by Esrrb in association with Ncoa3, and Dax1 inhibited activities of Esrrb and Ncoa3, resulting maintenance of the undifferentiated status of ES cells."	"Estrogen-related receptor β (ERRβ) - renaissance receptor or receptor renaissance? Estrogen-related receptors (ERRs) are founding members of the orphan nuclear receptor (ONR) subgroup of the nuclear receptor superfamily. Twenty-seven years of study have yet to identify cognate ligands for the ERRs, though they have firmly placed ERRα and ERRγ at the intersection of cellular metabolism and oncogenesis. The pace of discovery for novel functions of ERRβ, however, has until recently been somewhat slower than that of its family members. ERRβ has also been largely ignored in summaries and perspectives of the ONR literature. Here, we provide an overview of established and emerging knowledge of ERRβ in mouse, man, and other species, highlighting unique aspects of ERRβ biology that set it apart from the other two estrogen-related receptors, with a focus on the impact of alternative splicing on the structure and function of this receptor."	"A polymorphism in human estrogen-related receptor beta (ESRRβ) predicts audiometric temporary threshold shift. A non-synonymous single nucleotide polymorphism (rs61742642; C to T, P386S) in the ligand-binding domain of human estrogen-related receptor beta (ESRRβ) showed possible association to noise-induced hearing loss (NIHL) in our previous study. This study was conducted to examine the effect of the ESRRβ rs61742642 T variant on temporary threshold shift (TTS). TTS was induced by 10 minutes of exposure to audiometric narrow-band noise centered at 2000 Hz. Hearing thresholds and distortion product otoacoustic emissions input output function (DP IO) at 2000, 3000, and 4000 Hz were measured before and after the noise exposure. Nineteen participants with rs61742642 CT genotype and 40 participants with rs61742642 CC genotype were recruited for the study. Participants with the CT genotype acquired a significantly greater TTS without convincing evidence of greater DP IO temporary level shift (DPTLS) compared to participants with the CC genotype. The results indicated that the ESRRβ polymorphism is associated with TTS. Future studies were recommended to explore molecular pathways leading to increased susceptibility to NIHL."	"Antimitotic activity of DY131 and the estrogen-related receptor beta 2 (ERRβ2) splice variant in breast cancer. Breast cancer remains a leading cause of cancer-related death in women, and triple negative breast cancer (TNBC) lacks clinically actionable therapeutic targets. Death in mitosis is a tumor suppressive mechanism that occurs in cancer cells experiencing a defective M phase. The orphan estrogen-related receptor beta (ERRβ) is a key reprogramming factor in murine embryonic and induced pluripotent stem cells. In primates, ERRβ is alternatively spliced to produce several receptor isoforms. In cellular models of glioblastoma, short form (ERRβsf) and beta2 (ERRβ2) splice variants differentially regulate cell cycle progression in response to the synthetic agonist DY131, with ERRβ2 driving arrest in G2/M.The goals of the present study are to determine the cellular function(s) of ligand-activated ERRβ splice variants in breast cancer and evaluate the potential of DY131 to serve as an antimitotic agent, particularly in TNBC. DY131 inhibits growth in a diverse panel of breast cancer cell lines, causing cell death that involves the p38 stress kinase pathway and a bimodal cell cycle arrest. ERRβ2 facilitates the block in G2/M, and DY131 delays progression from prophase to anaphase. Finally, ERRβ2 localizes to centrosomes and DY131 causes mitotic spindle defects. Targeting ERRβ2 may therefore be a promising therapeutic strategy in breast cancer."	"CHD1L promotes lineage reversion of hepatocellular carcinoma through opening chromatin for key developmental transcription factors. High-grade tumors with poor differentiation usually show phenotypic resemblance to their developmental ancestral cells. Cancer cells that gain lineage precursor cell properties usually hijack developmental signaling pathways to promote tumor malignant progression. However, the molecular mechanisms underlying this process remain unclear. In this study, the chromatin remodeler chromodomain-helicase-DNA-binding-protein 1-like (CHD1L) was found closely associated with liver development and hepatocellular carcinoma (HCC) tumor differentiation. Expression of CHD1L decreased during hepatocyte maturation and increased progressively from well-differentiated HCCs to poorly differentiated HCCs. Chromatin immunoprecipitation followed by high-throughput deep sequencing found that CHD1L could bind to the genomic sequences of genes related to development. Bioinformatics-aided network analysis indicated that CHD1L-binding targets might form networks associated with developmental transcription factor activation and histone modification. Overexpression of CHD1L conferred ancestral precursor-like properties of HCC cells both in vitro and in vivo. Inhibition of CHD1L reversed tumor differentiation and sensitized HCC cells to sorafenib treatment. Mechanism studies revealed that overexpression of CHD1L could maintain an active &quot;open chromatin&quot; configuration at promoter regions of estrogen-related receptor-beta and transcription factor 4, both of which are important regulators of HCC self-renewal and differentiation. In addition, we found a significant correlation of CHD1L with developmental transcriptional factors and lineage differentiation markers in clinical HCC patients. Genomic amplification of chromatin remodeler CHD1L might drive dedifferentiation of HCC toward an ancestral lineage through opening chromatin for key developmental transcriptional factors; further inhibition of CHD1L might &quot;downgrade&quot; poorly differentiated HCCs and provide novel therapeutic strategies."	"Erratum to &quot;Significant association of full-thickness rotator cuff tears and estrogen-related receptor-β (ESRRB)&quot; [J Shoulder Elbow Surg 2015;24:e31-e35]. NA"	"Supplementation With Cell-Penetrating Peptide-Conjugated Estrogen-Related Receptor β Improves the Formation of the Inner Cell Mass and the Development of Vitrified/Warmed Mouse Embryos. Estrogen-related receptor β (ESRRB), which is a member of the nuclear orphan receptor family, regulates the messenger RNA (mRNA) expression levels of the transcription factors, Oct4 and Nanog, in early embryos and germ cells, thereby maintaining the undifferentiated state and pluripotency of the relevant cells. The present study was designed to determine whether the upregulation of pluripotency-related genes by direct delivery of ESRRB protein may affect on the commitment into inner cell mass (ICM) or the development of vitrified/warmed mouse embryos. Recombinant cell-penetrating peptide (CPP) ESRRB protein was synthesized and then added into a culture medium for cryopreserved mouse embryos. Vitrified/warmed 8-cell embryos were cultured in KSOM with/without 2 μg/mL CPP-ESRRB for 48 hours and then analyzed or transferred to the uteri of foster mothers. The mRNA expression of Oct4 and Nanog was higher in CPP-ESRRB-treated blastocysts compared to the untreated controls. No difference was observed in embryonic development, but ICM:trophectoderm ratio was increased in the CPP-ESRRB-treated group compared to the untreated group, and after embryo transfer, a higher implantation rate was obtained in the CPP-ESRRB-treated group compared to the untreated group. This study shows for the first time that recombinant CPP-ESRRB can be easily integrated into vitrified/warmed mouse embryos and that it increases Oct4 expression (via a pluripotency-related gene pathway), ICM formation, and the further embryonic and full-term development of vitrified/warmed mouse embryos. This CPP-conjugated protein delivery system could therefore be a useful tool for improving assisted reproductive technology."	"Identification of a genetic variant associated with rotator cuff repair healing. A familial and genetic predisposition for the development of rotator cuff tearing has been identified. The purpose of this study was to determine if a familial predisposition exists for healing after rotator cuff repair and if the reported significant association with a single-nucleotide polymorphism (SNP) in the ESRRB gene is present in patients who fail to heal. The study recruited 72 patients undergoing arthroscopic rotator cuff repair for a full-thickness posterosuperior tear. Magnetic resonance imaging studies were performed at a minimum of 1 year postoperatively (average, 2.6 years). Healing failures were classified as lateral or medial. Self-reported family history of rotator cuff tearing data and genome-wide genotypes were available. Characteristics of cases with and without a family history of rotator cuff tearing were compared, and a comparison of the frequency of SNP 1758384 (in ESRRB) was performed between patients who healed and those who failed to heal. Of the rotator cuff repairs, 42% failed to heal; 42% of patients reported a family history of rotator cuff tear. Multivariate regression analysis showed a significant association between familiality and overall healing failure (medial and lateral failures) (P = .036) and lateral failures independently (P = .006). An increased risk for the presence of a rare allele for SNP rs17583842 was present in lateral failures compared with those that healed (P = .005). Individuals with a family history of rotator cuff tearing were more likely to have repair failures. Significant association of a SNP variant in the ESRRB gene was also observed with lateral failure."	"CHIR99021 enhances Klf4 Expression through β-Catenin Signaling and miR-7a Regulation in J1 Mouse Embryonic Stem Cells. Understanding the mechanisms that regulate pluripotency of embryonic stem cells (ESCs) is important to ensure their safe clinical use. CHIR99021 (CHIR)-induced activation of Wnt/β-catenin signaling promotes self-renewal in mouse ESCs (mESCs). β-catenin functions individually or cooperates with transcription factors to activate stemness factors such as c-Myc, Esrrb, Pou5f1, and Nanog. However the relationship between the core pluripotent factor, Kruppel-like factor 4 (also known as GKLF or EZF) and Wnt/β-catenin signaling, remains ambiguous in J1 mESCs. DNA microarray analysis revealed that CHIR-treatment promoted pluripotency-maintaining transcription factors and repressed germ layer specification markers. CHIR also promoted genes related to the development of extracellular regions and the plasma membrane to maintain pluripotency of J1 mESCs. Among the CHIR-regulated genes, Klf4 has not been reported previously. We identified a novel cis element in the Klf4 gene that was activated by β-catenin in J1 mESCs. We determined that β-catenin interacted with this cis element, identifying Klf4 as a β-catenin target gene in this context. Moreover, several microRNAs that targeted the 3'-UTR of Klf4 mRNA were identified, with miR-7a being down-regulated by CHIR in a β-catenin-independent manner in J1 mESCs. These data collectively suggest that CHIR enhances Klf4 expression by repressing miR-7a expression or canonical Wnt pathway activation. "	"Distinct Transcriptional and Anti-Mycobacterial Profiles of Peripheral Blood Monocytes Dependent on the Ratio of Monocytes: Lymphocytes. The ratio of monocytes and lymphocytes (ML ratio) in peripheral blood is associated with tuberculosis and malaria disease risk and cancer and cardiovascular disease outcomes. We studied anti-mycobacterial function and the transcriptome of monocytes in relation to the ML ratio. Mycobacterial growth inhibition assays of whole or sorted blood were performed and mycobacteria were enumerated by liquid culture. Transcriptomes of unstimulated CD14 + monocytes isolated by magnetic bead sorting were characterised by microarray. Transcript expression was tested for association with ML ratio calculated from leucocyte differential counts by linear regression. The ML ratio was associated with mycobacterial growth in vitro (β = 2.23, SE 0.91, p = 0.02). Using sorted monocytes and lymphocytes, in vivo ML ratio (% variance explained R(2) = 11%, p = 0.02) dominated over in vitro ratios (R(2) = 5%, p = 0.10) in explaining mycobacterial growth. Expression of 906 genes was associated with the ML ratio and 53 with monocyte count alone. ML-ratio associated genes were enriched for type-I and -II interferon signalling (p = 1.2 × 10(− 8)), and for genes under transcriptional control of IRF1, IRF2, RUNX1, RELA and ESRRB. The ML-ratio-associated gene set was enriched in TB disease (3.11-fold, 95% CI: 2.28-4.19, p = 5.7 × 10(− 12)) and other inflammatory diseases including atopy, HIV, IBD and SLE. The ML ratio is associated with distinct transcriptional and anti-mycobacterial profiles of monocytes that may explain the disease associations of the ML ratio."	"Induced Pluripotent Stem Cells of Microtus levis x Microtus arvalis Vole Hybrids: Conditions Necessary for Their Generation and Self-Renewal. Every year, the list of mammalian species for which cultures of pluripotent stem cells (PSCs) are generated increases. PSCs are a unique tool for extending the limits of experimental studies and modeling different biological processes. In this work, induced pluripotent stem cells (iPSCs) from the hybrids of common voles Microtus levis and Microtus arvalis, which are used as model objects to study genome organization on the molecular-genetic level and the mechanisms of X-chromosome inactivation, have been generated. Vole iPSCs were isolated and cultured in a medium containing cytokine LIF, basic fibroblast growth factor (bFGF), ascorbic acid, and fetal bovine serum. Undifferentiated state of vole iPSCs is maintained by activation of their endogenous pluripotency genes - Nanog, Oct4, Sox2, Sall4, and Esrrb. The cells were able to maintain undifferentiated state for at least 28 passages without change in their morphology and give rise to three germ layers (ectoderm, mesoderm and endoderm) upon differentiation. "	"Esrrb-Cre excises loxP-flanked alleles in early four-cell embryos. Among transgenic mice with ubiquitous Cre recombinase activity, all strains to date excise loxP-flanked (floxed) alleles either at or before the zygote stage or at nondescript stages of development. This manuscript describes a new mouse strain, in which Cre recombinase, integrated into the Esrrb locus, efficiently excises floxed alleles in pre-implantation embryos at the onset of the four-cell stage. By enabling inactivation of genes only after the embryo has undergone two cleavages, this strain should facilitate in vivo studies of genes with essential gametic or zygotic functions. In addition, this study describes a new, highly pluripotent hybrid C57BL/6J x 129S1/SvImJ mouse embryonic stem cell line, HYB12, in which this knockin and additional targeted alleles have been generated."	"Messenger RNA profile analysis deciphers new Esrrb responsive genes in prostate cancer cells. Orphan nuclear receptor estrogen related receptor β (Esrrb or ERRβ) is well known in stem cells and early embryonic development. However, little is known about its function in cancer. We investigated the mRNA profile alterations induced by Esrrb expression and its synthetic ligand DY131 in human prostate cancer DU145 cells via RNA-Seq analysis. We distinguished 67 mRNAs differentially expressed by Esrrb alone. Although DY131 alone did not change any gene, treatment of DY131 in the presence of Esrrb altered 1161 mRNAs. These observations indicated Esrrb had both ligand-independent and ligand-dependent activity. When Esrrb was expressed, DY131 treatment further regulated 15 Esrrb-altered mRNAs. DY131 acted as an antagonist for 11 of 15 mRNAs (wdr52, f13a1, pxdn, spns2, loc100506599, tagln, loc441454, tkel1, sema3f, zcwpw2, sdc2) and as an agonist for 4 of the 15 mRNAs (rarres3, oasl, padi2, ddx60). Gene ontology analyses showed altered genes are related to transcription and translation regulation, cell proliferation and apoptosis regulation, and cellular metabolism. Our results characterized mRNA profiles in DU145 prostate cancer cells driven by Esrrb expression and Esrrb ligand DY131, and provided multiple markers to characterize Esrrb's function in Esrrb research."	"Genes targeted by the Hedgehog-signaling pathway can be regulated by Estrogen related receptor β. Nuclear receptor family member, Estrogen related receptor β, and the Hedgehog signal transduction pathway are both reported to relate to tumorigenesis and induced pluripotent stem cell reprogramming. We hypothesize that Estrogen related receptor β can modulate the Hedgehog signaling pathway and affect Hedgehog driven downstream gene expression. We established an estrogen related receptor β-expressing Hedgehog-responsive NIH3T3 cell line by Esrrb transfection, and performed mRNA profiling using RNA-Seq after Hedgehog ligand conditioned medium treatment. Esrrb expression altered 171 genes, while Hedgehog signaling activation alone altered 339 genes. Additionally, estrogen related receptor β expression in combination with Hedgehog signaling activation affects a group of 109 Hedgehog responsive mRNAs, including Hsd11b1, Ogn, Smoc2, Igf1, Pdcd4, Igfbp4, Stmn1, Hp, Hoxd8, Top2a, Tubb4b, Sfrp2, Saa3, Prl2c3 and Dpt. We conclude that Estrogen related receptor β is capable of interacting with Hh-signaling downstream targets. Our results suggest a new level of regulation of Hedgehog signaling by Estrogen related receptor β, and indicate modulation of Estrogen related receptor β can be a new strategy to regulate various functions driven by the Hedgehog signaling pathway."	"ESRRB polymorphisms are associated with comorbidity of temporomandibular disorders and rotator cuff disease. Temporomandibular disorders (TMD) are associated with comorbidity. Shoulder pain is among the symptoms associated with TMD. The purpose of this study was to investigate the association between TMD and rotator cuff disease (RCD) and related genetic aspects. All subjects underwent orofacial and shoulder examinations. The control group comprised 30 subjects with no pain. Affected subjects were divided into three groups: RCD (TMD-free, n=16), TMD (RCD-free, n=13), and TMD/RCD (patients with both RCD and TMD, n=49). A total of eight single nucleotide polymorphisms in the ESRRB gene were investigated. A chemiluminescent immunoassay was used to measure estradiol levels. Surface electromyography recorded head and cervical muscle activity. The χ(2) test and Student t-test/Mann-Whitney test were used to assess the significance of nominal and continuous variables. A P-value of &lt;0.05 was considered significant. TMD subjects were seven times more susceptible to RCD than controls. The rs1676303 TT (P=0.02) and rs6574293 GG (P=0.04) genotypes were associated with RCD and TMD, respectively. TMD/RCD subjects showed associations with rs4903399 (P=0.02), rs10132091 (P=0.02), and CTTCTTAG/CCTCTCAG (P=0.01) haplotypes and lower muscle activity. Estradiol levels were similar among groups. This study supports TMD as a risk factor for RCD. ESRRB haplotypes and low muscle activity are common biomechanical characteristics in subjects with both diseases."	"Combined Overexpression of JARID2, PRDM14, ESRRB, and SALL4A Dramatically Improves Efficiency and Kinetics of Reprogramming to Induced Pluripotent Stem Cells. Identification of a gene set capable of driving rapid and proper reprogramming to induced pluripotent stem cells (iPSCs) is an important issue. Here we show that the efficiency and kinetics of iPSC reprogramming are dramatically improved by the combined expression of Jarid2 and genes encoding its associated proteins. We demonstrate that forced expression of JARID2 promotes iPSC reprogramming by suppressing the expression of Arf, a known reprogramming barrier, and that the N-terminal half of JARID2 is sufficient for such promotion. Moreover, JARID2 accelerated silencing of the retroviral Klf4 transgene and demethylation of the Nanog promoter, underpinning the potentiating activity of JARID2 in iPSC reprogramming. We further show that JARID2 physically interacts with ESRRB, SALL4A, and PRDM14, and that these JARID2-associated proteins synergistically and robustly facilitate iPSC reprogramming in a JARID2-dependent manner. Our findings provide an insight into the important roles of JARID2 during reprogramming and suggest that the JARID2-associated protein network contributes to overcoming reprogramming barriers."	"PAX5-ESRRB is a recurrent fusion gene in B-cell precursor pediatric acute lymphoblastic leukemia. NA"	"Role of the small subunit processome in the maintenance of pluripotent stem cells. RNA-binding proteins (RBPs) play integral roles in gene regulation, yet only a small fraction of RBPs has been studied in the context of stem cells. Here we applied an RNAi screen for RBPs in mouse embryonic stem cells (ESCs) and identified 16 RBPs involved in pluripotency maintenance. Interestingly, six identified RBPs, including Krr1 and Ddx47, are part of a complex called small subunit processome (SSUP) that mediates 18S rRNA biogenesis. The SSUP components are preferentially expressed in stem cells and enhance the global translational rate, which is critical to sustain the protein levels of labile pluripotency factors such as Nanog and Esrrb. Furthermore, the SSUP proteins are required for efficient reprogramming of induced pluripotent stem cells. Our study uncovers the role of the SSUP and the importance of translational control in stem cell fate decision. "	"Characterization and functional analysis of porcine estrogen-related receptors and their alternative splicing variants. Estrogen-related receptors (ESRR) are orphan nuclear hormone receptors with unidentified ligands; they play important roles in tissue regulation and development and maintenance of pluripotent cell identity. The splicer variant, genomic organization, and physiological roles of ESRR have been elucidated in the human and the mouse. However, in livestock, they remain elusive. In this study, we cloned porcine ESRR family members , , and . Two alternative splicing variants, and , and a novel were identified. To determine the domain function, we constructed vectors with sequential deletions of the ESRRB coding sequence. The functional analysis showed that the C domain of ESRR plays a core role in promoting the activation of estrogen response elements that are found in all kinds of ESRR-targeting genes, whereas the E domain is not essential for transcription regulation of ESRR unless a specific and identified ligand is applied. "	"[Cloning and regulation of pig estrogen related receptor β gene (ESRRB) promoter]. The estrogen related receptor family member Esrrb (Estrogen related receptor β) is a gene that expresses in the early stage of embryo and plays an important role in the core pluripotent network. Its function has been analyzed in human and mouse, although no report so far related to pig. Therefore, to explore its mechanism of transcriptional regulation and expression pattern, we cloned a 3.3 kb pig ESRRB promoter by PCR and constructed the green fluorescence protein (GFP) reporter vector pE3.3. We used these vectors to study the ESRRB expression pattern in 293T, Hela and C2C12. Sequence was analyzed for regulatory elements that share homology to known transcription factor binding sites by TFSEARCH and JASPER program. Some pluripotency related genes such as SMAD, STAT3, MYC, KLF4 and ESRRB have been found within the 3.3 kb sequence by co-transfected pig ESRRB promoter and these potential regulators. We found that ESRRB only expressed in 293T and SMAD could activate ESRRB expression obviously. To determine the core promoter region, a series of ESRRB promoter fragments with gradually truncated 5'-end were produced by PCR and inserted into pGL3-Basic vector. After transient transfection into 293T, dual luciferase assay was used to measure these promoter activities. The result suggested that the core promoter of pig ESRRB located within -25 bp to -269 bp region. These results suggest that these transcription factor binding sites and the core promoter region may be essential for transcriptional regulation of pig ESRRB gene."	"Gene expression in breastmilk cells is associated with maternal and infant characteristics. Breastmilk is a rich source of cells with a heterogeneous composition comprising early-stage stem cells, progenitors and more differentiated cells. The gene expression profiles of these cells and their associations with characteristics of the breastfeeding mother and infant are poorly understood. This study investigated factors associated with the cellular dynamics of breastmilk and explored variations amongst women. Genes representing different breastmilk cell populations including mammary epithelial and myoepithelial cells, progenitors, and multi-lineage stem cells showed great variation in expression. Stem cell markers ESRRB and CK5, myoepithelial marker CK14, and lactocyte marker α-lactalbumin were amongst the genes most highly expressed across all samples tested. Genes exerting similar functions, such as either stem cell regulation or milk production, were found to be closely associated. Infant gestational age at delivery and changes in maternal bra cup size between pre-pregnancy and postpartum lactation were associated with expression of genes controlling stemness as well as milk synthesis. Additional correlations were found between genes and dyad characteristics, which may explain abnormalities related to low breastmilk supply or preterm birth. Our findings highlight the heterogeneity of breastmilk cell content and its changes associated with characteristics of the breastfeeding dyad that may reflect changing infant needs. "	"Fgf and Esrrb integrate epigenetic and transcriptional networks that regulate self-renewal of trophoblast stem cells. Esrrb (oestrogen-related receptor beta) is a transcription factor implicated in embryonic stem (ES) cell self-renewal, yet its knockout causes intrauterine lethality due to defects in trophoblast development. Here we show that in trophoblast stem (TS) cells, Esrrb is a downstream target of fibroblast growth factor (Fgf) signalling and is critical to drive TS cell self-renewal. In contrast to its occupancy of pluripotency-associated loci in ES cells, Esrrb sustains the stemness of TS cells by direct binding and regulation of TS cell-specific transcription factors including Elf5 and Eomes. To elucidate the mechanisms whereby Esrrb controls the expression of its targets, we characterized its TS cell-specific interactome using mass spectrometry. Unlike in ES cells, Esrrb interacts in TS cells with the histone demethylase Lsd1 and with the RNA Polymerase II-associated Integrator complex. Our findings provide new insights into both the general and context-dependent wiring of transcription factor networks in stem cells by master transcription factors. "	"CHD1L Regulated PARP1-Driven Pluripotency and Chromatin Remodeling During the Early-Stage Cell Reprogramming. PARP1 and poly(ADP-ribosyl)ation (PARylation) have been shown to be essential for the initial steps of cellular reprogramming. However, the mechanism underlying PARP1/PARylation-regulated activation of pluripotency loci remains undetermined. Here, we demonstrate that CHD1L, a DNA helicase, possesses chromatin remodeling activity and interacts with PARP1/PARylation in regulating pluripotency during reprogramming. We found that this interaction is mediated through the interplay of the CHD1L macro-domain and the PAR moiety of PARylated-PARP1. Chromatin immunoprecipitation assays demonstrated the co-occupancy of CHD1L and PARP1 at Pou5f1, Nanog, and Esrrb pluripotency loci. Knockdown of CHD1L significantly blocked the binding activity of PARP1 at pluripotency loci and inhibited the efficiency of PARP1-driven reprogramming. Notably, we found that CHD1L-promoted reprogramming requires both a PARP1-interacting domain and DNA helicase activity, partly contributing to the chromatin-remodeling states of pluripotency loci. Taken together, these results identify CHD1L as a key chromatin remodeler involved in PARP1/PARylation-regulated early-stage reprogramming and pluripotency in stem cells."	"Identifying Children With Poor Cochlear Implantation Outcomes Using Massively Parallel Sequencing. Cochlear implantation is currently the treatment of choice for children with severe to profound hearing impairment. However, the outcomes with cochlear implants (CIs) vary significantly among recipients. The purpose of the present study is to identify the genetic determinants of poor CI outcomes. Twelve children with poor CI outcomes (the &quot;cases&quot;) and 30 &quot;matched controls&quot; with good CI outcomes were subjected to comprehensive genetic analyses using massively parallel sequencing, which targeted 129 known deafness genes. Audiological features, imaging findings, and auditory/speech performance with CIs were then correlated to the genetic diagnoses. We identified genetic variants which are associated with poor CI outcomes in 7 (58%) of the 12 cases; 4 cases had bi-allelic PCDH15 pathogenic mutations and 3 cases were homozygous for the DFNB59 p.G292R variant. Mutations in the WFS1, GJB3, ESRRB, LRTOMT, MYO3A, and POU3F4 genes were detected in 7 (23%) of the 30 matched controls. The allele frequencies of PCDH15 and DFNB59 variants were significantly higher in the cases than in the matched controls (both P &lt; 0.001). In the 7 CI recipients with PCDH15 or DFNB59 variants, otoacoustic emissions were absent in both ears, and imaging findings were normal in all 7 implanted ears. PCDH15 or DFNB59 variants are associated with poor CI performance, yet children with PCDH15 or DFNB59 variants might show clinical features indistinguishable from those of other typical pediatric CI recipients. Accordingly, genetic examination is indicated in all CI candidates before operation."	"Gata6 potently initiates reprograming of pluripotent and differentiated cells to extraembryonic endoderm stem cells. Transcription factor-mediated reprograming is a powerful method to study cell fate changes. In this study, we demonstrate that the transcription factor Gata6 can initiate reprograming of multiple cell types to induced extraembryonic endoderm stem (iXEN) cells. Intriguingly, Gata6 is sufficient to drive iXEN cells from mouse pluripotent cells and differentiated neural cells. Furthermore, GATA6 induction in human embryonic stem (hES) cells also down-regulates pluripotency gene expression and up-regulates extraembryonic endoderm (ExEn) genes, revealing a conserved function in mediating this cell fate switch. Profiling transcriptional changes following Gata6 induction in mES cells reveals step-wise pluripotency factor disengagement, with initial repression of Nanog and Esrrb, then Sox2, and finally Oct4, alongside step-wise activation of ExEn genes. Chromatin immunoprecipitation and subsequent high-throughput sequencing analysis shows Gata6 enrichment near pluripotency and endoderm genes, suggesting that Gata6 functions as both a direct repressor and activator. Together, this demonstrates that Gata6 is a versatile and potent reprograming factor that can act alone to drive a cell fate switch from diverse cell types. "	"Proteins that bind regulatory regions identified by histone modification chromatin immunoprecipitations and mass spectrometry. The locations of transcriptional enhancers and promoters were recently mapped in many mammalian cell types. Proteins that bind those regulatory regions can determine cell identity but have not been systematically identified. Here we purify native enhancers, promoters or heterochromatin from embryonic stem cells by chromatin immunoprecipitations (ChIP) for characteristic histone modifications and identify associated proteins using mass spectrometry (MS). 239 factors are identified and predicted to bind enhancers or promoters with different levels of activity, or heterochromatin. Published genome-wide data indicate a high accuracy of location prediction by ChIP-MS. A quarter of the identified factors are important for pluripotency and includes Oct4, Esrrb, Klf5, Mycn and Dppa2, factors that drive reprogramming to pluripotent stem cells. We determined the genome-wide binding sites of Dppa2 and find that Dppa2 operates outside the classical pluripotency network. Our ChIP-MS method provides a detailed read-out of the transcriptional landscape representative of the investigated cell type. "	"Estrogen-related Receptor β Reduces the Subnuclear Mobility of Estrogen Receptor α and Suppresses Estrogen-dependent Cellular Function. Estrogen-related receptor (ERR) is a member of the nuclear receptor superfamily that has strong homology with estrogen receptor (ER) α. ERR has three subtypes (α, β, and γ) expressed in estrogen-sensitive organs, including ovary, breast, and brain. No endogenous ligands of ERRs have been identified, but these receptors share a common DNA element with ERα and control estrogen-mediated gene transcription. Recent evidence suggests a role of ERRs in estrogen-related pathophysiology, but the detailed mechanisms of ERR functions in estrogen-related tissues are unclear. Using live-cell imaging with fluorescent protein labeling, we found that only ERRβ among the ERRs exhibits a punctate intranuclear pattern overlapping with ERα following 17β-estradiol (E2)-stimulation. Fluorescence recovery after photobleaching showed significant reduction of the mobility of ligand-activated ERα with co-expression of ERRβ. Fluorescence resonance energy transfer revealed that ERRβ directly interacts with ERα. The N-terminal domain of ERRβ was identified as the region that interacts with ERα. We also found a correlation between punctate cluster formation of ERα and interaction between the receptors. Expression of ERRβ significantly repressed ERα-mediated transactivity, whereas that of other ERR subtypes had no effect on the transactivity of ERα. Consistent with this finding, E2-stimulated proliferation of MCF-7 breast carcinoma cells and bcl-2 expression was significantly inhibited by expression of ERRβ. These results provide strong evidence for a suppressive effect of ERRβ on estrogen signaling through reduction of the intranuclear mobility of ERα. The findings further suggest a unique inhibitory role for ERRβ in estrogen-dependent cellular function such as cancer cell proliferation. "	"Photoreceptor cells display a daily rhythm in the orphan receptor Esrrβ. Nuclear orphan receptors are critical for the development and long-term survival of photoreceptor cells. In the present study, the expression of the nuclear orphan receptor Esrrβ--a transcriptional regulator of energy metabolism that protects rod photoreceptors from dystrophy--was tested under daily regulation in the retina and photoreceptor cells. The daily transcript and protein amount profiles were recorded in preparations of the whole retina and microdissected photoreceptor cells using quantitative PCR (qPCR) and western blot analysis. Esrrβ displayed a daily rhythm with elevated values at night in the whole retina and enriched photoreceptor cells. Daily regulation of Esrrβ mRNA depended on light input but not on melatonin, and evoked a corresponding rhythm in the Esrrβ protein. The data presented in this study indicate that daily regulation of Esrrβ in photoreceptor cells may contribute to their adaptation to 24-h changes in metabolic demands."	"Collaborative rewiring of the pluripotency network by chromatin and signalling modulating pathways. Reprogramming of somatic cells to induced pluripotent stem cells (iPSCs) represents a profound change in cell fate. Here, we show that combining ascorbic acid (AA) and 2i (MAP kinase and GSK inhibitors) increases the efficiency of reprogramming from fibroblasts and synergistically enhances conversion of partially reprogrammed intermediates to the iPSC state. AA and 2i induce differential transcriptional responses, each leading to the activation of specific pluripotency loci. A unique cohort of pluripotency genes including Esrrb require both stimuli for activation. Temporally, AA-dependent histone demethylase effects are important early, whereas Tet enzyme effects are required throughout the conversion. 2i function could partially be replaced by depletion of components of the epidermal growth factor (EGF) and insulin growth factor pathways, indicating that they act as barriers to reprogramming. Accordingly, reduction in the levels of the EGF receptor gene contributes to the activation of Esrrb. These results provide insight into the rewiring of the pluripotency network at the late stage of reprogramming. "	"Forced expression of Nanog or Esrrb preserves the ESC status in the absence of nucleostemin expression. Nucleostemin (NS) is a nucleolar GTP-binding protein that is involved in a plethora of functions including ribosomal biogenesis and maintenance of telomere integrity. In addition to its expression in cancerous cells, the NS gene is expressed in stem cells including embryonic stem cells (ESCs). Previous knockdown and knockout studies have demonstrated that NS is important to preserve the self-renewality and high expression levels of pluripotency marker genes in ESCs. Here, we found that forced expression of Nanog or Esrrb, but not other pluripotency factors, resulted in the dispensability of NS expression in ESCs. However, the detrimental phenotypes of ESCs associated with ablation of NS expression were not mitigated by forced expression of Rad51 or a nucleolar localization-defective NS mutant that counteracts the damage associated with loss of NS expression in other NS-expressing cells such as neural stem/progenitor cells. Thus, our results indicate that NS participates in preservation of the viability and integrity of ESCs, which is distinct from that in other NS-expressing cells."	"ERRβ splice variants differentially regulate cell cycle progression. Orphan receptors comprise nearly half of all members of the nuclear receptor superfamily. Despite having broad structural similarities to the classical estrogen receptors, estrogen-related receptors (ERRs) have their own unique DNA response elements and functions. In this study, we focus on 2 ERRβ splice variants, short form ERRβ (ERRβsf) and ERRβ2, and identify their differing roles in cell cycle regulation. Using DY131 (a synthetic agonist of ERRβ), splice-variant selective shRNA, and exogenous ERRβsf and ERRβ2 cDNAs, we demonstrate the role of ERRβsf in mediating the G1 checkpoint through p21. We also show ERRβsf is required for DY131-induced cellular senescence. A key novel finding of this study is that ERRβ2 can mediate a G2/M arrest in response to DY131. In the absence of ERRβ2, the DY131-induced G2/M arrest is reversed, and this is accompanied by p21 induction and a G1 arrest. This study illustrates novel functions for ERRβ splice variants and provides evidence for splice variant interaction. "	"An epigenomic roadmap to induced pluripotency reveals DNA methylation as a reprogramming modulator. Reprogramming of somatic cells to induced pluripotent stem cells involves a dynamic rearrangement of the epigenetic landscape. To characterize this epigenomic roadmap, we have performed MethylC-seq, ChIP-seq (H3K4/K27/K36me3) and RNA-Seq on samples taken at several time points during murine secondary reprogramming as part of Project Grandiose. We find that DNA methylation gain during reprogramming occurs gradually, while loss is achieved only at the ESC-like state. Binding sites of activated factors exhibit focal demethylation during reprogramming, while ESC-like pluripotent cells are distinguished by extension of demethylation to the wider neighbourhood. We observed that genes with CpG-rich promoters demonstrate stable low methylation and strong engagement of histone marks, whereas genes with CpG-poor promoters are safeguarded by methylation. Such DNA methylation-driven control is the key to the regulation of ESC-pluripotency genes, including Dppa4, Dppa5a and Esrrb. These results reveal the crucial role that DNA methylation plays as an epigenetic switch driving somatic cells to pluripotency."	"Vitamin C induces a pluripotent state in mouse embryonic stem cells by modulating microRNA expression. MicroRNAs (miRNAs), a group of noncoding RNAs, function as post-transcriptional gene regulators and control the establishment, self-renewal and differentiation of stem cells. Vitamin C has been recognized as a reprogramming enhancer because of its ability to induce a blastocyst-like state in embryonic stem cells (ESCs). However, knowledge on the regulation of miRNAs by vitamin C in ESCs is limited. In this study, we found that vitamin C induced miRNA expression, particularly of ESC-specific miRNAs. Moreover, vitamin C maintained the miRNA expression of the Dlk1-Dio3 imprinting region. The miRNAs in this region contain identical seed sequences, which target a class of genes, including Kdm6b, Klf13, and Sox6, and are mainly related to cell differentiation and development. These genes were significantly downregulated by vitamin C. Notably, miR-143 promoted self-renewal of mouse ESCs and suppressed expression of the de novo methyltransferase gene Dnmt3a. Knockdown of miR-143 by use of its inhibitor counteracted the vitamin C-induced reduction in Dnmt3a expression, showing that vitamin C repressed Dnmt3a expression via miR-143. Vitamin C also promoted DNA demethylation, including of pluripotency gene promoters (Tbx3, Tcl1, and Esrrb) and ESC-specific miRNA promoters (miR-290-295 and miR-17-92 clusters), and DNA hydroxymethylation, including of the intergenic differentially methylated region of the Dlk1-Dio3 region. These results strongly suggested that vitamin C promoted widespread DNA demethylation in gene promoters by modulating epigenetic modifiers, including Dnmt3a, which activated pluripotency genes and ESC-specific miRNAs. Then, differentiation and development genes were repressed by ESC-enriched miRNAs, which maintained the stem cell state."	"Differences in embryo quality are associated with differences in oocyte composition: a proteomic study in inbred mice. Current models of early mouse development assign roles to stochastic processes and epigenetic regulation, which are considered to be as influential as the genetic differences that exist between strains of the species Mus musculus. The aim of this study was to test whether mouse oocytes vary from each other in the abundance of gene products that could influence, prime, or even predetermine developmental trajectories and features of derivative embryos. Using the paradigm of inbred mouse strains, we quantified 2010 protein groups (SILAC LC-MS/MS) and 15205 transcripts (RNA deep sequencing) present simultaneously in oocytes of four strains tested (129/Sv, C57Bl/6J, C3H/HeN, DBA/2J). Oocytes differed according to donor strain in the abundance of catalytic and regulatory proteins, as confirmed for a subset (bromodomain adjacent to zinc finger domain, 1B [BAZ1B], heme oxygenase 1 [HMOX1], estrogen related receptor, beta [ESRRB]) via immunofluorescence in situ. Given a Pearson's r correlation coefficient of 0.18-0.20, the abundance of oocytic proteins could not be predicted from that of cognate mRNAs. Our results document that a prerequisite to generate embryo diversity, namely the different abundances of maternal proteins in oocytes, can be studied in the model of inbred mouse strains. Thus, we highlight the importance of proteomic quantifications in modern embryology. All MS data have been deposited in the ProteomeXchange with identifier PXD001059 (http://proteomecentral.proteomexchange.org/dataset/PXD001059). "	"Autocrine FGF feedback can establish distinct states of Nanog expression in pluripotent stem cells: a computational analysis. The maintenance of stem cell pluripotency is controlled by a core cluster of transcription factors, NANOG, OCT4 and SOX2 - genes that jointly regulate each other's expression. The expression of some of these genes, especially of Nanog, is heterogeneous in a population of undifferentiated stem cells in culture. Transient changes in expression levels, as well as heterogeneity of the population is not restricted to this core regulator, but involve a large number of other genes that include growth factors, transcription factors or signal transduction proteins. As the molecular mechanisms behind NANOG expression heterogeneity is not yet understood, we explore by computational modeling the core transcriptional regulatory circuit and its input from autocrine FGF signals that act through the MAP kinase cascade. We argue that instead of negative feedbacks within the core NANOG-OCT4-SOX2 transcriptional regulatory circuit, autocrine signaling loops such as the Esrrb - FGF - ERK feedback considered here are likely to generate distinct sub-states within the &quot;ON&quot; state of the core Nanog switch. Thus, the experimentally observed fluctuations in Nanog transcription levels are best explained as noise-induced transitions between negative feedback-generated sub-states. We also demonstrate that ERK phosphorilation is altered and being anti-correlated with fluctuating Nanog expression - in accord with model simulations. Our modeling approach assigns an empirically testable function to the transcriptional regulators Klf4 and Esrrb, and predict differential regulation of FGF family members. We argue that slow fluctuations in Nanog expression likely reflect individual cell-specific changes in parameters of an autocrine feedback loop, such as changes in ligand capture efficiency, receptor numbers or the presence of crosstalks within the MAPK signal transduction pathway. We proposed a model that operates with binding affinities of multiple transcriptional regulators of pluripotency, and the activity of an autocrine signaling pathway. The resulting model produces varied expression levels of several components of pluripotency regulation, largely consistent with empirical observations reported previously and in this present work."	"Significant association of full-thickness rotator cuff tears and estrogen-related receptor-β (ESRRB). The precise etiology of rotator cuff disease is unknown, but prior evidence suggests a role for genetic factors. Variants of estrogen-related receptor-β (ESRRB) have been previously associated with rotator cuff disease. The purpose of the present study was to confirm the association between multiple candidate genes, including ESRRB, and rotator cuff disease in an independent set of patients with rotator cuff tear. The Illumina 5M (Illumina Inc, San Diego, CA, USA) single nucleotide polymorphism (SNP) platform was used to genotype 175 patients with rotator cuff tear. Genotypes were used to select a set of 2595 genetically matched Caucasian controls available from the Illumina iControls database. Tests of association were performed with Genome-wide Efficient Mixed Model Association (GEMMA) software at 69 SNPs that fell within 20 kb of 6 candidate genes (DEFB1, DENND2C, ESRRB, FGF3, FGF10, and FGFR1). Tests of association revealed 1 significantly associated SNP occurring in ESRRB (rs17583842; P = 4.4E-4). Another SNP within ESRRB (rs7157192) had a nominal P value of 7.8E-3. FastPHASE software estimated 2 frequent haplotypes among 54 individuals who carried both risk alleles at these 2 SNPs. The first haplotype had a frequency of 13.9% (n = 15) in risk-allele carriers and only 2.2% in controls (odds ratio, 6.9; 95% confidence interval, 3.9-2.2). The second haplotype had a frequency of 12.9% in risk-allele carriers and only 2.7% in controls (odds ratio, 5.3; 95% confidence interval, 3.0-9.5). The significant association and the presence of high-risk haplotypes identified in the ESRRB gene confirm the association of variants in ESRRB and rotator cuff disease."	"Establishment of trophoblast stem cells under defined culture conditions in mice. The inner cell mass (ICM) and trophoblast cell lineages duet early embryonic development in mammals. After implantation, the ICM forms the embryo proper as well as some extraembryonic tissues, whereas the trophoectoderm (TE) exclusively forms the fetal portion of the placenta and the trophoblast giant cells. Although embryonic stem (ES) cells can be derived from ICM in cultures of mouse blastocysts in the presence of LIF and/or combinations of small-molecule chemical compounds, and the undifferentiated pluripotent state can be stably maintained without use of serum and feeder cells, defined culture conditions for derivation and maintenance of undifferentiated trophoblast stem (TS) cells have not been established. Here, we report that addition of FGF2, activin A, XAV939, and Y27632 are necessary and sufficient for derivation of TS cells from both of E3.5 blastocysts and E6.5 early postimplantation extraembryonic ectoderm. Moreover, the undifferentiated TS cell state can be stably maintained in chemically defined culture conditions. Cells derived in this manner expressed TS cell marker genes, including Eomes, Elf5, Cdx2, Klf5, Cdh1, Esrrb, Sox2, and Tcfap2c; differentiated into all trophoblast subtypes (trophoblast giant cells, spongiotrophoblast, and labyrinthine trophoblast) in vitro; and exclusively contributed to trophoblast lineages in chimeric animals. This delineation of minimal requirements for derivation and self-renewal provides a defined platform for precise description and dissection of the molecular state of TS cells. "	"The developmental potential of iPSCs is greatly influenced by reprogramming factor selection. Induced pluripotent stem cells (iPSCs) are commonly generated by transduction of Oct4, Sox2, Klf4, and Myc (OSKM) into cells. Although iPSCs are pluripotent, they frequently exhibit high variation in terms of quality, as measured in mice by chimera contribution and tetraploid complementation. Reliably high-quality iPSCs will be needed for future therapeutic applications. Here, we show that one major determinant of iPSC quality is the combination of reprogramming factors used. Based on tetraploid complementation, we found that ectopic expression of Sall4, Nanog, Esrrb, and Lin28 (SNEL) in mouse embryonic fibroblasts (MEFs) generated high-quality iPSCs more efficiently than other combinations of factors including OSKM. Although differentially methylated regions, transcript number of master regulators, establishment of specific superenhancers, and global aneuploidy were comparable between high- and low-quality lines, aberrant gene expression, trisomy of chromosome 8, and abnormal H2A.X deposition were distinguishing features that could potentially also be applicable to human. "	"Generation of intermediate porcine iPS cells under culture condition favorable for mesenchymal-to-epithelial transition. It has been demonstrated that naïve and primed pluripotency are determined by different extracellular signals. In this study, we investigated whether intermediate pluripotent states could be available by manipulating the culture condition during the process of generating pig induced pluripotent stem cells (piPSCs). By optimizing the culture condition that efficiently promotes mesenchymal-to-epithelial transition (MET), we found that combination of three growth factors (LIF, FGF2 and BMP4) and two inhibitors (2i: CHIR99021 and SB431542) could generate an intermediate pluripotent state of piPSCs, which were named as LFB2i-piPSCs. The LFB2i-piPSCs are stable and fulfill all the criteria of pluripotency, including expression of pluripotent genes, differentiation into three germ layers via embryoid bodies in vitro and teratoma in vivo. More importantly, the mRNA-sequencing data showed that LFB2i-piPSCs had a mixed transcriptome of naïve and primed pluripotency, which featured by expressing high levels of SOX2, L-MYC and ESRRB and relatively low levels of POU5F1, KLF4 and NANOG. Small RNA sequencing also demonstrated that LFB2i-piPSCs had a mixed microRNA profile of naïve and primed pluripotency, which featured by expressing high levels of miR-302b/367 cluster and miR-106a/363 cluster, and low levels of most let-7 family members and miR-17/92 cluster. Altogether, the LFB2i-piPSCs represent a stable intermediate pluripotent state with unique transcriptome and microRNA signatures. The LFB2i-piPSCs will provide a new tool to explore the mechanisms of pluripotency and reprogramming on pig species. "	"Actions of methyl-, propyl- and butylparaben on estrogen receptor-α and -β and the progesterone receptor in MCF-7 cancer cells and non-cancerous MCF-10A cells. Numerous studies have shown that widely used parabens possess estrogenic properties. In the present study, we examined the effects of methyl-, propyl- and butylparaben on the mRNA and protein expression of estrogen receptor (ER)-α (ESR1) and -β (ESR2) and the progesterone receptor (PGR). Human MCF-7 breast cancer cells and MCF-10A non-transformed breast epithelial cells were exposed to parabens at a concentration of 20nM; 17β-estradiol at a concentration of 10nM, was used as a positive control. Both propyl- and butylparaben stimulated PGR mRNA expression in MCF-7 cells, whereas methyl- and propylparaben PGR protein expression. In MCF-10A cells, butyl- and propylparaben increased only PGR mRNA expression. All parabens increased ESR1 gene and protein expression in MCF-7 and with the exception of butylparaben in MCF-10A cells. All parabens significantly increased ESR2 mRNA and protein expression in MCF-7 cells, but in MCF-10A cells only ESR2 protein expression. In summary, by virtue of their stimulatory action on the expression of ESR1, ESR2 and PGR in cancer cells, parabens can be viewed as potential contributors to breast cancer progression. Extension, the actions of these parabens on the expression of ERs and PGR in non-cancerous cells point to possible actions on breast cancer initiation. "	"Construction and validation of a regulatory network for pluripotency and self-renewal of mouse embryonic stem cells. A 30-node signed and directed network responsible for self-renewal and pluripotency of mouse embryonic stem cells (mESCs) was extracted from several ChIP-Seq and knockdown followed by expression prior studies. The underlying regulatory logic among network components was then learned using the initial network topology and single cell gene expression measurements from mESCs cultured in serum/LIF or serum-free 2i/LIF conditions. Comparing the learned network regulatory logic derived from cells cultured in serum/LIF vs. 2i/LIF revealed differential roles for Nanog, Oct4/Pou5f1, Sox2, Esrrb and Tcf3. Overall, gene expression in the serum/LIF condition was more variable than in the 2i/LIF but mostly consistent across the two conditions. Expression levels for most genes in single cells were bimodal across the entire population and this motivated a Boolean modeling approach. In silico predictions derived from removal of nodes from the Boolean dynamical model were validated with experimental single and combinatorial RNA interference (RNAi) knockdowns of selected network components. Quantitative post-RNAi expression level measurements of remaining network components showed good agreement with the in silico predictions. Computational removal of nodes from the Boolean network model was also used to predict lineage specification outcomes. In summary, data integration, modeling, and targeted experiments were used to improve our understanding of the regulatory topology that controls mESC fate decisions as well as to develop robust directed lineage specification protocols. "	"GADD45γ regulates the thermogenic capacity of brown adipose tissue. The coactivator peroxisome proliferator-activated receptor-gamma coactivator 1 α (PGC-1α) is widely considered a central transcriptional regulator of adaptive thermogenesis in brown adipose tissue (BAT). However, mice lacking PGC-1α specifically in adipose tissue have only mild thermogenic defects, suggesting the presence of additional regulators. Using the activity of estrogen-related receptors (ERRs), downstream effectors of PGC-1α, as read-out in a high-throughput genome-wide cDNA screen, we identify here growth arrest and DNA-damage-inducible protein 45 γ (GADD45γ) as a cold-induced activator of uncoupling protein 1 (UCP1) and oxidative capacity in BAT. Mice lacking Gadd45γ have defects in Ucp1 induction and the thermogenic response to cold. GADD45γ works by activating MAPK p38, which is a potent activator of ERRβ and ERRγ transcriptional function. GADD45γ activates ERRγ independently of PGC-1 coactivators, yet synergizes with PGC-1α to induce the thermogenic program. Our findings elucidate a previously unidentified GADD45γ/p38/ERRγ pathway that regulates BAT thermogenesis and may enable new approaches for the stimulation of energy expenditure. Our study also implicates GADD45 proteins as general metabolic regulators. "	"Adrenomedullin promotes rat trophoblast stem cell differentiation. Accumulating data suggest that adrenomedullin (ADM) regulates the trophoblast cell growth, migration, and invasion. However, the effect of ADM on trophoblast differentiation is poorly understood. In this study, we hypothesized that ADM promotes the differentiation of trophoblast stem cells (TSCs) into trophoblast giant cells (TGCs). Using rat TSCs, Rcho-1 cells, we investigated the effect of ADM on TSC differentiation into TGCs in differentiation or stem cell media, respectively, and explored the effect of ADM on the mechanistic target of rapamycin (MTOR) signaling in trophoblast cell differentiation. The results include: 1) in the presence of differentiation medium, 10⁻⁷ M ADM, but not lower doses, elevated (P &lt; 0.05) Prl3b1/Esrrb (i.e., the ratio of mRNA levels) by 1.7-fold compared to that in control; 2) the supplementation of ADM antagonist, regardless of the concentration of ADM, reduced (P &lt; 0.05) Prl3b1/Esrrb by 2-fold, compared to control group, while the supplementation of CGRP antagonist, regardless of the concentration of ADM, did not change Prl3b1/Esrrb; 3) in the presence of stem cell medium, ADM did not alter the expression of TSC and TGC marker genes, however, the ratio of Prl3b1/Esrrb was reduced (P &lt; 0.05) by ADM antagonist compared to that in control; and 4) ADM increased (P &lt; 0.05) phosphorylated MTOR proteins and the ratio of phosphorylated to total MTOR proteins by 2.0- and 1.7-fold, respectively. The results indicate that ADM promotes but does not induce the differentiation of TSCs to TGCs in a dose-dependent manner and MTOR signaling may play a role in this process."	"Differential effects of Akt isoforms on somatic cell reprogramming. Akt plays an important role in cell growth, proliferation and survival. The specific roles of the three Akt isoforms in somatic cell reprogramming have not been investigated. Here we report that, during iPSC generation, enhanced Akt1 activity promotes complete reprogramming mainly through increased activation of Stat3 in concert with leukemia inhibitory factor (LIF) and, to a lesser extent, through promotion of colony formation. Akt1 augments Stat3 activity through activation of mTOR and upregulation of LIF receptor expression. Similarly, enhanced Akt2 or Akt3 activation also promotes reprogramming and coordinates with LIF to activate Stat3. Blocking Akt1 or Akt3 but not Akt2 expression prohibits cell proliferation and reprogramming. Furthermore, the halt in cell proliferation and reprogramming caused by mTOR and Akt inhibitors can be reversed by inhibition of GSK3. Finally, we found that expressing the GSK3β target Esrrb overrides inhibition of Akt and restores reprogramming. Our data demonstrated that during reprogramming, Akt promotes establishment of pluripotency through co-stimulation of Stat3 activity with LIF. Akt1 and Akt3 are essential for the proliferation of reprogrammed cells, and Esrrb supports cell proliferation and complete reprogramming during Akt signaling. "	"Role of estrogen related receptor beta (ESRRB) in DFN35B hearing impairment and dental decay. Congenital forms of hearing impairment can be caused by mutations in the estrogen related receptor beta (ESRRB) gene. Our initial linkage studies suggested the ESRRB locus is linked to high caries experience in humans. We tested for association between the ESRRB locus and dental caries in 1,731 subjects, if ESRRB was expressed in whole saliva, if ESRRB was associated with the microhardness of the dental enamel, and if ESRRB was expressed during enamel development of mice. Two families with recessive ESRRB mutations and DFNB35 hearing impairment showed more extensive dental destruction by caries. Expression levels of ESRRB in whole saliva samples showed differences depending on sex and dental caries experience. The common etiology of dental caries and hearing impairment provides a venue to assist in the identification of individuals at risk to either condition and provides options for the development of new caries prevention strategies, if the associated ESRRB genetic variants are correlated with efficacy."	"Histone deacetylase (HDAC) 1 and 2 are essential for accurate cell division and the pluripotency of embryonic stem cells. Histone deacetylases 1 and 2 (HDAC1/2) form the core catalytic components of corepressor complexes that modulate gene expression. In most cell types, deletion of both Hdac1 and Hdac2 is required to generate a discernible phenotype, suggesting their activity is largely redundant. We have therefore generated an ES cell line in which Hdac1 and Hdac2 can be inactivated simultaneously. Loss of HDAC1/2 resulted in a 60% reduction in total HDAC activity and a loss of cell viability. Cell death is dependent upon cell cycle progression, because differentiated, nonproliferating cells retain their viability. Furthermore, we observe increased mitotic defects, chromatin bridges, and micronuclei, suggesting HDAC1/2 are necessary for accurate chromosome segregation. Consistent with a critical role in the regulation of gene expression, microarray analysis of Hdac1/2-deleted cells reveals 1,708 differentially expressed genes. Significantly for the maintenance of stem cell self-renewal, we detected a reduction in the expression of the pluripotent transcription factors, Oct4, Nanog, Esrrb, and Rex1. HDAC1/2 activity is regulated through binding of an inositol tetraphosphate molecule (IP4) sandwiched between the HDAC and its cognate corepressor. This raises the important question of whether IP4 regulates the activity of the complex in cells. By rescuing the viability of double-knockout cells, we demonstrate for the first time (to our knowledge) that mutations that abolish IP4 binding reduce the activity of HDAC1/2 in vivo. Our data indicate that HDAC1/2 have essential and pleiotropic roles in cellular proliferation and regulate stem cell self-renewal by maintaining expression of key pluripotent transcription factors. "	"Nanog co-regulated by Nodal/Smad2 and Oct4 is required for pluripotency in developing mouse epiblast. Nanog, a core pluripotency factor, is required for stabilizing pluripotency of inner cell mass (ICM) and embryonic stem cells (ESCs), and survival of primordial germ cells in mice. Here, we have addressed function and regulation of Nanog in epiblasts of postimplantation mouse embryos by conditional knockdown (KD), chromatin immunoprecipitation (ChIP) using in vivo epiblasts, and protein interaction with the Nanog promoter in vitro. Differentiation of Nanog-KD epiblasts demonstrated requirement for Nanog in stabilization of pluripotency. Nanog expression in epiblast is directly regulated by Nodal/Smad2 pathway in a visceral endoderm-dependent manner. Notably, Nanog promoters switch from Oct4/Esrrb in ICM/ESCs to Oct4/Smad2 in epiblasts. Smad2 directly associates with Oct4 to form Nanog promoting protein complex. Collectively, these data demonstrate that Nanog plays a key role in stabilizing Epiblast pluripotency mediated by Nodal/Smad2 signaling, which is involved in Nanog promoter switching in early developing embryos. "	"Klf2 is an essential factor that sustains ground state pluripotency. The maintenance of mouse embryonic stem cells (mESCs) requires LIF and serum. However, a pluripotent &quot;ground state,&quot; bearing resemblance to preimplantation mouse epiblasts, can be established through dual inhibition (2i) of both prodifferentiation Mek/Erk and Gsk3/Tcf3 pathways. While Gsk3 inhibition has been attributed to the transcriptional derepression of Esrrb, the molecular mechanism mediated by Mek inhibition remains unclear. In this study, we show that Krüppel-like factor 2 (Klf2) is phosphorylated by Erk2 and that phospho-Klf2 is proteosomally degraded. Mek inhibition hence prevents Klf2 protein phosphodegradation to sustain pluripotency. Indeed, while Klf2-null mESCs can survive under LIF/Serum, they are not viable under 2i, demonstrating that Klf2 is essential for ground state pluripotency. Importantly, we also show that ectopic Klf2 expression can replace Mek inhibition in mESCs, allowing the culture of Klf2-null mESCs under Gsk3 inhibition alone. Collectively, our study defines the Mek/Erk/Klf2 axis that cooperates with the Gsk3/Tcf3/Esrrb pathway in mediating ground state pluripotency. "	"Elevated O-GlcNAc levels activate epigenetically repressed genes and delay mouse ESC differentiation without affecting naïve to primed cell transition. The differentiation of mouse embryonic stem cells (ESCs) is controlled by the interaction of multiple signaling pathways, typically mediated by post-translational protein modifications. The addition of O-linked N-acetylglucosamine (O-GlcNAc) to serine and threonine residues of nuclear and cytoplasmic proteins is one such modification (O-GlcNAcylation), whose function in ESCs is only now beginning to be elucidated. Here, we demonstrate that the specific inhibition of O-GlcNAc hydrolase (Oga) causes increased levels of protein O-GlcNAcylation and impairs differentiation of mouse ESCs both in serum-free monolayer and in embryoid bodies (EBs). Use of reporter cell lines demonstrates that Oga inhibition leads to a reduction in the number of Sox1-expressing neural progenitors generated following induction of neural differentiation as well as maintained expression of the ESC marker Oct4 (Pou5f1). In EBs, expression of mesodermal and endodermal markers is also delayed. However, the transition of naïve cells to primed pluripotency indicated by Rex1 (Zfp42), Nanog, Esrrb, and Dppa3 downregulation and Fgf5 upregulation remains unchanged. Finally, we demonstrate that increased O-GlcNAcylation results in upregulation of genes normally epigenetically silenced in ESCs, supporting the emerging role for this protein modification in the regulation of histone modifications and DNA methylation."	"Ameliorative effects of Schizandra chinensis on osteoporosis via activation of estrogen receptor (ER)-α/-β. Estrogen deficiency in menopausal women is the main cause of osteoporosis. Phytoestrogen could be a suitable candidate for treatment of post-menopausal osteoporosis. Recent studies showed that S. chinensis contains several lignans, which may be phytoestrogen. In this study, we investigated the ameliorative effects of S. chinensis on post-menopausal osteoporosis. 30% ethanol extract of S. chinensis (SC) was administered orally for 6 weeks after 7 weeks of ovariectomized-induced osteoporosis. Bone mineral density was significantly increased following increased serum osteocalcin levels by SC treatment. Histological analysis showed that SC reduced the increased growth plate of the epiphyseal plate in femur. In addition, pores within bone marrow cells filling the lateral and medial epicondyle were decreased. Serum estradiol concentration was significantly increased in the SC-treated group. The expressions of estrogen receptor-α and -β were increased in uterus and MCF-7 breast cancer cells by SC treatment. And two transcriptions of proto-oncogenes, c-fos and c-Jun, were suppressed by treatment of SC. From these data, we propose that S. chinensis attenuates post-menopausal osteoporosis with its phytoestrogenic effects. S. chinensis may have the potential to be used as an alternative for treatment of osteoporosis. "	"Cell cycle-dependent expression of Dub3, Nanog and the p160 family of nuclear receptor coactivators (NCoAs) in mouse embryonic stem cells. Pluripotency of embryonic stem cells (ESC) is tightly regulated by a network of transcription factors among which the estrogen-related receptor β (Esrrb). Esrrb contributes to the relaxation of the G1 to S-phase (G1/S) checkpoint in mouse ESCs by transcriptional control of the deubiquitylase Dub3 gene, contributing to Cdc25A persistence after DNA damage. We show that in mESCs, Dub3 gene expression is cell cycle regulated and is maximal prior G1/S transition. In addition, following UV-induced DNA damage in G1, Dub3 expression markedly increases in S-phase also suggesting a role in checkpoint recovery. Unexpectedly, we also observed cell cycle-regulation of Nanog expression, and not Oct4, reaching high levels prior to G1/S transition, finely mirroring Cyclin E1 fluctuations. Curiously, while Esrrb showed only limited cell-cycle oscillations, transcript levels of the p160 family of nuclear receptor coactivators (NCoAs) displayed strong cell cycle-dependent fluctuations. Since NCoAs function in concert with Esrrb in transcriptional activation, we focussed on NCoA1 whose levels specifically increase prior onset of Dub3 transcription. Using a reporter assay, we show that NCoA1 potentiates Esrrb-mediated transcription of Dub3 and we present evidence of protein interaction between the SRC1 splice variant NCoA1 and Esrrb. Finally, we show a differential developmental regulation of all members of the p160 family during neural conversion of mESCs. These findings suggest that in mouse ESCs, changes in the relative concentration of a coactivator at a given cell cycle phase, may contribute to modulation of the transcriptional activity of the core transcription factors of the pluripotent network and be implicated in cell fate decisions upon onset of differentiation. "	"Effect of cell-penetrating peptide-conjugated estrogen-related receptor β on the development of mouse embryos cultured in vitro. Estrogen related receptor β (Esrrb) is a member of the orphan nuclear receptors and may regulate the expression of pluripotency-related genes, such as Oct4 and Nanog. Therefore, in the present study, we have developed a method for delivering exogenous ESRRB recombinant protein into embryos by using cell-penetrating peptide (CPP) conjugation and have analyzed their effect on embryonic development. Mouse oocytes and embryos were obtained from superovulated mice. The expression of Oct4 mRNA and the cell number of inner cell mass (ICM) in the in vitro-derived and in vivo-derived blastocysts were first analyzed by real time-reverse transcription-polymerase chain reaction and differential staining. Then 8-cell embryos were cultured in KSOM media with or without 2 µg/mL CPP-ESRRB protein for 24 to 48 hours, followed by checking their integration into embryos during in vitro culture by Western blot and immunocytochemistry. Expression of Oct4 and the cell number of ICM were lower in the in vitro-derived blastocysts than in the in vivo-derived ones (p&lt;0.05). In the blastocysts derived from the CPP-ESRRB-treated group, expression of Oct4 was greater than in the non-treated groups (p&lt;0.05). Although no difference in embryonic development was observed between the treated and non-treated groups, the cell number of ICM was greater in the CPP-ESRRB-treated group. Treatment of CPP-ESRRB during cultivation could increase embryos' expression of Oct4 and the formation rate of the ICM in the blastocyst. Additionally, an exogenous delivery system of CPP-conjugated protein would be a useful tool for improving embryo culture systems."	"The expressions of stem cell markers: Oct4, Nanog, Sox2, nucleostemin, Bmi, Zfx, Tcl1, Tbx3, Dppa4, and Esrrb in bladder, colon, and prostate cancer, and certain cancer cell lines. Uncontrolled self-renewal plays a direct function in the progression of different types of carcinomas. The same molecular pathway that manages self-renewal in normal stem cells also seems to manage cancer stem cells. Here, we examine the expressions of self-renewal regulatory factors Oct4, Nanog, Sox2, nucleostemin, Zfx, Esrrb, Tcl1, Tbx3, and Dppa4 in tissue samples of colon, prostate, and bladder carcinomas as well as cancer cell lines HT-29, Caco-2, HT-1376, LNCaP, and HepG2. We used reverse transcriptase polymerase chain reaction to examine expressions of the above mentioned regulatory factors in cancer cell lines HT-29, Caco-2, HT-1376, LNCaP, and HepG2 and in 20 tumor tissue samples. Total RNA was isolated by the ISOGEN method. RNA integrity was checked by agarose gel electrophoresis and spectrophotometry. Expressions of Oct4 and nucleostemin at the protein level were determined by immunocytochemistry. A significant relationship was found between tumor grade and self-renewal gene expression. Expressions of stem cell specific marker genes were detected in all examined cancer cell lines, in 40% to 100% of bladder cancer samples, and in 60% to 100% of colon and prostate cancer samples. Oct4 expressed in 100% of tumor tissue samples. Our data show that stem cell markers Oct4, Nanog, Sox2, nucleostemin, Bmi, Zfx, Esrrb, Tcl1, Tbx3, and Dppa4 significantly express in cancer cell lines and cancer tissues. Hence, these markers might be useful as potential tumor markers in the diagnosis and/or prognosis of tumors. "	"Cell-penetrating peptide (CPP)-conjugated proteins is an efficient tool for manipulation of human mesenchymal stromal cells. Delivery of proteins has been regarded as the safest and most useful application in therapeutic application of stem cells, because proteins can regulate gene expression transiently without any genomic alteration. However, it is difficult to accurately measure efficiency or quantity of intracellular protein uptake. Here, we performed a comparison study of cell-penetrating peptide (CPP)-conjugated protein delivery system using seven arginine and Streptolysin O (SLO)-mediated system. To compare CPP- and SLO-mediated protein delivery systems, we used GFP and ESRRB protein, which is known to regulate pluripotency-related genes, for delivery into human bone marrow stromal cells (hBMSCs) and human testicular stromal cells (hTSCs). We found that CPP-conjugated protein delivery was more efficient, lower cytotoxicity, and higher biological activity than SLO-mediated protein delivery system. These results suggest that delivery of CPP-conjugated proteins is an efficient tool for introducing biologically active proteins into cells and may have important implications in clinical cell-based therapy. "	"Efficient reprogramming of naïve-like induced pluripotent stem cells from porcine adipose-derived stem cells with a feeder-independent and serum-free system. Induced pluripotent stem cells (iPSCs) are somatic cells reprogrammed by ectopic expression of transcription factors or small molecule treatment, which resemble embryonic stem cells (ESCs). They hold great promise for improving the generation of genetically modified large animals. However, few porcine iPSCs (piPSCs) lines obtained currently can support development of cloned embryos. Here, we generated iPSCs from porcine adipose-derived stem cells (pADSCs), using drug-inducible expression of defined human factors (Oct4, Sox2, c-Myc and Klf4). Reprogramming of iPSCs from pADSCs was more efficient than from fibroblasts, regardless of using feeder-independent or feeder-dependent manners. By addition of Lif-2i medium containing mouse Lif, CHIR99021 and PD0325901 (Lif-2i), naïve-like piPSCs were obtained under feeder-independent and serum-free conditions. These successfully reprogrammed piPSCs were characterized by short cell cycle intervals, alkaline phosphatase (AP) staining, expression of Oct4, Sox2, Nanog, SSEA3 and SSEA4, and normal karyotypes. The resemblance of piPSCs to naïve ESCs was confirmed by their packed dome morphology, growth after single-cell dissociation, Lif-dependency, up-regulation of Stella and Eras, low expression levels of TRA-1-60, TRA-1-81 and MHC I and activation of both X chromosomes. Full reprogramming of naïve-like piPSCs was evaluated by the significant up-regulation of Lin28, Esrrb, Utf1 and Dppa5, differentiating into cell types of all three germ layers in vitro and in vivo. Furthermore, nuclear transfer embryos from naïve-like piPSCs could develop to blastocysts with improved quality. Thus, we provided an efficient protocol for generating naïve-like piPSCs from pADSCs in a feeder-independent and serum-free system with controlled regulation of exogenous genes, which may facilitate optimization of culture media and the production of transgenic pigs. "	"The genomic landscape of oesophagogastric junctional adenocarcinoma. The incidence of oesophagogastric junctional (OGJ) adenocarcinoma is rising rapidly in western countries, in contrast to the declining frequency of distal gastric carcinoma. Treatment options for adenocarcinomas involving the oesophagogastric junction are limited and the overall prognosis is extremely poor. To determine the genomic landscape of OGJ adenocarcinoma, exomes of eight tumours and matched germline DNA were subjected to massively parallel DNA sequencing. Microsatellite instability was observed in three tumours which coincided with an elevated number of somatic mutations. In total, 117 genes were identified that had predicted coding alterations in more than one tumour. Potentially actionable coding mutations were identified in 67 of these genes, including those in CR2, HGF , FGFR4, and ESRRB. Twenty-nine genes harbouring somatic coding mutations and copy number changes in the MSS OGJ dataset are also known to be altered with similar predicted functional consequence in other tumour types. Compared with the published mutational profile of gastric cancers, 49% (57/117) of recurrently mutated genes were unique to OGJ tumours. TP53, SYNE1, and ARID1A were amongst the most frequently mutated genes in a larger OGJ cohort. Our study provides an insight into the mutational landscape of OGJ adenocarcinomas and confirms that this is a highly mutated and heterogeneous disease. Furthermore, we have uncovered somatic mutations in therapeutically relevant genes which may represent candidate drug targets."	"High Dub3 expression in mouse ESCs couples the G1/S checkpoint to pluripotency. The molecular mechanism underlying G1/S checkpoint bypass in mouse embryonic stem cells (ESCs) remains unknown. DNA damage blocks S phase entry by inhibiting the CDK2 kinase through destruction of its activator, the Cdc25A phosphatase. We observed high Cdc25A levels in G1 that persist even after DNA damage in mouse ESCs. We also found higher expression of Dub3, a deubiquitylase that controls Cdc25A protein abundance. Moreover, we demonstrate that the Dub3 gene is a direct target of Esrrb, a key transcription factor of the self-renewal machinery. We show that Dub3 expression is strongly downregulated during neural conversion and precedes Cdc25A destabilization, while forced Dub3 expression in ESCs becomes lethal upon differentiation, concomitant to cell-cycle remodeling and lineage commitment. Finally, knockdown of either Dub3 or Cdc25A induced spontaneous differentiation of ESCs. Altogether, these findings couple the self-renewal machinery to cell-cycle control through a deubiquitylase in ESCs. "	"Evidence of genetic variations associated with rotator cuff disease. Rotator cuff disease (RCD) is a complex process influenced by a multitude of factors, and a number of gene pathways are altered in rotator cuff tears. Polymorphisms in these genes can lead to an extended tendon degeneration process, which explains why subsets of patients are more susceptible to RCD. Twenty-three single-nucleotide polymorphisms within 6 genes involved in repair and degenerative processes (DEFB1, DENND2C, ESRRB, FGF3, FGF10, and FGFR1) were investigated in 410 patients, 203 with a diagnosis of RCD and 207 presenting with absence of RCD. Exclusion criteria were patients older than 60 years and younger than 45 years with a history of trauma, rheumatoid arthritis, autoimmune syndrome, pregnancy, and use of corticosteroids. Genomic DNA was obtained from saliva samples. Genetic markers were genotyped with TaqMan real-time polymerase chain reaction. The χ(2) test compared genotypes and haplotype differences between groups. Multivariate logistic regression analyzed the significance of many covariates and the incidence of RCD. Statistical analysis revealed female sex (P = .001; odds ratio, 2.07 [1.30-3.30]) and being white (P = .002; odds ratio, 1.88 [1.21-2.90]) to be risk factors for RCD development. A significant association of haplotypes CCTTCCAG in ESRRB (P = .05), CGACG in FGF3 (P = .01), CC in DEFB1 (P = .03), and FGFR1 rs13317 (P = .02) with RCD could be observed. Also, association between FGF10 rs11750845 (P = .03) and rs1011814 (P = .01) was observed after adjustment by ethnic group and sex. Our work clearly supports the role of DEFB1, ESRRB, FGF3, FGF10, and FGFR1 genes in RCD. Identification of these variants can clarify causal pathways and provide a clue for therapeutic targets."	"Context-dependent wiring of Sox2 regulatory networks for self-renewal of embryonic and trophoblast stem cells. Sox2 is a transcription factor required for the maintenance of pluripotency. It also plays an essential role in different types of multipotent stem cells, raising the possibility that Sox2 governs the common stemness phenotype. Here we show that Sox2 is a critical downstream target of fibroblast growth factor (FGF) signaling, which mediates self-renewal of trophoblast stem cells (TSCs). Sustained expression of Sox2 together with Esrrb or Tfap2c can replace FGF dependency. By comparing genome-wide binding sites of Sox2 in embryonic stem cells (ESCs) and TSCs combined with inducible knockout systems, we found that, despite the common role in safeguarding the stem cell state, Sox2 regulates distinct sets of genes with unique functions in these two different yet developmentally related types of stem cells. Our findings provide insights into the functional versatility of transcription factors during embryogenesis, during which they can be recursively utilized in a variable manner within discrete network structures."	"Homeobox A7 stimulates breast cancer cell proliferation by up-regulating estrogen receptor-alpha. Breast cancer is the most common hormone-dependent malignancy in women. Homeobox (HOX) transcription factors regulate many cellular functions, including cell migration, proliferation and differentiation. The aberrant expression of HOX genes has been reported to be associated with human reproductive cancers. Estradiol (E2) and its nuclear receptors, estrogen receptor (ER)-alpha and ER-beta, are known to play critical roles in the regulation of breast cancer cell growth. However, an understanding of the potential relationship between HOXA7 and ER in breast cancer cells is limited. In this study, our results demonstrate that knockdown of HOXA7 in MCF7 cells significantly decreased cell proliferation and ERα expression. In addition, HOXA7 knockdown attenuated E2-induced cell proliferation as well as progesterone receptor (PR) expression. The stimulatory effects of E2 on cell proliferation and PR expression were abolished by co-treatment with ICI 182780, a selective ERα antagonist. In contrast, overexpression of HOXA7 significantly stimulated cell proliferation and ERα expression. Moreover, E2-induced cell proliferation, as well as PR expression, was enhanced by the overexpression of HOXA7. Neither knockdown nor overexpression of HOXA7 affected the ER-beta levels. Our results demonstrate a novel mechanistic role for HOXA7 in modulating breast cancer cell proliferation via regulation of ERα expression. This finding contributes to our understanding of the role HOXA7 plays in regulating the proliferation of ER-positive cancer cells. "	"Estrogen-related receptor β deficiency alters body composition and response to restraint stress. Estrogen-related receptors (ERRs) are orphan nuclear hormone receptors expressed in metabolically active tissues and modulate numerous homeostatic processes. ERRs do not bind the ligand estrogen, but they are able to bind the estrogen response element (ERE) embedded within the ERR response elements (ERREs) to regulate transcription of genes. Previous work has demonstrated that adult mice lacking Errβ have altered metabolism and meal patterns. To further understand the biological role of Errβ, we characterized the stress response of mice deficient for one or both alleles of Errβ. Sox2-Cre:Errβ mice lack Errβ expression in all tissues of the developing embryo. Sox2-Cre:Errβ+/lox heterozygotes were obese, had increased Npy and Agrp gene expression in the arcuate nucleus of the hypothalamus, and secreted more corticosterone in response to stress. In contrast, Sox2-Cre:Errβlox/lox homozygotes were lean and, despite increased Npy and Agrp gene expression, did not secrete more corticosterone in response to stress. Sox2-Cre:Errβ+/lox and Sox2-Cre:Errβlox/lox mice treated with the Errβ and Errγ agonist DY131 demonstrated increased corticotropin-releasing hormone (Crh) expression in the paraventricular nucleus of the hypothalamus, although corticosterone levels were not affected. Nes-Cre:Errβlox/lox mice, which selectively lack Errβ expression in the nervous system, also demonstrated elevated stress response during an acoustic startle response test and decreased expression of both Crh and corticotropin-releasing hormone receptor 2 (Crhr2). Loss of Errβ affects body composition, neuropeptide levels, stress hormones, and centrally-modulated startle responses of mice. These results indicate that Errβ alters the function of the hypothalamic-pituitary-adrenocortical axis and indicates a role for Errβ in regulating stress response."	"The role of pluripotency gene regulatory network components in mediating transitions between pluripotent cell states. Pluripotency is a property that early embryonic cells possess over a considerable developmental time span. Accordingly, pluripotent cell lines can be established from the pre-implantation or post-implantation mouse embryo as embryonic stem (ES) or epiblast stem (EpiSC) cell lines, respectively. Maintenance of the pluripotent phenotype depends on the function of specific transcription factors (TFs) operating within a pluripotency gene regulatory network (PGRN). As cells move from an ES cell to an EpiSC state, the PGRN changes with expression of some TFs reduced (e.g. Nanog) or eliminated (e.g. Esrrb). Re-expressing such TFs can move cells back to an earlier developmental identity and is being applied to attempt establishment of human cell lines with the properties of mouse ES cells. "	"Targeting estrogen receptors for the treatment of Alzheimer's disease. The significantly higher incidence of Alzheimer's disease (AD) in women than in men has been attributed to loss of estrogen and a variety of related mechanisms at the molecular, cellular, and hormonal levels, which subsequently elucidate neuroprotective roles of estrogen against AD-related pathology. Recent studies have proposed that beneficial effects of estrogen on AD are directly linked to its ability to reduce amyloid-β peptides and tau aggregates, two hallmark lesions of AD. Despite high expectations, large clinical trials with postmenopausal women indicated that the beneficial effects of estrogen therapies were insignificant and, in fact, elicited adverse effects. Here, we review the current status of AD prevention and treatment using estrogens focusing on recent understandings of their biochemical links to AD pathophysiology. This review also discusses development of selective ligands that specifically target either estrogen receptor α (ERα) or ERβ isoforms, which are potentially promising strategies for safe and efficient treatment of AD. "	"Comparative analysis of 4C-Seq data generated from enzyme-based and sonication-based methods. Circular chromosome conformation capture, when coupled with next-generation sequencing (4C-Seq), can be used to identify genome-wide interaction of a given locus (a &quot;bait&quot; sequence) with all of its interacting partners. Conventional 4C approaches used restriction enzyme digestion to fragment chromatin, and recently sonication approach was also applied for this purpose. However, bioinformatics pipelines for analyzing sonication-based 4C-Seq data are not well developed. In addition, data consistency as well as similarity between the two methods has not been explored previously. Here we present a comparative analysis of 4C-Seq data generated by both methods, using an enhancer element of Pou5f1 gene in mouse embryonic stem (ES) cells. From biological replicates, we found good correlation (r&gt;0.6) for inter-chromosomal interactions identified in either enzyme or sonication method. Compared to enzyme approach, sonication method generated less distal intra-chromosomal interactions, possibly due to the difference in chromatin fragmentation. From all mapped interactions, we further applied statistical models to identify enriched interacting regions. Interestingly, data generated from the two methods showed 30% overlap of the reproducible interacting regions. The interacting sites in the reproducible regions from both methods are similarly enriched with active histone marks. In addition, the interacting sites identified from sonication-based data are enriched with ChIP-Seq signals of transcription factors Oct4, Klf4, Esrrb, Tcfcp2i1, and Zfx that are critical for reprogramming and pluripotency. Both enzyme-based and sonication-based 4C-Seq methods are valuable tools to explore long-range chromosomal interactions. Due to the nature of sonication-based method, correlation analysis of the 4C interactions with transcription factor binding should be more straightforward."	"What makes a pluripotency reprogramming factor? Resetting differentiated cells to a pluripotent state is now a widely applied technology and a key step towards personalized cell replacement therapies. Conventionally, combinations of transcription factor proteins are introduced into a differentiated cell to convert gene expression programs and to change cell fates. Yet, the molecular mechanism of nuclear reprogramming is only superficially understood. Specifically, it is unclear what sets pluripotency reprogramming factors (PRFs) molecularly apart from other transcription factor molecules that induce, for example, lineage commitment in embryonic development. Ultimately, PRFs must scan the genome of a differentiated cell, target enhancers of pluripotency factors and initiate gene expression. This requires biochemical properties to selectively recognize DNA sequences, either alone or by cooperating with other PRFs. In this review, we will discuss the molecular make-up of the prominent PRFs Sox2, Oct4, Klf4, Esrrb, Nr5a2 and Nanog and attempt to identify unique features distinguishing them from highly homologous yet functionally contrasting family members. Except for Klf4, the consensus DNA binding motifs are highly conserved for PRFs when compared to non-pluripotency inducing family members, suggesting that the individual DNA sequence preference may not be the distinguishing factor. By contrast, variant composite DNA motifs were found in pluripotency enhancers that lead to a differential assembly of various Sox and Oct family members due selective protein-protein interaction platform. As a consequence, the cooperation of PRFs on distinctly configured DNA motifs may underlie the reprogramming process. Indeed, it has been demonstrated that Sox17 can be rationally engineered into a PRF by modulating its cooperation with Oct4. An in deep understanding of this phenomenon would allow rational engineering and optimization of PRFs. This way, the reprogramming efficiency can be enhanced and fine-tuned to generate optimal synthetic reagents for regenerative medicine."	"TherMos: Estimating protein-DNA binding energies from in vivo binding profiles. Accurately characterizing transcription factor (TF)-DNA affinity is a central goal of regulatory genomics. Although thermodynamics provides the most natural language for describing the continuous range of TF-DNA affinity, traditional motif discovery algorithms focus instead on classification paradigms that aim to discriminate 'bound' and 'unbound' sequences. Moreover, these algorithms do not directly model the distribution of tags in ChIP-seq data. Here, we present a new algorithm named Thermodynamic Modeling of ChIP-seq (TherMos), which directly estimates a position-specific binding energy matrix (PSEM) from ChIP-seq/exo tag profiles. In cross-validation tests on seven genome-wide TF-DNA binding profiles, one of which we generated via ChIP-seq on a complex developing tissue, TherMos predicted quantitative TF-DNA binding with greater accuracy than five well-known algorithms. We experimentally validated TherMos binding energy models for Klf4 and Esrrb, using a novel protocol to measure PSEMs in vitro. Strikingly, our measurements revealed strong non-additivity at multiple positions within the two PSEMs. Among the algorithms tested, only TherMos was able to model the entire binding energy landscape of Klf4 and Esrrb. Our study reveals new insights into the energetics of TF-DNA binding in vivo and provides an accurate first-principles approach to binding energy inference from ChIP-seq and ChIP-exo data."	"Exit from pluripotency is gated by intracellular redistribution of the bHLH transcription factor Tfe3. Factors that sustain self-renewal of mouse embryonic stem cells (ESCs) are well described. In contrast, the machinery regulating exit from pluripotency is ill defined. In a large-scale small interfering RNA (siRNA) screen, we found that knockdown of the tumor suppressors Folliculin (Flcn) and Tsc2 prevent ESC commitment. Tsc2 lies upstream of mammalian target of rapamycin (mTOR), whereas Flcn acts downstream and in parallel. Flcn with its interaction partners Fnip1 and Fnip2 drives differentiation by restricting nuclear localization and activity of the bHLH transcription factor Tfe3. Conversely, enforced nuclear Tfe3 enables ESCs to withstand differentiation conditions. Genome-wide location and functional analyses showed that Tfe3 directly integrates into the pluripotency circuitry through transcriptional regulation of Esrrb. These findings identify a cell-intrinsic rheostat for destabilizing ground-state pluripotency to allow lineage commitment. Congruently, stage-specific subcellular relocalization of Tfe3 suggests that Flcn-Fnip1/2 contributes to developmental progression of the pluripotent epiblast in vivo."	"Dax1 associates with Esrrb and regulates its function in embryonic stem cells. Self-renewal capacity and pluripotency, which are controlled by the Oct3/4-centered transcriptional regulatory network, are major characteristics of embryonic stem (ES) cells. Nuclear hormone receptor Dax1 is one of the crucial factors in the network. Here, we identified an orphan nuclear receptor, Esrrb (estrogen-related receptor beta), as a Dax1-interacting protein. Interaction of Dax1 and Esrrb was mediated through LXXLL motifs of Dax1 and the activation- and ligand-binding domains of Esrrb. Furthermore, Esrrb enhanced the promoter activity of the Dax1 gene via direct binding to Esrrb-binding site 1 (ERRE1, where &quot;ERRE&quot; represents &quot;Esrrb-responsive element&quot;) of the promoter. Expression of Dax1 was suppressed followed by Oct3/4 repression; however, overexpression of Esrrb maintained expression of Dax1 even in the absence of Oct3/4, indicating that Dax1 is a direct downstream target of Esrrb and that Esrrb can regulate Dax1 expression in an Oct3/4-independent manner. We also found that the transcriptional activity of Esrrb was repressed by Dax1. Furthermore, we revealed that Oct3/4, Dax1, and Esrrb have a competitive inhibition capacity for each complex. These data, together with previous findings, suggest that Dax1 functions as a negative regulator of Esrrb and Oct3/4, and these molecules form a regulatory loop for controlling the pluripotency and self-renewal capacity of ES cells."	"Interaction between DMRT1 function and genetic background modulates signaling and pluripotency to control tumor susceptibility in the fetal germ line. Dmrt1 (doublesex and mab-3 related transcription factor (1) is a regulator of testis development in vertebrates that has been implicated in testicular germ cell tumors of mouse and human. In the fetal mouse testis Dmrt1 regulates germ cell pluripotency in a strain-dependent manner. Loss of Dmrt1 in 129Sv strain mice results in a &gt;90% incidence of testicular teratomas, tumors consisting cells of multiple germ layers; by contrast, these tumors have never been observed in Dmrt1 mutants of C57BL/6J (B6) or mixed genetic backgrounds. To further investigate the interaction between Dmrt1 and genetic background we compared mRNA expression in wild type and Dmrt1 mutant fetal testes of 129Sv and B6 mice at embryonic day 15.5 (E15.5), prior to overt tumorigenesis. Loss of Dmrt1 caused misexpression of overlapping but distinct sets of mRNAs in the two strains. The mRNAs that were selectively affected included some that changed expression only in one strain or the other and some that changed in both strains but to a greater degree in one versus the other. In particular, loss of Dmrt1 in 129Sv testes caused a more severe failure to silence regulators of pluripotency than in B6 testes. A number of genes misregulated in 129Sv mutant testes also are misregulated in human testicular germ cell tumors (TGCTs), suggesting similar etiology between germ cell tumors in mouse and man. Expression profiling showed that DMRT1 also regulates pluripotency genes in the fetal ovary, although Dmrt1 mutant females do not develop teratomas. Pathway analysis indicated disruption of several signaling pathways in Dmrt1 mutant fetal testes, including Nodal, Notch, and GDNF. We used a Nanos3-cre knock-in allele to perform conditional gene targeting, testing the GDNF coreceptors Gfra1 and Ret for effects on teratoma susceptibility. Conditional deletion of Gfra1 but not Ret in fetal germ cells of animals outcrossed to 129Sv caused a modest but significant elevation in tumor incidence. Despite some variability in genetic background in these crosses, this result is consistent with previous genetic mapping of teratoma susceptibility loci to the region containing Gfra1. Using Nanos3-cre we also uncovered a strong genetic interaction between Dmrt1 and Nanos3, suggesting parallel functions for these two genes in fetal germ cells. Finally, we used chromatin immunoprecipitation (ChIP-seq) analysis to identify a number of potentially direct DMRT1 targets. This analysis suggested that DMRT1 controls pluripotency via transcriptional repression of Esrrb, Nr5a2/Lrh1, and Sox2. Given the strong evidence for involvement of DMRT1 in human TGCT, the downstream genes and pathways identified in this study provide potentially useful candidates for roles in the human disease."	"Systematic repression of transcription factors reveals limited patterns of gene expression changes in ES cells. Networks of transcription factors (TFs) are thought to determine and maintain the identity of cells. Here we systematically repressed each of 100 TFs with shRNA and carried out global gene expression profiling in mouse embryonic stem (ES) cells. Unexpectedly, only the repression of a handful of TFs significantly affected transcriptomes, which changed in two directions/trajectories: one trajectory by the repression of either Pou5f1 or Sox2; the other trajectory by the repression of either Esrrb, Sall4, Nanog, or Tcfap4. The data suggest that the trajectories of gene expression change are already preconfigured by the gene regulatory network and roughly correspond to extraembryonic and embryonic fates of cell differentiation, respectively. These data also indicate the robustness of the pluripotency gene network, as the transient repression of most TFs did not alter the transcriptomes."	"NANOG-dependent function of TET1 and TET2 in establishment of pluripotency. Molecular control of the pluripotent state is thought to reside in a core circuitry of master transcription factors including the homeodomain-containing protein NANOG, which has an essential role in establishing ground state pluripotency during somatic cell reprogramming. Whereas the genomic occupancy of NANOG has been extensively investigated, comparatively little is known about NANOG-associated proteins and their contribution to the NANOG-mediated reprogramming process. Using enhanced purification techniques and a stringent computational algorithm, we identify 27 high-confidence protein interaction partners of NANOG in mouse embryonic stem cells. These consist of 19 previously unknown partners of NANOG that have not been reported before, including the ten-eleven translocation (TET) family methylcytosine hydroxylase TET1. We confirm physical association of NANOG with TET1, and demonstrate that TET1, in synergy with NANOG, enhances the efficiency of reprogramming. We also find physical association and reprogramming synergy of TET2 with NANOG, and demonstrate that knockdown of TET2 abolishes the reprogramming synergy of NANOG with a catalytically deficient mutant of TET1. These results indicate that the physical interaction between NANOG and TET1/TET2 proteins facilitates reprogramming in a manner that is dependent on the catalytic activity of TET1/TET2. TET1 and NANOG co-occupy genomic loci of genes associated with both maintenance of pluripotency and lineage commitment in embryonic stem cells, and TET1 binding is reduced upon NANOG depletion. Co-expression of NANOG and TET1 increases 5-hydroxymethylcytosine levels at the top-ranked common target loci Esrrb and Oct4 (also called Pou5f1), resulting in priming of their expression before reprogramming to naive pluripotency. We propose that TET1 is recruited by NANOG to enhance the expression of a subset of key reprogramming target genes. These results provide an insight into the reprogramming mechanism of NANOG and uncover a new role for 5-methylcytosine hydroxylases in the establishment of naive pluripotency."	"Estrogen-related receptor β deletion modulates whole-body energy balance via estrogen-related receptor γ and attenuates neuropeptide Y gene expression. Estrogen-related receptors (ERRs) α, β and γ are orphan nuclear hormone receptors with no known ligands. Little is known concerning the role of ERRβ in energy homeostasis, as complete ERRβ-null mice die mid-gestation. We generated two viable conditional ERRβ-null mouse models to address its metabolic function. Whole-body deletion of ERRβ in Sox2-Cre:ERRβ(lox/lox) mice resulted in major alterations in body composition, metabolic rate, meal patterns and voluntary physical activity levels. Nestin-Cre:ERRβ(lox/lox) mice exhibited decreased expression of ERRβ in hindbrain neurons, the predominant site of expression, decreased neuropeptide Y (NPY) gene expression in the hindbrain, increased lean body mass, insulin sensitivity, increased energy expenditure, decreased satiety and decreased time between meals. In the absence of ERRβ, increased ERRγ signaling decreased satiety and the duration of time between meals, similar to meal patterns observed for both the Sox2-Cre:ERRβ(lox/lox) and Nestin-Cre:ERRβ(lox/lox) strains of mice. Central and/or peripheral ERRγ signaling may modulate these phenotypes by decreasing NPY gene expression. Overall, the relative expression ratio between ERRβ and ERRγ may be important in modulating ingestive behavior, specifically satiety, gene expression, as well as whole-body energy balance."	"Essential roles for the nuclear receptor coactivator Ncoa3 in pluripotency. NA"	"Gestational protein restriction affects trophoblast differentiation. Whether and how gestational protein restriction (PR) affects placental development and function remain unknown. To test the hypothesis that PR can affect trophoblast differentiation in mid-and late pregnancy, rats were fed a 20% or an isocaloric 6% protein diet from Day 1 to 14 or 18 of pregnancy and effects of PR on trophoblast differentiation were determined by changes in expressions of marker gene(s) for trophoblast lineages. At Day 18 of pregnancy, PR increased expressions of Esrrb, Id1 andId2 (trophoblast stem cell markers), decreased expressions of Ascl2 (spongiotrophblast cell marker) and Prl2c1 (trophoblast giant cell marker), but did not alter expressions of Gjb3 and Pcdh12(glycogen cell markers) in the junctional zone (JZ). In the labyrinth zone (LZ), PR did not change expressions of Prl2b1 (trophoblast giant cell marker), Gcm1 and Syna (syncytiotrophoblast cell markers), but decrease expression of Ctsq (sinusoidal trophoblast giant cell marker). These results indicate that PR impairs the differentiation of trophoblast stem cell into spongiotrophoblast and trophoblast giant cells in JZ, and formation of sinusoidal trophoblast giant cells in LZ."	"Co-motif discovery identifies an Esrrb-Sox2-DNA ternary complex as a mediator of transcriptional differences between mouse embryonic and epiblast stem cells. Transcription factors (TF) often bind in heterodimeric complexes with each TF recognizing a specific neighboring cis element in the regulatory region of the genome. Comprehension of this DNA motif grammar is opaque, yet recent developments have allowed the interrogation of genome-wide TF binding sites. We reasoned that within this data novel motif grammars could be identified that controlled distinct biological programs. For this purpose, we developed a novel motif-discovery tool termed fexcom that systematically interrogates ChIP-seq data to discover spatially constrained TF-TF composite motifs occurring over short DNA distances. We applied this to the extensive ChIP-seq data available from mouse embryonic stem cells (ESCs). In addition to the well-known and most prevalent sox-oct motif, we also discovered a novel constrained spacer motif for Esrrb and Sox2 with a gap of between 2 and 8 bps that Essrb and Sox2 cobind in a selective fashion. Through the use of knockdown experiments, we argue that the Esrrb-Sox2 complex is an arbiter of gene expression differences between ESCs and epiblast stem cells (EpiSC). A number of genes downregulated upon dual Esrrb/Sox2 knockdown (e.g., Klf4, Klf5, Jam2, Pecam1) are similarly downregulated in the ESC to EpiSC transition and contain the esrrb-sox motif. The prototypical Esrrb-Sox2 target gene, containing an esrrb-sox element conserved throughout eutherian and metatherian mammals, is Nr0b1. Through positive regulation of this transcriptional repressor, we argue the Esrrb-Sox2 complex promotes the ESC state through inhibition of the EpiSC transcriptional program and the same trio may also function to maintain trophoblast stem cells."	"Pluripotency re-centered around Esrrb. NA"	"Esrrb is a pivotal target of the Gsk3/Tcf3 axis regulating embryonic stem cell self-renewal. Inhibition of glycogen synthase kinase-3 (Gsk3) supports mouse embryonic stem cells (ESCs) by modulating Tcf3, but the critical targets downstream of Tcf3 are unclear. We analyzed the intersection between genome localization and transcriptome data sets to identify genes repressed by Tcf3. Among these, manipulations of Esrrb gave distinctive phenotypes in functional assays. Knockdown and knockout eliminated response to Gsk3 inhibition, causing extinction of pluripotency markers and loss of colony forming capability. Conversely, forced expression phenocopied Gsk3 inhibition or Tcf3 deletion by suppressing differentiation and sustaining self-renewal. Thus the nuclear receptor Esrrb is necessary and sufficient to mediate self-renewal downstream of Gsk3 inhibition. Leukaemia inhibitory factor (LIF) regulates ESCs through Stat3, independently of Gsk3 inhibition. Consistent with parallel operation, ESCs in LIF accommodated Esrrb deletion and remained pluripotent. These findings highlight a key role for Esrrb in regulating the naive pluripotent state and illustrate compensation among the core pluripotency factors."	"Esrrb is a direct Nanog target gene that can substitute for Nanog function in pluripotent cells. Embryonic stem cell (ESC) self-renewal efficiency is determined by the level of Nanog expression. However, the mechanisms by which Nanog functions remain unclear, and in particular, direct Nanog target genes are uncharacterized. Here we investigate ESCs expressing different Nanog levels and Nanog(-/-) cells with distinct functionally inducible Nanog proteins to identify Nanog-responsive genes. Surprisingly, these constitute a minor fraction of genes that Nanog binds. Prominent among Nanog-reponsive genes is Estrogen-related receptor b (Esrrb). Nanog binds directly to Esrrb, enhances binding of RNAPolII, and stimulates Esrrb transcription. Overexpression of Esrrb in ESCs maintains cytokine-independent self-renewal and pluripotency. Remarkably, this activity is retained in Nanog(-/-) ESCs. Moreover, Esrrb can reprogram Nanog(-/-) EpiSCs and can rescue stalled reprogramming in Nanog(-/-) pre-iPSCs. Finally, Esrrb deletion abolishes the defining ability of Nanog to confer LIF-independent ESC self-renewal. These findings are consistent with the functional placement of Esrrb downstream of Nanog."	"Pluripotency network in embryonic stem cells: maybe Leibniz was right all along. The transcription factors Tcf3 and Nanog regulate many genes in embryonic stem cells, but according to two reports in this issue of Cell Stem Cell (Festuccia et al., 2012, Martello et al., 2012), only one, Esrrb, encoding an orphan nuclear hormone receptor, truly matters in the maintenance of self-renewal."	"Ncoa3 functions as an essential Esrrb coactivator to sustain embryonic stem cell self-renewal and reprogramming. Embryonic stem cell (ESC) pluripotency depends on a well-characterized gene regulatory network centered on Oct4, Sox2, and Nanog. In contrast, little is known about the identity of the key coregulators and the mechanisms by which they may potentiate transcription in ESCs. Alongside core transcription factors, the orphan nuclear receptor Esrrb (estrogen-related receptor β) is vital for the maintenance of ESC identity and furthermore is uniquely associated with the basal transcription machinery. Here, we show that Ncoa3, an essential coactivator, is required to mediate Esrrb function in ESCs. Ncoa3 interacts with Esrrb via its ligand-binding domain and bridges Esrrb to RNA polymerase II complexes. Functionally, Ncoa3 is critical for both the induction and maintenance of pluripotency. Through chromatin immunoprecipitation (ChIP) sequencing and microarray experiments, we further demonstrate that Ncoa3 shares overlapping gene regulatory functions with Esrrb and cooperates genome-wide with the Oct4-Sox2-Nanog circuitry at active enhancers to up-regulate genes involved in self-renewal and pluripotency. We propose an integrated model of transcriptional and coactivator control, mediated by Ncoa3, for the maintenance of ESC self-renewal and somatic cell reprogramming."	"Derivation and characterization of sleeping beauty transposon-mediated porcine induced pluripotent stem cells. The domestic pig is an important large animal model for preclinical testing of novel cell therapies. Recently, we produced pluripotency reporter pigs in which the Oct4 promoter drives expression of the enhanced green fluorescent protein (EGFP). Here, we reprogrammed Oct4-EGFP fibroblasts employing the nonviral Sleeping Beauty transposon system to deliver the reprogramming factors Oct4, Sox2, Klf4, and cMyc. Successful reprogramming to a pluripotent state was indicated by changes in cell morphology and reactivation of the Oct4-EGFP reporter. The transposon-reprogrammed induced pluripotent stem (iPS) cells showed long-term proliferation in vitro over &gt;40 passages, expressed transcription factors typical of embryonic stem cells, including OCT4, NANOG, SOX2, REX1, ESRRB, DPPA5, and UTF1 and surface markers of pluripotency, including SSEA-1 and TRA-1-60. In vitro differentiation resulted in derivatives of the 3 germ layers. Upon injection of putative iPS cells under the skin of immunodeficient mice, we observed teratomas in 3 of 6 cases. These results form the basis for in-depth studies toward the derivation of porcine iPS cells, which hold great promise for preclinical testing of novel cell therapies in the pig model."	"Single-cell expression analyses during cellular reprogramming reveal an early stochastic and a late hierarchic phase. During cellular reprogramming, only a small fraction of cells become induced pluripotent stem cells (iPSCs). Previous analyses of gene expression during reprogramming were based on populations of cells, impeding single-cell level identification of reprogramming events. We utilized two gene expression technologies to profile 48 genes in single cells at various stages during the reprogramming process. Analysis of early stages revealed considerable variation in gene expression between cells in contrast to late stages. Expression of Esrrb, Utf1, Lin28, and Dppa2 is a better predictor for cells to progress into iPSCs than expression of the previously suggested reprogramming markers Fbxo15, Fgf4, and Oct4. Stochastic gene expression early in reprogramming is followed by a late hierarchical phase with Sox2 being the upstream factor in a gene expression hierarchy. Finally, downstream factors derived from the late phase, which do not include Oct4, Sox2, Klf4, c-Myc, and Nanog, can activate the pluripotency circuitry."	"Role of nuclear receptor coactivator 3 (Ncoa3) in pluripotency maintenance. Nuclear receptors, including Esrrb, Dax1, and Nr5a2, have been shown to be involved in pluripotency maintenance. Yet, the role of their coactivators in mouse embryonic stem cells remains unexplored. Here, we demonstrated that the nuclear receptor coactivator 3 (Ncoa3) is essential for pluripotency maintenance. Knockdown of Ncoa3 not only compromises the expression of pluripotency markers but also impairs in vitro and in vivo differentiation potential of mouse ESCs. Ncoa3 binds to the Nanog promoter and recruits the histone acetyltransferase CREB binding protein (CBP) and the histone arginine methyltransferase CARM1 to activate Nanog expression. Moreover, glycogen synthase kinase 3 GSK3 signaling down-regulates the Ncoa3 protein level to suppress Nanog expression. Thus, Ncoa3 not only contributes to self-renewal by activating Nanog but also facilitates ESC differentiation as a break point to disrupt the core transcriptional circuitry of pluripotency."	"DFNB35 due to a novel mutation in the ESRRB gene in a Czech consanguineous family. Non-syndromic hearing loss (NSHL) is a genetically heterogeneous disorder with mostly autosomal recessive inheritance. So far 40 genes and the same amount of loci with as yet unknown genes were described with autosomal recessive NSHL. A consanguineous Czech family with a child with NSHL was genotyped using SNP array and homozygous regions were compared with previously reported DFNB loci. GRXCR1 and ESRRB genes associated with autosomal recessive NSHL were located in two of the eight homozygous regions detected by SNP array genotyping. Mutation p.R291L in a homozygous state was found in the deaf child, the parents were heterozygous. The entire coding region of the ESRRB gene was sequenced in additional 39 patients of Czech origin with early NSHL and only two variants, p.V413I and p.P386S, were found in homozygous state, but are considered to be polymorphisms. Homozygosity mapping is a powerful method for identification of genes in heterogeneous recessive diseases. This is the first report of DFNB35 mutations in the Czech Republic and it seems to be a rare cause of NSHL. Additional mutations in ESRRB gene were reported in Pakistan, Tunisia and Turkey."	"Early-stage epigenetic modification during somatic cell reprogramming by Parp1 and Tet2. Somatic cells can be reprogrammed into induced pluripotent stem cells (iPSCs) by using the pluripotency factors Oct4, Sox2, Klf4 and c-Myc (together referred to as OSKM). iPSC reprogramming erases somatic epigenetic signatures—as typified by DNA methylation or histone modification at silent pluripotency loci—and establishes alternative epigenetic marks of embryonic stem cells (ESCs). Here we describe an early and essential stage of somatic cell reprogramming, preceding the induction of transcription at endogenous pluripotency loci such as Nanog and Esrrb. By day 4 after transduction with OSKM, two epigenetic modification factors necessary for iPSC generation, namely poly(ADP-ribose) polymerase-1 (Parp1) and ten-eleven translocation-2 (Tet2), are recruited to the Nanog and Esrrb loci. These epigenetic modification factors seem to have complementary roles in the establishment of early epigenetic marks during somatic cell reprogramming: Parp1 functions in the regulation of 5-methylcytosine (5mC) modification, whereas Tet2 is essential for the early generation of 5-hydroxymethylcytosine (5hmC) by the oxidation of 5mC (refs 3,4). Although 5hmC has been proposed to serve primarily as an intermediate in 5mC demethylation to cytosine in certain contexts, our data, and also studies of Tet2-mutant human tumour cells, argue in favour of a role for 5hmC as an epigenetic mark distinct from 5mC. Consistent with this, Parp1 and Tet2 are each needed for the early establishment of histone modifications that typify an activated chromatin state at pluripotency loci, whereas Parp1 induction further promotes accessibility to the Oct4 reprogramming factor. These findings suggest that Parp1 and Tet2 contribute to an epigenetic program that directs subsequent transcriptional induction at pluripotency loci during somatic cell reprogramming."	"A genome-wide RNAi screen in mouse embryonic stem cells identifies Mp1 as a key mediator of differentiation. Despite intense investigation of intrinsic and extrinsic factors that regulate pluripotency, the process of initial fate commitment of embryonic stem (ES) cells is still poorly understood. We used a genome-wide short hairpin RNA screen in mouse ES cells to identify genes that are essential for initiation of differentiation. Knockdown of the scaffolding protein Mek binding protein 1 (Mp1, also known as Lamtor3 or Map2k1ip1) stimulated self-renewal of ES cells, blocked differentiation, and promoted proliferation. Fibroblast growth factor 4 (FGF4) signaling is required for initial fate commitment of ES cells. Knockdown of Mp1 inhibited FGF4-induced differentiation but did not alter FGF4-driven proliferation. This uncoupling of differentiation and proliferation was also observed when oncogenic Ras isoforms were overexpressed in ES cells. Knockdown of Mp1 redirected FGF4 signaling from differentiation toward pluripotency and up-regulated the pluripotency-related genes Esrrb, Rex1, Tcl1, and Sox2. We also found that human germ cell tumors (GCTs) express low amounts of Mp1 in the invasive embryonic carcinoma and seminoma histologies and higher amounts of Mp1 in the noninvasive carcinoma in situ precursor and differentiated components. Knockdown of Mp1 in invasive GCT cells resulted in resistance to differentiation, thereby showing a functional role for Mp1 both in normal differentiation of ES cells and in germ cell cancer."	"A novel missense mutation in the ESRRB gene causes DFNB35 hearing loss in a Tunisian family. Autosomal recessive non-syndromic hearing loss (ARNSHL) is a genetically heterogenous disorder with 41 genes so far identified. Among these genes, ESRRB whose mutations are responsible for DFNB35 hearing loss in Pakistani and Turkish families. This gene encodes the estrogen-related receptor beta. In this study, we report a novel mutation (p.Y305H) in the ESRRB gene in a Tunisian family with ARNSHL. This mutation was not detected in 100 healthy individuals. Molecular modeling showed that the p.Y305H mutation is likely to alter the conformation of the ligand binding-site by destabilizing the coactivator binding pocket. Interestingly, this ligand-binding domain of the ESRRB protein has been affected in 5 out of 6 mutations causing DFNB35 hearing loss. Using linkage and DHPLC analysis, no more mutations were detected in the ESRRB gene in other 127 Tunisian families with ARNSHL indicating that DFNB35 is most likely to be a rare type of ARNSHL in the Tunisian population."	"Direct reprogramming of somatic cells is promoted by maternal transcription factor Glis1. Induced pluripotent stem cells (iPSCs) are generated from somatic cells by the transgenic expression of three transcription factors collectively called OSK: Oct3/4 (also called Pou5f1), Sox2 and Klf4. However, the conversion to iPSCs is inefficient. The proto-oncogene Myc enhances the efficiency of iPSC generation by OSK but it also increases the tumorigenicity of the resulting iPSCs. Here we show that the Gli-like transcription factor Glis1 (Glis family zinc finger 1) markedly enhances the generation of iPSCs from both mouse and human fibroblasts when it is expressed together with OSK. Mouse iPSCs generated using this combination of transcription factors can form germline-competent chimaeras. Glis1 is enriched in unfertilized oocytes and in embryos at the one-cell stage. DNA microarray analyses show that Glis1 promotes multiple pro-reprogramming pathways, including Myc, Nanog, Lin28, Wnt, Essrb and the mesenchymal-epithelial transition. These results therefore show that Glis1 effectively promotes the direct reprogramming of somatic cells during iPSC generation."	"Analysis of transcriptional regulatory pathways of photoreceptor genes by expression profiling of the Otx2-deficient retina. In the vertebrate retina, the Otx2 transcription factor plays a crucial role in the cell fate determination of both rod and cone photoreceptors. We previously reported that Otx2 conditional knockout (CKO) mice exhibited a total absence of rods and cones in the retina due to their cell fate conversion to amacrine-like cells. In order to investigate the entire transcriptome of the Otx2 CKO retina, we compared expression profile of Otx2 CKO and wild-type retinas at P1 and P12 using microarray. We observed that expression of 101- and 1049-probe sets significantly decreased in the Otx2 CKO retina at P1 and P12, respectively, whereas, expression of 3- and 4149-probe sets increased at P1 and P12, respectively. We found that expression of genes encoding transcription factors involved in photoreceptor development, including Crx, Nrl, Nr2e3, Esrrb, and NeuroD, was markedly down-regulated in the Otx2 CKO at both P1 and P12. Furthermore, we identified three human retinal disease loci mapped in close proximity to certain down-regulated genes in the Otx2 CKO retina including Ccdc126, Tnfsf13 and Pitpnm1, suggesting that these genes are possibly responsible for these diseases. These transcriptome data sets of the Otx2 CKO retina provide a resource on developing rods and cones to further understand the molecular mechanisms underlying photoreceptor development, function and disease."	"RAD21 cooperates with pluripotency transcription factors in the maintenance of embryonic stem cell identity. For self-renewal, embryonic stem cells (ESCs) require the expression of specific transcription factors accompanied by a particular chromosome organization to maintain a balance between pluripotency and the capacity for rapid differentiation. However, how transcriptional regulation is linked to chromosome organization in ESCs is not well understood. Here we show that the cohesin component RAD21 exhibits a functional role in maintaining ESC identity through association with the pluripotency transcriptional network. ChIP-seq analyses of RAD21 reveal an ESC specific cohesin binding pattern that is characterized by CTCF independent co-localization of cohesin with pluripotency related transcription factors Oct4, Nanog, Sox2, Esrrb and Klf4. Upon ESC differentiation, most of these binding sites disappear and instead new CTCF independent RAD21 binding sites emerge, which are enriched for binding sites of transcription factors implicated in early differentiation. Furthermore, knock-down of RAD21 causes expression changes that are similar to expression changes after Nanog depletion, demonstrating the functional relevance of the RAD21--pluripotency transcriptional network association. Finally, we show that Nanog physically interacts with the cohesin or cohesin interacting proteins STAG1 and WAPL further substantiating this association. Based on these findings we propose that a dynamic placement of cohesin by pluripotency transcription factors contributes to a chromosome organization supporting the ESC expression program."	"DREME: motif discovery in transcription factor ChIP-seq data. Transcription factor (TF) ChIP-seq datasets have particular characteristics that provide unique challenges and opportunities for motif discovery. Most existing motif discovery algorithms do not scale well to such large datasets, or fail to report many motifs associated with cofactors of the ChIP-ed TF. We present DREME, a motif discovery algorithm specifically designed to find the short, core DNA-binding motifs of eukaryotic TFs, and optimized to analyze very large ChIP-seq datasets in minutes. Using DREME, we discover the binding motifs of the the ChIP-ed TF and many cofactors in mouse ES cell (mESC), mouse erythrocyte and human cell line ChIP-seq datasets. For example, in mESC ChIP-seq data for the TF Esrrb, we discover the binding motifs for eight cofactor TFs important in the maintenance of pluripotency. Several other commonly used algorithms find at most two cofactor motifs in this same dataset. DREME can also perform discriminative motif discovery, and we use this feature to provide evidence that Sox2 and Oct4 do not bind in mES cells as an obligate heterodimer. DREME is much faster than many commonly used algorithms, scales linearly in dataset size, finds multiple, non-redundant motifs and reports a reliable measure of statistical significance for each motif found. DREME is available as part of the MEME Suite of motif-based sequence analysis tools (http://meme.nbcr.net)."	"Dynamic regulation of 5-hydroxymethylcytosine in mouse ES cells and during differentiation. Methylation at the 5' position of cytosine in DNA has important roles in genome function and is dynamically reprogrammed during early embryonic and germ cell development. The mammalian genome also contains 5-hydroxymethylcytosine (5hmC), which seems to be generated by oxidation of 5-methylcytosine (5mC) by the TET family of enzymes that are highly expressed in embryonic stem (ES) cells. Here we use antibodies against 5hmC and 5mC together with high throughput sequencing to determine genome-wide patterns of methylation and hydroxymethylation in mouse wild-type and mutant ES cells and differentiating embryoid bodies. We find that 5hmC is mostly associated with euchromatin and that whereas 5mC is under-represented at gene promoters and CpG islands, 5hmC is enriched and is associated with increased transcriptional levels. Most, if not all, 5hmC in the genome depends on pre-existing 5mC and the balance between these two modifications is different between genomic regions. Knockdown of Tet1 and Tet2 causes downregulation of a group of genes that includes pluripotency-related genes (including Esrrb, Prdm14, Dppa3, Klf2, Tcl1 and Zfp42) and a concomitant increase in methylation of their promoters, together with an increased propensity of ES cells for extraembryonic lineage differentiation. Declining levels of TETs during differentiation are associated with decreased hydroxymethylation levels at the promoters of ES cell-specific genes together with increased methylation and gene silencing. We propose that the balance between hydroxymethylation and methylation in the genome is inextricably linked with the balance between pluripotency and lineage commitment."	"A Novel ESRRB Deletion Is a Rare Cause of Autosomal Recessive Nonsyndromic Hearing Impairment among Pakistani Families. Mutations in the estrogen-related receptor beta (ESRRB) gene is the underlying cause of autosomal recessive nonsyndromic hearing impairment (ARNSHI) due to the DFNB35 locus which maps to 14q24.3. A genome scan of a large consanguineous Pakistani pedigree with ARNSHI established linkage with a maximum multipoint LOD score of 4.2 to the 14q24 region and the region of homozygosity contained the ESRRB gene. Sequencing of the ESRRB gene using DNA samples from hearing-impaired family members uncovered a novel three-nucleotide deletion c.1018_1020delGAG (p.Glu340del). The deletion segregates with hearing impairment in the pedigree and was not observed in 500 control chromosomes. The deletion of glutamic acid residue occurs in the ligand-binding domain of ESRRB protein. It is expected that the deletion affects the ligand-binding activity of the domain in ESRRB, which leads to the ARNSHI."	"The PluriNetWork: an electronic representation of the network underlying pluripotency in mouse, and its applications. Analysis of the mechanisms underlying pluripotency and reprogramming would benefit substantially from easy access to an electronic network of genes, proteins and mechanisms. Moreover, interpreting gene expression data needs to move beyond just the identification of the up-/downregulation of key genes and of overrepresented processes and pathways, towards clarifying the essential effects of the experiment in molecular terms. We have assembled a network of 574 molecular interactions, stimulations and inhibitions, based on a collection of research data from 177 publications until June 2010, involving 274 mouse genes/proteins, all in a standard electronic format, enabling analyses by readily available software such as Cytoscape and its plugins. The network includes the core circuit of Oct4 (Pou5f1), Sox2 and Nanog, its periphery (such as Stat3, Klf4, Esrrb, and c-Myc), connections to upstream signaling pathways (such as Activin, WNT, FGF, BMP, Insulin, Notch and LIF), and epigenetic regulators as well as some other relevant genes/proteins, such as proteins involved in nuclear import/export. We describe the general properties of the network, as well as a Gene Ontology analysis of the genes included. We use several expression data sets to condense the network to a set of network links that are affected in the course of an experiment, yielding hypotheses about the underlying mechanisms. We have initiated an electronic data repository that will be useful to understand pluripotency and to facilitate the interpretation of high-throughput data. To keep up with the growth of knowledge on the fundamental processes of pluripotency and reprogramming, we suggest to combine Wiki and social networking software towards a community curation system that is easy to use and flexible, and tailored to provide a benefit for the scientist, and to improve communication and exchange of research results. A PluriNetWork tutorial is available at http://www.ibima.med.uni-rostock.de/IBIMA/PluriNetWork/."	"Parkin degrades estrogen-related receptors to limit the expression of monoamine oxidases. Parkin, whose mutations cause Parkinson disease (PD), controls oxidative stress by limiting the expression of monoamine oxidases (MAO)--mitochondrial enzymes responsible for the oxidative de-amination of dopamine. Here, we show that parkin performed this function by increasing the ubiquitination and degradation of estrogen-related receptors (ERR), orphan nuclear receptors that play critical roles in the transcription regulation of many nuclear-encoded mitochondrial proteins. All three ERRs (α, β and γ) increased the transcription of MAOs A and B; the effects were abolished by parkin, but not by its PD-linked mutants. Parkin bound to ERRs and increased their ubiquitination and degradation. In fibroblasts from PD patients with parkin mutations or brain slices from parkin knockout mice, degradation of ERRs was significantly attenuated. The results reveal the molecular mechanism by which parkin suppresses the transcription of MAOs to control oxidative stress induced by dopamine oxidation."	"Transcriptional activity of estrogen-related receptor γ (ERRγ) is stimulated by the phytoestrogen equol. Estrogen-related receptor γ (ERRγ) is an orphan nuclear receptor lacking identified natural ligands. The synthetic estrogen receptor ligands 4-hydroxytamoxifen and diethylstilbestrol have, however, been shown to bind to and abolish the constitutive transcriptional activity of ERRγ. Certain phytoestrogens were recently reported to act as agonists of the related ERRα. We investigated whether phytoestrogens also modulated the transcriptional activity of ERRγ. We analyzed a selection of phytoestrogens for their potential agonistic or antagonistic activity on ERRγ. In transiently transfected PC-3 and U2-OS cells equol stimulated the transcriptional activity of ERRγ and enhanced its interaction with the coactivator GRIP1. The agonistic effect of equol was abolished by 4-hydroxytamoxifen. Equol induced a conformational change in the ERRγ ligand-binding domain. Based on structural models of the ERRγ ligand-binding domain, we were able to introduce mutations that modulated the agonistic potential of equol. Finally, equol enhanced the growth inhibitory effect of ERRγ on the prostate cancer PC-3 cells. In conclusion, we have demonstrated that the phytoestrogen equol acts as an ERRγ agonist."	"Transcription factors for the modulation of pluripotency and reprogramming. Pluripotency and self-renewal are the defining traits of embryonic stem cells (ESCs) and this status quo is maintained by the core transcription factors Oct4, Sox2, and Nanog. Genome-wide mapping of the binding sites of these pivotal factors and other ESC transcriptional regulators has unraveled the transcriptional network governing pluripotency. Strikingly, a sizeable fraction of the binding sites of Oct4 and Nanog are not conserved in mouse and human ESCs. Binding site turnover and the presence of species-specific transposable elements are some of the factors contributing to this disp arity. Hence, comparing human and mouse ESCs will shed new light on the design of transcriptional regulatory networks for pluripotency. Despite the significant differences among pluripotent mammalian stem cells, the same set of transcription factors (Oct4, Sox2, Klf4, and c-Myc) can be used to reprogram human and mouse somatic cells into induced pluripotent stem cells. Recent works also demonstrate that there are multiple ways of imparting pluripotency. For instance, the nuclear receptors Nr5a2 and Esrrb can, respectively, substitute for Oct4 and Klf4 in reprogramming. This chapter summarizes the different roles of transcription factors in the modulation of pluripotent states and in the induction of pluripotent phenotypes."	"Network-based comparison of temporal gene expression patterns. In the pursuits of mechanistic understanding of cell differentiation, it is often necessary to compare multiple differentiation processes triggered by different external stimuli and internal perturbations. Available methods for comparing temporal gene expression patterns are limited to a gene-by-gene approach, which ignores co-expression information and thus is sensitive to measurement noise. We present a method for co-expression network based comparison of temporal expression patterns (NACEP). NACEP compares the temporal patterns of a gene between two experimental conditions, taking into consideration all of the possible co-expression modules that this gene may participate in. The NACEP program is available at http://biocomp.bioen.uiuc.edu/nacep. We applied NACEP to analyze retinoid acid (RA)-induced differentiation of embryonic stem (ES) cells. The analysis suggests that RA may facilitate neural differentiation by inducing the shh and insulin receptor pathways. NACEP was also applied to compare the temporal responses of seven RNA inhibition (RNAi) experiments. As proof of concept, we demonstrate that the difference in the temporal responses to RNAi treatments can be used to derive interaction relationships of transcription factors (TFs), and therefore infer regulatory modules within a transcription network. In particular, the analysis suggested a novel regulatory relationship between two pluripotency regulators, Esrrb and Tbx3, which was supported by in vivo binding of Esrrb to the promoter of Tbx3. The NACEP program and the supplementary documents are available at http://biocomp.bioen.uiuc.edu/nacep. szhong@illinois.edu Supplementary data are available at Bioinformatics online."	"New insights for Ets2 function in trophoblast using lentivirus-mediated gene knockdown in trophoblast stem cells. Mouse trophoblast stem (TS) cells represent a unique in vitro system that provides an unlimited supply of TS cells for the study of trophoblast differentiation and TS cell self-renewal. Although the mouse transcription factor Ets2 is required for TS cell self-renewal, its role in this and in TS cell differentiation has not been explored fully, partly due to the early lethality of Ets2 null mice. To address this, we developed a novel lentivirus-based system that resulted in efficient Ets2 knockdown in the overwhelming majority of TS cells. This system enables functional studies in TS cells, especially for genes required for TS cell self-renewal because TS cell derivation using gene-knockout embryos for such genes depends on TS cell self-renewal. Using morphological/morphometric criteria and gene expression analysis, we show that the requirement for Ets2 in self-renewal of TS cells cultured in 'stem cell medium' (SCM) involves maintenance of the expression of genes that inhibit TS cell differentiation in SCM, such as Cdx2 and Esrrb, and preservation of the undifferentiated TS cell morphology. During TS cell differentiation caused by Cdx2/Esrrb downregulation, due to either Ets2 knockdown in SCM or culture in differentiation medium (DM), Ets2 is also required for the promotion of trophoblast giant cell (TGC) and junctional zone trophoblast (JZT) differentiation. This TGC differentiation involves Ets2-dependent expression of Hand1, a gene required for the differentiation of all TGC types. This study uncovers new roles for Ets2 in TS cell self-renewal and differentiation and demonstrates the usefulness of this lentivirus system for gene function studies in TS cells."	"A 350 bp region of the proximal promoter of Rds drives cell-type specific gene expression. RDS (retinal degeneration slow) is a photoreceptor-specific tetraspanin protein required for the biogenesis and maintenance of rod and cone outer segments. Mutations in the Rds gene are associated with multiple forms of rod- and cone-dominant retinal degeneration. To gain more insight into the mechanisms underlying the regulation of this gene, the identification of regulatory sequences within the promoter of Rds was undertaken. A 3.5 kb fragment of the 5' flanking region of the mouse Rds gene was isolated and binding sites for Crx, Otx2, Nr2e3, RXR family members, Mef2C, Esrrb, NF1, AP1, and SP1 in addition to several E-boxes, GC-boxes and GAGA-boxes were identified. Crx binding sequences were conserved in all mammalian species examined. Truncation expression analysis of the Rds promoter region in Y-79 retinoblastoma cells showed maximal activity in the 350 bp proximal promoter region. We also show that inclusion of more distal fragments reduced promoter activity to the basal level, and that the promoter activities are cell-type and direction specific. Co-transfection with Nrl increased promoter activity, suggesting that this gene positively regulates Rds expression. Based on these findings, a relatively small fragment of the Rds promoter may be useful in future gene transfer studies to drive gene expression in photoreceptors."	"Productive infection and bICP0 early promoter activity of bovine herpesvirus 1 are stimulated by E2F1. Bovine herpesvirus 1 (BoHV-1) is an important viral pathogen of cattle. Like other members of the subfamily Alphaherpesvirinae, BoHV-1 establishes latency in sensory neurons and has the potential to reactivate from latency. Dexamethasone (DEX) treatment of latently infected calves or rabbits consistently leads to reactivation from latency. The BoHV-1 transcript encoding the infected cell protein 0 (bICP0) is consistently detected during reactivation from latency, in part because the bICP0 early promoter is activated by DEX. During DEX-induced reactivation from latency, cyclin expression is stimulated in infected sensory neurons. Cyclin-dependent kinase activity phosphorylates Rb (retinoblastoma tumor suppressor gene product) family proteins and consequently releases the E2F family of transcription factors, suggesting that E2F family members stimulate productive infection and/or reactivation from latency. In this study, we provide evidence that repression of E2F1 by a specific small interfering RNA (siRNA) reduced productive infection approximately 5-fold. E2F1 or E2F2 stimulated bICP0 early promoter activity at least 100-fold in transient transfection assays. Two E2F-responsive regions (ERR) were identified within the early promoter, with one adjacent to the TATA box (ERR1) and one approximately 600 bp upstream from the TATA box (ERR2). Mobility shift assays suggested that E2F interacts with ERR1 and ERR2. E2F1 protein levels were increased at late times after infection, which correlated with enhanced binding to a consensus E2F binding site, ERR1, or ERR2. Collectively, these studies suggest that E2F1 stimulates productive infection and bICP0 early promoter activity, in part because E2F family members interact with ERR1 and ERR2."	"An Oct4-centered protein interaction network in embryonic stem cells. Transcription factors, such as Oct4, are critical for establishing and maintaining pluripotent cell identity. Whereas the genomic locations of several pluripotency transcription factors have been reported, the spectrum of their interaction partners is underexplored. Here, we use an improved affinity protocol to purify Oct4-interacting proteins from mouse embryonic stem cells (ESCs). Subsequent purification of Oct4 partners Sall4, Tcfcp2l1, Dax1, and Esrrb resulted in an Oct4 interactome of 166 proteins, including transcription factors and chromatin-modifying complexes with documented roles in self-renewal, but also many factors not previously associated with the ESC network. We find that Esrrb associated with the basal transcription machinery and also detect interactions between transcription factors and components of the TGF-beta, Notch, and Wnt signaling pathways. Acute depletion of Oct4 reduced binding of Tcfcp2l1, Dax1, and Esrrb to several target genes. In conclusion, our purification protocol allowed us to bring greater definition to the circuitry controlling pluripotent cell identity."	"[Expression of early developmental genes in vole Microtus rossiaemeridionalis]. The expression of genes Sox2, Klf4, Myc, Sall4, Gata6, Foxa2, Hnf4a, Cdx2, Esrrb, Hand1 in cultivated cells, embryos and organs of adult voles Microtus rossiaemeridionalis was studied. High resemblance of the expression patterns of these genes in the organs of adult voles, mice and humans was demonstrated. It was established that genes Gata6, Foxa2 and Hnf4a were specifically expressed in vole extraembryonic endoderm cells, while Cdx2 and Handl genes, in trophoblast stem cells. This shows that these genes can be used markers for corresponding vole cell lines. Indirect confirmation pointing to the fact that Oct4 gene is a marker gene for epiblast cells both in the vole and mouse was obtained."	"Master stem cell transcription factors and signaling regulation. The present article reviews master stem cell transcription factors, their expression regulation network, and related signaling pathways with the aim of understanding the molecular mechanisms of pluripotent cell fate decisions. Oct4, Sox2, and Nanog are master transcription factors for maintenance of the undifferentiated state and self-renewal of embryonic stem cells (ESCs). In the mouse, they form a regulatory circuitry with coregulators, such as beta-catenin, Stat3, Myc, Klfs, Sall4, and Esrrb to control the expression of pluripotency-related genes including themselves. The threshold expression of Oct4, Sox2, and Nanog for sustaining ESC properties depends on the synergistic effects among Stat3, beta-catenin, and Smad signaling pathway under the specific conditions of the ESC cytoplasmic microenvironment. Some of the salient differences in human ESC signaling pathways affecting their fate commitment are highlighted."	"Differential expression of estrogen-related receptors beta and gamma (ERRbeta and ERRgamma) and their clinical significance in human prostate cancer. Estrogen-related receptor (ERR) is a nuclear receptor that modulates the estrogen-signaling pathway. Here, we investigated the expression of both ERRbeta and ERRgamma in human prostate tissues. Using original rabbit polyclonal anti-ERRbeta and anti-ERRgamma antibodies, the expression of ERRbeta and ERRgamma was evaluated by immunohistochemical analysis of cancerous lesions (n = 107) and benign foci (n = 92), obtained by radical prostatectomy. Stained slides were evaluated for the proportion of immunoreactive cells and their staining intensity. Total immunoreactivity scores (IR scores; range, 0-8) were calculated as the sum of the proportion and intensity scores. The relationship between the clinicopathological characteristics of the patients and the expression of the three ERRs (ERRalpha, ERR beta, and ERR gamma) was evaluated. IR scores for ERRbeta and ERRgamma were significantly lower in cancerous lesions than that in benign foci (P &lt; 0.0001, for both). Clinicopathological analyses revealed that the patients with low ERRgamma IR scores (&lt;or=4) tended to show poor cancer-specific survival (P = 0.07). Then, we used data from our previous study (Fujimura T., Int J Cancer, 2007; 120: 2325-30). Patients with a high IR score for ERRalpha and a low score for ERRgamma showed significantly poorer cancer-specific survival than those with a low IR score for ERRalpha and a high score for ERRgamma (P = 0.0003). We demonstrated the differential expression of ERRbeta and ERRgamma in prostate tissue. The combined evaluation of the expression of ERRalpha and ERRgamma could be a significant prognostic factor for prostate cancer."	"ChIP-Seq of transcription factors predicts absolute and differential gene expression in embryonic stem cells. Next-generation sequencing has greatly increased the scope and the resolution of transcriptional regulation study. RNA sequencing (RNA-Seq) and ChIP-Seq experiments are now generating comprehensive data on transcript abundance and on regulator-DNA interactions. We propose an approach for an integrated analysis of these data based on feature extraction of ChIP-Seq signals, principal component analysis, and regression-based component selection. Compared with traditional methods, our approach not only offers higher power in predicting gene expression from ChIP-Seq data but also provides a way to capture cooperation among regulators. In mouse embryonic stem cells (ESCs), we find that a remarkably high proportion of variation in gene expression (65%) can be explained by the binding signals of 12 transcription factors (TFs). Two groups of TFs are identified. Whereas the first group (E2f1, Myc, Mycn, and Zfx) act as activators in general, the second group (Oct4, Nanog, Sox2, Smad1, Stat3, Tcfcp2l1, and Esrrb) may serve as either activator or repressor depending on the target. The two groups of TFs cooperate tightly to activate genes that are differentially up-regulated in ESCs. In the absence of binding by the first group, the binding of the second group is associated with genes that are repressed in ESCs and derepressed upon early differentiation."	"Exhaustive search for over-represented DNA sequence motifs with CisFinder. We present CisFinder software, which generates a comprehensive list of motifs enriched in a set of DNA sequences and describes them with position frequency matrices (PFMs). A new algorithm was designed to estimate PFMs directly from counts of n-mer words with and without gaps; then PFMs are extended over gaps and flanking regions and clustered to generate non-redundant sets of motifs. The algorithm successfully identified binding motifs for 12 transcription factors (TFs) in embryonic stem cells based on published chromatin immunoprecipitation sequencing data. Furthermore, CisFinder successfully identified alternative binding motifs of TFs (e.g. POU5F1, ESRRB, and CTCF) and motifs for known and unknown co-factors of genes associated with the pluripotent state of ES cells. CisFinder also showed robust performance in the identification of motifs that were only slightly enriched in a set of DNA sequences."	"The genetics of induced pluripotency. The flurry of recent publications regarding reprogramming of mature cell types to induced pluripotent stem cells raises the question: what exactly is pluripotency? A functional definition is provided by examination of the developmental potential of pluripotent stem cell types. Defining pluripotency at the molecular level, however, can be a greater challenge. Here, we examine the emerging list of genes associated with induced pluripotency, with particular attention to their functional requirement in the mouse embryo. Knowledge of the requirement for these genes in the embryo and in embryonic stem cells will advance our understanding of how to reverse the developmental clock for therapeutic benefit."	"Characterization of the phosphoinositide 3-kinase-dependent transcriptome in murine embryonic stem cells: identification of novel regulators of pluripotency. Phosphoinositide 3-kinase (PI3K)-dependent signaling has been implicated in the regulation of embryonic stem (ES) cell fate. To gain further insight into the mechanisms regulated by PI3Ks in murine ES cells, we have performed expression profiling using Affymetrix GeneChips to characterize the transcriptional changes that arise as a result of inhibition of PI3K-dependent signaling. Using filtering of greater than 1.5-fold change in expression and an analysis of variance significance level of p &lt; .05, we have defined a dataset comprising 646 probe sets that detect changes in transcript expression (469 down and 177 up) on inhibition of PI3Ks. Changes in expression of selected genes have been validated by quantitative reverse transcription polymerase chain reaction. Gene ontology analyses reveal significant over-representation of transcriptional regulators within our dataset. In addition, several known regulators of ES cell pluripotency, for example, Nanog, Esrrb, Tbx3, and Tcl-1, are among the downregulated genes. To evaluate the functional involvement of selected genes in regulation of ES cell self-renewal, we have used short interfering RNA-mediated knockdown. These studies identify genes not previously associated with control of ES cell fate that are involved in regulating ES cell pluripotency, including the protein tyrosine phosphatase Shp-1 and the Zscan4 family of zinc finger proteins. Further gain-of-function analyses demonstrate the importance of Zscan4c in regulation of ES cell pluripotency."	"Reprogramming of fibroblasts into induced pluripotent stem cells with orphan nuclear receptor Esrrb. The dominant effect of transcription factors in imparting expanded potency is best exemplified by the reprogramming of fibroblasts to pluripotent cells using retrovirus-mediated transduction of defined transcription factors. In the murine system, Oct4, Sox2, c-Myc and Klf4 are sufficient to convert fibroblasts to induced pluripotent stem (iPS) cells that have many characteristics of embryonic stem (ES) cells. Here we show that the orphan nuclear receptor Esrrb functions in conjunction with Oct4 and Sox2 to mediate reprogramming of mouse embryonic fibroblasts (MEFs) to iPS cells. Esrrb-reprogrammed cells share similar expression and epigenetic signatures as ES cells. These cells are also pluripotent and can differentiate in vitro and in vivo into the three major embryonic cell lineages. Furthermore, these cells contribute to mouse chimaeras and are germline transmissible. In ES cells, Esrrb targets many genes involved in self-renewal and pluripotency. This suggests that Esrrb may mediate reprogramming through the upregulation of ES-cell-specific genes. Our findings also indicate that it is possible to reprogram MEFs without exogenous Klf transcription factors and link a nuclear receptor to somatic cell reprogramming."	"Esrrb activates Oct4 transcription and sustains self-renewal and pluripotency in embryonic stem cells. The genetic program of embryonic stem (ES) cells is orchestrated by a core of transcription factors that has OCT4, SOX2, and NANOG as master regulators. Protein levels of these core factors are tightly controlled by autoregulatory and feed-forward transcriptional mechanisms in order to prevent early differentiation. Recent studies have shown that knockdown of Esrrb (estrogen-related-receptor beta), a member of the nuclear orphan receptor family, induces differentiation of mouse ES cells cultured in the presence of leukemia inhibitory factor. It was however not known how knocking down Esrrb exerts this effect. Herein we have identified two ESRRB binding sites in the proximal 5'-untranslated region of the mouse Oct4 gene, one of which is in close proximity to a NANOG binding site. Both ESRRB and NANOG are necessary for maintaining the activity of this promoter in ES cell lines. We have also demonstrated that the two transcription factors interact through their DNA binding domains. This interaction reciprocally modulates their transcriptional activities and may be important to fine-tune ES cell pluripotency. Supporting all of these data, stable transfection of Esrrb in ES cell lines proved sufficient to sustain their characteristics in the absence of leukemia-inhibitory factor. In summary, our experiments help to understand how Esrrb coordinates with Nanog and Oct4 to activate the internal machinery of ES cells."	"Estrogen receptor related beta is expressed in human endometrium throughout the normal menstrual cycle. Estrogen receptor related beta (ERRbeta, ESRRB/NR3B2) is an orphan receptor that shares significant sequence homology with estrogen receptors ERalpha and ERbeta. ERR family members are reported to exhibit constitutive transcriptional activity; however, little is known about the biological function of ERRbeta. In an attempt to delineate its role, we examined expression of ERRbeta in normal human endometrium, a tissue that undergoes cyclic remodelling under the influence of estrogen and progesterone. Well-characterized endometrial tissue (n = 31), including full-thickness biopsies, was obtained from women with regular menstrual cycles. RT-PCR was used to measure mRNA encoding ERRbeta, the peroxisome proliferator activated receptor gamma coactivators (PGC)-1alpha and beta and to determine whether ERRbeta splice variant mRNAs were expressed. ERRbeta was immunolocalized using both single and double antibody immunohistochemistry. Total ERRbeta mRNA appeared higher in proliferative phase samples but results did not reach significance. Transcripts corresponding to the long- and short-splice variants of ERRbeta as well as PGC1alpha and beta were detected but ERRbetaDelta10 was absent. ERRbeta protein was localized to cell nuclei within multiple endometrial cell types including the glands, stroma, endothelium and immune cells, including uterine natural killer (uNK) cells and macrophages. Fluorescent immunohistochemistry revealed that some cells co-expressed ERRbeta and ERalpha or ERbeta, for example, endothelial and uNK cells were ERRbeta+/ERbeta+. ERRbeta mRNA and protein are expressed in healthy human endometrium. Further studies are warranted to characterize the functional impact of ERRbeta on endometrial biology."	"Estrogen-related receptor beta interacts with Oct4 to positively regulate Nanog gene expression. Embryonic stem (ES) cell self-renewal is regulated by transcription factors, including Oct4, Sox2, and Nanog. A number of additional transcriptional regulators of ES cell self-renewal have recently been identified, including the orphan nuclear receptor estrogen-related receptor beta (Esrrb). However, the mode of action of Esrrb in ES cells is unknown. Here, using an Oct4 affinity screen, we identify Esrrb as an Oct4 partner protein. Esrrb can interact with Oct4 independently of DNA. Esrrb is recruited near the Oct-Sox element in the Nanog proximal promoter, where it positively regulates Nanog expression. Esrrb recruitment to the Nanog promoter requires both the presence of Oct4 and a degenerate estrogen-related receptor DNA element. Consistent with its role in Nanog regulation, expression of the Esrrb protein within the Oct4-positive ES cell population is mosaic and correlates with the mosaic expression of the Nanog protein. Together with previous reports that Nanog may regulate Esrrb gene expression, our results suggest that Esrrb and Nanog act as part of a feedback regulatory circuit that modulates the fluctuating self-renewal capacity of ES cell populations."	"Combined in utero and juvenile exposure of mice to arsenate and atrazine in drinking water modulates gene expression and clonogenicity of myeloid progenitors. The effects of arsenate (As) and atrazine (Atr) on myeloid progenitors (colony-forming unit-granulocyte/macrophage, CFU-GM) cells derived from bone marrow were studied in male and female mice after combined in utero and juvenile exposure. Female adult mice were treated with arsenate in drinking water during gestation. Then, separate groups of males and females' offspring were exposed for 4 months to atrazine, to additional arsenate or to co-exposure of atrazine and arsenate together in drinking water. In male mice, arsenate and the combined exposure did not modulate the percentage of CFU-GM progenitors, whereas atrazine significantly decreases the clonogenicity of myeloid cells. In females, the percentage of CFU-GM significantly decreased after atrazine exposure did not change with arsenate treatment, but dramatically increased after the combined exposure. The expression of estrogen receptors alpha (ERalpha) and beta (ERbeta) in bone marrow cells was investigated, and an up-regulation of receptor beta was observed in both genders. A gene expression profile was generated using nylon membranes spotted with 1185 cancer-related genes. Results from microarrays indicate that atrazine alone did not stimulate the expression of any of the genes analysed in both male and female. Arsenic induced gene expression modulation only in female. Major significant changes on the gene expression resulted following the co-exposure to arsenic and atrazine in both male and female."	"Integration of external signaling pathways with the core transcriptional network in embryonic stem cells. Transcription factors (TFs) and their specific interactions with targets are crucial for specifying gene-expression programs. To gain insights into the transcriptional regulatory networks in embryonic stem (ES) cells, we use chromatin immunoprecipitation coupled with ultra-high-throughput DNA sequencing (ChIP-seq) to map the locations of 13 sequence-specific TFs (Nanog, Oct4, STAT3, Smad1, Sox2, Zfx, c-Myc, n-Myc, Klf4, Esrrb, Tcfcp2l1, E2f1, and CTCF) and 2 transcription regulators (p300 and Suz12). These factors are known to play different roles in ES-cell biology as components of the LIF and BMP signaling pathways, self-renewal regulators, and key reprogramming factors. Our study provides insights into the integration of the signaling pathways into the ES-cell-specific transcription circuitries. Intriguingly, we find specific genomic regions extensively targeted by different TFs. Collectively, the comprehensive mapping of TF-binding sites identifies important features of the transcriptional regulatory networks that define ES-cell identity."	"Molecularly targeted therapy in breast cancer: the new generation. Breast cancer management has become increasingly complex, requiring the integration of data not only from the patient's history and imaging modalities but also from specific tumor biomarkers and gene expression. Targeted and biologic therapies in breast cancer continue to evolve rapidly. The field of molecular targeted therapy has emerged. Its ultimate goal is to personalize and simplify treatment as well as minimize toxicity. This review aims at highlighting the current state-of-the-art in novel molecular targeted therapies for breast cancer based on multi-targeted small molecule tyrosine kinase inhibitors (TKI). The first two agents in this group entering clinic, Lapatinib (GW572016; Tykerb) and SUNITINIB (SU11248; Sutent) are discussed. This review article also includes relevant patents."	"Tcf3 functions as a steady-state limiter of transcriptional programs of mouse embryonic stem cell self-renewal. Elucidating the underlying transcriptional control of pluripotent cells is necessary for the development of new methods of inducing and maintaining pluripotent cells in vitro. Three transcription factors, Nanog, Oct4, and Sox2, have been reported to form a feedforward circuit promoting pluripotent cell self-renewal in embryonic stem cells (ESC). Previously, we found that a transcriptional repressor activity of Tcf3, a DNA-binding effector of Wnt signaling, reduced Nanog promoter activity and Nanog levels in mouse embryonic stem cells (mESC). The objective of this study was to determine the scope of Tcf3 effects on gene expression and self-renewal beyond the regulation of Nanog levels. We show that Tcf3 acts broadly on a genome-wide scale to reduce the levels of several promoters of self-renewal (Nanog, Tcl1, Tbx3, Esrrb) while not affecting other ESC genes (Oct4, Sox2, Fgf4). Comparing effects of Tcf3 ablation with Oct4 or Nanog knockdown revealed that Tcf3 counteracted effects of both Nanog and Oct4. Interestingly, the effects of Tcf3 were more strongly correlated with Oct4 than with Nanog, despite the normal levels of Oct4 in TCF3-/- mESC. The deranged gene expression allowed TCF3-/- mESC self-renewal even in the absence of leukemia inhibitory factor and delayed differentiation in embryoid bodies. These findings identify Tcf3 as a cell-intrinsic inhibitor of pluripotent cell self-renewal that functions by limiting steady-state levels of self-renewal factors. Disclosure of potential conflicts of interest is found at the end of this article."	"Characterization and genetic manipulation of human umbilical cord vein mesenchymal stem cells: potential application in cell-based gene therapy. Stem cells are defined by two main characteristics: self-renewal capacity and commitment to multi-lineage differentiation. The cells have a great therapeutic potential in repopulating damaged tissues as well as being genetically manipulated and used in cell-based gene therapy. Umbilical cord vein is a readily available and inexpensive source of stem cells that are capable of generating various cell types. Despite the recent isolation of human umbilical cord vein mesenchymal stem cells (UVMSC), the self-renewal capacity and the potential clinical application of the cells are not well known. In the present study, we have successfully isolated and cultured human UVMSCs. Our data further revealed that the isolated cells express the self-renewal genes Oct-4, Nanog, ZFX, Bmi-1, and Nucleostemin; but not Zic-3, Hoxb-4, TCL-1, Tbx-3 and Esrrb. In addition, our immunocytochemistry results revealed the expression of SSEA-4, but not SSEA-3, TRA-1-60, and TRA-1-81 embryonic stem cell surface markers in the cells. Also, we were able to transfect the cells with a reporter, enhanced green fluorescent protein (EGFP), and a therapeutic human brain-derived neurotrophic factor (hBDNF) gene by means of electroporation and obtained a stable cell line, which could constantly express both transgenes. The latter data provide further evidence on the usefulness of umbilical cord vein mesenchymal stem cells as a readily available source of stem cells, which could be genetically manipulated and used in cell-based gene therapy applications."	"Estrogen receptor (ER) and ER-related receptor expression in normal and atrophic human vagina. The estrogen level decline in menopausal status is involved in physiological alterations of different human tissues including vaginal mucosa. In this study, we have evaluated the estrogen receptor (ER) and estrogen receptor-related receptor (ERR) expression in tissue samples of posterior vaginal wall obtained from pre- and post-menopausal women. The nuclear receptor expression was determined by quantitative real-time PCR (qPCR). The qPCR results showed the presence of the three isoforms of the ERR family (ERRalpha, ERRbeta and ERRgamma) that were coexpressed with ERs in all vaginal tissue samples examined. The ERRalpha and ERRgamma mRNA levels decreased from normal vagina of the pre-menopausal women to atrophic vaginal tissue in post-menopausal women. This trend was also observed for the ERbeta subtype. The ERRs, such as ERs, are present in human vagina at the mRNA level and the cessation of ovarian estrogen secretion, that is the key event during the post-menopause, may be linked to ERbeta, ERRalpha and ERRgamma mRNA decline in human vaginal mucosa. These findings may provide a biological rationale for the clinical susceptibility of the post-menopausal vagina to local estrogen treatment."	"Mutations of ESRRB encoding estrogen-related receptor beta cause autosomal-recessive nonsyndromic hearing impairment DFNB35. In a large consanguineous family of Turkish origin, genome-wide homozygosity mapping revealed a locus for recessive nonsyndromic hearing impairment on chromosome 14q24.3-q34.12. Fine mapping with microsatellite markers defined the critical linkage interval to a 18.7 cM region flanked by markers D14S53 and D14S1015. This region partially overlapped with the DFNB35 locus. Mutation analysis of ESRRB, a candidate gene in the overlapping region, revealed a homozygous 7 bp duplication in exon 8 in all affected individuals. This duplication results in a frame shift and premature stop codon. Sequence analysis of the ESRRB gene in the affected individuals of the original DFNB35 family and in three other DFNB35-linked consanguineous families from Pakistan revealed four missense mutations. ESRRB encodes the estrogen-related receptor beta protein, and one of the substitutions (p.A110V) is located in the DNA-binding domain of ESRRB, whereas the other three are substitutions (p.L320P, p.V342L, and p.L347P) located within the ligand-binding domain. Molecular modeling of this nuclear receptor showed that the missense mutations are likely to affect the structure and stability of these domains. RNA in situ hybridization in mice revealed that Esrrb is expressed during inner-ear development, whereas immunohistochemical analysis showed that ESRRB is present postnatally in the cochlea. Our data indicate that ESRRB is essential for inner-ear development and function. To our knowledge, this is the first report of pathogenic mutations of an estrogen-related receptor gene."	"An in situ hybridization-based screen for heterogeneously expressed genes in mouse ES cells. We previously reported that Zscan4 showed heterogeneous expression patterns in mouse embryonic stem (ES) cells. To identify genes that show similar expression patterns, we carried out high-throughput in situ hybridization assays on ES cell cultures for 244 genes. Most of the genes are involved in transcriptional regulation, and were selected using microarray-based comparisons of gene expression profiles in ES and embryonal carcinoma (EC) cells versus differentiated cell types. Pou5f1 (Oct4, Oct3/4) and Krt8 (EndoA) were used as controls. Hybridization signals were detected on ES cell colonies for 147 genes (60%). The majority (136 genes) of them showed relatively homogeneous expression in ES cell colonies. However, we found that two genes unequivocally showed Zscan4-like spotted expression pattern (spot-in-colony pattern; Whsc2 and Rhox9). We also found that nine genes showed relatively heterogeneous expression pattern (mosaic-in-colony pattern: Zfp42/Rex1, Rest, Atf4, Pa2g4, E2f2, Nanog, Dppa3/Pgc7/Stella, Esrrb, and Fscn1). Among these genes, Zfp42/Rex1 showed unequivocally heterogeneous expression in individual ES cells prepared by the CytoSpin. These results show the presence of different types or states of cells within ES cell cultures otherwise thought to be undifferentiated and homogeneous, suggesting a previously unappreciated complexity in ES cell cultures."	"A gene regulatory network in mouse embryonic stem cells. We analyze new and existing expression and transcription factor-binding data to characterize gene regulatory relations in mouse ES cells (ESC). In addition to confirming the key roles of Oct4, Sox2, and Nanog, our analysis identifies several genes, such as Esrrb, Stat3, Tcf7, Sall4, and LRH-1, as statistically significant coregulators. The regulatory interactions among 15 core regulators are used to construct a gene regulatory network in ESC. The network encapsulates extensive cross-regulations among the core regulators, highlights how they may control epigenetic processes, and reveals the surprising roles of nuclear receptors. Our analysis also provides information on the regulation of a large number of putative target genes of the network."	"Expression of estrogen receptor-related receptor isoforms and clinical significance in endometrial adenocarcinoma. Estrogen receptor-related receptors (ERRs) are members of orphan nuclear receptors closely related to the estrogen receptors (ERs). Researches showed that the ERRs bound to estrogen response elements and interfered in the ER signal pathway. Therefore, it might be associated with estrogen-dependent diseases. The purpose of this study was to explore whether ERRs were involved in the tumorigenesis of endometrial adenocarcinoma. We examined the expression of ERRs in endometrial adenocarcinoma and normal endometrium using semiquantitative reverse transcription-polymerase chain reaction and immunohistochemistry. Clinicopathologic features including FIGO stage, histologic grade, myometrial invasion, and nodal metastasis were reviewed. Results showed that messenger RNA (mRNA) levels of ERRalpha, ERRbeta, and ERRgamma were positively associated with the immunoreactivities (P= 0.009, P= 0.014, and P= 0.001, respectively). The expression rate and relative level of ERRalpha mRNA in ERalpha-positive endometrial adenocarcinomas were lower than in normal endometriums (P= 0.049 and P= 0.023), whereas the relative level of ERRgamma mRNA in ERalpha-positive endometrial adenocarcinomas was higher than in normal endometriums (P= 0.014). Expression of ERRalpha mRNA was positively correlated with FIGO stage (P= 0.019) and myometrial invasion (P= 0.043). A negative correlation was observed between expression of ERRgamma mRNA and nodal metastasis (P= 0.021). Results suggested that ERRalpha and ERRgamma might participate in the tumorigenesis of endometrial adenocarcinoma. ERRalpha and ERRgamma are promising to be new prognostic factors in endometrial adenocarcinoma."	"Receptor-interacting protein 140 differentially regulates estrogen receptor-related receptor transactivation depending on target genes. We have investigated the effects of receptor-interacting protein 140 (RIP140) on transcriptional regulation by estrogen receptor-related receptors (ERRs). We first show that RIP140 inhibits transactivation by ERRalpha, beta, and gamma on natural or artificial reporter genes containing different types of response elements. This repression correlates with a strong in vitro binding between several regions of RIP140 and the three ERR isoforms. Surprisingly, although RIP140 inhibits transactivation of the thyroid hormone receptor-alpha gene by ERRbeta, it significantly increases its regulation by ERRalpha and ERRgamma. Mutagenesis and transient transfections in SL2 cells indicate that thyroid hormone receptor-alpha promoter expression involved Sp1 sites. In support of this observation, we demonstrate that RIP140 also positively regulates ERRs transactivation of other known Sp1 targets such as the p21 gene. This effect requires the two proximal Sp1 binding sites of the promoter and is partially dependent on the activation function 2 domain of ERRs. Finally, we provide evidences for a role of histone deacetylases in the regulation of p21 promoter by RIP140. Altogether, these data indicate that RIP140 differentially regulates ERR activity depending on the target sequence on the promoters."	"Identification and characterization of two novel splicing isoforms of human estrogen-related receptor beta. Estrogen-related receptor beta (ERRbeta) was one of the first two orphan nuclear receptors reported and is believed to play important roles in estrogen-regulated pathways. Embryo lethality of ERRbeta-null mice indicated that ERRbeta is essential for embryo development. Two novel splicing isoforms of human (h) ERRbeta, hERRbeta2-Delta10 and short-form hERRbeta, were identified during the cloning of previously reported hERRbeta-hERRbeta2. We aim to investigate the functional differences of these three human ERRbeta-splicing isoforms. A genomic sequence comparison within and flanking the ERRbeta genes of eight species demonstrated that short-form hERRbeta lacks an F domain and is the matched homolog of mouse and rat ERRbeta proteins in humans. However, hERRbeta2-Delta10 and the previously reported hERRbeta2 isoforms are primate specific. RT-PCR analysis showed that short-form hERRbeta has a wide distribution in the 24 of 27 human tissues and cell lines tested, whereas hERRbeta2 and hERRbeta2-Delta10 were only expressed in testis and kidney. The three human ERRbeta-splicing isoforms have different transcriptional activities when measured on an estrogen response element-driven luciferase reporter in transfection assays. The localization of a nuclear localization signal of short-form hERRbeta was also determined. Interestingly, the F domain of hERRbeta2 alters the function of the nuclear localization signal. Therefore, the ERRbeta isoforms are likely to have diverse biological functions in vivo, and characterizing the three isoforms of ERRbeta will lead to an understanding of the multiple levels of gene regulation involved in steroid receptor-signaling pathways in humans and may provide novel therapeutic targets for human diseases."	"Expression of estrogen receptor-related receptors, a subfamily of orphan nuclear receptors, as new tumor biomarkers in ovarian cancer cells. A subfamily of orphan receptors, estrogen receptor-related receptors (ERRs), has been demonstrated to modulate the transcription of some estrogen responsive genes via variant estrogen response elements (EREs). This study was conducted to determine whether human ERRalpha, ERRbeta, and ERRgamma might be involved in the tumorigenesis of ovarian cancer. RT-PCR was performed to analyze the expression of hERRalpha, hERRbeta, hERRbeta-2, and hERRgamma mRNA in five ovarian cancer cell lines as well as 33 samples of ovarian cancer and 12 samples of normal ovary. Serum CA-125 levels were also analyzed in all samples by ELISA. Progression-free survival and overall survival of patients with different expression of ERRs were analyzed by the Kaplan-Meier method. To analyze the subcellular localization of ERRalpha, a green fluorescent protein (GFP)-reporter plasmid of hERRalpha was constructed and transfected into the ovarian cancer cell line OVCAR-3. Expression of hERRalpha-GFP fusion protein was observed in the nucleus of OVCAR-3 ovarian cancer cell lines. We observed increased expression of hERRalpha mRNA (P = 0.020) and hERRgamma mRNA (P = 0.045) in ovarian cancers compared to normal ovaries. In contrast, hERRbeta was only observed in 9.1% of ovarian cancers. We found a positive correlation between the serum CA-125 levels and hERRalpha expression (P = 0.012), but not hERRbeta and hERRgamma expression. Survival analysis showed that the hERRalpha-positive group has a reduced overall survival (P = 0.015), and the ERRgamma-positive group has a longer progression-free survival (P = 0.020). In multivariate analysis, expression of hERRalpha was an independent prognostic factor for poor survival (relative risk, 3.032; 95% CI, 1.27-6.06). Based on our results, ERRs may play an important role in ovarian cancer. hERRalpha may represent a biomarker of poor prognosis, and hERRgamma may be a new therapeutic target in ovarian cancer."	"Inhibition of DNA binding by human estrogen-related receptor 2 and estrogen receptor alpha with minor groove binding polyamides. Human estrogen-related receptor 2 (hERR2, ESRRB, ERRbeta, NR3B2) belongs to a class of nuclear receptors that bind DNA through sequence-specific interactions with a 5'-AGGTCA-3' estrogen response element (ERE) half-site in the major groove and an upstream 5'-TNA-3' site in the minor groove. This minor groove interaction is mediated by a C-terminal extension (CTE) of the DNA binding domain and is unique to the estrogen-related receptors. We have used synthetic pyrrole-imidazole polyamides, which bind specific sequences in the minor groove, to demonstrate that DNA binding by hERR2 is sensitive to the presence of polyamides in both the upstream minor groove CTE site and the minor groove of the ERE half-site. Thus, polyamides can inhibit hERR2 by two mechanisms, by direct steric blockage of minor groove DNA contacts mediated by the CTE and by changing the helical geometry of DNA such that major groove interactions are weakened. To confirm the generality of the latter approach, we show that the dimeric human estrogen receptor alpha (hERalpha, ESR1, NR3A1), which binds in the major groove of the ERE, can be inhibited by a polyamide bound in the opposing minor groove of the ERE. These results highlight two mechanisms for inhibition of protein-DNA interactions and extend the repertoire of DNA recognition motifs that can be inhibited by polyamides. These molecules may thus be useful for controlling expression of hERR2- or hERalpha-responsive genes."	"Identification of an agonist ligand for estrogen-related receptors ERRbeta/gamma. In order to develop agonist ligands that are specific for the estrogen-related receptors ERRbeta/gamma, a hydrazone with a 4-hydroxy group at one phenyl ring and a 4-diethylamino moiety at the other phenyl ring was synthesized. We demonstrate that compound 3 (DY131; N'-{(1E)-[4-(diethylamino)phenyl]methylene}-4-hydroxybenzohydrazide) effectively and selectively activates ERRbeta/gamma. DY131 had no effect on the structurally related receptors ERRalpha or the estrogen receptors alpha and beta (ERalpha/beta). This work defines a convenient synthesis for a novel and selective pharmacologic tool that can be used to elucidate the biological activities of ERRbeta/gamma."	"Structural basis for the deactivation of the estrogen-related receptor gamma by diethylstilbestrol or 4-hydroxytamoxifen and determinants of selectivity. The estrogen-related receptor (ERR) gamma behaves as a constitutive activator of transcription. Although no natural ligand is known, ERRgamma is deactivated by the estrogen receptor (ER) agonist diethylstilbestrol and the selective ER modulator 4-hydroxytamoxifen but does not significantly respond to estradiol or raloxifene. Here we report the crystal structures of the ERRgamma ligand binding domain (LBD) complexed with diethylstilbestrol or 4-hydroxytamoxifen. Antagonist binding to ERRgamma results in a rotation of the side chain of Phe-435 that partially fills the cavity of the apoLBD. The new rotamer of Phe-435 displaces the &quot;activation helix&quot; (helix 12) from the agonist position observed in the absence of ligand. In contrast to the complexes of the ERalpha LBD with 4-hydroxytamoxifen or raloxifene, helix 12 of antagonist-bound ERRgamma does not occupy the coactivator groove but appears to be completely dissociated from the LBD body. Comparison of the ligand-bound LBDs of ERRgamma and ERalpha reveals small but significant differences in the architecture of the ligand binding pockets that result in a slightly shifted binding position of diethylstilbestrol and a small rotation of 4-hydroxytamoxifen in the cavity of ERRgamma relative to ERalpha. Our results provide detailed molecular insight into the conformational changes occurring upon binding of synthetic antagonists to the constitutive orphan receptor ERRgamma and reveal structural differences with ERs that explain why ERRgamma does not bind estradiol or raloxifene and will help to design new selective antagonists."	"Loss of PGC-specific expression of the orphan nuclear receptor ERR-beta results in reduction of germ cell number in mouse embryos. Estrogen related receptor beta (ERR-beta) is an orphan nuclear receptor specifically expressed in a subset of extra-embryonic ectoderm of post-implantation embryos. ERR-beta is essential for placental development since the ERR-beta null mutants die at 10.5dpc due to the placenta abnormality. Here, we show that the ERR-beta is specifically expressed in primordial germ cells (PGC), obviously another important cell type for reproduction. Expression of the ERR-beta mRNA in embryonic germ cells started at E11.5 as soon as PGC reached genital ridges, and persisted until E15-E16 in both sexes. Immunostaining with anti-ERR-beta antibody revealed that the ERR-beta protein is exclusively expressed in germ cells in both male and female gonads from E11.5 to E16. 5. To study function of the ERR-beta in PGC, we complemented placental defects of the ERR-beta null mutants with wild-type tetraploid embryos, and analyzed germ cell development in the rescued embryos. It was found that development of gonad and PGC was not apparently affected, but number of germ cells was significantly reduced in male and female gonads, suggesting that the ERR-beta appears to be involved in proliferation of gonadal germ cells. The rescued embryos could develop to term and grow up to adulthood. The rescued ERR-beta null male were found to be fertile, but both male and female null mutants exhibited behavioural abnormalities, implying that the ERR-beta plays important roles in wider biological processes than previously thought."	"Flavone and isoflavone phytoestrogens are agonists of estrogen-related receptors. While estrogen-related receptors (ERRalpha, ERRbeta, and ERRgamma) share a high amino acid sequence homology with estrogen receptors (ERs), estrogens are not ligands of ERRs. Structure-function studies from this and other laboratories have revealed that ERRs have small ligand-binding pockets and have provided evidence to show that these receptors can activate gene transcription in a constitutive manner. To address the question as to whether there is any agonist for ERRs, our laboratory recently performed virtual ligand screening on ERRalpha that predicted flavone and isoflavone phytoestrogens to be ligands of this receptor. Our mammalian cell transfection and mammalian two-hybrid experiments revealed that three isoflavones (genistein, daidzein, and biochanin A) and one flavone (6,3',4'-trihydroxyflavone) behaved as agonists of ERRs. These phytoestrogens induced the activity of ERRalpha at concentrations that are comparable to those for the activation of ERalpha and ERbeta. In this study, we also used the results of ERRalpha ligand-binding site mutant, F232A, to verify our ERRalpha hypothetical computer model. Our recent ERR research has determined for the first time that flavone and isoflavone phytoestrogens are agonists of ERRs. In addition, our studies have demonstrated that an approach that combines structure-based virtual screening and receptor functional assays can identify novel ligands of orphan nuclear receptors."	"Monomeric complex of human orphan estrogen related receptor-2 with DNA: a pseudo-dimer interface mediates extended half-site recognition. While most nuclear receptors bind DNA as homo or heterodimers, the human estrogen related receptors (hERRs) are members of a subfamily of orphan receptors that bind DNA as monomers. We have determined the solution structure of the DNA binding domain (DBD) of hERR2 bound to its cognate DNA. The structure and base interactions of the core DBD are similar to those of other nuclear receptors. However, high-affinity, sequence-specific DNA binding as a monomer necessitates formation of additional base contacts outside the core DBD. This is accomplished using a modified guanosine-binding &quot;AT-hook&quot; within the C-terminal extension (CTE) flanking the DBD, which makes base-specific minor groove interactions. The structure of the CTE is stabilized both by interactions with the DNA and by packing against a region of the core DBD normally reserved for dimerization. This pseudo-dimer interface provides a basis for the expansion of DNA recognition and suggests a mechanism through which dimerization may have evolved from an ancestral monomeric receptor."	"LXXLL-related motifs in Dax-1 have target specificity for the orphan nuclear receptors Ad4BP/SF-1 and LRH-1. The orphan receptor Ad4BP/SF-1 (NR5A1) is a constitutive activator, and its activity is repressed by another orphan receptor, Dax-1 (NR0B1). In the present study, we investigated the molecular mechanisms underlying this repression by Dax-1. Yeast two-hybrid and transient-transfection assays confirmed the necessity of three LXXLL-related motifs in Dax-1 for interaction with and repression of Ad4BP/SF-1. In vitro pull-down experiments confirmed that Dax-1 interacts with Ad4BP/SF-1 and also with LRH-1 (NR5A2). The target specificity of the LXXLL-related motifs was indicated by the observations that Ad4BP/SF-1, ERalpha (NR3A1), LRH-1, ERR2 (NR3B2), and fly FTZ-F1 (NR5A3) interacted through their ligand binding domains with all the LXXLL-related motifs in Dax-1 whereas HNF4 (NR2A1) and RORalpha (NR1F1) did not. Transcriptional activities of the receptors whose DNA binding domains (DBDs) were replaced by the GAL4 DBD were repressed by Dax-1 to various levels, which correlated with the strength of interaction. Amino acid substitutions revealed that Ad4BP/SF-1 and LRH-1 preferentially interact with L(+1)XXLL-related motifs containing serine, tyrosine, serine, and threonine at positions -2, +2, +3, and +6, respectively. Taken together, our results indicate that the specificities of LXXLL-related motifs in Dax-1 based on their amino acid sequences play an important role in regulation of orphan receptors."	"PGC-1 and PERC, coactivators of the estrogen receptor-related receptor gamma. The mouse nuclear receptor ERRgamma (estrogen receptor-related receptor gamma) is highly expressed in heart, skeletal muscle, kidney, and brain, as well as in the developing nervous system. We found that the expression of the coactivators PGC-1 (PGC-1alpha) and PERC (PGC-1beta) in mammalian cells augmented potently the transcriptional activation by ERRgamma. The constitutive activation function 2 (AF-2) of the orphan receptor was important for the synergistic enhancement. Functional receptor truncation analysis revealed an additional amino-terminal activation function, specific for the ERRgamma2 isoform and PGC-1. In vitro experiments showed a direct interaction of ERRgamma with both coactivators. Our findings suggest distinct regulatory functions for PGC-1 and PERC as tissue-specific coactivators for ERRgamma."	"To ERR in the estrogen pathway. Estrogens control a variety of physiological and disease-linked processes, most notably reproduction, bone remodeling and breast cancer, and their effects are transduced through classic unclear receptors referred to as estrogen receptor-alpha (ER alpha) and ER beta. Recent results obtained using the estrogen-related receptors (ERR alpha, -beta and -gamma), a subfamily of orphan nuclear receptors closely related to the ERs, have shown that the ERRs share target genes, coregulatory proteins, ligands and sites of action with the ERs. In addition, the ERRs can actively influence the estrogenic response, suggesting that pharmacological modulation of ERR activity will be clinically useful to prevent and/or treat a variety of conditions related to women's health."	"Differential regulation of the orphan nuclear receptor small heterodimer partner (SHP) gene promoter by orphan nuclear receptor ERR isoforms. The orphan nuclear receptor small heterodimer partner (SHP; NR0B2) interacts with a wide array of nuclear receptors and represses their transcriptional activity. SHP expression is regulated by several other members of the nuclear receptor superfamily, including the orphan receptors SF-1 and LRH-1, and the bile acid receptor FXR. We have found that the SHP promoter is also activated by the estrogen receptor-related receptor gamma (ERRgamma) but not the related ERRalpha and ERRbeta isoforms. SHP and ERRgamma mRNAs are coexpressed in several tissues, including pancreas, kidney, and heart, confirming the potential relevance of this transactivation. ERRgamma transactivation is dependent on only one of five previously characterized DNA-binding sites for SF-1, and this element differs from previously reported ERR response elements. However, treatment with the histone deacetylase inhibitor trichostatin A significantly increased ERRalpha and ERRbeta activity on this element indicating that the lack of activity of ERRalpha and -beta may depend on their association with co-repressor in vivo. Furthermore, using protease sensitivity assays on DNA bound receptors it was demonstrated that DNA sequence of different response elements may cause allosteric modulation of ERR proteins, which in turn may be responsible for the differential activities of these receptors on different response elements. SHP inhibits ERRgamma transactivation and physically interacts with all three members of ERR subfamily, as demonstrated by both yeast two-hybrid and biochemical assays. As with other SHP targets, this interaction is dependent on the AF-2 coactivator-binding site of ERRgamma and the previously described N-terminal receptor interaction domain of SHP. Several recently described SHP mutations associated with moderate obesity in humans block the inhibition of ERRgamma activity. Overall, these results identify a new autoregulatory loop controlling SHP gene expression and significantly extend the potential functional roles of the three ERRs."	"4-Hydroxytamoxifen is an isoform-specific inhibitor of orphan estrogen-receptor-related (ERR) nuclear receptors beta and gamma. Selective estrogen receptor modulators (SERMs) are synthetic molecules that exhibit tissue-specific activities. 4-hydroxytamoxifen (OHT) is a first generation SERM that functions as an antagonist in breast cancer cells but displays estrogen-like activities in the uterus and bone. The estrogen-receptor-related receptors (ERR) alpha, beta and gamma are orphan members of the superfamily of nuclear receptors. While the ERRs do not respond to natural estrogens, these receptors recognize the estrogen response element and have been shown to activate and repress gene expression in the absence of exogenously added ligand. Here we show that OHT disrupts the interaction between the orphan estrogen-receptor-related (ERR) receptors beta and gamma and a coregulator protein and abolishes the constitutive transcriptional activity of these receptors in transient transfection assays. In contrast, OHT has no effect on coregulator/ERR alpha interaction or its transcriptional activity. These results demonstrate the existence of a novel nuclear receptor-based pharmacological pathway that may contribute to the tissue-specific activities of OHT."	"Transcriptional regulation of the estrogen-inducible pS2 breast cancer marker gene by the ERR family of orphan nuclear receptors. The estrogen-receptor-related receptors (ERRs) alpha, beta, and gamma are orphan nuclear hormone receptors that share significant homology with the estrogen receptors (ERs) but are not activated by natural estrogens. In contrast, the ERRs display constitutive transcriptional activity in the absence of exogenously added ligand. However, the ERRs bind to the estrogen response element and to the extended half-sites of which a subset can also be recognized by ERalpha, suggesting that ERRs and ERs may control overlapping regulatory pathways. To test this hypothesis, we explored the possibility that ERRs could regulate the expression of the estrogen-inducible pS2 gene, a human breast cancer prognostic marker. Transfection studies show that all of the ERR isoforms can activate the pS2 promoter in a variety of cell types, including breast cancer cell lines. Surprisingly, sequence analysis combined with mutational studies revealed that, in addition to the well-characterized estrogen response element, the presence of a functional extended half-site within the pS2 promoter is also required for complete response to both ER and ERR pathways. We show that ERR transcriptional activity on the pS2 promoter is considerably enhanced in the presence of all three members of the steroid receptor coactivator family but is completely abolished on treatment with the synthetic estrogen diethylstilbestrol, a recently described inhibitor of ERR function. Finally, we demonstrate that ERRalpha is the major isoform expressed in human breast cancer cell lines and that diethylstilbestrol can inhibit the growth of both ER-positive and -negative cell lines. Taken together, these results demonstrate that estrogen-inducible genes such as pS2 can be ERR targets and suggest that pharmacological modulation of ERRalpha activity may have therapeutic value in the treatment of breast cancer."	"Diethylstilbestrol regulates trophoblast stem cell differentiation as a ligand of orphan nuclear receptor ERR beta. The orphan nuclear receptor ERR beta is expressed in undifferentiated trophoblast stem cell lines and extraembryonic ectoderm, and genetic ablation of ERR beta results in abnormal trophoblast proliferation and precocious differentiation toward the giant cell lineage. Here, we show that the synthetic estrogen diethylstilbestrol (DES) promotes coactivator release from ERR beta and inhibits its transcriptional activity. Strikingly, treatment of trophoblast stem cells with DES led to their differentiation toward the polyploid giant cell lineage. In addition, DES-treated pregnant mice exhibited abnormal early placenta development associated with an overabundance of trophoblast giant cells and an absence of diploid trophoblast. These results define a novel pathway for DES action and provide evidence for steroidlike control of trophoblast development."	"Intracellular estrogen receptors, their characterization and function (Review). NA"	"Constitutive activation of transcription and binding of coactivator by estrogen-related receptors 1 and 2. In this report, we demonstrate that, in contrast to most previously characterized nuclear receptors, hERR1 and hERR2 (human estrogen receptor-related protein 1 and -2) are constitutive activators of the classic estrogen response element (ERE) as well as the palindromic thyroid hormone response element (TRE(pal)) but not the glucocorticoid response element (GRE). This intrinsically activated state of hERR1 and hERR2 resides in the ligand-binding domains of the two genes and is transferable to a heterologous receptor. In addition, we show that members of the p160 family of nuclear receptor coactivators, ACTR (activator of thyroid and retinoic acid receptors), GRIP1 (glucocorticoid receptor interacting protein 1), and SRC-1 (steroid receptor coactivator 1), potentiate the transcriptional activity by hERR1 and hERR2 in mammalian cells, and that both orphan receptors bind the coactivators in a ligand-independent manner. Together, these results suggest that hERR1 and hERR2 activate gene transcription through a mechanism different from most of the previously characterized steroid hormone receptors."	"Hormone-independent transcriptional activation and coactivator binding by novel orphan nuclear receptor ERR3. Orphan nuclear receptors share sequence homology with members of the nuclear receptor superfamily, but ligands are unknown or unnecessary. A novel orphan receptor, estrogen receptor-related protein 3 (ERR3), was identified by yeast two-hybrid screening, using the transcriptional coactivator glucocorticoid receptor interacting protein 1 (GRIP1) as bait. The putative full-length mouse ERR3 contains 458 amino acids and is closely related to two known orphan receptors ERR1 and ERR2. All the ERR family members share an almost identical DNA-binding domain, which has 68% amino acid identity with that of estrogen receptor. ERR3 bound specifically to an estrogen response element and activated reporter genes controlled by estrogen response elements, both in yeast and in mammalian cells, in the absence of any added ligand. A conserved AF-2 activation domain located in the hormone-binding domain of ERR3 was primarily responsible for transcriptional activation. The ERR3 AF-2 domain bound GRIP1 in a ligand-independent manner both in vitro and in vivo, through the LXXLL motifs of GRIP1, and GRIP1 functioned as a transcriptional coactivator for ERR3 in both yeast and mammalian cells. Expression of ERR3 in adult mouse was restricted; highest expression was observed in heart, kidney, and brain. In the mouse embryo no expression was observed at day 7, and highest expression occurred around the 11-15 day stages. Although ERR3 is much more closely related to ERR2 than to ERR1, the expression pattern for ERR3 was similar to that of ERR1 and distinct from that for ERR2, suggesting a unique role for ERR3 in development."	"Murine Gcm1 gene is expressed in a subset of placental trophoblast cells. The gcm gene of Drosophila melanogaster encodes a transcription factor that is an important component in cell fate specification within the nervous system. In the absence of a functional gcm gene, progenitor cells differentiate into neurons, whereas when the gene is ectopically expressed the cells produce excess glial cells at the expense of neuronal differentiation. Recent searches of databases have uncovered high sequence similarity between the Drosophila gem gene and an anonymous human placental cDNA clone (Altschuller et al., 1996; this communication). Here we report the molecular organization of the murine Gcm1, its spatio-temporal pattern of expression in developing placenta, and its map position at E1-E3 on murine chromosome 9. The murine gene is composed of at least 6 exons. The promoter region contains an &quot;initiation sequence&quot; and is GC rich, characteristics of the promoters of several transcription factors. The mRNA has a modest 5'UTR (ca. 200 bases) but an extensive 3' UTR (ca. 2 kb). Northern blot and mRNA in situ hybridization studies showed that Gcm1 expression was readily detectable only in the placenta. It began at embryonic day 7.5 within trophoblast cells of the chorion and continued to about embryonic day 17.5 within a subset of labyrinthine trophoblast cells. Comparison with other transcription factors revealed that Gcm1 expression defines a unique subset of trophoblast cells."	"Identification of two hERR2-related novel nuclear receptors utilizing bioinformatics and inverse PCR. Identification of novel nuclear receptors based on the highly conserved DNA-binding domain (DBD) has previously depended mainly on low stringency hybridization of cDNA libraries and degenerate PCR. Establishment of the expressed sequence tag (EST) database in recent years has provided an alternative approach for the discovery of novel members of gene families. The rate-limiting step is the conversion of ESTs to full-length cDNA. This article describes the identification of two novel nuclear receptors (hERRbeta2 and hERRgamma2) related to human estrogen-receptor-related receptor 2 (hERR2) by mining the EST database and retrieving of full-length cDNA via inverse PCR on subdivided primary cDNA library pools. The deduced protein sequences of hERRbeta2 and hERRgamma2 contain 500 and 458 amino acid (aa) residues respectively. Sequence analysis revealed that hERRbeta2 and hERRgamma2 respectively share 95% and 77% overall aa sequence identity with hERR2. However, the extra C-terminal domain in hERRbeta2 and extra N-terminal domain in hERRgamma2 are not present in the closely related hERR2 or mouse ERR2 (mERR2). Extensive sequence verification revealed that hERR2 previously reported as a human gene is actually a rat gene, whereas hERRbeta2 is the true human ortholog of hERR2 and mERR2. Tissue distribution studies showed that hERRgamma2 was expressed in a broader panel of tissues at a higher level than hERRbeta2. hERRbeta2 was mapped to cytogenetic locus 14q24.3 approximately -14q31, a region containing multiple loci involved in genetic diseases, including Alzheimer and diabetes. hERRgamma2 was mapped to 1q32. Given the high sequence homology between hERRbeta2 and mERR2, the two receptors may have similar biological function in vivo."	"Mrj encodes a DnaJ-related co-chaperone that is essential for murine placental development. We have identified a novel gene in a gene trap screen that encodes a protein related to the DnaJ co-chaperone in E. coli. The gene, named Mrj (mammalian relative of DnaJ) was expressed throughout development in both the embryo and placenta. Within the placenta, expression was particularly high in trophoblast giant cells but moderate levels were also observed in trophoblast cells of the chorion at embryonic day 8.5, and later in the labyrinth which arises from the attachment of the chorion to the allantois (a process called chorioallantoic fusion). Insertion of the ROSAbetageo gene trap vector into the Mrj gene created a null allele. Homozygous Mrj mutants died at mid-gestation due to a failure of chorioallantoic fusion at embryonic day 8.5, which precluded formation of the mature placenta. At embryonic day 8.5, the chorion in mutants was morphologically normal and expressed the cell adhesion molecule beta4 integrin that is known to be required for chorioallantoic fusion. However, expression of the chorionic trophoblast-specific transcription factor genes Err2 and Gcm1 was significantly reduced. The mutants showed no abnormal phenotypes in other trophoblast cell types or in the embryo proper. This study indicates a previously unsuspected role for chaperone proteins in placental development and represents the first genetic analysis of DnaJ-related protein function in higher eukaryotes. Based on a survey of EST databases representing different mouse tissues and embryonic stages, there are 40 or more DnaJ-related genes in mammals. In addition to Mrj, at least two of these genes are also expressed in the developing mouse placenta. The specificity of the developmental defect in Mrj mutants suggests that each of these genes may have unique tissue and cellular activities."	"Isolation of a gene encoding a novel member of the nuclear receptor superfamily from the critical region of Usher syndrome type IIa at 1q41. NA"	"Chromosomal mapping of the human and murine orphan receptors ERRalpha (ESRRA) and ERRbeta (ESRRB) and identification of a novel human ERRalpha-related pseudogene. The estrogen-related receptors ERRalpha and ERRbeta (formerly ERR1 and ERR2) form a subgroup of the steroid/thyroid/retinoid receptor family. ERRalpha and ERRbeta are homologous to the estrogen receptor and bind similar DNA targets; however, they are unable to activate gene transcription in response to estrogens. We have used interspecific backcross analysis to map the murine Estrra locus to chromosome 19 and Estrrb to mouse chromosome 12. Using fluorescence in situ hybridization, we have mapped the human ESRRA gene to chromosome 11q12-q13 and the human ESRRB gene to chromosome 14q24.3. In addition, we report the isolation of a processed human ERRalpha pseudogene mapping to chromosome 13q12.1. To our knowledge, this represents the first report of a pseudogene associated with a member of the nuclear receptor superfamily."	"NMR spectroscopic studies of the DNA-binding domain of the monomer-binding nuclear orphan receptor, human estrogen related receptor-2. The carboxyl-terminal extension to the zinc-finger region is unstructured in the free form of the protein. Unlike steroid and retinoid receptors, which associate with DNA as dimers, human estrogen related receptor-2 (hERR2) belongs to a growing subclass of nuclear hormone receptors that bind DNA with high affinity as monomers. A carboxyl-terminal extension (CTE) to the zinc-finger domain has been implicated to be responsible for determining the stoichiometry of binding by a nuclear receptor to its response element. To better understand the mechanism by which DNA specificity is achieved, the solution structure of the DNA-binding domain of hERR2 (residues 96-194) consisting of the two putative zinc fingers and the requisite 26-amino acid CTE was analyzed by multidimensional heteronuclear magnetic resonance spectroscopy. The highly conserved zinc-finger region (residues 103-168) has a fold similar to those reported for steroid and retinoid receptors, with two helices that originate from the carboxyl-terminal ends of the two zinc fingers and that pack together orthogonally, forming a hydrophobic core. The CTE element of hERR2 is unstructured and highly flexible, exhibiting nearly random coil chemical shifts, extreme sensitivity of the backbone amide protons to solvent presaturation, and reduced heteronuclear (1H-15N) nuclear Overhauser effect values. This is in contrast to the dimer-binding retinoid X and thyroid hormone receptors, where, in each case, a helix has been observed within the CTE. The implications of this property of the hERR2 CTE are discussed."	"The ERR-1 orphan receptor is a transcriptional activator expressed during bone development. We studied the expression of estrogen-related receptor ERR-1 during mouse embryonic development. ERR-1 mRNA is present in bones formed by both the endochondral and intramembranous routes, and the onset of its expression coincides with bone formation. By RT-PCR experiments, we found that ERR-1, but not the related receptor ERR-2, is expressed in osteoblastic osteosarcoma cell lines as well as in primary osteoblastic cell populations derived from normal human bone. By gel shift analysis we found that ERR-1 binds as a monomer specifically to the SFRE sequence (SF-1-responsive-element; TCAAGGTCA). Mutation analysis revealed that both the core AGGTCA motif and the TCA 5'-extension are required for efficient ERR-1 binding. In transient transfection assays, ERR-1 acts as a potent transactivator through the SFRE sequence. This effect is cell-specific since ERR-1 activates transcription in the rat osteosarcoma cell line ROS 17.2/8 as well as in HeLa, NB-E, and FREJ4 cells but not in COS1 and HepG2 cells. Notably, the osteopontin (a protein expressed by osteoblasts and released in the bone matrix) gene promoter is a target for ERR-1 transcriptional regulation. Our findings suggest a role for ERR-1 in bone development and metabolism."	"Nuclear orphan receptor as a repressor of glucocorticoid receptor transcriptional activity. Nuclear orphan receptors belong to the superfamily of ligand-activated transcription factors that show a close structural relationship and sequence homology. Ligands and functions of most of the orphan receptors have not yet been identified. The first nuclear orphan receptors that were cloned displayed a high degree of amino acid identity with the human estrogen receptor and were termed estrogen receptor-related (ERR) 1 and 2. In the present study, we show that ERR2 functions as a potent repressor of transcriptional activity mediated by the glucocorticoid receptor (GR). Transient transfection of different cell lines with a steroid-responsive reporter plasmid and receptor expression plasmids revealed that transcriptional activity mediated by GR in response to agonists was strongly suppressed by coexpression of ERR2. The orphan receptor displayed no promoter activity when expressed without GR. The inhibitory activity of ERR2 is cell-specific and also receptor-specific because transactivation mediated by the progesterone receptor is unaffected by ERR2. Our observations provide evidence that the nuclear orphan receptor ERR2 acts as an endogenous modulator of GR transcriptional activity."	"Expression of a novel member of estrogen response element-binding nuclear receptors is restricted to the early stages of chorion formation during mouse embryogenesis. Members of the nuclear hormone receptor gene family of transcription factors have been shown to be expressed in characteristic patterns during mouse organogenesis and postnatal development. Using an RT-PCR based screening assay, we have identified nuclear receptors expressed in embryonal carcinoma stem cells. One of the cDNAs characterized, mERR-2, was found to be expressed exclusively during a narrow developmental window in trophoblast progenitor cells between days 6.5 and 7.5 post coitum (p.c.). From 8.5 days p.c. and onwards, the mERR-2 gene activity evaded detection as analysed by in situ hybridization. We also show that the mERR-2 gene product and the estrogen receptor share a common target DNA-sequence recognition specificity unique among members of the gene family. Furthermore, efficient homodimerization and DNA-binding of the orphan receptor mERR-2 was found to be dependent on interaction with the heat shock protein 90, a molecular chaperone hitherto recognized to interact only with the steroid hormone receptor subgroup of nuclear receptors. Based on our results we suggest that the mouse orphan receptor mERR-2 has the potential to regulate overlapping gene networks with the estrogen receptor and may participate in signal transduction pathways during a short developmental period coinciding with the formation of the chorion."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GIPC3"	"nonsyndromic genetic deafness"	"Whole exome sequencing identified mutations causing hearing loss in five consanguineous Pakistani families. Hearing loss is the most common sensory defect, and it affects over 6% of the population worldwide. Approximately 50-60% of hearing loss patients are attributed to genetic causes. Currently, more than 100 genes have been reported to cause non-syndromic hearing loss. It is possible and efficient to screen all potential disease-causing genes for hereditary hearing loss by whole exome sequencing (WES). We collected 5 consanguineous pedigrees from Pakistan with hearing loss and applied WES in selected patients for each pedigree, followed by bioinformatics analysis and Sanger validation to identify the causal genes. Variants in 7 genes were identified and validated in these pedigrees. We identified single candidate variant for 3 pedigrees: GIPC3 (c.937 T &gt; C), LOXHD1 (c.6136G &gt; A) and TMPRSS3 (c.941 T &gt; C). The remaining 2 pedigrees each contained two candidate variants: TECTA (c.4045G &gt; A) and MYO15A (c.3310G &gt; T and c.9913G &gt; C) for one pedigree and DFNB59 (c.494G &gt; A) and TRIOBP (c.1952C &gt; T) for the other pedigree. The candidate variants were validated in all available samples by Sanger sequencing. The candidate variants in hearing-loss genes were validated to be co-segregated in the pedigrees, and they may indicate the aetiologies of hearing loss in such patients. We also suggest that WES may be a suitable strategy for hearing-loss gene screening in clinical detection."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Targeted next generation sequencing reveals OTOF mutations in auditory neuropathy spectrum disorder. To study the genetic etiology of auditory neuropathy spectrum disorder (ANSD) in a Chinese family and perform a literature review of OTOF mutations and cochlear implantation (CI). Sequential targeted next generation sequencing (NGS) and CI was performed for the proband. Further, 50 DNA samples from unrelated families with nonsyndromic deafness were examined for frequency determination. The impact of OTOF mutations on hearing recovery after CI was assessed through the literature survey. In the proband, the targeted NGS panel revealed five suspected variants in four genes (OTOF, EYA4, PCDH15, and GIPC3), of which two mutations-c.5098G &gt; C (p.Glu1700Gln) and c.1702C &gt; T (p.Arg568Trp)-in the OTOF gene were found to be correlated with ANSD. The c.5098G &gt; C allele was identified in only one child from the 50 unrelated participants. The proband's hearing and speech abilities were restored 2 years after the surgery. Most ANSD patients (90.9%; 30/33) with OTOF mutations have acceptable surgical outcomes, as indicated by existing reports. Our results support the feasibility of CI for patients with ANSD and OTOF mutations, and this hypothesis was supported by the review of existing data. A larger number of cases studies is required to determine possible modifies on the prognosis of surgery."	"A novel missense mutation in GIPC3 causes sensorineural hearing loss in an Iranian family revealed by targeted next-generation sequencing. Recent studies have confirmed the utility of targeted next-generation sequencing (NGS), providing a remarkable opportunity to find variants in known disease genes, especially in genetically heterogeneous disorders such as hearing loss (HL). After excluding mutations in the most common autosomal recessive non-syndromic HL (ARNSHL) genes via Sanger sequencing and genetic linkage analysis, we performed NGS in the proband an Iranian family with ARNSHL. The NimbleGen sequence capture array captures codingsequences (CDSs) and 100 bp of the flanking sequence of 129 common deafness genes (cat# Oto-DA3). NGSwas performed on the IlluminaHiSeq2000. BWA, SAMtools, Picard, GATK, Variant Tools, ANNOVAR, and IGV were applied for Bioinformatics analyses. Data filtering with allele frequencies (&lt;5% in the 1000 Genomes Project and 5400 NHLBI exomes) and PolyPhen2/SIFTscores (&gt;0.95) prioritized 1indel (insertions/deletions) and 3 missense variants in this family. Eventually, Sanger sequencing, segregation pattern, the frequency in 50 healthy matched normal controls, and evolutionary conservation of amino acid residues revealed the pathogenic variant. We identified a novel missenseGIPC3 mutation, c.472G &gt; A (p.Glu158 Lys). The pathogenicity of GIPC3c.472G &gt; A was supported by its absence in the population databases and the healthy-matched controls.Sanger sequencing confirmed co-segregation of the mutation with HL. This study is the first report of the contribution of theGIPC3 gene to HL in the Iranian population.Targeted NGS allows easier detection of mutations in relatively uncommon deafness genes in families with ARNSHL."	"Survival of BRCA2-Deficient Cells Is Promoted by GIPC3, a Novel Genetic Interactor of BRCA2. BRCA2 loss-of-heterozygosity (LOH) is frequently observed in BRCA2-mutated tumors, but its biallelic loss causes embryonic lethality in mice and inhibits proliferation of normal somatic cells. Therefore, it remains unclear how loss of BRCA2 contributes to tumorigenesis. One possibility is that mutation in potential genetic interactors of BRCA2, such as TRP53, is required for cell survival/proliferation in the absence of BRCA2. In this study, using an insertional mutagenesis screen in mouse embryonic stem cells (mESC), we have identified GIPC3 (GAIP-interacting protein C-terminus 3) as a BRCA2 genetic interactor that contributes to survival of Brca2-null mESC. GIPC3 does not compensate for BRCA2 loss in the repair of double-strand breaks. Mass-spectrometric analysis resulted in the identification of G-protein signaling transducers, APPL1 and APPL2, as potential GIPC3-binding proteins. A mutant GIPC3 (His155Ala) that does not bind to APPL1/2 failed to rescue the lethality of Brca2-null mESC, suggesting that the cell viability by GIPC3 is mediated via APPL1/2. Finally, the physiological significance of GIPC3 as a genetic interactor of BRCA2 is supported by the observation that Brca2-null embryos with Gipc3 overexpression are developmentally more advanced than their control littermates. Taken together, we have uncovered a novel role for GIPC3 as a BRCA2 genetic interactor."	"De novo sequencing and comparative analysis of testicular transcriptome from different reproductive phases in freshwater spotted snakehead Channa punctatus. The spotted snakehead Channa punctatus is a seasonally breeding teleost widely distributed in the Indian subcontinent and economically important due to high nutritional value. The declining population of C. punctatus prompted us to focus on genetic regulation of its reproduction. The present study carried out de novo testicular transcriptome sequencing during the four reproductive phases and correlated differential expression of transcripts with various testicular events in C. punctatus. The Illumina paired-end sequencing of testicular transcriptome from resting, preparatory, spawning and postspawning phases generated 41.94, 47.51, 61.81 and 44.45 million reads, and 105526, 105169, 122964 and 106544 transcripts, respectively. Transcripts annotated using Rattus norvegicus reference protein sequences and classified under various subcategories of biological process, molecular function and cellular component showed that the majority of the subcategories had highest number of transcripts during spawning phase. In addition, analysis of transcripts exhibiting differential expression during the four phases revealed an appreciable increase in upregulated transcripts of biological processes such as cell proliferation and differentiation, cytoskeleton organization, response to vitamin A, transcription and translation, regulation of angiogenesis and response to hypoxia during spermatogenically active phases. The study also identified significant differential expression of transcripts relevant to spermatogenesis (mgat3, nqo1, hes2, rgs4, cxcl2, alcam, agmat), steroidogenesis (star, tkt, gipc3), cell proliferation (eef1a2, btg3, pif1, myo16, grik3, trim39, plbd1), cytoskeletal organization (espn, wipf3, cd276), sperm development (klhl10, mast1, hspa1a, slc6a1, ros1, foxj1, hipk1), and sperm transport and motility (hint1, muc13). Analysis of functional annotation and differential expression of testicular transcripts depending on reproductive phases of C. punctatus helped in developing a comprehensive understanding on genetic regulation of spermatogenic and steroidogenic events in seasonally breeding teleosts. Our findings provide the basis for future investigation on the precise role of testicular genes in regulation of seasonal reproduction in male teleosts."	"Hair cells use active zones with different voltage dependence of Ca2+ influx to decompose sounds into complementary neural codes. For sounds of a given frequency, spiral ganglion neurons (SGNs) with different thresholds and dynamic ranges collectively encode the wide range of audible sound pressures. Heterogeneity of synapses between inner hair cells (IHCs) and SGNs is an attractive candidate mechanism for generating complementary neural codes covering the entire dynamic range. Here, we quantified active zone (AZ) properties as a function of AZ position within mouse IHCs by combining patch clamp and imaging of presynaptic Ca(2+) influx and by immunohistochemistry. We report substantial AZ heterogeneity whereby the voltage of half-maximal activation of Ca(2+) influx ranged over ∼20 mV. Ca(2+) influx at AZs facing away from the ganglion activated at weaker depolarizations. Estimates of AZ size and Ca(2+) channel number were correlated and larger when AZs faced the ganglion. Disruption of the deafness gene GIPC3 in mice shifted the activation of presynaptic Ca(2+) influx to more hyperpolarized potentials and increased the spontaneous SGN discharge. Moreover, Gipc3 disruption enhanced Ca(2+) influx and exocytosis in IHCs, reversed the spatial gradient of maximal Ca(2+) influx in IHCs, and increased the maximal firing rate of SGNs at sound onset. We propose that IHCs diversify Ca(2+) channel properties among AZs and thereby contribute to decomposing auditory information into complementary representations in SGNs."	"Diversity of the causal genes in hearing impaired Algerian individuals identified by whole exome sequencing. The genetic heterogeneity of congenital hearing disorders makes molecular diagnosis expensive and time-consuming using conventional techniques such as Sanger sequencing of DNA. In order to design an appropriate strategy of molecular diagnosis in the Algerian population, we explored the diversity of the involved mutations by studying 65 families affected by autosomal recessive forms of nonsyndromic hearing impairment (DFNB forms), which are the most prevalent early onset forms. We first carried out a systematic screening for mutations in GJB2 and the recurrent p.(Arg34*) mutation in TMC1, which were found in 31 (47.7%) families and 1 (1.5%) family, respectively. We then performed whole exome sequencing in nine of the remaining families, and identified the causative mutations in all the patients analyzed, either in the homozygous state (eight families) or in the compound heterozygous state (one family): (c.709C&gt;T: p.(Arg237*)) and (c.2122C&gt;T: p.(Arg708*)) in OTOF, (c.1334T&gt;G: p.(Leu445Trp)) in SLC26A4, (c.764T&gt;A: p.(Met255Lys)) in GIPC3, (c.518T&gt;A: p.(Cys173Ser)) in LHFPL5, (c.5336T&gt;C: p.(Leu1779Pro)) in MYO15A, (c.1807G&gt;T: p.(Val603Phe)) in OTOA, (c.6080dup: p.(Asn2027Lys*9)) in PTPRQ, and (c.6017del: p.(Gly2006Alafs*13); c.7188_7189ins14: p.(Val2397Leufs*2)) in GPR98. Notably, 7 of these 10 mutations affecting 8 different genes had not been reported previously. These results highlight for the first time the genetic heterogeneity of the early onset forms of nonsyndromic deafness in Algerian families. "	"A canonical splice site mutation in GIPC3 causes sensorineural hearing loss in a large Pakistani family. With homozygosity mapping we have identified two large homozygous regions on chromosome 3q13.11-q13.31 and chromosome 19p13.3-q31.32 in a large Pakistani family suffering from autosomal recessive nonsyndromic hearing impairment (arNSHI). The region on chromosome 19 overlaps with the previously described deafness loci DFNB15, DFNB72 and DFNB95. Mutations in GIPC3 have been shown to underlie the nonsyndromic hearing impairment linked to these loci. Sequence analysis of all exons and exon-intron boundaries of GIPC3 revealed a homozygous canonical splice site mutation, c.226-1G&gt;T, in GIPC3. This is the first mutation described in GIPC3 that affects splicing. The c.226-1G&gt;T mutation is located in the acceptor splice site of intron 1 and is predicted to affect the normal splicing of exon 2. With a minigene assay it was shown to result in the use of an alternative acceptor site in exon 2, resulting in a frameshift and a premature stop codon. This study expands the mutational spectrum of GIPC3 in arNSHI. "	"Functional proteomics, human genetics and cancer biology of GIPC family members. GIPC1, GIPC2 and GIPC3 consist of GIPC homology 1 (GH1) domain, PDZ domain and GH2 domain. The regions around the GH1 and GH2 domains of GIPC1 are involved in dimerization and interaction with myosin VI (MYO6), respectively. The PDZ domain of GIPC1 is involved in interactions with transmembrane proteins [IGF1R, NTRK1, ADRB1, DRD2, TGFβR3 (transforming growth factorβ receptor type III), SDC4, SEMA4C, LRP1, NRP1, GLUT1, integrin α5 and VANGL2], cytosolic signaling regulators (APPL1 and RGS19) and viral proteins (HBc and HPV-18 E6). GIPC1 is an adaptor protein with dimerizing ability that loads PDZ ligands as cargoes for MYO6-dependent endosomal trafficking. GIPC1 is required for cell-surface expression of IGF1R and TGFβR3. GIPC1 is also required for integrin recycling during cell migration, angiogenesis and cytokinesis. On early endosomes, GIPC1 assembles receptor tyrosine kinases (RTKs) and APPL1 for activation of PI3K-AKT signaling, and G protein-coupled receptors (GPCRs) and RGS19 for attenuation of inhibitory Gα signaling. GIPC1 upregulation in breast, ovarian and pancreatic cancers promotes tumor proliferation and invasion, whereas GIPC1 downregulation in cervical cancer with human papillomavirus type 18 infection leads to resistance to cytostatic transforming growth factorβ signaling. GIPC2 is downregulated in acute lymphocytic leukemia owing to epigenetic silencing, while Gipc2 is upregulated in estrogen-induced mammary tumors. Somatic mutations of GIPC2 occur in malignant melanoma, and colorectal and ovarian cancers. Germ-line mutations of the GIPC3 or MYO6 gene cause nonsyndromic hearing loss. As GIPC proteins are involved in trafficking, signaling and recycling of RTKs, GPCRs, integrins and other transmembrane proteins, dysregulation of GIPCs results in human pathologies, such as cancer and hereditary deafness."	"Homozygosity mapping identifies a novel GIPC3 mutation causing congenital nonsyndromic hearing loss in a Saudi family. Hearing loss is one of the most common sensory disorders in humans and has a genetic cause in 50% of the cases. Our recent studies indicate that nonsyndromic hearing loss (NSHL) in the Saudi Arabian population is genetically heterogeneous and is not caused by mutations in GJB2 and GJB6, the most common genes for deafness in various populations worldwide. Identification of the causative gene/mutation in affected families is difficult due to extreme genetic heterogeneity and lack of phenotypic variability. We utilized an SNP array-based whole-genome homozygosity mapping approach in search of the causative gene, for the phenotype in a consanguineous Saudi family, with five affected individuals presenting severe to profound congenital NSHL. A single shared block of homozygosity was identified on chromosome 19p13.3 encompassing GIPC3, a recently identified hearing loss gene. Subsequently, a novel mutation c.122 C&gt;A (p.T41K) in GIPC3 was found. This is the first report of GIPC3 mutation in a Saudi family. The presence of the GIPC3 mutations in only one of 100 Saudi families with congenital NSHL suggests that it appears to be a rare cause of familial or sporadic deafness in this population."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"Molecular characterization and ligand binding specificity of the PDZ domain-containing protein GIPC3 from Schistosoma japonicum. Schistosomiasis is a serious global health problem that afflicts more than 230 million people in 77 countries. Long-term mass treatments with the only available drug, praziquantel, have caused growing concerns about drug resistance. PSD-95/Dlg/ZO-1 (PDZ) domain-containing proteins are recognized as potential targets for the next generation of drug development. However, the PDZ domain-containing protein family in parasites has largely been unexplored. We present the molecular characteristics of a PDZ domain-containing protein, GIPC3, from Schistosoma japonicum (SjGIPC3) according to bioinformatics analysis and experimental approaches. The ligand binding specificity of the PDZ domain of SjGIPC3 was confirmed by screening an arbitrary peptide library in yeast two-hybrid (Y2H) assays. The native ligand candidates were predicted by Tailfit software based on the C-terminal binding specificity, and further validated by Y2H assays. SjGIPC3 is a single PDZ domain-containing protein comprised of 328 amino acid residues. Structural prediction revealed that a conserved PDZ domain was presented in the middle region of the protein. Phylogenetic analysis revealed that SjGIPC3 and other trematode orthologues clustered into a well-defined cluster but were distinguishable from those of other phyla. Transcriptional analysis by quantitative RT-PCR revealed that the SjGIPC3 gene was relatively highly expressed in the stages within the host, especially in male adult worms. By using Y2H assays to screen an arbitrary peptide library, we confirmed the C-terminal binding specificity of the SjGIPC3-PDZ domain, which could be deduced as a consensus sequence, -[SDEC]-[STIL]-[HSNQDE]-[VIL]*. Furthermore, six proteins were predicted to be native ligand candidates of SjGIPC3 based on the C-terminal binding properties and other biological information; four of these were confirmed to be potential ligands using the Y2H system. In this study, we first characterized a PDZ domain-containing protein GIPC3 in S. japonicum. The SjGIPC3-PDZ domain is able to bind both type I and II ligand C-terminal motifs. The identification of native ligand will help reveal the potential biological function of SjGIPC3. These data will facilitate the identification of novel drug targets against S. japonicum infections."	"Challenges in whole exome sequencing: an example from hereditary deafness. Whole exome sequencing provides unprecedented opportunities to identify causative DNA variants in rare Mendelian disorders. Finding the responsible mutation via traditional methods in families with hearing loss is difficult due to a high degree of genetic heterogeneity. In this study we combined autozygosity mapping and whole exome sequencing in a family with 3 affected children having nonsyndromic hearing loss born to consanguineous parents. Two novel missense homozygous variants, c.508C&gt;A (p.H170N) in GIPC3 and c.1328C&gt;T (p.T443M) in ZNF57, were identified in the same ∼6 Mb autozygous region on chromosome 19 in affected members of the family. Both variants co-segregated with the phenotype and were absent in 335 ethnicity-matched controls. Biallelic GIPC3 mutations have recently been reported to cause autosomal recessive nonsyndromic sensorineural hearing loss. Thus we conclude that the hearing loss in the family described in this report is caused by a novel missense mutation in GIPC3. Identified variant in GIPC3 had a low read depth, which was initially filtered out during the analysis leaving ZNF57 as the only potential causative gene. This study highlights some of the challenges in the analyses of whole exome data in the bid to establish the true causative variant in Mendelian disease."	"Mutations of GIPC3 cause nonsyndromic hearing loss DFNB72 but not DFNB81 that also maps to chromosome 19p. A missense mutation of Gipc3 was previously reported to cause age-related hearing loss in mice. Point mutations of human GIPC3 were found in two small families, but association with hearing loss was not statistically significant. Here, we describe one frameshift and six missense mutations in GIPC3 cosegregating with DFNB72 hearing loss in six large families that support statistically significant evidence for genetic linkage. However, GIPC3 is not the only nonsyndromic hearing impairment gene in this region; no GIPC3 mutations were found in a family cosegregating hearing loss with markers of chromosome 19p. Haplotype analysis excluded GIPC3 from the obligate linkage interval in this family and defined a novel locus spanning 4.08 Mb and 104 genes. This closely linked but distinct nonsyndromic hearing loss locus was designated DFNB81."	"High-frequency sensorineural hearing loss and its underlying genetics (Hfhl1 and Hfhl2) in NIH Swiss mice. Studies using inbred strains of mice have been invaluable for identifying alleles that adversely affect hearing. However, the efficacy of those studies is limited by the phenotypes that these strains express and the alleles that they segregate. Here, by selectively breeding phenotypically and genetically heterogeneous NIH Swiss mice, we generated two lines-the all-frequency hearing loss (AFHL) line and the high-frequency hearing loss (HFHL) line-with differential hearing loss. The AFHL line exhibited characteristics typical of severe, early-onset, sensorineural hearing impairment. In contrast, the HFHL line expressed a novel early-onset, mildly progressive, and frequency-specific sensorineural hearing loss. By quantitative trait loci (QTLs) analyses in these two lines, we identified QTLs on chromosomes 7, 8, and 10 that significantly affected hearing function. The loci on chromosomes 7 and 8 (Hfhl1 and Hfhl2, respectively) are novel and appear to adversely affect only high frequencies (≥30 kHz). Mice homozygous for NIH Swiss alleles at either Hfhl1 or Hfhl2 have 32-kHz auditory-evoked brain stem response thresholds that are 8-14 dB SPL higher than the corresponding heterozygotes. DNA sequence analyses suggest that both the Cdh23(ahl) and Gipc3(ahl5) variants contribute to the chromosome 10 QTL detected in the AFHL line. The frequency-specific hearing loss indicates that the Hfhl1 and Hfhl2 alleles may affect tonotopic development. In addition, dissecting the underlying complex genetics of high-frequency hearing loss may prove relevant in identifying less severe and common forms of hearing impairment in the human population."	"Gipc3 mutations associated with audiogenic seizures and sensorineural hearing loss in mouse and human. Sensorineural hearing loss affects the quality of life and communication of millions of people, but the underlying molecular mechanisms remain elusive. Here, we identify mutations in Gipc3 underlying progressive sensorineural hearing loss (age-related hearing loss 5, ahl5) and audiogenic seizures (juvenile audiogenic monogenic seizure 1, jams1) in mice and autosomal recessive deafness DFNB15 and DFNB95 in humans. Gipc3 localizes to inner ear sensory hair cells and spiral ganglion. A missense mutation in the PDZ domain has an attenuating effect on mechanotransduction and the acquisition of mature inner hair cell potassium currents. Magnitude and temporal progression of wave I amplitude of afferent neurons correlate with susceptibility and resistance to audiogenic seizures. The Gipc3(343A) allele disrupts the structure of the stereocilia bundle and affects long-term function of auditory hair cells and spiral ganglion neurons. Our study suggests a pivotal role of Gipc3 in acoustic signal acquisition and propagation in cochlear hair cells."	"Networking of WNT, FGF, Notch, BMP, and Hedgehog signaling pathways during carcinogenesis. The biological functions of some orthologs within the human genome and model-animal genomes are evolutionarily conserved, but those of others are divergent due to protein evolution and promoter evolution. Because WNT signaling molecules play key roles during embryogenesis, tissue regeneration and carcinogenesis, the author's group has carried out a human WNT-ome project for the comprehensive characterization of human genes encoding WNT signaling molecules. From 1996 to 2002, we cloned and characterized WNT2B/WNT13, WNT3, WNT3A, WNT5B, WNT6, WNT7B, WNT8A, WNT8B, WNT9A/WNT14, WNT9B/WNT14B, WNT10A, WNT10B, WNT11, FZD1, FZD2, FZD3, FZD4, FZD5, FZD6, FZD7, FZD8, FZD10, FRAT1, FRAT2, NKD1, NKD2, VANGL1, RHOU/ARHU, RHOV/ARHV, GIPC2, GIPC3, FBXW11/betaTRCP2, SOX17, TCF7L1/TCF3, and established a cDNA-PCR system for snap-shot and dynamic analyses on the WNT-transcriptome. In 2003, we identified and characterized PRICKLE1, PRICKLE2, DACT1/DAPPER1, DACT2/DAPPER2, DAAM2, and BCL9L. After completion of the human WNT-ome project, we have been working on the stem cell signaling network. WNT signals are transduced to beta-catenin, NLK, NFAT, PKC, JNK and RhoA signaling cascades. FGF20, JAG1 and DKK1 are target genes of the WNT-beta-catenin signaling cascade. Cross-talk of WNT and FGF signaling pathways potentiates beta-catenin and NFAT signaling cascades. BMP signals induce IHH upregulation in co-operation with RUNX. Hedgehog signals induce upregulation of SFRP1, JAG2 and FOXL1, and then FOXL1 induces BMP4 upregulation. The balance between WNT-FGF-Notch and BMP-Hedgehog signaling networks is important for the maintenance of homoestasis among stem and progenitor cells. Disruption of the stem cell signaling network results in pathological conditions, such as congenital diseases and cancer."	"Expression of WNT7A in human normal tissues and cancer, and regulation of WNT7A and WNT7B in human cancer. WNT signals are transduced through seven-transmembrane-type WNT receptors encoded by Frizzled (FZD) genes to the beta-catenin - TCF pathway, the JNK pathway or the Ca2+-releasing pathway. WNT signaling molecules are potent targets for diagnosis of cancer (susceptibility, metastasis, and prognosis), for prevention and treatment of cancer, and for regenerative medicine or tissue engineering. We have so far cloned and characterized human WNT signaling molecules WNT2B/WNT13, WNT3, WNT3A, WNT5B, WNT6, WNT7B, WNT8A, WNT8B, WNT10A, WNT10B, WNT11, WNT14, WNT14B/WNT15, FZD1, FZD2, FZD3, FZD4, FZD5, FZD6, FZD7, FZD8, FZD10, FRAT1, FRAT2, NKD1, NKD2, VANGL1/STB2, ARHU/WRCH1, ARHV/WRCH2, GIPC2, GIPC3, betaTRCP2/FBXW1B, SOX17, and TCF-3 using bioinformatics, cDNA-library screening, and cDNA-PCR. Here, expression of WNT7A in human normal tissues and cancer, and regulation of WNT7A and WNT7B in human cancer were investigated. WNT7A was highly expressed in fetal lung, adult testis, lymph node, and peripheral blood leukocytes. WNT7A was relatively highly expressed in temporal lobe, occipital lobe, parietal lobe, paracentral gyrus of cerebral cortex, caudate nucleus, hippocampus, medulla oblongata and putamen within adult brain. WNT7A was highly expressed in SW480 (colorectal cancer), BxPC-3 and Hs766T (pancreatic cancer), and was also expressed in MKN7 and MKN45 (gastric cancer). WNT7B rather than WNT7A was expressed in MCF-7 (breast cancer) and NT2 (embryonal tumor). beta-estradiol did not affect expression levels of WNT7A and WNT7B in MCF-7 cells. WNT7B, but not WNT7A, was slightly up-regulated by all-trans retinoic acid in NT2 cells."	"Up-regulation of GIPC2 in human gastric cancer. GIPC1/GIPC, GIPC2, and GIPC3 are a family of central PDZ-domain proteins. GIPC1/GIPC interacts with TGFbeta type III receptor, receptor tyrosine kinase TrkA, integrin alpha6A subunit, and GTPase-activating protein RGS-GAIP, while Xenopus homologue of human GIPCs interacts with Frizzled-3 (FZD3) class of WNT receptor. Here, we investigated expression of GIPC2 mRNA in human gastric, pancreatic, and breast cancer cell lines. GIPC2 mRNA was relatively highly expressed in OKAJIMA, TMK1, MKN45, and KATO-III cells derived from diffuse type of gastric cancer, but was almost undetectable in MKN7, MKN28, and MKN74 cells derived from intestinal type of gastric cancer as well as in other cell lines derived from pancreatic and breast cancer. Tumor necrosis factor alpha and interferon gamma, which are elevated in gastric mucosa with Helicobacter pylori infection, did not affect the expression level of GIPC2 mRNA in MKN45 cells. Up-regulation of GIPC2 mRNA was detected in 7 out of 10 cases of primary gastric cancer by using cDNA-PCR, and in 4 out of another 8 cases of primary gastric cancer by using expression array filter hybridization. GIPC2 might play important roles in human gastric cancer through modulation of growth factor signaling or cell adhesion."	"GIPC gene family (Review). GIPC1/GIPC/RGS19IP1, GIPC2, and GIPC3 genes constitute the human GIPC gene family. GIPC1 and GIPC2 show 62.0% total-amino-acid identity. GIPC1 and GIPC3 show 59.9% total-amino-acid identity. GIPC2 and GIPC3 show 55.3% total-amino-acid identity. GIPCs are proteins with central PDZ domain and GIPC homology (GH1 and GH2) domains. PDZ, GH1, and GH2 domains are conserved among human GIPCs, Xenopus GIPC/Kermit, and Drosophila GIPC/ LP09416. Bioinformatics revealed that GIPC genes are linked to prostanoid receptor genes and DNAJB genes in the human genome as follows: GIPC1 gene is linked to prostaglandin E receptor 1 (PTGER1) gene and DNAJB1 gene in human chromosome 19p13.2-p13.1 region; GIPC2 gene to prostaglandin F receptor (PTGFR) gene and DNAJB4 gene in human chromosome 1p31.1-p22.3 region; GIPC3 gene to thromboxane A2 receptor (TBXA2R) gene in human chromosome 19p13.3 region. GIPC1 and GIPC2 mRNAs are expressed together in OKAJIMA, TMK1, MKN45 and KATO-III cells derived from diffuse-type of gastric cancer, and are up-regulated in several cases of primary gastric cancer. PDZ domain of GIPC family proteins interact with Frizzled-3 (FZD3) class of WNT receptor, insulin-like growth factor-I (IGF1) receptor, receptor tyrosine kinase TrkA, TGF-beta type III receptor (TGF-beta RIII), integrin alpha6A subunit, transmembrane glycoprotein 5T4, and RGS19/RGS-GAIP. Because RGS19 is a member of the RGS family that regulate heterotrimeric G-protein signaling, GIPCs might be scaffold proteins linking heterotrimeric G-proteins to seven-transmembrane-type WNT receptor or to receptor tyrosine kinases. Therefore, GIPC1, GIPC2 and GIPC3 might play key roles in carcinogenesis and embryogenesis through modulation of growth factor signaling and cell adhesion."	"Expression of human GIPC1 in normal tissues, cancer cell lines, and primary tumors. GIPC1/RGS19IP1/GIPC, GIPC2, and GIPC3 are a family of central PDZ-domain proteins with GH1 and GH2 domains. GIPC1 interacts with GTPase-activating protein RGS19/RGS-GAIP, TGFbeta type III receptor, receptor tyrosine kinase TrkA, and integrin alpha6A subunit. Xenopus homologue of human GIPCs interacts with Frizzled-3 class of WNT receptor. We investigated expression of human GIPC1 mRNA in normal tissues, cancer cell lines, and primary tumors. GIP1A probe (nucleotide position 1075-1483 of GIPC1 cDNA) hybridized to GIPC1 mRNA of 1.8 kb in size. GIPC1 mRNA was almost ubiquitously expressed in various normal tissues. Expression level of GIPC1 mRNA was relatively lower in bone marrow and peripheral blood leukocytes. GIPC1 mRNA was relatively highly expressed in gastric cancer cell lines OKAJIMA, TMK1, MKN28, MKN45, MKN74, KATO-III, pancreatic cancer cell line AsPC-1, colorectal cancer cell line SW480, and lung cancer cell line A549. On the other hand, GIPC1 mRNA was almost undetectable in leukemia/lymphoma cell lines HL-60, Raji, and Daudi. Expression of GIPC1 mRNA was down-regulated in 12 out of 14 cases of primary kidney tumors, 10 out of 18 cases of primary colorectal tumors, 3 out of 8 cases of primary gastric cancer, 3 out of 3 cases of primary prostate cancer. Because GIPC1 induces increased expression of TGFbeta type III receptor at the cell surface and enhanced responsiveness to TGFbeta, down-regulation of GIPC1 mRNA in tumors might promote cellular proliferation through interference of TGFbeta signaling."	"Molecular cloning and characterization of mouse Gipc3. GIPC1/GIPC interacts with GTPase-activating protein RGS-GAIP, transmembrane protein M-SemF, receptor tyrosine kinase TrkA, integrin alpha 6A subunit, and TGF beta type III receptor. Kermit, a Xenopus orthologue of human GIPC1, interacts with Frizzled-3 (FZD3) class of WNT receptor. We have recently cloned and characterized human GIPC2 and GIPC3. Here, we identified mouse Gipc3 gene fragments by using bioinformatics, and isolated mouse Gipc3 cDNAs by using cDNA-PCR. Mouse Gipc3 gene encoded a 297-amino-acid protein, showing 86.2% total-amino-acid identity with human GIPC3. In addition to the central PDZ domain, GIPC homologous domain 1 (GH1 domain) and GH2 domain were found to be conserved among mouse Gipc3, Gipc1, Gipc2, and Xenopus Kermit. Mouse Gipc3 gene was found to consist of 6 exons, and exon-intron structure was well conserved between mouse Gipc3 gene and human GIPC3 gene. Mouse Gipc3 mRNA was relatively highly expressed in adult lung, and was also expressed in brain and testis, but was almost undetectable in 7-, 11-, 15, and 17-day whole embryos. This is the first report on molecular cloning and initial characterization of mouse Gipc3."	"Molecular cloning and characterization of human GIPC3, a novel gene homologous to human GIPC1 and GIPC2. Kermit is a Xenopus orthologue of human GIPC1/GIPC, which interacts with Frizzled-3 (FZD3) class of WNT receptor to modulate WNT signaling. GIPC1 interacts with TGFbeta type III receptor to enhance TGFbeta signaling. We have recently cloned and characterized a novel GIPC1-related gene, GIPC2. During isolation of GIPC2, we identified another novel GIPC1-related gene, GIPC3, by using bioinformatics. In this study, we isolated GIPC3 cDNAs from poly(A)+ RNA of human fetal lung. GIPC3 encoded a 312-amino-acid protein with a central PDZ domain, which showed 59.9% total-amino-acid identity with GIPC1, 55.3% total-amino-acid identity with GIPC2, and 57.2% total-amino-acid identity with Xenopus Kermit. GIPC3 gene on human chromosome 19p13.3 was found to consist of 6 exons, just like GIPC1 gene and GIPC2 gene. The 4.5-kb GIPC3 mRNA was almost ubiquitously expressed in normal adult tissues as well as in normal fetal tissues. Expression level of GIPC3 mRNA was relatively higher in jejunum, followed by lymph node, parietal lobe in brain, fetal spleen, and fetal thymus. GIPC3 mRNA was expressed in cervical cancer cell line HeLa S3, chronic myelogenous leukemia cell line K-562, and melanoma cell line G-361. GIPC3 mRNA was also expressed in gastric cancer cell lines TMK1 and MKN7; however, expression level of GIPC3 mRNA in TMK1 and MKN7 cells were significantly lower than that in normal stomach. This is the first report on molecular cloning of GIPC3, the third member of the GIPC gene family."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRXCR1"	"nonsyndromic genetic deafness"	"Genome-wide screen to identify genetic loci associated with cognitive decline in late-life depression. This study sought to conduct a comprehensive search for genetic risk of cognitive decline in the context of geriatric depression. A genome-wide association study (GWAS) analysis in the Neurocognitive Outcomes of Depression in the Elderly (NCODE) study. Longitudinal, naturalistic follow-up study. Older depressed adults, both outpatients and inpatients, receiving care at an academic medical center. The Consortium to Establish a Registry for Alzheimer's Disease (CERAD) neuropsychological battery was administered to the study participants at baseline and a minimum of twice within a subsequent 3-year period in order to measure cognitive decline. A GWAS analysis was conducted to identify genetic variation that is associated with baseline and change in the CERAD Total Score (CERAD-TS) in NCODE. The GWAS of baseline CERAD-TS revealed a significant association with an intergenic single-nucleotide polymorphism (SNP) on chromosome 6, rs17662598, that surpassed adjustment for multiple testing (p = 3.7 × 10-7; false discovery rate q = 0.0371). For each additional G allele, average baseline CERAD-TS decreased by 8.656 points. The most significant SNP that lies within a gene was rs11666579 in SLC27A1 (p = 1.1 × 10-5). Each additional copy of the G allele was associated with an average decrease of baseline CERAD-TS of 4.829 points. SLC27A1 is involved with processing docosahexaenoic acid (DHA), an endogenous neuroprotective compound in the brain. Decreased levels of DHA have been associated with the development of Alzheimer's disease. The most significant SNP associated with CERAD-TS decline over time was rs73240021 in GRXCR1 (p = 1.1 × 10-6), a gene previously linked with deafness. However, none of the associations within genes survived adjustment for multiple testing. Our GWAS of cognitive function and decline among individuals with late-life depression (LLD) has identified promising candidate genes that, upon replication in other cohorts of LLD, may be potential biomarkers for cognitive decline and suggests DHA supplementation as a possible therapy of interest."	"Characterization of the transcriptomes of Atoh1-induced hair cells in the mouse cochlea. Postnatal mammalian cochlear hair cells (HCs) can be regenerated by direct transdifferentiation or by mitotic regeneration from supporting cells through many pathways, including Atoh1, Wnt, Hedgehog and Notch signaling. However, most new HCs are immature HCs. In this study we used RNA-Seq analysis to compare the differences between the transcriptomes of Atoh1 overexpression-induced new HCs and the native HCs, and to define the factors that might help to promote the maturation of new HCs. As expected, we found Atoh1-induced new HCs had obvious HC characteristics as demonstrated by the expression of HC markers such as Pou4f3 and Myosin VIIA (Myo7a). However, Atoh1-induced new HCs had significantly lower expression of genes that are related to HC function such as Slc26a5 (Prestin), Slc17a8 and Otof. We found that genes related to HC cell differentiation and maturation (Kcnma1, Myo6, Myo7a, Grxcr1, Gfi1, Wnt5a, Fgfr1, Gfi1, Fgf8 etc.) had significantly lower expression levels in new HCs compared to native HCs. In conclusion, we found a set of genes that might regulate the differentiation and maturation of new HCs, and these genes might serve as potential new therapeutic targets for functional HC regeneration and hearing recovery."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Grxcr1 Promotes Hair Bundle Development by Destabilizing the Physical Interaction between Harmonin and Sans Usher Syndrome Proteins. Morphogenesis and mechanoelectrical transduction of the hair cell mechanoreceptor depend on the correct assembly of Usher syndrome (USH) proteins into highly organized macromolecular complexes. Defects in these proteins lead to deafness and vestibular areflexia in USH patients. Mutations in a non-USH protein, glutaredoxin domain-containing cysteine-rich 1 (GRXCR1), cause non-syndromic sensorineural deafness. To understand the deglutathionylating enzyme function of GRXCR1 in deafness, we generated two grxcr1 zebrafish mutant alleles. We found that hair bundles are thinner in homozygous grxcr1 mutants, similar to the USH1 mutants ush1c (Harmonin) and ush1ga (Sans). In vitro assays showed that glutathionylation promotes the interaction between Ush1c and Ush1ga and that Grxcr1 regulates mechanoreceptor development by preventing physical interaction between these proteins without affecting the assembly of another USH1 protein complex, the Ush1c-Cadherin23-Myosin7aa tripartite complex. By elucidating the molecular mechanism through which Grxcr1 functions, we also identify a mechanism that dynamically regulates the formation of Usher protein complexes."	"Grxcr2 is required for stereocilia morphogenesis in the cochlea. Hearing and balance depend upon the precise morphogenesis and mechanosensory function of stereocilia, the specialized structures on the apical surface of sensory hair cells in the inner ear. Previous studies of Grxcr1 mutant mice indicated a critical role for this gene in control of stereocilia dimensions during development. In this study, we analyzed expression of the paralog Grxcr2 in the mouse and evaluated auditory and vestibular function of strains carrying targeted mutations of the gene. Peak expression of Grxcr2 occurs during early postnatal development of the inner ear and GRXCR2 is localized to stereocilia in both the cochlea and in vestibular organs. Homozygous Grxcr2 deletion mutants exhibit significant hearing loss by 3 weeks of age that is associated with developmental defects in stereocilia bundle orientation and organization. Despite these bundle defects, the mechanotransduction apparatus assembles in relatively normal fashion as determined by whole cell electrophysiological evaluation and FM1-43 uptake. Although Grxcr2 mutants do not exhibit overt vestibular dysfunction, evaluation of vestibular evoked potentials revealed subtle defects of the mutants in response to linear accelerations. In addition, reduced Grxcr2 expression in a hypomorphic mutant strain is associated with progressive hearing loss and bundle defects. The stereocilia localization of GRXCR2, together with the bundle pathologies observed in the mutants, indicate that GRXCR2 plays an intrinsic role in bundle orientation, organization, and sensory function in the inner ear during development and at maturity."	"Novel mutation in GRXCR1 at DFNB25 lead to progressive hearing loss and dizziness. We identified 2 patients in 1 family who had novel mutations in GRXCR1, which caused progressive hearing loss. One thousand one hundred twenty Japanese hearing loss patients with sensorineural hearing loss from unrelated families were enrolled in this study. Targeted genomic enrichment with massively parallel sequencing of all known nonsyndromic hearing loss genes was used to identify the genetic causes of hearing loss. In this study, 2 affected individuals with compound heterozygous mutations-c.439C&gt;T (p.R147C) and c.784C&gt;T (p.R262X)-in GRXCR1 were identified. The proband had moderate to severe hearing loss and suffered from dizziness with bilateral canal paralysis. Our cases are the first identified in the Japanese population and are consistent with previously reported cases. The frequency of mutations in GRXCR1 seems to be extremely rare. This study underscores the importance of using comprehensive genetic testing for hearing loss. Furthermore, longitudinal audiologic assessment and precise vestibular testing are necessary for a better understanding of the mechanisms of hearing loss and vestibular dysfunction caused by GRXCR1 mutations."	"DFNB35 due to a novel mutation in the ESRRB gene in a Czech consanguineous family. Non-syndromic hearing loss (NSHL) is a genetically heterogeneous disorder with mostly autosomal recessive inheritance. So far 40 genes and the same amount of loci with as yet unknown genes were described with autosomal recessive NSHL. A consanguineous Czech family with a child with NSHL was genotyped using SNP array and homozygous regions were compared with previously reported DFNB loci. GRXCR1 and ESRRB genes associated with autosomal recessive NSHL were located in two of the eight homozygous regions detected by SNP array genotyping. Mutation p.R291L in a homozygous state was found in the deaf child, the parents were heterozygous. The entire coding region of the ESRRB gene was sequenced in additional 39 patients of Czech origin with early NSHL and only two variants, p.V413I and p.P386S, were found in homozygous state, but are considered to be polymorphisms. Homozygosity mapping is a powerful method for identification of genes in heterogeneous recessive diseases. This is the first report of DFNB35 mutations in the Czech Republic and it seems to be a rare cause of NSHL. Additional mutations in ESRRB gene were reported in Pakistan, Tunisia and Turkey."	"THRUMIN1 is a light-regulated actin-bundling protein involved in chloroplast motility. Chloroplast movement in response to changing light conditions optimizes photosynthetic light absorption. This repositioning is stimulated by blue light perceived via the phototropin photoreceptors and is transduced to the actin cytoskeleton. Some actin-based motility systems use filament reorganizations rather than myosin-based translocations. Recent research favors the hypothesis that chloroplast movement is driven by actin reorganization at the plasma membrane, but no proteins affecting chloroplast movements have been shown to associate with both the plasma membrane and actin filaments in vivo. Here we identified THRUMIN1 as a critical link between phototropin photoreceptor activity at the plasma membrane and actin-dependent chloroplast movements. THRUMIN1 bundles filamentous actin in vitro, and it localizes to the plasma membrane and displays light- and phototropin-dependent localization to microfilaments in vivo. These results suggest that phototropin-induced actin bundling via THRUMIN1 is important for chloroplast movement. A mammalian homolog of THRUMIN1, GRXCR1, has been implicated in auditory responses and hair cell stereocilla development as a regulator of actin architecture. Studies of THRUMIN1 will help elucidate the function of this family of eukaryotic proteins."	"Homozygosity mapping reveals mutations of GRXCR1 as a cause of autosomal-recessive nonsyndromic hearing impairment. We identified overlapping homozygous regions within the DFNB25 locus in two Dutch and ten Pakistani families with sensorineural autosomal-recessive nonsyndromic hearing impairment (arNSHI). Only one of the families, W98-053, was not consanguineous, and its sibship pointed toward a reduced critical region of 0.9 Mb. This region contained the GRXCR1 gene, and the orthologous mouse gene was described to be mutated in the pirouette (pi) mutant with resulting hearing loss and circling behavior. Sequence analysis of the GRXCR1 gene in hearing-impaired family members revealed splice-site mutations in two Dutch families and a missense and nonsense mutation, respectively, in two Pakistani families. The splice-site mutations are predicted to cause frameshifts and premature stop codons. In family W98-053, this could be confirmed by cDNA analysis. GRXCR1 is predicted to contain a GRX-like domain. GRX domains are involved in reversible S-glutathionylation of proteins and thereby in the modulation of activity and/or localization of these proteins. The missense mutation is located in this domain, whereas the nonsense and splice-site mutations may result in complete or partial absence of the GRX-like domain or of the complete protein. Hearing loss in patients with GRXCR1 mutations is congenital and is moderate to profound. Progression of the hearing loss was observed in family W98-053. Vestibular dysfunction was observed in some but not all affected individuals. Quantitative analysis of GRXCR1 transcripts in fetal and adult human tissues revealed a preferential expression of the gene in fetal cochlea, which may explain the nonsyndromic nature of the hearing impairment."	"Mutations in Grxcr1 are the basis for inner ear dysfunction in the pirouette mouse. Recessive mutations at the mouse pirouette (pi) locus result in hearing loss and vestibular dysfunction due to neuroepithelial defects in the inner ear. Using a positional cloning strategy, we have identified mutations in the gene Grxcr1 (glutaredoxin cysteine-rich 1) in five independent allelic strains of pirouette mice. We also provide sequence data of GRXCR1 from humans with profound hearing loss suggesting that pirouette is a model for studying the mechanism of nonsyndromic deafness DFNB25. Grxcr1 encodes a 290 amino acid protein that contains a region of similarity to glutaredoxin proteins and a cysteine-rich region at its C terminus. Grxcr1 is expressed in sensory epithelia of the inner ear, and its encoded protein is localized along the length of stereocilia, the actin-filament-rich mechanosensory structures at the apical surface of auditory and vestibular hair cells. The precise architecture of hair cell stereocilia is essential for normal hearing. Loss of function of Grxcr1 in homozygous pirouette mice results in abnormally thin and slightly shortened stereocilia. When overexpressed in transfected cells, GRXCR1 localizes along the length of actin-filament-rich structures at the dorsal-apical surface and induces structures with greater actin filament content and/or increased lengths in a subset of cells. Our results suggest that deafness in pirouette mutants is associated with loss of GRXCR1 function in modulating actin cytoskeletal architecture in the developing stereocilia of sensory hair cells."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ILDR1"	"nonsyndromic genetic deafness"	"Angulin-2/ILDR1, a tricellular tight junction protein, does not affect water transport in the mouse large intestine. Angulin-2/ILDR1 is a member of the angulin protein family, which is exclusively expressed at tricellular tight junctions in epithelia. Tricellular tight junctions are found where three cells meet and where three bicellular tight junction strands converge. Tricellular tight junctions are thought to be important for paracellular permeability of ions and water in epithelial tissues. It was recently reported that angulin-2/ILDR1 knockout mice have water transport abnormalities in the kidney. Since angulin-2/ILDR1 is the main tricellular tight junction protein in the large intestine, the goal of this research was to examine the effect of angulin-2/ILDR1 knockout on large intestinal paracellular water transport. We found that Ildr1 knockout mice showed no detectable phenotype other than deafness. In addition, paracellular transport as assessed by Ussing chamber was unchanged in Ildr1 knockout mice. However, we found that in the colon and the kidney of Ildr1 knockout mice, another tricellular tight junction protein, angulin-1/LSR, changes its expression pattern. We propose that with this replacement in tissue localization, angulin-1/LSR compensates for the loss of angulin-2/ILDR1 and maintains the barrier and function of the epithelia in the large intestine as well as the kidney."	"Genetics of age-related hearing loss. Age-related hearing loss (ARHL) has recently been confirmed as a common complex trait, that is, it is heritable with many genetic variants each contributing a small amount of risk, as well as environmental determinants. Historically, attempts to identify the genetic variants underlying the ARHL have been of limited success, relying on the selection of candidate genes based on the limited knowledge of the pathophysiology of the condition, and linkage studies in samples comprising related individuals. More recently genome-wide association studies have been performed, but these require very large samples having consistent and reliable phenotyping for hearing loss (HL), and early attempts suffered from lack of reliable replication of their findings. Replicated variants shown associated with ARHL include those lying in genes GRM7, ISG20, TRIOBP, ILDR1, and EYA4. The availability of large biobanks and the development of collaborative consortia have led to a breakthrough over the last couple of years, and many new genetic variants associated with ARHL are becoming available, through the analysis publicly available bioresources and electronic health records. These findings along with immunohistochemistry and mouse models of HL look set to help disentangle the genetic architecture of ARHL, and highlight the need for standardization of phenotyping methods to facilitate data sharing and collaboration across research networks."	"Tricellulin Modulates Transport of Macromolecules in the Salivary Gland. Volume and composition of saliva are crucial for oral and systemic health. How substances, particularly macromolecules, are transported across the salivary gland epithelium has not been established in detail. Tricellulin is a component of tricellular tight junctions that form a central tube to serve as an important route for macromolecule transport. Whether tricellulin is expressed in the submandibular gland (SMG) and involved in salivation has been unknown. Here, by using Western blotting and immunofluorescence, tricellulin was found to be characteristically localized at tricellular contacts of human, rat, and mouse SMGs. Knockdown of tricellulin significantly increased, whereas overexpression of tricellulin decreased, paracellular permeability for 40-kDa but not for 4-kDa fluorescein isothiocyanate-dextran, while transepithelial electrical resistance was unaffected. Conversely, claudin-4 knockdown and overexpression affected transepithelial electrical resistance but not 40-kDa fluorescein isothiocyanate-dextran transport, suggesting that tricellulin regulated transport of macromolecules but not ions, which were mainly regulated by bicellular tight junctions (bTJs). Moreover, tricellulin was dynamically redistributed from tri- to bicellular membranes in cholinergically stimulated SMG tissues and cells. Immunoglobulin-like domain-containing receptor 1 (ILDR1) recruits tricellulin to tricellular contacts. The proportion of macromolecules in the saliva was increased, whereas the amount of stimulated saliva was unchanged in Ildr1<sup>-/-</sup> mice, which displayed abnormal tricellulin distribution in SMGs. Furthermore, tricellulin interacted with bTJ proteins, such as occludin, claudin-1, claudin-3, claudin-4, and ZO-1, in rat SMG epithelial polarized cell line SMG-C6. Knockdown of tricellulin decreased occludin levels. Thus, we revealed a specific expression pattern of tricellulin in SMG epithelium. Tricellulin not only functioned as a barrier for macromolecules but also modulated the connection of bTJs to the tight junction complex. Alterations in tricellulin expression and distribution could thereby change salivary composition. Our study provided novel insights on salivary gland tight junction organization and function."	"Genome-wide association meta-analysis identifies five novel loci for age-related hearing impairment. Previous research has shown that genes play a substantial role in determining a person's susceptibility to age-related hearing impairment. The existing studies on this subject have different results, which may be caused by difficulties in determining the phenotype or the limited number of participants involved. Here, we have gathered the largest sample to date (discovery n = 9,675; replication n = 10,963; validation n = 356,141), and examined phenotypes that represented low/mid and high frequency hearing loss on the pure tone audiogram. We identified 7 loci that were either replicated and/or validated, of which 5 loci are novel in hearing. Especially the ILDR1 gene is a high profile candidate, as it contains our top SNP, is a known hearing loss gene, has been linked to age-related hearing impairment before, and in addition is preferentially expressed within hair cells of the inner ear. By verifying all previously published SNPs, we can present a paper that combines all new and existing findings to date, giving a complete overview of the genetic architecture of age-related hearing impairment. This is of importance as age-related hearing impairment is highly prevalent in our ageing society and represents a large socio-economic burden."	"Inherited variants at 3q13.33 and 3p24.1 are associated with risk of diffuse large B-cell lymphoma and implicate immune pathways. We previously identified five single nucleotide polymorphisms (SNPs) at four susceptibility loci for diffuse large B-cell lymphoma (DLBCL) in individuals of European ancestry through a large genome-wide association study (GWAS). To further elucidate genetic susceptibility to DLBCL, we sought to validate two loci at 3q13.33 and 3p24.1 that were suggestive in the original GWAS with additional genotyping. In the meta-analysis (5662 cases and 9237 controls) of the four original GWAS discovery scans and three replication studies, the 3q13.33 locus (rs9831894; minor allele frequency [MAF] = 0.40) was associated with DLBCL risk [odds ratio (OR) = 0.83, P = 3.62 × 10-13]. rs9831894 is in linkage disequilibrium (LD) with additional variants that are part of a super-enhancer that physically interacts with promoters of CD86 and ILDR1. In the meta-analysis (5510 cases and 12 817 controls) of the four GWAS discovery scans and four replication studies, the 3p24.1 locus (rs6773363; MAF = 0.45) was also associated with DLBCL risk (OR = 1.20, P = 2.31 × 10-12). This SNP is 29 426-bp upstream of the nearest gene EOMES and in LD with additional SNPs that are part of a highly lineage-specific and tumor-acquired super-enhancer that shows long-range interaction with AZI2 promoter. These loci provide additional evidence for the role of immune function in the etiology of DLBCL, the most common lymphoma subtype."	"A Large-Scale Genome-Wide Association Study in U.S. Holstein Cattle. Genome-wide association study (GWAS) is a powerful approach to identify genomic regions and genetic variants associated with phenotypes. However, only limited mutual confirmation from different studies is available. We conducted a large-scale GWAS using 294,079 first-lactation Holstein cows and identified new additive and dominance effects on five production traits, three fertility traits, and somatic cell score. Four chromosomes had the most significant SNP effects on the five production traits, a Chr14 region containing DGAT1 mostly had positive effects on fat yield and negative effects on milk and protein yields, the 88.07-89.60 Mb region of Chr06 with SLC4A4, GC, NPFFR2, and ADAMTS3 for milk and protein yields, the 30.03-36.67 Mb region of Chr20 with C6 and GHR for milk yield, and the 88.19-88.88 Mb region with ABCC9 as well as the 91.13-94.62 Mb region of Chr05 with PLEKHA5, MGST1, SLC15A5, and EPS8 for fat yield. For fertility traits, the SNP in GC of Chr06, and the SNPs in the 65.02-69.43 Mb region of Chr01 with COX17, ILDR1, and KALRN had the most significant effects for daughter pregnancy rate and cow conception rate, whereas SNPs in AFF1 of Chr06, the 47.54-52.79 Mb region of Chr07, TSPAN4 of Chr29, and NPAS1 of Chr18 had the most significant effects for heifer conception rate. For somatic cell score, GC of Chr06 and PRLR of Chr20 had the most significant effects. A small number of dominance effects were detected for the production traits with far lower statistical significance than the additive effects and for fertility traits with similar statistical significance as the additive effects. Analysis of allelic effects revealed the presence of uni-allelic, asymmetric, and symmetric SNP effects and found the previously reported DGAT1 antagonism was an extreme antagonistic pleiotropy between fat yield and milk and protein yields among all SNPs in this study."	"Targeted Next Generation Sequencing Revealed a Novel Homozygous Loss-of-Function Mutation in ILDR1 Gene Causes Autosomal Recessive Nonsyndromic Sensorineural Hearing Loss in a Chinese Family. Hereditary hearing impairment is one of the major and common birth defects in Chinese population. Non-syndromic sensorineural hearing loss (NSHL) is the most common types of hereditary hearing impairment. Genotypically and phenotypically NSHL is extremely heterogenous and follow either autosomal dominant or autosomal recessive or X-linked mode of inheritance. Presently, 127 genes have been identified to be associated with both syndromic and (NSHL). Here, we studied a Chinese family with moderate and profound hearing impairment. The proband is a 30-year old Chinese man. The proband was born with normal hearing and at the age of 5-years, the proband was first noticed with hearing impairment. Gradually and progressively the proband was presented with loss of hearing in his both right and left ears at the age of 30 years. The clinical symptoms, age of onset or progression to loss of hearing was similar in both the proband and his younger brother. The proband's parents are phenotypically normal and non-consanguineous. Clinical diagnosis of the proband and his younger brother has been done by classical pure tone audiogram (PTA). Computed Tomography (CT) found no abnormality in bilateral external ear, middle ear and inner ear. Targeted next generation sequencing was performed with a panel of 127 genes reported to be associated with hereditary hearing impairment. A novel homozygous single nucleotide deletion (c.427delT) in exon 4 of ILDR1 gene has been identified in proband and in his younger brother. Sanger sequencing confirmed that proband's father and mother are carrying this mutation in a heterozygous manner. This mutation has not been identified in 100 normal healthy control individuals. This mutation (c.427delT) causes frameshift (p.Tyr143Ilefs<sup>∗</sup>19) which leads to the formation of a truncated ILDR1 protein of 162 amino acids instead of the wild type ILDR1 protein of 546 amino acids. ILDR1 associated hereditary hearing impairment is very rare and this is the first report of identifying a loss-of-function mutation in ILDR1 gene associated with hereditary hearing impairment in Chinese population. Our present study also emphasized the significance of rapid, accurate and cost-effective screening for the patient with hereditary hearing impairment by targeted next generation sequencing."	"A Novel p.G141R Mutation in ILDR1 Leads to Recessive Nonsyndromic Deafness DFNB42 in Two Chinese Han Families. Genetic hearing impairment is highly heterogeneous. In this study, targeted next-generation sequencing (NGS) in two Chinese Han families identified a novel p.G141R homozygous mutation in ILDR1 as the genetic cause of the deafness. Consistent with the recessive inheritance, cosegregation of the p.G141R variant with the hearing loss was confirmed in members of both families by PCR amplification and Sanger sequencing. SNP genotyping analysis suggested that those two families were not closely related. Our study showed that targeted NGS is an effective tool for diagnosis of genetic deafness and that p.G141R in ILDR1 may be a relatively frequent mutation for DFNB42 in Chinese Hans."	"Next-generation sequencing identifies three novel missense variants in ILDR1 and MYO6 genes in an Iranian family with hearing loss with review of the literature. Hearing impairment is the most common sensorineural disorder and is genetically heterogeneous. Identification of the pathogenic mutations underlying hearing impairment is difficult, since causative mutations in 127 different genes have so far been reported. In this study, we performed Next-generation sequencing (NGS) in 2 individuals from a consanguineous family with hearing loss. Three novel mutations in known deafness genes were identified in the family; MYO6-p.R928C and -p.D1223N in heterozygous state and ILDR1-p.Y143C in homozygous state. Sanger sequencing confirmed co-segregation of the three mutations with deafness in the family. The identified mutation in ILDR1 gene is located in the immunoglobulin-type domain of the ILDR1 protein and the detected mutations in MY06 are located in the tail domain of the MYO6 protein. The mutations are predicted to be pathogenic by SIFT, PolyPhen and Mutation Taster. Our results suggest that either the homozygous ILDR1-p.Y143C mutation might be the pathogenic variant for ARNSHL or heterozygous MYO6- p.R928C, -p.D1223N might be involved in these patient's disorder due to compound heterozygousity. To our knowledge, this is the first ILDR1 and MYO6 mutations recognized in the southwest Iran. Our data expands the spectrum of mutations in ILDR1 and MYO6 genes."	"Identification of a novel frameshift mutation in the ILDR1 gene in a UAE family, mutations review and phenotype genotype correlation. Autosomal recessive non-syndromic hearing loss is one of the most common monogenic diseases. It is characterized by high allelic and locus heterogeneities that make a precise diagnosis difficult. In this study, whole-exome sequencing was performed for an affected patient allowing us to identify a new frameshift mutation (c.804delG) in the Immunoglobulin-Like Domain containing Receptor-1 (ILDR1) gene. Direct Sanger sequencing and segregation analysis were performed for the family pedigree. The mutation was homozygous in all affected siblings but heterozygous in the normal consanguineous parents. The present study reports a first ILDR1 gene mutation in the UAE population and confirms that the whole-exome sequencing approach is a robust tool for the diagnosis of monogenic diseases with high levels of allelic and locus heterogeneity. In addition, by reviewing all reported ILDR1 mutations, we attempt to establish a genotype phenotype correlation to explain the phenotypic variability observed at low frequencies."	"Angulin proteins ILDR1 and ILDR2 regulate alternative pre-mRNA splicing through binding to splicing factors TRA2A, TRA2B, or SRSF1. Angulin proteins are a group of evolutionally conserved type I transmembrane proteins that contain an extracellular Ig-like domain. In mammals, three angulin proteins have been identified, namely immunoglobulin-like domain containing receptor 1 (ILDR1), immunoglobulin-like domain containing receptor 2 (ILDR2), and lipolysis-stimulated lipoprotein receptor (LSR). All three proteins have been shown to localize at tight junctions (TJs) and are important for TJ formation. Mutations in ILDR1 gene have been shown to cause non-syndromic hearing loss (NSHL). In the present work, we show that ILDR1 binds to splicing factors TRA2A, TRA2B, and SRSF1, and translocates into the nuclei when the splicing factors are present. Moreover, ILDR1 affects alternative splicing of Tubulin delta 1 (TUBD1), IQ motif containing B1 (IQCB1), and Protocadherin 19 (Pcdh19). Further investigation show that ILDR2, but not LSR, also binds to the splicing factors and regulates alternative splicing. When endogenous ILDR1 and ILDR2 expression is knockdown with siRNAs in cultured cells, alternative splicing of TUBD1 and IQCB1 is affected. In conclusion, we show here that angulin proteins ILDR1 and ILDR2 are involved in alternative pre-mRNA splicing via binding to splicing factors TRA2A, TRA2B, or SRSF1."	"Genome-Wide Association Meta-Analysis Reveals Novel Juvenile Idiopathic Arthritis Susceptibility Loci. Juvenile idiopathic arthritis (JIA) is the most common childhood rheumatic disease and has a strong genomic component. To date, JIA genetic association studies have had limited sample sizes, used heterogeneous patient populations, or included only candidate regions. The aim of this study was to identify new associations between JIA patients with oligoarticular disease and those with IgM rheumatoid factor (RF)-negative polyarticular disease, which are clinically similar and the most prevalent JIA disease subtypes. Three cohorts comprising 2,751 patients with oligoarticular or RF-negative polyarticular JIA were genotyped using the Affymetrix Genome-Wide SNP Array 6.0 or the Illumina HumanCoreExome-12+ Array. Overall, 15,886 local and out-of-study controls, typed on these platforms or the Illumina HumanOmni2.5, were used for association analyses. High-quality single-nucleotide polymorphisms (SNPs) were used for imputation to 1000 Genomes prior to SNP association analysis. Meta-analysis showed evidence of association (P &lt; 1 × 10<sup>-6</sup> ) at 9 regions: PRR9_LOR (P = 5.12 × 10<sup>-8</sup> ), ILDR1_CD86 (P = 6.73 × 10<sup>-8</sup> ), WDFY4 (P = 1.79 × 10<sup>-7</sup> ), PTH1R (P = 1.87 × 10<sup>-7</sup> ), RNF215 (P = 3.09 × 10<sup>-7</sup> ), AHI1_LINC00271 (P = 3.48 × 10<sup>-7</sup> ), JAK1 (P = 4.18 × 10<sup>-7</sup> ), LINC00951 (P = 5.80 × 10<sup>-7</sup> ), and HBP1 (P = 7.29 × 10<sup>-7</sup> ). Of these, PRR9_LOR, ILDR1_CD86, RNF215, LINC00951, and HBP1 were shown, for the first time, to be autoimmune disease susceptibility loci. Furthermore, associated SNPs included cis expression quantitative trait loci for WDFY4, CCDC12, MTP18, SF3A1, AHI1, COG5, HBP1, and GPR22. This study provides evidence of both unique JIA risk loci and risk loci overlapping between JIA and other autoimmune diseases. These newly associated SNPs are shown to influence gene expression, and their bounding regions tie into molecular pathways of immunologic relevance. Thus, they likely represent regions that contribute to the pathology of oligoarticular JIA and RF-negative polyarticular JIA."	"Discovering the Unexpected with the Utilization of NGS in Diagnostics of Non-syndromic Hearing Loss Disorders: The Family Case of ILDR1-Dependent Hearing Loss Disorder. Sensorineural hearing loss (SNHL) is a heterogeneous family of hearing disabilities with congenital (including genetic) as well as acquired etiology. Congenital SNHL of genetic etiology is further sub-divided into autosomal dominant, autosomal recessive and X-linked SNHL. More than 60 genes are involved in the etiology of autosomal recessive non-syndromic hearing loss (ARNSHL) commonly manifesting as heterogeneous pre-lingual profound to severe non-progressive clinical phenotype. ILDR1-dependent ARNSHL (DFNB42, OMIM: # 609646) is a very rare sub-type of hearing disability, with unknown prevalence, caused by function-damaging genetic variants in ILDR1 gene reported in families of Middle-Eastern origin. ILDR1 (Immunoglobulin-Like Domain-containing Receptor 1) is involved in the development of semicircular canal, tricellular tight junction and auditory hair cells. An apparently non-consanguineous family of European ancestry with two affected siblings with profound progressive hearing loss characterized in their infancy and successfully treated with cochlear implants (CI) is presented. Genetic analysis of common ARNSHL genetic causes in the population of origin was negative, thus the next-generation sequencing (NGS) and family segregation analysis to identify underlying causative genetic variant was performed. Unexpectedly and atypical for the population of origin a homozygous non-sense variant ILDR1 c.942C &gt; A (p.Cys314Ter) inherited from both heterozygous parents was identified in both patients. Contrary to the commonly reported phenotype, indices of a progressive hearing loss and potential compensatory mechanism of vestibular function were revealed with the analysis of clinical data. The utilization of NGS was demonstrated as an invaluable tool for the detection of atypical rare variants in diagnostics of unidentified hearing loss disorders."	"ILDR1 is important for paracellular water transport and urine concentration mechanism. Whether the tight junction is permeable to water remains highly controversial. Here, we provide evidence that the tricellular tight junction is important for paracellular water permeation and that Ig-like domain containing receptor 1 (ILDR1) regulates its permeability. In the mouse kidney, ILDR1 is localized to tricellular tight junctions of the distal tubules. Genetic knockout of Ildr1 in the mouse kidney causes polyuria and polydipsia due to renal concentrating defects. Microperfusion of live renal distal tubules reveals that they are impermeable to water in normal animals but become highly permeable to water in Ildr1 knockout animals whereas paracellular ionic permeabilities in the Ildr1 knockout mouse renal tubules are not affected. Vasopressin cannot correct paracellular water loss in Ildr1 knockout animals despite normal effects on the transcellular aquaporin-2-dependent pathway. In cultured renal epithelial cells normally lacking the expression of Ildr1, overexpression of Ildr1 significantly reduces the paracellular water permeability. Together, our study provides a mechanism of how cells transport water and shows how such a mechanism may be exploited as a therapeutic approach to maintain water homeostasis."	"A novel aberrant splice site mutation in COL27A1 is responsible for Steel syndrome and extension of the phenotype to include hearing loss. Steel syndrome is an autosomal recessive disease characterized by skeletal abnormalities and dysmorphic features. The first mutation associated with this syndrome was reported in Puerto Rican children. In this study, we identified a novel homozygous splice site variant in COL27A1 (c.3556-2A&gt;G) in a consanguineous Emirati family with a child affected by Steel syndrome. In addition, the affected child had severe non-progressive sensorineural hearing loss not reported previously. The variant segregated in the family in an autosomal recessive manner and we show that the variant alters mRNA splicing. Furthermore, relative quantitative analysis revealed a marked reduction in gene expression in the proposita compared to healthy controls. Segregation analysis of heterozygous variants, related to hearing loss, identified by whole exome sequencing in the child (ILDR1: c.1159T&gt;C, SYNE4: c.313G&gt;C, and GPR98: c.18746T&gt;G) excluded them from being responsible for the hearing loss in the proposita. In addition, the products of these genes are not interacting in the same pathway and have only been reported to cause deafness in an autosomal recessive manner. Therefore, we conclude that the novel splice-site variant identified in COL27A1 is the most likely cause for Steel syndrome in this family and that the hearing loss is part of this syndrome's phenotype."	"A Large Genome-Wide Association Study of Age-Related Hearing Impairment Using Electronic Health Records. Age-related hearing impairment (ARHI), one of the most common sensory disorders, can be mitigated, but not cured or eliminated. To identify genetic influences underlying ARHI, we conducted a genome-wide association study of ARHI in 6,527 cases and 45,882 controls among the non-Hispanic whites from the Genetic Epidemiology Research on Adult Health and Aging (GERA) cohort. We identified two novel genome-wide significant SNPs: rs4932196 (odds ratio = 1.185, p = 4.0x10-11), 52Kb 3' of ISG20, which replicated in a meta-analysis of the other GERA race/ethnicity groups (1,025 cases, 12,388 controls, p = 0.00094) and in a UK Biobank case-control analysis (30,802 self-reported cases, 78,586 controls, p = 0.015); and rs58389158 (odds ratio = 1.132, p = 1.8x10-9), which replicated in the UK Biobank (p = 0.00021). The latter SNP lies just outside exon 8 and is highly correlated (r2 = 0.96) with the missense SNP rs5756795 in exon 7 of TRIOBP, a gene previously associated with prelingual nonsyndromic hearing loss. We further tested these SNPs in phenotypes from audiologist notes available on a subset of GERA (4,903 individuals), stratified by case/control status, to construct an independent replication test, and found a significant effect of rs58389158 on speech reception threshold (SRT; overall GERA meta-analysis p = 1.9x10-6). We also tested variants within exons of 132 other previously-identified hearing loss genes, and identified two common additional significant SNPs: rs2877561 (synonymous change in ILDR1, p = 6.2x10-5), which replicated in the UK Biobank (p = 0.00057), and had a significant GERA SRT (p = 0.00019) and speech discrimination score (SDS; p = 0.0019); and rs9493627 (missense change in EYA4, p = 0.00011) which replicated in the UK Biobank (p = 0.0095), other GERA groups (p = 0.0080), and had a consistent significant result for SRT (p = 0.041) and suggestive result for SDS (p = 0.081). Large cohorts with GWAS data and electronic health records may be a useful method to characterize the genetic architecture of ARHI."	"Mutations in eight small DFNB genes are not a frequent cause of non-syndromic hereditary hearing loss in Czech patients. To evaluate the contribution of eight small NSHL-AR (non-syndromic deafness, autosomal recessive) genes to hereditary hearing loss in Czech patients. Unrelated Czech patients, adults and children, diagnosed with pre-lingual hereditary hearing loss with at least one similarly affected deaf sibling and with previously excluded mutations in the GJB2 gene were investigated by Sanger sequencing of the selected eight small NSHL-AR associated genes (CABP2 - 51 patients, CIB2 - 45 patients, PJVK/DFNB59 - 53 patients, GJB3 - 46 patients, ILDR1 - 48 patients, LHFPL5 - 66 patients, LRTOMT - 60 patients, TMIE - 64 patients). Mutations were detected in the LHFPL5 (DFNB67) gene. The patient is heterozygote for two already described pathogenic variants (p.Tyr127Cys, p.Thr165Met). In five samples, five rare heterozygous variants (two novel) predicted as pathogenic were detected in genes CABP2, ILDR1, LHFPL5 and LRTOMT. Mutations in eight small NSHL-AR genes are not a frequent cause of hereditary hearing loss in the Czech Republic. This diagnostic approach permitted the clarification of HL in only one patient - two heterozygous mutations were detected in LHFPL5 gene for the first time in Central Europe. As the use of panel base MPS certainly improves the diagnostic yield, future studies should rather profit from that diagnostic strategy."	"Tricellular Tight Junctions in the Inner Ear. Tight junctions (TJs) are structures that seal the space between the epithelial cell sheets. In the inner ear, the barrier function of TJs is indispensable for the separation of the endolymphatic and perilymphatic spaces, which is essential for the generation and maintenance of the endocochlear potential (EP). TJs are formed by the intercellular binding of membrane proteins, known as claudins, and mutations in these proteins cause deafness in humans and mice. Within the epithelial cell sheet, however, a bound structure is present at the site where the corners of three cells meet (tricellular tight junctions (tTJs)), and the maintenance of the barrier function at this location cannot be explained by the claudins alone. Tricellulin and the angulin family of proteins (angulin-1/LSR, angulin-2/ILDR1, and angulin-3/ILDR2) have been identified as tTJ-associated proteins. Tricellulin and ILDR1 are localized at the tTJ and alterations in these proteins have been reported to be involved in deafness. In this review, we will present the current state of knowledge for tTJs. "	"Two novel mutations in ILDR1 gene cause autosomal recessive nonsyndromic hearing loss in consanguineous Iranian families. NA"	"Comprehensive analysis via exome sequencing uncovers genetic etiology in autosomal recessive nonsyndromic deafness in a large multiethnic cohort. Autosomal recessive nonsyndromic deafness (ARNSD) is characterized by a high degree of genetic heterogeneity, with reported mutations in 58 different genes. This study was designed to detect deafness-causing variants in a multiethnic cohort with ARNSD by using whole-exome sequencing (WES). After excluding mutations in the most common gene, GJB2, we performed WES in 160 multiplex families with ARNSD from Turkey, Iran, Mexico, Ecuador, and Puerto Rico to screen for mutations in all known ARNSD genes. We detected ARNSD-causing variants in 90 (56%) families, 54% of which had not been previously reported. Identified mutations were located in 31 known ARNSD genes. The most common genes with mutations were MYO15A (13%), MYO7A (11%), SLC26A4 (10%), TMPRSS3 (9%), TMC1 (8%), ILDR1 (6%), and CDH23 (4%). Nine mutations were detected in multiple families with shared haplotypes, suggesting founder effects. We report on a large multiethnic cohort with ARNSD in which comprehensive analysis of all known ARNSD genes identifies causative DNA variants in 56% of the families. In the remaining families, WES allows us to search for causative variants in novel genes, thus improving our ability to explain the underlying etiology in more families.Genet Med 18 4, 364-371."	"Deficiency of angulin-2/ILDR1, a tricellular tight junction-associated membrane protein, causes deafness with cochlear hair cell degeneration in mice. Tricellular tight junctions seal the extracellular spaces of tricellular contacts, where the vertices of three epithelial cells meet, and are required for the establishment of a strong barrier function of the epithelial cellular sheet. Angulins and tricellulin are known as specific protein components of tricellular tight junctions, where angulins recruit tricellulin. Mutations in the genes encoding angulin-2/ILDR1 and tricellulin have been reported to cause human hereditary deafness DFNB42 and DFNB49, respectively. To investigate the pathogenesis of DFNB42, we analyzed mice with a targeted disruption of Ildr1, which encodes angulin-2/ILDR1. Ildr1 null mice exhibited profound deafness. Hair cells in the cochlea of Ildr1 null mice develop normally, but begin to degenerate by two weeks after birth. Tricellulin localization at tricellular contacts of the organ of Corti in the cochlea was retained in Ildr1 null mice, but its distribution along the depth of tricellular contacts was affected. Interestingly, compensatory tricellular contact localization of angulin-1/LSR was observed in the organ of Corti in Ildr1 null mice although it was hardly detected in the organ of Corti in wild-type mice. The onset of hair cell degeneration in Ildr1 null mice was earlier than that in the reported Tric mutant mice, which mimic one of the tricellulin mutations in DFNB49 deafness. These results indicate that the angulin-2/ILDR1 deficiency causes the postnatal degenerative loss of hair cells in the cochlea, leading to human deafness DFNB42. Our data also suggest that angulin family proteins have distinct functions in addition to their common roles of tricellulin recruitment and that the function of angulin-2/ILDR1 for hearing cannot be substituted by angulin-1/LSR. "	"ILDR1 deficiency causes degeneration of cochlear outer hair cells and disrupts the structure of the organ of Corti: a mouse model for human DFNB42. Immunoglobulin-like domain containing receptor 1 (ILDR1) is a poorly characterized gene that was first identified in lymphoma cells. Mutations in ILDR1 are responsible for DFNB42, but the pathogenesis of hearing loss caused by ILDR1 mutations remains to be elucidated. To explore the role of ILDR1 in hearing, we created Ildr1 knockout mice. In heterozygous mice, ILDR1 expression was found in outer hair cells (OHCs) and inner hair cells (IHCs) of the organ of Corti. ILDR1-deficient mice are profoundly deaf by postnatal day 21 (P21). No significant difference was observed in the supporting cells and IHCs of ILDR1-deficient mice, but progressive degeneration of OHCs occurred at P15 and disruption of the tunnel running through the organ of Corti was noticeable at P21. By P28, there were no OHCs visible in any of the turns of the organ of Corti, and the tunnel of the organ of Corti was entirely destroyed. ILDR1 deficiency affects expression of tricellulin in vivo, and this provides a possible explanation to hearing loss. To further elucidate the mechanism of deafness related to ILDR1 deficiency, we pursued a differential proteomic approach to comprehensively assess differential protein expression in the cochleae of Ildr1(+/-) and Ildr1(-/-) mice at P21. Altogether, 708 proteins were up-regulated (fold change &gt;1.5) and 114 proteins were down-regulated (fold change &lt;0.5) in the Ildr1(-/-) mice compared with Ildr1(+/-) mice. Gene ontology classification indicated that a number of differentially expressed proteins are involved in cell adhesion, protein and vesicle-mediated transport, cell death, membrane organization, and cellular homeostasis. A few of these proteins are closely related to hearing development. Taken together, our data suggest that ILDR1 is important for the survival of OHCs and provide novel insights into the pathogenesis of human deafness DFNB42 deafness. "	"Downsloping high-frequency hearing loss due to inner ear tricellular tight junction disruption by a novel ILDR1 mutation in the Ig-like domain. The immunoglobulin (Ig)-like domain containing receptor 1 (ILDR1) gene encodes angulin-2/ILDR1, a recently discovered tight junction protein, which forms tricellular tight junction (tTJ) structures with tricellulin and lipolysis-stimulated lipoprotein receptor (LSR) at tricellular contacts (TCs) in the inner ear. Previously reported recessive mutations within ILDR1 have been shown to cause severe to profound nonsyndromic sensorineural hearing loss (SNHL), DFNB42. Whole-exome sequencing of a Korean multiplex family segregating partial deafness identified a novel homozygous ILDR1 variant (p.P69H) within the Ig-like domain. To address the pathogenicity of p.P69H, the angulin-2/ILDR1 p.P69H variant protein, along with the previously reported pathogenic ILDR1 mutations, was expressed in angulin-1/LSR knockdown epithelial cells. Interestingly, partial mislocalization of the p.P69H variant protein and tricellulin at TCs was observed, in contrast to a severe mislocalization and complete failure of tricellulin recruitment of the other reported ILDR1 mutations. Additionally, three-dimensional protein modeling revealed that angulin-2/ILDR1 contributed to tTJ by forming a homo-trimer structure through its Ig-like domain, and the p.P69H variant was predicted to disturb homo-trimer formation. In this study, we propose a possible role of angulin-2/ILDR1 in tTJ formation in the inner ear and a wider audiologic phenotypic spectrum of DFNB42 caused by mutations within ILDR1. "	"ILDR1 null mice, a model of human deafness DFNB42, show structural aberrations of tricellular tight junctions and degeneration of auditory hair cells. In the mammalian inner ear, bicellular and tricellular tight junctions (tTJs) seal the paracellular space between epithelial cells. Tricellulin and immunoglobulin-like (Ig-like) domain containing receptor 1 (ILDR1, also referred to as angulin-2) localize to tTJs of the sensory and non-sensory epithelia in the organ of Corti and vestibular end organs. Recessive mutations of TRIC (DFNB49) encoding tricellulin and ILDR1 (DFNB42) cause human nonsyndromic deafness. However, the pathophysiology of DFNB42 deafness remains unknown. ILDR1 was recently reported to be a lipoprotein receptor mediating the secretion of the fat-stimulated cholecystokinin (CCK) hormone in the small intestine, while ILDR1 in EpH4 mouse mammary epithelial cells in vitro was shown to recruit tricellulin to tTJs. Here we show that two different mouse Ildr1 mutant alleles have early-onset severe deafness associated with a rapid degeneration of cochlear hair cells (HCs) but have a normal endocochlear potential. ILDR1 is not required for recruitment of tricellulin to tTJs in the cochlea in vivo; however, tricellulin becomes mislocalized in the inner ear sensory epithelia of ILDR1 null mice after the first postnatal week. As revealed by freeze-fracture electron microscopy, ILDR1 contributes to the ultrastructure of inner ear tTJs. Taken together, our data provide insight into the pathophysiology of human DFNB42 deafness and demonstrate that ILDR1 is crucial for normal hearing by maintaining the structural and functional integrity of tTJs, which are critical for the survival of auditory neurosensory HCs."	"Ildr1b is essential for semicircular canal development, migration of the posterior lateral line primordium and hearing ability in zebrafish: implications for a role in the recessive hearing impairment DFNB42. Immunoglobulin-like domain containing receptor 1 (ILDR1) is a poorly characterized gene that was first identified in lymphoma cells. Recently, ILDR1 has been found to be responsible for autosomal recessive hearing impairment DFNB42. Patients with ILDR1 mutations cause bilateral non-progressive moderate-to-profound sensorineural hearing impairment. However, the etiology and mechanism of ILDR1-related hearing loss remains to be elucidated. In order to uncover the pathology of DFNB42 deafness, we used the morpholino injection technique to establish an ildr1b-morphant zebrafish model. Ildr1b-morphant zebrafish displayed defective hearing and imbalanced swimming, and developmental delays were seen in the semicircular canals of the inner ear. The gene expression profile and real-time PCR revealed down-regulation of atp1b2b (encoding Na(+)/K(+) transporting, beta 2b polypeptide) in ildr1b-morphant zebrafish. We found that injection of atp1b2b mRNA into ildr1b-knockdown zebrafish could rescue the phenotype of developmental delay of the semicircular canals. Moreover, ildr1b-morphant zebrafish had reduced numbers of lateral line neuromasts due to the disruption of lateral line primordium migration. In situ hybridization showed the involvement of attenuated FGF signaling and the chemokine receptor 4b (cxcr4b) and chemokine receptor 7b (cxcr7b) in posterior lateral line primordium of ildr1b-morphant zebrafish. We concluded that Ildr1b is crucial for the development of the inner ear and the lateral line system. This study provides the first evidence for the mechanism of Ildr1b on hearing in vivo and sheds light on the pathology of DFNB42. "	"[Molecular organization of tricellular tight junctions]. Within an epithelial cellular sheet, the paracellular pathway can be divided into two routes: one between two adjacent cells and one at tricellular contacts, where the vertices of three cells meet. For epithelial barrier function, tight junctions restrict solute permeability through the paracellular pathway between two cells, while tricellular contacts contain specialized structures of tight junctions, named tricellular tight junctions (tTJs). Two types of membrane proteins, tricellulin and angulin family proteins (angulin-1/LSR, angulin-2/ILDR1 and angulin-3/ILDR2) have been identified as molecular components of tTJs. Angulins recruit triellulin to tTJs and these tTJ-associated proteins are required for normal tTJ formation as well as strong epithelial barrier function. Furthermore, mutations in tricellulin and angulin-2/ILDR1 genes cause autosomal recessive familial deafness, DFNB49 and DFNB42, respectively. Further analyses of the angulin-tricellulin system should lead to better understanding of the molecular mechanism and regulation of tTJs."	"ILDR1: Novel mutation and a rare cause of congenital deafness in the Saudi Arabian population. Hearing impairment is the common human sensorineural disorder and is a genetically heterogeneous phenotype for which more than 100 genomic loci have been mapped so far. ILDR1 located on chromosome 3q13.33, encodes a putative transmembrane receptor containing an immunoglobulin-like domain. We used a combination of autozygosity mapping and candidate gene sequencing to identify a novel mutation in ILDR1, as a causative gene for autosomal-recessive non-syndromic hearing loss (arNSHL) in a consanguineous Saudi family with three affected children. Autozygosity mapping identified a shared region between the affected individuals encompassing ILDR1 on chromosome 3q13.12-3q22.1. Sequencing revealed homozygous 9 base pair duplication, resulting in an in-frame duplication of three amino acids p.(Asn109_Pro111dup). The mutation was segregating with the disease phenotype and is predicted to be pathogenic by SIFT and PROVEAN. The identified mutation is located in the immunoglobulin-type domain of the ILDR1 protein. In silico analysis using I-TASSER server and PyMOL offers the first predictions on the structural and functional consequences of this mutation. To our knowledge, this is the first ILDR1 mutation identified in a Saudi family. Identification of ILDR1 mutation in only one of 100 Saudi familial and sporadic individuals with hearing loss suggests that this mutation is unique to this family and that ILDR1 should be considered as a rare cause of congenital deafness among Saudi Arabian population. Our data also confirms the evidence for ILDR1 allelic heterogeneity and expands the number of familial arNSHL-associated ILDR1 gene mutations."	"Localization of angulin-1/LSR and tricellulin at tricellular contacts of brain and retinal endothelial cells in vivo. The paracellular pathway of an epithelial cellular sheet can be divided into two parts: one between two adjacent cells sealed by tight junctions (TJs) and one at tricellular contacts (TCs), where the corners of three cells meet. At TCs of epithelial cells, there is a specialized mode of TJs, namely tricellular TJs (tTJs), required for full barrier function of the cellular sheet. However, tTJs have not been described in endothelial cells to date. Here, we investigated whether tTJs occur in endothelial cells by analyzing the TC localizations of tTJ markers, tricellulin and angulin family proteins (angulin-1/LSR, angulin-2/ILDR1, and angulin-3/ILDR2), by immunofluorescence staining of frozen sections of various tissues from adult mice. Endothelial TCs in most tissues revealed no detectable staining of tricellulin or angulins. However, tricellulin and angulin-1/LSR were specifically concentrated in TCs of brain and retinal endothelial cells, which form the blood-brain barrier (BBB) and inner blood-retinal barrier (BRB), respectively. Even in the brain, endothelial cells in the choroid plexus and the median eminence, one of the circumventricular organs, did not show concentration of tricellulin or angulins at TCs. These findings indicate the existence of tTJs in endothelial cells in vivo and suggest that tTJs impart important characteristics to the BBB and inner BRB. "	"Immunoglobulin-like domain containing receptor 1 mediates fat-stimulated cholecystokinin secretion. Cholecystokinin (CCK) is a satiety hormone produced by discrete enteroendocrine cells scattered among absorptive cells of the small intestine. CCK is released into blood following a meal; however, the mechanisms inducing hormone secretion are largely unknown. Ingested fat is the major stimulant of CCK secretion. We recently identified a novel member of the lipoprotein remnant receptor family known as immunoglobulin-like domain containing receptor 1 (ILDR1) in intestinal CCK cells and postulated that this receptor conveyed the signal for fat-stimulated CCK secretion. In the intestine, ILDR1 is expressed exclusively in CCK cells. Orogastric administration of fatty acids elevated blood levels of CCK in wild-type mice but not Ildr1-deficient mice, although the CCK secretory response to trypsin inhibitor was retained. The uptake of fluorescently labeled lipoproteins in ILDR1-transfected CHO cells and release of CCK from isolated intestinal cells required a unique combination of fatty acid plus HDL. CCK secretion secondary to ILDR1 activation was associated with increased [Ca2+]i, consistent with regulated hormone release. These findings demonstrate that ILDR1 regulates CCK release through a mechanism dependent on fatty acids and lipoproteins and that absorbed fatty acids regulate gastrointestinal hormone secretion. "	"ILDR2: an endoplasmic reticulum resident molecule mediating hepatic lipid homeostasis. Ildr2, a modifier of diabetes susceptibility in obese mice, is expressed in most organs, including islets and hypothalamus, with reduced levels in livers of diabetes-susceptible B6.DBA mice congenic for a 1.8 Mb interval of Chromosome 1. In hepatoma and neuronal cells, ILDR2 is primarily located in the endoplasmic reticulum membrane. We used adenovirus vectors that express shRNA or are driven by the CMV promoter, respectively, to knockdown or overexpress Ildr2 in livers of wild type and ob/ob mice. Livers in knockdown mice were steatotic, with increased hepatic and circulating triglycerides and total cholesterol. Increased circulating VLDL, without reduction in triglyceride clearance suggests an effect of reduced hepatic ILDR2 on hepatic cholesterol clearance. In animals that overexpress Ildr2, hepatic triglyceride and total cholesterol levels were reduced, and strikingly so in ob/ob mice. There were no significant changes in body weight, energy expenditure or glucose/insulin homeostasis in knockdown or overexpressing mice. Knockdown mice showed reduced expression of genes mediating synthesis and oxidation of hepatic lipids, suggesting secondary suppression in response to increased hepatic lipid content. In Ildr2-overexpressing ob/ob mice, in association with reduced liver fat content, levels of transcripts related to neutral lipid synthesis and cholesterol were increased, suggesting &quot;relief&quot; of the secondary suppression imposed by lipid accumulation. Considering the fixed location of ILDR2 in the endoplasmic reticulum, we investigated the possible participation of ILDR2 in ER stress responses. In general, Ildr2 overexpression was associated with increases, and knockdown with decreases in levels of expression of molecular components of canonical ER stress pathways. We conclude that manipulation of Ildr2 expression in liver affects both lipid homeostasis and ER stress pathways. Given these reciprocal interactions, and the relatively extended time-course over which these studies were conducted, we cannot assign causal primacy to either the effects on hepatic lipid homeostasis or ER stress responses. "	"Analysis of the 'angulin' proteins LSR, ILDR1 and ILDR2--tricellulin recruitment, epithelial barrier function and implication in deafness pathogenesis. Tricellular tight junctions (tTJs) seal the extracellular space at tricellular contacts (TCs), where the corners of three epithelial cells meet. To date, the transmembrane proteins tricellulin and lipolysis-stimulated lipoprotein receptor (LSR) are known to be molecular components of tTJs. LSR recruits tricellulin to tTJs, and both proteins are required for the full barrier function of epithelial cellular sheets. In the present study, we show that two LSR-related proteins, immunoglobulin-like domain-containing receptor (ILDR) 1 and ILDR2, are also localized at TCs and recruit tricellulin. At least one of LSR, ILDR1 and ILDR2 was expressed in most of the epithelial tissues in mice. The expressions of LSR, ILDR1 and ILDR2 were generally complementary to each other, although LSR and ILDR1 were co-expressed in some epithelia. ILDR1 was required for the establishment of a strong barrier of the epithelium, similar to LSR, when introduced into cultured epithelial cells, whereas ILDR2 provided a much weaker barrier. We further analyzed human ILDR1, mutations in which cause a familial deafness, DFNB42, and found that most DFNB42-associated ILDR1 mutant proteins were defective in recruitment of tricellulin. We also found that tricellulin mutant proteins associated with another familial deafness, DFNB49, were not recruited to TCs by ILDR1. These findings show the heterogeneity of the molecular organization of tTJs in terms of the content of LSR, ILDR1 or ILDR2, and suggest that ILDR1-mediated recruitment of tricellulin to TCs is required for hearing. Given their common localization at epithelial cell corners and recruitment of tricellulin, we propose to designate LSR, ILDR1 and ILDR2 as angulin family proteins."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"A new recurrent chromosomal translocation t(3;11)(q13;q14) in myelodysplastic syndromes associated with overexpression of the ILDR1 gene. Myelodysplastic syndromes (MDS) are a heterogeneous group of diseases characterized by ineffective hematopoiesis and an increased risk of evolution to acute myeloid leukemia (AML). In this study, the combination of conventional cytogenetic, FISH studies and molecular techniques allowed us to unveil a novel recurrent t(3;11)(q13;q14) causing the overexpression of the immunoglobulin-like domain-containing receptor (ILDR1) gene. The analysis of gene expression was extended to Refractory Anemia (RA) and Refractory Anemia with excess blasts (RAEB) cases revealing ILDR1 overexpression in 36% of RAEB subgroup. The biological implications of the ILDR1 overexpression in MDS pathogenesis and its potential prognostic significance should be further investigated."	"Loss-of-function mutations of ILDR1 cause autosomal-recessive hearing impairment DFNB42. By using homozygosity mapping in a consanguineous Pakistani family, we detected linkage of nonsyndromic hearing loss to a 7.6 Mb region on chromosome 3q13.31-q21.1 within the previously reported DFNB42 locus. Subsequent candidate gene sequencing identified a homozygous nonsense mutation (c.1135G&gt;T [p.Glu379X]) in ILDR1 as the cause of hearing impairment. By analyzing additional consanguineous families with homozygosity at this locus, we detected ILDR1 mutations in the affected individuals of 10 more families from Pakistan and Iran. The identified ILDR1 variants include missense, nonsense, frameshift, and splice-site mutations as well as a start codon mutation in the family that originally defined the DFNB42 locus. ILDR1 encodes the evolutionarily conserved immunoglobulin-like domain containing receptor 1, a putative transmembrane receptor of unknown function. In situ hybridization detected expression of Ildr1, the murine ortholog, early in development in the vestibule and in hair cells and supporting cells of the cochlea. Expression in hair cell- and supporting cell-containing neurosensory organs is conserved in the zebrafish, in which the ildr1 ortholog is prominently expressed in the developing ear and neuromasts of the lateral line. These data identify loss-of-function mutations of ILDR1, a gene with a conserved expression pattern pointing to a conserved function in hearing in vertebrates, as underlying nonsyndromic prelingual sensorineural hearing impairment."	"Positional cloning of &quot;Lisch-Like&quot;, a candidate modifier of susceptibility to type 2 diabetes in mice. In 404 Lep(ob/ob) F2 progeny of a C57BL/6J (B6) x DBA/2J (DBA) intercross, we mapped a DBA-related quantitative trait locus (QTL) to distal Chr1 at 169.6 Mb, centered about D1Mit110, for diabetes-related phenotypes that included blood glucose, HbA1c, and pancreatic islet histology. The interval was refined to 1.8 Mb in a series of B6.DBA congenic/subcongenic lines also segregating for Lep(ob). The phenotypes of B6.DBA congenic mice include reduced beta-cell replication rates accompanied by reduced beta-cell mass, reduced insulin/glucose ratio in blood, reduced glucose tolerance, and persistent mild hypoinsulinemic hyperglycemia. Nucleotide sequence and expression analysis of 14 genes in this interval identified a predicted gene that we have designated &quot;Lisch-like&quot; (Ll) as the most likely candidate. The gene spans 62.7 kb on Chr1qH2.3, encoding a 10-exon, 646-amino acid polypeptide, homologous to Lsr on Chr7qB1 and to Ildr1 on Chr16qB3. The largest isoform of Ll is predicted to be a transmembrane molecule with an immunoglobulin-like extracellular domain and a serine/threonine-rich intracellular domain that contains a 14-3-3 binding domain. Morpholino knockdown of the zebrafish paralog of Ll resulted in a generalized delay in endodermal development in the gut region and dispersion of insulin-positive cells. Mice segregating for an ENU-induced null allele of Ll have phenotypes comparable to the B.D congenic lines. The human ortholog, C1orf32, is in the middle of a 30-Mb region of Chr1q23-25 that has been repeatedly associated with type 2 diabetes."	"Characterization of a novel immunoglobulin-like domain containing receptor. A not yet described gene was identified in a lymphoma specific subtraction strategy. Three splice variants of this gene denoted immunoglobulin-like domain containing receptor 1 (ILDR1) were identified and characterized. Cellular localization studies showed membrane-association for two of the variants, while the third was cytoplasmic and appeared to translocate to the membrane upon co-expression with any of the other two isoforms. ILDR1 shows approximately 30% homology to a recently described protein from rat, lipolysis stimulated receptor, that has been shown to bind low-density lipoprotein. The gene encoding ILDR1 is localized to chromosome 3q21.1 and it is expressed in prostate, testis, pancreas, kidney, liver, and heart. Interestingly, the shortest transcript corresponding to the cytoplasmic variant could only be detected in lymphoma samples and not in normal tissues or cell lines tested. The expression of this variant may therefore be related to the development and/or progression of cancer."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"LHFPL5"	"nonsyndromic genetic deafness"	"Disruption of tmc1/2a/2b Genes in Zebrafish Reveals Subunit Requirements in Subtypes of Inner Ear Hair Cells. Detection of sound and head movement requires mechanoelectrical transduction (MET) channels at tips of hair-cell stereocilia. In vertebrates, the transmembrane channel-like (TMC) proteins TMC1 and TMC2 fulfill critical roles in MET, and substantial evidence implicates these TMCs as subunits of the MET channel. To identify developmental and functional roles of this Tmc subfamily in the zebrafish inner ear, we tested the effects of truncating mutations in tmc1, tmc2a, and tmc2b on in vivo mechanosensation at the onset of hearing and balance, before gender differentiation. We find that tmc1/2a/2b triple-mutant larvae cannot detect sound or orient with respect to gravity. They lack acoustic-evoked behavioral responses, vestibular-induced eye movements, and hair-cell activity as assessed with FM dye labeling and microphonic potentials. Despite complete loss of hair-cell function, tmc triple-mutant larvae retain normal gross morphology of hair bundles and proper trafficking of known MET components Protocadherin 15a (Pcdh15a), Lipoma HMGIC fusion partner-like 5 (Lhfpl5), and Transmembrane inner ear protein (Tmie). Transgenic, hair cell-specific expression of Tmc2b-mEGFP rescues the behavioral and physiological deficits in tmc triple mutants. Results from tmc single and double mutants evince a principle role for Tmc2a and Tmc2b in hearing and balance, respectively, whereas Tmc1 has lower overall impact. Our experiments reveal that, in developing cristae, hair cells stratify into an upper, Tmc2a-dependent layer of teardrop-shaped cells and a lower, Tmc1/2b-dependent tier of gourd-shaped cells. Collectively, our genetic evidence indicates that auditory/vestibular end organs and subsets of hair cells therein rely on distinct combinations of Tmc1/2a/2b.SIGNIFICANCE STATEMENT We assessed the effects of tmc1/2a/2b truncation mutations on mechanoelectrical transduction (MET) in the inner-ear hair cells of larval zebrafish. tmc triple mutants lacked behavioral responses to sound and head movements, while further assays demonstrated no observable mechanosensitivity in the tmc1/2a/2b triple mutant inner ear. Examination of tmc double mutants revealed major contributions from Tmc2a and Tmc2b to macular function; however, Tmc1 had less overall impact. FM labeling of lateral cristae in tmc double mutants revealed the presence of two distinct cell types, an upper layer of teardrop-shaped cells that rely on Tmc2a, and a lower layer of gourd-shaped cells that rely on Tmc1/2b."	"The lhfpl5 Ohnologs lhfpl5a and lhfpl5b Are Required for Mechanotransduction in Distinct Populations of Sensory Hair Cells in Zebrafish. Hair cells sense and transmit auditory, vestibular, and hydrodynamic information by converting mechanical stimuli into electrical signals. This process of mechano-electrical transduction (MET) requires a mechanically gated channel localized in the apical stereocilia of hair cells. In mice, lipoma HMGIC fusion partner-like 5 (LHFPL5) acts as an auxiliary subunit of the MET channel whose primary role is to correctly localize PCDH15 and TMC1 to the mechanotransduction complex. Zebrafish have two lhfpl5 genes (lhfpl5a and lhfpl5b), but their individual contributions to MET channel assembly and function have not been analyzed. Here we show that the zebrafish lhfpl5 genes are expressed in discrete populations of hair cells: lhfpl5a expression is restricted to auditory and vestibular hair cells in the inner ear, while lhfpl5b expression is specific to hair cells of the lateral line organ. Consequently, lhfpl5a mutants exhibit defects in auditory and vestibular function, while disruption of lhfpl5b affects hair cells only in the lateral line neuromasts. In contrast to previous reports in mice, localization of Tmc1 does not depend upon Lhfpl5 function in either the inner ear or lateral line organ. In both lhfpl5a and lhfpl5b mutants, GFP-tagged Tmc1 and Tmc2b proteins still localize to the stereocilia of hair cells. Using a stably integrated GFP-Lhfpl5a transgene, we show that the tip link cadherins Pcdh15a and Cdh23, along with the Myo7aa motor protein, are required for correct Lhfpl5a localization at the tips of stereocilia. Our work corroborates the evolutionarily conserved co-dependence between Lhfpl5 and Pcdh15, but also reveals novel requirements for Cdh23 and Myo7aa to correctly localize Lhfpl5a. In addition, our data suggest that targeting of Tmc1 and Tmc2b proteins to stereocilia in zebrafish hair cells occurs independently of Lhfpl5 proteins."	"Delineation of Homozygous Variants Associated with Prelingual Sensorineural Hearing Loss in Pakistani Families. Hearing loss is a genetically heterogeneous disorder affecting approximately 360 million people worldwide and is among the most common sensorineural disorders. Here, we report a genetic analysis of seven large consanguineous families segregating prelingual sensorineural hearing loss. Whole-exome sequencing (WES) revealed seven different pathogenic variants segregating with hearing loss in these families, three novel variants (c.1204G&gt;A, c.322G&gt;T, and c.5587C&gt;T) in TMPRSS3, ESRRB, and OTOF, and four previously reported variants (c.208C&gt;T, c.6371G&gt;A, c.226G&gt;A, and c.494C&gt;T) in LRTOMT, MYO15A, KCNE1, and LHFPL5, respectively. All identified variants had very low frequencies in the control databases and were predicted to have pathogenic effects on the encoded proteins. In addition to being familial, we also found intersibship locus heterogeneity in the evaluated families. The known pathogenic c.226C&gt;T variant identified in KCNE1 only segregates with the hearing loss phenotype in a subset of affected members of the family GCNF21. This study further highlights the challenges of identifying disease-causing variants for highly heterogeneous disorders and reports the identification of three novel and four previously reported variants in seven known deafness genes."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Induction of Tyrosine Hydroxylase Gene Expression in Embryonal Carcinoma Stem Cells Using a Natural Tissue-Specific Inducer. A large number of studies have focused on the generation of dopaminergic neurons from pluripotent cells. Differentiation of stem cells into distinct cell types is influenced by tissue-specific microenvironment. Since, central nervous system undergoes further development during postnatal life, in the present study neonatal rat brain tissue extract (NRBE) was applied to direct the differentiation of embryonal carcinoma stem cell line, P19 into dopaminergic (DA) phenotypes. Additionally, a neuroprotective drug, deprenyl was used alone or in combination with the extract. Results from morphological, immunofluorescence, and qPCR analyses showed that during a period of one to three weeks, a large percentage of stem cells were differentiated into neural cells. The results also indicated the greater effect of NRBE on the differentiation of the cells into tyrosine hydroxylase-expressing cells. MS analysis of NRBE showed the enrichment of gene ontology terms related to cell differentiation and neurogenesis. Network analysis of the studied genes and some DA markers resulted in the suggestion of potential regulatory candidates such as AVP, ACHE, LHFPL5, and DLK1 genes. In conclusion, NRBE as a natural native inducer was apparently able to simulate the brain microenvironment and support neural differentiation of P19 cells."	"Novel Mutations in KCNQ4, LHFPL5 and COCH Genes in Iranian Families with Hearing Impairment. Hearing loss (HL) is the most common sensory deficit in humans, and genetic factors contribute to about half of the cases. With 112 causative genes identified so far and a disproportionate share of the genes within different ethnic groups, HL has proven to be quite heterogeneous. Twenty Iranian families having at least 2 children with hereditary HL were initially verified to be GJB2-negative and were then subjected to whole exome sequencing (WES). Sanger sequencing was used to confirm segregation of the variant identified in each family. In 3 families, WES revealed 3 novel variants in KCNQ4, LHFPL5 and COCH genes. The KCNQ4 gene (DFNA2A) encodes a potassium channel (KV7.4) and the heterozygous variant identified (c.1647C&gt;G, p.F549L) resulted in the substitution of Phe549 residing in the KV7.4 cytoplasmic region. The homozygous variant (c.34A&gt;T, p.K12X) was identified in the LHFPL5 gene (DFNB67) which encodes a transmembrane protein, and another variant in a homozygous state (c.116T&gt;A, p.L39X) was identified in the COCH gene which encodes a secretory protein. Pathogenic variants in the COCH gene are associated with late onset autosomal dominant hearing loss (DFNA9) but the affected individuals displayed early onset HL with a recessive mode of inheritance. The 16% contribution of GJB2 to HL in the Iranian population necessitates the discovery of the remaining causal factors. This study is the first to report KCNQ4 and COCH related HL in the Iranian population and the second study, globally, to report HL due to biallelic inactivation of the COCH gene."	"Localization of TMC1 and LHFPL5 in auditory hair cells in neonatal and adult mice. The channel that governs mechanotransduction (MT) by hair cells in the inner ear has been investigated intensively for 4 decades, but its precise molecular composition remains enigmatic. Transmembrane channel-like protein 1 (TMC1) was recently identified as a component of the MT channel, and lipoma HMGIC fusion partner-like 5 (LHFPL5) is considered to be part of the MT complex and may functionally couple the tip link to the MT channel. As components of the MT complex, TMC1 and LHFPL5 are expected to localize at the lower end of the tip link in hair cells, a notion generally supported by previous studies on neonatal mice. However, the localization of these 2 proteins, particularly in the hair cells of adult mice, remains incompletely elucidated. Because determination of TMC1 and LHFPL5 localization at distinct developmental stages is essential for understanding their function and regulation, we used several approaches to examine the localization of these proteins in neonatal and adult hair cells in the mouse. We report several notable findings: 1) TMC1 and LHFPL5 predominantly localize at the tip of the shorter rows of stereocilia in neonatal hair cells, which largely verifies the previously published findings in neonatal hair cells; 2) LHFPL5 persists in the hair bundle of hair cells after postnatal day (P)7, which clarifies the previously reported unexpected absence of LHFPL5 after P7 and supports the view that LHFPL5 is a permanent component in the MT complex; and 3) TMC1 and LHFPL5 remain at the tip of the shorter rows of stereocilia in adult outer hair cells, but in adult inner hair cells, TMC1 is uniformly distributed in both the tallest row and the shorter rows of stereocilia, whereas LHFPL5 is uniformly distributed in the shorter rows of stereocilia. These findings raise intriguing questions regarding the turnover rate, regulation, additional functions, and functional interaction of TMC1 and LHFPL5. Our study confirms the previous findings in neonatal hair cells and reveals several previously unidentified aspects of TMC1 and LHFPL5 localization in more mature hair cells.-Li, X., Yu, X., Chen, X., Liu, Z., Wang, G., Li, C., Wong, E. Y. M., Sham, M. H., Tang, J., He, J., Xiong, W., Liu, Z., Huang, P. Localization of TMC1 and LHFPL5 in auditory hair cells in neonatal and adult mice."	"Ultrastructural localization of the likely mechanoelectrical transduction channel protein, transmembrane-like channel 1 (TMC1) during development of cochlear hair cells. Transmembrane channel like protein 1 (TMC1) is likely to be a pore-forming subunit of the transduction channel of cochlear hair cells that is mechanically gated by tension on tip links in the stereocilia bundle. To localise TMC1 precisely, we labelled mice cochleae of different ages using custom-made polyclonal antibodies to TMC1 for light and transmission electron microscopy (TEM). Immunofluorescence revealed stereocilia labelling at P9 but not at P3 in apical hair cells. Immunogold labelling for TEM confirmed that labelling was absent at P3, and showed weak labelling at P6 with no stereocilia tip labelling, increasing at P9, with specific tip labelling on shorter stereocilia and some throughout the bundle. At P12 and P21, labelling was refined mostly to stereocilia tips. Quantification showed that labelling overall reached maximum by P12, labelling per tip was relatively constant from P9 to P21, but percent tips labelled was reduced from 16% to 8%. Tmc1<sup>-/-</sup> showed no labelling. Thus TMC1 occurs at the lower end of the tip link, supporting its presence in the MET complex and likely the channel. Tip localisation from P9 onwards coincides with lipoma HMGIC fusion partner-like 5 (LHFPL5), a protein that may be involved in acquiring/maintaining TMC1 localisation."	"Surgery-free video-oculography in mouse models: enabling quantitative and short-interval longitudinal assessment of vestibular function. Vestibulo-ocular reflex (VOR) responding to acceleration stimuli is originated from the vestibular apparatuses and thus widely used as an in vivo indicator of the vestibular function. We have developed a vestibular function testing (VFT) system that allows to evaluate VOR response with improved efficiency. The previously required surgical procedure has been avoided by using a newly designed animal-immobility setup. The efficacy of our VFT system was demonstrated on the mice with vestibular abnormalities caused by either genetic mutations (Lhfpl5<sup>-/-</sup> or Cdh23<sup>-/-</sup>) or applied vestibulotoxicant (3,3'-iminodipropionitrile, IDPN). Daily longitudinal inspection of the VOR response in the IDPN-administered mice gives the first VOR-based daily-progression profile of the vestibular impairment. The capability of VOR in quantifying the severity of toxicant-induced vestibular deficits has been also demonstrated. The acquired VOR-measurement results were validated against the corresponding behavioral-test results. Further validation against immunofluorescence microscopy was applied to the VOR data obtained from the IDPN-administered mice. We conclude that the improved efficiency of our surgery-free VFT system, firstly, enables the characterization of VOR temporal dynamics and quantification of vestibular-impairment severity that may reveal useful information in toxicological and/or pharmaceutical studies; and, secondly, confers our system promising potential to serve as a high-throughput screener for identifying genes and drugs that affect vestibular function."	"LHFPL5 mutation: A rare cause of non-syndromic autosomal recessive hearing loss. Hearing loss is a debilitating disorder that impairs language acquisition, resulting in disability in children and potential isolation in adulthood. Its onset can have a genetic basis, though environmental factors, which are often preventable, can also cause the condition. The genetic forms are highly heterogeneous, and early detection is necessary to arrange appropriate patient support. Here we report the molecular basis of hereditary hearing loss in a consanguineous family with multiple affected members from Oman. Combining homozygosity mapping with whole exome sequencing identified a novel homozygous nucleotide substitution c.575T &gt; C in the lipoma HMGIC fusion partner-like 5 gene (LHFPL5), that converted the 192<sup>nd</sup> amino acid residue in the protein from a leucine to a proline, p.(Leu192Pro). Sanger sequencing confirmed segregation with the disease phenotype as expected for a recessive condition and the variant was absent in 123,490 subjects from various disease-specific and population genetic studies as well as 150 unrelated individuals and 35 deaf patients of Omani ethnicity. This study, which describes a novel LHFPL5 mutation in a family of Omani origin with hereditary hearing loss, supports previous clinical descriptions of the condition and contributes to the genetic spectrum of mutations in this form of deafness."	"High prevalence of congenital deafness on Reunion Island is due to a founder variant of LHFPL5. Reunion Island is a French oversea department in the Indian Ocean with 1.6/1000, an estimated prevalence of deafness that is almost double as compared to the mainland France. Twelve children having isolated bilateral prelingual profound deafness along with motor delay attributed to vestibular areflexia were enrolled. Their mean walking age was 19 months. Electroretinography and temporal bone CT-scans were normal in all cases. A novel homozygous frameshift lipoma HMGIC fusion partner-like 5 (LHFPL5) variant c.185delT p.(Phe62Serfs*23) was identified using whole-exome sequencing. It was found in seven families. Four patients from two different families from both Reunion Island and mainland France, were compound heterozygous: c.185delT p.(Phe62Serfs*23) and c.472C &gt; T p.(Arg158Trp). The phenotype observed in our patients completely mimics the hurry-scurry (hscy) murine Tmhs knock-out model. The recurrent occurrence of same LHFPL5 variant in Reunion Island is attributed to common ancestor couple born in 1693."	"Function and Dysfunction of TMC Channels in Inner Ear Hair Cells. The TMC1 channel was identified as a protein essential for hearing in mouse and human, and recognized as one of a family of eight such proteins in mammals. The TMC family is part of a superfamily of seven branches, which includes the TMEM16s. Vertebrate hair cells express both TMC1 and TMC2. They are located at the tips of stereocilia and are required for hair cell mechanotransduction. TMC1 assembles as a dimer and its similarity to the TMEM16s has enabled a predicted tertiary structure with an ion conduction pore in each subunit of the dimer. Cysteine mutagenesis of the pore supports the role of TMC1 and TMC2 as the core channel proteins of a larger mechanotransduction complex that includes PCDH15 and LHFPL5, and perhaps TMIE, CIB2 and others."	"Novel missense and 3'-UTR splice site variants in LHFPL5 cause autosomal recessive nonsyndromic hearing impairment. LHFPL5, the gene for DFNB67, underlies autosomal recessive nonsyndromic hearing impairment. We identified seven Pakistani families that mapped to 6p21.31, which includes the LHFPL5 gene. Sanger sequencing of LHFPL5 using DNA samples from hearing impaired and unaffected members of these seven families identified four variants. Among the identified variants, two were novel: one missense c.452 G &gt; T (p.Gly151Val) and one splice site variant (c.*16 + 1 G &gt; A) were each identified in two families. Two known variants: c.250delC (p.Leu84*) and c.380 A &gt; G (p.Tyr127Cys) were also observed in two families and a single family, respectively. Nucleotides c.452G and c.*16 + 1G and amino-acid residue p.Gly151 are under strong evolutionary conservation. In silico bioinformatics analyses predicted these variants to be damaging. The splice site variant (c.*16 + 1 G &gt; A) is predicted to affect pre-mRNA splicing and a loss of the 5' donor splice site in the 3'-untranslated region (3'-UTR). Further analysis supports the activation of a cryptic splice site approximately 357-bp downstream, leading to an extended 3'-UTR with additional regulatory motifs. In conclusion, we identified two novel variants in LHFPL5, including a unique 3'-UTR splice site variant that is predicted to impact pre-mRNA splicing and regulation through an extended 3'-UTR."	"Structure of mouse protocadherin 15 of the stereocilia tip link in complex with LHFPL5. Hearing and balance involve the transduction of mechanical stimuli into electrical signals by deflection of bundles of stereocilia linked together by protocadherin 15 (PCDH15) and cadherin 23 'tip links'. PCDH15 transduces tip link tension into opening of a mechano-electrical transduction (MET) ion channel. PCDH15 also interacts with LHFPL5, a candidate subunit of the MET channel. Here we illuminate the PCDH15-LHFPL5 structure, showing how the complex is composed of PCDH15 and LHFPL5 subunit pairs related by a 2-fold axis. The extracellular cadherin domains define a mobile tether coupled to a rigid, 2-fold symmetric 'collar' proximal to the membrane bilayer. LHFPL5 forms extensive interactions with the PCDH15 transmembrane helices and stabilizes the overall PCDH15-LHFPL5 assembly. Our studies illuminate the architecture of the PCDH15-LHFPL5 complex, localize mutations associated with deafness, and shed new light on how forces in the PCDH15 tether may be transduced into the stereocilia membrane."	"Mechanically Gated Ion Channels in Mammalian Hair Cells. Hair cells in the inner ear convert mechanical stimuli provided by sound waves and head movements into electrical signal. Several mechanically evoked ionic currents with different properties have been recorded in hair cells. The search for the proteins that form the underlying ion channels is still in progress. The mechanoelectrical transduction (MET) channel near the tips of stereociliary in hair cells, which is responsible for sensory transduction, has been studied most extensively. Several components of the sensory mechanotransduction machinery in stereocilia have been identified, including the multi-transmembrane proteins tetraspan membrane protein in hair cell stereocilia (TMHS)/LHFPL5, transmembrane inner ear (TMIE) and transmembrane channel-like proteins 1 and 2 (TMC1/2). However, there remains considerable uncertainty regarding the molecules that form the channel pore. In addition to the sensory MET channel, hair cells express the mechanically gated ion channel PIEZO2, which is localized near the base of stereocilia and not essential for sensory transduction. The function of PIEZO2 in hair cells is not entirely clear but it might have a role in damage sensing and repair processes. Additional stretch-activated channels of unknown molecular identity and function have been found to localize at the basolateral membrane of hair cells. Here, we review current knowledge regarding the different mechanically gated ion channels in hair cells and discuss open questions concerning their molecular composition and function."	"Targeted Next-Generation Sequencing of a Deafness Gene Panel (MiamiOtoGenes) Analysis in Families Unsuitable for Linkage Analysis. Hearing loss (HL) is a common sensory disorder in humans with high genetic heterogeneity. To date, over 145 loci have been identified to cause nonsyndromic deafness. Furthermore, there are countless families unsuitable for the conventional linkage analysis. In the present study, we used a custom capture panel (MiamiOtoGenes) to target sequence 180 deafness-associated genes in 5 GJB2 negative deaf probands with autosomal recessive nonsyndromic HL from Iran. In these 5 families, we detected one reported and six novel mutations in 5 different deafness autosomal recessive (DFNB) genes (TRIOBP, LHFPL5, CDH23, PCDH15, and MYO7A). The custom capture panel in our study provided an efficient and comprehensive diagnosis for known deafness genes in small families."	"Spatiotemporal changes in the distribution of LHFPL5 in mice cochlear hair bundles during development and in the absence of PCDH15. Mechanosensory transduction by vertebrate hair cells depends on a protein complex at the tips of shorter stereocilia associated with mechanoelectrical transduction channels activated by tip links in the hair bundle. In mammalian hair cells, this complex includes transmembrane channel-like protein subunit 1 (TMC1), lipoma HMGIC fusion partner-like 5 protein (LHFPL5) and protocadherin 15 (PCDH15), a lower-end component of the tip link. TMC1 interacts with LHFPL5 and PCDH15 but how the complex develops to maturity, and the relationships between these proteins, remains uncertain. Here we evaluate the spatiotemporal development of LHFPL5 distributions in mouse cochlear hair bundles by immunofluorescence and immunogold transmission electron microscopy, from postnatal day 0 (P0) through P21 in wild type and PCDH15-deficient mice. At P0, hair bundles contain many short microvilli-like processes which we term unranked stereocilia, and a subset of lengthening rows, adjacent to a kinocilium. LHFPL5 is distributed throughout the bundle, including on stereocilia tips and the kinocilium. At P3, 4-to-6 rows of ranked stereocilia are evident, total LHFPL5 expression peaks, and LHFPL5 is localised to ranked stereocilia tips of all rows and to lower shaft/ankle links. By P12, the bundle has a mature pattern with 3 ranked rows but virtually no unranked stereocilia or kinocilium; LHFPL5 expression has declined and become restricted to the tips of shorter stereocilia. Throughout development from P0, expression of LHFPL5 is greater overall on apical than basal bundles, but there is, on average, an equal amount of labelling per labelled tip. In P3 mice lacking PCDH15, LHFPL5 labelling is not at the tips but is primarily on unranked stereocilia and lower lateral links. These data show that LHFPL5 is already present in the MET apparatus at P0 but requires PCDH15 at P3 to remain there. Shaft/ankle link localisation suggests it interacts with link proteins other than PCDH15."	"Molecular Analysis of Twelve Pakistani Families with Nonsyndromic or Syndromic Hearing Loss. To investigate the causative genetic mutations in 12 Pakistani families with nonsyndromic or syndromic hearing loss. Mutations in the most common causative gene for hearing loss, GJB2, were evaluated by Sanger sequencing. Targeted next-generation sequencing or whole-exome sequencing was used to analyze the genomic DNA samples from 11 probands with hearing loss. Sanger sequencing was performed to verify all identified variants. We found pathogenic, or likely to be pathogenic, mutations in all 12 families, including six known mutations in GJB2, SLC26A4, LHFPL5, and USH2A and eight novel mutations in ESPN, MYO7A, LRTOMT, PCDH15, USH2A, or EPS8L2. Notably, four compound heterozygous mutations in the MYO7A and USH2A genes were detected in two consanguineous families. In addition, the novel frameshift mutation in EPS8L2 was first documented in Pakistan. Our study increases the spectrum of mutations associated with hearing loss in the Pakistani population. In addition, our study highlights the fact that compound heterozygous mutations, although rare, can occur in consanguineous families."	"Rescue of Hearing by Gene Delivery to Inner-Ear Hair Cells Using Exosome-Associated AAV. Adeno-associated virus (AAV) is a safe and effective vector for gene therapy for retinal disorders. Gene therapy for hearing disorders is not as advanced, in part because gene delivery to sensory hair cells of the inner ear is inefficient. Although AAV transduces the inner hair cells of the mouse cochlea, outer hair cells remain refractory to transduction. Here, we demonstrate that a vector, exosome-associated AAV (exo-AAV), is a potent carrier of transgenes to all inner ear hair cells. Exo-AAV1-GFP is more efficient than conventional AAV1-GFP, both in mouse cochlear explants in vitro and with direct cochlear injection in vivo. Exo-AAV shows no toxicity in vivo, as assayed by tests of auditory and vestibular function. Finally, exo-AAV1 gene therapy partially rescues hearing in a mouse model of hereditary deafness (lipoma HMGIC fusion partner-like 5/tetraspan membrane protein of hair cell stereocilia [Lhfpl5/Tmhs<sup>-/-</sup>]). Exo-AAV is a powerful gene delivery system for hair cell research and may be useful for gene therapy for deafness."	"Molecular Identity of the Mechanotransduction Channel in Hair Cells: Not Quiet There Yet. Hair cells in the mammalian cochlea are specialized mechanosensory cells that convert sound-induced vibrations into electrochemical signals. The molecular composition of the mechanotransduction channel underlying auditory perception has been difficult to define. The study of genes that are linked to inherited forms of deafness has recently provided tantalizing clues. Current findings indicate that the mechanotransduction channel in hair cells is a complex molecular machine. Four different proteins (TMHS/LHFPL5, TMIE, TMC1, and TMC2) have so far been linked to the transduction channel, but which proteins contribute to the channel pore still needs to be determined. Current evidence also suggests that the channel complex may contain additional, yet to be identified components."	"Is TMC1 the Hair Cell Mechanotransducer Channel? Transmembrane channel-like protein isoform-1 (TMC1) has emerged over the past five years as a prime contender for the mechano-electrical transducer (MET) channel in hair cells of the inner ear. TMC1 is thought to have a six-transmembrane domain structure reminiscent of some other ion-channel subunits, and is targeted to the tips of the stereocilia in the sensory hair bundle, where the MET channel is located. Moreover, there are TMC1 mutations linked to human deafness causing loss of conventional MET currents, hair cell degeneration, and deafness in mice. Finally, mutations of Tmc1 can alter the conductance and Ca(2+) selectivity of the MET channels. For several reasons though, it is unclear that TMC1 is indeed the MET channel pore: 1) in other animals or tissues, mutations of TMC family members do not directly affect cellular mechanosensitivity; 2) there are residual manifestations of mechanosensitivity in hair cells of mouse Tmc1:Tmc2 double knockouts; 3) there is so far no evidence that expression of mammalian Tmc1 generates a mechanically sensitive ion channel in the plasma membrane when expressed in heterologous cells; and 4) there are other proteins, such as TMIE and LHFPL5, which behave similarly to TMC1, their mutation also leading to loss of MET current and deafness. This review will present these disparate lines of evidence and describes recent work that addresses the role of TMC1. "	"Mutations in eight small DFNB genes are not a frequent cause of non-syndromic hereditary hearing loss in Czech patients. To evaluate the contribution of eight small NSHL-AR (non-syndromic deafness, autosomal recessive) genes to hereditary hearing loss in Czech patients. Unrelated Czech patients, adults and children, diagnosed with pre-lingual hereditary hearing loss with at least one similarly affected deaf sibling and with previously excluded mutations in the GJB2 gene were investigated by Sanger sequencing of the selected eight small NSHL-AR associated genes (CABP2 - 51 patients, CIB2 - 45 patients, PJVK/DFNB59 - 53 patients, GJB3 - 46 patients, ILDR1 - 48 patients, LHFPL5 - 66 patients, LRTOMT - 60 patients, TMIE - 64 patients). Mutations were detected in the LHFPL5 (DFNB67) gene. The patient is heterozygote for two already described pathogenic variants (p.Tyr127Cys, p.Thr165Met). In five samples, five rare heterozygous variants (two novel) predicted as pathogenic were detected in genes CABP2, ILDR1, LHFPL5 and LRTOMT. Mutations in eight small NSHL-AR genes are not a frequent cause of hereditary hearing loss in the Czech Republic. This diagnostic approach permitted the clarification of HL in only one patient - two heterozygous mutations were detected in LHFPL5 gene for the first time in Central Europe. As the use of panel base MPS certainly improves the diagnostic yield, future studies should rather profit from that diagnostic strategy."	"Clinical and molecular delineation of dysequilibrium syndrome type 2 and profound sensorineural hearing loss in an inbred Arab family. NA"	"A Multi-Breed Genome-Wide Association Analysis for Canine Hypothyroidism Identifies a Shared Major Risk Locus on CFA12. Hypothyroidism is a complex clinical condition found in both humans and dogs, thought to be caused by a combination of genetic and environmental factors. In this study we present a multi-breed analysis of predisposing genetic risk factors for hypothyroidism in dogs using three high-risk breeds--the Gordon Setter, Hovawart and the Rhodesian Ridgeback. Using a genome-wide association approach and meta-analysis, we identified a major hypothyroidism risk locus shared by these breeds on chromosome 12 (p = 2.1x10(-11)). Further characterisation of the candidate region revealed a shared ~167 kb risk haplotype (4,915,018-5,081,823 bp), tagged by two SNPs in almost complete linkage disequilibrium. This breed-shared risk haplotype includes three genes (LHFPL5, SRPK1 and SLC26A8) and does not extend to the dog leukocyte antigen (DLA) class II gene cluster located in the vicinity. These three genes have not been identified as candidate genes for hypothyroid disease previously, but have functions that could potentially contribute to the development of the disease. Our results implicate the potential involvement of novel genes and pathways for the development of canine hypothyroidism, raising new possibilities for screening, breeding programmes and treatments in dogs. This study may also contribute to our understanding of the genetic etiology of human hypothyroid disease, which is one of the most common endocrine disorders in humans."	"The tip-link molecular complex of the auditory mechano-electrical transduction machinery. Sound waves are converted into electrical signals by a process of mechano-electrical transduction (MET), which takes place in the hair bundle of cochlear hair cells. In response to the mechanical stimulus of the hair bundle, the tip-links, key components of the MET machinery, are tensioned and the MET channels open, which results in the generation of the cell receptor potential. Tip-links are composed of cadherin-23 (Cdh23) and protocadherin-15 (Pcdh15), both non-conventional cadherins, that form the upper and the lower part of these links, respectively. Here, we review the various Pcdh15 isoforms present in the organ of Corti, their localization in the auditory hair bundles, their involvement in the molecular complex forming the tip-link, and their interactions with transmembrane molecules that are components of the lower MET machinery."	"Diversity of the causal genes in hearing impaired Algerian individuals identified by whole exome sequencing. The genetic heterogeneity of congenital hearing disorders makes molecular diagnosis expensive and time-consuming using conventional techniques such as Sanger sequencing of DNA. In order to design an appropriate strategy of molecular diagnosis in the Algerian population, we explored the diversity of the involved mutations by studying 65 families affected by autosomal recessive forms of nonsyndromic hearing impairment (DFNB forms), which are the most prevalent early onset forms. We first carried out a systematic screening for mutations in GJB2 and the recurrent p.(Arg34*) mutation in TMC1, which were found in 31 (47.7%) families and 1 (1.5%) family, respectively. We then performed whole exome sequencing in nine of the remaining families, and identified the causative mutations in all the patients analyzed, either in the homozygous state (eight families) or in the compound heterozygous state (one family): (c.709C&gt;T: p.(Arg237*)) and (c.2122C&gt;T: p.(Arg708*)) in OTOF, (c.1334T&gt;G: p.(Leu445Trp)) in SLC26A4, (c.764T&gt;A: p.(Met255Lys)) in GIPC3, (c.518T&gt;A: p.(Cys173Ser)) in LHFPL5, (c.5336T&gt;C: p.(Leu1779Pro)) in MYO15A, (c.1807G&gt;T: p.(Val603Phe)) in OTOA, (c.6080dup: p.(Asn2027Lys*9)) in PTPRQ, and (c.6017del: p.(Gly2006Alafs*13); c.7188_7189ins14: p.(Val2397Leufs*2)) in GPR98. Notably, 7 of these 10 mutations affecting 8 different genes had not been reported previously. These results highlight for the first time the genetic heterogeneity of the early onset forms of nonsyndromic deafness in Algerian families. "	"Subunit determination of the conductance of hair-cell mechanotransducer channels. Cochlear hair cells convert sound stimuli into electrical signals by gating of mechanically sensitive ion channels in their stereociliary (hair) bundle. The molecular identity of this ion channel is still unclear, but its properties are modulated by accessory proteins. Two such proteins are transmembrane channel-like protein isoform 1 (TMC1) and tetraspan membrane protein of hair cell stereocilia (TMHS, also known as lipoma HMGIC fusion partner-like 5, LHFPL5), both thought to be integral components of the mechanotransduction machinery. Here we show that, in mice harboring an Lhfpl5 null mutation, the unitary conductance of outer hair cell mechanotransducer (MT) channels was reduced relative to wild type, and the tonotopic gradient in conductance, where channels from the cochlear base are nearly twice as conducting as those at the apex, was almost absent. The macroscopic MT current in these mutants was attenuated and the tonotopic gradient in amplitude was also lost, although the current was not completely extinguished. The consequences of Lhfpl5 mutation mirror those due to Tmc1 mutation, suggesting a part of the MT-channel conferring a large and tonotopically variable conductance is similarly disrupted in the absence of Lhfpl5 or Tmc1. Immunolabelling demonstrated TMC1 throughout the stereociliary bundles in wild type but not in Lhfpl5 mutants, implying the channel effect of Lhfpl5 mutations stems from down-regulation of TMC1. Both LHFPL5 and TMC1 were shown to interact with protocadherin-15, a component of the tip link, which applies force to the MT channel. We propose that titration of the TMC1 content of the MT channel sets the gradient in unitary conductance along the cochlea. "	"TMIE is an essential component of the mechanotransduction machinery of cochlear hair cells. Hair cells are the mechanosensory cells of the inner ear. Mechanotransduction channels in hair cells are gated by tip links. The molecules that connect tip links to transduction channels are not known. Here we show that the transmembrane protein TMIE forms a ternary complex with the tip-link component PCDH15 and its binding partner TMHS/LHFPL5. Alternative splicing of the PCDH15 cytoplasmic domain regulates formation of this ternary complex. Transducer currents are abolished by a homozygous Tmie-null mutation, and subtle Tmie mutations that disrupt interactions between TMIE and tip links affect transduction, suggesting that TMIE is an essential component of the hair cell's mechanotransduction machinery that functionally couples the tip link to the transduction channel. The multisubunit composition of the transduction complex and the regulation of complex assembly by alternative splicing is likely critical for regulating channel properties in different hair cells and along the cochlea's tonotopic axis. "	"TMHS is an integral component of the mechanotransduction machinery of cochlear hair cells. Hair cells are mechanosensors for the perception of sound, acceleration, and fluid motion. Mechanotransduction channels in hair cells are gated by tip links, which connect the stereocilia of a hair cell in the direction of their mechanical sensitivity. The molecular constituents of the mechanotransduction channels of hair cells are not known. Here, we show that mechanotransduction is impaired in mice lacking the tetraspan TMHS. TMHS binds to the tip-link component PCDH15 and regulates tip-link assembly, a process that is disrupted by deafness-causing Tmhs mutations. TMHS also regulates transducer channel conductance and is required for fast channel adaptation. TMHS therefore resembles other ion channel regulatory subunits such as the transmembrane alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionic acid (AMPA) receptor regulatory proteins (TARPs) of AMPA receptors that facilitate channel transport and regulate the properties of pore-forming channel subunits. We conclude that TMHS is an integral component of the hair cell's mechanotransduction machinery that functionally couples PCDH15 to the transduction channel."	"DFNB66 and DFNB67 loci are non allelic and rarely contribute to autosomal recessive nonsyndromic hearing loss. We previously mapped the DFNB66 locus to an interval overlapping the DFNB67 region. Mutations in the LHFPL5 gene were identified as a cause of DFNB67 hearing loss (HL). However, screening of the coding exons of LHFPL5 did not reveal any mutation in the DFNB66 family. The objective of this study was to check whether DFNB66 and DFNB67 are distinctive loci and determining their contribution to HL. In the DFNB66 family, sequencing showed absence of mutations in the untranslated regions and the predicted promoter sequence of LHFPL5. Analysis of five microsatellites in the 6p21.31-22.3 region and screening of the LHFPL5 gene by DNA heteroduplex analysis in DHPLC revealed a novel mutation (c.89dup) in one out of 129 unrelated Tunisian families with autosomal recessive nonsyndromic (ARNS) HL. Our findings suggest that two distinct genes are responsible for DFNB66 and DFNB67 HL. These loci are likely to be a rare cause of ARNSHL."	"Unique transgenic animal model for hereditary hearing loss. This study capitalizes on the unique molecular and developmental similarities between the auditory organs of Drosophila and mammals, to investigate genes implicated in human syndromic and nonsyndromic hearing loss in a genetically tractable experimental animal model, the fruit fly Drosophila. The Drosophila counterparts of 3 human deafness genes (DIAPH1/DFNA1, ESPN/DFNB36, and TMHS/DF-NB67) were identified by sequence similarity. An electrophysiological assay was used to record sound-evoked potentials in response to an acoustic stimulus, the Drosophila courtship song. Flies with mutations affecting the diaphanous,forked, and CG12026/TMHS genes displayed significant reductions in the amplitude of sound-evoked potentials compared to wild-type flies (p &lt; 0.05 to p &lt; 0.005). The mean responses were reduced from approximately 500 to 600 microV in wild-type flies to approximately 100 to 300 microV in most mutant flies. The identification of significant auditory dysfunction in Drosophila orthologs of human deafness genes will facilitate exploration of the molecular biochemistry of auditory mechanosensation. This may eventually allow for novel diagnostic and therapeutic approaches to human hereditary hearing loss."	"Targeted knockout and lacZ reporter expression of the mouse Tmhs deafness gene and characterization of the hscy-2J mutation. The Tmhs gene codes for a tetraspan transmembrane protein that is expressed in hair cell stereocilia. We previously showed that a spontaneous missense mutation of Tmhs underlies deafness and vestibular dysfunction in the hurry-scurry (hscy) mouse. Subsequently, mutations in the human TMHS gene were shown to be responsible for DFNB67, an autosomal recessive nonsyndromic deafness locus. Here we describe a genetically engineered null mutation of the mouse Tmhs gene (Tmhs ( tm1Kjn )) and show that its phenotype is identical to that of the hscy missense mutation, confirming the deleterious nature of the hscy cysteine-to-phenylalanine substitution. In the targeted null allele, the Tmhs promoter drives expression of a lacZ reporter gene. Visualization of beta-galactosidase activity in Tmhs ( tm1Kjn ) heterozygous mice indicates that Tmhs is highly expressed in the cochlear and vestibular hair cells of the inner ear. Expression is first detectable at E15.5, peaks around P0, decreases slightly at P6, and is absent by P15, a duration that supports the involvement of Tmhs in stereocilia development. Tmhs reporter gene expression also was detected in several cranial and cervical sensory ganglia, but not in the vestibular or spiral ganglia. We also describe a new nontargeted mutation of the Tmhs gene, hscy-2J, that causes abnormal splicing from a cryptic splice site within exon 2 and is predicted to produce a functionally null protein lacking 51 amino acids of the wild-type sequence."	"Mutations in the lipoma HMGIC fusion partner-like 5 (LHFPL5) gene cause autosomal recessive nonsyndromic hearing loss. In two large Turkish consanguineous families, a locus for autosomal recessive nonsyndromic hearing loss (ARNSHL) was mapped to chromosome 6p21.3 by genome-wide linkage analysis in an interval overlapping with the loci DFNB53 (COL11A2), DFNB66, and DFNB67. Fine mapping excluded DFNB53 and subsequently homozygous mutations were identified in the lipoma HMGIC fusion partner-like 5 (LHFPL5) gene, also named tetraspan membrane protein of hair cell stereocilia (TMHS) gene, which was recently shown to be mutated in the &quot;hurry scurry&quot; mouse and in two DFNB67-linked families from Pakistan. In one family, we found a homozygous one-base pair deletion, c.649delG (p.Glu216ArgfsX26) and in the other family we identified a homozygous transition c.494C&gt;T (p.Thr165Met). Further screening of index patients from 96 Turkish ARNSHL families and 90 Dutch ARNSHL patients identified one additional Turkish family carrying the c.649delG mutation. Haplotype analysis revealed that the c.649delG mutation was located on a common haplotype in both families. Mutation screening of the LHFPL5 homologs LHFPL3 and LHFPL4 did not reveal any disease causing mutation. Our findings indicate that LHFPL5 is essential for normal function of the human cochlea."	"Mutations of human TMHS cause recessively inherited non-syndromic hearing loss. Approximately half the cases of prelingual hearing loss are caused by genetic factors. Identification of genes causing deafness is a crucial first step in understanding the normal function of these genes in the auditory system. Recently, a mutant allele of Tmhs was reported to be associated with deafness and circling behaviour in the hurry-scurry mouse. Tmhs encodes a predicted tetraspan protein of unknown function, which is expressed in inner ear hair cells. The human homologue of Tmhs is located on chromosome 6p. To determine the cause of deafness in four consanguineous families segregating recessive deafness linked to markers on chromosome 6p21.1-p22.3 defining a novel DFNB locus. A novel locus for non-syndromic deafness DFNB67 was mapped in an interval of approximately 28.51 cM on human chromosome 6p21.1-p22.3. DNA sequence analysis of TMHS revealed a homozygous frameshift mutation (246delC) and a missense mutation (Y127C) in affected individuals of two families segregating non-syndromic deafness, one of which showed significant evidence of linkage to markers in the DFNB67 interval. The localisation of mTMHS in developing mouse inner ear hair cells was refined and found to be expressed briefly from E16.5 to P3. These findings establish the importance of TMHS for normal sound transduction in humans."	"Molecular genetic analysis of a de novo balanced translocation t(6;17)(p21.31;q11.2) associated with hypospadias and anorectal malformation. We report a young boy with penoscrotal hypospadias, anal atresia (AA) with a recto-urethral fistula, a hypoplastic kidney and a balanced translocation t(6;17)(p21.31;q11.2). Physical mapping of the breakpoints localized the chromosome 6 breakpoint within an intron of the gene lipoma HMGIC fusion partner-like 5 (LHFPL5) whereas the chromosome 17 breakpoint was mapped to the first intron of the 182-FIP gene encoding the Fragile X Mental Retardation Protein Interacting Protein. Sequence analysis across the breakpoints revealed an almost perfectly balanced translocation with a 2 bp deletion on the derivative chromosome 6 and a 7 bp duplication on the derivative chromosome 17. We identified a fusion transcript consisting of the first exon of 182-FIP and the last exon of LHFPL5 in patient-derived cells. Quantitative expression analysis of the genes flanking the breakpoints, revealed increased transcript levels for SFRS protein kinase 1 (SRPK1) and TAO kinase 1 (TAOK1) which suggests a positional effect due to the translocation. We hypothesize that the urogenital and anorectal malformations in the patient result from one or several mechanisms including disruption of the genes 182-FIP and LHFPL5, altered expression of the genes flanking the translocation breakpoints and, a gain of function mechanism mediated by the 182-FIP-LHFPL5 fusion transcript."	"A missense mutation in the previously undescribed gene Tmhs underlies deafness in hurry-scurry (hscy) mice. Mouse deafness mutations provide valuable models of human hearing disorders and entry points into molecular pathways important to the hearing process. A newly discovered mouse mutation named hurry-scurry (hscy) causes deafness and vestibular dysfunction. Scanning electron microscopy of cochleae from 8-day-old mutants revealed disorganized hair bundles, and by 50 days of age, many hair cells are missing. To positionally clone hscy, 1,160 F(2) mice were produced from an intercross of (C57BL/6-hscy x CAST/EiJ) F(1) hybrids, and the mutation was localized to a 182-kb region of chromosome 17. A missense mutation causing a critical cysteine to phenylalanine codon change was discovered in a previously undescribed gene within this candidate interval. The gene is predicted to encode an integral membrane protein with four transmembrane helices. A synthetic peptide designed from the predicted protein was used to produce specific polyclonal antibodies, and strong immunoreactivity was observed on hair bundles of both inner and outer hair cells in cochleae of newborn +/+ controls and +/hscy heterozygotes but was absent in hscy/hscy mutants. Accordingly, the gene was given the name &quot;tetraspan membrane protein of hair cell stereocilia,&quot; symbol Tmhs. Two related proteins (&gt;60% amino acid identity) are encoded by genes on mouse chromosomes 5 and 6 and, together with the Tmhs-encoded protein (TMHS), comprise a distinct tetraspan subfamily. Our localization of TMHS to the apical membrane of inner ear hair cells during the period of stereocilia formation suggests a function in hair bundle morphogenesis."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"LOXHD1"	"nonsyndromic genetic deafness"	"Whole exome sequencing identified mutations causing hearing loss in five consanguineous Pakistani families. Hearing loss is the most common sensory defect, and it affects over 6% of the population worldwide. Approximately 50-60% of hearing loss patients are attributed to genetic causes. Currently, more than 100 genes have been reported to cause non-syndromic hearing loss. It is possible and efficient to screen all potential disease-causing genes for hereditary hearing loss by whole exome sequencing (WES). We collected 5 consanguineous pedigrees from Pakistan with hearing loss and applied WES in selected patients for each pedigree, followed by bioinformatics analysis and Sanger validation to identify the causal genes. Variants in 7 genes were identified and validated in these pedigrees. We identified single candidate variant for 3 pedigrees: GIPC3 (c.937 T &gt; C), LOXHD1 (c.6136G &gt; A) and TMPRSS3 (c.941 T &gt; C). The remaining 2 pedigrees each contained two candidate variants: TECTA (c.4045G &gt; A) and MYO15A (c.3310G &gt; T and c.9913G &gt; C) for one pedigree and DFNB59 (c.494G &gt; A) and TRIOBP (c.1952C &gt; T) for the other pedigree. The candidate variants were validated in all available samples by Sanger sequencing. The candidate variants in hearing-loss genes were validated to be co-segregated in the pedigrees, and they may indicate the aetiologies of hearing loss in such patients. We also suggest that WES may be a suitable strategy for hearing-loss gene screening in clinical detection."	"The mutation frequencies of GJB2, GJB3, SLC26A4 and MT-RNR1 of patients with severe to profound sensorineural hearing loss in northwest China. To expose the spectrum and frequency of GJB2, GJB3, SLC26A4 and MT-RNR1 in northwest China and to investigate the underlying causative genes in patients without common mutations. We analyzed the mutation screening results of GJB2, GJB3, SLC26A4 and MT-RNR1 in 398 unrelated severe-to-profound probands with bilateral, symmetrical sensorineural hearing loss. Subsequently, we selected 10 probands with a significant family history of inherited hearing loss (HL) that did not have the above four common gene mutations to perform next-generation sequencing (NGS) of 139 known deafness genes, followed by co-segregation analysis of all available family members. Among the 398 patients, 69 (17.34%) had the biallelic GJB2 gene mutations, and the most common mutations were c.235delC, c.109G&gt;A and c.299_300delAT, with allele frequencies of 12.31%, 3.38% and 3.89%, respectively. A total of 63 (15.83%) cases with biallelic SLC26A4 mutations were detected, and the most common pathogenic alleles were c.919-2A&gt;G, c.2168A&gt;G and c.1174A&gt;T, with allele frequencies of 9.17%, 2.26% and 0.88%, respectively. Mitochondrial gene mutations were detected in 9 (2.26%) patients, with 5 cases of mitochondrial DNA (mtDNA) m.1555A&gt;G mutation and 4 cases of mtDNA m.1095T&gt;C mutation. In 10 probands with a clear family history of HL, NGS showed two novel pathogenic variants in 2 families, including c.4129C&gt;T/c.3268C&gt;T in LOXHD1, c.334G&gt;A/c.2968G&gt;T in CDH23. Sanger sequencing confirmed that these variants segregated with the HL in each family. Our results showed that GJB2 and SLC26A4 were the two major HL-causing genes in northwest China. The most common mutation alleles in GJB2 were c.235delC, c.109G&gt;A and c.299_300delAT, and those in SLC26A4 were c.919-2A&gt;G, c.2168A&gt;G and c.1174A&gt;T. In addition, both genes and their loci can be used as the first selection of deafness gene screening. Additionally, for patients who did not have mutations of these common genes, NGS provided an efficient diagnosis for increasing known deafness genes."	"Five Novel Mutations in LOXHD1 Gene Were Identified to Cause Autosomal Recessive Nonsyndromic Hearing Loss in Four Chinese Families. Hearing loss is one of the most common sensory disorders in newborns and is mostly caused by genetic factors. Autosomal recessive nonsyndromic hearing loss (ARNSHL) is usually characterized as a severe-to-profound congenital sensorineural hearing loss and later can cause various degrees of defect in the language and intelligent development of newborns. The mutations in LOXHD1 gene have been shown to cause DFNB77, a type of ARNSHL. To date, there are limited reports about the association between LOXHD1 gene and ARNSHL. In this study, we reported six patients from four Chinese families suffering from severe-to-profound nonsyndromic hearing loss. We performed targeted next generation sequencing in the six affected members and identified five novel pathogenic mutations in LOXHD1 including c.277G&gt;A (p.D93N), c.611-2A&gt;T, c.1255+3A&gt;G, c.2329C&gt;T (p.Q777 <sup> ∗ </sup> ), and c.5888delG (p.G1963Afs <sup> ∗ </sup> 136). These mutations were confirmed to be cosegregated with the hearing impairment in the families by Sanger sequencing and were inherited in an autosomal recessive pattern. All of the five mutations were absent in 200 control subjects. There were no symptoms of Fuchs corneal dystrophy in the probands and their blood-related relatives. We concluded that these five novel mutations could be involved in the underlying mechanism resulting in the hearing loss, and this discovery expands the genotypic spectrum of LOXHD1 mutations."	"A novel LOXHD1 variant in a Chinese couple with hearing loss. NA"	"Mutational Spectrum and Clinical Features of Patients with LOXHD1 Variants Identified in an 8074 Hearing Loss Patient Cohort. Variants of the LOXHD1 gene, which are expressed in hair cells of the cochlea and vestibule, have been reported to cause a progressive form of autosomal recessive non-syndromic hereditary hearing loss, DFNB77. In this study, genetic screening was conducted on 8074 Japanese hearing loss patients utilizing massively parallel DNA sequencing to identify individuals with LOXHD1 variants and to assess their phenotypes. A total of 28 affected individuals and 21 LOXHD1 variants were identified, among which 13 were novel variants. A recurrent variant c.4212 + 1G &gt; A, only reported in Japanese patients, was detected in 18 individuals. Haplotype analysis implied that this variation occurred in a mutational hot spot, and that multiple ancestors of Japanese population had this variation. Patients with LOXHD1 variations mostly showed early onset hearing loss and presented different progression rates. We speculated that the varying severities and progression rates of hearing loss are the result of environmental and/or other genetic factors. No accompanying symptoms, including vestibular dysfunction, with hearing loss were detected in this study. Few studies have reported the clinical features of LOXHD1-gene associated hearing loss, and this study is by far the largest study focused on the evaluation of this gene."	"Association of rs613872 and Trinucleotide Repeat Expansion in the TCF4 Gene of German Patients With Fuchs Endothelial Corneal Dystrophy. To investigate single nucleotide polymorphisms (SNPs) and trinucleotide repeat (TNR) expansion in the transcription factor 4 (TCF4) gene in a large cohort of German patients with Fuchs endothelial corneal dystrophy (FECD). Genomic DNA was obtained from 398 patients with FECD and from 58 non-FECD controls. Thirty-seven previously reported SNPs were evaluated by genotyping. The 398 FECD samples were analyzed for TNR expansions by short tandem repeat assays and Southern blotting. The possible associations between the TNR length and clinical parameters (age, sex, visual acuity, and central corneal thickness) were analyzed in 132 patients. The SNPs in COL8A2, TCF8, LOXHD1, and AGBL1 showed no heterogeneity in 36 cases, although SLCA411 showed 3 nonsense mutations. SNPs were detected for TCF4 (rs613872, rs2123392, rs17089887, rs1452787, and rs1348047), but only rs613872 showed a significant association with FECD (P = 9.93 × 10). Overall, 315/398 (79%) patients harbored TNR lengths &gt;50, whereas no non-FECD controls harbored TNR lengths &gt;50. The TCF4 SNP rs613872 genotype was TT: 39 (67%), TG: 18 (31%), and GG: 1 (2%) in non-FECD controls; TT: 39 (47%), TG: 38 (46%), and GG: 6 (7%) in FECD cases harboring TNR &lt;50; and TT: 23 (8%), TG: 224 (79%), and GG: 38 (13%) in FECD cases harboring TNR &gt;50 (P = 2.93 × 10). No significant association was detected between the TNR length and clinical parameters. Our large German cohort demonstrated a significant association between the risk allele G in rs613872 and FECD, irrespective of TNR expansion, although this risk allele was more frequent in FECD cases with TNR expansion than without."	"Whole-exome sequencing identifies a novel missense variant within LOXHD1 causing rare hearing loss in a Chinese family. Deafness, autosomal recessive 77 (DFNB77) is a rare non-syndromic hearing loss (NSHL) worldwide, which is caused by deleterious variants within lipoxygenase homology domains 1 (LOXHD1). Here we identified that a novel missense variant of LOXHD1 was associated with NSHL in a Chinese family under consanguineous marriage. A 28-year-old woman suffered a bilateral profound NSHL. Impedance audiometry, temporal bone computerized tomography (TBCT) scans and magnetic resonance imaging-inner ear hydrography (MRI-IEH) did not find any obvious abnormality of middle or inner ear. Routine genetic detection did not find pathogenic variants in common HL-associated genes. Therefore, we performed a whole-exome sequencing (WES) in this family. By trio-WES, co-segregation validation and bioinformatics analysis, we revealed that a novel homozygous variant in this patient, LOXHD1: c.5948C &gt; T (p.S1983F), might be the pathogenic factor. Her parents (heterozygotes) and brother (wild-type) were asymptomatic. We successfully identified a novel variant of LOXHD1 associated with a rare NSHL from a Chinese family. Our finds highlight the effectiveness of trio-WES for molecular diagnosis of rare NHSL, and expand the genotypic spectrum of DFNB77."	"Genomic Studies in a Large Cohort of Hearing Impaired Italian Patients Revealed Several New Alleles, a Rare Case of Uniparental Disomy (UPD) and the Importance to Search for Copy Number Variations. Hereditary hearing loss (HHL) is a common disorder characterized by a huge genetic heterogeneity. The definition of a correct molecular diagnosis is essential for proper genetic counseling, recurrence risk estimation, and therapeutic options. From 20 to 40% of patients carry mutations in GJB2 gene, thus, in more than half of cases it is necessary to look for causative variants in the other genes so far identified (~100). In this light, the use of next-generation sequencing technologies has proved to be the best solution for mutational screening, even though it is not always conclusive. Here we describe a combined approach, based on targeted re-sequencing (TRS) of 96 HHL genes followed by high-density SNP arrays, aimed at the identification of the molecular causes of non-syndromic HHL (NSHL). This strategy has been applied to study 103 Italian unrelated cases, negative for mutations in GJB2, and led to the characterization of 31% of them (i.e., 37% of familial and 26.3% of sporadic cases). In particular, TRS revealed TECTA and ACTG1 genes as major players in the Italian population. Furthermore, two de novo missense variants in ACTG1 have been identified and investigated through protein modeling and molecular dynamics simulations, confirming their likely pathogenic effect. Among the selected patients analyzed by SNP arrays (negative to TRS, or with a single variant in a recessive gene) a molecular diagnosis was reached in ~36% of cases, highlighting the importance to look for large insertions/deletions. Moreover, copy number variants analysis led to the identification of the first case of uniparental disomy involving LOXHD1 gene. Overall, taking into account the contribution of GJB2, plus the results from TRS and SNP arrays, it was possible to reach a molecular diagnosis in ~51% of NSHL cases. These data proved the usefulness of a combined approach for the analysis of NSHL and for the definition of the epidemiological picture of HHL in the Italian population."	"CTG18.1 Expansion is the Best Classifier of Late-Onset Fuchs' Corneal Dystrophy Among 10 Biomarkers in a Cohort From the European Part of Russia. To assess the occurrence and diagnostic performance of nine single-nucleotide variants (SNVs) in the TCF4, SLC4A11, LOXHD1, and AGBL1 genes and the CTG18.1 trinucleotide repeat expansion in a Russian cohort of Fuchs' endothelial corneal dystrophy (FECD) patients. This retrospective case-control study included 100 patients diagnosed with FECD (cases) and 100 patients with cataracts (controls). Blood DNA was used to perform PCR and subsequent Sanger sequencing of rs613872 and rs17595731 in TCF4, c.99-100delTC, rs267607065, rs267607064, and rs267607066 in SLC4A11, rs113444922 in LOXHD1, and rs181958589 and rs185919705 in AGBL1. The number of CTG18.1 trinucleotide repeats was determined by a combination of conventional PCR or triplet primed PCR with fragment analysis. At least one rs613872 marker allele was found in 78% of FECD patients and 21% of controls, and at least one rs17595731 marker allele was found in 14% and 2%, respectively. CTG18.1 trinucleotide expansion (&gt;40 repeats) was detected in 72% of FECD patients and 5% of controls. Marker alleles of the tested SNVs in SLC4A11, LOXHD1, and rs185919705 in AGBL1 were not found in our FECD cohort. One FECD patient carried the marker allele of the rs181958589 SNV. Analysis of the diagnostic performance of individual markers in TCF4 and their combinations showed that the CTG18.1 repeat expansion was the best classifier for FECD (AUC = 0.84). Patients carrying CTG18.1 repeat expansion constituted a high proportion of the Russian FECD cohort; therefore, this marker is suitable for development of diagnostic and therapeutic approaches."	"Genetics of hearing loss in the Arab population of Northern Israel. For multiple generations, much of the Arab population of Northern Israel has lived in communities with consanguineous marriages and large families. These communities have been particularly cooperative and informative for understanding the genetics of recessive traits. We studied the genetics of hearing loss in this population, evaluating 168 families from 46 different villages. All families were screened for founder variants by Sanger sequencing and 13 families were further evaluated by sequencing all known genes for hearing loss using our targeted gene panel HEar-Seq. Deafness in 34 of 168 families (20%) was explained by founder variants in GJB2, SLC26A4, or OTOF. In 6 of 13 families (46%) evaluated using HEar-Seq, deafness was explained by damaging alleles of SLC26A4, MYO15A, OTOG, LOXHD1, and TBC1D24. In some genes critical to hearing, it is particularly difficult to interpret variants that might affect splicing, because the genes are not expressed in accessible tissue. To address this problem for possible splice-altering variants of MYO15A, we evaluated minigenes transfected into HEK293 cells. Results revealed exon skipping in the message of MYO15A c.9083+6T&gt;A, and intron retention in the message of MYO15A c.8340G&gt;A, in each case leading to a premature stop and consistent with co-segregation of homozygosity for each variant with hearing loss. The profile of genetics of hearing loss in this population reflects the genetic heterogeneity of hearing loss and the usefulness of synthetic technologies to evaluate potentially causal variants in genes not expressed in accessible tissues."	"Genetic Etiology Study of Ten Chinese Families with Nonsyndromic Hearing Loss. Nonsyndromic hearing loss has been shown to have high genetic heterogeneity. In this report, we aimed to disclose the genetic causes of the subjects from the ten Chinese deaf families who did not have pathogenic common genes/mutation. Next-generation sequencing (NGS) of 142 known deafness genes was performed in the probands of ten families followed by cosegregation analysis of all family members. We identified novel pathogenic variants in six families including p.D1806E/p.R1588W, p.R964W/p.R1588W, and p.G17C/p.G1449D in CDH23; p.T584M/p.D1939N in LOXHD1; p.P1225L in MYO7A; and p.K612X in EYA4. Sanger sequencing confirmed that these mutations segregated with the hearing loss of each family. In four families, no pathogenic variants were identified. Our study provided better understanding of the mutation spectrum of hearing loss in the Chinese population."	"Analysis of candidate genes ZEB1 and LOXHD1 in late-onset Fuchs' endothelial corneal dystrophy in an Indian cohort. Fuchs' endothelial corneal dystrophy (FECD) is a complex degenerative disease of the corneal endothelium with genetic predisposition. Pathogenic rare variants have been identified in SLC4A11, LOXHD1, ZEB1, and AGBL1. Association of single nucleotide polymorphisms (SNPs) and CTG trinucleotide repeat expansions in the intron of TCF4 gene to FECD has been studied across multiple ethnicities. Recently, genome-wide association studies have also identified KANK4, LAMC1, and ATP1B1 as novel loci for FECD. Here, we report the contribution of ZEB1 and LOXHD1 genes in our sporadic late-onset FECD cohort. In the experimental study, coding regions of ZEB1 and LOXHD1 were screened by Sanger DNA sequencing in 52 late-onset and 5 early-onset FECD cases of Indian origin, recruited at a tertiary eye care center. Further, bioinformatics analysis was done. One reported missense mutation, c.2522A&gt;C; p.(Q841P), and one variant of uncertain significance (VUS), c.619A&gt;G; p.(S207G), were identified in the ZEB1 gene. One VUS, c.6413G&gt;Ap.(R2138Q), was observed in LOXHD1. A 3D structural bioinformatic analysis of the missense variant in LOXHD1 predicted the variant to affect the structure-function relationship of the protein. While mutations in ZEB1 contributed to 2% of the late-onset FECD cases, the exact role of the two VUS identified in ZEB1 and LOXHD1 in FECD pathogenesis needs to be studied."	"Further audiovestibular characterization of DFNB77, caused by deleterious variants in LOXHD1, and investigation into the involvement of Fuchs corneal dystrophy. This study focuses on further characterization of the audiovestibular phenotype and on genotype-phenotype correlations of DFNB77, an autosomal recessive type of hearing impairment (HI). DFNB77 is associated with disease-causing variants in LOXHD1, and is genetically and phenotypically highly heterogeneous. Heterozygous deleterious missense variants in LOXHD1 have been associated with late-onset Fuchs corneal dystrophy (FCD). However, up to now screening for FCD of heterozygous carriers in DFNB77 families has not been reported. This study describes the genotype and audiovestibular phenotype of 9 families with DFNB77. In addition, carriers within the families were screened for FCD. Fifteen pathogenic missense and truncating variants were identified, of which 12 were novel. The hearing phenotype showed high inter- and intrafamilial variation in severity and progression. There was no evidence for involvement of the vestibular system. None of the carriers showed (pre-clinical) symptoms of FCD. Our findings expand the genotypic and phenotypic spectrum of DFNB77, but a clear correlation between the type or location of the variant and the severity or progression of HI could not be established. We hypothesize that environmental factors or genetic modifiers are responsible for phenotypic differences. No association was found between heterozygous LOXHD1 variants and the occurrence of FCD in carriers."	"Comprehensive molecular biomarker identification in breast cancer brain metastases. Breast cancer brain metastases (BCBM) develop in about 20-30% of breast cancer (BC) patients. BCBM are associated with dismal prognosis not at least due to lack of valuable molecular therapeutic targets. The aim of the study was to identify new molecular biomarkers and targets in BCBM by using complementary state-of-the-art techniques. We compared array expression profiles of three BCBM with 16 non-brain metastatic BC and 16 primary brain tumors (prBT) using a false discovery rate (FDR) p &lt; 0.05 and fold change (FC) &gt; 2. Biofunctional analysis was conducted on the differentially expressed probe sets. High-density arrays were employed to detect copy number variations (CNVs) and whole exome sequencing (WES) with paired-end reads of 150 bp was utilized to detect gene mutations in the three BCBM. The top 370 probe sets that were differentially expressed between BCBM and both BC and prBT were in the majority comparably overexpressed in BCBM and included, e.g. the coding genes BCL3, BNIP3, BNIP3P1, BRIP1, CASP14, CDC25A, DMBT1, IDH2, E2F1, MYCN, RAD51, RAD54L, and VDR. A number of small nucleolar RNAs (snoRNAs) were comparably overexpressed in BCBM and included SNORA1, SNORA2A, SNORA9, SNORA10, SNORA22, SNORA24, SNORA30, SNORA37, SNORA38, SNORA52, SNORA71A, SNORA71B, SNORA71C, SNORD13P2, SNORD15A, SNORD34, SNORD35A, SNORD41, SNORD53, and SCARNA22. The top canonical pathway was entitled, role of BRCA1 in DNA damage response. Network analysis revealed key nodes as Akt, ERK1/2, NFkB, and Ras in a predicted activation stage. Downregulated genes in a data set that was shared between BCBM and prBT comprised, e.g. BC cell line invasion markers JUN, MMP3, TFF1, and HAS2. Important cancer genes affected by CNVs included TP53, BRCA1, BRCA2, ERBB2, IDH1, and IDH2. WES detected numerous mutations, some of which affecting BC associated genes as CDH1, HEPACAM, and LOXHD1. Using complementary molecular genetic techniques, this study identified shared and unshared molecular events in three highly aberrant BCBM emphasizing the challenge to detect new molecular biomarkers and targets with translational implications. Among new findings with the capacity to gain clinical relevance is the detection of overexpressed snoRNAs known to regulate some critical cellular functions as ribosome biogenesis."	"STRC Deletion is a Frequent Cause of Slight to Moderate Congenital Hearing Impairment in the Czech Republic. This study aimed to clarify the molecular epidemiology of hearing loss by identifying the responsible genes in patients without GJB2 mutations. Prospective genetic study. Tertiary referral hospital. Fifty one patients with bilateral sensorineural hearing loss, 20 men, and 31 women, mean age 24.9 years, range 3 to 64 years, from 49 families. GJB2 and deltaGJB6-D13S1830 mutations were excluded previously. Diagnostic. Sixty-nine genes reported to be causative of hearing loss were analyzed. Sequence capture technology, next-generation sequencing, and multiplex ligation-dependent probe amplification (MLPA) were used. Coverage of STRC was screened in Integrative Genomics Viewer software. Identification of causal pathogenic mutations in genes related to deafness. Five families (10%) had recessive STRC deletions or mutations. Five unrelated patients (10%) had recessive mutations in TMPRSS3, USH2A, PCDH15, LOXHD1, and MYO15A. Three families (6%) had autosomal dominant mutations in MYO6A, KCNQ4, and SIX1. One family (2%) had an X-linked POU3F4 mutation. Thus, we identified the cause of hearing loss in 28% of the families studied. Following GJB2, STRC was the second most frequently mutated gene in patients from the Czech Republic with hearing loss. To decrease the cost of testing, we recommend STRC deletion screening with MLPA before next-generation sequencing. The existence of a pseudogene and polymorphic STRC regions can lead to false-positive or false-negative results when copy number variation analysis is based on next-generation sequencing data."	"Carrier re-sequencing reveals rare but benign variants in recessive deafness genes. For recessive Mendelian disorders, determining the pathogenicity of rare, non-synonymous variants in known causative genes can be challenging without expanded pedigrees and/or functional analysis. In this study, we proposed to establish a database of rare but benign variants in recessive deafness genes by systematic carrier re-sequencing. As a pilot study, 30 heterozygous carriers of pathogenic variants for deafness were identified from unaffected family members of 18 deaf probands. The entire coding regions of the corresponding genes were re-sequenced in those carriers by targeted next-generation sequencing or Sanger sequencing. A total of 32 non-synonymous variants were identified in the normal-hearing carriers in trans with the pathogenic variant and therefore were classified as benign. Among them were five rare (minor allele frequencies less than 0.005) variants that had previously undefined, disputable or even misclassified function: p.A434T (c.1300 G &gt; A) in SLC26A4, p.R266Q (c.797 G &gt; A) in LOXHD1, p.K96Q (c.286 A &gt; C) in MYO15A, p.T123N (c.368 C &gt; A) in GJB2 and p.V1299I (c.797 G &gt; A) in CDH23. Our results suggested that large scale carrier re-sequencing may be warranted to establish a database of rare but benign variants in causative genes in order to reduce false positive genetic diagnosis of recessive Mendelian disorders."	"Independent Maternal and Fetal Genetic Effects on Midgestational Circulating Levels of Environmental Pollutants. Maternal exposure to environmental pollutants could affect fetal brain development and increase autism spectrum disorder (ASD) risk in conjunction with differential genetic susceptibility. Organohalogen congeners measured in maternal midpregnancy blood samples have recently shown significant, but negative associations with offspring ASD outcome. We report the first large-scale maternal and fetal genetic study of the midpregnancy serum levels of a set of 21 organohalogens in a subset of 790 genotyped women and 764 children collected in California by the Early Markers for Autism (EMA) Project. Levels of PCB (polychlorinated biphenyl) and PBDE (polybrominated diphenyl ether) congeners showed high maternal and fetal estimated SNP-based heritability (h<sup>2</sup> g  ) accounting for 39-99% of the total variance. Genome-wide association analyses identified significant maternal loci for p,p'-DDE (P = 7.8 × 10<sup>-11</sup>) in the CYP2B6 gene and for BDE-28 (P = 3.2 × 10<sup>-8</sup>) near the SH3GL2 gene, both involved in xenobiotic and lipid metabolism. Fetal genetic loci contributed to the levels of BDE-100 (P = 4.6 × 10<sup>-8</sup>) and PCB187 (P = 2.8 × 10<sup>-8</sup>), near the potential metabolic genes LOXHD1 and PTPRD, previously implicated in neurodevelopment. Negative associations were observed for BDE-100, BDE153, and the sum of PBDEs with ASD, partly explained by genome-wide additive genetic effects that predicted PBDE levels. Our results support genetic control of midgestational biomarkers for environmental exposures by nonoverlapping maternal and fetal genetic determinants, suggesting that future studies of environmental risk factors should take genetic variation into consideration. The independent influence of fetal genetics supports previous hypotheses that fetal genotypes expressed in placenta can influence maternal physiology and the transplacental transfer of organohalogens."	"Fine-Mapping of 18q21.1 Locus Identifies Single Nucleotide Polymorphisms Associated with Nonsyndromic Cleft Lip with or without Cleft Palate. Nonsyndromic cleft lip with or without cleft palate (NSCL/P) is one of the most common congenital birth defects. NSCL/P is a complex multifactorial disease caused by interactions between multiple environmental and genetic factors. However, the causal single nucleotide polymorphism (SNP) signature profile underlying the risk of familial NSCL/P still remains unknown. We previously reported a 5.7-Mb genomic region on chromosome 18q21.1 locus that potentially contributes to autosomal dominant, low-penetrance inheritance of NSCL/P. In the current study, we performed exome sequencing on 12 familial genomes (six affected individuals, two obligate carriers, and four seemingly unaffected individuals) of a six-generation family to identify candidate SNPs associated with NSCL/P risk. Subsequently, targeted bidirectional DNA re-sequencing of polymerase chain reaction (PCR)-amplified high-risk regions of MYO5B gene and sequenom iPLEX genotpying of 29 candidate SNPs were performed on a larger set of 33 members of this NSCL/P family (10 affected + 4 obligate carriers + 19 unaffected relatives) to find SNPs significantly associated with NSCL/P trait. SNP vs. NSCL/P association analysis showed the MYO5B SNP rs183559995 GA genotype had an odds ratio of 18.09 (95% Confidence Interval = 1.86-176.34; gender-adjusted P = 0.0019) compared to the reference GG genotype. Additionally, the following SNPs were also found significantly associated with NSCL/P risk: rs1450425 (LOXHD1), rs6507992 (SKA1), rs78950893 (SMAD7), rs8097060, rs17713847 (SCARNA17), rs6507872 (CTIF), rs8091995 (CTIF), and rs17715416 (MYO5B). We could thus identify mutations in several genes as key candidate SNPs associated with the risk of NSCL/P in this large multi-generation family. "	"Analysis of SLC4A11, ZEB1, LOXHD1, COL8A2 and TCF4 gene sequences in a multi-generational family with late-onset Fuchs corneal dystrophy. The aim of the present study was to determine the genetic basis of a multi-generational family with late-onset (LO) Fuchs corneal dystrophy (FCD). Five FCD causal genes [solute carrier family 4, sodium borate transporter, member 11 (SLC4A11), zinc finger E-box binding homeobox 1 (ZEB1), lipoxygenase homology domains 1 (LOXHD1), collagen, type VIII, alpha 2 (COL8A2) and transcription factor 4 (TCF4)], previously reported to be implicated in the pathogenesis of FCD, were screened. A total of 27 variants [including 22 known single nucleotide polymorphisms (SNPs) from the Single Nucleotide Polymorphism Database (dbSNP) and 5 variants absent from dbSNP] were detected in this FCD pedigree across the SLC4A11, ZEB1, LOXHD1 and COL8A2 genes as follows: i) 22 known SNPs from dbSNP, including 3 coding (p.R161R, p.S213S and p.T833T) and 11 non-coding variants of SLC4A11, 2 intronic SNPs of ZEB1 from dbSNP (rs220057 and rs220060), 1 intronic SNP of LOXHD1 from dbSNP (rs16939650), and 5 SNPs of COL8A2 from dbSNP (p.A35A, p.R155Q, p.L335L, p.G495G and p.T502M); and ii) 5 variants that have not been previously reported in FCD patients and that are absent from dbSNP were identified across the ZEB1 and LOXHD1 genes; these included 3 continuous indels located at the junction of the 5'-UTR and the adjacent exon 1 of ZEB1 [Indel 1 (c.-86_-53delins gggaggggtggaggcggaggggtGGGGGGGAAGG); Indel 2 (c.-52_-46delinsGGGAGGG); and Indel 3 (c.-45_-42delinsAGGG)], and 2 intronic variants of LOXHD1 (c.5332-126C&gt;T and c.1809+155G&gt;A). Apart from one intronic SNP of SLC4A11 from dbSNP (rs372201212), the pathologic consequence of which is uncertain, and 2 intron variants of LOXHD1 (c.5332-126C&gt;T and c.1809+155G&gt;A); the variants likely represent examples of de novo mutations. Neither of the other 24 variants provided strong evidence of pathogenesis in this FCD pedigree. An analysis of 7 SNPs in TCF4 from dbSNP, which have been associated with LO FCD in different populations, revealed that these 7 SNPs were not associated with FCD in this specific pedigree. A genome‑wide linkage scan to search for linkage to one of the previously described FCD loci or to identify a novel locus for FCD will need to be performed in this FCD pedigree. Our observation, nevertheless, expands the knowledge of the genetic status of patients with FCD. "	"Clinical characteristics of a Japanese family with hearing loss accompanied by compound heterozygous mutations in LOXHD1. To report two novel LOXHD1 mutations, including missense mutations and the clinical features of the patients. We studied a three-generation Japanese family with hearing loss. Targeted next-generation sequencing was used for genetic analysis. Conditional orientation response audiometry and pure tone audiometry were used to assess hearing. SWISS-MODEL was used for molecular modeling of the PLAT domain in LOXHD1 protein. The two sisters, who had either mild or severe high-frequency hearing loss, were compound heterozygous for two novel mutations (c.5674G&gt;T [p.V1892F] and c.4212+1G&gt;A) in LOXHD1, which is responsible for autosomal-recessive nonsyndromic hearing loss DFNB77. These cases showed less severe hearing impairment than the previously reported cases carrying LOXHD1 mutations, but their hearing loss appeared to be progressive. Molecular modeling predicted that distorted structure of the PLAT domain in the p.V1892F mutant could lead to decreased affinity of the protein to lipid membrane resulting in hair cell dysfunction. We report a Japanese family carrying compound heterozygotes of truncating and nontruncating mutations in LOXHD1 identified by targeted NGS analysis. The fact of lower degree of hearing impairment in our cases than previously reported and the molecular modeling of the missense mutant provide insight to the genotype-phenotype correlation of DFNB77."	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"Transcriptomic Analysis of Cultured Corneal Endothelial Cells as a Validation for Their Use in Cell Replacement Therapy. The corneal endothelium plays a primary role in maintaining corneal homeostasis and clarity and must be surgically replaced with allogenic donor corneal endothelium in the event of visually significant dysfunction. However, a worldwide shortage of donor corneal tissue has led to a search for alternative sources of transplantable tissue. Cultured human corneal endothelial cells (HCEnC) have been shown to restore corneal clarity in experimental models of corneal endothelial dysfunction in animal models, but characterization of cultured HCEnC remains incomplete. To this end, we utilized next-generation RNA sequencing technology to compare the transcriptomic profile of ex vivo human corneal endothelial cells (evHCEnC) with that of primary HCEnC (pHCEnC) and HCEnC lines and to determine the utility of cultured and immortalized corneal endothelial cells as models of in vivo corneal endothelium. Multidimensional analyses of the transcriptome data sets demonstrated that primary HCEnC have a closer relationship to evHCEnC than do immortalized HCEnC. Subsequent analyses showed that the majority of the genes specifically expressed in HCEnC (not expressed in ex vivo corneal epithelium or fibroblasts) demonstrated a marked variability of expression in cultured cells compared with evHCEnC. In addition, genes associated with either corneal endothelial cell function or corneal endothelial dystrophies were investigated. Significant differences in gene expression and protein levels were observed in the cultured cells compared with evHCEnC for each of the genes tested except for AGBL1 and LOXHD1, which were not detected by RNA-seq or qPCR. Our transcriptomic analysis suggests that at a molecular level pHCEnC most closely resemble evHCEnC and thus represent the most viable cell culture-based therapeutic option for managing corneal endothelial cell dysfunction. Our findings also suggest that investigators should perform an assessment of the entire transcriptome of cultured HCEnC prior to determination of their potential clinical utility for the management of corneal endothelial cell failure."	"Fuchs Corneal Dystrophy. Fuchs corneal dystrophy (FCD) is a hereditary, progressive disease of the posterior cornea which results in excrescences of Descemet membrane, endothelial cell loss, corneal edema, and, in late stages, bullous keratopathy. Structural changes are noted principally in Descemet membrane and the endothelium, with thickening of Descemet membrane, loss of barrier function, and increased corneal hydration, although secondary effects occur throughout all layers. Multiple chromosomal loci and, more recently, causal genetic mutations have been identified for this complex disorder, including in TCF8, SLC4A11, LOXHD1, and AGBL1. A trinucleotide repeat in TCF4 correlates strongly with disease status and interacts in common pathways with previously identified genes. Dysregulation of pathways involving oxidative stress and apoptosis, epithelial-to-mesenchymal transition, microRNA, mitochondrial genes, and unfolded protein response has been implicated in FCD pathogenesis. "	"[TGC Repeats in Intron 2 of the TCF4 Gene have a Good Predictive Power Regarding to Fuchs Endothelial Corneal Dystrophy]. Fuchs endothelial corneal dystrophy (FECD) is one of the most common indications for corneal transplants. FECD is associated with various genes, e.g., COL8A2 or SLC4A11. Among other things a TGC trinucleotide repeat expansion in intron 2 of the TCF4 gene has been characterised in FECD patients and the allele G of the polymorphism rs613872 in intron 3 of the same gene has been associated with this disease. Our intention was to investigate sources in molecular genetics in the German population and to calculate the odds ratio as indicator for the chance to suffer from FECD. 42 unrelated FECD patients, 93 unrelated controls and 17 members of a family with four FECD affected patients have been examined for the described changes in the TCF4 gene. After amplification of the TGC repeats with specific PCR the obtained products were electrophoretically divided according to their length and investigated with a triplet-primed PCR. Polymorphism rs613872 was analysed by Sanger sequencing. All coding exons of the adjacent genes TCF4 and LOXHD1 were sequenced in six patients in order to exclude potential disease associated mutations. 33 out of 42 unrelated analysed patients (79 %) had a TGC repeat expansion (&gt; 50 TGC repeats) in intron 2 of the TCF4 gene. Out of 93 controls only 10 (10.8 %) showed an expanded allele. In the family the four diseased and four healthy subjects of the 17 examined family members had an expanded allele. Analysis of the polymorphism rs613872 in intron 3 of the TCF4 gene exhibited 33 of 42 unrelated patients (78.6 %) heterozygous TG and four homozygous GG (9.5 %). 65 of 93 controls were homozygous TT (69.9 %) and only 21 heterozygous TG (22.6 %). Of the 17 family members nine had the genotype TG, including the four FECD patients. Sequencing of the coding exons of TCF4 and LOXHD1 in six patients showed no variant described with FECD. The odds ratio as indicator for being affected by FECD in our data for the expanded TGC allele is 30. The chance of being affected is thus 30 times higher when someone exhibits the expanded allele. For a carrier of the risk allele G the chance is 16.5 times higher. An expanded TGC allele with more than 50 TGC repeats in intron 2 and the described risk allele G of the polymorphism rs613872 in intron 3 of the TCF4 gene appear as an association to FECD. The chance to be affected by FECD is up to 30 times higher. With molecular genetics also donors with clinically unknown FECD may be detected."	"Mutations in LOXHD1 gene cause various types and severities of hearing loss. We present 2 families that were identified with novel mutations in LOXHD1 as a cause of nonprogressive hearing loss. One thousand three hundred fourteen (1314) Japanese subjects with sensorineural hearing loss from unrelated families were enrolled in the study. Targeted genomic enrichment and massively parallel sequencing of all known nonsyndromic hearing loss genes were performed to identify the genetic cause of hearing loss. Two patients in 1 family affected with homozygous mutation c.879+1G&gt;A in LOXHD1 showed profound congenital hearing loss, whereas 2 patients in another family with compound heterozygous mutations, c.5869G&gt;T (p.E1957X) and c.4480C&gt;T (p.R1494X), showed moderate to severe hearing loss. Mutations in LOXHD1 are extremely rare, and these cases are the first identified in a Japanese population. The genotype-phenotype correlation in LOXHD1 is still unclear. The differences in phenotypes in each patient might be the result of the nature of the mutations or the location on the gene, or be influenced by a genetic modifier."	"Loss of ion transporters and increased unfolded protein response in Fuchs' dystrophy. Fuchs' endothelial corneal dystrophy (FECD), which affects approximately 5% of the population over 40 in the U.S.A., is a major cause of corneal transplantation. FECD is associated with mutations of a variety of unrelated genes: SLC4A11, COL8A2, TCF8, and LOXHD1. The current pathological description of the dystrophy includes deficiency of corneal endothelium (CE) pump function and induction of the unfolded protein response (UPR). This study aims to determine the contribution of the two mechanisms by assessing the expression levels of (1) seven endothelial ion transporters known to regulate stromal hydration and (2) UPR related genes in a set of six CE samples obtained from FECD patients compared to that of normal controls. CE samples collected during FECD keratoplasty or from an eye bank (normal control) were transferred into an RNA stabilizing agent and refrigerated. Total RNA from each CE specimen was individually extracted. The expression levels of ion transporters and UPR genes were tested using quantitative real-time (RT) PCR and a UPR specific PCR array, respectively. In normal CE, the comparative expression levels of ion transporters in decreasing order were SLC4A11, Na(+)/K(+) ATPase, pNBCe1, and NHE1, followed by the isoforms of monocarboxylate transporters (MCTs). In FECD samples, Na(+)/K(+) ATPase and MCTs 1 and 4 were significantly downregulated compared to normal controls (p&lt;0.05). The PCR array tested 84 UPR related genes. Data analysis showed upregulation of 39 genes and downregulation of three genes, i.e., approximately 51% of the tested genes had their expression altered in FECD samples with a difference greater than ± twofold regulation. Thirteen of the altered genes showed significant changes (p&lt;0.05). The PCR array results were validated by quantitative RT-PCR. FECD samples had evident UPR with significant changes in the expression of the protein processing pathway genes. The significant downregulation of ion transporters indicates simultaneous compromised CE pump function in Fuchs' dystrophy."	"Hereditary hearing loss: a 96 gene targeted sequencing protocol reveals novel alleles in a series of Italian and Qatari patients. Deafness is a really common disorder in humans. It can begin at any age with any degree of severity. Hereditary hearing loss is characterized by a vast genetic heterogeneity with more than 140 loci described in humans but only 65 genes so far identified. Families affected by hearing impairment would have real advantages from an early molecular diagnosis that is of primary relevance in genetic counseling. In this perspective, here we report a family-based approach employing Ion Torrent DNA sequencing technology to analyze coding and UTR regions of 96 genes related to hearing function and loss in a first series of 12 families coming from Italy and Qatar. Using this approach we were able to find the causative gene in 4 out of these 12 families (33%). In particular 5 novel alleles were identified in the following genes LOXHD1, TMPRSS3, TECTA and MYO15A already associated with hearing impairment. Our study confirms the usefulness of a targeted sequencing approach despite larger numbers are required for further validation and for defining a molecular epidemiology picture of hearing loss in these two countries."	"FRET-based sensor analysis reveals caveolae are spatially distinct Ca2+ stores in endothelial cells. Ca2+-regulating and Ca2+-dependent molecules enriched in caveolae are typically shaped as plasmalemmal invaginations or vesicles. Caveolae structure and subcellular distribution are critical for Ca2+ release from endoplasmic reticulum Ca2+ stores and for Ca2+ influx from the extracellular space into the cell. However, Ca2+ dynamics inside caveolae have never been directly measured and remain uncharacterized. To target the fluorescence resonance energy transfer (FRET)-based Ca2+ sensing protein D1, a mutant of cameleon, to the intra-caveolar space, we made a cDNA construct encoding a chimeric protein of lectin-like oxidized low-density lipoprotein receptor 1 (LOX-1) and D1 (LOXD1). Immunofluorescence and immunoelectron microscopy confirmed that a significant portion of LOXD1 was localized with caveolin-1 at morphologically apparent caveolar vesicles in endothelial cells. LOXD1 detected ATP-induced transient Ca2+ decreases by confocal FRET imaging in the presence or absence of extracellular Ca2+. This ATP-induced Ca2+ decrease was abolished following knockdown of caveoin-1, suggesting an association with caveolae. The X-ray spectra obtained by the spot analysis of electron-opaque pyroantimonate precipitates further confirmed that ATP-induced calcium decreases in intra-caveolar vesicles. In conclusion, subplasmalemmal caveolae function as Ca2+-releasable Ca2+ stores in response to ATP. This intracellular local Ca2+ delivery system may contribute to the complex spatiotemporal organization of Ca2+ signaling."	"The genetics of Fuchs' corneal dystrophy. Fuchs' corneal dystrophy (FCD) is a common late-onset genetic disorder of the corneal endothelium. It causes loss of endothelial cell density and excrescences in the Descemet membrane, eventually progressing to corneal edema, necessitating corneal transplantation. The genetic basis of FCD is complex and heterogeneous, demonstrating variable expressivity and incomplete penetrance. To date, three causal genes, ZEB1, SLC4A11 and LOXHD1, have been identified, representing a small proportion of the total genetic load of FCD. An additional four loci have been localized, including a region on chromosome 18 that is potentially responsible for a large proportion of all FCD cases. The elucidation of the causal genes underlying these loci will begin to clarify the pathogenesis of FCD and pave the way for the emergence of nonsurgical treatments."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"Prediction of cochlear implant performance by genetic mutation: the spiral ganglion hypothesis. Up to 7% of patients with severe-to-profound deafness do not benefit from cochlear implantation. Given the high surgical implantation and clinical management cost of cochlear implantation (&gt;$1 million lifetime cost), prospective identification of the worst performers would reduce unnecessary procedures and healthcare costs. Because cochlear implants bypass the membranous labyrinth but rely on the spiral ganglion for functionality, we hypothesize that cochlear implant (CI) performance is dictated in part by the anatomic location of the cochlear pathology that underlies the hearing loss. As a corollary, we hypothesize that because genetic testing can identify sites of cochlear pathology, it may be useful in predicting CI performance. 29 adult CI recipients with idiopathic adult-onset severe-to-profound hearing loss were studied. DNA samples were subjected to solution-based sequence capture and massively parallel sequencing using the OtoSCOPE(®) platform. The cohort was divided into three CI performance groups (good, intermediate, poor) and genetic causes of deafness were correlated with audiometric data to determine whether there was a gene-specific impact on CI performance. The genetic cause of deafness was determined in 3/29 (10%) individuals. The two poor performers segregated mutations in TMPRSS3, a gene expressed in the spiral ganglion, while the good performer segregated mutations in LOXHD1, a gene expressed in the membranous labyrinth. Comprehensive literature review identified other good performers with mutations in membranous labyrinth-expressed genes; poor performance was associated with spiral ganglion-expressed genes. Our data support the underlying hypothesis that mutations in genes preferentially expressed in the spiral ganglion portend poor CI performance while mutations in genes expressed in the membranous labyrinth portend good CI performance. Although the low mutation rate in known deafness genes in this cohort likely relates to the ascertainment characteristics (postlingual hearing loss in adult CI recipients), these data suggest that genetic testing should be implemented as part of the CI evaluation to test this association prospectively."	"Mutations in LOXHD1, a recessive-deafness locus, cause dominant late-onset Fuchs corneal dystrophy. Fuchs corneal dystrophy (FCD) is a genetic disorder of the corneal endothelium and is the most common cause of corneal transplantation in the United States. Previously, we mapped a late-onset FCD locus, FCD2, on chromosome 18q. Here, we present next-generation sequencing of all coding exons in the FCD2 critical interval in a multigenerational pedigree in which FCD segregates as an autosomal-dominant trait. We identified a missense change in LOXHD1, a gene causing progressive hearing loss in humans, as the sole variant capable of explaining the phenotype in this pedigree. We observed LOXHD1 mRNA in cultured human corneal endothelial cells, whereas antibody staining of both human and mouse corneas showed staining in the corneal epithelium and endothelium. Corneal sections of the original proband were stained for LOXHD1 and demonstrated a distinct increase in antibody punctate staining in the endothelium and Descemet membrane; punctate staining was absent from both normal corneas and FCD corneas negative for causal LOXHD1 mutations. Subsequent interrogation of a cohort of &gt;200 sporadic affected individuals identified another 15 heterozygous missense mutations that were absent from &gt;800 control chromosomes. Furthermore, in silico analyses predicted that these mutations reside on the surface of the protein and are likely to affect the protein's interface and protein-protein interactions. Finally, expression of the familial LOXHD1 mutant allele as well as two sporadic mutations in cells revealed prominent cytoplasmic aggregates reminiscent of the corneal phenotype. All together, our data implicate rare alleles in LOXHD1 in the pathogenesis of FCD and highlight how different mutations in the same locus can potentially produce diverse phenotypes."	"A deleterious mutation in the LOXHD1 gene causes autosomal recessive hearing loss in Ashkenazi Jews. Autosomal recessive nonsyndromic sensorineural hearing loss (ARNSHL) in Ashkenazi Jews, is mainly caused by mutations in the GJB2 and GJB6 genes. Here we describe a novel homozygous mutation of the LOXHD1 gene resulting in a premature stop codon (R1572X) in nine patients of Ashkenazi Jewish origin who had severe-profound congenital non-progressive ARNSHL and benefited from cochlear implants. Upon screening for the mutation among 719 anonymous Ashkenazi-Jews we detected four carriers, indicating a carrier rate of 1:180 Ashkenazi Jews. This is the second reported mutation in the LOXHD1 gene, and its homozygous presence in two of 39 Ashkenazi Jewish families with congenital ARNSHL suggest that it could account for some 5% of the familial cases in this community."	"The genetics of progressive hearing loss: a link between hearing impairment and dysfunction of mechanosensory hair cells. NA"	"Mutations in LOXHD1, an evolutionarily conserved stereociliary protein, disrupt hair cell function in mice and cause progressive hearing loss in humans. Hearing loss is the most common form of sensory impairment in humans and is frequently progressive in nature. Here we link a previously uncharacterized gene to hearing impairment in mice and humans. We show that hearing loss in the ethylnitrosourea (ENU)-induced samba mouse line is caused by a mutation in Loxhd1. LOXHD1 consists entirely of PLAT (polycystin/lipoxygenase/alpha-toxin) domains and is expressed along the membrane of mature hair cell stereocilia. Stereociliary development is unaffected in samba mice, but hair cell function is perturbed and hair cells eventually degenerate. Based on the studies in mice, we screened DNA from human families segregating deafness and identified a mutation in LOXHD1, which causes DFNB77, a progressive form of autosomal-recessive nonsyndromic hearing loss (ARNSHL). LOXHD1, MYO3a, and PJVK are the only human genes to date linked to progressive ARNSHL. These three genes are required for hair cell function, suggesting that age-dependent hair cell failure is a common mechanism for progressive ARNSHL."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MARVELD2"	"nonsyndromic genetic deafness"	"In focus in HCB. NA"	"Pyk2-dependent phosphorylation of LSR enhances localization of LSR and tricellulin at tricellular tight junctions. Tight junctions (TJs) are cellular junctions within the mammalian epithelial cell sheet that function as a physical barrier to molecular transport within the intercellular space. Dysregulation of TJs leads to various diseases. Tricellular TJs (tTJs), specialized structural variants of TJs, are formed by multiple transmembrane proteins (e.g., lipolysis-stimulated lipoprotein receptor [LSR] and tricellulin) within tricellular contacts in the mammalian epithelial cell sheet. However, the mechanism for recruiting LSR and tricellulin to tTJs is largely unknown. Previous studies have identified that tyrphostin 9, the dual inhibitor of Pyk2 (a nonreceptor tyrosine kinase) and receptor tyrosine kinase platelet-derived growth factor receptor (PDGFR), suppresses LSR and tricellulin recruitment to tTJs in EpH4 (a mouse mammary epithelial cell line) cells. In this study, we investigated the effect of Pyk2 inhibition on LSR and tricellulin localization to tTJs. Pyk2 inactivation by its specific inhibitor or repression by RNAi inhibited the localization of LSR and downstream tricellulin to tTJs without changing their expression level in EpH4 cells. Pyk2-dependent changes in subcellular LSR and tricellulin localization were independent of c-Jun N-terminal kinase (JNK) activation and expression. Additionally, Pyk2-dependent LSR phosphorylation at Tyr-237 was required for LSR and tricellulin localization to tTJs and decreased epithelial barrier function. Our findings indicated a novel mechanism by which Pyk2 regulates tTJ assembly and epithelial barrier function in the mammalian epithelial cell sheet."	"Excess of Rare Missense Variants in Hearing Loss Genes in Sporadic Meniere Disease. Meniere's disease (MD) is a clinical spectrum of rare disorders characterized by vertigo attacks, associated with sensorineural hearing loss (SNHL) and tinnitus involving low to medium frequencies. Although it shows familial aggregation with incomplete phenotypic forms and variable expressivity, most cases are considered sporadic. The aim of this study was to investigate the burden for rare variation in SNHL genes in patients with sporadic MD. We conducted a targeted-sequencing study including SNHL and familial MD genes in 890 MD patients to compare the frequency of rare variants in cases using three independent public datasets as controls. Patients with sporadic MD showed a significant enrichment of missense variants in SNHL genes that was not found in the controls. The list of genes includes GJB2, USH1G, SLC26A4, ESRRB, and CLDN14. A rare synonymous variant with unknown significance was found in the MARVELD2 gene in several unrelated patients with MD. There is a burden of rare variation in certain SNHL genes in sporadic MD. Furthermore, the interaction of common and rare variants in SNHL genes may have an additive effect on MD phenotype. This study will contribute to design a gene panel for the genetic diagnosis of MD."	"New SNP variants of MARVELD2 (DFNB49) associated with non-syndromic hearing loss in Chinese population. Non-syndromic hearing loss (NSHL) is a common defect in humans. Variants of MARVELD2 at the DFNB49 locus have been shown to cause bilateral, moderate to profound NSHL. However, the role of MARVELD2 in NSHL susceptibility in the Chinese population has not been studied. Here we conducted a case-control study in an eastern Chinese population to profile the spectrum and frequency of MARVELD2 variants, as well as the association of MARVELD2 gene variants with NSHL. Our results showed that variants identified in the Chinese population are significantly different from those reported in Slovak, Hungarian, and Czech Roma, as well as Pakistani families. We identified 11 variants in a cohort of 283 NSHL cases. Through Sanger sequencing and bioinformatics analysis, we found that c.730G&gt;A variant has detrimental effects in the eastern Chinese population, and may have relatively high correlation with NSHL pathogenicity."	"Tricellulin Expression and its Deletion Effects in the Endolymphatic Sac. Tricellulin is a tight junction (TJ)-forming protein that participates in the sealing function of tricellular TJs. Tricellulin-knockout (Tric-/-) mice show progressive hearing loss with degeneration of hair cells in the cochlea without physiological or physical disorders. In the present study, we investigated the tricellulin expression and its deletion effects in the endolymphatic sac (ES) using Tric-/- mice. The ES epithelia from wild-type (WT) mice were laser-microdissected, and RT-PCR was performed. The ES sections from Tric-/- and WT mice were immunostained with an anti-tricellulin antibody. Hematoxylin and eosin staining was performed for morphological examination. The inner ear of Tric-/- mice was perfused with biotinylation reagents, and the ES sections were observed for tracer permeability assay after applying streptavidin-Alexa Fluor 488 conjugate. The tricellulin expression was confirmed by RT-PCR and by immunohistochemistry in the WT ES. The ES in Tric-/- mice showed normal morphology and revealed no biotin leakage from the lumen. The ES in Tric-/- mice showed no changes in morphology or disruption in macromolecular barrier function. The effects of solute leakages in the ES of Tric-/- mice may be very limited and compensatable, or that the ES epithelia may have other sealing system covering the lack of tricellulin."	"Increased jejunal permeability in human obesity is revealed by a lipid challenge and is linked to inflammation and type 2 diabetes. Obesity and its metabolic complications are characterized by subclinical systemic and tissue inflammation. In rodent models of obesity, inflammation and metabolic impairments are linked with intestinal barrier damage. However, whether intestinal permeability is altered in human obesity remains to be investigated. In a cohort of 122 severely obese and non-obese patients, we analyzed intestinal barrier function combining in vivo and ex vivo investigations. We found tight junction impairments in the jejunal epithelium of obese patients, evidenced by a reduction of occludin and tricellulin. Serum levels of zonulin and LPS binding protein, two markers usually associated with intestinal barrier alterations, were also increased in obese patients. Intestinal permeability per se was assessed in vivo by quantification of urinary lactitol/mannitol (L/M) and measured directly ex vivo on jejunal samples in Ussing chambers. In the fasting condition, L/M ratio and jejunal permeability were not significantly different between obese and non-obese patients, but high jejunal permeability to small molecules (0.4 kDa) was associated with systemic inflammation within the obese cohort. Altogether, these results suggest that intestinal barrier function is subtly compromised in obese patients. We thus tested whether this barrier impairment could be exacerbated by dietary lipids. To this end, we challenged jejunal samples with lipid micelles and showed that a single exposure increased permeability to macromolecules (4 kDa). Jejunal permeability after the lipid load was two-fold higher in obese patients compared to non-obese controls and correlated with systemic and intestinal inflammation. Moreover, lipid-induced permeability was an explicative variable of type 2 diabetes. In conclusion, intestinal barrier defects are present in human severe obesity and exacerbated by a lipid challenge. This paves the way to the development of novel therapeutic approaches to modulate intestinal barrier function or personalize nutrition therapy to decrease lipid-induced jejunal leakage in metabolic diseases. Copyright © 2018 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"A novel pathogenic variant in the MARVELD2 gene causes autosomal recessive non-syndromic hearing loss in an Iranian family. Hearing loss (HL) is the most common sensorineural disorder and one of the most common human defects. HL can be classified according to main criteria, including: the site (conductive, sensorineural and mixed), onset (pre-lingual and post-lingual), accompanying signs and symptoms (syndromic and non-syndromic), severity (mild, moderate, severe and profound) and mode of inheritance (Autosomal recessive, autosomal dominant, X-linked and mitochondrial). Autosomal recessive non-syndromic HL (ARNSHL) forms constitute a major share of the HL cases. In the present study, next-generation sequencing (NGS) was applied to investigate the underlying etiology of HL in a multiplex ARNSHL family from Khuzestan province, southwest Iran. In this descriptive study, 20 multiplex ARNSHL families from Khuzestan province, southwest of Iran were recruited. After DNA extraction, genetic linkage analysis (GLA) was applied to screen for a panel of more prevalent loci. One family, which was not linked to these loci, was subjected to Otogenetics deafness Next Generation Sequencing (NGS) panel. NGS results showed a novel deletion-insertion variant (c.1555delinsAA) in the MARVELD2 gene. The variant which is a frameshift in the seventh exon of the MARVELD2 gene fulfills the criteria of being categorized as pathogenic according to the American College of Medical Genetics and Genomics (ACMG) guideline. NGS is very promising to identify the molecular etiology of highly heterogeneous diseases such as HL. MARVELD2 might be important in the etiology of HL in this region of Iran."	"Gut Barrier Dysfunction-A Primary Defect in Twins with Crohn's Disease Predominantly Caused by Genetic Predisposition. The aetiology of Crohn's disease is poorly understood. By investigating twin pairs discordant for Crohn's disease, we aimed to assess whether the dysregulated barrier represents a cause or a consequence of inflammation and to evaluate the impact of genetic predisposition on barrier function. Ileal biopsies from 15 twin pairs discordant for Crohn's disease [monozygotic n = 9, dizygotic n = 6] and 10 external controls were mounted in Ussing chambers to assess paracellular permeability to 51Chromium [Cr]-EDTA and trancellular passage to non-pathogenic E. coli K-12. Experiments were performed with and without provocation with acetylsalicylic acid. Immunofluorescence and ELISA were used to quantify the expression level of tight junction proteins. Healthy co-twins and affected twins displayed increased 51Cr-EDTA permeability at 120 min, both with acetylsalicylic acid [p &lt; 0.001] and without [p &lt; 0.001] when compared with controls. A significant increase in 51Cr-EDTA flux was already seen at 20 min in healthy monozygotic co-twins compared with controls [p≤0.05] when stratified by zygosity, but not in healthy dizygotic co-twins. No difference in E. coli passage was observed between groups. Immunofluorescence of the tight junction proteins claudin-5 and tricellulin showed lower levels in healthy co-twins [p &lt; 0.05] and affected twins [p &lt; 0.05] compared with external controls, while ELISA only showed lower tricellulin in Crohn's disease twins [p &lt; 0.05]. Our results suggest that barrier dysfunction is a primary defect in Crohn's disease, since changes were predominantly seen in healthy monozygotic co-twins. Passage of E. coli seems to be a consequence of inflammation, rather than representing a primary defect."	"Histone deacetylase inhibition prevents cell death induced by loss of tricellular tight junction proteins in temperature-sensitive mouse cochlear cells. Tricellular tight junctions (tTJs) are specialized structures that occur where the corners of three cells meet to seal adjacent intercellular space. The molecular components of tTJs include tricellulin (TRIC) and lipolysis-stimulated lipoprotein receptor (LSR) which recruits TRIC, are required for normal hearing. Although loss of TRIC causes hearing loss with degeneration of cochlear cells, the detailed mechanisms remains unclear. In the present study, by using temperature-sensitive mouse cochlear cells, US/VOT-E36 cell line, we investigated the changes of TRIC and LSR during cochlear cell differentiation and the effects of histone deacetylase (HDAC) inhibitors against cell degeneration induced by loss of TRIC and LSR. During cell differentiation induced by the temperature change, expression of TRIC and LSR were clearly induced. Treatment with metformin enhanced expression TRIC and LSR via AMPK during cell differentiation. Loss of TRIC and LSR by the siRNAs induced cell death in differentiated cells. Treatment with HDAC inhibitors trichostatin A and HDAC6 inhibitor prevented the cell death induced by loss of TRIC and LSR. Collectively, these findings suggest that both tTJ proteins TRIC and LSR have crucial roles for the differentiated cochlear cell survival, and that HDAC inhibitors may be potential therapeutic agents to prevent hearing loss."	"Tricellulin is a target of the ubiquitin ligase Itch. Tricellulin, a member of the tight junction-associated MAGUK protein family, preferentially localizes to tricellular junctions in confluent polarized epithelial cell layers and is downregulated during the epithelial-mesenchymal transition. Posttranslational modifications are assumed to play critical roles in the process of downregulation of tricellulin at the protein level. Here, we report that the E3 ubiquitin ligase Itch forms a complex with tricellulin and thereby enhances its ubiquitination. Pull-down assays confirmed a direct interaction between tricellulin and Itch, which is mediated by the Itch WW domain and the N-terminus of tricellulin. Experiments in the presence of the proteasome inhibitor MG-132 did not show major changes in the levels of ubiquitinated tricellulin in epithelial cells, suggesting that ubiquitination is not primarily involved in proteasomal degradation of tricellulin, but it appears to be important for endocytosis or recycling. In contrast, in HEK-293 cells, MG-132 caused polyubiquitination. Moreover, we observed that well-differentiated RT-112 and de-differentiated Cal-29 bladder cancer cells show an inverse expression of tricellulin and Itch. We postulate that ubiquitination is an important posttranslational modification involved in the determination of the intracellular fate of tricellulin deserving of more detailed further investigations into the underlying molecular mechanisms and their regulation."	"Reducing gut effects from Cryptosporidium parvum infection in dairy calves through prophylactic glucagon-like peptide 2 therapy or feeding of an artificial sweetener. Glucagon-like peptide 2 (GLP-2) therapy was shown previously to reduce inflammation-related gut damage from coccidiosis in dairy calves, and feeding of artificial sweetener stimulates GLP-2 secretion from intestinal L cells. The purpose of this study was to determine whether GLP-2 treatment or artificial sweetener feeding beginning 1 wk before an experimental inoculation with the coccidian parasite Cryptosporidium parvum can reduce infection-related intestinal damage in Holstein bull calves. Newborn calves were assigned to 1 of 4 treatment groups of 6 calves each, including noninfected control calves injected s.c. every 12 h with control buffer (CON), infected control calves injected s.c. every 12 h with control buffer (INF), infected calves injected s.c. every 12 h with 50 µg/kg of body weight of GLP-2 (GLP2), and infected calves injected s.c. every 12 h with control buffer and supplemented in the diet with Sucram (Pancosma, Geneva, Switzerland) at 400 mg/kg of dry matter of milk replacer (SUC). Treatments were initiated on d 1, and calves in INF, GLP2, and SUC were orally dosed on d 8 with 12,500 C. parvum oocysts. Fecal scores were recorded daily, plasma was collected on d 1, 8, 12, 15, and 18 to evaluate markers of inflammation, and fecal samples were collected on d 1, 8, and every other day thereafter to determine the presence of oocysts. Calves were euthanized on d 18 for collection of intestinal tissues and histological and gene expression analyses. Relative to CON, calves in INF exhibited an increase in diarrhea severity, increased plasma serum amyloid A concentration on d 15 and 18, reduced intestinal villus height, increased villus apoptosis and crypt cell proliferation, and increased intestinal mRNA expression of MARVELD2 and GPX2. However, calves in SUC and GLP2 had reduced diarrhea severity and fecal C. parvum oocyst shedding, reduced plasma serum amyloid A concentration on d 15 and 18, and, depending on the intestinal segment, increased villus height, reduced crypt cell proliferation, and reduced mRNA expression of MARVELD2, GPX2, and other tight junction proteins relative to INF. Lastly, GLP2 and SUC exhibited increased intestinal mass-to-length ratio and decreased length-to-empty body weight ratio relative to INF. Our findings suggest that GLP-2 and Sucram treatments administered before a low-level C. parvum exposure may contribute to fewer effects on intestinal integrity, morphology, and inflammation in response to infection, and shorter, denser intestines."	"Blood-brain barrier and intestinal epithelial barrier alterations in autism spectrum disorders. Autism spectrum disorders (ASD) are complex conditions whose pathogenesis may be attributed to gene-environment interactions. There are no definitive mechanisms explaining how environmental triggers can lead to ASD although the involvement of inflammation and immunity has been suggested. Inappropriate antigen trafficking through an impaired intestinal barrier, followed by passage of these antigens or immune-activated complexes through a permissive blood-brain barrier (BBB), can be part of the chain of events leading to these disorders. Our goal was to investigate whether an altered BBB and gut permeability is part of the pathophysiology of ASD. Postmortem cerebral cortex and cerebellum tissues from ASD, schizophrenia (SCZ), and healthy subjects (HC) and duodenal biopsies from ASD and HC were analyzed for gene and protein expression profiles. Tight junctions and other key molecules associated with the neurovascular unit integrity and function and neuroinflammation were investigated. Claudin (CLDN)-5 and -12 were increased in the ASD cortex and cerebellum. CLDN-3, tricellulin, and MMP-9 were higher in the ASD cortex. IL-8, tPA, and IBA-1 were downregulated in SCZ cortex; IL-1b was increased in the SCZ cerebellum. Differences between SCZ and ASD were observed for most of the genes analyzed in both brain areas. CLDN-5 protein was increased in ASD cortex and cerebellum, while CLDN-12 appeared reduced in both ASD and SCZ cortexes. In the intestine, 75% of the ASD samples analyzed had reduced expression of barrier-forming TJ components (CLDN-1, OCLN, TRIC), whereas 66% had increased pore-forming CLDNs (CLDN-2, -10, -15) compared to controls. In the ASD brain, there is an altered expression of genes associated with BBB integrity coupled with increased neuroinflammation and possibly impaired gut barrier integrity. While these findings seem to be specific for ASD, the possibility of more distinct SCZ subgroups should be explored with additional studies."	"The roles of tricellular tight junction protein lipolysis-stimulated lipoprotein receptor in malignancy of human endometrial cancer cells. Lipolysis-stimulated lipoprotein receptor (LSR) has been identified as a novel molecular constituent of tricellular contacts that have a barrier function for the cellular sheet. LSR recruits tricellulin (TRIC), which is the first molecular component of tricellular tight junctions. Knockdown of LSR increases cell motility and invasion of certain cancer cells. However, the behavior and the roles of LSR in endometrial cancer remain unknown. In the present study, we investigated the behavior and roles of LSR in normal and endometrial cancer cells in vivo and in vitro. In endometriosis and endometrial cancer, LSR was observed not only in the subapical region but also throughout the lateral region as well as in normal endometrial epithelial cells in the secretory phase, and LSR in the cancer was reduced in correlation with the malignancy. Knockdown of LSR by the siRNA in cells of the endometrial cancer cell line Sawano, induced cell migration, invasion and proliferation, while TRIC relocalized from the tricellular region to the bicellular region at the membrane. In Sawano cells and normal HEEs, a decrease of LSR induced by leptin and an increase of LSR induced by adiponectin and the drugs for type 2 diabetes metformin and berberine were observed via distinct signaling pathways including JAK2/STAT. In Sawano cells, metformin and berberine prevented cell migration and invasion induced by downregulation of LSR by the siRNA and leptin treatment. The dissection of the mechanism in the downregulation of endometrial LSR during obesity is important in developing new diagnostic and therapy for endometrial cancer. "	"Deletion of Tricellulin Causes Progressive Hearing Loss Associated with Degeneration of Cochlear Hair Cells. Tricellulin (also known as MARVELD2) is considered as a central component of tricellular tight junctions and is distributed among various epithelial tissues. Although mutations in the gene encoding tricellulin are known to cause deafness in humans (DFNB49) and mice, the influence of its systemic deletion in vivo remains unknown. When we generated tricellulin-knockout mice (Tric(-/-)), we found an early-onset rapidly progressive hearing loss associated with the degeneration of hair cells (HCs); however, their body size and overall appearance were normal. Tric(-/-) mice did not show any morphological change pertaining to other organs such as the gastrointestinal tract, liver, kidney, thyroid gland and heart. The endocochlear potential (EP) was normal in Tric(-/-) mice, suggesting that the tight junction barrier is maintained in the stria vascularis, where EP is generated. The degeneration of HCs, which occurred after the maturation of EP, was prevented in the culture medium with an ion concentration similar to that of the perilymph. These data demonstrate the specific requirement of tricellulin for maintaining ion homeostasis around cochlear HCs to ensure their survival. The Tric(-/-) mouse provides a new model for understanding the distinct roles of tricellulin in different epithelial systems as well as in the pathogenesis of DFNB49. "	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"Redox Regulation of Cell Contacts by Tricellulin and Occludin: Redox-Sensitive Cysteine Sites in Tricellulin Regulate Both Tri- and Bicellular Junctions in Tissue Barriers as Shown in Hypoxia and Ischemia. Tight junctions (TJs) seal paracellular clefts in epithelia/endothelia and form tissue barriers for proper organ function. TJ-associated marvel proteins (TAMPs; tricellulin, occludin, marvelD3) are thought to be relevant to regulation. Under normal conditions, tricellulin tightens tricellular junctions against macromolecules. Traces of tricellulin occur in bicellular junctions. As pathological disturbances have not been analyzed, the structure and function of human tricellulin, including potentially redox-sensitive Cys sites, were investigated under reducing/oxidizing conditions at 3- and 2-cell contacts. Ischemia, hypoxia, and reductants redistributed tricellulin from 3- to 2-cell contacts. The extracellular loop 2 (ECL2; conserved Cys321, Cys335) trans-oligomerized between three opposing cells. Substitutions of these residues caused bicellular localization. Cys362 in transmembrane domain 4 contributed to bicellular heterophilic cis-interactions along the cell membrane with claudin-1 and marvelD3, while Cys395 in the cytosolic C-terminal tail promoted homophilic tricellullar cis-interactions. The Cys sites included in homo-/heterophilic bi-/tricellular cis-/trans-interactions contributed to cell barrier tightness for small/large molecules. Tricellulin forms TJs via trans- and cis-association in 3-cell contacts, as demonstrated electron and quantified fluorescence microscopically; it tightens 3- and 2-cell contacts. Tricellulin's ECL2 specifically seals 3-cell contacts redox dependently; a structural model is proposed. TAMP ECL2 and claudins' ECL1 share functionally and structurally similar features involved in homo-/heterophilic tightening of cell-cell contacts. Tricellulin is a specific redox sensor and sealing element at 3-cell contacts and may compensate as a redox mediator for occludin loss at 2-cell contacts in vivo and in vitro. Molecular interaction mechanisms were proposed that contribute to tricellulin's function. In conclusion, tricellulin is a junctional redox regulator for ischemia-related alterations."	"MARVELD2 (DFNB49) mutations in the hearing impaired Central European Roma population--prevalence, clinical impact and the common origin. In the present study we aimed: 1) To establish the prevalence and clinical impact of DFNB49 mutations in deaf Roma from 2 Central European countries (Slovakia and Hungary), and 2) to analyze a possible common origin of the c.1331+2T&gt;C mutation among Roma and Pakistani mutation carriers identified in the present and previous studies. We sequenced 6 exons of the MARVELD2 gene in a group of 143 unrelated hearing impaired Slovak Roma patients. Simultaneously, we used RFLP to detect the c.1331+2T&gt;C mutation in 85 Hungarian deaf Roma patients, control groups of 702 normal hearing Romanies from both countries and 375 hearing impaired Slovak Caucasians. We analyzed the haplotype using 21 SNPs spanning a 5.34Mb around the mutation c.1331+2T&gt;C. One pathogenic mutation (c.1331+2T&gt;C) was identified in 12 homozygous hearing impaired Roma patients. Allele frequency of this mutation was higher in Hungarian (10%) than in Slovak (3.85%) Roma patients. The identified common haplotype in Roma patients was defined by 18 SNP markers (3.89 Mb). Fourteen common SNPs were also shared among Pakistani and Roma homozygotes. Biallelic mutation carriers suffered from prelingual bilateral moderate to profound sensorineural hearing loss. We demonstrate different frequencies of the c.1331+2T&gt;C mutation in hearing impaired Romanies from 3 Central European countries. In addition, our results provide support for the hypothesis of a possible common ancestor of the Slovak, Hungarian and Czech Roma as well as Pakistani deaf patients. Testing for the c.1331+2T&gt;C mutation may be recommended in GJB2 negative Roma cases with early-onset sensorineural hearing loss."	"Molecular genetics of MARVELD2 and clinical phenotype in Pakistani and Slovak families segregating DFNB49 hearing loss. Pathogenic mutations of MARVELD2, encoding tricellulin, a tricelluar tight junction protein, cause autosomal recessive non-syndromic hearing loss (DFNB49) in families of Pakistan and Czech Roma origin. In fact, they are a significant cause of prelingual hearing loss in the Czech Roma, second only to GJB2 variants. Previously, we reported that mice homozygous for p.Arg497* variant of Marveld2 had a broad phenotypic spectrum, where defects were observed in the inner ear, heart, mandibular salivary gland, thyroid gland and olfactory epithelium. The current study describes the types and frequencies of MARVELD2 alleles and clinically reexamines members of DFNB49 families. We found that MARVELD2 variants are responsible for about 1.5 % (95 % CI 0.8-2.6) of non-syndromic hearing loss in our cohort of 800 Pakistani families. The c.1331+2T&gt;C allele is recurrent. In addition, we identified a novel large deletion in a single family, which appears to have resulted from non-allelic homologous recombination between two similar Alu short interspersed elements. Finally, we observed no other clinical manifestations co-segregating with hearing loss in DFNB49 human families, and hypothesize that the additional abnormalities in the Marveld2 mutant mouse indicates a critical non-redundant function for tricellulin in other organ systems."	"Discovery of coding genetic variants influencing diabetes-related serum biomarkers and their impact on risk of type 2 diabetes. Type 2 diabetes (T2D) prevalence is spiraling globally, and knowledge of its pathophysiological signatures is crucial for a better understanding and treatment of the disease. We aimed to discover underlying coding genetic variants influencing fasting serum levels of nine biomarkers associated with T2D: adiponectin, C-reactive protein, ferritin, heat shock 70-kDa protein 1B, IGF binding protein 1 and IGF binding protein 2, IL-18, IL-2 receptor-α, and leptin. A population-based sample of 6215 adult Danes was genotyped for 16 340 coding single-nucleotide polymorphisms and were tested for association with each biomarker. Identified loci were tested for association with T2D through a large-scale meta-analysis involving up to 17 024 T2D cases and up to 64 186 controls. We discovered 11 associations between single-nucleotide polymorphisms and five distinct biomarkers at a study-wide P &lt; 3.4 × 10(-7). Nine associations were novel: IL18: BIRC6, RAD17, MARVELD2; ferritin: F5; IGF binding protein 1: SERPING1, KLKB, GCKR, CELSR2, and heat shock 70-kDa protein 1B: CFH. Three of the identified loci (CELSR2, HNF1A, and GCKR) were significantly associated with T2D, of which the association with the CELSR2 locus has not been shown previously. The identified loci influence processes related to insulin signaling, cell communication, immune function, apoptosis, DNA repair, and oxidative stress, all of which could provide a rationale for novel diabetes therapeutic strategies."	"Increased permeability of the epithelium of middle ear cholesteatoma. We investigated the electrical impedance of and the expressions of tight junction molecules in the cholesteatoma epithelium to provide supporting evidence for the acid lysis theory of bone resorption in middle ear cholesteatoma. Study subjects were patients with primary acquired middle ear cholesteatoma and those with non-cholesteatomatous chronic otitis media who underwent tympanomastoidectomy. The electrical impedance of the cholesteatoma epithelium was measured during tympanomastoidectomy by loading alternating currents of 320 Hz and 30.7 kHz. The expressions of tricellulin (MARVELD2), claudin-1 (CLDN1) and claudin-3 (CLDN3) were examined by fluorescence immunohistochemistry and quantitative reverse transcription-polymerase chain reaction. The electrical impedance of the cholesteatoma epithelium was significantly lower than that of the post-auricular skin and external auditory canal skin at both 320 Hz and 30.7 kHz. Immunoreactivity for MARVELD2, CLDN1 and CLDN3 was localised mainly in the granular layer, and to lesser degree, in the horny and spinous layers in both the cholesteatoma tissue and post-auricular skin. Fluorescence intensity was moderate for MARVELD2, weak for CLDN1 and strong for CLDN3. The expressions of MARVELD2, CLDN1 and CLDN3 mRNA were significantly lower in the cholesteatoma tissue than in the post-auricular skin. These results indicate the increased permeability of the cholesteatoma epithelium and suggest that this change is, at least partially, dependent on the decrease in the expressions of the tight junction molecules. This evidence supports the acid lysis hypothesis of bone resorption in cholesteatoma."	"ILDR1 null mice, a model of human deafness DFNB42, show structural aberrations of tricellular tight junctions and degeneration of auditory hair cells. In the mammalian inner ear, bicellular and tricellular tight junctions (tTJs) seal the paracellular space between epithelial cells. Tricellulin and immunoglobulin-like (Ig-like) domain containing receptor 1 (ILDR1, also referred to as angulin-2) localize to tTJs of the sensory and non-sensory epithelia in the organ of Corti and vestibular end organs. Recessive mutations of TRIC (DFNB49) encoding tricellulin and ILDR1 (DFNB42) cause human nonsyndromic deafness. However, the pathophysiology of DFNB42 deafness remains unknown. ILDR1 was recently reported to be a lipoprotein receptor mediating the secretion of the fat-stimulated cholecystokinin (CCK) hormone in the small intestine, while ILDR1 in EpH4 mouse mammary epithelial cells in vitro was shown to recruit tricellulin to tTJs. Here we show that two different mouse Ildr1 mutant alleles have early-onset severe deafness associated with a rapid degeneration of cochlear hair cells (HCs) but have a normal endocochlear potential. ILDR1 is not required for recruitment of tricellulin to tTJs in the cochlea in vivo; however, tricellulin becomes mislocalized in the inner ear sensory epithelia of ILDR1 null mice after the first postnatal week. As revealed by freeze-fracture electron microscopy, ILDR1 contributes to the ultrastructure of inner ear tTJs. Taken together, our data provide insight into the pathophysiology of human DFNB42 deafness and demonstrate that ILDR1 is crucial for normal hearing by maintaining the structural and functional integrity of tTJs, which are critical for the survival of auditory neurosensory HCs."	"Tricellulin regulates junctional tension of epithelial cells at tricellular contacts through Cdc42. When the surface view of each epithelial cell is compared with a polygon, its sides correspond to cell-cell junctions, whereas its vertices correspond to tricellular contacts, whose roles in epithelial cell morphogenesis have not been well studied. Here, we show that tricellulin (also known as MARVELD2), which is localized at tricellular contacts, regulates F-actin organization through Cdc42. Tricellulin-knockdown epithelial cells exhibit irregular polygonal shapes with curved cell borders and impaired organization of F-actin fibers around tricellular contacts during cell-cell junction formation. The N-terminal cytoplasmic domain of tricellulin binds to the Cdc42 guanine-nucleotide-exchange factor (GEF) Tuba (also known as DNMBP and ARHGEF36), and activates Cdc42. A tricellulin mutant that lacks the ability to bind Tuba cannot rescue the curved cell border phenotype of tricellulin-knockdown cells. These findings indicate that tricellular contacts play crucial roles in regulating the actomyosin-mediated apical junctional complex tension through the tricellulin-Tuba-Cdc42 system. "	"Myogenic differential methylation: diverse associations with chromatin structure. Employing a new algorithm for identifying differentially methylated regions (DMRs) from reduced representation bisulfite sequencing profiles, we identified 1972 hypermethylated and 3250 hypomethylated myogenic DMRs in a comparison of myoblasts (Mb) and myotubes (Mt) with 16 types of nonmuscle cell cultures. DMRs co-localized with a variety of chromatin structures, as deduced from ENCODE whole-genome profiles. Myogenic hypomethylation was highly associated with both weak and strong enhancer-type chromatin, while hypermethylation was infrequently associated with enhancer-type chromatin. Both myogenic hypermethylation and hypomethylation often overlapped weak transcription-type chromatin and Polycomb-repressed-type chromatin. For representative genes, we illustrate relationships between DNA methylation, the local chromatin state, DNaseI hypersensitivity, and gene expression. For example, MARVELD2 exhibited myogenic hypermethylation in transcription-type chromatin that overlapped a silenced promoter in Mb and Mt while TEAD4 had myogenic hypomethylation in intronic subregions displaying enhancer-type or transcription-type chromatin in these cells. For LSP1, alternative promoter usage and active promoter-type chromatin were linked to highly specific myogenic or lymphogenic hypomethylated DMRs. Lastly, despite its myogenesis-associated expression, TBX15 had multiple hypermethylated myogenic DMRs framing its promoter region. This could help explain why TBX15 was previously reported to be underexpressed and, unexpectedly, its promoter undermethylated in placentas exhibiting vascular intrauterine growth restriction. "	"Gene expression correlations in human cancer cell lines define molecular interaction networks for epithelial phenotype. Using gene expression data to enhance our knowledge of control networks relevant to cancer biology and therapy is a challenging but urgent task. Based on the premise that genes that are expressed together in a variety of cell types are likely to functions together, we derived mutually correlated genes that function together in various processes in epithelial-like tumor cells. Expression-correlated genes were derived from data for the NCI-60 human tumor cell lines, as well as data from the Broad Institute's CCLE cell lines. NCI-60 cell lines that selectively expressed a mutually correlated subset of tight junction genes served as a signature for epithelial-like cancer cells. Those signature cell lines served as a seed to derive other correlated genes, many of which had various other epithelial-related functions. Literature survey yielded molecular interaction and function information about those genes, from which molecular interaction maps were assembled. Many of the genes had epithelial functions unrelated to tight junctions, demonstrating that new function categories were elicited. The most highly correlated genes were implicated in the following epithelial functions: interactions at tight junctions (CLDN7, CLDN4, CLDN3, MARVELD3, MARVELD2, TJP3, CGN, CRB3, LLGL2, EPCAM, LNX1); interactions at adherens junctions (CDH1, ADAP1, CAMSAP3); interactions at desmosomes (PPL, PKP3, JUP); transcription regulation of cell-cell junction complexes (GRHL1 and 2); epithelial RNA splicing regulators (ESRP1 and 2); epithelial vesicle traffic (RAB25, EPN3, GRHL2, EHF, ADAP1, MYO5B); epithelial Ca(+2) signaling (ATP2C2, S100A14, BSPRY); terminal differentiation of epithelial cells (OVOL1 and 2, ST14, PRSS8, SPINT1 and 2); maintenance of apico-basal polarity (RAB25, LLGL2, EPN3). The findings provide a foundation for future studies to elucidate the functions of regulatory networks specific to epithelial-like cancer cells and to probe for anti-cancer drug targets. "	"JNK1/2-dependent phosphorylation of angulin-1/LSR is required for the exclusive localization of angulin-1/LSR and tricellulin at tricellular contacts in EpH4 epithelial sheet. Tricellular tight junctions (tTJs) are specialized structural variants of tight junctions within tricellular contacts of an epithelial sheet and comprise several transmembrane proteins including lipolysis-stimulated lipoprotein receptor (angulin-1/LSR) and tricellulin. To elucidate the mechanism of its formation, we carried out stepwise screening of kinase inhibitors followed by RNAi screening to identify kinases that regulate intracellular localization of angulin-1/LSR to the tTJs using a fluorescence image-based screen. We found that the activity of JNK1 and JNK2, but not JNK3, was required for the exclusive localization of angulin-1/LSR at the tTJs. Based on a bioinformatics approach, we estimated the potential phosphorylation site of angulin-1/LSR by JNK1 to be serine 288 and experimentally confirmed that JNK1 directly phosphorylates angulin-1/LSR at this site. We found that JNK2 was also involved in the phosphorylation of angulin-1/LSR. Furthermore, GFP-tagged angulin-1/LSR(S288A), in which serine 288 was substituted by alanine, was observed to be dispersed to bicellular junctions, indicating that phosphorylation of Ser288 is crucial for the exclusive localization of angulin-1/LSR and tricellulin at tTJs. Our fluorescence image-based screening for kinases inhibitor or siRNAs combined with the phosphorylation site prediction could become a versatile and useful tool to elucidate the mechanisms underlying the maintenance of tTJs regulated by kinase networks. "	"Androgen-dependent sertoli cell tight junction remodeling is mediated by multiple tight junction components. Sertoli cell tight junctions (SCTJs) of the seminiferous epithelium create a specialized microenvironment in the testis to aid differentiation of spermatocytes and spermatids from spermatogonial stem cells. SCTJs must be chronically broken and rebuilt with high fidelity to allow the transmigration of preleptotene spermatocytes from the basal to adluminal epithelial compartment. Impairment of androgen signaling in Sertoli cells perturbs SCTJ remodeling. Claudin (CLDN) 3, a tight junction component under androgen regulation, localizes to newly forming SCTJs and is absent in Sertoli cell androgen receptor knockout (SCARKO) mice. We show here that Cldn3-null mice do not phenocopy SCARKO mice: Cldn3(-/-) mice are fertile, show uninterrupted spermatogenesis, and exhibit fully functional SCTJs based on imaging and small molecule tracer analyses, suggesting that other androgen-regulated genes must contribute to the SCARKO phenotype. To further investigate the SCTJ phenotype observed in SCARKO mutants, we generated a new SCARKO model and extensively analyzed the expression of other tight junction components. In addition to Cldn3, we identified altered expression of several other SCTJ molecules, including down-regulation of Cldn13 and a noncanonical tight junction protein 2 isoform (Tjp2iso3). Chromatin immunoprecipitation was used to demonstrate direct androgen receptor binding to regions of these target genes. Furthermore, we demonstrated that CLDN13 is a constituent of SCTJs and that TJP2iso3 colocalizes with tricellulin, a constituent of tricellular junctions, underscoring the importance of androgen signaling in the regulation of both bicellular and tricellular Sertoli cell tight junctions. "	"Tricellulin expression and its prognostic significance in primary liver carcinomas. Numerous data suggest that altered expression of tight junction proteins such as occludin and claudins plays important role in carcinogenesis. However, little is known about tricellulin, a transmembrane tight junction protein concentrated where three epithelial cells meet. We aimed to characterize tricellulin expression in normal and cirrhotic liver in comparison to primary hepatic neoplasms. Tricellulin expression of 20 control livers, 12 cirrhotic livers, 32 hepatocellular carcinomas (HCC), and 20 intrahepatic cholangiocarcinomas (iCCC) was investigated by immunohistochemistry and Western blotting. Co-localization of tricellulin with claudin-1, -4, and MRP2 was studied using double immunofluorescence. Scattered tricellulin immunopositivity was restricted to biliary pole of hepatocytes confirmed by co-localization with MRP2. Moreover, spotted-like reaction was observed between bile duct epithelial cells. In 40 % of HCCs marked tricellulin overexpression was measured regardless of tumor grades. In iCCCs, however, tricellulin expression decreased parallel with dedifferentiation. In HCCs high tricellulin expression, in iCCCs low tricellulin expression correlated with poor prognosis. Co-localization with MRP2 might substantiate that tricellulin plays role in blood-biliary barrier. Overexpressed tricellulin in a subset of HCCs correlated with unfavorable prognosis. Similar to ductal pancreatic adenocarcinoma, higher grades of iCCCs were associated with decreased tricellulin expression correlating with poor prognosis."	"Tricellulin deficiency affects tight junction architecture and cochlear hair cells. The two compositionally distinct extracellular cochlear fluids, endolymph and perilymph, are separated by tight junctions that outline the scala media and reticular lamina. Mutations in TRIC (also known as MARVELD2), which encodes a tricellular tight junction protein known as tricellulin, lead to nonsyndromic hearing loss (DFNB49). We generated a knockin mouse that carries a mutation orthologous to the TRIC coding mutation linked to DFNB49 hearing loss in humans. Tricellulin was absent from the tricellular junctions in the inner ear epithelia of the mutant animals, which developed rapidly progressing hearing loss accompanied by loss of mechanosensory cochlear hair cells, while the endocochlear potential and paracellular permeability of a biotin-based tracer in the stria vascularis were unaltered. Freeze-fracture electron microscopy revealed disruption of the strands of intramembrane particles connecting bicellular and tricellular junctions in the inner ear epithelia of tricellulin-deficient mice. These ultrastructural changes may selectively affect the paracellular permeability of ions or small molecules, resulting in a toxic microenvironment for cochlear hair cells. Consistent with this hypothesis, hair cell loss was rescued in tricellulin-deficient mice when generation of normal endolymph was inhibited by a concomitant deletion of the transcription factor, Pou3f4. Finally, comprehensive phenotypic screening showed a broader pathological phenotype in the mutant mice, which highlights the non-redundant roles played by tricellulin. "	"A &quot;Tric&quot; to tighten cell-cell junctions in the cochlea for hearing. Tricellulin is a tricellular tight junction-associated membrane protein that controls movement of solutes at these specialized cell intersections. Mutations in the gene encoding tricellulin, TRIC, lead to nonsyndromic deafness. In this issue of the JCI, Nayak et al. created a gene-targeted knockin mouse in order to mimic the pathology of a human TRIC mutation. Deafness appears to be caused either by an increase in the K+ ion concentration around the basolateral surfaces of the outer hair cells or, alternatively, by an increase in small molecules such as ATP around the hair bundle, leading to cellular dysfunction and degeneration. Furthermore, the mice have features suggestive of syndromic hearing loss, which may have implications for care and treatment of patients harboring TRIC mutations. "	"Behavior of tricellulin during destruction and formation of tight junctions under various extracellular calcium conditions. Tricellulin is an important component of tricellular tight junctions (TJs) and is involved in the formation of tricellular contacts. However, little is known about its regulation during the assembly and disassembly of tricellular TJs. By using the well-differentiated pancreatic cancer cell line HPAC, which highly expresses tricellulin at tricellular contacts, we have investigated changes in the localization, expression and phosphorylation of tricellulin and in its TJ functions as a barrier and fence during the destruction and formation of TJs induced by changes in the extracellular calcium concentration. During both extracellular Ca(2+) depletion caused by EGTA treatment and Ca(2+) repletion after Ca(2+) starvation, the expression of tricellulin increased in whole lysates and in Triton-X-100-insoluble fractions without any change in its mRNA. The increases in immunoreactivity revealed by Western blotting were prevented by alkaline phosphatase treatment. Immunoprecipitation assays showed that tricellulin was phosphorylated on threonine residues when it increased after Ca(2+) depletion and repletion. In the early stage after Ca(2+) repletion, tricellulin was expressed not only at tricellular contacts but also in the cytoplasm and at bicellular borders. In confocal laser microscopy, tricellulin was observed at the apical-most regions and basolateral membranes of tricellular contacts after Ca(2+) repletion. Knockdown of tricellulin delayed the recovery of the barrier and fence functions after Ca(2+) repletion. Thus, the dynamic behavior of tricellulin during the destruction and formation of TJs under various extracellular calcium conditions seems to be closely associated with the barrier and fence functions of TJs."	"Different expressions of erbB1/2 and tight junction proteins in hypertrophic inferior turbinates and nasal polyps. Both inferior turbinate hypertrophy and nasal polyp formation entail the enlargement of the nasal mucosa caused by rhinosinusitis, but their macro/microscopic and clinical findings differ markedly. This study aimed at investigating differences in the expressions of erbB1/2 and the tight junction proteins, claudin-1 and tricellulin, in the two tissues. Ten inferior turbinates and ten nasal polyps were collected. The expressions of erbB1/2, claudin-1, and tricellulin were examined by fluorescence immunohistochemistry and by quantitative real-time transcription-polymerase chain reaction (qRT-PCR). The eosinophil count and % of nasal gland area in the mucosa were also measured. The fluorescence intensities in the inferior turbinates were higher for erbB1/2 and lower for claudin-1 than those in the nasal polyps. The results of qRT-PCR were consistent with the immunohistochemical findings for erbB1/2. The quantity of tricellulin mRNA was significantly higher in the inferior turbinates than in the nasal polyps. The % of nasal gland area was significantly higher but the eosinophil count was significantly lower in the inferior turbinate than in the nasal polyp. These results suggest that the underlying pathogenesis of hypertrophic inferior turbinates and nasal polyps is likely to differ with respect to regeneration/proliferation and thus the remodeling process."	"The occludin and ZO-1 complex, defined by small angle X-ray scattering and NMR, has implications for modulating tight junction permeability. Tight junctions (TJs) are dynamic cellular structures that are critical for compartmentalizing environments within tissues and regulating transport of small molecules, ions, and fluids. Phosphorylation-dependent binding of the transmembrane protein occludin to the structural organizing protein ZO-1 contributes to the regulation of barrier properties; however, the details of their interaction are controversial. Using small angle X-ray scattering (SAXS), NMR chemical shift perturbation, cross-saturation, in vitro binding, and site-directed mutagenesis experiments. we define the interface between the ZO-1 PDZ3-SH3-U5-GuK (PSG) and occludin coiled-coil (CC) domains. The interface is comprised of basic residues in PSG and an acidic region in CC. Complex formation is blocked by a peptide (REESEEYM) that corresponds to CC residues 468-475 and includes a previously uncharacterized phosphosite, with the phosphorylated version having a larger effect. Furthermore, mutation of E470 and E472 reduces cell border localization of occludin. Together, these results localize the interaction to an acidic region in CC and a predominantly basic helix V within the ZO-1 GuK domain. This model has important implications for the phosphorylation-dependent regulation of the occludin:ZO-1 complex."	"Regulation of tight junctions in human normal pancreatic duct epithelial cells and cancer cells. To investigate the regulation of tight junction molecules in normal human pancreatic duct epithelial (HPDE) cells and pancreatic cancer cells, we introduced the human telomerase reverse transcriptase (hTERT) gene into HPDE cells in primary culture and compared them to pancreatic cancer cell lines. The hTERT-transfected HPDE cells were positive for PDE markers and expressed claudin-1, claudin-4, claudin-7, and claudin-18, occludin, tricellulin, marvelD3, JAM-A, zonula occludens (ZO)-1, and ZO-2. The tight junction molecules, including claudin-4 and claudin-18 of normal HPDE cells, were in part regulated via a protein kinase C signal pathway by transcriptional control. In addition, claudin-18 in normal HPDE cells and pancreatic cancer cells was markedly induced by a PKC activator, and claudin-18 in pancreatic cancer cells was also modified by DNA methylation. In the marvel family of normal HPDE cells and pancreatic cancer cells, tricellulin was upregulated via a c-Jun N-terminal kinase pathway, and marvelD3 was downregulated during Snail-induced epithelial-mesenchymal transition."	"Lipolysis-stimulated lipoprotein receptor: a novel membrane protein of tricellular tight junctions. Tricellular tight junctions (tTJs) are specialized structural variants of tight junctions that restrict the free diffusion of solutes at the extracellular space of tricellular contacts. Their presence at cell corners, situated in the angles between three adjacent epithelial cells, was identified early by electron microscopy, but despite their potential importance, tTJs have been generally ignored in epithelial cell biology. Tricellulin was the first molecular component of tTJs shown to be involved in their formation and in epithelial barrier function. However, the precise molecular organization and function of tTJs are still largely unknown. Recently, we identified the lipolysis-stimulated lipoprotein receptor (LSR) as a tTJ-associated membrane protein. LSR recruits tricellulin to tTJs, suggesting that the LSR-tricellulin system plays a key role in tTJ formation. In this paper, we summarize the identification and characterization of LSR as a molecular component of tTJs."	"Shigella targets epithelial tricellular junctions and uses a noncanonical clathrin-dependent endocytic pathway to spread between cells. Bacteria move between cells in the epithelium using a sequential pseudopodium-mediated process but the underlying mechanisms remain unclear. We show that during cell-to-cell movement, Shigella-containing pseudopodia target epithelial tricellular junctions, the contact point where three epithelial cells meet. The bacteria-containing pseudopodia were engulfed by neighboring cells only in the presence of tricellulin, a protein essential for tricellular junction integrity. Shigella cell-to-cell spread, but not pseudopodium protrusion, also depended on phosphoinositide 3-kinase, clathrin, Epsin-1, and Dynamin-2, which localized beneath the plasma membrane of the engulfing cell. Depleting tricellulin, Epsin-1, clathrin, or Dynamin-2 expression reduced Shigella cell-to-cell spread, whereas AP-2, Dab2, and Eps15 were not critical for this process. Our findings highlight a mechanism for Shigella dissemination into neighboring cells via targeting of tricellular junctions and a noncanonical clathrin-dependent endocytic pathway."	"Tricellulin expression in normal and neoplastic human pancreas.  Tricellulin is a member of the family of tight junction proteins, which are found concentrated mainly at tricellular contacts. Altered expression of several tight junction components has been observed during carcinogenesis. In the present study, we have analysed the expression of tricellulin in normal human pancreas, and in primary exocrine and endocrine pancreatic tumours.  A total of 96 cases were studied: 20 normal pancreas, 58 pancreatic ductal adenocarcinomas, 15 pancreatic endocrine neoplasms, and three acinar cell carcinomas. Immunohistochemistry (analysed by digital morphometry), immunofluorescence, western blot analysis and reverse transcription polymerase chain reaction were performed. Tricellulin was localized apically in normal ducts and acini as intensive, spotty immunopositivity at tricellular contacts, whereas weaker signals were observed at the junction between two cells. Islets of Langerhans were negative. Well-differentiated ductal adenocarcinomas significantly overexpressed tricellulin as compared with poorly differentiated adenocarcinomas. Acinar cell carcinomas expressed tricellulin in tumour cells. All endocrine tumours were tricellulin-negative.  This is the first report to describe the tricellulin expression profile in normal and neoplastic human pancreas. Both normal and neoplastic pancreatic exocrine tissues expressed tricellulin, whereas no expression was seen in normal or neoplastic endocrine cells. Tricellulin expression in pancreatic ductal adenocarcinomas showed a significant negative correlation with the degree of differentiation."	"Possible involvement of tight junctions, extracellular matrix and nuclear receptors in epithelial differentiation. Tight junctions are intercellular junctions localized at the most apical end of the lateral plasma membrane. They consist of four kinds of transmembrane proteins (occludin, claudins, junctional adhesion molecules, and tricellulin) and huge numbers of scaffolding proteins and contribute to the paracellular barrier and fence function. The mutation and deletion of these proteins impair the functions of tight junctions and cause various human diseases. In this paper, we provide an overview of recent studies on transmembrane proteins of tight junctions and highlight the functional significance of tight junctions, extracellular matrix, and nuclear receptors in epithelial differentiation."	"DFNB49 is an important cause of non-syndromic deafness in Czech Roma patients but not in the general Czech population. Due to endogamy, the Roma have a higher risk for autosomal recessive (AR) disorders. We used homozygosity mapping on single-nucleotide polymorphism chips in one Czech Roma consanguineous family with non-syndromic hearing loss (NSHL). The second largest homozygous region in a deaf patient was mapped to the previously reported DFNB49 region. The MARVELD2 gene was recently reported as a causal gene for NSHL DFNB49. Sequencing of the MARVELD2 gene revealed a previously reported homozygous mutation c.1331+2 T&gt;C (IVS4 + 2 T&gt;C) in the deaf child. Subsequently, the same mutation was found in two more Roma families from an additional 19 unrelated Czech Roma patients with deafness tested for the MARVELD2 gene. To explore the importance of MARVELD2 mutations and DFNB49 for the general Czech and Central European population with early hearing loss we also tested 40 unrelated Czech patients with AR NSHL. No pathogenic mutation in the MARVELD2 gene was found in a group of 40 Czech non-Roma patients. Mutations in the MARVELD2 gene seem to be a significant cause of early NSHL in Czech Roma and this gene should be tested in this group of patients after GJB2."	"A look at tricellulin and its role in tight junction formation and maintenance. Tight junctions are elaborate networks of transmembrane and cytosolic proteins that regulate epithelial permeability. Tricellulin was the first tight junction protein found at tricellular tight junctions, the specialized structures occurring where three cells meet together. Here, we summarize the current knowledge about tricellulin (marvelD2), a MARVEL domain protein. We address tricellulin location at tricellular junctions, and establish the comparison with the other members of the MARVEL family, occludin (marvelD1) and marvelD3. The structure of tricellulin and its membrane folding, as well as the proposed molecular interactions of tricellulin with other tight junction proteins, together with the interplay between those proteins are also discussed. In addition, we address the role of tricellulin in barrier properties, discriminating the involvement of the protein in paracellular permeability at bicellular and at tricellular tight junctions. Moreover, the key importance of the protein for hearing is highlighted based on the fact that mutations in TRIC, the human tricellulin gene, lead to deafness. Furthermore, this review points to some of the aspects that still deserve clarification for a better understanding of the biology of tight junctions in general and of tricellulin in particular."	"Downregulation of tight junction-associated MARVEL protein marvelD3 during epithelial-mesenchymal transition in human pancreatic cancer cells. The novel tight junction protein marvelD3 contains a conserved MARVEL (MAL and related proteins for vesicle trafficking and membrane link) domain like occludin and tricellulin. However, little is yet known about the detailed role and regulation of marvelD3 in normal epithelial cells and cancer cells, including pancreatic cancer. In the present study, we investigated marvelD3 expression in well and poorly differentiated human pancreatic cancer cell lines and normal pancreatic duct epithelial cells in which the hTERT gene was introduced into human pancreatic duct epithelial cells in primary culture, and the changes of marvelD3 during Snail-induced epithelial-mesenchymal transition (EMT) under hypoxia, TGF-β treatment and knockdown of FOXA2 in well differentiated pancreatic cancer HPAC cells. MarvelD3 was transcriptionally downregulated in poorly differentiated pancreatic cancer cells and during Snail-induced EMT of pancreatic cancer cells in which Snail was highly expressed and the fence function downregulated, whereas it was maintained in well differentiated human pancreatic cancer cells and normal pancreatic duct epithelial cells. Depletion of marvelD3 by siRNAs in HPAC cells resulted in downregulation of barrier functions indicated as a decrease in transepithelial electric resistance and an increase of permeability to fluorescent dextran tracers, whereas it did not affect fence function of tight junctions. In conclusion, marvelD3 is transcriptionally downregulated in Snail-induced EMT during the progression for the pancreatic cancer."	"Evidence of tricellulin expression by immune cells, particularly microglia. Tight junctions (TJs) are elaborate structures located on the apical region of epithelial cells that limit paracellular permeability. Tricellulin is a recently discovered TJ protein, which is concentrated at the structurally specialized tricellular TJs but also present at bicellular contacts between epithelial cells, namely in the stomach. Interestingly, several TJ proteins have been found in other than epithelial cells, as astrocytes, and tricellulin mRNA expression was reported in mature dendritic cells. These findings prompted us to look for tricellulin expression in both epithelial and immune cells in the stomach, as well as in microglia, the brain resident immunocompetent cells. Immunohistochemical analysis of human stomach tissue sections revealed peroxidase staining at three-corner contact sites, as well as at the contact between two adjacent epithelial cells, thus evidencing the expression of tricellulin not only at tricellullar but at bicellular junctions as well. Such analysis, further revealed tricellulin immunostaining in cells of the monocyte/macrophage lineage, scattered throughout the lamina propria. Cultured rat microglia exhibited a notorious tricellulin staining, consistent with an extensive expression of the protein along the cell, which was not absolutely coincident with the lysosomal marker CD68. Detection of mRNA expression by real-time PCR provided supportive evidence for the expression of the TJ protein in microglia. These data demonstrate for the first time that microglia express a TJ protein. Moreover, the expression of tricellulin both in microglia and in the stomach immune cells point to a possible role of this new TJ protein in the immune system."	"Claudins and tricellulin in fibrolamellar hepatocellular carcinoma. Fibrolamellar hepatocellular carcinoma is a subtype of hepatocellular carcinoma occurring in non-cirrhotic liver at a younger age. The tumor expresses both hepatocellular and cholangiocellular markers. Previously, our group described overexpression of tight junction protein claudin 4 in cholangiocellular carcinoma in contrast to hepatocellular carcinoma. In the present study, tight junction protein expressions were studied to possibly clarify bipotential lineage of fibrolamellar hepatocellular carcinoma. Eleven fibrolamellar hepatocellular carcinomas were compared with seven &quot;conventional&quot; hepatocellular carcinomas, seven cholangiocellular carcinomas, and five normal liver samples. By immunohistochemistry, all fibrolamellar hepatocellular carcinomas were positive for HepPar1 and cytokeratins 7, 8, and 18, but negative for cytokeratin 19. Glypican-3 gave weak staining in two cases. Expression of claudin 1 was lower, while that of claudin 2 was higher in fibrolamellar hepatocellular carcinomas than in other tumors. Claudins 3, 4, and 7 were not detectable in fibrolamellar hepatocellular carcinomas as in the majority of &quot;conventional&quot; hepatocellular carcinomas, contrary to high expression observed in cholangiocellular carcinomas. Focal or diffuse claudin 5 expression was detected in nine of 11 fibrolamellar hepatocellular carcinomas contrary to other tumors. Tricellulin was significantly downregulated in all tumors compared with normal liver. Our findings showed claudins to exhibit specific expression patterns in fibrolamellar hepatocellular carcinomas not observed in other primary liver tumors, with unique claudin 5 expression and pattern features similar to common hepatocellular carcinoma, but different from cholangiocellular carcinoma. This is the first report describing the loss of tricellulin expression in human hepatic tumors."	"Altered expression of claudin-1, claudin-7, and tricellulin regardless of human papilloma virus infection in human tonsillar squamous cell carcinoma. Altered expression of claudin-1, claudin-7, and tricellulin in early tonsillar squamous cell carcinoma (SCC) independent of human papilloma virus (HPV) infection may lead to tumor progression. Integral tight junction proteins, the claudins and tricellulin, play a crucial role in all tissues. HPV is significantly associated with tonsillar SCC. We sought to determine the expression of claudin-1, claudin-7, and tricellulin in HPV-infected and HPV-free tonsillar SCC. Twenty-eight tonsillar SCCs were studied by immunohistochemical analysis and real-time reverse transcription polymerase chain reaction with in situ hybridization analysis. Compared with normal tissues, claudin-1 was strongly expressed, whereas claudin-7 and tricellulin were weakly expressed or were absent in primary SCC and metastatic lymph nodes. Claudin-7 and tricellulin were markedly reduced at all stages of tumor development. In situ hybridization analysis showed no correlation between HPV infection and altered expression of the tight junction proteins."	"LSR defines cell corners for tricellular tight junction formation in epithelial cells. Epithelial cell contacts consist of not only bicellular contacts but also tricellular contacts, where the corners of three cells meet. At tricellular contacts, tight junctions (TJs) generate specialized structures termed tricellular TJs (tTJs) to seal the intercellular space. Tricellulin is the only known molecular component of tTJs and is involved in the formation of tTJs, as well as in the normal epithelial barrier function. However, the detailed molecular mechanism of how tTJs are formed and maintained remains elusive. Using a localization-based expression cloning method, we identified a novel tTJ-associated protein known as lipolysis-stimulated lipoprotein receptor (LSR). Upon LSR knockdown in epithelial cells, tTJ formation was affected and the epithelial barrier function was diminished. Tricellulin accumulation at the tricellular contacts was also diminished in these cells. By contrast, LSR still accumulated at the tricellular contacts upon tricellulin knockdown. Analyses of deletion mutants revealed that the cytoplasmic domain of LSR was responsible for the recruitment of tricellulin. On the basis of these observations, we propose that LSR defines tricellular contacts in epithelial cellular sheets by acting as a landmark to recruit tricellulin for tTJ formation."	"Tricellulin is expressed in autotypic tight junctions of peripheral myelinating Schwann cells. Autotypic tight junctions are formed by tight junction-like structures in three regions of myelinating Schwann cells, the paranodal loops, Schmidt-Lanterman incisures, and outer/inner mesaxons, and various tight junction molecules, including claudin-19 and junctional adhesion molecule (JAM)-C. Our findings demonstrate the identification and subcellular distribution of a novel tricellular tight junction protein, tricellulin (TRIC), in the autotypic tight junctions of mouse myelinating Schwann cells, compared with the autotypic adherens junction protein E-cadherin and the autotypic tight junction protein JAM-C, which are expressed in the paranodal loops, Schmidt-Lanterman incisures, and mesaxons. In real-time RT-PCR, the expression level of TRIC mRNA was about 10-fold higher in the sciatic nerve than in the spinal cord or cerebrum. In immunostaining, TRIC signals were completely restricted to the peripheral nervous system (PNS) and strongly concentrated at the paranodal loops, Schmidt-Lanterman incisures, and mesaxons of myelinating Schwann cells. In addition, TRIC was expressed in the thin region of the paranode and there was a gap between TRIC and the Na+ channel. Furthermore, TRIC was more distally located from the node than E-cadherin and was colocalized with JAM-C. It is possible that TRIC may be a component to maintain the integrity for PNS myelin function and morphology. This manuscript contains online supplemental material at http://www.jhc.org. Please visit this article online to view these materials."	"Effect of cAMP derivates on assembly and maintenance of tight junctions in human umbilical vein endothelial cells. Endothelial tight and adherens junctions control a variety of physiological processes like adhesion, paracellular transport of solutes or trafficking of activated leukocytes. Formation and maintenance of endothelial junctions largely depend on the microenvironment of the specific vascular bed and on interactions of the endothelium with adjacent cell types. Consequently, primary cultures of endothelial cells often lose their specific junctional pattern and fail to establish tight monolayer in vitro. This is also true for endothelial cells isolated from the vein of human umbilical cords (HUVEC) which are widely used as model for endothelial cell-related studies. We here compared the effect of cyclic 3'-5'-adenosine monophosphate (cAMP) and its derivates on formation and stabilization of tight junctions and on alterations in paracellular permeability in HUVEC. We demonstrated by light and confocal laser microscopy that for shorter time periods the sodium salt of 8-bromoadenosine-cAMP (8-Br-cAMP/Na) and for longer incubation periods 8-(4-chlorophenylthio)-cAMP (pCPT-cAMP) exerted the greatest effects of all compounds tested here on formation of continuous tight junction strands in HUVEC. We further demonstrated that although all compounds induced protein kinase A-dependent expression of the tight junction proteins claudin-5 and occludin only pCPT-cAMP slightly enhanced paracellular barrier functions. Moreover, we showed that pCPT-cAMP and 8-Br-cAMP/Na induced expression and membrane translocation of tricellulin. pCPT-cAMP and, to a lesser extend, 8-Br-cAMP/Na improved formation of continuous tight junction strands and decreased paracellular permeability in primary HUVEC. We concluded that under these conditions HUVEC represent a feasible in vitro model to study formation and disassembly of endothelial tight junctions and to characterize tight junction-associated proteins."	"c-Jun N-terminal kinase is largely involved in the regulation of tricellular tight junctions via tricellulin in human pancreatic duct epithelial cells. Tricellulin (TRIC) is a tight junction protein at tricellular contacts where three epithelial cells meet, and it is required for the maintenance of the epithelial barrier. To investigate whether TRIC is regulated via a c-Jun N-terminal kinase (JNK) pathway, human pancreatic HPAC cells, highly expressed at tricellular contacts, were exposed to various stimuli such as the JNK activators anisomycin and 12-O-tetradecanoylphorbol 13-acetate (TPA), and the proinflammatory cytokines IL-1β, TNFα, and IL-1α. TRIC expression and the barrier function were moderated by treatment with the JNK activator anisomycin, and suppressed not only by inhibitors of JNK and PKC but also by siRNAs of TRIC. TRIC expression was induced by treatment with the PKC activator TPA and proinflammatory cytokines IL-1β, TNFα, and IL-1α, whereas the changes were inhibited by a JNK inhibitor. Furthermore, in normal human pancreatic duct epithelial cells using hTERT-transfected primary cultured cells, the responses of TRIC expression to the various stimuli were similar to those in HPAC cells. TRIC expression in tricellular tight junctions is strongly regulated together with the barrier function via the JNK transduction pathway. These findings suggest that JNK may be involved in the regulation of tricellular tight junctions including TRIC expression and the barrier function during normal remodeling of epithelial cells, and prevent disruption of the epithelial barrier in inflammation and other disorders in pancreatic duct epithelial cells."	"Negative regulation of the tight junction protein tricellulin by snail-induced epithelial-mesenchymal transition in gastric carcinoma cells. Tricellulin plays a central role in the sealing of epithelia at tricellular contacts. We examined the effects of Snail, an epithelial-mesenchymal transition (EMT)-related transcription factor, on the regulation of tricellulin expression in human gastric carcinoma (GC)-derived cells. Six human GC-derived cell lines were used in this study. Expression and localization of tricellulin was analyzed by reverse transcription (RT)-PCR and immunohistochemistry. Also, a Snail expression vector was transfected into HSC-45 cells to examine altered mRNA levels of tricellulin,E-cadherin, vimentin, N-cadherin and several EMT transcription factors by quantitative real-time RT-PCR. Abundant tricellulin expression was detected in all GC-derived cells examined. In HSC-45 cells, transduction of Snail decreased the expression levels of tricellulin and E-cadherin but increased vimentin and N-cadherin, which was accompanied by induction of EMT transcription factors such as Twist1, Twist2 and Slug. In normal gastric mucosa, tricellulin protein was localized at the tricellular tight junction; however, in HSC-45 cells, tricellulin protein was distributed in the cytoplasm. In GC tissues, tricellulin expression at the cellular membrane was retained in a subset of EMT-negative GCs, and it disappeared in EMT-positive GCs. The findings in the present study suggest that repression of tricellulin expression may be related to Snail-induced EMT in human GCs."	"Tight junction-associated MARVEL proteins marveld3, tricellulin, and occludin have distinct but overlapping functions. In vitro studies have demonstrated that occludin and tricellulin are important for tight junction barrier function, but in vivo data suggest that loss of these proteins can be overcome. The presence of a heretofore unknown, yet related, protein could explain these observations. Here, we report marvelD3, a novel tight junction protein that, like occludin and tricellulin, contains a conserved four-transmembrane MARVEL (MAL and related proteins for vesicle trafficking and membrane link) domain. Phylogenetic tree reconstruction; analysis of RNA and protein tissue distribution; immunofluorescent and electron microscopic examination of subcellular localization; characterization of intracellular trafficking, protein interactions, dynamic behavior, and siRNA knockdown effects; and description of remodeling after in vivo immune activation show that marvelD3, occludin, and tricellulin have distinct but overlapping functions at the tight junction. Although marvelD3 is able to partially compensate for occludin or tricellulin loss, it cannot fully restore function. We conclude that marvelD3, occludin, and tricellulin define the tight junction-associated MARVEL protein family. The data further suggest that these proteins are best considered as a group with both redundant and unique contributions to epithelial function and tight junction regulation."	"Expression and localization of tricellulin in human nasal epithelial cells in vivo and in vitro. Tricellulin was identified as the first marker of the tricellular tight junction, which forms at the meeting points of three cells, and it is required for the maintenance of the transepithelial barrier. Although it is also considered to be important for the mucosal barrier of the upper respiratory tract, little is known about its expression and localization. In the present study, we examined the expression and localization of tricellulin in normal human nasal epithelial cells in vivo and in vitro, especially using primary cultures and telomerase reverse transcriptase (hTERT)-transfected cells. In human nasal epithelial cells in vivo and in vitro, mRNA and protein of tricellulin were detected. It was localized not only at tricellular contacts but also at bicellular borders, and in part colocalized with occludin. In human nasal epithelium, by immunoelectron microscopy analysis, tricellulin-associated gold particles were observed around the junction-like structure of the uppermost region. By treatment with 10% fetal bovine serum (FBS), expression of tricellulin mRNA was weakly increased, whereas that of bicellular tight junction molecules was strongly increased, in real-time PCR. These results suggest that tricellulin is stably expressed in human nasal epithelial cells and may play an important role for the sealing of the corner at tricellular contacts to prevent infiltration by various inhaled viruses and antigens."	"Differential phosphorylation of occludin and tricellulin by CK2 and CK1. In epithelial and endothelial cell layers tight junctions form selective apicolateral paracellular barriers separating luminal and extracellular spaces from the underlying tissues. Within the tight junctions the tetraspan transmembrane proteins occludin, claudins, and tricellulin form anastomosing strands of protein complexes, which interconnect opposing membranes of neighboring cells. Phosphorylation of tight junction components is critically involved in the regulation of tight junction assembly, maintenance, and function. This chapter compares occludin and tricellulin phosphorylation by the serine/threonine kinases CK2 and CK1."	"Tricellulin forms a barrier to macromolecules in tricellular tight junctions without affecting ion permeability. Tricellulin is a tight junction protein localized in tricellular tight junctions (tTJs), the meeting points of three cells, but also in bicellular tight junctions (bTJs). To investigate its specific barrier functions in bTJs and tTJs, TRIC-a was expressed in low-level tricellulin-expressing cells, and MDCK II, either in all TJs or only in tTJs. When expressed in all TJs, tricellulin increased paracellular electrical resistance and decreased permeability to ions and larger solutes, which are associated with enhanced ultrastructural integrity of bTJs toward enhanced strand linearity. In tTJs in contrast, ultrastructure was unchanged and tricellulin minimized permeability to macromolecules but not to ions. This paradox is explained by properties of the tTJ central tube which is wide enough for passage of macromolecules, but too rare to contribute significantly to ion permeability. In conclusion, at low tricellulin expression the tTJ central tube forms a pathway for macromolecules. At higher expression, tricellulin forms a barrier in tTJs effective only for macromolecules and in bTJs for solutes of all sizes."	"Loss of occludin affects tricellular localization of tricellulin. The tricellular tight junction (tTJ) forms at the convergence of bicellular tight junctions (bTJs) where three epithelial cells meet in polarized epithelia, and it is required for the maintenance of the transepithelial barrier. Tricellulin is a four transmembrane domain protein recently identified as the first marker of tTJ, but little is known about how tricellulin is localized at tTJs. As for the molecular mechanism of association of tricellulin with tight junctions (TJs), we found that tricellulin was incorporated into claudin-based TJs independently of binding to zona occludens-1. Unexpectedly, exogenous expression of tricellulin increased cross-links of TJ strands in the plasma membrane. As for the molecular mechanisms for localization of tricellulin at tricellular junctions, we found that knockdown of occludin caused mislocalization of tricellulin to bTJs, implying that occludin supports tricellular localization of tricellulin by excluding tricellulin from bTJs."	"Knockout animals and natural mutations as experimental and diagnostic tool for studying tight junction functions in vivo. Two sides of functions of tight junctions; the barrier and the channel in the paracellular pathway are believed to be essential for the development and physiological functions of organs. Recent identification of molecular components of tight junctions has enabled us to analyze their functions by generating knockout mice of the corresponding genes. In addition, positional cloning has identified mutations in the genes of several components of tight junctions in hereditary diseases. These studies have highlighted in vivo functions of tight junctions."	"Splice-site mutations in the TRIC gene underlie autosomal recessive nonsyndromic hearing impairment in Pakistani families. Hereditary hearing impairment (HI) displays extensive genetic heterogeneity. To date, 67 autosomal recessive nonsyndromic hearing impairment (ARNSHI) loci have been mapped, and 24 genes have been identified. This report describes three large consanguineous ARNSHI Pakistani families, all of which display linkage to marker loci located in the genetic interval of DFNB49 locus on chromosome 5q13. Recently, Riazuddin et al. (Am J Hum Genet 2006; 79:1040-1051) reported that variants within the TRIC gene, which encodes tricellulin, are responsible for HI due to DFNB49. TRIC gene sequencing in these three families led to the identification of a novel mutation (IVS4+1G&gt; A) in one family and the discovery of a previously described mutation (IVS4+2T&gt; C) in two families. It is estimated that 1.06% (95% confidence interval 0.02-3.06%) of families with ARNSHI in Pakistan manifest HI due to mutations in the TRIC gene."	"Tight junction modulators: promising candidates for drug delivery. Recent advances in genomic drug development and high-throughput technologies, such as combinatorial chemistry, high throughput screening and in silico screening, are making it easier to screen compounds with pharmaceutical activity. Drugs developed by genomic and throughput technologies traverse the epithelial and endothelial membranes. Although the paracellular pathway is a potent drug delivery route for these drugs, few strategies for their delivery have been developed because tight junctions (TJs), which exist between adjacent cells, strictly regulate the movement of solutes. Recent progress in biology of TJs has provided new insights into the biochemical and functional structure of TJs, and into the roles that occludin, claudins and tricellulin play in regulating TJ barriers. Novel strategies based on TJ-components for delivering drugs through the paracellular pathway have been developed. In this review, we discuss drug delivery through the paracellular route within the context of biology of TJs, as well as future directions of TJ-component-based drug delivery systems."	"Transmembrane proteins of tight junctions. Tight junctions contribute to the paracellular barrier, the fence dividing plasma membranes, and signal transduction, acting as a multifunctional complex in vertebrate epithelial and endothelial cells. The identification and characterization of the transmembrane proteins of tight junctions, claudins, junctional adhesion molecules (JAMs), occludin and tricellulin, have led to insights into the molecular nature of tight junctions. We provide an overview of recent progress in studies on these proteins and highlight their roles and regulation, as well as their functional significance in human diseases."	"Vascular permeability in ocular disease and the role of tight junctions. Vascular permeability is closely linked with angiogenesis in a number of pathologies. In the retina, the normally well-developed blood-retinal barrier is altered in a host of eye diseases preceding or commensurate with angiogenesis. This review examines the literature regarding the tight junction complex that establishes the blood-retinal barrier focusing on the transmembrane proteins occludin and the claudin family and the membrane associated protein zonula occludens. The changes observed in these proteins associated with vascular and epithelial permeability is discussed. Finally, novel literature addressing the link between the tight junction complex and angiogenesis is considered."	"The different structures containing tight junction proteins in epidermal and other stratified epithelial cells, including squamous cell metaplasia. In stratified squamous epithelia constituent proteins of tight junctions (TJs) are not restricted to the zonula occludens-related structures of the uppermost living cell layer such as the stratum granulosum of the epidermis but TJ membrane proteins such as occludin and certain members of the claudin family as well as TJ plaque proteins, notably cingulin and protein ZO-1, have also been identified by immunofluorescence and immunoelectron microscopy in more basal layers where they form special cell-cell-connecting structures such as the &quot;lamellated&quot; and the &quot;sandwich&quot; junctions. In the present study, we describe another TJ protein-containing structure, the very small puncta occludentia (&quot;stud junctions&quot;), as the smallest identifiable TJ-like unit that occurs in most, perhaps all strata. We have also determined the specific distributions of TJ proteins in the cell layers of squamous cell metaplasias of the human bronchial tract. Moreover, we show that the occludin-related tetraspanin protein tricellulin-alpha connects and seals the membranes of adjacent &quot;three corner&quot; cell structures of the uppermost layer in keratinocytes growing in culture. We hypothesize the possible occurrence of tricellulin-beta in more basal cell layers of keratinocyte cultures and the general occurrence of different tricellulin splice forms in stratified epithelia in situ, and discuss the possible functions of TJ proteins in stratified epithelia and tumors derived therefrom."	"Tricellulin is a tight-junction protein necessary for hearing. The inner ear has fluid-filled compartments of different ionic compositions, including the endolymphatic and perilymphatic spaces of the organ of Corti; the separation from one another by epithelial barriers is required for normal hearing. TRIC encodes tricellulin, a recently discovered tight-junction (TJ) protein that contributes to the structure and function of tricellular contacts of neighboring cells in many epithelial tissues. We show that, in humans, four different recessive mutations of TRIC cause nonsyndromic deafness (DFNB49), a surprisingly limited phenotype, given the widespread tissue distribution of tricellulin in epithelial cells. In the inner ear, tricellulin is concentrated at the tricellular TJs in cochlear and vestibular epithelia, including the structurally complex and extensive junctions between supporting and hair cells. We also demonstrate that there are multiple alternatively spliced isoforms of TRIC in various tissues and that mutations of TRIC associated with hearing loss remove all or most of a conserved region in the cytosolic domain that binds to the cytosolic scaffolding protein ZO-1. A wild-type isoform of tricellulin, which lacks this conserved region, is unaffected by the mutant alleles and is hypothesized to be sufficient for structural and functional integrity of epithelial barriers outside the inner ear."	"[Molecular mechanism behind the barrier function of tight junctions]. NA"	"Tricellulin constitutes a novel barrier at tricellular contacts of epithelial cells. For epithelia to function as barriers, the intercellular space must be sealed. Sealing two adjacent cells at bicellular tight junctions (bTJs) is well described with the discovery of the claudins. Yet, there are still barrier weak points at tricellular contacts, where three cells join together. In this study, we identify tricellulin, the first integral membrane protein that is concentrated at the vertically oriented TJ strands of tricellular contacts. When tricellulin expression was suppressed with RNA interference, the epithelial barrier was compromised, and tricellular contacts and bTJs were disorganized. These findings indicate the critical function of tricellulin for formation of the epithelial barrier."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO15A"	"nonsyndromic genetic deafness"	"Whole exome sequencing identified mutations causing hearing loss in five consanguineous Pakistani families. Hearing loss is the most common sensory defect, and it affects over 6% of the population worldwide. Approximately 50-60% of hearing loss patients are attributed to genetic causes. Currently, more than 100 genes have been reported to cause non-syndromic hearing loss. It is possible and efficient to screen all potential disease-causing genes for hereditary hearing loss by whole exome sequencing (WES). We collected 5 consanguineous pedigrees from Pakistan with hearing loss and applied WES in selected patients for each pedigree, followed by bioinformatics analysis and Sanger validation to identify the causal genes. Variants in 7 genes were identified and validated in these pedigrees. We identified single candidate variant for 3 pedigrees: GIPC3 (c.937 T &gt; C), LOXHD1 (c.6136G &gt; A) and TMPRSS3 (c.941 T &gt; C). The remaining 2 pedigrees each contained two candidate variants: TECTA (c.4045G &gt; A) and MYO15A (c.3310G &gt; T and c.9913G &gt; C) for one pedigree and DFNB59 (c.494G &gt; A) and TRIOBP (c.1952C &gt; T) for the other pedigree. The candidate variants were validated in all available samples by Sanger sequencing. The candidate variants in hearing-loss genes were validated to be co-segregated in the pedigrees, and they may indicate the aetiologies of hearing loss in such patients. We also suggest that WES may be a suitable strategy for hearing-loss gene screening in clinical detection."	"Whole exome sequencing identifies novel compound heterozygous pathogenic variants in the MYO15A gene leading to autosomal recessive non-syndromic hearing loss. Autosomal recessive non-syndromic hearing loss (ARNSHL) is a highly heterogeneous disease, for which more than 70 genes have been identified. MYO15A mutations have been reported to cause congenital severe-to-profound HL. In this study, we applied the whole exome sequencing (WES) to find the cause of HL in an Iranian family. A proband from an Iranian non-consanguineous family with hearing impaired parents, was examined via WES, after excluding GJB2 mutations as the most common ARNSHL gene via Sanger sequencing. Co-segregation analysis of the candidate variant was done in the family members. Interpretation of variants was according to the American College of Medical Genetics and Genomics (ACMG) guidelines. WES results showed novel compound heterozygous variants (p.Arg1507Ter and p.Val2815Valfs*10) in the MYO15A gene. These two variants, residing in highly conserved regions, were found to be co-segregating in the family and fulfill the criteria of being categorized as pathogenic, according to the ACMG guidelines. Here, we report successful application of WES to identify the molecular pathogenesis of ARNSHL in a patient with ARNSHL, as an example of an extremely heterogeneous disease. In agreement with previous studies, MYO15A is regarded to be important in causing HL in Iran."	"Targeted Next-Generation Sequencing Identified Compound Heterozygous Mutations in MYO15A as the Probable Cause of Nonsyndromic Deafness in a Chinese Han Family. Hearing loss is a highly heterogeneous disorder, with more than 60% of congenital cases caused by genetic factors. This study is aimed at identifying the genetic cause of congenital hearing loss in a Chinese Han family. Auditory evaluation before and after cochlear implantation and targeted next-generation sequencing of 140 deafness-related genes were performed for the deaf proband. Compound heterozygous mutations c.3658_3662del (p. E1221Wfs∗23) and c.6177+1G&gt;T were identified in MYO15A as the only candidate pathogenic mutations cosegregated with the hearing loss in this family. These two variants were absent in 200 normal-hearing Chinese Hans and were classified as likely pathogenic and pathogenic, respectively, based on the ACMG guideline. Our study further expanded the mutation spectrum of MYO15A as the c.3658_3662del mutation is novel and confirmed that deaf patients with recessive MYO15A mutations have a good outcome for cochlear implantation."	"Myosins and Hearing. Hearing loss is both genetically and clinically heterogeneous, and pathogenic variants of over a hundred different genes are associated with this common neurosensory disorder. A relatively large number of these &quot;deafness genes&quot; encode myosin super family members. The evidence that pathogenic variants of human MYO3A, MYO6, MYO7A, MYO15A, MYH14 and MYH9 are associated with deafness ranges from moderate to definitive. Additional evidence for the involvement of these six myosins for normal hearing also comes from animal models, usually mouse or zebra fish, where mutations of these genes cause hearing loss and from biochemical, physiological and cell biological studies of their roles in the inner ear. This chapter focuses on these six genes for which evidence of a causative role in deafness is substantial."	"Comprehensive molecular analysis of 61 Egyptian families with hereditary nonsyndromic hearing loss. Nonsyndromic hearing loss is an extremely heterogeneous disorder. Thus, clinical diagnostics is challenging, in particular due to differences in the etiology of hearing loss between populations. With this study, we wanted to elucidate the genetic basis of hearing loss in 61 consanguineous Egyptian families. In 25 families, linkage analysis was used as a prescreening to identify regions for targeted sequencing of candidate genes. Initially, the coding regions of 12 and later of 94 genes associated with hearing loss were enriched and subjected to massively parallel sequencing (MPS) with diagnostic yields of 36% and 75%, respectively. Causative variants were identified in 48 families (79%). They were found in 23 different genes with the majority being located in MYO15A (15.3%), SLC26A4 (9.7%), GJB2 (8.3%), and MYO7A (6.4%). As many as 32 variants were novel ones at the time of detection. Five variants were shared by two, three, or even four families. Our study provides a first survey of the mutational spectrum of deaf patients in Egypt revealing less GJB2 variants than in many European populations. It underlines the value of targeted enrichment of well-selected deafness genes in combination with MPS in the diagnostics of this frequent and genetically heterogeneous disorder."	"[Sequencing of 100 common variation sites of 18 deafness susceptibility genes among 16 182 individuals from Dongguan]. To determine the type and carrier rate of deafness-related variants in Dongguan, China. A total of 16 182 subjects were screened. Heel blood samples were collected from newborns, while peripheral venous blood samples were collected from the remainders. For each individual, 100 variations of 18 deafness susceptibility genes were detected. In total 1631 deafness-related variants (including 5 homozygous mutations) were detected, which gave a detection rate of 10.08%. The detection rate of SLC26A4 gene variants was the highest (845 cases, 5.22%), which was followed by GJB2 (673 cases, 4.16%), GJB3 (100 cases, 0.62%), TMC1 (12 cases, 0.07%), and MYO15A (1 case, 0.01%). The detection rate for GJB2 c.235delC variant was the highest (524 cases, 3.24%), which was followed by SLC26A4 IVS7-2A&gt;G variant (270 cases, 1.67%). Thirty three individuals (0.20%) carried two variants at the same time, 7 of them (0.04%) carried compound heterozygous variants of the same gene. To expand the range of screening can help with determination of the carrier status and provision of early intervention and genetic counseling for the examinees."	"Genetic testing has the potential to impact hearing preservation following cochlear implantation. Background: Recent advances in less-invasive surgery and electrode design allow for a high degree of hearing preservation (HP) after cochlear implantation (CI), although residual hearing still deteriorates in some patients. To date, the factors predictive of preserving residual hearing remain a controversial topic.Objective: The aim of this study was to investigate the predictive factors, including the etiology of hearing loss (HL) as a patient-related factor, influencing residual HP after CI.Methods: Forty-four patients (50 ears, 41 families) with residual acoustic hearing who underwent CI were included. Auditory thresholds before and at 6 months after initial activation were measured. Genetic testing was performed to identify the responsible genes for HL.Results: We identified the cause of HL in 21 families (51.2%). HP was marginally correlated with age at implantation, while it was independent of pre-operative low-frequency hearing thresholds, cochlear duct length, and electrode length. We found that patients who had pathogenic variants in the CDH23, MYO7A, or MYO15A gene showed statistically better HP scores compared with patients with HL due to other causes (p = .002).Conclusions: Identification of the etiology of HL using genetic testing is likely to facilitate the prediction of HP after implant surgery."	"Investigation of MYO15A and MYO7A Mutations in Iranian Patients with Nonsyndromic Hearing Loss. Background: Hearing loss (HL) is the most common sensory disorder in humans, which affects individuals in both inherited and acquired forms. MYO15A and MYO7A gene mutations have a significant role in the development of deafness. In this study, we assessed the prevalence of MYO15A and MYO7A mutations in one hundred non-relative deaf Iranians. Materials and methods: The existence of MYO15A and MYO7A mutations were assessed using the tetra-primer ARMS-PCR method, High Resolution Melting (HRM) and sequencing method. Results: A heterozygote missense mutation, p.V2135L (c.6403G &gt; T) in the MYO15A gene, was found in a patient using the sequencing method. Conclusion: These results explain the negligible prevalence of selected mutations among Iranian patients. Identifying common mutations in patients of an ethnic group can reduce the financial costs and time needed for identifying the causes of deafness."	"Molecular epidemiology of Chinese Han deaf patients with bi-allelic and mono-allelic GJB2 mutations. Recessive mutations in GJB2 is the most common cause of genetic hearing loss worldwide. The aim of this study is to determine the spectrum and frequency of GJB2 variants in Chinese Han deaf patients and to investigate the underlying causative genes in patients with mono-allelic GJB2 mutations. We analyzed the mutation screening results of GJB2 in 1852 Chinese Han probands with apparently autosomal-recessive hearing loss in our laboratory. Targeted next-generation sequencing of 139 known deafness-related genes were performed in 44 probands with mono-allelic GJB2 mutations. Bi-allelic GJB2 mutations was identified in 25.65% of patients, in which the c.235delC (p.L79Cfs*3) mutation is the most frequent cause for both severe-to-profound (84.93%) and mild-to-moderate hearing loss (54.05%), while the c.109G &gt; A (p.V37I) mutation is another frequent cause for mild-to-moderate hearing loss (40.54%). In 3.89% of patients only one mutant allele can be identified in GJB2. Targeted next generation sequencing in 44 such probands revealed digenic heterozygous mutations in GJB2/GJB6 and GJB2/GJB3 as the likely pathogenic mechanism in three probands. In 13 probands, on the other hand, pathogenic mutations in other deafness-associated genes (STRC, EYA1, MITF, PCDH15, USH2A, MYO15A, CDH23, OTOF, SLC26A4, SMPX, and TIMM8A) can be identified as the independent genetic cause, suggesting that the mono-allelic GJB2 mutations in those probands is likely co-incidental. Our results demonstrated that GJB2 should be a primary target for mutation screening in Chinese Han deaf patients, and those with mono-allelic GJB2 mutations should be further screened by next generation sequencing."	"Mechanotransduction-Dependent Control of Stereocilia Dimensions and Row Identity in Inner Hair Cells. Actin-rich structures, like stereocilia and microvilli, are assembled with precise control of length, diameter, and relative spacing. By quantifying actin-core dimensions of stereocilia from phalloidin-labeled mouse cochleas, we demonstrated that inner hair cell stereocilia developed in specific stages, where a widening phase is sandwiched between two lengthening phases. Moreover, widening of the second-tallest stereocilia rank (row 2) occurred simultaneously with the appearance of mechanotransduction. Correspondingly, Tmc1<sup>KO/KO</sup>;Tmc2<sup>KO/KO</sup> or Tmie<sup>KO/KO</sup> hair cells, which lack transduction, have significantly altered stereocilia lengths and diameters, including a narrowed row 2. EPS8 and the short splice isoform of MYO15A, identity markers for mature row 1 (the tallest row), lost their row exclusivity in transduction mutants. GNAI3, another member of the mature row 1 complex, accumulated at mutant row 1 tips at considerably lower levels than in wild-type bundles. Alterations in stereocilia dimensions and in EPS8 distribution seen in transduction mutants were mimicked by block of transduction channels of cochlear explants in culture. In addition, proteins normally concentrated at mature row 2 tips were also distributed differently in transduction mutants; the heterodimeric capping protein subunit CAPZB and its partner TWF2 never concentrated at row 2 tips like they do in wild-type bundles. The altered distribution of marker proteins in transduction mutants was accompanied by increased variability in stereocilia length. Transduction channels thus specify and maintain row identity, control addition of new actin filaments to increase stereocilia diameter, and coordinate stereocilia height within rows."	"Post-lingual non-syndromic hearing loss phenotype: a polygenic case with 2 biallelic mutations in MYO15A and MITF. Hearing loss (HL) represents the most common congenital sensory impairment with an incidence of 1-5 per 1000 live births. Non-syndromic hearing loss (NSHL) is an isolated finding that is not part of any other disorder accounting for 70% of all genetic hearing loss cases. In the current study, we reported a polygenic mode of inheritance in an NSHL consanguineous family using exome sequencing technology and we evaluated the possible effect of the detected single nucleotide variants (SNVs) using in silico methods. Two bi-allelic SNVs were detected in the affected patients; a MYO15A (. p.V485A) variant, and a novel MITF (p.P338L) variant. Along with these homozygous mutations, we detected two heterozygous variants in well described hearing loss genes (MYO7A and MYH14). The novel MITF p. Pro338Leu missense mutation was predicted to change the protein structure and function. A novel MITF mutation along with a previously described MYO15A mutation segregate with an autosomal recessive non-syndromic HL case with a post-lingual onset. The findings highlight the importance of carrying whole exome sequencing for a comprehensive assessment of HL genetic heterogeneity."	"Brief Report of Variants Detected in Hereditary Hearing Loss Cases in Iran over a 3-Year Period. Diagnosis of hereditary hearing loss (HHL) as a heterogeneous disorder is very important especially in countries with high rates of consanguinity where the autosomal recessive pattern of inheritance is prevalent. Techniques such as next-generation sequencing, a comprehensive genetic test using targeted genomic enrichment and massively parallel sequencing (TGE + MPS), have made the diagnosis more cost-effective. The aim of this study was to determine HHL variants with comprehensive genetic testing in our country. Fifty GJB2 negative individuals with HHL were referred to the Kariminejad-Najmabadi Pathology and Genetics Center, Tehran, one of the reference diagnostic genetic laboratories in Iran, during a 3-year period between 2014 and 2017. They were screened with the OtoSCOPE test, the targeted genomic enrichment and massively parallel sequencing (TGE + MPS) platform after a detailed history had been taken along with clinical evaluation. Among 32 out of 50 GJB2 negative patients (64%), 34 known pathogenic and novel variants were detected of which 16 (47%) were novel, identified in 10 genes of which the most prevalent were CDH23, MYO7A and MYO15A. These results provide a foundation from which to make appropriate recommendations for the use of comprehensive genetic testing in the evaluation of Iranian patients with hereditary hearing loss."	"Delineation of Homozygous Variants Associated with Prelingual Sensorineural Hearing Loss in Pakistani Families. Hearing loss is a genetically heterogeneous disorder affecting approximately 360 million people worldwide and is among the most common sensorineural disorders. Here, we report a genetic analysis of seven large consanguineous families segregating prelingual sensorineural hearing loss. Whole-exome sequencing (WES) revealed seven different pathogenic variants segregating with hearing loss in these families, three novel variants (c.1204G&gt;A, c.322G&gt;T, and c.5587C&gt;T) in TMPRSS3, ESRRB, and OTOF, and four previously reported variants (c.208C&gt;T, c.6371G&gt;A, c.226G&gt;A, and c.494C&gt;T) in LRTOMT, MYO15A, KCNE1, and LHFPL5, respectively. All identified variants had very low frequencies in the control databases and were predicted to have pathogenic effects on the encoded proteins. In addition to being familial, we also found intersibship locus heterogeneity in the evaluated families. The known pathogenic c.226C&gt;T variant identified in KCNE1 only segregates with the hearing loss phenotype in a subset of affected members of the family GCNF21. This study further highlights the challenges of identifying disease-causing variants for highly heterogeneous disorders and reports the identification of three novel and four previously reported variants in seven known deafness genes."	"Neonatal cholestasis, hyperferritinemia, hypoglycemia and deafness: a diagnostic challenge. Neonatal conjugated hyperbilirubinemia is a diagnostic challenge. A full term, small for gestational age boy presented with cholestasis, hypoglycemia, hyperferritinemia and severe bilateral deafness. Diagnostic work-up revealed two hereditary diseases: alpha-1-antitrypsin deficiency (PI*ZZ genotype) and autosomal recessive deafness type 3 (compound heterozygous MYO15A gene mutation). In addition, we found late hypoglycemia on full enteral feeding which complicated this case. Hyperferritinemia is an uncommon finding in newborn cholestasis without liver failure."	"[A differential peptidomics analysis of hippocampal tissue in a rat model of premature white matter injury]. To observe differential peptidomics in the hippocampal tissue in a rat model of premature white matter injury, and to investigate the mechanism of premature white matter injury. Twenty neonatal Sprague-Dawley rats were randomly and equally divided into a control group and a model group. Rats in the model group underwent permanent ligation of the right common carotid artery 2 days after birth, followed by 2 hours of hypoxia. For rats in the control group, the right common carotid artery was isolated, but without ligation and hypoxia. Brain tissue samples were collected from the two groups, and hippocampal tissue was isolated. Liquid chromatography-tandem mass spectrometry combined with tandem mass spectrometry was used for peptidomic profiling of hippocampal tissue, and the differentially expressed peptides between the two groups were subjected to bioinformatics analysis to assess their possible roles in neural development and function. A total of 4164 peptides were identified and quantified, and 262 of them were differentially expressed (absolute fold change ≥2.5), including 164 upregulated peptides and 98 downregulated peptides. The numbers of differentially expressed peptides of the precursor proteins ELN, PCLO, MYO15a, MAP4, and MAP1b were the most, and may play significant roles in the pathogenesis of premature white matter injury. CDK5 signaling pathway in the hippocampus was activated in the rat model of premature white matter injury. The differentially expressed peptides related to precursor proteins such as MAP1b may be key bioactive peptides involved in neural development and function in premature white matter injury, and activation of the CDK5 signaling pathway may be associated with premature white matter injury."	"Linkage analysis of hearing impairment in families of Bannu Distric. To link congenital hearing loss with known loci to establish a platform for future research. The cross-sectional study was conducted from February 2016 to March 2017 in Bannu, Khyber Pakhtunkhwa, Pakistan, and comprised families with Pashtun ethnicity having at least 2 individuals suffering from congenital hearing loss. Deoxyribonucleic acid from whole blood samples was extracted by salting-out method. Amplification was done through touchdown polymerase chain reaction to see any possible linkage to already reported deafness loci. Linkage analysis was carried out using microsatellite markers for each locus. Genotyping of the samples was done and haplotypes were accordingly generated to either include or exclude the linked / unlinked regions. Of the 4 families, family PKDF 1620 showed linkage with DFNB12/CDH23 (D10S1432, D10S606, and D10S1694) and family PKDF 1625 had linkage with DFNB3/MYO15A (D17S2196, D17S2207 and D17S2206). Families PKDF1623 and PKDF1624 showed no linkage with any of the prevalent reported loci in Pakistan . Linkage to DFNB12 and MYO 15 showed heterogeneity of congenital deafness."	"Genetic Epidemiology and Clinical Features of Hereditary Hearing Impairment in the Taiwanese Population. Hereditary hearing impairment (HHI) is a common but heterogeneous clinical entity caused by mutations in a plethora of deafness genes. Research over the past few decades has shown that the genetic epidemiology of HHI varies significantly across populations. In this study, we used different genetic examination strategies to address the genetic causes of HHI in a large Taiwanese cohort composed of &gt;5000 hearing-impaired families. We also analyzed the clinical features associated with specific genetic mutations. Our results demonstrated that next-generation sequencing-based examination strategies could achieve genetic diagnosis in approximately half of the families. Common deafness-associated genes in the Taiwanese patients assessed, in the order of prevalence, included GJB2, SLC26A4, OTOF, MYO15A, and MTRNR1, which were similar to those found in other populations. However, the Taiwanese patients had some unique mutations in these genes. These findings may have important clinical implications for refining molecular diagnostics, facilitating genetic counseling, and enabling precision medicine for the management of HHI."	"Peptidomic analysis of hippocampal tissue for explore leptin neuroprotective effect on the preterm ischemia-hypoxia brain damage model rats. The most common injury of preterm infants is periventricular leukomalacia (PVL) and to date there is still no safe and effective treatment. In our previous studies, leptin has been found to have neuroprotective effects on the preterm ischemia-hypoxia brain damage model rats in animal behavior. To gain insight into the neuroprotective mechanisms of leptin on preterm brain damage model rats, we constructed a comparative peptidomic profiling of hippocampal tissue between leptin-treated after model and preterm ischemia-hypoxia brain damage model rats using a stable isobaric labeling strategy involving tandem mass tag reagents, followed by nano liquid chromatography tandem mass spectrometry. We identified and quantified 4164 peptides, 238 of which were differential expressed in hippocampal tissue in the two groups. A total of 150 peptides were up regulated and 88 peptides were down regulated. These peptides were imported into the Ingenuity Pathway Analysis (IPA) and identified putative roles in nervous system development, function and diseases. We concluded that the preterm ischemia-hypoxia brain damage model with leptin treatment induced peptides changes in hippocampus, and these peptides, especially for the peptides associated &quot;microtubule-associated protein 1b (MAP1b), Elastin (Eln), Piccolo presynaptic cytomatrix protein (Pclo), Zinc finger homeobox 3(Zfhx3), Alpha-kinase 3(Alpk3) and Myosin XVA(Myo15a) &quot;, could be candidate bio-active peptides and participate in neuroprotection of leptin. These may advance our current understanding of the mechanism of leptin's neuroprotective effect on preterm brain damage and may be involved in the etiology of preterm brain damage. Meanwhile, we found that repression of ILK signaling pathway plays a significant role in neuroprotection of leptin. A better understanding of the role of ILK signaling pathway in neuroprotective mechanisms will help scientists and researchers to develop selective, safe and efficacious drug for therapy against human nervous system disorders."	"Report of a Novel Splicing Mutation in the MYO15A Gene in a Patient With Sensorineural Hearing Loss and Spectrum of the MYO15A Mutations. Autosomal recessive non-syndromic hearing loss (ARNSHL) is a genetically heterogeneous sensorineural disorder with an approximate incidence of 1.4:1000 in neonates. Mutations in more than 60 genes including the MYO15A gene has been reported in patients affected with ARNSHL. In the present study, we report a novel MYO15A mutation identified by clinical exome sequencing and confirmed by Sanger sequencing in a consanguineous Iranian family with ARNSHL. A 22-year-old woman with congenital non-syndromic sensorineural hearing loss referred to our medical genetic center. Her parents were consanguineous with F = 1/16 (first cousin), and clinical examination of the patient exclude dysmorphic features. Sanger sequencing of GJB2 and GJB6 genes, which are the most common causes of ARNSHL, was negative. Then she underwent clinical exome sequencing. We found a novel homozygote variant (c.9611_9612+8delTGGTGAGCAT) in the MYO15A gene which creates a shift in the reading frame starting at codon 3204. This variant was confirmed by Sanger sequencing in the patient and also in her parents who were heterozygous. The present results suggest that the homozygous MYO15A (c.9611_9612+8delTGGTGAGCAT) variant is a pathogenic mutation and to the best of our knowledge, this mutation has not been reported in any database."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Proband Whole-Exome Sequencing Identified Genes Responsible for Autosomal Recessive Non-Syndromic Hearing Loss in 33 Chinese Nuclear Families. Autosomal recessive non-syndromic hearing loss (ARNSHL) is a highly heterogeneous disease involving more than 70 pathogenic genes. However, most ARNSHL families have small-sized pedigrees with limited genetic information, rendering challenges for the molecular diagnosis of these patients. Therefore, we attempted to establish a strategy for identifying deleterious variants associated with ARNSHL by applying proband whole-exome sequencing (proband-WES). Aside from desiring to improve molecular diagnostic rates, we also aimed to search for novel deafness genes shared by patients with similar phenotype, making up for the deficiency of small ARNSHL families. In this study, 48.5% (16/33) families were detected the pathogenic variants in eight known deafness genes, including 10 novel variants identified in TMPRSS3 (MIM 605551), MYO15A (MIM 602666), TMC1 (MIM 606706), ADGRV1 (MIM 602851), and PTPRQ (MIM 603317). Apart from six novel variants with a truncating effect (nonsense, deletion, insertion, and splice-site), four novel missense variants were not found in 200 unrelated control population by using Sanger sequencing. It is important to note that none of novel genes were shared across different pedigrees, indicating that a larger sample size might be needed. Proband-WES is a cost-effective and precise way of identifying causative variants in nuclear families with ARNSHL. This economical strategy may be appropriated as a clinical application to provide molecular diagnostics, genetic counseling, and individualized health maintenance measures for patients with ARNSHL at hearing clinics."	"Identification of Main Genetic Causes Responsible for Non-Syndromic Hearing Loss in a Peruvian Population. : Hearing loss (HL) is a common sensory disorder affecting over 5% of the global population. The etiology underlying HL includes congenital and acquired causes; genetic factors are the main cause in over 50% of congenital cases. Pathogenic variants in the GJB2 gene are a major cause of congenital non-syndromic hearing loss (NSHL), while their distribution is highly heterogeneous in different populations. To the best of our knowledge, there is no data regarding the genetic etiologies of HL in Peru. In this study, we screened 133 Peruvian families with NSHL living in Lima. We sequenced both exons of the GJB2 gene for all probands. Seven probands with familial NSHL that remained negative for GJB2 variants underwent whole genome sequencing (WGS). We identified biallelic pathogenic variants in GJB2 in 43 probands; seven were heterozygous for only one allele. The c.427C&gt;T variant was the most common pathogenic variant followed by the c.35delG variant. WGS revealed three novel variants in MYO15A in two probands, one of them was predicted to affect splicing and the others produce a premature stop codon. The Peruvian population showed a complex profile for genetic variants in the GJB2 gene, this particular profile might be a consequence of the admixture history in Peru."	"Identification of a novel homozygous mutation in the MYO15A gene in a Kazakh family with non-syndromic hearing loss. Millions of people around the world are plagued by hearing loss. More than 50% of congenital or pre-lingual deafness is associated with genetic factors and has highly genetic heterogeneity. To date, although hundreds of genes have been found to be implicated in non-syndromic deafness, there are still lots of genes or loci that we need to verify. In this study, we performed target sequencing and Sanger sequencing in a Kazakh consanguineous family with autosomal recessive non-syndromic hearing loss. Following that, functional and structural studies predicted the pathogenic effect of novel mutations by use of the online tools. We identified a novel homozygous mutation p.R3191C in MYO15A gene causing deafness in this family. The mutation p.R3191C co-segregated with the disease phenotype in this family and was not present in any public databases. Automatic tools predict that the novel mutation makes a great impact on the function and structure of MYO15A protein. This is a novel mutation of MYO15A causing deafness and also the first report of MYO15A mutations causing deafness in the Kazakh families. This finding expanded the spectrum of MYO15A mutations, making it more precise for future genetic diagnosis in patients with deafness."	"Identification of novel variants in MYO15A, OTOF, and RDX with hearing loss by next-generation sequencing. Nonsyndromic hearing loss (NSHL) is the most common sensorineural disorder and one of the most common human defects. Autosomal recessive inheritance accounts for a huge percentage of familial cases. Next-generation sequencing (NGS) is a powerful molecular diagnostic strategy for NSHL. The combination of a microarray gene chip and NGS can better delineate the etiology and genetic cause of deafness in many cases. One hundred and thirty-one unrelated students with NSHL who attend a special education school in Yunnan Province were recruited. Firstly, four common deafness-related genes (GJB2, GJB3, SLC26A4, and mtDNA 12S rRNA) were evaluated for mutations using a microarray kit. Furthermore, 227 known human deafness genes were sequenced to identify the responsible genetic variant of the proband in three Chinese families with autosomal recessive hearing loss. The mutational status of family members of the probands was validated by Sanger sequencing. Five novel variants were found in three families using NGS. In family 1, we identified compound heterozygosity at the MYO15A (OMIM, #600316), including an duplication variant c.3866dupC, p.His1290Alafs*25 and a 3-bp deletion (c.10251_10253del, p.Phe3420del), resulting in protein length changes and premature protein truncation, respectively. In family 2, two affected siblings from a consanguineous Chinese Dai family harbored an c.1274G&gt;C, p.Arg425Pro missense variant in the OTOF (OMIM, #601071). In family 3, we identified compound heterozygosity for c.129_130del, p.His43Glnfs*28 and c.76_79del, p.Lys26* in the RDX gene (OMIM, #611022). Five novel variants were found in three families with NSHL. Our findings extend the mutational spectrum in deafness-related genes and will help physicians in better understanding the etiology of hearing loss."	"Genotype-phenotype correlation analysis of MYO15A variants in autosomal recessive non-syndromic hearing loss. MYO15A variants are responsible for human non-syndromic autosomal recessive deafness (DFNB3). The majority of MYO15A variants are associated with a congenital severe-to-profound hearing loss phenotype, except for MYO15A variants in exon 2, which cause a milder auditory phenotype, suggesting a genotype-phenotype correlation of MYO15A. However, MYO15A variants not in exon 2 related to a milder phenotype have also been reported, indicating that the genotype-phenotype correlation of MYO15A is complicated. This study aimed to provide more cases of MYO15A variation with diverse phenotypes to analyse this complex correlation. Fifteen Chinese autosomal recessive non-syndromic hearing loss (ARNSHL) individuals with MYO15A variants (8 males and 7 females) from 14 unrelated families, identified by targeted gene capture of 127 known candidate deafness genes, were recruited. Additionally, we conducted a review of the literature to further analyses all reported MYO15A genotype-phenotype relationships worldwide. We identified 16 novel variants and 12 reported pathogenic MYO15A variants in 15 patients, two of which presented with a milder phenotype. Interestingly, one of these cases carried two reported pathogenic variants in exon 2, while the other carried two novel variants not in exon 2. Based on our literature review, MYO15A genotype-phenotype correlation analysis showed that almost all domains were reported to be correlated with a milder phenotype. However, variants in the N-terminal domain were more likely to cause a milder phenotype. Using next-generation sequencing (NGS), we also found that the number of known MYO15A variants with milder phenotypes in Southeast Asia has increased in recent years. Our work extended the MYO15A variant spectrum, enriched our knowledge of auditory phenotypes, and tried to explore the genotype-phenotype correlation in different populations in order to investigate the cause of the complex MYO15A genotype-phenotype correlation."	"Identification and Clinical Implications of a Novel MYO15A Variant in a Consanguineous Iranian Family by Targeted Exome Sequencing. Hereditary hearing loss (HL) is known by a very high genetic heterogeneity, which makes a molecular diagnosis problematic. Next-generation sequencing (NGS) is a new strategy that can overcome this problem. A comprehensive family history was obtained, and clinical evaluations and pedigree analysis were performed in the family with 3 affected members. After excluding mutations in the GJB2 and 7 other most common autosomal recessive nonsyndromic HL genes via Sanger sequencing and genetic linkage analysis in the family, we applied the Otogenetics deafness NGS panel in the proband of this family. NGS results showed a novel rare variant (c.7720C&gt;T) in the MYO15A gene. This nonsense variant in the exon 40 of the MYO15A gene fulfills the criteria of being categorized as pathogenic according to the American College of Medical Genetics and Genomics guideline. New DNA sequencing technologies could lead to identification of the disease causing variants in highly heterogeneous disorders such as HL."	"The prevalence of deafness-associated mutations in neonates: A meta-analysis of clinical trials. The causative genes associated with autosomal recessive non-syndromic hearing loss (ARNSHL) have been identified, in order of prevalence are GJB2, SLC26A4, MYO15A, OTOF, CDH23, and TMC1. To evaluate the prevalence of deafness-associated mutations in neonates and the clinical value of screening, we performed a meta-analysis of clinical trials. The main criteria used to select articles was that the studies were designed to detect deafness genetic mutations in Chinese's neonates, and the screening kits were designed to detect 9 or 20 sites in four deafness-causative genes. The combined effect of genetic screening was measured by the pooled prevalence of mutations with 95% confidence intervals (CIs). The Random Model was used to estimate the pooled prevalence of mutations. We included 18 studies (a total of 261766 neonates) from studies using 9-mutation screening kit, and 15 studies (a total of 131158 neonates) from studies using the 20-mutation screening kit to conduct meta-analysis. The Random Model was used to estimate the pooled prevalence of mutations due to large heterogeneity (9 sites: I<sup>2</sup> = 89.1%, P = 0.0000; 20 sites: I<sup>2</sup> = 97.3%, P = 0.0002). The pooled prevalence of mutations in 9 sites group was 0.043 (95%CI:0.039-0.047, Z = 21.49, P = 0.000)and 20 sites group was 0.047(95%CI:0.041-0.053, Z = 15.84, P = 0.000). The prevalence of deafness-associated mutations in neonates in China is 4.7%; Based on the current detection technology and deafness genetics knowledge, it may be more reasonable to offer 1494C &gt; T and 1555A &gt; G mutation screening to pregnant women. Decision makers should think about how to use the current deafness genetic screening to amplify the effectiveness of hearing screening."	"GPSM2-GNAI Specifies the Tallest Stereocilia and Defines Hair Bundle Row Identity. The transduction compartment of inner ear hair cells, the hair bundle, is composed of stereocilia rows of graded height, a property essential for sensory function that remains poorly understood at the molecular level. We previously showed that GPSM2-GNAI is enriched at stereocilia distal tips and required for their postnatal elongation and bundle morphogenesis-two characteristics shared with MYO15A (short isoform), WHRN, and EPS8 proteins. Here we first performed a comprehensive genetic analysis of the mouse auditory epithelium to show that GPSM2, GNAI, MYO15A, and WHRN operate in series within the same pathway. To understand how these functionally disparate proteins act as an obligate complex, we then systematically analyzed their distribution in normal and mutant bundles over time. We discovered that WHRN-GPSM2-GNAI is an extra module recruited by and added to a pre-existing MYO15A-EPS8 stereocilia tip complex. This extended complex is only present in the first, tallest row, and is required to stabilize larger amounts of MYO15A-EPS8 than in shorter rows, which at tips harbor only MYO15A-EPS8. In the absence of GPSM2 or GNAI function, including in the epistatic Myo15a and Whrn mutants, bundles retain an embryonic-like organization that coincides with generic stereocilia at the molecular level. We propose that GPSM2-GNAI confers on the first row its unique tallest identity and participates in generating differential row identity across the hair bundle."	"Elucidation of the unique mutation spectrum of severe hearing loss in a Vietnamese pediatric population. The mutational spectrum of deafness in Indochina Peninsula, including Vietnam, remains mostly undetermined. This significantly hampers the progress toward establishing an effective genetic screening method and early customized rehabilitation modalities for hearing loss. In this study, we evaluated the genetic profile of severe-to-profound hearing loss in a Vietnamese pediatric population using a hierarchical genetic analysis protocol that screened 11 known deafness-causing variants, followed by massively parallel sequencing targeting 129 deafness-associated genes. Eighty-seven children with isolated severe-to-profound non-syndromic hearing loss without family history were included. The overall molecular diagnostic yield was estimated to be 31.7%. The mutational spectrum for severe-to-profound non-syndromic hearing loss in our Vietnamese population was unique: The most prevalent variants resided in the MYO15A gene (7.2%), followed by GJB2 (6.9%), MYO7A (5.5%), SLC26A4 (4.6%), TMC1 (1.8%), ESPN (1.8%), POU3F4 (1.8%), MYH14 (1.8%), EYA1 (1.8%), and MR-RNR1 (1.1%). The unique spectrum of causative genes in the Vietnamese deaf population was similar to that in the southern Chinese deaf population. It is our hope that the mutation spectrum provided here could aid in establishing an efficient protocol for genetic analysis of severe-to-profound hearing loss and a customized screening kit for the Vietnamese population."	"Mutation screening in non-syndromic hearing loss patients with cochlear implantation by massive parallel sequencing in Taiwan. To explore the molecular epidemiology of rare deafness genes in Taiwanese sensorineural hearing impairment (SNHI) patients with cochlear implantation (CI) by performing massive parallel sequencing (MPS) and correlating genetic factors and CI outcomes. We enrolled 41 Taiwanese non-syndromic deafness patients with CI that lacked known mutations in common deafness genes. All probands were screened by a targeted exon amplification method that used massively parallel sequencing to screen a customized panel that included 40 relatively rare non-syndromic deafness genes. Thirteen candidate variants in nine relatively rare deafness genes (MYO15A, TMC1, MYH14, MYO3A, ACTG1, COL11A2, DSPP, GRHL2, and WFS1) were identified in 24.4% (10/41) of the non-syndromic deafness probands with CI. According to the ACMG Standards and Guidelines, five variants in MYO15A and ACTG1 were classified as likely pathogenic variants. Two of three multi-generational pedigrees exhibiting deafness were analyzed for the segregation of the disorder with the possible disease-causing variants. Patients with variants detected in most of the identified variant-bearing genes showed relatively good CI outcomes. We successfully identified candidate variants in partially deaf Taiwanese probands who lacked the known mutations in common deafness genes. Comparing the progress of hearing rehabilitation in CI patients with their apparent causative variants and the expression profiles of their altered genes allowed us to speculate on how alterations in specific gene sets may influence outcomes in hearing rehabilitation after CI."	"Genetic screening involving 101 hot spots for neonates not passing newborn hearing screening and those random recruited in Dongguan. In order to investigate essential molecular causes for hearing loss and mutation frequency of deafness-related genes, 1315 newborns who did not pass the Newborn Hearing Screening (NHS) (audio-no-pass) and 1000 random-selected infants were subjected to detection for 101 hotspot mutations in 18 common deafness-related genes. Totally, 23 alleles of 7 deafness genes were detected out. Significant difference (χ<sup>2</sup> = 25.320, p = 0.000) existed in causative mutation frequency between audio-no-pass group (81/1315, 6.160%) and random-selected cohort (18/1000, 1.80%). Of the genes detected out, GJB2 gene mutation was with significant difference (χ<sup>2</sup> = 75.132, p = 0.000) between audio-no-pass group (417/1315, 31.711%) and random-selected cohort (159/1000, 15.900%); c.109G &gt; A was the most common allele, as well as the only one with significantly different allele frequency (χ<sup>2</sup> = 79.327, p = 0.000) between audio-no-pass group (392/1315, 16.84%) and random-selected cohort (140/1000, 7.55%), which suggested c.109G &gt; A mutation was critical for newborns' hearing loss. This study performed detection for such a large scale of deafness-associated genes and for the first time compared mutations between audio-no-pass and random-recruited neonates, which not only provided more reliable DNA diagnosis result for medical practioners and enhanced clinical care for the newborns, but gave more accurate estimation for mutation frequency."	"Novel mutations in MYTH4-FERM domains of myosin 15 are associated with autosomal recessive nonsyndromic hearing loss. Hereditary hearing loss is the most common neurosensory disorder in humans caused by myriad mutations in numerous genes. Autosomal recessive nonsyndromic hearing loss (ARNSHL) accounts for 80% of hearing impairments of genetic origin and is quite prevalent in societies with a high rate of consanguinity. In the current study, we investigated the causes of sensorineural hearing loss in 24 unrelated Iranian families who were mainly consanguineous and had at least two affected children. All probands were initially screened for GJB2 mutations, as the most common causes of ARNSHL in Iran. Verified GJB2-negative samples were subsequently subjected to whole exome sequencing (WES) to identify the underlying causes of hearing impairment, and the variants identified in each family were further confirmed by Sanger sequencing. WES revealed three previously unreported mutations in MYO15A, the gene encoding the unconventional myosin 15 (Myo15). All variants identified, c.C6436T (p.R2146W), c.C9584G (p.P3195R) and c.G10266C (p.Q3422H), reside in the MYTH4 (myosin tail homology) and FERM (4.1 ezrin, radixin, moesin) domains of the protein. Globally, mutations in MYO15A are considered to be among the most prevalent genetic causes of ARNSHL, and they rank as the third leading cause of hearing loss in the Iranian population, below GJB2 and SLC26A4. Yet again, these results endorse the importance of MYO15 screening in hearing impaired populations, particularly in Iran."	"Genetics of hearing loss in the Arab population of Northern Israel. For multiple generations, much of the Arab population of Northern Israel has lived in communities with consanguineous marriages and large families. These communities have been particularly cooperative and informative for understanding the genetics of recessive traits. We studied the genetics of hearing loss in this population, evaluating 168 families from 46 different villages. All families were screened for founder variants by Sanger sequencing and 13 families were further evaluated by sequencing all known genes for hearing loss using our targeted gene panel HEar-Seq. Deafness in 34 of 168 families (20%) was explained by founder variants in GJB2, SLC26A4, or OTOF. In 6 of 13 families (46%) evaluated using HEar-Seq, deafness was explained by damaging alleles of SLC26A4, MYO15A, OTOG, LOXHD1, and TBC1D24. In some genes critical to hearing, it is particularly difficult to interpret variants that might affect splicing, because the genes are not expressed in accessible tissue. To address this problem for possible splice-altering variants of MYO15A, we evaluated minigenes transfected into HEK293 cells. Results revealed exon skipping in the message of MYO15A c.9083+6T&gt;A, and intron retention in the message of MYO15A c.8340G&gt;A, in each case leading to a premature stop and consistent with co-segregation of homozygosity for each variant with hearing loss. The profile of genetics of hearing loss in this population reflects the genetic heterogeneity of hearing loss and the usefulness of synthetic technologies to evaluate potentially causal variants in genes not expressed in accessible tissues."	"A novel nonsense mutation in MYO15A is associated with non-syndromic hearing loss: a case report. Hearing loss is genetically heterogeneous and is one of the most common human defects. Here we screened the underlying mutations that caused autosomal recessive non-syndromic hearing loss in a Chinese family. The proband with profound hearing loss had received audiometric assessments. We performed target region capture and next generation sequencing of 127 known deafness-related genes because the individual tested negative for hotspot variants in the GJB2, GJB3, SLC26A4, and MTRNR1 genes. We identified a novel c.6892C &gt; T (p.R2298*) nonsense mutation and a c.10251_10253delCTT (p.F3420del) deletion in MYO15A. Sanger sequencing confirmed that both mutations were co-segregated with hearing loss in this family and were absent in 200 ethnically matched controls. Bioinformatics analysis and protein modeling indicated the deleterious effects of both mutations. The p.R2298* mutation leads to a truncated protein and a loss of the functional domains. Our results demonstrated that the hearing loss in this case was caused by novel, compound heterozygous mutations in MYO15A. The p.R2298* mutation in MYO15A was reported for the first time, which has implications for genetic counseling and provides insight into the functional roles of MYO15A mutations."	"Comprehensive genomic diagnosis of non-syndromic and syndromic hereditary hearing loss in Spanish patients. Sensorineural hearing loss (SNHL) is the most common sensory impairment. Comprehensive next-generation sequencing (NGS) has become the standard for the etiological diagnosis of early-onset SNHL. However, accurate selection of target genomic regions (gene panel/exome/genome), analytical performance and variant interpretation remain relevant difficulties for its clinical implementation. We developed a novel NGS panel with 199 genes associated with non-syndromic and/or syndromic SNHL. We evaluated the analytical sensitivity and specificity of the panel on 1624 known single nucleotide variants (SNVs) and indels on a mixture of genomic DNA from 10 previously characterized lymphoblastoid cell lines, and analyzed 50 Spanish patients with presumed hereditary SNHL not caused by GJB2/GJB6, OTOF nor MT-RNR1 mutations. The analytical sensitivity of the test to detect SNVs and indels on the DNA mixture from the cell lines was &gt; 99.5%, with a specificity &gt; 99.9%. The diagnostic yield on the SNHL patients was 42% (21/50): 47.6% (10/21) with autosomal recessive inheritance pattern (BSND, CDH23, MYO15A, STRC [n = 2], USH2A [n = 3], RDX, SLC26A4); 38.1% (8/21) autosomal dominant (ACTG1 [n = 3; 2 de novo], CHD7, GATA3 [de novo], MITF, P2RX2, SOX10), and 14.3% (3/21) X-linked (COL4A5 [de novo], POU3F4, PRPS1). 46.9% of causative variants (15/32) were not in the databases. 28.6% of genetically diagnosed cases (6/21) had previously undetected syndromes (Barakat, Usher type 2A [n = 3] and Waardenburg [n = 2]). 19% of genetic diagnoses (4/21) were attributable to large deletions/duplications (STRC deletion [n = 2]; partial CDH23 duplication; RDX exon 2 deletion). In the era of precision medicine, obtaining an etiologic diagnosis of SNHL is imperative. Here, we contribute to show that, with the right methodology, NGS can be transferred to the clinical practice, boosting the yield of SNHL genetic diagnosis to 50-60% (including GJB2/GJB6 alterations), improving diagnostic/prognostic accuracy, refining genetic and reproductive counseling and revealing clinically relevant undiagnosed syndromes."	"Three MYO15A Mutations Identified in One Chinese Family with Autosomal Recessive Nonsyndromic Hearing Loss. Hearing impairment is one of the most common sensory disease, of which more than 50% is attributed to a genetic etiology. The goal of this research is to explore the genetic cause of a Chinese deafness pedigree who was excluded of GJB2, SLC26A4, or MtDNA12SrRNA variants. Three variants, c.3971C&gt;A (p.A1324D), c.4011insA (p.Q1337Qfs<sup>∗</sup>22), and c.9690+1G&gt;A, in the MYO15A gene were identified by targeted capture sequencing and Sanger sequencing, and the first two of them were novel. These variants were cosegregated with the disease in this family and absent in 200 normal hearing persons. They were concluded to be pathogenic mutations by phylogenetic analysis and structure modeling. Thus, the combined use of SNPScan assay and targeted capture sequencing is a high-efficiency and cost-effective screening procedure for hereditary hearing loss. Genetic counseling would be important for this family, and our finding would be a great supplement to the mutation spectrum of MYO15A."	"Identification of Pathogenic Genes of Nonsyndromic Hearing Loss in Uyghur Families Using Massively Parallel DNA Sequencing Technique. We aim to identify the mutations of deafness genes using massively parallel DNA sequencing in the 12 Uyghur families. SNPscan method was used to screen against the 124 sites in the common deafness genes in probands. Subjects with SNPscan negativity were subject to massively parallel DNA sequencing for the sequencing of 97 genes known to be responsible for hearing loss. Eight families (66.7%) showed biallelic mutations in probands, including MYO15A mutation (6892C&gt;T in J02 family, 9514C&gt;T/7894G&gt;T in J07 family, and 9514C&gt;T in J16 family), MYO7A mutation (1258A&gt;T in J03 family), TMC1 mutation (773G&gt;A in J09 family and 1247T&gt;G/1312G&gt;A in J11 family), and PCDH15 mutation (4658delT in J08 and J13 families). Six novel types of mutation were identified including 6892C&gt;T, 9514C&gt;T/7894G&gt;T, and 9514C&gt;T in MYO15A gene, 1258A&gt;T in MYO7A, 773G&gt;A in TMC1, and 4658delT in PCDH15. The ratio of nonsense mutation and frameshift mutation was comparatively high. All these indicated that the mutation types reported in this study were rare. In conclusion, rare deafness genes were identified in the Uyghur families using massively parallel DNA sequencing, part of which were suggested to be related to the pathogenesis of the disease."	"Comprehensive Molecular Screening in Chinese Usher Syndrome Patients. Usher syndrome (USH) refers to a group of autosomal recessive disorders causing deafness and blindness. The objectives of this study were to determine the mutation spectrum in a cohort of Chinese patients with USH and to describe the clinical features of the patients with mutations. A total of 119 probands who were clinically diagnosed with USH were recruited for genetic analysis. All probands underwent ophthalmic examinations. A combination of molecular screening methods, including targeted next-generation sequencing, Sanger-DNA sequencing, and multiplex ligation probe amplification assay, was used to detect mutations. We found biallelic mutations in 92 probands (77.3%), monoallelic mutations in 5 patients (4.2%), and 1 hemizygous mutation in 1 patient (0.8%), resulting in an overall mutation detection rate of 78.2%. Overall, 132 distinct disease-causing mutations involving seven USH (ABHD12, CDH23, GPR98, MYO7A, PCDH15, USH1C, and USH2A) genes; 5 other retinal degeneration genes (CHM, CNGA1, EYS, PDE6B, and TULP1); and 1 nonsyndromic hearing loss gene (MYO15A) were identified, and 78 were novel. Mutations of MYOA7 were responsible for 60% of USH1 families, followed by PCDH15 (20%) and USH1C (10%). Mutations of USH2A accounted for 67.7% of USH2 families, and mutation c.8559-2A&gt;G was the most frequent one, accounting for 19.1% of the identified USH2A alleles. Our results confirm that the mutation spectrum for each USH gene in Chinese patients differs from those of other populations. The formation of the mutation profile for the Chinese population will enable a precise genetic diagnosis for USH patients in the future."	"Leveraging lung tissue transcriptome to uncover candidate causal genes in COPD genetic associations. Causal genes of chronic obstructive pulmonary disease (COPD) remain elusive. The current study aims at integrating genome-wide association studies (GWAS) and lung expression quantitative trait loci (eQTL) data to map COPD candidate causal genes and gain biological insights into the recently discovered COPD susceptibility loci. Two complementary genomic datasets on COPD were studied. First, the lung eQTL dataset which included whole-genome gene expression and genotyping data from 1038 individuals. Second, the largest COPD GWAS to date from the International COPD Genetics Consortium (ICGC) with 13 710 cases and 38 062 controls. Methods that integrated GWAS with eQTL signals including transcriptome-wide association study (TWAS), colocalization and Mendelian randomization-based (SMR) approaches were used to map causality genes, i.e. genes with the strongest evidence of being the functional effector at specific loci. These methods were applied at the genome-wide level and at COPD risk loci derived from the GWAS literature. Replication was performed using lung data from GTEx. We collated 129 non-overlapping risk loci for COPD from the GWAS literature. At the genome-wide scale, 12 new COPD candidate genes/loci were revealed and six replicated in GTEx including CAMK2A, DMPK, MYO15A, TNFRSF10A, BTN3A2 and TRBV30. In addition, we mapped candidate causal genes for 60 out of the 129 GWAS-nominated loci and 23 of them were replicated in GTEx. Mapping candidate causal genes in lung tissue represents an important contribution to the genetics of COPD, enriches our biological interpretation of GWAS findings, and brings us closer to clinical translation of genetic associations."	"Expansion of phenotypic spectrum of MYO15A pathogenic variants to include postlingual onset of progressive partial deafness. MYO15A variants, except those in the N-terminal domain, have been shown to be associated with congenital or pre-lingual severe-to-profound hearing loss (DFNB3), which ultimately requires cochlear implantation in early childhood. Recently, such variants have also been shown to possibly cause moderate-to-severe hearing loss. Herein, we also demonstrate that some MYO15A mutant alleles can cause postlingual onset of progressive partial deafness. Two multiplex Korean families (SB246 and SB224), manifesting postlingual, progressive, partial deafness in an autosomal recessive fashion, were recruited. Molecular genetics testing was performed in two different pipelines, in a parallel fashion, for the SB246 family: targeted exome sequencing (TES) of 129 known deafness genes from the proband and whole exome sequencing (WES) of all affected subjects. Only the former pipeline was performed for the SB224 family. Rigorous bioinformatics analyses encompassing structural variations were executed to investigate any causative variants. In the SB246 family, two different molecular diagnostic pipelines provided exactly the same candidate variants: c.5504G &gt; A (p.R1835H) in the motor domain and c.10245_10247delCTC (p.S3417del) in the FERM domain of MYO15A. In the SB224 family, c.9790C &gt; T (p.Q3264X) and c.10263C &gt; G (p.I3421M) in the FERM domain were detected as candidate variants. Some recessive MYO15A variants can cause postlingual onset of progressive partial deafness. The phenotypic spectrum of DFNB3 should be extended to include such partial deafness. The mechanism for a milder phenotype could be due to the milder pathogenic potential from hypomorphic alleles of MYO15A or the presence of modifier genes. This merits further investigation."	"Genetics Of Human Hereditary Hearing Impairment. Hereditary hearing impairment is heterogeneous type of disorder which can be caused due to environmental as well as genetical factors. Two distinct types of hereditary hearing loss are syndromic or non-syndromic. Non-syndromic hearing loss is further categorized as autosomal recessive, autosomal dominant, X-linked and mitochondrial deafness. Autosomal recessive occurs more frequently as compared to autosomal dominant. Mutations in various genes are responsible for hereditary hearing impairment. To date, about 99 autosomal recessives and 67 autosomal dominant genes for deafness have been discovered. Some of important genes include GJB2, JGB6, GJB3 which encodes gap junction proteins, MYO7A, MYO15A encodes myosine proteins, OTOF encodes otoferlin, and SLC26A4 encodes anion exchanger protein. Up till now, the mutation in GJB2 gene occurs more frequently in different population of the world and cause autosomal recessive hearing impairment. The purpose of this review article was to explore the mutation and function of those muted genes which encode different type of protein and responsible either for autosomal recessive or autosomal dominant hearing impairment."	"Combined genetic approaches yield a 48% diagnostic rate in a large cohort of French hearing-impaired patients. Hearing loss is the most common sensory disorder and because of its high genetic heterogeneity, implementation of Massively Parallel Sequencing (MPS) in diagnostic laboratories is greatly improving the possibilities of offering optimal care to patients. We present the results of a two-year period of molecular diagnosis that included 207 French families referred for non-syndromic hearing loss. Our multi-step strategy involved (i) DFNB1 locus analysis, (ii) MPS of 74 genes, and (iii) additional approaches including Copy Number Variations, in silico analyses, minigene studies coupled when appropriate with complete gene sequencing, and a specific assay for STRC. This comprehensive screening yielded an overall diagnostic rate of 48%, equally distributed between DFNB1 (24%) and the other genes (24%). Pathogenic genotypes were identified in 19 different genes, with a high prevalence of GJB2, STRC, MYO15A, OTOF, TMC1, MYO7A and USH2A. Involvement of an Usher gene was reported in 16% of the genotyped cohort. Four de novo variants were identified. This study highlights the need to develop several molecular approaches for efficient molecular diagnosis of hearing loss, as this is crucial for genetic counselling, audiological rehabilitation and the detection of syndromic forms."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"STRC Deletion is a Frequent Cause of Slight to Moderate Congenital Hearing Impairment in the Czech Republic. This study aimed to clarify the molecular epidemiology of hearing loss by identifying the responsible genes in patients without GJB2 mutations. Prospective genetic study. Tertiary referral hospital. Fifty one patients with bilateral sensorineural hearing loss, 20 men, and 31 women, mean age 24.9 years, range 3 to 64 years, from 49 families. GJB2 and deltaGJB6-D13S1830 mutations were excluded previously. Diagnostic. Sixty-nine genes reported to be causative of hearing loss were analyzed. Sequence capture technology, next-generation sequencing, and multiplex ligation-dependent probe amplification (MLPA) were used. Coverage of STRC was screened in Integrative Genomics Viewer software. Identification of causal pathogenic mutations in genes related to deafness. Five families (10%) had recessive STRC deletions or mutations. Five unrelated patients (10%) had recessive mutations in TMPRSS3, USH2A, PCDH15, LOXHD1, and MYO15A. Three families (6%) had autosomal dominant mutations in MYO6A, KCNQ4, and SIX1. One family (2%) had an X-linked POU3F4 mutation. Thus, we identified the cause of hearing loss in 28% of the families studied. Following GJB2, STRC was the second most frequently mutated gene in patients from the Czech Republic with hearing loss. To decrease the cost of testing, we recommend STRC deletion screening with MLPA before next-generation sequencing. The existence of a pseudogene and polymorphic STRC regions can lead to false-positive or false-negative results when copy number variation analysis is based on next-generation sequencing data."	"Homozygous mutations in PJVK and MYO15A genes associated with non-syndromic hearing loss in Moroccan families. Autosomal recessive non-syndromic hearing loss is a heterogeneous disorder and the most prevalent human genetic sensorineural defect. In this study, we investigated the geneticcause of sensorineural hearing loss in Moroccan patients and presented the importance of whole exome sequencing (WES) to identify candidate genes in two Moroccan families with profound deafness. After excluding mutations previously reported in Moroccan deaf patients, whole exome sequencing was performed and Sanger sequencing was used to validate mutations in these genes. Our results disclosed the c.113_114insT (p.Lys41GlufsX8) and c.406C &gt; T (p.Arg130X) homozygous mutations in PJVK and a homozygous c.5203C &gt; T (p.Arg1735Trp) mutation in MYO15A, both genes responsible for non-syndromic recessive hearing loss DFNB59 and DFNB3, respectively. We identified in Moroccan deaf patients two mutations in PJVK and one mutation in MYO15A described for the first time in association with non-syndromic recessive hearing loss. These results emphasize that whole exome sequencing is a powerful diagnostic strategy to identify pathogenic mutations in heterogeneous disorders with many various causative genes."	"Carrier re-sequencing reveals rare but benign variants in recessive deafness genes. For recessive Mendelian disorders, determining the pathogenicity of rare, non-synonymous variants in known causative genes can be challenging without expanded pedigrees and/or functional analysis. In this study, we proposed to establish a database of rare but benign variants in recessive deafness genes by systematic carrier re-sequencing. As a pilot study, 30 heterozygous carriers of pathogenic variants for deafness were identified from unaffected family members of 18 deaf probands. The entire coding regions of the corresponding genes were re-sequenced in those carriers by targeted next-generation sequencing or Sanger sequencing. A total of 32 non-synonymous variants were identified in the normal-hearing carriers in trans with the pathogenic variant and therefore were classified as benign. Among them were five rare (minor allele frequencies less than 0.005) variants that had previously undefined, disputable or even misclassified function: p.A434T (c.1300 G &gt; A) in SLC26A4, p.R266Q (c.797 G &gt; A) in LOXHD1, p.K96Q (c.286 A &gt; C) in MYO15A, p.T123N (c.368 C &gt; A) in GJB2 and p.V1299I (c.797 G &gt; A) in CDH23. Our results suggested that large scale carrier re-sequencing may be warranted to establish a database of rare but benign variants in causative genes in order to reduce false positive genetic diagnosis of recessive Mendelian disorders."	"Structure of Myo7b/USH1C complex suggests a general PDZ domain binding mode by MyTH4-FERM myosins. Unconventional myosin 7a (Myo7a), myosin 7b (Myo7b), and myosin 15a (Myo15a) all contain MyTH4-FERM domains (myosin tail homology 4-band 4.1, ezrin, radixin, moesin; MF) in their cargo binding tails and are essential for the growth and function of microvilli and stereocilia. Numerous mutations have been identified in the MyTH4-FERM tandems of these myosins in patients suffering visual and hearing impairment. Although a number of MF domain binding partners have been identified, the molecular basis of interactions with the C-terminal MF domain (CMF) of these myosins remains poorly understood. Here we report the high-resolution crystal structure of Myo7b CMF in complex with the extended PDZ3 domain of USH1C (a.k.a., Harmonin), revealing a previously uncharacterized interaction mode both for MyTH4-FERM tandems and for PDZ domains. We predicted, based on the structure of the Myo7b CMF/USH1C PDZ3 complex, and verified that Myo7a CMF also binds to USH1C PDZ3 using a similar mode. The structure of the Myo7b CMF/USH1C PDZ complex provides mechanistic explanations for &gt;20 deafness-causing mutations in Myo7a CMF. Taken together, these findings suggest that binding to PDZ domains, such as those from USH1C, PDZD7, and Whirlin, is a common property of CMFs of Myo7a, Myo7b, and Myo15a."	"MYO15A splicing mutations in hearing loss: A review literature and report of a novel mutation. Sensorineural hearing loss (SNHL) is the most prevalent genetic sensory defect in humans, affecting about 1 in 1000 newborns around the world. Non-syndromic SNHL accounts for nearly 70% of hereditary hearing loss and 80% of SNHL cases show an autosomal recessive mode of inheritance (ARNSHL). In the present study, we applied targeted-exome sequencing to a family with a single proband affected by congenital sensorineural hearing loss. 127 known genes were sequenced to find the causative mutation. One novel homozygous donor splice site mutation, c.4596 + 1G &gt; A (IVS12 + 1G &gt; A) was found in MYO15A gene. Analysis of this mutation within the family showed that the mutation segregates with hearing loss. New DNA sequencing technologies could lead to identification of the disease causing variants especially in highly heterogeneous disorders such as hearing loss."	"Genetic Predisposition to Sporadic Congenital Hearing Loss in a Pediatric Population. Discriminating between inherited and non-inherited sporadic hearing loss is challenging. Here, we attempted to delineate genetic inheritance in simplex cases of severe-to-profound congenital hearing loss in Korean children. Variations in SLC26A4 and GJB2 in 28 children with bilateral severe-to-profound non-syndromic hearing loss (NSHL) without familial history were analyzed using Sanger sequencing. Genetic analysis of individuals without mutations in SLC26A4 and GJB2 was performed by whole exome sequencing (WES). Bi-allelic mutations in SLC26A4 and GJB2 were identified in 12 and 3 subjects, respectively. Of the 13 individuals without mutations in SLC26A4 and GJB2, 2 and 1 carried compound heterozygous mutations in MYO15A and CDH23, respectively. Thus, 64.3% (18/28) of individuals with NSHL were determined to be genetically predisposed. Individuals with sporadic severe-to-profound NSHL were found to mostly exhibit an autosomal recessive inheritance pattern. Novel causative candidate genes for NSHL were identified by analysis of WES data of 10 families without mutations in known causative genes. Bi-allelic mutations predisposing to NSHL were identified in 64.3% of subjects with sporadic severe-to-profound NSHL. Given that several causative genes for NSHL are still unidentified, genetic inheritance of sporadic congenital hearing loss could be more common than that indicated by our results."	"Transcriptome Analysis of Hypothalamic Gene Expression during Daily Torpor in Djungarian Hamsters (Phodopus sungorus). Animals living at high or temperate latitudes are challenged by extensive changes in environmental conditions over seasons. Djungarian hamsters (Phodopus sungorus) are able to cope with extremely cold ambient temperatures and food scarcity in winter by expressing spontaneous daily torpor. Daily torpor is a circadian controlled voluntary reduction of metabolism that can reduce energy expenditure by up to 65% when used frequently. In the past decades it has become more and more apparent, that the hypothalamus is likely to play a key role in regulating induction and maintenance of daily torpor, but the molecular signals, which lead to the initiation of daily torpor, are still unknown. Here we present the first transcriptomic study of hypothalamic gene expression patterns in Djungarian hamsters during torpor entrance. Based on Illumina sequencing we were able to identify a total number of 284 differentially expressed genes, whereby 181 genes were up- and 103 genes down regulated during torpor entrance. The 20 most up regulated group contained eight genes coding for structure proteins, including five collagen genes, dnha2 and myo15a, as well as the procoagulation factor vwf. In a proximate approach we investigated these genes by quantitative real-time PCR (qPCR) analysis over the circadian cycle in torpid and normothermic animals at times of torpor entrance, mid torpor, arousal and post-torpor. These qPCR data confirmed up regulation of dnah2, myo15a, and vwf during torpor entrance, but a decreased mRNA level for all other investigated time points. This suggests that gene expression of structure genes as well as the procoagulation factor are specifically initiated during the early state of torpor and provides evidence for protective molecular adaptions in the hypothalamus of Djungarian hamsters including changes in structure, transport of biomolecules and coagulation."	"The diagnostic yield of whole-exome sequencing targeting a gene panel for hearing impairment in The Netherlands. Hearing impairment (HI) is genetically heterogeneous which hampers genetic counseling and molecular diagnosis. Testing of several single HI-related genes is laborious and expensive. In this study, we evaluate the diagnostic utility of whole-exome sequencing (WES) targeting a panel of HI-related genes. Two hundred index patients, mostly of Dutch origin, with presumed hereditary HI underwent WES followed by targeted analysis of an HI gene panel of 120 genes. We found causative variants underlying the HI in 67 of 200 patients (33.5%). Eight of these patients have a large homozygous deletion involving STRC, OTOA or USH2A, which could only be identified by copy number variation detection. Variants of uncertain significance were found in 10 patients (5.0%). In the remaining 123 cases, no potentially causative variants were detected (61.5%). In our patient cohort, causative variants in GJB2, USH2A, MYO15A and STRC, and in MYO6 were the leading causes for autosomal recessive and dominant HI, respectively. Segregation analysis and functional analyses of variants of uncertain significance will probably further increase the diagnostic yield of WES."	"Targeted Resequencing of Deafness Genes Reveals a Founder MYO15A Variant in Northeastern Brazil. Identifying the genetic etiology in a person with hearing loss (HL) is challenging due to the extreme genetic heterogeneity in HL and the population-specific variability. In this study, after excluding GJB2 variants, targeted resequencing of 180 deafness-related genes revealed the causative variants in 11 of 19 (58%) Brazilian probands with autosomal recessive HL. Identified pathogenic variants were in MYO15A (10 families) and CLDN14 (one family). Remarkably, the MYO15A p.(Val1400Met) variant was identified in eight families from the city of Monte Santo in the northeast region of Brazil. Haplotype analysis of this variant was consistent with a single founder. No other cases with this variant were detected among 105 simplex cases from other cities of northeastern Brazil, suggesting that this variant is confined to a geographical region. This study suggests that it is feasible to develop population-specific screening for deafness variants once causative variants are identified in different geographical groups."	"Heterogeneity of Hereditary Hearing Loss in Iran: a Comprehensive Review. A significant contribution to the causes of hereditary hearing impairment comes from genetic factors. More than 120 genes and 160 loci have been identified to be involved in hearing impairment. Given that consanguine populations are more vulnerable to most inherited diseases, such as hereditary hearing loss (HHL), the genetic picture of HHL among the Iranian population, which consists of at least eight ethnic subgroups with a high rate of intermarriage, is expected to be highly heterogeneous. Using an electronic literature review through various databases such as PubMed, MEDLINE, and Scopus, we review the current picture of HHL in Iran. In this review, we present more than 39 deafness genes reported to cause non-syndromic HHL in Iran, of which the most prevalent causative genes include GJB2, SLC26A4, MYO15A, and MYO7A. In addition, we highlight some of the more common genetic causes of syndromic HHL in Iran. These results are of importance for further investigation and elucidation of the molecular basis of HHL in Iran and also for developing a national diagnostic tool tailored to the Iranian context enabling early and efficient diagnosis of hereditary hearing impairment."	"A novel founder MYO15A frameshift duplication is the major cause of genetic hearing loss in Oman. The increased risk for autosomal recessive disorders is one of the most well-known medical implications of consanguinity. In the Sultanate of Oman, a country characterized by one of the highest rates of consanguineous marriages worldwide, prevalence of genetic hearing loss (GHL) is estimated to be 6/10 000. Families of GHL patients have higher consanguinity rates than the general Omani population, indicating a major role for recessive forms. Mutations in GJB2, the most commonly mutated GHL gene, have been sporadically described. We collected 97 DNA samples of GHL probands, affected/unaffected siblings and parents from 26 Omani consanguineous families. Analyzing a first family by whole-exome sequencing, we identified a novel homozygous frameshift duplication (c.1171_1177dupGCCATCT) in MYO15A, the gene linked to the deafness locus DFNB3. This duplication was then found in a total of 8/26 (28%) families, within a 849 kb founder haplotype. Reconstruction of haplotype structure at MYO15A surrounding genomic regions indicated that the founder haplotype branched out in the past two to three centuries from a haplotype present worldwide. The MYO15A duplication emerges as the major cause of GHL in Oman. These findings have major implications for the design of GHL diagnosis and prevention policies in Oman."	"Screening of DFNB3 in Iranian families with autosomal recessive non-syndromic hearing loss reveals a novel pathogenic mutation in the MyTh4 domain of the MYO15A gene in a linked family. Non-syndromic sensorineural hearing loss (NSHL) is a common disorder affecting approximately 1 in 500 newborns. This type of hearing loss is extremely heterogeneous and includes over 100 loci. Mutations in the GJB2 gene have been implicated in about half of autosomal recessive non-syndromic hearing loss (ARNSHL) cases, making this the most common cause of ARNSHL. For the latter form of deafness, most frequent genes proposed include GJB2, SLC26A4, MYO15A, OTOF, and CDH23 worldwide. The aim of the present study was to define the role and frequency of MYO15A gene mutation in Iranian families. In this study 30 Iranian families were enrolled with over three deaf children and negative for GJB2. Then linkage analysis was performed by six DFNB3 short tandem repeat markers. Following that, mutation detection accomplished using DNA sequencing. One family (3.33%) showed linkage to DFNB3 and a novel mutation was identified in the MYO15A gene (c.6442T&gt;A): as the disease-causing mutation. Mutation co-segregated with hearing loss in the family but was not present in the 100 ethnicity-matched controls. Our results confirmed that the hearing loss of the linked Iranian family was caused by a novel missense mutation in the MYO15A gene. This mutation is the first to be reported in the world and affects the first MyTH4 domain of the protein."	"Genetic causes of moderate to severe hearing loss point to modifiers. The genetic underpinnings of recessively inherited moderate to severe sensorineural hearing loss are not well understood, despite its higher prevalence in comparison to profound deafness. We recruited 92 consanguineous families segregating stable or progressive, recessively inherited moderate or severe hearing loss. We utilized homozygosity mapping, Sanger sequencing, targeted capture of known deafness genes with massively parallel sequencing and whole exome sequencing to identify the molecular basis of hearing loss in these families. Variants of the known deafness genes were found in 69% of the participating families with the SLC26A4, GJB2, MYO15A, TMC1, TMPRSS3, OTOF, MYO7A and CLDN14 genes together accounting for hearing loss in 54% of the families. We identified 20 reported and 21 novel variants in 21 known deafness genes; 16 of the 20 reported variants, previously associated with stable, profound deafness were associated with moderate to severe or progressive hearing loss in our families. These data point to a prominent role for genetic background, environmental factors or both as modifiers of human hearing loss severity."	"European Human Genetics Conference, May 21-24, 2016, Barcelona, Spain. NA"	"Mutational Spectrum of MYO15A and the Molecular Mechanisms of DFNB3 Human Deafness. Deafness in humans is a common neurosensory disorder and is genetically heterogeneous. Across diverse ethnic groups, mutations of MYO15A at the DFNB3 locus appear to be the third or fourth most common cause of autosomal-recessive, nonsyndromic deafness. In 49 of the 67 exons of MYO15A, there are currently 192 recessive mutations identified, including 14 novel mutations reported here. These mutations are distributed uniformly across MYO15A with one enigmatic exception; the alternatively spliced giant exon 2, encoding 1,233 residues, has 17 truncating mutations but no convincing deafness-causing missense mutations. MYO15A encodes three distinct isoform classes, one of which is 395 kDa (3,530 residues), the largest member of the myosin superfamily of molecular motors. Studies of Myo15 mouse models that recapitulate DFNB3 revealed two different pathogenic mechanisms of hearing loss. In the inner ear, myosin 15 is necessary both for the development and the long-term maintenance of stereocilia, mechanosensory sound-transducing organelles that extend from the apical surface of hair cells. The goal of this Mutation Update is to provide a comprehensive review of mutations and functions of MYO15A."	"Spectrum of DNA variants for non-syndromic deafness in a large cohort from multiple continents. Hearing loss is the most common sensory deficit in humans with causative variants in over 140 genes. With few exceptions, however, the population-specific distribution for many of the identified variants/genes is unclear. Until recently, the extensive genetic and clinical heterogeneity of deafness precluded comprehensive genetic analysis. Here, using a custom capture panel (MiamiOtoGenes), we undertook a targeted sequencing of 180 genes in a multi-ethnic cohort of 342 GJB2 mutation-negative deaf probands from South Africa, Nigeria, Tunisia, Turkey, Iran, India, Guatemala, and the United States (South Florida). We detected causative DNA variants in 25 % of multiplex and 7 % of simplex families. The detection rate varied between 0 and 57 % based on ethnicity, with Guatemala and Iran at the lower and higher end of the spectrum, respectively. We detected causative variants within 27 genes without predominant recurring pathogenic variants. The most commonly implicated genes include MYO15A, SLC26A4, USH2A, MYO7A, MYO6, and TRIOBP. Overall, our study highlights the importance of family history and generation of databases for multiple ethnically discrete populations to improve our ability to detect and accurately interpret genetic variants for pathogenicity."	"DNA Diagnostics of Hereditary Hearing Loss: A Targeted Resequencing Approach Combined with a Mutation Classification System. Although there are nearly 100 different causative genes identified for nonsyndromic hearing loss (NSHL), Sanger sequencing-based DNA diagnostics usually only analyses three, namely, GJB2, SLC26A4, and OTOF. As this is seen as inadequate, there is a need for high-throughput diagnostic methods to detect disease-causing variations, including single-nucleotide variations (SNVs), insertions/deletions (Indels), and copy-number variations (CNVs). In this study, a targeted resequencing panel for hearing loss was developed including 79 genes for NSHL and selected forms of syndromic hearing loss. One-hundred thirty one presumed autosomal-recessive NSHL (arNSHL) patients of Western-European ethnicity were analyzed for SNVs, Indels, and CNVs. In addition, we established a straightforward variant classification system to deal with the large number of variants encountered. We estimate that combining prescreening of GJB2 with our panel leads to a diagnosis in 25%-30% of patients. Our data show that after GJB2, the most commonly mutated genes in a Western-European population are TMC1, MYO15A, and MYO7A (3.1%). CNV analysis resulted in the identification of causative variants in two patients in OTOA and STRC. One of the major challenges for diagnostic gene panels is assigning pathogenicity for variants. A collaborative database collecting all identified variants from multiple centers could be a valuable resource for hearing loss diagnostics."	"Effects of genetic correction on the differentiation of hair cell-like cells from iPSCs with MYO15A mutation. Deafness or hearing loss is a major issue in human health. Inner ear hair cells are the main sensory receptors responsible for hearing. Defects in hair cells are one of the major causes of deafness. A combination of induced pluripotent stem cell (iPSC) technology with genome-editing technology may provide an attractive cell-based strategy to regenerate hair cells and treat hereditary deafness in humans. Here, we report the generation of iPSCs from members of a Chinese family carrying MYO15A c.4642G&gt;A and c.8374G&gt;A mutations and the induction of hair cell-like cells from those iPSCs. The compound heterozygous MYO15A mutations resulted in abnormal morphology and dysfunction of the derived hair cell-like cells. We used a CRISPR/Cas9 approach to genetically correct the MYO15A mutation in the iPSCs and rescued the morphology and function of the derived hair cell-like cells. Our data demonstrate the feasibility of generating inner ear hair cells from human iPSCs and the functional rescue of gene mutation-based deafness by using genetic correction."	"A novel recessive truncating mutation in MYO15A causing prelingual sensorineural hearing loss. Hearing loss (HL) is one of the most common human defects which affects millions of people globally. The identification of deafness-related genes or loci may facilitate basic and clinical translational research on this disorder. Here, we investigated a Chinese family with autosomal recessive non-syndromic hearing impairment. Using targeted massively parallel sequencing, we identified a novel homozygous mutation, c.3525_3526insA and p.Q1175fsX1188 (NM_016239), in exon 2 of MYO15A. Sanger sequencing confirmed that affected siblings were homozygous for the mutation, whereas both normal hearing parents were heterozygous. The mutation was absent in 96 healthy controls and public databases. The insertion leads to a frameshift and a truncated form of the protein, resulting in the pathogenic effect of hearing loss for the patients. Mutations in exon 2 of MYO15A may cause a less severe phenotype, facilitating the rapid identification of mutations in exon 2 among the 66 exons when linkage of less severe hearing loss to Deafness, Autosomal Recessive 3 (DFNB3) is detected. Our data provide additional molecular information for establishing a better genotype-phenotype understanding of DFNB3. "	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"Characterising the spectrum of autosomal recessive hereditary hearing loss in Iran. Countries with culturally accepted consanguinity provide a unique resource for the study of rare recessively inherited genetic diseases. Although hereditary hearing loss (HHL) is not uncommon, it is genetically heterogeneous, with over 85 genes causally implicated in non-syndromic hearing loss (NSHL). This heterogeneity makes many gene-specific types of NSHL exceedingly rare. We sought to define the spectrum of autosomal recessive HHL in Iran by investigating both common and rarely diagnosed deafness-causing genes. Using a custom targeted genomic enrichment (TGE) panel, we simultaneously interrogated all known genetic causes of NSHL in a cohort of 302 GJB2-negative Iranian families. We established a genetic diagnosis for 67% of probands and their families, with over half of all diagnoses attributable to variants in five genes: SLC26A4, MYO15A, MYO7A, CDH23 and PCDH15. As a reflection of the power of consanguinity mapping, 26 genes were identified as causative for NSHL in the Iranian population for the first time. In total, 179 deafness-causing variants were identified in 40 genes in 201 probands, including 110 novel single nucleotide or small insertion-deletion variants and three novel CNV. Several variants represent founder mutations. This study attests to the power of TGE and massively parallel sequencing as a diagnostic tool for the evaluation of hearing loss in Iran, and expands on our understanding of the genetics of HHL in this country. Families negative for variants in the genes represented on this panel represent an excellent cohort for novel gene discovery."	"Screening of genetic alterations related to non-syndromic hearing loss using MassARRAY iPLEX® technology. Recent advances in molecular genetics have enabled to determine the genetic causes of non-syndromic hearing loss, and more than 100 genes have been related to the phenotype. Due to this extraordinary genetic heterogeneity, a large percentage of patients remain without any molecular diagnosis. This condition imply the need for new methodological strategies in order to detect a greater number of mutations in multiple genes. In this work, we optimized and tested a panel of 86 mutations in 17 different genes screened using a high-throughput genotyping technology to determine the molecular etiology of hearing loss. The technology used in this work was the MassARRAY iPLEX® platform. This technology uses silicon chips and DNA amplification products for accurate genotyping by mass spectrometry of previous reported mutations. The generated results were validated using conventional techniques, as direct sequencing, multiplex PCR and RFLP-PCR. An initial genotyping of control subjects, showed failures in 20 % of the selected alterations. To optimize these results, the failed tests were re-designed and new primers were synthesized. Then, the specificity and sensitivity of the panel demonstrated values above 97 %. Additionally, a group of 180 individuals with NSHL without a molecular diagnosis was screened to test the diagnostic value of our panel, and mutations were identified in 30 % of the cases. In 20 % of the individuals, it was possible to explain the etiology of the HL. Mutations in GJB2 gene were the most prevalent, followed by other mutations in in SLC26A4, CDH23, MT-RNR1, MYO15A, and OTOF genes. The MassARRAY technology has the potential for high-throughput identification of genetic variations. However, we demonstrated that optimization is required to increase the genotyping success and accuracy. The developed panel proved to be efficient and cost-effective, being suitable for applications involving the molecular diagnosis of hearing loss."	"Comprehensive genetic testing with ethnic-specific filtering by allele frequency in a Japanese hearing-loss population. Recent advances in targeted genomic enrichment with massively parallel sequencing (TGE+MPS) have made comprehensive genetic testing for non-syndromic hearing loss (NSHL) possible. After excluding NSHL subjects with causative mutations in GJB2 and the MT-RNR1 (1555A&gt;G) variant by Sanger sequencing, we completed TGE+MPS on 194 probands with presumed NSHL identified across Japan. We used both publicly available minor allele frequency (MAF) datasets and ethnic-specific MAF filtering against an in-house database of 200 normal-hearing Japanese controls. Ethnic-specific MAF filtering allowed us to re-categorize as common 203 variants otherwise annotated as rare or novel in non-Japanese ethnicities. This step minimizes false-positive results and improves the annotation of identified variants. Causative variants were identified in 27% of probands with solve rates of 35%, 35% and 19% for dominant, recessive and sporadic NSHL, respectively. Mutations in MYO15A and CDH23 follow GJB2 as the frequent causes of recessive NSHL; copy number variations in STRC are a major cause of mild-to-moderate NSHL. Ethnic-specific filtering by allele frequency is essential to optimize the interpretation of genetic data."	"Identification of a Novel MYO15A Mutation in a Chinese Family with Autosomal Recessive Nonsyndromic Hearing Loss. Autosomal recessive nonsyndromic hearing loss (ARNSHL) is a genetically heterogeneous sensorineural disorder, generally manifested with prelingual hearing loss and absence of other clinical manifestations. The aim of this study is to identify the pathogenic gene in a four-generation consanguineous Chinese family with ARNSHL. A novel homozygous variant, c.9316dupC (p.H3106Pfs*2), in the myoxin XVa gene (MYO15A) was identified by exome sequencing and Sanger sequencing. The homozygous MYO15A c.9316dupC variant co-segregated with the phenotypes in the ARNSHL family and was absent in two hundred normal controls. The variant was predicted to interfere with the formation of the Myosin XVa-whirlin-Eps8 complex at the tip of stereocilia, which is indispensable for stereocilia elongation. Our data suggest that the homozygous MYO15A c.9316dupC variant might be the pathogenic mutation, and exome sequencing is a powerful molecular diagnostic strategy for ARNSHL, an extremely heterogeneous disorder. Our findings extend the mutation spectrum of the MYO15A gene and have important implications for genetic counseling for the family. "	"Identification and Clinical Implications of Novel MYO15A Mutations in a Non-consanguineous Korean Family by Targeted Exome Sequencing. Mutations of MYO15A are generally known to cause severe to profound hearing loss throughout all frequencies. Here, we found two novel MYO15A mutations, c.3871C&gt;T (p.L1291F) and c.5835T&gt;G (p.Y1945X) in an affected individual carrying congenital profound sensorineural hearing loss (SNHL) through targeted resequencing of 134 known deafness genes. The variant, p.L1291F and p.Y1945X, resided in the myosin motor and IQ2 domains, respectively. The p.L1291F variant was predicted to affect the structure of the actin-binding site from three-dimensional protein modeling, thereby interfering with the correct interaction between actin and myosin. From the literature analysis, mutations in the N-terminal domain were more frequently associated with residual hearing at low frequencies than mutations in the other regions of this gene. Therefore we suggest a hypothetical genotype-phenotype correlation whereby MYO15A mutations that affect domains other than the N-terminal domain, lead to profound SNHL throughout all frequencies and mutations that affect the N-terminal domain, result in residual hearing at low frequencies. This genotype-phenotype correlation suggests that preservation of residual hearing during auditory rehabilitation like cochlear implantation should be intended for those who carry mutations in the N-terminal domain and that individuals with mutations elsewhere in MYO15A require early cochlear implantation to timely initiate speech development. "	"Comprehensive analysis via exome sequencing uncovers genetic etiology in autosomal recessive nonsyndromic deafness in a large multiethnic cohort. Autosomal recessive nonsyndromic deafness (ARNSD) is characterized by a high degree of genetic heterogeneity, with reported mutations in 58 different genes. This study was designed to detect deafness-causing variants in a multiethnic cohort with ARNSD by using whole-exome sequencing (WES). After excluding mutations in the most common gene, GJB2, we performed WES in 160 multiplex families with ARNSD from Turkey, Iran, Mexico, Ecuador, and Puerto Rico to screen for mutations in all known ARNSD genes. We detected ARNSD-causing variants in 90 (56%) families, 54% of which had not been previously reported. Identified mutations were located in 31 known ARNSD genes. The most common genes with mutations were MYO15A (13%), MYO7A (11%), SLC26A4 (10%), TMPRSS3 (9%), TMC1 (8%), ILDR1 (6%), and CDH23 (4%). Nine mutations were detected in multiple families with shared haplotypes, suggesting founder effects. We report on a large multiethnic cohort with ARNSD in which comprehensive analysis of all known ARNSD genes identifies causative DNA variants in 56% of the families. In the remaining families, WES allows us to search for causative variants in novel genes, thus improving our ability to explain the underlying etiology in more families.Genet Med 18 4, 364-371."	"Diversity of the causal genes in hearing impaired Algerian individuals identified by whole exome sequencing. The genetic heterogeneity of congenital hearing disorders makes molecular diagnosis expensive and time-consuming using conventional techniques such as Sanger sequencing of DNA. In order to design an appropriate strategy of molecular diagnosis in the Algerian population, we explored the diversity of the involved mutations by studying 65 families affected by autosomal recessive forms of nonsyndromic hearing impairment (DFNB forms), which are the most prevalent early onset forms. We first carried out a systematic screening for mutations in GJB2 and the recurrent p.(Arg34*) mutation in TMC1, which were found in 31 (47.7%) families and 1 (1.5%) family, respectively. We then performed whole exome sequencing in nine of the remaining families, and identified the causative mutations in all the patients analyzed, either in the homozygous state (eight families) or in the compound heterozygous state (one family): (c.709C&gt;T: p.(Arg237*)) and (c.2122C&gt;T: p.(Arg708*)) in OTOF, (c.1334T&gt;G: p.(Leu445Trp)) in SLC26A4, (c.764T&gt;A: p.(Met255Lys)) in GIPC3, (c.518T&gt;A: p.(Cys173Ser)) in LHFPL5, (c.5336T&gt;C: p.(Leu1779Pro)) in MYO15A, (c.1807G&gt;T: p.(Val603Phe)) in OTOA, (c.6080dup: p.(Asn2027Lys*9)) in PTPRQ, and (c.6017del: p.(Gly2006Alafs*13); c.7188_7189ins14: p.(Val2397Leufs*2)) in GPR98. Notably, 7 of these 10 mutations affecting 8 different genes had not been reported previously. These results highlight for the first time the genetic heterogeneity of the early onset forms of nonsyndromic deafness in Algerian families. "	"Targeted next-generation sequencing in Uyghur families with non-syndromic sensorineural hearing loss. The mutation spectrum of deafness genes may vary in different ethnical groups. In this study, we investigated the genetic etiology of nonsyndromic deafness in four consanguineous and two multiplex Uyghur families in which mutations in common deafness genes GJB2, SLC26A4 and MT-RNR1 were excluded. Targeted next-generation sequencing of 97 deafness genes was performed in the probands of each family. Novel pathogenic mutations were identified in four probands including the p.L416R/p.A438T compound heterozygous mutations in TMC1, the homozygous p.V1880E mutation in MYO7A, c.1238delT frameshifting deletion in PCDH15 and c.9690+1G&gt;A splice site mutation in MYO15A. Co-segregation of the mutations and the deafness were confirmed within each family by Sanger sequencing. No pathogenic mutations were identified in one multiplex family and one consanguineous family. Our study provided a useful piece of information for the genetic etiology of deafness in Uyghurs. "	"Mutations in the MYO15A gene are a significant cause of nonsyndromic hearing loss: massively parallel DNA sequencing-based analysis. Screening for MYO15A mutations was carried out using a large cohort to clarify the frequency and clinical characteristics of patients with MYO15A (DFNB3) mutations in a hearing loss population. Genetic analysis of 63 previously reported deafness genes based on massively parallel DNA sequencing (MPS) in 1120 Japanese hearing loss patients from 53 otorhinolaryngology departments was performed. Detailed clinical features of the patients with MYO15A mutations were then collected and analyzed. Eleven patients from 10 families were found to have compound heterozygosity for MYO15A. Audiograms showed profound or high frequency hearing loss, with some patients showing progressive hearing loss. Age at onset was found to vary from 0 to 14 years, which seemed to be associated with the mutation. Four children underwent bilateral cochlear implantation for congenital hearing loss, with all showing good results. Mutations in the MYO15A gene are a notable cause of nonsyndromic hearing loss. MPS technology successfully detected mutations in relatively rare deafness genes such as MYO15A."	"Deafness gene variations in a 1120 nonsyndromic hearing loss cohort: molecular epidemiology and deafness mutation spectrum of patients in Japan. To elucidate the molecular epidemiology of hearing loss in a large number of Japanese patients analyzed using massively parallel DNA sequencing (MPS) of target genes. We performed MPS of target genes using the Ion PGM system with the Ion AmpliSeq and HiSeq 2000 systems using SureSelect in 1389 samples (1120 nonsyndromic hearing loss cases and 269 normal hearing controls). We filtered the variants identified using allele frequencies in a large number of controls and 12 predication program scores. We identified 8376 kinds of variants in the 1389 samples, and 409 835 total variants were detected. After filtering the variants, we selected 2631 kinds of candidate variants. The number of GJB2 mutations was exceptionally high among these variants, followed by those in CDH23, SLC26A4, MYO15A, COL11A2, MYO7A, and OTOF. We performed a large number of MPS analyses and clarified the genetic background of Japanese patients with hearing loss. This data set will be a powerful tool to discover rare causative gene mutations in highly heterogeneous monogenic diseases and reveal the genetic epidemiology of deafness."	"Targeted next generation sequencing for molecular diagnosis of Usher syndrome. Usher syndrome is an autosomal recessive disease that associates sensorineural hearing loss, retinitis pigmentosa and, in some cases, vestibular dysfunction. It is clinically and genetically heterogeneous. To date, 10 genes have been associated with the disease, making its molecular diagnosis based on Sanger sequencing, expensive and time-consuming. Consequently, the aim of the present study was to develop a molecular diagnostics method for Usher syndrome, based on targeted next generation sequencing. A custom HaloPlex panel for Illumina platforms was designed to capture all exons of the 10 known causative Usher syndrome genes (MYO7A, USH1C, CDH23, PCDH15, USH1G, CIB2, USH2A, GPR98, DFNB31 and CLRN1), the two Usher syndrome-related genes (HARS and PDZD7) and the two candidate genes VEZT and MYO15A. A cohort of 44 patients suffering from Usher syndrome was selected for this study. This cohort was divided into two groups: a test group of 11 patients with known mutations and another group of 33 patients with unknown mutations. Forty USH patients were successfully sequenced, 8 USH patients from the test group and 32 patients from the group composed of USH patients without genetic diagnosis. We were able to detect biallelic mutations in one USH gene in 22 out of 32 USH patients (68.75%) and to identify 79.7% of the expected mutated alleles. Fifty-three different mutations were detected. These mutations included 21 missense, 8 nonsense, 9 frameshifts, 9 intronic mutations and 6 large rearrangements. Targeted next generation sequencing allowed us to detect both point mutations and large rearrangements in a single experiment, minimizing the economic cost of the study, increasing the detection ratio of the genetic cause of the disease and improving the genetic diagnosis of Usher syndrome patients."	"Genetic spectrum of autosomal recessive non-syndromic hearing loss in Pakistani families. The frequency of inherited bilateral autosomal recessive non-syndromic hearing loss (ARNSHL) in Pakistan is 1.6/1000 individuals. More than 50% of the families carry mutations in GJB2 while mutations in MYO15A account for about 5% of recessive deafness. In the present study a cohort of 30 ARNSHL families was initially screened for mutations in GJB2 and MYO15A. Homozygosity mapping was performed by employing whole genome single nucleotide polymorphism (SNP) genotyping in the families that did not carry mutations in GJB2 or MYO15A. Mutation analysis was performed for the known ARNSHL genes present in the homozygous regions to determine the causative mutations. This allowed the identification of a causative mutation in all the 30 families including 9 novel mutations, which were identified in 9 different families (GJB2 (c.598G&gt;A, p.Gly200Arg); MYO15A (c.9948G&gt;A, p.Gln3316Gln; c.3866+1G&gt;A; c.8767C&gt;T, p.Arg2923* and c.8222T&gt;C, p.Phe2741Ser), TMC1 (c.362+18A&gt;G), BSND (c.97G&gt;C, p.Val33Leu), TMPRSS3 (c.726C&gt;G, p.Cys242Trp) and MSRB3 (c.20T&gt;G, p.Leu7Arg)). Furthermore, 12 recurrent mutations were detected in 21 other families. The 21 identified mutations included 10 (48%) missense changes, 4 (19%) nonsense mutations, 3 (14%) intronic mutations, 2 (9%) splice site mutations and 2 (9%) frameshift mutations. GJB2 accounted for 53% of the families, while mutations in MYO15A were the second most frequent (13%) cause of ARNSHL in these 30 families. The identification of novel as well as recurrent mutations in the present study increases the spectrum of mutations in known deafness genes which could lead to the identification of novel founder mutations and population specific mutated deafness genes causative of ARNSHL. These results provide detailed genetic information that has potential diagnostic implication in the establishment of cost-efficient allele-specific analysis of frequently occurring variants in combination with other reported mutations in Pakistani populations. "	"Whole exome sequencing identifies new causative mutations in Tunisian families with non-syndromic deafness. Identification of the causative mutations in patients affected by autosomal recessive non syndromic deafness (DFNB forms), is demanding due to genetic heterogeneity. After the exclusion of GJB2 mutations and other mutations previously reported in Tunisian deaf patients, we performed whole exome sequencing in patients affected with severe to profound deafness, from four unrelated consanguineous Tunisian families. Four biallelic non previously reported mutations were identified in three different genes: a nonsense mutation, c.208C&gt;T (p.R70X), in LRTOMT, a missense mutation, c.5417T&gt;C (p.L1806P), in MYO15A and two splice site mutations, c.7395+3G&gt;A, and c.2260+2T&gt;A, in MYO15A and TMC1 respectively. We thereby provide evidence that whole exome sequencing is a powerful, cost-effective screening tool to identify mutations causing recessive deafness in consanguineous families. "	"Genetic testing for sporadic hearing loss using targeted massively parallel sequencing identifies 10 novel mutations. The genetic heterogeneity of non-syndromic hearing loss (NSHL) has hampered the identification of its pathogenic mutations. Several recent studies applied targeted genome enrichment (TGE) and massively parallel sequencing (MPS) to simultaneously screen a large set of known hearing loss (HL) genes. However, most of these studies were focused on familial cases. To evaluate the effectiveness of TGE and MPS on screening sporadic NSHL patients, we recruited 63 unrelated sporadic NSHL probands, who had various levels of HL and were excluded for mutations in GJB2, MT-RNR1, and SLC26A4 genes. TGE and MPS were performed on 131 known HL genes using the Human Deafness Panel oto-DA3 (Otogenetics Corporation., Norcross, GA). We identified 14 pathogenic variants in STRC, CATSPER2, USH2A, TRIOBP, MYO15A, GPR98, and TMPRSS3 genes in eight patients (diagnostic rate = 12.7%). Among these variants, 10 were novel compound heterozygous mutations. The identification of pathogenic mutations could predict the progression of HL, and guide diagnosis and treatment of the disease."	"Identification of CDH23 mutations in Korean families with hearing loss by whole-exome sequencing. Patient genetic heterogeneity renders it difficult to discover disease-cause genes. Whole-exome sequencing is a powerful new strategy that can be used to this end. The purpose of the present study was to identify a hitherto unknown mutation causing autosomal recessive nonsyndromic hearing loss (ARNSHL) in Korean families. We performed whole-exome sequencing in 16 individuals from 13 unrelated small families with ARNSHL. After filtering out population-specific polymorphisms, we focused on known deafness genes. Pathogenic effects of the detected mutations on protein structure or function were predicted via in silico analysis. We identified compound heterozygous CDH23 mutations in hearing-loss genes of two families. These include two previously reported pathological mutations, p.Pro240Leu and p.Glu1595Lys, as well as one novel mutation, p.Asn342Ser. The p.Pro240Leu mutation was found in both families. We also identified 26 non-synonymous variants in CDH23 coding exons from 16 hearing-loss patients and 30 Korean exomes. The present study is the first to show that CDH23 mutations cause hearing loss in Koreans. Although the precise contribution made by such mutations needs to be determined using a larger patient cohort, our data indicate that mutations in the CDH23 gene are one of the most important causes of non-syndromic hearing loss in East Asians. Further exome sequencing will identify common mutations or polymorphisms and contribute to the molecular diagnosis of, and development of new therapies for, hereditary hearing loss."	"Hereditary hearing loss: a 96 gene targeted sequencing protocol reveals novel alleles in a series of Italian and Qatari patients. Deafness is a really common disorder in humans. It can begin at any age with any degree of severity. Hereditary hearing loss is characterized by a vast genetic heterogeneity with more than 140 loci described in humans but only 65 genes so far identified. Families affected by hearing impairment would have real advantages from an early molecular diagnosis that is of primary relevance in genetic counseling. In this perspective, here we report a family-based approach employing Ion Torrent DNA sequencing technology to analyze coding and UTR regions of 96 genes related to hearing function and loss in a first series of 12 families coming from Italy and Qatar. Using this approach we were able to find the causative gene in 4 out of these 12 families (33%). In particular 5 novel alleles were identified in the following genes LOXHD1, TMPRSS3, TECTA and MYO15A already associated with hearing impairment. Our study confirms the usefulness of a targeted sequencing approach despite larger numbers are required for further validation and for defining a molecular epidemiology picture of hearing loss in these two countries."	"Novel compound heterozygous mutations in the MYO15A gene in autosomal recessive hearing loss identified by whole-exome sequencing. Inherited genetic defects play an important role in congenital hearing loss, contributing to about 60% of deafness occurring in infants. Hereditary nonsyndromic hearing loss is highly heterogeneous, and most patients with a presumed genetic etiology lack a specific molecular diagnosis. By whole exome sequencing, we identified responsible gene of family 4794 with autosomal recessively nonsyndromic hearing loss (ARNSHL). We also used DNA from 56 Chinese familial patients with ARNSHL (autosomal recessive nonsyndromic hearing loss) and 108 ethnicity-matched negative samples to perform extended variants analysis. We identified MYO15A c.IVS25+3G&gt;A and c.8375 T&gt;C (p.V2792A) as the disease-causing mutations. Both mutations co-segregated with hearing loss in family 4794, but were absent in the 56 index patients and 108 ethnicity-matched controls. Our results demonstrated that the hearing loss of family 4794 was caused by novel compound heterozygous mutations in MYO15A."	"Massively parallel DNA sequencing successfully identifies new causative mutations in deafness genes in patients with cochlear implantation and EAS. Genetic factors, the most common etiology in severe to profound hearing loss, are one of the key determinants of Cochlear Implantation (CI) and Electric Acoustic Stimulation (EAS) outcomes. Satisfactory auditory performance after receiving a CI/EAS in patients with certain deafness gene mutations indicates that genetic testing would be helpful in predicting CI/EAS outcomes and deciding treatment choices. However, because of the extreme genetic heterogeneity of deafness, clinical application of genetic information still entails difficulties. Target exon sequencing using massively parallel DNA sequencing is a new powerful strategy to discover rare causative genes in Mendelian disorders such as deafness. We used massive sequencing of the exons of 58 target candidate genes to analyze 8 (4 early-onset, 4 late-onset) Japanese CI/EAS patients, who did not have mutations in commonly found genes including GJB2, SLC26A4, or mitochondrial 1555A&gt;G or 3243A&gt;G mutations. We successfully identified four rare causative mutations in the MYO15A, TECTA, TMPRSS3, and ACTG1 genes in four patients who showed relatively good auditory performance with CI including EAS, suggesting that genetic testing may be able to predict the performance after implantation. "	"Novel myosin mutations for hereditary hearing loss revealed by targeted genomic capture and massively parallel sequencing. Hereditary hearing loss is genetically heterogeneous, with a large number of genes and mutations contributing to this sensory, often monogenic, disease. This number, as well as large size, precludes comprehensive genetic diagnosis of all known deafness genes. A combination of targeted genomic capture and massively parallel sequencing (MPS), also referred to as next-generation sequencing, was applied to determine the deafness-causing genes in hearing-impaired individuals from Israeli Jewish and Palestinian Arab families. Among the mutations detected, we identified nine novel mutations in the genes encoding myosin VI, myosin VIIA and myosin XVA, doubling the number of myosin mutations in the Middle East. Myosin VI mutations were identified in this population for the first time. Modeling of the mutations provided predicted mechanisms for the damage they inflict in the molecular motors, leading to impaired function and thus deafness. The myosin mutations span all regions of these molecular motors, leading to a wide range of hearing phenotypes, reinforcing the key role of this family of proteins in auditory function. This study demonstrates that multiple mutations responsible for hearing loss can be identified in a relatively straightforward manner by targeted-gene MPS technology and concludes that this is the optimal genetic diagnostic approach for identification of mutations responsible for hearing loss. "	"Targeted exon sequencing successfully discovers rare causative genes and clarifies the molecular epidemiology of Japanese deafness patients. Target exon resequencing using Massively Parallel DNA Sequencing (MPS) is a new powerful strategy to discover causative genes in rare Mendelian disorders such as deafness. We attempted to identify genomic variations responsible for deafness by massive sequencing of the exons of 112 target candidate genes. By the analysis of 216randomly selected Japanese deafness patients (120 early-onset and 96 late-detected), who had already been evaluated for common genes/mutations by Invader assay and of which 48 had already been diagnosed, we efficiently identified causative mutations and/or mutation candidates in 57 genes. Approximately 86.6% (187/216) of the patients had at least one mutation. Of the 187 patients, in 69 the etiology of the hearing loss was completely explained. To determine which genes have the greatest impact on deafness etiology, the number of mutations was counted, showing that those in GJB2 were exceptionally higher, followed by mutations in SLC26A4, USH2A, GPR98, MYO15A, COL4A5 and CDH23. The present data suggested that targeted exon sequencing of selected genes using the MPS technology followed by the appropriate filtering algorithm will be able to identify rare responsible genes including new candidate genes for individual patients with deafness, and improve molecular diagnosis. In addition, using a large number of patients, the present study clarified the molecular epidemiology of deafness in Japanese. GJB2 is the most prevalent causative gene, and the major (commonly found) gene mutations cause 30-40% of deafness while the remainder of hearing loss is the result of various rare genes/mutations that have been difficult to diagnose by the conventional one-by-one approach. In conclusion, target exon resequencing using MPS technology is a suitable method to discover common and rare causative genes for a highly heterogeneous monogenic disease like hearing loss. "	"Whole-exome sequencing identifies MYO15A mutations as a cause of autosomal recessive nonsyndromic hearing loss in Korean families. The genetic heterogeneity of hearing loss makes genetic diagnosis expensive and time consuming using available methods. Whole-exome sequencing has recently been introduced as an alternative approach to identifying causative mutations in Mendelian disorders. To identify the hidden mutations that cause autosomal recessive nonsyndromic hearing loss (ARNSHL), we performed whole-exome sequencing of 13 unrelated Korean small families with ARNSHL who were negative for GJB2 or SLC26A4 mutations. We found two novel compound heterozygous mutations, IVS11 + 1 and p.R2146Q, of MYO15A in one (SR903 family) of the 13 families with ARNSHL. In addition to these causative mutations, 13 nonsynonymous variants, including variants with uncertain pathogenicity (SR285 family), were identified in the coding exons of MYO15A from Korean exomes. This is the first report of MYO15A mutations in an East Asian population. We suggest that close attention should be paid to this gene when performing genetic testing of patients with hearing loss in East Asia. The present results also indicate that whole-exome sequencing is a valuable method for comprehensive medical diagnosis of a genetically heterogeneous recessive disease, especially in small-sized families."	"Genetic etiology study of the non-syndromic deafness in Chinese Hans by targeted next-generation sequencing. Although over 60 non-syndromic deafness genes have been identified to date, the etiologic contribution of most deafness genes remained elusive. In this study, we addressed this issue by targeted next-generation sequencing of a large cohort of non-syndromic deaf probands. Probands with mutations in commonly screened deafness genes GJB2, SLC26A4 and MT-RNR1 were pre-excluded by Sanger sequencing. The remaining 125 deaf probands proceeded through targeted exon capturing of 79 known deafness genes and Illumina HiSeq2000 sequencing. Bi-allelic mutations in 15 less commonly screened deafness genes were identified in 28 deaf probands, with mutations in MYO15A, GPR98, TMC1, USH2A and PCDH15 being relatively more frequent (≥3 probands each). Dominant mutations in MYO6, TECTA, POU4F3 and COCH were identified in 4 deaf families. A mitochondrial MTTS1 mutation was identified in one maternally inherited deaf family. No pathogenic mutations were identified in three dominant deaf families and two consanguineous families. Mutations in the less commonly screened deafness genes were heterogeneous and contributed to a significant percentage (17.4%) of causes for non-syndromic deafness. Targeted next-generation sequencing provided a comprehensive and efficient diagnosis for known deafness genes. Complementary to linkage analysis or whole-exome sequencing of deaf families, pre-exclusion of known deafness genes by this strategy may facilitate the discovery of novel deafness genes."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"Myosins in cell junctions. The development of cell-cell junctions was a fundamental step in metazoan evolution, and human health depends on the formation and function of cell junctions. Although it has long been known that actin and conventional myosin have important roles in cell junctions, research has begun to reveal the specific functions of the different forms of conventional myosin. Exciting new data also reveals that a growing number of unconventional myosins have important roles in cell junctions. Experiments showing that cell junctions act as mechanosensors have also provided new impetus to understand the functions of myosins and the forces they exert. In this review we will summarize recent developments on the roles of myosins in cell junctions. "	"PP065. dNK and dNK-CM mediated alterations of DNA methylation in extravillous cytotrophoblasts (EVTS). Placental DNA methylation is thought to be influenced by environmental exposure. Decidual natural killer cells (dNKs) directly contact with cytotrophoblasts in the early stage of pregnancy. dNKs may affect DNA methylation of extravillous cytotrophoblasts (EVTs) directly or indirectly through their secreted soluble factors. Previously, we showed that EVT outgrowth and migration on collagen gel were restricted by exposure to dNK or dNK-derived conditioned medium (dNK-CM) (ref [1]). The aim of this study was to determine if EVT DNA methylation was altered by treating with dNK or dNK-CM. Placental explants collected from 6 first-trimester healthy pregnancy terminations were cultured on a rat collagen gel model. Outgrowth EVTs from each subject were treated with medium or concordant dNK (trapped inside of hollow fibers) or dNK-CM. EVTs were harvested after 96-hour co-culturing and underwent DNA extraction. DNA methylation was quantified using the Infinium Human Methylation 450 BeadChip, which targets over 450,000 CpG sites in the human genome. Differential methylation was defined by having p&lt;0.05 (Student's t-test) and average DNA methylation change &gt;10% before and after treatments. Functional enrichment was assessed by gene ontology analysis with False Discovery Rate &lt;10% defined as significantly enriched. Increased DNA methylation was observed for 360 loci and 572 loci by dNK or dNK-CM respectively, and decreased DNA methylation was shown for 62 loci and 188 loci by dNK or dNK-CM respectively. DNA methylation at 44 loci was altered by both dNK and dNK-CM. The common loci were overrepresented for associations with EVT differentiation, adhesion and migration. Examples of the relevant overlapped loci with increased DNA methylations were MYO15A and PRDM16 (PR domain zinc finger protein 16); and the overlapped loci with reduced DNA methylation were CDH9 and USP29 (ubiquitin specific protein 29). dNK but not dNK-CM reduced IL18 methylation and increased methylation on ITGAL (integrin, alpha L) and ITGB7. dNK-CM but not dNK reduced methylation of ITGAD and PCDH8 (protocadherin 8) and increased methylation of CDH4 and CDH6. DNA methylation of EVT was altered by exposure to surrounding dNK and their secreted soluble molecules. These results serve as a basis for further investigations on whether DNA methylation can mediate the changes in protein expression that influence EVT differentiation, adhesion and migration."	"Screening for MYO15A gene mutations in autosomal recessive nonsyndromic, GJB2 negative Iranian deaf population. MYO15A is located at the DFNB3 locus on chromosome 17p11.2, and encodes myosin-XV, an unconventional myosin critical for the formation of stereocilia in hair cells of cochlea. Recessive mutations in this gene lead to profound autosomal recessive nonsyndromic hearing loss (ARNSHL) in humans and the shaker2 (sh2) phenotype in mice. Here, we performed a study on 140 Iranian families in order to determine mutations causing ARNSHL. The families, who were negative for mutations in GJB2, were subjected to linkage analysis. Eight of these families showed linkage to the DFNB3 locus, suggesting a MYO15A mutation frequency of 5.71% in our cohort of Iranian population. Subsequent sequencing of the MYO15A gene led to identification of 7 previously unreported mutations, including 4 missense mutations, 1 nonsense mutation, and 2 deletions in different regions of the myosin-XV protein."	"Autosomal recessive nonsyndromic deafness genes: a review. More than 50 Percent of prelingual hearing loss is genetic in origin, and of these up to 93 Percent are monogenic autosomal recessive traits. Some forms of genetic deafness can be recognized by their associated syndromic features, but in most cases, hearing loss is the only finding and is referred to as nonsyndromic deafness. To date, more than 700 different mutations have been identified in one of 42 genes in individuals with autosomal recessive nonsyndromic hearing loss (ARNSHL). Reported mutations in GJB2, encoding connexin 26, makes this gene the most common cause of hearing loss in many populations. Other relatively common deafness genes include SLC26A4, MYO15A, OTOF, TMC1, CDH23, and TMPRSS3. In this report we summarize genes and mutations reported in families with ARNSHL. Founder effects were demonstrated for some recurrent mutations but the most significant findings are the extreme locus and allelic heterogeneity and different spectrum of genes and mutations in each population."	"Prioritized sequencing of the second exon of MYO15A reveals a new mutation segregating in a Pakistani family with moderate to severe hearing loss. Mutations in MYO15A are associated with deafness in humans, and shaker 2 mice also exhibit a hearing loss due to defects of unconventional myosin 15a. We ascertained a consanguineous Pakistani family with recessively inherited moderate to severe hearing loss, which putatively segregated with markers linked to the DFNB3 locus. Prioritized sequencing of the second exon of MYO15A from the DNA of all affected individuals of family revealed a duplication of Cytosine in a stretch of seven repetitive C nucleotides (c.1185dupC). This mutation results in a frameshift and incorporates a stop codon in the open reading frame of MYO15A (p.E396fsX431). The findings of less severe hearing loss in families with linkage to DFNB3 are only reported for some individuals with mutations in exon 2 of MYO15A, which are further supported by this study. Therefore, on basis of linkage data and the presence of a less severe hearing loss phenotype, sequencing of a single exon of MYO15A can efficiently identify the causative mutations in patients from these families."	"Targeted genomic capture and massively parallel sequencing to identify genes for hereditary hearing loss in Middle Eastern families. Identification of genes responsible for medically important traits is a major challenge in human genetics. Due to the genetic heterogeneity of hearing loss, targeted DNA capture and massively parallel sequencing are ideal tools to address this challenge. Our subjects for genome analysis are Israeli Jewish and Palestinian Arab families with hearing loss that varies in mode of inheritance and severity. A custom 1.46 MB design of cRNA oligonucleotides was constructed containing 246 genes responsible for either human or mouse deafness. Paired-end libraries were prepared from 11 probands and bar-coded multiplexed samples were sequenced to high depth of coverage. Rare single base pair and indel variants were identified by filtering sequence reads against polymorphisms in dbSNP132 and the 1000 Genomes Project. We identified deleterious mutations in CDH23, MYO15A, TECTA, TMC1, and WFS1. Critical mutations of the probands co-segregated with hearing loss. Screening of additional families in a relevant population was performed. TMC1 p.S647P proved to be a founder allele, contributing to 34% of genetic hearing loss in the Moroccan Jewish population. Critical mutations were identified in 6 of the 11 original probands and their families, leading to the identification of causative alleles in 20 additional probands and their families. The integration of genomic analysis into early clinical diagnosis of hearing loss will enable prediction of related phenotypes and enhance rehabilitation. Characterization of the proteins encoded by these genes will enable an understanding of the biological mechanisms involved in hearing loss."	"[Differentially expressed genes in asthenospermia: a bioinformatics-based study]. To study the differentially expressed genes in asthenospermia to gain a deeper insight into the molecular mechanisms of the disease. We analyzed the differentially expressed genes in asthenospermia using GATHER, PANTHER and ToppGene online bioinformatics tools. Our bioinformatics mining and analyses revealed that the differentially expressed genes in asthenospermia played important roles in the cellular protein and macromolecular metabolism, protein modification, cell death, cell apoptosis and apoptosis induction. Asthenospermia patients experience a decline in sperm activity and the basic life activities of sperm simultaneously, and are also prone to cell apoptosis or death. Such differentially expressed genes as KIF3B, MYO15A, KIF6, KIF26B, KIF3A, DNHD2, DMN, DYNC2H1, STARD9, MYOHD1, and TPM1, which are involved in cytoskeletal structure, microtubule movement and cell movement, may be associated with asthenospermia, and therefore deserve further studies."	"Screening of 38 genes identifies mutations in 62% of families with nonsyndromic deafness in Turkey. More than 60% of prelingual deafness is genetic in origin, and of these up to 95% are monogenic autosomal recessive traits. Causal mutations have been identified in 1 of 38 different genes in a subset of patients with nonsyndromic autosomal recessive deafness. In this study, we screened 49 unrelated Turkish families with at least three affected children born to consanguineous parents. Probands from all families were negative for mutations in the GJB2 gene, two large deletions in the GJB6 gene, and the 1555A&gt;G substitution in the mitochondrial DNA MTRNR1 gene. Each family was subsequently screened via autozygosity mapping with genomewide single-nucleotide polymorphism arrays. If the phenotype cosegregated with a haplotype flanking one of the 38 genes, mutation analysis of the gene was performed. We identified 22 different autozygous mutations in 11 genes, other than GJB2, in 26 of 49 families, which overall explains deafness in 62% of families. Relative frequencies of genes following GJB2 were MYO15A (9.9%), TMIE (6.6%), TMC1 (6.6%), OTOF (5.0%), CDH23 (3.3%), MYO7A (3.3%), SLC26A4 (1.7%), PCDH15 (1.7%), LRTOMT (1.7%), SERPINB6 (1.7%), and TMPRSS3 (1.7%). Nineteen of 22 mutations are reported for the first time in this study. Unknown rare genes for deafness appear to be present in the remaining 23 families."	"Genetic causes of nonsyndromic hearing loss in Iran in comparison with other populations. Hearing loss (HL) is the most prevalent sensory defect affecting 1 in 500 neonates. Genetic factors are involved in half of the cases. The extreme heterogeneity of HL makes it difficult to analyze and determine the accurate genetic causes of the impairment. Up to now, 10 genes, namely, GJB2, GJB6, SLC26A4, TECTA, PJVK, Col11A2, Myo15A, TMC1, RDX and microRNA (miR-183), have been studied in an Iranian population. The prevalence of HL in Iran was estimated to be 2-3 times higher than that in other parts of the world. Here, the most common bases of congenital nonsyndromic hearing loss (NSHL) are discussed. We reviewed GJB2, GJB6 (large deletion), TECTA, SLC26A4 and PEJVK mutations, and studied their frequencies and distributions in different ethnic groups in 1934, 500, 121, 80 and 34 unrelated families throughout Iran, respectively. GJB2 mutation was the most common factor causing NSHL, with a mean frequency of 18.17% in the Iranian population. The importance of Iran's geographical location in the migration pathway from west to east through the silk route was also highlighted. SLC26A4 and TECTA mutations were the second and third main reasons of HL and accounted for up to 10 and 4% of prelingual HL in Iran, respectively. Mutations in GJB2, SLC26, TECTA and PJVK genes have an important role in HL in Iran and a screening test should be generated for better intervention and diagnosis programs."	"Recurrent and private MYO15A mutations are associated with deafness in the Turkish population. The identities and frequencies of MYO15A mutations associated with hearing loss in different populations remained largely unknown. We screened the MYO15A gene for mutations in 104 unrelated multiplex and consanguineous Turkish families with autosomal recessive nonsyndromic sensorineural hearing loss using autozygosity mapping. The screening of MYO15A in 10 families mapped to the DFNB3 locus revealed five previously unreported mutations: p.Y289X (1 family), p.V1400M (1 family), p.S1481P (1 family), p.R1937TfsX10 (3 families), and p.S3335AfsX121 (2 families). Recurrent mutations were associated with conserved haplotypes suggesting the presence of founder effects. Severe to profound sensorineural hearing loss was observed in all subjects with homozygous mutations except for two members of a family who were homozygous for the p.Y289X mutation in the N-terminal extension domain and had considerable residual hearing. We estimate the prevalence of homozygous MYO15A mutations in autosomal recessive nonsyndromic deafness in Turkey as 0.062 (95% confidence interval is 0.020-0.105)."	"Targeting of the hair cell proteins cadherin 23, harmonin, myosin XVa, espin, and prestin in an epithelial cell model. We have developed an advantageous epithelial cell transfection model for examining the targeting, interactions, and mutations of hair cell proteins. When expressed in LLC-PK1-CL4 epithelial cells (CL4 cells), the outer hair cell protein prestin showed faithful domain-specific targeting to the basolateral plasma membrane. We examined the consequences of mutations affecting prestin activity and assigned a targeting role to the cytoplasmic tail. The stereociliary link protein cadherin 23 (Cdh23) was targeted to the plasma membrane of CL4 cell microvilli, the topological equivalent of stereocilia. In cells coexpressing the Cdh23 cytoplasmic binding protein harmonin, a large fraction of harmonin became colocalized with Cdh23 in microvilli. Using this assay and in vitro protein binding assays, we formulated an alternative model for Cdh23-harmonin binding, in which the primary interaction is between the harmonin N-domain and a 35-residue internal peptide in the Cdh23 cytoplasmic tail. Contrary to a previous model, we found no role for the Cdh23 C-terminal PDZ (PSD-95/Dlg/ZO-1)-binding motif and observed that Cdh23 bound similar levels of harmonin with or without the exon 68 peptide. We also examined two proteins involved in stereocilium elongation. The stereociliary actin-bundling protein espin was targeted to CL4 cell microvilli and caused microvillar elongation, whereas espin with the c.2469delGTCA or c.1988delAGAG human deafness mutation showed defects in microvillar targeting and elongation. The unconventional myosin motor myosin XVa accumulated at the tips of espin-elongated microvilli, by analogy to its location in stereocilia, whereas myosin XVa with the c.4351G&gt;A or c.4669A&gt;G human deafness mutation did not, revealing functional deficits in motor activity."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"Screening of the DFNB3 locus: identification of three novel mutations of MYO15A associated with hearing loss and further suggestion for two distinctive genes on this locus. Recessive mutations of MYO15A are associated with nonsyndromic hearing loss (HL) in humans (DFNB3) and in the shaker-2 mouse. Human MYO15A has 66 exons and encodes unconventional myosin XVA. Analysis of 77 Tunisian consanguineous families segregating recessive deafness revealed evidence of linkage to microsatellite markers for DFNB3 in four families. In two families, sequencing of MYO15A led to the identification of two novel homozygous mutations: a nonsense (c.4998C&gt;A (p.C1666X) in exon 17 and a splice site mutation in intron 54 (c.9229 + 1G&gt;A). A novel mutation of unknown significance, c.7395 + 3G&gt;C, was identified in the third family, and no mutation was found in the fourth family. In conclusion, we discovered three novel mutations of MYO15A, and our data suggest the possibility that there are two distinct genes at the DFNB3 locus."	"Mutations in the first MyTH4 domain of MYO15A are a common cause of DFNB3 hearing loss. To use clinical and genetic analyses to determine the mutation causing autosomal recessive nonsyndromic hearing loss (ARNSHL) segregating in two consanguineous Iranian families. Family study. Members of each family received otologic and audiometric examination for the type and extent of hearing loss. Linkage mapping using Affymetrix 50K GeneChips and short tandem repeat (STRP) analysis localized the hearing loss in both families to the DFNB3 locus. Direct sequencing of the MYO15A gene was completed on affected members of both families. Family L-3165 segregated a novel homozygous missense mutation (c.6371G&gt;A) that results in a p.R2124Q amino acid substitution in the myosin XVa protein, while family L-896 segregated a novel homozygous missense (c.6555C&gt;T) mutation resulting in a p.P2073S amino acid change. These are the first MYO15A mutations reported to cause DFNB3 sensorineural hearing loss in the Iranian population. Like other mutations located in the myosin tail homology 4 (MyTH4) domain, the p.R2124Q and p.P2073S mutations are predicted to disrupt the function of the myosin XVa protein, which is integral to the mechanosensory activity of hair cells in the inner ear."	"Forty-six genes causing nonsyndromic hearing impairment: which ones should be analyzed in DNA diagnostics? Hearing impairment is the most common sensory disorder, present in 1 of every 500 newborns. With 46 genes implicated in nonsyndromic hearing loss, it is also an extremely heterogeneous trait. Here, we categorize for the first time all mutations reported in nonsyndromic deafness genes, both worldwide and more specifically in Caucasians. The most frequent genes implicated in autosomal recessive nonsyndromic hearing loss are GJB2, which is responsible for more than half of cases, followed by SLC26A4, MYO15A, OTOF, CDH23 and TMC1. None of the genes associated with autosomal dominant nonsyndromic hearing loss accounts for a preponderance of cases, although mutations are somewhat more frequently reported in WFS1, KCNQ4, COCH and GJB2. Only a minority of these genes is currently included in genetic diagnostics, the selection criteria typically reflecting: (1) high frequency as a cause of deafness (i.e. GJB2); (2) association with another recognisable feature (i.e. SLC26A4 and enlarged vestibular aqueduct); or (3) a recognisable audioprofile (i.e. WFS1). New and powerful DNA sequencing technologies have been developed over the past few years, but have not yet found their way into DNA diagnostics. Implementing these technologies is likely to happen within the next 5 years, and will cause a breakthrough in terms of power and cost efficiency. It will become possible to analyze most - if not all - deafness genes, as opposed to one or a few genes currently. This ability will greatly improve DNA diagnostics, provide epidemiological data on gene-based mutation frequencies, and reveal novel genotype-phenotype correlations."	"A novel nonsense mutation in MYO6 is associated with progressive nonsyndromic hearing loss in a Danish DFNA22 family. Autosomal dominant inheritance is described in about 20% of all nonsyndromic hearing loss with currently 54 distinct loci (DFNA1-54), and &gt;20 different genes identified. Seven different unconventional myosin genes are involved in ten different types of syndromic and nonsyndromic hearing loss with different patterns of inheritance: MYO7A in DFNA11/DFNB2/USH1B, MYH9 in DFNA17, MYH14 in DFNA4, MYO6 in DFNA22/DFNB37, MYO3A in DFNB30, MYO1A in DFNA48, and MYO15A in DFNB3. Two missense mutations in MYO6 (p.C442Y and p.H246R) have been characterized in families of Italian and American Caucasian extraction with autosomal dominant hearing loss, respectively, and the latter was associated with cardiomyopathy in some patients. Three Pakistani families had homozygosity for three MYO6 mutations (c.36insT, p.R1166X, and p.E216V, respectively), and was in one instance associated with retinal degeneration. In the present study, we linked autosomal dominant hearing loss in a large Danish family to a 38.9 Mb interval overlapping with the DFNA22/DFNB37 locus on chromosome 6q13. A novel nonsense mutation in MYO6 exon 25 (c.2545C &gt; T; p.R849X) was identified in the family. The mutation co-segregated with the disease and the mutant allele is predicted to encode a truncated protein lacking the coiled-coil and globular tail domains. These domains are hypothesized to be essential for targeting myosin VI to its cellular compartments. No other system was involved indicating nonsyndromic loss. In conclusion, a novel nonsense MYO6 mutation causes post-lingual, slowly progressive autosomal dominant nonsyndromic moderate to severe hearing loss in a Danish family."	"MYO15A (DFNB3) mutations in Turkish hearing loss families and functional modeling of a novel motor domain mutation. Myosin XVA is an unconventional myosin which has been implicated in autosomal recessive nonsyndromic hearing impairment (ARNSHI) in humans. In Myo15A mouse models, vestibular dysfunction accompanies the autosomal recessive hearing loss. Genomewide homozygosity mapping and subsequent fine mapping in two Turkish families with ARNSHI revealed significant linkage to a critical interval harboring a known deafness gene MYO15A on chromosome 17p13.1-17q11.2. Subsequent sequencing of the MYO15A gene led to the identification of a novel missense mutation, c.5492G--&gt;T (p.Gly1831Val) and a novel splice site mutation, c.8968-1G--&gt;C. These mutations were not detected in additional 64 unrelated ARNSHI index patients and in 230 Turkish control chromosomes. Gly1831 is a conserved residue located in the motor domains of the different classes of myosins of different species. Molecular modeling of the motor head domain of the human myosin XVa protein suggests that the Gly1831Val mutation inhibits the powerstroke by reducing backbone flexibility and weakening the hydrophobic interactions necessary for signal transmission to the converter domain."	"Unexpected genetic heterogeneity in a large consanguineous Brazilian pedigree presenting deafness. Nonsyndromic autosomal recessive deafness accounts for 80% of hereditary deafness. To date, 52 loci responsible for autosomal recessive deafness have been mapped and 24 genes identified. Here, we report a large inbred Brazilian pedigree with 26 subjects affected by prelingual deafness. Given the extensive consanguinity found in this pedigree, the most probable pattern of inheritance is autosomal recessive. However, our linkage and mutational analysis revealed, instead of an expected homozygous mutation in a single gene, two different mutant alleles and a possible third undetected mutant allele in the MYO15A gene (DFNB3 locus), as well as evidence for other causes for deafness in the same pedigree. Among the 26 affected subjects, 15 were homozygous for the novel c.10573delA mutation in the MYO15A gene, 5 were compound heterozygous for the mutation c.10573delA and the novel deletion c.9957_9960delTGAC and one inherited only a single c.10573delA mutant allele, while the other one could not be identified. Given the extensive consanguinity of the pedigree, there might be at least one more deafness locus segregating to explain the condition in some of the subjects whose deafness is not clearly associated with MYO15A mutations, although overlooked environmental causes could not be ruled out. Our findings illustrate a high level of etiological heterogeneity for deafness in the family and highlight some of the pitfalls of genetic analysis of large genes in extended pedigrees, when homozygosity for a single mutant allele is expected."	"Mutational spectrum of MYO15A: the large N-terminal extension of myosin XVA is required for hearing. Human MYO15A is located on chromosome 17p11.2, has 66 exons and encodes unconventional myosin XVA. Recessive mutations of MYO15A are associated with profound, nonsyndromic hearing loss DFNB3 in humans, and deafness and circling behavior in shaker 2 mice. In the inner ear, this motor protein is necessary for the development of hair cell stereocilia, which are actin-filled projections on the apical surface and the site of mechanotransduction of sound. The longest isoform of myosin XVA has 3,530 amino acid residues. Two isoform classes of MYO15A are distinguished by the presence or absence of 1,203 residues preceding the motor domain encoded by alternatively-spliced exon 2. It is not known whether this large N-terminal extension of myosin XVA is functionally necessary for hearing. We ascertained approximately 600 consanguineous families segregating hereditary hearing loss as a recessive trait and found evidence of linkage of markers at the DFNB3 locus to hearing loss in 38 of these families ascertained in Pakistan (n=30), India (n=6), and Turkey (n=2). In this study, we describe 16 novel recessive mutations of MYO15A associated with severe to profound hearing loss segregating in 20 of these DFNB3-linked families. Importantly, two homozygous mutant alleles-c.3313G&gt;T (p.E1105X) and c.3334delG (p.G1112fsX1124) of MYO15A-located in exon 2 are associated with severe to profound hearing loss segregating in two families. These data demonstrate that isoform 1, containing the large N-terminal extension, is also necessary for normal hearing."	"Transgene correction maintains normal cochlear structure and function in 6-month-old Myo15a mutant mice. The shaker2 (sh2) mouse is a murine model for human non-syndromic deafness DFNB3. The mice have abnormal circling behavior suggesting a balanced disorder, and profound deafness. The insertion of a bacterial artificial chromosome (BAC) transgene containing the Myo15a gene into sh2/sh2 zygotes confers hearing capability and abolishes the circling behavior in 1-month-old transgenic animals. In this study, we investigated both the hearing and the morphology of the cochlea in Myo15a mutants carrying this BAC transgene at two, four, or six months of age. The hearing threshold of these mice is normal, with no physiologically significant differences compared to age-matched heterozygous sh2J mice (with or without the BAC transgene). In six-month-old transgenic mice with the BAC, the morphology of hair cells in the apical and upper basal turns of the cochlea is normal. Hair cells of lower basal turn, however, were missing in some mutant animals. This study demonstrates that BAC transgene correction cannot only maintain normal morphology but also confer stable hearing function in Myo15a mutant mice for as long as 6 months. In addition, excess Myo15a expression has no physiologically significant protective or deleterious effects on hearing of normal mice, suggesting that the dosage of Myo15a may not be problematic for gene therapy."	"When size matters: the dynamic regulation of stereocilia lengths. Stereocilia, the mechanosensitive protrusions in hair cells, are organized into rows of graded heights forming precisely uniform staircase patterns. The actin turnover process in stereocilia follows a treadmill model in which the rate of treadmilling is scaled to the stereocilium's length. Myosin XVa, which is present at the site of actin polymerization at concentrations proportional to the length of the actin filament bundles, plays a combined role with the treadmill machinery in regulating the steady state length of these actin protrusions, together with other myosins localized alongside the actin bundles."	"Myosin-XVa is required for tip localization of whirlin and differential elongation of hair-cell stereocilia. Stereocilia are microvilli-derived mechanosensory organelles that are arranged in rows of graded heights on the apical surface of inner-ear hair cells. The 'staircase'-like architecture of stereocilia bundles is necessary to detect sound and head movement, and is achieved through differential elongation of the actin core of each stereocilium to a predetermined length. Abnormally short stereocilia bundles that have a diminished staircase are characteristic of the shaker 2 (Myo15a(sh2)) and whirler (Whrn(wi)) strains of deaf mice. We show that myosin-XVa is a motor protein that, in vivo, interacts with the third PDZ domain of whirlin through its carboxy-terminal PDZ-ligand. Myosin-XVa then delivers whirlin to the tips of stereocilia. Moreover, if green fluorescent protein (GFP)-Myo15a is transfected into hair cells of Myo15a(sh2) mice, the wild-type pattern of hair bundles is restored by recruitment of endogenous whirlin to the tips of stereocilia. The interaction of myosin-XVa and whirlin is therefore a key event in hair-bundle morphogenesis."	"Myosin XVa localizes to the tips of inner ear sensory cell stereocilia and is essential for staircase formation of the hair bundle. Mutations of the gene encoding unconventional myosin XVa are associated with sensorineural deafness in humans (DFNB3) and shaker (Myo15sh2) mice. In deaf Myo15sh2/sh2 mice, stereocilia are short, nearly equal in length, and lack myosin XVa immunoreactivity. We previously reported that myosin XVa mRNA and protein are expressed in cochlear hair cells. We now show that in the mouse, rat, and guinea pig, endogenous myosin XVa localizes to the tips of the stereocilia of the cochlear and vestibular hair cells. Myosin XVa localization overlaps with the barbed ends of actin filaments and extends to the apical plasma membrane of the stereocilia. Gene gun-mediated transfection of mouse inner ear sensory epithelia explants shows selective accumulation of myosin XVa-GFP at the tips of stereocilia, confirming the localization of native myosin XVa. Expression in COS7 cells also reveals targeting of myosin XVa-GFP to the dynamic actin region at the tips of filopodia. In a wild-type mouse, during auditory and vestibular hair cell development, myosin XVa appears at the tips of stereocilia at the time when the hair bundle begins to develop its characteristic staircase pattern. We propose that myosin XVa is essential for the graded elongation of stereocilia during their functional maturation."	"DFNB3, spectrum of MYO15A recessive mutant alleles and an emerging genotype-phenotype correlation. We have now identified seven MYO15A mutations that cause congenital profound neurosensory hearing loss and a possible hypomorphic allele of MYO15A associated with moderately-severe hearing loss in 1 of 8 SMS patients. Because myosin XVA is encoded by 66 exons, screening for mutations in hearing-impaired individuals is expensive and labor-intensive in comparison to a screen for mutations in GJB2 (Cx26), for example, which has only a single protein coding exon. Among consanguineous families segregating profound, congenital hearing loss from Pakistan, approximately 10% are consistent with linkage to DFNB3 (11 of 112 DFNB families). In one-half of these DFNB3 families, we found a homozygous mutation in 1 of the 66 exons of MYO15A [25]. This suggests that mutations of MYO15A are responsible for at least 5% of recessively inherited, profound hearing loss in Pakistan. However, without the benefit of a pre-screen for linkage to DFNB3, it will be a challenge to determine the extent to which mutations of MYO15A contribute to hereditary hearing loss among isolated cases and small families in other populations."	"Cloning and chromosomal localization of MYO15A to chromosome 5 of the dog (Canis familiaris). Mutations in the myosin XVA gene (MYO15A) cause congenital non-syndromic deafness in humans and mice. Therefore, the M YO15A gene represents a candidate gene for hereditary hearing loss in dogs. Using a human cDNA to screen a dog BAC library, we isolated a canine BAC clone. Sequencing of the BAC ends confirmed homology to the human gene. To facilitate future linkage studies, we report the physical mapping of the canine MYO15A gene to CFA5q23-q24 by FISH and RH mapping."	"Localization of myosin XVA in endocrine tumors of gut and pancreas. The myosin superfamily includes conventional and unconventional myosin proteins. Among unconventional myosins, myosin XVA has recently been characterized, and it has been suggested that it may be involved in cytoplasmic organelle movement, including secretory granules in pituitary cells and pituitary adenomas. In this study, we investigated the expression of myosin XVA protein and mRNA in normal endocrine cells and in a series of 53 endocrine tumors of the gut and pancreas. Myosin XVA was expressed in rare normal endocrine cells of the gut and in almost all pancreatic islet cells. In addition, myosin XVA was detected in several cells of all endocrine tumors investigated, and its expression was not related to malignancy, type, site, or functional status of tumors. These results indicate that myosin XVA protein and mRNA are widely distributed in endocrine cells of the gut and pancreas. Although the role of this protein in endocrine cells is unknown, previous studies suggest that it may have a role in secretory granule movement and/or hormone secretion."	"Novel mutations of MYO15A associated with profound deafness in consanguineous families and moderately severe hearing loss in a patient with Smith-Magenis syndrome. Mutations in myosin XVA are responsible for the shaker 2 ( sh2) phenotype in mice and nonsyndromic autosomal recessive profound hearing loss DFNB3 on chromosome 17p11.2. We have ascertained seven families with profound congenital hearing loss from Pakistan and India with evidence of linkage to DFNB3 at 17p11.2. We report three novel homozygous mutations in MYO15A segregating in three of these families. In addition, one hemizygous missense mutation of MYO15A was found in one of eight Smith-Magenis syndrome (del(17)p11.2) patients from North America who had moderately severe sensorineural hearing loss."	"Myosin XVA expression in the pituitary and in other neuroendocrine tissues and tumors. The myosin superfamily of molecular motor proteins includes conventional myosins and several classes of unconventional myosins. Recent studies have characterized the human and mouse unconventional myosin XVA, which has a role in the formation and/or maintenance of the unique actin-rich structures of inner ear sensory hair cells. Myosin XVA is also highly expressed in human anterior pituitary cells. In this study we examined the distribution of myosin XVA protein and mRNA in normal and neoplastic human pituitaries and other neuroendocrine cells and tumors. Myosin XVA was expressed in all types of normal anterior pituitary cells and pituitary tumors and in other neuroendocrine cells and tumors including those of the adrenal medulla, parathyroid, and pancreatic islets. Most nonneuroendocrine tissues examined including liver cells were negative for myosin XVA protein and mRNA, although the distal and proximal tubules of normal kidneys showed moderate immunoreactivity for myosin XVA. Ultrastructural immunohistochemistry localized myosin XVA in association with secretory granules of human anterior pituitary cells and human pituitary tumors. These data suggest that in neuroendocrine cells myosin XVA may have a role in secretory granule movement and/or secretion."	"Auditory and vestibular mouse mutants: models for human deafness. We have shown here several examples of how hearing and vestibular impaired mouse mutants are generated and the insight that they provide in the study of auditory and vestibular function. These types of genetic studies may also lead to the identification of disease-susceptibility genes, perhaps the most critical element in presbyacusis (age-related hearing loss). Some individuals may be more prone to hearing loss with increasing age or upon exposure to severe noise, and susceptibility genes may be involved. Different inbred mice show a variety of age-related and noise-induced hearing loss that varies between normal hearing and severe deafness throughout their life span /27/. Genetic diversity between inbred mouse strains has been shown to be a powerful tool for the discovery of modifier genes. Already two studies have found regions in which modifier genes for deafness may reside /28-29/. Future studies will hopefully lead to the identification of genes that modify hearing loss and will help us understand the variability that exists in human hearing, a crucial component in developing successful treatment strategies. The first human non-syndromic deafness-causing gene was identified in 1995, and since then, additional genes have been discovered. Much of the credit for this boom is due to deaf and vestibular mouse mutants. Their study has led to great insight regarding the development and function of the mammalian inner ear, and correlations with human deafness can now be made since mutations in the same genes have been found in these two mammals. As deafness is the most common form of sensory impairment and affects individuals of all ages, elucidating the function of the auditory and vestibular systems through genetic approaches is essential in improving and designing effective treatments for hearing loss."	"DFNB3 families and Shaker-2 mice: mutations in an unconventional myosin, myo 15. NA"	"Characterization of the human and mouse unconventional myosin XV genes responsible for hereditary deafness DFNB3 and shaker 2. Mutations in myosin XV are responsible for congenital profound deafness DFNB3 in humans and deafness and vestibular defects in shaker 2 mice. By combining direct cDNA analyses with a comparison of 95.2 kb of genomic DNA sequence from human chromosome 17p11.2 and 88.4 kb from the homologous region on mouse chromosome 11, we have determined the genomic and mRNA structures of the human (MYO15) and mouse (Myo15) myosin XV genes. Our results indicate that full-length myosin XV transcripts contain 66 exons, are &gt;12 kb in length, and encode 365-kDa proteins that are unique among myosins in possessing very long approximately 1200-aa N-terminal extensions preceding their conserved motor domains. The tail regions of the myosin XV proteins contain two MyTH4 domains, two regions with similarity to the membrane attachment FERM domain, and a putative SH3 domain. Northern and dot blot analyses revealed that myosin XV is expressed in the pituitary gland in both humans and mice. Myosin XV transcripts were also observed by in situ hybridization within areas corresponding to the sensory epithelia of the cochlea and vestibular systems in the developing mouse inner ear. Immunostaining of adult mouse organ of Corti revealed that myosin XV protein is concentrated within the cuticular plate and stereocilia of cochlear sensory hair cells. These results indicate a likely role for myosin XV in the formation or maintenance of the unique actin-rich structures of inner ear sensory hair cells."	"Myosins and deafness. The discovery in the past few years of a huge diversity within the myosin superfamily has been coupled with an understanding of the role of these motor proteins in various cellular functions. Extensive studies have revealed that myosin isoforms are not only involved in muscle contraction but also in crucial functions of many specialized mammalian cells such as melanocytes, kidney and intestinal brush border microvilli, nerve growth cones or inner ear hair cells. A search for genes involved in the pathology of human genetic deafness resulted in identification of three novel myosins: myosin VI, myosin VIIA and, very recently, myosin XV. The structure, tissue and cellular distribution of these myosin isoforms, as well as mutations detected within their genes that have been found to affect the hearing process, are described in this review."	"A physical map of the mouse shaker-2 region contains many of the genes commonly deleted in Smith-Magenis syndrome (del17p11.2p11.2). We report the construction of a physical map of the region of mouse chromosome 11 that encompasses shaker-2 (sh2), a model for the human nonsyndromic deafness DFNB3. DFNB3 maps within the common deletion region of Smith-Magenis syndrome (SMS), del(17)(p11.2p11.2). Eleven of the genes mapping within the SMS common deletion region have murine homologs on the sh2 physical map. The gene order in this region is not perfectly conserved between mouse and human, a finding to be considered as we engineer a mouse model of Smith-Magenis syndrome."	"A novel type of myosin encoded by the mouse deafness gene shaker-2. The mouse recessive deafness mutation, shaker-2(sh-2), represents a plausible model for an autosomal recessive form of human non-syndromic genetic deafness, DFNB3. Here we report the use of a positional cloning approach to show that the gene mutated in sh-2 mice encodes a novel type of unconventional myosin. A G-to-A transition changing cysteine to tyrosine in the conserved actin binding domain is detected in sh-2 but absent in laboratory strains and wild mice belonging to different mouse subspecies and species. This suggests that the novel myosin gene is a strong candidate for DFNB3."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO3A"	"nonsyndromic genetic deafness"	"A novel missense variant in MYO3A is associated with autosomal dominant high-frequency hearing loss in a German family. MYO3A, encoding the myosin IIIA protein, is associated with autosomal recessive and autosomal dominant nonsyndromic hearing loss. To date, only two missense variants located in the motor-head domain of MYO3A have been described in autosomal dominant families with progressive, mild-to-profound sensorineural hearing loss. These variants alter the ATPase activity of myosin IIIA. Exome sequencing of a proband from a three-generation German family with prelingual, moderate-to-profound, high-frequency hearing loss was performed. Segregation analysis confirmed a dominant inheritance pattern. Regression analysis of mean hearing level thresholds per individual and ear was performed at high-, mid-, and low-frequencies. A novel heterozygous missense variant c.716T&gt;C, p.(Leu239Pro) in the kinase domain of MYO3A was identified that is predicted in silico as disease causing. High-frequency, progressive hearing loss was identified. Correlation analysis of pure-tone hearing thresholds revealed progressive hearing loss, especially in the high-frequencies. In the present study, we report the first dominant likely pathogenic variant in MYO3A in a European family and further support MYO3A as an autosomal dominant hearing loss gene."	"Myosins and Hearing. Hearing loss is both genetically and clinically heterogeneous, and pathogenic variants of over a hundred different genes are associated with this common neurosensory disorder. A relatively large number of these &quot;deafness genes&quot; encode myosin super family members. The evidence that pathogenic variants of human MYO3A, MYO6, MYO7A, MYO15A, MYH14 and MYH9 are associated with deafness ranges from moderate to definitive. Additional evidence for the involvement of these six myosins for normal hearing also comes from animal models, usually mouse or zebra fish, where mutations of these genes cause hearing loss and from biochemical, physiological and cell biological studies of their roles in the inner ear. This chapter focuses on these six genes for which evidence of a causative role in deafness is substantial."	"Recessive marfanoid syndrome with herniation associated with a homozygous mutation in Fibulin-3. We have previously reported on a consanguineous family where 2 siblings, a girl and a boy, presented with tall stature, long and triangular faces, prominent forehead, telecanthus, ptosis, everted lower eyelids, downslanting palpebral fissures, large ears, high arched palate, long arm span, arachnodactyly, advanced bone age, joint laxity, pectus excavatum, inguinal hernia, and myopia, suggestive of a new subtype of connective tissue disorder (Megarbane et al. AJMG, 2012; 158(A)5: 1185-1189). On clinical follow-up, both patients had multiple inguinal, crural, and abdominal herniae, intestinal occlusions, several huge diverticula throughout the gut and the bladder, and rectal prolapse. In addition, the girl had a mild hearing impairment, and the boy a left diaphragmatic hernia. Here we describe the molecular characterization of this disorder using Whole Exome Sequencing, revealing, in both siblings, a novel homozygous missense variant in the EFEMP1 gene, c.163T &gt; C; p.(Cys55Arg) whose homozygous by descent, autosomal recessive transmission was confirmed through segregation analysis by Sanger sequencing. In addition, the girl exhibited a homozygous mutation in the MYO3A gene, c.1370_1371delGA; p.(Arg457Asnfs*25), associated with non-syndromic deafness. The siblings were also found to harbor a homozygous nonsense variant in the VCPKMT gene. We review the literature and discuss our updated clinical and molecular findings that suggest EFEMP1 to be the probable candidate gene implicated in this novel connective tissue disease."	"Single-Layer β Sheets as Versatile Protein-Binding Modules. In this issue of Structure, Li et al. (2019) describe the structure of the MORN4-Myo3a complex, revealing that the MORN repeats in MORN4 form a single-layer antiparallel β sheet and employs an extensive surface area in binding Myo3a. Their findings suggest that single-layer β sheets are versatile protein-binding modules."	"Structure of the MORN4/Myo3a Tail Complex Reveals MORN Repeats as Protein Binding Modules. Tandem repeats are basic building blocks for constructing proteins with diverse structures and functions. Compared with extensively studied α-helix-based tandem repeats such as ankyrin, tetratricopeptide, armadillo, and HEAT repeat proteins, relatively little is known about tandem repeat proteins formed by β hairpins. In this study, we discovered that the MORN repeats from MORN4 function as a protein binding module specifically recognizing a tail cargo binding region from Myo3a. The structure of the MORN4/Myo3a complex shows that MORN4 forms an extended single-layered β-sheet structure and uses a U-shaped groove to bind to the Myo3a tail with high affinity and specificity. Sequence and structural analyses further elucidated the unique sequence features for folding and target binding of MORN repeats. Our work establishes that the β-hairpin-based MORN repeats are protein-protein interaction modules."	"Systematic Review of Hearing Loss Genes in the African American Population. Literature review of the genetic etiology of hearing loss (HL) in the African American (AA) population. PubMed, EBSCO, and CINAHL were accessed from 1966 to 2018. PRISMA guidelines were followed. Search terms included permutations of &quot;hearing loss,&quot; &quot;African American,&quot; &quot;black,&quot; and &quot;genetic&quot;; &quot;African American&quot; was then cross-referenced against documented HL genes. AA subjects included in multiethnic cohorts of genetic HL testing were identified by searching the key terms &quot;hearing loss&quot; and &quot;ethnic cohort&quot; and &quot;genetic.&quot; The Q-Genie tool was used in the quality assessment of included studies. An allele frequency meta-analysis of pathogenic GJB2 variants in the AA population was performed and stratified by hearing status. Four hundred seventeen articles were reviewed, and 26 met our inclusion criteria. Ten studies were included in the GJB2 meta-analysis. In the general AA population, pathogenic GJB2 variants are rare, including the 35delG allele, which displayed a carrier frequency of 0.05%. Pathogenic variants were discovered in seven nonsyndromic HL genes (GJB2, MYO3A, TECTA, STRC, OTOF, MYH14, TMC1), eight syndromic HL genes, and one mitochondrial HL gene. Recent comprehensive genetic testing using custom genetic HL testing platforms has yielded only a 26% molecular diagnosis rate for HL etiologies in the AA population. Investigators should be encouraged to provide an ethnic breakdown of results. Sparse literature and poor diagnosis rates indicate that genes involved in HL in the AA population have yet to be identified. Future explorative investigations using next-generation sequencing technologies, such as whole-exome sequencing, into the AA population are warranted."	"Mutation screening in non-syndromic hearing loss patients with cochlear implantation by massive parallel sequencing in Taiwan. To explore the molecular epidemiology of rare deafness genes in Taiwanese sensorineural hearing impairment (SNHI) patients with cochlear implantation (CI) by performing massive parallel sequencing (MPS) and correlating genetic factors and CI outcomes. We enrolled 41 Taiwanese non-syndromic deafness patients with CI that lacked known mutations in common deafness genes. All probands were screened by a targeted exon amplification method that used massively parallel sequencing to screen a customized panel that included 40 relatively rare non-syndromic deafness genes. Thirteen candidate variants in nine relatively rare deafness genes (MYO15A, TMC1, MYH14, MYO3A, ACTG1, COL11A2, DSPP, GRHL2, and WFS1) were identified in 24.4% (10/41) of the non-syndromic deafness probands with CI. According to the ACMG Standards and Guidelines, five variants in MYO15A and ACTG1 were classified as likely pathogenic variants. Two of three multi-generational pedigrees exhibiting deafness were analyzed for the segregation of the disorder with the possible disease-causing variants. Patients with variants detected in most of the identified variant-bearing genes showed relatively good CI outcomes. We successfully identified candidate variants in partially deaf Taiwanese probands who lacked the known mutations in common deafness genes. Comparing the progress of hearing rehabilitation in CI patients with their apparent causative variants and the expression profiles of their altered genes allowed us to speculate on how alterations in specific gene sets may influence outcomes in hearing rehabilitation after CI."	"Knock-In Mice with Myo3a Y137C Mutation Displayed Progressive Hearing Loss and Hair Cell Degeneration in the Inner Ear. Myo3a is expressed in cochlear hair cells and retinal cells and is responsible for human recessive hereditary nonsyndromic deafness (DFNB30). To investigate the mechanism of DFNB30-type deafness, we established a mouse model of Myo3a kinase domain Y137C mutation by using CRISPR/Cas9 system. No difference in hearing between 2-month-old Myo3a mutant mice and wild-type mice was observed. The hearing threshold of the ≥6-month-old mutant mice was significantly elevated compared with that of the wild-type mice. We observed degeneration in the inner ear hair cells of 6-month-old Myo3a mutant mice, and the degeneration became more severe at the age of 12 months. We also found structural abnormality in the cochlear hair cell stereocilia. Our results showed that Myo3a is essential for normal hearing by maintaining the intact structure of hair cell stereocilia, and the kinase domain plays a critical role in the normal functions of Myo3a. This mouse line is an excellent model for studying DFNB30-type deafness in humans."	"Characterization of a novel MYO3A missense mutation associated with a dominant form of late onset hearing loss. Whole-exome sequencing of samples from affected members of two unrelated families with late-onset non-syndromic hearing loss revealed a novel mutation (c.2090 T &gt; G; NM_017433) in MYO3A. The mutation was confirmed in 36 affected individuals, showing autosomal dominant inheritance. The mutation alters a single residue (L697W or p.Leu697Trp) in the motor domain of the stereocilia protein MYO3A, leading to a reduction in ATPase activity, motility, and an increase in actin affinity. MYO3A-L697W showed reduced filopodial actin protrusion initiation in COS7 cells, and a predominant tipward accumulation at filopodia and stereocilia when coexpressed with wild-type MYO3A and espin-1, an actin-regulatory MYO3A cargo. The combined higher actin affinity and duty ratio of the mutant myosin cause increased retention time at stereocilia tips, resulting in the displacement of the wild-type MYO3A protein, which may impact cargo transport, stereocilia length, and mechanotransduction. The dominant negative effect of the altered myosin function explains the dominant inheritance of deafness."	"The genetic basis of deafness in populations of African descent. Hearing loss is the most common sensorineural disorder worldwide and is associated with more than 1000 mutations in more than 90 genes. While mutations in genes such as GJB2 (gap-junction protein β 2) and GJB6 (gap-junction protein β 6) are highly prevalent in Caucasian, Asian, and Middle Eastern populations, they are rare in both native African populations and those of African descent. The objective of this paper is to review the current knowledge regarding the epidemiology and genetics of hearing loss in African populations with a focus on native sub-Saharan African populations. Environmental etiologies related to poor access to healthcare and perinatal care account for the majority of cases. Syndromic etiologies including Waardenburg, Pendred and Usher syndromes are uncommon causes of hearing loss in these populations. Of the non-syndromic causes, common mutations in GJB2 and GJB6 are rarely implicated in populations of African descent. Recent use of next-generation sequencing (NGS) has identified several candidate deafness genes in African populations from Nigeria and South Africa that are unique when compared to common causative mutations worldwide. Researchers also recently described a dominant mutation in MYO3a in an African American family with non-syndromic hearing loss. The use of NGS and specialized panels will aid in identifying rare and novel mutations in a more cost- and time-effective manner. The identification of common hearing loss mutations in indigenous African populations will pave the way for translation into genetic deafness research in populations of African descent worldwide."	"Macrophages promote matrix protrusive and invasive function of breast cancer cells via MIP-1β dependent upregulation of MYO3A gene in breast cancer cells. The potential of a tumor cell to metastasize profoundly depends on its microenvironment, or &quot;niche&quot; interactions with local components. Tumor-associated-macrophages (TAMs) are the most abundant subpopulation of tumor stroma and represent a key component of tumor microenvironment. The dynamic interaction of cancer cells with neighboring TAMs actively drive cancer progression and metastatic transformation through intercellular signaling networks that need better elucidation. Thus, current study was planned for discerning paracrine communication networks operational between TAMs, and breast cancer cells with special reference to cancer cell invasion and dissemination to distant sites. Here, we report role of MIP-1β in enhancing invasive potential of metastatic breast cancer MDA-MB-231 and MDA-MB-468 cells. In addition, the poorly metastatic MCF-7 cells were also rendered invasive by MIP-1β. The MIP-1β-driven cancer cell invasion was dependent on upregulated expression levels of MYO3A gene, which encodes an unconventional myosin super-family protein harboring a kinase domain. Ex ovo study employing Chick-embryo-model and in vivo Syngenic 4T1/BALB/c mice-model further corroborated aforementioned in vitro findings, thereby substantiating their physiological relevance. Concordantly, human breast cancer specimen exhibited significant association between mRNA expression levels of MIP-1β and MYO3A. Both, MIP-1β and MYO3A exhibited positive correlation with MMP9, an established molecular determinant of cancer cell invasion. Higher expression of these genes correlated with poor survival of breast cancer patients. Collectively, these results point toward so far undisclosed MIP-1β/MYO3A axis being operational during metastasis, wherein macrophage-derived MIP-1β potentiated cancer cell invasion and metastasis via up regulation of MYO3A gene within cancer cells. Our study exposes opportunities for devising potential anti-metastatic strategies for efficient clinical management of breast cancer. "	"Impact of the Motor and Tail Domains of Class III Myosins on Regulating the Formation and Elongation of Actin Protrusions. Class III myosins (MYO3A and MYO3B) are proposed to function as transporters as well as length and ultrastructure regulators within stable actin-based protrusions such as stereocilia and calycal processes. MYO3A differs from MYO3B in that it contains an extended tail domain with an additional actin-binding motif. We examined how the properties of the motor and tail domains of human class III myosins impact their ability to enhance the formation and elongation of actin protrusions. Direct examination of the motor and enzymatic properties of human MYO3A and MYO3B revealed that MYO3A is a 2-fold faster motor with enhanced ATPase activity and actin affinity. A chimera in which the MYO3A tail was fused to the MYO3B motor demonstrated that motor activity correlates with formation and elongation of actin protrusions. We demonstrate that removal of individual exons (30-34) in the MYO3A tail does not prevent filopodia tip localization but abolishes the ability to enhance actin protrusion formation and elongation in COS7 cells. Interestingly, our results demonstrate that MYO3A slows filopodia dynamics and enhances filopodia lifetime in COS7 cells. We also demonstrate that MYO3A is more efficient than MYO3B at increasing formation and elongation of stable microvilli on the surface of cultured epithelial cells. We propose that the unique features of MYO3A, enhanced motor activity, and an extended tail with tail actin-binding motif, allow it to play an important role in stable actin protrusion length and ultrastructure maintenance."	"Identification of a novel homozygous mutation in MYO3A in a Chinese family with DFNB30 non-syndromic hearing impairment. Hearing loss is a common sensory impairment. Several genetic loci or genes responsible for non-syndrome hearing loss have been identified, including the well-known deafness genes GJB2, MT-RNR1 and SLC26A4. MYO3A belongs to the myosin superfamily. Previously only three mutations in this gene have been found in an Isreali family with DFNB30, in which patients demonstrated progressive hearing loss. In this study, we characterized a consanguineous Kazakh family with congenital hearing loss. By targeted sequence capture and next-generation sequencing, we identified a homozygous mutation and did bioinformatics analysis to this mutation. A homozygous mutation, MYO3A:c.1841C&gt;T (p.S614F), was identified to be responsible for the disease. Ser614 is located in the motor domain of MYO3A that is highly conserved among different species. Molecular modeling predicts that the conserved Ser614 may play an important role in maintaining the stability of β-sheet and the interaction between neighboring β-strand. This is the second report on MYO3A mutations in deafness and the first report in China. The finding help facilitate establishing a better relationship between MYO3A mutation and hearing phenotypes."	"Genomic screening of ABCA4 and array CGH analysis underline the genetic variability of Greek patients with inherited retinal diseases. Retinal dystrophies are a clinically and genetically heterogeneous group of disorders which affect more than two million people worldwide. The present study focused on the role of the ABCA4 gene in the pathogenesis of hereditary retinal dystrophies (autosomal recessive Stargardt disease, autosomal recessive cone-rod dystrophy, and autosomal recessive retinitis pigmentosa) in patients of Greek origin. Our cohort included 26 unrelated patients and their first degree healthy relatives. The ABCA4 mutation screening involved Sanger sequencing of all exons and flanking regions. Evaluation of novel variants included sequencing of control samples, family segregation analysis and characterization by in silico prediction tools. Twenty five patients were also screened for copy number variations by array-comparative genomic hybridization. Excluding known disease-causing mutations and polymorphisms, two novel variants were identified in coding and non-coding regions of ABCA4. Array-CGH analysis revealed two partial deletions of USH2A and MYO3A in two patients with nonsyndromic autosomal recessive retinitis pigmentosa. The ABCA4 mutation spectrum in Greek patients differs from other populations. Bioinformatic tools, segregation analysis along with clinical data from the patients seemed to be crucial for the evaluation of genetic variants and particularly for the discrimination between causative and non-causative variants."	"Stereocilia-staircase spacing is influenced by myosin III motors and their cargos espin-1 and espin-like. Hair cells tightly control the dimensions of their stereocilia, which are actin-rich protrusions with graded heights that mediate mechanotransduction in the inner ear. Two members of the myosin-III family, MYO3A and MYO3B, are thought to regulate stereocilia length by transporting cargos that control actin polymerization at stereocilia tips. We show that eliminating espin-1 (ESPN-1), an isoform of ESPN and a myosin-III cargo, dramatically alters the slope of the stereocilia staircase in a subset of hair cells. Furthermore, we show that espin-like (ESPNL), primarily present in developing stereocilia, is also a myosin-III cargo and is essential for normal hearing. ESPN-1 and ESPNL each bind MYO3A and MYO3B, but differentially influence how the two motors function. Consequently, functional properties of different motor-cargo combinations differentially affect molecular transport and the length of actin protrusions. This mechanism is used by hair cells to establish the required range of stereocilia lengths within a single cell. "	"MYO3A Causes Human Dominant Deafness and Interacts with Protocadherin 15-CD2 Isoform. Hereditary hearing loss (HL) is characterized by both allelic and locus genetic heterogeneity. Both recessive and dominant forms of HL may be caused by different mutations in the same deafness gene. In a family with post-lingual progressive non-syndromic deafness, whole-exome sequencing of genomic DNA from five hearing-impaired relatives revealed a single variant, p.Gly488Glu (rs145970949:G&gt;A) in MYO3A, co-segregating with HL as an autosomal dominant trait. This amino acid change, predicted to be pathogenic, alters a highly conserved residue in the motor domain of MYO3A. The mutation severely alters the ATPase activity and motility of the protein in vitro, and the mutant protein fails to accumulate in the filopodia tips in COS7 cells. However, the mutant MYO3A was able to reach the tips of organotypic inner ear culture hair cell stereocilia, raising the possibility of a local effect on positioning of the mechanoelectrical transduction (MET) complex at the stereocilia tips. To address this hypothesis, we investigated the interaction of MYO3A with the cytosolic tail of the integral tip-link protein protocadherin 15 (PCDH15), a core component of MET complex. Interestingly, we uncovered a novel interaction between MYO3A and PCDH15 shedding new light on the function of myosin IIIA at stereocilia tips. "	"Myosin III-mediated cross-linking and stimulation of actin bundling activity of Espin. Class III myosins (Myo3) and actin-bundling protein Espin play critical roles in regulating the development and maintenance of stereocilia in vertebrate hair cells, and their defects cause hereditary hearing impairments. Myo3 interacts with Espin1 through its tail homology I motif (THDI), however it is not clear how Myo3 specifically acts through Espin1 to regulate the actin bundle assembly and stabilization. Here we discover that Myo3 THDI contains a pair of repeat sequences capable of independently and strongly binding to the ankyrin repeats of Espin1, revealing an unexpected Myo3-mediated cross-linking mechanism of Espin1. The structures of Myo3 in complex with Espin1 not only elucidate the mechanism of the binding, but also reveal a Myo3-induced release of Espin1 auto-inhibition mechanism. We also provide evidence that Myo3-mediated cross-linking can further promote actin fiber bundling activity of Espin1. "	"Class III myosins shape the auditory hair bundles by limiting microvilli and stereocilia growth. The precise architecture of hair bundles, the arrays of mechanosensitive microvilli-like stereocilia crowning the auditory hair cells, is essential to hearing. Myosin IIIa, defective in the late-onset deafness form DFNB30, has been proposed to transport espin-1 to the tips of stereocilia, thereby promoting their elongation. We show that Myo3a(-/-)Myo3b(-/-) mice lacking myosin IIIa and myosin IIIb are profoundly deaf, whereas Myo3a-cKO Myo3b(-/-) mice lacking myosin IIIb and losing myosin IIIa postnatally have normal hearing. Myo3a(-/-)Myo3b(-/-) cochlear hair bundles display robust mechanoelectrical transduction currents with normal kinetics but show severe embryonic abnormalities whose features rapidly change. These include abnormally tall and numerous microvilli or stereocilia, ungraded stereocilia bundles, and bundle rounding and closure. Surprisingly, espin-1 is properly targeted to Myo3a(-/-)Myo3b(-/-) stereocilia tips. Our results uncover the critical role that class III myosins play redundantly in hair-bundle morphogenesis; they unexpectedly limit the elongation of stereocilia and of subsequently regressing microvilli, thus contributing to the early hair bundle shaping. "	"Identifying Children With Poor Cochlear Implantation Outcomes Using Massively Parallel Sequencing. Cochlear implantation is currently the treatment of choice for children with severe to profound hearing impairment. However, the outcomes with cochlear implants (CIs) vary significantly among recipients. The purpose of the present study is to identify the genetic determinants of poor CI outcomes. Twelve children with poor CI outcomes (the &quot;cases&quot;) and 30 &quot;matched controls&quot; with good CI outcomes were subjected to comprehensive genetic analyses using massively parallel sequencing, which targeted 129 known deafness genes. Audiological features, imaging findings, and auditory/speech performance with CIs were then correlated to the genetic diagnoses. We identified genetic variants which are associated with poor CI outcomes in 7 (58%) of the 12 cases; 4 cases had bi-allelic PCDH15 pathogenic mutations and 3 cases were homozygous for the DFNB59 p.G292R variant. Mutations in the WFS1, GJB3, ESRRB, LRTOMT, MYO3A, and POU3F4 genes were detected in 7 (23%) of the 30 matched controls. The allele frequencies of PCDH15 and DFNB59 variants were significantly higher in the cases than in the matched controls (both P &lt; 0.001). In the 7 CI recipients with PCDH15 or DFNB59 variants, otoacoustic emissions were absent in both ears, and imaging findings were normal in all 7 implanted ears. PCDH15 or DFNB59 variants are associated with poor CI performance, yet children with PCDH15 or DFNB59 variants might show clinical features indistinguishable from those of other typical pediatric CI recipients. Accordingly, genetic examination is indicated in all CI candidates before operation."	"Invertebrate and vertebrate class III myosins interact with MORN repeat-containing adaptor proteins. In Drosophila photoreceptors, the NINAC-encoded myosin III is found in a complex with a small, MORN-repeat containing, protein Retinophilin (RTP). Expression of these two proteins in other cell types showed NINAC myosin III behavior is altered by RTP. NINAC deletion constructs were used to map the RTP binding site within the proximal tail domain of NINAC. In vertebrates, the RTP ortholog is MORN4. Co-precipitation experiments demonstrated that human MORN4 binds to human myosin IIIA (MYO3A). In COS7 cells, MORN4 and MYO3A, but not MORN4 and MYO3B, co-localize to actin rich filopodia extensions. Deletion analysis mapped the MORN4 binding to the proximal region of the MYO3A tail domain. MYO3A dependent MORN4 tip localization suggests that MYO3A functions as a motor that transports MORN4 to the filopodia tips and MORN4 may enhance MYO3A tip localization by tethering it to the plasma membrane at the protrusion tips. These results establish conserved features of the RTP/MORN4 family: they bind within the tail domain of myosin IIIs to control their behavior. "	"Kinome-wide screening of HER2+ breast cancer cells for molecules that mediate cell proliferation or sensitize cells to trastuzumab therapy. Understanding the signaling differences that distinguish human HER2-amplified (HER2-positive (HER2+)) breast cancers from other breast cancer subtypes may help to identify protein drug targets for the specific treatment of HER2+ breast cancers. We performed two kinome-wide small interfering RNA (siRNA) screens on five HER2+ breast cancer cell lines, seven breast cancer cell lines in which HER2 was not amplified and two normal breast cell lines. To pinpoint the main kinases driving HER2 signaling, we performed a comprehensive siRNA screen that identified loss of the HER2/HER3 heterodimer as having the most prominent inhibitory effect on the growth of HER2+ breast cancer cells. In a second siRNA screen focused on identifying genes that could sensitize HER2+ cells to trastuzumab treatment, we found that loss of signaling members downstream of phosphatidylinositol 3 kinase (PI3K) potentiated the growth inhibitory effects of trastuzumab. Loss of HER2 and HER3, as well as proteins involved in mitogenic and environmental stress pathways inhibited the proliferation of HER2+ cells only in the absence of trastuzumab, suggesting that these pathways are inhibited by trastuzumab treatment. Loss of essential G2/M cell cycle mediators or proteins involved in vesicle organization exerted inhibitory effects on HER2+ cell growth that were unaffected by trastuzumab. Furthermore, the use of a sensitization index (SI) identified targeting the PI3K pathway to sensitize to trastuzumab treatment. Antagonism using the SI identified MYO3A, MYO3B and MPZL1 as antagonizers to trastuzumab treatment among HER2+ cell lines. Our results suggest that the dimerization partners of HER2 are important for determining the activation of downstream proliferation pathways. Understanding the complex layers of signaling triggered downstream of HER2 homodimers and heterodimers will facilitate the selection of better targets for combination therapies intended to treat HER2+ breast cancers. "	"Phosphorylation of the kinase domain regulates autophosphorylation of myosin IIIA and its translocation in microvilli. Motor activity of myosin III is regulated by autophosphorylation. To investigate the role of the kinase activity on the transporter function of myosin IIIA (Myo3A), we identified the phosphorylation sites of kinase domain (KD), which is responsible for the regulation of kinase activity and thus motor function. Using mass spectrometry, we identified six phosphorylation sites in the KD, which are highly conserved among class III myosins and Ste20-related misshapen (Msn) kinases. Two predominant sites, Thr¹⁸⁴ and Thr¹⁸⁸, in KD are important for phosphorylation of the KD as well as the motor domain, which regulates the affinity for actin. In the Caco2 cells, the full-length human Myo3A (hMyo3AFull) markedly enlarged the microvilli, although it did not show discrete localization within the microvilli. On the other hand, hMyo3AFull(T184A) and hMyo3AFull(T188A) both showed clear localization at the microvilli tips. Our results suggest that Myo3A induces large actin bundle formation to form microvilli, and phosphorylation of KD at Thr¹⁸⁴ and Thr¹⁸⁸ is critical for the kinase activity of Myo3A, and regulation of Myo3A translocation to the tip of microvilli. Retinal extracts potently dephosphorylate both KD and motor domain without IQ motifs (MDIQo), which was inhibited by okadaic acid (OA) with nanomolar range and by tautomycetin (TMC) with micromolar range. The results suggest that Myo3A phosphatase is protein phosphatase type 2A (PP2A). Supporting this result, recombinant PP2Ac potently dephosphorylates both KD and MDIQo. We propose that the phosphorylation-dephosphorylation mechanism plays an essential role in mediating the transport and actin bundle formation and stability functions of hMyo3A."	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Myosin 3A kinase activity is regulated by phosphorylation of the kinase domain activation loop. Class III myosins are unique members of the myosin superfamily in that they contain both a motor and kinase domain. We have found that motor activity is decreased by autophosphorylation, although little is known about the regulation of the kinase domain. We demonstrate by mass spectrometry that Thr-178 and Thr-184 in the kinase domain activation loop and two threonines in the loop 2 region of the motor domain are autophosphorylated (Thr-908 and Thr-919). The kinase activity of MYO3A 2IQ with the phosphomimic (T184E) or phosphoblock (T184A) mutations demonstrates that kinase activity is reduced 30-fold as a result of the T184A mutation, although the Thr-178 site only had a minor impact on kinase activity. Interestingly, the actin-activated ATPase activity of MYO3A 2IQ is slightly reduced as a result of the T178A and T184A mutations suggesting coupling between motor and kinase domains. Full-length GFP-tagged T184A and T184E MYO3A constructs transfected into COS7 cells do not disrupt the ability of MYO3A to localize to filopodia structures. In addition, we demonstrate that T184E MYO3A reduces filopodia elongation in the presence of espin-1, whereas T184A enhances filopodia elongation in a similar fashion to kinase-dead MYO3A. Our results suggest that as MYO3A accumulates at the tips of actin protrusions, autophosphorylation of Thr-184 enhances kinase activity resulting in phosphorylation of the MYO3A motor and reducing motor activity. The differential regulation of the kinase and motor activities allows for MYO3A to precisely self-regulate its concentration in the actin bundle-based structures of cells. "	"Diagnostic application of targeted resequencing for familial nonsyndromic hearing loss. Identification of causative genes for hereditary nonsyndromic hearing loss (NSHL) is important to decide treatment modalities and to counsel the patients. Due to the genetic heterogeneity in sensorineural genetic disorders, the high-throughput method can be adapted for the efficient diagnosis. To this end, we designed a new diagnostic pipeline to screen all the reported candidate genes for NSHL. For validation of the diagnostic pipeline, we focused upon familial NSHL cases that are most likely to be genetic, rather than to be infectious or environmental. Among the 32 familial NSHL cases, we were able to make a molecular genetic diagnosis from 12 probands (37.5%) in the first stage by their clinical features, characteristic inheritance pattern and further candidate gene sequencing of GJB2, SLC26A4, POU3F4 or mitochondrial DNA. Next we applied targeted resequencing on 80 NSHL genes in the remaining 20 probands. Each proband carried 4.8 variants that were not synonymous and had the occurring frequency of less than three among the 20 probands. These variants were then filtered out with the inheritance pattern of the family, allele frequency in normal hearing 80 control subjects, clinical features. Finally NSHL-causing candidate mutations were identified in 13(65%) of the 20 probands of multiplex families, bringing the total solve rate (or detection rate) in our familial cases to be 78.1% (25/32) Damaging mutations discovered by the targeted resequencing were distributed in nine genes such as WFS1, COCH, EYA4, MYO6, GJB3, COL11A2, OTOF, STRC and MYO3A, most of which were private. Despite the advent of whole genome and whole exome sequencing, we propose targeted resequencing and filtering strategy as a screening and diagnostic tool at least for familial NSHL to find mutations based upon its efficacy and cost-effectiveness."	"Examination of whole blood DNA methylation as a potential risk marker for gastric cancer. Whole blood DNA methylation analysis has been proposed to be a risk marker for cancer that can be used to target patients for preventive interventions. To test this, we examined whole blood DNA methylation of 16 CpG island promoters and LINE1 repetitive element in patients with gastric cancer and control subjects. Bisulfite pyrosequencing was used to quantify the methylation of 14 CpG island promoters (MINT25, RORA, GDNF, CDH1, RARAB2, ER, CDH13, MYOD1, SFRP1, P2RX7, SLC16A12, IGF2, DPYS, and N33) and LINE1 from 72 patients with gastric cancer, 67 control, and 52 healthy young individuals. Quantitative methylation-specific real-time PCR was also conducted for 3 CpG island promoters (MINT25, MYO3A, and SOX11). Among all sites tested, only a marginal increase in the methylation of the SFRP1 promoter was observed in the blood of patients with gastric cancer when compared with the control group (11.3 % vs 10.5%; age-adjusted P value: P = 0.009), and this association was also seen in a validation set of 91 patients with gastric cancer (11.5% vs 10.5%; age-adjusted P value: P = 0.001). The methylation of 9 sites (GDNF, CDH1, RARAB2, CDH13, MYOD1, SFRP1, SLC16A12, DPYS, N33, and LINE1) and their mean Z score was correlated with higher age (R = 0.41, P &lt; 0.0001) and marginally with telomere shortening (R = -0.18, P = 0.01) but not with gastric cancer risk (other than SFRP1 methylation). Variability in whole blood DNA methylation of cancer markers is primarily associated with aging, reflecting turnover of white blood cells, and has no direct link to gastric cancer predisposition. SFRP1 methylation in whole blood may be associated with gastric cancer risk."	"Competition and compensation: dissecting the biophysical and functional differences between the class 3 myosin paralogs, myosins 3a and 3b. Stereocilia are actin protrusions with remarkably well-defined lengths and organization. A flurry of recent papers has reported multiple myosin motor proteins involved in regulating stereocilia structures by transporting actin-regulatory cargo to the tips of stereocilia. In our recent paper, we show that two paralogous class 3 myosins--Myo3a and Myo3b--both transport the actin-regulatory protein Espin 1 (Esp1) to stereocilia and filopodia tips in a remarkably similar, albeit non-identical fashion. (1) Here we present experimental and computational data that suggests that subtle differences between these two proteins' biophysical and biochemical properties can help us understand how these myosin species target and regulate the lengths of actin protrusions."	"Myopodin isoforms alter the chemokinetic response of PC3 cells in response to different migration stimuli via differential effects on Rho-ROCK signaling pathways. The gene encoding myopodin, an actin binding protein, is commonly deleted in invasive, but not in indolent, prostate cancers. There are conflicting reports on the effects of myopodin expression on prostate cancer cell migration and invasion. The recent recognition that myopodin is expressed as four different isoforms further complicates our understanding of how this potentially important invasive prostate cancer biomarker affects tumor cell migration and invasion. We now show that myopodin affects the chemokinetic, rather than the chemotactic, properties of PC3 prostate cancer cells. Furthermore, all myopodin isoforms can either increase or decrease PC3 cell migration in response to different chemokinetic stimuli. These migration properties were reflected by differences in cell morphology and the relative dependence on Rho-ROCK signaling pathways induced by the environmental stimuli. Truncation analysis determined that a unique 9-residue C-terminal sequence in the shortest isoform and the conserved, PDZ domain-containing N-terminal region of the long isoforms both contribute to the ability of myopodin to alter the response of PC3 cells to chemokinetic stimuli. Matrigel invasion assays also indicated that myopodin primarily affects the migration, rather than the invasion, properties of PC3 cells. The correlation between loss of myopodin expression and invasive prostate cancer therefore reflects complex myopodin interactions with pathways that regulate the cellular migration response to diverse signals that may be present in a tumor microenvironment."	"Myosin heavy chain composition of the human genioglossus muscle. The human tongue muscle genioglossus (GG) is active in speech, swallowing, respiration, and oral transport, behaviors encompassing a wide range of tongue shapes and movement speeds. Studies demonstrate substantial diversity in patterns of human GG motor unit activation, but whether this is accompanied by complex expression of muscle contractile proteins is not known. The authors tested for conventional myosin heavy chain (MHC) MHCI, MHCIIA, MHCIIX, developmental MHCembryonic and MHCneonatal and unconventional MHCαcardiac, MHCextraocular, and MHCslow tonic in antero-superior (GG-A) and posterior (GG-P) adult human GG. SDS-PAGE, Western blot, and immunohistochemistry were used to describe MHC composition of GG-A and GG-P and the prevalence of muscle fiber MHC phenotypes in GG-A. By SDS-PAGE, only conventional MHC are present with ranking from most to least prevalent MHCIIA &gt; MHCI &gt; MHCIIX in GG-A and MHCI &gt; MHCIIA &gt; MHCIIX in GG-P. By immunohistochemistry, many muscle fibers contain MHCI, MHCIIA, and MHCIIX, but few contain developmental or unconventional MHC. GG-A is composed of 5 phenotypes (MHCIIA &gt; MHCI-IIX &gt; MHCI &gt; MHCI-IIA &gt; MHCIIX). Phenotypes MHCI, MHCIIA, and MHCI-IIX account for 96% of muscle fibers. Despite activation of GG during kinematically diverse behaviors and complex patterns of GG motor unit activity, the human GG is composed of conventional MHC isoforms and 3 primary MHC phenotypes."	"Myosin IIIB uses an actin-binding motif in its espin-1 cargo to reach the tips of actin protrusions. Myosin IIIA (MYO3A) targets actin protrusion tips using a motility mechanism dependent on both motor and tail actin-binding activity [1]. We show that myosin IIIB (MYO3B) lacks tail actin-binding activity and is unable to target COS7 cell filopodia tips, yet is somehow able to target stereocilia tips. Strikingly, when MYO3B is coexpressed with espin-1 (ESPN1), a MYO3A cargo protein endogenously expressed in stereocilia [2], MYO3B targets and carries ESPN1 to COS7 filopodia tips. We show that this tip localization is lost when we remove the ESPN1 C terminus actin-binding site. We also demonstrate that, like MYO3A [2], MYO3B can elongate filopodia by transporting ESPN1 to the polymerizing end of actin filaments. The mutual dependence of MYO3B and ESPN1 for tip localization reveals a novel mechanism for the cell to regulate myosin tip localization via a reciprocal relationship with cargo that directly participates in actin binding for motility. Our results are consistent with a novel form of motility for class III myosins that requires both motor and tail domain actin-binding activity and show that the actin-binding tail can be replaced by actin-binding cargo. This study also provides a framework to better understand the late-onset hearing loss phenotype in patients with MYO3A mutations."	"Detection of bladder cancer using novel DNA methylation biomarkers in urine sediments. Bladder cancer (BCa) remains a lethal malignancy that can be cured if detected early. DNA hypermethylation is a common epigenetic abnormality in cancer that may serve as a marker of disease activity. We selected 10 novel candidate genes from the most frequently hypermethylated genes detected by DNA microarray and bisulfite pyrosequencing of bladder cancers and applied them to detect bladder cancer in urine sediments. We analyzed DNA methylation in the candidate genes by quantitative methylation-specific real-time PCR (qMSP) to detect bladder cancer in urine sediments from 128 bladder cancer patients and 110 age-matched control subjects. Based on a multigene predictive model, we discovered 6 methylation markers (MYO3A, CA10, SOX11, NKX6-2, PENK, and DBC1) as most promising for detecting bladder cancer. A panel of 4 genes (MYO3A, CA10, NKX6-2, and DBC1 or SOX11) had 81% sensitivity and 97% specificity, whereas a panel of 5 genes (MYO3A, CA10, NKX6-2, DBC1, and SOX11 or PENK) had 85% sensitivity and 95% specificity for detection of bladder cancer (area under curve = 0.939). By analyzing the data by cancer invasiveness, detection rate was 47 of 58 (81%) in non-muscle invasive tumors (pTa, Tis, and pT1) and 62 of 70 (90%) in muscle invasive tumors (T2, T3, and T4). This biomarker panel analyzed by qMSP may help the early detection of bladder tumors in urine sediments with high accuracy. The panel of biomarker deserves validation in a large well-controlled prospectively collected sample set."	"A mouse model for human hearing loss DFNB30 due to loss of function of myosin IIIA. The motor protein myosin IIIA is critical for maintenance of normal hearing. Homozygosity and compound heterozygosity for loss-of-function mutations in MYO3A, which encodes myosin IIIA, are responsible for inherited human progressive hearing loss DFNB30. To further evaluate this hearing loss, we constructed a mouse model, Myo3a(KI/KI), that harbors the mutation equivalent to the nonsense allele responsible for the most severe human phenotype. Myo3a(KI/KI) mice were compared to their wild-type littermates. Myosin IIIA, with a unique N-terminal kinase domain and a C-terminal actin-binding domain, localizes to the tips of stereocilia in wild-type mice but is absent in the mutant. The phenotype of the Myo3a(KI/KI) mouse parallels the phenotype of human DFNB30. Hearing loss, as measured by auditory brainstem response, is reduced and progresses significantly with age. Vestibular function is normal. Outer hair cells of Myo3a(KI/KI) mice degenerate with age in a pattern consistent with their progressive hearing loss."	"Intermolecular autophosphorylation regulates myosin IIIa activity and localization in parallel actin bundles. Myosin IIIa (Myo3A) transports cargo to the distal end of actin protrusions and contains a kinase domain that is thought to autoregulate its activity. Because Myo3A tends to cluster at the tips of actin protrusions, we investigated whether intermolecular phosphorylation could regulate Myo3A biochemical activity, cellular localization, and cellular function. Inactivation of Myo3A 2IQ kinase domain with the point mutation K50R did not alter maximal ATPase activity, whereas phosphorylation of Myo3A 2IQ resulted in reduced maximal ATPase activity and actin affinity. The rate and degree of Myo3A 2IQ autophosphorylation was unchanged by the presence of actin but was found to be dependent upon Myo3A 2IQ concentration within the range of 0.1 to 1.2 μm, indicating intermolecular autophosphorylation. In cultured cells, we observed that the filopodial tip localization of Myo3A lacking the kinase domain decreased when co-expressed with kinase-active, full-length Myo3A. The cellular consequence of reduced Myo3A tip localization was decreased filopodial density along the cell periphery, identifying a novel cellular function for Myo3A in mediating the formation and stability of actin-based protrusions. Our results suggest that Myo3A motor activity is regulated through a mechanism involving concentration-dependent autophosphorylation. We suggest that this regulatory mechanism plays an essential role in mediating the transport and actin bundle formation/stability functions of Myo3A."	"Genome-wide association study for colorectal cancer identifies risk polymorphisms in German familial cases and implicates MAPK signalling pathways in disease susceptibility. Genetic susceptibility accounts for approximately 35% of all colorectal cancer (CRC). Ten common low-risk variants contributing to CRC risk have been identified through genome-wide association studies (GWASs). In our GWAS, 610 664 genotyped single-nucleotide polymorphisms (SNPs) passed the quality control filtering in 371 German familial CRC patients and 1263 controls, and replication studies were conducted in four additional case-control sets (4915 cases and 5607 controls). Known risk loci at 8q24.21 and 11q23 were confirmed, and a previously unreported association, rs12701937, located between the genes GLI3 (GLI family zinc finger 3) and INHBA (inhibin, beta A) [P = 1.1 x 10(-3), odds ratio (OR) 1.14, 95% confidence interval (CI) 1.05-1.23, dominant model in the combined cohort], was identified. The association was stronger in familial cases compared with unselected cases (P = 2.0 x 10(-4), OR 1.36, 95% CI 1.16-1.60, dominant model). Two other unreported SNPs, rs6038071, 40 kb upstream of CSNK2A1 (casein kinase 2, alpha 1 polypeptide) and an intronic marker in MYO3A (myosin IIIA), rs11014993, associated with CRC only in the familial CRC cases (P = 2.5 x 10(-3), recessive model, and P = 2.7 x 10(-4), dominant model). Three software tools successfully pointed to the overrepresentation of genes related to the mitogen-activated protein kinase (MAPK) signalling pathways among the 1340 most strongly associated markers from the GWAS (allelic P value &lt; 10(-3)). The risk of CRC increased significantly with an increasing number of risk alleles in seven genes involved in MAPK signalling events (P(trend) = 2.2 x 10(-16), OR(per allele) = 1.34, 95% CI 1.11-1.61)."	"Effect of phosphorylation in the motor domain of human myosin IIIA on its ATP hydrolysis cycle. Previous findings suggested that the motor activity of human myosin IIIA (HM3A) is influenced by phosphorylation [Kambara, T., et al. (2006) J. Biol. Chem. 281, 37291-37301]; however, how phosphorylation controls the motor activity of HM3A is obscure. In this study, we clarify the kinetic basis of the effect of phosphorylation on the ATP hydrolysis cycle of the motor domain of HM3A (huM3AMD). The affinity of human myosin IIIA for filamentous actin in the presence of ATP is more than 100-fold decreased by phosphorylation, while the maximum rate of ATP turnover is virtually unchanged. The rate of release of ADP from acto-phosphorylated huM3AMD is 6-fold greater than the overall cycle rate, and thus not a rate-determining step. The rate constant of the ATP hydrolysis step of the actin-dissociated form is markedly increased by phosphorylation by 30-fold. The dissociation constant for dissociation of the ATP-bound form of huM3AMD from actin is greatly increased by phosphorylation, and this result agrees well with the significant increase in the K(actin) value of the steady-state ATPase reaction. The rate constant of the P(i) off step is greater than 60 s(-1), suggesting that this step does not limit the overall ATP hydrolysis cycle rate. Our kinetic model indicates that phosphorylation induces the dissociation of huM3AMD from actin during the ATP hydrolysis cycle, and this is due to the phosphorylation-dependent marked decrease in the affinity of huM3AMD.ATP for actin and the increase in the ATP hydrolysis rate of huM3AMD in the actin-dissociated state. These results suggest that the phosphorylation of myosin IIIA significantly lowers the duty ratio, which may influence the cargo transporting ability of the native form of myosin IIIA that contains the ATP-independent actin binding site in the tail."	"Supervised machine learning and logistic regression identifies novel epistatic risk factors with PTPN22 for rheumatoid arthritis. Investigating genetic interactions (epistasis) has proven difficult despite the recent advances of both laboratory methods and statistical developments. With no 'best' statistical approach available, combining several analytical methods may be optimal for detecting epistatic interactions. Using a multi-stage analysis that incorporated supervised machine learning and methods of association testing, we investigated epistatic interactions with a well-established genetic factor (PTPN22 1858T) in a complex autoimmune disease (rheumatoid arthritis (RA)). Our analysis consisted of four principal stages: Stage I (data reduction)-identifying candidate chromosomal regions in 292 affected sibling pairs, by predicting PTPN22 concordance using multipoint identity-by-descent probabilities and a supervised machine learning algorithm (Random Forests); Stage II (extension analysis)-testing detailed genetic data within candidate chromosomal regions for epistasis with PTPN22 1858T in 677 cases and 750 controls using logistic regression; Stage III (replication analysis)-confirmation of epistatic interactions in 947 cases and 1756 controls; Stage IV (combined analysis)-a pooled analysis including all 1624 RA cases and 2506 control subjects for final estimates of effect size. A total of seven replicating epistatic interactions were identified. SNP variants within CDH13, MYO3A, CEP72 and near WFDC1 showed significant evidence for interaction with PTPN22, affecting susceptibility to RA."	"Mutations in LOXHD1, an evolutionarily conserved stereociliary protein, disrupt hair cell function in mice and cause progressive hearing loss in humans. Hearing loss is the most common form of sensory impairment in humans and is frequently progressive in nature. Here we link a previously uncharacterized gene to hearing impairment in mice and humans. We show that hearing loss in the ethylnitrosourea (ENU)-induced samba mouse line is caused by a mutation in Loxhd1. LOXHD1 consists entirely of PLAT (polycystin/lipoxygenase/alpha-toxin) domains and is expressed along the membrane of mature hair cell stereocilia. Stereociliary development is unaffected in samba mice, but hair cell function is perturbed and hair cells eventually degenerate. Based on the studies in mice, we screened DNA from human families segregating deafness and identified a mutation in LOXHD1, which causes DFNB77, a progressive form of autosomal-recessive nonsyndromic hearing loss (ARNSHL). LOXHD1, MYO3a, and PJVK are the only human genes to date linked to progressive ARNSHL. These three genes are required for hair cell function, suggesting that age-dependent hair cell failure is a common mechanism for progressive ARNSHL."	"Deafness genes in Israel: implications for diagnostics in the clinic. The identification of the molecular basis of deafness in the last decade has made a remarkable impact on genetic counseling and diagnostics for the hearing impaired population. Since the discovery of the most prevalent form of deafness associated with mutations in the GJB2 (connexin 26) gene, many other genes have been found worldwide, with a subset of these, including unique mutations, in Israel. Here, we review the current status of deafness genes in Israel and report one known mutation in a syndromic form of deafness, Usher syndrome, described in the Jewish Israeli population for the first time. In the future, the identification of specific mutations may be relevant for specific types of treatment."	"Cloning and distribution of myosin 3B in the mouse retina: differential distribution in cone outer segments. Class III myosins are important for the function and survival of photoreceptors and ciliary hair cells. Although vertebrates possess two class III myosin genes, myo3A and myo3B, recent studies have focused on Myo3A because mutations in the human gene are implicated in progressive hearing loss. Myo3B may compensate for defects in Myo3A, yet little is known about its distribution and function. This study focuses on Myo3B expression in the mouse retina. We cloned two variants of myo3B from mouse retina and determined that they are expressed early in retinal development. In this study we show for the first time in a mammal that both Myo3B and Myo3A proteins are present in inner segments of all photoreceptors. Myo3B is also present in outer segments of S opsin-immunoreactive cones but not M opsin dominant cones. Myo3B is also detected in rare cells of the inner nuclear layer and some ganglion cells. Myo3B may have diverse roles in retinal neurons. In photoreceptor inner segments Myo3B is positioned appropriately to prevent photoreceptor loss of function caused by Myo3A defects."	"Polymorphisms in the GAD2 gene-region are associated with susceptibility for unipolar depression and with a risk factor for anxiety disorders. Glutamate decarboxylase (GAD) is the rate limiting enzyme for conversion of glutamic acid to gamma-aminobutyric acid (GABA). The GAD 65 kDa isoform is encoded by the gene GAD2 and is mainly expressed in synaptic terminals. It serves as an apoenzyme, which shows enhanced availability in situations of stress, responding to short-term demands for GABA. We analyzed 18 single nucleotide polymorphisms (SNPs) in the GAD2-gene region for associations with psychiatric diagnosis and behavioral inhibition (BI) derived from the personality traits neuroticism and extraversion as defined by the Eysenck Personality Questionaire (EPQ). A total of 268 patients with anxiety disorder (AD), 541 with unipolar depression (MD), and 541 healthy controls were included. We observe associations for five tag-SNPs with BI in the AD- and control samples as well as two additional case-control associations in the MD-sample. The associated SNPs lie within a 16KB linkage disequilibrium-block, including putative 5' GAD2-promoter-elements as well as the 3' end of the gene MYO3A. Using open access mRNA-expression data, we could show that BI-associated SNPs appear to be associated with differences in MYO3A- but not GAD2 lymphoblastoid-mRNA expression levels. These results support earlier studies that suggest associations of polymorphisms within the GAD2 locus with anxiety and affective disorders. However, data from expression studies imply that these polymorphisms could tag functional effects on the neighboring gene MYO3A, which is also expressed in the brain, including the cingulate cortex and the amygdala."	"A novel nonsense mutation in MYO6 is associated with progressive nonsyndromic hearing loss in a Danish DFNA22 family. Autosomal dominant inheritance is described in about 20% of all nonsyndromic hearing loss with currently 54 distinct loci (DFNA1-54), and &gt;20 different genes identified. Seven different unconventional myosin genes are involved in ten different types of syndromic and nonsyndromic hearing loss with different patterns of inheritance: MYO7A in DFNA11/DFNB2/USH1B, MYH9 in DFNA17, MYH14 in DFNA4, MYO6 in DFNA22/DFNB37, MYO3A in DFNB30, MYO1A in DFNA48, and MYO15A in DFNB3. Two missense mutations in MYO6 (p.C442Y and p.H246R) have been characterized in families of Italian and American Caucasian extraction with autosomal dominant hearing loss, respectively, and the latter was associated with cardiomyopathy in some patients. Three Pakistani families had homozygosity for three MYO6 mutations (c.36insT, p.R1166X, and p.E216V, respectively), and was in one instance associated with retinal degeneration. In the present study, we linked autosomal dominant hearing loss in a large Danish family to a 38.9 Mb interval overlapping with the DFNA22/DFNB37 locus on chromosome 6q13. A novel nonsense mutation in MYO6 exon 25 (c.2545C &gt; T; p.R849X) was identified in the family. The mutation co-segregated with the disease and the mutant allele is predicted to encode a truncated protein lacking the coiled-coil and globular tail domains. These domains are hypothesized to be essential for targeting myosin VI to its cellular compartments. No other system was involved indicating nonsyndromic loss. In conclusion, a novel nonsense MYO6 mutation causes post-lingual, slowly progressive autosomal dominant nonsyndromic moderate to severe hearing loss in a Danish family."	"The kinase domain alters the kinetic properties of the myosin IIIA motor. Myosin IIIA is unique among myosin proteins in that it contains an N-terminal kinase domain capable of autophosphorylating sites on the motor domain. A construct of myosin IIIA lacking the kinase domain localizes more efficiently to the stereocilia tips and alters the morphology of the tips in inner ear hair cells. Therefore, we performed a kinetic analysis of myosin IIIA without the kinase domain (MIII DeltaK) and compared these results with our reported analysis of myosin IIIA containing the kinase domain (MIII). The steady-state kinetic properties of MIII DeltaK indicate that it has a 2-fold higher maximum actin-activated ATPase rate (kcat = 1.5 +/- 0.1 s-1) and a 5-fold tighter actin affinity (KATPase = 6.0 +/- 1.4 microM, and KActin = 1.4 +/- 0.4 microM) compared to MIII. The rate of ATP binding to the motor domain is enhanced in MIII DeltaK (K1k+2 approximately 0.10 +/- 0.01 microM-1.s-1) to a level similar to the rate of binding to MIII in the presence of actin. The rate of ATP hydrolysis in the absence of actin is slow and may be rate limiting. Actin-activated phosphate release is identical with and without the kinase domain. The transition between actomyosin.ADP states, which is rate limiting in MIII, is enhanced in MIII DeltaK. MIII DeltaK accumulates more efficiently at the tips of filopodia in HeLa cells. Our results suggest a model in which the activity and concentration of myosin IIIA localized to the tips of actin bundles mediates the morphology of the tips in sensory cells."	"Evaluation of ESPN, MYO3A, SLC26A5 and USH1C as candidates for hereditary non-syndromic deafness (congenital sensorineural deafness) in Dalmatian dogs. NA"	"A new compartment at stereocilia tips defined by spatial and temporal patterns of myosin IIIa expression. Class III myosins are motor proteins that contain an N-terminal kinase domain and a C-terminal actin-binding domain. We show that myosin IIIa, which has been implicated in nonsyndromic progressive hearing loss, is localized at stereocilia tips. Myosin IIIa progressively accumulates during stereocilia maturation in a thimble-like pattern around the stereocilia tip, distinct from the cap-like localization of myosin XVa and the shaft localization of myosin Ic. Overexpression of deletion mutants for functional domains of green fluorescent protein (GFP)-myosin IIIa shows that the motor domain, but not the actin-binding tail domain, is required for stereocilia tip localization. Deletion of the kinase domain produces stereocilia elongation and bulging of the stereocilia tips. The thimble-like localization and the influence myosin IIIa has on stereocilia shape reveal a previously unrecognized molecular compartment at the distal end of stereocilia, the site of actin polymerization as well as operation of the mechanoelectrical transduction apparatus."	"Human myosin III is a motor having an extremely high affinity for actin. Myosin IIIA is expressed in photoreceptor cells and thought to play a critical role in phototransduction processes, yet its function on a molecular basis is largely unknown. Here we clarified the kinetic mechanism of the ATPase cycle of human myosin IIIA. The steady-state ATPase activity was markedly activated approximately 10-fold with very low actin concentration. The rate of ADP off from actomyosin IIIA was 10 times greater than the overall cycling rate, thus not a rate-determining step. The rate constant of the ATP hydrolysis step of the actin-dissociated form was very slow, but the rate was markedly accelerated by actin binding. The dissociation constant of the ATP-bound form of myosin IIIA from actin is submicromolar, which agrees well with the low K(actin). These results indicate that ATP hydrolysis predominantly takes place in the actin-bound form for actomyosin IIIA ATPase reaction. The obtained K(actin) was much lower than the previously reported one, and we found that the autophosphorylation of myosin IIIA dramatically increased the K(actin), whereas the V(max) was unchanged. Our kinetic model indicates that both the actin-attached hydrolysis and the P(i) release steps determine the overall cycle rate of the dephosphorylated form. Although the stable steady-state intermediates of actomyosin IIIA ATPase reaction are not typical strong actin-binding intermediates, the affinity of the stable intermediates for actin is much higher than conventional weak actin binding forms. The present results suggest that myosin IIIA can spend a majority of its ATP hydrolysis cycling time on actin."	"Myosin 3A transgene expression produces abnormal actin filament bundles in transgenic Xenopus laevis rod photoreceptors. Myo3A, a class III myosin, localizes to the distal (plus) ends of inner segment actin filament bundles that form the core of microvillus-like calycal processes encircling the base of the photoreceptor outer segment. To investigate Myo3A localization and function, we expressed green fluorescent protein-tagged bass Myo3A and related constructs in transgenic Xenopus rods using a modified opsin promoter. Tagged intact Myo3A localized to rod calycal processes, as previously reported for native bass Myo3A. Transgenic rods developed abnormally large calycal processes and subsequently degenerated. Modified Myo3A expression constructs demonstrated that calycal process localization required an active motor domain and the tail domain. Expressed tail domain alone localized to actin bundles along the entire inner segment length, rather than to the distal end. This tail domain localization required the conserved C-terminal domain (3THDII) previously shown to possess an actin-binding motif. Our findings suggest that Myo3A plays a role in the morphogenesis and maintenance of calycal processes of vertebrate photoreceptors."	"Localization of a class III myosin to filopodia tips in transfected HeLa cells requires an actin-binding site in its tail domain. Bass Myo3A, a class III myosin, was expressed in HeLa cells as a GFP fusion in order to study its cellular localization. GFP-Myo3A localized to the cytoplasm and to the tips of F-actin bundles in filopodia, a localization that is consistent with the observed concentration toward the distal ends of F-actin bundles in photoreceptor cells. A mutation in the motor active site resulted in a loss of filopodia localization, suggesting that Myo3A motor activity is required for filopodial tip localization. Deletion analyses showed that the NH2-terminal kinase domain is not required but the CO2H-terminal 22 amino acids of the Myo3A tail are required for filopodial localization. Expression of this tail fragment alone produced fluorescence associated with F-actin throughout the cytoplasm and filopodia and a recombinant tail fragment bound to F-actin in vitro. An actin-binding motif was identified within this tail fragment, and a mutation within this motif abolished both filopodia localization by Myo3A and F-actin binding by the tail fragment alone. Calmodulin localized to filopodial tips when coexpressed with Myo3A but not in the absence of Myo3A, an observation consistent with the previous proposal that class III myosins bind calmodulin and thereby localize it in certain cell types."	"Myo3A, one of two class III myosin genes expressed in vertebrate retina, is localized to the calycal processes of rod and cone photoreceptors and is expressed in the sacculus. The striped bass has two retina-expressed class III myosin genes, each composed of a kinase, motor, and tail domain. We report the cloning, sequence analysis, and expression patterns of the long (Myo3A) and short (Myo3B) class III myosins, as well as cellular localization and biochemical characterization of the long isoform, Myo3A. Myo3A (209 kDa) is expressed in the retina, brain, testis, and sacculus, and Myo3B (155 kDa) is expressed in the retina, intestine, and testis. The tails of these two isoforms contain two highly conserved domains, 3THDI and 3THDII. Whereas Myo3B has three IQ motifs, Myo3A has nine IQ motifs, four in its neck and five in its tail domain. Myo3A localizes to actin filament bundles of photoreceptors and is concentrated in the calycal processes. An anti-Myo3A antibody decorates the actin cytoskeleton of rod inner/outer segments, and this labeling is reduced by the presence of ATP. The ATP-sensitive actin association is a feature characteristic of myosin motors. The numerous IQ motifs may play a structural or signaling role in the Myo3A, and its localization to calycal processes indicates that this myosin mediates a local function at this site in vertebrate photoreceptors."	"A class III myosin expressed in the retina is a potential candidate for Bardet-Biedl syndrome. Class III myosins are actin-based motors with amino-terminal kinase domains. Expression of these motors is highly enhanced in retinal photoreceptors. As mutations in the gene encoding NINAC, a Drosophila melanogaster class III myosin, cause retinal degeneration, human homologs of this gene are potential candidates for human retinal disease. We have recently reported the cloning of MYO3A, a human myosin III expressed predominantly in the retina and retinal pigmented epithelium [1]. The map locus of MYO3A is close to, but does not overlap, that of human Usher's 1F [2]. Here we introduce a shorter class III myosin isoform, MYO3B, which is expressed in the retina, kidney, and testis. We describe the cDNA sequence, genomic organization, and splice variants of MYO3B expressed in the human retina. A product of 36 exons, MYO3B has several splice variants containing either one or two calmodulin binding (IQ) motifs in the neck domain and one of three predominant tail variations: a short tail ending just past the second IQ motif, or two alternatively spliced longer tails. MYO3B maps to 2q31.1-q31.2, a region that overlaps the locus for a Bardet-Biedl syndrome (BBS5) linked to markers at 2q31 [3]."	"Cloning and chromosomal localization of a human class III myosin. Two class III myosins have been identified to date: NINAC from Drosophila melanogaster and MyoIII(Lim) from Limulus polyphemus. Both have N-terminal kinase domains and are expressed exclusively in photoreceptors. Mutations in NINAC have been shown to alter the photoresponse and compromise photoreceptor survival. We report the cloning and chromosomal localization of a human class III myosin, MYO3A, from retina and a retinal pigment epithelial cell line. Human MYO3A (which we will refer to simply as MYO3A) possesses an N-terminal kinase domain and three consensus calmodulin-binding (IQ) motifs, two in the neck and one in the tail domain. We detected two MYO3A splice variants differing by 52 amino acids near the kinase/myosin junction. On Northern blots, MYO3A probes detected a 6. 5-kb transcript in human and monkey retina, in a cultured human RPE cell line (RPE-19), and at much lower levels in human pancreas. A somatic hybrid panel PCR screen localized MYO3A to human chromosome 10, and a radiation hybrid screen further localized it proximal to marker D10S197, which is located at 10p11.1 on the human cytogenetic map. Since mutations in NINAC have been shown to alter the photoresponse and compromise photoreceptor survival, the human homologue MYO3A may also play a role in photoreceptor function and/or maintenance."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"OTOA"	"nonsyndromic genetic deafness"	"Spectrum of genetic variants in moderate to severe sporadic hearing loss in Pakistan. Hearing loss affects 380 million people worldwide due to environmental or genetic causes. Determining the cause of deafness in individuals without previous family history of hearing loss is challenging and has been relatively unexplored in Pakistan. We investigated the spectrum of genetic variants in hearing loss in a cohort of singleton affected individuals born to consanguineous parents. Twenty-one individuals with moderate to severe hearing loss were recruited. We performed whole-exome sequencing on DNA samples from the participants, which identified seventeen variants in ten known deafness genes and one novel candidate gene. All identified variants were homozygous except for two. Eleven of the variants were novel, including one multi-exonic homozygous deletion in OTOA. A missense variant in ESRRB was implicated for recessively inherited moderate to severe hearing loss. Two individuals were heterozygous for variants in MYO7A and CHD7, respectively, consistent with de novo variants or dominant inheritance with incomplete penetrance as the reason for their hearing loss. Our results indicate that similar to familial cases of deafness, variants in a large number of genes are responsible for moderate to severe hearing loss in sporadic individuals born to consanguineous couples."	"Polymorphisms in Neuronal Growth Regulator 1 and Otoancorin Alternate the Susceptibility to Lung Cancer in Chinese Nonsmoking Females. Cell adhesion molecules (CAMs) play crucial roles in the genesis and progress of tumor. We investigated the effects of single nucleotide polymorphisms (SNPs) of CAMs, neuronal growth regulator 1 (NEGR1), and Otoancorin (OTOA) on lung cancer susceptibility in Chinese nonsmoking females. Logistic regression and Cox regression analyses were conducted to investigate the effects of SNPs and environmental factors. For rs3102911, genotype TT carriers decreased the risk of lung cancer with an odds ratio (OR) of 0.635. AA genotypes of rs741718 increased the risk of lung cancer with an OR of 3.527. In stratified analysis, genotype AA carriers of rs741718 had a high susceptibility to lung adenocarcinoma compared with GG and AG genotypes. Analyses of association between SNPs and clinical characteristics revealed that rs3102911 as a protective factor and rs741718 as a risk factor influenced the lung cancer occurrence and progression in nonsmoking females."	"Human Papillomavirus 16 E6 and E7 Synergistically Repress Innate Immune Gene Transcription. Human papillomaviruses (HPV) are causative agents in 5% of all cancers, including the majority of anogenital and oropharyngeal cancers. Downregulation of innate immune genes (IIGs) by HPV to promote the viral life cycle is well documented; E6 and E7 are known repressors of these genes. More recently, we demonstrated that E2 could also repress IIGs. These studies have been carried out in cells overexpressing the viral proteins, and to further investigate the role of individual viral proteins in this repression, we introduced stop codons into E6 and/or E7 in the entire HPV16 genome and generated N/Tert-1 cells stably maintaining the HPV16 genomes. We demonstrate that E6 or E7 individually is not sufficient to repress IIG expression in the context of the entire HPV16 genome; both are required for a synergistic repression. The DNA damage response (DDR) is activated by HPV16 irrespective of E6 and E7 expression, presumably due to viral replication; E1 is a known activator of the DDR. In addition, replication stress was apparent in HPV16-positive cells lacking E6 and E7, manifested by attenuated cellular growth and activation of replication stress genes. These studies led us to the following model. Viral replication per se can activate the DDR following infection, and this activation is a known inducer of IIG expression, which may induce cellular senescence. To combat this, E6 and E7 synergistically combine to manipulate the DDR and actively repress innate immune gene expression promoting cellular growth; neither protein by itself is able to do this.IMPORTANCE The role of human papillomavirus 16 (HPV16) in human cancers is well established; however, to date there are no antiviral therapeutics that are available for combatting these cancers. To identify such targets, we must enhance the understanding of the viral life cycle. Innate immune genes (IIGs) are repressed by HPV16, and we have reported that this repression persists through to cancer. Reversal of this repression would boost the immune response to HPV16-positive tumors, an area that is becoming more important given the advances in immunotherapy. This report demonstrates that E6 and E7 synergistically repress IIG expression in the context of the entire HPV16 genome. Removal of either protein activates the expression of IIGs by HPV16. Therefore, gaining a precise understanding of how the viral oncogenes repress IIG expression represents an opportunity to reverse this repression and boost the immune response to HPV16 infections for therapeutic gain."	"Mid-Frequency Hearing Loss Is Characteristic Clinical Feature of OTOA-Associated Hearing Loss. The OTOA gene (Locus: DFNB22) is reported to be one of the causative genes for non-syndromic autosomal recessive hearing loss. The copy number variations (CNVs) identified in this gene are also known to cause hearing loss, but have not been identified in Japanese patients with hearing loss. Furthermore, the clinical features of OTOA-associated hearing loss have not yet been clarified. In this study, we performed CNV analyses of a large Japanese hearing loss cohort, and identified CNVs in 234 of 2262 (10.3%, 234/2262) patients with autosomal recessive hearing loss. Among the identified CNVs, OTOA gene-related CNVs were the second most frequent (0.6%, 14/2262). Among the 14 cases, 2 individuals carried OTOA homozygous deletions, 4 carried heterozygous deletions with single nucleotide variants (SNVs) in another allele. Additionally, 1 individual with homozygous SNVs in the OTOA gene was also identified. Finally, we identified 7 probands with OTOA-associated hearing loss, so that its prevalence in Japanese patients with autosomal recessive hearing loss was calculated to be 0.3% (7/2262). As novel clinical features identified in this study, the audiometric configurations of patients with OTOA-associated hearing loss were found to be mid-frequency. This is the first study focused on the detailed clinical features of hearing loss caused by this gene mutation and/or gene deletion."	"SAMHD1 Regulates Human Papillomavirus 16-Induced Cell Proliferation and Viral Replication during Differentiation of Keratinocytes. Human papillomaviruses induce a host of anogenital cancers, as well as oropharyngeal cancer (HPV+OPC); human papillomavirus 16 (HPV16) is causative in around 90% of HPV+OPC cases. Using telomerase reverse transcriptase (TERT) immortalized foreskin keratinocytes (N/Tert-1), we have identified significant host gene reprogramming by HPV16 (N/Tert-1+HPV16) and demonstrated that N/Tert-1+HPV16 support late stages of the viral life cycle. Expression of the cellular dNTPase and homologous recombination factor sterile alpha motif and histidine-aspartic domain HD-containing protein 1 (SAMHD1) is transcriptionally regulated by HPV16 in N/Tert-1. CRISPR/Cas9 removal of SAMHD1 from N/Tert-1 and N/Tert-1+HPV16 demonstrates that SAMHD1 controls cell proliferation of N/Tert-1 only in the presence of HPV16; the deletion of SAMHD1 promotes hyperproliferation of N/Tert-1+HPV16 cells in organotypic raft cultures but has no effect on N/Tert-1. Viral replication is also elevated in the absence of SAMHD1. This new system has allowed us to identify a specific interaction between SAMHD1 and HPV16 that regulates host cell proliferation and viral replication; such studies are problematic in nonimmortalized primary keratinocytes due to their limited life span. To confirm the relevance of our results, we repeated the analysis with human tonsil keratinocytes (HTK) immortalized by HPV16 (HTK+HPV16) and observed the same hyperproliferative phenotype following CRISPR/Cas9 editing of SAMHD1. Identical results were obtained with three independent CRISPR/Cas9 guide RNAs. The isogenic pairing of N/Tert-1 with N/Tert-1+HPV16, combined with HTK+HPV16, presents a unique system to identify host genes whose products functionally interact with HPV16 to regulate host cellular growth in keratinocytes.IMPORTANCE HPVs are causative agents in human cancers and are responsible for around of 5% of all cancers. A better understanding of the viral life cycle in keratinocytes will facilitate the development of novel therapeutics to combat HPV-positive cancers. Here, we present a unique keratinocyte model to identify host proteins that specifically interact with HPV16. Using this system, we report that a cellular gene, SAMHD1, is regulated by HPV16 at the RNA and protein levels in keratinocytes. Elimination of SAMHD1 from these cells using CRISPR/Cas9 editing promotes enhanced cellular proliferation by HPV16 in keratinocytes and elevated viral replication but not in keratinocytes that do not have HPV16. Our study demonstrates a specific intricate interplay between HPV16 and SAMHD1 during the viral life cycle and establishes a unique model system to assist exploring host factors critical for HPV pathogenesis."	"'Distal 16p12.2 microdeletion' in a patient with autosomal recessive deafness-22. The 16p12.2 chromosome band contains three large segmental duplications: BP1, BP2 and BP3, providing a substrate for recombination and recurrent chromosomal rearrangements. The '16p12.2 microdeletion' is a recurrent deletion comprised between BP2 and BP3, associated with variable clinical findings. We identified a heterozygous 16p12.2 microdeletion spanning between BP1 and BP2 in a child evaluated for short stature and mild dyslexia. Unexpectedly, the mother carried the same deletion in the homozygous state and suffered from severe hearing loss. Detailed family history revealed consanguinity of the maternal grandparents. The 16p12.2 microdeletion is a rare condition and contains only three genes: METTL9, IGSF6 and OTOA of which the OTOA is considered responsible for DFNB22 hearing loss (MIM: 607039) under its homozygous condition. A number of OTOA mutations have been described, whereas very few cases of a 16p12.2 microdeletion similar to that observed in our family have been reported. In conclusion, we describe a rare 'distal 16p12.2microdeletion' widening the phenotypic spectrum associated with the recurrent 16p12.2 microdeletion and support the causative role of OTOA microdeletion in hearing impairment."	"Exome-based search for recurrent disease-causing alleles in Russian population. Exomes of 27 Russian subjects were analyzed for the presence of medically relevant alleles, such as protein-truncating variants (PTVs) in known recessive disease-associated genes and pathogenic missense mutations included in the ClinVar database. 36 variants (24 PTVs and 12 amino acid substitutions) were identified and then subjected to the analysis in 897 population controls. 9/36 mutations were novel, however only two of them (POLH c.490delG associated with xeroderma pigmentosum variant (XPV) and CATSPER1 c.859_860delCA responsible for spermatogenic failure) were shown to be recurrent. 27 out of 36 pathogenic alleles were already described in prior genetic studies; seven of them occurred only in the index cases, while 20 demonstrated evidence for persistence in Russian population. In particular, non-random occurrence was revealed for SERPINA1 c.1096G &gt; A (alpha-1 antitrypsin deficiency), C8B c.1282C &gt; T and c.1653G &gt; A (complement component 8B deficiency), ATP7B c.3207C &gt; A (Wilson disease), PROP1 c.301_302delAG (combined pituitary hormone deficiency), CYP21A2 c.844G &gt; T (non-classical form of adrenogenital syndrome), EYS c.1155T &gt; A (retinitis pigmentosa), HADHA c.1528G &gt; C (LCHAD deficiency), SCO2 c.418G &gt; A (cytochrome c oxidase deficiency), OTOA c.2359G &gt; T (sensorineural deafness), C2 c.839_866del (complement component 2 deficiency), ACADVL c.848T &gt; C (VLCAD deficiency), TGM5 c.337G &gt; T (acral peeling skin syndrome) and VWF c.2561 G &gt; A (von Willebrand disease, type 2N). These data deserve to be considered in future medical genetic activities."	"Clarification of glycosylphosphatidylinositol anchorage of OTOANCORIN and human OTOA variants associated with deafness. Otoancorin (OTOA), encoded by OTOA, is required for the development of the tectorial membrane in the inner ear. Mutations in this gene cause nonsyndromic hearing loss (DFNB22). The molecular mechanisms underlying most DFNB22 remain poorly understood. Disruption of glycosylphosphatidylinositol (GPI) anchorage has been assumed to be the pathophysiology mandating experimental validation. From a Korean deaf family, we identified two trans OTOA variants (c.1320 + 5 G &gt; C and p.Gln589ArgfsX55 [NM_144672.3]) . The pathogenic potential of c.1320 + 5 G &gt; C was confirmed by a minigene splicing assay. To experimentally determine the GPI anchorage, wild-type (WT) and mutant OTOA harboring p.Gln589ArgfsX55 were expressed in HEK293T cells. The mutant OTOA with p.Gln589ArgfsX55 resulted in an uncontrolled release of OTOA into the medium in contrast with phosphatidylinositol-specific phospholipase C-induced controlled release of WT OTOA from the cell surface. Together, the results of this reverse translational study confirmed GPI-anchorage of OTOA and showed that downstream sequences from the 589th amino acid are critical for GPI-anchorage."	"Identification of Key Genes and Pathways Associated with RUNX1 Mutations in Acute Myeloid Leukemia Using Bioinformatics Analysis. BACKGROUND RUNXl plays a key regulatory role in the process of hematopoiesis and is a common target for multiple chromosomal translocations in human acute leukemia. Mutations of RUNX1 gene can lead to acute leukemia and affect the prognosis of AML patients. We aimed to identify pivotal genes and pathways involved in RUNX1-mutated patients of with acute myeloid leukemia (AML) and to explore possible molecular markers for novel therapeutic targets of the disease. MATERIAL AND METHODS The RNA sequencing datasets of 151 cases of AML were obtained from the Cancer Genome Atlas database. Differentially expressed genes (DEGs) were identified using edgeR of the R platform. PPI (protein-protein interaction) network clustering modules were analyzed with ClusterONE, and the KEGG (Kyoto Encyclopedia of Genes and Genomes) pathway enrichment analyses for modules were performed. RESULTS A total of 379 genes were identified as DEGs. The KEGG enrichment analysis of DEGs showed significantly enriched pathways in cancer, extracellular matrix (ECM)-receptor interaction pathway, and cyclic adenosine monophosphate (cAMP) signaling pathway. The top 10 genes ranked by degree were PRKACG, ANKRD7, RNFL7, ROPN11, TEX14, PRMT8, OTOA, CFAP99, NRXN1, and DMRT1, which were identified as hub genes from the protein-protein interaction network (PPI). Statistical analysis revealed that RUNX1-mutated patients with AML had a shorter median survival time (MST) with poor clinical outcome and an increased risk of death when compared with those without RUNX1 mutations. CONCLUSIONS DEGs and pathways identified in the present study will help understand the molecular mechanisms underlying RUNX1 mutations in AML and develop effective therapeutic strategies for RUNX1-mutation AML."	"Comprehensive Genetic Testing for Deafness from Fresh and Archived Dried Blood Spots. Comprehensive genetic testing has become integral in the evaluation of children with deafness, but the amount of blood required to obtain DNA can be prohibitive in newborns. Dried blood spots (DBSs) are routinely collected and would provide an alternative source of DNA. Our objective was to evaluate the use of DBSs for comprehensive genetic testing for deafness. DNA derived from fresh and archived DBS samples was compared with DNA from whole blood. We performed next-generation sequencing of all known deafness genes in 4 DBS samples: 2 positive controls, an unknown sample, and a negative control. The DBS-derived DNA was of sufficient quantity and quality for clinical testing. In the 2 positive control samples, pathogenic variants were identified; in the negative control, no pathogenic variants were found; and in the unknown sample, homozygous deletion of the OTOA gene was identified as the cause of deafness. This pilot study shows that comprehensive genetic testing for deafness is feasible with fresh and/or archived DBSs."	"Efficacy of a respiratory syncytial virus vaccine candidate in a maternal immunization model. Respiratory syncytial virus (RSV) is the most common cause of bronchiolitis in infants. Maternal immunization is an option to increase maternal antibody levels and protect infants from infection. Here we assess the efficacy of virus-like particle (VLP) vaccine candidates containing stabilized pre-fusion (pre-F) or post-fusion (post-F) conformations of the RSV F protein and the attachment RSV G protein in a maternal immunization model using cotton rats. VLP vaccines containing RSV F and G proteins strongly boost pre-existing RSV immunity in dams preventing their perinatal drop in immunity. Boosting is stronger for the pre-F VLP than for the post-F VLP or purified subunit F protein vaccines, giving an advantage on mothers' protection. VLP immunization of dams provides significant protection to pups from RSV challenge and reduced pulmonary inflammation. Collectively, our results show that a VLP vaccine with RSV F and G proteins is safe and effective for maternal and adult vaccination."	"Targeted next-generation sequencing and parental genotyping in sporadic Chinese Han deaf patients. The interpretation of the targeted next-generation sequencing (NGS) results can be challenging for variants identified in the sporadic deaf patients. In this study, we performed targeted NGS of 143 deafness-associated genes in 44 sporadic deaf patients and use parental genotyping to test whether the candidate pathogenic variants complied with recessive or de novo pattern. Of 29 recessive candidate variants with minor allele frequencies (MAFs) less than 0.005, 3 pairs of apparent compound heterozygous variants were inherited from the same parental allele, ruling out their pathogenic roles. In addition, non-segregation of an OTOA p.Gln293Arg variant led to the discovery of a genomic microdeletion of OTOA on the opposite allele by copy number variation analysis. Overall, 13 pairs of recessive candidate variants were deemed causative in 13 patients. Of the 28 dominant candidate variants with MAFs less than 0.0005, none occurred de novo, suggesting that they were not disease causing. Our results revealed that targeted NGS in sporadic deaf patients may generate a significant false-positive rate. Parental genotyping is a simple but effective step toward minimizing the false-positive results. Our study also showed that de novo variants in dominant deafness genes may not be a common cause for sporadic deafness."	"Next-generation sequencing reveals the mutational landscape of clinically diagnosed Usher syndrome: copy number variations, phenocopies, a predominant target for translational read-through, and PEX26 mutated in Heimler syndrome. Combined retinal degeneration and sensorineural hearing impairment is mostly due to autosomal recessive Usher syndrome (USH1: congenital deafness, early retinitis pigmentosa (RP); USH2: progressive hearing impairment, RP). Sanger sequencing and NGS of 112 genes (Usher syndrome, nonsyndromic deafness, overlapping conditions), MLPA, and array-CGH were conducted in 138 patients clinically diagnosed with Usher syndrome. A molecular diagnosis was achieved in 97% of both USH1 and USH2 patients, with biallelic mutations in 97% (USH1) and 90% (USH2), respectively. Quantitative readout reliably detected CNVs (confirmed by MLPA or array-CGH), qualifying targeted NGS as one tool for detecting point mutations and CNVs. CNVs accounted for 10% of identified USH2A alleles, often in trans to seemingly monoallelic point mutations. We demonstrate PTC124-induced read-through of the common p.Trp3955* nonsense mutation (13% of detected USH2A alleles), a potential therapy target. Usher gene mutations were found in most patients with atypical Usher syndrome, but the diagnosis was adjusted in case of double homozygosity for mutations in OTOA and NR2E3, genes implicated in isolated deafness and RP. Two patients with additional enamel dysplasia had biallelic PEX26 mutations, for the first time linking this gene to Heimler syndrome. Targeted NGS not restricted to Usher genes proved beneficial in uncovering conditions mimicking Usher syndrome."	"Preclinical assessment of safety of maternal vaccination against respiratory syncytial virus (RSV) in cotton rats. Maternal immunization directed to control RSV infection in newborns and infants is an appealing vaccination strategy currently under development. In this work we have modeled maternal vaccination against RSV in cotton rats (CR) to answer two fundamental questions on maternal vaccine safety. We tested (i), whether a known, unsafe RSV vaccine (i.e., FI-RSV Lot 100 vaccine) induces vaccine enhanced disease in the presence of passively transferred, RSV maternal immunity, and (ii) whether the same FI-RSV vaccine could induce vaccine enhanced disease in CR litters when used to immunize their RSV-primed mothers. Our data show that FI-RSV immunization of pups with subsequent RSV infection results in vaccine-enhanced disease independent of whether the pups were born to RSV-seropositive or RSV-seronegative mothers, and that FI-RSV immunization of RSV-seropositive mothers does not present a health risk to either the mother or the infant. Our study also raises a novel concern regarding infant immunization, namely that &quot;safe&quot; RSV vaccines (e.g., live RSV administered intramuscularly) may induce vaccine-enhanced disease in RSV-infected pups born to seropositive mothers. Finally, we describe for the first time a sharp decrease in RSV neutralizing antibody titers in immunized seropositive CR at the time of delivery. This decline may reflect maternal immune suppression, potentially pinpointing a window of increased vulnerability to RSV infection that could be alleviated by effective immunization of expectant mothers."	"Targeted sequencing identifies novel variants involved in autosomal recessive hereditary hearing loss in Qatari families. Hereditary hearing loss is characterized by a very high genetic heterogeneity. In the Qatari population the role of GJB2, the worldwide HHL major player, seems to be quite limited compared to Caucasian populations. In this study we analysed 18 Qatari families affected by non-syndromic hearing loss using a targeted sequencing approach that allowed us to analyse 81 genes simultaneously. Thanks to this approach, 50% of these families (9 out of 18) resulted positive for the presence of likely causative alleles in 6 different genes: CDH23, MYO6, GJB6, OTOF, TMC1 and OTOA. In particular, 4 novel alleles were detected while the remaining ones were already described to be associated to HHL in other ethnic groups. Molecular modelling has been used to further investigate the role of novel alleles identified in CDH23 and TMC1 genes demonstrating their crucial role in Ca2+ binding and therefore possible functional role in proteins. Present study showed that an accurate molecular diagnosis based on next generation sequencing technologies might largely improve molecular diagnostics outcome leading to benefits for both genetic counseling and definition of recurrence risk."	"The diagnostic yield of whole-exome sequencing targeting a gene panel for hearing impairment in The Netherlands. Hearing impairment (HI) is genetically heterogeneous which hampers genetic counseling and molecular diagnosis. Testing of several single HI-related genes is laborious and expensive. In this study, we evaluate the diagnostic utility of whole-exome sequencing (WES) targeting a panel of HI-related genes. Two hundred index patients, mostly of Dutch origin, with presumed hereditary HI underwent WES followed by targeted analysis of an HI gene panel of 120 genes. We found causative variants underlying the HI in 67 of 200 patients (33.5%). Eight of these patients have a large homozygous deletion involving STRC, OTOA or USH2A, which could only be identified by copy number variation detection. Variants of uncertain significance were found in 10 patients (5.0%). In the remaining 123 cases, no potentially causative variants were detected (61.5%). In our patient cohort, causative variants in GJB2, USH2A, MYO15A and STRC, and in MYO6 were the leading causes for autosomal recessive and dominant HI, respectively. Segregation analysis and functional analyses of variants of uncertain significance will probably further increase the diagnostic yield of WES."	"DNA Diagnostics of Hereditary Hearing Loss: A Targeted Resequencing Approach Combined with a Mutation Classification System. Although there are nearly 100 different causative genes identified for nonsyndromic hearing loss (NSHL), Sanger sequencing-based DNA diagnostics usually only analyses three, namely, GJB2, SLC26A4, and OTOF. As this is seen as inadequate, there is a need for high-throughput diagnostic methods to detect disease-causing variations, including single-nucleotide variations (SNVs), insertions/deletions (Indels), and copy-number variations (CNVs). In this study, a targeted resequencing panel for hearing loss was developed including 79 genes for NSHL and selected forms of syndromic hearing loss. One-hundred thirty one presumed autosomal-recessive NSHL (arNSHL) patients of Western-European ethnicity were analyzed for SNVs, Indels, and CNVs. In addition, we established a straightforward variant classification system to deal with the large number of variants encountered. We estimate that combining prescreening of GJB2 with our panel leads to a diagnosis in 25%-30% of patients. Our data show that after GJB2, the most commonly mutated genes in a Western-European population are TMC1, MYO15A, and MYO7A (3.1%). CNV analysis resulted in the identification of causative variants in two patients in OTOA and STRC. One of the major challenges for diagnostic gene panels is assigning pathogenicity for variants. A collaborative database collecting all identified variants from multiple centers could be a valuable resource for hearing loss diagnostics."	"Increased Spontaneous Otoacoustic Emissions in Mice with a Detached Tectorial Membrane. Mutations in genes encoding tectorial membrane (TM) proteins are a significant cause of human hereditary hearing loss (Hildebrand et al. 2011), and several mouse models have been developed to study the functional significance of this accessory structure in the mammalian cochlea. In this study, we use otoacoustic emissions (OAE), signals obtained from the ear canal that provide a measure of cochlear function, to characterize a mouse in which the TM is detached from the spiral limbus due to an absence of otoancorin (Otoa, Lukashkin et al. 2012). Our results demonstrate that spontaneous emissions (SOAE), sounds produced in the cochlea without stimulation, increase dramatically in mice with detached TMs even though their hearing sensitivity is reduced. This behavior is unusual because wild-type (WT) controls are rarely spontaneous emitters. SOAEs in mice lacking Otoa predominate around 7 kHz, which is much lower than in either WT animals when they generate SOAEs or in mutant mice in which the TM protein Ceacam16 is absent (Cheatham et al. 2014). Although both mutants lack Hensen's stripe, loss of this TM feature is only observed in regions coding frequencies greater than ~15 kHz in WT mice so its loss cannot explain the low-frequency, de novo SOAEs observed in mice lacking Otoa. The fact that ~80 % of mice lacking Otoa produce SOAEs even when they generate smaller distortion product OAEs suggests that the active process is still functioning in these mutants but the system(s) involved have become less stable due to alterations in TM structure. "	"Diversity of the causal genes in hearing impaired Algerian individuals identified by whole exome sequencing. The genetic heterogeneity of congenital hearing disorders makes molecular diagnosis expensive and time-consuming using conventional techniques such as Sanger sequencing of DNA. In order to design an appropriate strategy of molecular diagnosis in the Algerian population, we explored the diversity of the involved mutations by studying 65 families affected by autosomal recessive forms of nonsyndromic hearing impairment (DFNB forms), which are the most prevalent early onset forms. We first carried out a systematic screening for mutations in GJB2 and the recurrent p.(Arg34*) mutation in TMC1, which were found in 31 (47.7%) families and 1 (1.5%) family, respectively. We then performed whole exome sequencing in nine of the remaining families, and identified the causative mutations in all the patients analyzed, either in the homozygous state (eight families) or in the compound heterozygous state (one family): (c.709C&gt;T: p.(Arg237*)) and (c.2122C&gt;T: p.(Arg708*)) in OTOF, (c.1334T&gt;G: p.(Leu445Trp)) in SLC26A4, (c.764T&gt;A: p.(Met255Lys)) in GIPC3, (c.518T&gt;A: p.(Cys173Ser)) in LHFPL5, (c.5336T&gt;C: p.(Leu1779Pro)) in MYO15A, (c.1807G&gt;T: p.(Val603Phe)) in OTOA, (c.6080dup: p.(Asn2027Lys*9)) in PTPRQ, and (c.6017del: p.(Gly2006Alafs*13); c.7188_7189ins14: p.(Val2397Leufs*2)) in GPR98. Notably, 7 of these 10 mutations affecting 8 different genes had not been reported previously. These results highlight for the first time the genetic heterogeneity of the early onset forms of nonsyndromic deafness in Algerian families. "	"Modified protein expression in the tectorial membrane of the cochlea reveals roles for the striated sheet matrix. The tectorial membrane (TM) of the mammalian cochlea is a complex extracellular matrix which, in response to acoustic stimulation, displaces the hair bundles of outer hair cells (OHCs), thereby initiating sensory transduction and amplification. Here, using TM segments from the basal, high-frequency region of the cochleae of genetically modified mice (including models of human hereditary deafness) with missing or modified TM proteins, we demonstrate that frequency-dependent stiffening is associated with the striated sheet matrix (SSM). Frequency-dependent stiffening largely disappeared in all three TM mutations studied where the SSM was absent either entirely or at least from the stiffest part of the TM overlying the OHCs. In all three TM mutations, dissipation of energy is decreased at low (&lt;8 kHz) and increased at high (&gt;8 kHz) stimulus frequencies. The SSM is composed of polypeptides carrying fixed charges, and electrostatic interaction between them may account for frequency-dependent stiffness changes in the material properties of the TM. Through comparison with previous in vivo measurements, it is proposed that implementation of frequency-dependent stiffening of the TM in the OHC attachment region facilitates interaction among tones, backward transmission of energy, and amplification in the cochlea. "	"Exome sequencing and genome-wide copy number variant mapping reveal novel associations with sensorineural hereditary hearing loss. The genetic diversity of loci and mutations underlying hereditary hearing loss is an active area of investigation. To identify loci associated with predominantly non-syndromic sensorineural hearing loss, we performed exome sequencing of families and of single probands, as well as copy number variation (CNV) mapping in a case-control cohort. Analysis of three distinct families revealed several candidate loci in two families and a single strong candidate gene, MYH7B, for hearing loss in one family. MYH7B encodes a Type II myosin, consistent with a role for cytoskeletal proteins in hearing. High-resolution genome-wide CNV analysis of 150 cases and 157 controls revealed deletions in genes known to be involved in hearing (e.g. GJB6, OTOA, and STRC, encoding connexin 30, otoancorin, and stereocilin, respectively), supporting CNV contributions to hearing loss phenotypes. Additionally, a novel region on chromosome 16 containing part of the PDXDC1 gene was found to be frequently deleted in hearing loss patients (OR=3.91, 95% CI: 1.62-9.40, p=1.45×10(-7)). We conclude that many known as well as novel loci and distinct types of mutations not typically tested in clinical settings can contribute to the etiology of hearing loss. Our study also demonstrates the challenges of exome sequencing and genome-wide CNV mapping for direct clinical application, and illustrates the need for functional and clinical follow-up as well as curated open-access databases."	"Identification of copy number variants through whole-exome sequencing in autosomal recessive nonsyndromic hearing loss. Genetic variants account for more than half of the cases with congenital or prelingual onset hearing loss. Autosomal recessive nonsyndromic hearing loss (ARNSHL) is the most common subgroup. Whole-exome sequencing (WES) has been shown to be effective detecting deafness-causing single-nucleotide variants (SNVs) and insertion/deletions (INDELs). After analyzing the WES data for causative SNVs or INDELs involving previously reported deafness genes in 78 families with ARNSHL, we searched for copy number variants (CNVs) through two different tools in 24 families that remained unresolved. We detected large homozygous deletions in STRC and OTOA in single families. Thus, causative CNVs in known deafness genes explain 2 out of 78 (2.6%) families in our sample set. We conclude that CNVs can be reliably detected through WES and should be the part of pipelines used to clarify genetic basis of hearing loss. "	"Copy number variants are a common cause of non-syndromic hearing loss. Copy number variants (CNVs) are a well-recognized cause of genetic disease; however, methods for their identification are often gene-specific, excluded as 'routine' in screens of genetically heterogeneous disorders, and not implemented in most next-generation sequencing pipelines. For this reason, the contribution of CNVs to non-syndromic hearing loss (NSHL) is most likely under-recognized. We aimed to incorporate a method for CNV identification as part of our standard analysis pipeline and to determine the contribution of CNVs to genetic hearing loss. We used targeted genomic enrichment and massively parallel sequencing to isolate and sequence all exons of all genes known to cause NSHL. We completed testing on 686 patients with hearing loss with no exclusions based on type of hearing loss or any other clinical features. For analysis we used an integrated method for detection of single nucleotide changes, indels and CNVs. CNVs were identified using a previously published method that utilizes median read-depth ratios and a sliding-window approach. Of 686 patients tested, 15.2% (104) carried at least one CNV within a known deafness gene. Of the 38.9% (267) of individuals for whom we were able to determine a genetic cause of hearing loss, a CNV was implicated in 18.7% (50). We identified CNVs in 16 different genes including 7 genes for which no CNVs have been previously reported. CNVs of STRC were most common (73% of CNVs identified) followed by CNVs of OTOA (13% of CNVs identified). CNVs are an important cause of NSHL and their detection must be included in comprehensive genetic testing for hearing loss."	"Effect of the attachment of the tectorial membrane on cochlear micromechanics and two-tone suppression. The mechanical stimulation of the outer hair cell hair bundle (HB) is a key step in nonlinear cochlear amplification. We show how two-tone suppression (TTS), a hallmark of cochlear nonlinearity, can be used as an indirect measure of HB stimulation. Using two different nonlinear computational models of the cochlea, we investigate the effect of altering the mechanical load applied by the tectorial membrane (TM) on the outer hair cell HB. In the first model (TM-A model), the TM is attached to the spiral limbus (as in wild-type animals); in the second model (TM-D model), the TM is detached from the spiral limbus (mimicking the cochlea of Otoa(EGFP/EGFP) mutant mice). As in recent experiments, model simulations demonstrate that the absence of the TM attachment does not preclude cochlear amplification. However, detaching the TM alters the mechanical load applied by the TM on the HB at low frequencies and therefore affects TTS by low-frequency suppressors. For low-frequency suppressors, the suppression threshold obtained with the TM-A model corresponds to a constant suppressor displacement on the basilar membrane (as in experiments with wild-type animals), whereas it corresponds to a constant suppressor velocity with the TM-D model. The predictions with the TM-D model could be tested by measuring TTS on the basilar membrane of the Otoa(EGFP/EGFP) mice to improve our understanding of the fundamental workings of the cochlea."	"Preliminary studies on differential expression of auditory functional genes in the brain after repeated blast exposures. The mechanisms of central auditory processing involved in auditory/vestibular injuries and subsequent tinnitus and hearing loss in Active Duty servicemembers exposed to blast are not currently known. We analyzed the expression of hearing-related genes in different regions of the brain 6 h after repeated blast exposures in mice. Preliminary data showed that the expression of the deafness-related genes otoferlin and otoancorin was significantly changed in the hippocampus after blast exposures. Differential expression of cadherin and protocadherin genes, which are involved in hearing impairment, was observed in the hippocampus, cerebellum, frontal cortex, and midbrain after repeated blasts. A series of calcium-signaling genes that are known to be involved in auditory signal processing were also found to be significantly altered after repeated blast exposures. The hippocampus and midbrain showed significant increase in the gene expression of hearing loss-related antioxidant enzymes. Histopathology of the auditory cortex showed more significant injury in the inner layer compared to the outer layer. In summary, mice exposed to repeated blasts showed injury to the auditory cortex and significant alterations in multiple genes in the brain known to be involved in age- or noise-induced hearing impairment."	"Novel OTOA mutations cause autosomal recessive non-syndromic hearing impairment in Pakistani families. NA"	"A mouse model for human deafness DFNB22 reveals that hearing impairment is due to a loss of inner hair cell stimulation. The gene causative for the human nonsyndromic recessive form of deafness DFNB22 encodes otoancorin, a 120-kDa inner ear-specific protein that is expressed on the surface of the spiral limbus in the cochlea. Gene targeting in ES cells was used to create an EGFP knock-in, otoancorin KO (Otoa(EGFP/EGFP)) mouse. In the Otoa(EGFP/EGFP) mouse, the tectorial membrane (TM), a ribbon-like strip of ECM that is normally anchored by one edge to the spiral limbus and lies over the organ of Corti, retains its general form, and remains in close proximity to the organ of Corti, but is detached from the limbal surface. Measurements of cochlear microphonic potentials, distortion product otoacoustic emissions, and basilar membrane motion indicate that the TM remains functionally attached to the electromotile, sensorimotor outer hair cells of the organ of Corti, and that the amplification and frequency tuning of the basilar membrane responses to sounds are almost normal. The compound action potential masker tuning curves, a measure of the tuning of the sensory inner hair cells, are also sharply tuned, but the thresholds of the compound action potentials, a measure of inner hair cell sensitivity, are significantly elevated. These results indicate that the hearing loss in patients with Otoa mutations is caused by a defect in inner hair cell stimulation, and reveal the limbal attachment of the TM plays a critical role in this process."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"Mesothelin, Stereocilin, and Otoancorin are predicted to have superhelical structures with ARM-type repeats. Mesothelin is a 40 kDa protein present on the surface of normal mesothelial cells and overexpressed in many human tumours, including mesothelioma and ovarian and pancreatic adenocarcinoma. It forms a strong and specific complex with MUC16, which is also highly expressed on the surface of mesothelioma and ovarian cancer cells. This binding has been suggested to be the basis of ovarian cancer metastasis. Knowledge of the structure of this protein will be useful, for example, in building a structural model of the MUC16-mesothelin complex. Mesothelin is produced as a precursor, which is cleaved by furin to produce the N-terminal half, which is called the megakaryocyte potentiating factor (MPF), and the C-terminal half, which is mesothelin. Little is known about the function of mesothelin and there is no information on its possible three-dimensional structure. Mesothelin has been reported to be homologous to the deafness-related inner ear proteins otoancorin and stereocilin, for neither of which the three-dimensional structure is known. The BLAST and PSI-BLAST searches confirmed that mesothelin and mesothelin precursor proteins are remotely homologous to stereocilin and otoancorin and more closely homologous to the hypothetical protein MPFL (MPF-like). Secondary structure prediction servers predicted a predominantly helical structure for both mesothelin and mesothelin precursor proteins and also for stereocilin and otoancorin. Three-dimensional structure prediction servers INHUB and I-TASSER produced structural models for mesothelin, which consisted of superhelical structures with ARM-type repeats in conformity with the secondary structure predictions. Similar ARM-type superhelical repeat structures were predicted by 3D-PSSM server for mesothelin precursor and for stereocilin and otoancorin proteins. The mesothelin superfamily of proteins, which includes mesothelin, mesothelin precursor, megakaryocyte potentiating factor, MPFL, stereocilin and otoancorin, are predicted to have superhelical structures with ARM-type repeats. We suggest that all of these function as superhelical lectins to bind the carbohydrate moieties of extracellular glycoproteins."	"Genome-wide analysis of cancer/testis gene expression. Cancer/Testis (CT) genes, normally expressed in germ line cells but also activated in a wide range of cancer types, often encode antigens that are immunogenic in cancer patients, and present potential for use as biomarkers and targets for immunotherapy. Using multiple in silico gene expression analysis technologies, including twice the number of expressed sequence tags used in previous studies, we have performed a comprehensive genome-wide survey of expression for a set of 153 previously described CT genes in normal and cancer expression libraries. We find that although they are generally highly expressed in testis, these genes exhibit heterogeneous gene expression profiles, allowing their classification into testis-restricted (39), testis/brain-restricted (14), and a testis-selective (85) group of genes that show additional expression in somatic tissues. The chromosomal distribution of these genes confirmed the previously observed dominance of X chromosome location, with CT-X genes being significantly more testis-restricted than non-X CT. Applying this core classification in a genome-wide survey we identified &gt;30 CT candidate genes; 3 of them, PEPP-2, OTOA, and AKAP4, were confirmed as testis-restricted or testis-selective using RT-PCR, with variable expression frequencies observed in a panel of cancer cell lines. Our classification provides an objective ranking for potential CT genes, which is useful in guiding further identification and characterization of these potentially important diagnostic and therapeutic targets."	"Sequence similarity between stereocilin and otoancorin points to a unified mechanism for mechanotransduction in the mammalian inner ear. Interaction between hair cells and acellular gels of the mammalian inner ear, the tectorial and otoconial membranes, is crucial for mechanoreception. Recently, otoancorin was suggested to be a mediator of gel attachment to nonsensory cells, but the molecular components of the interface between gels and sensory cells remain to be identified. We report that the inner ear protein stereocilin is related in sequence to otoancorin and, based on its localisation and predicted GPI-anchoring, may mediate attachment of the tectorial and otoconial membranes to sensory hair bundles. It is expected that antibodies directed against stereocilin would specifically label sites of contact between sensory hair cells and tectorial/otoconial membranes of the inner ear. Our findings support a unified molecular mechanism for mechanotransduction, with stereocilin and otoancorin defining a new protein family responsible for the attachment of acellular gels to both sensory and nonsensory cells of the inner ear."	"Otoancorin, an inner ear protein restricted to the interface between the apical surface of sensory epithelia and their overlying acellular gels, is defective in autosomal recessive deafness DFNB22. A 3,673-bp murine cDNA predicted to encode a glycosylphosphatidylinositol-anchored protein of 1,088 amino acids was isolated during a study aimed at identifying transcripts specifically expressed in the inner ear. This inner ear-specific protein, otoancorin, shares weak homology with megakaryocyte potentiating factor/mesothelin precursor. Otoancorin is located at the interface between the apical surface of the inner ear sensory epithelia and their overlying acellular gels. In the cochlea, otoancorin is detected at two attachment zones of the tectorial membrane, a permanent one along the top of the spiral limbus and a transient one on the surface of the developing greater epithelial ridge. In the vestibule, otoancorin is present on the apical surface of nonsensory cells, where they contact the otoconial membranes and cupulae. The identification of the mutation (IVS12+2T&gt;C) in the corresponding gene OTOA in one consanguineous Palestinian family affected by nonsyndromic recessive deafness DFNB22 assigns an essential function to otoancorin. We propose that otoancorin ensures the attachment of the inner ear acellular gels to the apical surface of the underlying nonsensory cells."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"OTOG"	"nonsyndromic genetic deafness"	"Burden of Rare Variants in the OTOG Gene in Familial Meniere's Disease. Meniere's disease (MD) is a rare inner ear disorder characterized by sensorineural hearing loss, episodic vertigo, and tinnitus. Familial MD has been reported in 6 to 9% of sporadic cases, and few genes including FAM136A, DTNA, PRKCB, SEMA3D, and DPT have been involved in single families, suggesting genetic heterogeneity. In this study, the authors recruited 46 families with MD to search for relevant candidate genes for hearing loss in familial MD. Exome sequencing data from MD patients were analyzed to search for rare variants in hearing loss genes in a case-control study. A total of 109 patients with MD (73 familial cases and 36 early-onset sporadic patients) diagnosed according to the diagnostic criteria defined by the Barany Society were recruited in 11 hospitals. The allelic frequencies of rare variants in hearing loss genes were calculated in individuals with familial MD. A single rare variant analysis and a gene burden analysis (GBA) were conducted in the dataset selecting 1 patient from each family. Allelic frequencies from European and Spanish reference datasets were used as controls. A total of 5136 single-nucleotide variants in hearing loss genes were considered for single rare variant analysis in familial MD cases, but only 1 heterozygous likely pathogenic variant in the OTOG gene (rs552304627) was found in 2 unrelated families. The gene burden analysis found an enrichment of rare missense variants in the OTOG gene in familial MD. So, 15 of 46 families (33%) showed at least 1 rare missense variant in the OTOG gene, suggesting a key role in familial MD. The authors found an enrichment of multiplex rare missense variants in the OTOG gene in familial MD. This finding supports OTOG as a relevant gene in familial MD and set the groundwork for genetic testing in MD."	"Compound Phenotype Due to Recessive Variants in LARP7 and OTOG Genes Disclosed by an Integrated Approach of SNP-Array and Whole Exome Sequencing. Neurodevelopmental disorders are a challenge in medical genetics due to genetic heterogeneity and complex genotype-phenotype correlations. For this reason, the resolution of single cases not belonging to well-defined syndromes often requires an integrated approach of multiple whole-genome technologies. Such an approach has also unexpectedly revealed a complex molecular basis in an increasing number of patients, for whom the original suspect of a pleiotropic syndrome has been resolved as the summation effect of multiple genes. We describe a 10-year-old boy, the third son of first-cousin parents, with global developmental delay, facial dysmorphism, and bilateral deafness. SNP-array analysis revealed regions of homozygosity (ROHs) in multiple chromosome regions. Whole-exome sequencing prioritized on gene-mapping into the ROHs showed homozygosity for the likely pathogenic c.1097_1098delAG p. (Arg366Thrfs*2) frameshift substitution in LARP7 and the likely pathogenic c.5743C&gt;T p.(Arg1915*) nonsense variant in OTOG. Recessive variants in LARP7 cause Alazami syndrome, while variants in OTOG cause an extremely rare autosomal recessive form of neurosensorial deafness. Previously unreported features were acrocyanosis and palmoplantar hyperhidrosis. This case highlights the utility of encouraging technological updates in medical genetics laboratories involved in the study of neurodevelopmental disorders and integrating laboratory outputs with the competencies of next-generation clinicians."	"Clinical and genetic study of 12 Chinese Han families with nonsyndromic deafness. Nonsyndromic hearing loss is clinically and genetically heterogeneous. In this study, we characterized the clinical features of 12 Chinese Han deaf families in which mutations in common deafness genes GJB2, SLC26A4, and MT-RNR1 were excluded. Targeted next-generation sequencing of 147 known deafness genes was performed in probands of 10 families, while whole-exome sequencing was applied in those of the rest two. Pathogenic mutations in a total of 11 rare deafness genes, OTOF, CDH23, PCDH15, PDZD7, ADGRV1, KARS, OTOG, GRXCR2, MYO6, GRHL2, and POU3F4, were identified in all 12 probands, with 16 mutations being novel. Intrafamilial cosegregation of the mutations and the deafness phenotype were confirmed by Sanger sequencing. Our results expanded the mutation spectrum and genotype-phenotype correlation of nonsyndromic hearing loss in Chinese Hans and also emphasized the importance of combining both next-generation sequencing and detailed auditory evaluation to achieve a more accurate diagnosis for nonsyndromic hearing loss."	"Optimal water and land resource allocation in pastoral areas based on a water-land forage-livestock balance: a case study of Otog Front Banner, Inner Mongolia, China. Natural grasslands provide important land resources in pastoral areas, and greatly contribute to ecological functioning. Overgrazing and other unreasonable exploitations have led to the degradation and desertification of natural grasslands, exacerbating the forage-livestock imbalance. In areas suffering from water shortage, this imbalance gradually evolves into a water-land forage-livestock imbalance. In this study, a water-land forage-livestock balance-based model was developed to optimise the allocation of water, land, and forage resources in pastoral areas, while addressing economic and ecological benefits in a coupled manner. The model was applied in a case study of Otog Front Banner to simulate the comprehensive economic and ecological benefits to the development of water, land, and forage resources in different coupled allocations of artificial and natural grasslands. The results showed that as the duration of supplementary and barn feeding increased, local development was first constrained by the availability of natural grasslands and then by the availability of water resources. The optimal resource allocation in Otog Front Banner predicted for 2030 included a water consumption of 266,000,000 m<sup>3</sup>, an irrigation area of 43,000 ha, a natural grassland utilisation area of 684,700 ha, and a livestock farming scale of 1,188,500 sheep units."	"Genetic architecture of Meniere's disease. Meniere's disease (MD) is a complex disorder of the inner ear that causes vertigo attacks, fluctuating sensorineural hearing loss (SNHL), tinnitus and aural fullness. MD has been attributed to an accumulation of endolymph in the cochlear duct. The diagnosis of MD is based on the phenomenological association of clinical symptoms and the demonstration of SNHL during the vertigo attacks. Several evidences support a genetic contribution to MD including differences in the prevalence according to the ethnic background and familial aggregation in European and Asian populations in multiplex families with autosomal dominant inheritance. The genetic underpinnings of MD may include some rare monogenic forms in isolated families and a polygenic contribution in most familial and sporadic cases. So, familial MD has been reported in 6-8% of sporadic cases and several genes have been described in single Familial MD including FAM136A, DTNA, PRKCB, SEMA3D and DPT, suggesting genetic heterogeneity. Multiplex rare missense variants in OTOG gene have been reported in 33% of familial MD, suggesting multiallelic inheritance. Moreover, the genetic landscape of sporadic MD is more complex and it involves multiplex rare variants in several SNHL genes such as GJB2, USH1G, SLC26A4, ESRRB, and CLDN14 and axonal-guidance signalling genes such as NTN4 and NOX3. This review summarizes evidence to support a genetic contribution in MD and the start of deciphering the genetic architecture to design and develop a molecular map of MD."	"Otogelin, otogelin-like, and stereocilin form links connecting outer hair cell stereocilia to each other and the tectorial membrane. The function of outer hair cells (OHCs), the mechanical actuators of the cochlea, involves the anchoring of their tallest stereocilia in the tectorial membrane (TM), an acellular structure overlying the sensory epithelium. Otogelin and otogelin-like are TM proteins related to secreted epithelial mucins. Defects in either cause the DFNB18B and DFNB84B genetic forms of deafness, respectively, both characterized by congenital mild-to-moderate hearing impairment. We show here that mutant mice lacking otogelin or otogelin-like have a marked OHC dysfunction, with almost no acoustic distortion products despite the persistence of some mechanoelectrical transduction. In both mutants, these cells lack the horizontal top connectors, which are fibrous links joining adjacent stereocilia, and the TM-attachment crowns coupling the tallest stereocilia to the TM. These defects are consistent with the previously unrecognized presence of otogelin and otogelin-like in the OHC hair bundle. The defective hair bundle cohesiveness and the absence of stereociliary imprints in the TM observed in these mice have also been observed in mutant mice lacking stereocilin, a model of the DFNB16 genetic form of deafness, also characterized by congenital mild-to-moderate hearing impairment. We show that the localizations of stereocilin, otogelin, and otogelin-like in the hair bundle are interdependent, indicating that these proteins interact to form the horizontal top connectors and the TM-attachment crowns. We therefore suggest that these 2 OHC-specific structures have shared mechanical properties mediating reaction forces to sound-induced shearing motion and contributing to the coordinated displacement of stereocilia."	"Clinical characteristics with long-term follow-up of four Okinawan families with moderate hearing loss caused by an OTOG variant. We describe the clinical features of four Japanese families with moderate sensorineural hearing loss due to the OTOG gene variant. We analyzed 98 hearing loss-related genes in patients with hearing loss originally from the Okinawa Islands using next-generation sequencing. We identified a homozygous variant of the gene encoding otogelin NM_001277269(OTOG): c.330C&gt;G, p.Tyr110* in four families. All patients had moderate hearing loss with a slightly downsloping audiogram, including low frequency hearing loss without equilibrium dysfunction. Progressive hearing loss was not observed over the long-term in any patient. Among the three patients who underwent newborn hearing screening, two patients passed the test. OTOG-associated hearing loss was considered to progress early after birth, leading to moderate hearing loss and the later stable phase of hearing loss. Therefore, there are patients whose hearing loss cannot be detected by NHS, making genetic diagnosis of OTOG variants highly useful for complementing NHS in the clinical setting. Based on the allele frequency results, hearing loss caused by the p.Tyr110* variant in OTOG might be more common than we identified. The p.Tyr110* variant was reported in South Korea, suggesting that this variant is a common cause of moderate hearing loss in Japanese and Korean populations."	"Catalytic Asymmetric Carbene Transfer Reactions of Diazo Oxime Ethers with Olefins and Their Synthetic Applications. The first catalytic asymmetric cyclopropanation of diazo oxime ethers with olefins was developed. In the presence of a Ru(II)-Pheox catalyst, various optically active cyclopropyl oxime derivatives were obtained in high yields (up to 99%) with high enantioselectivities (up to 98% ee). Furthermore, optically active cyclopropyl oxime ethers could be successfully converted into the corresponding cyclopropyl methylamine derivatives via metal hydride and Grignard reagent mediated Beckmann rearrangement, which are potential candidates for the assessment of biological and pharmaceutical activities."	"Screening of noise-induced hearing loss (NIHL)-associated SNPs and the assessment of its genetic susceptibility. The aim of this study was to screen for noise-induced hearing loss (NIHL)-associated single nucleotide polymorphisms (SNPs) and to construct genetic risk prediction models for NIHL in a Chinese population. Four hundred seventy-six subjects with NIHL and 476 matched controls were recruited from a cross-sectional survey on NIHL in China. A total of 83 candidate SNPs were genotyped using nanofluidic dynamic arrays on a Fluidigm platform. NIHL-associated SNPs were screened with a multiple logistic model, and a genetic risk model was constructed based on the genetic risk score (GRS). The results were validated using a prospective cohort population. Seven SNPs in the CDH23, PCDH15, EYA4, MYO1A, KCNMA1, and OTOG genes were significantly (P &lt; 0.05) associated with the risk of NIHL, whereas seven other SNPs were marginally (P &gt; 0.05 and P &lt; 0.1) associated with the risk of NIHL. A positive correlation was observed between GRS values and odds ratio (OR) for NIHL. Two SNPs, namely, rs212769 and rs7910544, were validated in the cohort study. Subjects with higher GRS (≧9) showed a higher risk of NIHL incidence with an OR of 2.00 (95% CI = 1.04, 3.86). Genetic susceptibility plays an important role in the incidence of NIHL. GRS values, which are based on NIHL-associated SNPs. GRS may be utilized in the evaluation of genetic risk for NIHL and in the determination of NIHL susceptibility."	"Genome-wide association study of the level of blood components in Pekin ducks. Blood components are considered to reflect nutrient metabolism and immune activity in both humans and animals. In this study, we measured 12 blood components in Pekin ducks and performed genome-wide association analysis to identify the QTLs (quantitative trait locus) using a genotyping-by-sequencing strategy. A total of 54 QTLs were identified for blood components. One genome-wide significant QTL for alkaline phosphatase was identified within the intron-region of the OTOG gene (P = 1.31E-07). Moreover, 21 genome-wide significant SNPs for the level of serum cholinesterase were identified on six different scaffolds. In addition, for serum calcium, one genome-wide significant QTL was identified in the upstream region of gene RAB11B. These results provide new markers for functional studies in Pekin ducks, and several candidate genes were identified, which may provide additional insights into specific mechanisms for blood metabolism in ducks and their potential application for duck breeding programs."	"Reusable and highly enantioselective water-soluble Ru(II)-Amm-Pheox catalyst for intramolecular cyclopropanation of diazo compounds. A reusable and highly enantioselective catalyst for the intramolecular cyclopropanation of various diazo ester and Weinreb amide derivatives was developed. The reactions catalyzed by a water-soluble Ru(II)-Amm-Pheox catalyst proceeded smoothly at room temperature, affording the corresponding bicyclic cyclopropane ring-fused lactones and lactams in high yields (up to 99%) with excellent enantioselectivities (up to 99% ee). After screening of various catalysts, the Ru(II)-Amm-Pheox complex having an ammonium group proved to be crucial for the intramolecular cyclopropanation reaction in a water/ether biphasic medium. The water-soluble catalyst could be reused at least six times with little loss in yield and enantioselectivity."	"Genetics of hearing loss in the Arab population of Northern Israel. For multiple generations, much of the Arab population of Northern Israel has lived in communities with consanguineous marriages and large families. These communities have been particularly cooperative and informative for understanding the genetics of recessive traits. We studied the genetics of hearing loss in this population, evaluating 168 families from 46 different villages. All families were screened for founder variants by Sanger sequencing and 13 families were further evaluated by sequencing all known genes for hearing loss using our targeted gene panel HEar-Seq. Deafness in 34 of 168 families (20%) was explained by founder variants in GJB2, SLC26A4, or OTOF. In 6 of 13 families (46%) evaluated using HEar-Seq, deafness was explained by damaging alleles of SLC26A4, MYO15A, OTOG, LOXHD1, and TBC1D24. In some genes critical to hearing, it is particularly difficult to interpret variants that might affect splicing, because the genes are not expressed in accessible tissue. To address this problem for possible splice-altering variants of MYO15A, we evaluated minigenes transfected into HEK293 cells. Results revealed exon skipping in the message of MYO15A c.9083+6T&gt;A, and intron retention in the message of MYO15A c.8340G&gt;A, in each case leading to a premature stop and consistent with co-segregation of homozygosity for each variant with hearing loss. The profile of genetics of hearing loss in this population reflects the genetic heterogeneity of hearing loss and the usefulness of synthetic technologies to evaluate potentially causal variants in genes not expressed in accessible tissues."	"Candidate susceptibility variants in angioimmunoblastic T-cell lymphoma. Angioimmunoblastic T-cell lymphoma (AITL) is a subtype of peripheral T-cell lymphoma with a poor prognosis: the 5-year survival rate is approximately 30%. Somatic driver mutations have been found in TET2, IDH2, DNMT3A, RHOA, FYN, PLCG1, and CD28, whereas germline susceptibility to AITL has to our knowledge not been studied. The homogenous Finnish population is well suited for studies on genetic predisposition. Here, we performed an exome-wide rare variant analysis in 23 AITL patients. No germline mutations were found in the driver genes, implying that they are not frequently involved in genetic AITL predisposition. Potentially pathogenic variants present in at least two patients and showing significant (p &lt; 0.01) enrichment in our sample set were found in ten genes: POLK, PRKCB, ZNF676, PRRC2B, PCDHGB6, GNL3L, TTC36, OTOG, OSGEPL1, and RASSF9. The most significantly enriched variants, causing p.Lys469Ter in a splice variant of POLK and p.Pro588His in PRKCB, are intriguing candidates as Polk deficient mice display a spontaneous mutator phenotype, whereas PRKCB was recently shown to be somatically mutated in 33% of another peripheral T-cell lymphoma, adult T-cell lymphoma. If validated, our findings would provide new insight into the pathogenesis of AITL, as well as tools for early detection in susceptible individuals."	"A novel locus on mouse chromosome 7 that influences survival after infection with tick-borne encephalitis virus. Tick-borne encephalitis (TBE) is the main tick-borne viral infection in Eurasia. Its manifestations range from inapparent infections and fevers with complete recovery to debilitating or fatal encephalitis. The basis of this heterogeneity is largely unknown, but part of this variation is likely due to host genetic. We have previously found that BALB/c mice exhibit intermediate susceptibility to the infection of TBE virus (TBEV), STS mice are highly resistant, whereas the recombinant congenic strain CcS-11, carrying 12.5% of the STS genome on the background of the BALB/c genome is even more susceptible than BALB/c. Importantly, mouse orthologs of human TBE controlling genes Oas1b, Cd209, Tlr3, Ccr5, Ifnl3 and Il10, are in CcS-11 localized on segments derived from the strain BALB/c, so they are identical in BALB/c and CcS-11. As they cannot be responsible for the phenotypic difference of the two strains, we searched for the responsible STS-derived gene-locus. Of course the STS-derived genes in CcS-11 may operate through regulating or epigenetically modifying these non-polymorphic genes of BALB/c origin. To determine the location of the STS genes responsible for susceptibility of CcS-11, we analyzed survival of TBEV-infected F2 hybrids between BALB/c and CcS-11. CcS-11 carries STS-derived segments on eight chromosomes. These were genotyped in the F2 hybrid mice and their linkage with survival was tested by binary trait interval mapping. We have sequenced genomes of BALB/c and STS using next generation sequencing and performed bioinformatics analysis of the chromosomal segment exhibiting linkage with TBEV survival. Linkage analysis revealed a novel suggestive survival-controlling locus on chromosome 7 linked to marker D7Nds5 (44.2 Mb). Analysis of this locus for polymorphisms between BALB/c and STS that change RNA stability and genes' functions led to detection of 9 potential candidate genes: Cd33, Klk1b22, Siglece, Klk1b16, Fut2, Grwd1, Abcc6, Otog, and Mkrn3. One of them, Cd33, carried a nonsense mutation in the STS strain. The robust genetic system of recombinant congenic strains of mice enabled detection of a novel suggestive locus on chromosome 7. This locus contains 9 candidate genes, which will be focus of future studies not only in mice but also in humans."	"A novel early truncation mutation in OTOG causes prelingual mild hearing loss without vestibular dysfunction. OTOG was identified as a nonsyndrmoic hearing loss gene in 2012 in two families with nonprogressive mild-to-moderate hearing loss. However, no further literature have this gene for nonsyndromic hearing loss. Furthermore, it is still unclear whether vestibular impairment is involved or not in patients with mutations in OTOG. This study presents a validated second report for homozygous causative mutations in OTOG of mild hearing loss. Whole exome sequencing (WES) was performed in a five-year-old male proband with mild hearing loss. The analysis of WES revealed a homozygous truncating mutation (c.330C &gt; G; p.Tyr110*) in OTOG. The identified novel mutation, p.Tyr110*, leads to a null allele based on the fact that early truncated protein contains no functional domain of otogelin. While defects in otogelin previously reported to result in hearing loss and vestibular dysfunction, p.Tyr110* only caused nonsydromic and nonprogressive hearing loss without any vestibular impairment, indicating that vestibular phenotype would be variable. Given that mild hearing loss is not easy to be detected early, mutations of OTOG may be more prevalent than reported. Therefore, genetic evaluation for OTOG should be considered in children with mild hearing loss with/without vestibular dysfunction."	"Delayed Otolith Development Does Not Impair Vestibular Circuit Formation in Zebrafish. What is the role of normally patterned sensory signaling in development of vestibular circuits? For technical reasons, including the difficulty in depriving animals of vestibular inputs, this has been a challenging question to address. Here we take advantage of a vestibular-deficient zebrafish mutant, rock solo <sup>AN66</sup> , in order to examine whether normal sensory input is required for formation of vestibular-driven postural circuitry. We show that the rock solo <sup>AN66</sup> mutant is a splice site mutation in the secreted glycoprotein otogelin (otog), which we confirm through both whole genome sequencing and complementation with an otog early termination mutant. Using confocal microscopy, we find that elements of postural circuits are anatomically normal in rock solo <sup>AN66</sup> mutants, including hair cells, vestibular ganglion neurons, and vestibulospinal neurons. Surprisingly, the balance and postural deficits that are readily apparent in younger larvae disappear around 2 weeks of age. We demonstrate that this behavioral recovery follows the delayed development of the anterior (utricular) otolith, which appears around 14 days post-fertilization (dpf), compared to 1 dpf in WT. These findings indicate that utricular signaling is not required for normal structural development of the inner ear and vestibular nucleus neurons. Furthermore, despite the otolith's developmental delay until well after postural behaviors normally appear, downstream circuits can drive righting reflexes within ∼1-2 days of its arrival, indicating that vestibular circuit wiring is not impaired by a delay in patterned activity. The functional recovery of postural behaviors may shed light on why humans with mutations in otog exhibit only subclinical vestibular deficits."	"A new Otogelin ENU mouse model for autosomal-recessive nonsyndromic moderate hearing impairment. Approximately 10 % of the population worldwide suffers from hearing loss (HL) and about 60 % of persons with early onset HL have hereditary hearing loss due to genetic mutations. Highly efficient mutagenesis in mice with the chemical mutagen, ethylnitrosourea (ENU), associated with relevant phenotypic tools represents a powerful approach in producing mouse models for hearing impairment. A benefit of this strategy is to generate alleles to form a series revealing the full spectrum of gene function in vivo. It can also mimic the range of human mutations and polymorphisms for HL. In the course of a genome ENU mutagenesis program, we selected a new mouse model for hearing defect based on a dysmorphological screen. We identified by gene mapping the mutation responsible for this phenotype and characterized it at the histological level of the inner ear and evaluated the vestibule by following the recommendations of the standard operating procedures, IMPReSS. We have identified and characterized a new recessive allele of the otogelin gene, Otog (vbd/vbd) , due to a homozygous one base pair substitution at the splice donor site of intron 29. This mutation leads to a frame-shift and a premature stop codon. We observed a decrease in the amount of sensory cells in the maculae of Otog (vbd/vbd) mice as well as an apparent drastically decreased density to almost absence of the otoconial membrane. Compared to Otog (tm1Prs) and twister, the two other existing otogelin alleles, the detailed analysis of Otog (vbd/vbd) revealed that these mice share some common behavioural characteristics either with Otog (tm1Prs) or twister whereas the fine vestibular phenotype and the hearing defect are different. Our results emphasize the importance of detecting and characterizing a new allele of a gene in order to get comprehensive information about the gene function. "	"Otolith tethering in the zebrafish otic vesicle requires Otogelin and α-Tectorin. Otoliths are biomineralised structures important for balance and hearing in fish. Their counterparts in the mammalian inner ear, otoconia, have a primarily vestibular function. Otoliths and otoconia form over sensory maculae and are attached to the otolithic membrane, a gelatinous extracellular matrix that provides a physical coupling between the otolith and the underlying sensory epithelium. In this study, we have identified two proteins required for otolith tethering in the zebrafish ear, and propose that there are at least two stages to this process: seeding and maintenance. The initial seeding step, in which otolith precursor particles tether directly to the tips of hair cell kinocilia, fails to occur in the einstein (eis) mutant. The gene disrupted in eis is otogelin (otog); mutations in the human OTOG gene have recently been identified as causative for deafness and vestibular dysfunction (DFNB18B). At later larval stages, maintenance of otolith tethering to the saccular macula is dependent on tectorin alpha (tecta) function, which is disrupted in the rolling stones (rst) mutant. α-Tectorin (Tecta) is a major constituent of the tectorial membrane in the mammalian cochlea. Mutations in the human TECTA gene can cause either dominant (DFNA8/12) or recessive (DFNB21) forms of deafness. Our findings indicate that the composition of extracellular otic membranes is highly conserved between mammals and fish, reinforcing the view that the zebrafish is an excellent model system for the study of deafness and vestibular disease. "	"Mammalian TBX1 preferentially binds and regulates downstream targets via a tandem T-site repeat. Haploinsufficiency or mutation of TBX1 is largely responsible for the etiology of physical malformations in individuals with velo-cardio-facial/DiGeorge syndrome (VCFS/DGS/22q11.2 deletion syndrome). TBX1 encodes a transcription factor protein that contains an evolutionarily conserved DNA binding domain termed the T-box that is shared with other family members. All T-box proteins, examined so far, bind to similar but not identical consensus DNA sequences, indicating that they have specific binding preferences. To identify the TBX1 specific consensus sequence, Systematic Evolution of Ligands by Exponential Enrichment (SELEX) was performed. In contrast to other TBX family members recognizing palindrome sequences, we found that TBX1 preferentially binds to a tandem repeat of 5'-AGGTGTGAAGGTGTGA-3'. We also identified a second consensus sequence comprised of a tandem repeat with a degenerated downstream site. We show that three known human disease-causing TBX1 missense mutations (F148Y, H194Q and G310S) do not alter nuclear localization, or disrupt binding to the tandem repeat consensus sequences, but they reduce transcriptional activity in cell culture reporter assays. To identify Tbx1-downstream genes, we performed an in silico genome wide analysis of potential cis-acting elements in DNA and found strong enrichment of genes required for developmental processes and transcriptional regulation. We found that TBX1 binds to 19 different loci in vitro, which may correspond to putative cis-acting binding sites. In situ hybridization coupled with luciferase gene reporter assays on three gene loci, Fgf8, Bmper, Otog-MyoD, show that these motifs are directly regulated by TBX1 in vitro. Collectively, the present studies establish new insights into molecular aspects of TBX1 binding to DNA. This work lays the groundwork for future in vivo studies, including chromatin immunoprecipitation followed by next generation sequencing (ChIP-Seq) to further elucidate the molecular pathogenesis of VCFS/DGS. "	"Similar phenotypes caused by mutations in OTOG and OTOGL. Recently, OTOG and OTOGL were identified as human deafness genes. Currently, only four families are known to have autosomal recessive hearing loss based on mutations in these genes. Because the two genes code for proteins (otogelin and otogelin-like) that are strikingly similar in structure and localization in the inner ear, this study is focused on characterizing and comparing the hearing loss caused by mutations in these genes. To evaluate this type of hearing, an extensive set of audiometric and vestibular examinations was performed in the 13 patients from four families. All families show a flat to downsloping configuration of the audiogram with mild to moderate sensorineural hearing loss. Speech recognition scores remain good (&gt;90%). Hearing loss is not significantly different in the four families and the psychophysical test results also do not differ among the families. Vestibular examinations show evidence for vestibular hyporeflexia. Because otogelin and otogelin-like are localized in the tectorial membrane, one could expect a cochlear conductive hearing loss, as was previously shown in DFNA13 (COL11A2) and DFNA8/12 (TECTA) patients. Results of psychophysical examinations, however, do not support this. Furthermore, the authors conclude that there are no phenotypic differences between hearing loss based on mutations in OTOG or OTOGL. This phenotype description will facilitate counseling of hearing loss caused by defects in either of these two genes."	"Endogenous cytokinin profiles of tissue-cultured and acclimatized 'Williams' bananas subjected to different aromatic cytokinin treatments. Endogenous cytokinin (CK) levels of in vitro-cultured and greenhouse-acclimatized 'Williams' bananas treated with six aromatic CKs were quantified using UPLC-MS/MS. The underground parts had higher endogenous CK levels than the aerial parts. Control plantlets had more isoprenoid CKs while the aromatic-type CKs were predominant in all other regenerants. Following acclimatization of the control and 10 μM CK regenerants, there was a rapid decline in both isoprenoid and aromatic CK in the greenhouse-grown plants. Apart from the control and 6-(3-Methoxybenzylamino)-9-tetrahydropyran-2-ylpurine (MemTTHP) treatment with higher level of isoprenoid CK, aromatic CK remain the predominant CK-type across all CK treatments. The most abundant CK forms were meta-topolin (mT) and benzyladenine (BA) in the micropropagated and acclimatized plants, respectively. Micropropagated plantlets had cis-Zeatin (cZ) as the major isoprenoid CK-type which was in turn replaced by isopentenyladenine (iP) upon acclimatization. On a structural and functional basis, 9-glucoside, a deactivation/detoxicification product was the most abundant and mainly located in the underground parts (micropropagation and acclimatization). The results establish the wide variation in metabolic products of the tested aromatic CKs during micropropagation and acclimatization. The findings are discussed with the possible physiological roles of the various CK constituents on the growth and development of banana plants."	"Biallelic nonsense mutations in the otogelin-like gene (OTOGL) in a child affected by mild to moderate hearing impairment. Hearing impairment is characterized by great genetic heterogeneity. We report the identification, by whole exome sequencing, of two different nonsense mutations (c.1558C&gt;T; p.Gln520 and c.2773C&gt;T; p.Arg925) in the otogelin-like gene (OTOGL), in a child affected by mild to moderate isolated deafness. Parental genotypes allowed us to conclude that these mutations are present in the compound heterozygous state in the patient. In addition, our clinical data establish that the tectorial membrane and/or the outer hair cells are defective in this form of deafness."	"A phylomedicine approach to understanding the evolution of auditory sensory perception and disease in mammals. Hereditary deafness affects 0.1% of individuals globally and is considered as one of the most debilitating diseases of man. Despite recent advances, the molecular basis of normal auditory function is not fully understood and little is known about the contribution of single-nucleotide variations to the disease. Using cross-species comparisons of 11 'deafness' genes (Myo15, Ush1 g, Strc, Tecta, Tectb, Otog, Col11a2, Gjb2, Cldn14, Kcnq4, Pou3f4) across 69 evolutionary and ecologically divergent mammals, we elucidated whether there was evidence for: (i) adaptive evolution acting on these genes across mammals with similar hearing capabilities; and, (ii) regions of long-term evolutionary conservation within which we predict disease-associated mutations should occur. We find evidence of adaptive evolution acting on the eutherian mammals in Myo15, Otog and Tecta. Examination of selection pressures in Tecta and Pou3f4 across a taxonomic sample that included a wide representation of auditory specialists, the bats, did not uncover any evidence for a role in echolocation. We generated 'conservation indices' based on selection estimates at nucleotide sites and found that known disease mutations fall within sites of high evolutionary conservation. We suggest that methods such as this, derived from estimates of evolutionary conservation using phylogenetically divergent taxa, will help to differentiate between deleterious and benign mutations."	"Mutations of the gene encoding otogelin are a cause of autosomal-recessive nonsyndromic moderate hearing impairment. Already 40 genes have been identified for autosomal-recessive nonsyndromic hearing impairment (arNSHI); however, many more genes are still to be identified. In a Dutch family segregating arNSHI, homozygosity mapping revealed a 2.4 Mb homozygous region on chromosome 11 in p15.1-15.2, which partially overlapped with the previously described DFNB18 locus. However, no putative pathogenic variants were found in USH1C, the gene mutated in DFNB18 hearing impairment. The homozygous region contained 12 additional annotated genes including OTOG, the gene encoding otogelin, a component of the tectorial membrane. It is thought that otogelin contributes to the stability and strength of this membrane through interaction or stabilization of its constituent fibers. The murine orthologous gene was already known to cause hearing loss when defective. Analysis of OTOG in the Dutch family revealed a homozygous 1 bp deletion, c.5508delC, which leads to a shift in the reading frame and a premature stop codon, p.Ala1838ProfsX31. Further screening of 60 unrelated probands from Spanish arNSHI families detected compound heterozygous OTOG mutations in one family, c.6347C&gt;T (p.Pro2116Leu) and c. 6559C&gt;T (p.Arg2187X). The missense mutation p.Pro2116Leu affects a highly conserved residue in the fourth von Willebrand factor type D domain of otogelin. The subjects with OTOG mutations have a moderate hearing impairment, which can be associated with vestibular dysfunction. The flat to shallow &quot;U&quot; or slightly downsloping shaped audiograms closely resembled audiograms of individuals with recessive mutations in the gene encoding α-tectorin, another component of the tectorial membrane. This distinctive phenotype may represent a clue to orientate the molecular diagnosis."	"Connexin32 can restore hearing in connexin26 deficient mice. Functional gap junction channels composed of certain connexin proteins are essential for the function of the cochlea. Homozygous deficiency in the Gjb2 (mice) or GJB2 (human) gene coding for connexin26 (Cx26) in the cochlea leads to hearing impairment in mice and humans, respectively. Here we have studied the functional equivalence of Cx26 and connexin32 (Cx32) isoforms in the cochlea. We analyzed a conditional mouse mutant in which the Gjb2 coding DNA was exchanged by LacZ DNA coding for the reporter protein beta-galactosidase. This allowed us to follow the unrestricted and cell type specific expression of Gjb2 promoter activity. After inner ear specific, Otogelin-Cre recombinase mediated deletion of the loxP-site-flanked LacZ coding DNA, transcription of the Gjb1 gene, coding for Cx32 was activated by the Gjb2 promoter. Interbreeding of these mice with conditional Gjb2 null mice resulted in animals in which Cx32 instead of Cx26 protein is expressed in the non-sensory epithelial network of the cochlea. When we analyzed the auditory function in these mice, we found that the expression of Cx32 protein is sufficient to support hearing in the absence of Cx26. Thus Cx32 can functionally replace Cx26 in the mouse cochlea resulting in almost normal hearing."	"Gel-forming mucins appeared early in metazoan evolution. Mucins are proteins that cover and protect epithelial cells and are characterized by domains rich in proline, threonine, and serine that are heavily glycosylated (PTS or mucin domains). Because of their sequence polymorphism, these domains cannot be used for evolutionary analysis. Instead, we have made use of the von Willebrand D (VWD) and SEA domains, typical for mucins. A number of animal genomes were examined for these domains to identify mucin homologues, and domains of the resulting proteins were used in phylogenetic studies. The frog Xenopus tropicalis stands out because the number of gel-forming mucins has markedly increased to at least 25 as compared with 5 for higher animals. Furthermore, the frog Muc2 homologues contain unique PTS domains where cysteines are abundant. This animal also has a unique family of secreted mucin-like proteins with alternating PTS and SEA domains, a type of protein also identified in the fishes. The evolution of the Muc4 mucin seems to have occurred by recruitment of a PTS domain to AMOP, NIDO, and VWD domains from a sushi domain-containing family of proteins present in lower animals, and Xenopus is the most deeply branching animal where a protein similar to the mammalian Muc4 was identified. All transmembrane mucins seem to have appeared in the vertebrate lineage, and the MUC1 mucin is restricted to mammals. In contrast, proteins with properties of the gel-forming mucins were identified also in the starlet sea anemone Nematostella vectensis, demonstrating an early origin of this group of mucins."	"Synaptic organization in cochlear inner hair cells deficient for the CaV1.3 (alpha1D) subunit of L-type Ca2+ channels. Cochlear inner hair cells (IHCs) release neurotransmitter onto afferent auditory nerve fibers in response to sound stimulation. Normal development and function of inner hair cells require the expression of alpha subunit 1.3 forming L-type voltage-gated Ca(2+) channel (Ca(V)1.3). Here, we used immunohistochemistry and reverse transcription-polymerase chain reaction to study the synaptic organization and expression of large conductance Ca(2+)-activated potassium channels in IHCs of mice lacking the Ca(V)1.3 Ca(2+) channel (Ca(V)1.3(-/-)). Despite the near complete block of evoked afferent synaptic transmission, hair cell ribbon synapses were formed and remained preserved for at least 4 weeks after birth. Moreover, these &quot;silent&quot; afferent synapses held major components of the synaptic machinery such as Bassoon, Piccolo, and CSP. Hence, the block of exocytosis might be solely attributed to the lack of Ca(2+) influx through Ca(V)1.3 channels. Later on, Ca(V)1.3 deficient IHCs subsequently lost their afferent synapses. This was probably due to a secondary degeneration of the postsynaptic spiral ganglion neurons. In line with a prolonged efferent synaptic transmission onto Ca(V)1.3 deficient IHCs, which normally ceases around onset of hearing, we found juxtaposed immunoreactive spots of efferent presynaptic synaptophysin and postsynaptic (IHCs) small conductance Ca(2+)-activated potassium channels (SK channels) up to six weeks after birth. Finally, we show a substantial reduction of mRNA for the alpha subunit of the large conductance Ca(2+)-activated potassium channel (BK) in the apical cochlea, suggesting a reduced transcription of its gene in Ca(V)1.3 deficient IHCs. Ca(V)1.3 deficient IHCs lacked the apical spot-like immunoreactivity of clustered BK channels, which normally contribute to the temporal precision of hair cell afferent synaptic transmission. In summary, these data indicate that the Ca(V)1.3 channels are crucially involved in regulation of the expression of BK and SK channels. Ca(V)1.3 channels seem not to be essential for ribbon synapse formation, but are required for the maintenance of ribbon synapses and spiral ganglion neurons."	"Characteristics of regional climate change and pattern analysis on Ordos Plateau. The characteristics of precipitation, temperature and their combination determine the special ecological environment pattern of Ordos Plateau. Analyzing its evolutionary trend attributes to understanding the succession process of the ecological environment of Ordos Plateau and has crucial instructional significance on the ecological restoration research being conducted in this region. Four time scales, arranging from ten days, one month, one season growing season contrasting to non-growing season) to one year were adopted to analyze the climate data which included nearly 30 years and were collected by eight weather stations on Ordos Plateau. The results indicated that the mean annual temperature and the mean monthly temperature of February, September and December, had increased significantly during the late 30 years. The annual precipitation did not show significant changes but its distribution pattern had changed obviously. The ratio of precipitation of major growing season (May-October) to annual precipitation had increased distinctively, and five counties' precipitation reached statistically significant level. And the ratio of precipitation of latter growing season (September) to one year decreased significantly while the ratio of non-growing season (November-next April) to one year changed insignificantly. The results showed that maybe the interaction of increased mean temperature and insignificant change of precipitation in non-growing season was one of the reasons why the desertification of the region was deteriorating in recent years. Using some factors closely relating to vegetation succession such as mean annual temperature, mean annual precipitation, distributive pattern of precipitation, mean temperature of the coldest month, mean temperature of the warmest month, precipitation of the warmest month, mean temperature of growing season, precipitation of growing season, potential evapotranspiration(PET) and radiative dryness index(RDI), to synthetically analyze the climate characteristics of Ordos Plateau. The regionalized Ordos Plateau to three synthetical climate types were recognized as follows: Type I, semi-humid and low evaporation(including Jungar Banner, Dongsheng City and Ejin Horo Banner), Type II, semi-arid, semi-humid and moderate evaporation(including Uxin Banner and Dalad Banner), Type III, arid and high evaporation(including Hanggin Banner, Otog Banner and Otog Qian Banner)."	"Extracellular matrices associated with the apical surfaces of sensory epithelia in the inner ear: molecular and structural diversity. The ultrastructure and molecular composition of the extracellular matrices that are associated with the apical surfaces of the mechanosensory epithelia in the mouse inner ear are compared. A progressive increase in molecular and structural organization is observed, with the cupula being the simplest, the otoconial membrane exhibiting an intermediate degree of complexity, and the tectorial membrane being the most elaborate of the three matrices. These differences may reflect changes that occurred in the acellular membranes of the inner ear as a mammalian hearing organ arose during evolution from a simple equilibrium receptor. A comparison of the molecular composition of the acellular membranes in the chick inner ear suggests the auditory epithelium and the striolar region of the maculae are homologous, indicating the basilar papilla may have evolved from the striolar region of an otolithic organ. A comparison of the tectorial membranes in the chick cochlear duct and the mouse cochlea reveals differences in the structure of the noncollagenous matrix in the two species that may result from differences in the stochiometry of alpha- and beta-tectorin and/or differences in the post-translational modification of alpha-tectorin. This comparison also indicates that the appearance of collagen in the mammalian tectorial membrane may have been a major step in the evolution of an electromechanically tuned vertebrate hearing organ that operates over an extended frequency range."	"Spatiotemporal expression of otogelin in the developing and adult mouse inner ear. Using a PCR-based subtractive method on cDNA from 2-day-old mouse cochlea, we identified a gene encoding otogelin, Otog, an inner ear specific glycoprotein expressed in all acellular structures. Here, we provide evidence that otogelin is detected as early as embryonic day 10 in the otic vesicle. At this stage, otogelin is detected in the epithelial cells which do not overlap with the myosin VIIA-expressing cells, namely the precursors of the hair cells, thus arguing for an early commitment of the two cell populations. Analysis of otogelin spatiotemporal cell distribution allows a molecular tracing for the contribution of the cochlear and vestibular inner ear supporting cells to the formation of the acellular structures. Throughout embryonic and adult life, the expression of the otogelin gene as monitored by LacZ inserted into Otog, and the abundance of the protein are greater in the vestibule than in the cochlea. In adult, otogelin is still produced by the vestibular supporting cells, which argues for a continuous process of otogelin renewal in the otoconial membranes and cupulae. In contrast, in the tectorial membrane, otogelin should be a long-lasting protein since both the otogelin gene and protein were almost undetectable in adult cochlear cells. The data are consistent with the requirement for otogelin in the attachment of the otoconial membranes and cupulae to their corresponding sensory epithelia as revealed in Otog -/- mice."	"Twister mutant mice are defective for otogelin, a component specific to inner ear acellular membranes. Deafness is a common sensory defect in human. Our understanding of the molecular bases of this pathology comes from the study of a few genes that have been identified in human and/or in mice. Indeed, deaf mouse mutants are good models for studying and identifying genes involved in human hereditary hearing loss. Among these mouse mutants, twister was initially reported to have abnormal behavior and thereafter to be deaf. The recessive twister (twt) mutation has been mapped on mouse Chromosome (Chr) 7, homologous to the long arm of human Chr 15 (15q11). Otog, the gene encoding otogelin, a glycoprotein specific to all the acellular membranes of the inner ear, is also localized to mouse Chr 7, but in a region more proximal to the twister mutation, homologous to the short arm of human Chr 11 (11p15) carrying the two deafness loci, DFNB18 and USH1C. Mutant mice resulting from the knock-out of Otog, the Otog(tm1Prs) mice, present deafness and severe imbalance. Although twt had been mapped distally to Otog, these data prompted us to test whether twt could be due to a mutation in the Otog locus. Here, we demonstrate by genetic analysis that twt is actually allelic to Otog(tm1Prs). We further extend the phenotypical analysis of twister mice, documenting the association of a severe vestibular phenotype and moderate to severe form of deafness. Molecular analysis of the Otog gene revealed the absence of detectable expression of Otog in the twister mutant. The molecular and phenotypical description of the twt mouse mutation, Otog(twt), reported herein, highlights the importance of the acellular membranes in the inner ear mechanotransduction process. &lt;/hea"	"A targeted deletion in alpha-tectorin reveals that the tectorial membrane is required for the gain and timing of cochlear feedback. alpha-tectorin is an extracellular matrix molecule of the inner ear. Mice homozygous for a targeted deletion in a-tectorin have tectorial membranes that are detached from the cochlear epithelium and lack all noncollagenous matrix, but the architecture of the organ of Corti is otherwise normal. The basilar membranes of wild-type and alpha-tectorin mutant mice are tuned, but the alpha-tectorin mutants are 35 dB less sensitive. Basilar membrane responses of wild-type mice exhibit a second resonance, indicating that the tectorial membrane provides an inertial mass against which outer hair cells can exert forces. Cochlear microphonics recorded in alpha-tectorin mutants differ in both phase and symmetry relative to those of wild-type mice. Thus, the tectorial membrane ensures that outer hair cells can effectively respond to basilar membrane motion and that feedback is delivered with the appropriate gain and timing required for amplification."	"Twister mutant mice are defective for otogelin, a component specific to inner ear acellular membranes. Deafness is a common sensory defect in human. Our understanding of the molecular bases of this pathology comes from the study of a few genes that have been identified in human and/or in mice. Indeed, deaf mouse mutants are good models for studying and identifying genes involved in human hereditary hearing loss. Among these mouse mutants, twister was initially reported to have abnormal behavior and thereafter to be deaf. The recessive twister (twt) mutation has been mapped on mouse Chromosome (Chr) 7, homologous to the long arm of human Chr 15 (15q11). Otog, the gene encoding otogelin, a glycoprotein specific to all the acellular membranes of the inner ear, is also localized to mouse Chr 7, but in a region more proximal to the twister mutation, homologous to the short arm of human Chr 11 (11p15) carrying the two deafness loci, DFNB 18 and USH C. Mutant mice resulting from the knock-out of Otog, the Otogtm1Prs mice, present deafness and severe imbalance. Although twt had been mapped distally to Otog, these data prompted us to test whether twt could be due to a mutation in the Otog locus. Here, we demonstrate by genetic analysis that twt is actually allelic to Otogtm1Prs. We further extend the phenotypical analysis of twister mice, documenting the association of a severe vestibular phenotype and moderate to severe form of deafness. Molecular analysis of the Otog gene revealed the absence of detectable expression of Otog in the twister mutant. The molecular and phenotypical description of the twt mouse mutation, Otogtwt, reported herein, highlights the importance of the acellular membranes in the inner ear mechanotransduction process."	"Targeted disruption of otog results in deafness and severe imbalance. Genes specifically expressed in the inner ear are candidates to underlie hereditary nonsyndromic deafness. The gene Otog has been isolated from a mouse subtractive cDNA cochlear library. It encodes otogelin, an N-glycosylated protein that is present in the acellular membranes covering the six sensory epithelial patches of the inner ear: in the cochlea (the auditory sensory organ), the tectorial membrane (TM) over the organ of Corti; and in the vestibule (the balance sensory organ), the otoconial membranes over the utricular and saccular maculae as well as the cupulae over the cristae ampullares of the three semi-circular canals. These membranes are involved in the mechanotransduction process. Their movement, which is induced by sound in the cochlea or acceleration in the vestibule, results in the deflection of the stereocilia bundle at the apex of the sensory hair cells, which in turn opens the mechanotransduction channels located at the tip of the stereo-cilia. We sought to elucidate the role of otogelin in the auditory and vestibular functions by generating mice with a targeted disruption of Otog. In Otog-/- mice, both the vestibular and the auditory functions were impaired. Histological analysis of these mutants demonstrated that in the vestibule, otogelin is required for the anchoring of the otoconial membranes and cupulae to the neuroepithelia. In the cochlea, ultrastructural analysis of the TM indicated that otogelin is involved in the organization of its fibrillar network. Otogelin is likely to have a role in the resistance of this membrane to sound stimulation. These results support OTOG as a possible candidate gene for a human nonsyndromic form of deafness."	"A take on the tectorial membrane. NA"	"Mapping of the otogelin gene (OTGN) to mouse chromosome 7 and human chromosome 11p14.3: a candidate for human autosomal recessive nonsyndromic deafness DFNB18. NA"	"Otogelin: a glycoprotein specific to the acellular membranes of the inner ear. Efforts to identify the specific components of the mammalian inner ear have been hampered by the small number of neuroepithelial cells and the variety of supporting cells. To circumvent these difficulties, we used a PCR-based subtractive method on cDNA from 2-day-old mouse cochlea. A cDNA encoding a predicted 2910-amino acid protein related to mucin has been isolated. Several lines of evidence indicate, however, that this protein does not undergo the O-glycosylation characteristic to mucins. As confirmed by immunocytochemistry and biochemical experiments, this protein is specific to the inner ear. Immunohistofluorescence labeling showed that this protein is a component of all the acellular membranes of the inner ear: i.e., the tectorial membrane of the cochlea, the otoconial and accessory membranes of the utricule and saccule, the cupula of the semicircular canals, and a previously undescribed acellular material covering the otoconia of the saccule. The protein has been named otogelin with reference to its localization. A variety of nonsensory cells located underneath these membranes could be identified as synthesizing otogelin. Finally, this study revealed a maturation process of the tectorial membrane, as evidenced by the progressive organization of otogelin labeling into thick and spaced radial fiber-like structures."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"OTOGL"	"nonsyndromic genetic deafness"	"Virus- and Interferon Alpha-Induced Transcriptomes of Cells from the Microbat Myotis daubentonii. Antiviral interferons (IFN-alpha/beta) are possibly responsible for the high tolerance of bats to zoonotic viruses. Previous studies focused on the IFN system of megabats (suborder Yinpterochiroptera). We present statistically robust RNA sequencing (RNA-seq) data on transcriptomes of cells from the &quot;microbat&quot; Myotis daubentonii (suborder Yangochiroptera) responding at 6 and 24 h to either an IFN-inducing virus or treatment with IFN. Our data reveal genes triggered only by virus, either in both humans and Myotis (CCL4, IFNL3, CH25H), or exclusively in Myotis (STEAP4). Myotis cells also express a series of conserved IFN-stimulated genes (ISGs) and an unusually high paralog number of the antiviral ISG BST2 (tetherin) but lack several ISGs that were described for megabats (EMC2, FILIP1, IL17RC, OTOGL, SLC24A1). Also, in contrast to megabats, we detected neither different IFN-alpha subtypes nor an unusually high baseline expression of IFNs. Thus, Yangochiroptera microbats, represented by Myotis, may possess an IFN system with distinctive features."	"Functional characterization of the mucus barrier on the Xenopus tropicalis skin surface. Mucosal surfaces represent critical routes for entry and exit of pathogens. As such, animals have evolved strategies to combat infection at these sites, in particular the production of mucus to prevent attachment and to promote subsequent movement of the mucus/microbe away from the underlying epithelial surface. Using biochemical, biophysical, and infection studies, we have investigated the host protective properties of the skin mucus barrier of the Xenopus tropicalis tadpole. Specifically, we have characterized the major structural component of the barrier and shown that it is a mucin glycoprotein (Otogelin-like or Otogl) with similar sequence, domain organization, and structural properties to human gel-forming mucins. This mucin forms the structural basis of a surface barrier (∼6 μm thick), which is depleted through knockdown of Otogl. Crucially, Otogl knockdown leads to susceptibility to infection by the opportunistic pathogen Aeromonas hydrophila To more accurately reflect its structure, tissue localization, and function, we have renamed Otogl as Xenopus Skin Mucin, or MucXS. Our findings characterize an accessible and tractable model system to define mucus barrier function and host-microbe interactions."	"Whole exome sequencing identified genetic variations in Chinese hemangioblastoma patients. Hemangioblastomas (HBs) are uncommon tumors characterized by the presence of inactivating alterations in the von Hippel-Lindau (VHL) gene in inherited cases and by infrequent somatic mutation in sporadic entities. We performed whole exome sequencing on 11 HB patients to further elucidate the genetics of HBs. A total of 270 somatic variations in 219 genes, of which there were 86 mutations in 67 genes, were found in sporadic HBs, and 184 mutations were found in 154 genes in familial HBs. C: G&gt;T: A and T: A&gt;C: G mutations are relatively common in most HB patients. Genes harboring the most significant mutations include PCDH9, KLHL12, DCAF4L1, and VHL in sporadic HBs, and ZNF814, DLG2, RIMS1, PNN, and MUC7 in familial HBs. The frequency of CNV varied considerably within sporadic HBs but was relatively similar within familial HBs. Five genes, including OTOGL, PLCB4, SCEL, THSD4, and WWOX, have CNVs in the six patients with sporadic HBs, and three genes, including ABCA6, CWC27, and LAMA2, have CNVs in the five patients with familial HBs. We found new genetic mutations and CNVs that might be involved in HBs; these findings highlight the complexity of the tumorigenesis of HBs and pinpoint potential therapeutic targets for the treatment of HBs."	"The OTOGL p.Arg925* Variant is Associated with Moderate Hearing Loss in a Syrian Nonconsanguineous Family. To screen for the genetic basis of congenital hearing loss in a Syrian family. A Syrian patient living in Lebanon presented with moderate congenital hearing loss. The patient's large nonconsanguineous family was recruited. DNA was extracted from blood samples and sent for whole-exome sequencing. A detailed clinical examination along with audiograms was obtained for all subjects. Hearing loss was noted to be mild to moderate in the low and mid frequencies, sloping to moderate to severe in the high frequencies for all affected members. Results of DNA analysis showed the presence of a previously described p.Arg925* mutation in the OTOGL gene on both alleles in affected family members, whereas nonaffected members either had the wild type or one copy of the mutated allele. Mutations affecting the OTOGL gene have been recently connected with nonsyndromic sensorineural hearing loss. Seven such mutations have already been described. The p.Arg925* reported in this study has been found once in a French family. The current report is the first to describe this mutation in a Middle Eastern family."	"Whole-Exome Sequencing of Salivary Gland Mucoepidermoid Carcinoma. Mucoepidermoid carcinoma (MEC) is the most common salivary gland malignancy. To explore the genetic origins of MEC, we performed systematic genomic analyses of these tumors. Whole-exome sequencing and gene copy-number analyses were performed for 18 primary cancers with matched normal tissue. FISH was used to determine the presence or absence of the MECT1-MAML2 translocation in 17 tumors. TP53 was the most commonly mutated gene in MEC (28%), and mutations were found only in intermediate- and high-grade tumors. Tumors with TP53 mutations had more mutations overall than tumors without TP53 mutations (P = 0.006). POU6F2 was the second most frequently mutated gene, found in three low-grade MECs with the same in-frame deletion. Somatic alterations in IRAK1, MAP3K9, ITGAL, ERBB4, OTOGL, KMT2C, and OBSCN were identified in at least two of the 18 tumors sequenced. FISH analysis confirmed the presence of the MECT1-MAML2 translocation in 15 of 17 tumors (88%). Through these integrated genomic analyses, MECT1-MAML2 translocation and somatic TP53 and POU6F2 mutations appear to be the main drivers of MEC. Clin Cancer Res; 23(1); 283-8. ©2016 AACR."	"Novel biallelic OTOGL mutations in a Chinese family with moderate non-syndromic sensorineural hearing loss. Autosomal recessive non-syndromic hearing loss (DFNB) is a genetically heterogeneous disorder. So far, 55 pathogenic genes have been identified. In this study, we aim to characterize the clinical feature and the genetic cause of a Chinese DFNB family. Whole exome sequencing was performed on the proband. Co-segregation between the hearing loss phenotype and the potential causative mutations was verified in all family members by Sanger sequencing. Audiologic profiles of the affected family members revealed a moderate hearing loss mainly affecting higher frequencies. Novel biallelic OTOGL mutations, c.6467C&gt;A (p.Ser2156*) and c.6474dupA (p.Ser2159Metfs*2), were identified in this family segregating with the childhood onset DFNB. Both mutations were predicted to cause either nonsense mediated mRNA decay or premature terminations of protein synthesis. We identified novel biallelic OTOGL mutations in a Chinese DFNB family. To the best of our knowledge, this is the first report of OTOGL mutations causing hearing loss in the East Asian population. Our finding enriched the mutation spectrum of OTOGL associated hearing loss."	"Whole-exome sequencing reveals diverse modes of inheritance in sporadic mild to moderate sensorineural hearing loss in a pediatric population. This study was designed to delineate genetic contributions, if any, to sporadic forms of mild to moderate sensorineural hearing loss (SNHL) not related to GJB2 mutations (DFNB1) in a pediatric population. We recruited 11 non-DFNB1 simplex cases of mild to moderate SNHL in children. We applied whole-exome sequencing to all 11 probands. We used a filtering strategy assuming that de novo variants of known autosomal dominant (AD) deafness genes, biallelic mutations in autosomal recessive (AR) genes, monoallelic mutations in X chromosome genes for males, and digenic inheritance could be associated. Candidate variants first were prioritized with allele frequency in public databases and confirmed by a phase or a segregation test in each family. Additional information from the literature or public databases was used to identify strong candidate variants. Strong candidate variants were detected in 5 of 11 probands (45.4%). A diverse mode of inheritance implicated the sporadic occurrence of the phenotype. AR mutations in OTOGL and SERPINB6 and digenic inheritance involving two deafness genes, GPR98 and PDZ7, were detected. A de novo AD mutation also was detected in TECTA and MYH14. No syndromic feature was detected in individuals with GPR98/PDZ7 or MYH14 variants in our cohort at this moment. Mild to moderate pediatric SNHL, even if sporadic, features a strong genetic etiology and can manifest via diverse modes of inheritance. In addition, a multidisciplinary approach should be used for a correct diagnosis."	"A genomewide association study for average daily gain in Italian Large White pigs. Average daily gain is an important target trait in pig breeding programs. In this study we performed a genomewide association study for ADG in Italian Large White pigs using a selective genotyping approach. Two extreme and divergent groups of Italian Large White pigs (number 190 + 190) were selected among a population of about 10,000 performance tested gilts (EBV for ADG in the 2 groups were -30 ± 14 g and 81 ± 12 g, respectively) and genotyped with the Illumina PorcineSNP60 BeadChip. Association analysis was performed treating the pigs of the 2 extreme groups as cases and controls after correction for family-based stratification. A total of 127 SNP resulted significantly associated with ADG (P nominal value [P(raw)] &lt; 2.0 × 10(-7), P &lt; 0.01 Bonferroni corrected [P(Bonferroni)] &lt; 0.01, false discovery rate &lt; 7.76 × 10(-5)). Another 102 SNP were suggestively associated with the target trait (P(raw) between 2.0 × 10(-7) and 2.02 × 10(-6), P(Bonferroni) &lt; 0.10, false discovery rate &lt; 4.19 × 10(-4)). These SNP were located on all autosomes and on porcine chromosome (SSC) X. The largest number of SNP within this list was on SSC5 (n = 42), SSC7 (34), SSC6 (30), SSC4 (23), and SSC16 (16). These chromosomes were richer in significant or suggestively significant markers than expected (P &lt; 0.001). A quite high number of these SNP (n = 23) were associated with backfat thickness in a previous genomewide association study performed in the same pig population, confirming the negative correlation between the 2 traits. Two or more SNP targeted the same gene: IGSF3 and HS2ST1 (SSC4), OTOGL (SSC5), FTO region (SSC6), and MYLK4 and MCUR1 (SSC7). Other regions that were associated with ADG in previous candidate gene studies (e.g., MC4R on SSC1, IGF2 and LDHA on SSC2, MUC4 on SSC13) 1) included markers with P(raw) &lt; 0.01 that, however, did not pass the stringent threshold of significance adopted in this study or 2) could not be tested because not assigned to the Sscrofa10.2 genome version. Functional annotation of the significant regions using Gene Ontology suggested that many and complex processes at different levels are involved in affecting ADG, indicating the complexity of the genetic factors controlling this ultimate phenotype. The obtained results may contribute to understand the genetic mechanisms determining ADG that could open new perspectives to improve selection efficiency in this breed."	"Similar phenotypes caused by mutations in OTOG and OTOGL. Recently, OTOG and OTOGL were identified as human deafness genes. Currently, only four families are known to have autosomal recessive hearing loss based on mutations in these genes. Because the two genes code for proteins (otogelin and otogelin-like) that are strikingly similar in structure and localization in the inner ear, this study is focused on characterizing and comparing the hearing loss caused by mutations in these genes. To evaluate this type of hearing, an extensive set of audiometric and vestibular examinations was performed in the 13 patients from four families. All families show a flat to downsloping configuration of the audiogram with mild to moderate sensorineural hearing loss. Speech recognition scores remain good (&gt;90%). Hearing loss is not significantly different in the four families and the psychophysical test results also do not differ among the families. Vestibular examinations show evidence for vestibular hyporeflexia. Because otogelin and otogelin-like are localized in the tectorial membrane, one could expect a cochlear conductive hearing loss, as was previously shown in DFNA13 (COL11A2) and DFNA8/12 (TECTA) patients. Results of psychophysical examinations, however, do not support this. Furthermore, the authors conclude that there are no phenotypic differences between hearing loss based on mutations in OTOG or OTOGL. This phenotype description will facilitate counseling of hearing loss caused by defects in either of these two genes."	"Biallelic nonsense mutations in the otogelin-like gene (OTOGL) in a child affected by mild to moderate hearing impairment. Hearing impairment is characterized by great genetic heterogeneity. We report the identification, by whole exome sequencing, of two different nonsense mutations (c.1558C&gt;T; p.Gln520 and c.2773C&gt;T; p.Arg925) in the otogelin-like gene (OTOGL), in a child affected by mild to moderate isolated deafness. Parental genotypes allowed us to conclude that these mutations are present in the compound heterozygous state in the patient. In addition, our clinical data establish that the tectorial membrane and/or the outer hair cells are defective in this form of deafness."	"Mutations in OTOGL, encoding the inner ear protein otogelin-like, cause moderate sensorineural hearing loss. Hereditary hearing loss is characterized by a high degree of genetic heterogeneity. Here we present OTOGL mutations, a homozygous one base pair deletion (c.1430 delT) causing a frameshift (p.Val477Glufs(∗)25) in a large consanguineous family and two compound heterozygous mutations, c.547C&gt;T (p.Arg183(∗)) and c.5238+5G&gt;A, in a nonconsanguineous family with moderate nonsyndromic sensorineural hearing loss. OTOGL maps to the DFNB84 locus at 12q21.31 and encodes otogelin-like, which has structural similarities to the epithelial-secreted mucin protein family. We demonstrate that Otogl is expressed in the inner ear of vertebrates with a transcription level that is high in embryonic, lower in neonatal, and much lower in adult stages. Otogelin-like is localized to the acellular membranes of the cochlea and the vestibular system and to a variety of inner ear cells located underneath these membranes. Knocking down of otogl with morpholinos in zebrafish leads to sensorineural hearing loss and anatomical changes in the inner ear, supporting that otogelin-like is essential for normal inner ear function. We propose that OTOGL mutations affect the production and/or function of acellular structures of the inner ear, which ultimately leads to sensorineural hearing loss."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PJVK"	"nonsyndromic genetic deafness"	"Gasdermins: pore-forming activities and beyond. Gasdermins (GSDMs) belong to a protein superfamily that is found only in vertebrates and consists of GSDMA, GSDMB, GSDMC, GSDMD, DFNA5 (a.k.a. GSDME) and DFNB59 (a.k.a. Pejvakin (PJVK)) in humans. Except for DFNB59, all members of the GSDM superfamily contain a conserved two-domain structure (N-terminal and C-terminal domains) and share an autoinhibitory mechanism. When the N-terminal domain of these GSDMs is released, it possesses pore-forming activity that causes inflammatory death associated with the loss of cell membrane integrity and release of inflammatory mediators. It has also been found that spontaneous mutations occurring in the genes of GSDMs have been associated with the development of certain autoimmune disorders, as well as cancers. Here, we review the current knowledge of the expression profile and regulation of GSDMs and the important roles of this protein family in inflammatory cell death, tumorigenesis and other related diseases."	"Monitoring gasdermin pore formation in vitro. The gasdermin (GSDM) family consists of gasdermin A (GSDMA), B (GSDMB), C (GSDMC), D (GSDMD), E or DNFA5 (GSDME), and DFNB59 in human. Expressed in the skin, gastrointestinal tract, and various immune cells, GSDMs mediate homeostasis and inflammation upon activation by caspases and unknown proteases. In particular, GSDMD is activated by inflammasome-activated caspases-1/-4/-5/-11 as well as a caspase-8-mediated pathway during Yersinia infection. These caspases cleave GSDMD to release its functional N-terminal fragment (GSDMD-NT) from its auto-inhibitory C-terminal fragment (GSDMD-CT). GSDMD-NTs bind to acid lipids in mammalian cell membranes and bacterial membranes, oligomerize, and insert into the membranes to form large transmembrane pores. Consequently, cellular contents including inflammatory cytokines are released and cells can undergo pyroptosis, a highly inflammatory form of cell death. In this chapter, we summarize recent research findings and present experimental procedures to obtain pure recombinant GSDMs for biochemical studies. We highlight a liposome-based assay that yields robust fluorescence signals for characterizing GSDM activities in vitro and may be applicable to other pore-forming proteins and ion channels in general."	"Pejvakin-mediated pexophagy protects auditory hair cells against noise-induced damage. Noise overexposure causes oxidative stress, leading to auditory hair cell damage. Adaptive peroxisome proliferation involving pejvakin, a peroxisome-associated protein from the gasdermin family, has been shown to protect against this harmful oxidative stress. However, the role of pejvakin in peroxisome dynamics and homeostasis remains unclear. Here we show that sound overstimulation induces an early and rapid selective autophagic degradation of peroxisomes (pexophagy) in auditory hair cells from wild-type, but not pejvakin-deficient (Pjvk<sup>-/-</sup>), mice. Noise overexposure triggers recruitment of the autophagosome-associated protein MAP1LC3B (LC3B; microtubule-associated protein 1 light chain 3β) to peroxisomes in wild-type, but not Pjvk<sup>-/-</sup>, mice. We also show that pejvakin-LC3B binding involves an LC3-interacting region within the predicted chaperone domain of pejvakin. In transfected cells and in vivo transduced auditory hair cells, cysteine mutagenesis experiments demonstrated the requirement for both C328 and C343, the two cysteine residues closest to the C terminus of pejvakin, for reactive oxygen species-induced pejvakin-LC3B interaction and pexophagy. The viral transduction of auditory hair cells from Pjvk<sup>-/-</sup> mice in vivo with both Pjvk and Lc3b cDNAs completely restored sound-induced pexophagy, fully prevented the development of oxidative stress, and resulted in normal levels of peroxisome proliferation, whereas Pjvk cDNA alone yielded only a partial correction of the defects. Overall, our results demonstrate that pexophagy plays a key role in noise-induced peroxisome proliferation and identify defective pexophagy as a cause of noise-induced hearing loss. They suggest that pejvakin acts as a redox-activated pexophagy receptor/adaptor, thereby identifying a previously unknown function of gasdermin family proteins."	"Targeted Mutation Analysis of the SLC26A4, MYO6, PJVK and CDH23 Genes in Iranian Patients with AR Nonsyndromic Hearing Loss. Hearing loss (HL) is the most prevalent sensory disorder. The over 100 genes implicated in autosomal recessive nonsyndromic hearing loss (ARNSHL) makes it difficult to analyze and determine the accurate genetic causes of hearing loss. We sought to de?ne the frequency of seven hearing loss-Causing causing genetic Variants in four genes in an Iranian population with hearing loss. One hundred ARNSHL patients with normal GJB2/GJB6 genes were included, and targeted mutations in SLC26A4, MYO6, PJVK and CDH23 genes were analyzed by ARMS-PCR. The negative and positive results were confirmed by the Sanger sequencing. We found only two mutations, one in MYO6 (c.554-1 G &gt; A) gene and another in PJVK (c.547C &gt; T). c.554-1G &gt; A and c.547C &gt; T mutations are responsible for 1% each of the Iranian ARNSHL patients. These genes are not a frequent cause of ARNSHL in an Iranian population."	"Mechanisms of Gasdermin Family Members in Inflammasome Signaling and Cell Death. The Gasdermin (GSDM) family consists of Gasdermin A (GSDMA), Gasdermin B (GSDMB), Gasdermin C (GSDMC), Gasdermin D (GSDMD), Gasdermin E (GSDME) and Pejvakin (PJVK). GSDMD is activated by inflammasome-associated inflammatory caspases. Cleavage of GSDMD by human or mouse caspase-1, human caspase-4, human caspase-5, and mouse caspase-11 liberates the N-terminal effector domain from the C-terminal inhibitory domain. The N-terminal domain oligomerizes in the cell membrane and forms a pore of 10-16 nm in diameter, through which substrates of a smaller diameter, such as interleukin-1β and interleukin-18, are secreted. The increasing abundance of membrane pores ultimately leads to membrane rupture and pyroptosis, releasing the entire cellular content. Other than GSDMD, the N-terminal domain of all GSDMs, with the exception of PJVK, have the ability to form pores. There is evidence to suggest that GSDMB and GSDME are cleaved by apoptotic caspases. Here, we review the mechanistic functions of GSDM proteins with respect to their expression and signaling profile in the cell, with more focused discussions on inflammasome activation and cell death."	"Homozygous mutations in PJVK and MYO15A genes associated with non-syndromic hearing loss in Moroccan families. Autosomal recessive non-syndromic hearing loss is a heterogeneous disorder and the most prevalent human genetic sensorineural defect. In this study, we investigated the geneticcause of sensorineural hearing loss in Moroccan patients and presented the importance of whole exome sequencing (WES) to identify candidate genes in two Moroccan families with profound deafness. After excluding mutations previously reported in Moroccan deaf patients, whole exome sequencing was performed and Sanger sequencing was used to validate mutations in these genes. Our results disclosed the c.113_114insT (p.Lys41GlufsX8) and c.406C &gt; T (p.Arg130X) homozygous mutations in PJVK and a homozygous c.5203C &gt; T (p.Arg1735Trp) mutation in MYO15A, both genes responsible for non-syndromic recessive hearing loss DFNB59 and DFNB3, respectively. We identified in Moroccan deaf patients two mutations in PJVK and one mutation in MYO15A described for the first time in association with non-syndromic recessive hearing loss. These results emphasize that whole exome sequencing is a powerful diagnostic strategy to identify pathogenic mutations in heterogeneous disorders with many various causative genes."	"Pejvakin, a Candidate Stereociliary Rootlet Protein, Regulates Hair Cell Function in a Cell-Autonomous Manner. Mutations in the Pejvakin (PJVK) gene are thought to cause auditory neuropathy and hearing loss of cochlear origin by affecting noise-induced peroxisome proliferation in auditory hair cells and neurons. Here we demonstrate that loss of pejvakin in hair cells, but not in neurons, causes profound hearing loss and outer hair cell degeneration in mice. Pejvakin binds to and colocalizes with the rootlet component TRIOBP at the base of stereocilia in injectoporated hair cells, a pattern that is disrupted by deafness-associated PJVK mutations. Hair cells of pejvakin-deficient mice develop normal rootlets, but hair bundle morphology and mechanotransduction are affected before the onset of hearing. Some mechanotransducing shorter row stereocilia are missing, whereas the remaining ones exhibit overextended tips and a greater variability in height and width. Unlike previous studies of Pjvk alleles with neuronal dysfunction, our findings reveal a cell-autonomous role of pejvakin in maintaining stereocilia architecture that is critical for hair cell function.SIGNIFICANCE STATEMENT Two missense mutations in the Pejvakin (PJVK or DFNB59) gene were first identified in patients with audiological hallmarks of auditory neuropathy spectrum disorder, whereas all other PJVK alleles cause hearing loss of cochlear origin. These findings suggest that complex pathogenetic mechanisms underlie human deafness DFNB59. In contrast to recent studies, we demonstrate that pejvakin in auditory neurons is not essential for normal hearing in mice. Moreover, pejvakin localizes to stereociliary rootlets in hair cells and is required for stereocilia maintenance and mechanosensory function of the hair bundle. Delineating the site of the lesion and the mechanisms underlying DFNB59 will allow clinicians to predict the efficacy of different therapeutic approaches, such as determining compatibility for cochlear implants."	"Conditional deletion of pejvakin in adult outer hair cells causes progressive hearing loss in mice. Mutations in the Pejvakin (Pjvk) gene cause autosomal recessive hearing loss DFNB59 with audiological features of auditory neuropathy spectrum disorder (ANSD) or cochlear dysfunction. The precise mechanisms underlying the variable clinical phenotypes of DFNB59 remain unclear. Here, we demonstrate that mice with conditional ablation of the Pjvk gene in all sensory hair cells or only in outer hair cells (OHCs) show similar auditory phenotypes with early-onset profound hearing loss. By contrast, loss of Pjvk in adult OHCs causes a slowly progressive hearing loss associated with OHC degeneration and delayed loss of inner hair cells (IHCs), indicating a primary role for pejvakin in regulating OHC function and survival. Consistent with this model, synaptic transmission at the IHC ribbon synapse is largely unaffected in sirtaki mice that carry a C-terminal deletion mutation in Pjvk. Using the C-terminal domain of pejvakin as bait, we identified in a cochlear cDNA library ROCK2, an effector for the small GTPase Rho, and the scaffold protein IQGAP1, involved in modulating actin dynamics. Both ROCK2 and IQGAP1 associate via their coiled-coil domains with pejvakin. We conclude that pejvakin is required to sustain OHC activity and survival in a cell-autonomous manner likely involving regulation of Rho signaling."	"Mutations in eight small DFNB genes are not a frequent cause of non-syndromic hereditary hearing loss in Czech patients. To evaluate the contribution of eight small NSHL-AR (non-syndromic deafness, autosomal recessive) genes to hereditary hearing loss in Czech patients. Unrelated Czech patients, adults and children, diagnosed with pre-lingual hereditary hearing loss with at least one similarly affected deaf sibling and with previously excluded mutations in the GJB2 gene were investigated by Sanger sequencing of the selected eight small NSHL-AR associated genes (CABP2 - 51 patients, CIB2 - 45 patients, PJVK/DFNB59 - 53 patients, GJB3 - 46 patients, ILDR1 - 48 patients, LHFPL5 - 66 patients, LRTOMT - 60 patients, TMIE - 64 patients). Mutations were detected in the LHFPL5 (DFNB67) gene. The patient is heterozygote for two already described pathogenic variants (p.Tyr127Cys, p.Thr165Met). In five samples, five rare heterozygous variants (two novel) predicted as pathogenic were detected in genes CABP2, ILDR1, LHFPL5 and LRTOMT. Mutations in eight small NSHL-AR genes are not a frequent cause of hereditary hearing loss in the Czech Republic. This diagnostic approach permitted the clarification of HL in only one patient - two heterozygous mutations were detected in LHFPL5 gene for the first time in Central Europe. As the use of panel base MPS certainly improves the diagnostic yield, future studies should rather profit from that diagnostic strategy."	"Molecular study of patients with auditory neuropathy. Auditory neuropathy is a type of hearing loss that constitutes a change in the conduct of the auditory stimulus by the involvement of inner hair cells or auditory nerve synapses. It is characterized by the absence or alteration of waves in the examination of brainstem auditory evoked potentials, with otoacoustic and/or cochlear microphonic issues. At present, four loci associated with non‑syndromic auditory neuropathy have been mapped: Autosomal recessive deafness‑9 [DFNB9; the otoferlin (OTOF) gene] and autosomal recessive deafness‑59 [DFNB59; the pejvakin (PJVK) gene], associated with autosomal recessive inheritance; the autosomal dominant auditory neuropathy gene [AUNA1; the diaphanous‑3 (DIAPH3) gene]; and AUNX1, linked to chromosome X. Furthermore, mutations of connexin 26 [the gap junction β2 (GJB2) gene] have also been associated with the disease. OTOF gene mutations exert a significant role in auditory neuropathy. In excess of 80 pathogenic mutations have been identified in individuals with non‑syndromic deafness in populations of different origins, with an emphasis on the p.Q829X mutation, which was found in ~3% of cases of deafness in the Spanish population. The identification of genetic alterations responsible for auditory neuropathy is one of the challenges contributing to understand the molecular bases of the different phenotypes of hearing loss. Thus, the present study aimed to investigate molecular changes in the OTOF gene in patients with auditory neuropathy, and to develop a DNA chip for the molecular diagnosis of auditory neuropathy using mass spectrometry for genotyping. Genetic alterations were investigated in 47 patients with hearing loss and clinical diagnosis of auditory neuropathy, and the c.35delG mutation in the GJB2 gene was identified in three homozygous patients, and the heterozygous parents of one of these cases. Additionally, OTOF gene mutations were tracked by complete sequencing of 48 exons, although these results are still preliminary. Studying the genetic basis of auditory neuropathy is of utmost importance for obtaining a differential diagnosis, developing more specific treatments and more accurate genetic counseling. "	"Hypervulnerability to Sound Exposure through Impaired Adaptive Proliferation of Peroxisomes. A deficiency in pejvakin, a protein of unknown function, causes a strikingly heterogeneous form of human deafness. Pejvakin-deficient (Pjvk(-/-)) mice also exhibit variable auditory phenotypes. Correlation between their hearing thresholds and the number of pups per cage suggest a possible harmful effect of pup vocalizations. Direct sound or electrical stimulation show that the cochlear sensory hair cells and auditory pathway neurons of Pjvk(-/-) mice and patients are exceptionally vulnerable to sound. Subcellular analysis revealed that pejvakin is associated with peroxisomes and required for their oxidative-stress-induced proliferation. Pjvk(-/-) cochleas display features of marked oxidative stress and impaired antioxidant defenses, and peroxisomes in Pjvk(-/-) hair cells show structural abnormalities after the onset of hearing. Noise exposure rapidly upregulates Pjvk cochlear transcription in wild-type mice and triggers peroxisome proliferation in hair cells and primary auditory neurons. Our results reveal that the antioxidant activity of peroxisomes protects the auditory system against noise-induced damage."	"Peroxisomes Get Loud: A Redox Antidote to Hearing Loss. Pejvakin (PJVK), a protein originally identified in Persian families with sensorineural hearing loss, regulates peroxisomal dynamics and the antioxidant defense triggered by noise exposure in hair cells and auditory neurons of the inner ear. These findings bring peroxisomes to the forefront of noise-induced hearing loss research. "	"Identifying Children With Poor Cochlear Implantation Outcomes Using Massively Parallel Sequencing. Cochlear implantation is currently the treatment of choice for children with severe to profound hearing impairment. However, the outcomes with cochlear implants (CIs) vary significantly among recipients. The purpose of the present study is to identify the genetic determinants of poor CI outcomes. Twelve children with poor CI outcomes (the &quot;cases&quot;) and 30 &quot;matched controls&quot; with good CI outcomes were subjected to comprehensive genetic analyses using massively parallel sequencing, which targeted 129 known deafness genes. Audiological features, imaging findings, and auditory/speech performance with CIs were then correlated to the genetic diagnoses. We identified genetic variants which are associated with poor CI outcomes in 7 (58%) of the 12 cases; 4 cases had bi-allelic PCDH15 pathogenic mutations and 3 cases were homozygous for the DFNB59 p.G292R variant. Mutations in the WFS1, GJB3, ESRRB, LRTOMT, MYO3A, and POU3F4 genes were detected in 7 (23%) of the 30 matched controls. The allele frequencies of PCDH15 and DFNB59 variants were significantly higher in the cases than in the matched controls (both P &lt; 0.001). In the 7 CI recipients with PCDH15 or DFNB59 variants, otoacoustic emissions were absent in both ears, and imaging findings were normal in all 7 implanted ears. PCDH15 or DFNB59 variants are associated with poor CI performance, yet children with PCDH15 or DFNB59 variants might show clinical features indistinguishable from those of other typical pediatric CI recipients. Accordingly, genetic examination is indicated in all CI candidates before operation."	"Identification of a novel mutation of PJVK in the Chinese non-syndromic hearing loss population with low prevalence of the PJVK mutations. To our knowledge, this is the first report of PJVK gene mutation in a Chinese non-syndromic sensorineural hearing loss (NSHL) family. Our data indicate that the PJVK gene contributes to hearing impairment in the Chinese population, but it is not a major cause. To investigate the contribution of PJVK mutations to NSHL in the Chinese population. We screened for the PJVK gene in a sample of 65 autosomal recessive NSHL families without GJB2, SLC26A4, or mitochondrial 12S rRNA gene mutations. Seven pairs of PCR primers were designed to amplify all of the exons and their flanking regions of the PJVK gene. The PCR products were sequenced and analyzed for identification of mutations. In all, we identified one novel frameshift mutation, c.930_931del AC (p.C312W fsX19), co-segregating with the phenotype in one consanguineous family with a prevalence of 1.5% (1/65). The p.C312W fsX19 mutation was just positioned in the zinc-fingers domain, which was important to the function of pejvakin, and resulted in a stop codon after 19 additional amino acids. It was not identified in the controls and was considered as the causative mutation of family 804566 with autosomal recessive, non-syndromic, prelingual sensorineural hearing impairment."	"Identification and genotype/phenotype correlation of mutations in a large German cohort with hearing loss. The prevalence of hearing impairment is estimated as approximately 1 on 1,000 newborn children. To assess a higher mutation detection rate in individuals with hearing loss a three-step mutation screening program consisting of GJB2 in first line, then GJB1, GJB3 and GJB6 (second step) and if tested negative or heterozygote, testing of GJA1, GJB4, SLC26A4 and PJVK (third) was performed. Audiograms were derived from all patients to characterize audiological features of GJB2 mutations especially. In 59 patients (31.3%) of the 188 probands, the hearing impairment was due to GJB2 mutations, 45 (23.9%) of these being homozygous for 35delG mutation and 14 (7.4%) compound heterozygous for GJB2 mutations in the coding region of exon 2 whereas no significant sequence variation was found in exon 1. In 22 (11.7%) additional patients a single recessive mutation in GJB2, GJB3, GJB6 and SLC26A4 without a second mutation on the other allele was identified, making genetic counseling difficult. Our study showed significant difference in hearing loss degree in the patients with GJB2-mutations. Forty-five (45.5%) GJB2-cases were identified in 99 individuals diagnosed with severe to profound hearing loss, 14 (17.7%) GJB2-cases were identified in 79 individuals with moderate deafness whereas no clear GJB2 mutation was found in 10 patients with mild hearing loss (p &lt; 0.001). Revealing a high variability of hearing levels in identical genotypes (even intrafamilial), a significant genotype-phenotype correlation could not be established. Based on the identified mutations spectrum and frequencies, speaking mostly of GJB2, a step by step screening for mutations can be devised and in addition may lead to a better stratification of patients for specific therapeutical approaches."	"Identification of a novel splice site variant of OTOF in the Korean nonsyndromic hearing loss population with low prevalence of the OTOF mutations. (1) To describe the frequency of the OTOF mutations among Korean ARNSHL (autosomal recessive nonsyndromic hearing loss) populations; (2) to report the vertical transmission of DFNB9 in a family, where two related DFNB9 patients in the family manifested a different audiological phenotype. We analyzed the prevalence of OTOF mutations among 71 Korean sporadic or possible ARNSHL pediatric patients, as well as among AN/AD (auditory neuropathy/auditory dys-synchrony) patients by direct PCR (polymerase chain reaction) sequencing or targeted resequencing of known deafness genes. The AN/AD phenotype which was characterized by preservation of OAE (otoacoustic emission) was present in 5 (7%) of 71 probands, and the prevalence of OTOF mutations was calculated to be 20% (1/5) and 1.4% (1/71) among AN/AD patients and total sporadic/ARNSHL patients, respectively. PJVK mutations did not account for Non-DFNB9 AN/AD patients. To our interest, the only proband (SB4-11) with two OTOF mutant alleles in our cohort had deaf parents, who also turned out to be DFNB9. We identified a novel splice site variant of OTOF from the mother (SB4-13) of SB4-11. This was the first observation of vertical transmission of DFNB9 phenotype from parents to son in this population where the prevalence of OTOF is very low and consanguineous marriage is not allowed. Another DFNB9 patient (SB4-12), the father of SB4-11, carried a homozygous p.Y374X mutation that affected only the long isoform of OTOF and did not manifest AN/AD. The OTOF mutations do not contribute significantly to Korean ARNSHL and AN/AD unlike in Japan and Taiwan. This low prevalence mandates a search for other etiologies. Our observation of the discordant audiologic phenotype within the same DFNB9 family is more likely due to the loss of OAE over time rather than a genotype-phenotype correlation."	"Adaptive evolution of tight junction protein claudin-14 in echolocating whales. Toothed whales and bats have independently evolved specialized ultrasonic hearing for echolocation. Recent findings have suggested that several genes including Prestin, Tmc1, Pjvk and KCNQ4 appear to have undergone molecular adaptations associated with the evolution of this ultrasonic hearing in mammals. Here we studied the hearing gene Cldn14, which encodes the claudin-14 protein and is a member of tight junction proteins that functions in the organ of Corti in the inner ear to maintain a cationic gradient between endolymph and perilymph. Particular mutations in human claudin-14 give rise to non-syndromic deafness, suggesting an essential role in hearing. Our results uncovered two bursts of positive selection, one in the ancestral branch of all toothed whales and a second in the branch leading to the delphinid, phocoenid and ziphiid whales. These two branches are the same as those previously reported to show positive selection in the Prestin gene. Furthermore, as with Prestin, the estimated hearing frequencies of whales significantly correlate with numbers of branch-wise non-synonymous substitutions in Cldn14, but not with synonymous changes. However, in contrast to Prestin, we found no evidence of positive selection in bats. Our findings from Cldn14, and comparisons with Prestin, strongly implicate multiple loci in the acquisition of echolocation in cetaceans, but also highlight possible differences in the evolutionary route to echolocation taken by whales and bats. "	"Genetic analysis of auditory neuropathy spectrum disorder in the Korean population. Auditory neuropathy spectrum disorder (ANSD) is caused by dys-synchronous auditory neural response as a result of impairment of the functions of the auditory nerve or inner hair cells, or synapses between inner hair cells and the auditory nerve. To identify a causative gene causing ANSD in the Korean population, we conducted gene screening of the OTOF, DIAPH3, and PJVK genes in 19 unrelated Korean patients with ANSD. A novel nonsense mutation (p.Y1064X) and a known pathogenic mutation (p.R1939Q) of the OTOF gene were identified in a patient as compound heterozygote. Pedigree analysis for these mutations showed co-segregation of mutation genotype and the disease in the family, and it supported that the p.Y1064X might be a novel genetic cause of autosomal recessive ANSD. A novel missense variant p.K1017R (c.3050A&gt;G) in the DIAPH3 gene was also identified in the heterozygous state. In contrast, no mutation was detected in the PJVK gene. These results indicate that no major causative gene has been reported to date in the Korean population and that pathogenic mutations in undiscovered candidate genes may have an effect on ANSD."	"Distribution of pejvakin in human spiral ganglion: An immunohistochemical study. Up to 10% of permanent hearing impairments in children originate from lesions in the neuronal auditory pathway. This form of auditory neuron injury called auditory neuropathy features a preservation of outer hair cell integrity but an impaired inner hair cell function and/or neuronal transmission. DFNB59 gene encodes the protein pejvakin (PJVK) and its mutations cause autosomal recessive auditory neuropathy as well as other forms of sensorineural hearing loss. The finding of distinct forms of hearing anomalies was based on studies of consanguineous families from different ethnic groups as well as studies in mice with PJVK gene mutations. In the present immunohistochemical study, the distribution of pejvakin protein in surgically obtained human cochleae was for the first time investigated. The human cochleae had normal hearing thresholds before the operation. The expression of pejvakin was located in the cell bodies of all spiral ganglion neurons rather than the nerve fibers that were labeled with Tuj 1 antibody. As Tuj 1 antibody stained the cytoplasm of Type 1 cells, pejvakin antibody labeled both type 1 and type 2 cells. The nuclei of the neurons were also PJVK-positive. No labeling was seen in the structures within the organ of Corti and the stria vascularis. In the previous study, PJVK had been detected in the hair cells, the spiral ganglion, the cochlear nuclei, the superior olivary nucleus, and the inferior colliculus in mouse. Our study demonstrated for the first time the expression of PJVK in human spiral ganglion neurons. Its functional role in neural signal propagation and synchrony needs further elucidation. "	"A p.C343S missense mutation in PJVK causes progressive hearing loss. Mutations in PJVK, encoding Pejvakin, cause autosomal recessive nonsyndromic hearing loss in humans at the DFNB59 locus on chromosome 2q31.2. Pejvakin is involved in generating auditory and neural signals in the inner ear. We have identified a consanguineous Pakistani family segregating sensorineural progressive hearing loss as a recessive trait, consistent with linkage to DFNB59. We sequenced PJVK and identified a novel missense mutation, c.1028G&gt;C in exon 7 (p.C343S) co-segregating with the phenotype in the family. The p.C343 residue is fully conserved among orthologs from different vertebrate species. We have also determined that mutations in PJVK are not a common cause of hearing loss in families with moderate to severe hearing loss in Pakistan. This is the first report of PJVK mutation in a Pakistani family and pinpoints an important residue for PJVK function."	"A prevalent founder mutation and genotype-phenotype correlations of OTOF in Japanese patients with auditory neuropathy. Auditory neuropathy is a hearing disorder characterized by normal outer hair cell function and abnormal neural conduction of the auditory pathway. Aetiology and clinical presentation of congenital or early-onset auditory neuropathy are heterogeneous, and their correlations are not well understood. Genetic backgrounds and associated phenotypes of congenital or early-onset auditory neuropathy were investigated by systematically screening a cohort of 23 patients from unrelated Japanese families. Of the 23 patients, 13 (56.5%) had biallelic mutations in OTOF, whereas little or no association was detected with GJB2 or PJVK, respectively. Nine different mutations of OTOF were detected, and seven of them were novel. p.R1939Q, which was previously reported in one family in the United States, was found in 13 of the 23 patients (56.5%), and a founder effect was determined for this mutation. p.R1939Q homozygotes and compound heterozygotes of p.R1939Q and truncating mutations or a putative splice site mutation presented with stable, and severe-to-profound hearing loss with a flat or gently sloping audiogram, whereas patients who had non-truncating mutations except for p.R1939Q presented with moderate hearing loss with a steeply sloping, gently sloping or flat audiogram, or temperature-sensitive auditory neuropathy. These results support the clinical significance of comprehensive mutation screening for auditory neuropathy."	"DFNA5, a gene involved in hearing loss and cancer: a review. The DFNA5 gene was identified in 1998 as a gene that causes an autosomal dominant form of hearing impairment. Five different DFNA5 mutations have been found; each results in skipping of exon 8 at the messenger RNA level. This finding indicates that DFNA5-associated hearing loss is attributable to a highly specific gain-of-function mutation. Interestingly, later reports revealed that DFNA5 also plays a role in tumor biology. Recent data have shed more light on the biological function of DFNA5. Through a literature search, the current knowledge of this gene is reviewed. DFNA5 is the first gene for monogenic deafness that is known to involve apoptosis as a disease mechanism--a mechanism that was shown to be involved in frequent types of hearing loss caused by age, noise, or drugs. In line with its apoptosis-inducing properties, DFNA5 is a tumor suppressor gene with an important role in major types of tumors. DFNA5 is a tumor suppressor gene that is involved in apoptosis pathways and as such performs a basic role in cell survival. In view of the known role of apoptosis in several forms of hearing loss, DFNA5 may be a player in the underlying disease mechanisms."	"Parallel signatures of sequence evolution among hearing genes in echolocating mammals: an emerging model of genetic convergence. Recent findings of sequence convergence in the Prestin gene among some bats and cetaceans suggest that parallel adaptations for high-frequency hearing have taken place during the evolution of echolocation. To determine if this gene is an exception, or instead similar processes have occurred in other hearing genes, we have examined Tmc1 and Pjvk, both of which are associated with non-syndromic hearing loss in mammals. These genes were amplified and sequenced from a number of mammalian species, including echolocating and non-echolocating bats and whales, and were analysed together with published sequences. Sections of both genes showed phylogenetic signals that conflicted with accepted species relationships, with coding regions uniting laryngeal echolocating bats in a monophyletic clade. Bayesian estimates of posterior probabilities of convergent and divergent substitutions provided more direct evidence of sequence convergence between the two groups of laryngeal echolocating bats as well as between echolocating bats and dolphins. We found strong evidence of positive selection acting on some echolocating bat species and echolocating cetaceans, contrasting with purifying selection on non-echolocating bats. Signatures of sequence convergence and molecular adaptation in two additional hearing genes suggest that the acquisition of high-frequency hearing has involved multiple loci."	"Variants of OTOF and PJVK genes in Chinese patients with auditory neuropathy spectrum disorder. Mutations in OTOF and PJVK genes cause DFNB9 and DFNB59 types of hearing loss, respectively. The patients carrying pathogenic mutations in either of these genes may show the typical phenotype of auditory neuropathy spectrum disorder (ANSD). The aim of the present study was to identify OTOF and PJVK mutations in sporadic ANSD patients. A total of 76 unrelated Chinese non-syndromic ANSD patients were sequenced on the gene OTOF and PJVK exon by exon. Variants were valued in 105 controls with normal hearing to verify the carrying rate. We identified one pathogenic mutation (c.1194T&gt;A) and three novel, possibly pathogenic, variants (c.3570+2T&gt;C, c.4023+1 G&gt;A, and c.1102G&gt;A) in the OTOF gene, and one novel, possibly pathogenic, variant (c.548G&gt;A) in PJVK. Moreover, we found three novel missense mutations within the exons of OTOF. As we identified 4 and 1 possible pathogenic variants of the OTOF gene and the PJVK gene, respectively, we believe that screening in these genes are important in sporadic ANSD patients. The pathogenicity of these novel mutations needs further study because of their single heterozygous nature. Knowledge on the mutation spectra of these genes in Chinese would be beneficial in understanding the genetic character of this worldwide disease."	"High frequency of autosomal-recessive DFNB59 hearing loss in an isolated Arab population in Israel. Autosomal-recessive non-syndromic hearing impairment (DFNB) is usually of prelingual onset with a moderate to profound degree of hearing loss. More than 70 DFNB loci have been mapped and ~40 causative genes have been identified. Non-syndromic hearing impairment caused by mutations of DFNB59 (encoding pejvakin) has been described in a couple of families in which affected individuals presented with either auditory neuropathy or hearing loss of cochlear origin. We have identified and clinically evaluated three consanguineous families of Israeli Arab origin with prelingual non-syndromic hearing impairment and absent otoacoustic emissions in a total of eight affected individuals. All the families originate from the same village and bear the same family name. We have identified a c.406C&gt;T (p.R136X) nonsense mutation in the DFNB59 gene in affected individuals from these families. Among the inhabitants of the village, we found an exceptionally high carrier frequency of ~1 in 12 individuals (7/85; 8.2%). The high prevalence of hearing impairment can be explained by a founder effect and the high consanguinity rate among the inhabitants of this village."	"Genetic causes of nonsyndromic hearing loss in Iran in comparison with other populations. Hearing loss (HL) is the most prevalent sensory defect affecting 1 in 500 neonates. Genetic factors are involved in half of the cases. The extreme heterogeneity of HL makes it difficult to analyze and determine the accurate genetic causes of the impairment. Up to now, 10 genes, namely, GJB2, GJB6, SLC26A4, TECTA, PJVK, Col11A2, Myo15A, TMC1, RDX and microRNA (miR-183), have been studied in an Iranian population. The prevalence of HL in Iran was estimated to be 2-3 times higher than that in other parts of the world. Here, the most common bases of congenital nonsyndromic hearing loss (NSHL) are discussed. We reviewed GJB2, GJB6 (large deletion), TECTA, SLC26A4 and PEJVK mutations, and studied their frequencies and distributions in different ethnic groups in 1934, 500, 121, 80 and 34 unrelated families throughout Iran, respectively. GJB2 mutation was the most common factor causing NSHL, with a mean frequency of 18.17% in the Iranian population. The importance of Iran's geographical location in the migration pathway from west to east through the silk route was also highlighted. SLC26A4 and TECTA mutations were the second and third main reasons of HL and accounted for up to 10 and 4% of prelingual HL in Iran, respectively. Mutations in GJB2, SLC26, TECTA and PJVK genes have an important role in HL in Iran and a screening test should be generated for better intervention and diagnosis programs."	"Increased activity of Diaphanous homolog 3 (DIAPH3)/diaphanous causes hearing defects in humans with auditory neuropathy and in Drosophila. Auditory neuropathy is a rare form of deafness characterized by an absent or abnormal auditory brainstem response with preservation of outer hair cell function. We have identified Diaphanous homolog 3 (DIAPH3) as the gene responsible for autosomal dominant nonsyndromic auditory neuropathy (AUNA1), which we previously mapped to chromosome 13q21-q24. Genotyping of additional family members narrowed the interval to an 11-Mb, 3.28-cM gene-poor region containing only four genes, including DIAPH3. DNA sequencing of DIAPH3 revealed a c.-172G&gt;A, g. 48G&gt;A mutation in a highly conserved region of the 5' UTR. The c.-172G&gt;A mutation occurs within a GC box sequence element and was not found in 379 controls. Using genome-wide expression arrays and quantitative RT-PCR, we demonstrate a 2- to 3-fold overexpression of DIAPH3 mRNA in lymphoblastoid cell lines from affected individuals. Likewise, a significant increase (approximately 1.5-fold) in DIAPH3 protein was found by quantitative immunoblotting of lysates from lymphoblastoid cell lines derived from affected individuals in comparison with controls. In addition, the c.-172G&gt;A mutation is sufficient to drive overexpression of a luciferase reporter. Finally, the expression of a constitutively active form of diaphanous protein in the auditory organ of Drosophila melanogaster recapitulates the phenotype of impaired response to sound. To date, only two genes, the otoferlin gene OTOF and the pejvakin gene PJVK, are known to underlie nonsyndromic auditory neuropathy. Genetic testing for DIAPH3 may be useful for individuals with recessive as well as dominant inheritance of nonsyndromic auditory neuropathy."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"Mutations in LOXHD1, an evolutionarily conserved stereociliary protein, disrupt hair cell function in mice and cause progressive hearing loss in humans. Hearing loss is the most common form of sensory impairment in humans and is frequently progressive in nature. Here we link a previously uncharacterized gene to hearing impairment in mice and humans. We show that hearing loss in the ethylnitrosourea (ENU)-induced samba mouse line is caused by a mutation in Loxhd1. LOXHD1 consists entirely of PLAT (polycystin/lipoxygenase/alpha-toxin) domains and is expressed along the membrane of mature hair cell stereocilia. Stereociliary development is unaffected in samba mice, but hair cell function is perturbed and hair cells eventually degenerate. Based on the studies in mice, we screened DNA from human families segregating deafness and identified a mutation in LOXHD1, which causes DFNB77, a progressive form of autosomal-recessive nonsyndromic hearing loss (ARNSHL). LOXHD1, MYO3a, and PJVK are the only human genes to date linked to progressive ARNSHL. These three genes are required for hair cell function, suggesting that age-dependent hair cell failure is a common mechanism for progressive ARNSHL."	"[Sequence analysis of DFNB59 gene in a Chinese family with dominantly inherited auditory neuropathy]. To investigate if the DFNB59 gene contributes to the hearing loss of a Chinese pedigree with dominantly inherited auditory neuropathy (AN). Nine members in four generations of the family were selected for this study. Genomic DNA was isolated from the peripheral leukocytes of the patients using the pure gene DNA isolation kits. Firstly, the subjects DNA fragment was PCR amplified using specific primers corresponding to exon 2 and 4 of the DFNB59 gene. Each fragment was purified and subsequently analyzed by direct sequencing in an applied biosystems 3730 automated DNA sequencer. The whole coding sequence of DFNB59 gene of one family patient were then PCR amplified and submitted for sequence analysis as described above. The resultant sequence data were compared with the standard sequence to identify deafness-associated mutations. PCR amplifications were successfully conducted in all the subjects. We failed to detect the presence either of mutations T54I and R183W in the exon 2 and exon 4 that have been reported, or any other deafness-associated mutations in the whole DFNB59 gene, by sequence analysis. The DFNB59 gene seems not contribute to the pathogenesis of this Chinese AN family, which suggesting new gene(s) involvement."	"Novel mutations in the pejvakin gene are associated with autosomal recessive non-syndromic hearing loss in Iranian families. NA"	"Involvement of DFNB59 mutations in autosomal recessive nonsyndromic hearing impairment. In a consanguineous Turkish family, a locus for autosomal recessive nonsyndromic hearing impairment (ARNSHI) was mapped to chromosome 2q31.1-2q33.1. Microsatellite marker analysis in the complete family determined the critical linkage interval that overlapped with DFNB27, for which the causative gene has not yet been identified, and DFNB59, a recently described auditory neuropathy caused by missense mutations in the DFNB59 gene. The 352-amino acid (aa) DFNB59 gene product pejvakin is present in hair cells, supporting cells, spiral ganglion cells, and the first three relays of the afferent auditory pathway. A novel homozygous nonsense mutation (c.499C&gt;T; p.R167X) was detected in the DFNB59 gene, segregating with the deafness in the family. The mRNA derived from the mutant allele was found not to be degraded in lymphocytes, indicating that a truncated pejvakin protein of 166 aa may be present in the affected individuals. Screening of 67 index patients from additional consanguineous Turkish families with autosomal recessive hearing impairment revealed a homozygous missense mutation (c.547C&gt;T; p.R183W) that segregates with the hearing impairment in one family. Furthermore, in a panel of 83 Dutch patients, two additional novel mutations (c.509_512delCACT; p.S170CfsX35 and c.731T&gt;G; p.L244R), which were not present in ethnically matched controls, were found heterozygously. Together, our data indicate that also nonsense mutations in DFNB59 cause nonsyndromic hearing loss, but that mutations in DFNB59 are not a major cause of nonsyndromic hearing impairment in the Turkish and Dutch population."	"Members of a novel gene family, Gsdm, are expressed exclusively in the epithelium of the skin and gastrointestinal tract in a highly tissue-specific manner. Gasdermin (Gsdm) was originally identified as a candidate causative gene for several mouse skin mutants. Several Gsdm-related genes sharing a protein domain with DFNA5, the causative gene of human nonsyndromic hearing loss, have been found in the mouse and human genomes, and this group is referred to as the DFNA5-Gasdermin domain family. However, our current comparative genomic analysis identified several novel motifs distinct from the previously reported domain in the Gsdm-related genes. We also identified three new Gsdm genes clustered on mouse chromosome 15. We named these genes collectively the Gsdm family. Extensive expression analysis revealed exclusive expression of Gsdm family genes in the epithelium of the skin and gastrointestinal tract in a highly tissue-specific manner. Further database searching revealed the presence of other related genes with a similar N-terminal motif. These results suggest that the Gsdm family and related genes have evolved divergent epithelial expression profiles."	"Truncating mutation of the DFNB59 gene causes cochlear hearing impairment and central vestibular dysfunction. We have identified a consanguineous family from Morocco segregating autosomal recessive congenital progressive hearing loss (ARNSHL) and retinal degeneration. Detailed clinical investigation of the six siblings revealed combined severe cone-rod dystrophy (CORD) and severe/profound hearing impairment in two of them, while there is isolated CORD in three and nonsyndromic profound hearing loss in one. We therefore assumed a partial overlap of two nonsyndromic autosomal recessive conditions instead of a monogenic syndrome and performed genomewide linkage analysis. The disease loci were mapped to chromosome 2q31.1-2q32.1 for ARNSHL and to 2q13-2q14.1 for CORD, respectively. The retinal phenotype was shown to be due to homozygosity for a novel splice site mutation, c.2189+1G&gt;T, in the retinitis pigmentosa gene MERTK. The ARNSHL interval comprised the DFNB59 locus. The DFNB59 gene has been identified recently, and two missense mutations (p.R183W and p.T54I) have been shown to cause auditory neuropathy in both humans and transgenic mice. Mutation screening in the DFNB59 gene in our family revealed homozygosity for a 1-bp insertion in exon 2 (c.113_114insT), predicting a truncated protein of 47 amino acids, in all three hearing impaired subjects. This is the first description of biallelic putative loss-of-function of the DFNB59 gene. Detailed audiological investigation clearly indicated hair cell dysfunction and, in contrast to cases reported previously, excluded auditory neuropathy. We show that besides otoferlin (OTOF), DFNB59 is the second known gene in which mutations can result in these two distinct forms of hearing impairment. Moreover, all patients in our family with homozygosity for the DFNB59 mutation display central vestibular dysfunction."	"Mutations in the gene encoding pejvakin, a newly identified protein of the afferent auditory pathway, cause DFNB59 auditory neuropathy. Auditory neuropathy is a particular type of hearing impairment in which neural transmission of the auditory signal is impaired, while cochlear outer hair cells remain functional. Here we report on DFNB59, a newly identified gene on chromosome 2q31.1-q31.3 mutated in four families segregating autosomal recessive auditory neuropathy. DFNB59 encodes pejvakin, a 352-residue protein. Pejvakin is a paralog of DFNA5, a protein of unknown function also involved in deafness. By immunohistofluorescence, pejvakin is detected in the cell bodies of neurons of the afferent auditory pathway. Furthermore, Dfnb59 knock-in mice, homozygous for the R183W variant identified in one DFNB59 family, show abnormal auditory brainstem responses indicative of neuronal dysfunction along the auditory pathway. Unlike previously described sensorineural deafness genes, all of which underlie cochlear cell pathologies, DFNB59 is the first human gene implicated in nonsyndromic deafness due to a neuronal defect."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"RDX"	"nonsyndromic genetic deafness"	"Genomic alterations in chronic lymphocytic leukemia and their correlation with clinico-hematological parameters and disease progression. Chronic lymphocytic leukemia (CLL) is a heterogeneous disease, which is attributed to differences in the genetic characteristics of the leukemic clone. We studied the genomic profile of 52 treatment-naïve CLL patients. Genetic analysis was performed by multiplex ligation-dependent probe amplification (MLPA) using the SALSA P038 Probemix (MRC Holland, Amsterdam), which contains probes for 2p (MYCN,ALK,REL), 6q, 8p (TNFRSF10A/B), 8q (EIF3H,MYC), 9p21(CDKN2A/B), 10q (PTEN), 11q (ATM, RDX, PPP2R1B, CADM1), chromosome 12, 13q14 (RB1, DLEU1/2/7, KCNRG, MIR15A), 14q, 17p (TP53) and chromosome 19, and for NOTCH17541-7542delCT, SF3B1K700E, and MYD88L265P mutations. The median age was 65 years (male:female=2:1). The median hemoglobin, total leukocyte, and platelet counts were 12.4 g/dL, 57.7×109/L, and 176.5×109/L, respectively. At least one genetic abnormality was observed in 34 (65%) patients. The most common abnormality was del(13q14) (deleted DLEU2 and DLEU1/RB1 genes), which was observed in 22 (42%) cases, followed by trisomy 12 [7 (13%) cases]. Del(11q) (deleted ATM, RDX11/PPP2R1B-4) and del(17p) (deleted TP53) were present in 5 (10%) and 2 (4%) cases, respectively. 19p13.2 (CDKN2D-2) amplification and NOTCH1 mutation were found in one case each. Genetic abnormalities are commonly (65%) observed in CLL patients. Del(13q), which is associated with DLEU2 and DLEU1/RB1 gene deletion, was the most common. Compared with other abnormalities, del(11q) and del(17p) patients presented with cytopenia and higher Binet stage, while those with del(13q14) had a longer time to first treatment."	"Degradation of RDX (Hexahydro-1,3,5-trinitro-1,3,5-triazine) in contrasting coastal marine habitats: Subtidal non-vegetated (sand), subtidal vegetated (silt/eel grass), and intertidal marsh. Hundreds of explosive-contaminated marine sites exist globally, many of which contain the common munitions constituent hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). Quantitative information about RDX transformation in coastal ecosystems is essential for management of many of these sites. Isotopically labelled RDX containing <sup>15</sup>N in all 3 nitro groups was used to track the fate of RDX in three coastal ecosystem types. Flow-through mesocosms representing subtidal vegetated (silt/eel grass), subtidal non-vegetated (sand) and intertidal marsh ecosystems were continuously loaded with isotopically labelled RDX for 16-17 days. Sediment, pore-water and overlying surface water were analyzed to determine the distribution of RDX, nitroso-triazine transformation products (NXs) and nitrogen containing complete mineralization products, including ammonium, nitrate+nitrite, nitrous oxide and nitrogen gas. The marsh, silt, and sand ecotypes transformed 94%, 90% and 76% of supplied RDX, respectively. Total dissolved NXs accounted for 2%-4% of the transformed <sup>15</sup>N-RDX. The majority of RDX transformation in the water column was by mineralization to inorganic N (dissolved and evaded; 64%-78% of transformed <sup>15</sup>N-RDX). RDX was mineralized primarily to N2O (62-74% of transformed <sup>15</sup>N-RDX) and secondarily to N2 (1-2% of transformed <sup>15</sup>N-RDX) which exchanged with the atmosphere. Transformation of RDX was favored in carbon-rich lower redox potential sediments of the silt and marsh mesocosms where anaerobic processes of iron and sulfate reduction were most prevalent. RDX was most persistent in the carbon-poor sand mesocosm. Partitioning of <sup>15</sup>N derived from RDX onto sediment and suspended particulates was negligible in the overall mass balance of RDX transformation (2%-3% of transformed <sup>15</sup>N-RDX). The fraction of <sup>15</sup>N derived from RDX that was sorbed or assimilated in sediment was largest in the marsh mesocosm (most organic carbon), and smallest in the sand mesocosm (largest grain size and least organic carbon). Sediment redox conditions and available organic carbon stores affect the fate of RDX in different coastal marine habitats."	"Combined biotic-abiotic 2,4-dinitroanisole (DNAN) degradation in the presence of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). The Department of Defense has developed new explosive formulations in which traditionally used cyclic nitramines such as hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) have been updated with the insensitive munition 2,4-dinitroanisole (DNAN). Understanding combined degradation of both compounds at explosives-contaminated sites will allow remediation approaches that simultaneously target both contaminants. DNAN reduction in the presence of RDX was evaluated in abiotic experiments using sub-stoichiometric, stoichiometric, and super-stoichiometric concentrations of ferrous iron and anthrahydroquinone disulfonate within a pH range from 7.0 to 9.0. Biological degradation was investigated in resting cell suspensions of Geobacter metallireducens, strain GS-15, a model Fe(III)-reducing soil bacteria. Cells were amended into anoxic tubes buffered at pH 7.0, with an initial 100 µM of DNAN and 40-50 µM of RDX. In both abiotic and biological experiment, the DNAN was reduced through intermediate 2-methoxy-5-nitroaniline (MENA) or 4-methoxy-3-nitroaniline (iMENA) to 2,4-diaminoanisole (DAAN). In biological experiments the RDX was reduced to form methylenedinitramine (MEDINA), formaldehyde (HCHO), and ammonium (NH<sup>4+</sup>). Cells were able to reduce both DNAN and RDX most readily in the presence of extracellular electron shuttles and/or Fe(III). DNAN degradation (abiotic and biotic) was faster than degradation of RDX, suggesting that the reduction of insensitive munitions will not be inhibited by cyclic nitramines, but degradation dynamics did change in mixtures when compared to singular compounds."	"A novel egg shell-based bio formulation for remediation of RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) contaminated soil. Environmental contamination by secondary explosive has been posing threat to human health and the ecosystem. We investigated the potential of a novel bioformulation developed from poultry waste for the bioremediation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) contaminated soils. Eggshells and additives immobilized with an indigenous explosive degrading microbe Janibacter cremeus were utilized for the development of the wettable powder bioformulation. Treatments carried out under unsaturated and saturated soil conditions resulted in 62 and 73 % removal of RDX respectively in 35 days meeting the soil clean up goals. The saturated treatment sets exhibited better microbial growth during the study in terms of live cell count and total enzyme activity. The bacteria, J. cremeus was observed to exhibit significant release of nitrite under both unsaturated as well as saturated conditions. Mass spectrometric studies showed that, both the conditions lead to the formation of nitroso-derivatives of RDX. But under saturated condition, an intermediate, 5-hydroxy-4-nitro-2,4-diazapentanal was observed which is a precursor to 4-nitro-2,4-diazabuatnal ultimately leading to mineralization. An accessible bio resource from poultry waste when used as a carrier for explosive degrading microbe has proven effective for in situ remediation of explosive contaminated soils."	"Substituted triazolo-triazine derivatives as energetic materials: a computational investigation and assessment. A series of energetic compounds were derived from [1,2,4]triazolo[1,5-a][1,3,5]triazine and azo-bridged fused backbone by introducing the -NO2, -NHNO2, -ONO2, -N3, and -NH2 explosophoric groups. The influence of explosophoric groups on energetic properties has been explored. All the compounds exhibit positive energy content (34.4-1955.4 kJ/mol) and densities (1.71-1.99 g/cm<sup>3</sup>) subject to fused triazole and triazine framework and various functional groups. The designed compounds with -NHNO2, -ONO2, and -NO2 functional groups possess high detonation velocities (8.23-9.00 km/s), pressures (30.94-37.68 GPa), Gurney velocities (2.70-2.88 km/s), and power index (109-131%) superior to TNT (6.94 m/s, 22.0 GPa, 2.37 km/s, and 118%) and comparable with RDX (8.60 km/s, 33.92 GPa, 2.93 km/s, and 169%) and HMX (8.90 km/s, 38.39 GPa, 2.97 km/s, and 169%). Based on high nitrogen and energy content, performance parameters, and sensitivity data, the designed compounds show high potential to be used as energetic materials. Graphical abstract."	"Aerobic biodegradation of high explosive hexahydro-1,3,5- trinitro-1,3,5-triazine by Janibacter cremeus isolated from contaminated soil. To evaluate the ability of Janibacter cremeus a soil bacterium isolated from explosive contaminated site in degradation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and to study enzyme responsible for degradation. The isolate exhibited 88% degradation of RDX in 30 days of incubation. The biodegradation process followed the first order kinetics. The half- life of RDX was calculated to be 11.088 days. The RDX degradation process was complemented by concomitant release of nitrite ions with 0.78 mol of nitrite released per mole of RDX. The metabolites; Trinitroso- RDX, diamino-RDX, trimino-RDX, bis- (hydroxymethyl) nitramine and methylenedintramine derivative, viz, methylene- N- (hydroxy- methyl)- hydroxylamine- N-(hydroxymethyl) nitroamine corresponding to the molecular weights 174, 162, 132, 122 and 167 Da respectively were also detected. Nitroreductase enzyme was found to be responsible for RDX degradation. J. cremeus could degrade RDX as sole source of nitrogen, via three different pathways wherein, Nitroreductase enzyme was found to play a major role. The efficient degradation of RDX makes J. cremeus suitable in treatment of contaminated water and soil at field scale levels."	"Detection of High-Explosive Materials within Fingerprints by Means of Optical-Photothermal Infrared Spectromicroscopy. As we live under a constant threat of global terrorism, the effective detection of highly energetic materials is one of the critical procedures needed at a variety of locations, including airports, border checkpoints, and entrances to high-security buildings. In this work, the application of optical-photothermal infrared (O-PTIR) spectromicroscopy for the detection of highly explosive materials within fingerprints is described. High-explosive (HE) materials (e.g., PETN, RDX, C-4, or TNT) were used to prepare contaminated fingerprints. These were subsequently deposited on various objects, including microscopic glass slides, a table, a mug, etc. Samples deposited on glass slides were directly sent for analyses; for other samples, adhesive tapes were used to lift off fingermarks. In cases of difficulty in locating fingerprints, additional powders were used to enhance their visibility. Experiments were performed with a mIRage IR microscope working in a noncontact, far-field reflection mode, offering submicron IR spectroscopy and imaging. Fast imaging (several characteristic absorbances were selected for every substance of interest) was used to locate &quot;suspicious&quot; particles among various residues present in fingerprints. Subsequently, spectra were collected for those particles. Reflection mode O-PTIR spectra taken from powdered and nonenhanced fingerprints were of comparable quality to transmission mode FTIR spectra collected for pure HEs. On the basis of the performed experiments, we consider O-PTIR spectromicroscopy to open a new avenue for the nondestructive, efficient, and reliable analysis of exogenous substances deposited within fingerprints. The real significance of O-PTIR is in its ability to deliver high-quality, spatially resolved FTIR transmission-like spectra below the diffraction limit of infrared wavelengths, doing so in an easy-to-use reflection (far-field) mode. Collected spectra are also searchable and interpretable in both commercial and institutional IR databases without mathematical modeling."	"Dynamic Mechanical Damage and Non-Shock initiation of a New Polymer Bonded Explosive during Penetration. Complexities of heating mechanisms make it difficult to investigate the safety of a polymer bonded explosive (PBX) charge of earth-penetrating-weapons (EPWs) during penetration. In this paper, the dynamic damage and non-shock initiation of PBX1314 (60 wt % hexahydro-1, 3, 5-trinitro-1, 3, 5-s-triazine (RDX), 16 wt % aluminum, 24 wt % hydroxy-terminated polybutadiene (HTPB)) during penetration is investigated through experiments and simulations. In the experiments, steel projectiles filled with PBX1314 are launched to penetrate concrete targets. In the results, non-shock initiations occur on the tail surface of PBX1314 along with mechanical damage of the tail and middle part of PBX1314. A dynamic damage and initiation model is proposed to characterize the effects of microcracks on the mechanical and thermal responses of PBX1314. Investigation based on the model suggests that microcrack interfacial friction plays significant roles in damage, heat generation and localization in PBX1314. A non-shock initiation criterion is developed based on macroscale variables in PBX1314. Numerical simulations of the penetration experiments are performed by using the proposed model and criterion. The mechanical damage and non-shock initiation of PBX1314 in the experiments are successfully predicted. The simulation results indicate that the tail of PBX1314 impacts the projectile repeatedly during penetration. Finally, the initiation criterion is satisfied because of frictional heat localization near microcrack surfaces and initiation is activated in the tail of PBX1314."	"Comparative investigation on the thermostability, sensitivity, and mechanical performance of RDX/HMX energetic cocrystal and its mixture. Molecular mechanics (MM) and molecular dynamics (MD) simulation method were applied to explore the impact of temperature (220-380 K) on the thermostability, sensitivity, and mechanical performance of RDX (1,3,5-trinitro-1,3,5-triazacyco-hexane)/HMX (1,3,5,7-tetranitro-1,3,5,7-tetrazocane) energetic cocrystal and mixture models. The mechanical property, the maximum trigger bond length ([Formula: see text]), binding energy, and cohesive energy density (CED) of the pure RDX, β-HMX crystal, the cocrystal, and mixture models were acquired and compared. The results manifest that temperature has an important impact on the binding capacity between the components of the cocrystal and mixture. The binding energies decrease as the temperature rises, and the cocrystal has larger values than those of mixture. For all the models, the [Formula: see text] increases and the CEDs decrease with the rising temperature, implying that the sensitivity of the explosives increases, while the [Formula: see text] values of the cocrystal are smaller than those of HMX and the CED values are between those of RDX and β-HMX, indicating that the sensitivity has been enhanced through co-crystallization. As the temperature increases, the shear modulus (G), bulk modulus (K), and tensile modulus (E) values of all models have an evident downtrend. Simultaneously, G, K, and E values of the cocrystal model are less than those of RDX and β-HMX, while the K/G ratio and Cauchy pressure (C12-C44) are larger, signifying that co-crystallization can weaken the brittleness and enhance the ductility of the pure crystals. Compared with the mixture, the cocrystal has better ductility and stability."	"Flexible Drift Tube for High Resolution Ion Mobility Spectrometry (Flex-DT-IMS). This paper describes, in detail, the development of a novel, low-cost, and flexible drift tube (DT) along with an associated ion mobility spectrometer system. The DT is constructed from a flexible printed circuit board (PCB), with a bespoke &quot;dog-leg&quot; track design, that can be rolled up for ease of assembly. This approach incorporates a shielding layer, as part of the flexible PCB design, and represents the minimum dimensional footprint conceivable for a DT. The low thermal mass of the polyimide substrate and overlapping electrodes, as afforded by the dog-leg design, allow for efficient heat management and high field linearity within the tube-achieved from a single PCB. This is further enhanced by a novel double-glazing configuration which provides a simple and effective means for gas management, minimizing thermal variation within the assembly. Herein, we provide a full experimental characterization of the flexible DT ion mobility spectrometer (Flex-DT-IMS) with corresponding electrodynamic (Simion 8.1) and fluid dynamic (SolidWorks) simulations. The Flex-DT-IMS is shown to have a resolution &gt;80 and a detection limit of low nanograms for the analysis of common explosives (RDX, PETN, HMX, and TNT)."	"Transethnic Meta-Analysis of Genome-Wide Association Studies Identifies Three New Loci and Characterizes Population-Specific Differences for Coronary Artery Disease. Genome-wide association studies provided many biological insights into coronary artery disease (CAD), but these studies were mainly performed in Europeans. Genome-wide association studies in diverse populations have the potential to advance our understanding of CAD. We conducted 2 genome-wide association studies for CAD in the Japanese population, which included 12 494 cases and 28 879 controls and 2808 cases and 7261 controls, respectively. Then, we performed transethnic meta-analysis using the results of the coronary artery disease genome-wide replication and meta-analysis plus the coronary artery disease 1000 Genomes meta-analysis with UK Biobank. We then explored the pathophysiological significance of these novel loci and examined the differences in CAD-susceptibility loci between Japanese and Europeans. We identified 3 new loci on chromosome 1q21 (CTSS), 10q26 (WDR11-FGFR2), and 11q22 (RDX-FDX1). Quantitative trait locus analyses suggested the association of CTSS and RDX-FDX1 with atherosclerotic immune cells. Tissue/cell type enrichment analysis showed the involvement of arteries, adrenal glands, and fat tissues in the development of CAD. We next compared the odds ratios of lead variants for myocardial infarction at 76 genome-wide significant loci in the transethnic meta-analysis and a moderate correlation between Japanese and Europeans, where 8 loci showed a difference. Finally, we performed tissue/cell type enrichment analysis using East Asian-frequent and European-frequent variants according to the risk allele frequencies and identified significant enrichment of adrenal glands in the East Asian-frequent group while the enrichment of arteries and fat tissues was found in the European-frequent group. These findings indicate biological differences in CAD susceptibility between Japanese and Europeans. We identified 3 new loci for CAD and highlighted the genetic differences between the Japanese and European populations. Moreover, our transethnic analyses showed both shared and unique genetic architectures between the Japanese and Europeans. While most of the underlying genetic bases for CAD are shared, further analyses in diverse populations will be needed to elucidate variations fully."	"Draft Genome Sequences of Rhodococcus sp. Strains YH1 and T7, Isolated from Explosive-Contaminated Environments. We report the draft genome sequences for Rhodococcus sp. strains YH1 and T7. These strains are both capable of degrading hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and were isolated from explosive-contaminated soil and groundwater, respectively. Further genomic analysis might facilitate an understanding of the degradation of RDX and will contribute to the development of bioremediation methods for polluted soil and groundwater."	"Unusual Cu-Co/GO Composite with Special High Organic Content Synthesized by an in Situ Self-Assembly Approach: Pyrolysis and Catalytic Decomposition on Energetic Materials. An interesting Cu-Co/GO composite with special high organic content was accidentally fabricated for the first time via a one-pot solvothermal method in the mixed solvent of isopropanol and glycerol. The Cu-Co/GO composite was calcined separately in three different atmospheres (air, nitrogen, and argon) and further investigated by a series of characterization techniques. The results indicate that the spinel phase nano-CuCo2O4 composite, nanometal oxides (CuO and CoO), and nanometal mixture of Cu and Co were unexpectedly formed after calcination in air, N2, and Ar atmospheres, respectively, and the possible reaction mechanism was discussed. The specific mass losses of the Cu-Co/GO composite calcined in air, N2, and Ar atmospheres were 28.14 %, 21.68 %, and 23.76 %, respectively. The catalytic decomposition performances of the as-prepared samples for cyclotrimethylenetrinitramine (RDX) and the mixture of nitrocellulose (NC) and RDX (NC + RDX) were investigated and compared via DSC method, and the results demonstrate that Cu-Co/GO composites obviously decrease the thermal decomposition temperature of RDX from 242.3 to 236.5 (before calcination), 238.6 (air), 235.8 (N2), and 228.6 °C (Ar), respectively. Cu-Co/GO(Ar) composite exhibits the best catalytic decomposition performance among all samples, which makes the decomposition temperature of RDX and NC + RDX decrease by 13.7 and 4.9 °C and the apparent activation energy of decomposition for RDX decrease by 110.1 kJ/mol. The enhanced catalytic performance of Cu-Co/GO(Ar) composite could be attributed to the smaller particle size, better crystallinity, and specific well-dispersed metal atoms, whereas the Cu-Co/GO(air) composite after air calcination presents a bad catalytic performance due to the removal of GO."	"Experimental Study of Pyrolysis and Laser Ignition of Low-Vulnerability Propellants Based on RDX. Low-vulnerability propellants are propellants designed to resist unintended stimuli to increase safety during transport, storage and handling. The substitution of usual nitrocellulose-based gun propellants with these new materials allows maintaining interior ballistics performances while increasing the safety. In this paper, the pyrolysis, ignition and combustion of such propellants are investigated in order to study conditions leading to a safe and reproducible ignition. Low-vulnerability propellants studied are made of different ratios of hexogen (RDX) and nitrocellulose (NC). Three compositions are studied by varying weight percentages of RDX and NC: 95-5, 90-10 and 85-15 for respective weight percentages of RDX-NC. Pyrolysis of these propellants is studied with two different experimental setups: a flash pyrolysis device linked to a gas chromatograph coupled to a mass spectrometer (Py-GC-MS) and a closed-volume reactor coupled to a mass spectrometer. Different molecules, like NO2, CO, CH3COCH3 or CH2NCH2NCH2, are obtained during the decomposition of these propellants. Laser ignition of these propellants is studied in a cylindrical closed-volume reactor using a laser diode. Several combustion characteristics, such as ignition delays, maximal overpressures and combustion rates are given for the three propellants using the pressure signals. Moreover, ignition energies are also investigated. Obtained results are compared to the few available literature data. A particular behavior is noticed for the 90-10 propellant. The experimental data collected should serve in the future to have a better understanding of the chemical reactions driving the combustion process of these low-vulnerability propellants."	"Design and properties of N,N'-linked bis-1,2,4-triazoles compounds as promising energetic materials. N,N'-linked bis-1,2,4-trizaoles compounds substituted with different groups such as -NH2, -NO2, -NHNO2, -OH and -CH(NO2)2 were designed and studied by density functional theory (DFT) at B3LYP/6-311+G(2df, 2p) level. The calculated results of heats of detonation, detonation velocities, detonation pressures, bond dissociation energy and impact sensitivity (h50) indicated that -NO2, -NHNO2 and -CH(NO2)2 groups play an important role in elevating the detonation performances of designed compounds, and -NO2 group play an important role in elevating the thermal stability of designed compounds, and the designed compounds with -NO2 and -NHNO2 groups were less sensitivity than that of -CH(NO2)2 group. The calculated detonation performances, thermal stability and impact sensitivity of designed compounds were compared with those of some classical explosives such as 1,3,5-trinitro-1,3,5-triazinane (RDX) and 1,3,5,7-tetranitro-1,3,5,7-tetrazocane (HMX). The computed results show that 3,5,3'-trinitro-4,4'-bis-1,2,4-triazoles (B3) possess higher detonation performances and thermal stability than that of RDX, but more sensitivity than that of RDX; 3,5,3',5'-tetradinitromethyl-4,4'-bis-1,2,4-triazoles (E4) possess higher detonation performances than that of RDX, but lower thermal stability and more sensitivity than that of RDX; 3,5,3',5'-tetranitro-4,4'-bis-1,2,4-triazoles (B4) possess higher detonation performances and thermal stability than that of HMX, but more sensitivity than that of HMX; 3,5,3',5'-tetranitramine-4,4'-bis-1,2,4-triazoles (C4) possess higher detonation performances than that of HMX, and similar sensitivity to HMX, but lower thermal stability than that of and HMX."	"NTO Sensing by Fluorescence Quenching of a Pyoverdine Siderophore-A Mechanistic Approach. In this study, a siderophore, pyoverdine (PVD), has been isolated from Pseudomonas sp. and used to develop a fluorescence quenching-based sensor for efficient detection of nitrotriazolone (NTO) in aqueous media, in contrast to other explosives such as research department explosive (RDX), picric acid, and trinitrotoulene (TNT). The siderophore PVD exhibited enhanced fluorescence quenching above 50% at 470 nm for a minimal concentration (38 nM) of NTO. The limit of detection estimated from interpolating the graph of fluorescence intensity (at 470 nm) versus NTO concentration is found to be 12 nM corresponding to 18% quenching. The time delay fluorescence spectroscopy of the PVD-NTO solution showed a negligible change of 0.09 ns between the minimum and maximum NTO concentrations. The in silico absorption at the emission peak of static fluorescence remains invariant upon the addition of NTO. The computational studies revealed the formation of inter- and intramolecular hydrogen-bonding interactions between the energetically stable complexes of PVD and NTO. Although the analysis of Stern-Volmer plots and computational studies imply that the quenching mechanism is a combination of both dynamic and static quenching, the latter is dominant over the earlier. The static quenching is attributed to ground-state complex formation, as supported by the computational analysis."	"Polydopamine-based molecularly imprinted thin films for electro-chemical sensing of nitro-explosives in aqueous solutions. A sensitive electrochemical sensor was developed for the detection of nitro-explosives in aqueous solutions based on thin molecularly imprinted polydopamine films. Dopamine was identified in silico, based on DFT (density functional theory) calculations with the ωB97X-D/6-31G* basis set, as the best functional monomer and electropolymerized via cyclic voltammetry (CV) in the presence of carboxylic acid-based structural analogues ('dummy' templates) for two model nitro-explosives: TNT (2,4,6-trinitrotoluene) and RDX (Research Department eXplosive, 1,3,5-trinitroperhydro-1,3,5-triazine). This approach afforded a homogenous coverage of gold electrodes with imprinted films of tunable thickness. The electropolymerized molecularly imprinted polydopamine films allowed for a 10<sup>5</sup>-fold sensitivity improvement over a bare gold electrode based on tracking the redox peaks of the targets by CV. This improved sensitivity is ascribed to the ability of the MIP to concentrate its target in proximity to the transduction element. The MIP films showed reproducible binding in phosphate buffer (10 mM, pH 7.4), with a dynamic range from 0.1 nM to 10 nM for both TNT and RDX and an increased selectivity over closely related structural analogues."	"Adsorption behaviour of 1,3,5-trinitroperhydro-1,3,5-triazine, 2,4-dinitroanisole and 3-nitro-1,2,4-triazol-5-one on commercial activated carbons. Insensitive high explosives are increasingly being used to replace more sensitive formulations, however large quantities of environmentally hazardous wastewater are generated from loading, assembling and packing processes. Currently, there is limited literature regarding the treatment of wastewater contaminated with these hazardous insensitive high explosive materials such as 1,3,5-trinitroperhydro- 1,3,5-triazine (RDX), 2,4-dinitoranisole (DNAN) and 3-nitro-1,2,4-triazol-5-one (NTO). The preferred method of explosive wastewater treatment is adsorption by activated carbon, usually through treatment columns or fluidised beds that are simple to operate and cost effective. The aim of this research was to assess whether commercially available activated carbons would be suitable and economically viable to treat explosive wastewater containing RDX, DNAN and NTO. Bottle point tests were used to determine adsorption capacity and adsorption kinetics for the individual insensitive high explosives with three different activated carbons. Equilibrium data were fitted to the Langmuir, Freundlich and Temkin isotherms to determine the mechanisms of adsorption. Six hour bottle point tests for a mixture of the three insensitive high explosive constituents were used to consider possible preferential adsorption. As expected, RDX and DNAN were adsorbed at concentrations up to 40 mg.L-1 and 150 mg.L-1 respectively by the activated carbons tested, demonstrating the viability of treatment by adsorption. However, at the high concentrations of NTO expected in wastewater (1400 mg.L-1) activated carbons were rapidly saturated, suggesting that treatment of NTO contaminated wastewater would require prohibitively large quantities of activated carbon compared to RDX and DNAN."	"Acute C4 Ingestion and Toxicity: Presentation and Management. Composition C4 is a plastic explosive substance used in military combat units for demolition. The active component of composition C4 is hexahydro-1,3,5-trinitro-1,3,5-triazine, also known as RDX (Royal Demolition Explosive). There are limited reports of the effects of ingested C4. We sought to provide a broad overview of cyclonite/RDX exposure in humans to give a general understanding of both the clinical effects of exposure as well as management considerations. The authors searched MEDLINE and Google Scholar for articles using the keywords for this literature review, including case reports, case series, animal studies, clinical guidelines, and reviews. There are few reports and studies of C4 ingestion. In these studies, the most common effects are serious central nervous system (CNS) effects followed by renal and gastrointestinal symptoms. Critical actions involve airway control, seizure control, and adequate fluid hydration. The toxidrome of this ingestion is typically transient and management is primarily supportive."	"Draft Genome Sequence of Gordonia sp. Strain YY1, Isolated from an Explosive-Contaminated Environment. We report the whole-genome sequence of Gordonia sp. strain YY1, which was isolated from the surface soil in an explosive-contaminated site in Israel and cultivated with hexahydro-1,3,5-trinitro-1,3,5-triazine, i.e., royal demolition explosive (RDX), as a nitrogen source. This genome sequence will improve our understanding of the genes for RDX degradation. In addition, this research will reveal metabolic pathways in order to develop new bioremediation methods for polluted soil and groundwater."	"Comparative Study of the Decomposition Mechanism and Kinetics of Biimidazole-Based Energetic Explosives. It is well known that imidazoles, possessing two or more nitro substituents, are potential candidates for highly energetic explosives with detonation parameters comparable to those of 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX) and 1,3,5,7-tetranitro-1,3,5,7-tetraazacyclooctane. 4,4',5,5'-Tetranitro-2,2'-bi-imidazole (TNBI) is a typical imidazole explosive with energy equivalent to that of RDX but suffers from low sensitivity (impact sensitivity 7 J). 1,1'-Diamino-4,4',5,5'-tetranitro-2,2'-biimidazole (DATNBI), a derivative of TNBI, possesses two -NH2 groups and has a higher detonation velocity (9063 m s<sup>-1</sup>) and lower impact sensitivity of 15 J, which indicates great potential for future applications. Examination of the thermal decomposition mechanism and kinetics of TNBI and DATNBI gives a more comprehensive view of the influence that the -NH2 group has on the sensitivity and storage safety of the energetic explosive-based TNBI molecular skeleton. Herein, the thermal decomposition mechanism is studied, showing that detachment of -NH2 groups from DATNBI generates 1-diamino-4,4',5,5'-tetranitro-2,2'-biimidazole (ATNBI) and TNBI and induces self-decomposition. Although the decomposition peak temperature of DATNBI is significantly lower than that of TNBI at the same heating rate; its self-accelerating decomposition temperature (50 kg) is only 4 K lower. Therefore, the -NH2 group displays good ability of reducing sensitivity but has no influence on storage safety of DATNBI."	"Tenapanor for constipation-predominant irritable bowel syndrome. Irritable bowel syndrome (IBS) is among the most common gastrointestinal disorders encountered in primary and secondary care and is associated with impaired quality of life, increased healthcare utilization, and significant costs to patients and society. There are three primary phenotypes of IBS, categorized according to stool pattern: IBS with diarrhea (IBS-D), IBS with constipation (IBS-C) and IBS with a mixed bowel pattern (IBS-M). The treatment approach to all forms of IBS is typically hierarchal, with initial therapies consisting of dietary and lifestyle modifications. When these interventions are impractical or ineffective, pharmacotherapy with over-the-counter and prescription therapies is often employed. Tenapanor is a locally acting, minimally absorbed, selective small-molecule inhibitor of the intestinal sodium/hydrogen exchanger 3 (NHE3) that was approved in September 2019 by the U.S. Food and Drug Administration (FDA) for IBS-C. This agent works by increasing the sodium level in the intestinal lumen and promoting the efflux of fluid into the gut lumen to maintain osmotic balance in addition to having an antinociceptive effect. Tenapanor has been shown to improve bowel movement frequency/form and abdominal pain in patients with IBS-C. This article will elaborate on the clinical development program for tenapanor for this indication."	"Ecosystem Capacity for Microbial Biodegradation of Munitions Compounds and Phenanthrene in Three Coastal Waterways in North Carolina, United States. Munitions compounds (i.e., 2,4,6-trinitrotoluene (TNT), octahy-dro-1,3,5,7-tetranitro-1,3,5,7-tetrazocin (HMX), and hexadydro-1,3,5-trinitro-1,3,5-triazin (RDX), also called energetics) were originally believed to be recalcitrant to microbial biodegradation based on historical groundwater chemical attenuation data and laboratory culture work. More recently, it has been established that natural bacterial assemblages in coastal waters and sediment can rapidly metabolize these organic nitrogen sources and even incorporate their carbon and nitrogen into bacterial biomass. Here, we report on the capacity of natural microbial assemblages in three coastal North Carolina (United States) estuaries to metabolize energetics and phenanthrene (PHE), a proxy for terrestrial aromatic compounds. Microbial assemblages generally had the highest ecosystem capacity (mass of the compound mineralized per average estuarine residence time) for HMX (21-5463 kg) &gt; RDX (1.4-5821 kg) ≫ PHE (0.29-660 kg) &gt; TNT (0.25-451 kg). Increasing antecedent precipitation tended to decrease the ecosystem capacity to mineralize TNT in the Newport River Estuary, and PHE and TNT mineralization were often highest with increasing salinity. There was some evidence from the New River Estuary that increased N-demand (due to a phytoplankton bloom) is associated with increased energetic mineralization rates. Using this type of analysis to determine the ecosystem capacity to metabolize energetics can explain why these compounds are rarely detected in seawater and marine sediment, despite the known presence of unexploded ordnance or recent use in military training exercises. Overall, measuring the ecosystem capacity may help predict the effects of climate change (warming and altered precipitation patterns) and other perturbations on exotic compound fate and transport within ecosystems and provide critical information for managers and decision-makers to develop management strategies based on these changes."	"Enhancing hexahydro-1, 3, 5-trinitro-1, 3, 5-triazine (RDX) remediation through water-dispersible Microbacterium esteraromaticum granules. In the current manuscript, we explored the remediation potential of Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) by Gram-positive Microbacterium esteraromaticum 12849. The strain detoxified 70.9 and 63.93% RDX in minimal nutrient medium and soil, respectively. Subsequently, the strain 12849 was formulated in form of water-dispersible granules (WDG) using talcum powder and alginic acid as inert ingredients. During the microcosm study, WDG exhibited 8.98% enhanced RDX degradation in contrast to the unformulated Microbacterium esteraromaticum. The LC-MS analysis revealed the presence of two intermediates, namely N-methyl-N, N'-dinitromethanediamine, and methylenedintramine, during the RDX degradation by strain 12849 in soil. Interestingly, no significant difference was observed in the rate of RDX degradation by strain 12849 due to the formulation process. The first-order kinetics was seen in RDX degradation with a degradation coefficient of 0.04 and 0.0339 day<sup>-1</sup> by formulated and unformulated strain, respectively. The current investigation implies M. esteraromaticum as a potential microbe for RDX degradation and opens up the possibility of exploiting it in its effective WDG form for explosive contaminated sites."	"High-substitute nitrochitosan used as energetic materials: Preparation and detonation properties. In order to develop new high-energy materials utilizing natural products, a high-substitute nitrochitosan was prepared with different methods. Prepared processes and detonation properties of the nitrochitosan samples were systematically studied. The nitration substitute degree, nitrogen content, exothermic decomposition enthalpy, heat of combustion, impact sensitivity, detonation velocity and detonation pressure of the prepared high-substitute nitrochitosan were 2.01, 16.67 %, -2226 J g<sup>-1</sup>, -7831.6 ± 116.3 J g<sup>-1</sup>, &gt;14.2 J, 7.81 km s<sup>-1</sup>, and 24.03 GPa, respectively. Compared with nitrocellulose (NC), the nitrogen content, impact sensitivity and detonation properties of the prepared nitrochitosan were significantly improved. Nitrochitosan and RDX can form a uniform composite in acetone. With the increase of RDX content, the impact sensitivity of composite increased, but the composite was more stable and not easy to decompose. High-substitute nitrochitosan presents a potential application in solid propellants."	"CPMD investigation of α-RDX and ε-CL-20: the transition of deflagration to detonation depending on the self-produced radicals. 1,3,5-Trinitroperhydro-1,3,5-triazine (RDX) and 2,4,6,8,10,12-hexanitro-2,4,6,8,10,12-hexaazaisowurtzitane (CL-20) are the classic high energy nitramine compounds. Herein, we performed simulations of the overall decomposition pathways of condensed α-RDX and ε-CL-20 by applying the Car-Parrinello molecular dynamics (CPMD) method. Both of them appear to have similar distinct initial decomposition pathways, which are the bond cleavages of N-NO2 bonds. Interestingly, we find that the continuous explosion is nonspontaneous without the participation of self-produced hydrogen radicals of RDX or oxygen radicals of CL-20. Increased radicals are produced gradually with increasing temperature, which activates further entropy-increased steps, resulting in the uncontrollable transition of deflagration to detonation with the formation of NOx, COx and HCN. Herein, we provide a detailed and systematic description of the decomposition for unit-cell α-RDX and ε-CL-20 under increased temperature, which can be summarized as C3H6O6N6 (RDX) → NO + HNO + H2 + CO2 + HCHO + HNCN + N2O and C6H6O12N12 (CL-20) → NO + HONO + 5HCN + CO2 + N2O + 3NO2."	"A Sporolactobacillus-, Clostridium-, and Paenibacillus- Dominant Microbial Consortium Improved Anaerobic RDX Detoxification by Starch Addition. In the present study, an anaerobic microbial consortium for the degradation of hexahydro-1,3,5- trinitro-1,3,5-triazine (RDX) was selectively enriched with the co-addition of RDX and starch under nitrogen-deficient conditions. Microbial growth and anaerobic RDX biodegradation were effectively enhanced by the co-addition of RDX and starch, which resulted in increased RDX biotransformation to nitroso derivatives at a greater specific degradation rate than those for previously reported anaerobic RDX-degrading bacteria (isolates). The accumulation of the most toxic RDX degradation intermediate (MNX [hexahydro-1-nitroso-3,5-dinitro-1,3,5-triazine]) was significantly reduced by starch addition, suggesting improved RDX detoxification by the co-addition of RDX and starch. The subsequent MiSeq sequencing that targeted the bacterial 16S rRNA gene revealed that the Sporolactobacillus, Clostridium, and Paenibacillus populations were involved in the enhanced anaerobic RDX degradation. These results suggest that these three bacterial populations are important for anaerobic RDX degradation and detoxification. The findings from this work imply that the Sporolactobacillus, Clostridium, and Paenibacillus dominant microbial consortium may be valuable for the development of bioremediation resources for RDX-contaminated environments."	"Broad Range FTIR Spectroscopy and Multivariate Statistics for High Energetic Materials Discrimination. The objective of this work was to measure infrared spectra of high explosive materials (HE) in wide spectral range in order to acquire information for their complete characterization and find out the regions that are the most discriminatory for each material. Four HEs were measured by means of Fourier Transform Infrared (FTIR) spectroscopy in a very broad range (from near- via mid- to far-IR). Obtained spectra were subsequently evaluated using multivariate statistical methods for dimension reduction and results grouping. Clustering was assessed in terms of compactness and stability in order to distinguish which region or regions are most suitable for the identification based on spectral signature. Based on outcomes of visualization method (silhouette plot) used to compare results of implemented chemometric methods (HCA, PAM, and PCA) done on FTIR spectra collected for four high explosive materials (PETN, C-4, RDX, and TNT) within all regions, it seems that the mid-IR region is the most informative for the distinction among analyzed HE materials based on substance spectral signatures. However, it is worth noticing that also the near-IR region can be used for good differentiation."	"The Elusive Ketene (H2 CCO) Channel in the Infrared Multiphoton Dissociation of Solid 1,3,5-Trinitro-1,3,5-Triazinane (RDX). Understanding of the fundamental mechanisms involved in the decomposition of 1,3,5-trinitro-1,3,5-triazinane (RDX) still represents a major challenge for the energetic materials and physical (organic) chemistry communities mainly because multiple competing dissociation channels are likely involved and previous detection methods of the products are not isomer selective. In this study we exploited a microsecond pulsed infrared laser to decompose thin RDX films at 5 K under mild conditions to limit the fragmentation channels. The subliming decomposition products during the temperature programed desorption phase are detected using isomer selective single photoionization time-of-flight mass spectrometry (PI-ReTOF-MS). This technique enables us to assign a product signal at m/z=42 to ketene (H2 CCO), but not to diazomethane (H2 CNN; 42 amu) as speculated previously. Electronic structure calculations support our experimental observations and unravel the decomposition mechanisms of RDX leading eventually to the elusive ketene (H2 CCO) via an exotic, four-membered ring intermediate. This study highlights the necessity to exploit isomer-selective detection schemes to probe the true decomposition products of nitramine-based energetic materials."	"Application of a multiple lines of evidence approach to document natural attenuation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in groundwater. This study utilized innovative analyses to develop multiple lines of evidence for natural attenuation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in groundwater at the U.S. Department of Energy's Pantex Plant. RDX, as well as the degradation product 4-nitro-2,4-diazabutanal (NDAB; produced by aerobic biodegradation or alkaline hydrolysis) were detected in a large portion of the plume, with lower concentrations of the nitroso-containing metabolites produced during anaerobic biodegradation. 16S metagenomic sequencing detected the presence of bacteria known to aerobically degrade RDX (e.g., Gordonia, Rhodococcus) and NDAB (Methylobacterium), as well as the known anoxic RDX degrader Pseudomonas fluorescens I-C. Proteomic analysis detected both the aerobic RDX degradative enzyme XplA, and the anoxic RDX degradative enzyme XenB. Groundwater enrichment cultures supplied with low concentrations of labile carbon confirmed the potential of the extant groundwater community to aerobically degrade RDX and produce NDAB. Compound-specific isotope analysis (CSIA) of RDX collected at the site showed fractionation of nitrogen isotopes with δ<sup>15</sup>N values ranging from approximately -5‰ to +9‰, providing additional evidence of RDX degradation. Taken together, these results provide evidence of in situ RDX degradation in the Pantex Plant groundwater. Furthermore, they demonstrate the benefit of multiple lines of evidence in supporting natural attenuation assessments, especially with the application of innovative isotopic and -omic technologies."	"Surface modified colloidal silica nanoparticles: Novel aspect for complete identification of explosive materials. Terrorism by means of explosives has become a crucial threat. Nanoparticles with distinctive properties can offer novel aspects for instant detection of explosive materials. Common explosives are organic compounds that contain nitro group (NO2) along with carbon and hydrogen elements. This study demonstrates complete identification of nitramine explosives (RDX &amp; HMX) using colloidal silica nanoparticles. Sustainable fabrication of colloidal silica was conducted via hydrothermal processing technique. Explosive identification involves a digestion of the tested material using strong acid. The digestion process results in the development of nitro group and corresponding formaldehyde segment. The identification of the nitro group was performed using colloidal silica nanoparticles functionalized with secondary amine to develop a characteristic dark blue colour. Simultaneous identification of formaldehyde segment was performed using colloidal silica functionalized with aromatic phenol to develop a red colour. This robust explosive detection technology can find wide applications on site where instant identification to assess potential threat is a crucial demand. Thanks to hydrothermal processing, sustainable fabrication and surface modification of colloidal silica particles can be obtained."	"Instantaneous trace detection of nitro-explosives and mixtures with nanotextured silicon decorated with Ag-Au alloy nanoparticles using the SERS technique. The development of recyclable surface enhanced Raman scattering (SERS) based sensors has been in huge demand for trace level explosives detection. A simple, hybrid Silicon (Si) nanotextured target-based SERS platform is fabricated through patterning micro square arrays (MSA) on Si using femtosecond (fs) laser ablation technique at different fluences. Using the hybrid target Si MSA substrate loaded/decorated with Ag-Au alloy NPs (obtained using femtosecond ablation in liquids) we demonstrate the trace level detection of organic nitro-explosives [picric acid (PA), 2,4-dinitrotoluene (DNT), and 1, 3, 5-trinitroperhydro-1, 3, 5-triazine (RDX)] and their mixtures. The microstructures/nanostructures of MSA fabricated at an input fluence of 9.55 J/cm<sup>2</sup>, and decorated with Ag-Au alloy NPs, exhibited exceptional SERS enhancement factors (EFs) up to ∼10<sup>10</sup> for MB, ∼10<sup>6</sup> for PA, and ∼10<sup>4</sup> for RDX with the detection limits obtained being ∼5 pM, ∼36 nM, and ∼400 nM for MB, PA and RDX respectively. Furthermore, we demonstrate these SERS substrates possess good reproducibility (RSD values &lt; 15%) and a superior performance compared to a commercial Ag substrate (SERSitive, Poland). Three binary mixtures, i.e. MB-PA, MB-DNT, PA-DNT at different concentrations, were also investigated using the same SERS substrate to test the efficacy. Further, the SERS spectra of dyes, explosives, and complex mixtures were utilized for discrimination/classification using principal component analysis."	"The Effect of Glycidyl Azide Polymer Grafted Tetrafunctional Isocyanate on Polytriazole Polyethylene Oxide-Tetrahydrofuran Elastomer and its Propellant Properties. A new energetic curing reagent, Glycidyl azide polymer grafted tetrafunctional isocyanate (N100-g-GAP) was synthesized and characterized by FT-IR and GPC approaches. Polytriazole polyethylene oxide-tetrahydrofuran (PTPET) elastomer was prepared by N100-g-GAP and alkynyl terminated polyethylene oxide-tetrahydrofuran (ATPET). The resulting PTPET elastomer was fully characterized by TGA, DMA, FTIR and mechanical test. The above analysis indicates that PTPET elastomers using N100-g-GAP as curing reagent have the potential for use in propellants. The overall formulation test of the composite propellants shows that this curing system can effectively enhance mechanical strength and bring a significant improvement in the interface interaction between the RDX &amp; AP particles and binder matrix."	"Pressure-Thresholded Response in Cylindrically Shocked Cyclotrimethylene Trinitramine (RDX). We demonstrate a strongly thresholded response in cyclotrimethylene trinitramine (RDX) when it is cylindrically shocked using a novel waveguide geometry. Using ultrafast single-shot multi-frame imaging, we demonstrate that &lt;100 μm diameter single crystals of RDX embedded in a polymer host deform along preferential planes for &gt;100 ns after the shock first arrives in the crystal. We use in situ imaging and time-resolved photoemission to demonstrate that short-lived chemistry occurs with complex deformation pathways. Using scanning electron microscopy and ultra-small-angle X-ray scattering, we demonstrate that the shock-induced dynamics leave behind porous crystals, with pore shapes and sizes that change significantly with shock pressure. A threshold pressure of ∼12 GPa at the center of convergence separated the single-mode planar crystal deformations from the chemistry-coupled multi-plane dynamics at higher pressures. Our observations indicate preferential directions for deformation in our cylindrically shocked system, despite the applied stress along many different crystallographic planes."	"Nitrogen-Rich Tetrazolo[1,5-b]pyridazine: Promising Building Block for Advanced Energetic Materials. Two metal-free explosives, tetrazolo[1,5-b]pyridazine-containing molecules [6-azido-8-nitrotetrazolo[1,5-b]pyridazine-7-amine (3at) and 8-nitrotetrazolo[1,5-b]pyridazine-6,7-diamine (6)], were obtained via straightforward two-step synthetic routes from commercially available reagents. Compound 3at displays an excellent detonation performance (Dv = 8746 m s<sup>-1</sup> and P = 31.5 GPa) that is superior to commercial primary explosives such as lead azide and diazodinitrophenol (DDNP). Compound 6 has superior thermal stability, remarkable insensitivity, and good detonation performance, strongly suggesting it as an acceptable secondary explosive. The initiating ability of compound 3at has been tested by detonating 500 mg of RDX with a surprisingly low minimum primary charge of 40 mg. The extraordinary initiating power surpasses conventional primary explosives, such as commercial DDNP (70 mg) and reported 6-nitro-7-azido-pyrazol[3,4-d][1,2,3]triazine-2-oxide (ICM-103) (60 mg). The outstanding detonation power of 3at contributes to its future prospects as a promising green primary explosive. In addition, the environmentally benign methodology for the synthesis of 3at effectively shortens the time from laboratory-scale research to practical applications."	"Related Network and Differential Expression Analyses Identify Nuclear Genes and Pathways in the Hippocampus of Alzheimer Disease. BACKGROUND Alzheimer disease (AD) is a typical progressive and destructive neurodegenerative disease that has been studied extensively. However, genetic features and molecular mechanisms underlying AD remain unclear. Here we used bioinformatics to investigate the candidate nuclear genes involved in the molecular mechanisms of AD. MATERIAL AND METHODS First, we used Gene Expression Omnibus (GEO) database to obtain the expression profiles of the mRNAs from hippocampus microarray and identify differentially expressed genes (DEGs) the plier algorithm. Second, functional annotation and visualization of the DEGs were conducted by the Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis. Finally, BioGRID, IntAct, STRING, and Cytoscape were utilized to construct a protein-protein interaction (PPI) network. Hub genes were analytically obtained from the PPI network and the microRNA (miRNA)-target network. RESULTS Two hippocampus microarrays (GSE5281 and GSE48350) were obtained from the GEO database, comprising 161 and 253 cases separately. Among these, 118 upregulated genes and 694 downregulated genes were identified. The upregulated DEGs were mainly involved in positive regulation of transcription from RNA polymerase II promoter, positive regulation of cartilage development, and response to wounding. The downregulated DEGs were enriched in chemical synaptic transmission, neurotransmitter secretion, and learning. By combining the results of PPI and miRNA-target network, 8 genes and 2 hub miRNAs were identified, including YWHAZ, DLG4, AGAP2, EGFR, TGFBR3, PSD3, RDX, BRWD1, and hsa-miR-106b-5p and hsa-miR-93-5p. These target genes are highly enriched in various key pathways, such as amyloid-beta formation, regulation of cardiocyte differentiation, and actin cytoskeleton reorganization. CONCLUSIONS In this study, YWHAZ, DLG4, AGAP2, EGFR, TGFBR3, PSD3, RDX, and BRWD1 were identified as candidate genes for future molecular studies in AD, which is expected to improve our understanding of its cause and potential molecular mechanisms. Nuclear genes, DEGs, and related networks identified by integrated bioinformatics analysis may serve as diagnostic and therapeutic targets for AD."	"Regulation of breast cancer resistance protein and P-glycoprotein by ezrin, radixin and moesin in lung, intestinal and renal cancer cell lines. Ezrin (Ezr), radixin (Rdx) and moesin (Msn) (ERM) proteins anchor other proteins to the cell membrane, serving to regulate their localization and function. Here, we examined whether ERM proteins functionally regulate breast cancer resistance protein (BCRP) and P-glycoprotein in cell lines derived from lung, intestinal and renal cancers. ERM proteins were each silenced with appropriate siRNA. BCRP and P-gp functions were evaluated by means of efflux and uptake assays using 7-ethyl-10-hydroxycamptothecin (SN-38) and rhodamine123 (Rho123) as specific substrates, respectively, in non-small cell lung cancer HCC827 cells, intestinal cancer Caco-2 cells and renal cancer Caki-1 cells. In HCC827 cells, the efflux rates of SN-38 and Rho123 were significantly decreased by knockdown of Ezr or Msn, but not Rdx. However, BCRP function was unaffected by Ezr or Rdx knockdown in Caco-2 cells, which do not express Msn. In Caki-1 cells, Rdx knockdown increased the intracellular SN-38 concentration, while knockdown of Ezr or Msn had no effect. Our findings indicate that regulation of BCRP and P-gp functions by ERM proteins is organ-specific. Thus, if the appropriate ERM protein(s) are functionally suppressed, accumulation of BCRP or P-gp substrates in lung, intestine or kidney cancer tissue might be specifically increased."	"New pyrazole energetic materials and their energetic salts: combining the dinitromethyl group with nitropyrazole. In this work, a series of pyrazole-derived energetic compounds were successfully synthesized. These energetic compounds were fully characterized by NMR spectroscopy, IR spectroscopy, and elemental analysis. The structures of compounds 5, 6, 7 and 7a were determined by single crystal X-ray diffraction. The physicochemical and energetic properties of all synthesized energetic compounds, including density, thermal stability and energetic performance, were investigated. The structure-property relationship was illustrated using two-dimensional fingerprint plots based on Hirshfeld surfaces, NCI plots and ESP of 7 and 7a. Among these energetic compounds, the hydroxylammonium salt 7b exhibited satisfactory calculated detonation performance (8700 m s-1), which was comparable to the commonly used highly explosive RDX (8748 m s-1). The potassium salt 5 was tested for its detonation ability by detonating RDX. The result indicates that compound 5 could be used as a potential green primary explosive."	"Aromatic Nucleophilic Substitution of FOX-7: Synthesis and Properties of 1-Amino-1-Picrylamino-2,2-Dinitroethylene (APDE) and Its Potassium Salt [K(APDE)]. Two energetic compounds, 1-amino-1-picrylamino-2,2-dinitroethylene (APDE) and its potassium salt [K(APDE)] were synthesized through an aromatic nucleophilic substitution reaction between FOX-7 and picryl chloride. APDE and K(APDE) were characterized by elemental analysis, IR, NMR spectroscopy, and X-ray diffraction. APDE has a 3D wavy layered stacking structure similar to FOX-7. K(APDE) (peak temperature (Tip )=185.6 °C and impact sensitivity (IS)=19.6 J) presents better stability than APDE (tap =133.3 °C and IS=15.7 J). The reasons why the stability of APDE is lower than that of FOX-7 and picryl chloride are analyzed. The detonation velocity (D) and detonation pressure (P) of APDE (8.36 km s<sup>-1</sup> and 31.3 Gpa) are close to those of FOX-7 and RDX. The thermal decomposition of K(APDE) is very violent, and its detonation performance (D=9.14 km s<sup>-1</sup> and P=38.6 Gpa) is comparable to that of HMX, indicating that K(APDE) has good potential to be a high explosive."	"1,2,4-Oxadiazole-Bridged Polynitropyrazole Energetic Materials with Enhanced Thermal Stability and Low Sensitivity. A family of mono or di(1,2,4-oxadiazole)-bridged polynitropyrazole derivatives with C-nitro/N-nitro functionalities is reported. All compounds were fully characterized by IR, NMR (<sup>1</sup> H, <sup>13</sup> C), elemental analysis and differential scanning calorimetry (DSC). The solid-state structure features were further investigated with X-ray diffraction. Of these, compounds 3,5-bis(3,4-dinitro-1H-pyrazol-5-yl)-1,2,4-oxadiazole (3 a) and 5,5'-bis(3,4-dinitro-1H-pyrazol-5-yl)-3,3'-bi(1,2,4-oxadiazole) (3 b) possess high thermal stability (3 a: Tdec =274 °C; 3 b: Tdec =272 °C), sensitivity (IS &gt;30 J, FS &gt;360 N) and comparable detonation properties (3 a: Dv =8741 m s<sup>-1</sup> , P=34.0 GPa; 3 b: Dv =8685 m s<sup>-1</sup> , P=33.4 Gpa) to RDX. In addition, 3,5-bis(4-nitro-1H-pyrazol-3-yl)-1,2,4-oxadiazole (4 a) and 5,5'-bis(4-nitro-1H-pyrazol-3-yl)-3,3'-bi(1,2,4-oxadiazole) (4 b) have high decomposition temperature (4 a: Tdec =314 °C; 4 b: Tdec =317 °C), low sensitivity (IS &gt;40 J; FS&gt;360 N) and superior detonation performances (4 a: Dv =8027 m s<sup>-1</sup> , P=26.4 GPa; 4 b: Dv =7991 m s<sup>-1</sup> , P=25.2 Gpa) than conventional heat-resistant explosive hexanitrostilbene (HNS: Tdec =318 °C; IS=5 J; FS=240 N; Dv =7612 m s<sup>-1</sup> , P=24.3 GPa), thus suggesting their potential application as heat-resistant explosives."	"Design of new energetic materials based on derivatives of 1,3,5-trinitrobenzenes: A theoretical and computational prediction of detonation properties, blast impulse and combustion parameters. This paper reports the design of some of the new ionic based high energy materials derived from the anion of picric acid (2,4,6-trinitrobenzene-1-ol), styphnic acid (2,4,6-trinitrobenzene-1,3-diol) and 2,4,6-trinitrophloroglucinol (2,4,6-trinitrobenzene-1,3,5-triol) and cation derived from the key synthon molecules such as 5-trifluoromethyl-1H-tetrazole, 5-dinitromethyl-1H-tetrazole and 5-azido-1H-tetrazole-1-carbonitrile. The detonation properties of these newly proposed compounds are predicted by using software such as EXPLO-5, EXTEC and LOTUSES and Keshvarz method. Moreover, other explosive parameters such as density, gurney velocity, and oxygen balance and decomposition products of the newly designed molecules have also been predicted and reported for the first time in this manuscript. The predicted detonation parameters of some of the newly designed compounds exhibit higher velocity of detonation (VOD) and detonation pressure in comparison to other well-known benchmark explosives such as 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitro-1,3,5-triazinane (RDX). Further, the peak over pressure (POP) and the blast impulse parameters of the newly designed compounds are predicted by using Shock physics explicit eulerian dynamics (SPEED) software, and the same is reported for the first time in this work. The work also reports the theoretical prediction of impact and electrostatic spark sensitivity parameters for the newly designed molecules. The ballistic performance parameters of the newly designed ionic energetic materials are also predicted by incorporating them into model composite rocket propellant formulations. The predicted ballistic parameters indicate that the proposed materials may find an application in the propellant formulation as an energetic additive."	"Spatially-distinct redox conditions and degradation rates following field-scale bioaugmentation for RDX-contaminated groundwater remediation. In situ bioaugmentation for cleanup of an hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX)-contaminated groundwater plume was recently demonstrated. Results of a forced-gradient, field-scale cell transport test with Gordonia sp. KTR9 and Pseudomonas fluorescens strain I-C cells (henceforth &quot;KTR9&quot; and &quot;Strain I-C&quot;) showed these strains were transported 13 m downgradient over 1 month. Abundances of xplA and xenB genes, respective indicators of KTR9 and Strain I-C, approached injection well cell densities at 6 m downgradient, whereas gene abundances (and conservative tracer) had begun to increase at 13 m downgradient at test conclusion. In situ push-pull tests were subsequently completed to measure RDX degradation rates in the bioaugmented wells under ambient gradient conditions. Time-series monitoring of RDX, RDX end-products, conservative tracer, xplA and xenB gene copy numbers and XplA and XenB protein abundance were used to assess the efficacy of bioaugmentation and to estimate the apparent first-order RDX degradation rates during each test. A collective evaluation of redox conditions, RDX end-products, varied RDX degradation kinetics, and biomarkers indicated that Strain I-C and KTR9 rapidly degraded RDX. Results showed bioaugmentation is a viable technology for accelerating RDX cleanup in the demonstration site aquifer and may be applicable to other sites. Full-scale implementation considerations are discussed."	"The Effect of Metal Film Thickness on Ignition of Organic Explosives with a Laser Pulse. The results of numerical ignition simulation of pentaerythritol tetranitrate (PETN), cyclotrimethylene trinitramine (RDX), cyclotetramethylene tetranitramine (HMX) and 1,3,5-triamino-2,4,6-trinitrobenzene (TATB) by aluminium (Al) and molybdenum (Mo) films heated by nanosecond laser pulses in a three-layer system: glass-metal-explosive material (EM) are presented. Influence of metal film thickness on the time of EM ignition delay was considered. A non-linier dependence of time of delay of ignition of EM from thickness of a metal film is shown. The greatest critical thicknesses of Al and Mo metallic films at which ignition of EM is still possible were determined. It was established that the greater the thickness of the metal film and heat resistance of EM, the greater the heat reserve needed in EM ignition film. It was established that the ignition delay time of EM increases in the sequence of PETN, RDX, HMX and TATB."	"Ranking the Drop-Weight Impact Sensitivity of Common Explosives Using Arrhenius Chemical Rates Computed from Quantum Molecular Dynamics Simulations. Drop-weight impact tests are used routinely to characterize the handling safety of explosives. Numerous studies have sought to connect various physical and chemical properties of the energetic molecules and materials to their measured impact sensitivities. Wenograd in the early 1960s demonstrated that there is a strong dependency of the drop-heights on the critical temperatures required for explosives to undergo prompt reactions. Reactive quantum molecular dynamics simulations with the lanl31 density functional tight binding model have been used to compute the delay time before the thermal explosion of the secondary explosives erythritol tetranitrate (ETN), pentaerythritol tetranitrate (PETN), cyclotrimethylene trinitramine (RDX), cyclotetramethylene tetranitramine (HMX), trinitrotolune (TNT), and 3,3'-diamino-4,4'-azoxyfurazan (DAAF) as a function of the initial temperature and pressure. The delay time to explosion data are consistent with Arrhenius chemical kinetics, which is expected for thermally activated processes in materials and in accord with experimental measurements. The critical temperatures required for the materials to undergo prompt explosions display the same dependence on drop height as was observed by Wenograd. Hence, quantum-based reactive molecular dynamics simulations are potentially a tool for ranking the drop-weight impact sensitivity and handling safety of explosives."	"Effect of electric field on polarization and decomposition of RDX molecular crystals: a ReaxFF molecular dynamics study. The polarization and decomposition of RDX crystal in external electric fields are simulated using molecular dynamics with ReaxFF force field. The results show that the molecular conformation of RDX is transformed from AAE to AAI in the electric field of 0.45 V/Å due to the polarization. In the process of the decomposition of RDX in the electric field, the energy of the system and the exothermic energy of the reaction increase with the increasing of the electric field intensity, and the overall characteristic time of the initial reaction is shorter than that without electric field, which indicates that the external electric field can greatly accelerate the decomposition reaction of RDX."	"Analysis of samples of explosives excavated from the Baltic Sea floor. After World War II, conventional and chemical ammunition containing mainly secondary and primary explosives was dumped in the sea. Explosives have medium toxicity to aquatic organisms, earthworms and indigenous soil microorganisms. Therefore, environmental monitoring is required, especially for dumped munitions. The main aspect of this work was to analyse the samples of lumps and sediments taken from the Baltic seabed. These samples were potentially explosives. The main goal of the study was to identify the type and composition of studied materials. In order to determine the chemical composition of samples of explosives, we used as follows: GC-MS/MS, LC-HRMS and NMR. Additionally, to determine the energetic properties we performed microcalorimetric-thermogravimetric analysis. Based on the obtained results, the composition of this explosive was TNT (41%), RDX (53%), aluminium powder (5%), and degradation products (below 1%). The resulting composition indicates that the analysed material can be classified in the &quot;torpex&quot; family, widely used during World War II. Regarding the results of the microcalorimetric analysis, we can conclude that excavated fragments of explosives are in very good condition and they still can detonate after being initiated. Therefore, there is a threat that they could be used for criminal or terrorist purposes."	"Improving the Chemical Selectivity of an Electronic Nose to TNT, DNT and RDX Using Machine Learning. We used a 16-channel e-nose demonstrator based on micro-capacitive sensors with functionalized surfaces to measure the response of 30 different sensors to the vapours from 11 different substances, including the explosives 1,3,5-trinitro-1,3,5-triazinane (RDX), 1-methyl-2,4-dinitrobenzene (DNT) and 2-methyl-1,3,5-trinitrobenzene (TNT). A classification model was developed using the Random Forest machine-learning algorithm and trained the models on a set of signals, where the concentration and flow of a selected single vapour were varied independently. It is demonstrated that our classification models are successful in recognizing the signal pattern of different sets of substances. An excellent accuracy of 96% was achieved for identifying the explosives from among the other substances. These experiments clearly demonstrate that the silane monolayers used in our sensors as receptor layers are particularly well suited to selecting and recognizing TNT and similar types of explosives from among other substances."	"Synthesis and Properties of Energetic Hydrazinium 5-Nitro-3-dinitromethyl-2H-pyrazole by Unexpected Isomerization of N-Nitropyrazole. A new energetic salt, hydrazinium 5-nitro-3-dinitromethyl-2H-pyrazole, was synthesized using 1-nitro-3-trinitromethylpyrazole and hydrazine as raw materials and fully characterized by IR and NMR spectroscopy, elemental analysis, and X-ray crystallography. The isomerization of N-nitropyrazole in the reaction condition was first reported and the possible mechanism was explained by the density functional theory method. The salt has good density, high positive enthalpy of formation superior to those of the RDX and HMX, and good detonation properties comparable to those of RDX. By denitration and isomerization reactions, the salt gains a better thermal stability and lower sensitivity toward impact and friction compared with its parent compound. Based on an overall energetic evaluation, the salt has a promising future as an alternative explosive. The research also contributes to the synthesis and application of polynitro-substituted N-heterocyclic compounds as energetic materials."	"p-Pyridine BODIPY-based fluorescence probe for highly sensitive and selective detection of picric acid. A novel fluorescence probe p-PBP for PA was synthesized based on a basic N atom as the electronic donor. The probe could detect PA over TNT, CE, PETN, RDX, HMX, NB, NT, DNT, NP, DNP, and common inorganic explosive ions (K<sup>+</sup>, Ba<sup>2+</sup>, NH4<sup>+</sup>, NO3<sup>-</sup>, ClO3<sup>-</sup>, and ClO4<sup>-</sup>), and common ions (Na<sup>+</sup>, Ca<sup>2+</sup>, and Mg<sup>2+</sup>) with high selectivity. The fluorescence quenching was attributed to the photo-induced electron transfer (PET) processes from the excited state of p-PBP to the ground state PA. The detection limit of probe p-PBP for PA was as low as 13.06 nmol/L, which is far lower than the concentration stipulated by the Environmental quality standards for surface water. The response time was less than 30 s. Hence, the fluorescence probe p-PBP was successfully developed to detect the concentration level of PA in real samples, which would provide a novel quantitative analysis method of PA in forensic science."	"Human Ovarian Granulosa Cells Isolated during an IVF Procedure Exhibit Differential Expression of Genes Regulating Cell Division and Mitotic Spindle Formation. Granulosa cells (GCs) are a population of somatic cells whose role after ovulation is progesterone production. GCs were collected from patients undergoing controlled ovarian stimulation during an in vitro fertilization procedure, and they were maintained for 1, 7, 15, and 30 days of in vitro primary culture before collection for further gene expression analysis. A study of genes involved in the biological processes of interest was carried out using expression microarrays. To validate the obtained results, Reverse Transcription quantitative Polymerase Chain Reaction (RT-qPCR) was performed. The direction of changes in the expression of the selected genes was confirmed in most of the examples. Six ontological groups (&quot;cell cycle arrest&quot;, &quot;cell cycle process&quot;, &quot;mitotic spindle organization&quot;, &quot;mitotic spindle assembly checkpoint&quot;, &quot;mitotic spindle assembly&quot;, and &quot;mitotic spindle checkpoint&quot;) were analyzed in this study. The results of the microarrays obtained by us allowed us to identify two groups of genes whose expressions were the most upregulated (FAM64A, ANLN, TOP2A, CTGF, CEP55, BIRC5, PRC1, DLGAP5, GAS6, and NDRG1) and the most downregulated (EREG, PID1, INHA, RHOU, CXCL8, SEPT6, EPGN, RDX, WNT5A, and EZH2) during the culture. The cellular ultrastructure showed the presence of structures characteristic of mitotic cell division: a centrosome surrounded by a pericentric matrix, a microtubule system, and a mitotic spindle connected to chromosomes. The main goal of the study was to identify the genes involved in mitotic division and to identify the cellular ultrastructure of GCs in a long-term in vitro culture. All of the genes in these groups were subjected to downstream analysis, and their function and relation to the ovarian environment are discussed. The obtained results suggest that long-term in vitro cultivation of GCs may lead to their differentiation toward another cell type, including cells with cancer-like characteristics."	"Theoretical design of novel high energy metal complexes based on two complementary oxygen-rich mixed ligands of 4-amino-4H-1,2,4-triazole-3,5-diol and 1,1'-dinitramino-5,5'-bistetrazole. In this study, 16 new energetic metal complexes [M(DNABT)(ATDO), M=Cu, Ni] were designed using the mixed complex construct strategy, which was based on two complementary oxygen-rich high-energy ligands of 1,1'-dinitramino-5,5'-bistetrazole (DNABT) and 4-amino-4H-1,2,4-triazole-3,5-diol (ATDO), then combined with metals Cu and Ni, and further adjusted by the introduction of NO2 and NH2. The molecular and electronic structures, heat of formation (HOF), density, detonation velocity, detonation pressure, and sensitivity were investigated by the density functional theory method. The results showed that in metals, the position and amount of NO2/NH2 have great effects on the structure and property of metal complexes, and these effects coupled with each other. N-NO2 bond is the relatively weak bond, and its max length is related with the sensitivity closely. The designed metal complexes all have high HOF (673~868 kJ mol<sup>-1</sup>), high density (2.06~2.14 g cm<sup>-3</sup>), and ideal oxygen balance (- 19.2~- 6.7%), which further make them have higher detonation velocity (8.76~9.84 km s<sup>-1</sup>) and detonation pressure (37.4~46.6 GPa) than three famous high-energy compounds 1,3,5-trinitro-1,3,5-triazine (RDX); 1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX); or even 2,4,6,8,10,12-hexanitro-2,4,6,8,10,12-hexaazaisowurtzitane (CL-20). At the same time, they are less sensitive than RDX, HMX, and CL-20, making them potential candidates for high-energy density compounds."	"1,4-Benzoquinone as a Highly Efficient Dopant for Enhanced Ionization and Detection of Nitramine Explosives on a Single-Quadrupole Mass Spectrometer Fitted with a Helium-Plasma Ionization (HePI) Source. Previous investigations have evaluated the efficacy of anions such as NO3<sup>-</sup>, Cl<sup>-</sup>, Br<sup>-</sup>, CH3COO<sup>-</sup>, and CF3COO<sup>-</sup> as additives to generate or enhance mass spectrometric signals from explosives under plasma ionization conditions. The results of this study demonstrate that for detecting nitramine-class explosives, such as 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) and 1,3,5,7-tetranitro-1,3,5,7-tetrazacyclooctane (HMX), 1,4-benzoquinone (BQ) is a highly effective and efficient dopant. When used in conjunction with ambient-pressure negative-ion helium-plasma ionization (HePI), 1,4-benzoquinone readily captures an electron, forming an abundant molecular anion (m/z 108), which upon exposure to vapors of RDX and HMX generates adduct ions of m/z 330 and 404, respectively. The signal level recorded for RDX upon adduction to the radical anion of 1,4-benzoquinone under our experimental conditions was significantly higher than that realized by chloride adduction using dichloromethane (DCM) as the dopant."	"The BODIPY-Based Chemosensor for Fluorometric/Colorimetric Dual Channel Detection of RDX and PA. A fluorometric/colorimetric dual-channel chemosensor based on a hydrazine-substituted BODIPY probe has been successfully fabricated for the detection of RDX and PA. The chemosensor displays turn-on fluorescence behavior upon RDX with a detection limit of 85.8 nM, while showing a turn-off response to PA with a detection limit of 0.44 μM. Meanwhile, an obvious color difference is observed by the naked-eye after the reaction for RDX. Thus, in application, a two-to-two logic gate is constructed for potential application in explosives detection. Additionally, portable equipment is also developed for in situ determination of RDX."	"Probing the Reaction Mechanisms Involved in the Decomposition of Solid 1,3,5-Trinitro-1,3,5-triazinane by Energetic Electrons. The decomposition mechanisms of 1,3,5-trinitro-1,3,5-triazinane (RDX) have been explored over the past decades, but as of now, a complete picture on these pathways has not yet emerged, as evident from the discrepancies in proposed reaction mechanisms and the critical lack of products and intermediates observed experimentally. This study exploited a surface science machine to investigate the decomposition of solid-phase RDX by energetic electrons at a temperature of 5 K. The products formed during irradiation were monitored online and in situ via infrared and UV-vis spectroscopy, and products subliming in the temperature programmed desorption phase were probed with a reflectron time-of-flight mass spectrometer coupled with soft photoionization at 10.49 eV (ReTOF-MS-PI). Infrared spectroscopy revealed the formation of water (H2O), carbon dioxide (CO2), dinitrogen oxide (N2O), nitrogen monoxide (NO), formaldehyde (H2CO), nitrous acid (HONO), and nitrogen dioxide (NO2). ReTOF-MS-PI identified 38 cyclic and acyclic products arranged into, for example, dinitro, mononitro, mononitroso, nitro-nitroso, and amines species. Among these molecules, 21 products such as N-methylnitrous amide (CH4N2O), 1,3,5-triazinane (C3H9N3), and N-(aminomethyl)methanediamine (C2H9N3) were detected for the first time in laboratory experiments; mechanisms based on the gas phase and condensed phase calculations were exploited to rationalize the formation of the observed products. The present studies reveal a rich, unprecedented chemistry in the condensed phase decomposition of RDX, which is significantly more complex than the unimolecular gas phase decomposition of RDX, thus leading us closer to an understanding of the decomposition chemistry of nitramine-based explosives."	"Surface Persistence of Trace Level Deposits of Highly Energetic Materials. In the fields of Security and Defense, explosive traces must be analyzed at the sites of the terrorist events. The persistence on surfaces of these traces depends on the sublimation processes and the interactions with the surfaces. This study presents evidence that the sublimation process of these traces on stainless steel (SS) surfaces is very different than in bulk quantities. The enthalpies of sublimation of traces of four highly energetic materials: triacetone triperoxide (TATP), 2,4-dinitrotoluene (DNT), 2,4,6-trinitrotoluene (TNT), and 1,3,5- trinitrohexahydro-s-triazine (RDX) deposited on SS substrates were determined by optical fiber coupled-grazing angle probe Fourier Transform Infrared (FTIR) Spectroscopy. These were compared with enthalpies of sublimation determined by thermal gravimetric analysis for bulk amounts and differences between them were found. The sublimation enthalpy of RDX was very different for traces than for bulk quantities, attributed to two main factors. First, the beta-RDX phase was present at trace levels, unlike the case of bulk amounts which consisted only of the alpha-RDX phase. Second, an interaction between the RDX and SS was found. This interaction energy was determined using grazing angle FTIR microscopy. In the case of DNT and TNT, bulk and traces enthalpies were statistically similar, but it is evidenced that at the level of traces a metastable phase was observed. Finally, for TATP the enthalpies were statistically identical, but a non-linear behavior and a change of heat capacity values different from zero was found for both trace and bulk phases."	"Tandem Ion Mobility Spectrometry for the Detection of Traces of Explosives in Cargo at Concentrations of Parts Per Quadrillion. A tandem ion mobility spectrometer (IMS<sup>2</sup>) built from two differential mobility analyzers (DMAs) is coupled at ambient pressure with a thermal fragmenter placed in between, such that the precursor ions selected in the first DMA are thermally decomposed at ambient pressure in the fragmenter and the product ions generated are filtered in the second DMA. A thermal desorber and a multicapillary gas chromatography (GC) column are coupled to a secondary electrospray (SESI) ion source, so the adsorption sampling filters are thermally desorbed and the liberated vapors are separated in the GC column, prior to their ionization and mobility/mobility classification. The new fragmenter allows the fragmentation of the five explosives studied: RDX, PETN, NG, EGDN, and TNT. The background of the analyzer is evaluated for the five explosives using air samples of 500 L volume. An atmospheric background of only 2.5 pg (5 ppq) is found for TNT, being somewhat higher for the rest of explosives studied. The architecture GC-IMS<sup>2</sup> is compared with GC-IMS obtaining a 100-fold increase of sensitivity in the first configuration, confirming the high selectivity provided by the fragmentation cell and the second IMS stage for the product ion mobility analysis. The analyzer is tested also with real explosives hidden in cargo pallets achieving successful detection of four (EGDN, NG, TNT, and PETN) out of five explosives."	"Dissipative particle dynamics with reactions: Application to RDX decomposition. We present a general, flexible framework for a constant-energy variant of the dissipative particle dynamics method that allows chemical reactions (DPD-RX). In our DPD-RX approach, reaction progress variables are assigned to each particle that monitor the time evolution of an extent-of-reaction associated with the prescribed reaction mechanisms and kinetics assumed to occur within the particle, where chemistry can be modeled using complex or reduced reaction mechanisms. We demonstrate our DPD-RX method by considering thermally initiated unimolecular decomposition of the energetic material, cyclotrimethylene trinitramine (RDX), into a molecular gas mixture. Studies are performed to demonstrate the effect of a spatially averaged particle internal temperature and a local reaction volume term in the chemical kinetics expressions, where both provide implicit mechanisms for capturing condensed phase reactivity. We also present an analysis of the expansion of the product gas mixture during decomposition. Finally, a discussion of other potential applications and extensions of the DPD-RX method is given."	"Theoretical calculation into the effect of molar ratio on the structures, stability, mechanical properties and detonation performance of 1,3,5,7-tetranitro-1,3,5,7-tetrazocane/ 1,3,5-trinitro-1,3,5-triazacyco-hexane cocrystal. Molecular dynamics (MD) simulation was conducted to research the effect of molar ratio on the thermal stability, mechanical properties, and detonation performance of HMX (1,3,5,7-tetranitro-1,3,5,7-tetrazocane)/RDX (1,3,5-trinitro-1,3,5-triazacyco-hexane) cocrystal explosive at ambient condition. The binding energy, mechanical properties, and the detonation parameters of the pure β-HMX, RDX crystal, and the cocrystal models were got and contrasted. The results demonstrate that molar ratio has a great influence on the properties of the cocrystal system. The binding energy of the cocrystals has the maximum values at the 1:1 molar ratio, indicating that the stability of HMX/RDX(1:1) cocrystal is the best and HMX and RDX may prefer to cocrystallizing at 1:1 molar ratio. What's more, the tensile modulus (E) and shear modulus (G) of the HMX/RDX(1:1) cocrystals have the minimum value, while the C12-C44 and K/G have the maximum value, implying that the cocrystal at 1:1 molar ratio has the best mechanical properties. Simultaneously, the E, K, and G of the cocrystals are all smaller than those of β-HMX's and generally larger than those RDX's, while the Cauchy pressure (C12-C44) and K/G ratio were greater, demonstrating that cocrystallizing can improve the brittleness and enhance the ductility. The detonation velocity (D) and detonation pressure (P) decrease with the rising RDX content, while the properties are still superior to the pure RDX crystal; thus, the energy properties of the cocrystal are still excellent. In a word, HMX/RDX cocrystal at 1:1 molar ratio has the best thermal stability, mechanical properties, and the excellent energetic performance."	"Inertial extended-Lagrangian scheme for solving charge equilibration models. The inertial extended Lagrangian/self-consistent field scheme (iEL-SCF) has been adopted for solving charge equilibration in LAMMPS as part of the reactive force field ReaxFF, which due to the charge conservation constraint requires solving two sets of linear system of equations for the new charges at each molecular dynamics time-step. Therefore, the extended Lagrangian for charge equilibration is comprised of two auxiliary variables for the intermediate charges which serve as an initial guess for the real charges. We show that the iEL-SCF is able to reduce the number of SCF cycles by 50-80% of the original conjugate gradient self-consistent field solver as tested across diverse systems including water, ferric hydroxide, nitramine RDX, and hexanitrostilbene."	"Shock-Induced Hot Spot Formation and Spalling in 1,3,5-trinitroperhydro-1,3,5-triazine Containing a Cube Void. The initial reaction mechanism of energetic materials under impact loading and the role of crystal properties in impact initiation and sensitivity are still unclear. In this paper, we report reactive molecular dynamics simulations of shock initiation of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) crystals containing a cube void. Shock-induced void collapse, hot spots formation and growth, as well as spalling are revealed to be dependent on the shock velocity. The void collapse times are 1.5 and 0.7 ps, for the shock velocity of 2 and 4 km·s<sup>-1</sup>, respectively. Results indicate that the initial hot spot formation consists of two steps: one is the temperature rise caused by local plastic deformation and the other is the temperature increase resulting from the collision of upstream and downstream particles during the void collapse. Whether hot spots will continue to grow or quench depends on sensitive balance between energy release caused by local physical and chemical reactions and various heat dissipation mechanisms. In our simulations, hot spot would grow for Up = 4 km·s<sup>-1</sup>; hot spot is weak to some extent for Up = 2 km·s<sup>-1</sup>. The tensile wave reflected by the shock wave after reaching the free surface causes the spalling, which depends on the initial shock velocity. Typical spalling occurs for the shock velocity 2 km·s<sup>-1</sup>, while the tensile wave induces the microsplit region in RDX crystals in the case of Up = 4 km·s<sup>-1</sup>. Chemical reactions are studied for Rankine-Hugoniot shock pressures Ps = 14.4, 57.8 GPa. For the weak shock, there is almost no decomposition reaction of the RDX molecules near the spalling region. On the contrary, there are large number of small molecule products, such as H2O, CO2, NO2, and so forth, around the microsplit regions for the strong shock. The ruptures of N-NO2 bond are the main initial reaction mechanisms for the shocked RDX crystal and are not affected by shock strength, while the microsplit slows down the decomposition rate of RDX. The work in this paper can shed light on a thorough understanding of thermal ignition, hot spot growth, and other physical and chemical phenomena of energetic materials containing voids under impact loading."	"Engineering the Morphology and Particle Size of High Energetic Compounds Using Drop-by-Drop and Drop-to-Drop Solvent-Antisolvent Interaction Methods. Morphology-controlled precipitation of three powerful organic high energetic compounds (HECs) viz. cyclotrimethylenetrinitramine (RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), and 2-methyl-1,3,5-trinitrobenzene (TNT) was achieved by two different processes, namely, drop-by-drop (DBD) and drop-to-drop (DTD) solvent-antisolvent interaction methods. Effect of different experimental parameters on the mean size and morphology of the prepared submicron-sized particles of HECs was investigated thoroughly. The DBD method favors the formation of nanosized particles of RDX and TNT at lower concentrations (5 mM). However, a significant increase in the mean particle size occurred at higher concentrations (25 and 50 mM). Formation of facetted crystals of RDX, HMX, and nanorods of TNT was observed at higher concentrations because of the interaction of crystal facets with the antisolvent. Relatively, smaller sized, spherical particles of RDX and HMX could be prepared through the DTD method even at higher concentrations (25 mM). The DTD method is a continuous process and hence is a facile method for industrial applications. X-ray diffraction and Fourier transform infrared spectroscopy studies revealed that RDX, HMX and TNT were precipitated in their most stable polymorphic forms α, β, and monoclinic, respectively. Differential scanning calorimetry showed that the thermal response of the nano-HECs was similar to the respective raw-HECs. A slight decrease in crystallinity and the melting point was observed because of the decrease in the mean particle size."	"High-Energy Nitramine Explosives: A Design Strategy from Linear to Cyclic to Caged Molecules. After carefully analyzing the Kamlet-Jacobs (K-J) equations and the structural traits of well-known explosives, hexahydro-1,3,5-trinitro-1,3,5-triazin (RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), and hexanitrohexaazaisowurtizitane (CL-20), diverse nitramine explosives including linear (Models IAn, IBn, and ICn), cyclic (Model IIn), and caged (Models IIIAn and IIIBn) molecules were designed by incorporating various number (n) of -CH2NNO2- structural unit and studied using the B3LYP/6-31G* and B3PW91/6-31G** methods of the density functional theory. Computational results show that all of the energetic parameters, that is, density (ρ), detonation velocity (D), and detonation pressure (P), follow the order of IIIBn &gt; IIIAn &gt; IIn &gt; IAn &gt; IBn &gt; ICn. With the increasing n, the D and P of linear nitramines eventually keep stable. This clearly indicates that elongating the chain length (e.g., polymerization) brings little or even negative benefit in boosting the explosive properties. The oxygen balance and the K-J equation parameter ϕ both have a significant influence on the detonation properties. Caged compound IIIA2 has not only comparable energetic properties but also better sensitivity and thermal stability than CL-20."	"Release of Munitions Constituents in Aquatic Environments Under Realistic Scenarios and Validation of Polar Organic Chemical Integrative Samplers for Monitoring. Munitions constituents (MC) may be released into aquatic environments as a result of underwater military munitions (UWMM) corrosion and breach. The present study investigated the release of 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) from Composition B fragments under 2 realistic exposure scenarios in a large flume with flow set at 15 cm/s: the first represented the release of MC from fully exposed Composition B, and the second represented release through a small hole, simulating a breached munition. Release of MC through a small hole was approximately 10 times lower than from exposed Composition B, demonstrating the strong influence of exposure to flow on release. The rate of release of MC into the flume was similar to that previously reported in a related field experiment, but a similar mass loss resulted in MC concentration in the field &gt;300 times lower, likely by the dilution effect of hydrodynamic transport. The present study corroborates previous findings of release of MC at UWMM sites resulting in concentrations below the toxicity threshold to most species. In the flume water, MC was quantified using frequent grab sampling and polar organic chemical integrative samplers (POCIS). For TNT, POCIS-estimated time-weighted average concentrations were up to 40% higher than those derived from grab samples, whereas for RDX differences were 6% or less, demonstrating that POCIS provide reliable temporal integration of changing environmental concentrations for common MC. Environ Toxicol Chem 2019;38:2383-2391. Published 2019 Wiley Periodicals Inc. on behalf of SETAC. This article is a US government work and, as such, is in the public domain in the United States of America."	"High throughput quantification of the functional genes associated with RDX biodegradation using the SmartChip real-time PCR system. The explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is a contaminant at many military sites. RDX bioremediation as a clean-up approach has been gaining popularity because of cost benefits compared to other methods. RDX biodegradation has primarily been linked to six functional genes (diaA, nfsI, pnrB, xenA, xenB, xplA). However, current methods for gene quantification have the risk of false negative results because of low theoretical primer coverage. To address this, the current study designed new primer sets using the EcoFunPrimer tool based on sequences collected by the Functional Gene Pipeline and Repository and these were verified based on residues and motifs. The primers were also designed to be compatible with the SmartChip Real-Time PCR system, a massively parallel singleplex PCR platform (high throughput qPCR), that enables quantitative gene analysis using 5,184 simultaneous reactions on a single chip with low volumes of reagents. This allows multiple genes and/or multiple primer sets for a single gene to be used with multiple samples. Following primer design, the six genes were quantified in RDX-contaminated groundwater (before and after biostimulation), RDX-contaminated sediment, and uncontaminated samples. The final 49 newly designed primer sets improved upon the theoretical coverage of published primer sets, and this corresponded to more detections in the environmental samples. All genes, except diaA, were detected in the environmental samples, with xenA and xenB being the most predominant. In the sediment samples, nfsI was the only gene detected. The new approach provides a more comprehensive tool for understanding RDX biodegradation potential at contaminated sites."	"The solid phase thermal decomposition and nanocrystal effect of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) via ReaxFF large-scale molecular dynamics simulation. The solid phase thermal decomposition and nanocrystal effect are extremely important to understand the ignition, combustion, reaction growth and buildup to detonation under shock wave action. To explore the basic mechanism at the atomic level and understand the interaction among nanocrystal lattices, molecules, and intermediates during the solid phase decomposition, ReaxFF large-scale molecular dynamics simulation at 1000-3000 K was demonstrated on the solid phase of nanocrystalline RDX with a size in the range of 5-12 nm. Based on the analysis of the RDX decay and chemical species, we found that the whole decomposition process can be divided into the solid-affected stage and the following less-condensed phase stage. From the results of NO2 diffusion and high frequency reaction statistics for the nanocrystal effect on the RDX decay, intermediate diffusion was found to be strongly associated with the chemical pathway. In addition, it was found for the first time that the thermal decomposition of RDX originates from the inside of the nanocrystal instead of its surface. Furthermore, a promising uniform energy distribution mechanism transfer by vibration inside the nanocrystalline RDX was demonstrated. The detailed information derived from this study can aid in the thorough understanding of the size effect on the chemical kinetics of nanoexplosives, especially for thermal decomposition and reaction growth."	"UV-FIA: UV-induced fluoro-immunochemical assay for ultra-trace detection of PETN, RDX, and TNT. Fluorescence quenching based immunoassay format for the detection of a trace amount of some nitro-explosives with a high degree of selectivity is reported in this study. The immunoassay comprises anti-explosive antibodies functionalized microtitre strips specific to the targeted explosives, pentaerythritol tetranitrate (PETN), 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), and 2,4,6-trinitrotoluene (TNT). UV induced photolysis of nitro-explosive bound to targeted antibodies generates primarily nitrite ions which after the quick reaction with the detector molecule, 2,3-diaminonaphthalene (DAN), a fluorophore, quenches its fluorescence intensity, however, proportionately undergo cyclization to produce a highly fluorescent product, 2,3-naphthotriazole (NAT). The synthesized product, NAT, was verified using various chromatographic and spectrophotometric techniques. This newly developed antibody-based detection method, utilizing DAN dye, demonstrated a high selectivity towards PETN, RDX, and TNT. This method can be used as an economical testing kit for direct quantification of explosives, implying the great potential for quick, low-cost trace detection of explosives."	"Decision Framework for the environmental management of explosive contaminated land. The environmental risks from explosive manufacturing and testing activities are usually evaluated using a qualitative process such as environmental impact prioritisation as recommended by legislation and guidance. However, standard environmental management system (EMS) guidance rarely provides detailed information on how to objectively assess the significance of the environmental impacts based on a rational scientific evidence. Quantitative exposure and eco-toxicity assessments are frequently used in combination with environmental threshold limit guidelines, but these omit important environmental impacts such as physical damage to land, nuisance and contribution to climate change. These impacts are particularly relevant to the explosives industry where noise nuisance and physical damage are given high priority. In addition, contamination from explosive compositions may comprise mixtures of multiple legacy and new generation explosives such as 1,3,5-trinitro-1,3,5-triazinane (RDX), 2,4,6-trinitrotoluene (TNT), 5-nitro-1,2,4-triazol-3-one (NTO), 2,4-dinitroanisole (DNAN) and nitroguandine (NQ), which may have combined impacts not captured by conventional eco-toxicity assessments. Further, threshold limits for energetic materials in soil and water have not been established for most nations. Additionally, in the explosive industry wider concerns such as legislative compliance and stakeholder concerns may help to provide a more broadly applicable assessment of environmental impact. Therefore in this study a novel decision framework was developed to integrate empirical data with business risks to enable rational decision making for the environmental management of explosive manufacturing facilities. The application of the framework was illustrated using three case studies from the explosive manufacturing industry to demonstrate how the framework can be used to justify environmental management decision making. By linking the environmental impacts to business risks, we demonstrate that manufacturers are able to assess a wide spectrum of issues that might not be identified in the initial environmental assessment such as non-toxic pollution incidents, breaches in legislation and stakeholder perceptions."	"Indiicoccus explosivorum gen. nov., sp. nov., isolated from an explosives waste contaminated site. A pink-pigmented, Gram-stain-positive, aerobic, coccoid-shaped bacterial strain, designated as S5-TSA-19<sup>T</sup>, was isolated from an explosives contaminated site in Panchkula, Haryana, India. The 16S rRNA gene sequencing blast analysis indicated that the strain is a member of the family Planococcaceae with the highest sequence similarity to Planomicrobium soli XN13<sup>T</sup> (96.1 %), followed by Planococcus maitriensis S1<sup>T</sup> (95.6 %), Planococcus plakortidis DSM 23997<sup>T</sup> (95.6 %), Planomicrobium flavidum ISL-41<sup>T</sup> (95.6 %), Planococcus rifietoensis M8<sup>T</sup> (95.5 %), Planococcus salinus LCB217<sup>T</sup> (95.5 %) and Planococcus maritimus DSM 17275<sup>T</sup> (95.5 %). Phylogenetic analysis based on 16S rRNA gene and whole-genome sequences (based on a conserved set of 400 proteins) retrieved the strain in a distinct branch indicating a separate lineage within the family Planococcaceae. Strain S5-TSA-19<sup>T</sup> had a distinctive chemotaxonomic pattern comprising A4α type peptidoglycan based on l-Lys-d-Asp, iso-C15 : 0 as the major fatty acid, absence of phosphatidylethanolamine as a major lipid and MK-7 and MK-6 as the major menaquinones, differentiating it from the genera Planococcus and Planomicrobium, thus supporting the findings of molecular phylogeny. Further, strain S5-TSA-19<sup>T</sup> was able to biotransform hexahydro-1,3,5,-trinitro-1,2,5-triazine (RDX) into nitrite derivatives under aerobic conditions in 2-4 days, whereas the closest reference strains did not possess this property. On the basis of polyphasic taxonomic characterization and a phylogenomics approach, strain S5-TSA-19<sup>T</sup> is proposed as the type strain of a novel species in a novel genus for which the name Indiicoccus explosivorum gen. nov., sp. nov. is proposed (=JCM 31737<sup>T</sup>=KCTC 33871<sup>T</sup>=MTCC 12608<sup>T</sup>)."	"Polynitro-Functionalized Triazolylfurazanate Triaminoguanidine: Novel Green Primary Explosive with Insensitive Nature. Exploring a green and safe primary explosive to replace very toxic and sensitive lead azide and lead styphnate takes great efforts. Here, a series of polynitro-functionalized triazolylfurazanate energetic materials have been reported. These new compounds were fully characterized by infrared, multinuclear NMR spectra, mass spectra, elemental analysis, and differential scanning calorimetry measurements. The structure of mono-diaminoguanidinium salt (17) was determined by single-crystal X-ray diffraction. Inspired by the high pressurization rate and fast energy release in triaminoguanidinium salts, some suitability evaluation for primary explosives has been applied. Di(triaminoguanidinium) 3-nitramino-4-(3-(dinitromethanidyl)-1,2,4-triazol-5-yl)furazanate exhibits an excellent gas-generating capability (Pmax = 9.03 Mpa) and combustion performance (dP/dtmax = 201.5 GPa s<sup>-1</sup>) close to fast thermite Al/CuO (Pmax = 8.49 Mpa, dP/dtmax = 252.2 GPa s<sup>-1</sup>). Moreover, the good initiation capacity (60 mg for 500 mg RDX) coupled with insensitivity in this compound (IS = 17.4 J, FS = 240 N, ESD &gt; 0.225 J) make it a promising green and insensitive primary explosive."	"Real Microgravity Influences the Cytoskeleton and Focal Adhesions in Human Breast Cancer Cells. With the increasing number of spaceflights, it is crucial to understand the changes occurring in human cells exposed to real microgravity (r-µg) conditions. We tested the effect of r-µg on MCF-7 breast cancer cells with the objective to investigate cytoskeletal alterations and early changes in the gene expression of factors belonging to the cytoskeleton, extracellular matrix, focal adhesion, and cytokines. In the Technische Experimente unter Schwerelosigkeit (TEXUS) 54 rocket mission, we had the opportunity to conduct our experiment during 6 min of r-µg and focused on cytoskeletal alterations of MCF-7 breast cancer cells expressing the Lifeact-GFP marker protein for the visualization of F-actin as well as the mCherry-tubulin fusion protein using the Fluorescence Microscopy Analysis System (FLUMIAS) for fast live-cell imaging under r-µg. Moreover, in a second mission we investigated changes in RNA transcription and morphology in breast cancer cells exposed to parabolic flight (PF) maneuvers (31st Deutsches Zentrum für Luft- und Raumfahrt (DLR) PF campaign). The MCF-7 cells showed a rearrangement of the F-actin and tubulin with holes, accumulations in the tubulin network, and the appearance of filopodia- and lamellipodia-like structures in the F-actin cytoskeleton shortly after the beginning of the r-µg period. PF maneuvers induced an early up-regulation of KRT8, RDX, TIMP1, CXCL8 mRNAs, and a down-regulation of VCL after the first parabola. E-cadherin protein was significantly reduced and is involved in cell adhesion processes, and plays a significant role in tumorigenesis. Changes in the E-cadherin protein synthesis can lead to tumor progression. Pathway analyses indicate that VCL protein has an activating effect on CDH1. In conclusion, live-cell imaging visualized similar changes as those occurring in thyroid cancer cells in r-µg. This result indicates the presence of a common mechanism of gravity perception and sensation."	"Identification of novel variants in MYO15A, OTOF, and RDX with hearing loss by next-generation sequencing. Nonsyndromic hearing loss (NSHL) is the most common sensorineural disorder and one of the most common human defects. Autosomal recessive inheritance accounts for a huge percentage of familial cases. Next-generation sequencing (NGS) is a powerful molecular diagnostic strategy for NSHL. The combination of a microarray gene chip and NGS can better delineate the etiology and genetic cause of deafness in many cases. One hundred and thirty-one unrelated students with NSHL who attend a special education school in Yunnan Province were recruited. Firstly, four common deafness-related genes (GJB2, GJB3, SLC26A4, and mtDNA 12S rRNA) were evaluated for mutations using a microarray kit. Furthermore, 227 known human deafness genes were sequenced to identify the responsible genetic variant of the proband in three Chinese families with autosomal recessive hearing loss. The mutational status of family members of the probands was validated by Sanger sequencing. Five novel variants were found in three families using NGS. In family 1, we identified compound heterozygosity at the MYO15A (OMIM, #600316), including an duplication variant c.3866dupC, p.His1290Alafs*25 and a 3-bp deletion (c.10251_10253del, p.Phe3420del), resulting in protein length changes and premature protein truncation, respectively. In family 2, two affected siblings from a consanguineous Chinese Dai family harbored an c.1274G&gt;C, p.Arg425Pro missense variant in the OTOF (OMIM, #601071). In family 3, we identified compound heterozygosity for c.129_130del, p.His43Glnfs*28 and c.76_79del, p.Lys26* in the RDX gene (OMIM, #611022). Five novel variants were found in three families with NSHL. Our findings extend the mutational spectrum in deafness-related genes and will help physicians in better understanding the etiology of hearing loss."	"Effects of chitin and temperature on sub-Arctic soil microbial and fungal communities and biodegradation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and 2,4-dinitrotoluene (DNT). Climate warming in the Arctic and the thawing of frozen carbon stocks are leading to uncertainty as to how bacterial communities will respond, including pollutant degrading bacteria. This study investigated the effects of carbon stimulation and temperature on soil microbial community diversity and explosive biodegradation in two sub-Arctic soils. Chitin as a labile carbon source stimulated overall microbial activities as reflected by increases in basal respiration (three to tenfold) and potential nitrification activity (two to fourfold) compared to unamended soil. This stimulation extended to 2,4-dinitroluene- (DNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX)-degrading microorganisms either directly or via co-metabolic reaction mechanisms. A stimulatory effect of the incubation temperature (2, 12, or 22 °C) on these microbial activities was also observed, but the chitin stimulation caused greater shifts in the structure of the bacterial and fungal communities. The first reported occurrence of an associated role of chitinolytic bacteria belonging to Cellulomonadaceae and chitinolytic fungi belonging to Mortierellaceae in explosive biodegradation is described. This study found that sub-Arctic soil microbial communities were adapted to respond quickly to an increase in labile carbon sources over the range of temperatures used in this study. The warming climate in the Arctic could benefit explosive contaminated soil clean-up by providing non-recalcitrant carbon sources that stimulate overall microbial activity and correspondingly explosive biodegradation."	"Monitoring of explosive residues in lake-bottom water using Polar Organic Chemical Integrative Sampler (POCIS) and chemcatcher: determination of transfer kinetics through Polyethersulfone (PES) membrane is crucial. Between 1920 and 1967, approximatively 8200 tons of ammunition waste were dumped into some Swiss lakes. This study is part of the extensive historical and technical investigations performed since 1995 by Swiss authorities to provide a risk assessment. It aims to assess whether explosive monitoring by passive sampling is feasible in lake-bottom waters. Polar organic chemical integrative sampler (POCIS) and Chemcatcher were first calibrated in a channel system supplied with continuously refreshed lake water spiked with two nitroamines (HMX and RDX), one nitrate ester (PETN), and six nitroaromatics (including TNT). Exposure parameters were kept as close as possible to the ones expected at the bottom of two affected lakes. Sixteen POCIS and Chemcatcher were simultaneously deployed in the channel system and removed in duplicates at 8 different intervals over 21 days. Sorbents and polyethersulfone (PES) membranes were separately extracted and analyzed by UPLC-MS/MS. When possible, a three-compartment model was used to describe the uptake of compounds from water, over the PES membrane into the sorbent. Uptake of target compounds by sorbents was shown not to approach equilibrium during 21 days. However, nitroaromatics strongly accumulated in PES, thus delaying the transfer of these compounds to sorbents (lag-phase up to 9 days). Whereas sampling rate (RS) of nitroamines were in the range of 0.06-0.14 L day<sup>-1</sup>, RS of nitroaromatics were up to 10 times lower. As nitroaromatic accumulation in PES was integrative over 21 days, PES was used as receiving phase for these compounds. The samplers were then deployed at lake bottoms. To ensure that exposure conditions were similar between calibration and field experiments, low-density polyethylene strips spiked with performance reference compounds were co-deployed in both experiments and dissipation data were compared. Integrative concentrations of explosives measured in the lakes confirmed results obtained by previous studies based on grab sampling."	"A comparative study of the vibrational and thermodynamic properties of α-RDX and γ-RDX under ambient conditions. The structural parameters, Raman/IR spectra, and vibrational and thermodynamic properties of α-RDX and γ-RDX were investigated by performing first-principles calculations using the CASTEP program. The obtained structural parameters and vibrational frequencies of the internal modes of α-RDX are consistent with previous results. The vibrational bands of γ-RDX in the region 300-3113 cm<sup>-1</sup> were assigned to vibrational modes for the first time. Furthermore, the thermodynamic properties of α-RDX and γ-RDX were calculated, including the constant-volume specific heat Cv, entropy S, Helmholtz free energy F, enthalpy H, and Gibbs free energy G."	"Design of Energetic Materials Based on Asymmetric Oxadiazole. A new family of asymmetric oxadiazole based energetic compounds were designed. Their electronic structures, heats of formation, detonation properties and stabilities were investigated by density functional theory. The results show that all the designed compounds have high positive heats of formation ranging from 115.4 to 2122.2 kJ mol<sup>-1</sup>. -N- bridge/-N3 groups played an important role in improving heats of formation while -O- bridge/-NF2 group made more contributions to the densities of the designed compounds. Detonation properties show that some compounds have equal or higher detonation velocities than RDX, while some other have higher detonation pressures than RDX. All the designed compounds have better impact sensitivities than those of RDX and HMX and meet the criterion of thermal stability. Finally, some of the compounds were screened as the candidates of high energy density compounds with superior detonation properties and stabilities to that of HMX and their electronic properties were investigated."	"Rapid detection of explosive vapors by thermal desorption atmospheric pressure photoionization differential mobility analysis tandem mass spectrometry. The increased frequency in the number of international terror threats has led to a corresponding increase in demand for fast, sensitive and reliable screening methods suitable for the detection of airborne explosive vapors. We demonstrate herein a workflow suitable for the determination of nitrogen-based explosives at the picogram level in just minutes. A method is described that combines Thermal Desorption (TD) sample introduction with Differential Mobility Analysis (DMA) Tandem Mass Spectrometry (MS/MS), enabling a sensitive and accurate workflow suitable for the rapid detection of trace nitroaromatic, nitroester and nitramine explosive vapors. The methods are bridged using a novel low-flow, field-free Atmospheric Pressure Photoionization (APPI) source, intended specifically for the analysis of gas-phase analytes and airborne particles. Limits of detection within or below the picogram range were determined for the analysis of a range of explosives standards including 2,6-DNT, TNT, TATB, Tetryl, RDX, EGDN, PETN, HMX, and NG. Practical application of the TD-APPI-DMA-MS/MS workflow was demonstrated for the detection of real trace explosive vapors produced from the volatilization of solid explosive samples stored within a sealed cardboard box. A single complete analysis was performed in less than 2 min. The highly sensitive and accurate detection of a variety of common nitrogen-based explosive vapors has been demonstrated, at levels suitable for practical, high-throughput security screening applications."	"A Possible Way for the Detection and Identification of Dangerous Substances in Ternary Mixtures Using THz Pulsed Spectroscopy. We discuss an effective tool for the detection and identification of substances in ternary mixtures with similar spectral properties using a broadband reflected THz signal. Nowadays, this is an urgent problem; its effective solution is still far off. Two ternary mixtures of the explosives (RDX+TNT+HMX and RDX+TNT+PETN) were used as the examples for demonstration of the efficiency of the method proposed. The identification is based on the pulsed THz spectroscopy. We follow the spectral intensities together with the use of integral correlation criteria. They use the spectral line dynamics of the THz pulse reflected from the substance under investigation and that of the standard THz signal from database. In order to increase the accuracy and reliability of the identification, we analyze the partial non-overlapping time intervals, containing the main pulse of the reflected THz signal and the sequential sub-pulses. The main pulse is shown to contain information about high absorption frequencies (ν &gt; 2.6 THz) of the mixture components. In the sub-pulses, the absorption frequencies of the components are detected in the range of low (ν &lt; 2.6 THz) and high (ν &gt; 2.6 THz) frequencies. The opportunity of distinguishing the mixtures with similar spectral properties is also shown."	"Enhanced plasmid-mediated bioaugmentation of RDX-contaminated matrices in column studies using donor strain Gordonia sp. KTR9. Horizontal gene transfer (HGT) is the lateral movement of genetic material between organisms. The RDX explosive-degrading bacterium Gordonia sp. KTR9 has been shown previously to transfer the pGKT2 plasmid containing the RDX degradative genes (xplAB) by HGT. Overall, fitness costs to the transconjugants to maintain pGKT2 was determined through growth and survivability assessments. Rhodococcus jostii RHA1 transconjugants demonstrated a fitness cost while other strains showed minimal cost. Biogeochemical parameters that stimulate HGT of pGKT2 were evaluated in soil slurry mating experiments and the absence of nitrogen was found to increase HGT events three orders of magnitude. Experiments evaluating RDX degradation in flow-through soil columns containing mating pairs showed 20% greater degradation than columns with only the donor KTR9 strain. Understanding the factors governing HGT will benefit bioaugmentation efforts where beneficial bacteria with transferrable traits could be used to more efficiently degrade contaminants through gene transfer to native populations."	"Stand-off Hyperspectral Raman Imaging and Random Decision Forest Classification: A Potent Duo for the Fast, Remote Identification of Explosives. In this study, we present a stand-off hyperspectral Raman imager (HSRI) for the fast detection and classification of different explosives at a distance of 15 m. The hyperspectral image cube is created by using a liquid crystal tunable filter (LCTF) to select a specific Raman shift and sequentially imaging spectral images onto an intensified CCD camera. The laser beam is expanded to illuminate the field of view of the HSRI and thereby improves large area scanning of suspicious surfaces. The collected hyperspectral image cube (HSI) is evaluated and classified using a random decision forest (RDF) algorithm. The RDF is trained with a training set of mg-amounts of different explosives, i.e., TNT, RDX, PETN, NaClO3, and NH4NO3, on an artificial aluminum substrate. The resulting classification is validated, and variable importance is used to optimize the RDF using spectral descriptors, effectively reducing the dimensionality of the data set. Using the gained information, a faster acquisition and calculation mode can be designed, giving improved results in classification at a much higher repetition rate."	"Amino-tetrazole functionalized fused triazolo-triazine and tetrazolo-triazine energetic materials. The synthesis of two fused high-nitrogen compounds and their energetic salts is presented. All new compounds were well characterized by IR and multinuclear NMR spectroscopy, thermal analysis, and elemental analysis. Some of them (5-8, and 11) were further determined by single crystal X-ray diffraction analysis. With high nitrogen contents (59.6-76.8%) and tremendous ring-strain energy, these fused compounds exhibit high positive heats of formation ranging from 2.35 to 4.23 kJ g-1, much higher than those of RDX (0.32 kJ g-1) and HMX (0.25 kJ g-1). The high enthalpies and extensive noncovalent interactions (hydrogen bonds and π-π interaction) impart them with promising detonation performance. Their energetic performance was evaluated using EXPLO5. Among them, compounds 7, 10, and 11 exhibit high densities, good detonation properties, and excellent mechanical stabilities, thereby highlighting their potential applications as new insensitive energetic materials."	"Energetic furazan-triazole hybrid with dinitromethyl and nitramino groups: decreasing sensitivity via the formation of a planar anion. Energetic salts (4, 5 and 7-11) of 3-(3-dinitromethanide-1H-1,2,4-triazol-5-yl)-4-nitraminofurazanate and the azo compound (15) as well as its ammonium (14), hydrazinium (16) and hydroxylammonium (17) salts were synthesized and fully characterized. The structures of 5 and 15 were confirmed by single crystal X-ray diffraction analysis. The hydroxylammonium salt (5) has a high measured density (1.85 g cm<sup>-3</sup>) and shows promising properties as a replacement for the traditional explosive (RDX). The anion is planar which suggests that a combination of two heterocyclic five-membered rings with nitramino and dinitromethyl groups could open a new avenue to advanced energetic materials with high detonation performance and good sensitivities."	"Manipulating redox conditions to enhance in situ bioremediation of RDX in groundwater at a contaminated site. Surficial application of waste glycerol (WG) for enhanced bioremediation was tested in situ at an old military range site to address hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) contaminated groundwater. This treatment was effective in inducing strong reducing conditions (range: -4 to -205 mV) and increasing the concentrations of organic carbon (from 10 to 729 mg/L) and fatty acids (from 0 to 940 mg/L) concomitantly with a decrease in RDX concentrations (range: 17 to 143 μg/L) to below detection limits (0.1 μg/L) in 2 of the 3 monitoring wells (MWs) evaluated. None of these changes were observed in the control MW. RDX disappeared without the detection of any common anaerobic nitroso degradation intermediates, with the exception of one MW where the concentration of organics did not significantly increase (range: 10 to 20 mg/L), suggesting the conditions were not favourable for biodegradation. Ecotoxicological analysis suggested that the use of WG may have some dose-related deleterious effects on different soil and aquatic receptors. Analysis of the microbial community composition, using 16S rRNA gene amplicon sequences, which provided insight into whether the process design had selected for and stimulated the optimal microbial populations, indicated co-existence of numerous Operational Taxonomic Units (OTUs) belonging to groups known to be capable of RDX degradation under anaerobic conditions, with a positive link between Geobacter spp. enrichment and the presence of RDX nitroso metabolites. Overall, the results from this field test show that this treatment process can provide an effective long-term, semi-passive remediation option for RDX contaminated groundwater."	"In Situ Measurements of Explosive Compound Dissolution Fluxes from Exposed Munition Material in the Baltic Sea. Underwater munitions containing millions of tons of toxic explosives are present worldwide in coastal marine waters as a result of unexploded ordnance and intentional dumping. The dissolution flux of solid explosives following corrosion of metal munition housings controls the exposure of biological receptors to toxic munition compounds (MC), including TNT: 2,4,6-trinitrotoluene, RDX: 1,3,5-trinitro-1,3,5-triazinane, and DNB: 1,3-dinitrobenzene. Very little is known about the dissolution behavior of MC in the marine environment. In this work, we exploit a unique marine study site in the Baltic Sea with exposed solid explosives to quantify in situ MC dissolution fluxes using dissolved MC gradients near the exposed explosive surface, as well as benthic chamber incubations. The gradient method gave dissolution fluxes that ranged between 0.001 and 3.2, between 0.0001 and 0.04, and between 0.003 and 1.7 mg cm<sup>-2</sup> day<sup>-1</sup> for TNT, RDX, and DNB, respectively. Benthic chamber incubations indicated dissolution fluxes of 0.0047-0.277, 0-0.11, and 0.00047-1.45 mg cm<sup>-2</sup> day<sup>-1</sup> for TNT, RDX, and DNB, respectively. In situ dissolution fluxes estimated in the current study were lower than most dissolution rates reported for laboratory experiments, but they clearly demonstrated that MC are released from underwater munitions to the water column in the Baltic Sea."	"Sensors Using the Molecular Dynamics of Explosives in Carbon Nanotubes Under External Uniform Electric Fields. Possessing a simulated sensor device to identify explosives is of extreme interest to the area of public security to fight against terrorism. In light of this, a carbon armchair nanotube was modeled under the action of an external, longitudinal and uniform electric field at an initial temperature of 1 mK simulation, causing the explosive molecules under analysis to rotate through the carbon nanotube, due to an evanescent effect generated from the action of an electric current and magnetic field induced in this system, and thus behaving as a selective temperature sensor and spinning radius for the molecules. For this, molecular dynamics was used to study the physicochemical properties of the molecules' interactions with a carbon nanotube. The following physical properties, as well as the kinetic, potential, and total energy were calculated for the 2,4,6-trinitrotoluene (TNT), triacetone triperoxide (TATP), hexogen (RDX), hexamethylene triperoxide diamine (HMTD), octogen (HMX) and pentaerythritol tetranitrate (PETN) explosives: thermodynamic conditions such as temperature; entropy variation; and distance between the molecules' center of mass from an armchair type carbon nanotube."	"The Chemical Compatibility and Adhesion of Energetic Materials with Several Polymers and Binders: An Experimental Study. The chemical compatibility and the adhesion of energetic materials and additive materials exert a strong influence on the sensitivity, safety and performance of a polymer-bonded explosive (PBX). In this study, the chemical compatibility of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), pentaerythritol tetranitrate (PETN) with several polymers were evaluated using the vacuum stability test (VST) and the differential scanning calorimetry (DSC); while the adhesion between RDX or PETN and each binder based on these polymers was determined through interfacial characteristics using contact angle measurement. The experimental results demonstrate that RDX and PETN are compatible with polystyrene (PS), nitrocellulose (NC) and fluoroelastomer (FKM) according to the STANAG 4147. Therefore the two polymers can be used as adhesives in PBX composition. Moreover, based on interfacial characteristics such as interfacial tension and work of adhesion, the adhesion between RDX and each binder was predicted to be better than that of PETN."	"The effect of soil type on the extraction of insensitive high explosive constituents using four conventional methods. Explosive contamination is commonly found at military and manufacturing sites (Hewitt et al., 2005; Clausen et al., 2004; Walsh et al., 2013). Under current environmental legislation the extent of the contamination must be characterized by soil sampling and subsequent separation of the explosive contaminants from the soil matrix by extraction to enable chemical analysis and quantification (Dean, 2009). It is essential that the extraction method can consistently recover explosive residue from a variety of soil types i.e. all materials that have not degraded or irreversibly bound to the matrix, so that any resultant risk is not underestimated. In this study, five different soil types with a range of organic content, particle size and pH, were spiked with a mixture of RDX, DNAN, NQ and NTO at 50 mg/kg and were extracted using one of four one-step extraction methods: stirring, shaking, sonication, and accelerated solvent extraction (ASE). Analysis of the extraction efficiencies of the four methods found that they were broadly successful for the extraction of all IHE constituents from all five soils (an average of 84% ± 14% recovery across 80 extractions). However, soils with high organic content (Total Organic Content (TOC) ≥ 2%) were found to significantly affect extraction efficiency and reproducibility. NTO and DNAN were the least consistent in extraction efficiency with poorest recovery of NTO as low as 37% ± 2%. Of the four tested methods shaking was found to be the most reproducible, though less efficient than stirring (64%-91%). ASE was found to have the most variable results for extraction of IHE constituents suggesting that ASE was the most affected by the different soil types. Therefore, it is recommended that the efficiency and reproducibility of the selected extraction method should be validated by extracting known concentrations of the IHE from the soil of interest and that any required correction factors are reported."	"Transformation of Combustion Nanocatalysts inside Solid Rocket Motor under Various Pressures. In this paper, the dependences of the morphology, particle sizes, and compositions of the condensed combustion products (CCP) of modified double-base propellants (1,3,5-trimethylenetrinitramine (RDX) as oxidizer) on the chamber pressure (&lt;35 MPa) and nickel inclusion have been evaluated under a practical rocket motor operation. It has been shown that higher pressure results in smaller average particle sizes of the CCPs. The CCPs of Ni-containing propellants have more diverse morphologies, including spherical particles, large layered structures, and small flakes coated on large particles depending on the pressure. The specific surface area (SSA) of CCPs is in the range of 2.49 to 3.24 m² g<sup>-1</sup> for propellants without nickel are less dependent on the pressure, whereas it is 1.22 to 3.81 Ni-based propellants. The C, N, O, Al, Cu, Pb, and Si are the major elements presented on the surfaces of the CCP particles of both propellants. The compositions of CCPs from Ni-propellant are much more diverse than another one, but only three or four major phases have been found for both propellants under any pressure. The metallic copper is presented in CCPs for both propellants when the chamber pressure is low. The lead salt as the catalyst has been transformed in to Pb(OH)Cl as the most common products of lead-based catalysts with pressure lower than 15 MPa. When pressure is higher than 5 MPa, the nickel-based CCPs has been found to contain one of the following crystalline phases: Pb₂Ni(NO₂)₆, (NH₄)₂Ni(SO₄)₂·6H₂O, C₂H₂NiO₄·2H₂O, and NiO, depending on the pressure."	"Effect of re-use of surface sampling traps on surface structure and collection efficency for trace explosive residues. In security settings, explosive residues or particles are collected by swiping the object of interest (e.g., luggage or package) with a collection medium, or trap. Particles on the trap are thermally desorbed for detection by ion mobility spectrometry (IMS) or other analyses. A high trap sampling efficiency increases the chance of detection, and is affected by a number of factors. In particular, this work studies the effect of trap re-use on collection efficiency of organic explosives, namely 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitro-1,3,5-triazinane (RDX), and correlates this data to quantifiable morphology changes. Collection efficiency was measured by liquid extraction of the traps with detection and quantitation by gas chromatography / mass spectrometry (GC/MS). Using silhouette microscopy for visualization of the trap texture, morphology changes were quantified by several measurements of trap roughness and hairiness, drawing from techniques and metrics used in the textiles industry. Nomex traps were visibly roughened by repeated re-use, and this was correlated with significant improvements in trap collection efficiency (11-57%) depending upon the specific analyte and substrate combination interrogated. Teflon-coated fiberglass (TCFG) traps showed little change with repeated swiping and minimal to no improvement in particle collection efficiency. These results have direct implications for optimizing particle collection traps for use in security settings."	"Bioinformatics Analysis Reveals the Altered Gene Expression of Patients with Postmenopausal Osteoporosis Using Liuweidihuang Pills Treatment. Postmenopausal osteoporosis (PMOP), as well as its associated increased risk for fragility fracture, is one of the most disabling consequences of aging in women. This present study aimed to identify candidate genes that involve pathogenesis of PMOP and the therapeutic mechanism of Liuweidihuang (LWDH) pills on PMOP. We integrated microarray datasets of PMOP derived from the Gene Expression Omnibus (GEO) to screen differentially expressed genes (DEGs) between PMOP and normal controls as well as patients with PMOP and patients after treatment of LWDH pills. GO and KEGG enrichment analysis for DEGs were performed. The shared DEGs, associated with both the pathogenesis of PMOP and the therapeutic mechanism of LWDH, were further analyzed by protein-protein interaction (PPI) network. Quantitative real-time polymerase chain reaction (qRT-PCR) was performed to verify the DEGs obtained by our integrated analysis. Compared with normal controls, 1732 DEGs in PMOP were obtained with p&lt;0.05. According to the qRT-PCR results, expression of ATF2, FBXW7, RDX, and RBBP4 was consistent with that in our integrated analysis, generally. GO and KEGG enrichment analysis showed that those DEGs were significantly enriched in regulation of transcription, DNA-dependent, cytoplasm, protein binding, and MAPK signaling pathway. A total of 58 shared DEGs in PMOP versus normal control and in patients with PMOP versus patients after LWDH treatment were identified, which had opposite expression trend in these two comparisons. In the PPI network, CSNK2A1, ATF2, and FBXW7 were three hub proteins. Three genes including ATF2, FBXW7, and RDX were speculated to be therapeutic targets of LWDH for PMOP based on BATMAN-TCM database. We speculated that three genes of ATF2, FBXW7, and RDX may play crucial roles in both pathogenesis of PMOP and therapeutic mechanism of LWDH on PMOP. Our results may provide clues for the molecular pathogenesis of PMOP and offer new possibilities for treatment of PMOP."	"Harnessing the catabolic versatility of Gordonia species for detoxifying pollutants. The genus Gordonia includes variedly pigmented aerobic, non-motile, non-sporulating Gram positive (sometimes variable) coccoid forms and rods. Different isolates display distinguishing physiological traits and biochemical properties that are significant in remediation applications. Strains inherently prevalent in soils, seawater, sediments and wastewaters can degrade hydrocarbons. Immobilized cells and microbial consortia containing Gordonia species have been used for in situ applications. Hydrocarbon uptake in this Actinomycete is mediated by attachment to large droplets or by pseudosolubilization of substrates. Hydrocarbons so internalized are degraded by relevant enzymes that are innately present in this microorganism. Wild-type and recombinant strains also mediate desulfurization of polyaromatic sulfur heterocyclic compounds. This organism is metabolically capable of bringing about detoxification of phthalate esters. Two species namely, Gordonia polyisoprenivorans and Gordonia westfalica mediate degradation of rubber and the metabolic pathways involved in the process have been well-understood. Some members are able to transform nitriles into commercially valuable products and others degrade the explosive hexahydro-1,3,5-trinitro-1,3,5-triazine. Cholesterol, pyridine derivatives, fuel oxygenates, thiodiglycol, bis-(3-pentafluorophenylpropyl)-sulfide and 6:2 fluorotelomersulfonate are also biotransformed or degraded by Gordonia species. Some members of this genus are significant in the treatment of wastewaters including those that are rich in steroids and lignin. There are also several patents highlighting the commercial relevance of this genus. On account of its diverse catabolic properties, this Actinomycete has become important in bioremediation of polluted environments."	"Tetrazolyl and dinitromethyl groups with 1,2,3-triazole lead to polyazole energetic materials. A class of polyazole energetic compounds (combination of tetrazolyl, dinitromethyl and triazole) was obtained from 4,5-dicyanotriazole. All the new compounds were fully characterized by IR, NMR [1H, 13C{1H}], elemental analysis, and differential scanning calorimetry (DSC). Compounds 5, 6 and 8 were further characterized with single-crystal X-ray diffraction studies. Heats of formation and detonation performances were determined using Gaussian 03 and EXPLO5 v6.01 programs, which show that 5 is a promising green primary explosive and 7 as a secondary explosive has a detonation velocity superior to 1,3,5-trinitrotriazacyclohexane (RDX)."	"Status epilepticus after C-4 ingestion: using liquid chromatography to quantify toxicity. Context: C-4, a commonly used explosive in military operations, is sometimes consumed by soldiers as a rite of passage. The primary component of C-4 is cyclotrimethylenetrinitramine, or Research Department Explosive (RDX), which causes euphoria along with nausea, vomiting, renal injury, encephalopathy and convulsions when consumed in toxic amounts. We present a case of status epilepticus caused by known ingestion of C-4, in which serum levels of the compound were measured with high-performance liquid chromatography (HPLC). Case details: A 22-year-old active-duty male with no prior medical history was brought to the ED with convulsions that only minimally improved traditional anti-epileptic treatment. EEG showed persistent epileptiform activity despite initial management. Continuous propofol infusion, lacosamide and levitiracetam eventually broke the seizures. The patient eventually reported consuming a piece of C-4 four hours prior to the start of his seizure activity. Results: HPLC showed a peak RDX concentration of 3.06 μg/ml. RDX concentration at cessation of seizure activity was 2.43 μg/ml. Conclusion: Per our review of the literature, this is the first case where the explosive's toxicity could directly be measured over time in a human patient. C-4 poisoning must be considered when assessing sudden onset epileptiform activity in soldiers with access to this substance."	"Tandem ion mobility spectrometry at ambient pressure and field decomposition of mobility selected ions of explosives and interferences. A tandem ion mobility spectrometer at ambient pressure included a thermal desorption inlet, two drift regions, dual ion shutters, and a wire grid assembly in the second drift region. An ion swarm could be mobility isolated in the first drift region using synchronized dual ion shutters and decomposed in a wire grid assembly using electric fields of 1.80 × 104 V cm-1 (118 Td) from a 1.8 MHz sinusoidal waveform. Mobility selected ions that underwent field induced decomposition were NO3-, from PETN·Cl- and NG·Cl-, and NO2- from RDX·Cl-. The extent of decomposition ranged from 60 to 90%, depending on gas temperature, field strength, and ion identity, introducing additional controls to improve selectivity in trace determination of explosives. Ion transmission through the wire grid assembly ranged from 80 to &gt;95% with losses increasing for increased field strength. Studies with pairs of explosives and interfering substances demonstrated decisive detection of explosives and portend reduced rates of false positive using tandem ion mobility spectrometers with a reactive stage."	"Detection of multiclass explosives and related compounds in soil and water by liquid chromatography-dielectric barrier discharge ionization-mass spectrometry. In this work, the multiclass detection of explosives and related compounds has been studied by liquid chromatography-high-resolution mass spectrometry by means of a time-of-flight mass spectrometer (TOFMS) operated in the negative ion mode, using dielectric barrier discharge ionization (DBDI). Reversed-phase high-performance liquid chromatography (HPLC) separation was performed using water-methanol mobile phase without any modifier, although the effect of ammonium acetate was studied. DBD plasma was generated by applying a square wave voltage of 2.5 kV to a 100-mL min<sup>-1</sup> He flow. The DBDI probe was adjusted to fit the commercial API source housing so that the HPLC eluent was nebulized and vaporized in the same manner as for atmospheric-pressure chemical ionization (APCI). The ionization process was affected by the temperature of the two nitrogen streams used to vaporize the solvent and the analytes, particularly for RDX and HMX, which are thermolabile compounds. The best approach in terms of sensitivity for all the studied compounds was the use of a gradient of temperatures in the ionization source, starting at 225/200 °C (vaporizer/drying gas temp) for nitramines and ending at 350/325 °C for nitroaromatic compounds. High-resolution full-scan spectra of individual selected compounds were recorded by LC-DBDI-TOFMS, and the results were compared to LC-APCI-TOFMS. A better sensitivity (slope of calibration curve) was obtained by DBDI for more than 70% of the studied compounds in both wastewater and soil extracts. Graphical abstract ᅟ."	"[Mutational analysis of 117 patients with non-syndromic hearing loss]. To determine the frequencies of deafness gene mutations among patients with non-syndromic hearing loss (NSHL) from northern Jiangsu province. A total of 117 patients with NSHL were enrolled. The coding region of GJB2 gene, IVS7-2A&gt;G and 2168A&gt;G mutations of SLC26A4 gene, and 1555A&gt;G and 1494C&gt;T mutations of mitochondrial DNA 12S rRNA were subjected to Sanger sequencing. Patients in whom no mutation was detected were further tested by targeted gene capture and high-throughput sequencing. Among the 117 patients, 86 (73.50%) were found to carry mutations. GJB2 gene mutations were found in 61 patients (52.14%), including 22 (18.80%) with homozygous mutations and 39 (33.33%) with heterozygous mutations. SLC26A4 gene mutations were found in 19 patients (16.24%), including 4 (3.42%) with homozygous mutations and 15 with heterozygous mutations (14.53%). Mitochondrial 12S rRNA gene mutation was found in 6 patients (5.13%). Targeted gene capture and high-throughput sequencing of 8 patients identified 4 further cases, including 1 with RDX gene 129_130del and 76_79del compound heterozygous mutations, 1 with OTOF gene 1274G&gt;C homozygous mutation, 1 with SLC26A4 gene 919-2A&gt;G and IVS16-6G&gt;A compound heterozygous mutation, and 1 with SLC26A4 gene 919-2A&gt;G and A1673T compound heterozygous mutation. The frequency of mutation among patients with NSHL from north Jiangsu was 73.50%, and GJB2 gene was most commonly mutated."	"Detection of hexahydro-1,3-5-trinitro-1,3,5-triazine (RDX) with a microbial sensor. Explosives such as hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) are common contaminants found in soil and groundwater at military facilities worldwide, but large-scale monitoring of these contaminants at low concentrations is difficult. Biosensors that incorporate aptamers with high affinity and specificity for a target are a novel way of detecting these compounds. This work describes novel riboswitch-based biosensors for detecting RDX. The performance of the RDX riboswitch was characterized in Escherichia coli using a range of RDX concentrations from 0-44 μmol l<sup>-1</sup>. Fluorescence was induced at RDX concentrations as low as 0.44 μmol l<sup>-1</sup>. The presence of 4.4 μmol l<sup>-1</sup> RDX induced an 8-fold increase in fluorescence and higher concentrations did not induce a statistically significant increase in response."	"Semi-quantitative analysis of samples in solutions using Aerodynamic Breakup Droplet ionization (ABDI) mass spectrometry. In Aerodynamic Breakup Droplet ionization (ABDI) mass spectrometry the dimer/monomer (I2/I1) and trimer/dimer (I3/I2) ratios are considered for compounds ionized in various ways. The following test compounds were selected: morphine (gives protonated ion, (M+H)<sup>+</sup>); hexogen, RDX (forms adducts with anion of chlorine or nitrate ion); and trinitrotoluene, TNT (gives deprotonated ion, (M-H)<sup>-</sup>). The test compounds were dissolved in water, acetonitrile or ethanol. It is shown that in the ABDI mass spectra of a number of compounds (protonated morphine ions in water and RDX adducts with chlorine in acetonitrile), the ratios I2/I1 and I3/I2 linearly depend on the analyte concentration in the solution. This is evident throughout the range of measured concentrations, when monomers and dimers are simultaneously visible in the mass spectrum. The phenomenon can be roughly explained by the dimerization of analyte molecules in singly charged parent drops during ABDI ionization. The linearity of the I2/I1 and I3/I2 on the concentration can be used for estimation of the analyte concentration in a sample without using an internal or external standard. This can be useful for routine analysis when standards are not commercially available or very expensive."	"Discrimination Between Explosive Materials and Isomers Using a Human Color Vision-Inspired Sensing Method. This paper describes the application of a human color vision approach to infrared (IR) chemical sensing for the discrimination between multiple explosive materials deposited on aluminum substrates. This methodology classifies chemicals using the unique response of the chemical vibrational absorption bands to three broadband overlapping IR optical filters. For this effort, Fourier transform infrared (FT-IR) spectroscopy is first used to computationally examine the ability of the human color vision sensing approach to discriminate between three similar explosive materials, 1,3,5,-Trinitro-1,3,5-triazinane (RDX), 2,2-Bis[(nitrooxy)methyl]propane-1,3,-diyldinitrate (PETN), and 1,3,5,7-Tetranitro-1,3,5,7-tetrazocane (HMX). A description of a laboratory breadboard optical sensor designed for this approach is then provided, along with the discrimination results collected for these samples using this sensor. The results of these studies demonstrate that the human color vision approach is capable of high-confidence discrimination of the examined explosive materials."	"Theoretical studies on a new series of 1,2,3,4-tetrazine 1,3-dioxide annulation with an imidazole ring or oxazole ring. To continue our previous work, the structure and some properties of a new series of 1,2,3,4-tetrazine 1,3-dioxides annulated with an imidazole ring or oxazole ring were studied in this paper. Four imidazolo-v-tetrazine 1,3-dioxides (ITDOs) I1-I4 and eight oxazolo-v-tetrazine 1,3-dioxides (OTDOs) O1-O8 were designed. We employed the density functional theory (DFT) in B3LYP/6-311++G(d,p) to study their geometrical structures and the homodesmotic reaction method to calculate the enthalpies of formation. Detonation properties and stabilities were also studied. Generally speaking, ITDOs and OTDOs have more preferable stabilities than TTDOs or pyrazolo-TDOs. I3, I4, O1, and O2 were found to be comparable to the energy level of RDX; O5 and O6 are even as powerful as HMX. The stabilities analysis in this paper can also prove that the five-membered ring deformation and the steric hindrance change caused by the different substituents will affect the stabilities of the structures of 1,2,3,4-tetrazine 1,3-dioxides annulated with a five-membered nitrogen-rich heterocycle. Other factors, such as the position of the electron-withdrawing substituents or the position of coordinated oxygen atom, are worthwhile to investigate in future work."	"Learning the initial mechanical response of composite material: structure evolution and energy profile of a plastic bonded explosive under rapid loading. Plastic bonded explosive (PBX) is a typical composite material used widely in the defense industry and in aerospace engineering. The mechanical behavior of PBX is an important factor to be considered in its formulation design, but the initial mechanical response is not well understood due to the complexities of atomic interactions in a multi-component system. We applied a hybrid force field to investigate the initial mechanical response of cyclotrimethylenetrinitramine(RDX)-based PBX, by molecular dynamics. The structure evolution shows that the initial damage occurs mainly in the binder region, and is caused by conformational stretching and void propagation. The relationship between loading rate and initial damage indicates that lower loading rate is more beneficial to conformation relaxation, and consequently to increasing strain limitation. The energy profile indicates that the variation of non-bonded interaction energy, especially coulomb energy, has a significant influence on the variation of total energy. Therefore, when designing PBX, good mechanical strength can be expected by selecting polymer and explosive formulations with strong electrostatic interaction. Graphical abstract The structure evolution and energy profile of plastic bonded explosive (PBX) under uniaxial tension."	"Relationship between Energetic Performance and Clustering Effects on Incremental Nitramine Groups: A Theoretical Perspective. Nitramine compounds are typical high-energy-density materials (HEDMs) and are widely used as explosives because of their superior explosive performance over conventional energetic materials. In this work, the thermal properties of 1-nitropiperidine (NPIP), 1,4-dinitropiperazine (DNP), and 1,3,5-trinitro-1,3,5-triazinane (RDX) were investigated from quantum mechanics (QM) and reactive force field (ReaxFF) molecular dynamics simulations. We found that the bond dissociation energy of the N-NO2 bond, heat of formation, released energy, produced fragments, and oxygen balance are closely related to the incremental nitramine group. The nitramine group has a significant effect on the energetic performance of these nitramine compounds. In addition, the increase of the nitramine group will improve thermal decomposition activity, promote the generation of small molecules, and restrain the formation of carbon clusters. We hope that this work can shed new light on the design of energetic materials."	"Theoretical calculations about nitro-substituted pyridine as high-energy-density compounds (HEDCs). A series of derivatives of pyridine were designed through substituting hydrogen atoms by nitro groups systematically. By using the density functional theory at B3PW91/6-311++G(d,p)//MP2/311++G(d,p) level, heats of formation, bond orders, and bond dissociation energies were calculated to explore the thermodynamic stabilities of title molecules. Furthermore, the regularity of stability was explained based on the electronic population. Our results indicated that title molecules had enough stability to exist. To evaluate the potential usage as a high-energy-density molecule, the detonation pressure and detonation velocity were explored by using the semi-empirical Kamlet-Jacobs equation and excellent detonation character was confirmed. Overall consideration of the thermal stability and energetic character, four molecules (2,3,4,5-tetranitropyridine, 2,3,5,6-tetranitropyridine, 2,4,5,6-tetranitrop-pyridine, 2,3,4,5,6-pentanitropyridine) were confirmed to be better than RDX and filtered as potential energetic molecules."	"Molecularly imprinted polymer nano-sphere/multi-walled carbon nanotube coated glassy carbon electrode as an ultra-sensitive voltammetric sensor for picomolar level determination of RDX. An ultrasensitive and highly selective voltammetric sensor with ultra-trace level detection limit is introduced for RDX determination in water samples. The sensing platform is the nano-sized molecularly imprinted polymer (nano-MIP)/MWCNTs nanocomposite, casted on glassy carbon electrode (GCE). The MIP was synthesized by copolymerization of methacrylic acid and ethylene glycol dimethacrylate in the presence of RDX via precipitation polymerization. The MIP was characterized by scanning electron microscopy (SEM) and fast fourier transform infrared spectroscopy (FT-IR). It was demonstrated that the MIP, coated on the electrode, have the capability to adsorb RDX and increase its related voltammetric signal. This capability was remarkably lower, for the non-imprinted polymer (NIP)-based electrode. The MIP-based electrode signal to RDX is greatly enhanced in the presence of MWCNTs. The sensor showed excellent selectivity to RDX, compared to similar compounds of HMX and TNT. It exhibited two dynamic linear ranges including 0.1-10.0 nmol L<sup>-1</sup> and 0.01-1.00 µmol L<sup>-1</sup>. The detection limit and relative standard deviation of the sensor were calculated to be 20 pmol L<sup>-1</sup>(3Sb/m, first curve) and 4.5% (10 nmol L<sup>-1</sup>, n = 5), respectively. The utility of the sensor was checked for RDX analysis in water samples which led to satisfactory results."	"The microRNA-183/96/182 Cluster is Essential for Stereociliary Bundle Formation and Function of Cochlear Sensory Hair Cells. The microRNA (miR)-183/96/182 cluster plays important roles in the development and functions of sensory organs, including the inner ear. Point-mutations in the seed sequence of miR-96 result in non-syndromic hearing loss in both mice and humans. However, the lack of a functionally null mutant has hampered the evaluation of the cluster's physiological functions. Here we have characterized a loss-of-function mutant mouse model (miR-183C<sup>GT/GT</sup>), in which the miR-183/96/182 cluster gene is inactivated by a gene-trap (GT) construct. The homozygous mutant mice show profound congenital hearing loss with severe defects in cochlear hair cell (HC) maturation, alignment, hair bundle formation and the checkboard-like pattern of the cochlear sensory epithelia. The stereociliary bundles retain an immature appearance throughout the cochlea at postnatal day (P) 3 and degenerate soon after. The organ of Corti of mutant newborn mice has no functional mechanoelectrical transduction. Several predicted target genes of the miR-183/96/182 cluster that are known to play important roles in HC development and function, including Clic5, Rdx, Ezr, Rac1, Myo1c, Pvrl3 and Sox2, are upregulated in the cochlea. These results suggest that the miR-183/96/182 cluster is essential for stereociliary bundle formation, morphogenesis and function of the cochlear HCs."	"Granularity impact on hotspot formation and local chemistry in shocked nanostructured RDX. The nanostructuration of energetic materials results in interesting properties. In particular, the detonation of carbon-rich explosives leads to the formation of nanodiamonds, the size of which is linked to the initial size of the explosive nanograins. This correlation could come from the role played by the granularity in the shock properties, especially the local temperature, which could be enhanced when the shock front crosses the various interfaces and nanoporosities of the material. More generally, the granularity-dependent reactivity also concerns some aspects of the sensitivity of energetic materials and subsequent inhibition or safety issues. In order to investigate this hypothesis, we perform classical and reactive molecular dynamics shock-simulations on cyclotrimethylene trinitramine (RDX), a common high-explosive. We design various nanogranular structures using the body-centered-cubic stacking of nanoparticles shaped as Kelvin cells (truncated octahedra) with slightly-bumped faces. The nanograin size and the bump radius allow to independently control the porosity value and its nanostructure. We show that the global shock properties, especially the temperature, are sensitive to the porosity value but not to the nanograin size. The porosity nanostructure has a local impact, enhancing the temperature heterogeneities between the inter- and intra-grain regions by a few hundred degrees and slowing down the thermal homogenization. For a given porosity, the larger the nanograins, the larger and the hotter the hotspots. In such hotspots, the local chemistry is significantly modified, resulting in a larger reactivity with a quicker formation of some final products. We suggest that the quicker consumption of heteroatoms (namely, H, O, and N) along with higher local temperatures is likely to impact the formation process of solid carbonaceous phases."	"A comparative study of thermal stability of TNT, RDX, CL20 and ANTA explosives using UV 266 nm-time resolved photoacoustic pyrolysis technique. The paper reports the potential use of UV based pulsed photoacoustic spectroscopy to study the thermal stability of some well-known premier explosives such as TNT, RDX, CL20, and ANTA between 30 and 350 °C range. The thermal PA spectra of samples were recorded using fourth harmonic wavelength i.e. 266 nm of pulse duration 7 ns and repetition rate 10 Hz obtained from Q-switched Nd: YAG laser system. Under the influence of UV radiation, the explosive molecules in vapor phase follow the photodissociation process and converted into their byproducts such as NO, NO2 and N2O etc. due to π* ← n transitions, which are responsible for the generation resultant PA signal at 266 nm wavelength. The results obtained from PA spectra as a function of temperature are cross verified with Thermo gravimetric-differential thermal analysis (TG-DTA) to ascertain the thermal stability of these samples. The comparative PA spectra of samples were analyzed and shown the behavior of acoustic modes with respect to incident laser energy, and data acquisition time. Finally, the thermal quality factor &quot;Q&quot; is measured to test the stability of reported explosives."	"Effective Insensitiveness of Melamine Urea-Formaldehyde Resin via Interfacial Polymerization on Nitramine Explosives. To improve the safety of ammonium nitrate explosives, the melamine urea-formaldehyde resin (MUF resin) was selected for the preparation of three typical nitramine explosives (cyclotetramethylenetetranitramine, HMX; cryclo-trimethylenetrinitramine, RDX; and hexanitrohexaazaisowurtzitane, CL-20) based green polymer-bonded explosives (GPBXs) via interfacial polymerization. Meanwhile, the corresponding composite particles prepared by physical mixing and drying bath methods were studied and compared. The particle morphology, crystal structure, thermal stability, and safety performance of the resultant composite particles were characterized by scanning electron microscopy (SEM), powder X-ray diffraction (XRD), Fourier transform infrared (FT-IR) spectra, differential scanning calorimeter (DSC), and impact sensitivity test, respectively. SEM results showed that MUF was successfully coated on the surface of the three explosives, and different composite particles prepared by the same method have their own unique characteristics. Such effect is attributed to the resin's ability to isolate and buffer external stimuli. It is obvious that the interfacial polymerization is an effective desensitization technique to prepare core-shell composite particles for explosives."	"Drop hammer with high-speed thermal imaging. The drop hammer test is the easiest way to assess the sensitivity of explosive materials, but drop hammer results for low-velocity impacts have not been able to explain how explosives will react to other kinds of initiating stimuli. In order to do that, we have to understand the fundamental mechanisms of drop hammer initiation and how they differ from other initiation methods. For this reason, there is interest in instrumented drop hammers that help reveal what the drop hammer does at a fundamental level. We have developed a drop hammer that combines two types of mid-wavelength infrared (MWIR) imagers that, when operated simultaneously, can detect both the rapid explosion and slower combustion from impact-initiated polymer-bonded explosives with high time (1 μs) and space (15 μm) resolution. Results are presented that show how to vibration isolate the drop hammer to minimize MWIR image shaking during impact and to quantify the noise floor for MWIR temperature determinations via optical pyrometry. Experiments were performed on polymer-encased crystals of RDX ([CH2-NNO2]3) and HMX ([CH2-NNO2]4). Our experiments showed that drop-hammer initiated explosions occur in two phases with roughly 100 μs between explosions. Drop-hammer initiation is compared to an ultrasonic hammer, which initiates explosions by rapid frictional rubbing of the explosive surfaces against the surrounding polymer. The explosion rise time is faster with the drop hammer because the drop hammer inputs energy throughout the explosive volume, whereas the ultrasonic hammer produces localized heating and much more heat at the explosive surface."	"Trace detection of some nitro-explosives using thermal mediated immunochemical defragmented method. A new immunoassay format using thermally induced defragmentation of some nitro-explosives with a high degree of selectivity is reported. Specific antibodies against three widely used explosives, 2,4,6-trinitrotoluene (TNT), 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), and pentaerythritol tetranitrate (PETN) were generated by designing suitable haptens using geometry optimization modules. These in-house generated antibodies were used in a newly developed thermal mediated immunochemical biosensing technique which involves the binding of specific antibodies to respective nitro-explosives on a microtiter strip, resulting in the formation of specific immunocomplex. Heating the specific immuno-complex formed on microtiter wells resulted in thermal lysis of nitro-explosives to generate nitrite ions. These ions react with Griess reagent to form a colored chromophore which correlates the concentration of individual explosive in the sample. The present work fulfills the need for an improved explosive detecting system that is highly specific and capable of quickly determining the presence of nitrate containing explosives from a mixture pool."	"Genetic modification of western wheatgrass (Pascopyrum smithii) for the phytoremediation of RDX and TNT. Transgenic western wheatgrass degrades the explosive RDX and detoxifies TNT. Contamination, from the explosives, hexahydro-1, 3, 5-trinitro-1, 3, 5-triazine (RDX), and 2, 4, 6-trinitrotoluene (TNT), especially on live-fire training ranges, threatens environmental and human health. Phytoremediation is an approach that could be used to clean-up explosive pollution, but it is hindered by inherently low in planta RDX degradation rates, and the high phytotoxicity of TNT. The bacterial genes, xplA and xplB, confer the ability to degrade RDX in plants, and a bacterial nitroreductase gene nfsI enhances the capacity of plants to withstand and detoxify TNT. While the previous studies have used model plant species to demonstrate the efficacy of this technology, trials using plant species able to thrive in the challenging environments found on military training ranges are now urgently needed. Perennial western wheatgrass (Pascopyrum smithii) is a United States native species that is broadly distributed across North America, well-suited for phytoremediation, and used by the US military to re-vegetate military ranges. Here, we present the first report of the genetic transformation of western wheatgrass. Plant lines transformed with xplA, xplB, and nfsI removed significantly more RDX from hydroponic solutions and retained much lower, or undetectable, levels of RDX in their leaf tissues when compared to wild-type plants. Furthermore, these plants were also more resistant to TNT toxicity, and detoxified more TNT than wild-type plants. This is the first study to engineer a field-applicable grass species capable of both RDX degradation and TNT detoxification. Together, these findings present a promising biotechnological approach to sustainably contain, remove RDX and TNT from training range soil and prevent groundwater contamination."	"Passive in situ biobarrier for treatment of comingled nitramine explosives and perchlorate in groundwater on an active range. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), and perchlorate (ClO4<sup>-</sup>) are common, and often co-mingled, contaminants at military ranges worldwide. This project investigated the feasibility of using a passive emulsified oil biobarrier plus a slow release pH buffering reagent to remediate RDX, HMX, and ClO4<sup>-</sup> in a low pH aquifer at an active range. A 33 m biobarrier was emplaced perpendicular to the contaminant plumes, and dissolved explosives, perchlorate, and other relevant parameters were monitored. The pH increased and the DO and ORP decreased after emulsified oil injection, leading to &gt;90% reductions in perchlorate, RDX, and HMX compared to upgradient groundwater. Some nitroso breakdown products were observed immediately downstream of the barrier, but generally decreased to below detection limits farther downgradient. First-order rate constants of approximately 0.1/d were obtained for all three contaminants. Dissolved metals (including As) also increased in the wells immediately adjacent to the barrier, but attenuated as the plume re-aerated in downgradient areas. Biobarrier installation and sampling were performed during scheduled range downtime and had no impacts to ongoing range activities. The field trial suggests that an emulsified oil biobarrier with pH buffering can be a viable alternative to remove explosives and perchlorate from shallow groundwater on active ranges."	"Highly Energetic Materials-Hosted 3D Inverse Opal-like Porous Carbon: Stabilization/Desensitization of Explosives. The precise control of sensitivity to external stimuli, for example, impact, friction, and thermal energy, has been emphasized for highly energetic materials, including RDX and HMX. Such sensitivities could be controlled by adjusting the surface area or (in)organic additives; however, increased stability leads to a decrease in the explosives' performance. Here, high-energy-density molecules hosted in inverse opal-like porous carbon (IOC) nanocomposites demonstrate the mechanical stabilization and desensitization of RDX and HMX inside the carbon nanostructure using host-guest chemistry techniques. For this strategy, the uniform, vacant voids of the IOC were used to provide internal crystallization for the impact/frictional stabilization of explosives, and also to enhance the thermal reactivity by the high heat conductivity of IOC initiating detonation by thermally induced hotspot. The weight percentage of high explosives hosted by recrystallization at high temperatures and in vacuum reached ∼70%. After high explosives were embedded inside the IOC, the impact, friction and electrostatic stability was greatly increased (2-2.15-fold, 1.86-1.92-fold, and 1.25-2-fold, respectively) compared with free RDX and HMX. Also, addition of PVP as a binder controlled the effectiveness and efficiency of the carbon template, enabling control of the impact and friction sensitivity from 14.72 J to &gt;79.43 J and from 295.81 to 352.80 N, respectively."	"Effect of components on the curing of glycidyl azide polymer spherical propellant through rheological method. We have conducted a novel study of the influence of energy components (RDX, AP and CL-20) on curing kinetics of glycidyl azide polymer (GAP) spherical propellant based on rheological method. The autocatalytic model was used to describe curing kinetics and the parameters were determined by the model-fitting method. It was found that the incorporation of components hinders the cross-linking reaction of GAP spherical propellant. Integral isoconversional method was used on rheological kinetics to investigate the changes of the activation energy and we confirmed that the incorporation of components increased the activation energy. It was also found that such components had no effect on the trend of activation energy curves but shrank the peak value at a = 0.2. Dynamic mechanical analysis (DMA) showed the differences between pure curing system and its components. These findings are potentially helpful to control the curing effectively and optimize the processing schedules. The addition of components decreased α translation temperature which means the reduction in cross-links. The differences in the values of loss factor tan δ and β translation showed that pure curing system has lower resistance for side chain to motion."	"Temperature-dependent terahertz spectroscopy and refractive index measurements of aqua-soluble and plastic explosives. The paper reports the temperature-dependent time domain terahertz spectroscopy of premium aqua-soluble and plastic explosives such as NH4NO3, TNT, and RDX between 0.1 and 2.2 THz. Tunable terahertz radiation was generated using ZnTe crystal as a source, and a photoconductive antenna was used as a detector. The temperature-dependent study was carried out between 30°C and 200°C in a specially designed oven. The signature peaks of RDX and TNT present at 0.82 and 1.60 THz, respectively, show a strong redshift, whereas the NH4NO3 molecule shows a comparatively small shift. The high-temperature-based redshift phenomenon is just the opposite of the blueshift recorded at low temperatures. In addition, the temperature-dependent absorption coefficient data of these molecules support the change in the concentration of the NO2 molecule. We have also ascertained the temperature-dependent refractive indices of these molecules between 0.1 and 2.0 THz, which confirms the effect of temperature on the refractive indices. Finally, the signature peak of RDX with respect to the reduction in the weight concentration of RDX in the Teflon matrix was studied at 0.82 THz."	"QTAIM Assessment of the Intra- and Intermolecular Bonding in a Bis(nitramido-oxadiazolate) Energetic Ionic Salt at 20 K. Accurate experimental determination of the electron density distribution for the energetic ionic salt bis(ammonium) 2,2'-dinitramido-5,5'-bis(1-oxa-3,4-diazolate) dihydrate (1) is obtained from multipole modeling of single-crystal X-ray diffraction data collected at 20 K. The intra- and intermolecular bonding is assessed in terms of the quantum theory of atoms in molecules (QTAIM) with a view to better understanding the physicochemical properties in relation to chemical bonding. Topological analysis reveals stronger bonding for the N-NO2 bond relative to energetic nitramines RDX and HMX and the indication of a trend between this and impact sensitivity of nitro-containing energetic materials is noted. The intermolecular bonding of 1 is dominated by classical H-bonds but includes multiple π-bonding interactions and interactions between H-bond donor and acceptor atoms where bond paths are deflected by H atoms. There also exists a weak O···O interaction between end-on nitro groups, as well as an intramolecular ring-forming 1,5-type interaction. An anharmonic description of thermal motion was required to obtain the best fitting model, despite the low temperature of the study. The experimental study was complemented by periodic boundary DFT calculations at the experimental geometry as well as gas phase calculations on the isolated dianion."	"Reactive molecular dynamics simulation of thermal decomposition for nano-aluminized explosives. Aluminized explosives have important applications in civil construction and military armaments, but their thermal decomposition mechanisms are not well characterized. Here, the thermal decomposition of TNT, RDX, HMX and CL-20 on Al nanoparticles is examined by reactive dynamics simulations using a newly parameterized reactive force field with low gradient correction (ReaxFF-lg). Partially passivated Al nanoparticles were constructed and mixed with TNT, RDX, HMX and CL-20 crystals and then the mixed systems are heated to a high temperature in which the explosives are fully decomposed. The simulation results show that the aluminized explosives undergo three main steps of thermal decomposition, which were denoted &quot;adsorption period&quot; (0-20 ps), &quot;diffusion period&quot; (20-80 ps) and &quot;formation period&quot; (80-210 ps). These stages in sequence are the chemical adsorption between Al and surrounding explosive molecules (R-NO2-Al bonding), the decomposition of the explosives and the diffusion of O atoms into the Al nanoparticles, and the formation of final products. In the first stage, the Al nanoparticles decrease the decomposition reaction barriers of RDX (1.90 kJ g-1), HMX (1.95 kJ g-1) and CL-20 (1.18 kJ g-1), respectively, and decrease the decomposition reaction barrier of TNT from 2.99 to 0.29 kJ g-1. Comparing with the crystalline RDX, HMX and CL-20, the energy releases are increased by 4.73-4.96 kJ g-1 in the second stage. The number of produced H2O molecules increased by 25.27-27.81% and the number of CO2 molecules decreased by 47.73-68.01% in the third stage. These three stages are further confirmed by the evolutive diagram of the structure and temperature distribution for the CL-20/Al system. The onset temperatures (To) of generating H2O for all the aluminized explosives decrease, while those of generating CO2 for aluminized HMX and CL-20 increase, which are in accord with the experiment of aluminized RDX."	"Asymmetric nitrogen-rich energetic materials resulting from the combination of tetrazolyl, dinitromethyl and (1,2,4-oxadiazol-5-yl)nitroamino groups with furoxan. Three classes of nitrogen-rich energetic compounds 7-9 (combination of tetrazolyl, dinitromethyl and furoxan), 12-17 (combination of tetrazolyl, (1,2,4-oxadiazol-5-yl)nitroamino and furoxan) and 20-22 (combination of dinitromethyl, (1,2,4-oxadiazol-5-yl)nitroamino and furoxan) were obtained by selected reactions with 3,4-dicyano-furoxan. All the new compounds were thoroughly characterized by IR, NMR [1H, 13C{1H}], elemental analysis, and differential scanning calorimetry (DSC). Compounds 7, 13, 20 and 22 were also further characterized with single-crystal X-ray diffraction studies. Heats of formation and detonation performances for nine compounds were determined using Gaussian 03 and EXPLO5 v6.01 programs, showing that 15 as a secondary explosive is superior to 1,3,5-trinitrotriazacyclohexane (RDX) and 20 is a promising green primary explosive."	"A novel cocrystal composed of CL-20 and an energetic ionic salt. A novel nitroamine/energetic ionic salt cocrystal explosive containing CL-20 and 1-AMTN in a 1 : 1 molar ratio is presented. The structure of this cocrystal is determined by single-crystal X-ray diffraction (SC-XRD). The predicted detonation performance is slightly higher than that of RDX, a state-of-the-art explosive. In small-scale impact drop tests, the cocrystal exhibits a surprisingly low sensitivity relative to CL-20. These features make this cocrystal a very promising explosive to replace RDX."	"Synthesis and Characterization of cyclo-Pentazolate Salts of NH4<sup>+</sup>, NH3OH<sup>+</sup>, N2H5<sup>+</sup>, C(NH2)3<sup>+</sup>, and N(CH3)4<sup/>. A breakthrough in polynitrogen chemistry was recently achieved by our bulk synthesis of (N5)6(H3O)3(NH4)4Cl in which the cyclo-pentazolate anions were stabilized extensively by hydrogen bridges with the NH4<sup>+</sup> and OH3<sup>+</sup> cations. Significant efforts have been carried out to replace these nonenergetic cations and the Cl<sup>-</sup> anion by more energetic cations. In this paper, the metathetical syntheses of cyclo-pentazolate salts containing the simple nitrogen-rich cations NH4<sup>+</sup>, NH3OH<sup>+</sup>, N2H5<sup>+</sup>, C(NH2)3<sup>+</sup>, and N(CH3)4<sup>+</sup> are reported. These salts were characterized by their crystal structures; vibrational, mass, and multinuclear NMR spectra; thermal stability measurements; sensitivity data; and performance calculations. It is shown that the cyclo-pentazolates are more energetic than the corresponding azides but are thermally less stable decomposing in the range of 80 °C to 105 °C. As explosives, the hydrazinium and hydroxyl ammonium salts are predicted to match the detonation pressure of RDX but exhibit significantly higher detonation velocities than RDX and HMX with comparable impact and friction sensitivities. Although the ammonium salt has a lower detonation pressure than RDX, its detonation velocity also exceeds those of RDX and HMX. As a rocket propellant, the hydrazinium and hydroxyl ammonium salts are predicted to exceed the performances of RDX and HMX. The crystal structures show that the cyclo-pentazolate anions are generally stabilized by hydrogen bonds to the cations, except for the N(CH3)4<sup>+</sup> salt which also exhibits strong cation-π interactions. This difference in the anion stabilization is also detectable in the vibrational spectra which show for the N(CH3)4<sup>+</sup> salt a decrease in the cyclo-N5<sup>-</sup> stretching vibrations of about 20 cm<sup>-1</sup>."	"Formamidinium Nitroformate: An Insensitive RDX Alternative. Five nitroformate (trinitromethanide) salts featuring nitrogen-containing cations were prepared. The salts were characterized by multinuclear NMR, IR, and Raman spectroscopy, single-crystal X-ray analysis, differential thermal analysis, and friction and impact sensitivity testing. These experimental data are supplemented with thermochemical calculations using the Gaussian-4 composite method, and the performance of these energetic materials was calculated based on the Chapman-Jouguet thermodynamic detonation theory. Out of the five compounds studied by us, the formamidinium salt, [CH(NH2)2]<sup>+</sup>[C(NO2)3]<sup>-</sup>, is most interesting. Its performance matches that of RDX (research department explosive, cyclotrimethylenetrinitramine), while it is much less sensitive to impact and friction and, therefore, might be an excellent, less sensitive replacement for RDX."	"Diaminocyclohexane-Functionalized/Thioglycolic Acid-Modified Gold Nanoparticle-Based Colorimetric Sensing of Trinitrotoluene and Tetryl. Detection of explosive residues in soil and postblast debris is an important issue in sensor design for environmental and criminological purposes. An easy-to-use and low-cost gold nanoparticle (AuNP)-based colorimetric sensor was developed for the determination of nitroaromatic explosives, i.e., trinitrotoluene (TNT) and tetryl, capable of analyte detection at picomolar (pM) levels. The sensor nanoparticles were synthesized by functionalizing the negatively charged thioglycolic acid (TGA)-modified AuNPs with positively charged (±)- trans-1,2-diaminocyclohexane (DACH) at a carefully calculated pH. The working principle of the sensor is charge-transfer (CT) interaction between the electron-rich free amino (-NH2) group of DACH and the electron-deficient -NO2 groups of TNT/tetryl, added to possible nanoparticle agglomerization via electrostatic interaction of TNT-Meisenheimer anions with more than one cationic DACH-modified AuNP. The limit of detection (LOD) and limit of quantification (LOQ) of the sensor were 1.76 pM and 5.87 pM for TNT and 1.74 pM and 5.80 pM for tetryl, respectively. TNT, tetryl, and tetrytol, extracted from a nitroaromatic explosive-contaminated soil sample, were determined with the proposed sensor, yielding good recoveries. The sensor could be selectively applied to various mixtures of TNT with common energetic materials such as RDX, HMX, and PETN. Additionally, common soil ions (Cl<sup>-</sup>, NO3<sup>-</sup>, SO4<sup>2-</sup>, K<sup>+</sup>, Mg<sup>2+</sup>, Ca<sup>2+</sup>, Cu<sup>2+</sup>, Fe<sup>2+</sup>, Fe<sup>3+</sup>, and Al<sup>3+</sup>) as well as detergents, sugar, sweeteners, acetylsalicylic acid (aspirin), caffeine, and paracetamol-based painkiller drugs, which may be used as camouflage materials for explosives, either had no adverse effects or removable interferences on the detection method. The developed method was statistically validated against a GC-MS literature method."	"Infrared Reflectance Spectroscopic Evaluation of Inkjet Printed Standards of Cyclotrimethylenetrinitramine (RDX) on Aluminum Substrates. The Department of Defense (DOD) and first responder communities are evaluating and developing optical systems for the detection and identification of explosives and components used for assembling homemade explosives (HMEs). Emerging detection technologies must be evaluated with authentic hazard material concentrations to ensure their accurate and reliable use in the field. In this work, infrared (IR) reflectance spectra over the spectral rage of 1000-1700 cm<sup>-1</sup> were collected for different concentrations of inkjet-printed RDX (cyclotrimethylenetrinitramine) samples deposited onto aluminum substrates. A plot of the integrated area of both the symmetric and asymmetric NO2 vibrational bands for RDX on aluminum exhibited good linearity over the concentration range 20-500 µg/cm<sup>2</sup>. Detection limits for RDX on an aluminum surface were calculated to be 10.7 µg/cm<sup>2</sup> for the symmetric NO2 vibrational band and 1.4 µg/cm<sup>2</sup> for the asymmetric NO2 vibrational band. Evaluation of the NO2 vibrational band areas at different locations of the RDX array demonstrated that the samples exhibited good homogeneity across the surface. The concentration of an unknown sample of RDX on aluminum was determined using the fitted equations; results showed good agreement between the calculated and actual RDX surface concentration. The lot-to-lot variation of RDX on the aluminum surface was compared using the long wavelength infrared (LWIR) spectral band areas for two different lots of standards printed at the same RDX surface concentration. Results showed excellent lot-to-lot agreement indicating good reproducibility of the standards for RDX."	"The Safety Properties of a Potential Kind of Novel Green Primary Explosive: Al/Fe₂O₃/RDX Nanocomposite. Green primary explosives have gained wide attention for environmental protection. A potential novel lead-free primary explosive, Al/Fe₂O₃/RDX hybrid nanocomposite was prepared by ultrasonic mixing, and its safety properties are discussed in detail. Results showed that their sensitivity and safety properties were a function of the specific surface area and proportions of their ingredients. Their impact sensitivity fell and their static discharge, flame, and hot bridge wire sensitivities rose as the specific surface area of nano-Fe₂O₃ increased. As the amount of Al/Fe₂O₃ nanothermite was increased, its impact sensitivity fell and its flame sensitivity rose; their static discharge and hot bridge wire sensitivities, however, followed an inverted &quot;U&quot; type change trend and were determined by both the particle size of the ingredients and the resistance of the nanocomposite. Their firing properties in an electric detonator depended on the proportion of the constituents. Thus, green nanoscale primary explosives are appropriate for a range of initiatory applications and can be created by adjusting their specific surface area and the amount of their constituents."	"Computer simulation for the study of the liquid chromatographic separation of explosive molecules. The application of high performance liquid chromatography (HPLC) to separate explosive chemicals was investigated by molecular dynamics (MD) simulations. The explosive ingredients including NG, RDX, HMX and TNT were assigned as solutes, while methanol (CH3OH) and acetonitrile (CH3CN) were assigned as solvents in the solution system. The polymeric-molecular siloxanes (SiC8) and poly-1,2-methylenedioxy-4-propenyl benzene (PISAF) compounds were treated as stationary phase in the simulation. The simulation results showed that the different species of explosive ingredients were separated successfully in the solutions by each of the constructed stationary phase of SiC8 and PISAF after a total simulation time of 12.0 ps approximately, which were consistent with the experimental analysis of HPLC spectra. The origin for the separation was found due to the electrostatic interactions between polymer and explosives."	"Mineralogy and buffer identity effects on RDX kinetics and intermediates during reaction with natural and synthetic magnetite. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is known to undergo reduction mediated by ferrous iron in the presence of minerals, including magnetite. Idealized laboratory conditions may not provide representative reaction kinetics or pathways compared to field conditions. The effects of magnetite mineral morphology, the aquifer material matrix, the presence of aqueous Fe(II), and the buffer identity on RDX reduction kinetics and intermediate formation are investigated in this work. Reactions in bicarbonate buffer were substantially slower than those performed in 3-(N-morpholino)propanesulfonic acid (MOPS) buffer, and the presence of quartz and clays in magnetite-containing aquifer material resulted in slower reaction kinetics and production of additional iron oxide phases. Buffer identity also changed the rate controlling step and reaction product distribution. Conditions as close to those expected in field systems are necessary to evaluate the reaction rates and pathways of RDX in reduced groundwater systems."	"Theoretical study for anisotropic responses of the condensed-phase RDX under shock loadings. We have performed quantum-based molecular dynamics (MD) simulations in conjunction with multiscale shock technique (MSST) to investigate the initial chemical processes and the anisotropy of shock sensitivity of the RDX under shock loading applied along the different directions. The results show that there is a difference between x (or y)-direction and z-direction in the response to a shock wave velocity of 12 km/s. It was shown that detonation temperature and pressure in the z-direction lags behind that of x-direction (or y-direction). Moreover, from the time evolution of the population of various key fragments, we also observe that along with z-direction significantly later than that of x (or y)-direction, which the reaction rate is also slower. Thus, we draw a conclusion that sensitive for shock propagation along x or y-direction, but less sensitive for shock propagation along z-direction."	"The Thioredoxin-Like Family of Selenoproteins: Implications in Aging and Age-Related Degeneration. The thioredoxin-like (Rdx) family proteins contain four selenoproteins (selenoprotein H, SELENOH; selenoprotein T, SELENOT; selenoprotein V, SELENOV; selenoprotein W, SELENOW) and a nonselenoprotein Rdx12. They share a CxxU or a CxxC (C, cysteine; x, any amino acid; U, selenocysteine) motif and a stretch of eGxFEI(V) sequence. From the evolutionary perspective, SELENOW and SELENOV are clustered together and SELENOH and SELENOT are in another branch. Selenoproteins in the Rdx family exhibit tissue- and organelle-specific distribution and are differentially influenced in response to selenium deficiency. While SELENOH is nucleus-exclusive, SELENOT resides mainly in endoplasmic reticulum and SELENOW in cytosol. SELENOV is expressed essentially only in the testes with unknown cellular localization. SELENOH and SELENOW are more sensitive than SELENOT and SELENOV to selenium deficiency. While physiological functions of the Rdx family of selenoproteins are not fully understand, results from animal models demonstrated that (1) brain-specific SELENOT knockout mice are susceptible to 1-methyl-4-phenylpyridinium-induced Parkinson's disease in association with redox imbalance and (2) adult zebrafishes with heterozygous SELENOH knockout are prone to dimethylbenzanthracene-induced tumorigenesis together with increased DNA damage and oxidative stress. Further animal and human studies are needed to fully understand physiological roles of the Rdx family of selenoproteins in redox regulation, genome maintenance, aging, and age-related degeneration."	"Toxicology of Explosives and Fireworks in Small Animals. Exposure to explosives and fireworks in dogs can result in variable severity of clinical signs depending on the presence of different chemicals and the amount. The risk can be lessened by proper education of dog handlers and owners about the seriousness of the intoxications. Most animals will recover within 24 to 72 hours with supportive care. Cyclonite, barium, and chlorate ingestion carries a risk of more severe clinical signs."	"5-Amino-1H-1,2,4-triazole-3-carbohydrazide and its applications in the synthesis of energetic salts: a new strategy for constructing the nitrogen-rich cation based on the energetic moiety combination. Nitrogen-rich cation 5-amino-1H-1,2,4-triazole-3-carbohydrazide and its derivatives were synthesized by a new molecular design strategy based on the energetic moiety combination. All derivatives were fully characterized by vibrational spectroscopy (IR), multinuclear (1H, 13C) NMR spectroscopy, elemental analysis, differential scanning calorimetry (DSC), and impact and friction-sensitivity tests. The structures of compounds 1-4, 7 and 8 were further confirmed by single-crystal X-ray diffraction and six different types of crystal packing were surprisingly discovered. The results show that the extensive hydrogen bonding interactions between the cations and anions lead to a complex 3D network, which contribute greatly to the high density, insensitivity and thermal stability of the 5-amino-1H-1,2,4-triazole-3-carbohydrazide salts. It is also found that the cationic form of 5-amino-1H-1,2,4-triazole-3-carbohydrazide can decrease the sensitivity and elevate the nitrogen content of the target salts effectively. Some of these salts exhibit reasonable physical properties, such as good thermal stability (up to 407 °C) and reasonable impact sensitivities (IS = 5-80 J). In addition, theoretical detonation properties of the energetic salts obtained with EXPLO 5 (version 6.02) confirm them as competitively energetic compounds comparable to those of RDX or HMX."	"Compartmentalizing Incompatible Tandem Reactions in Pickering Emulsions To Enable Visual Colorimetric Detection of Nitramine Explosives Using a Smartphone. We report a visual colorimetric assay for detection of nitramine explosives such as 1,3,5-trinitro-1,3,5-triazinane (RDX) and 1,3,5,7-tetranitro-1,3,5,7-tetrazocane (HMX) using a smartphone. This assay is based on compartmentalizing incompatible tandem reactions in Pickering emulsions. The alkaline hydrolysis of RDX or HMX in one Pickering emulsion produces nitrite ions, which autodiffuse into the other Pickering emulsion to form nitrous acid. It oxidizes the 3,3',5,5'-tetramethylbenzidine (TMB) to generate yellow TMB diimine. The RGB component change of the optical images is applied to quantitatively determine the RDX and HMX at different reaction temperatures. A distinct color change occurs at RDX and HMX concentrations of 1.2 and 12 μM, respectively. The adjusted intensity increases linearly with the increase of the logarithms of the concentrations of RDX and HMX in the range of 1.2-90 μM and 12-90 μM, respectively. The limits of detection of RDX and HMX are 96 and 110 nM, respectively. Importantly, this assay is employed for the detection of RDX and HMX in real water, proving the applicability of the assay in real-world samples."	"HPV16 E7-induced upregulation of KDM2A promotes cervical cancer progression by regulating miR-132-radixin pathway. Human papillomavirus (HPV) infection and viral proteins expression cause a number of epigenetic alterations leading to cervical carcinogenesis. The recent discovery of a large amount of histone methylation modifiers reveals important roles of these enzymes in regulating tumor progression. The changes in expression of 48 histone methylation modifiers were assessed following knockdown of HPV16 E7 in CaSki cells. Lysine-specific demethylase 2A (KDM2A)-regulated microRNAs (miRNAs) in cervical cancer pathogenesis were disclosed using quantitative real-time polymerase chain reaction. The function of KDM2A-miRNAs on cervical cancer was investigated in vitro and in vivo. Upregulation of KDM2A induced by HPV16 E7 promotes cervical cancer cell proliferation and invasion and is correlated with poor prognosis in patients with cervical cancer. KDM2A physically interacts with the promoter of miR-132 and suppresses its expression by removing the mono or dimethyl group from H3K36 at the miR-132 locus. Functionally, miR-132 represses cancer cell proliferation and invasion by inhibiting radixin (RDX). Upregulated KDM2A promotes cervical cancer progression by repressing miR-132, which results in a derepression of RDX. Therefore, KDM2A functions as a tumor activator in cervical cancer pathogenesis by binding miR-132 promoter and abrogating its tumor suppressive function. Our results suggest a function for KDM2A in cervical cancer progression and suggest its candidacy as a new prognostic biomarker and target for clinical management of cervical cancer."	"Vetiver grass (Chrysopogon zizanioides) is capable of removing insensitive high explosives from munition industry wastewater. Synthetic organic explosive compounds in the wastewater stream of industrial munition facilities are subject to regulatory permits and require pretreatment prior to discharge. Munition industries are currently focused on developing insensitive high explosives (IHEs) such as dinitroanisole (DNAN), nitroguanidine (NQ), and 1,2,4-triazol-3-one (NTO), to replace conventional munitions such as trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). IHEs are typically more soluble than conventional explosives, and their production generates waste streams with high nitrate (N) concentrations. Several chemical remediation studies have attempted to degrade the explosive compounds within waste streams with limited success. Phytoremediation is a relatively new application for the remediation of munition industry wastewater, which is both environmentally and economically sustainable. Vetiver grass (Chrysopogon zizanioides), with its massive and dense root system and ability to grow in harsh environments, has been observed to remove many chemicals from soil and water, including nutrients and TNT. The objective of this study was to evaluate the phytoremediation potential of vetiver in removing explosive compounds and N from wastewater effluents generated in an industrial munition facility. Results show that the removal efficiency of vetiver was a factor of the initial concentration. Successive batches of vetiver removed DNAN, NQ, and RDX by 96, 79 and 100%, respectively. More than 95% of N was removed by four successive batches of vetiver grass. A major portion of NQ and RDX was translocated from root to shoot. LC-MS analysis showed the presence of transformation products of RDX, HMX (1,3,5,7-Tetranitro-1,3,5,7-tetrazocane) and DNAN in vetiver root and shoot."	"Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) reduction by granular zero-valent iron in continuous flow reactor. Wastewater streams containing hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) are subject to regulatory discharge regulations that require processing through industrial waste treatment. Thus, the development of easy-to-apply technologies for the treatment of RDX-laden wastewater streams is imperative. In the present study, the reduction of RDX by granular zero valent iron (GZVI) in batch and column experiments was investigated. Preliminary batch tests conducted under both oxic and anoxic conditions showed that after 3.0 h of reaction with GZVI, RDX was mainly converted to formaldehyde (CH2O), nitrate (NO3<sup>-</sup>), and ammonium (NH4<sup>+</sup>). Column filtration tests showed that pretreatment of the GZVI media with acid wash and low influent pH (4.0 ± 0.1) achieved 99% removal of RDX up to 5000 bed volume. BOD tests carried out on the post-treatment streams showed increased biodegradability of the treated wastewater, leading to a lower environmental impact for the final waste."	"Detecting forensic substances using commercially available SERS substrates and handheld Raman spectrometers. Ultra-sensitive in-field measurements of most forensic substances still today remain a challenge for first responders and forensic investigators. Handheld Raman spectroscopy equipment is getting more and more routinely used in the field for evidence collection, however, restricted to measurements of pure or high concentration samples. Here, surface-enhanced Raman scattering (SERS) sensing of common forensic substances with commercially available SERS substrates and handheld spectrometers, have been investigated. 3D Finite Element Method (FEM) and Density Functional Theory (DFT) simulations were used to interpret the high SERS enhancement of the Ag nanopillar substrate and the detection of the substances, respectively. The forensic generality and high performance of the analytical method were demonstrated by explicit detection of close to unprecedented amounts, down to femtograms, of Cyclosarin, RDX, Amphetamine and Picric acid. Implications are ultra-sensitive in-field SERS detection of these substances with commercial equipment."	"Tracing the cycling and fate of the munition, Hexahydro-1,3,5-trinitro-1,3,5-triazine in a simulated sandy coastal marine habitat with a stable isotopic tracer, <sup>15</sup>N-[RDX]. Coastal marine habitats become contaminated with the munitions constituent, Hexahydro-1,3,5-trinitro-1,3,5-trazine (RDX), via military training, weapon testing and leakage of unexploded ordnance. This study used <sup>15</sup>N labeled RDX in simulated aquarium-scale coastal marine habitat containing seawater, sediment, and biota to track removal pathways from surface water including sorption onto particulates, degradation to nitroso-triazines and mineralization to dissolved inorganic nitrogen (DIN). The two aquaria received continuous RDX inputs to maintain a steady state concentration (0.4 mg L<sup>-1</sup>) over 21 days. Time series RDX and nitroso-triazine concentrations in dissolved (surface and porewater) and sorbed phases (sediment and suspended particulates) were analyzed. Distributions of DIN species (ammonium, nitrate + nitrite and dissolved N2) in sediments and overlying water were also measured along with geochemical variables in the aquaria. Partitioning of RDX and RDX-derived breakdown products onto surface sediment represented 13% of the total added <sup>15</sup>N as RDX (<sup>15</sup>N-[RDX]) equivalents after 21 days. Measured nitroso-triazines in the aquaria accounted for 6-13% of total added <sup>15</sup>N-[RDX]. <sup>15</sup>N-labeled DIN was found both in the oxic surface water and hypoxic porewaters, showing that RDX mineralization accounted for 34% of the <sup>15</sup>N-[RDX] added to the aquaria over 21 days. Labeled ammonium (<sup>15</sup>NH4<sup>+</sup>, found in sediment and overlying water) and nitrate + nitrite (<sup>15</sup>NOX, found in overlying water only) together represented 10% of the total added <sup>15</sup>N-[RDX]. The production of <sup>15</sup>N labeled N2 (<sup>15</sup>N2), accounted for the largest individual sink during the transformation of the total added <sup>15</sup>N-[RDX] (25%). Hypoxic sediment was the most favorable zone for production of N2, most of which diffused through porous sediments into the water column and escaped to the atmosphere."	"Isomers of Dinitropyrazoles: Synthesis, Comparison and Tuning of their Physicochemical Properties. Three isomeric dinitropyrazoles (DNPs) were synthesized starting from readily available 1H-pyrazole by slightly improved methods than described in the literature. 3,4-Dinitropyrazole (3), 1,3-dinitropyrazole (4), and 3,5-dinitropyrazole (5) were obtained and compared to each other with respect to thermal stability, crystallography, sensitivity and energetic performance. Two isomers (3 and 4) show high densities (1.79 and 1.76 g cm<sup>-3</sup> ) and interesting thermal behavior as melt-castable materials (3: Tmelt. =71 °C, Tdec. =285 °C; 5: Tmelt. = 68 °C, Tdec. =171 °C). Furthermore, eight salts (sodium, potassium, ammonium, hydrazinium, hydroxylammonium, guanidinium, aminoguanidinium and 3,6,7-triamino-[1,2,4]triazolo[4,3-b][1,2,4]triazole (TATOT) of 3 and 5 were synthesized in order to tune performance and sensitivity values. These compounds were characterized using <sup>1</sup> H, <sup>13</sup> C, <sup>14</sup> N, <sup>15</sup> N NMR and IR spectroscopy as well as mass spectrometry, elemental analysis and thermal analysis through differential scanning calorimetry. Crystal structures of 14 compounds were obtained (3-7, 10-12 and 15-20) by low-temperature single crystal X-ray diffraction. Impact, friction and electrostatic discharge (ESD) values were also determined by standard methods. The sensitivity values range between 8.5 and 40 J for impact and 240 N and 360 N for friction and show mainly insensitive character. The energetic performances were determined using recalculated X-ray densities, heats of formation and the EXPLO5 code and support the energetic character of the title compounds. The calculated energetic performances (VD : 6245-8610 m s<sup>-1</sup> ; pCJ : 14.1-30.8 GPa) were compared to RDX ((O2 NNCH2 )3 )."	"A difunctional azido-cobalt(ii) coordination polymer exhibiting slow magnetic relaxation behaviour and high-energy characteristics with good thermostability and insensitivity. A novel one-dimensional azido-cobalt(ii) compound, [Co2(1-mbt)2(N3)4]n (1) (1-mbt = 1-((2-propyl-imidazol-1-yl)methyl)-benzo[1,2,3]triazole), was solvothermally synthesized. X-ray crystal structure analysis demonstrates that two crystallographically independent Co(ii) atoms in the asymmetrical unit of compound 1 exhibit a rectangular pyramid geometry. The 3D supermolecular network of 1 consists of well-isolated 1D metal chains in which the azido bridging ligands assume an unusual pattern of combination with the Co(ii) centre as the sign of [-EE-EO-EO-EO-]n. The various coordination modes of the azido anion are responsible for different magnetic exchanges between the adjacent Co(ii) ions. The end-to-end (EE) mode mediates the antiferromagnetic coupling, whereas the end-on (EO) manner contributes to the ferromagnetic interaction. Magneto-structural relationships are discussed with the aid of theoretical calculations which are employed to find the potential single-ion magnetic anisotropy and reproduce the observed magnetic coupling properly. Alternating current magnetic susceptibility measurements reveal that 1 features a typical behaviour of field-induced slow magnetic relaxation. Energetic characterization evidences that the resulting compound possesses satisfactory detonation properties, superior lack of sensitivity and thermostability owing to the high nitrogen content (N% = 40.10%) and a coherent intrachain configuration. The kinetic parameters of the exothermic processes for 1 are investigated by the Kissinger method and the Ozawa method. We note that 1 has potential application prospects as a new generation of environmentally friendly high-energy materials based on this nitrogen-rich and oxygen-free system. In addition, the compound is developed as a practical additive to promote the thermal decomposition of ammonium perchlorate (AP) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). The finding in this work highlights an example of effective development of advanced magneto-energetic materials."	"Subchronic, chronic, lethal and sublethal toxicity of insensitive munitions mixture formulations relative to individual constituents in Hyalella azteca. Insensitive munitions (IMs) are replacing conventional munitions, improving safety from unintended detonation. IMs are deployed in mixture formulations but little is known about their mixture toxicology. We characterized mixture effects of the IM formulations IMX-101 (mixture of 2,4-dinitroanisole [DNAN], 3-nitro-1,2,4-triazol-5-one [NTO], and nitroguanidine [NQ]) and IMX-104 (DNAN, NTO, and hexahydro-1,3,5-trinitro-1,3,5-triazine [RDX]) in subchronic (10 d) and chronic (35 d) water-only tests in Hyalella azteca assessing impacts on survival, growth and reproduction. In 10-d single chemical exposures, DNAN was the most potent constituent, eliciting an LC50 of 16.0 mg/L; the LC50s for NTO and NQ were 891 and 565 mg/L, respectively. RDX did not elicit significant mortality up to 29.5 mg/L, a concentration near its solubility limit. Based on toxic-units (TUs), the toxicity of IMX-101 was driven by the effective concentration of DNAN; however, the presence of NTO, RDX, or both elicited interactive effects causing an approximately 2-fold decrease in lethality for IMX-104. Growth reduction was observed in 10-d exposures to DNAN, IMX-101 and IMX-104, but not for NQ, NTO, or RDX. Longer exposure duration (35 d) to IMX-101, IMX-104, and DNAN resulted in 3-6 times higher sensitivity for lethality and resulted in the most sensitive endpoint for DNAN, RDX, and IMX-101 exposures, decreased reproduction. Slight, but statistically significant, antagonistic responses among IMX-101 constituents were observed for survival and reproduction at 35d. Overall, the results support response-additive summation as a sufficient method to provide conservative hazard assessments of subchronic, chronic, and sublethal IMX-101 and IMX-104 mixture impacts in H. azteca."	"Alkali Metals-Based Energetic Coordination Polymers as Promising Primary Explosives: Crystal Structures, Energetic Properties, and Environmental Impact. Coordination polymers (CPs) consisting of alkali metals (Na, K, Rb, and Cs) and a powerful nitrogen- and oxygen-rich energetic ligand (4,4'-bis(dinitromethyl)-3,3'-bisnitramide-methylene-furazanate, DBMF<sup>2-</sup> ) were developed. Molecular structures of these CPs, confirmed by single-crystal X-ray diffraction analysis, indicated that the same ligand takes on a U-shaped state for Na and an N-shaped state for K, Rb, and Cs. Explosion tests demonstrated that both Na2 DBMF and K2 DBMF efficiently detonated the secondary explosive RDX. This indicates that they are both effective primary explosives. K2 DBMF exhibits better calculated detonation performance (D: 8227 m s<sup>-1</sup> ; P: 32.5 GPa) than the primary explosive Pb(N3 )2 . In addition, toxicity tests and evaluation of their decomposition products reveal their low impact on the environment. Both experimental results and theoretical analyses indicate that the combination of alkali metals and a powerful energetic ligand can stimulate the development of primary explosives."	"Comprehensive genomic diagnosis of non-syndromic and syndromic hereditary hearing loss in Spanish patients. Sensorineural hearing loss (SNHL) is the most common sensory impairment. Comprehensive next-generation sequencing (NGS) has become the standard for the etiological diagnosis of early-onset SNHL. However, accurate selection of target genomic regions (gene panel/exome/genome), analytical performance and variant interpretation remain relevant difficulties for its clinical implementation. We developed a novel NGS panel with 199 genes associated with non-syndromic and/or syndromic SNHL. We evaluated the analytical sensitivity and specificity of the panel on 1624 known single nucleotide variants (SNVs) and indels on a mixture of genomic DNA from 10 previously characterized lymphoblastoid cell lines, and analyzed 50 Spanish patients with presumed hereditary SNHL not caused by GJB2/GJB6, OTOF nor MT-RNR1 mutations. The analytical sensitivity of the test to detect SNVs and indels on the DNA mixture from the cell lines was &gt; 99.5%, with a specificity &gt; 99.9%. The diagnostic yield on the SNHL patients was 42% (21/50): 47.6% (10/21) with autosomal recessive inheritance pattern (BSND, CDH23, MYO15A, STRC [n = 2], USH2A [n = 3], RDX, SLC26A4); 38.1% (8/21) autosomal dominant (ACTG1 [n = 3; 2 de novo], CHD7, GATA3 [de novo], MITF, P2RX2, SOX10), and 14.3% (3/21) X-linked (COL4A5 [de novo], POU3F4, PRPS1). 46.9% of causative variants (15/32) were not in the databases. 28.6% of genetically diagnosed cases (6/21) had previously undetected syndromes (Barakat, Usher type 2A [n = 3] and Waardenburg [n = 2]). 19% of genetic diagnoses (4/21) were attributable to large deletions/duplications (STRC deletion [n = 2]; partial CDH23 duplication; RDX exon 2 deletion). In the era of precision medicine, obtaining an etiologic diagnosis of SNHL is imperative. Here, we contribute to show that, with the right methodology, NGS can be transferred to the clinical practice, boosting the yield of SNHL genetic diagnosis to 50-60% (including GJB2/GJB6 alterations), improving diagnostic/prognostic accuracy, refining genetic and reproductive counseling and revealing clinically relevant undiagnosed syndromes."	"Thyroid cancer cells in space during the TEXUS-53 sounding rocket mission - The THYROID Project. Human follicular thyroid cancer cells (FTC-133) were sent to space via a sounding rocket during the TEXUS-53 mission to determine the impact of short-term microgravity on these cells. To enable cell culture and fixation in real microgravity, an automated experiment container (EC) was constructed. In order to ensure safe cell culture, cell-chambers consisting of polycarbonate (PC) material were used. They were highly biocompatible as proved by measuring cell survival using Annexin V flow cytometry. In the follow-up experiment, FTC-133 cells were sent to space via a sounding rocket and were fixed before and after the microgravity (µg) phase with RNAlater. In addition, cells were tested for reactions on hypergravity (hyper-g) as much as 18 g to determine whether worst case acceleration during launch can have an influence on the cells. We investigated genes belonging to biological processes such as cytoskeleton, cell adhesion, tumor growth, angiogenesis and apoptosis. Pathway analyses revealed central functions of VEGFA and EGF. EGF upregulates aspartate beta-hydroxylase (ASPH) which is influencing CASP3. Hyper-g induced a significant up-regulation of TUBB1, VIM, RDX, CAV1, VEGFA and BCL2. FTC-133 cells grown in an automated EC exposed to µg revealed moderate gene expression changes indicating their survival in orbit."	"Electrical Conductivity Distribution in Detonating Benzotrifuroxane. Electrical conductivity profile behind the detonation front in the benzotrifuroxane (BTF) was measured using high-resolution technique. BTF is a peculiar high explosive which is completely hydrogen-free: its molecular formula is C6N6O6. Results are compared with the conductivity distributions in detonating hexogen (RDX, C3H6N6O6) and triaminotrinitrobenzene based explosive (TATB, C6H6N6O6). The conductivity in BTF was found to be similar to that observed in the common explosives which contain hydrogen. Thus, the contribution of hydrogen (e.g., ions produced by the dissociation of water) in the conductivity is minor, both in the reaction zone and in the final detonation products. The characteristics of the conductivity profiles generally support the idea of contact conductivity through the connected structures of carbon particles formed in the detonation wave."	"miR-409-3p suppresses the proliferation, invasion and migration of tongue squamous cell carcinoma via targeting RDX. The aim of the present study is to investigate the role of microRNA (miRNA/miR)-409-3p in the proliferation, invasion and migration of tongue squamous cell carcinoma (TSCC) cells via targeting radixin (RDX) gene. The expression of miR-409-3p was detected by reverse transcription-quantitative polymerase chain reaction (RT-qPCR) in TSCC tissue and cell lines. The binding of miR-409-3p to RDX was investigated by performing a dual-luciferase reporter gene assay. Tca8113 cells were selected to transfect with miR-409-3p mimic/inhibitor, small interfering (si)-RDX, and miR-409-3p inhibitor + si-RDX, as well as negative control (NC) respectively. The proliferative, migratory and invasive abilities of transfected Tca8113 cells were investigated by cell-counting-kit-8, wound-healing and Transwell assays, respectively. Additionally, a tumor xenograft model was constructed to examine the effects of miR-409-3p on the tumor growth and lymphatic metastasis in nude mice. A significant downregulation was detected in miR-409-3p expression in TSCC tissues and cells (all P&lt;0.05) compared with normal tongue mucosa tissues and cell line, which was associated with lymph node metastasis and tumor-node metastasis staging (both P&lt;0.05). The results from the dual-luciferase reporter gene assay indicated that RDX is a potential target gene of miR-409-3p. Compared with the blank group, a marked reduction in RDX expression, cell proliferation, migration and invasion was detected in the miR-409-3p mimic group and si-RDX group (all P&lt;0.05). Conversely, the reverse was observed in cells that were transfected with the miR-409-3p inhibitor. Furthermore, si-RDX is able to reverse the effect of miR-409-3p inhibitor on cell proliferation, invasion and migration (all P&lt;0.05). The results form the tumor xenograft model of nude mice verified that miR-409-3p mimic is able to inhibit the growth of Tca8113 tumor cells and lymph node metastasis in nude mice. miR-409-3p may delay the proliferation of TSCC cells by inhibiting of RDX so as to decrease its migratory and invasive abilities. Therefore, miR-409-3p may be a potential target for the clinical treatment of TSCC."	"Gem-dinitromethyl-substituted Energetic Metal-Organic Framework based on 1,2,3-Triazole from in situ Controllable Synthesis. Synthesizing energetic metal-organic frameworks at ambient temperature and pressure has been always a challenge in the research area of energetic materials. In this work, through in situ controllable synthesis, energetic metal-organic framework gem-dinitromethyl-substituted dipotassium 4,5-bis(dinitromethyl)-1,2,3-triazole with a &quot;cage-like&quot; crystal packing was obtained and characterized. Most importantly, for the first time, we found that it could be successfully afforded with a catalytic effect of trifluoroacetic acid. This new compound exhibited its high density (2.04 g cm<sup>-3</sup> ) at ambient temperature, superior detonation velocity (8715 m s<sup>-1</sup> ) to that of lead azide (5877 m s<sup>-1</sup> ) and comparable to that of RDX (8748 m s<sup>-1</sup> ). Its detonation products are mainly N2 (48.1 %), suggesting it is also a green energetic material. The above-mentioned performance indicates its potential applications in detonator devices as lead-free primary explosive."	"A New Wipe-Sampling Instrument for Measuring the Collection Efficiency of Trace Explosives Residues. Trace explosives detection, a crucial component of many security screening environments, commonly employs wipe-sampling. Since collection of an explosive residue is necessary for detection, it is important to have a thorough understanding of the parameters that affect the efficiency of collection. Current wipe-sampling evaluation techniques for explosive particles have their limits: manual sampling (with fingers or a wand) is limited in its ability to isolate a single parameter and the TL-slip/peel tester is limited to a linear sample path. A new wipe-sampling instrument, utilizing a commercial off-the-shelf (COTS) 3D printer repurposed for its XYZ stage, was developed to address these limitations. This system allowed, for the first time, automated two-dimensional wipe-sampling patterns to be studied while keeping the force and speed of collection constant for the length of the sampling path. This new instrument is not only capable of investigating the same parameters as current technology (wipe materials, test surfaces, forces of collection, and linear sample patterns), it has added capabilities to investigate additional parameters such as directional wipe patterns (i.e. &quot;L&quot; and &quot;U&quot; shapes, square, and serpentine) and allowing for multiple lines to be sampled during a single collection without the need for adjustments by the user. In this work, parametric studies were completed using 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) and the COTS 3D printer for wipe-sampling to establish collection efficiencies for numerous scenarios. Trace explosives detection in field screening environments could be greatly improved with the ability to comprehensively investigate how a wide range of parameters individually affect collection by wipe-sampling. A screener who knows how to properly interrogate any given surface will be much more efficient at detecting trace explosives."	"Detection of explosives using negative ion mobility spectrometry in air based on dopant-assisted thermal ionization. The ionization source is an essential component of most explosive detectors based on negative ion mobility spectrometry. Conventional ion sources suffer from such inherent limitations as special safety regulations on radioactive sources or generating interfering ions (for non-radioactive sources) such as corona discharge operating in the air. In this study, a new negative ion source is introduced for ion mobility spectrometry that is based on thermal ionization and operates in the air, applicable to explosives detection. Our system consists of a heating filament powered by an isolated power supply connected to negative high voltage. The ionization is assisted by doping chlorinated compounds in the gas phase using chlorinated hydrocarbons in contact with the heating element to yield Cl<sup>-</sup> reactant ions. Several chlorinated hydrocarbons are evaluated as the reagent chemicals for providing Cl- reactant ions, of which CCl4 is identified as the best ionizing reagent. The ion source is evaluated by recording the ion mobility spectra of common explosives, including TNT, RDX, and PETN in the air. A detection limit of 150 pg is obtained for TNT. Compared to other ionization sources, the new source is found to be low-cost, simple, and long-lived, making it suited to portable explosives detection devices."	"Detection of Inorganic Salt-Based Homemade Explosives (HME) by Atmospheric Flow Tube-Mass Spectrometry. Using a commercial mass spectrometer interfaced with an atmospheric flow tube (AFT) allowed for the detection of a variety of inorganic compounds used as oxidizers in homemade explosives (HMEs) at picogram levels. The AFT provides reaction times of between 3 and 5 s with flows of 6 L/min, enabling detection levels, after thermal desorption, similar to those previously demonstrated for RDX vapor in the low parts per quadrillion range. The thermal desorption of chlorate and perchlorate salts resulted in the production of the corresponding anions which have higher electron affinities than that of the nitrate reactant ions. A dielectric barrier discharge, used as the ionization source, produced the nitrate reactant ions. In some instances, the molecular salt formed adducts with the nitrate, chlorate, and/or perchlorate anions, giving insight into the original identity of the salt cation. Urea nitrate, guanidine nitrate, and potassium nitrate were also detected as adducts with the nitrate reactant ion. The direct room-temperature vapor detection of urea nitrate and hydrogen peroxide, which have relatively high vapor pressures compared to the other salts in this study, is also demonstrated. Room-temperature vapor detection of chlorate and perchlorate salts is possible by the addition of a dilute acid which converts the salt into a more volatile acidic form. A discussion of the instrumentation, methods used, and the ionization chemistry is provided."	"Rapid Quantitative Analysis of Multiple Explosive Compound Classes on a Single Instrument via Flow-Injection Analysis Tandem Mass Spectrometry. A flow-injection analysis tandem mass spectrometry (FIA MSMS) method was developed for rapid quantitative analysis of 10 different inorganic and organic explosives. Performance is optimized by tailoring the ionization method (APCI/ESI), de-clustering potentials, and collision energies for each specific analyte. In doing so, a single instrument can be used to detect urea nitrate, potassium chlorate, 2,4,6-trinitrotoluene, 2,4,6-trinitrophenylmethylnitramine, triacetone triperoxide, hexamethylene triperoxide diamine, pentaerythritol tetranitrate, 1,3,5-trinitroperhydro-1,3,5-triazine, nitroglycerin, and octohy-dro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine with sensitivities all in the picogram per milliliter range. In conclusion, FIA APCI/ESI MSMS is a fast (&lt;1 min/sample), sensitive (~pg/mL LOQ), and precise (intraday RSD &lt; 10%) method for trace explosive detection that can play an important role in criminal and attributional forensics, counterterrorism, and environmental protection areas, and has the potential to augment or replace several of the existing explosive detection methods."	"Simulating the unimolecular decomposition pathways of cyclotrimethylnitramine (RDX) : Decomposition pathways of RDX. Based on the three known proposed pathways for the uni-molecular decomposition of RDX, we have formulated the rate equations. A kinetic Monte Carlo code has been developed and used to simulate the uni-molecular decomposition of RDX based on these equations. The KMC simulations allow one to explore each of the decomposition pathways individually and also the three competing pathways at a specified temperature and pressure. The pressure dependence is incorporated using Lindemann's formalism. The code is validated by reproducing the species evolution along each pathway. Amongst the three proposed pathways, the most likely path of RDX decomposition and the time evolution of various molecular species at different ambient temperatures and pressures are obtained. An analytical model has been developed to reproduce the decomposition pathways, which matches the simulation results."	"Electrochemical Determination of TNT, DNT, RDX, and HMX with Gold Nanoparticles/Poly(Carbazole-Aniline) Film-Modified Glassy Carbon Sensor Electrodes Imprinted for Molecular Recognition of Nitroaromatics and Nitramines. Since nitroaromatic- and nitramine-type energetic materials, mostly arising from military activities, are persistent pollutants in soil and groundwater, on-site sensing of these hazardous chemicals has gained importance. A novel electrochemical sensor was designed for detecting nitroaromatic- and nitramine-type energetic materials, relying on gold nanoparticles (Aunano), modified glassy carbon (GC) electrode coated with nitro-energetic memory-poly(carbazole-aniline) copolymer (Cz- co-ANI) film (e.g., TNT memory-GC/P(Cz- co-ANI)-Aunano modified electrode). Current was recorded against concentration to build the calibration curves that were found to be linear within the range of 100-1000 μg L<sup>-1</sup> for 2,4,6-trinitrotoluene (TNT) and 2,4-dinitrotoluene (DNT): 50-1000 μg L<sup>-1</sup> for 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX) and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX). The corresponding limits of detection were 25 μg L<sup>-1</sup> for TNT, 30 μg L<sup>-1</sup> for DNT, and 10 μg L<sup>-1</sup> for both RDX and HMX, using nitro-energetic memory-GC/P(Cz- co-ANI)-Aunano electrodes. These electrodes were used separately, and specific determinations were made in various mixtures of nitro-energetic materials. The developed method could be efficiently used in electroanalyzing nitroaromatics and nitramines in military explosives (i.e., comp B, octol, and comp A5). The sensor electrodes were specific for the tested nitro-energetic compounds and did not respond to paracetamol-caffeine-based analgesic drug, acetylsalicylic acid (aspirin), sweetener, and sugar that can be used as camouflage materials in passenger belongings. The developed method was statistically validated against the standard LC-MS reference method in contaminated clay soil samples containing TNT and RDX explosives."	"Effect of pressure gradient and new phases for 1,3,5-trinitrohexahydro-s-triazine (RDX) under high pressures. Herein, pressure-induced phase transitions of RDX up to 50 GPa were systematically studied under different compression conditions. Precise phase transition points were obtained based on high-quality Raman spectra with small pressure intervals. This favors the correctness of the theoretical formula for detonation and the design of a precision weapon. The experimental results indicated that α-RDX immediately transformed to γ-RDX at 3.5 GPa due to hydrostatic conditions and possible interaction between the penetrating helium and RDX, with helium gas as the pressure-transmitting medium (PTM). Mapping of pressure distribution in samples demonstrates that the pressure gradient is generated in the chamber and independent of other PTMs. The gradient induced the first phase transition starts at 2.3 GPa and completed at 4.1 GPa. The larger pressure gradient promoted phase transition in advance under higher pressures. Experimental results supported that there existed two conformers of AAI and AAE for γ-RDX, as proposed by another group. δ-RDX was considered to only occur in a hydrostatic environment around 18 GPa using helium as the PTM. This study confirms that δ-RDX is independent of PTM and exists under non-hydrostatic conditions. Evidence for a new phase (ζ) was found at about 28 GPa. These 4 phases have also been verified via XRD under high pressures. In addition to this, another new phase (η) may exist above 38 GPa, and it needs to be further confirmed in the future. Moreover, all the phase transitions were reversible after the pressure was released, and original α-RDX was always obtained at ambient pressure."	"Classical Least Squares-Assisted Mid-Infrared (MIR) Laser Spectroscopy Detection of High Explosives on Fabrics. Mid-infrared (MIR) laser spectroscopy was used to detect the presence of residues of high explosives (HEs) on fabrics. The discrimination of the vibrational signals of HEs from a highly MIR-absorbing substrate was achieved by a simple and fast spectral evaluation without preparation of standards using the classical least squares (CLS) algorithm. Classical least squares focuses on minimizing the differences between the spectral features of the actual spectra acquired using MIR spectroscopy and the spectral features of calculated spectra modeled from linear combinations of the spectra of neat components: HEs, fabrics, and bias. Samples in several combinations of cotton fabrics/HEs were used to validate the methodology. Several experiments were performed focusing on binary, ternary, and quaternary mixtures of TNT, RDX, PETN, and fabrics. The parameters obtained from linear combinations of the calculated spectra were used to perform discrimination analyses and to determine the sensitivity and selectivity of HEs with respect to the substrates and to each other. However, discrimination analysis was not necessary to achieve successful detection of HEs on cotton fabric substrates. The RDX signals ( mRDX &gt; 0.02 mg) on cotton were used to calculate the limit of detection (LOD). The signal-to-noise ratios (S/N) calculated from the spectra of cotton dosed with decreasing masses of RDX until S/N ≈ 3 resulted in a LOD of 15-33 µg, depending on the vibrational band used. Linear fits generated by comparing the mass dosed RDX with the fraction predicted were also used to calculate the LOD based on the uncertainty of the blank and the slope. This procedure resulted in a LOD of 58 µg. Probably the most representative value of the method LOD was calculated using an interpolation of a threshold determined using the predicted average value for the blank plus 3.28 times the standard deviations ( p-value threshold) for low surface dosages of RDX (LOD = 40 µg). The contribution demonstrates that to achieve HE detection on fabrics using the proposed algorithm, i.e., determining the presence/absence of HEs on the substrates, the library must contain the spectra of HEs, substrates, and potential interferents or that these spectra be added to the models in the field. If the model does not contain the spectra of the fabric components, there is a high probability of finding false positives for clean samples (no HEs) and a low probability for failed detection in samples with HEs. More work will be required to demonstrate that these new approaches to HE detection work on real-world samples and when contaminating materials are present in the samples."	"Synthesis and Characterization of 4-(1,2,4-Triazole-5-yl)furazan Derivatives as High-Performance Insensitive Energetic Materials. 3-Nitro-4-(5-nitro-1,2,4-triazol-3-yl)furazan (2), N,N'-bis(trinitroethyl)-3,5'-diamino-4-(1,2,4-triazol-3-yl)furazan (3), N,N'-bis(trinitroethyl)-3,5'-dinitramino-4-(1,2,4-triazol-3-yl)furazan (4) and eighteen nitrogen-rich salts (5 a, 5 b, 5 d-5 i, 5 g-1, 6 a-6 i) were designed and synthesized. These 4-(1,2,4-triazole-5-yl)furazan derivatives were fully characterized by IR and NMR spectra, elemental analysis, and differential scanning calorimetry (DSC). The solid-state structures of 2, 5 d, 5 e, 5 h, 5 g-1, 6 g, and 6 i were confirmed via single crystal X-ray analysis. Detonation performance (detonation velocities and pressures) of these energetic compounds was evaluated and the impact and friction sensitivities were measured using standard BAM technology. Some of the compounds, for example, 2 (D: 9152 m s<sup>-1</sup> , P=37.1 GPa) and 4 (D: 9355 m s<sup>-1</sup> , P=40.1 GPa) exhibit excellent detonation performance, which are comparable to the highly explosive benchmarks such as RDX (D: 8795 m s<sup>-1</sup> , P=34.9 GPa) and HMX (D: 9144 m s<sup>-1</sup> , P=39.2 GPa)."	"Molecular dynamic simulation for thermal decomposition of RDX with nano-AlH3 particles. Molecular dynamic simulation of a high explosive, RDX, mixed with AlH3 nanoparticles was performed by a newly parameterized ReaxFF force field. Testing of the ReaxFF shows that the mean absolute errors of the densities and bond lengths between calculated and experimental values are less than 7% and 3%, respectively. Using the ReaxFF, effects of AlH3 nanoparticles with different radii on the thermal decomposition of RDX were revealed. A new mechanism of the generation and the consumption of H2 was discovered in the explosion. The H2 is released by AlH3 firstly and then it reacts with NO2 and CO2 from the decomposition of RDX, leading to an increase of H2O, NO and CO. Meanwhile, the size effect of AlH3 upon the reaction was also revealed. As a result, the number of produced H2O and CO2 molecules increases by 10.38% and 56.85%, respectively, when the radius of AlH3 nanoparticles decreases from 1.10 to 0.68 nm. This showed that RDX decomposes more completely with smaller AlH3 nanoparticles, which was further demonstrated by the analysis of reaction residues and diffusion coefficients."	"Adsorption and oxidation of 3-nitro-1,2,4-triazole-5-one (NTO) and its transformation product (3-amino-1,2,4-triazole-5-one, ATO) at ferrihydrite and birnessite surfaces. The emerging insensitive munitions compound (IMC) 3-nitro-1,2,4-triazole-5-one (NTO) is currently being used to replace conventional explosives such as 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX), but the environmental fate of this increasingly widespread IMC remains poorly understood. Upon release from unexploded solid phase ordinances, NTO exhibits high aqueous solubility and, hence, potential mobilization to groundwater. Adsorption and abiotic transformation at metal oxide surfaces are possible mechanisms for natural attenuation. Here, the reactions at ferrihydrite and birnessite surfaces of NTO and its biotransformation product, 3-amino-1, 2, 4-triazol-5-one (ATO), were studied in stirred batch reactor systems at controlled pH (7.0). The study was carried out at metal oxide solid to solution ratios (SSR) of 0.15, 1.5 and 15 g kg<sup>-1</sup>. The samples were collected at various time intervals up to 3 h after reaction initiation, and analyzed using HPLC with photodiode array and mass spectrometric detection. We found no detectable adsorption or transformation of NTO upon reaction with birnessite, whereas ATO was highly susceptible to oxidation by the same mineral, showing nearly complete transformation within 5 min at 15 g kg<sup>-1</sup> SSR to urea, CO2(g) and N2(g). The mean surface-area-normalized pseudo-first order rate constant (k) for ATO oxidation by birnessite across all SSRs was 0.05 ± 0.022 h<sup>-1</sup> m<sup>-2</sup>, and oxidation kinetics were independent of dissolved O2 concentration. Both NTO and ATO were resistant to oxidation by ferrihydrite. However, NTO showed partial removal from solution upon reaction with ferrihydrite at 0.15 and 1.5 g kg<sup>-1</sup> SSR and complete loss at 15 g kg<sup>-1</sup> SSR due to strong adsorption. Conversely, ATO adsorption to ferrihydrite was much weaker than that measured for NTO."	"In situ pilot test for bioremediation of energetic compound-contaminated soil at a former military demolition range site. Bioremediation was performed in situ at a former military range site to assess the performance of native bacteria in degrading hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and 2,4-dinitrotoluene (2,4-DNT). The fate of these pollutants in soil and soil pore water was investigated as influenced by waste glycerol amendment to the soil. Following waste glycerol application, there was an accumulation of organic carbon that promoted microbial activity, converting organic carbon into acetate and propionate, which are intermediate compounds in anaerobic processes. This augmentation of anaerobic activity strongly correlated to a noticeable reduction in RDX concentrations in the amended soil. Changes in concentrations of RDX in pore water were similar to those observed in the soil suggesting that RDX leaching from the soil matrix, and treatment with waste glycerol, contributed to the enhanced removal of RDX from the water and soil. This was not the case with 2,4-DNT, which was neither found in pore water nor affected by the waste glycerol treatment. Results from saturated conditions and Synthetic Precipitation Leaching Procedure testing, to investigate the environmental fate of 2,4-DNT, indicated that 2,4-DNT found on site was relatively inert and was likely to remain in its current state on the site."	"Ion Mobility Spectrometer-Fragmenter-Ion Mobility Spectrometer Analogue of a Triple Quadrupole for High-Resolution Ion Analysis at Atmospheric Pressure. Two differential mobility analyzers (DMAs) acting as narrow band mobility filters are coupled in series, with a thermal fragmentation cell placed in between, such that parent ions selected in DMA1 are fragmented in the cell at atmospheric pressure, and their product ions are analyzed on DMA2. Additional mass spectrometer analysis is performed for ion identification purposes. A key feature of the tandem DMA is the short residence time (∼0.2 ms) of ions in the analyzer, compared to tens of milliseconds in drift tube ion mobility spectrometers (IMS). Ion fragmentation within the analyzer and associated mobility tails are therefore negligible for a DMA but not necessarily so in conventional IMS. This advantage of the DMA is demonstrated here by sharply defined product ion mobility peaks. Ambient pressure ion fragmentation has been previously demonstrated by both purely thermal means as well as rapidly oscillating intense electric fields. Our purely thermal fragmentation cell here achieves temperatures up to 700 °C measured inside the heating coil of a cylindrical ceramic heater, through whose somewhat colder axis we direct a beam of mobility-selected ions. We investigate tandem separation of chloride adducts from the explosives EGDN, nitroglycerine (NG), PETN, and RDX and from deprotonated TNT. Atmospheric pressure fragmentation of the first three ions yields one or several previously reported fragments, providing highly distinctive tandem DMA channels for explosive identification at 1 atm. RDX ions had not been previously fragmented at ambient pressure, yet [RDX + Cl]<sup>-</sup> converts up to 7% (at 300 °C) into a 166 m/ z product. The known high thermal resilience of TNT is confirmed here by its rather modest conversion, even when the ceramic is heated to 700 °C. At this temperature some previously reported fragments are found, but their mobilities are fairly close to each other and to the one of the far more abundant parent ion, making their identification by mobility alone problematic. We anticipate that moderately higher fragmenter temperatures will produce smaller fragments with mobilities readily separated from that of [TNT - H]<sup>-</sup>."	"Field validation of POCIS for monitoring at underwater munitions sites. The present study evaluated polar organic chemical integrative samplers (POCIS) for quantification of conventional munitions constituents, including trinitrotoluene (TNT), aminodinitrotoluenes, diaminonitrotoluenes, dinitrotoluene, and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in a field setting. The POCIS were deployed at varying distances from the commonly used explosive formulation composition B (39.5% TNT, 59.5% RDX, 1% wax) in an embayment of Santa Rosa Sound (Pensacola, FL, USA). Time-weighted averaged water concentrations from a 13-d deployment ranged from 9 to 103 ng/L for TNT and RDX, respectively, approximately 0.3 to 2 m from the source. Concentrations decreased with increasing distance from the source to below quantitation limits (5-7 ng/L) at stations greater than 2 m away. Moderate biofouling of POCIS membranes after 13 d led to a subsequent effort to quantify potential effects of biofouling on the sampling rate for munitions constituents. After biofouling was allowed to occur for periods of 0, 7, 14, or 28 d at the field site, POCIS were transferred to aquaria spiked with munitions constituents. No significant differences in uptake of TNT or RDX were observed across a gradient of biofouling presence, although the mass of fouling organisms on the membranes was statistically greater for the 28-d field exposure. The present study verified the high sensitivity and integrative nature of POCIS for relevant munitions constituents potentially present in aquatic environments, indicating that application at underwater military munitions sites may be useful for ecological risk assessment. Environ Toxicol Chem 2018;37:2257-2267. Published 2018 Wiley Periodicals Inc. on behalf of SETAC. This article is a US government work and, as such, is in the public domain in the United States of America."	"Effects on Neurons and Hippocampal Slices by Single and Multiple Primary Blast Pressure Waves From Detonating Spherical Cyclotrimethylenetrinitramine (RDX) Explosive Charges. Threshold shock-impulse levels required to induce cellular injury and cumulative effects upon single and/or multiple exposures are not well characterized. Currently, there are few in vitro experimental models with blast pressure waves generated by using real explosives in the laboratory for investigating the effects of primary blast-induced traumatic brain injury. An in vitro indoor experimental platform is developed using real military explosive charges to accurately represent battlefield blast exposure and to probe the effects of primary explosive blast on dissociated neurons and tissue slices. Preliminary results indicate that physical insults altered membrane permeability, impacted cellular viability, created axonal beadings, and led to synaptic protein loss in hippocampal slice cultures. Injuries from blast under the conditions that were examined did not appear to cause immediate or sustained damage to the cells. Three consecutive primary blasts failed to disrupt the overall cellular integrity in the hippocampal slice cultures and produced a unique type of pathology comprised with distinct reduction in synaptic proteins before cellular deterioration set in. These observed changes might add to the challenges in regard to enhancing our understanding of the complex biochemical and molecular mechanisms caused by primary blast-induced injury."	"Sorption of Nitro Explosives to Polymer/Biomass-Derived Biochar. Factors affecting the sorptive removal of nitro explosives (2,4,6-trinitrotoluene [TNT] and hexahydro-1,3,5-trinitro-1,3,5-triazine [RDX]) to polymer/biomass-derived biochar were investigated through batch experiments. Compared with that of rice ( L.) straw (RS)-derived biochar, the sorption of TNT and RDX to polymer/RS-derived biochar was greatly enhanced by &gt;2.5 and 4 times, respectively. The type and amount of polymer did not significantly affect the sorption of nitro explosives to polymer/RS-derived biochar. Pyrolysis temperature did not affect the sorption capacity. Surface treatment with acid or an oxidant did not significantly change the sorption capacity, suggesting that polymer residues may be strongly responsible for the enhancement. Possible polymer residues were identified via gas chromatography mass spectrometry analysis. The toxicity characteristic leaching procedure and Microtox bioassay analyses indicated that polymer/RS-derived biochar did not show possible harmful effects. Our results suggest that polymer/RS-derived biochar can be effectively used as a sorbent to remove nitro explosives both in the natural environment and engineered systems."	"Transcriptomics provides mechanistic indicators of mixture toxicology for IMX-101 and IMX-104 formulations in fathead minnows (Pimephales promelas). Within the US military, new insensitive munitions (IMs) are rapidly replacing conventional munitions improving safety from unintended detonation. Toxicity data for IM chemicals are expanding rapidly, however IM constituents are typically deployed in mixture formulations, and very little is known about their mixture toxicology. In the present study we sought to characterize the mixture effects and toxicology of the two predominant IM formulations IMX-101 and IMX-104 in acute (48 h) larval fathead minnow (Pimephales promelas) exposures. IMX-101 consists of a mixture of 2,4-dinitroanisole (DNAN), 3-nitro-1,2,4-triazol-5-one (NTO), and nitroguanidine (NQ) while IMX-104 is composed of DNAN, NTO, and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). DNAN was the most potent constituent in IMX-101 eliciting an LC50 of 36.1 mg/L, whereas NTO and NQ did not elicit significant mortality in exposures up to 1040 and 2640 mg/L, respectively. Toxic unit calculations indicated that IMX-101 elicited toxicity representative of the component concentration of DNAN within the mixture. Toxicogenomic responses for the individual constituents of IMX-101 indicated unique transcriptional expression and functional responses characteristic of: oxidative stress, impaired energy metabolism, tissue damage and inflammatory responses in DNAN exposures; impaired steroid biosynthesis and developmental cell-signaling in NQ exposures; and altered mitogen-activated protein kinase signaling in NTO exposures. Transcriptional responses to the IMX-101 mixture were driven by the effects of DNAN where expression and functional responses were nearly identical comparing DNAN alone versus the fractional equivalent of DNAN within IMX-101. Given that each individual constituent of the IMX-101 mixture elicited unique functional responses, and NTO and NQ did not interact with DNAN within the IMX-101 mixture exposure, the overall toxicity and toxicogenomic responses within acute exposures to the IMX-101 formulation are indicative of &quot;independent&quot; mixture toxicology. Alternatively, in the IMX-104 exposure both DNAN and RDX were each present at concentrations sufficient to elicit lethality (RDX LC50 = 28.9 mg/L). Toxic-unit calculations for IMX-104 mixture formulation exposures indicated slight synergistic toxicity (ΣTU LC50 = 0.82, 95% confidence interval = 0.73-0.90). Unique functional responses relative to DNAN were observed in the IMX-104 exposure including responses characteristic of RDX exposure. Based on previous transcriptomics responses to acute RDX exposures in fathead minnow larvae, we hypothesize that the potentially synergistic responses within the IMX-104 mixture are related to interactive effects of each DNAN and RDX on oxidative stress mitigation pathways."	"Cu(OH)₂ and CuO Nanorod Synthesis on Piezoresistive Cantilevers for the Selective Detection of Nitrogen Dioxide. Self-controlled active oscillating microcantilevers with a piezoresistive readout are very promising sensitive sensors, despite their small surface. In order to increase this surface and consequently their sensitivity, we nanostructured them with copper hydroxide (Cu(OH)₂) or with copper oxide (CuO) nanorods. The Cu(OH)₂ rods were grown, on a homogeneous copper layer previously evaporated on the top of the cantilever. The CuO nanorods were further obtained by the annealing of the copper hydroxide nanostructures. Then, these copper based nanorods were used to detect several molecules vapors. The results showed no chemical affinity (no formation of a chemical bond) between the CuO cantilevers and the tested molecules. The cantilever with Cu(OH)₂ nanorods is selective to nitrogen dioxide (NO₂) in presence of humidity. Indeed, among all the tested analytes, copper hydroxide has only an affinity with NO₂. Despite the absence of affinity, the cantilevers could even so condensate explosives (1,3,5-trinitro-1,3,5-triazinane (RDX) and pentaerythritol tetranitrate (PETN) on their surface when the cantilever temperature was lower than the explosives source, allowing their detection. We proved that in condensation conditions, the cantilever surface material has no importance and that the nanostructuration is useless because a raw silicon cantilever detects as well as the nanostructured ones."	"Investigation of a new passive sampler for the detection of munitions compounds in marine and freshwater systems. Over the last century, unexploded ordnances have been disposed of in marine shelf systems because of a lack of cost-effective alternatives. Underwater unexploded ordnances have the potential to leak 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitro-1,3,5-triazine (RDX), commonly used chemical munitions, and contaminate local waters, biota, and sediments. The rate at which this contamination occurs in the environment is relatively unknown, and the cost- and time-prohibitive nature of sampling across sites makes mapping difficult. In the present study we assessed the efficacy of ethylene-vinyl acetate (EVA) for sampling relatively soluble munitions compounds over a range of environmental conditions (i.e., changes in temperature and salinity) and optimized the composition of the passive sampling polymer. The EVA sampler was able to successfully detect ambient concentrations of lingering munitions compounds from field sites containing unexploded ordnances. The sampler affinity for the munitions in terms of an EVA-water partition coefficient was greater than the standard octanol water values for each target compound. Partitioning of compounds onto EVA over the natural ranges of salinity did not change significantly, although uptake varied consistently and predictably with temperature. Increasing the vinyl acetate to ethylene ratio of the polymer corresponded to an increase in uptake capacity, consistent with enhanced dipole-dipole interactions between the munitions and the polymer. This sampler provides a cost-effective means to map and track leakage of unexploded ordnances both spatially and temporally. Environ Toxicol Chem 2018;37:1990-1997. © 2018 SETAC."	"Theoretical study of the heats of formation, detonation properties, and bond dissociation energies of substituted bis-1,2,4-triazole compounds. The heats of formation (HOFs), detonation properties, and bond dissociation energies (BDEs) of a series of energetic bis-1,2,4-trizaole compounds with different substituents were studied using density functional theory at the 6-311 + G(2df, 2p) level. The HOF results indicated that the presence of the substituents -NH2, -NO2, -NHNO2, and -N3 markedly increases the HOFs of bis-1,2,4-trizaole compounds. The calculated detonation velocities and detonation pressures indicated that the presence of the substituents -NH2, -NO2, -NHNO2, -CH(NO2)2, and -OH strongly enhances the detonation properties of bis-1,2,4-trizaole compounds. The BDEs results indicated that the presence of the substituents -H, -NH2, and -OH substituent groups greatly improves the thermal stabilities of bis-1,2,4-trizaole compounds. Based on its detonation properties and BDEs, one of the bis-1,2,4-trizaole compounds (B6) is a potential alternative explosive to 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX)."	"Study by Monte Carlo methods of an explosives detection system made up with a D-D neutron generator and NaI(Tl) gamma detectors. Detection of hidden explosives is of utmost importance for homeland security. Several configurations of an Explosives Detection System (EDS) to intercept hidden threats, made up with a Deuterium-Deuterium (D-D) compact neutron generator and NaI (Tl) scintillation detectors, have been evaluated using MCNP6 code. The system's response to various samples of explosives, such as RDX and Ammonium Nitrate, is analysed. The D-D generator is able to produce fast neutrons with 2.5 MeV energy in a maximum yield of 10<sup>10</sup> n/s. It is surrounded by high-density polyethylene to thermalize the fast neutrons and to optimize interactions with the sample inspected, whose emission of gamma rays gives a characteristic spectrum of the elements that constitute it. This procedure allows to determine its chemical composition and to identify the type of substance. The necessary shielding is evaluated to estimate its thicknesses depending on the admissible dose of operation, using lead and polyethylene. The results show that its functionality is promising in the field of national security for explosives inspection."	"Investigation of polar organic chemical integrative sampler (POCIS) flow rate dependence for munition constituents in underwater environments. Munition constituents (MC) are present in aquatic environments throughout the world. Potential for fluctuating release with low residence times may cause concentrations of MC to vary widely over time at contaminated sites. Recently, polar organic chemical integrative samplers (POCIS) have been demonstrated to be valuable tools for the environmental exposure assessment of MC in water. Flow rate is known to influence sampling by POCIS. Because POCIS sampling rates (Rs) for MC have only been determined under quasi-static conditions, the present study evaluated the uptake of 2,4,6-trinitrotoluene (TNT), RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine), and 2,4- and 2,6-dinitrotoluenes (DNT), by POCIS in a controlled water flume at 7, 15, and 30 cm/s in 10-day experiments using samplers both within and without a protective cage. Sampling rate increased with flow rate for all MC investigated, but flow rate had the strongest impact on TNT and the weakest impact on RDX. For uncaged POCIS, mean Rs for 30 cm/s was significantly higher than that for 7 cm by 2.7, 1.9, 1.9, and 1.3 folds for TNT, 2,4-DNT, 2,6-DNT, and RDX, respectively. For all MC except RDX, mean Rs for caged POCIS at 7 cm/s were significantly lower than for uncaged samplers and similar to those measured at quasi-static condition, but except for 2,6-DNT, no caging effect was measured at the highest flow rate, indicating that the impact of caging on Rs is flow rate-dependent. When flow rates are known, flow rate-specific Rs should be used for generating POCIS-derived time-averaged concentrations of MC at contaminated sites."	"Fabrication of a self-assembled and flexible SERS nanosensor for explosive detection at parts-per-quadrillion levels from fingerprints. Apart from high sensitivity and selectivity of surface-enhanced Raman scattering (SERS)-based trace explosive detection, efficient sampling of explosive residue from real world surfaces is very important for homeland security applications. Herein, we demonstrate an entirely new SERS nanosensor fabrication approach. The SERS nanosensor was prepared by self-assembling chemically synthesized gold triangular nanoprisms (Au TNPs), which we show display strong electromagnetic field enhancements at the sharp tips and edges, onto a pressure-sensitive flexible adhesive film. Our SERS nanosensor provides excellent SERS activity (enhancement factor = ∼6.0 × 106) and limit of detection (as low as 56 parts-per-quadrillions) with high selectivity by chemometric analyses among three commonly military high explosives (TNT, RDX, and PETN). Furthermore, the SERS nanosensors present excellent reproducibility (&lt;4.0% relative standard deviation at 1.0 μM concentration) and unprecedentedly high stability with a &quot;shelf life&quot; of at least 5 months. Finally, TNT and PETN were analyzed and quantified by transferring solid explosive residues from fingerprints left on solid surfaces to the SERS nanosensor. Taken together, the demonstrated sensitivity, selectivity, and reliability of the measurements as well as with the excellent shelf life of our SERS nanosensors obviate the need for complicated sample processing steps required for other analytical techniques, and thus these nanosensors have tremendous potential not only in the field of measurement science but also for homeland security applications to combat acts of terror and military threats."	"Tandem copper and gold nanoclusters for two-color ratiometric explosives detection. We report a sensory platform for the determination of common explosive species (e.g., TNT, PETN, RDX) based on the differential response from two different luminescent metal nanoclusters. In particular, whereas the red emission from bovine serum albumin-protected gold nanoclusters was strongly quenched by nitro-, nitrate-, and nitroamine-containing explosive organic molecules, blue-emitting glutathione-capped copper nanoclusters proved inert to quenching by these same analytes, instead showing evidence for aggregation-induced emission enhancement (AIEE). As a result, this discrete gold/copper nanocluster pairing provides a dual-probe, ratiometric (red-to-blue) system signaling the presence of TNT and other common explosives. This strategy opens up new potential for nanocluster-based analyte signaling, with implications to fluorescence resonance energy transfer (FRET) strategies as well."	"Integration of paper spray ionization high-field asymmetric waveform ion mobility spectrometry for forensic applications. Paper spray ionization (PSI) is an attractive ambient ionization source for mass spectrometry (MS) since it allows the combination of surface sampling and ionization. The minimal sample preparation inherent in this approach greatly reduces the time needed for analysis. However, the ions generated from interfering compounds in the sample and the paper substrate may interfere with the analyte ions. Therefore, the integration of PSI with high-field asymmetric ion mobility spectrometry (FAIMS) is of significant interest since it should reduce the background ions entering the mass analyzer without complicating the analysis or increasing analysis time. Here we demonstrate the integration of PSI with FAIMS/MS and its potential for analysis of samples of forensic interest. In this work, the parameters that can influence the integration, including sampling and ionization by paper spray, the FAIMS separation of analytes from each other and background interferences, and the length of time that a usable signal can be observed for explosives on paper, were evaluated with the integrated system. In the negative ion analysis of 2,4,6-trinitrotoluene (TNT), pentaerythritol tetranitrate (PETN), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), and 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), amounts as low as 1 ng on paper were readily observed. The successful positive ion separation of a set of illicit drugs including heroin, methamphetamine, and cocaine was also achieved. In addition, the positive ion analysis of the chemical warfare agent simulants dimethyl methylphosphonate (DMMP) and diisopropyl methylphosphonate (DIMP) was evaluated. The integration of PSI-FAIMS/MS was demonstrated for the analyses of explosives in negative ion mode and for illicit drugs and CW simulants in positive mode. Paper background ions that could interfere with these analyses were separated by FAIMS. The compensation voltage of an ion obtained by FAIMS provided an additional identification parameter to be combined with the mass spectrum for each analyte."	"Impact of surface energy on the shock properties of granular explosives. This paper presents the first part of a two-fold molecular dynamics study of the impact of the granularity on the shock properties of high explosives. Recent experimental studies show that the granularity can have a substantial impact on the properties of detonation products {i.e., variations in the size distributions of detonation nanodiamonds [V. Pichot et al., Sci. Rep. 3, 2159 (2013)]}. These variations can have two origins: the surface energy, which is a priori enhanced from micro- to nano-scale, and the porosity induced by the granular structure. In this first report, we study the impact of the surface-energy contribution on the inert shock compression of TATB, TNT, α-RDX, and β-HMX nano-grains (triaminotrinitrobenzene, trinitrotoluene, hexogen and octogen, respectively). We compute the radius-dependent surface energy and combine it with an ab initio-based equation of state in order to obtain the resulting shock properties through the Rankine-Hugoniot relations. We find that the enhancement of the surface energy results in a moderate overheating under shock compression. This contribution is minor with respect to porosity, when compared to a simple macroscopic model. This result motivates further atomistic studies on the impact of nanoporosity networks on the shock properties."	"C8 N26 H4 : An Environmentally Friendly Primary Explosive with High Heat of Formation. The synthesis and characterization of the metal-free polyazido compounds 3,6-bis-(2-(4,6-diazido-1,3,5-triazin-2-yl)-hydrazinyl)-1,2,4,5-tetrazine (2) and 3,6-bis-(2-(4,6-diazido-1,3,5-triazin-2-yl)-diazenyl)-1,2,4,5-tetrazine (4) are presented. Two compounds were characterized by NMR spectra, IR spectroscopy, mass spectrometry, and differential scanning calorimetry (DSC). Additionally, the structure of 2 was confirmed by single-crystal X-ray diffraction. Compounds 2 and 4 exhibit measured densities (1.755 g cm<sup>-3</sup> and 1.763 g cm<sup>-3</sup> ), good thermal stabilities (194 °C and 189 °C), high heat of formation (2114 kJ mol<sup>-1</sup> and 2820 kJ mol<sup>-1</sup> ), and excellent detonation performance (D, 8365 m s<sup>-1</sup> and 8602 m s<sup>-1</sup> ; P, 26.8 GPa and 29.4 GPa). Furthermore, compounds 2 and 4 have been tested for their priming ability to detonate RDX. The results indicate that the title compound 2 is a potential environmentally friendly alternative candidate to lead-based primary explosives."	"A Conceptual Model of Fate and Transport Processes for RDX Deposited to Surface Soils of North American Active Demolition Sites. The use of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) as an energetic material (EM) in ammunition constituents such as detonators, primers, mines, and rocket boosters and in plastic explosives has led to an international warning on possible soil, surface water, and groundwater contamination on military training sites. In Canada, the demolition sites of range training areas are known to be the second most contaminated sites by EM residues in terms of their concentrations in soil after anti-tank ranges. This research proposes a conceptual model of the presence of RDX at the field scale at demolition sites according to previous soil and water characterization studies. This model illustrates the origin of RDX contamination, the main RDX transport pathways and processes, and the main threatened receptors. This conceptual model is of importance to visualize and understand RDX's environmental fate and behavior and to ultimately enable the production of a detailed quantitative model that can help to manage those RDX-contaminated sites."	"Chemical Selectivity and Sensitivity of a 16-Channel Electronic Nose for Trace Vapour Detection. Good chemical selectivity of sensors for detecting vapour traces of targeted molecules is vital to reliable detection systems for explosives and other harmful materials. We present the design, construction and measurements of the electronic response of a 16 channel electronic nose based on 16 differential microcapacitors, which were surface-functionalized by different silanes. The e-nose detects less than 1 molecule of TNT out of 10<sup>+12</sup> N₂ molecules in a carrier gas in 1 s. Differently silanized sensors give different responses to different molecules. Electronic responses are presented for TNT, RDX, DNT, H₂S, HCN, FeS, NH₃, propane, methanol, acetone, ethanol, methane, toluene and water. We consider the number density of these molecules and find that silane surfaces show extreme affinity for attracting molecules of TNT, DNT and RDX. The probability to bind these molecules and form a surface-adsorbate is typically 10<sup>+7</sup> times larger than the probability to bind water molecules, for example. We present a matrix of responses of differently functionalized microcapacitors and we propose that chemical selectivity of multichannel e-nose could be enhanced by using artificial intelligence deep learning methods."	"[Study on changes of calpain and myocardial damage in rats with burn-blast combined injury]. Objective: To study myocardial damage and rules of calpain change in rats with burn-blast combined injury. Methods: One hundred and twenty-eight male SD rats were randomly divided into control group, burn group, blast group, burn-blast group, with 32 rats in each group. 37 degrees' warm water for 12 s; Burn group: 94 degrees' boiling water for 12 s; Blast group: 5 g cyclonite explode in 75 cm distance from left chest wall of rat; Burn-blast group: burn group and blast group combined modeling method. At 6, 24, 48, 72 h observation points after injury, abdominal aorta blood samples and myocardial specimen were collected. Left ventricular ejection fraction (EF), left ventricular fractional shortening index (FS) were measured through color Doppler ultrasound instrument; Myocardial tissue was stained with hematoxylin-eosin (HE); serum cardiac troponin I (CTnI) and creatine kinase isoenzyme (CK-MB) were detected; detection of cell apoptosis in myocardial tissue was performed by terminal deoxynucleotidyl transferase-mediated dUTP notch labeling technique (Tunel). Expression levels of calpain mRNA level and protein were detected with Real-time fluorescent quantitative polymerase chain reaction (RT-PCR) and Western imprinting method analysis; calpain activity was detected by fluorescence spectrophotometry. Results: The injury of burn-blast combined injured rats was obvious, including myocardial interstitial edema, large area of myocardial cell degeneration and disintegration and the number of neutrophil infiltration increased. Cardiac function decreased 24 h after injury in burn group, blast group, burn-blast group; both EF and FS were significant lower than those of control group (all P&lt;0.05). FS at 48, 72 h and EF at 72 h in burn-blast group were significantly lower than those of burn group, blast group at the same time points (all P&lt;0.05); the level of cTnI in burn-blast group rose and was higher than control group at all time points, higher than the burn group, blast group at 48 h (all P&lt;0.05). CK-MB in burn-blast group rats increased after injury, lowered at 24 h and rose again at 48 h. The level was significantly higher than control group and burn group (both P&lt;0.05). Comparing to control group, myocardial apoptosis index in burn group, blast group and burn-blast group were significantly increased (all P&lt;0.05). Those of burn group (25.3±4.0) at 24 h and (28.8±5.3) at 48 h were significantly lowered than burn-blast group (43.3±9.4), (53.3±10.4) at same time points, and burn group (31.9±6.7) at 72 h was significantly higher than blast group (17.3±6.3) (all P&lt;0.05). Compared to control group, Calpain mRNA and protein expression in myocardial tissue were significantly increased in burn-blast group at all time points (all P&lt;0.05). Calpain activity reached the peak at 24 h after injury, then gradually declined, and was significantly higher than control group (all P&lt;0.05). Conclusion: Calpain expression and activity increase in burn-blast combined injured rats which leads to myocardial damage. 目的: 探讨烧冲复合伤大鼠心肌损伤及钙蛋白酶的变化规律。 方法: 128只雄性SD大鼠按随机数字表法分为对照组、烧伤组、冲击伤组、复合伤组各32只。对照组:37 ℃温水中12 s,烧伤组:94 ℃的沸水中12 s,冲击伤组:5 g黑索今距离大鼠左胸壁75 cm爆炸,复合伤组:5 g黑索今距离大鼠左胸壁75 cm爆炸后94 ℃的沸水中12 s。伤后6、24、48、72 h 4个观察点,采集腹主动脉血和心肌标本;测定左心室射血分数(EF)、左心室短轴缩短指数(FS);心肌组织HE染色;血清肌钙蛋白I(CTnI)、肌酸激酶同工酶(CK-MB)检测;Tunel染色检测心肌组织细胞凋亡;实时荧光定量聚合酶链反应(RT-PCR)及Western印迹法分析心肌中钙蛋白酶mRNA及蛋白表达变化;荧光光度法检测钙蛋白酶活性。 结果: 复合伤组伤情变化明显,心肌间质水肿明显,可见大面积心肌细胞变性及崩解,中性粒细胞浸润数量增多。伤后24 h烧伤组、冲击伤组、复合伤组心功能下降,EF和FS均显著低于对照组(均P&lt;0.05)。复合伤组伤后72 h时FS和EF,48 h时FS均显著低于烧伤组、冲击伤组(均P&lt;0.05);复合伤组cTnI上升,各个时间点均显著高于对照组,48 h时均显著高于烧伤组与冲击伤组(均P&lt;0.05);复合伤组CK-MB伤后逐渐升高,24 h时降低,48 h时再升高且均显著高于对照组与烧伤组(均P&lt;0.05)。伤后烧伤组、冲击伤组、复合伤组心肌凋亡指数均显著高于对照组(均P&lt;0.05),烧伤组24、48 h时分别为(25.3±4.0)、(28.8±5.3),均显著低于同时间点复合伤组的(43.3±9.4)、(53.3±10.4),烧伤组72 h时为(31.9±6.7),显著高于冲击伤组的(17.3±6.3)(均P&lt;0.05)。各时间点复合伤组心肌组织中钙蛋白酶mRNA和蛋白相对表达量均显著高于对照组(均P&lt;0.05)。复合伤组心肌钙蛋白酶活性伤后24 h达到高峰,后逐渐下降,各时间点均显著高于对照组(均P&lt;0.05)。 结论: 烧冲复合伤后大鼠出现心肌损伤,钙蛋白酶蛋白表达升高、活性增强。."	"Dissolution and transport of insensitive munitions formulations IMX-101 and IMX-104 in saturated soil columns. Military training exercises can result in deposition of energetic residues on range soils, which ultimately can contaminate groundwater with munitions constituents. Column experiments followed by HYDRUS-1D modeling were conducted to evaluate dissolution and transport of energetic constituents from the new insensitive munitions (IM) formulations IMX-101, a mixture of 3-nitro-1,2,4-triazol-5-one (NTO), nitroguanidine (NQ), and 2, 4-dinitroanisole (DNAN), and IMX-104, a mixture of NTO, 1,3,5-hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and DNAN. NTO and DNAN are emerging contaminants associated with the development of insensitive munitions as replacements for traditional munitions. Flow interruption experiments were performed to investigate dissolution kinetics and sorption non-equilibrium between soil and solution phases. The results indicated that insensitive munitions compounds dissolved in order of their aqueous solubility, consistent with prior dissolution studies conducted in the absence of soil. Initial elution of the high concentration pulse of highly soluble NTO and NQ was followed by lower concentrations, while DNAN had generally lower and more constant concentrations in leachate. The sorption of NTO and NQ was low, while RDX, 1,3,5,7-octahydro-1,3,5,7-tetranitrotetrazocine (HMX, an impurity in technical grade RDX), and DNAN all exhibited appreciable sorption. DNAN transformation was observed, with formation of amino-reduction products 2-ANAN (2-amino-4-nitroanisole) and 4-ANAN (4-amino-2-nitroanisole). HYDRUS-1D model, incorporating one-dimensional advective-dispersive transport with particle dissolution and first-order solute transformation was used to simulate the measured breakthrough curves. Optimized dissolution parameters varied widely but were correlated between compounds in the same formulation. Determined adsorption coefficients generally agreed with values determined from batch and column studies conducted with pure NTO and DNAN, while mass-loss rate coefficients were in better agreement with ones from batch than column studies possibly due to suppression of microbial transformation during elution of high concentrations of explosives. Even in the low organic matter soils selected in this study DNAN experienced significant retardation and transformation, indicating potential for its natural attenuation."	"Energetic Di- and Trinitromethylpyridines: Synthesis and Characterization. Pyridine derivatives based on the addition of trinitromethyl functional groups were synthesized by the reaction of N₂O₄ with the corresponding pyridinecarboxaldoximes, then they were converted into dinitromethylide hydrazinium salts. These energetic compounds were fully characterized by IR and NMR spectroscopy, elemental analysis, differential scanning calorimetry (DSC), and X-ray crystallography. These pyridine derivatives have good densities, positive enthalpies of formation, and acceptable sensitivity values. Theoretical calculations carried out using Gaussian 03 and EXPLO5 programs demonstrated good to excellent detonation velocities and pressures. Each of these compounds is superior in performance to TNT, while 2,6-bis(trinitromethyl)pyridine (D = 8700 m·s<sup>-1</sup>, P = 33.2 GPa) shows comparable detonation performance to that of RDX, but its thermal stability is too low, making it inferior to RDX."	"Improving post-detonation energetics residues estimations for the Life Cycle Environmental Assessment process for munitions. The Life Cycle Environmental Assessment (LCEA) process for military munitions tracks possible environmental impacts incurred during all phases of the life of a munition. The greatest energetics-based emphasis in the current LCEA process is on manufacturing. A review of recent LCEAs indicates that energetics deposition on ranges from detonations and disposal during training is only peripherally examined through assessment of combustion products derived from closed-chamber testing or models. These assessments rarely report any measurable energetic residues. Field-testing of munitions for energetics residues deposition has demonstrated that over 30% of some energetic compounds remain after detonation, which conflicts with the LCEA findings. A study was conducted in the open environment to determine levels of energetics residue deposition and if combustion product results can be correlated with empirical deposition results. Energetics residues deposition, post-detonation combustion products, and fine aerosolized energetics particles following open-air detonation of blocks of Composition C4 (510 g RDX/block) were quantified. The deposited residues amounted to 3.6 mg of energetic per block of C4, or less than 0.001% of the original energetics. Aerial emissions of energetics were about 7% of the amount of deposited energetics. This research indicates that aerial combustion products analysis can provide a valuable supplement to energetics deposition data in the LCEA process but is insufficient alone to account for total residual energetics. This study demonstrates a need for the environmental testing of munitions to quantify energetics residues from live-fire training."	"Explosive detection using a novel dielectric barrier discharge ionisation source for mass spectrometry. The detection of explosives is of great importance, as is the need for sensitive, reliable techniques that require little or no sample preparation and short run times for high throughput analysis. In this work, a novel ionisation source is presented based on a dielectric barrier discharge (DBD). This not only affects desorption and ionisation but also forms an ionic wind, providing mass transportation of ions towards the mass spectrometer. Furthermore, the design incorporates 2 asymmetric alumina sheets, each containing 3 DBDs, so that a large surface area can be analysed. The DBD operates in ambient air, overcoming the limitation of other plasma-based techniques which typically analyse smaller surface areas and require solvents or gases. A range of explosives across 4 different functional groups was analysed using the DBD with low limits of detection for cyclotrimethylene trinitramine (RDX) (100 pg), pentaerythritol trinitrate (PETN) (100 pg), hexamethylene triperoxide diamide (HMTD) (1 ng), and trinitrotoluene (TNT) (5 ng). Detection was achieved without any sample preparation or the addition of reagents to facilitate adduct formation."	"Glucocorticoids, genes and brain function. The identification of key genes in transcriptomic data constitutes a huge challenge. Our review of microarray reports revealed 88 genes whose transcription is consistently regulated by glucocorticoids (GCs), such as cortisol, corticosterone and dexamethasone, in the brain. Replicable transcriptomic data were combined with biochemical and physiological data to create an integrated view of the effects induced by GCs. The most frequently reported genes were Errfi1 and Ddit4. Their up-regulation was associated with the altered transcription of genes regulating growth factor and mTORC1 signaling (Gab1, Tsc22d3, Dusp1, Ndrg2, Ppp5c and Sesn1) and progression of the cell cycle (Ccnd1, Cdkn1a and Cables1). The GC-induced reprogramming of cell function involves changes in the mRNA level of genes responsible for the regulation of transcription (Klf9, Bcl6, Klf15, Tle3, Cxxc5, Litaf, Tle4, Jun, Sox4, Sox2, Sox9, Irf1, Sall2, Nfkbia and Id1) and the selective degradation of mRNA (Tob2). Other genes are involved in the regulation of metabolism (Gpd1, Aldoc and Pdk4), actin cytoskeleton (Myh2, Nedd9, Mical2, Rhou, Arl4d, Osbpl3, Arhgef3, Sdc4, Rdx, Wipf3, Chst1 and Hepacam), autophagy (Eva1a and Plekhf1), vesicular transport (Rhob, Ehd3, Vps37b and Scamp2), gap junctions (Gjb6), immune response (Tiparp, Mertk, Lyve1 and Il6r), signaling mediated by thyroid hormones (Thra and Sult1a1), calcium (Calm2), adrenaline/noradrenaline (Adcy9 and Adra1d), neuropeptide Y (Npy1r) and histamine (Hdc). GCs also affected genes involved in the synthesis of polyamines (Azin1) and taurine (Cdo1). The actions of GCs are restrained by feedback mechanisms depending on the transcription of Sgk1, Fkbp5 and Nr3c1. A side effect induced by GCs is increased production of reactive oxygen species. Available data show that the brain's response to GCs is part of an emergency mode characterized by inactivation of non-core activities, restrained inflammation, restriction of investments (growth), improved efficiency of energy production and the removal of unnecessary or malfunctioning cellular components to conserve energy and maintain nutrient supply during the stress response."	"Engineered Biomolecular Recognition of RDX by Using a Thermostable Alcohol Dehydrogenase as a Protein Scaffold. There are many biotechnology applications that would benefit from simple, stable proteins with engineered biomolecular recognition. Here, we explored the hypothesis that a thermostable alcohol dehydrogenase (AdhD from Pyrococcus furiosus) could be engineered to bind a small molecule instead of a cofactor or molecules involved in the catalytic transition state. We chose the explosive molecule 1,3,5-trinitro-1,3,5-triazine (royal demolition explosive, RDX) as a proof-of-concept. Its low solubility in water was exploited for immobilization for biopanning by using ribosome display. Docking simulations were used to identify two potential binding sites in AdhD, and a randomized library focused on tyrosine or serine mutations was used to determine that RDX was binding in the substrate binding pocket of the enzyme. A fully randomized binding pocket library was selected, and affinity maturation by error-prone PCR led to the identification of a mutant (EP-16) that gained the ability to bind RDX with an affinity of (73±11) μm. These results underscore the way in which thermostable enzymes can be useful scaffolds for expanding the biomolecular recognition toolbox."	"Reaching a Vapor Sensitivity of 0.01 Parts Per Quadrillion in the Screening of Large Volume Freight. The feasibility of detecting explosives in the atmosphere at concentrations as low as 0.01 ppq hinges on the poorly known question of what interfering species exist at these or higher concentrations. To clarify the issue, hundreds of samples of ambient air, either clean or loaded with explosives (from lightly contaminated environments) have been collected in fiberglass/stainless steel filters coated with Tenax-GR, thermally desorbed at variable temperature, and ionized with Cl<sup>-</sup> via secondary electrospray (SESI). They are analyzed with a narrow-band mobility filter (SEADM's P5 DMA) and a triple quadrupole mass spectrometer (Sciex's 5500), configured in series to transmit precursor and fragment ions of the explosives Nitroglycerin, PETN, RDX, and TNT. Blanks were sampled outdoors at a rural site (Boecillo, Valladolid, Spain), and loads were sampled at diverse locations. For RDX and TNT, atmospheric background inhibits detection below 1 part/trillion (ppt) without mobility filtering. This interference was drastically reduced by the DMA, allowing detection up to 1 part/quadrillion (ppq). Further sensitivity increase was achieved by scanning over a mobility region several percent around that of the target explosive, to separate various isobaric compounds by Gaussian deconvolution. (i) All four MS/MS channels analyzed exhibit several background peaks within the narrow mobility intervals investigated. At least one of these interferents is much stronger than the instrument background at the explosive's mobility, making DMA separation most helpful. (ii) For Nitroglycerin and PETN the combined filtering techniques have not lowered ambient chemical noise down to 0.01 ppq. (iii) Interferents are greatly reduced for TNT and RDX, resulting in minimal chemical noise: 322 blank tests for RDX yielded mean signal of 0.0012 ppq and standard deviation σ = 0.0035 ppq (mean + 3σ detection limit of 0.01 ppq)."	"Contamination with explosives in analytical laboratory procedure. The philosophy underlying the procedure with the trace from the moment of the securing of the evidence up to its ultimate inspection is of significance for the result achieved. Hands of the people who conduct investigative action or of the experts involved in examinations contaminated with explosives may adversely affect results of the analyses. The contamination effect is one of the most dangerous consequences of non-observance of the strict rules in handling the traces secured on the crime scene. The aim of this research work was to examine whether at all, and if so, with what an ease and at which stage of the analytical procedure there occurs a likely contamination of the evidence material with explosives such as TNT, RDX, PETN, NG. The analytical procedure employed consisted of the sampling stage, extraction from gauze swab, transfer of the extract and execution of an instrumental analysis based on gas chromatography with electron capture detector (ECD). The most significant contamination effect was observed during the analytical procedure for TNT, followed by a similar, yet less pronounced, for RDX and PETN. Contaminating the research material with nitroglycerin, known to be liquid under normal conditions, proved unsuccessful."	"Sensitive and specific detection of explosives in solution and vapour by surface-enhanced Raman spectroscopy on silver nanocubes. Surface-enhanced Raman spectroscopy (SERS) has been widely utilised as a sensitive analytical technique for the detection of trace levels of organic molecules. The detection of organic compounds in the gas phase is particularly challenging due to the low concentration of adsorbed molecules on the surface of the SERS substrate. This is particularly the case for explosive materials, which typically have very low vapour pressures, limiting the use of SERS for their identification. In this work, silver nanocubes (AgNCs) were developed as a highly sensitive SERS substrate with very low limit-of-detection (LOD) for explosive materials down to the femtomolar (10<sup>-15</sup> M) range. Unlike typical gold-based nanostructures, the AgNCs were found suitable for the detection of both aromatic and aliphatic explosives, enabling detection with high specificity at low concentration. SERS studies were first carried out using a model analyte, Rhodamine-6G (Rh-6G), as a probe molecule. The SERS enhancement factor was estimated as 8.71 × 10<sup>10</sup> in this case. Further studies involved femtomolar concentrations of 2,4-dinitrotoluene (DNT) and nanomolar concentrations of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), as well as vapour phase detection of DNT."	"Ecotoxicity of the insensitive munitions compound 3-nitro-1,2,4-triazol-5-one (NTO) and its reduced metabolite 3-amino-1,2,4-triazol-5-one (ATO). The insensitive munitions compound 3-nitro-1,2,4-triazol-5-one (NTO) was recently approved by the U.S. Army to replace cyclotrimethylene trinitramine (RDX) in conventional explosives. As its use becomes widespread, concern about the potential toxicity of NTO increases. NTO can undergo microbial reduction to 3-amino-1,2,4-triazol-5-one (ATO), which is recalcitrant in waterlogged soils. In this study, the acute toxicity of NTO and ATO towards various organisms, including microorganisms (i.e., methanogenic archaea, aerobic heterotrophs, and Aliivibrio fischeri (Microtox assay)), the microcrustacean Daphnia magna (ATO only), and zebrafish embryos (Danio rerio), was assessed. NTO was notably more inhibitory to methanogens than ATO (IC50=1.2mM,&gt;62.8mM, respectively). NTO and ATO did not cause noteworthy inhibition on aerobic heterotrophs even at the highest concentrations tested (32.0mM). High concentrations of both NTO and ATO were required to inhibit A. fischeri (IC20=19.2, 22.4mM, respectively). D. magna was sensitive to ATO (LC50=0.27mM). Exposure of zebrafish embryos to NTO or ATO (750μM) did not cause lethal or developmental effects (22 endpoints tested). However, both compounds led to swimming behavior abnormalities at low concentrations (7.5μM). The results indicate that the reductive biotransformation of NTO could enhance or lower its toxicity according to the target organism."	"Natural and Enhanced Attenuation of Explosives on a Hand Grenade Range. 2,4,6-Trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (Royal Demolition Explosive, or RDX) deposited on hand grenade training ranges can leach through the soil and impact shallow groundwater. A 27-mo field monitoring project was conducted to evaluate the transport and attenuation of high explosives in variably saturated soils at an active grenade range located at Fort Bragg, NC. Two approaches were evaluated: (i) natural attenuation in grenade Bay C; and (ii) enhanced attenuation in Grenade Bay T. There was no evidence of TNT accumulation or leaching in surface soils or pore water in either bay, consistent with parallel laboratory studies showing aerobic and anaerobic biodegradation of TNT. In the untreated Bay C, the low saturated hydraulic conductivity () combined with high rainfall and warm summer temperatures resulted in reducing conditions (low oxidation-reduction potential), an increase in dissolved Mn, and a rapid decline in nitrate and RDX. In Bay T, the somewhat greater and lower soil organic C level resulted in more oxidizing conditions with greater RDX leaching. A single-spray application of glycerin and lignosulfonate to the soil surface in Bay T was effective in generating reducing conditions and stimulating RDX biodegradation for ∼1 yr."	"Laboratory Column Evaluation of High Explosives Attenuation in Grenade Range Soils. High explosives (HEs) deposited on military ranges can leach through the soil and contaminate groundwater. We examined the transport and fate of HEs in laboratory columns containing soils from two hand grenade bays (Bays C and T) and the impact of organic amendments on biodegradation. Soil characteristics were similar; however, Bay C had somewhat higher clay and organic C. Experimental treatments included addition of crude glycerin and lignosulfonate, and parallel control columns. Experimental results showed extensive 2,4,6-trinitrotoluene (TNT) degradation with minimal leaching, consistent with prior batch microcosm results. Amendment addition enhanced TNT degradation in both Bays C and T compared with controls. Although hexahydro-1,3,5-trinitro-1,3,5-triazine (Royal Demolition Explosive, or RDX) did not biodegrade in prior aerobic batch microcosms, 64 to 77% of RDX biodegraded in untreated soil columns with O present in the mobile soil gas. The RDX biodegradation was likely associated with short-term anoxic conditions or anoxic micro-niches. In nearly saturated Bay C columns, RDX removal increased to &gt;92%. Amendment addition to unsaturated Bay T columns increased RDX removal to &gt;86%. In one column, the soil remained anoxic (O &lt; 5% by volume) for about a year after amendment addition, significantly reducing RDX leaching. Nitroso degradation products were produced equivalent to 9 to 39% of the RDX degraded, with most retained in the soil (9-37%) and 0 to 3% in the effluent. These results demonstrate that RDX biodegradation can occur in soils with measurable O, and that amendment addition can reduce RDX leaching by stimulating anaerobic biodegradation."	"Exploiting the energetic potential of 1,2,4-oxadiazole derivatives: combining the benefits of a 1,2,4-oxadiazole framework with various energetic functionalities. A series of 1,2,4-oxadiazole-derived energetic compounds were successfully synthesized using 1,2,4-oxadiazole-3-chloroxime as a versatile starting material. These energetic compounds were fully characterized by NMR spectroscopy, IR spectroscopy, and elemental analysis. The structures of compounds 5, 6a, 6c, 8 and 8a were determined by single crystal X-ray diffraction. The physicochemical and energetic properties of all the synthesized energetic compounds, including density, thermal stability and energetic performance (e.g., detonation velocities and detonation pressures) were investigated. Among these energetic compounds, hydrazinium salts 6b and 8b and hydroxylammonium salts 6c and 8c exhibit satisfactory calculated detonation performances, which outperform the commonly used high explosive RDX. Potassium salt 5 shows good detonation performance, high density as well as high sensitivity, making it a potential primary explosive. Compound 9 is a potential candidate for melt-cast explosives due to its remarkable liquid range between melting point (Tm = 98 °C) and decomposition temperature (Td = 208 °C)."	"A systematic tandem mass spectrometric study of anion attachment for improved detection and acidity evaluation of nitrogen-rich energetic compounds. The development of rapid, efficient, and reliable detection methods for the characterization of energetic compounds is of high importance to security forces concerned with terrorist threats. With a mass spectrometric approach, characteristic ions can be produced by attaching anions to analyte molecules in the negative ion mode of electrospray ionization mass spectrometry (ESI-MS). Under optimized conditions, formed anionic adducts can be detected with higher sensitivities as compared with the deprotonated molecules. Fundamental aspects pertaining to the formation of anionic adducts of 1,3,5,7-tetranitro-1,3,5,7-tetrazocane (HMX), 1,3,5-trinitro-1,3,5-triazinane (RDX), pentaerythritol tetranitrate (PETN), nitroglycerin (NG), and 1,3,5-trinitroso-1,3,5-triazinane energetic (R-salt) compounds using various anions have been systematically studied by ESI-MS and ESI tandem mass spectrometry (collision-induced dissociation) experiments. Bracketing method results show that the gas-phase acidities of PETN, RDX, and HMX fall between those of HF and acetic acid. Moreover, PETN and RDX are each less acidic than HMX in the gas phase. Nitroglycerin was found to be the most acidic among the nitrogen-rich explosives studied. The ensemble of bracketing results allows the construction of the following ranking of gas-phase acidities: PETN (1530-1458 kJ/mol) &gt; RDX (approximately 1458 kJ/mol) &gt; HMX (approximately 1433 kJ/mol) &gt; nitroglycerin (1427-1327.8 kJ/mol)."	"Carbon dioxide binary crystals via the thermal decomposition of RDX at high pressure. A carbon dioxide and nitrous oxide solid solution has been captured in a diamond anvil cell following the thermal decomposition of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) at high temperatures and pressures. This is the first time a carbon dioxide binary solid has been observed at high pressure. This observation has stimulated low temperature crystallographic studies of this binary system using recently developed gas absorption apparatus and computational modelling."	"UbcD1 regulates Hedgehog signaling by directly modulating Ci ubiquitination and processing. The Hh pathway controls many morphogenetic processes in metazoans and plays important roles in numerous pathologies and in cancer. Hh signaling is mediated by the activity of the Gli/Ci family of transcription factors. Several studies in Drosophila have shown that ubiquitination by the ubiquitin E3 ligases Slimb and Rdx(Hib) plays a crucial role in controlling Ci stability dependent on the levels of Hh signals. If Hh levels are low, Slimb adds K11- and K48-linked poly-ubiquitin chains on Ci resulting in partial degradation. Ubiquitin E2 enzymes are pivotal in determining the topologies of ubiquitin chains. However, which E2 enzymes participate in the selective ubiquitination-degradation of Ci remains elusive. Here, we find that the E2 enzyme UbcD1 negatively regulates Hh signaling activity in Drosophila wing disks. Genetic and biochemical analyses in wing disks and in cultured cells reveal that UbcD1 directly controls Ci stability. Interestingly, UbcD1 is found to be selectively involved in Slimb-mediated Ci degradation. Finally, we show that the homologs of UbcD1 play a conserved role in modulating Hh signaling in vertebrates."	"Investigating differences in the ability of XplA/B-containing bacteria to degrade the explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). The xenobiotic hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is a toxic explosive and environmental pollutant. This study examines three bacterial species that degrade RDX, using it as a sole source of nitrogen for growth. Although isolated from diverse geographical locations, the species contain near identical copies of genes encoding the RDX-metabolising cytochrome P450, XplA and accompanying reductase, XplB. Sequence analysis indicates a single evolutionary origin for xplA and xplB as part of a genomic island, which has been distributed around the world via horizontal gene transfer. Despite the fact that xplA and xplB are highly conserved between species, Gordonia sp. KTR9 and Microbacterium sp. MA1 degrade RDX more slowly than Rhodococcus rhodochrous 11Y. Both Gordonia sp. KTR9 and Microbacterium sp. MA1 were found to contain single base-pair mutations in xplB which, following expression and purification, were found to encode inactive XplB protein. Additionally, the Gordonia sp. KTR9 XplB was fused to glutamine synthetase, which would be likely to sterically inhibit XplB activity. Although the glutamine synthetase is fused to XplB and truncated by 71 residues, it was found to be active. Glutamine synthetase has been implicated in the regulation of nitrogen levels; controlling nitrogen availability will be important for effective bioremediation of RDX."	"Indirect Determination of Pentaerythritol Tetranitrate (PETN) with a gold nanoparticles-based colorimetric sensor. Pentaerythritol tetranitrate (PETN) is the nitrate ester of pentaerythritol, used as an energetic and filling material for military and civilian purposes and rarely for terrorist actions. As there is no reliable nano-colorimetric method for PETN assay, we developed an indirect method based on the determination of nitrite, obtained by reduction of nitrate derived from the alkaline hydrolysis of PETN with H2O2. We colorimetrically determined the final product, nitrite, by both conventional Griess reaction and a recently developed gold nanoparticle-4-aminothiophenol-N-(1-naphthyl)-ethylenediamine (AuNP-4-ATP+NED) method. Nitramines (RDX and HMX), if present, could be degraded by alkaline hydrolysis, without affecting PETN. The analytical performance characteristics of the developed assays as molar absorptivity (ε), limits of detection (LOD) and quantification (LOQ) were: ɛ=1.06×10<sup>5</sup> L mol<sup>-1</sup> cm<sup>-1</sup>, LOD=0.03mgL<sup>-1</sup> and LOQ=0.11mgL<sup>-1</sup> for indirect Griess method; ɛ=1.9×10<sup>4</sup>Lmol<sup>-1</sup> cm<sup>-1</sup>; LOD=0.12mgL<sup>-1</sup> and LOQ=0.4mgL<sup>-1</sup> for AuNP-4-ATP+NED method. Both methods were applied to a 1:1 (w/w) mixture of PETN and TNT (corresponding to the composition of military explosive 'Pentolite'). In order to eliminate the interference from TNT, the Meisenheimer anion of TNT formed in alkaline medium was retained on a strongly basic anion exchange resin column. As PETN had a very low solubility in water, common soil ions could be eliminated by prewashing the sample with water, or in acetone-water mixtures, Ca<sup>2+</sup>, K<sup>+</sup>, Cl<sup>-</sup>, SO4<sup>2-</sup>, and NO3<sup>-</sup> could be tolerated at equal (1:1) mass ratios. Soil nitrates and nitrites, at a mass ratio of 50:1, could be separated from PETN with the aid of their insolubilities in acetone and of their retention affinity toward a strongly basic anion-exchange resin. The developed method was statistically validated against a reference GC-MS method."	"Preparation and Characterization of Cyclotrimethylenetrinitramine (RDX) with Reduced Sensitivity. The internal defects and shape of cyclotrimethylenetrinitramine (RDX) crystal are critical parameters for the preparation of reduced sensitivity RDX (RS-RDX). In the current study, RDX was re-crystallized and spheroidized to form the high-quality RDX that was further characterized by purity, apparent density, size distribution, specific surface area, impact sensitivity, and shock sensitivity. The effects of re-crystallization solvent on the growth morphology of RDX crystal were investigated by both theoretical simulation and experiment test, and consistent results were obtained. The high-quality RDX exhibited a high purity (≥99.90%), high apparent density (≥1.811 g/cm³), spherical shape, and relatively low impact sensitivity (6%). Its specific surface area was reduced more than 30%. Compared with conventional RDXs, the high-quality RDX reduced the shock sensitivities of PBXN-109 and PBXW-115 by more than 30%, indicating that it was a RS-RDX. The reduced sensitivity and good processability of the high-quality RDX would be significant in improving the performances of RDX-based PBXs."	"Military blast-induced synaptic changes with distinct vulnerability may explain behavioral alterations in the absence of obvious brain damage. Sadly many military veterans, who left home to serve their country honorably, return from service with permanent life-changing injuries. It is easy to remember our debt to those who have incurred such visible injuries, and all too easy to forget the invisible wounds that afflict so many of our military servicemen and women. Brain injuries can be invisible during initial medical evaluations and are often caused by military explosives that create blast shockwaves of varying intensity. One of the most common types of traumatic brain injury (TBI) linked to military service is blast-induced neurotrauma. To better understand this type of injury, a recently published study subjected rat brain slice cultures to detonations of RDX military explosives, resulting in reduced levels of specific synaptic markers. Such alterations have in fact been linked to depressive behavior, anxiety, and cognitive rigidity, and the blast-induced synaptic modifications may underlie the behavioral changes in those TBI sufferers who do not exhibit measurable brain damage. This research has the potential to improve diagnoses by identifying indicators of synapse integrity for the assessment of subtle synaptopathogenesis linked to blast-induced neurotrauma."	"Multivariate soil fertility relationships for predicting the environmental persistence of 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitro-1,3,5-tricyclohexane (RDX) among taxonomically distinct soils. After nearly a century of use in numerous munition platforms, TNT and RDX contamination has turned up largely in the environment due to ammunition manufacturing or as part of releases from low-order detonations during training activities. Although the basic knowledge governing the environmental fate of TNT and RDX are known, accurate predictions of TNT and RDX persistence in soil remain elusive, particularly given the universal heterogeneity of pedomorphic soil types. In this work, we proposed overcoming this problem by considering the environmental persistence of these munition constituents (MC) as multivariate mathematical functions over a variety of taxonomically distinct soil types, instead of a single constant or parameter of a specific absolute value. To test this idea, we conducted experiments where the disappearance kinetics of TNT and RDX were measured over a &gt;300 h period in taxonomically distinct soils. Classical fertility-based soil measurements were log-transformed, statistically decomposed, and correlated to TNT and RDX disappearance rates (k-TNTand k-RDX) using multivariate dimension-reduction and correlation techniques. From these efforts, we generated multivariate linear functions for k parameters across different soil types based on a statistically reduced set of their chemical and physical properties: Calculations showed that the soil properties exhibited strong covariance, with a prominent latent structure emerging as the basis for relative comparisons of the samples in reduced space. Loadings describing TNT degradation were largely driven by properties associated with alkaline/calcareous soil characteristics, while the degradation of RDX was attributed to the soil organic matter content - reflective of an important soil fertility characteristic. In spite of the differing responses to the munitions, batch data suggested that the overall nutrient dynamics were consistent for each soil type, as well as readily distinguishable from the other soil types used in this study. Thus, we hypothesized that the latent structure arising from the strong covariance of full multivariate geochemical matrix describing taxonomically distinguished &quot;soil types&quot; may provide the means for potentially predicting complex phenomena in soils."	"A Simple and Inexpensive Electrochemical Assay for the Identification of Nitrogen Containing Explosives in the Field. We report a simple and inexpensive electrochemical assay using a custom built hand-held potentiostat for the identification of explosives. The assay is based on a wipe test and is specifically designed for use in the field. The prototype instrument designed to run the assay is capable of performing time-resolved electrochemical measurements including cyclic square wave voltammetry using an embedded microcontroller with parts costing roughly $250 USD. We generated an example library of cyclic square wave voltammograms of 12 compounds including 10 nitroaromatics, a nitramine (RDX), and a nitrate ester (nitroglycine), and designed a simple discrimination algorithm based on this library data for identification."	"A computational study of ANTA and NTO derivatives. This work is a study of 5-amino-3-nitro-1,2,4-triazole (ANTA), 3-nitro-1,2,4-triazol-5-one (NTO), and nitrated derivatives of ANTA and NTO. RDX and TNT were studied for comparison. ANTA and NTO are low-sensitive high explosives with detonation properties comparable to 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitroperhydro-1,3,5-triazine (RDX). We showed previously that nitrated NTO and ANTA compounds, when used in a glycidyl azide polymer (GAP) matrix in rocket propellants, could give impulses above 2600 m/s and that the oxygen balance is positive. If used in aluminized explosives, the heat of detonation may be increased to a practical level significantly above RDX/aluminum compositions. Here, we use two different methods for sensitivity and two density functional theory functionals, B3LYP and M06-2X with the 6-31G(d) basis set, together with the complete basis set method CBS-4M. Calculations indicate that most of the nitrated derivatives have nearly equal sensitivity to RDX. Significantly different bond dissociation energies in the nitrimino functional group are predicted, although most models give much the same result."	"Synthesis and Characterization of 2,2'-Dinitramino-5,5'-bi(1-oxa-3,4-diazole) and Derivatives as Economic and Highly Dense Energetic Materials. 2,2'-Dinitramino-5,5'-bi(1-oxa-3,4-diazole) (2) is a new highly energetic material with superior calculated detonation performance in comparison to cyclo-1,3,5-trimethylene-2,4,6-trinitramine (RDX) and penta-erythritoltetranitrate (PETN) and can be prepared by an economical and practical two-step synthesis. The starting material 2,2'-diamino-5,5'-bi(1-oxa-3,4-diazole) (1) is synthesized by the reaction of oxalyl dihydrazide with cyanogen bromide. Nitration of 1 yields the title compound in perfect yield and purity. The combination of its high density of 1.986 g cm<sup>-3</sup> , the positive heat of formation (+190 kJ mol<sup>-1</sup> ), and a slightly positive oxygen balance (+6.2 %) results in ideal calculated detonation parameters (e.g. detonation velocity 9296 m s<sup>-1</sup> ). The sensitivities toward impact and friction can be adjusted by deprotonation and formation of corresponding nitrogen-rich salts, for example, ammonium (3), hydroxylammonium (4), and guanidinium (5) salts."	"Second hydrogen atom abstraction by molecular ions. We report the observation of a new physical phenomenon of the addition of 2 hydrogen atoms to molecular ions thus forming [M + 2H]<sup>+</sup> ions. We demonstrate such second hydrogen atom abstraction onto the molecular ions of pentaerythritol and trinitrotoluene (TNT). We used both gas chromatography mass spectrometry (GC-MS) with supersonic molecular beam (SMB) with methanol added into its make-up gas and electron ionization (EI) liquid chromatography mass spectrometry (LC-MS) with SMB with methanol as the LC solvent. We found that the formation of methanol clusters resulted upon EI in the formation of dominant protonated pentaerythritol ion at m/z = 137 plus about 70% relative abundance of pentaerythritol molecular ion with 2 additional hydrogen atoms at m/z = 138 which is well above the 5.7% natural C<sup>13</sup> isotope abundance of protonated pentaerythritol. Similarly, we found an abundant protonated TNT ion at m/z = 228 and a similar abundance of TNT molecular ion with 2 additional hydrogen atoms at m/z = 229. Upon the use of deuterated methanol (CD3 OD) as the solvent, we observed an abundant m/z = 231 (M + 2D)<sup>+</sup> of TNT with 2 deuterium atoms. We found such abundant second hydrogen atom abstraction with butylglycolate and at low abundances in dioctylphthalate, Vitamin K3, phenazine, and RDX. At this time, we are unable to report the magnitude and frequency of occurrence of this phenomenon in standard electrospray LC-MS. This observation could have important implications on the provision of elemental formula from mass spectra that are involved with protonated molecules. Accordingly, while accurate mass measurements can serve for the generation of elemental formula, their further support and improvement via isotope abundance analysis are questionable. Consequently, if a given compound can be analyzed by both GC-MS and LC-MS, its GC-MS analysis can be superior for the provision of accurate elemental formulae if its EI mass spectrum exhibits abundant molecular ions such as with GC-MS with SMB (also known as cold EI)."	"Application of paper spray ionization for explosives analysis. A desired feature in the analysis of explosives is to decrease the time of the entire analysis procedure, including sampling. A recently utilized ambient ionization technique, paper spray ionization (PSI), provides the possibility of combining sampling and ionization. However, an interesting phenomenon that occurs in generating negatively charged ions pose some challenges in applying PSI to explosives analysis. The goal of this work is to investigate the possible solutions for generating explosives ions in negative mode PSI. The analysis of 2,4,6-trinitrotoluene (TNT), pentaerythritol tetranitrate (PETN), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), and 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) was performed. Several solvent systems with different surface tensions and additives were compared to determine their effect on the ionization of explosives. The solvents tested include tert-butanol, isopropanol, methanol, and acetonitrile. The additives tested were carbon tetrachloride and ammonium nitrate. Of the solvents tested, isopropanol yielded the best results. In addition, adding ammonium nitrate to the isopropanol enhanced the analyte signal. Experimentally determined limits of detection (LODs) as low as 0.06 ng for PETN, on paper, were observed with isopropanol and the addition of 0.4 mM ammonium nitrate as the spray solution. In addition, the explosive components of two plastic explosive samples, Composition 4 and Semtex, were successfully analyzed via surface sampling when using the developed method. The analysis of explosives using PSI-MS in negative ion mode was achieved. The addition of ammonium nitrate to isopropanol, in general, enhanced the analyte signal and yielded better ionization stability. Real-world explosive samples were analyzed, which demonstrates one of the potential applications of PSI-MS analysis."	"Broadband Mid-Infrared Stand-Off Reflection-Absorption Spectroscopy Using a Pulsed External Cavity Quantum Cascade Laser. Broadband mid-infrared molecular spectroscopy is essential for detection and identification of many chemicals and materials. In this report, we present stand-off mid-infrared spectra of 1,3,5-trinitro-1,3,5-triazine or cyclotrimethylene trinitramine (RDX) residues on a stainless-steel surface measured by a broadband external cavity quantum cascade laser (QCL) system. The pulsed QCL is continuously scanned over 800 cm<sup>-1</sup> in the molecular fingerprint region and the amplitude of the reflection signal is measured by either a boxcar-averager-based scheme or a lock-in-amplifier-based scheme with 1 MHz and 100 kHz quartz crystal oscillators. The main background noise is due to the laser source instability and is around 0.1% of normalized intensity. The direct absorption spectra have linewidth resolution around 0.1 cm<sup>-1</sup> and peak height sensitivity around 10<sup>-2</sup> due to baseline interference fringes. Stand-off detection of 5-50 µg/cm<sup>2</sup> of RDX trace adsorbed on a stainless steel surface at the distance of 5 m is presented."	"Green Energetic Nitrogen-Rich Salts of 1,1'-Dinitramino-5,5'-bistetrazolate. A series of nitrogen-rich energetic salts of 1,1'-dinitramino-5,5'-bistetrazolate (DNABT) guanidinium (1), aminoguanidinium (2), diaminoguanidinium (3), triaminoguanidinium (4), diaminouronium (5), 3,4-diamino-1,2,4-triazolium (6), and ethylenediammonium (7) was synthesized by a metathesis strategy and characterized by elemental analysis, mass spectrometry, and IR spectroscopy as well as single-crystal X-ray diffraction and differential scanning calorimetry (DSC). The natural bond orbitals (NBOs) and electrostatic potentials (ESPs) were further computed for a better understanding of the structures of the DNABT molecule. The heats of formation were calculated based on the Born-Haber energy cycle. The detonation parameters were evaluated by using the EXPLO5 program, and the sensitivities were measured according to BAM standers. These new salts exhibit highly positive heats of formation (407.0-1377.9 kJ mol<sup>-1</sup> ) and good thermal stabilities (180-211 °C). Most of these compounds possess detonation velocities comparable to RDX and acceptable detonation pressures. The high volumes of explosion gases of the salts 3 and 4 (921 and 933 L kg<sup>-1</sup> , respectively) further support their power as explosives. The enhancing performances, the fact of being free of metals, and the more moderate sensitivities than K2 DNABT, suggest that the salts 4 (D=8851 m s<sup>-1</sup> , P=29.0 GPa), 5 (D=9053 m s<sup>-1</sup> , P=32.3 GPa), and 6 (D=8835 m s<sup>-1</sup> , P=30.2 GPa) might be potential environmentally friendly energetic materials."	"Novel laser induced photoacoustic spectroscopy for instantaneous trace detection of explosive materials. Laser photoacoustic spectroscopy (LPAS) is an attractive technology in terms of simplicity, ruggedness, and overall sensitivity; it detects the time dependent heat generated (thermo-elastic effect) in the target via interaction with pulsed optical radiation. This study reports on novel LPAS technique that offers instant and standoff detection capabilities of trace explosives. Over the current study, light is generated using pulsed Q-switched Nd:YAG laser; the generated photoacoustic response in stimulated explosive material offers signature values that depend on the optical, thermal, and acoustical properties. The generated acoustic waves were captured using piezoelectric transducer as well as novel customized optical sensor with remotely laser interferometer probe. A digital signal processing algorithm was employed to identify explosive material signatures via calculation of characteristic optical properties (absorption coefficient), sound velocity, and frequency response of the generated photoacoustic signal. Customized LPAS technique was employed for instantaneous trace detection of three main different high explosive materials including TNT, RDX, and HMX. The main outcome of this study is that the novel customized optical sensor signals were validated with traditional piezoelectric transducer. Furthermore, the customized optical sensor offered standoff detection capabilities (10cm), fast response, high sensitivity, and enhanced signal to noise ratio. This manuscript shaded the light on the instant detection of trace explosive materials from significant standoffs using novel customized LPAS technique."	"Synthesis and Detonation Properties of 5-Amino-2,4,6-trinitro-1,3-dihydroxy-benzene. 5-Amino-4,6-dinitro-1,3-dihydroxy-benzene (6) was synthesized through the ring-opening reaction of macrocyclic compound 4 with the aid of VNS (vicarious nucleophilic substitution of hydrogen) reaction conditions. The mechanism of ring opening of macrocyclic compound 4 was studied. 5-Amino-2,4,6-trinitro-1,3-dihydroxy-benzene (8) was obtained after the nitration of 6 in KNO3 and concentrated sulfuric acid. The thermal stability, sensitivity, and other detonation performances of 6 or 8 were compared to commercially used 1,3,5-triamino-2,4,6-trinitrobenzene (TATB) or 1,3,5-trinitrotriazacyclohexane (RDX), respectively. All target compounds were characterized by using single-crystal X-ray diffraction, NMR spectroscopy, elemental analysis, and differential scanning calorimetry. The sensitivities were determined by using BAM methods (drop-hammer and friction tests). Performance parameters, including heats of formation and detonation properties, were calculated by using Gaussian 03 and EXPLO5 v6.01 programs, respectively. It is worth pointing out that compound 8 has a remarkable measured density of 2.078 g cm<sup>-3</sup> at 298 K. In addition, compound 8 is more insensitive than RDX (compound 8: IS=11 J; RDX: IS=7 J; IS is the impact sensitivity)."	"Pushing the Limits of Oxygen Balance in 1,3,4-Oxadiazoles. Gem-trinitromethyl groups were introduced into a 1,3,4-oxadiazole ring to give the first example of a bifunctionalized single five-membered ring with six nitro groups. 2,5-Bis(trinitromethyl)-1,3,4-oxadiazole (12) has a high calculated crystal density of 2.007 g cm<sup>-3</sup> at 150 K (1.941 g cm<sup>-3</sup> at 293 K) and a very high positive oxygen balance (39.12%), which makes it a strong candidate as a high energy dense oxidizer. The dihydroxylammonium and dihydrazinium salts of bis(trinitromethyl)-1,3,4-oxadiazole (5 and 6) exhibit excellent calculated detonation properties (5, vD = 9266 m s<sup>-1</sup>, P = 38.9 GPa; 6, vD = 8900 m s<sup>-1</sup>, P = 36.3 GPa) and acceptable impact sensitivities (5 20 J, 6 19 J), which are superior to those of RDX (7.4 J) and HMX (7.4 J). Such attractive features support the application potential of the gem-polynitromethyl group in the design of advanced energetic materials. Surprisingly, 2,5-bis(trinitromethyl)-1,3,4-oxadiazole (12) is more thermally stable and less sensitive than its bis(dinitromethyl) analogue, 8."	"Self-assembly of silver(i)-based high-energy metal-organic frameworks (HE-MOFs) at ambient temperature and pressure: synthesis, structure and superior explosive performance. Two new high-energy metal-organic frameworks (HE-MOFs), {Ag2(DNMAF)(H2O)2}n (1) and {Ag2(DNMAF)}n (2) were prepared using potassium 4,4'-bis(dinitromethyl)-3,3'-azofurazanate (K2DNMAF) in a self-assembly strategy. Compound 1 exhibits a 3D HE-MOF structure with coordinated water molecules. Compound 2 exhibits compact solvent-free 3D HE-MOFs. Both compounds show good thermostability (decomposition temperature (Td) of 211 and 218 °C) and superior detonation velocities (D) of 9673 m s<sup>-1</sup> and 10 242 m s<sup>-1</sup>, detonation pressures (P) of 50.01 GPa and 58.30 GPa, and heat of detonation (Q) of 1.95 kcal g<sup>-1</sup> and 2.19 kcal g<sup>-1</sup>, respectively, which are even higher than those of RDX and HMX."	"Common explosives (TNT, RDX, HMX) and their fate in the environment: Emphasizing bioremediation. Explosive materials are energetic substances, when released into the environment, contaminate by posing toxic hazards to environment and biota. Throughout the world, soils are contaminated by such contaminants either due to manufacturing operations, military activities, conflicts of different levels, open burning/open detonation (OB/OD), dumping of munitions etc. Among different forms of chemical explosives, 2,4,6-trinitrotoluene (TNT), hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), and octahydro-1,3,5,7-tetranitro- 1,3,5,7-tetrazocine (HMX) are most common. These explosives are highly toxic as USEPA has recommended restrictions for lifetime contact through drinking water. Although, there are several utilitarian aspects in anthropogenic activities, however, effective remediation of explosives is very important. This review article emphasizes the details of appropriate practices to ameliorate the contamination. Critical evaluation has also been made to encompass the recent knowledge and advancement about bioremediation and phytoremediation of explosives (especially TNT, RDX and HMX) along with the molecular mechanisms of biodegradation."	"Use of Mass Spectrometric Vapor Analysis To Improve Canine Explosive Detection Efficiency. Canines remain the gold standard for explosives detection in many situations, and there is an ongoing desire for them to perform at the highest level. This goal requires canine training to be approached similarly to scientific sensor design. Developing a canine training regimen is made challenging by a lack of understanding of the canine's odor environment, which is dynamic and typically contains multiple odorants. Existing methodology assumes that the handler's intention is an adequate surrogate for actual knowledge of the odors cuing the canine, but canines are easily exposed to unintentional explosive odors through training material cross-contamination. A sensitive, real-time (∼1 s) vapor analysis mass spectrometer was developed to provide tools, techniques, and knowledge to better understand, train, and utilize canines. The instrument has a detection library of nine explosives and explosive-related materials consisting of 2,4-dinitrotoluene (2,4-DNT), 2,6-dinitrotoluene (2,6-DNT), 2,4,6-trinitrotoluene (TNT), nitroglycerin (NG), 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), pentaerythritol tetranitrate (PETN), triacetone triperoxide (TATP), hexamethylene triperoxide diamine (HMTD), and cyclohexanone, with detection limits in the parts-per-trillion to parts-per-quadrillion range by volume. The instrument can illustrate aspects of vapor plume dynamics, such as detecting plume filaments at a distance. The instrument was deployed to support canine training in the field, detecting cross-contamination among training materials, and developing an evaluation method based on the odor environment. Support for training material production and handling was provided by studying the dynamic headspace of a nonexplosive HMTD training aid that is in development. These results supported existing canine training and identified certain areas that may be improved."	"Polynitro-Functionalized Dipyrazolo-1,3,5-triazinanes: Energetic Polycyclization toward High Density and Excellent Molecular Stability. A new fused N-heterocyclic framework, dipyrazolo-1,3,5-triazinane, was synthesized and the physiochemical properties of its derivatives were investigated to evaluate the integrated energetic performance. In contrast to 1,3,5-trinitro-1,3,5-triazinane (RDX) featuring a distorted chair confirmation, polynitro-functionalized dipyrazolo-1,3,5-triazinanes have nearly planar backbones, thereby enhancing the density and thermal stability. Among these new energetic tricyclic compounds, 5 a and 12 show favorable crystal densities of 1.937 g cm<sup>-3</sup> and 1.990 g cm<sup>-3</sup> at 150 K, respectively, which rank highest in triazinane-based energetic compounds. Additionally, this synthetic approach was carried out to form seven-membered and eight-membered rings, giving rise to tetranitro dipyrazolo-1,3,5-triazepane (5 b) and tetranitro dipyrazolo-1,3,5-triazocane (5 c), respectively."	"A field-deployed surface plasmon resonance (SPR) sensor for RDX quantification in environmental waters. A field-deployable surface plasmon resonance (SPR) sensor is reported for the detection of the energetic material (commonly termed explosives) 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) at ppb concentration in environmental samples. The SPR sensor was first validated under laboratory conditions with uncontaminated natural water samples spiked with known concentrations of RDX near the EPA limit of 2 ppb, which was then applied to monitor environmental samples collected in different downgradient wells near a grenade training range. The SPR sensor was finally tested on the field, where environmental samples were analysed on location in less than 90 minutes per well, which included the time to setup the equipment, sample the well and analyse the sample. The SPR analysis time was less than 45 minutes for equilibration, recalibration and measuring the water sample. Results obtained with the SPR sensors were cross-validated with the standard HPLC method (EPA method 8330b), and they showed good agreement with an accuracy within less than 1.6 ppb for analysis at the sampling sites, and with the relative standard deviation (RSD) better than 20% for field and laboratory measurements. The SPR sensor worked in a range of environmental conditions, including operation from about 0 °C to nearly 30 °C. The instrument was easily deployed near the sampling site using motor vehicles under summer conditions (Lab-in-a-Jeep) and using a sled under winter conditions (Lab-on-a-sled), showcasing the field deployability of the RDX SPR sensor and the possibility of continuously monitoring RDX in the environment."	"Optical Properties of β-RDX Thin Films Deposited on Gold and Stainless Steel Substrates Calculated from Reflection-Absorption Infrared Spectra. The optical properties for crystalline films of the highly energetic material (HEM) hexahydro-1,3,5-trinitro-s-triazine, which is also known as RDX, deposited on gold (Au) and stainless steel (SS) substrates are presented. RDX has two important stable conformational polymorphs at room temperature: α-RDX and β-RDX. The optical properties obtained in the present work correspond to thin film samples of predominantly β-RDX polymorph. The infrared spectroscopic intensities measured showed significant differences in the β-RDX crystalline films deposited on the two substrates with respect to the calculated real part of refractive index. The β-RDX/Au crystalline films have a high dynamic response, which is characterized by the asymmetric stretching mode of the axial nitro groups, whereas for the β-RDX/SS crystalline films, the dynamic response was mediated by the -N-NO2 symmetric stretch mode. This result provides an idea of how the electric field vector propagates through the β-RDX crystalline films deposited on the two substrates."	"Polymorphic Phase Control of RDX-Based Explosives. The polymorphic phase of 1,3,5-trinitro-1,3,5-triazine (RDX) was examined as a function of mass loading, solvent, and sample deposition technique. When RDX was deposited at a high mass loading, the vibrational modes in the obtained Raman spectra were indicative of concomitant polymorphism as both the α-RDX and β-RDX phases were present. At low mass loadings, only β-RDX was observed regardless of solvent when using the drop cast crystallization method. However, α-RDX (the thermodynamically stable polymorphic phase observed with visible quantities of the explosive) was observed when RDX deposits were dry transferred. Observation of α-RDX was independent of the initial mass loading or the initial deposition solvent when using the dry transfer methodology. These data indicate that the use of the dry transfer preparation method can be used to successfully prepare RDX-based test articles with the α-RDX phase regardless of the solvent used to initially dissolve the RDX, the initial deposition technique, or the mass loading."	"Iron-Dependent Enzyme Catalyzes the Initial Step in Biodegradation of N-Nitroglycine by Variovorax sp. Strain JS1663. Nitramines are key constituents of most of the explosives currently in use and consequently contaminate soil and groundwater at many military facilities around the world. Toxicity from nitramine contamination poses a health risk to plants and animals. Thus, understanding how nitramines are biodegraded is critical to environmental remediation. The biodegradation of synthetic nitramine compounds such as hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) has been studied for decades, but little is known about the catabolism of naturally produced nitramine compounds. In this study, we report the isolation of a soil bacterium, Variovorax sp. strain JS1663, that degrades N-nitroglycine (NNG), a naturally produced nitramine, and the key enzyme involved in its catabolism. Variovorax sp. JS1663 is a Gram-negative, non-spore-forming motile bacterium isolated from activated sludge based on its ability to use NNG as a sole growth substrate under aerobic conditions. A single gene (nnlA) encodes an iron-dependent enzyme that releases nitrite from NNG through a proposed β-elimination reaction. Bioinformatics analysis of the amino acid sequence of NNG lyase identified a PAS (Per-Arnt-Sim) domain. PAS domains can be associated with heme cofactors and function as signal sensors in signaling proteins. This is the first instance of a PAS domain present in a denitration enzyme. The NNG biodegradation pathway should provide the basis for the identification of other enzymes that cleave the N-N bond and facilitate the development of enzymes to cleave similar bonds in RDX, nitroguanidine, and other nitramine explosives.IMPORTANCE The production of antibiotics and other allelopathic chemicals is a major aspect of chemical ecology. The biodegradation of such chemicals can play an important ecological role in mitigating or eliminating the effects of such compounds. N-Nitroglycine (NNG) is produced by the Gram-positive filamentous soil bacterium Streptomyces noursei This study reports the isolation of a Gram-negative soil bacterium, Variovorax sp. strain JS1663, that is able to use NNG as a sole growth substrate. The proposed degradation pathway occurs via a β-elimination reaction that releases nitrite from NNG. The novel NNG lyase requires iron(II) for activity. The identification of a novel enzyme and catabolic pathway provides evidence of a substantial and underappreciated flux of the antibiotic in natural ecosystems. Understanding the NNG biodegradation pathway will help identify other enzymes that cleave the N-N bond and facilitate the development of enzymes to cleave similar bonds in synthetic nitramine explosives."	"Nitramino- and Dinitromethyl-Substituted 1,2,4-Triazole Derivatives as High-Performance Energetic Materials. Since highly nitrated nitrogen-rich heterocycles are important motifs in high energy density materials, extensive studies for the development of such novel molecules have been underway. A highly energetic moiety, 3-dinitromethyl-5-nitramino-1,2,4-triazole, which consists of a triazole ring, and nitramino and dinitromethyl groups, has been designed and synthesized. By pairing with nitrogen-rich cations, several ionic derivatives were obtained. Theoretical and experimental studies show that the hydroxylammonium salt (7) is highly dense, and has excellent detonation performance with acceptable thermal stablity and sensitivities, which are superior to those of RDX."	"Fate and transport of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and its degradation products in sedimentary and volcanic rocks, Los Alamos, New Mexico. High-explosive compounds including hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) were used extensively in weapons research and testing at Los Alamos National Laboratory (LANL). Liquid effluents containing RDX were released to an outfall pond that flowed to Cañon de Valle at LANL's Technical Area 16 (TA-16), resulting in the contamination of the alluvial, intermediate and regional groundwater bodies. Monitoring of groundwater within Cañon de Valle has shown persistent RDX in the intermediate perched zone located between 225 and 311 m below ground surface. Monitoring data also show detectable levels of RDX putative anaerobic degradation products. Batch and column experiments were conducted to determine the extent of adsorption-desorption and transport of RDX and its degradation products (MNX, DNX, and TNX) in major rock types that are within the RDX plume. All experiments were performed in the dark using water obtained from a well located at the center of the plume, which is fairly oxic and has a neutral pH of 7.5. Retardation factors and partitioning coefficient (Kd) values for RDX were calculated from batch experiments. Additionally, retardation factors and Kd values for RDX and its degradation products were calibrated from column experiments using a one-dimensional transport model with equilibrium sorption (linear isotherm). Results from the column and batch experiments showed little to no sorption of RDX to the aquifer materials tested, with retardation factors ranging from 1.0 to 1.8 and Kd values varying from 0 to 0.70 L/kg. Results also showed no measurable differences between the transport properties of RDX and its degradation products."	"Garlic extract in bladder cancer prevention: Evidence from T24 bladder cancer cell xenograft model, tissue microarray, and gene network analysis. There is a growing interest in the use of naturally occurring agents in cancer prevention. This study investigated the garlic extract affects in bladder cancer (BC) prevention. The effect of garlic extract in cancer prevention was evaluated using the T24 BC BALB/C-nude mouse xenograft model. Microarray analysis of tissues was performed to identify differences in gene expression between garlic extract intake and control diet, and gene network analysis was performed to assess candidate mechanisms of action. Furthermore, we investigated the expression value of selected genes in the data of 165 BC patients. Compared to the control group, significant differences in tumor volume and tumor weight were observed in the groups fed 20 mg/kg (p&lt;0.05), 200 mg/kg, and 1000 mg/kg of garlic extract (p&lt;0.01). Genes (645) were identified as cancer prevention-related genes (fold change &gt;2 and p&lt;0.05) by tissue microarray analysis. A gene network analysis of 279 of these genes (p&lt;0.01) was performed using Cytoscape/ClueGo software: 36 genes and 37 gene ontologies were mapped to gene networks. Protein kinase A (PKA) signaling pathway including AKAP12, RDX, and RAB13 genes were identified as potential mechanisms for the activity of garlic extract in cancer prevention. In BC patients, AKAP12 and RDX were decreased but, RAB13 was increased. Oral garlic extract has strong cancer prevention activity in vivo and an acceptable safety profile. PKA signaling process, especially increasing AKAP12 and RDX and decreasing RAB13, are candidate pathways that may mediate this prevention effect."	"Standardized Method for Measuring Collection Efficiency from Wipe-sampling of Trace Explosives. One of the limiting steps to detecting traces of explosives at screening venues is effective collection of the sample. Wipe-sampling is the most common procedure for collecting traces of explosives, and standardized measurements of collection efficiency are needed to evaluate and optimize sampling protocols. The approach described here is designed to provide this measurement infrastructure, and controls most of the factors known to be relevant to wipe-sampling. Three critical factors (the applied force, travel distance, and travel speed) are controlled using an automated device. Test surfaces are chosen based on similarity to the screening environment, and the wipes can be made from any material considered for use in wipe-sampling. Particle samples of the explosive 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) are applied in a fixed location on the surface using a dry-transfer technique. The particle samples, recently developed to simulate residues made after handling explosives, are produced by inkjet printing of RDX solutions onto polytetrafluoroethylene (PTFE) substrates. Collection efficiency is measured by extracting collected explosive from the wipe, and then related to critical sampling factors and the selection of wipe material and test surface. These measurements are meant to guide the development of sampling protocols at screening venues, where speed and throughput are primary considerations."	"Biotransformation of RDX and HMX by Anaerobic Granular Sludge with Enriched Sulfate and Nitrate.  RDX and HMX are widely used energetic materials and they are recognized as environmental contaminants at numerous locations. The present study investigated the biotransformation of RDX and HMX by anaerobic granular sludge under sulfate- and nitrate-enriched conditions. The results showed that RDX and HMX could be transformed by anaerobic granular sludge when nitrate was present. However, the biotransformation of RDX and HMX was negatively influenced, especially with high nitrate concentrations. Sulfate-enriched conditions were more favorable for the removal of ammunition compounds by anaerobic granular sludge than nitrate-enriched conditions. The removal of RDX and HMX under both nitrate- and sulfate-enriched conditions was facilitated by the use of glucose as additional substrate. This knowledge may help identify factors required for rapid removal of RDX and HMX in high-rate bioreactors. These results can also be applied to devise an appropriate and practical biological treatment strategy for explosive contaminated wastewater."	"Molecular dynamic simulations on TKX-50/RDX cocrystal. Dihydroxylammonium 5,5'-bistetrazole-1,1'-diolate (TKX-50) is a newly synthesized energetic material with excellent comprehensive properties. Cyclotrimethylenetrinitramine (RDX) is currently one of the most widely used energetic materials in the world. TKX-50 and RDX supercell models and TKX-50/RDX cocrystal model were constructed based on their crystal cell parameters and the formation mechanism of cocrystal, respectively, then they were simulated by molecular dynamics (MD) simulations. The maximum trigger bond (NNO2) length(Lmax), binding energy (Ebind), radial distribution function (RDF), cohesive energy density(CED) and mechanical properties were simulated at different temperatures based on the simulated equilibrium structures of the models. The simulated results indicate that hydrogen bond and van der Waals force interactions exist in the cocrystal system and the hydrogen bonds are mainly derived from the hydrogen atom of TKX-50 with the oxygen or nitrogen atom of RDX. Moreover, TKX-50/RDX cocrystal structure significantly reduces the sensitivity and improves the thermodynamic stability of RDX, and it also shows better mechanical properties than pure TKX-50 and RDX, indicating that it will vastly expand the application scope of the single compound explosives."	"Energetic materials identification by laser-induced breakdown spectroscopy combined with artificial neural network. In this study, for the first time to the best of our knowledge, a combination of the laser-induced breakdown spectroscopy (LIBS) technique and artificial neural network (ANN) analysis has been implemented for the identification of energetic materials, including TNT, RDX, black powder, and propellant. Also, aluminum, copper, inconel, and graphite have been used for more accurate investigation and comparison. After the LIBS test and spectrum acquisition on all samples in both air and argon ambient, optimized neural networks were designed by LIBS data. Based on input data, three ANN algorithms are proposed: the first is fed with the whole LIBS spectra in air (ANN1) and the second with the principle component analysis (PCA) scores of each spectrum in air (ANN2) and the other with the PCA scores of the spectrum in Ar (ANN3). According to the results, error of the network is very low in ANN2 and 3 and the best identification and discrimination was obtained by ANN3. After these, in order to validate and for more investigation of this combined method, we also used Al/RDX standard samples for analysis."	"RDX degradation in bioaugmented model aquifer columns under aerobic and low oxygen conditions. Degradation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in laboratory columns following biostimulation and bioaugmentation was investigated using sediment and groundwater from a contaminated aquifer at a US Navy facility. No RDX degradation was observed following aerobic biostimulation with either fructose or lactate (both 0.1 mM) prior to bioaugmentation. Replicate columns were then bioaugmented with either Gordonia sp. KTR9, Pseudomonas fluorescens I-C (Ps I-C), or both strains. Under aerobic conditions (influent dissolved oxygen (DO) &gt;6 mg/L), RDX was degraded following the addition of fructose, and to a lesser extent with lactate, in columns bioaugmented with KTR9. No degradation was observed in columns bioaugmented with only Ps I-C under aerobic conditions, consistent with the known anaerobic RDX degradation pathway for this strain. When influent DO was reduced to &lt;2 mg/L, good RDX degradation was observed in the KTR9-bioaugmented column, and some degradation was also observed in the Ps I-C-bioaugmented column. After DO levels were kept below 1 mg/L for more than a month, columns bioaugmented with KTR9 became unresponsive to fructose addition, while RDX degradation was still observed in the Ps I-C-bioaugmented columns. These results indicate that bioaugmentation with the aerobic RDX degrader KTR9 could be effective at sites where site geology or geochemistry allow higher DO levels to be maintained. Further, inclusion of strains capable of anoxic RDX degradation such as Ps I-C may facilitate bimodal RDX removal when DO levels decrease."	"Use of dilute ammonia gas for treatment of 1,2,3-trichloropropane and explosives-contaminated soils. Laboratory studies were performed to test a novel reactive gas process for in-situ treatment of soils containing halogenated propanes or explosives. A soil column study, using a 5% ammonia-in-air mixture, established that the treatment process can increase soil pH from 7.5 to 10.2. Batch reactor experiments were performed to demonstrate contaminant destruction in sealed jars exposed to ammonia. Comparison of results from batch reactors that were, and were not, exposed to ammonia demonstrated reductions in concentrations of 1,2,3-trichloropropane (TCP), 1,3-dichloropropane (1,3-DCP), 1,2-dicholoropropane (1,2-DCP) and dibromochloropropane (DBCP) that ranged from 34 to 94%. Decreases in TCP concentrations at 23° C ranged from 37 to 65%, versus 89-94% at 62° C. A spiked soil column study was also performed using the same set of contaminants. The study showed a pH penetration distance of 30 cm in a 2.5 cm diameter soil column (with a pH increase from 8 to &gt; 10), due to treatment via 5% ammonia gas at 1 standard cubic centimeter per minute (sccm) for 7 days. Batch reactor tests using explosives contaminated soils exhibited a 97% decrease in 2,4,6-trinitrotoluene (TNT), an 83% decrease in nitrobenzene, and a 6% decrease in hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). A biotransformation study was also performed to investigate whether growth of ammonia-oxidizing microorganisms could be stimulated via prolonged exposure of soil to ammonia. Over the course of the 283 day study, only a very small amount of nitrite generation was observed; indicating very limited ammonia monooxygenase activity. Overall, the data indicate that ammonia gas addition can be a viable approach for treating halogenated propanes and some types of explosives in soils."	"Redox and catalytic properties of biochar-coated zero-valent iron for the removal of nitro explosives and halogenated phenols. A novel biochar-coated zero-valent iron [Fe(0)], which was synthesized with rice straw and Fe(0), was applied to remove nitro explosives (2,4,6-trinitrotoluene and hexahydro-1,3,5-trinitro-1,3,5-triazine) and halogenated phenols (2,4-dibromophenol and 2,4-difluorophenol) from contaminated waters. Due to the presence of biochar on the outside, the removal of nitro explosives and halogenated phenols was significantly enhanced via sorption. The sorbed contaminants were further transformed into reductive products, indicating that the inner Fe(0) played the role of a reductant in the biochar-coated Fe(0). Compared to direct reduction with Fe(0), the reductive transformation with biochar-coated Fe(0) was markedly enhanced, suggesting that the biochar in biochar-coated Fe(0) may act as an electron transfer mediator. Further experiments showed that the surface functional groups of biochar were involved in the catalytic enhancement of electron transfer. Our results suggested that biomass could be used to synthesize a novel sorbent and catalyst for treating redox-sensitive contaminants in natural and engineered systems."	"Long-Wave Infrared (LWIR) Molecular Laser-Induced Breakdown Spectroscopy (LIBS) Emissions of Thin Solid Explosive Powder Films Deposited on Aluminum Substrates. Thin solid films made of high nitro (NO2)/nitrate (NO3) content explosives were deposited on sand-blasted aluminum substrates and then studied using a mercury-cadmium-telluride (MCT) linear array detection system that is capable of rapidly capturing a broad spectrum of atomic and molecular laser-induced breakdown spectroscopy (LIBS) emissions in the long-wave infrared region (LWIR; ∼5.6-10 µm). Despite the similarities of their chemical compositions and structures, thin films of three commonly used explosives (RDX, HMX, and PETN) studied in this work can be rapidly identified in the ambient air by their molecular LIBS emission signatures in the LWIR region. A preliminary assessment of the detection limit for a thin film of RDX on aluminum appears to be much lower than 60 µg/cm<sup>2</sup>. This LWIR LIBS setup is capable of rapidly probing and charactering samples without the need for elaborate sample preparation and also offers the possibility of a simultaneous ultraviolet visible and LWIR LIBS measurement."	"Rapid identification and desorption mechanisms of nitrogen-based explosives by ambient micro-fabricated glow discharge plasma desorption/ionization (MFGDP) mass spectrometry. A novel technique of micro-fabricated glow discharge plasma desorption/ionization mass spectrometry was investigated for the first time in negative ion mode in this study. Negative ion micro-fabricated glow discharge plasma desorption/ionization mass spectrometry (NI-MFGDP-MS) was successfully applied to identify trace explosives in open air. Six explosives and explosives-related compounds were directly analyzed in seconds with this ion source. The ions of [M-H]<sup>-</sup> were predominant for 2-methyl-1,3,5-trinitrobenzene (trinitrotoluene, TNT) and 2,4,6-trinitrophenol (picric acid), and [M+NO3]<sup>-</sup> were dominant ions for 1,3,5-trinitro-perhydro-1,3,5-triazine (cyclonite, RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (octogen, HMX), 1,2,3-trinitroxypropane (nitroglycerin, NG), and pentaerythritol tetranitrate (PETN). The limits of detection (LOD) were from 87.5pgmm<sup>-2</sup> to 0.4 fg mm<sup>-2</sup> and the relative standard deviation (RSD) ranged between 5.8% and 16.8% for the explosives involved in this study. The reliability of NI-MFGDP-MS was characterized by the analysis of a picric acid-RDX-PETN mixture and a mixture of RDX-pond water. NI-MFGDP-MS and ESI-MS were compared with these explosives and along with collision induced dissociation (CID) experiments. The results showed that electron capture, proton abstraction reaction, nucleophilic attack, ion-molecule attachment, decomposition and anion attachment took place during the NI-MFGDP-MS measurement. These findings provide a guideline and a supplement to the chemical libraries for rapid and accurate detection of explosives. The method shows great potential for fast, in situ, on-line and high throughput detection of explosives in the field of antiterrorism."	"The longstanding challenge of the nanocrystallization of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX). Research efforts for realizing safer and higher performance energetic materials are continuing unabated all over the globe. While the thermites - pyrotechnic compositions of an oxide and a metal - have been finely tailored thanks to progress in other sectors, organic high explosives are still stagnating. The most symptomatic example is the longstanding challenge of the nanocrystallization of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX). Recent advances in crystallization processes and milling technology mark the beginning of a new area which will hopefully lead the pyroelectric industry to finally embrace nanotechnology. This work reviews the previous and current techniques used to crystallize RDX at a submicrometer scale or smaller. Several key points are highlighted then discussed, such as the smallest particle size and its morphology, and the scale-up capacity and the versatility of the process."	"Visualizing Intramolecular Vibrational Redistribution in Cyclotrimethylene Trinitramine (RDX) Crystals by Multiplex Coherent Anti-Stokes Raman Scattering. The femtosecond time-resolved multiplex coherent anti-Stokes Raman scattering (CARS) technique has been performed to investigate intramolecular vibrational redistribution (IVR) through vibrational couplings in 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX) molecules. In the multiplex CARS experiment, the supercontinuum (SC) was used as broad-band Stokes light to coherently and collectively excite multiple vibrational modes, and quantum beats arising from vibrational couplings among these modes were observed. The IVR of RDX is visualized by a topological graph of these vibrational couplings, and with analysis of the topological graph, two vibrational modes, both of which are assigned to ring bending, are confirmed to have coupling interactions with most of the other vibrational modes and are considered to have a tendency of energy transfer with these vibrational modes. We suggest that the mode at 466 cm<sup>-1</sup> is a portal of energy transfer from outside to inside of the RDX molecule and the mode at 672 cm<sup>-1</sup> is an important transit point of energy transfer in the IVR."	"Biodegradation of insensitive munition formulations IMX101 and IMX104 in surface soils. The biodegradation potential of insensitive munition melt cast formulations IMX101 and IMX104 was investigated in two unamended training range soils under aerobic and anaerobic growth conditions. Changes in community profiles in soil microcosms were monitored via high-throughput 16S rRNA sequencing over the course of the experiments to infer key microbial phylotypes that may be linked to IMX degradation. Complete anaerobic biotransformation occurred for IMX101 and IMX104 constituents 2,4-dinitroanisole (DNAN) and 3-nitro-1,2,4-triazol-5-one during the 30-day incubation period with Camp Shelby (CS) soil. By comparison, soil from Umatilla chemical depot demonstrated incomplete DNAN degradation with reduced transformation rates for both IMX101 and IMX104. Aerobic soil microcosms for both soils demonstrated reduced transformation rates compared to anaerobic degradation for all IMX constituents with DNAN the most susceptible to biotransformation by CS soil. Overall, IMX constituents hexahydro-1,3,5-trinitro-1,3,5-triazine and 1-nitroguanidine did not undergo significant transformation. In CS soil, organisms that have been associated with explosives degradation, namely members of the Burkholderiaceae, Bacillaceae, and Paenibacillaceae phylotypes increased significantly in anaerobic treatments whereas Sphingomonadaceae increased significantly in aerobic treatments. Collectively, these data may be used to populate fate and transport models to provide more accurate estimates for assessing environmental costs associated with release of IMX101 and IMX104."	"Fundamental studies of the adhesion of explosives to textile and non-textile surfaces. This paper describes the use of atomic force microscopy (AFM) to investigate the interactions between explosives crystals and different surfaces. Crystals of TNT, PETN and RDX were mounted onto tipless AFM cantilevers and repeatedly brought into contact with a range of surfaces (n=15), including textile and non-textile surfaces. The adhesion force during each contact was measured, and the results are presented in this work. The results suggest that explosives crystals display a higher adhesion to smoother, non-textile surfaces, particularly glass. This finding may be of use for forensic explosives investigators when deciding the best types of debris to target for explosives recovery."	"Thermally Stable Energetic Salts Composed of Heterocyclic Anions and Cations Based on 3,6,7-Triamino-7 H-s-triazolo[5,1-c]-s-triazole: Synthesis and Intermolecular Interaction Study. To create intermolecular N-H⋅⋅⋅O and N-H⋅⋅⋅N hydrogen-bond (HB) interactions, a series of energetic N-heterocyclic anions including polynitro- and multi-nitrogen anions were introduced into the 3,6,7-triamino-7 H-s-triazolo[5,1-c]-s-triazole (TATT) cation to get numerous novel energetic salts. Single-crystal X-ray diffraction was employed to confirm the crystal structure and crystal packing properties of compounds 2⋅H2 O, 6, and 9. Additionally, Hirshfeld surface analysis and atoms-in-molecules topology analysis provided insights into the intermolecular hydrogen-bond interaction of these new salts. With the assistance of the EXPLO5 program, the detonation velocities, detonation pressures, and specific impulses of the salts were found to fall in the ranges 8113-9477 m s<sup>-1</sup> , 24.1-31.4 GPa, and 203.2-224.2 s, respectively. The predicted detonation performance indicate that all the energetic salts based on TATT are similar to those of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) or even overtake octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), which reveal that they can be candidates for the future insensitive high-performance energetic materials (IHPEMs)."	"Three new energetic complexes with N,N-bis(1H-tetrazole-5-yl)-amine as high energy density materials: syntheses, structures, characterization and effects on the thermal decomposition of RDX. Three new energetic complexes, [Pb(bta)(H2O)]n (1), [PbCu(bta)2(H2O)5]·2H2O (2) and PbCu(bta)2 (3) (H2bta = N,N-bis(1H-tetrazole-5-yl)-amine), have been synthesized and characterised. In particular, 3 was readily synthesized by dehydration of 2 at 190 °C. Single crystal X-ray diffraction revealed that 1 has a 3D framework structure and 2 presents a 3D supermolecular architecture. Thermoanalyses demonstrated that the main frames of 1 and 2 have good thermostabilities up to 314 °C for 1 and 231 °C for 2. Non-isothermal kinetic and thermodynamic parameters of exothermic decomposition processes of 1 and 2 were obtained by Kissinger's and Ozawa's methods. Based on the constant-volume combustion energies measured by a precise rotating-bomb calorimeter, the standard molar enthalpies of formation of 1 and 2 were determined. The calculation of the detonation properties of 1 and 2 and the impact sensitivity tests of 1, 2 and 3 were carried out. In addition, 1, 2 and 3 were explored as combustion promoters to accelerate the thermal decompositions of RDX (1,3,5-trinitro-1,3,5-triazine) by differential scanning calorimetry. Experimental results showed that 1, 2 and 3 can be used as HEDMs in the field of combustion promoters and insensitive 2 can be regarded as a safer form for mass storage and transportation than sensitive 3."	"Energetic material response to ultrafast indirect laser heating. The initial evolution of thermal energy transfer into a solid explosive is studied using an indirect femtosecond laser heating technique on a picosecond timescale in order to elucidate the role of temperature in the shock-induced initiation of explosives. The indirect laser heating method is presented; time-resolved visible transient absorption (TA) spectroscopy was used to monitor the energetic material response following heat transfer from the laser-heated gold (Au) layer to the sample. Reported here are visible TA data in the spectral region from 500 to 750 nm for indirect laser-heated thin films of cyclotrimethylene trinitramine (RDX), oxidized polyethylene (OPE), and RDX with 1%, 2.5%, 5%, or 10% OPE prior to decomposition. TA was observed for RDX and RDX with OPE; however, no TA was observed for pure OPE. Compared to pure RDX, the TA intensity of RDX with OPE decreases as the OPE content increases and the time required to observe the TA signal from RDX increases. Our results suggest that the thermal energy produced by a femtosecond laser pulse with an energy of 15 mJ cm&lt;sup&gt;-2&lt;/sup&gt; is sufficient to induce changes in the electronic structure of RDX, resulting in promotion of the RDX molecules into an excited state. We also determined that the heat transfer rate in RDX depends on its homogeneity and degree of purity."	"Laser-shocked energetic materials with metal additives: evaluation of chemistry and detonation performance. A focused, nanosecond-pulsed laser has been used to ablate, atomize, ionize, and excite milligram quantities of metal-doped energetic materials that undergo exothermic reactions in the laser-induced plasma. The subsequent shock wave expansion in the air above the sample has been monitored using high-speed schlieren imaging in a recently developed technique, laser-induced air shock from energetic materials (LASEM). The method enables the estimation of detonation velocities based on the measured laser-induced air-shock velocities and has previously been demonstrated for organic military explosives. Here, the LASEM technique has been extended to explosive formulations with metal additives. A comparison of the measured laser-induced air-shock velocities for TNT, RDX, DNTF, and LLM-172 doped with Al or B to the detonation velocities predicted by the thermochemical code CHEETAH for inert or active metal participation demonstrates that LASEM has potential for predicting the early time (&lt;10 μs) participation of metal additives in detonation events. The LASEM results show that while Al is mostly inert at early times in the detonation event (confirmed from large-scale detonation testing), B is active-and reducing the amount of hydrogen present during the early chemical reactions increases the resulting estimated detonation velocities."	"Quantifying the stability of trace explosives under different environmental conditions using electrospray ionization mass spectrometry. This work investigates the stability of trace (tens of nanograms) deposits of six explosives: erythritol tetranitrate (ETN), pentaerythritol tetranitrate (PETN), cyclotrimethylenetrinitramine (RDX), cyclotetramethylenetetranitramine (HMX), 2,4,6-trinitrotoluene (TNT), and 2,4,6-trinitrophenylmethylnitramine (tetryl) to determine environmental stabilities and lifetimes of trace level materials. Explosives were inkjet printed directly onto substrates and exposed to one of seven environmental conditions (Laboratory, -4°C, 30°C, 47°C, 90% relative humidity, UV light, and ozone) up to 42 days. Throughout the study, samples were extracted and quantified using electrospray ionization mass spectrometry (ESI-MS) to determine the stability of the explosive as a function of time and environmental exposure. Statistical models were then fit to the data and used for pairwise comparisons of the environments. Stability was found to be exposure and compound dependent with minimal sample losses observed for HMX, RDX, and PETN while substantial and rapid losses were observed in all conditions except -4°C for ETN and TNT and in all conditions for tetryl. The results of this work highlight the potential fate of explosive traces when exposed to various environments."	"Megakaryocyte expansion and macrophage infiltration in bone marrow of rats subchronically treated with MNX, N-nitroso environmental degradation product of munitions compound RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine). Hexahydro-1-nitroso-3,5-dinitro-1,3,5-triazine (MNX), environmental degradation product of munitions hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), causes seizures in rats with acute oral exposure like parent RDX. Our previous studies have additionally reported hematotoxicity with acute MNX exposure manifested as myelosuppression, anemia and splenic hemosiderosis. This study explored whether MNX administered subchronically continued to target bone marrow to elicit peripheral blood cytopenia. Female Sprague-Dawley rats were gavaged daily for 4 or 6 weeks with 47 mg kg<sup>-1</sup> day<sup>-1</sup> MNX (¼ LD50 ) or vehicle (5% dimethyl sulfoxide in corn oil) and hematological and clinical chemistry parameters, spleen weights, spleen and bone marrow histopathology and immunohistochemistry with ED1 anti-CD68 macrophage marker were evaluated 24 h after the last dose. Unexpectedly, no decrease in blood erythroid parameters was seen with subchronic MNX and convulsions and tremors ceased after 2 weeks of treatment. Toxicological effects observed were MNX-induced increases in blood granulocyte and platelet counts and in bone marrow megakaryocyte and ED1<sup>+</sup> -macrophage density. MNX was without effect on bone marrow cellularity and picrosirius red stained/collagen fiber deposition. Spleen weight increased modestly with extramedullary hematopoiesis evident, but hemosiderin and relative red and white pulp areas were unaffected. Collectively, this study demonstrated that erythroid effects characteristic of acute MNX exposure were not evident with subchronic exposure. However, megakaryocyte proliferation in bone marrow coincident with thrombocytosis after subchronic MNX exposure suggested continued hematotoxicity, but with a qualitatively different outcome. Granulocytosis and increased bone marrow macrophages implicated an inflammatory component in MNX hematotoxicity. Copyright © 2017 John Wiley &amp; Sons, Ltd."	"[Nondestructive Measurement of RDX Grain’s Internal Pressure by Using Raman Spectrum Method]. RDX is a most widely used military explosive. As the development of new warheads, there are more and more applications of RDX with abnormal grain shapes. To ensure the operational effectiveness of the new warheads, it is necessary to find an on-line nondestructive methods that can measure the RDX grain’s internal pressure. In this paper, we use Raman spectrum and first-principles methods to determine the characteristic spectral line of the RDX samples and have studied the shift of the Raman spectral lines under various pressures. In particular, we measured the RDX samples under the pressures of 10, 20 and 30 MPa, respectively, and checked the fitting errors by measuring the RDX samples under the pressures of 15, 25 and 35 MPa, respectively. It is found that the shift of the characteristic Raman spectral line has a good linear dependence on the external pressures. Therefore, we can at first calibrate the linear relation between the shift of the Raman spectral line of regular RDX and the pressures in laboratory and then measure the Raman spectral line shift of the RDX with abnormal shapes. Based on the calibrated linear relation and the measurement of Raman spectra, one can determine the internal pressure in RDX. In this way, we can realize the nondestructive detection of the internal pressure of RDX. The experiment results show that this method has the advantage of good sensitivity and reproducibility. The Raman spectrum method has been successfully tested in the warhead production line."	"Nitrogen-Rich Tetranuclear Metal Complex as a New Structural Motif for Energetic Materials. For designing energetic materials (EMs), the most challenging issue is to achieve a balance between energetic performance and reliable stability. In this work, we employed an efficient and convenient method to synthesize a new class of EMs: nitrogen-rich tetranuclear metal complexes [M(Hdtim)(H2O)2]4 (M = Zn 1, Mn 2; H3dtim = 1H-imidazol-4,5-tetrazole) with the N content of &gt;46%. The structural analyses illustrate that isomorphous compounds 1 and 2 feature isolated hollow ellipsoid tetranuclear units, which are linked by both π-π interactions and hydrogen-bonding interactions to give a 3D supramolecular architecture. Compounds 1 and 2 exhibit prominent energetic characteristics: excellent detonation performances and reliable thermal, impact, and friction stabilities. Being nitrogen-rich tetrazolate compounds, the enthalpies of combustion of 1 (-11.570 kJ g<sup>-1</sup>) and 2 (-12.186 kJ g<sup>-1</sup>) are higher than those of classical EMs, RDX and HMX, and they possess high positive heats of formation. Sensitivity tests demonstrate that 1 and 2 are insensitive to external mechanical action. Excellent energetic performances and low sensitivities promote 1 and 2 to serve as a new class of promising EMs with a desirable level of safety."	"The stability of TNT, RDX and PETN in simulated post-explosion soils: Implications of sample preparation for analysis. Explosives residues in soils may be a useful source of evidence following the detonation of an improvised explosive device (IED), such as a vehicle-borne IED. Soil samples collected from the vicinity of an explosion scene will often be stored for some time prior to analysis, yet explosives residues in soil samples are susceptible to rapid degradation or transformation. Although some research has assessed the use of different storage temperatures with a view to reducing explosives' degradation over time, further research examining the degradation of explosives in soil when stored under a variety of storage conditions is crucial to determine the optimal sample collection and storage procedures for soil containing explosives residues. In this work, three different soils were spiked with solutions of TNT, RDX and PETN and stored either at room temperature, refrigerated or frozen. Samples were extracted over 6 weeks, with additional samples gamma-irradiated or nitrogen purged prior to storage. Experimental results indicate that TNT underwent very rapid degradation at room temperature, attributed to microbial action, whereas PETN and RDX proved to be more stable. Gamma irradiation and nitrogen purging proved of some benefit for mitigating TNT degradation, with lower storage temperatures ultimately proving the most effective method of mitigating degradation."	"Ab Initio Calculations of the N-N Bond Dissociation for the Gas-phase RDX and HMX. NO2 fission is a vital factor for 1,3,5-Trinitroperhydro-1,3,5-triazine (RDX) and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX) decomposition. In this study, the geometry of the gas-phase RDX and HMX molecules was optimized, and the bond order and the bond dissociation energy of the N-N bonds were examined. Moreover, the rate constants of the gas-phase RDX and HMX conformers, concerning the N-N bond dissociation, were evaluated using the microcanonical variational transition state theory (μVT). The calculation results have shown that HMX is more stable than RDX in terms of the N-N bond dissociation, and the conformers stability parameters were as follows: RDXaaa &lt; RDXaae &lt; HMX I &lt; HMX II. In addition, for the RDX conformers, the N-N bond of the pseudo-equatorial positioning of the nitro group was more stable than the N-N bond of the axial positioning of the nitro group, while the results were opposite in the case of the HMX conformers. Moreover, it has been shown that the dissociation rate constant of the N-N bond is influenced by the temperature significantly, thus the rate constants were much lower (&lt;10<sup>-10</sup> s<sup>-1</sup>) when the temperature was less than 1000 K."	"In silico kinetics of alkaline hydrolysis of 1,3,5-trinitro-1,3,5-triazinane (RDX): M06-2X investigation. Alkaline hydrolysis of RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine), as one of the most promising methods for nitrocompound remediation, was investigated computationally at the PCM(Pauling)/M06-2X/6-311++G(d,p) level of theory. Computational simulation shows that RDX hydrolysis is a highly exothermic multistep process involving initial deprotonation and nitrite elimination, cycle cleavage, further transformation of cycle-opened intermediates to end products caused by a series of C-N bond ruptures, hydroxide attachments, and proton transfers. Computationally predicted products of RDX hydrolysis such as nitrite, nitrous oxide, formaldehyde, formate, and ammonia correspond to experimentally observed ones. Accounting of specific hydration of hydroxide is critical to create an accurate kinetic model for alkaline hydrolysis. Simulated kinetics of the hydrolysis are in good agreement with available experimental data. A period of one month is necessary for 99% RDX decomposition at pH 10. Computations predict significant increases of the reaction rate of hydrolysis at pH 11, pH 12, and pH 13."	"A Genomic and Protein-Protein Interaction Analyses of Nonsyndromic Hearing Impairment in Cameroon Using Targeted Genomic Enrichment and Massively Parallel Sequencing. Hearing impairment (HI) is one of the leading causes of disability in the world, impacting the social, economic, and psychological well-being of the affected individual. This is particularly true in sub-Saharan Africa, which carries one of the highest burdens of this condition. Despite this, there are limited data on the most prevalent genes or mutations that cause HI among sub-Saharan Africans. Next-generation technologies, such as targeted genomic enrichment and massively parallel sequencing, offer new promise in this context. This study reports, for the first time to the best of our knowledge, on the prevalence of novel mutations identified through a platform of 116 HI genes (OtoSCOPE<sup>®</sup>), among 82 African probands with HI. Only variants OTOF NM_194248.2:c.766-2A&gt;G and MYO7A NM_000260.3:c.1996C&gt;T, p.Arg666Stop were found in 3 (3.7%) and 5 (6.1%) patients, respectively. In addition and uniquely, the analysis of protein-protein interactions (PPI), through interrogation of gene subnetworks, using a custom script and two databases (Enrichr and PANTHER), and an algorithm in the igraph package of R, identified the enrichment of sensory perception and mechanical stimulus biological processes, and the most significant molecular functions of these variants pertained to binding or structural activity. Furthermore, 10 genes (MYO7A, MYO6, KCTD3, NUMA1, MYH9, KCNQ1, UBC, DIAPH1, PSMC2, and RDX) were identified as significant hubs within the subnetworks. Results reveal that the novel variants identified among familial cases of HI in Cameroon are not common, and PPI analysis has highlighted the role of 10 genes, potentially important in understanding HI genomics among Africans."	"Ultrasensitive photoacoustic sensor based on quantum cascade laser spectroscopy. The paper focuses on development of ultra-sonic detection system based on laser photoacoustic spectroscopic technique and processing of signal for detection of very low quantity chemicals, explosive materials, and mixtures of these hazardous molecules. The detection system has been developed for the first time with specially designed one side open photo-acoustic cell having high quality factor. Explosive and Hazardous materials like RDX, DNT, PETN, Gun Powder, TATP (Tri acetone tri-peroxide) and their simulants like Acetone were detected in 7 to 9μm wavelength band. Lock in amplifier electronic instrument was used for the detection of hazardous chemicals and mixture of explosives in very low quantity. Detection limit of the photoacoustic ultrasonic sensor was also carried out of powder, liquid and adsorbed on surfaces."	"Renal denervation in male rats with heart failure improves ventricular sympathetic nerve innervation and function. Heart failure is characterized by the loss of sympathetic innervation to the ventricles, contributing to impaired cardiac function and arrhythmogenesis. We hypothesized that renal denervation (RDx) would reverse this loss. Male Wistar rats underwent myocardial infarction (MI) or sham surgery and progressed into heart failure for 4 wk before receiving bilateral RDx or sham RDx. After additional 3 wk, left ventricular (LV) function was assessed, and ventricular sympathetic nerve fiber density was determined via histology. Post-MI heart failure rats displayed significant reductions in ventricular sympathetic innervation and tissue norepinephrine content (nerve fiber density in the LV of MI+sham RDx hearts was 0.31 ± 0.05% vs. 1.00 ± 0.10% in sham MI+sham RDx group, P &lt; 0.05), and RDx significantly increased ventricular sympathetic innervation (0.76 ± 0.14%, P &lt; 0.05) and tissue norepinephrine content. MI was associated with an increase in fibrosis of the noninfarcted ventricular myocardium, which was attenuated by RDx. RDx improved LV ejection fraction and end-systolic and -diastolic areas when compared with pre-RDx levels. This is the first study to show an interaction between renal nerve activity and cardiac sympathetic nerve innervation in heart failure. Our findings show denervating the renal nerves improves cardiac sympathetic innervation and function in the post-MI failing heart."	"Synthesis and theoretical studies on nitrogen-rich salts of bis[4-nitraminofurazanyl-3-azoxy]azofurazan (ADNAAF). Multi-furazan compounds bis[4-nitramino- furazanyl-3-azoxy]azofurazan (ADNAAF) and its derivatives were first synthesized by our research group, and their structures were characterized by IR, <sup>1</sup>H-NMR, <sup>13</sup>C-NMR spectrums, and element analysis. ADNAAF was synthesized by nitration reaction of bis[4-aminofurazanyl-3-azoxy]azofurazan (ADAAF), and then reacted with ammonium hydroxide, hydrazine hydrate, and guanidine nitrate to obtain three salts marked as salt 1, 2, and 3, respectively. The thermal stabilities of the three salts were supported by the results of DSC analysis, which shows the decomposition temperatures are all above 190 °C. Their densities, enthalpies of formation, and detonation properties were studied by density functional theory (DFT) method. Salt 1 has the best detonation pressure (P), 37.42 GPa, and detonation velocity (D), 8.88 km/s, while salt 2 has the best nitrogen content and heat of detonation (Q), 1.27 kcal mol<sup>-1</sup>. The detonation properties of salt 1 is similar to that of 1,3,5-trinitro-1,3,5-triazineane (RDX). It means that the ammonium cation can provide the better D and P than the cation of hydrazine and guanidine. The three cations offer the enthalpies of formations in the order of hydrazinium &gt; guanidinium &gt; ammonium. Graphical Abstract Nitrogen-rich salts of bis[4-nitraminofurazanyl-3-azoxy]azofurazan(ADNAAF)."	"Genome Shuffling of Stenotrophomonas maltophilia OK-5 for Improving the Degradation of Explosive RDX (Hexahydro-1,3,5-trinitro-1,3,5-triazine). A genome-shuffled Stenotrophomonas maltophilia strain showing the enhanced ability of RDX degradation was constructed, and its characteristics were compared with those of the wild-type one. The shuffled strain was able to completely degrade 25, 50, and 75 µM RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) within 10, 30, and 50 days, respectively. However, it took 30 and 70 days for the wild-type strain to degrade 25 and 50 µM RDX, respectively, and at day 70, the strain degraded only 67% of 75 µM RDX. The shuffled strain reached its maximum growth at 50-60 days and exhibited approximately 1.5-fold increased cell numbers. SEM revealed more severe damage on the surface of the wild-type cells compared to the genome-shuffled cells. The mRNA levels of dnaK and groEL encoding the heat shock proteins were increased by 2.5-fold and fourfold, and DnaK and GroEL proteins were more highly produced in the shuffled cells. In addition, the mRNA levels of pnrB encoding a TNT nitroreductase, and algA involved in exopolymer biosynthesis, were slightly higher in the shuffled strain, but not as high as those of dnaK and groEL. These results indicate that the genome shuffling rendered the shuffled cells more resistant to RDX stress. A proteomic comparison revealed changes in the production levels of certain proteins including nitrate and cell protection, particularly those involved in metabolism. These proteomic analyses provide clues for understanding the improved RDX degradation by the genome-shuffled S. maltophilia strain."	"Push-out bond strength of different translucent fiber posts cemented with self-adhesive resin cement. Evaluate the bond strength of different translucent fiber posts in the cervical, middle, and apical root thirds cemented with self-adhesive resin cement. Sixty single-rooted teeth were randomly divided into five groups according to the fiber post used: Reforpost (opaque [control]), exacto, white post, radix, and Macro-Lock Illusion X-RO. The roots were subjected to chemomechanical preparation and cemented with self-adhesive resin cement. The teeth were sectioned into slices of the different root thirds and tested for bond strength (push-out). Two-way analysis of variance and Bonferroni test were used to verify statistical differences between groups (P &lt; 0.05). No significant difference between the root thirds was detected (P &gt; 0.05). However, the performance of the posts demonstrated a significant difference (P &lt; 0.05). RDX had a lower performance in the apical third (P &lt; 0.05). The other fiber posts had the same performance irrespective of the root third evaluated. The predominant failure pattern was adhesive between resin cement and root dentin. In general, the different translucent fiber posts showed the same performance. Yet, translucent fiber posts did not show superior bond strength compared with the opaque fiber post in any of the root thirds evaluated."	"Guest-induced SC-SC transformation within the first K/Cd heterodimetallic triazole complex: a luminescent sensor for high-explosives and cyano molecules. The first K/Cd heterodimetallic complex {[Cd1.5(TTPE)1.5Cl3K(H2O)3]·3H2O}n (1b) based on triazole has been generated from {[Cd(TTPE)(HCOO)](NO3)·3DMAC·H2O}n (1) during the ion- and solvent-exchange experiment in an irreversible SC-SC transformation. Based on its luminescence properties, we have, for the first time, demonstrated that 1b is a heterodimetallic sensor for detection of high-explosives and cyano molecules."	"Analysis of Urine, Oral fluid and Fingerprints by Liquid Extraction Surface Analysis Coupled to High Resolution MS and MS/MS - Opportunities for Forensic and Biomedical Science. Liquid Extraction Surface Analysis (LESA) is a new, high throughput tool for ambient mass spectrometry. A solvent droplet is deposited from a pipette tip onto a surface and maintains contact with both the surface and the pipette tip for a few seconds before being re-aspirated. The technique is particularly suited to the analysis of trace materials on surfaces due to its high sensitivity and low volume of sample removal. In this work, we assess the suitability of LESA for obtaining detailed chemical profiles of fingerprints, oral fluid and urine, which may be used in future for rapid medical diagnostics or metabolomics studies. We further show how LESA can be used to detect illicit drugs and their metabolites in urine, oral fluid and fingerprints. This makes LESA a potentially useful tool in the growing field of fingerprint chemical analysis, which is relevant not only to forensics but also to medical diagnostics. Finally, we show how LESA can be used to detect the explosive material RDX in contaminated artificial fingermarks."	"Release of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) from polymer-bonded explosives (PBXN-109) into water by artificial weathering. Polymer-bonded explosives (PBX) fulfil the need for insensitive munitions. However, the environmental impacts of PBX are unclear, even though it is likely that PBX residues from low-order detonations and unexploded ordnance are deposited on military training ranges. The release of high explosives from the polymer matrix into the environment has not been studied in detail, although as polymers degrade slowly in the environment we anticipate high explosives to be released into the environment. In this study, PBXN-109 (nominally 64% RDX) samples were exposed to variable UK climatic conditions reproduced in the laboratory to determine the effects of temperature, UV irradiation and rainfall on the release of RDX from the polymer binder. The most extreme conditions for spring, summer and winter in the UK were artificially reproduced. We found that up to 0.03% of RDX was consistently released from PBXN-109. The rate of RDX release was highest in samples exposed to the summer simulation, which had the lowest rainfall, but the highest temperatures and longest UV exposure. This was confirmed by additional experiments simulating an extreme summer month with consistently high temperatures and long periods of sunlight. These results probably reflect the combination of polymer swelling and degradation when samples are exposed to higher temperatures and prolonged UV irradiation."	"High-resolution Raman Spectroscopy for the Nanostructural Characterization of Explosive Nanodiamond Precursors. The specific attributes of nanodiamonds have attracted increasing interest for electronics or biomedical applications. An efficient synthetic route towards nanodiamonds is via detonation of hexolite (i.e. a mixture of TNT [2,4,6-trinitrotoluene] and RDX [1,3,5-trinitro-1,3,5-triazine]). In particular, detonation of hexolite crystallized by spray flash evaporation (SFE) yields extremely small diamonds (&lt;4 nm). To unravel the detonation mechanism, a structural characterization of the explosives is required but is challenging due to their thermal instability. We demonstrate a combination of conventional Raman spectroscopy and tip-enhanced Raman spectroscopy (TERS) for resolving morphological and structural differences of differently prepared hexolite nanocomposites. The experiments allow for the first time a structural differentiation of individual TNT and RDX crystals and 15-20 nm sized core-shell structures, consequently providing a general approach to investigate the actual composition of mixtures on the nanometer scale."	"Expression in grasses of multiple transgenes for degradation of munitions compounds on live-fire training ranges. The deposition of toxic munitions compounds, such as hexahydro-1, 3, 5-trinitro-1, 3, 5-triazine (RDX), on soils around targets in live-fire training ranges is an important source of groundwater contamination. Plants take up RDX but do not significantly degrade it. Reported here is the transformation of two perennial grass species, switchgrass (Panicum virgatum) and creeping bentgrass (Agrostis stolonifera), with the genes for degradation of RDX. These species possess a number of agronomic traits making them well equipped for the uptake and removal of RDX from root zone leachates. Transformation vectors were constructed with xplA and xplB, which confer the ability to degrade RDX, and nfsI, which encodes a nitroreductase for the detoxification of the co-contaminating explosive 2, 4, 6-trinitrotoluene (TNT). The vectors were transformed into the grass species using Agrobacterium tumefaciens infection. All transformed grass lines showing high transgene expression levels removed significantly more RDX from hydroponic solutions and retained significantly less RDX in their leaf tissues than wild-type plants. Soil columns planted with the best-performing switchgrass line were able to prevent leaching of RDX through a 0.5-m root zone. These plants represent a promising plant biotechnology to sustainably remove RDX from training range soil, thus preventing contamination of groundwater."	"An Energetic Triazolo-1,2,4-Triazine and its N-Oxide. The reaction of 3-amino-5-nitro-1,2,4-triazole with nitrous acid produces the corresponding diazonium salt. When the diazonium salt is treated with nitroacetonitrile, a subsequent condensation and cyclization reaction occurres to produced 4-amino-3,7-dinitrotriazolo-[5,1-c][1,2,4] triazine (DPX-26). X-ray crystallographic analysis shows that the DPX-26 has a density of 1.86 g cm<sup>-3</sup> , while it is calculated to have a heat of formation of 398.3 kJ mol<sup>-1</sup> . DPX-26 is predicted to approach the explosive performance of RDX but displays significantly better safety properties. Oxidation of DPX-26 using hypofluorous acid produces 4-amino-3,7-dinitrotriazolo-[5,1-c][1,2,4] triazine 4-oxide (DPX-27), which is also predicted to be a high-performance material with enhanced safety properties."	"A Highly Stable and Insensitive Fused Triazolo-Triazine Explosive (TTX). A fused-ring conjugated energetic molecule, 4-amino-3,7-dinitro-[1,2,4]triazolo[5,1-c] [1,2,4]triazine (TTX), has been synthesized in good yield in a two-step process starting from the known 5-amino-3-nitro-1H-1,2,4-triazole (ANTA). Characterization of TTX shows that it possesses energetic properties approaching those of 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX), but with a higher thermal stability and lower sensitivity towards impact and friction."	"Biostimulation and microbial community profiling reveal insights on RDX transformation in groundwater. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is a high explosive released to the environment as a result of weapons manufacturing and testing worldwide. At Los Alamos National Laboratory, the Technical Area (TA) 16 260 Outfall discharged high-explosives-bearing water from a high-explosives-machining facility to Cañon de Valle during 1951 through 1996. These discharges served as a primary source of high-explosives and inorganic-element contamination in the area. Data indicate that springs, surface water, alluvial groundwater, and perched-intermediate groundwater contain explosive compounds, including RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine); HMX (octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine); and TNT (2,4,6-trinitrotoluene). RDX has been detected in the regional aquifer in several wells, and a corrective measures evaluation is planned to identify remedial alternatives to protect the regional aquifer. Perched-intermediate groundwater at Technical Area 16 is present at depths from 650 ft to 1200 ft bgs. In this study, we examined the microbial diversity in a monitoring well completed in perched-intermediate groundwater contaminated by RDX, and examined the response of the microbial population to biostimulation under varying geochemical conditions. Results show that the groundwater microbiome was dominated by Actinobacteria and Proteobacteria. A total of 1,605 operational taxonomic units (OTUs) in 96 bacterial genera were identified. Rhodococcus was the most abundant genus (30.6%) and a total of 46 OTUs were annotated as Rhodococcus. One OTU comprising 25.2% of total sequences was closely related to a RDX -degrading strain R. erythropolis HS4. A less abundant OTU from the Pseudomonas family closely related to RDX-degrading strain P. putida II-B was also present. Biostimulation significantly enriched Proteobacteria but decreased/eliminated the population of Actinobacteria. Consistent with RDX degradation, the OTU closely related to the RDX-degrading P. putida strain II-B was specifically enriched in the RDX-degrading samples. Analysis of the accumulation of RDX-degradation products reveals that during active RDX degradation, there is a transient increase in the concentration of the degradation products MNX, DNX, TNX, and NDAB. The accumulation of these degradation products suggests that RDX is degraded via sequential reduction of the nitro functional groups followed by abiotic ring-cleavage. The results suggest that strict anaerobic conditions are needed to stimulate RDX degradation under the TA-16 site-specific conditions."	"Hydrazine 5,5'-bitetrazole-1,1'-diolate: a promising high density energetic salt with good properties. The development of new environmentally friendly energetic compounds with reasonable detonation performance and safety is a long-term target in energetic materials research. A new energetic eco-friendly salt of hydrazine 5,5'-bitetrazole-1,1'-diolate (HA·BTO) is developed based on the reaction of 1H,1'H-5,5'-bitetrazole-1,1'-diolate (BTO) with hydrazine hydrochloride (HA·HCl), and fully characterized. The monocrystal of the title salt is obtained and the structure is determined by powder X-ray diffraction and single crystal X-ray diffraction. Results show that the salt belongs to the triclinic space group P1[combining macron] with a relatively high density of 1.912 g cm<sup>-3</sup> under 298 K. The properties of the salt are discussed in detail. The thermal decomposition behaviors of the salt are tested, indicating that the salt has good thermal stability with a decomposition temperature above 200 °C. The enthalpy of formation for the salt is dependent on the combustion heat date measured by oxygen bomb calorimetry with a result of 425.6 kJ mol<sup>-1</sup>, which is the same level as TKX-50, and four times higher than that of RDX. The detonation pressure (P) and detonation velocity (D) of the salt are calculated as 8931 m s<sup>-1</sup> and 36.1 GPa, which are higher than those of RDX. In addition, the impact and friction sensitivities are tested through a relevant standard method with a result of 28 J and 120 N, which are better than those of TKX-50. We can draw the conclusion that the salt could provide a promising future in use as a kind of insensitive explosive alternative. The discovery also contributes significantly to the expansion and application of the chemistry of 1H,1'H-5,5'-bitetrazole-1,1'-diolate, as well as N-heterocyclic compounds."	"Biodegradation and mineralization of isotopically labeled TNT and RDX in anaerobic marine sediments. The lack of knowledge on the fate of explosive compounds 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), particularly in marine ecosystems, constrains the application of bioremediation techniques in explosive-contaminated coastal sites. The authors present a comparative study on anaerobic biodegradation and mineralization of <sup>15</sup> N-nitro group isotopically labeled TNT and RDX in organic carbon-rich, fine-grained marine sediment with native microbial assemblages. Separate sediment slurry experiments were carried out for TNT and RDX at 23°C for 16 d. Dissolved and sediment-sorbed fractions of parent and transformation products, isotopic compositions of sediment, and mineralization products of the dissolved inorganic N pool (<sup>15</sup> NH4<sup>+</sup> ,<sup>15</sup> NO3<sup>-</sup> ,<sup>15</sup> NO2<sup>-</sup> , and <sup>15</sup> N2 ) were measured. The rate of TNT removal from the aqueous phase was faster (0.75 h<sup>-1</sup> ) than that of RDX (0.37 h<sup>-1</sup> ), and <sup>15</sup> N accumulation in sediment was higher in the TNT (13%) than the RDX (2%) microcosms. Mono-amino-dinitrotoluenes were identified as intermediate biodegradation products of TNT. Two percent of the total spiked TNT-N is mineralized to dissolved inorganic N through 2 different pathways: denitration as well as deamination and formation of NH4<sup>+</sup> , facilitated by iron and sulfate reducing bacteria in the sediments. The majority of the spiked TNT-N (85%) is in unidentified pools by day 16. Hexahydro-1,3,5-trinitro-1,3,5-triazine (10%) biodegrades to nitroso derivatives, whereas 13% of RDX-N in nitro groups is mineralized to dissolved inorganic N anaerobically by the end of the experiment. The primary identified mineralization end product of RDX (40%) is NH4<sup>+</sup> , generated through either deamination or mono-denitration, followed by ring breakdown. A reasonable production of N2 gas (13%) was seen in the RDX system but not in the TNT system. Sixty-eight percent of the total spiked RDX-N is in an unidentified pool by day 16 and may include unquantified mineralization products dissolved in water. Environ Toxicol Chem 2017;36:1170-1180. © 2016 SETAC."	"Fluorescence Detection of a Broad Class of Explosives with One Zinc(II)-Coordination Nanofiber. In this work, we report the development of one fluorescent carbazole-based oligomer 1-zinc(II) coordination nanofiber which enabled the detection of five classes of explosives, i.e., nitroaromatics (dinitrotoluene, DNT, and trinitrotoluene, TNT), aliphatic nitro-organics (2,3-dimethyl-2,3-dinitrobutane, DMNB), nitramines (cyclotrimethylenetrinitramine, RDX), nitro-esters (pentaerythritol tetranitrate, PETN), and black powder (sulfur). We demonstrate that the coordination of zinc ion with a carbazole-based oligomer 1 allows the formation of the Lewis acid-base complex between explosives and the nanofiber that enhances the electron-accepting ability of the nitro-based explosives and the binding interactions between the sensing nanofibers and explosives. Furthermore, the resulting nanofiber-based sensor exhibited highly sensitive fluorescence quenching when exposed to trace sulfur, thereby enabling the sensitive detection of black powder. Herein, we present a new fluorescent sensor for five classes of explosives, which represents an important advance toward a richer identification of threats."	"Blast waves from detonated military explosive reduce GluR1 and synaptophysin levels in hippocampal slice cultures. Explosives create shockwaves that cause blast-induced neurotrauma, one of the most common types of traumatic brain injury (TBI) linked to military service. Blast-induced TBIs are often associated with reduced cognitive and behavioral functions due to a variety of factors. To study the direct effects of military explosive blasts on brain tissue, we removed systemic factors by utilizing rat hippocampal slice cultures. The long-term slice cultures were briefly sealed air-tight in serum-free medium, lowered into a 37°C water-filled tank, and small 1.7-gram assemblies of cyclotrimethylene trinitramine (RDX) were detonated 15cm outside the tank, creating a distinct shockwave recorded at the culture plate position. Compared to control mock-treated groups of slices that received equal submerge time, 1-3 blast impacts caused a dose-dependent reduction in the AMPA receptor subunit GluR1. While only a small reduction was found in hippocampal slices exposed to a single RDX blast and harvested 1-2days later, slices that received two consecutive RDX blasts 4min apart exhibited a 26-40% reduction in GluR1, and the receptor subunit was further reduced by 64-72% after three consecutive blasts. Such loss correlated with increased levels of HDAC2, a histone deacetylase implicated in stress-induced reduction of glutamatergic transmission. No evidence of synaptic marker recovery was found at 72h post-blast. The presynaptic marker synaptophysin was found to have similar susceptibility as GluR1 to the multiple explosive detonations. In contrast to the synaptic protein reductions, actin levels were unchanged, spectrin breakdown was not detected, and Fluoro-Jade B staining found no indication of degenerating neurons in slices exposed to three RDX blasts, suggesting that small, sub-lethal explosives are capable of producing selective alterations to synaptic integrity. Together, these results indicate that blast waves from military explosive cause signs of synaptic compromise without producing severe neurodegeneration, perhaps explaining the cognitive and behavioral changes in those blast-induced TBI sufferers that have no detectable neuropathology."	"Rapid screening of explosives in ambient environment by aerodynamic assisted thermo desorption mass spectrometry. Rapid, direct, and trace detection of explosives in an open environment is of particular need in homeland and/or transportation security. In this work, an aerodynamic assisted thermo desorption mass spectrometry method was developed for the direct quantitative analyses of explosives from a distance. Remote non-volatile explosive sensing was achieved for 2, 4, 6-trinitrotoluene, trinitrohexahydro-1, 3, 5-triazine, 8701 (main ingredient: RDX 98.5%), and C4 (a type of plastic explosive) with a distance of 0.65 m. Furthermore, a close to 324 cm<sup>2</sup> effective sampling area could be achieved, and the limits of detection are in the ng range. This device can be deployed in airports and subway stations for high-throughput and automatic luggage/personnel screening of prohibited articles, such as explosives and illicit drugs. Copyright © 2016 John Wiley &amp; Sons, Ltd."	"Novel dinitromethyl-featured polynitro energetic salts. A unique and facile method was developed to synthesize a new class of energetic salts based on 2-amino-1,1,5,5-tetranitro-4-oxo-3-aza-pentene. All the salts were fully characterized by NMR (<sup>1</sup>H and <sup>13</sup>C), IR spectroscopy and elemental analysis. Furthermore, the crystal structure of the guanidinium salt (5) was determined by single-crystal X-ray diffraction. The differential scanning calorimetry (DSC) results showed that the decomposition temperatures of these salts were between 126.2 °C (10) and 148.8 °C (9). The densities of these salts lie in the range of 1.745 (8) to 1.880 (4) g cm<sup>-3</sup>. Their impact sensitivities and friction sensitivities were measured to be in the range of 1-16 J and 48-84 N, respectively. All the salts exhibited promising detonation performances (detonation pressure: 28.6 to 34.3 GPa; detonation velocity: 8037 to 8674 m s<sup>-1</sup>), and the detonation performances of salt 4 were comparable to those of RDX."	"Gas phase RDX decomposition pathways using coupled cluster theory. Electronic and free energy barriers for a series of gas-phase RDX decomposition mechanisms have been obtain using coupled cluster singles, doubles, and perturbative triples with complete basis set (CCSD(T)/CBS) electronic energies for MBPT(2)/cc-pVTZ structures. Importantly, we have located a well-defined transition state for NN homolysis, in the initial RDX decomposition step, thereby obtaining a true barrier for this reaction. These calculations support the view that HONO elimination is preferred at STP over other proposed mechanisms, including NN homolysis, &quot;triple whammy&quot; and NONO isomerization. Indeed, our calculated values of Arrhenius parameters are in agreement with experimental findings for gas phase RDX decomposition. We also investigate a number of new pathways leading to breakdown of the intermediate formed by the initial HONO elimination, and find that NN homolysis in this intermediate has an activation energy barrier comparable with that computed for HONO elimination."	"Impact of glycerin and lignosulfonate on biodegradation of high explosives in soil. Soil microcosms were constructed and monitored to evaluate the impact of substrate addition and transient aerobic and anaerobic conditions on TNT, RDX and HMX biodegradation in grenade range soils. While TNT was rapidly biodegraded under both aerobic and anaerobic conditions with and without organic substrate, substantial biodegradation of RDX, HMX, and RDX daughter products was not observed under aerobic conditions. However, RDX and HMX were significantly biodegraded under anaerobic conditions, without accumulation of TNT or RDX daughter products (2-ADNT, 4-ADNT, MNX, DNX, and TNX). In separate microcosms containing grenade range soil, glycerin and lignosulfonate addition enhanced oxygen consumption, increasing the consumption rate &gt;200% compared to untreated soils. Mathematical model simulations indicate that oxygen consumption rates of 5 to 20g/m<sup>3</sup>/d can be achieved with reasonable amendment loading rates. These results indicate that glycerin and lignosulfonate can be potentially used to stimulate RDX and HMX biodegradation by increasing oxygen consumption rates in soil."	"A two-stage extraction procedure for insensitive munition (IM) explosive compounds in soils. The Department of Defense (DoD) is developing a new category of insensitive munitions (IMs) that are more resistant to detonation or promulgation from external stimuli than traditional munition formulations. The new explosive constituent compounds are 2,4-dinitroanisole (DNAN), nitroguanidine (NQ), and nitrotriazolone (NTO). The production and use of IM formulations may result in interaction of IM component compounds with soil. The chemical properties of these IM compounds present unique challenges for extraction from environmental matrices such as soil. A two-stage extraction procedure was developed and tested using several soil types amended with known concentrations of IM compounds. This procedure incorporates both an acidified phase and an organic phase to account for the chemical properties of the IM compounds. The method detection limits (MDLs) for all IM compounds in all soil types were &lt;5 mg/kg and met non-regulatory risk-based Regional Screening Level (RSL) criteria for soil proposed by the U.S. Army Public Health Center. At defined environmentally relevant concentrations, the average recovery of each IM compound in each soil type was consistent and greater than 85%. The two-stage extraction method decreased the influence of soil composition on IM compound recovery. UV analysis of NTO established an isosbestic point based on varied pH at a detection wavelength of 341 nm. The two-stage soil extraction method is equally effective for traditional munition compounds, a potentially important point when examining soils exposed to both traditional and insensitive munitions."	"Standoff Mechanical Resonance Spectroscopy Based on Infrared-Sensitive Hydrogel Microcantilevers. This paper reports a highly sensitive and selective remote chemical sensing platform for surface-adsorbed trace chemicals by using infrared (IR)-sensitive hydrogel microcantilevers. Poly(ethylene glycol) diacrylate (PEG-DA) hydrogel microcantilevers are fabricated by ultraviolet (UV) curing of PEG-DA prepolymer introduced into a poly(dimethylsiloxane) mold. The resonance frequency of a PEG-DA microcantilever exhibits high thermal sensitivity due to IR irradiation/absorption. When a tunable IR laser beam is reflected off a surface coated with target chemical onto a PEG-DA microcantilever, the resonance frequency of the cantilever shifts in proportion to the chemical nature of the target molecules. Dynamic responses of the PEG-DA microcantilever can be obtained in a range of IR wavelengths using a tunable quantum cascade laser that can form the basis for the standoff mechanical resonance spectroscopy (SMRS). Using this SMRS technique, we have selectively detected three compounds, dimethyl methyl phosphonate (DMMP), cyclotrimethylene trinitramine (RDX), and pentaerythritol tetranitrate (PETN), located 4 m away from the PEG-DA microcantilever detector. The experimentally measured limit of detection for PETN trace using the PEG-DA microcantilever was 40 ng/cm<sup>2</sup>. Overall, the PEG-DA microcantilever is a promising candidate for further exploration and optimization of standoff detection methods."	"Study on the anisotropic response of condensed-phase RDX under repeated stress wave loading via ReaxFF molecular dynamics simulation. Anisotropic mechanical response and chemical reaction process of cyclotrimethylene trinitramine (RDX) along crystal orientations were studied with molecular dynamics simulations using ReaxFF potential under repeated stress wave loading. In the simulations, shocks were propagated along the [010], [001], [210], [100], [111], and [102] orientations of crystal RDX at initial particle velocity Up in the range of 1∼4 km/s. For shocks at Up ≤ 2 km/s, local stacking fault and molecular conformational change can only cause marginal temperature and pressure increase without molecular decomposition. As shocks increase to Up ≥ 2.5 km/s, rupture of N-NO2 bond accompanied by partial HONO elimination dominates the main chemical reactions at the initial stage. The ordering of the follow-up consumption of NO2 and ring-breaking rate is directly consistent with that of increasing rate in temperature and pressure. The (210) and (100) planes are more sensitive to shocks in temperature and pressure profiles than the (111) plane, which agrees well with experimental observations and theoretical results in the literature. Therefore, the repeated dynamic loading model in conjunction with MD simulation using ReaxFF potential for crystal RDX indicates that these methods can be applied to study the mechanical response and chemical reaction process of polymer bonded explosives that are commonly subjected to compressive and tensile stress waves observed in practice. "	"Energetic 4,4'-Oxybis[3,3'-(1-hydroxytetrazolyl)]furazan and Its Salts. Energetic compounds that incorporate multiple nitrogen-rich heterocycles are of great interest for high-density energetic materials. A facile synthetic strategy to combine an oxy bridge and furazan groups, as well as tetrazole-ols, into a molecule (5) was found. Some energetic salts based on 5 were prepared by neutralization. All of the compounds were fully characterized. Additionally, the structure of 7 has been elucidated by single-crystal XRD analysis. Physicochemical and energetic properties were also studied; these show that these newly designed energetic salts exhibit good thermal stabilities. Hydroxylammonium salt (6) has a detonation performance and sensitivities comparable with those of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX)."	"Bis(4-nitraminofurazanyl-3-azoxy)azofurazan and Derivatives: 1,2,5-Oxadiazole Structures and High-Performance Energetic Materials. Bis(4-nitraminofurazanyl-3-azoxy)azofurazan (1) and ten of its energetic salts were prepared and fully characterized. Computational analysis based on isochemical shielding surface and trigger bond dissociation enthalpy provide a better understanding of the thermal stabilities for nitramine-furazans. These energetic compounds exhibit good densities, high heats of formation, and excellent detonation velocity and pressure. Some representative compounds, for example, 1 (vD : 9541 m s(-1) ; P: 40.5 GPa), and 4 (vD : 9256 m s(-1) ; P: 38.0 GPa) exhibit excellent detonation performances, which are comparable with current high explosives such as RDX (vD : 8724 m s(-1) ; P: 35.2 GPa) and HMX (vD : 9059 m s(-1) ; P: 39.2 GPa)."	"Understanding metastable phase transformation during crystallization of RDX, HMX and CL-20: experimental and DFT studies. Multiphase growth during crystallization severely affects deliverable output of explosive materials. Appearance and incomplete transformation of metastable phases are a major source of polymorphic impurities. This article presents a methodical and molecular level understanding of the metastable phase transformation mechanism during crystallization of cyclic nitramine explosives, viz. RDX, HMX and CL-20. Instantaneous reverse precipitation yielded metastable γ-HMX and β-CL-20 which undergo solution mediated transformation to the respective thermodynamic forms, β-HMX and ε-CL-20, following 'Ostwald's rule of stages'. However, no metastable phase, anticipated as β-RDX, was evidenced during precipitation of RDX, which rather directly yielded the thermodynamically stable α-phase. The γ→β-HMX and β→ε-CL-20 transformations took 20 and 60 minutes respectively, whereas formation of α-RDX was instantaneous. Density functional calculations were employed to identify the possible transition state conformations and to obtain activation barriers for transformations at wB97XD/6-311++G(d,p)(IEFPCM)//B3LYP/6-311G(d,p) level of theory. The computed activation barriers and lattice energies responsible for transformation of RDX, HMX and CL-20 metastable phases to thermodynamic ones conspicuously supported the experimentally observed order of phase stability. This precise result facilitated an understanding of the occurrence of a relatively more sensitive and less dense β-CL-20 phase in TNT based melt-cast explosive compositions, a persistent and critical problem unanswered in the literature. The crystalline material recovered from such compositions revealed a mixture of β- and ε-CL-20. However, similar compositions of RDX and HMX never showed any metastable phase. The relatively long stability with the highest activation barrier is believed to restrict complete β→ε-CL-20 transformation during processing. Therefore a method is suggested to overcome this issue. "	"A theoretical study of the relaxation of a phenyl group chemisorbed to an RDX freestanding thin film. Energy relaxation from an excited phenyl group chemisorbed to the surface of a crystalline thin film of α-1,3,5-trinitro-1,3,5-triazacyclohexane (α-RDX) at 298 K and 1 atm is simulated using molecular dynamics. Two schemes are used to excite the phenyl group. In the first scheme, the excitation energy is added instantaneously as kinetic energy by rescaling momenta of the 11 atoms in the phenyl group. In the second scheme, the phenyl group is equilibrated at a higher temperature in the presence of static RDX geometries representative of the 298 K thin film. An analytical model based on ballistic phonon transport that requires only the harmonic part of the total Hamiltonian and includes no adjustable parameters is shown to predict, essentially quantitatively, the short-time dynamics of the kinetic energy relaxation (∼200 fs). The dynamics of the phenyl group for times longer than about 6 ps follows exponential decay and agrees qualitatively with the dynamics described by a master equation. Long-time heat propagation within the bulk of the crystal film is consistent with the heat equation. "	"Multiple metrics quantify and differentiate responses of vegetation to composition B. Quantifying vegetation response to explosive compounds has focused predominantly on morphological impacts and uptake efficiency. A more comprehensive understanding of the total impacts of explosives on vegetation can be gained using a multivariate approach. We hypothesized that multiple variables representing morphological and physiological responses will more clearly differentiate species and treatments than any single variable. Individuals of three plant species were placed in soils contaminated with Composition B, which comprises 60% hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and 40% 2,4,6-trinitrotoluene (TNT), and grown for 2 months. Response metrics used included photosynthetic operation, water relations, growth characteristics, as well as nitrogen and carbon concentrations and isotopic compositions. Individual metrics showed high variability in response across the three species tested. Water relations and nitrogen isotopic composition exhibited the most consistent response across species. By comparing multiple variables simultaneously, better separation of both species and exposure was observed. The inclusion of novel metrics can reinforce previously established concepts and provide a new perspective. Additionally, the inclusion of various other metrics can greatly increase the ability to identify and differentiate particular groups. By using multivariate analyses and standard vegetation metrics, new aspects of the vegetation response to explosive compounds can be identified."	"Multivariate functions for predicting the sorption of 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitro-1,3,5-tricyclohexane (RDX) among taxonomically distinct soils. After nearly a century of use in numerous munition platforms, TNT and RDX contamination has turned up largely in the environment due to ammunition manufacturing or as part of releases from low-order detonations during training activities. Although the basic knowledge governing the environmental fate of TNT and RDX are known, accurate predictions of TNT and RDX persistence in soil remain elusive, particularly given the universal heterogeneity of pedomorphic soil types. In this work, we proposed a new solution for modeling the sorption and persistence of these munition constituents as multivariate mathematical functions correlating soil attribute data over a variety of taxonomically distinct soil types to contaminant behavior, instead of a single constant or parameter of a specific absolute value. To test this idea, we conducted experiments measuring the sorption of TNT and RDX on taxonomically different soil types that were extensively physical and chemically characterized. Statistical decomposition of the log-transformed, and auto-scaled soil characterization data using the dimension-reduction technique PCA (principal component analysis) revealed a strong latent structure based in the multiple pairwise correlations among the soil properties. TNT and RDX sorption partitioning coefficients (KD-TNT and KD-RDX) were regressed against this latent structure using partial least squares regression (PLSR), generating a 3-factor, multivariate linear functions. Here, PLSR models predicted KD-TNT and KD-RDX values based on attributes contributing to endogenous alkaline/calcareous and soil fertility criteria, respectively, exhibited among the different soil types: We hypothesized that the latent structure arising from the strong covariance of full multivariate geochemical matrix describing taxonomically distinguished soil types may provide the means for potentially predicting complex phenomena in soils. The development of predictive multivariate models tuned to a local soil's taxonomic designation would have direct benefit to military range managers seeking to anticipate the environmental risks of training activities on impact sites. "	"Dependence of Raman Spectral Intensity on Crystal Size in Organic Nano Energetics. Raman spectra for various nitramine energetic compounds were investigated as a function of crystal size at the nanoscale regime. In the case of 2,4,6,8,10,12-hexanitro-2,4,6,8,10,12-hexaazaisowurtzitane (CL-20), there was a linear relationship between intensity of Raman spectra and crystal size. Notably, the Raman modes between 120 cm(-1) and 220 cm(-1) were especially affected, and at the smallest crystal size, were completely eliminated. The Raman spectral intensity of octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), like that of CL-20's, depended linearly on crystal size. The Raman spectral intensity of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), however, was not observably changed by crystal size. A non-nitramine explosive compound, 2,4,6-triamino-1,3,5- trinitrobenzene (TATB), was also investigated. Its spectral intensity was also found to correlate linearly with crystal size, although substantially less so than that of HMX and CL-20. To explain the observed trends, it is hypothesized that disordered molecular arrangement, originating from the crystal surface, may be responsible. In particular, it appears that the thickness of the disordered surface layer is dependent on molecular characteristics, including size and conformational flexibility. Furthermore, as the mean crystal size decreases, the volume fraction of disordered molecules within a specimen increases, consequently, weakening the Raman intensity. These results could have practical benefit for allowing the facile monitoring of crystal size during manufacturing. Finally, these findings could lead to deep insights into the general structure of the surface of crystals. "	"Experimental determination of solvent-water partition coefficients and Abraham parameters for munition constituents. There is concern about the environmental fate and effects of munition constituents (MCs). Polyparameter linear free energy relationships (pp-LFERs) that employ Abraham solute parameters can aid in evaluating the risk of MCs to the environment. However, poor predictions using pp-LFERs and ABSOLV estimated Abraham solute parameters are found for some key physico-chemical properties. In this work, the Abraham solute parameters are determined using experimental partition coefficients in various solvent-water systems. The compounds investigated include hexahydro-1,3,5-trinitro-1,3,5-triazacyclohexane (RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetraazacyclooctane (HMX), hexahydro-1-nitroso-3,5-dinitro-1,3,5-triazine (MNX), hexahydro-1,3,5-trinitroso-1,3,5-triazine (TNX), hexahydro-1,3-dinitroso-5- nitro-1,3,5-triazine (DNX), 2,4,6-trinitrotoluene (TNT), 1,3,5-trinitrobenzene (TNB), and 4-nitroanisole. The solvents in the solvent-water systems are hexane, dichloromethane, trichloromethane, octanol, and toluene. The only available reported solvent-water partition coefficients are for octanol-water for some of the investigated compounds and they are in good agreement with the experimental measurements from this study. Solvent-water partition coefficients fitted using experimentally derived solute parameters from this study have significantly smaller root mean square errors (RMSE = 0.38) than predictions using ABSOLV estimated solute parameters (RMSE = 3.56) for the investigated compounds. Additionally, the predictions for various physico-chemical properties using the experimentally derived solute parameters agree with available literature reported values with prediction errors within 0.79 log units except for water solubility of RDX and HMX with errors of 1.48 and 2.16 log units respectively. However, predictions using ABSOLV estimated solute parameters have larger prediction errors of up to 7.68 log units. This large discrepancy is probably due to the missing R2NNO2 and R2NNO2 functional groups in the ABSOLV fragment database. "	"Identification of groundwater microorganisms capable of assimilating RDX-derived nitrogen during in-situ bioremediation. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), a nitroamine explosive, is commonly detected in groundwater at military testing and training sites. The objective of this study was to characterize the microbial community capable of using nitrogen derived from the RDX or RDX intermediates during in situ bioremediation. Active groundwater microorganisms capable of utilizing nitro-, ring- or fully-labeled (15)N-RDX as a nitrogen source were identified using stable isotope probing (SIP) in groundwater microcosms prepared from two wells in an aquifer previously amended with cheese whey to promote RDX biodegradation. A total of fifteen 16S rRNA gene sequences, clustered in Clostridia, β-Proteobacteria, and Spirochaetes, were derived from the (15)N-labeled DNA fractions, suggesting the presence of metabolically active bacteria capable of using RDX and/or RDX intermediates as a nitrogen source. None of the derived sequences matched RDX-degrading cultures commonly studied in the laboratory, but some of these genera have previously been linked to RDX degradation in site groundwater via (13)C-SIP. When additional cheese whey was added to the groundwater samples, 28 sequences grouped into Bacteroidia, Bacilli, and α-, β-, and γ-Proteobacteria were identified. The data suggest that numerous bacteria are capable of incorporating N from ring- and nitro-groups in RDX during anaerobic bioremediation, and that some genera may be involved in both C and N incorporation from RDX. "	"Standoff Photoacoustic Spectroscopy of Explosives. Detection and identification of unknown and possibly hazardous materials is a vital area of research to which infrared (IR) spectroscopy is ideally suited. Infrared absorption spectra can be measured with many sensing paradigms of which photoacoustic spectroscopy (PAS) is a sensitive and flexible variant. The flexibility of PAS allows for the construction of narrowly tailored spectroscopic sensors that are designed for specific tasks. We discuss the evaluation of an interferometric PAS sensor by the measurement of common explosive hazards from a standoff distance of 1 m. Reproduction of IR absorption spectra for 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), pentaerythritol tetranitrate (PETN), and 2,4,6-trinitrotoluene (TNT) demonstrate the capabilities of the interferometric sensor for standoff explosives detection."	"Reduction and persulfate oxidation of nitro explosives in contaminated soils using Fe-bearing materials. The oxidative and reductive transformation of nitro explosives in contaminated soils with Fe-bearing materials and persulfate (S2O8(2-)) was examined via batch experiments. Zero-valent cast iron [Fe(0)], steel dust from a steel manufacturing plant, and FeS rapidly reduced 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in soil under anaerobic conditions as long as a sufficient amount of water was present. The Fe-bearing materials also effectively activated persulfate to enhance the oxidative transformation of TNT and RDX in soil-water systems. Kinetically, reductive and oxidative transformations removed more than 90% of the explosives from a soil-water system within 5 h under the given conditions. Pseudo-first-order rates in the range of 0.7-23.4 h(-1) were observed. By increasing the concentration of persulfate or Fe-bearing materials, the oxidative transformation could be promoted. Treated soils via redox reactions using the Fe-bearing materials did not show significant toxicity, except for the case of TNT-contaminated soils oxidized by FeS-assisted persulfate. Considering the kinetics of explosive degradation and the toxicity of treated wastewaters and soils, Fe(0) or steel dust-assisted persulfate oxidation may be a safe option as an ex situ remediation process for the treatment of explosive-contaminated soils. "	"Combined use of direct analysis in real-time/Orbitrap mass spectrometry and micro-Raman spectroscopy for the comprehensive characterization of real explosive samples. Direct Analysis in Real Time (DART™) high-resolution Orbitrap™ mass spectrometry (HRMS) in combination with Raman microscopy was used for the detailed molecular level characterization of explosives including not only the charge but also the complex matrix of binders, plasticizers, polymers, and other possible organic additives. A total of 15 defused military weapons including grenades, mines, rockets, submunitions, and mortars were examined. Swabs and wipes were used to collect trace (residual) amounts of explosives and their organic constituents from the defused military weapons and micrometer-size explosive particles were transferred using a vacuum suction-impact collection device (vacuum impactor) from wipe and swap samples to an impaction plate made of carbon. The particles deposited on the carbon plate were then characterized using micro-Raman spectroscopy followed by DART-HRMS providing fingerprint signatures of orthogonal nature. The optical microscope of the micro-Raman spectrometer was first used to localize and characterize the explosive charge on the impaction plate which was then targeted for identification by DART-HRMS analysis in both the negative and positive modes. Raman spectra of the explosives TNT, RDX and PETN were acquired from micrometer size particles and characterized by the presence of their characteristic Raman bands obtained directly at the surface of the impaction plate nondestructively without further sample preparation. Negative mode DART-HRMS confirmed the types of charges contained in the weapons (mainly TNT, RDX, HMX, and PETN; either as individual components or as mixtures). These energetic compounds were mainly detected as deprotonated species [M-H](-), or as adduct [M + (35)Cl](-), [M + (37)Cl](-), or [M + NO3](-) anions. Chloride adducts were promoted in the heated DART reagent gas by adding chloroform vapors to the helium stream using an &quot;in-house&quot; delivery method. When the polarity was switched to positive mode, DART-HRMS revealed a very complex distribution of polymeric binders (mainly polyethylene glycols and polypropylene glycols), plasticizers (e.g., dioctyl sebacate, tributyl phosphate), as well as wax-like compounds whose structural features could not be precisely assigned. In positive mode, compounds were identified either as protonated molecules or ammonium adduct species. These results clearly demonstrate the complementarity of micro-Raman microscopy combined with DART-MS. The former technique provides structural information on the type of explosives present at the surface of the sample, whereas the latter provides not only a confirmation of the nature of the explosive charge but also useful additional information regarding the nature of the complex organic matrix of binders, plasticizers, polymers, oils, and potentially other organic additives and contaminants present in the sample. Combining these two techniques provides a powerful tool for the screening, comprehensive characterization, and differentiation of particulate explosive samples for forensic sciences and homeland security applications. Graphical Abstract Comprehensive characterization of explosive particles collected from swipe samples by micro-Raman and DART™-HRMS. "	"A Fast Liquid Chromatography Tandem Mass Spectrometric Analysis of PETN (Pentaerythritol Tetranitrate), RDX (3,5-Trinitro-1,3,5-triazacyclohexane) and HMX (Octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine) in Soil, Utilizing a Simple Ultrasonic-Assisted Extraction with Minimum Solvent. Direct analyses of explosives in soil using liquid chromatography tandem mass spectrometry (LC-MS/MS) methods are very limited in the literature and require complex procedures or relatively high amount of solvent. A simple and rapid method was developed for the determination of pentaerythritol tetranitrate (PETN), 3,5-trinitro-1,3,5-triazacyclohexane (RDX) and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), which are among the explosives used in terrorist attacks. A one-step extraction method for 1.00 g soil with 2.00 mL acetonitrile, and a 8-min LC-MS/MS method was developed. The detection limits for PETN, RDX and HMX were 5.2, 8.5 and 3.4 ng/g and quantitation limits were 10.0, 24.5, 6.0 ng/g. The intermediate precisions and Horwitz Ratio's were between 4.10 - 13.26% and 0.24 - 0.98, in order. This method was applied to a model post-blast debris collected from an artificial explosion and real samples collected after a terrorist attack in Istanbul. The method is easy and fast and requires less solvent use than other methods. "	"Evaluation of Biostimulation and Bioaugmentation To Stimulate Hexahydro-1,3,5-trinitro-1,3,5,-triazine Degradation in an Aerobic Groundwater Aquifer. Hexahydro-1,3,5-trinitro-1,3,5,-triazine (RDX) is a toxic and mobile groundwater contaminant common to military sites. This study compared in situ RDX degradation rates following bioaugmentation with Gordonia sp. strain KTR9 (henceforth KTR9) to rates under biostimulation conditions in an RDX-contaminated aquifer in Umatilla, OR. Bioaugmentation was achieved by injecting site groundwater (6000 L) amended with KTR9 cells (10(8) cells mL(-1)) and low carbon substrate concentrations (&lt;1 mM fructose) into site wells. Biostimulation (no added cells) was performed by injecting groundwater amended with low (&lt;1 mM fructose) or high (&gt;15 mM fructose) carbon substrate concentrations in an effort to stimulate aerobic or anaerobic microbial activity, respectively. Single-well push-pull tests were conducted to measure RDX degradation rates for each treatment. Average rate coefficients were 1.2 day(-1) for bioaugmentation and 0.7 day(-1) for high carbon biostimulation; rate coefficients for low carbon biostimulation were not significantly different from zero (p values ≥0.060). Our results suggest that bioaugmentation with KTR9 is a feasible strategy for in situ biodegradation of RDX and, at this site, is capable of achieving RDX concentration reductions comparable to those obtained by high carbon biostimulation while requiring ~97% less fructose. Bioaugmentation has potential to minimize substrate quantities and associated costs, as well as secondary groundwater quality impacts associated with anaerobic biostimulation processes (e.g., hydrogen sulfide, methane production) during full-scale RDX remediation."	"Photobiological transformation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) using Rhodobacter sphaeroides. Pump-and-treat strategies for groundwater containing explosives may be necessary when the contaminated water approaches sensitive receptors. This project investigated bacterial photosynthesis as a strategy for ex situ treatment, using light as the primary energy source to facilitate RDX transformation. The objective was to characterize the ability of photosynthetic Rhodobacter sphaeroides (strain ATCC(®) 17023 ™) to transform the high-energy explosive RDX. R. sphaeroides transformed 30 μM RDX within 40 h under light conditions; RDX was not fully transformed in the dark (non-photosynthetic conditions), suggesting that photosynthetic electron transfer was the primary mechanism. Experiments with RDX demonstrated that succinate and malate were the most effective electron donors for photosynthesis, but glycerol was also utilized as a photosynthetic electron donor. RDX was transformed irrespective of the presence of carbon dioxide. The electron shuttling compound anthraquinone-2,6-disulfonate (AQDS) increased transformation kinetics in the absence of CO2, when the cells had excess NADPH that needed to be re-oxidized because there was limited CO2 for carbon fixation. When CO2 was added, the cells generated more biomass, and AQDS had no stimulatory effect. End products indicated that RDX carbon became CO2, biomass, and a soluble, uncharacterized aqueous metabolite, determined using (14)C-labeled RDX. These data are the first to suggest that photobiological explosives transformation is possible and will provide a framework for which phototrophy can be used in environmental restoration of explosives contaminated water. "	"Determination of Nanogram Microparticles from Explosives after Real Open-Air Explosions by Confocal Raman Microscopy. Explosives are increasingly being used for terrorist attacks to cause devastating explosions. The detection of their postblast residues after an explosion is a high challenge, which has been barely investigated, particularly using spectroscopic techniques. In this research, a novel methodology using confocal Raman microscopy has been developed for the analysis of postblast residues from 10 open-air explosions caused by 10 different explosives (TNT, RDX, PETN, TATP, HMTD, dynamite, black powder, ANFO, chloratite, and ammonal) commonly used in improvised explosive devices. The methodology for the determination of postblast particles from explosives consisted of examining the samples surfaces with both the naked eye, first, and microscopically (10× and 50×), immediately afterward; and finally, analyzing the selected residues by confocal Raman spectroscopy in order to identify the postblast particles from explosives. Interestingly, confocal Raman microscopy has demonstrated to be highly suitable to rapidly, selectively, and noninvasively analyze postblast microscopic particles from explosives up to the nanogram range."	"Energetic Salts Based on 3,5-Bis(dinitromethyl)-1,2,4-triazole Monoanion and Dianion: Controllable Preparation, Characterization, and High Performance. Molecular modification of known explosives is considered to be an efficient route to design new energetic materials. A new family of energetic salts based on the 3,5-bis(dinitromethyl)-1,2,4-triazole monoanion and dianion were controllably synthesized by using 1-diamino-2,2-dinitroethene as a precursor. X-ray structure determination of monohydrazinium 3,5-bis(dinitromethyl)-1,2,4-triazolate (5) and monoammonium (6) and diammonium 3,5-bis(dinitromethyl)-1,2,4-triazolate hydrate (8·H2O) further confirmed the structures of these anions. In addition, as supported by X-ray data, in the monoanion system, the roving proton on the ring nitrogen rather than on the gem-dinitro carbon results in extensive hydrogen-bonding interactions and higher packing coefficients. Interestingly, 5 and 6 possess the highest calculated crystal densities, 1.965 and 1.957 g cm(-3) at 150 K, for hydrazinium and ammonium energetic salts, respectively. Energetic evaluation indicates that 5 (detonation velocity vD = 9086 m s(-1); detonation pressure P = 38.7 GPa) and 6 (vD, 9271 m s(-1); P = 41.0 GPa) exhibit great detonation properties, superior to those of current highly explosive benchmarks, such as 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX)."	"The spatial distribution patterns of condensed phase post-blast explosive residues formed during detonation. The continued usage of explosive devices, as well as the ever growing threat of 'dirty' bombs necessitates a comprehensive understanding of particle dispersal during detonation events in order to develop effectual methods for targeting explosive and/or additive remediation efforts. Herein, the distribution of explosive analytes from controlled detonations of aluminised ammonium nitrate and an RDX-based explosive composition were established by systematically sampling sites positioned around each firing. This is the first experimental study to produce evidence that the post-blast residue mass can distribute according to an approximate inverse-square law model, while also demonstrating for the first time that distribution trends can vary depending on individual analytes. Furthermore, by incorporating blast-wave overpressure measurements, high-speed imaging for fireball volume recordings, and monitoring of environmental conditions, it was determined that the principle factor affecting all analyte dispersals was the wind direction, with other factors affecting specific analytes to varying degrees. The dispersal mechanism for explosive residue is primarily the smoke cloud, a finding which in itself has wider impacts on the environment and fundamental detonation theory."	"α5GABAA receptor deficiency causes autism-like behaviors. The prevalence of autism spectrum disorders (ASDs), which affect over 1% of the population, has increased twofold in recent years. Reduced expression of GABAA receptors has been observed in postmortem brain tissue and neuroimaging of individuals with ASDs. We found that deletion of the gene for the α5 subunit of the GABAA receptor caused robust autism-like behaviors in mice, including reduced social contacts and vocalizations. Screening of human exome sequencing data from 396 ASD subjects revealed potential missense mutations in GABRA5 and in RDX, the gene for the α5GABAA receptor-anchoring protein radixin, further supporting a α5GABAA receptor deficiency in ASDs."	"Identifications of novel mechanisms in breast cancer cells involving duct-like multicellular spheroid formation after exposure to the Random Positioning Machine. Many cell types form three-dimensional aggregates (MCS; multicellular spheroids), when they are cultured under microgravity. MCS often resemble the organ, from which the cells have been derived. In this study we investigated human MCF-7 breast cancer cells after a 2 h-, 4 h-, 16 h-, 24 h- and 5d-exposure to a Random Positioning Machine (RPM) simulating microgravity. At 24 h few small compact MCS were detectable, whereas after 5d many MCS were floating in the supernatant above the cells, remaining adherently (AD). The MCS resembled the ducts formed in vivo by human epithelial breast cells. In order to clarify the underlying mechanisms, we harvested MCS and AD cells separately from each RPM-culture and measured the expression of 29 selected genes with a known involvement in MCS formation. qPCR analyses indicated that cytoskeletal genes were unaltered in short-term samples. IL8, VEGFA, and FLT1 were upregulated in 2 h/4 h AD-cultures. The ACTB, TUBB, EZR, RDX, FN1, VEGFA, FLK1 Casp9, Casp3, PRKCA mRNAs were downregulated in 5d-MCS-samples. ESR1 was upregulated in AD, and PGR1 in both phenotypes after 5d. A pathway analysis revealed that the corresponding gene products are involved in organization and regulation of the cell shape, in cell tip formation and membrane to membrane docking."	"Corpus luteum as a novel target of weight changes that contribute to impaired female reproductive physiology and function. Obesity and malnutrition are associated with decreased fecundity in women. Impaired reproductive capacity in obese women is often attributed to anovulation. However, obese women with ovulatory cycles also have reduced fertility, but the etiology of their impaired reproduction is only partially understood. Accumulating evidence suggests that obesity directly impairs oocyte and embryo quality as well as endometrial receptivity. In obese women, urinary progesterone metabolite excretion is decreased, but in excess of what can be explained by suppressed gonadotropin secretion, suggesting that apart from its central effect obesity may directly affect progesterone (P4) production. These observations have led to the novel hypothesis that obesity directly affects corpus luteum (CL) function. Similarly, we hypothesize that weight loss may contribute to luteal dysfunction. Here, we propose a non-human primate model, the vervet monkey, to examine the effect of weight gain and loss on menstrual cycle parameters and CL gene expression. In this model, weight gain and loss did not significantly alter menstrual cyclicity; however, both induced alterations in the CL transcriptome. In the weight gain monkey, we observed that impaired mid-luteal P4 secretion was associated with downregulation of steroidogenic pathways in CL. Collectively, these preliminary findings support our hypothesis that weight gain and loss may contribute to CL dysfunction. The vervet model described and preliminary observations provide a basis for a larger study to address this important question. Understanding the mechanisms by which weight gain and loss contribute to reproductive dysfunction can assist in the development of targeted treatments to enhance women's reproductive capability when it is desired. CL: corpus luteum; P4: progesterone; E2: estradiol; PDG: pregnanediol 3-glucoronide; LH: luteinizing hormone; FSH: follicle-stimulating hormone; GnRH: gonadotropin releasing hormone; BMI: body mass index; qrtPCR: quantitative real-time PCR; PGR: progesterone receptor; ART: assisted reproductive technology; IVF: in vitro fertilization; HPO: hypothalamic-pituitary-ovarian axis; MMPs: matrix metalloproteinases Gene symbols: LH receptor (LHGCR); cholesterol side-chain cleavage enzyme (CYP11A1); 3 beta-hydroxysteroid dehydrogenase type II (HSD3B2); steroidogenic acute regulatory protein (STAR); LDL receptor (LDLR); scavenger receptor B1 (SCARB1); ATP-binding cassette sub-family A member 1 (ABCA1); ATP-binding cassette sub-family G member 1 (ABCG1); apolipoprotein A (APOA1); 24 dehydrocholesterol reductase (DHCR24); 3-hydroxy-3-methylglytaryl-CoA reductase (HMGCR); vascular endothelial growth factor A (VEGFA); vascular endothelial growth factor C (VEGFC); vascular endothelial growth factor receptor 1 (VEGFR1); and TIMP metallopeptidase inhibitor 1 (TIMP1); amphiregulin (AREG); epiregulin (EREG); CCAAT/enhancer binding protein alpha (CEBPBA); cAMP responsive element binding protein 3-like 1 (CREB3L1); ADAM metallopeptidase with thrombospodin type 1 motif 1 (ADAMTS1); matrix metallopeptidase 9 (MMP9); cytochrome b-245 beta polypeptide (CYBB or NOX2); NADH oxidase (NCF2 or NOXA2); Fc fragment of IgG receptor IIb (FCGR2B); Fc fragment of IgG receptor IIb (FCGR2C); ectonucleotide pyrophosphatase/phosphodiesterase 1 (ENPP1); RAB27A member RAS oncofamily (RAB27A); hydroxyprostaglandin dehydrogenase (HPGD); prostaglandin-endoperoxidase synthase 1 (PTGS1); integrin B2 (ITGB2); leukotriene A4 hydrolase (LTA4H); radixin (RDX); ezrin (EZR); nuclear receptor subfamily 5 group A member 2 (NR5A2)."	"Theoretical studies on a new furazan compound bis[4-nitramino-furazanyl-3-azoxy]azofurazan (ADNAAF). Bis[4-nitraminofurazanyl-3-azoxy]azofurazan (ADNAAF), synthesized in our previous work [1], contains four furazan units connected to the linkage of the azo-group and azoxy-group. For further research, some theoretical characters were studied by the density functional theoretical (DFT) method. The optimized structures and the energy gaps between the HOMO and LUMO were studied at the B3LYP/6-311++G** level. The isodesmic reaction method was used for estimating the enthalpy of formation. The detonation performances were estimated with Kamlet-Jacobs equations based on the predicted density and enthalpy of formation in the solid state. ADAAF was also calculated by the same method for comparison. It was found that the nitramino group of ADNAAF can elongate the length of adjacent C-N bonds than the amino group of ADAAF. The gas-phase and solid-phase enthalpies of formation of ADNAAF are larger than those of ADAAF. The detonation performances of ADNAAF are better than ADAAF and RDX, and similar to HMX. The trigger bond of ADNAAF is the N-N bonds in the nitramino groups, and the nitramino group is more active than the amino group (-NH2)."	"Mirrored continuum and molecular scale simulations of the ignition of high-pressure phases of RDX. We present a mirrored atomistic and continuum framework that is used to describe the ignition of energetic materials, and a high-pressure phase of RDX in particular. The continuum formulation uses meaningful averages of thermodynamic properties obtained from the atomistic simulation and a simplification of enormously complex reaction kinetics. In particular, components are identified based on molecular weight bin averages and our methodology assumes that both the averaged atomistic and continuum simulations are represented on the same time and length scales. The atomistic simulations of thermally initiated ignition of RDX are performed using reactive molecular dynamics (RMD). The continuum model is based on multi-component thermodynamics and uses a kinetics scheme that describes observed chemical changes of the averaged atomistic simulations. Thus the mirrored continuum simulations mimic the rapid change in pressure, temperature, and average molecular weight of species in the reactive mixture. This mirroring enables a new technique to simplify the chemistry obtained from reactive MD simulations while retaining the observed features and spatial and temporal scales from both the RMD and continuum model. The primary benefit of this approach is a potentially powerful, but familiar way to interpret the atomistic simulations and understand the chemical events and reaction rates. The approach is quite general and thus can provide a way to model chemistry based on atomistic simulations and extend the reach of those simulations. "	"Trace Detection of RDX, HMX and PETN Explosives Using a Fluorescence Spot Sensor. 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), and pentaerythritol tetranitrate (PETN), the major components in plastic explosives, pose a significant threat to public safety. A quick, sensitive, and low-cost detection method for these non-volatile explosives is eagerly demanded. Here we present a fluo-spot approach, which can be employed for in situ detection of trace amount of explosives. The sensor molecule is a charge-transfer fluorophore, DCM, which is strongly fluorescent in its pristine state, but non-fluorescent after the quick reaction with NO2· (or NO2(+)) generated from the UV photolysis of RDX, HMX (or PETN). When fabricated within silica gel TLC plate, the fluo-spot sensor features high sensitivity owing to the large surface area and porous structure of the substrate. The sensor reaction mechanism was verified by various experimental characterizations, including chromatography, UV-Vis absorption and fluorescence spectroscopy, MS and (1)H NMR spectrometry. The fluo-spot also demonstrated high selectivity towards RDX, HMX and PETN, as no significant fluorescence quenching was observed for other chemical compounds including common nitro-aromatic explosives and inorganic oxidative compounds. The DCM sensor can also be used as an economical spray kit to directly spot the explosives by naked eyes, implying great potential for quick, low-cost trace explosives detection."	"Approach for determination of detonation performance and aluminum percentage of aluminized-based explosives by laser-induced breakdown spectroscopy. Energetic materials containing aluminum powder are hazardous compounds, which have wide applications as propellants, explosives, and pyrotechnics. This work introduces a new method on the basis of the laser-induced breakdown spectroscopy technique in air and argon atmospheres to investigate determination of aluminum content and detonation performance of 1,3,5-trinitro-1,3,5-triazine (RDX)-based aluminized explosives. Plasma emission of aluminized RDX explosives are recorded where atomic lines of Al, C, H, N, and O, as well as molecular bands of AlO and CN are identified. The formation mechanism of AlO and CN molecular bands is affected by the aluminum percentage and oxygen content present in the composition and plasma. Relative intensity of the Al/O is used to determine detonation velocity and pressure of the RDX/Al samples. The released energy in the laser-induced plasma of aluminized RDX composition is related to the heat of explosion and percentage of aluminum. "	"Biochar Amendment for Reducing Leachability of Nitro Explosives and Metals from Contaminated Soils and Mine Tailings. The mobility and bioavailability of nitro explosives (2,4-dinitrotoluene [DNT], 2,4,6-trinitrotoluene [TNT], and hexahydro-1,3,5-trinitro-1,3,5-triazine [RDX]) in biochar-amended soils and toxic metals (As, Cd, Cu, Pb, and Zn) in biochar-amended mine tailings were investigated via various types of leaching procedures in laboratory-scale batch experiments. The results from the toxicity characteristic leaching procedure (TCLP) and hydroxypropyl-β-cyclodextrin (HPCD) extraction showed that approximately 55 to 95% of the explosives were released from the contaminated soils and would thus be considered as mobile. With the addition of biochar, the extracted concentrations of explosives were reduced to less than 10% of the initial concentrations after 10 d. According to the results from a Korean waste leaching method, the TCLP method, and diethylenetriaminepentaacetic acid (DTPA) extraction, adding biochar to mine tailings reduced the extractability and bioavailability of metals. The chemical forms of the metals, types of extractants, pH, and curing period strongly affected the extractability of metals from mine tailings. The results suggest that biochar is a promising immobilizer of explosives and metals in contaminated soils and mine tailings under limited conditions. "	"Electronic tongue for nitro and peroxide explosive sensing. This work reports the application of a voltammetric electronic tongue (ET) towards the simultaneous determination of both nitro-containing and peroxide-based explosive compounds, two families that represent the vast majority of compounds employed either in commercial mixtures or in improvised explosive devices. The multielectrode array was formed by graphite, gold and platinum electrodes, which exhibited marked mix-responses towards the compounds examined; namely, 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), pentaerythritol tetranitrate (PETN), 2,4,6-trinitrotoluene (TNT), N-methyl-N,2,4,6-tetranitroaniline (Tetryl) and triacetone triperoxide (TATP). Departure information was the set of voltammograms, which were first analyzed by means of principal component analysis (PCA) allowing the discrimination of the different individual compounds, while artificial neural networks (ANNs) were used for the resolution and individual quantification of some of their mixtures (total normalized root mean square error for the external test set of 0.108 and correlation of the obtained vs. expected concentrations comparison graphs r&gt;0.929)."	"Microbial community characterization and functional gene quantification in RDX-degrading microcosms derived from sediment and groundwater at two naval sites. The explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) has long been recognized as a problematic environmental pollutant, and efforts to remediate contaminated soils, sediments, and groundwater have been going on for decades. In recent years, much interest has focused on using bioremediation to clean up these sites. The current study investigated the microorganisms (16S rRNA genes, Illumina) and functional genes (xenA, xenB, and xplA) linked to RDX biodegradation in microcosms composed of sediment or groundwater from two Navy sites. For this, experiments included sediment samples from three depths (5 to 30 ft) from two wells located in one Navy site. In addition, the groundwater upstream and downstream of an emulsified oil biobarrier was examined from another Navy site. Further, for the groundwater experiments, the effect of glucose addition was explored. For the sediment experiments, the most enriched phylotypes during RDX degradation varied over time, by depth and well locations. However, several trends were noted, including the enrichment of Pseudomonas, Rhodococcus, Arthrobacter, and Sporolactobacillus in the sediment microcosms. For the groundwater-based experiments, Pseudomonas, unclassified Rhodocyclaceae, Sphingomonas, and Rhodococcus were also highly abundant during RDX degradation. The abundance of both xplA and xenA significantly increased during RDX degradation compared to the control microcosms for many treatments (both groundwater and sediment microcosms). In a limited number of microcosms, the copy number of the xenB gene increased. Phylotype data were correlated with functional gene data to highlight potentially important biomarkers for RDX biodegradation at these two Navy sites. "	"Design of an explosive detection system using Monte Carlo method. Regardless the motivation terrorism is the most important risk for the national security in many countries. Attacks with explosives are the most common method used by terrorists. Therefore several procedures to detect explosives are utilized; among these methods are the use of neutrons and photons. In this study the Monte Carlo method an explosive detection system using a <sup>241</sup>AmBe neutron source was designed. In the design light water, paraffin, polyethylene, and graphite were used as moderators. In the work the explosive RDX was used and the induced gamma rays due to neutron capture in the explosive was estimated using NaI(Tl) and HPGe detectors. When light water is used as moderator and HPGe as the detector the system has the best performance allowing distinguishing between the explosive and urea. For the final design the Ambient dose equivalent for neutrons and photons were estimated along the radial and axial axis."	"Pathways Regulating Spheroid Formation of Human Follicular Thyroid Cancer Cells under Simulated Microgravity Conditions: A Genetic Approach. Microgravity induces three-dimensional (3D) growth in numerous cell types. Despite substantial efforts to clarify the underlying mechanisms for spheroid formation, the precise molecular pathways are still not known. The principal aim of this paper is to compare static 1g-control cells with spheroid forming (MCS) and spheroid non-forming (AD) thyroid cancer cells cultured in the same flask under simulated microgravity conditions. We investigated the morphology and gene expression patterns in human follicular thyroid cancer cells (UCLA RO82-W-1 cell line) after a 24 h-exposure on the Random Positioning Machine (RPM) and focused on 3D growth signaling processes. After 24 h, spheroid formation was observed in RPM-cultures together with alterations in the F-actin cytoskeleton. qPCR indicated more changes in gene expression in MCS than in AD cells. Of the 24 genes analyzed VEGFA, VEGFD, MSN, and MMP3 were upregulated in MCS compared to 1g-controls, whereas ACTB, ACTA2, KRT8, TUBB, EZR, RDX, PRKCA, CAV1, MMP9, PAI1, CTGF, MCP1 were downregulated. A pathway analysis revealed that the upregulated genes code for proteins, which promote 3D growth (angiogenesis) and prevent excessive accumulation of extracellular proteins, while genes coding for structural proteins are downregulated. Pathways regulating the strength/rigidity of cytoskeletal proteins, the amount of extracellular proteins, and 3D growth may be involved in MCS formation. "	"Quantitative correlation between facets defects of RDX crystals and their laser sensitivity. In this work, the {210} facets of cyclotrimethylenetrinitramine (RDX) single crystals with different quality were studied by scanning electron microscopy and atomic force microscopy. Their laser sensitivity was then assessed using a direct laser ignition test irradiated with ultraviolet laser (wavelength: 355nm, pulse width: 6.4ns). Quantitative relationships between laser sensitivity and surface defects of RDX (210) and (2¯1¯0) facets were investigated. It is determined that the laser sensitivity exhibits significant correlation with the surface roughness, size of which is comparable with scales of laser wavelength. 3D FDTD simulations disclose that this relationship can be well explained with light intensity modulation effects induced by micro-defects on the initial plane wave."	"Relating Carbon and Nitrogen Isotope Effects to Reaction Mechanisms during Aerobic or Anaerobic Degradation of RDX (Hexahydro-1,3,5-Trinitro-1,3,5-Triazine) by Pure Bacterial Cultures. Kinetic isotopic fractionation of carbon and nitrogen during RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) biodegradation was investigated with pure bacterial cultures under aerobic and anaerobic conditions. Relatively large bulk enrichments in (15)N were observed during biodegradation of RDX via anaerobic ring cleavage (ε(15)N = -12.7‰ ± 0.8‰) and anaerobic nitro reduction (ε(15)N = -9.9‰ ± 0.7‰), in comparison to smaller effects during biodegradation via aerobic denitration (ε(15)N = -2.4‰ ± 0.2‰). (13)C enrichment was negligible during aerobic RDX biodegradation (ε(13)C = -0.8‰ ± 0.5‰) but larger during anaerobic degradation (ε(13)C = -4.0‰ ± 0.8‰), with modest variability among genera. Dual-isotope ε(13)C/ε(15)N analyses indicated that the three biodegradation pathways could be distinguished isotopically from each other and from abiotic degradation mechanisms. Compared to the initial RDX bulk δ(15)N value of +9‰, δ(15)N values of the NO2 (-) released from RDX ranged from -7‰ to +2‰ during aerobic biodegradation and from -42‰ to -24‰ during anaerobic biodegradation. Numerical reaction models indicated that N isotope effects of NO2 (-) production were much larger than, but systematically related to, the bulk RDX N isotope effects with different bacteria. Apparent intrinsic ε(15)N-NO2 (-) values were consistent with an initial denitration pathway in the aerobic experiments and more complex processes of NO2 (-) formation associated with anaerobic ring cleavage. These results indicate the potential for isotopic analysis of residual RDX for the differentiation of degradation pathways and indicate that further efforts to examine the isotopic composition of potential RDX degradation products (e.g., NOx) in the environment are warranted. This work provides the first systematic evaluation of the isotopic fractionation of carbon and nitrogen in the organic explosive RDX during degradation by different pathways. It also provides data on the isotopic effects observed in the nitrite produced during RDX biodegradation. Both of these results could lead to better understanding of the fate of RDX in the environment and help improve monitoring and remediation technologies."	"The potential function of microRNA in chordomas. Little is known about the molecular biology of chordomas, which are rare, chemoresistant tumors with no well-established treatment. miRNAs regulate gene networks and pathways. We aimed to evaluate the effects of dysregulated miRNA in chordomas would help reveal the underlying mechanisms of chordoma initiation and progression. In this study, miR-31, anti-miR-140-3p, anti-miR148a, and miR-222 were transiently transfected to chordoma cell lines and an MTS assay, apoptosis assay, and cell-cycle analysis were conducted to evaluate the effects. The mRNA level of predicted and confirmed targets of each miRNA, as well as the EMT and MET markers of U-CH1 and MUG-Chor1, were assessed with real-time polymerase chain reaction. Transient transfection of miRNA mimics was achieved, as each mimic increased or decreased the level of its corresponding miRNA. miR-31 decreased cell viability in MUG-Chor1 and U-CH2 after 72h, which is consistent with previous findings for U-CH1. Both miR-31 and anti-miR-148a induced apoptosis in all three cell lines. Although each miRNA had a similar pattern, miR-31 had the most effective S-phase arrest in all three cell lines. RDX, MET, DNMT1, DNMT3B, TRPS1, BIRC5, and KIT were found to be targeted by the selected miRNAs. The level of miR-222 in chordoma cell lines U-CH1 and MUG-Chor1 correlated positively with EMT markers and negatively with MET markers. This study uncovered the potential of miR-31, miR-140-3p, miR-148a, and miR-222-3p to be key molecules in the cell viability, cell cycle, and apoptosis in chordomas, as well as initiation, differentiation, and progression."	"Development of an Animal Model for Burn-Blast Combined Injury and Cardiopulmonary System Changes in the Early Shock Stage. The purposes of this study were to establish an animal model for burn-blast combined injury research and elaborate cardiopulmonary system changes in the early shock stage. In this study, royal demolition explosive or RDX (hexagon, ring trimethylene nitramine) was used as an explosive source, and the injury conditions of the canine test subjects at various distances to the explosion (30, 50, and 70 cm) were observed by gross anatomy and pathology to determine a larger animal model of moderate blast injury. The canines were then subjected to a 35 % total body surface area (TBSA) full-thickness flame injury using napalm, which completed the development of a burn-blast combined injury model. Based on this model, the hemodynamic changes and arterial blood gas analysis after the burn-blast combined injury were measured to identify the cardiopulmonary system characteristics. In this research, RDX explosion and flame injury were used to develop a severe burn-blast injury animal model that was stable, close to reality, and easily controllable. The hemodynamic and arterial blood gas changes in the canine subjects after burn-blast injury changed distinctly from the burn and blast injuries. Blood pressure and cardiac output fluctuated, and the preload was significantly reduced, whereas the afterload significantly increased. Meanwhile, the oxygen saturation (SO2) decreased markedly with carbon dioxide partial pressure (PCO2), and lactic acid (Lac) rose, and oxygen partial pressure (PO2) reduced. These changes suggested that immediate clinical treatment is important during burn-blast injury both to stabilize cardiac function and supply blood volume and to reduce the vascular permeability, thereby preventing acute pneumonedema or other complications. "	"Uptake and fate of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in coastal marine biota determined using a stable isotopic tracer, (15)N - [RDX]. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is globally one of the most commonly used military explosives and environmental contaminant. (15)N labeled RDX was added into a mesocosm containing 9 different coastal marine species in a time series experiment to quantify the uptake of RDX and assess the RDX derived (15)N retention into biota tissue. The (15)N attributed to munitions compounds reached steady state concentrations ranging from 0.04 to 0.67 μg (15)N g dw(-1), the bulk (15)N tissue concentration for all species was 1-2 orders of magnitude higher suggesting a common mechanism or pathway of RDX biotransformation and retention of (15)N. A toxicokinetic model was created that described the (15)N uptake, elimination, and transformation rates. While modeled uptake rates were within previous published values, elimination rates were several orders of magnitude smaller than previous studies ranging from 0.05 to 0.7 days(-1). These small elimination rates were offset by high rates of retention of (15)N previously not measured. Bioconcentration factors and related aqueous:organism ratios of compounds and tracer calculated using different tracer and non-tracer methods yielded a broad range of values (0.35-101.6 mL g(-1)) that were largely method dependent. Despite the method-derived variability, all values were generally low and consistent with little bioaccumulation potential. The use of (15)N labeled RDX in this study indicates four possible explanations for the observed distribution of compounds and tracer; each with unique potential implications for possible toxicological impacts in the coastal marine environment."	"Effect of energetic materials wettability on their outdoor effective elution rate. Energetic materials (EM) contained in military ammunitions have been found in the surface soil and water of training areas and may potentially represent a threat to human health and the environment. EM wettability is an essential physical parameter to characterize because it controls EM dissolution rate. This paper was conducted to determine the wettability of conventional and new EM formulations used in military ammunition. Wettability was estimated in the laboratory via contact angle measurements of water droplets on different EM surfaces. Results show that 2,4,6-trinitrotoluene (TNT), 1,3,5-trinitro-1,3,5-triazinane (RDX), Octol and energetic thermoplastic elastomer (ETPE) 1000 are hydrophilic while Composition B, XRT, GIM, CX-85, ETPE 2000, and C4 are hydrophobic whereas HELOVA gun propellant has a mixed wettability oscillating between hydrophilic and hydrophobic. The present study demonstrates that wettability of EM formulation is generally controlled by their matrix constituents. Results indicate that hydrophobic formulations have a much slower outdoor environmental effective elution rate than hydrophilic ones, with the exception of the hydrophobic C4 formulation whose elution rate is extremely high. The addition of hydrophobic components into EM formulations is recommended to diminish the environmental impact on water, as it has already been done with XRT, GIM and CX-85 formulations. "	"A coarse-grain force field for RDX: Density dependent and energy conserving. We describe the development of a density-dependent transferable coarse-grain model of crystalline hexahydro-1,3,5-trinitro-s-triazine (RDX) that can be used with the energy conserving dissipative particle dynamics method. The model is an extension of a recently reported one-site model of RDX that was developed by using a force-matching method. The density-dependent forces in that original model are provided through an interpolation scheme that poorly conserves energy. The development of the new model presented in this work first involved a multi-objective procedure to improve the structural and thermodynamic properties of the previous model, followed by the inclusion of the density dependency via a conservative form of the force field that conserves energy. The new model accurately predicts the density, structure, pressure-volume isotherm, bulk modulus, and elastic constants of the RDX crystal at ambient pressure and exhibits transferability to a liquid phase at melt conditions. "	"Trace Explosives Vapor Generation and Quantitation at Parts per Quadrillion Concentrations. The generation of trace 2,4,6-trinitrotoluene (TNT), cyclotrimethylenetrinitramine (RDX), and pentaerythritol tetranitrate (PETN) vapors using a pneumatically modulated liquid delivery system (PMLDS) coupled to a polytetrafluoroethylene (PTFE) total-consumption micronebulizer is presented. The vapor generator operates in a continuous manner with final vapor concentrations proportional to the explosive concentration in aqueous solution delivered through the nebulizer and the diluent air flow rate. For quantitation of concentrations in the parts per billionvolume (ppbv) to parts per trillionvolume (pptrv) range, Tenax-TA thermal desorption tubes were used for vapor collection with subsequent analysis on a thermal-desorption system programmable-temperature vaporization gas chromatograph (TDS-PTV-GC) with a μ-ECD detector. With 30 min sample times and an average sampling rate of 100 mL min(-1), vapor concentrations of 38 pptrv for TNT, 25 pptrv for RDX, and 26 pptrv for PETN were determined. For parts per quadrillionvolume (ppqv) vapor quantitation of TNT and RDX, an online PTV-GC system with a negative-ion chemical ionization mass spectrometer (methane reagent gas) was used for direct sampling and capture of the vapor on the PTV inlet. Vapor concentrations as low as 160 ppqv and 710 ppqv for TNT and RDX were quantified, respectively, with an instrument duty cycle as low as 4 min. "	"Predicting chemical bioavailability using microarray gene expression data and regression modeling: A tale of three explosive compounds. Chemical bioavailability is an important dose metric in environmental risk assessment. Although many approaches have been used to evaluate bioavailability, not a single approach is free from limitations. Previously, we developed a new genomics-based approach that integrated microarray technology and regression modeling for predicting bioavailability (tissue residue) of explosives compounds in exposed earthworms. In the present study, we further compared 18 different regression models and performed variable selection simultaneously with parameter estimation. This refined approach was applied to both previously collected and newly acquired earthworm microarray gene expression datasets for three explosive compounds. Our results demonstrate that a prediction accuracy of R(2) = 0.71-0.82 was achievable at a relatively low model complexity with as few as 3-10 predictor genes per model. These results are much more encouraging than our previous ones. This study has demonstrated that our approach is promising for bioavailability measurement, which warrants further studies of mixed contamination scenarios in field settings."	"Investigating Orientational Defects in Energetic Material RDX Using First-Principles Calculations. Orientational defects are molecular-scale point defects consisting of misaligned sterically trapped molecules. Such defects have been predicted in α-RDX using empirical force fields. These calculations indicate that their concentration should be higher than that of vacancies. In this study we confirm the stability of a family of four orientational defects in α-RDX using first-principles calculations and evaluate their formation energies and annealing barrier heights. The charge density distribution in the defective molecules is evaluated and it is shown that all four orientational defects exhibit some level of charge reduction at the midpoint of the N-N bond, which has been previously related to the sensitivity to initiation of the material. We also evaluate the vibrational spectrum of the crystal containing orientational defects and observe band splitting relative to the perfect crystal case. This may assist the experimental identification of such defects by Raman spectroscopy. "	"Morphological Variations of Explosive Residue Particles and Implications for Understanding Detonation Mechanisms. The possibility of recovering undetonated explosive residues following detonation events is well-known; however, the morphology and chemical identity of these condensed phase postblast particles remains undetermined. An understanding of the postblast explosive particle morphology would provide vital information during forensic examinations, allowing rapid initial indication of the explosive material to be microscopically determined prior to any chemical analyses and thereby saving time and resources at the crucial stage of an investigation. In this study, condensed phase particles collected from around the detonations of aluminized ammonium nitrate and RDX-based explosive charges were collected in a novel manner utilizing SEM stubs. By incorporating the use of a focused ion beam during analysis, for the first time it is possible to determine that such particles have characteristic shapes, sizes, and internal structures depending on the explosive and the distance from the detonation at which the particles are recovered. Spheroidal particles (10-210 μm) with microsurface features recovered following inorganic charge detonations were dissimilar to the irregularly shaped particles (5-100 μm) recovered following organic charge firings. Confirmatory analysis to conclude that the particles were indeed explosive included HPLC-MS, Raman spectroscopy, and mega-electron volt-secondary ionization mass spectrometry. These results may impact not only forensic investigations but also the theoretical constructs that govern detonation theory by indicating the potential mechanisms by which these particles survive and how they vary between the different explosive types. "	"Low-pressure barrier discharge ion source using air as a carrier gas and its application to the analysis of drugs and explosives. In this work, a low-pressure air dielectric-barrier discharge (DBD) ion source using a capillary with the inner diameter of 0.115 and 12 mm long applicable to miniaturized mass spectrometers was developed. The analytes, trinitrotoluene (TNT), 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), 1,3,5,7-tetranitroperhydro-1,3,5,7-tetrazocine (HMX), pentaerythritol tetranitrate (PETN), nitroglycerine (NG), hexamethylene triperoxide diamine (HMTD), caffeine, cocaine and morphine, introduced through the capillary, were ionized by a low-pressure air DBD. The ion source pressures were changed by using various sizes of the ion sampling orifice. The signal intensities of those analytes showed marked pressure dependence. TNT was detected with higher sensitivity at lower pressure but vice versa for other analytes. For all analytes, a marked signal enhancement was observed when a grounded cylindrical mesh electrode was installed in the DBD ion source. Among nine analytes, RDX, HMX, NG and PETN could be detected as cluster ions [analyte + NO3 ](-) even at low pressure and high temperature up to 180 °C. The detection indicates that these cluster ions are stable enough to survive under present experimental conditions. The unexpectedly high stabilities of these cluster ions were verified by density functional theory calculation."	"Detection of Explosives Using Differential Laser-Induced Perturbation Spectroscopy with a Raman-based Probe. Explosives detection is carried out with a novel spectral analysis technique referred to as differential laser-induced perturbation spectroscopy (DLIPS) on thin films of TNT, RDX, HMX, and PETN. The utility of Raman spectroscopy for detection of explosives is enhanced by inducing deep ultraviolet laser perturbation on molecular structures in combination with a differential Raman sensing scheme. Principal components analysis (PCA) is used to quantify the DLIPS method as benchmarked against a traditional Raman scattering probe, and the related photo-induced effects on the molecular structure of the targeted explosives are discussed in detail. Finally, unique detection is observed with TNT samples deposited on commonly available background substrates of nylon and polyester. Overall, the data support DLIPS as a noninvasive method that is promising for screening explosives in real-world environments and backgrounds. "	"Ultraviolet Laser-induced ignition of RDX single crystal. The RDX single crystals are ignited by ultraviolet laser (355 nm, 6.4 ns) pulses. The laser-induced damage morphology consisted of two distinct regions: a core region of layered fracture and a peripheral region of stripped material surrounding the core. As laser fluence increases, the area of the whole crack region increases all the way, while both the area and depth of the core region increase firstly, and then stay stable over the laser fluence of 12 J/cm(2). The experimental details indicate the dynamics during laser ignition process. Plasma fireball of high temperature and pressure occurs firstly, followed by the micro-explosions on the (210) surface, and finally shock waves propagate through the materials to further strip materials outside and yield in-depth cracks in larger surrounding region. The plasma fireball evolves from isotropic to anisotropic under higher laser fluence resulting in the damage expansion only in lateral direction while maintaining the fixed depth. The primary insights into the interaction dynamics between laser and energetic materials can help developing the superior laser ignition technique. "	"Numerical analysis of thermal decomposition for RDX, TNT, and Composition B. Demilitarization of waste explosives on a commercial scale has become an important issue in many countries, and this has created a need for research in this area. TNT, RDX and Composition B have been used as military explosives, and they are very sensitive to thermal shock. For the safe waste treatment of these high-energy and highly sensitive explosives, the most plausible candidate suggested has been thermal decomposition in a rotary kiln. This research examines the safe treatment of waste TNT, RDX and Composition B in a rotary kiln type incinerator with regard to suitable operating conditions. Thermal decomposition in this study includes melting, 3 condensed phase reactions in the liquid phase and 263 gas phase reactions. Rigorous mathematical modeling and dynamic simulation for thermal decomposition were carried out for analysis of dynamic behavior in the reactor. The results showed time transient changes of the temperature, components and mass of the explosives and comparisons were made for the 3 explosives. It was concluded that waste explosives subject to heat supplied by hot air at 523.15K were incinerated safely without any thermal detonation. "	"Analysis of nitrogen-based explosives with desorption atmospheric pressure photoionization mass spectrometry. Fast methods that allow the in situ analysis of explosives from a variety of surfaces are needed in crime scene investigations and home-land security. Here, the feasibility of the ambient mass spectrometry technique desorption atmospheric pressure photoionization (DAPPI) in the analysis of the most common nitrogen-based explosives is studied. DAPPI and desorption electrospray ionization (DESI) were compared in the direct analysis of trinitrotoluene (TNT), trinitrophenol (picric acid), octogen (HMX), cyclonite (RDX), pentaerythritol tetranitrate (PETN), and nitroglycerin (NG). The effect of different additives in DAPPI dopant and in DESI spray solvent on the ionization efficiency was tested, as well as the suitability of DAPPI to detect explosives from a variety of surfaces. The analytes showed ions only in negative ion mode. With negative DAPPI, TNT and picric acid formed deprotonated molecules with all dopant systems, while RDX, HMX, PETN and NG were ionized by adduct formation. The formation of adducts was enhanced by addition of chloroform, formic acid, acetic acid or nitric acid to the DAPPI dopant. DAPPI was more sensitive than DESI for TNT, while DESI was more sensitive for HMX and picric acid. DAPPI could become an important method for the direct analysis of nitroaromatics from a variety of surfaces. For compounds that are thermally labile, or that have very low vapor pressure, however, DESI is better suited."	"Photoluminescence detection of 2,4,6-trinitrotoluene (TNT) binding on diatom frustule biosilica functionalized with an anti-TNT monoclonal antibody fragment. A selective and label-free biosensor for detection of the explosive compound 2,4,6-trinitrotoluene (TNT) in aqueous solution was developed based on the principle of photoluminescence quenching of upon immunocomplex formation with antibody-functionalized diatom frustule biosilica. The diatom frustule is an intricately nanostructured, highly porous biogenic silica material derived from the shells of microscopic algae called diatoms. This material emits strong visible blue photoluminescence (PL) upon UV excitation. PL-active frustule biosilica was isolated from cultured cells of the marine diatom Pinnularia sp. and functionalized with a single chain variable fragment (scFv) derived from an anti-TNT monoclonal antibody. When TNT was bound to the anti-TNT scFv-functionalized diatom frustule biosilica, the PL emission from the biosilica was partially quenched due to the electrophilic nature of the nitro (-NO2) groups on the TNT molecule. The dose-response curve for immunocomplex formation of TNT on the scFv-functionalized diatom frustule biosilica had a half-saturation binding constant of 6.4 ± 2.4·10(-8)M and statistically-significant measured detection limit of 3.5·10(-8)M. The binding and detection were selective for TNT and TNB (trinitrobenzene) but not RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) or 2,6-DNT (2,6-dinitrotoluene)."	"Transition-Metal-Doped p-Type ZnO Nanoparticle-Based Sensory Array for Instant Discrimination of Explosive Vapors. The development of portable, real-time, and cheap platforms to monitor ultratrace levels of explosives is of great urgence and importance due to the threat of terrorism attacks and the need for homeland security. However, most of the previous chemiresistor sensors for explosive detection are suffering from limited responses and long response time. Here, a transition-metal-doping method is presented to remarkably promote the quantity of the surface defect states and to significantly reduce the charge transfer distance by creating a local charge reservoir layer. Thus, the sensor response is greatly enhanced and the response time is remarkably shortened. The resulting sensory array can not only detect military explosives, such as, TNT, DNT, PNT, PA, and RDX with high response, but also can fully distinguish some of the improvised explosive vapors, such as AN and urea, due to the huge response reaching to 100%. Furthermore, this sensory array can discriminate ppb-level TNT and ppt-level RDX from structurally similar and high-concentration interfering aromatic gases in less than 12 s. Through comparison with the previously reported chemiresistor or Schottky sensors for explosive detection, the present transition-metal-doping method resulting ZnO sensor stands out and undoubtedly challenges the best. "	"Fully C/N-Polynitro-Functionalized 2,2'-Biimidazole Derivatives as Nitrogen- and Oxygen-Rich Energetic Salts. Through the use of a fully C/N-functionalized imidazole-based anion, it was possible to prepare nitrogen- and oxygen-rich energetic salts. When N,N-dinitramino imidazole was paired with nitrogen-rich bases, versatile ionic derivatives were prepared and fully characterized by IR, and <sup>1</sup> H, and <sup>13</sup> C NMR spectroscopy and elemental analysis. Both experimental and theoretical evaluations show promising properties for these energetic compounds, such as high density, positive heats of formation, good oxygen balance, and acceptable stabilities. The energetic salts exhibit promising energetic performance comparable to the benchmark explosive RDX (1,3,5-trinitrotriazacyclohexane)."	"Intermolecular Energy Transfer Dynamics at a Hot-Spot Interface in RDX Crystals. The phonon mediated vibrational up-pumping mechanisms assume an intact lattice and climbing of a vibrational ladder using strongly correlated multiphonon dynamics under equilibrium or near-equilibrium conditions. Important dynamic processes far from-equilibrium in regions of large temperature gradient after the onset of decomposition reactions in energetic solids are relatively unknown. In this work, we present a classical molecular dynamics (MD) simulation-based study of such processes using a nonreactive and a reactive potential to study a fully reacted and unreacted zone in RDX (1,3,5-trinitro-1,3,5-triazocyclohexane) crystal under nonequilibrium conditions. The energy transfer rate is evaluated as a function of temperature difference between the reacted and unreacted regions, and for different widths and cross-sectional area of unreacted RDX layers. Vibrational up-pumping processes probed using velocity autocorrelation functions indicate that the mechanisms at high-temperature interfaces are quite different from the standard phonon-based models proposed in current literature. In particular, the up-pumping of high-frequency vibrations are seen in the presence of small molecule collisions at the hot-spot interface with strong contributions from bending modes. It also explains some major difference in the order of decomposition of C-N and N-N bonds as seen in recent literature on initiation chemistry. "	"Characterization of a eukaryotic-like protein kinase, DspB, with an atypical catalytic loop motif from Myxococcus xanthus. Serine (Ser)/threonine (Thr) or tyrosine (Tyr) protein kinases in eukaryotes contain RDxKxxN or RDx(A/R)A(A/R)N sequences, respectively, in the catalytic loop. Myxococcus xanthus DspB is a dual-specificity kinase that contains an atypical sequence, RDVAQKN, in the catalytic loop. The DspB mutant (A165K), which contains the canonical RDxKxxN motif, had an approximate 1.3-fold increase in kinase activity toward myelin basic protein (MBP). Arginine-aspartate (RD) kinases carry a conserved Arg immediately preceding the catalytic Asp that is required for autophosphorylation of the activation loop. DspB belongs to the RD kinase family and contains one Ser residue (Ser-190) and one Thr residue (Thr-194) in the activation loop. Mutation of Ser-190 or Thr-194 to Ala did not significantly affect the kinase activity toward MBP. We previously reported that four M. xanthus eukaryotic-like kinases (EPKs) are autophosphorylated on Tyr residues. These EPKs contain six Tyr residues at homologous positions, and five of those Tyr residues, Y25, Y102, Y145, Y173, and Y205, are conserved in DspB. DspB is mainly autophosphorylated on Y145, and a Y145F mutant has reduced kinase activity, suggesting that autophosphorylation of the Tyr residue of DspB may be required for high-level kinase activity. "	"Identification and Validation of Novel Hedgehog-Responsive Enhancers Predicted by Computational Analysis of Ci/Gli Binding Site Density. The Hedgehog (Hh) signaling pathway directs a multitude of cellular responses during embryogenesis and adult tissue homeostasis. Stimulation of the pathway results in activation of Hh target genes by the transcription factor Ci/Gli, which binds to specific motifs in genomic enhancers. In Drosophila, only a few enhancers (patched, decapentaplegic, wingless, stripe, knot, hairy, orthodenticle) have been shown by in vivo functional assays to depend on direct Ci/Gli regulation. All but one (orthodenticle) contain more than one Ci/Gli site, prompting us to directly test whether homotypic clustering of Ci/Gli binding sites is sufficient to define a Hh-regulated enhancer. We therefore developed a computational algorithm to identify Ci/Gli clusters that are enriched over random expectation, within a given region of the genome. Candidate genomic regions containing Ci/Gli clusters were functionally tested in chicken neural tube electroporation assays and in transgenic flies. Of the 22 Ci/Gli clusters tested, seven novel enhancers (and the previously known patched enhancer) were identified as Hh-responsive and Ci/Gli-dependent in one or both of these assays, including: Cuticular protein 100A (Cpr100A); invected (inv), which encodes an engrailed-related transcription factor expressed at the anterior/posterior wing disc boundary; roadkill (rdx), the fly homolog of vertebrate Spop; the segment polarity gene gooseberry (gsb); and two previously untested regions of the Hh receptor-encoding patched (ptc) gene. We conclude that homotypic Ci/Gli clustering is not sufficient information to ensure Hh-responsiveness; however, it can provide a clue for enhancer recognition within putative Hedgehog target gene loci. "	"Novel CE-MS technique for detection of high explosives using perfluorooctanoic acid as a MEKC and mass spectrometric complexation reagent. To address the need for the forensic analysis of high explosives, a novel capillary electrophoresis mass spectrometry (CE-MS) technique has been developed for high resolution, sensitivity, and mass accuracy detection of these compounds. The technique uses perfluorooctanoic acid (PFOA) as both a micellar electrokinetic chromatography (MEKC) reagent for separation of neutral explosives and as the complexation reagent for mass spectrometric detection of PFOA-explosive complexes in the negative ion mode. High explosives that formed complexes with PFOA included RDX, HMX, tetryl, and PETN. Some nitroaromatics were detected as molecular ions. Detection limits in the high parts per billion range and linear calibration responses over two orders of magnitude were obtained. For proof of concept, the technique was applied to the quantitative analysis of high explosives in sand samples. "	"Free-energy calculations using classical molecular simulation: application to the determination of the melting point and chemical potential of a flexible RDX model. We present an extension of various free-energy methodologies to determine the chemical potential of the solid and liquid phases of a fully-flexible molecule using classical simulation. The methods are applied to the Smith-Bharadwaj atomistic potential representation of cyclotrimethylene trinitramine (RDX), a well-studied energetic material, to accurately determine the solid and liquid phase Gibbs free energies, and the melting point (Tm). We outline an efficient technique to find the absolute chemical potential and melting point of a fully-flexible molecule using one set of simulations to compute the solid absolute chemical potential and one set of simulations to compute the solid-liquid free energy difference. With this combination, only a handful of simulations are needed, whereby the absolute quantities of the chemical potentials are obtained, for use in other property calculations, such as the characterization of crystal polymorphs or the determination of the entropy. Using the LAMMPS molecular simulator, the Frenkel and Ladd and pseudo-supercritical path techniques are adapted to generate 3rd order fits of the solid and liquid chemical potentials. Results yield the thermodynamic melting point Tm = 488.75 K at 1.0 atm. We also validate these calculations and compare this melting point to one obtained from a typical superheated simulation technique. "	"Structural, electronic and optical properties of well-known primary explosive: Mercury fulminate. Mercury Fulminate (MF) is one of the well-known primary explosives since 17th century and it has rendered invaluable service over many years. However, the correct molecular and crystal structures are determined recently after 300 years of its discovery. In the present study, we report pressure dependent structural, elastic, electronic and optical properties of MF. Non-local correction methods have been employed to capture the weak van der Waals interactions in layered and molecular energetic MF. Among the non-local correction methods tested, optB88-vdW method works well for the investigated compound. The obtained equilibrium bulk modulus reveals that MF is softer than the well known primary explosives Silver Fulminate (SF), silver azide and lead azide. MF exhibits anisotropic compressibility (b &gt; a &gt; c) under pressure, consequently the corresponding elastic moduli decrease in the following order: C22 &gt; C11 &gt; C33. The structural and mechanical properties suggest that MF is more sensitive to detonate along c-axis (similar to RDX) due to high compressibility of Hg⋯O non-bonded interactions along that axis. Electronic structure and optical properties were calculated including spin-orbit (SO) interactions using full potential linearized augmented plane wave method within recently developed Tran-Blaha modified Becke-Johnson (TB-mBJ) potential. The calculated TB-mBJ electronic structures of SF and MF show that these compounds are indirect bandgap insulators. Also, SO coupling is found to be more pronounced for 4d and 5d-states of Ag and Hg atoms of SF and MF, respectively. Partial density of states and electron charge density maps were used to describe the nature of chemical bonding. Ag-C bond is more directional than Hg-C bond which makes SF to be more unstable than MF. The effect of SO coupling on optical properties has also been studied and found to be significant for both (SF and MF) of the compounds. "	"Theoretical Benefits of Dynamic Collimation in Pencil Beam Scanning Proton Therapy for Brain Tumors: Dosimetric and Radiobiological Metrics. To quantify the dosimetric benefit of using a dynamic collimation system (DCS) for penumbra reduction during the treatment of brain tumors by pencil beam scanning proton therapy (PBS PT). Collimated and uncollimated brain treatment plans were created for 5 patients previously treated with PBS PT and retrospectively enrolled in an institutional review board-approved study. The in-house treatment planning system, RDX, was used to generate the plans because it is capable of modeling both collimated and uncollimated beamlets. The clinically delivered plans were reproduced with uncollimated plans in terms of target coverage and organ at risk (OAR) sparing to ensure a clinically relevant starting point, and collimated plans were generated to improve the OAR sparing while maintaining target coverage. Physical and biological comparison metrics, such as dose distribution conformity, mean and maximum doses, normal tissue complication probability, and risk of secondary brain cancer, were used to evaluate the plans. The DCS systematically improved the dose distribution conformity while preserving the target coverage. The average reduction of the mean dose to the 10-mm ring surrounding the target and the healthy brain were 13.7% (95% confidence interval [CI] 11.6%-15.7%; P&lt;.0001) and 25.1% (95% CI 16.8%-33.4%; P&lt;.001), respectively. This yielded an average reduction of 24.8% (95% CI 0.8%-48.8%; P&lt;.05) for the brain necrosis normal tissue complication probability using the Flickinger model, and 25.1% (95% CI 16.8%-33.4%; P&lt;.001) for the risk of secondary brain cancer. A general improvement of the OAR sparing was also observed. The lateral penumbra reduction afforded by the DCS increases the normal tissue sparing capabilities of PBS PT for brain cancer treatment while preserving target coverage."	"Parameterizing complex reactive force fields using multiple objective evolutionary strategies (MOES): Part 2: transferability of ReaxFF models to C-H-N-O energetic materials. The Multiple Objective Evolutionary Strategies (MOES) algorithm was used to parametrize force fields having the form of the reactive models ReaxFF (van Duin, A. C. T.; Dasgupta, S.; Lorant, F.; Goddard, W. A. J. Phys. Chem. A 2001, 105, 9396) and ReaxFF-lg (Liu, L.; Liu, Y.; Zybin, S. V.; Sun, H.; Goddard, W. A. J. Phys. Chem. A 2011, 115, 11016) in an attempt to produce equal or superior ambient state crystallographic structural results for cyclotrimethylene trinitramine (RDX). Promising candidates were then subjected to molecular dynamics simulations of five other well-known conventional energetic materials to assess the degree of transferability of the models. Two models generated through the MOES search were shown to have performance better than or as good as ReaxFF-lg in describing the six energetic systems modeled. This study shows that MOES is an effective and efficient method to develop complex force fields. "	"Parameterizing complex reactive force fields using multiple objective evolutionary strategies (MOES). Part 1: ReaxFF models for cyclotrimethylene trinitramine (RDX) and 1,1-diamino-2,2-dinitroethene (FOX-7). ReaxFF (van Duin, A.C.T.; Dasgupta, S.; Lorant, F.; Goddard, W.A. J. Phys. Chem. A, 2001, 105, 9396-9409) reactive potentials are parametrized for cyclotrimethylene trinitramine (RDX) and 1,1-diamino-2,2-dinitroethene (FOX-7) in a novel application combining data envelopment analysis and a modern self-adaptive evolutionary algorithm to optimize multiple objectives simultaneously and map the entire family of solutions. In order to correct the poor crystallographic parameters predicted by ReaxFF using its base parametrization (Strachan, A.; van Duin, A. C. T.; Chakraborty, D.; Dasgupta S.; Goddard, W. A. Phys. Rev. Lett., 2003, 91, 098301), we augmented the existing training set data used for parametrization with additional (SAPT)DFT calculations of RDX and FOX-7 dimer interactions. By adjusting a small subset of the ReaxFF parameters that govern long-range interactions, the evolutionary algorithm approach converges on a family of solutions that best describe crystallographic parameters through simultaneous optimization of the objective functions. Molecular dynamics calculations of RDX and FOX-7 are conducted to assess the quality of the force fields, resulting in parametrizations that improve the overall prediction of the crystal structures. "	"Multichannel Detection and Differentiation of Explosives with a Quantum Dot Array. The sensing and differentiation of explosive molecules is key for both security and environmental monitoring. Single fluorophores are a widely used tool for explosives detection, but a fluorescent array is a more powerful tool for detecting and differentiating such molecules. By combining array elements into a single multichannel platform, faster results can be obtained from smaller amounts of sample. Here, five explosives are detected and differentiated using quantum dots as luminescent probes in a multichannel platform: 2,4-dinitrotoluene (DNT), 2,4,6-trinitrotoluene (TNT), tetryl (2,4,6-trinitrophenylmethylnitramine), cyclotrimethylenetrinitramine (RDX), and pentaerythritol tetranitrate (PETN). The sharp, variable emissions of the quantum dots, from a single excitation wavelength, make them ideal for such a system. Each color quantum dot is functionalized with a different surface receptor via a facile ligation process. These receptors undergo nonspecific interactions with the explosives, inducing variable fluorescence quenching of the quantum dots. Pattern analysis of the fluorescence quenching data allows for explosive detection and identification with limits-of-detection in the ppb range. "	"Infrared photothermal imaging spectroscopy for detection of trace explosives on surfaces. We are developing a technique for the standoff detection of trace explosives on relevant substrate surfaces using photothermal infrared (IR) imaging spectroscopy (PT-IRIS). This approach leverages one or more compact IR quantum cascade lasers, which are tuned to strong absorption bands in the analytes and directed to illuminate an area on a surface of interest. An IR focal plane array is used to image the surface and detect increases in thermal emission upon laser illumination. The PT-IRIS signal is processed as a hyperspectral image cube comprised of spatial, spectral, and temporal dimensions as vectors within a detection algorithm. The ability to detect trace analytes at standoff on relevant substrates is critical for security applications but is complicated by the optical and thermal analyte/substrate interactions. This manuscript describes a series of PT-IRIS experimental results and analysis for traces of RDX, TNT, ammonium nitrate, and sucrose on steel, polyethylene, glass, and painted steel panels. We demonstrate detection at surface mass loadings comparable with fingerprint depositions ( 10μg/cm2 to 100μg/cm2) from an area corresponding to a single pixel within the thermal image."	"Quantitative Analysis of Hexahydro-1,3,5-trinitro-1,3,5, Triazine/Pentaerythritol Tetranitrate (RDX-PETN) Mixtures by Terahertz Time Domain Spectroscopy. Absorption spectra of explosives such as hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), pentaerythritol tetranitrate (PETN), and mixtures of both were measured by terahertz time domain spectroscopy (THz-TDS). Chemometrics was applied to quantitative analysis of terahertz absorbance spectra obtained in transmission mode to predict the relative amounts of RDX and PETN in samples containing pure components or their mixtures. This analysis was challenging because significant spectral overlap prevented identification of each product fingerprint. Partial least squares (PLS) regression models were thus applied to the terahertz spectra. A comparison between the so-called PLS1 and PLS2 algorithms was performed to predict the PETN concentrations in mixture samples. PLS2 demonstrated better predictive ability than PLS1 with RMSE value lower than 3.5 mg for 400 mg total weight pellets. Moreover, the influence of the highly overlapping spectral frequency band was investigated by reducing the original 0.2-3 THz (6-100 cm(-1)) spectral band to 1.8-3 THz (60-100 cm(-1)). The predictive ability was quite similar in both cases, highlighting the excellent ability of chemometrics to perform quantitative analysis when applied to THz-TDS data, even in the case of highly overlapping spectra. "	"Impacts of explosive compounds on vegetation: A need for community scale investigations. Explosive compounds are distributed heterogeneously across the globe as a result of over a century of human industrial and military activity. RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) and TNT (2-methyl-1,3,5-trinitrobenzene) are the most common and most abundant explosives in the environment. Vegetation exhibits numerous physiological and morphological stress responses in the presence of RDX and TNT. Varied stress responses act as physiological filters that facilitate the proliferation of tolerant species and the extirpation of intolerant species. Contaminants alter community composition as they differentially impact plants at each life stage (i.e. germination, juvenile, adult), subsequently modifying larger scale ecosystem processes. This review summarizes the current explosives-vegetation literature, focusing on RDX and TNT as these are well documented in the literature, linking our current understanding to ecological theory. A conceptual framework is provided that will aid future efforts in predicting plant community response to residual explosive compounds. "	"A theoretical investigation into the strength of N-NO2 bonds, ring strain and electrostatic potential upon formation of intermolecular H-bonds between HF and the nitro group in nitrogen heterocyclic rings C n H2n N-NO2 (n = 2-5), RDX and HMX. Changes in N-NO2 bond strength, ring strain energy and electrostatic potential upon formation of intermolecular H-bonds between HF and the nitro group in nitrogen heterocyclic rings C n H2n N-NO2 (n = 2-5), RDX and HMX were investigated using DFT-B3LYP and MP2(full) methods with the 6-311++G(2df,2p) and aug-cc-pVTZ basis sets. Analysis of electron density shifts was also carried out. The results indicate that H-bonding energy correlates well with the increment of ring strain energy. Upon complex formation, the strength of the N-NO2 trigger-bond is enhanced, suggesting reduced sensitivity, while judged by the increased ring strain energy, sensitivity is increased. However, some features of the molecular surface electrostatic potential, such as a local maximum above the N-NO2 bond and ring, σ + (2) and electrostatic balance parameter ν, remain essentially unchanged upon complex formation, and only a small change in the impact sensitivity h 50 is suggested. It is not sufficient to determine sensitivity solely on the basis of trigger bond or ring strain; as a global feature of a molecule, the molecular surface electrostatic potential is available to help judge the change of sensitivity in H-bonded complexes. Graphical Abstract The strengthened N-NO2 bond suggests reduced sensitivity, while it is reverse by theincreased ring strain energy upon the complex formation. However, the molecular surfaceelectrostatic potential (V S) shows the little change of h 50. The V S should be taken into accountin the analysis of explosive sensitivity in the H-bonded complex. "	"Molecular design and screening of energetic nitramine derivatives. Six nitramines (N1-6) were designed with all possible arrangements of N-NO2 groups on a cyclic skeleton and structural optimization was performed using the density functional theory (DFT). We observed that all nitramines have high positive heats of formation proportionate to the number of N-NO2 groups in their molecular structure. Among the designed nitramines, N5 and N6 have crystal densities of 1.77 and 1.81 g cm(-3), respectively, which lead to reasonable respective detonation velocities (D = 8.70 and 9.07 km s(-1)) and detonation pressures (P = 33.23 and 36.57 GPa) comparable to those of RDX. To understand the relationship between sensitivity and molecular structure, bond dissociation energies, impact sensitivities (h 50), free space in crystal lattice, imbalance between the positive and negative surface potentials and heats of detonation (Q) were investigated. The comparable performance of N5 and N6 with RDX highlights the potential application of these nitramine derivatives as high energy materials and also supports the advantage of N-N bonds in the backbone and substitution of N-NO2 groups. Graphical Abstract Electrostatic potential on the 0.001 electron/bohr(3) molecular surface of N6. "	"Adsorption and attenuation behavior of 3-nitro-1,2,4-triazol-5-one (NTO) in eleven soils. NTO (3-nitro-1,2,4-triazol-5-one) is one of the new explosive compounds used in insensitive munitions (IM) developed to replace traditional explosives, TNT and RDX. Data on NTO fate and transport is needed to determine its environmental behavior and potential for groundwater contamination. We conducted a series of kinetic and equilibrium batch experiments to characterize the fate of NTO in soils and the effect of soil geochemical properties on NTO-soil interactions. A set of experiments was also conducted using sterilized soils to evaluate the contribution of biodegradation to NTO attenuation. Measured pH values for NTO solutions decreased from 5.98 ± 0.13 to 3.50 ± 0.06 with increase in NTO concentration from 0.78 to 100 mg L(-1). Conversely, the pH of soil suspensions was not significantly affected by NTO in this concentration range. NTO experienced minimal adsorption, with measured adsorption coefficients being less than 1 cm(3) g(-1) for all studied soils. There was a highly significant inverse relationship between the measured NTO adsorption coefficients and soil pH (P = 0.00011), indicating the role of NTO and soil charge in adsorption processes. In kinetic experiments, 1st order transformation rate constant estimates ranged between 0.0004 h(-1) and 0.0142 h(-1) (equivalent to half-lives of 72 and 2 d, respectively), and correlated positively with organic carbon in the soil. Total attenuation of NTO was higher in untreated versus sterilized samples, suggesting that NTO was being biodegraded. The information presented herein can be used to help evaluate NTO potential for natural attenuation in soils."	"Development of highly sensitive and selective antibodies for the detection of the explosive pentaerythritol tetranitrate (PETN) by bioisosteric replacement. An improved antibody against the explosive pentaerythritol tetranitrate (PETN) was developed. The immunogen was designed by the concept of bioisosteric replacement, which led to an excellent polyclonal antibody with extreme selectivity and immunoassays of very good sensitivity. Compounds such as nitroglycerine, 2,4,6-trinitrotoluene, 1,3,5-trinitrobenzene, hexogen (RDX), 2,4,6-trinitroaniline, 1,3-dinitrobenzene, octogen (HMX), triacetone triperoxide, ammonium nitrate, 2,4,6-trinitrophenol and nitrobenzene were tested for potential cross-reactivity. The detection limit of a competitive enzyme-linked immunosorbent assay was determined to be around 0.5 µg/l. The dynamic range of the assay was found to be between 1 and 1000 µg/l, covering a concentration range of three decades. This work shows the successful application of the bioisosteric concept in immunochemistry by exchange of a nitroester to a carbonate diester. The antiserum might be used for the development of quick tests, biosensors, microtitration plate immunoassays, microarrays and other analytical methods for the highly sensitive detection of PETN, an explosive frequently used by terrorists, exploiting the extreme difficulty of its detection."	"Predicting Trigger Bonds in Explosive Materials through Wiberg Bond Index Analysis. Understanding the explosive decomposition pathways of high-energy-density materials (HEDMs) is important for developing compounds with improved properties. Rapid reaction rates make the detonation mechanisms of HEDMs difficult to understand, so computational tools are used to predict trigger bonds-weak bonds that break, leading to detonation. Wiberg bond indices (WBIs) have been used to compare bond densities in HEDMs to reference molecules to provide a relative scale for the bond strength to predict the activated bonds most likely to break to trigger an explosion. This analysis confirms that X-NO2 (X=N,C,O) bonds are trigger linkages in common HEDMs such as TNT, RDX and PETN, consistent with previous experimental and theoretical studies. Calculations on a small test set of substituted tetrazoles show that the assignment of the trigger bond depends upon the functionality of the material and that the relative weakening of the bond correlates with experimental impact sensitivities. "	"Role of the renal sympathetic nerve in renal glucose metabolism during the development of type 2 diabetes in rats. Recent clinical studies have shown that renal sympathetic denervation (RDX) improves glucose metabolism in patients with resistant hypertension. We aimed to elucidate the potential contribution of the renal sympathetic nervous system to glucose metabolism during the development of type 2 diabetes. Uninephrectomised diabetic Otsuka Long-Evans Tokushima Fatty (OLETF) rats underwent RDX at 25 weeks of age and were followed up to 46 weeks of age. RDX decreased plasma and renal tissue noradrenaline (norepinephrine) levels and BP. RDX also improved glucose metabolism and insulin sensitivity, which was associated with increased in vivo glucose uptake by peripheral tissues. Furthermore, RDX suppressed overexpression of sodium-glucose cotransporter 2 (Sglt2 [also known as Slc5a2]) in renal tissues, which was followed by an augmentation of glycosuria in type 2 diabetic OLETF rats. Similar improvements in glucose metabolism after RDX were observed in young OLETF rats at the prediabetic stage (21 weeks of age) without changing BP. Here, we propose the new concept of a connection between renal glucose metabolism and the renal sympathetic nervous system during the development of type 2 diabetes. Our data demonstrate that RDX exerts beneficial effects on glucose metabolism by an increase in tissue glucose uptake and glycosuria induced by Sglt2 suppression. These data have provided a new insight not only into the treatment of hypertensive type 2 diabetic patients, but also the pathophysiology of insulin resistance manifested by sympathetic hyperactivity."	"A generalized force-modified potential energy surface for mechanochemical simulations. We describe the modifications that a spatially varying external load produces on a Born-Oppenheimer potential energy surface (PES) by calculating static quantities of interest. The effects of the external loads are exemplified using electronic structure calculations (at the HF/6-31G(∗∗) level) of two different molecules: ethane and hexahydro-1,3,5-trinitro-s-triazine (RDX). The calculated transition states and Hessian matrices of stationary points show that spatially varying external loads shift the stationary points and modify the curvature of the PES, thereby affecting the harmonic transition rates by altering both the energy barrier as well as the prefactor. The harmonic spectra of both molecules are blueshifted with increasing compressive &quot;pressure.&quot; Some stationary points on the RDX-PES disappear under application of the external load, indicating the merging of an energy minimum with a saddle point. "	"Evaluation of microbial transport during aerobic bioaugmentation of an RDX-contaminated aquifer. In situ bioaugmentation with aerobic hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX)-degrading bacteria is being considered for treatment of explosives-contaminated groundwater at Umatilla Chemical Depot, Oregon (UMCD). Two forced-gradient bacterial transport tests of site groundwater containing chloride or bromide tracer and either a mixed culture of Gordonia sp. KTR9 (xplA (+)Km(R)), Rhodococcus jostii RHA1 (pGKT2 transconjugant; xplA (+)Km(R)) and Pseudomonas fluorescens I-C (xenB (+)), or a single culture of Gordonia sp. KTR9 (xplA (+); i.e. wild-type) were conducted at UMCD. Groundwater monitoring evaluated cell viability and migration in the injection well and downgradient monitoring wells. Enhanced degradation of RDX was not evaluated in these demonstrations. Quantitative PCR analysis of xplA, the kanamycin resistance gene (aph), and xenB indicated that the mixed culture was transported at least 3 m within 2 h of injection. During a subsequent field injection of bioaugmented groundwater, strain KTR9 (wild-type) migrated up to 23-m downgradient of the injection well within 3 days. Thus, the three RDX-degrading strains were effectively introduced and transported within the UMCD aquifer. This demonstration represents an innovative application of bioaugmentation to potentially enhance RDX biodegradation in aerobic aquifers."	"Detection of highly energetic materials on non-reflective substrates using quantum cascade laser spectroscopy. A quantum cascade laser spectrometer was used to obtain the reflection spectra of highly energetic materials (HEMs) deposited on nonideal, low-reflectivity substrates, such as travel-bag fabric (polyester), cardboard, and wood. Various deposition methods were used to prepare the standards and samples in the study. The HEMs used were the nitroaromatic explosive 2,4,6-trinitrotoluene (TNT), the aliphatic nitrate ester pentaerythritol tetranitrate (PETN), and the aliphatic nitramine 1,3,5-trinitroperhydro-1,3,5-triazine (RDX). Chemometrics algorithms were applied to analyze the recorded spectra. Partial least squares (PLS) regression analysis was used to find the best correlation between the infrared signals and the surface concentrations of the samples, and PLS combined with discriminant analysis (PLS-DA) was used to discriminate, classify, and identity similarities in the spectral datasets. Several preprocessing steps were applied to prepare the mid-infrared spectra of HEMs deposited on the target substrates. The results demonstrate that the infrared vibrational method described in this study is well suited for the rapid screening analysis of HEMs on low-reflectivity substrates when a supervised model has been previously constructed or when a reference spectrum of the clean substrate can be acquired to be subtracted from the HEM-substrate spectrum. "	"Theoretical studies of the structure, stability, and detonation properties of vicinal-tetrazine 1,3-dioxide annulated with a five-membered heterocycle. 2. Annulation with a pyrazole ring. 1,2,3,4-Tetrazine (vicinal-tetrazine) high-energy-density compounds (HEDCs) are receiving increasing attention due to their promise as explosives. We have performed a series of studies of vicinal-tetrazine 1,3-dioxides annulated with a range of five-membered heterocycles, considering their potential as high-energy, low-sensitivity explosives. In the present work, 12 pyrazolo-1,2,3,4-tetrazine 1,3-dioxides (pyrazolo-TDOs), P1-P12, were studied theoretically. Their geometrical structures in the gas phase were studied at the B3LYP/6-311++G(d,p) level of density functional theory (DFT). Their gas-phase enthalpies of formation were calculated by the homodesmotic reaction method. Their enthalpies of sublimation and solid phase enthalpies of formation were also predicted. Their detonation properties were estimated with the Kamlet-Jacobs equations, based on their predicted densities and enthalpies of formation in the solid state. Their bond dissociation activation energies (BDAEs) and the available free space in the lattice of each compound were calculated to evaluate their stabilities. P1, P4, and P11 were found to achieve the energy level of RDX and have acceptable stabilities, and are therefore considered to be the three most promising pyrazolo-TDOs for use as high-energy, low-sensitivity explosives. We believe that further studies, both experimental and theoretical, of these three targets would be worthwhile. "	"Tandem mass spectrometry and density functional theory of RDX fragmentation pathways: Role of ion-molecule complexes in loss of NO3 and lack of molecular ion peak. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is an explosive compound that finds a wide range of military and civilian applications. RDX has been a target in environmental matrices by gas chromatography/tandem mass spectrometry (GC/MS/MS). MS/MS in negative chemical ionization (NCI) mode of RDX provides important fragmentation patterns that are useful for structural elucidation. The fragmentation patterns are needed for proper identification of precursor and product ions in analytical methods that depend on MS/MS approaches for a reliable identification of RDX. This study focuses on the MS fragmentation mechanisms of RDX in NCI mode using both MS/MS and density functional theory (DFT). The DFT studies were performed at the B3LYP/6-311G(d,p) level of theory. The DFT results showed that NCI of RDX leads to the formation of an anion-molecule complex that was energetically more stable than the RDX anion. The fragmentation proceeds through two pathways, leading to the loss of NO(2) and NO(3). The loss of NO(3) takes place in an anion-molecule complex leading to the formation of characteristic nitroso group fragment ions. Using the fragmentation schemes, important ion structures are proposed including structures for m/z 160, 129, 102, and 86. The results demonstrate the importance of both charge-induced and charge-remote dissociations in RDX pathways. The ion structures identified along the pathways could be used as targets in analytical methods for reliable identification purposes."	"Determination of triacetone triperoxide with a N,N-dimethyl-p-phenylenediamine sensor on nafion using Fe3O4 magnetic nanoparticles. The explosive triacetone triperoxide (TATP) can be easily manufactured from readily accessible reagents and is extremely difficult to detect, owing to the lack of UV absorbance, fluorescence, or facile ionization. The developed method is based on the acidic hydrolysis of TATP into H2O2, pH adjustment to 3.6, and the addition of magnetite nanoparticles (Fe3O4 MNPs) to the medium to produce hydroxyl radicals from H2O2, owing to the peroxidase-like activity of MNPs. The formed radicals converted the N,N-dimethyl-p-phenylenediamine (DMPD) probe to the colored DMPD(+) radical cation, the optical absorbance of which was measured at a wavelength of 554 nm. The molar absorptivity (ε) of the method for TATP was 21.06 × 10(3) L mol(-1) cm(-1). The colored DMPD(+) product in solution could be completely retained on a cation-exchanger Nafion membrane, constituting a colorimetric sensor for TATP and increasing the analytical sensitivity. The proposed method did not respond to a number of hand luggage items like detergent, sweetener, sugar, acetylsalicylic acid (aspirin), and paracetamol-caffeine-based analgesic drugs. On the other hand, TATP could be almost quantitatively recovered from a household detergent and sweetener that can be used as camouflage for the analyte. Neither common soil and groundwater ions (e.g., Ca(2+), Mg(2+), K(+), Cl(-), SO4(2-), and NO3(-)) at 100-fold ratios nor nitro-explosives of trinitrotoluene (TNT), hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), and pentaerythritol tetranitrate (PETN) at 10-fold amounts interfered with the proposed assay. The method was statistically validated against the standard GC/MS reference method. "	"Improved TNT detoxification by starch addition in a nitrogen-fixing Methylophilus-dominant aerobic microbial consortium. In this study, a novel aerobic microbial consortium for the complete detoxification of 2,4,6-trinitrotoluene (TNT) was developed using starch as a slow-releasing carbon source under nitrogen-fixing conditions. Aerobic TNT biodegradation coupled with microbial growth was effectively stimulated by the co-addition of starch and TNT under nitrogen-fixing conditions. The addition of starch with TNT led to TNT mineralization via ring cleavage without accumulation of any toxic by-products, indicating improved TNT detoxification by the co-addition of starch and TNT. Pyrosequencing targeting the bacterial 16S rRNA gene suggested that Methylophilus and Pseudoxanthomonas population were significantly stimulated by the co-addition of starch and TNT and that the Methylophilus population became predominant in the consortium. Together with our previous study regarding starch-stimulated RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) degradation (Khan et al., J. Hazard. Mater. 287 (2015) 243-251), this work suggests that the co-addition of starch with a target explosive is an effective way to stimulate aerobic explosive degradation under nitrogen-fixing conditions for enhancing explosive detoxification. "	"Characterization of Selenoprotein M and Its Response to Selenium Deficiency in Chicken Brain. Selenoprotein M (SelM) may function as thiol disulfide oxidoreductase that participates in the formation of disulfide bonds and can be implicated in calcium responses. SelM may have a functional role in catalyzing free radicals and has been associated with Alzheimer's disease (AD). However, studies of SelM in chicken remain very limited. In this study, two groups of day-old broiler chicks (n = 40/group) were fed a corn-soy basal diet (BD, 13 μg Se/kg) and BD supplemented with Se (as sodium selenite) at 0.3 mg/kg. The brain was collected at 14, 21, 28, and 42 days of age. We performed a sequence analysis and predicted the structure and function of SelM. We also investigated the effects of Se deficiency on the expression of Selt, Selw, and Selm and the Se status in the chicken brain. The results show that Se deficiency induced the lower (P &lt; 0.05) Se content, glutathione peroxidase (GPx), and catalase (CAT) activities; increased (P &lt; 0.05) malondialdehyde (MDA) content; and reduced (P &lt; 0.05) the expression of Selm messenger RNA (mRNA) and protein abundance of SelM in the brain. However, there were no significant brain Selt and Selw mRNA levels by dietary Se deficiency in chicks. The different regulations of these three redox (Rdx) protein expressions by Se deficiency represent a novel finding of the present study. Our results demonstrated that SelM may have an important role in protecting against oxidative damage in the brain of chicken, which might shed light on the role of SelM in human neurodegenerative disease. More studies are needed to confirm our conclusion."	"Nanoplasmonic imaging of latent fingerprints with explosive RDX residues. Explosive detection is a critical element in preventing terrorist attacks, especially in crowded and influential areas. It is probably more important to establish the connection of explosive loading with a carrier's personal identity. In the present work, we introduce fingerprinting as physical personal identification and develop a nondestructive nanoplasmonic method for the imaging of latent fingerprints. We further integrate the nanoplasmonic response of catalytic growth of Au NPs with NADH-mediated reduction of 1,3,5-trinitro-1,3,5-triazinane (RDX) for the quantitative analysis of RDX explosive residues in latent fingerprints. This generic nanoplasmonic strategy is expected to be used in forensic investigation to distinguish terrorists that carry explosives. "	"Harnessing microbial gene pools to remediate persistent organic pollutants using genetically modified plants--a viable technology? It has been 14 years since the international community came together to legislate the Stockholm Convention on Persistent Organic Pollutants (POPs), restricting the production and use of specific chemicals that were found to be environmentally stable, often bioaccumulating, with long-term toxic effects. Efforts are continuing to remove these pollutants from the environment. While incineration and chemical treatment can be successful, these methods require the removal of tonnes of soil, at high cost, and are damaging to soil structure and microbial communities. The engineering of plants for in situ POP remediation has had highly promising results, and could be a more environmentally-friendly alternative. This review discusses the characterization of POP-degrading bacterial pathways, and how the genes responsible have been harnessed using genetic modification (GM) to introduce these same abilities into plants. Recent advances in multi-gene cloning, genome editing technologies and expression in monocot species are accelerating progress with remediation-applicable species. Examples include plants developed to degrade 2,4,6-trinitrotoluene (TNT), hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), trichloroethylene (TCE), and polychlorinated biphenyls (PCBs). However, the costs and timescales needed to gain regulatory approval, along with continued public opposition, are considerable. The benefits and challenges in this rapidly developing and promising field are discussed. "	"Chip calorimetry for the sensitive identification of hexogen and pentrite from their decomposition inside copper oxide nanoparticles. Smart detection systems for explosive sensors are designed both to detect explosives in the air at trace level and identify the threat for a specific response. Following this need we have succeeded in using microthermal analysis to sensitively identify and discriminate between RDX and PETN explosive vapors at trace level. Once the explosive vapor is trapped in a porous material, heating the material at a fast rate of 3000 K/s up to 350 °C will result in a thermal pattern specifically corresponding to the explosive and its interaction with the porous material. The explosive signatures obtained make it possible to simultaneously identify the presence and the nature of the explosive vapor in just a few milliseconds. Therefore, this also allows the development of multitarget devices using porous material for capturing the vapor combined with microthermal analysis for fast detection and identification. So far it is the first time that chip calorimetry has been used to characterize and identify explosives in vapor state. "	"Nanomechanics of RDX Single Crystals by Force-Displacement Measurements and Molecular Dynamics Simulations. Nanoenergetic material modifications for enhanced performance and stability require an understanding of the mechanical properties and molecular structure-property relationships of materials. We investigate the mechanical and tribological properties of single-crystal hexahydro-1,3,5-trinitro-s-triazine (RDX) by force-displacement microscopy and molecular dynamics (MD). Our MD simulations reveal the RDX reduced modulus (Er) depends on the particular crystallographic surface. The predicted Er values for the respective (210) and (001) surfaces are 26.8 and 21.0 GPa. Further, our simulations reveal a symmetric and fairly localized deformation occurring on the (001) surface compared to an asymmetric deformation on the (210) surface. The predicted hardness (H) values are nearly equal for both surfaces. The predicted Er and H values are ∼33% and 17% greater than the respective experimental values of 0.798 ± 0.030 GPa and 22.9 ± 0.7 GPa for the (210) surface and even larger than those reported previously. Our experimental H and Er values are ∼19% and 9% greater than those reported previously for the (210) surface. The difference between the experimental values reported here and elsewhere stems in part from an inaccurate determination of the contact area. We employ the parameter √H/Er, which is independent of area, as a means to compare present and past results, and find excellent agreement, within a few percent, between our predicted and experimental results and between our results and those obtained from previous nanoindentation experiments. Also, we performed nanoscratch simulations of the (210) and (001) surfaces and nanoscratch tests on the (210) surface and present values of the dynamic coefficient of deformation friction. "	"Sub-Nanogram Detection of RDX Explosive by Monoclonal Antibodies. Polyclonal and monoclonal antibodies were raised to protein carrier molecules haptenized with RDX, a major component of many plastic explosives including Semtex. Sera from immunized mice detected RDX protein conjugates in standard ELISA. Clonally purified monoclonal antibodies had detection limits in the sub-ng/mL range for underivatized RDX in competition ELISA. The monoclonal antibodies are not dependent on the presence of taggants added during the manufacturing process, and are likely to have utility in the detection of any explosive containing RDX, or RDX contamination of environmental sites. "	"Growth changes of eighteen herbaceous angiosperms induced by Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in soil. Study objectives were to describe and quantify growth responses (tolerance as shoot and root biomass accumulation) to soil-applied Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) treatments of eighteen terrestrial, herbaceous, angiospermous species and also; to determine how much of RDX, RDX transformation products, total N and RDX-derived N accumulated in the foliage. RDX altered growth of eighteen plant species or cultivars at levels of 100, 500, and 1,000 mg kg(-1)dry soil in a 75-d greenhouse study. Sixteen species or cultivars exhibited growth inhibition while two were stimulated in growth by RDX. A maximum amount of foliar RDX in a subset of three plant species was 36.0 mg per plant in Coronilla varia. Foliar concentrations of transformation products of RDX were low relative to RDX in the subset of three species. The proportion of RDX-N with respect to total N was constant, suggesting that foliar RDX transformation did not explain differences in tolerance. There was a δ (15)N shift towards that of synthetic RDX in foliage of the three species at a level of 1,000 mg kg(-1) RDX, proportional in magnitude to uptake of N from RDX and tolerance ranking.Reddened leaf margins for treated Sida spinosa indicate the potential of this species as a biosensor for RDX. "	"Detection of explosives using a hollow cathode discharge ion source. For public security and safety, it is highly desirable to develop an ion source for the detection of explosives that is highly sensitive, compact in size, robust, and does not use any special carrier gases such as helium. In this work, a hollow cathode discharge (HCD) ion source was developed for the detection of explosives using ambient air as a carrier gas. To detect nonvolatile and thermally unstable explosives with high sensitivities, a new HCD ion source was designed and coupled with an ion trap mass spectrometer. Five explosives--hexamethylene triperoxide diamine (HMTD), 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), pentaerythritol tetranitrate (PETN), nitroglycerin (NG) and trinitrotoluene (TNT)--were detected with limits of detection of lower than ng. The intensities of the NO3(-) adduct ions with RDX, PETN, and NG showed a marked increase with increase in ion source pressure in the range of 1-28 Torr. Because the major NOx(-) ions (x = 2, 3) produced in the plasma act as reagent ions in ion-molecule reactions of explosives, air is best suited as a carrier gas for the detection of explosives. It is proposed that the NOx(-) (x = 2, 3) and O3 contributed to the formation of [TNT-H](-) and [TNT-NO](-) ions, via the reactions NOx(-) + TNT → [TNT-H](-) + HNOx and [TNT](-) + O3 → [TNT-NO](-) + NO2 + O2."	"New directions in the science and technology of advanced sheet explosive formulations and the key energetic materials used in the processing of sheet explosives: Emerging trends. This review presents the work carried out by the international community in the area of sheet explosive formulations and its applications in various systems. The sheet explosive is also named as PBXs and is a composite material in which solid explosive particles like RDX, HMX or PETN are dispersed in a polymeric matrix, forms a flexible material that can be rolled/cut into sheet form which can be applied to any complex contour. The designed sheet explosive must possess characteristic properties such as flexible, cuttable, water proof, easily initiable, and safe handling. The sheet explosives are being used for protecting tanks (ERA), light combat vehicle and futuristic infantry carrier vehicle from different attacking war heads etc. Besides, sheet explosives find wide applications in demolition of bridges, ships, cutting and metal cladding. This review also covers the aspects such as risks and hazard analysis during the processing of sheet explosive formulations, effect of ageing on sheet explosives, detection and analysis of sheet explosive ingredients and the R&amp;D efforts of Indian researchers in the development of sheet explosive formulations. To the best of our knowledge, there has been no review article published in the literature in the area of sheet explosives. "	"Theoretical studies of the structure, stability, and detonation properties of vicinal-tetrazine 1,3-dioxide annulated with a five-membered heterocycle. 1. Annulation with a triazole ring. 1,2,3,4-Tetrazine (vicinal-tetrazine) high-energy-density compounds (HEDCs) are receiving increasing attention due to their promise as explosives. We have performed a series of studies of vicinal-tetrazine 1,3-dioxides annulated with a range of five-membered heterocycles, considering their potential as high-energy, low-sensitivity explosives. In the present work, twelve 1,2,3-triazol-1,2,3,4-tetrazine 1,3-dioxides (TTDOs; T1-T12) were studied theoretically. Their geometric structures in the gas phase were studied at the B3LYP/6-311++G(d,p) level of density functional theory (DFT). Their gas-phase enthalpies of formation were calculated by the homodesmotic reaction method. Their enthalpies of sublimation and solid-phase enthalpies of formation were also predicted. Their detonation properties were estimated with the Kamlet-Jacobs equations, based on their predicted densities and enthalpies of formation in the solid state. Their bond dissociation activation energies (BDAEs) and the available free space in the lattice of each compound were calculated to evaluate their stabilities. T2, T5, and T11 were found to have higher energies than RDX and acceptable stabilities, and are therefore considered to be the three most promising TTDOs for use as high-energy, low-sensitivity explosives. We believe that further studies, both experimental and theoretical, of these three targets would be worthwhile. "	"Dopant-assisted reactive low temperature plasma probe for sensitive and specific detection of explosives. A dopant-assisted reactive low temperature plasma (DARLTP) probe was developed for sensitive and specific detection of explosives by a miniature rectilinear ion trap mass spectrometer. The DARLTP probe was fabricated using a T-shaped quartz tube. The dopant gas was introduced into the plasma stream through a side-tube. Using CH2Cl2 doped wet air as the dopant gas, the detection sensitivities were improved about 4-fold (RDX), 4-fold (PETN), and 3-fold (tetryl) compared with those obtained using the conventional LTP. Furthermore, the formation of [M + (35)Cl](-) and [M + (37)Cl](-) for these explosives enhanced the specificity for their identification. Additionally, the quantities of fragment ions of tetryl and adduct ions such as [RDX + NO2](-) and [PETN + NO2](-) were dramatically reduced, which simplified the mass spectra and avoided the overlap of mass peaks for different explosives. The sensitivity improvement may be attributed to the increased intensity of reactant ion [HNO3 + NO3](-), which was enhanced 4-fold after the introduction of dopant gas. The limits of detection (LODs) for RDX, tetryl, and PETN were down to 3, 6, and 10 pg, respectively. Finally, an explosive mixture was successfully analyzed, demonstrating the potential of the DARLTP probe for qualitative and quantitative analysis of complicated explosives. "	"Sorption kinetics of TNT and RDX in anaerobic freshwater and marine sediments: Batch studies. Examination of the partitioning of explosives onto sediment in marine environments is critical to predict the toxicological impacts of worldwide explosive-contaminated sites adjacent to estuaries, wetlands, and the coastal ocean. Marine sediments have been identified as sites of enhanced munitions removal, yet most studies addressing these interactions focus on soils and freshwater sediments. The present study measured the kinetics of 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) sorption onto 2 marine sediments of varying grain sizes (silt vs sand) and organic carbon (OC) content. Abiotic sediment sorption tests were performed at 23 °C, 15 °C, and 4 °C by spiking TNT and RDX solutions directly into anaerobic sediment slurries. Marine sediments showed significantly higher compound uptake rates (0.30-0.80 h(-1) ) than freshwater silt (0.0046-0.0065 h(-1) ) for both compounds, probably because of lower compound solubilities and a higher pH in marine systems. Equilibrium partition constants are on the same order of magnitude for marine silt (1.1-2.0 L kg(-1) sediment) and freshwater silt (1.4-3.1 L kg(-1) sediment) but lower for marine sand (0.72-0.92 L kg(-1) sediment). Total organic carbon content in marine sediments varied linearly with equilibrium partition constants for TNT and was moderately linear for RDX. Uptake rates and equilibrium constants of explosives are inversely correlated to temperature regardless of sediment type because of kinetic barriers associated with low temperatures."	"Molecular dynamics analysis of the transient temperature increase at void locations in shocked materials: RDX and Cu. Molecular dynamics (MD) simulations of high velocity impact (1-6 km/s) of RDX crystal with a nanometer-sized void, has been carried out to understand the mechanism of increase in temperature at void locations under shock loading. Similar simulations are then carried out on single-crystal copper for better interpretation of the results. A reactive potential that can simulate chemical reactions (ReaxFF) has been used for RDX, whereas an EAM potential has been used for Cu. Increased temperature at the void locations are observed under shock loading. The atomic motion, temperature, average potential energy per atom (PE), and average kinetic energy per atom (KE) in and around the voids are closely monitored in order to understand the reason for temperature increase. We compare our results with existing proposed mechanisms and show that some of the proposed mechanisms are not necessary for increased temperature at a void location. It is shown that the directed particle velocity is efficiently is converted into randomized velocity due to the presence of voids thereby increasing the local temperature transiently. In this initial stage (few picoseconds) of the shock, chemical reactions of energetic materials do not play a part in the temperature rise. "	"Spectrophotometric analyses of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in water. A simple and accurate spectrophotometric method for on-site analysis of royal demolition explosive (RDX) in water samples was developed based on the Berthelot reaction. The sensitivity and accuracy of an existing spectrophotometric method was improved by: replacing toxic chemicals with more stable and safer reagents; optimizing the reagent dose and reaction time; improving color stability; and eliminating the interference from inorganic nitrogen compounds in water samples. Cation and anion exchange resin cartridges were developed and used for sample pretreatment to eliminate the effect of ammonia and nitrate on RDX analyses. The detection limit of the method was determined to be 100 μg/L. The method was used successfully for analysis of RDX in untreated industrial wastewater samples. It can be used for on-site monitoring of RDX in wastewater for early detection of chemical spills and failure of wastewater treatment systems."	"Chemical ionization mass spectrometry using carbon nanotube field emission electron sources. A novel chemical ionization (CI) source has been developed based on a carbon nanotube (CNT) field emission electron source. The CNT-based electron source was evaluated and compared with a standard filament thermionic electron source in a commercial explosives trace detection desktop mass spectrometer. This work demonstrates the first reported use of a CNT-based ion source capable of collecting CI mass spectra. Both positive and negative modes were investigated. Spectra were collected for a standard mass spectrometer calibration compound, perfluorotributylamine (PFTBA), as well as trace explosives including trinitrotoluene (TNT), Research Department explosive (RDX), and pentaerythritol tetranitrate (PETN). The electrical characteristics, lifetime at operating pressure, and power requirements of the CNT-based electron source are reported. The CNT field emission electron sources demonstrated an average lifetime of 320 h when operated in constant emission mode under elevated CI pressures. The ability of the CNT field emission source to cycle on and off can provide enhanced lifetime and reduced power consumption without sacrificing performance and detection capabilities. Graphical Abstract ᅟ. "	"Molecular Design and Property Prediction for a Series of Novel Dicyclic Cyclotrimethylene Trinitramines (RDX) Derivatized as High Energy Density Materials. Quantum chemistry calculations and thermodynamics methods were carried out to screen out novel high energy density materials (HEDMs) from several new derivatives with dicyclic structures of Cyclotrimethylene trinitramine (RDX). Their volumes, densities, heats of formation, detonation properties and impact sensitivities have been calculated with thermodynamics methods under DFT B3LYP 6-31++g (d, p) level and all of these compounds exhibit good performance as HEDMs. Especially, R4 has given outstanding values as a potential HEDM. Its crystal density (2.07 g/cm(3)), heat of detonation (1.67 kJ/g), detonation velocity (10051m/s), and detonation pressure (48.5 GPa) are even higher than those of CL-20 while its impact sensitivity (h50, 16 cm) remains a relative safety value. The results indicate that the derivative work in common explosives is a good strategy which can design novel HEDMs with high energetic properties and low sensitivity. And furthermore, some mature processes can be used to synthesize them. "	"Reactive simulation of the chemistry behind the condensed-phase ignition of RDX from hot spots. Chemical events that lead to thermal initiation and spontaneous ignition of the high-pressure phase of RDX are presented using reactive molecular dynamics simulations. In order to initiate the chemistry behind thermal ignition, approximately 5% of RDX crystal is subjected to a constant temperature thermal pulse for various time durations to create a hot spot. After application of the thermal pulse, the ensuing chemical evolution of the system is monitored using reactive molecular dynamics under adiabatic conditions. Thermal pulses lasting longer than certain time durations lead to the spontaneous ignition of RDX after an incubation period. For cases where the ignition is observed, the incubation period is dominated by intermolecular and intramolecular hydrogen transfer reactions. Contrary to the widely accepted unimolecular models of initiation chemistry, N-N bond dissociations that produce NO2 species are suppressed in the condensed phase. The gradual temperature and pressure increase in the incubation period is accompanied by the accumulation of short-lived, heavier polyradicals. The polyradicals contain intact triazine rings from the RDX molecules. At certain temperatures and pressures, the polyradicals undergo ring-opening reactions, which fuel a series of rapid exothermic chemical reactions leading to a thermal runaway regime with stable gas-products such as N2, H2O and CO2. The evolution of the RDX crystal throughout the thermal initiation, incubation and thermal runaway phases observed in the reactive simulations contains a rich diversity of condensed-phase chemistry of nitramines under high-temperature/pressure conditions. "	"Combination of 1,2,4-Oxadiazole and 1,2,5-Oxadiazole Moieties for the Generation of High-Performance Energetic Materials. Salts generated from linked 1,2,4-oxadiazole/1,2,5-oxadiazole precursors exhibit good to excellent thermal stability, density, and, in some cases, energetic performance. The design of these compounds was based on the assumption that by the combination of varying oxadiazole rings, it would be possible to profit from the positive aspects of each of the components. All of the new compounds were fully characterized by elemental analysis, IR spectroscopy, (1)H, (13)C, and (in some cases) (15)N NMR spectroscopy, and thermal analysis (DSC). The structures of 2-3 and 5-1⋅5 H2O were confirmed by single-crystal X-ray analysis. Theoretical performance calculations were carried out by using Gaussian 03 (Revision D.01). Compound 2-3, with its good density (1.85 g cm(-3)), acceptable sensitivity (14 J, 160 N), and superior detonation pressure (37.4 GPa) and velocity (9046 m s(-1)), exhibits performance properties superior to those of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX)."	"Small-Molecule Turn-On Fluorescent Probes for RDX. New fluorescent probes have been tested for their ability to detect nitramine (RDX) and nitroaromatic (TNT) explosives. The probes display turn-on behavior upon exposure to RDX, while their fluorescence is dramatically reduced by the presence of TNT and other nitroaromatic compounds. The probes are applicable in qualitative assays that can distinguish between RDX and TNT as well as acidity and formaldehyde vapors. "	"Gas phase ion chemistry of an ion mobility spectrometry based explosive trace detector elucidated by tandem mass spectrometry. The gas phase ion chemistry for an ion mobility spectrometer (IMS) based explosive detector has been elucidated using tandem mass spectrometry. The IMS system, which is operated with hexachloroethane and isobutyramide reagent gases and an ion shutter type gating scheme, is connected to the atmospheric pressure interface of a triple quadrupole mass spectrometer (MS/MS). Product ion masses, daughter ion masses, and reduced mobility values for a collection of nitro, nitrate, and peroxide explosives measured with the IMS/MS/MS instrument are reported. The mass and mobility data together with targeted isotopic labeling experiments and information about sample composition and reaction environment are leveraged to propose molecular formulas, structures, and ionization pathways for the various product ions. The major product ions are identified as [DNT-H](-) for DNT, [TNT-H](-) for TNT, [RDX+Cl](-) and [RDX+NO2](-) for RDX, [HMX+Cl](-) and [HMX+NO2](-) for HMX, [NO3](-) for EGDN, [NG+Cl](-) and [NG+NO3](-) for NG, [PETN+Cl](-) and [PETN+NO3](-) for PETN, [HNO3+NO3](-) for NH4NO3, [NO2](-) for DMNB, [HMTD-NC3H6O3+H+Cl](-) and [HMTD+H-CH2O-H2O2](+) for HMTD, and [(CH3)3CO2](+) for TATP. In general, the product ions identified for the IMS system studied here are consistent with the product ions reported previously for an ion trap mobility spectrometer (ITMS) based explosive trace detector, which is operated with dichloromethane and ammonia reagent gases and an ion trap type gating scheme. Differences between the explosive trace detectors include the [NG+Cl](-) and [PETN+Cl](-) product ions being major ions in the IMS system compared to minor ions in the ITMS system as well as the major product ion for TATP being [(CH3)3CO2](+) for the IMS system and [(CH3)2CNH2](+) for the ITMS system. "	"Fundamental Study of Electrospun Pyrene-Polyethersulfone Nanofibers Using Mixed Solvents for Sensitive and Selective Explosives Detection in Aqueous Solution. Fluorescent pyrene-polyethersulfone (Py-PES) nanofibers were prepared through electrospinning technique using mixed solvents. The effects of mixed solvent ratio and polymer/fluorophore concentrations on electrospun nanofiber's morphology and its sensing performance were systematically investigated and optimized. The Py-PES nanofibers prepared under optimized conditions were further applied for highly sensitive detection of explosives, such as picric acid (PA), 2,4,6-trinitrotoluene (TNT), 2,4-dinitrotoluene (DNT), and 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) in aqueous phase with limits of detection (S/N = 3) of 23, 160, 400, and 980 nM, respectively. The Stern-Volmer (S-V) plot for Py excimer fluorescence quenching by PA shows two linear regions at low (0-1 μM) and high concentration range (&gt;1 μM) with a quenching constant of 1.263 × 10(6) M(-1) and 5.08 × 10(4) M(-1), respectively. On the contrary, S-V plots for Py excimer fluorescence quenching by TNT, DNT, and RDX display an overall linearity in the entire tested concentration range. The fluorescence quenching by PA can be attributed to the fact that both photoinduced electron transfer and energy transfer are involved in the quenching process. In addition, pyrene monomer fluorescence is also quenched and exhibits different trends for different explosives. Fluorescence lifetime studies have revealed a dominant static quenching mechanism of the current fluorescent sensors for explosives in aqueous solution. Selectivity study demonstrates that common interferents have an insignificant effect on the emission intensity of the fluorescent nanofibers in aqueous phase, while reusability study indicates that the fluorescent nanofibers can be regenerated. Spiked real river water sample was also tested, and negligible matrix effect on explosives detection was observed. This research provides new insights into the development of fluorescent explosive sensor with high performance. "	"Factors affecting sorption of nitro explosives to biochar: pyrolysis temperature, surface treatment, competition, and dissolved metals. The application of rice straw-derived biochar for removing nitro explosives, including 2,4-dinitrotoluene (DNT), 2,4,6-trinitrotoluene (TNT), and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), from contaminated water was investigated through batch experiments. An increase in the pyrolysis temperature from 250 to 900°C in general led to higher pH, surface area, cation exchange capacity (CEC), point of zero charge, and C:O ratio of biochar. The maximum sorption capacity estimated by a mixed sorption-partition model increased when pyrolysis temperatures were elevated from 250 to 900°C, indicating that C content and aromaticity of biochar were strongly related to the sorption of nitro explosives to biochar. Surface treatment with acid or oxidant increased the sorption capacity of biochar for the two strong π-acceptor compounds (DNT and TNT) but not for RDX. However, the enhancement of sorption capacity was not directly related to increased surface area and CEC. Compared with single-sorption systems, coexistence of explosives or cationic metals resulted in decreased sorption of each explosive to biochar, suggesting that sorption of nitro explosives and cationic metals to electron-rich portions in biochar was competitive. Our results suggest that π-π electron donor acceptor interactions are main sorption mechanisms and that changing various conditions can enhance or reduce the sorption of nitro explosives to biochar. "	"Binding of RDX to Cell Wall Components of Pinus sylvestris and Picea glauca and Three-Year Mineralisation Study of Tissue-Associated RDX Residues. Contamination of soils with the explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX, Research Department Explosive) as a result of military applications is a large-area problem globally. Since coniferous trees dominate the vegetation of large areas of military land in Central Europe, particularly in Germany, the long-term fate of (14)C-RDX in the conifers Scots pine and Dwarf Alberta spruce was studied. Acetic acid was the most effective solvent for the removal of extractable RDX residues from homogenates of RDX-laden tree material (85%, 80-90% and 64-80% for roots, wood and needles, respectively). On average, only a fifth of RDX-derived (14)C was bound in non-extractable residues (NER). Within the main cell wall compartments, lignin was the dominant binding site for NER (needles: 32-62%; roots: 38-42%). Hemicellulose (needles: 11-18%; roots: 6-11%) and cellulose (needles: 12-24%; roots: 1-2%) were less involved in binding and a considerable proportion of NER (needles: 15-24%; roots: 59-51%) was indigestible. After three-year incubation in rot chambers, mineralisation of tree-associated (14)C-RDX to (14)CO2 clearly dominated the mass balance in both tree species with 48-83%. 13-33% of (14)C-RDX-derived radioactivity remained in an unleachable form and the remobilisation by water leaching was negligible (&lt; 2%). "	"Application of (13)C and (15)N stable isotope probing to characterize RDX degrading microbial communities under different electron-accepting conditions. This study identified microorganisms capable of using the explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) or its metabolites as carbon and/or nitrogen sources under different electron-accepting conditions using (13)C and (15)N stable isotope probing (SIP). Mesocosms were constructed using groundwater and aquifer solids from an RDX-contaminated aquifer. The mesocosms received succinate as a carbon source and one of four electron acceptors (nitrate, manganese(IV), iron(III), or sulfate) or no additional electron acceptor (to stimulate methanogenesis). When RDX degradation was observed, subsamples from each mesocosm were removed and amended with (13)C3- or ring-(15)N3-, nitro-(15)N3-, or fully-labeled (15)N6-RDX, followed by additional incubation and isolation of labeled nucleic acids. A total of fifteen 16S rRNA sequences, clustering in α- and γ-Proteobacteria, Clostridia, and Actinobacteria, were detected in the (13)C-DNA fractions. A total of twenty seven sequences were derived from different (15)N-DNA fractions, with the sequences clustered in α- and γ-Proteobacteria, and Clostridia. Interestingly, sequences identified as Desulfosporosinus sp. (in the Clostridia) were not only observed to incorporate the labeled (13)C or (15)N from labeled RDX, but also were detected under each of the different electron-accepting conditions. The data suggest that (13)C- and (15)N-SIP can be used to characterize microbial communities involved in RDX biodegradation, and that the dominant pathway of RDX biodegradation may differ under different electron-accepting conditions. "	"Hydrogen as a GC/MS carrier and buffer gas for use in forensic laboratories. A custom set of ion volumes was manufactured in order to investigate the gain and byproducts using hydrogen as a buffer gas following electron ionization in a quadrupole ion trap mass spectrometer as compared with helium. Analyses of illicit drugs such as cocaine, codeine, and oxycodone, and explosives such as TNT, RDX, and HMTD with ion volume exit orifices of 1mm, 2mm, 4mm, 6mm, 8mm and 10mm were performed using GC/MS. Strong similarities between hydrogen and helium spectra of illicit drugs and explosives provide evidence that hydrogen can be used effectively as a buffer gas in an ion trap mass spectrometer. "	"Energetic salts based on furazan-functionalized tetrazoles: routes to boost energy. Based on the backbone of the furazan-tetrazole structure, routes were developed to improve the properties of energetic materials. Two types of high-density energetic salts were designed, prepared, and fully characterized. Single-crystal X-ray analyses support the structural characteristics for two amino salts. A majority of the salts exhibited good detonation properties, high thermal stabilities, and relatively low impact and friction sensitivities. Hydroxylammonium and hydrazinium salts, 1-3 and 1-4, which have relatively high densities (1.84 and 1.74 g cm(-3,) , respectively), acceptable impact and friction sensitivities (14 J, 160 N and 28 J, 360 N), and good detonation pressures (38.3 and 32.2 GPa) and velocities (9323 and 9094 m s(-1) ), have performance properties superior to 1,3,5-trinitro-1,3,5-triazinane (RDX) and triaminotrinitrobenzene (TATB)."	"A comparative study of microbial communities in four soil slurries capable of RDX degradation using illumina sequencing. The nitramine explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) has contaminated many military sites. Recently, attempts to remediate these sites have focused on biostimulation to promote RDX biodegradation. Although many RDX degrading isolates have been obtained in the laboratory, little is known about the potential of microorganisms to degrade this chemical while existing in a soil community. The current study examined and compared the RDX degrading communities in four soil slurries to elucidate the potential of natural systems to degrade this chemical. These soils were selected as they had no previous exposure to RDX, therefore their microbial communities offered an excellent baseline to determine changes following RDX degradation. High throughput sequencing was used to determine which phylotypes experienced an increase in relative abundance following RDX degradation. For this, total genomic DNA was sequenced from (1) the initial soil, (2) soil slurry microcosms following RDX degradation and (3) control soil slurry microcosms without RDX addition. The sequencing data provided valuable information on which phylotypes increased in abundance following RDX degradation compared to control microcosms. The most notable trend was the increase in abundance of Brevundimonas and/or unclassified Bacillaceae 1 in the four soils studied. Although isolates of the family Bacillaceae 1 have previously been linked to RDX degradation, isolates of the genus Brevundimonas have not been previously associated with RDX degradation. Overall, the data suggest these two phylotypes have key roles in RDX degradation in soil communities."	"Alkaline hydrolysis of hexahydro-1,3,5-trinitro-1,3,5-triazine: M06-2X investigation. Alkaline hydrolysis mechanism of possible environmental contaminant RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) was investigated computationally at the PCM(Pauling)/M06-2X/6-311++G(d,p) level of theory. Results obtained show that the initial deprotonation of RDX by hydroxide leads to nitrite elimination and formation of a denitrated cyclohexene intermediate. Further nucleophilic attack by hydroxide onto cyclic CN double bond results in ring opening. It was shown that the presence of hydroxide is crucial for this stage of the reaction. The dominant decomposition pathway leading to a ring-opened intermediate was found to be formation of 4-nitro-2,4-diazabutanal. Hydrolytic transformation of its byproduct (methylene nitramine) leads to end products such as formaldehyde and nitrous oxide. Computational results are in a good agreement with experimental data on hydrolysis of RDX, suggesting that 4-nitro-2,4-diazabutanal, nitrite, formaldehyde, and nitrous oxide are main products for early stages of RDX decomposition under alkaline conditions. "	"Quantifying the degradation of TNT and RDX in a saline environment with and without UV-exposure. Terrorist attacks in a maritime setting, such as the bombing of the USS Cole in 2000, or the detection of underwater mines, require the development of proper protocols to collect and analyse explosive material from a marine environment. In addition to proper analysis of the explosive material, protocols must also consider the exposure of the material to potentially deleterious elements, such as UV light and salinity, time spent in the environment, and time between storage and analysis. To understand how traditional explosives would be affected by such conditions, saline solutions of explosives were exposed to natural and artificial sunlight. Degradation of the explosives over time was then quantified using negative chemical ionization gas chromatography mass spectrometry (GC/NCI-MS). Two explosives, trinitrotoluene (TNT) and cyclotrimethylenetrinitramine (RDX), were exposed to different aqueous environments and light exposures with salinities ranging from freshwater to twice the salinity of ocean water. Solutions were then aged for up to 6 months to simulate different conditions the explosives may be recovered from. Salinity was found to have a negligible impact on the degradation of both RDX and TNT. RDX was stable in solutions of all salinities while TNT solutions degraded regardless of salinity. Solutions of varying salinities were also exposed to UV light, where accelerated degradation was seen for both explosives. Potential degradation products of TNT were identified using electrospray ionization mass spectrometry (ESI-MS), and correspond to proposed degradation products discussed in previously published works [1]. "	"Radixin regulates synaptic GABAA receptor density and is essential for reversal learning and short-term memory. Neurotransmitter receptor density is a major variable in regulating synaptic strength. Receptors rapidly exchange between synapses and intracellular storage pools through endocytic recycling. In addition, lateral diffusion and confinement exchanges surface membrane receptors between synaptic and extrasynaptic sites. However, the signals that regulate this transition are currently unknown. GABAA receptors containing α5-subunits (GABAAR-α5) concentrate extrasynaptically through radixin (Rdx)-mediated anchorage at the actin cytoskeleton. Here we report a novel mechanism that regulates adjustable plasma membrane receptor pools in the control of synaptic receptor density. RhoA/ROCK signalling regulates an activity-dependent Rdx phosphorylation switch that uncouples GABAAR-α5 from its extrasynaptic anchor, thereby enriching synaptic receptor numbers. Thus, the unphosphorylated form of Rdx alters mIPSCs. Rdx gene knockout impairs reversal learning and short-term memory, and Rdx phosphorylation in wild-type mice exhibits experience-dependent changes when exposed to novel environments. Our data suggest an additional mode of synaptic plasticity, in which extrasynaptic receptor reservoirs supply synaptic GABAARs. "	"Facile one-pot synthesis of multi-yolk-shell Bi@C nanostructures by the nanoscale Kirkendall effect. Multi-yolk-shell Bi@C nanostructures were prepared via a facile one-pot template-free hydrothermal approach. The prepared Bi@C nanostructures can act as a solid catalyst in the thermal decomposition of cyclotrimethylenetrinitramine (RDX) and display excellent catalytic activity, which highlights their application in the field of energetic materials. "	"Obtaining the Hessian from the force covariance matrix: Application to crystalline explosives PETN and RDX. We show that for solids the effective Hessian matrix, averaged over the canonical ensemble, can be calculated from the force covariance matrix. This effective Hessian reduces to the standard Hessian as the temperature approaches zero, while at finite temperatures it implicitly includes anharmonic corrections. As a case study, we calculate the effective Hessians and the corresponding normal mode eigenvectors and frequencies for the crystalline organic explosives pentaerythritol tetranitrate and α-1,3,5-trinitro-1,3,5-triazacyclohexane. The resulting normal mode frequencies are compared to those obtained by diagonalizing the standard Hessian matrix of second derivatives in Cartesian displacements about the potential energy minimum. Effects of temperature and statistical noise on the effective Hessians and normal mode frequencies are discussed. "	"The Many Faces of FOX-7: A Precursor to High-Performance Energetic Materials. New derivatives of 1,1-diamino-2, 2-dinitroethene (FOX-7) are reported. These highly oxygen- and nitrogen-rich compounds were fully characterized using IR and multinuclear NMR spectroscopy, elemental analysis (EA), and differential scanning calorimetry (DSC). X-ray structure determination of (E)-1,2-bis{(E)-2-chloro-1-(chloroimino)-2,2-dinitroethyl}diazene) (10), N1, N2-dichloro-1, 2-diazenedicarboximidamide (11), and (E,E)-N,N'-1,2-ethanediylidenebis(2, 2-dinitro-2-chloro-ethanamine) (12) was helpful in their characterization. Heats of formation (HOF) were calculated (Gaussian 03) and combined with experimental densities to estimate the detonation velocities (D) and pressures (P) of the high-energy-density materials (HEDMs) (EXPLO5, v6.01). The compounds exhibit good thermal stability, high density, positive HOF, acceptable oxygen balances, and excellent detonation properties, which often are superior to that of 1,3,5-trinitroperhydro-1,3,5-triazine (RDX). "	"On the importance of shear dissipative forces in coarse-grained dynamics of molecular liquids. In this work we demonstrate from first principles that the shear frictions describing dissipative forces in the direction normal to the vector connecting the coarse-grained (CG) particles in dissipative particle dynamics (DPD) could be dominant for certain real molecular liquids at high-resolution coarse-graining. This is in contrast to previous works on bottom-up DPD modeling and indicates that such liquids cannot be simulated accurately using the conventional form of DPD which relies only on frictions in the radial direction. Specifically, we describe the development of fully bottom-up CG models for liquid hexahydro-1,3,5-trinitro-s-triazine (RDX) which are incorporated into the DPD method. Consistent with the microscopic foundation of DPD dynamics, the conservative part of the DPD models is obtained by the multi-scale coarse-graining (MS-CG) approach, which implements the pairwise decomposition of the atomistic potential of mean force (PMF) in CG coordinates. The radial and shear distant-dependent friction coefficients in a parameter-free form are derived systematically from microscopic velocity and force correlation data along system trajectories using a recently proposed approach [J. Chem. Phys., 2014, 140, 104104]. The shear dissipative forces for the reported system appear to be dominant. We discuss the implications of dominant shear dissipation on dynamical and transport properties of CG liquids such as diffusion and viscosity as revealed by simulations of liquid RDX using the new MS-CG/DPD models. "	"Solution and Solid Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) Ultraviolet (UV) 229 nm Photochemistry. We measured the 229 nm deep-ultraviolet resonance Raman (DUVRR) spectra of solution and solid-state hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). We also examined the photochemistry of RDX both in solution and solid states. RDX quickly photodegrades with a solution quantum yield of φ ~ 0.35 as measured by high-performance liquid chromatography (HPLC). New spectral features form over time during the photolysis of RDX, indicating photoproduct formation. The photoproduct(s) show stable DUVRR spectra at later irradiation times that allow standoff detection. In the solution-state photolysis, nitrate is a photoproduct that can be used as a signature for detection of RDX even after photolysis. We used high-performance liquid chromatography-high-resolution mass spectrometry (HPLC-HRMS) and gas chromatography mass spectrometry (GCMS) to determine some of the major solution-state photoproducts. X-ray photoelectron spectroscopy (XPS) was also used to determine photoproducts formed during solid-state RDX photolysis. "	"Aqueous phase selective detection of 2,4,6-trinitrophenol using a fluorescent metal-organic framework with a pendant recognition site. Prompt and selective detection of nitro explosives in the aqueous phase is in high demand to meet homeland security and environmental concerns. Herein we report the chemically stable porous metal organic framework UiO-68@NH2 with a pendant recognition site for selective detection of the nitro-aromatic explosive TNP in the aqueous phase. The pendant Lewis basic amine moieties are expected to selectively interact with TNP via electrostatic interactions and act as recognition sites for TNP. The MOF can detect the presence of TNP in water at a concentration as low as 0.4 ppm with a response time of a few seconds. In addition, both excitation and emission wavelengths of the MOF are in the visible region. The high selectivity was observed even in the presence of competing nitro analytes in the aqueous phase. The quenching constant for TNP was found to be 5.8 × 10(4) M(-1) which is 23 times higher than that for TNT and for RDX, demonstrating superior and selective quenching ability. This unprecedented selectivity is ascribed to electron-transfer and energy-transfer mechanisms as well as electrostatic interactions between TNP and the MOF. An MOF-coated paper strip that we prepared demonstrated fast and selective response to TNP in water, which represents a first step towards a practical application. "	"Prediction of the crystal packing of di-tetrazine-tetroxide (DTTO) energetic material. Previous calculations suggested that di-tetrazine-tetroxide (DTTO), aka tetrazino-tetrazine-tetraoxide, might have a particularly large density (2.3 g/cm(3) ) and high energy release (8.8 kJ/kg), but it has not yet been synthesized successfully. We report here density functional theory (DFT) (M06, B3LYP, and PBE-ulg) on 20 possible isomers of DTTO. For the two most stable isomers, c1 and c2 we predict the best packings (i.e., polymorphs) among the 10 most common space groups for organic molecular crystal using the Universal force field and Dreiding force field with Monte Carlo sampling. This was followed by DFT calculations at the PBE-ulg level to optimize the crystal packing. We conclude that the c1 isomer has the P21 21 21 space group with a density of 1.96 g/cm(3) , while the c2 isomer has the Pbca space group with a density of 1.98 g/cm(3) . These densities are among the highest of current energetic materials, RDX (1.81 g/cm(3) ) and CL20 (2.01 g/cm(3) ). We observe that the stability of the polymorphs increases with the density while the planarity decreases. © 2015 Wiley Periodicals, Inc. "	"Novel metal-organic framework with tunable fluorescence property: supramolecular signaling platform for polynitrophenolics. With the aid of a rotational C3-symmetric tricarboxytriphenylamine based ligand, a new Cd-MOF was synthesized and characterized by various spectroscopic techniques as well as by single-crystal X-ray diffraction analysis. The structural investigation of the crystalline Cd-MOF complex revealed the existence of unique three symmetry independent coordination environments of Cd(ii) ions with common octahedral and pentagonal bipyramidal geometries. Small cavities with dimensions 6.40 Å × 6.41 Å were present in the crystal system. The tunable fluorescence property of the complex was explored to detect selectively polynitrophenol based explosive materials in the presence of other nitro explosives such as RDX, HMX, TNT and so on. Thermogravimetric analysis and powder X-ray diffraction data support the high thermal stability and crystallinity of the complex. "	"PKCη/Rdx-driven phosphorylation of PDK1: a novel mechanism promoting cancer cell survival and permissiveness for parvovirus-induced lysis. The intrinsic oncotropism and oncosuppressive activities of rodent protoparvoviruses (PVs) are opening new prospects for cancer virotherapy. Virus propagation, cytolytic activity, and spread are tightly connected to activation of the PDK1 signaling cascade, which delays stress-induced cell death and sustains functioning of the parvoviral protein NS1 through PKC(η)-driven modifications. Here we reveal a new PV-induced intracellular loop-back mechanism whereby PKCη/Rdx phosphorylates mouse PDK1:S138 and activates it independently of PI3-kinase signaling. The corresponding human PDK1phosphoS135 appears as a hallmark of highly aggressive brain tumors and may contribute to the very effective targeting of human gliomas by H-1PV. Strikingly, although H-1PV does not trigger PDK1 activation in normal human cells, such cells show enhanced viral DNA amplification and NS1-induced death upon expression of a constitutively active PDK1 mimicking PDK1phosphoS135. This modification thus appears as a marker of human glioma malignant progression and sensitivity to H-1PV-induced tumor cell killing. "	"Ab initio molecular dynamics of high-temperature unimolecular dissociation of gas-phase RDX and its dissociation products. Unimolecular dynamics of gas-phase hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and its dissociation products were simulated using density functional theory (DFT) at the M06-L level. The simulations of RDX at 2000 K showed that dissociation proceeds from multiple conformers, mostly via homolytic fission of an N-N bond with a minor contribution from elimination of HONO, in agreement with previous transition state theory calculations. However, the simulations of the fission and elimination products revealed that secondary N-N fission is facile and, at the simulated temperature of 1750 K, dominant over other mechanisms. The simulations of the resulting intermediates revealed a number of new unimolecular pathways that have not been previously considered. The transition structures and minimal energy paths were calculated for all reactions to confirm these observations. Based on these findings, a revised set of the unimolecular reactions contributing to gas-phase RDX decomposition is proposed. "	"Stable isotope probing reveals the importance of Comamonas and Pseudomonadaceae in RDX degradation in samples from a Navy detonation site. This study investigated the microorganisms involved in hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) degradation from a detonation area at a Navy base. Using Illumina sequencing, microbial communities were compared between the initial sample, samples following RDX degradation, and controls not amended with RDX to determine which phylotypes increased in abundance following RDX degradation. The effect of glucose on these communities was also examined. In addition, stable isotope probing (SIP) using labeled ((13)C3, (15)N3-ring) RDX was performed. Illumina sequencing revealed that several phylotypes were more abundant following RDX degradation compared to the initial soil and the no-RDX controls. For the glucose-amended samples, this trend was strong for an unclassified Pseudomonadaceae phylotype and for Comamonas. Without glucose, Acinetobacter exhibited the greatest increase following RDX degradation compared to the initial soil and no-RDX controls. Rhodococcus, a known RDX degrader, also increased in abundance following RDX degradation. For the SIP study, unclassified Pseudomonadaceae was the most abundant phylotype in the heavy fractions in both the presence and absence of glucose. In the glucose-amended heavy fractions, the 16S ribosomal RNA (rRNA) genes of Comamonas and Anaeromxyobacter were also present. Without glucose, the heavy fractions also contained the 16S rRNA genes of Azohydromonas and Rhodococcus. However, all four phylotypes were present at a much lower level compared to unclassified Pseudomonadaceae. Overall, these data indicate that unclassified Pseudomonadaceae was primarily responsible for label uptake in both treatments. This study indicates, for the first time, the importance of Comamonas for RDX removal. "	"The role of microRNAs in osteoclasts and osteoporosis. Osteoclasts are the exclusive cells of bone resorption. Abnormally activating osteoclasts can lead to low bone mineral density, which will cause osteopenia, osteoporosis, and other bone disorders. To date, the mechanism of how osteoclast precursors differentiate into mature osteoclasts remains elusive. MicroRNAs (miRNAs) are novel regulatory factors that play an important role in numerous cellular processes, including cell differentiation and apoptosis, by post-transcriptional regulation of genes. Recently, a number of studies have revealed that miRNAs participate in bone homeostasis, including osteoclastic bone resorption, which sheds light on the mechanisms underlying osteoclast differentiation. In this review, we highlight the miRNAs involved in regulating osteoclast differentiation and bone resorption, and their roles in osteoporosis. "	"Reduction of nitroaromatics sorbed to black carbon by direct reaction with sorbed sulfides. Sorption to black carbons is an important sink for organic contaminants in sediments. Previous research has suggested that black carbons (graphite, activated carbon, and biochar) mediate the degradation of nitrated compounds by sulfides by at least two different pathways: reduction involving electron transfer from sulfides through conductive carbon regions to the target contaminant (nitroglycerin) and degradation by sulfur-based intermediates formed by sulfide oxidation (RDX). In this study, we evaluated the applicability of black carbon-mediated reactions to a wider variety of contaminant structures, including nitrated and halogenated aromatic compounds, halogenated heterocyclic aromatic compounds, and halogenated alkanes. Among these compounds, black carbon-mediated transformation by sulfides over a 3-day time scale was limited to nitroaromatic compounds. The reaction for a series of substituted nitroaromatics proceeded by reduction, as indicated by formation of 3-bromoaniline from 3-bromonitrobenzene, and inverse correlation of log kobs with energy of the lowest unoccupied molecular orbital (ELUMO). The log kobs was correlated with sorbed sulfide concentration, but no reduction of 3-bromonitrobenzene was observed in the presence of graphite and sulfite, thiosulfate, or polysulfides. Whereas nitroglycerin reduction occurred in an electrochemical cell containing sheet graphite electrodes in which the reagents were placed in separate compartments, nitroaromatic reduction only occurred when sulfides were present in the same compartment. The results suggest that black carbon-mediated reduction of sorbed nitroaromatics by sulfides involves electron transfer directly from sorbed sulfides rather than transfer of electrons through conductive carbon regions. The existence of three different reaction pathways suggests a complexity to the sulfide-carbon system compared to the iron-carbon system, where contaminants are reduced by electron transfer through conductive carbon regions. "	"Rotational defects in cyclotrimethylene trinitramine (RDX) crystals. Cyclotrimethylene trinitramine (RDX) crystalizes in the orthorhombic α-phase at the ambient pressure and temperature. In principle, the point defects commonly found in monatomic crystals, such as vacancies and interstitials, may exist in RDX as well. However, in molecular crystals one encounters additional point defects associated with the distortion of the molecules. A set of rotational defects are described in this article. These are molecules which are located in the proper positions in the crystal but are rotated relative to the molecules in the perfect crystal, and their ring is slightly puckered. The energetic barriers for defect formation and for their annealing back to the perfect crystal configuration are computed using an atomistic model. It is shown that the formation energy of rotational defects is smaller than the vacancy formation energy. Such defects are identified in the cores of dislocations in RDX and hence their concentration in the crystal is expected to increase during plastic deformation. The importance of such point defects is related to their role in phonon scattering and in dislocation-mediated plastic deformation. "	"Improved RDX detoxification with starch addition using a novel nitrogen-fixing aerobic microbial consortium from soil contaminated with explosives. In this work, we developed and characterized a novel nitrogen-fixing aerobic microbial consortium for the complete detoxification of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). Aerobic RDX biodegradation coupled with microbial growth and nitrogen fixation activity were effectively stimulated by the co-addition of starch and RDX under nitrogen limiting conditions. In the starch-stimulated nitrogen-fixing RDX degradative consortium, the RDX degradation activity was correlated with the xplA and nifH gene copy numbers, suggesting the involvement of nitrogen fixing populations in RDX biodegradation. Formate, nitrite, nitrate, and ammonia were detected as aerobic RDX degradation intermediates without the accumulation of any nitroso-derivatives or NDAB (4-nitro-2,4-diazabutanal), indicating nearly complete mineralization. Pyrosequencing targeting the bacterial 16S rRNA genes revealed that the Rhizobium, Rhizobacter and Terrimonas population increased as the RDX degradation activity increased, suggesting their involvement in the degradation process. These findings imply that the nitrogen-fixing aerobic RDX degrading consortium is a valuable microbial resource for improving the detoxification of RDX-contaminated soil or groundwater, especially when combined with rhizoremediation."	"Theoretical study of the stabilities and detonation performance of 5-nitro-3-trinitromethyl-1H-1,2,4-triazole and its derivatives. 5-Nitro-3-trinitromethyl-1H-1,2,4-triazole (NTMT, A) and its substituted derivatives A-CH3, A-OCH3, A-NH2, A-OH, A-NO2, and A-ONO2 were studied using density functional theory (DFT). For all of the molecules except for A-ONO2, the C-NO2 bond in the trinitromethyl group was found to be the weakest, and no transition state occurred during the scission of this bond. The weakest C-NO2 of the trinitromethyl group bond dissociation energies for all of the molecules were all very similar. Most of the title molecules had similar frontier orbital distributions and comparable energy gaps between the frontier orbitals. The impact sensitivity (h 50, in cm), predicted at various levels of theory, decreased in the order A-NH2 (53.0-71.0) &gt; A-CH3 (53.0) &gt; A (36.7) &gt; A-OCH3 (32.6-42.3) &gt; A-OH (26.7-53.0) &gt; A-NO2 (5.6-7.4) &gt; A-ONO2 (4.6-6.1). Their detonation velocities (D), detonation pressures (P), and specific impulses (I s) were 8.02-8.82 km/s, 29.92-35.54 GPa, and 214-260 s, respectively. Composite explosives made from hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and A, A-OH, A-NH2, A-NO2, or A-ONO2 as an oxidizer were found to possess much better detonation performance (D = 9.04-9.29 km/s, P = 37.25-39.26 GPa, and I s = 270-281 s). Thus, introducing -OCH3, -OH, and -NH2 groups into A produced new explosives with acceptable stability and good detonation performance. A-OH and A-NH2 appear to be promising candidates for oxidizers in composite explosives. "	"Resonant and nonresonant multiphoton ionization processes in the mass spectrometry of explosives. Multiphoton ionization processes were studied for three types of explosives using a line-tunable ultraviolet femtosecond laser. When peroxides such as triacetone triperoxide (TATP) and hexamethylene triperoxide diamine (HMTD) were ionized through a nonresonant two-photon process, a molecular ion was dominantly observed by reducing the excess energy remaining in the ion. However, an aromatic nitro compound such as 2,4,6-trinitrotoluene (TNT) produced large signals arising from molecular and fragment ions by resonant two-photon ionization. In addition, only fragment ions were produced from a nonaromatic nitro compound such as 1,3,5-trinitroperhydro-1,3,5-triazine (RDX), even when a resonant two-photon ionization process was employed, suggesting that a further reduction in excess energy would be necessary if a molecular ion were to be observed. "	"Nitro and dinitroamino N-oxides of octaazaanthracene as high energy materials. The present study undertook the design of nitro and dinitroamino compounds from the skeleton of isomeric N-oxides of octaazanaphthalene, using computational methods to predict their degradation and explosive characteristics. The atom equivalent method was employed to evaluate the gas phase heats of formation of the designed species. Condensed phase heats of formation were also determined and found to be in the range of 220-286 kcal mol(-1). Crystal densities of all the designed molecules were calculated and found to be in the range of 1.91-1.98 g cm(-3). Detonation pressure (P) and detonation velocity (D) determined using the Kamlet-Jacobs equation showed that the performance of nitro-substituted compounds was comparable to that of RDX while that of dinitroamino compounds (P ≈ 43.4-43.7 GPa; D ≈ 9.6-9.7 km s(-1)) showed their superiority over HMX (P ≈ 39.3 GPa and D ≈ 9.10 km s(-1)). Impact sensitivity (h 50) of the designed molecules was compared with nitro- and nitramino-based commercial explosives on the basis of the available free space (∆V) per molecule in their crystal lattice estimated using wave function analysis. The study showed that dinitroamino compounds were more sensitive compared to their nitro analogs. Reactivity or chemical stability of the designed molecules were measured in terms of charge distribution, molecular electrostatic potential and frontier molecular orbital energy. The nitro compounds of N-oxides of octaazaanthracene were found to be more stable than their dinitroamino analogs."	"Precise determination of nonlinear function of ion mobility for explosives and drugs at high electric fields for microchip FAIMS. High-field asymmetric waveform ion mobility spectrometry (FAIMS) separates ions by utilizing the characteristics of nonlinear ion mobility at high and low electric fields. Accurate ion discrimination depends on the precise solution of nonlinear relationships and is essential for accurate identification of ion species for applications. So far, all the nonlinear relationships of ion mobility obtained are based at low electric fields (E/N &lt;65 Td). Microchip FAIMS (μ-FAIMS) with small dimensions has high electric field up to E/N = 250 Td, making the approximation methods and conclusions for nonlinear relationships inappropriate for these systems. In this paper, we deduced nonlinear functions based on the first principle and a general model. Furthermore we considered the hydrodynamics of gas flow through microchannels. We then calculated the specific alpha coefficients for cocaine, morphine, HMX, TNT and RDX, respectively, based on their FAIMS spectra measured by μ-FAIMS system at ultra-high fields up to 250 Td. The results show that there is no difference in nonlinear alpha functions obtained by the approximation and new method at low field (&lt;120 Td), but the error induced by using approximation method increases monotonically with the increase in field, and could be as much as 30% at a field of 250 Td."	"Mineralization of RDX-derived nitrogen to N2 via denitrification in coastal marine sediments. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is a common constituent of military explosives. Despite RDX contamination at numerous U.S. military facilities and its mobility to aquatic systems, the fate of RDX in marine systems remains largely unknown. Here, we provide RDX mineralization pathways and rates in seawater and sediments, highlighting for the first time the importance of the denitrification pathway in determining the fate of RDX-derived N. (15)N nitro group labeled RDX ((15)N-[RDX], 50 atom %) was spiked into a mesocosm simulating shallow marine conditions of coastal Long Island Sound, and the (15)N enrichment of N2 (δ(15)N2) was monitored via gas bench isotope ratio mass spectrometry (GB-IRMS) for 21 days. The (15)N tracer data were used to model RDX mineralization within the context of the broader coastal marine N cycle using a multicompartment time-stepping model. Estimates of RDX mineralization rates based on the production and gas transfer of (15)N2O and (15)N2 ranged from 0.8 to 10.3 μmol d(-1). After 22 days, 11% of the added RDX had undergone mineralization, and 29% of the total removed RDX-N was identified as N2. These results demonstrate the important consideration of sediment microbial communities in management strategies addressing cleanup of contaminated coastal sites by military explosives. "	"Toxicity of the conventional energetics TNT and RDX relative to new insensitive munitions constituents DNAN and NTO in Rana pipiens tadpoles. An initiative within the US military is targeting the replacement of traditional munitions constituents with insensitive munitions to reduce risk of accidental detonation. The purpose of the present study was to comparatively assess toxicity of the traditional munitions constituents 2,4,6-trinitrotoluene (TNT) and 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) with the new insensitive munitions constituents 2,4-dinitroanisole (DNAN) and 3-nitro-1,2,4-triazol-5-one (NTO). The following exposure durations were performed with Rana pipiens (leopard frog) tadpoles: TNT and DNAN, 96 h and 28 d; RDX, 10 d and 28 d; NTO, 28 d. The 96-h 50% lethal concentration (LC50) values and 95% confidence intervals for TNT and DNAN were 4.4 mg/L (4.2 mg/L, 4. 7 mg/L) and 24.3 mg/L (21.3 mg/L, 27.6 mg/L), respectively. No significant impacts on survival were observed in the 10-d exposure to RDX up to 25.3 mg/L. Effects on tadpole swimming distance were observed with a lowest-observed-effect concentration (LOEC) of 5.9 mg/L RDX. In the 28-d exposures, the LOECs for survival for TNT, DNAN, and NTO were 0.003 mg/L, 2.4 mg/L, and 5.0 mg/L, respectively. No significant mortality was observed in the RDX chronic 28-d exposure up to the highest treatment level tested of 28.0 mg/L. Neither tadpole developmental stage nor growth was significantly affected in any of the 28-d exposures. Rana pipiens were very sensitive to chronic TNT exposure, with an LOEC 3 orders of magnitude lower than those for insensitive munitions constituents DNAN and NTO."	"Novel self-assembled bimetallic structure of Bi/Fe(0): the oxidative and reductive degradation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). A novel self-assembled bimetallic zero-valent bismuth/iron (Bi/Fe(0)) composite was synthesized, characterized, and used successfully to remove hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) from wastewater. To assess the oxidative and reductive reactivities of Bi/Fe(0) nanoparticles (NPs), RDX degradation experiments were conducted in either ambient or anaerobic conditions, respectively. The best RDX degradation was achieved using 4%-Bi/Fe(0) (atomic ratio) NPs. In ambient conditions, concentrations of Fe(2+) ions and H2O2 were lower in the Bi/Fe(0) solution than in the Fe(0) solution; this difference indicates that most Fe(2+) ions and H2O2 reacted to produce hydroxyl radicals (*OH) and superoxide radical anions (O2(*-)), thereby resulting in the remarkable degradation of RDX. In anaerobic conditions, the presence of Bi increased the electron generation rate from the surfaces of the Bi/Fe(0) NPs. This increase was responsible for the excellent reductive degradation of RDX. Based on Density Functional Theory (DFT) calculations, the adsorption of water was endothermic on Fe(0) NPs and exothermic on Bi/Fe(0) NPs. Therefore, only the dissociation reactions of H2O in the Bi/Fe(0) system were spontaneous, and these reactions resulted in the prominent reactivity of the Bi/Fe(0) NPs."	"MicroRNA and messenger RNA profiling reveals new biomarkers and mechanisms for RDX induced neurotoxicity. RDX is a well-known pollutant to induce neurotoxicity. MicroRNAs (miRNA) and messenger RNA (mRNA) profiles are useful tools for toxicogenomics studies. It is worthy to integrate MiRNA and mRNA expression data to understand RDX-induced neurotoxicity. Rats were treated with or without RDX for 48 h. Both miRNA and mRNA profiles were conducted using brain tissues. Nine miRNAs were significantly regulated by RDX. Of these, 6 and 3 miRNAs were up- and down-regulated respectively. The putative target genes of RDX-regulated miRNAs were highly nervous system function genes and pathways enriched. Fifteen differentially genes altered by RDX from mRNA profiles were the putative targets of regulated miRNAs. The induction of miR-71, miR-27ab, miR-98, and miR-135a expression by RDX, could reduce the expression of the genes POLE4, C5ORF13, SULF1 and ROCK2, and eventually induce neurotoxicity. Over-expression of miR-27ab, or reduction of the expression of unknown miRNAs by RDX, could up-regulate HMGCR expression and contribute to neurotoxicity. RDX regulated immune and inflammation response miRNAs and genes could contribute to RDX- induced neurotoxicity and other toxicities as well as animal defending reaction response to RDX exposure. Our results demonstrate that integrating miRNA and mRNA profiles is valuable to indentify novel biomarkers and molecular mechanisms for RDX-induced neurological disorder and neurotoxicity."	"Bioaccumulation kinetics of the conventional energetics TNT and RDX relative to insensitive munitions constituents DNAN and NTO in Rana pipiens tadpoles. The manufacturing of explosives and their loading, assembling, and packing into munitions for use in testing on training sites or battlefields has resulted in contamination of terrestrial and aquatic sites that may pose risk to populations of sensitive species. The bioaccumulative potential of the conventional explosives 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and of the insensitive munitions (i.e., less shock sensitive) compound 2,4-dinitroanisole (DNAN) were assessed using the Northern leopard frog, Rana pipiens. Trinitrotoluene entering the organism was readily biotransformed to aminodinitrotoluenes, whereas no transformation products were measured for RDX or DNAN. Uptake clearance rates were relatively slow and similar among compounds (1.32-2.19 L kg(-1) h(-1) ). Upon transfer to uncontaminated water, elimination rate was very fast, resulting in the prediction of fast time to approach steady state (5 h or less) and short elimination half-lives (1.2 h or less). A preliminary bioconcentration factor of 0.25 L kg(-1) was determined for the insensitive munitions compound 3-nitro-1,2,4-trizole-5-one (NTO) indicating negligible bioaccumulative potential. Because of the rapid elimination rate for explosives, tadpoles inhabiting contaminated areas are expected to experience harmful effects only if under constant exposure conditions given that body burdens can rapidly depurate preventing tissue concentrations from persisting at levels that may cause detrimental biological effects."	"Laboratory evaluation of bioaugmentation for aerobic treatment of RDX in groundwater. The potential for bioaugmentation with aerobic explosive degrading bacteria to remediate hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) contaminated aquifers was demonstrated. Repacked aquifer sediment columns were used to examine the transport and RDX degradation capacity of the known RDX degrading bacterial strains Gordonia sp. KTR9 (modified with a kanamycin resistance gene) Pseudomonas fluorescens I-C, and a kanamycin resistant transconjugate Rhodococcus jostii RHA1 pGKT2:Km+. All three strains were transported through the columns and eluted ahead of the conservative bromide tracer, although the total breakthrough varied by strain. The introduced cells responded to biostimulation with fructose (18 mg L(-1), 0.1 mM) by degrading dissolved RDX (0.5 mg L(-1), 2.3 µM). The strains retained RDX-degrading activity for at least 6 months following periods of starvation when no fructose was supplied to the column. Post-experiment analysis of the soil indicated that the residual cells were distributed along the length of the column. When the strains were grown to densities relevant for field-scale application, the cells remained viable and able to degrade RDX for at least 3 months when stored at 4 °C. These results indicate that bioaugmentation may be a viable option for treating RDX in large dilute aerobic plumes."	"Development of a molecularly imprinted polymer-based sensor for the electrochemical determination of triacetone triperoxide (TATP). The explosive triacetone triperoxide (TATP), which can be prepared from commercially readily available reagents following an easy synthetic procedure, is one of the most common components of improvised explosive devices (IEDs). Molecularly-imprinted polymer (MIP) electrochemical sensors have proved useful for the determination of different compounds in different matrices with the required sensitivity and selectivity. In this work, a highly sensitive and selective molecularly imprinted polymer with electrochemical capabilities for the determination of TATP has been developed. The molecular imprinting has been performed via electropolymerisation onto a glassy carbon electrode surface by cyclic voltammetry from a solution of pyrrole functional monomer, TATP template and LiClO4. Differential Pulse Voltammetry of TATP, with LiClO4 as supporting electrolyte, was performed in a potential range of -2.0 V to +1.0 V (vs. Ag/AgCl). Three-factor two-level factorial design was used to optimise the monomer concentration at 0.1 mol∙L(-1), template concentration at 100 mmol∙L(-1) and the number of cyclic voltammetry scan cycles to 10. The molecularly imprinted polymer-modified glassy carbon electrode demonstrated good performance at low concentrations for a linear range of 82-44,300 µg∙L(-1) and a correlation coefficient of r(2) = 0.996. The limits of detection (LoD) and quantification (LoQ) achieved were 26.9 μg∙L(-1) and 81.6 μg∙L(-1), respectively. The sensor demonstrated very good repeatability with precision values (n = 6, expressed as %RSD) of 1.098% and 0.55% for 1108 and 2216 µg∙L(-1), respectively. It also proved selective for TATP in the presence of other explosive substances such as PETN, RDX, HMX, and TNT."	"Application of POCIS for exposure assessment of munitions constituents during constant and fluctuating exposure. The present study examined the potential use of polar organic chemical integrative samplers (POCIS) for exposure assessment of munitions constituents, including 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), and their breakdown products (aminodinitrotoluenes [ADNTs], diaminonitrotoluenes [DANTs], and hexahydro-1,3,5-trinitroso-1,3,5-triazine [TNX]). Loss of munitions constituents from the sorbent phase after uptake was observed for the &quot;pesticide&quot; POCIS configuration but not for the &quot;pharmaceutical&quot; configuration. Therefore, the latter was selected for further investigation. Under constant exposure conditions, TNT, ADNTs, DANT, RDX, and atrazine (a common environmental contaminant) accumulated at a linear rate for at least 14 d, with sampling rates between 34 mL/d and 215 mL/d. When POCIS were exposed to fluctuating concentrations, analyte accumulation values were similar to values found during constant exposure, indicating that the sampler was indeed integrative. In contrast, caffeine (a common polar contaminant) and TNX did not accumulate at a linear rate and had a reduction in accumulation of greater than 50% on the POCIS during fluctuating exposures, demonstrating that POCIS did not sample those chemicals in an integrative manner. Moreover, in a flow-through microcosm containing the explosive formulation Composition B, TNT and RDX were readily measured using POCIS, despite relatively high turnover rates and thus reduced water concentrations. Mean water concentrations estimated from POCIS were ± 37% of mean water concentrations measured by traditional grab sample collection. Thus, POCIS were found to have high utility for quantifying exposure to most munitions constituents evaluated (TNT, ADNTs, and RDX) and atrazine."	"TNT and RDX degradation and extraction from contaminated soil using subcritical water. The use of explosives either for industrial or military operations have resulted in the environmental pollution, poses ecological and health hazard. In this work, a subcritical water extraction (SCWE) process at laboratory scale was used at varying water temperature (100-175 °C) and flow rate (0.5-1.5 mL min(-1)), to treat 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) contaminated soil, to reveal information with respect to the explosives removal (based on the analyses of soil residue after extraction), and degradation performance (based on the analyses of water extracts) of this process. Continuous flow subcritical water has been considered on removal of explosives to avoid the repartitioning of non-degraded compounds to the soil upon cooling which usually occurs in the batch system. In the SCWE experiments, near complete degradation of both TNT and RDX was observed at 175 °C based on analysis of water extracts and soil. Test results also indicated that TNT removal of &gt;99% and a complete RDX removal were achieved by this process, when the operating conditions were 1 mL min(-1), and treatment time of 20 min, after the temperature reached 175 °C. HPLC-UV and ion chromatography analysis confirmed that the explosives underwent for degradation. The low concentration of explosives found in the process wastewater indicates that water recycling may be viable, to treat additional soil. Our results have shown in the remediation of explosives contaminated soil, the effectiveness of the continuous flow SCWE process."	"Bioconcentration of TNT and RDX in coastal marine biota. The bioconcentration factor (BCF) was measured for 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in seven different marine species of varying trophic levels. Time series and concentration gradient treatments were used for water column and tissue concentrations of TNT, RDX, and their environmentally important derivatives 2-amino-4,6-dintrotoluene (2-ADNT) and 4-amino-2,6-dinitrotoluene (4-ADNT). BCF values ranged from 0.0031 to 484.5 mL g(-1) for TNT and 0.023 to 54.83 mL g(-1) for RDX. The use of log K ow value as an indicator was evaluated by adding marine data from this study to previously published data. For the munitions in this study, log K ow value was a good indicator in the marine environment. The initial uptake and elimination rates of TNT and RDX for Fucus vesiculosus were 1.79 and 0.24 h(-1) for TNT and 0.50 and 0.0035 h(-1) for RDX respectively. Biotransformation was observed in all biota for both TNT and RDX. Biotransformation of TNT favored 4-ADNT over 2-ADNT at ratios of 2:1 for F. vesiculosus and 3:1 for Mytilus edulis. Although RDX derivatives were measureable, the ratios of RDX derivatives were variable with no detectable trend. Previous approaches for measuring BCF in freshwater systems compare favorably with these experiments with marine biota, yet significant gaps on the ultimate fate of munitions within the biota exist that may be overcome with the use stable isotope-labeled munitions substrates."	"&quot;Fooling fido&quot;--chemical and behavioral studies of pseudo-explosive canine training aids. Genuine explosive materials are traditionally employed in the training and testing of explosive-detecting canines so that they will respond reliably to these substances. However, challenges arising from the acquisition, storage, handling, and transportation of explosives have given rise to the development of &quot;pseudo-explosive&quot; training aids. These products attempt to emulate the odor of real explosives while remaining inert. Therefore, a canine trained on a pseudo-explosive should respond to its real-life analog. Similarly, a canine trained on an actual explosive should respond to the pseudo-explosive as if it was real. This research tested those assumptions with a focus on three explosives: single-base smokeless powder, 2,4,6-trinitrotoluene (TNT), and a RDX-based plastic explosive (Composition C-4). Using gas chromatography-mass spectrometry with solid phase microextraction as a pre-concentration technique, we determined that the volatile compounds given off by pseudo-explosive products consisted of various solvents, known additives from explosive formulations, and common impurities present in authentic explosives. For example, simulated smokeless powders emitted terpenes, 2,4-dinitrotoluene, diphenylamine, and ethyl centralite. Simulated TNT products emitted 2,4- and 2,6-dinitrotoluene. Simulated C-4 products emitted cyclohexanone, 2-ethyl-1-hexanol, and dimethyldinitrobutane. We also conducted tests to determine whether canines trained on pseudo-explosives are capable of alerting to genuine explosives and vice versa. The results show that canines trained on pseudo-explosives performed poorly at detecting all but the pseudo-explosives they are trained on. Similarly, canines trained on actual explosives performed poorly at detecting all but the actual explosives on which they were trained. "	"Prediction of crystal morphology of cyclotrimethylene trinitramine in the solvent medium by computer simulation: a case of cyclohexanone solvent. The crystal morphology of the energetic material cyclotrimethylene trinitramine (also known as RDX) influenced by the solvent effect was investigated via molecular dynamics simulation. The modified attachment energy (MAE) model was established by incorporating the growth parameter-solvent term. The adsorption interface models were used to study the adsorption interactions between solvent and RDX surfaces. The RDX crystal morphology grown from the cyclohexanone (CYC) solvent as a case investigation was calculated by the MAE model. The calculation results indicated that, due to the effect of CYC solvent, (210) and (111) faces had the greatest morphological importance on the final RDX crystal, while the morphological importance of (020), (002), and (200) faces were reduced. The predicted RDX morphology was in reasonable agreement with the observed experiment result. "	"Metagenomic insights into the RDX-degrading potential of the ovine rumen microbiome. The manufacturing processes of royal demolition explosive (RDX), or hexahydro-1,3,5-trinitro-1,3,5-triazine, have resulted in serious water contamination. As a potential carcinogen, RDX can cause a broad range of harmful effects to humans and animals. The ovine rumen is capable of rapid degradation of nitroaromatic compounds, including RDX. While ruminal RDX-degrading bacteria have been identified, the genes and pathways responsible for RDX degradation in the rumen have yet to be characterized. In this study, we characterized the metabolic potential of the ovine rumen using metagenomic approaches. Sequences homologous to at least five RDX-degrading genes cloned from environmental samples (diaA, xenA, xenB, xplA, and xplB) were present in the ovine rumen microbiome. Among them, diaA was the most abundant, likely reflective of the predominance of the genus Clostridium in the ovine rumen. At least ten genera known to harbor RDX-degrading microorganisms were detectable. Metagenomic sequences were also annotated using public databases, such as Pfam, COG, and KEGG. Five of the six Pfam protein families known to be responsible for RDX degradation in environmental samples were identified in the ovine rumen. However, increased substrate availability did not appear to enhance the proliferation of RDX-degrading bacteria and alter the microbial composition of the ovine rumen. This implies that the RDX-degrading capacity of the ovine rumen microbiome is likely regulated at the transcription level. Our results provide metagenomic insights into the RDX-degrading potential of the ovine rumen, and they will facilitate the development of novel and economic bioremediation strategies. "	"Differential effects of two explosive compounds on seed germination and seedling morphology of a woody shrub, Morella cerifera. Soils contaminated with explosive compounds occur on a global scale. Research demolition explosive (RDX) (hexahydro-1,3,5-trinitro-1,3,5-triazine) and trinitrotoluene (TNT) (2-methyl-1,3,5-trinitrobenzene) are the most common explosive compounds in the environment. These compounds, by variably impacting plant health, can affect species establishment in contaminated areas. Our objective was to quantify comparative effects of RDX and TNT on a woody shrub, Morella cerifera, commonly found on bombing ranges along the Atlantic Coast of the United States. Two life stages of M. cerifera, Seeds and juvenile plants, were exposed to soil amended with concentrations of RDX and TNT representative of field levels; RDX up to 1,500 ppm and TNT up to 900 ppm. Percent germination was recorded for 3 weeks; morphological metrics of necrotic, reduced, and curled leaves, in addition to shoot length and number measured at the end of the experiment (8 weeks) for juvenile plants. All concentrations of RDX inhibited seed germination while TNT did not have an effect at any concentration. As contaminant concentration increased, significant increases in seedling morphological damage occurred in the presence of RDX, whereas TNT did not affect seedling morphology at any concentration. Overall the plants were more sensitive to the presence of RDX. Species specific responses to explosive compounds in the soil have the potential to act as a physiological filter, altering plant recruitment and establishment. This filtering of species may have a number of large scale impacts including: altering species composition and ecological succession. "	"N-oxide 1,2,4,5-tetrazine-based high-performance energetic materials. One route to high density and high performance energetic materials based on 1,2,4,5-tetrazine is the introduction of 2,4-di-N-oxide functionalities. Based on several examples and through theoretical analysis, the strategy of regioselective introduction of these moieties into 1,2,4,5-tetrazines has been developed. Using this methodology, various new tetrazine structures containing the N-oxide functionality were synthesized and fully characterized using IR, NMR, and mass spectroscopy, elemental analysis, and single-crystal X-ray analysis. Hydrogen peroxide (50 %) was used very effectively in lieu of the usual 90 % peroxide in this system to generate N-oxide tetrazine compounds successfully. Comparison of the experimental densities of N-oxide 1,2,4,5-tetrazine compounds with their 1,2,4,5-tetrazine precursors shows that introducing the N-oxide functionality is a highly effective and feasible method to enhance the density of these materials. The heats of formation for all compounds were calculated with Gaussian 03 (revision D.01) and these values were combined with measured densities to calculate detonation pressures (P) and velocities (νD ) of these energetic materials (Explo 5.0 v. 6.01). The new oxygen-containing tetrazines exhibit high density, good thermal stability, acceptable oxygen balance, positive heat of formation, and excellent detonation properties, which, in some cases, are superior to those of 1,3,5-tritnitrotoluene (TNT), 1,3,5-trinitrotriazacyclohexane (RDX), and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX). "	"Femtogram-scale photothermal spectroscopy of explosive molecules on nanostrings. We demonstrate detection of femtogram-scale quantities of the explosive molecule 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) via combined nanomechanical photothermal spectroscopy and mass desorption. Photothermal spectroscopy provides a spectroscopic fingerprint of the molecule, which is unavailable using mass adsorption/desorption alone. Our measurement, based on thermomechanical measurement of silicon nitride nanostrings, represents the highest mass resolution ever demonstrated via nanomechanical photothermal spectroscopy. This detection scheme is quick, label-free, and is compatible with parallelized molecular analysis of multicomponent targets."	"Micro-solid-phase extraction coupled to desorption electrospray ionization-high-resolution mass spectrometry for the analysis of explosives in soil. Home-made micro-solid-phase extraction (SPE) cartridges using different adsorbent materials were tested for the desorption electrospray ionization-high-resolution mass spectrometry (DESI-HRMS) determination of explosives like 2,4,6-trinitrotoluene, cyclotrimethylene-trinitramine, cyclotetramethylene-tetranitramine, pentaerythritol tetranitrate, and trinitrophenylmethylnitramine in soil samples. Quantitation limits in the low nanogram per kilogram range proved the reliability of the method for the detection of explosives at ultra-trace levels. The reduced sample preparation allowed for low costs and high-throughput analyses. Finally, the superior extraction capability of the method was proved by obtaining DESI-HRMS responses at least five times higher than those achieved by performing DESI-HRMS analyses of solid-liquid extracts spotted onto commercial polytetrafluoroethylene slides. "	"Production of particulate Composition B during simulated weathering of larger detonation residues. Explosives and energetics continue to be prominent contaminants on many military installations. This research was undertaken to understand the extent to which microscale (10's of μm) particles are produced when macroscale residues are weathered by artificial precipitation. Initial experiments, in which artificial rainwater was applied drip-wise to single chunks of Composition B detonation residues from multiple heights, confirmed that microscale particles were produced during precipitation-driven aging, with 30% of the explosive mass collected detected as particulate Composition B (e.g., particles &gt;0.45 μm in diameter). Follow-on experiments, during which multiple cm-sized residue chunks were subjected to realistic simulated precipitation, demonstrated an initial large pulse of particulate Composition B, followed by sustained production of microscale particles that represented 15-20% of recovered explosives. These findings indicate that the effective footprint of detonation residues likely increases as particulates are produced by the production and spreading of microscale particles across the soil surface. Combined with results published elsewhere that microscale particles can move into porous media to become a distributed source term, these findings point to the need for inclusion of these processes in explosive contaminant fate and transport modeling."	"Characterization and proteomic analysis of the Pseudomonas sp. HK-6 xenB knockout mutant under RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) stress. Pseudomonas sp. HK-6 is able to utilize RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) as its sole nitrogen source. The role of the xenB gene, encoding xenobiotic reductase B, was investigated using HK-6 xenB knockout mutants. The xenB mutant degraded RDX to a level that was 10-fold less than that obtained with the wild-type HK-6 strain. After 60 days of culture with 25 or 50 μM RDX, no residual RDX was detected in the supernatants of the wild-type aerobically grown cultures, whereas approximately 90 % of the RDX remained in the xenB mutant cultures. The xenB mutant bacteria exhibited a 10(2)-10(4)-fold decrease in survival rate compared to the wild-type. The expression of DnaK and GroEL proteins, two typical stress shock proteins (SSPs), in the xenB mutant increased after immediate exposure to RDX, yet dramatically decreased after 4 h of exposure. In addition, DnaK and GroEL were more highly expressed in the cultures with 25 μM RDX in the medium but showed low expression in the cultures with 50 or 75 μM RDX. The expression levels of the dnaK and groEL genes measured by RT-qPCR were also much lower in the xenB genetic background. Analyses of the proteomes of the HK-6 and xenB mutant cells grown under conditions of RDX stress showed increased induction of several proteins, such as Alg8, alginate biosynthesis sensor histidine kinase, and OprH in the xenB mutants when compared to wild-type. However, many proteins, including two SSPs (DnaK and GroEL) and proteins involved in metabolism, exhibited lower expression levels in the xenB mutant than in the wild-type HK-6 strain. The xenB knockout mutation leads to reduced RDX degradation ability, which renders the mutant more sensitive to RDX stress and results in a lower survival rate and an altered proteomic profile under RDX stress."	"Influence of exothermic chemical reactions on laser-induced shock waves. Differences in the excitation of non-energetic and energetic residues with a 900 mJ, 6 ns laser pulse (1064 nm) have been investigated. Emission from the laser-induced plasma of energetic materials (e.g. triaminotrinitrobenzene [TATB], cyclotrimethylene trinitramine [RDX], and hexanitrohexaazaisowurtzitane [CL-20]) is significantly reduced compared to non-energetic materials (e.g. sugar, melamine, and l-glutamine). Expansion of the resulting laser-induced shock wave into the air above the sample surface was imaged on a microsecond timescale with a high-speed camera recording multiple frames from each laser shot; the excitation of energetic materials produces larger heat-affected zones in the surrounding atmosphere (facilitating deflagration of particles ejected from the sample surface), results in the formation of additional shock fronts, and generates faster external shock front velocities (&gt;750 m s(-1)) compared to non-energetic materials (550-600 m s(-1)). Non-explosive materials that undergo exothermic chemical reactions in air at high temperatures such as ammonium nitrate and magnesium sulfate produce shock velocities which exceed those of the inert materials but are less than those generated by the exothermic reactions of explosive materials (650-700 m s(-1)). The most powerful explosives produced the highest shock velocities. A comparison to several existing shock models demonstrated that no single model describes the shock propagation for both non-energetic and energetic materials. The influence of the exothermic chemical reactions initiated by the pulsed laser on the velocity of the laser-induced shock waves has thus been demonstrated for the first time. "	"Performance metrics based on signal intensity for ion mobility spectrometry--based explosive trace detectors using inkjet printed materials. Commercial off-the-shelf (COTS) explosive trace detectors (ETDs) have become an integral part of security practices aimed at protecting the public, transportation, and facilities. Despite their widespread deployment, quality control procedures that can evaluate day-to-day instrument performance or differences among units of the same manufacture are in need for development. In this work, we describe the preparation of test materials (TMs) using inkjet printing that have fixed dosing levels of two explosives; 1,3,5-trinitroperhydro-1,3,5-triazine (RDX) and pentaerythritol tetranitrate (PETN). The uncertainty in the mass of dispensed solute is 0.8% (nominal 1 ng RDX and 5 ng or 20 ng PETN depending on ETD). TMs are stable under storage for at least 20 days at temperatures consistent with indoor and outdoor environments, and can be used by field personnel at deployed locations. Inkjet printing is shown to provide the necessary control over the spatial distribution of analyte on the substrate, thus limiting the variability in the signal response due to the sample. Measurements of signal intensities for two COTS ETDs were obtained from TMs over multi-year time spans and for multiple units of each ETD. Reproducibility in the signal response is shown to be between 6% and 15% RSD, or approximately double the within-day variability. The large datasets allow for the first time modeling of signal intensities with respect to normal distributions, which support the use of standard 3-sigma control practices. "	"Thermally stable 3,6-dinitropyrazolo[4,3-c]pyrazole-based energetic materials. 3,6-Dinitropyrazolo[4,3-c]pyrazole was prepared using an efficient modified process. With selected cations, ten nitrogen-rich energetic salts and three metal salts were synthesized in high yield based on the 3,6-dinitropyrazolo[4,3-c]pyrazolate anion. These compounds were fully characterized by IR and multinuclear NMR spectroscopies, as well as elemental analyses. The structures of the neutral compounds 4 and its salt 16 were confirmed by single-crystal X-ray diffraction showing extensive hydrogen-bonding interactions. The neutral pyrazole precursor and its salts are remarkably thermally stable. Based on the calculated heats of formation and measured densities, detonation pressures (22.5-35.4 GPa) and velocities (7948-9005 m s(-1)) were determined, and they compare favorably with those of TNT and RDX. Their impact and friction sensitivities range from 12 to &gt;40 J and 80 to 360 N, respectively. These properties make them competitive as insensitive and thermally stable high-energy density materials."	"Quantitative detection of trace explosive vapors by programmed temperature desorption gas chromatography-electron capture detector. The direct liquid deposition of solution standards onto sorbent-filled thermal desorption tubes is used for the quantitative analysis of trace explosive vapor samples. The direct liquid deposition method yields a higher fidelity between the analysis of vapor samples and the analysis of solution standards than using separate injection methods for vapors and solutions, i.e., samples collected on vapor collection tubes and standards prepared in solution vials. Additionally, the method can account for instrumentation losses, which makes it ideal for minimizing variability and quantitative trace chemical detection. Gas chromatography with an electron capture detector is an instrumentation configuration sensitive to nitro-energetics, such as TNT and RDX, due to their relatively high electron affinity. However, vapor quantitation of these compounds is difficult without viable vapor standards. Thus, we eliminate the requirement for vapor standards by combining the sensitivity of the instrumentation with a direct liquid deposition protocol to analyze trace explosive vapor samples. "	"The essential role of nitrogen limitation in expression of xplA and degradation of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in Gordonia sp. strain KTR9. Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) is a widely used explosive and a major soil and groundwater contaminant. Organisms such as Gordonia sp. KTR9, capable of degrading RDX and using it as an N source, may prove useful for bioremediation of contaminated sites. XplA is a cytochrome P450 monooxygenase responsible for RDX degradation. Expression of xplA in KTR9 was not induced by RDX but was strongly induced (50-fold) during N-limited growth. When glnR, encoding a regulatory protein affecting N assimilation in diverse Actinobacteria, was deleted from KTR9, the bacterium lost the ability to use nitrate, nitrite, and RDX as N sources. Deletion of glnR also abolished the inhibition of xplA expression by nitrite. Our results confirm the essential role of GlnR in regulating assimilation of nitrite, but there was no evidence for a direct role of GlnR in regulating XplA expression. Rather, the general availability of nitrogen repressed XplA expression. We conclude that the inability of the glnR mutant to use RDX as an N source was due to its inability to assimilate nitrite, an intermediate in the assimilation of nitrogen from RDX. Regulation of XplA does not seem adaptive for KTR9, but it is important for RDX bioremediation with KTR9 or similar bacteria. "	"Analysis of the xplAB-containing gene cluster involved in the bacterial degradation of the explosive hexahydro-1,3,5-trinitro-1,3,5-triazine. Repeated use of the explosive compound hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) on military land has resulted in significant soil and groundwater pollution. Rates of degradation of RDX in the environment are low, and accumulated RDX, which the U.S. Environmental Protection Agency has determined is a possible human carcinogen, is now threatening drinking water supplies. RDX-degrading microorganisms have been isolated from RDX-contaminated land; however, despite the presence of these species in contaminated soils, RDX pollution persists. To further understand this problem, we studied RDX-degrading species belonging to four different genera (Rhodococcus, Microbacterium, Gordonia, and Williamsia) isolated from geographically distinct locations and established that the xplA and xplB (xplAB) genes, which encode a cytochrome P450 and a flavodoxin redox partner, respectively, are nearly identical in all these species. Together, the xplAB system catalyzes the reductive denitration of RDX and subsequent ring cleavage under aerobic and anaerobic conditions. In addition to xplAB, the Rhodococcus species studied here share a 14-kb region flanking xplAB; thus, it appears likely that the RDX-metabolizing ability was transferred as a genomic island within a transposable element. The conservation and transfer of xplAB-flanking genes suggest a role in RDX metabolism. We therefore independently knocked out genes within this cluster in the RDX-degrading species Rhodococcus rhodochrous 11Y. Analysis of the resulting mutants revealed that XplA is essential for RDX degradation and that XplB is not the sole contributor of reducing equivalents to XplA. While XplA expression is induced under nitrogen-limiting conditions and further enhanced by the presence of RDX, MarR is not regulated by RDX. "	"Laser desorption with corona discharge ion mobility spectrometry for direct surface detection of explosives. We present a new highly sensitive technique for the detection of explosives directly from the surface using laser desorption-corona discharge-ion mobility spectrometry (LD-CD-IMS). We have developed LD based on laser diode modules (LDM) and the technique was tested using three different LDM (445, 532 and 665 nm). The explosives were detected directly from the surface without any further preparation. We discuss the mechanism of the LD and the limitations of this technique such as desorption time, transport time and desorption area. After the evaluation of experimental data, we estimated the potential limits of detection of this method to be 0.6 pg for TNT, 2.8 pg for RDX and 8.4 pg for PETN. "	"Theoretical studies on the stability, detonation performance and possibility of synthesis of the nitro derivatives of epoxyethane. Compounds with heterocyclic rings and NO2 groups have drawn much attention as high energy density compounds in recent years. In this study, the nitro derivatives 1-4 of epoxyethane (ETO) were investigated, and their synthetic possibilities in thermodynamics and thermal stability were predicted. The trigger bond for 1, 2 and 3 is the C-C bond, but for 4 it is the C-NO2 bond. The bond dissociation energies (EBDs) were estimated to be 205.40-164.86 kJ mol(-1) and h 50s were 53-126 cm. EBD, h 50 and energy gap all decrease from 1 to 4. A linear relationship exists between the strain energy and the number of the NO2 group. Derivative 2 has a zero oxygen balance and possesses the best detonation properties (D=8.77 km s(-1) and P=33.88 GPa) as a single explosive. Derivatives 3 and 4 used as oxidizers in the composite explosives of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) produce very good detonation performance (D=9.36 km s(-1), P=40.15 GPa and I s = 281.56 s for 3/RDX, and D=9.45 km s(-1), P=41.04 GPa and I s=280.34 s for 4/RDX). The intermolecular hydrogen bonding and dispersion interactions of 3/RDX and 4/RDX show that the compatibilities of these composites are acceptable."	"Ag nanocluster/DNA hybrids: functional modules for the detection of nitroaromatic and RDX explosives. Luminescent Ag nanoclusters (NCs) stabilized by nucleic acids are implemented as optical labels for the detection of the explosives picric acid, trinitrotoluene (TNT), and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). The sensing modules consist of two parts, a nucleic acid with the nucleic acid-stabilized Ag NCs and a nucleic acid functionalized with electron-donating units, including L-DOPA, L-tyrosine and 6-hydroxy-L-DOPA, self-assembled on a nucleic acid scaffold. The formation of donor-acceptor complexes between the nitro-substituted explosives, exhibiting electron-acceptor properties, and the electron-donating sites, associated with the sensing modules, concentrates the explosives in close proximity to the Ag NCs. This leads to the electron-transfer quenching of the luminescence of the Ag NCs by the explosive molecule. The quenching of the luminescence of the Ag NCs provides a readout signal for the sensing process. The sensitivities of the analytical platforms are controlled by the electron-donating properties of the donor substituents, and 6-hydroxy-L-DOPA was found to be the most sensitive donor. Picric acid, TNT, and RDX are analyzed with detection limits corresponding to 5.2 × 10(-12) M, 1.0 × 10(-12) M, and 3.0 × 10(-12) M, respectively, using the 6-hydroxy-L-DOPA-modified Ag NCs sensing module."	"Analysis of munitions constituents in IMX formulations by HPLC and HPLC-MS. The use of Insensitive Munitions eXplosives (IMX) is increasing as the Army seeks to replace certain conventional munitions constituents, such as 2,4,6-trinitrotolene (TNT), for improved safety. The IMX formulations are more stable and therefore less prone to accidental detonation while designed to match the performance of legacy materials. Two formulations, IMX 101 and 104 are being investigated as a replacement for TNT in artillery rounds and composition B Army mortars, respectively. The chemical formulations of IMX-101 and 104 are comprised of four constituents;2,4-dinitroanisole (DNAN), 3-nitro-1,2,4-triazol-5-one (NTO), 1-nitroguanidine (NQ), and Hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) which are mixed in various ratios to achieve the desired performance. The current work details the analysis of the IMX constituents by single column HPLC-UV-ESI-MS. Detection limits determined are in agreement with similar HPLC analysis of compounds, ranging from 7 to 9μg/L. Gradient mobile phases are used to allow separation of the 4 target compounds in more complex mixture of other concomitant compounds. Mass spectra are used to confirm analyte identity with chromatographic retention time."	"Is 1-nitro-1-triazene a high energy density material? An azo bridge (-N=N-) can not only desensitize explosives but also dramatically increase their heats of formation and explosive properties. Amino and nitro are two important high energy density functional groups. Here, we present calculations on 1-nitro-1-triazene (NH2-N=N-NO2). Thermal stability and detonation parameters were predicted theoretically at CCSD(T)/6-311G* level, based on the geometries optimized at MP2/6-311G* level. It was found that the p→π conjugation interaction and the intramolecular hydrogen bonding that exist in the system together increase the thermal stability of the molecule. Moreover, the detonation parameters were evaluated to be better than those of the famous HMX and RDX. Finally, the compound was demonstrated to be a high energy density material."	"PICVib: an accurate, fast and simple procedure to investigate selected vibrational modes and evaluate infrared intensities. The generalization of the PICVib approach [M. V. P. dos Santos et al., J. Comput. Chem., 2013, 34, 611] for calculating infrared intensities is shown to be successful and to preserve all interesting features of the procedure such as easiness of implementation and parallelization, flexibility, treatment of large systems and at high theoretical levels. It was tested and validated for very diverse molecular systems: XH3 (D3h), YH4 (D4h), conformers of RDX, S(N)2 and E2 reaction product complexes, the [W(dppe)2(NNC5H10)] complex, carbon nanotubes, and hydrogen-bonded complexes (H2O···HOH, MeHO···HOH, MeOH···OH2, MeOH···OHMe) including the guanine-cytosine pair. The PICVib shows an excellent overall performance for calculating infrared intensities of localized normal modes and even mixed vibrations, whereas care must be taken for vibrations involving intermolecular interactions. DFT functionals are still the best combination with high level ab initio methods such as CCSD and CCSD(T)."	"The effect of a detonation nanodiamond coating on the thermal decomposition properties of RDX explosives. A well-dispersed and uniformly shaped detonation nanodiamond (DND) was produced and coated over micron scale RDX in various amounts to form four kinds of DND coating composites (NDRs). In order to confirm the optimal coating amount and its effect on the thermal properties, the thermal decomposition and kinetics were studied by DSC, TG and DPTA techniques. The critical temperature of thermal explosion (Tb) and the self accelerating decomposition temperature (T(SADT)) both exhibit an interesting volcano-shaped changing trend and rank in an increasing order of NDR4 &lt; NDR1 &lt; RDX &lt; NDR3 &lt; NDR2. This indicates that the DND coating amount, ranging from 1/7 to 1/5, provides NDRs with better thermal safety than RDX. The thermolytic kinetic parameters (Ea and A) and activation thermodynamic parameters (ΔS(≠), ΔH(≠) and ΔG(≠)) are sorted in the following order: NDR1 &lt; NDR4 &lt; NDR2 &lt; NDR3. The gas emission and reaction rate constant of the initial thermal decomposition have the same order. The results show that the DND coating could improve the reactivity of the NDRs and the effect is proportional to the coating amount. However, excessive coating that is more than 1/3 conversely hinders decomposition and gas diffusion, like a layer of protective shell. The isoconversional activation energy (Ea) varies with the conversion extent (α) at the initial stage of α = 0.1-0.5, which indicates that the thermal decomposition of the NDRs is a multi-step process including the secondary reaction or catalytic reaction. However, the Ea values are almost independent of α when α = 0.6-0.9, with the mean values in an increasing order of NDR1 &lt; NDR4 &lt; NDR2 &lt; NDR3."	"Coral-zooxanthellae meta-transcriptomics reveals integrated response to pollutant stress. Corals represent symbiotic meta-organisms that require harmonization among the coral animal, photosynthetic zooxanthellae and associated microbes to survive environmental stresses. We investigated integrated-responses among coral and zooxanthellae in the scleractinian coral Acropora formosa in response to an emerging marine pollutant, the munitions constituent, 1,3,5-trinitro-1,3,5 triazine (RDX; 5 day exposures to 0 (control), 0.5, 0.9, 1.8, 3.7, and 7.2 mg/L, measured in seawater). RDX accumulated readily in coral soft tissues with bioconcentration factors ranging from 1.1 to 1.5. Next-generation sequencing of a normalized meta-transcriptomic library developed for the eukaryotic components of the A. formosa coral holobiont was leveraged to conduct microarray-based global transcript expression analysis of integrated coral/zooxanthellae responses to the RDX exposure. Total differentially expressed transcripts (DET) increased with increasing RDX exposure concentrations as did the proportion of zooxanthellae DET relative to the coral animal. Transcriptional responses in the coral demonstrated higher sensitivity to RDX compared to zooxanthellae where increased expression of gene transcripts coding xenobiotic detoxification mechanisms (i.e. cytochrome P450 and UDP glucuronosyltransferase 2 family) were initiated at the lowest exposure concentration. Increased expression of these detoxification mechanisms was sustained at higher RDX concentrations as well as production of a physical barrier to exposure through a 40% increase in mucocyte density at the maximum RDX exposure. At and above the 1.8 mg/L exposure concentration, DET coding for genes involved in central energy metabolism, including photosynthesis, glycolysis and electron-transport functions, were decreased in zooxanthellae although preliminary data indicated that zooxanthellae densities were not affected. In contrast, significantly increased transcript expression for genes involved in cellular energy production including glycolysis and electron-transport pathways was observed in the coral animal. Transcriptional network analysis for central energy metabolism demonstrated highly correlated responses to RDX among the coral animal and zooxanthellae indicative of potential compensatory responses to lost photosynthetic potential within the holobiont. These observations underscore the potential for complex integrated responses to RDX exposure among species comprising the coral holobiont and highlight the need to understand holobiont-species interactions to accurately assess pollutant impacts."	"Novel approach to the preparation of organic energetic film for microelectromechanical systems and microactuator applications. An activated RDX-Fe2O3 xerogel in a Si-microchannel plate (MCP) has been successfully prepared by a novel propylene epoxide-mediated sol-gel method. A decrease of nearly 40 °C in decomposition temperature has been observed compared with the original cyclotrimethylene trinitramine (RDX). The RDX-Fe2O3 xerogel can release gas and solid matter simultaneously, and the ratio of gas to solid can be tailored easily by changing the initial proportions of RDX and FeCl3·6H2O, which significantly enhances the explosive and propulsion effects and is of great benefit to the applications. The approach, which is simple, safe, and fully compatible with MEMS technology, opens a new route to the introduction of organic energetic materials to a silicon substrate. "	"Theoretical study of solvent effects on RDX crystal quality and sensitivity using an implicit solvation model. Density functional theory calculations using an SMD model were performed to investigate the effect of solvents (cyclohexanone, acetone, dimethyl formamide and dimethyl sulphoxide) on the crystal quality and sensitivity of RDX. The results indicate that the N-N bond length of the RDX molecule in solvents differs clearly from that in gas phase. The solvent effect on bond and dihedral angles of RDX molecule is small, however, the RDX molecule still maintains the AEE configuration. Natural population analysis shows that, due to solvation effects, RDX O atoms attract more electrons in solvents than in gas phase, while more positive charge distributes to the molecular skeleton. The calculations of N-NO2 bond BDE and nitro group charge as well as surface electrostatic potential parameters reveal that the solvent effect may be helpful to reduce the sensitivity of RDX, but this effect has an upper limit. Finally, it can be predicted qualitatively that the crystal quality of RDX crystallized from cyclohexanone and dimethyl sulphoxide will be higher than that from acetone and dimethyl formamide. Experimental results support these theoretical predictions. "	"Coarse-Grain Model Simulations of Nonequilibrium Dynamics in Heterogeneous Materials. A suite of computational tools is described for particle-based mesoscale simulations of the nonequilibrium dynamics of energetic solids, including mechanical deformation, phase transitions, and chemical reactivity triggered by shock or thermal loading. The method builds upon our recent advances both in generating coarse-grain models under high strains and in developing a variant of dissipative particle dynamics (DPD) that includes chemical reactions. To describe chemical reactivity, a coarse-grain particle equation-of-state was introduced into the constant-energy DPD variant that rigorously treats complex chemical reactions and the associated chemical energy release. As illustration of these developments, we present simulations of shock compression of an RDX crystal and its thermal decomposition under high temperatures. We also discuss our current efforts toward a highly scalable domain-decomposition implementation that extends applicability to micrometer-size simulations. With appropriate parametrization, the method is applicable to other materials whose dynamic response is driven by microstructural heterogeneities. "	"Investigations of the intermolecular forces between RDX and polyethylene by force-distance spectroscopy and molecular dynamics simulations. The development of novel nanoenergetic materials with enhanced bulk properties requires an understanding of the intermolecular interactions occurring between molecular components. We investigate the surface interactions between 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX) and polyethylene (PE) crystals on the basis of combined use of molecular dynamics (MD) simulations and force-distance spectroscopy, in conjunction with Lifshitz macroscopic theory of van der Waals forces between continuous materials. The binding energy in the RDX-PE system depends both on the degree of PE crystallinity and on the RDX crystal face. Our MD simulations yield binding energies of approximately 132 and 120 mJ/m(2) for 100% amorphous and 100% crystalline PE on RDX (210), respectively. The average value is about 36% greater than our experimental value of 81 ± 15 mJ/m(2) for PE (∼48% amorphous) on RDX (210). By comparison, Liftshitz theory predicts a value of about 79 mJ/m(2) for PE interacting with RDX. Our MD simulations also predict larger binding energies for both amorphous and crystalline PE on RDX (210) compared to the RDX (001) surface. Analysis of the interaction potential indicates that about 60% of the binding energy in the PE-RDX system is due to attractive interactions between HPE-ORDX and CPE-NRDX pairs of atoms. Further, amorphous PE shows a much longer interaction distance than crystalline PE with the (210) and (001) RDX surfaces due to the possibility of larger polymer elongations in the case of amorphous PE as strain is applied. Also, we report estimates of the binding energies of energetic materials RDX and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX) with PE, propylene, polystyrene, and several fluorine-containing polymers using Lifshitz theory and compare these with reported MD calculations. "	"Association study of polymorphisms between the Radixin gene and rheumatoid arthritis in a Korean population. Radixin (RDX) is part of the ezrin-radixin-moesin (ERM) protein family. It functions as a membrane-cytoskeletal linker in actin-rich cell surface structures and is thought to be essential for cortical cytoskeleton organization, cell motility, adhesion, and proliferation. An increase in phosphorylated ERM in fibroblast-like synoviocytes contributes to rheumatoid arthritis (RA) synovial hyperplasia. We examined the genetic association between the RDX gene and RA in a Korean population. To identify the relationship between RDX gene polymorphisms and RA, we genotyped 2 single nucleotide polymorphisms (SNPs; rs11213326 and rs12575162) of RDX using a direct sequencing method in 296 RA patients and 493 control subjects. In this study, the 2 SNPs showed no association with RA disease susceptibility. However, further analysis based on clinical information of the RA patient group showed that the SNPs were associated with the erythrocyte sedimentation rate (ESR) in RA patients. These data suggest an association between RDX polymorphisms and the clinical features of RA patients, particularly the ESR. "	"Biotransformation of explosives by Reticulitermes flavipes--associated termite Endosymbionts. Termites have an important role in the carbon and nitrogen cycles despite their reputation as destructive pests. With the assistance of microbial endosymbionts, termites are responsible for the conversion of complex biopolymers into simple carbon substrates. Termites also rely on endosymbionts for fixing and recycling nitrogen. As a result, we hypothesize that termite bacterial endosymbionts are a novel source of metabolic pathways for the transformation of nitrogen-rich compounds like explosives. Explosives transformation capability of termite (Reticulitermes flavipes)-derived endosymbionts was determined in media containing the chemical constituents nitrotriazolone (NTO) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) that comprise new insensitive explosive formulations. Media dosed with 40 µg/ml of explosive was inoculated with surface-sterilized, macerated termites. Bacterial isolates capable of explosives transformation were characterized by 16S rRNA sequencing. Termite-derived enrichment cultures demonstrated degradation activity towards the explosives NTO, RDX, as well as the legacy explosive 2,4,6-trinitrotoluene (TNT). Three isolates with high similarity to the Enterobacteriaceae(Enterobacter, Klebsiella) were able to transform TNT and NTO within 2 days, while isolates with high similarity to Serratia marcescens and Lactococcus lactis were able to transform RDX. Termite endosymbionts harbor a range of metabolic activities and possess unique abilities to transform nitrogen-rich explosives."	"Sublimation kinetics and diffusion coefficients of TNT, PETN, and RDX in air by thermogravimetry. The diffusion coefficients of explosives are crucial in their trace detection and lifetime estimation. We report on the experimental values of diffusion coefficients of three of the most important explosives in both military and industry: TNT, PETN, and RDX. Thermogravimetric analysis (TGA) was used to determine the sublimation rates of TNT, PETN, and RDX powders in the form of cylindrical billets. The TGA was calibrated using ferrocene as a standard material of well-characterized sublimation rates and vapor pressures to determine the vapor pressures of TNT, PETN, and RDX. The determined sublimation rates and vapor pressures were used to indirectly determine the diffusion coefficients of TNT, PETN, and RDX for the first time. A linear log-log dependence of the diffusion coefficients on temperature is observed for the three materials. The diffusion coefficients of TNT, PETN, and RDX at 273 K were determined to be 5.76×10(-6)m(2)/sec, 4.94×10(-6)m(2)/s, and 5.89×10(-6)m(2)/s, respectively. Values are in excellent agreement with the theoretical values in literature."	"Carbon and nitrogen isotope ratios of factory-produced RDX and HMX. RDX and HMX are explosive compounds commonly used by the military and also occasionally associated with acts of terrorism. The isotopic characterization of an explosive can be a powerful approach to link evidence to an event or an explosives cache. We sampled explosive products and their reactants from commercial RDX manufacturers that used the direct nitration and/or the Bachmann synthesis process, and then analyzed these materials for carbon and nitrogen isotope ratios. For manufacturers using the Bachmann process, RDX (13)C enrichment relative to the hexamine substrate was small (+0.9‰) compared to RDX produced using the direct nitration process (+8.2‰ to +12.0‰). RDX (15)N depletion relative to the nitrogen-containing substrates (-3.6‰) was smaller in the Bachmann process than in the direct nitration process (-12.6‰ to -10.6‰). The sign and scale of these differences agree with theorized mechanisms of mass-dependent fractionation. We also examined the isotopic relationship between RDX and HMX isolated from explosive samples. The δ(13)C and δ(15)N values of RDX generally matched those of the HMX with few exceptions, most notably from a manufacturer known to make RDX using two different synthesis processes. The range in δ(13)C values of RDX in a survey of 100 samples from 12 manufacturers spanned 33‰ while the range spanned by δ(15)N values was 26‰; these ranges were much greater than any previously published observations. Understanding the relationship between products and reactants further explains the observed variation in industrially manufactured RDX and can be used as a diagnostic tool to analyze explosives found at a crime scene. "	"Real-time explosive particle detection using a cyclone particle concentrator. There is a need for more rapid methods for the detection of explosive particles. We have developed a novel real-time analysis technique for explosive particles that uses a cyclone particle concentrator. This technique can analyze sample surfaces for the presence of particles from explosives such as TNT and RDX within 3 s, which is much faster than is possible by conventional methods. Particles are detached from the sample surface with air jet pulses, and then introduced into a cyclone particle concentrator with a high pumping speed of about 80 L/min. A vaporizer placed at the bottom of the cyclone particle concentrator immediately converts the particles into a vapor. The vapor is then ionized in the atmospheric pressure chemical ionization (APCI) source of a linear ion trap mass spectrometer. An online connection between the vaporizer and a mass spectrometer enables high-speed detection within a few seconds, compared with the conventional off-line heating method that takes more than 10 s to raise the temperature of a sample filter unit. Since the configuration enriched the number density of explosive particles by about 80 times compared with that without the concentrator, a sub-ng amount of TNT particles on a surface was detectable. The detection limit of our technique is comparable with that of an explosives trace detector using ion mobility spectrometry. The technique will be beneficial for trace detection in security applications, because it detects explosive particles on the surface more speedily than conventional methods."	"Range-adaptive standoff recognition of explosive fingerprints on solid surfaces using a supervised learning method and laser-induced breakdown spectroscopy. The distance between the sensor and the target is a particularly critical factor for an issue as crucial as explosive residues recognition when a laser-assisted spectroscopic technique operates in a standoff configuration. Particularly for laser ablation, variations in operational range influence the induced plasmas as well as the sensitivity of their ensuing optical emissions, thereby confining the attributes used in sorting methods. Though efficient classification models based on optical emissions gathered under specific conditions have been developed, their successful performance on any variable information is limited. Hence, to test new information by a designed model, data must be acquired under operational conditions totally matching those used during modeling. Otherwise, the new expected scenario needs to be previously modeled. To facing both this restriction and this time-consuming mission, a novel strategy is proposed in this work. On the basis of machine learning methods, the strategy stems from a decision boundary function designed for a defined set of experimental conditions. Next, particular semisupervised models to the envisaged conditions are obtained adaptively on the basis of changes in laser fluence and light emission with variation of the sensor-to-target distance. Hence, the strategy requires only a little prior information, therefore ruling out the tedious and time-consuming process of modeling all the expected distant scenes. Residues of ordinary materials (olive oil, fuel oil, motor oils, gasoline, car wax and hand cream) hardly cause confusion in alerting the presence of an explosive (DNT, TNT, RDX, or PETN) when tested within a range from 30 to 50 m with varying laser irradiance between 8.2 and 1.3 GW cm(-2). With error rates of around 5%, the experimental assessments confirm that this semisupervised model suitably addresses the recognition of organic residues on aluminum surfaces under different operational conditions. "	"Riboflavin-mediated RDX transformation in the presence of Shewanella putrefaciens CN32 and lepidocrocite. The potential of riboflavin for the reductive degradation of a cyclic nitramine, hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), was investigated in the presence of lepidocrocite and/or Shewanella putrefaciens CN32. RDX reduction by CN32 alone or CN32 with lepidocrocite was insignificant, while 110 μM RDX was completely reduced by CN32 with riboflavin in 78 h. The transformation products identified included nitroso metabolites, formaldehyde, and ammonium, indicating the ring cleavage of RDX. UV and visible light analysis revealed that riboflavin was microbially reduced by CN32, and that the reduced riboflavin was linked to the complete degradation of RDX. In the presence of both CN32 and lepidocrocite (γ-FeOOH), 100 μM-riboflavin increased the rate and extent of Fe(II) production as well as RDX reduction. An abiotic study also showed that Fe(II)-riboflavin complex, and Fe(II) adsorbed on lepidocrocite, reduced RDX by 48% and 21%, respectively. The findings in this study suggest that riboflavin-mediated RDX degradation pathways in subsurface environments are diverse and complex. However, riboflavin, either from bacteria or exogenous sources, can significantly increase RDX degradation. This will provide a sustainable clean-up option for explosive-contaminated subsurface environments."	"Dense energetic nitraminofurazanes. 3,3'-Diamino-4,4'-bifurazane (1), 3,3'-diaminoazo-4,4'-furazane (2), and 3,3'-diaminoazoxy-4,4'-furazane (3) were nitrated in 100 % HNO3 to give corresponding 3,3'-dinitramino-4,4'-bifurazane (4), 3,3'-dinitramino-4,4'-azofurazane (5) and 3,3'-dinitramino-4,4'-azoxyfurazane (6), respectively. The neutral compounds show very imposing explosive performance but possess lower thermal stability and higher sensitivity than hexogen (RDX). More than 40 nitrogen-rich compounds and metal salts were prepared. Most compounds were characterized by low-temperature X-ray diffraction, all of them by infrared and Raman spectroscopy, multinuclear NMR spectroscopy, elemental analysis, and by differential scanning calorimetry (DSC). Calculated energetic performances using the EXPLO5 code based on calculated (CBS-4M) heats of formation and X-ray densities support the high energetic performances of the nitraminofurazanes as energetic materials. The sensitivities towards impact, friction, and electrostatic discharge were also explored. Additionally the general toxicity of the anions against vibrio fischeri, representative for an aquatic microorganism, was determined. "	"Computational studies on the energetic properties of polynitroxanthines. Density function theory calculations were performed to find comprehensive relationships between the structures and properties of a series of highly energetic polynitroxanthines. The isodesmic reaction method was employed to estimate the gas-phase heat of formation. The solid-state heats of formation for the designed compounds were calculated by the Politzer approach using heats of sublimation. All of the designed compounds were found to possess solid-state heats of formation of &gt;100 kJ mol⁻¹. Detonation performances were evaluated by the Kamlet-Jacobs equations, based on the predicted densities and solid-state heats of formation. The results indicate that all of the compounds have excellent detonation velocities and pressures. The stabilities of the derivatives were calculated by evaluating their energy gaps, bond dissociation energies, and characteristic heights. The results indicate that all of the compounds have large bond dissociation energies and energy gaps. The characteristic height values of the compounds are more than or close to those of HMX and RDX. Thus, the polynitroxanthine derivatives show good thermodynamic and dynamic stability. Further, the present study may provide useful information on the structure-property relationships of these compounds, and for the development of novel high-energy materials."	"Optimizing detection of RDX vapors using designed experiments for remote sensing. This paper presents results of designed experiments performed to study the effect of four factors on the detection of RDX vapors from desorption into an atmospheric flow tube mass spectrometer (AFT-MS). The experiments initially included four independent factors: gas flow rate, desorption current, solvent evaporation time and RDX mass. The values of three detection responses, peak height, peak width, and peak area were recorded but only the peak height response was analyzed. Results from the first block of experiments indicated that solvent evaporation time was not statistically significant at the 95% confidence level. A second round of experiments was designed and executed using flow rate, current, and RDX mass as factors and the results were used to create a model to predict conditions resulting in maximum peak height. Those conditions were confirmed experimentally and used to obtain data for a calibration model. The calibration model represented RDX amounts ranging from 1 to 25 pg desorbed into an air flow of 7 L min(-1). Air samples from a shipping container that held 2 closed explosive storage magazines were collected on metal filaments for varying amounts for time ranging from 5 to 90 minutes. RDX was detected from all of the filaments sampled by desorption into the AFT-MS. From the calibration model, RDX vapor concentrations within the shipping container were calculated to be in the range of 1 to 50 parts-per-quadrillion (ppqv) from data collected on 2 separate days. "	"Theoretical studies on benzo[1,2,4]triazine-based high-energy materials. Density functional theory calculations of 13 aminonitro compounds based on the benzo[1,2,4]triazine fused-ring system were performed. The geometries of all 13 species were optimized at the B3LYP/6-31G(d) level of theory. In order to refine the energy values, single-point energy calculations of the species were made at the B3LYP/6-311++G(2df,2p) level. The gas-phase heats of formation of the species considered were calculated using the atom equivalent method. Condensed-phase heats of formation were calculated utilizing the heats of sublimation of the designed molecules, as evaluated during the present study. With the help of the WFA program, crystal densities of the designed compounds were predicted using the geometry of the molecule optimized at the B3PW91/6-31G(d,p) level. The stabilities and impact sensitivities of all of the compounds are discussed in the present paper in terms of the bond dissociation energy (BDE) of the trigger linkage (the longest C-NO₂ bond) and the available free space per molecule (∆V) in the unit cell of each compound. A nucleus-independent chemical shift (NICS) study was performed to assess the aromaticities of the designed molecules, and the NICS(1) values determined 1 Å above and below the plane of the ring were found to be -7.9 to -10.5, respectively, for the benzene ring and -10.7 to -11.4, respectively, for the triazine ring in the designed fused-ring molecules, showing that both rings retain their aromaticities when undergoing substitution by nitro groups. Detonation parameters of the species were calculated, and the results suggest that the designed compounds possess comparable values to those of the commercial explosives TNT and RDX. Furthermore, results suggest that the designed compounds may be less sensitive than many nitroaromatic and nitramine explosives. Thus, the results obtained during the present study imply that the designed compounds may be used as safe explosive materials, and could be potential alternatives to TNT and RDX."	"Physiological and transcriptional responses of Baccharis halimifolia to the explosive &quot;composition B&quot; (RDX/TNT) in amended soil. Unexploded explosives that include royal demolition explosive (RDX) and trinitrotoluene (TNT) cause environmental concerns for surrounding ecosystems. Baccharis halimifolia is a plant species in the sunflower family that grows naturally near munitions sites on contaminated soils, indicating that it might have tolerance to explosives. B. halimifolia plants were grown on 100, 300, and 750 mg kg(-1) of soil amended with composition B (Comp B) explosive, a mixture of royal demolition explosive and trinitrotoluene. These concentrations are environmentally relevant to such munitions sites. The purpose of the experiment was to mimic contaminated sites to assess the plant's physiological response and uptake of explosives and to identify upregulated genes in response to explosives in order to better understand how this species copes with explosives. Stomatal conductance was not significantly reduced in any treatments. However, net photosynthesis, absorbed photons, and chlorophyll were significantly reduced in all treatments relative to the control plants. The dark-adapted parameter of photosynthesis was reduced only in the 750 mg kg(-1) Comp B treatment. Thus, we observed partial physiological tolerance to Comp B in B. halimifolia plants. We identified and cloned 11 B. halimifolia gene candidates that were orthologous to explosive-responsive genes previously identified in Arabidopsis and poplar. Nine of those genes showed more than 90% similarity to Conyza canadensis (horseweed), which is the closest relative with significant available genomics resources. The expression patterns of these genes were studied using quantitative real-time PCR. Three genes were transcriptionally upregulated in Comp B treatments, and the Cytb6f gene was found to be highly active in all the tested concentrations of Comp B. These three newly identified candidate genes of this explosives-tolerant plant species can be potentially exploited for uses in phytoremediation by overexpressing these genes in transgenic plants and, similarly, by using promoters or variants of promoters from these genes fused to reporter genes in transgenic plants for making phytosensors to report the localized presence of explosives in contaminated soils."	"MiR-378 as a biomarker for response to anti-angiogenic treatment in ovarian cancer. To determine the role of miR-378 as a biomarker for anti-angiogenic therapy response in ovarian cancer. Expression of miR-378 was analyzed in ovarian cancer cell lines and human tumors vs. normal ovarian epithelial cells by qRT-PCR. After miR-378 transfection in SKOV3 cells, dysregulated genes were identified using microarray. Data from The Cancer Genome Atlas (TCGA) was utilized to correlate miR-378 expression with progression-free survival (PFS) among patients treated with anti-angiogenic therapy by using Kaplan-Meier and Cox proportional hazards. MiR-378 was overexpressed in ovarian cancer cells and tumors vs. normal ovarian epithelial cells. Overexpressing miR-378 in ovarian cancer cells altered expression of genes associated with angiogenesis (ALCAM, EHD1, ELK3, TLN1), apoptosis (RPN2, HIPK3), and cell cycle regulation (SWAP-70, LSM14A, RDX). In the TCGA dataset, low vs. high miR-378 expression was associated with longer PFS in a subset of patients with recurrent ovarian cancer treated with bevacizumab (9.2 vs. 4.2months; p=0.04). On multivariate analysis, miR-378 expression was an independent predictor for PFS after anti-angiogenic treatment (HR=2.04, 95% CI: 1.12-3.72; p=0.02). Furthermore, expression levels of two miR-378 targets (ALCAM and EHD1) were associated with PFS in this subgroup of patients who received anti-angiogenic therapy (9.4 vs. 4.2months, p=0.04 for high vs. low ALCAM; 7.9 vs. 2.3months, p&lt;0.01 for low vs. high EHD1). Our data suggest that miR-378 is overexpressed in ovarian cancer cells and tumors vs. normal ovarian epithelial cells. MiR-378 and its downstream targets may serve as markers for response to anti-angiogenic therapy."	"The effect of polymer matrices on the thermal hazard properties of RDX-based PBXs by using model-free and combined kinetic analysis. In this paper, the decomposition reaction models and thermal hazard properties of 1,3,5-trinitro-1,3,5-triazinane (RDX) and its PBXs bonded by Formex P1, Semtex 1A, C4, Viton A and Fluorel polymer matrices have been investigated based on isoconversional and combined kinetic analysis methods. The established kinetic triplets are used to predict the constant decomposition rate temperature profiles, the critical radius for thermal explosion and isothermal behavior at a temperature of 82°C. It has been found that the effect of the polymer matrices on the decomposition mechanism of RDX is significant resulting in very different reaction models. The Formex P1, Semtex and C4 could make decomposition process of RDX follow a phase boundary controlled reaction mechanism, whereas the Viton A and Fluorel make its reaction model shifts to a two dimensional Avrami-Erofeev nucleation and growth model. According to isothermal simulations, the threshold cook-off time until loss of functionality at 82°C for RDX-C4 and RDX-FM is less than 500 days, while it is more than 700 days for the others. Unlike simulated isothermal curves, when considering the charge properties and heat of decomposition, RDX-FM and RDX-C4 are better than RDX-SE in storage safety at arbitrary surrounding temperature."	"The E3 ligase CUL3/RDX controls centromere maintenance by ubiquitylating and stabilizing CENP-A in a CAL1-dependent manner. Centromeres are defined by the presence of the histone H3 variant CENP-A in a subset of centromeric nucleosomes. CENP-A deposition to centromeres depends on a specialized loading factor from yeast to humans that is called CAL1 in Drosophila. Here, we show that CAL1 directly interacts with RDX, an adaptor for CUL3-mediated ubiquitylation. However, CAL1 is not a substrate of the CUL3/RDX ligase but functions as an additional substrate-specifying factor for the CUL3/RDX-mediated ubiquitylation of CENP-A. Remarkably, ubiquitylation of CENP-A by CUL3/RDX does not trigger its degradation but stabilizes CENP-A and CAL1. Loss of RDX leads to a rapid degradation of CAL1 and CENP-A and to massive chromosome segregation defects during development. Essentially, we identified a proteolysis-independent role of ubiquitin conjugation in centromere regulation that is essential for the maintenance of the centromere-defining protein CENP-A and its loading factor CAL1. "	"Theoretical investigation on the structure and performance of N, N'-azobis-polynitrodiazoles. Six novel high energy density compounds of N, N'-azobis-polynitrodiazoles were designed. Their optimized geometric and electronic structures, band gaps, and heats of formation were explored at B3LYP/aug-cc-pVDZ level of density functional theory (DFT). Detonation properties were predicted by Kamlet-Jacobs equations. Results show that the designed compounds have high densities (1.80 to 1.84 g · cm⁻³) and excellent detonation performance (D 8.51 to 9.02 km · s⁻¹, P 32.16 to 36.58 GPa). In addition, the bond dissociation energies of C-NO₂ bonds were found to range from 223.59 to 240.46 kJ · mol⁻¹. All of them appear to be potential explosives compared with the well known ones, 1,3,5-trinitro-1,3,5-triazine (RDX, 8.75 km · s⁻¹, 34.70 GPa) and octahydro- 1,3,5,7-tetranitro-1,3,5,7-tetraazocane (HMX, 8.96 km · s⁻¹, 35.96 GPa), especially R3 (8.98 km · s⁻¹, 36.19 GPa) and R6 (9.02 km · s⁻¹, 36.58 GPa). Finally, the position and number of nitro groups in the N, N'-azobis-polynitrodiazoles determine the heat of formation, stability, sensitivity, density, and detonation performance of these compounds."	"Hedgehog signaling downregulates suppressor of fused through the HIB/SPOP-Crn axis in Drosophila. Hedgehog (Hh) signaling plays vital roles in animal development and tissue homeostasis, and its misregulation causes congenital diseases and several types of cancer. Suppressor of Fused (Su(fu)) is a conserved inhibitory component of the Hh signaling pathway, but how it is regulated remains poorly understood. Here we demonstrate that in Drosophila Hh signaling promotes downregulation of Su(fu) through its target protein HIB (Hh-induced BTB protein). Interestingly, although HIB-mediated downregulation of Su(fu) depends on the E3 ubiquitin ligase Cul3, HIB does not directly regulate Su(fu) protein stability. Through an RNAi-based candidate gene screen, we identify the spliceosome factor Crooked neck (Crn) as a regulator of Su(fu) level. Epistasis analysis indicates that HIB downregulates Su(fu) through Crn. Furthermore, we provide evidence that HIB retains Crn in the nucleus, leading to reduced Su(fu) protein level. Finally, we show that SPOP, the mammalian homologue of HIB, can substitute HIB to downregulate Su(fu) level in Drosophila. Our study suggests that Hh regulates both Ci and Su(fu) levels through its target HIB, thus uncovering a novel feedback mechanism that regulates Hh signal transduction. The dual function of HIB may provide a buffering mechanism to fine-tune Hh pathway activity. "	"Direct MD Simulations of Terahertz Absorption and 2D Spectroscopy Applied to Explosive Crystals. A direct molecular dynamics simulation of the THz spectrum of a molecular crystal is presented. A time-dependent electric field is added to a molecular dynamics simulation of a crystal slab. The absorption spectrum is composed from the energy dissipated calculated from a series of applied pulses characterized by a carrier frequency. The spectrum of crystalline cyclotrimethylenetrinitramine (RDX) and triacetone triperoxide (TATP) were simulated with the ReaxFF force field. The proposed direct method avoids the linear response and harmonic approximations. A multidimensional extension of the spectroscopy is suggested and simulated based on the nonlinear response to a single polarized pulse of radiation in the perpendicular polarization direction. "	"Fluorescent detection of RDX within DHPA-containing metal-organic polyhedra. By incorporating the dihydropyridine amido (DHPA) group into the rationally designed ligand systems, metal-organic molecular polyhedra were obtained via self-assembly for the luminescent sensing of highly explosive RDX with a limit of detection lower than 1 ppb in solution. "	"Transport and dissolution of microscale Composition B detonation residues in porous media. The deposition of military explosive residues on training ranges has resulted in extensive contamination of land and water resources. Experiments were performed to examine the transport and dissolution of mm-sized and microscale Composition B (Comp B) residues applied to the top of sand columns under unsaturated flow conditions. Under a continuous application of artificial rainwater, greater dissolved effluent concentrations of TNT and RDX (5- and 10-fold, respectively) were observed for the columns amended with microscale residues than for the columns amended with the mm-sized residues. This difference between microscale and mm-sized residues likely was due, in part, to dissolution of microscale particles entrapped in the sand column. Elution of particulate Comp B from the columns, based on the difference between total and dissolved explosives concentrations in column effluent, indicated higher and more frequent detections of particulate explosives in the columns amended with microscale Comp B than the columns amended with mm-sized Comp B. Examination of the vertical profiles of explosives in sand indicated that particulate residues had migrated into the sand, with a greater particulate mass observed in the columns which had received the microscale Comp B compared to those which received the mm-sized Comp B. These results indicate that both mm-sized and microscale detonation residues can contribute to the undissolved (e.g., particulate) Comp B transport into to the subsurface. This particulate transport increases the effective contact time between residues and infiltrating rainwater, leading to overall increases in the dissolved mass contaminant flux. "	"Clostridium geopurificans strain MJ1 sp. nov., a strictly anaerobic bacterium that grows via fermentation and reduces the cyclic nitramine explosive hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX). A fermentative, non-spore forming, motile, rod-shaped bacterium, designated strain MJ1(T), was isolated from an RDX contaminated aquifer at a live-fire training site in Northwest NJ, United States. On the basis of 16S rRNA gene sequencing and DNA base composition, strain MJ1(T) was assigned to the Firmicutes. The DNA G+C content was 42.8 mol%. Fermentative growth was supported by glucose and citrate in a defined basal medium. The bacterium is a strict anaerobe that grows between at pH 6.0 and pH 8.0 and 18 and 37 °C. The culture did not grow with hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) as the electron acceptor or mineralize RDX under these conditions. However, MJ1(T) transformed RDX into MNX, methylenedinitramine, formaldehyde, formate, ammonium, nitrous oxide, and nitrate. The nearest phylogenetic relative with a validly published name was Desulfotomaculum guttoideum (95 % similarity). However, MJ1(T) was also related to Clostridium celerecrescens DSM 5628 (95 %), Clostridium indolis DSM 755 (94 %), and Clostridium sphenoides DSM 632 (94 %). DNA:DNA hybridization with these strains was between 6.7 and 58.7 percent. The dominant cellular fatty acids (greater than 5 % of the total, which was 99.0 % recovery) were 16:0 fatty acid methyl ester (FAME) (32.12 %), 18:1cis 11 dimethyl acetal (DMA) (16.47 %), 16:1cis 9 DMA (10.28 %), 16:1cis 9 FAME (8.10 %), and 18:1cis 9 DMA (5.36 %). On the basis of morphological, physiological, and phylogenetic data, Clostridium geopurificans is proposed as a new species in genus Clostridium, with strain MJ1(T) as the type strain."	"Fast Switching of CO3(-)(H2O)n and O2(-)(H2O)n reactant ions in dopant-assisted negative photoionization ion mobility spectrometry for explosives detection. Ion mobility spectrometry (IMS) has become the most deployed technique for on-site detection of trace explosives, and the reactant ions generated in the ionization source are tightly related to the performances of IMS. Combination of multiform reactant ions would provide more information and is in favor of correct identification of explosives. Fast switchable CO3(-)(H2O)n and O2(-)(H2O)n reactant ions were realized in a dopant-assisted negative photoionization ion mobility spectrometer (DANP-IMS). The switching could be achieved in less than 2 s by simply changing the gas flow direction. Up to 88% of the total reactant ions were CO3(-)(H2O)n in the bidirectional mode, and 89% of that were O2(-)(H2O)n in the unidirectional mode. The characteristics of combination of CO3(-)(H2O)n and O2(-)(H2O)n were demonstrated by the detection of explosives, including 2,4,6-trinitrotoluene (TNT), cyclo-1,3,5-trimethylene-2,4,6-trinitramine (RDX), ammonium nitrate fuel oil (ANFO), and black powder (BP). For TNT, RDX, and BP, product ions with different reduced mobility values (K0) were observed with CO3(-)(H2O)n and O2(-)(H2O)n, respectively, which is a benefit for the accurate identification. For ANFO, the same product ions with K0 of 2.07 cm(2) V(-1) s(-1) were generated, but improved peak-to-peak resolution as well as sensitivity were achieved with CO3(-)(H2O)n. Moreover, an improved peak-to-peak resolution was also obtained for BP with CO3(-)(H2O)n, while the better sensitivity was obtained with O2(-)(H2O)n. "	"Detection of high-energy compounds using photoluminescent silicon nanocrystal paper based sensors. Luminescent silicon nanocrystals (Si-NCs) surface functionalized with dodecyl groups were exposed to solutions of nitroaromatic compounds including nitrobenzene, nitrotoluene, and dinitrotoluene. It was found that Si-NC luminescence was quenched upon exposure to nitroaromatics via an electron transfer mechanism as indicated by Stern-Volmer analysis. This quenching was exploited and a straightforward paper-based Si-NC sensor was developed. This paper motif was found to be sensitive to solution, vapor, and solid phase nitroaromatics, as well as solution borne RDX and PETN. "	"Analysis of explosives using corona discharge ionization combined with ion mobility spectrometry-mass spectrometry. Corona discharge ionization combined with ion mobility spectrometry-mass spectrometry (IMS-MS) was utilized to investigate five common explosives: cyclonite (RDX), trinitrotoluene (TNT), pentaerythritol tetranitrate (PETN), cyclotetramethylenetetranitramine (HMX), and 2,4-dinitrotoluene (DNT). The MS scan and the selected ion IMS analyses confirmed the identities of the existing ion species and their drift times. The ions observed were RDX·NO3(-), TNT(-), PETN·NO3(-), HMX·NO3(-), and DNT(-), with average drift times of 6.93 ms, 10.20 ms, 9.15 ms, 12.24 ms, 11.30 ms, and 8.89 ms, respectively. The reduced ion mobility values, determined from a standard curve calculated by linear regression of (normalized drift times)(-1) versus literature K0 values, were 2.09, 1.38, 1.55, 1.15, 1.25, and 1.60 cm(2) V(-1) s(-1), respectively. The detection limits were found to be 0.1 ng for RDX, 10 ng for TNT, 0.5 ng for PETN, 5.0 ng for HMX, and 10 ng for DNT. Simplified chromatograms were observed when nitrogen, as opposed to air, was used as the drift gas, but the detection limits were approximately 10 times worse (i.e., less sensitivity of detection)."	"Algal growth stimulation and toxicity in response to exposure to the new insensitive military high-nitrogen energetic triaminoguanidinium-1-methyl-5-nitriminotetrazolate. Triaminoguanidinium-1-methyl-5-nitriminotetrazolate (TAG-MNT) is a nitrogen-rich energetic compound being developed as a potential component of insensitive munition formulations. The purpose of the present study was to assess the toxicity of TAG-MNT to the green alga Pseudokirchneriella subcapitata as well as to determine whether the high N content of TAG-MNT could result in increased algal growth in aquatic systems and potentially contribute to eutrophication using a 96-h algal growth bioassay in N-limited test media. Results were compared with algal exposures to current-use energetics 2,4,6-trinitrotoluene (TNT) and royal demolition explosive (RDX). The TNT exposure resulted in a lowest-observed-adverse-effect concentration (LOAEC) for algal growth of 1.72 mg/L and a 50% inhibition concentration (IC50) and 95% confidence limits of 0.972 mg/L (0.955, 0.973). The RDX algal growth LOAEC was 0.10 mg/L, and the RDX IC50 was 0.635 (0.416, 0.875). Neither TNT nor RDX exposure resulted in stimulation of algal growth. In repeated testing, TAG-MNT exposure resulted in LOAECs of 0.55 and 5.20 mg/L. Stimulation of algal growth was observed at 0.06 mg/L at a mean increase of 163.2% (± 71.7) relative to the control in TAG-MNT test A and at the 0.005 mg/L treatment at a mean increase of 174.3% (± 59.9) in TAG-MNT test B. The authors' results indicate the potential for high-N energetics to significantly stimulate algal growth at low concentrations in N-limited systems."	"Influence of carbon and metal oxide nanomaterials on aqueous concentrations of the munition constituents cyclotrimethylenetrinitramine (RDX) and tungsten. There is an increasing likelihood of interactions between nanomaterials and munitions constituents in the environment resulting from the use of nanomaterials as additives to energetic formulations and potential contact in waste streams from production facilities and runoff from training ranges. The purpose of the present research was to determine the ability of nano-aluminum oxide (Al(2)O(3)) and multiwalled carbon nanotubes (MWCNTs) to adsorb the munitions constituents cyclotrimethylenetrinitramine (RDX) and tungsten (W) from aqueous solution as a first step in determining the long-term exposure, transport, and bioavailability implications of such interactions. The results indicate significant adsorption of RDX by MWCNTs and of W by nano-Al(2)O(3) (but not between W and MWCNT or RDX and nano-Al(2)O(3)). Kinetic sorption and desorption investigations indicated that the most sorption occurs nearly instantaneously (&lt;5 min), with a relatively slower, secondary binding leading to statistically significant but relatively smaller increases in adsorption over 30 d. The RDX sorption that occurred during the initial interaction was irreversible, with long-term, reversible sorption likely the result of a secondary interaction; as interaction time increased, however, the portion of W irreversibly sorbed onto nano-Al(2)O(3) also increased. The present study shows that strong interactions between some munitions constituents and nanomaterials following environmental release are likely. Time-dependent binding has implications for the bioavailability, migration, transport, and fate of munitions constituents in the environment."	"Chemical analysis of pharmaceuticals and explosives in fingermarks using matrix-assisted laser desorption ionization/time-of-flight mass spectrometry. Chemical analysis of latent fingermarks, &quot;touch chemistry,&quot; has the potential of providing intelligence or forensically relevant information. Matrix-assisted laser desorption ionization/time-of-flight mass spectrometry (MALDI/TOF MS) was used as an analytical platform for obtaining mass spectra and chemical images of target drugs and explosives in fingermark residues following conventional fingerprint development methods and MALDI matrix processing. There were two main purposes of this research: (1) develop effective laboratory methods for detecting drugs and explosives in fingermark residues and (2) determine the feasibility of detecting drugs and explosives after casual contact with pills, powders, and residues. Further, synthetic latent print reference pads were evaluated as mimics of natural fingermark residue to determine if the pads could be used for method development and quality control. The results suggest that artificial amino acid and sebaceous oil residue pads are not suitable to adequately simulate natural fingermark chemistry for MALDI/TOF MS analysis. However, the pads were useful for designing experiments and setting instrumental parameters. Based on the natural fingermark residue experiments, handling whole or broken pills did not transfer sufficient quantities of drugs to allow for definitive detection. Transferring drugs or explosives in the form of powders and residues was successful for preparing analytes for detection after contact with fingers and deposition of fingermark residue. One downfall to handling powders was that the analyte particles were easily spread beyond the original fingermark during development. Analyte particles were confined in the original fingermark when using transfer residues. The MALDI/TOF MS was able to detect procaine, pseudoephedrine, TNT, and RDX from contact residue under laboratory conditions with the integration of conventional fingerprint development methods and MALDI matrix. MALDI/TOF MS is a nondestructive technique which provides chemical information in both the mass spectra and chemical images. "	"Simultaneous removal of perchlorate and energetic compounds in munitions wastewater by zero-valent iron and perchlorate-respiring bacteria. Ammonium perchlorate is one of the main constituents in Army's insensitive melt-pour explosive, PAX-21 in addition to RDX and 2,4-dinitroanisole (DNAN). The objective of this study is to develop an innovative treatment process to remove both perchlorate and energetic compounds simultaneously from PAX-21 production wastewater. It was hypothesized that the pretreatment of PAX-21 wastewater with zero-valent iron (ZVI) would convert energetic compounds to products that are more amenable for biological oxidation and that these products serve as electron donors for perchlorate-reducing bacteria. Results of batch ZVI reduction experiments showed that DNAN was completely reduced to 2,4-diaminoanisole and RDX was completely reduced to formaldehyde. Anaerobic batch biodegradation experiments showed that perchlorate (30 mg L(-1)) in ZVI-treated PAX-21 wastewater was decreased to an undetectable level after 5 days. Batch biodegradation experiments also confirmed that formaldehyde in ZVI-treated wastewater was the primary electron donor for perchlorate-respiring bacteria. The integrated iron-anaerobic bioreactor system was effective in completely removing energetic compounds and perchlorate from the PAX-21 wastewater without adding an exogenous electron donor. This study demonstrated that ZVI pretreatment not only removed energetic compounds, but also transformed energetic compounds to products that can serve as the source of electrons for perchlorate-respiring bacteria."	"Concomitant microRNA-31 downregulation and radixin upregulation predicts advanced tumor progression and unfavorable prognosis in patients with gliomas. To clarify the clinical significance of microRNA-31 (miR-31) and radixin (RDX) in human glioma. Quantitative real-time polymerase chain reaction (qRT-PCR) analysis was used to characterize the expression patterns of miR-31 and RDX mRNA in 108 glioma and 20 normal brain tissues. The associations of miR-31 and RDX mRNA expressions with clinicopathologic factors and prognosis of glioma patients were also statistically analyzed. The expression levels of miR-31 in glioma tissues were significantly lower than those in normal brain tissues (P&lt;0.001), while RDX mRNA was significantly overexpressed in glioma tissues compared with normal brain tissues (P&lt;0.001). There was a negative correlation between miR-31 and RDX mRNA expression in glioma tissues (r=-0.69, P=0.01). Additionally, concomitant miR-31 downregulation and RDX upregulation (miR-31-low/RDX-high) was significantly associated with advanced pathological grade (P=0.001) and low Karnofsky performance score (P=0.01). Moreover, Kaplan-Meier survival and Cox regression analyses showed that the glioma patients with miR-31-low/RDX-high expression had poorest overall survival (P&lt;0.001) and conjoined expression of miR-31-low/RDX-high was an independent prognostic indicator of glioma (P=0.01). Furthermore, subgroup analyses showed that miR-31-low/RDX-high expression was significantly associated with poor overall survival in glioma patients with high pathological grades (for grade III-IV: P&lt;0.001). Our findings have implications concerning the importance of concomitant miR-31 downregulation and RDX upregulation in tumor progression and poor prognosis of patients with gliomas. A combined detection of miR-31/RDX expression may benefit us in predicting clinical outcomes of glioma patients with high pathological grades."	"Characteristics and mechanisms of cardiopulmonary injury caused by mine blasts in shoals: a randomized controlled study in a rabbit model. Because the characteristics of blast waves in water are different from those in air and because kinetic energy is liberated by a pressure wave at the water-air interface, thoracic injuries from mine blasts in shoals may be serious. The aim of the present study was to investigate the characteristics and mechanisms of cardiopulmonary injury caused by mine blasts in shoals. To study the characteristics of cardiopulmonary injury, 56 animals were divided randomly into three experimental groups (12 animals in the sham group, 22 animals in the land group and 22 animals in the shoal group). To examine the biomechanics of injury, 20 animals were divided randomly into the land group and the shoal group. In the experimental model, the water surface was at the level of the rabbit's xiphoid process, and paper electric detonators (600 mg RDX) were used to simulate mines. Electrocardiography and echocardiography were conducted, and arterial blood gases, serum levels of cardiac troponin I and creatine kinase-MB and other physiologic parameters were measured over a 12-hour period after detonation. Pressures in the thorax and abdomen and the acceleration of the thorax were measured. The results indicate that severe cardiopulmonary injury and dysfunction occur following exposure to mine blasts in shoals. Therefore, the mechanisms of cardiopulmonary injury may result from shear waves that produce strain at the water-air interface. Another mechanism of injury includes the propagation of the shock wave from the planta to the thorax, which causes a much higher peak overpressure in the abdomen than in the thorax; as a result, the abdominal organs and diaphragm are thrust into the thorax, damaging the lungs and heart."	"Photoacoustic spectroscopy of surface adsorbed molecules using a nanostructured coupled resonator array. A rapid method of obtaining photoacoustic spectroscopic signals for trace amounts of surface adsorbed molecules using a nanostructured coupled resonator array is described. Explosive molecules adsorbed on a nanoporous anodic aluminum oxide cantilever, which has hexagonally ordered nanowells with diameters and well-to-well distances of 35 nm and 100 nm, respectively, are excited using pulsed infrared (IR) light with a frequency matching the common mode resonance frequency of the coupled resonator. The common mode resonance amplitudes of the coupled resonator as a function of illuminating IR wavelength present a photoacoustic IR absorption spectrum representing the chemical signatures of the adsorbed explosive molecules. In addition, the mass of the adsorbed molecules as an orthogonal signal for quantitative analysis is determined by measuring the variation of the localized, individual mode resonance frequency of a cantilever on the array. The limit of detection of the ternary mixture of explosive molecules (1:1:1 of trinitrotoluene (TNT), cyclotrimethylene trinitramine (RDX) and pentaerythritol tetranitrate (PETN)) is estimated to be ~ 100 ng cm(-2). These multi-modal signals enable us to perform quantitative and rapid chemical sensing and analysis in ambient conditions."	"Advanced recognition of explosives in traces on polymer surfaces using LIBS and supervised learning classifiers. The large similarity existing in the spectral emissions collected from organic compounds by laser-induced breakdown spectroscopy (LIBS) is a limiting factor for the use of this technology in the real world. Specifically, among the most ambitious challenges of today's LIBS involves the recognition of an organic residue when neglected on the surface of an object of identical nature. Under these circumstances, the development of an efficient algorithm to disclose the minute differences within this highly complex spectral information is crucial for a realistic application of LIBS in countering explosive threats. An approach cemented on scatter plots of characteristic emission features has been developed to identify organic explosives when located on polymeric surfaces (teflon, nylon and polyethylene). By using selected spectral variables, the approach allows to design a concise classifier for alerting when one of four explosives (DNT, TNT, RDX and PETN) is present on the surface of the polymer. Ordinary products (butter, fuel oil, hand cream, olive oil and motor oil) cause no confusion in the decisions taken by the classifier. With rates of false negatives and false positives below 5%, results demonstrate that the classification algorithm enables to label residues according to their harmful nature in the most demanding scenario for a LIBS sensor. "	"Burst and principal components analyses of MEA data for 16 chemicals describe at least three effects classes. Microelectrode arrays (MEAs) can be used to detect drug and chemical induced changes in neuronal network function and have been used for neurotoxicity screening. As a proof-of-concept, the current study assessed the utility of analytical &quot;fingerprinting&quot; using principal components analysis (PCA) and chemical class prediction using support vector machines (SVMs) to classify chemical effects based on MEA data from 16 chemicals. Spontaneous firing rate in primary cortical cultures was increased by bicuculline (BIC), lindane (LND), RDX and picrotoxin (PTX); not changed by nicotine (NIC), acetaminophen (ACE), and glyphosate (GLY); and decreased by muscimol (MUS), verapamil (VER), fipronil (FIP), fluoxetine (FLU), chlorpyrifos oxon (CPO), domoic acid (DA), deltamethrin (DELT) and dimethyl phthalate (DMP). PCA was performed on mean firing rate, bursting parameters and synchrony data for concentrations above each chemical's EC50 for mean firing rate. The first three principal components accounted for 67.5, 19.7, and 6.9% of the data variability and were used to identify separation between chemical classes visually through spatial proximity. In the PCA, there was clear separation of GABAA antagonists BIC, LND, and RDX from other chemicals. For the SVM prediction model, the experiments were classified into the three chemical classes of increasing, decreasing or no change in activity with a mean accuracy of 83.8% under a radial kernel with 10-fold cross-validation. The separation of different chemical classes through PCA and high prediction accuracy in SVM of a small dataset indicates that MEA data may be useful for separating chemicals into effects classes using these or other related approaches. "	"Fluorescence and piezoresistive cantilever sensing of trinitrotoluene by an upper-rim tetrabenzimidazole conjugate of calix[4]arene and delineation of the features of the complex by molecular dynamics. A new benzimidazole-functionalized calix[4]arene receptor (R) was synthesized and characterized. The receptor R shows better selectivity toward trinitrotoluene (TNT) compared to the other nitro explosives in solution, which also retains its effectiveness for solid-phase detection. The chemical interactions of the molecule with different nitro explosive analytes were studied by fluorescence spectroscopy and by a molecular dynamics approach. The molecular dynamics studies show a 1:3 complex between R and TNT, and hence high sensitivity was imparted by fluorescence studies. The detection of explosive vapors in ambient conditions was tested by using a sensitive coating layer of R on an SU-8/CB-based piezoresistive cantilever surface. The developed device showed large sensitivity toward TNT compared to cyclotrimethylenetrinitramine (RDX) and pentaerythritol tetranitrate (PETN) in the solid state at their respective vapor pressures at room temperature. The detection sensitivity of the device was estimated to be 35 mV for TNT at ambient conditions. Moreover, the sensor does not show a response when exposed to humidity. These results demonstrate that R can be used as one of the coating materials for a cantilever for the detection of TNT using piezoresistivity measurement. R can also detect the explosives in solution with high sensitivity and selectivity by fluorescence spectroscopy. "	"Chromo-fluorogenic detection of nitroaromatic explosives by using silica mesoporous supports gated with tetrathiafulvalene derivatives. Three new hybrid gated mesoporous materials (SN3 -1, SNH2 -2, and SN3 -3) loaded with the dye [Ru(bipy)3 ](2+) (bipy=bipyridine) and capped with different tetrathiafulvalene (TTF) derivatives (having different sizes and shapes and incorporating different numbers of sulfur atoms) have been prepared. The materials SN3 -1 and SN3 -3 are functionalized on their external surfaces with the TTF derivatives 1 and 3, respectively, which were attached by employing the &quot;click&quot; chemistry reaction, whereas SNH2 -2 incorporates the TTF derivative 2, which was anchored to the solid through an amidation reaction. The final gated materials have been characterized by standard techniques. Suspensions of these solids in acetonitrile showed &quot;zero release&quot;, most likely because of the formation of dense TTF networks around the pore outlets. The release of the entrapped [Ru(bipy)3 ](2+) dye from SN3 -1, SNH2 -2, and SN3 -3 was studied in the presence of selected explosives (Tetryl, TNT, TNB, DNT, RDX, PETN, PA, and TATP). SNH2 -2 showed a fairly selective response to Tetryl, whereas for SN3 -1 and SN3 -3 dye release was found to occur with Tetryl, TNT, and TNB. The uncapping process in the three materials can be ascribed to the formation of charge-transfer complexes between the electron-donating TTF units and the electron-accepting nitroaromatic explosives. Finally, solids SNH2 -2 and SN3 -1 have been tested for Tetryl detection in soil with good results, pointing toward a possible use of these or similar hybrid capped materials as probes for the selective chromo-fluorogenic detection of nitroaromatic explosives. "	"Determining the effects of routine fingermark detection techniques on the subsequent recovery and analysis of explosive residues on various substrates. An offender who has recently handled bulk explosives would be expected to deposit latent fingermarks that are contaminated with explosive residues. However, fingermark detection techniques need to be applied in order for these fingermarks to be detected and recorded. Little information is available in terms of how routine fingermark detection methods impact on the subsequent recovery and analysis of any explosive residues that may be present. If an identifiable fingermark is obtained and that fingermark is found to be contaminated with a particular explosive then that may be crucial evidence in a criminal investigation (including acts of terrorism involving improvised explosive devices). The principal aims of this project were to investigate: (i) the typical quantities of explosive material deposited in fingermarks by someone who has recently handled bulk explosives; and (ii) the effects of routine fingermark detection methods on the subsequent recovery and analysis of explosive residues in such fingermarks. Four common substrates were studied: paper, glass, plastic (polyethylene plastic bags), and metal (aluminium foil). The target explosive compounds were 2,4,6-trinitrotoluene (TNT), pentaerythritol tetranitrate (PETN), and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), as well as chlorate and nitrate ions. Recommendations are provided in terms of the application of fingermark detection methods on surfaces that may contain explosive residues. "	"4-Aminothiophenol functionalized gold nanoparticle-based colorimetric sensor for the determination of nitramine energetic materials. The heterocyclic nitramine compounds, hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX), are two most important military-purpose high explosives. Differentiation of RDX and HMX with colorimetric methods of determination has not yet been made because of their similar chemical structures. In this study, a sensitive colorimetric method for the determination of RDX and HMX was proposed on the basis of differential kinetics in the hydrolysis of the two compounds (yielding nitrite as a product) followed by their colorimetric determination using 4-aminothiophenol (4-ATP) modified gold nanoparticles (AuNPs) and naphthylethylene diamine (NED) as coupling agent for azo-dye formation, abbreviated as &quot;4-ATP-AuNP+NED&quot; colorimetric method. After alkaline hydrolysis in a 1 M Na2CO3 + 0.04 M NaOH mixture solution at room temperature, only RDX (but not HMX) was hydrolyzed to give a sufficient colorimetric response in neutralized solution, the molar absorptivity (ε) at 565 nm and the limit of detection (LOD) for RDX being (17.6 ± 1.3) × 10(3) L mol(-1) cm(-1) and 0.55 μg mL(-1), respectively. On the other hand, hot water bath (at 60 °C) hydrolysis enabled both nitramines, RDX and HMX, to give substantial colorimetric responses; i.e., ε and LOD for RDX were (32.8 ± 0.5) × 10(3) L mol(-1)cm(-1) and 0.20 μg mL(-1) and for HMX were (37.1 ± 2.8) × 10(3) L mol(-1)cm(-1) and 0.24 μg mL(-1), respectively. Unlike other AuNP-based nitrite sensors in the literature showing absorbance quenching within a relatively narrow concentration range, the developed sensor operated with an absorbance increase over a wide range of nitrite. Synthetic mixtures of (RDX + HMX) gave additive responses, and the proposed method was statistically validated against HPLC using nitramine mixtures. "	"CLIC5 stabilizes membrane-actin filament linkages at the base of hair cell stereocilia in a molecular complex with radixin, taperin, and myosin VI. Chloride intracellular channel 5 protein (CLIC5) was originally isolated from microvilli in complex with actin binding proteins including ezrin, a member of the Ezrin-Radixin-Moesin (ERM) family of membrane-cytoskeletal linkers. CLIC5 concentrates at the base of hair cell stereocilia and is required for normal hearing and balance in mice, but its functional significance is poorly understood. This study investigated the role of CLIC5 in postnatal development and maintenance of hair bundles. Confocal and scanning electron microscopy of CLIC5-deficient jitterbug (jbg) mice revealed progressive fusion of stereocilia as early as postnatal day 10. Radixin (RDX), protein tyrosine phosphatase receptor Q (PTPRQ), and taperin (TPRN), deafness-associated proteins that also concentrate at the base of stereocilia, were mislocalized in fused stereocilia of jbg mice. TPRQ and RDX were dispersed even prior to stereocilia fusion. Biochemical assays showed interaction of CLIC5 with ERM proteins, TPRN, and possibly myosin VI (MYO6). In addition, CLIC5 and RDX failed to localize normally in fused stereocilia of MYO6 mutant mice. Based on these findings, we propose a model in which these proteins work together as a complex to stabilize linkages between the plasma membrane and subjacent actin cytoskeleton at the base of stereocilia."	"Elevated root retention of hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) in coniferous trees. For decades, the explosive RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) has been used for military and industrial applications. Residues of RDX pollute soils in large areas globally and the persistence and high soil mobility of these residues can lead to leaching into groundwater. Dendroremediation, i.e. the long-term use of trees to clean up polluted soils, is gaining acceptance as a green and sustainable strategy. Although the coniferous tree species Norway spruce and Scots pine cover large areas of military land in Central Europe, the potential of any coniferous tree for dendroremediation of RDX is still unknown. In this study, uptake experiments with a (14)C-labelled RDX solution (30 mg L(-1)) revealed that RDX was predominantly retained in the roots of 6-year-old coniferous trees. Only 23 % (pine) to 34 % (spruce) of RDX equivalents (RDXeq) taken up by the roots were translocated to aboveground tree compartments. This finding contrasts with the high aerial accumulation of RDXeq (up to 95 %) in the mass balances of all other plant species. Belowground retention of RDXeq is relatively stable in fine root fractions, since water leaching from tissue homogenates was less than 5 %. However, remobilisation from milled coarse roots and tree stubs reached up to 53 %. Leaching from homogenised aerial tree material was found to reach 64 % for needles, 58 % for stems and twigs and 40 % for spring sprouts. Leaching of RDX by precipitation increases the risk for undesired re-entry into the soil. However, it also opens the opportunity for microbial mineralisation in the litter layer or in the rhizosphere of coniferous forests and offers a chance for repeated uptake of RDX by the tree roots."	"Regulation of eukaryotic-like protein kinase activity of DspA from Myxococcus xanthus by autophosphorylation. A Myxococcus xanthus DspA contains 12 subdomains characteristic of eukaryotic-like protein kinases but with an atypical sequence, RDxSPHN, in the catalytic loop, different from the consensus motifs observed in Ser/Thr kinases (RDxKxxN) or Tyr kinases (RDx(A/R)A(A/R)N). DspA phosphorylated myelin basic protein (MBP) on Ser and Thr residues. Mutations of the SPHN motif within the catalytic loop to KPHN or KPEN for Ser/Thr kinases, AARN for Tyr kinases and TPHN or TSHN for Dictyostelium Tyr kinases markedly reduced autophosphorylation and kinase activities. Phosphorylation assays, Western blot analysis and mutational analysis revealed that DspA is a dual-specificity kinase that autophosphorylates on two Thr residues (Thr-199 and Thr-201) in the activation loop and two Tyr residues (Tyr-35 and Tyr-111). RD kinases such as DspA are activated by phosphorylation in the activation loop. Replacement of Thr-199 or/and Thr-201 in the DspA activation loop by alanine also almost abolished autophosphorylation and kinase activities. In addition, mutation of either Tyr-35 or Tyr-111 to phenylalanine decreased kinase activities against MBP, and double mutation abolished kinase activity. These results suggested that DspA is activated by dual autophosphorylation of Thr residues in the activation loop, and autophosphorylation on two Tyr residues of DspA are required for high-level kinase activity. "	"A study of the solvent effect on the morphology of RDX crystal by molecular modeling method. Molecular dynamics simulations have been performed to investigate the effect of acetone solvent on the crystal morphology of RDX. The results show that the growth morphology of RDX crystal in vacuum is dominated by the (111), (020), (200), (002), and (210) faces using the BFDH laws, and (111) face is morphologically the most important. The analysis of surface structures of RDX crystal indicates that (020) face is non-polar, while (210), (111), (002), and (200) faces are polar among which (210) face has the strongest polarity. The interaction between acetone solvent and each RDX crystal face is different, and the order of binding energy on these surfaces is (210) &gt; (111) &gt; (002) &gt; (200) &gt; (020). The analysis of interactions among RDX and acetone molecules reveal that the system nonbond interactions are primary strong van der Waals and electrostatic interactions containing π-hole interactions, the weak hydrogen bond interactions are also existent. The effect of acetone on the growth of RDX crystal can be evaluated by comparing the binding energies of RDX crystalline faces. It can be predicted that compared to that in vacuum, in the process of RDX crystallization from acetone, the morphological importance of (210) face is increased more and (111) face is not the most important among RDX polar surfaces, while the non-polar (020) face probably disappears. The experimentally obtained RDX morphology grown from acetone is in agreement with the theoretical prediction. "	"A theoretical study on 1,5-diazido-3-nitrazapentane (DANP) and 1,7-diazido-2,4,6-trinitrazaheptane (DATNH): molecular and crystal structures, thermodynamic and detonation properties, and pyrolysis mechanism. 1,5-Diazido-3-nitrazapentane (DANP) and 1,7-diazido-2,4,6-trinitrazaheptane (DATNH) are two energetic plasticizers. To better understand them, a detailed theoretical investigation was carried out using density functional theory and molecular mechanics methods. The crystal structures, spectra, thermodynamic properties, heats of formation, detonation velocity, detonation pressure, specific impulse and thermal stability were estimated. Possible initiation steps of pyrolysis were discussed by considering the bond breaking of N-NO₂, C-N₃, and N-N₂ (via hydrogen transfer) for both compounds and the cyclization of the adjacent nitro and azido groups for DATNH. Results show that the rupture of N-NO₂ and N-N₂ (via hydrogen transfer) may happen simultaneously as the initial step of pyrolysis. Both crystals have P-1 symmetry as was observed experimentally. DANP has higher stability than DATNH, while DATNH has better detonation performance than DANP. In addition, DANP has a lower while DATNH has a higher specific impulse than RDX, which shows their prospects as propellant components."	"Insensitive nitrogen-rich materials incorporating the nitroguanidyl functionality. A new class of nitroguanidyl-functionalized nitrogen-rich materials derived from 1,3,5-triazine and 1,2,4,5-tetrazine was synthesized through reactions between N-nitroso-N'-alkylguanidines and the hydrazine derivatives of 1,3,5-triazine or 1,2,4,5-tetrazine. These compounds were fully characterized using multinuclear NMR and IR spectroscopies, elemental analysis, and differential scanning calorimetry (DSC). The heats of formation for all compounds were calculated with Gaussian 03 and then combined with experimental densities to determine the detonation pressures (P) and velocities (Dv) of the energetic materials. Interestingly, some of the compounds exhibit an energetic performance (P and Dv) comparable to that of RDX, thus holding promise for application as energetic materials."	"Microscopic characterization of defect structure in RDX crystals. Three batches of the commercial energetic material RDX, as received from various production locations and differing in sensitivity towards shock initiation, have been characterized with different microscopic techniques in order to visualize the defect content in these crystals. The RDX crystals are embedded in an epoxy matrix and cross-sectioned. By a treatment of grinding and polishing of the crystals, the internal defect structure of a multitude of energetic crystals can be visualized using optical microscopy, scanning electron microscopy and confocal scanning laser microscopy. Earlier optical micrographs of the same crystals immersed in a refractive index matched liquid could visualize internal defects, only not in the required detail. The combination of different microscopic techniques allows for a better characterization of the internal defects, down to inclusions of approximately 0.5 μm in size. The defect structure can be correlated to the sensitivity towards a high-amplitude shock wave of the RDX crystals embedded in a polymer bonded explosive. The obtained experimental results comprise details on the size, type and quantity of the defects. These details should provide modellers with relevant and realistic information for modelling defects in energetic materials and their effect on the initiation and propagation of shock waves in PBX formulations."	"Optimizing accu time-of-flight/direct analysis in real time for explosive residue analysis. The use of a direct analysis in real time (DART) mass spectrometer (MS) instrument was optimized for 22 compounds of organic explosive residues to provide a guide for DART-MS users in rapid screening of explosive compounds. Samples were introduced as neat solutions and sequential dilutions to determine optimal instrument conditions and lowest concentration detectable. Most compounds were optimized to 250°C in the negative ion mode, and several compounds benefited from the addition of a chloride dopant from methylene chloride (amino-dinitrotoluenes, RDX, EGDN, and PETN). Few compounds were more sensitive in the positive ion mode (TEGDN, DEGDN, HNS, and DMNB). Mixtures of compounds were detected using clean room wipes, directly from their surfaces and from subsequent extractions. Compounds from the mixtures were also successfully detected in soil and from swipes of spiked surfaces. The instrument showed merit in detection of pg/μL solutions for most of the compounds and among the substrates tested."	"Ambient pressure laser desorption and laser-induced acoustic desorption ion mobility spectrometry detection of explosives. The development of fast, mobile, and sensitive detection systems for security-relevant substances is of enormous importance. Because of the low vapor pressures of explosives and improvised explosive devices, adequate sampling procedures are crucial. Ion mobility spectrometers (IMSs) are fast and sensitive instruments that are used as detection systems for explosives. Ambient pressure laser desorption (APLD) and ambient pressure laser-induced acoustic desorption (AP-LIAD) are new tools suitable to evaporate explosives in order to detect them in the vapor phase. Indeed, the most important advantage of APLD or AP-LIAD is the capability to sample directly from the surface of interest without any transfer of the analyte to other surfaces such as wipe pads. A much more gentle desorption, compared to classical thermal-based desorption, is possible with laser-based desorption using very short laser pulses. With this approach the analyte molecules are evaporated in a very fast process, comparable to a shock wave. The thermal intake is reduced considerably. The functionality of APLD and AP-LIAD techniques combined with a hand-held IMS system is shown for a wide range of common explosives such as EGDN (ethylene glycol dinitrate), urea nitrate, PETN (pentaerythritol tetranitrate), HMTD (hexamethylene triperoxide diamine), RDX (hexogen), tetryl (2,4,6-trinitrophenylmethylnitramine), and TNT (trinitrotoluene). Detection limits down to the low nanogram range are obtained. The successful combination of IMS detection and APLD/AP-LIAD sampling is shown. "	"Direct real-time detection of vapors from explosive compounds. The real-time detection of vapors from low volatility explosives including PETN, tetryl, RDX, and nitroglycerine along with various compositions containing these substances was demonstrated. This was accomplished with an atmospheric flow tube (AFT) using a nonradioactive ionization source coupled to a mass spectrometer. Direct vapor detection was accomplished in less than 5 s at ambient temperature without sample preconcentration. The several seconds of residence time of analytes in the AFT provided a significant opportunity for reactant ions to interact with analyte vapors to achieve ionization. This extended reaction time, combined with the selective ionization using the nitrate reactant ions (NO3(-) and NO3(-)·HNO3), enabled highly sensitive explosives detection from explosive vapors present in ambient laboratory air. Observed signals from diluted explosive vapors indicated detection limits below 10 ppqv using selected ion monitoring (SIM) of the explosive-nitrate adduct at m/z 349, 378, 284, and 289 for tetryl, PETN, RDX, and NG, respectively. Also provided is a demonstration of the vapor detection from 10 different energetic formulations sampled in ambient laboratory air, including double base propellants, plastic explosives, and commercial blasting explosives using SIM for the NG, PETN, and RDX product ions. "	"Stabilization of speckle-type POZ protein (Spop) by Daz interacting protein 1 (Dzip1) is essential for Gli turnover and the proper output of Hedgehog signaling. The Hedgehog (Hh) pathway is essential for embryonic development and adult tissue homeostasis. The Gli/Cubitus interruptus (Ci) family of transcription factors acts at the downstream end of the pathway to mediate Hh signaling. Both Hh-dependent and -independent Gli regulatory mechanisms are important for the output of Hh signaling. Daz interacting protein 1 (Dzip1) has bipartite positive and negative functions in the Hh pathway. The positive Hh regulatory function appears to be attributed to a requirement for Dzip1 during ciliogenesis. The mechanism by which Dzip1 inhibits Hh signaling, however, remains largely unclear. We recently found that Dzip1 is required for Gli turnover, which may account for its inhibitory function in Hh signaling. Here, we report that Dzip1 regulates Gli/Ci turnover by preventing degradation of speckle-type POZ protein (Spop), a protein that promotes proteasome-dependent turnover of Gli proteins. We provide evidence that Dzip1 regulates the stability of Spop independent of its function in ciliogenesis. Partial knockdown of Dzip1 to levels insufficient for perturbing ciliogenesis, sensitized Xenopus embryos to Hh signaling, leading to phenotypes that resemble activation of Hh signaling. Importantly, overexpression of Spop was able to restore proper Gli protein turnover and rescue phenotypes in Dzip1-depleted embryos. Consistently, depletion of Dzip1 in Drosophila S2 cells destabilized Hh-induced BTB protein (HIB), the Drosophila homolog of Spop, and increased the level of Ci. Thus, Dzip1-dependent stabilization of Spop/HIB is evolutionarily conserved and essential for proper regulation of Gli/Ci proteins in the Hh pathway. "	"Pilot-scale in situ bioremediation of HMX and RDX in soil pore water in Hawaii. A nine-month in situ bioremediation study was conducted in Makua Military Reservation (MMR) in Oahu, Hawaii (USA) to evaluate the potential of molasses to enhance biodegradation of royal demolition explosive (RDX) and high-melting explosive (HMX) contaminated soil below the root zone. MMR has been in operation since the 1940's resulting in subsurface contamination that in some locations exceeds USEPA preliminary remediation goals for these chemicals. A molasses-water mixture (1 : 40 dilution) was applied to a treatment plot and clean water was applied to a control plot via seven flood irrigation events. Pore water samples were collected from 12 lysimeters installed at different depths in 3 boreholes in each test plot. The difference in mean concentrations of RDX in pore water samples from the two test plots was very highly significant (p &lt; 0.001). The concentrations differences with depth were also very highly significant (p &lt; 0.001) and degradation was greatly enhanced at depths from 5 to 13.5 ft. biodegradation was modeled as first order and the rate constant was 0.063 per day at 5 ft and decreased to 0.023 per day at 11 ft to 13.5 ft depth. Enhanced biodegradation of HMX was also observed in molasses treated plot samples but only at a depth of 5 ft. The difference in mean TOC concentration (surrogate for molasses) was highly significant with depth (p = 0.003) and very highly significant with treatment (p &lt; 0.001). Mean total nitrogen concentrations also differed significantly with treatment (p &lt; 0.001) and depth (p = 0.059). The molasses water mixture had a similar infiltration rate to that of plain water (average 4.12 ft per day) and reached the deepest sensor (31 ft) within 5 days of application. Most of the molasses was consumed by soil microorganisms by about 13.5 feet below ground surface and treatment of deeper depths may require greater molasses concentrations and/or more frequent flood irrigation. Use of the bioremediation method described herein could allow the sustainable use of live fire training ranges by enhancing biodegradation of explosives in situ and preventing them from migrating to through the vadose zone to underlying ground water and off-site. "	"Desensitization of TNAZ via Molecular Structure Modification and Explosive Properties - A DFT Study. TNAZ (1,3,3-trinitroazetidine) is a highly nitrated four membered nitrogen heterocyclic ring with greater performance when compared to melt castable explosive, TNT (trinitrotoluene). Desensitization of explosives is a significant area in military use. One current method is to use additives and coatings for explosives, as in the case of RDX. Another tactic would be to attempt small molecular level chemical changes in the explosive that bring the expected decrease in sensitivity without noteworthy loss in performance. TNAZ has three nitro groups. We thought that conversion of the nitro groups to nitroso and amine groups may decrease the sensitivity. We have correlated the bond dissociation energies with sensitivity and h50 values obtained from Keshavarz relations. We have also investigated chemical hardness and Mulliken electronegativities employing the frontier molecular orbitals. Furthermore, the explosive properties, i.e. detonation velocity (D), and detonation pressure (P) have been questioned by using both Kamlet-Jacobs equations and Keshavarz relations. Detonation products and power index values have also been calculated. We have proved that molecular modification is an operative method in desensitization of TNAZ. "	"Determination of nitroaromatic and nitramine type energetic materials in synthetic and real mixtures by cyclic voltammetry. Nitro-explosives contain reducible aromatic -NO2 groups or cyclic &gt;N-NO2 bonds that may undergo reductive cleavage. This work reports the development of a cyclic voltammetric (CV) assay for nitro-aromatics (trinitrotoluene (TNT), dinitrotoluene (DNT)) and nitramines (1,3,5-trinitro-1,3,5-triazacyclohexane (RDX) and octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine (HMX)) using a glassy carbon electrode. This determination was first used for these energetic materials by resolving current responses of reduction potentials primarily due to one constituent but partly contributed by other constituents. Calibration curves of current intensity versus concentration were linear in the range of 30-120 mg L(-1) for RDX with a limit of detection (LOD) of 10.2 mg L(-1), 40-120 mg L(-1) for HMX (LOD=11.7 mg L(-1)), 40-120 mg L(-1) for TNT (LOD=11.2 mg L(-1)), and 40-140 mg L(-1) for DNT (LOD=10.8 mg L(-1)). Results showed that the CV method could provide a sensitive approach for the simultaneous determination of RDX and TNT in synthetic and real mixtures. Deconvolution of current contributions of mixtures at peak potentials of constituents was performed by multiple linear regression. The proposed method was successfully applied to the analysis of military explosives comp A5 and octol, and method validation was performed both against HPLC on a comp B (TNT+RDX) sample and against GC-MS on real post-blast residual samples containing both explosives."	"Perchlorate contamination from the detonation of insensitive high-explosive rounds. The insensitive high-explosive PAX-21 was the first of its kind fielded in an artillery munition by the United States military. This formulation contains three main components: RDX, dinitroanisole, and ammonium perchlorate (AP). In March 2012, detonation tests were conducted on PAX-21 60mm mortar rounds to determine the energetic residues resulting from high-order and blow-in-place (BIP) detonations. Post-detonation residues were sampled and analyzed for the three main PAX-21 components. Concentrations of RDX and dinitroanisole in the samples were quite low, less than 0.1% of the munitions' original organic explosive filler mass, indicating high order or near high order detonations. However, disproportionately high concentrations of AP occurred in all residues. The residues averaged 15% of the original AP following high-order detonations and 38% of the original AP mass following the BIP operations. There was no correlation between AP residues and the RDX and dinitroanisole. Perchlorate readily leached from the detonation residues, with over 99% contained in the aqueous portion of the samples. Use of these rounds will result in billions of liters of water contaminated above drinking water perchlorate limits. As a result of this research, PAX-21 mortar rounds are currently restricted from use on US training ranges. "	"Synergetic toxic effect of an explosive material mixture in soil. Explosives materials are stable in soil and recalcitrant to biodegradation. Different authors report that TNT (2,4,6-trinitrotoluene), RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) and HMX (octahydro-1,3,5,7-tetranitro-1,3,5,7-tetrazocine) are toxic, but most investigations have been performed in artificial soil with individual substances. The aim of the presented research was to assess the toxicity of forest soil contaminated with these substances both individually as well in combinations of these substances. TNT was the most toxic substance. Although RDX and HMX did not have adverse effects on plants, these compounds did cause earthworm mortality, which has not been reported in earlier research. Synergistic effects of explosives mixture were observed."	"Screening biomarkers of prostate cancer by integrating microRNA and mRNA microarrays. In this study, we screened microRNA (miRNA) target genes of prostate cancer by integrating miRNA and mRNA expression profiles after target prediction and performed function enrichment analysis for selected candidate genes. The miRNA expression profile (GSE36802) and mRNA expression profile (GSE36801) were downloaded from the Gene Expression Omnibus database. We processed data and identified the differentially expressed miRNAs and mRNAs with R packages. Verified targets of miRNAs were identified through miRecods and miRTarBase. Then, software of Search Tool for the Retrieval of Interacting Genes was used to construct the interaction network of target genes. Finally, we performed function enrichment analysis for genes in the interaction network with the Functional Classification Tool. A total of 22 upregulated and 8 downregulated miRNAs were detected in this study, of which, hsa-mir-31 was the most overexpressed miRNA in prostate cancer. Both ITGA5 and RDX, two target genes of hsa-mir-31, were found to be differentially expressed from mRNA profiles by overexpressing hsa-mir-31. The cell adhesion molecule was found to be the most significant pathway enriched by ITGA5 and RDX. Overexpression of hsa-mir-31 can be a significant marker to distinguish cancer tissues from benign tissues. The targets such as ITGA5 and RDX regulated by hsa-mir-31 are candidate genes of prostate cancer, which provide new treatment strategies for its gene therapy."	"Soil properties affect the toxicities of 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) to the enchytraeid worm Enchytraeus crypticus. The authors investigated individual toxicities of 2,4,6-trinitrotoluene (TNT) and hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) to the potworm Enchytraeus crypticus using the enchytraeid reproduction test. Studies were designed to generate ecotoxicological benchmarks that can be used for developing ecological soil-screening levels for ecological risk assessments of contaminated soils and to identify and characterize the predominant soil physicochemical parameters that can affect the toxicities of TNT and RDX to E. crypticus. Soils, which had a wide range of physicochemical parameters, included Teller sandy loam, Sassafras sandy loam, Richfield clay loam, Kirkland clay loam, and Webster clay loam. Analyses of quantitative relationships between the toxicological benchmarks for TNT and soil property measurements identified soil organic matter content as the dominant property mitigating TNT toxicity for juvenile production by E. crypticus in freshly amended soil. Both the clay and organic matter contents of the soil modulated reproduction toxicity of TNT that was weathered and aged in soil for 3 mo. Toxicity of RDX for E. crypticus was greater in the coarse-textured sandy loam soils compared with the fine-textured clay loam soils. The present studies revealed alterations in toxicity to E. crypticus after weathering and aging TNT in soil, and these alterations were soil- and endpoint-specific."	"A DFT study of adsorption and decomposition of hexahydro-1,3,5-trinitro-1,3,5-triazine on Mg(0001) surface. The adsorption and decomposition of hexogen (RDX) molecule on the Mg(0001) surface were investigated by the generalized gradient approximation (GGA) of density functional theory (DFT). The calculations employed a supercell (4 × 4 × 4) slab model and three-dimensional periodic boundary conditions. The strong attractive forces between RDX molecule and magnesium atoms induce the RDX's N - O bond breaking. Subsequently, the dissociated oxygen atoms and radical fragment of RDX oxidize the Mg surface. The largest adsorption energy is -2104.0 kJ mol(-1). We also investigated the decomposition mechanism of RDX molecule on the Mg(0001) surface. The activation energy for the dissociation step of configuration V4 is as small as 2.5 kJ mol(-1), while activation energies of other configurations are much larger, in the range of 964.9-1375.1 kJ mol(-1). Mg powder is more active than Al powder, and Mg powder performs better in increasing the combustion exothermicity of RDX as well."	"Desorption electro-flow focusing ionization of explosives and narcotics for ambient pressure mass spectrometry. Desorption electro-flow focusing ionization (DEFFI), a desorption-based ambient ion source, was developed, characterized, and evaluated as a possible source for field deployable ambient pressure mass spectrometry (APMS). DEFFI, based on an electro-flow focusing system, provides a unique configuration for the generation of highly charged energetic droplets for sample analysis and ionization. A concentrically flowing carrier gas focuses the liquid emanating from a capillary through a small orifice, generating a steady fluid jet. An electric field is applied across this jet formation region, producing high velocity charged droplets that impinge on an analyte laden surface. This configuration separates the jet charging region from the external environment, eliminating detrimental effects from droplet space charge or target surface charging. The sample desorption and ionization processes operate similar to desorption electrospray ionization (DESI). DEFFI demonstrated strong signal intensities and improved signal-to-noise ratios in both positive and negative mode mass spectrometry for narcotics, i.e., cocaine, and explosives, i.e., cyclotrimethylenetrinitramine (RDX), respectively. A characterization of DEFFI ionization mechanisms identified operation regimes of both electrospray and corona discharge based analyte ionization, as well as limitations in overall signal. In addition, the DEFFI response was directly compared to DESI-MS under similar operating conditions. This comparison established a wider and more stable optimal operating range, while requiring an order of magnitude lower applied gas pressure and applied potential for DEFFI than DESI. These reductions are due to the physical mode of jet formation and geometric configuration differences between DEFFI and DESI, pointing to a potential benefit of DEFFI-MS for field implementation. "	"New roles for 1,1-diamino-2,2-dinitroethene (FOX-7): halogenated FOX-7 and azo-bis(diahaloFOX) as energetic materials and oxidizers. The syntheses and full characterization of two new halogenated 1,1-diamino-2,2-dinitroethene (FOX-7) compounds and three halogenated azo-bridged FOX-7 derivatives are described. Some of these new structures demonstrate properties that approach those of the commonly used secondary explosive RDX (cyclo-1,3,5-trimethylene-2,4,6-trinitramine). All the compounds display hypergolic properties with common hydrazine-based fuels and primary aliphatic amines (ignition delay times of 2-53 ms). This is a new role that has yet to be reported for FOX-7 and its derivatives. Their physical and energetic properties have been investigated. All compounds were characterized by single-crystal X-ray crystallography, elemental analysis, infrared spectra, and differential scanning calorimetry. These new molecules as energetic materials and hypergolic oxidizers contribute to the expansion of the chemistry of FOX-7. "	"Identification of microbial populations assimilating nitrogen from RDX in munitions contaminated military training range soils by high sensitivity stable isotope probing. The leaching of RDX (hexahydro-1,3,5-trinitro-1,3,5-triazine) from particulates deposited in live-fire military training range soils contributes to significant pollution of groundwater. In situ microbial degradation has been proposed as a viable method for onsite containment of RDX. However, there is only a single report of RDX degradation in training range soils and the soil microbial communities involved in RDX degradation were not identified. Here we demonstrate aerobic RDX degradation in soils taken from a target area of an Eglin Air Force Base bombing range, C52N Cat's Eye, (Eglin, Florida U.S.A.). RDX-degradation activity was spatially heterogeneous (found in less than 30% of initial target area field samples) and dependent upon the addition of exogenous carbon sources to the soils. Therefore, biostimulation (with exogenous carbon sources) and bioaugmentation may be necessary to sustain timely and effective in situ microbial biodegradation of RDX. High sensitivity stable isotope probing analysis of extracted soils incubated with fully labeled (15)N-RDX revealed several organisms with (15)N-labeled DNA during RDX-degradation, including xplA-bearing organisms. Rhodococcus was the most prominent genus in the RDX-degrading soil slurries and was completely labeled with (15)N-nitrogen from the RDX. Rhodococcus and Williamsia species isolated from these soils were capable of using RDX as a sole nitrogen source and possessed the genes xplB and xplA associated with RDX-degradation, indicating these genes may be suitable genetic biomarkers for assessing RDX degradation potential in soils. Other highly labeled species were primarily Proteobacteria, including: Mesorhizobium sp., Variovorax sp., and Rhizobium sp. "	"Molecular dynamics study of the pressure-dependent terahertz infrared absorption spectrum of α- and γ-RDX. Terahertz infrared absorption spectra of the α and γ polymorphs of 1,3,5-trinitro-1,3,5-triazacyclohexane (RDX) were predicted using two different theoretical approaches based on molecular dynamics simulations. The thermodynamic conditions studied were T = 298 K and hydrostatic pressures P = 0.0, 1.0, and 2.0 GPa for α-RDX and P = 3.0, 5.2, and 7.0 GPa for γ-RDX. The spectra obtained using the two methods are similar but not identical. In the case of α-RDX for pressure P = 0.0 GPa both spectra agree reasonably well with experimental data. The predicted spectra for α-RDX exhibit red-shifting (mode softening) of the main absorption peak with increasing pressure while for γ-RDX the spectra exhibit overall blue-shifting with increasing pressure. "	"Trace analysis of energetic materials via direct analyte-probed nanoextraction coupled to direct analysis in real time mass spectrometry. Direct analysis in real time mass spectrometry (DART-MS) has proven to be a useful forensic tool for the trace analysis of energetic materials. While other techniques for detecting trace amounts of explosives involve extraction, derivatization, solvent exchange, or sample clean-up, DART-MS requires none of these. Typical DART-MS analyses directly from a solid sample or from a swab have been quite successful; however, these methods may not always be an optimal sampling technique in a forensic setting. For example, if the sample were only located in an area which included a latent fingerprint of interest, direct DART-MS analysis or the use of a swab would almost certainly destroy the print. To avoid ruining such potentially invaluable evidence, another method has been developed which will leave the fingerprint virtually untouched. Direct analyte-probed nanoextraction coupled to nanospray ionization-mass spectrometry (DAPNe-NSI-MS) has demonstrated excellent sensitivity and repeatability in forensic analyses of trace amounts of illicit drugs from various types of surfaces. This technique employs a nanomanipulator in conjunction with bright-field microscopy to extract single particles from a surface of interest and has provided a limit of detection of 300 attograms for caffeine. Combining DAPNe with DART-MS provides another level of flexibility in forensic analysis, and has proven to be a sufficient detection method for trinitrotoluene (TNT), RDX, and 1-methylaminoanthraquinone (MAAQ)."	"A Study of 5-(1,2,4-Triazol-C-yl)tetrazol-1-ols: Combining the Benefits of Different Heterocycles for the Design of Energetic Materials. The synthesis and full structural and spectroscopic characterization of three 5-(1,2,4-triazol-C-yl)tetrazol-1-ol compounds with selected energetic moieties including nitrimino (5), nitro (6) and azido (7) groups are reported. The influence of those energetic moieties as well as the C-C connection of a tetrazol-1-ol and a 1,2,4-triazole on structural and energetic properties has been investigated. All compounds were well characterized by various means, including IR and multinuclear NMR spectroscopy, mass spectrometry, and DSC. The molecular structures of 5-8 were determined in the solid state by single-crystal X-ray diffraction. The standard heats of formation were calculated on the CBS-4M level of theory utilizing the atomization energy method, revealing highly positive values for all compounds. The detonation parameters were calculated with the EXPLO5 program and compared to the common secondary explosive RDX. Additionally, sensitivities towards impact, friction and electrostatic discharge were determined."	"Study on steric transition in asymmetrical flow field-flow fractionation and application to characterization of high-energy material. In field-flow fractionation (FFF), there is the 'steric transition' phenomenon where the sample elution mode changes from the normal to steric/hyperlayer mode. Accurate analysis by FFF requires understanding of the steric transition phenomenon, particularly when the sample has a broad size distribution, for which the effect by combination of different modes may become complicated to interpret. In this study, the steric transition phenomenon in asymmetrical flow FFF (AF4) was studied using polystyrene (PS) latex beads. The retention ratio (R) gradually decreases as the particle size increases (normal mode) and reaches a minimum (Ri) at diameter around 0.5μm, after which R increases with increasing diameter (steric/hyperlayer mode). It was found that the size-based selectivity (Sd) tends to increase as the channel thickness (w) increases. The retention behavior of cyclo-1,3,5-trimethylene-2,4,6-trinitramine (commonly called 'research department explosive' (RDX)) particles in AF4 was investigated by varying experimental parameters including w and flow rates. AF4 showed a good reproducibility in size determination of RDX particles with the relative standard deviation of 4.1%. The reliability of separation obtained by AF4 was evaluated by transmission electron microscopy (TEM). "	"Clinical impact of diagnostic imaging discrepancy by radiology trainees in an urban teaching hospital emergency department. To characterize clinically significant diagnostic imaging (DI) discrepancies by radiology trainees and the impact on emergency department (ED) patients. Consecutive case series methodology over a 6-month period in an urban, tertiary care teaching hospital. Emergency physicians (EPs) were recruited to flag discrepant DI interpretations by radiology trainees that the EP deemed clinically significant. Cases were characterized using chart review and EP interview. Twenty-eight discrepant reports were identified (representing 0.1% of 18,185 images interpreted). The mean time between provisional discrepant diagnosis (PDDx) and revised diagnosis (RDx) by attending radiology staff was 8.6 h (median 4.8 h, range 1.1-48.4), and 67.9% (n = 19) of the patients had left the ED by time of notification. The most frequently reported PDDx was CT abd/pelvis (32.1%, n = 9) and CT head (28.6%, n = 8). The impact of RDx was deemed major in 57.1% (n = 16) for reasons including altered admitting status (32.1%, n = 9), immediate subspecialty referral (n = 16, 57.1%), impact on management (25%, n = 7), and surgical management (21.4%, n = 6). EPs reported likely perceived impact of PDDx as resulting in increased pain (17. 9%, n = 5), morbidity (10.7%, n = 3), and prolonged hospitalization (25%, n = 7), but not altered long-term outcome or mortality. Relatively few clinically important discrepant reads were reported. Revised diagnosis (RDx) was associated with major clinical impact in 57.1% of reports, but few patients experienced increased morbidity, and none increased mortality. The importance of expedient communication of discrepant reports by staff radiologists is stressed, as is EP verification of patient contact information prior to discharge."	"Influence of molecular structure on the laser-induced plasma emission of the explosive RDX and organic polymers. A series of organic polymers and the military explosive cyclotrimethylenetrinitramine (RDX) were studied using the light emission from a femtosecond laser-induced plasma under an argon atmosphere. The relationship between the molecular structure and plasma emission was established by using the percentages of the atomic species (C, H, N, O) and bond types (C-C, C═C, C-N, and C≡N) in combination with the atomic/molecular emission intensities and decay rates. In contrast to previous studies of organic explosives in which C2 was primarily formed by recombination, for the organic materials in this study the percentage of C-C (and C═C) bonds was strongly correlated to the molecular C2 emission. Time-resolved emission spectra were collected to determine the lifetimes of the atomic and molecular species in the plasma. Observed differences in decay rates were attributed to the differences in both the molecular structure of the organic polymers or RDX and the chemical reactions that occur within the plasma. These differences could potentially be exploited to improve the discrimination of explosive residues on organic substrates with laser-induced breakdown spectroscopy. "	"Interleukin-6 expression under gravitational stress due to vibration and hypergravity in follicular thyroid cancer cells. It is known that exposing cell lines in vitro to parabolic flights changes their gene expression and protein production patterns. Parabolic flights and spaceflight in general are accompanied by transient hypergravity and vibration, which may impact the cells and therefore, have to be considered too. To estimate the possible impact of transient hypergravity and vibration, we investigated the effects of these forces separately using dedicated ground-based facilities. We placed follicular thyroid ML-1 and CGTH W-1 cancer cells in a specific centrifuge (MuSIC Multi Sample Incubator Centrifuge; SAHC Short Arm Human Centrifuge) simulating the hypergravity phases that occur during one (P1) and 31 parabolas (P31) of parabolic flights, respectively. On the Vibraplex device, the same cell lines were treated with vibration waves corresponding to those that occur during a whole parabolic flight lasting for two hours. After the various treatments, cells were harvested and analyzed by quantitative real-time PCR, focusing on the genes involved in forming (ACTB, MYO9, TUBB, VIM, TLN1, and ITGB1) and modulating (EZR, RDX, and MSN) the cytoskeleton, as well as those encoding growth factors (EGF, CTGF, IL6, and IL8) or protein kinases (PRKAA1 and PRKCA). The analysis revealed alterations in several genes in both cell lines; however, fewer genes were affected in ML-1 than CGTH W-1 cells. Interestingly, IL6 was the only gene whose expression was changed in both cell lines by each treatment, while PKCA transcription remained unaffected in all experiments. We conclude that a PKCa-independent mechanism of IL6 gene activation is very sensitive to physical forces in thyroid cells cultured in vitro as monolayers. "	"Electron shuttle-mediated biotransformation of hexahydro-1,3,5-trinitro-1,3,5-triazine adsorbed to granular activated carbon. Granular activated carbon (GAC) effectively removes hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX) from groundwater but generates RDX-laden GAC that must be disposed of or regenerated. Batch reactors containing GAC to which RDX was preadsorbed were used in experiments to test the potential for adsorbed RDX reduction and daughter product formation using (i) chemically reduced anthrahydroquinone-2,6-disulfonate (AH2QDS), (ii) resting Geobacter metallireducens strain GS-15, and (iii) a combined system containing AQDS and GS-15. Approximately 97.0% of the adsorbed RDX was transformed in each of these experimental systems by 90 h. Chemically reduced AQDS (AH2QDS) transformed 99.2% of adsorbed RDX; formaldehyde was produced rapidly and was stoichiometric (3 mol HCHO per mol RDX). Geobacter metallireducens also reduced RDX with and without AQDS present. This is the first study to demonstrate biological transformation of RDX adsorbed to GAC. Formaldehyde increased and then decreased in biological systems, suggesting a previously unreported capacity for G. metallireducens to oxidize formaldehyde, which was confirmed with resting cell suspensions. These data suggest the masses of GAC waste currently produced by activated carbon at RDX remediation sites can be minimized, decreasing the carbon footprint of the treatment technology. Alternatively, this strategy may be used to develop a Bio-GAC system for ex situ RDX treatment. "	"Understanding ultrafine nanodiamond formation using nanostructured explosives. The detonation process is able to build new materials with a bottom-up approach. Diamond, the hardest material on earth, can be synthesized in this way. This unconventional synthesis route is possible due to the presence of carbon inside the high-explosive molecules: firing high-explosive mixtures with a negative oxygen balance in a non-oxidative environment leads to the formation of nanodiamond particles. Trinitrotoluene (TNT) and hexogen (RDX) are the explosives primarily used to synthesize nanodiamonds. Here we show that the use of nanostructured explosive charges leads to the formation of smaller detonation nanodiamonds, and it also provides new understanding of nanodiamond formation-mechanisms. The discontinuity of the explosive at the nanoscale level plays the key role in modifying the diamond particle size, and therefore varying the size with microstructured charges is impossible. "	"Mobility of 2-amino-4,6-dinitrobenzoic acid, a photodegradation product of TNT in a tropical soil under saturated abiotic conditions. We examined the mobility of 2-amino-4,6-dinitrobenzoic acid (2-A-4,6-DBA) a common photodegradation product of TNT, in soil taken from a former military training area on Oahu Island, Hawaii, USA. 2-A-4,6-DBA is stable and polar and has the potential to migrate to groundwater. Little experimentation has been conducted on explosives in tropical soils which differ chemically from soils in temperate climates. 2,4,6-Trinitrotoluene (TNT) and 1,3,5-hexahydro-1,3,5-trinitrotriazine (RDX) are the most commonly used secondary military explosives. Composition B (Comp B) is a frequently used 59/40/1 combination of RDX, TNT, and wax binder. In order to examine the effect of the presence of Comp B and its degradation products on the mobility of 2-A-4,6-DBA in soil, we dissolved field-collected Comp B fragments in water, exposed the solution to light and pumped it through soil and sand-packed stainless steel columns under abiotic saturated conditions. We found that in the presence of a complex mixture of explosives and degradation products, 2-A-4,6-DBA migrated faster than the parent compound (TNT) and other degradation products through both tropical soil and Ottawa sand (used as a reference) under sterile saturated conditions. The relatively rapid movement of 2-A-4,6-DBA suggests that it has the potential to contaminate underlying groundwater. However, the amount of 2-A-4,6-DBA produced under field conditions and its rate of biotic degradation were not part of this research, therefore, it is unknown how these factors might affect the transport and fate of 2-A-4,6-DBA. "	"Organic-Inorganic Hybrid Mesoporous Materials as Regenerable Sensing Systems for the Recognition of Nitroaromatic Explosives. Fluorescent organic-inorganic mesoporous hybrid materials have been prepared and characterised, and their behaviour against nitroaromatic explosives have been tested. MCM-41 silica was used as an inorganic scaffold and pyrene (P derivative containing trialkoxysilane moieties), dansyl and fluorescein (D and F derivatives also containing trialkoxysilane groups, respectively) fluorophores have been anchored on hybrid materials by a co-condensation method to obtain a homogenous distribution of dyes into the pores of the support. Six sensing materials have been prepared, of which SP, SD, SF were hydrophilic and SPh, SDh, SFh were hydrophobic. Template-free hydrophilic materials (SP, SD, SF) were obtained after repeated NH4 NO3 /ethanol extractions under temperature from as-synthesised (MP, MD and MF supports, respectively) solids. Hydrophobic materials (SPh, SDh, SFh) were prepared by using excess 1,1,1,3,3,3-hexamethyldisilazane with template-free hydrophilic (SP, SD and SF) materials. The six final materials displayed the typical emission bands of the grafted fluorophores. In particular, SP and SPh show the typical pyrene monomer (370-420 nm) and excimer (430-600 nm) emissions. SD and SDh exhibit the broad dansyl fluorescence band in the 450-600 nm range, whereas solids SF and SFh present sharp fluorescein emission centred at 525 nm. The fluorescent behaviour of the six final materials was tested in the presence of explosives (pentaerythritol tetranitrate (PETN), hexahydro-1,3,5-trinitro-1,3,5-triazine (RDX), nitrobenzene (NB), 1,3,5-trinitrobenzene (TNB), 2,4,6-trinitrotoluene (TNT), 2,4-dinitrotoluene (DNT), 2,4,6-trinitrophenylmethylnitramine (Tetryl) and picric acid (PA)). Only nitroaromatic compounds were able to induce emission quenching. As a general trend, the quenching degree depended on the nature of the final material. The best response was obtained with explosives PA and Tetryl, which were able to significantly quench the emission of the sensing supports. The observed quenching was ascribed to the π-π stacking interactions between the electron-donor fluorophores and the electron-withdrawing nitroaromatic explosives. When using SPh for Tetryl and PA, the limits of detection were 8.5 and 1.4 ppm, respectively, whereas they were 14.4 and 1.2 ppm for SDh. Principal component analysis algorithms were applied to the fluorescence measurements taken with the six hybrid materials and the seven explosives. The obtained score plot showed well-defined clusters for the seven explosives tested. Finally, solid SDh was applied to detect trace amounts of Tetryl in soil samples with good results."	"Asymmetrically substituted 5,5'-bistriazoles--nitrogen-rich materials with various energetic functionalities. In this contribution the synthesis and full structural and spectroscopic characterization of three asymmetrically substituted bis-1,2,4-triazoles, along with different energetic moieties like amino, nitro, nitrimino and azido moieties, is presented. Additionally, selected nitrogen-rich ionic derivatives have been prepared and characterized. This comparative study on the influence of these energetic moieties on structural and energetic properties constitutes a complete characterization including IR, Raman and multinuclear NMR spectroscopy. Single crystal X-ray crystallographic measurements were performed and provide insight into structural characteristics as well as inter- and intramolecular interactions. The standard enthalpies of formation were calculated for all compounds at the CBS-4M level of theory, revealing highly positive heats of formation for all compounds. The detonation parameters were calculated using the EXPLO5 program and compared to the common secondary explosive RDX as well as recently published symmetric bistriazoles. As expected, the measured sensitivities to mechanical stimuli and decomposition temperatures strongly depend on the energetic moiety of the triazole ring. All compounds were characterized in terms of sensitivities (impact, friction, electrostatic) and thermal stabilities, the ionic derivatives were found to be thermally stable, insensitive compounds. "	"Non-contact halogen lamp heating assisted LTP ionization miniature rectilinear ion trap: a platform for rapid, on-site explosives analysis. A platform consisting of a halogen lamp, a low temperature plasma (LTP) probe, and a miniature rectilinear ion trap mass spectrometer (RIT-MS) has been constructed and evaluated to detect organic and inorganic explosives on solid surfaces. This platform features two attractive characteristics: high sensitivity for the explosives with low volatility, and rapid analysis speed for the explosives on large surface areas. With non-contact heating by the halogen lamp, the signal intensities for the explosives with relatively high volatility were improved by over an order of magnitude, compared to those obtained at room temperature; and even more, the explosives with low volatility, which could hardly be detected at room temperature, were able to be readily identified. The limits of detection (LODs) of the selected explosives were all at the picogram level (e.g., 10 pg and 20 pg for TNT and RDX, respectively) with a heating time of 3 s. Using manual surface swabbing, the analysis of explosives on a large surface area (7.5 cm × 2.5 cm) was accomplished within 10 s, and an acceptable sensitivity could be acquired; additionally, inorganic explosives (black powder and firecracker) were successfully detected. Without any sample pretreatment, the platform was used to analyze the wastewater from an explosives factory, confirming the existence of 2,4,6-trinitrotoluene (TNT), 2,4-dinitrotoluene (2,4-DNT), and 2,6-dinitrotoluene (2,6-DNT), and the concentration of TNT was determined to be 5 ng mL(-1). All these results indicated that the proposed platform was a promising technique for security monitoring and environmental analysis. "	NA	NA
+"S1PR2"	"nonsyndromic genetic deafness"	"Hepatoxicity mechanism of cantharidin-induced liver LO2 cells by LC-MS metabolomics combined traditional approaches. Hepatotoxicity induced by Mylabris has been reported in both clinical and animal experiments. Cantharidin (CTD), the main active compound of Mylabris was responsible for the hepatotoxicity, which aroused widespread concern. However, the mechanism of CTD hepatotoxicity remained unclear. In this study, LO2 cells were exposed to two doses of CTD (6.25 and 25 μM) for 12 h, the levels of alanine aminotransferase (ALT), aspartate aminotransferase (AST) and lactate dehydrogenase (LDH) were measured. The metabolites in LO2 cells were profiled by LCMS. Partial least squares discriminant analysis and orthogonal partial least squares discriminant analysis were used for screening potential biomarkers. The MetPA software was used for clustering and pathway analysis. Network pharmacology was used to predict the genes acted with potential biomarkers. Compared with the control group, the levels of ALT, AST, and LDH was significantly increased after CTD treatment. A total of 46 potential biomarkers for hepatotoxicity induced by CTD were identified. And downregulated potential biomarkers reflected the inhibitory effects of CTD toxicity on metabolism of LO2. Moreover, CTD-induced liver toxicity of liver LO2 cells is mainly related to three pathways: cysteine and methionine metabolism; glutathione metabolism; and glycine, serine, and threonine metabolism. Furtherly, the mRNA expression of CES2, DNMT1, NOS1, NOS3, S1PR2, and CES1 screened by network pharmacology were regulated by CTD. These studies provide valuable mechanistic insights into CTD-associated hepatotoxicity that will aid in the development of therapeutic prevention and treatment options for this liver disease."	"Macrophage Sphingosine 1-Phosphate Receptor 2 Blockade Attenuates Liver Inflammation and Fibrogenesis Triggered by NLRP3 Inflammasome. NLR family pyrin domain containing 3 (NLRP3) inflammasome accompanies chronic liver injury and is a critical mediator of inflammation-driven liver fibrosis. Sphingosine 1-phosphate (S1P)/S1P Receptor (S1PR) signaling participates in liver fibrogenesis by affecting bone marrow (BM)-derived monocytes/macrophage (BMM) activation. However, the relationship between S1P/S1PR signaling and NLRP3 inflammasome in BMMs remains unclear. Here, we found significantly elevated gene expression of NLRP3 inflammasome components (NLRP3, pro-interleukin-1β, and pro-interleukin-18) and the activation of NLRP3 inflammasome significantly elevated during murine chronic liver injury induced by a bile duct ligation operation, a methionine-choline-deficient and high-fat diet, or carbon tetrachloride intraperitoneal injection. Moreover, the increased expression of sphingosine kinase 1 (SphK1), the rate-limiting synthetic enzyme of S1P, was positively correlated with NLRP3 inflammasome components in both patients and mouse model livers. Flow cytometry analysis and immunofluorescence staining showed BMMs contributed to the significant proportion of NLRP3<sup>+</sup> cells in murine inflammatory livers, but not Kupffer cells, dendritic cells, endothelial cells, T cells, and hepatocytes. Focusing on macrophages, S1P promoted NLRP3 inflammasome priming and activation in a dose-dependent manner. Blockade of S1PR2 by JTE-013 (antagonist of S1PR2) or S1PR2-siRNA inhibited S1P-induced NLRP3 inflammasome priming and inflammatory cytokine (interleukin-1β and interleukin-18) secretion, whereas blockade of S1PR1 or S1PR3 had no such effect. in vivo, a β1,3-d-glucan-encapsulated siRNA particle (GeRP) delivery system is capable of silencing genes in macrophages specifically. Treatment with S1PR2 siRNA-GeRPs markedly reduced NLRP3 inflammasome priming and activation and attenuated liver inflammation and fibrosis. Together, the conclusions indicated that targeting macrophage S1PR2 retarded liver inflammation and fibrogenesis via downregulating NLRP3 inflammasome, which may represent an effective therapeutic strategy for chronic liver injury."	"Increased S1P induces S1PR2 internalization to blunt the sensitivity of colorectal cancer to 5-fluorouracil via promoting intracellular uracil generation. Sphingosine-1-phosphate (S1P), the backbone of most sphingolipids, activating S1P receptors (S1PRs) and the downstream G protein signaling has been implicated in chemoresistance. In this study we investigated the role of S1PR2 internalization in 5-fluorouracil (5-FU) resistance in human colorectal cancer (CRC). Clinical data of randomly selected 60 CRC specimens showed the correlation between S1PR2 internalization and increased intracellular uracil (P &lt; 0.001). Then we explored the regulatory mechanisms in CRC model of villin-S1PR2<sup>-/-</sup> mice and CRC cell lines. We showed that co-administration of S1P promoted S1PR2 internalization from plasma membrane (PM) to endoplasmic reticulum (ER), thus blunted 5-FU efficacy against colorectal tumors in WT mice, compared to that in S1PR2<sup>-/-</sup> mice. In HCT116 and HT-29 cells, application of S1P (10 μM) empowered S1PR2 to internalize from PM to ER, thus inducing 5-FU resistance, whereas the specific S1PR2 inhibitor JTE-013 (10 μM) effectively inhibited S1P-induced S1PR2 internalization. Using Mag-Fluo-AM-labeling [Ca<sup>2+</sup>]ER and LC-ESI-MS/MS, we revealed that internalized S1PR2 triggered elevating [Ca<sup>2+</sup>]ER levels to activate PERK-eLF2α-ATF4 signaling in HCT116 cells. The activated ATF4 upregulated RNASET2-mediated uracil generation, which impaired exogenous 5-FU uptake to blunt 5-FU therapy. Overall, this study reveals a previously unrecognized mechanism of 5-FU resistance resulted from S1PR2 internalization-upregulated uracil generation in colorectal cancer, and provides the novel insight into the significance of S1PR2 localization in predicting the benefit of CRC patients from 5-FU-based chemotherapy."	"Angiocrine Sphingosine-1-Phosphate Activation of S1PR2-YAP Signaling Axis in Alveolar Type II Cells Is Essential for Lung Repair. Lung alveolar epithelium is composed of alveolar type I (AT1) and type II (AT2) cells. AT1 cells mediate gas exchange, whereas AT2 cells act as progenitor cells to repair injured alveoli. Lung microvascular endothelial cells (LMVECs) play a crucial but still poorly understood role in regulating alveolar repair. Here, we studied the role of the LMVEC-derived bioactive lipid sphingosine-1-phosphate (S1P) in promoting alveolar repair using mice with endothelial-specific deletion of sphingosine kinase 1 (Sphk1), the key enzyme promoting S1P generation. These mutant lungs developed airspace-enlargement lesions and exhibited a reduced number of AT1 cells after Pseudomonas-aeruginosa-induced lung injury. We demonstrated that S1P released by LMVECs acted via its receptor, S1PR2, on AT2 cells and induced nuclear translocation of yes-associated protein (YAP), a regulator of AT2 to AT1 transition. Thus, angiocrine S1P released after injury acts via the S1PR2-YAP signaling axis on AT2 cells to promote AT2 to AT1 differentiation required for alveolar repair."	"Identification of a new functional domain of Nogo-A that promotes inflammatory pain and inhibits neurite growth through binding to NgR1. Nogo-A is a key inhibitory molecule to axon regeneration, and plays diverse roles in other pathological conditions, such as stroke, schizophrenia, and neurodegenerative diseases. Nogo-66 and Nogo-Δ20 fragments are two known functional domains of Nogo-A, which act through the Nogo-66 receptor (NgR1) and sphingosine-1-phosphate receptor 2 (S1PR2), respectively. Here, we reported a new functional domain of Nogo-A, Nogo-A aa 846-861, was identified in the Nogo-A-specific segment that promotes complete Freund's adjuvant (CFA)-induced inflammatory pain. Intrathecal injection of its antagonist peptide 846-861PE or the specific antibody attenuated the CFA-induced inflammatory heat hyperalgesia. The 846-861 PE reduced the content of transient receptor potential vanilloid subfamily member 1 (TRPV1) in dorsal root ganglia (DRG) and decreased the response of DRG neurons to capsaicin. These effects were accompanied by a reduction in LIMK/cofilin phosphorylation and actin polymerization. GST pull-down and fluorescence resonance energy transfer (FRET) assays both showed that Nogo-A aa 846-861 bound to NgR1. Moreover, we demonstrated that Nogo-A aa 846-861 inhibited neurite outgrowth from cortical neurons and DRG explants. We concluded that Nogo-A aa 846-861 is a novel ligand of NgR1, which activates the downstream signaling pathways that inhibit axon growth and promote inflammatory pain."	"Corrigendum to &quot;S1PR2 inhibitors potently reverse 5-FU resistance by downregulating DPD expression in colorectal cancer&quot; [Pharmacol Res. 155 (2020) 104717]. NA"	"Blockage of sphingosine-1-phosphate receptor 2 attenuates 2,4-dinitrochlorobenzene-induced atopic dermatitis in mice. Sphingosine-1-phosphate (S1P) and its receptors have been implicated in functions of Langerhans cells and atopic dermatitis. In this study, we investigated the roles of S1P receptor type 2 (S1P2) in a mouse model of atopic dermatitis, which was induced by topical application of 2,4-dinitrochlorobenzene (DNCB) on ventral skin on D0, followed by repeated DNCB challenge on both ears from D7 to D49. Wild-type mice with atopic dermatitis displayed severe inflammation and mast cell accumulation in ear tissues and elevated IgE levels in serum. Furthermore, the mice showed significantly increased sizes of draining lymph nodes, high levels of inflammatory cytokines (IL-4, IL-13, IL-17, and IFN-γ) in the ears and lymph nodes and high levels of chemokines CCL17 and CCL22 in ears. Administration of JTE-013, a selective antagonist of S1P2 (3 mg/kg, i.p, from D19 to D49) before DNCB challenge significantly suppressed DNCB-induced atopic responses in ears and lymph nodes. JTE-013 administration also significantly decreased the lymph nodes sizes, the levels of inflammatory cytokines (IL-4, IL-13, IL-17, and IFN-γ) in the ears and lymph nodes, and the levels of chemokines CCL17 and CCL22 in ears. Furthermore, the inflammatory responses of atopic dermatitis were greatly ameliorated in S1pr2 gene-deficient mice. As CCL17 and CCL22 are CCR4 ligands, acting as Th2-attracting chemokines, we investigated CCL17 and CCL22 expression in bone marrow-derived dendritic cells (BMDCs) from wild-type and S1pr2 gene-deficient mice. Addition of IL-4 (10 ng/mL) markedly increased the levels of CCL17 and CCL22, but IL-4-induced CCL17 and CCL22 expression was significantly blunted in BMDCs from S1pr2 gene-deficient mice. Furthermore, pretreatment with JTE-013 (1-30 μM) dose-dependently suppressed this induction in BMDCs from wild-type mice. Our results demonstrate that blockage of S1P2 ameliorates not only DNCB-induced atopic dermatitis symptoms but also Th2 cell-attracting capacity of dendritic cells, suggesting S1P2 as a potential therapeutic target for atopic dermatitis."	"Expression of Nogo-A in dorsal root ganglion in rats with cauda equina injury. To investigate the expression of Nogo-A in dorsal root ganglion (DRG) in rats with cauda equina injury and the therapeutic effects of blocking Nogo-A and its receptor. Fifty-eight male Sprague-Dawley rats were divided randomly into either the sham operation group (n = 24) or the cauda equina compression (CEC) control group (n = 34). Behavioral, histological, and terminal deoxynucleotidyl transferase dUTP nick end labeling (TUNEL) analyses were conducted to assess the establishment of the model. The dynamic expression change of Nogo-A was evaluated using real time-qPCR. Immunofluorescence was used to evaluate the expression of Nogo-A in the DRG and cauda equina. Furthermore, 20 male Sprague-Dawley rats were equally divided into 4 groups, including the sham group, the CEC group, the NEP1-40 (the NgR antagonist peptide) treatment group, and the JTE-013 (the S1PR2 antagonist) treatment group. Behavioral assessments and western blotting were used to evaluate the therapeutic effect of cauda equina injury via blocking Nogo-A and its receptor. Tactile allodynia and heat hyperalgesia in the CEC model developed as soon as 1 day after surgery and recovered to normal at 7 days, which was followed by the downregulation of Nogo-A in DRG neurons. However, the locomotor function impairment in the CEC model showed a different prognosis from the sensory function, which was consistent with the expression change of Nogo-A in the spinal cord. Immunofluorescence results also demonstrated that Nogo A-positive/NF200-negative neurons and axons increased in the DRG and cauda equina 7 days after surgery. Surprisingly, Schwann cells, which myelinate axons in the PNS, also expressed considerable amounts of Nogo-A. Then, after blocking the Nogo-A/NgR signaling pathway by NEP1-40, significant improvement of mechanical allodynia was identified in the first 2 days after the surgery. Western blotting suggested the NEP1-40 treatment group had lower expression of cleaved caspase-3 than the CEC and JTE-013 treatment group. Neuronal Nogo-A in the DRG may be involved in regeneration and play a protective role in the CEC model. Whereas Nogo-A, released from the injured axons or expressed by Schwann cells, may act as an inhibiting factor in the process of CEC repairment. Thus, blocking the Nogo-A/NgR signaling pathway can alleviate mechanical allodynia by apoptosis inhibition."	"DCyFIR: a high-throughput CRISPR platform for multiplexed G protein-coupled receptor profiling and ligand discovery. More than 800 G protein-coupled receptors (GPCRs) comprise the largest class of membrane receptors in humans. While there is ample biological understanding and many approved drugs for prototypic GPCRs, most GPCRs still lack well-defined biological ligands and drugs. Here, we report our efforts to tap the potential of understudied GPCRs by developing yeast-based technologies for high-throughput clustered regularly interspaced short palindromic repeats (CRISPR) engineering and GPCR ligand discovery. We refer to these technologies collectively as Dynamic Cyan Induction by Functional Integrated Receptors, or DCyFIR. A major advantage of DCyFIR is that GPCRs and other assay components are CRISPR-integrated directly into the yeast genome, making it possible to decode ligand specificity by profiling mixtures of GPCR-barcoded yeast strains in a single tube. To demonstrate the capabilities of DCyFIR, we engineered a yeast strain library of 30 human GPCRs and their 300 possible GPCR-Gα coupling combinations. Profiling of these 300 strains, using parallel (DCyFIRscreen) and multiplex (DCyFIRplex) DCyFIR modes, recapitulated known GPCR agonism with 100% accuracy, and identified unexpected interactions for the receptors ADRA2B, HCAR3, MTNR1A, S1PR1, and S1PR2. To demonstrate DCyFIR scalability, we profiled a library of 320 human metabolites and discovered several GPCR-metabolite interactions. Remarkably, many of these findings pertained to understudied pharmacologically dark receptors GPR4, GPR65, GPR68, and HCAR3. Experiments on select receptors in mammalian cells confirmed our yeast-based observations, including our discovery that kynurenic acid activates HCAR3 in addition to GPR35, its known receptor. Taken together, these findings demonstrate the power of DCyFIR for identifying ligand interactions with prototypic and understudied GPCRs."	"The sphingosine-1-phosphate/RhoA/Rho associated kinases/myosin light chain pathway in detrusor of female rats is down-regulated in response to ovariectomy. Dysuria is one of the main symptoms of genitourinary syndrome of menopause, which causes serious disruption to the normal life of peri-menopausal women. Studies have shown that it is related to decrease of detrusor contractile function, but the exact mechanism is still poorly understood. Previous results have suggested that the sphingosine-1-phosphate (S1P) pathway can regulate detrusor contraction, and this pathway is affected by estrogen in various tissues. However, how estrogen affects this pathway in the detrusor has not been investigated. In this study, we detected changes of the S1P/RhoA/Rho associated kinases (ROCK)/myosin light chain (MLC) pathway in the detrusor of ovariectomized rats in order to explore the underlying mechanism of dysuria during peri-menopause. Thirty-six female Sprague-Dawley rats were randomly divided into SHAM (sham operation), OVX (ovariectomy), and E groups (ovariectomy + estrogen), with 12 rats in each group. We obtained bladder detrusor tissues from each group and examined the mRNA and protein levels of the major components of the S1P/RhoA/ROCK/MLC pathway using quantitative real-time polymerase chain reaction and Western blotting, respectively. We also quantified the content of S1P in the detrusor using an enzyme linked immunosorbent assay. Finally, we compared results between the groups with one-way analysis of variance. The components of the S1P pathway and the RhoA/ROCK/MLC pathway of the OVX group were significantly decreased, as compared with SHAM group. The percent decreases of the components in the S1P pathway were as follows: sphingosine kinase 1 (mRNA: 39%, protein: 45%) (both P &lt; 0.05), S1P (21.73 ± 1.09 nmol/g vs. 18.86 ± 0.69 nmol/g) (P &lt; 0.05), and S1P receptor 2/3 (S1PR2/3) (mRNA: 25%, 27%, respectively) (P &lt; 0.05). However, the protein expression levels of S1PR2/3 and the protein and mRNA levels of SphK2 and S1PR1 did not show significant differences between groups (P &gt; 0.05). The percent decreases of the components in the RhoA/ROCK/MLC pathway were as follows: ROCK2 (protein: 41%, mRNA: 36%) (both P &lt; 0.05), p-MYPT1 (protein: 54%) (P &lt; 0.05), and p-MLC20 (protein: 47%) (P &lt; 0.05), but there were no significant differences in the mRNA and protein levels of RhoA, ROCK1, MYPT1, and MLC20 (all P &gt; 0.05). In addition, all of the above-mentioned decreases could be reversed after estrogen supplementation (E group vs. SHAM group) (all P &gt; 0.05). In this study, we confirmed that ovariectomy is closely associated with the down-regulation of the S1P/RhoA/ROCK/MLC pathway in the rat detrusor, which may be one mechanism of dysuria caused by decreased contractile function of the female detrusor during peri-menopause."	"Neutrophils undergo switch of apoptosis to NETosis during murine fatty liver injury via S1P receptor 2 signaling. Inappropriate neutrophil infiltration and subsequent neutrophil extracellular trap (NET) formation have been confirmed to be involved in chronic inflammatory conditions. Fatty liver disease is an increasingly severe health problem worldwide and currently considered the most common cause of chronic liver disease. Sphingosine 1-phosphate (S1P), a product of membrane sphingolipid metabolism, regulates vital physiological and pathological actions by inducing infiltration and activation of various cell types through S1P receptors (S1PRs). Here, we seek to determine the S1PR-mediated effects on neutrophil activation during chronic liver inflammation. In this study, NETs are detected in the early stage of methionine-choline-deficient and a high-fat (MCDHF) diet-induced liver injury. NET depletion by deoxyribonuclease I intraperitoneal injection significantly protects liver from MCDHF-induced liver injury in vivo. Meanwhile, we show that levels of myeloperoxidase-DNA complex (NET marker) in the serum present positive correlation with sphingosine kinase1 (S1P rate-limiting enzyme) messenger RNA expression or S1P levels in the injured liver of MCDHF-fed mice. In vitro, S1PR2 participates in the redirection of neutrophil apoptosis to NETosis via Gαi/o, extracellular signal-regulated kinase, p38 mitogen-activated protein kinase, and reactive oxygen species signaling pathways. Moreover, S1PR2 knockdown in MCDHF-fed mice by S1PR2-siRNA intravenous injection significantly inhibits NET formation in damaged liver tissue and then alleviates hepatic inflammation and fibrosis. Conclusion: In the early stage of fatty liver disease, S1PR2-mediated neutrophil activation plays an important role in the evolvement of liver injury."	"Gut microbiome-derived lactate promotes to anxiety-like behaviors through GPR81 receptor-mediated lipid metabolism pathway. Accumulating evidence suggests that chronic stress could perturb the composition of the gut microbiota and induce host anxiety- and depression-like behaviors. In particular, microorganism-derived products that can directly or indirectly signal to the nervous system. This study sought to investigate whether high levels of Lactobacillus and lactate in the gut of rats under chronic unpredictable stress (CUS) were the factors leading to anxiety behavior. We collected faeces and blood samples in a sterile laboratory bench to study the microbiome and plasma metabolome from adult male rats age and environment matched healthy individuals. We sequenced the V3 and V4 regions of the 16S rRNA gene from faeces samples. UPLC-MS metabolomics were used to examine plasma samples. Search for potential biomarkers by combining the different data types. Finally, we found a regulated signaling pathway through the relative expression of protein and mRNA. Both lactate feeding and fecal microbiota transplantation caused behavioral abnormalities such as psychomotor malaise, impaired learning and memory in the recipient animals. These rats also showed inhibition of the adenylate cyclase (AC)-protein kinase A (PKA) pathway of lipolysis after activation of G protein-coupled receptor 81 (GPR81) by lactate in the liver, as well as increased tumor necrosis factor α (TNF-α), compared with healthy controls. Furthermore, we showed that sphingosine-1-phosphate receptor 2 (S1PR2) protein expression in hippocampus was reduced in chronic unpredictable stress compared to control group and its expression negatively correlates with symptom severity. Our study suggest that the gut microbiome-derived lactate promotes to anxiety-like behaviors through GPR81 receptor-mediated lipid metabolism pathway."	"Non-negligible factors in studying the ApoM-S1P axis using EA.hy926 cells. The apolipoprotein M (ApoM)-sphingosine-1-phosphate (S1P) axis was recently identified, and research into its function has received increasing attention. However, there are some factors which might influence the results of studies into the function of the ApoM-S1P axis using the EA.hy926 cells. This study investigated related factors, including coagulation factor VIII (FVIII), ApoM, S1P receptor subtypes (S1PRs), C-myc-tagged, and His-tagged proteins in EA.hy926 cells, as well as the effects of ApoM overexpression on S1PRs. The expression of FVIII, ApoM, S1PRs, C-myc, and His-tagged proteins in EA.hy926 cells was investigated through cellular immunofluorescence. EA.hy926 cells were infected with lentiviruses carrying (OE group) or lacking (NC group) the ApoM gene sequence. A stable cell line expressing ApoM was obtained, and the expression of ApoM mRNA was detected through single tube duplex fluorescence reverse transcription quantitative polymerase chain reaction (RT-qPCR). S1PRs expression was detected by RT-qPCR and Western blotting. The results showed that EA.hy926 cells expressed FVIII, ApoM, C-myc-tagged, and His-tagged proteins. Moreover, they highly expressed S1PR1, slightly expressed S1PR3, weakly expressed S1PR2, and did not express S1PR4 and S1PR5. ApoM overexpression significantly increased S1PR1 mRNA and protein expression but did not affect the expression of S1PR3. EA.hy926 cells expressed FVIII, suggesting the cell line possesses endothelial cell characteristics and could be used for in vitro studies of the ApoM-S1P axis. EA.hy926 cell line is suitable for investigation of the ApoM-S1P axis in vitro. However, Since EA.hy926 cells expressed endogenous ApoM, C-myc and His tagged proteins, the exogenous recombinant ApoM should not be labeled with C-myc and His tags for distinguishing from endogenous ApoM. In addition, overexpression of ApoM should be considered to significantly increase the expression of S1PR1 when studying the APOM-S1P axis."	"Up-regulation of sphingosine-1-phosphate receptors and sphingosine kinase 1 in the peri-ischemic area after transient middle cerebral artery occlusion in mice. There is thought to be a strong relationship between sphingosine-1-phosphate (S1P) signaling and pathophysiolosy of cerebral ischemia. We examined the change of expression and distribution of S1P receptors (S1PRs) and sphingosine kinases (SphKs) after cerebral ischemia in male C57BL6/J mice using immunohistochemical analysis at 1, 5, 14, and 28 days after 30 min of transient middle cerebral artery occlusion (tMCAO). S1PR1, 3, and 5 were transiently induced in the cells, which were morphologically similar to neurons in the peri-infarct lesion with a peak seen at 1 day after tMCAO (p &lt; 0.01 vs. sham control). S1PR2 appeared in the inner layer of vessels in the ischemic core (p &lt; 0.01 vs. sham control) and the peri-infarct lesion (p &lt; 0.01 vs. sham control) at the acute phase after tMCAO. However, SphK1 was strongly induced at 1 and 5 days after tMCAO (p &lt; 0.01 vs. sham control) in the peri-infarct lesion, whereas SphK2 expression did not change. Western blot analysis at 1 and 5 days after 30 min of tMCAO revealed that the expression of S1PRs were transiently enhanced at the acute phase, which was consistent with the immunohistochemical results. Double immunofluorescent analysis revealed S1PR2/NG2- and S1PR2/CD31-, S1PR3/CD31-, and S1PR5/CD31-double positive cells in the peri-infarct lesion 1 day after tMCAO. The present results suggest that S1PRs and SphK1 may be important therapeutic targets for rescuing the peri-infarct lesion."	"Significance of sphingosine-1-phosphate in cardiovascular physiology and pathology. Sphingosine-1-phosphate (S1P) is a signaling lipid, synthetized by sphingosine kinases (SPHK1 and SPHK2), that affects cardiovascular function in various ways. S1P signaling is complex, particularly since its molecular action is reliant on the differential expression of its receptors (S1PR1, S1PR2, S1PR3, S1PR4, S1PR5) within various tissues. Significance of this sphingolipid is manifested early in vertebrate development as certain defects in S1P signaling result in embryonic lethality due to defective vasculo- or cardiogenesis. Similar in the mature organism, S1P orchestrates both physiological and pathological processes occurring in the heart and vasculature of higher eukaryotes. S1P regulates cell fate, vascular tone, endothelial function and integrity as well as lymphocyte trafficking, thus disbalance in its production and signaling has been linked with development of such pathologies as arterial hypertension, atherosclerosis, endothelial dysfunction and aberrant angiogenesis. Number of signaling mechanisms are critical - from endothelial nitric oxide synthase through STAT3, MAPK and Akt pathways to HDL particles involved in redox and inflammatory balance. Moreover, S1P controls both acute cardiac responses (cardiac inotropy and chronotropy), as well as chronic processes (such as apoptosis and hypertrophy), hence numerous studies demonstrate significance of S1P in the pathogenesis of hypertrophic/fibrotic heart disease, myocardial infarction and heart failure. This review presents current knowledge concerning the role of S1P in the cardiovascular system, as well as potential therapeutic approaches to target S1P signaling in cardiovascular diseases."	"Effect of sphingosine-1-phosphate on activation of dormant follicles in murine and human ovarian tissue. In vitro activation of resting ovarian follicles, with the use of mechanical stress and/or pharmacological compounds, is an emerging and novel approach for infertility treatment. The aim of this study was to assess the sphingolipid, sphingosine-1-phosphate (S1P), as a potential in vitro activation agent in murine and human ovarian tissues and isolated follicles. Juvenile murine ovaries and donated human ovarian tissues, from 10 women undergoing ovarian tissue cryopreservation for fertility preservation, were incubated with or without 12 μM S1P for 3 h for quantitative PCR analysis, and 12 h for xenotransplantation or culture studies. Gene expression analyses were performed for genes downstream of the Hippo signaling pathway. Murine ovaries and isolated murine and human preantral follicles showed significantly increased mRNA expression levels of Ccn2/CCN2 following S1P treatment compared to controls. This increase was shown to be specific for the Hippo signaling pathway and for the S1P2 receptor, as co-treatment with Hippo-inhibitor, verteporfin and S1PR2 antagonist, JTE-013, reduced the S1P-induced Ccn2 gene expression in murine ovaries. Histological evaluation of human cortical tissues (5 × 5 × 1 mm; n = 30; three pieces per patient) xenografted for 6 weeks and juvenile murine ovaries cultured for 4 days (n = 9) or allografted for 2 weeks (n = 48) showed no differences in the distribution of resting or growing follicles in S1P-treated ovarian tissues compared to controls. Collectively, S1P increased Ccn2/CCN2 gene expression in isolated preantral follicles and ovarian tissue from mice and human, but it did not promote follicle activation or growth in vivo. Thus, S1P does not appear to be a potent in vitro activation agent under these experimental conditions."	"Sphingosine signaling dysfunction in airway cells as a potential contributor to progression from protracted bacterial bronchitis to bronchiectasis in children. Protracted bacterial bronchitis (PBB) is considered a potential precursor to bronchiectasis (BE) in some children. We previously showed that alveolar macrophages (AM) from children with PBB or BE have a similar significant defect in phagocytic capacity, with proinflammatory associations. We hypothesized that the mechanisms responsible for this defect involve dysregulation of the sphingosine-1-phosphate (S1P) signaling pathway, as we have found in adult inflammatory lung diseases. We employed a Custom TaqMan OpenArray to investigate gene expression of S1P-generating enzymes: sphingosine kinases (SPHK) 1/2, S1P phosphatase 2 (SGPP2), S1P lyase 1 (SGPL1), S1P receptors (S1PR) 1/2/4/5; proinflammatory cytokines TNF-α (TNF) and IFNγ (IFNG), the cytotoxic mediator granzyme B (GZMB), and inflammasomes AIM2 and NLRP3, in bronchoalveolar lavage from 15 children with BE, 15 with PBB and 17 age-matched controls, and determined association with clinical/demographic variables and airway inflammation. Significantly increased expression of S1PR1, S1PR2, and SPHK1 was noted in PBB and BE AM vs controls with increased SGPP2 only in PBB. TNF, IFNG, AIM2, and NLRP3 were significantly increased in both disease groups with increased GZMB only in PBB. There were no significant differences in the expression of any other S1P-related mediator between groups. There were significant positive associations between Haemophilus influenzae growth and expression of S1PR1 and NLRP3; between S1PR1 and S1PR2, NLRP3 and IFNG; between S1PR2 and AIM2, SPHK1, and SPHK2; and between SPHK1 and GZMB, IFNG, AIM2, and NLRP3. Children with PBB and BE share similar S1P-associated gene expression profiles. AM phagocytic dysfunction and inflammation in these children may occur due to dysregulated S1P signaling."	"S1PR2 inhibitors potently reverse 5-FU resistance by downregulating DPD expression in colorectal cancer. In this study, S1PR2 was reckoned as a brand-new GPCR target for designing inhibitors to reverse 5-FU resistance. Herein a series of pyrrolidine pyrazoles as the S1PR2 inhibitors were designed, synthesized and evaluated for their activities of anti-FU-resistance. Among them, the most promising compound JTE-013, exhibited excellent inhibition on DPD expression and potent anti-FU-resistance activity in various human cancer cell lines, along with the in vivo HCT116<sup>DPD</sup> cells xenograft model, in which the inhibition rate of 5-FU was greatly increased from 13.01%-75.87%. The underlying mechanism was uncovered that JTE-013 demonstrated an anti-FU-resistance activity by blocking S1PR2 internalization to the endoplasmic reticulum (ER), which inhibited the degradation of 5-FU into α-fluoro-β-alanine (FBAL) by downregulating tumoral DPD expression. Overall, JTE-013 could serve as the lead compound for the discovery of new anti-FU-resistance drugs. SIGNIFICANCE: This study provides novel insights that S1PR2 inhibitors could sensitize 5-FU therapy in colorectal cancer."	"Novel Mutation Hotspots within Non-Coding Regulatory Regions of the Chronic Lymphocytic Leukemia Genome. Mutations in non-coding DNA regions are increasingly recognized as cancer drivers. These mutations can modify gene expression in cis or by inducing high-order chormatin structure modifications with long-range effects. Previous analysis reported the detection of recurrent and functional non-coding DNA mutations in the chronic lymphocytic leukemia (CLL) genome, such as those in the 3' untranslated region of NOTCH1 and in the PAX5 super-enhancer. In this report, we used whole genome sequencing data produced by the International Cancer Genome Consortium in order to analyze regions with previously reported regulatory activity. This approach enabled the identification of numerous recurrently mutated regions that were frequently positioned in the proximity of genes involved in immune and oncogenic pathways. By correlating these mutations with expression of their nearest genes, we detected significant transcriptional changes in genes such as PHF2 and S1PR2. More research is needed to clarify the function of these mutations in CLL, particularly those found in intergenic regions."	"Sphingolipid Signature of Human Feto-Placental Vasculature in Preeclampsia. Bioactive sphingolipids are emerging as key regulators of vascular function and homeostasis. While most of the clinical studies have been devoted to profile circulating sphingolipids in maternal plasma, little is known about the role of the sphingolipid at the feto-placental vasculature, which is in direct contact with the offspring circulation. Our study aims to compare the sphingolipid profile of normal with preeclamptic (PE) placental chorionic arteries and isolated endothelial cells, with the goal of unveiling potential underlying pathomechanisms in the vasculature. Dihydrosphingosine and sphingomyelin (SM) concentrations (C16:0-, C18:0-, and C24:0- sphingomyelin) were significantly increased in chorionic arteries of preeclamptic placentas, whereas total ceramide, although showing a downward trend, were not statistically different. Moreover, RNA and immunofluorescence analysis showed impaired sphingosine-1-phosphate (S1P) synthesis and signaling in PE vessels. Our data reveal that the exposure to a deranged maternal intrauterine environment during PE alters the sphingolipid signature and gene expression on the fetal side of the placental vasculature. This pathological remodeling consists in increased serine palmitoyltransferase (SPT) activity and SM accrual in PE chorionic arteries, with concomitance impairment endothelial S1P signaling in the endothelium of these vessels. The increase of endothelial S1P phosphatase, lyase and S1PR2, and blunted S1PR1 expression support the onset of the pathological phenotype in chorionic arteries."	"MiR-126 on mice with coronary artery disease by targeting S1PR2. To screen the differentially expressed micro ribonucleic acids (miRNAs) in the serum of coronary atherosclerosis patients, and to investigate their possible mechanisms of action. The differentially expressed serum miRNAs were screened from 3 coronary artery disease (CAD) patients and 3 healthy controls using miRNA expression profiles, which were verified using low-throughput quantitative Reverse Transcription-Polymerase Chain Reaction (RT-qPCR) assay. 60 apolipoprotein E (ApoE)-/- mice were divided into model group, agomir-126 group, agomir-control (con) group, and antagomir-126 group using a random number table. They were fed with high-fat diets (21% fat and 0.15% cholesterol) ad libitum for 15 weeks to establish the mouse model of CAD. Then, hematoxylin and eosin (HE) staining was applied to detect the impact of miR-126 expression level on the tissue morphology in the thoracic aortic region. The influences of miR-126 expression level on the secretion levels of tumor necrosis factor-alpha (TNF-α), interleukin-1 beta (IL-1β), and IL-10 were determined via enzyme-linked immunosorbent assay (ELISA). Western blotting assay was performed to examine the effects of miR-126 expression level on the expression levels of nuclear factor-kappa B (NF-κB) and vascular cell adhesion molecule-1 (VACM-1) in the tissues of the thoracic aortic region of the mice. The correlation between miR-126 expression level and sphingosine-1-phosphate receptor 2 (S1PR2) in the serum of CAD patients and animal models was analyzed by the Pearson correlation coefficient method. The targets of miR-126 were predicted using the bioinformatics method, and the direct targets were verified through investigations. Western blotting assay and ELISA were adopted to detect the impacts of miR-126 expression level on the expression and secretion levels of TNF-α, IL-1β, and IL-10 in S1P + oxidized low-density lipoprotein (ox-LDL)-induced human umbilical vein endothelial cells (HUVECs). Lentivirus-small hairpin RNA (shRNA) was utilized to knock down the expression level of S1RP2 to determine whether miR-126 affected the increase in the inflammation level in S1P + ox-LDL-induced HUVECs by targeting S1RP2. Compared with those in control group, 4 miRNAs (miR-126, miR-206, miR-4297, and miR-3646) in the serum of CAD patients exhibited the most significant expression differences, which increased by 6.72, 7.11, 13.57, and 21.22 times, respectively. The verification results of low-throughput RT-qPCR assay indicated that there were remarkable changes in the expression levels of the 4 selected miRNAs with differential expressions in comparison with those in control group, displaying statistically significant differences (p&lt;0.01). The results of HE staining manifested that the coronary atherosclerotic plaques were reduced markedly in agomir-126 group, while notably more coronary atherosclerotic plaques were formed in the thoracic aortic region in antagomir-126 group. Meanwhile, the elevated expression level of miR-126 evidently lowered the expressions of serum TNF-α and IL-1β, but significantly increased the expression of IL-10 in the mouse model of CAD. According to the analysis results of the Pearson correlation coefficient method, the miR-126 expression level was negatively correlated with S1PR2 expression level in the serum of both CAD patients and animal models (r=-0.6123, r=-5.37). It was shown in bioinformatics prediction and luciferase reporter gene assay that miR-126 negatively regulated the S1PR2 expression by targeting the 3' untranslated region (UTR) of S1PR2 messenger RNA (mRNA). In the in vitro inflammation model, the increased expression level of miR-126 could relieve the inflammation in cells induced by S1P + ox-LDL. Based on the results of both Western blotting assay and ELISA, the differences in the expression and secretion levels of TNF-α, IL-1β, and IL-10, as well as the expression levels of signaling molecules of the NF-κB signaling pathway, in the cells were not statistically significant among miR-126 mimic treatment group, sh-S1PR2 group, and miR-126 mimic + sh-S1PR2 group, indicating that miR-126 affects the inflammation level in HUVECs by targeting S1PR2. MiR-126 represses the progression of coronary atherosclerosis in the mice by binding to S1PR2. The results of this research may propose a new mechanism of miR-126 in exerting its therapeutic effects and possess potential value for the treatment of CAD in the future."	"Endothelial sphingosine 1-phosphate receptors promote vascular normalization and antitumor therapy. Sphingosine 1-phosphate receptor-1 (S1PR1) is essential for embryonic vascular development and maturation. In the adult, it is a key regulator of vascular barrier function and inflammatory processes. Its roles in tumor angiogenesis, tumor growth, and metastasis are not well understood. In this paper, we show that S1PR1 is expressed and active in tumor vessels. Murine tumor vessels that lack S1PR1 in the vascular endothelium (S1pr1 ECKO) show excessive vascular sprouting and branching, decreased barrier function, and poor perfusion accompanied by loose attachment of pericytes. Compound knockout of S1pr1, 2, and 3 genes further exacerbated these phenotypes, suggesting compensatory function of endothelial S1PR2 and 3 in the absence of S1PR1. On the other hand, tumor vessels with high expression of S1PR1 (S1pr1 ECTG) show less branching, tortuosity, and enhanced pericyte coverage. Larger tumors and enhanced lung metastasis were seen in S1pr1 ECKO, whereas S1pr1 ECTG showed smaller tumors and reduced metastasis. Furthermore, antitumor activity of a chemotherapeutic agent (doxorubicin) and immune checkpoint inhibitor blocker (anti-PD-1 antibody) were more effective in S1pr1 ECTG than in the wild-type counterparts. These data suggest that tumor endothelial S1PR1 induces vascular normalization and influences tumor growth and metastasis, thus enhancing antitumor therapies in mouse models. Strategies to enhance S1PR1 signaling in tumor vessels may be an important adjunct to standard cancer therapy of solid tumors."	"Modulating sphingosine-1-phosphate receptors to improve chemotherapy efficacy against Ewing sarcoma. Tumor vasculature is innately dysfunctional. Poorly functional tumor vessels inefficiently deliver chemotherapy to tumor cells; vessel hyper-permeability promotes chemotherapy delivery primarily to a tumor's periphery. Here, we identify a method for enhancing chemotherapy efficacy in Ewing sarcoma (ES) in mice by modulating tumor vessel permeability. Vessel permeability is partially controlled by the G protein-coupled Sphinosine-1-phosphate receptors 1 and 2 (S1PR1 and S1PR2) on endothelial cells. S1PR1 promotes endothelial cell junction integrity while S1PR2 destabilizes it. We hypothesize that an imbalance of S1PR1:S1PR2 is partially responsible for the dysfunctional vascular phenotype characteristic of ES and that by altering the balance in favor of S1PR1, ES vessel hyper-permeability can be reversed. In our study, we demonstrate that pharmacologic activation of S1PR1 by SEW2871 or inhibition of S1PR2 by JTE-013 caused more organized, mature and functional tumor vessels. Importantly, S1PR1 activation or S1PR2 inhibition improved antitumor efficacy. Our data suggests that pharmacologic targeting of S1PR1 and S1PR2 may be a useful adjuvant to standard chemotherapy for ES patients."	"Bile acids and ceramide overcome the entry restriction for GII.3 human norovirus replication in human intestinal enteroids. Human noroviruses (HuNoVs) cause sporadic and epidemic outbreaks of gastroenteritis in all age groups worldwide. We previously reported that stem cell-derived human intestinal enteroid (HIE) cultures support replication of multiple HuNoV strains and that some strains (e.g., GII.3) replicate only in the presence of bile. Heat- and trypsin-treatment of bile did not reduce GII.3 replication, indicating a nonproteinaceous component in bile functions as an active factor. Here we show that bile acids (BAs) are critical for GII.3 replication and replication correlates with BA hydrophobicity. Using the highly effective BA, glycochenodeoxycholic acid (GCDCA), we show BAs act during the early stage of infection, BA-dependent replication in HIEs is not mediated by detergent effects or classic farnesoid X receptor or Takeda G protein-coupled receptor 5 signaling but involves another G protein-coupled receptor, sphingosine-1-phosphate receptor 2, and BA treatment of HIEs increases particle uptake. We also demonstrate that GCDCA induces multiple cellular responses that promote GII.3 replication in HIEs, including enhancement of 1) endosomal uptake, 2) endosomal acidification and subsequent activity of endosomal/lysosomal enzyme acid sphingomyelinase (ASM), and 3) ceramide levels on the apical membrane. Inhibitors of endosomal acidification or ASM reduce GII.3 infection and exogenous addition of ceramide alone permits infection. Furthermore, inhibition of lysosomal exocytosis of ASM, which is required for ceramide production at the apical surface, decreases GII.3 infection. Together, our results support a model where GII.3 exploits rapid BA-mediated cellular endolysosomal dynamic changes and cellular ceramide to enter and replicate in jejunal HIEs."	"A GPR174-CCL21 module imparts sexual dimorphism to humoral immunity. Humoral immune responses to immunization and infection and susceptibilities to antibody-mediated autoimmunity are generally lower in males<sup>1-3</sup>. However, the mechanisms underlying such sexual dimorphism are not well understood. Here we show that there are intrinsic differences between the B cells that produce germinal centres in male and female mice. We find that antigen-activated male B cells do not position themselves as efficiently as female B cells in the centre of follicles in secondary lymphoid organs, in which germinal centres normally develop. Moreover, GPR174-an X-chromosome-encoded G-protein-coupled receptor-suppresses the formation of germinal centres in male, but not female, mice. This effect is intrinsic to B cells, and correlates with the GPR174-enhanced positioning of B cells towards the T-cell-B-cell border of follicles, and the distraction of male, but not female, B cells from S1PR2-driven follicle-centre localization. Biochemical fractionation of conditioned media that induce B-cell migration in a GPR174-dependent manner identifies CCL21 as a GPR174 ligand. In response to CCL21, GPR174 triggers a calcium flux and preferentially induces the migration of male B cells; GPR174 also becomes associated with more Gαi protein in male than in female B cells. Male B cells from orchidectomized mice exhibit impaired GPR174-mediated migration to CCL21, and testosterone treatment rescues this defect. Female B cells from testosterone-treated mice exhibit male-like GPR174-Gαi association and GPR174-mediated migration. Deleting GPR174 from male B cells causes more efficient positioning towards the follicular centre, the formation of more germinal centres and an increased susceptibility to B-cell-dependent experimental autoimmune encephalomyelitis. By identifying GPR174 as a receptor for CCL21 and demonstrating its sex-dependent control of B-cell positioning and participation in germinal centres, we have revealed a mechanism by which B-cell physiology is fine-tuned to impart sexual dimorphism to humoral immunity."	"Apolipoprotein M and sphingosine-1-phosphate complex alleviates TNF-α-induced endothelial cell injury and inflammation through PI3K/AKT signaling pathway. In spite of the important role of Apolipoprotein-M (ApoM) and Sphingosine-1-Phosphate (S1P) played in atherosclerosis (AS), there was few related research reporting ApoM and S1P complex (ApoM-S1P) on biological activities of human umbilical vein endothelial cells (HUVECs). In this study, we explored the effect and mechanism of ApoM-S1P on TNF-α-induced inflammation in HUVECs. TNF-α was utilized to induce HUVEC injury and inflammation. After HUVECs were treated with antagonists of ApoM, S1P, ApoM + S1P, and ApoM + S1P + S1PR, calcein-acetoxymethyl ester was employed for the assessment of the adhesion of HUVECs to THP-1, immunofluorescence for the observation of caspase-1expression in HUVECs, reactive oxygen species (ROS) kit for the detection of ROS level in HUVECs. The impact of TNF-α, ApoM, S1P and S1PR antagonists on inflammatory response, pyroptosis and adhesion of THP-1 monocytes to HUVECs were determined by detecting expressions of pyroptosis related proteins (IL-1β, IL-18, ASC, NLRP3 and caspase-1), inflammatory cytokines (IL-6 and IL-10), adhesion molecules (E-selectin, ICAM-1, and VCAM-1) and p-PI3K/p-AKT by qRT-PCR and Western blot, as well as by ELISA. TNF-α could increase adhesion of THP-1 monocytes to HUVECs and induce inflammatory response and pyroptosis in HUVECs, indicated by up-regulated expressions of E-selectin, ICAM-1, VCAM-1, IL-1β, IL-18, caspase-1, ASC, NLRP3, and IL-6, and down-regulated expression of IL-10. Co-treatment of ApoM-S1P on TNF-α treated HUVECs could protect HUVECs from injury and inflammation, evidenced by the attenuation of expressions of pyroptosis related proteins, inflammatory cytokines, and adhesion molecules, as well as the augment of PI3K and AKT phosphorylation. JTE-013, an antagonist of S1PR2, could reverse the amelioration of ApoM-S1P on pyroptosis and inflammation of HUVECs, indicating that ApoM-S1P could bind to S1PR2 to protect HUVECs from injury and inflammation through activating PI3K/AKT pathway. ApoM-S1P could attenuate TNF-α induced injury and inflammatory response in HUVECs by binding to S1PR2 to activate PI3K/AKT pathway."	"Sphingosine 1-phosphate but not Fingolimod protects neurons against excitotoxic cell death by inducing neurotrophic gene expression in astrocytes. Sphingosine 1-phosphate (S1P) is an essential lipid metabolite that signals through a family of five G protein-coupled receptors, S1PR1-S1PR5, to regulate cell physiology. The multiple sclerosis drug Fingolimod (FTY720) is a potent S1P receptor agonist that causes peripheral lymphopenia. Recent research has demonstrated direct neuroprotective properties of FTY720 in several neurodegenerative paradigms; however, neuroprotective properties of the native ligand S1P have not been established. We aimed to establish the significance of neurotrophic factor up-regulation by S1P for neuroprotection, comparing S1P with FTY720. S1P induced brain-derived neurotrophic factor (BDNF), leukemia inhibitory factor (LIF), platelet-derived growth factor B (PDGFB), and heparin-binding EGF-like growth factor (HBEGF) gene expression in primary human and murine astrocytes, but not in neurons, and to a much greater extent than FTY720. Accordingly, S1P but not FTY720 protected cultured neurons against excitotoxic cell death in a primary murine neuron-glia coculture model, and a neutralizing antibody to LIF blocked this S1P-mediated neuroprotection. Antagonists of S1PR1 and S1PR2 both inhibited S1P-mediated neurotrophic gene induction in human astrocytes, indicating that simultaneous activation of both receptors is required. S1PR2 signaling was transduced through Gα13 and the small GTPase Rho, and was necessary for the up-regulation and activation of the transcription factors FOS and JUN, which regulate LIF, BDNF, and HBEGF transcription. In summary, we show that S1P protects hippocampal neurons against excitotoxic cell death through up-regulation of neurotrophic gene expression, particularly LIF, in astrocytes. This up-regulation requires both S1PR1 and S1PR2 signaling. FTY720 does not activate S1PR2, explaining its relative inefficacy compared to S1P."	"Sphingosine-1-phosphate signaling: A novel target for simultaneous adjuvant treatment of triple negative breast cancer and chemotherapy-induced neuropathic pain. Triple-negative breast cancer (TNBC) is very aggressive with high metastatic and mortality rates and unfortunately, except for chemotherapy, there are few therapeutic options. The bioactive sphingolipid metabolite sphingosine-1-phosphate (S1P) regulates numerous processes important for cancer progression, metastasis, and neuropathic pain. The pro-drug FTY720 (fingolimod, Gilenya) used to treat multiple sclerosis is phosphorylated in the body to a S1P mimic that binds to S1PRs, except S1PR2, and also acts as a functional antagonist of S1PR1. This review highlights current findings showing that FTY720 has multiple anti-cancer activities and simultaneously prevents formation and actions of S1P. Moreover, in mouse breast cancer models, treatment with FTY720 reduces tumor growth, metastasis, and enhances sensitivity of advanced and hormonal refractory breast cancer and TNBC to conventional therapies. We discuss recent studies demonstrating that neuropathic pain induced by the chemotherapeutic bortezomib is also greatly reduced by administration of clinically relevant doses of FTY720, likely by targeting S1PR1 on astrocytes. FTY720 also shows promising anticancer potential in pre-clinical studies and is FDA approved, thus we suggest in this review that further studies are needed to pave the way for fast-tracking approval of FTY720/fingolimod for enhancing chemotherapy effectiveness and reduction of painful neuropathies."	"[Altered expressions of SphK1 and S1PR2 in hippocampus of epileptic rats]. To observe the expressions of sphingosine kinase 1 (SphK1) and sphingosine-1-phosphate receptor 2 (S1PR2) in hippocampus of epileptic rats and to investigate the pathogenesis of SphK1 and S1PR2 in epilepsy. One hundred and eight male Sprague-Dawley (SD) rats were randomly divided into control group (n=48) and pilocarpine (PILO) group (n=60). A robust convulsive status epilepticus (SE) was induced in PILO group rats by the application of pilocarpine. Control group rats were injected with respective of physiological saline. Pilocarpine group was randomly divided into 6 subgroups (n=8): acute group (E6 h, E1 d, E3 d), latent group (E7 d) and chronic group (E30 d, E56 d). Each subgroup has 8 control rats and 8 epileptic rats. Hippocampal tissue and brain slices were obtained from control rats and rats subjected to the Li-PILO model of epilepsy at 6 h, 1 d, 3 d,7 d,30 d and 56 d after status epilepticus (SE). Western blot technique was used to determine the expressions of SphK1 and S1PR2 in hippocampus at different point of time after pilocarpine treatment. Immunofluorescence was applied to detect the activation and proliferation of hippocampal astrocytes and the localization of SphK1 and S1PR2 in rat hippocampal astrocytes. Compared with control group, the levels of SphK1 in acute phase (E3 d), latent phase (E7 d) and chronic phase (E30 d, E56 d) were significantly increased while the expressions of S1PR2 were decreased in acute phase (E3 d), latent phase (E7 d) and chronic phase (E30 d, E56 d)(P<0.05 or P<0.01). Immunofluorescence results showed astrocyte activation and proliferation in hippocampus of epileptic (E7 d) rats (P<0.05). Confocal microscopy confirmed the preferential expressions of SphK1 and S1PR2 in epileptic rat(E7 d)hippocampal astrocytes. The results indicate that SphK1 and S1PR2 may play an important role in the pathogenesis of epilepsy by regulating the activation and proliferation of hippocampal astrocytes and altering neuronal excitability."	"Pharmacological DNA demethylation restores SMAD1 expression and tumor suppressive signaling in diffuse large B-cell lymphoma. The sphingosine-1-phosphate (S1P) receptor S1PR2 and its downstream adaptor Gα13 are recurrently mutationally inactivated in the germinal center B-cell subtype of diffuse large B-cell lymphoma (DLBCL) and are silenced by the S1PR2 repressor FOXP1 in the activated B-cell like subtype of the disease. Loss of S1PR2 signaling relieves the germinal center confinement that is maintained by an S1P gradient and allows cells to resist S1P-induced apoptosis. We have shown previously that S1PR2 expression is induced in normal B cells through a newly described transforming growth factor-β (TGF-β)/TGF-βRII/SMAD1 signaling axis that is inactivated in &gt;85% of DLBCL patients. DLBCL cell lines lacking S1PR2, TGFBRII, or SMAD1 as the result of genomic editing all have a strong growth advantage in vitro, as well as in subcutaneous and orthotopic xenotransplantation models. Here, we show that the TGF-β signaling pathway in DLBCL is blocked at the level of SMAD1 in DLBCL cell lines and patient samples by hypermethylation of CpG-rich regions surrounding the SMAD1 transcription start site. The pharmacologic restoration of SMAD1 expression by the demethylating agent decitabine (DAC) sensitizes cells to TGF-β-induced apoptosis and reverses the growth of initially SMAD1- cell lines in ectopic and orthotopic models. This effect of DAC is reduced in a SMAD1-knockout cell line. We further show that DAC restores SMAD1 expression and reduces the tumor burden in a novel patient-derived orthotopic xenograft model. The combined data lend further support to the concept of an altered epigenome as a major driver of DLBCL pathogenesis."	"Fast Regulation of GABAAR Diffusion Dynamics by Nogo-A Signaling. Precisely controlling the excitatory and inhibitory balance is crucial for the stability and information-processing ability of neuronal networks. However, the molecular mechanisms maintaining this balance during ongoing sensory experiences are largely unclear. We show that Nogo-A signaling reciprocally regulates excitatory and inhibitory transmission. Loss of function for Nogo-A signaling through S1PR2 rapidly increases GABAAR diffusion, thereby decreasing their number at synaptic sites and the amplitude of GABAergic mIPSCs at CA3 hippocampal neurons. This increase in GABAAR diffusion rate is correlated with an increase in Ca<sup>2+</sup> influx and requires the calcineurin-mediated dephosphorylation of the γ2 subunit at serine 327. These results suggest that Nogo-A signaling rapidly strengthens inhibitory GABAergic transmission by restricting the diffusion dynamics of GABAARs. Together with the observation that Nogo-A signaling regulates excitatory transmission in an opposite manner, these results suggest a crucial role for Nogo-A signaling in modulating the excitation and inhibition balance to restrict synaptic plasticity."	"Bile acids in glucose metabolism and insulin signalling - mechanisms and research needs. Of all the novel glucoregulatory molecules discovered in the past 20 years, bile acids (BAs) are notable for the fact that they were hiding in plain sight. BAs were well known for their requirement in dietary lipid absorption and biliary cholesterol secretion, due to their micelle-forming properties. However, it was not until 1999 that BAs were discovered to be endogenous ligands for the nuclear receptor FXR. Since that time, BAs have been shown to act through multiple receptors (PXR, VDR, TGR5 and S1PR2), as well as to have receptor-independent mechanisms (membrane dynamics, allosteric modulation of N-acyl phosphatidylethanolamine phospholipase D). We now also have an appreciation of the range of physiological, pathophysiological and therapeutic conditions in which endogenous BAs are altered, raising the possibility that BAs contribute to the effects of these conditions on glycaemia. In this Review, we highlight the mechanisms by which BAs regulate glucose homeostasis and the settings in which endogenous BAs are altered, and provide suggestions for future research."	"JTE-013 supplementation improves erectile dysfunction in rats with streptozotocin-induced type Ⅰ diabetes through the inhibition of the rho-kinase pathway, fibrosis, and apoptosis. Erectile dysfunction (ED) is a common complication in patients with diabetes mellitus (DM) that severely affects the patients' quality of life. However, the effectiveness of oral phosphodiesterase type 5 inhibitors in these patients is poor. Sphingosine-1-phosphate (S1P) and S1P receptor 2 (S1PR2) are important factors regulating the Rho-kinase pathway, and understanding these factors may provide ideas for new therapeutic strategies for ED. To investigate whether the S1PR2 receptor antagonist JTE-013 could improve DM-induced ED (DMED) in rats and to explore the potential mechanisms. We used 50 male Sprague Dawley rats (8 weeks old) for this experiment. Type Ⅰ DM was induced in forty-two rats via streptozotocin administration; the rest of the rats served as controls. Eight weeks after DM induction, rats with ED were selected via an apomorphine test. Eight of them were injected intraperitoneally with JTE-013 each day for 4 weeks. The rest were fed under the same conditions for 4 weeks. Erectile function was measured by cavernous nerve electrostimulation. The expression levels of related signaling pathways were evaluated using Western blotting, real-time PCR, and immunohistochemistry. Erectile function was significantly impaired in the DMED group compared with the control group and was partially improved in the DMED + JTE-013 group. The expression of S1PR2 and the activity of the RhoA/ROCK/phospho-myosin phosphatase target subunit 1 (p-MYPT1) pathway proteins were higher in the DMED group than in the other two groups, and JTE-013 treatment significantly reduced the expression/activity of these proteins. Furthermore, the DMED group showed severe corporal fibrosis, a higher apoptotic index and increased activity in the TGF-β1/LIMK2/Cofilin pathway compared with the control group. JTE-013 supplementation significantly ameliorated these pathological changes. JTE-013 supplementation partially improved erectile function in rats with DMED, likely by inhibiting smooth muscle contraction, corporal fibrosis, and apoptosis."	"Sphingosine-1-phosphate induces islet β-cell proliferation and decreases cell apoptosis in high-fat diet/streptozotocin diabetic mice. Sphingosine-1-phosphate (S1P) has been reported to enhance the function of islet β-cells, providing a potential therapeutic target for diabetes mellitus. In the present study, the effects of S1P on the proliferation and apoptosis of β-cells in type 2 diabetic mice were investigated. The mice were administered intraperitoneal S1P solution daily at a dose of 20 µg/kg for three weeks. The intraperitoneal glucose tolerance test (IPGTT) and homeostatic model assessment of insulin resistance (HOMA-IR) index determination were carried out. Immunohistochemical staining was used to detect the protein expression of insulin, antigen Ki-67 and S1P receptor isoforms (S1PR1/S1PR2/S1PR3) in pancreatic islets. Compared with the diabetic control (DC) group, the IPGTT results and HOMA-IR index in the S1P treatment group were decreased. The islets in the S1P group exhibited higher insulin immunostaining intensity than the DC group, as well as higher proliferation (P&lt;0.05) and lower apoptosis rates (P&lt;0.05). Positive staining for the S1P receptors S1PR1, S1PR2 and S1PR3 was observed in the cytoplasm and membrane of the islet cells. S1PR1 and S1PR2 proteins showed increased expression in the S1P and DC groups compared with the normal control group (P&lt;0.01 and P&lt;0.05, respectively), whereas no significant difference was observed in the expression of S1PR3 among these groups. In conclusion, extracellular S1P can induce islet β-cell proliferation and decrease cell apoptosis in diabetic mice. S1P function may be mediated via S1PR1 and S1PR2; therefore, targeting S1P/S1PR signalling pathways may be a novel therapeutic strategy for diabetes mellitus."	"Sphingosine 1-Phosphate Receptor Blockade Affects Pro-Inflammatory Bone Marrow-Derived Macrophages and Relieves Mouse Fatty Liver Injury. Fatty liver injury is characterized by liver fat accumulation and results in serious health problems worldwide. There is no effective treatment that reverses fatty liver injury besides etiological therapy. Inflammation is an important macrophage-involving pathological process of liver injury. Here, we investigated the role of sphingosine 1-phosphate receptors (S1PRs) in fatty liver injury and explored whether S1PR2/3 blockade could cure fatty liver injury. A methionine-choline-deficient and a high-fat (MCDHF) diet was used to induce fatty liver injury, and the number of macrophages was evaluated by flow cytometry. Gene expressions were detected using RT-qPCR and cytometric bead array. In MCDHF-diet-fed mice, pro-inflammatory factor expressions were upregulated by fatty liver injury. The S1P level and S1PR2/3 expressions were significantly elevated. Moreover, increased S1P level and S1PR2/3 mRNA expressions were positively correlated with pro-inflammatory factor expressions in the liver. Furthermore, the number of pro-inflammatory macrophages (iMφ) increased in injured liver, and they were mainly bone-marrow-derived macrophages. In vivo, S1PR2/3 blockade decreased the amount of iMφ and inflammation and attenuated liver injury and fibrosis, although liver fat accumulation was unchanged. These data strongly suggest that anti-inflammatory treatment by blocking the S1P/S1PR2/3 axis attenuates fatty liver injury, which might serve as a potential target for fatty liver injury."	"FTY720P Upregulates the Na+/K+ ATPase in HepG2 Cells by Activating S1PR3 and Inducing PGE2 Release. Liver regeneration is induced by S1P and accompanied with an increase in hepatic Na<sup>+</sup>/K<sup>+</sup> ATPase activity, suggesting a potential modulatory role of the sphingolipid on the ATPase activity. The ability of S1P to alter the ATPase activity was confirmed in a previous work which showed a time dependent effect, with an inhibition appearing at 15min and a stimulation at two hours. The aim of this work was to investigate if FTY720-P, an analogue of S1P used in the treatment of multiple sclerosis, exerts a similar effect at 2 hours. HepG2 cells were treated with FTY720-P for two hours and the activity of the Na<sup>+</sup>/K<sup>+</sup> ATPase was assayed by measuring the amount of inorganic phosphate liberated in presence and absence of ouabain. The involvement of NF-κB in the pathway was investigated by determining changes in the protein expression of IκB. FTY720-P induced a 2.5-fold increase in the activity of the Na<sup>+</sup>/K<sup>+</sup> ATPase which was maintained in the presence of JTE-013, a specific blocker of S1PR2, but disappeared completely in presence of CAY 10444, a specific S1PR3 antagonist. The involvement of S1PR3 was supported by the stimulation observed with Cym5541, a S1PR3 agonist. FTY720-P increased the expression of COX2, and reduced that of IκB. Its effect was not manifested in presence of indomethacin, a COX inhibitor, or in presence of an NF-κB inhibitor. Exogenous PGE2 induced a significant stimulatory effect. Inhibiting PKC and ERK with respectively calphostin C and PD98059 abolished the effect of FTY720-P on the ATPase and on IκB, but not that of exogenous PGE2 indicating that the two kinases are upstream of NF-κB and PGE2. The PKC activator PMA increased the activity of the Na<sup>+</sup>/K<sup>+</sup> ATPase as well as the expression of phopho-ERK, inferring that PKC is upstream of ERK. It was concluded that FTY720-P stimulates the Na<sup>+</sup>/K<sup>+</sup> ATPase via PGE2 by activating sequentially S1PR3, PKC, ERK, NF-κB. The latter enhances COX-2 expression leading to PGE2 release."	"β3-adrenoreceptor blockade reduces tumor growth and increases neuronal differentiation in neuroblastoma via SK2/S1P2 modulation. Neuroblastoma (NB) is the most frequently observed among extracranial pediatric solid tumors. It displays an extreme clinical heterogeneity, in particular for the presentation at diagnosis and response to treatment, often depending on cancer cell differentiation/stemness. The frequent presence of elevated hematic and urinary levels of catecholamines in patients affected by NB suggests that the dissection of adrenergic system is crucial for a better understanding of this cancer. β3-adrenoreceptor (β3-AR) is the last identified member of adrenergic receptors, involved in different tumor conditions, such as melanoma. Multiple studies have shown that the dysregulation of the bioactive lipid sphingosine 1-phosphate (S1P) metabolism and signaling is involved in many pathological diseases including cancer. However, whether S1P is crucial for NB progression and aggressiveness is still under investigation. Here we provide experimental evidence that β3-AR is expressed in NB, both human specimens and cell lines, where it is critically involved in the activation of proliferation and the regulation between stemness/differentiation, via its functional cross-talk with sphingosine kinase 2 (SK2)/S1P receptor 2 (S1P2) axis. The specific antagonism of β3-AR by SR59230A inhibits NB growth and tumor progression, by switching from stemness to cell differentiation both in vivo and in vitro through the specific blockade of SK2/S1P2 signaling."	"Evaluation of S1PR1, pSTAT3, S1PR2, FOXP1 Expression in Aggressive, Mature B Cell Lymphomas. Aggressive, mature B-cell lymphomas include Burkitt Lymphoma (BL), High Grade B Cell Lymphomas (HGBL) (eg, Double-Hit B cell lymphomas (HGBL-DH: HGBL with MYC and BCL2 and/or BCL6 translocations)), HGBL, Not Otherwise Specified (HGBL, NOS) and Diffuse Large B Cell Lymphoma (DLBCL). Overlapping morphologic and immunohistochemical features of these lymphomas pose diagnostic challenges in some cases, and better understanding of potential diagnostic biomarkers and possible therapeutic targets is needed. Sphingosine 1 Phosphate Receptors (S1PR1-5) are G-protein coupled receptors that bind S1P and influence migration and survival in multiple cell types, including lymphocytes. S1PRs are emerging as biomarkers in B cell biology and interaction between S1PR pathways and STAT3 or FOXP1 has been reported in DLBCL. Our aim was to extend the understanding of S1PR1, STAT3 and S1PR2, FOXP1 expression beyond DLBCL, into additional aggressive, mature B cell lymphomas using immunohistochemical expression analysis of human tissue samples. S1PR1 and S1PR2 showed different expression patterns in mantle zones and follicle centers in reactive lymphoid tissue. BL showed a unique expression pattern compared to HGBL and DLBCL. Additionally, S1PR1 and S1PR2 expression were typically mutually exclusive and were expressed in a low proportion of cases (frequently HGBL involving extranodal sites). FOXP1 was expressed in a high proportion of various case types and pSTAT3 was detected in a significant proportion of HGBL and DLBCL. These findings provide further evidence that S1PR1, pSTAT3, S1PR2 and FOXP1 play a role in a subset of aggressive, mature B cell lymphomas."	"Association between sphingosine-1-phosphate-induced signal transduction via mitogen-activated protein kinase pathways and keloid formation. We conducted this experimental study to analyze the relationship between sphingosine-1-phosphate (S1P)-induced mitogen-activated protein (MAP) kinase pathways and keloid formation. We collected samples of the normal tissue and the keloid tissue from 10 normal healthy individuals and 12 patients with keloid scars, respectively. Then, we compared the level of sphingosine-1-phosphate receptor (S1PR1/S1PR2) mRNA/protein expression between the normal tissue and the keloid tissue. Moreover, we also compared the level of S1PR protein expression, that of S1P-induced COL1A1 (collagen Type I, α-1 chain) expression, that of S1P-induced JNK/ERK phosphorylation, that of S1P-induced COL1A1 expression following the treatment with 30 μM PD98059 (ERK inhibitor) or 30 μM SP600125 (JNK inhibitor) and that of S1P-induced COL1A1 expression following the treatment with W146 (S1PR1 inhibitor) or JTE013 (S1PR2 inhibitor) between the normal fibroblasts and the keloid fibroblasts. We found that the level of S1PR1/S1PR2 mRNA/protein expression was significantly higher in the keloid tissue as compared with the normal tissue. Our results also showed that the level of S1P-induced COL1A1 expression and that of S1P-induced JNK/ERK phosphorylation were significantly higher in the keloid fibroblasts as compared with the normal ones (P &lt; 0.05). Furthermore, there were significant decreases in the level of S1P-induced COL1A1 expression when the keloid fibroblasts were treated with 30 μM SP600125 or 30 μM PD98059 and that of S1P-induced COL1A1 expression when the treated with 100 nM W146 or 100 nM JTE013 (P &lt; 0.05). Our results indicate that S1P-induced signal transduction is associated with increased collagen synthesis via S1PR-mediated signaling pathways in the keloid tissue."	"Sphingosine-1-phosphate signaling and the gut-liver axis in liver diseases. The liver is the central organ involved in lipid metabolism and the gastrointestinal (GI) tract is responsible for nutrient absorption and partitioning. Obesity, dyslipidemia and metabolic disorders are of increasing public health concern worldwide, and novel therapeutics that target both the liver and the GI tract (gut-liver axis) are much needed. In addition to aiding fat digestion, bile acids act as important signaling molecules that regulate lipid, glucose and energy metabolism via activating nuclear receptor, G protein-coupled receptors (GPCRs), Takeda G protein receptor 5 (TGR5) and sphingosine-1-phosphate receptor 2 (S1PR2). Sphingosine-1-phosphate (S1P) is synthesized by two sphingosine kinase isoforms and is a potent signaling molecule that plays a critical role in various diseases such as fatty liver, inflammatory bowel disease (IBD) and colorectal cancer. In this review, we will focus on recent findings related to the role of S1P-mediated signaling pathways in the gut-liver axis."	"Bile Acid-Activated Receptors: GPBAR1 (TGR5) and Other G Protein-Coupled Receptors. The BA-responsive GPCRs S1PR2 and TGR5 are almost ubiquitously expressed in human and rodent tissues. In the liver, S1PR2 is expressed in all cell types, while TGR5 is predominately found in non-parenchymal cells. In contrast to S1PR2, which is mainly activated by conjugated bile acids (BAs), all BAs serve as ligands for TGR5 irrespective of their conjugation state and substitution pattern.Mice with targeted deletion of either S1PR2 or TGR5 are viable and develop no overt phenotype. In liver injury models, S1PR2 exerts pro-inflammatory and pro-fibrotic effects and thus aggravates liver damage, while TGR5 mediates anti-inflammatory, anti-cholestatic, and anti-fibrotic effects. Thus, inhibitors of S1PR2 signaling and agonists for TGR5 have been employed to attenuate liver injury in rodent models for cholestasis, nonalcoholic steatohepatitis, and fibrosis/cirrhosis.In biliary epithelial cells, both receptors activate a similar signaling cascade resulting in ERK1/2 phosphorylation and cell proliferation. Overexpression of both S1PR2 and TGR5 was found in human cholangiocarcinoma tissue as well as in CCA cell lines, where stimulation of both GPCRs resulted in transactivation of the epidermal growth factor receptor and triggered cell proliferation as well as increased cell migration and invasiveness.This chapter will focus on the function of S1PR2 and TGR5 in different liver cell types and summarizes current knowledge on the role of these receptors in liver disease models."	"Sphingosine 1-phosphate receptor 2/adenylyl cyclase/protein kinase A pathway is involved in taurolithocholate-induced internalization of Abcc2 in rats. Taurolithocholate (TLC) is a cholestatic bile salt that induces disinsertion of the canalicular transporter Abcc2 (Mrp2, multidrug resistance-associated protein 2). This internalization is mediated by different intracellular signaling proteins such as PI3K, PKCε and MARCK but the initial receptor of TLC remains unknown. A few G protein-coupled receptors interact with bile salts in hepatocytes. Among them, sphingosine-1 phosphate receptor 2 (S1PR2) represents a potential initial receptor for TLC. The aim of this study was to evaluate the role of this receptor and its downstream effectors in the impairment of Abcc2 function induced by TLC. In vitro, S1PR2 inhibition by JTE-013 or its knockdown by small interfering RNA partially prevented the decrease in Abcc2 activity induced by TLC. Moreover, adenylyl cyclase (AC)/PKA and PI3K/Akt inhibition partially prevented TLC effect on canalicular transporter function. TLC produced PKA and Akt activation, which were blocked by JTE-013 and AC inhibitors, connecting S1PR2/AC/PKA and PI3K/Akt in a same pathway. In isolated perfused rat liver, injection of TLC triggered endocytosis of Abcc2 that was accompanied by a sustained decrease in the bile flow and the biliary excretion of the Abcc2 substrate dinitrophenyl-glutathione until the end of the perfusion period. S1PR2 or AC inhibition did not prevent the initial decay, but they accelerated the recovery of these parameters and the reinsertion of Abcc2 into the canalicular membrane. In conclusion, S1PR2 and the subsequent activation of AC, PKA, PI3K and Akt is partially responsible for the cholestatic effects of TLC through sustained internalization of Abcc2."	"Sphingosine-1-Phosphate Facilitates Skin Wound Healing by Increasing Angiogenesis and Inflammatory Cell Recruitment with Less Scar Formation. Wound healing starts with the recruitment of inflammatory cells that secrete wound-related factors. This step is followed by fibroblast activation and tissue construction. Sphingosine-1-phosphate (S1P) is a lipid mediator that promotes angiogenesis, cell proliferation, and attracts immune cells. We investigated the roles of S1P in skin wound healing by altering the expression of its biogenic enzyme, sphingosine kinase-1 (SphK1). The murine excisional wound splinting model was used. Sphingosine kinase-1 (SphK1) was highly expressed in murine wounds and that SphK1<sup>-/-</sup> mice exhibit delayed wound closure along with less angiogenesis and inflammatory cell recruitment. Nanoparticle-mediated topical SphK1 overexpression accelerated wound closure, which associated with increased angiogenesis, inflammatory cell recruitment, and various wound-related factors. The SphK1 overexpression also led to less scarring, and the interaction between transforming growth factor (TGF)-β1 and S1P receptor-2 (S1PR2) signaling is likely to play a key role. In summary, SphK1 play important roles to strengthen immunity, and contributes early wound healing with suppressed scarring. S1P can be a novel therapeutic molecule with anti-scarring effect in surgical, trauma, and chronic wound management."	"Design, synthesis, and in vitro bioactivity evaluation of fluorine-containing analogues for sphingosine-1-phosphate 2 receptor. Twenty eight new aryloxybenzene analogues were synthesized and their in vitro binding potencies toward S1PR2 were determined using a [<sup>32</sup>P]S1P competitive binding assay. Out of these new analogues, three compounds, 28c (IC50 = 29.9 ± 3.9 nM), 28e (IC50 = 14.6 ± 1.5 nM), and 28g (IC50 = 38.5 ± 6.3 nM) exhibited high binding potency toward S1PR2 and high selectivity over the other four receptor subtypes (S1PR1, 3, 4, and 5; IC50 &gt; 1000 nM). Each of the three potent compounds 28c, 28e, and 28g contains a fluorine atom that will allow to develop F-18 labeled PET radiotracers for imaging S1PR2."	"Nogo-A targeted therapy promotes vascular repair and functional recovery following stroke. Stroke is a major cause of serious disability due to the brain's limited capacity to regenerate damaged tissue and neuronal circuits. After ischemic injury, a multiphasic degenerative and inflammatory response is coupled with severely restricted vascular and neuronal repair, resulting in permanent functional deficits. Although clinical evidence indicates that revascularization of the ischemic brain regions is crucial for functional recovery, no therapeutics that promote angiogenesis after cerebral stroke are currently available. Besides vascular growth factors, guidance molecules have been identified to regulate aspects of angiogenesis in the central nervous system (CNS) and may provide targets for therapeutic angiogenesis. In this study, we demonstrate that genetic deletion of the neurite outgrowth inhibitor Nogo-A or one of its corresponding receptors, S1PR2, improves vascular sprouting and repair and reduces neurological deficits after cerebral ischemia in mice. These findings were reproduced in a therapeutic approach using intrathecal anti-Nogo-A antibodies; such a therapy is currently in clinical testing for spinal cord injury. These results provide a basis for a therapeutic blockage of inhibitory guidance molecules to improve vascular and neural repair after ischemic CNS injuries."	"Neural sphingosine 1-phosphate accumulation activates microglia and links impaired autophagy and inflammation. Microglia mediated responses to neuronal damage in the form of neuroinflammation is a common thread propagating neuropathology. In this study, we investigated the microglial alterations occurring as a result of sphingosine 1-phosphate (S1P) accumulation in neural cells. We evidenced increased microglial activation in the brains of neural S1P-lyase (SGPL1) ablated mice (SGPL1<sup>fl/fl/Nes</sup> ) as shown by an activated and deramified morphology and increased activation markers on microglia. In addition, an increase of pro-inflammatory cytokines in sorted and primary cultured microglia generated from SGPL1 deficient mice was noticed. Further, we assessed autophagy, one of the major mechanisms in the brain that keeps inflammation in check. Indeed, microglial inflammation was accompanied by defective microglial autophagy in SGPL1 ablated mice. Rescuing autophagy by treatment with rapamycin was sufficient to decrease interleukin 6 (IL-6) but not tumor necrosis factor (TNF) secretion in cultured microglia. Rapamycin mediated decrease of IL-6 secretion suggests a particular mechanistic target of rapamycin (mTOR)-IL-6 link and appeared to be microglia specific. Using pharmacological inhibitors of the major receptors of S1P expressed in the microglia, we identified S1P receptor 2 (S1PR2) as the mediator of both impaired autophagy and proinflammatory effects. In line with these results, the addition of exogenous S1P to BV2 microglial cells showed similar effects as those observed in the genetic knock out of SGPL1 in the neural cells. In summary, we show a novel role of the S1P-S1PR2 axis in the microglia of mice with neural-targeted SGPL1 ablation and in BV2 microglial cell line exogenously treated with S1P."	"Long-term Western diet intake leads to dysregulated bile acid signaling and dermatitis with Th2 and Th17 pathway features in mice. Dietary interventions are implicated in the development of atopic dermatitis, psoriasis, and acne. To investigate the effect of diet and the bile acid (BA) receptors, such as TGR5 (Takeda G protein receptor 5) and S1PR2 (sphingosine-1-phosphate receptor 2) in the development of dermatitis. C57BL/6 mice were fed a control diet (CD) or Western diet (WD) since weaning until they were 10 months old followed by analyzing histology, gene expression, and BA profiling. Mice developed dermatitis as they aged and the incidence was higher in females than males. Additionally, WD intake substantially increased the incidence of dermatitis. Cutaneous antimicrobial peptide genesS100A8, S100A9, and Defb4 were reduced in WD-fed mice, but increased when mice developed skin lesions. In addition, Tgr5 and TGR5-regulated Dio2 and Nos3 were reduced in WD intake but induced in dermatitic lesions. Trpa1 and Trpv1, which mediate itch, were also increased in dermatitic lesions. The expression of S1pr2 and genes encoding sphingosine kinases, S1P phosphatases, binding protein, and transporter were all reduced by WD intake but elevated in dermatitic lesions. Furthermore, dermatitis development increased total cutaneous BA with an altered profile, which may change TGR5 and S1PR2 activity. Moreover, supplementation with BA sequestrant cholestyramine reduced epidermal thickening as well as cutaneous inflammatory cytokines. In summary, activation of TGR5 and S1PR2, which regulate itch, keratinocyte proliferation, metabolism, and inflammation, may contribute to WD-exacerbated dermatitis with Th2 and Th17 features. In addition, elevated total BA play a significant role in inducing dermatitis and cutaneous inflammation."	"Murine platelet production is suppressed by S1P release in the hematopoietic niche, not facilitated by blood S1P sensing. The bioactive lipid mediator sphingosine 1-phosphate (S1P) was recently assigned critical roles in platelet biology: whereas S1P1 receptor-mediated S1P gradient sensing was reported to be essential for directing proplatelet extensions from megakaryocytes (MKs) toward bone marrow sinusoids, MK sphingosine kinase 2 (Sphk2)-derived S1P was reported to further promote platelet shedding through receptor-independent intracellular actions, and platelet aggregation through S1P1 Yet clinical use of S1P pathway modulators including fingolimod has not been associated with risk of bleeding or thrombosis. We therefore revisited the role of S1P in platelet biology in mice. Surprisingly, no reduction in platelet counts was observed when the vascular S1P gradient was ablated by impairing S1P provision to plasma or S1P degradation in interstitial fluids, nor when gradient sensing was impaired by S1pr1 deletion selectively in MKs. Moreover, S1P1 expression and signaling were both undetectable in mature MKs in situ, and MK S1pr1 deletion did not affect platelet aggregation or spreading. When S1pr1 deletion was induced in hematopoietic progenitor cells, platelet counts were instead significantly elevated. Isolated global Sphk2 deficiency was associated with thrombocytopenia, but this was not replicated by MK-restricted Sphk2 deletion and was reversed by compound deletion of either Sphk1 or S1pr2, suggesting that this phenotype arises from increased S1P export and S1P2 activation secondary to redistribution of sphingosine to Sphk1. Consistent with clinical observations, we thus observe no essential role for S1P1 in facilitating platelet production or activation. Instead, S1P restricts megakaryopoiesis through S1P1, and can further suppress thrombopoiesis through S1P2 when aberrantly secreted in the hematopoietic niche."	"Sphingosine-1-phosphate receptor 2 restrains egress of γδ T cells from the skin. Maintenance of a population of IL-17-committed γδ T cells in the dermis is important in promoting tissue immunity. However, the signals facilitating γδ T cell retention within the dermis remain poorly understood. Here, we find that sphingosine-1-phosphate receptor 2 (S1PR2) acts in a cell-intrinsic manner to oppose γδ T cell migration from the dermis to the skin draining lymph node (dLN). Migration of dermal γδ T cells to the dLN under steady-state conditions occurs in an S1PR1-dependent manner. S1PR1 and CD69 are reciprocally expressed on dermal γδ T cells, with loss of CD69 associated with increased S1PR1 expression and enhanced migration to the dLN. γδ T cells lacking both S1PR2 and CD69 are impaired in their maintenance within the dermis. These findings provide a mechanism for how IL-17<sup>+</sup> γδ T cells establish residence within the dermis and identify a role for S1PR2 in restraining the egress of tissue-resident lymphocytes."	"Vascular modulation through exercise improves chemotherapy efficacy in Ewing sarcoma. Recent studies in mouse models of cancer have shown that exercise improves tumor vascular function, thereby improving chemotherapy delivery and efficacy. However, the mechanisms underlying this improvement remain unclear and the effect of exercise on Ewing sarcoma (ES), a pediatric bone and soft tissue cancer, is unknown. The effect of exercise on tumor vascular hyperpermeability, which inversely correlates with drug delivery to the tumor, has also not been evaluated. We hypothesized that exercise improves chemotherapy efficacy by enhancing its delivery through improving tumor vascular permeability. We treated ES-bearing mice with doxorubicin with or without moderate treadmill exercise. Exercise did not significantly alter ES tumor vessel morphology. However, compared to control mice, tumors of exercised mice had significantly reduced hyperpermeability, significantly decreased hypoxia, and higher doxorubicin penetration. Compared to doxorubicin alone, doxorubicin plus exercise inhibited tumor growth more efficiently. We evaluated endothelial cell sphingosine-1-phosphate receptors 1 and 2 (S1PR1 and S1PR2) as potential mediators of the improved vascular permeability and increased function afforded by exercise. Relative to tumors from control mice, vessels in tumors from exercised mice had increased S1PR1 and decreased S1PR2 expression. Our results support a model in which exercise remodels ES vasculature to reduce vessel hyperpermeability, potentially via modulation of S1PR1 and S1PR2, thereby improving doxorubicin delivery and inhibiting tumor growth more than doxorubicin alone does. Our data suggest moderate aerobic exercise should be tested in clinical trials as a potentially useful adjuvant to standard chemotherapy for patients with ES."	"Long Noncoding RNA H19 Contributes to Cholangiocyte Proliferation and Cholestatic Liver Fibrosis in Biliary Atresia. Biliary atresia (BA) is a neonatal liver disease featuring cholestasis and severe liver fibrosis (LF). Despite advances in the development of surgical treatment, lacking an early diagnostic marker and intervention of LF invariably leads to death from end-stage liver disease in the early years of life. We previously reported that knockout of sphingosine 1-phosphate receptor 2 (S1PR2) protected mice from bile duct ligation (BDL)-induced cholangiocyte proliferation and LF. Our recent studies further showed that both hepatic and serum exosomal long noncoding RNA H19 (lncRNAH19) levels are correlated with cholestatic injury in multidrug resistance 2 knockout (Mdr2<sup>-/-</sup> ) mice. However, the role of lncRNAH19 in BA progression remains unclear. Here, we show that both hepatic and serum exosomal H19 levels are positively correlated with severity of fibrotic liver injuries in BA patients. H19 deficiency protects mice from BDL-induced cholangiocyte proliferation and LF by inhibiting bile-acid-induced expression and activation of S1PR2 and sphingosine kinase 2 (SphK2). Furthermore, H19 acts as a molecular sponge for members of the microRNA let-7 family, which results in up-regulation of high-mobility group AT-hook 2 (HMGA2), a known target of let-7 and enhancement of biliary proliferation. Conclusion: These results indicate that H19 plays a critical role in cholangiocyte proliferation and cholestatic liver injury in BA by regulating the S1PR2/SphK2 and let-7/HMGA2 axis. Serum exosomal H19 may represent a noninvasive diagnostic biomarker and potential therapeutic target for BA."	"RhoA regulates translation of the Nogo-A decoy SPARC in white matter-invading glioblastomas. Glioblastomas strongly invade the brain by infiltrating into the white matter along myelinated nerve fiber tracts even though the myelin protein Nogo-A prevents cell migration by activating inhibitory RhoA signaling. The mechanisms behind this long-known phenomenon remained elusive so far, precluding a targeted therapeutic intervention. This study demonstrates that the prevalent activation of AKT in gliomas increases the ER protein-folding capacity and enables tumor cells to utilize a side effect of RhoA activation: the perturbation of the IRE1α-mediated decay of SPARC mRNA. Once translation is initiated, glioblastoma cells rapidly secrete SPARC to block Nogo-A from inhibiting migration via RhoA. By advanced ultramicroscopy for studying single-cell invasion in whole, undissected mouse brains, we show that gliomas require SPARC for invading into white matter structures. SPARC depletion reduces tumor dissemination that significantly prolongs survival and improves response to cytostatic therapy. Our finding of a novel RhoA-IRE1 axis provides a druggable target for interfering with SPARC production and underscores its therapeutic value."	"S1PR2 antagonist ameliorate high glucose-induced fission and dysfunction of mitochondria in HRGECs via regulating ROCK1. Sphingosine-1-phosphate receptor 2 (S1PR2) is a G-protein-coupled receptor that regulates sphingosine-1-phosphate-triggered cellular response. However, the role of S1PR2 in diabetes-induced glomerular endothelial cell dysfunction remains unclear. This study aims to investigate the effect of S1PR2 blockade on the morphology and function of mitochondria in human renal glomerular endothelial cells (HRGECs). HRGECs were pretreated with a S1PR2 antagonist (JTE-013) or a Rho-associated coiled coil-containing protein kinase 1 (ROCK1) inhibitor (Y27632) for 30 min and then cultured with normal glucose (5.5 mM) or high glucose (30 mM) for 72 h. The protein expression levels of RhoA, ROCK1, and Dynmin-related protein-1(Drp1) were evaluated by immunoblotting; mitochondrial morphology was observed by electron microscopy; intracellular levels of ATP, ROS, and Ca<sup>2+</sup> were measured by ATPlite, DCF-DA, and Rhod-2 AM assays, respectively. Additionally, the permeability, apoptosis, and migration of cells were determined to evaluate the effects of S1PR2 and ROCK1 inhibition on high glucose-induced endothelial dysfunction. High glucose induced mitochondrial fission and dysfunction, indicated by increased mitochondrial fragmentation, ROS generation, and calcium overload but decreased ATP production. High glucose also induced endothelial cell dysfunction, indicated by increased permeability and apoptosis but decreased migration. However, inhibition of either S1PR2 or ROCK1 almost completely blocked these high glucose-mediated cellular responses. Furthermore, inhibiting S1PR2 resulted in the deceased expression of RhoA, ROCK1, and Drp1 while inhibiting ROCK1 led to the downregulated expression of Drp1. S1PR2 antagonist modulates the morphology and function of mitochondria in HRGECs via the positive regulation of the RhoA/ROCK1/Drp1 signaling pathway, suggesting that the S1PR2/ROCK1 pathway may play a crucial role in high glucose milieu."	"G-protein coupled receptors and ligands that organize humoral immune responses. B-cell responses are dynamic processes that depend on multiple types of interactions. Rare antigen-specific B cells must encounter antigen and specialized systems are needed-unique to each lymphoid tissue type-to ensure this happens efficiently. Lymphoid tissue barrier cells act to ensure that pathogens, while being permitted entry for B-cell recognition, are blocked from replication or dissemination. T follicular helper (Tfh) cells often need to be primed by dendritic cells before supporting B-cell responses. For most responses, antigen-specific helper T cells and B cells need to interact, first to initiate clonal expansion and the plasmablast response, and later to support the germinal center (GC) response. Newly formed plasma cells need to travel to supportive niches. GC B cells must become confined to the follicle center, organize into dark and light zones, and interact with Tfh cells. Memory B cells need to be positioned for rapid responses following reinfection. Each of these events requires the actions of multiple G-protein coupled receptors (GPCRs) and their ligands, including chemokines and lipid mediators. This review will focus on the guidance cue code underlying B-cell immunity, with an emphasis on findings from our laboratory and on newer advances in related areas. We will discuss our recent identification of geranylgeranyl-glutathione as a ligand for P2RY8. Our goal is to provide the reader with a focused knowledge about the GPCRs guiding B-cell responses and how they might be therapeutic targets, while also providing examples of how multiple types of GPCRs can cooperate or act iteratively to control cell behavior."	"Hyperglycemia-Triggered Sphingosine-1-Phosphate and Sphingosine-1-Phosphate Receptor 3 Signaling Worsens Liver Ischemia/Reperfusion Injury by Regulating M1/M2 Polarization. Hyperglycemia aggravates hepatic ischemia/reperfusion injury (IRI), but the underlying mechanism for the aggravation remains elusive. Sphingosine-1-phosphate (S1P) and sphingosine-1-phosphate receptors (S1PRs) have been implicated in metabolic and inflammatory diseases. Here, we discuss whether and how S1P/S1PRs are involved in hyperglycemia-related liver IRI. For our in vivo experiment, we enrolled diabetic patients with benign hepatic disease who had liver resection, and we used streptozotocin (STZ)-induced hyperglycemic mice or normal mice to establish a liver IRI model. In vitro bone marrow-derived macrophages (BMDMs) were differentiated in high-glucose (HG; 30 mM) or low-glucose (LG; 5 mM) conditions for 7 days. The expression of S1P/S1PRs was analyzed in the liver and BMDMs. We investigated the functional and molecular mechanisms by which S1P/S1PRs may influence hyperglycemia-related liver IRI. S1P levels were higher in liver tissues from patients with diabetes mellitus and mice with STZ-induced diabetes. S1PR3, but not S1PR1 or S1PR2, was activated in liver tissues and Kupffer cells under hyperglycemic conditions. The S1PR3 antagonist CAY10444 attenuated hyperglycemia-related liver IRI based on hepatic biochemistry, histology, and inflammatory responses. Diabetic livers expressed higher levels of M1 markers but lower levels of M2 markers at baseline and after ischemia/reperfusion. Dual-immunofluorescence staining showed that hyperglycemia promoted M1 (CD68/CD86) differentiation and inhibited M2 (CD68/CD206) differentiation. Importantly, CAY10444 reversed hyperglycemia-modulated M1/M2 polarization. HG concentrations in vitro also triggered S1P/S1PR3 signaling, promoted M1 polarization, inhibited M2 polarization, and enhanced inflammatory responses compared with LG concentrations in BMDMs. In contrast, S1PR3 knockdown significantly retrieved hyperglycemia-modulated M1/M2 polarization and attenuated inflammation. In conclusion, our study reveals that hyperglycemia specifically triggers S1P/S1PR3 signaling and exacerbates liver IRI by facilitating M1 polarization and inhibiting M2 polarization, which may represent an effective therapeutic strategy for liver IRI in diabetes."	"CD4 T cell sphingosine 1-phosphate receptor (S1PR)1 and S1PR4 and endothelial S1PR2 regulate afferent lymphatic migration. Sphingosine 1-phosphate (S1P) and S1P receptors (S1PRs) regulate migration of lymphocytes out of thymus to blood and lymph nodes (LNs) to efferent lymph, whereas their role in other tissue sites is not known. Here, we investigated the question of how these molecules regulate leukocyte migration from tissues through afferent lymphatics to draining LNs (dLNs). S1P, but not other chemokines, selectively enhanced human and murine CD4 T cell migration across lymphatic endothelial cells (LECs). T cell S1PR1 and S1PR4, and LEC S1PR2, were required for migration across LECs and into lymphatic vessels and dLNs. S1PR1 and S1PR4 differentially regulated T cell motility and vascular cell adhesion molecule-1 (VCAM-1) binding. S1PR2 regulated LEC layer structure, permeability, and expression of the junction molecules VE-cadherin, occludin, and zonulin-1 through the ERK pathway. S1PR2 facilitated T cell transcellular migration through VCAM-1 expression and recruitment of T cells to LEC migration sites. These results demonstrated distinct roles for S1PRs in comodulating T cell and LEC functions in migration and suggest previously unknown levels of regulation of leukocytes and endothelial cells during homeostasis and immunity."	"FTY720 alleviates coxsackievirus B3-induced myocarditis and inhibits viral replication through regulating sphingosine 1-phosphate receptors and AKT/caspase-3 pathways. Fingolimod (FTY720) after phosphorylation, as the ligand of sphingosine 1-phosphate receptors (S1PRs), plays an important role in cell proliferation and differentiation. In this article, FTY720 in the treatment of coxsackievirus B3 (CVB3)-induced viral myocarditis was closely related to apoptosis and AKT/caspase-3 apoptotic pathways. We found that CVB3 inhibited myocardial apoptosis at the early stage with upregulating p-AKT level and downregulating activated caspase-3 level for replication of virus progeny, whereas it promoted apoptosis at a late stage with downregulating p-AKT and upregulating activated caspase-3 for releasing the newly synthesized virus to spread. Interestingly, FTY720 could reverse this trend; it promoted apoptosis at an early stage and inhibited apoptosis at the late stage in vivo and vitro, which proved the antiviral effect. We also found that S1PR1, S1PR4, and S1PR5, rather than S1PR2 and S1PR3, were regulated by FTY720 in this process. The results confirmed that FTY720 alleviates CVB3-induced myocarditis and inhibits viral replication through regulating S1PRs and AKT/caspase-3 pathways with a bidirectional regulation of apoptosis."	"Bile Acid Receptors and Gastrointestinal Functions. Bile acids modulate several gastrointestinal functions including electrolyte secretion and absorption, gastric emptying, and small intestinal and colonic motility. High concentrations of bile acids lead to diarrhea and are implicated in the development of esophageal, gastric and colonic cancer. Alterations in bile acid homeostasis are also implicated in the pathophysiology of irritable bowel syndrome (IBS) and inflammatory bowel disease (IBD). Our understanding of the mechanisms underlying these effects of bile acids on gut functions has been greatly enhanced by the discovery of bile acid receptors, including the nuclear receptors: farnesoid X receptor (FXR), vitamin D receptor (VDR), pregnane X receptor (PXR), and constitutive androstane receptor (CAR); and the G protein-coupled receptors: Takeda G protein-coupled receptor (TGR5), sphingosine-1-phosphate receptor 2 (S1PR2), and muscarinic acetylcholine receptor M3 (M3R).. For example, various studies provided evidence demonstrating the anti-inflammatory effects FXR and TGR5 activation in models of intestinal inflammation. In addition, TGR5 activation in enteric neurons was recently shown to increase colonic motility, which may lead to bile acid-induced diarrhea. Interestingly, TGR5 induces the secretion of glucagon-like peptide-1 (GLP-1) from L-cells to enhance insulin secretion and modulate glucose metabolism. Because of the importance of these receptors, agonists of TGR5 and intestine-specific FXR agonists are currently being tested as an option for the treatment of diabetes mellitus and primary bile acid diarrhea, respectively. This review summarizes current knowledge of the functional roles of bile acid receptors in the gastrointestinal tract."	"Human Keratinocytes Use Sphingosine 1-Phosphate and its Receptors to Communicate Staphylococcus aureus Invasion and Activate Host Defense. Sphingosine 1-phosphate (S1P) is a bioactive lipid mediator generated when a cell membrane or its components are damaged by various factors. S1P regulates diverse cell activities via S1P receptors (S1PRs). Keratinocytes express S1PR1-5. Although it is known that S1PRs control keratinocyte differentiation, apoptosis, and wound healing, S1PR functions in keratinocyte infections have not been fully elucidated. We propose that the S1P-S1PR axis in keratinocytes works as a biosensor for bacterial invasion. Indeed, in human impetigo infection, we found high epidermal expression of S1PR1 and S1PR2 in the skin. Furthermore, in normal human epidermal keratinocytes in vitro, treatment with Staphylococcus aureus bacterial supernatant not only induced S1P production but also increased the transcription of S1PR2, confirming our in vivo observation, as well as increased the levels of TNFA, IL36G, IL6, and IL8 mRNAs. However, direct treatment of normal human epidermal keratinocytes with S1P increased the expressions of IL36G, TNFA, and IL8, but not IL6. In both S1P- and S. aureus bacterial supernatant-treated normal human epidermal keratinocytes, S1PR1 knockdown reduced IL36G, TNFA, and IL8 transcription, and the S1PR2 antagonist JTE013 blocked the secretion of these cytokines. Overall, we have proven that during infections, keratinocytes communicate damage by using S1P release and tight control of S1PR1 and 2."	"Sphingosine-1-phosphate activates mouse vagal airway afferent C-fibres via S1PR3 receptors. Sphingosine-1-phosphate (S1P) strongly activates mouse vagal C-fibres in the airways. Airway-specific nodose and jugular C-fibre neurons express mRNA coding for the S1P receptor S1PR3. S1P activation of nodose C-fibres is inhibited by a S1PR3 antagonist. S1P activation of nodose C-fibres does not occur in S1PR3 knockout mice. We evaluated the effect of sphingosine-1-phosphate (S1P), a lipid that is elevated during airway inflammatory conditions like asthma, for its ability to stimulate vagal afferent C-fibres in mouse lungs. Single cell RT-PCR on lung-specific vagal afferent neurons revealed that both TRPV1-expressing and TRPV1-non-expressing nodose neurons express mRNA coding for the S1P receptor S1PR3. TRPV1-expressing airway-specific jugular ganglion neurons also express S1PR3 mRNA. S1PR1 and S1PR2 mRNAs were also found to be expressed but only in a limited subset (32% and 22%, respectively) of airway-specific vagal sensory neurons; whereas S1PR4 and S1PR5 were rarely expressed. We used large scale two-photon imaging of the nodose ganglia from our ex vivo preparation isolated from Pirt-Cre;R26-GCaMP6s transgenic mice, which allows for simultaneous monitoring of calcium transients in ∼1000 neuronal cell bodies in the ganglia during tracheal perfusion with S1P (10 μM). We found that S1P in the lungs strongly activated 81.5% of nodose fibres, 70% of which were also activated by capsaicin. Single fibre electrophysiological recordings confirmed that S1P evoked action potential (AP) generation in a concentration-dependent manner (0.1-10 μM). Action potential generation by S1P in nodose C-fibres was effectively inhibited by the S1PR3 antagonist TY 52156 (10 μM). Finally, in S1PR3 knockout mice, S1P was not able to activate any of the airway nodose C-fibres analysed. These results support the hypothesis that S1P may play a role in evoking C-fibre-mediated airway sensations and reflexes that are associated with airway inflammatory diseases."	"Sphingosine 1 Phosphate (S1P) Increased IL-6 Expression and Cell Growth in Endometriotic Cells. There is growing evidence that sphingosine 1-phosphate (S1P) is involved in inflammatory diseases. As endometriosis is known as an inflammatory disease, we investigated the role of S1P system in the development of endometriosis. The expression of sphingosine kinase (SphK) 1 in endometriosis lesions was examined by immunohistochemistry. The cystic fluid of ovarian cysts/tumors were obtained to measure S1P concentrations. Endometriotic stromal cells (ESC) derived from endometrioma were used for in vitro experiments. Sphingosine kinase 1 was detected in epithelium and stromal cells of endometriotic lesions. The mean S1P concentration in the cystic fluid of endometriomas was higher than that in nonendometriomas significantly (98.2 nM vs less than 1.5 nM, P &lt; .01). Interleukin-1β (IL-1β) or transforming growth factor-β exhibited 2.7-fold and 11.5-fold increase in SphK1 messenger RNA (mRNA) expression in ESC, respectively (P &lt; .01). Higher dose of S1P (125nM) increased the cell number of ESC by 20%, and low dose of S1P (1.25 nM and 12.5 nM) induced IL-6 mRNA production and IL-6 secretion by ESC dose-dependently. JTE013, an antagonist for S1PR2, partially suppressed IL-6 induction by S1P (P &lt; .05). JTE013 and VPC23019, an antagonist for S1PR1 and S1PR3, suppressed the ESC proliferation induced by S1P. The present study for the first time proved that the SphK-S1P-S1PR axis play a role of accelerating inflammation and growth of endometriotic cells."	"S1PR2 deficiency enhances neuropathic pain induced by partial sciatic nerve ligation Sphingosine 1-phosphate receptor 2 (S1PR2), a member of the seven-transmembrane receptor family, can be activated by its natural ligand sphingosine 1-phosphate (S1P) to initiate signal transduction and is involved in a wide range of biological effects such as immune cell migration and vascular permeability. Its relationship with neuropathic pain (NP) has not been reported. In this study, the effects of S1PR2 on the development of NP were studied. We generated a model of NP by partial sciatic nerve ligation (pSNL). The 50% paw withdrawal threshold of the wild-type (WT) group and the S1PR2 deficiency group were measured at several time points after surgery. The inflammatory factor levels of the two groups were measured by real-time quantitative polymerase chain reaction (RT-PCR). Neutrophil infiltration and glial cell activation were detected by immunofluorescence. Matrix metalloproteinase 9 (MMP9) and its substrate myelin basic protein (MBP) were measured by RT-PCR, western blotting, and immunofluorescence. The S1PR2 deficiency group showed a reduction in 50% paw withdrawal threshold compared with WT mice (P &lt; 0.05) at 3 days after the operation. In the ligated sciatic nerve of the S1PR2 deficiency group, the mRNA expression of IL-1β was increased; the numbers of infiltrating neutrophils and activated astrocytes were also increased. The expression of MMP9 was elevated while MBP was decreased. S1PR2 deficiency could increase the pain sensitivity of a NP mouse model and promote the development of NP"	"Sphingosine 1 phosphate receptor-1 (S1P1) promotes tumor-associated regulatory T cell expansion: leading to poor survival in bladder cancer. Regulatory T cells (Tregs) represent an important contributor to cancer immune escape, but the molecular mechanism responsible for Treg expansion in tumors is heterogeneous and unclear. Here, we investigated the role of S1P1, a receptor of the bioactive lipid sphingosine 1-phosphate (S1P), in regulating the crosstalk between tumor cells and tumor-associated Tregs in bladder cancer (BC). We found that the frequency of CD4<sup>+</sup>Foxp3<sup>+</sup> Tregs was increased in circulating and tumor-infiltrating lymphocytes from BC patients. S1P1 expression was upregulated in BC tissues compared with tumor-adjacent tissues and was positively correlated with the density of tumor-infiltrated Foxp3<sup>+</sup> Tregs. Both S1P1 and Treg predicted poor overall survival in BC patients. The in vitro data paralleled the in vivo data and suggested that the activation or overexpression of S1P1 in BC cells promoted the generation of BC-induced (i)Tregs from CD4<sup>+</sup>CD25<sup>-</sup>cells, and the generation of these cells was reversed by treatment with anti-IL-10 or anti-TGF-β. Moreover, S1P1 promoted Treg migration mediated by BC cells. Mechanistically, S1P1 activated the TGF-β signaling pathway, leading to the secretion of TGF-β and IL-10 from BC cells. In total, our findings suggest that S1P1 induces tumor-derived Treg expansion in a cell-specific manner and serves as a potent prognostic biomarker and therapeutic target in BC."	"Differential expression of S1P receptor subtypes in human bladder transitional cell carcinoma. Sphingosine 1 phosphate (S1P), S1P receptors (S1PRs) and their signaling pathways play an important role in the fate of cancer cells. The expression pattern of S1PR subtypes (S1PR1-S1PR5) may alter in cancer development stages, depending on the origin and the pathologic features of tumors. The present study aimed to examine the relationship between plasma S1P levels and the expression of S1PR subtypes in bladder tumors. These changes were evaluated in terms of the pathologic grades and stages of human bladder cancer samples. For this, tumor biopsies from 41 new bladder cancer patients as well as 26 normal-looking bladder tissues were collected and processed for immunohistochemistry (IHC) and quantitative real-time RT-PCR of S1PR subtypes. Plasma S1P level was measured using liquid chromatography-tandem mass spectrometry (LC-MS/MS). The results show that tissue S1PR1, S1PR2 and S1PR3 are over-expressed in all tumors regardless of their pathological grade (~ 3, ~ 6 and ~ 104 folds, respectively). These results were corroborated by IHC data showing accumulation of S1PR subtypes 1 and 2 in the tissues. Plasma S1P in the plasma samples from patients was in the range of control samples (Controls; 256 ± 47; patients, 270 ± 41). Overexpression of S1PR1, S1PR2 and S1PR3 in bladder tumor biopsies which were corroborated with the pathological grades and stages may suggest that S1PR profile in tumor biopsies is a promising marker in the diagnosis of bladder carcinoma."	"Regulation of S1PR2 by the EBV oncogene LMP1 in aggressive ABC-subtype diffuse large B-cell lymphoma. The Epstein-Barr virus (EBV) is found almost exclusively in the activated B-cell (ABC) subtype of diffuse large B-cell lymphoma (DLBCL), yet its contribution to this tumour remains poorly understood. We have focused on the EBV-encoded latent membrane protein-1 (LMP1), a constitutively activated CD40 homologue expressed in almost all EBV-positive DLBCLs and which can disrupt germinal centre (GC) formation and drive lymphomagenesis in mice. Comparison of the transcriptional changes that follow LMP1 expression with those that follow transient CD40 signalling in human GC B cells enabled us to define pathogenic targets of LMP1 aberrantly expressed in ABC-DLBCL. These included the down-regulation of S1PR2, a sphingosine-1-phosphate (S1P) receptor that is transcriptionally down-regulated in ABC-DLBCL, and when genetically ablated leads to DLBCL in mice. Consistent with this, we found that LMP1-expressing primary ABC-DLBCLs were significantly more likely to lack S1PR2 expression than were LMP1-negative tumours. Furthermore, we showed that the down-regulation of S1PR2 by LMP1 drives a signalling loop leading to constitutive activation of the phosphatidylinositol-3-kinase (PI3-K) pathway. Finally, core LMP1-PI3-K targets were enriched for lymphoma-related transcription factors and genes associated with shorter overall survival in patients with ABC-DLBCL. Our data identify a novel function for LMP1 in aggressive DLBCL. Copyright © 2019 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Bile acids increase steroidogenesis in cholemic mice and induce cortisol secretion in adrenocortical H295R cells via S1PR2, ERK and SF-1. Bile acids are now accepted as central signalling molecules for the regulation of glucose, amino acid and lipid metabolism. Adrenal gland cortex cells express the bile acid receptors farnesoid X receptor (FXR), the G protein-coupled bile acid receptor (TGR5) and the sphingosine-1-phosphate receptor 2 (S1PR2). We aimed to determine the effects of cholestasis and more specifically of bile acids on cortisol production. FXR and TGR5 knockout mice and controls were subjected to common bile duct ligation (CBDL) or chenodeoxycholic acid (CDCA) feeding to model cholestasis. Human adrenocortical H295R cells were challenged with bile acids for mechanistic studies. We found that CBDL and CDCA feeding increased the levels of corticosterone, the rodent equivalent to human cortisol and mRNA and protein levels of steroidogenesis-related enzymes in adrenals independent of FXR and TGR5. Taurine-conjugated CDCA (TCDCA) significantly stimulated cortisol secretion, phosphorylation of extracellular signal-regulated kinase (ERK) and expression of steroidogenesis-related genes in human adrenocortical H295R cells. FXR and TGR5 agonists failed to induce cortisol secretion in H295R cells. S1PR2 inhibition significantly abolished TCDCA-induced cortisol secretion, lowered phosphorylation of ERK and abrogated enhanced transcription of steroidogenesis-related genes in H295R cells. Likewise, siRNA S1PR2 treatment reduced the phosphorylation of ERK and cortisol secretion. Steroidogenic factor-1 (SF-1) transactivation activity was increased upon TCDCA treatment suggesting that bile acid signalling is linked to SF-1. Treatment with SF-1 inverse agonist AC45594 also reduced TCDCA-induced steroidogenesis. Our findings indicate that supraphysiological bile acid levels as observed in cholestasis stimulate steroidogenesis via an S1PR2-ERK-SF-1 signalling pathway."	"Rapamycin and FTY720 Alleviate Atherosclerosis by Cross Talk of Macrophage Polarization and Autophagy. Foam cell formation and macrophage polarization are involved in the pathologic development of atherosclerosis, one of the most important human diseases affecting large and medium artery walls. This study was designed to assess the effects of rapamycin and FTY720 (fingolimod) on macrophages and foam cells. Mouse peritoneal macrophages were collected and treated with rapamycin and FTY720 to study autophagy, polarization, and lipid accumulation. Next, foam cells were formed by oxidizing low-density lipoprotein to observe changes in lipid accumulation, autophagy, and polarization in rapamycin-treated or FTY720-treated foam cells. Lastly, foam cells that had been treated with rapamycin and FTY720 were evaluated for sphingosine 1-phosphate receptor (S1prs) expression. Autophagy microtubule-associated protein 1 light chain 3- (LC3-) II was increased, and classically activated macrophage phenotype markers interleukin- (IL-) 6, cyclooxygenase-2 (COX2), and inducible nitric oxide synthase (iNOS) were increased, whereas alternatively activated macrophage phenotype markers transforming growth factor- (TGF-) β, arginase 1 (Arg1), and mannose receptor C-type 1 (Mrc1) were decreased by rapamycin in peritoneal macrophages. LC3-II was also obviously enhanced, though polarization markers were unchanged in rapamycin-treated foam cells. Moreover, lipid accumulation was inhibited in rapamycin-treated macrophage cells but was unchanged in rapamycin-treated foam cells. For FTY720, LC3-II did not change, whereas TGF-β, Arg1 and Mrc1 were augmented, and IL-6 was suppressed in macrophages. However, LC3-II was increased, and TGF-β, ARG1 and MRC1 were strikingly augmented, whereas IL-6, COX2 and iNOS could be suppressed in foam cells. Furthermore, lipid accumulation was alleviated in FTY720-treated foam cells. Additionally, S1pr1 was markedly decreased in foam cells (P &lt; .05); S1pr2, S1pr3, S1pr4 and S1pr5 were unchanged in rapamycin-treated foam cells. In FTY720-treated foam cells, S1pr3 and S1pr4 were decreased, and S1pr1, S1pr2 and S1pr5 were unchanged. Therefore, we deduced that rapamycin stimulated classically activated macrophages and supressed early atherosclerosis. Rapamycin may also stabilize artery plaques by preventing apoptosis and S1PR1 in advanced atherosclerosis. FTY720 allowed transformation of foam cells into alternatively activated macrophages through the autophagy pathway to alleviate advanced atherosclerosis."	"Sphingosine-1-Phosphate Receptor 2 Controls Podosome Components Induced by RANKL Affecting Osteoclastogenesis and Bone Resorption. Proinflammatory cytokine production, cell chemotaxis, and osteoclastogenesis can lead to inflammatory bone loss. Previously, we showed that sphingosine-1-phosphate receptor 2 (S1PR2), a G protein coupled receptor, regulates inflammatory cytokine production and osteoclastogenesis. However, the signaling pathways regulated by S1PR2 in modulating inflammatory bone loss have not been elucidated. Herein, we demonstrated that inhibition of S1PR2 by a specific S1PR2 antagonist (JTE013) suppressed phosphoinositide 3-kinase (PI3K), mitogen-activated protein kinases (MAPKs), and nuclear factor kappa-B (NF-κB) induced by an oral bacterial pathogen, Aggregatibacter actinomycetemcomitans, and inhibited the release of IL-1β, IL-6, TNF-α, and S1P in murine bone marrow cells. In addition, shRNA knockdown of S1PR2 or treatment by JTE013 suppressed cell chemotaxis induced by bacteria-stimulated cell culture media. Furthermore, JTE013 suppressed osteoclastogenesis and bone resorption induced by RANKL in murine bone marrow cultures. ShRNA knockdown of S1PR2 or inhibition of S1PR2 by JTE013 suppressed podosome components, including PI3K, Src, Pyk2, integrin β3, filamentous actin (F-actin), and paxillin levels induced by RANKL in murine bone marrow cells. We conclude that S1PR2 plays an essential role in modulating proinflammatory cytokine production, cell chemotaxis, osteoclastogenesis, and bone resorption. Inhibition of S1PR2 signaling could be a novel therapeutic strategy for bone loss associated with skeletal diseases."	"Characterizing Sphingosine Kinases and Sphingosine 1-Phosphate Receptors in the Mammalian Eye and Retina. Sphingosine 1-phosphate (S1P) signaling regulates numerous biological processes including neurogenesis, inflammation and neovascularization. However, little is known about the role of S1P signaling in the eye. In this study, we characterize two sphingosine kinases (SPHK1 and SPHK2), which phosphorylate sphingosine to S1P, and three S1P receptors (S1PR1, S1PR2 and S1PR3) in mouse and rat eyes. We evaluated sphingosine kinase and S1P receptor gene expression at the mRNA level in various rat tissues and rat retinas exposed to light-damage, whole mouse eyes, specific eye structures, and in developing retinas. Furthermore, we determined the localization of sphingosine kinases and S1P receptors in whole rat eyes by immunohistochemistry. Our results unveiled unique expression profiles for both sphingosine kinases and each receptor in ocular tissues. Furthermore, these kinases and S1P receptors are expressed in mammalian retinal cells and the expression of SPHK1, S1PR2 and S1PR3 increased immediately after light damage, which suggests a function in apoptosis and/or light stress responses in the eye. These findings have numerous implications for understanding the role of S1P signaling in the mechanisms of ocular diseases such as retinal inflammatory and degenerative diseases, neovascular eye diseases, glaucoma and corneal diseases."	"Sphingosine 1-phosphate (S1P) reduces hepatocyte growth factor-induced migration of hepatocellular carcinoma cells via S1P receptor 2. A bioactive lipid, sphingosine 1-phosphate (S1P), acts extracellularly as a potent mediator, and is implicated in the progression of various cancers including hepatocellular carcinoma (HCC). S1P exerts its functions by binding to five types of specific receptors, S1P receptor 1 (S1PR1), S1PR2, S1PR3, S1PR4 and S1PR5 on the plasma membrane. However, the exact roles of S1P and each S1PR in HCC cells remain to be clarified. In the present study, we investigated the effect of S1P on the hepatocyte growth factor (HGF)-induced migration of human HCC-derived HuH7 cells, and the involvement of each S1PR. S1P dose-dependently reduced the HGF-induced migration of HuH7 cells. We found that all S1PRs exist in the HuH7 cells. Among each selective agonist for five S1PRs, CYM5520, a selective S1PR2 agonist, significantly suppressed the HGF-induced HuH7 cell migration whereas selective agonists for S1PR1, S1PR3, S1PR4 or S1PR5 failed to affect the migration. The reduction of the HGF-induced migration by S1P was markedly reversed by treatment of JTE013, a selective antagonist for S1PR2, and S1PR2- siRNA. These results strongly suggest that S1P reduces the HGF-induced HCC cell migration via S1PR2. Our findings may provide a novel potential of S1PR2 to therapeutic strategy for metastasis of HCC."	"Endothelial Differentiation G Protein-Coupled Receptor 5 Plays an Important Role in Induction and Maintenance of Pluripotency. Direct reprogramming of human somatic cells toward induced pluripotent stem cells holds great promise for regenerative medicine and basic biology. We used a high-throughput small interfering RNA screening assay in the initiation phase of reprogramming for 784 genes belonging to kinase and phosphatase families and identified 68 repressors and 22 effectors. Six new candidates belonging to the family of the G protein-coupled receptors (GPCRs) were identified, suggesting an important role for this key signaling pathway during somatic cell-induced reprogramming. Downregulation of one of the key GPCR effectors, endothelial differentiation GPCR5 (EDG5), impacted the maintenance of pluripotency, actin cytoskeleton organization, colony integrity, and focal adhesions in human embryonic stem cells, which were associated with the alteration in the RhoA-ROCK-Cofilin-PAXILLIN-actin signaling pathway. Similarly, downregulation of EDG5 during the initiation stage of somatic cell-induced reprogramming resulted in alteration of cytoskeleton, loss of human-induced pluripotent stem cell colony integrity, and a significant reduction in partially and fully reprogrammed cells as well as the number of alkaline phosphatase positive colonies at the end of the reprogramming process. Together, these data point to an important role of EDG5 in the maintenance and acquisition of pluripotency. Stem Cells 2019;37:318-331."	"Regulation of bile acid receptor activity<sup>☆</sup>. Many receptors can be activated by bile acids (BAs) and their derivatives. These include nuclear receptors farnesoid X receptor (FXR), pregnane X receptor (PXR), and vitamin D receptor (VDR), as well as membrane receptors Takeda G protein receptor 5 (TGR5), sphingosine-1-phosphate receptor 2 (S1PR2), and cholinergic receptor muscarinic 2 (CHRM2). All of them are implicated in the development of metabolic and immunological diseases in response to endobiotic and xenobiotic exposure. Because epigenetic regulation is critical for organisms to adapt to constant environmental changes, this review article summarizes epigenetic regulation as well as post-transcriptional modification of bile acid receptors. In addition, the focus of this review is on the liver and digestive tract although these receptors may have effects on other organs. Those regulatory mechanisms are implicated in the disease process and critically important in uncovering innovative strategy for prevention and treatment of metabolic and immunological diseases."	"Acute Myocardial Infarction, Cardioprotection, and Muse Cells. Acute myocardial infarction (AMI) is a common cause of morbidity and mortality worldwide. Severe MI leads to heart failure due to a marked loss of functional cardiomyocytes. First-line treatment for AMI is to reperfuse the occluded coronary artery by PCI as soon as possible. Besides PCI, there are several therapies to reduce the infarct size and improve the cardiac function and remodeling. These are drug therapies such as pharmacological pre- and postconditioning, cytokine therapies, and stem cell therapies. None of these therapies have been clinically developed as a standard treatment for AMI. Among many cell sources for stem cell therapies, the Muse cell is an endogenous non-tumorigenic pluripotent stem cell, which is able to differentiate into cells of all three germ layers from a single cell, suggesting that the Muse cell is a potential cell source for regenerative medicine. Endogenous Muse cell dynamics in the acute phase plays an important role in the prognosis of AMI patients; AMI patients with a higher number of Muse cells in the peripheral blood in the acute phase show more favorable improvement of the cardiac function and remodeling in the chronic phase, suggesting their innate reparative function for the heart. Intravenously administered exogenous Muse cells engrafted preferentially and efficiently to infarct border areas via the S1P-S1PR2 axis and differentiated spontaneously into working cardiomyocytes and vessels, showed paracrine effects, markedly reduced the myocardial infarct size, and delivered long-lasting improvement of the cardiac function and remodeling for 6 months. These findings suggest that Muse cells are reparative stem cells, and thus their clinical application is warranted."	"Inactivation of sphingosine-1-phosphate receptor 2 (S1PR2) decreases demyelination and enhances remyelination in animal models of multiple sclerosis. Multiple sclerosis is an inflammatory disease of the central nervous system (CNS) in which multiple sites of blood-brain barrier (BBB) disruption, focal inflammation, demyelination and tissue destruction are the hallmarks. Here we show that sphingosine-1-phosphate receptor 2 (S1PR2) has a negative role in myelin repair as well as an important role in demyelination by modulating BBB permeability. In lysolecithin-induced demyelination of adult mouse spinal cord, S1PR2 inactivation by either the pharmacological inhibitor JTE-013 or S1PR2 gene knockout led to enhanced myelin repair as determined by higher numbers of differentiated oligodendrocytes and increased numbers of remyelinated axons at the lesion sites. S1PR2 inactivation in lysolecithin-induced demyelination of the optic chiasm, enhanced oligodendrogenesis and improved the behavioral outcome in an optokinetic reflex test. In order to see the effect of S1PR2 inactivation on demyelination, experimental autoimmune encephalitis (EAE) was induced by MOG-peptide. S1PR2 inhibition or knockout decreased the extent of demyelinated areas as well as the clinical disability in this EAE model. Both toxin induced and EAE models showed decreased BBB leakage and reduced numbers of Iba1<sup>+</sup> macrophages following S1PR2 inactivation. Our results suggest that S1PR2 activity impairs remyelination and also enhances BBB leakage and demyelination. The former effect could be mediated by Nogo-A, as antagonism of this factor enhances remyelination and S1PR2 can act as a Nogo-A receptor."	"Syntheses and in vitro biological evaluation of S1PR1 ligands and PET studies of four F-18 labeled radiotracers in the brain of nonhuman primates. A series of seventeen hydroxyl-containing sphingosine 1-phosphate receptor 1 (S1PR1) ligands were designed and synthesized. Their in vitro binding potencies were determined using [32P]S1P competitive binding assays. Compounds 10a, 17a, 17b, and 24 exhibited high S1PR1 binding potencies with IC50 values ranging from 3.9 to 15.4 nM and also displayed high selectivity for S1PR1 over other S1P receptor subtypes (IC50 &gt; 1000 nM for S1PR2-5). The most potent compounds 10a, 17a, 17b, and 24 were subsequently radiolabeled with F-18 in high yields and purities. MicroPET studies in cynomolgus macaque showed that [18F]10a, [18F]17a, and [18F]17b but not [18F]24 crossed the blood brain barrier and had high initial brain uptake. Further validation of [18F]10a, [18F]17a, and [18F]17b in preclinical models of neuroinflammation is warranted to identify a suitable PET radioligand to quantify S1PR1 expression in vivo as a metric of an inflammatory response."	"FTY720P inhibits the Na<sup>+</sup>/K<sup>+</sup> ATPase in Caco-2 cells via S1PR2: PGE2 and NO are along the signaling pathway. Sphingosine-1-phosphate (S1P) has been implicated lately in inflammatory bowel disease which has diarrhea as one of its symptoms. Diarrhea is due to altered water movements as a result of altered electrolyte transport, and in particular sodium. Sodium movements are geared by the sodium gradient established by the Na<sup>+</sup>/K<sup>+</sup> ATPase. The aim of this work was to investigate if S1P can modulate the activity of the ATPase, using Caco-2 cells as a model and the S1P analogue, FTY720P. The activity of the ATPase was assayed by measuring the amount of inorganic phosphate liberated in presence and absence of ouabain. Protein expression of the various S1P receptors was studied by western blot analysis. Caco-2 cells were found to express mainly S1PR2 and S1PR3. FTY720P (7.5 nM) reduced significantly the activity of the Na<sup>+</sup>/K<sup>+</sup> ATPase when applied for 15 min. This inhibitory effect disappeared in presence of JTE-013, a specific blocker of S1PR2, and indomethacin, an inhibitor of cyclooxygenase enzymes, and was mimicked by CYM5520, a S1PR2 agonist and by exogenous PGE2. The inhibitory effect of PGE2 did not appear when EP3 receptors were blocked or when a nitric oxide scavenger was added. RpcAMP, a PKA inhibitor, reduced the activity of the Na<sup>+</sup>/K<sup>+</sup> ATPase, while dbcAMP, a PKA activator was without any effect and when added, abrogated the effect of PGE2. It was concluded that FTY720P inhibits the Na+/K+ ATPase via activation of S1PR2 and generation of PGE2 nitric oxide."	"ApoM-S1P Modulates Ox-LDL-Induced Inflammation Through the PI3K/Akt Signaling Pathway in HUVECs. Studies have shown that apolipoprotein M (apoM), the main carrier of sphingosine-1-phosphate (S1P), is closely related to lipid metabolism and inflammation. While there are many studies on apoM and lipid metabolism, little is known about the role of apoM in inflammation. Atherosclerosis is a chronic inflammatory process. To clarify what role apoM plays in atherosclerosis, we used oxidized low-density lipoprotein (ox-LDL) to induce an inflammatory model of atherosclerosis. Our preliminary results indicate that ox-LDL upregulates the expression of S1P receptor 2 (S1PR2) in human umbilical vein endothelial cells (HUVECs). Ox-LDL-induced HUVECs were treated with apoM-bound S1P (apoM-S1P), free S1P or apoM, and apoM-S1P was found to significantly inhibit the expression of inflammatory factors and adhesion molecules. In addition, apoM-S1P inhibits ox-LDL-induced cellular inflammation via S1PR2. Moreover, apoM-S1P induces phosphorylation of phosphatidylinositol 3-kinase (PI3K)/Akt, preventing nuclear translocation of nuclear factor-κB (NF-κB). PI3K-specific inhibitors and Akt inhibitors suppress apoM-S1P/S1PR2-induced interleukin-1β (IL-1β) and tumor necrosis factor-α (TNF-α) release and affect nuclear translocation of NF-κB. In conclusion, the results demonstrate for the first time that apoM-S1P inhibits ox-LDL-induced inflammation in HUVECs via the S1PR2-mediated PI3K/Akt signaling pathway. This finding may aid in the development of new treatments for atherosclerosis."	"Sphingosine 1-phosphate promotes mesenchymal stem cell-mediated cardioprotection against myocardial infarction via ERK1/2-MMP-9 and Akt signaling axis. The sphingolipid metabolite sphingosine 1‑phosphate (S1P) has emerged as a potential cardioprotective molecule against ischemic heart disease. Moreover, S1P triggers mobilization and homing of bone marrow-derived stem/progenitor cells into the damaged heart. However, it remains elusive whether S1P promotes mesenchymal stem cells (MSCs)-mediated cardioprotection against ischemic heart diseases. Adipose tissue-derived MSCs (AT-MSCs) were obtained from GFP transgenic mice or C57BL/6J. Myocardial infarction (MI) was induced in C57BL/6J mice by ligation of the left anterior descending coronary artery (LAD). Subsequently, S1P-treated AT-MSCs or vehicle-treated AT-MSCs were intravenously administered for 24 h after induction of MI or sham procedure. Pre-conditioning with S1P significantly enhanced the migratory and anti-apoptotic efficacies of AT-MSCs. In MI-induced mice, intravenous administration of S1P-treated AT-MSCs significantly augmented their homing and engraftment in ischemic area. Besides, AT-MSCs with S1P pre-treatment exhibited enhanced potencies to inhibit cardiomyocyte apoptosis and fibrosis, and stimulate angiogenesis and preserve cardiac function. Mechanistic studies revealed that S1P promoted AT-MSCs migration through activation of ERK1/2-MMP-9, and protected AT-MSCs against apoptosis via Akt activation. Further, S1P activated the ERK1/2 and Akt via S1P receptor 2 (S1PR2), but not through S1PR1. S1PR2 knockdown by siRNA, however, significantly attenuated S1P-mediated AT-MSCs migration and anti-apoptosis. The findings of the present study revealed the protective efficacies of S1P pretreatment on the survival/retention and cardioprotection of engrafted MSCs. Pre-conditioning of donor MSCs with S1P is an effective strategy to promote the therapeutic potential of MSCs for ischemic heart diseases."	"Diet Supplementation with Soy Protein Isolate, but Not the Isoflavone Genistein, Protects Against Alcohol-Induced Tumor Progression in DEN-Treated Male Mice. Diethylnitrosamine-treated male mice were assigned to 4 groups: a casein-based 35% high fat ethanol liquid diet (EtOH), an EtOH diet made with soy protein isolate protein (EtOH/SOY), an EtOH liquid diet supplemented with genistein (EtOH/GEN) and a chow group. EtOH feeding, final concentration 5% (v/v), continued for 16 wks. EtOH increased incidence and multiplicity of basophilic lesions and adenomas compared to the chow group, (p &lt; 0.05). The EtOH/SOY group had reduced adenoma progression when compared to the EtOH and EtOH/GEN group, (p &lt; 0.05). Genistein supplementation had no protective effect. Soy feeding significantly reduced serum ALT concentrations (p &lt; 0.05), decreased hepatic TNFα and CD-14 expression and decreased nuclear accumulation of NFκB protein in EtOH/SOY-treated mice compared to the EtOH group (p &lt; 0.05). With respect to ceramides, high resolution MALDI-FTICR Imaging mass spectrometry revealed changes in the accumulation of long acyl chain ceramide species, in particular C18, in the EtOH group when compared to the EtOH/SOY group. Additionally, expression of acid ceramidase and sphingosine kinase 1 which degrade ceramide into sphingosine and convert sphingosine to sphingosine-1-phosphate (S1P) respectively and expression of S1P receptors S1PR2 and S1PR3 were all upregulated by EtOH and suppressed in the EtOH/SOY group, p &lt; 0.05. EtOH feeding also increased hepatocyte proliferation and mRNA expression of β-catenin targets, including cyclin D1, MMP7 and glutamine synthase, which were reduced in the EtOH/SOY group, p &lt; 0.05. These findings suggest that soy prevents tumorigenesis by reducing inflammation and by reducing hepatocyte proliferation through inhibition of EtOH-mediated β-catenin signaling. These mechanisms may involve blockade of sphingolipid signaling."	"Sphingosine 1-phosphate stimulates eyelid closure in the developing rat by stimulating EGFR signaling. In many mammals, the eyelids migrate over the eye and fuse during embryogenesis to protect the cornea from damage during birth and early life. Loss-of-function mutations affecting the epidermal growth factor receptor (EGFR) signaling pathway cause an eyes-open-at-birth (EOB) phenotype in rodents. We identified an insertional mutation in Spinster homolog 2 (Spns2) in a strain of transgenic rats exhibiting the EOB phenotype. Spns2, a sphingosine 1-phosphate (S1P) transporter that releases S1P from cells, was enriched at the tip of developing eyelids in wild-type rat embryos. Spns2 expression or treatment with S1P or any one of several EGFR ligands rescued the EOB Spns2 mutant phenotype in vivo and in tissue explants in vitro and rescued the formation of stress fibers in primary keratinocytes from mutants. S1P signaled through the receptors S1PR1, S1PR2, and S1PR3 to activate extracellular signal-regulated kinase (ERK) and EGFR-dependent mitogen-activated protein kinase kinase kinase 1 (MEKK1)-c-Jun signaling. S1P also induced the nuclear translocation of the transcription factor MAL in a manner dependent on EGFR signaling. MAL and c-Jun stimulated the expression of the microRNAs miR-21 and miR-222, both of which target the metalloprotease inhibitor TIMP3, thus promoting metalloprotease activity. The metalloproteases ADAM10 and ADAM17 stimulated EGFR signaling by cleaving a membrane-anchored form of EGF to release the ligand. Our results outline a network by which S1P transactivates EGFR signaling through a complex mechanism involving feedback between several intra- and extracellular molecules to promote eyelid fusion in the developing rat."	"S1PR2 antagonist alleviates oxidative stress-enhanced brain endothelial permeability by attenuating p38 and Erk1/2-dependent cPLA2 phosphorylation. Both sphingosine-1-phosphate receptor-2 (S1PR2) and cytosolic phospholipase A2 (cPLA2) are implicated in the disruption of cerebrovascular integrity in experimental stroke. However, the role of S1PR2 in induction of cPLA2 phosphorylation during cerebral ischemia-induced endothelial dysfunction remains unknown. This study investigated the effect of S1PR2 blockade on oxidative stress-induced cerebrovascular endothelial barrier impairment and explored the possible mechanisms. In bEnd3 cells, cPLA2 inhibitor CAY10502 as well as S1PR2 antagonist JTE013 profoundly suppressed hydrogen peroxide (H2O2)-induced changes of paracellular permeability and ZO-1 localization. Besides p38, extracellular signal-regulated kinase (Erk) 1/2 is required for H2O2-increased cPLA2 phosphorylation and endothelial permeability. Pharmacological and genetic inhibition of S1PR2 significantly suppressed their phosphorylation in response to H2O2. Especially lentivirus-mediated knockdown of S1PR2 inhibited H2O2-induced ZO-1 redistribution and paracellular hyperpermeability. Using the permanent middle cerebral artery occlusion (pMCAO) mouse model, we found JTE013 pretreatment markedly reduced Evans blue dye (EBD) extravasation and reversed the decrease in VE-cadherin, occludin, claudin-5 and CD31 expression in infarcted hemisphere. Lentivirus-mediated S1PR2 knockdown also attenuated EBD extravasation. Furthermore, JTE013 pretreatment attenuated neurological deficit, brain edema and infarction volume. Therefore, our findings suggest the protective effect of JTE013 on brain endothelial barrier integrity is likely mediated by suppressing p38 and Erk1/2-dependent cPLA2 phosphorylation under oxidative stress."	"Sphingosine 1-Phosphate (S1P)/S1P Receptor2/3 Axis Promotes Inflammatory M1 Polarization of Bone Marrow-Derived Monocyte/Macrophage via G(α)i/o/PI3K/JNK Pathway. Macrophages, the most plastic cells in the haematopoietic system, are found in all tissues and show great functional heterogeneity. Sphingosine 1-phosphate (S1P)/ S1P receptors (S1PRs) system is widely involved in the process of inflammatory disease, whereas little evidence concerning its role in functional macrophage polarization is available. Thus, the present study was designed to evaluate the effects of S1P/S1PRs on functional polarization of macrophage in mouse bone marrow (BM)-derived monocyte/macrophages (BMMs). For the detection of M1 macrophage markers, such as CD86, tumor necrosis factor (TNF)-α, monocyte chemotactic protein (MCP)-1/ chemokine (C-C motif) ligand (CCL) 2, nitric oxide synthase (NOS) 2, and macrophage inflammatory protein (MIP)-1β, RT-qPCR and cytometric bead array (CBA) were performed in cultured primary BMMs after the treatment with selective S1PR2/3 antagonists or specific S1PRs siRNA. Western blotting and immunofluorescence were used for the detection of phosphorylation of JNK1/2. BMMs expressed S1PR1-3 and interestingly, S1PR2/3, but not S1PR1, mediates S1P-induced M1 macrophage polarization of BMMs as their siRNA or antagonists reduced M1 genes' expression. We found that PTX (inhibitor of G(α)i/o), LY294002 (inhibitor of PI3K) or SP600125 (inhibitor of JNK1/2) prevented up-regulation of M1 genes expression mediated by S1P/S1PR2/3 signal, and S1P-induced JNK phosphorylation was inhibited by antagonists of S1PR2/3, PTX or LY294002. Collectively, our results demonstrate that S1P/S1PR2/3 plays a key role in regulating M1 type polarization of BMMs and acts by activating G(α)i/o/PI3K/JNK signaling pathway, with potential implications for new approaches to inflammatory liver disease therapy."	"C16‑ceramide and sphingosine 1‑phosphate/S1PR2 have opposite effects on cell growth through mTOR signaling pathway regulation. Recently, sphingolipid derivatives, such as ceramide and sphingosine‑1‑phosphate (S1P), have emerged as key modulators in apoptotic cell death and cell proliferation. This study aimed to clarify the underlying signaling pathways of ceramide and S1P involved in breast cancer cell proliferation. Ceramide acyl chain length is determined by six mammalian ceramide synthases (CerS). We overexpressed CerS1 to 6 in MCF‑7 cells to examine whether ceramide signaling propagation varies as a function of acyl chain length. Among the six CerS, only CerS6 overexpression reduced phosphorylation of Akt, S6 kinase (S6K), and extracellular signal‑regulated kinases (ERK) as shown by western blotting. In addition, CerS6 overexpression reduced MCF‑7 cell proliferation. This effect was partially reversed by co‑treatment with MHY1485, an activator of mammalian target of rapamycin (mTOR), demonstrating an important role for the mTOR pathway in the CerS6‑mediated decrease in MCF‑7 cell proliferation. ERK inhibition, but not Akt inhibition, along with mTOR inhibition synergistically reduced MCF‑7 cell proliferation as measured by MTT assay. Notably, the expression of CerS6 and S1P receptor 2 (S1PR2), or CerS6 and sphingosine kinase 1 (SphK1), were negatively correlated according to the invasive breast carcinoma patient cohort in The Cancer Genome Atlas database. In addition, both SphK1 overexpression and S1P addition increased mTOR phosphorylation as shown by ELISA, while S1PR2 inhibition had the inverse effect. These data suggest that CerS6 and SphK1 regulate mTOR signaling in breast cancer cell proliferation. Moreover, mTOR activity can be regulated by the balance between S1P and C16‑ceramide, which is generated by CerS6."	"Sphingosine-1-Phosphate Modulates the Effect of Estrogen in Human Osteoblasts. Production of sphingosine-1-phosphate (S1P) is linked to 17β-estradiol (E2) activity in many estrogen-responsive cells; in bone development, the role of S1P is unclear. We studied effects of S1P on proliferation and differentiation of human osteoblasts (hOB). Ten nM E2, 1 μM S1P, or 1 μM of the S1P receptor 1 (S1PR1) agonist SEW2871 increased hOB proliferation at 24 hours. S1PR 1, 2, and 3 mRNAs are expressed by hOB but not S1PR4 or S1PR5. Expression of S1PR2 was increased at 7 and 14 days of differentiation, in correspondence with osteoblast-related mRNAs. Expression of S1PR1 was increased by E2 or S1P in proliferating hOB, whereas S1PR2 mRNA was unaffected in proliferating cells; S1PR3 was not affected by E2 or S1P. Inhibiting sphingosine kinase (SPHK) activity with sphingosine kinase inhibitor (Ski) greatly reduced the E2 proliferative effect. Both E2 and S1P increased SPHK mRNA at 24 hours in hOB. S1P promoted osteoblast proliferation via activating MAP kinase activity. Either E2 or S1P increased S1P synthesis in a fluorescent S1P assay. Interaction of E2 and S1P signaling was indicated by upregulation of E2 receptor mRNA after S1P treatment. E2 and S1P also promoted alkaline phosphatase expression. During osteoblast differentiation, S1P increased bone-specific mRNAs, similarly to the effects of E2. However, E2 and S1P showed differences in the activation of some osteoblast pathways. Pathway analysis by gene expression arrays was consistent with regulation of pathways of osteoblast differentiation; collagen and cell adhesion proteins centered on Rho/Rac small GTPase signaling and Map kinase or signal transducer and activator of transcription (Stat) intermediates. Transcriptional activation also included significant increases in superoxide dismutase 1 and 2 transcription by either S1P or E2. We demonstrate that the SPHK system is a co-mediator for osteoblast proliferation and differentiation, which is mainly, but not entirely, complementary to E2, whose effects are mediated by S1PR1 and S1PR2."	"Sphingosine-1-phosphate signaling in Leishmania donovani infection in macrophages. Sphingosine-1-phosphate (S1P) is a crucial regulator of a wide array of cellular processes, such as apoptosis, cell proliferation, migration, and differentiation, but its role in Leishmania donovani infection is unknown. In the present study, we observed that L. donovani infection in THP-1 derived macrophages (TDM) leads to decrease in the expression of S1pr2 and S1pr3 at mRNA level. We further observed that Leishmania infection inhibits the phosphorylation of sphingosine kinase 1 (sphK1) in a time-dependent manner. Exogenous S1P supplementation decreases L. donovani induced ERK1/2 phosphorylation and increases p38 phosphorylation in TDM, resulting in a decrease in the intracellular parasite burden in a dose-dependent manner. On the other hand, sphK inhibition by DMS increases ERK1/2 phosphorylation leading to increased IL-10 and parasite load. To gain further insight, cytokines expression were checked in S1P supplemented TDM and we observed increase in IL-12, while decrease IL-10 expression at mRNA and protein levels. In addition, treatment of antagonist of S1PR2 and S1PR3 such as JTE-013 and CAY10444 respectively enhanced Leishmania-induced ERK1/2 phosphorylation and parasite load. Our overall study not only reports the significant role of S1P signaling during L. donovani infection but also provides a novel platform for the development of new drugs against Leishmaniasis."	"Alkaline ceramidase 3 promotes growth of hepatocellular carcinoma cells via regulating S1P/S1PR2/PI3K/AKT signaling. Hepatocellular carcinoma (HCC) is one of the cancer types with poor prognosis. To effectively treat HCC, new molecular targets and therapeutic approaches must be identified. Alkaline ceramidase 3 (Acer3) hydrolyzed long-chain unsaturated ceramide to produce free fatty acids and sphingosine. However, whether and how Acer3 modulates progression of HCC remains largely unknown. Acer3 mRNA levels in different types of human HCC samples or normal tissues were determined from Gene Expression across Normal and Tumor tissue (GENT) database. The expression level of Acer3 in human HCC cell lines were examined by western blot. Overall survival and disease-free survival of HCC patients were determined by Kaplan-Meier analysis. Effects of Acer3 knockdown by lentivirus infection were evaluated on cell growth and apoptosis. The mechanisms involved in HCC cells growth and apoptosis were analyzed by western blot. In silico analysis of TCGA databases of HCC patients showed that the expression of Acer3 significantly inversely correlates with the overall and disease-free survival of HCC patients. Knockdown expression of Acer3 resulted in decreased cell growth and increased apoptosis. Notably, inhibition of Acer3 resulted in intracellular exhaustion of Sphingosine-1-phosphate (S1P) and inhibited activation of S1PR2/PI3K/AKT signaling. Finally, knockdown of Acer3 induced up-regulation of Bax and down-regulation of Bcl-2. Our study suggests that Acer3 contributes to HCC propagation, and suggests that inhibition of Acer3 may be novel strategy for treating human HCC."	"Sphingosine 1 phosphate receptor-1 (S1PR1) signaling protects cardiac function by inhibiting cardiomyocyte autophagy. To investigate the role of sphingosine-1-phosphate (S1P) and its receptors in cardiomyocyte autophagy, cardiomyocyte hypertrophy and cardiac function. Cardiomyocytes were isolated from neonatal Vista rats. Autophagy and hypertrophy of cardiomyocytes were induced via starvation culture and phenylephrine (PE), respectively, and S1P was used to treat the cardiomyocytes. The effect of S1P on cardiomyocyte autophagy was evaluated by the number of autophagosomes, the expression of autophagy-related proteins and autophagic marker genes in cardiomyocytes. The effect of S1P on cardiomyocyte hypertrophy was evaluated by examining the surface area of cardiomyocytes and the expression of hypertrophic genes. Subsequently, different small interfering RNAs (siRNAs) were used to knockdown the expression of the three types of S1P receptors on cardiomyocytes and to analyze the type of receptor that mediates S1P signaling in cardiomyocytes. Finally, sphingosine 1 phosphate receptor-1 (S1PR1) was knockout in the mouse cardiomyocytes using the Cas9 technique. The effect of S1PR1 on cardiac autophagy and cardiac hypertrophy was examined by assessing cardiomyocyte autophagy, cardiomyocyte hypertrophy and cardiac function. Starvation-induced cardiomyocyte autophagy and PE-induced cardiomyocyte hypertrophy were significantly attenuated by S1P. The results showed that the formation of autophagosomes was decreased, the autophagy-associated protein LC3II/I and the expression of autophagic marker genes Atg5, Atg12, Beclin1 and LC3B decreased after S1P treatment. The surface area of the cardiomyocytes was decreased, and the expression of hypertrophic genes, including atrial natriuretic factor (ANF), skeletal muscle and cardiac actin (SKA), myosin heavy chain (β-MHC) and brain natriuretic peptide (BNP) were all decreased after S1P treatment. The autophagy and hypertrophy of cardiomyocytes in the S1PR1 knocked-down group were significantly increased compared to those in the control group, the S1PR2 and the S1PR3 knocked-down groups. In vivo, the knockout of S1PR1 in cardiomyocytes exacerbated stress-induced cardiac autophagy, cardiac hypertrophy and the impairment of cardiac function. S1P could inhibit cardiomyocyte autophagy, thereby inhibiting cardiomyocyte hypertrophy and protecting cardiac function by activating S1PR1 in pressure-overloaded cardiomyocytes in mice."	"The Sphingosine-1-Phosphate/Sphingosine-1-Phosphate Receptor 2 Axis in Intestinal Epithelial Cells Regulates Intestinal Barrier Function During Intestinal Epithelial Cells-CD4+T-Cell Interactions. Epithelial cells line the intestinal mucosa and form an important barrier for maintaining host health. This study aimed to explore the mechanism of the Sphingosine-1-phosphate (S1P)/Sphingosine-1-phosphate receptor 2 (S1PR2) pathway in intestinal epithelial cells (IECs) that participate in the intestinal barrier function. In this study, we constructed a knockout of the S1PR2 gene in mice, and Dextra sulfate sodium (DSS) was used to induce colitis. We isolated IECs from wild type (WT) and S1PR2-/- mice, and the endogenous expression of S1PR2 and Zonula occludens 1 (ZO-1) in IEC were detected by Western blot. Next, the major histocompatibility complex II (MHC-II) expression was analyzed by reverse transcription quantitative real-time (RT-qPCR) and flow cytometry. The in vivo and in vitro intestinal permeability were evaluated by serum fluorescein isothiocyanate (FITC) concentration. The tumor necrosis factor-α (TNF-α), interleukin-6 (IL-6) and interferon-γ (IFN-γ) levels in cell suspension were analyzed by enzyme-linked immuno sorbent assay (ELISA). A carboxyfluorescein diacetate succinimidyl ester (CFSE) assay was used to detect the T-cell proliferation in a co-culture system. The intestinal mucosal barrier damage in S1PR2-/- mice was more severe than in the WT mice, and there were more CD4+T-cells in the colon tissue of DSS-treated S1PR2-/- mice. Either the mouse colon carcinoma cell line (CT26. WT) or the IECs upregulated MHC-II expression, which then promoted CD4+T-cell proliferation. The S1P/S1PR2 pathway controlled MHC-II expression to regulate CD4+T-cell proliferation via the extracellular signal-regulated kinase (ERK) pathway. In addition, the IFN-γ that was secreted by CD4+T-cells increased DSS-induced damage of intestinal epithelial cell barrier function. ZO-1 expression was increased by S1P in CT26.WT cells, while S1PR2 antagonist JTE-013 expression was downregulated. However, in CT26.WTsi-S1PR2 cells, S1P had no effect on ZO-1 expression. The S1P/S1PR2 axis in IECs mediated CD4+T-cell activation via the ERK pathway and MHC-II expression to regulate intestinal barrier function."	"Discovery of glycocholic acid and taurochenodeoxycholic acid as phenotypic biomarkers in cholangiocarcinoma. Although several biomarkers can be used to distinguish cholangiocarcinoma (CCA) from healthy controls, differentiating the disease from benign biliary disease (BBD) or pancreatic cancer (PC) is a challenge. CCA biomarkers are associated with low specificity or have not been validated in relation to the biological effects of CCA. In this study, we quantitatively analyzed 15 biliary bile acids in CCA (n = 30), BBD (n = 57) and PC (n = 17) patients and discovered glycocholic acid (GCA) and taurochenodeoxycholic acid (TCDCA) as specific CCA biomarkers. Firstly, we showed that the average concentration of total biliary bile acids in CCA patients was quantitatively less than in other patient groups. In addition, the average composition ratio of primary bile acids and conjugated bile acids in CCA patients was the highest in all patient groups. The average composition ratio of GCA (35.6%) in CCA patients was significantly higher than in other patient groups. Conversely, the average composition ratio of TCDCA (13.8%) in CCA patients was significantly lower in all patient groups. To verify the biological effects of GCA and TCDCA, we analyzed the gene expression of bile acid receptors associated with the development of CCA in a CCA cell line. The gene expression of transmembrane G protein coupled receptor (TGR5) and sphingosine 1-phosphate receptor 2 (S1PR2) in CCA cells treated with GCA was 8.6-fold and 3.4-fold higher compared with control (untreated with bile acids), respectively. Gene expression of TGR5 and S1PR2 in TCDCA-treated cells was not significantly different from the control. Taken together, our study identified GCA and TCDCA as phenotype-specific biomarkers for CCA."	"Sphingosine-1-phosphate induces airway smooth muscle cell proliferation, migration, and contraction by modulating Hippo signaling effector YAP. Sphingosine-1-phosphate (S1P), a bioactive lipid, has been shown to be elevated in the airways of individuals with asthma and modulates the airway smooth muscle cell (ASMC) functions, yet its underlying molecular mechanisms are not completely understood. The aim of the present study is to address this issue. S1P induced yes-associated protein (YAP) dephosphorylation and nuclear localization via the S1PR2/3/Rho-associated protein kinase (ROCK) pathway, and this in turn increased forkhead box M1 (FOXM1) and cyclin D1 expression leading to ASMC proliferation, migration, and contraction. Pretreatment of cells with S1PR2 antagonist JTE013, S1PR3 antagonist CAY10444, or ROCK inhibitor Y27632 blocked S1P-induced alterations of YAP, FOXM1, cyclin D1, and ASMC proliferation, migration, and contraction. In addition, prior silencing of YAP or FOXM1 with siRNA reversed the effect of S1P on ASMC functions. Taken together, our study indicates that S1P stimulates ASMC proliferation, migration, and contraction by binding to S1PR2/3 and modulating ROCK/YAP/FOXM1 axis and suggests that targeting this pathway might have potential value in the management of asthma."	"A Rapid Method for Directed Gene Knockout for Screening in G0 Zebrafish. Zebrafish is a powerful model for forward genetics. Reverse genetic approaches are limited by the time required to generate stable mutant lines. We describe a system for gene knockout that consistently produces null phenotypes in G0 zebrafish. Yolk injection of sets of four CRISPR/Cas9 ribonucleoprotein complexes redundantly targeting a single gene recapitulated germline-transmitted knockout phenotypes in &gt;90% of G0 embryos for each of 8 test genes. Early embryonic (6 hpf) and stable adult phenotypes were produced. Simultaneous multi-gene knockout was feasible but associated with toxicity in some cases. To facilitate use, we generated a lookup table of four-guide sets for 21,386 zebrafish genes and validated several. Using this resource, we targeted 50 cardiomyocyte transcriptional regulators and uncovered a role of zbtb16a in cardiac development. This system provides a platform for rapid screening of genes of interest in development, physiology, and disease models in zebrafish."	"Conjugated Bile Acids Promote Invasive Growth of Esophageal Adenocarcinoma Cells and Cancer Stem Cell Expansion via Sphingosine 1-Phosphate Receptor 2-Mediated Yes-Associated Protein Activation. Esophageal adenocarcinoma (EAC) is the sixth leading cause of cancer deaths worldwide and has been dramatically increasing in incidence over the past decade. Gastroesophageal reflux and Barrett esophagus are well-established risk factors for disease progression. Conjugated bile acids (CBAs), including taurocholate (TCA), represent the major bile acids in the gastroesophageal refluxate of advanced Barrett esophagus and EAC patients. Our previous studies suggested that CBA-induced activation of sphingosine 1-phosphate receptor 2 (S1PR2) plays a critical role in promoting cholangiocarcinoma cell invasive growth. However, the role of CBAs in EAC development and underlying mechanisms remains elusive. In the current study, we identified that the expression level of S1PR2 is correlated to invasiveness of EAC cells. TCA significantly promoted cell proliferation, migration, invasion, transformation, and cancer stem cell expansion in highly invasive EAC cells (OE-33 cells), but had less effect on the lower invasive EAC cells (OE-19 cells). Pharmacologic inhibition of S1PR2 with specific antagonist JTE-013 or knockdown of S1PR2 expression significantly reduced TCA-induced invasive growth of OE-33 cells, whereas overexpression of S1PR2 sensitized OE-19 cells to TCA-induced invasive growth. Furthermore, TCA-induced activation of S1PR2 was closely associated with YAP and β-catenin signaling pathways. In conclusion, CBA-induced activation of the S1PR2 signaling pathway is critically involved in invasive growth of EAC cells and represents a novel therapeutic target for EAC."	"S1P Stimulates Proliferation by Upregulating CTGF Expression through S1PR2-Mediated YAP Activation. Dysregulation of the Hippo pathway in the liver results in overgrowth and eventually tumorigenesis. To date, several upstream mechanisms have been identified that affect the Hippo pathway, which ultimately regulate YAP, the major downstream effector of the pathway. However, upstream regulators of the Hippo pathway in the liver remain poorly defined. Sphingosine-1-phosphate (S1P) is a bioactive sphingolipid metabolite that has been shown to stimulate hepatocellular carcinoma (HCC) cell proliferation, but whether the Hippo pathway is involved in S1P-stimulated HCC cell proliferation remains to be determined. Here it is demonstrated that S1P activates YAP and that the S1P receptor 2 (S1PR2/S1P2) mediates S1P-induced YAP activation in both human and mouse HCC cells. S1P promotes YAP-mediated upregulation of cysteine-rich protein 61 and connective tissue growth factor (CTGF), and stimulates HCC cell proliferation. By using siRNA-mediated knockdown approaches, only CTGF was required for S1P-stimulated cell proliferation. Of note, S1P activates YAP in a MST1/2-independent manner suggesting that the canonical Hippo kinase is not required for S1P-mediated proliferation in liver. The upregulation of CTGF and S1P2 were also observed in liver-specific YAP overexpression transgenic mouse hepatocytes. Moreover, YAP regulated liver differentiation-dependent gene expression by influencing the chromatin binding of HNF4α based on ChIP-seq analysis. Finally, results using gain- and loss-of-function approaches demonstrate that HNF4α negatively regulated S1P-induced CTGF expression.Implications: These findings reveal a role for S1P in stimulating HCC cell proliferation by upregulating CTGF expression through S1P2-mediated YAP activation. Mol Cancer Res; 16(10); 1543-55. ©2018 AACR."	"Deoxycholic Acid-Mediated Sphingosine-1-Phosphate Receptor 2 Signaling Exacerbates DSS-Induced Colitis through Promoting Cathepsin B Release. We recently have proved that excessive fecal DCA caused by high-fat diet may serve as an endogenous danger-associated molecular pattern to activate NLRP3 inflammasome and thus contributes to the development of inflammatory bowel disease (IBD). Moreover, the effect of DCA on inflammasome activation is mainly mediated through bile acid receptor sphingosine-1-phosphate receptor 2 (S1PR2); however, the intermediate process remains unclear. Here, we sought to explore the detailed molecular mechanism involved and examine the effect of S1PR2 blockage in a colitis mouse model. In this study, we found that DCA could dose dependently upregulate S1PR2 expression. Meanwhile, DCA-induced NLRP3 inflammasome activation is at least partially achieved through stimulating extracellular regulated protein kinases (ERK) signaling pathway downstream of S1PR2 followed by promoting of lysosomal cathepsin B release. DCA enema significantly aggravated DSS-induced colitis in mice and S1PR2 inhibitor as well as inflammasome inhibition by cathepsin B antagonist substantially reducing the mature IL-1β production and alleviated colonic inflammation superimposed by DCA. Therefore, our findings suggest that S1PR2/ERK1/2/cathepsin B signaling plays a critical role in triggering inflammasome activation by DCA and S1PR2 may represent a new potential therapeutic target for the management of intestinal inflammation in individuals on a high-fat diet."	"Sphingosine-1-Phosphate Signaling and Metabolism Gene Signature in Pediatric Inflammatory Bowel Disease: A Matched-case Control Pilot Study. The aim of this study was to investigate gene expression levels of proteins involved in sphingosine-1-phosphate (S1P) metabolism and signaling in a pediatric inflammatory bowel disease (IBD) patient population. IBD is a debilitating disease affecting 0.4% of the US population. The incidence of IBD in childhood is rising. Identifying effective targeted therapies that can be used safely in young patients and developing tools for selecting specific candidates for targeted therapies are important goals. Clinical IBD trials now underway target S1PR1, a receptor for the pro-inflammatory sphingolipid S1P. However, circulating and tissue sphingolipid levels and S1P-related gene expression have not been characterized in pediatric IBD. Pediatric IBD patients and controls were recruited in a four-site study. Patients received a clinical score using PUCAI or PCDAI evaluation. Colon biopsies were collected during endoscopy. Gene expression was measured by qRT-PCR. Plasma and gut tissue sphingolipids were measured by LC-MS/MS. Genes of S1P synthesis (SPHK1, SPHK2), degradation (SGPL1), and signaling (S1PR1, S1PR2, and S1PR4) were significantly upregulated in colon biopsies of IBD patients with moderate/severe symptoms compared with controls or patients in remission. Tissue ceramide, dihydroceramide, and ceramide-1-phosphate (C1P) levels were significantly elevated in IBD patients compared with controls. A signature of elevated S1P-related gene expression in colon tissues of pediatric IBD patients correlates with active disease and normalizes in remission. Biopsied gut tissue from symptomatic IBD patients contains high levels of pro-apoptotic and pro-inflammatory sphingolipids. A combined analysis of gut tissue sphingolipid profiles with this S1P-related gene signature may be useful for monitoring response to conventional therapy."	"Sphingosine-1-phosphate receptor-2 facilitates pulmonary fibrosis through potentiating IL-13 pathway in macrophages. Idiopathic pulmonary fibrosis is a devastating disease with poor prognosis. The pathogenic role of the lysophospholipid mediator sphingosine-1-phosphate and its receptor S1PR2 in lung fibrosis is unknown. We show here that genetic deletion of S1pr2 strikingly attenuated lung fibrosis induced by repeated injections of bleomycin in mice. We observed by using S1pr2LacZ/+ mice that S1PR2 was expressed in alveolar macrophages, vascular endothelial cells and alveolar epithelial cells in the lung and that S1PR2-expressing cells accumulated in the fibrotic legions. Bone marrow chimera experiments suggested that S1PR2 in bone marrow-derived cells contributes to the development of lung fibrosis. Depletion of macrophages greatly attenuated lung fibrosis. Bleomycin administration stimulated the mRNA expression of the profibrotic cytokines IL-13 and IL-4 and the M2 markers including arginase 1, Fizz1/Retnla, Ccl17 and Ccl24 in cells collected from broncho-alveolar lavage fluids (BALF), and S1pr2 deletion markedly diminished the stimulated expression of these genes. BALF cells from bleomycin-administered wild-type mice showed a marked increase in phosphorylation of STAT6, a transcription factor which is activated downstream of IL-13, compared with saline-administered wild-type mice. Interestingly, in bleomycin-administered S1pr2-/- mice, STAT6 phosphorylation in BALF cells was substantially diminished compared with wild-type mice. Finally, pharmacological S1PR2 blockade in S1pr2+/+ mice alleviated bleomycin-induced lung fibrosis. Thus, S1PR2 facilitates lung fibrosis through the mechanisms involving augmentation of IL-13 expression and its signaling in BALF cells, and represents a novel target for treating lung fibrosis."	"The conserved p.Arg108 residue in S1PR2 (DFNB68) is fundamental for proper hearing: evidence from a consanguineous Iranian family. Genetic heterogeneity and consanguineous marriages make recessive inherited hearing loss in Iran the second most common genetic disorder. Only two reported pathogenic variants (c.323G&gt;C, p.Arg108Pro and c.419A&gt;G, p.Tyr140Cys) in the S1PR2 gene have previously been linked to autosomal recessive hearing loss (DFNB68) in two Pakistani families. We describe a segregating novel homozygous c.323G&gt;A, p.Arg108Gln pathogenic variant in S1PR2 that was identified in four affected individuals from a consanguineous five generation Iranian family. Whole exome sequencing and bioinformatics analysis of 116 hearing loss-associated genes was performed in an affected individual from a five generation Iranian family. Segregation analysis and 3D protein modeling of the p.Arg108 exchange was performed. The two Pakistani families previously identified with S1PR2 pathogenic variants presented profound hearing loss that is also observed in the affected Iranian individuals described in the current study. Interestingly, we confirmed mixed hearing loss in one affected individual. 3D protein modeling suggests that the p.Arg108 position plays a key role in ligand receptor interaction, which is disturbed by the p.Arg108Gln change. In summary, we report the third overall mutation in S1PR2 and the first report outside the Pakistani population. Furthermore, we describe a novel variant that causes an amino acid exchange (p.Arg108Gln) in the same amino acid residue as one of the previously reported Pakistani families (p.Arg108Pro). This finding emphasizes the importance of the p.Arg108 amino acid in normal hearing and confirms and consolidates the role of S1PR2 in autosomal recessive hearing loss."	"Impact of Sphingolipid Mediators on the Determination of Cochlear Survival in Ototoxicity. Sphingolipid metabolites, including ceramide, sphingosine, and their phosphorylates (ceramide-1-phosphonate [C1P] and sphingosine-1-phosphate [S1P]), regulate diverse cellular processes including apoptosis, the cell cycle, and cellular differentiation. Recent studies have shown that these sphingolipid metabolites are generated in response to ototoxic agents and play important roles in determining the fate of cochlear hair cells in ototoxic injury. This review summarizes the current knowledge on the roles of sphingolipid mediators in cochlear ototoxicity. During ototoxicity, ceramide is mainly generated via sphingomyelinase in the cochlea through a ceramide/sphingomyelin cycle from sphingomyelin. The generated ceramide is converted to other sphingolipid mediators. Ceramide and sphingosine accelerate cochlear hair cell death induced by ototoxic agents, while, C1P and S1P, on the other hand, protect cochlear hair cells. Hair cell protection of S1P is mediated by S1P receptor subtype 2 (S1PR2). Sphingolipid mediators play important roles in cochlear hair cell survival or death in ototoxic injury."	"Sphingolipid signaling modulates trans-endothelial cell permeability in dengue virus infected HMEC-1 cells. Dengue has emerged as a major mosquito-borne disease in the tropics and subtropics. In severe dengue, enhanced microvascular endothelial permeability leads to plasma leakage. Direct dengue virus (DENV) infection in human microvascular endothelial cells (HMEC-1) can enhance trans-endothelial leakage. Using a microarray-based analysis, we identified modulation of key endothelial cell signaling pathways in DENV-infected HMEC-1 cells. One among them was the sphingolipid pathway that regulates vascular barrier function. Sphingosine-1-phosphate receptor 2 (S1PR2) and S1PR5 showed significant up-regulation in the microarray data. In DENV-infected cells, the kinetics of S1PR2 transcript expression and enhanced in vitro trans-endothelial permeability showed a correlation. We also observed an internalization and cytoplasmic translocation of VE-Cadherin, a component of adherens junctions (AJ), upon infection indicating AJ disassembly. Further, inhibition of S1PR2 signaling by a specific pharmacological inhibitor prevented translocation of VE-Cadherin, thus helping AJ maintenance, and abrogated DENV-induced trans-endothelial leakage. Our results show that sphingolipid signaling, especially that involving S1PR2, plays a critical role in vascular leakage in dengue."	"Influence of sphingosine-1-phosphate signaling on HCMV replication in human embryonal lung fibroblasts. The human cytomegalovirus (HCMV) is a common pathogen, which causes severe or even deadly diseases in immunocompromised patients. In addition, congenital HCMV infection represents a major health concern affecting especially the lung tissue of the susceptible individuals. Antivirals are a useful strategy to treat HCMV-caused diseases. However, all approved drugs target viral proteins but significant toxicity and an increasing resistance against these compounds have been observed. In infected cells, numerous host molecules have been identified to play important roles during HCMV replication. Among others, HCMV infection depends on the presence of bioactive sphingolipids. In this study, the role of sphingosine-1-phosphate (S1P) signaling in HCMV-infected human embryonal lung fibroblasts (HELF) was analyzed. Viral replication depended on the functional activity of sphingosine kinases (SK). During SK inhibition, addition of extracellular S1P restored HCMV replication. Moreover, neutralization of extracellular S1P by anti-S1P antibodies decreased HCMV replication as well. While the application of FTY720 as an functional antagonist of S1P receptor (S1PR)1,3-5 signaling did not reduce HCMV replication significantly, JTE-013, an inhibitor of S1PR2, decreased viral replication. Furthermore, inhibition of Rac-1 activity reduced HCMV replication, whereas inhibition of the Rac-1 effector protein Rac-1-activated kinase 1 (PAK1) had no influence. In general, targeting S1P-induced pathways, which are essential for a successful HCMV replication, may represent a valuable strategy to develop new antiviral drugs."	"Does a Newly Characterized Cell From the Bone Marrow Repair the Heart After Acute Myocardial Infarction? NA"	"Sphingosine-1-phosphate Receptor 2 Signaling Promotes Caspase-11-dependent Macrophage Pyroptosis and Worsens Escherichia coli Sepsis Outcome. WHAT THIS ARTICLE TELLS US THAT IS NEW: BACKGROUND:: Pyroptosis, a type of proinflammatory programmed cell death, drives cytokine storm. Caspase-11-dependent macrophage pyroptosis contributes to mortality during sepsis. Sphingosine-1-phosphate receptor 2 (S1PR2) signaling can amplify interleukin-1β secretion in endotoxin-induced inflammation. Here, we hypothesized that S1PR2 signaling increases caspase-11-dependent macrophage pyroptosis and worsens Gram-negative sepsis outcome. A Gram-negative sepsis model was induced through intraperitoneal injection of Escherichia coli. Primary peritoneal macrophages isolated from wild-type, S1pr2-deficient (S1pr2), or nucleotide-binding oligomerization domain-like receptor protein-3-deficient mice were treated with E. coli. Caspase-11 activation, macrophage pyroptosis, and Ras homolog gene family, member A-guanosine triphosphate levels were assessed in those cells. Additionally, monocyte caspase-4 (an analog of caspase-11) expression and its correlation with S1PR2 expression were determined in patients with Gram-negative sepsis (n = 11). Genetic deficiency of S1PR2 significantly improved survival rate (2/10 [20%] in wild-type vs. 7/10 [70%] in S1pr2, P = 0.004) and decreased peritoneal macrophage pyroptosis (pyroptosis rate: 35 ± 3% in wild-type vs. 10 ± 3% in S1pr2, P &lt; 0.001). Decreased caspase-11 activation in S1PR2 deficiency cells contributed to the reduced macrophage pyroptosis. In addition, RhoA inhibitor abrogated the amplified caspase-11 activation in wild-type or S1PR2-overexpressing cells. In patients with Gram-negative sepsis, caspase-4 increased significantly in monocytes compared to nonseptic controls and was positively correlated with S1PR2 (r = 0.636, P = 0.035). S1PR2 deficiency decreased macrophage pyroptosis and improved survival in E. coli sepsis. These beneficial effects were attributed to the decreased caspase-11 activation of S1PR2-deficient macrophages. S1PR2 and caspase-11 may be promising new targets for treatment of sepsis."	"The tumor suppressive TGF-β/SMAD1/S1PR2 signaling axis is recurrently inactivated in diffuse large B-cell lymphoma. The sphingosine-1-phosphate receptor S1PR2 and its downstream signaling pathway are commonly silenced in diffuse large B-cell lymphoma (DLBCL), either by mutational inactivation or through negative regulation by the oncogenic transcription factor FOXP1. In this study, we examined the upstream regulators of S1PR2 expression and have newly identified the transforming growth factor-β (TGF-β)/TGF-βR2/SMAD1 axis as critically involved in S1PR2 transcriptional activation. Phosphorylated SMAD1 directly binds to regulatory elements in the S1PR2 locus as assessed by chromatin immunoprecipitation, and the CRISPR-mediated genomic editing of S1PR2, SMAD1, or TGFBR2 in DLBCL cell lines renders cells unresponsive to TGF-β-induced apoptosis. DLBCL clones lacking any 1 of the 3 factors have a clear growth advantage in vitro, as well as in subcutaneous xenotransplantation models, and in a novel model of orthotopic growth of DLBCL cells in the spleens and bone marrow of MISTRG mice expressing various human cytokines. The loss of S1pr2 induces hyperproliferation of the germinal center (GC) B-cell compartment of immunized mice and accelerates MYC-driven lymphomagenesis in spontaneous and serial transplantation models. The specific loss of Tgfbr2 in murine GC B-cell phenocopies the effects of S1pr2 loss on GC B-cell hyperproliferation. Finally, we show that SMAD1 expression is aberrantly downregulated in &gt;85% of analyzed DLBCL patients. The combined results uncover an important novel tumor suppressive function of the TGF-β/TGF-βR2/SMAD1/S1PR2 axis in DLBCL, and show that DLBCL cells have evolved to inactivate the pathway at the level of SMAD1 expression."	"Syntheses and in vitro evaluation of new S1PR1 compounds and initial evaluation of a lead F-18 radiotracer in rodents. Thirteen new sphingosine-1-phosphate receptor 1 (S1PR1) ligands were designed and synthesized by replacing azetidine-3-carboxylic acid moiety of compound 4 with new polar groups. The in vitro binding potency of these new analogs toward S1PR1 was determined. Out of 13 new compounds, four compounds 9a, 10c, 12b, and 16b displayed high S1PR1 binding potency with IC50 values of 13.2 ± 3.2, 14.7 ± 1.7, 9.7 ± 1.6, and 6.3 ± 1.3 nM, respectively; further binding studies of these four ligands toward S1PR2-5 suggested they are highly selective for S1PR1 over other S1PRs. The radiosynthesis of the lead radiotracer [<sup>18</sup>F]12b was achieved with good radiochemical yield (∼14.1%), high radiochemical purity (&gt;98%), and good specific activity (∼54.1 GBq/μmol, decay corrected to the end of synthesis, EOS). Ex vivo autoradiography and initial biodistribution studies in rodents were performed, suggesting that [<sup>18</sup>F]12b was able to penetrate the blood-brain barrier (BBB) with high brain uptake (0.71% ID/g at 60 min post-injection) and no defluorination was observed. In vitro autoradiography study in brain slices of lipopolysaccharides (LPS)-induced neuroinflammation mice indicated that SEW2871, a specific S1PR1 ligand was able to reduce the uptake of [<sup>18</sup>F]12b, suggesting [<sup>18</sup>F]12b has S1PR1 specific binding. These initial results suggested that [<sup>18</sup>F]12b has potential to be an F-18 labeled radiotracer for imaging S1PR1 in the brain of the animal in vivo."	"Aryl hydrocarbon receptor signaling promotes ORMDL3-dependent generation of sphingosine-1-phosphate by inhibiting sphingosine-1-phosphate lyase. Aryl hydrocarbon receptor (AhR), a cellular chemical sensor, controls cellular homeostasis, and sphingosine-1-phosphate (S1P), a bioactive intermediate of sphingolipid metabolism, is believed to have a role in immunity and inflammation, but their potential crosstalk is currently unknown. We aimed to determine whether there is a functional linkage between AhR signaling and sphingolipid metabolism. We showed that AhR ligands, including an environmental polycyclic aromatic hydrocarbon (PAH), induced S1P generation, and inhibited S1P lyase (S1PL) activity in resting cells, antigen/IgE-activated mast cells, and mouse lungs exposed to the AhR ligand alone or in combination with antigen challenge. The reduction of S1PL activity was due to AhR-mediated oxidation of S1PL at residue 317, which was reversible by the addition of an antioxidant or in cells with knockdown of the ORMDL3 gene encoding an ER transmembrane protein, whereas C317A S1PL mutant-transfected cells were resistant to the AhR-mediated effect. Furthermore, analysis of AhR ligand-treated cells showed a time-dependent increase of the ORMDL3-S1PL complex, which was confirmed by FRET analysis. This change increased the S1P levels, which in turn, induced mast cell degranulation via S1PR2 signaling. In addition, elevated levels of plasma S1P were found in children with asthma compared to non-asthmatic subjects. These results suggest a new regulatory pathway whereby the AhR-ligand axis induces ORMDL3-dependent S1P generation by inhibiting S1PL, which may contribute to the expression of allergic diseases."	"[Effect of S1PR2 inhibition on epithelial ovarian cancer SKOV3 cell proliferation in vitro and in vivo]. Objective: To study the effect and mechanism of S1PR2 inhibition on epithelial ovarian cancer SKOV3 cell proliferation in vitro and in vivo. Methods: (1) A pair of S1PR2 gene small interference RNA (siRNA) , namely si-S1PR2, and a pair of negative control siRNA were designed. Western blot methods were used to detect the silence efficiency of the S1PR2 in the si-S1PR2 group, blank control group and negative control group. (2) Study in vitro: the experiment included three groups, namely si-S1PR2 group, blank control group and negative control group. Cell counting kit-8 (CCK-8) assay was used to detect the proliferation inhibition rates of the transfected cells. The cell cycles of the transfected cells were measured by flow cytometry. Western blot was used to detect the levels of phosph-extracellular regulated protein kinase 1/2 (p-ERK1/2) of the transfected cells. (3) Study in vivo:to establish intraperitoneal transplantation models, 8 mice in each group were intraperitoneally injected with 5×10(6) SKOV3 cells. Phosphate buffered saline (PBS) or JTE-013 were administered into mice twice per week starting on day 7 after the injection of the cancer cells. Twenty-eight days after nude mice intraperitoneal injection with JTE-013 or PBS, the mice were sacrificed and the number and the weight of visible tumors were calculated. Results: (1) The results of western blot showed that the relative S1PR2 protein expression levels were 0.24±0.04 in the si-S1PR2 group, which was lower than that in the blank control group (1.10±0.14, P&lt;0.01) and negative control group (1.07±0.13, P&lt;0.01) . (2) The results of CCK-8 assay indicated that after transfected for 24, 48 and 72 hours, the proliferation inhibition rate of si-S1PR2 group were respectively (26.6±3.3) %, (35.0±3.4) %, and (34.0±2.8) %, significantly lower than those in the blank control group (all 0; all P&lt;0.01) and negative control group [ (1.7±0.9) %, (2.5±0.5) %,and (2.4±1.1) % respectively; all P&lt;0.01]. The results of flow cytometry showed that the G(0)/G(1) ratio in the si-S1PR2 group [ (70.9±2.8) %] was significantly higher than those in the blank control group [ (61.7±2.4) %, P&lt;0.01] and negative control group [ (62.1±3.3) %, P&lt;0.01]. Western blot showed that the relative expression level of p-ERK1/2 in si-S1PR2 group (0.11±0.03) was significantly lower than those in the blank control group [ (0.62±0.09) , P&lt;0.01] and negative control group [ (0.68±0.09) , P&lt;0.01]. (3)Twenty-eight days after nude mice intraperitoneal injection with JTE-013 or PBS, the tumor number of the control group and JTE-013 group were respectively 15.4±4.3 and 8.2±3.7, the tumor weight were (0.45±0.12) and (0.21±0.07) g, respectively. The tumor number and weight in the JTE-013 group were significantly less than those in the control group (all P&lt;0.01) . Conclusions: The growth of ovarian cancer cells could be decreased by S1PR2 inhibition in vitro and in vivo. One of the mechanisms of the growth inhibitory effect is probably that S1PR2 inhibition lower the phosphorylation level of extracellular regulated protein kinase 1/2 (ERK1/2) pathway, which prevent the transformation of ovarian cancer cells from phase G(1) to S. 目的:探讨抑制1-磷酸鞘氨醇受体2(S1PR2)对卵巢上皮性癌(卵巢癌)细胞增殖能力的影响及其作用机制。 方法: (1)设计针对S1PR2基因的小分子干扰RNA(siRNA,命名为si-S1PR2),以及与S1PR2基因无关的siRNA(作为阴性对照);以卵巢癌细胞系SKOV3细胞作为研究对象,实验分为3组,分别为si-S1PR2转染组、阴性对照组和空白对照组,采用蛋白印迹(western blot)法检测3组SKOV3细胞中S1PR2蛋白的表达。(2)体外实验:分组同前,采用活细胞计数(CCK-8)法检测转染后不同时间点(分别为24、48、72 h)3组SKOV3细胞增殖的抑制率;流式细胞仪检测转染后3组SKOV3细胞的细胞周期比例;western blot法检测转染后3组SKOV3细胞中磷酸化细胞外调节蛋白激酶1/2(p-ERK1/2)蛋白的表达水平。(3)体内实验:将SKOV3细胞接种于裸鼠腹腔,构建卵巢癌裸鼠腹腔移植瘤模型。实验分为两组,分别为S1PR2抑制剂组和对照组(每组8只裸鼠),两组裸鼠在腹腔接种SKOV3细胞后7 d开始腹腔给药,分别给予S1PR2抑制剂——JTE-013和磷酸盐缓冲液(PBS),每周2次共8次。28 d后处死并解剖两组裸鼠,观察腹腔移植瘤的生长情况。 结果: (1)western blot法检测显示,si-S1PR2转染组SKOV3细胞中S1PR2蛋白的表达水平为0.24±0.04,与阴性对照组(1.07±0.13)、空白对照组(1.10±0.14)分别比较,差异均有统计学意义(P均&lt;0.01)。(2)CCK-8法检测显示,转染24、48、72 h后,si-S1PR2转染组SKOV3细胞增殖的抑制率[分别为(26.6±3.3)%、(35.0±3.4)%、(34.0±2.8)%]明显高于阴性对照组[分别为(1.7±0.9)%、(2.5±0.5)%、(2.4±1.1)%;P均&lt;0.01]及空白对照组(均为0;P均&lt;0.01)。流式细胞仪检测显示,转染48 h后,si-S1PR2转染组细胞的G(0)/G(1)期比例为(70.9±2.8)%,明显高于空白对照组及阴性对照组[分别为(61.7±2.4)%、(62.1±3.3)%;P均&lt;0.01]。western blot法检测显示,转染48 h后,si-S1PR2转染组细胞中p-ERK1/2蛋白的表达水平为0.11±0.03,明显低于阴性对照组和空白对照组(分别为0.68±0.09、0.62±0.09;P均&lt;0.01)。(3)28 d后处死并解剖裸鼠,S1PR2抑制剂组、对照组裸鼠腹腔内的移植瘤数分别为(8.2±3.7)、(15.4±4.3)个,移植瘤质量分别为(0.21±0.07)、(0.45±0.12)g,两组分别比较,差异均有统计学意义(P均&lt;0.01)。 结论:在体内、外抑制S1PR2蛋白表达后均能降低卵巢癌SKOV3细胞的增殖能力,其机制之一可能是通过下调细胞外调节蛋白激酶1/2(ERK1/2)通路的磷酸化水平,阻止卵巢癌细胞从G(1)期到S期的转化。."	"DJ-1 is involved in epigenetic control of sphingosine-1-phosphate receptor expression in vascular neointima formation. DJ-1 and sphingosine-1-phosphate (S1P) receptors (S1PRs) are implicated in the control of physiology and pathophysiology of cardiovascular systems such as blood pressure, atherosclerosis, and restenosis. Here, we investigated whether DJ-1 with antioxidant function participates in the regulation of S1PR1 and S1PR2 expression in vascular smooth muscle cells (VSMCs) and whether this response is related to vascular neointima formation. In vitro studies used cellular migration assay, western blot, reverse transcriptase and real-time PCR analysis, and immunocytochemistry. In vivo studies were performed using the carotid artery ligation model together with immunohistochemistry in DJ-1 knockout (DJKO) and corresponding wild-type (DJWT) mice. S1P stimulated migration of VSMCs from DJKO and DJWT mice. VSMC migration was suppressed by S1PR1 inhibitor but was elevated by S1PR2 inhibitor. Compared with DJWT mice, S1PR1 expression was higher in VSMCs and neointimal plaque from DJKO mice, but S1PR2 expression was lower. Overexpression of DJ-1 in DJKO VSMCs reduced S1PR1 expression and elevated S1PR2 expression. Compared with DJWT mice, histone deacetylase-1 recruitment and histone H3 acetylation at the S1PR1 promoter region were lower and higher, respectively, but this pattern was reversed at the S1PR2 promoter region in DJKO VSMCs. S1PR expressions and epigenetic changes at S1PR promoter regions in DJWT VSMCs treated with H2O2 showed similar patterns to those in DJKO VSMCs. Our findings suggest that DJ-1 may be involved in the regulation of S1PR1 and S1PR2 expression via H2O2-mediated histone modification in VSMCs. Consequently, this modification may affect S1P-induced VSMC migration and be related to vascular neointima formation."	"S1P-S1PR2 Axis Mediates Homing of Muse Cells Into Damaged Heart for Long-Lasting Tissue Repair and Functional Recovery After Acute Myocardial Infarction. Multilineage-differentiating stress enduring (Muse) cells, pluripotent marker stage-specific embryonic antigen-3<sup>+</sup> cells, are nontumorigenic endogenous pluripotent-like stem cells obtainable from various tissues including the bone marrow. Their therapeutic efficiency has not been validated in acute myocardial infarction. The main objective of this study is to clarify the efficiency of intravenously infused rabbit autograft, allograft, and xenograft (human) bone marrow-Muse cells in a rabbit acute myocardial infarction model and their mechanisms of tissue repair. In vivo dynamics of Nano-lantern-labeled Muse cells showed preferential homing of the cells to the postinfarct heart at 3 days and 2 weeks, with ≈14.5% of injected GFP (green fluorescent protein)-Muse cells estimated to be engrafted into the heart at 3 days. The migration and homing of the Muse cells was confirmed pharmacologically (S1PR2 [sphingosine monophosphate receptor 2]-specific antagonist JTE-013 coinjection) and genetically (S1PR2-siRNA [small interfering ribonucleic acid]-introduced Muse cells) to be mediated through the S1P (sphingosine monophosphate)-S1PR2 axis. They spontaneously differentiated into cells positive for cardiac markers, such as cardiac troponin-I, sarcomeric α-actinin, and connexin-43, and vascular markers. GCaMP3 (GFP-based Ca calmodulin probe)-labeled Muse cells that engrafted into the ischemic region exhibited increased GCaMP3 fluorescence during systole and decreased fluorescence during diastole. Infarct size was reduced by ≈52%, and the ejection fraction was increased by ≈38% compared with vehicle injection at 2 months, ≈2.5 and ≈2.1 times higher, respectively, than that induced by mesenchymal stem cells. These effects were partially attenuated by the administration of GATA4-gene-silenced Muse cells. Muse cell allografts and xenografts efficiently engrafted and recovered functions, and allografts remained in the tissue and sustained functional recovery for up to 6 months without immunosuppression. Muse cells may provide reparative effects and robust functional recovery and may, thus, provide a novel strategy for the treatment of acute myocardial infarction."	"14-3-3ζ promotes esophageal squamous cell carcinoma invasion by repressing S1PR2 protein expression through NF-κB signaling. 14-3-3ζ is overexpressed in several cancers, including esophageal squamous cell carcinoma (ESCC), and plays an important role in tumorigenesis. However, the mechanisms underlying its tumorigenesis remain unclear. Here we report that 14-3-3ζ was upregulated in ESCC tumors, compared with adjacent normal tissues; 14-3-3ζ levels were positively correlated with ESCC lymph node metastasis and recurrence. Overexpression of 14-3-3ζ promoted the tumor growth and invasion of ESCC in vitro and in vivo, whereas depletion of 14-3-3ζ suppressed these effects. Moreover, 14-3-3ζ reduces expression of genes mediating S1P/S1PR2 signaling, and this effect is mediated through activation of NF- κ B. Taken together, 14-3-3ζ contributes to ESCC tumorigenesis and progression through repressing S1PR2 signaling and may act as a new therapeutic target for ESCC."	"Novel Adipokine, FAM19A5, Inhibits Neointima Formation After Injury Through Sphingosine-1-Phosphate Receptor 2. Obesity plays crucial roles in the development of cardiovascular diseases. However, the mechanisms that link obesity and cardiovascular diseases remain elusive. Compelling evidence indicates that adipokines play an important role in obesity-related cardiovascular diseases. Here, we found a new adipokine-named family with sequence similarity 19, member A5 (FAM19A5), a protein with unknown function that was predicted to be distantly related to the CC-chemokine family. We aimed to test whether adipose-derived FAM19A5 regulates vascular pathology on injury. DNA cloning, protein expression, purification, and N-terminal sequencing were applied to characterize FAM19A5. Adenovirus infection and siRNA transfection were performed to regulate FAM19A5 expression. Balloon and wire injury were performed in vivo on the rat carotid arteries and mouse femoral arteries, respectively. Bioinformatics analysis, radioactive ligand-receptor binding assays, receptor internalization, and calcium mobilization assays were used to identify the functional receptor for FAM19A5. We first characterized FAM19A5 as a secreted protein, and the first 43 N-terminal amino acids were the signal peptides. Both FAM19A5 mRNA and protein were abundantly expressed in the adipose tissue but were downregulated in obese mice. Overexpression of FAM19A5 markedly inhibited vascular smooth muscle cell proliferation and migration and neointima formation in the carotid arteries of balloon-injured rats. Accordingly, FAM19A5 silencing in adipocytes significantly promoted vascular smooth muscle cell activation. Adipose-specific FAM19A5 transgenic mice showed greater attenuation of neointima formation compared with wild-type littermates fed with or without Western-style diet. We further revealed that sphingosine-1-phosphate receptor 2 was the functional receptor for FAM19A5, with a dissociation constant (Kd) of 0.634 nmol/L. Inhibition of sphingosine-1-phosphate receptor 2 or its downstream G12/13-RhoA signaling circumvented the suppressive effects of FAM19A5 on vascular smooth muscle cell proliferation and migration. We revealed that a novel adipokine, FAM19A5, was capable of inhibiting postinjury neointima formation via sphingosine-1-phosphate receptor 2-G12/13-RhoA signaling. Downregulation of FAM19A5 during obesity may trigger cardiometabolic diseases."	"The inflammatory molecule sphingosine-1-phosphate is not effective to evoke or sensitize cough in naïve guinea pigs. Sphingosine-1-phosphate (S1P) is an inflammatory mediator increased in the tissue in the number of inflammatory conditions. Preliminary data indicate that the vagal afferent neurons express several S1P receptors including S1PR2-3. We therefore evaluated the hypothesis that S1P induces cough and/or enhances the cough evoked by other tussive stimuli (TRPA1 and TRPV1 activators) in naïve guinea pigs. Inhalation of S1P in the concentrations of 0.1 mM and 1 mM did not evoke cough. Preinhalation and continuing inhalation of S1P (1 mM) during citric acid (0.2 M) challenge did not enhance citric acid-induced cough. Preinhalation of S1P and continuing inhalation during AITC (3 mM) challenge also did not enhance AITC-induced cough. We conclude that S1P was not efficient to evoke cough in awake naïve guinea pigs. S1P was also not effective to sensitize the cough evoked by stimulation of TRPV1 and TRPA1 receptors. Nonetheless it cannot be excluded that S1P influences cough in the context of inflamed airways when the cough-mediating nerves undergo sensory neuroplasticity."	"MicroRNA-149-5p regulates blood-brain barrier permeability after transient middle cerebral artery occlusion in rats by targeting S1PR2 of pericytes. Blood-brain barrier (BBB) disruption caused by reperfusion injury after ischemic stroke is an intractable event conducive to further injury. Brain pericytes play a vital role in maintaining BBB integrity by interacting with other components of the BBB. In this study, we found that sphingosine-1-phosphate receptor (S1PR)2 expressed in pericytes was significantly up-regulated after ischemia in vivo and in vitro. By using a S1PR2 antagonist (JTE-013), we showed that S1PR2 plays a critical role in the induction of BBB permeability of transient middle cerebral artery occlusion (tMCAO) rats and the in vitro BBB model. Furthermore, we discovered that S1PR2 may decrease N-cadherin expression and increase pericyte migration via NF-κB p65 signal and found that S1PR2 could be regulated by miR-149-5p negatively, which was decreased in the ischemic boundary zone and cultured pericytes after ischemia. Overexpression of miR-149-5p in cultured pericytes substantially increased N-cadherin expression and decreased pericyte migration, which decreased BBB leakage in the in vitro model. Up-regulating miR-149-5p by intracerebroventricular injection of agomir-149-5p attenuated BBB permeability and improved the outcomes of tMCAO rats significantly. Thus, our data suggest that miR-149-5p may serve as a potential target for treatment of BBB disruption after ischemic stroke.-Wan, Y., Jin, H.-J., Zhu, Y.-Y., Fang, Z., Mao, L., He, Q., Xia, Y.-P., Li, M., Li, Y., Chen, X., Hu, B. MicroRNA-149-5p regulates blood-brain barrier permeability after transient middle cerebral artery occlusion in rats by targeting S1PR2 of pericytes."	"Sphingosine Kinase 1 Regulates Inflammation and Contributes to Acute Lung Injury in Pneumococcal Pneumonia via the Sphingosine-1-Phosphate Receptor 2. Severe pneumonia may evoke acute lung injury, and sphingosine-1-phosphate is involved in the regulation of vascular permeability and immune responses. However, the role of sphingosine-1-phosphate and the sphingosine-1-phosphate producing sphingosine kinase 1 in pneumonia remains elusive. We examined the role of the sphingosine-1-phosphate system in regulating pulmonary vascular barrier function in bacterial pneumonia. Controlled, in vitro, ex vivo, and in vivo laboratory study. Female wild-type and SphK1-deficient mice, 8-10 weeks old. Human postmortem lung tissue, human blood-derived macrophages, and pulmonary microvascular endothelial cells. Wild-type and SphK1-deficient mice were infected with Streptococcus pneumoniae. Pulmonary sphingosine-1-phosphate levels, messenger RNA expression, and permeability as well as lung morphology were analyzed. Human blood-derived macrophages and human pulmonary microvascular endothelial cells were infected with S. pneumoniae. Transcellular electrical resistance of human pulmonary microvascular endothelial cell monolayers was examined. Further, permeability of murine isolated perfused lungs was determined following exposition to sphingosine-1-phosphate and pneumolysin. Following S. pneumoniae infection, murine pulmonary sphingosine-1-phosphate levels and sphingosine kinase 1 and sphingosine-1-phosphate receptor 2 expression were increased. Pneumonia-induced lung hyperpermeability was reduced in SphK1 mice compared with wild-type mice. Expression of sphingosine kinase 1 in macrophages recruited to inflamed lung areas in pneumonia was observed in murine and human lungs. S. pneumoniae induced the sphingosine kinase 1/sphingosine-1-phosphate system in blood-derived macrophages and enhanced sphingosine-1-phosphate receptor 2 expression in human pulmonary microvascular endothelial cell in vitro. In isolated mouse lungs, pneumolysin-induced hyperpermeability was dose dependently and synergistically increased by sphingosine-1-phosphate. This sphingosine-1-phosphate-induced increase was reduced by inhibition of sphingosine-1-phosphate receptor 2 or its downstream effector Rho-kinase. Our data suggest that targeting the sphingosine kinase 1-/sphingosine-1-phosphate-/sphingosine-1-phosphate receptor 2-signaling pathway in the lung may provide a novel therapeutic perspective in pneumococcal pneumonia for prevention of acute lung injury."	"Sphingosine-1-phosphate ameliorates the cardiac hypertrophic response through inhibiting the activity of histone deacetylase-2. Inhibition of histone deacetylase-2 (HDAC2), which is a prohypertrophic factor in the heart, can functionally attenuate cardiac hypertrophy. The present study aimed to investigate whether sphingosine‑1‑phosphate (S1P), which has recently been reported to suppress HDAC2 activity, could ameliorate the cardiac hypertrophic response and improve cardiac function in mice with transverse aortic constriction (TAC), as well as to determine the underlying mechanisms. Briefly, 8‑week‑old male C57BL/6 mice were randomly divided into sham, TAC and TAC + S1P groups; the results indicated that S1P treatment attenuated TAC‑induced cardiac dysfunction. In addition, heart size and the expression levels of fetal cardiac genes were reduced in the TAC + S1P group compared with in the TAC group. Furthermore, in cultured H9c2 cells exposed to phenylephrine, S1P was revealed to decrease cardiomyocyte size and the exaggerated expression of fetal cardiac genes. The present study also demonstrated that S1P had no effect on HDAC2 expression, but it did suppress its activity and increase acetylation of histone H3 in vivo and in vitro. Krüppel‑like factor 4 (KLF4) is an antihypertrophic transcriptional regulator, which mediates HDAC inhibitor‑induced prevention of cardiac hypertrophy; in the present study, KLF4 was upregulated by S1P. Finally, the results indicated that S1P receptor 2 (S1PR2) may be involved in the antihypertrophic effects, whereas the suppressive effects of S1P on HDAC2 activity were independent of S1PR2. In conclusion, the present study demonstrated that S1P treatment may ameliorate the cardiac hypertrophic response, which may be partly mediated by the suppression of HDAC2 activity and the upregulation of KLF4; it was suggested that S1PR2 may also be involved. Therefore, S1P may be considered a potential therapy for the treatment of heart diseases caused by cardiac hypertrophy."	"Design and synthesis of pyrazolopyridine derivatives as sphingosine 1-phosphate receptor 2 ligands. Eleven new sphingosine 1-phosphate receptor 2 (S1PR2) ligands were synthesized by modifying lead compound N-(2,6-dichloropyridin-4-yl)-2-(4-isopropyl-1,3-dimethyl-1H-pyrazolo[3,4-b]pyridin-6-yl)hydrazine-1-carboxamide (JTE-013) and their binding affinities toward S1PRs were determined in vitro using [<sup>32</sup>P]S1P and cell membranes expressing recombinant human S1PRs. Among these ligands, 35a (IC50 = 29.1 ± 2.6 nM) and 35b (IC50 = 56.5 ± 4.0 nM) exhibit binding potency toward S1PR2 comparable to JTE-013 (IC50 = 58.4 ± 7.4 nM) with good selectivity for S1PR2 over the other S1PRs (IC50 &gt; 1000 nM). Further optimization of these analogues may identify additional and more potent and selective compounds targeting S1PR2."	"Human Naive and Memory T Cells Display Opposite Migratory Responses to Sphingosine-1 Phosphate. The role of sphingosine-1 phosphate (S1P) in leukocyte trafficking has been well deciphered in mice but remains largely unaddressed in humans. In this study, we assessed the ex vivo response to S1P of primary human T cell subsets. We found that tonsil but not blood leukocytes were responsive to S1P gradients, suggesting that T cell responsiveness is regulated during their recirculation in vivo. Tonsil naive T cells were readily chemoattracted by S1P in an FTY720-sensitive, S1PR1-dependent manner. Surprisingly, S1P had the opposite effect on effector memory T cells, resident memory T cells, and recently activated T cells, inhibiting their spontaneous or chemokine-induced migration. This inhibition was also more pronounced for CD4 T cells than for CD8 T cell subsets, and was dependent on S1PR2, as shown using the S1PR2 antagonist JTE-013. S1PR1 was progressively downregulated during T cell differentiation whereas S1PR2 expression remained stable. Our results suggest that the ratio between S1PR1 and S1PR2 governs the migratory behavior of T cell subsets. They also challenge previous models of the role of S1P in lymphocyte recirculation and suggest that S1P promotes retention of memory T cell subsets in secondary lymphoid organs, via S1PR2."	"Vitamin D attenuates sphingosine-1-phosphate (S1P)-mediated inhibition of extravillous trophoblast migration. Failure of trophoblast invasion and remodelling of maternal blood vessels leads to the pregnancy complication pre-eclampsia (PE). In other systems, the sphingolipid, sphingosine-1-phosphate (S1P), controls cell migration therefore this study determined its effect on extravillous trophoblast (EVT) function. A transwell migration system was used to assess the behaviour of three trophoblast cell lines, Swan-71, SGHPL-4, and JEG3, and primary human trophoblasts in the presence or absence of S1P, S1P pathway inhibitors and 1,25(OH)2D3. QPCR and immunolocalisation were used to demonstrate EVT S1P receptor expression. EVTs express S1P receptors 1, 2 and 3. S1P inhibited EVT migration. This effect was abolished in the presence of the specific S1PR2 inhibitor, JTE-013 (p &lt; 0.05 versus S1P alone) whereas treatment with the S1R1/3 inhibitor, FTY720, had no effect. In other cell types S1PR2 is regulated by vitamin D; here we found that treatment with 1,25(OH)2D3 for 48 or 72 h reduces S1PR2 (4-fold; &lt;0.05), but not R1 and R3, expression. Moreover, S1P did not inhibit the migration of cells exposed to 1,25(OH)2D3 (p &lt; 0.05). This study demonstrates that although EVT express three S1P receptor isoforms, S1P predominantly signals through S1PR2/Gα12/13 to activate Rho and thereby acts as potent inhibitor of EVT migration. Importantly, expression of S1PR2, and therefore S1P function, can be down-regulated by vitamin D. Our data suggest that vitamin D deficiency, which is known to be associated with PE, may contribute to the impaired trophoblast migration that underlies this condition."	"Sphingosine-1-phosphate (S1P) enhances glomerular endothelial cells activation mediated by anti-myeloperoxidase antibody-positive IgG. Cumulating evidences suggested an important role of sphingosine-1-phosphate (S1P) and its receptors in regulating endothelial barrier integrity. Our previous study revealed that the circulating S1P levels and renal expression of S1PRs correlated with disease activity and renal damage in patients with antineutrophil cytoplasmic antibody (ANCA)-associated vasculitis (AAV). This study investigated the role of S1P and its receptors in myeloperoxidase (MPO)-ANCA-positive IgG-mediated glomerular endothelial cell (GEnC) activation. The effect of S1P on morphological alteration of GEnCs in the presence of MPO-ANCA-positive IgG was observed. Permeability assay was performed to determine endothelial monolayer activation in quantity. Both membrane-bound and soluble ICAM-1 and VCAM-1 levels were measured. Furthermore, antagonists and/or agonists of various S1PRs were employed to determine the role of different S1PRs. S1P enhanced MPO-ANCA-positive IgG-induced disruption of tight junction and disorganization of cytoskeleton in GEnCs. S1P induced further increase in monolayer permeability of GEnC monolayers in the presence of MPO-ANCA-positive IgG. S1P enhanced MPO-ANCA-positive IgG-induced membrane-bound and soluble ICAM-1/VCAM-1 up-regulation of GEnCs. Soluble ICAM-1 levels in the supernatants of GEnCs stimulated by S1P and MPO-ANCA-positive IgG increased upon pre-incubation of S1PR1 antagonist, while pre-incubation of GEnCs with the S1PR1 agonist down-regulated sICAM-1 level. Blocking S1PR2-4 reduced sICAM-1 levels in the supernatants of GEnCs stimulated by S1P and MPO-ANCA-positive IgG. Pre-incubation with S1PR5 agonist could increase sICAM-1 level in the supernatants of GEnC stimulated by S1P and MPO-ANCA-positive IgG. S1P can enhance MPO-ANCA-positive IgG-mediated GEnC activation through S1PR2-5."	"Effect of moesin phosphorylation on high‑dose sphingosine‑1‑phosphate‑induced endothelial responses. It was previously reported that low‑dose sphingosine‑1‑phosphate (S1P) enhanced endothelial barrier integrity, whereas high‑dose S1P induced endothelial monolayer hyperpermeability responses. A number of studies have revealed the underlying molecular mechanisms of the physiological‑dose of S1P on barrier‑protective effect. However, little work has been performed to determine the effect of S1P‑induced endothelial barrier responses. In the present study, the role of moesin phosphorylation in excessive S1P‑induced endothelial hyperpermeability was investigated by western blotting, fluorescence staining and transendothelial electrical resistance detection. It was revealed that S1P induced moesin phosphorylation in a time‑ and concentration‑dependent manner. In addition, it was confirmed that high‑dose S1P‑induced moesin phosphorylation occurred via S1P receptor 2 (S1PR2). Moesin phosphorylation was required for S1P‑induced F‑actin rearrangement and endothelial barrier disruption. The results suggested that the S1PR2‑moesin axis is involved in high‑dose S1P‑induced endothelial barrier responses. The results of the present study may provide novel therapeutic targets for endothelial injury‑associated vascular disorders."	"Sphingosine Kinases/Sphingosine 1-Phosphate Signaling in Hepatic Lipid Metabolism. The ever-increasing prevalence of metabolic diseases such as dyslipidemia and diabetes in the western world continues to be of great public health concern. Biologically active sphingolipids, such as sphingosine 1-phosphate (S1P) and ceramide, are important regulators of lipid metabolism. S1P not only directly functions as an active intracellular mediator, but also activates multiple signaling pathways via five transmembrane G-protein coupled receptors (GPCRs), S1PR1-5. S1P is exclusively formed by sphingosine kinases (SphKs). Two isoforms of SphKs, SphK1 and SphK2, have been identified. Recent identification of the conjugated bile acid-induced activation of S1PR2 as a key regulator of SphK2 opened new directions for both the sphingolipid and bile acid research fields. The role of SphKs/S1P-mediated signaling pathways in health and various human diseases has been extensively reviewed elsewhere. This review focuses on recent findings related to SphKs/S1P-medaited signaling pathways in regulating hepatic lipid metabolism."	"Bile acids as global regulators of hepatic nutrient metabolism. Bile acids (BA) are synthesized from cholesterol in the liver. They are essential for promotion of the absorption of lipids, cholesterol, and lipid-soluble vitamins from the intestines. BAs are hormones that regulate nutrient metabolism by activating nuclear receptors (farnesoid X receptor (FXR), pregnane X receptor, vitamin D) and G protein-coupled receptors (e.g., TGR5, sphingosine-1-phosphate receptor 2 (S1PR2)) in the liver and intestines. In the liver, S1PR2 activation by conjugated BAs activates the extracellular signal-regulated kinase 1/2 and AKT signaling pathways, and nuclear sphingosine kinase 2. The latter produces sphingosine-1-phosphate (S1P), an inhibitor of histone deacetylases 1/2, which allows for the differential up-regulation of expression of genes involved in the metabolism of sterols and lipids. We discuss here the emerging concepts of the interactions of BAs, FXR, insulin, S1P signaling and nutrient metabolism."	"Changes of Foxo3a in PBMCs and its associations with stress hyperglycemia in acute obstructive suppurative cholangitis patients. The levels of Foxo3a in the peripheral blood mononuclears cells (PBMCs) before and after treatment were detected in acute obstructive suppurative cholangitis (AOSC) patients to evaluate the associations between Foxo3a and stress hyperglycemia (SHG). PBMCs were obtained from AOSC patients (n=28) on admission (AP), from patients at 1 week after cure (RP) and from healthy volunteers (HV) (n=14) to evaluate the relationship between the protein levels of Foxo3a and the serum levels of glucose. Signaling pathways, which link inflammation and glycometabolism, simultaneously affecting the expression of Foxo3a, were detected. In addition, cytokines were detected in PBMCs and AOSC mouse models, which were pre-treated with Foxo3a agonist. The levels of glucose and p-Foxo3a in the AP were significantly higher than those in the RP and HV, where as the levels of Foxo3a in the AP were lower than those in the RP and HV. Foxo3a levels in the AP normalized against RP were strongly negatively correlated with the glucose levels in the AP normalized against RP. The levels of sphingosine-1-phosphate receptor 2 (S1PR2) in the AP were higher than those in the RP and HV. In addition, inhibition of Foxo3a phosphorylation, coupled with the down-regulation of S1PR2, attenuated the LPS-induced inflammatory response in the PBMCs and AOSC mouse models. Foxo3a is correlated with the dysregulation of glucose homeostasis in the pathogenesis of AOSC-induced sepsis by inhibiting the activation of PI3K/Akt-S1PR2 and NF-κB pathways, hinting at a switched role and therapeutic potentialities in the early stage of sepsis."	"Bile acid TUDCA improves insulin clearance by increasing the expression of insulin-degrading enzyme in the liver of obese mice. Disruption of insulin secretion and clearance both contribute to obesity-induced hyperinsulinemia, though reduced insulin clearance seems to be the main factor. The liver is the major site for insulin degradation, a process mainly coordinated by the insulin-degrading enzyme (IDE). The beneficial effects of taurine conjugated bile acid (TUDCA) on insulin secretion as well as insulin sensitivity have been recently described. However, the possible role of TUDCA in insulin clearance had not yet been explored. Here, we demonstrated that 15 days treatment with TUDCA reestablished plasma insulin to physiological concentrations in high fat diet (HFD) mice, a phenomenon associated with increased insulin clearance and liver IDE expression. TUDCA also increased IDE expression in human hepatic cell line HepG2. This effect was not observed in the presence of an inhibitor of the hepatic membrane bile acid receptor, S1PR2, nor when its downstream proteins were inhibited, including IR, PI3K and Akt. These results indicate that treatment with TUDCA may be helpful to counteract obesity-induced hyperinsulinemia through increasing insulin clearance, likely through enhanced liver IDE expression in a mechanism dependent on S1PR2-Insulin pathway activation."	"Sphingosine kinase 1/sphingosine-1-phosphate (S1P)/S1P receptor axis is involved in ovarian cancer angiogenesis. Sphingosine kinase (SphK)/sphingosine-1-phosphate (S1P)/S1P receptor (S1PR) signaling pathway has been implicated in a variety of pathological processes of ovarian cancer. However, the function of this axis in ovarian cancer angiogenesis remains incompletely defined. Here we provided the first evidence that SphK1/S1P/S1PR1/3 pathway played key roles in ovarian cancer angiogenesis. The expression level of SphK1, but not SphK2, was closely correlated with the microvascular density (MVD) of ovarian cancer tissue. In vitro, the angiogenic potential and angiogenic factor secretion of ovarian cancer cells could be attenuated by SphK1, but not SphK2, blockage and were restored by the addition of S1P. Moreover, in these cells, we found S1P stimulation induced the angiogenic factor secretion via S1PR1 and S1PR3, but not S1PR2. Furthermore, inhibition of S1PR1/3, but not S1PR2, attenuated the angiogenic potential and angiogenic factor secretion of the cells. in vivo, blockage of SphK or S1PR1/3 could attenuate ovarian cancer angiogenesis and inhibit angiogenic factor expression in mouse models. Collectively, the current study showed a novel role of SphK1/S1P/S1PR1/3 axis within the ovarian cancer, suggesting a new target to block ovarian cancer angiogenesis."	"[Cholestasis-induced liver injury: the role of S1PR2]. NA"	"Obesity-stimulated aldosterone release is not related to an S1P-dependent mechanism. Aldosterone has been identified as an important factor in obesity-associated hypertension. Here, we investigated whether sphingosine-1-phosphate (S1P), which has previously been linked to obesity, increases aldosterone release. S1P-induced aldosterone release was determined in NCI H295R cells in the presence of S1P receptor (S1PR) antagonists. In vivo release of S1P (100-300 µg/kgbw) was investigated in pithed, lean Sprague Dawley (SD) rats, diet-obese spontaneous hypertensive rats (SHRs), as well as in lean or obese Zucker rats. Aldosterone secretion was increased in NCI H295R cells by S1P, the selective S1PR1 agonist SEW2871 and the selective S1PR2 antagonist JTE013. Treatment with the S1PR1 antagonist W146 or fingolimod and the S1PR1/3 antagonist VPbib2319 decreased baseline and/or S1P-stimulated aldosterone release. Compared to saline-treated SD rats, plasma aldosterone increased by ~50 pg/mL after infusing S1P. Baseline levels of S1P and aldosterone were higher in obese than in lean SHRs. Adrenal S1PR expression did not differ between chow- or CD-fed rats that had the highest S1PR1 and lowest S1PR4 levels. S1P induced a short-lasting increase in plasma aldosterone in obese, but not in lean SHRs. However, 2-ANOVA did not demonstrate any difference between lean and obese rats. S1P-induced aldosterone release was also similar between obese and lean Zucker rats. We conclude that S1P is a local regulator of aldosterone production. S1PR1 agonism induces an increase in aldosterone secretion, while stimulating adrenal S1PR2 receptor suppresses aldosterone production. A significant role of S1P in influencing aldosterone secretion in states of obesity seems unlikely."	"The balance between Gαi-Cdc42/Rac and Gα12/13-RhoA pathways determines endothelial barrier regulation by sphingosine-1-phosphate. The bioactive sphingosine-1-phosphatephosphate (S1P) is present in plasma, bound to carrier proteins, and involved in many physiological processes, including angiogenesis, inflammatory responses, and vascular stabilization. S1P can bind to several G-protein-coupled receptors (GPCRs) activating a number of different signaling networks. At present, the dynamics and relative importance of signaling events activated immediately downstream of GPCR activation are unclear. To examine these, we used a set of fluorescence resonance energy transfer-based biosensors for different RhoGTPases (Rac1, RhoA/B/C, and Cdc42) as well as for heterotrimeric G-proteins in a series of live-cell imaging experiments in primary human endothelial cells. These experiments were accompanied by biochemical GTPase activity assays and transendothelial resistance measurements. We show that S1P promotes cell spreading and endothelial barrier function through S1PR1-Gαi-Rac1 and S1PR1-Gαi-Cdc42 pathways. In parallel, a S1PR2-Gα12/13-RhoA pathway is activated that can induce cell contraction and loss of barrier function, but only if Gαi-mediated signaling is suppressed. Our results suggest that Gαq activity is not involved in S1P-mediated regulation of barrier integrity. Moreover, we show that early activation of RhoA by S1P inactivates Rac1 but not Cdc42, and vice versa. Together, our data show that the rapid S1P-induced increase in endothelial integrity is mediated by a S1PR1-Gαi-Cdc42 pathway."	"Beneficial effects of bile acid receptor agonists in pulmonary disease models. Bile acids act as steroid hormones, controlling lipid, glucose and energy metabolism, as well as inflammation and fibrosis. Their actions are implemented through activation of nuclear (FXR, VDR, PXR) and membrane G protein-coupled (TGR5, S1PR2) receptors. Areas covered: This review discusses the potential of FXR and TGR5 as therapeutic targets in the treatment of pulmonary disorders linked to metabolism and/or inflammation. Obeticholic acid (OCA) is the most clinically advanced bile acid-derived agonist for FXR-mediated anti-inflammatory and anti-fibrotic effects. It therefore represents an attractive pharmacological approach for the treatment of lung conditions characterized by vascular and endothelial dysfunctions. Expert opinion: Inflammation, vascular remodeling and fibrotic processes characterize the progression of pulmonary arterial hypertension (PAH) and idiopathic pulmonary fibrosis (IPF). These processes are only partially targeted by the available therapeutic options and still represent a relevant medical need. The results hereby summarized demonstrate OCA efficacy in preventing experimental lung disorders, i.e. monocrotaline-induced PAH and bleomycin-induced fibrosis, by abating proinflammatory and vascular remodeling progression. TGR5 is also expressed in the lung, and targeting the TGR5 pathway, using the TGR5 agonist INT-777 or the dual FXR/TGR5 agonist INT-767, could also contribute to the treatment of pulmonary disorders mediated by inflammation and fibrosis."	"Control of Cell Shape, Neurite Outgrowth, and Migration by a Nogo-A/HSPG Interaction. Heparan sulfate proteoglycans (HSPGs) critically modulate adhesion-, growth-, and migration-related processes. Here, we show that the transmembrane protein, Nogo-A, inhibits neurite outgrowth and cell spreading in neurons and Nogo-A-responsive cell lines via HSPGs. The extracellular, active 180 amino acid Nogo-A region, named Nogo-A-Δ20, binds to heparin and brain-derived heparan sulfate glycosaminoglycans (GAGs) but not to the closely related chondroitin sulfate GAGs. HSPGs are required for Nogo-A-Δ20-induced inhibition of adhesion, cell spreading, and neurite outgrowth, as well as for RhoA activation. Surprisingly, we show that Nogo-A-Δ20 can act via HSPGs independently of its receptor, Sphingosine-1-Phosphate receptor 2 (S1PR2). We thereby identify the HSPG family members syndecan-3 and syndecan-4 as functional receptors for Nogo-A-Δ20. Finally, we show in explant cultures ex vivo that Nogo-A-Δ20 promotes the migration of neuroblasts via HSPGs but not S1PR2."	"S1PR1 drives a feedforward signalling loop to regulate BATF3 and the transcriptional programme of Hodgkin lymphoma cells. The Hodgkin/Reed-Sternberg cells of classical Hodgkin lymphoma (HL) are characterised by the aberrant activation of multiple signalling pathways. Here we show that a subset of HL displays altered expression of sphingosine-1-phosphate (S1P) receptors (S1PR)s. S1P activates phosphatidylinositide 3-kinase (PI3-K) in these cells that is mediated by the increased expression of S1PR1 and the decreased expression of S1PR2. We also showed that genes regulated by the PI3-K signalling pathway in HL cell lines significantly overlap with the transcriptional programme of primary HRS cells. Genes upregulated by the PI3-K pathway included the basic leucine zipper transcription factor, ATF-like 3 (BATF3), which is normally associated with the development of dendritic cells. Immunohistochemistry confirmed that BATF3 was expressed in HRS cells of most HL cases. In contrast, in normal lymphoid tissues, BATF3 expression was confined to a small fraction of CD30-positive immunoblasts. Knockdown of BATF3 in HL cell lines revealed that BATF3 contributed to the transcriptional programme of primary HRS cells, including the upregulation of S1PR1. Our data suggest that disruption of this potentially oncogenic feedforward S1P signalling loop could provide novel therapeutic opportunities for patients with HL."	"Bile Acid-Mediated Sphingosine-1-Phosphate Receptor 2 Signaling Promotes Neuroinflammation during Hepatic Encephalopathy in Mice. Hepatic encephalopathy (HE) is a neuropsychiatric complication that occurs due to deteriorating hepatic function and this syndrome influences patient quality of life, clinical management strategies and survival. During acute liver failure, circulating bile acids increase due to a disruption of the enterohepatic circulation. We previously identified that bile acid-mediated signaling occurs in the brain during HE and contributes to cognitive impairment. However, the influences of bile acids and their downstream signaling pathways on HE-induced neuroinflammation have not been assessed. Conjugated bile acids, such as taurocholic acid (TCA), can activate sphingosine-1-phosphate receptor 2 (S1PR2), which has been shown to promote immune cell infiltration and inflammation in other models. The current study aimed to assess the role of bile-acid mediated S1PR2 signaling in neuroinflammation and disease progression during azoxymethane (AOM)-induced HE in mice. Our findings demonstrate a temporal increase of bile acids in the cortex during AOM-induced HE and identified that cortical bile acids were elevated as an early event in this model. In order to classify the specific bile acids that were elevated during HE, a metabolic screen was performed and this assay identified that TCA was increased in the serum and cortex during AOM-induced HE. To reduce bile acid concentrations in the brain, mice were fed a diet supplemented with cholestyramine, which alleviated neuroinflammation by reducing proinflammatory cytokine expression in the cortex compared to the control diet-fed AOM-treated mice. S1PR2 was expressed primarily in neurons and TCA treatment increased chemokine ligand 2 mRNA expression in these cells. The infusion of JTE-013, a S1PR2 antagonist, into the lateral ventricle prior to AOM injection protected against neurological decline and reduced neuroinflammation compared to DMSO-infused AOM-treated mice. Together, this identifies that reducing bile acid levels or S1PR2 signaling are potential therapeutic strategies for the management of HE."	"S1PR2 antagonist protects endothelial cells against high glucose-induced mitochondrial apoptosis through the Akt/GSK-3β signaling pathway. Vascular complications are the main cause of morbidity and mortality associated with type 2 diabetes mellitus. An early hallmark of the onset of vascular complications is endothelial dysfunction and apoptosis. We aimed to explore the role of sphingosine-1-phosphatereceptor 2 (S1PR2) in high glucose-induced endothelial cells apoptosis and to elaborate the underlying mechanism. Human umbilical vein endothelial cells (HUVECs) were cultured in a high glucose with or without S1PR2 antagonist. The apoptosis of the cells was measured by flow cytometry and mitochondrial membrane permeability was detected by the fluorescent probe JC-1. The expression of the related protein was determined by western blot. Cell apoptosis and the loss of mitochondrial membrane permeability were induced under high glucose conditions in HUVECs. The expression of mitochondrial apoptosis related protein bax increased and bcl-2 decreased in high glucose-induced HUVECs. The level of cytochrome c released into the cytoplasm increased when cells were exposed to high glucose. In addition, the expression of p-AKT and p-GSK3β was reduced when HUVECs were treated with high glucose. However, these effects were reversed in HUVECs when cells treated with S1PR2 antagonist. In conclusion, S1PR2 antagonist protects endothelial cells against high glucose-induced mitochondrial apoptosis through the Akt/GSK-3β signaling pathway."	"Sphingosine 1-Phosphate Receptors: Do They Have a Therapeutic Potential in Cardiac Fibrosis? Sphingosine 1-phosphate (S1P) is a bioactive lipid that is characterized by a peculiar mechanism of action. In fact, S1P, which is produced inside the cell, can act as an intracellular mediator, whereas after its export outside the cell, it can act as ligand of specific G-protein coupled receptors, which were initially named endothelial differentiation gene (Edg) and eventually renamed sphingosine 1-phosphate receptors (S1PRs). Among the five S1PR subtypes, S1PR1, S1PR2 and S1PR3 isoforms show broad tissue gene expression, while S1PR4 is primarily expressed in immune system cells, and S1PR5 is expressed in the central nervous system. There is accumulating evidence for the important role of S1P as a mediator of many processes, such as angiogenesis, carcinogenesis and immunity, and, ultimately, fibrosis. After a tissue injury, the imbalance between the production of extracellular matrix (ECM) and its degradation, which occurs due to chronic inflammatory conditions, leads to an accumulation of ECM and, consequential, organ dysfunction. In these pathological conditions, many factors have been described to act as pro- and anti-fibrotic agents, including S1P. This bioactive lipid exhibits both pro- and anti-fibrotic effects, depending on its site of action. In this review, after a brief description of sphingolipid metabolism and signaling, we emphasize the involvement of the S1P/S1PR axis and the downstream signaling pathways in the development of fibrosis. The current knowledge of the therapeutic potential of S1PR subtype modulators in the treatment of the cardiac functions and fibrinogenesis are also examined."	"[Inhibitory Effects of Sphingosine-1-phosphate Receptor-2 on Vascular Permeability in Mice]. To determine the effect of sphingosine-1-phosphate receptor 2 (S1PR2) on vascular permeability in mice. Acute lung injury models of mice were constructed with intra-tracheal administration of lipopolysaccharide (LPS) and compared with the controls with intra-tracheal administration of saline. The effect of S1PR2 on vascular permeability was observed by detecting leakage of Evans blue into lung tissues, pulmonary vascular leakage of fluorescein isothiocyanate (FITC)-dextran, and the wet/dry mass ratio of lungs. The effect of vascular endothelial growth factor (VEGF) on vascular endothelial permeability was detected by Miles analysis. LPS injections induced significant Evans blue leakage, FITC-dextran pulmonary vascular leakage and pulmonary edema, which appeared to be more serious in S1PR2-deleted mice compared with those in wild-type mice. LPS enhanced Evans blue leakage associated with VEGF in a dose-dependent way in both S1PR2-deleted mice and wild type mice. But the vascular permeability response in subcutaneous tissues induced by VEGF was higher in S1PR2-deleted mice than that in wild-type mice. S1PR2 is involved in endothelial cell barrier protections, which inhibits vascular permeability."	"Characterization and Expression of Sphingosine 1-Phosphate Receptors in Human and Rat Heart. Aim: Sphingosine 1-phosphate (S1P), sphingolipid derivatives are known anti-inflammatory, anti-apoptotic, and anti-oxidant agent. S1P have been demonstrated to have a role in the cardiovascular system. The purpose of this study was to understand the precise expression and distribution of S1P receptors (S1PRs) in human and rat cardiovascular tissues to know the significance and possible implementation of our experimental studies in rat models. Methods and Results: In this study, we investigated the localization of S1PRs in human heart samples from cardiac surgery department, University of Verona Hospital and rat samples. Immunohistochemical investigation of paraffin-embedded sections illustrated diffused staining of the myocardial samples from human and rat. The signals of the human heart were similar to those of the rat heart in all chambers of the heart. The immunohistochemical expression levels correlated well with the results of RT-PCR-based analysis and western blotting. We confirmed by all techniques that S1PR1 expressed strongly as compared to S1PR3, and are uniformly distributed in all chambers of the heart with no significant difference in human and rat myocardial tissue. S1PR2 expression was significantly weak while S1PR4 and S1PR5 were not detectable in RT-PCR results in both human and rat heart. Conclusion: These results indicate that experimental studies using S1PR agonists on rat models are more likely to have a potential for translation into clinical studies, and second important information revealed by this study is, S1P receptor agonist can be used for cardioprotection in global ischemia-reperfusion injury."	"Substrate properties of zebrafish Rtn4b/Nogo and axon regeneration in the zebrafish optic nerve. This study explored why lesioned retinal ganglion cell (RGC) axons regenerate successfully in the zebrafish optic nerve despite the presence of Rtn4b, the homologue of the rat neurite growth inhibitor RTN4-A/Nogo-A. Rat Nogo-A and zebrafish Rtn4b possess characteristic motifs (M1-4) in the Nogo-A-specific region, which contains delta20, the most inhibitory region of rat Nogo-A. To determine whether zebrafish M1-4 is inhibitory as rat M1-4 and Nogo-A delta20, proteins were recombinantly expressed and used as substrates for zebrafish single cell RGCs, mouse hippocampal neurons and goldfish, zebrafish and chick retinal explants. When offered as homogenous substrates, neurites of hippocampal neurons and of zebrafish single cell RGCs were inhibited by zebrafish M1-4, rat M1-4, and Nogo-A delta20. Neurite length increased when zebrafish single cell RGCs were treated with receptor-type-specific antagonists and, respectively, with morpholinos (MO) against S1PR2 and S1PR5a-which represent candidate zebrafish Nogo-A receptors. In a stripe assay, however, where M1-4 lanes alternate with polylysine-(Plys)-only lanes, RGC axons from goldfish, zebrafish, and chick retinal explants avoided rat M1-4 but freely crossed zebrafish M1-4 lanes-suggesting that zebrafish M1-4 is growth permissive and less inhibitory than rat M1-4. Moreover, immunostainings and dot blots of optic nerve and myelin showed that expression of Rtn4b is very low in tissue and myelin at 3-5 days after lesion when axons regenerate. Thus, Rtn4b seems to represent no major obstacle for axon regeneration in vivo because it is less inhibitory for RGC axons from retina explants, and because of its low abundance."	"Sphingosine 1-phosphate signaling in bone remodeling: multifaceted roles and therapeutic potential. Sphingolipids belong to a complex class of lipid molecules that are crucially involved in the regulation of important biological processes including proliferation, migration and apoptosis. Given the significant progress made in understanding the sphingolipid pathobiology of several diseases, sphingolipid-related checkpoints emerge as attractive targets. Recent data indicate the multifaceted contribution of the sphingolipid machinery to osteoclast - osteoblast crosstalk, representing one of the pivotal interactions underlying bone homeostasis. Imbalances in the interplay of osteoblasts and osteoclasts might lead to bone-related diseases such as osteoporosis, rheumatoid arthritis, and bone metastases. Areas covered: We summarize and analyze the progress made in bone research in the context of the current knowledge of sphingolipid-related mechanisms regulating bone remodeling. Particular emphasis was given to bioactive sphingosine 1-phosphate (S1P) and S1P receptors (S1PRs). Moreover, the mechanisms of how dysregulations of this machinery cause bone diseases, are covered. Expert opinion: In the context of bone diseases, pharmacological interference with sphingolipid machinery may lead to novel directions in therapeutic strategies. Implementation of knowledge derived from in vivo animal models and in vitro studies using pharmacological agents to manipulate the S1P/S1PRs axes suggests S1PR2 and S1PR3 as potential drug targets, particularly in conjunction with technology for local drug delivery."	"The effect of sphingosine-1-phosphate on colonic smooth muscle contractility: Modulation by TNBS-induced colitis. Increased levels of circulating sphingosine-1-phosphate (S1P) have been reported in ulcerative colitis. The objective of this study was to examine the effect of S1P on colonic smooth muscle contractility and how is it affected by colitis. Colonic inflammation was induced by intrarectal administration of trinitrobenzene sulfonic acid. Five days later colon segments were isolated and used for contractility experiments and immunoblotting. S1P contracted control and inflamed colon segments and the contraction was significantly greater in inflamed colon segments. S1P-induced contraction was mediated by S1PR1 and S1PR2 in control and S1PR2 in inflamed colon segments. S1PR3 did not play a significant role in S1P-induced contractions in control or inflamed colon. S1PR1, S1PR2 and S1PR3 proteins were expressed in colon segments from both groups. The expression of S1PR1 and S1PR2 was significantly enhanced in control and inflamed colon segments, respectively. S1PR3 levels however were not significantly different between the two groups. Nifedipine significantly reduced S1P-induced contraction in control but not inflamed colon segments. Thapsigargin significantly reduced S1P-induced contraction of the inflamed colon. GF 109203X and Y-27632, alone abolished S1P-induced contraction of the control but not inflamed colon segments. Combination of GF 109203X, Y-27632 and thapsigargin abolished S1P-induced contraction of inflamed colon segments. S1P contracted control colon via S1PR1 and S1PR2 and inflamed colon exclusively via S1PR2. Calcium influx (control) or release (inflamed) and calcium sensitization are involved in S1P-induced contraction. Exacerbated response to S1P in colitic colon segments may explain altered colonic motility reported in patients and experimental models of inflammatory bowel disease."	"Sphingosine-1-Phosphate Mediates Fibrosis in Orbital Fibroblasts in Graves' Orbitopathy. To investigate the effect of sphingosine-1-phosphate (S1P) on fibrosis in orbital fibroblasts in Graves' orbitopathy (GO). Orbital fibroblasts were cultured from orbital adipose/connective tissues of patients with GO and healthy control subjects. Effects of treatment with TGF-β and cigarette smoke extract (CSE) on S1P receptor (S1PR) messenger RNA (mRNA) and S1P expression were evaluated by real-time polymerase chain reaction and Western blotting. To evaluate the role of S1P in fibrosis, cells were pretreated with W146 (S1PR1 antagonist); JTE013 (S1PR2 antagonist); FTY720 (S1PR1 modulator); or 5C (sphingosine kinase-1 blocker) for 1 hour before stimulation with TGF-β, CSE, or IL-1β. Expression of fibrosis-related proteins (collagen Iα, fibronectin, and α-smooth muscle actin [SMA]) and tissue remodeling-related proteins (matrix metalloproteinases [MMPs] and tissue inhibitor of metalloproteinase [TIMP]-1) was then evaluated by Western blotting. Expression levels of S1PR mRNA and S1P in GO orbital fibroblasts increased upon TGF-β and CSE treatment. Treatment with S1PR blockers and 5C inhibited TGF-β and CSE-induced expression of collagen Iα, fibronectin, and α-SMA, as well as IL-1β-induced expression of MMP-1, MMP-2, MMP-9, and TIMP-1. Exogenous S1P treatment without profibrotic stimulants upregulated collagen Iα, fibronectin, α-SMA, MMP-1, MMP-2, MMP-9, and TIMP-1 expression in a dose-dependent manner. Blocking of S1PR activity and inhibition of S1P synthesis led to decreased expression of fibrosis and tissue remodeling-related proteins in primary cultures of orbital fibroblasts derived from patients with GO. Thus, modulation of S1P activity might have therapeutic potential in the suppression of fibrosis in GO."	"Sphingolipids Are Dual Specific Drug Targets for the Management of Pulmonary Infections: Perspective. Sphingolipids are the major constituent of the mucus secreted by the cells of epithelial linings of lungs where they maintain the barrier functions and prevent microbial invasion. Sphingolipids are interconvertible, and their primary and secondary metabolites have both structural and functional roles. Out of several sphingolipid metabolites, sphingosine-1 phosphate (S1P) and ceramide are central molecules and decisive for sphingolipid signaling. These are produced by enzymatic activity of sphingosine kinase-1 (SK-1) upon the challenge with either biological or physiological stresses. S1P and ceramide rheostat are important for the progression of various pathologies, which are manifested by inflammatory cascade. S1P is a well-established secondary messenger and associated with various neuronal, metabolic, and inflammatory diseases other than respiratory infections such as Chlamydia pneumoniae, Streptococcus pneumoniae, and Mycobacterium tuberculosis. These pathogens are known to exploit sphingolipid metabolism for their opportunistic survival. Decreased sphingosine kinase activity/S1P content in the lung and peripheral blood of tuberculosis patients clearly indicated a dysregulation of sphingolipid metabolism during infection and suggest that sphingolipid metabolism is important for management of infection by the host. Our previous study has demonstrated that gain of SK-1 activity is important for the maturation of phagolysosomal compartment, innate activation of macrophages, and subsequent control of mycobacterial replication/growth in macrophages. Furthermore, S1P-mediated amelioration of lung pathology and disease severity in TB patients is believed to be mediated by the selective activation or rearrangement of various S1P receptors (S1PR) particularly S1PR2, which has been effective in controlling respiratory fungal pathogens. Therefore, such specificity of S1P-S1PR would be paramount for triggering inflammatory events, subsequent activation, and fostering bactericidal potential in macrophages for the control of TB. In this review, we have discussed and emphasized that sphingolipids may represent effective novel, yet dual specific drug targets for controlling pulmonary infections."	"Vehicle-dependent Effects of Sphingosine 1-phosphate on Plasminogen Activator Inhibitor-1 Expression. Sphingosine 1-phosphate (S1P) has been suggested to be a positive regulator of plasminogen activator inhibitor 1 (PAI-1) in adipocytes, while some studies are not consistent with this prothrombotic property of S1P. Since S1P is bound to apolipoprotein M (apoM) on HDL or to albumin in plasma, we compared the properties of these two forms on the PAI-1 induction. We investigated the associations of S1P, apoM, and PAI-1 concentrations in the plasma of normal coronary artery (NCA), stable angina pectoris (SAP), and acute coronary syndrome (ACS) subjects (n=32, 71, and 38, respectively). Then, we compared the effects of S1P with various vehicles on the PAI-1 expression in 3T3L1 adipocytes. We also investigated the modulation of the PAI-1 levels in mice infected with adenovirus coding apoM. Among ACS subjects, the PAI-1 level was positively correlated with the S1P level, but not the apoM level. In adipocytes, S1P bound to an apoM-rich vehicle induced PAI-1 expression to a lesser extent than the control vehicle, while S1P bound to an apoM-depleted vehicle induced PAI-1 expression to a greater extent than the control vehicle in 3T3L1 adipocytes. Additionally, apoM overexpression in mice failed to modulate the plasma PAI-1 level and the adipose PAI-1 expression level. S1P bound to albumin increased PAI-1 expression through the S1P receptor 2-Rho/ROCK-NFκB pathway. S1P bound to albumin, but not to apoM, induces PAI-1 expression in adipocytes, indicating that S1P can exert different properties on the pathogenesis of vascular diseases, depending on its vehicle."	"MiR-126 impairs the intestinal barrier function via inhibiting S1PR2 mediated activation of PI3K/AKT signaling pathway. Aberrant expression of miRNAs was a critical element in the pathogenesis of inflammatory bowel disease (IBD). This study aimed to explore the involvement and mechanism of miR-126 in IBD. In this study, the endogenous expressions of miR-126, S1PR2 and S1P in the pathological tissues of patients with IBD were detected using qRT-PCR and western blot assay, respectively. The luciferase reporter gene assay was performed to confirm the targeting regulatory relation between miR-126 and S1PR2. The transendothelial electrical resistance assay was used to measured the value of TEER. The expressions of miR-126, S1PR2 and S1P in the pathological tissues of IBD patients were significantly higher than that of the control group. Moreover, miR-126 overexpression contributed to intestinal mucosal barrier dysfunction in vitro. S1PR2 was a direct target of miR-126, and S1PR2 expression was negatively regulated by miR-126 in Caco-2 cells. However, S1PR2 activated by S1P had the protection effect for the integrity and permeability of intestinal mucosal barrier via a PI3K/Akt dependent mechanism. MiR-126 silencing possessed obvious protective effects on the intestinal barrier function, but these effects could be reversed by JTE-013 or LY294002. MiR-126 down-regulated S1PR2 and then prevented the activation of PI3K/AKT signaling pathway, which ultimately could damage intestinal mucosal barrier function."	"Pancreas lineage allocation and specification are regulated by sphingosine-1-phosphate signalling. During development, progenitor expansion, lineage allocation, and implementation of differentiation programs need to be tightly coordinated so that different cell types are generated in the correct numbers for appropriate tissue size and function. Pancreatic dysfunction results in some of the most debilitating and fatal diseases, including pancreatic cancer and diabetes. Several transcription factors regulating pancreas lineage specification have been identified, and Notch signalling has been implicated in lineage allocation, but it remains unclear how these processes are coordinated. Using a combination of genetic approaches, organotypic cultures of embryonic pancreata, and genomics, we found that sphingosine-1-phosphate (S1p), signalling through the G protein coupled receptor (GPCR) S1pr2, plays a key role in pancreas development linking lineage allocation and specification. S1pr2 signalling promotes progenitor survival as well as acinar and endocrine specification. S1pr2-mediated stabilisation of the yes-associated protein (YAP) is essential for endocrine specification, thus linking a regulator of progenitor growth with specification. YAP stabilisation and endocrine cell specification rely on Gαi subunits, revealing an unexpected specificity of selected GPCR intracellular signalling components. Finally, we found that S1pr2 signalling posttranscriptionally attenuates Notch signalling levels, thus regulating lineage allocation. Both S1pr2-mediated YAP stabilisation and Notch attenuation are necessary for the specification of the endocrine lineage. These findings identify S1p signalling as a novel key pathway coordinating cell survival, lineage allocation, and specification and linking these processes by regulating YAP levels and Notch signalling. Understanding lineage allocation and specification in the pancreas will shed light in the origins of pancreatic diseases and may suggest novel therapeutic approaches."	"Sphingosine-1-phosphate and its receptors in anti-neutrophil cytoplasmic antibody-associated vasculitis. C5a plays a crucial role in anti-neutrophil cytoplasmic antibody (ANCA)-mediated neutrophil recruitment and activation. Our previous studies found that the interaction between sphingosine-1-phosphate (S1P) and C5a plays an important role in the ANCA-mediated activation of neutrophils. In the current study, the expression levels of S1P in plasma and its receptors (S1PR1-5) in kidneys were analysed in patients with ANCA-associated vasculitis (AAV). Plasma samples from 32 AAV patients in active stage and 20 AAV patients in remission were collected. The plasma levels of S1P were determined by an enzyme-linked immunosorbent assay (ELISA). The expression of S1PR1-5 in the renal specimens from 24 AAV patients was detected by immunohistochemistry. The associations of the plasma levels of S1P and renal expression of S1PRs with clinical and pathological parameters were analysed. The level of plasma S1P was significantly higher in AAV patients in active stage than it was in both patients in remission and in normal controls. Correlation analysis showed that the plasma levels of S1P correlated with the initial serum creatinine levels (r = 0.502, P = 0.003) and inversely correlated with the estimated glomerular filtration rate (eGFR; r = -0.358, P = 0.044) in AAV patients. Double-labelling immunofluorescence assay suggested that S1PR1-5 were expressed on endothelial cells in the glomeruli and that S1PR1, 4 and 5 were expressed on neutrophils. In AAV patients, the circulating S1P levels were elevated and the renal expression of S1PR2-5 was upregulated. The levels of circulating S1P and the renal expression of S1PR were associated with the renal involvement and disease activity of AAV."	"ApoA-I/SR-BI modulates S1P/S1PR2-mediated inflammation through the PI3K/Akt signaling pathway in HUVECs. Endothelial dysfunction plays a vital role during the initial stage of atherosclerosis. Oxidized low-density lipoprotein (ox-LDL) induces vascular endothelial injury and vessel wall inflammation. Sphingosine-1-phosphate (S1P) exerts numerous vasoprotective effects by binding to diverse S1P receptors (S1PRs; S1PR1-5). A number of studies have shown that in endothelial cells (ECs), S1PR2 acts as a pro-atherosclerotic mediator by stimulating vessel wall inflammation through the phosphatidylinositol 3-kinase (PI3K)/Akt signaling pathway. Scavenger receptor class B member I (SR-BI), a high-affinity receptor for apolipoprotein A-I (apoA-I)/high-density lipoprotein (HDL), inhibits nuclear factor-κB (NF-κB) translocation and decreases the plasma levels of inflammatory mediators via the PI3K/Akt pathway. We hypothesized that the inflammatory effects of S1P/S1PR2 on ECs may be regulated by apoA-I/SR-BI. The results showed that ox-LDL, a pro-inflammatory factor, augmented the S1PR2 level in human umbilical vein endothelial cells (HUVECs) in a dose- and time-dependent manner. In addition, S1P/S1PR2 signaling influenced the levels of inflammatory factors, including tumor necrosis factor-α (TNF-α), interleukin-1β (IL-1β), and IL-10, aggravating inflammation in HUVECs. Moreover, the pro-inflammatory effects induced by S1P/S1PR2 were attenuated by SR-BI overexpression and enhanced by an SR-BI inhibitor, BLT-1. Further experiments showed that the PI3K/Akt signaling pathway was involved in this process. Taken together, these results demonstrate that apoA-I/SR-BI negatively regulates S1P/S1PR2-mediated inflammation in HUVECs by activating the PI3K/Akt signaling pathway."	"The Eph-related tyrosine kinase ligand Ephrin-B1 marks germinal center and memory precursor B cells. Identification of germinal center (GC) B cells is typically reliant on the use of surface activation markers that exhibit a wide range of expression. Here, we identify Ephrin-B1, a ligand for Eph-related receptor tyrosine kinases, as a specific marker of mature GC B cells. The number of Ephrin-B1<sup>+</sup> GC B cells increases during the course of an immune response with Ephrin-B1<sup>+</sup> GC B cells displaying elevated levels of Bcl6, S1pr2, and Aicda relative to their Ephrin-B1<sup>-</sup> counterparts. We further identified a small proportion of recently dividing, somatically mutated Ephrin-B1<sup>+</sup> GC B cells that have begun to down-regulate Bcl6 and S1pr2 and express markers associated with memory B cells, such as CD38 and EBI2. Transcriptional analysis indicates that these cells are developmentally related to memory B cells, and likely represent a population of GC memory precursor (PreMem) B cells. GC PreMem cells display enhanced survival relative to bulk GC B cells, localize near the edge of the GC, and are predominantly found within the light zone. These findings offer insight into the significant heterogeneity that exists within the GC B cell population and provide tools to further dissect signals regulating the differentiation of GC B cells."	"The role of sphingosine 1-phosphate receptor 2 in bile-acid-induced cholangiocyte proliferation and cholestasis-induced liver injury in mice. Bile duct obstruction is a potent stimulus for cholangiocyte proliferation, especially for large cholangiocytes. Our previous studies reported that conjugated bile acids (CBAs) activate the protein kinase B (AKT) and extracellular signal-regulated kinase 1 and 2 (ERK1/2) signaling pathways through sphingosine 1-phosphate receptor (S1PR) 2 in hepatocytes and cholangiocarcinoma cells. It also has been reported that taurocholate (TCA) promotes large cholangiocyte proliferation and protects cholangiocytes from bile duct ligation (BDL)-induced apoptosis. However, the role of S1PR2 in bile-acid-mediated cholangiocyte proliferation and cholestatic liver injury has not been elucidated. Here, we report that S1PR2 is the predominant S1PR expressed in cholangiocytes. Both TCA- and sphingosine-1-phosphate (S1P)-induced activation of ERK1/2 and AKT were inhibited by JTE-013, a specific antagonist of S1PR2, in cholangiocytes. In addition, TCA- and S1P-induced cell proliferation and migration were inhibited by JTE-013 and a specific short hairpin RNA of S1PR2, as well as chemical inhibitors of ERK1/2 and AKT in mouse cholangiocytes. In BDL mice, expression of S1PR2 was up-regulated in whole liver and cholangiocytes. S1PR2 deficiency significantly reduced BDL-induced cholangiocyte proliferation and cholestatic injury, as indicated by significant reductions in inflammation and liver fibrosis in S1PR2 knockout mice. Treatment of BDL mice with JTE-013 significantly reduced total bile acid levels in serum and cholestatic liver injury. This study suggests that CBA-induced activation of S1PR2-mediated signaling pathways plays a critical role in obstructive cholestasis and may represent a novel therapeutic target for cholestatic liver diseases. (Hepatology 2017;65:2005-2018)."	"Regulation of S1P receptors and sphingosine kinases expression in acute pulmonary endothelial cell injury. Acute lung injury and acute respiratory distress syndrome (ALI/ARDS) is a severe clinical syndrome with mortality rate as high as 30-40%. There is no treatment yet to improve pulmonary endothelial barrier function in patients with severe pulmonary edema. Developing therapies to protect endothelial barrier integrity and stabilizing gas exchange is getting more and more attention. Sphingosine-1-phosphate (S1P) is able to enhance the resistance of endothelial cell barrier. S1P at physiological concentrations plays an important role in maintaining endothelial barrier function. Proliferation, regeneration and anti-inflammatory activity that mesenchymal stem cells (MSCs) exhibit make it possible to regulate the homeostatic control of S1P. By building a pulmonary endothelial cell model of acute injury, we investigated the regulation of S1P receptors and sphingosine kinases expression by MSCs during the treatment of acute lung injury using RT-PCR, and investigated the HPAECs Micro-electronics impedance using Real Time Cellular Analysis. It was found that the down-regulation of TNF-α expression was more significant when MSC was used in combination with S1P. The combination effection mainly worked on S1PR2, S1PR3 and SphK2. The results show that when MSCs were used in combination with S1P, the selectivity of S1P receptors was increased and the homeostatic control of S1P concentration was improved through regulation of expression of S1P metabolic enzymes. The study found that, as a potential treatment, MSCs could work on multiple S1P related genes simultaneously. When it was used in combination with S1P, the expression regulation result of related genes was not simply the superposition of each other, but more significant outcome was obtained. This study establishes the experimental basis for further exploring the efficacy of improving endothelial barrier function in acute lung injury, using MSCs in combination with S1P and their possible synergistic mechanism."	"Molecular Pathogenesis of Diffuse Large B-Cell Lymphoma. Diffuse large B-cell lymphoma (DLBCL) is divided into germinal center B-like (GCB) DLBCL and activated B-like (ABC) DLBCL. In recent years, whole genome sequencing (WGS), whole exome sequencing (WES), and transcriptome sequencing (RNA-seq) have been performed for samples from many patients with DLBCL. Here, I present a review of the results of next generation sequencing data for DLBCL. Somatic mutations show a low identity between studies with only 10-20% gene overlap. DLBCL is a disease that results from various molecular pathogeneses. Mutations in genes involved in chromatin remodeling were found in the GCB subtype. Mutations in members of B-cell receptor (BCR) signaling and the NF-κB pathway (MYD88) were found in the ABC subtype. The MYD88 L265P mutation was observed in 29% of ABC DLBCL cases. EZH2 mutations were observed in 21.7% of GCB DLBCL cases. WGS indicated that inactivating mutations in GNA13 (Gα protein) were prevalent in GCB DLBCL cases. In addition, S1PR2 is a target of aberrant somatic hypermutation. In recent years, samples from patients with relapsed and refractory DLBCL were analyzed. The activation of the NF-κB pathway is associated with treatment resistance in DLBCL. Further clarification of the molecular pathogenesis of DLBCL is expected to lead to the development of individualized treatment for the disease."	"Histological Transformation and Progression in Follicular Lymphoma: A Clonal Evolution Study. Follicular lymphoma (FL) is an indolent, yet incurable B cell malignancy. A subset of patients experience an increased mortality rate driven by two distinct clinical end points: histological transformation and early progression after immunochemotherapy. The nature of tumor clonal dynamics leading to these clinical end points is poorly understood, and previously determined genetic alterations do not explain the majority of transformed cases or accurately predict early progressive disease. We contend that detailed knowledge of the expansion patterns of specific cell populations plus their associated mutations would provide insight into therapeutic strategies and disease biology over the time course of FL clinical histories. Using a combination of whole genome sequencing, targeted deep sequencing, and digital droplet PCR on matched diagnostic and relapse specimens, we deciphered the constituent clonal populations in 15 transformation cases and 6 progression cases, and measured the change in clonal population abundance over time. We observed widely divergent patterns of clonal dynamics in transformed cases relative to progressed cases. Transformation specimens were generally composed of clones that were rare or absent in diagnostic specimens, consistent with dramatic clonal expansions that came to dominate the transformation specimens. This pattern was independent of time to transformation and treatment modality. By contrast, early progression specimens were composed of clones that were already present in the diagnostic specimens and exhibited only moderate clonal dynamics, even in the presence of immunochemotherapy. Analysis of somatic mutations impacting 94 genes was undertaken in an extension cohort consisting of 395 samples from 277 patients in order to decipher disrupted biology in the two clinical end points. We found 12 genes that were more commonly mutated in transformed samples than in the preceding FL tumors, including TP53, B2M, CCND3, GNA13, S1PR2, and P2RY8. Moreover, ten genes were more commonly mutated in diagnostic specimens of patients with early progression, including TP53, BTG1, MKI67, and XBP1. Our results illuminate contrasting modes of evolution shaping the clinical histories of transformation and progression. They have implications for interpretation of evolutionary dynamics in the context of treatment-induced selective pressures, and indicate that transformation and progression will require different clinical management strategies."	"Administration of JTE013 abrogates experimental asthma by regulating proinflammatory cytokine production from bronchial epithelial cells. Sphingosine-1-phosphate (S1P) is a bioactive phospholipid that acts as a signal transducer by binding to S1P receptors (S1PR) 1 to 5. The S1P/S1PRs pathway has been associated with remodeling and allergic inflammation in asthma, but the expression pattern of S1PR and its effects on non-immune cells have not been completely clarified. The aim of this study was to examine the contribution of the signaling of S1P and S1PRs expressed in airway epithelial cells (ECs) to asthma responses in mice. Bronchial asthma was experimentally induced in BALB/c mice by ovalbumin (OVA) sensitization followed by an OVA inhalation challenge. The effects of S1PR antagonists on the development of asthma were analyzed 24 h after the OVA challenge. Immunohistological analysis revealed S1PR1-3 expression on mouse airway ECs. Quantitative real-time polymerase chain reaction demonstrated that S1P greatly stimulated the induction of CCL3 and TIMP2 mRNA in human airway ECs, i.e., BEAS-2B cells, in a dose-dependent manner. Pretreatment with the S1PR2 antagonist JTE013 inhibited the CCL3 gene expression in BEAS-2B cells. Immunohistological analysis also showed that the expression level of CCL3 was attenuated by JTE013 in asthmatic mice. Furthermore, JTE013 as well as anti-CCL3 antibody attenuated allergic responses. Intratracheal administration of JTE013 also attenuated eosinophilic reactions in bronchoalveolar lavage fluids. S1P induced transcription factor NFκB activation, while JTE013 greatly reduced the NFκB activation. JTE013 attenuated allergic airway reactions by regulating CCL3 production from bronchial ECs. The intratracheal administration of JTE013 may be a promising therapeutic strategy for bronchial asthma."	"Inhibition of Sphingosine-1-phosphate receptors in ischemia reperfusion injured autoimmunity-prone mice. B6.MRL/lpr mice, an autoimmune strain, have an accelerated injury time course, increased intensity of tissue damage, and increased CD4+ T cell infiltration in the mesenteric ischemia/reperfusion injury model. In this study, the mechanism by which CD4+ T cells were recruited into injured tissue was addressed. Fingolimod (FTY720) was utilized to assess the role of infiltrating CD4+ T cells. FTY720 treatment was more effective in attenuating injury in B6.MRL/lpr mice then in control mice. Reduced CD4+ cell infiltration and tissue injury correlated with decreased neutrophil infiltration and pro-inflammatory cytokine generation. Inhibiting downstream Sphingosine-1-phosphate (S1P) receptor signaling, specifically GαI mediated signaling, did not inhibit injury, suggesting differential utilization of the S1P receptors between control and MRL/lpr strains. Analysis of S1P receptor expression exposed a predominance of S1P2 in the B6.MRL/lpr strain. Reliance on alternate S1P receptors in the autoimmune strain will alter the progress of inflammation and tissue injury."	"Sphingosine-1 phosphate promotes intestinal epithelial cell proliferation via S1PR2. Sphingosine-1 phosphate (S1P) is a potent bioactive lipid mediator that acts both as an intracellular signaling molecule and a natural ligand of five different G protein-coupled receptors (GPCRs), S1PR1-5. The level of S1P in intestinal tissue is abundant. Previous studies have reported that S1P protects intestinal epithelial cell from apoptosis by activating the ERK and Akt signaling pathways. However, the effect of S1P on intestinal epithelial cell proliferation under physiological conditions and the underlying signaling mechanisms remain to be elucidated. Here, we show that, except for S1PR4, all S1PRs are expressed in normal intestinal epithelial cells with S1PR2 being the most abundant. S1P dose-dependently stimulated cell migration and proliferation, which were inhibited by JTE-013, a selective chemical antagonist of S1PR2, and by a S1PR2 shRNA. S1P significantly upregulated the expression of c-Myc, cyclin D1, E-cadherin and zona occluden-1 (ZO-1), which was completely inhibited by downregulation of S1PR2 expression with a shRNA. In total, the results suggest that S1P-mediated activation of the S1PR2 plays an important role in regulating intestinal epithelial cell proliferation and migration."	"Inhibition of the SphK1/S1P signaling pathway by melatonin in mice with liver fibrosis and human hepatic stellate cells. The sphingosine kinase 1/sphingosine 1-phosphate (SphK1/S1P) system is involved in different pathological processes, including fibrogenesis. Melatonin abrogates activation of hepatic stellate cells (HSCs) and attenuates different profibrogenic pathways in animal models of fibrosis, but it is unknown if protection associates with its inhibitory effect on the SphK1/S1P axis. Mice in treatment groups received carbon tetrachloride (CCl4 ) 5 μL g<sup>-1</sup> body wt i.p. twice a week for 4 or 6 weeks. Melatonin was given at 5 or 10 mg kg<sup>-1</sup> day<sup>-1</sup> i.p, beginning 2 weeks after the start of CCl4 administration. At both 4 and 6 weeks following CCl4 treatment, liver mRNA levels, protein concentration and immunohistochemical labelling for SphK1 increased significantly. S1P production, and expression of S1P receptor (S1PR)1, S1PR3 and acid sphingomyelinase (ASMase) were significantly elevated. However, there was a decreased expression of S1PR2 and S1P lyase (S1PL). Melatonin attenuated liver fibrosis, as shown by a significant inhibition of the expression of α-smooth muscle actin (α-SMA), transforming growth factor (TGF)-β and collagen (Col) Ι. Furthermore, melatonin inhibited S1P production, lowered expression of SphK1, S1PR1, SP1R3, and ASMase, and increased expression of S1PL. Melatonin induced a reversal of activated human HSCs cell line LX2, as evidenced by a reduction in α-SMA, TGF-β, and Col I expression. Melatonin-treated cells also exhibited an inhibition of the SphK1/S1P axis. Antifibrogenic effect of SphK1 inhibition was confirmed by treatment of LX2 cells with PF543. Abrogation of the lipid signaling pathway by the indole reveals novel molecular pathways that may account for the protective effect of melatonin in liver fibrogenesis. © 2016 BioFactors, 43(2):272-282, 2017."	"Sphingosine-1-phosphate/S1PR2-mediated signaling triggers Smad1/5/8 phosphorylation and thereby induces Runx2 expression in osteoblasts. Sphingosine-1-phosphate (S1P) is a signaling sphingolipid that also plays crucial roles in bone regeneration. Recently, we reported that the S1P receptors S1PR1 and S1PR2 were mainly expressed in osteoblast-like cells, and that the S1P/S1PR1 signaling pathway up-regulated osteoprotegerin and osteoblast differentiation. However, the involvement of S1P/S1PR2 signaling in osteoblast differentiation is not well understood. Here we investigate the role of S1P/S1PR2-mediated signaling in osteoblast differentiation and clarify the underlying signaling mechanisms. We found that an S1P/S1PR2/Gi-independent signaling pathway activated RhoA activity, leading to phosphorylation of Smad1/5/8 in mouse osteoblast-like MC3T3-E1 cells and primary osteoblasts. Furthermore, this signaling pathway promoted nuclear translocation of Smad4, and increased the amount of Smad6/7 protein in the nucleus. S1P also up-regulated runt-related transcription factor 2 (Runx2) expression through S1PR2/RhoA/ROCK/Smad1/5/8 signaling. Moreover, we found that S1P partially triggered S1PR2/RhoA/ROCK pathway leading to bone formation in vivo. These findings suggest that S1P induces RhoA activity, leading to the phosphorylation of Smad1/5/8, thereby promoting Runx2 expression and differentiation in osteoblasts. Our findings describe novel molecular mechanisms in S1P/S1PR2-mediated osteoblast differentiation that could aid future studies of bone regeneration."	"Melatonin prevents deregulation of the sphingosine kinase/sphingosine 1-phosphate signaling pathway in a mouse model of diethylnitrosamine-induced hepatocellular carcinoma. The sphingosine kinase (SphK)/sphingosine 1-phosphate (S1P) pathway is involved in multiple biological processes, including carcinogenesis. Melatonin shows beneficial effects in cell and animal models of hepatocellular carcinoma, but it is unknown if they are associated with the modulation of the SphK/S1P system, along with different downstream signaling pathways modified in cancer. We investigated the effects of melatonin in mice which received diethylnitrosamine (DEN) (35 mg/kg body weight i.p) once a week for 8 weeks. Melatonin was given at 5 or 10 mg/kg/day i.p. beginning 4 weeks after the onset of DEN administration and ending at the sacrifice time (10, 20, 30, or 40 weeks). Melatonin alleviated the distortion of normal hepatic architecture, lowered the incidence of preneoplastic/neoplastic lesions, and inhibited the expression of proliferative/cell cycle regulatory proteins (Ki67, PCNA, cyclin D1, cyclin E, CDK4, and CDK6). S1P levels and expression of SphK1, SphK2, and S1P receptors (S1PR1/S1PR3) were significantly elevated in DEN-treated mice. However, there was a decreased expression of S1P lyase. These effects were significantly abrogated in a time- and dose-dependent manner by melatonin, which also increased S1PR2 expression. Following DEN treatment, mice exhibited increased phosphorylation of PI3K, AKT, mTOR, STAT3, ERK, and p38, and a higher expression of NF-κB p50 and p65 subunits. Melatonin administration significantly inhibited those changes. Data obtained suggest a contribution of the SphK/S1P system and related signaling pathways to the protective effects of melatonin in hepatocarcinogenesis."	"The Neurite Outgrowth Inhibitory Nogo-A-Δ20 Region Is an Intrinsically Disordered Segment Harbouring Three Stretches with Helical Propensity. Functional recovery from central neurotrauma, such as spinal cord injury, is limited by myelin-associated inhibitory proteins. The most prominent example, Nogo-A, imposes an inhibitory cue for nerve fibre growth via two independent domains: Nogo-A-Δ20 (residues 544-725 of the rat Nogo-A sequence) and Nogo-66 (residues 1026-1091). Inhibitory signalling from these domains causes a collapse of the neuronal growth cone via individual receptor complexes, centred around sphingosine 1-phosphate receptor 2 (S1PR2) for Nogo-A-Δ20 and Nogo receptor 1 (NgR1) for Nogo-66. Whereas the helical conformation of Nogo-66 has been studied extensively, only little structural information is available for the Nogo-A-Δ20 region. We used nuclear magnetic resonance (NMR) spectroscopy to assess potential residual structural propensities of the intrinsically disordered Nogo-A-Δ20. Using triple resonance experiments, we were able to assign 94% of the non-proline backbone residues. While secondary structure analysis and relaxation measurements highlighted the intrinsically disordered character of Nogo-A-Δ20, three stretches comprising residues 561EAIQESL567, 639EAMNVALKALGT650, and 693SNYSEIAK700 form transient α-helical structures. Interestingly, 561EAIQESL567 is situated directly adjacent to one of the most conserved regions of Nogo-A-Δ20 that contains a binding motif for β1-integrin. Likewise, 639EAMNVALKALGT650 partially overlaps with the epitope recognized by 11C7, a Nogo-A-neutralizing antibody that promotes functional recovery from spinal cord injury. Diffusion measurements by pulse-field gradient NMR spectroscopy suggest concentration- and oxidation state-dependent dimerisation of Nogo-A-Δ20. Surprisingly, NMR and isothermal titration calorimetry (ITC) data could not validate previously shown binding of extracellular loops of S1PR2 to Nogo-A-Δ20. "	"Sphingosine kinase-1, S1P transporter spinster homolog 2 and S1P2 mRNA expressions are increased in liver with advanced fibrosis in human. The role of sphingosine 1-phosphate (S1P) in liver fibrosis or inflammation was not fully examined in human. Controversy exists which S1P receptors, S1P1 and S1P3 vs S1P2, would be importantly involved in its mechanism. To clarify these matters, 80 patients who received liver resection for hepatocellular carcinoma and 9 patients for metastatic liver tumor were enrolled. S1P metabolism was analyzed in background, non-tumorous liver tissue. mRNA levels of sphingosine kinase 1 (SK1) but not SK2 were increased in livers with fibrosis stages 3-4 compared to those with 0-2 and to normal liver. However, S1P was not increased in advanced fibrotic liver, where mRNA levels of S1P transporter spinster homolog 2 (SPNS2) but not S1P-degrading enzymes were enhanced. Furthermore, mRNA levels of S1P2 but not S1P1 or S1P3 were increased in advanced fibrotic liver. These increased mRNA levels of SK1, SPNS2 and S1P2 in fibrotic liver were correlated with α-smooth muscle actin mRNA levels in liver, and with serum ALT levels. In conclusion, S1P may be actively generated, transported to outside the cells, and bind to its specific receptor in human liver to play a role in fibrosis or inflammation. Altered S1P metabolism in fibrotic liver may be their therapeutic target."	"FTY720P inhibits hepatic Na(+)-K(+) ATPase via S1PR2 and PGE2. Sphingosine-1-phosphate (S1P) was found previously to inhibit Na(+)-K(+) ATPase in HepG2 cells. Whether fingolimod (FTY720), a S1P receptor (S1PR) agonist, similarly inhibits the ATPase is a question that needs to be addressed. The aim of this work was to study the effect of FTY720P, the active form of the drug, on the activity of Na(+)-K(+) ATPase in HepG2 cells and determine its mechanism of action. The activity of the ATPase was assayed by measuring the amount of inorganic phosphate liberated in the presence and the absence of ouabain. FTY720-P (7.5 nmol/L, 15 min) significantly reduced the activity of the ATPase. This effect disappeared completely in the presence of JTE-013, which is a specific blocker of sphingosine-1-phosphate receptor 2 (S1PR2), as well as in the presence of calphostin and indomethacin, which are inhibitors of protein kinase C (PKC) and COX-2, respectively. The effect of FTY720P was mimicked by prostaglandin E2 (PGE2) and PMA, but abrogated by NF-κB inhibition. When NF-κB was inhibited, the effect of exogenous PGE2 still appeared, but that of PMA did not manifest, suggesting that NF-κB is upstream of PGE2 and downstream of PKC. It was concluded that FTY720P activates via S1PR2, PKC, and NF-κB. The latter induces PGE2 generation and inhibits Na(+)-K(+) ATPase."	"The roles of bile acids and sphingosine-1-phosphate signaling in the hepatobiliary diseases. Based on research carried out over the last decade, it has become increasingly evident that bile acids act not only as detergents, but also as important signaling molecules that exert various biological effects via activation of specific nuclear receptors and cell signaling pathways. Bile acids also regulate the expression of numerous genes encoding enzymes and proteins involved in the synthesis and metabolism of bile acids, glucose, fatty acids, and lipoproteins, as well as energy metabolism. Receptors activated by bile acids include, farnesoid X receptor α, pregnane X receptor, vitamin D receptor, and G protein-coupled receptors, TGR5, muscarinic receptor 2, and sphingosine-1-phosphate receptor (S1PR)2. The ligand of S1PR2, sphingosine-1-phosphate (S1P), is a bioactive lipid mediator that regulates various physiological and pathophysiological cellular processes. We have recently reported that conjugated bile acids, via S1PR2, activate and upregulate nuclear sphingosine kinase 2, increase nuclear S1P, and induce genes encoding enzymes and transporters involved in lipid and sterol metabolism in the liver. Here, we discuss the role of bile acids and S1P signaling in the regulation of hepatic lipid metabolism and in hepatobiliary diseases."	"Combined copy number and mutation analysis identifies oncogenic pathways associated with transformation of follicular lymphoma. Follicular lymphoma (FL) is typically an indolent disease, but 30-40% of FL cases transform into an aggressive lymphoma (tFL) with a poor prognosis. To identify the genetic changes that drive this transformation, we sequenced the exomes of 12 cases with paired FL and tFL biopsies and identified 45 recurrently mutated genes in the FL-tFL data set and 39 in the tFL cases. We selected 496 genes of potential importance in transformation and sequenced them in 23 additional tFL cases. Integration of the mutation data with copy-number abnormality (CNA) data provided complementary information. We found recurrent mutations of miR-142, which has not been previously been reported to be mutated in FL/tFL. The genes most frequently mutated in tFL included KMT2D (MLL2), CREBBP, EZH2, BCL2 and MEF2B. Many recurrently mutated genes are involved in epigenetic regulation, the Janus-activated kinase-signal transducer and activator of transcription (STAT) or the nuclear factor-κB pathways, immune surveillance and cell cycle regulation or are TFs involved in B-cell development. Of particular interest are mutations and CNAs affecting S1P-activated pathways through S1PR1 or S1PR2, which likely regulate lymphoma cell migration and survival outside of follicles. Our custom gene enrichment panel provides high depth of coverage for the study of clonal evolution or divergence."	"S1PR2 variants associated with auditory function in humans and endocochlear potential decline in mouse. Progressive hearing loss is very common in the population but we still know little about the underlying pathology. A new spontaneous mouse mutation (stonedeaf, stdf ) leading to recessive, early-onset progressive hearing loss was detected and exome sequencing revealed a Thr289Arg substitution in Sphingosine-1-Phosphate Receptor-2 (S1pr2). Mutants aged 2 weeks had normal hearing sensitivity, but at 4 weeks most showed variable degrees of hearing impairment, which became severe or profound in all mutants by 14 weeks. Endocochlear potential (EP) was normal at 2 weeks old but was reduced by 4 and 8 weeks old in mutants, and the stria vascularis, which generates the EP, showed degenerative changes. Three independent mouse knockout alleles of S1pr2 have been described previously, but this is the first time that a reduced EP has been reported. Genomic markers close to the human S1PR2 gene were significantly associated with auditory thresholds in the 1958 British Birth Cohort (n = 6099), suggesting involvement of S1P signalling in human hearing loss. The finding of early onset loss of EP gives new mechanistic insight into the disease process and suggests that therapies for humans with hearing loss due to S1P signalling defects need to target strial function."	"Impairment of Angiogenic Sphingosine Kinase-1/Sphingosine-1-Phosphate Receptors Pathway in Preeclampsia. Preeclampsia (PE), is a serious pregnancy disorder characterized in the early gestation by shallow trophoblast invasion, impaired placental neo-angiogenesis, placental hypoxia and ischemia, which leads to maternal and fetal morbidity and mortality. Here we hypothesized that angiogenic sphingosine kinase-1 (SPHK1)/sphingosine-1-phosphate (S1P) receptors pathway is impaired in PE. We found that SPHK1 mRNA and protein expression are down-regulated in term placentae and term chorionic villous explants from patients with PE or severe PE (PES), compared with controls. Moreover, mRNA expression of angiogenic S1PR1 and S1PR3 receptors were decreased in placental samples of PE and PES patients, whereas anti-angiogenic S1PR2 was up-regulated in chorionic villous tissue of PES subjects, pointing to its potential atherogenic and inflammatory properties. Furthermore, in in vitro (JAR cells) and ex vivo (chorionic villous explants) models of placental hypoxia, SPHK1 mRNA and protein were strongly up-regulated under low oxygen tension (1% 02). In contrast, there was no change in SPHK1 expression under the conditions of placental physiological hypoxia (8% 02). In both models, nuclear protein levels of HIF1A were increased at 1% 02 during the time course, but there was no up-regulation at 8% 02, suggesting that SPHK1 and HIF1A might be the part of the same canonical pathway during hypoxia and that both contribute to placental neovascularization during early gestation. Taken together, this study suggest the SPHK1 pathway may play a role in the human early placentation process and may be involved in the pathogenesis of PE. "	"Sphingosine-1-Phosphate Receptor 2 Regulates Proinflammatory Cytokine Production and Osteoclastogenesis. Sphingosine-1-phosphate receptor 2 (S1PR2) couples with the Gi, Gq, and G12/13 group of proteins, which modulate an array of cellular signaling pathways and affect immune responses to multiple stimuli. In this study, we demonstrated that knockdown of S1PR2 by a specific S1PR2 shRNA lentiviral vector significantly inhibited IL-1β, IL-6, and TNF-α protein levels induced by oral pathogen Aggregatibacter actinomycetemcomitans (A. actinomycetemcomitans) in murine bone marrow-derived monocytes and macrophages (BMMs) compared with controls. In addition, knockdown of S1PR2 by the S1PR2 shRNA lentiviral vector suppressed p-PI3K, p-ERK, p-JNK, p-p38, and p-NF-κBp65 protein expressions induced by A. actinomycetemcomitans. Furthermore, bone marrow cells treated with the S1PR2 shRNA lentiviral vector inhibited osteoclastogenesis induced by RANKL compared with controls. The S1PR2 shRNA suppressed the mRNA levels of six osteoclastogenic factors including nuclear factor of activated T-cells cytoplasmic calcineurin-dependent 1 (NFATc1), cathepsin K (Ctsk), acid phosphatase 5 (Acp5), osteoclast-associated receptor (Oscar), dendritic cells specific transmembrane protein (Dcstamp), and osteoclast stimulatory transmembrane protein (Ocstamp) in bone marrow cells. We conclude that S1PR2 plays an essential role in modulating proinflammatory cytokine production and osteoclastogenesis. Blocking S1PR2 signaling might be a novel therapeutic strategy to treat inflammatory bone loss diseases. "	"Epithelial cell extrusion: Pathways and pathologies. To remove dying or unwanted cells from an epithelium while preserving the barrier function of the layer, epithelia use a unique process called cell extrusion. To extrude, the cell fated to die emits the lipid Sphingosine 1 Phosphate (S1P), which binds the G-protein-coupled receptor Sphingosine 1 Phosphate receptor 2 (S1P2) in the neighboring cells that activates Rho-mediated contraction of an actomyosin ring circumferentially and basally. This contraction acts to squeeze the cell out apically while drawing together neighboring cells and preventing any gaps to the epithelial barrier. Epithelia can extrude out cells targeted to die by apoptotic stimuli to repair the barrier in the face of death or extrude live cells to promote cell death when epithelial cells become too crowded. Indeed, because epithelial cells naturally turn over by cell death and division at some of the highest rates in the body, epithelia depend on crowding-induced live cell extrusion to preserve constant cell numbers. If extrusion is defective, epithelial cells rapidly lose contact inhibition and form masses. Additionally, because epithelia act as the first line of defense in innate immunity, preservation of this barrier is critical for preventing pathogens from invading the body. Given its role in controlling constant cell numbers and maintaining barrier function, a number of different pathologies can result when extrusion is disrupted. Here, we review mechanisms and signaling pathways that control epithelial extrusion and discuss how defects in these mechanisms can lead to multiple diseases. We also discuss tactics pathogens have devised to hijack the extrusion process to infect and colonize epithelia."	"Aberrant expression of the S1P regulating enzymes, SPHK1 and SGPL1, contributes to a migratory phenotype in OSCC mediated through S1PR2. Oral squamous cell carcinoma (OSCC) is a lethal disease with a 5-year mortality rate of around 50%. Molecular targeted therapies are not in routine use and novel therapeutic targets are required. Our previous microarray data indicated sphingosine 1-phosphate (S1P) metabolism and signalling was deregulated in OSCC. In this study, we have investigated the contribution of S1P signalling to the pathogenesis of OSCC. We show that the expression of the two major enzymes that regulate S1P levels were altered in OSCC: SPHK1 was significantly upregulated in OSCC tissues compared to normal oral mucosa and low levels of SGPL1 mRNA correlated with a worse overall survival. In in vitro studies, S1P enhanced the migration/invasion of OSCC cells and attenuated cisplatin-induced death. We also demonstrate that S1P receptor expression is deregulated in primary OSCCs and that S1PR2 is over-expressed in a subset of tumours, which in part mediates S1P-induced migration of OSCC cells. Lastly, we demonstrate that FTY720 induced significantly more apoptosis in OSCC cells compared to non-malignant cells and that FTY720 acted synergistically with cisplatin to induce cell death. Taken together, our data show that S1P signalling promotes tumour aggressiveness in OSCC and identify S1P signalling as a potential therapeutic target."	"S1pr2/Gα13 signaling regulates the migration of endocardial precursors by controlling endoderm convergence. Formation of the heart tube requires synchronized migration of endocardial and myocardial precursors. Our previous studies indicated that in S1pr2/Gα13-deficient embryos, impaired endoderm convergence disrupted the medial migration of myocardial precursors, resulting in the formation of two myocardial populations. Here we show that endoderm convergence also regulates endocardial migration. In embryos defective for S1pr2/Gα13 signaling, endocardial precursors failed to migrate towards the midline, and the presumptive endocardium surrounded the bilaterally-located myocardial cells rather than being encompassed by them. In vivo imaging of control embryos revealed that, like their myocardial counterparts, endocardial precursors migrated with the converging endoderm, though from a more anterior point, then moved from the dorsal to the ventral side of the endoderm (subduction), and finally migrated posteriorly towards myocardial precursors, ultimately forming the inner layer of the heart tube. In embryos defective for endoderm convergence due to an S1pr2/Gα13 deficiency, both the medial migration and the subduction of endocardial precursors were impaired, and their posterior migration towards the myocardial precursors was premature. This placed them medial to the myocardial populations, physically blocking the medial migration of the myocardial precursors. Furthermore, contact between the endocardial and myocardial precursor populations disrupted the epithelial architecture of the myocardial precursors, and thus their medial migration; in embryos depleted of endocardial cells, the myocardial migration defect was partially rescued. Our data indicate that endoderm convergence regulates the medial migration of endocardial precursors, and that premature association of the endocardial and myocardial populations contributes to myocardial migration defects observed in S1pr2/Gα13-deficient embryos. The demonstration that endoderm convergence regulates the synchronized migration of endocardial and myocardial precursors reveals a new role of the endoderm in heart development."	"Sphingosine 1-phosphate receptor 2 (S1P2) attenuates reactive oxygen species formation and inhibits cell death: implications for otoprotective therapy. Ototoxic drugs, such as platinum-based chemotherapeutics, often lead to permanent hearing loss through apoptosis of neuroepithelial hair cells and afferent neurons of the cochlea. There is no approved therapy for preventing or reversing this process. Our previous studies identified a G protein-coupled receptor (GPCR), S1P2, as a potential mediator of otoprotection. We therefore sought to identify a pharmacological approach to prevent cochlear degeneration via activation of S1P2. The cochleae of S1pr2(-/-) knockout mice were evaluated for accumulation of reactive oxygen species (ROS) with a nitro blue tetrazolium (NBT) assay. This showed that loss of S1P2 results in accumulation of ROS that precedes progressive cochlear degeneration as previously reported. These findings were supported by in vitro cell-based assays to evaluate cell viability, induction of apoptosis, and accumulation of ROS following activation of S1P2 in the presence of cisplatin. We show for the first time, that activation of S1P2 with a selective receptor agonist increases cell viability and reduces cisplatin-mediated cell death by reducing ROS. Cumulatively, these results suggest that S1P2 may serve as a therapeutic target for attenuating cisplatin-mediated ototoxicity. "	"Transcriptional modulation of SLC26A3 (DRA) by sphingosine-1-phosphate. SLC26A3 or Downregulated in adenoma (DRA) is the major Cl(-)/HCO3 (-) exchanger involved in electroneutral NaCl absorption in the mammalian intestine. Alterations in DRA function and expression have been implicated in diarrheal diseases associated with inflammation or infection. Therefore, agents that upregulate DRA activity may serve as potential antidiarrheals. In this regard, sphingosine-1-phosphate (S1P), a member of the bioactive sphingolipid family, has been shown to modulate various cellular processes including improvement of intestinal barrier function. However, the role of S1P in modulating intestinal chloride absorption by regulating DRA is not known. Therefore, the present studies were designed to examine the direct effects of S1P on apical Cl(-)/HCO3 (-) exchange activity and DRA expression. S1P significantly increased Cl(-)/HCO3 (-) exchange activity and also significantly increased DRA mRNA and protein expression. Increased DRA mRNA by S1P was accompanied by enhanced DRA promoter activity, indicating involvement of transcriptional mechanisms. The specific S1P receptor subtype-2 (S1PR2) antagonist JTE-013 blocked the stimulatory effects of S1P on DRA promoter activity, indicating the involvement of S1PR2 S1P-mediated increase in DRA promoter activity involved PI3K/Akt pathway. Progressive deletions of the DRA promoter indicated that the putative S1P-responsive elements are present in the -790/-398 region of the DRA promoter. Furthermore, results obtained from electrophoretic mobility shift assay showed that S1P stimulated DRA promoter activity via increased binding of Ying-Yang1 (YY1) in the S1P-responsive region. In conclusion, transcriptional modulation of DRA expression and function in response to S1P through a PI3/Akt pathway represents a novel role of S1P as a potential proabsorptive agent."	"p120 Catenin Suppresses Basal Epithelial Cell Extrusion in Invasive Pancreatic Neoplasia. Aberrant regulation of cellular extrusion can promote invasion and metastasis. Here, we identify molecular requirements for early cellular invasion using a premalignant mouse model of pancreatic cancer with conditional knockout of p120 catenin (Ctnnd1). Mice with biallelic loss of p120 catenin progressively develop high-grade pancreatic intraepithelial neoplasia (PanIN) lesions and neoplasia accompanied by prominent acute and chronic inflammatory processes, which is mediated, in part, through NF-κB signaling. Loss of p120 catenin in the context of oncogenic Kras also promotes remarkable apical and basal epithelial cell extrusion. Abundant single epithelial cells exit PanIN epithelium basally, retain epithelial morphology, survive, and display features of malignancy. Similar extrusion defects are observed following p120 catenin knockdown in vitro, and these effects are completely abrogated by the activation of S1P/S1pr2 signaling. In the context of oncogenic Kras, p120 catenin loss significantly reduces expression of genes mediating S1P/S1pr2 signaling in vivo and in vitro, and this effect is mediated at least, in part, through activation of NF-κB. These results provide insight into mechanisms controlling early events in the metastatic process and suggest that p120 catenin and S1P/S1pr2 signaling enhance cancer progression by regulating epithelial cell invasion. Cancer Res; 76(11); 3351-63. ©2016 AACR."	"Dihydroartemisinin restricts hepatic stellate cell contraction via an FXR-S1PR2-dependent mechanism. Hepatic stellate cells (HSCs) are universally acknowledged to play a stimulative role in the pathogenesis of hepatic fibrosis and portal hypertension. HSCs when activated in response to liver injury are characterized with many changes, with HSC contraction being the most common cause of portal hypertension. Previous studies have shown that dihydroartemisinine (DHA) is a potential antifibrotic natural product by inducing HSC apoptosis, whereas the role of DHA in regulating HSC contraction and the mechanisms involved remain a riddle. Recent studies have emphasized on the importance of farnesoid X receptor (FXR) and sphingosine-1-phosphate receptor 2 (S1PR2) in controlling cell contractility. This study showed that DHA strongly induced the mRNA and protein expression of FXR in LX-2 cells in a dose- and time-dependent manner and inhibited HSC activation, implying a conceivable impact of DHA on HSC contraction. The gel contraction assays and fluorescence staining of actin cytoskeleton verified that DHA dose-dependently limited contraction of collagen lattices and reorganization of actin stress fibers in LX-2 cells. DHA also decreased the phosphorylation of myosin light chain that is responsible for the contractile force of HSCs. Furthermore, gain- or loss-of-function analyses exhibited a FXR- and S1PR2-dependent mechanism of inhibiting HSC contraction by DHA, and DHA decreased S1PR2 expression by modulating FXR activation. Subsequent work revealed that inhibition of both Ca(2+) -dependent and Ca(2+) -sensitization signaling transductions contributed to DHA-induced HSC relaxation. In summary, these findings suggest that DHA could restrict HSC contraction through modulating FXR/S1PR2 pathway-mediated Ca(2+) -dependent and Ca(2+) -sensitization signaling. Our discoveries make DHA a potential candidate for portal hypertension. © 2016 IUBMB Life 68(5):376-387, 2016."	"Hydrophobic bile acid apoptosis is regulated by sphingosine-1-phosphate receptor 2 in rat hepatocytes and human hepatocellular carcinoma cells. The hepatotoxic bile acid glycochenodeoxycholate (GCDC) modulates hepatocyte cell death through activation of JNK, Akt, and Erk. The nonhepatotoxic bile acid taurocholate activates Akt and Erk through the sphingosine-1-phosphate receptor 2 (S1PR2). The role of the S1PR2 in GCDC-mediated apoptosis and kinase activation is unknown. Studies were done in rat hepatocytes, HUH7 cells, and HUH7 cells stably transfected with rat Ntcp (HUH7-Ntcp). Cells were treated with GCDC and apoptosis was monitored morphologically by Hoechst staining and biochemically by immunoblotting for the active cleaved fragment of caspase 3. Kinase activation was determined by immunoblotting with phospho-specific antibodies. JTE-013, an inhibitor of S1PR2, significantly attenuated morphological evidence of GCDC-induced apoptosis and prevented caspase 3 cleavage in rat hepatocytes and HUH7-Ntcp cells. In hepatocytes, JTE-013 mildly suppressed, augmented, and had no effect on GCDC-induced JNK, Akt, and Erk phosphorylation, respectively. Similar results were seen in HUH7-Ntcp cells except for mild suppression of JNK and Erk phosphorylation. Knockdown of S1PR2 in HUH7-Ntcp augmented Akt, inhibited JNK, and had no effect on Erk phosphorylation. GCDC failed to induce apoptosis or kinase activation in HUH7 cells. In conclusion, SIPR2 inhibition attenuates GCDC-induced apoptosis and inhibits and augments GCDC-induced JNK and Akt phosphorylation, respectively. In addition, GCDC must enter hepatocytes to mediate cell death or activate kinases. These results suggest that SIPR2 activation is proapoptotic in GCDC-induced cell death but that this effect is not due to direct ligation of the S1PR2 by the bile acid."	"S1PR2 deficiency in DLBCL: a FOXy connection. Inactivating mutations in the sphingosine-1-phosphate (S1P) receptor 2 (S1PR2) promoter have been associated with the germinal center (GC) B-cell diffuse large B-cell lymphoma (GCB-DLBCL) subtype. In this issue of Blood, Flori et al have now identified S1PR2 as a tumor suppressor that is transcriptionally silenced by forkhead box protein 1 (FOXP1) in the aggressive, activated B-cell (ABC-DLBCL) subtype."	"Blockade of Sphingosine 1-Phosphate Receptor 2 Signaling Attenuates High-Fat Diet-Induced Adipocyte Hypertrophy and Systemic Glucose Intolerance in Mice. Sphingosine 1-phosphate (S1P) is known to regulate insulin resistance in hepatocytes, skeletal muscle cells, and pancreatic β-cells. Among its 5 cognate receptors (S1pr1-S1pr5), S1P seems to counteract insulin signaling and confer insulin resistance via S1pr2 in these cells. S1P may also regulate insulin resistance in adipocytes, but the S1pr subtype(s) involved remains unknown. Here, we investigated systemic glucose/insulin tolerance and phenotypes of epididymal adipocytes in high-fat diet (HFD)-fed wild-type and S1pr2-deficient (S1pr2(-/-)) mice. Adult S1pr2(-/-) mice displayed smaller body/epididymal fat tissue weights, but the differences became negligible after 4 weeks with HFD. However, HFD-fed S1pr2(-/-) mice displayed better scores in glucose/insulin tolerance tests and had smaller epididymal adipocytes that expressed higher levels of proliferating cell nuclear antigen than wild-type mice. Next, proliferation/differentiation of 3T3-L1 and 3T3-F442A preadipocytes were examined in the presence of various S1pr antagonists: JTE-013 (S1pr2 antagonist), VPC-23019 (S1pr1/S1pr3 antagonist), and CYM-50358 (S1pr4 antagonist). S1P or JTE-013 treatment of 3T3-L1 preadipocytes potently activated their proliferation and Erk phosphorylation, whereas VPC-23019 inhibited both of these processes, and CYM-50358 had no effects. In contrast, S1P or JTE-013 treatment inhibited adipogenic differentiation of 3T3-F442A preadipocytes, whereas VPC-23019 activated it. The small interfering RNA knockdown of S1pr2 promoted proliferation and inhibited differentiation of 3T3-F442A preadipocytes, whereas that of S1pr1 acted oppositely. Moreover, oral JTE-013 administration improved glucose tolerance/insulin sensitivity in ob/ob mice. Taken together, S1pr2 blockade induced proliferation but suppressed differentiation of (pre)adipocytes both in vivo and in vitro, highlighting a novel therapeutic approach for obesity/type 2 diabetes."	"Sphingosine kinase 1 is upregulated with lysophosphatidic acid receptor 2 in human colorectal cancer. To examine the expression of SphK1, an oncogenic kinase that produces sphingosine 1-phosphate (S1P), and its correlation with the expression of LPAR2, a major lysophosphatidic acid (LPA) receptor overexpressed in various cancers, in human colorectal cancer. Real-time reverse-transcription polymerase chain reaction was used to measure the mRNA expression of SphK1, LPAR2, and the three major S1P receptors in 27 colorectal cancer samples and corresponding normal tissue samples. We also examined the correlation between the expression of SphK1 and LPAR2. Colorectal cancer tissue in 22 of 27 patients had higher levels of SphK1 mRNA than in normal tissue. In two-thirds of the samples, SphK1 mRNA expression was more than two-fold higher than in normal tissue. Consistent with previous reports, LPAR2 mRNA expression in 20 of 27 colorectal cancer tissue samples was higher compared to normal tissue samples. Expression profiles of all three major S1P receptors, S1PR1, S1PR2, and S1PR3, varied without any trend, with no significant difference in expression between cancer and normal tissues. A highly significant positive correlation was found between SphK1 and LPAR2 expression [Pearson's correlation coefficient (r) = 0.784 and P &lt; 0.01]. The mRNA levels of SphK1 and LPAR2 did not correlate with TNM stage. Our findings suggest that S1P and LPA may play important roles in the development of colorectal cancer via the upregulation of SphK1 and LPAR2, both of which could serve as new therapeutic targets in the treatment of colorectal cancer."	"Sphingosine-1-phosphate receptor 2 mediates endothelial cells dysfunction by PI3K-Akt pathway under high glucose condition. Endothelial dysfunction is believed the early stage of development of diabetic cardiovascular complications. Sphingosine-1-phosphate (S1P) regulates various biological activities by binding to sphingosine-1-phosphate receptors (S1PRs) including S1PR1-S1PR5. In the present study, the role of S1P receptors in S1P-induced human coronary artery endothelial cells (HCAECs) dysfunction under high glucose condition was investigated and the underlying mechanism was explored. S1PR1-S1PR5 mRNA levels were detected by quantitative Real-time PCR. NO level and polymorphonuclear neutrophils (PMN)-endothelial cells adhesion were measured by nitrate reductase and myeloperoxidase colorimetric method, respectively. Protein levels of endothelial nitric oxide synthase (eNOS), vascular cell adhesion molecule-1 (VCAM-1), intercellular adhesion molecule-1(ICAM-1), phosphatidylinositol 3-kinase (PI3K) and Akt were measured by Western blot analysis. S1PR2 were found the predominant S1P receptor expressed in HCAECs exposed to high glucose. NO level and eNOS activity were remarkably decreased, while PMN adhesion, VCAM-1 and ICAM-1 protein levels were increased significantly by S1P treatment in HCAECs exposed to high glucose and normal glucose. Blockage of S1PR2 with specific antagonist JTE-013 and small interfering RNA (siRNA) resulted in enhanced NO level and eNOS activity as well as decreased PMN adhesion, reduced protein levels of VCAM-1 and ICAM-1 induced by S1P. Furthermore, Phosphor-PI3K and phosphor-Akt level were markedly increased by S1PR2 blockade in S1P-treated cells exposed to high glucose, which were suppressed by PI3K inhibitor wortmannin. In conclusion, S1P/S1PR2 mediated endothelial dysfunction partly by inhibiting PI3K/Akt signaling pathway under high glucose condition. S1PR2 blockage could ameliorate endothelial dysfunction which might provide a potential therapeutic strategy for diabetic vascular complications. "	"Sphingosine-1-Phosphate/Sphingosine-1-Phosphate Receptor 2 Axis Can Promote Mouse and Human Primary Mast Cell Angiogenic Potential through Upregulation of Vascular Endothelial Growth Factor-A and Matrix Metalloproteinase-2. Mast cells (MC) are present in most vascularized tissues around the vasculature likely exerting immunomodulatory functions. Endowed with diverse mediators, resident MC represent first-line fine-tuners of local microenvironment. Sphingosine-1-phosphate (S1P) functions as a pluripotent signaling sphingolipid metabolite in health and disease. S1P formation occurs at low levels in resting MC and is upregulated upon activation. Its export can result in type 2 S1P receptor- (S1PR2-) mediated stimulation of MC, further fueling inflammation. However, the role of S1PR2 ligation in proangiogenic vascular endothelial growth factor- (VEGF-) A and matrix metalloproteinase- (MMP-) 2 release from MC is unknown. Using a preclinical MC-dependent model of acute allergic responses and in vitro stimulated primary mouse bone marrow-derived MC (BMMC) or human primary skin MC, we report that S1P signaling resulted in substantial amount of VEGF-A release. Similar experiments using S1pr2-deficient mice or BMMC or selective S1P receptor agonists or antagonists demonstrated that S1P/S1PR2 ligation on MC is important for VEGF-A secretion. Further, we show that S1P stimulation triggered transcriptional upregulation of VEGF-A and MMP-2 mRNA in human but not in mouse MC. S1P exposure also triggered MMP-2 secretion from human MC. These studies identify a novel proangiogenic axis encompassing MC/S1P/S1PR2 likely relevant to inflammation. "	"A promising carbon-11-labeled sphingosine-1-phosphate receptor 1-specific PET tracer for imaging vascular injury. Sphingosine-1-phosphate receptor 1 (S1PR1) is highly expressed in vascular smooth muscle cells from intimal lesions. PET imaging using S1PR1 as a biomarker would increase our understanding of its role in vascular pathologies including in-stent restenosis. The S1PR1 compound TZ3321 was synthesized for in vitro characterization and labeled with Carbon-11 for in vivo studies. The biodistribution of [<sup>11</sup>C]TZ3321 was evaluated in normal mice; microPET and immunohistochemistry (IHC) studies were performed using a murine femoral artery wire-injury model of restenosis. The high potency of TZ3321 for S1PR1 (IC 50 = 2.13 ± 1.63 nM), and high selectivity (&gt;1000 nM) for S1PR1 over S1PR2 and S1PR3 were confirmed. Biodistribution data revealed prolonged retention of [<sup>11</sup>C]TZ3321 in S1PR1-enriched tissues. MicroPET imaging of [<sup>11</sup>C]TZ3321 showed higher uptake in the wire-injured arteries of ApoE<sup>-/-</sup> mice than in injured arteries of wild-type mice (SUV 0.40 ± 0.06 vs 0.28 ± 0.04, n = 6, P &lt; .001); FDG-PET showed no difference (SUV 0.98 ± 0.04 vs 0.94 ± 0.01, n = 6, P &gt; .05). Post-PET autoradiography showed &gt;4-fold higher [<sup>11</sup>C]TZ3321 retention in the injured artery of ApoE<sup>-/-</sup> mice than in wild-type mice. Subsequent IHC staining confirmed higher expression of S1PR1 in the neointima of the injured artery of ApoE<sup>-/-</sup> mice than in wild-type mice. This preliminary study supports the potential use of PET for quantification of the S1PR1 expression as a biomarker of neointimal hyperplasia."	"Autosomal-Recessive Hearing Impairment Due to Rare Missense Variants within S1PR2. The sphingosine-1-phosphate receptors (S1PRs) are a well-studied class of transmembrane G protein-coupled sphingolipid receptors that mediate multiple cellular processes. However, S1PRs have not been previously reported to be involved in the genetic etiology of human traits. S1PR2 lies within the autosomal-recessive nonsyndromic hearing impairment (ARNSHI) locus DFNB68 on 19p13.2. From exome sequence data we identified two pathogenic S1PR2 variants, c.323G&gt;C (p.Arg108Pro) and c.419A&gt;G (p.Tyr140Cys). Each of these variants co-segregates with congenital profound hearing impairment in consanguineous Pakistani families with maximum LOD scores of 6.4 for family DEM4154 and 3.3 for family PKDF1400. Neither S1PR2 missense variant was reported among ∼120,000 chromosomes in the Exome Aggregation Consortium database, in 76 unrelated Pakistani exomes, or in 720 Pakistani control chromosomes. Both DNA variants affect highly conserved residues of S1PR2 and are predicted to be damaging by multiple bioinformatics tools. Molecular modeling predicts that these variants affect binding of sphingosine-1-phosphate (p.Arg108Pro) and G protein docking (p.Tyr140Cys). In the previously reported S1pr2(-/-) mice, stria vascularis abnormalities, organ of Corti degeneration, and profound hearing loss were observed. Additionally, hair cell defects were seen in both knockout mice and morphant zebrafish. Family PKDF1400 presents with ARNSHI, which is consistent with the lack of gross malformations in S1pr2(-/-) mice, whereas family DEM4154 has lower limb malformations in addition to hearing loss. Our findings suggest the possibility of developing therapies against hair cell damage (e.g., from ototoxic drugs) through targeted stimulation of S1PR2. "	"The hematopoietic oncoprotein FOXP1 promotes tumor cell survival in diffuse large B-cell lymphoma by repressing S1PR2 signaling. Aberrant expression of the oncogenic transcription factor forkhead box protein 1 (FOXP1) is a common feature of diffuse large B-cell lymphoma (DLBCL). We have combined chromatin immunoprecipitation and gene expression profiling after FOXP1 depletion with functional screening to identify targets of FOXP1 contributing to tumor cell survival. We find that the sphingosine-1-phosphate receptor 2 (S1PR2) is repressed by FOXP1 in activated B-cell (ABC) and germinal center B-cell (GCB) DLBCL cell lines with aberrantly high FOXP1 levels; S1PR2 expression is further inversely correlated with FOXP1 expression in 3 patient cohorts. Ectopic expression of wild-type S1PR2, but not a point mutant incapable of activating downstream signaling pathways, induces apoptosis in DLBCL cells and restricts tumor growth in subcutaneous and orthotopic models of the disease. The proapoptotic effects of S1PR2 are phenocopied by ectopic expression of the small G protein Gα13 but are independent of AKT signaling. We further show that low S1PR2 expression is a strong negative prognosticator of patient survival, alone and especially in combination with high FOXP1 expression. The S1PR2 locus has previously been demonstrated to be recurrently mutated in GCB DLBCL; the transcriptional silencing of S1PR2 by FOXP1 represents an alternative mechanism leading to inactivation of this important hematopoietic tumor suppressor. "	"Sphingosine kinase 1 is required for TGF-β mediated fibroblastto- myofibroblast differentiation in ovarian cancer. Sphingosine kinase 1 (SPHK1), the enzyme that produces sphingosine 1 phosphate (S1P), is known to be highly expressed in many cancers. However, the role of SPHK1 in cells of the tumor stroma remains unclear. Here, we show that SPHK1 is highly expressed in the tumor stroma of high-grade serous ovarian cancer (HGSC), and is required for the differentiation and tumor promoting function of cancer-associated fibroblasts (CAFs). Knockout or pharmacological inhibition of SPHK1 in ovarian fibroblasts attenuated TGF-β-induced expression of CAF markers, and reduced their ability to promote ovarian cancer cell migration and invasion in a coculture system. Mechanistically, we determined that SPHK1 mediates TGF-β signaling via the transactivation of S1P receptors (S1PR2 and S1PR3), leading to p38 MAPK phosphorylation. The importance of stromal SPHK1 in tumorigenesis was confirmed in vivo, by demonstrating a significant reduction of tumor growth and metastasis in SPHK1 knockout mice. Collectively, these findings demonstrate the potential of SPHK1 inhibition as a novel stroma-targeted therapy in HGSC."	"Liver X receptor-α and miR-130a-3p regulate expression of sphingosine 1-phosphate receptor 2 in human umbilical vein endothelial cells. Recent studies have shown that activation of liver X receptors (LXRs) attenuates the development of atherosclerosis, not only by regulating lipid metabolism but also by suppressing inflammatory signaling. Sphingosine 1-phosphate receptor 2 (S1PR2), an important inflammatory gene product, plays a role in the development of various inflammatory diseases. It was proposed that S1PR2 might be regulated by LXR-α. In the present study, the effect of LXR-α on tumor necrosis factor-α (TNF-α)-induced S1PR2 expression in human umbilical vein endothelial cells (HUVECs) was investigated and the underlying mechanism was explored. The results demonstrated that TNF-α led to an increase in S1PR2 expression and triggered a downregulation of LXR-α expression in HUVECs as well. Downregulation of LXR-α with specific small interfering RNA (siRNA) remarkably enhanced the primary as well as TNF-α-induced expression of S1PR2 in HUVECs. Activation of LXR-α by agonist GW3965 inhibited both primary and TNF-α-induced S1PR2 expression. GW3965 also attenuated S1PR2-induced endothelial barrier dysfunction. The data further showed that TNF-α induced a significant decrease in miR-130a-3p expression. Overexpression of miR-130a-3p with mimic product reduced S1PR2 protein expression, and inhibition of miR-130a-3p by specific inhibitor resulted in an increase in S1PR2 protein expression. Furthermore, activation of LXRs with agonist enhanced the expression of miR-130a-3p, and knockdown of LXR-α by siRNA suppressed miR-130a-3p expression. These results suggest that LXR-α might downregulate S1PR2 expression via miR-130a-3p in quiescent HUVECs. Stimulation of TNF-α attenuates the activity of LXR-α and results in enhanced S1PR2 expression. "	"A role of the sphingosine-1-phosphate (S1P)-S1P receptor 2 pathway in epithelial defense against cancer (EDAC). At the initial step of carcinogenesis, transformation occurs in single cells within epithelia, where the newly emerging transformed cells are surrounded by normal epithelial cells. A recent study revealed that normal epithelial cells have an ability to sense and actively eliminate the neighboring transformed cells, a process named epithelial defense against cancer (EDAC). However, the molecular mechanism of this tumor-suppressive activity is largely unknown. In this study, we investigated a role for the sphingosine-1-phosphate (S1P)-S1P receptor 2 (S1PR2) pathway in EDAC. First, we show that addition of the S1PR2 inhibitor significantly suppresses apical extrusion of RasV12-transformed cells that are surrounded by normal cells. In addition, knockdown of S1PR2 in normal cells induces the same effect, indicating that S1PR2 in the surrounding normal cells plays a positive role in the apical elimination of the transformed cells. Of importance, not endogenous S1P but exogenous S1P is involved in this process. By using FRET analyses, we demonstrate that S1PR2 mediates Rho activation in normal cells neighboring RasV12-transformed cells, thereby promoting accumulation of filamin, a crucial regulator of EDAC. Collectively these data indicate that S1P is a key extrinsic factor that affects the outcome of cell competition between normal and transformed epithelial cells. "	"Exit Strategies: S1P Signaling and T Cell Migration. Whereas the role of sphingosine 1-phosphate receptor 1 (S1PR1) in T cell egress and the regulation of S1P gradients between lymphoid organs and circulatory fluids in homeostasis are increasingly well understood, much remains to be learned about S1P signaling and distribution during an immune response. Recent data suggest that the role of S1PR1 in directing cells from tissues into circulatory fluids is reprised again and again, particularly in guiding activated T cells from non-lymphoid tissues into lymphatics. Conversely, S1P receptor 2 (S1PR2), which antagonizes migration towards chemokines, confines cells within tissues. Here we review the current understanding of the roles of S1P signaling in activated T cell migration. In this context, we outline open questions, particularly regarding the shape of S1P gradients in different tissues in homeostasis and inflammation, and discuss recent strategies to measure S1P. "	"Bile acids and sphingosine-1-phosphate receptor 2 in hepatic lipid metabolism. The liver is the central organ involved in lipid metabolism. Dyslipidemia and its related disorders, including non-alcoholic fatty liver disease (NAFLD), obesity and other metabolic diseases, are of increasing public health concern due to their increasing prevalence in the population. Besides their well-characterized functions in cholesterol homoeostasis and nutrient absorption, bile acids are also important metabolic regulators and function as signaling hormones by activating specific nuclear receptors, G-protein coupled receptors, and multiple signaling pathways. Recent studies identified a new signaling pathway by which conjugated bile acids (CBA) activate the extracellular regulated protein kinases (ERK1/2) and protein kinase B (AKT) signaling pathway via sphingosine-1-phosphate receptor 2 (S1PR2). CBA-induced activation of S1PR2 is a key regulator of sphingosine kinase 2 (SphK2) and hepatic gene expression. This review focuses on recent findings related to the role of bile acids/S1PR2-mediated signaling pathways in regulating hepatic lipid metabolism. "	"Bile acid signaling and biliary functions. This review focuses on various components of bile acid signaling in relation to cholangiocytes. Their roles as targets for potential therapies for cholangiopathies are also explored. While many factors are involved in these complex signaling pathways, this review emphasizes the roles of transmembrane G protein coupled receptor (TGR5), farnesoid X receptor (FXR), ursodeoxycholic acid (UDCA) and the bicarbonate umbrella. Following a general background on cholangiocytes and bile acids, we will expand the review and include sections that are most recently known (within 5-7 years) regarding the field of bile acid signaling and cholangiocyte function. These findings all demonstrate that bile acids influence biliary functions which can, in turn, regulate the cholangiocyte response during pathological events. "	"Filamin A Expression Negatively Regulates Sphingosine-1-Phosphate-Induced NF-κB Activation in Melanoma Cells by Inhibition of Akt Signaling. Sphingosine-1-phosphate (S1P) is a bioactive lipid mediator that regulates many processes in inflammation and cancer. S1P is a ligand for five G-protein-coupled receptors, S1PR1 to -5, and also has important intracellular actions. Previously, we showed that intracellular S1P is involved in tumor necrosis factor alpha (TNF)-induced NF-κB activation in melanoma cell lines that express filamin A (FLNA). Here, we show that extracellular S1P activates NF-κB only in melanoma cells that lack FLNA. In these cells, S1P, but not TNF, promotes IκB kinase (IKK) and p65 phosphorylation, IκBα degradation, p65 nuclear translocation, and NF-κB reporter activity. NF-κB activation induced by S1P was mediated via S1PR1 and S1PR2. Exogenous S1P enhanced the phosphorylation of protein kinase Cδ (PKCδ), and its downregulation reduced S1P-induced the phosphorylation of IKK and p65. In addition, silencing of Bcl10 also inhibited S1P-induced IKK phosphorylation. Surprisingly, S1P reduced Akt activation in melanoma cells that express FLNA, whereas in the absence of FLNA, high phosphorylation levels of Akt were maintained, enabling S1P-mediated NF-κB signaling. In accord, inhibition of Akt suppressed S1P-mediated IKK and p65 phosphorylation and degradation of IκBα. Hence, these results support a negative role of FLNA in S1P-mediated NF-κB activation in melanoma cells through modulation of Akt. "	"Exosome Adherence and Internalization by Hepatic Stellate Cells Triggers Sphingosine 1-Phosphate-dependent Migration. Exosomes are cell-derived extracellular vesicles thought to promote intercellular communication by delivering specific content to target cells. The aim of this study was to determine whether endothelial cell (EC)-derived exosomes could regulate the phenotype of hepatic stellate cells (HSCs). Initial microarray studies showed that fibroblast growth factor 2 induced a 2.4-fold increase in mRNA levels of sphingosine kinase 1 (SK1). Exosomes derived from an SK1-overexpressing EC line increased HSC migration 3.2-fold. Migration was not conferred by the dominant negative SK1 exosome. Incubation of HSCs with exosomes was also associated with an 8.3-fold increase in phosphorylation of AKT and 2.5-fold increase in migration. Exosomes were found to express the matrix protein and integrin ligand fibronectin (FN) by Western blot analysis and transmission electron microscopy. Blockade of the FN-integrin interaction with a CD29 neutralizing antibody or the RGD peptide attenuated exosome-induced HSC AKT phosphorylation and migration. Inhibition of endocytosis with transfection of dynamin siRNA, the dominant negative dynamin GTPase construct Dyn2K44A, or the pharmacological inhibitor Dynasore significantly attenuated exosome-induced AKT phosphorylation. SK1 levels were increased in serum exosomes derived from mice with experimental liver fibrosis, and SK1 mRNA levels were up-regulated 2.5-fold in human liver cirrhosis patient samples. Finally, S1PR2 inhibition protected mice from CCl4-induced liver fibrosis. Therefore, EC-derived SK1-containing exosomes regulate HSC signaling and migration through FN-integrin-dependent exosome adherence and dynamin-dependent exosome internalization. These findings advance our understanding of EC/HSC cross-talk and identify exosomes as a potential target to attenuate pathobiology signals. "	"Taurocholate Induces Cyclooxygenase-2 Expression via the Sphingosine 1-phosphate Receptor 2 in a Human Cholangiocarcinoma Cell Line. Cholangiocarcinoma (CCA) is a rare, but highly malignant primary hepatobiliary cancer with a very poor prognosis and limited treatment options. Our recent studies reported that conjugated bile acids (CBAs) promote the invasive growth of CCA via activation of sphingosine 1-phosphate receptor 2 (S1PR2). Cyclooxygenase-2 (COX-2)-derived prostaglandin E2 (PGE2) is the most abundant prostaglandin in various human malignancies including CCA. Previous studies have indicated that COX-2 was highly expressed in CCA tissues, and the survival rate of CCA patients was negatively associated with high COX-2 expression levels. It has also been reported that CBAs induce COX-2 expression, whereas free bile acids inhibit COX-2 expression in CCA mouse models. However, the underlying cellular mechanisms and connection between S1PR2 and COX-2 expression in CCA cells have still not been fully elucidated. In the current study, we examined the role of S1PR2 in conjugated bile acid (taurocholate, (TCA))-induced COX-2 expression in a human HuCCT1 CCA cell line and further identified the potential underlying cellular mechanisms. The results indicated that TCA-induced invasive growth of human CCA cells was correlated with S1PR2-medated up-regulation of COX-2 expression and PGE2 production. Inhibition of S1PR2 activation with chemical antagonist (JTE-013) or down-regulation of S1PR2 expression with gene-specific shRNA not only reduced COX-2 expression, but also inhibited TCA-induced activation of EGFR and the ERK1/2/Akt-NF-κB signaling cascade. In conclusion, S1PR2 plays a critical role in TCA-induced COX-2 expression and CCA growth and may represent a novel therapeutic target for CCA. "	"Potential Link between the Sphingosine-1-Phosphate (S1P) System and Defective Alveolar Macrophage Phagocytic Function in Chronic Obstructive Pulmonary Disease (COPD). We previously reported that alveolar macrophages from patients with chronic obstructive pulmonary disease (COPD) are defective in their ability to phagocytose apoptotic cells, with a similar defect in response to cigarette smoke. The exact mechanisms for this defect are unknown. Sphingolipids including ceramide, sphingosine and sphingosine-1-phosphate (S1P) are involved in diverse cellular processes and we hypothesised that a comprehensive analysis of this system in alveolar macrophages in COPD may help to delineate the reasons for defective phagocytic function. We compared mRNA expression of sphingosine kinases (SPHK1/2), S1P receptors (S1PR1-5) and S1P-degrading enzymes (SGPP1, SGPP2, SGPL1) in bronchoalveolar lavage-derived alveolar macrophages from 10 healthy controls, 7 healthy smokers and 20 COPD patients (10 current- and 10 ex-smokers) using Real-Time PCR. Phagocytosis of apoptotic cells was investigated using flow cytometry. Functional associations were assessed between sphingosine signalling system components and alveolar macrophage phagocytic ability in COPD. To elucidate functional effects of increased S1PR5 on macrophage phagocytic ability, we performed the phagocytosis assay in the presence of varying concentrations of suramin, an antagonist of S1PR3 and S1PR5. The effects of cigarette smoking on the S1P system were investigated using a THP-1 macrophage cell line model. We found significant increases in SPHK1/2 (3.4- and 2.1-fold increases respectively), S1PR2 and 5 (4.3- and 14.6-fold increases respectively), and SGPL1 (4.5-fold increase) in COPD vs. controls. S1PR5 and SGPL1 expression was unaffected by smoking status, suggesting a COPD &quot;disease effect&quot; rather than smoke effect per se. Significant associations were noted between S1PR5 and both lung function and phagocytosis. Cigarette smoke extract significantly increased mRNA expression of SPHK1, SPHK2, S1PR2 and S1PR5 by THP-1 macrophages, confirming the results in patient-derived macrophages. Antagonising SIPR5 significantly improved phagocytosis. Our results suggest a potential link between the S1P signalling system and defective macrophage phagocytic function in COPD and advise therapeutic targets."	"Discovery of novel S1P2 antagonists. Part 2: Improving the profile of a series of 1,3-bis(aryloxy)benzene derivatives. Our initial lead compound 2 was modified to improve its metabolic stability. The resulting compound 5 showed excellent metabolic stability in rat and human liver microsomes. We subsequently designed and synthesized a hybrid compound of 5 and the 1,3-bis(aryloxy) benzene derivative 1, which was previously reported by our group to be an S1P2 antagonist. This hybridization reaction gave compound 9, which showed improved S1P2 antagonist activity and good metabolic stability. The subsequent introduction of a carboxylic acid moiety into 9 resulted in 14, which showed potent antagonist activity towards S1P2 with a much smaller species difference between human S1P2 and rat S1P2. Compound 14 also showed good metabolic stability and an improved safety profile compared with compound 9. "	"Transforming growth factor-β-sphingosine kinase 1/S1P signaling upregulates microRNA-21 to promote fibrosis in renal tubular epithelial cells. Renal fibrosis is a progressive pathological change characterized by tubular cell apoptosis, tubulointerstitial fibroblast proliferation, and excessive deposition of extracellular matrix (ECM). miR-21 has been implicated in transforming growth factor-β (TGF-β)-stimulated tissue fibrosis. Recent studies showed that sphingosine kinase/sphingosine-1-phosphate (SphK/S1P) are also critical for TGF-β-stimulated tissue fibrosis; however, it is not clear whether SphK/S1P interacts with miR-21 or not. In this study, we hypothesized that SphK/S1P signaling is linked to upregulation of miR-21 by TGF-β. To verify this hypothesis, we first determined that miR-21 was highly expressed in renal tubular epithelial cells (TECs) stimulated with TGF-β by using qRT-PCR and Northern blotting. Simultaneously, inhibition of miR-21, mediated by the corresponding antimir, markedly decreased the expression and deposition of type I collagen, fibronectin (Fn), cysteine-rich protein 61 (CCN1), α-smooth muscle actin, and fibroblast-specific protein1 in TGF-β-treated TECs. ELISA and qRT-PCR were used to measure the S1P and SphK1 levels in TECs. S1P production was induced by TGF-β through activation of SphK1. Furthermore, it was observed that TGF-β-stimulated upregulation of miR-21 was abolished by SphK1 siRNA and was restored by the addition of exogenous S1P. Blocking S1PR2 also inhibited upregulation of miR-21. Additionally, miR-21 overexpression attenuated the repression of TGF-β-stimulated ECM deposition and epithelial-mesenchymal transition by SphK1 and S1PR2 siRNA. In summary, our study demonstrates a link between SphK1/S1P and TGF-β-induced miR-21 in renal TECs and may represent a novel therapeutic target in renal fibrosis. "	"Dyslipidemia regulates thrombospondin-1-induced vascular smooth muscle cell chemotaxis. Dyslipidemia is a risk factor for intimal hyperplasia (IH). Key to IH is vascular smooth muscle cell (VSMC) migration. Thrombospondin-1 (TSP-1) is a matricellular protein that stimulates VSMC migration. HDL will inhibit and LDL will augment TSP-1-induced VSMC chemotaxis. VSMC chemotaxis will be inhibited by the HDL moiety, S1P, through the S1PR1 receptor, and augmented by the LDL component, LPA, through the LPAR1 receptor. The goal of this study was to determine the effect of HDL and LDL and their receptors on TSP-1-induced VSMC chemotaxis. For VSMC chemotaxis to TSP-1 cells received the following pretreatments: low (25 µg/ml) or optimal (75 µg/ml) concentration of HDL, S1P, optimal (75 µg/ml) or high (175 µg/ml) concentration of LDL, or LPA. For the receptor studies, VSMCs were transfected with siRNA to S1PR1, S1PR3, LPAR1, LPAR2, LPAR3, or a S1PR2 receptor antagonist. The TSP-1-induced chemotaxis results were (1) HDL (25 µg/ml) or LDL (75 µg/ml) exhibited no effect on chemotaxis; (2) HDL (75 µg/ml) inhibited chemotaxis by 50.9 ± 8 % and S1P by 43.4 ± 11.6 %; (3) LDL (175 µg/ml) augmented chemotaxis by 30 ± 10.4 % and LPA by 25.6 ± 12.3 %; (4) S1PR1 and S1PR3 knockdown and S1PR2 antagonist-treated cells augmented chemotaxis; and (5) LPAR1 and LPAR2 knockdown inhibited and LPAR3 knockdown had no effect on chemotaxis. In conclusion, HDL/S1P inhibits, while LDL/LPA stimulates TSP-1-induced VSMC chemotaxis. The HDL/S1P effect is mediated by the S1PR1-3 receptors. The LDL/LPA effects are mediated by the LPAR1 and LPAR2 receptors, but not LPAR3. Therefore, lipids have significant effects on TSP-1-induced VSMC chemotaxis."	"Endoderm convergence controls subduction of the myocardial precursors during heart-tube formation. Coordination between the endoderm and adjacent cardiac mesoderm is crucial for heart development. We previously showed that myocardial migration is promoted by convergent movement of the endoderm, which itself is controlled by the S1pr2/Gα13 signaling pathway, but it remains unclear how the movements of the two tissues is coordinated. Here, we image live and fixed embryos to follow these movements, revealing previously unappreciated details of strikingly complex and dynamic associations between the endoderm and myocardial precursors. We found that during segmentation the endoderm underwent three distinct phases of movement relative to the midline: rapid convergence, little convergence and slight expansion. During these periods, the myocardial cells exhibited different stage-dependent migratory modes: co-migration with the endoderm, movement from the dorsal to the ventral side of the endoderm (subduction) and migration independent of endoderm convergence. We also found that defects in S1pr2/Gα13-mediated endodermal convergence affected all three modes of myocardial cell migration, probably due to the disruption of fibronectin assembly around the myocardial cells and consequent disorganization of the myocardial epithelium. Moreover, we found that additional cell types within the anterior lateral plate mesoderm (ALPM) also underwent subduction, and that this movement likewise depended on endoderm convergence. Our study delineates for the first time the details of the intricate interplay between the endoderm and ALPM during embryogenesis, highlighting why endoderm movement is essential for heart development, and thus potential underpinnings of congenital heart disease. "	"Sphingosine 1-Phosphate Receptor 2 and 3 Mediate Bone Marrow-Derived Monocyte/Macrophage Motility in Cholestatic Liver Injury in Mice. Sphingosine 1-phosphate (S1P)/S1P receptor (S1PR) system has been implicated in the pathological process of liver injury. This study was designed to evaluate the effects of S1P/S1PR on bone marrow-derived monocyte/macrophage (BMM) migration in mouse models of cholestatic liver injury, and identify the signaling pathway underlying this process. S1PR1-3 expression in BMM was characterized by immunofluorescence, RT-PCR and Western blot. Cell migration was determined in Boyden chambers. In vivo, the chimera mice, which received BM transplants from EGFP-transgenic mice, received an operation of bile duct ligation (BDL) to induce liver injury with the administration of S1PR2/3 antagonists. The results showed that S1PR1-3 were all expressed in BMMs. S1P exerted a powerful migratory action on BMMs via S1PR2 and S1PR3. Furthermore, PTX and LY-294002 (PI3K inhibitor) prevented S1PR2/3-mediated BMM migration, and Rac1 activation by S1P was inhibited by JTE-013, CAY-10444 or LY294002. Administration of S1PR2/3 antagonists in vivo significantly reduced BMM recruitment in BDL-treated mice, and attenuated hepatic inflammation and fibrosis. In conclusion, S1P/S1PR2/3 system mediates BMM motility by PTX-PI3K-Rac1 signaling pathway, which provides new compelling information on the role of S1P/S1PR in liver injury and opens new perspectives for the pharmacological treatment of hepatic fibrosis. "	"Sphingosine 1-phosphate regulates IL-8 expression and secretion via S1PR1 and S1PR2 receptors-mediated signaling in extravillous trophoblast derived HTR-8/SVneo cells. Both villous and extravillous trophoblast (EVT) cells produce a wide range of cytokines and also respond to them in autocrine and paracrine manner. Deregulation of cytokine secretion may lead to various pathologic conditions including preeclampsia. IL-8, a pro-inflammatory cytokine, regulates various cellular functions such as neutrophil trafficking, cell adhesion, tumor growth and has a role in placental development. IL-8 also promotes trophoblast cell migration and invasion, and stimulates the secretion of progesterone. The induction and mechanism of IL-8 secretion by EVT is still unknown. IL-8 mRNA expression and secretion was determined using real-time PCR and ELISA respectively. To identify the mechanism of IL-8 expression and secretion, selective antagonists and agonist of S1P receptor subtypes, Rac1 and Rho-kinase inhibitors were used. We found that S1P induces IL-8 gene expression and protein secretion in EVT derived HTR-8/SVneo cells but not in BeWo cells. SEW2781, the selective agonist of S1PR(1), induced IL-8 gene expression but not protein secretion. The specific S1PR(2) inhibitor JTE-013 could drastically inhibit IL-8 secretion. Furthermore, pre-treatment of cells with the selective S1PR(1)/S1PR(3) antagonist VPC23019 inhibited IL-8 secretion by ∼45%. Selective Rho-kinase inhibitor Y27632 and Rac1 inhibitor NSC23766 could block IL-8 secretion in these cells. In this study, we could show for the first time that S1P induces IL-8 mRNA expression and protein secretion in EVT cell line. S1P-induced IL-8 gene expression is mainly regulated via S1PR(1) and its secretion is regulated through S1PR(2) receptor subtype. Rho GTPases signaling is essential for S1P-induced IL-8 secretion."	"Tetraspanin-3 is an organizer of the multi-subunit Nogo-A signaling complex. To ensure precision and specificity of ligand-receptor-induced signaling, co-receptors and modulatory factors play important roles. The membrane-bound ligand Nogo-A (an isoform encoded by RTN4) induces inhibition of neurite outgrowth, cell spreading, adhesion and migration through multi-subunit receptor complexes. Here, we identified the four-transmembrane-spanning protein tetraspanin-3 (TSPAN3) as a new modulatory co-receptor for the Nogo-A inhibitory domain Nogo-A-Δ20. Single-molecule tracking showed that TSPAN3 molecules in the cell membrane reacted to binding of Nogo-A with elevated mobility, which was followed by association with the signal-transducing Nogo-A receptor sphingosine-1-phosphate receptor 2 (S1PR2). Subsequently, TSPAN3 was co-internalized as part of the Nogo-A-ligand-receptor complex into early endosomes, where it subsequently separated from Nogo-A and S1PR2 to be recycled to the cell surface. The functional importance of the Nogo-A-TSPAN3 interaction is shown by the fact that knockdown of TSPAN3 strongly reduced the Nogo-A-induced S1PR2 clustering, RhoA activation, cell spreading and neurite outgrowth inhibition. In addition to the modulatory functions of TSPAN3 on Nogo-A-S1PR2 signaling, these results illustrate the very dynamic spatiotemporal reorganizations of membrane proteins during ligand-induced receptor complex organization. "	"Sphingosine-1-phosphate inhibits IL-1-induced expression of C-C motif ligand 5 via c-Fos-dependent suppression of IFN-β amplification loop. The neuroinflammation associated with multiple sclerosis involves activation of astrocytes that secrete and respond to inflammatory mediators such as IL-1. IL-1 stimulates expression of many chemokines, including C-C motif ligand (CCL) 5, that recruit immune cells, but it also stimulates sphingosine kinase-1, an enzyme that generates sphingosine-1-phosphate (S1P), a bioactive lipid mediator essential for inflammation. We found that whereas S1P promotes IL-1-induced expression of IL-6, it inhibits IL-1-induced CCL5 expression in astrocytes. This inhibition is mediated by the S1P receptor (S1PR)-2 via an inhibitory G-dependent mechanism. Consistent with this surprising finding, infiltration of macrophages into sites of inflammation increased significantly in S1PR2(-/-) animals. However, activation of NF-κB, IFN regulatory factor-1, and MAPKs, all of which regulate CCL5 expression in response to IL-1, was not diminished by the S1P in astrocytes. Instead, S1PR2 stimulated inositol 1,4,5-trisphosphate-dependent Ca(++) release and Elk-1 phosphorylation and enhanced c-Fos expression. In our study, IL-1 induced the IFNβ production that supports CCL5 expression. An intriguing finding was that S1P induced c-Fos-inhibited CCL5 directly and also indirectly through inhibition of the IFN-β amplification loop. We propose that in addition to S1PR1, which promotes inflammation, S1PR2 mediates opposing inhibitory functions that limit CCL5 expression and diminish the recruitment of immune cells."	"Critical role of sphingosine-1-phosphate receptor-2 in the disruption of cerebrovascular integrity in experimental stroke. The use and effectiveness of current stroke reperfusion therapies are limited by the complications of reperfusion injury, which include increased cerebrovascular permeability and haemorrhagic transformation. Sphingosine-1-phosphate (S1P) is emerging as a potent modulator of vascular integrity via its receptors (S1PR). By using genetic approaches and a S1PR2 antagonist (JTE013), here we show that S1PR2 plays a critical role in the induction of cerebrovascular permeability, development of intracerebral haemorrhage and neurovascular injury in experimental stroke. In addition, inhibition of S1PR2 results in decreased matrix metalloproteinase (MMP)-9 activity in vivo and lower gelatinase activity in cerebral microvessels. S1PR2 immunopositivity is detected only in the ischemic microvessels of wild-type mice and in the cerebrovascular endothelium of human brain autopsy samples. In vitro, S1PR2 potently regulates the responses of the brain endothelium to ischaemic and inflammatory injury. Therapeutic targeting of this novel pathway could have important translational relevance to stroke patients. "	"Intracellular sphingosine kinase 2-derived sphingosine-1-phosphate mediates epidermal growth factor-induced ezrin-radixin-moesin phosphorylation and cancer cell invasion. The bioactive sphingolipid sphingosine-1-phosphate (S1P) mediates cellular proliferation, mitogenesis, inflammation, and angiogenesis. These biologies are mediated through S1P binding to specific GPCRs [sphingosine-1-phosphate receptor (S1PR)1-5] and some other less well-characterized intracellular targets. Ezrin-radixin-moesin (ERM) proteins, a family of adaptor molecules linking the cortical actin cytoskeleton to the plasma membrane, are emerging as critical regulators of cancer invasion via regulation of cell morphology and motility. Recently, we identified S1P as an acute ERM activator (via phosphorylation) through its action on S1PR2. In this work, we dissect the mechanism of S1P generation downstream of epidermal growth factor (EGF) leading to ERM phosphorylation and cancer invasion. Using pharmacologic inhibitors, small interfering RNA technologies, and genetic approaches, we demonstrate that sphingosine kinase (SK)2, and not SK1, is essential and sufficient in EGF-mediated ERM phosphorylation in HeLa cells. In fact, knocking down SK2 decreased ERM activation 2.5-fold. Furthermore, we provide evidence that SK2 is necessary to mediate EGF-induced invasion. In addition, overexpressing SK2 causes a 2-fold increase in HeLa cell invasion. Surprisingly, and for the first time, we find that this event, although dependent on S1PR2 activation, does not generate and does not require extracellular S1P secretion, therefore introducing a potential novel model of autocrine/intracrine action of S1P that still involves its GPCRs. These results define new mechanistic insights for EGF-mediated invasion and novel actions of SK2, therefore setting the stage for novel targets in the treatment of growth factor-driven malignancies."	"Sphingosine 1-phosphate Receptor 2 Signaling Suppresses Macrophage Phagocytosis and Impairs Host Defense against Sepsis. Sepsis is characterized by an inappropriate systemic inflammatory response and bacteremia that promote multiorgan failure and mortality. Sphingosine 1-phosphate receptor 2 (S1PR2) modulates endotoxin-induced inflammation in endothelium. However, as a highly expressed S1P receptor in macrophages, its role in regulating macrophage response to bacterial infection remains unclear. Cecal ligation and puncture or intratracheal instillation of Escherichia coli was induced in wild-type or S1pr2-deficient mice. The antibacterial ability of cell-specific S1PR2 was tested in bone marrow reconstitution mice or mice with macrophage-specific deletion. Signaling molecules responsible for S1PR2-mediated phagocytosis were also measured in the bone marrow-derived macrophages. In addition, S1PR2 expression levels and its correlation with severity of sepsis were determined in critically ill patients (n = 25). Both genetic deletion and pharmaceutical inhibition of S1PR2 significantly limited bacterial burden, reduced lung damage, and improved survival (genetic deletion, 0% in S1pr2 vs. 78.6% in S1pr2, P &lt; 0.001; pharmaceutical inhibition, 9.1% in vehicle vs. 22.2% in S1PR2 antagonist, P &lt; 0.05). This protection was attributed to the enhanced phagocytic function of S1PR2-deficient macrophages (mean fluorescent intensity, 2035.2 ± 202.1 vs. 407.8 ± 71.6, P &lt; 0.001). Absence of S1PR2 in macrophage inhibits RhoA-dependent cell contraction and promotes IQGAP1-Rac1-dependent lamellipodial protrusion, whose signaling pathways depend on extracellular stimulators. In septic patients, increased S1PR2 levels in peripheral blood mononuclear cells were positively correlated with the severity of sepsis (r = 0.845, P &lt; 0.001). This study implies that S1PR2, as a critical receptor in macrophage, impairs phagocytosis and antimicrobial defense in the pathogenesis of sepsis. Interventions targeting S1PR2 signaling may serve as promising therapeutic approaches for sepsis."	"A potent and selective C-11 labeled PET tracer for imaging sphingosine-1-phosphate receptor 2 in the CNS demonstrates sexually dimorphic expression. Sphingosine-1-phosphate receptor 2 (S1PR2) plays an essential role in regulating blood-brain barrier (BBB) function during demyelinating central nervous system (CNS) disease. Increased expression of S1PR2 occurs in disease-susceptible CNS regions of female versus male SJL mice and in female multiple sclerosis (MS) patients. Here we reported a novel sensitive and noninvasive method to quantitatively assess S1PR2 expression using a C-11 labeled positron emission tomography (PET) radioligand [(11)C]5a for in vivo imaging of S1PR2. Compound 5a exhibited promising binding potency with IC50 value of 9.52 ± 0.70 nM for S1PR2 and high selectivity over S1PR1 and S1PR3 (both IC50 &gt; 1000 nM). [(11)C]5a was synthesized in ∼40 min with radiochemistry yield of 20 ± 5% (decayed to the end of bombardment (EOB), n &gt; 10), specific activity of 222-370 GBq μmol(-1) (decayed to EOB). The biodistribution study in female SJL mice showed the cerebellar uptake of radioactivity at 30 min of post-injection of [(11)C]5a was increased by Cyclosporin A (CsA) pretreatment (from 0.84 ± 0.04 ID% per g to 2.21 ± 0.21 ID% per g, n = 4, p &lt; 0.01). MicroPET data revealed that naive female SJL mice exhibited higher cerebellar uptake compared with males following CsA pretreatment (standardized uptake values (SUV) 0.58 ± 0.16 vs. 0.48 ± 0.12 at 30 min of post-injection, n = 4, p &lt; 0.05), which was consistent with the autoradiographic results. This data suggested that [(11)C]5a had the capability in assessing the sexual dimorphism of S1PR2 expression in the cerebellum of the SJL mice. The development of radioligands for S1PR2 to identify a clinical suitable S1PR2 PET radiotracer, may greatly contribute to investigating sex differences in S1PR2 expression that contribute to MS subtype and disease progression and it will be very useful for detecting MS in early state and differentiating MS with other patients with neuroinflammatory diseases, and monitoring the efficacy of treating diseases using S1PR2 antagonism. "	"Antitumor Activity of a Novel Sphingosine-1-Phosphate 2 Antagonist, AB1, in Neuroblastoma. The bioactive lipid sphingosine-1-phosphate (S1P) and its receptors (S1P1-5) play critical roles in many pathologic processes, including cancer. The S1P axis has become a bona fide therapeutic target in cancer. JTE-013 [N-​(2,​6-​dichloro-​4-​pyridinyl)-​2-​[1,​3-​dimethyl-​4-​(1-​methylethyl)-​1H-​pyrazolo[3,​4-​b]pyridin-​6-​yl]-​hydrazinecarboxamide], a known S1P2 antagonist, suffers from instability in vivo. Structurally modified, more potent, and stable S1P2 inhibitors would be desirable pharmacological tools. One of the JTE-013 derivatives, AB1 [N-(1H-4-isopropyl-1-allyl-3-methylpyrazolo[3,4-b]pyridine-6-yl)-amino-N'-(2,6-dichloropyridine-4-yl) urea], exhibited improved S1P2 antagonism compared with JTE-013. Intravenous pharmacokinetics indicated enhanced stability or slower clearance of AB1 in vivo. Migration assays in glioblastoma showed that AB1 was slightly more effective than JTE-013 in blocking S1P2-mediated inhibition of cell migration. Functional studies in the neuroblastoma (NB) cell line SK-N-AS showed that AB1 displayed potency at least equivalent to JTE-013 in affecting signaling molecules downstream of S1P2. Similarly, AB1 inhibition of the growth of SK-N-AS tumor xenografts was improved compared with JTE-013. Cell viability assays excluded that this enhanced AB1 effect is caused by inhibition of cancer cell survival. Both JTE-013 and AB1 trended to inhibit (C-C motif) ligand 2 expression and were able to significantly inhibit subsequent tumor-associated macrophage infiltration in NB xenografts. Interestingly, AB1 was more effective than JTE-013 in inhibiting the expression of the profibrotic mediator connective tissue growth factor. The terminal deoxynucleotidyl transferase-mediated digoxigenin-deoxyuridine nick-end labeling assay and cleaved caspase-3 detection further demonstrated that apoptosis was increased in AB1-treated NB xenografts compared with JTE-013. Overall, the modification of JTE-013 to produce the AB1 compound improved potency, intravenous pharmacokinetics, cellular activity, and antitumor activity in NB and may have enhanced clinical and experimental applicability. "	"Comprehensive analysis of sphingosine-1-phosphate receptor mutants during zebrafish embryogenesis. The lipid mediator sphingosine-1-phosphate (S1P) regulates various physiological and pathological phenomena such as angiogenesis and oncogenesis. Secreted S1P associates with the G-protein-coupled S1P receptors (S1PRs), leading to the activation of downstream signaling molecules. In mammals, five S1prs have been identified and the genetic disruption of a single S1pr1 gene causes vascular defects. In zebrafish, seven s1prs have been isolated. We found that individual s1prs showed unique expression patterns with some overlapping expression domains during early embryogenesis. We generated all s1pr single-mutant zebrafish by introducing premature stop codons in their coding regions using transcription activator-like effector nucleases and analyzed their phenotypes during early embryogenesis. Zygotic s1pr1, s1pr3a, s1pr3b, s1pr4, s1pr5a and s1pr5b mutants showed no developmental defects and grew into adults, whereas zygotic s1pr2 mutant showed embryonic lethality with a cardiac defect, showing quite distinct embryonic phenotypes for individual S1pr mutants between zebrafish and mouse. We further generated maternal-zygotic s1pr1, s1pr3a, s1pr3b, s1pr4, s1pr5a and s1pr5b mutants and found that these maternal-zygotic mutants also showed no obvious developmental defects, presumably suggesting the redundant functions of the S1P receptor-mediated signaling in zebrafish. "	"Identification of SPHK1 as a therapeutic target and marker of poor prognosis in cholangiocarcinoma. Cholangiocarcinoma (CCA) is characterized by a uniquely aggressive behavior and lack of effective targeted therapies. After analyzing the gene expression profiles of seven paired intrahepatic CCA microarrays, a novel sphingosine kinase 1 (SPHK1)/sphingosine-1-phosphate (S1P) pathway and a novel target gene, SPHK1, were identified. We hypothesized that therapeutic targeting of this pathway can be used to kill intrahepatic cholangiocarcinoma (CCA) cells. High levels of SPHK1 protein expression, which was evaluated by immunohistochemical staining of samples from 96 patients with intrahepatic CCA, correlated with poor overall survival. The SPHK1 inhibitor SK1-I demonstrated potent antiproliferative activity in vitro and in vivo. SK1-I modulated the balance of ceramide-sphinogosine-S1P and induced CCA apoptosis. Furthermore, SK1-I combined with JTE013, an antagonist of the predominant S1P receptor S1PR2, inhibited the AKT and ERK signaling pathways in CCA cells. Our preclinical data suggest SPHK1/S1P pathway targeting may be an effective treatment option for patients with CCA. "	"[Frontiers in Live Bone Imaging Researches. In vivo imaging of immune tissues]. In vivo imaging analysis of the immune tissues, especially secondary lymphoid tissues such as lymph nodes, has greatly increased our understanding of how immune responses are promoted and regulated by immune cell trafficking. Recently, in vivo tracking of follicular helper T (Tfh) cells, a vital T cell subset for B cell responses to produce antibodies, by imaging analysis and light-induced cell labeling not only revealed their migration dynamics, but also provided new insights into how Tfh cells may be involved in the generation of immunological memory. "	"Maternal or zygotic sphingosine kinase is required to regulate zebrafish cardiogenesis. The sphingosine 1-phosphate (S1P) signaling pathway regulates zebrafish cardiogenesis, and provides a paradigm for how signaling gradients coordinate collective cell migration across tissue layers. It is known that the S1P transporter (Spns2) functions in extra-embryonic YSL to activate G protein-coupled receptor (S1pr2) signaling in endoderm for deposition of positional cues (integrin, fibronectin, etc.). Such cues are recognized by overlying lateral precardiac mesoderm that migrates to the midline and fuses to form the primordial heart tube. However, the source of bio-active S1P is not known. There are multiple receptors and it is not known if there are earlier or even receptor-independent functions for S1P. Because S1P can only be generated by sphingosine kinases, we targeted a mutation to the single kinase gene expressed during early embryogenesis (sphk2). Zygotic mutants survive to adulthood and appear normal, but maternal-zygotic mutant embryos phenocopy null zygotic mutants of spns2 or s1pr2. The data show that maternally derived sphk2 RNA is fully sufficient to generate an S1P signaling gradient in the YSL that ultimately controls precardiac mesoderm migration during embryogenesis. Furthermore, despite maternal expression of sphk2, there are no obvious developmental functions requiring its activity prior to stimulation of S1pr2 in endoderm."	"Immunohistochemical analysis indicates that the anatomical location of B-cell non-Hodgkin's lymphoma is determined by differentially expressed chemokine receptors, sphingosine-1-phosphate receptors and integrins. The aim of this study was to elucidate the mechanisms responsible for the location of B-cell non-Hodgkin's lymphoma (B-NHL) at different anatomical sites. We speculated that the malignant B cells in these disorders have the potential for trafficking between blood and secondary lymphoid organs (SLO) or extranodal sites and that their preferential accumulation at different locations is governed by the expression of key molecules that regulate the trafficking of normal lymphocytes. Biopsy or blood samples from 91 cases of B-NHL affecting SLO (n = 27), ocular adnexae (n = 51) or blood (n = 13) were analysed by immunohistochemistry or flow cytometry for the expression of the following molecules: CCR7, CCL21 and αL (required for the entry of normal lymphocytes into SLO); CXCR4, CXCL12 and α4 (required for entry into extranodal sites); CXCR5, CXCL13 and S1PR2 (required for tissue retention); S1PR1 and S1PR3 (required for egress into the blood). The expression of each of these molecules was then related to anatomical location and histological subtype. The expression of motility/adhesion molecules varied widely between individual patient samples and correlated much more strongly with anatomical location than with histological subtype. SLO lymphomas [comprising 10 follicular lymphoma (FL), 8 diffuse large B-cell lymphoma (DLBCL), 4 mantle-cell lymphoma (MCL) and 5 marginal-zone lymphoma (MZL)] were characterised by pronounced over-expression of S1PR2, suggesting that the malignant cells in these lymphomas are actively retained at the site of clonal expansion. In contrast, the malignant B cells in ocular adnexal lymphomas (10 FL, 9 DLBCL, 4 MCL and 28 MZL) expressed a profile of molecules suggesting a dynamic process of trafficking involving not only tissue retention but also egress via S1PR3 and homing back to extranodal sites via CXCR4/CXCL12 and α4. Finally, leukaemic lymphomas (6 FL, 5 MCL and 2 MZL) were characterised by aberrant expression of the egress receptor S1PR1 and low expression of molecules required for tissue entry/retention. In summary, our study strongly suggests that anatomical location in B-NHL is governed by the differential expression of specific adhesion/motility molecules. This novel observation has important implications for therapeutic strategies that aim to disrupt protective micro-environmental interactions."	"Sphingolipids inhibit vimentin-dependent cell migration. The sphingolipids, sphingosine 1-phosphate (S1P) and sphingosylphosphorylcholine (SPC), can induce or inhibit cellular migration. The intermediate filament protein vimentin is an inducer of migration and a marker for epithelial-mesenchymal transition. Given that keratin intermediate filaments are regulated by SPC, with consequences for cell motility, we wanted to determine whether vimentin is also regulated by sphingolipid signalling and whether it is a determinant for sphingolipid-mediated functions. In cancer cells where S1P and SPC inhibited migration, we observed that S1P and SPC induced phosphorylation of vimentin on S71, leading to a corresponding reorganization of vimentin filaments. These effects were sphingolipid-signalling-dependent, because inhibition of either the S1P2 receptor (also known as S1PR2) or its downstream effector Rho-associated kinase (ROCK, for which there are two isoforms ROCK1 and ROCK2) nullified the sphingolipid-induced effects on vimentin organization and S71 phosphorylation. Furthermore, the anti-migratory effect of S1P and SPC could be prevented by expressing S71-phosphorylation-deficient vimentin. In addition, we demonstrated, by using wild-type and vimentin-knockout mouse embryonic fibroblasts, that the sphingolipid-mediated inhibition of migration is dependent on vimentin. These results imply that this newly discovered sphingolipid-vimentin signalling axis exerts brake-and-throttle functions in the regulation of cell migration. "	"Maternal and Zygotic Sphingosine Kinase 2 Are Indispensable for Cardiac Development in Zebrafish. Sphingosine 1-phosphate (S1P) is synthesized from sphingosine by sphingosine kinases (SPHK1 and SPHK2) in invertebrates and vertebrates, whereas specific receptors for S1P (S1PRs) selectively appear in vertebrates, suggesting that S1P acquires novel functions in vertebrates. Because the developmental functions of SPHK1 and SPHK2 remain obscure in vertebrates, we generated sphk1 or sphk2 gene-disrupted zebrafish by introducing premature stop codons in their coding regions using transcription activator-like effector nucleases. Both zygotic sphk1 and sphk2 zebrafish mutants exhibited no obvious developmental defects and grew to adults. The maternal-zygotic sphk2 mutant (MZsphk2), but not the maternal-zygotic sphk1 mutant and maternal sphk2 mutant, had a defect in the cardiac progenitor migration and a concomitant decrease in S1P level, leading to a two-heart phenotype (cardia bifida). Cardia bifida in MZsphk2, which was rescued by injecting sphk2 mRNA, was a phenotype identical to that of zygotic mutants of the S1P transporter spns2 and S1P receptor s1pr2, indicating that the Sphk2-Spns2-S1pr2 axis regulates the cardiac progenitor migration in zebrafish. The contribution of maternally supplied lipid mediators during vertebrate organogenesis presents as a requirement for maternal-zygotic Sphk2. "	"A novel role of sphingosine kinase-1 in the invasion and angiogenesis of VHL mutant clear cell renal cell carcinoma. Sphingosine kinase 1 (SK1), the enzyme responsible for sphingosine 1-phosphate (S1P) production, is overexpressed in many human solid tumors. However, its role in clear cell renal cell carcinoma (ccRCC) has not been described previously. ccRCC cases are usually associated with mutations in von Hippel-Lindau (VHL) and subsequent normoxic stabilization of hypoxia-inducible factor (HIF). We previously showed that HIF-2α up-regulates SK1 expression during hypoxia in glioma cells. Therefore, we hypothesized that the stabilized HIF in ccRCC cells will be associated with increased SK1 expression. Here, we demonstrate that SK1 is overexpressed in 786-0 renal carcinoma cells lacking functional VHL, with concomitant high S1P levels that appear to be HIF-2α mediated. Moreover, examining the TCGA RNA seq database shows that SK1 expression was ∼2.7-fold higher in solid tumor tissue from ccRCC patients, and this was associated with less survival. Knockdown of SK1 in 786-0 ccRCC cells had no effect on cell proliferation. On the other hand, this knockdown resulted in an ∼3.5-fold decrease in invasion, less phosphorylation of focal adhesion kinase (FAK), and an ∼2-fold decrease in angiogenesis. Moreover, S1P treatment of SK1 knockdown cells resulted in phosphorylation of FAK and invasion, and this was mediated by S1P receptor 2. These results suggest that higher SK1 and S1P levels in VHL-defective ccRCC could induce invasion in an autocrine manner and angiogenesis in a paracrine manner. Accordingly, targeting SK1 could reduce both the invasion and angiogenesis of ccRCC and therefore improve the survival rate of patients."	"Sphingosine-1-phosphate receptor subtype 2 signaling in endothelial senescence-associated functional impairments and inflammation. Endothelial inflammation is an important risk factor in the initiation and development of vascular disease. Therefore, signaling cascades and patho-physiological outcomes of endothelial inflammation are important questions in vascular biology. Recent studies suggest that sphingosine-1-phosphate receptor subtype 2 (S1PR2) signaling in endothelial cells (ECs) play a critical role in endothelial inflammation. For example, ECs present in atherosclerotic plaques exhibit senescence phenotype. Levels of S1PR2 are markedly increased in cultured senescent ECs and in lesion regions of atherosclerotic endothelium. Also, inflammatory cytokines and mechanical flow stress profoundly increase S1PR2 levels in ECs. Inhibition of endothelial S1PR2 signaling diminishes endothelial senescence-associated functional impairments and atherogenic stimuli-induced endothelial activation. In contrast, activation of endothelial S1PR2 stimulates the production of pro-inflammatory chemokines/cytokines and lipid mediators in ECs. In this article, we will review signaling and functions of sphingosine-1-phosphate (S1P) receptors in endothelial biology, with particular focus on endothelial S1PR2 signaling-mediated endothelial inflammation. "	"Discovery of novel S1P2 antagonists. Part 1: discovery of 1,3-bis(aryloxy)benzene derivatives. The structure-activity relationships of a novel series of sphingosine-1-phosphate receptor antagonists have been examined in detail. The initial hit compound 1 was modified through synthesis to improve its S1P2 activity. The synthesis of a series of analogs revealed that 1,3-bis(aryloxy)benzene derivatives, as represented by 22, are potent and selective S1P2 antagonists. "	"Pelvic organ prolapse is associated with alteration of sphingosine-1-phosphate/Rho-kinase signalling pathway in human vaginal wall. Pelvic organ prolapse (POP) is a debilitating condition of unknown aetiology affecting &gt; 50% of women over 40 years of age. In POP patients, the vaginal walls are weakened allowing descent of pelvic organs through the vagina. We sought to determine if sphingosine-1-phosphate (S1P) signalling, which regulates smooth muscle contractility and apoptosis via the RhoA/Rho-kinase (ROK) pathway, is altered in the vagina of women with POP. Utilising anterior vaginal wall specimens, we provide novel demonstration of the S1P pathway in this organ. Additionally, comparing specimens from women having pelvic reconstructive surgery for POP and control subjects, we reveal increases in mRNA expression of the three major mammalian S1P receptors (S1P1-S1P3), and RhoA and the ROK isoforms: ROKα and ROKβ in POP patients, which correlates with a decrease in elastic fibre assembly pathway constituents. Taken together, our data suggest the S1P/ROK pathway as a novel area for future POP research and potential therapeutic development."	"Role of sphingosine-1-phosphate receptor 1 and sphingosine-1-phosphate receptor 2 in hyperglycemia-induced endothelial cell dysfunction. The hyperglycemia-induced production of oxidative stress results in endothelial cell dysfunction. Previous studies have demonstrated that sphingosine-1-phosphate (S1P) regulates an array of biological activities in endothelial cells mediated by sphingosine-1-phosphate receptors (S1PRs). However, the role of S1PR-mediated signaling pathways in hyperglycemia-induced endothelial cell dysfunction is currently unknown. In the present study, we aimed to explore the role of S1PRs in endothelial cell dysfunction. For this purpose, hyperglycemia-induced oxidative stress was examined using human umbilical vein endothelial cells (HUVECs) cultured with either normal (5.6 mM) or high (25 mM) levels of glucose. The levels of reactive oxygen species (ROS) and nitric oxide (NO) were determined by flow cytometric (FCM) analysis and nitrate reductase, respectively. Endothelial morphogenesis assay was performed in three-dimensional Matrigel. The mRNA and protein expression levels of S1PRs in the HUVECs were determined by RT-qPCR and western blot analysis, respectively. In addition, ROS, NO and endothelial morphogenesis assays were conducted using the high glucose-treated endothelial cells transfected with adenoviral vector expressing exogenous S1PR1 gene (pAd-S1PR1) or with adenoviral vector expressing S1PR2-specific shRNA (pAd-shRNA-S1PR2). The expression levels of S1PR1 and S1PR2 in the endothelial cells treated with high levels of glucose decreased and increased, respectively. However, the effects of high levels of glucose on S1PR3 were minimal. In addition, high levels of glucose enhanced ROS generation and markedly reduced NO generation and morphogenetic responses. Nevertheless, all the aforementioned changes were completely reversed by transfection with pAd-S1PR1 or pAd-shRNA-S1PR2, which increased S1PR1 and decreased S1PR2 expression, respectively. It can thus be concluded that S1PR1 and S1PR2 play crucial roles in hyperglycemia-induced endothelial cell dysfunction."	"Nephrokeli, a Chinese herbal formula, may improve IgA nephropathy through regulation of the sphingosine-1-phosphate pathway. Nephrokeli (NPKL) is a Chinese herbal formula that has been used to treat patients with IgA nephropathy (IgAN) for improvement of proteinuria and kidney injury. However, the mechanism remains unclear. Sphingosine-1-phosphate (S1P) and its receptors S1PR2 and S1PR3 are known to play an important role in kidney disease. Here, we tested whether NPKL is able to regulate the S1P pathway in the kidney of IgAN rats. Four groups of rats were included in the study: Control, IgAN, IgAN treated with losartan, and IgAN treated with NPKL. The IgAN model was generated by injection of bovine serum albumin and staphylococcus enterotoxin B. We found that IgAN rats had increased staining for proliferating cell nuclear antigen (PCNA) in the mesangial area and increased mRNA and protein levels of S1PR2 and S1PR3 in the kidney compared to control rats. Connective tissue growth factor (CTGF), a downstream growth factor in the S1P pathway, was also elevated in the kidney of IgAN rats. Treatment with either NPKL or losartan was able to reduce PCNA staining and the expression of both S1PR2 and S1PR3 in the kidney of IgAN rats. However, NPKL (but not losartan treatment) reduced the expression of CTGF in the kidney of IgAN rats. In addition, we treated rat mesangial cells with sera collected from either NPKL-treated rats or control rats and found that NPKL-serum was able to reduce S1P-induced mesangial cell proliferation and the expression of S1PR2/S1PR3 and CTGF. NPKL also attenuates expression of fibrosis, inflammation, and oxidative stress markers in the kidney of IgAN rats. Our studies provide the mechanism by which NPKL attenuates kidney injury in IgAN rats. "	"[Inhibition of S1PR2 activity down-regulates expressions of sphingosine kinase 1 and MCP-1 in rat glomerular mesangial cells under high glucose]. To investigate the effects of high glucose and the specific antagonist JTE-013 of sphingosine-1-phosphate receptor 2 (S1PR2) on the expressions of sphingosine kinase 1 (Sphk1), S1PR2 and monocyte chemoattractant protein-1 (MCP-1) in rat glomerular mesangial cells. The cultured rat GMCs were divided into four groups: normal glucose control group (NG, with 5.5 mmol/L glucose), mannitol group (HM, with 5.5 mmol/L glucose and 24.5 mmol/L mannitol), high glucose group (HG, with 30 mmol/L glucose), JTE-013 group (HJ, with 30 mmol/L glucose and 10 μmol/L JTE-013). The mRNA levels of SphK1, S1PR2 and MCP-1 were determined with real-time quantitative PCR in the cells at 0, 12, 24 and 48 hours, respectively, and the protein expression of MCP-1 in the supernatant was determined with ELISA . Compared with those in normal glucose, the mRNAs of SphK1 and S1PR2 in rat GMCs under high glucose were down-regulated at 12 hours and were then up-regulated as time went on, and peaked at 48 hours. High glucose significantly enhanced the mRNA expression of MCP-1 at 12 hours, and the expression reached the highest levels at 24 hours, but decreased at 48 hours. The protein expression of MCP-1 in rat GMCs time-dependently increased under high glucose compared with that in NG. After GMCs were treated with 10 μmol/L JTE-013 before exposed to high glucose for 24 hours, the mRNA levels of SphK1, S1PR2 and MCP-1 and the protein expression of MCP-1 significantly decreased compared with those in HG. Inhibition of S1PR2 activity could down-regulate the expressions of SphK1 and MCP-1 in rat GMCs under high glucose."	"Differential activation of receptors and signal pathways upon stimulation by different doses of sphingosine-1-phosphate in endothelial cells. What is the central question of this study? Why do different doses of sphingosine-1-phosphate (S1P) induce distinct biological effects in endothelial cells? What is the main finding and its importance? S1P at physiological concentrations preserved endothelial barrier function by binding to S1P receptor 1, then triggering Ca(2+) release from endoplasmic reticulum through phosphoinositide phospholipase C and inositol triphosphate, and consequently strengthening tight junction and F-actin assembly through Rac1 activation. Excessive S1P induced endothelial malfunction by activating S1P receptor 2 and RhoA/ROCK pathway, causing F-actin and tight junction disorganisation. Extracellular Ca(2+) influx was involved in this process. Sphingosine-1-phosphate (S1P) is a bioactive sphingolipid in plasma, and its plasma concentration can be adjusted through a complex metabolic process. The alterations in S1P levels and the activation of receptors collaboratively regulate distinct biological effects. This study was performed to investigate comparatively the effect of different concentrations of S1P on endothelial barrier function and to explore the roles of S1P receptors (S1PRs), Rho GTPases and calcium in S1P-induced endothelial responses. Endothelial barrier function was studied using transendothelial electric resistance and a resistance meter in human umbilical vein endothelial cells. Specific agonists or antagonists were applied to control the activation of S1P receptors and the release of calcium from different cellular compartments. The results indicated that at physiological concentrations, S1P preserved endothelial barrier function by binding with S1PR1. The activation of S1PR1 triggered the release of intracellular Ca(2+) from the endoplasmic reticulum through the PI-phospholipase C and inositol trisphosphate pathways. Consequently, the Rho GTPase Rac1 was activated, strengthening the assembly of tight junction proteins and F-actin. However, excessive S1P induced endothelial barrier dysfunction by activating S1PR2 followed by the RhoA/RhoA kinase pathway, causing the disorganization of F-actin and the disassembly of the tight junction protein ZO-1. An influx of extracellular Ca(2+) was involved in this process. These data suggest that physiological and excessive amounts of S1P induce different responses in human umbilical vein endothelial cells; the activation of the 1PR1-PLC-IP3 R-Ca(2+) -Rac1 pathway governs the low-dose S1P-enhanced endothelial barrier integrity, and the activation of S1PR2-calcium influx-RhoA/ROCK dominates the high-dose S1P-induced endothelial monolayer hyperpermeability response."	"Sphingosine 1-Phosphate Receptor 2 Regulates the Migration, Proliferation, and Differentiation of Mesenchymal Stem Cells. Mesenchymal stem cells (MSCs) are a multipotent cell population acquired most prominently from bone marrow with the capacity to differentiate into osteoblasts, chondrocytes, adipocytes, and others. MSCs demonstrate the capacity to home to sites of injury and contribute to tissue repair. Sphingosine 1-phosphate (S1P) is a biologically active sphingolipid impacting proliferation, apoptosis, inflammation, and angiogenesis with changes in S1P concentration providing significant implications for various disease conditions including cancer, diabetes, and cardiac disease. These functions are primarily mediated by interactions with 5 G-protein coupled S1P receptors (S1PR1-5). In this paper, we demonstrate that inhibition of S1PR2 results in increased MSC clonogenicity, migration, and proliferation; features dependent on Erk phosphorylation. Furthermore, decreased S1PR2 expression decreases the differentiation of MSCs into adipocytes and mature osteoblasts that may be the result of increased expression of MSC pluripotency factors including Nanog, Sox-9, and Oct-4. Inhibition of S1PR1 and S1PR3 in contrast does not impact MSC migration or Erk activation although increased proliferation is observed. In the study, we describe the essential role of S1PR2 in MSC differentiation pathways through modification of pluripotency factors. We propose a MAPK dependent mechanism through S1PR2 inhibition that promotes equally multipotent MSC proliferation."	"The sphingosine-1-phosphate/sphingosine-1-phosphate receptor 2 axis regulates early airway T-cell infiltration in murine mast cell-dependent acute allergic responses. Sphingosine-1-phosphate (S1P) is a bioactive sphingolipid produced by mast cells (MCs) on cross-linking of their high-affinity receptors for IgE by antigen that can amplify MC responses by binding to its S1P receptors. An acute MC-dependent allergic reaction can lead to systemic shock, but the early events of its development in lung tissues have not been investigated, and S1P functions in the onset of allergic processes remain to be examined. We used a highly specific neutralizing anti-S1P antibody (mAb) and the sphingosine-1-phosphate receptor 2 (S1PR2) antagonist JTE-013 to study the signaling contributions of S1P and S1PR2 to MC- and IgE-dependent airway allergic responses in mice within minutes after antigen challenge. Allergic reaction was triggered by a single intraperitoneal dose of antigen in sensitized mice pretreated intraperitoneally with anti-S1P, isotype control mAb, JTE-013, or vehicle before antigen challenge. Kinetics experiments revealed early pulmonary infiltration of mostly T cells around blood vessels of sensitized mice 20 minutes after antigen exposure. Pretreatment with anti-S1P mAb inhibited in vitro MC activation, as well as in vivo development of airway infiltration and MC activation, reducing serum levels of histamine, cytokines, and the chemokines monocyte chemoattractant protein 1/CCL2, macrophage inflammatory protein 1α/CCL3, and RANTES/CCL5. S1PR2 antagonism or deficiency or MC deficiency recapitulated these results. Both in vitro and in vivo experiments demonstrated MC S1PR2 dependency for chemokine release and the necessity for signal transducer and activator of transcription 3 activation. Activation of S1PR2 by S1P and downstream signal transducer and activator of transcription 3 signaling in MCs regulate early T-cell recruitment to antigen-challenged lungs through chemokine production."	"Conjugated bile acid-activated S1P receptor 2 is a key regulator of sphingosine kinase 2 and hepatic gene expression. Bile acids are important hormones during the feed/fast cycle, allowing the liver to coordinately regulate nutrient metabolism. How they accomplish this has not been fully elucidated. Conjugated bile acids activate both the ERK1/2 and AKT signaling pathways via sphingosine 1-phosphate receptor 2 (S1PR2) in rodent hepatocytes and in vivo. Here, we report that feeding mice a high-fat diet, infusion of taurocholate into the chronic bile fistula rat, or overexpression of the gene encoding S1PR2 in mouse hepatocytes significantly upregulated hepatic sphingosine kinase 2 (SphK2) but not SphK1. Key genes encoding nuclear receptors/enzymes involved in nutrient metabolism were significantly downregulated in livers of S1PR2(-/-) and SphK2(-/-) mice. In contrast, overexpression of the gene encoding S1PR2 in primary mouse hepatocytes differentially increased SphK2, but not SphK1, and mRNA levels of key genes involved in nutrient metabolism. Nuclear levels of sphingosine-1-phosphate, an endogenous inhibitor of histone deacetylases 1 and 2, as well as the acetylation of histones H3K9, H4K5, and H2BK12 were significantly decreased in hepatocytes prepared from S1PR2(-/-) and SphK2(-/-) mice. Both S1PR2(-/-) and SphK2(-/-) mice rapidly developed fatty livers on a high-fat diet, suggesting the importance of conjugated bile acids, S1PR2, and SphK2 in regulating hepatic lipid metabolism."	"S1P-Yap1 signaling regulates endoderm formation required for cardiac precursor cell migration in zebrafish. To form the primary heart tube in zebrafish, bilateral cardiac precursor cells (CPCs) migrate toward the midline beneath the endoderm. Mutants lacking endoderm and fish with defective sphingosine 1-phosphate (S1P) signaling exhibit cardia bifida. Endoderm defects lead to the lack of foothold for the CPCs, whereas the cause of cardia bifida in S1P signaling mutants remains unclear. Here we show that S1P signaling regulates CPC migration through Yes-associated protein 1 (Yap1)-dependent endoderm survival. Cardia bifida seen in spns2 (S1P transporter) morphants and s1pr2 (S1P receptor-2) morphants could be rescued by endodermal expression of nuclear localized form of yap1. yap1 morphants had decreased expression of the Yap1/Tead target connective tissue growth factor a (Ctgfa) and consequently increased endodermal cell apoptosis. Consistently, ctgfa morphants showed defects of the endodermal sheet and cardia bifida. Collectively, we show that S1pr2/Yap1-regulated ctgfa expression is essential for the proper endoderm formation required for CPC migration."	"Loss of signalling via Gα13 in germinal centre B-cell-derived lymphoma. Germinal centre B-cell-like diffuse large B-cell lymphoma (GCB-DLBCL) is a common malignancy, yet the signalling pathways that are deregulated and the factors leading to its systemic dissemination are poorly defined. Work in mice showed that sphingosine-1-phosphate receptor-2 (S1PR2), a Gα12 and Gα13 coupled receptor, promotes growth regulation and local confinement of germinal centre B cells. Recent deep sequencing studies of GCB-DLBCL have revealed mutations in many genes in this cancer, including in GNA13 (encoding Gα13) and S1PR2 (refs 5,6, 7). Here we show, using in vitro and in vivo assays, that GCB-DLBCL-associated mutations occurring in S1PR2 frequently disrupt the receptor's Akt and migration inhibitory functions. Gα13-deficient mouse germinal centre B cells and human GCB-DLBCL cells were unable to suppress pAkt and migration in response to S1P, and Gα13-deficient mice developed germinal centre B-cell-derived lymphoma. Germinal centre B cells, unlike most lymphocytes, are tightly confined in lymphoid organs and do not recirculate. Remarkably, deficiency in Gα13, but not S1PR2, led to germinal centre B-cell dissemination into lymph and blood. GCB-DLBCL cell lines frequently carried mutations in the Gα13 effector ARHGEF1, and Arhgef1 deficiency also led to germinal centre B-cell dissemination. The incomplete phenocopy of Gα13- and S1PR2 deficiency led us to discover that P2RY8, an orphan receptor that is mutated in GCB-DLBCL and another germinal centre B-cell-derived malignancy, Burkitt's lymphoma, also represses germinal centre B-cell growth and promotes confinement via Gα13. These findings identify a Gα13-dependent pathway that exerts dual actions in suppressing growth and blocking dissemination of germinal centre B cells that is frequently disrupted in germinal centre B-cell-derived lymphoma."	"The sphingosine kinase 1/sphingosine-1-phosphate pathway in pulmonary arterial hypertension. Sphingosine kinases (SphKs) 1 and 2 regulate the synthesis of the bioactive sphingolipid sphingosine-1-phosphate (S1P), an important lipid mediator that promotes cell proliferation, migration, and angiogenesis. We aimed to examine whether SphKs and their product, S1P, play a role in the development of pulmonary arterial hypertension (PAH). SphK1(-/-), SphK2(-/-), and S1P lyase heterozygous (Sgpl1(+/-)) mice, a pharmacologic SphK inhibitor (SKI2), and a S1P receptor 2 (S1PR2) antagonist (JTE013) were used in rodent models of hypoxia-mediated pulmonary hypertension (HPH). S1P levels in lung tissues from patients with PAH and pulmonary arteries (PAs) from rodent models of HPH were measured. mRNA and protein levels of SphK1, but not SphK2, were significantly increased in the lungs and isolated PA smooth muscle cells (PASMCs) from patients with PAH, and in lungs of experimental rodent models of HPH. S1P levels were increased in lungs of patients with PAH and PAs from rodent models of HPH. Unlike SphK2(-/-) mice, SphK1(-/-) mice were protected against HPH, whereas Sgpl1(+/-) mice were more susceptible to HPH. Pharmacologic SphK1 and S1PR2 inhibition prevented the development of HPH in rodent models of HPH. Overexpression of SphK1 and stimulation with S1P potentially via ligation of S1PR2 promoted PASMC proliferation in vitro, whereas SphK1 deficiency inhibited PASMC proliferation. The SphK1/S1P axis is a novel pathway in PAH that promotes PASMC proliferation, a major contributor to pulmonary vascular remodeling. Our results suggest that this pathway is a potential therapeutic target in PAH."	"Maintaining stable memory engrams: new roles for Nogo-A in the CNS. Nogo-A interaction with its different receptors (Nogo receptor 1 (NgR1), S1P receptor 2 (S1PR2), paired immunoglobulin-like receptor B (PirB)) restricts plasticity and growth-dependent processes leading, via the activation of different signaling pathway to the stabilization of the neuronal networks (either developmentally or during processes of memory consolation in the mature nervous system). Taking away these molecular brakes might allow for the induction of extensive structural and functional rearrangements and might promote compensatory growth processes after an injury of the CNS, in cortical structures as well as in the spinal cord. However, it is important to keep in mind that this could as well be a dangerous endeavor, since it might facilitate unwanted and unnecessary (and probably even maladaptive) neuronal connections. "	"Sphingosine-1-phosphate/S1P receptors signaling modulates cell migration in human bone marrow-derived mesenchymal stem cells. The recruitment of bone marrow-derived mesenchymal stem cells (BMSCs) to damaged tissues and sites of inflammation is an essential step for clinical therapy. However, the signals regulating the motility of these cells are still not fully understood. Sphingosine-1-phosphate (S1P), a bioactive sphingolipid metabolite, is known to have a variety of biological effects on various cells. Here, we investigated the roles of S1P and S1P receptors (S1PRs) in migration of human BMSCs. We found that S1P exerted a powerful migratory action on human BMSCs. Moreover, by employing RNA interference technology and pharmacological tools, we demonstrated that S1PR1 and S1PR3 are responsible for S1P-induced migration of human BMSCs. In contrast, S1PR2 mediates the inhibition of migration. Additionally, we explored the downstream signaling pathway of the S1P/S1PRs axis and found that activation of S1PR1 or S1PR3 increased migration of human BMSCs through a G i /extracellular regulated protein kinases 1/2- (ERK1/2-) dependent pathway, whereas activation of S1PR2 decreased migration through the Rho/Rho-associated protein kinase (ROCK) pathway. In conclusion, we reveal that the S1P/S1PRs signaling axis regulates the migration of human BMSCs via a dual-directional mechanism. Thus, selective modulation of S1PR's activity on human BMSCs may provide an effective approach to immunotherapy or tissue regeneration. "	"Systemic distribution, subcellular localization and differential expression of sphingosine-1-phosphate receptors in benign and malignant human tissues. Five sphingosine-1-phosphate receptors (S1PR): S1PR1, S1PR2, S1PR3, S1PR4 and S1PR5 (S1PR1-5) have been shown to be involved in the proliferation and progression of various cancers. However, none of the S1PRs have been systemically investigated. In this study, we performed immunohistochemistry (IHC) for S1PR1-S1PR5 on different tissues, in order to simultaneously determine the systemic distribution, subcellular localization and expression level of all five S1PRs. We constructed tissue microarrays (TMAs) from 384 formalin-fixed paraffin-embedded (FFPE) blocks containing 183 benign and 201 malignant tissues from 34 human organs/systems. Then we performed IHC for all five S1PRs simultaneously on these TMA slides. The distribution, subcellular localization and expression of each S1PR were determined for each tissue. The data in benign and malignant tissues from the same organ/tissue were then compared using the Student's t-test. In order to reconfirm the subcellular localization of each S1PR as determined by IHC, immunocytochemistry (ICC) was performed on several malignant cell lines. We found that all five S1PRs are widely distributed in multiple human organs/systems. All S1PRs are expressed in both the cytoplasm and nucleus, except S1PR3, whose IHC signals are only seen in the nucleus. Interestingly, the S1PRs are rarely expressed on cellular membranes. Each S1PR is unique in its organ distribution, subcellular localization and expression level in benign and malignant tissues. Among the five S1PRs, S1PR5 has the highest expression level (in either the nucleus or cytoplasm), with S1PR1, 3, 2 and 4 following in descending order. Strong nuclear expression was seen for S1PR1, S1PR3 and S1PR5, whereas S1PR2 and S1PR4 show only weak staining. Four organs/tissues (adrenal gland, liver, brain and colon) show significant differences in IHC scores for the multiple S1PRs (nuclear and/or cytoplasmic), nine (stomach, lymphoid tissues, lung, ovary, cervix, pancreas, skin, soft tissues and uterus) show differences for only one S1PR (cytoplasmic or nuclear), and twenty three organs/tissues show no significant difference in IHC scores for any S1PR (cytoplasmic or nuclear) between benign and malignant changes. This is the first study to evaluate the expression level of all S1PRs in benign and malignant tissues from multiple human organs. This study provides data regarding the systemic distribution, subcellular localization and differences in expression of all five S1PRs in benign and malignant changes for each organ/tissue."	"Sphingosine-1-phosphate induces pro-remodelling response in airway smooth muscle cells. Increased proliferation of airway smooth muscle (ASM) cells leading to hyperplasia and increased ASM mass is one of the most characteristic features of airway remodelling in asthma. A bioactive lipid, sphingosine-1-phosphate (S1P), has been suggested to affect airway remodelling by stimulation of human ASM cell proliferation. To investigate the effect of S1P on signalling and regulation of gene expression in ASM cells from healthy and asthmatic individuals. Airway smooth muscle cells grown from bronchial biopsies of healthy and asthmatic individuals were exposed to S1P. Gene expression was analysed using microarray, real-time PCR and Western blotting. Receptor signalling and function were determined by mRNA knockdown and intracellular calcium mobilization experiments. S1P potently regulated the expression of more than 80 genes in human ASM cells, including several genes known to be involved in the regulation of cell proliferation and airway remodelling (HBEGF, TGFB3, TXNIP, PLAUR, SERPINE1, RGS4). S1P acting through S1P2 and S1P3 receptors activated intracellular calcium mobilization and extracellular signal-regulated and Rho-associated kinases to regulate gene expression. S1P-induced responses were not inhibited by corticosteroids and did not differ significantly between ASM cells from healthy and asthmatic individuals. S1P induces a steroid-resistant, pro-remodelling pathway in ASM cells. Targeting S1P or its receptors could be a novel treatment strategy for inhibiting airway remodelling in asthma."	"Sphingosine-1-phosphate mediates AKT/ERK maintenance of dental pulp homoeostasis. To investigate the cell status of dental pulp cells (DPCs) in a sphingosine-1-phosphate (S1P)-induced microinflammation environment and the possible mechanisms of cell homoeostasis maintenance by S1P. Sphingosine-1-phosphate receptor (S1PR) expression was examined in DPCs within a local S1P-induced microinflammation model established using 1 μmol L(-1) S1P. U0126 [extracellular signal-regulated kinase (ERK) inhibitor], LY294002 (AKT inhibitor) and Y27632 (ROCK inhibitor) were used to inhibit corresponding signalling pathways of DPCs. CCK8 and cell cycle analysis tested cell proliferation. Immunofluorescence staining JC-1 detected changes of mitochondrial membrane potential (ΔΨm). Tests for apoptosis and the apoptosis-related proteins Bax and Bcl-2 were assessed by flow cytometry and western blot analysis, respectively. Expressions of ERK and AKT were evaluated by western blot analysis. The results were analysed using the Student's t-test and the significance level set at P &lt; 0.05. Expressions of S1PR1, S1PR2 and S1PR3 in DPCs differed amongst individuals. DPCs maintained self-homoeostasis in response to S1P-induced microinflammation via S1PRs. During this repair process, ERK, AKT and ROCK had a short-term complementary interaction at 60 min, but then AKT and ERK gradually played decisive roles after 24 h in proliferation enhancement and apoptosis inhibition, respectively (P &gt; 0.05). The AKT-ERK balance may determine whether DPC homoeostasis in S1P-induced microinflammation is maintained by synergistic regulation of cell growth and apoptosis."	"Sphingosine-1-phosphate receptor 2 is critical for follicular helper T cell retention in germinal centers. Follicular helper T (Tfh) cells access the B cell follicle to promote antibody responses and are particularly important for germinal center (GC) reactions. However, the molecular mechanisms of how Tfh cells are physically associated with GCs are incompletely understood. We report that the sphingosine-1-phosphate receptor 2 (S1PR2) gene is highly expressed in a subpopulation of Tfh cells that localizes in GCs. S1PR2-deficient Tfh cells exhibited reduced accumulation in GCs due to their impaired retention. T cells deficient in both S1PR2 and CXCR5 were ineffective in supporting GC responses compared with T cells deficient only in CXCR5. These results suggest that S1PR2 and CXCR5 cooperatively regulate localization of Tfh cells in GCs to support GC responses."	"The role of sphingosine kinase isoforms and receptors S1P1, S1P2, S1P3, and S1P5 in primary, secondary, and recurrent glioblastomas. Sphingosine-1-phosphate (S1P), the corresponding kinases SphK1-2, and receptors S1P1-3 and S1P5 are involved in cell survival and growth. Pathway components are overexpressed in many tumors including glioblastoma. Previous studies showed that the expression of SphK1 influenced survival of glioblastoma patients, yet the roles of SphK1-2 and receptors S1P1-3 and S1P5 have not been investigated in different forms of glioblastoma. Samples from 59 patients (37 males, 22 females, age 55.1 ± 17.1 years) suffering from primary (n = 35), recurrent (n = 18), and secondary (n = 6) glioblastomas were analyzed using quantitative real-time PCR and immunohistochemistry for expression levels of SphK1 and SphK2 and S1P1-3 and S1P5. Sixteen autopsy nontumorous brain specimens were used as controls. Expression data was correlated with clinical data and patient survival. All markers were overexpressed in the glioblastoma specimens compared to the non-neoplastic brain tissue. SphK1 and all S1P receptors were expressed in increasing order of magnitude from primary, up to recurrent and secondary glioblastomas, with values of up to 44-fold compared to normal brain tissue. In contrast, SphK2 levels were highest in primary tumors (25-fold). Expression of the sphingosine signaling pathway components was influenced by radio/radiochemotherapy in distinct ways. Immunohistochemistry for SphK1 and S1P1 confirmed the overexpression in glioblastoma. Uni- and multivariate survival analyses identified S1P5 messenger RNA levels as an independent prognostic factor of survival. The sphingosine pathway is overexpressed in glioma. Its components show distinct expression patterns in the tumor subgroups. S1P5 is identified as an independent prognostic factor in multivariate analysis, and this pathway promises to be a candidate for targeted therapies."	"Autoimmunity: A breakthrough to explain sex bias? NA"	"Interaction of integrin β4 with S1P receptors in S1P- and HGF-induced endothelial barrier enhancement. We previously reported sphingosine 1-phosphate (S1P) and hepatocyte growth factor (HGF) augment endothelial cell (EC) barrier function and attenuate murine acute lung inury (ALI). While the mechanisms underlying these effects are not fully understood, S1P and HGF both transactivate the S1P receptor, S1PR1 and integrin β4 (ITGB4) at membrane caveolin-enriched microdomains (CEMs). In the current study, we investigated the roles of S1PR2 and S1PR3 in S1P/HGF-mediated EC signaling and their associations with ITGB4. Our studies confirmed ITGB4 and S1PR2/3 are recruited to CEMs in human lung EC in response to either S1P (1 µM, 5 min) or HGF (25 ng/ml, 5 min). Co-immunoprecipitation experiments identified an S1P/HGF-mediated interaction of ITGB4 with both S1PR2 and S1PR3. We then employed an in situ proximity ligation assay (PLA) to confirm a direct ITGB4-S1PR3 association induced by S1P/HGF although a direct association was not detectable between S1PR2 and ITGB4. S1PR1 knockdown (siRNA), however, abrogated S1P/HGF-induced ITGB4-S1PR2 associations while there was no effect on ITGB4-S1PR3 associations. Moreover, PLA confirmed a direct association between S1PR1 and S1PR2 induced by S1P and HGF. Finally, silencing of S1PR2 significantly attenuated S1P/HGF-induced EC barrier enhancement as measured by transendothelial resistance while silencing of S1PR3 significantly augmented S1P/HGF-induced barrier enhancement. These results confirm an important role for S1PR2 and S1PR3 in S1P/HGF-mediated EC barrier responses that are associated with their complex formation with ITGB4. Our findings elucidate novel mechanisms of EC barrier regulation that may ultimately lead to new therapeutic targets for disorders characterized by increased vascular permeability including ALI."	"Multiple genome modifications by the CRISPR/Cas9 system in zebrafish. The type II clustered regularly interspaced short palindromic repeats (CRISPR)/CRISPR-associated (Cas) system, which is an adaptive immune system of bacteria, has become a powerful tool for genome editing in various model organisms. Here, we demonstrate multiple genome modifications mediated by CRISPR/Cas9 in zebrafish (Danio rerio). Multiple genes including golden/gol and tyrosinase/tyr, which are involved in pigment formation, and s1pr2 and spns2, which are involved in cardiac development, were disrupted with insertion and/or deletion (indel) mutations introduced by the co-injection of multiple guide RNAs (gRNAs) and the nuclease Cas9 mRNA. We simultaneously observed two distinct phenotypes, such as, the two hearts phenotype and the hypopigmentation of skin melanophores and the retinal pigment epithelium, in the injected F0 embryos. Additionally, we detected the targeted deletion and inversion genes as a 7.1-kb fragment between the two distinct spns2 targeted sites together with indel mutations. Conversely, chromosomal translocations among five target loci were not detected. Therefore, we confirmed that the CRISPR/Cas9-induced indel mutations and a locus-specific deletion were heritable in F1 embryos. To screen founders, we improved heteroduplex mobility assay (HMA) for simultaneously detecting indel mutations in different target loci. The results suggest that the multi-locus HMA is a powerful tool for identification of multiple genome modifications mediated by the CRISPR/Cas9 system. "	"Cholangiocarcinoma development: the resurgence of bile acids. NA"	"Bile acids are nutrient signaling hormones. Bile salts play crucial roles in allowing the gastrointestinal system to digest, transport and metabolize nutrients. They function as nutrient signaling hormones by activating specific nuclear receptors (FXR, PXR, Vitamin D) and G-protein coupled receptors [TGR5, sphingosine-1 phosphate receptor 2 (S1PR2), muscarinic receptors]. Bile acids and insulin appear to collaborate in regulating the metabolism of nutrients in the liver. They both activate the AKT and ERK1/2 signaling pathways. Bile acid induction of the FXR-α target gene, small heterodimer partner (SHP), is highly dependent on the activation PKCζ, a branch of the insulin signaling pathway. SHP is an important regulator of glucose and lipid metabolism in the liver. One might hypothesize that chronic low grade inflammation which is associated with insulin resistance, may inhibit bile acid signaling and disrupt lipid metabolism. The disruption of these signaling pathways may increase the risk of fatty liver and non-alcoholic fatty liver disease (NAFLD). Finally, conjugated bile acids appear to promote cholangiocarcinoma growth via the activation of S1PR2. "	"Enhanced sphingosine-1-phosphate receptor 2 expression underlies female CNS autoimmunity susceptibility. Multiple sclerosis (MS) is an inflammatory disease of the CNS that is characterized by BBB dysfunction and has a much higher incidence in females. Compared with other strains of mice, EAE in the SJL mouse strain models multiple features of MS, including an enhanced sensitivity of female mice to disease; however, the molecular mechanisms that underlie the sex- and strain-dependent differences in disease susceptibility have not been described. We identified sphingosine-1-phosphate receptor 2 (S1PR2) as a sex- and strain-specific, disease-modifying molecule that regulates BBB permeability by destabilizing adherens junctions. S1PR2 expression was increased in disease-susceptible regions of the CNS of both female SJL EAE mice and female patients with MS compared with their male counterparts. Pharmacological blockade or lack of S1PR2 signaling decreased EAE disease severity as the result of enhanced endothelial barrier function. Enhanced S1PR2 signaling in an in vitro BBB model altered adherens junction formation via activation of Rho/ROCK, CDC42, and caveolin endocytosis-dependent pathways, resulting in loss of apicobasal polarity and relocation of abluminal CXCL12 to vessel lumina. Furthermore, S1PR2-dependent BBB disruption and CXCL12 relocation were observed in vivo. These results identify a link between S1PR2 signaling and BBB polarity and implicate S1PR2 in sex-specific patterns of disease during CNS autoimmunity. "	"Sphingosine-1-phosphate receptors respond differently to early myocardial ischemia and ischemia-reperfusion in vivo. Sphingosine-1-phosphate (S1P) has been demonstrated to be a mediator and marker of heart diseases. We hypothesized that the expression of S1P receptors is involved in the S1P-mediated cardioprotection in vivo and may serve as a biomarker of ischemic heart disease. In vivo models of myocardial ischemia (MI) and ischemia-reperfusion (IR) were established by ligation of the left anterior descending artery (LAD) of rat heart, the mRNA expressions of S1PR1-3 were detected using real time PCR at different time intervals after ischemia (LAD for 15 min, 30 min, and 1 h) and IR. The results showed that mRNA expression of S1PR3, but not S1PR1 and S1PR2, increased greatly after IR. No statistical difference was found in any of the three S1P receptors after MI within 1 h. Regarding the studies of lipid concentration changes in myocardiopathy, we conclude that S1P receptors are not early response biomarkers for MI. There are different mechanisms when S1P plays a protection role in heart during MI and IR. The cooperation of lipid content and S1P receptor expression appears to form a regulation network during MI and IR. "	"Sphingosine 1-phosphate (S1P) induced interleukin-8 (IL-8) release is mediated by S1P receptor 2 and nuclear factor κB in BEAS-2B cells. The airway epithelium may release pro-inflammatory cytokines and chemokines in the asthmatic airway. Sphingosine 1-phosphate (S1P) is a bioactive lipid, increased in the airways of asthmatics, that may trigger the release of the potent neutrophil chemoattractant Interleukin-8 (IL-8) by epithelial cells. S1P is a ligand for 5 G protein-coupled receptors, S1PR1-5. We wished to explore the mechanisms of S1P induced IL-8 secretion with regard to the receptor(s) and downstream signaling events involved. Our results indicate that S1P induced IL-8 release is mediated by S1PR2 and the transcription factor NF-κB. Since the Epidermal Growth Factor Receptor (EGFR) and reactive oxygen species (ROS) have been implicated in IL-8 release in response to activation of other G protein-coupled receptors, we examined their importance in S1P induced IL-8 release and established that they are not involved. This study reveals S1PR2 and NF-κB as potential therapeutic targets in neutrophilic airway diseases such as severe asthma."	"Conjugated bile acids promote cholangiocarcinoma cell invasive growth through activation of sphingosine 1-phosphate receptor 2. Cholangiocarcinoma (CCA) is an often fatal primary malignancy of the intra- and extrahepatic biliary tract that is commonly associated with chronic cholestasis and significantly elevated levels of primary and conjugated bile acids (CBAs), which are correlated with bile duct obstruction (BDO). BDO has also recently been shown to promote CCA progression. However, whereas there is increasing evidence linking chronic cholestasis and abnormal bile acid profiles to CCA development and progression, the specific mechanisms by which bile acids may be acting to promote cholangiocarcinogenesis and invasive biliary tumor growth have not been fully established. Recent studies have shown that CBAs, but not free bile acids, stimulate CCA cell growth, and that an imbalance in the ratio of free to CBAs may play an important role in the tumorigenesis of CCA. Also, CBAs are able to activate extracellular signal-regulated kinase (ERK)1/2- and phosphatidylinositol-3-kinase/protein kinase B (AKT)-signaling pathways through sphingosine 1-phosphate receptor 2 (S1PR2) in rodent hepatocytes. In the current study, we demonstrate S1PR2 to be highly expressed in rat and human CCA cells, as well as in human CCA tissues. We further show that CBAs activate the ERK1/2- and AKT-signaling pathways and significantly stimulate CCA cell growth and invasion in vitro. Taurocholate (TCA)-mediated CCA cell proliferation, migration, and invasion were significantly inhibited by JTE-013, a chemical antagonist of S1PR2, or by lentiviral short hairpin RNA silencing of S1PR2. In a novel organotypic rat CCA coculture model, TCA was further found to significantly increase the growth of CCA cell spheroidal/&quot;duct-like&quot; structures, which was blocked by treatment with JTE-013. Our collective data support the hypothesis that CBAs promote CCA cell-invasive growth through S1PR2."	"Nogo limits neural plasticity and recovery from injury. The expression of Nogo-A and the receptor NgR1 limits the recovery of adult mammals from central nervous system injury. Multiple studies have demonstrated efficacy from targeting this pathway for functional recovery and neural repair after spinal cord trauma, ischemic stroke, optic nerve injury and models of multiple sclerosis. Recent molecular studies have added S1PR2 as a receptor for the amino terminal domain of Nogo-A, and have demonstrated shared components for Nogo-A and CSPG signaling as well as novel Nogo antagonists. It has been recognized that neural repair involves plasticity, sprouting and regeneration. A physiologic role for Nogo-A and NgR1 has been documented in the restriction of experience-dependent plasticity with maturity, and the stability of synaptic, dendritic and axonal anatomy. "	"Sphingosylphosphorylcholine induces α-smooth muscle actin expression in human lung fibroblasts and fibroblast-mediated gel contraction via S1P2 receptor and Rho/Rho-kinase pathway. Chronic airway diseases like COPD and asthma are usually accompanied with airway fibrosis. Myofibroblasts, which are characterized by expression of smooth muscle actin (α-SMA), play an important role in a variety of developmental and pathological processes, including fibrosis and wound healing. Sphingosylphosphorylcholine (SPC), a sphingolipid metabolite, has been implicated in many physiological and pathological conditions. The current study tested the hypothesis that SPC may modulate tissue remodeling by affecting the expression of α-SMA in human fetal lung fibroblast (HFL-1) and fibroblast mediated gel contraction. The results show that SPC stimulates α-SMA expression in HFL-1 and augments HFL-1 mediated collagen gel contraction in a time- and concentration-dependent manner. The α-SMA protein expression and fibroblast gel contraction induced by SPC was not blocked by TGF-β1 neutralizing antibody. However, it was significantly blocked by S1P2 receptor antagonist JTE-013, the Rho-specific inhibitor C3 exoenzyme, and a Rho-kinase inhibitor Y-27632. These findings suggest that SPC stimulates α-SMA protein expression and HFL-1 mediated collagen gel contraction via S1P2 receptor and Rho/Rho kinase pathway, and by which mechanism, SPC may be involved in lung tissue remodeling. "	"Role of Ca2+ -dependent and Ca2+ -sensitive mechanisms in sphingosine 1-phosphate-induced constriction of isolated porcine retinal arterioles in vitro. Although sphingosine 1-phosphate (S1P), a bioactive lipid derived from activated platelets, has a variety of physiologic effects on vessels, no reports have described the effect of S1P on the retinal circulation. We examined the effect and underlying mechanism of the vasomotor action of S1P on porcine retinal arterioles. The porcine retinal arterioles were isolated, cannulated, and pressurized without flow for in vitro study. S1P-induced diameter changes were recorded using videomicroscopic techniques. S1P elicited concentration-dependent (1 nM-10 μM) vasoconstriction of the retinal arterioles that was abolished by the S1P receptor 2 (S1PR2) antagonist JTE-013. S1P-induced vasoconstriction was abolished by the Rho kinase (ROCK) inhibitor H-1152 and was inhibited partly by the protein kinase C (PKC) inhibitor Gö-6983. The inhibition of phospholipase C by U73122 and L-type voltage-operated calcium channels (L-VOCCs) by nifedipine inhibited S1P-induced vasoconstriction; a combination of both inhibitors abolished S1P-induced vasoconstriction. Furthermore, inhibition of myosin light chain kinase (MLCK) by ML-9 significantly blocked S1P-induced vasoconstriction; further coadministration of ML-9 with H-1152 or Gö-6983 abolished S1P-induced vasoconstriction. The current data suggest that S1P elicits vasoconstriction of the retinal arterioles via S1PR2 in vascular smooth muscle cells and this vasoconstriction may be mediated by the Ca2+ -sensitive pathway via activation of PKC leading to activation of ROCK and the Ca2+ -dependent pathway via activation of L-VOCCs resulting in activation of MLCK."	"Sphingosine kinase 2 prevents the nuclear translocation of sphingosine 1-phosphate receptor-2 and tyrosine 416 phosphorylated c-Src and increases estrogen receptor negative MDA-MB-231 breast cancer cell growth: The role of sphingosine 1-phosphate receptor-4. We demonstrate that pre-treatment of estrogen receptor negative MDA-MB-231 breast cancer cells containing ectopically expressed HA-tagged sphingosine 1-phosphate receptor-2 (S1P2) with the sphingosine kinase 1/2 inhibitor SKi (2-(p-hydroxyanilino)-4-(p-chlorophenyl)thiazole) or the sphingosine kinase 2 selective inhibitor (R)-FTY720 methyl ether (ROMe) or sphingosine kinase 2 siRNA induced the translocation of HA-tagged S1P2 and Y416 phosphorylated c-Src to the nucleus of these cells. This is associated with reduced growth of HA-tagged S1P2 over-expressing MDA-MB-231 cells. Treatment of HA-S1P2 over-expressing MDA-MB-231 cells with the sphingosine 1-phosphate receptor-4 (S1P4) antagonist CYM50367 or with S1P4 siRNA also promoted nuclear translocation of HA-tagged S1P2. These findings identify for the first time a signaling pathway in which sphingosine 1-phosphate formed by sphingosine kinase 2 binds to S1P4 to prevent nuclear translocation of S1P2 and thereby promote the growth of estrogen receptor negative breast cancer cells. "	"The sphingolipid receptor S1PR2 is a receptor for Nogo-a repressing synaptic plasticity. Nogo-A is a membrane protein of the central nervous system (CNS) restricting neurite growth and synaptic plasticity via two extracellular domains: Nogo-66 and Nogo-A-Δ20. Receptors transducing Nogo-A-Δ20 signaling remained elusive so far. Here we identify the G protein-coupled receptor (GPCR) sphingosine 1-phosphate receptor 2 (S1PR2) as a Nogo-A-Δ20-specific receptor. Nogo-A-Δ20 binds S1PR2 on sites distinct from the pocket of the sphingolipid sphingosine 1-phosphate (S1P) and signals via the G protein G13, the Rho GEF LARG, and RhoA. Deleting or blocking S1PR2 counteracts Nogo-A-Δ20- and myelin-mediated inhibition of neurite outgrowth and cell spreading. Blockade of S1PR2 strongly enhances long-term potentiation (LTP) in the hippocampus of wild-type but not Nogo-A(-/-) mice, indicating a repressor function of the Nogo-A/S1PR2 axis in synaptic plasticity. A similar increase in LTP was also observed in the motor cortex after S1PR2 blockade. We propose a novel signaling model in which a GPCR functions as a receptor for two structurally unrelated ligands, a membrane protein and a sphingolipid. Elucidating Nogo-A/S1PR2 signaling platforms will provide new insights into regulation of synaptic plasticity. "	"Overexpression of autotaxin, a lysophosphatidic acid-producing enzyme, enhances cardia bifida induced by hypo-sphingosine-1-phosphate signaling in zebrafish embryo. Lysophosphatidic acid (LPA) and sphingosine-1-phosphate (S1P) are second-generation lysophospholipid mediators that exert multiple biological functions through their own cognate receptors. They are both present in the blood stream, activate receptors with similar structures (endothelial differentiation gene receptors), have similar roles in the vasculature and are vasoactive. However, it is unclear whether these lysophospholipid mediators cross-talk downstream of each receptor. Here, we provide in vivo evidence that LPA signaling counteracted S1P signaling. When autotaxin (Atx), an LPA-producing enzyme, was overexpressed in zebrafish embryos by injecting atx mRNA, the embryos showed cardia bifida, a phenotype induced by down-regulation of S1P signaling. A similar cardiac phenotype was not induced when catalytically inactive Atx was introduced. The cardiac phenotype was synergistically enhanced when antisense morpholino oligonucleotides (MO) against S1P receptor (s1pr2/mil) or S1P transporter (spns2) was introduced together with atx mRNA. The Atx-induced cardia bifida was prominently suppressed when embryos were treated with an lpar1 receptor antagonist, Ki16425, or with MO against lpar1. These results provide the first in vivo evidence of cross-talk between LPA and S1P signaling. "	"The influence of sphingosine-1-phosphate receptor antagonists on gentamicin-induced hair cell loss of the rat cochlea. Sphingosine-1-phosphate (S1P) is a sphingolipid metabolite that regulates various critical biological processes, such as cell proliferation, survival, migration, and angiogenesis. The action of S1P is exerted by its binding to 5 specific G protein-coupled S1P receptors (S1PR), S1PR1-S1PR5. Aminoglycoside antibiotics including gentamicin induce cochlear hair cell loss and sensorineural hearing loss. Apoptotic cell death is considered to play a key role in this type of cochlear injury. S1P acts as a cochlear protectant against gentamicin ototoxicity. In the present study, expression of S1PRs in the cochlea was examined. In addition, the effects of S1PR antagonists on gentamicin ototoxicity were investigated using tissue culture techniques. Cochleas were dissected from Sprague-Dawley rats on postnatal days 3-5. Basal turn organ of Corti explants were exposed to 35 μM gentamicin for 48 h with or without S1PR antagonists. S1PR(1-3) were expressed in the organ of Corti and spiral ganglion. The S1PR2 antagonist increased gentamicin-induced hair cell loss, while the S1PR1 and S1PR3 antagonists did not affect gentamicin ototoxicity. These results indicate the possibility that S1P act as a cochlear protectant against gentamicin ototoxicity via activation of S1PR2."	"Gene miles-apart is required for formation of otic vesicle and hair cells in zebrafish. Hearing loss is a serious burden to physical and mental health worldwide. Aberrant development and damage of hearing organs are recognized as the causes of hearing loss, the molecular mechanisms underlining these pathological processes remain elusive. Investigation of new molecular mechanisms involved in proliferation, differentiation, migration and maintenance of neuromast primordium and hair cells will contribute to better understanding of hearing loss pathology. This knowledge will enable the development of protective agents and mechanism study of drug ototoxicity. In this study, we demonstrate that the zebrafish gene miles-apart, a homolog of sphingosine-1-phosphate receptor 2 (s1pr2) in mammals, has an important role in the development of otic vesicle, neuromasts and survival of hair cells. Whole-mount in situ hybridization of embryos showed that miles-apart expression occurred mainly in the encephalic region and the somites at 24 h.p.f. (hour post fertilization), in the midbrain/hindbrain boundary, the brainstem and the pre-neuromast of lateral line at 48 h.p.f. in a strict spatiotemporal regulation. Both up- and downregulation of miles-apart led to abnormal otoliths and semicircular canals, excess or few hair cells and neuromasts, and their disarranged depositions in the lateral lines. Miles-apart (Mil) dysregulation also caused abnormal expression of hearing-associated genes, including hmx2, fgf3, fgf8a, foxi1, otop1, pax2.1 and tmieb during zebrafish organogenesis. Moreover, in larvae miles-apart gene knockdown significantly upregulated proapoptotic gene zBax2 and downregulated prosurvival gene zMcl1b; in contrast, the level of zBax2 was decreased and of zMcl1b enhanced by miles-apart overexpression. Collectively, Mil activity is linked to organization and number decision of hair cells within a neuromast, also to deposition of neuromasts and formation of otic vesicle during zebrafish organogenesis. At the larva stage, Mil as an upstream regulator of bcl-2 gene family has a role in protection of hair cells against apoptosis by promoting expression of prosurvival gene zMcl1b and suppressing proapoptotic gene zBax2."	"Multifunctional and potent roles of the 3-hydroxypropoxy group provide eldecalcitol's benefit in osteoporosis treatment. Eldecalcitol (1α,25-dihydroxy-2β-(3-hydroxypropoxy)vitamin D3, [developing code: ED-71]), a new osteoporosis treatment drug that was recently approved in Japan, is a best-in-class drug in the class of calcitriol (1α,25-dihydroxyvitamin D3) and its prodrug alfacalcidol (1α-hydroxyvitamin D3), which have been used to treat osteoporosis for 30 years. In a comparative Phase III clinical study with alfacalcidol in osteoporosis patients, eldecalcitol demonstrated superior efficacy in the endpoints of increment of bone mineral density and reduction of bone fracture with equivalent safety to alfacalcidol. Eldecalcitol was discovered by searching synthetic analogs of calcitriol and alfacalcidol, and its main structural characteristic is having the 3-hydroxypropoxy group at the 2β-position. This review discusses why introducing the group leads to excellent efficacy and safety in osteoporosis treatment and elucidates the functional roles of the 3-hydroxypropoxy group. Briefly, the functional roles of the group are, first, realizing the metabolism switching in which eldecalcitol shows resistance to CYP24A1 and is metabolized in the liver; second, increasing the affinity to the serum carrier protein and prolonging the half-life to 53h; and third, stabilizing the eldecalcitol-receptor complex. Taken together, these functional roles of the 3-hydroxypropoxy group are beneficial in osteoporosis treatment. This review attempts to give a detailed account of the mode of action of eldecalcitol by clarifying these multifunctional roles of the 3-hydroxypropoxy group from the medicinal chemist's perspective. "	"Sphingosine 1-phosphate (S1P) induces COX-2 expression and PGE2 formation via S1P receptor 2 in renal mesangial cells. Understanding the mechanisms of sphingosine 1-phosphate (S1P)-induced cyclooxygenase (COX)-2 expression and prostaglandin E2 (PGE2) formation in renal mesangial cells may provide potential therapeutic targets to treat inflammatory glomerular diseases. Thus, we evaluated the S1P-dependent signaling mechanisms which are responsible for enhanced COX-2 expression and PGE2 formation in rat mesangial cells under basal conditions. Furthermore, we investigated whether these mechanisms are operative in the presence of angiotensin II (Ang II) and of the pro-inflammatory cytokine interleukin-1β (IL-1β). Treatment of rat and human mesangial cells with S1P led to concentration-dependent enhanced expression of COX-2. Pharmacological and molecular biology approaches revealed that the S1P-dependent increase of COX-2 mRNA and protein expression was mediated via activation of S1P receptor 2 (S1P2). Further, inhibition of Gi and p42/p44 MAPK signaling, both downstream of S1P2, abolished the S1P-induced COX-2 expression. In addition, S1P/S1P2-dependent upregulation of COX-2 led to significantly elevated PGE2 levels, which were further potentiated in the presence of Ang II and IL-1β. A functional consequence downstream of S1P/S1P2 signaling is mesangial cell migration that is stimulated by S1P. Interestingly, inhibition of COX-2 by celecoxib and SC-236 completely abolished the migratory response. Overall, our results demonstrate that extracellular S1P induces COX-2 expression via activation of S1P2 and subsequent Gi and p42/p44 MAPK-dependent signaling in renal mesangial cells leading to enhanced PGE2 formation and cell migration that essentially requires COX-2. Thus, targeting S1P/S1P2 signaling pathways might be a novel strategy to treat renal inflammatory diseases. "	"Sphingosine 1-phosphate receptors negatively regulate collagen type I/III expression in human bone marrow-derived mesenchymal stem cell. Collagen is the most abundant structural protein in mammals and is expressed in various tissues. In recent years, sphingosine 1-phosphate receptors (S1PRs) have been proven to play an important role in the regulation of collagen expression. Our previous studies reported that S1PRs are involved in TGF-β1-induced collagen expression via up-regulating S1PR1/3 in mouse bone marrow-derived mesenchymal stem cells (BMSCs), and result in experimental mouse liver fibrogenesis. But it remains unclear whether this process happens in human bone marrow-derived mesenchymal stem cells (hMSCs). In this study, we provide evidences that S1PR1/3, but not S1PR2, negatively regulate the expression of collagen in hMSCs using cellular and molecular approaches in vitro. We find that treatment of hMSCs with TGF-β1 up-regulated collagen expression in a dose- and time-dependent manner. Meanwhile, TGF-β1 inhibited the expression of S1PR1/3, but not S1PR2, in hMSCs in a time-dependent manner. Furthermore, either selective knock-down of S1PR1 or silencing S1PR3 induced collagen α1(I) and collagen α1(III) expression in hMSCs. In contrast, inhibition of S1PR2 by siRNA had no effects on the expression of collagen. Altogether, all these findings demonstrated that collagen expression was negatively regulated by S1PR1 and S1PR3 in hMSCs. This study highlights the differences between hMSCs and mouse BMSCs, provides a new regulation mechanism for collagen expression, and points out the risk of utilizing hMSCs in clinical applications."	"Anti-interleukin-6 receptor antibody prevents systemic bone mass loss via reducing the number of osteoclast precursors in bone marrow in a collagen-induced arthritis model. Systemic bone loss is a hallmark of rheumatoid arthritis (RA). Inflammatory cytokines such as interleukin (IL)-6 promote bone resorption by osteoclasts. Sphingosine-1-phosphate (S1P) controls the migration of osteoclast precursor cells (OCPs) between the blood and bone marrow, in part via S1P receptors (S1PR1 and S1PR2) expressed on the surface of OCPs. OCPs (CD11b(+) Gr-1(low+med) ) isolated from bone marrow of DBA/1J mice were stimulated with IL-6. S1P-directed chemotaxis of OCPs was evaluated using a transwell plate. mRNA expression of S1PR1 and S1PR2 was measured. DBA/1J mice were immunized with bovine type II collagen (days 0 and 21) and anti-mouse IL-6 receptor antibody (MR16-1) was administered on days 0 and/or 21. Trabecular bone volume was analysed using micro-computed tomography. The percentage of OCPs in tibial bone marrow and S1PR1 and S1PR2 mRNA expression in OCPs were measured. IL-6 stimulation significantly decreased S1P-directed chemotaxis of OCPs. IL-6 induced S1PR2 mRNA expression, but not S1PR1 mRNA expression, in OCPs. Bone volume was significantly lower in arthritic mice than in non-arthritic control mice on day 35. Treatment of immunized mice with MR16-1 significantly inhibited bone loss. In MR16-1-treated mice, the percentage of OCPs and expression of S1PR2 mRNA was each decreased compared with arthritic mice on day 14, but not on day 35. IL-6 increased the number of OCPs in tibial bone marrow via up-regulating S1PR2, thus playing a crucial role in systemic bone loss induced by inflammation. "	"Sphingosine-1-phosphate receptor 2 protects against anaphylactic shock through suppression of endothelial nitric oxide synthase in mice. Sphingosine-1-phosphate receptor 2 (S1P(2)) is expressed in vascular endothelial cells (ECs). However, the role of S1P(2) in vascular barrier integrity and anaphylaxis is not well understood. Endothelial nitric oxide synthase (eNOS) generates nitric oxide to mediate vascular leakage, compromising survival in patients with anaphylaxis. We recently observed that endothelial S1P(2) inhibits Akt, an activating kinase of eNOS. We tested the hypothesis that endothelial S1P(2) might suppress eNOS, exerting a protective effect against endothelial barrier disruption and anaphylaxis. Mice deficient in S1P(2) and eNOS underwent antigen challenge or platelet-activating factor (PAF) injection. Analyses were performed to examine vascular permeability and the underlying mechanisms. S1pr2 deletion augmented vascular leakage and lethality after either antigen challenge or PAF injection. PAF injection induced activation of Akt and eNOS in the aortas and lungs of S1pr2-null mice, which were augmented compared with values seen in wild-type mice. Consistently, PAF-induced increase in cyclic guanosine monophosphate levels in the aorta was enhanced in S1pr-null mice. Genetic Nos3 deletion or pharmacologic eNOS blockade protected S1pr2-null mice from aggravation of barrier disruption after antigen challenge and PAF injection. ECs isolated from S1pr2-null mice exhibited greater stimulation of Akt and eNOS, with enhanced nitric oxide production in response to sphingosine-1-phosphate or PAF, compared with that seen in wild-type ECs. Moreover, S1pr2-deficient ECs showed more severe disassembly of adherens junctions with augmented S-nitrosylation of β-catenin in response to PAF, which was restored by pharmacologic eNOS blockade. S1P(2) diminishes harmful robust eNOS stimulation and thereby attenuates vascular barrier disruption, suggesting potential usefulness of S1P(2) agonists as novel therapeutic agents for anaphylaxis."	"Functional cooperation of spns2 and fibronectin in cardiac and lower jaw development. The lipid mediator sphingosine-1-phosphate (S1P) is a regulator of cardiac development in zebrafish, as disruption of its receptor s1pr2 or transporter spns2 causes migration defects in cardiac progenitors. To examine the genetic interaction of S1P signaling and the cell adhesion molecule fibronectin, we have established a fn;spns2 double mutant. Cardiac migration defects in fn;spns2 mutants were more severe than those in fn or spns2 mutants. We further found that the lower jaw morphology was disorganized in the fn;spns2 mutant, while it had a slightly shortened anterior-posterior distance in the ventral pharyngeal arch in fn and spns2 mutants relative to wild type. Knockdown of fn in the s1pr2 mutant, but not in the s1pr1 mutant, resulted in severe defects in cardiac migration and ventral pharyngeal arch arrangement. Further, in the background of the fn mutant, knockdown of endothelin receptor A (ednra), which was downregulated in the spns2 mutant, caused pharyngeal defects resembling those in the fn;spns2 mutant. These results strongly suggest that Spns2-S1PR2 signaling and fibronectin cooperatively regulate both cardiac and lower jaw development in zebrafish. "	"Apoptotic cells enhance sphingosine-1-phosphate receptor 1 dependent macrophage migration. The lipid sphingosine-1-phosphate (S1P) is a chemokine for a variety of immune cells including lymphocytes and monocytes. Migration toward S1P is determined by the S1P receptor expression profile, with S1PR1/3 (where S1PR is S1P receptor) stimulating and S1PR2 attenuating migration. However, the impact and physiological significance of S1P-induced migration of macrophages is largely unclear. We observed that alternative activation of human macrophages, by IL-4 or apoptotic cells (ACs), enhanced S1PR1 expression. Moreover, ACs provoked macrophage migration toward S1P in an S1PR1-dependent manner as confirmed by pharmacological receptor inhibition and S1PR1-deficient murine macrophages. In a mouse model of resolving peritoneal inflammation, F4/80-driven deletion of S1PR1 reduced postinflammatory macrophage emigration from inflammatory sites. S1PR1 expression on macrophages might, therefore, be relevant for restoring tissue homeostasis during the resolution of inflammation. "	"Low temperature mitigates cardia bifida in zebrafish embryos. The coordinated migration of bilateral cardiomyocytes and the formation of the cardiac cone are essential for heart tube formation. We investigated gene regulatory mechanisms involved in myocardial migration, and regulation of the timing of cardiac cone formation in zebrafish embryos. Through screening of zebrafish treated with ethylnitrosourea, we isolated a mutant with a hypomorphic allele of mil (s1pr2)/edg5, called s1pr2(as10) (as10). Mutant embryos with this allele expressed less mil/edg5 mRNA and exhibited cardia bifida prior to 28 hours post-fertilization. Although the bilateral hearts of the mutants gradually fused together, the resulting formation of two atria and one tightly-packed ventricle failed to support normal blood circulation. Interestingly, cardia bifida of s1pr2(as10) embryos could be rescued and normal circulation could be restored by incubating the embryos at low temperature (22.5°C). Rescue was also observed in gata5 and bon cardia bifida morphants raised at 22.5 °C. The use of DNA microarrays, digital gene expression analyses, loss-of-function, as well as mRNA and protein rescue experiments, revealed that low temperature mitigates cardia bifida by regulating the expression of genes encoding components of the extracellular matrix (fibronectin 1, tenascin-c, tenascin-w). Furthermore, the addition of N-acetyl cysteine (NAC), a reactive oxygen species (ROS) scavenger, significantly decreased the effect of low temperature on mitigating cardia bifida in s1pr2(as10) embryos. Our study reveals that temperature coordinates the development of the heart tube and somitogenesis, and that extracellular matrix genes (fibronectin 1, tenascin-c and tenascin-w) are involved."	"Inhibition of sphingosine-1-phosphate lyase rescues sphingosine kinase-1-knockout phenotype following murine cardiac arrest. To test the role of sphingosine-1-phosphate (S1P) signaling system in the in vivo setting of resuscitation and survival after cardiac arrest. A mouse model of potassium-induced cardiac arrest and resuscitation was used to test the importance of S1P homeostasis in resuscitation and survival. C57BL/6 and sphingosine kinase-1 knockout (SphK1-KO) female mice were arrested for 8 min then subjected to 5 minute CPR with epinephrine bolus given at 90s after the beginning of CPR. Animal survival was monitored for 4h post-resuscitation. Upregulation of tissue and circulatory S1P levels were achieved via inhibition of S1P lyase by 2-acetyl-5-tetrahydroxybutyl imidazole (THI). Plasma and heart tissue S1P and ceramide levels were quantified by targeted ESI-LC/MS/MS. Lack of SphK1 and low tissue/circulatory S1P levels in SphK1-KO mice led to poor animal resuscitation after cardiac arrest and to impaired survival post-resuscitation. Inhibition of S1P lyase in SphK1-KO mice drastically improved animal resuscitation and survival. Improved resuscitation and survival of THI-treated SphK1-KO mice were better correlated with cardiac dihydro-S1P (DHS1P) than S1P levels. The lack of SphK1 and the inhibition of S1P lyase by THI were accompanied by modulation in cardiac S1PR1 and S1PR2 expression and by selective changes in plasma N-palmitoyl- and N-behenoyl-ceramide levels. Our data provide evidence for the crucial role for SphK1 and S1P signaling system in resuscitation and survival after cardiac arrest, which may form the basis for development of novel therapeutic strategy to support resuscitation and long-term survival of cardiac arrest patients."	"Sphingosine-1-phosphate receptor 2. Sphingosine-1-phosphate (S1P) is a potent bioactive sphingolipid involved in cell proliferation, angiogenesis, inflammation and malignant transformation among other functions. S1P acts either directly on intracellular targets or activates G protein-coupled receptors, specifically five S1P receptors (S1PRs). The identified S1PRs differ in cellular and tissue distribution, and each is coupled to specific G proteins, which mediate unique functions. Here, we describe functional characteristics of all five receptors, emphasizing S1PR2, which is critical in the immune, nervous, metabolic, cardiovascular, musculoskeletal, and renal systems. This review also describes the role of this receptor in tumor growth and metastasis and suggests potential therapeutic avenues that exploit S1PR2. "	"A sphingosine 1-phosphate receptor 2 selective allosteric agonist. Molecular probe tool compounds for the Sphingosine 1-phosphate receptor 2 (S1PR2) are important for investigating the multiple biological processes in which the S1PR2 receptor has been implicated. Amongst these are NF-κB-mediated tumor cell survival and fibroblast chemotaxis to fibronectin. Here we report our efforts to identify selective chemical probes for S1PR2 and their characterization. We employed high throughput screening to identify two compounds which activate the S1PR2 receptor. SAR optimization led to compounds with high nanomolar potency. These compounds, XAX-162 and CYM-5520, are highly selective and do not activate other S1P receptors. Binding of CYM-5520 is not competitive with the antagonist JTE-013. Mutation of receptor residues responsible for binding to the zwitterionic headgroup of sphingosine 1-phosphate (S1P) abolishes S1P activation of the receptor, but not activation by CYM-5520. Competitive binding experiments with radiolabeled S1P demonstrate that CYM-5520 is an allosteric agonist and does not displace the native ligand. Computational modeling suggests that CYM-5520 binds lower in the orthosteric binding pocket, and that co-binding with S1P is energetically well tolerated. In summary, we have identified an allosteric S1PR2 selective agonist compound. "	"Hepatopoietin Cn reduces ethanol-induced hepatoxicity via sphingosine kinase 1 and sphingosine 1-phosphate receptors. The hepatic growth factor hepatopoietin Cn (HPPCn) prevents liver injury induced by carbon tetrachloride in rats. Sphingosine 1-phosphate (S1P) is a bioactive sphingolipid produced by sphingosine kinase (SphK). S1P and S1P receptors (S1PRs) are involved in liver fibrogenesis and oxidative injury. This work sought to understand the mechanism by which SphK/S1P/S1PRs are involved in the protective effects of HPPCn on ethanol-induced liver injury and fibrosis. Transgenic mice with liver-specific overexpression of HPPCn (HPPCn(liver) (+/+)) were generated. Two ethanol feeding protocols were used to assess the protective effect of HPPCn on acute and chronic liver injury in mice. Specific inhibitors of S1PR1, S1PR2 and S1PR3 and siRNA were used to examine the roles of S1PRs in hepatic stellate cell (HSC) activation and hepatocyte apoptosis. Increased HPPCn expression in transgenic mice attenuated fibrosis induced by ethanol and carbon tetrachloride (CCl4). Treatment with recombinant human HPPCn prevented human hepatocyte apoptosis and HSC activation. JTE-013 or S1PR2-siRNA attenuated the effect of HPPCn on HSC activation induced by tumour necrosis factor-α (TNF-α). Consistent with the effect of N,N-dimethylsphingosine (DMS), suramin or S1PR3-siRNA treatment blocked HPPCn-induced Erk1/2 phosphorylation in human hepatocytes. This study demonstrated that HPPCn attenuated oxidative injury and fibrosis induced by ethanol feeding and that the SphK1/S1P/S1PRs signalling pathway contributes to the protective effect of HPPCn on hepatocyte apoptosis and HSC activation."	"Sphingosine kinase-1 inhibition protects primary rat hepatocytes against bile salt-induced apoptosis. Sphingosine kinases (SphKs) and their product sphingosine-1-phosphate (S1P) have been reported to regulate apoptosis and survival of liver cells. Cholestatic liver diseases are characterized by cytotoxic levels of bile salts inducing liver injury. It is unknown whether SphKs and/or S1P play a role in this pathogenic process. Here, we investigated the putative involvement of SphK1 and S1P in bile salt-induced cell death in hepatocytes. Primary rat hepatocytes were exposed to glycochenodeoxycholic acid (GCDCA) to induce apoptosis. GCDCA-exposed hepatocytes were co-treated with S1P, the SphK1 inhibitor Ski-II and/or specific antagonists of S1P receptors (S1PR1 and S1PR2). Apoptosis and necrosis were quantified. Ski-II significantly reduced GCDCA-induced apoptosis in hepatocytes (-70%, P&lt;0.05) without inducing necrosis. GCDCA increased the S1P levels in hepatocytes (P&lt;0.05). GCDCA induced [Ca(2+)] oscillations in hepatocytes and co-treatment with the [Ca(2+)] chelator BAPTA repressed GCDCA-induced apoptosis. Ski-II inhibited the GCDCA-induced intracellular [Ca(2+)] oscillations. Transcripts of all five S1P receptors were detected in hepatocytes, of which S1PR1 and S1PR2 appear most dominant. Inhibition of S1PR1, but not S1PR2, reduced GCDCA-induced apoptosis by 20%. Exogenous S1P also significantly reduced GCDCA-induced apoptosis (-50%, P&lt;0.05), however, in contrast to the GCDCA-induced (intracellular) SphK1 pathway, this was dependent on S1PR2 and not S1PR1. Our results indicate that SphK1 plays a pivotal role in mediating bile salt-induced apoptosis in hepatocytes in part by interfering with intracellular [Ca(2+)] signaling and activation of S1PR1. "	"Sphingosine-1-phosphate receptor-2 mediated NFκB activation contributes to tumor necrosis factor-α induced VCAM-1 and ICAM-1 expression in endothelial cells. Sphingosine-1-phosphate (S1P) regulates a wide array of biological functions in endothelial cells. We previously showed that S1P receptor subtype 2 (S1P2) is significantly up-regulated in the atherosclerotic endothelium (J. Biol. Chem. 283:30363, 2008). In this study, we investigated the roles of S1P2-mediated signaling in the proinflammatory responses of endothelial cells. Treatment with tumor necrosis factor-α (TNFα), a proinflammatory cytokine, increased the expression of S1P2 receptors in endothelial cells. TNFα treatment also enhanced sphingosine kinase 1 expression and increased S1P production. Pharmacological inhibition or knockdown of S1P2 receptors completely abrogated the TNFα-induced VCAM-1 (vascular cell adhesion molecule 1) and ICAM-1 (intercellular adhesion molecule 1) expression in endothelial cells. In contrast, pharmacological inhibition or knockdown of other S1P receptor subtypes had no effect on the TNFα-stimulated ICAM-1 and VCAM-1 expression. Moreover, ectopic expression of S1P2 receptors increased VCAM-1 and ICAM-1 expression in endothelial cells in response to S1P stimulation. Mechanistically, we show that antagonizing S1P2 signaling markedly inhibited the TNFα-stimulated NFκB activation. Utilizing the NFκB reporter luciferase assay, the S1P/S1P2 signaling was shown to stimulate NFκB activation. Moreover, the S1P/S1P2-stimulated VCAM-1/ICAM-1 expression was completely abolished by the pharmacological inhibitor of NFκB. Collectively, our data suggest that TNFα treatment activates autocrine S1P/S1P2 signaling, which subsequently activates NFκB and leads to the proinflammatory responses in endothelial cells. "	"Acid ceramidase induces sphingosine kinase 1/S1P receptor 2-mediated activation of oncogenic Akt signaling. Acid ceramidase (AC) is overexpressed in most prostate tumors and confers oncogenic phenotypes to prostate cancer cells. AC modulates the cellular balance between ceramide, sphingosine and sphingosine 1-phosphate (S1P). These bioactive sphingolipids have diverse, powerful and often oppositional impacts on cell signaling, including the activation status of the oncogenic kinase Akt. Our studies show that AC expression correlates with phosphorylation of Akt in human prostate tumors, and elevation of phosphorylated Akt in tumor versus patient-matched benign tissue is contingent upon AC elevation. Investigation of the mechanism for AC-induced Akt activation revealed that AC activates Akt through sphingosine kinase 1 (SphK1)-derived generation of S1P. This signaling pathway proceeds through S1P receptor 2 (S1PR2)-dependent stimulation of PI3K. Functionally, AC-overexpressing cells are insensitive to cytotoxic chemotherapy, however, these cells are more susceptible to targeted inhibition of Akt. AC-overexpressing cells proliferate more rapidly than control cells and form more colonies in soft agar; however, these effects are profoundly sensitive to Akt inhibition, demonstrating increased dependence on Akt signaling for the oncogenic phenotypes of AC-overexpressing cells. These observations may have clinical implications for targeted therapy as PI3K and Akt inhibitors emerge from clinical trials."	"Critical role of sphingosine-1-phosphate receptor 2 (S1PR2) in acute vascular inflammation. The endothelium, as the interface between blood and all tissues, plays a critical role in inflammation. Sphingosine-1-phosphate (S1P) is a bioactive sphingolipid, highly abundant in plasma, that potently regulates endothelial responses through interaction with its receptors (S1PRs). Here, we studied the role of S1PR2 in the regulation of the proadhesion and proinflammatory phenotype of the endothelium. By using genetic approaches and a S1PR2-specific antagonist (JTE013), we found that S1PR2 plays a key role in the permeability and inflammatory responses of the vascular endothelium during endotoxemia. Experiments with bone marrow chimeras (S1pr2(+/+) → S1pr2(+/+), S1pr2(+/+) → S1pr2(-/-), and S1pr2(-/-) → S1pr2(+/+)) indicate the critical role of S1PR2 in the stromal compartment, in the regulation of vascular permeability and vascular inflammation. In vitro, JTE013 potently inhibited tumor necrosis factor α-induced endothelial inflammation. Finally, we provide detailed mechanisms on the downstream signaling of S1PR2 in vascular inflammation that include the activation of the stress-activated protein kinase pathway that, together with the Rho-kinase nuclear factor kappa B pathway (NF-kB), are required for S1PR2-mediated endothelial inflammatory responses. Taken together, our data indicate that S1PR2 is a key regulator of the proinflammatory phenotype of the endothelium and identify S1PR2 as a novel therapeutic target for vascular disorders. "	"Sphingosine 1-phosphate counteracts the effects of interleukin-1β in human chondrocytes. The lipid mediator sphingosine 1-phosphate (S1P) is found in the synovial fluid of osteoarthritis (OA) patients. S1P protects bovine cartilage by counteracting the effects of interleukin-1β (IL-1β). This study was undertaken to examine the interaction of S1P and IL-1β in human OA chondrocytes. Human cartilage was obtained from patients undergoing total knee joint replacement. Chondrocytes were cultured in monolayer and treated with IL-1β and S1P. Expression of S1P receptor subtypes and genes involved in cartilage degradation was evaluated using real-time polymerase chain reaction, immunohistochemistry, and Western blotting. S1P signaling was evaluated using inhibitors of S1P receptors and small interfering RNA (siRNA) knockdown of the S1P2 receptor. Phosphorylation of MAP kinases and NF-κB in response to IL-1β and S1P was detected by Western blotting. S1P2 was identified as the most prevalent S1P receptor subtype in human OA cartilage and chondrocytes in vitro. S1P reduced expression of inducible nitric oxide synthase (iNOS) in IL-1β-treated chondrocytes. Reduction of ADAMTS-4 and matrix metalloproteinase 13 expression by S1P correlated with S1P2 expression. Pharmacologic inhibition of the S1P2 receptor, but not the S1P1 and S1P3 receptors, abrogated the inhibition of iNOS expression. Similar results were observed using siRNA knockdown. S1P signaling inhibited IL-1β-induced phosphorylation of p38 MAPK. In human chondrocytes, S1P reduces the induction of catabolic genes in the presence of IL-1β. Activation of the S1P2 receptor counteracts the detrimental phosphorylation of p38 MAPK by IL-1β."	"Epidermal growth factor-induced cellular invasion requires sphingosine-1-phosphate/sphingosine-1-phosphate 2 receptor-mediated ezrin activation. Ezrin, radixin, and moesin (ERM) proteins link cortical actin to the plasma membrane and coordinate cellular events that require cytoskeletal rearrangement, including cell division, migration, and invasion. While ERM proteins are involved in many important cellular events, the mechanisms regulating their function are not completely understood. Our laboratory previously identified reciprocal roles for the sphingolipids ceramide and sphingosine-1-phosphate (S1P) in the regulation of ERM proteins. We recently showed that ceramide-induced activation of PP1α leads to dephosphorylation and inactivation of ERM proteins, while S1P results in phosphorylation and activation of ERM proteins. Following these findings, we aimed to examine known inducers of the SK/S1P pathway and evaluate their ability to regulate ERM proteins. We examined EGF, a known inducer of the SK/S1P pathway, for its ability to regulate the ERM family of proteins. We found that EGF induces ERM c-terminal threonine phosphorylation via activation of the SK/S1P pathway, as this was prevented by siRNA knockdown or pharmacological inhibition of SK. Using pharmacological, as well as genetic, knockdown approaches, we determined that EGF induces ERM phosphorylation via activation of S1PR2. In addition, EGF led to cell polarization in the form of lamellipodia, and this occurred through a mechanism involving S1PR2-mediated phosphorylation of ezrin T567. EGF-induced cellular invasion was also found to be dependent on S1PR2-induced T567 ezrin phosphorylation, such that S1PR2 antagonist, JTE-013, and expression of a dominant-negative ezrin mutant prevented cellular invasion toward EGF. In this work, a novel mechanism of EGF-stimulated invasion is unveiled, whereby S1P-mediated activation of S1PR2 and phosphorylation of ezrin T567 is required."	"Sphingosine-1-phosphate-mediated osteoclast precursor monocyte migration is a critical point of control in antibone-resorptive action of active vitamin D. The migration and positioning of osteoclast precursor monocytes are controlled by the blood-enriched lipid mediator sphingosine-1-phosphate (S1P) and have recently been shown to be critical points of control in osteoclastogenesis and bone homeostasis. Here, we show that calcitriol, which is the hormonally active form of vitamin D, and its therapeutically used analog, eldecalcitol, inhibit bone resorption by modulating this mechanism. Vitamin D analogs have been used clinically for treating osteoporosis, although the mode of its pharmacologic action remains to be fully elucidated. In this study, we found that active vitamin D reduced the expression of S1PR2, a chemorepulsive receptor for blood S1P, on circulating osteoclast precursor monocytes both in vitro and in vivo. Calcitriol- or eldecalcitol-treated monocytoid RAW264.7 cells, which display osteoclast precursor-like properties, migrated readily to S1P. Concordantly, the mobility of circulating CX3CR1(+) osteoclast precursor monocytes was significantly increased on systemic administration of active vitamin D. These results show a mechanism for active vitamin D in controlling the migratory behavior of circulating osteoclast precursors, and this action should be conducive to limiting osteoclastic bone resorption in vivo."	"Cytokine IL-6 secretion by trophoblasts regulated via sphingosine-1-phosphate receptor 2 involving Rho/Rho-kinase and Rac1 signaling pathways. Various cytokines derived from placental cells are essential for normal placenta development and successful pregnancy. Interleukin-6 (IL-6) is a multifunctional cytokine produced by extravillous and cytotrophoblasts regulating the functions of these cells, e.g. migration, invasion, trophoblast differentiation and proliferation. In macrophages, newly synthesized IL-6 accumulates in the Golgi complex and exits in tubulovesicular carriers fused with recycling endosomes and secreted as a soluble protein. Sphingosine-1-phosphate (S1P) induces various cytokine secretions including IL-6 in different cell types. The signaling mechanisms regulating the IL-6 secretion are unknown. In this study, we found that S1PR2 was the major S1P receptor being expressed in BeWo cells. S1P regulated IL-6 protein secretion in early phase (6 h) and gene expression in later phase (24 h). IL-6 secretion was completely inhibited via inhibitor of transcription (Actinomycin D) or protein synthesis (Cycloheximide) confirming that IL-6 releases constitutively from BeWo cells. By using specific S1PR2 inhibitor JTE-013 and S1PR2 gene silencing, we found that S1PR2 was the main receptor that regulates IL-6 secretion. Furthermore, S1P induced RhoGTPases-dependent pathways that are required for IL-6 secretion. Pretreatment of cells with specific Rho-kinase inhibitor (Y27632) and Rac1 inhibitor (NSC23766) drastically inhibited S1P-induced IL-6 secretion. By using a specific Phosphoinositide 3-kinase (PI3K) inhibitor (LY294002), we found that basal activity of PI3K was required for secretion but was independent of S1P/S1PR2 axis activation. In summary, we report first time that binding of S1P to S1PR2 activates multiple RhoGTPases-dependent pathways that coordinate with PI3K pathway for secretion of IL-6 in BeWo cells. "	"Sphingosine kinase/sphingosine 1-phosphate (S1P)/S1P receptor axis is involved in liver fibrosis-associated angiogenesis. Sphingosine kinase (SphK)/sphingosine 1-phosphate (S1P)/S1P receptor (S1PR) axis is involved in multiple biological processes, including liver fibrosis. Angiogenesis is an important pathophysiological process closely associated with liver fibrosis; however, the functional role of SphK/S1P/S1PR in this process remains incompletely defined. Bile duct ligation or carbon tetrachloride was used to induce liver fibrosis in mice. Human fibrotic samples were obtained from livers of patients undergoing liver transplantation. S1P levels in the liver were examined by HPLC. Expression of angiogenic markers, including angiopoietin 1, CD31, vascular cell adhesion molecule-1, and von Willebrand factor, was characterized by immunofluorescence, real-time RT-PCR, and Western blot in the fibrotic liver and primary mouse hepatic stellate cells (HSCs). SphK inhibitor (SKI) or S1PR antagonists were administered intraperitoneally in mice. S1P levels in the liver were closely correlated with mRNA expression of angiogenic markers. Ang1 is expressed in activated HSCs of the fibrotic liver and in primary HSCs. In HSCs, by using specific antagonists or siRNAs, we demonstrated S1P stimulation induced Ang1 expression via S1PR1 and S1PR3. In vivo, S1P reduction by SKI inhibited angiogenesis in fibrotic mice. Furthermore, S1PR1/3 antagonist significantly blocked upregulation of angiogenic markers in the injured liver, and attenuated the extent of liver fibrosis, while S1PR2 antagonist had no effect on angiogenesis, supporting the key role of S1PR1 and S1PR3 in angiogenesis underlying liver fibrosis process. SphK1/S1P/S1PR1/3 axis plays a crucial role in the angiogenic process required for fibrosis development, which may represent an effective therapeutic strategy for liver fibrosis."	"Sphingosine-1-phosphate receptor 1 in classical Hodgkin lymphoma: assessment of expression and role in cell migration. Classical Hodgkin lymphoma (CHL), a neoplasm of abnormal B lymphocytes (Hodgkin-Reed-Sternberg (HRS) cells), has been described to have a typical pattern of clinical presentation and dissemination often involving functionally contiguous lymph nodes. Despite the progress made in understanding CHL pathophysiology, the factors that regulate the spread of lymphoma cells in CHL are poorly understood. Sphingosine-1-phosphate (S1P), a bioactive sphingolipid present at high concentrations in the plasma and lymphatic fluid, is known to have a critical role in regulating lymphocyte trafficking mainly through sphingosine-1-phosphate receptor 1 (S1PR1). In this study, we explore the role of the S1P-S1PR1 axis in Hodgkin lymphoma cell migration and the expression of S1PR1 in CHL cell lines and clinical cases. We found that S1PR1 is present in the KM-H2 and SUP-HD1 Hodgkin lymphoma cell lines at the mRNA and protein level. In addition, functionally, S1P potently stimulated migration of both cell lines. S1P-induced migration was inhibited by the S1PR1 antagonist, VPC44116, and the S1PR1 functional antagonist, FTY720-P, but was potentiated by the S1PR2-specific antagonist, JTE013. We also determined that S1PR1 induced migration in the KM-H2 and SUP-HD1 cells via the heterotrimeric G-protein Gi and the phosphatidylinositol-3-kinase pathway. Immunohistochemical assessment of the tissue from CHL samples revealed that a subset of cases (7/57; 12%) show strong, membranous staining for S1PR1 in HRS cells. Altogether, our data indicate that S1PR1 is a functional receptor on HRS cells, which governs tumor cell migration and is expressed in a subset of CHL cases. Given the availability of S1PR1 antagonists, some of which are used clinically for modulation of the immune system, these results suggest that S1PR1 could be a future therapeutic target in the treatment of those cases of S1PR1-positive, refractory/recurrent CHL."	"Interrogation of sphingosine-1-phosphate receptor 2 function in vivo reveals a prominent role in the recovery from IgE and IgG-mediated anaphylaxis with minimal effect on its onset. Autocrine stimulation of S1PR2, a receptor for the lipid mediator sphingosine-1-phosphate (S1P), has been implicated in mast cell degranulation to IgE/antigen (Ag) although, paradoxically, its ligand cannot trigger substantial degranulation. Additionally, the in vivo role of S1PR2 in the overall allergic responses is unclear since S1PR2 was reported to be required for the onset of systemic anaphylaxis by IgE/Ag but, in apparent contradiction, also for the recovery from histamine-induced anaphylaxis in a mast cell independent manner. Here, we sought to clarify the role of S1PR2 in mast cell degranulation and in IgE and IgG-mediated anaphylaxis. Lack of S1PR2 reduced IgE/Ag-induced degranulation in in vitro experiments with mucosal mast cells, but had no effect on connective tissue type mast cells. This latter response correlated with a lack of involvement of S1PR2 in the onset of non-lethal IgE/Ag-mediated systemic and cutaneous anaphylaxis. However, S1pr2(-/-) mice were slow to recover (or did not recover) from FcɛRI-mediated anaphylaxis, an outcome that mirrored their known impairment in histamine clearance due to defective vascular tone. A minor role for S1PR2 in mast cell degranulation was uncovered upon engagement of low affinity receptors for IgG and in the onset of IgG-mediated anaphylaxis. Our findings show that S1PR2 is dispensable for initiating IgE/Ag-mediated connective tissue mast cell degranulation and anaphylaxis, but it is required for normal recovery from anaphylaxis."	"S1pr2/Gα13 signaling controls myocardial migration by regulating endoderm convergence. A key process during vertebrate heart development is the migration of bilateral populations of myocardial precursors towards the midline to form the primitive heart tube. In zebrafish, signaling mediated by sphingosine-1-phosphate (S1P) and its cognate G protein-coupled receptor (S1pr2/Mil) is essential for myocardial migration, but the underlying mechanisms remain undefined. Here, we show that suppression of Gα(13) signaling disrupts myocardial migration, leading to the formation of two bilaterally located hearts (cardia bifida). Genetic studies indicate that Gα(13) acts downstream of S1pr2 to regulate myocardial migration through a RhoGEF-dependent pathway. Furthermore, disrupting any component of the S1pr2/Gα(13)/RhoGEF pathway impairs endoderm convergence during segmentation, and the endodermal defects correlate with the extent of cardia bifida. Moreover, endoderm transplantation reveals that the presence of wild-type anterior endodermal cells in Gα(13)-deficient embryos is sufficient to rescue the endoderm convergence defect and cardia bifida, and, conversely, that the presence of anterior endodermal cells defective for S1pr2 or Gα(13) in wild-type embryos causes such defects. Thus, S1pr2/Gα(13) signaling probably acts in the endoderm to regulate myocardial migration. In support of this notion, cardiac-specific expression of Gα(13) fails to rescue cardia bifida in the context of global Gα(13) inhibition. Our data demonstrate for the first time that the Gα(13)/RhoGEF-dependent pathway functions downstream of S1pr2 to regulate convergent movement of the endoderm, an event that is crucial for coordinating myocardial migration."	"Sphingosine 1-phosphate (S1P) receptors 1 and 2 coordinately induce mesenchymal cell migration through S1P activation of complementary kinase pathways. Normal bone turnover requires tight coupling of bone resorption and bone formation to preserve bone quantity and structure. With aging and during several pathological conditions, this coupling breaks down, leading to either net bone loss or excess bone formation. To preserve or restore normal bone metabolism, it is crucial to determine the mechanisms by which osteoclasts and osteoblast precursors interact and contribute to coupling. We showed that osteoclasts produce the chemokine sphingosine 1-phosphate (S1P), which stimulates osteoblast migration. Thus, osteoclast-derived S1P may recruit osteoblasts to sites of bone resorption as an initial step in replacing lost bone. In this study we investigated the mechanisms by which S1P stimulates mesenchymal (skeletal) cell chemotaxis. S1P treatment of mesenchymal (skeletal) cells activated RhoA GTPase, but this small G protein did not contribute to migration. Rather, two S1P receptors, S1PR1 and S1PR2, coordinately promoted migration through activation of the JAK/STAT3 and FAK/PI3K/AKT signaling pathways, respectively. These data demonstrate that the chemokine S1P couples bone formation to bone resorption through activation of kinase signaling pathways."	"[Senescent endothelial dysfunctions were mediated by S1P2 receptor in cultured human umbilical vein endothelial cells]. To investigate the variation of senescent endothelial function by regulating the sphingosine-1-phosphate receptor type 2 (S1P2) expression in cultured human umbilical vein endothelial cells (HUVECs). The S1P2 receptor expression was regulated by transfecting the cDNA or shRNA of S1P2 in cultured HUVECs. The expression levels of S1P2 receptor in HUVECs were detected by RT-PCR and Western blot. EC chemotaxis was measured by the transwell migration assay. The wound healing assay was performed by a scratch wound model on EC monolayer. Matrigel morphogenesis assay was employed to assess the in vitro angiogenic responses. After up-regulating the S1P2 expression in young ECs, the S1P-stimulated formation of a tubular-like network in Matrigel was dramatically diminished in transfected ECs (P&lt;0.05). Quantification of the wound healing assay showed that transfected ECs grew much slower than young ECs (P&lt;0.05). The chemotactic capability was significantly decreased in transfected ECs (P&lt;0.05). Furthermore, the senescent-associated impairments were revoked by the downregulation of S1P2 receptor in senescent HUVECs. The impaired functions (chemotactic, wound-healing and morphogenetic responses) in senescent HUVECs in vitro are mediated by S1P2 receptor."	"Activation of sphingosine 1-phosphate receptor-1 by SEW2871 improves cognitive function in Alzheimer's disease model rats. Sphingosine-1 phosphate (S1P) is involved in a variety of cellular processes via activation of S1P receptors (S1PRs; S1PR1 to S1PR5) that are highly expressed in the brain. It has been shown that the level of S1P is reduced in the brain of Alzheimer's disease (AD) patients. However, there is no study designed to evaluate the expression of S1PRs in AD brains. The objectives of the present work are (1) to examine the expression of S1PR1-3 in the hippocampus of beta amyloid (Aβ) 1-42 injected rats and (2) to clarify the effects of chronic S1PR1 activation on S1PR1-3 levels, spatial memory deficit and hippocampal damage in AD rats. SEW2871, the S1PR1 selective agonist, repeatedly was injected intraperitoneally during a period of two weeks. Upon Western Blot data bilateral intrahippocampal injection of Aβ1-42 decreased the expression of S1PR1 while increased S1PR2 level and did not affect that of S1PR3. We found that chronic administration of SEW2871 inhibited the reduction of S1PR1 expression and ameliorated spatial memory impairment in the Morris water maze task in rats. In addition, SEW2871 attenuated the Aβ1-42-induced hippocampal neuronal loss according to Nissl staining findings. Data in the current study highlights the importance of S1PR1 signaling pathway deregulation in AD development and suggests that activation of S1PR1 may represent a potential approach for developing new therapeutics to manage memory deficit and apoptosis associated with neurodegenerative disorders such as AD. "	"Sphingosine 1-phosphate receptor signaling regulates proper embryonic vascular patterning. Sphingosine 1-phosphate (S1P) binds G-protein-coupled receptors (S1P(1-5)) to regulate a multitude of physiological effects, especially those in the vascular and immune systems. S1P receptors in the vascular system have been characterized primarily in mammals. Here, we report that the S1P receptors and metabolic enzymes are conserved in the genome of zebrafish Danio rerio. Bioinformatic analysis identified seven S1P receptor-like sequences in the zebrafish genome, including duplicated orthologs of receptors 3 and 5. Sphingolipidomic analysis detected erythrocyte and plasma S1P as well as high plasma ceramides and sphingosine. Morpholino-mediated knockdown of s1pr1 causes global and pericardial edema, loss of blood circulation, and vascular defects characterized by both reduced vascularization in intersegmental vessels, decreased proliferation of intersegmental and axial vessels, and hypersprouting in the caudal vein plexus. The s1pr2 gene was previously characterized as a regulator of cell migration and heart development, but its role in angiogenesis is not known. However, when expression of both s1pr1 and s1pr2 is suppressed, severely reduced vascular development of the intersegmental vessels was observed with doses of the s1pr1 morpholino that alone did not cause any discernible vascular defects, suggesting that s1pr1 and s1pr2 function cooperatively to regulate vascular development in zebrafish. Similarly, the S1P transporter, spns2, also cooperated with s1pr1. We propose that extracellular S1P acts through vascular S1P receptors to regulate vascular development."	"Sphingosine 1-phosphate induces filopodia formation through S1PR2 activation of ERM proteins. Previously we demonstrated that the sphingolipids ceramide and S1P (sphingosine 1-phosphate) regulate phosphorylation of the ERM (ezrin/radixin/moesin) family of cytoskeletal proteins [Canals, Jenkins, Roddy, Hernande-Corbacho, Obeid and Hannun (2010) J. Biol. Chem. 285, 32476-3285]. In the present article, we show that exogenously applied or endogenously generated S1P (in a sphingosine kinase-dependent manner) results in significant increases in phosphorylation of ERM proteins as well as filopodia formation. Using phosphomimetic and non-phosphorylatable ezrin mutants, we show that the S1P-induced cytoskeletal protrusions are dependent on ERM phosphorylation. Employing various pharmacological S1PR (S1P receptor) agonists and antagonists, along with siRNA (small interfering RNA) techniques and genetic knockout approaches, we identify the S1PR2 as the specific and necessary receptor to induce phosphorylation of ERM proteins and subsequent filopodia formation. Taken together, the results demonstrate a novel mechanism by which S1P regulates cellular architecture that requires S1PR2 and subsequent phosphorylation of ERM proteins."	"Sphingosine kinase-1/sphingosine-1-phosphate receptor type 1 signalling axis is induced by transforming growth factor-β1 and stimulates cell migration in RAW264.7 macrophages. Macrophage recruitment to sites of inflammation is an essential step in host defense. However, the signals regulating the mobilization of these cells are still not fully understood. Sphingosine-1-phosphate (S1P), a pleiotropic bioactive lipid mediator, is known to regulate an array of biological activities in various cell types. Here, we investigated the roles of S1P and S1P receptors (S1PRs) in macrophage migration in vitro. Furthermore, we explored the cross-talk between transforming growth factor-β1 (TGF-β1) and S1P signalling pathways in this process. We found that S1P exerted a powerful migratory action on RAW264.7 macrophages, as determined in Boyden chambers. Moreover, by employing RNA interference technology and pharmacological tools, we have demonstrated that S1PR1, but not S1PR2 and S1PR3, is required for S1P-induced macrophage migration. Importantly, we observed a pronounced increase in sphingosine kinase-1 (SphK1) mRNA expression and subsequently increase in S1P production, following transforming growth factor-β1 (TGF-β1) stimulation in RAW264.7 macrophages. The expression of S1PR1, but not S1PR2 and S1PR3, was also significantly up-regulated after TGF-β1 stimulation. Interestingly, exogenously added S1P-induced up-regulation of SphK1 and the synthesis of additional S1P, suggesting a self-amplifying loop of S1P to enhance macrophage migration. In conclusion, our results reveal that SphK1/S1PR1 signalling axis is induced by TGF-β1 and stimulates cell migration in RAW 264.7 macrophages. This study provides new clues for the molecular mechanisms of macrophage recruitment during inflammation."	"[Effect of sphingosine 1-phosphate/sphingosine 1-phosphate receptor signal pathway on function of neutrophils]. The aim of this study was to examine the priming effect of sphingosine 1-phosphate (S1P) on fMLP-activated neutrophils, mainly to detect the neutrophil respiratory burst products, and to investigate the signaling pathway involved in S1P activity. Flow cytometry was used to evaluate the new isolated neutrophil; the superoxide anion output was detected indirectly by cytochrome C reduction in respiratory burst; the dihydro-rhodamine 123 was used to detect the intensity of respiratory burst; the signal transduction pathways of neutrophil respiratory burst were explored by Western blot. The results showed that after pretreated with S1P, the level of superoxide anion released by fMLP-activated neutrophils significantly increased; the Rhodamine 123 mean fluorescence intensity in S1P primed fMLP-activated neutrophils group was significantly higher than that in fMLP treatment group; PI3K and Akt proteins involved in the signal pathway of neutrophil respiratory burst. It is concluded that S1P is a new priming reagent, which primes respiratory burst of fMLP-activated neutrophils; this signal pathway may be that S1P interacts with its receptor, activates PI3K, then activates Akt-transmitting signals through NADPH oxidase, finally results in the respiratory burst."	"Fingolimod inhibits PDGF-B-induced migration of vascular smooth muscle cell by down-regulating the S1PR1/S1PR3 pathway. Platelet Derived Growth Factor (PDGF) and sphingosine-1-phosphate (S1P) pathways play a key role in mural cell recruitment during tumor growth and angiogenesis. Fingolimod, a S1P analogue, has been shown to exert antitumor and antiangiogenic properties. However, molecular targets and modes of action of fingolimod remain unclear. In this study, we confirmed the antagonizing action of S1P and PDGF-B on rat vascular smooth muscle cell (VSMCs) growth and migration. We then compared siRNA and/or fingolimod (100 nM) treatments on PDGFR-β, S1PR1 S1PR2 and S1PR3 expression. Fingolimod induced a 50% reduction in S1PR3 protein expression which was cumulative with that obtained with anti-S1PR3 siRNA. We found that siRNA-induced inhibition of both PDGFR-β and S1PR3 was the most effective means to block VSMC migration induced by PDGF-B. Finally, we observed that fingolimod treatment associated with anti-S1PR1 siRNA principally inhibited VSMC growth while in combination with anti-S1PR3 siRNA it strongly inhibited VSMC migration. These results suggest that for rat VSMCs, the PDGFR-S1PR1 pathway is predominantly dedicated to cell growth while PDGFR-S1PR3 stimulates cell migration. As an S1P analogue, fingolimod is considered a potent activator of S1PR1 and S1PR3. However, its action on the PDGFR-S1PR platform appears to be dependent on S1PR1 and S1PR3 specific downregulation. Considering that the S1P pathway has already been shown to exert various crosstalks with tyrosine kinase pathways, it seems of great interest to evaluate fingolimod potential in combination with the numerous tyrosine kinase inhibitors used in oncology."	"Communication between host organism and cancer cells is transduced by systemic sphingosine kinase 1/sphingosine 1-phosphate signalling to regulate tumour metastasis. Mechanisms by which cancer cells communicate with the host organism to regulate lung colonization/metastasis are unclear. We show that this communication occurs via sphingosine 1-phosphate (S1P) generated systemically by sphingosine kinase 1 (SK1), rather than via tumour-derived S1P. Modulation of systemic, but not tumour SK1, prevented S1P elevation, and inhibited TRAMP-induced prostate cancer growth in TRAMP(+/+) SK1(-/-) mice, or lung metastasis of multiple cancer cells in SK1(-/-) animals. Genetic loss of SK1 activated a master metastasis suppressor, Brms1 (breast carcinoma metastasis suppressor 1), via modulation of S1P receptor 2 (S1PR2) in cancer cells. Alterations of S1PR2 using pharmacologic and genetic tools enhanced Brms1. Moreover, Brms1 in S1PR2(-/-) MEFs was modulated by serum S1P alterations. Accordingly, ectopic Brms1 in MB49 bladder cancer cells suppressed lung metastasis, and stable knockdown of Brms1 prevented this process. Importantly, inhibition of systemic S1P signalling using a novel anti-S1P monoclonal antibody (mAb), Sphingomab, attenuated lung metastasis, which was prevented by Brms1 knockdown in MB49 cells. Thus, these data suggest that systemic SK1/S1P regulates metastatic potential via regulation of tumour S1PR2/Brms1 axis."	"Sphingosine-1-phosphate signaling controlling osteoclasts and bone homeostasis. Bone is a dynamic organ that is continuously turned over during growth, even in adults. During bone remodeling, homeostasis is regulated by the balance between bone formation by osteoblasts and bone resorption by osteoclasts. However, in pathological conditions such as osteoporosis, osteopetrosis, arthritic joint destruction, and bone metastasis, this equilibrium is disrupted. Since osteoclasts are excessively activated in osteolytic diseases, the inhibition of osteoclast function has been a major therapeutic strategy. It has recently been demonstrated that sphingosine-1-phosphate (S1P), a biologically active lysophospholipid that is enriched in blood, controls the trafficking of osteoclast precursors between the circulation and bone marrow cavities via G protein-coupled receptors, S1PRs. While S1PR1 mediates chemoattraction toward S1P in bone marrow, where S1P concentration is low, S1PR2 mediates chemorepulsion in blood, where the S1P concentration is high. The regulation of precursor recruitment may represent a novel therapeutic strategy for controlling osteoclast-dependent bone remodeling. By means of intravital multiphoton imaging of bone tissues, we have recently revealed that the reciprocal action of S1P controls the migration of osteoclast precursors between bone tissues and blood stream. Imaging technologies have enabled us to visualize the in situ behaviors of different cell types in intact tissues. In this review we also discuss future perspectives on this new method in the field of bone biology and medical sciences in general. This article is part of a Special Issue entitled Advances in Lysophospholipid Research."	"Sphingosine-1-phosphate enhances satellite cell activation in dystrophic muscles through a S1PR2/STAT3 signaling pathway. Sphingosine-1-phosphate (S1P) activates a widely expressed family of G protein-coupled receptors, serves as a muscle trophic factor and activates muscle stem cells called satellite cells (SCs) through unknown mechanisms. Here we show that muscle injury induces dynamic changes in S1P signaling and metabolism in vivo. These changes include early and profound induction of the gene encoding the S1P biosynthetic enzyme SphK1, followed by induction of the catabolic enzyme sphingosine phosphate lyase (SPL) 3 days later. These changes correlate with a transient increase in circulating S1P levels after muscle injury. We show a specific requirement for SphK1 to support efficient muscle regeneration and SC proliferation and differentiation. Mdx mice, which serve as a model for muscular dystrophy (MD), were found to be S1P-deficient and exhibited muscle SPL upregulation, suggesting that S1P catabolism is enhanced in dystrophic muscle. Pharmacological SPL inhibition increased muscle S1P levels, improved mdx muscle regeneration and enhanced SC proliferation via S1P receptor 2 (S1PR2)-dependent inhibition of Rac1, thereby activating Signal Transducer and Activator of Transcription 3 (STAT3), a central player in inflammatory signaling. STAT3 activation resulted in p21 and p27 downregulation in a S1PR2-dependent fashion in myoblasts. Our findings suggest that S1P promotes SC progression through the cell cycle by repression of cell cycle inhibitors via S1PR2/STAT3-dependent signaling and that SPL inhibition may provide a therapeutic strategy for MD."	"Phytosphingosine-1-phosphate represses the hydrogen peroxide-induced activation of c-Jun N-terminal kinase in human dermal fibroblasts through the phosphatidylinositol 3-kinase/Akt pathway. Dermal fibroblasts are differentiated mesenchymal cells that regulate the extracellular matrix through the production of dermis components. Dermal fibroblasts can be damaged by reactive oxygen species induced by ultraviolet rays and chemicals. In addition to its effects on the dermis, oxidative stress poses a major threat to organisms and is believed to play an essential role in many disease processes. In this study, we show that human dermal fibroblasts (HDFs) express sphingosine-1-phosphate (S1P) receptors S1P(1), S1P(2), and S1P(3). In addition, cell viability of HDFs is increased by phytosphingosine-1-phosphate (PhS1P) via regulation of the Jun N-terminal kinase (JNK)/Akt pathway. Interestingly, regulation of the JNK/Akt pathway by PhS1P attenuated H(2)O(2)-induced cell growth arrest. Together, our data indicate that PhS1P attenuates H(2)O(2)-induced growth arrest through regulation of the signal molecules Akt and JNK, and suggest that PhS1P may have value as an anti-aging material in cosmetics and medicine."	"Differential expression of sphingosine-1-phosphate receptors in abdominal aortic aneurysms. Inflammation plays a key role in the pathophysiology of abdominal aortic aneurysms (AAAs). Newly discovered Sphingosine-1-Phosphate Receptors (S1P receptors) are critical in modulating inflammatory response via prostaglandin production. The aim of the current study was to investigate the expression of different S1P receptors in AAAs and compared with normal aortas at the protein level. Aortic specimens were harvested during aortic reconstructive surgery for the AAA group or during organ transplant for the control group. The protein expression of S1P1, 2 and 3 in AAAs and normal aortas was assessed by Western blotting and immunohistochemical analysis. There were 40 AAAs and 20 control aortas collected for the receptor analysis. For Western blot analysis, S1P1 expression was not detected in either group; S1P2 protein was constitutively detected in both types of aortas but its expression level was significantly decreased by 73% (P &lt; 0.05) in AAAs compared with the control group. In contrast, strong S1P3 expression was detected in AAAs aortas but not in normal aortas. Immumohistochemical staining showed similar results, except a weak S1P3 signal was detectable in normal aortas. Western blot and staining results consistently showed the down-regulation of the S1P2 protein with simultaneous up-regulation of the S1P3 protein in AAAs. Since those newly discovered receptors play an important role in the inflammatory cascade, the modulating of S1P signaling, particularly via S1P2 and S1P3, could represent novel therapeutic targets in future AAA treatments."	"S1PR2 links germinal center confinement and growth regulation. Germinal centers (GCs) are sites of rapid B-cell proliferation and somatic mutation. These ovoid structures develop within the center of follicles and grow to a stereotypic size. The cell migration and interaction dynamics underlying GC B-cell selection events are currently under intense scrutiny. In recent study, we identified a role for a migration inhibitory receptor, S1PR2, in promoting GC B-cell confinement to GCs. S1PR2 also dampens Akt activation and deficiency in S1PR2 or components of its signaling pathway result in a loss of growth control in chronically stimulated mucosal GCs. Herein, we detail present understanding of S1PR2 and S1P biology as it pertains to GC B cells and place this information in the context of a current model of GC function."	"Knockdown of the sphingosine-1-phosphate receptor S1PR1 reduces pain behaviors induced by local inflammation of the rat sensory ganglion. Sphingosine 1-phosphate (S1P) is a key immune mediator regulating migration of immune cells to sites of inflammation. S1P actions are mediated by a family of five G protein-coupled receptors. Sensory neurons express many of these receptors, and in vitro S1P has excitatory effects on small-diameter sensory neurons, many mediated by the S1P receptor 1 (S1PR1). This study investigated the role of S1P in regulating the sensitivity of DRG neurons. We found that in vivo perfusion of the normal L5 DRG with S1P increased mechanical sensitivity. Microelectrode recordings in isolated whole ganglia showed that large- and medium-diameter cells, as well as small-diameter cells, increased firing in the presence of S1P. To further determine the role of S1PRs, we examined the effects of in vivo S1PR1 knockdown in the L4 and L5 sensory ganglia. Small interfering RNA directed against S1PR1 did not affect baseline mechanical sensitivity in normal animals, in which S1P levels are expected to be low. However, when the L5 ganglion was locally inflamed, a procedure that leads to rapid and sustained mechanical hypersensitivity, S1PR1 siRNA injected animals showed significantly less hypersensitivity than animals injected with scrambled siRNA. Reduced expression of S1PR1, but not S1PR2 or S1PR3, was confirmed with qPCR methods. The results indicate that the S1PR1 receptors in sensory ganglia cells may play an important role in regulating behavioral sensitivity during inflammation."	"Sphingosine pathway deregulation in endometriotic tissues. To investigate key genes expression of the sphingosine-1-phosphate pathway in endometriotic tissues. A case-control laboratory study. Tertiary care university hospital. A total of 31 women, with (n = 16) and without (n = 15) endometriosis took part in the study. After surgical excision with pathological analysis, endometrial specimens were obtained from women affected or not by endometriosis. SPHK1-2, SGPP1-2, SGPL1, SPHKAP, and S1PR1-5 messenger RNA expression by quantitative real-time polymerase chain reaction (PCR) in the endometrium of 15 disease-free women, 16 eutopic and 16 ectopic endometrium of endometriosis-affected women. The S1PR1 and S1PR2 expression were further investigated by immunohistochemistry. The SGPP2 expression was decreased in eutopic and ectopic endometrium of endometriosis-affected women (1.7- and 16.7-fold, respectively). The SGPP1, weakly expressed in healthy endometrium, is up-regulated in endometriosis-affected women (11.9- and 64.7-fold, respectively), but its expression remains low. The SGPL1 expression was decreased in ectopic endometrium (3.3-fold) and SPHKAP expression was increased in ectopic endometrium (112.6-fold) compared with endometrium of disease-free women. In endometriosis-affected women, S1PR3 expression was decreased in eutopic and ectopic endometrium (2.1- and 6.3-fold, respectively); S1PR2 and S1PR1 expression was increased in eutopic (2.5-fold) and ectopic endometrium (2.6-fold). These increases were confirmed at the protein levels by immunohistochemistry. Expression of the enzymes implicated in the regulation of the sphingosine-1-phosphate level balance and of its receptors is overall heavily deregulated in endometriotic lesions in favor of a decreased sphingosine-1-phosphate catabolism. Our results plead for a role of the sphingosine pathway in establishing and survival of endometriotic lesions."	"LPS and TNF-α induce expression of sphingosine-1-phosphate receptor-2 in human microvascular endothelial cells. Sphingosine-1-phosphate (S1P) is a bioactive sophospholipid with various S1P receptor (S1PR) expression profiles in cells of different origin. S1PR1, R3 and - to a lesser extent - R2 were the main receptors expressed in most of endothelial cells (ECs). The balances in the expression and activation of S1PR1, R2 and R3 help to maintain the physiological functions of ECs. Reverse transcription-PCR and Western blotting were used to detect the mRNA transcript level and protein expression of S1PR. Endothelial barrier function was measured by transflux of tracer protein through endothelial monolayer. Human dermal microvascular ECs predominantly expressed S1PR1 and S1PR3. Lipopolysaccharide (LPS) or tumor necrosis factor-α (TNF-α) significantly upregulated S1PR2 mRNA and protein levels. The application of S1PR2 antagonist JTE-013 decreased the endothelial monolayer hyper-permeability response induced by LPS and TNF-α. Inflammatory mediators LPS and TNF-α induce S1PR2 expression in endothelium, suggesting that S1PR2 up-regulation may be involved in LPS and TNF-α elicited endothelial barrier dysfunction."	"Analysis of sphingosine-1-phosphate signaling mutants reveals endodermal requirements for the growth but not dorsoventral patterning of jaw skeletal precursors. Development of the head skeleton involves reciprocal interactions between cranial neural crest cells (CNCCs) and the surrounding pharyngeal endoderm and ectoderm. Whereas elegant experiments in avians have shown a prominent role for the endoderm in facial skeleton development, the relative functions of the endoderm in growth versus regional identity of skeletal precursors have remained unclear. Here we describe novel craniofacial defects in zebrafish harboring mutations in the Sphingosine-1-phospate (S1P) type 2 receptor (s1pr2) or the S1P transporter Spinster 2 (spns2), and we show that S1P signaling functions in the endoderm for the proper growth and positioning of the jaw skeleton. Surprisingly, analysis of s1pr2 and spns2 mutants, as well as sox32 mutants that completely lack endoderm, reveals that the dorsal-ventral (DV) patterning of jaw skeletal precursors is largely unaffected even in the absence of endoderm. Instead, we observe reductions in the ectodermal expression of Fibroblast growth factor 8a (Fgf8a), and transgenic misexpression of Shha restores fgf8a expression and partially rescues the growth and differentiation of jaw skeletal precursors. Hence, we propose that the S1P-dependent anterior foregut endoderm functions primarily through Shh to regulate the growth but not DV patterning of zebrafish jaw precursors."	"Skin mast cells protect mice against vaccinia virus by triggering mast cell receptor S1PR2 and releasing antimicrobial peptides. Mast cells (MCs) are well-known effectors of allergic reactions and are considered sentinels in the skin and mucosa. In addition, through their production of cathelicidin, MCs have the capacity to oppose invading pathogens. We therefore hypothesized that MCs could act as sentinels in the skin against viral infections using antimicrobial peptides. In this study, we demonstrate that MCs react to vaccinia virus (VV) and degranulate using a membrane-activated pathway that leads to antimicrobial peptide discharge and virus inactivation. This finding was supported using a mouse model of viral infection. MC-deficient (Kit(wsh-/-)) mice were more susceptible to skin VV infection than the wild type animals, whereas Kit(wsh-/-) mice reconstituted with MCs in the skin showed a normal response to VV. Using MCs derived from mice deficient in cathelicidin antimicrobial peptide, we showed that antimicrobial peptides are one important antiviral granule component in in vivo skin infections. In conclusion, we demonstrate that MC presence protects mice from VV skin infection, MC degranulation is required for protecting mice from VV, neutralizing Ab to the L1 fusion entry protein of VV inhibits degranulation apparently by preventing S1PR2 activation by viral membrane lipids, and antimicrobial peptide release from MC granules is necessary to inactivate VV infectivity."	"Tumor-suppressive sphingosine-1-phosphate receptor-2 counteracting tumor-promoting sphingosine-1-phosphate receptor-1 and sphingosine kinase 1 - Jekyll Hidden behind Hyde. Sphingosine-1-phosphate (S1P) is a plasma lipid mediator with multiple roles in mammalian development, physiology and pathophysiology. It is constitutively produced mostly by erythrocytes by the action of sphingosine kinase 1 (SphK1), resulting in high (∼0.5 micromolar) steady-state plasma S1P content and steep S1P concentration gradient imposed between plasma/lymph/tissue interstitial fluid. S1P is also locally produced by activated platelets and tumor cells, in the latter case SphK1 is a downstream target of activated Ras mutant and hypoxia, and is frequently upregulated especially in advanced stages of tumors. Most if not all of the S1P actions in vertebrates are mediated through evolutionarily conserved G protein-coupled S1P receptor family. Ubiquitously expressed mammalian subtypes S1PR1, S1PR2 and S1PR3 mediate pleiotropic actions of S1P in diverse cell types, through coupling to distinctive repertoire of heterotrimeric G proteins. S1PR1 and S1PR3 mediate directed cell migration toward S1P through coupling to G(i) and activating Rac, a Rho family small G protein essential for cell migration. Indeed, S1PR1 expressed in lymphocytes directs their egress from lymph nodes into lymph and recirculation, serving as the target for downregulation by the immunosuppressant FTY720 (fingolimod). S1PR1 in endothelial cells plays an essential role in vascular maturation in embryonic stage, and mediates angiogenic and vascular protective roles of S1P which include eNOS activation and maintenance of barrier integrity. It is likely that S1PR1 and SphK1 expressed in host endothelial cells and tumor cells act in concert in a paracrine loop to contribute to tumor angiogenesis, tumor invasion and progression. In sharp contrast, S1PR2 mediates S1P inhibition of Rac at the site downstream of G(12/13)-mediated Rho activation, thus identified as the first G protein-coupled receptor that negatively regulates Rac and cell migration. S1PR2 could also mediate inhibition of Akt and cell proliferation/survival signaling via Rho-ROCK-PTEN pathway. S1PR2 expressed in tumor cells mediates inhibition of cell migration and invasion in vitro and metastasis in vivo. Moreover, S1PR2 expressed in host endothelial cells and tumor-infiltrating myeloid cells in concert mediates potent inhibition of tumor angiogenesis and tumor growth in vivo, with inhibition of VEGF expression and MMP9 activity. These recent findings provide further basis for S1P receptor subtype-specific, novel therapeutic tactics for individualized treatment of patients with cancer."	"Expression profile of the sphingosine kinase signalling system in the lung of patients with chronic obstructive pulmonary disease. Chronic obstructive pulmonary disease (COPD) is a leading cause of death worldwide. Despite its importance, treatment methods are limited and restricted to symptomatic care, highlighting the urgent need for new treatment options. Tissue damage in COPD is thought to result from an inability of the normal repair processes with accumulation of apoptotic material and impaired clearance of this material by macrophages in the airways. Lung inflammation involves the bioactive sphingolipid sphingosine 1-phosphate (S1P). We investigated lung tissue samples from 55 patients (25 with COPD) undergoing lobectomies for management of cancer. We analysed the sphingosine-kinase (SphK) mRNA expression profile, SphK enzyme activity as well as the localisation and expression of individual proteins related to the SphK-signalling system. We show in this study for the first time a comprehensive expression profile of all synthesising enzymes, receptors and degrading enzymes of the SphK-signalling system in the human lung. Multivariate ANOVA showed that the relative mRNA expression of S1P receptor (S1PR) subtype 5 was reduced in COPD. There were strong positive correlations between the mRNA expression of S1PR5 and S1PR1 and S1PR3, and between S1PR3 and S1PR2. A significant negative correlation was found between S1PR1 and SphK protein activity. The correlations between expression levels of receptors and enzymes involved in the sphingosine kinase signalling system in the lung suggest common regulatory mechanisms. Our findings of reduced S1PR5 in COPD and the correlation with other S1P receptors in COPD identify S1PR5 as a possible novel target for pharmacotherapy."	"Role of sphingolipids in murine radiation-induced lung injury: protection by sphingosine 1-phosphate analogs. Clinically significant radiation-induced lung injury (RILI) is a common toxicity in patients administered thoracic radiotherapy. Although the molecular etiology is poorly understood, we previously characterized a murine model of RILI in which alterations in lung barrier integrity surfaced as a potentially important pathobiological event and genome-wide lung gene mRNA levels identified dysregulation of sphingolipid metabolic pathway genes. We hypothesized that sphingolipid signaling components serve as modulators and novel therapeutic targets of RILI. Sphingolipid involvement in murine RILI was confirmed by radiation-induced increases in lung expression of sphingosine kinase (SphK) isoforms 1 and 2 and increases in the ratio of ceramide to sphingosine 1-phosphate (S1P) and dihydro-S1P (DHS1P) levels in plasma, bronchoalveolar lavage fluid, and lung tissue. Mice with a targeted deletion of SphK1 (SphK1(-/-)) or with reduced expression of S1P receptors (S1PR1(+/-), S1PR2(-/-), and S1PR3(-/-)) exhibited marked RILI susceptibility. Finally, studies of 3 potent vascular barrier-protective S1P analogs, FTY720, (S)-FTY720-phosphonate (fTyS), and SEW-2871, identified significant RILI attenuation and radiation-induced gene dysregulation by the phosphonate analog, fTyS (0.1 and 1 mg/kg i.p., 2×/wk) and to a lesser degree by SEW-2871 (1 mg/kg i.p., 2×/wk), compared with those in controls. These results support the targeting of S1P signaling as a novel therapeutic strategy in RILI."	"Essential roles of sphingosine 1-phosphate receptor types 1 and 3 in human hepatic stellate cells motility and activation. The biological roles of sphingosine 1-phosphate (S1P) and S1P receptors (S1PRs) have been broadly investigated. However, at present pathophysiological roles of S1P/S1PRs axis in liver fibrosis are not well defined. Here, we investigated the functions of S1P/S1PRs axis in human hepatic stellate cells (HSC) line, LX-2 cells. We found that S1PR types 1, 2 and 3 (S1PR1-3) are clearly detected in LX-2 cells, as determined by RT-PCR, Western blot and immunocytochemistry analysis. S1P exerted a powerful migratory action on LX-2 cells, as determined in Boyden chambers, and stimulated fibrogenic activity of LX-2 cells, as demonstrated by increase of expression of smooth muscle α-actin, procollagen α1(I) and α1(III) and total hydroxyproline content. Moreover, the effects of S1P were mimicked by S1PR1 agonist SEW2871, and abrogated by W146 (S1PR1 antagonist) and/or silencing S1PR1, three expression with small interfering RNA, suggesting the main roles of S1PR1 and 3. However, studies with S1PR2 antagonist JTE-013 and silencing S1PR2 expression indicated that S1PR2 negatively regulated S1P-induced cell migration. Interestingly, exogenously added S1P induced significant up-regulation of sphingosine kinase-1 and the synthesis of additional S1P, and expression of S1PR1,3, but not S1PR2. In conclusion, our data have identified an additional function regulated by S1P/S1PR1,3 axis involving migration and fibrogenic activation of HSCs. These results suggest that selective modulation of S1PR activity may represent a new antifibrotic strategy."	"Unique uterine localization and regulation may differentiate LPA3 from other lysophospholipid receptors for its role in embryo implantation. To determine factors differentiating LPA3 from other lysophospholipid (LP) receptors for its role in embryo implantation. Experimental mouse models. Institute/university research laboratories. Wild-type, Lpar3(-/-), Lpar1(-/-)Lpar2(-/-), and S1pr2(-/-)S1pr3(-/-) mice. Ovariectomy. Blue dye injection for determining implantation sites on gestation day 4.5. Real-time polymerase chain reaction for measuring gene expression in whole uterus and separated uterine layers. In situ hybridization for detecting progesterone (P)-induced Lpar3 expression in the uterine luminal epithelium (LE). Normal implantation was observed in Lpar1(-/-)Lpar2(-/-) and S1pr2(-/-)S1pr3(-/-) females. Temporal expression showed peak expression of Lpar3 in the preimplantation uterus and constitutive expression of the other nine LP receptors in the periimplantation uterus. Spatial localization revealed main expression of Lpar3 in the LE and broad expression of the remaining LP receptors in all three main uterine layers: LE, stromal, and myometrial layers. Hormonal regulation in ovariectomized uterus indicated up-regulation of Lpar3 but down-regulation or no effect of the remaining nine LP receptors by P, and down-regulation of most LP receptors, including Lpar3, by 17β-estradiol. LE localization and up-regulation by P differentiate LPA3 from the other nine LP receptors and may underlie its essential role in embryo implantation."	"The role of sphingosine 1-phosphate in migration of osteoclast precursors; an application of intravital two-photon microscopy. Sphingosine-1-phosphate (S1P), a biologically active lysophospholipid that is enriched in blood, controls the trafficking of osteoclast precursors between the circulation and bone marrow cavities via G protein-coupled receptors, S1PRs. While S1PR1 mediates chemoattraction toward S1P in bone marrow, where S1P concentration is low, S1PR2 mediates chemorepulsion in blood, where the S1P concentration is high. The regulation of precursor recruitment may represent a novel therapeutic strategy for controlling osteoclast-dependent bone remodeling. Through intravital multiphoton imaging of bone tissues, we reveal that the bidirectional function of S1P temporospatially regulates the migration of osteoclast precursors within intact bone tissues. Imaging technologies have enabled in situ visualization of the behaviors of several players in intact tissues. In addition, intravital microscopy has the potential to be more widely applied to functional analysis and intervention."	"[Encounter of cancer cells with bone. In vivo imaging of osteoclasts and their precursors in intact bone tissues]. Osteoclasts play critical roles not only in normal bone homeostasis ('remodeling') , but also in the pathogenesis of bone destructive disorders such as osteoporosis, rheumatoid arthritis, and bone metastasis. However, it has not been known how osteoclast precursor monocytes migrate into the bone surface and what controls their migratory behaviors. To reveal these systems, we have recently established a new system for visualizing intact bone tissues and bone marrow cavities in live animals by using an advanced imaging technique with intravital two-photon microscopy. By means of the system we have revealed that sphingosine-1-phosphate (S1P) , a lipid mediator, dynamically regulates migration and localization of osteoclasts and their precursors in vivo . Here we show the latest data and the detailed methodology of intravital imaging of bone tissues, and also discuss its further application."	"Sphingosine 1-phosphate (S1P)/S1P receptors are involved in human liver fibrosis by action on hepatic myofibroblasts motility. Directed migration of hepatic myofibroblasts (hMFs) contributes to the development of liver fibrosis. However, the signals regulating the motility of these cells are incompletely understood. We have recently shown that sphingosine 1-phosphate (S1P) and S1P receptors (S1PRs) are involved in mouse liver fibrogenesis. Here, we investigated the role of S1P/S1PRs signals in human liver fibrosis involving motility of human hMFs. S1P level in the liver was examined by high-performance liquid chromatography. Expression of S1PRs was characterized, in biopsy specimens of human liver and cultured hMFs, by immunofluorescence and real-time RT-PCR or Western blot analysis. Cell migration was determined in Boyden chambers, by using the selective S1P receptor agonist or antagonist and silencing of S1PRs expression with small interfering RNA. S1P level in the human fibrotic liver was increased through up-regulation of sphingosine kinase (SphK), irrespective of the etiology of fibrosis. S1P receptors type 1, 2, and 3 (S1P(1,2,3)) were expressed in human hMFs in vivo and in vitro. Interestingly, S1P(1,3) were strongly induced in human fibrotic samples, whereas expression of S1P(2) was massively decreased. S1P exerted a powerful migratory action on human hMFs. Furthermore, the effect of S1P was mimicked by SEW2871 (an S1P(1) agonist), and blocked by suramin (an S1P(3) antagonist) and by silencing S1P(1,3) expression. In contrast, JTE-013 (an S1P(2) antagonist) and silencing of S1P(2) expression enhanced S1P-induced migration. SphK/S1P/S1PRs signaling axis plays an important role in human liver fibrosis and is involved in the directed migration of human hMFs into the damaged areas."	"Chemorepulsion by blood S1P regulates osteoclast precursor mobilization and bone remodeling in vivo. Sphingosine-1-phosphate (S1P), a lipid mediator enriched in blood, controls the dynamic migration of osteoclast (OC) precursors (OPs) between the blood and bone, in part via the S1P receptor 1 (S1PR1) which directs positive chemotaxis toward S1P. We show that OPs also express S1PR2, an S1P receptor which mediates negative chemotaxis (or chemorepulsion). OP-positive chemotaxis is prominent in gradients with low maximal concentrations of S1P, whereas such behavior is minimal in fields with high maximal S1P concentrations. This reverse-directional behavior is caused by S1PR2-mediated chemorepulsion acting to override S1PR1 upgradient motion. S1PR2-deficient mice exhibit moderate osteopetrosis as a result of a decrease in osteoclastic bone resorption, suggesting that S1PR2 contributes to OP localization on the bones mediated by chemorepulsion away from the blood where S1P levels are high. Inhibition of S1PR2 function by the antagonist JTE013 changed the migratory behavior of monocytoid cells, including OPs, and relieved osteoporosis in a mouse model by limiting OP localization and reducing the number of mature OCs attached to the bone surface. Thus, reciprocal regulation of S1P-dependent chemotaxis controls bone remodeling by finely regulating OP localization. This regulatory axis may be promising as a therapeutic target in diseases affecting OC-dependent bone remodeling."	"Follicular fluid high-density lipoprotein-associated sphingosine 1-phosphate (S1P) promotes human granulosa lutein cell migration via S1P receptor type 3 and small G-protein RAC1. Coordinated migration and progesterone production by granulosa cells is critical to the development of the corpus luteum, but the underlying mechanisms remain obscure. Sphingosine 1-phosphate (S1P), which is associated with follicular fluid high-density lipoprotein (FF-HDL), was previously shown to regulate ovarian angiogenesis. We herein examined the effects of S1P and FF-HDL on the function of granulosa lutein cells. Both FF-HDL and S1P induced migration of primary human granulosa lutein cells (hGCs) and the granulosa lutein cell line HGL5. In addition, FF-HDL but not S1P promoted progesterone synthesis, and neither of the two compounds stimulated proliferation of granulosa lutein cells. Polymerase chain reaction and Western blot experiments demonstrated the expression of S1P receptor type 1 (S1PR1), S1PR2, S1PR3, and S1PR5 but not S1PR4 in hGCs and HGL5 cells. The FF-HDL- and S1P-induced granulosa lutein cell migration was emulated by FTY720, an agonist of S1PR1, S1PR3, S1PR4, and S1PR5, and by VPC24191, an agonist of S1PR1 and S1PR3, but not by SEW2871 and phytosphingosine 1-phosphate, agonists of S1PR1 and S1PR4, respectively. In addition, blockade of S1PR3 with CAY1044, suramine, or pertussis toxin inhibited hGC and HGL5 cell migration toward FF-HDL or S1P, while blockade of S1PR1 and S1PR2 with W146 and JTE013, respectively, had no effect. Both FF-HDL and S1P triggered activation of small G-protein RAC1 and actin polymerization in granulosa cells, and RAC1 inhibition with Clostridium difficile toxin B or NSC23766 abolished FF-HDL- and S1P-induced migration. The FF-HDL-associated S1P promotes granulosa lutein cell migration via S1PR3 and RAC1 activation. This may represent a novel mechanism contributing to the development of the corpus luteum."	"Sphingosine-1-phosphate receptor-2 deficiency leads to inhibition of macrophage proinflammatory activities and atherosclerosis in apoE-deficient mice. Sphingosine-1-phosphate (S1P) is a biologically active sphingolipid that has pleiotropic effects in a variety of cell types including ECs, SMCs, and macrophages, all of which are central to the development of atherosclerosis. It may therefore exert stimulatory and inhibitory effects on atherosclerosis. Here, we investigated the role of the S1P receptor S1PR2 in atherosclerosis by analyzing S1pr2-/- mice with an Apoe-/- background. S1PR2 was expressed in macrophages, ECs, and SMCs in atherosclerotic aortas. In S1pr2-/-Apoe-/- mice fed a high-cholesterol diet for 4 months, the area of the atherosclerotic plaque was markedly decreased, with reduced macrophage density, increased SMC density, increased eNOS phosphorylation, and downregulation of proinflammatory cytokines compared with S1pr2+/+Apoe-/- mice. Bone marrow chimera experiments indicated a major role for macrophage S1PR2 in atherogenesis. S1pr2-/-Apoe-/- macrophages showed diminished Rho/Rho kinase/NF-κB (ROCK/NF-κB) activity. Consequently, they also displayed reduced cytokine expression, reduced oxidized LDL uptake, and stimulated cholesterol efflux associated with decreased scavenger receptor expression and increased cholesterol efflux transporter expression. S1pr2-/-Apoe-/- ECs also showed reduced ROCK and NF-κB activities, with decreased MCP-1 expression and elevated eNOS phosphorylation. Pharmacologic S1PR2 blockade in S1pr2+/+Apoe-/- mice diminished the atherosclerotic plaque area in aortas and modified LDL accumulation in macrophages. We conclude therefore that S1PR2 plays a critical role in atherogenesis and may serve as a novel therapeutic target for atherosclerosis."	"Sphingosine-1-phosphate receptor-2 function in myeloid cells regulates vascular inflammation and atherosclerosis. Sphingomyelin deposition and metabolism occurs in the atherosclerotic plaque, leading to the formation of sphingosine-1-phosphate (S1P), which activates G protein-coupled receptors to regulate vascular and immune cells. The role of S1P receptors in atherosclerosis has not been examined. We tested the hypothesis that S1P receptor-2 (S1PR2) regulates atherosclerosis. Apoe(-/-) S1pr2(-/-) mice showed greatly attenuated atherosclerosis compared with the Apoe(-/-) mice. Bone marrow transplant experiments indicate that S1PR2 function in the hematopoietic compartment is critical. S1PR2 is expressed in bone marrow-derived macrophages and in macrophage-like foam cells in atherosclerotic plaques. Reduced macrophage-like foam cells were found in the atherosclerotic plaques of Apoe(-/-)S1pr2(-/-) mice, suggesting that S1PR2 retains macrophages in atherosclerotic plaques. Lipoprotein profiles, plasma lipids, and oxidized low-density lipoprotein uptake by bone marrow-derived macrophages were not altered by the S1pr2 genotype. In contrast, endotoxin-induced inflammatory cytokine (interleukin [IL]-1β, IL-18) levels in the serum of S1PR2 knockout mice were significantly reduced. Furthermore, treatment of wild-type mice with S1PR2 antagonist JTE-013 suppressed IL-1β and IL-18 levels in plasma. These data suggest that S1PR2 signaling in the plaque macrophage regulates macrophage retention and inflammatory cytokine secretion, thereby promoting atherosclerosis."	"Sphingosine 1-phosphate receptor 2 signals through leukemia-associated RhoGEF (LARG), to promote smooth muscle cell differentiation. The goals of this study were to identify the signaling pathway by which sphingosine 1-phosphate (S1P) activates RhoA in smooth muscle cells (SMC) and to evaluate the contribution of this pathway to the regulation of SMC phenotype. Using a combination of receptor-specific agonists and antagonists we identified S1P receptor 2 (S1PR2) as the major S1P receptor subtype that regulates SMC differentiation marker gene expression. Based on the known coupling properties of S1PR2 and our demonstration that overexpression of Galpha(12) or Galpha(13) increased SMC-specific promoter activity, we next tested whether the effects of S1P in SMC were mediated by the regulator of G protein-signaling-Rho guanine exchange factors (RGS-RhoGEFs) (leukemia-associated RhoGEF [LARG], PDZ-RhoGEF [PRG], RhoGEF [p115]). Although each of the RGS-RhoGEFs enhanced actin polymerization, myocardin-related transcription factor-A nuclear localization, and SMC-specific promoter activity when overexpressed in 10T1/2 cells, LARG exhibited the most robust effect and was the only RGS-RhoGEF activated by S1P in SMC. Importantly, siRNA-mediated depletion of LARG significantly inhibited the activation of RhoA and SMC differentiation marker gene expression by S1P. Knockdown of LARG had no effect on SMC proliferation but promoted SMC migration as measured by scratch wound and transwell assays. These data indicate that S1PR2-dependent activation of RhoA in SMC is mediated by LARG and that this signaling mechanism promotes the differentiated SMC phenotype."	"Printing a tissue: a new engineering strategy for cardiovascular regeneration. NA"	"Downregulation of sphingosine-1-phosphate receptors in bronchial smooth muscle of mouse experimental asthma. To determine whether or not sphingosine-1-phosphate (S1P) is involved in the augmented bronchial smooth muscle (BSM) contractility, one of the causes of airway hyperresponsiveness in asthmatics, the effects of S1P on BSM tone were investigated in control and repeatedly antigen-challenged mice. Both in the control and antigen-challenged animals, S1P had no effect on basal tone of the isolated BSM tissues. However, in the BSMs pre-depolarized by 60mM K(+), S1P caused a significant increase in tension in the control mice. The S1P-mediated contraction was abolished by JTE-013, a selective S1P receptor 2 (S1PR2) antagonist, but not by W123, a selective S1PR1 antagonist, and BML-241, a selective S1PR3 antagonist. The S1P-mediated contraction observed in BSMs of the control mice was also inhibited by Y-27632, a Rho-kinase inhibitor, suggesting that the contraction is mediated via activations of S1PR2 and probably its downstream Rho-kinase. On the other hand, interestingly, the S1P-mediated contraction was not observed at all in BSMs of the repeatedly antigen-challenged mice. A marked and significant downregulation of mRNA for S1PR2 was also observed in BSM tissues of the diseased animals. In conclusion, S1P could augment the BSM contraction via activations of its JTE-013-sensitive receptor, probably S1PR2, and the RhoA/Rho-kinase signaling in normal mice. In BSMs of the repeatedly antigen-challenged mice, the expression level of S1PR2 was much decreased, resulting in a loss of the S1P-mediated contraction."	"Therapeutic angiogenesis by implantation of a capillary structure constituted of human adipose tissue microvascular endothelial cells. We previously reported a novel technology for the engineering of a capillary network using an optical lithographic technique. To apply this technology to the therapy of ischemic diseases, we tested human omental microvascular endothelial cells (HOMECs) as an autologous cell source and decellularized human amniotic membranes (DC-AMs) as a pathogen-free and low immunogenic transplantation scaffold. Human umbilical vein endothelial cells were aligned on a patterned glass substrate and formed a capillary structure when transferred onto an amniotic membrane (AM). In contrast, HOMECs were scattered and did not form a capillary structure on AMs. Treatment of HOMECs with sphingosine 1-phosphate (S1P) inhibited HOMEC migration and enabled HOMEC formation of a capillary structure on AMs. Using quantitative RT-PCR and Western blot analyses, we demonstrated that the main S1P receptor in HOMECs is S1P(2), which is lacking in human umbilical vein endothelial cells, and that inhibition of cell migration by S1P is mediated through an S1P(2)-Rho-Rho-associated kinase signaling pathway. Implantation of capillaries engineered on DC-AMs into a hindlimb ischemic nude mouse model significantly increased blood perfusion compared with controls. A capillary network consisting of HOMECs on DC-AMs can be engineered ex vivo using printing technology and S1P treatment. This method for regeneration of a capillary network may have therapeutic potential for ischemic diseases."	"Sphingosine kinase 1 and sphingosine-1-phosphate receptor 2 are vital to recovery from anaphylactic shock in mice. Sphingosine kinase 1 (SphK1) and SphK2 are ubiquitous enzymes that generate sphingosine-1-phosphate (S1P), a ligand for a family of G protein-coupled receptors (S1PR1-S1PR5) with important functions in the vascular and immune systems. Here we explore the role of these kinases and receptors in recovery from anaphylaxis in mice. We found that Sphk2-/- mice had a rapid recovery from anaphylaxis. In contrast, Sphk1-/- mice showed poor recovery from anaphylaxis and delayed histamine clearance. Injection of S1P into Sphk1-/- mice increased histamine clearance and promoted recovery from anaphylaxis. Adoptive cell transfer experiments demonstrated that SphK1 activity was required in both the hematopoietic and nonhematopoietic compartments for recovery from anaphylaxis. Mice lacking the S1P receptor S1PR2 also showed a delay in plasma histamine clearance and a poor recovery from anaphylaxis. However, S1P did not promote the recovery of S1pr2-/- mice from anaphylaxis, whereas S1pr2+/- mice showed partial recovery. Unlike Sphk2-/- mice, Sphk1-/- and S1pr2-/- mice had severe hypotension during anaphylaxis. Thus, SphK1-produced S1P regulates blood pressure, histamine clearance, and recovery from anaphylaxis in a manner that involves S1PR2. This suggests that specific S1PR2 agonists may serve to counteract the vasodilation associated with anaphylactic shock."	"Essential roles of sphingosine-1-phosphate receptor 2 in human mast cell activation, anaphylaxis, and pulmonary edema. Systemic exacerbation of allergic responses, in which mast cells play a critical role, results in life-threatening anaphylactic shock. Sphingosine-1-phosphate (S1P), a ligand for a family of G protein-coupled receptors, is a new addition to the repertoire of bioactive lipids secreted by activated mast cells. Yet little is known of its role in human mast cell functions and in anaphylaxis. We show that S1P(2) receptors play a critical role in regulating human mast cell functions, including degranulation and cytokine and chemokine release. Immunoglobulin E-triggered anaphylactic responses, including elevation of circulating histamine and associated pulmonary edema in mice, were significantly attenuated by the S1P(2) antagonist JTE-013 and in S1P(2)-deficient mice, in contrast to anaphylaxis induced by administration of histamine or platelet-activating factor. Hence, S1P and S1P(2) on mast cells are determinants of systemic anaphylaxis and associated pulmonary edema and might be beneficial targets for anaphylaxis attenuation and prophylaxis."	"Integrating siRNA and protein-protein interaction data to identify an expanded insulin signaling network. Insulin resistance is one of the dominant symptoms of type 2 diabetes (T2D). Although the molecular mechanisms leading to this resistance are largely unknown, experimental data support that the insulin signaling pathway is impaired in patients who are insulin resistant. To identify novel components/modulators of the insulin signaling pathway, we designed siRNAs targeting over 300 genes and tested the effects of knocking down these genes in an insulin-dependent, anti-lipolysis assay in 3T3-L1 adipocytes. For 126 genes, significant changes in free fatty acid release were observed. However, due to off-target effects (in addition to other limitations), high-throughput RNAi-based screens in cell-based systems generate significant amounts of noise. Therefore, to obtain a more reliable set of genes from the siRNA hits in our screen, we developed and applied a novel network-based approach that elucidates the mechanisms of action for the true positive siRNA hits. Our analysis results in the identification of a core network underlying the insulin signaling pathway that is more significantly enriched for genes previously associated with insulin resistance than the set of genes annotated in the KEGG database as belonging to the insulin signaling pathway. We experimentally validated one of the predictions, S1pr2, as a novel candidate gene for T2D."	"Differential expression of sphingosine-1-phosphate receptors 1-5 in the developing nervous system. Sphingosine-1-phosphate (S1P) binds to G protein-coupled receptors and can regulate a wide range of cellular functions. In a previous study, we isolated two key enzymes in the S1P pathway that were expressed in migrating neural crest cells. To determine if S1P receptors are present in neural crest cells or peripheral nervous system, we examine the expression patterns of S1P receptors (S1pr1-5) in mouse, and s1pr1 and s1pr3 in chick embryos. Here, we present a comprehensive expression analysis of these receptors using in situ hybridizations, which provide spatiotemporal information. We showed that S1pr2 was expressed in migrating cranial neural crest cells and enteric neurons. S1pr1 was prominently expressed in the neuroepithelium whereas S1pr4 and S1pr5 were in neurons at later stages. On the contrary, S1pr3 was predominantly detected in non-neuronal cells within and surrounding neural structures. We also described novel expression sites for S1P receptors in the developing nervous system."	"S1P/S1P2 signaling induces cyclooxygenase-2 expression in Wilms tumor. Cyclooxygenase-2 has been reported to be ubiquitously expressed in Wilms tumor, the most common malignant renal tumor in children. However, to our knowledge the regulation mechanism of cyclooxygenase-2 expression remains unexplored. Quantitative real-time polymerase chain reaction and Western blot were performed to detect cyclooxygenase-2 mRNA and protein expression in WiT49 cells upon stimulation by S1P (Biomol(R)), and S1P(2) and cyclooxygenase-2 mRNA expression in 10 freshly frozen Wilms tumor tissues and matched normal tissues. Over expression, blockade and down-regulation of S1P(2) were determined using adenoviral transduction, the S1P(2) antagonist JTE-013 (Tocris Bioscience, Ellisville, Missouri) and small interfering RNA (Dharmacon, Lafayette, Colorado) transfection, respectively. The prostaglandin E(2) level in WiT49 cells was determined by gas chromatography/mass spectrometry. S1P induced cyclooxygenase-2 mRNA and protein expression in WiT49 cells in a concentration dependent manner. Over expression of S1P(2) in WiT49 cells led to a significant increase in cyclooxygenase-2 mRNA and protein expression as well as subsequent prostaglandin E(2) synthesis. In addition, pretreatment of those cells that over expressed S1P(2) with the S1P(2) selective antagonist JTE-013 completely blocked S1P induced cyclooxygenase-2 protein expression. In accordance with these results silencing S1P(2) in WiT49 cells down-regulated S1P induced cyclooxygenase-2 expression. Further research in 10 Wilms tumor specimens showed that S1P(2) mRNA is greatly increased in Wilms tumor. S1P induced cyclooxygenase-2 expression in Wilms tumor and this effect was mediated by S1P(2). This finding extends the biological function of S1P(2) and provides the biochemical basis for developing inhibitors targeting the S1P/cyclooxygenase-2 signaling pathway."	"The S1P(2) receptor expressed in human platelets is linked to the RhoA-Rho kinase pathway and is down regulated in type 2 diabetes. Sphingosine-1-phosphate (S1P) is known to affect platelet responsiveness but the receptor mediating these effects and the mechanisms involved are poorly understood. This study was undertaken to examine S1P receptor expression in human platelets as well as potential changes associated with type 2 diabetes. S1P(2) receptor expression (Western blotting) was detected in washed human platelets from healthy volunteers. Stimulation of these platelets with exogenous S1P led to a concentration-dependent increase in intracellular Ca(2+) as well as to platelet aggregation. The S1P-induced increase in Ca(2+) was sensitive to the S1P(2) receptor antagonist JTE-013 but not the S1P(1/3) antagonist VPC23019. Both antagonists reduced the aggregation stimulated by S1P in a non-additive manner. S1P also elicited the translocation of RhoA to the membrane and RhoA activity was inhibited (by 50%) by the S1P receptor antagonists. Platelets from patients with type 2 diabetes demonstrated an attenuated aggregability to S1P as well as decreased levels of the full-length S1P(2) protein. The S1P(2) antibody used identified a 45 kDa receptor cleavage product in patients with diabetes that could also be generated from healthy human platelet lysates by the addition of the Ca(2+)-activated protease, mu-calpain. These results indicate that the S1P(2) receptor is involved in S1P-induced platelet aggregation and Rho kinase activation. Moreover, in platelets from patients with type 2 diabetes, responses to S1P are attenuated via a phenomenon attributed to the calpain-dependent cleavage of the S1P(2) receptor."	"Specific and overlapping sphingosine-1-phosphate receptor functions in human synoviocytes: impact of TNF-alpha. Sphingosine-1-phosphate (S1P), via interaction with its G protein-coupled receptors, regulates various physiological and pathological responses. The present study investigated the role of S1P/S1P receptor signaling in several functional responses of human fibroblast-like synoviocytes (FLSs) that may contribute to the pathogenesis of rheumatoid arthritis (RA). We report that FLSs express the S1P(1), S1P(2), and S1P(3) receptors. Moreover, exogenously applied S1P induces FLS 1) migration, 2) secretion of inflammatory cytokines/chemokines, and 3) protection from apoptosis. Using specific S1P receptor agonists/antagonists, we determined that S1P stimulates FLS migration through S1P(1) and S1P(3), induces cytokine/chemokine secretion through S1P(2) and S1P(3), and protects from cell apoptosis via S1P(1). The S1P-mediated cell motility and cytokine/chemokine secretion seem to be regulated by the p38 mitogen-activated protein kinase (MAPK), p42/44 MAPK, and Rho kinase signal transduction pathways. Interestingly, treatment of FLSs with tumor necrosis factor-alpha increases S1P(3) expression and correlates with the enhancement of S1P-induced cytokine/chemokine production. Our data suggest that S1P(1), S1P(2), and S1P(3) play essential roles in the pathogenesis of RA by modulating FLS migration, cytokine/chemokine production, and cell survival. Moreover, the cytokine-rich environment of the inflamed synovium may synergize with S1P signaling to exacerbate the clinical manifestations of this autoimmune disease."	"Prostacyclin induction by high-density lipoprotein (HDL) in vascular smooth muscle cells depends on sphingosine 1-phosphate receptors: effect of simvastatin. Prostacyclin (PGI2) is an important regulator of vascular homeostasis. Our goal was to analyze the role of sphingosine 1-phosphate (S1P) and its receptors in the up-regulation of cyclooxygenase-2 (Cox-2) induced by HDL in human vascular smooth muscle cells (VSMC). S1P induces Cox-2 expression in a time-and dose-dependent manner at concentrations (0.02-1 microM) compatible with those present in physiological HDL levels. The effect was mimicked by dihydro-S1P (DhS1P), a S1P derivative that only acts through cell surface S1P receptors. Desensitization of S1P receptors with S1P (or DhS1P) abolished HDL-induced Cox-2 up-regulation and PGI2 release. Inhibition of S1P receptors by suramin (inhibitor of S1P3), JTE013 (inhibitor of S1P2) or VPC23019 (inhibitor of S1P1 and S1P3) reduced the up-regulation of Cox-2 induced by HDL and S1P. The combination of suramin and JTE013 increased the inhibitory effect compared to that observed in cells treated with each inhibitor alone. siRNA against S1P2 or S1P3 significantly reduced the ability of HDL and S1P to up-regulate Cox-2. Simvastatin induced over-expression of S1P3 and potentiated the induction of Cox-2 expression produced by HDL (or S1P). Finally, suramin, JTE013 and VPC23019 inhibited p38 MAPK and ERK1/2 signaling pathways activated by HDL (or S1P) and the downstream activation of CREB, a key transcription factor involved in Cox-2 transcriptional up-regulation. These results indicate that S1P receptors, in particular S1P2 and S1P3, are involved in the Cox-2-dependent effects of HDL on vascular cells. Strategies aimed to therapeutically modulate S1P or S1P receptors could be useful to improve cardiovascular protection."	"Sphingosine kinases and sphingosine-1-phosphate are critical for transforming growth factor beta-induced extracellular signal-regulated kinase 1 and 2 activation and promotion of migration and invasion of esophageal cancer cells. Transforming growth factor beta (TGFbeta) plays a dual role in oncogenesis, acting as both a tumor suppressor and a tumor promoter. These disparate processes of suppression and promotion are mediated primarily by Smad and non-Smad signaling, respectively. A central issue in understanding the role of TGFbeta in the progression of epithelial cancers is the elucidation of the mechanisms underlying activation of non-Smad signaling cascades. Because the potent lipid mediator sphingosine-1-phosphate (S1P) has been shown to transactivate the TGFbeta receptor and activate Smad3, we examined its role in TGFbeta activation of extracellular signal-regulated kinases 1 and 2 (ERK1/2) and promotion of migration and invasion of esophageal cancer cells. Both S1P and TGFbeta activate ERK1/2, but only TGFbeta activates Smad3. Both ligands promoted ERK1/2-dependent migration and invasion. Furthermore, TGFbeta rapidly increased S1P, which was required for TGFbeta-induced ERK1/2 activation, as well as migration and invasion, since downregulation of sphingosine kinases, the enzymes that produce S1P, inhibited these responses. Finally, our data demonstrate that TGFbeta activation of ERK1/2, as well as induction of migration and invasion, is mediated at least in part by ligation of the S1P receptor, S1PR2. Thus, these studies provide the first evidence that TGFbeta activation of sphingosine kinases and formation of S1P contribute to non-Smad signaling and could be important for progression of esophageal cancer."	"Induction of vascular permeability by the sphingosine-1-phosphate receptor-2 (S1P2R) and its downstream effectors ROCK and PTEN. S1P acts via the S1PR family of G protein-coupled receptors to regulate a variety of physiological responses. Whereas S1P1R activates G(i)- and PI-3-kinase-dependent signals to inhibit vascular permeability, the related S1P2R inhibits the PI-3-kinase pathway by coupling to the Rho-dependent activation of the PTEN phosphatase. However, cellular consequences of S1P2R signaling in the vascular cells are not well understood. Selective signaling of the S1P2R was achieved by adenoviral-mediated expression in endothelial cells. Secondly, endogenously expressed S1P2R was blocked by the specific pharmacological antagonist JTE013. Activation of S1P2R in endothelial cells resulted in Rho-ROCK- and PTEN-dependent disruption of adherens junctions, stimulation of stress fibers, and increased paracellular permeability. JTE013 treatment of naive endothelial cells potentiated the S1P1R-dependent effects such as formation of cortical actin, blockade of stress fibers, stimulation of adherens junction assembly, and improved barrier integrity. This observation was extended to the in vivo model of vascular permeability in the rat lung: the S1P2R antagonist JTE013 significantly inhibited H2O2-induced permeability in the rat lung perfused model. S1P2R activation in endothelial cells increases vascular permeability. The balance of S1P1 and S1P2 receptors in the endothelium may determine the regulation of vascular permeability by S1P."	"Modulation of human arterial tone during pregnancy: the effect of the bioactive metabolite sphingosine-1-phosphate. Sphingosine-1-phosphate (S1P) is a potent bioactive lipid that has been implicated in cardiovascular disease. The objective of the present study was to determine the vasoactive effects and underlying mechanisms of S1P on adult human maternal arteries. The isometric tensions of the omental and myometrial arteries isolated from normal pregnant women at term were assessed in response to incremental doses of S1P in the presence or absence of the nitric oxide (NO) synthase inhibitor N(G)-nitro-L-arginine methyl ester (L-NAME). The putative involvement of Rho-associated kinases (ROCKs) in intact arteries and in those permeabilized with alpha-toxin, to study agonist-dependent calcium-sensitization, was assessed with the inhibitor Y27632. Real-time RT-PCR established the presence of mRNA encoding the S1P receptors (S1P(1) to (3)), previously known as endothelial differentiation gene receptors (EDG1, 3 and 5), in both artery types. S1P induced a dose-dependent increase in the isometric tension of all the arteries. Y27632 reduced constriction due to S1P in intact arteries and reduced S1P-induced sensitization of contraction to submaximal activating Ca(2+) in permeabilized arteries. L-NAME also modulated S1P vasoactive responses in a tissue-specific manner. Two subgroups of omental arteries were identified, one of which utilizes the NO pathway. In myometrial arteries, S1P evoked oscillatory constrictions, whereas pretreatment with L-NAME resulted in only tonic constrictions of unaltered peak magnitude. The prominent vasoactive actions of S1P in the maternal arteries of pregnant women are modulated by inhibitors of ROCKs and NO bioavailability. The subtle tissue-specific functional differences in the modulation of S1P actions by NO have important implications for vascular tone regulation by this bioactive circulatory metabolite during pregnancy."	"Sphingosine 1-phosphate enhances portal pressure in isolated perfused liver via S1P2 with Rho activation. Although structural changes are most important to determine vascular resistance in portal hypertension, vasoactive mediators also contribute to its regulation. Hepatic stellate cells (HSCs) are assumed to play a role in modulating intrahepatic vascular resistance based on their residence in the space of Disse and capacity to contract. Because sphingosine 1-phosphate (S1P) has been shown to stimulate HSC contractility, we wondered if S1P could regulate portal pressure. S1P at 0.5-5 microM increased portal pressure in isolated rat perfused liver. This effect was abrogated in the presence of a binding antagonist for S1P2, JTE-013. Perfusion of isolated rat liver with 5 microM S1P increased Rho activity in the liver, and co-perfusion with JTE-013 cancelled S1P-induced Rho activation. Because S1P is present in human plasma at approximately 0.2 microM, S1P might readily regulate portal vascular tone in physiological and pathological status. The antagonist for S1P2 merits consideration for treatment of portal hypertension."	"Ligand-dependent inhibition of B16 melanoma cell migration and invasion via endogenous S1P2 G protein-coupled receptor. Requirement of inhibition of cellular RAC activity. We investigated mechanisms for inhibition of B16 melanoma cell migration and invasion by sphingosine-1-phosphate (S1P), which is the ligand for the Edg family G protein-coupled receptors and also implicated as an intracellular second messenger. S1P, dihydro-S1P, and sphingosylphosphorylcholine inhibited B16 cell migration and invasion with the relative potencies expected as S1P2 receptor agonists. The S1P2-selective antagonist JTE013 completely abolished the responses to these agonists. In addition, JTE013 abrogated the inhibition by sphingosine, which is the S1P precursor but not an agonist for S1P receptors, indicating that the sphingosine effects were mediated via S1P2 stimulation, most likely by S1P that was converted from sphingosine. S1P induced inhibition and activation, respectively, of Rac and RhoA in B16 cells, which were abrogated by JTE013. Adenovirus-mediated expression of N17Rac mimicked S1P inhibition of migration, whereas C3 toxin pretreatment, but not Rho kinase inhibitors, reversed the S1P inhibition. Overexpression of S1P2 sensitized, and that of either S1P1 or S1P3 desensitized, B16 cells to S1P inhibition of Rac and migration. In JTE013-pretreated, S1P3-overexpressing B16 cells, S1P stimulated cellular RhoA but failed to inhibit either Rac or migration, indicating that RhoA stimulation itself is not sufficient for inhibition of migration. These results provide compelling evidence that endogenously expressed S1P2 negatively regulates cell motility and invasion through ligand-dependent reciprocal regulation of cellular Rac and RhoA activities. In the presence of JTE013, S1P instead stimulated Rac and migration in B16 cells that overexpress either S1P1 or S1P3, unveiling counteractions between S1P2 and S1P1 or S1P3 chemotactic receptor."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"STRC"	"nonsyndromic genetic deafness"	"Acetylated hyaluronic acid effectively enhances chondrogenic differentiation of mesenchymal stem cells seeded on electrospun PCL scaffolds. Construction of scaffolds which are similar to natural niches regarding both biochemical composition and mechanical characteristics has gained great attention in the field of tissue engineering. However, application of natural polymers, such as hyaluronic acid, is challenging in construction of scaffolds due to physicochemical properties, difficult to use in electrospinning and low cell adhesion rate. In this study, HA was acetylated to make it soluble in high polarity solvent and blended with PCL for construction of nanofibrous composite (ac-HA/PCL) scaffolds. Chondroinductivity of the constructed scaffolds was investigated using human mesenchymal stem cells (hADSCs). The presence of acetyl groups, as well as morphology and biocompatibility of the composite scaffolds were characterized by HNMR, FTIR, SEM and MTT assay respectively. Expression of cartilage-specific genes (SOX9, Col II and Aggrecan) was monitored by Real-time PCR. Significant increase in expression of Sox9 and Col II as the markers of chondrogenic differentiation as well as the results of Alcian blue staining, indicated the chondro-inductive potential of HA/PCL nanofibrous scaffolds. Acetylated HA was biocompatible with chondroinductivity features, therefore it not only had the positive characteristics of natural HA, but also enhanced the cellular attachment and application potential."	"Clinical features of hearing loss caused by STRC gene deletions/mutations in Russian population. Congenital sensorineural hearing loss is related to mutations in numerous genes encoding the structures of the inner ear in majority of the cases. Mutations in GJB2 gene are the most frequently identified causes of congenital nonsyndromal hearing loss. GJB2 gene testing became a routine clinical tool. For GJB2-negative patients new genetic approaches including methods based on new generation sequencing give a chance to identify mutations in other genes. The frequent reason of mild-to-moderate hearing loss such as the deletions/mutations of the gene STRC encoding stereocilin protein were recognized (OMIM: 606440). To evaluate the audiological features in hearing impaired patients with deletions and point mutations in the STRC gene. The group of 28 patients from 21 unrelated families with pathological mutations in the STRC gene underwent audiological examination. The description and analysis of the results of full audiological examination was provided. All patients initially had bilateral nonsyndromal sensorineural hearing loss. Among 11 homozygotes of large deletion harboring STRC to CATSPER2 genes were 7 male individuals indicating the presence of male infertility syndrome. In general, 7 children failed audiological screening and 4 children underwent audiological assessment in the age of 3 and 6 months. The most frequently hearing thresholds were registered between 35 and 55 dB that corresponds to mild-to-moderate hearing impairment. The average age of diagnostics was 7.9 years (ranged from 3 months to 45 years). In the majority of patients the audiological profiles were flat or descending with elevation of thresholds at middle and high frequencies and relatively preserved thresholds at low frequencies. Hearing thresholds are symmetric and stable with age. STRC-linked hearing loss is congenital, of mild and moderate severity. Special clinical and genetic approach for children who failed newborn hearing screening with mild-to-moderate hearing loss is necessary."	"[Hearing loss due to mutations or lack of the gene coding protein stereocillin]. The description of a clinical picture and audiological features at the hearing loss caused by changes of a STRC gene, coding protein stereocillin (MIM: 606440). Mutations in the numerous genes responsible for the inner ear proteins are the reason for congenital sensorineural hearing loss. The main cause of congenital bilateral sensorineural hearing loss in the Russian Federation are mutations in GJB2 gene it reaches up 68% of cases identified in infancy. GJB2 gene tests already became routine around the world. Possibilities of new methods based on sequencing of new generation (NGS, next generation sequencing) allow to conduct a research of more rare genes connected with a hearing impairment. The most often among GJB2 negative patients reveal mutations and deletion of a gene of STRC. Full audiological examination of 5 children and one adult with a hearing loss from 2 unrelated families is provided. Mutations in STRC gene were identified. All children are examined aged before 8 years, and 3 children failed universal audiological screening in maternity hospital, to two children screening was not carried out as they were born till 2009. The children with the sensorineural hearing loss connected with mutations and deletion of STRC gene failed hearing screening in maternity hospital because of the OAE is not registered, what indicates the congenital nature of a hearing loss. Recently it could not be noticed earlier because of slight increase of hearing thresholds and was regarded only as the early onset. Our data emphasize that the of thresholds from 35 to 60 dB in frequencies 0,5-4 kHz is common for mutations/deletions of STRC gene. The development of molecular genetics methods confirms the hereditary causes of GJB2-negative patients and expands indications for family counseling. Special approach for child with hearing loss so early revealed is necessary and the consultation of parents frightened of screening results is very important. Описание клинической картины и аудиологических особенностей при нарушениях слуха, обусловленных изменениями гена STRC, кодирующего белок стереоцилин (MIM: 606440). Основной причиной врожденной сенсоневральной тугоухости являются мутации в многочисленных генах, ответственных за работу белков внутреннего уха. В Российской Федерации в группе детей с врожденной несиндромальной тугоухостью мутации гена GJB2, кодирующего белок коннексин 26, выявляются в 70% случаев. Исследование гена GJB2 уже стало рутинным во всем мире. Возможности современных методов на основе технологий секвенирования нового поколения (NGS, next generation sequencing) позволяют провести исследование более редких генов, связанных с нарушением слуха. При этом наиболее часто среди GJB2-негативных пациентов выявляют мутации и делеции гена STRC. Проведено полное аудиологическое обследование 5 детей с нарушением слуха и одного взрослого из 2 неродственных семей. Все дети обследованы в возрасте до 8 лет, причем 3 ребенка не прошли универсальный аудиологический скрининг в роддоме, двум старшим детям скрининг не проводился, поскольку они родились до 2009 года. У всех обследованных были выявлены патогенные мутации в гене STRC (делеции всего гена и/или точковые мутации). Нами показано, что у детей с сенсоневральной тугоухостью, связанной с мутациями и делециями гена STRC, уже в роддоме ОАЭ не регистрируется, указывая на врожденный характер нарушения слуха. Характерно преобладание порогов от 35 до 60 дБ в частотах 0,5—4 кГц, отмечена стабильность порогов слышимости в течение всего периода наблюдения за старшими детьми. Развитие методов молекулярной генетики позволяет подтвердить наследственные причины у «GJB2-негативных» пациентов и расширить показания к консультированию семей в отношении риска повторения нарушения слуха. Необходим особый подход при консультировании родителей ребенка со столь рано выявленным нарушением слуха, напуганных результатами скрининга."	"Electrical stimulation induces differentiation of human cardiosphere-derived cells (hCDCs) to committed cardiomyocyte. Logistic complexities of heart transplantation embossed the necessity of utilizing novel methods, which enable heart regeneration. Human cardiosphere-derived cells (hCDCs) are taken into consideration as a promising cell resource in cell therapy in recent years. In this study, we designed an electrochemical stimulation system, which sends square pulses to the hCDCs and records their electrical response. Morphology, viability and differentiation of hCDCs are monitored at certain time courses of the treatment. Differentiating hCDCs aligned perpendicularly with respect to the direction of applied electric current, and obtained a spindle-like morphology, while they remained viable. At the same time, specific cardiac marker genes including GATA4, cTnT and α-MHC showed a considerable up-regulation. Our findings confirm that hCDCs differentiate to committed cardiomyocytes when hCDCs receive an electrical energy of 0.06 - 0.12 Wh. This amount of electrical energy could be applied to the stem cells using versatile electrical stimulation patterns via commercially available devices."	"Significant Mendelian genetic contribution to pediatric mild-to-moderate hearing loss and its comprehensive diagnostic approach. Timely diagnosis and identification of etiology of pediatric mild-to-moderate sensorineural hearing loss (SNHL) are both medically and socioeconomically important. However, the exact etiologic spectrum remains uncertain. We aimed to establish a genetic etiological spectrum, including copy-number variations (CNVs) and efficient genetic testing pipeline, of this defect. A cohort of prospectively recruited pediatric patients with mild-to-moderate nonsyndromic SNHL from 2014 through 2018 (n = 110) was established. Exome sequencing, multiplex ligation-dependent probe amplification (MLPA), and nested customized polymerase chain reaction (PCR) for exclusion of a pseudogene, STRCP, from a subset (n = 83) of the cohort, were performed. Semen analysis was also performed to determine infertility (n = 2). Genetic etiology was confirmed in nearly two-thirds (52/83 = 62.7%) of subjects, with STRC-related deafness (n = 29, 34.9%) being the most prevalent, followed by MPZL2-related deafness (n = 9, 10.8%). This strikingly high proportion of Mendelian genetic contribution was due particularly to the frequent detection of CNVs involving STRC in one-third (27/83) of our subjects. We also questioned the association of homozygous continuous gene deletion of STRC and CATSPER2 with deafness-infertility syndrome (MIM61102). Approximately two-thirds of sporadic pediatric mild-to-moderate SNHL have a clear Mendelian genetic etiology, and one-third is associated with CNVs involving STRC. Based on this, we propose a new guideline for molecular diagnosis of these children."	"The biomedical potential of cellulose acetate/polyurethane nanofibrous mats containing reduced graphene oxide/silver nanocomposites and curcumin: Antimicrobial performance and cutaneous wound healing. In this study, nanofibrous scaffolds were prepared from polyurethane and cellulose acetate using electrospinning. Reduced graphene oxide/silver nanocomposites, rGO/Ag, were also used into the mats due to the strong antibacterial activity of rGO/Ag nanocomposites. In order to prevent the agglomeration of silver nanoparticles, AgNPs, the nanoparticles were decorated onto the reduced graphene oxide (rGO) sheets. Initially, Graphene oxide, briefly GO, was synthesized by the improved Hummer method. Then, nanocomposites of reduced graphene oxide were decorated with Ag and were fabricated via a green and facile hydrothermal method. Thereafter, the scaffold containing rGO/Ag nanocomposites, curcumin or both of them were prepared using the electrospinning method. The obtained scaffolds were characterized by scanning electron microscopy (SEM), contact angle, tensile analysis, porosity, and water vapor transmission rate (WVTR). 3-[4,5-Dimethylthiazol-2-yl]-2,5-diphenyl tetrazolium bromide assay, MTT, confirmed the biocompatibility of the composite nanofibers. The scaffolds were able to hinder both of the Gram-negative and Gram-positive bacteria through direct contact with them. In vivo histopathological studies indicated that the scaffold incorporated rGO/Ag nanocomposites and curcumin has the most effect on wound healing and can promote the healing rate of artificial wounds, which indicates the good biomedical potential of nanomaterial in wound healing."	"A highly sensitive and specific workflow for detecting rare copy-number variants from exome sequencing data. Exome sequencing (ES) is a first-tier diagnostic test for many suspected Mendelian disorders. While it is routine to detect small sequence variants, it is not a standard practice in clinical settings to detect germline copy-number variants (CNVs) from ES data due to several reasons relating to performance. In this work, we comprehensively characterized one of the most sensitive ES-based CNV tools, ExomeDepth, against SNP array, a standard of care test in clinical settings to detect genome-wide CNVs. We propose a modified ExomeDepth workflow by excluding exons with low mappability prior to variant calling to drastically reduce the false positives originating from the repetitive regions of the genome, and an iterative variant calling framework to assess the reproducibility. We used a cohort of 307 individuals with clinical ES data and clinical SNP array to estimate the sensitivity and false discovery rate of the CNV detection using exome sequencing. Further, we performed targeted testing of the STRC gene in 1972 individuals. To reduce the number of variants for downstream analysis, we performed a large-scale iterative variant calling process with random control cohorts to assess the reproducibility of the CNVs. The modified workflow presented in this paper reduced the number of total variants identified by one third while retaining a higher sensitivity of 97% and resulted in an improved false discovery rate of 11.4% compared to the default ExomeDepth pipeline. The exclusion of exons with low mappability removes 4.5% of the exons, including a subset of exons (0.6%) in disease-associated genes which are intractable by short-read next-generation sequencing (NGS). Results from the reproducibility analysis showed that the clinically reported variants were reproducible 100% of the time and that the modified workflow can be used to rank variants from high to low confidence. Targeted testing of 30 CNVs identified in STRC, a challenging gene to ascertain by NGS, showed a 100% validation rate. In summary, we introduced a modification to the default ExomeDepth workflow to reduce the false positives originating from the repetitive regions of the genome, created a large-scale iterative variant calling framework for reproducibility, and provided recommendations for implementation in clinical settings."	"Molecular epidemiology of Chinese Han deaf patients with bi-allelic and mono-allelic GJB2 mutations. Recessive mutations in GJB2 is the most common cause of genetic hearing loss worldwide. The aim of this study is to determine the spectrum and frequency of GJB2 variants in Chinese Han deaf patients and to investigate the underlying causative genes in patients with mono-allelic GJB2 mutations. We analyzed the mutation screening results of GJB2 in 1852 Chinese Han probands with apparently autosomal-recessive hearing loss in our laboratory. Targeted next-generation sequencing of 139 known deafness-related genes were performed in 44 probands with mono-allelic GJB2 mutations. Bi-allelic GJB2 mutations was identified in 25.65% of patients, in which the c.235delC (p.L79Cfs*3) mutation is the most frequent cause for both severe-to-profound (84.93%) and mild-to-moderate hearing loss (54.05%), while the c.109G &gt; A (p.V37I) mutation is another frequent cause for mild-to-moderate hearing loss (40.54%). In 3.89% of patients only one mutant allele can be identified in GJB2. Targeted next generation sequencing in 44 such probands revealed digenic heterozygous mutations in GJB2/GJB6 and GJB2/GJB3 as the likely pathogenic mechanism in three probands. In 13 probands, on the other hand, pathogenic mutations in other deafness-associated genes (STRC, EYA1, MITF, PCDH15, USH2A, MYO15A, CDH23, OTOF, SLC26A4, SMPX, and TIMM8A) can be identified as the independent genetic cause, suggesting that the mono-allelic GJB2 mutations in those probands is likely co-incidental. Our results demonstrated that GJB2 should be a primary target for mutation screening in Chinese Han deaf patients, and those with mono-allelic GJB2 mutations should be further screened by next generation sequencing."	"Genetic Testing for Congenital Bilateral Hearing Loss in the Context of Targeted Cytomegalovirus Screening. To determine the prevalence of children with genetic hearing loss who are cytomegalovirus (CMV) positive at birth and the relative proportion of genetic and CMV etiology among children with congenital bilateral hearing loss. Database review. We performed a review of clinical test results for patients undergoing comprehensive genetic testing for all known hearing loss-associated genes from January 2012 to January 2019. This population was reviewed for reported CMV status and genetic causes of congenital bilateral hearing loss. In the OtoSCOPE database, 61/4,282 patients were found to have a documented CMV status, and 661/4282 had documented bilateral congenital hearing loss. Two patients were identified who had both a positive CMV result and a genetic cause for their hearing loss. Forty-eight percent of patients with bilateral congenital hearing loss (320/661) were found to have a genetic etiology. In 62% (198/320), the hearing loss was associated with pathogenic variants in GJB2, STRC, SLC26A4 or an Usher syndrome-associated gene. We estimate that ~2% of CMV-positive newborns with hearing loss have a known genetic variant as a cause. The subcohort of CMV-positive newborns with symmetric mild-to-moderate bilateral hearing loss will have at least a 7% chance of having pathogenic gene variants associated with hearing loss. In a CMV-positive neonate who failed their newborn hearing screen bilaterally, genetic screening needs to be considered for accurate diagnosis and possible deferment of antiviral treatment. 4 Laryngoscope, 2020."	"A phase II multi-strata study of lurbinectedin as a single agent or in combination with conventional chemotherapy in metastatic and/or unresectable sarcomas. Chemotherapy objective response rates (ORRs) in metastatic soft tissue sarcoma (STS) are typically 20-40% with median progression-free survival (PFS) less than 6 months. Lurbinectedin is a new anticancer agent under investigation. The primary objective of this three-arm, phase II study was to determine the disease control rate (DCR = ORR + stable disease [SD]) at 24 weeks of lurbinectedin alone or with chemotherapy in STS. Eligible patients included adults with ≤2 prior cytotoxic therapies. Study cohorts were: stratum A (StrA; anthracycline-naive), lurbinectedin/doxorubicin; stratum B (StrB; prior anthracycline), lurbinectedin/gemcitabine; stratum C (StrC; prior anthracycline/gemcitabine) lurbinectedin monotherapy. Each stratum was analysed separately by Simon two-stage design. Forty-two patients were accrued (StrA = 20, StrB = 10, StrC = 12) including leiomyosarcoma [LMS] (n = 20), synovial sarcoma [SS](n = 4), malignant peripheral nerve sheath tumour (n = 3) and other STS histologies (n = 15). For StrA there were seven partial responses (PR) plus one stable disease (SD) at 24 weeks. For StrB, two patients met the 24-week DCR including one PR (leiomyosarcoma) and one SD (desmoplastic small round cell tumour [DSRCT]). StrB did not continue to the second stage. In StrC, no patients met the primary end-point. Median progression-free survival (PFS) was: StrA = 4.2 months (90% CI 1.4-7.8), StrB = 1.7 months (90% confidence interval (CI) 1.0-7.4), and StrC = 1.3 months (90% CI 1.1-3.0). Lurbinectedin as a single agent or with chemotherapy was well tolerated with haematologic adverse events (AE's) as the most common toxicity. There were no treatment-related deaths. The combination of lurbinectedin/doxorubicin reached the DCR end-point with seven PR and one patient with SD (ORR 35.0%, 24-week DCR 40.0%). Evidence of drug benefit was seen in leiomyosarcoma, dedifferentiated liposarcoma (DDLS), myxoid liposarcoma (MLS), synovial sarcoma (SS), and desmoplastic small round cell tumour (DSRCT). TRIAL REGISTRATION: clinicaltrials.gov; NCT02448537."	"Genetic Deciphering of Early-Onset and Severe Retinal Dystrophy Associated with Sensorineural Hearing Loss. The specific association of Leber congenital amaurosis (LCA) or early-onset severe retinal dystrophy (LCA-like) with sensorineural hearing loss (SHL) is uncommon. Recently, we ascribed some of these distinctive associations to dominant and de novo mutations in the β-tubulin 4B isotype-encoding gene (TUBB4B), providing a link between a sensorineural disease and anomalies in microtubules behavior. Here, we report 12 sporadic cases with LCA/SHL or LCA-like/SHL and no TUBB4B mutation. Trio-based whole exome sequencing (WES) identified disease-causing mutations in 5/12 cases. Four out of five carried biallelic mutations in PEX1 (1/4) or PEX6 (3/4), involved in peroxisome biogenesis disorders from Zellweger syndrome characterized by severe neurologic and neurosensory dysfunctions, craniofacial abnormalities, and liver dysfunction to Heimler syndrome associating SHL, enamel hypoplasia of the secondary dentition, nail abnormalities, and occasional retinal disease. Upon reexamination, the index case carrying PEX1 mutations, a 4-year-old girl, presented additional symptoms consistent with Zellweger syndrome. Reexamination of individuals with PEX6 mutations (1/3 unavailable) revealed normal nails but enamel hypoplasia affecting one primary teeth in a 4-year-old girl and severe enamel hypoplasia of primary teeth hidden by dental prosthesis in a 50-year-old male, describing a novel PEX6-associated disease of the Zellweger/Heimler spectrum. Finally, hemizygosity for a CACNA1F mutation was identified in an 18-year-old male addressed for LCA/SHL, redirecting the retinal diagnosis to congenital stationary night blindness (CSNB2A). Consistent with the pure CSNB2A retinal involvement, SHL was ascribed to biallelic mutations in another gene, STRC, involved in nonprogressive DFNB16 deafness."	"Otogelin, otogelin-like, and stereocilin form links connecting outer hair cell stereocilia to each other and the tectorial membrane. The function of outer hair cells (OHCs), the mechanical actuators of the cochlea, involves the anchoring of their tallest stereocilia in the tectorial membrane (TM), an acellular structure overlying the sensory epithelium. Otogelin and otogelin-like are TM proteins related to secreted epithelial mucins. Defects in either cause the DFNB18B and DFNB84B genetic forms of deafness, respectively, both characterized by congenital mild-to-moderate hearing impairment. We show here that mutant mice lacking otogelin or otogelin-like have a marked OHC dysfunction, with almost no acoustic distortion products despite the persistence of some mechanoelectrical transduction. In both mutants, these cells lack the horizontal top connectors, which are fibrous links joining adjacent stereocilia, and the TM-attachment crowns coupling the tallest stereocilia to the TM. These defects are consistent with the previously unrecognized presence of otogelin and otogelin-like in the OHC hair bundle. The defective hair bundle cohesiveness and the absence of stereociliary imprints in the TM observed in these mice have also been observed in mutant mice lacking stereocilin, a model of the DFNB16 genetic form of deafness, also characterized by congenital mild-to-moderate hearing impairment. We show that the localizations of stereocilin, otogelin, and otogelin-like in the hair bundle are interdependent, indicating that these proteins interact to form the horizontal top connectors and the TM-attachment crowns. We therefore suggest that these 2 OHC-specific structures have shared mechanical properties mediating reaction forces to sound-induced shearing motion and contributing to the coordinated displacement of stereocilia."	"Clinical utility of next-generation sequencing in the aetiological diagnosis of sensorineural hearing loss in a Childhood Hearing Loss Unit. Sensorineural hearing loss (SNL) is the most prevalent sensory deficit in our environment. Next generation genomic sequencing (NGS) enables an aetiological diagnosis in a high percentage of patients. Our pilot study shows the results of the systematic application of NGS in a Childhood Hearing Loss Unit, as well as its implications for the clinical management of patients and their families. We included 27 patients diagnosed with SNL between 2014 and 2017, in which an environmental cause was ruled out. The genetic test consisted of a panel of genes analyzed by NGS (OTOgenicsTM panel). This panel has been designed to include genes associated with sensorineural or mixed hearing loss, early onset or late, syndromic and non-syndromic, regardless of their inheritance pattern. A genetic diagnosis was obtained in 56% (15/27) of the patients (62% in the case of bilateral SNL). Of the patients, 5/27 (19%) presented pathogenic variants in the GJB2 gene and the rest pathogenic and / or probably pathogenic variants in other genes associated with isolated SNL (PR2X2, TECTA and STRC), with syndromic SNL (CHD7, GATA3, COL4A5, MITF and SOX10) or with syndromic and non-syndromic SNL (BSND, ACTG1 and CDH23). The aetiological diagnosis of SNL is a challenge in clinical practice. Our series demonstrates that it is possible to implement genetic diagnosis in the care routine and that this information has prognostic and therapeutic implications."	"Rapid screening of copy number variations in STRC by droplet digital PCR in patients with mild-to-moderate hearing loss. Copy number variations (CNVs) are commonly reported in STRC, the causal gene for DFNB16. Various techniques are used clinically for CNV detection, and droplet digital PCR (ddPCR) provides highly precise absolute quantification of DNA copy number. We aimed to validate the feasibility and efficiency of ddPCR in combination with long-range PCR (LR-PCR) in identifying CNVs and mutations in STRC. Additionally, we determined the frequency of CNVs and mutations in STRC in Japanese patients with mild-to-moderate hearing loss. We evaluated 84 unrelated Japanese patients with mild-to-moderate bilateral idiopathic or autosomal recessive nonsyndromic sensorineural hearing loss. The ratio of STRC copy number to the copy number of the internal control RPP30 ranged from 0.949 to 1.009 (0.989 ± 0.017) in 77 patients; it ranged from 0.484 to 0.538 (0.509 ± 0.024) in five patients and was 0.000 in two patients, indicating heterozygous and homozygous deletions, respectively. The copy number deletion prevalence rates were 7.7% and 0.9% in the patients and healthy controls, respectively. In combination with LR-PCR, ddPCR revealed that at least three patients (3.6%) had STRC-related hearing loss. Detecting STRC CNVs by ddPCR was rapid, precise, and cost-effective and facilitated the identification of STRC CNVs."	"Moderate sensorineural hearing loss is typical for DFNB16 caused by various types of mutations affecting the STRC gene. Hearing loss is the most frequent sensory disorder and is genetically extremely heterogeneous. By far the most frequent cause of nonsyndromic autosomal recessive hearing loss (AR-NSHL) are biallelic pathogenic mutations in the GJB2 gene causing DFNB1. The worldwide search for the second most common type of AR-NSHL took almost two decades. Recently reported alterations (mostly deletions) of the STRC gene, also named DFNB16, seem to be the second most frequent cause of AR-NSHL. Genetic testing of STRC is very challenging due to the highly homologous pseudogene. Anecdotal evidence from single patients shows that STRC mutations have their typical audiological findings and patients usually have moderate hearing loss. The aim of this study is to discover if audiological findings in patients with biallelic pathogenic mutations affecting STRC have the characteristic features and shape of audiological curves and if there are genotype/phenotype correlations in relation to various types of STRC mutations. Eleven hearing loss patients with pathogenic mutations on both alleles of the STRC gene were detected during routine genetic examination of AR-NSHL patients. Audiological examination consisted of pure tone audiometry, stapedial reflexes, tympanometry and otoacoustic emission tests. The threshold of pure tone average (PTA) was 46 dB and otoacoustic emissions were not detectable in these DFNB16 patients. All patients were without vestibular irritation or asymmetry. Moderate sensorineural hearing loss is typical for DFNB16-associated hearing loss and there are no significant differences in audiological phenotypes among different types of mutations affecting STRC."	"Respiratory and muscular response to acute non-metabolic fatigue during ramp incremental cycling. We tested the hypothesis that acute, non-metabolic fatigue, by reducing maximal power output and possibly increasing muscle recruitment at a given exercise intensity, will reduce indexes of exercise tolerance during incremental cycling. Ten subjects performed three ramp incremental tests respectively after static stretching (STRC), dropjumps (DJ) or control (CTRL). Fatigue was assessed as reduction in maximal power output (sprintPO) during isokinetic sprints. During the ramps we measured: oxygen consumption (VO2), power output (PO), and surface electromyography. sprintPO was reduced after STRC and DJ (p = 0.007) yet not after CTRL. During the ramps, the interventions augmented muscle excitation vs CTRL (p ≤ 0.001). Peak PO and VO2 were reduced after STRC (302 ± 39W p = 0.033, 3365 ± 465 ml/min p = 0.015) and DJ (300 ± 37W p = 0.023, 3413 ± 476 ml/min p = 0.094) vs CTRL (314 ± 41W, 3505 ± 486 ml/min). Interventions were associated with early occurrence of the ventilatory thresholds and increased VO2 vs CTRL (p = 0.029). The physiological response after acute non-metabolic fatigue suggests a link between exercise intolerance and the decreased ability to produce force."	"Transcriptome analysis identifies a robust gene expression program in the mouse intestinal epithelium on aging. The intestinal epithelium undergoes constant regeneration driven by intestinal stem cells. How old age affects the transcriptome in this highly dynamic tissue is an important, but poorly explored question. Using transcriptomics on sorted intestinal stem cells and adult enterocytes, we identified candidate genes, which change expression on aging. Further validation of these on intestinal epithelium of multiple middle-aged versus old-aged mice highlighted the consistent up-regulation of the expression of the gene encoding chemokine receptor Ccr2, a mediator of inflammation and several disease processes. We observed also increased expression of Strc, coding for stereocilin, and dramatically decreased expression of Rps4l, coding for a ribosome subunit. Ccr2 and Rps4l are located close to the telomeric regions of chromosome 9 and 6, respectively. As only few genes were differentially expressed and we did not observe significant protein level changes of identified ageing markers, our analysis highlights the overall robustness of murine intestinal epithelium gene expression to old age."	"Prenatal cytogenomic identification and molecular refinement of compound heterozygous STRC deletion breakpoints. Here, we report the prenatal detection of a compound heterozygous deletion at chromosome 15q15.3 by clinical chromosomal microarray (CMA) testing that included the CATSPER2 male infertility gene. However, given the low resolution of CMA at this homologous locus, it was unclear if the neighboring STRC hearing loss gene was also affected. Therefore, we developed a novel allele-specific PCR strategy, which narrowed the proximal breakpoint of the maternally inherited deletion to a 310 bp interval that was 440 bp upstream from the STRC transcription start site."	"Systematic Review of Hearing Loss Genes in the African American Population. Literature review of the genetic etiology of hearing loss (HL) in the African American (AA) population. PubMed, EBSCO, and CINAHL were accessed from 1966 to 2018. PRISMA guidelines were followed. Search terms included permutations of &quot;hearing loss,&quot; &quot;African American,&quot; &quot;black,&quot; and &quot;genetic&quot;; &quot;African American&quot; was then cross-referenced against documented HL genes. AA subjects included in multiethnic cohorts of genetic HL testing were identified by searching the key terms &quot;hearing loss&quot; and &quot;ethnic cohort&quot; and &quot;genetic.&quot; The Q-Genie tool was used in the quality assessment of included studies. An allele frequency meta-analysis of pathogenic GJB2 variants in the AA population was performed and stratified by hearing status. Four hundred seventeen articles were reviewed, and 26 met our inclusion criteria. Ten studies were included in the GJB2 meta-analysis. In the general AA population, pathogenic GJB2 variants are rare, including the 35delG allele, which displayed a carrier frequency of 0.05%. Pathogenic variants were discovered in seven nonsyndromic HL genes (GJB2, MYO3A, TECTA, STRC, OTOF, MYH14, TMC1), eight syndromic HL genes, and one mitochondrial HL gene. Recent comprehensive genetic testing using custom genetic HL testing platforms has yielded only a 26% molecular diagnosis rate for HL etiologies in the AA population. Investigators should be encouraged to provide an ethnic breakdown of results. Sparse literature and poor diagnosis rates indicate that genes involved in HL in the AA population have yet to be identified. Future explorative investigations using next-generation sequencing technologies, such as whole-exome sequencing, into the AA population are warranted."	"Cost-Effective Double-Layer Hydrogel Composites for Wound Dressing Applications. Although poly vinyl alcohol-poly acrylic acid (PVA-PAA) composites have been widely used for biomedical applications, their incorporation into double-layer assembled thin films has been limited because the interfacial binding materials negatively influence the water uptake capacity of PVA. To minimize the effect of interfacial binding, a simple method for the fabrication of a double-layered PVA-PAA hydrogel was introduced, and its biomedical properties were evaluated in this study. Our results revealed that the addition of PAA layers on the surface of PVA significantly increased the swelling properties. Compared to PVA, the equilibrium swelling ratio of the PVA-PAA hydrogel increased (p = 0.035) and its water vapour permeability significantly decreased (p = 0.04). Statistical analysis revealed that an increase in pH value from 7 to 10 as well as the addition of PAA at pH = 7 significantly increased the adhesion force (p &lt; 0.04). The mechanical properties-including ultimate tensile strength, modulus, and elongation at break-remained approximately untouched compared to PVA. A significant increase in biocompatibility was found after day 7 (p = 0.016). A higher release rate for tetracycline was found at pH = 8 compared to neutral pH."	"Molecular diagnosis of glycogen storage disease type I: a review. Glycogen storage disease type I (GSD I) is a relatively rare metabolic disease with variable clinical intensity. It is caused by deficient activity of the glucose 6-phosphatase enzyme (GSD Ia) or a deficiency in the microsomal transport proteins for glucose 6-phosphate (GSD Ib). We searched the most recent English literature (1997-2017) regarding any article with the key word of &quot;glycogen storage disease type I&quot; in PubMed, Science Direct, Scopus, EMBASE, and Google Scholar. We will present all of the published articles about the molecular genetic characteristics and old-to-new diagnostic methods used to identify GSD I in regard of methodology, advantages and disadvantages. Diagnosis of GSD type I and its variants is challenging because it is a genetically heterogeneous disorder. Many molecular methods have been used to diagnose GSD I most of which have been based on mutation detection. Therefore, we discuss complete aspects of all of the molecular diagnostic tests, which have been used in GSD type I so far. With the advent of high throughput advanced molecular tests, molecular diagnosis is going to be an important platform for the diagnosis of storage and metabolic diseases such as GSD type I. Next-generation sequencing, in combination with the biochemical tests and clinical signs and symptoms create an accurate, reliable and feasible method. It can overcome the difficulties by the diagnosis of diseases with broad clinical and genetic heterogeneity."	"Resolving the full spectrum of human genome variation using Linked-Reads. Large-scale population analyses coupled with advances in technology have demonstrated that the human genome is more diverse than originally thought. To date, this diversity has largely been uncovered using short-read whole-genome sequencing. However, these short-read approaches fail to give a complete picture of a genome. They struggle to identify structural events, cannot access repetitive regions, and fail to resolve the human genome into haplotypes. Here, we describe an approach that retains long range information while maintaining the advantages of short reads. Starting from ∼1 ng of high molecular weight DNA, we produce barcoded short-read libraries. Novel informatic approaches allow for the barcoded short reads to be associated with their original long molecules producing a novel data type known as &quot;Linked-Reads&quot;. This approach allows for simultaneous detection of small and large variants from a single library. In this manuscript, we show the advantages of Linked-Reads over standard short-read approaches for reference-based analysis. Linked-Reads allow mapping to 38 Mb of sequence not accessible to short reads, adding sequence in 423 difficult-to-sequence genes including disease-relevant genes STRC, SMN1, and SMN2 Both Linked-Read whole-genome and whole-exome sequencing identify complex structural variations, including balanced events and single exon deletions and duplications. Further, Linked-Reads extend the region of high-confidence calls by 68.9 Mb. The data presented here show that Linked-Reads provide a scalable approach for comprehensive genome analysis that is not possible using short reads alone."	"Frequency and clinical features of hearing loss caused by STRC deletions. Sensorineural hearing loss is a common deficit and mainly occurs due to genetic factors. Recently, copy number variants (CNVs) in the STRC gene have also been recognized as a major cause of genetic hearing loss. We investigated the frequency of STRC deletions in the Japanese population and the characteristics of associated hearing loss. For CNV analysis, we employed a specialized method of Ion AmpliSeq<sup>TM</sup> sequencing, and confirmed the CNV results via custom array comparative genomic hybridization. We identified 17 probands with STRC homozygous deletions. The prevalence of STRC homozygous deletions was 1.7% in the hearing loss population overall, and 4.3% among mild-to-moderate hearing loss patients. A 2.63% carrier deletion rate was identified in both the hearing loss and the control population with normal hearing. In conclusion, our results show that STRC deletions are the second most common cause of mild-to-moderate hearing loss after the GJB2 gene, which accounts for the majority of genetic hearing loss. The phenotype of hearing loss is congenital and appears to be moderate, and is most likely to be stable without deterioration even after the age of 50. The present study highlights the importance of the STRC gene as a major cause of mild-to-moderate hearing loss."	"Cochlear outer hair cell horizontal top connectors mediate mature stereocilia bundle mechanics. Outer hair cell (OHC) stereocilia bundle deflection opens mechanoelectrical transduction channels at the tips of the stereocilia from the middle and short rows, while bundle cohesion is maintained owing to the presence of horizontal top connectors. Here, we used a quantitative noncontact atomic force microscopy method to investigate stereocilia bundle stiffness and damping, when stimulated at acoustic frequencies and nanometer distances from the bundle. Stereocilia bundle mechanics were determined in stereocilin-deficient mice lacking top connectors and with detached tectorial membrane (Strc<sup>-/-</sup>/Tecta<sup>-/-</sup> double knockout) and heterozygous littermate controls (Strc<sup>+/-</sup>/Tecta<sup>-/-</sup>). A substantial decrease in bundle stiffness and damping by ~60 and ~74% on postnatal days P13 to P15 was observed when top connectors were absent. Additionally, we followed bundle mechanics during OHC top connectors development between P9 and P15 and quantified the observed increase in OHC bundle stiffness and damping in Strc<sup>+/-</sup>/Tecta<sup>-/-</sup> mice while no significant change was detected in Strc<sup>-/-</sup>/Tecta<sup>-/-</sup> animals."	"Clinical Exome Sequencing Identifies a Frameshift Mutation Within the STRC Gene in a United Arab Emirates Family with Profound Nonsyndromic Hearing Loss. Autosomal recessive nonsyndromic hearing loss (ARNSHL) is the most common form of hereditary deafness. Despite its frequency, the diagnosis of this disorder continues to be a challenging task given its extreme genetic heterogeneity. The purpose of this study was to identify the causative mutation in a consanguineous United Arab Emirates (UAE) family with ARNSHL. Clinical exome sequencing (CES) followed by segregation analysis via Sanger sequencing was used to identify the causative mutation. In addition, 109 deaf individuals and 50 deafness-free controls from the UAE population were screened for the identified mutation. CES identified the STRC frameshift mutation c.4510del (p.Glu1504Argfs*32) as the causative mutation in this family. Moreover, segregation analysis confirmed the above finding. In addition, the absence of this variant in 109 unrelated deaf individuals and 50 healthy controls indicates that it is rare in the UAE population. The present study represents the first STRC mutation reported in the UAE population. It also reinforces the power of next-generation sequencing in the diagnosis of heterogenous disorders such as nonsyndromic hearing loss."	"Hair-Bundle Links: Genetics as the Gateway to Function. Up to five distinct cell-surface specializations interconnect the stereocilia and the kinocilium of the mature hair bundle in some species: kinocilial links, tip links, top connectors, shaft connectors, and ankle links. In developing hair bundles, transient lateral links are prominent. Mutations in genes encoding proteins associated with these links cause Usher deafness/blindness syndrome or nonsyndromic (isolated) forms of human hereditary deafness, and mice with constitutive or conditional alleles of these genes have provided considerable insight into the molecular composition and function of the different links. We describe the structure of these links and review evidence showing CDH23 and PCDH15 are components of the tip, kinocilial, and transient-lateral links, that stereocilin (STRC) and protein tyrosine phosphatase (PTPRQ) are associated with top and shaft connectors, respectively, and that USH2A and ADGRV1 are associated with the ankle links. Whereas tip links are required for mechanoelectrical transduction, all link proteins play key roles in the normal development and/or the maintenance of hair bundle structure and function. Recent crystallographic and single-particle analyses of PCDH15 and CDH23 provide insight as to how the structure of tip link may contribute to the elastic element predicted to lie in series with the hair cell's mechanoelectrical transducer channel."	"Phenotypic Characterization of DFNB16-associated Hearing Loss. We hypothesized that patients with DFNB16 caused hearing loss show characteristical audiological findings depending on genetic results. Hearing loss belongs to the most frequent congenital diseases. In 50-70% of individuals, hearing loss is caused by genetic defects. DFNB1 (deafness, neurosensory, autosomal-recessive) is the most frequently affected locus. Despite its great genetic heterogeneity, comprehensive analysis of genes like STRC, encoding stereocilin (DFNB16) is possible. The genetic architecture of the DFNB16 locus is challenging and requires a unique molecular genetic testing assay. The aim of the study is a systematic characterization of the audiological phenotype in DFNB16-positive patients. Since 2011, 290 patients with suspicion of inherited hearing loss received a human genetic exploration. Eighty two DFNB1-negative patients advanced to further testing in the DFNB16 locus. STRC-positive patients obtained complete audiological diagnostic workup. Additionally, epidemiological data was collected. Nine of 82 (11%) of the examined patients (mean age 5 yr) showed mutations in the STRC (3 homozygous, 6 compound heterozygous). Aside from a moderate hearing loss in the pure tone audiogram, auditory brainstem response thresholds were 40-50 dB nHL. Otoacoustic emissions were detectable in only one patient. Examination of the DFNB16-locus should be a standard diagnostic test after negative DFNB1-gene screening result. Notably, DFNB16-associated hearing loss can be audiologically characterized as moderate sensorineural hearing loss in the main speech field with absent otoacoustic emissions. Our study is the first to correlate audiological findings with genetic results in patients with hearing loss due to STRC."	"Increased expression of mir-301a in PBMCs of patients with relapsing-remitting multiple sclerosis is associated with reduced NKRF and PIAS3 expression levels and disease activity. Most of the multiple sclerosis (MS) patients are initially diagnosed with relapsing remitting multiple sclerosis (RRMS). Th17 cells and macrophages have been shown to play critical roles in pathogenesis of MS and initiation of CNS tissue damage. MiR-301a have recently been exposed as an activator of STAT3 in Th17 cells as well as an activator of NF-κB in macrophages by targeting PIAS3 and NKRF correspondingly. However, the possible role of miR-301a in RRMS has not yet been elucidated. Herewith, for the first time, we have studied the expression of miR-301a, NKRF and PIAS3 by quantitative real-time PCR and western blotting method in peripheral blood mononuclear cells (PBMCs) of 71 RRMS patients, including two groups of patients in relapse phase (n = 44) and a group of remitting phase patients (n = 28) in comparison to healthy volunteers (n = 28). In this work, we demonstrate a significant upregulation of miR-301a in relapse phase of MS patients compared to healthy controls and remitting phase patients (P &lt; .05). Our findings also showed a striking decrease of NKRF and PIAS3 expression in relapse phase patients, in contrast to miR-301a and, NF-κB and STAT3 downstream genes (SKA2 and RORc) (P &lt; .05). Subsequently, using luciferase reporter system we confirmed that miR-301a directly targets the mRNA encoding PIAS3 and NKRF proteins. We also showed that miR-301a increasing expression is correlated with down-regulation of PIAS3 and NKRF expression in RRMS patients. Our findings suggest that miR-301a, PIAS3 and NKRF play crucial roles in RRMS and could be considered as promising therapeutic targets."	"Molecular parallelism in fast-twitch muscle proteins in echolocating mammals. Detecting associations between genomic changes and phenotypic differences is fundamental to understanding how phenotypes evolved. By systematically screening for parallel amino acid substitutions, we detected known as well as novel cases (Strc, Tecta, and Cabp2) of parallelism between echolocating bats and toothed whales in proteins that could contribute to high-frequency hearing adaptations. Our screen also showed that echolocating mammals exhibit an unusually high number of parallel substitutions in fast-twitch muscle fiber proteins. Both echolocating bats and toothed whales produce an extremely rapid call rate when homing in on their prey, which was shown in bats to be powered by specialized superfast muscles. We show that these genes with parallel substitutions (Casq1, Atp2a1, Myh2, and Myl1) are expressed in the superfast sound-producing muscle of bats. Furthermore, we found that the calcium storage protein calsequestrin 1 of the little brown bat and the bottlenose dolphin functionally converged in its ability to form calcium-sequestering polymers at lower calcium concentrations, which may contribute to rapid calcium transients required for superfast muscle physiology. The proteins that our genomic screen detected could be involved in the convergent evolution of vocalization in echolocating mammals by potentially contributing to both rapid Ca<sup>2+</sup> transients and increased shortening velocities in superfast muscles."	"Stereocilin gene variants associated with episodic vertigo: expansion of the DFNB16 phenotype. Vestibular disorders comprise a heterogeneous group of diseases with transient or permanent loss of vestibular function. Vestibulopathy is in most cases associated with migraine, Ménière disease, hereditary ataxias, or sensorineural hearing loss. We identified two brothers and their first cousin affected by hearing loss and episodic vertigo. The brothers were homozygous STRC nonsense variant [c.4027 C &gt; T, p.(Q1343*)], whereas their first cousin was compound heterozygous for the STRC nonsense variant and a 97 kb deletion spanning the entire STRC gene. Clinical investigations confirmed pathological vestibular responses in addition to a characteristic DFNB16 hearing loss. The STRC gene encodes Stereocilin in the cochlea and in the vestibular organ where it ensheathes the kinocilium of the otolithic membranes. Stereocilin is associated with the gel overlaying the vestibular kinocilia, suggesting a role for the protein in sensing balance and spatial orientation. Our findings support such a function for Stereocilin in the vestibular organ and expand the phenotype associated with DFNB16."	"Enhancement of osteogenic differentiation of adipose-derived stem cells by PRP modified nanofibrous scaffold. Recent developments in bone tissue engineering have paved the way for more efficient and cost-effective strategies. Additionally, utilization of autologous sources has been considered very desirable and is increasingly growing. Recently, activated platelet rich plasma (PRP) has been widely used in the field of bone tissue engineering, since it harbours a huge number of growth factors that can enhance osteogenesis and bone regeneration. In the present study, the osteogenic effects of PRP coated nanofibrous PES/PVA scaffolds on adipose-derived mesenchymal stem cells have been investigated. Common osteogenic markers were assayed by real time PCR. Alkaline phosphate activity, calcium deposition and Alizarin red staining assays were performed as well. The results revealed that the highest osteogenic differentiation occurred when cells were cultured on PRP coated PES/PVA scaffolds. Interestingly, direct application of PRP to culture media had no additive effects on osteogenesis of cells cultured on PRP coated PES/PVA scaffolds or those receiving typical osteogenic factors. The highest osteogenic effects were achieved by the simplest and most cost-effective method, i.e. merely by using PRP coated scaffolds. PRP coated PES/PVA scaffolds can maximally induce osteogenesis with no need for extrinsic factors. The major contribution of this paper to the current researches on bone regeneration is to suggest an easy, cost-effective approach to enhance osteogenesis via PRP coated scaffolds, with no additional external growth factors."	"Comprehensive genomic diagnosis of non-syndromic and syndromic hereditary hearing loss in Spanish patients. Sensorineural hearing loss (SNHL) is the most common sensory impairment. Comprehensive next-generation sequencing (NGS) has become the standard for the etiological diagnosis of early-onset SNHL. However, accurate selection of target genomic regions (gene panel/exome/genome), analytical performance and variant interpretation remain relevant difficulties for its clinical implementation. We developed a novel NGS panel with 199 genes associated with non-syndromic and/or syndromic SNHL. We evaluated the analytical sensitivity and specificity of the panel on 1624 known single nucleotide variants (SNVs) and indels on a mixture of genomic DNA from 10 previously characterized lymphoblastoid cell lines, and analyzed 50 Spanish patients with presumed hereditary SNHL not caused by GJB2/GJB6, OTOF nor MT-RNR1 mutations. The analytical sensitivity of the test to detect SNVs and indels on the DNA mixture from the cell lines was &gt; 99.5%, with a specificity &gt; 99.9%. The diagnostic yield on the SNHL patients was 42% (21/50): 47.6% (10/21) with autosomal recessive inheritance pattern (BSND, CDH23, MYO15A, STRC [n = 2], USH2A [n = 3], RDX, SLC26A4); 38.1% (8/21) autosomal dominant (ACTG1 [n = 3; 2 de novo], CHD7, GATA3 [de novo], MITF, P2RX2, SOX10), and 14.3% (3/21) X-linked (COL4A5 [de novo], POU3F4, PRPS1). 46.9% of causative variants (15/32) were not in the databases. 28.6% of genetically diagnosed cases (6/21) had previously undetected syndromes (Barakat, Usher type 2A [n = 3] and Waardenburg [n = 2]). 19% of genetic diagnoses (4/21) were attributable to large deletions/duplications (STRC deletion [n = 2]; partial CDH23 duplication; RDX exon 2 deletion). In the era of precision medicine, obtaining an etiologic diagnosis of SNHL is imperative. Here, we contribute to show that, with the right methodology, NGS can be transferred to the clinical practice, boosting the yield of SNHL genetic diagnosis to 50-60% (including GJB2/GJB6 alterations), improving diagnostic/prognostic accuracy, refining genetic and reproductive counseling and revealing clinically relevant undiagnosed syndromes."	"Key Genes and Pathways Associated With Inner Ear Malformation in SOX10 <sup> p.R109W </sup> Mutation Pigs. SRY-box 10 (SOX10) mutation may lead to inner ear deformities. However, its molecular mechanisms on inner ear development are not clear. In this work, the inner ear morphology was investigated at different embryonic stages of the SOX10 mutation miniature porcine model with sensorineural hearing loss, and high-throughput RNA-seq and bioinformatics analyses were applied. Our results indicated that the SOX10 mutation in the miniature pigs led to an incomplete partition (IP) of the cochlea, a cystic apex caused by fusion from middle and apical turns, cochlear modiolar defects and a shortened cochlear duct. The model demonstrated 173 differentially expressed genes (DEGs) and 185 differentially expressed long non-coding RNAs (lncRNAs). The down-regulated DEGs most significantly enriched the inflammatory mediator regulation of the TRP channels, arachidonic acid metabolism, and the salivary secretion pathways, while the up-regulated DEGs most significantly enriched the systemic lupus erythematosus and alcoholism pathways. Based on gene cluster analysis, we selected four gene groups: WNT1, KCNQ4, STRC and PAX6."	"[Application of next generation sequencing in congenital sensorineural deafness]. Objective:The next-generation sequencing technology (NGS) was used to perform genetic testing on children diagnosed with sensorineural hearing loss in outpatient clinics.The information on the status and inheritance of disease causing genes in deafness was analyzed to provide a theoretical basis for genetic counseling, prenatal diagnosis, and birth defects prevention.Method:Ninety-four cases of sensorineural deafness diagnosed by medical history, audiological examination, and imaging examination were collected in our department.Next-generation sequencing was used to detect the region of exons of 159 genes, 6 mitochondrial genes, and 3 miRNAs related to deafness. The Sanger sequencing verification was performed on the parents of the probands to find out the gene expression status and relationship between the probands and the parents.Result:Of the 94 children with deafness,70 had severe sensorineural hearing loss, 13 had moderate to severe hearing loss, 8 had moderate hearing loss, and 3 had mild hearing loss.Twenty-three cases of cariogenic mutations were detected by next generation sequencing,and the total mutation rate was 24.5%. There were 11 cases of GJB2 mutations, including 6 homozygous mutations of 235delC, 4 heterozygous mutations of 235delC and 299_300del heterozygous mutation of 235delC and c.176_191del.There are 5 cases of SLC26A4 gene mutations, including 2 cases of homozygous mutations of c.919-2A&gt; G, one case of c.919-2A&gt; G and c.2168A&gt;G compound heterozygous mutations, c.919-2A&gt; G and c.754T&gt; C compound heterozygous mutation in 1 case, c.919 2A&gt; G and c.416-418del complex heterozygous mutation in 1 case. There were 2 cases of MT RNR1 mutations, and 1 case of STRC,KCNQ1,USH2A,POU3F4, and MITF mutations.Conclusion:The next-generation sequencing has features such as rapid, high throughput, and low cost, which is beneficial to medication guidance, genetic counseling, and marriage and parenting guidance,and help to effectively prevent or reduce the occurrence of hereditary deafness.."	"PCL/PVA nanofibrous scaffold improve insulin-producing cells generation from human induced pluripotent stem cells. Pancreatic differentiation of stem cells will aid treatment of patients with type I diabetes mellitus (T1DM). Synthetic biopolymers utilization provided extracellular matrix (ECM) and desired attributes in vitro to enhance conditions for stem cells proliferation, attachment and differentiation. A mixture of polycaprolactone and polyvinyl alcohol (PCL/PVA)-based scaffold, could establish an in vitro three-dimensional (3D) culture model. The objective of this study was investigation of the human induced pluripotent stem cells (hiPSCs) differentiation capacity to insulin-producing cells (IPCs) in 3D culture were compared with conventional culture (2D) groups evaluated at the mRNA and protein levels by quantitative PCR and immunofluorescence assay, respectively. The functionality of differentiated IPCs was assessed by C-peptide and insulin release in response to glucose stimulation test. Real-Time PCR results showed that iPSCs-IPCs expressed pancreas-specific transcription factors (Insulin, Pdx1, Glucagon, Glut2 and Ngn3). The expressions of these transcription factors in PCL/PVA scaffold were higher than 2D groups. In addition to IPCs specific markers were detected by immunochemistry. These cells in both groups secreted insulin and C-peptide in a glucose challenge test by ELISA showing in vitro maturation. The results of current study demonstrated that enhanced differentiation of IPCs from hiPSCs could be result of PCL/PVA nanofibrous scaffolds. In conclusion, this research could provide a new approach to beta-like cells replacement therapies and pancreatic tissue engineering for T1DM in the future."	"Simple and efficient germline copy number variant visualization method for the Ion AmpliSeq™ custom panel. Recent advances in molecular genetic analysis using next-generation sequencing (NGS) have drastically accelerated the identification of disease-causing gene mutations. Most next-generation sequencing analyses of inherited diseases have mainly focused on single-nucleotide variants and short indels, although, recently, structure variations including copy number variations have come to be considered an important cause of many different diseases. However, only a limited number of tools are available for multiplex PCR-based target genome enrichment. In this paper, we reported a simple and efficient copy number variation visualization method for Ion AmpliSeq™ target resequencing data. Unlike the hybridization capture-based target genome enrichment system, Ion AmpliSeq™ reads are multiplex PCR products, and each read generated by the same amplicon is quite uniform in length and position. Based on this feature, the depth of coverage information for each amplicon included in the barcode/amplicon coverage matrix file was used for copy number detection analysis. We also performed copy number analysis to investigate the utility of this method through the use of positive controls and a large Japanese hearing loss cohort. Using this method, we successfully confirmed previously reported copy number loss cases involving the STRC gene and copy number gain in trisomy 21 cases. We also performed copy number analysis of a large Japanese hearing loss cohort (2,475 patients) and identified many gene copy number variants. The most prevalent copy number variation was STRC gene copy number loss, with 129 patients carrying this copy number variation. Our copy number visualization method for Ion AmpliSeq™ data can be utilized in efficient copy number analysis for the comparison of a large number of samples. This method is simple and requires only easy calculations using standard spread sheet software."	"Physical stimulation and scaffold composition efficiently support osteogenic differentiation of mesenchymal stem cells. Despite significant achievements in the field of tissue engineering, simplification and improvement of the existing protocols are of great importance. The use of complex differentiation media, due to the presence of multiple factors, may have some undesired effects on cell health and functions. Thus, minimizing the number of involved factors, while maintaining the differentiation efficiency, provides less costly and controllable conditions. Adipose-derived Mesenchymal stem cells (ASCs), the adult stem cells present in adipose tissue, can be a suitable source of stem cells due to abundant and ease of access. The aim of this study is to optimize the osteogenic differentiation of ASCs by chemical composition of scaffold, in the first step, and then by electromagnetic treatments. ASCs were cultured on PVA/PES scaffold and tissue culture polystyrene surfaces (TCPS) and osteogenic differentiation was performed with either osteogenic medium, or electromagnetic field or both. The impact of each treatment on ASCs growth and proliferation was measured by MTT assay. Changes in gene expression levels of osteogenic-specific markers including ALP and RUNX2 were determined by Real Time PCR. Furthermore, alkaline phosphatase activity and calcium deposition were measured. The MTT assay showed the significant effects on cell growth and respiration in scaffold-seeded ASCs treated with electromagnetic field, compared to control TCPS plate. Also, the electromagnetic treatment, increased alkaline phosphatase activity and calcium deposition. Finally, Real Time PCR showed higher expression of ALP and RUNX2 genes in electromagnetic field groups compared to control groups. It can be concluded that PVA/PES scaffold used in this study improved the osteogenic capacity of ASCs. Moreover, the osteogenic potential of ASCs seeded on PVA/PES scaffold could be augmented by electromagnetic field without any chemical stimulation."	"STRC Gene Mutations, Mainly Large Deletions, are a Very Important Cause of Early-Onset Hereditary Hearing Loss in the Czech Population. Hearing loss (HL) is the most common sensory deficit in humans. HL is an extremely heterogeneous condition presenting most frequently as a nonsyndromic (NS) condition inherited in an autosomal recessive (AR) pattern, termed DFNB. Mutations affecting the STRC gene cause DFNB type 16. Various types of mutations within the STRC gene have been reported from the U.S. and German populations, but no information about the relative contribution of STRC mutations to NSHL-AR among Czech patients is available. Two hundred and eighty-eight patients with prelingual NSHL, either sporadic (n = 207) or AR (n = 81), who had been previously tested negative for the mutations affecting the GJB2 gene, were included in the study. These patients were tested for STRC mutations by a quantitative comparative fluorescent polymerase chain reaction (QF-PCR) assay. In addition, 31 of the 81 NSHL-AR patients were analyzed by massively parallel sequencing using one of two different gene panels: 23 patients were analyzed by multiplex-ligation probe amplification (MLPA); and 9 patients by SNP microarrays. Causal mutations affecting the STRC gene (including copy number variations [CNVs] and point mutations) were found in 5.5% of all patients and 13.6% of the 81 patients in the subgroup with NSHL-AR. Our results provide strong evidence that STRC gene mutations are an important cause of NSHL-AR in Czech HL patients and are probably the second most common cause of DFNB. Large CNVs were more frequent than point mutations and it is reasonable to test them first by a QF-PCR method-a simple, accessible, and efficient tool for STRC CNV detection, which can be combined by MLPA."	"Allele-Specific Droplet Digital PCR Combined with a Next-Generation Sequencing-Based Algorithm for Diagnostic Copy Number Analysis in Genes with High Homology: Proof of Concept Using Stereocilin. Copy number variants (CNVs) can substantially contribute to the pathogenic variant spectrum in several disease genes. The detection of this type of variant is complicated in genes with high homology to other genomic sequences, yet such genomics regions are more likely to lead to CNVs, making it critical to address detection in these settings. We developed a copy number analysis approach for high homology genes/regions that consisted of next-generation sequencing (NGS)-based dosage analysis accompanied by allele-specific droplet digital PCR (ddPCR) confirmatory testing. We applied this approach to copy number analysis in STRC, a gene with 98.9% homology to a nonfunctional pseudogene, pSTRC, and characterized its accuracy in detecting different copy number states by use of known samples. Using a cohort of 517 patients with hearing loss, we prospectively demonstrated the clinical utility of the approach, which contributed 30 of the 122 total positives (6%) to the diagnostic yield, increasing the overall yield from 17.6% to 23.6%. Positive STRC genotypes included homozygous (n = 15) or compound heterozygous (n = 8) deletions, or heterozygous deletions in trans with pathogenic sequence variants (n = 7). Finally, this approach limited ddPCR testing to cases with NGS copy number findings, thus markedly reducing the number of costly and laborious, albeit specific, ddPCR tests. NGS-based CNV detection followed by allele-specific ddPCR confirmatory testing is a reliable and affordable approach for copy number analysis in medically relevant genes with homology issues."	"Combined genetic approaches yield a 48% diagnostic rate in a large cohort of French hearing-impaired patients. Hearing loss is the most common sensory disorder and because of its high genetic heterogeneity, implementation of Massively Parallel Sequencing (MPS) in diagnostic laboratories is greatly improving the possibilities of offering optimal care to patients. We present the results of a two-year period of molecular diagnosis that included 207 French families referred for non-syndromic hearing loss. Our multi-step strategy involved (i) DFNB1 locus analysis, (ii) MPS of 74 genes, and (iii) additional approaches including Copy Number Variations, in silico analyses, minigene studies coupled when appropriate with complete gene sequencing, and a specific assay for STRC. This comprehensive screening yielded an overall diagnostic rate of 48%, equally distributed between DFNB1 (24%) and the other genes (24%). Pathogenic genotypes were identified in 19 different genes, with a high prevalence of GJB2, STRC, MYO15A, OTOF, TMC1, MYO7A and USH2A. Involvement of an Usher gene was reported in 16% of the genotyped cohort. Four de novo variants were identified. This study highlights the need to develop several molecular approaches for efficient molecular diagnosis of hearing loss, as this is crucial for genetic counselling, audiological rehabilitation and the detection of syndromic forms."	"STRC Deletion is a Frequent Cause of Slight to Moderate Congenital Hearing Impairment in the Czech Republic. This study aimed to clarify the molecular epidemiology of hearing loss by identifying the responsible genes in patients without GJB2 mutations. Prospective genetic study. Tertiary referral hospital. Fifty one patients with bilateral sensorineural hearing loss, 20 men, and 31 women, mean age 24.9 years, range 3 to 64 years, from 49 families. GJB2 and deltaGJB6-D13S1830 mutations were excluded previously. Diagnostic. Sixty-nine genes reported to be causative of hearing loss were analyzed. Sequence capture technology, next-generation sequencing, and multiplex ligation-dependent probe amplification (MLPA) were used. Coverage of STRC was screened in Integrative Genomics Viewer software. Identification of causal pathogenic mutations in genes related to deafness. Five families (10%) had recessive STRC deletions or mutations. Five unrelated patients (10%) had recessive mutations in TMPRSS3, USH2A, PCDH15, LOXHD1, and MYO15A. Three families (6%) had autosomal dominant mutations in MYO6A, KCNQ4, and SIX1. One family (2%) had an X-linked POU3F4 mutation. Thus, we identified the cause of hearing loss in 28% of the families studied. Following GJB2, STRC was the second most frequently mutated gene in patients from the Czech Republic with hearing loss. To decrease the cost of testing, we recommend STRC deletion screening with MLPA before next-generation sequencing. The existence of a pseudogene and polymorphic STRC regions can lead to false-positive or false-negative results when copy number variation analysis is based on next-generation sequencing data."	"Maternal uniparental disomy of chromosome 15 and concomitant STRC and CATSPER2 deletion-mediated deafness-infertility syndrome. NA"	"The diagnostic yield of whole-exome sequencing targeting a gene panel for hearing impairment in The Netherlands. Hearing impairment (HI) is genetically heterogeneous which hampers genetic counseling and molecular diagnosis. Testing of several single HI-related genes is laborious and expensive. In this study, we evaluate the diagnostic utility of whole-exome sequencing (WES) targeting a panel of HI-related genes. Two hundred index patients, mostly of Dutch origin, with presumed hereditary HI underwent WES followed by targeted analysis of an HI gene panel of 120 genes. We found causative variants underlying the HI in 67 of 200 patients (33.5%). Eight of these patients have a large homozygous deletion involving STRC, OTOA or USH2A, which could only be identified by copy number variation detection. Variants of uncertain significance were found in 10 patients (5.0%). In the remaining 123 cases, no potentially causative variants were detected (61.5%). In our patient cohort, causative variants in GJB2, USH2A, MYO15A and STRC, and in MYO6 were the leading causes for autosomal recessive and dominant HI, respectively. Segregation analysis and functional analyses of variants of uncertain significance will probably further increase the diagnostic yield of WES."	"Detection and Confirmation of Deafness-Causing Copy Number Variations in the STRC Gene by Massively Parallel Sequencing and Comparative Genomic Hybridization. Copy number variations (CNVs), a major cause of genetic hearing loss, most frequently involve the STRC gene, located on chr15q15.3 and causally related to autosomal recessive non-syndromic hearing loss (ARNSHL) at the DFNB16 locus. The interpretation of STRC sequence data can be challenging due to the existence of a virtually identical pseudogene, pSTRC, that promotes complex genomic rearrangements in this genomic region. Targeted genomic enrichment with massively parallel sequencing (TGE+MPS) has emerged as the preferred method by which to provide comprehensive genetic testing for hearing loss. We aimed to identify CNVs in the STRC region using established and validated bioinformatics methods. We used TGE+MPS to identify the genetic cause of hearing loss. The CNV results were confirmed with customized array comparative genomic hybridization (array CGH). Three probands with progressive mild to moderate hearing loss were found among 40 subjects with ARNSHL to segregate homozygous STRC deletions and gene to pseudogene conversion. Array CGH showed that the deletions/conversions span multiple genes outside of the exons captured by TGE+MPS. These data further validate the necessity to integrate the detection of both simple variant changes and complex genomic rearrangements in the clinical diagnosis of genetic hearing loss."	"DNA Diagnostics of Hereditary Hearing Loss: A Targeted Resequencing Approach Combined with a Mutation Classification System. Although there are nearly 100 different causative genes identified for nonsyndromic hearing loss (NSHL), Sanger sequencing-based DNA diagnostics usually only analyses three, namely, GJB2, SLC26A4, and OTOF. As this is seen as inadequate, there is a need for high-throughput diagnostic methods to detect disease-causing variations, including single-nucleotide variations (SNVs), insertions/deletions (Indels), and copy-number variations (CNVs). In this study, a targeted resequencing panel for hearing loss was developed including 79 genes for NSHL and selected forms of syndromic hearing loss. One-hundred thirty one presumed autosomal-recessive NSHL (arNSHL) patients of Western-European ethnicity were analyzed for SNVs, Indels, and CNVs. In addition, we established a straightforward variant classification system to deal with the large number of variants encountered. We estimate that combining prescreening of GJB2 with our panel leads to a diagnosis in 25%-30% of patients. Our data show that after GJB2, the most commonly mutated genes in a Western-European population are TMC1, MYO15A, and MYO7A (3.1%). CNV analysis resulted in the identification of causative variants in two patients in OTOA and STRC. One of the major challenges for diagnostic gene panels is assigning pathogenicity for variants. A collaborative database collecting all identified variants from multiple centers could be a valuable resource for hearing loss diagnostics."	"Identification of a nonsense mutation in the STRC gene in a Korean family with moderate hearing loss. Hereditary hearing loss is a heterogeneous disorder that results in a common sensorineural disorder. To date, more than 150 loci and 89 genes have been reported for non-syndromic hearing loss. Next generation sequencing has recently been developed as a powerful genetic strategy for identifying pathogenic mutations in heterogeneous disorders with various causative genes. In this study, we performed targeted sequencing to identify the causative mutation in a Korean family that had moderate hearing loss. We targeted 64 genes associated with non-syndromic hearing loss and sorted the homozygous variations according to the autosomal recessive inheritance pattern of the family. Implementing a bioinformatic platform for filtering and detecting variations allowed for the identification of two variations within different genes (c.650G&gt;A in TRIOBP and c.4057C&gt;T in STRC). These variants were selected for further analysis. Among these, c.4057C&gt;T (p.Q1353X) was a divergent sequence variation between the STRC gene and the STRC pseudogene. This was the critical difference that resulted in loss of the protein-coding ability of the pseudogene. Therefore, we hypothesized that the p.Q1353X variation in the STRC gene is the causative mutation for hearing loss. This result suggests that application of targeted sequencing will be valuable for the diagnosis of heterogeneous disorders. "	"Comprehensive genetic testing with ethnic-specific filtering by allele frequency in a Japanese hearing-loss population. Recent advances in targeted genomic enrichment with massively parallel sequencing (TGE+MPS) have made comprehensive genetic testing for non-syndromic hearing loss (NSHL) possible. After excluding NSHL subjects with causative mutations in GJB2 and the MT-RNR1 (1555A&gt;G) variant by Sanger sequencing, we completed TGE+MPS on 194 probands with presumed NSHL identified across Japan. We used both publicly available minor allele frequency (MAF) datasets and ethnic-specific MAF filtering against an in-house database of 200 normal-hearing Japanese controls. Ethnic-specific MAF filtering allowed us to re-categorize as common 203 variants otherwise annotated as rare or novel in non-Japanese ethnicities. This step minimizes false-positive results and improves the annotation of identified variants. Causative variants were identified in 27% of probands with solve rates of 35%, 35% and 19% for dominant, recessive and sporadic NSHL, respectively. Mutations in MYO15A and CDH23 follow GJB2 as the frequent causes of recessive NSHL; copy number variations in STRC are a major cause of mild-to-moderate NSHL. Ethnic-specific filtering by allele frequency is essential to optimize the interpretation of genetic data."	"Gene expression profiling by mRNA array reveals different pattern in Chinese glioblastoma patients between Uygur and Han populations. To identify differentially expressed genes in Chinese glioblastoma patients of Uygur and Han populations, and investigate their potential clinical value for pathogenesis determination and progress prediction. Gene expression profiling was obtained from three patients of each Uygur and Han nationalities, respectively, by mRNA expression array. Data were processed by the GenomeStudio software and language R of the Lumi package, followed by GO (Gene Ontology) term and KEGG pathway annotation analysis by the Web Gestalt software. The comparative analysis of genome-scale gene expression in glioblastomas revealed 1,475 differentially expressed genes, with 669 and 807 genes up-regulated and down-regulated, respectively. These included the STRC gene, which has two transcripts, one up-regulated and one down-regulated. GO term analysis suggested that 1,175 out of 1,475 key genes were involved in small GTPase mediated signal transduction, Ras protein signal transduction, bioprocess of neuronal response regulation, and central nervous system myelination. The KEGG pathway enrichment analysis showed that the differentially expressed genes were covered by 28 signaling pathways associated with tumorigenesis, including metabolic pathways, tumor suppressor pathways, MAP kinase signaling pathways, TGF-β signaling pathway, neurotrophin signaling pathways, and mTOR signaling pathway. The comparative study of gene expression profiling in glioblastomas between Uygur and Han nationalities revealed differentially expressed genes, whose functions and expression localization were analyzed by GO term analysis and KEGG pathway enrichment analysis. Different pathogenesis mechanisms were proposed for glioblastomas in Chinese patients of Uygur and Han nationalities from a molecular biology perspective."	"Assessment of copy number variations in the brain genome of schizophrenia patients. Cytogenomic mutations and chromosomal abnormality are implicated in the neuropathology of several brain diseases. Cell heterogeneity of brain tissues makes their detection and validation difficult, however. In the present study, we analyzed gene dosage alterations in brain DNA of schizophrenia patients and compared those with the copy number variations (CNVs) identified in schizophrenia patients as well as with those in Asian lymphocyte DNA and attempted to obtain hints at the pathological contribution of cytogenomic instability to schizophrenia. Brain DNA was extracted from postmortem striatum of schizophrenia patients and control subjects (n = 48 each) and subjected to the direct two color microarray analysis that limits technical data variations. Disease-associated biases of relative DNA doses were statistically analyzed with Bonferroni's compensation on the premise of brain cell mosaicism. We found that the relative gene dosage of 85 regions significantly varied among a million of probe sites. In the candidate CNV regions, 26 regions had no overlaps with the common CNVs found in Asian populations and included the genes (i.e., ANTXRL, CHST9, DNM3, NDST3, SDK1, STRC, SKY) that are associated with schizophrenia and/or other psychiatric diseases. The majority of these candidate CNVs exhibited high statistical probabilities but their signal differences in gene dosage were less than 1.5-fold. For test evaluation, we rather selected the 10 candidate CNV regions that exhibited higher aberration scores or larger global effects and were thus confirmable by PCR. Quantitative PCR verified the loss of gene dosage at two loci (1p36.21 and 1p13.3) and confirmed the global variation of the copy number distributions at two loci (11p15.4 and 13q21.1), both indicating the utility of the present strategy. These test loci, however, exhibited the same somatic CNV patterns in the other brain region. The present study lists the candidate regions potentially representing cytogenomic CNVs in the brain of schizophrenia patients, although the significant but modest alterations in their brain genome doses largely remain to be characterized further."	"Chronic methamphetamine regulates the expression of MicroRNAs and putative target genes in the nucleus accumbens of mice. MicroRNAs (miRNAs) are modulators of gene expression that play key regulatory roles in distinct cellular processes. Methamphetamine (METH) induces various aberrant changes in the limbic system by affecting a complex gene regulatory mechanism, yet the involvement of miRNAs in the effects of METH exposure remains unclear. This study identifies METH-responsive miRNAs and their potential effects in the nucleus accumbens (NAc) of mice. Using miRNA sequencing, we examined the expression of miRNAs in the NAc of saline- and METH-treated mice and identified 45 known miRNAs to be METH responsive. Additionally, we identified two novel miRNA candidates that were METH responsive (novel-m002C and novel-m009C). Our target prediction analysis suggested that the known METH-regulated miRNAs might target genes that are involved in cellular autophagy, cellular metabolism, and immune responses and that the novel METH-regulated miRNA candidates might target genes that are related to drug addiction. We also matched the predicted targets of METH-regulated miRNAs with the NAc messenger RNA expression profile, revealing eight putative METH-regulated target genes (Arc, Capn9, Gbp5, Lefty1, Patl2, Pde4c, Strc, and Vmn1r58). Thus, METH triggers an alteration in NAc miRNA expression, which could contribute to METH-induced changes in neuron autophagy, metabolism, and immune responses. The differential expression of putative target genes suggests their involvement following exposure to METH."	"DFNB16 is a frequent cause of congenital hearing impairment: implementation of STRC mutation analysis in routine diagnostics. Increasing attention has been directed toward assessing mutational fallout of stereocilin (STRC), the gene underlying DFNB16. A major challenge is due to a closely linked pseudogene with 99.6% coding sequence identity. In 94 GJB2/GJB6-mutation negative individuals with non-syndromic sensorineural hearing loss (NSHL), we identified two homozygous and six heterozygous deletions, encompassing the STRC region by microarray and/or quantitative polymerase chain reaction (qPCR) analysis. To detect smaller mutations, we developed a Sanger sequencing method for pseudogene exclusion. Three heterozygous deletion carriers exhibited hemizygous mutations predicted as negatively impacting the protein. In 30 NSHL individuals without deletion, we detected one with compound heterozygous and two with heterozygous pathogenic mutations. Of 36 total patients undergoing STRC sequencing, two showed the c.3893A&gt;G variant in conjunction with a heterozygous deletion or mutation and three exhibited the variant in a heterozygous state. Although this variant affects a highly conserved amino acid and is predicted as deleterious, comparable minor allele frequencies (MAFs) (around 10%) in NSHL individuals and controls and homozygous variant carriers without NSHL argue against its pathogenicity. Collectively, six (6%) of 94 NSHL individuals were diagnosed with homozygous or compound heterozygous mutations causing DFNB16 and five (5%) as heterozygous mutation carriers. Besides GJB2/GJB6 (DFNB1), STRC is a major contributor to congenital hearing impairment."	"Exome sequencing and genome-wide copy number variant mapping reveal novel associations with sensorineural hereditary hearing loss. The genetic diversity of loci and mutations underlying hereditary hearing loss is an active area of investigation. To identify loci associated with predominantly non-syndromic sensorineural hearing loss, we performed exome sequencing of families and of single probands, as well as copy number variation (CNV) mapping in a case-control cohort. Analysis of three distinct families revealed several candidate loci in two families and a single strong candidate gene, MYH7B, for hearing loss in one family. MYH7B encodes a Type II myosin, consistent with a role for cytoskeletal proteins in hearing. High-resolution genome-wide CNV analysis of 150 cases and 157 controls revealed deletions in genes known to be involved in hearing (e.g. GJB6, OTOA, and STRC, encoding connexin 30, otoancorin, and stereocilin, respectively), supporting CNV contributions to hearing loss phenotypes. Additionally, a novel region on chromosome 16 containing part of the PDXDC1 gene was found to be frequently deleted in hearing loss patients (OR=3.91, 95% CI: 1.62-9.40, p=1.45×10(-7)). We conclude that many known as well as novel loci and distinct types of mutations not typically tested in clinical settings can contribute to the etiology of hearing loss. Our study also demonstrates the challenges of exome sequencing and genome-wide CNV mapping for direct clinical application, and illustrates the need for functional and clinical follow-up as well as curated open-access databases."	"Differential expression and clinical significance of glioblastoma mRNA expression profiles in Uyghur and Han patients in Xinjiang province. The aim of this study was to investigate differences in glioblastoma RNA gene expression profiles between Uyghur and Han patients in Xinjiang province and to screen and compare differentially expressed genes with respect to their clinical significance in the pathogenesis of high-grade glioma and their relationship to disease prognosis. Illumina HT-12mRNA expression profiles microarray was employed to measure the gene expression profiles of 6 patients with advanced glioma and to screen for differentially expressed genes. GO and KEGG analyses were performed on the differentially expressed genes using Web Gestalt software (P&lt;0.05). Comparison of glioblastoma RNA expression profiles in the Uyghur and Han patients indicated that 1475 genes were significantly differentially expressed, of which 669 showed increased expression, while 807 showed decreased expression. One gene (STRC) corresponded to 2 transcripts, 1 of which showed increased expression and the other showed decreased expression. The differentially expressed genes participate in metabolic processes, biological regulation, stress response, and multi-cellular organic processes, including small GTPase regulatory signaling pathways, Ras signaling pathway, neuronal reactive protein regulation, and myelination of the central nervous system. The genes are also involved in tumor-related signaling pathways, including metabolic pathways, cancer pathways, MAPK signaling pathway, TGF-β signaling pathway, neurotrophic factor signal transduction pathway, and mTOR signaling pathway. Differentially expressed genes were screened by studying the gene expression profiles in glioblastoma from Uyghur and Han patients. The cellular function and location of these genes were further investigated. Based on related molecular markers of glioblastoma, the differences in the mechanism of initiation and development of glioblastoma between Uyghur and Han patients were investigated for polygenic interactions."	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Comprehensive diagnostic testing for stereocilin: an approach for analyzing medically important genes with high homology. Next-generation sequencing (NGS) technologies have revolutionized genetic testing by enabling simultaneous analysis of unprecedented numbers of genes. However, genes with high-sequence homology pose challenges to current NGS technologies. Because diagnostic sequencing is moving toward exome analysis, knowledge of these homologous genes is essential to avoid false positive and negative results. An example is the STRC gene, one of &gt;70 genes known to contribute to the genetic basis of hearing loss. STRC is 99.6% identical to a pseudogene (pSTRC) and therefore inaccessible to standard NGS methodologies. The STRC locus is also known to be a common site for large deletions. Comprehensive diagnostic testing for inherited hearing loss therefore necessitates a combination of several approaches to avoid pseudogene interference. We have developed a clinical test that combines standard NGS and NGS-based copy number assessment supplemented with a long-range PCR-based Sanger or MiSeq assay to eliminate pseudogene contamination. By using this combination of assays we could identify biallelic STRC variants in 14% (95% CI, 8%-24%) of individuals with isolated nonsyndromic hearing loss who had previously tested negative on our 70-gene hearing loss panel, corresponding to a detection rate of 11.2% (95% CI, 6%-19%) for previously untested patients. This approach has broad applicability because medically significant genes for many disease areas include genes with high-sequence homology. "	"Characterization of transcriptomes of cochlear inner and outer hair cells. Inner hair cells (IHCs) and outer hair cells (OHCs) are the two types of sensory receptor cells that are critical for hearing in the mammalian cochlea. IHCs and OHCs have different morphology and function. The genetic mechanisms that define their morphological and functional specializations are essentially unknown. The transcriptome reflects the genes that are being actively expressed in a cell and holds the key to understanding the molecular mechanisms of the biological properties of the cell. Using DNA microarray, we examined the transcriptome of 2000 individually collected IHCs and OHCs from adult mouse cochleae. We show that 16,647 and 17,711 transcripts are expressed in IHCs and OHCs, respectively. Of those genes, ∼73% are known genes, 22% are uncharacterized sequences, and 5.0% are noncoding RNAs in both populations. A total of 16,117 transcripts are expressed in both populations. Uniquely and differentially expressed genes account for &lt;15% of all genes in either cell type. The top 10 differentially expressed genes include Slc17a8, Dnajc5b, Slc1a3, Atp2a3, Osbpl6, Slc7a14, Bcl2, Bin1, Prkd1, and Map4k4 in IHCs and Slc26a5, C1ql1, Strc, Dnm3, Plbd1, Lbh, Olfm1, Plce1, Tectb, and Ankrd22 in OHCs. We analyzed commonly and differentially expressed genes with the focus on genes related to hair cell specializations in the apical, basolateral, and synaptic membranes. Eighty-three percent of the known deafness-related genes are expressed in hair cells. We also analyzed genes involved in cell-cycle regulation. Our dataset holds an extraordinary trove of information about the molecular mechanisms underlying hair cell morphology, function, pathology, and cell-cycle control. "	"Identification of copy number variants through whole-exome sequencing in autosomal recessive nonsyndromic hearing loss. Genetic variants account for more than half of the cases with congenital or prelingual onset hearing loss. Autosomal recessive nonsyndromic hearing loss (ARNSHL) is the most common subgroup. Whole-exome sequencing (WES) has been shown to be effective detecting deafness-causing single-nucleotide variants (SNVs) and insertion/deletions (INDELs). After analyzing the WES data for causative SNVs or INDELs involving previously reported deafness genes in 78 families with ARNSHL, we searched for copy number variants (CNVs) through two different tools in 24 families that remained unresolved. We detected large homozygous deletions in STRC and OTOA in single families. Thus, causative CNVs in known deafness genes explain 2 out of 78 (2.6%) families in our sample set. We conclude that CNVs can be reliably detected through WES and should be the part of pipelines used to clarify genetic basis of hearing loss. "	"Copy number variants are a common cause of non-syndromic hearing loss. Copy number variants (CNVs) are a well-recognized cause of genetic disease; however, methods for their identification are often gene-specific, excluded as 'routine' in screens of genetically heterogeneous disorders, and not implemented in most next-generation sequencing pipelines. For this reason, the contribution of CNVs to non-syndromic hearing loss (NSHL) is most likely under-recognized. We aimed to incorporate a method for CNV identification as part of our standard analysis pipeline and to determine the contribution of CNVs to genetic hearing loss. We used targeted genomic enrichment and massively parallel sequencing to isolate and sequence all exons of all genes known to cause NSHL. We completed testing on 686 patients with hearing loss with no exclusions based on type of hearing loss or any other clinical features. For analysis we used an integrated method for detection of single nucleotide changes, indels and CNVs. CNVs were identified using a previously published method that utilizes median read-depth ratios and a sliding-window approach. Of 686 patients tested, 15.2% (104) carried at least one CNV within a known deafness gene. Of the 38.9% (267) of individuals for whom we were able to determine a genetic cause of hearing loss, a CNV was implicated in 18.7% (50). We identified CNVs in 16 different genes including 7 genes for which no CNVs have been previously reported. CNVs of STRC were most common (73% of CNVs identified) followed by CNVs of OTOA (13% of CNVs identified). CNVs are an important cause of NSHL and their detection must be included in comprehensive genetic testing for hearing loss."	"Genetic testing for sporadic hearing loss using targeted massively parallel sequencing identifies 10 novel mutations. The genetic heterogeneity of non-syndromic hearing loss (NSHL) has hampered the identification of its pathogenic mutations. Several recent studies applied targeted genome enrichment (TGE) and massively parallel sequencing (MPS) to simultaneously screen a large set of known hearing loss (HL) genes. However, most of these studies were focused on familial cases. To evaluate the effectiveness of TGE and MPS on screening sporadic NSHL patients, we recruited 63 unrelated sporadic NSHL probands, who had various levels of HL and were excluded for mutations in GJB2, MT-RNR1, and SLC26A4 genes. TGE and MPS were performed on 131 known HL genes using the Human Deafness Panel oto-DA3 (Otogenetics Corporation., Norcross, GA). We identified 14 pathogenic variants in STRC, CATSPER2, USH2A, TRIOBP, MYO15A, GPR98, and TMPRSS3 genes in eight patients (diagnostic rate = 12.7%). Among these variants, 10 were novel compound heterozygous mutations. The identification of pathogenic mutations could predict the progression of HL, and guide diagnosis and treatment of the disease."	"Chromosome microarray analysis: a case report of infertile brothers with CATSPER gene deletion. We present the case of two brothers who were referred to a male infertility clinic for infertility workup. Conventional chromosome analysis and Y chromosome microdeletions did not reveal any genetic alterations. We utilized the chromosome microarray analysis (CMA) to identify novel and common variations associated with this severely impaired spermatogenesis cases. CMA specific results showed a common deletion in the 15q15.3 region that harbors genes like CATSPER2, STRC and PPIP5K1 in both cases (M18 and M19). In addition we identified small duplication in X and 11 chromosomes of M19. This is the first familial case report from India on occurrence of CATSPER gene deletion in human male infertility."	"Diagnostic application of targeted resequencing for familial nonsyndromic hearing loss. Identification of causative genes for hereditary nonsyndromic hearing loss (NSHL) is important to decide treatment modalities and to counsel the patients. Due to the genetic heterogeneity in sensorineural genetic disorders, the high-throughput method can be adapted for the efficient diagnosis. To this end, we designed a new diagnostic pipeline to screen all the reported candidate genes for NSHL. For validation of the diagnostic pipeline, we focused upon familial NSHL cases that are most likely to be genetic, rather than to be infectious or environmental. Among the 32 familial NSHL cases, we were able to make a molecular genetic diagnosis from 12 probands (37.5%) in the first stage by their clinical features, characteristic inheritance pattern and further candidate gene sequencing of GJB2, SLC26A4, POU3F4 or mitochondrial DNA. Next we applied targeted resequencing on 80 NSHL genes in the remaining 20 probands. Each proband carried 4.8 variants that were not synonymous and had the occurring frequency of less than three among the 20 probands. These variants were then filtered out with the inheritance pattern of the family, allele frequency in normal hearing 80 control subjects, clinical features. Finally NSHL-causing candidate mutations were identified in 13(65%) of the 20 probands of multiplex families, bringing the total solve rate (or detection rate) in our familial cases to be 78.1% (25/32) Damaging mutations discovered by the targeted resequencing were distributed in nine genes such as WFS1, COCH, EYA4, MYO6, GJB3, COL11A2, OTOF, STRC and MYO3A, most of which were private. Despite the advent of whole genome and whole exome sequencing, we propose targeted resequencing and filtering strategy as a screening and diagnostic tool at least for familial NSHL to find mutations based upon its efficacy and cost-effectiveness."	"Biallelic nonsense mutations in the otogelin-like gene (OTOGL) in a child affected by mild to moderate hearing impairment. Hearing impairment is characterized by great genetic heterogeneity. We report the identification, by whole exome sequencing, of two different nonsense mutations (c.1558C&gt;T; p.Gln520 and c.2773C&gt;T; p.Arg925) in the otogelin-like gene (OTOGL), in a child affected by mild to moderate isolated deafness. Parental genotypes allowed us to conclude that these mutations are present in the compound heterozygous state in the patient. In addition, our clinical data establish that the tectorial membrane and/or the outer hair cells are defective in this form of deafness."	"Power-free chip enzyme immunoassay for detection of prostate specific antigen (PSA) in serum. A power-free, portable &quot;Chip EIA&quot; was designed to render the popular Enzyme Linked Immunosorbent Assay (ELISA) more suitable for point-of-care testing. A number of microfluidic platforms have enabled miniaturization of the conventional microtitre plate ELISA, however, they require external pumping systems, valves, and electric power supply. The Chip EIA platform has eliminated the need for pumps and valves through utilizing a simple permanent magnet and magnetic nanoparticles. The magnetic nanoparticles act as solid support to capture the target and are then moved through chambers harboring different reagents necessary to perform a sandwich ELISA. The use of magnetic nanoparticles increases the volume-to-surface ratio reducing the assay time to 30 min. Changing the color of horseradish peroxidase (HRP) substrate to green indicates a positive result. In addition, a quantitative read-out was obtained through the use of cellphone camera imaging and analyzing the images using Matlab®. Cell phones, including smart ones, are readily available almost everywhere. The Chip EIA device was used to assay total prostate specific antigen (tPSA) in 19 serum samples. The PSA Chip EIA was tested for accuracy, precision, repeatability, and the results were correlated to the commercial Beckman Colter, Hybritech immunoassay® for determination of tPSA in serum samples with a Pearson correlation coefficient (R(2)=0.96). The lower detection limit of the PSA Chip EIA was 3.2 ng/mL. The assay has 88.9% recovery and good reproducibility (% CV of 6.5). We conclude that the developed Chip EIA can be used for detection of protein biomarkers in biological specimens."	"A phylomedicine approach to understanding the evolution of auditory sensory perception and disease in mammals. Hereditary deafness affects 0.1% of individuals globally and is considered as one of the most debilitating diseases of man. Despite recent advances, the molecular basis of normal auditory function is not fully understood and little is known about the contribution of single-nucleotide variations to the disease. Using cross-species comparisons of 11 'deafness' genes (Myo15, Ush1 g, Strc, Tecta, Tectb, Otog, Col11a2, Gjb2, Cldn14, Kcnq4, Pou3f4) across 69 evolutionary and ecologically divergent mammals, we elucidated whether there was evidence for: (i) adaptive evolution acting on these genes across mammals with similar hearing capabilities; and, (ii) regions of long-term evolutionary conservation within which we predict disease-associated mutations should occur. We find evidence of adaptive evolution acting on the eutherian mammals in Myo15, Otog and Tecta. Examination of selection pressures in Tecta and Pou3f4 across a taxonomic sample that included a wide representation of auditory specialists, the bats, did not uncover any evidence for a role in echolocation. We generated 'conservation indices' based on selection estimates at nucleotide sites and found that known disease mutations fall within sites of high evolutionary conservation. We suggest that methods such as this, derived from estimates of evolutionary conservation using phylogenetically divergent taxa, will help to differentiate between deleterious and benign mutations."	"Genetic testing for hearing loss in the United States should include deletion/duplication analysis for the deafness/infertility locus at 15q15.3. Hearing loss is the most common birth defect and the most prevalent sensorineural disorder in developed countries. More than 50% of prelingual deafness is genetic, most often autosomal recessive and nonsyndromic, of which 50% can be attributed to the disorder DFNB1, caused by mutations in GJB2 and GJB6. Sensorineural hearing loss and male infertility (Deafness-Infertility Syndrome; DIS) is a contiguous gene deletion syndrome resulting from homozygous deletion of the CATSPER2 and STRC genes on chromosome 15q15.3. Females with DIS have only hearing loss and are fertile. Until recently this syndrome has only been described in three consanguineous families and 2 nonconsanguineous families. We recently indentified a patient with hearing loss and macrocephaly who was found to be homozygous for this deletion. Her nonconsanguineous parents are both carriers. We examined our database of patients tested by array CGH and determined that just over 1% of our patients are heterozygous for this deletion. If this number is representative of the general population, this implies a 1% carrier frequency and prevalence of DIS of 1 in 40,000 individuals. We propose that DIS is a greatly under-diagnosed cause of deafness and should be considered in children with hearing loss. Likewise, current molecular genetic testing panels for hearing loss in the United States should be expanded to include deletion/duplication analysis of this region."	"Novel molecular pathways elicited by mutant FGFR2 may account for brain abnormalities in Apert syndrome. Apert syndrome (AS), the most severe form craniosynostosis, is characterized by premature fusion of coronal sutures. Approximately 70% of AS patients carry S252W gain-of-function mutation in FGFR2. Besides the cranial phenotype, brain dysmorphologies are present and are not seen in other FGFR2-asociated craniosynostosis, such as Crouzon syndrome (CS). Here, we hypothesized that S252W mutation leads not only to overstimulation of FGFR2 downstream pathway, but likewise induces novel pathological signaling. First, we profiled global gene expression of wild-type and S252W periosteal fibroblasts stimulated with FGF2 to activate FGFR2. The great majority (92%) of the differentially expressed genes (DEGs) were divergent between each group of cell populations and they were regulated by different transcription factors. We than compared gene expression profiles between AS and CS cell populations and did not observe correlations. Therefore, we show for the first time that S252W mutation in FGFR2 causes a unique cell response to FGF2 stimulation. Since our gene expression results suggested that novel signaling elicited by mutant FGFR2 might be associated with central nervous system (CNS) development and maintenance, we next investigated if DEGs found in AS cells were also altered in the CNS of an AS mouse model. Strikingly, we validated Strc (stereocilin) in newborn Fgfr2(S252W/+) mouse brain. Moreover, immunostaining experiments suggest a role for endothelial cells and cerebral vasculature in the establishment of characteristic CNS dysmorphologies in AS that has not been proposed by previous literature. Our approach thus led to the identification of new target genes directly or indirectly associated with FGFR2 which are contributing to the pathophysiology of AS."	"Enhanced normal short-term human myelopoiesis in mice engineered to express human-specific myeloid growth factors. Better methods to characterize normal human hematopoietic cells with short-term repopulating activity cells (STRCs) are needed to facilitate improving recovery rates in transplanted patients.We now show that 5-fold more human myeloid cells are produced in sublethally irradiated NOD/SCID-IL-2Receptor-γchain-null (NSG) mice engineered to constitutively produce human interleukin-3, granulocyte-macrophage colony-stimulating factor and Steel factor (NSG-3GS mice) than in regular NSG mice 3 weeks after an intravenous injection of CD34 human cord blood cells. Importantly, the NSG-3GS mice also show a concomitant and matched increase in circulating mature human neutrophils. Imaging NSG-3GS recipients of lenti-luciferase-transduced cells showed that human cells being produced 3 weeks posttransplant were heterogeneously distributed, validating the blood as a more representative measure of transplanted STRC activity. Limiting dilution transplants further demonstrated that the early increase in human granulopoiesis in NSG-3GS mice reflects an expanded output of differentiated cells per STRC rather than an increase in STRC detection. NSG-3GS mice support enhanced clonal outputs from human short-term repopulating cells (STRCs) without affecting their engrafting efficiency. Increased human STRC clone sizes enable their more precise and efficient measurement by peripheral blood monitoring."	"Genome-wide SNP genotyping identifies the Stereocilin (STRC) gene as a major contributor to pediatric bilateral sensorineural hearing impairment. Hearing loss is the most prevalent sensory perception deficit in humans, affecting 1/500 newborns, can be syndromic or nonsyndromic and is genetically heterogeneous. Nearly 80% of inherited nonsyndromic bilateral sensorineural hearing loss (NBSNHI) is autosomal recessive. Although many causal genes have been identified, most are minor contributors, except for GJB2, which accounts for nearly 50% of all recessive cases of severe to profound congenital NBSNHI in some populations. More than 60% of children with a NBSNHI do not have an identifiable genetic cause. To identify genetic contributors, we genotyped 659 GJB2 mutation negative pediatric probands with NBSNHI and assayed for copy number variants (CNVs). After identifying 8 mild-moderate NBSNHI probands with a Chr15q15.3 deletion encompassing the Stereocilin (STRC) gene amongst this cohort, sequencing of STRC was undertaken in these probands as well as 50 probands and 14 siblings with mild-moderate NBSNHI and 40 probands with moderately severe-profound NBSNHI who were GJB2 mutation negative. The existence of a STRC pseudogene that is 99.6% homologous to the STRC coding region has made the sequencing interpretation complicated. We identified 7/50 probands in the mild-moderate cohort to have biallelic alterations in STRC, not including the 8 previously identified deletions. We also identified 2/40 probands to have biallelic alterations in the moderately severe-profound NBSNHI cohort, notably no large deletions in combination with another variant were found in this cohort. The data suggest that STRC may be a common contributor to NBSNHI among GJB2 mutation negative probands, especially in those with mild to moderate hearing impairment."	"Hematopoietic stem cells survive circulation arrest and reconstitute hematopoiesis in myeloablated mice. Hematopoietic stem and progenitor cells (HSPC) for bone marrow transplantation are currently obtained directly from living voluntary donors or from cord blood units. However, a suitable donor is not always found. Because HSPC are known for their relative resistance to hypoxia, using an experimental murine model, we explored cadaveric bone marrow (BM) as their alternative source. After donor mice were sacrificed, BM was left in intact femurs at 37°C, 20°C, or 4°C under ischemic conditions, resulting in combined oxygen and metabolic substrate shortage and the accumulation of metabolic waste products. BM cells were harvested after a set time period ranging from 0 to 48 hours. To determine the impact of delayed harvesting on the transplantability of HSPC, a competitive repopulation assay using a murine Ly5.1/Ly5.2 congenic model in 2 different settings was used: after submyeloablative (6 Gy) or myeloablative (9 Gy) total-body irradiation, Ly5.2 hosts received cadaveric Ly5.1 cells or a mixture of cadaveric Ly5.1 cells and fresh Ly5.2 cells in a 1:1 ratio. Chimerism resulting from cadaveric donor cells, followed up to 6 months after transplantation, proved that the long-term repopulation ability of HSPC was fully preserved for 2 hours, 6 hours, and 12 hours at 37°C, 20°C, and 4°C of ischemia, respectively. A colony-forming unit-spleen (CFU-S) clonogenic assay revealed a higher sensitivity of proliferating hematopoietic progenitors to ischemia compared to repopulating cells (STRC and LTRC). Flow cytometry analysis of apoptosis in cadaveric BM demonstrated that the LSK (Lin(low)Sca-1(+)c-Kit(+)) subpopulation, enriched in HSPC, contained less apoptotic and dead cells than the BM as a whole. Furthermore, the number of LSK SLAM (CD150(+)CD48(-)) and LSK SP (side population) cells (fractions highly enriched in hematopoietic stem cells) decreased in parallel with BM transplantability. As well as cadaveric BM cells, we also tested the transplantability and survival of BM cells after storage in a suspension in vitro without specific hematopoietic growth factors. HSPC did not display any decrease in transplantability after 2 days of storage at 37°C or 4 days at 4°C. A higher sensitivity of progenitors to unfavorable conditions was observed again using CFU-S and granulocyte macrophage-colony forming cell (GM-CFC) assays, especially at 37°C. This paper shows that HSPC survive the cessation of circulation for a considerable time and maintain their engraftment potential. This time is significantly extended with in vitro storage compared to the cadaveric BM."	"Structural and mechanical analysis of tectorial membrane Tecta mutants. The tectorial membrane (TM) is an extracellular matrix of the cochlea whose prominent role in hearing has been demonstrated through mutation studies. The C1509G mutation of the Tecta gene, which encodes for the α-tectorin protein, leads to hearing loss. The heterozygote TM only attaches to the first row of outer hair cells (OHCs), and the homozygote TM does not attach to any OHCs. Here we measured the morphology and mechanical properties of wild-type, heterozygous, and homozygous Tecta TMs. Morphological analyses conducted with second- and third-harmonic imaging, scanning electron microscopy, and immunolabeling revealed marked changes in the collagen architecture and stereocilin-labeling patterns of the mutant TMs. The mechanical properties of the mutant TM were measured by force spectroscopy. Whereas the axial Young's modulus of the low-frequency (apical) region of Tecta mutant TM samples was similar to that of wild-type TMs, it significantly decreased in the basal region to a value approaching that found at the apex. Modeling simulations suggest that a reduced TM Young's modulus is likely to reduce OHC stereociliary deflection. These findings argue that the heterozygote C1509G mutation results in a lack of attachment of the TM to the OHCs, which in turn reduces both the overall number of OHCs that are involved in mechanotransduction and the degree of mechanotransduction exhibited by the OHCs that remain attached to the TM."	"Stereocilin connects outer hair cell stereocilia to one another and to the tectorial membrane. Stereocilin is defective in a recessive form of deafness, DFNB16. We studied the distribution of stereocilin in the developing and mature mouse inner ear and analyzed the consequences of its absence in stereocilin-null (Strc(-/-)) mice that suffer hearing loss starting at postnatal day 15 (P15) and progressing until P60. Using immunofluorescence and immunogold electron microscopy, stereocilin was detected in association with two cell surface specializations specific to outer hair cells (OHCs) in the mature cochlea: the horizontal top connectors that join the apical regions of adjacent stereocilia within the hair bundle, and the attachment links that attach the tallest stereocilia to the overlying tectorial membrane. Stereocilin was also detected around the kinocilium of vestibular hair cells and immature OHCs. In Strc(-/-) mice the OHC hair bundle was structurally and functionally normal until P9. Top connectors, however, did not form and the cohesiveness of the OHC hair bundle progressively deteriorated from P10. The stereocilia were still interconnected by tip links at P14, but these progressively disappeared from P15. By P60 the stereocilia, still arranged in a V-shaped bundle, were fully disconnected from each other. Stereocilia imprints on the lower surface of the tectorial membrane were also not observed in Strc(-/-) mice, thus indicating that the tips of the tallest stereocilia failed to be embedded in this gel. We conclude that stereocilin is essential to the formation of horizontal top connectors. We propose that these links, which maintain the cohesiveness of the mature OHC hair bundle, are required for tip-link turnover."	"Hematopoietic activity of human short-term repopulating cells in mobilized peripheral blood cell transplants is restricted to the first 5 months after transplantation. Kinetics of hematopoietic recovery driven by different types of human stem and progenitor cells after transplantation are not fully understood. Short-term repopulating cells (STRCs) dominate early hematopoiesis after transplantation. STRCs are highly enriched in adult mobilized peripheral blood compared with cord blood, but the length of their contribution to hematopoiesis remains unclear. To understand posttransplantation durability and lineage contribution of STRCs, we compared repopulation kinetics of mobilized peripheral blood (high STRC content) with cord blood transplants (low STRC content) in long-lived NOD.Cg-Prkdc(scid)Il2rg(tm1Wjl)/SzJ (IL2RG(-/-)) mice. This comparison demonstrates that quantitative contribution of human STRCs to hematopoiesis is restricted to the first 5 months after transplantation. The ratio of STRCs to long-term repopulating cells dramatically changes during ontogeny. This model enables to precisely determine early and late engraftment kinetics of defined human repopulating cell types and to preclinically assess the engraftment kinetics of engineered stem cell transplants."	"Synchrony with shunting inhibition in a feedforward inhibitory network. Recent experiments have shown that GABA(A) receptor mediated inhibition in adult hippocampus is shunting rather than hyperpolarizing. Simulation studies of realistic interneuron networks with strong shunting inhibition have been demonstrated to exhibit robust gamma band (20-80 Hz) synchrony in the presence of heterogeneity in the intrinsic firing rates of individual neurons in the network. In order to begin to understand how shunting can contribute to network synchrony in the presence of heterogeneity, we develop a general theoretical framework using spike time response curves (STRC's) to study patterns of synchrony in a simple network of two unidirectionally coupled interneurons (UCI network) interacting through a shunting synapse in the presence of heterogeneity. We derive an approximate discrete map to analyze the dynamics of synchronous states in the UCI network by taking into account the nonlinear contributions of the higher order STRC terms. We show how the approximate discrete map can be used to successfully predict the domain of synchronous 1:1 phase locked state in the UCI network. The discrete map also allows us to determine the conditions under which the two interneurons can exhibit in-phase synchrony. We conclude by demonstrating how the information from the study of the discrete map for the dynamics of the UCI network can give us valuable insight into the degree of synchrony in a larger feed-forward network of heterogeneous interneurons."	"Existence and stability criteria for phase-locked modes in ring neural networks based on the spike time resetting curve method. We developed a systematic and consistent mathematical approach to predicting 1:1 phase-locked modes in ring neural networks of spiking neurons based on the open loop spike time resetting curve (STRC) and its almost equivalent counterpart-the phase resetting curve (PRC). The open loop STRCs/PRCs were obtained by injecting into an isolated model neuron a triangular shaped time-dependent stimulus current closely resembling an actual synaptic input. Among other advantages, the STRC eliminates the confusion regarding the undefined phase for stimuli driving the neuron outside of the unperturbed limit cycle. We derived both open loop PRC and STRC-based existence and stability criteria for 1:1 phase-locked modes developed in ring networks of spiking neurons. Our predictions were in good agreement with the closed loop numerical simulations. Intuitive graphical methods for predicting phase-locked modes were also developed both for half-centers and for larger ring networks."	"The inherent differentiation program of short-term hematopoietic repopulating cells changes during human ontogeny. Human umbilical cord blood (CB) could be an attractive source of hematopoietic repopulating cells for clinical stem cell therapy because of its accessibility and low propensity for unwanted immune reaction against the host. However, CB recipients suffer from severely delayed and often chronically deficient platelet recovery of unknown cause. Here we show that human short-term repopulating cells (STRCs), which predominantly carry early hematopoietic reconstitution after transplantation, display an intrinsically fixed differentiation program in vivo that changes during ontogeny. Compared to adult sources of hematopoietic cells, CB myeloidrestricted STRC-M showed a markedly reduced megakaryocytic and erythroid cell output in the quantitative xenotransplantation of human short-term hematopoiesis in NOD/SCID-beta2m(-/-) mice. This output in vivo was not altered by pre-treating CB cells before transplantation with growth factors that effectively stimulate megakaryocytopoiesis in vitro. Moreover, injecting mice with granulocyte colony-stimulating factor did not affect the differentiation of human STRC. These findings demonstrate that the differentiation capacity of human STRCs is developmentally regulated by mechanisms inaccessible to currently available hematopoietic growth factors, and explain why thrombopoiesis is deficient in clinical CB transplantation."	"A homozygous deletion of a normal variation locus in a patient with hearing loss from non-consanguineous parents. International databases with information on copy number variation of the human genome are an important reference for laboratories using high resolution whole genome screening. Genomic deletions or duplications which have been detected in the healthy population and thus marked as normal copy number variants (CNVs) can be filtered out using these databases when searching for pathogenic copy number changes in patients. However, a potential pitfall of this strategy is that reported normal CNVs often do not elicit further investigation, and thus may remain unrecognised when they are present in a (pathogenic) homozygous state. The impact on disease of CNVs in the homozygous state may thus remain undetected and underestimated. In a patient with syndromic hearing loss, array comparative genomic hybridisation (array CGH) and multiple ligation dependent probe amplification (MLPA) revealed a homozygous deletion on 15q15.3 of a CNV, inherited from hemizygous carrier parents. The deletion is about 90 kilobases and contains four genes including the STRC gene, which is involved in autosomal recessive deafness (DFNB16). By screening healthy control individuals and review of publicly available CNV data we estimated the frequency of hemizygous deletion carriers to be about 1.6%. We characterised a homozygous deletion of a CNV region causing syndromic hearing loss by a panel of molecular tools. Together with the estimated frequency of the hemizygous deletion, these results emphasise the role of the 15q15.3 locus in patients with (syndromic) hearing impairment. Furthermore, this case illustrates the importance of not automatically eliminating registered CNVs from further analysis."	"Mesothelin, Stereocilin, and Otoancorin are predicted to have superhelical structures with ARM-type repeats. Mesothelin is a 40 kDa protein present on the surface of normal mesothelial cells and overexpressed in many human tumours, including mesothelioma and ovarian and pancreatic adenocarcinoma. It forms a strong and specific complex with MUC16, which is also highly expressed on the surface of mesothelioma and ovarian cancer cells. This binding has been suggested to be the basis of ovarian cancer metastasis. Knowledge of the structure of this protein will be useful, for example, in building a structural model of the MUC16-mesothelin complex. Mesothelin is produced as a precursor, which is cleaved by furin to produce the N-terminal half, which is called the megakaryocyte potentiating factor (MPF), and the C-terminal half, which is mesothelin. Little is known about the function of mesothelin and there is no information on its possible three-dimensional structure. Mesothelin has been reported to be homologous to the deafness-related inner ear proteins otoancorin and stereocilin, for neither of which the three-dimensional structure is known. The BLAST and PSI-BLAST searches confirmed that mesothelin and mesothelin precursor proteins are remotely homologous to stereocilin and otoancorin and more closely homologous to the hypothetical protein MPFL (MPF-like). Secondary structure prediction servers predicted a predominantly helical structure for both mesothelin and mesothelin precursor proteins and also for stereocilin and otoancorin. Three-dimensional structure prediction servers INHUB and I-TASSER produced structural models for mesothelin, which consisted of superhelical structures with ARM-type repeats in conformity with the secondary structure predictions. Similar ARM-type superhelical repeat structures were predicted by 3D-PSSM server for mesothelin precursor and for stereocilin and otoancorin proteins. The mesothelin superfamily of proteins, which includes mesothelin, mesothelin precursor, megakaryocyte potentiating factor, MPFL, stereocilin and otoancorin, are predicted to have superhelical structures with ARM-type repeats. We suggest that all of these function as superhelical lectins to bind the carbohydrate moieties of extracellular glycoproteins."	"Sensorineural deafness and male infertility: a contiguous gene deletion syndrome. Syndromic hearing loss that results from contiguous gene deletions is uncommon.Three families with a novel syndrome characterised by deafness and infertility are described. Linkage was established by completing a genome-wide scan and candidate genes in the linked region were screened by direct sequencing. The deleted region is about 100 kb long and involves four genes (KIAA0377, CKMT1B, STRC and CATSPER2), each of which has a telomeric duplicate. This genomic architecture underlies the mechanism by which these deletions occur. CATSPER2 and STRC are expressed in the sperm and inner ear, respectively, consistent with the phenotype in persons homozygous for this deletion. A deletion of this region has been reported in one other family segregating male infertility and sensorineural deafness. We have identified three families segregating an autosomal recessive contiguous gene deletion syndrome characterised by deafness and sperm dysmotility. This new syndrome is caused by the deletion of contiguous genes at 15q15.3."	"Stereocilin-deficient mice reveal the origin of cochlear waveform distortions. Although the cochlea is an amplifier and a remarkably sensitive and finely tuned detector of sounds, it also produces conspicuous mechanical and electrical waveform distortions. These distortions reflect nonlinear mechanical interactions within the cochlea. By allowing one tone to suppress another (masking effect), they contribute to speech intelligibility. Tones can also combine to produce sounds with frequencies not present in the acoustic stimulus. These sounds compose the otoacoustic emissions that are extensively used to screen hearing in newborns. Because both cochlear amplification and distortion originate from the outer hair cells-one of the two types of sensory receptor cells-it has been speculated that they stem from a common mechanism. Here we show that the nonlinearity underlying cochlear waveform distortions relies on the presence of stereocilin, a protein defective in a recessive form of human deafness. Stereocilin was detected in association with horizontal top connectors, lateral links that join adjacent stereocilia within the outer hair cell's hair bundle. These links were absent in stereocilin-null mutant mice, which became progressively deaf. At the onset of hearing, however, their cochlear sensitivity and frequency tuning were almost normal, although masking was much reduced and both acoustic and electrical waveform distortions were completely lacking. From this unique functional situation, we conclude that the main source of cochlear waveform distortions is a deflection-dependent hair bundle stiffness resulting from constraints imposed by the horizontal top connectors, and not from the intrinsic nonlinear behaviour of the mechanoelectrical transducer channel."	"Spike timing dependent plasticity promotes synchrony of inhibitory networks in the presence of heterogeneity. Recently Haas et al. (J Neurophysiol 96: 3305-3313, 2006), observed a novel form of spike timing dependent plasticity (iSTDP) in GABAergic synaptic couplings in layer II of the entorhinal cortex. Depending on the relative timings of the presynaptic input at time t (pre) and the postsynaptic excitation at time t (post), the synapse is strengthened (Deltat = t(post) - t(pre) &gt; 0) or weakened (Deltat &lt; 0). The temporal dynamic range of the observed STDP rule was found to lie in the higher gamma frequency band (&gt; or =40 Hz), a frequency range important for several vital neuronal tasks. In this paper we study the function of this novel form of iSTDP in the synchronization of the inhibitory neuronal network. In particular we consider a network of two unidirectionally coupled interneurons (UCI) and two mutually coupled interneurons (MCI), in the presence of heterogeneity in the intrinsic firing rates of each coupled neuron. Using the method of spike time response curve (STRC), we show how iSTDP influences the dynamics of the coupled neurons, such that the pair synchronizes under moderately large heterogeneity in the firing rates. Using the general properties of the STRC for a Type-1 neuron model (Ermentrout, Neural Comput 8:979-1001, 1996) and the observed iSTDP we determine conditions on the initial configuration of the UCI network that would result in 1:1 in-phase synchrony between the two coupled neurons. We then demonstrate a similar enhancement of synchrony in the MCI with dynamic synaptic modulation. For the MCI we also consider heterogeneity introduced in the network through the synaptic parameters: the synaptic decay time of mutual inhibition and the self inhibition synaptic strength. We show that the MCI exhibits enhanced synchrony in the presence of all the above mentioned sources of heterogeneity and the mechanism for this enhanced synchrony is similar to the case of the UCI."	"The hen's egg test for micronucleus induction (HET-MN): novel analyses with a series of well-characterized substances support the further evaluation of the test system. The hen's egg test for micronucleus induction (HET-MN) combines the use of the commonly accepted genetic endpoint &quot;formation of micronuclei&quot; with the well-characterized and complex model of the incubated hen's egg, which enables metabolic activation, elimination and excretion of xenobiotics -- including those that are mutagens or promutagens. This assay procedure is in line with demands for animal protection. In three previous publications we presented the scientific rationale and methodological aspects for this assay as well as results for some well-characterized mutagens and promutagens. Here we present the results of new experiments involving further genotoxic and non-genotoxic model substances. Making a comparison with published data we have to date not found any false negatives or false positives in the experiments presented here and in trials published before, thus demonstrating a promising predictivity of genotoxic effects with this assay. We could confirm relevant genotoxicity for the following substances in the HET-MN: acetylamino-fluorene (2-AAF), acrylamide (ACM), cytarabine (AraC), methotrexate (MTX), cadmium chloride (CD), dipotassium monochromate (DPC), and epirubicine (EPI). Negative results were obtained for azorubin (E122), orange G (OG) and starch (STRC). The micronucleus frequencies (MNE II) of the concurrent negative controls were in agreement with the values of the historical negative control (0.87 per thousand+/-0.87; average+/-s.d.). This value is based upon the scoring of 556,500 erythrocytes from 445 eggs. In historical positive controls the administration of 0.05mg cyclophosphamide/egg at d8 resulted in an MNE II-frequency of 12.4 per thousand+/-6.8 (average+/-s.d.) at d 10.5. This value is based upon the scoring of 249,250 erythrocytes from 223 eggs."	"Improved purification of hematopoietic stem cells based on their elevated aldehyde dehydrogenase activity. Primitive human hematopoietic cells contain higher levels of aldehyde dehydrogenase (ALDH) activity than their terminally differentiating progeny but the particular stages when ALDH levels change have not been well defined. The objective of this study was to compare ALDH levels among the earliest stages of hematopoietic cell differentiation and to determine whether these could be exploited to obtain improved purity of human cord blood cells with long-term lympho-myeloid repopulating activity in vivo. ALDEFLUOR-stained human cord blood cells displaying different levels of ALDH activity were first analyzed for co-expression of various surface markers. Subsets of these cells were then isolated by multi-parameter flow cytometry and assessed for short-and long-term repopulating activity in sublethally irradiated immunodeficient mice. Most short-term myeloid repopulating cells (STRC-M) and all long-term lympho-myeloid repopulating cells (LTRC-ML) stained selectively as ALDH+. Limiting dilution analysis of the frequencies of both STRC-M and LTRC-ML showed that they were similarly and most highly enriched in the 10% top ALDH+ cells. Removal of cells expressing CD2, CD3, CD7, CD14, CD16, CD24, CD36, CD38, CD56, CD66b, or glycophorin A from the ALDH+ low-density fraction of human cord blood cells with low light side-scattering properties yielded a population containing LTRC-ML at a frequency of 1/360. Elevated ALDH activity is a broadly inclusive property of primitive human cord blood cells that, in combination with other markers, allows easy isolation of the stem cell fraction at unprecedented purities."	"The deaf mouse mutant whirler suggests a role for whirlin in actin filament dynamics and stereocilia development. Stereocilia, finger-like projections forming the hair bundle on the apical surface of sensory hair cells in the cochlea, are responsible for mechanosensation and ultimately the perception of sound. The actin cytoskeleton of the stereocilia contains hundreds of tightly cross-linked parallel actin filaments in a paracrystalline array and it is vital for their function. Although several genes have been identified and associated with stereocilia development, the molecular mechanisms responsible for stereocilia growth, maintenance and organisation of the hair bundle have not been fully resolved. Here we provide further characterisation of the stereocilia of the whirler mouse mutant. We found that a lack of whirlin protein in whirler mutants results in short stereocilia with larger diameters without a corresponding increase in the number of actin filaments in inner hair cells. However, a decrease in the actin filament packing density was evident in the whirler mutant. The electron-density at the tip of each stereocilium was markedly patchy and irregular in the whirler mutants compared with a uniform band in controls. The outer hair cell stereocilia of the whirler homozygote also showed an increase in diameter and variable heights within bundles. The number of outer hair cell stereocilia was significantly reduced and the centre-to-centre spacing between the stereocilia was greater than in the wildtype. Our findings suggest that whirlin plays an important role in actin filament packing and dynamics during postnatal stereocilium elongation."	"Sensorineural deafness and male infertility: a contiguous gene deletion syndrome. Syndromic hearing loss that results from contiguous gene deletions is uncommon. Deafness-infertility syndrome (DIS) is caused by large contiguous gene deletions at 15q15.3. Three families with a novel syndrome characterised by deafness and infertility are described. These three families do not share a common ancestor and do not share identical deletions. Linkage was established by completing a genome-wide scan and candidate genes in the linked region were screened by direct sequencing. The deleted region is about 100 kb long and involves four genes (KIAA0377, CKMT1B, STRC and CATSPER2), each of which has a telomeric duplicate. This genomic architecture underlies the mechanism by which these deletions occur. CATSPER2 and STRC are expressed in the sperm and inner ear, respectively, consistent with the phenotype in persons homozygous for this deletion. A deletion of this region has been reported in one other family segregating male infertility and sensorineural deafness, although congenital dyserythropoietic anaemia type I (CDAI) was also present, presumably due to a second deletion in another genomic region. We have identified three families segregating an autosomal recessive contiguous gene deletion syndrome characterised by deafness and sperm dysmotility. This new syndrome is caused by the deletion of contiguous genes at 15q15.3."	"Low-dimensional maps encoding dynamics in entorhinal cortex and hippocampus. Cells that produce intrinsic theta oscillations often contain the hyperpolarization-activated current I(h). In this article, we use models and dynamic clamp experiments to investigate the synchronization properties of two such cells (stellate cells of the entorhinal cortex and O-LM cells of the hippocampus) in networks with fast-spiking (FS) interneurons. The model we use for stellate cells and O-LM cells is the same, but the stellate cells are excitatory and the O-LM cells are inhibitory, with inhibitory postsynaptic potential considerably longer than those from FS interneurons. We use spike time response curve methods (STRC), expanding that technique to three-cell networks and giving two different ways in which the analysis of the three-cell network reduces to that of a two-cell network. We show that adding FS cells to a network of stellate cells can desynchronize the stellate cells, while adding them to a network of O-LM cells can synchronize the O-LM cells. These synchronization and desynchronization properties critically depend on I(h). The analysis of the deterministic system allows us to understand some effects of noise on the phase relationships in the stellate networks. The dynamic clamp experiments use biophysical stellate cells and in silico FS cells, with connections that mimic excitation or inhibition, the latter with decay times associated with FS cells or O-LM cells. The results obtained in the dynamic clamp experiments are in a good agreement with the analytical framework."	"Non-syndromic, autosomal-recessive deafness. Non-syndromic deafness is a paradigm of genetic heterogeneity with 85 loci and 39 nuclear disease genes reported so far. Autosomal-recessive genes are responsible for about 80% of the cases of hereditary non-syndromic deafness of pre-lingual onset with 23 different genes identified to date. In the present article, we review these 23 genes, their function, and their contribution to genetic deafness in different populations. The wide range of functions of these DFNB genes reflects the heterogeneity of the genes involved in hearing and hearing loss. Several of these genes are involved in both recessive and dominant deafness, or in both non-syndromic and syndromic deafness. Mutations in the GJB2 gene encoding connexin 26 are responsible for as much as 50% of pre-lingual, recessive deafness. By contrast, mutations in most of the other DFNB genes have so far been detected in only a small number of families, and their contribution to deafness on a population scale might therefore be limited. Identification of all genes involved in hereditary hearing loss will help in our understanding of the basic mechanisms underlying normal hearing, in early diagnosis and therapy."	"RT-PCR analysis of Tecta, Coch, Eya4 and Strc in mouse cochlear explants. Tecta, Coch, Eya4 and Strc are mouse orthologs of four human deafness-associated genes. Their expression is markedly restricted to specific cell types in cochleae. Cochleae were dissected on embryonic day 15 and cultured in vitro. Relative messenger RNA abundance of each gene was quantified by RT-PCR and compared in-vivo cochleae of equivalent embryonic age. After 48 h in culture, in-vivo and explant Strc expression levels were equivalent, Eya4 level reduced in explanted tissues, and expression of Tecta and Coch did not show the expected temporal rise. Expression of these genes was detectable even after 96 h. These results suggest that it is feasible to test the expression of inner ear specific genes in explanted cochleae."	"Regulation of human short-term repopulating cell (STRC) engraftment in NOD/SCID mice by host CD122+ cells. NOD/SCID and NOD/SCID B2m(null) mice are used for the in vivo study of human hematopoietic stem cells (HSC). A previously unrecognized HSC in cord blood, termed short-term repopulating cell (STRC), has been identified using NOD/SCID B2m(null) mice. However, only low levels of STRC engraft in NOD/SCID mice, presumably due to their higher levels of NK cell activity. The objective of these studies was to deplete NK cells both by genetic manipulation of the hosts and by antibody depletion of cell populations that may regulate engraftment with human STRC. C57BL/6-SCID mice and immunodeficient NOD mice genetically deleted in NK cell activity were injected intravenously with human cord blood cells to quantify STRC engraftment. Cohorts of these mice were also treated with anti-NK1.1 or anti-CD122 (IL-2r beta-chain) antibodies. Human STRC fail to engraft in C57BL/6-SCID mice treated with anti-NK1.1 or with anti-CD122 antibody that targets mouse NK and myeloid cells. NOD/SCID mice, NOD-Rag1(null) mice, and NOD-Rag1(null)Pfp(null) mice that are genetically deleted in NK cell cytotoxic activity support only low levels of STRC engraftment. In contrast, STRC engraft at high levels in all three strains of immunodeficient NOD mice treated with anti-CD122 antibody. Injection of anti-CD122 antibody leads to high levels of STRC engraftment in immunodeficient NOD mice, but not in C57BL/6-SCID mice. These data document that depletion of NK cells is required, and that additional murine host innate immune factors, presumably myeloid cells, are important in regulating human STRC engraftment."	"Sequence similarity between stereocilin and otoancorin points to a unified mechanism for mechanotransduction in the mammalian inner ear. Interaction between hair cells and acellular gels of the mammalian inner ear, the tectorial and otoconial membranes, is crucial for mechanoreception. Recently, otoancorin was suggested to be a mediator of gel attachment to nonsensory cells, but the molecular components of the interface between gels and sensory cells remain to be identified. We report that the inner ear protein stereocilin is related in sequence to otoancorin and, based on its localisation and predicted GPI-anchoring, may mediate attachment of the tectorial and otoconial membranes to sensory hair bundles. It is expected that antibodies directed against stereocilin would specifically label sites of contact between sensory hair cells and tectorial/otoconial membranes of the inner ear. Our findings support a unified molecular mechanism for mechanotransduction, with stereocilin and otoancorin defining a new protein family responsible for the attachment of acellular gels to both sensory and nonsensory cells of the inner ear."	"Hereditary deafness and phenotyping in humans. Hereditary deafness has proved to be extremely heterogeneous genetically with more than 40 genes mapped or cloned for non-syndromic dominant deafness and 30 for autosomal recessive non-syndromic deafness. In spite of significant advances in the understanding of the molecular basis of hearing loss, identifying the precise genetic cause in an individual remains difficult. Consequently, it is important to exclude syndromic causes of deafness by clinical and special investigation and to use all available phenotypic clues for diagnosis. A clinical approach to the aetiological investigation of individuals with hearing loss is suggested, which includes ophthalmology review, renal ultrasound scan and neuro-imaging of petrous temporal bone. Molecular screening of the GJB2 (Connexin 26) gene should be undertaken in all cases of non-syndromic deafness where the cause cannot be identified, since it is a common cause of recessive hearing impairment, the screening is straightforward, and the phenotype unremarkable. By the same token, mitochondrial inheritance of hearing loss should be considered in all multigeneration families, particularly if there is a history of exposure to aminoglycoside antibiotics, since genetic testing of specific mitochondrial genes is technically feasible. Most forms of non-syndromic autosomal recessive hearing impairment cause a prelingual hearing loss, which is generally severe to profound and not associated with abnormal radiology. Exceptions to this include DFNB2 (MYO7A), DFNB8/10 (TMPRSS3) and DFNB16 (STRC) where age of onset may sometimes be later on in childhood, DFNB4 (SLC26A4) where there may be dilated vestibular aqueducts and endolymphatic sacs, and DFNB9 (OTOF) where there may also be an associated auditory neuropathy. Unusual phenotypes in autosomal dominant forms of deafness, include low frequency hearing loss in DFNA1 (HDIA1) and DFNA6/14/38 (WFS1), mid-frequency hearing loss in DFNA8/12 (TECTA), DFNA13 (COL11A2) and vestibular symptoms and signs in DFNA9 (COCH) and sometimes in DFNA11 (MYO7A). Continued clinical evaluation of types and course of hearing loss and correlation with genotype is important for the intelligent application of molecular testing in the next few years."	"Mutations in a new gene encoding a protein of the hair bundle cause non-syndromic deafness at the DFNB16 locus. Hearing impairment affects about 1 in 1,000 children at birth. Approximately 70 loci implicated in non-syndromic forms of deafness have been reported in humans and 24 causative genes have been identified (see also http://www.uia.ac.be/dnalab/hhh). We report a mouse transcript, isolated by a candidate deafness gene approach, that is expressed almost exclusively in the inner ear. Genomic analysis shows that the human ortholog STRC (so called owing to the name we have given its protein-stereocilin), which is located on chromosome 15q15, contains 29 exons encompassing approximately 19 kb. STRC is tandemly duplicated, with the coding sequence of the second copy interrupted by a stop codon in exon 20. We have identified two frameshift mutations and a large deletion in the copy containing 29 coding exons in two families affected by autosomal recessive non-syndromal sensorineural deafness linked to the DFNB16 locus. Stereocilin is made up of 1,809 amino acids, and contains a putative signal petide and several hydrophobic segments. Using immunohistolabeling, we demonstrate that, in the mouse inner ear, stereocilin is expressed only in the sensory hair cells and is associated with the stereocilia, the stiff microvilli forming the structure for mechanoreception of sound stimulation."	"Previously undetected human hematopoietic cell populations with short-term repopulating activity selectively engraft NOD/SCID-beta2 microglobulin-null mice. Increasing use of purified or cultured human hematopoietic cells as transplants has revealed an urgent need for better methods to predict the speed and durability of their engraftment potential. We now show that NOD/SCID-beta2 microglobulin-null (NOD/SCID-beta2m-/-) mice are sequentially engrafted by two distinct and previously unrecognized populations of transplantable human short-term repopulating hematopoietic cells (STRCs), neither of which efficiently engraft NOD/SCID mice. One is predominantly CD34+CD38+ and is myeloid-restricted; the other is predominantly CD34+CD38- and has broader lymphomyeloid differentiation potential. In contrast, the long-term repopulating human cells that generate lymphoid and myeloid progeny in NOD/SCID mice engraft and self-renew in NOD/SCID-beta2m-/- mice equally efficiently. In short-term expansion cultures of adult bone marrow cells, myeloid-restricted STRCs were preferentially amplified (greater than tenfold) and, interestingly, both types of STRC were found to be selectively elevated in mobilized peripheral blood harvests. These results suggest an enhanced sensitivity of STRCs to natural killer cell-mediated rejection. They also provide new in vivo assays for different types of human STRC that may help to predict the engraftment potential of clinical transplants and facilitate future investigation of early stages of human hematopoietic stem cell differentiation."	"Catabolite regulation of the Bacillus subtilis ctaBCDEF gene cluster. Bacillus subtilis cytochrome c oxidase caa3 is encoded by the ctaCDEF genes at the ctaABCDEF locus, with the ctaBCDEF genes organized as an operon-like unit. A dyad symmetry sequence and a catabolite response element homolog can be recognized in the 240-bp intercistronic region between ctaB and ctaC. ctaB'-lacZ and ctaBCD'-lacZ transcriptional fusions integrated at the native locus were used to study catabolite effects on transcription of the ctaB and ctaCDEF genes. In Schaeffer's medium lacking glucose, ctaBCD'-lacZ was expressed at a very low level during the exponential phase, and expression increased about 30-fold 2 h after entry into the stationary phase. In the presence of 0.5% glucose, ctaBCD'-lacZ expression was totally repressed. In contrast to ctaBCD'-lacZ, ctaB'-lacZ was constitutively expressed regardless of carbon source. The ctaCDEF genes were separated from ctaB by insertion of plasmids carrying selectable markers in such a way that the ctaCDEF and ctaB transcription units remained intact. Enzymatic assays of caa3 with these constructs, showed that ctaCDEF was not expressed independently of ctaB. Also, when a 'ctaB-ctaC'-lacZ fusion (containing the ctaB-ctaC intercistronic region) was placed at a remote nonessential locus, beta-galactosidase activity could not be detected. The absence of a promoter in the ctaB-ctaC intercistronic space also was indicated by the inability to detect ctaC-specific transcripts with RNase protection assays, primer extension, and rapid amplification of 5' cDNA ends. Direct mRNA measurements showed that, in the presence of 0.5% glucose, ctaBCDEF transcripts terminated at the 3' end of the putative stem-loop structure and the distal portion was down-regulated. A possible mechanism for ctaCDEF gene regulation is suggested. Catabolite repression of ctaBCD'-lacZ was partly dependent on CcpA but was independent of HPr. The expression of ctaBCDEF also appears to require the strC, ctaA, and resD-resE gene products."	"Steel factor (c-kit ligand) promotes the survival of hematopoietic stem/progenitor cells in the absence of cell division. It is known that the majority of primitive hematopoietic progenitors are in a noncycling quiescent state. In addition, normal hematopoietic progenitors and progenitor cell lines show an absolute dependence on growth factors for their survival in vitro, yet the effect of growth factors on progenitor cell survival has not been separated from effects on both proliferation and differentiation. Using an in vitro assay system, we examined whether growth factors could promote the survival of stem cells in culture in the absence of cell division. These studies show that steel factor (SLF) and, to a lesser extent, interleukin-3 (IL-3) directly promoted the survival of elutriated bone marrow progenitor cells (countercurrent centrifugal elutriation [CCE]-27) that are enriched for primitive hematopoietic progenitors that respond to the combination of SLF plus IL-3. Furthermore, SLF promoted the survival of short-term reconstituting cells (STRC), and long-term reconstituting cells (LTRC) with trilineage reconstitution potential in vivo. In comparison, granulocyte colony-stimulating factor (G-CSF), IL-6, leukemia inhibitory factor, IL-11, IL-1, granulocyte macrophage CSF (GM-CSF), and macrophage CSF (M-CSF) had no effect on the survival of these cells. In the presence of mitotic inhibitors (nocodazole or aphidicolin), SLF promoted the survival of CCE-27 progenitor cells that respond to the combination of SLF plus IL-3 in vitro and STRCs and LTRCs that are detected in vivo. Taken together, these data show that SLF can directly promote the survival of hematopoietic progenitor cells in the absence of cell division."	"Structure and expression of the cytochrome aa3 regulatory gene ctaA of Bacillus subtilis. Mutations that define the ctaA gene of Bacillus subtilis block cytochrome aa3 formation and sporulation. We have recently described the isolation and initial characterization of the ctaA locus. Analysis of in vivo mRNA transcripts by RNase protection experiments located the 5' and 3' termini of the ctaA transcript, confirming a monocistronic structure. By using a nuclease protection assay, an increase in the abundance of steady-state ctaA mRNA was observed during the initiation of sporulation, followed by a decrease during subsequent stages. Transcripts originating from the ctaA gene were most abundant 2.0 h after the end of exponential growth. This pattern of ctaA mRNA accumulation was confirmed by coupling the transcription of the ctaA gene to lacZ in an integrative plasmid vector. Expression of ctaA was not repressed by glucose and was independent of the spoOA and spoOH (sigH) gene products. Postexponential expression was found to be dependent on the product of the strC gene. The expression of ctaA appears to be regulated in a growth stage-specific manner. The transcriptional start site, identified by high-resolution S1 nuclease protection experiments, was preceded by a single sigma A-dependent promoter sequence."	"Exponential data-analysis of passive-avoidance behavior in rats and mice. Data obtained with the passive-avoidance task are usually presented as the median values of the latencies to respond. In an earlier publication we described a better way of presenting such data based on the observation that the complement of the cumulative distribution of step-through latencies can be closely fitted by a simple exponential function. Thus the &quot;step-through rate constant&quot; (STRC) is concise and accurate quantitative description of population behavior in this test. In this paper we present two examples of the application of this procedure. In the first, variation in the interval between training and testing in rats changes the STRCs of the different groups. In the second (based on data published by Flood et al.) administration of cycloheximide is seen to partition the experimental population of mice into two subgroups with different STRCs."	"Research activities of the Scientific Working Group (SWG) on Chagas' disease 1982-1985. Report of the Steering Committees (SC) to the Scientific and Technical Review Committee (STRC). NA"	"Self-cloning in Streptomyces griseus of an str gene cluster for streptomycin biosynthesis and streptomycin resistance. An str gene cluster containing at least four genes (strR, strA, strB, and strC) involved in streptomycin biosynthesis or streptomycin resistance or both was self-cloned in Streptomyces griseus by using plasmid pOA154. The strA gene was verified to encode streptomycin 6-phosphotransferase, a streptomycin resistance factor in S. griseus, by examining the gene product expressed in Escherichia coli. The other three genes were determined by complementation tests with streptomycin-nonproducing mutants whose biochemical lesions were clearly identified. strR complemented streptomycin-sensitive mutant SM196 which exhibited impaired activity of both streptomycin 6-phosphotransferase and amidinotransferase (one of the streptomycin biosynthetic enzymes) due to a regulatory mutation; strB complemented strain SD141, which was specifically deficient in amidinotransferase; and strC complemented strain SD245, which was deficient in linkage between streptidine 6-phosphate and dihydrostreptose. By deletion analysis of plasmids with appropriate restriction endonucleases, the order of the four genes was determined to be strR-strA-strB-strC. Transformation of S. griseus with plasmids carrying both strR and strB genes enhanced amidinotransferase activity in the transformed cells. Based on the gene dosage effect and the biological characteristics of the mutants complemented by strR and strB, it was concluded that strB encodes amidinotransferase and strR encodes a positive effector required for the full expression of strA and strB genes. Furthermore, it was found that amplification of a specific 0.7-kilobase region of the cloned DNA on a plasmid inhibited streptomycin biosynthesis of the transformants. This DNA region might contain a regulatory apparatus that participates in the control of streptomycin biosynthesis."	"Correlation between cytochrome aa3 concentrations and streptomycin accumulation in Bacillus subtilis. Accumulation of aminoglycosides by Bacillus subtilis appears to require specific components of the electron transport chain. These components include cytochromes and the lipophilic quinone vitamin K2. The present study concerns the importance of cytochrome aa3, a terminal oxidase, in the uptake of streptomycin. Growth conditions have been established such that the concentration of cytochrome aa3 can be modified over a wide range; on defined minimal salts agar, the wild-type strain (RB1) and an strC mutant (RB95) synthesized cytochrome aa3 only when adequate amounts of Casamino Acids (Difco Laboratories, Detroit, Mich.) were present. A positive correlation between cytochrome aa3 levels and streptomycin accumulation was observed. The same correlation was seen when cytochrome aa3 was measured in relation to growth susceptibility. These correlations suggest that cytochrome aa3 is necessary for accumulation of streptomycin by B. subtilis."	"Report of the OAU/STRC Ad Hoc Committee on Hepatitis B Vaccination in Africa. NA"	"[Operon of riboflavin biosynthesis in Bacillus subtilis. XVI. Localization of the ribC-group markers on the chromosome]. Regulatory markers of ribC group were located on the chromosome of Bacillus subtilis by means of genetic transformation. Markers of this group controlling the regulation of riboflavin biosynthesis were mapped between markers of resistance to acriflavin and streptomycin (strC group). The value of cotransfer index between acriflavin-resistance markers and ribC markers was found to be 26--32%. Acriflavin inhibits the riboflavin biosynthesis. The level of inhibition depends on the genotype of riboflavin-producing strains, while the inhibition of the cell growth does not depend on it."	"New class of streptomycin-resistant mutants incompatible with supX suppressor mutations in Salmonella typhimurium. Streptomycin-resistant colonies of Salmonella typhimurium appearing in platings of supX suppressors of strain leu-500 are less variegated in size than are those derived from strain leu-500 counterparts. Several of the streptomycin-resistant leu-500 clones, furthermore, yield suppressors and revertants of the leu-500 auxotrophy at unusually low rates, suggesting that they provide a genetic background inimicable to supX suppression. Two such &quot;suppression-restrictive&quot; leu-500 streptomycin-resistant (str) mutants, designated strains M(1) and M(4), were characterized as to their ability to receive the trp-supX-cysB linkage region by transduction. Coentry of a donor supX deletion mutation with the selected trp(+) marker was not observed even though these sites display more than 10% linkage in control experiments. This was demonstrably the result of nonviability of the combined supX mutant, M(1) or M(4) streptomycin-resistant genotype, rather than the lack of suppression of the leu-500 imparted auxotrophy. Both M(1)- and M(4)-type resistance was accompanied by pleiotropic effects resembling those caused by strB (nonribosomal)- rather than strA (ribosomal)-type resistance, but both restrictive mutants had a high upper limit of resistance corresponding to that of strA-type mutants. Transduction analyses indicated that the str character of neither the M(1) nor the M(4) strain was linked to the strA or the strB gene. These mutations define a previously undescribed locus, which we propose to designate strC, apparently related to streptomycin uptake rather than its intracellular action. Mutation at this locus is evidently incompatible with the inactivation or removal of the supX site, suggesting a functional association between products of the genes."	"Achievements of QAU-STRC CP 16 project. NA"	"Conditional dihydrostreptomycin resistance in Bacillus subtilis. Mutants resistant to dihydrostreptomycin were isolated and genetically analyzed in Bacillus subtilis. Two new classes of mutants distinct from the ribosomal strA locus were found. One class, strB, was located between metC3 and ura-1 on the chromosome. The second class, strC, mapped in the spore gene region close to the spoA locus. Both mutant classes were resistant to dihydrostreptomycin during growth but sensitive to the antibiotic during sporulation. Resuspension sporulation experiments with a strB mutant showed that sensitivity to the antibiotic was acquired early in the sporulation process. The germination and outgrowth of strB spores was sensitive to the antibiotic until growth commenced, whereupon the culture was resistant. Thus the mutants are sensitive to dihydrostreptomycin during both sporulation and germination but resistant during the growth phase."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TMIE"	"nonsyndromic genetic deafness"	"Hiatal Hernia with Acute Obstructive Symptoms After Minimally Invasive Oesophagectomy. To evaluate the incidence, treatment and postoperative outcomes of an acute hiatal hernia (HH) after totally minimally invasive esophagectomy (tMIE) for oesophageal cancer. The incidence and treatment of acute HH were analysed from our prospective database including all patients that were surgically treated for oesophageal cancer in the period between January 2011 and December 2018. Within the study period, the database contained 307 patients that underwent minimally invasive oesophagectomy. Patients' characteristics were in line with the literature of Western data. The incidence of acute HH was 2.6% (N = 8). All patients presented with gastro-intestinal obstruction symptoms, that required acute operation, repositioning of the intrathoracic organs in combination with a crural repair. Mesh reinforcement was used in 38% (N = 3). In two patients, the intestines were partially resected due to ischemia. Postoperative complications, as atrial fibrillation, respiratory failure and anastomotic leakage, were seen in 63% (N = 5). Recurrence-rate was 38% (N = 3). This present study demonstrates that an acute HH after tMIE is a serious complication with an incidence of 2.6%. When symptomatic and acute, HH requires surgical intervention and has high postoperative morbidity and recurrence-rate. Therefore, this requires treatment in a centre specialised in oesophageal surgery."	"Disruption of tmc1/2a/2b Genes in Zebrafish Reveals Subunit Requirements in Subtypes of Inner Ear Hair Cells. Detection of sound and head movement requires mechanoelectrical transduction (MET) channels at tips of hair-cell stereocilia. In vertebrates, the transmembrane channel-like (TMC) proteins TMC1 and TMC2 fulfill critical roles in MET, and substantial evidence implicates these TMCs as subunits of the MET channel. To identify developmental and functional roles of this Tmc subfamily in the zebrafish inner ear, we tested the effects of truncating mutations in tmc1, tmc2a, and tmc2b on in vivo mechanosensation at the onset of hearing and balance, before gender differentiation. We find that tmc1/2a/2b triple-mutant larvae cannot detect sound or orient with respect to gravity. They lack acoustic-evoked behavioral responses, vestibular-induced eye movements, and hair-cell activity as assessed with FM dye labeling and microphonic potentials. Despite complete loss of hair-cell function, tmc triple-mutant larvae retain normal gross morphology of hair bundles and proper trafficking of known MET components Protocadherin 15a (Pcdh15a), Lipoma HMGIC fusion partner-like 5 (Lhfpl5), and Transmembrane inner ear protein (Tmie). Transgenic, hair cell-specific expression of Tmc2b-mEGFP rescues the behavioral and physiological deficits in tmc triple mutants. Results from tmc single and double mutants evince a principle role for Tmc2a and Tmc2b in hearing and balance, respectively, whereas Tmc1 has lower overall impact. Our experiments reveal that, in developing cristae, hair cells stratify into an upper, Tmc2a-dependent layer of teardrop-shaped cells and a lower, Tmc1/2b-dependent tier of gourd-shaped cells. Collectively, our genetic evidence indicates that auditory/vestibular end organs and subsets of hair cells therein rely on distinct combinations of Tmc1/2a/2b.SIGNIFICANCE STATEMENT We assessed the effects of tmc1/2a/2b truncation mutations on mechanoelectrical transduction (MET) in the inner-ear hair cells of larval zebrafish. tmc triple mutants lacked behavioral responses to sound and head movements, while further assays demonstrated no observable mechanosensitivity in the tmc1/2a/2b triple mutant inner ear. Examination of tmc double mutants revealed major contributions from Tmc2a and Tmc2b to macular function; however, Tmc1 had less overall impact. FM labeling of lateral cristae in tmc double mutants revealed the presence of two distinct cell types, an upper layer of teardrop-shaped cells that rely on Tmc2a, and a lower layer of gourd-shaped cells that rely on Tmc1/2b."	"Totally minimally invasive esophagectomy versus hybrid minimally invasive esophagectomy: systematic review and meta-analysis. Minimally invasive esophagectomy is increasingly performed for the treatment of esophageal cancer, but it is unclear whether hybrid minimally invasive esophagectomy (HMIE) or totally minimally invasive esophagectomy (TMIE) should be preferred. The objective of this study was to perform a meta-analysis of studies comparing HMIE with TMIE. A systematic literature search was performed in MEDLINE, Embase, and the Cochrane Library. Articles comparing HMIE and TMIE were included. The Newcastle-Ottawa scale was used for critical appraisal of methodological quality. The primary outcome was pneumonia. Sensitivity analysis was performed by analyzing outcome for open chest hybrid MIE versus total TMIE and open abdomen MIE versus TMIE separately. Therefore, subgroup analysis was performed for laparoscopy-assisted HMIE versus TMIE, thoracoscopy-assisted HMIE versus TMIE, Ivor Lewis HMIE versus Ivor Lewis TMIE, and McKeown HMIE versus McKeown TMIE. There were no randomized controlled trials. Twenty-nine studies with a total of 3732 patients were included. Studies had a low to moderate risk of bias. In the main analysis, the pooled incidence of pneumonia was 19.0% after HMIE and 9.8% after TMIE which was not significantly different between the groups (RR: 1.46, 95% CI: 0.97-2.20). TMIE was associated with a lower incidence of wound infections (RR: 1.81, 95% CI: 1.13-2.90) and less blood loss (SMD: 0.78, 95% CI: 0.34-1.22) but with longer operative time (SMD:-0.33, 95% CI: -0.59--0.08). In subgroup analysis, laparoscopy-assisted HMIE was associated with a higher lymph node count than TMIE, and Ivor Lewis HMIE was associated with a lower anastomotic leakage rate than Ivor Lewis TMIE. In general, TMIE was associated with moderately lower morbidity compared to HMIE, but randomized controlled evidence is lacking. The higher leakage rate and lower lymph node count that was found after TMIE in sensitivity analysis indicate that TMIE can also have disadvantages. The findings of this meta-analysis should be considered carefully by surgeons when moving from HMIE to TMIE."	"TMIE Defines Pore and Gating Properties of the Mechanotransduction Channel of Mammalian Cochlear Hair Cells. TMC1 and TMC2 (TMC1/2) have been proposed to form the pore of the mechanotransduction channel of cochlear hair cells. Here, we show that TMC1/2 cannot form mechanotransduction channels in cochlear hair cells without TMIE. TMIE binds to TMC1/2, and a TMIE mutation that perturbs TMC1/2 binding abolishes mechanotransduction. N-terminal TMIE deletions affect the response of the mechanotransduction channel to mechanical force. Similar to mechanically gated TREK channels, the C-terminal cytoplasmic TMIE domain contains charged amino acids that mediate binding to phospholipids, including PIP2. TMIE point mutations in the C terminus that are linked to deafness disrupt phospholipid binding, sensitize the channel to PIP2 depletion from hair cells, and alter the channel's unitary conductance and ion selectivity. We conclude that TMIE is a subunit of the cochlear mechanotransduction channel and that channel function is regulated by a phospholipid-sensing domain in TMIE with similarity to those in other mechanically gated ion channels."	"Minimally invasive oesophagectomy with extended lymph node dissection and thoracic duct resection for early-stage oesophageal squamous cell carcinoma. Oesophageal squamous cell carcinoma is an aggressive disease owing to early and widespread lymph node metastases. Multimodal therapy and radical surgery may improve prognosis. Few studies have investigated the efficacy of radical lymph node and thoracic duct resection. Patients with oesophageal squamous cell carcinoma who underwent transthoracic minimally invasive oesophagectomy (TMIE) for cancer at Keio University Hospital between January 2004 and December 2016 were selected. Between 2004 and 2008, TMIE was performed in the lateral decubitus position without thoracic duct resection (standard TMIE). From 2009 onwards, TMIE with extended lymph node and thoracic duct resection was introduced (extended TMIE). Demographics, co-morbidity, number of retrieved lymph nodes, pathology, postoperative complications and recurrence-free survival (RFS) were compared between groups. Forty-four patients underwent standard TMIE and 191 extended TMIE. There were no significant differences in clinical and pathological tumour stage or postoperative complications. The extended-TMIE group had more lymph nodes removed at nodal stations 106recL and 112. Among patients with cT1 N0 disease, RFS was better in the extended-TMIE group (P &lt; 0·001), whereas there was no difference in RFS between groups in patients with advanced disease. Extended TMIE including thoracic duct resection increased the number of lymph nodes retrieved and was associated with improved survival in patients with cT1 N0 oesophageal squamous cell carcinoma."	"Effectiveness of Transthoracic Hybrid Minimally Invasive Esophagectomy: A Meta-Analysis. Background: Transthoracic hybrid minimally invasive esophagectomy (HMIE) is frequently performed in patients with esophageal cancer. However, no conclusive benefit has been defined for HMIE compared with open esophagectomy (OE) or totally MIE (TMIE). The aim of this meta-analysis is to evaluate the effectiveness of HMIE compared with OE and TMIE.Methods: PubMed, Embase (via OVID) and Cochrane databases were comprehensively searched for relevant studies up to January 2019. Studies comparing the efficacy of transthoracic HMIE with OE or TMIE were included in this meta-analysis.Results: Twenty-nine relevant studies comprising 3994 patients were identified and included in the analysis of HMIE vs OE. HMIE decreased the incidence of postoperative total morbidity (OR = 0.66, 95% CI 0.55 to 0.80, p = 0.00), pneumonia (OR = 0.55, 95% CI 0.45 to 0.66, p = 0.00), in-hospital mortality (OR = 0.54, 95% CI 0.36 to 0.83, p = 0.01), duration of hospitalization (SMD=-1.03, 95% CI -1.73 to -0.33, p = 0.00) and the estimated intraoperative blood loss (SMD=-1.01, 95% CI -1.62 to -0.40, p = 0.00) compared with OE. Twenty-one relevant studies comprising 3007 patients were identified and included in the analysis of HMIE vs TMIE. HMIE increased estimated intraoperative blood loss [standardized mean difference (SMD) = 1.02, 95% CI 0.45 to 1.58, p = 0.00] and the incidence of postoperative pneumonia (OR = 1.69, 95% CI 1.26 to 2.26, p = 0.00) compared with TMIE. No statistical differences were observed for other surgical outcomes.Conclusions: In our opinion, HMIE is a promising surgical technique. But further RCTs are still needed to confirm the advantages and disadvantages of HMIE mentioned above."	"A new tandem peptide modified liposomal doxorubicin for tumor &quot;ecological therapy&quot;. The tumor microenvironment (TME) acts as an ecosystem that includes not only tumor cells, but also stromal cells such as cancer-associated fibroblasts (CAFs) and tumor-associated macrophages (TAMs). In addition, the abnormal extracellular environment (ECM), of which the mechanical forces are regulated by fibronectin (Fn) and collagen I, orchestrates tumorigenesis and progression by directly promoting invasion and cellular transformation of the ecosystem. Herein, we develop a novel peptide-modified liposome incorporated into doxorubicin (FnBPA5-AAN-Dox) as an ecological therapy system, which targets not only the cellular compartment but also non-cellular components of breast cancer. FnBPA5 is a Fn-binding peptide showing high affinity with relaxed Fn and collagen I in the ECM as well as α-SMA-expressing CAFs. However, the fast clearance by Fn-excreting organs such as the liver and spleen limits the accumulation of FnBPA5-Dox in the TME. The AAN peptide, which targets legumain overexpressed in the TAMs, could extend the circulation time and improve the therapeutic response as well as modulate the tumor immune microenvironment (TMIE). Given twice at an equivalent dose of 5 mg kg<sup>-1</sup> intravenously, the multi-in-one 'ecological therapy' applied AAN-FnBPA5-Dox showed excellent antitumor efficacy in 4T1 breast cancer mice, and the tumor growth inhibition (TGI) is up to 98.20% compared with saline. Immunofluorescence, flow cytometry and reverse transcription polymerase chain reaction (RT-PCR) results revealed that the dramatic improvement in antitumor efficacy can be attributed to the multifunctional targets of the drug delivery system."	"Mechanotransduction-Dependent Control of Stereocilia Dimensions and Row Identity in Inner Hair Cells. Actin-rich structures, like stereocilia and microvilli, are assembled with precise control of length, diameter, and relative spacing. By quantifying actin-core dimensions of stereocilia from phalloidin-labeled mouse cochleas, we demonstrated that inner hair cell stereocilia developed in specific stages, where a widening phase is sandwiched between two lengthening phases. Moreover, widening of the second-tallest stereocilia rank (row 2) occurred simultaneously with the appearance of mechanotransduction. Correspondingly, Tmc1<sup>KO/KO</sup>;Tmc2<sup>KO/KO</sup> or Tmie<sup>KO/KO</sup> hair cells, which lack transduction, have significantly altered stereocilia lengths and diameters, including a narrowed row 2. EPS8 and the short splice isoform of MYO15A, identity markers for mature row 1 (the tallest row), lost their row exclusivity in transduction mutants. GNAI3, another member of the mature row 1 complex, accumulated at mutant row 1 tips at considerably lower levels than in wild-type bundles. Alterations in stereocilia dimensions and in EPS8 distribution seen in transduction mutants were mimicked by block of transduction channels of cochlear explants in culture. In addition, proteins normally concentrated at mature row 2 tips were also distributed differently in transduction mutants; the heterodimeric capping protein subunit CAPZB and its partner TWF2 never concentrated at row 2 tips like they do in wild-type bundles. The altered distribution of marker proteins in transduction mutants was accompanied by increased variability in stereocilia length. Transduction channels thus specify and maintain row identity, control addition of new actin filaments to increase stereocilia diameter, and coordinate stereocilia height within rows."	"Intraoperative Lipid-Rich Nutrition in the Detection of Chylothorax in Minimally Invasive Ivor Lewis Esophagectomy. Background. Chylothorax is a rare but severe complication after esophagectomy with an incidence of 1.9% to 8.9%. The aim of this study was to evaluate the efficacy of intraoperative lipid-rich feeding in reducing the incidence of post-esophagectomy chylothorax. Methods. A retrospective cohort study was performed among patients who underwent totally minimally invasive esophagectomy with intrathoracic anastomosis (tMIE Ivor Lewis) from February 2015 until December 2016. In this group, a lipid-rich solution was administered intraoperatively via a feeding jejunostomy. A historical cohort of identical patients operated in the period December 2012 to February 2015 did not receive intraoperative feeding and was used as a control. Results. In total, 133 patients underwent tMIE Ivor Lewis, of whom 59 patients (44%) received lipid-rich solution intraoperatively. The administered median total volume was 800 mL. During thoracic dissection, the thoracic duct was clearly visible in 37 patients (63%). With the help of lipid-rich feeding, intraoperative unintended duct damage was detected in 3 patients and treated. Postoperatively, 1 out of 59 patients (1.7%) developed chylothorax that was managed nonoperatively. In the control group, chylothorax was seen in 3 out of 74 patients (4.1%), P = .629. Conclusions. Intraoperative lipid-rich solution through a feeding jejunostomy helps identify thoracic duct damage during tMIE and may reduce postoperative chylothorax."	"Subunits of the mechano-electrical transduction channel, Tmc1/2b, require Tmie to localize in zebrafish sensory hair cells. Mutations in transmembrane inner ear (TMIE) cause deafness in humans; previous studies suggest involvement in the mechano-electrical transduction (MET) complex in sensory hair cells, but TMIE's precise role is unclear. In tmie zebrafish mutants, we observed that GFP-tagged Tmc1 and Tmc2b, which are subunits of the MET channel, fail to target to the hair bundle. In contrast, overexpression of Tmie strongly enhances the targeting of Tmc1-GFP and Tmc2b-GFP to stereocilia. To identify the motifs of Tmie underlying the regulation of the Tmcs, we systematically deleted or replaced peptide segments. We then assessed localization and functional rescue of each mutated/chimeric form of Tmie in tmie mutants. We determined that the first putative helix was dispensable and identified a novel critical region of Tmie, the extracellular region and transmembrane domain, which is required for both mechanosensitivity and Tmc2b-GFP expression in bundles. Collectively, our results suggest that Tmie's role in sensory hair cells is to target and stabilize Tmc channel subunits to the site of MET."	"Incidence and treatment of mediastinal leakage after esophagectomy: Insights from the multicenter study on mediastinal leaks. Mediastinal leakage (ML) is one of the most feared complications of esophagectomy. A standard strategy for its diagnosis and treatment has been difficult to establish because of the great variability in their incidence and mortality rates reported in the existing series. To assess the incidence, predictive factors, treatment, and associated mortality rate of mediastinal leakage using the standardized definition of mediastinal leaks recently proposed by the Esophagectomy Complications Consensus Group (ECCG). Seven Italian surgical centers (five high-volume, two low-volume) affiliated with the Italian Society for the Study of Esophageal Diseases designed and implemented a retrospective study including all esophagectomies (n = 501) with intrathoracic esophagogastric anastomosis performed from 2014 to 2017. Anastomotic MLs were defined according to the classification recently proposed by the ECCG. Fifty-nine cases of ML were recorded, yielding an overall incidence of 11.8% (95%CI: 9.1%-14.9%). The surgical approach significantly influenced the occurrence of ML: the proportion of leakage was 10.5% and 9% after open and hybrid esophagectomy (HE), respectively, and doubled (20%) after totally minimally invasive esophagectomy (TMIE) (P = 0.016). No other predictive factors were found. The 30- and 90-d overall mortality rates were 1.4% and 3.2%, respectively; the 30- and 90-d leak-related mortality rates were 5.1% and 10.2%, respectively; the 90-d mortality rates for TMIE and HE were 5.9% and 1.8%, respectively. Endoscopy was the first-line treatment in 49% of ML cases, with the need for retreatment in 17.2% of cases. Surgery was needed in 44.1% of ML cases. Endoscopic treatment had the lowest mortality rate (6.9%). Removal of the gastric tube with stoma formation was necessary in 8 (13.6%) cases. The incidence of ML after esophagectomy was high mainly in the TMIE group. However, the general and specific (leak-related) mortality rates were low. Early treatment (surgical or endoscopic) of severe leaks is mandatory to limit related mortality."	"The Influence of Age on Complications and Overall Survival After Ivor Lewis Totally Minimally Invasive Esophagectomy. The number of elderly patients suffering from esophageal cancer is increasing, due to an increasing incidence of esophageal cancer and increasing life expectancy. However, the effect of age on morbidity, mortality, and survival after Ivor Lewis total minimally invasive esophagectomy (TMIE) is not well known. A prospectively documented database from December 2010 to June 2017 was analyzed, including all patients who underwent Ivor Lewis TMIE for esophageal cancer in three Dutch high-volume esophageal cancer centers. Patients younger than 75 years (younger group) were compared to patients aged 75 years or older (elderly group). Baseline patient characteristics and perioperative data were included. Surgical complications were graded using the Clavien-Dindo scale. The primary outcome was postoperative complications Clavien-Dindo ≥ 3. Secondary outcome parameters were postoperative complications, in-hospital mortality, 30- and 90-day mortality and survival. Four hundred and forty-six patients were included, 357 in the younger and 89 in the elderly group. No significant differences were recorded regarding baseline patient characteristics. There was no significant difference in complications graded Clavien-Dindo ≥ 3 and overall complications, short-term mortality, and survival. Delirium occurred in 27.0% in the elderly and 11.8% in the younger group (p &lt; 0.001). After correction for baseline comorbidity this difference remained significant (p = 0.001). Median hospital length of stay was 13 days in the elderly and 11 days in the younger group (p = 0.010). Ivor Lewis TMIE can be safely performed in selected elderly patients without increasing postoperative morbidity and mortality."	"Genetic Aetiology of Nonsyndromic Hearing Loss in Moravia-Silesia. Hearing loss is the most common sensory deficit in humans. The aim of this study was to clarify the genetic aetiology of nonsyndromic hearing loss in the Moravian-Silesian population of the Czech Republic. This study included 200 patients (93 males, 107 females, mean age 16.9 years, ranging from 4 months to 62 years) with nonsyndromic sensorineural hearing loss. We screened all patients for mutations in GJB2 and the large deletion del(GJB6-D13S1830). We performed further screening for additional genes (SERPINB6, TMIE, COCH, ESPN, ACTG1, KCNQ4, and GJB3) with Sanger sequencing on a subset of patients that were negative for GJB2 mutations. We detected biallelic GJB2 mutations in 44 patients (22%). Among these patients, 63.6%, 9.1% and 2.3% exhibited homozygous c.35delG, p.Trp24*, and p.Met34Thr mutations, respectively. The remaining 25% of these patients exhibited compound heterozygous c.35delG, c.-23+1G&gt;A, p.Trp24*, p.Val37Ile, p.Met34Thr, p.Leu90Pro, c.235delC, c.313_326del14, p.Ser139Asn, and p.Gly147Leu mutations. We found a monoallelic GJB2 mutation in 12 patients (6.6%). We found no pathogenic mutations in the other tested genes. Conclusions: One fifth of our cohort had deafness related to GJB2 mutations. The del(GJB6-D13S1830), SERPINB6, TMIE, COCH, ESPN, ACTG1, GJB3, and KCNQ4 mutations were infrequently associated with deafness in the Moravian-Silesian population. Therefore, we suggest that del(GJB6-D13S1830) testing should be performed only when patients with deafness carry the monoallelic GJB2 mutation."	"Function and Dysfunction of TMC Channels in Inner Ear Hair Cells. The TMC1 channel was identified as a protein essential for hearing in mouse and human, and recognized as one of a family of eight such proteins in mammals. The TMC family is part of a superfamily of seven branches, which includes the TMEM16s. Vertebrate hair cells express both TMC1 and TMC2. They are located at the tips of stereocilia and are required for hair cell mechanotransduction. TMC1 assembles as a dimer and its similarity to the TMEM16s has enabled a predicted tertiary structure with an ion conduction pore in each subunit of the dimer. Cysteine mutagenesis of the pore supports the role of TMC1 and TMC2 as the core channel proteins of a larger mechanotransduction complex that includes PCDH15 and LHFPL5, and perhaps TMIE, CIB2 and others."	"Evolution of the surgical technique of minimally invasive Ivor-Lewis esophagectomy: description according to the IDEAL framework. Totally minimally invasive Ivor-Lewis esophagectomy (Ivor Lewis TMIE) is a technically challenging procedure and is associated with a learning curve. Refinement of surgical technique is an important part of this learning curve. However, detailed descriptions of these refinements according to the idea, development, exploration, assessment, and long-term follow-up (IDEAL) framework are lacking and this study was undertaken to fill this knowledge gap. From 2010 until 2016, all consecutive patients (n = 164) were included from the first patient undergoing Ivor Lewis TMIE. Surgical reports were analyzed and surgeons were interviewed to determine surgical refinements. These data were used to describe the transition of the surgical technique from IDEAL stage IIB to stage III. The main findings were that four refinements were made to the surgical procedure in IDEAL stage IIB: (1) At case 9, the use of the 25 mm OrVil was abandoned, exchanged for a 28 mm EEA stapler and a large omental wrap around the anastomosis was introduced; (2) at case 27, the omental wrap was reduced in volume; (3) at case 60, the omental wrap was refined to cover the full 360° of the anastomosis and (4) at case 77, the fixation of the anvil with the Endostitch was replaced by fixation with two Endoloops®. During the transition from IDEAL stage IIB to stage III, the incidence of anastomotic leakage decreased from 26.0% to 4.6% (P &lt; 0.001) and the incidence of textbook outcome increased from 31.2% to 47.1% (P = 0.039). In conclusion, this study describes the surgical refinements that were made during the progression of Ivor Lewis TMIE from IDEAL stage IIB to IDEAL stage III. During IDEAL stage IIB, postoperative outcome improved as surgical proficiency was gained and the technique was refined."	"Propensity Score-Matched Analysis Comparing Minimally Invasive Ivor Lewis Versus Minimally Invasive Mckeown Esophagectomy. Totally minimally invasive esophagectomy (TMIE) is increasingly used in treatment of patients with esophageal carcinoma. However, it is currently unknown if McKeown TMIE or Ivor Lewis TMIE should be preferred for patients in whom both procedures are oncologically feasible. The study was performed in 4 high-volume Dutch esophageal cancer centers between November 2009 and April 2017. Prospectively collected data from consecutive patients with esophageal cancer localized in the distal esophagus or gastroesophageal junction undergoing McKeown TMIE or Ivor Lewis TMIE were included. Patients were propensity score matched for age, body mass index, sex, American Society of Anesthesiologists classification, Charlson Comorbidity Index, tumor type, tumor location, clinical stage, neoadjuvant treatment, and the hospital of surgery. The primary outcome parameter was anastomotic leakage requiring reintervention or reoperation. Secondary outcome parameters were operation characteristics, pathology results, complications, reinterventions, reoperations, length of stay, and mortality. Of all 787 included patients, 420 remained after matching. The incidence of anastomotic leakage requiring reintervention or reoperation was 23.3% after McKeown TMIE versus 12.4% after Ivor Lewis TMIE (P = 0.003). Ivor Lewis TMIE was significantly associated with a lower incidence of pulmonary complications (46.7% vs 31.9%), recurrent laryngeal nerve palsy (9.5% vs 0.5%), reoperations (18.6% vs 11.0%), 90-day mortality (7.1% vs 2.9%), shorter median intensive care unit length of stay (2 days vs 1 day) and shorter median hospital length of stay (12 vs 11 days) (all P &lt; 0.05). R0 resection rate was similar between the groups. The median number of examined lymph nodes was 21 after McKeown TMIE and 25 after Ivor Lewis TMIE (P &lt; 0.001). Ivor Lewis TMIE is associated with a lower incidence of anastomotic leakage, 90-day mortality and other postoperative morbidity compared to McKeown TMIE in patients in whom both procedures are oncologically feasible."	"Mechanically Gated Ion Channels in Mammalian Hair Cells. Hair cells in the inner ear convert mechanical stimuli provided by sound waves and head movements into electrical signal. Several mechanically evoked ionic currents with different properties have been recorded in hair cells. The search for the proteins that form the underlying ion channels is still in progress. The mechanoelectrical transduction (MET) channel near the tips of stereociliary in hair cells, which is responsible for sensory transduction, has been studied most extensively. Several components of the sensory mechanotransduction machinery in stereocilia have been identified, including the multi-transmembrane proteins tetraspan membrane protein in hair cell stereocilia (TMHS)/LHFPL5, transmembrane inner ear (TMIE) and transmembrane channel-like proteins 1 and 2 (TMC1/2). However, there remains considerable uncertainty regarding the molecules that form the channel pore. In addition to the sensory MET channel, hair cells express the mechanically gated ion channel PIEZO2, which is localized near the base of stereocilia and not essential for sensory transduction. The function of PIEZO2 in hair cells is not entirely clear but it might have a role in damage sensing and repair processes. Additional stretch-activated channels of unknown molecular identity and function have been found to localize at the basolateral membrane of hair cells. Here, we review current knowledge regarding the different mechanically gated ion channels in hair cells and discuss open questions concerning their molecular composition and function."	"Mutations in OTOF, CLDN14 &amp; SLC26A4 genes as major causes of hearing impairment in Dhadkai village, Jammu &amp; Kashmir, India. A high incidence of hearing impairment is reported from the village of Dhadkai in the State of Jammu and Kashmir, India. Prevalence of endogamy in this community suggested a common genetic basis for the disorder. A genetic study was undertaken to ascertain the basis for the high incidence of hearing impairment in this region. In a two-step approach to identify the causative mutation/s, a whole-genome-based linkage analysis of an extended family of 45 members was carried out, which included 23 affected and 22 unaffected members. Mutational analysis for the candidate deafness genes helped reveal causative mutations in the family. In addition, seven deafness-causing genes, Cx26, SLC26A4, CLDN14, TMPRSS3, TMC1, TMIE and USH1C, were analyzed in smaller families with hearing impairment. In the 45-member extended family, the critical chromosomal region mapped to 2p24-p22.The c.2122C&gt;T (p.R708X) mutation in OTOF in 2p24-p22was identified as being the causal change. Linkage to 2p24-p22 locus was not observed in a particular branch of this extended family. Analysis of seven known deafness-causing genes in this branch revealed a mutation, c.254T&gt;A (p.V85D), in CLDN14. Among seven small families unrelated to the 45-member extended family, hearing loss was attributable to p.R708X in OTOF in three families and to p.V85D in CLDN14 in one family; a new mutation c.1668T&gt;A (p.Y556X) SLC26A4 was identified in two families and the causative change could not be identified in one family. This study suggested considerable genetic heterogeneity in the causation of hearing loss in Dhadkai. Recessive mutations were observed in at least three genes causing hearing loss: OTOF (p.R708X), SLC26A4 (p.Y556X) and CLDN14 (p.V85D). Mutation p.R708X appeared to be the major cause of hearing impairment in Dhadkai."	"Immunohistochemical Localization of Calbindin D28k, Parvalbumin, and Calretinin in the Superior Olivary Complex of Circling Mice. The circling mouse serves as a hearing loss model. It has spontaneous tmie gene mutations that cause hair cell and cochlear degeneration. However, little is known about the role of the tmie gene in superior olivary complex (SOC) regions, in which sound information from the two ears is integrated and primarily relayed to the nuclei of the lateral lemniscus and inferior colliculus. Several studies have reported that abnormal calcium (Ca2+) homeostasis is associated with the pathology of hearing loss. This study investigated the distribution of Ca2+-binding proteins (CaBPs), such as calbindin D28k, parvalbumin, and calretinin, in the SOC of the circling mouse on postnatal day 16. A comparison of wild-type (+/+), heterozygous (+/cir), and homozygous (cir/cir) mice showed that CaBP immunoreactivity was significantly decreased in the auditory nucleus of the SOC of homozygous (cir/cir) mice. A decline in the CaBPs level in the SOC may be the result of hearing loss through hair cell and cochlear degeneration following tmie gene mutation."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"The distribution of calbindin-D28k, parvalbumin, and calretinin immunoreactivity in the inferior colliculus of circling mouse. The circling mice with tmie gene mutation are known as an animal deafness model, which showed hyperactive circling movement. Recently, the reinvestigation of circling mouse was performed to check the inner ear pathology as a main lesion of early hearing loss. In this trial, the inner ear organs were not so damaged to cause the hearing deficit of circling (cir/cir) mouse at 18 postnatal day (P18) though auditory brainstem response data indicated hearing loss of cir/cir mice at P18. Thus, another mechanism may be correlated with the early hearing loss of cir/cir mice at P18. Hearing loss in the early life can disrupt the ascending and descending information to inferior colliculus (IC) as integration site. There were many reports that hearing loss could result in the changes in Ca<sup>2+</sup> concentration by either cochlear ablation or genetic defect. However, little was known to be reported about the correlation between the pathology of IC and Ca<sup>2+</sup> changes in circling mice. Therefore, the present study investigated the distribution of calcium-binding proteins (CaBPs), calbindin-D28k, parvalbumin, and calretinin immunoreactivity (IR) in the IC to compare among wild-type (+/+), heterozygous (+/cir), and homozygous (cir/cir) mice by immunohistochemistry. The decreases of CaBPs IR in cir/cir were statistically significant in the neurons as well as neuropil of IC. Thus, this study proposed overall distributional alteration of CaBPs IR in the IC caused by early hearing defect and might be helpful to elucidate the pathology of central auditory disorder related with Ca<sup>2+</sup> metabolism."	"McKeown or Ivor Lewis totally minimally invasive esophagectomy for cancer of the esophagus and gastroesophageal junction: systematic review and meta-analysis. Minimally invasive esophagectomy (MIE) has consistently been associated with improved perioperative outcome and similar oncological safety compared to open esophagectomy. However, it is currently unclear what type of MIE is preferred for patients with resectable esophageal cancer. Literature was searched in Medline, Embase and the Cochrane library combining relevant search terms. Articles that included patients undergoing totally minimally invasive esophagectomy (TMIE) or hybrid minimally invasive esophagectomy (HMIE) and compared McKeown with Ivor Lewis procedures were included. Studies were excluded if they included &gt;10% of patients undergoing a procedure other than MIE McKeown or MIE Ivor Lewis (i.e., transhiatal resections). The primary outcome parameter was anastomotic leakage. Secondary outcome parameters were: other complications, reinterventions, reoperations, hospital length of stay, ICU length of stay, postoperative mortality, operative time, blood loss, R0 resection rate, lymph nodes examined, quality of life and costs. Five studies with a total of 1,681 patients undergoing TMIE were included. There were no studies comparing HMIE McKeown versus HMIE Ivor Lewis. There were no randomized controlled trials and all included studies were cohort studies with a moderate risk of bias. No meta-analysis could be performed for R0 resection rate, survival, quality of life and costs because there was insufficient data available for these parameters. The incidence of anastomotic leakage did not differ between the groups [relative risk (RR) =1.39, 95% confidence interval (CI) =0.90-10.38, P=0.14]. TMIE Ivor Lewis was associated with a lower incidence of recurrent laryngeal nerve (RLN) trauma (RR =6.70, 95% CI =3.09-14.55, P&lt;0.001), a shorter hospital length of stay [standardized mean difference (SMD) =0.17, 95% CI =0.06-0.28, P=0.002] and less blood loss (SMD =0.69, 95% CI =0.25-1.12, P=0.002). TMIE Ivor Lewis is associated with improved outcome regarding RLN trauma, hospital length of stay and blood loss as compared to TMIE-McKeown, but the incidence of anastomotic leakage is not different. The evidence is limited, of low quality and at risk for bias. A randomized controlled trial is currently being performed in order to demonstrate whether a McKeown or Ivor Lewis procedure should be preferred in patients undergoing MIE."	"Over-expression of myosin7A in cochlear hair cells of circling mice. Circling mouse (C57BL/6J-cir/cir) deleted the transmembrane inner ear (Tmie) gene is an animal model for human non-syndromic recessive deafness, DFNB6. In circling mouse, hair cells in the cochlea have degenerated and hair bundles have become irregularity as time goes on. Tmie protein carries out a function of the mechanoelectrical transduction channel in cochlear hair cells. Myosin7a (MYO7A) protein has key roles in development of the cochlear hair bundles as well as in the function of cochlear hair cells. To find whether Tmie protein interacts with MYO7A proteins in the cochlea postnatal developmental stage, we investigated expression of the MYO7A proteins in the cochlear hair cells of circling mice by western blot analysis and whole mount immunofluorescence at postnatal day 5 (P5). The expression of MYO7A showed statistically significant increase in the cochlea of C57BL/6J-+/cir and C57BL/6J-cir/cir mice than that of C57BL/6J-+/+ mice. The MYO7A intensity of the cochlear hair cells also increased in C57BL/6J-+/cir and C57BL/6J-cir/cir mice compared with those of C57BL/6J-+/+ mice. Taken together, the results indicate that Tmie protein may have an important role with MYO7A protein in the development and maintenance of the stereociliary bundles during postnatal developmental stage of the cochlea."	"Mechanosensory hair cells express two molecularly distinct mechanotransduction channels. Auditory hair cells contain mechanotransduction channels that rapidly open in response to sound-induced vibrations. We report here that auditory hair cells contain two molecularly distinct mechanotransduction channels. One ion channel is activated by sound and is responsible for sensory transduction. This sensory transduction channel is expressed in hair cell stereocilia, and previous studies show that its activity is affected by mutations in the genes encoding the transmembrane proteins TMHS, TMIE, TMC1 and TMC2. We show here that the second ion channel is expressed at the apical surface of hair cells and that it contains the Piezo2 protein. The activity of the Piezo2-dependent channel is controlled by the intracellular Ca<sup>2+</sup> concentration and can be recorded following disruption of the sensory transduction machinery or more generally by disruption of the sensory epithelium. We thus conclude that hair cells express two molecularly and functionally distinct mechanotransduction channels with different subcellular distributions."	"Molecular Identity of the Mechanotransduction Channel in Hair Cells: Not Quiet There Yet. Hair cells in the mammalian cochlea are specialized mechanosensory cells that convert sound-induced vibrations into electrochemical signals. The molecular composition of the mechanotransduction channel underlying auditory perception has been difficult to define. The study of genes that are linked to inherited forms of deafness has recently provided tantalizing clues. Current findings indicate that the mechanotransduction channel in hair cells is a complex molecular machine. Four different proteins (TMHS/LHFPL5, TMIE, TMC1, and TMC2) have so far been linked to the transduction channel, but which proteins contribute to the channel pore still needs to be determined. Current evidence also suggests that the channel complex may contain additional, yet to be identified components."	"Is TMC1 the Hair Cell Mechanotransducer Channel? Transmembrane channel-like protein isoform-1 (TMC1) has emerged over the past five years as a prime contender for the mechano-electrical transducer (MET) channel in hair cells of the inner ear. TMC1 is thought to have a six-transmembrane domain structure reminiscent of some other ion-channel subunits, and is targeted to the tips of the stereocilia in the sensory hair bundle, where the MET channel is located. Moreover, there are TMC1 mutations linked to human deafness causing loss of conventional MET currents, hair cell degeneration, and deafness in mice. Finally, mutations of Tmc1 can alter the conductance and Ca(2+) selectivity of the MET channels. For several reasons though, it is unclear that TMC1 is indeed the MET channel pore: 1) in other animals or tissues, mutations of TMC family members do not directly affect cellular mechanosensitivity; 2) there are residual manifestations of mechanosensitivity in hair cells of mouse Tmc1:Tmc2 double knockouts; 3) there is so far no evidence that expression of mammalian Tmc1 generates a mechanically sensitive ion channel in the plasma membrane when expressed in heterologous cells; and 4) there are other proteins, such as TMIE and LHFPL5, which behave similarly to TMC1, their mutation also leading to loss of MET current and deafness. This review will present these disparate lines of evidence and describes recent work that addresses the role of TMC1. "	"Mutations in eight small DFNB genes are not a frequent cause of non-syndromic hereditary hearing loss in Czech patients. To evaluate the contribution of eight small NSHL-AR (non-syndromic deafness, autosomal recessive) genes to hereditary hearing loss in Czech patients. Unrelated Czech patients, adults and children, diagnosed with pre-lingual hereditary hearing loss with at least one similarly affected deaf sibling and with previously excluded mutations in the GJB2 gene were investigated by Sanger sequencing of the selected eight small NSHL-AR associated genes (CABP2 - 51 patients, CIB2 - 45 patients, PJVK/DFNB59 - 53 patients, GJB3 - 46 patients, ILDR1 - 48 patients, LHFPL5 - 66 patients, LRTOMT - 60 patients, TMIE - 64 patients). Mutations were detected in the LHFPL5 (DFNB67) gene. The patient is heterozygote for two already described pathogenic variants (p.Tyr127Cys, p.Thr165Met). In five samples, five rare heterozygous variants (two novel) predicted as pathogenic were detected in genes CABP2, ILDR1, LHFPL5 and LRTOMT. Mutations in eight small NSHL-AR genes are not a frequent cause of hereditary hearing loss in the Czech Republic. This diagnostic approach permitted the clarification of HL in only one patient - two heterozygous mutations were detected in LHFPL5 gene for the first time in Central Europe. As the use of panel base MPS certainly improves the diagnostic yield, future studies should rather profit from that diagnostic strategy."	"Comprehensive Analysis of Deafness Genes in Families with Autosomal Recessive Nonsyndromic Hearing Loss. Comprehensive genetic testing has the potential to become the standard of care for individuals with hearing loss. In this study, we investigated the genetic etiology of autosomal recessive nonsyndromic hearing loss (ARNSHL) in a Turkish cohort including individuals with cochlear implant, who had a pedigree suggestive of an autosomal recessive inheritance. A workflow including prescreening of GJB2 and a targeted next generation sequencing panel (Illumına TruSightTM Exome) covering 2761 genes that we briefly called as mendelian exome sequencing was used. This panel includes 102 deafness genes and a number of genes causing Mendelian disorders. Using this approach, we identified causative variants in 21 of 29 families. Three different GJB2 variants were present in seven families. Remaining 14 families had 15 different variants in other known NSHL genes (MYO7A, MYO15A, MARVELD2, TMIE, DFNB31, LOXHD1, GPSM2, TMC1, USH1G, CDH23). Of these variants, eight are novel. Mutation detection rate of our workflow is 72.4%, confirming the usefulness of targeted sequencing approach in NSHL."	"Minimally Invasive Esophagectomy for Cancer: Single Center Experience after 44 Consecutive Cases. At the Department of Minimally Invasive Upper Digestive Surgery of the Hospital for Digestive Surgery in Belgrade, hybrid minimally invasive esophagectomy (hMIE) has been a standard of care for patients with resectable esophageal cancer since 2009. As a next and final step in the change management, from January 2015 we utilized total minimally invasive esophagectomy (tMIE) as a standard of care. The aim of the study was to report initial experiences in hMIE (laparoscopic approach) for cancer and analyze surgical technique, major morbidity and 30-day mortality. A retrospective cohort study included 44 patients who underwent elective hMIE for esophageal cancer at the Department for Minimally Invasive Upper Digestive Surgery, Hospital for Digestive Surgery, Clinical Center of Serbia in Belgrade from April 2009 to December 2014. There were 16 (36%) middle thoracic esophagus tumors and 28 (64%) tumors of distal thoracic esophagus. Mean duration of the operation was 319 minutes (approximately five hours and 20 minutes). The average blood loss was 173.6 ml. A total of 12 (27%) of patients had postoperative complications and mean intensive care unit stay was 2.8 days. Mean hospital stay after surgery was 16 days. The average number of harvested lymph nodes during surgery was 31.9. The overall 30-day mortality rate within 30 days after surgery was 2%. As long as MIE is an oncological equivalent to open esophagectomy (OE), better relation between cost savings and potentially increased effectiveness will make MIE the preferred approach in high-volume esophageal centers that are experienced in minimally invasive procedures."	"The tip-link molecular complex of the auditory mechano-electrical transduction machinery. Sound waves are converted into electrical signals by a process of mechano-electrical transduction (MET), which takes place in the hair bundle of cochlear hair cells. In response to the mechanical stimulus of the hair bundle, the tip-links, key components of the MET machinery, are tensioned and the MET channels open, which results in the generation of the cell receptor potential. Tip-links are composed of cadherin-23 (Cdh23) and protocadherin-15 (Pcdh15), both non-conventional cadherins, that form the upper and the lower part of these links, respectively. Here, we review the various Pcdh15 isoforms present in the organ of Corti, their localization in the auditory hair bundles, their involvement in the molecular complex forming the tip-link, and their interactions with transmembrane molecules that are components of the lower MET machinery."	"Trimodal imaging endoscopy reduces the risk of synchronous gastric neoplasia. The accurate detection of synchronous neoplasia is important to reduce the risk of recurrence after endoscopic resection. Trimodal imaging endoscopy (TMIE) was developed for this purpose. Our aim was to compare the effects of TMIE and white-light imaging endoscopy (WLIE) in gastric neoplasia detection. Six hundred and seventy-eight patients with gastric dysplasia or cancer initially treated by endoscopic resection and who underwent follow-up endoscopy were analyzed retrospectively. Gastric neoplasia detected within 1 year of endoscopic resection was defined as synchronous disease. WLIE or TMIE was used to detect another gastric neoplasia before endoscopic resection. Synchronous gastric neoplasia was observed in 41 patients (6%), and occurred more frequently after the resection of carcinoma than dysplasia (8.5 vs. 4.6%, P=0.04). TMIE significantly reduced the frequency of synchronous gastric lesions than WLIE (2.3 vs. 9.3%, P&lt;0.01). TMIE was more effective than WLIE in reducing the risk of missing a synchronous gastric lesion after adjusting for lesion multiplicity, experience, and resected lesion pathology (hazard ratio, 0.32; 95% confidence interval, 0.108-0.762). The risk of missing synchronous gastric neoplasia is higher after endoscopic resection for gastric cancer than dysplasia, but is reduced by TMIE. TMIE before endoscopic treatment can be useful in decreasing the risk of synchronous gastric neoplasia."	"A precisely defined role for the tip link-associated protein TMIE in the mechanoelectrical transduction channel complex of inner ear hair cells. Inner ear hair cells transduce sound waves and acceleration. In the quest to identify the molecular machinery underlying mechanoelectrical transduction, Zhao et al. (2014) in this issue of Neuron reveal that the TMIE protein, essential for hearing, physically interacts with tip link protein protocadherin-15."	"TMIE is an essential component of the mechanotransduction machinery of cochlear hair cells. Hair cells are the mechanosensory cells of the inner ear. Mechanotransduction channels in hair cells are gated by tip links. The molecules that connect tip links to transduction channels are not known. Here we show that the transmembrane protein TMIE forms a ternary complex with the tip-link component PCDH15 and its binding partner TMHS/LHFPL5. Alternative splicing of the PCDH15 cytoplasmic domain regulates formation of this ternary complex. Transducer currents are abolished by a homozygous Tmie-null mutation, and subtle Tmie mutations that disrupt interactions between TMIE and tip links affect transduction, suggesting that TMIE is an essential component of the hair cell's mechanotransduction machinery that functionally couples the tip link to the transduction channel. The multisubunit composition of the transduction complex and the regulation of complex assembly by alternative splicing is likely critical for regulating channel properties in different hair cells and along the cochlea's tonotopic axis. "	"Sensory rewiring in an echolocator: genome-wide modification of retinogenic and auditory genes in the bat Myotis davidii. Bats comprise 20% of all mammalian species and display a number of characteristics, including true flight, echolocation, and a heightened ability to resist viral load that uniquely position this group for comparative genomic studies. Here we searched for evidence of genomic variation consistent with sensory rewiring through bat evolution. We focused on two species with divergent sensory preferences. Myotis davidii is a bat species that echolocates and possesses dim- but not daylight-adapted vision whereas the black flying fox (Pteropus alecto) has highly developed day vision but does not echolocate. Using the naked mole rat as a reference, we found five functional genes (CYP1A2, RBP3, GUCY2F, CRYBB1, and GRK7) encoding visual proteins that have degenerated into pseudogenes in M. davidii but not P. alecto. In a second approach genome-wide codon usage bias (CUB) was compared between the two bat species. This CUB ranking systematically enriched for vision-related (CLN8, RD3, IKZF1, LAMC3, CRX, SOX8, VAX2, HPS1, RHO, PRPH2, and SOX9) and hearing-related (TPRN, TMIE, SLC52A3, OTOF, WFS1, SOD1, TBX18, MAP1A, OTOS, GPX1, and USH1G) machinery in M. davidii but not P. alecto. All vision and hearing genes selectively enriched in M. davidii for which orthologs could be identified also were more biased in the echolocating M. lucifugus than the nonecholocating P. vampyrus. We suggest that the existence of codon bias in vision- and hearing-related genes in a species that has evolved echolocation implies CUB is part of evolution's toolkit to rewire sensory systems. We propose that the two genetic changes (pseudogene formation and CUB) collectively paint a picture of that incorporates a combination of destruction and gain-of-function. Together, they help explain how natural selection has reduced physiological costs associated with the development of a smaller eye poorly adapted to day vision but that also contribute to enhanced dim light vision and the hearing adaptations consonant with echolocation. "	"Non-syndromic hearing impairment in India: high allelic heterogeneity among mutations in TMPRSS3, TMC1, USHIC, CDH23 and TMIE. Mutations in the autosomal genes TMPRSS3, TMC1, USHIC, CDH23 and TMIE are known to cause hereditary hearing loss. To study the contribution of these genes to autosomal recessive, non-syndromic hearing loss (ARNSHL) in India, we examined 374 families with the disorder to identify potential mutations. We found four mutations in TMPRSS3, eight in TMC1, ten in USHIC, eight in CDH23 and three in TMIE. Of the 33 potentially pathogenic variants identified in these genes, 23 were new and the remaining have been previously reported. Collectively, mutations in these five genes contribute to about one-tenth of ARNSHL among the families examined. New mutations detected in this study extend the allelic heterogeneity of the genes and provide several additional variants for structure-function correlation studies. These findings have implications for early DNA-based detection of deafness and genetic counseling of affected families in the Indian subcontinent. "	"Trait-mediated indirect effects, predators, and disease: test of a size-based model. Increasing prevalence of wildlife disease accentuates the need to uncover drivers of epidemics. Predators can directly influence disease prevalence via density-mediated effects (e.g., culling infected hosts leading to reduced disease prevalence). However, trait-mediated indirect effects (TMIEs) of predators can also strongly influence disease--but predicting a priori whether TMIEs should increase or decrease disease prevalence can be challenging, especially since a single predator may elicit responses that have opposing effects on disease prevalence. Here, we pair laboratory experiments with a mechanistic, size-based model of TMIEs in a zooplankton host, fungal parasite, multiple predator system. Kairomones can either increase or decrease body size of the host Daphnia, depending on the predator. These changes in size could influence key traits of fungal disease, since infection risk and spore yield increase with body size. For six host genotypes, we measured five traits that determine an index of disease spread (R 0). Although host size and disease traits did not respond to kairomones produced by the invertebrate predator Chaoborus, cues from fish reduced body size and birth rate of uninfected hosts and spore yield from infected hosts. These results support the size model for fish; the birth and spore yield responses should depress disease spread. However, infection risk did not decrease with fish kairomones, thus contradicting predictions of the size model. Exposure to kairomones increased per spore susceptibility of hosts, countering size-driven decreases in exposure to spores. Consequently, synthesizing among the relevant traits, there was no net effect of fish kairomones on the R 0 metric. This result accentuates the need to integrate the TMIE-based response to predators among all key traits involved in disease spread."	"tmie Is required for gentamicin uptake by the hair cells of mice. The circling (cir/cir) mouse is a spontaneous model of deafness due to deletion of a 40-kb genomic region that includes the transmembrane inner ear (tmie) gene. In addition to being deaf, cir/cir mice exhibit abnormal behaviors including circling and hyperactivity. Here we investigated differences between 3-d-old (that is, before hair-cell degeneration) cir/cir and phenotypically normal (+/cir) mice and the reason underlying the degeneration of the inner ear structure of cir/cir mice. To this end, we used gentamicin, gentamicin-Texas red conjugate, and FM1-43 to investigate mechanotransducer channel activity in the hair cells of cir/cir mice; these compounds are presumed to enter hair cells through the mechanotransducer channel. Although the structure of the inner ear of +/cir mice was equivalent to that of cir/cir mice, the hair cells of cir/cir mice (unlike +/cir) did not take up gentamicin, gentamicin-Texas red conjugate, or FM1-43. These findings suggest that hair cells in cir/cir mice demonstrate abnormal maturation and mechanotransduction. In addition, our current results indicate that tmie is required for maturation and maintenance of hair cells."	"Restricting prey dispersal can overestimate the importance of predation in trophic cascades. Predators can affect prey populations and, via trophic cascades, predators can indirectly impact resource populations (2 trophic levels below the predator) through consumption of prey (density-mediated indirect effects; DMIEs) and by inducing predator-avoidance behavior in prey (trait-mediated indirect effects; TMIEs). Prey often employ multiple predator-avoidance behaviors, such as dispersal or reduced foraging activity, but estimates of TMIEs are usually on individual behaviors. We assessed direct and indirect predator effects in a mesocosm experiment using a marine food chain consisting of a predator (toadfish--Opsanus tau), prey (mud crab--Panopeus herbstii) and resource (ribbed musse--Geukensia demissa). We measured dispersal and foraging activity of prey separately by manipulating both the presence and absence of the predator, and whether prey could or could not disperse into a predator-free area. Consumption of prey was 9 times greater when prey could not disperse, probably because mesocosm boundaries increased predator capture success. Although predator presence did not significantly affect the number of crabs that emigrated, the presence of a predator decreased resource consumption by prey, which resulted in fewer resources consumed for each prey that emigrated in the presence of a predator, and reduced the overall TMIE. When prey were unable to disperse, TMIEs on mussel survival were 3 times higher than the DMIEs. When prey were allowed to disperse, the TMIEs on resource survival increased to 11-times the DMIEs. We found that restricting the ability of prey to disperse, or focusing on only one predator-avoidance behavior, may be underestimating TMIEs. Our results indicate that the relative contribution of behavior and consumption in food chain dynamics will depend on which predator-avoidance behaviors are allowed to occur and measured."	"Expression of deafness protein Tmie in postnatal developmental stages of C57BL/6J mice. Loss-of function mutations in the transmembrane inner ear expressed (Tmie/TMIE) gene have been shown to cause deafness in mice and humans (DFNB6). Previous studies report that the circling mouse can be an animal model for DFNB6. However, the expression pattern of Tmie protein in postnatal developmental stages has not been clearly revealed. In this study we tried to investigate the expression of Tmie protein in the liver, spleen, kidney, and lung, as well as in the cochlea. We examined various tissue samples from five different age groups of C57BL/6J animals. Using western blotting analysis, the expression of Tmie protein in these organs has been identified. The results show that Tmie protein expression in the cochlea has been increased in postnatal developmental stages, indicating that Tmie plays an important role in not only the development and also in the function of the cochlea. The expression pattern of Tmie in adult mouse organs such as the liver, spleen, kidney, and spleen significantly vary in adult rats. The order of Tmie expression level in mice (63 days after birth) was spleen, liver, lung, cochlea, and kidney, whereas in the adult rat it was liver, cochlea, lung, spleen, and kidney."	"Subcellular localization of the transmembrane inner ear (Tmie) protein in a stable Tmie-expressing cell line. Mutations in the transmembrane inner ear (Tmie) gene, which encodes the Tmie protein, have been attributed to deafness autosomal recessive 6 (DFNB6), an autosomal nonsyndromic recessive hearing loss disorder. Although the Tmie gene was identified a few years ago, little is known about subcellular localization of the Tmie protein. In order to address this, we developed a stable cell line expressing Tmie protein. The expression of Myc-tagged Tmie protein was confirmed by Western blot analysis using an anti-Myc antibody and localization of the Tmie protein was confirmed by immunostaining, using the anti-Myc antibody as well as the anti-tmie antibody. Our study demonstrates that the Tmie protein is localized mostly in the cellular membrane and to a lesser extent in cytoplasm. These results suggest that our Tmie expressing stable cell line provides a suitable in vitro model to explore Tmie synthesis and functions."	"Screening of 38 genes identifies mutations in 62% of families with nonsyndromic deafness in Turkey. More than 60% of prelingual deafness is genetic in origin, and of these up to 95% are monogenic autosomal recessive traits. Causal mutations have been identified in 1 of 38 different genes in a subset of patients with nonsyndromic autosomal recessive deafness. In this study, we screened 49 unrelated Turkish families with at least three affected children born to consanguineous parents. Probands from all families were negative for mutations in the GJB2 gene, two large deletions in the GJB6 gene, and the 1555A&gt;G substitution in the mitochondrial DNA MTRNR1 gene. Each family was subsequently screened via autozygosity mapping with genomewide single-nucleotide polymorphism arrays. If the phenotype cosegregated with a haplotype flanking one of the 38 genes, mutation analysis of the gene was performed. We identified 22 different autozygous mutations in 11 genes, other than GJB2, in 26 of 49 families, which overall explains deafness in 62% of families. Relative frequencies of genes following GJB2 were MYO15A (9.9%), TMIE (6.6%), TMC1 (6.6%), OTOF (5.0%), CDH23 (3.3%), MYO7A (3.3%), SLC26A4 (1.7%), PCDH15 (1.7%), LRTOMT (1.7%), SERPINB6 (1.7%), and TMPRSS3 (1.7%). Nineteen of 22 mutations are reported for the first time in this study. Unknown rare genes for deafness appear to be present in the remaining 23 families."	"Spatiotemporal expression of tmie in the inner ear of rats during postnatal development. The circling (cir/cir) mouse is a murine model for human nonsyndromic deafness DFNB6. Transmembrane inner ear (tmie) is the causative gene and its mutation through deletion of a 40-kilobase genomic region including tmie leads to deafness. The function of Tmie is unknown. To better understand the function of Tmie, we focused on the spatiotemporal expression of tmie in the rat cochlea by using a Tmie-specific antibody. Results showed that tmie expression was prominent in early postnatal rat cochleas in the stereocilia bundles of hair cells. The Tmie signal spread from the stereocilia to the hair cell body region and on to organ of Corti cells. No Tmie signal was observed in cell nuclei; Tmie was localized to the cytoplasm. Because Tmie is predicted to have 1 or 2 transmembrane domains, we postulate that it is localized to membrane-based organelles or the plasma membrane. Our results imply that Tmie exists in the cytoplasm and may have a key role in the maturation and structure of stereocilia bundles in developing hair cells. After hair cell maturation, Tmie is thought to be involved in the maintenance of organ of Corti cells."	"Comparative transmembrane transports of four typical lipophilic organic chemicals. Transmembrane transports of four kinds of lipophilic organic chemicals (LOCs) on suspending multilamellar liposomes (SML) and Escherichia coli (E. coli) were investigated, where both anthracene and phenanthrene were accorded to the lipid-water partition law and Sudan I and III to the Langmuir isothermal adsorption. Less than half of phenanthrene is transported into E. coli, where more than 60% are located in the cytoplasm. About 60% of anthracene entered the E. coli where only 10% was released into the cytoplasm. The partition coefficients of phenanthrene and anthracene partitioning from the extracellular liquid into membrane are 502 and 1190L/kg but their inverse partition coefficients are only 0.180 and 0.018kg/L. Over 60% of Sudan I and less than 40% of Sudan III accumulated on E. coli where most of them remained on the membrane. The transmembrane impedance effect (TMIE) is proposed for evaluating the cell-transport of polar LOCs."	"Identification of novel variants in the TMIE gene of patients with nonsyndromic hearing loss. To determine whether variants of the TMIE gene are causes of nonsyndromic deafness in Taiwan. A genetic survey was made from 370 individuals, with 250 nonsyndromic hearing loss and 120 normal hearing individuals. Genomic DNA was extracted from peripheral blood leukocytes and then subjected to PCR to amplify selected exons and flanking introns of the TMIE gene; the amplified products were screened for base variants by autosequence. Data from the two groups were then compared using Fisher's two-tailed exact test and Armitage's trend test. The analysis revealed 7 novel variants in the TMIE gene. Of the 7 variants, 5 variants were found in both nonsyndromic hearing loss and normal hearing group. Both allelic and genotype frequencies of these sequence changes did not differ significantly between patients and controls (P&gt;0.05). However, a missense variant (c.257G&gt;A) and one promoter variant (g.1-219A&gt;T) were found in two patients with nonsyndromic hearing loss. Family study and microsatellite analysis found that c.257G&gt;A variant is not inherited from his parents. The c.257G&gt;A variant encodes a protein with glutamine at position 86 instead of arginine (p.R86Q), a residue that is conserved in mammals but different in fish, and predicted to be extracellular. Despite the fact that the frequency of TMIE variants in our study subjects was low, we suggested that c.257G&gt;A (p.R86Q) variant is a de novo and may be as a risk factor for the development of hearing loss in Taiwanese."	"High-throughput detection of mutations responsible for childhood hearing loss using resequencing microarrays. Despite current knowledge of mutations in 45 genes that can cause nonsyndromic sensorineural hearing loss (SNHL), no unified clinical test has been developed that can comprehensively detect mutations in multiple genes. We therefore designed Affymetrix resequencing microarrays capable of resequencing 13 genes mutated in SNHL (GJB2, GJB6, CDH23, KCNE1, KCNQ1, MYO7A, OTOF, PDS, MYO6, SLC26A5, TMIE, TMPRSS3, USH1C). We present results from hearing loss arrays developed in two different research facilities and highlight some of the approaches we adopted to enhance the applicability of resequencing arrays in a clinical setting. We leveraged sequence and intensity pattern features responsible for diminished coverage and accuracy and developed a novel algorithm, sPROFILER, which resolved &gt;80% of no-calls from GSEQ and allowed 99.6% (range: 99.2-99.8%) of sequence to be called, while maintaining overall accuracy at &gt;99.8% based upon dideoxy sequencing comparison. Together, these findings provide insight into critical issues for disease-centered resequencing protocols suitable for clinical application and support the use of array-based resequencing technology as a valuable molecular diagnostic tool for pediatric SNHL and other genetic diseases with substantial genetic heterogeneity."	"The transmembrane inner ear (Tmie) protein is essential for normal hearing and balance in the zebrafish. Little is known about the proteins that mediate mechanoelectrical transduction, the process by which acoustic and accelerational stimuli are transformed by hair cells of the inner ear into electrical signals. In our search for molecules involved in mechanotransduction, we discovered a line of deaf and uncoordinated zebrafish with defective hair-cell function. The hair cells of mutant larvae fail to incorporate fluorophores that normally traverse the transduction channels and their ears lack microphonic potentials in response to vibratory stimuli. Hair cells in the posterior lateral lines of mutants contain numerous lysosomes and have short, disordered hair bundles. Their stereocilia lack two components of the transduction apparatus, tip links and insertional plaques. Positional cloning revealed an early frameshift mutation in tmie, the zebrafish ortholog of the mammalian gene transmembrane inner ear. The mutant line therefore affords us an opportunity to investigate the role of the corresponding protein in mechanoelectrical transduction."	"Monitoring local unfolding of bovine serum albumin during denaturation using steady-state and time-resolved fluorescence spectroscopy. In a previous report (J. Fluoresc. 16, 153, 2006) we studied the chaotropically induced denaturation of Bovine Serum Albumin (BSA) using the fluorescence decay kinetics at different stages in the denaturation of BSA by guanidinium hydrochloride (GuHCl). In this work, we gain a more detailed insight into the BSA denaturation process by investigating the thermodynamics of the process. Structural changes were monitored spectrophotometrically via the intrinsic protein fluorescence from tryptophan residues, and the extrinsic fluorescence from 1,8-anilinonaphthalene sulphonate (ANS). ANS tends to locate in a variety of binding sites in BSA which are located in different domains, and these can be selectively populated using different, 1:1 and 1:10 molar ratios of BSA to ANS. The data from steady-state and time-resolved fluorescence spectroscopy were analyzed using thermodynamic two-state and three-state models and the lifetime data clearly indicated the presence of an intermediate state during denaturation. A global analysis using non-linear regression gave a DeltaG(H(2)O,D)(0) = 6.7 kcal x mol(-1) for the complete unfolding of the BSA-ANS complexes, and a DeltaG(H(2)O,I) = 0.9 kcal x mol(-1) for the first step to the intermediate. Therefore, the unfolding energy of the intermediate, which appears mostly at intermediate GuHCl concentrations (1.0 to 1.5 M), to the denatured state, is 5.8 kcal x mol(-1). The lifetime analysis of the BSA-ANS complexes also shows clearly that there are differences in stability of the BSA domains, with domain III unfolding first at low GuHCl concentrations (&lt;1.5 M)."	"A founder TMIE mutation is a frequent cause of hearing loss in southeastern Anatolia. Using Affymetrix 10K arrays, we searched for regions of homozygosity in 51 Turkish families including at least three members with either congenital or prelingual autosomal recessive non-syndromic sensorineural hearing loss (ARNSSNHL), and identified four families whose deafness mapped to the DFNB6 locus on 3p21 containing the TMIE gene. Mutation analysis revealed the p.R84W mutation in all four families. Screening of this mutation in 254 families with ARNSSNHL, without GJB2 mutations, revealed four additional affected families. A novel mutation was found in a non-complementary marriage between a deaf couple who were homozygous for p.R84W and p.W57X, respectively with two affected children who were compound heterozygotes. Six of the TMIE families originated from southeastern Anatolia, making p.R84W a common cause of hearing loss in that region with a relative frequency of 10.3% (95% CI is 2.5-18.1%). The overall prevalence of the p.R84W mutation in ARNSSNHL in Turkey is 2.4% (95% CI is 0.7-4.0%). Genotyping of single-nucleotide polymorphisms flanking the TMIE gene revealed a conserved haplotype, suggesting a single origin for p.R84W from a common ancestor 1250 years ago (95% CI is 650-2500 years). We conclude that p.R84W could be a common mutation in other Middle Eastern populations and should be included in mutation screening offered to individuals with ARNSSNHL."	"Ectopic expression of tmie transgene induces various recovery levels of behavior and hearing ability in the circling mouse. The circling (cir/cir) mouse is one of the murine models for human non-syndromic deafness DFNB6. The mice have abnormal circling behavior, suggesting a balanced disorder and profound deafness. The causative gene was transmembrane inner ear (tmie) gene of which the mutation is a 40-kb genomic deletion including tmie gene itself. In this study, tmie-overexpression trasngenic mice were established. Individuals with germline transmission have been mated with circling homozygous mutant mice (cir/cir) in order to produce the transgenic mutant mice (cir/cir-tg) as a gene therapy. After the genotyping, phenotypic analyses were performed so that the insertion of the new gene might compensate for the diseases such as hearing loss, circling behavior, or swimming inability. Some individuals exhibited complete recovery in their behavior and hearing but the others did not show any amelioration in behavior or hearing. Individual mice had very different levels of tmie transgene expression in the cochlea. These results clearly indicate that tmie protein plays an important role when the appropriate expression level of tmie was expressed in the inner ear. The protein levels were variable in each individual and these are thought to induce the differences in disease amelioration levels."	"Dystrophic epidermolysis bullosa with one dominant and one recessive mutation of the COL7A1 gene in a child with deafness. Dystrophic epidermolysis bullosa can be inherited in autosomal dominant and recessive forms, the former usually expressed as a milder phenotype, although mild forms of recessive dystrophic epidermolysis bullosa can occur. We present a patient who was found to be a compound heterozygote, inheriting a dominant mutation from his father and a recessive mutation from his mother, resulting in a clinically severe case of dystrophic epidermolysis bullosa. Mutations in the gene for collagen VII (COL7A1) have been documented in both types of dystrophic epidermolysis bullosa. Our patient has also been diagnosed with bilateral auditory neuropathy, a disorder coincidentally also mapped to a nearby gene on chromosome 3p21 (the transmembrane inner ear expressed gene, TMIE)."	"The transmembrane inner ear (tmie) gene contributes to vestibular and lateral line development and function in the zebrafish (Danio rerio). The inner ear is a complex organ containing sensory tissue, including hair cells, the development of which is not well understood. Our long-term goal is to discover genes critical for the correct formation and function of the inner ear and its sensory tissue. A novel gene, transmembrane inner ear (Tmie), was found to cause hearing-related disorders when defective in mice and humans. A homologous tmie gene in zebrafish was cloned and its expression characterized between 24 and 51 hours post-fertilization. Embryos injected with morpholinos (MO) directed against tmie exhibited circling swimming behavior (approximately 37%), phenocopying mice with Tmie mutations; semicircular canal formation was disrupted, hair cell numbers were reduced, and maturation of electrically active lateral line neuromasts was delayed. As in the mouse, tmie appears to be required for inner ear development and function in the zebrafish and for hair cell maturation in the vestibular and lateral line systems as well."	"Expression and localization of Tmie in adult rat cochlea. Loss-of function mutations in transmembrane inner ear expressed (Tmie/TMIE) gene have been shown to cause deafness in mice and humans (DFNB6). However, the functional roles of TMIE in the cochlea remain unclear. A primary step toward the understanding of the role of TMIE in hearing and its dysfunction is the documentation of its cellular and sub-cellular location within the cochlea, the auditory organ. In this study, we located and determined the cellular expression of Tmie within the rat cochlea using a polyclonal anti-Tmie antibody. The anti-Tmie antibody identified a specific band of 17 kDa in a variety of rat tissues by using Western blot analyses. The expression products of Tmie were also detected in the spiral limbus, spiral ligament, organ of Corti, and stria vascularis by immunohistochemistry analysis and RT-PCR. Our results point out the presence and localization of Tmie products in the cochlea of rat. Knowledge of spatial distribution of Tmie will provide important insight into the mechanisms that lead to deafness due to mutations in the TMIE gene."	"Cochlear pathology of the circling mouse: a new mouse model of DFNB6. The circling mouse (cir/cir) has phenotypes which follow the pattern of neuroepithelial defects of deafness from 10 days after birth. The cir mouse is defective in Tmie gene, the function of which should be further elucidated. We previously reported a recessive mutation of deafness called circling mice (cir/cir). The present study focused on investigating phenotypes and histological findings of the cochlea in circling mice with respect to age. In order to analyze cochlear pathology over time, five different age groups of circling mice were examined (10, 18, 21, 35, and 90 days old). The organs of Corti and spiral ganglion neurons in basal and middle turns were evaluated. The pathology of the organ of Corti followed the pattern of neuroepithelial defects. Hair cells in organs of Corti had degenerated in circling mice at 10 days old, in a time-dependent manner. Scanning electron microscopy (SEM) showed that stereociliary bundles were irregular in size and had shortened at 10 days, and that this degeneration was complete at 21 days. The number of spiral ganglion neurons significantly reduced with age. RT-PCR analysis indicated that the transmembrane inner ear gene (Tmie) was absent in various organs in circling mice."	"The circling mouse (C57BL/6J-cir) has a 40-kilobase genomic deletion that includes the transmembrane inner ear (tmie) gene. The circling mouse (C57BL6-cir) shows deafness and circling behavior in homozygotes. The mutation is transmitted with 100% penetrance by an autosomal recessive gene on chromosome 9. In the present study, we characterized the circling mutation as a 40-kilobase deletion that includes the transmembrane inner ear (tmie) gene. The tmie gene was first identified because its mutation causes deafness and circling behavior in spinner mice. We suggest that the genomic deletion of circling mice is a different, but allelic, mutation to that of spinner mice. In addition, during general behavioral investigations for complementation tests of the 2 strains, we found that circling and spinner mice may differ in their behavioral responses to a new environment."	"Elimination of TMC1 and TMIE as candidates for hereditary non-syndromic deafness in Dalmatian dogs. NA"	"Novel sequence variants in the TMIE gene in families with autosomal recessive nonsyndromic hearing impairment. To date, 37 genes have been identified for nonsyndromic hearing impairment (NSHI). Identifying the functional sequence variants within these genes and knowing their population-specific frequencies is of public health value, in particular for genetic screening for NSHI. To determine putatively functional sequence variants in the transmembrane inner ear (TMIE) gene in Pakistani and Jordanian families with autosomal recessive (AR) NSHI, four Jordanian and 168 Pakistani families with ARNSHI that is not due to GJB2 (CX26) were submitted to a genome scan. Two-point and multipoint parametric linkage analyses were performed, and families with logarithmic odds (LOD) scores of 1.0 or greater within the TMIE region underwent further DNA sequencing. The evolutionary conservation and location in predicted protein domains of amino acid residues where sequence variants occurred were studied to elucidate the possible effects of these sequence variants on function. Of seven families that were screened for TMIE, putatively functional sequence variants were found to segregate with hearing impairment in four families but were not seen in not less than 110 ethnically matched control chromosomes. The previously reported c.241C&gt;T (p.R81C) variant was observed in two Pakistani families. Two novel variants, c.92A&gt;G (p.E31G) and the splice site mutation c.212 -2A&gt;C, were identified in one Pakistani and one Jordanian family, respectively. The c.92A&gt;G (p.E31G) variant occurred at a residue that is conserved in the mouse and is predicted to be extracellular. Conservation and potential functionality of previously published mutations were also examined. The prevalence of functional TMIE variants in Pakistani families is 1.7% [95% confidence interval (CI) 0.3-4.8]. Further studies on the spectrum, prevalence rates, and functional effect of sequence variants in the TMIE gene in other populations should demonstrate the true importance of this gene as a cause of hearing impairment."	"A quantitative survey of gravity receptor function in mutant mouse strains. The purpose of this research was to identify vestibular deficits in mice using linear vestibular evoked potentials (VsEPs). VsEP thresholds, peak latencies, and peak amplitudes from 24 strains with known genetic mutations and 6 inbred background strains were analyzed and descriptive statistics generated for each strain. Response parameters from mutant homozygotes were compared with heterozygote and/or background controls and all strain averages were contrasted to normative ranges. Homozygotes of the following recessive mutations had absent VsEPs at the ages tested: Espn(je), Atp2b2dfw-2J, Spnb4qv-lnd2J, Spnb4qv-3J, Myo7ash1, Tmie(sr), Myo6sv, jc, Pcdh15av-J, Pcdh15av-2J, Pcdh15av-3J, Cdh23v-2J, Sans(js), hr, Kcne1pkr and Pou3f4del. These results suggest profound gravity receptor deficits for these homozygotes, which is consistent with the structural deficits that have been documented for many of these strains. Homozygotes of Catna2cdf, Grid2ho4J, Wnt1sw, qk, and Mbpshi strains and heterozygotes of Grid2lc had measurable VsEPs but one or more response parameters differed from the respective control group (heterozygote or background strain) or were outside normal ranges. For example, qk and Mbpshi homozygotes showed significantly prolonged latencies consistent with the abnormal myelin that has been described for these strains. Prolonged latencies may suggest deficits in neural conduction; elevated thresholds suggest reduced sensitivity, and reduced amplitudes may be suggestive for reduced neural synchrony. One mutation, Otx1jv, had all VsEP response parameters within normal limits--an expected finding because the abnormality in Otxljv is presumably restricted to the lateral semicircular canal. Interestingly, some heterozygote groups also showed abnormalities in one or more VsEP response parameters, suggesting that vestibular dysfunction, although less severe, may be present in some heterozygous animals."	"Who is the top dog in ant communities? Resources, parasitoids, and multiple competitive hierarchies. A wide variety of animal communities are organized into interspecific dominance hierarchies associated with the control and harvest of food resources. Interspecific dominance relationships are commonly found to be linear. However, dominance relations within communities can form a continuum ranging from intransitive networks to transitive, linear dominance hierarchies. How interference competition affects community structure depends on the configuration of the dominance interactions among the species. This study explores how resource size and the trait-mediated indirect effect (TMIE) specialist phorid fly parasitoids exert on interference competition, affect the transitive nature of competitive interactions in an assemblage of woodland ants. I quantify the linearity of networks of interactions associated with large and small food resources in the presence and absence of phorid parasitoids. Two distinct, significantly linear dominance hierarchies exist within the ant assemblage depending on the size of the disputed resource. However, the presence of phorid fly parasitoids eliminates the linearity of both dominance hierarchies. The host's phorid defense behaviors reduce the competitive asymmetries between the host and its subdominant competitors, increasing the indeterminacy in the outcome of competitive interactions. Thus, both resource size variation and phorid-induced TMIEs appear to facilitate coexistence in assemblages of scavenging ants."	"Mutations in a novel gene, TMIE, are associated with hearing loss linked to the DFNB6 locus. We have identified five different homozygous recessive mutations in a novel gene, TMIE (transmembrane inner ear expressed gene), in affected members of consanguineous families segregating severe-to-profound prelingual deafness, consistent with linkage to DFNB6. The mutations include an insertion, a deletion, and three missense mutations, and they indicate that loss of function of TMIE causes hearing loss in humans. TMIE encodes a protein with 156 amino acids and exhibits no significant nucleotide or deduced amino acid sequence similarity to any other gene."	"Mutation of the novel gene Tmie results in sensory cell defects in the inner ear of spinner, a mouse model of human hearing loss DFNB6. The recessive mutation at the mouse spinner (sr) locus results in hearing loss and vestibular dysfunction due to neuroepithelial defects in the inner ear. Using a positional cloning strategy, we have identified the mutant locus responsible for this pathology. The affected gene (Tmie) lies within a 40 kb deletion in the original sr allele. In a newly identified allele, Tmie contains a nonsense mutation expected to truncate the C-terminal end of its product. The 153 amino acid protein encoded by the gene shows no similarity to other known proteins, and is predicted to contain a signal peptide and at least one transmembrane domain. Tmie transcripts were identified in several tissues, including the cochlea. Loss of function of Tmie results in postnatal alterations of sensory hair cells in the cochlea, including defects in stereocilia, the apical projections of hair cells that are important in mechanotransduction of sound. These morphological defects are associated with a profound failure to develop normal auditory function. Consistent with a conserved role for this gene in the cochlea, the genetic mapping data presented here support human TMIE as the gene affected at DFNB6, a non-syndromic hearing loss locus. The spinner mutant is thus a valuable model for insight into mechanisms of human deafness and development of sensory cell function."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TMPRSS3"	"nonsyndromic genetic deafness"	"Whole exome sequencing identified mutations causing hearing loss in five consanguineous Pakistani families. Hearing loss is the most common sensory defect, and it affects over 6% of the population worldwide. Approximately 50-60% of hearing loss patients are attributed to genetic causes. Currently, more than 100 genes have been reported to cause non-syndromic hearing loss. It is possible and efficient to screen all potential disease-causing genes for hereditary hearing loss by whole exome sequencing (WES). We collected 5 consanguineous pedigrees from Pakistan with hearing loss and applied WES in selected patients for each pedigree, followed by bioinformatics analysis and Sanger validation to identify the causal genes. Variants in 7 genes were identified and validated in these pedigrees. We identified single candidate variant for 3 pedigrees: GIPC3 (c.937 T &gt; C), LOXHD1 (c.6136G &gt; A) and TMPRSS3 (c.941 T &gt; C). The remaining 2 pedigrees each contained two candidate variants: TECTA (c.4045G &gt; A) and MYO15A (c.3310G &gt; T and c.9913G &gt; C) for one pedigree and DFNB59 (c.494G &gt; A) and TRIOBP (c.1952C &gt; T) for the other pedigree. The candidate variants were validated in all available samples by Sanger sequencing. The candidate variants in hearing-loss genes were validated to be co-segregated in the pedigrees, and they may indicate the aetiologies of hearing loss in such patients. We also suggest that WES may be a suitable strategy for hearing-loss gene screening in clinical detection."	"[Mutational analysis and prenatal diagnosis of TMPRSS3 gene in two Chinese families affected with deafness]. Objective: To detect potential mutations in two Chinese families affected with deafness, so as provide prenatal diagnosis for them. Methods: Two Chinese families affected with deafness were identified at the genetic and prenatal diagnosis center of the First Affiliated Hospital of Zhengzhou University from March 2018 to December 2018.Mutation analyses were carried out by next generation sequencing (NGS),suspected mutations were verified by Sanger sequencing in the probands, unaffected relatives. Prenatal diagnosis for high-risk fetus were carried out through Sanger sequencing. Results: The proband of family 1 carried a c.432delA and a c.617-2_617-1insTC mutation of the TMPRSS3 gene, the proband of family 2 carried a c.271C&gt;T(p.R91X) and a c.147dupTmutation ofthe TMPRSS3 gene, both parents of the two probands were carriers of heterozygous variants. Conclusions: Mutations in the TMPRSS3 gene are the suspected cause of deafness in two families. Application of next generation sequencing technologies make gene diagnosis of deafness efficiently and accurately and the molecular findings increase our understanding of the function of TMPRSS3 gene and enrich the human gene mutation database. It is helpful for recurrent genetic counseling and prenatal diagnosis for these families. 目的: 对两个耳聋家系进行遗传性耳聋基因突变检测,为家系遗传咨询与产前诊断提供参考。 方法: 2018年3—12月,郑州大学第一附属医院遗传与产前诊断中心应用二代测序技术对两个家系患儿进行耳聋基因检测(包含168个已知致病基因,包括核基因、相关线粒体区域及miRNA),并对可疑基因在患儿及家系成员中进行Sanger双向测序验证,确定致病突变后,对两个家系的高危胎儿进行产前诊断。 结果: 家系1患儿检测到TMPRSS3基因c.432delA和c.617-2_617-1insTC复合杂合突变,家系2患儿检测到TMPRSS3基因c.271C&gt;T(p.R91X)和c.147dupT复合杂合突变,两家系患儿父母均为携带者。产前诊断结果显示两家系胎儿均只携带1个杂合突变。随访至2019年8月,两家系二胎分别为15月龄和13月龄,听力未见异常。 结论:TMPRSS3基因突变可能是两个耳聋家系的致病基因,用二代测序技术可以高效、经济准确地对遗传性耳聋患者进行基因诊断,为家系遗传咨询和产前诊断提供参考。."	"Novel Mutations in the TMPRSS3 Gene may Contribute to Taiwanese Patients with Nonsyndromic Hearing Loss. A previous study indicated that mutations in the transmembrane protease serine 3 (TMPRSS3) gene, which encodes a transmembrane serine protease, cause nonsyndromic hearing loss (NSHL). This was the first description of a serine protease involved in hearing loss (HL). In Taiwan, however, data on the TMPRSS3 gene's association with NSHL is still insufficient. In this study, we described 10 mutations of TMPRSS3 genes found in 14 patients after screening 230 children with NSHL. The prevalence of the TMPRSS3 mutation appeared to be 6.09% (14/230). Of the 10 mutations, three were missense mutations: c.239G&gt;A (p.R80H), c.551T&gt;C (p.L184S), and 1253C&gt;T (p.A418V); three were silent mutations, and four were mutations in introns. To determine the functional importance of TMPRSS3 mutations, we constructed plasmids carrying TMPRSS3 mutations of p.R80H, p.L184S, and p.A418V. TMPRSS3 function can be examined by secretory genetic assay for site-specific proteolysis (sGASP) and Xenopus oocyte expression system. Our results showed that p.R80H, p.L184S, and p.A418V TMPRSS3 mutations gave ratios of 19.4%, 13.2%, and 27.6%, respectively, via the sGASP system. Moreover, these three TMPRSS3 mutations failed to activate the epithelial sodium channel (ENaC) in the Xenopus oocyte expression system. These results indicate that the p.R80H, p.L184S, and p.A418V missense mutations of TMPRSS3 resulted in greatly diminishing the proteolytic activity of TMPRSS3. Our study provides information for understanding the importance of TMPRSS3 in the NSHL of Taiwanese children and provides a novel molecular explanation for the role of TMPRSS3 in HL."	"Long non‑coding RNA EBLN3P promotes the recovery of the function of impaired spiral ganglion neurons by competitively binding to miR‑204‑5p and regulating TMPRSS3 expression. Sensorineural hearing loss (SNHL) is one of the major leading causes of hearing impairment, and is typically characterized by the degeneration of spiral ganglion neurons (SGNs). In previous studies by the authors, it was demonstrated that microRNA (miRNA or miR)‑204‑5p decreased the viability of SGNs by inhibiting the expression of transmembrane protease, serine 3 (TMPRSS3), which was closely associated with the development of SGNs. However, the upstream regulatory mechanism of miR‑204‑5p was not fully elucidated. The present study found that an important upstream regulatory factor of miR‑204‑5p, long non‑coding RNA (lncRNA) EBLN3P, was expressed at low levels in impaired SGNs, whereas it was expressed at high levels in normal SGNs. Mechanistic analyses demonstrated that lncRNA EBLN3P functioned as a competing endogenous RNA (ceRNA) when regulating miR‑204‑5p in normal SGNs. In addition, lncRNA EBLN3P regulated TMPRSS3 expression via the regulation of miR‑204‑5p in normal SGNs. In vitro functional analysis revealed that lncRNA EBLN3P promoted the recovery of the viability of normal SGNs and inhibited the apoptosis of normal SGNs. Finally, the results revealed a recovery‑promoting effect of lncRNA EBLN3P on the structure and function of impaired SGNs in models of deafness. On the whole, the findings of the present study demonstrate that lncRNA EBLN3P promotes the recovery of the function of impaired SGNs by competitively binding to miR‑204‑5p and regulating TMPRSS3 expression. This suggests that lncRNA EBLN3P may be a potential therapeutic target for diseases involving SNHL."	"Delineation of Homozygous Variants Associated with Prelingual Sensorineural Hearing Loss in Pakistani Families. Hearing loss is a genetically heterogeneous disorder affecting approximately 360 million people worldwide and is among the most common sensorineural disorders. Here, we report a genetic analysis of seven large consanguineous families segregating prelingual sensorineural hearing loss. Whole-exome sequencing (WES) revealed seven different pathogenic variants segregating with hearing loss in these families, three novel variants (c.1204G&gt;A, c.322G&gt;T, and c.5587C&gt;T) in TMPRSS3, ESRRB, and OTOF, and four previously reported variants (c.208C&gt;T, c.6371G&gt;A, c.226G&gt;A, and c.494C&gt;T) in LRTOMT, MYO15A, KCNE1, and LHFPL5, respectively. All identified variants had very low frequencies in the control databases and were predicted to have pathogenic effects on the encoded proteins. In addition to being familial, we also found intersibship locus heterogeneity in the evaluated families. The known pathogenic c.226C&gt;T variant identified in KCNE1 only segregates with the hearing loss phenotype in a subset of affected members of the family GCNF21. This study further highlights the challenges of identifying disease-causing variants for highly heterogeneous disorders and reports the identification of three novel and four previously reported variants in seven known deafness genes."	"Cell surface-anchored serine proteases in cancer progression and metastasis. Over the last two decades, a novel subgroup of serine proteases, the cell surface-anchored serine proteases, has emerged as an important component of the human degradome, and several members have garnered significant attention for their roles in cancer progression and metastasis. A large body of literature describes that cell surface-anchored serine proteases are deregulated in cancer and that they contribute to both tumor formation and metastasis through diverse molecular mechanisms. The loss of precise regulation of cell surface-anchored serine protease expression and/or catalytic activity may be contributing to the etiology of several cancer types. There is therefore a strong impetus to understand the events that lead to deregulation at the gene and protein levels, how these precipitate in various stages of tumorigenesis, and whether targeting of selected proteases can lead to novel cancer intervention strategies. This review summarizes current knowledge about cell surface-anchored serine proteases and their role in cancer based on biochemical characterization, cell culture-based studies, expression studies, and in vivo experiments. Efforts to develop inhibitors to target cell surface-anchored serine proteases in cancer therapy will also be summarized."	"Overinterpretation of high throughput sequencing data in medical genetics: first evidence against TMPRSS3/GJB2 digenic inheritance of hearing loss. Hearing loss (HL) is the most common disability of human senses characterized by a great allelic heterogeneity. GJB2 and TMPRSS3 are two well-known HL genes typically underlying its monogenic form. Recently, TMPRSS3/GJB2 digenic inheritance has been proposed. As results of genetic testing can be easily overinterpreted, we aimed to verify the hypothesis. From genetic database of HL patients with at least one TMPRSS3 pathogenic variants we have selected individuals with additional GJB2 pathogenic variants. All of the available family members were recruited for the study. Segregation analysis of the respective TMPRSS3 and GJB2 pathogenic variants was performed within the families. The strategy has allowed to identify four individuals who were double heterozygous for known pathogenic TMPRSS3 and GJB2 variants. Two individuals from different families had GJB2 c.35delG and TMPRSS3 c.208delC and in two other individuals from one family GJB2 c.35delG together with TMPRSS3 c.1343T&gt;C variants were found. None of these subjects has ever reported hearing problems and their hearing status was normal. Our data provide evidence against TMPRSS3/GJB2 digenic inheritance of HL. As high throughput sequencing is increasingly used for genetic testing, particular caution should be taken to provide the patients with accurate genetic counseling."	"TMPRSS3 regulates cell viability and apoptosis processes of HEI-OC1 cells via regulation of the circ-Slc4a2, miR-182 and Akt cascade. The present study aimed to investigate the functions and regulation mechanism of the transmembrane protease, serine 3 (TMPRSS3), which plays an important role in sensorineural hearing loss. House Ear Institute-Organ of Corti 1 (HEI-OC1) cells, comprising auditory-related cells, were used in the present study. An overexpression vector and small hairpin RNA target on TMPRSS3 were designed and transfected into HEI-OC1 cells. Circular RNA (circRNA) sequencing was conducted and expression profiles were obtained. The circular structure of circRNAs was validated with a polymerase chain reaction and Sanger sequencing using convergent and divergent primers. Overexpression of TMPRSS3 increased cell viability, whereas suppression of TMPRSS3 increased the percentage of apoptotic cells and decreased cell viability, compared to the control group. circRNA sequencing provided expression profiles indicating that the overexpression of TMPRSS3 increased the expression level of 195 circRNAs. Results of GO (Gene Ontology) and KEGG (Kyoto Encyclopedia of Genes and Genomes) studies indicated that the circRNAs are focused on the RAS signaling pathway. The pathway, circ-Slc41a2 (chr10: 82744115|82767120), miR-182 and Akt, might comprise one of the key cascades of TMPRSS3. TMPRSS3 is an important molecule in the regulation of cell viability and cell apoptosis of HEI-OC1 cells. Its functions are dependent on the circ-Slc41a2, miR-182 and Akt cascade."	"Sequence variants in genes causing nonsyndromic hearing loss in a Pakistani cohort. Hearing loss or hearing impairment is a clinically and genetically heterogeneous disorder. More than 117 genes were discovered to date in hereditary, nonsyndromic hearing loss (NSHL). Identifying novel gene variants and their frequency in specific populations is valuable for public health and potentially for genetic screening of NSHL. To identify the gene variants underlying NSHL in a Pakistani cohort. A cohort of 40 school-aged children with NSHL was initially screened for variants in GJB2, the gene with the highest incidence of variants in other populations with NSHL. We found known homozygous as well as compound heterozygous GJB variants in 15 individuals. Next, we used targeted next generation sequencing (TNGS) for the remaining 25 individuals and identified 20 different variants in 14 genes (SLC26A4, KCNQ4, MYO7A, MYO15A, TMPRSS3, ESPN, TMC1, GIPC3, LHFPL5, WFS1, DFNB59, GRXCR1, ESRRB, and LRTOMT). We described common and novel variants in 15 genes in a Pakistani cohort of NSHL."	"Proband Whole-Exome Sequencing Identified Genes Responsible for Autosomal Recessive Non-Syndromic Hearing Loss in 33 Chinese Nuclear Families. Autosomal recessive non-syndromic hearing loss (ARNSHL) is a highly heterogeneous disease involving more than 70 pathogenic genes. However, most ARNSHL families have small-sized pedigrees with limited genetic information, rendering challenges for the molecular diagnosis of these patients. Therefore, we attempted to establish a strategy for identifying deleterious variants associated with ARNSHL by applying proband whole-exome sequencing (proband-WES). Aside from desiring to improve molecular diagnostic rates, we also aimed to search for novel deafness genes shared by patients with similar phenotype, making up for the deficiency of small ARNSHL families. In this study, 48.5% (16/33) families were detected the pathogenic variants in eight known deafness genes, including 10 novel variants identified in TMPRSS3 (MIM 605551), MYO15A (MIM 602666), TMC1 (MIM 606706), ADGRV1 (MIM 602851), and PTPRQ (MIM 603317). Apart from six novel variants with a truncating effect (nonsense, deletion, insertion, and splice-site), four novel missense variants were not found in 200 unrelated control population by using Sanger sequencing. It is important to note that none of novel genes were shared across different pedigrees, indicating that a larger sample size might be needed. Proband-WES is a cost-effective and precise way of identifying causative variants in nuclear families with ARNSHL. This economical strategy may be appropriated as a clinical application to provide molecular diagnostics, genetic counseling, and individualized health maintenance measures for patients with ARNSHL at hearing clinics."	"Defective Tmprss3-Associated Hair Cell Degeneration in Inner Ear Organoids. Mutations in the gene encoding the type II transmembrane protease 3 (TMPRSS3) cause human hearing loss, although the underlying mechanisms that result in TMPRSS3-related hearing loss are still unclear. We combined the use of stem cell-derived inner ear organoids with single-cell RNA sequencing to investigate the role of TMPRSS3. Defective Tmprss3 leads to hair cell apoptosis without altering the development of hair cells and the formation of the mechanotransduction apparatus. Prior to degeneration, Tmprss3-KO hair cells demonstrate reduced numbers of BK channels and lower expressions of genes encoding calcium ion-binding proteins, suggesting a disruption in intracellular homeostasis. A proteolytically active TMPRSS3 was detected on cell membranes in addition to ER of cells in inner ear organoids. Our in vitro model recapitulated salient features of genetically associated inner ear abnormalities and will serve as a powerful tool for studying inner ear disorders."	"Genetic Inheritance of Late-Onset, Down-Sloping Hearing Loss and Its Implications for Auditory Rehabilitation. Late-onset, down-sloping sensorineural hearing loss has many genetic and nongenetic etiologies, but the proportion of this commonly encountered type of hearing loss attributable to genetic causes is not well known. In this study, the authors performed genetic analysis using next-generation sequencing techniques in patients showing late-onset, down-sloping sensorineural hearing loss with preserved low-frequency hearing, and investigated the clinical implications of the variants identified. From a cohort of patients with hearing loss at a tertiary referral hospital, 18 unrelated probands with down-sloping sensorineural hearing loss of late onset were included in this study. Down-sloping hearing loss was defined as a mean low-frequency threshold at 250 Hz and 500 Hz less than or equal to 40 dB HL and a mean high-frequency threshold at 1, 2, and 4 kHz greater than 40 dB HL. The authors performed whole-exome sequencing and segregation analysis to identify the genetic causes and evaluated the outcomes of auditory rehabilitation in the patients. There were nine simplex and nine multiplex families included, in which the causative variants were found in six of 18 probands, demonstrating a detection rate of 33.3%. Various types of variants, including five novel and three known variants, were detected in the MYH14, MYH9, USH2A, COL11A2, and TMPRSS3 genes. The outcome of cochlear and middle ear implants in patients identified with pathogenic variants was satisfactory. There was no statistically significant difference between pathogenic variant-positive and pathogenic variant-negative groups in terms of onset age, family history of hearing loss, pure-tone threshold, or speech discrimination scores. The proportion of patients with late-onset, down-sloping hearing loss identified with potentially causative variants was unexpectedly high. Identification of the causative variants will offer insights on hearing loss progression and prognosis regarding various modes of auditory rehabilitation, as well as possible concomitant syndromic features."	"Identification of a complex genomic rearrangement in TMPRSS3 by massively parallel sequencing in Chinese cases with prelingual hearing loss. Genetic variants in TMPRSS3 have been causally linked to autosomal recessive nonsyndromic hearing loss (HL) at the DFNB8 and DFNB10 loci. These variants include both single nucleotide and copy number variations (CNVs). In this study, we aim to identify the genetic cause in three Chinese subjects with prelingual profound sensorineural HL. We applied targeted genomic enrichment and massively parallel sequencing to screen 110 genes associated with nonsyndromic HL in the three affected subjects. CNVplex<sup>®</sup> analysis and polymerase chain reaction (PCR) were performed for CNV detection. We identified biallelic variations in TMPRSS3 including a novel complex genomic rearrangement and a novel missense mutation, c.551T&gt;C. We have mapped the breakpoints of the genomic rearrangement and showed that it consisted of two deletions and an inversion encompassing exon 3 to exon 9 of TMPRSS3. Our study expanded the mutational spectrum of TMPRSS3 to include complex genomic rearrangements. It showcased the importance of an integrative approach to investigate CNVs and their contribution to HL."	"Knockdown of TMPRSS3 inhibits cell proliferation, migration/invasion and induces apoptosis of glioma cells. Transmembrane protease serine 3 (TMPRSS3) is a member of type II transmembrane serine proteases (TTSP) family, which play important roles in the development and progression of various cancers. However, the role of TMPRSS3 in glioma remains unclear. In the present study, we evaluated the expression patterns of TMPRSS3 in clinical tumor samples and glioma cell lines. The results showed that TMPRSS3 was highly expressed in both human glioma tissues and cell lines. Knockdown of TMPRSS3 in glioma cells by transfection with small interfering RNA targeting TMPRSS3 (si-TMPRSS3) significantly suppressed cell proliferation and migration/invasion. Moreover, knockdown of TMPRSS3 markedly elevated the apoptotic rate of glioma cells. Si-TMPRSS3 transfection also resulted in a remarkable increase in bax expression and a notable decrease in bcl-2 expression in glioma cells. Furthermore, TMPRSS3 knockdown markedly suppressed the expressions of Notch1 and Hes1. The results indicated that knockdown of TMPRSS3 exhibited antiglioma effect, which is associated with the inactivation of the Notch signaling pathway. These findings suggested that TMPRSS3 might be used as a therapeutic target for glioma treatment."	"In Vivo Electrocochleography in Hybrid Cochlear Implant Users Implicates TMPRSS3 in Spiral Ganglion Function. Cochlear implantation, a surgical method to bypass cochlear hair cells and directly stimulate the spiral ganglion, is the standard treatment for severe-to-profound hearing loss. Changes in cochlear implant electrode array design and surgical approach now allow for preservation of acoustic hearing in the implanted ear. Electrocochleography (ECochG) was performed in eight hearing preservation subjects to assess hair cell and neural function and elucidate underlying genetic hearing loss. Three subjects had pathogenic variants in TMPRSS3 and five had pathogenic variants in genes known to affect the cochlear sensory partition. The mechanism by which variants in TMPRSS3 cause genetic hearing loss is unknown. We used a 500-Hz tone burst to record ECochG responses from an intracochlear electrode. Responses consist of a cochlear microphonic (hair cell) and an auditory nerve neurophonic. Cochlear microphonics did not differ between groups. Auditory nerve neurophonics were smaller, on average, in subjects with TMPRSS3 deafness. Results of this proof-of-concept study provide evidence that pathogenic variants in TMPRSS3 may impact function of the spiral ganglion. While ECochG as a clinical and research tool has been around for decades, this study illustrates a new application of ECochG in the study of genetic hearing and deafness in vivo."	"Knockdown of TMPRSS3 inhibits gastric cancer cell proliferation, invasion and EMT via regulation of the ERK1/2 and PI3K/Akt pathways. The transmembrane protease, serine 3 (TMPRSS3), a member of the type II transmembrane serine protease family, plays an important role in mediating tissue development, homeostasis and various biological processes. Recently, TMPRSS3 has been reported to be involved in cancer progression. However, the role of TMPRSS3 in gastric cancer (GC) remains largely unknown. In this study, we found that TMPRSS3 was highly expressed in GC tissues and cell lines. Knockdown of TMPRSS3 inhibited GC cell proliferation, invasion and epithelial-mesenchymal transition (EMT) in vitro as well as suppressed GC cell growth and dissemination in vivo. These inhibitory effects were mediated by regulation of the ERK1/2 signaling pathway. Moreover, TMPRSS3-mediated ERK1/2 activation was dependent on the PI3K/Akt pathway. In conclusion, TMPRSS3 contributed to GC progression via activation of the PI3K/Akt/ERK signaling pathway and might act as a therapeutic target for GC treatment."	"Expression of trans-membrane serine protease 3 (TMPRSS3) in the human organ of Corti. TMPRSS3 (Trans-membrane Serine Protease 3) is a type II trans-membrane serine protease that has proteolytic activity essential for hearing. Mutations in the gene cause non-syndromic autosomal recessive deafness (DFNB8/10) in humans. Knowledge about its cellular distribution in the human inner ear may increase our understanding of its physiological role and involvement in deafness, ultimately leading to therapeutic interventions. In this study, we used super-resolution structured illumination microscopy for the first time together with transmission electron microscopy to localize the TMPRSS3 protein in the human organ of Corti. Archival human cochleae were dissected out during petroclival meningioma surgery. Microscopy with Zeiss LSM710 microscope achieved a lateral resolution of approximately 80 nm. TMPRSS3 was found to be associated with actin in both inner and outer hair cells. TMPRSS3 was located in cell surface-associated cytoskeletal bodies (surfoskelosomes) in inner and outer pillar cells and Deiters cells and in subcuticular organelles in outer hair cells. Our results suggest that TMPRSS3 proteolysis is linked to hair cell sterociliary mechanics and to the actin/microtubule networks that support cell motility and integrity."	"Mutations in OTOF, CLDN14 &amp; SLC26A4 genes as major causes of hearing impairment in Dhadkai village, Jammu &amp; Kashmir, India. A high incidence of hearing impairment is reported from the village of Dhadkai in the State of Jammu and Kashmir, India. Prevalence of endogamy in this community suggested a common genetic basis for the disorder. A genetic study was undertaken to ascertain the basis for the high incidence of hearing impairment in this region. In a two-step approach to identify the causative mutation/s, a whole-genome-based linkage analysis of an extended family of 45 members was carried out, which included 23 affected and 22 unaffected members. Mutational analysis for the candidate deafness genes helped reveal causative mutations in the family. In addition, seven deafness-causing genes, Cx26, SLC26A4, CLDN14, TMPRSS3, TMC1, TMIE and USH1C, were analyzed in smaller families with hearing impairment. In the 45-member extended family, the critical chromosomal region mapped to 2p24-p22.The c.2122C&gt;T (p.R708X) mutation in OTOF in 2p24-p22was identified as being the causal change. Linkage to 2p24-p22 locus was not observed in a particular branch of this extended family. Analysis of seven known deafness-causing genes in this branch revealed a mutation, c.254T&gt;A (p.V85D), in CLDN14. Among seven small families unrelated to the 45-member extended family, hearing loss was attributable to p.R708X in OTOF in three families and to p.V85D in CLDN14 in one family; a new mutation c.1668T&gt;A (p.Y556X) SLC26A4 was identified in two families and the causative change could not be identified in one family. This study suggested considerable genetic heterogeneity in the causation of hearing loss in Dhadkai. Recessive mutations were observed in at least three genes causing hearing loss: OTOF (p.R708X), SLC26A4 (p.Y556X) and CLDN14 (p.V85D). Mutation p.R708X appeared to be the major cause of hearing impairment in Dhadkai."	"Diagnostic outcomes of exome sequencing in patients with syndromic or non-syndromic hearing loss. Hereditary hearing loss (HL) is a common sensory disorder, with an incidence of 1-2 per 1000 newborns, and has a genetic etiology in over 50% of cases. It occurs either as part of a syndrome or in isolation and is genetically very heterogeneous which poses a challenge for clinical and molecular diagnosis. We used exome sequencing to seek a genetic cause in a group of 56 subjects (49 probands) with HL: 32 with non-syndromic non-GJB2 HL and 17 with syndromic HL. Following clinical examination and clinical exome sequencing, an etiological diagnosis was established in 15 probands (15/49; 30%); eight (8/17;47%) from the syndromic group and seven (7/32; 21%) from the non-syndromic non-GJB2 subgroup. Fourteen different (half of them novel) non-GJB2 variants causing HL were found in 10 genes (CHD7, HDAC8, MITF, NEFL, OTOF, SF3B4, SLC26A4, TECTA, TMPRSS3, USH2A) among 13 probands, confirming the genetic heterogeneity of hereditary HL. Different genetic causes for HL were found in a single family while three probands with apparent syndromic HL were found to have HL as a separate clinical feature, distinct from the complex phenotype. Clinical exome sequencing proved to be an effective tool used to comprehensively address the genetic heterogeneity of HL, to detect clinically unrecognized HL syndromes, and to decipher complex phenotypes in which HL is a separate feature and not part of a syndrome."	"The Analysis of A Frequent TMPRSS3 Allele Containing P.V116M and P.V291L in A Cis Configuration among Deaf Koreans. We performed targeted re-sequencing to identify the genetic etiology of early-onset postlingual deafness and encountered a frequent TMPRSS3 allele harboring two variants in a cis configuration. We aimed to evaluate the pathogenicity of the allele. Among 88 cochlear implantees with autosomal recessive non-syndromic hearing loss, subjects with GJB2 and SLC26A4 mutations were excluded. Thirty-one probands manifesting early-onset postlingual deafness were sorted. Through targeted re-sequencing, we detected two families with a TMPRSS3 mutant allele containing p.V116M and p.V291L in a cis configuration, p.[p.V116M; p.V291L]. A minor allele frequency was calculated and proteolytic activity was measured. A p.[p.V116M; p.V291L] allele demonstrated a significantly higher frequency compared to normal controls and merited attention due to its high frequency (4.84%, 3/62). The first family showed a novel deleterious splice site variant-c.783-1G&gt;A-in a trans allele, while the other showed homozygosity. The progression to deafness was noted within the first decade, suggesting DFNB10. The proteolytic activity was significantly reduced, confirming the severe pathogenicity. This frequent mutant allele significantly contributes to early-onset postlingual deafness in Koreans. For clinical implication and proper auditory rehabilitation, it is important to pay attention to this allele with a severe pathogenic potential."	"Research of genetic bases of hereditary non-syndromic hearing loss. Hearing loss is the most common sensory disorder that affects approximately one per 1000 live births. With this project, we aimed to identify gene variants that were common causes of hearing loss in Turkey to contribute to the planning of genetic screening programs for hearing loss, as well as to improve genetic counseling to affected families. Twenty-one families with at least two affected individuals and parental consanguinity who presented with non-syndromic severe-to-profound sensorineural hearing loss were included in this study. We first screened for mutations in GJB2 and mitochondrial DNA 12S RNA genes. Subsequently, we genotyped the TMIE c.250C&gt;T and SNP markers flanking the SLC26A4, MYO7A, MYO15A, OTOF, CDH23, TMIE, TECTA, PCDH15, TMC1, TMPRSS3, TMHS genes in the remaining twelve families without mutations in GJB2. Screening for mutations in GJB2 gene showed c.[35delG];[35delG] mutation in four families, c.[35delG];[507C&gt;A] mutation in two families, c.[35delG];[-23+1G&gt;A] mutation in one family, and c.457G&gt;A heterozygous mutation in one family. Genotyping SNP markers showed the c.[250C&gt;T];[250C&gt;T] mutation in TMIE in one family. A homozygous region with SNP genotypes was detected with the OTOF gene in one family, the TMPRSS3 gene in another family, and also a homozygous region was detected with TMHS, OTOF, and TMPRSS3 genes in another family. Further research will be required to determine the genetic bases of hearing loss in families with non-syndromic hearing loss."	"STRC Deletion is a Frequent Cause of Slight to Moderate Congenital Hearing Impairment in the Czech Republic. This study aimed to clarify the molecular epidemiology of hearing loss by identifying the responsible genes in patients without GJB2 mutations. Prospective genetic study. Tertiary referral hospital. Fifty one patients with bilateral sensorineural hearing loss, 20 men, and 31 women, mean age 24.9 years, range 3 to 64 years, from 49 families. GJB2 and deltaGJB6-D13S1830 mutations were excluded previously. Diagnostic. Sixty-nine genes reported to be causative of hearing loss were analyzed. Sequence capture technology, next-generation sequencing, and multiplex ligation-dependent probe amplification (MLPA) were used. Coverage of STRC was screened in Integrative Genomics Viewer software. Identification of causal pathogenic mutations in genes related to deafness. Five families (10%) had recessive STRC deletions or mutations. Five unrelated patients (10%) had recessive mutations in TMPRSS3, USH2A, PCDH15, LOXHD1, and MYO15A. Three families (6%) had autosomal dominant mutations in MYO6A, KCNQ4, and SIX1. One family (2%) had an X-linked POU3F4 mutation. Thus, we identified the cause of hearing loss in 28% of the families studied. Following GJB2, STRC was the second most frequently mutated gene in patients from the Czech Republic with hearing loss. To decrease the cost of testing, we recommend STRC deletion screening with MLPA before next-generation sequencing. The existence of a pseudogene and polymorphic STRC regions can lead to false-positive or false-negative results when copy number variation analysis is based on next-generation sequencing data."	"Identification of TMPRSS3 as a Significant Contributor to Autosomal Recessive Hearing Loss in the Chinese Population. Hereditary hearing loss is characterized by a high degree of genetic heterogeneity. Mutations in the TMPRSS3 (transmembrane protease, serine 3) gene cause prelingual (DFNB10) or postlingual (DFNB8) deafness. In our previous study, three pathogenic mutations in TMPRSS3 were identified in one Chinese family. To evaluate the importance of TMPRSS3 mutations in recessive deafness among the Chinese, we screened 150 autosomal recessive nonsyndromic hearing loss (ARNSHL) families and identified 6 that carried seven causative TMPRSS3 mutations, including five novel mutations (c.809T&gt;A, c.1151T&gt;G, c.1204G&gt;A, c.1244T&gt;C, and c.1250G&gt;A) and two previously reported mutations (c.323-6G&gt;A and c.916G&gt;A). Each of the five novel mutations was classified as severe, by both age of onset and severity of hearing loss. Together with our previous study, six families were found to share one pathogenic mutation (c.916G&gt;A, p.Ala306Thr). To determine whether this mutation arose from a common ancestor, we analyzed six short tandem repeat (STR) markers spanning the TMPRSS3 gene. In four families, we observed linkage disequilibrium between p.Ala306Thr and STR markers. Our results indicate that mutations in TMPRSS3 account for about 4.6% (7/151) of Chinese ARNSHL cases lacking mutations in SLC26A4 or GJB2 and that the recurrent TMPRSS3 mutation p.Ala306Thr is likely to be a founder mutation."	"Iterative Sequencing and Variant Screening (ISVS) as a novel pathogenic mutations search strategy - application for TMPRSS3 mutations screen. Autosomal recessive diseases (ARD) are typically caused by a limited number of mutations whose identification is challenged by their low prevalence. Our purpose was to develop a novel approach allowing an efficient search for mutations causing ARD and evaluation of their pathogenicity without a control group. We developed Iterative Sequencing and Variant Screening (ISVS) approach based on iterative cycles of gene sequencing and mutation screening, and ISVS Simulator software ( http://zsibio.ii.pw.edu.pl/shiny/isvs/ ) for assessment of detected variants' significance. As shown by simulations, ISVS efficiently identifies and correctly classifies pathogenic mutations except for cases where the gene of interest has extremely high number of low frequency nonpathogenic variants. By applying ISVS, we found 4 known and 9 novel (p.C73Y, p.S124L, p.C194Mfs*17, c.782 + 2 T &gt; A, c.953-5 A &gt; G, p.L325Q, p.D334Mfs*24, p.R436G, p.M448T) TMPRSS3 variants among deaf patients. For 3 known and 5 novel variants the disease association was supported by ISVS Simulator odds &gt;90:1. Pathogenicity of 6 novel mutations has been supported by in-silico predictions of variants' deleteriousness. By directly comparing variant prevalence in patients and controls, disease association was demonstrated only for two variants and it was relatively weak (P &lt; 0.05). Summarizing, ISVS strategy and ISVS Simulator are useful for detection of genetic variants causing AR diseases."	"Outcomes of cochlear implantation for the patients with specific genetic etiologies: a systematic literature review. Most of the cases with gene mutations of intra-cochlear etiology showed relatively good CI outcomes. To progress toward more solid evidence-based CI intervention, a greater number of reports including CI outcomes for specific gene mutations are desired. Cochlear implantation (CI) is the most important and effective treatment for patients with profound sensorineural hearing loss. However, the outcomes of CI vary among patients. One of the reasons of this heterogeneous outcome for cochlear implantation is thought to be the heterogeneous nature of hearing loss. Indeed, genetic factors, the most common etiology in severe-to-profound hearing loss, might be one of the key determinants of outcomes for CI and electric acoustic stimulation (EAS). Patients with genetic causes involving an 'intra-cochlear' etiology show good CI/EAS outcomes. This review article aimed to summarize the reports on CI/EAS outcomes in patients with special genetic causes as well as to assist in future clinical decision-making. Most of the cases were suspected of an intra-cochlear etiology, such as those with GJB2, SLC26A4, and OTOF mutations, which showed relatively good CI outcomes. However, there have only been a limited number of reports on patients with other gene mutations."	"Opposite chromosome constitutions due to a familial translocation t(1;21)(q43;q22) in 2 cousins with development delay and congenital anomalies: A case report. Chromosomal rearrangements are the major cause of multiple congenital abnormalities and intellectual disability. We report 2 first cousins with unbalanced chromosomal aberrations of chromosomes 1 and 21, resulting from balanced familial translocation. Chromosome microarray analysis revealed 8.5 Mb1q43q44 duplication/21q22.2q22.3 deletion and 6.8 Mb 1q43q44 deletion/21q22.2q22.3 duplication. Among other features, cognitive and motor development delay and craniofacial anomalies are present in both patients, whereas congenital heart defect and hearing impairment is only present in patient carrying 1q43q44 duplication/21q22.2q22.3 deletion. In this report, we provide detailed analysis of the phenotypic features of both patients as well as compare our data with previously published reports of similar aberrations and discuss possible functional effects of AKT3, CEP170, ZBTB18, DSCAM, and TMPRSS3 genes included in the deleted and/or duplicated regions. Partial trisomy 1q/monosomy 21q has only been reported once before, and this is the first report of partial monosomy 1q/trisomy 21q. The expressed phenotype of mirroring chromosomal aberrations in our patients supports the previous suggestion that the dosage effect of some of the genes included in deleted/duplicated regions may result in opposite phenotypes of the patients."	"Knockdown of TMPRSS3, a Transmembrane Serine Protease, Inhibits Proliferation, Migration, and Invasion in Human Nasopharyngeal Carcinoma Cells. TMPRSS3 belongs to the large type II transmembrane serine protease (TTSP) family, which plays an important role in the development and progression of tumors. However, the function of TMPRSS3 in nasopharyngeal carcinoma (NPC) remains unclear. The present study aimed to examine the impact of TMPRSS3 on the proliferation, migration, and invasion of NPC cells and their potential mechanisms. Our results demonstrated that the expression of TMPRSS3 was obviously upregulated in human NPC tissues and cell lines. Knockdown of TMPRSS3 expression significantly suppressed the proliferation and tumorigenicity of NPC cells in vitro and in vivo. Furthermore, knockdown of TMPRSS3 inhibited migration and invasion, as well as prevented the EMT process in NPC cells. Finally, knockdown of TMPRSS3 attenuated activation of the PI3K/Akt signaling pathway in NPC cells. Taken together, the present study demonstrates that the knockdown of TMPRSS3 inhibits proliferation, migration, and invasion in human NPC cells through the inactivation of the PI3K/Akt signaling pathway. This study suggests that TMPRSS3 may be a potential therapeutic target for the treatment of NPC."	"Putative TMPRSS3/GJB2 digenic inheritance of hearing loss detected by targeted resequencing. The paper describes a putative digenic form of deafness in two siblings affected by non-syndromic hereditary hearing loss, detected by a Targeted resequencing approach. Given that a previous paper suggested TMPRSS3 and GJB2 genes as responsible for a digenic form of hearing loss, our data support and reinforce this hypothesis."	"Dysregulation of TMPRSS3 and TNFRSF11B correlates with tumorigenesis and poor prognosis in patients with breast cancer. The present study was carried out to investigate the clinical significance of TMPRSS3 and TNFRSF11B in breast cancer. Thus, the expression levels of TMPRSS3 and TNFRSF11B and the correlation with prognosis in patients with breast cancer were analyzed in silico using gene microarray and hierarchical clustering analysis. Then, the differential expression in breast cancer vs. normal breast tissue was explored in the Oncomine platform and verified in our independent samples using IHC technique. Our results indicated that TMPRSS3 was upregulated and TNFRSF11B was downregulated in breast cancer tissues compared with the levels in the human normal breast tissues. TMPRSS3 and TNFRSF11B were confirmed to be correlated with distant organ metastasis of breast cancer. Moreover, upregulation of TMPRSS3 accompanied by downregulation of TNFRSF11B was found to be associated with a shorter median overall survival and indicated a poor prognosis. In conclusion, TMPRSS3 and TNFRSF11B may have potential prognostic value to be used as tumor biomarkers in breast cancer patients."	"Novel Mutations and Mutation Combinations of TMPRSS3 Cause Various Phenotypes in One Chinese Family with Autosomal Recessive Hearing Impairment. Autosomal recessive hearing impairment with postlingual onset is rare. Exceptions are caused by mutations in the TMPRSS3 gene, which can lead to prelingual (DFNB10) as well as postlingual deafness (DFNB8). TMPRSS3 mutations can be classified as mild or severe, and the phenotype is dependent on the combination of TMPRSS3 mutations. The combination of two severe mutations leads to profound hearing impairment with a prelingual onset, whereas severe mutations in combination with milder TMPRSS3 mutations lead to a milder phenotype with postlingual onset. We characterized a Chinese family (number FH1523) with not only prelingual but also postlingual hearing impairment. Three mutations in TMPRSS3, one novel mutation c.36delC [p.(Phe13Serfs⁎12)], and two previously reported pathogenic mutations, c.916G&gt;A (p.Ala306Thr) and c.316C&gt;T (p.Arg106Cys), were identified. Compound heterozygous mutations of p.(Phe13Serfs⁎12) and p.Ala306Thr manifest as prelingual, profound hearing impairment in the patient (IV: 1), whereas the combination of p.Arg106Cys and p.Ala306Thr manifests as postlingual, milder hearing impairment in the patient (II: 2, II: 3, II: 5), suggesting that p.Arg106Cys mutation has a milder effect than p.(Phe13Serfs⁎12). We concluded that different combinations of TMPRSS3 mutations led to different hearing impairment phenotypes (DFNB8/DFNB10) in this family."	"Genetic variants in the peripheral auditory system significantly affect adult cochlear implant performance. Cochlear implantation is an effective habilitation modality for adults with significant hearing loss. However, post-implant performance is variable. A portion of this variance in outcome can be attributed to clinical factors. Recent physiological studies suggest that the health of the spiral ganglion also impacts post-operative cochlear implant outcomes. The goal of this study was to determine whether genetic factors affecting spiral ganglion neurons may be associated with cochlear implant performance. Adults with post-lingual deafness who underwent cochlear implantation at the University of Iowa were studied. Pre-implantation evaluation included comprehensive genetic testing for genetic diagnosis. A novel score of genetic variants affecting genes with functional effects in the spiral ganglion was calculated. A Z-scored average of up to three post-operative speech perception tests (CNC, HINT, and AzBio) was used to assess outcome. Genetically determined spiral ganglion health affects cochlear implant outcomes, and when considered in conjunction with clinically determined etiology of deafness, accounts for 18.3% of the variance in postoperative speech recognition outcomes. Cochlear implant recipients with deleterious genetic variants that affect the cochlear sensory organ perform significantly better on tests of speech perception than recipients with deleterious genetic variants that affect the spiral ganglion. Etiological diagnosis of deafness including genetic testing is the single largest predictor of postoperative speech outcomes in adult cochlear implant recipients. A detailed understanding of the genetic underpinning of hearing loss will better inform pre-implant counseling. The method presented here should serve as a guide for further research into the molecular physiology of the peripheral auditory system and cochlear implants."	"Establishment of a Flexible Real-Time Polymerase Chain Reaction-Based Platform for Detecting Prevalent Deafness Mutations Associated with Variable Degree of Sensorineural Hearing Loss in Koreans. Many cutting-edge technologies based on next-generation sequencing (NGS) have been employed to identify candidate variants responsible for sensorineural hearing loss (SNHL). However, these methods have limitations preventing their wide clinical use for primary screening, in that they remain costly and it is not always suitable to analyze massive amounts of data. Several different DNA chips have been developed for screening prevalent mutations at a lower cost. However, most of these platforms do not offer the flexibility to add or remove target mutations, thereby limiting their wider use in a field that requires frequent updates. Therefore, we aimed to establish a simpler and more flexible molecular diagnostic platform based on ethnicity-specific mutation spectrums of SNHL, which would enable bypassing unnecessary filtering steps in a substantial portion of cases. In addition, we expanded the screening platform to cover varying degrees of SNHL. With this aim, we selected 11 variants of 5 genes (GJB2, SLC26A4, MTRNR1, TMPRSS3, and CDH23) showing high prevalence with varying degrees in Koreans and developed the U-TOP™ HL Genotyping Kit, a real-time PCR-based method using the MeltingArray technique and peptide nucleic acid probes. The results of 271 DNA samples with wild type sequences or mutations in homo- or heterozygote form were compared between the U-TOP™ HL Genotyping Kit and Sanger sequencing. The positive and negative predictive values were 100%, and this method showed perfect agreement with Sanger sequencing, with a Kappa value of 1.00. The U-TOP™ HL Genotyping Kit showed excellent performance in detecting varying degrees and phenotypes of SNHL mutations in both homozygote and heterozygote forms, which are highly prevalent in the Korean population. This platform will serve as a useful and cost-effective first-line screening tool for varying degrees of genetic SNHL and facilitate genome-based personalized hearing rehabilitation for the Korean population. "	"Genetic causes of moderate to severe hearing loss point to modifiers. The genetic underpinnings of recessively inherited moderate to severe sensorineural hearing loss are not well understood, despite its higher prevalence in comparison to profound deafness. We recruited 92 consanguineous families segregating stable or progressive, recessively inherited moderate or severe hearing loss. We utilized homozygosity mapping, Sanger sequencing, targeted capture of known deafness genes with massively parallel sequencing and whole exome sequencing to identify the molecular basis of hearing loss in these families. Variants of the known deafness genes were found in 69% of the participating families with the SLC26A4, GJB2, MYO15A, TMC1, TMPRSS3, OTOF, MYO7A and CLDN14 genes together accounting for hearing loss in 54% of the families. We identified 20 reported and 21 novel variants in 21 known deafness genes; 16 of the 20 reported variants, previously associated with stable, profound deafness were associated with moderate to severe or progressive hearing loss in our families. These data point to a prominent role for genetic background, environmental factors or both as modifiers of human hearing loss severity."	"Survival of Cochlear Spiral Ganglion Neurons Improved In vivo by Anti-miR204 via TMPRSS3. Sensorineural hearing loss (SNHL) is caused by damage to hair cells followed by degeneration of the spiral ganglion neurons (SGNs), and cochlear implanting is an effective treatment. Unfortunately, the progressive hearing loss is still found due to ongoing degeneration of cochlear SGNs. The aim of this study was to investigate the neuroprotective effect of anti-miR204 on SGNs in vivo. Our recent in vitro work suggested that anti-miR204 could be a potential therapeutic strategy in SNHL via rescue cochlear SGNs. In order to further our knowledge of miR204 on SGNs in vivo, we made a kanamycin ototoxicity model and then virus containing the anti-miR204 gene (AAV1-anti-miR204) was microinjected into the cochlear of the model to monitor the effect. The SGNs were rescued by anti-miR204 in the kanamycin ototoxicity mouse group compared to the sham group. Moreover, expression of TMPRSS3 in SGNs was saved by anti-miR204 treatment. Anti-miR204 might be an alternate way to alleviate the degeneration of cochlear SGNs of kanamycin ototoxicity mice."	"TMPRSS3 modulates ovarian cancer cell proliferation, invasion and metastasis. Overexpression of transmembrane protease, serine 3 (TMPRSS3) has been detected in ovarian cancer. However, the molecular mechanisms of TMPRSS3 in ovarian cancer remain unclear. In the present study, we found that TMPRSS3 was significantly expressed in ovarian cancer cells. Overexpression of TMPRSS3 promoted the proliferation, invasion and migration of A2780 cells. Conversely, knockdown of TMPRSS3 in HO8910 cells inhibited the proliferation, invasion and migration. Furthermore, TMPRSS3 affected the expression levels of E-cadherin, vimentin and Twist. In addition, TMPRSS3 induced activation of ERK1/2 in ovarian cancer cells, and the ERK1/2 pathway was required for the TMPRSS3-mediated proliferation, invasion and migration of ovarian cancer cells. Finally, knockdown of TMPRSS3 inhibited ovarian cancer HO8910 cell growth and metastasis in vivo. Collectively, the present study suggests that TMPRSS3 plays a crucial role in the development and progression of ovarian cancer. Therefore, TMPRSS3 represents a potential therapeutic target of ovarian cancer."	"Pathogenic p.Cys194Metfs*17 variant argues against TMPRSS3/GJB2 digenic inheritance of hearing loss. NA"	"Comprehensive analysis via exome sequencing uncovers genetic etiology in autosomal recessive nonsyndromic deafness in a large multiethnic cohort. Autosomal recessive nonsyndromic deafness (ARNSD) is characterized by a high degree of genetic heterogeneity, with reported mutations in 58 different genes. This study was designed to detect deafness-causing variants in a multiethnic cohort with ARNSD by using whole-exome sequencing (WES). After excluding mutations in the most common gene, GJB2, we performed WES in 160 multiplex families with ARNSD from Turkey, Iran, Mexico, Ecuador, and Puerto Rico to screen for mutations in all known ARNSD genes. We detected ARNSD-causing variants in 90 (56%) families, 54% of which had not been previously reported. Identified mutations were located in 31 known ARNSD genes. The most common genes with mutations were MYO15A (13%), MYO7A (11%), SLC26A4 (10%), TMPRSS3 (9%), TMC1 (8%), ILDR1 (6%), and CDH23 (4%). Nine mutations were detected in multiple families with shared haplotypes, suggesting founder effects. We report on a large multiethnic cohort with ARNSD in which comprehensive analysis of all known ARNSD genes identifies causative DNA variants in 56% of the families. In the remaining families, WES allows us to search for causative variants in novel genes, thus improving our ability to explain the underlying etiology in more families.Genet Med 18 4, 364-371."	"TMPRSS3 is a novel poor prognostic factor for breast cancer. It has recently been reported that transmembrane protease, serine 3 (TMPRSS3) is overexpressed in cancer. However, TMPRSS3 expression and its biological roles in breast cancer (BC) have not been reported. This study aims to investigate the TMPRSS3 expression in BC and its relation with the outcome of the BC. This study involves a total of 149 BC tissues and adjacent non-cancerous tissues that were diagnosed between 2004 and 2007. Immunohistochemistry is used to compare the pattern of TMPRSS3 expression in BC and in adjacent non-cancerous tissues. Kaplan-Meier and Cox regression analyses were used to assess the prognostic significance of TMPRSS3 expression among BC patients. The results are as follow: TMPRSS3 expression is significantly in BC compared to adjacent non-cancerous tissues. High TMPRSS3 expression was related to TNM stage, lymph node metastasis, and Ki-67 expression. Furthermore, the overall survival (OS) and disease-free survival (DFS) in BC patients with high TMPRSS3 expression were lower than those in patients with low TMPRSS3 expression. Based on multivariate analysis, lymph node metastasis, TNM stage and TMPRSS3 expression are independent prognostic factors for OS in BC, while lymph node metastasis and TMPRSS3 expression are independent prognostic factors for DFS in BC. This study proves that TMPRSS3 expression is an independent prognostic factor for BC patients. Bioinformatic analysis of potential TMPRSS3 binding proteins revealed that TMPRSS3 could be a key regulator of cancer pathways. This study helps us better understand the function of TMPRSS3 in cancer. "	"TMPRSS3 mutations in autosomal recessive nonsyndromic hearing loss. Nonsyndromic genetic deafness is highly heterogeneous in its clinical presentation, pattern of inheritance and underlying genetic causes. Mutations in TMPRSS3 gene encoding transmembrane serine protease account for &lt;1 % of autosomal recessive nonsyndromic hearing loss (ARNSHL) in Caucasians. Targeted next generation sequencing in the index family with profound deaf parents and a son, and Sanger sequencing of selected TMPRSS3 gene regions in a cohort of thirty-five patients with suspected ARNSHL was adopted. A son and his mother in the index family were homozygous for TMPRSS3 c.208delC (p.His70Thrfs*19) variant. Father was digenic compound heterozygote for the same variant and common GJB2 c.35delG variant. Three additional patients from the ARNSHL cohort were homozygous for TMPRSS3 c.208delC. TMPRSS3 defects seem to be an important cause of ARNSHL in Slovenia resulting in uniform phenotype with profound congenital hearing loss, and satisfactory hearing and speech recognition outcome after cochlear implantation. Consequently, TMPRSS3 gene analysis should be included in the first tier of genetic investigations of ARNSHL along with GJB2 and GJB6 genes."	"Low expression levels of hepsin and TMPRSS3 are associated with poor breast cancer survival. Hepsin, (also called TMPRSS1) and TMPRSS3 are type II transmembrane serine proteases (TTSPs) that are involved in cancer progression. TTSPs can remodel extracellular matrix (ECM) and, when dysregulated, promote tumor progression and metastasis by inducing defects in basement membrane and ECM molecules. This study investigated whether the gene and protein expression levels of these TTSPs were associated with breast cancer characteristics or survival. Immunohistochemical staining was used to evaluate hepsin levels in 372 breast cancer samples and TMPRSS3 levels in 373 samples. TMPRSS1 mRNA expression was determined in 125 invasive and 16 benign breast tumor samples, and TMPRSS3 mRNA expression was determined in 167 invasive and 23 benign breast tumor samples. The gene and protein expression levels were analyzed for associations with breast cancer-specific survival and clinicopathological parameters. Low TMPRSS1 and TMPRSS3 mRNA expression levels were independent prognostic factors for poor breast cancer survival during the 20-year follow-up (TMPRSS1, P = 0.023; HR, 2.065; 95 % CI, 1.106-3.856; TMPRSS3, P = 0.013; HR, 2.106; 95 % CI, 1.167-3.800). Low expression of the two genes at the mRNA and protein levels associated with poorer survival compared to high levels (log rank P-values 0.015-0.042). Low TMPRSS1 mRNA expression was also an independent marker of poor breast cancer prognosis in patients treated with radiotherapy (P = 0.034; HR, 2.344; 95 % CI, 1.065-5.160). Grade III tumors, large tumor size, and metastasis were associated with low mRNA and protein expression levels. The results suggest that the TTSPs hepsin and TMPRSS3 may have similar biological functions in the molecular pathology of breast cancer. Low mRNA and protein expression levels of the studied TTSPs were prognostic markers of poor survival in breast cancer."	"The patients associated with TMPRSS3 mutations are good candidates for electric acoustic stimulation. To clarify the frequency of TMPRSS3 mutations in the hearing loss population, genetic analysis was performed, and detailed clinical characteristics were collected. Optical intervention for patients with TMPRSS3 mutations was also discussed. Massively parallel DNA sequencing (MPS) was applied for the target exon-sequencing of 63 deafness genes in a population of 1120 Japanese hearing loss patients. Hearing loss in 5 patients was found to be caused by compound heterozygous TMPRSS3 mutations, and their detailed clinical features were collected and analyzed. Typically, all of the patients showed ski slope type audiograms and progressive hearing loss. Three of the 5 patients received electric acoustic stimulation (EAS), which showed good results. Further, the onset age was found to vary, and there were some correlations between genotype and phenotype (onset age). MPS is a powerful tool for the identification of rare causative deafness genes, such as TMPRSS3. The present clinical characteristics not only confirmed the findings from previous studies but also provided clinical evidence that EAS is beneficial for patients possessing TMPRSS3 mutations."	"Cohesin modulates transcription of estrogen-responsive genes. The cohesin complex has essential roles in cell division, DNA damage repair and gene transcription. The transcriptional function of cohesin is thought to derive from its ability to connect distant regulatory elements with gene promoters. Genome-wide binding of cohesin in breast cancer cells frequently coincides with estrogen receptor alpha (ER), leading to the hypothesis that cohesin facilitates estrogen-dependent gene transcription. We found that cohesin modulates the expression of only a subset of genes in the ER transcription program, either activating or repressing transcription depending on the gene target. Estrogen-responsive genes most significantly influenced by cohesin were enriched in pathways associated with breast cancer progression such as PI3K and ErbB1. In MCF7 breast cancer cells, cohesin depletion enhanced transcription of TFF1 and TFF2, and was associated with increased ER binding and increased interaction between TFF1 and its distal enhancer situated within TMPRSS3. In contrast, cohesin depletion reduced c-MYC mRNA and was accompanied by reduced interaction between a distal enhancer of c-MYC and its promoters. Our data indicates that cohesin is not a universal facilitator of ER-induced transcription and can even restrict enhancer-promoter communication. We propose that cohesin modulates transcription of estrogen-dependent genes to achieve appropriate directionality and amplitude of expression. "	"Identification of a novel homozygous mutation, TMPRSS3: c.535G&gt;A, in a Tibetan family with autosomal recessive non-syndromic hearing loss. Different ethnic groups have distinct mutation spectrums associated with inheritable deafness. In order to identify the mutations responsible for congenital hearing loss in the Tibetan population, mutation screening for 98 deafness-related genes by microarray and massively parallel sequencing of captured target exons was conducted in one Tibetan family with familiar hearing loss. A homozygous mutation, TMPRSS3: c.535G&gt;A, was identified in two affected brothers. Both parents are heterozygotes and an unaffected sister carries wild type alleles. The same mutation was not detected in 101 control Tibetan individuals. This missense mutation results in an amino acid change (p.Ala179Thr) at a highly conserved site in the scavenger receptor cysteine rich (SRCR) domain of the TMPRSS3 protein, which is essential for protein-protein interactions. Thus, this mutation likely affects the interactions of this transmembrane protein with extracellular molecules. According to our bioinformatic analyses, the TMPRSS3: c.535G&gt;A mutation might damage protein function and lead to hearing loss. These data suggest that the homozygous mutation TMPRSS3: c.535G&gt;A causes prelingual hearing loss in this Tibetan family. This is the first TMPRSS3 mutation found in the Chinese Tibetan population. "	"Type II transmembrane serine protease gene variants associate with breast cancer. Type II transmembrane serine proteases (TTSPs) are related to tumor growth, invasion, and metastasis in cancer. Genetic variants in these genes may alter their function, leading to cancer onset and progression, and affect patient outcome. Here, 464 breast cancer cases and 370 controls were genotyped for 82 single-nucleotide polymorphisms covering eight genes. Association of the genotypes was estimated against breast cancer risk, breast cancer-specific survival, and survival in different treatment groups, and clinicopathological variables. SNPs in TMPRSS3 (rs3814903 and rs11203200), TMPRSS7 (rs1844925), and HGF (rs5745752) associated significantly with breast cancer risk (Ptrend = 0.008-0.042). SNPs in TMPRSS1 (rs12151195 and rs12461158), TMPRSS2 (rs2276205), TMPRSS3 (rs3814903), and TMPRSS7 (rs2399403) associated with prognosis (P = 0.004-0.046). When estimating the combined effect of the variants, the risk of breast cancer was higher with 4-5 alleles present compared to 0-2 alleles (P = 0.0001; OR, 2.34; 95% CI, 1.39-3.94). Women with 6-8 survival-associating alleles had a 3.3 times higher risk of dying of breast cancer compared to women with 1-3 alleles (P = 0.001; HR, 3.30; 95% CI, 1.58-6.88). The results demonstrate the combined effect of variants in TTSPs and their related genes in breast cancer risk and patient outcome. Functional analysis of these variants will lead to further understanding of this gene family, which may improve individualized risk estimation and development of new strategies for treatment of breast cancer. "	"Genetic spectrum of autosomal recessive non-syndromic hearing loss in Pakistani families. The frequency of inherited bilateral autosomal recessive non-syndromic hearing loss (ARNSHL) in Pakistan is 1.6/1000 individuals. More than 50% of the families carry mutations in GJB2 while mutations in MYO15A account for about 5% of recessive deafness. In the present study a cohort of 30 ARNSHL families was initially screened for mutations in GJB2 and MYO15A. Homozygosity mapping was performed by employing whole genome single nucleotide polymorphism (SNP) genotyping in the families that did not carry mutations in GJB2 or MYO15A. Mutation analysis was performed for the known ARNSHL genes present in the homozygous regions to determine the causative mutations. This allowed the identification of a causative mutation in all the 30 families including 9 novel mutations, which were identified in 9 different families (GJB2 (c.598G&gt;A, p.Gly200Arg); MYO15A (c.9948G&gt;A, p.Gln3316Gln; c.3866+1G&gt;A; c.8767C&gt;T, p.Arg2923* and c.8222T&gt;C, p.Phe2741Ser), TMC1 (c.362+18A&gt;G), BSND (c.97G&gt;C, p.Val33Leu), TMPRSS3 (c.726C&gt;G, p.Cys242Trp) and MSRB3 (c.20T&gt;G, p.Leu7Arg)). Furthermore, 12 recurrent mutations were detected in 21 other families. The 21 identified mutations included 10 (48%) missense changes, 4 (19%) nonsense mutations, 3 (14%) intronic mutations, 2 (9%) splice site mutations and 2 (9%) frameshift mutations. GJB2 accounted for 53% of the families, while mutations in MYO15A were the second most frequent (13%) cause of ARNSHL in these 30 families. The identification of novel as well as recurrent mutations in the present study increases the spectrum of mutations in known deafness genes which could lead to the identification of novel founder mutations and population specific mutated deafness genes causative of ARNSHL. These results provide detailed genetic information that has potential diagnostic implication in the establishment of cost-efficient allele-specific analysis of frequently occurring variants in combination with other reported mutations in Pakistani populations. "	"miR-204 suppresses cochlear spiral ganglion neuron survival in vitro by targeting TMPRSS3. Sensorineural hearing loss (SNHL) is the most common cause of hearing impairment. One of the essential steps to prevent progressive hearing loss is to protect spiral ganglion neurons (SGNs) from ongoing degeneration. MicroRNAs and TMPRSS3 (transmembrane protease, serine 3) have been reported to be involved in development of SGNs and genesis of SNHL. The aim of this study was to investigate the role of miR-204 and TMPRSS3 in SGNs. Effect of miR-204 on cell viability of SGNs was first examined using MTT (3-[4,5-dimethylthiazol-2-yl]-2,5 diphenyl tetrazolium bromide) assay. Expression of TMPRSS3 in SGNs with or without addition of miR-204 was assessed by real-time PCR and western blot further. A luciferase reporter activity assay was conducted to confirm target association between miR-204 and 3'-UTR of TMPRSS3. Finally, role of TMPRSS3 on cell viability of SGNs was evaluated by transfection of TMPRSS3 siRNA. Cell viability of SGNs was suppressed by miR-204 in a concentration-dependent manner. Overexpression of miR-204 reduced expression of TMPRSS3 in SGNs at both mRNA and protein levels. Binding to the 3'-UTR of TMPRSS3 by miR-204 was identified by luciferase assay. Knockdown of TMPRSS3 by siRNA significantly inhibits cell viability of SGNs. miR-204 could be a potential therapeutic target in sensorineural hearing loss. "	"Genetic testing for sporadic hearing loss using targeted massively parallel sequencing identifies 10 novel mutations. The genetic heterogeneity of non-syndromic hearing loss (NSHL) has hampered the identification of its pathogenic mutations. Several recent studies applied targeted genome enrichment (TGE) and massively parallel sequencing (MPS) to simultaneously screen a large set of known hearing loss (HL) genes. However, most of these studies were focused on familial cases. To evaluate the effectiveness of TGE and MPS on screening sporadic NSHL patients, we recruited 63 unrelated sporadic NSHL probands, who had various levels of HL and were excluded for mutations in GJB2, MT-RNR1, and SLC26A4 genes. TGE and MPS were performed on 131 known HL genes using the Human Deafness Panel oto-DA3 (Otogenetics Corporation., Norcross, GA). We identified 14 pathogenic variants in STRC, CATSPER2, USH2A, TRIOBP, MYO15A, GPR98, and TMPRSS3 genes in eight patients (diagnostic rate = 12.7%). Among these variants, 10 were novel compound heterozygous mutations. The identification of pathogenic mutations could predict the progression of HL, and guide diagnosis and treatment of the disease."	"Hereditary hearing loss: a 96 gene targeted sequencing protocol reveals novel alleles in a series of Italian and Qatari patients. Deafness is a really common disorder in humans. It can begin at any age with any degree of severity. Hereditary hearing loss is characterized by a vast genetic heterogeneity with more than 140 loci described in humans but only 65 genes so far identified. Families affected by hearing impairment would have real advantages from an early molecular diagnosis that is of primary relevance in genetic counseling. In this perspective, here we report a family-based approach employing Ion Torrent DNA sequencing technology to analyze coding and UTR regions of 96 genes related to hearing function and loss in a first series of 12 families coming from Italy and Qatar. Using this approach we were able to find the causative gene in 4 out of these 12 families (33%). In particular 5 novel alleles were identified in the following genes LOXHD1, TMPRSS3, TECTA and MYO15A already associated with hearing impairment. Our study confirms the usefulness of a targeted sequencing approach despite larger numbers are required for further validation and for defining a molecular epidemiology picture of hearing loss in these two countries."	"A novel mutation of TMPRSS3 related to milder auditory phenotype in Korean postlingual deafness: a possible future implication for a personalized auditory rehabilitation. Appropriate customized auditory rehabilitation for hearing impaired subjects requires prediction of residual hearing and progression of hearing loss. Mutations in TMPRSS3 encoding a transmembrane serine protease were reported to be associated with two different autosomal recessive nonsyndromic hearing loss (arNSHL) phenotypes, DFNB8 and DFNB10, in terms of residual hearing that may mandate different rehabilitation. We aimed to reveal the genetic contribution of TMPRSS3 mutations among Korean populations and to correlate the clinical phenotype with TMPRSS3 genotypes. Fifty families that segregated arNSHL and have visited our clinic recently for 2 years were recruited for TMPRSS3 screening. Novel TMPRSS3 variants detected in our cohort were modeled using a predicted three-dimensional (3D) structure of the serine protease domain. The prevalence reached up to 11.2 % (3/27) among subjects with either prelingual hearing loss but retaining some degree of language development or with postlingual ski-slope hearing loss. We also found that a p.A306T allele is a founder allele in this population. Based upon the 3D modeling, we were able to correlate significant retention of residual low-frequency hearing and slower progression of its loss to this novel variant p.T248M that was predicted to have milder pathogenicity. A yeast-based protease assay confirmed a mild pathogenic potential of the p.T248M variant and a tight correlation between the protease activity and the residual hearing. Preservation of this low-frequency hearing should be of utmost importance when considering auditory rehabilitation. Our results significantly narrow down the candidate population for TMPRSS3 sequencing for more efficient genetic diagnosis. More importantly, genotype-phenotype correlation of this gene observed in our cohort suggests that TMPRSS3 can be an appropriate candidate for personalized and customized auditory rehabilitation. The prevalence of TMPRSS3 mutations among Korean postlingual hearing loss is 8.3 %. The p.A306T variant of TMPRSS3 is the common founder allele in Koreans. A novel variant, p.T248M of TMPRSS3, was predicted to have milder pathogenicity. There was a genotype-phenotype correlation of this gene in Koreans. Our data support implication of this gene for personalized rehabilitation."	"Function and clinical relevance of kallikrein-related peptidases and other serine proteases in gynecological cancers. Gynecological cancers, including malignant tumors of the ovaries, the endometrium and the cervix, account for approximately 10% of tumor-associated deaths in women of the Western world. For screening, diagnosis, prognosis, and therapy response prediction, the group of enzymes known as serine (Ser-)proteases show great promise as biomarkers. In the present review, following a summary of the clinical facts regarding malignant tumors of the ovaries, the endometrium and the cervix, and characterization of the most important Ser-proteases, we thoroughly review the current state of knowledge relating to the use of proteases as biomarkers of the most frequent gynecological cancers. Within the Ser-protease group, the kallikrein-related peptidase (KLK) family, which encompasses a subgroup of 15 members, holds particular promise, with some acting via a tumor-promoting mechanism and others behaving as protective factors. Further, the urokinase-type plasminogen activator (uPA) and its inhibitor PAI-1 (plasminogen activator inhibitor-1) seem to play an unfavorable role in gynecological tumors, while down-regulation of high-temperature requirement proteins A 1, 2 and 3 (HtrA1,2,3) is associated with malignant disease and cancer progression. Expression/activity levels of other Ser-proteases, including the type II transmembrane Ser-proteases (TTSPs) matriptase, hepsin (TMPRSS1), and the hepsin-related protease (TMPRSS3), as well as the glycosyl-phosphatidylinositol (GPI)-anchored Ser-proteases prostasin and testisin, may be of clinical relevance in gynecological cancers. In conclusion, proteases are a rich source of biomarkers of gynecological cancer, though the enzymes' exact roles and functions merit further investigation."	"Non-syndromic hearing impairment in India: high allelic heterogeneity among mutations in TMPRSS3, TMC1, USHIC, CDH23 and TMIE. Mutations in the autosomal genes TMPRSS3, TMC1, USHIC, CDH23 and TMIE are known to cause hereditary hearing loss. To study the contribution of these genes to autosomal recessive, non-syndromic hearing loss (ARNSHL) in India, we examined 374 families with the disorder to identify potential mutations. We found four mutations in TMPRSS3, eight in TMC1, ten in USHIC, eight in CDH23 and three in TMIE. Of the 33 potentially pathogenic variants identified in these genes, 23 were new and the remaining have been previously reported. Collectively, mutations in these five genes contribute to about one-tenth of ARNSHL among the families examined. New mutations detected in this study extend the allelic heterogeneity of the genes and provide several additional variants for structure-function correlation studies. These findings have implications for early DNA-based detection of deafness and genetic counseling of affected families in the Indian subcontinent. "	"Massively parallel DNA sequencing successfully identifies new causative mutations in deafness genes in patients with cochlear implantation and EAS. Genetic factors, the most common etiology in severe to profound hearing loss, are one of the key determinants of Cochlear Implantation (CI) and Electric Acoustic Stimulation (EAS) outcomes. Satisfactory auditory performance after receiving a CI/EAS in patients with certain deafness gene mutations indicates that genetic testing would be helpful in predicting CI/EAS outcomes and deciding treatment choices. However, because of the extreme genetic heterogeneity of deafness, clinical application of genetic information still entails difficulties. Target exon sequencing using massively parallel DNA sequencing is a new powerful strategy to discover rare causative genes in Mendelian disorders such as deafness. We used massive sequencing of the exons of 58 target candidate genes to analyze 8 (4 early-onset, 4 late-onset) Japanese CI/EAS patients, who did not have mutations in commonly found genes including GJB2, SLC26A4, or mitochondrial 1555A&gt;G or 3243A&gt;G mutations. We successfully identified four rare causative mutations in the MYO15A, TECTA, TMPRSS3, and ACTG1 genes in four patients who showed relatively good auditory performance with CI including EAS, suggesting that genetic testing may be able to predict the performance after implantation. "	"Genetic analysis of TMPRSS3 gene in the Korean population with autosomal recessive nonsyndromic hearing loss. The TMPRSS3 gene (DFNB8/10), which encodes a transmembrane serine protease, is a common hearing loss gene in several populations. Accurate functions of TMPRSS3 in the hearing pathway are still unknown, but TMPRSS3 has been reported to play a crucial role in inner ear development or maintenance. To date, 16 pathogenic mutations have been identified in many countries, but no mutational studies of the TMPRSS3 gene have been conducted in the Korean hearing loss population. In this study, we performed genetic analysis of TMPRSS3 in 40 unrelated Korean patients with autosomal recessive hearing loss to identify the aspect and frequency of TMPRSS3 gene mutations in the Korean population. A total of 22 variations were detected, including a novel variant (p.V291L) and a previously reported pathogenic mutation (p.A306T). The p.A306T mutation which has been detected in only compound heterozygous state in previous studies was identified in homozygous state for the first time in this study. Moreover, the clinical evaluation identified bilateral dilated vestibules in the patient with p.A306T mutation, and it suggested that p.A306T mutation of the TMPRSS3 gene might be associated with vestibular anomalies. In conclusion, this study investigated that only 2.5% of patients with autosomal recessive hearing loss were related to TMPRSS3 mutations suggesting low prevalence of TMPRSS3 gene in Korean hearing loss population. Also, it will provide the information of genotype-phenotype correlation to understand definite role of TMPRSS3 in the auditory system."	"Identification of a novel in-frame deletion in KCNQ4 (DFNA2A) and evidence of multiple phenocopies of unknown origin in a family with ADSNHL. Autosomal dominant sensorineural hearing loss (ADSNHL) is extremely genetically heterogeneous, making it difficult to molecularly diagnose. We identified a multiplex (n=28 affected) family from the genetic isolate of Newfoundland, Canada with variable SNHL and used a targeted sequencing approach based on population-specific alleles in WFS1, TMPRSS3 and PCDH15; recurrent mutations in GJB2 and GJB6; and frequently mutated exons of KCNQ4, COCH and TECTA. We identified a novel, in-frame deletion (c.806_808delCCT: p.S269del) in the voltage-gated potassium channel KCNQ4 (DFNA2), which in silico modeling predicts to disrupt multimerization of KCNQ4 subunits. Surprisingly, 10/23 deaf relatives are non-carriers of p.S269del. Further molecular characterization of the DFNA2 locus in deletion carriers ruled out the possibility of a pathogenic mutation other than p.S269del at the DFNA2A/B locus and linkage analysis showed significant linkage to DFNA2 (maximum LOD=3.3). Further support of genetic heterogeneity in family 2071 was revealed by comparisons of audio profiles between p.S269del carriers and non-carriers suggesting additional and as yet unknown etiologies. We discuss the serious implications that genetic heterogeneity, in this case observed within a single family, has on molecular diagnostics and genetic counseling. "	"Tmprss3 loss of function impairs cochlear inner hair cell Kcnma1 channel membrane expression. Before acquiring their mature state, cochlear hair cells undergo a series of changes in expression of ion channels. How this complex mechanism is achieved is not fully understood. Tmprss3, a type II serine protease expressed in hair cells, is required for their proper functioning at the onset of hearing. To unravel the role of Tmprss3 in the acquisition of mature K(+) currents, we compared their function by patch-clamp technique in wild-type Tmprss3(WT) and Tmprss3(Y260X)-mutant mice. Interestingly, only outward K(+) currents were altered in Tmprss3(Y260X)-mutant mice. To determine by which mechanism this occurred, we compared the protein network of Tmprss3(WT) and Tmprss3(Y260X)-mutant mice using proteomic analysis. This led to the identification of a pathway related to potassium Kcnma1 channels. This pathway was validated by immunohistochemistry, focusing on the most downregulated protein that was identified as a cochlear Kcnma1-associated protein, APOA1. Finally, we show that, in contrast to Tmprss3(WT), Kcnma1 channels were absent at the neck of inner hair cells (IHCs) in Tmprss3(Y260X)-mutant mice. In conclusion, our data suggest that lack of Tmprss3 leads to a decrease in Kcnma1 potassium channels expression in (IHCs)."	"Whole-exome sequencing efficiently detects rare mutations in autosomal recessive nonsyndromic hearing loss. Identification of the pathogenic mutations underlying autosomal recessive nonsyndromic hearing loss (ARNSHL) is difficult, since causative mutations in 39 different genes have so far been reported. After excluding mutations in the most common ARNSHL gene, GJB2, via Sanger sequencing, we performed whole-exome sequencing (WES) in 30 individuals from 20 unrelated multiplex consanguineous families with ARNSHL. Agilent SureSelect Human All Exon 50 Mb kits and an Illumina Hiseq2000 instrument were used. An average of 93%, 84% and 73% of bases were covered to 1X, 10X and 20X within the ARNSHL-related coding RefSeq exons, respectively. Uncovered regions with WES included those that are not targeted by the exome capture kit and regions with high GC content. Twelve homozygous mutations in known deafness genes, of which eight are novel, were identified in 12 families: MYO15A-p.Q1425X, -p.S1481P, -p.A1551D; LOXHD1-p.R1494X, -p.E955X; GIPC3-p.H170N; ILDR1-p.Q274X; MYO7A-p.G2163S; TECTA-p.Y1737C; TMC1-p.S530X; TMPRSS3-p.F13Lfs*10; TRIOBP-p.R785Sfs*50. Each mutation was within a homozygous run documented via WES. Sanger sequencing confirmed co-segregation of the mutation with deafness in each family. Four rare heterozygous variants, predicted to be pathogenic, in known deafness genes were detected in 12 families where homozygous causative variants were already identified. Six heterozygous variants that had similar characteristics to those abovementioned variants were present in 15 ethnically-matched individuals with normal hearing. Our results show that rare causative mutations in known ARNSHL genes can be reliably identified via WES. The excess of heterozygous variants should be considered during search for causative mutations in ARNSHL genes, especially in small-sized families."	"Prediction of cochlear implant performance by genetic mutation: the spiral ganglion hypothesis. Up to 7% of patients with severe-to-profound deafness do not benefit from cochlear implantation. Given the high surgical implantation and clinical management cost of cochlear implantation (&gt;$1 million lifetime cost), prospective identification of the worst performers would reduce unnecessary procedures and healthcare costs. Because cochlear implants bypass the membranous labyrinth but rely on the spiral ganglion for functionality, we hypothesize that cochlear implant (CI) performance is dictated in part by the anatomic location of the cochlear pathology that underlies the hearing loss. As a corollary, we hypothesize that because genetic testing can identify sites of cochlear pathology, it may be useful in predicting CI performance. 29 adult CI recipients with idiopathic adult-onset severe-to-profound hearing loss were studied. DNA samples were subjected to solution-based sequence capture and massively parallel sequencing using the OtoSCOPE(®) platform. The cohort was divided into three CI performance groups (good, intermediate, poor) and genetic causes of deafness were correlated with audiometric data to determine whether there was a gene-specific impact on CI performance. The genetic cause of deafness was determined in 3/29 (10%) individuals. The two poor performers segregated mutations in TMPRSS3, a gene expressed in the spiral ganglion, while the good performer segregated mutations in LOXHD1, a gene expressed in the membranous labyrinth. Comprehensive literature review identified other good performers with mutations in membranous labyrinth-expressed genes; poor performance was associated with spiral ganglion-expressed genes. Our data support the underlying hypothesis that mutations in genes preferentially expressed in the spiral ganglion portend poor CI performance while mutations in genes expressed in the membranous labyrinth portend good CI performance. Although the low mutation rate in known deafness genes in this cohort likely relates to the ascertainment characteristics (postlingual hearing loss in adult CI recipients), these data suggest that genetic testing should be implemented as part of the CI evaluation to test this association prospectively."	"Defect in the gene encoding the EAR/EPTP domain-containing protein TSPEAR causes DFNB98 profound deafness. We report a consanguineous Iranian family affected by congenital profound sensorineural deafness segregating in an autosomal recessive mode. Auditory tests implicated at least a cochlear defect in these patients. We mapped the deafness, autosomal recessive (DFNB) locus involved by linkage analysis to a 4.8 Mb region at chromosome 21q22.3-qter. Exclusion of the DFNB8/10 gene TMPRSS3, located in this chromosomal interval, led us to identify a new deafness locus, DFNB98. Whole exome sequencing allowed us to identify a homozygous frame-shifting mutation (c.1726G&gt;T+c.1728delC) in the gene TSPEAR (thrombospondin-type laminin G domain and EAR repeats). This truncating mutation (p.V576LfsX37) impeded the secretion of the encoded protein by cells transfected with the mutated gene. Alternative splicing of TSPEAR transcripts predict two protein isoforms, 522 and 669 amino acids in length, both of which would be affected by the mutation. These isoforms are composed of a thrombospondin-type laminin G (TSP) domain followed by seven tandemly organized epilepsy-associated repeats (EARs), probably forming a β-propeller domain. Tspear is expressed in a variety of murine tissues. Only the larger Tspear transcript was found in the cochlea, and the protein was detected by immunofluorescence at the surface of the hair bundles of sensory cells. The mammalian EAR protein family includes six known members. Defects in four of them, i.e. Lgi1, Lgi2, Vlgr1 and, we show here, TSPEAR, cause disorders with auditory features: epilepsy, which can include auditory features in humans; audiogenic seizures in animals; and/or hearing impairments in humans and mice. These observations demonstrate that EAR-containing proteins are essential for the development and function of the auditory system."	"Autosomal recessive nonsyndromic deafness genes: a review. More than 50 Percent of prelingual hearing loss is genetic in origin, and of these up to 93 Percent are monogenic autosomal recessive traits. Some forms of genetic deafness can be recognized by their associated syndromic features, but in most cases, hearing loss is the only finding and is referred to as nonsyndromic deafness. To date, more than 700 different mutations have been identified in one of 42 genes in individuals with autosomal recessive nonsyndromic hearing loss (ARNSHL). Reported mutations in GJB2, encoding connexin 26, makes this gene the most common cause of hearing loss in many populations. Other relatively common deafness genes include SLC26A4, MYO15A, OTOF, TMC1, CDH23, and TMPRSS3. In this report we summarize genes and mutations reported in families with ARNSHL. Founder effects were demonstrated for some recurrent mutations but the most significant findings are the extreme locus and allelic heterogeneity and different spectrum of genes and mutations in each population."	"A novel genome-based approach correlates TMPRSS3 overexpression in ovarian cancer with DNA hypomethylation. In an attempt to analyze more profoundly aberrant DNA hypomethylation in epithelial ovarian cancer (EOC), we applied a novel genome-based approach which includes expression profiling following pharmacologic stimulation of DNA methylation with the methyl donor S-adenosyl-l-methionine (SAM). Four different EOC cell lines (OVCAR3, SKOV3, TOV21 and TOV112) were treated with SAM, and gene expression profiling was performed in SAM-treated and control EOC cells. Genes, downregulated upon SAM treatment were considered as potentially hypomethylated in EOC. DNA hypomethylation was independently validated in ovarian tumor and control tissues by bisulfite sequencing PCR (BSP). Among the genes identified, one of particular interest was the type II serine protease TMPRSS3 gene variants A and D (TMPRSS3-A/D), previously recognized as overexpressed in EOC and representing potential EOC therapeutic targets. Consecutive BSP analysis demonstrated that the common putative promoter region of the TMPRSS3-A/D gene variants was significantly hypomethylated in high-grade serous EOC tumors, compared to low-malignant potential ovarian tumors and normal ovarian tissue. Our data imply that TMPRSS3-A/D overexpression in EOC is probably due to hypomethylation of their control region thus indicating that TMPRSS3-A/D variants could also represent novel molecular targets for epigenetic therapy of late stages of the disease. Our results also suggest that the frequently observed upregulation of different members of the type II serine proteases gene family in advanced cancer could be due to aberrant DNA hypomethylation. Furthermore, our study introduces a promising discovery approach that could be used for the identification of hypomethylated genes in different experimental cell models."	"Molecular analysis of the TMPRSS3 gene in Moroccan families with non-syndromic hearing loss. Autosomal recessive non-syndromic hearing impairment (ARNSHI) is the most common type of inherited hearing impairment, accounting for approximately 80% of inherited prelingual hearing impairment. Hearing loss is noted to be both phenotypically and genetically heterogeneous. Mutations in the TMPRSS3 gene, which encodes a transmembrane serine protease, are known to cause autosomal recessive non-syndromic hearing impairment DFNB8/10. In order to elucidate if the TMPRSS3 gene is responsible for ARNSHI in 80 Moroccan families with non-syndromic hearing impairment, the gene was sequenced using DNA samples from these families. Nineteen TMPRSS3 variants were found, nine are located in the exons among which six are missense and three are synonymous. The 10 remaining variations are located in non-coding regions. Missense variants analysis show that they do not have a significant pathogenic effect on protein while pathogenicity of some variant remains under discussion. Thus we show that the TMPRSS3 gene is not a major contributor to non-syndromic deafness in the Moroccan population."	"[Expression of TMPRSS3 in the rat cochlea following kanamycin ototoxicity]. To establish the kanamycin-induced deafness model in SD rats, and to investigate the expression and significance of transmembrane protease, serine 3 (TMPRSS3) in the cochlea following kanamycin ototoxicity. A total of 40 male SD rats were randomly divided into 4 groups. The experimental rats received intramuscular kanamycin sulfate for 3, 7, and 14 consecutive days, and the control group were treated with normal saline for 14 days. Auditory brainstem responses (ABR) were obtained before and after the kanamycin administration. The expression of TMPRSS3 in the cochlea was identified and detected by immunohistochemistry and Western blot. Kanamycin-induced deafness model in the SD rats was successfully established. ABR thresholds were increased and the expression of TMPRSS3 in the cochlea was reduced after the kanamycin injection (P&lt;0.01). TMPRSS3 may play an important role in normal cochlea function and involve in the process of aminoglycoside antibiotics induced deafness."	"[Expression of proteinase TMPRSS3 in mouse cochlea]. To observe the expression of proteinase transmembrane protease, serine 3 (TMPRSS3) in mouse cochlea, and to investigate the significance of TMPRSS3 in the inner ear. The protein expression of TMPRSS3 in C57/BL mouse cochlea was identified and detected by immunohistochemistry and immunofluorescence. Different cochlear tissues, such as spiral ganglion neurons, corti organ, stria vascularis and so on, were separated to detect the gene expression of TMPRSS3 by real-time fluorescence quantitative polymerase chain reaction (qPCR). The cochlear tissues with different ages were collected and the expression of TMPRSS3 mRNA was detected by qPCR. TMPRSS3 was mainly expressed in the spiral ganglion neurons, and there was TMPRSS3 mRNA in the cochlea in groups with different age. The expression level of TMPRSS3 mRNA was much weaker. The distribution of TMPRSS3 was observed in many regions of the mouse cochlea, but mainly in the spiral ganglion neurons. This indicates that TMPRSS3 may be involved in the physiological functional regulation of the spiral ganglion neurons."	"Genotype-phenotype correlation in DFNB8/10 families with TMPRSS3 mutations. In the present study, genotype-phenotype correlations in eight Dutch DFNB8/10 families with compound heterozygous mutations in TMPRSS3 were addressed. We compared the phenotypes of the families by focusing on the mutation data. The compound heterozygous variants in the TMPRSS3 gene in the present families included one novel variant, p.Val199Met, and four previously described pathogenic variants, p.Ala306Thr, p.Thr70fs, p.Ala138Glu, and p.Cys107Xfs. In addition, the p.Ala426Thr variant, which had previously been reported as a possible polymorphism, was found in one family. All affected family members reported progressive bilateral hearing impairment, with variable onset ages and progression rates. In general, the hearing impairment affected the high frequencies first, and sooner or later, depending on the mutation, the low frequencies started to deteriorate, which eventually resulted in a flat audiogram configuration. The ski-slope audiogram configuration is suggestive for the involvement of TMPRSS3. Our data suggest that not only the protein truncating mutation p.T70fs has a severe effect but also the amino acid substitutions p.Ala306Thr and p.Val199Met. A combination of two of these three mutations causes prelingual profound hearing impairment. However, in combination with the p.Ala426Thr or p.Ala138Glu mutations, a milder phenotype with postlingual onset of the hearing impairment is seen. Therefore, the latter mutations are likely to be less detrimental for protein function. Further studies are needed to distinguish possible phenotypic differences between different TMPRSS3 mutations. Evaluation of performance of patients with a cochlear implant indicated that this is a good treatment option for patients with TMPRSS3 mutations as satisfactory speech reception was reached after implantation."	"Novel TMPRSS3 variants in Pakistani families with autosomal recessive non-syndromic hearing impairment. Mutations in the TMPRSS3 gene are known to cause autosomal recessive non-syndromic hearing impairment (ARNSHI). After undergoing a genome scan, 10 consanguineous Pakistani families with ARNSHI were found to have significant or suggestive evidence of linkage to the TMPRSS3 region. In order to elucidate if the TMPRSS3 gene is responsible for ARNSHI in these families, the gene was sequenced using DNA samples from these families. Six TMPRSS3 variants were found to cosegregate in 10 families. None of these variants were detected in 500 control chromosomes. Four novel variants, three of which are missense [c.310G&gt;A (p.Glu104Lys), c.767C&gt;T (p.Ala256Val) and c.1273T&gt;C (p.Cys425Arg)] and one nonsense [c.310G&gt;T (p.Glu104Stop)], were identified. The pathogenicity of novel missense variants was investigated through bioinformatics analyses. Additionally, the previously reported deletion c.208delC (p.His70ThrfsX19) was identified in one family and the known mutation c.1219T&gt;C (p.Cys407Arg) was found in five families, which makes c.1219T&gt;C (p.Cys407Arg) as the most common TMPRSS3 mutation within the Pakistani population. Identification of these novel variants lends support to the importance of elements within the low-density lipoprotein receptor A (LDLRA) and serine protease domains in structural stability, ligand binding and proteolytic activity for proper TMPRSS3 function within the inner ear."	"Tmprss3, a transmembrane serine protease deficient in human DFNB8/10 deafness, is critical for cochlear hair cell survival at the onset of hearing. Mutations in the type II transmembrane serine protease 3 (TMPRSS3) gene cause non-syndromic autosomal recessive deafness (DFNB8/10), characterized by congenital or childhood onset bilateral profound hearing loss. In order to explore the physiopathology of TMPRSS3 related deafness, we have generated an ethyl-nitrosourea-induced mutant mouse carrying a protein-truncating nonsense mutation in Tmprss3 (Y260X) and characterized the functional and histological consequences of Tmprss3 deficiency. Auditory brainstem response revealed that wild type and heterozygous mice have normal hearing thresholds up to 5 months of age, whereas Tmprss3(Y260X) homozygous mutant mice exhibit severe deafness. Histological examination showed degeneration of the organ of Corti in adult mutant mice. Cochlear hair cell degeneration starts at the onset of hearing, postnatal day 12, in the basal turn and progresses very rapidly toward the apex, reaching completion within 2 days. Given that auditory and vestibular deficits often co-exist, we evaluated the balancing abilities of Tmprss3(Y260X) mice by using rotating rod and vestibular behavioral tests. Tmprss3(Y260X) mice effectively displayed mild vestibular syndrome that correlated histologically with a slow degeneration of saccular hair cells. In situ hybridization in the developing inner ear showed that Tmprss3 mRNA is localized in sensory hair cells in the cochlea and the vestibule. Our results show that Tmprss3 acts as a permissive factor for cochlear hair cells survival and activation at the onset of hearing and is required for saccular hair cell survival. This mouse model will certainly help to decipher the molecular mechanisms underlying DFNB8/10 deafness and cochlear function."	"Type II transmembrane serine protease (TTSP) deregulation in cancer. The Type II transmembrane serine proteases (TTSP) are a relatively newly identified family of proteolytic enzymes that have become the subject of intense scrutiny in the field of cancer research. Advances in genome screening technology have enabled the identification of putative members and the further characterization of existing members. The TTSPs are involved in a diverse range of physiological functions and new roles continue to be discovered. A large majority of these proteases appear to play crucial roles in the development of disease, especially cancer development and progression. This review presents the current knowledge of the biological role of those TTSPs that have been identified in the development and progression of human cancers."	"Screening of 38 genes identifies mutations in 62% of families with nonsyndromic deafness in Turkey. More than 60% of prelingual deafness is genetic in origin, and of these up to 95% are monogenic autosomal recessive traits. Causal mutations have been identified in 1 of 38 different genes in a subset of patients with nonsyndromic autosomal recessive deafness. In this study, we screened 49 unrelated Turkish families with at least three affected children born to consanguineous parents. Probands from all families were negative for mutations in the GJB2 gene, two large deletions in the GJB6 gene, and the 1555A&gt;G substitution in the mitochondrial DNA MTRNR1 gene. Each family was subsequently screened via autozygosity mapping with genomewide single-nucleotide polymorphism arrays. If the phenotype cosegregated with a haplotype flanking one of the 38 genes, mutation analysis of the gene was performed. We identified 22 different autozygous mutations in 11 genes, other than GJB2, in 26 of 49 families, which overall explains deafness in 62% of families. Relative frequencies of genes following GJB2 were MYO15A (9.9%), TMIE (6.6%), TMC1 (6.6%), OTOF (5.0%), CDH23 (3.3%), MYO7A (3.3%), SLC26A4 (1.7%), PCDH15 (1.7%), LRTOMT (1.7%), SERPINB6 (1.7%), and TMPRSS3 (1.7%). Nineteen of 22 mutations are reported for the first time in this study. Unknown rare genes for deafness appear to be present in the remaining 23 families."	"High-throughput detection of mutations responsible for childhood hearing loss using resequencing microarrays. Despite current knowledge of mutations in 45 genes that can cause nonsyndromic sensorineural hearing loss (SNHL), no unified clinical test has been developed that can comprehensively detect mutations in multiple genes. We therefore designed Affymetrix resequencing microarrays capable of resequencing 13 genes mutated in SNHL (GJB2, GJB6, CDH23, KCNE1, KCNQ1, MYO7A, OTOF, PDS, MYO6, SLC26A5, TMIE, TMPRSS3, USH1C). We present results from hearing loss arrays developed in two different research facilities and highlight some of the approaches we adopted to enhance the applicability of resequencing arrays in a clinical setting. We leveraged sequence and intensity pattern features responsible for diminished coverage and accuracy and developed a novel algorithm, sPROFILER, which resolved &gt;80% of no-calls from GSEQ and allowed 99.6% (range: 99.2-99.8%) of sequence to be called, while maintaining overall accuracy at &gt;99.8% based upon dideoxy sequencing comparison. Together, these findings provide insight into critical issues for disease-centered resequencing protocols suitable for clinical application and support the use of array-based resequencing technology as a valuable molecular diagnostic tool for pediatric SNHL and other genetic diseases with substantial genetic heterogeneity."	"Five novel loci for inherited hearing loss mapped by SNP-based homozygosity profiles in Palestinian families. In communities with high rates of consanguinity and consequently high prevalence of recessive phenotypes, homozygosity mapping with SNP arrays is an effective approach for gene discovery. In 20 Palestinian kindreds with prelingual nonsyndromic hearing loss, we generated homozygosity profiles reflecting linkage to the phenotype. Family sizes ranged from small nuclear families with two affected children, one unaffected sibling, and parents to multigenerational kindreds with 12 affected relatives. By including unaffected parents and siblings and screening 250 K SNP arrays, even small nuclear families yielded informative profiles. In 14 families, we identified the allele responsible for hearing loss by screening a single candidate gene in the longest homozygous region. Novel alleles included missense, nonsense, and splice site mutations of CDH23, MYO7A, MYO15A, OTOF, PJVK, Pendrin/SLC26A4, TECTA, TMHS, and TMPRSS3, and a large genomic deletion of Otoancorin (OTOA). All point mutations were rare in the Palestinian population (zero carriers in 288 unrelated controls); the carrier frequency of the OTOA genomic deletion was 1%. In six families, we identified five genomic regions likely to harbor novel genes for human hearing loss on chromosomes 1p13.3 (DFNB82), 9p23-p21.2/p13.3-q21.13 (DFNB83), 12q14.3-q21.2 (DFNB84; two families), 14q23.1-q31.1, and 17p12-q11.2 (DFNB85)."	"Coexistence of Unverricht-Lundborg disease and congenital deafness: molecular resolution of a complex comorbidity. We report on genetic analysis of a complex condition in a Serbian family of four siblings, wherein two had progressive myoclonic epilepsy (PME) and congenital deafness (CD), one had isolated congenital deafness (ICD), and one was healthy. Molecular diagnosis performed by Southern blotting confirmed Unverricht-Lundborg disease in the available sibling with PME/CD. In the sibling with ICD (heterozygote for expansion mutation in CSTB) we demonstrated recombination event between the D21S2040 marker and the CSTB gene and identified c.207delC (p.T70Xfs) mutation in the fourth exon of the transmembrane protease, serine-3 (TMPRSS3) gene (maps in close proximity to CSTB), responsible for nonsyndromic deafness in the sibling with PME/CD as well. To the best of our knowledge this is the first genetic confirmation of the coexistence of these two mutations."	"Induction of human tumor-associated differentially expressed gene-12 (TADG-12/TMPRSS3)-specific cytotoxic T lymphocytes in human lymphocyte antigen-A2.1-positive healthy donors and patients with advanced ovarian cancer. Tumor-associated differentially expressed gene-12 (TADG-12) is a serine protease recently found highly differentially expressed in epithelial ovarian cancer. The goal of this study was to identify potential immunogenic peptides derived from TADG-12 for immunotherapy of ovarian carcinoma. A bioinformatics approach (ie, the BIMAS algorithm, National Institutes of Health, http://bimas.dcrt.nih.gov/molbio/hla_bind) was used to identify multiple immunogenic peptides derived from TADG-12 that bind to human leukocyte antigen-A2.1 and elicit peptide-specific human cytotoxic T lymphocyte (CTL) responses in healthy individuals and in patients with advanced stage ovarian cancer. CD8+ CTL populations generated against 5 TADG-12-derived peptides were consistently able to induce lysis of autologous peptide-loaded target cells above background. Importantly, TADG-12 YLPKSWTIQV peptide-specific CTLs from healthy donors and ovarian cancer patients were found to effectively kill ovarian cancer cells naturally expressing TADG-12. Cytotoxicity was significantly inhibited by anti-human lymphocyte antigen (HLA)-A2.1 (BB7-2) and anti-HLA class I (W6 of 32) monoclonal antibodies, whereas natural killer-sensitive K562 cells were not lysed. TADG-12 YLPKSWTIQV peptide-specific CTL precursor frequency was low in peripheral blood leukocytes of normal donors and ovarian cancer patients, as determined by interferon-gamma production in enzyme-linked immunosorbent spot-forming cell assays. Intracellular cytokine expression measured by flow cytometry after OKT-3 monoclonal antibody stimulation showed a type 1 cytokine profile in YLPKSWTIQV peptide-specific CTLs. The TADG-12 YLPKSWTIQV peptide is an immunogenic epitope in ovarian tumors and may represent an attractive target for immunotherapy of ovarian cancer. These data may pave the way for TADG-12 peptide-derived cell-based therapy, including dendritic cell immunotherapy, for the vaccination of ovarian cancer patients harboring chemotherapy-resistant or residual disease."	"Cochlear molecules and hereditary deafness. Remarkable progress has been made in the past decade in identifying genes involved with deafness in man and mouse. The identification of these genes and functional analysis of the proteins they encode are paving the way towards a better understanding of the physiology and pathophysiology of the auditory system. Given the complexity of auditory transduction and diversity of cochlear structures, it is not surprising that an estimate of at least 1 percent of human protein-coding genes are involved in perception of sound. Over 400 distinct syndromes of which hearing loss is a component have been reported (www.ncbi.nlm.nih.gov/omim). Approximately 113 loci for monogenic disorders for which hearing loss is the only manifestation and therefore is nonsyndromic, have been mapped to the human genome (http:webhost.ua.ac.be/hhh/). As of August 2007, there are approximately 46 genes identified from these loci. Here, we review some of the major advances in our knowledge of auditory function within an evolving understanding of the structure and regulation of the machinery of hearing."	"TMPRSS3, a type II transmembrane serine protease mutated in non-syndromic autosomal recessive deafness. Recently, we and others have shown that mutations in TMPRSS3 were responsible for autosomal recessive non-syndromic hearing loss. TMPRSS3 is a member of the Type II Transmembrane Serine Protease (TTSP) family and encodes for a protease that also contains LDLRA (low-density lipoprotein receptor class A) and SRCR (scavenger receptor cysteine rich) domains. Fourteen pathogenic mutations, which occur not only in the catalytic domain but also in the LDLRA and SRCR domains, have been identified to date that cause the DFNB8/10 forms of deafness. In vitro experiments demonstrated that TMPRSS3 mutants were proteolytically inactive indicating that TMPRSS3 protease activity is critical for normal auditory function. However, how missense mutations in the LDLRA and SRCR domains affect the proteolytic activity of TMPRSS3 remains to be elucidated. Although the role of TMPRSS3 in the auditory system is currently not completely understood, it has been shown to regulate the activity of the ENaC sodium channel in vitro and could therefore participate in the regulation of sodium concentration in the cochlea. TMPRSS3 mutations are not a common cause of hereditary deafness, the elucidation of its function is nevertheless important for better understanding of hearing, and provide biological targets for therapeutic interventions."	"An integrated genetic and functional analysis of the role of type II transmembrane serine proteases (TMPRSSs) in hearing loss. Building on our discovery that mutations in the transmembrane serine protease, TMPRSS3, cause nonsyndromic deafness, we have investigated the contribution of other TMPRSS family members to the auditory function. To identify which of the 16 known TMPRSS genes had a strong likelihood of involvement in hearing function, three types of biological evidence were examined: 1) expression in inner ear tissues; 2) location in a genomic interval that contains a yet unidentified gene for deafness; and 3) evaluation of hearing status of any available Tmprss knockout mouse strains. This analysis demonstrated that, besides TMPRSS3, another TMPRSS gene was essential for hearing and, indeed, mice deficient for Hepsin (Hpn) also known as Tmprss1 exhibited profound hearing loss. In addition, TMPRSS2, TMPRSS5, and CORIN, also named TMPRSS10, showed strong likelihood of involvement based on their inner ear expression and mapping position within deafness loci PKSR7, DFNB24, and DFNB25, respectively. These four TMPRSS genes were then screened for mutations in affected members of the DFNB24 and DFNB25 deafness families, and in a cohort of 362 sporadic deaf cases. This large mutation screen revealed numerous novel sequence variations including three potential pathogenic mutations in the TMPRSS5 gene. The mutant forms of TMPRSS5 showed reduced or absent proteolytic activity. Subsequently, TMPRSS genes with evidence of involvement in deafness were further characterized, and their sites of expression were determined. Tmprss1, 3, and 5 proteins were detected in spiral ganglion neurons. Tmprss3 was also present in the organ of Corti. TMPRSS1 and 3 proteins appeared stably anchored to the endoplasmic reticulum membranes, whereas TMPRSS5 was also detected at the plasma membrane. Collectively, these results provide evidence that TMPRSS1 and TMPRSS3 play and TMPRSS5 may play important and specific roles in hearing."	"Mice deficient for the type II transmembrane serine protease, TMPRSS1/hepsin, exhibit profound hearing loss. Defective proteolysis has been implicated in hearing loss through the discovery of mutations causing autosomal recessive nonsyndromic deafness in a type II transmembrane serine protease gene, TMPRSS3. To investigate their physiological function and the contribution of this family of proteases to the auditory function, we analyzed the hearing status of mice deficient for hepsin, also known as TMPRSS1. These mice exhibited profound hearing loss with elevated hearing thresholds compared with their heterozygous and wild-type littermates. Their cochleae showed abnormal tectorial membrane development, reduction in fiber compaction in the peripheral portion of the auditory nerve, and decreased expression of the myelin proteins myelin basic protein and myelin protein zero. In addition, reduced level of the large conductance voltage- and Ca(2+)-activated K(+) channel was detected in the sensory hair cells of Tmprss1-null mice. We examined thyroid hormone levels in Tmprss1-deficient mice, as similar cochlear defects have been reported in animal models of hypothyroidism, and found significantly reduced free thyroxine levels. These data show that TMPRSS1 is required for normal auditory function. Hearing impairment present in Tmprss1-null mice is characterized by a combination of various structural, cellular, and molecular abnormalities that are likely to affect different cochlear processes."	"Antibodies to selected minor target antigens in patients with anti-neutrophil cytoplasmic antibodies (ANCA). In patients with anti-neutrophil cytoplasmic antibodies (ANCA)-associated vasculitis, indirect immunofluorescence (IF) distinguishes between cytoplasmic (C-ANCA) and perinuclear (P-ANCA) neutrophil staining patterns. In patients with primary systemic vasculitis such as Wegener's granulomatosis, microscopic polyangiitis and Churg-Strauss syndrome, these IF staining patterns correspond broadly with antibodies to the two major antigens: the C-ANCA pattern is associated generally with antibodies to serine protease 3 (PR3) and the P-ANCA pattern with antibodies to myeloperoxidase (MPO). However, some sera positive for ANCA by IF are negative for anti-PR3 and anti-MPO antibodies, suggesting the presence of antibodies to minor antigens of PMN granules. We tested sera from a previously well-defined clinical cohort of patients for antibodies to four possible minor antigens: bactericidal permeability increasing protein, elastase, cathepsin G and lactoferrin. IF-positive (+) sera had significantly higher antibody frequencies to the minor antigens than did the IF-negative (-) sera (P &lt; 0.01). Patients with IF(+) PR3(-)MPO(-) sera showed the most varied reactivity to the minor antigens. Among the IF(+) groups, the IF(+) PR3(+)/MPO(-) sera showed the lowest reactivity to the minor antigens. Patients with well-defined ANCA specificities, e.g. the PR3-ANCA response associated with Wegener's granulomatosis, are less likely than are other patient subsets to have antibodies to minor antigen targets. Autoantibodies to these minor antigens contribute to the overall pattern of ANCA identified by IF and help to explain why the correlation between IF and enzyme immunoassays show discrepancies. While the pathophysiological significance of antibodies to minor target antigens needs further evaluation, they may be markers of inflammation associated with disease processes."	"Autosomal recessive postlingual hearing loss (DFNB8): compound heterozygosity for two novel TMPRSS3 mutations in German siblings. Mutations in the transmembrane protease, serine 3 (TMPRSS3) gene, encoding a transmembrane serine protease, cause autosomal recessive deafness childhood (DFNB8) or congenital onset (DFNB10). TMPRSS3 mutations have been mainly identified in patients from Asian and Mediterranean countries and seem to be a rare finding in the Northern European population so far. The identification of two novel pathogenic TMPRSS3 mutations (c.646C--&gt;T - R216C; c.916G--&gt;A - A306T) is described in four affected siblings of German origin with postlingual hearing loss, treated by bilateral cochlear implantation with good results. Although TMPRSS3 mutations are supposed to be a rare cause of autosomal recessive hearing loss, in families with postlingual disease onset TMPRSS3 is the most favourable candidate gene after exclusion of GJB2 mutations."	"No evidence of hearing loss in pseudohypoaldosteronism type 1 patients. The fact that pseudohypoaldosteronism type 1 (PHA-1) patients with a defect in the alpha subunit of epithelial sodium channels (ENaC) in the cochlea have normal hearing suggests compensation by alternative sodium transport mechanisms. Consequently, hearing loss due to defective cochlear transmembrane serine protease TMPRSS3 activity is likely to be related to its effect on proneurotrophin cleavage, indicating an action on neurological components of hearing. The normal hearing of PHA-1 patients with affected mineralocorticoid receptors, together with experimental results in animals, indicates that the mineralocorticoid aldosterone is not the most crucial regulator of sodium transport in the cochlea. Profound hearing loss has been observed in patients with a defect in transmembrane serine protease TMPRSS3, the presumed activator of ENaCs. Renal ENaCs and their regulators, such as the mineralocorticoid receptors, are present in the cochlear structures involved in hearing. The aim of this study was to investigate whether PHA-1 patients with defects in these channels or regulators suffer from hearing impairment. Pure-tone audiometry was performed in four cases with PHA-1 due to mutations in alphaENaC (n=2) or mineralocorticoid receptor (n=2). All examined cases had normal hearing at all tested frequencies."	"Genomic analysis of a heterogeneous Mendelian phenotype: multiple novel alleles for inherited hearing loss in the Palestinian population. Recessively inherited phenotypes are frequent in the Palestinian population, as the result of a historical tradition of marriages within extended kindreds, particularly in isolated villages. In order to characterise the genetics of inherited hearing loss in this population, we worked with West Bank schools for the deaf to identify children with prelingual, bilateral, severe to profound hearing loss not attributable to infection, trauma or other known environmental exposure. Of 156 families enrolled, hearing loss in 17 families (11 per cent) was due to mutations in GJB2 (connexin 26), a smaller fraction of GJB2-associated deafness than in other populations. In order to estimate how many different genes might be responsible for hearing loss in this population, we evaluated ten families for linkage to all 36 known human autosomal deafness-related genes, fully sequencing hearing-related genes at any linked sites in informative relatives. Four families harboured four novel alleles of TMPRSS3 (988DeltaA = 352stop), otoancorin (1067A &gt; T = D356V) and pendrin (716T &gt; A = V239D and 1001G &gt; T = 346stop). In each family, all affected individuals were homozygous for the critical mutation. Each allele was specific to one or a few families in the cohort; none were widespread. Since epidemiological tests of association of mutations with deafness were not feasible for such rare alleles, we used functional and bioinformatics approaches to evaluate their consequences. In six other families, hearing loss was not linked to any known gene, suggesting that these families harbour novel genes responsible for this phenotype. We conclude that inherited hearing loss is highly heterogeneous in this population, with most extended families acting as genetic isolates in this context. We also conclude that the same genes are responsible for hearing loss in this population as elsewhere, so that gene discovery in these families informs the genetics of hearing loss worldwide."	"Assessment of the genetic causes of recessive childhood non-syndromic deafness in the UK - implications for genetic testing. Approximately one in 2000 children is born with a genetic hearing impairment, mostly inherited as a non-syndromic, autosomal recessive trait, for which more than 30 different genes have been identified. Previous studies have shown that one of these genes, connexin 26 (GJB2), accounts for 30-60% of such deafness, but the relative contribution of the many other genes is not known, especially in the outbred UK population. This lack of knowledge hampers the development of diagnostic genetic services for deafness. In an effort to determine the molecular aetiology of deafness in the population, 142 sib pairs with early-onset, non-syndromic hearing impairment were recruited. Those in whom deafness could not be attributed to GJB2 mutations were investigated further for other mapped genes. The genetic basis of 55 cases (38.7%) was established, 33.1% being due to mutations in the GJB2 gene and 3.5% due to mutations in SLC26A4. None of the remaining 26 loci investigated made a significant contribution to deafness in a Caucasian population. We suggest that screening the GJB2 and SLC26A4 genes should form the basis of any genetic testing programme for childhood deafness and highlight a number of important issues for consideration and future work."	"Cluster analysis of S100 gene expression and genes correlating to psoriasin (S100A7) expression at different stages of breast cancer development. Gene expression patterns in ductal carcinoma in situ (DCIS) and invasive and metastatic breast tumors have been determined using serial analysis of gene expression (SAGE). The purpose of this approach was to identify biologically and clinically meaningful subgroups of DCIS with a high risk of progression to invasive disease. The analyses have led to the identification of several differentially expressed genes, such as HIN-1, dermcidin and S100A7 (psoriasin). The aim of the present study was further to delineate the expression profile of S100 genes using information from 22 breast epithelial SAGE libraries. We demonstrated the down-regulation of S100A6 and S100A10 in breast cancer, irrespective of pathological stage. S100P and S100Z were both up-regulated in cancer; whereas S100A7, S100A8 and S100A9 were strongly up-regulated only in DCIS. The hierarchical clustering of S100 gene expression in these 22 libraries revealed two major groups with distinguishable S100 gene expression profiles. One of them was characterized by the high concomitant expression of S100A7, S100A8 and S100A9. Using SAGE informatics, we found 21 genes with a high positive correlation to S100A7 expression in libraries representing different categories of tissues archived at SAGE Genie, suggesting a function of psoriasin that is not tissue specific. Like S100A7, several of these genes displayed cation-binding properties. We also report the strong correlation in the breast epithelial SAGE libraries between the expression of S100A7 and genes reported as being up-regulated in DCIS, as well as in the inflammatory skin disorder, psoriasis; including RGS5, UPK1A, TMPRSS3, S100A9, p53, SCCA1, SCCA2 and KRT17."	"Recurrent fusion of TMPRSS2 and ETS transcription factor genes in prostate cancer. Recurrent chromosomal rearrangements have not been well characterized in common carcinomas. We used a bioinformatics approach to discover candidate oncogenic chromosomal aberrations on the basis of outlier gene expression. Two ETS transcription factors, ERG and ETV1, were identified as outliers in prostate cancer. We identified recurrent gene fusions of the 5' untranslated region of TMPRSS2 to ERG or ETV1 in prostate cancer tissues with outlier expression. By using fluorescence in situ hybridization, we demonstrated that 23 of 29 prostate cancer samples harbor rearrangements in ERG or ETV1. Cell line experiments suggest that the androgen-responsive promoter elements of TMPRSS2 mediate the overexpression of ETS family members in prostate cancer. These results have implications in the development of carcinomas and the molecular diagnosis and treatment of prostate cancer."	"Medicine. Fused genes may help explain the origins of prostate cancer. NA"	"A new locus for nonsyndromic deafness DFNB51 maps to chromosome 11p13-p12. NA"	"Coexistence of anti-glomerular basement membrane antibodies and myeloperoxidase-ANCAs in crescentic glomerulonephritis. In a substantial proportion of patients with crescentic glomerulonephritis (CGN), both anti-glomerular basement membrane (GBM) antibodies and antineutrophil cytoplasmic antibodies (ANCAs) with specificity for myeloperoxidase (MPO-ANCA) are detected. In the present study, we questioned whether histological and clinical features of patients with both ANCA and anti-GBM antibodies differ from those of patients with either ANCA or anti-GBM alone. We reviewed the Limburg renal biopsy registry (1978 to 2003; n = 1,373) for cases of CGN. The presence of linear fluorescence on renal biopsy and the presence of ANCA and/or anti-GBM antibodies were measured. Subsequently, we assessed patient characteristics and follow-up and compared histological findings among the different groups. We identified 46 MPO-ANCA-positive, 10 double-positive, and 13 anti-GBM-positive patients. Mean ages were 63, 64, and 52 years (P = 0.04), and serum creatinine levels were 5.0, 10.3, and 9.6 mg/dL (445, 910, and 850 micromol/L), respectively (P = 0.01). Granulomatous periglomerular inflammation was found in either MPO-ANCA- or double-positive patients, but not in anti-GBM-positive patients with CGN without MPO-ANCAs. Patient survival among the 3 groups was different, although not statistically significant (log rank P = 0.17, with 75%, 79%, and 100% alive at 1 year, respectively). Renal survival analysis showed significant differences among the 3 groups (P = 0.04, with 65%, 10%, and 15% off dialysis therapy at 1 year, respectively). In patients with both anti-GBM antibodies and MPO-ANCAs, histological findings differ from those of patients with anti-GBM antibodies only. However, renal survival in these patients is not better than that in anti-GBM-positive patients and is worse compared with patients with MPO-ANCAs only."	"A novel TMPRSS3 missense mutation in a DFNB8/10 family prevents proteolytic activation of the protein. Pathogenic mutations in TMPRSS3, which encodes a transmembrane serine protease, cause non-syndromic deafness DFNB8/10. Missense mutations map in the low density-lipoprotein receptor A (LDLRA), scavenger-receptor cysteine-rich (SRCR), and protease domains of the protein, indicating that all domains are important for its function. TMPRSS3 undergoes proteolytic cleavage and activates the ENaC sodium channel in a Xenopus oocyte model system. To assess the importance of this gene in non-syndromic childhood or congenital deafness in Turkey, we screened for mutations affected members of 25 unrelated Turkish families. The three families with the highest LOD score for linkage to chromosome 21q22.3 were shown to harbor P404L, R216L, or Q398X mutations, suggesting that mutations in TMPRSS3 are a considerable contributor to non-syndromic deafness in the Turkish population. The mutant TMPRSS3 harboring the novel R216L missense mutation within the predicted cleavage site of the protein fails to undergo proteolytic cleavage and is unable to activate ENaC, thus providing evidence that pre-cleavage of TMPRSS3 is mandatory for normal function."	"Characterization of a new full length TMPRSS3 isoform and identification of mutant alleles responsible for nonsyndromic recessive deafness in Newfoundland and Pakistan. Mutant alleles of TMPRSS3 are associated with nonsyndromic recessive deafness (DFNB8/B10). TMPRSS3 encodes a predicted secreted serine protease, although the deduced amino acid sequence has no signal peptide. In this study, we searched for mutant alleles of TMPRSS3 in families from Pakistan and Newfoundland with recessive deafness co-segregating with DFNB8/B10 linked haplotypes and also more thoroughly characterized the genomic structure of TMPRSS3. We enrolled families segregating recessive hearing loss from Pakistan and Newfoundland. Microsatellite markers flanking the TMPRSS3 locus were used for linkage analysis. DNA samples from participating individuals were sequenced for TMPRSS3. The structure of TMPRSS3 was characterized bioinformatically and experimentally by sequencing novel cDNA clones of TMPRSS3. We identified mutations in TMPRSS3 in four Pakistani families with recessive, nonsyndromic congenital deafness. We also identified two recessive mutations, one of which is novel, of TMPRSS3 segregating in a six-generation extended family from Newfoundland. The spectrum of TMPRSS3 mutations is reviewed in the context of a genotype-phenotype correlation. Our study also revealed a longer isoform of TMPRSS3 with a hitherto unidentified exon encoding a signal peptide, which is expressed in several tissues. Mutations of TMPRSS3 contribute to hearing loss in many communities worldwide and account for 1.8% (8 of 449) of Pakistani families segregating congenital deafness as an autosomal recessive trait. The newly identified TMPRSS3 isoform e will be helpful in the functional characterization of the full length protein."	"The transmembrane protease serine (TMPRSS3/TADG-12) D variant: a potential candidate for diagnosis and therapeutic intervention in ovarian cancer. The purpose of this study was to examine the expression of splice variants of the TADG-12 (TMPRSS3) gene in normal ovarian epithelial tissue and ovarian carcinoma and further to associate the expression of TADG-12 variant with clinicopathologic characteristics if such an association exists. TADG-12D variant expression was examined by semiquantitative PCR in 50 ovarian tumors [41 adenocarcinomas, 3 low malignant potential (LMP) tumors, and 6 adenomas] and 7 normal ovaries. In carcinomas as well as LMP tumors and adenomas, TADG-12D variant mRNA expression was significantly elevated compared to that in normal ovary samples. TADG-12 has several splice variants, one of which we originally identified and 3 others identified by Scott et al. [Nat Genet 2001;27:59-63]. We previously examined the expression of TADG-12V variant and here we confirm the overexpression of TADG-12D variant in ovarian carcinomas. Moreover, TADG-12D variant mRNA expression level in carcinomas was significantly elevated compared to that in adenomas and TADG-12D variant mRNA expression level in advanced clinical stage diseases was significantly higher than that in early stage diseases in ovarian carcinomas. With regard to histological type, TADG-12D variant mRNA expression level in mucinous adenocarcinomas was significantly higher than those in the other tissue subtypes. These features imply that TADG-12D variant expression may play an important role in ovarian cancer development and progression, and this variant may be useful both as a molecular target for therapy and/or a diagnostic marker."	"Highly expressed genes in pancreatic ductal adenocarcinomas: a comprehensive characterization and comparison of the transcription profiles obtained from three major technologies. When using gene expression profiling to understand human tumors, one is often confronted with long lists of genes that need to be further categorized into meaningful data. We performed a comprehensive evaluation and comparison of gene expression profiles obtained from pancreatic cancers to determine those genes most differentially expressed and thus with the most promise for translation into clinically useful targets. cDNA was prepared from 50 samples of normal pancreas or duodenal mucosal tissues, 7 samples of chronic pancreatitis, and 39 samples of pancreas cancer tissues or cancer cell lines and hybridized to the complete Affymetrix Human Genome U133 GeneChip set (arrays U133A and U133B) for simultaneous analysis of 45,000 fragments corresponding to 33,000 known genes and 6,000 expressed sequence tags. Genes expressed at levels at least 3-fold greater in the pancreatic cancers as compared with nonneoplastic tissues were identified. Three hundred seventy-seven Affymetrix fragments were identified as having &gt; or = 3-fold expression levels in pancreas cancer specimens as compared with nonneoplastic tissues, corresponding to 234 known genes. Serial analysis of gene expression libraries (http://www.ncbi.nlm.nih.gov/SAGE/) of two normal pancreatic ductal cell cultures (HX and H126) were used to exclude 17 genes with high expression levels in the normal duct epithelium (more than five tags/library). Of the remaining 217 known genes, 75 have been previously reported as highly expressed in pancreatic cancers, while the remaining 142 genes are novel. We used principal components analysis (PCA) to identify the genes among these 217 identified as the most differentially expressed and specific to pancreatic cancer tissues or cell lines. Among the most differentially expressed genes identified by PCA were Mesothelin, Muc4, Muc5A/C, Kallikrein 10, Transglutaminase 2, Fascin, TMPRSS3 and stratifin. The differential expression identified by PCA for these genes indicates they are among the more attractive targets for novel therapeutic targets, tumor markers, or as a means of screening pancreatic cancer samples for information regarding tumor classification or potential therapeutic responses. Our findings were also compared in detail to the previously reported findings of highly expressed genes in other studies of global gene expression in pancreatic cancers. We found that robust changes in gene expression were most often identified by more than one gene expression platform. Forty genes were identified by more than one method (U133 oligonucleotide arrays, cDNA arrays or serial analysis of gene expression), and 6 of these genes were identified by all three methods. Our findings identify a novel set of genes as highly expressed in pancreatic cancer, validate the differential expression of previously reported genes, and provide additional support for those genes most differentially expressed to be translated into clinically useful targets."	"Pathogenic mutations but not polymorphisms in congenital and childhood onset autosomal recessive deafness disrupt the proteolytic activity of TMPRSS3. NA"	"[The integrated database for mutations in disease-causing genes: Mutation View/KMDB]. NA"	"The transmembrane serine protease (TMPRSS3) mutated in deafness DFNB8/10 activates the epithelial sodium channel (ENaC) in vitro. TMPRSS3 encodes a transmembrane serine protease that contains both LDLRA and SRCR domains and is mutated in non-syndromic autosomal recessive deafness (DFNB8/10). To study its function, we cloned the mouse ortholog which maps to Mmu17, which is structurally similar to the human gene and encodes a polypeptide with 88% identity to the human protein. RT-PCR and RNA in situ hybridization on rat and mouse cochlea revealed that Tmprss3 is expressed in the spiral ganglion, the cells supporting the organ of Corti and the stria vascularis. RT-PCR on mouse tissues showed expression in the thymus, stomach, testis and E19 embryos. Transient expression of wild-type or tagged TMPRSS3 protein showed a primary localization in the endoplasmic reticulum. The epithelial amiloride-sensitive sodium channel (ENaC), which is expressed in many sodium-reabsorbing tissues including the inner ear and is regulated by membrane-bound channel activating serine proteases (CAPs), is a potential substrate of TMPRSS3. In the Xenopus oocyte expression system, proteolytic processing of TMPRSS3 was associated with increased ENaC mediated currents. In contrast, 6 TMPRSS3 mutants (D103G, R109W, C194F, W251C, P404L, C407R) causing deafness and a mutant in the catalytic triad of TMPRSS3 (S401A), failed to undergo proteolytic cleavage and activate ENaC. These data indicate that important signaling pathways in the inner ear are controlled by proteolytic cleavage and suggest: (i) the existence of an auto-catalytic processing by which TMPRSS3 would become active, and (ii) that ENaC could be a substrate of TMPRSS3 in the inner ear."	"Hereditary deafness and phenotyping in humans. Hereditary deafness has proved to be extremely heterogeneous genetically with more than 40 genes mapped or cloned for non-syndromic dominant deafness and 30 for autosomal recessive non-syndromic deafness. In spite of significant advances in the understanding of the molecular basis of hearing loss, identifying the precise genetic cause in an individual remains difficult. Consequently, it is important to exclude syndromic causes of deafness by clinical and special investigation and to use all available phenotypic clues for diagnosis. A clinical approach to the aetiological investigation of individuals with hearing loss is suggested, which includes ophthalmology review, renal ultrasound scan and neuro-imaging of petrous temporal bone. Molecular screening of the GJB2 (Connexin 26) gene should be undertaken in all cases of non-syndromic deafness where the cause cannot be identified, since it is a common cause of recessive hearing impairment, the screening is straightforward, and the phenotype unremarkable. By the same token, mitochondrial inheritance of hearing loss should be considered in all multigeneration families, particularly if there is a history of exposure to aminoglycoside antibiotics, since genetic testing of specific mitochondrial genes is technically feasible. Most forms of non-syndromic autosomal recessive hearing impairment cause a prelingual hearing loss, which is generally severe to profound and not associated with abnormal radiology. Exceptions to this include DFNB2 (MYO7A), DFNB8/10 (TMPRSS3) and DFNB16 (STRC) where age of onset may sometimes be later on in childhood, DFNB4 (SLC26A4) where there may be dilated vestibular aqueducts and endolymphatic sacs, and DFNB9 (OTOF) where there may also be an associated auditory neuropathy. Unusual phenotypes in autosomal dominant forms of deafness, include low frequency hearing loss in DFNA1 (HDIA1) and DFNA6/14/38 (WFS1), mid-frequency hearing loss in DFNA8/12 (TECTA), DFNA13 (COL11A2) and vestibular symptoms and signs in DFNA9 (COCH) and sometimes in DFNA11 (MYO7A). Continued clinical evaluation of types and course of hearing loss and correlation with genotype is important for the intelligent application of molecular testing in the next few years."	"Mutations in the TMPRSS3 gene are a rare cause of childhood nonsyndromic deafness in Caucasian patients. Two loci for nonsyndromic recessive deafness located on chromosome 21q22.3 have previously been reported, DFNB8 and DFNB10. Recently a gene which encodes a transmembrane serine protease, TMPRSS3 or ECHOS1, was found to be responsible for both the DFNB8 and DFNB10 phenotypes. To determine the contribution of TMPRSS3 mutations in the general congenital/childhood nonsyndromic deaf population we performed mutation analysis of the TMPRSS3 gene in 448 unrelated deaf patients from Spain, Italy, Greece, and Australia who did not have the common 35delG GJB2 mutation. From the 896 chromosomes studied we identified two novel pathogenic mutations accounting for four mutant alleles and at least 16 nonpathogenic sequence variants. The pathogenic mutations were a 1-bp deletion resulting in a frameshift and an amino acid substitution in the LDLRA domain of TMPRSS3. From this and another study we estimate the frequency of TMPRSS3 mutations in our sample as 0.45%, and approximately 0.38% in the general Caucasian childhood deaf population. However, TMPRSS3 is still an important contributor to genetic deafness in populations with large consanguineous families."	"[Genome analysis and isolation of disease genes on human chromosomes 22 and 21]. NA"	"Spinesin/TMPRSS5, a novel transmembrane serine protease, cloned from human spinal cord. A cDNA encoding a novel serine protease, which we designated spinesin, has been cloned from human spinal cord. The longest open reading frame was 457 amino acids. A homology search revealed that the human spinesin gene was located at chromosome 11q23 and contained 13 exons, the gene structure being similar to that of TMPRSS3 whose gene is also located on 11q23. Spinesin has a simple type II transmembrane structure, consisting of, from the N terminus, a short cytoplasmic domain, a transmembrane domain, a stem region containing a scavenger receptor-like domain, and a serine protease domain. Unlike TMPRSS3, it carries no low density lipoprotein receptor domain in the stem region. The extracellular region carries five N-glycosylation sites. The sequence of the protease domain carried the essential triad His, Asp, and Ser and showed some similarity to that of TMPRSS2, hepsin, HAT, MT-SP1, TMPRSS3, and corin, sharing 45.5, 41.9, 41.3, 40.3, 39.1, and 38.5% identity, respectively. The putative mature protease domain preceded by H(6)DDDDK was produced in Escherichia coli, purified, and successfully activated by immobilized enterokinase. Its optimal pH was about 10. It cleaved synthetic substrates for trypsin, which is inhibited by p-amidinophenylmethanesulfonyl fluoride hydrochloride but not by antipain or leupeptin. Northern blot analysis against mRNA from human tissues including liver, lung, placenta, and heart demonstrated a specific expression of spinesin mRNA in the brain. Immunohistochemically, spinesin was predominantly expressed in neurons, in their axons, and at the synapses of motoneurons in the spinal cord. In addition, some oligodendrocytes were clearly stained. These results indicate that spinesin is transported to the synapses through the axons after its synthesis in the cytoplasm and may play important roles at the synapses. Further analyses are required to clarify its roles at the synapses and in oligodendrocytes."	"Novel missense mutations of TMPRSS3 in two consanguineous Tunisian families with non-syndromic autosomal recessive deafness. Recently the TMPRSS3 gene, which encodes a transmembrane serine protease, was found to be responsible for two non-syndromic recessive deafness loci located on human chromosome 21q22.3, DFNB8 and DFNB10. We found evidence for linkage to the DFNB8/10 locus in two unrelated consanguineous Tunisian families segregating congenital autosomal recessive sensorineural deafness. The audiometric tests showed a loss of hearing greater than 70 dB, in all affected individuals of both families. Mutation screening of TMPRSS3 revealed two novel missense mutations, W251C and P404L, altering highly conserved amino acids of the serine protease domain. Both mutations were not found in 200 control Tunisian chromosomes. The detection of naturally-occurring TMPRSS3 missense mutations in deafness families identifies functionally important amino acids. Comparative protein modeling of the TMPRSS3 protease domain predicted that W251C might lead to a structural rearrangement affecting the active site H257 and that P404L might alter the geometry of the active site loop and therefore affect the serine protease activity."	"Novel mutations of TMPRSS3 in four DFNB8/B10 families segregating congenital autosomal recessive deafness. NA"	"Insertion of beta-satellite repeats identifies a transmembrane protease causing both congenital and childhood onset autosomal recessive deafness. Approximately 50% of childhood deafness is caused by mutations in specific genes. Autosomal recessive loci account for approximately 80% of nonsyndromic genetic deafness. Here we report the identification of a new transmembrane serine protease (TMPRSS3; also known as ECHOS1) expressed in many tissues, including fetal cochlea, which is mutated in the families used to describe both the DFNB10 and DFNB8 loci. An 8-bp deletion and insertion of 18 monomeric (approximately 68-bp) beta-satellite repeat units, normally present in tandem arrays of up to several hundred kilobases on the short arms of acrocentric chromosomes, causes congenital deafness (DFNB10). A mutation in a splice-acceptor site, resulting in a 4-bp insertion in the mRNA and a frameshift, was detected in childhood onset deafness (DFNB8). This is the first description of beta-satellite insertion into an active gene resulting in a pathogenic state, and the first description of a protease involved in hearing loss."	"A novel transmembrane serine protease (TMPRSS3) overexpressed in pancreatic cancer. We report the characterization of a novel serine protease of the chymotrypsin family, recently isolated by cDNA-representational difference analysis, as a gene overexpressed in pancreatic cancer. The 2.3-kb mRNA of the gene, named TMPRSS3, is strongly expressed in a subset of pancreatic cancer and various other cancer tissues, and its expression correlates with the metastatic potential of the clonal SUIT-2 pancreatic cancer cell lines. The deduced polypeptide sequence consists of 437 amino acids and exhibits all of the structural features characteristic of serine proteases with trypsin-like activity. TMPRSS3 is membrane bound with a NH2-terminal signal-anchor sequence and a glycosylated extracellular region containing the serine protease domain. Thus, TMPRSS3 is a novel membrane-bound serine protease overexpressed in cancer, which may be of importance for processes involved in metastasis formation and tumor invasion."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TPRN"	"nonsyndromic genetic deafness"	"Identification of Prognostic Candidate Genes in Breast Cancer by Integrated Bioinformatic Analysis. Breast cancer is one of the most common malignancies. However, the molecular mechanisms underlying its pathogenesis remain to be elucidated. The present study aimed to identify the potential prognostic marker genes associated with the progression of breast cancer. Weighted gene coexpression network analysis was used to construct free-scale gene coexpression networks, evaluate the associations between the gene sets and clinical features, and identify candidate biomarkers. The gene expression profiles of GSE48213 were selected from the Gene Expression Omnibus database. RNA-seq data and clinical information on breast cancer from The Cancer Genome Atlas were used for validation. Four modules were identified from the gene coexpression network, one of which was found to be significantly associated with patient survival time. The expression status of 28 genes formed the black module (basal); 18 genes, dark red module (claudin-low); nine genes, brown module (luminal), and seven genes, midnight blue module (nonmalignant). These modules were clustered into two groups according to significant difference in survival time between the groups. Therefore, based on betweenness centrality, we identified TXN and ANXA2 in the nonmalignant module, TPM4 and LOXL2 in the luminal module, TPRN and ADCY6 in the claudin-low module, and TUBA1C and CMIP in the basal module as the genes with the highest betweenness, suggesting that they play a central role in information transfer in the network. In the present study, eight candidate biomarkers were identified for further basic and advanced understanding of the molecular pathogenesis of breast cancer by using co-expression network analysis."	"WHO Thematic Platform for Health Emergency and Disaster Risk Management Research Network (TPRN): Report of the Kobe Expert Meeting. The WHO Thematic Platform for Health Emergency and Disaster Risk Management Research Network (TPRN) was established in 2016 in response to the Sendai Framework for Disaster Risk Reduction 2015⁻2030. The TPRN facilitates global collaborative action for improving the scientific evidence base in health emergency and disaster risk management (Health EDRM). In 2018, the WHO convened a meeting to identify key research questions, bringing together leading experts from WHO, TPRN, World Association for Disaster and Emergency Medicine (WADEM), and the Japan International Cooperation Agency, and delegates to the Asia Pacific Conference on Disaster Medicine (APCDM). The meeting identified research questions in five major areas for Health EDRM: health data management, psychosocial management, community risk management, health workforce development, and research methods and ethics. Funding these key research questions is essential to accelerate evidence-based actions during emergencies and disasters."	"Health Data Collection Before, During and After Emergencies and Disasters-The Result of the Kobe Expert Meeting. In October 2018, the World Health Organization (WHO) convened a meeting to identify key research needs, bringing together leading experts from WHO, WHO Thematic Platform for Health Emergency and Disaster Risk Management (Health-EDRM) Research Network (TPRN), World Association for Disaster and Emergency Medicine (WADEM), the Japan International Cooperation Agency (JICA), and delegates to the Asia Pacific Conference for Disaster Medicine (APCDM) 2018. The meeting identified key research needs in five major research areas for Health-EDRM. One of the five major research areas was &quot;Health data collection during emergency and disaster&quot;. Experts for this research area highlighted WHO Emergency Medical Team Minimum Data Set (EMT MDS), a standardized medical data collection method during and after disasters, as an example of substantial progress, with knowledge gaps and challenges in implementation in some regions and countries (i.e., information collection methodology in medical facilities of affected local areas, seamless and practical connection between acute phase data collection and post-acute phase local surveillance). The discussion on this research area also identified key research needs in standardization of broader health-related data to inform effective Health EDRM (i.e., community vulnerabilities, hospital functional status, infrastructure, lifelines and health workforce)."	"Research Methods and Ethics in Health Emergency and Disaster Risk Management: The Result of the Kobe Expert Meeting. In October 2018, at Asia Pacific Conference for Disaster Medicine (APCDM), an expert meeting to identify key research needs was organized by the World Health Organization (WHO) Centre for Health Development (WHO Kobe Centre (WKC)), convening the leading experts from Asia Pacific region, WHO, WHO Thematic Platform for Health Emergency and Disaster Risk Management (Health-EDRM) Research Network (TPRN), World Association for Disaster and Emergency Medicine (WADEM), in collaboration with Asia Pacific Conference for Disaster Medicine (APCDM) and Japan International Cooperation Agency (JICA). International experts, who were pre-informed about the meeting, contributed experience-based priority issues in Health-EDRM research, ethics, and scientific publication. Two moderators, experienced in multi-disciplinary research interacted with discussants to transcribe practical issues into related methodological and ethical issues. Each issue was addressed in order to progress research and scientific evidence in Health-EDRM. Further analysis of interactive dialogues revealed priorities for action, proposed mechanism to address these and identified recommendations. Thematic discussion uncovered five priority areas: (1) the need to harmonize Health-EDRM research with universal terms and, definitions via a glossary; (2) mechanisms to facilitate and speed up ethical review process; (3) increased community participation and stakeholder involvement in generating research ideas and in assessing impact evaluation; (4) development of reference materials such as possible consensus statements; and (5) the urgent need for a research methods resource textbook for Health-EDRM addressing these issues."	"Tprn is essential for the integrity of stereociliary rootlet in cochlear hair cells in mice. Tprn encodes the taperin protein, which is concentrated in the tapered region of hair cell stereocilia in the inner ear. In humans, TPRN mutations cause autosomal recessive nonsyndromic deafness (DFNB79) by an unknown mechanism. To determine the role of Tprn in hearing, we generated Tprn-null mice by clustered regularly interspaced short palindromic repeat/Cas9 genome-editing technology from a CBA/CaJ background. We observed significant hearing loss and progressive degeneration of stereocilia in the outer hair cells of Tprn-null mice starting from postnatal day 30. Transmission electron microscopy images of stereociliary bundles in the mutant mice showed some stereociliary rootlets with curved shafts. The central cores of the stereociliary rootlets possessed hollow structures with surrounding loose peripheral dense rings. Radixin, a protein expressed at stereocilia tapering, was abnormally dispersed along the stereocilia shafts in Tprn-null mice. The expression levels of radixin and β-actin significantly decreased.We propose that Tprn is critical to the retention of the integrity of the stereociliary rootlet. Loss of Tprn in Tprn-null mice caused the disruption of the stereociliary rootlet, which resulted in damage to stereociliary bundles and hearing impairments. The generated Tprn-null mice are ideal models of human hereditary deafness DFNB79."	"Target sequencing of 307 deafness genes identifies candidate genes implicated in microtia. Microtia is a congenital malformation of the external ear caused by genetic and/or environmental factors. However, no causal genetic mutations have been identified in isolated microtia patients. In this study, we utilized targeted genomic capturing combined with next-generation sequencing to screen for mutations in 307 deafness genes in 32 microtia patients. Forty-two rare heterozygous mutations in 25 genes, including 22 novel mutations in 24 isolated unilateral microtia cases were identified. Pathway analysis found five pathways especially focal adhesion pathway and ECM-receptor interaction pathway were significantly associated with microtia. The low-frequency variants association study was used and highlighted several strong candidate genes MUC4, MUC6, COL4A4, MYO7A, AKAP12, COL11A1, DSPP, ESPN, GPR98, PCDH15, BSN, CACNA1D, TPRN, and USH1C for microtia (P = 2.51 × 10<sup>-4</sup>). Among these genes, COL4A4 and COL11A1 may lead to microtia through focal adhesion pathway and ECM-receptor interaction pathway which are connected to the downstream Wnt signaling pathway. The present results indicate that certain genes may affect both external/middle and inner ear development, and demonstrate the benefits of using a capture array in microtia patients."	"An Acquisition Scheme Based on a Matched Filter for Novel Communication and Navigation Fusion Signals. In order to enhance the positioning capability of terrestrial networks, a novel communication and navigation fusion signal is proposed. The novel signal multiplexes the communication and navigation signal in the same frequency band, and the navigation system is superimposed on the original communication system. However, the application of pseudorandom noise (PRN) sequences in the navigation system is limited by the communication clock period. Taking the application of PRN sequences limited by the clock period as objects, the present study analyzes truncated PRN (TPRN) sequences. PRN sequences with a TPRN sequence as the navigation signal can overcome the communication system clock period limitation. Then, a matched filter algorithm with double detection (MFADD) is proposed to acquire the novel signal. The matched filter method is applied to the proposed algorithm to determine the start code phase of TPRN. Monte Carlo simulations and real data tests demonstrate the effectiveness of the proposed algorithm for the designed signal."	"Progressive hearing loss and degeneration of hair cell stereocilia in taperin gene knockout mice. The TPRN gene encodes taperin, which is prominently present at the taper region of hair cell stereocilia. Mutations in TPRN have been reported to cause autosomal recessive nonsyndromic deafness 79(DFNB 79). To investigate the role of taperin in pathogenesis of hearing loss, we generated TPRN knockout mice using TALEN technique. Sanger sequencing confirmed an 11 bp deletion at nucleotide 177-187 in exon 1 of TPRN, which results in a truncated form of taperin protein. Heterozygous TPRN<sup>+/-</sup> mice showed apparently normal auditory phenotypes to their wide-type (WT) littermates. Homozygous TPRN<sup>-/-</sup> mice exhibited progressive sensorineural hearing loss as reflected by auditory brainstem response to both click and tone burst stimuli at postnatal days 15 (P15), 30 (P30), and 60 (P60). Alex Fluor-594 phalloidin labeling showed no obvious difference in hair cell numbers in the cochlea between TPRN<sup>-/-</sup> mice and WT mice under light microscope. However, scanning electronic microscopy revealed progressive degeneration of inner hair cell stereocilia, from apparently normal at postnatal days 3 (P3) to scattered absence at P15 and further to substantial loss at P30. The outer hair cell stereocilia also showed progressive degeneration, though much less severe, Collectively, we conclude that taperin plays an important role in maintenance of hair cell stereocilia. Establishment of TPRN knockout mice enables further investigation into the function of this gene."	"Sensory rewiring in an echolocator: genome-wide modification of retinogenic and auditory genes in the bat Myotis davidii. Bats comprise 20% of all mammalian species and display a number of characteristics, including true flight, echolocation, and a heightened ability to resist viral load that uniquely position this group for comparative genomic studies. Here we searched for evidence of genomic variation consistent with sensory rewiring through bat evolution. We focused on two species with divergent sensory preferences. Myotis davidii is a bat species that echolocates and possesses dim- but not daylight-adapted vision whereas the black flying fox (Pteropus alecto) has highly developed day vision but does not echolocate. Using the naked mole rat as a reference, we found five functional genes (CYP1A2, RBP3, GUCY2F, CRYBB1, and GRK7) encoding visual proteins that have degenerated into pseudogenes in M. davidii but not P. alecto. In a second approach genome-wide codon usage bias (CUB) was compared between the two bat species. This CUB ranking systematically enriched for vision-related (CLN8, RD3, IKZF1, LAMC3, CRX, SOX8, VAX2, HPS1, RHO, PRPH2, and SOX9) and hearing-related (TPRN, TMIE, SLC52A3, OTOF, WFS1, SOD1, TBX18, MAP1A, OTOS, GPX1, and USH1G) machinery in M. davidii but not P. alecto. All vision and hearing genes selectively enriched in M. davidii for which orthologs could be identified also were more biased in the echolocating M. lucifugus than the nonecholocating P. vampyrus. We suggest that the existence of codon bias in vision- and hearing-related genes in a species that has evolved echolocation implies CUB is part of evolution's toolkit to rewire sensory systems. We propose that the two genetic changes (pseudogene formation and CUB) collectively paint a picture of that incorporates a combination of destruction and gain-of-function. Together, they help explain how natural selection has reduced physiological costs associated with the development of a smaller eye poorly adapted to day vision but that also contribute to enhanced dim light vision and the hearing adaptations consonant with echolocation. "	"CLIC5 stabilizes membrane-actin filament linkages at the base of hair cell stereocilia in a molecular complex with radixin, taperin, and myosin VI. Chloride intracellular channel 5 protein (CLIC5) was originally isolated from microvilli in complex with actin binding proteins including ezrin, a member of the Ezrin-Radixin-Moesin (ERM) family of membrane-cytoskeletal linkers. CLIC5 concentrates at the base of hair cell stereocilia and is required for normal hearing and balance in mice, but its functional significance is poorly understood. This study investigated the role of CLIC5 in postnatal development and maintenance of hair bundles. Confocal and scanning electron microscopy of CLIC5-deficient jitterbug (jbg) mice revealed progressive fusion of stereocilia as early as postnatal day 10. Radixin (RDX), protein tyrosine phosphatase receptor Q (PTPRQ), and taperin (TPRN), deafness-associated proteins that also concentrate at the base of stereocilia, were mislocalized in fused stereocilia of jbg mice. TPRQ and RDX were dispersed even prior to stereocilia fusion. Biochemical assays showed interaction of CLIC5 with ERM proteins, TPRN, and possibly myosin VI (MYO6). In addition, CLIC5 and RDX failed to localize normally in fused stereocilia of MYO6 mutant mice. Based on these findings, we propose a model in which these proteins work together as a complex to stabilize linkages between the plasma membrane and subjacent actin cytoskeleton at the base of stereocilia."	"The c.42_52del11 mutation in TPRN and progressive hearing loss in a family from Pakistan. The DFNB79 locus harbors TPRN mutations in which have been reported in a few families with deafness. Four frameshift mutations in TPRN have been described to cause severe or severe-to-profound hearing loss in Moroccan and Pakistani families, and a single frameshift mutation was associated with progressive hearing loss in deaf individuals in a Dutch family. We identified a Pakistani family in which the affected individuals were homozygous for a pathogenic mutation, c.42_52del11, in TPRN (p.G15Afs150X). In contrast to the previously reported individuals affected by the same mutation, hearing loss is likely to be progressive in this family. Thus the same mutation of TPRN can be associated with different thresholds of hearing as well as differences in the stability of the phenotype."	"Targeted capture and next-generation sequencing identifies C9orf75, encoding taperin, as the mutated gene in nonsyndromic deafness DFNB79. Targeted genome capture combined with next-generation sequencing was used to analyze 2.9 Mb of the DFNB79 interval on chromosome 9q34.3, which includes 108 candidate genes. Genomic DNA from an affected member of a consanguineous family segregating recessive, nonsyndromic hearing loss was used to make a library of fragments covering the DFNB79 linkage interval defined by genetic analyses of four pedigrees. Homozygosity for eight previously unreported variants in transcribed sequences was detected by evaluating a library of 402,554 sequencing reads and was later confirmed by Sanger sequencing. Of these variants, six were determined to be polymorphisms in the Pakistani population, and one was in a noncoding gene that was subsequently excluded genetically from the DFNB79 linkage interval. The remaining variant was a nonsense mutation in a predicted gene, C9orf75, renamed TPRN. Evaluation of the other three DFNB79-linked families identified three additional frameshift mutations, for a total of four truncating alleles of this gene. Although TPRN is expressed in many tissues, immunolocalization of the protein product in the mouse cochlea shows prominent expression in the taper region of hair cell stereocilia. Consequently, we named the protein taperin."	"Mutations in TPRN cause a progressive form of autosomal-recessive nonsyndromic hearing loss. We performed genome-wide homozygosity mapping in a large consanguineous family from Morocco and mapped the autosomal-recessive nonsyndromic hearing loss (ARNSHL) in this family to the DFNB79 locus on chromosome 9q34. By sequencing of 62 positional candidate genes of the critical region, we identified a causative homozygous 11 bp deletion, c.42_52del, in the TPRN gene in all seven affected individuals. The deletion is located in exon 1 and results in a frameshift and premature protein truncation (p.Gly15AlafsX150). Interestingly, the deleted sequence is part of a repetitive and CG-rich motive predicted to be prone to structural aberrations during crossover formation. We identified another family with progressive ARNSHL linked to this locus, whose affected members were shown to carry a causative 1 bp deletion (c.1347delG) in exon 1 of TPRN. The function of the encoded protein, taperin, is unknown; yet, partial homology to the actin-caping protein phostensin suggests a role in actin dynamics."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"POU3F4"	"nonsyndromic genetic deafness"	"The Purinergic Receptor P2rx3 is Required for Spiral Ganglion Neuron Branch Refinement During Development. The mammalian cochlea undergoes a highly dynamic process of growth and innervation during development. This process includes spiral ganglion neuron (SGN) branch refinement, a process whereby type I SGNs undergo a phase of &quot;debranching&quot; prior to forming unramified synaptic contacts with inner hair cells. Using Sox2<sup>CreERT2</sup> and R26R<sup>tdTomato</sup> as a strategy to genetically label individual SGNs in mice of both sexes, we report on both a time course of SGN branch refinement and a role for P2rx3 in this process. P2rx3 is an ionotropic ATP receptor that was recently implicated in outer hair cell spontaneous activity and type II SGN synapse development (Ceriani et al., 2019), but its function in type I SGN development is unknown. Here we demonstrate that P2rx3 is expressed by type I SGNs and hair cells during developmental periods that coincide with SGN branching refinement. P2rx3 null mice show SGNs with more complex branching patterns on their peripheral synaptic terminals and near their cell bodies around the time of birth. Loss of P2rx3 does not appear to confer general changes in axon outgrowth or hair cell formation, and alterations in branching complexity appear to mostly recover by postnatal day 6. However, when we examined the distribution of type I SGN subtypes using antibodies that bind Calb2, Calb1, and Pou4f1, we found that Pou3f4 null mice showed an increased proportion of SGNs that express Calb2. These data suggest P2rx3 may be necessary for normal type I SGN differentiation in addition to serving a role in branch refinement.Significance Statement P2rx3 receptors are a class of ionotropic purinergic receptors that are expressed in sensory afferent neurons and have been shown to play essential roles in sensory transduction. However, little is known about how P2rx3 functions in neuronal morphogenesis and synaptic connectivity. Here, we found that P2rx3 is expressed by spiral ganglion neurons (SGNs) and hair cells during cochlear development. Using P2rx3 null mice combined with genetic sparse labeling, we discovered P2rx3 regulates SGN branch refinement, which is a function of P2rx3 distinguishable from the more conventionally-known role in neural transduction. These results offer new insights into how P2rx3 promotes auditory neuron maturation, which may be useful for endeavors aimed at regenerating lost auditory connections in hearing loss."	"Clinical and genetic study of 12 Chinese Han families with nonsyndromic deafness. Nonsyndromic hearing loss is clinically and genetically heterogeneous. In this study, we characterized the clinical features of 12 Chinese Han deaf families in which mutations in common deafness genes GJB2, SLC26A4, and MT-RNR1 were excluded. Targeted next-generation sequencing of 147 known deafness genes was performed in probands of 10 families, while whole-exome sequencing was applied in those of the rest two. Pathogenic mutations in a total of 11 rare deafness genes, OTOF, CDH23, PCDH15, PDZD7, ADGRV1, KARS, OTOG, GRXCR2, MYO6, GRHL2, and POU3F4, were identified in all 12 probands, with 16 mutations being novel. Intrafamilial cosegregation of the mutations and the deafness phenotype were confirmed by Sanger sequencing. Our results expanded the mutation spectrum and genotype-phenotype correlation of nonsyndromic hearing loss in Chinese Hans and also emphasized the importance of combining both next-generation sequencing and detailed auditory evaluation to achieve a more accurate diagnosis for nonsyndromic hearing loss."	"Pou3f4-expressing otic mesenchyme cells promote spiral ganglion neuron survival in the postnatal mouse cochlea. During inner ear development, primary auditory neurons named spiral ganglion neurons (SGNs) are surrounded by otic mesenchyme cells, which express the transcription factor Pou3f4. Mutations in Pou3f4 are associated with DFNX2, the most common form of X-linked deafness and typically include developmental malformations of the middle ear and inner ear. It is known that interactions between Pou3f4-expressing mesenchyme cells and SGNs are important for proper axon bundling during development. However, Pou3f4 continues to be expressed through later phases of development, and potential interactions between Pou3f4 and SGNs during this period had not been explored. To address this, we documented Pou3f4 protein expression in the early postnatal mouse cochlea and compared SGNs in Pou3f4 knockout mice and littermate controls. In Pou3f4<sup>y/-</sup> mice, SGN density begins to decline by the end of the first postnatal week, with approximately 25% of SGNs ultimately lost. This period of SGN loss in Pou3f4<sup>y/-</sup> cochleae coincides with significant elevations in SGN apoptosis. Interestingly, this period also coincides with the presence of a transient population of Pou3f4-expressing cells around and within the spiral ganglion. To determine if Pou3f4 is normally required for SGN peripheral axon extension into the sensory domain, we used a genetic sparse labeling approach to track SGNs and found no differences compared with controls. We also found that Pou3f4 loss did not lead to changes in the proportions of Type I SGN subtypes. Overall, these data suggest that otic mesenchyme cells may play a role in maintaining SGN populations during the early postnatal period."	"Genetic identification and molecular modeling characterization of a novel POU3F4 variant in two Italian deaf brothers. In this report, we describe a novel, probably pathogenic hemizygous variant c.870G &gt; T (p.Lys290Asn) in the POU3F4 gene in two deaf brothers from one Italian family with identical inner ear abnormalities specific to X-linked deafness-2 (DFNX2). In addition, we performed homology modeling to predict the effect of the missense variant on the protein structure showing a possible disruption of the normal folding. The identification of pathogenic variants causing X-linked recessive deafness will improve molecular diagnosis, genetic counseling, and knowledge of the molecular epidemiology of hearing loss among Italian individuals. Taken together, we recommend preoperative gene mutation analysis in patients who have DFNX2 diagnosed on the basis of characteristic radiological findings, in order to provide with better prognostic information, the risk of recurrence, and improved rehabilitation options. Finally, the present work strengthens the hypothesis that DFNX-2 could be considered as a syndromic deafness, since mixed hearing loss is associated with other dysfunctions of the neuropsychological profile of the patients."	"First-Line Molecular Genetic Evaluation of Autosomal Recessive Non-Syndromic Hearing Loss. The aim of this study is to investigate the efficiency of a first-line molecular genetic evaluation approach, in children with deafness. Patients who were found to have sensorineural hearing loss by age-appropriate audiological tests were selected for the molecular genetic evaluation. The molecular genetic evaluation was carried out with GJB2 gene sequence analysis and mtDNA m.1555A&gt;G mutation Restriction Fragment Length Polymorphism (RFLP) analysis. Additionally, in a small group of patients, hearing loss Multiplex Ligation-dependent Probe Amplification (MLPA) analysis was done out to identify the possible role of copy number changes. In this Turkish cohort, which included 104 index patients and 78 relatives, 33 (31.7%) had Pathogenic/Likely Pathogenic variants. One or more GJB2 sequence variants were identified in 46 (44.1%) of the 104 index patients. The homozygous c.35delG mutation by itself explained the etiology in 24% of our ARSNHL group. In one (5%) of the 20 patients of MLPA group, a hemizygous deletion in POU3F4 gene was detected. In our Turkish cohort, we applied a first-line molecular genetic evaluation approach using GJB2 gene sequence analysis and mtDNA m.1555A&gt;G RFLP analysis. This approach revealed the genetic etiology of 44.1% of our index patients. Additionaly, the results of hearing loss MLPA analysis revealed the limited role of copy number changes in this patient group. Furthermore, with a detailed genotype-phenotype association workup, 2 rare cases of Deafness with Palmoplantar Hyperkeratosis and Keratitis-Ichthyosis-Deafness syndrome were reported."	"Brn4 promotes the differentiation of radial glial cells into neurons by inhibiting CtBP2. Neural stem cells (NSCs) are pluripotent cells that are capable of differentiating into neurons and considered as the most promising cell source for cell replacement therapy. However, the difficulty in inducing neuronal differentiation and maturation from NSCs is a major challenge for their clinical application. Clarifying the molecular mechanisms underlying the neuronal differentiation of NSCs can provide a basis for expanding their uses. Brain 4 (Brn4) is a member of the POU domain family of transcription factors and can induce the neuronal differentiation of NSCs, but its precise function in NSCs is unclear. To address this question, in this study we isolated and expanded radial glial cells (RGCs), a type of NSC, from the cerebral cortex of 14-day embryonic rats and used lentivirus carrying the human Brn4 gene to overexpress Brn4 in these cells. This induced the differentiation of RGCs into neurons and inhibited the expression of C-terminal binding protein 2 (CtBP2), a transcriptional co-repressor. CtBP2 overexpression in RGCs suppressed their differentiation into neurons, whereas CtBP2 knockdown had the opposite effect. These results indicated that Brn4 promoted the neuronal differentiation of NSCs via inhibition of CtBP2 and is a potential tool for generating neurons in cell replacement therapy of neurodegenerative diseases and brain injury."	"A novel POU domain class 3 transcription factor 4 mutation causes X-linked non-syndromic hearing loss in a Chinese family. NA"	"Hypothalamic hamartomas and inner ear diverticula with X-linked stapes gusher syndrome - new associations? X-linked stapes gusher syndrome is a genetic form of deafness with distinct radiographic features on temporal bone CT. Hypothalamic hamartoma is a congenital glioneuronal anomaly of the hypothalamus. We report a potential association between these two rare anomalies that, to our knowledge, has not been reported. Two brothers presented with sensorineural hearing loss and almost identical inner ear and hypothalamic abnormalities, consistent with a diagnosis of X-linked stapes gusher syndrome and hypothalamic hamartoma. Genetic testing revealed identical mutations in the POU3F4 gene associated with X-linked stapes gusher syndrome. Furthermore, multiple vestibular diverticula were seen in both brothers, which have also not been reported with X-linked stapes gusher syndrome. This case suggests that POU3F4 mediated X-linked stapes gusher syndrome may also lead to multiple vestibular diverticula and hypothalamic hamartoma and, therefore, brain magnetic resonance imaging (MRI) could be considered in patients presenting with these inner ear findings."	"Hypothalamic malformations in patients with X-linked deafness and incomplete partition type 3. Patients with X-linked deafness carry mutations in the POU3F4 gene and have pathognomonic inner ear malformations characterised by symmetrical incomplete partition type 3 (absent modiolus and lamina spiralis but preserved interscalar septum in a normal-sized cochlea) and large internal auditory meatus (IAM) with an increased risk of gusher during stapes surgery. We describe a range of fairly characteristic malformations in the hypothalamus of some patients with this rare condition, ranging from subtle asymmetric appearance and thickening of the tuber cinereum to more marked hypothalamic enlargement. We discuss the role of POU3F4 in the normal development of both the inner ear and hypothalamus and the proposed pathophysiology of incomplete partition type 3."	"Genetic Causes of Inner Ear Anomalies: a Review from the Turkish Study Group for Inner Ear Anomalies Inner ear anomalies diagnosed using a radiological study are detected in almost 30% of cases with congenital or prelingual-onset sensorineural hearing loss. Inner ear anomalies can be isolated or occur along with a part of a syndrome involving other systems. Although astonishing progress has been made in research aimed at revealing the genetic causes of hearing loss in the past few decades, only a few genes have been linked to inner ear anomalies. The aim of this review is to discuss the known genetic causes of inner ear anomalies. Identifying the genetic causes of inner ear anomalies is important for guiding clinical care that includes empowered reproductive decisions provided to the affected individuals. Furthermore, understanding the molecular underpinnings of the development of the inner ear in humans is important to develop novel treatment strategies for people with hearing loss."	"Identification of a Novel Frameshift Variant of POU3F4 and Genetic Counseling of Korean Incomplete Partition Type III Subjects Based on Detailed Genotypes.  Aim:  The aim of this study was to report a novel POU Class 3 Homeobox 4 (POU3F4) variant and to provide further guidance on genetic counseling for incomplete partition (IP) type III families in the Korean population by showing two new contrasting cases in terms of genotypes and inheritance.  Materials and Methods:  Two consecutively recruited hearing-impaired probands with seemingly nonsyndromic features and their biological mothers were included in this study. Sanger sequencing and quantitative polymerase chain reaction (PCR) assays were performed for POU3F4.  Results:  A novel frameshift variant of POU3F4, c.852delC (p.Ile285Serfs*3), was identified in one of the patients. This mutation is predicted to truncate the protein within the POU homeodomain, resulting in the complete loss of the last nucleus localization signal. The proband's biological mother was also shown to be a carrier of this c.852delC (p.Ile285Serfs*3) mutant allele. A de novo genomic deletion on chromosome Xq21.2 was confirmed in another subject via quantitative PCR. This subject's biological mother, however, was not a carrier of this deletion. This indicates that the large upstream deletion of POU3F4 in the second proband occurred de novo. This finding is compatible with the previously proposed tendency for a high de novo rate of large genomic deletions involving the X-linked deafness-2 (DFNX2) locus.  Conclusion:  This study adds a novel, probably pathogenic POU3F4 truncation variant to the literature and provides guidance toward effective genetic counseling for IP III subjects based on more frequent de novo occurrence of POU3F4 deletions than POU3F4 point variants."	"Zebrafish Model for Nonsyndromic X-Linked Sensorineural Deafness, DFNX1. Hereditary deafness is often a neurosensory disorder and affects the quality of life of humans. Only three X-linked genes (POU class 3 homeobox 4 (POU3F4), phosphoribosyl pyrophosphate synthetase 1 (PRPS1), and small muscle protein X-linked (SMPX)) are known to be involved in nonsyndromic hearing loss. Four PRPS1 missense mutations have been found to associate with X-linked nonsyndromic sensorineural deafness (DFNX1/DFN2) in humans. However, a causative relationship between PRPS1 mutations and hearing loss in humans has not been well studied in any animal model. Phosphoribosyl pyrophosphate synthetase 1 (PRS-I) is highly conserved in vertebrate taxa. In this study, we used the zebrafish as a model to investigate the auditory role of zebrafish orthologs (prps1a and prps1b) of the human PRPS1 gene with whole mount in situ hybridization, reverse transcription polymerase chain reaction, phenotypic screening, confocal imaging, and electrophysiological methods. We found that both prps1a and prps1b genes were expressed in the inner ear of zebrafish. Splice-blocking antisense morpholino oligonucleotides (MO1 and MO2) caused exon-2 skip and intron-2 retention of prps1a and exon-2 skip and intron-1 retention of prps1b to knock down functions of the genes, respectively. MO1 and MO2 morphants had smaller otic vesicles and otoliths, fewer inner ear hair cells, and lower microphonic response amplitude and sensitivity than control zebrafish. Therefore, knockdown of either prps1a or prps1b resulted in significant sensorineural hearing loss in zebrafish. We conclude that the prps1 genes are essential for hearing in zebrafish, which has the potential to help us understand the biology of human deafness DFNX1/DFN2. Anat Rec, 303:544-555, 2020. © 2019 American Association for Anatomy."	"Elucidation of the unique mutation spectrum of severe hearing loss in a Vietnamese pediatric population. The mutational spectrum of deafness in Indochina Peninsula, including Vietnam, remains mostly undetermined. This significantly hampers the progress toward establishing an effective genetic screening method and early customized rehabilitation modalities for hearing loss. In this study, we evaluated the genetic profile of severe-to-profound hearing loss in a Vietnamese pediatric population using a hierarchical genetic analysis protocol that screened 11 known deafness-causing variants, followed by massively parallel sequencing targeting 129 deafness-associated genes. Eighty-seven children with isolated severe-to-profound non-syndromic hearing loss without family history were included. The overall molecular diagnostic yield was estimated to be 31.7%. The mutational spectrum for severe-to-profound non-syndromic hearing loss in our Vietnamese population was unique: The most prevalent variants resided in the MYO15A gene (7.2%), followed by GJB2 (6.9%), MYO7A (5.5%), SLC26A4 (4.6%), TMC1 (1.8%), ESPN (1.8%), POU3F4 (1.8%), MYH14 (1.8%), EYA1 (1.8%), and MR-RNR1 (1.1%). The unique spectrum of causative genes in the Vietnamese deaf population was similar to that in the southern Chinese deaf population. It is our hope that the mutation spectrum provided here could aid in establishing an efficient protocol for genetic analysis of severe-to-profound hearing loss and a customized screening kit for the Vietnamese population."	"DNA methylation dynamics during embryonic development and postnatal maturation of the mouse auditory sensory epithelium. The inner ear is a complex structure responsible for hearing and balance, and organ pathology is associated with deafness and balance disorders. To evaluate the role of epigenomic dynamics, we performed whole genome bisulfite sequencing at key time points during the development and maturation of the mouse inner ear sensory epithelium (SE). Our single-nucleotide resolution maps revealed variations in both general characteristics and dynamics of DNA methylation over time. This allowed us to predict the location of non-coding regulatory regions and to identify several novel candidate regulatory factors, such as Bach2, that connect stage-specific regulatory elements to molecular features that drive the development and maturation of the SE. Constructing in silico regulatory networks around sites of differential methylation enabled us to link key inner ear regulators, such as Atoh1 and Stat3, to pathways responsible for cell lineage determination and maturation, such as the Notch pathway. We also discovered that a putative enhancer, defined as a low methylated region (LMR), can upregulate the GJB6 gene and a neighboring non-coding RNA. The study of inner ear SE methylomes revealed novel regulatory regions in the hearing organ, which may improve diagnostic capabilities, and has the potential to guide the development of therapeutics for hearing loss by providing multiple intervention points for manipulation of the auditory system."	"Position effect, cryptic complexity, and direct gene disruption as disease mechanisms in de novo apparently balanced translocation cases. The majority of apparently balanced translocation (ABT) carriers are phenotypically normal. However, several mechanisms were proposed to underlie phenotypes in affected ABT cases. In the current study, whole-genome mate-pair sequencing (WG-MPS) followed by Sanger sequencing was applied to further characterize de novo ABTs in three affected individuals. WG-MPS precisely mapped all ABT breakpoints and revealed three possible underlying molecular mechanisms. Firstly, in a t(X;1) carrier with hearing loss, a highly skewed X-inactivation pattern was observed and the der(X) breakpoint mapped ~87kb upstream an X-linked deafness gene namely POU3F4, thus suggesting an underlying long-range position effect mechanism. Secondly, cryptic complexity and a chromothripsis rearrangement was identified in a t(6;7;8;12) carrier with intellectual disability. Two translocations and a heterozygous deletion disrupted SOX5; a dominant nervous system development gene previously reported in similar patients. Finally, a direct gene disruption mechanism was proposed in a t(4;9) carrier with dysmorphic facial features and speech delay. In this case, the der(9) breakpoint directly disrupted NFIB, a gene involved in lung maturation and development of the pons with important functions in main speech processes. To conclude, in contrast to familial ABT cases with identical rearrangements and discordant phenotypes, where translocations are considered coincidental, translocations seem to be associated with phenotype presentation in affected de novo ABT cases. In addition, this study highlights the importance of investigating both coding and non-coding regions to decipher the underlying pathogenic mechanisms in these patients, and supports the potential introduction of low coverage WG-MPS in the clinical investigation of de novo ABTs."	"Clinical and molecular characterization of POU3F4 mutations in multiple DFNX2 Chinese families. Many X-linked non-syndromic hearing loss (HL) cases are caused by various mutations in the POU domain class 3 transcription factor 4 (POU3F4) gene. This study aimed to identify allelic variants of this gene in two Chinese families displaying X-linked inheritance deafness-2 (DFNX2) and one sporadic case with indefinite inheritance pattern. Direct DNA sequencing of the POU3F4 gene was performed in these families and in 100 Chinese individuals with normal hearing. There are characteristic imaging findings in DFNX2 Chinese families with POU3F4 mutations. The temporal bone computed tomography (CT) images of patients with DFNX2 are characterized by a thickened stapes footplate, hypoplasia of the cochlear base, absence of the bony modiolus, and dilated internal acoustic meatus (IAM) as well as by abnormally wide communication between the IAM and the basal turn of the cochlea. We identified three causative mutations in POU3F4 for three probands and their extended families. In family 1468, we observed a novel deletion mutation, c.973delT, which is predicted to result in a p.Trp325Gly amino acid frameshift. In family 2741, the mutation c.927delCTC was identified, which is predicted to result in the deletion of serine at position 310. In both families, the mutations were located in the POU homeodomain and are predicted to truncate the C-terminus of the POU domain. In the third family, a novel de novo transversion mutation (c.669 T &gt; A) was identified in a 5-year-old boy that resulted in a nonsense mutation (p.Tyr223*). The mutation created a new stop codon and is predicted to result in a truncated POU3F4 protein. Based on characteristic radiological findings and clinical features, POU3F4 gene mutation analysis will increase the success rate of stapes operations and cochlear implantations, and improve molecular diagnosis, genetic counseling, and knowledge of the molecular epidemiology of HL among patients with DFNX2."	"X-Linked Sensorineural Hearing Loss: A Literature Review. Sensorineural hearing loss is a very diffuse pathology (about 1/1000 born) with several types of transmission. X-linked hearing loss accounts for approximately 1% - 2% of cases of non-syndromic forms, as well as for many syndromic forms. To date, six loci (DFNX1-6) and five genes (PRPS1 for DFNX1, POU3F4 for DFNX2, SMPX for DFNX4, AIFM1 for DFNX5 and COL4A6 for DFNX6) have been identified for X-linked non-syndromic hearing loss. For the syndromic forms, at least 15 genes have been identified, some of which are also implicated in non-syndromic forms. Moreover, some syndromic forms, presenting large chromosomal deletions, are associated with mental retardation too. This review presents an overview of the currently known genes related to X-linked hearing loss with the support of the most recent literature. It summarizes the genetics and clinical features of X-linked hearing loss to give information useful to realize a clear genetic counseling and an early diagnosis. It is important to get an early diagnosis of these diseases to decide the investigations to predict the evolution of the disease and the onset of any other future symptoms. This information will be clearly useful for choosing the best therapeutic strategy. In particular, regarding audiological aspects, this review highlights risks and benefits currently known in some cases for specific therapeutic intervention."	"Comprehensive genomic diagnosis of non-syndromic and syndromic hereditary hearing loss in Spanish patients. Sensorineural hearing loss (SNHL) is the most common sensory impairment. Comprehensive next-generation sequencing (NGS) has become the standard for the etiological diagnosis of early-onset SNHL. However, accurate selection of target genomic regions (gene panel/exome/genome), analytical performance and variant interpretation remain relevant difficulties for its clinical implementation. We developed a novel NGS panel with 199 genes associated with non-syndromic and/or syndromic SNHL. We evaluated the analytical sensitivity and specificity of the panel on 1624 known single nucleotide variants (SNVs) and indels on a mixture of genomic DNA from 10 previously characterized lymphoblastoid cell lines, and analyzed 50 Spanish patients with presumed hereditary SNHL not caused by GJB2/GJB6, OTOF nor MT-RNR1 mutations. The analytical sensitivity of the test to detect SNVs and indels on the DNA mixture from the cell lines was &gt; 99.5%, with a specificity &gt; 99.9%. The diagnostic yield on the SNHL patients was 42% (21/50): 47.6% (10/21) with autosomal recessive inheritance pattern (BSND, CDH23, MYO15A, STRC [n = 2], USH2A [n = 3], RDX, SLC26A4); 38.1% (8/21) autosomal dominant (ACTG1 [n = 3; 2 de novo], CHD7, GATA3 [de novo], MITF, P2RX2, SOX10), and 14.3% (3/21) X-linked (COL4A5 [de novo], POU3F4, PRPS1). 46.9% of causative variants (15/32) were not in the databases. 28.6% of genetically diagnosed cases (6/21) had previously undetected syndromes (Barakat, Usher type 2A [n = 3] and Waardenburg [n = 2]). 19% of genetic diagnoses (4/21) were attributable to large deletions/duplications (STRC deletion [n = 2]; partial CDH23 duplication; RDX exon 2 deletion). In the era of precision medicine, obtaining an etiologic diagnosis of SNHL is imperative. Here, we contribute to show that, with the right methodology, NGS can be transferred to the clinical practice, boosting the yield of SNHL genetic diagnosis to 50-60% (including GJB2/GJB6 alterations), improving diagnostic/prognostic accuracy, refining genetic and reproductive counseling and revealing clinically relevant undiagnosed syndromes."	"[Application of next generation sequencing in congenital sensorineural deafness]. Objective:The next-generation sequencing technology (NGS) was used to perform genetic testing on children diagnosed with sensorineural hearing loss in outpatient clinics.The information on the status and inheritance of disease causing genes in deafness was analyzed to provide a theoretical basis for genetic counseling, prenatal diagnosis, and birth defects prevention.Method:Ninety-four cases of sensorineural deafness diagnosed by medical history, audiological examination, and imaging examination were collected in our department.Next-generation sequencing was used to detect the region of exons of 159 genes, 6 mitochondrial genes, and 3 miRNAs related to deafness. The Sanger sequencing verification was performed on the parents of the probands to find out the gene expression status and relationship between the probands and the parents.Result:Of the 94 children with deafness,70 had severe sensorineural hearing loss, 13 had moderate to severe hearing loss, 8 had moderate hearing loss, and 3 had mild hearing loss.Twenty-three cases of cariogenic mutations were detected by next generation sequencing,and the total mutation rate was 24.5%. There were 11 cases of GJB2 mutations, including 6 homozygous mutations of 235delC, 4 heterozygous mutations of 235delC and 299_300del heterozygous mutation of 235delC and c.176_191del.There are 5 cases of SLC26A4 gene mutations, including 2 cases of homozygous mutations of c.919-2A&gt; G, one case of c.919-2A&gt; G and c.2168A&gt;G compound heterozygous mutations, c.919-2A&gt; G and c.754T&gt; C compound heterozygous mutation in 1 case, c.919 2A&gt; G and c.416-418del complex heterozygous mutation in 1 case. There were 2 cases of MT RNR1 mutations, and 1 case of STRC,KCNQ1,USH2A,POU3F4, and MITF mutations.Conclusion:The next-generation sequencing has features such as rapid, high throughput, and low cost, which is beneficial to medication guidance, genetic counseling, and marriage and parenting guidance,and help to effectively prevent or reduce the occurrence of hereditary deafness.."	"Pou3f transcription factor expression during embryonic development highlights distinct pou3f3 and pou3f4 localization in the Xenopus laevis kidney. The POU (Pit-Oct-Unc) genes encode a large transcription factor family comprising 6 classes (pou1f to pou6f ) involved in many developmental processes, such as cell commitment and differentiation. The pou3f class contains four members (pou3f1, pou3f2, pou3f3, pou3f4) characterized by expression in ectodermal tissue derivatives, such as nervous system and otic vesicle, during mammalian development. In order to obtain insights into the potential conservation of this class of transcription factors in vertebrates, we carried out a phylogenetic analysis and a comprehensive comparative study of pou3f expression in the frog Xenopus laevis. All vertebrates examined possessed members of the four pou3f subfamilies, excepting the zebrafish, which lacked a pou3f4 gene. Whole mount in situ hybridization and real-time quantitative polymerase chain reaction (RT-qPCR) analyses revealed that Xenopus pou3f genes were expressed in the forming neural tube and their expression was maintained in the brain, mostly in the dorsal part, at tailbud stages. The pou3f2, pou3f3, and pou3f4 genes were also expressed in the developing otic vesicle, and pou3f1 in some cells of the epidermis. Besides ectodermal derivatives, pou3f3 and pou3f4 were expressed in the developing kidney. Their expression started at the early tailbud stage in the pronephric anlage and partly overlapped. In the mature pronephric tubule, pou3f3 was restricted to the intermediate tubule, while pou3f4 was also expressed in the distal and connecting tubule. Together, our results highlight a significant conservation of pou3f gene expression in vertebrates and indicate that they may have distinct but also redundant functions during neural and renal development."	"The transcription factor prospero homeobox protein 1 is a direct target of SoxC proteins during developmental vertebrate neurogenesis. The high-mobility-group domain containing SoxC transcription factors Sox4 and Sox11 are expressed and required in the vertebrate central nervous system in neuronal precursors and neuroblasts. To identify genes that are widely regulated by SoxC proteins during vertebrate neurogenesis we generated expression profiles from developing mouse brain and chicken neural tube with reduced SoxC expression and found the transcription factor prospero homeobox protein 1 (Prox1) strongly down-regulated under both conditions. This led us to hypothesize that Prox1 expression depends on SoxC proteins in the developing central nervous system of mouse and chicken. By combining luciferase reporter assays and over-expression in the chicken neural tube with in vivo and in vitro binding studies, we identify the Prox1 gene promoter and two upstream enhancers at -44 kb and -40 kb relative to the transcription start as regulatory regions that are bound and activated by SoxC proteins. This argues that Prox1 is a direct target gene of SoxC proteins during neurogenesis. Electroporations in the chicken neural tube furthermore show that Prox1 activates a subset of SoxC target genes, whereas it has no effects on others. We propose that the transcriptional control of Prox1 by SoxC proteins may ensure coupling of two types of transcription factors that are both required during early neurogenesis, but have at least in part distinct functions. Open Data: Materials are available on https://cos.io/our-services/open-science-badges/ https://osf.io/93n6m/."	"A novel pathogenic variant c.975G&gt;A (p.Trp325*) in the POU3F4 gene in Yakut family (Eastern Siberia, Russia) with the X-linked deafness-2 (DFNX2). Here, we report a novel hemizygous transition c.975G&gt;A (p.Trp325*) in POU3F4 gene (Xq21) found in two deaf half-brothers from one Yakut family (Eastern Siberia, Russia) with identical inner ear abnormalities (&quot;corkscrew&quot; cochlea with an absence of modiolus) specific to X-linked deafness-2 (DFNX2). Comprehensive clinical evaluation (CT and MR-imaging, audiological and stabilometric examinations) of available members of this family revealed both already known (mixed progressive hearing loss) and additional (enlargement of semicircular canals and postural disorders) clinical DFNX2 features in affected males with c.975G&gt;A (p.Trp325*). Moreover, mild enlargement of semicircular canals, postural abnormalities and different types of hearing thresholds were found in female carrier of this POU3F4-variant."	"Direct reprogramming of mouse fibroblasts into neural cells via Porphyra yezoensis polysaccharide based high efficient gene co-delivery. The cell source for transplantation therapy is always a prerequisite question to be solved in clinical applications. Neural cells are considered non-regenerable, which highly restrict their application in the treatment for nerve injury. Therefore, neural trans-differentiation based on gene transfection provides a new solution to this issue. Compared to viral strategy, non-viral gene delivery systems are considered as a more promising way to achieve this aim. This study centers on a novel application of Porphyra yezoensis polysaccharide as a non-viral gene carrier for the neural trans-differentiation of mouse fibroblasts. Ethanediamine modified P. yezoensis polysaccharide (Ed-PYP) served as a gene carrier and a group of plasmids that encode Ascl1, Brn4, and Tcf3 (pABT) self-assembled into nanoparticles. Results demonstrated that Ed-PYP-pABT nanoparticles at Ed-PYP: pABT weight ratio of 40:1 was the optimal candidate for gene delivery. ELISA assay revealed the highest expression levels of NGF, BDNF and SHH at 14 days after last transfection. Immunofluorescence and western blot assays also showed robust expression of neural markers including Nestin, GFAP, β-3tubulin, NF200, GAP43 and MAP2, in induced 3T6 cells at this time point. Overall, these findings indicated that the P. yezoensis polysaccharide-based non-viral gene co-delivery system is a promising strategy for the generation of neural cells, which might facilitate the developments in the recovery of neural injuries."	"STRC Deletion is a Frequent Cause of Slight to Moderate Congenital Hearing Impairment in the Czech Republic. This study aimed to clarify the molecular epidemiology of hearing loss by identifying the responsible genes in patients without GJB2 mutations. Prospective genetic study. Tertiary referral hospital. Fifty one patients with bilateral sensorineural hearing loss, 20 men, and 31 women, mean age 24.9 years, range 3 to 64 years, from 49 families. GJB2 and deltaGJB6-D13S1830 mutations were excluded previously. Diagnostic. Sixty-nine genes reported to be causative of hearing loss were analyzed. Sequence capture technology, next-generation sequencing, and multiplex ligation-dependent probe amplification (MLPA) were used. Coverage of STRC was screened in Integrative Genomics Viewer software. Identification of causal pathogenic mutations in genes related to deafness. Five families (10%) had recessive STRC deletions or mutations. Five unrelated patients (10%) had recessive mutations in TMPRSS3, USH2A, PCDH15, LOXHD1, and MYO15A. Three families (6%) had autosomal dominant mutations in MYO6A, KCNQ4, and SIX1. One family (2%) had an X-linked POU3F4 mutation. Thus, we identified the cause of hearing loss in 28% of the families studied. Following GJB2, STRC was the second most frequently mutated gene in patients from the Czech Republic with hearing loss. To decrease the cost of testing, we recommend STRC deletion screening with MLPA before next-generation sequencing. The existence of a pseudogene and polymorphic STRC regions can lead to false-positive or false-negative results when copy number variation analysis is based on next-generation sequencing data."	"A novel missense variant in the nuclear localization signal of POU4F3 causes autosomal dominant non-syndromic hearing loss. Autosomal dominant non-syndromic hearing loss (ADNSHL) is genetically heterogeneous with more than 35 genes identified to date. Using a massively parallel sequencing panel targeting 159 deafness genes, we identified a novel missense variant of POU4F3 (c.982A&gt;G, p.Lys328Glu) which co-segregated with the deafness phenotype in a three-generation Taiwanese family with ADNSHL. This variant could be classified as a &quot;pathogenic variant&quot; according to the American College of Medical Genetics and Genomics guidelines. We then performed subcellular localization experiments and confirmed that p.Lys328Glu compromised transportation of POU4F3 from the cytoplasm to the nucleus. POU3F4 p.Lys328Glu was located within a bipartite nuclear localization signal (NLS), and was the first missense variant in bipartite NLS of POU4F3 validated in functional studies. These findings expanded the mutation spectrum of POU4F3 and provided insight into the pathogenesis associated with aberrant POU4F3 localization."	"Characterization of slow-cycling cells in the mouse cochlear lateral wall. Cochlear spiral ligament fibrocytes (SLFs) play essential roles in the physiology of hearing including ion recycling and the generation of endocochlear potential. In adult animals, SLFs can repopulate after damages, yet little is known about the characteristics of proliferating cells that support SLFs' self-renewal. Here we report in detail about the characteristics of cycling cells in the spiral ligament (SL). Fifteen P6 mice and six noise-exposed P28 mice were injected with 5-bromo-2'-deoxyuridine (BrdU) for 7 days and we chased BrdU retaining cells for as long as 60 days. Immunohistochemistry revealed that the BrdU positive IB4 (an endotherial marker) negative cells expressed an early SLF marker Pou3f4 but negative for cleaved-Caspase 3. Marker studies revealed that type 3 SLFs displayed significantly higher percentage of BrdU+ cells compared to other subtypes. Notably, the cells retained BrdU until P72, demonstrating they were dividing slowly. In the noise-damaged mice, in contrast to the loss of the other types, the number of type 3 SLFs did not altered and the BrdU incorporating- phosphorylated Histone H3 positive type 3 cells were increased from day 1 to 14 after noise exposure. Furthermore, the cells repopulating type 1 area, where the cells diminished profoundly after damage, were positive for the type 3 SLF markers. Collectively, in the latral wall of the cochlea, type 3 SLFs have the stem cell capacity and may contribute to the endogenous regeneration of lateral wall spiral ligament. Manipulating type 3 cells may be employed for potential regenerative therapies."	"A maternally inherited 8.05 Mb Xq21 deletion associated with Choroideremia, deafness, and mental retardation syndrome in a male patient. Deletions in Xq21 cause various congenital defects in males including choroideremia, deafness and mental retardation, depending on their size and gene content. Until now only a limited number of patients with Xq21 deletions has been reported. Here we describe a 17-year-old male with choroideremia, deafness, and mental retardation syndrome. Using SNP arrays, an 8.05 Mb deletion in Xq21 was identified inherited from the apparently healthy mother. The deleted region harbors 12 OMIM genes, of which POU3F4, CHM, and ZNF711 might have contributed to the patient's phenotype including hearing loss, poor vision, and intellectual disability. Moreover, the patient's mother exhibits a normal phenotype while carrying the same deletion, which is often observed in previous studies on female carriers in families with this syndrome. Our study confirms the causative effect between the Xq21 deletion in males and choroideremia, deafness and mental retardation."	"Exploration of the Brn4-regulated genes enhancing adult hippocampal neurogenesis by RNA sequencing. Adult hippocampal neurogenesis is essential for learning and memory, and its dysfunction is involved in neurodegenerative diseases. However, the molecular mechanisms underlying adult hippocampal neurogenesis are still largely unknown. Our previous studies indicated that the transcription factor Brn4 was upregulated and promoted neuronal differentiation of neural stem cells (NSCs) in the surgically denervated hippocampus in rats. In this study, we use high-throughput RNA sequencing to explore the molecular mechanisms underlying the enhancement of adult hippocampal neurogenesis induced by lentivirus-mediated Brn4 overexpression in vivo. After 10 days of the lentivirus injection, we found that the expression levels of genes related to neuronal development and maturation were significantly increased and the expression levels of genes related to NSC maintenance were significantly decreased, indicating enhanced neurogenesis in the hippocampus after Brn4 overexpression. Through RNA sequencing, we found that 658 genes were differentially expressed in the Brn4-overexpressed hippocampi compared with GFP-overexpressed controls. Many of these differentially expressed genes are involved in NSC division and differentiation. By using quantitative real-time PCR, we validated the expression changes of three genes, including Ctbp2, Notch2, and Gli1, all of which are reported to play key roles in neuronal differentiation of NSCs. Importantly, the expression levels of Ctbp2 and Notch2 were also significantly changed in the hippocampus of Brn4 KO mice, which indicates that the expression levels of Ctbp2 and Notch2 may be directly regulated by Brn4. Our current study provides a solid foundation for further investigation and identifies Ctbp2 and Notch2 as possible downstream targets of Brn4. © 2017 Wiley Periodicals, Inc."	"A POU3F4 Mutation Causes Nonsyndromic Hearing Loss in a Chinese X-linked Recessive Family. The molecular genetic research showed the association between X-linked hearing loss and mutations in POU3F4. This research aimed to identify a POU3F4 mutation in a nonsyndromic X-linked recessive hearing loss family. A series of clinical evaluations including medical history, otologic examinations, family history, audiologic testing, and a high-resolution computed tomography scan were performed for each patient. Bidirectional sequencing was carried out for all polymerase chain reaction products of the samples. Moreover, 834 controls with normal hearing were also tested. The pedigree showed X-linkage recessive inheritance pattern, and pathogenic mutation (c.499C&gt;T) was identified in the proband and his family member, which led to a premature termination prior to the entire POU domains. This mutation co-segregated with hearing loss in this family. No mutation of POU3F4 gene was found in 834 controls. A nonsense mutation is identified in a family displaying the pedigree consistent with X-linked recessive pattern in POU3F4 gene. In addition, we may provide molecular diagnosis and genetic counseling for this family."	"Novel and De Novo Mutations Extend Association of POU3F4 with Distinct Clinical and Radiological Phenotype of Hearing Loss. POU3F4 mutations (DFNX2) are the most prevalent among non-syndromic X-linked hearing loss (HL) identified to date. Clinical manifestations of DFNX2 usually comprise congenital HL either sensorineural or mixed, a tendency towards perilymphatic gusher during otologic surgery and temporal bone malformations. The aim of the present study was to screen for POU3F4 mutations in a group of 30 subjects with a suggestive clinical phenotype as well as a group (N = 1671-2018) of unselected hearing loss patients. We also planned to analyze audiological and radiological features in patients with HL caused by POU3F4 defects. The molecular techniques used to detect POU3F4 mutations included whole exome sequencing (WES), Sanger sequencing and real-time polymerase chain reaction. Hearing status was assessed with pure-tone audiometry and auditory brainstem response. Computer tomography scans were evaluated to define the pattern of structural changes in the temporal bones. Six novel (p.Gln27*, p.Glu187*, p.Leu217*, p.Gln275*, p.Gln306*, p.Val324Asp) and two known (p.Ala116fs141*, p.Leu208*) POU3F4 mutations were detected in the studied cohort. All probands with POU3F4 defects suffered from bilateral, prelingual, severe to profound HL. Morphological changes of the temporal bone in these patients presented a similar pattern, including malformations of the internal auditory canal, vestibular aqueduct, modiolus and vestibule. Despite different localization in the POU3F4 gene all mutations severely impair the protein structure affecting at least one functional POU3F4 domain, and results in similar and severe clinical manifestations. Sequencing of the entire POU3F4 gene is recommended in patients with characteristic temporal bone malformations. Results of POU3F4 mutation testing are important not only for a proper genetic counseling, but also for adequate preparation and conduction of a surgical procedure."	"Whole-genome scanning for the litter size trait associated genes and SNPs under selection in dairy goat (Capra hircus). Dairy goats are one of the most utilized domesticated animals in China. Here, we selected extreme populations based on differential fecundity in two Laoshan dairy goat populations. Utilizing deep sequencing we have generated 68.7 and 57.8 giga base of sequencing data, and identified 12,458,711 and 12,423,128 SNPs in the low fecundity and high fecundity groups, respectively. Following selective sweep analyses, a number of loci and candidate genes in the two populations were scanned independently. The reproduction related genes CCNB2, AR, ADCY1, DNMT3B, SMAD2, AMHR2, ERBB2, FGFR1, MAP3K12 and THEM4 were specifically selected in the high fecundity group whereas KDM6A, TENM1, SWI5 and CYM were specifically selected in the low fecundity group. A sub-set of genes including SYCP2, SOX5 and POU3F4 were localized both in the high and low fecundity selection windows, suggesting that these particular genes experienced strong selection with lower genetic diversity. From the genome data, the rare nonsense mutations may not contribute to fecundity, whereas nonsynonymous SNPs likely play a predominant role. The nonsynonymous exonic SNPs in SETDB2 and CDH26 which were co-localized in the selected region may take part in fecundity traits. These observations bring us a new insights into the genetic variation influencing fecundity traits within dairy goats."	"Facial nerve stimulation following cochlear implantation for X-linked stapes gusher syndrome leading to identification of a novel POU3F4 mutation. We report a case of a nine-year-old male who presented with facial nerve stimulation four years after cochlear implantation. Computed tomography was performed revealing a dilated internal auditory meatus and the cochlear implant electrode was found to be protruding into the fallopian canal at the level of the geniculate ganglion. Subsequent genetic analysis demonstrated X-linked deafness type 2 (DFNX2) caused by a novel c.769C &gt; T nucleotide change in the POU domain, class 3, transcription factor 4 gene (POU3F4). Inactivation of electrodes 1 and 19-21 successfully abated facial nerve stimulation."	"X-linked Malformation and Cochlear Implantation. To evaluate if cochlear implantation is safe and constitutes an option for hearing rehabilitation of children with x-linked inner ear malformation. Retrospective patient review in combination with a multidisciplinary follow-up. Tertiary referral hospital and cochlear implant program. Ten children with severe-profound mixed hearing loss and radiological findings consistent with Incomplete Partition type 3 cochlear malformation received cochlear implants during the years 2007 to 2015. Nine of the children had a mutation affecting the gene POU3F4 on Xq21. Cochlear implantation. Surgical events, intraoperative measures and electrical stimulation levels, hearing and spoken language abilities. In all, 15 cochlear implantations were performed. In three cases the electrode was found to be in the internal auditory canal on intraoperative x-ray and repositioned successfully. One child had a postoperative rhinorrhea confirmed to be cerebrospinal fluid but this resolved on conservative treatment. No severe complications occurred. Postoperative electrical stimulation levels were higher in 9 of 10 children, as compared with typically reported average levels in patients with a normal cochlea. Eight patients developed spoken language to various degrees while two were still at precommunication level. However, speech recognition scores were lower than average pediatric cases. Cochlear implantation is a safe procedure for children with severe-profound mixed hearing loss related to POU3F4 mutation inner ear malformation. The children develop hearing and spoken language but outcome is below average for pediatric CI recipients."	"Integrated transcriptome analysis of human iPS cells derived from a fragile X syndrome patient during neuronal differentiation. Fragile X syndrome (FXS) patients carry the expansion of over 200 CGG repeats at the promoter of fragile X mental retardation 1 (FMR1), leading to decreased or absent expression of its encoded fragile X mental retardation protein (FMRP). However, the global transcriptional alteration by FMRP deficiency has not been well characterized at single nucleotide resolution, i.e., RNA-seq. Here, we performed in-vitro neuronal differentiation of human induced pluripotent stem (iPS) cells that were derived from fibroblasts of a FXS patient (FXS-iPSC). We then performed RNA-seq and examined the transcriptional misregulation at each intermediate stage during in-vitro differentiation of FXS-iPSC into neurons. After thoroughly analyzing the transcriptomic data and integrating them with those from other platforms, we found up-regulation of many genes encoding TFs for neuronal differentiation (WNT1, BMP4, POU3F4, TFAP2C, and PAX3), down-regulation of potassium channels (KCNA1, KCNC3, KCNG2, KCNIP4, KCNJ3, KCNK9, and KCNT1) and altered temporal regulation of SHANK1 and NNAT in FXS-iPSC derived neurons, indicating impaired neuronal differentiation and function in FXS patients. In conclusion, we demonstrated that the FMRP deficiency in FXS patients has significant impact on the gene expression patterns during development, which will help to discover potential targeting candidates for the cure of FXS symptoms."	"Frequency and specific characteristics of the incomplete partition type III anomaly in children. To determine the frequency of the incomplete partition type III anomaly and the genetic and clinical features associated with POU3F4 mutations in children with hearing loss. Retrospective case series from 2000 to 2014 at the National Hospital Organization Tokyo Medical Center and collaborating hospitals. A total of 1,004 patients (from 938 families) who had hearing loss by 10 years of age and had undergone computed tomography scanning of their temporal bones were enrolled in this genetic, clinical, and radiological study. The incomplete partition type III anomaly was identified in six patients (0.6%), each of whom had an enlargement of the vestibular aqueduct at the end close to the vestibule. The six patients also had POU3F4 variants, and a genetic analysis revealed frameshift deletions in three patients, a missense variant in two patients of the same family, and a large deletion in one patient. Three of the six patients with POU3F4 variants were sporadic cases, and in one patient the genetic mutation occurred de novo. It was indicated that POU3F4 mutations can be predicted by incomplete partition type III anomaly by radiological examination of the inner ear. All six of the patients showed mixed hearing loss, but none showed fluctuations in hearing, which may be related to the lack of vestibular aqueduct enlargement at the operculum. 4 Laryngoscope, 127:1663-1669, 2017."	"Generation of Integration-free Induced Neural Stem Cells from Mouse Fibroblasts. The viral vector-mediated overexpression of the defined transcription factors, Brn4/Pou3f4, Sox2, Klf4, and c-Myc (BSKM), could induce the direct conversion of somatic fibroblasts into induced neural stem cells (iNSCs). However, viral vectors may be randomly integrated into the host genome thereby increasing the risk for undesired genotoxicity, mutagenesis, and tumor formation. Here we describe the generation of integration-free iNSCs from mouse fibroblasts by non-viral episomal vectors containing BSKM. The episomal vector-derived iNSCs (e-iNSCs) closely resemble control NSCs, and iNSCs generated by retrovirus (r-iNSCs) in morphology, gene expression profile, epigenetic status, and self-renewal capacity. The e-iNSCs are functionally mature, as they could differentiate into all the neuronal cell types both in vitro and in vivo Our study provides a novel concept for generating functional iNSCs using a non-viral, non-integrating, plasmid-based system that could facilitate their biomedical applicability."	"The transcription factor Pf-POU3F4 regulates expression of the matrix protein genes Aspein and Prismalin-14 in pearl oyster (Pinctada fucata). Matrix proteins play key roles in shell formation in the pearl oyster, but little is known about how these proteins are regulated. Here, two POU domain family members, Pf-POU2F1 and Pf-POU3F4, were cloned and characterized. Functional domain analysis revealed that both them have conserved POUS and POUH domains; these domains are important for transcription factor function. The tissue distributions of Pf-POU2F1 and Pf-POU3F4 mRNAs in pearl oyster revealed different expression patterns, and the expression of Pf-POU3F4 mRNA was relatively high in the mantle. The promoters of the matrix protein genes Aspein and Prismalin-14 were cloned using genome-walking PCR. Relatively high transcriptional activities of these promoters were detected in HEK-293T cells. In transient co-transfection assays, Pf-POU3F4 greatly up-regulated the promoter activities of the Aspein and Prismalin-14 genes in a dose-dependent manner. Structural integrity of Pf-POU3F4 was essential for its activation function. One region of the Aspein gene promoter, -181 to -77 bp, and two binding sites in the Prismalin-14 gene promoter, -359 to -337 bp and -100 to -73 bp, were required for activation of Pf-POU3F4. An electrophoresis mobility shift assay demonstrated that Pf-POU3F4 directly bound these sites. Pf-POU3F4 knockdown led to a decrease in Aspein and Prismalin-14 gene expression. Furthermore, expression levels for the Pf-POU3F4 gene were similar to those of the Aspein and Prismalin-14 genes during five development stages. Taken together, these results suggest that the transcription factor Pf-POU3F4 regulates expression of the matrix protein genes Aspein and Prismalin-14 in pearl oyster. The nucleotide sequence data of Pf-POU2F1 is available in the GenBank databases under the accession number KM588196. The nucleotide sequence data of Pf-POU3F4 is available in the GenBank databases under the accession number KM519606. The nucleotide sequence data of Aspein gene promoter is available in the GenBank databases under the accession number KM519607. The nucleotide sequence data of Prismalin-14 gene promoter is available in the GenBank databases under the accession number KM519601."	"Clinical observations and molecular variables of patients with hearing loss and incomplete partition type III. To analyze the clinical manifestations and genetic features of patients with hearing loss (HL) and incomplete partition (IP) type III malformation, and to evaluate speech performance after cochlear implantation (CI) in these patients. Individual retrospective cohort study. Of 206 probands with inner ear malformations (IEMs), we constructed a homogeneous cohort of 11 genetically documented IP type III (DFNX2). Mutations affecting POU3F4 were classified as extension (n = 2), truncation (n = 3), large genomic deletion (n = 2), or missense substitution (n = 4). Postoperative outcomes were rigorously assessed with focus on POU3F4 genotypes and compared with 80 age-matched implantees without IEMs. HL in our cohort was prelingual in onset irrespective of degree. Serviceable hearing was obtained by wearing conventional hearing aids in three, and eight subjects required CI. No correlation was found between mutation types and initial auditory phenotype. As for the eight cochlear implantees, average Categories of Auditory Perception score was &lt;1 preoperatively and 3.9 at 2 years post-CI. Speech performances improved over the first 3 months postoperatively in a manner comparable to implantees without IEMs. However, it then tended to slow down until 1 year postoperatively, leading to worse scores at 2 years than implantees without IEMs. Furthermore, this was more evident in those with a truncation or deletion mutation. CI surgeons should be aware that postoperative auditory performance may be not as good in IP type III patients as in patients without IEMs. In particular, our study implies that certain types of POU3F4 mutations may have poorer prognoses than other types after CI. 4. Laryngoscope, 126:E123-E128, 2016."	"Positive Outcomes and Surgical Strategies for Bilateral Cochlear Implantation in a Child With X-Linked Deafness. To recognize that bilateral cochlear implantation (CI) in X-linked deafness is safe, describe techniques to maximize successful electrode placement and minimize surgical risks, and recognize that normalization of hearing as well as language acquisition is achievable. A 6-month-old male patient presented with bilateral profound sensorineural hearing loss and was confirmed to have X-linked deafness secondary to POU3F4 gene mutation. Due to lack of benefit from amplification, he underwent bilateral CI in a staged fashion at 12 (right) and 15 months (left) of age. A transmastoid-facial recess approach was used bilaterally utilizing perimodiolar electrodes. High-flow gushers were controlled with muscle plugs. C-arm fluoroscopy was used during insertion of electrodes. Follow-up data are available for 12 months. No complications were encountered, including no postoperative cerebrospinal fluid (CSF) leakage or facial stimulation. Postoperative audiograms in aided conditions showed hearing thresholds &lt;40 dB. At 11 months following activation of his second CI, he scored in the normal range for his chronological age on standardized language measures. With careful preparation and the assistance of intraoperative fluoroscopy, CI in patients with congenital X-linked deafness can be done safely. Performing bilateral CI followed by dedicated auditory-verbal rehabilitation may allow patients to achieve normal language development."	"A 5.8 Mb interstitial deletion on chromosome Xq21.1 in a boy with intellectual disability, cleft palate, hearing impairment and combined growth hormone deficiency. Deletions of the long arm of chromosome X in males are a rare cause of X-linked intellectual disability. Here we describe a patient with an interstitial deletion of the Xq21.1 chromosome. In a 15 year boy, showing intellectual disability, short stature, hearing loss and dysmorphic facial features, a deletion at Xq21.1 was identified by array-CGH. This maternally inherited 5.8 Mb rearrangement encompasses 14 genes, including BRWD3 (involved in X-linked intellectual disability), TBX22 (a gene whose alterations have been related to the presence of cleft palate), POU3F4 (mutated in X-linked deafness) and ITM2A (a gene involved in cartilage development). Correlation between the clinical findings and the function of gene mapping within the deleted region confirms the causative role of this microrearrangement in our patient and provides new insight into a gene possibly involved in short stature."	"Identifying Children With Poor Cochlear Implantation Outcomes Using Massively Parallel Sequencing. Cochlear implantation is currently the treatment of choice for children with severe to profound hearing impairment. However, the outcomes with cochlear implants (CIs) vary significantly among recipients. The purpose of the present study is to identify the genetic determinants of poor CI outcomes. Twelve children with poor CI outcomes (the &quot;cases&quot;) and 30 &quot;matched controls&quot; with good CI outcomes were subjected to comprehensive genetic analyses using massively parallel sequencing, which targeted 129 known deafness genes. Audiological features, imaging findings, and auditory/speech performance with CIs were then correlated to the genetic diagnoses. We identified genetic variants which are associated with poor CI outcomes in 7 (58%) of the 12 cases; 4 cases had bi-allelic PCDH15 pathogenic mutations and 3 cases were homozygous for the DFNB59 p.G292R variant. Mutations in the WFS1, GJB3, ESRRB, LRTOMT, MYO3A, and POU3F4 genes were detected in 7 (23%) of the 30 matched controls. The allele frequencies of PCDH15 and DFNB59 variants were significantly higher in the cases than in the matched controls (both P &lt; 0.001). In the 7 CI recipients with PCDH15 or DFNB59 variants, otoacoustic emissions were absent in both ears, and imaging findings were normal in all 7 implanted ears. PCDH15 or DFNB59 variants are associated with poor CI performance, yet children with PCDH15 or DFNB59 variants might show clinical features indistinguishable from those of other typical pediatric CI recipients. Accordingly, genetic examination is indicated in all CI candidates before operation."	"A novel mutation in POU3F4 in a Chinese family with X-linked non-syndromic hearing loss. Based on the clinical manifestations of a hearing loss patient, the POU3F4 gene was tested for diagnosis of etiology. A comprehensive physical examination was performed on the proband to exclude abnormalities of other organs, and detailed audiological testing and temporal bone CT scan were also performed. Genomic DNA was extracted using the proband's peripheral blood leukocytes. Polymerase chain reactions (PCR) were performed in the coding sequence of the POU3F4 gene. Direct DNA sequencing was subsequently applied to screen the entire coding region of the POU3F4 gene. The proband had severe sensorineural hearing loss. Temporal CT showed bilateral cochlear incomplete partition, vestibule dysplasia, internal auditory canal fundus expansion, and cochlear interlink with the internal auditory canal fundus. A novel mutation (c.530C &gt; A (p.S177X)) in the POU3F4 gene was found in this patient, creating an new stop codon and was predicted to result in a truncated protein lacking normal POU3F4 transcription factor function. Through analysis of the POU3F4 gene and clinical manifestations in the patient, we conclude that a novel mutation may have resulted in a premature stop codon, contributing to the mutation of POU3F4 gene."	"Novel domain-specific POU3F4 mutations are associated with X-linked deafness: examples from different populations. Mutations in the POU3F4 gene cause X-linked deafness type 3 (DFN3), which is characterized by inner ear anomalies. Three Turkish, one Ecuadorian, and one Nigerian families were included based on either inner ear anomalies detected in probands or X-linked family histories. Exome sequencing and/or Sanger sequencing were performed in order to identify the causative DNA variants in these families. Four novel, c.707A&gt;C (p.(Glu236Ala)), c.772delG (p.(Glu258ArgfsX30)), c.902C&gt;T (p.(Pro301Leu)), c.987T&gt;C (p.(Ile308Thr)), and one previously reported mutation c.346delG (p.(Ala116ProfsX26)) in POU3F4, were identified. All mutations identified are predicted to affect the POU-specific or POU homeo domains of the protein and co-segregated with deafness in all families. Expanding the spectrum of POU3F4 mutations in different populations along with their associated phenotypes provides better understanding of their clinical importance and will be helpful in clinical evaluation and counseling of the affected individuals."	"De novo mutation in X-linked hearing loss-associated POU3F4 in a sporadic case of congenital hearing loss. In this report, we present a male patient with no family history of hearing loss, in whom we identified a novel de novo mutation in the POU3F4 gene. One hundred ninety-four (194) Japanese subjects from unrelated and nonconsanguineous families were enrolled in this study. We used targeted genomic enrichment and massively parallel sequencing of all known nonsyndromic hearing loss genes for identifying the genetic causes of hearing loss. A novel de novo frameshift mutation of POU3F4 to c.727_728insA (p.N244KfsX26) was identified. The patient was a 7-year-old male with congenital progressive hearing loss and inner ear deformity. Although the patient had received a cochlear implant, auditory skills were still limited. The patient also exhibited developmental delays similar to those previously associated with POU3F4 mutation. This is the first report of a mutation in POU3F4 causing hearing loss in a Japanese patient without a family history of hearing loss. This study underscores the importance of comprehensive genetic testing of patients with hearing loss for providing accurate prognostic information and guiding the optimal management of patient rehabilitation."	"Pou3f4-mediated regulation of ephrin-b2 controls temporal bone development in the mouse. The temporal bone encases conductive and sensorineural elements of the ear. Mutations of POU3F4 are associated with unique temporal bone abnormalities and X-linked mixed deafness (DFNX2/DFN3). However, the target genes and developmental processes controlled by POU3F4 transcription factor activity have remained largely uncharacterized. Ephrin-B2 (Efnb2) is a signaling molecule with well-documented effects on cell adhesion, proliferation, and migration. Our analyses of targeted mouse mutants revealed that Efnb2 loss-of-function phenocopies temporal bone abnormalities of Pou3f4 hemizygous null neonates: qualitatively identical malformations of the stapes, styloid process, internal auditory canal, and cochlear capsule were present in both mutants. Using failed/insufficient separation of the stapes and styloid process as a quantitative trait, we found that single gene Efnb2 loss-of-function and compound Pou3f4/Efnb2 loss-of-function caused a more severe phenotype than single gene Pou3f4 loss-of-function. Pou3f4 and Efnb2 gene expression domains overlapped at the site of impending stapes-styloid process separation and at subcapsular mesenchyme surrounding the cochlea; at both these sites, Efnb2 expression was attenuated in Pou3f4 hemizygous null mutants relative to control. Results of immunoprecipitation experiments using chromatin isolated from nascent middle ear mesenchyme supported the hypothesis of a physical association between Pou3f4 and specific non-coding sequence of Efnb2. We propose that Efnb2 is a target of Pou3f4 transcription factor activity and an effector of mesenchymal patterning during temporal bone development. "	"Strategy for the customized mass screening of genetic sensorineural hearing loss in koreans. Hearing loss is one of the most common sensorineural disorder. More than half of congenital bilateral profound deafness cases have been estimated to be attributed to genetic cause. Identification of genetic cause can provide valuable information. We developed new diagnostic strategy combining phenotype-driven candidate gene approach and targeted exome sequencing to find out the causative mutation of hearing loss. The causative mutation detection rates of this strategy were 78.1% and 54.8% in Korean multiplex families and sporadic severe to profound hearing loss families, respectively. The most frequent causative genes of Korean multiplex families were SLC26A4 and POU3F4. The other causative genes were MRNR1, WFS1, COCH, TECTA, MYO6, COL11A2, EYA4, GJB3, OTOF, STRC, MYO3A, and GJB2. The most frequent causative gene of Korean sporadic severe to profound hearing loss families was SLC26A4 followed by GJB2, CHD7, and CDH23. Based upon the results, the value of this strategy as a diagnostic tool seems to be promising. Although whole genome and exome sequencing have advanced as the development of next-generation sequencing, this new strategy could be a good screening and diagnostic tool to find the causative mutations. "	"Deficiency of transcription factor Brn4 disrupts cochlear gap junction plaques in a model of DFN3 non-syndromic deafness. Brn4, which encodes a POU transcription factor, is the gene responsible for DFN3, an X chromosome-linked, non-syndromic type of hearing loss. Brn4-deficient mice have a low endocochlear potential (EP), hearing loss, and ultrastructural alterations in spiral ligament fibrocytes, however the molecular pathology through which Brn4 deficiency causes low EP is still unclear. Mutations in the Gjb2 and Gjb6 genes encoding the gap junction proteins connexin26 (Cx26) and connexin30 (Cx30) genes, respectively, which encode gap junction proteins and are expressed in cochlear fibrocytes and non-sensory epithelial cells (i.e., cochlear supporting cells) to maintain the proper EP, are responsible for hereditary sensorineural deafness. It has been hypothesized that the gap junction in the cochlea provides an intercellular passage by which K+ is transported to maintain the EP at the high level necessary for sensory hair cell excitation. Here we analyzed the formation of gap junction plaques in cochlear supporting cells of Brn4-deficient mice at different stages by confocal microscopy and three-dimensional graphic reconstructions. Gap junctions from control mice, which are composed mainly of Cx26 and Cx30, formed linear plaques along the cell-cell junction sites with adjacent cells. These plaques formed pentagonal or hexagonal outlines of the normal inner sulcus cells and border cells. Gap junction plaques in Brn4-deficient mice did not, however, show the normal linear structure but instead formed small spots around the cell-cell junction sites. Gap junction lengths were significantly shorter, and the level of Cx26 and Cx30 was significantly reduced in Brn4-deficient mice compared with littermate controls. Thus the Brn4 mutation affected the assembly and localization of gap junction proteins at the cell borders of cochlear supporting cells, suggesting that Brn4 substantially contributes to cochlear gap junction properties to maintain the proper EP in cochleae, similar to connexin-related deafness. "	"Class III/IV POU transcription factors expressed in small cell lung cancer cells are involved in proneural/neuroendocrine differentiation. One-third of lung malignancies demonstrate a proneural/neuroendocrine phenotype or type of differentiation. However, it has not been clearly elucidated how proneural/neuroendocrine differentiation is controlled in lung cancers. We recently demonstrated that the POU3F2 gene plays a significant role in proneural/neuroendocrine differentiation of lung cancers. Because class III POU genes (POU3F1, POU3F2, POU3F3, and POU3F4) and class IV POU genes (POU4F1, POU4F2, and POU4F3) share similar properties in neural development, we analyzed the association between class III/IV POU genes and a proneural/neuroendocrine phenotype in lung cancers using seven small cell lung cancer (SCLC) cell lines and twelve non-SCLC (NSCLC) cell lines. Class III/IV POU gene expression was generally restricted to SCLC cells. However, the forced expression of class III/IV POU genes in the NSCLC cell lines induced the expression of neuroendocrine-specific markers (neural call adhesion molecule 1, synaptophysin, and chromogranin A) and proneural transcription factors (achaete-scute homolog-like 1, NeuroD1, and thyroid transcription factor 1) in various degrees. Furthermore, each class III/IV POU gene induced other class III/IV POU genes, suggesting the mutual induction of class III/IV POU genes. These findings suggest that the expression of class III/IV POU genes is important for the proneural/neuroendocrine differentiation of lung cancer cells. "	"HRCT and MRI findings in X-linked non-syndromic deafness patients with a POU3F4 mutation. The aim of this study was to analyze HRCT and MRI findings in patients with X-linked non-syndromic deafness and a POU3f4 mutation. HRCT and MRI data of four patients (males, 2-19 years old) with a POU3f4 mutation were collected and a retrospective review was performed. Cochlea, internal auditory canal (IAC), vestibule, semicircular canals, vestibular aqueduct, nerve canals in the IAC fundus, stapes and cochlear nerve were evaluated on 2D images (multi-planner reformation, MPR) and cochlear foramen on 3D images (CT virtual endoscopy, CTVE). Ten cases with normal hearing subjected to CT and MR exams served as controls. Inner ear malformations were bilateral and symmetrical. Cochlear malformation was shown to consist of as a relatively normal outer coat shape, absence of a cochlear modilous, and a direct intercommunication between the IAC and cochlear inner cavity. The lateral portion of the IAC was dilated. A spiral cochlear inner cavity was observed with CTVE images versus a helical cochlear nerve foramen as seen in controls. The labyrinthine facial nerve canal and superior vestibular nerve canal were enlarged. The Bill's bar was hypertrophic and partially pneumatized. A thickened stapes footplate was present and a fissura ante fenestram was absent in seven ears examined. A column shaped stapes was observed in one ear. The absence of a cochlear modilous with a dilated lateral IAC and thickened stapes footplate were the remarkable features observed with imaging these in X-linked non-syndromic deafness patients with a POU3F4 mutation. Preoperative recognition of the image features in these patients is important because it precludes stapedectomy and indicates the risks in the surgery of cochlear implantation including CSF gusher and electrode insertion into IAC."	"A genome-wide search for quantitative trait loci affecting the cortical surface area and thickness of Heschl's gyrus. Heschl's gyrus (HG) is a core region of the auditory cortex whose morphology is highly variable across individuals. This variability has been linked to sound perception ability in both speech and music domains. Previous studies show that variations in morphological features of HG, such as cortical surface area and thickness, are heritable. To identify genetic variants that affect HG morphology, we conducted a genome-wide association scan (GWAS) meta-analysis in 3054 healthy individuals using HG surface area and thickness as quantitative traits. None of the single nucleotide polymorphisms (SNPs) showed association P values that would survive correction for multiple testing over the genome. The most significant association was found between right HG area and SNP rs72932726 close to gene DCBLD2 (3q12.1; P=2.77 × 10(-7) ). This SNP was also associated with other regions involved in speech processing. The SNP rs333332 within gene KALRN (3q21.2; P=2.27 × 10(-6) ) and rs143000161 near gene COBLL1 (2q24.3; P=2.40 × 10(-6) ) were associated with the area and thickness of left HG, respectively. Both genes are involved in the development of the nervous system. The SNP rs7062395 close to the X-linked deafness gene POU3F4 was associated with right HG thickness (Xq21.1; P=2.38 × 10(-6) ). This is the first molecular genetic analysis of variability in HG morphology."	"Foxa1 and Foxa2 regulate α-cell differentiation, glucagon biosynthesis, and secretion. The Forkhead box A transcription factors are major regulators of glucose homeostasis. They show both distinct and redundant roles during pancreas development and in adult mouse β-cells. In vivo ablation studies have revealed critical implications of Foxa1 on glucagon biosynthesis and requirement of Foxa2 in α-cell terminal differentiation. In order to examine the respective role of these factors in mature α-cells, we used small interfering RNA (siRNA) directed against Foxa1 and Foxa2 in rat primary pancreatic α-cells and rodent α-cell lines leading to marked decreases in Foxa1 and Foxa2 mRNA levels and proteins. Both Foxa1 and Foxa2 control glucagon gene expression specifically through the G2 element. Although we found that Foxa2 controls the expression of the glucagon, MafB, Pou3f4, Pcsk2, Nkx2.2, Kir6.2, and Sur1 genes, Foxa1 only regulates glucagon gene expression. Interestingly, the Isl1 and Gipr genes were not controlled by either Foxa1 or Foxa2 alone but by their combination. Foxa1 and Foxa2 directly activate and bind the promoter region the Nkx2.2, Kir6.2 and Sur1, Gipr, Isl1, and Pou3f4 genes. We also demonstrated that glucagon secretion is affected by the combined effects of Foxa1 and Foxa2 but not by either one alone. Our results indicate that Foxa1 and Foxa2 control glucagon biosynthesis and secretion as well as α-cell differentiation with both common and unique target genes."	"Analysis of Mll1 deficiency identifies neurogenic transcriptional modules and Brn4 as a factor for direct astrocyte-to-neuron reprogramming. Mixed lineage leukemia-1 (Mll1) epigenetically regulates gene expression patterns that specify cellular identity in both embryonic development and adult stem cell populations. In the adult mouse brain, multipotent neural stem cells (NSCs) in the subventricular zone generate new neurons throughout life, and Mll1 is required for this postnatal neurogenesis but not for glial cell differentiation. Analysis of Mll1-dependent transcription may identify neurogenic genes useful for the direct reprogramming of astrocytes into neurons. To identify Mll1-dependent transcriptional modules and to determine whether genes in the neurogenic modules can be used to directly reprogram astrocytes into neurons. We performed gene coexpression module analysis on microarray data from differentiating wild-type and Mll1-deleted subventricular zone NSCs. Key developmental regulators belonging to the neurogenic modules were overexpressed in Mll1-deleted cells and cultured cortical astrocytes, and cell phenotypes were analyzed by immunocytochemistry and electrophysiology. Transcriptional modules that correspond to neurogenesis were identified in wild-type NSCs. Modules related to astrocytes and oligodendrocytes were enriched in Mll1-deleted NSCs, consistent with their gliogenic potential. Overexpression of genes selected from the neurogenic modules enhanced the production of neurons from Mll1-deleted cells, and overexpression of Brn4 (Pou3f4) in nonneurogenic cortical astroglia induced their transdifferentiation into electrophysiologically active neurons. Our results demonstrate that Mll1 is required for the expression of neurogenic but not gliogenic transcriptional modules in a multipotent NSC population and further indicate that specific Mll1-dependent genes may be useful for direct reprogramming strategies."	"Brn4 and TH synergistically promote the differentiation of neural stem cells into dopaminergic neurons. Neural stem cells (NSCs) are pluripotent cells capable of differentiation into dopaminergic (DA) neurons, which are the major cell types damaged in Parkinson's disease (PD). Therefore, NSCs are considered the most promising cell source for cell replacement therapy of PD. However, the poor differentiation and maturation of DA neurons and decreased cell survival after transplantation are a challenge. We have previously demonstrated that Brn4, a member of the POU domain family of transcription factors, induced the differentiation of NSCs into neurons and promoted their maturation. In this study, we directly transduced tyrosine hydroxylase (TH), the rate-limiting enzyme in dopamine biosynthesis, into NSCs to induce DA neuronal differentiation. However, these DA neurons were morphologically immature and seldom expressed dopamine transporter (DAT), a late marker of mature DA neurons. In contrast, TH co-transfected with Brn4 generated increased number of mature DA neurons. Furthermore, Brn4 significantly induced the expression of glial cell line-derived neurotrophic factor (GDNF) with its receptors GFRα-1 and Ret, which may contribute to the maturation and survival of differentiated DA neurons. Our findings may be of future importance for the use of NSCs in cell replacement therapy of PD. "	"X-linked hearing loss: two gene mutation examples provide generalizable implications for clinical care. To describe the inheritance patterns and auditory phenotype features of 3 Canadian families with mutations in 2 X-linked &quot;deafness&quot; genes (DFNX). Audiological, medical, and family histories were collected and family members interviewed to compare hearing thresholds and case histories between cases with mutations in SMPX versus POU3F4. The family pedigrees reveal characteristic X-linked inheritance patterns. Phenotypic features associated with the SMPX (DFNX4) mutation include early onset in males with rapid progression from mild and flat to sloping sensorineural loss, with highly variable onset and hearing loss severity in females. In contrast, phenotypic features associated with the POU3F4 (DFNX2) mutation are characterized by an early onset, mixed hearing loss with fluctuation in males, and a normal hearing phenotype reported for females. The study shows how this unique inheritance pattern and both gender and mutation-specific phenotype variations can alert audiologists to the presence of X-linked genetic etiologies in their clinical practice. By incorporating this knowledge into clinical decision making, audiologists can facilitate the early identification of X-linked hearing loss and contribute to the effective team management of affected families."	"Direct conversion of mouse fibroblasts into induced neural stem cells. Terminally differentiated cells can be directly converted into different types of somatic cells by using defined factors, thus circumventing the pluripotent state. However, low reprogramming efficiency, along with the absence of proliferation of some somatic cell types, makes it difficult to generate large numbers of cells with this method. Here we describe a protocol to directly convert mouse fibroblasts into self-renewing induced neural stem cells (iNSCs) that can be expanded in vitro, thereby overcoming the limitations associated with low reprogramming efficiency. The four transcription factors required for direct conversion into iNSCs (Sox2, Klf4, Myc (also known as c-Myc) and Pou3f4 (also known as Brn4)) do not generate a pluripotent cell state, and thus the risk for tumor formation after transplantation is reduced. By following the current protocol, iNSCs are observed 4-5 weeks after transduction. Two additional months are required to establish clonal iNSC cell lines that exhibit retroviral transgene silencing and that differentiate into neurons, astrocytes and oligodendrocytes. "	"De novo large genomic deletions involving POU3F4 in incomplete partition type III inner ear anomaly in East Asian populations and implications for genetic counseling. The aim of this study was to understand the prevalence and molecular genetic etiology of incomplete partition type III (IP type III) anomaly in Koreans. We also attempted to verify the prevalence of genomic deletions in the DFNX2 locus and to look for association between inheritance patterns and mutation type in East Asian IP type III subjects. Retrospective case review. Tertiary referral center. Subjects with IP type III anomaly and their biological mothers. Sanger sequencing, array-comparative genomic hybridization (aCGH), and PCR were performed. We also analyzed the type and inheritance of the causative genetic abnormality in East Asian DFNX2 patients. Mutation type and occurrence. We identified IP type III in 10 (4.8%) of 206 patients with an inner ear abnormality. We confirmed an etiologic homogeneity, DFNX2, of the IP type III in this Korean population. Two (20%) of the 10 DFNX2 carried a large genomic deletion affecting POU3F4, as proved by aCGH. PCR confirmed that the 2 deletions occurred de novo. Genetic alteration occurred de novo in 29.4% (5/17) of all reported Korean IP type III cases. From this study and literature review, we observed a striking difference of de novo occurrence rate (75% versus 12.5%, p = 0.032) between large genomic deletions and point mutations in East Asian population. Our data suggest that different POU3F4 mutations might show different recurrence rate in siblings of the IP type III families, especially in East Asian population. Genetic counseling should be provided accordingly."	"A modular gain-of-function approach to generate cortical interneuron subtypes from ES cells. Whereas past work indicates that cortical interneurons (cINs) can be generically produced from stem cells, generating large numbers of specific subtypes of this population has remained elusive. This reflects an information gap in our understanding of the transcriptional programs required for different interneuron subtypes. Here, we have utilized the directed differentiation of stem cells into specific subpopulations of cortical interneurons as a means to identify some of these missing factors. To establish this approach, we utilized two factors known to be required for the generation of cINs, Nkx2-1 and Dlx2. As predicted, their regulated transient expression greatly improved the differentiation efficiency and specificity over baseline. We extended upon this &quot;cIN-primed&quot; model in order to establish a modular system whereby a third transcription factor could be systematically introduced. Using this approach, we identified Lmo3 and Pou3f4 as genes that can augment the differentiation and/or subtype specificity of cINs in vitro. "	"X-linked deafness-2 (DFNX2) phenotype associated with a paracentric inversion upstream of POU3F4. The authors report on a 7-year-old male, designated FR, who has severe sensorineural hearing loss. Features include a round face, hypertelorism, epicanthal folds, and flat nasal root. Although there were early developmental concerns regarding FR, all but his speech delay resolved when he was placed in an educational program that accommodated his hearing loss. Genetic studies were performed to investigate genetic causes for his hearing loss. History, physical examination, audiologic assessment, and imaging were performed according to usual practice. FMR1,GJB2,GJB6, and POU3F4 genes were sequenced. Chromosomal studies consisted of karyotyping and breakpoint analysis by fluorescence in situ hybridization (FISH). Results from FMR1,GJB2,GJB6, and POU3F4 sequencing and echocardiography, electrocardiogram, and abdominal ultrasound were normal. A computed tomography (CT) scan revealed a large fundus of the internal auditory canals and absence of the bony partition between the fundus and the adjacent cochlear turns, with a widened modiolus bilaterally. FR's CT findings were consistent with those described in persons with X-linked deafness-2 (DFNX2) hereditary deafness. FR's karyotype was 46,inv(X)(q13q24),Y.ish inv(X)(XIST+)mat. FISH refined the breakpoints to inv(X)(q21.1q22.3). The Xq21.1 breakpoint was narrowed to a 25-kb region 450 kb centromeric to the DFNX2 gene, POU3F4. There are rare case reports of DFNX2 patients with chromosomal rearrangements positioned centromeric to POU3F4 and no mutations within the gene. Authors hypothesized that FR's hearing loss was caused by dysregulation of POU3F4 due to separation from regulatory elements affected by the inversion."	"Diagnostic application of targeted resequencing for familial nonsyndromic hearing loss. Identification of causative genes for hereditary nonsyndromic hearing loss (NSHL) is important to decide treatment modalities and to counsel the patients. Due to the genetic heterogeneity in sensorineural genetic disorders, the high-throughput method can be adapted for the efficient diagnosis. To this end, we designed a new diagnostic pipeline to screen all the reported candidate genes for NSHL. For validation of the diagnostic pipeline, we focused upon familial NSHL cases that are most likely to be genetic, rather than to be infectious or environmental. Among the 32 familial NSHL cases, we were able to make a molecular genetic diagnosis from 12 probands (37.5%) in the first stage by their clinical features, characteristic inheritance pattern and further candidate gene sequencing of GJB2, SLC26A4, POU3F4 or mitochondrial DNA. Next we applied targeted resequencing on 80 NSHL genes in the remaining 20 probands. Each proband carried 4.8 variants that were not synonymous and had the occurring frequency of less than three among the 20 probands. These variants were then filtered out with the inheritance pattern of the family, allele frequency in normal hearing 80 control subjects, clinical features. Finally NSHL-causing candidate mutations were identified in 13(65%) of the 20 probands of multiplex families, bringing the total solve rate (or detection rate) in our familial cases to be 78.1% (25/32) Damaging mutations discovered by the targeted resequencing were distributed in nine genes such as WFS1, COCH, EYA4, MYO6, GJB3, COL11A2, OTOF, STRC and MYO3A, most of which were private. Despite the advent of whole genome and whole exome sequencing, we propose targeted resequencing and filtering strategy as a screening and diagnostic tool at least for familial NSHL to find mutations based upon its efficacy and cost-effectiveness."	"Tricellulin deficiency affects tight junction architecture and cochlear hair cells. The two compositionally distinct extracellular cochlear fluids, endolymph and perilymph, are separated by tight junctions that outline the scala media and reticular lamina. Mutations in TRIC (also known as MARVELD2), which encodes a tricellular tight junction protein known as tricellulin, lead to nonsyndromic hearing loss (DFNB49). We generated a knockin mouse that carries a mutation orthologous to the TRIC coding mutation linked to DFNB49 hearing loss in humans. Tricellulin was absent from the tricellular junctions in the inner ear epithelia of the mutant animals, which developed rapidly progressing hearing loss accompanied by loss of mechanosensory cochlear hair cells, while the endocochlear potential and paracellular permeability of a biotin-based tracer in the stria vascularis were unaltered. Freeze-fracture electron microscopy revealed disruption of the strands of intramembrane particles connecting bicellular and tricellular junctions in the inner ear epithelia of tricellulin-deficient mice. These ultrastructural changes may selectively affect the paracellular permeability of ions or small molecules, resulting in a toxic microenvironment for cochlear hair cells. Consistent with this hypothesis, hair cell loss was rescued in tricellulin-deficient mice when generation of normal endolymph was inhibited by a concomitant deletion of the transcription factor, Pou3f4. Finally, comprehensive phenotypic screening showed a broader pathological phenotype in the mutant mice, which highlights the non-redundant roles played by tricellulin. "	"A prenatally ascertained, maternally inherited 14.8 Mb duplication of chromosomal bands Xq13.2-q21.31 associated with multiple congenital abnormalities in a male fetus. Duplications of the X chromosome are rare cytogenetic findings, and have been associated with an abnormal phenotype in the male offspring of apparently normal or near normal female carriers. We report on the prenatal diagnosis of a duplication on the long arm of chromosome X from chromosomal band Xq13.2 to q21.31 in a male fetus with increased nuchal translucency in the first trimester and polyhydramnios at 22 weeks of gestation. Amniocentesis was undertaken and cytogenetic analysis revealed additional chromosomal material in the long arm of chromosome X at position Xq13. Analysis with high resolution array CGH revealed the additional material is in fact a duplication of the region Xq13.2-q21.13. The duplication is 14.8 Mb in size and includes fourteen genes: SLC16A2, KIAA2022, ABCB7, ZDHHC15, ATRX, MAGT1, ATP7A, PGK1, TBX22, BRWD3, POU3F4, ZNF711, POF1B and CHM. Analysis of the parents revealed the mother to be a carrier of the same duplication. After elected termination of the pregnancy at 28 weeks a detailed autopsy of the fetus allowed for genotype-phenotype correlations."	"The BAF complex interacts with Pax6 in adult neural progenitors to establish a neurogenic cross-regulatory transcriptional network. Numerous transcriptional regulators of neurogenesis have been identified in the developing and adult brain, but how neurogenic fate is programmed at the epigenetic level remains poorly defined. Here, we report that the transcription factor Pax6 directly interacts with the Brg1-containing BAF complex in adult neural progenitors. Deletion of either Brg1 or Pax6 in the subependymal zone (SEZ) causes the progeny of adult neural stem cells to convert to the ependymal lineage within the SEZ while migrating neuroblasts convert to different glial lineages en route to or in the olfactory bulb (OB). Genome-wide analyses reveal that the majority of genes downregulated in the Brg1 null SEZ and OB contain Pax6 binding sites and are also downregulated in Pax6 null SEZ and OB. Downstream of the Pax6-BAF complex, we find that Sox11, Nfib, and Pou3f4 form a transcriptional cross-regulatory network that drives neurogenesis and can convert postnatal glia into neurons. Taken together, elements of our work identify a tripartite effector network activated by Pax6-BAF that programs neuronal fate. "	"A phylomedicine approach to understanding the evolution of auditory sensory perception and disease in mammals. Hereditary deafness affects 0.1% of individuals globally and is considered as one of the most debilitating diseases of man. Despite recent advances, the molecular basis of normal auditory function is not fully understood and little is known about the contribution of single-nucleotide variations to the disease. Using cross-species comparisons of 11 'deafness' genes (Myo15, Ush1 g, Strc, Tecta, Tectb, Otog, Col11a2, Gjb2, Cldn14, Kcnq4, Pou3f4) across 69 evolutionary and ecologically divergent mammals, we elucidated whether there was evidence for: (i) adaptive evolution acting on these genes across mammals with similar hearing capabilities; and, (ii) regions of long-term evolutionary conservation within which we predict disease-associated mutations should occur. We find evidence of adaptive evolution acting on the eutherian mammals in Myo15, Otog and Tecta. Examination of selection pressures in Tecta and Pou3f4 across a taxonomic sample that included a wide representation of auditory specialists, the bats, did not uncover any evidence for a role in echolocation. We generated 'conservation indices' based on selection estimates at nucleotide sites and found that known disease mutations fall within sites of high evolutionary conservation. We suggest that methods such as this, derived from estimates of evolutionary conservation using phylogenetically divergent taxa, will help to differentiate between deleterious and benign mutations."	"Cytoplasmic mislocalization of POU3F4 due to novel mutations leads to deafness in humans and mice. POU3F4 is a POU domain transcription factor that is required for hearing. In the ear, POU3F4 is essential for mesenchymal remodeling of the bony labyrinth and is the causative gene for DFNX2 human nonsyndromic deafness. Ear abnormalities underlie this form of deafness, characterized previously in multiple spontaneous, radiation-induced and transgenic mouse mutants. Here, we report three novel mutations in the POU3F4 gene that result in profound hearing loss in both humans and mice. A p.Gln79* mutation was identified in a child from an Israeli family, revealed by massively parallel sequencing (MPS). This strategy demonstrates the strength of MPS for diagnosis with only one affected individual. A second mutation, p.Ile285Argfs*43, was identified by Sanger sequencing. A p.Cys300* mutation was found in an ENU-induced mutant mouse, schwindel (sdl), by positional cloning. The mutation leads to a predicted truncated protein, similar to the human mutations, providing a relevant mouse model. The p.Ile285Argfs*43 and p.Cys300* mutations lead to a shift of Pou3f4 nuclear localization to the cytoplasm, demonstrated in cellular localization studies and in the inner ears of the mutant mice. The discovery of these mutations facilitates a deeper comprehension of the molecular basis of inner ear defects due to mutations in the POU3F4 transcription factor. "	"Audiological and surgical evidence for the presence of a third window effect for the conductive hearing loss in DFNX2 deafness irrespective of types of mutations. The objective of this study was to clarify the cause of the air-bone gap in incomplete partition (IP) type III cases according to the POU3F4 gene (DFNX2) mutation type. A retrospective analysis of patient medical records was done in a tertiary referral medical center. Five IP type III patients proved to be carrying a mutation in or affecting POU3F4. The hearing and the middle ear status at either exploratory tympanotomy or cochlear implantation from these DFNX2 cases was reviewed. Four of five unrelated IP type III patients harbored a point mutation of POU3F4 and the fifth patient carried a large genomic deletion upstream to POU3F4. Two of the four DFNX2 patients carrying a point mutation had moderate to severe mixed hearing loss with a substantial amount of air-bone gap. These patients underwent exploratory tympanotomy to identify the cause of their hearing loss. The other three patients, including one carrying a large deletion, had profound hearing loss at presentation and received a cochlear implant. In the exploratory tympanotomy group with a substantial amount of air-bone gap and a point mutation (n = 2), one patient had a perfect ossicular chain with normal mobility, a positive ipsilateral stapedial reflex, and a positive round window reflex. In the cochlear implantation group (n = 3), we found a stapes with normal mobility and a positive round window reflex in one patient who harbored a large genomic deletion upstream to POU3F4. We concluded that the probable presence of the third window effect is not limited to the particular type of POU3F4 mutation."	"Pathfinding of corticothalamic axons relies on a rendezvous with thalamic projections. Major outputs of the neocortex are conveyed by corticothalamic axons (CTAs), which form reciprocal connections with thalamocortical axons, and corticosubcerebral axons (CSAs) headed to more caudal parts of the nervous system. Previous findings establish that transcriptional programs define cortical neuron identity and suggest that CTAs and thalamic axons may guide each other, but the mechanisms governing CTA versus CSA pathfinding remain elusive. Here, we show that thalamocortical axons are required to guide pioneer CTAs away from a default CSA-like trajectory. This process relies on a hold in the progression of cortical axons, or waiting period, during which thalamic projections navigate toward cortical axons. At the molecular level, Sema3E/PlexinD1 signaling in pioneer cortical neurons mediates a &quot;waiting signal&quot; required to orchestrate the mandatory meeting with reciprocal thalamic axons. Our study reveals that temporal control of axonal progression contributes to spatial pathfinding of cortical projections and opens perspectives on brain wiring."	"Transplantation of neural stem cells co-transfected with Nurr1 and Brn4 for treatment of Parkinsonian rats. Neural stem cells (NSCs) tranplantation has great potential for the treatment of neurodegenerative disease such as Parkinson's disease (PD). However, the usage of NSCs is limited because the differentiation of NSCs into specific dopaminergic neurons has proven difficult. We have recently demonstrated that transgenic expression of Nurr1 could induce the differentiation of NSCs into tyrosine hydroxylase (TH) immunoreactive dopaminergic neurons, and forced co-expression of Nurr1 with Brn4 caused a dramatic increase in morphological and phenotypical maturity of these neurons. In this study, we investigated the effect of transplanted NSCs in PD model rats. The results showed that overexpression of Nurr1 promoted NSCs to differentiate into dopaminergic neurons in vivo, increased the level of dopamine (DA) neurotransmitter in the striatum, resulting in behavioral improvement of PD rats. Importantly, co-expression of Nurr1 and Brn4 in NSCs significantly increased the maturity and viability of dopaminergic neurons, further raised the DA amount in the striatum and reversed the behavioral deficit of the PD rats. Our findings provide a new potential and strategy for the use of NSCs in cell replacement therapy for PD."	"Destabilization and mislocalization of POU3F4 by C-terminal frameshift truncation and extension mutation. Most X-linked nonsyndromic hearing loss is caused by various types of mutations of the POU domain class 3 transcription factor 4 gene (POU3F4). We found five unique missense and frameshift truncation and extension mutations in Korean patients. Two missense mutations (p.Thr211Met and p.Gln229Arg) disturbed transcriptional activity. Two frameshift extension mutations (p.Thr354GlnfsX115 and p.X362ArgextX113) were located outside of POU domain and nuclear localization signal (NLS) at the C-terminus. POU3F4 protein levels were low and could be restored by MG132, a proteasome inhibitor, in vitro. These mutant POU3F4 proteins were exclusively localized to the cytoplasm and did not have transcriptional activity. Frameshift mutation (p.Leu317PhefsX12) in POU3F4 leads to the truncation of the C-terminal 44 amino acids spanning the POU domain and NLS. This frameshift truncation mutant protein was located in both the nucleus and cytoplasm and was present at low protein levels. This mutant was also transcriptionally inactive, even in the presence of MG132. From these results, we conclude that frameshift truncation and extension mutations in the C-terminus of POU3F4 lead to cytoplasmic localization and subsequent proteosomal degradation due to structural aberrations, which cause transcriptional inactivity and thus nonsyndromic hearing loss."	"[Genetic aspects of congenital sensorineural hearing loss]. Hearing loss is the most common sensory disability with an incidence of one over 1000 newborns. Hearing loss may be caused by environmental and genetic factors; inherited causes are assumed in two thirds of cases. There is a great clinical and genetic heterogenicity. All inheritance modes have been described. Mutations in the GJB2 gene, which encodes connexin 26, are mainly responsible for sensorineural deafness resulting in prelingual non syndromic autosomal recessive phenotypes DFNB1. The 35 delG mutation of this gene is very frequent (70% of the cases). Thus, 35 delG is, with the delta F508 mutation of the CFTR gene, the most frequent human pathogenic mutation known. Hearing loss might also be associated with other clinical features. Some of these syndromes, including hearing loss, have to be looked for systematically because of their frequency, of their possible clinical presentation as an isolated hearing loss and of the possibility of a medical treatment."	"[Prenatal genetic test and clinical guidance for 213 hereditary deaf families]. To summarize the workflow, strategy and experience of prenatal genetic test for deafness based on the 6-year clinical practice. There were 213 families who received prenatal test from 2005 to 2011. Among the 213 families, 205 families had had one deaf child, including 204 couples with normal hearing and one couple of the deaf husband and normal wife, 8 families including 6 couples with normal hearing and 2 deaf couples, had no child before test. Genomic and mitochondrial DNA of each subject was extracted from whole blood. The etiology and recurrent risks in 212 families were confirmed by means of the genetic test of GJB2, SLC26A4 and mtDNA 12sRNA, but one family carried POU3F4 c.647G &gt; A heterozygous mutation causing X-linked hereditary hearing impairment confirmed by pedigree study. The prenatal test was carried out during the pregnancy of all mothers from 11 to 30 weeks, and the following genetic information and counseling were supplied based on the results. The recurrent risk was 25% in 209 families, including 204 families with one deaf child and 5 families without child, among which all couples were GJB2 or SLC26A4 mutation carriers and deaf children were caused by homozygous or compound GJB2/SLC26A4 mutations; The recurrent risk was 50% in 3 families, the father and his child in one family had compound SLC26A4 mutations and the mother with heterozygous SLC26A4 mutation, the wife had POU3F4 c.647G &gt; A heterozygous mutation in another one family, and the husband with compound SLC26A4 mutations and the wife with mtDNA A1555G mutation and heterozygous SLC26A4 mutation simultaneously happened in the rest one family; The recurrent risk was 100% in one family of the deaf couple who were both found to carry homozygous or compound GJB2 mutations, and the deaf wife got pregnant by artificial insemination with the sperm from the local Human Sperm Bank. 226 times of prenatal test were applied in all 213 families that 11 families of them received prenatal test twice, and one family received three times. 46 times of prenatal testing showed that the fetuses carried parental mutations simultaneously or the same mutations with probands; while 180 times of prenatal test showed that the fetuses carried only one parental mutation or did not carry any mutation from parents. The following visit showed that all of these 180 families had given birth to babies who were all revealed to have normal hearing by new born hearing screening test. Prenatal diagnosis for deafness assisted by genetic test can provide efficient information about offspring's hearing condition, and the normative workflow and precise strategy highly guarantee the safe and favorable implementation of prenatal diagnosis."	"Direct reprogramming of fibroblasts into neural stem cells by defined factors. Recent studies have shown that defined sets of transcription factors can directly reprogram differentiated somatic cells to a different differentiated cell type without passing through a pluripotent state, but the restricted proliferative and lineage potential of the resulting cells limits the scope of their potential applications. Here we show that a combination of transcription factors (Brn4/Pou3f4, Sox2, Klf4, c-Myc, plus E47/Tcf3) induces mouse fibroblasts to directly acquire a neural stem cell identity-which we term as induced neural stem cells (iNSCs). Direct reprogramming of fibroblasts into iNSCs is a gradual process in which the donor transcriptional program is silenced over time. iNSCs exhibit cell morphology, gene expression, epigenetic features, differentiation potential, and self-renewing capacity, as well as in vitro and in vivo functionality similar to those of wild-type NSCs. We conclude that differentiated cells can be reprogrammed directly into specific somatic stem cell types by defined sets of specific transcription factors."	"Common molecular etiologies are rare in nonsyndromic Tibetan Chinese patients with hearing impairment. Thirty thousand infants are born every year with congenital hearing impairment in mainland China. Racial and regional factors are important in clinical diagnosis of genetic deafness. However, molecular etiology of hearing impairment in the Tibetan Chinese population living in the Tibetan Plateau has not been investigated. To provide appropriate genetic testing and counseling to Tibetan families, we investigated molecular etiology of nonsyndromic deafness in this population. A total of 114 unrelated deaf Tibetan children from the Tibet Autonomous Region were enrolled. Five prominent deafness-related genes, GJB2, SLC26A4, GJB6, POU3F4, and mtDNA 12S rRNA, were analyzed. Inner ear development was evaluated by temporal CT. A total of 106 Tibetan hearing normal individuals were included as genetic controls. For radiological comparison, 120 patients, mainly of Han ethnicity, with sensorineural hearing loss were analyzed by temporal CT. None of the Tibetan patients carried diallelic GJB2 or SLC26A4 mutations. Two patients with a history of aminoglycoside usage carried homogeneous mtDNA 12S rRNA A1555G mutation. Two controls were homozygous for 12S rRNA A1555G. There were no mutations in GJB6 or POU3F4. A diagnosis of inner ear malformation was made in 20.18% of the Tibetan patients and 21.67% of the Han deaf group. Enlarged vestibular aqueduct, the most common inner ear deformity, was not found in theTibetan patients, but was seen in 18.33% of the Han patients. Common molecular etiologies, GJB2 and SLC26A4 mutations, were rare in the Tibetan Chinese deaf population. The mutation spectrum of hearing loss differs significantly between Chinese Tibetan patients and Han patients. The incidence of inner ear malformation in Tibetans is almost as high as that in Han deaf patients, but the types of malformation vary greatly. Hypoxia and special environment in plateau may be one cause of developmental inner ear deformity in this population."	"Otic mesenchyme cells regulate spiral ganglion axon fasciculation through a Pou3f4/EphA4 signaling pathway. Peripheral axons from auditory spiral ganglion neurons (SGNs) form an elaborate series of radially and spirally oriented projections that interpret complex aspects of the auditory environment. However, the developmental processes that shape these axon tracts are largely unknown. Radial bundles are comprised of dense SGN fascicles that project through otic mesenchyme to form synapses within the cochlea. Here, we show that radial bundle fasciculation and synapse formation are disrupted when Pou3f4 (DFNX2) is deleted from otic mesenchyme. Further, we demonstrate that Pou3f4 binds to and directly regulates expression of Epha4, Epha4⁻/⁻ mice present similar SGN defects, and exogenous EphA4 promotes SGN fasciculation in the absence of Pou3f4. Finally, Efnb2 deletion in SGNs leads to similar fasciculation defects, suggesting that ephrin-B2/EphA4 interactions are critical during this process. These results indicate a model whereby Pou3f4 in the otic mesenchyme establishes an Eph/ephrin-mediated fasciculation signal that promotes inner radial bundle formation."	"Nonsyndromic X-linked hearing loss. To date, 135 loci and 50 genes have been identified as causes of nonsyndromic hearing loss. Until recently, four loci (DFN2, DFN3, DFN4, and DFN6) had been implicated in nonsyndromic X-linked hearing loss; however, a new classification (DFNX1-5) has been proposed to reduce confusion in the terminology. The different types of nonsyndromic X-linked hearing loss demonstrate various clinical features in terms of the onset and progressiveness of hearing loss, pattern of audiogram, and the presence or absence of inner ear malformations. In addition to the POU3F4 gene, which was the first gene identified as causing nonsyndromic X-linked hearing loss, a second gene, PRPS1, has recently been identified to be the causative gene of DFNX1 (DFN2). This study reviews the new classification system, as well as the clinical features, molecular genetics, and developmental pathogenesis of different forms of nonsyndromic X-linked hearing loss."	"Absence of COCH gene mutations in patients with superior semicircular canal dehiscence. NA"	"Arx and Nkx2.2 compound deficiency redirects pancreatic alpha- and beta-cell differentiation to a somatostatin/ghrelin co-expressing cell lineage. Nkx2.2 and Arx represent key transcription factors implicated in the specification of islet cell subtypes during pancreas development. Mice deficient for Arx do not develop any alpha-cells whereas beta- and delta-cells are found in considerably higher numbers. In Nkx2.2 mutant animals, alpha- and beta-cell development is severely impaired whereas a ghrelin-expressing cell population is found augmented.Notably, Arx transcription is clearly enhanced in Nkx2.2-deficient pancreata. Hence in order to precise the functional link between both factors we performed a comparative analysis of Nkx2.2/Arx single- and double-mutants but also of Pax6-deficient animals. We show that most of the ghrelin+ cells emerging in pancreata of Nkx2.2- and Pax6-deficient mice, express the alpha-cell specifier Arx, but also additional beta-cell related genes. In Nkx2.2-deficient mice, Arx directly co-localizes with iAPP, PC1/3 and Pdx1 suggesting an Nkx2.2-dependent control of Arx in committed beta-cells. The combined loss of Nkx2.2 and Arx likewise results in the formation of a hyperplastic ghrelin+ cell population at the expense of mature alpha- and beta-cells. Surprisingly, such Nkx2.2-/-Arx- ghrelin+ cells also express the somatostatin hormone. Our data indicate that Nkx2.2 acts by reinforcing the transcriptional networks initiated by Pax4 and Arx in early committed beta- and alpha-cell, respectively. Our analysis also suggests that one of the coupled functions of Nkx2.2 and Pax4 is to counteract Arx gene activity in early committed beta-cells."	"The co-transduction of Nurr1 and Brn4 genes induces the differentiation of neural stem cells into dopaminergic neurons. Fetal brain tissue can be used in cell replacement therapy for PD (Parkinson's disease), but there is a poor donor supply of this tissue. NSCs (neural stem cells) may overcome this problem as they can be isolated and expanded in vitro. However, the usage of NSCs is limited because the differentiation of NSCs into specific dopaminergic neurons has proven difficult. In the present study, we investigated the effect of Nurr1 (nuclear receptor related factor 1), a transcription factor specific for the development and maintenance of the midbrain dopaminergic neurons on inducing the differentiation of NSCs into TH (tyrosine hydroxylase) immunoreactive dopaminergic neurons. Nonetheless, these cells exhibited an immature neuronal morphology with small cell bodies and short neurite processes, and they seldom expressed DAT (dopamine transporter), a late marker of mature dopaminergic neurons. However, forced co-expression of Nurr1 with Brn4, a member of the POU domain family of transcription factors, caused immature Nurr1-induced dopaminergic neurons to differentiate into morphologically and phenotypically more mature neurons. Thus the enriched generation of mature dopaminergic neurons by forced expression of Nurr1 with Brn4 may be of future importance in NSC-based cell replacement therapy for PD."	"Molecular and clinical studies of X-linked deafness among Pakistani families. There are 68 sex-linked syndromes that include hearing loss as one feature and five sex-linked nonsyndromic deafness loci listed in the OMIM database. The possibility of additional such sex-linked loci was explored by ascertaining three unrelated Pakistani families (PKDF536, PKDF1132 and PKDF740) segregating X-linked recessive deafness. Sequence analysis of POU3F4 (DFN3) in affected members of families PKDF536 and PKDF1132 revealed two novel nonsense mutations, p.Q136X and p.W114X, respectively. Family PKDF740 is segregating congenital blindness, mild-to-profound progressive hearing loss that is characteristic of Norrie disease (MIM#310600). Sequence analysis of NDP among affected members of this family revealed a novel single nucleotide deletion c.49delG causing a frameshift and premature truncation (p.V17fsX1) of the encoded protein. These mutations were not found in 150 normal DNA samples. Identification of pathogenic alleles causing X-linked recessive deafness will improve molecular diagnosis, genetic counseling and molecular epidemiology of hearing loss among Pakistanis."	"Novel mutation in the homeobox domain of transcription factor POU3F4 associated with profound sensorineural hearing loss. Hearing loss affects 1 to 3 in 1,000 newborns, with 50% of these cases because of genetic causes. The majority of these are nonsyndromic (70%), and 2% are X linked. So far, 6 different X-linked loci have been mapped, but the causative gene POU3F4 has been identified only for the Locus DFN3. Clinical features of DFN3 often include a mixed, progressive hearing loss, temporal bone anomalies, and stapes fixation. POU3F4 belongs to a subfamily of transcription factors, which are characterized by 2 conserved deoxyribonucleic acid-binding domains, a POU and a HOX domain, both helix-turn-helix structural deoxyribonucleic acid-binding motifs.Several reports have described mutations of POU3F4 in patients with hearing loss and temporal bone abnormalities. In this study, we describe the clinical features and genetic analysis of a male child from a German family with congenital deafness and a novel POU3F4 mutation. Mutational analysis of the affected individual and first-degree relatives was performed using direct sequencing of the coding exon and intron transitions of POU3F4. The patient (II-1) had profound hearing loss, a severely dysplastic cochlea, and cerebrospinal fluid gusher during cochlear implantation. Sequence analysis of all family members demonstrated a novel missense mutation at nucleotide position 973, thymine to adenine (c.973 T&gt;A), p.W325R in the patient (II-1), the mother (I-2), and sisters (II-2, II-3) heterozygous. The father (I-1) is not a carrier of the mutation. Conservation of the affected amino acid residue was seen across a number of different species. We identified a novel mutation in the third helix of the HOX domain of the POU3F4 transcription factor associated with congenital hearing loss."	"Unique penetrance of hearing loss in a five-generation Chinese family with the mitochondrial 12S rRNA 1555A &gt; G mutation. Analysis of the complete mtDNA genome and X-linkage of this five-generation Chinese family revealed that the 1555A &gt; G mutation may lead to deafness. Mutations in mitochondrial DNA (mtDNA) have been found to be associated with sensorineural hearing loss. However, the variable clinical phenotype and incomplete penetrance of mtDNA 1555A &gt; G-induced hearing loss complicate our understanding of this mutation. We aimed to identify whether nuclear genes, mitochondrial haplotypes/variants, and a possible threshold effect are involved in its manifestation in the pedigree. We performed clinical, genetic, and X-linkage analysis of a five-generation Chinese family in which all the affected individuals were male. Clinical evaluation revealed that affected individuals with or without aminoglycoside exposure developed hearing loss extending gradually from 8000 Hz to 4000 Hz and then to 1000 Hz. Using X-linkage analysis and sequencing, we detected an identical homoplasmic 1555A &gt; G mutation in nine individuals, and a previously unreported variant 14163C &gt; T in mtDNA. The new variant 14163C &gt; T coexisted with the 1555A &gt; G mutation in six affected subjects of our pedigree. The previously unreported variant 14163C &gt; T and aminoglycoside exposure may synergize the development of this deafness."	"Cochlear implantation in children with congenital X-linked deafness due to novel mutations in POU3F4 gene. We report novel mutations in the POU3F4 gene resulting in congenital X-linked deafness DFN3, and describe the results of cochlear implantation in 4 boys (3 siblings) followed for an average of 3.5 years. The diagnosis of DFN3 was made in infant boys on the basis of the radiologic criteria of an underdeveloped modiolus, a wide cochlear fossette, and the presence of all cochlear turns. The POU3F4 gene was sequenced. A standard, transmastoid, facial recess approach was used for cochlear implantation. A lumbar drain was placed before the operation. The identified mutations in the POU3F4 gene were novel (p.R167X in the 3 siblings) or recently reported (p.S310del). A high-flow cerebrospinal fluid leak through the cochleostomy was encountered in each patient and was ultimately controlled. Although the implants functioned properly, the auditory perceptual abilities did not progress past sound detection in the 3 siblings, or past closed-set word identification in the non-sibling, who achieved better speech perception with contralateral amplification. Three boys (2 siblings) show signs of other learning disorders; 1 boy was too young for a complete assessment. Preoperative gene mutation analysis in DFN3 patients who are considering cochlear implantation may help in long-term counseling and in avoidance of postoperative complications. Limited auditory perception and language acquisition may result. Amplification may sometimes be a better alternative than cochlear implantation, despite the severity of the hearing loss."	"Characterization of new otic enhancers of the pou3f4 gene reveal distinct signaling pathway regulation and spatio-temporal patterns. POU3F4 is a member of the POU-homedomain transcription factor family with a prominent role in inner ear development. Mutations in the human POU3F4 coding unit leads to X-linked deafness type 3 (DFN3), characterized by conductive hearing loss and progressive sensorineural deafness. Microdeletions found 1 Mb 5' upstream of the coding region also displayed the same phenotype, suggesting that cis-regulatory elements might be present in that region. Indeed, we and others have recently identified several enhancers at the 1 Mb 5' upstream interval of the pou3f4 locus. Here we characterize the spatio-temporal patterns of these regulatory elements in zebrafish transgenic lines. We show that the most distal enhancer (HCNR 81675) is activated earlier and drives GFP reporter expression initially to a broad ear domain to progressively restrict to the sensory patches. The proximal enhancer (HCNR 82478) is switched later during development and promotes expression, among in other tissues, in sensory patches from its onset. The third enhancer (HCNR 81728) is also active at later stages in the otic mesenchyme and in the otic epithelium. We also characterize the signaling pathways regulating these enhancers. While HCNR 81675 is regulated by very early signals of retinoic acid, HCNR 82478 is regulated by Fgf activity at a later stage and the HCNR 81728 enhancer is under the control of Hh signaling. Finally, we show that Sox2 and Pax2 transcription factors are bound to HCNR 81675 genomic region during otic development and specific mutations to these transcription factor binding sites abrogates HCNR 81675 enhancer activity. Altogether, our results suggest that pou3f4 expression in inner ear might be under the control of distinct regulatory elements that fine-tune the spatio-temporal activity of this gene and provides novel data on the signaling mechanisms controlling pou3f4 function."	"Identification of a novel mutation in POU3F4 for prenatal diagnosis in a Chinese family with X-linked nonsyndromic hearing loss. We present the clinical and genetic findings for a Chinese family with X-linked non-syndromic hearing loss in which the affected males showed congenital profound sensorineural hearing impairment. In two affected brothers, the computer tomography of temporal bone showed bilateral dilation of the internal auditory canal with fistulous communication between the lateral canal and the basal cochlear turn, which is consistent with the typical DFNX2 phenotype. A missense mutation (c.647G→A) in the POU3F4 gene caused a substitution from glycine to glutamic acid at position 216 (p.G216E), and this mutation was found to consistently cosegregate with the deafness phenotype in the family. The mutation resulted in the loss of function of the POU3F4 by decreasing the affinity between the protein and DNA, as shown in silico by the structural analysis. Prenatal diagnosis of pregnant proband of this family revealed the c.647G→A mutation in DNA extracted from the amniotic fluid surrounding the fetus. The appropriate use of genetic testing and prenatal diagnosis plays a key role in reducing the recurrence of genetic defects in high-risk families."	"Pou3f4 deficiency causes defects in otic fibrocytes and stria vascularis by different mechanisms. DFN3, the most prevalent X-linked hearing loss, is caused by mutations in the POU3F4 gene. Previous studies in Pou3f4 knockout mice suggest that defective otic fibrocytes in the spiral ligament of the cochlear lateral wall may underlie the hearing loss in DFN3. To better understand the pathological mechanisms of the DFN3 hearing loss, we analyzed inner ears of Pou3f4-deficient mice during development. Our results indicate that compartmentalization of the spiral ligament mesenchyme setting up boundaries for specific otic fibrocytes occurs normally in Pou3f4-deficient cochlea. However, differentiation of the compartmentalized mesenchyme into specific otic fibrocytes was blocked in the absence of Pou3f4 function. In addition, we found that stria vascularis in the cochlear lateral wall was also affected in Pou3f4-deficient cochlea. Unlike the otic fibrocytes, differentiation of stria vascularis was completed in the absence of Pou3f4 function, yet expression of Kir4.1 channels in the strial intermediate cells, essential for the sound transduction, was lost afterwards. These results suggest that Pou3f4 deficiency causes defects in both otic fibrocytes and stria vascularis at different developmental stages and by different pathological mechanisms, which may account for the progressive nature of DFN3 hearing loss."	"Multiple enhancers located in a 1-Mb region upstream of POU3F4 promote expression during inner ear development and may be required for hearing. POU3F4 encodes a POU-domain transcription factor required for inner ear development. Defects in POU3F4 function are associated with X-linked deafness type 3 (DFN3). Multiple deletions affecting up to ~900-kb upstream of POU3F4 are found in DFN3 patients, suggesting the presence of essential POU3F4 enhancers in this region. Recently, an inner ear enhancer was reported that is absent in most DFN3 patients with upstream deletions. However, two indications suggest that additional enhancers in the POU3F4 upstream region are required for POU3F4 function during inner ear development. First, there is at least one DFN3 deletion that does not eliminate the reported enhancer. Second, the expression pattern driven by this enhancer does not fully recapitulate Pou3f4 expression in the inner ear. Here, we screened a 1-Mb region upstream of the POU3F4 gene for additional cis-regulatory elements and searched for novel DFN3 mutations in the identified POU3F4 enhancers. We found several novel enhancers for otic vesicle expression. Some of these also drive expression in kidney, pancreas and brain, tissues that are known to express Pou3f4. In addition, we report a new and smallest deletion identified so far in a DFN3 family which eliminates 3.9 kb, comprising almost exclusively the previous reported inner ear enhancer. We suggest that multiple enhancers control the expression of Pou3f4 in the inner ear and these may contribute to the phenotype observed in DFN3 patients. In addition, the novel deletion demonstrates that the previous reported enhancer, although not sufficient, is essential for POU3F4 function during inner ear development."	"Effects of Brn-4 on the neuronal differentiation of neural stem cells derived from rat midbrain. NSCs (neural stem cells) provide a powerful research tool for the design and discovery of new approaches to cell replacement therapy during brain repair. However, the usefulness of this tool has been particularly obstructed by limited neuronal differentiation of NSCs. Brn-4, a member of the POU domain family of transcription factors, has been previously implicated in the development of neurons by expression analysis. Here, we directly investigated the effects of Brn-4 on the neuronal differentiation and development of NSCs derived from the E13 rat midbrain. We found that Brn-4 knockdown in NSCs resulted in a significant decrease of MAP-2-positive neurons with immature morphology. Overexpression of Brn-4 in NSCs markedly increased the production and maturation of newborn neurons. These results suggest that Brn-4 has a critical role in the neuronal differentiation of mesencephalic NSCs and the maturation of newborn neurons. Brn-4 may be utilized to manipulate NSCs for gene and cell therapy of several neurological diseases."	"Clinical evaluation of DFN3 patients with deletions in the POU3F4 locus and detection of carrier female using MLPA. X-linked deafness type 3 (DFN3), the most prevalent X-linked form of hereditary deafness, is caused by mutations of the POU3F4 locus in the Xq21 region. We evaluated two Korean families showing typical characteristics of DFN3, such as congenital hearing loss and pathognomonic inner ear anomalies. Genetic analysis of these families did not reveal any mutations in the POU3F4 coding sequence. Instead, one family carried a genomic deletion upstream of POU3F4 gene, where the regulatory element is predicted to reside, and the other family possessed a deletion of almost the entire Xq21 region. The lack of mutation in the POU3F4 coding sequence makes the detection of carrier females using conventional sequencing methods difficult. By applying the multiplex ligation-dependent probe amplification (MLPA) method, we successfully determined the carrier status of female members in these families, demonstrating that MLPA is a rapid and accurate way to detect POU3F4 deletions in sporadic undiagnosed carriers of DNF3."	"Proliferation, migration, and neuronal differentiation of the endogenous neural progenitors in hippocampus after fimbria fornix transection. Neurogenesis in the hippocampus continues throughout adult life and can be regulated by the local microenvironment. To determine whether denervation stimulates neurogenesis in hippocampus, proliferation, migration, and differentiation of local neural stem cells (NSCs) in dentate gyrus was investigated after fimbria fornix transection. In the denervated hippocampus, NSCs proliferated markedly and migrated along the subgranular layer, and more newborn cells differentiated into neurons or astrocytes. After denervation, more newborn cells in the deafferented hippocampus expressed Brn-4 and differentiated into beta-Tubulin III positive neurons. It is concluded that the local NSCs in hippocampus may proliferate and migrate into granule cell layer, in which changes in the deafferented hippocampus provided a suitable microenvironment for hippocampal neurogenesis and the increased Brn-4 in denervated hippocampus may be involved in this process."	"The role of Brn-4 in the regulation of neural stem cell differentiation into neurons. Brn-4, a member of the homeobox family of transcription factors, has previously been implicated in the regeneration and repair of denervated striatum. We investigated the effects of Brn-4 on the differentiation and development of neural stem cells (NSCs) from E16 rat hippocampus. Immunocytochemistry revealed that extracts of deafferented hippocampus promoted neuronal differentiation to a greater extent than extracts from normal hippocampus. Deafferented extracts also promoted maturation of newborn neurons as reflected in changes in cell areas and perimeters, and enhanced Brn-4 expression in MAP-2 positive neurons. Suppression or overexpression of Brn-4 in NSCs markedly decreased or increased neuronal differentiation and maturation of newborn neurons, respectively. These results suggest that Brn-4 expression is required both for neuronal differentiation of NSCs and maturation of newborn neurons, and that there may be some regulatory factors in deafferented hippocampus that can regulate Brn-4 expression in neuronal progenitors. Brn-4 is therefore a potential research target for the development of new therapeutics to promote brain repair."	"Phenotype and genotype in females with POU3F4 mutations. X-linked deafness is a rare cause of hereditary isolated hearing impairment estimated as at least 1% or 2% of the non-syndromic hearing loss. To date, four loci for DFN have been identified and only one gene, POU3F4 responsible for DFN3, has been cloned. In males, DFN3 is characterized by a progressive deafness associated with perilymphatic gusher at stapes surgery and with a characteristic inner ear malformation. The phenotype of eight independent females carrying POU3F4 anomalies is defined, and a late-onset hearing loss is found in three patients. Only one has an inner ear malformation. No genotype/phenotype correlation is identified."	"A claudin-9-based ion permeability barrier is essential for hearing. Hereditary hearing loss is one of the most common birth defects, yet the majority of genes required for audition is thought to remain unidentified. Ethylnitrosourea (ENU)-mutagenesis has been a valuable approach for generating new animal models of deafness and discovering previously unrecognized gene functions. Here we report on the characterization of a new ENU-induced mouse mutant (nmf329) that exhibits recessively inherited deafness. We found a widespread loss of sensory hair cells in the hearing organs of nmf329 mice after the second week of life. Positional cloning revealed that the nmf329 strain carries a missense mutation in the claudin-9 gene, which encodes a tight junction protein with unknown biological function. In an epithelial cell line, heterologous expression of wild-type claudin-9 reduced the paracellular permeability to Na+ and K+, and the nmf329 mutation eliminated this ion barrier function without affecting the plasma membrane localization of claudin-9. In the nmf329 mouse line, the perilymphatic K+ concentration was found to be elevated, suggesting that the cochlear tight junctions were dysfunctional. Furthermore, the hair-cell loss in the claudin-9-defective cochlea was rescued in vitro when the explanted hearing organs were cultured in a low-K+ milieu and in vivo when the endocochlear K+-driving force was diminished by deletion of the pou3f4 gene. Overall, our data indicate that claudin-9 is required for the preservation of sensory cells in the hearing organ because claudin-9-defective tight junctions fail to shield the basolateral side of hair cells from the K+-rich endolymph. In the tight-junction complexes of hair cells, claudin-9 is localized specifically to a subdomain that is underneath more apical tight-junction strands formed by other claudins. Thus, the analysis of claudin-9 mutant mice suggests that even the deeper (subapical) tight-junction strands have biologically important ion barrier function."	"Clinical and molecular characterizations of novel POU3F4 mutations reveal that DFN3 is due to null function of POU3F4 protein. X-linked deafness type 3 (DFN3), the most prevalent X-linked form of hereditary deafness, is caused by mutations in the POU3F4 locus, which encodes a member of the POU family of transcription factors. Despite numerous reports on clinical evaluations and genetic analyses describing novel POU3F4 mutations, little is known about how such mutations affect normal functions of the POU3F4 protein and cause inner ear malformations and deafness. Here we describe three novel mutations of the POU3F4 gene and their clinical characterizations in three Korean families carrying deafness segregating at the DFN3 locus. The three mutations cause a substitution (p.Arg329Pro) or a deletion (p.Ser310del) of highly conserved amino acid residues in the POU homeodomain or a truncation that eliminates both DNA-binding domains (p.Ala116fs). In an attempt to better understand the molecular mechanisms underlying their inner ear defects, we examined the behavior of the normal and mutant forms of the POU3F4 protein in C3H/10T1/2 mesodermal cells. Protein modeling as well as in vitro assays demonstrated that these mutations are detrimental to the tertiary structure of the POU3F4 protein and severely affect its ability to bind DNA. All three mutated POU3F4 proteins failed to transactivate expression of a reporter gene. In addition, all three failed to inhibit the transcriptional activity of wild-type proteins when both wild-type and mutant proteins were coexpressed. Since most of the mutations reported for DFN3 thus far are associated with regions that encode the DNA binding domains of POU3F4, our results strongly suggest that the deafness in DFN3 patients is largely due to the null function of POU3F4."	"Phenotype and genotype analysis of a Chinese family with prelingual X-linked hereditary hearing impairment. X-linked hearing impairment is clinically and genetically a heterogeneous disease. Although many disorders manifest with hearing loss, a limited number of sex-linked loci and only one gene (POU3F4) have been shown to be implicated in X-linked non-syndromic hearing impairment. In the present study, we have performed a clinical and genetic analysis of a Chinese family with X-linked non-syndromic hearing loss, with emphasis on audiological findings and genomic mapping. The clinical features of Family JX01 were evaluated by physical and audiometric examination in eighteen family members. Mutation screening of POU3F4 was identified by polymerase chain reaction (PCR) amplification and sequencing. Molecular evaluation consisted of X-chromosome wide genotyping by microsatellite makers (STR), followed by analyzing using MLINK computer program. Five affected males demonstrated bilateral, symmetrical sensorineural and profound hearing loss. The hearing impairment started prelingual. The female carriers did not have any complain of hearing loss, however, two of them were tested with milder loss with high frequency. No causative mutations in POU3F4 gene were detected by DNA sequencing. Linkage analysis indicated that the responsible gene was linked to locus DXS1227 (maximum lod score = 2.04 at theta = 0). The affected males in Family JX01 have profound prelingual sensorineural hearing impairment. In addition, two female carriers showed mild to moderate hearing losses. However, none of females complained of any hearing loss. Analysis of hereditary deafness in this family mapped most compatibly to the Xq27.2."	"Tbx1 and Brn4 regulate retinoic acid metabolic genes during cochlear morphogenesis. In vertebrates, the inner ear is comprised of the cochlea and vestibular system, which develop from the otic vesicle. This process is regulated via inductive interactions from surrounding tissues. Tbx1, the gene responsible for velo-cardio-facial syndrome/DiGeorge syndrome in humans, is required for ear development in mice. Tbx1 is expressed in the otic epithelium and adjacent periotic mesenchyme (POM), and both of these domains are required for inner ear formation. To study the function of Tbx1 in the POM, we have conditionally inactivated Tbx1 in the mesoderm while keeping expression in the otic vesicle intact. Conditional mutants (TCre-KO) displayed malformed inner ears, including a hypoplastic otic vesicle and a severely shortened cochlear duct, indicating that Tbx1 expression in the POM is necessary for proper inner ear formation. Expression of the mesenchyme marker Brn4 was also lost in the TCre-KO. Brn4-;Tbx1+/-embryos displayed defects in growth of the distal cochlea. To identify a potential signal from the POM to the otic epithelium, expression of retinoic acid (RA) catabolizing genes was examined in both mutants. Cyp26a1 expression was altered in the TCre-KO, while Cyp26c1 showed reduced expression in both TCre-KO and Brn4-;Tbx1+/- embryos. These results indicate that Tbx1 expression in the POM regulates cochlear outgrowth potentially via control of local retinoic acid activity."	"Novel POU3F4 mutations and clinical features of DFN3 patients with cochlear implants. NA"	"Neurogenin 3 and neurogenic differentiation 1 are retained in the cytoplasm of multiple endocrine neoplasia type 1 islet and pancreatic endocrine tumor cells. To investigate if transcription factors involved in pancreatic differentiation and regeneration are present in pancreatic endocrine tumors and if they are differentially expressed in normal pancreas compared with multiple endocrine neoplasia type 1 (MEN1) nontumorous pancreas. The expression of neurogenin 3 (NEUROG3), neurogenic differentiation 1 (NEUROD1), POU class 3 homeobox 4 (POU3F4), pancreatic duodenal homeobox factor 1 (PDX1), ribosomal protein L10 (RPL10), delta-like 1 homolog (Drosophila; DLK1), and menin was analyzed by immunohistochemistry in normal pancreas and pancreatic endocrine tumors from 6 patients with MEN1 and 16 patients with sporadic tumors, as well as pancreatic specimens from Men1 heterozygous and wild type mice. Quantitative polymerase chain reaction was performed in a subset of human tumors. Tumors and MEN1 nontumorous endocrine cells showed a prominent cytoplasmatic NEUROG3 and NEUROD1 expression. These factors were significantly more expressed in the cytoplasm of Men1 heterozygous mouse islet cells compared with wild type islets; the latter showed an exclusively nuclear reactivity. The degree of Pou3f4, Rpl10, and Dlk1 immunoreactivities differed significantly between islets of heterozygous and wild type mice. The expressions of RPL10 and NEUROD1 were prominent in the MEN1 human and heterozygous mouse exocrine pancreas. Insulinomas had significantly higher PDX1 and DLK1 messenger RNA levels compared with other tumor types. Transcription factors involved in pancreatic development show altered expression and subcellular localization in MEN1 nontumorous pancreas and pancreatic endocrine tumors."	"Otic mesenchyme expression of Cre recombinase directed by the inner ear enhancer of the Brn4/Pou3f4 gene. Brn4/Pou3f4 is a POU-domain transcription factor expressed in the otic mesenchyme that is required for the normal development of the inner ear. In this report, we describe the isolation of an otic mesenchyme enhancer in the Brn4 gene. Subsequently, this enhancer was used to drive the expression of Cre recombinase in the otic mesenchyme of transgenic mice. When intercrossed with the ROSA reporter strain, R26R, ss-galactosidase expression is detected in several inner ear structures derived from otic mesenchyme, including the temporal bone, spiral ligament, spiral limbus, and mesenchyme underlying sensory epithelium of the utricle, saccule and semicircular canals. Thus, this Cre pedigree can induce conditional rearrangement of genes in the otic mesenchyme, and will serve as a powerful genetic tool to characterize the function of genes in the mesenchymal tissues of the inner ear."	"Brn-4 is upregulated in the deafferented hippocampus and promotes neuronal differentiation of neural progenitors in vitro. Fimbria-fornix (FF), the septo-hippocampal pathway, was transected to model Alzheimer's disease (AD), which is characterized by loss of cholinergic afferent fibers in hippocampus. Various alternations may happen in the deafferented hippocampus. In this study, we determined the expression of Brn-4 in hippocampus after FF lesion. RT-PCR and Western blot showed that mRNA transcription and protein of Brn-4 increased significantly and reached to the peak at day 14 after FF lesion. Hybridization and immunohistochemistry indicated that Brn-4 signals in hippocampus and dentate gyrus (DG) of the deafferented side were significantly stronger than the normal side. More Brn-4 positive cells were identified in the DG of deafferented hippocampus. In the pyramidal and granular cells, Brn-4 positive cells were all NeuN positive neurons, whereas in the neurogenic area, subgranular zone (SGZ), only a part of Brn-4 positive cells were NeuN positive, and these Brn-4/NeuN double positive neurons in SGZ and hilus of DG increased significantly after the trauma induced by FF lesion. In vitro Brn-4 antibody attenuated the role of extract from deafferented hippocampus in promoting differentiation of hippocampal progenitors into MAP-2 positive neurons. This study demonstrated that after FF lesion, Brn-4 in the deafferented hippocampus was upregulated and might play an important role in inducing local progenitors to differentiate into neurons, which may compensate for the loss of cholinergic afferent fibers or other dysfunctions."	"Global analysis of the medulloblastoma epigenome identifies disease-subgroup-specific inactivation of COL1A2. Candidate gene investigations have indicated a significant role for epigenetic events in the pathogenesis of medulloblastoma, the most common malignant brain tumor of childhood. To assess the medulloblastoma epigenome more comprehensively, we undertook a genomewide investigation to identify genes that display evidence of methylation-dependent regulation. Expression microarray analysis of medulloblastoma cell lines following treatment with a DNA methyltransferase inhibitor revealed deregulation of multiple transcripts (3%-6% of probes per cell line). Eighteen independent genes demonstrated &gt;3-fold reactivation in all cell lines tested. Bisulfite sequence analysis revealed dense CpG island methylation associated with transcriptional silencing for 12 of these genes. Extension of this analysis to primary tumors and the normal cerebellum revealed three major classes of epigenetically regulated genes: (1) normally methylated genes (DAZL, ZNF157, ASN) whose methylation reflects somatic patterns observed in the cerebellum, (2) X-linked genes (MSN, POU3F4, HTR2C) that show disruption of their sex-specific methylation patterns in tumors, and (3) tumor-specific methylated genes (COL1A2, S100A10, S100A6, HTATIP2, CDH1, LXN) that display enhanced methylation levels in tumors compared with the cerebellum. Detailed analysis of COL1A2 supports a key role in medulloblastoma tumorigenesis; dense biallelic methylation associated with transcriptional silencing was observed in 46 of 60 cases (77%). Moreover, COL1A2 status distinguished infant medulloblastomas of the desmoplastic histopathological subtype, indicating that distinct molecular pathogenesis may underlie these tumors and their more favorable prognosis. These data reveal a more diverse and expansive medulloblastoma epi genome than previously understood and provide strong evidence that the methylation status of specific genes may contribute to the biological subclassification of medulloblastoma."	"Mechanisms underlying proglucagon gene expression. The proglucagon gene (gcg) encodes a number of peptide hormones that are of cell-type specifically expressed in the pancreatic islets, the distal ileum and the large intestine, as well as certain brain neuronal cells. These hormones are important in controlling blood glucose homeostasis, intestinal cell proliferation, and satiety. More importantly, the major hormone generated in the pancreas (i.e. glucagon) exerts opposite effects to the ones that are produced in the intestines (i.e. glucagon-like peptide-1 (GLP-1) and GLP-2). To understand the mechanisms underlying cell-type-specific gcg expression may lead to the identification of novel drug targets to control endogenous hormone production for therapeutic purposes. Extensive in vitro examinations have shown that more than a half dozen of homeodomain (HD) proteins are able to interact with the gcg gene promoter and activate its expression. In vivo 'knock-out' mouse studies, however, cannot demonstrate the role of some of them (i.e. Cdx-2, Brn-4, and Nkx6.2) in the development of pancreatic islet alpha-cells, suggesting that these HD proteins may exert some redundant functions in the genesis of gcg-producing cells. Investigations have also revealed that gcg expression is controlled by both protein kinase A and Epac signaling pathways in response to cAMP elevation, and cell-type specifically controlled by insulin and the effectors of the Wnt signaling pathway. This review summarizes our current understanding on the mechanisms underlying gcg transcription and presented my interpretations on how the interactions between different signaling networks regulate gcg expression."	"Cooperative function of Tbx1 and Brn4 in the periotic mesenchyme is necessary for cochlea formation. The T-box transcription factor TBX1 has been identified as the major gene responsible for the etiology of velocardiofacial syndrome/DiGeorge syndrome (VCFS/DGS). Conductive hearing loss occurs in a majority of patients with this syndrome, while sensorineural deafness has also been reported in some cases. Mutations in POU3F4/BRN4, a POU domain transcription factor, cause DFN3, an X-linked nonsyndromic form of deafness characterized by mixed conductive and sensorineural hearing loss. Inactivation of the murine orthologues of these genes causes similar defects to those seen in humans and has provided excellent models for the study of inner ear development. Tbx1 and Brn4 are expressed in the mesenchymal cells surrounding the otic vesicle and have been shown to play roles in cochlear outgrowth. Furthermore, expression of Brn4 is reduced in Tbx1 null mutants, suggesting a possible genetic interaction between these genes. To test whether Tbx1 and Brn4 function in a common pathway, mice mutant for both genes were generated and analyzed for inner ear defects. Brn4-;Tbx1+/- mutants displayed a significant reduction in the number of turns of the cochlea compared to Brn4- or Tbx1+/- mice. In addition, Brn4-;Tbx1+/- mice displayed structural defects in the apical cochlea indicative of Mondini dysplasia found in patients with either VCFS/DGS or DFN3. These data establish a genetic interaction between Tbx1 and Brn4 relevant to human disease and indicate a function of these genes in signaling from the periotic mesenchyme to the otic vesicle to direct proper coiling of the cochlear duct."	"Genetic identification of a novel NeuroD1 function in the early differentiation of islet alpha, PP and epsilon cells. Nkx2.2 and NeuroD1 are vital for proper differentiation of pancreatic islet cell types. Nkx2.2-null mice fail to form beta cells, have reduced numbers of alpha and PP cells and display an increase in ghrelin-producing epsilon cells. NeuroD1-null mice display a reduction of alpha and beta cells after embryonic day (e) 17.5. To begin to determine the relative contributions of Nkx2.2 and NeuroD1 in islet development, we generated Nkx2.2-/-;NeuroD1-/- double knockout (DKO) mice. As expected, the DKO mice fail to form beta cells, similar to the Nkx2.2-null mice, suggesting that the Nkx2.2 phenotype may be dominant over the NeuroD1 phenotype in the beta cells. Surprisingly, however, the alpha, PP and epsilon phenotypes of the Nkx2.2-null mice are partially rescued by the simultaneous elimination of NeuroD1, even at early developmental time points when NeuroD1 null mice alone do not display a phenotype. Our results indicate that Nkx2.2 and NeuroD1 interact to regulate pancreatic islet cell fates, and this epistatic relationship is cell-type dependent. Furthermore, this study reveals a previously unappreciated early function of NeuroD1 in regulating the specification of alpha, PP and epsilon cells."	"Molecular characterization of a novel X-linked syndrome involving developmental delay and deafness. X-linked syndromes associated with developmental delay and sensorineural hearing loss (SNHL) have been characterized at the molecular level, including Mohr-Tranebjaerg syndrome and Norrie disease. In this study we report on a novel X-linked recessive, congenital syndrome in a family with developmental delay and SNHL that maps to a locus associated with mental retardation (MR) for which no causative gene has been identified. The X-linked recessive inheritance and congenital nature of the syndrome was confirmed by detailed clinical investigation and the family history. Linkage mapping of the X-chromosome was conducted to ascertain the disease locus and candidate genes were screened by direct sequencing and STRP analysis. The recessive syndrome was mapped to Xp11.3-q21.32 and a deletion was identified in a regulatory region upstream of the POU3F4 gene in affected family members. Since mutations in POU3F4 cause deafness at the DFN3 locus, the deletion is the likely cause of the SNHL in this family. The choroideremia (CHM) gene was also screened and a novel missense change was identified. The alteration changes the serine residue at position 89 in the Rab escort 1 protein (REP-1) to a cysteine (S89C). Prenylation of Rab proteins was investigated in patients and the location of REP-1 expression in the brain determined. However, subsequent analysis revealed that this change in CHM was polymorphic having no effect on REP-1 function. Although the causative gene at the MR locus in this family has not been identified, there are a number of genes involved in syndromic and nonsyndromic forms of MR that are potential candidates."	"Pax-6 and c-Maf functionally interact with the alpha-cell-specific DNA element G1 in vivo to promote glucagon gene expression. Specific expression of the glucagon gene in the rat pancreas requires the presence of the G1 element localized at -100/-49 base pairs on the promoter. Although it is known that multiple transcription factors such as Pax-6, Cdx-2/3, c-Maf, Maf-B, and Brain-4 can activate the glucagon gene promoter through G1, their relative importance in vivo is unknown. We first studied the expression of Maf-B, c-Maf, and Cdx-2/3 in the developing and adult mouse pancreas. Although Maf-B was detectable in a progressively increasing number of alpha-cells throughout development and in adulthood, c-Maf and Cdx-2/3 were expressed at low and very low levels, respectively. However, c-Maf but not Cdx-2/3 was detectable in adult islets by Western blot analyses. We then demonstrated the in vivo interactions of Pax-6, Cdx-2/3, Maf-B, and c-Maf but not Brain-4 with the glucagon gene promoter in glucagon-producing cells. Although Pax-6, Cdx-2/3, Maf-B, and c-Maf were all able to bind G1 by themselves, we showed that Pax-6 could interact with Maf-B, c-Maf, and Cdx-2/3 and activate transcription of the glucagon gene promoter. Overexpression of dominant negative forms of Cdx-2/3 and Mafs in alpha-cell lines indicated that Cdx-2/3 and the Maf proteins interact on an overlapping site within G1 and that this binding site is critical in the activation of the glucagon gene promoter. Finally, we show that specific inhibition of Pax-6 and c-Maf but not Cdx-2/3 or Maf-B led to decreases in endogenous glucagon gene expression and that c-Maf binds the glucagon gene promoter in mouse islets. We conclude that Pax-6 and c-Maf interact with G1 to activate basal expression of the glucagon gene."	"How to prevent a stapes gusher. A stapes gusher is the result of a congenital inner ear anomaly showing at tone audiometry a conductive or mixed hearing loss. The conductive part of the hearing loss could lead to the thought to explore the middle ear. The congenital origin should lead to a high resolution. CT-scanning to evaluate a widening of the internal acoustic canal. Repeated audiometry could show especially a large conductive impairment in the lowest frequencies with a closure of the airbone gap at 2 khz and a high sensorineural high frequency loss at 4 and 8 khz. Contralateral stapedial reflexes may be present. Since the x-recessive mixed deafness syndrome (DFN3) frequently involves males with an early childhood hearing impairment, clinical suspicion should be high. When stapes surgery is considered a precise medical history is essential regarding on the start of the hearing impairment. A continuous suspicion will guide to the audiological, radiological and molecular genetic clues to trace the correct diagnosis before embarking on stapes surgery."	"Gene expression profiling in the human middle cerebral artery after cerebral ischemia. We have investigated the gene expression in human middle cerebral artery (MCA) after ischemia. Ischemic stroke affects the perfusion in the affected area and experimental cerebral ischemia results in upregulation of vasopressor receptors in the MCA leading to the ischemic area. We obtained human MCA samples distributing to the ischemic area, 7-10 days post-stroke. The gene expression was examined with real-time polymerase chain reaction (PCR) and microarray, proteins were studied with immunohistochemistry. We investigated genes previously shown to be upregulated in animal models of cerebral ischemia (e.g. ET(A), ET(B), AT1, AT2, and 5-HT(2A/1B/1D)). Their mRNA expression was increased compared with controls, consistent with findings in experimental stroke. Immunohistochemistry showed upregulation of the receptors localized on the smooth muscle cells. The gene expression was profiled with microarray and seven genes chosen for further investigation with real-time PCR; ELK3, LY64, Metallothionin IG, POU3F4, Actin alpha2, RhoA and smoothelin. Six of these were regulated the same way when confirming array expression with real-time PCR. Gene expression studies in the human MCA leading to the ischemic region is similar to that seen after MCA occlusion in rats. We found new genes that support the dynamic changes that occur in the MCA distributing to the ischemic region."	"[Hereditary hearing impairment. Mutation analysis of connexin 26 and POU3F4 genes in Icelanders with nonsyndromic hearing impairment.]. Mutations in the connexin 26 (Cx26) gene have recently been shown to be a major cause of hereditary nonsyndromic sensorineural hearing impairment in Caucasians. Studies indicate that approximately 10-30% of all childhood deafness are due to Cx26 mutations and the most frequently observed mutation is Cx26 35delG. Mutations in the POU3F4 are the most common cause of X-linked nonsyndromic hereditary hearing impairment. The aim of our study was to determine presence and type of Cx26 and POU3F4 mutations in an Icelandic cohort with nonsyndromic hearing impairment. All 15 individuals participating in the study, fulfilled the criteria of severe congenital nonsyndromic hearing impairment of unknown cause and the hearing loss was documented by audiologic testing in a clinical facility. Eleven had a family history and four were sporadic cases. All exons of the Cx26 and POU3F4 genes were amplified using PCR and six pairs of primers. The amplified DNA fragments were screened for sequence variations using enzymatic mutation detection and the nucleotide sequence of fragments showing signs of variation was determined. Using the methods described above four distinct sequence variations were detected in the Cx26 gene. The 35delG allele causing hereditary recessive hearing impairment was identified in one homozygous and one heterozygous individual. The heterozygous 35delG individual was also shown to carry the recessive allele 358-360delGAG (E). A missense mutation, 101Teth C (M34T), supposed to cause autosomal dominant form of hearing impairment with variable penetrance, was detected in one heterozygous individual. A novel sequence variation without known clinical significance, -63Teth G, was found in the 5'-noncoding sequence in one control sample. No mutations were detected in the POU3F4 gene."	"Clinics in diagnostic imaging (111): X-linked congenital mixed deafness syndrome. Two siblings, boys aged five and six years old, presented with mixed hearing loss. Computed tomography of the temporal bones showed bulbous dilatation of the internal auditory canals and incomplete separation with the basal turn of the cochlear, consistent with the diagnosis of X-linked congenital progressive mixed deafness syndrome. The diagnosis and management of this rare condition is discussed."	"Age-related changes in cochlear gene expression in normal and shaker 2 mice. The vertebrate cochlea is a complex organ optimized for sound transduction. Auditory hair cells, with their precisely arranged stereocilia bundles, transduce sound waves to electrical signals that are transmitted to the brain. Mutations in the unconventional myosin XV cause deafness in both human DFNB3 families and in shaker 2 (sh2) mice as a result of defects in stereocilia. In these mutant mice, hair cells have relatively normal spatial organization of stereocilia bundles but lack the graded, stair-step organization. We used sh2 mice as an experimental model to investigate the molecular consequences of the sh2 mutation in the Myo15 gene. Gene expression profiling with Affymetrix GeneChips in deaf homozygous (sh2/sh2) mice at 3 weeks and 3 months of age, and in age-matched, normal-hearing heterozygotes (+/sh2) identified only a few genes whose expression was affected by genotype, but a large number with age-associated changes in expression in both normal mice and sh2/sh2 homozygotes. Microarray data analyzed using Robust Multiarray Average identified Aim1, Dbi, and Tm4sf3 as genes with increased expression in sh2/sh2 homozygotes. These increases were confirmed by quantitative reverse transcription-polymerase chain reaction. Genes exhibiting altered expression with age encoded collagens and proteins involved in collagen maturation, extracellular matrix, and bone mineralization. These results identified potential cellular pathways associated with myosin XV defects, and age-associated molecular events that are likely to be involved in maturation of the cochlea and auditory function."	"A novel mutation of POU3F4 causes congenital profound sensorineural hearing loss in a large Chinese family. It is known that approximately 5% of congenital profound hearing impaired cases are inherited in X-linked inheritance. This study aimed at identifying its underlying molecular determinant(s) using a large, five-generation Chinese family with multiple familial cases. Model-based linkage analysis and positional cloning. Model-based genetic linkage analyses were performed with the use of microsatellite polymorphisms to determine disease locus. Mutation screening was performed within the family and unrelated population-based controls to establish molecular evidence as to what caused the specific X-linked inheritance pattern in the family. Clinical investigations of the pedigree demonstrated the extremely high penetrance in the male members but no penetrance in the female members. Linkage analyses mapped the disease to the chromosomal region Xq13.I-Xq23 (maximum X-linkage logarithm of odds score = 3.27). Mutation screening of the candidate genes in the linkage region by direct sequencing revealed a de novo missense substitution (925T&gt;C) in the well-known deaf gene. POU3F4. Direct sequencing on 240 unrelated controls did not detect any mutation. Multiple analysis approaches demonstrated that these disorders in the family were caused by a founder mutation in the POU3F4 gene. Our findings provided confirmatory molecular evidence to support that development of congenital profound sensorineural hearing loss in the Chinese population results from a novel mutation in the same gene."	"Redundant and synergistic effect of Cdx-2 and Brn-4 on regulating proglucagon gene expression. Cdx-2 and Brn-4 are recognized as transcriptional activators for the proglucagon gene. These two homeodomain (HD) proteins are able to interact with the correspondent motifs on the G1 enhancer element of proglucagon promoter, separated by only 8 bp. We have examined Brn-4 expression in proglucagon-producing cells, isolated hamster Brn-4 cDNA, and localized its activation domain. Ectopic expression of either Cdx-2 or Brn-4 in the pancreatic B cell line In111 provoked it to express proglucagon mRNA, whereas ectopically expressing both of them further stimulated proglucagon mRNA expression in this cell line. Furthermore, Brn-4 was found to synergize with Cdx-2 in activating proglucagon promoter, and the Brn-4 activation domain was not required for this synergistic activation. When the binding site for either Cdx-2 or Brn-4 was mutated, the synergistic activation by these two HD proteins was significantly attenuated, but not abolished. We propose that both cooperative DNA binding and mutual recruitment between Cdx-2 and Brn-4 are involved in this synergistic activation and have detected physical interaction between Cdx-2 and Brn-4 by glutathione-S-transferase-fusion protein pull-down assay. Our observations suggest that Cdx-2 and Brn-4, two HD proteins that belong to two different families, exert a synergistic and redundant effect on proglucagon gene expression."	"Deletion of and novel missense mutation in POU3F4 in 2 families segregating X-linked nonsyndromic deafness. To analyze the physical manifestations and genetic features of 2 families segregating X-linked deafness, which is most commonly reported to be caused by mutations of the POU domain gene POU3F4 at the DFN3 locus. Computed tomographic study of the temporal bone in probands from each family, followed by mutation screening and deletion mapping of POU3F4 in family members. Two midwestern genetics clinics. Two families with X-linked deafness. Anomalies of the inner ear in the probands; results of gene mapping and severity and effects of hearing loss in the family members. In the first family, a large deletion was identified that includes POU3F4 and extends upstream approximately 530 kilobases; in the second family, a novel serine-to-leucine (S228L) amino acid mutation was identified in the POU-specific domain of POU3F4. Both the deletion and the missense mutation segregate with the clinical phenotype and are causally related to the deafness in these families. Deafness related to the POU3F4 gene is associated with dilation of the internal auditory canal and a spectrum of other temporal bone anomalies that range in severity from mild to severe dysplasia of the cochlea and semicircular canals. The consequence of these anomalies is a congenital mixed hearing loss, the sensorineural component of which progresses over time. Affected males can also present with vestibular dysfunction that is associated with delayed developmental motor milestones. Intrafamilial variability occurs."	"[Detection of POU3F4 gene mutations in the Chinese pedigree with Y-linked hereditary hearing impairment]. To analyze the mutations of candidate POU3F4 gene in the Chinese pedigree with Y linked hereditary hearing impairment. Polymerase chain reaction (PCR) reactions were performed with five pairs of primer in the coding sequence of POU3F4 gene. PCR-single-strand conformation polymorphism (PCR-SSCP) was subsequently applied in the 43 individuals of DFNY1 family for screening the gene mutations. The PCR amplification fragments showed well quality in the five pairs of primer and further analysis with PCR-SSCP showed no any polymorphism and mutations in the members. The possibility of the deafness gene POU3F4, which locates on the translocation region on X and Y chromosome, contributed to the Y linked family deafness was successfully ruled out. It may imply that the causal gene of the DFNY1 family locate on the Y chromosome."	"Nuclear and mitochondrial genes mutated in nonsyndromic impaired hearing. Half of the cases with congenital impaired hearing are hereditary (HIH). HIH may occur as part of a multisystem disease (syndromic HIH) or as disorder restricted to the ear and vestibular system (nonsyndromic HIH). Since nonsyndromic HIH is almost exclusively caused by cochlear defects, affected patients suffer from sensorineural hearing loss. One percent of the total human genes, i.e. 300-500, are estimated to cause syndromic and nonsyndromic HIH. Of these, approximately 120 genes have been cloned thus far, approximately 80 for syndromic HIH and 42 for nonsyndromic HIH. In the majority of the cases, HIH manifests before (prelingual), and rarely after (postlingual) development of speech. Prelingual, nonsyndromic HIH follows an autosomal recessive trait (75-80%), an autosomal dominant trait (10-20%), an X-chromosomal, recessive trait (1-5%), or is maternally inherited (0-20%). Postlingual nonsyndromic HIH usually follows an autosomal dominant trait. Of the 41 mutated genes that cause nonsyndromic HIH, 15 cause autosomal dominant HIH, 15 autosomal recessive HIH, 6 both autosomal dominant and recessive HIH, 2 X-linked HIH, and 3 maternally inherited HIH. Mutations in a single gene may not only cause autosomal dominant, nonsyndromic HIH, but also autosomal recessive, nonsyndromic HIH (GJB2, GJB6, MYO6, MYO7A, TECTA, TMC1), and even syndromic HIH (CDH23, COL11A2, DPP1, DSPP, GJB2, GJB3, GJB6, MYO7A, MYH9, PCDH15, POU3F4, SLC26A4, USH1C, WFS1). Different mutations in the same gene may cause variable phenotypes within a family and between families. Most cases of recessive HIH result from mutations in a single locus, but an increasing number of disorders is recognized, in which mutations in two different genes (GJB2/GJB6, TECTA/KCNQ4), or two different mutations in a single allele (GJB2) are involved. This overview focuses on recent advances in the genetic background of nonsyndromic HIH."	"Abnormal mesenchymal differentiation in the superior semicircular canal of brn4/pou3f4 knockout mice. To examine the developmental time course of the mutant phenotype and cellular mechanisms that result in malformations of the superior semicircular canal (SSCC) in Brn4 knockout mice. Mutations in the Brn4/Pou3f4 gene result in characteristic inner ear abnormalities in mutant mouse pedigrees, and the findings in these mice are similar to those in human X-linked deafness type III. Mutant and control mice were killed at various neonatal time points to assess the development of the SSCC. Measurements of SSCC diameter were made on paint-perfused specimens at postnatal day (P) 0, P7, P10, and P14. Histologic evaluation of the SSCC was made on hematoxylin-eosin-stained sections at P10. A dysmorphic constriction of the superior arc of the SSCC in Brn4 knockout mice was initially detectable at P14. Interestingly, the mutant SSCC is indistinguishable from control mice at earlier neonatal time points. In mutant neonates, there is persistence of immature woven bone with high cellularity surrounding the perilymphatic space of the SSCC. These findings are not present in control animal specimens, which demonstrate appropriate lamellar bony architecture. In Brn4 knockout mice, constriction of the SSCC with narrowing of the bony labyrinth develops in the postnatal period at approximately P14. The persistence of immature bone in affected mice indicates that signaling abnormalities disrupt normal mesenchymal differentiation in the SSCC."	"Mutation of the POU-domain gene Brn4/Pou3f4 affects middle-ear sound conduction in the mouse. Mutagenesis of the POU-domain gene Brn4/Pou3f4 causes defects in the cochlear duct, semicircular canal, temporal bone and stapes footplate. The footplate defect suggested a middle-ear conductive component to the hearing loss associated with this mutation. This was examined by measuring velocity transfer functions at the umbo of wild type and knockout mice during sound stimulation of the tympanic membrane. When the median umbo velocity of test frequencies in the two groups were compared, the mid-range frequencies of the knockout mice showed a statistically reliable reduction in velocity (maximum of 13 dB) and high variability among animals. These results indicated that mutation of the POU-domain gene, Brn4, changed middle-ear sound conduction when measured at the umbo. The origin of the abnormal velocity response was sought by puncturing a hole in the pars flaccida (PF), and subsequently, measuring movements at the umbo and the head of the long arm of the incus. This hole permitted us to measure velocity at the tip of the incus long arm, just above the incudostapedial joint. The comparison of umbo behavior in both groups with PF perforated showed a loss of sensitivity in the mid-range frequencies of the knockout animals. A comparison of incus velocity in the two groups also exhibited a velocity reduction in the mid-range frequencies of the knockout animals. The reduction at the incus, however, was milder than observed at the umbo. The effect of the perforation in, and variability of, the knockout incus responses may have masked a more potent mid-range frequency effect. Nevertheless, evaluation of the stapes and oval window in knockout mice showed variable pathology from ear to ear. The presence of this pathology, the mid-frequency loss in incus sensitivity and the variability in incus velocity among animals suggested that abnormal stapes behavior in Brn4 deficient mice may determine the response of the ossicles, and thus account for the abnormal mid-frequency umbo behavior seen in knockout animals."	"The role of Brn4/Pou3f4 and Pax6 in forming the pancreatic glucagon cell identity. Brain 4 (Brn4/Pou3f4) and Pax6 are POU-homeodomain and paired-homeodomain transcription factors, respectively, that are expressed in the brain and the glucagon-expressing cells in the pancreas. Brn4 expression begins at embryonic day 10 in the pancreas, just before pax6 and both appear in the glucagon immunoreactive cells. At a later time point, E19, no Brn4 co-localization is observed with insulin or somatostatin but a rare pancreatic polypeptide (PP)-producing cell can be found, while Pax6 is found in all endocrine cells. These data suggest that brn4 is the only alpha-cell specific transcription factor yet identified; therefore, we sought to analyze alpha-cell development and function in mice with a targeted disruption of the brn4 gene. In homozygous brn4(-/-) mice, pancreatic bud formation, glucagon cell numbers and physiological measurements all appear normal. Examination of other transcription factors found in the glucagon cells showed normal Pax6 and Nkx2.2 immunoreactivity, suggesting that Brn4 does not regulate these transcription factors. Pax6 mutant mice (pax6(Sey/Sey)), with a natural inactivating mutation in pax6, have few endocrine cells but normal numbers of Brn4 and Nkx2.2 cells. The pancreatic phenotype of the pax6 mutants can be rescued with a YAC clone containing the human Pax6 gene."	"DNA methylation in placentas of interspecies mouse hybrids. Interspecific hybridization in the genus Mus results in several hybrid dysgenesis effects, such as male sterility and X-linked placental dysplasia (IHPD). The genetic or molecular basis for the placental phenotypes is at present not clear. However, an extremely complex genetic system that has been hypothesized to be caused by major epigenetic changes on the X chromosome has been shown to be active. We have investigated DNA methylation of several single genes, Atrx, Esx1, Mecp2, Pem, Psx1, Vbp1, Pou3f4, and Cdx2, and, in addition, of LINE-1 and IAP repeat sequences, in placentas and tissues of fetal day 18 mouse interspecific hybrids. Our results show some tendency toward hypomethylation in the late gestation mouse placenta. However, no differential methylation was observed in hyper- and hypoplastic hybrid placentas when compared with normal-sized littermate placentas or intraspecific Mus musculus placentas of the same developmental stage. Thus, our results strongly suggest that generalized changes in methylation patterns do not occur in trophoblast cells of such hybrids."	"[Clinical and molecular genetic analysis of monozygotic twins displaying stapes gusher syndrome (DFN3)]. DFN3 ( &quot;stapes gusher&quot;) is the most frequent form of X-linked hearing impairment. It accounts for up to 0.5% of all cases of severe childhood hearing disorders. Monozygotic twins with suspected stapes gusher syndrome, their mother, and control individuals were analyzed clinically and genetically. The clinical investigations confirmed a DFN3 phenotype in both brothers who displayed all typical symptoms. A molecular genetic investigation of the POU3F4 gene, which plays an essential role in the development of DFN3, was also performed. No chromosomal aberrations within the coding region of POU3F4were detected. Since several authors have described mutations in the 5' untranslated region of the gene also resulting in a DFN3 phenotype, we screened this area by microsatellite analysis and detected a double deletion localized in the critical interval. This is the first description of a double deletion in the non-coding region of POU3F4 leading to DFN3 phenotype. Interestingly, in spite of having an identical genotype, the twins displayed significant phenotypic differences. This underlines the importance of exogenous factors in the development of inherited pathological processes."	"Late-onset hearing loss in a mouse model of DFN3 non-syndromic deafness: morphologic and immunohistochemical analyses. Recently, we reported that homozygous males and females of a mouse model of DFN3 non-syndromic deafness generated by the deletion of Brn-4 transcription factor showed profound deafness due to severe alterations in the cochlear spiral ligament fibrocytes from the age of 11 weeks, whereas no hearing loss was recognized in young female heterozygotes. It is known that a part of obligate female carriers of DFN3 showed progressive hearing loss. In the present study, we examined the late-onset effect of Brn-4 deficiency on the hearing organ of the mouse. About one third of heterozygous female mice revealed late-onset profound deafness at the age of 1 year. Furthermore, in these deafened heterozygotes, characteristic abnormalities in Reissner's membrane attachment and type II fibrocytes in the suprastrial zone became evident under light microscope, similar to homozygous female mice. A significant reduction in the immunoreactivity of connexin 26 (Cx26), connexin 31 (Cx31), Na,K-ATPase and Na-K-Cl cotransporter in the spiral ligament fibrocytes was observed in aged heterozygotes showing late-onset profound deafness. The late-onset phenotype observed in heterozygous mutant mice, being consistent with the progressive deafness observed in human female heterozygotes, may be explained by alterations of the ion transport systems in the spiral ligament fibrocytes."	"Expression pattern of IAPP and prohormone convertase 1/3 reveals a distinctive set of endocrine cells in the embryonic pancreas. The earliest endocrine cells in the developing pancreas make glucagon and are described as alpha cells. We show here that these cells express islet amyloid polypeptide and prohormone convertase 1/3 (PC1/3), proteins that are not expressed by mature alpha cells, but are found in beta cells. PC1/3 converts proglucagon to the functionally distinct hormones glucagon-like peptide (GLP)-1 and GLP-2 rather than glucagon. Despite these differences, the early proglucagon-positive cells express, as do mature alpha cells, the POU domain transcription factor Brn-4, and do not express the beta cell factor pdx-1. The early production of atypical peptide hormones by these cells suggests that they could play an important role locally or systemically in the development of the embryo."	"spiel ohne grenzen/pou2 is required for zebrafish hindbrain segmentation. Segmentation of the vertebrate hindbrain leads to the formation of a series of rhombomeres with distinct identities. In mouse, Krox20 and kreisler play important roles in specifying distinct rhombomeres and in controlling segmental identity by directly regulating rhombomere-specific expression of Hox genes. We show that spiel ohne grenzen (spg) zebrafish mutants develop rhombomeric territories that are abnormal in both size and shape. Rhombomere boundaries are malpositioned or absent and the segmental pattern of neuronal differentiation is perturbed. Segment-specific expression of hoxa2, hoxb2 and hoxb3 is severely affected during initial stages of hindbrain development in spg mutants and the establishment of krx20 (Krox20 ortholog) and valentino (val; kreisler ortholog) expression is impaired. spg mutants carry loss-of-function mutations in the pou2 gene. pou2 is expressed at high levels in the hindbrain primordium of wild-type embryos prior to activation of krx20 and val. Widespread overexpression of Pou2 can rescue the segmental krx20 and val domains in spg mutants, but does not induce ectopic expression of these genes. This suggests that spg/pou2 acts in a permissive manner and is essential for normal expression of krx20 and val. We propose that spg/pou2 is an essential component of the regulatory cascade controlling hindbrain segmentation and acts before krx20 and val in the establishment of rhombomere precursor territories."	"Brn-4 transcription factor expression targeted to the early developing mouse pancreas induces ectopic glucagon gene expression in insulin-producing beta cells. The endocrine pancreas is comprised of beta and alpha cells producing the glucostatic hormones insulin and glucagon, respectively, and arises during development by the differentiation of stem/progenitor cells in the foregut programmed by the beta cell lineage-specific homeodomain protein Idx-1. Brain-4 (Brn-4) is expressed in the pancreatic anlaga of the mouse foregut at e10 in the alpha cells and transactivates glucagon gene expression. We expressed Brn-4 in pancreatic precursors or beta cell lineage in transgenic mice by placing it under either Idx-1 or insulin promoter (rat insulin II promoter) control, respectively. Idx-1 expression occurs at developmental day e8.5, and insulin expression occurs at e9.5, respectively. Misexpression of Brn-4 by the Idx-1 promoter results in ectopic expression of the proglucagon gene in insulin-expressing pancreatic beta cells, whereas misexpression by rat insulin II promoter did not. The early developmental expression of Brn-4 appears to be a dominant regulator of the glucagon expressing alpha cell lineage, even in the context of the beta cell lineage."	"Axbrn-1: a maternal transcript encodes a POU transcription factor that is later expressed in the developing central nervous system of axolotl embryos. Axbrn-1 encodes a class III POU protein with a POU-specific domain and a POU homeodomain that is most similar to RHS2 from rat. In embryos Axbrn-1 transcripts are maternally inherited and persist through cleavage. New transcripts accumulate beginning at the mid-blastula transition. In gastrulating embryos Axbrn-1 RNA is in the dorsal marginal zone and by neurula it is in the neural folds and neural plate. Later, it is specific to the developing brain and anterior spinal cord. Transcriptional activation at the mid-blastula transition indicates that Axbrn-1 is among the earliest genes to be expressed in axolotl embryos."	"Regulatory regions from the Brn4 promoter direct LACZ expression to the developing forebrain and neural tube. To characterize cis-acting regulatory elements of the mouse POU-domain gene, Brain-4/Pou3F4, transgenic mouse pedigrees were generated that contained the LacZ reporter gene under the control of Brn4 5' flanking sequences. A six kilobase promoter region was identified that reproducibly directed expression of the reporter gene to the forebrain and neural tube of developing mouse embryos. Deletional analysis of this promoter region indicates that at least two positive cis-active elements can direct expression to the developing neural tube. These data characterize a transgenic promoter region that will be useful in directing expression to the developing neural tube during the ontogeny of the forebrain."	"Characterisation and genetic mapping of a new X linked deafness syndrome. Hereditary forms of hearing loss are classified as syndromic, when deafness is associated with other clinical features, or non-syndromic, when deafness occurs without other clinical features. Many types of syndromic deafness have been described, some of which have been mapped to specific chromosomal regions. Here we describe a family with progressive sensorineural hearing loss, cognitive impairment, facial dysmorphism, and variable other features, transmitted by apparent X linked recessive inheritance. Haplotype analysis of PCR products spanning the X chromosome and direct sequencing of candidate genes were used to begin characterising the molecular basis of features transmitted in this family. Comparison to known syndromes involving deafness, mental retardation, facial dysmorphism, and other clinical features was performed by review of published reports and personal discussions. Genetic mapping places the candidate locus for this syndrome within a 48 cM region on Xq1-21. Candidate genes including COL4A5, DIAPH, and POU3F4 were excluded by clinical and molecular analyses. The constellation of clinical findings in this family (deafness, cognitive impairment, facial dysmorphism, variable renal and genitourinary abnormalities, and late onset pancytopenia), along with a shared haplotype on Xq1-21, suggests that this represents a new form of syndromic deafness. We discuss our findings in comparison to several other syndromic and non-syndromic deafness loci that have been mapped to the X chromosome."	"Auditory and vestibular mouse mutants: models for human deafness. We have shown here several examples of how hearing and vestibular impaired mouse mutants are generated and the insight that they provide in the study of auditory and vestibular function. These types of genetic studies may also lead to the identification of disease-susceptibility genes, perhaps the most critical element in presbyacusis (age-related hearing loss). Some individuals may be more prone to hearing loss with increasing age or upon exposure to severe noise, and susceptibility genes may be involved. Different inbred mice show a variety of age-related and noise-induced hearing loss that varies between normal hearing and severe deafness throughout their life span /27/. Genetic diversity between inbred mouse strains has been shown to be a powerful tool for the discovery of modifier genes. Already two studies have found regions in which modifier genes for deafness may reside /28-29/. Future studies will hopefully lead to the identification of genes that modify hearing loss and will help us understand the variability that exists in human hearing, a crucial component in developing successful treatment strategies. The first human non-syndromic deafness-causing gene was identified in 1995, and since then, additional genes have been discovered. Much of the credit for this boom is due to deaf and vestibular mouse mutants. Their study has led to great insight regarding the development and function of the mammalian inner ear, and correlations with human deafness can now be made since mutations in the same genes have been found in these two mammals. As deafness is the most common form of sensory impairment and affects individuals of all ages, elucidating the function of the auditory and vestibular systems through genetic approaches is essential in improving and designing effective treatments for hearing loss."	"Choroideremia, sensorineural deafness, and primary ovarian failure in a woman with a balanced X-4 translocation. We present clinical and cytogenetic studies of a female patient affected with choroideremia, mild sensorineural deafness, and primary amenorrhea showing a balanced translocation between chromosomes X and 4. The breakpoint was precisely defined applying FISH techniques: 46,X,t(X;4)(q21.2;p16.3).ish t(X;4)(D4S96+, D4F26+; wcpX+). The X-chromosomal breakpoint was located within a region where both the choroideremia locus and a deafness locus (DFN3/POU3F4) have been mapped. The presence of X-linked disorders in this balanced carrier of X-autosomal translocations (XAT) can be explained either by the disruption of the structural coding or regulatory sequences of the gene(s) or by the submicroscopic deletion of this region leading to a contiguous gene deletion syndrome. The primary ovarian failure (POF) found in the present case has been already observed in XAT when the breakpoint is within a previously defined critical region (Xq13-26). A position effect is postulated as a possible explanation."	"The ins and outs of X-linked deafness type 3. NA"	"DFN2. NA"	"A novel ribosomal S6-kinase (RSK4; RPS6KA6) is commonly deleted in patients with complex X-linked mental retardation. Large deletions in Xq21 often are associated with contiguous gene syndromes consisting of X-linked deafness type 3 (DFN3), mental retardation (MRX), and choroideremia (CHM). The identification of deletions associated with classic CHM or DFN3 facilitated the positional cloning of the underlying genes, REP-1 and POU3F4, respectively, and enabled the positioning of the MRX gene in between these genes. Here, we report the cloning and characterization of a novel gene, ribosomal S6-kinase 4 (RSK4; HGMW-approved symbol RPS6KA6), which maps in the MRX critical region. RSK4 is completely deleted in eight patients with the contiguous gene syndrome including MRX, partially deleted in a patient with DFN3 and present in patients with an Xq21 deletion and normal intellectual abilities. RSK4 is most abundantly expressed in brain and kidney. The predicted protein of 746 amino acids shows a high level of homology to three previously isolated members of the human RSK family. RSK2 is involved in Coffin-Lowry syndrome and nonspecific MRX. The localization of RSK4 in the interval that is commonly deleted in mentally retarded males together with the high degree of amino acid identity with RSK2 suggests that RSK4 plays a role in normal neuronal development. Further mutation analyses in males with X-linked mental retardation must prove that RSK4 is indeed a novel MRX gene."	"The sex-linked fidget mutation abolishes Brn4/Pou3f4 gene expression in the embryonic inner ear. We have demonstrated that the phenotype of the mouse mutant sex-linked fidget ( slf ) is caused by developmental malformations of the inner ear that result in hearing loss and vestibular dysfunction. Recently, pilot mapping experiments suggested that the mouse Brn4 / Pou3f4 gene co-segregated with the slf locus on the mouse X chromosome. These mapping data, in conjunction with the observation that the vertical head-shaking phenotype of slf mutants is identical to that observed in mice with a targeted deletion of the Brn4 gene, suggested that slf is a mutant allele of the Brn4 gene. In this paper, we have identified the nature of the slf mutation, and demonstrated that it is an X chromosomal inversion with one breakpoint close to Brn4. This inversion selectively eliminates the expression of the Brn4 gene in the developing inner ear, but not the neural tube. Finally, these results demonstrate that the slf mutation is a good mouse model for the most prevalent form of X-linked congenital deafness in man, which is associated with mutations in the human Brn4 ortholog, POU3F4."	"The POU domain gene, XlPOU 2 is an essential downstream determinant of neural induction. The POU domain gene, XlPOU 2, acts as a transcriptional activator during mid-gastrulation in Xenopus. Overexpression or misexpression of VP16-POU-GR, a fusion protein consisting of the strong activator domain of VP16 and the POU domain of XlPOU 2, results in ectopic expression of the neural-specific genes, nrp-1, en-2, and beta-tubulin. In contrast, overexpressing a dominant-inhibitory form of XlPOU 2 inhibits the chordin-induced neuralization of uncommitted ectoderm, and results in a loss of nrp-1 and en-2 expression in embryos. Furthermore, in uncommitted ectoderm, XlPOU 2 regulates the developmental neural program that includes a number of pre-pattern genes and at least one proneural gene, X-ngnr-1, thus playing a key role during neural determination."	"Perspectives: biomedicine. The benefits of recycling. NA"	"An octamer-binding site is crucial for the activity of an enhancer active at the embryonic met-/mesencephalic junction. An enhancer sequence found in the Protease Nexin-1 (PN-1) gene was shown to drive lacZ expression specifically at the met-/mesencephalic junction in transgenic mouse embryos. A functional study of this enhancer has been performed to better understand the mechanisms regulating isthmic gene expression. An octamer-binding site for POU domain factors was found to be crucial for the activity of the enhancer in vivo. Comparative expression studies of POU domain factors, electrophoretic mobility shift assays and transient transfection experiments, strongly suggest that Brn-1/-2 regulate the enhancer activity in vivo. In addition, in vitro experiments indicated that FGF-8 was required for the maintenance of the enhancer activity, but not for the synthesis of Bn-1/-2. The data represents the first functional evidence for a role of POU factors in the regulation of met-/mesencephalic gene expression. It also implies that at least two regulatory pathways, namely the FGF-8 signaling and the octamer-binding site pathway, synergistically interact to control the PN-1 enhancer activity in vivo."	"Altered cochlear fibrocytes in a mouse model of DFN3 nonsyndromic deafness. DFN3, an X chromosome-linked nonsyndromic mixed deafness, is caused by mutations in the BRN-4 gene, which encodes a POU transcription factor. Brn-4-deficient mice were created and found to exhibit profound deafness. No gross morphological changes were observed in the conductive ossicles or cochlea, although there was a dramatic reduction in endocochlear potential. Electron microscopy revealed severe ultrastructural alterations in cochlear spiral ligament fibrocytes. The findings suggest that these fibrocytes, which are mesenchymal in origin and for which a role in potassium ion homeostasis has been postulated, may play a critical role in auditory function."	"Targeted mutagenesis of the POU-domain gene Brn4/Pou3f4 causes developmental defects in the inner ear. Targeted mutagenesis in mice demonstrates that the POU-domain gene Brn4/Pou3f4 plays a crucial role in the patterning of the mesenchymal compartment of the inner ear. Brn4 is expressed extensively throughout the condensing mesenchyme of the developing inner ear. Mutant animals displayed behavioral anomalies that resulted from functional deficits in both the auditory and vestibular systems, including vertical head bobbing, changes in gait, and hearing loss. Anatomical analyses of the temporal bone, which is derived in part from the otic mesenchyme, demonstrated several dysplastic features in the mutant animals, including enlargement of the internal auditory meatus. Many phenotypic features of the mutant animals resulted from the reduction or thinning of the bony compartment of the inner ear. Histological analyses demonstrated a hypoplasia of those regions of the cochlea derived from otic mesenchyme, including the spiral limbus, the scala tympani, and strial fibrocytes. Interestingly, we observed a reduction in the coiling of the cochlea, which suggests that Brn-4 plays a role in the epithelial-mesenchymal communication necessary for the cochlear anlage to develop correctly. Finally, the stapes demonstrated several malformations, including changes in the size and morphology of its footplate. Because the stapes anlage does not express the Brn4 gene, stapes malformations suggest that the Brn4 gene also plays a role in mesenchymal-mesenchymal signaling. On the basis of these data, we suggest that Brn-4 enhances the survival of mesodermal cells during the mesenchymal remodeling that forms the mature bony labyrinth and regulates inductive signaling mechanisms in the otic mesenchyme."	"A role for the POU-III transcription factor Brn-4 in the regulation of striatal neuron precursor differentiation. Both insulin-like growth factor-I (IGF-I) and brain-derived neurotrophic factor (BDNF) induce the differentiation of post-mitotic neuronal precursors, derived from embryonic day 14 (E14) mouse striatal multipotent stem cells. Here we ask whether this differentiation is mediated by a member of the POU-III class of neural transcription factors. Exposure of stem cell progeny to either IGF-I or BDNF resulted in a rapid upregulation of Brn-4 mRNA and protein. Indirect immunocytochemistry with Brn-4 antiserum showed that the protein was expressed in newly generated neurons. Other POU-III genes, such as Brn-1 and Brn-2, did not exhibit this upregulation. Basic FGF, a mitogen for these neuronal precursors, did not stimulate Brn-4 expression. In the E14 mouse striatum, Brn-4-immunoreactive cells formed a boundary between the nestin-immunoreactive cells of the ventricular zone and the beta-tubulin-immunoreactive neurons migrating into the mantle zone. Loss of Brn-4 function during the differentiation of stem cell-derived or primary E14 striatal neuron precursors, by inclusion of antisense oligonucleotides, caused a reduction in the number of beta-tubulin-immunoreactive neurons. These findings suggest that Brn-4 mediates, at least in part, the actions of epigenetic signals that induce striatal neuron-precursor differentiation."	"[Familial mixed hearing loss associated with X chromosome and stapedial gusher]. Perilymphatic and/or CSF loss through the oval window during stapedectomy is called a gusher. This rare disorder is associated with X-linked progressive mixed hearing loss. It is related with mutations in the POU3F4 gene at locus DFN3 on Xq21. Our study of the cases seen in our department yielded information and clinical and radiological findings that could be useful for the clinical management, early diagnosis, and prevention of erroneous therapeutic indications."	"A new mutation in the POU3F4 gene in a Japanese family with X-linked mixed deafness (DFN3). The molecular defect in patients with X-linked mixed deafness showing a perilymphatic gusher at stapedectomy (DFN3) has been attributed to mutations in the POU3F4 gene. This study aimed to clarify an allelic variant of this gene. This was a genetic study of a single Japanese family with DFN3. Products of a polymerase chain reaction (PCR) were subjected to single-strand conformation polymorphism (SSCP) analysis. Direct sequencing of PCR products from patients and carriers showing SSCP variants was performed using the fluorescent dideoxy termination method and a sequencer. Sequencing of the PCR product revealed a 6-base deletion (TTCAAA) at nucleotides 601 to 606, resulting in a two-amino-acid deletion in the POU3F4 protein, (phenylalanine and lysine at amino acid residues 201 and 202). The deletion was adjacent to the site of a nonsense mutation previously described. Microdeletions at a previously undescribed location account for some clinically important POU3F4 mutations."	"Changes in the subcellular localization of the Brn4 gene product precede mesenchymal remodeling of the otic capsule. To better understand the genetic mechanisms that regulate the formation of the temporal bone, we have characterized the developmental expression pattern of the mouse gene, Brn4/Pou3f4, which plays a central role in bony labyrinth formation. Expression of this gene is initially detected in the ventral aspect of the otic capsule at 10.5 days post coitus (dpc), and correlates with the onset of mesenchymal condensation in the otic capsule. As the otic capsule condenses further and surrounds the entire otic vesicle, the Brn4 gene product is detected throughout the inner ear in the mesenchyme of both the cochlear and vestibular aspects. Early in otic embryogenesis, the Brn4 gene product is localized to the nucleus of the vast majority of cells in which it is expressed. The Brn4 gene product remains nuclear in those regions of the otic capsule that eventually give rise to the mature bony labyrinth. However, the subcellular localization of the Brn4 gene product shifts from strictly nuclear to perinuclear in those regions of the otic capsule that will cavitate to form acellular regions in the temporal bone, such as the scala tympani, scala vestibuli, and the internal auditory meatus. These data provide a detailed analysis of the expression pattern of the Brn4 gene, and provide insight into the role of the Brn4 gene product and its regulation during otic capsule formation."	"Two deaf mice, two deaf mice... NA"	"22-Mb integrated physical and genetic map based on YAC/STS content spanning the interval DXS1125-DXS95 in human Xq12-q21.31. A YAC/STS map has been assembled spanning 22 Mb across Xq12-q21.31, between markers DXS1125 and DXS95. In addition to the landmark loci for the X-inactivation center XIST and the ATRX, ATP7A, phosphoglycerate kinase, POU3F4, and choroideremia genes, the candidate disease gene regions for torsion dystonia 3 and two X-linked mental retardation syndromes are included. Also, the human voltage-dependent anion channel gene (HVDAC1) has been placed near DXS986. The current map incorporates 211 YACs from five different libraries, formatted with 185 STSs that comprise 26 genetic linkage markers, 60 newly-developed YAC-end STSs, and eight ESTs. The multiple clone coverage and average resolution of one STS per 120 kb provide resources for disease gene searches and are facilitating complete sequencing of the region."	"Genetic causes of hearing loss. In the past year, genes involved in the branchio-oto-renal and Treacher-Collins syndromes were cloned. Myosin 7A, a gene previously implicated in Usher syndrome type 1B, was also found to be mutated in non-syndromic hearing loss. Likewise, linkage studies in Pendred syndrome and Usher syndrome type 1D suggest that allelic mutations can cause syndromic and non-syndromic forms of deafness. In patients with X-linked deafness type 3, a hotspot for deletions was found 900 kb proximal to the causal gene POU3F4. Most importantly, the connexin 26 gene is mutated in approximately 50% of all recessive deafness families, enabling early diagnosis and carrier detection."	"POU domain transcription factor brain 4 confers pancreatic alpha-cell-specific expression of the proglucagon gene through interaction with a novel proximal promoter G1 element. The proglucagon gene is expressed in a highly restricted tissue-specific manner in the alpha cells of the pancreatic islet, the hypothalamus, and the small and large intestines. Proglucagon is processed to glucagon and glucagon-like peptides GLP-1 and -2. Glucagon is expressed in alpha cells and regulates glucose homeostasis. GLP-1 is implicated in the control of insulin secretion, food intake, and satiety signaling, and GLP-2 is implicated in regulating small-bowel growth. Cell-specific expression of the proglucagon gene is mediated by proteins that interact with the proximal G1 promoter element which contains several AT-rich domains with binding sites for homeodomain transcription factors. In an attempt to identify major homeodomain proteins involved in pancreatic alpha-cell-specific proglucagon expression, we found that the POU domain transcription factor brain 4 is abundantly expressed in proglucagon-producing islet cell lines and rat pancreatic islets. In the latter, brain 4 and glucagon immunoreactivity colocalize in the outer mantle of islets. Electrophoretic mobility shift assays with specific antisera identify brain 4 as a major constituent of nuclear proteins of glucagon-producing cells that bind to the G1 element of the proglucagon gene proximal promoter. Transcriptional transactivation experiments reveal that brain 4 is a major regulator of proglucagon gene expression by its interaction with the G1 element. The finding that a neuronal transcription factor is involved in glucagon gene transcription may explain the presence of proglucagon in certain areas of the brain as well as in pancreatic alpha cells. Further, this finding supports the idea that the neuronal properties of endodermis-derived endocrine pancreatic cells may find their basis in regulation of gene expression by neuronal transcription factors."	"Molecular analysis of the POU3F4 gene in patients with clinical and radiographic evidence of X-linked mixed deafness with perilymphatic gusher. The molecular defect in some patients with X-linked mixed deafness with perilymphatic gusher at stapes surgery (DFN3) was recently attributed to mutations in the POU3F4 gene. In this manuscript we describe the molecular analysis of the POU3F4 gene in 5 patients with clinical and radiographic evidence of DFN3. Novel mutations were found in 2 of the 5 patients analyzed, while 3 had an entirely normal protein coding sequence. The fact that 3 of the 5 patients with clinical histories and radiographic abnormalities characteristic of X-linked mixed deafness with perilymphatic gusher displayed normal POU3F4 gene sequences supports the possibility that not all patients with the characteristic phenotype have involvement of the POU3F4 gene."	"The class III POU factor Brn-4 interacts with other class III POU factors and the heterogeneous nuclear ribonucleoprotein U. The class III POU proteins are expressed throughout the central nervous system, including the hypothalamus, where they are often co-localized. Presumably, these POU proteins (Brain-1, Brain-2, Brain-4 and SCIP) serve as transcriptional transactivators. That they are co-expressed in some neurons suggests that, if they were to form homomeric and heteromeric complexes with each other, depending on the particular combination, they might have different DNA-binding specificities and, thus, activate different genes. We used purified fusion proteins of the four class III POU proteins in far-western assays to show that the proteins can interact. We confirmed their interactions using a two-hybrid system. Both techniques indicate that the interaction occurs through the POU domain. The far-western technique also allowed us to identify a 120-kDa nuclear protein that interacts with Brain-4. Subsequent affinity purification and microsequencing identified the protein as the heterogeneous nuclear ribonucleoprotein U (hnRNP U). This result suggests another mechanism by which a POU protein can influence gene expression: by facilitating the processing of pre-mRNA whose transcription it has stimulated."	"XIPOU 2 is a potential regulator of Spemann's Organizer. XIPOU 2, a member of the class III POU-domain family, is expressed initially at mid-blastula transition (MBT) and during gastrulation in the entire marginal zone mesoderm, including Spemann's Organizer (the Organizer). To identify potential targets of XIPOU 2, the interaction of XIPOU 2 with other genes co-expressed in the Organizer was examined by microinjecting XIPOU 2's mRNA into the lineage of cells that contributes to the Organizer, head mesenchyme and prechordal plate. XIPOU 2 suppresses the expression of a number of dorsal mesoderm-specific genes, including gsc, Xlim-1, Xotx2, noggin and chordin, but not Xnot. As a consequence of the suppression of dorsal mesoderm gene expression, bone morphogenetic factor-4 (Bmp-4), a potent inducer of ventral mesoderm, is activated in the Organizer. Gsc is a potential target of XIPOU 2. XIPOU 2 is capable of binding a class III POU protein binding site (CATTAAT) that is located within the gsc promoter, in the activin-inducible (distal) element. Furthermore, XIPOU 2 suppresses the activation of the gsc promoter by activin signaling. At the neurula and tailbud stages, dorsoanterior structures are affected: embryos displayed micropthalmia and the loss of the first branchial arch, as detected by the expression of pax-6, Xotx2 and en-2. By examining events downstream from the Wnt and chordin pathways, we determined that XIPOU 2, when overexpressed, acts specifically in the Organizer, downstream from GSK-3beta of the Wnt pathway and upstream from chordin. The interference in dorsalizing events caused by XIPOU 2 was rescued by chordin. Thus, in addition to its direct neuralizing ability, in a different context, XIPOU 2 has the potential to antagonize dorsalizing events in the Organizer."	"The molecular basis of X-linked deafness type 3 (DFN3) in two sporadic cases: identification of a somatic mosaicism for a POU3F4 missense mutation. We have investigated two unrelated males with X-linked deafness type 3 (DFN3) for mutations in the POU3F4 gene. In one patient, we observed a mutation that is predicted to result in an Arg330Ser amino acid substitution. In another DFN3 patient, a somatic mosaicism for an Arg323Gly amino acid substitution was found. This mosaicism was detected in two independently established EBV immortalized B cells and peripheral blood lymphocytes (PBLs). Semiquantitative analysis showed that approximately 50% of the PBLs of this patient carry the mutation. We hypothesize that the Arg323Gly mutation occurred very early in embryogenesis, before the differentiation of cells involved in hematopoiesis and inner ear development. In both patients, the missense mutations are situated in the POU homeodomain and are predicted to disrupt the DNA binding of the POU3F4 protein. All nine point mutations thus far described were found in the POU domains of POU3F4. Since these domains constitute only 35% of the open reading frame of POU3F4, there is a statistically significant preference for mutations in the POU-specific and POU homeodomain."	"Transcribed sequences encoded in the region involved in contiguous deletion syndrome that comprises X-linked stapes fixation and deafness. We have used a direct cDNA selection protocol to isolate expressed sequences from yeast artificial chromosome clones that contain approximately 900 Kb of genomic DNA from Xq21 band that is deleted in contiguous gene syndromes comprising of mixed deafness associated with stapes fixation (DFN3). In addition to identifying Brn4 (POU3f4), a POU domain containing transcription factor that is involved in DFN3 phenotype, we have isolated seven short fragment cDNAs mapping to the deleted region. Some of the selected fragments showed X-chromosome specificity and hybridized to autosomal DNA fragments, indicating the presence of a low abundance interspersed repeat in the cDNAs or their homology to some uncharacterized family of genes. In conformity with the inertness of Xq21 band our results demonstrate that the region encodes far less than the average density of genes in other parts of the genome."	"Identification of a hot spot for microdeletions in patients with X-linked deafness type 3 (DFN3) 900 kb proximal to the DFN3 gene POU3F4. Small mutations in the POU domain gene POU3F4 were recently shown to cause X-linked deafness type 3 (DFN3) in nine unrelated males. The POU3F4 gene was found to be located outside four of five deletions associated with DFN3. Two of these deletions were situated more than 400 kb proximal to POU3F4. Employing PCR analysis of sequence tagged sites from this region we initially identified novel deletions in two DFN3 patients. To investigate this chromosomal segment in more detail, we extended a previously established 850 kb cosmid contig in the centromeric direction to a total size of 1500 kb. Cosmids from this contig were hybridized to DNA of 11 unrelated males with DFN3. In two patients, we identified deletions encompassing the POU3F4 gene and variably sized segments of Xq21.1. In six of the nine remaining patients which lacked mutations in the POU3F4 gene, smaller deletions were identified which, with one exception, overlap in a 8 kb segment 900 kb proximal to the POU3F4 gene. In one patient, we identified several small deletions in the vicinity of the 8 kb DNA segment. Together, deletions account for 56% (13/23) of all known DFN3 mutations, most (10/13) of which do not encompass the POU3F4 gene. The combined molecular data suggest that the deletion hot spot region in Xq21.1 contains another DFN3 gene or, alternatively, a sequence element involved in transcriptional regulation of POU3F4."	"Binding preferences of the POU domain protein Brain-4: implications for autoregulation. The POU domain-containing transcription factor Brain-4 (Brn-4, RHS-2) was examined for its sites of expression and DNA binding preferences. In the rat, Brn-4 is expressed in 76 and 65% of vasopressin neurons in the paraventricular and supraoptic nuclei, respectively; but in only 10% of corticotropin-releasing factor neurons in the paraventricular nucleus of the hypothalamus. From these data we speculate that genes expressed within vasopressinergic neurons are more likely to be regulated by Brn-4 than those in corticotropin-releasing factor neurons. Random oligonucleotide site selection indicates Brn-4 prefers binding the DNA element CAATATGCTAAT and is inflexible in its spacing requirement between putative CAATAT and TAAT half sites, preferring 2 nucleotides between these elements. Electrophoretic mobility shift and DNase I footprinting analyses show five regions between nucleotides -457 and +22 of the Brn-4 promoter that are bound by Brn-4. Furthermore, Brn-4 can transactivate from this region of the Brn-4 promoter, suggesting that Brn-4 expression may be autoregulated."	"Transcription factors in disease. Mutations affecting several predominantly tissue-specific transcriptional regulators have recently been associated with disease phenotypes. Although the mutational spectrum is variable, many of the reported cases involve clear loss-of-function mutations-such as Waardenburg syndrome type 1, aniridia and Rubinstein-Taybi syndrome-suggesting that the genetic mechanism involved in disease is haplo-insufficiency. The high degree of dosage sensitivity often appears to affect only a subset of the tissues that express the gene. Position effects with cytogenetic rearrangements well outside the coding region have been implicated for four of the genes discussed: POU3F4, SOX9, PAX6, and GL13."	"POU homeodomain genes and myogenesis. We show that members of the POU homeodomain family are among the transcription factors expressed in developing mouse skeletal muscle. From a cDNA library prepared from fetal muscle mRNA, we cloned a cDNA identical to that of Brn-4, a POU class II gene previously cloned from neural tissues. In limb muscle, we found that Brn-4 mRNA expression was highest at embryonic days 15-18, declined-after birth, and was undetectable in adults. The mRNAs of two additional POU genes, Emb (POU class VI) and Oct-1 (POU class II), were also expressed in developing muscle and, unlike Brn-4, continued to be expressed in postnatal and adult muscles. In skeletal muscle, expression of Brn-4 is myogenin-dependent, because muscles from myogenin-deficient fetuses contained much less Brn-4 mRNA than muscles from myogenin-expressing littermates. In contrast, expression of Emb was the same in the presence or absence of myogenin. The distinct pattern of Brn-4 mRNA expression and its dependence on a myogenic regulatory factor suggest that Brn-4 is part of the network of interacting transcription factors that control muscle-specific gene expression during mammalian myogenesis."	"A duplication/paracentric inversion associated with familial X-linked deafness (DFN3) suggests the presence of a regulatory element more than 400 kb upstream of the POU3F4 gene. X-linked deafness with stapes fixation (DFN3) is caused by mutations in the POU3F4 gene at Xq21.1. By employing pulsed field gel electrophoresis (PFGE) we identified a chromosomal aberration in the DNA of a DFN3 patient who did not show alterations in the open reading frame (ORF) of POU3F4. Southern blot analysis indicated that a DNA segment of 150 kb, located 170 kb proximal to the POU3F4 gene, was duplicated. Fluorescence in situ hybridization (FISH) analysis, PFGE, and detailed Southern analysis revealed that this duplication is part of a more complex rearrangement including a paracentric inversion involving the Xq21.1 region, and presumably the Xq21.3 region. Since at least two DFN3-associated minideletions are situated proximal to the duplicated segment, the inversion most likely disconnects the POU3F4 gene from a regulatory element which is located at a distance of at least 400 kb upstream of the POU3F4 gene."	"Further mutations in Brain 4 (POU3F4) clarify the phenotype in the X-linked deafness, DFN3. NA"	"XIPOU 2, a noggin-inducible gene, has direct neuralizing activity. XIPOU 2, a member of the class III POU domain family, is expressed initially in Spemann's organizer, and later, in discrete regions of the developing nervous system in Xenopus laevis. XIPOU 2 may act downstream from initial neural induction events, since it is activated by the neural inducer, noggin. To determine if XIPOU 2 participates in the early events of neurogenesis, synthetic mRNA was microinjected into specific blastomeres of the 32-cell stage embryo. Misexpression of XIPOU 2 in the epidermis causes a direct switch in cell fate from an epidermal to a neuronal phenotype. In the absence of mesoderm induction, XIPOU 2 has the ability to induce a neuronal phenotype in uncommitted ectoderm. These data demonstrate the potential of XIPOU 2 to act as a master regulator of neurogenesis."	"Association between X-linked mixed deafness and mutations in the POU domain gene POU3F4. Deafness with fixation of the stapes (DFN3) is the most frequent X-linked form of hearing impairment. The underlying gene has been localized to a 500-kilobase segment of the Xq21 band. Here, it is reported that a candidate gene for this disorder, Brain 4 (POU3F4), which encodes a transcription factor with a POU domain, maps to the same interval. In five unrelated patients with DFN3 but not in 50 normal controls, small mutations were found that result in truncation of the predicted protein or in nonconservative amino acid substitutions. These findings indicate that POU3F4 mutations are a molecular cause of DFN3."	"Brain 4: a novel mammalian POU domain transcription factor exhibiting restricted brain-specific expression. The POU domain gene family of transcription factors share a conserved bipartite DNA binding domain, and exhibit distinct temporal and spatial patterns of expression during development, particularly in the forebrain. A cDNA encoding a new member of the POU-III class of the POU domain gene family, referred to as Brn-4, was isolated from a rat hypothalamic cDNA library. Like other mammalian POU-III genes previously characterized (Brn-1, Brn-2, Tst-1), Brn-4 transcripts are initially widely expressed at all levels of the developing neural tube, but in contrast to other previously described POU-III genes, are subsequently restricted to only a few regions of the adult forebrain, including the supraoptic and paraventricular nuclei of the hypothalamus. Brn-4 was shown to bind to DNA sequences containing the octamer motif and to trans-activate promoters containing this DNA binding motif, based on the actions of a unique N-terminal information. This ontogenic pattern of Brn-4 expression in concert with that of Oct-2 and Pit-1, indicates that certain POU domain genes potentially exert their primary functions widely during early neural development, and in a very limited set of neurons in the mature brain."	"Structure and evolution of four POU domain genes expressed in mouse brain. Four mouse POU domain genomic DNA clones--Brain-1, Brain-2, Brain-4, and Scip--and Brain-2 cDNA, which are expressed in adult brain, were cloned and the coding and noncoding regions of the genes were sequenced. The amino acid sequences of the four POU domains are highly conserved; sequences in other regions of the proteins also are conserved but to a lesser extent. The absence of introns from the coding regions of the four POU domain genes and the similarity of amino acid sequences of the corresponding proteins suggest that the coding region of the ancestral class III POU domain gene lacked introns and therefore may have originated by reverse transcription of a molecule of POU domain mRNA followed by insertion of the cDNA into germ cell genomic DNA. Additional duplications of the ancestral class III POU domain gene (or mRNA) would create the Brain-1, Brain-2, Brain-4, and Scip genes."	"RHS2, a POU domain-containing gene, and its expression in developing and adult rat. Gene expression within the central nervous system is regulated by complex interactions of DNA-binding proteins, among which are the POU domain-containing proteins, which are distantly related to homeobox proteins. These POU domain-containing proteins have been implicated in control of transcription and replication within the central nervous system. We used degenerate primers with the PCR to isolate another POU domain-containing cDNA, RHS2, from hypothalamic RNA. Isolation of a putative full-length cDNA was accomplished by using serial dilutions of a hypothalamic cDNA library grown on solid medium. This member of the class III POU family is expressed in rats from embryonic day 11.5 into adulthood, being especially prominent in the brain. We performed double-labeling hybridization histochemistry and determined that RHS2 is coexpressed with a variety of neuropeptides in medium-sized neurons in the caudate putamen and with dynorphin in the paraventricular and supraoptic nuclei of the hypothalamus. Expression of RHS2 in the caudate putamen was increased by elimination of its nigrostriatal dopaminergic innervation."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SMPX"	"nonsyndromic genetic deafness"	"Expression pattern of the small muscle protein, X-linked (smpx) gene during zebrafish embryonic and larval developmental stages. The small muscle protein, X-linked (SMPX) gene encodes a cytoskeleton-associated protein, highly expressed in both cardiac and skeletal muscles, as well as in fetal inner ears, with suggested roles as mechanotransductor. Recently, several mutations in the SMPX gene have been associated with X-chromosomal progressive deafness in human. However, very little information is known concerning the roles of SMPX, and no in-vivo models are currently available. Therefore, we characterized the zebrafish ortholog of SMPX to pave the way towards the establishment of a biotool for future functional studies. Despite the genome duplication occurred in the ancestry of teleosts, zebrafish retain only one copy of smpx which shares a high degree of similarity with the mammalian counterpart in terms of genomic organization, syntenic map, and encoded protein. RT-PCR, as well as whole-mount in-situ hybridization and immunofluorescence analyses, revealed that smpx is expressed in several embryonic areas starting from the 4-somite stage. Specifically, smpx mRNA marked the Kupffer's vesicle (KV), the somites, the myocardium, the hair cells of the anterior and the posterior macula of the inner ear, the pronephric ducts, and the muscles of the branchial arches, eyes and pectoral fins. According to our data, zebrafish smpx expression pattern closely resembles that observed in mouse and human, supporting the notion that zebrafish might represent a suitable in-vivo model to disclose the cellular and molecular mechanisms underlying the involvement of SMPX in development and disease."	"Molecular epidemiology of Chinese Han deaf patients with bi-allelic and mono-allelic GJB2 mutations. Recessive mutations in GJB2 is the most common cause of genetic hearing loss worldwide. The aim of this study is to determine the spectrum and frequency of GJB2 variants in Chinese Han deaf patients and to investigate the underlying causative genes in patients with mono-allelic GJB2 mutations. We analyzed the mutation screening results of GJB2 in 1852 Chinese Han probands with apparently autosomal-recessive hearing loss in our laboratory. Targeted next-generation sequencing of 139 known deafness-related genes were performed in 44 probands with mono-allelic GJB2 mutations. Bi-allelic GJB2 mutations was identified in 25.65% of patients, in which the c.235delC (p.L79Cfs*3) mutation is the most frequent cause for both severe-to-profound (84.93%) and mild-to-moderate hearing loss (54.05%), while the c.109G &gt; A (p.V37I) mutation is another frequent cause for mild-to-moderate hearing loss (40.54%). In 3.89% of patients only one mutant allele can be identified in GJB2. Targeted next generation sequencing in 44 such probands revealed digenic heterozygous mutations in GJB2/GJB6 and GJB2/GJB3 as the likely pathogenic mechanism in three probands. In 13 probands, on the other hand, pathogenic mutations in other deafness-associated genes (STRC, EYA1, MITF, PCDH15, USH2A, MYO15A, CDH23, OTOF, SLC26A4, SMPX, and TIMM8A) can be identified as the independent genetic cause, suggesting that the mono-allelic GJB2 mutations in those probands is likely co-incidental. Our results demonstrated that GJB2 should be a primary target for mutation screening in Chinese Han deaf patients, and those with mono-allelic GJB2 mutations should be further screened by next generation sequencing."	"In silico analysis of nonsynonymous single-nucleotide polymorphisms (nsSNPs) of the SMPX gene. Mutations in the SMPX gene can disrupt the regular activity of the SMPX protein, which is involved in the hearing process. Recent reports showing a link between nonsynonymous single-nucleotide polymorphisms (nsSNPs) in SMPX and hearing loss, thus classifying deleterious SNPs in SMPX will be an uphill task before designing a more extensive population study. In this study, damaging nsSNPs of SMPX from the dbSNP database were identified by using 13 bioinformatics tools. Initially, the impact of nsSNPs in the SMPX gene were evaluated through different in silico predictors; and the deleterious convergent changes were analyzed by energy-minimization-guided residual network analysis. In addition, the pathogenic effects of mutations in SMPX-mediated protein-protein interactions were also characterized by structural modeling and binding energy calculations. A total of four mutations (N19D, A29T, K54N, and S71L) were found to be highly deleterious by all the tools, which are located at highly conserved regions. Furthermore, all four mutants showed structural alterations, and the communities of amino acids for mutant proteins were readily changed, compared to the wild-type. Among them, A29T (rs772775896) was revealed as the most damaging nsSNP, which caused significant structural deviation of the SMPX protein, as a result reducing the binding affinity to other functional partners. These findings reflect the computational insights into the deleterious role of nsSNPs in SMPX, which might be helpful for subjecting wet-lab confirmatory analysis."	"Whole-exome sequencing identifies a donor splice-site variant in SMPX that causes rare X-linked congenital deafness. X-linked deafness-4 (DFNX4) caused by functional loss of SMPX is a nonsyndromic form of progressive hearing loss with post-lingual onset. Herein, we describe a male neonate from an ethnic Han Chinese family who presented with congenital deafness. The proband and the family members were subjected to comprehensively hearing screen. Genetic testing was carried out using whole-exome sequencing (WES). The result was verified by Sanger sequencing. Functional characterization of the identified variant was completed by reverse transcription PCR (RT-PCR), Sanger sequencing, and fluorogenic quantitative PCR (qPCR). The proband was diagnosed with progressive sensorineural hearing loss. The proband's mother showed normal hearing at present. The proband's maternal grandmother exhibited mild HL since the age of 50. Using whole-exome sequencing (WES), we identified a donor splice-site variant (NM_014332.2: c.132 + 1G&gt;A) in the SMPX gene in the proband. The mother and maternal grandmother were both carriers, which suggested a X-linked inheritance of the condition in the family. RT-PCR and Sanger sequencing revealed that four alternative splice pairs within intron 3 have led to four aberrant RNAs transcripts, including two non-canonical splice-pairs (GC-AG and CT-AG). The variant generated a novel frameshift variant, creating a premature termination codon (PTC) upstream of a newly formed splice site (p.Met45Glyfs*16). SMPX mRNA expression assay showed that the PTC has caused degradation of mRNA via nonsense-mediated mRNA decay (NMD). This is the first study to report a SMPX (DFNX4) splicing variant in a Chinese family. These findings, especially congenital deafness, contributed to existing knowledge regarding the genotypic and phenotypic spectrum of SMPX-associated hearing loss."	"Zebrafish Model for Nonsyndromic X-Linked Sensorineural Deafness, DFNX1. Hereditary deafness is often a neurosensory disorder and affects the quality of life of humans. Only three X-linked genes (POU class 3 homeobox 4 (POU3F4), phosphoribosyl pyrophosphate synthetase 1 (PRPS1), and small muscle protein X-linked (SMPX)) are known to be involved in nonsyndromic hearing loss. Four PRPS1 missense mutations have been found to associate with X-linked nonsyndromic sensorineural deafness (DFNX1/DFN2) in humans. However, a causative relationship between PRPS1 mutations and hearing loss in humans has not been well studied in any animal model. Phosphoribosyl pyrophosphate synthetase 1 (PRS-I) is highly conserved in vertebrate taxa. In this study, we used the zebrafish as a model to investigate the auditory role of zebrafish orthologs (prps1a and prps1b) of the human PRPS1 gene with whole mount in situ hybridization, reverse transcription polymerase chain reaction, phenotypic screening, confocal imaging, and electrophysiological methods. We found that both prps1a and prps1b genes were expressed in the inner ear of zebrafish. Splice-blocking antisense morpholino oligonucleotides (MO1 and MO2) caused exon-2 skip and intron-2 retention of prps1a and exon-2 skip and intron-1 retention of prps1b to knock down functions of the genes, respectively. MO1 and MO2 morphants had smaller otic vesicles and otoliths, fewer inner ear hair cells, and lower microphonic response amplitude and sensitivity than control zebrafish. Therefore, knockdown of either prps1a or prps1b resulted in significant sensorineural hearing loss in zebrafish. We conclude that the prps1 genes are essential for hearing in zebrafish, which has the potential to help us understand the biology of human deafness DFNX1/DFN2. Anat Rec, 303:544-555, 2020. © 2019 American Association for Anatomy."	"Gene Network Dysregulation in the Trigeminal Ganglia and Nucleus Accumbens of a Model of Chronic Migraine-Associated Hyperalgesia. The pharmacological agent nitroglycerin (NTG) elicits hyperalgesia and allodynia in mice. This model has been used to study the neurological disorder of trigeminovascular pain or migraine, a debilitating form of hyperalgesia. The present study validates hyperalgesia in an established mouse model of chronic migraine triggered by NTG and advances the understanding of the associated molecular mechanisms. The RNA-seq profiles of two nervous system regions associated with pain, the trigeminal ganglia (TG) and the nucleus accumbens (NAc), were compared in mice receiving chronic NTG treatment relative to control (CON) mice. Among the 109 genes that exhibited an NTG treatment-by-region interaction, solute carrier family 32 (GABA vesicular transporter) member 1 (Slc32a1) and preproenkephalin (Penk) exhibited reversal of expression patterns between the NTG and CON groups. Erb-b2 receptor tyrosine kinase 4 (Erbb4) and solute carrier family 1 (glial high affinity glutamate transporter) member 2 (Slc1a2) exhibited consistent differential expression between treatments across regions albeit at different magnitude. Period circadian clock 1 (Per1) was among the 165 genes that exhibited significant NTG treatment effect. Biological processes disrupted by NTG in a region-specific manner included adaptive and innate immune responses; whereas glutamatergic and dopaminergic synapses and rhythmic process were disrupted in both regions. Regulatory network reconstruction highlighted the widespread role of several transcription factors (including Snrnp70, Smad1, Pax6, Cebpa, and Smpx) among the NTG-disrupted target genes. These results advance the understanding of the molecular mechanisms of hyperalgesia that can be applied to therapies to ameliorate chronic pain and migraine."	"Erratum to &quot;Skewed X-chromosome inactivation and next-generation sequencing to identify a novel SMPX variants associated with X-linked hearing loss in a Chinese family&quot;[Int. J. Pediatr. Otorhinolaryngol. (2018) 88-93]. NA"	"Skewed X-chromosome inactivation and next-generation sequencing to identify a novel SMPX variants associated with X-linked hearing loss in a Chinese family. Hereditary nonsyndromic hearing loss is extremely heterogeneous and an X-linked form accounts for 1-5% of all cases. The aim of this study was to identify the pathogenic variants in a nonsyndromic X-linked dominant hearing loss family, and explain the reason of different hearing phenotype in hearing between the two sisters with the same variant. Targeted gene capture and next-generation sequencing were used to study the genetic cause. What's more, methylation differences among the androgen receptor genes were used to investigate whether the different hearing levels of the two sisters is related to X-chromosome inactivation (Xi). We identified SMPX c.29insA (p.Asn10Lysfs*3) as the novel variant causing deafness. The skewed X-chromosome inactivation was relevant to the hearing difference between the two sisters. Targeted gene capture and NGS is an efficient way to identify pathogenic variants in genes. Analysis of X-chromosome inactivation is beneficial to the diagnosis and genetic counseling of X-linked dominant hearing loss families."	"X-Linked Sensorineural Hearing Loss: A Literature Review. Sensorineural hearing loss is a very diffuse pathology (about 1/1000 born) with several types of transmission. X-linked hearing loss accounts for approximately 1% - 2% of cases of non-syndromic forms, as well as for many syndromic forms. To date, six loci (DFNX1-6) and five genes (PRPS1 for DFNX1, POU3F4 for DFNX2, SMPX for DFNX4, AIFM1 for DFNX5 and COL4A6 for DFNX6) have been identified for X-linked non-syndromic hearing loss. For the syndromic forms, at least 15 genes have been identified, some of which are also implicated in non-syndromic forms. Moreover, some syndromic forms, presenting large chromosomal deletions, are associated with mental retardation too. This review presents an overview of the currently known genes related to X-linked hearing loss with the support of the most recent literature. It summarizes the genetics and clinical features of X-linked hearing loss to give information useful to realize a clear genetic counseling and an early diagnosis. It is important to get an early diagnosis of these diseases to decide the investigations to predict the evolution of the disease and the onset of any other future symptoms. This information will be clearly useful for choosing the best therapeutic strategy. In particular, regarding audiological aspects, this review highlights risks and benefits currently known in some cases for specific therapeutic intervention."	"A novel mutation in the SMPX gene associated with X-linked nonsyndromic sensorineural hearing loss in a Chinese family. X-linked inheritance is very rare and is estimated to account for only 1-5% of all nonsyndromic hearing loss cases. We found a multiplex family from China segregating with X-linked nonsyndromic hearing loss. After exclusive analysis of 10 common variations of three hearing loss-related genes, GJB2, mtDNA12srRNA and SLC26A4, a novel truncated variant of SMPX, c.87dupA (p.Gly30Argfs*12) (NCBI ClinVar Submission ID: SUB3136126), was identified by whole-exome sequencing. This variant was co-segregated with hearing loss in the entire family and was absent in 576 unrelated ethnically and geographically matched controls. We also detected a single nucleotide variation in two male controls with normal hearing, SMPX c.55A&gt;G (p.Asn19Asp), which has been annotated as a rare variant in the Single Nucleotide Polymorphism (dbSNP) (rs759552778) and Exome Aggregation Consortium (ExAC) databases. This study has enriched the mutation spectrum of the SMPX gene."	"A novel splicing mutation in SMPX is linked to nonsyndromic progressive hearing loss. X-linked nonsyndromic hearing impairment is the rarest form of genetic hearing loss and represents only a minor fraction of all cases. The aim of this study was to investigate the cause of X-linked nonsyndromic sensorineural hearing loss in a three-generation American family. Whole-exome sequencing and co-segregation analysis were used to identify disease-causing genes. In this study, we described in detail the clinical characteristics of the family and identified a novel frameshift mutation creating a premature stop codon (c.133-1 G &gt; A, p.(Gly45fs*36)) of SMPX. The loss-of-function mutation was co-segregated with the progressive hearing loss phenotype and was absent in 200 normal controls. We report the first SMPX (DFNX4) mutation in a North American family. Our findings contribute to the existing genotypic and phenotypic spectrum of SMPX associated hearing loss. Furthermore, our data suggest that exome sequencing is promising in the genetic diagnosis of hearing loss."	"Convergent roles of ATF3 and CSL in chromatin control of cancer-associated fibroblast activation. Cancer-associated fibroblasts (CAFs) are important for tumor initiation and promotion. CSL, a transcriptional repressor and Notch mediator, suppresses CAF activation. Like CSL, ATF3, a stress-responsive transcriptional repressor, is down-modulated in skin cancer stromal cells, and Atf3 knockout mice develop aggressive chemically induced skin tumors with enhanced CAF activation. Even at low basal levels, ATF3 converges with CSL in global chromatin control, binding to few genomic sites at a large distance from target genes. Consistent with this mode of regulation, deletion of one such site 2 Mb upstream of IL6 induces expression of the gene. Observed changes are of translational significance, as bromodomain and extra-terminal (BET) inhibitors, unlinking activated chromatin from basic transcription, counteract the effects of ATF3 or CSL loss on global gene expression and suppress CAF tumor-promoting properties in an in vivo model of squamous cancer-stromal cell expansion. Thus, ATF3 converges with CSL in negative control of CAF activation with epigenetic changes amenable to cancer- and stroma-focused intervention."	"A novel frameshift mutation of SMPX causes a rare form of X-linked nonsyndromic hearing loss in a Chinese family. X-linked hearing impairment is the rarest form of genetic hearing loss (HL) and represents only a minor fraction of all cases. The aim of this study was to investigate the cause of X-linked inherited sensorineural HL in a four-generation Chinese family. A novel duplication variant (c.217dupA, p.Ile73Asnfs*5) in SMPX was identified by whole-exome sequencing. The frameshift mutation predicted to result in the premature truncation of the SMPX protein was co-segregated with the HL phenotype and was absent in 295 normal controls. Subpopulation screening of the coding exons and flanking introns of SMPX was further performed for 338 Chinese patients with nonsydromic HL by Sanger sequencing, and another two potential causative substitutions (c.238C&gt;A and c.55A&gt;G) in SMPX were identified in additional sporadic cases of congenital deafness. Collectively, this study is the first to report the role of SMPX in Chinese population and identify a novel frameshift mutation in SMPX that causes not only nonsyndromic late-onset progressive HL, but also congenital hearing impairment. Our findings extend the mutation and phenotypic spectrum of the SMPX gene."	"Role of skeletal muscle in ear development. The current paper is a continuation of our work described in Rot and Kablar, 2010. Here, we show lists of 10 up- and 87 down-regulated genes obtained by a cDNA microarray analysis that compared developing Myf5-/-:Myod-/- (and Mrf4-/-) petrous part of the temporal bone, containing middle and inner ear, to the control, at embryonic day 18.5. Myf5-/-:Myod-/- fetuses entirely lack skeletal myoblasts and muscles. They are unable to move their head, which interferes with the perception of angular acceleration. Previously, we showed that the inner ear areas most affected in Myf5-/-:Myod-/- fetuses were the vestibular cristae ampullaris, sensitive to angular acceleration. Our finding that the type I hair cells were absent in the mutants' cristae was further used here to identify a profile of genes specific to the lacking cell type. Microarrays followed by a detailed consultation of web-accessible mouse databases allowed us to identify 6 candidate genes with a possible role in the development of the inner ear sensory organs: Actc1, Pgam2, Ldb3, Eno3, Hspb7 and Smpx. Additionally, we searched for human homologues of the candidate genes since a number of syndromes in humans have associated inner ear abnormalities. Mutations in one of our candidate genes, Smpx, have been reported as the cause of X-linked deafness in humans. Our current study suggests an epigenetic role that mechanical, and potentially other, stimuli originating from muscle, play in organogenesis, and offers an approach to finding novel genes responsible for altered inner ear phenotypes."	"The nuclear receptor NOR-1 regulates the small muscle protein, X-linked (SMPX) and myotube differentiation. Recent works have highlighted the role of NOR-1 in both smooth and skeletal muscle, and have proposed this nuclear receptor as a nexus that coordinates muscle performance and metabolic capacity. However, no muscle specific genes regulated by NOR-1 have been identified so far. To identify NOR-1 target genes, we over-expressed NOR-1 in human vascular smooth muscle cells (VSMC). These cells subjected to sustained over-expression of supraphysiological levels of NOR-1 experienced marked phenotypic changes and up-regulated the skeletal muscle protein X-linked (SMPX), a protein typically expressed in striated muscle and associated to cell shape. By transcriptional studies and DNA-protein binding assays, we identified a non-consensus NBRE site in human SMPX promoter, critical for NOR-1 responsiveness. The expression of SMPX was higher in human skeletal muscle myoblasts (HSMM) than in human VSMC, and further increased in HSMM differentiated to myotubes. NOR-1 silencing prevented SMPX expression in HSMM, as well as their differentiation to myotubes, but the up-regulation of SMPX was dispensable for HSMM differentiation. Our results indicate that NOR-1 regulate SMPX in human muscle cells and acts as a muscle regulatory factor, but further studies are required to unravel its role in muscle differentiation and hypertrophy."	"Soluble CD146 boosts therapeutic effect of endothelial progenitors through proteolytic processing of short CD146 isoform. Endothelial colony-forming cells (ECFC) constitute an endothelial progenitor fraction with a promising interest for the treatment of ischaemic cardiovascular diseases. As soluble CD146 (sCD146) is a new factor promoting angiogenesis, we examined whether sCD146 priming could improve the therapeutic potential of ECFC and defined the involved mechanism. We investigated the effects of sCD146 priming on regenerative properties of ECFC in vivo. In a mouse model of hindlimb ischaemia, the homing of radiolabelled cells to ischaemic tissue was assessed by SPECT-CT imaging. Soluble CD146 priming did not modify the number of engrafted ECFC but improved their survival capacity, leading to an enhanced revascularization. The mechanism of action of sCD146 on ECFC was studied in vitro. We showed that sCD146 acts in ECFC through a signalosome, located in lipid rafts, containing angiomotin, the short isoform of CD146 (shCD146), VEGFR1, VEGFR2, and presenilin-1. Soluble CD146 induced a sequential proteolytic cleavage of shCD146, with an extracellular shedding followed by an intramembrane cleavage mediated by matrix metalloprotease (MMP)/ADAM and presenilin-1, respectively. The generated intracellular part of shCD146 was directed towards the nucleus where it associated with the transcription factor CSL and modulated the transcription of genes involved in cell survival (FADD, Bcl-xl) and angiogenesis (eNOS). This effect was dependent on both VEGFR1 and VEGFR2, which were rapidly phosphorylated by sCD146. These findings establish that activation of the proteolytic processing of shCD146, in particular by sCD146, constitutes a promising pathway to improve endothelial progenitors' regenerative properties for the treatment of cardiovascular diseases."	"Overexpression of SMPX in adult skeletal muscle does not change skeletal muscle fiber type or size. Mechanical factors such as stretch are thought to be important in the regulation of muscle phenotype. Small muscle protein X-linked (SMPX) is upregulated by stretch in skeletal muscle and has been suggested to serve both as a transcription factor and a mechanosensor, possibly giving rise to changes in both fiber size and fiber type. We have used in vivo confocal imaging to study the subcellular localization of SMPX in skeletal muscle fibers of adult rats using a SMPX-EGFP fusion protein. The fusion protein was localized predominantly in repetitive double stripes flanking the Z-disc, and was excluded from all nuclei. This localization would be consistent with SMPX being a mechanoreceptor, but not with SMPX playing a role as a transcription factor. In vivo overexpression of ectopic SMPX in skeletal muscle of adult mice gave no significant changes in fiber type distribution or cross sectional area, thus a role of SMPX in regulating muscle phenotype remains unclear. "	"X-linked hearing loss: two gene mutation examples provide generalizable implications for clinical care. To describe the inheritance patterns and auditory phenotype features of 3 Canadian families with mutations in 2 X-linked &quot;deafness&quot; genes (DFNX). Audiological, medical, and family histories were collected and family members interviewed to compare hearing thresholds and case histories between cases with mutations in SMPX versus POU3F4. The family pedigrees reveal characteristic X-linked inheritance patterns. Phenotypic features associated with the SMPX (DFNX4) mutation include early onset in males with rapid progression from mild and flat to sloping sensorineural loss, with highly variable onset and hearing loss severity in females. In contrast, phenotypic features associated with the POU3F4 (DFNX2) mutation are characterized by an early onset, mixed hearing loss with fluctuation in males, and a normal hearing phenotype reported for females. The study shows how this unique inheritance pattern and both gender and mutation-specific phenotype variations can alert audiologists to the presence of X-linked genetic etiologies in their clinical practice. By incorporating this knowledge into clinical decision making, audiologists can facilitate the early identification of X-linked hearing loss and contribute to the effective team management of affected families."	"Notch signaling maintains neural rosette polarity. Formation of the metazoan body plan requires a complex interplay of morphological changes and patterning, and central to these processes is the establishment of apical/basal cell polarity. In the developing nervous system, apical/basal cell polarity is essential for neural tube closure and maintenance of the neural stem cell population. In this report we explore how a signaling pathway important for nervous system development, Notch signaling, impacts on apical/basal cell polarity in neural differentiation. CSL(-/-) mouse embryos, which are devoid of canonical Notch signaling, demonstrated a neural tube phenotype consistent with cell polarity and convergent extension defects, including deficiencies in the restricted expression of apical polarity markers in the neuroepithelium. CSL(-/-) mouse embryonic stem (ES) cells, cultured at low density, behaved as wild-type in the establishment of neural progenitors and apical specification, though progression through rosette formation, an in vitro correlate of neurulation, required CSL for correct maintenance of rosette structure and regulation of neuronal differentiation. Similarly, acute pharmacological inhibition of Notch signaling led to the breakdown of neural rosettes and accelerated neuronal differentiation. In addition to functional Notch signaling, rosette integrity was found to require actin polymerization and Rho kinase (ROCK) activity. Disruption of rosettes through inhibition of actin polymerization or ROCK activity, however, had no effect on neuronal differentiation, indicating that rosette maintenance is not a prerequisite for normal neuronal differentiation. In conclusion, our data indicate that Notch signaling plays a role not only in differentiation, but also in organization and maintenance of polarity during development of the early nervous system."	"A novel deletion in SMPX causes a rare form of X-linked progressive hearing loss in two families due to a founder effect. X-linked hearing loss is the rarest form of genetic hearing loss contributing to &lt;1% of cases. We identified a multiplex family from Newfoundland (Family 2024) segregating X-linked hearing loss. Haplotyping of the X chromosome and sequencing of positional candidate genes revealed a novel point deletion (c.99delC) in SMPX which encodes a small muscle protein responsible for reducing mechanical stress during muscle contraction. This novel deletion causes a frameshift and a premature stop codon (p.Arg34GlufsX47). We successfully sequenced both SMPX wild-type and mutant alleles from cDNA of a lymphoblastoid cell line, suggesting that the mutant allele may not be degraded via nonsense-mediated mRNA decay. To investigate the role of SMPX in other subpopulations, we fully sequenced SMPX in 229 Canadian probands with hearing loss and identified a second Newfoundland Family (2196) with the same mutation, and a shared haplotype on the X chromosome, suggesting a common ancestor."	"Multifocal epithelial tumors and field cancerization from loss of mesenchymal CSL signaling. It is currently unclear whether tissue changes surrounding multifocal epithelial tumors are a cause or consequence of cancer. Here, we provide evidence that loss of mesenchymal Notch/CSL signaling causes tissue alterations, including stromal atrophy and inflammation, which precede and are potent triggers for epithelial tumors. Mice carrying a mesenchymal-specific deletion of CSL/RBP-Jκ, a key Notch effector, exhibit spontaneous multifocal keratinocyte tumors that develop after dermal atrophy and inflammation. CSL-deficient dermal fibroblasts promote increased tumor cell proliferation through upregulation of c-Jun and c-Fos expression and consequently higher levels of diffusible growth factors, inflammatory cytokines, and matrix-remodeling enzymes. In human skin samples, stromal fields adjacent to multifocal premalignant actinic keratosis lesions exhibit decreased Notch/CSL signaling and associated molecular changes. Importantly, these changes in gene expression are also induced by UVA, a known environmental cause of cutaneous field cancerization and skin cancer."	"Variable degrees of hearing impairment in a Dutch DFNX4 (DFN6) family. Investigation of the audiometric characteristics of a large Dutch DFNX4 family with a p.Glu72X mutation in the SMPX gene. Sixty family members participated in this study and examination consisted of medical history, otoscopy, pure tone and speech audiometry. Linkage and mutation analysis revealed a pathogenic mutation in the SMPX gene. All 25 mutation carriers exhibited hearing impairment, except one woman aged 25 years. The men (n = 10) showed more severe hearing impairment than the women (n = 14) and already at a younger age. The age of onset according to history was 2-10 years (mean: 3.3 years) in men and 3-48 years (mean: 26.4 years) in women. In the men, severe threshold deterioration mainly occurred during the first two decades of life, especially at the higher frequencies. The women showed milder threshold deterioration and more pronounced across-subjects and individual inter-aural variation, especially at 2-8 kHz. Longitudinal linear regression analysis demonstrated significant progression of at least two frequencies in five individuals (3 men and 2 women). The speech recognition scores of the mutation carriers with hearing impairment were decreased at relatively young ages compared to a reference group of patients with only presbycusis, especially in men. However, all these patients tended to have better speech recognition scores than the presbycusis patients at matching PTA(1,2,4 kHz) levels. This study demonstrates the phenotypic heterogeneity in this large family with an X-linked pattern of inherited sensorineural hearing impairment. The men showed more severe hearing impairment at a younger age with more pronounced progression during the first two decades of life, while women demonstrated less severe hearing impairment with more gradual progression and a wider variation in age of onset, degree of hearing impairment and inter-aural asymmetry in thresholds."	"Real-time imaging of notch activation with a luciferase complementation-based reporter. Notch signaling regulates many cellular processes during development and adult tissue renewal. Upon ligand binding, Notch receptors undergo ectodomain shedding followed by γ-secretase-mediated release of the Notch intracellular domain (NICD), which translocates to the nucleus and associates with the DNA binding protein CSL [CBF1/RBPjκ/Su(H)/Lag1] to activate gene expression. Mammalian cells contain four Notch receptors that can have both redundant and specific activities. To monitor activation of specific Notch paralogs in live cells and in real time, we developed luciferase complementation imaging (LCI) reporters for NICD-CSL association and validated them as a specific, robust, and sensitive assay system that enables structure-function and pharmacodynamic analyses. Detailed kinetic analyses of various mechanistic aspects of Notch signaling, including nuclear translocation and inhibition of the activities of γ-secretase and ADAM metalloproteases, as well as agonist- and ligand-dependent activation, were conducted in live cells. These experiments showed that Notch-LCI is an effective approach for characterizing modulators that target Notch signaling and for studying pathway dynamics in normal and disease contexts."	"Next-generation sequencing identifies mutations of SMPX, which encodes the small muscle protein, X-linked, as a cause of progressive hearing impairment. In a Dutch family with an X-linked postlingual progressive hearing impairment, a critical linkage interval was determined to span a region of 12.9 Mb flanked by the markers DXS7108 and DXS7110. This interval overlaps with the previously described DFNX4 locus and contains 75 annotated genes. Subsequent next-generation sequencing (NGS) detected one variant within the linkage interval, a nonsense mutation in SMPX. SMPX encodes the small muscle protein, X-linked (SMPX). Further screening was performed on 26 index patients from small families for which X-linked inheritance of nonsyndromic hearing impairment (NSHI) was not excluded. We detected a frameshift mutation in SMPX in one of the patients. Segregation analysis of both mutations in the families in whom they were found revealed that the mutations cosegregated with hearing impairment. Although we show that SMPX is expressed in many different organs, including the human inner ear, no obvious symptoms other than hearing impairment were observed in the patients. SMPX had previously been demonstrated to be specifically expressed in striated muscle and, therefore, seemed an unlikely candidate gene for hearing impairment. We hypothesize that SMPX functions in inner ear development and/or maintenance in the IGF-1 pathway, the integrin pathway through Rac1, or both."	"Nonsense mutations in SMPX, encoding a protein responsive to physical force, result in X-chromosomal hearing loss. The fact that hereditary hearing loss is the most common sensory disorder in humans is reflected by, among other things, an extraordinary allelic and nonallelic genetic heterogeneity. X-chromosomal hearing impairment represents only a minor fraction of all cases. In a study of a Spanish family the locus for one of the X-chromosomal forms was assigned to Xp22 (DFNX4). We mapped the disease locus in the same chromosomal region in a large German pedigree with X-chromosomal nonsyndromic hearing impairment by using genome-wide linkage analysis. Males presented with postlingual hearing loss and onset at ages 3-7, whereas onset in female carriers was in the second to third decades. Targeted DNA capture with high-throughput sequencing detected a nonsense mutation in the small muscle protein, X-linked (SMPX) of affected individuals. We identified another nonsense mutation in SMPX in patients from the Spanish family who were previously analyzed to map DFNX4. SMPX encodes an 88 amino acid, cytoskeleton-associated protein that is responsive to mechanical stress. The presence of Smpx in hair cells and supporting cells of the murine cochlea indicates its role in the inner ear. The nonsense mutations detected in the two families suggest a loss-of-function mechanism underlying this form of hearing impairment. Results obtained after heterologous overexpression of SMPX proteins were compatible with this assumption. Because responsivity to physical force is a characteristic feature of the protein, we propose that long-term maintenance of mechanically stressed inner-ear cells critically depends on SMPX function."	"Identification of genes concordantly expressed with Atoh1 during inner ear development. The inner ear is composed of a cochlear duct and five vestibular organs in which mechanosensory hair cells play critical roles in receiving and relaying sound and balance signals to the brain. To identify novel genes associated with hair cell differentiation or function, we analyzed an archived gene expression dataset from embryonic mouse inner ear tissues. Since atonal homolog 1a (Atoh1) is a well known factor required for hair cell differentiation, we searched for genes expressed in a similar pattern with Atoh1 during inner ear development. The list from our analysis includes many genes previously reported to be involved in hair cell differentiation such as Myo6, Tecta, Myo7a, Cdh23, Atp6v1b1, and Gfi1. In addition, we identified many other genes that have not been associated with hair cell differentiation, including Tekt2, Spag6, Smpx, Lmod1, Myh7b, Kif9, Ttyh1, Scn11a and Cnga2. We examined expression patterns of some of the newly identified genes using real-time polymerase chain reaction and in situ hybridization. For example, Smpx and Tekt2, which are regulators for cytoskeletal dynamics, were shown specifically expressed in the hair cells, suggesting a possible role in hair cell differentiation or function. Here, by reanalyzing archived genetic profiling data, we identified a list of novel genes possibly involved in hair cell differentiation."	"Reciprocal regulation of Notch and nuclear factor of activated T-cells (NFAT) c1 transactivation in osteoblasts. Notch are transmembrane receptors involved in the determination of cell fate. Nuclear factor of activated T-cells (NFAT)c are transcription factors that control cell differentiation and function. We tested whether Notch and NFAT signaling pathways interacted in osteoblastic cells. Notch signaling was induced in ST-2 cells using vectors expressing Notch1 intracellular domain (NICD), and in Rosa(Notch) osteoblastic cells by Cre recombinase-mediated excision of a loxP-flanked STOP cassette cloned between the Rosa26 promoter and NICD. NFATc1 was induced in Rosa(Notch) osteoblastic cells by transducing an adenoviral vector expressing constitutively active NFATc1. Notch inhibited NFAT transactivation and NFATc1 transcription. In ST-2 cells, suppression of NFAT transactivation by Notch was reversed by constitutively active cGMP-dependent protein kinase type II. NFATc1 inhibited the transactivation of Notch target genes, and competed for binding to DNA with the Notch interacting protein Epstein-Barr virus latency C promoter binding factor-1, suppressor of hairless, Lag-1 (CSL). Co-immunoprecipitation and confocal microscopy demonstrated that NFATc1 and CSL interacted. Studies on the effects of NICD and NFATc1 on the differentiation and function of osteoblastic cells demonstrated that NICD and NFATc1 inhibited expression of osteoblast gene markers in Rosa(Notch) osteoblasts, but only NICD suppressed the commitment of bone marrow stromal cells to the osteoblastic lineage. In conclusion, NICD and NFATc1 reciprocally inhibit their signaling pathways, and form a regulatory network to control their activity in osteoblasts."	"Postejaculatory increase of prostatic triiodothyronine (T3) depends on sympathetic innervation in the rat. Thyronines are essential for the development of the male reproductive system, including the prostate gland. Metabolically active 3,5,3' triiodothyronine (T(3)) is generated mainly by the extrathyroidal, enzymatic 5'deiodination of the prohormone thyroxine (T(4)), which is catalyzed by deiodinases type 1 (D1) and type 2 (D2). Prostate D1 activity is highly expressed during puberty and declines with age, but continuous, long-term sexual activity prevents this reduction. The aims of this study were to characterize the changes in prostatic D1 activity in response to consecutive ejaculations and to determine whether sympathetic input participates in the local T(3) generation (D1 activity). D1 activity was analyzed in prostates of sexually experienced, 4-mo-old male rats after one to five ejaculations. D1 activity, T(3) concentrations, and the T(3)-dependent gene ornithine decarboxylase (Odc) were measured after the fourth ejaculation in prostates of intact, sham, and sympathectomized (Smpx, hypogastric nerve) rats. D1 activity was evaluated by the radio-iodine-release method; T(3) was measured by radioimmunoassay and Odc expression by real-time PCR. Data showed a gradual increase of prostate D1 activity in response to consecutive ejaculations. The highest activity was found after the fourth ejaculation, and it decreased after the fifth. The increase of prostate D1 activity after ejaculation was blocked in Smpx males as compared to intact or sham animals. The changes in D1 activity correlate with prostatic T(3) concentrations and Odc expression. Circulating levels of T(3) were not affected by consecutive ejaculations or by Smpx. These findings indicate that the postejaculatory increase in prostatic generation of T(3) depends on sympathetic input."	"Notch1 and TGFbeta1 cooperatively regulate Foxp3 expression and the maintenance of peripheral regulatory T cells. Notch and its ligands have been implicated in the regulation and differentiation of various CD4(+) T-helper cells. Regulatory T cells (T(regs)), which express the transcription factor Foxp3, suppress aberrant immune responses that are typically associated with autoimmunity or excessive inflammation. Previous studies have shown that transforming growth factor beta (TGFbeta1) induces Foxp3 expression and a regulatory phenotype in peripheral T cells. Here, we show that pharmacologic inhibition of Notch signaling using gamma-secretase inhibitor (GSI) treatment blocks (1) TGFbeta1-induced Foxp3 expression, (2) the up-regulation of Foxp3-target genes, and (3) the ability to suppress naive T-cell proliferation. In addition, the binding of Notch1, CSL, and Smad to conserved binding sites in the foxp3 promoter can be inhibited by treatment with GSI. Finally, in vivo administration of GSI results in reduced Foxp3 expression and development of symptoms consistent with autoimmune hepatitis, a disease previously found to result from dysregulation of TGFbeta signaling and regulatory T cells. Together, these findings indicate that the Notch and TGFbeta signaling pathways cooperatively regulate Foxp3 expression and regulatory T-cell maintenance both in vitro and in vivo."	"Canonical notch signaling is dispensable for the maintenance of adult hematopoietic stem cells. Gain-of-function experiments have demonstrated the potential of Notch signals to expand primitive hematopoietic progenitors, but whether Notch physiologically regulates hematopoietic stem cell (HSC) homeostasis in vivo is unclear. To answer this question, we evaluated the effect of global deficiencies of canonical Notch signaling in rigorous HSC assays. Hematopoietic progenitors expressing dominant-negative Mastermind-like1 (DNMAML), a potent inhibitor of Notch-mediated transcriptional activation, achieved stable long-term reconstitution of irradiated hosts and showed a normal frequency of progenitor fractions enriched for long-term HSCs. Similar results were observed with cells lacking CSL/RBPJ, a DNA-binding factor that is required for canonical Notch signaling. Notch-deprived progenitors provided normal long-term reconstitution after secondary competitive transplantation. Furthermore, Notch target genes were expressed at low levels in primitive hematopoietic progenitors. Taken together, these results rule out an essential physiological role for cell-autonomous canonical Notch signals in HSC maintenance."	"A Foxo/Notch pathway controls myogenic differentiation and fiber type specification. Forkhead box O (Foxo) transcription factors govern metabolism and cellular differentiation. Unlike Foxo-dependent metabolic pathways and target genes, the mechanisms by which these proteins regulate differentiation have not been explored. Activation of Notch signaling mimics the effects of Foxo gain of function on cellular differentiation. Using muscle differentiation as a model system, we show that Foxo physically and functionally interacts with Notch by promoting corepressor clearance from the Notch effector Csl, leading to activation of Notch target genes. Inhibition of myoblast differentiation by constitutively active Foxo1 is partly rescued by inhibition of Notch signaling while Foxo1 loss of function precludes Notch inhibition of myogenesis and increases myogenic determination gene (MyoD) expression. Accordingly, conditional Foxo1 ablation in skeletal muscle results in increased formation of MyoD-containing (fast-twitch) muscle fibers and altered fiber type distribution at the expense of myogenin-containing (slow-twitch) fibers. Notch/Foxo1 cooperation may integrate environmental cues through Notch with metabolic cues through Foxo1 to regulate progenitor cell maintenance and differentiation."	"Mammalian NOTCH-1 activates beta1 integrins via the small GTPase R-Ras. Notch is a central regulator of important cell fate decisions. Notch activation produces diverse cellular effects suggesting the presence of context-dependent control mechanisms. Genetic studies have demonstrated that Notch and integrin mutations have related phenotypes in key developmental processes such as vascular development and somitogenesis. We show that the intracellular domain of mammalian Notch-1 activates integrins without affecting integrin expression. Integrin activation is dependent on gamma-secretase-mediated intramembranous cleavage of membrane-bound Notch releasing intracellular Notch that activates R-Ras, independent of CSL-transcription. Notch also reverses H-Ras and Raf-mediated integrin suppression without affecting ERK phosphorylation. Membrane-bound Notch mutants that are inefficiently cleaved or intracellular Notch mutants lacking the ankyrin repeat sequence do not activate R-Ras or integrins. Co-expression of Msx2-interacting nuclear target (MINT) protein with Notch or expression of intracellular Notch-1 truncation mutants lacking the C-terminal transactivation/PEST domain suppresses Notch transcriptional activity without affecting integrin activation. Notch ligand, Delta-like ligand-4, stimulates R-Ras-dependent alpha 5 beta 1 integrin-mediated adhesion, demonstrating the physiological relevance of this pathway. This new CSL-independent Notch/R-Ras pathway provides a molecular mechanism to explain Notch, integrin, and Ras cross-talk during the development of multicellular organisms."	"Cloning and identification of porcine SMPX differentially expressed in F1 crossbreds and their parents. In order to investigate porcine heterosis on the molecular basis, Large White (L), a European purebred, and Meishan (M), a Chinese indigenous purebred, were hybridized directly and reciprocally to produce F1 hybrids, Large WhitexMeishan (LM) and MeishanxLarge White (ML) pigs. Using mRNA differential display, we found an expression sequence tag (EST) differentially expressed in F1 hybrids and their parents, designated as EST55, which was homologous to human and murine skeletal muscle protein (SMPX), and the full-length cDNA of porcine SMPX was cloned by the rapid amplification of cDNA end (RACE) method. Translation of the mRNA transcript revealed an open reading frame (ORF) of 86 amino acid residues encoding a nuclear location signal peptide, two overlapping casein kinase II phosphorylation sites and one N-glycosylation site with theoretical molecular weight of 9.3 kDa. Alignment analysis revealed that the deduced protein sequence shared 94%, 83% and 78% homology with that of its human, mouse and rat counterparts, respectively. Reverse transcription-polymerase chain reaction (RT-PCR) analysis showed that it was expressed predominantly in skeletal and heart muscles, whereas at a moderate level in backfat, spleen, stomach and uterus tissues. Two single nucleotide polymorphism (SNPs), located in 5'- and 3'-untranslated region (UTR), respectively,were identified by PCR and sequencing. Phylogenetic tree and the secondary structure prediction were also performed. The possible relationship between porcine SMPX and heterosis was discussed."	"CSL: a notch above the rest. CSL (CBF1, Suppressor of Hairless, Lag-1) is a transcription factor that is responsible for activating the genes downstream of the Notch signalling pathway, a pathway that is essential for the development of the nervous system and the differentiation of the haematopoietic system among others. In the absence of Notch signalling, CSL represses transcription of Notch target genes, and following activation by Notch, CSL is converted into a transcriptional activator and activates transcription of the same genes. These two opposing functions of CSL are mediated through interactions with distinct protein complexes. The Notch signalling pathway and its crucial cofactor CSL can maintain cells in an undifferentiated state, and have therefore been associated with a growing list of cancers. In addition, CSL has been co-opted by Epstein-Barr virus to mediate viral and host gene transcription following infection."	"Muscle costameric protein, Chisel/Smpx, associates with focal adhesion complexes and modulates cell spreading in vitro via a Rac1/p38 pathway. The murine X-linked gene Chisel (Csl/Smpx) encodes a 9-kDa protein that associates in heart and skeletal muscle cells with the costameric cytoskeleton, implicated in maintaining muscle integrity and responses to biomechanical stress. After expression in C2C12 myoblasts, MYC epitope-tagged Csl co-localized with actin networks at peripheral membranes, and with focal adhesion proteins vinculin, paxillin, integrin beta1, and the small GTPase Rac1. Csl could be co-immunoprecipitated with vinculin from extracts of C2C12 cells and native muscle. MYC-Csl induced cell spreading and lamellipodia formation in C2C12 cells at the expense of filopodia, suggestive of modulation of Rac1 activity. Lamellipodia formation was indeed Rac1-dependent, and in MYC-Csl cells replated on fibronectin, Rac1 activity was increased relative to controls. Expression of MYC-Csl led to an increased association between vinculin and p34, a subunit of the Arp2/3 actin nucleation complex, a Rac1-dependent event. Induced cell spreading was also dependent upon p38 kinases that act downstream of Rac1 to control the actin capping activity of heat shock protein 27. Our data suggest that Csl localizes to the costameric cytoskeleton of muscle cells through an association with focal adhesion proteins, where it may participate in regulation of cytoskeletal dynamics through the Rac1-p38 pathway."	"T-box transcription factor Tbx2 represses differentiation and formation of the cardiac chambers. Specific regions of the embryonic heart tube differentiate into atrial and ventricular chamber myocardium, whereas the inflow tract, atrioventricular canal, inner curvatures, and outflow tract do not. These regions express Tbx2, a transcriptional repressor. Here, we tested its role in chamber formation. The temporal and spatial pattern of Tbx2 mRNA and protein expression in mouse hearts was found to be complementary to that of chamber myocardium-specific genes Nppa, Cx40, Cx43, and Chisel, and was conserved in human. In vitro, Tbx2 repressed the activity of regulatory fragments of Cx40, Cx43, and Nppa. Hearts of transgenic embryos that expressed Tbx2 in the prechamber myocardium completely failed to form chambers and to express the chamber myocardium-specific genes Nppa, Cx40, and Chisel, whereas other cardiac genes were normally expressed. These findings provide the first evidence that Tbx2 is a determinant in the local repression of chamber-specific gene expression and chamber differentiation."	"Direct induction of T lymphocyte-specific gene expression by the mammalian Notch signaling pathway. The Notch signaling pathway regulates the commitment and early development of T lymphocytes. We studied Notch-mediated induction of the pre-T cell receptor alpha (pTa) gene, a T-cell-specific transcriptional target of Notch. The pTa enhancer was activated by Notch signaling and contained binding sites for its nuclear effector, CSL. Mutation of the CSL-binding sites abolished enhancer induction by Notch and delayed the up-regulation of pTa transgene expression during T cell lineage commitment. These results show a direct mechanism of stage- and tissue-specific gene induction by the mammalian Notch/CSL signaling pathway."	"Identification of a novel stretch-responsive skeletal muscle gene (Smpx). Skeletal muscle is able to respond to a range of stimuli, including stretch and increased load, by increasing in diameter and length in the absence of myofiber division. This type of cellular growth (hypertrophy) is a highly complex process involving division of muscle precursor cells (myoblasts) and their fusion to existing muscle fibers as well as increased protein synthesis and decreased protein degradation. Underlying the alterations in protein levels are increases in a range of specific mRNAs including those coding for structural proteins and proteins that regulate the hypertrophic process. Seven days of passive stretch in vivo of tibialis anterior (TA) muscle has been shown to elicit muscle hypertrophy. We have identified a cDNA corresponding to an mRNA that exhibits increased expression in response to 7 days of passive stretch imposed on TA muscles in vivo. This 944-bp novel murine transcript is expressed primarily in cardiac and skeletal muscle and to a lesser extent in brain. Translation of the transcript revealed an open reading frame of 85 amino acids encoding a nuclear localization signal and two overlapping casein kinase II phosphorylation sites. This gene has been called &quot;small muscle protein (X chromosome)&quot; (Smpx; HGMW-approved human gene symbol SMPX) and we hypothesize that it plays a role in skeletal muscle hypertrophy."	"The small muscle-specific protein Csl modifies cell shape and promotes myocyte fusion in an insulin-like growth factor 1-dependent manner. We have isolated a murine cDNA encoding a 9-kD protein, Chisel (Csl), in a screen for transcriptional targets of the cardiac homeodomain factor Nkx2-5. Csl transcripts were detected in atria and ventricles of the heart and in all skeletal muscles and smooth muscles of the stomach and pulmonary veins. Csl protein was distributed throughout the cytoplasm in fetal muscles, although costameric and M-line localization to the muscle cytoskeleton became obvious after further maturation. Targeted disruption of Csl showed no overt muscle phenotype. However, ectopic expression in C2C12 myoblasts induced formation of lamellipodia in which Csl protein became tethered to membrane ruffles. Migration of these cells was retarded in a monolayer wound repair assay. Csl-expressing myoblasts differentiated and fused normally, although in the presence of insulin-like growth factor (IGF)-1 they showed dramatically enhanced fusion, leading to formation of large dysmorphogenic &quot;myosacs.&quot; The activities of transcription factors nuclear factor of activated T cells (NFAT) and myocyte enhancer-binding factor (MEF)2, were also enhanced in an IGF-1 signaling-dependent manner. The dynamic cytoskeletal localization of Csl and its dominant effects on cell shape and behavior and transcription factor activity suggest that Csl plays a role in the regulatory network through which muscle cells coordinate their structural and functional states during growth, adaptation, and repair."	"Identification, mapping, and genomic structure of a novel X-chromosomal human gene (SMPX) encoding a small muscular protein. Reciprocal probing has been used to identify a cDNA clone (xh8H11) representing a gene preferentially expressed in striated muscle. The gene maps close to DXS7101 31.9 cM from the short arm telomere of the X-chromosome at Xp22.1. On searching expressed and genomic databases, 21 expressed sequence tags were found that allowed the assignment of a human extended consensus sequence of 887 bp, suggesting a completely expressed gene symbolized as SMPX. By using the human consensus sequence, the orthologous mouse Smpx and rat SMPX genes could be aligned and confirmed by complete sequencing of additional SMPX-related clones obtained by library screening. An open reading frame was identified encoding a peptide of 88-86 and 85 amino acids in human and rodents, respectively. The predicted peptide had no significant homologies to known structural elements. The human consensus cDNA sequence was used to define the genomic structure of the human SMPX that had been missed by a previous large scale sequencing approach. The gene consists of five exons (&gt; or =172, 57, 84, 148, &gt; or =422 bp) and four introns (3639, 10410, 6052, 31134 bp) comprising together 52.1 kb and is preferentially and abundantly expressed in heart and skeletal muscle. Thus, a novel human gene encoding a small muscular protein that maps to Xp22.1 (SMPX) has been identified and structurally characterized as a basis for further functional analysis."	"A Synechococcus gene encoding a putative pore-forming intrinsic membrane protein. A cyanobacterium, Synechococcus species PCC7942, has a gene encoding a copper-transporting P-type ATPase, which is located in the thylakoid membrane. At the 5'-upstream of this ATPase gene, we identified another gene, which was supposed to be implicated in a copper-transport process. This novel gene was found to encode a putative pore-forming membrane protein that belongs to a growing family of homologous intrinsic membrane proteins (the MIP family of proteins), which include the major intrinsic protein (MIP) from animal lens fibre junction membranes, the tonoplast intrinsic protein (TIP) from vacuolar membranes of higher plants, and the Escherichia coli glycerol facilitator (GlpF) in the cytoplasmic membrane. The deduced product, named SmpX (Synechococcus membrane protein), is highly homologous throughout its entire sequence to these intrinsic membrane proteins which were postulated to be pore-forming proteins involved in a variety of transport processes. The primary amino acid sequence of SmpX shares all properties characteristic for members of the MIP family. SmpX is more similar to the eukaryotic members (e.g., nodulin-26 from soybean) than to the prokaryotic ones."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"KRAS"	"Noonan syndrome"	"Molecular profiling of non-small cell lung cancer. Lung cancer is generally treated with conventional therapies, including chemotherapy and radiation. These methods, however, are not specific to cancer cells and instead attack every cell present, including normal cells. Personalized therapies provide more efficient treatment options as they target the individual's genetic makeup. The goal of this study was to identify the frequency of causal genetic mutations across a variety of lung cancer subtypes in the earlier stages. 833 samples of non-small cell lung cancer from 799 patients who received resection of their lung cancer, were selected for molecular analysis of six known mutations, including EGFR, KRAS, BRAF, PIK3CA, HER2 and ALK. A SNaPshot assay was used for point mutations and fragment analysis searched for insertions and deletions. ALK was evaluated by IHC +/- FISH. Statistical analysis was performed to determine correlations between molecular and clinical/pathological patient data. None of the tested variants were identified in most (66.15%) of cases. The observed frequencies among the total samples vs. only the adenocarcinoma cases were notable different, with the highest frequency being the KRAS mutation (24.49% vs. 35.55%), followed by EGFR (6.96% vs. 10.23%), PIK3CA (1.20% vs. 0.9%), BRAF (1.08% vs. 1.62%), ALK (0.12% vs. 0.18%), while the lowest was the HER2 mutation (0% for both). The statistical analysis yielded correlations between presence of a mutation with gender, cancer type, vascular invasion and smoking history. The outcome of this study will provide data that helps stratify patient prognosis and supports development of more precise treatments, resulting in improved outcomes for future lung cancer patients."	"Clinicopathologic and Longitudinal Imaging Features of Lung Cancer Associated with Cystic Airspaces: A Systematic Review and Meta-Analysis. Lung cancer associated with cystic airspaces (LC-CAS) is an uncommon morphology that is under recognized on imaging. There is also limited understanding of its underlying pathology and risk factors. These can contribute to delays in diagnosis. In accordance with Preferred Reporting Items for Systematic Reviews and Meta-analyses (PRISMA) guidelines, we searched for and included published research reporting the clinical, pathological and imaging features of LCCAS. Pooled analysis of continuous and categorical data with respect to patient clinical characteristics, tumor pathology and underlying driver mutation, and CT imaging features and temporal evolution of these features was performed. The analysis included 8 original observational studies with 341 combined patients with LC-CAS (weighted mean age: 61.8 years, range: 30-87 years; 135 women and 206 men). Most patients were current or previous smokers (127/192, 66.1%). The most common histology was adenocarcinoma (289/328, 88.1%), followed by squamous cell carcinoma (30/328, 9.1%). The most common driver mutations were EGFR (46/122, 37.7%) and KRAS (21/122, 17.2%). The cysts in LC-CAS commonly had non-uniform (104/114; 91.2%) and thick (83/222; 37.4%) walls, had irregular margins (53/142; 37.3%), and were unilocular (173/272; 63.6%). Most LC-CAS had a nodular component (210/328; 64.0%). Over time, most LC-CAS had development or enlargement of the nodular component (61/89, 68.5%), approximately half (43/89, 48.3%) had interval wall thickening, and a minority evolved into completely solid lesions (11/89, 12.4%). The cystic component was observed to increase (36/89, 40.4%), decrease (28/89, 31.5), or remain stable (24/89, 27.0%) in size. Lung cancer associated with cystic spaces is most commonly adenocarcinoma and can be seen in both smokers and non-smokers. The cysts associated with lung cancer demonstrate wall thickening and mural nodularity, which may evolve over time. LC-CAS can be indolent, and long-term surveillance with imaging should be considered if not resected. Clinical impact: Familiarity with the imaging features and temporal evolution of LC-CAS can minimize delays in diagnosis of lung cancer. Future management guidelines should include protocols for follow up and management of cystic lung lesions identified during diagnostic and lung cancer screening CT."	"Genetic alterations in colorectal cancer: implications for the prognosis and treatment of the disease. In recent years, important advances have been achieved in the understanding of the genetic abnormalities present in colorectal tumors and their association with their ontogeny and progression. Accordingly, while the presence of mutations in the APC and/or KRAS genes is associated with neoplastic transformation, mutations in SMAD and DCC, different chromosomal abnormalities located at 7, 17p and 18q, and complex karyotypes are frequently linked with tumor progression. From a clinical point of view, the presence of microsatellite instability (MSI) is associated with lower relapse rates and a greater overall survival, as well as resistance to adjuvant treatment with fluoropyrimidines, whereas mutations in the BRAF gene have been associated with early relapse. At the molecular level, studies of intratumoral genetic heterogeneity associated with the metastatic process of colorectal cancer (CRC) have focused on analyzing mutations in the genes involved in the treatment of the disease. In fact, different mutational profiles have been observed among primary tumors, lymph node metastases and liver metastases in the same patient. In this sense, the genetic heterogeneity of CRC at the intratumor level may explain the high relapse rates reported and the refractory nature of tumors treated with monoclonal antibodies."	"Association of histologic subtypes with genetic alteration and PD-L1 expression in pulmonary adenocarcinoma. Genetic alteration and programmed death-ligand 1 (PD-L1) expression have been revealed to be associated with various subtypes of pulmonary adenocarcinoma (ADC). The present study aimed to explore the association between histological subtypes and genetic alterations and PD-L1 expression. A total of 375 cases of pulmonary ADC were included. Genetic alterations were determined using next generation sequencing (NGS) in 136 cases. PD-L1 expression was detected by immunohistochemistry (based on clone 22C3) in the remaining 239 cases. Mutations in the epidermal growth factor receptor gene (EGFR) were detected in 76 (55.8%) cases associated with the papillary subtype (P=0.038). Mutations in the Kirsten rat sarcoma viral oncogene homolog gene (KRAS) were present in 46 (33.8%) cases associated with the lepidic subtype (P&lt;0.001) and mucinous ADC (P=0.037). PD-L1 expression was identified in 63 (26.4%) cases associated with the solid subtype (P&lt;0.001). In conclusion, the present study demonstrated that EGFR and KRAS mutations, alongside PD-L1 protein expression are significantly associated with specific subtypes of pulmonary ADC. These results should aid our ability to accurately select appropriate areas of the heterogeneous tumor for molecular testing methods and to predict patient outcomes and prognosis."	"Exosomal lncRNA PCAT-1 promotes Kras-associated chemoresistance via immunosuppressive miR-182/miR-217 signaling and p27/CDK6 regulation. Immunosuppressive chemoresistance is a major burden in lung cancer. Recent data reveal that long noncoding RNAs (lncRNAs) present in the lung tumor microenvironment are implicated in chemoresistant-related immune deregulation, and metastasis but their exact pathogenic role is still unknown. In this study, we investigate the role of lncRNA PCAT-1 in chemoresistant immunosuppression and its involvement in tumor stroma remodeling. Findings reveal PCAT-1 to regulate Kras-related lung chemoresistance through increased expression of the immunosuppressive micrornas miR-182/miR217 in lung tissues, thus promoting a pre-metastatic niche formation and a subsequent increase in lung metastatic burden. Elevated expression of PCAT-1 negative regulates p27/CDK6 expression by inducing G0/G1 cell cycle arrest through AMPK augmentation, contributing to a tumor-promoting status. Furthermore, PCAT-1 triggered fibroblast differentiation followed by CAF/myofibroblast secretion in TME triggering a CD133/SOX2-related stem cell phenotype. Subsequent PCAT-1 knockdown impaired CAF-mediated stromal activation, and reversed chemoresistance and tumor growth in vivo. Overall, these findings demonstrate the versatile roles of PCAT-1 in sustaining lung immunosuppressive neoplasia through tumor microenvironment remodeling and provide new opportunities for effective metastasis inhibition, especially in chemoresistant tumors."	"Genomic markers of midostaurin drug sensitivity in FLT3 mutated and FLT3 wild-type acute myeloid leukemia patients. Acute myeloid leukemia (AML) is a heterogeneous malignancy with the most common genomic alterations in NPM1, DNMT3A, and FLT3. Midostaurin was the first FLT3 inhibitor FDA approved for AML and is standard of care for FLT3 mutant patients undergoing induction chemotherapy [1, 2]. As there is a spectrum of response, we hypothesized that biological factors beyond FLT3 could play a role in drug sensitivity and that select FLT3-ITD negative samples may also demonstrate sensitivity. Thus, we aimed to identify features that would predict response to midostaurin in FLT3 mutant and wild-type samples. We performed an ex vivo drug sensitivity screen on primary and relapsed AML samples with corresponding targeted sequencing and RNA sequencing. We observed a correlation between FLT3-ITD mutations and midostaurin sensitivity as expected and observed KRAS and TP53 mutations correlating with midostaurin resistance in FLT3-ITD negative samples. Further, we identified genes differentially expressed in sensitive vs. resistant samples independent of FLT3-ITD status. Within FLT3-ITD mutant samples, over-expression of RGL4, oncogene and regulator of the Ras-Raf-MEK-ERK cascade, distinguished resistant from sensitive samples. Overall, this study highlights the complexity underlying midostaurin response. And, our results suggest that therapies that target both FLT3 and MAPK/ERK signaling may help circumvent some cases of resistance."	"Effectiveness of bevacizumab in first- and second-line treatment for metastatic colorectal cancer: ITACa randomized trial. Cancer trials involving multiple treatment lines substantially increase our understanding of therapeutic strategies. However, even when the primary end-point of these studies is progression-free survival (PFS), their statistical analysis usually focuses on each line separately, or does not consider repeated events, thus missing potentially relevant information. Consequently, the evaluation of the effectiveness of treatment strategies is highly impaired. We evaluated the potentially different effect of bevacizumab (B) administered for the first- or second-line treatment of metastatic colorectal cancer (mCRC) in the ITACa (Italian Trial in Advanced Colorectal Cancer) randomized trial. The ITACa trial consisted of two arms: first-line chemotherapy (CT)+B followed by second-line CT alone versus first-line CT alone followed by second-line CT+B or CT+B+cetuximab according to KRAS status. Cox models for repeated disease progression were performed, and potential selection bias was adjusted using the inverse probability of censoring weighting method. Hazard ratios (HR) [95% confidence interval (CI)] for PFS (primary endpoint) were reported. The overall effect of B across the two lines resulted in a HR = 0.80 (95% CI 0.68-0.95, p = 0.008). Evaluating the differential effect of B in first- and second-line, the addition of B to first-line chemotherapy (CT) produced a 10% risk reduction (HR = 0.90, 95% CI 0.72-1.12, p = 0.340) versus CT alone; B added to second-line CT produced a 36% risk reduction (HR = 0.64, 95% CI 0.49-0.84, p = 0.0011) versus CT alone. Our results seem to suggest that B confers a PFS advantage when administered in combination with second-line chemotherapy, which could help to improve current international guidelines on optimal sequential treatment strategies."	"Coexistence of Low-Grade Fetal Adenocarcinoma and Adenocarcinoma in situ of the Lung Harboring Different Genetic Mutations: A Case Report and Review of Literature. Low-grade fetal lung adenocarcinoma (L-FLAC) is an exceptionally rare pulmonary tumor, presenting with unclear histological and molecular features. In particular, the potential driver genes of L-FLAC remain elusive. To date, only five reports have documented genetic aberrations in L-FLAC. In the current study, we describe an unusual case of L-FLAC coexisting with adenocarcinoma in situ (AIS) of the lung, harboring different genetic mutations. A 39-year-old non-smoker female patient was referred to our hospital with the chief complaint of dyspnea for 20 days. Chest computed tomography (CT) revealed a 2.5×1.5×1.5 cm nodule in the right middle lobe, with no mediastinal lymph node enlargement or distant metastases. Thoracoscopic surgery was performed to remove the nodules. Histopathological analysis of the tissue sections, based on findings from immunohistochemical staining, confirmed a diagnosis of L-FLAC coexisting with AIS of the lung. Next-generation sequencing revealed L-FLAC-based mutations in DICER1 and CTNNB1, and AIS harboring KRAS mutations. Currently, the patient remains recurrence-free 17 months after the initial diagnosis. This report presents the first case demonstrating the coexistence of L-FLAC and AIS in the same pulmonary nodule, harboring different genetic mutations. Based on the literature review, this is the second reported case of L-FLAC bearing DICER1 mutations."	"Sequential Whole Exome Sequencing Reveals Somatic Mutations Associated with Platinum Response in NSCLC. Resistance is one of the main limitations of successful platinum treatment in non-small-cell lung cancer (NSCLC) patients. In this study, we aimed to identify somatic mutations associated with platinum response. A total of 57 patients who received platinum-based chemotherapy only and 13 patients who received neoadjuvant chemotherapy (NAC) were enrolled. Somatic mutations were obtained from targeted and whole exome sequencing (WES). Somatic mutations in a total of 225 genes were observed. Nonsynonymous variants in EGFR, TTN, TP53 and KRAS, and copy number variations (SCNVs) in chromosome 8q24.3 and 22q11.21 were identified to be associated with platinum response. Based on these mutations, the mutational signature associated with the failure of DNA double-strand break and calcium signaling pathways were identified to be associated with platinum response. Besides, we observed a decrease in tumor mutational burden after chemotherapy. We also evaluated the mutation spectrum consistency between cell-free DNA (cfDNA) and tissue DNA. Somatic mutations detected in cfDNA were consistent with that in tDNA, which indicated that plasma might be used for somatic mutation detection. These results support that somatic mutations can affect platinum drug response and provide potential clinical biomarkers for NSCLC treatment."	"Outcomes to first-line pembrolizumab in patients with PD-L1-high (≥50%) non-small cell lung cancer and a poor performance status. Patients with non-small cell lung cancer (NSCLC) and a poor Eastern Cooperative Oncology Group Performance Status (ECOG PS) have been excluded from phase III immunotherapy clinical trials. We sought to evaluate clinical outcomes to first-line pembrolizumab in patients with advanced NSCLC, a PD-L1 Tumor Proportion Score (TPS) of ≥50%, and an ECOG PS of 2. We performed a multicenter retrospective analysis of patients with metastatic NSCLC and a PD-L1 TPS of ≥50% (negative for genomic alterations in EGFR and ALK) who received treatment with first-line pembrolizumab. Clinical outcomes were compared in patients based on ECOG PS. Among the 234 patients, 83.3% (n=195) had an ECOG PS of 0 or 1, and 16.7% (n=39) had an ECOG PS of 2. The baseline clinicopathological characteristics were balanced between the ECOG PS 0-1 vs 2 groups in terms of age, sex, tobacco use, histology, KRAS mutation status, presence of other potentially targetable driver mutations (BRAF, MET, HER2, RET), presence of brain metastases, and PD-L1 TPS distribution. Compared with patients with an ECOG PS of 0 or 1, patients with an ECOG PS of 2 had a significantly lower objective response rate (43.1% vs 25.6%; p=0.04), a numerically shorter median progression-free survival (6.6 months vs 4.0 months; HR 0.70 (95% CI 0.47 to 1.06); p=0.09), and a significantly shorter median overall survival (20.3 months vs 7.4 months; HR 0.42 (95% CI 0.26 to 0.68); p&lt;0.001). On disease progression, patients with an ECOG PS of 2 were significantly less likely to receive second-line systemic therapy compared with patients with an ECOG PS of 0-1 (65% vs 22.2%, p=0.001). A subset of patients with NSCLC and an ECOG PS of 2 can respond to first-line pembrolizumab. However, clinical outcomes in this population are often poor and use of second-line systemic therapy is infrequent."	"Discrete Adaptive Responses to MEK Inhibitor in Subpopulations of Triple-Negative Breast Cancer. Triple-negative breast cancers contain a spectrum of epithelial and mesenchymal phenotypes. SUM-229PE cells represent a model for this heterogeneity, maintaining both epithelial and mesenchymal subpopulations that are genomically similar but distinct in gene expression profiles. We identified differential regions of open chromatin in epithelial and mesenchymal cells that were strongly correlated with regions of H3K27ac. Motif analysis of these regions identified consensus sequences for transcription factors that regulate cell identity. Treatment with the MEK inhibitor trametinib induced enhancer remodeling that is associated with transcriptional regulation of genes in epithelial and mesenchymal cells. Motif analysis of enhancer peaks downregulated in response to chronic treatment with trametinib identified AP-1 motif enrichment in both epithelial and mesenchymal subpopulations. ChIP-seq of JUNB identified subpopulation-specific localization, which was significantly enriched at regions of open chromatin. These results indicate that cell identity controls localization of transcription factors and chromatin modifying enzymes to enhancers for differential control of gene expression. We identified increased H3K27ac at an enhancer region proximal to CXCR7, a G-protein coupled receptor that increased fifteen-fold in expression in the epithelial subpopulation during chronic treatment. RNAi knockdown of CXCR7 inhibited proliferation in trametinib resistant cells. Thus, adaptive resistance to chronic trametinib treatment contributes to proliferation in the presence of the drug. Acquired amplification of KRAS following trametinib dose escalation further contributed to POS cell proliferation. Adaptive followed by acquired gene expression changes contributed to proliferation in trametinib resistant cells, suggesting inhibition of early transcriptional reprogramming could prevent resistance and the bypass of targeted therapy. Implications: We defined the differential responses to trametinib in subpopulations of a clinically-relevant in vitro model of TNBC, and identified both adaptive and acquired elements that contribute to the emergence of drug resistance mediated by increased expression of CXCR7 and amplification of KRAS."	"Myc linked to dysregulation of cholesterol transport and storage in non-small cell lung cancer. Non-small cell lung cancer (NSCLC) is a leading cause of cancer-related deaths. Whilst mutations in Kras and over-expression of Myc are commonly found in patients, the role of altered lipid metabolism in lung cancer and its interplay with oncogenic Myc is poorly understood. Here we use a transgenic mouse model of Kras-driven lung adenocarcinoma with reversible activation of Myc, in combination with surface analysis lipid profiling of lung tumours and transcriptomics, to study the effect of Myc activity on cholesterol homeostasis. Our findings reveal that activation of Myc leads to the accumulation of cholesteryl esters (CE), stored in lipid droplets. Subsequent Myc deactivation leads to further increases in CEs, in contrast to tumours in which Myc was never activated. Gene expression analysis linked cholesterol transport and storage pathways to Myc activity. Our results suggest that increased Myc activity is associated with increased cholesterol influx, reduced efflux and accumulation of CE-rich lipid droplets in lung tumours. Targeting cholesterol homeostasis is proposed as a promising avenue to explore for novel treatments of lung cancer, with diagnostic and stratification potential in human NSCLC."	"Chloroquine assisted delivery of microRNA Mimic let-7b to NSCLC cell line by PAMAM (G5) - HA nano-carrier. Polyamidoamine (PAMAM) dendrimers are attracting scientists' interest as vehicles for nucleic acid delivery due to their suitable properties. The highly positive surface charged of PAMAM enables adequate interaction with negative-ly charged microRNAs. The purpose of this study is to investigate the anti-tumor effect of microRNA Mimic let-7b loaded in PAMAM dendrimers (G5) on non-small cell lung cancer (NSCLC) cells. In order to increase the anti-tumor effect, chlo-roquine is employed to enhance the endosomal escape which is counted as a limitation in the advancement of gene delivery. Nanoparticles (NPs) were coated with natural polysaccharide 'hyaluronic acid (HA)' to develop biodegradable carriers with targeting moiety for over-expressed CD44 receptors on NSCLC cells. The size and zeta potential measurements, gel retarda-tion, cellular uptake, cell viability and gene expression studies were investigated for the designed delivery system. DLS analysis showed monodispersed small nanoparticles which was in agreement with TEM results. Remarkably, NPs in the cells pretreated with chloroquine exhibited the highest cytotoxicity and were capable of inducing apoptosis. In cellular up-take study, NPs labeled with Fluorescein isothiocyanate (FITC), were successfully taken up in cancer cells. Moreover, ex-pression study of three genes linked with cancer initiation and development in NSCLC, including KRAS, p-21, and BCL-2 indicated decrease in KRAS and BCL-2 (oncogenic and anti-apoptotic genes) and increase in p-21 (apoptotic gene). All factors considered, the results declare that application of let-7b-loaded PAMAM-HA NPs in combination with chloroquine can be a promising therapeutic option in cancer cells inhibition, the fact which has frequently been highlighted by many re-searchers upon the potentials of micro RNA delivery in cancer cells."	"Predicting the Role of DNA Polymerase β Alone or with KRAS Mutations in Advanced NSCLC Patients Receiving Platinum-Based Chemotherapy. Clinical data suggest that only a subgroup of non-small cell lung cancer (NSCLC) patients has long-term benefits after front-line platinum-based therapy. We prospectively investigate whether KRAS status and DNA polymerase β expression could help identify patients responding to platinum compounds. Prospectively enrolled, advanced NSCLC patients treated with a first-line regimen containing platinum were genotyped for KRAS and centrally evaluated for DNA polymerase β expression. Overall survival (OS), progression-free survival (PFS), and the objective response rate (ORR) were recorded. Patients with KRAS mutations had worse OS (hazard ratio (HR): 1.37, 95% confidence interval (95% CI): 0.70-2.27). Negative DNA polymerase β staining identified a subgroup with worse OS than patients expressing the protein (HR: 1.43, 95% CI: 0.57-3.57). The addition of KRAS to the analyses further worsened the prognosis of patients with negative DNA polymerase β staining (HR: 1.67, 95% CI: 0.52-5.56). DNA polymerase β did not influence PFS and ORR. KRAS may have a negative role in platinum-based therapy responses in NSCLC, but its impact is limited. DNA polymerase β, when not expressed, might indicate a group of patients with poor outcomes. KRAS mutations in tumors not expressing DNA polymerase β further worsens survival. Therefore, these two biomarkers together might well identify patients for whom alternatives to platinum-based chemotherapy should be used."	"KRAS mutation as a prognostic factor and predictive factor in advanced/metastatic non-small cell lung cancer: A systematic literature review and meta-analysis. KRAS (Kirsten Rat Sarcoma) is the most common oncogenic mutation detected in patients with non-small cell lung cancer (NSCLC). However, the role of KRAS as either a prognostic factor or predictive factor (modifier of treatment effects) in NSCLC is not well established at this time. This systematic literature review (SLR) and meta-analysis synthesized the available evidence regarding the role of KRAS mutation as a predictive factor and/or prognostic factor of survival and response outcomes in patients with advanced/metastatic (stage IIIB-IV) NSCLC. Relevant clinical trials and observational studies were identified by searching MEDLINE, Embase and Cochrane Register of Controlled Trials. Meta-analyses were performed using data extracted from multivariable and univariable analyses from clinical studies to assess the empirical evidence of KRAS mutation status as a prognostic or/and predicitive factor. 43 selected studies were identified by the SLR and included in this meta-analysis. Pairwise meta-analyses of hazard ratios (HRs) reported in randomized controlled trials (RCTs) did not demonstrate a significant prognostic effect of mutant KRAS on overall survival (OS) (HR=1.10; 95% CI [0.88, 1.38]) or progression free survival (PFS) (HR=1.03; 95% CI [0.80, 1.33]). However, when conducting meta-analyses on HRs reported in observational studies, a statistically significant negative prognostic effect of mutant KRAS was observed (OS HR=1.71; 95% CI [1.07, 2.84]; PFS HR=1.18; 95% CI [1.02, 1.36]). Meta-analyses of objective response rate (ORR) in RCTs demonstrated a negative prognostic effect of mutant KRAS (RR=0.38; 95% CI [0.16, 0.63]). Limited data were available to evaluate the role of KRAS mutation as a predictive factor. In conclusion, this research offers evidence that KRAS mutation may be a negative prognostic factor for survival and response outcomes in patients with advanced/metastatic NSCLC, but further research is needed to address conflicting results on the importance of KRAS mutations as a predictive factor."	"Personalized Treatment Selection and Disease Monitoring Using Circulating Tumor DNA Profiling in Real-World Cancer Patient Management. Circulating tumor DNA (ctDNA) in the blood plasma of cancer patients is an emerging biomarker used across oncology, facilitating noninvasive disease monitoring and genetic profiling at various disease milestones. Digital droplet PCR (ddPCR) technologies have demonstrated high sensitivity and specificity for robust ctDNA detection at relatively low costs. Yet, their value for ctDNA-based management of a broad population of cancer patients beyond clinical trials remains elusive. We developed mutation-specific ddPCR assays that were optimized for their use in real-world cancer management, covering 12 genetic aberrations in common cancer genes, such as EGFR, BRAF, KIT, KRAS, and NRAS. We assessed the limit of detection (LOD) and the limit of blank (LOB) for each assay and validated their performance for ctDNA detection using matched tumor sequencing. We applied our custom ddPCR assays to 352 plasma samples from 96 patients with solid tumors. Mutation detection in plasma was highly concordant with tumor sequencing, demonstrating high sensitivity and specificity across all assays. In 20 cases, radiographic cancer progression was mirrored by an increase of ctDNA concentrations or the occurrence of novel mutations in plasma. Moreover, ctDNA profiling at diagnosis and during disease progression reflected personalized treatment selection through the identification of actionable gene targets in 20 cases. Collectively, our work highlights the potential of ctDNA assessment by sensitive ddPCR for accurate disease monitoring, robust identification of resistance mutations, and upfront treatment selection in patients with solid tumors. We envision an increasing future role for ctDNA profiling within personalized cancer management in daily clinical routine."	"Induction of PIK3CA alterations during neoadjuvant letrozole may improve outcome in postmenopausal breast cancer patients. Estrogen receptor positive (ER+) breast cancer constitutes almost 85% of all breast cancer patients and are a genetically highly heterogenic group. Data on the association of somatic alterations to outcome and prognosis are however sparse. In this neoadjuvant endocrine phase II trial including postmenopausal breast cancer patients with ER+, HER2 normal breast cancer, we investigated the rate of pathogenic mutations before and after treatment as well as the association with treatment response and survival. Pretreatment and posttreatment tumour samples from 109 patients treated with neoadjuvant letrozole were collected and analysed with Next Generation Sequencing utilizing a panel of 12 genes (ALK, BRAF, EGFR, ERBB2, ERBB3, ESR1, KIT, KRAS, NRAS, PDGFRA, PIK3CA, and RAF1). Residual disease was assessed by a modified Miller Payne scale and the Residual Cancer Burden index. Survival data were collected prospectively. Among the 109 patients, 52 had at least one pathogenic mutation in the pretreatment sample and 60 in the posttreatment sample. The most frequently mutated gene was PIK3CA, followed by EGFR and KRAS. Twelve different pathogenic PIK3CA mutations were identified, primarily in exon 20 and exon 9. An altered PIK3CA mutation profile from the pre- to the posttreatment specimen was significantly associated to improved pathological outcome. Overall and Disease-Free Survival benefits in PIK3CA mutated patients was observed. Considerable heterogeneity was identified both among patients and between pre- and posttreatment samples. PIK3CA has the potential to be a predictive biomarker. To further assess the implications of a treatment related altered PIK3CA mutation profile, more data are needed."	"Activating KRAS, NRAS, and BRAF mutants enhance proteasome capacity and reduce endoplasmic reticulum stress in multiple myeloma. KRAS, NRAS, and BRAF mutations which activate p44/42 mitogen-activated protein kinase (MAPK) signaling are found in half of myeloma patients and contribute to proteasome inhibitor (PI) resistance, but the underlying mechanisms are not fully understood. We established myeloma cell lines expressing wild-type (WT), constitutively active (CA) (G12V/G13D/Q61H), or dominant-negative (DN) (S17N)-KRAS and -NRAS, or BRAF-V600E. Cells expressing CA mutants showed increased proteasome maturation protein (POMP) and nuclear factor (erythroid-derived 2)-like 2 (NRF2) expression. This correlated with an increase in catalytically active proteasome subunit β (PSMB)-8, PSMB9, and PSMB10, which occurred in an ETS transcription factor-dependent manner. Proteasome chymotrypsin-like, trypsin-like, and caspase-like activities were increased, and this enhanced capacity reduced PI sensitivity, while DN-KRAS and DN-NRAS did the opposite. Pharmacologic RAF or MAPK kinase (MEK) inhibitors decreased proteasome activity, and sensitized myeloma cells to PIs. CA-KRAS, CA-NRAS, and CA-BRAF down-regulated expression of endoplasmic reticulum (ER) stress proteins, and reduced unfolded protein response activation, while DN mutations increased both. Finally, a bortezomib (BTZ)/MEK inhibitor combination showed enhanced activity in vivo specifically in CA-NRAS models. Taken together, the data support the hypothesis that activating MAPK pathway mutations enhance PI resistance by increasing proteasome capacity, and provide a rationale for targeting such patients with PI/RAF or PI/MEK inhibitor combinations. Moreover, they argue these mutations promote myeloma survival by reducing cellular stress, thereby distancing plasma cells from the apoptotic threshold, potentially explaining their high frequency in myeloma."	"Same Name, Different Game: EGFR Drives Intrinsic KRAS<sup>G12C</sup> Inhibitor Resistance in Colorectal Cancer. The discovery of covalent inhibitors of KRAS<sup>G12C</sup> has led to promising clinical results in lung cancer, but disappointing response rates in colon cancer. In this issue of Cancer Discovery, Misale and colleagues identify high endogenous EGFR activity as the underlying mechanism of intrinsic resistance, which can be overcome by anti-EGFR antibody coadministration.See related article by Amodio et al., p. 1129."	"KRAS inhibition in non-small cell lung cancer: Past failures, new findings and upcoming challenges. Despite the high prevalence of Kirsten rat sarcoma (KRAS) mutations in non-small cell lung cancer (NSCLC), for a long time it has been defined as an 'undruggable target', with precision medicine not considered as an adequate approach to treat this subgroup of patients. After several years of efforts, preliminary data from early clinical trials have recently demonstrated that direct pharmacological inhibition of KRAS p.G12C mutation is possible, emerging as an effective targeted treatment for about 10-12% of patients with advanced NSCLC, with potential relevant impact on their long-term survival and quality of life. This review reports the current status of KRAS mutations detection in the Italian real-word scenario, summarises the biological basis of KRAS inhibition in NSCLC and provides an updated overview of therapeutic strategies, discussing the potential reasons for past failures and analysing the upcoming challenges related to the advent of new targeted agents in clinical practice."	"PhotoAffinity Bits: A photoaffinity-based fragment screening platform for efficient identification of protein ligands. Advances in genomic analyses enable the identification of new proteins that are associated with disease. To validate these targets, tool molecules are required to demonstrate that a ligand can have a disease-modifying effect. Currently, as tools are reported for only a fraction of the proteome, platforms for ligand discovery are essential to leverage insights from genomic analyses. Fragment screening offers an efficient approach to explore chemical space. We present a fragment screening platform, termed PhABits (PhotoAffinity Bits), which utilises a library of photoreactive fragments to covalently capture fragment-protein interactions. Hits can be profiled to determine potency and site of crosslinking, and subsequently developed as reporters in a competitive displacement assay to identify novel hit matter. We envision that the PhABits will be widely applicable to novel protein targets, identifying starting points in the development of therapeutics."	"Clinical significance of tumor mutation burden and DNA damage repair in advanced stage non-small cell lung cancer patients. This study aimed to investigate the impact of tumor mutational burden (TMB) and DNA damage repair (DDR) gene alteration on overall survival (OS) in advanced non-small cell lung cancer (NSCLC) patients. A DNA library of cancer cells from 67 NSCLC patients in stages III-IV was constructed for next-generation sequencing (NGS). Geneseeq422 probes were used for hybridization enrichment. The target-enriched library was sequenced on HiSeqNGS platforms, and we analyzed the relevant signaling pathways. Then, we correlated the OS of the patients with TMB and DDR mutations. Many significant alterations were found, including in the EGFR, p53, KRAS, RB1, ERBB2, NF1, DNMT3A, ALK, MYC, PIK3CA, ROS1, BRAF, ARID1A, PTEN, CDKN2A, and FGF19 genes. We also identified many mutations in the genes relevant to the DDR pathway. Interestingly, we found that the TMB of patients with DDR gene mutations was dramatically higher than that in the DDR wild-type (WT). Univariable analysis showed that DNMT3A, RB1, DDR pathway-related gene mutations, and TMB were critical factors for the effects on OS. Multivariable analysis confirmed that DNMT3A and mutations in the DDR pathway-related genes were important for predicting OS. Multiple mutations in the genes of the DDR pathway caused higher TMB levels, which resulted in longer OS. By contrast, OS was significantly longer in patients with non-DNMT3A mutations than in those with DNMT3A variants. DNMT3A alteration in NSCLC patients led to poor outcomes."	"Irinotecan and vandetanib create synergies for treatment of pancreatic cancer patients with concomitant TP53 and KRAS mutations. The most frequently mutated gene pairs in pancreatic adenocarcinoma (PAAD) are KRAS and TP53, and our goal is to illustrate the multiomics and molecular dynamics landscapes of KRAS/TP53 mutation and also to obtain prospective novel drugs for KRAS- and TP53-mutated PAAD patients. Moreover, we also made an attempt to discover the probable link amid KRAS and TP53 on the basis of the abovementioned multiomics data. We utilized TCGA &amp; Cancer Cell Line Encyclopedia data for the analysis of KRAS/TP53 mutation in a multiomics manner. In addition to that, we performed molecular dynamics analysis of KRAS and TP53 to produce mechanistic descriptions of particular mutations and carcinogenesis. We discover that there is a significant difference in the genomics, transcriptomics, methylomics, and molecular dynamics pattern of KRAS and TP53 mutation from the matching wild type in PAAD, and the prognosis of pancreatic cancer is directly linked with a particular mutation of KRAS and protein stability. Screened drugs are potentially effective in PAAD patients. KRAS and TP53 prognosis of PAAD is directly associated with a specific mutation of KRAS. Irinotecan and vandetanib are prospective drugs for PAAD patients with KRASG12Dmutation and TP53 mutation."	"Temporospatial genomic profiling in glioblastoma identifies commonly altered core pathways underlying tumor progression. Tumor heterogeneity underlies resistance and disease progression in glioblastoma (GBM), and tumors most commonly recur adjacent to the surgical resection margins in contrast non-enhancing (NE) regions. To date, no targeted therapies have meaningfully altered overall patient survival in the up-front setting. The aim of this study was to characterize intratumoral heterogeneity in recurrent GBM using bulk samples from primary resection and recurrent samples taken from contrast-enhancing (EN) and contrast NE regions. Whole exome and RNA sequencing were performed on matched bulk primary and multiple recurrent EN and NE tumor samples from 16 GBM patients who received standard of care treatment alone or in combination with investigational clinical trial regimens. Private mutations emerge across multi-region sampling in recurrent tumors. Genomic clonal analysis revealed increased enrichment in gene alterations regulating the G2M checkpoint, Kras signaling, Wnt signaling, and DNA repair in recurrent disease. Subsequent functional studies identified augmented PI3K/AKT transcriptional and protein activity throughout progression, validated by phospho-protein levels. Moreover, a mesenchymal transcriptional signature was observed in recurrent EN regions, which differed from the proneural signature in recurrent NE regions. Subclonal populations observed within bulk resected primary GBMs transcriptionally evolve across tumor recurrence (EN and NE regions) and exhibit aberrant gene expression of common signaling pathways that persist despite standard or targeted therapy. Our findings provide evidence that there are both adaptive and clonally mediated dependencies of GBM on key pathways, such as the PI3K/AKT axis, for survival across recurrences."	"The Antisense long noncoding RNA AGAP2-AS1 regulates cell proliferation and metastasis in Epithelial Ovarian Cancer. Antisense long noncoding RNAs serve as important regulators of protein-coding genes and contribute to tumorigenesis and metastasis. AGAP2-AS1, an antisense lncRNA transcribed from AGAP2, is involved in various cancer types. However, the clinical significance, biological roles and regulatory mechanisms of AGAP2-AS1 in epithelial ovarian cancer (EOC) have not been thoroughly elucidated to date. In this study, we demonstrated the expression pattern and biological roles of AGAP2-AS1 in EOC. Clinically, AGAP2-AS1 expression was decreased in EOC tissues compared to that in the controls. Low expression of AGAP2-AS1 was associated with advanced FIGO stage, high histological grade, serous subtype and lymph node metastasis in patients with EOC. AGAP2-AS1 inhibited cell migration, invasion and proliferation in vitro. AGAP2-AS1 suppressed tumor growth in vivo. Mechanistically, AGAP2-AS1 inhibited cell metastasis and proliferation by downregulating KRAS, FGFR4, and CTSK and suppressing epithelial-mesenchymal transition. In conclusion, we provide the first evidence for the tumor-suppressing effect of AGAP2-AS1 in EOC and demonstrate that AGAP2-AS1 may represent a promising therapeutic target for EOC patients."	"Differences in Pathology and Mutation Status Among Colorectal Cancer Patients Younger Than, Older Than, and of Screening Age. Screening protocols for colorectal cancer are broadly recommended and effective in reducing mortality. However, populations from different age groups can harbor distinct pathologic and molecular profiles that can also be influenced by screening and polyp resection, especially in older ages. We retrospectively analyzed tumors from stage IV colorectal cancer patients from a central pathology laboratory in Brazil that is a reference for mutational profiling countrywide. Patients were classified into age groups as follows: prescreening age (PrSA; &lt; 45 years old), screening age (SA; 45-75 years old), and postscreening age (PoSA; &gt; 75 years old). Every tumor was centrally reviewed by the pathologist. Groups were compared regarding clinicopathologic features, and the presence of RAS (renin-angiotensin system) and BRAF (v-Raf murine sarcoma viral oncogene homolog B) mutations. We included 1635 patients (215 PrSA, 1213 SA, 207 PoSA). There was no difference among groups regarding sidedness (P = .65) and KRAS (Kirsten rat sarcoma viral oncogene) mutations (P = .57). Stage IV disease at diagnosis (P = .04), the presence of a signet-ring cell component (P &lt; .001), and poorly differentiated tumors (P = .02) were most common in young patients, while BRAF and NRAS (neuroblastoma RAS viral (v-ras) oncogene homolog) mutations were significantly more common among PoSA patients (P = .002 and .03, respectively). When divided by age decade, KRAS mutations seem to have a stable frequency among all ages, while the BRAF mutation rate increased with increasing age. BRAF mutations are more frequent among PoSA patients, and this seems to be a continuous trend. PrSA and PoSA patients seem to present a distinct profile from SA, including differences in molecular and pathologic aspects. These findings could impact the frequency of screening tests among different age groups."	"Accelerating ophthalmic artificial intelligence research: the role of an open access data repository. Artificial intelligence has already provided multiple clinically relevant applications in ophthalmology. Yet, the explosion of nonstandardized reporting of high-performing algorithms are rendered useless without robust and streamlined implementation guidelines. The development of protocols and checklists will accelerate the translation of research publications to impact on patient care. Beyond technological scepticism, we lack uniformity in analysing algorithmic performance generalizability, and benchmarking impacts across clinical settings. No regulatory guardrails have been set to minimize bias or optimize interpretability; no consensus clinical acceptability thresholds or systematized postdeployment monitoring has been set. Moreover, stakeholders with misaligned incentives deepen the landscape complexity especially when it comes to the requisite data integration and harmonization to advance the field. Therefore, despite increasing algorithmic accuracy and commoditization, the infamous 'implementation gap' persists. Open clinical data repositories have been shown to rapidly accelerate research, minimize redundancies and disseminate the expertise and knowledge required to overcome existing barriers. Drawing upon the longstanding success of existing governance frameworks and robust data use and sharing agreements, the ophthalmic community has tremendous opportunity in ushering artificial intelligence into medicine. By collaboratively building a powerful resource of open, anonymized multimodal ophthalmic data, the next generation of clinicians can advance data-driven eye care in unprecedented ways. This piece demonstrates that with readily accessible data, immense progress can be achieved clinically and methodologically to realize artificial intelligence's impact on clinical care. Exponentially progressive network effects can be seen by consolidating, curating and distributing data amongst both clinicians and data scientists."	"The prognostic value of Kirsten rat sarcoma viral oncogene homolog mutations in resected lung adenocarcinoma differs according to clinical features. The ninth edition of lung cancer staging system recommends that specific driver mutations should be considered as prognostic factors in survival models. This study comprehensively investigated the prognostic value of Kirsten rat sarcoma viral oncogene homolog (KRAS) mutation in patients with resected lung adenocarcinomas according to different clinicopathologic and radiologic characteristics. In total, 1464 patients with completely resected primary lung adenocarcinomas were examined for KRAS mutations from November 2008 to March 2015. Age, sex, smoking status, performance status, tumor-node-metastasis stage, radiologic features, and histologic subtypes were collected. Competing risk model was used to estimate the cumulative incidence rate of recurrence. Cox regression multivariable analyses on recurrence-free survival (RFS) and overall survival (OS) were performed. KRAS mutations were more frequent in male subjects (P &lt; .001), current/former smokers (P &lt; .001), invasive mucinous adenocarcinoma (P &lt; .001), and solid tumors (P &lt; .001). In general, KRAS-mutated patients had greater cumulative recurrence rate (hazard ratio [HR], 1.95; 95% confidence interval [CI], 1.23-3.08; P &lt; .001) and worse overall survival (OS; HR, 1.88; 95% CI, 1.23-2.87; P &lt; .001) than KRAS wild-type patients. The OS (P &lt; .001) of patients harboring KRAS-G12C/V mutations was shorter than that of other KRAS-mutated patients. Cox multivariable analyses demonstrated that KRAS mutations were independently associated with worse RFS (HR, 5.34; 95% CI, 2.53-11.89; P = .001) and OS (HR, 2.63; 95% CI, 1.03-6.76; P = .044) in part-solid lung adenocarcinomas. For stage I patients, Cox multivariable analyses revealed that KRAS mutation was an independent risk factor for RFS (HR, 2.05; 95% CI, 1.19-3.56; P = .010) and OS (HR, 2.38; 95% CI, 1.29-4.40; P = .005). In this study, we revealed that KRAS mutations was an independent prognostic factor in part-solid tumors and in stage I lung adenocarcinomas. These findings may contribute to the ninth edition of lung cancer staging project."	"A phase Ib open-label dose escalation study of the safety, pharmacokinetics, and pharmacodynamics of cobimetinib (GDC-0973) and ipatasertib (GDC-0068) in patients with locally advanced or metastatic solid tumors. This Phase Ib study explored combination dosing of the allosteric MEK1/2 inhibitor cobimetinib and the ATP-competitive pan-AKT inhibitor ipatasertib. Patients with advanced solid tumors were enrolled to two dose escalation arms, each using a 3 + 3 design in 28-day cycles. In Arm A, patients received concurrent cobimetinib and ipatasertib on days 1-21. In Arm B, cobimetinib was administered intermittently with ipatasertib for 21 days. Primary objectives evaluated dose-limiting toxicities (DLTs), maximum tolerated doses (MTD), and the recommended Phase II dose (RP2D). Secondary objectives included analysis of pharmacokinetic parameters, MAPK and PI3K pathway alterations, changes in tissue biomarkers, and preliminary anti-tumor efficacy. Expansion cohorts included patients with PTEN-deficient triple-negative breast cancer and endometrial cancer. Among 66 patients who received ≥1 dose of study drug, all experienced an adverse event (AE). Although no DLTs were reported, 6 patients experienced Cycle 1 DLT-equivalent AEs. The most common treatment-related AEs were diarrhea, nausea, vomiting, dermatitis acneiform, and fatigue. Thirty-five (53%) patients experienced drug-related AEs of ≥ grade 3 severity. Cobimetinb/ipatasertib MTDs were 60/200 mg on Arm A and 150/300 mg on Arm B; the latter was chosen as the RP2D. No pharmacokinetic interactions were identified. Biomarker analyses indicated pathway blockade and increases in IFNγ and PD-L1 gene expression following the combination. Three patients with endometrial or ovarian cancer achieved partial response, all with PTEN-low disease and two with tumor also harboring KRAS mutation. There was limited tolerability and efficacy for this MEK and AKT inhibitor combination. Nonetheless, pharmacodynamic analyses indicated target engagement and suggest rationale for further exploration of cobimetinib or ipatasertib in combination with other anticancer agents. ClinicalTrials.gov identifier: NCT01562275."	"Biweekly Cetuximab Plus FOLFOX6 as First-Line Therapy in Patients With RAS Wild-Type Metastatic Colorectal Cancer: The CEBIFOX Trial. The multicenter, single-arm, phase II study CEBIFOX evaluated the efficacy of a biweekly cetuximab administration in combination with FOLFOX6 as first-line therapy in KRAS (exon 2) wild-type (wt) metastatic colorectal cancer (mCRC). Patients received FOLFOX6 with cetuximab (500 mg/m<sup>2</sup>) every second week. Primary endpoint was objective response rate (ORR), among others secondary endpoints were safety, progression-free survival (PFS), overall survival (OS), and patient-reported outcome (PRO). The impact on the treatment efficacy was evaluated in explorative subgroup analyses, including extended molecular profiling and primary tumor location. In total, 57 were included in the intention-to-treat (ITT) analyses. New RAS mutations were detected in 14.0% by post hoc next-generation sequencing analysis in 43 patients. The ORR in the all RASwt population was 70.3% with a median PFS and OS of 10.9 (95% confidence interval [CI], 9.0-12.9) and 33.8 (95% CI, 21.1-45.5) months. Grade 3-5 adverse events occurred in 66.7% of the ITT, without significant impact on the PRO. Patients with right-sided primary tumors had a reduced ORR (54.5%), and median PFS and OS (10.1 and 23.8 months). BRAF mutations were detected in 11.3%. These patients had a significantly lower ORR, and median PFS and OS. Patients with RASwt/BRAFwt tumors had a notably high median PFS and OS of 14.3 and 38.9 months. This study supports the efficacy and safety of biweekly cetuximab given in combination with FOLFOX6 in patients with RASwt/BRAFwt mCRC with left-sided primary tumor. CEBIFOX is the first trial reporting the complete dataset, including extended molecular profiling and tumor location of a biweekly administered cetuximab/FOLFOX6 in mCRC. Clinical trial number: NCT01051167."	"Recurrent Neoantigens in Colorectal Cancer as Potential Immunotherapy Targets. This study was aimed at investigating the mutations in colorectal cancer (CRC) for recurrent neoantigen identification. A total of 1779 samples with whole exome sequencing (WES) data were obtained from 7 published CRC cohorts. Common HLA genotypes were used to predict the probability of neoantigens at high-frequency mutants in the dataset. Based on the WES data, we not only obtained the most comprehensive CRC mutation landscape so far but also found 1550 mutations which could be identified in at least 5 patients, including KRAS G12D (8%), KRAS G12V (5.8%), PIK3CA E545K (3.5%), PIK3CA H1047R (2.5%), and BMPR2 N583Tfs∗44 (2.8%). These mutations can also be recognized by multiple common HLA molecules in Chinese and TCGA cohort as potential &quot;public&quot; neoantigens. Many of these mutations also have high mutation rates in metastatic pan-cancers, suggesting their value as therapeutic targets in different cancer types. Overall, our analysis provides recurrent neoantigens as potential cancer immunotherapy targets."	"Vγ9Vδ2 T Cells Activation Through Phosphoantigens Can Be Impaired by a RHOB Rerouting in Lung Cancer. Vγ9Vδ2 T cells are known to be efficient anti-tumor effectors activated through phosphoantigens (PAg) that are naturally expressed by tumor cells or induced by amino bisphosphonates treatment. This PAg-activation which is TCR and butyrophilin BTN3A dependent can be modulated by NKG2D ligands, immune checkpoint ligands, adhesion molecules, and costimulatory molecules. This could explain the immune-resistance observed in certain clinical trials based on Vγ9Vδ2 T cells therapies. In NSCLC, encouraging responses were obtained with zoledronate administrations for 50% of patients. According to the in vivo results, we showed that the in vitro Vγ9Vδ2 T cell reactivity depends on the NSCLC cell line considered. If the PAg-pretreated KRAS mutated A549 is highly recognized and killed by Vγ9Vδ2 T cells, the EGFR mutated PC9 remains resistant to these killers despite a pre-treatment either with zoledronate or with exogenous BrHPP. The immune resistance of PC9 was shown not to be due to immune checkpoint ligands able to counterbalance NKG2D ligands or adhesion molecules such as ICAM-1 highly expressed by PC9. RHOB has been shown to be involved in the Vγ9Vδ2 TCR signaling against these NSCLC cell lines, in this study we therefore focused on its intracellular behavior. In comparison to a uniform distribution of RHOB in endosomes and at the plasma membrane in A549, the presence of large endosomal clusters of RHOB was visualized by a split-GFP system, suggesting that RHOB rerouting in the PC9 tumor cell could impair the reactivity of the immune response."	"Monitoring of clonal evolution of acute myeloid leukemia identifies the leukemia subtype, clinical outcome and potential new drug targets for post-remission strategies or relapse. In cases of treatment failure in acute myeloid leukemia (AML), the utility of mutational profiling in primary refractoriness and relapse is not established. We undertook a perspective study using next-generation sequencing (NGS) of clinical follow-up samples (n=91) from 23 patients with AML with therapeutic failure to cytarabine plus idarubicin or fludarabine. Cases of primary refractoriness to treatment were associated with a lower number of DNA variants at diagnosis than cases of relapse (median 1.67 and 3.21, respectively, p=0.029). The most frequently affected pathways in patients with primary refractoriness were signaling, transcription and tumor suppression, whereas methylation and splicing pathways were mainly implicated in relapsed patients. New therapeutic targets, either by an approved drug or within clinical trials, were not identified in any of the cases of refractoriness (0/10); however, 8 potential new targets were found in 5 relapsed patients (5/13) (p=0.027): 1 IDH2, 3 SF3B1, 2 KRAS, 1 KIT and 1 JAK2. Sixty-five percent of all variants detected at diagnosis were not detected at complete response (CR). Specifically, 100% of variants in EZH2, RUNX1, VHL, FLT3, ETV6, U2AF1, PHF6 and SF3B1 disappeared at CR, indicating their potential use as markers to evaluate minimal residual disease (MRD) for follow-up of AML. Molecular follow-up using a custom NGS myeloid panel of 32 genes in the post-treatment evaluation of AML can help in the stratification of prognostic risk, the selection of MRD markers to monitor the response to treatment and guide post-remission strategies targeting AML, and the selection of new drugs for leukemia relapse."	"Protein Arginine Methyltransferase 5 as a Therapeutic Target for KRAS Mutated Colorectal Cancer. Nearly 45% of colorectal cancer (CRC) patients harbor a mutation in their KRAS gene for which, despite many years of research, there are still no targeted therapies available. Protein Arginine Methyltransferase 5 (PRMT5) is a transcription regulator for multiple cellular processes that is currently being tested as a potential target in several cancer types. PRMT5 has been previously shown to be overexpressed in approximately 75% of CRC patient tumor samples, as well as negatively correlated with CRC patient survival. Here, we provide evidence that PRMT5 can act as a surrogate target for mutated KRAS in CRC. Our findings show that PRMT5 expression is upregulated, as well as positively correlated with KRAS expression, in CRC patient datasets. Moreover, our results reveal that PRMT5 is further overexpressed in KRAS mutant CRC cells when compared to KRAS wild type (WT) CRC cells at both the transcriptional and translational levels. Additionally, our data demonstrate that this further overexpression of PRMT5 in the KRAS mutant CRC cells affects an even greater degree of growth inhibition, apoptosis, and cell cycle arrest, following treatment with PRMT5 inhibitor, when compared to the KRAS WT CRC cells. Our research therefore suggests for the first time that PRMT5 and KRAS may crosstalk, and thus, PRMT5 can potentially be used as a surrogate target for mutated KRAS in CRC."	"Precision Medicine in Non-Small Cell Lung Cancer: Current Applications and Future Directions. Advances in biomarkers, targeted therapies, and immuno-oncology have transformed the clinical management of patients with advanced NSCLC. For oncogene-driven tumors, there are highly effective targeted therapies against EGFR, ALK, ROS1, BRAF, TRK, RET, and MET. In addition, investigational therapies for KRAS, NRG1, and HER2 have shown promising results and may become standard-of-care in the near future. In parallel, immune-checkpoint therapy has emerged as an indispensable treatment modality, especially for patients lacking actionable oncogenic drivers. While PD-L1 expression has shown modest predictive utility, biomarkers for immune-checkpoint inhibition in NSCLC have remained elusive and represent an area of active investigation. Given the growing importance of biomarkers, optimal utilization of small tissue biopsies and alternative genotyping methods using circulating cell-free DNA have become increasingly integrated into clinical practice. In this review, we will summarize the current landscape and emerging trends in precision medicine for patients with advanced NSCLC with a special focus on predictive biomarker testing."	"Status of 10 targeted genes of non-small cell lung cancer in eastern China: A study of 884 patients based on NGS in a single institution. The status of targeted genes and the association between targeted genes and clinicopathological features in Chinese lung cancer patients remains to be elucidated. The status of 10 targeted genes was evaluated by next-generation sequencing (NGS) in 884 non-small cell lung cancer (NSCLC) patients. The relationship between gene alterations and clinicopathological characters was analyzed. Overall, 684 (77.4%) patients harbored gene alterations, and EGFR (510, 57.7%) was found to be the most common type of mutation followed by KRAS (91, 10.3%), HER2 (38, 4.3%), PIK3CA (32, 3.6%), ALK (21, 2.4%), BRAF (10, 1.1%), ROS1 (5, 0.6%), RET (5, 0.6%), MET (4, 0.5%) and NRAS (1, 0.1%). Gene alterations were more frequent in females, non-smokers and adenocarcinoma (P &lt; 0.001). EGFR mutations were associated with women, non-smokers, normal level of serum tumor markers, and adenocarcinoma (P &lt; 0.001). Patients without lymph node metastasis (P = 0.012), or early stage disease (P &lt; 0.001) exhibited a higher EGFR mutation rate. KRAS mutations tended to arise in men (P &lt; 0.001), smokers (P &lt; 0.001) and patients with higher levels of serum tumor markers (P = 0.048). A mucus-producing component was associated with KRAS (P &lt; 0.001), ROS1 (P = 0.033) and ALK (P &lt; 0.001) alterations. ALK and ROS1 rearrangements were more frequent in micropapillary structures (P = 0.004, P = 0.012). BRAF mutation was associated with advanced disease patients and micropapillary structure (P &lt; 0.001). PIK3CA mutation was more likely to be found in elderly patients (P = 0.014). Some patients had synchronous gene alterations, including EGFR/PIK3CA, EGFR/HER2, HER2/KRAS, EGFR/KRAS, EGFR/ROS1, EGFR/NRAS, KRAS/PIK3CA, KRAS/PIK3CA/HER2. Most patients had at least one genetic alteration, and individual patients harbored synchronous mutation. Each gene alteration had unique clinicopathological characteristics. SIGNIFICANT FINDINGS OF THE STUDY: This study revealed the frequency and distribution of 10 targeted gene abnormalities and their association with clinicopathological parameters of Chinese non-small cell lung cancer (NSCLC) patients in eastern China. Some rare synchronous mutations were detected in our study by next-generation sequencing (NGS)."	"A perspective on the early days of RAS research. The name of the oncogene, ras, has its origin in studies of murine leukemia viruses in the 1960s by Jenny Harvey (H-ras) and by Werner Kirsten (K-ras) which, at high doses, produced sarcomas in rats. Transforming retroviruses were isolated, and its oncogene was named ras after rat sarcoma. From 1979, cellular ras sequences with transforming properties were identified by transfection of tumor DNA initially by Robert Weinberg from rodent tumors, and the isolation of homologous oncogenes from human tumors soon followed, including HRAS and KRAS, and a new member of the family named NRAS. I review these discoveries, placing emphasis on the pioneering research of Christopher Marshall and Alan Hall, who subsequently made immense contributions to our understanding of the functions of RAS and related small GTPases to signal transduction pathways, cell structure, and the behavior of normal and malignant cells."	"Impaired AKT signaling and lung tumorigenesis by PIERCE1 ablation in KRAS-mutant non-small cell lung cancer. KRAS-mutant non-small cell lung cancer (NSCLC) is a major lung cancer subtype that leads to many cancer-related deaths worldwide. Although numerous studies on KRAS-mutant type NSCLC have been conducted, new oncogenic or tumor suppressive genes need to be detected because a large proportion of NSCLC patients does not respond to currently used therapeutics. Here, we show the tumor-promoting function of a cell cycle-related protein, PIERCE1, in KRAS-mutant NSCLC. Mechanistically, PIERCE1 depletion inhibits cell growth and AKT phosphorylation (pAKT) at S473, which is particularly observed in KRAS-mutant lung cancers. Analyses of AKT-related genes using microarray, immunoblotting, and real-time quantitative PCR indicated that PIERCE1 negatively regulates the gene expression of the AKT suppressor, TRIB3, through the CHOP pathway, which is a key regulatory pathway for TRIB3 expression. Similarly, in vivo analyses of PIERCE1 depletion in the KRAS mutation-related lung cancer mouse models revealed the suppressive effect of PIERCE1 knockout in urethane- and KRAS<sup>G12D</sup>-induced lung tumorigenesis with decreased pAKT levels observed in the tumors. Tissue microarrays of human lung cancers indicated the expression of PIERCE1 in 83% of lung cancers and its correlation with pAKT expression. Thus, we illustrate how PIERCE1 depletion may serve as a therapeutic strategy against KRAS-mutant NSCLC and propose the clinical benefit of PIERCE1."	"MK615 Suppresses Hypoxia Tolerance by Up-regulation of E-cadherin in Colorectal Cancer Cells With Mutant KRAS. The Japanese apricot &quot;Prunus mume&quot; is a traditional Japanese medicine. MK615, a compound extract from Prunus mume has been reported to have anti-tumor effects. Herein, we used 3D floating (3DF) culture to evaluate the anticancer effects of MK615 against human colorectal cancer (CRC) cells that contain mutant (mt) KRAS. HKe3 cells exogenously expressing mtKRAS (HKe3-mtKRAS) were treated with MK615 in 3DF cultures. The protein levels of hypoxia-inducible factor 1 (HIF-1) and E-cadherin were quantified by western blotting. MtKRAS enhanced hypoxia tolerance via up-regulation of HIF-1. The expression of HIF-1 protein was suppressed by constitutive overexpression of E-cadherin in CRC HCT116 spheroids. MK615 increased the expression of E-cadherin and decreased the expression of HIF-1 in HKe3-mtKRAS. These results suggest that MK615 suppresses hypoxia tolerance by up-regulation of E-cadherin in CRC cells with mtKRAS. MK615 exhibits properties useful for the potential treatment of CRC patients with mtKRAS."	"Mutant KRAS Promotes NKG2D<sup>+</sup> T Cell Infiltration and CD155 Dependent Immune Evasion. Roles for mutant (mt) KRAS in the innate immune microenvironment in colorectal cancer (CRC) were explored. Human CRC HCT116-derived, mtKRAS-disrupted (HKe3) cells that express exogenous mtKRAS and allogenic cytokine-activated killer (CAK) cells were co-cultured in 3D floating (3DF) culture. The anti-CD155 antibody was used for function blocking and immuno histochemistry. Infiltration of CAK cells, including NKG2D<sup>+</sup> T cells, into the deep layer of HKe3-mtKRAS spheroids, was observed. Surface expression of CD155 was found to be up-regulated by mtKRAS in 3DF culture and CRC tissues. Further, the number of CD3<sup>+</sup> tumor-infiltrating cells in the invasion front that show substantial CD155 expression was significantly larger than the number showing weak expression in CRC tissues with mtKRAS. CD155 blockade decreased the growth of spheroids directly and indirectly through the release of CAK cells. CD155 blockade may be useful for therapies targeting tumors containing mtKRAS."	"Secretin-induced Duodenal Aspirate of Pancreatic Juice (SIDA): Utility of Commercial Genetic Analysis. Secretin-induced duodenal aspiration (SIDA) of pancreatic duct fluid has been proposed for pancreatic neoplasm screening in very high-risk patients. We sought to determine the clinical yield and safety of commercially-analyzed SIDA samples in patients at moderately elevated risk. A prospectively maintained institutional database of pancreatic fluid DNA profiles was retrospectively reviewed. Fifty-seven patients underwent SIDA testing, most commonly for intraductal papillary mucinous neoplasms (n=43) and not otherwise specified solitary cysts (n=9). SIDA mutation yield was low compared to 37 concomitant endoscopic ultrasound-guided fine needle aspiration (EUS-FNA) samples of pancreatic fluid: KRAS (2.5% vs. 40.0%), GNAS (2.6% vs. 11.1%) and allelic loss of heterozygosity (3.1% vs. 0%). Patients undergoing SIDA alone experienced no complications while 3 patients with concomitant EUS-FNA had post-procedural pancreatitis. The genetic yield of commercially-analyzed SIDA samples was relatively low in a moderately elevated risk cohort. SIDA testing may have a better safety profile than EUS-FNA."	"Combined Proteomic and Genetic Interaction Mapping Reveals New RAS Effector Pathways and Susceptibilities. Activating mutations in RAS GTPases drive many cancers, but limited understanding of less-studied RAS interactors, and of the specific roles of different RAS interactor paralogs, continues to limit target discovery. We developed a multistage discovery and screening process to systematically identify genes conferring RAS-related susceptibilities in lung adenocarcinoma. Using affinity purification mass spectrometry, we generated a protein-protein interaction map of RAS interactors and pathway components containing hundreds of interactions. From this network, we constructed a CRISPR dual knockout library targeting 119 RAS-related genes that we screened for KRAS-dependent genetic interactions (GIs). This approach identified new RAS effectors, including the adhesion controller RADIL and the endocytosis regulator RIN1, and &gt;250 synthetic lethal GIs, including a potent KRAS-dependent interaction between RAP1GDS1 and RHOA. Many GIs link specific paralogs within and between gene families. These findings illustrate the power of multiomic approaches to uncover synthetic lethal combinations specific for hitherto untreatable cancer genotypes."	"Comprehensive Analysis of LincRNAs in Classical and Basal-Like Subtypes of Pancreatic Cancer. Pancreatic ductal adenocarcinomas (PDAC) belong to the deadliest malignancies in the western world. Mutations in TP53 and KRAS genes along with some other frequent polymorphisms occur almost universally and are major drivers of tumour initiation. However, these mutations cannot explain the heterogeneity in therapeutic responses and differences in overall survival observed in PDAC patients. Thus, recent classifications of PDAC tumour samples have leveraged transcriptome-wide gene expression data to account for epigenetic, transcriptional and post-transcriptional mechanisms that may contribute to this deadly disease. Intriguingly, long intervening RNAs (lincRNAs) are a special class of long non-coding RNAs (lncRNAs) that can control gene expression programs on multiple levels thereby contributing to cancer progression. However, their subtype-specific expression and function as well as molecular interactions in PDAC are not fully understood yet. In this study, we systematically investigated the expression of lincRNAs in pancreatic cancer and its molecular subtypes using publicly available data from large-scale studies. We identified 27 deregulated lincRNAs that showed a significant different expression pattern in PDAC subtypes suggesting context-dependent roles. We further analyzed these lincRNAs regarding their common expression patterns. Moreover, we inferred clues on their functions based on correlation analyses and predicted interactions with RNA-binding proteins, microRNAs, and mRNAs. In summary, we identified several PDAC-associated lincRNAs of prognostic relevance and potential context-dependent functions and molecular interactions. Hence, our study provides a valuable resource for future investigations to decipher the role of lincRNAs in pancreatic cancer."	"Biomarkers in Colorectal Cancer: Current Research and Future Prospects. Colorectal cancer (CRC) is a leading cause of death worldwide, despite progress made in detection and management through surgery, chemotherapy, radiotherapy, and immunotherapy. Novel therapeutic agents have improved survival in both the adjuvant and advanced disease settings, albeit with an increased risk of toxicity and cost. However, metastatic disease continues to have a poor long-term prognosis and significant challenges remain due to late stage diagnosis and treatment failure. Biomarkers are a key tool in early detection, prognostication, survival, and predicting treatment response. The past three decades have seen advances in genomics and molecular pathology of cancer biomarkers, allowing for greater individualization of therapy with a positive impact on survival outcomes. Clinically useful predictive biomarkers aid clinical decision making, such as the presence of KRAS gene mutations predicting benefit from epidermal growth factor receptor (EGFR) inhibiting antibodies. However, few biomarkers have been translated into clinical practice highlighting the need for further investigation. We review a range of protein, DNA and RNA-based biomarkers under investigation for diagnostic, predictive, and prognostic properties for CRC. In particular, long non-coding RNAs (lncRNA), have been investigated as biomarkers in a range of cancers including colorectal cancer. Specifically, we evaluate the potential role of lncRNA plasmacytoma variant translocation 1 (PVT1), an oncogene, as a diagnostic, prognostic, and therapeutic biomarker in colorectal cancer."	"Nut and peanut butter intake and the risk of colorectal cancer and its anatomical and molecular subtypes: the Netherlands Cohort Study. Nut intake has been associated with reduced total cancer-related mortality, but evidence for colorectal cancer (CRC) risk is inconclusive. We investigated the associations between nut and peanut butter intake and anatomical CRC subtypes. To account for molecular heterogeneity, associations between nut and peanut butter intake and colorectal tumors harboring APC, KRAS, or BRAF mutations, p53 overexpression, or microsatellite instability were examined in secondary analyses. In the NLCS (n=120852), lifestyle habits were measured with a questionnaire in 1986. After 20.3 years follow-up, 3567 CRC cases were included in case-cohort analyses. For the analyses of molecular CRC subtypes, 574 cases were included after 7.3 years follow-up. In categorical analyses, total nut intake was not significantly associated with CRC (HR(95%CI) 10+ g/day versus nonconsumers=0.94(0.78-1.15) in men; 0.96(0.75-1.22) in women). In restricted cubic spline analyses, significant nonlinear inverse associations with rectal cancer were observed for total nut, peanut, and peanut butter intake in women, and borderline significant nonlinear inverse associations for total nut and peanut intake in men. Regarding the molecular CRC subtypes, peanut butter intake was significantly associated with an increased risk of colorectal tumors that did not develop through the serrated neoplasia pathway in men (HR(95%CI) per 5 g/day increment=1.22(1.07-1.38)). Nut and peanut butter intake are nonlinearly inversely associated with rectal cancer risk in women. In men, nut intake is borderline significantly nonlinearly associated with a reduced rectal cancer risk. Peanut butter is associated with an increased risk of colorectal tumors that do not develop through the serrated neoplasia pathway in men."	"A prospective, single-arm, multicenter trial of neoadjuvant chemotherapy with mFOLFOX6 plus panitumumab without radiotherapy for locally advanced rectal cancer. The present study evaluated the safety and efficacy of neoadjuvant chemotherapy with modified 5-fluorouracil, leucovorin, and oxaliplatin (mFOLFOX6) plus panitumumab in clinical stage III rectal cancer with KRAS wild-type. We conducted a prospective multicenter phase II trial. KRAS wild-type clinical stage III rectal cancer patients were enrolled. Patients received 6 cycles of mFOLFOX6 with 6 mg/kg panitumumab as neoadjuvant chemotherapy. The primary outcome was the response rate (RR) defined by RECIST. Lateral lymph node dissection (LLDN) was performed when patients had a locally advanced tumor &lt; 9 cm from the anal margin. A total of 50 patients were enrolled. Twelve (24.0%) experienced grade 3-4 adverse events during neoadjuvant chemotherapy. The RR was 88.0% (complete response 2.0%, partial response 86.0%), which met the primary outcome. All patients underwent laparoscopic surgery and achieved R0 resection. Seven patients underwent resection of other adjacent organs, and 43 underwent LLND. Twelve patients (24.0%) experienced grade 3-4 postoperative complications, and 4 (8.0%) had pathological complete response (pCR). Thirteen patients (26.0%) had lymph node metastasis. Forty-five patients (90.0%) received postoperative adjuvant chemotherapy. The 3-year relapse-free survival (RFS) and overall survival (OS) rates were 79.0% and 93.7%, respectively. Neoadjuvant chemotherapy of mFOLFOX6 plus panitumumab without radiotherapy resulted in a low pCR rate but a high PR rate, low local recurrence rate, and good long-term outcome, suggesting that this treatment strategy may be a viable option for patients unable or unwilling to receive radiotherapy. The trial was registered with the UMIN Clinical Trials Registry, number 000006039."	"Molecular epidemiology and diagnostics of KRAS mutations in human cancer. RAS mutation is the most frequent oncogenic alteration in human cancers. KRAS is the most frequently mutated followed by NRAS. The emblematic KRAS mutant cancers are pancreatic, colorectal, lung adenocarcinomas and urogenital cancers. KRAS mutation frequencies are relatively stable worldwide in various cancer types with the one exception of lung adenocarcinoma. The frequencies of KRAS variant alleles appears cancer type specific, reflecting the various carcinogenic processes. In addition to point mutation KRAS, allelic imbalances are also frequent in human cancers leading to the predominance of a mutant allele. KRAS mutant cancers are characterized by typical, cancer-type-specific co-occurring mutations and distinct gene expression signatures. The heterogeneity of KRAS mutant primary cancers is significant, affecting the variant allele frequency, which could lead to unpredictable branching development in metastases. Selection of minute mutant subclones in the primary tumors or metastases during target therapies can also occur frequently in lung or colorectal cancers leading to acquired resistance. Ultrahigh sensitivity techniques are now routinely available for diagnostic purposes, but the proper determination of mutant allele frequency of KRAS in the primary or metastatic tissues may have larger clinical significance."	"Associations between nutritional factors and KRAS mutations in colorectal cancer: a systematic review. Between 30 and 50% of colon tumors have mutations in the Kirsten-ras (KRAS) gene, which have a large nutritional attributable risk. Despite its high frequency in colorectal cancer (CRC), data to support specific associations between KRAS mutations in CRC and diet are sparse. Here, we conducted a systematic review to summarize the current epidemiological evidence on the association between various dietary factors and KRAS mutations. PubMed, Science Direct, and Cochrane databases were searched for relevant studies published until December 31, 2019, using inclusion and exclusion criteria in accordance with PRISMA guidelines. We analyzed the studies to find associations between nutritional factors and CRC tumors with KRAS mutations in humans. We identified 28 relevant studies to include in this systematic review. In-depth analyses showed unclear associations between nutritional factors and KRAS mutations in CRC. Most epidemiological studies in the same nutrient or food often reported conflicting and/or inconclusive findings, whereas for some dietary factors, the results were homogeneous. Further research using a more robust prospective cohort study is needed to lend more credence to the epidemiological associations found between KRAS mutations and dietary factors."	"PKM2 Expression as Biomarker for Resistance to Oxaliplatin-Based Chemotherapy in Colorectal Cancer. The purpose of the current study is to investigate the prognostic significance of M2 isoform of pyruvate kinase (PKM2) mRNA expression loss in patients with operable colon cancer (CC). Two hundred sixty-two specimens from patients with stage-III or high-risk stage-II CC (group-A) treated with adjuvant fluoropyrimidine and oxaliplatin chemotherapy (FOLFOX), 118 specimens from metastatic CC patients (group-B) treated with FOLFOX, and 104 metastatic CC patients (group-C) treated with irinotecan-based chemotherapy were analyzed for PKM2, TS, ERCC1, MYC, and NEDD9 mRNA expression, as well as KRAS exon2 and BRAF<sup>V600E</sup> mutations. High PKM2 mRNA expression was correlated with left-sided located primaries (p = 0.001, group-A; p = 0.003, group-B; p = 0.001, group-C), high-grade tumors (p = 0.001, group-A; p = 0.017, group-B; p = 0.021, group-C), microsatellite-stable tumors (p &lt; 0.001, group-A), pericolic lymph nodes involvement (p = 0.018, group-A), and cMYC mRNA expression (p = 0.002, group-A; p = 0.008, group-B; p = 0.006, group-C). High PKM2 mRNA expression was correlated with significantly lower disease free survival (DFS) (p = 0.002) and overall survival (OS) (p = 0.001) in the group-A. Similarly, PKM2 mRNA expression was associated with significantly decreased progression free survival (PFS) (p = 0.001) and OS (p = 0.001) in group-B. On the contrary, no significant association for the PKM2 mRNA expression has been observed with either PFS (p = 0.612) or OS (p = 0.517) in group-C. To conclude, the current study provides evidence for the prediction of PKM2 mRNA expression oxaliplatin-based treatment resistance."	"RAS/MAPK Pathway Driver Alterations Are Significantly Associated with Oncogenic KIT Mutations in Germ-cell Tumors. To report the mutational profile and clinical outcomes of a cohort of patients with KIT-mutant germ-cell tumors (GCTs). Retrospective cohort study of all patients with KIT-mutant GCTs sequenced at Memorial Sloan Kettering between March 2014 and March 2020. Tumors were assessed with MSK-IMPACT, a DNA next-generation sequencing assay for targeted sequencing of up to 468 key cancer genes. Among 568 patients with GCTs, 8.1% had somatic KIT mutations, including 28 seminomas and 18 mixed/NSGCTs. Exons 17 (67.3%), 11 (22.4%), and 13 (6.1%) were most commonly affected. KIT-mutant cases were enriched for oncogenic RAS/MAPK pathway alterations compared to KIT-wildtype cases (34.8% vs. 19.2%, p = 0.02). Among KIT-mutant cases, concurrent mutations were noted in KRAS (21.7%), RRAS2 (11.8%), CBL (6.5%), NRAS (4.3%), MAP2K1 (2.2%), and RAC1 (2.2%). Mutations in KRAS, RRAS2, and NRAS were mutually exclusive. In all, 73.9% of patients developed metastases and 95.7% received chemotherapy. No patients received KIT-directed TKIs. Classification as a NSGCT rather than a SGCT was associated with an increased risk of death (HR 9.1, 95% CI 1.1-78.4, p = 0.04) while the presence of a concurrent RAS/MAPK pathway alteration was not (HR 0.8, 95% CI 0.1-4.3, p = 0.76). Mitogenic driver alterations can co-occur with activating KIT mutations, which may explain the lack of efficacy of TKIs in prior trials. Novel KIT-directed TKIs that target exon 17 mutations may benefit chemotherapy-refractory patients with KIT-mutant GCTs without RAS/MAPK alterations. Dual MEK/KIT inhibitor therapy in KIT-mutant GCTs with concurrent RAS/MAPK alterations could also be a plausible therapeutic strategy."	"A CRAF/glutathione-S-transferase P1 complex sustains autocrine growth of cancers with KRAS and BRAF mutations. The Ras/RAF/MEK/ERK pathway is an essential signaling cascade for various refractory cancers, such as those with mutant KRAS (mKRAS) and BRAF (mBRAF). However, there are unsolved ambiguities underlying mechanisms for this growth signaling thereby creating therapeutic complications. This study shows that a vital component of the pathway CRAF is directly impacted by an end product of the cascade, glutathione transferases (GST) P1 (GSTP1), driving a previously unrecognized autocrine cycle that sustains proliferation of mKRAS and mBRAF cancer cells, independent of oncogenic stimuli. The CRAF interaction with GSTP1 occurs at its N-terminal regulatory domain, CR1 motif, resulting in its stabilization, enhanced dimerization, and augmented catalytic activity. Consistent with the autocrine cycle scheme, silencing GSTP1 brought about significant suppression of proliferation of mKRAS and mBRAF cells in vitro and suppressed tumorigenesis of the xenografted mKRAS tumor in vivo. GSTP1 knockout mice showed significantly impaired carcinogenesis of mKRAS colon cancer. Consequently, hindering the autocrine loop by targeting CRAF/GSTP1 interactions should provide innovative therapeutic modalities for these cancers."	"Design, Synthesis, Molecular Docking and Anticancer Evaluation of Pyrazole Linked Pyrazoline Derivatives with Carbothioamide tail as EGFR Kinase Inhibitors. The epidermal growth factor receptor (known as EGFR) induces cell differentiation and proliferation upon activation through the binding of its ligands. Since EGFR is thought to be involved in the development of cancer, identification of new target inhibitor is the most viable approach which recently gained momentum as a potential anticancer therapy. To assess various pyrazole linked pyrazoline derivatives with carbothioamide for EGFR kinase inhibitory as well as anti-proliferative activity against human cancer cell lines viz. A549 (non-small cell lung tumour), MCF-7 (breast cancer cell line), SiHa (cancerous tissues of the cervix uteri) and HCT-116 (colon cancer cell line). In vitro EGFR kinase assay, In vitro MTT assay, Lactate dehydrogenase release, Nuclear staining (DAPI) and Flow cytometry cell analysis. Compounds 6h and 6j inhibit EGFR kinase at concentrations of 1.66 µM and 1.9 µM respectively. Furthermore, the compounds 6h and 6j showed the most potent anti-proliferative results against the A549 KRAS mutation cell line (IC50 = 9.3 &amp; 10.2 µM). Through DAPI staining and phase contrast microscopy, it was established that compounds 6h and 6j also induced apoptotic activity in A549 cells. This activity was further confirmed by FACS using Annexin-V-FITC &amp; propidium iodide (PI) labelling. Molecular docking studies performed on 6h and 6j suggested that the compounds can bind to the hinge region of ATP binding site of EGFR tyrosine kinase in a similar pose as that of the standard drug gefitinib. The potential anticancer activity of the compounds 6h and 6j was confirmed and needs further exploration in cancer cell lines of different tissue origin and signalling pathways as well as on animal model of cancer development."	"Glutaminase Inhibition on NSCLC Depends on Extracellular Alanine Exploitation. Non-small-cell lung cancer (NSCLC) cell lines vary in their sensitivity to glutaminase inhibitors, so it is important to identify the metabolic assets underling their efficacy in cancer cells. Even though specific genetic lesions such as in KRAS and LKB1 have been associated with reliance on glutamine for their metabolic needs, we found no distinction between glutaminase inhibitor CB-839 sensitivity and resistant phenotypes in NSCLC cells with or without these genetic alterations. We demonstrated the close relationship between environmental alanine uptake and catabolism. This response depended on the individual cell's ability to employ alanine aminotransferase (GPT2) to compensate the reduced glutamate availability. It may, therefore, be useful to determine GPT2 levels to predict which NSCLC patients would benefit most from glutaminase inhibitor treatment."	"Tuft Cells Inhibit Pancreatic Tumorigenesis in Mice by Producing Prostaglandin D2. Development of pancreatic ductal adenocarcinoma (PDA) involves acinar to ductal metaplasia and genesis of tuft cells. It has been a challenge to study these rare cells due to lack of animal models. We investigated the role of tuft cells in pancreatic tumorigenesis. We performed studies with LSL-Kras<sup>G12D/+</sup>; Ptf1a<sup>Cre/+</sup> mice (KC, develop pancreatic tumors), KC mice crossed with mice with pancreatic disruption of Pou2f3 (KPouC mice, do not develop Tuft cells), or mice with pancreatic disruption of the hematopoietic prostaglandin D synthase gene (Hpgds, KHC mice), and wild-type mice. Mice were allowed to age or were given caerulein to induce pancreatitis; pancreata were collected and analyzed by histology, immunohistochemistry, RNA sequencing, ultrastructural microscopy, and metabolic profiling. We performed laser-capture dissection and RNA sequencing analysis of pancreatic tissues from 26 patients with pancreatic intraepithelial neoplasias (PanINs), 19 patients with intraductal papillary mucinous neoplasms (IPMN), and 197 patients with PDA. Pancreata from KC mice had increased formation of tuft cells and higher levels of prostaglandin D2 than wild-type mice. Pancreas-specific deletion of POU2F3 in KC mice (KPouC mice) resulted in a loss of tuft cells and accelerated tumorigenesis. KPouC mice had increased fibrosis and activation of immune cells following administration of caerulein. Pancreata from KPouC and KHC mice had significantly lower levels of PGD2, compared with KC mice, and significantly increased numbers of PanINs and PDAs. KPouC and KHC mice had increased pancreatic injury, following administration of caerulein, significantly less normal tissue, more extracellular matrix deposition, and higher PanIN grade than KC mice. Human PanIN and IPMN had gene expression signatures associated with tuft cells and increased expression of Hpgds mRNA compared with PDA. In mice with KRAS-induced pancreatic tumorigenesis, loss of tuft cells accelerates tumorigenesis and increases the severity of caerulein-induced pancreatic injury, via decreased production of PGD2. These data are consistent with the hypothesis that tuft cells are a metaplasia-induced tumor attenuating cell type."	"Structure-based inhibitor design of mutant RAS proteins-a paradigm shift. As a member of small GTPase family, KRAS protein is a key physiological modulator of various cellular activities including proliferation. However, mutations of KRAS present in numerous cancer types, most frequently in pancreatic (&gt; 60%), colorectal (&gt; 40%), and lung cancers, drive oncogenic processes through overactivation of proliferation. The G12C mutation of KRAS protein is especially abundant in the case of these types of malignancies. Despite its key importance in human disease, KRAS was assumed to be non-druggable for a long time since the protein seemingly lacks potential drug-binding pockets except the nucleotide-binding site, which is difficult to be targeted due to the high affinity of KRAS for both GDP and GTP. Recently, a new approach broke the ice and provided evidence that upon covalent targeting of the G12C mutant KRAS, a highly dynamic pocket was revealed. This novel targeting is especially important since it serves with an inherent solution for drug selectivity. Based on these results, various structure-based drug design projects have been launched to develop selective KRAS mutant inhibitors. In addition to the covalent modification strategy mostly applicable for G12C mutation, different innovative solutions have been suggested for the other frequently occurring oncogenic G12 mutants. Here we summarize the latest advances of this field, provide perspectives for novel approaches, and highlight the special properties of KRAS, which might issue some new challenges."	"Mutational Portrait of Lung Adenocarcinoma in Brazilian Patients: Past, Present, and Future of Molecular Profiling in the Clinic. Objectives: Approximately 60% of lung adenocarcinomas (LAs) carry mutations that can guide treatment with tyrosine-kinase inhibitors (TKI) and other targeted therapies. Data on activating mutations in EGFR and other tyrosine-kinase receptor (TKR) genes in highly admixed populations, such as that of Brazil, are scarce. In this study, we comprehensively analyzed the actionable alteration profile of LA in Brazilian patients. Materials and Methods:EGFR driver mutation data were collected from a large Brazilian LA cohort covering an 8-year period of molecular testing in a single institution. Tests were performed using three distinct methods, and demographic and histopathological data were analyzed. For a subset of patients, driver mutations in KRAS, NRAS, and BRAF and gene fusions involving TKR genes (before TKI treatment) and EGFR T790M (after TKI treatment) were assessed. Results:EGFR mutations were detected in 25% of 1,316 LAs evaluated, with exon 19 deletions and exon 21 L858R TKI sensitizing mutations representing 72.5% of all mutations. Mutation rates were higher in women and non-smokers (p &lt; 0.001). Next-generation sequencing was very sensitive, with a lower rate of inconclusive results compared with Sanger sequencing and pyrosequencing. EGFR/RAS/BRAF hotspot gene panels were applied in 495 LA cases and detected oncogenic mutations in 51.3% of samples, most frequently in EGFR (22.4%) and KRAS (26.9%). In subgroups of 36 and 35 patients, gene fusions were detected in 11.1% of tumors and EGFR T790M resistance mutations were detected in 59% of plasma samples from patients previously treated with TKI, respectively. Conclusion: This report provides the first comprehensive actionable alteration portrait of LA in Brazil. The high rate of actionable alterations in EGFR and other driver genes in LA reinforces the need to incorporate TKI guided by molecular diagnostics into clinical routines for patients in both public and private healthcare systems."	"Clinical complete regression after local radiotherapy combined with chemotherapy for stage IV rectal cancer: A case report. Colorectal cancer is the fourth most common type of cancer worldwide with about 0.8 million new cases annually. Improving patient survival remains a challenge for clinicians. Observation waiting method provides improved quality of life compared with direct surgery. This case report suggested that colorectal cancer patients could choose active observation waiting method for treatment. A 59-year-old male patient, with rectal bleeding and an Eastern Cooperative Oncology Group (ECOG) performance status score of 0, was admitted to the hospital due to increased fecal blood volume. The electronic colonoscopy revealed multiple polyps in colon and rectum, whereas the pathological biopsy indicated poorly differentiated rectal adenocarcinoma. The clinical stage was defined as T3N2M1a according to the TNM classification of the American Joint Committee on Cancer (AJCC) staging manual (version 8). In addition, positron emission tomography/computed tomography (PET/CT) examination showed non-regional lymph node metastasis (subclavian). Subsequently, the expression of PD-L1 (-), NRAS (-), KRAS (-), HRAS (-), BRAF (-) (-, negative) and the microsatellite stability (MSS) were detected in the rectal cancer lesion using molecular pathological examination. Patients with primary rectal cancer and pelvic lymph node metastasis were treated with three-dimensional conformal radiotherapy (3D-CRT; dose, 60 Gy/30 Fr) and XELOX chemotherapy (200 mg oxaliplatin at day 1 plus 1.5 g capecitabine twice a day from day 1-14 for a total of 5 cycles). PET/CT scan revealed that the metabolism levels of the lesion returned to normal. In addition, the routine re-examination showed progressive improvement of tumor lesions. Until recently, the carcinoembryonic antigen (CEA) level of the male patient has been within normal range. The observation waiting method rather than the direct sequential surgical resection of the primary lesion in patients with advanced rectal cancer who achieved complete clinical remission (CCR) may provide a novel treatment method for rectal cancer. Thus, overall survival (OS) and quality of survival (QoS) differences between the two strategies need to be further verified by multicenter clinical trials."	"Clinicopathological and molecular features of colorectal cancer with synchronous adenoma. To investigate the clinicopathological and molecular features of colorectal cancer (CRC) with synchronous adenoma and to describe features of synchronous adenomas in CRC patients. Single-centre retrospective cohort of 180 patients were included. The clinicopathological and endoscopic data were collected. The expression mismatch repair (MMR) proteins were detected by immunohistochemistry. The determination of microsatellite instability (MSI) was performed by multiple fluorescence PCR, and the mutations of genes were detected by real-time PCR. Among all cases, 49 were diagnosed as CRC with synchronous adenoma, and 131 were diagnosed as solitary CRC. Some of the differences between the groups are: higher incidence was found in male (71.4 vs. 52.6%, p = .023) and in patients with habit drinking (34.7 vs. 14.5%, p = .030) and with other neoplastic diseases (42.7 vs. 26%, p = .028). Less tumors in the synchronous group were diagnosed as stage III and IV than in the solitary group (28.6 vs. 45%, p = .045). One and four mutant subtypes of KRAS gene mutations were detected insynchronous group and solitary group respectively.The prevalence of BRAF mutations in solitary group was higher than that in the synchronous group (7.4 vs. 0%, p = .045). A total of 123 adenomas were found in synchronous group and they tend to be smaller than 10 mm (74%). Gender, a habit of drinking and other neoplastic diseases are risk factors for the development of a synchronous adenoma. With a low rate of BRAF mutations, the responses to monoclonal antibody and prognosis of patients with synchronous adenomas may be better than that of solitary CRC."	"The decisive role of molecular pathology in presumed somatic metastases of type II testicular germ cell tumors: report of 2 cases. Molecular diagnostics can be decisive in the differential diagnosis between a somatic metastasis of type II testicular germ cell tumor (TGCT) or a second primary carcinoma. This is in line with recent recommendations from the International Society of Urological Pathology, based on an international survey which showed that molecular testing is currently only performed by a minority of urological pathologists. This case report illustrates the necessity of molecular testing in two patients with a history of type II TGCT and a metastatic (retro) peritoneal carcinoma years later. The genetic hallmark of type II TGCT, chromosome 12p gain, was studied by fluorescence in situ hybridization and whole genome methylation profiling in case 1, and by single nucleotide polymorphism (SNP)-array in case 2. Next generation sequencing (NGS) was used to further explore clonality between the primary TGCT and peritoneal metastasis in case 2. In case 1, chromosome 12p gain was found in the primary type II TGCT and in the acinar cell carcinoma of the metastatic malignancy. In case 2, SNP array showed 12p gain in the epithelial component of the primary teratomatous TGCT but not in the peritoneal adenocarcinoma. Furthermore, NGS showed no mutations in the primary teratomatous TGCT but a KRAS and GNAS mutation in the peritoneal adenocarcinoma, suggestive of an appendicular origin. Without the molecular data, both cases would have been regarded as a metastatic TGCT with development of somatic-type malignancy, which appeared a wrong diagnosis for case 2. These cases demonstrate the importance of molecular methods as an adjunct in today's pathology practice."	"KRAS: From undruggable to a druggable Cancer Target. RAS is the most frequently mutated oncogene in human cancers, with mutations in about 30% of all cancers. RAS exists in three different isoforms (K-RAS, H-RAS and N-RAS) with high sequence homology. K-RAS is the most commonly mutated RAS isoform. The Ras protein is a membrane bound protein with inherent GTPase activity and is activated by numerous extracellular stimuli, cycling between an inactive (GDP-bound) and active (GTP-bound) form. When bound to GTP, it is switched &quot;on&quot; and activates intracellular signaling pathways, critical for cell proliferation and angiogenesis. Mutated RAS is constitutively activated and persistently turned &quot;on&quot; thereby enhancing downstream signaling and leading to tumorigenesis. Various attempts to inhibit Kras in the past were unsuccessful. Recently, several small molecules (AMG510, MRTX849, JNJ-74699157, and LY3499446) have been developed to specifically target K-RAS G12C. Additionally, various other approaches including, SHP2, SOS1 and eIF4 inhibition, have been utilized to abrogate tumor growth in K-RAS mutant cells, resulting in a renewed interest in this pathway. In this review article, we provide an overview on the role of K-RAS in tumorigenesis, past approaches to inhibiting Kras, and current and future prospects for targeting Kras."	"Copper bioavailability is a KRAS-specific vulnerability in colorectal cancer. Despite its importance in human cancers, including colorectal cancers (CRC), oncogenic KRAS has been extremely challenging to target therapeutically. To identify potential vulnerabilities in KRAS-mutated CRC, we characterize the impact of oncogenic KRAS on the cell surface of intestinal epithelial cells. Here we show that oncogenic KRAS alters the expression of a myriad of cell-surface proteins implicated in diverse biological functions, and identify many potential surface-accessible therapeutic targets. Cell surface-based loss-of-function screens reveal that ATP7A, a copper-exporter upregulated by mutant KRAS, is essential for neoplastic growth. ATP7A is upregulated at the surface of KRAS-mutated CRC, and protects cells from excess copper-ion toxicity. We find that KRAS-mutated cells acquire copper via a non-canonical mechanism involving macropinocytosis, which appears to be required to support their growth. Together, these results indicate that copper bioavailability is a KRAS-selective vulnerability that could be exploited for the treatment of KRAS-mutated neoplasms."	"The Genomic Landscape of SMARCA4 Alterations and Associations with Outcomes in Patients with Lung Cancer. SMARCA4 mutations are among the most common recurrent alterations in NSCLC, but the relationship to other genomic abnormalities and clinical impact has not been established. To characterize SMARCA4 alterations in NSCLC, we analyzed the genomic, protein expression, and clinical outcome data of patients with SMARCA4 alterations treated at Memorial Sloan Kettering. In 4813 tumors from patients with NSCLC, we identified 8% (n= 407) patients with SMARCA4-mutant lung cancer. We describe two categories of SMARCA4 mutations: Class 1 mutations (truncating mutations, fusions and homozygous deletion) and Class 2 mutations (missense mutations). Protein expression loss was associated with Class 1 mutation (81% vs 0%, (P &lt; 0.001)). Both classes of mutation co-occured more frequently with KRAS, STK11, and KEAP1 mutations compared to SMARCA4 wildtype tumors (P &lt; 0.001). In patients with metastatic NSCLC, SMARCA4 alterations were associated with shorter overall survival, with Class 1 alterations associated with shortest survival times (P &lt; 0.001). Conversely, we found that treatment with immune checkpoint inhibitors was associated with improved outcomes in patients with SMARCA4-mutant tumors (P = 0.01), with Class 1 mutations having the best response to ICIs (p = 0.027). SMARCA4 alterations can be divided into two clinically relevant genomic classes associated with differential protein expression as well as distinct prognostic and treatment implications. Both classes co-occur with KEAP1, STK11, and KRAS mutations, but individually represent independent predictors of poor prognosis. Despite association with poor outcomes, SMARCA4-mutant lung cancers may be more sensitive to immunotherapy."	"Acinar transformed ductal cells exhibit differential mucin expression in a tamoxifen-induced pancreatic ductal adenocarcinoma mouse model. Pancreatic cancer (PC) is acquired postnatally; to mimic this scenario, we developed an inducible KC (iKC) mouse model (Kras<sup>G12D</sup>;Ptf1a-CreER<sup>TM</sup>), in which Kras is activated at postnatally at week 16 upon tamoxifen administration. Upon TAM treatment, iKC mice develop PanIN lesions and PC with metastasis at 4 and 40<sup>th</sup> week, respectively, and exhibited acinar-to-ductal metaplasia (ADM) and transdifferentiation. Kras activation up-regulated the transcriptional factors Ncoa3, p-cJun, and FoxM, which in turn upregulated expression of transmembrane mucins (Muc1, Muc4, and Muc16) and secretory mucin (Muc5Ac). Interestingly, knock-down of Kras<sup>G12D</sup> in multiple PC cell lines resulted in down-regulation of MUC1, MUC4, MUC5AC, and MUC16. In addition, iKC mice exhibited ADM and transdifferentiation. Our results show the iKC mouse more closely mimics human PC development and can be used to investigate studies related to PDAC biomarkers, early onset of PDAC, and ADM. iKC model can also be used for pre-clinical strategies targeting mucin axis alone/in combination with neo-adjuvant, immunotherapeutic approaches and to monitor chemotherapy response."	"Study of Ras Mutations' Prognostic Value in Metastatic Colorectal Cancer: STORIA Analysis. Colorectal cancer (CRC) is the second most common cause of cancer-specific death in both sexes in Western countries. KRAS mutations occur in about 50% of metastatic CRCs (mCRCs). The prognostic value of specific KRAS mutations still remains unexplored and unclear. Two hundred and forty KRAS wild-type and 206 KRAS/NRAS mutant consecutive unresectable mCRC patients with PS Eastern Cooperative Oncology Group (ECOG) 0 or 1, aged &lt; 80 years, and with a life expectancy &gt;3 months entered into this study. DNA was extracted from paraffin-embedded formalin-fixed tumour tissues, and it was sequenced with the Oncomine Solid Tumour DNA kit (Thermo Fisher Scientific, Waltham, MA, USA). Data were analysed using the Torrent Suite Software v5.0 (Thermo Fisher Scientific). The primary outcome was the analysis of the prognostic role of different KRAS mutations in terms of overall survival (OS). There were no significant differences among the most prevalent mutations (p.G12D, p.G12V, p.G13D, p.G12A, p.G12C, and p.G12S) in terms of age (&lt;65 vs. ≥65 years), gender (male vs. female), grading (G1/G2 vs. G3), side of primary tumour (left vs. right), pT, and pN. At the median follow-up of 25.6 months, there were 77 deaths in KRAS-mutated patients and 94 in wild-type patients. Three homogeneous prognostic groups were identified: wild-type patients (group A, median survival: 27.5 months), p.G13D/p.G12A/p.G12V/p.G12D mutants (group B, median survival: 17.3 months), and p.G12C/p.G12S mutants (group C, median survival: 5.0 months, p &lt; 0.0001 according to Log Rank test). Upon multivariate analysis, metastatic involvement and p.G12C/p.G12S KRAS mutation group C (vs. other mutations) emerged as independent prognostic variables for survival. We show that mutant KRAS is a negative prognostic factor and that p.G12C/p.G12S variants present the worst clinical courses. This information suggests a clear difference among KRAS mutations, and it will be useful to test potentiated and/or innovative therapeutic strategies in p.G12C/p.G12S metastatic CRC patients."	"Identification of a Clinical Cutoff Value for Multiplex KRAS<sup>G12/G13</sup> Mutation Detection in Colorectal Adenocarcinoma Patients Using Digital Droplet PCR, and Comparison with Sanger Sequencing and PNA Clamping Assay. KRAS (Kirsten rat sarcoma 2 viral oncogene homolog) is a major predictive marker for anti-epidermal growth factor receptor treatment, and determination of KRAS mutational status is crucial for successful management of colorectal adenocarcinoma. More standardized and accurate methods for testing KRAS mutation, which is vital for therapeutic decision-making, are required. Digital droplet polymerase chain reaction (ddPCR) is an advanced digital PCR technology developed to provide absolute quantitation of target DNA. In this study, we validated the clinical performance of ddPCR in determination of KRAS mutational status, and compared ddPCR results with those obtained by Sanger sequencing and peptide nucleic acid-clamping. Of 81 colorectal adenocarcinoma tissue samples, three repeated sets of KRAS<sup>G12/G13</sup> mutation were measured by ddPCR, yielding high consistency (ICC = 0.956). Receiver operating characteristic (ROC) curves were constructed to determine KRAS<sup>G12/G13</sup> mutational status based on mutant allele frequency generated by ddPCR. Using the best threshold cutoff (mutant allele frequency of 7.9%), ddPCR had superior diagnostic sensitivity (100%) and specificity (100%) relative to the two other techniques. Thus, ddPCR is effective for detecting the KRAS<sup>G12/G13</sup> mutation in colorectal adenocarcinoma tissue samples. By allowing definition of the optimal cutoff, ddPCR represents a potentially useful diagnostic tool that could improve diagnostic sensitivity and specificity."	"Genomic Alterations and Their Implications on Survival in Nonmetastatic Colorectal Cancer: Status Quo and Future Perspectives. The selection of treatment according to genomic alterations is a standard approach in metastatic colorectal cancer but is only starting to have an impact in the earlier stages of the disease. The status if genes like KRAS, BRAF, and MMR has substantial survival implications, and concerted research efforts have revolutionized treatment towards precision oncology. In contrast, a genomic-based approach has not changed the adjuvant setting after curative tumor-resection in the daily routine so far. This review focuses on the current knowledge regarding prognostic and predictive genomic biomarkers in patients with locally advanced nonmetastasized colorectal cancer. Furthermore, we provide an outlook on future challenges for a personalized adjuvant treatment approach in patients with colorectal cancer."	"Modulated Electro-Hyperthermia Resolves Radioresistance of Panc1 Pancreas Adenocarcinoma and Promotes DNA Damage and Apoptosis In Vitro. The poor outcome of pancreas ductal adenocarcinomas (PDAC) is frequently linked to therapy resistance. Modulated electro-hyperthermia (mEHT) generated by 13.56 MHz capacitive radiofrequency can induce direct tumor damage and promote chemo- and radiotherapy. Here, we tested the effect of mEHT either alone or in combination with radiotherapy using an in vivo model of Panc1, a KRAS and TP53 mutant, radioresistant PDAC cell line. A single mEHT shot of 60 min induced ~50% loss of viable cells and morphological signs of apoptosis including chromatin condensation, nuclear shrinkage and apoptotic bodies. Most mEHT treatment related effects exceeded those of radiotherapy, and these were further amplified after combining the two modalities. Treatment related apoptosis was confirmed by a significantly elevated number of annexin V single-positive and cleaved/activated caspase-3 positive tumor cells, as well as sub-G1-phase tumor cell fractions. mEHT and mEHT+radioterapy caused the moderate accumulation of γH2AX positive nuclear foci, indicating DNA double-strand breaks and upregulation of the cyclin dependent kinase inhibitor p21<sup>waf1</sup> besides the downregulation of Akt signaling. A clonogenic assay revealed that both mono- and combined treatments affected the tumor progenitor/stem cell populations too. In conclusion, mEHT treatment can contribute to tumor growth inhibition and apoptosis induction and resolve radioresistance of Panc1 PDAC cells."	"Impact of Tumor Genomic Mutations on Thrombotic Risk in Cancer Patients. Venous thromboembolism (VTE) is common in patients with cancer and is an important contributor to morbidity and mortality in these patients. Early thromboprophylaxis initiated only in those cancer patients at highest risk for VTE would be optimal. Risk stratification scores incorporating tumor location, laboratory values and patient characteristics have attempted to identify those patients most likely to benefit from thromboprophylaxis but even well-validated scores are not able to reliably distinguish the highest-risk patients. Recognizing that tumor genetics affect the biology and behavior of malignancies, recent studies have explored the impact of specific molecular aberrations on the rate of VTE in cancer patients. The presence of certain molecular aberrations in a variety of different cancers, including lung, colon, brain and hematologic tumors, have been associated with an increased risk of VTE and arterial thrombotic events. This review examines the findings of these studies and discusses the implications of these findings on decisions relating to thromboprophylaxis use in the clinical setting. Ultimately, the integration of tumor molecular genomic information into clinical VTE risk stratification scores in cancer patients may prove to be a major advancement in the prevention of cancer-associated thrombosis."	"Time-saving method for directly amplifying and capturing a minimal amount of pancreatic tumor-derived mutations from fine-needle aspirates using digital PCR. It is challenging to secure a cytopathologic diagnosis using minute amounts of tumor fluids and tissue fragments. Hence, we developed a rapid, accurate, low-cost method for detecting tumor cell-derived DNA from limited amounts of specimens and samples with a low tumor cellularity, to detect KRAS mutations in pancreatic ductal carcinomas (PDA) using digital PCR (dPCR). The core invention is based on the suspension of tumor samples in pure water, which causes an osmotic burst; the crude suspension could be directly subjected to emulsion PCR in the platform. We examined the feasibility of this process using needle aspirates from surgically resected pancreatic tumor specimens (n = 12). We successfully amplified and detected mutant KRAS in 11 of 12 tumor samples harboring the mutation; the positive mutation frequency was as low as 0.8%. We used residual specimens from fine-needle aspiration/biopsy and needle flush processes (n = 10) for method validation. In 9 of 10 oncogenic KRAS pancreatic tumor samples, the &quot;water-burst&quot; method resulted in a positive mutation call. We describe a dPCR-based, super-sensitive screening protocol for determining KRAS mutation availability using tiny needle aspirates from PDAs processed using simple steps. This method might enable pathologists to secure a more accurate, minimally invasive diagnosis using minute tissue fragments."	"Analysis of multigene detection in patients with advanced lung adenocarcinoma using cytological specimens. To investigate the mutation status and clinical characteristics of multigene detection in advanced lung adenocarcinoma using cytological specimens. 137 advanced lung adenocarcinoma patients with 10 driver genes detection in the Fourth Hospital Hebei Medical University from January 2019 to November 2019 was analysized. 137 cytological specimens including fine-needle aspiration specimens and maligant serous cavity effusion (pleural effusion, peritoneal and pericardial effusion). Ten driver mutations of EGFR, ALK, ROS1, BRAF, KRAS, NRAS, HER2, RET, PIK3CA and MET were detected by the amplification refractory mutation system (ARMS). Meanwhile, 90 of 137 patients were detected with biopsies for parallel gene detection. 78.10 % (107/137) of patients with advanced lung adenocarcinoma harbored at least one of 10 driver mutations. The three main mutations were EGFR (69.16 %, 74/137), ALK (6.57 %, 9/137)and ROS1 (3.65 %, 5/137) mutations. Besides, we found 6 cases including two concomitant mutations: EGFR Exon19 del/HER2 (1/137), EGFR Exon21 L858R/PIK3CA (2/137), EGFR Exon21 L858R/RET (1/137), and ALK/KRAS (2/137). Among 137 patients, women aged 64 or older were more likely to have the mutations (P &lt; 0.05). Female patients (P = 0.003) older or equal to 64 years (P = 0.015) with non-smoking habbit (P = 0.027) were more detected with EGFR mutations, while ALK was more detectable in patients yonger than 64 years. Parallel analysis showed that rates of single EGFR, ALK, ROS1, RET, KRAS, NRAS, HER2, MET mutations and concomitant different mutations were not significantly different between cytological specimens and matched histological specimens. In the study, cytological specimens and biopsy samples have a very high coincidence rate of gene detection. EGFR, ALK and ROS1 mutations were the main driver mutations in patients with advanced lung adenocarcinoma.We speculate that EGFR and ALK are more prone to concomitant mutations respectively and the treatment of advanced lung adenocarcinoma patients with concomitant mutations deserves further study. The rate of KRAS, NRAS, BRAF, PIK3CA, RET and MET exon14 skipping mutation were low but may had a significant impact on the targeted therapy of patients with advanced lung adenocarcinoma."	"AMPK activation overcomes anti-EGFR antibody resistance induced by KRAS mutation in colorectal cancer. Colorectal cancer (CRC) is associated with resistance to anti-epidermal growth factor receptor (EGFR) antibodies (both acquired and intrinsic), owing to the amplification or mutation of the KRAS oncogene. However, the mechanism underlying this resistance is incompletely understood. DLD1 cells with WT (+/-) or KRAS G13D mutant allele were treated with different concentrations of Cetuximab (Cet) or panitumumab (Pab) to study the mechanism underlying the KRAS mutation-induced resistance to anti-EGFR antibodies. The function of AMPK in KRAS mutation-induced resistance to anti-EGFR antibodies in CRC cells, and the regulatory role of Bcl-2 family proteins in DLD1 cells with WT or mutated KRAS upon AMPK activation were investigated. In addition, xenograft tumor models with the nude mouse using DLD1 cells with WT or mutated KRAS were established to examine the effects of AMPK activation on KRAS mutation-mediated anti-EGFR antibody resistance. Higher levels of AMPK activity in CRC cells with wild-type KRAS treated with anti-EGFR antibody resulted in apoptosis induction. In contrast, CRC cells with mutated KRAS showed lower AMP-activated protein kinase (AMPK) activity and decreased sensitivity to the inhibitory effect of anti-EGFR antibody. CRC cells with mutated KRAS showed high levels of glycolysis and produced an excessive amount of ATP, which suppressed AMPK activation. The knockdown of AMPK expression in CRC cells with WT KRAS produced similar effects to those observed in cells with mutated KRAS and decreased their sensitivity to cetuximab. On the contrary, the activation of AMPK by metformin (Met) or 5-aminoimidazole-4-carboxamide ribonucleotide (AICAR) could overcome the KRAS-induced resistance to the anti-EGFR antibody in vivo and in vitro. The activation of AMPK resulted in the inhibition of myeloid cell leukemia 1 (Mcl-1) translation through the suppression of the mammalian target of rapamycin (mTOR) pathway. The results established herein indicate that targeting AMPK is a potentially promising and effective CRC treatment strategy. Video abstract."	"Comprehensive Genomic Landscape and Precision Therapeutic Approach in Biliary Tract Cancers. Biliary tract cancers have dismal prognoses even when cytotoxic chemotherapy is administered. There is an unmet need to develop precision treatment approaches using comprehensive genomic profiling. A total of 121 patients with biliary tract cancers were analyzed for circulating-tumor DNA (ctDNA) and/or tissue-based tumor DNA (tissue-DNA) using clinical-grade next-generation sequencing: 71 patients (59%) had ctDNA; 90 (74%), tissue-DNA; and 40 (33%), both. Efficacy of targeted therapeutic approaches was assessed based upon ctDNA and tissue-DNA. At least one characterized alteration was detected in 76% of patients (54/71) for ctDNA [median, 2 (range, 0-9)] and 100% (90/90) for tissue-DNA [median, 4 (range, 1-9)]. Most common alterations occurred in TP53 (38%), KRAS (28%), and PIK3CA (14%) for ctDNA versus TP53 (44%), CDKN2A/B (33%), and KRAS (29%) for tissue-DNA. In 40 patients who had both ctDNA and tissue-DNA sequencing, overall concordance was higher between ctDNA and metastatic site tissue-DNA than between ctDNA and primary tumor DNA (78% versus 65% for TP53, 100% versus 74% for KRAS, and 100% versus 87% for PIK3CA. [But not statistical significance]). Among 80 patients who received systemic treatment, the molecularly matched therapeutic regimens based on genomic profiling showed a significantly longer progression-free survival (hazard ratio [95%confidence interval], 0.60 [0.37-0.99]. P=0.047 [multivariate]) and higher disease control rate (61% versus 35%, P=0.04) than unmatched regimens. Evaluation of ctDNA and tissue-DNA is feasible in biliary tract cancers. This article is protected by copyright. All rights reserved."	"Systems analysis of protein signatures predicting Cetuximab responses in KRAS, NRAS, BRAF and PIK3CA wild-type patient-derived xenografts models of metastatic colorectal cancer. Antibodies targeting the human epidermal growth factor receptor (EGFR) are used for the treatment of RAS wild-type metastatic colorectal cancer. A significant proportion of patients remains unresponsive to this therapy. Here, we performed a reverse phase protein array-based (phospho)protein analysis of 63 KRAS, NRAS, BRAF and PIK3CA wild-type metastatic CRC tumours. Responses of tumours to anti-EGFR therapy with cetuximab were recorded in patient-derived xenograft (PDX) models. Unsupervised hierarchical clustering of pre-treatment tumour tissue identified three clusters, of which cluster C3 was exclusively composed of responders. Clusters C1 and C2 showed mixed responses. None of the three protein clusters showed a significant correlation with transcriptome-based subtypes. Analysis of protein signatures across all PDXs identified 14 markers that discriminated cetuximab-sensitive and -resistant tumours: PDK1 (S241), Caspase-8, Shc (Y317), Stat3 (Y705), p27, GSK-3β (S9), HER3, PKC-α (S657), EGFR (Y1068), Akt (S473), S6 Ribosomal Protein (S240/244), HER3 (Y1289), NF-κB-p65 (S536) and Gab-1 (Y627). Least absolute shrinkage and selection operator and binominal logistic regression analysis delivered refined protein signatures for predicting response to cetuximab. (Phospo-)protein analysis of matched pre- and post-treated models furthermore showed significant reduction of Gab-1 (Y627) and GSK-3β (S9) exclusively in responding models, suggesting novel targets for treatment. This article is protected by copyright. All rights reserved."	"Applied precision medicine in metastatic pancreatic ductal adenocarcinoma. Metastatic pancreatic ductal adenocarcinoma (mPDAC) bears a dismal prognosis due to the limited activity of systemic chemotherapy. In our platform for precision medicine, we aim to offer molecular-guided treatments to patients without further standard therapy options. In this single center, real-world retrospective analysis of our platform, we describe the molecular-based therapy approaches used in all 50 patients diagnosed with therapy-refractory mPDAC. A molecular portrait of the tumor specimens was created by next-generation sequencing, immunohistochemistry (IHC), microsatellite instability (MSI) testing, and fluorescence in situ hybridization. In total, we detected 123 mutations in 50 patients. The five most frequent mutations were KRAS (n = 40; 80%), TP53 (n = 29; 58%), CDKN2A (n = 8; 16%), SMAD4 (n = 4; 8%), and NOTCH1 (n = 4; 8%), which together accounted for 40.2% of all mutations. Two patients had gene fusions, namely, TBL1XR1-PIK3CA and EIF3E-RSPO2. IHC detected expression of EGFR, phosphorylated mTOR, and PTEN in 36 (72%), 33 (66%), and 17 patients (34%), respectively. For 14 (28%) of the 50 patients, a targeted therapy was suggested based on the identified molecular targets. The recommended treatments included the mTOR inhibitor everolimus (n = 3), pembrolizumab (n = 3), palbociclib (n = 2), nintedanib (n = 2), and cetuximab, crizotinib, tamoxifen, and the combination of lapatinib and trastuzumab, in one patient each.Finally, five patients received the recommended therapy. Four patients died due to disease progression before radiological assessment. One patient was treated with nintedanib and achieved stable disease for 6 months. Based on our observations, precision medicine approaches are feasible and implementable in clinical routine and may provide molecular-based therapy recommendations for mPDAC."	"Tumor-related mutations in cell-free DNA in pre-operative plasma as a prognostic indicator of recurrence in endometrial cancer. Circulating tumor DNA (ctDNA) has potential as a basis for understanding the molecular features of a tumor non-invasively and for use as a diagnostic, prognostic, and disease-monitoring marker. The aim of this study was to evaluate the clinical roles of ctDNA in patients with endometrial cancer. Since PIK3CA and KRAS are among the most common mutated genes in endometrial cancer, somatic mutations of these genes were investigated in tumor specimens and plasma collected before surgery, using droplet digital polymerase chain reaction (ddPCR). ctDNA was defined as positive when the corresponding mutation between somatic and plasma was also detected in plasma cell-free DNA (cfDNA). Relationships of the presence of ctDNA with clinicopathological features were examined. Somatic PIK3CA and/or KRAS mutations were found in 68 (34%) of 199 patients with endometrial cancer. Ten (14.7%) of 68 patients had similar mutations in cfDNA. ctDNA detected in pre-operative plasma was correlated with the International Federation of Gynecology and Obstetrics (FIGO) stage (p=0.008), histology (p=0.028), and lymphovascular space invasion (p=0.002), and with shorter recurrence-free and overall survival (p=0.004 and p=0.010, respectively, by log-rank test). Tumor-related ctDNA detected in plasma before surgery was associated with poorer oncologic outcome on univariate analysis in patients with endometrial cancer harboring PIK3CA or KRAS mutations."	"Depletion of Macrophages Improves Therapeutic Response to Gemcitabine in Murine Pancreas Cancer. The tumor microenvironment (TME) is composed of fibro-inflammatory cells and extracellular matrix (ECM) components. However, the exact contribution of the various TME compartments towards therapeutic response is unknown. Here, we aim to dissect the specific contribution of tumor-associated macrophages (TAMs) towards drug delivery and response in pancreatic ductal adenocarcinoma (PDAC). The effect of gemcitabine was assessed in human and murine macrophages, human pancreatic stellate cells (hPSCs), and tumor cells (L3.6pl, BxPC3 and KPC) in vitro. The drug metabolism of gemcitabine was analyzed by liquid chromatography-tandem mass spectrometry (LC-MS/MS). Preclinical studies were conducted using Kras<sup>G12D</sup>;p48-Cre and Kras<sup>G12D</sup>;p53<sup>172H</sup>;Pdx-Cre mice to investigate gemcitabine delivery at different stages of tumor progression and upon pharmacological TAM depletion. Gemcitabine accumulation was significantly increased in murine PDAC tissue compared to pancreatic intraepithelial neoplasia (PanIN) lesions and healthy control pancreas tissue. In vitro, macrophages accumulated and rapidly metabolized gemcitabine resulting in a significant drug scavenging effect for gemcitabine. Finally, pharmacological TAM depletion enhanced therapeutic response to gemcitabine in tumor-bearing KPC mice. Macrophages rapidly metabolize gemcitabine in vitro, and pharmacological depletion improves the therapeutic response to gemcitabine in vivo. Our study supports the notion that TAMs might be a promising therapeutic target in PDAC."	"Structural Insights into the SPRED1-Neurofibromin-KRAS Complex and Disruption of SPRED1-Neurofibromin Interaction by Oncogenic EGFR. Sprouty-related, EVH1 domain-containing (SPRED) proteins negatively regulate RAS/mitogen-activated protein kinase (MAPK) signaling following growth factor stimulation. This inhibition of RAS is thought to occur primarily through SPRED1 binding and recruitment of neurofibromin, a RasGAP, to the plasma membrane. Here, we report the structure of neurofibromin (GTPase-activating protein [GAP]-related domain) complexed with SPRED1 (EVH1 domain) and KRAS. The structure provides insight into how the membrane targeting of neurofibromin by SPRED1 allows simultaneous interaction with activated KRAS. SPRED1 and NF1 loss-of-function mutations occur across multiple cancer types and developmental diseases. Analysis of the neurofibromin-SPRED1 interface provides a rationale for mutations observed in Legius syndrome and suggests why SPRED1 can bind to neurofibromin but no other RasGAPs. We show that oncogenic EGFR(L858R) signaling leads to the phosphorylation of SPRED1 on serine 105, disrupting the SPRED1-neurofibromin complex. The structural, biochemical, and biological results provide new mechanistic insights about how SPRED1 interacts with neurofibromin and regulates active KRAS levels in normal and pathologic conditions."	"Role of lncRNA Morrbid in PTPN11(Shp2)E76K-driven juvenile myelomonocytic leukemia. Mutations in PTPN11, which encodes the protein tyrosine phosphatase SHP2, contribute to ∼35% of cases of juvenile myelomonocytic leukemia (JMML). A common clinical picture in children with JMML is that it presents as a constitutive hyperinflammatory syndrome, partially reminiscent of chronic myelomonocytic leukemia in adults. Thus, a component of JMML is associated with a hyperinflammatory state and abundant innate immune cells such as neutrophils and monocytes. Recently, we showed that the evolutionarily conserved mouse lncRNA Morrbid is specifically expressed in myeloid cells and uniquely represses the expression of the proapoptotic gene Bim to regulate the lifespan of myeloid cells. However, its role in JMML has not been investigated. In this study, we characterized the role of Morrbid and its target Bim, which are significantly dysregulated in Shp2E76K/+-bearing myeloid cells, in driving JMML. Loss of Morrbid in a mouse model of JMML driven by the Shp2E76K/+ mutation resulted in a significant correction of myeloid and erythroid cell abnormalities associated with JMML, including overall survival. Consistently, patients with JMML who had PTPN11, KRAS, and NRAS mutations and high expression of MORRBID manifested poor overall survival. Our results suggest that Morrbid contributes to JMML pathogenesis."	"Molecular characterization of organoids derived from pancreatic intraductal papillary mucinous neoplasms. Intraductal papillary mucinous neoplasms (IPMNs) are a commonly identified non-invasive cyst-forming pancreatic neoplasms with the potential to progress into invasive pancreatic adenocarcinoma. There are few in vitro models with which to study the biology of IPMNs and their progression to invasive carcinoma. Therefore, we generated a living biobank of organoids from 7 normal pancreatic ducts and 10 IPMNs. We characterized 8 IPMN organoid samples using whole genome sequencing and characterized 5 IPMN organoids and 7 normal pancreatic duct organoids using transcriptome sequencing. We identified an average of 11 344 somatic mutations in the genomes of organoids derived from IPMNs, with one sample harboring 61 537 somatic mutations enriched for T- &gt; C transitions and T- &gt; A transversions. Recurrent coding somatic mutations were identified in 15 genes, including KRAS, GNAS, RNF43, PHF3, and RBM10. The most frequently mutated genes were KRAS, GNAS, and RNF43, with somatic mutations identified in 6 (75%), 4 (50%), and 3 (37.5%) IPMN organoid samples respectively. On average, we identified 36 structural variants in IPMN derived organoids, and none had an unstable phenotype (&gt;200 structural variants). Transcriptome sequencing identified 28 genes differentially expressed between normal pancreatic duct organoid and IPMN organoid samples. The most significantly upregulated and downregulated genes were CLDN18 and FOXA1. Immunohistochemical analysis of FOXA1 expression in 112 IPMNs, 113 mucinous cystic neoplasms, and 145 pancreatic ductal adenocarcinomas demonstrated statistically significant loss of expression in low-grade IPMNs (p &lt; 0.0016), mucinous cystic neoplasms (p &lt; 0.0001), and pancreatic ductal adenocarcinoma of any histologic grade (p &lt; 0.0001) compared to normal pancreatic ducts. These data indicate that FOXA1 loss of expression occurs early in pancreatic tumorigenesis. Our study highlights the utility of organoid culture to study the genetics and biology normal pancreatic duct and IPMNs. This article is protected by copyright. All rights reserved."	"Duloxetine improves cancer-associated pain in a mouse model of pancreatic cancer via stimulation of noradrenaline pathway and its antitumor effects. Pancreatic ductal adenocarcinoma (PDAC) is an aggressive cancer with a poor prognosis. Patients with inoperative PDAC require effective chemotherapy and pain control to increase their quality of life. We investigated whether duloxetine, a serotonin-noradrenaline reuptake inhibitor, improves quality of life in a KPPC (LSL-Kras;Trp53;Pdx1-cre) mouse model of PDAC. Six-week-old KPPC mice were orally administered 4 mg/kg/day duloxetine (n=12); 4 mg/kg/day duloxetine with 0.15 mg/kg/day atipamezole, a synthetic α2 adrenergic receptor antagonist (n=9); or vehicle water (n=11). Body weight and food intake were measured daily, and cancer pain was evaluated by the hunching score and mouse grimace scale (MGS). At the endpoint, the tumor status, angiogenesis, and immunoinflammatory condition were analyzed. The pain level using the hunching and MGS scores improved by duloxetine in KPPC mice (P&lt;0.01), whereas the scores that had been reduced by duloxetine were elevated by administration of atipamezole. Kaplan-Meier analysis demonstrated that duloxetine-treated mice had significantly prolonged survival (P&lt;0.05) with delayed appetite loss, cachexia, and body weight loss. Duloxetine inhibited the proliferation of PDAC cells and cancer-associated fibroblasts in vivo with a shift into an antitumor immunoinflammatory condition and the corresponding plasma cytokine levels. The migrative/invasive potentials of PDAC were inhibited by duloxetine in vitro. Meanwhile, atipamezole did not inhibit the antitumor effects of duloxetine in vitro and in vivo. Therefore, our results indicate that duloxetine mainly improves cancer-associated pain by enhancement of the noradrenergic pathway rather than the serotoninergic pathway, while duloxetine modulates antitumor effects on PDAC without involvement of the noradrenergic pathway."	"[A method of screening highly common neoantigens with immunogenicity in colorectal cancer based on public somatic mutation library]. Colorectal cancer (CRC) is a malignant cancer with high incidence and mortality in the world. Immunotherapy targeting neoantigens can induce durable tumor regression in cancer patients, but is almost limited to personalized precision therapy, due to the individual differences of unique neoantigens. With the discovery of many common oncogenic mutations, and such mutation-associated neoantigens could cover more patients, and hence are valuable in clinical field. However, whether the common neoantigens can be identified in CRC is unknown. Combining the somatic mutations data from 321 CRC patients with a filter standard and 7 predicted algorithms, we screened and obtained 25 HLA-A*1101-restricted common neoantigens with a high binding affinity (IC50&lt;50 nmol/L) and presentation score (&gt;0.90). Besides the positive epitope KRAS_G12V8-16, 11 out of 25 common neoantigens specifically induced in vitro pre- stimulated cytotoxic lymphocyte (CTL) to secrete interferon gamma (IFN-γ). Moreover, combining cell-sorting technology and single-cell RNA sequencing, the immune repertoire profiles of C1orf170_S418G413-421 and KRAS_G12V8-16-specific CTL were analyzed and validated. Their related T-cell receptor engineered T cell (TCR-T) cells could also recognize the neoantigens and secrete IFN-γ. Hence, we have established a method to screen for common neoantigens with immunogenicity in CRC based on the public somatic mutation library. It can provide essential peptide and TCR information for immunotherapies, such as peptides, dendritic cells (DC) vaccines, TCR-like antibodies, TCR-T, etc., for the CRC and other cancers, which has practical application value in the clinics. 结直肠癌是世界高发和高致死率的恶性肿瘤。靶向新抗原的免疫治疗已被证实可以诱导癌症患者肿瘤持续消退,但这些特异性新抗原,仅适用于个体精准治疗。随着大量的高频肿瘤基因突变被发现,这些与突变相关的高频新抗原可覆盖更多人群,具有较强的临床意义。然而目前结直肠癌中是否也存在高频新抗原仍不清楚。本研究利用来源于321个结直肠癌患者的体细胞突变数据库,联合1种标准过滤和7种预测算法,筛选并获得了25个基于中国人高频分型HLA-A*1101限制性的高频新抗原,它们均具有高亲和力(IC50&lt;50 nmol/L)和高呈递分值(&gt;0.90);其中,除了阳性对照多肽KRAS_G12V8-16外,11个高频新抗原能够在体外诱导细胞毒性T淋巴细胞(cytotoxic T lymphocyte, CTL)分泌γ干扰素(interferon gamma, IFN-γ),证实具有免疫原性。选取免疫原性最强的新抗原C1orf170_S418G413-421及阳性对照多肽KRAS_G12V8-16体外刺激T细胞,利用流式细胞分选及单细胞转录组测序技术,获得其特异性CTL的免疫组库信息,所构建的TCR-T(T-cell receptor engineered T cell)能够识别新抗原并分泌细胞因子。以上结果表明,本研究开发了一种利用体细胞数据库预测并体外筛选验证具有免疫原性高频新抗原的方法,为结直肠癌及其他癌种的多肽、DC(dendritic cells)疫苗、TCR-like抗体、TCR-T等免疫治疗提供了重要的多肽靶点和TCR信息,具有实际的临床应用价值。."	"Ovarian mesonephric-like adenocarcinoma arising in serous borderline tumor: a case report with complex morphological and molecular analysis. Mesonephric-like adenocarcinoma (M-LAC) is a rare, recently described tumor occurring in the uterine corpus and ovary, which shares the same morphological and immunohistochemical features with the more common mesonephric adenocarcinoma (MAC), which mostly arises the uterine cervix. Despite the similarities between these tumors, the histogenesis of M-LAC is still disputable. Sixty-one-year-old woman presented with an advanced tumor of the left ovary with intraabdominal spread and liver metastases. After receiving 5 cycles of neoadjuvant chemotherapy, she underwent a hysterectomy with bilateral salpingo-oophorectomy, and resection of the liver metastasis, omentum, and appendix. Histologically, the ovarian tumor consisted of two components, whose morphology and immunohistochemical results were typical of either a serous borderline tumor (immunohistochemical positivity for PAX8, WT1, ER and PR) or a mesonephric-like carcinoma (immunohistochemical positivity for PAX8, TTF1 and GATA3). Only the component of the mesonephric-like adenocarcinoma metastasized to the omentum and liver. A molecular analysis with a panel of 271 genes (size 1020 kbp) was performed separately on samples from the borderline tumor, primary ovarian mesonephric-like adenocarcinoma, and liver metastasis. The results showed the clonal origin of all samples, which shared the same KRAS (NM_004985.3:c.34G &gt; T, p.(G12C)) and PIK3CA (NM_006218.2:c.1633G &gt; A, p.(E545K)) somatic mutations. Moreover, in the sample from the primary mesonephric-like carcinoma and its liver metastasis a likely pathogenic somatic MYCN mutation (NM_005378.4:c.131C &gt; T, p.(P44L) was found. In all samples, the deletion of exons 9-10 in the CHEK2 gene was present, which is in concordance with the previously performed genetic testing of the blood specimen which revealed the hereditary CHEK2 mutation in this patient. Our result support the theory that at least some mesonephric-like ovarian adenocarcinomas are of Müllerian origin. The serous borderline tumor seems to be a precursor of mesonephric-like adenocarcinoma, which has been proven in our case by both tumors sharing the same mutations, and the presence of cumulative molecular aberrations in the mesonephric-like adenocarcinoma."	"Molecular Basis of ETV6-Mediated Predisposition to Childhood Acute Lymphoblastic Leukemia. There is growing evidence supporting an inherited basis for susceptibility to acute lymphoblastic leukemia (ALL) in children. In particular, we and others reported recurrent germline ETV6 variants linked to ALL risk, which collectively represent a novel leukemia predisposition syndrome. To understand the influence of ETV6 variation on ALL pathogenesis, we comprehensively characterized a cohort of 32 childhood leukemia cases arising from this rare syndrome. Of 34 nonsynonymous germline ETV6 variants in ALL, we identified 22 variants with impaired transcription repressor activity, loss of DNA binding, and altered nuclear localization. Missense variants retained dimerization with WT ETV6 with potentially dominate negative effects. Whole transcriptome and whole genome sequencing of this cohort of leukemia cases revealed a profound influence of germline ETV6 variants on leukemia transcriptional landscape, with distinct ALL subsets invoking unique patterns of somatic cooperating mutations. 70% of ALL cases with damaging germline ETV6 variants exhibited hyperdiploid karyotype with characteristic recurrent mutations in NRAS, KRAS, and PTPN11. In contrast, the remaining 30% cases had a diploid leukemia genome and an exceedingly high frequency of somatic copy number loss of PAX5 and ETV6, with a gene expression pattern that strikingly mirrored that of ALL with somatic ETV6-RUNX1 fusion. Two ETV6 germline variants gave rise to both AML and ALL, with lineage-specific genetic lesions in the leukemia genomes. ETV6 variants compromise its tumor suppressor activity in vitro with specific molecular targets identified by ATAC-seq profiling. ETV6-mediated ALL predisposition exemplifies the intricate interactions between inherited and acquired genomic variations in leukemia pathogenesis."	"Ubiquitin-binding associated protein 2 regulates KRAS activation and macropinocytosis in pancreatic cancer. Macropinocytosis supports the metabolic requirement of RAS-transformed pancreatic ductal adenocarcinoma cells (PDACs). However, regulators of RAS-transformation (activation) that lead to macropinocytosis have not been identified. Herein, we report that UBAP2 (ubiquitin-binding associated protein 2), regulates the activation of KRAS and macropinocytosis in pancreatic cancer. We demonstrate that UBAP2 is highly expressed in both pancreatic cancer cell lines and tumor tissues of PDAC patients. The expression of UBAP2 is associated with poor overall survival in several cancers, including PDAC. Silencing UBAP2 decreases the levels of activated KRAS, and inhibits macropinocytosis, and tumor growth in vivo. Using a UBAP2-deletion construct, we demonstrate that the UBA-domain of UBAP2 is critical for the regulation of macropinocytosis and maintaining the levels of activated KRAS. In addition, UBAP2 regulates RAS downstream signaling and helps maintain RAS in the GTP-bound form. However, the exact mechanism by which UBAP2 regulates KRAS activation is unknown and needs further investigation. Thus, UBAP2 may be exploited as a potential therapeutic target to inhibit macropinocytosis and tumor growth in activated KRAS-driven cancers."	"KRAS(G12C)-AMG 510 interaction dynamics revealed by all-atom molecular dynamics simulations. The first KRAS(G12C) targeting inhibitor in clinical development, AMG 510, has shown promising antitumor activity in clinical trials. On the molecular level, however, the interaction dynamics of this covalently bound drug-protein complex has been undetermined. Here, we disclose the interaction dynamics of the KRAS(G12C)-AMG 510 complex by long timescale all-atom molecular dynamics (MD) simulations (total of 75 μs). Moreover, we investigated the influence of the recently reported post-translational modification (PTM) of KRAS' N-terminus, removal of initiator methionine (iMet1) with acetylation of Thr2, to this complex. Our results demonstrate that AMG 510 does not entrap KRAS into a single conformation, as one would expect based on the crystal structure, but rather into an ensemble of conformations. AMG 510 binding is extremely stable regardless of highly dynamic interface of KRAS' switches. Overall, KRAS(G12C)-AMG 510 complex partially mimic the native dynamics of GDP bound KRAS; however, AMG 510 stabilizes the α3-helix region. N-terminally modified KRAS displays similar interaction dynamics with AMG 510 as when Met1 is present, but this PTM appears to stabilize β2-β3-loop. These results provide novel conformational insights on the molecular level to KRAS(G12C)-AMG 510 interactions and dynamics, providing new perspectives to RAS related drug discovery."	"KRAS-associated microRNAs in colorectal cancer. Colorectal cancer (CRC) is one of the leading causes of cancerrelated death worldwide. Despite progress in treatment of cancers, CRC with KRAS mutations are resistant towards anti-EGFR treatment. MicroRNAs have been discovered in an exponential manner within the last few years and have been known to exert either an onco-miRNA or tumor suppressive effect. Here, the various roles of microRNAs involved in the initiation and progression of KRAS-regulated CRC are summarized. A thorough understanding of the roles and functions of the plethora of microRNAs associated with KRAS in CRC will grant insights into the provision of other potential therapeutic targets as well as treatment. MicroRNAs may also serve as potential molecular classifier or early detection biomarkers for future treatment and diagnosis of CRC."	"Immune status is prognostic for poor survival in colorectal cancer patients and is associated with tumour hypoxia. Immunohistochemical quantification of the immune response is prognostic for colorectal cancer (CRC). Here, we evaluate the suitability of alternative immune classifiers on prognosis and assess whether they relate to biological features amenable to targeted therapy. Overall survival by immune (CD3, CD4, CD8, CD20 and FOXP3) and immune-checkpoint (ICOS, IDO-1 and PD-L1) biomarkers in independent CRC cohorts was evaluated. Matched mutational and transcriptomic data were interrogated to identify associated biology. Determination of immune-cold tumours by combined low-density cell counts of CD3, CD4 and CD8 immunohistochemistry constituted the best prognosticator across stage II-IV CRC, particularly in patients with stage IV disease (HR 1.98 [95% CI: 1.47-2.67]). These immune-cold CRCs were associated with tumour hypoxia, confirmed using CAIX immunohistochemistry (P = 0.0009), which may mediate disease progression through common biology (KRAS mutations, CRIS-B subtype and SPP1 mRNA overexpression). Given the significantly poorer survival of immune-cold CRC patients, these data illustrate that assessment of CD4-expressing cells complements low CD3 and CD8 immunohistochemical quantification in the tumour bulk, potentially facilitating immunophenotyping of patient biopsies to predict prognosis. In addition, we found immune-cold CRCs to associate with a difficult-to-treat, poor prognosis hypoxia signature, indicating that these patients may benefit from hypoxia-targeting clinical trials."	"[A prognostic nomogram for metastasized colorectal cancer patients treated with cetuximab]. Objective: To identify the prognostic factors in metastatic colorectal cancer (mCRC) patients treated with cetuximab and establish a prognostic nomogram and validate its accuracy. Methods: A retrospective case-control study was conducted. Patients were selected as following criteria: patients with metastatic colorectal cancer(mCRC), which primary site confirmed by pathology and metastatic lesions confirmed by CT or MRI with at least one measurable and evaluable target lesion; patients' expected survival longer than 3 months; Eastern Cooperative Oncology Group (ECOG) score between 0 to 2; patients have signed informed consent; both KRAS and NRAS genes were wild-type; and at least 2 cycles of cetuximab combined with chemotherapy as the first-line regimen. Patients who met the following criteria were excluded: patients with incomplete clinicopathological and follow-up data; patients with severe diseases of vital organs such as heart, brain, lung, kidney, or other advanced malignant tumors; patients without informed consent. According to the above criteria, clinicopathological data of 95 patients with mCRC admitted in the Department of Medical Oncology, the Second Affiliated Hospital, Zhejiang University School of Medicine for first-line treatment with cetuximab from January 2010 to January 2017 were analyzed retrospectively. The Cox proportional hazards model was used to analyze the clinicopathological factors to determine the independent prognostic factors for progression-free survival(PFS). The R software was adopted to establish a prognostic nomogram model. Then, the nomograms of 6-month, 12-month and 18-month progression-free survivals (PFS) were drawn, and compared with the reality. The internal validation and accuracy of the nomogram were determined by the Bootstrap method and also the calculated concordance index (C-index). Results: The median follow-up time was 16.5 (2-43) months and the median PFS was 8.5 months. PFS at 6-,12- and 18-month was 73.7%, 35.8%, and 17.9%, respectively. ECOG score of 1-2 (HR=5.733, 95% CI:2.408-13.649, P&lt;0.001), primary tumor was located in the ileocecal region (HR=5.880, 95% CI:1.645-21.023, P=0.006), Ki-67 index ≥45% (HR=3.574,95% CI:1.403-9.108,P=0.008), baseline D-dimer level ≥345 mg/L (HR=2.536,95% CI:1.531-7.396, P=0.012), NLR≥2.8 (HR=5.573,95% CI:2.107-14.740,P=0.001) and the combined treatment for FOLFOX (HR=0.465, 95% CI: 0.265-0.817, P=0.008) were independent risk factors for PFS of mCRC patients (all P&lt;0.05). These independent risk factors were taken into account to construct a nomogram prediction model. The bootstrap method was used to perform internal validation, and the C-index of the nomogram prediction model in this study was 0.67 (95% CI: 0.64~0.71). The 6-, 12- and 18-month PFS predicted by the nomogram were consistent with the actual values. Conclusion: The nomogram model constructed by ECOG score, primary tumor site, Ki-67 index, baseline D-dimer level, baseline NLR and chemotherapy regimen may predict the prognosis of mCRC patients treated with cetuximab more accurately and individually, which can assist clinicians in making treatment decisions. 目的: 建立西妥昔单抗治疗转移性结直肠癌(mCRC)患者的预后列线图预测模型并进行验证。 方法: 采用回顾性病例对照研究方法。患者入选标准:病理证实为结直肠腺癌,通过CT或MRI检查证实存在转移灶,且有至少一处可测量评价的靶病灶的病例;预计生存期≥3个月;美国东部肿瘤协助组(ECOG)评分0~2分;签署知情同意书;KRAS和NRAS基因检测均为野生型,均接受至少2个周期的西妥昔单抗联合化疗,且该治疗方案作为一线方案。排除标准:临床病理学及随访资料不完整者,合并心、脑、肺、肾等重要器官严重疾病或合并其他晚期恶性肿瘤者以及未签署知情同意者。根据以上标准,回顾性收集2010年1月至2017年1月期间,浙江大学医学院附属第二医院肿瘤内科收治的接受西妥昔单抗一线治疗的95例mCRC患者的临床及病理学资料。应用Cox回归模型对可能影响无复发生存率(PFS)的临床病理学因素进行单因素及多因素分析,确定独立预后因素;应用R软件建立列线图预测模型,绘制校准曲线并与实际观察情况比较。用Bootstrap法进行内部验证,计算一致性指数(C-index)评估模型准确性。 结果: 全组中位随访16.5(2~43)个月,中位PFS为8.5个月,6个月、12个月及18个月PFS分别为73.7%、35.8%和17.9%。ECOG评分1~2分(HR=5.733,95% CI:2.408~13.649,P&lt;0.001)、肿瘤原发部位为回盲部(HR=5.880,95% CI:1.645~21.023,P=0.006)、Ki-67指数≥45%(HR=3.574,95% CI:1.403~9.108,P=0.008)、基线D-二聚体水平≥345 mg/L(HR=2.536,95% CI:1.531~7.396,P=0.012)以及中性粒细胞淋巴细胞比值(NLR)≥2.8(HR=5.573,95% CI:2.107~14.740,P=0.001)是影响本组mCRC患者PFS的独立危险因素,联合治疗方案为FOLFOX(HR=0.465,95% CI:0.265~0.817,P=0.008)是影响本组mCRC患者PFS的独立保护性因素(均P&lt;0.05)。将以上影响本组mCRC患者PFS的独立因素,构建列线图预测模型。使用bootstrap方法执行内部验证,本研究列线图预测模型的一致性指数(C-index)为0.67(95% CI:0.64~0.71)。校正曲线表明预测的6个月、12个月及18个月PFS率与实际观察情况符合。 结论: 将ECOG评分、肿瘤原发部位、Ki-67指数、基线D-二聚体水平、基线NLR以及化疗方案构建的列线图模型,可较准确个体化地预测西妥昔单抗治疗mCRC患者的预后,可以辅助临床医生进行治疗决策。."	"Association of RAS Mutation Location and Oncologic Outcomes After Resection of Colorectal Liver Metastases. RAS mutations are prognostic for patients with metastatic colorectal cancer (mCRC). We investigated clinical, pathologic, and survival differences based on RAS exon for patients with colorectal liver metastases (CRLM). This retrospective, single-center study included patients with R0/R1 resection of CRLM from 1992 to 2016. Patients with unresected extrahepatic disease or liver-first resection were excluded. Overall survival (OS) and recurrence-free survival were assessed and stratified by mutation status and location. Fisher's exact test, Wilcoxon rank-sum test, and log-rank test were used, where appropriate. A total of 938 mCRC patients were identified with median age of 57 (range 19-91). Of the 445 patients with KRAS mutations, 407 (91%) had a mutation in exon 2, 14 (3%) exon 3, and 24 (5%) exon 4. Median OS was 71.4 months (95% confidence interval [CI] 66.1-76.5). Patients with KRAS mutations had worse OS compared with KRAS wild-type patients (median 55.5 vs. 91.3 months, p &lt; 0.001). While there was no significant difference in OS based on the exon mutated (p = 0.12), 5-year OS was higher for patients with exon 4 mutations [68.8% (95% CI 0.45-0.84)] compared with those with mutations in exon 2 [45.7% (95% CI 0.40-0.51)] or exon 3 [39.1% (95% CI: 0.11-0.68)]. Patients with NRAS mutant tumors also had worse OS compared with NRAS wild-type patients (median 50.9 vs. 73.3 months, p = 0.03). NRAS and KRAS exon 3/4 mutations are present in a minority of mCRC patients. Patients with exon 4 mutant tumors may have a more favorable prognosis, although the difference in oncologic outcomes based on mutated exon appears to be smaller than previously reported."	"Noxa upregulation and 5-gene apoptotic biomarker panel in colorectal cancer. NOXA and MCL1 are involved in the intrinsic pathway of apoptosis, where Noxa selectively binds to MCL1 and prevents it from inhibiting apoptosis. Both factors are considered as potential tumour biomarkers, while MCL1 has attracted interest as target in cancer. The purpose of this study was to investigate the expression of NOXA and MCL1 in 160 CRC tumour samples, to investigate their significance, also in combination with IAPs, DR5 expression and KRAS gene mutations in CRC. Fresh frozen colorectal tissue was obtained from patients undergoing surgery for CRC. Real-time quantitative PCR was performed for the determination of mRNA expression levels. Protein expression was determined immunohistochemically. Differences in the mRNA expression profile were evaluated with the non-parametric Wilcoxon Signed Ranks test. Statistical analysis was performed with the use of Mann-Whitney U test and Receiver-operating characteristic (ROC). NOXA was found to be overexpressed in CRC tumours (p&lt;0.0001), even from early stage. Moreover, NOXA / MCL1 mRNA expression was significantly elevated in tumour samples compared to normal pairs (p&lt;0.0001). ROC curve analysis showed that both NOXA expression and its combination with Mcl1 expression have fair discriminatory value between CRC and normal colorectal tissue. Combinatorial ROC analysis revealed the most significant discriminatory value of NOXA, MCL1 with cIAP1 and cIAP2 (AUC=0.834, p&lt;0.0001) as a 5-gene panel of markers. Noxa, Mcl1, DR5, cIAP1 and cIAP2 mRNA expression are significantly deregulated in CRC and could provide a panel of markers with significant discriminatory value between CRC and normal colorectal tissue."	"Histopathological subtyping is a prognostic factor in stage IV lung adenocarcinoma. Lung adenocarcinoma is a heterogeneous tumor made of different architectural patterns. These tumors are classified into subtypes according to the predominant pattern in the primary tumor because the predominant pattern is related to overall survival. The prognostic role of these subtypes in stage IV disease is not well known, and most lung adenocarcinomas are diagnosed at the stage of metastatic disease. We aimed to evaluate the prognostic role of histopathological subtypes in lung adenocarcinoma metastases in a retrospective study of 253 patients with clinical, histopathological and molecular data. The presence of the solid subtype was related to overall survival (p = 0.045); the median overall survival was 6.8 months (95 % confidence interval (95 %CI) 4.4-9.1) when present and 11.1 months (95 %CI 8.6-21.3) when absent. Thyroid transcription factor 1 (TTF-1) immunohistochemistry was related to overall survival (p &lt; 0.001); the median overall survival was 11.2 months (95 %CI 8.4-17.7) when positive and 4 months (95 %CI 2.3-5.7) when negative. On multivariate analysis, the presence of the solid subtype (p = 0.0036, hazard ratio (HR) 1.55, 95 %CI 1.03-2.34), TTF-1 positivity (p = 0.044, HR 0.64, 95 %CI 0.42-0.98), age &lt;60 years at the time of resection (p = 0.017, HR 1.89; 95 %CI 1.12-3.21), performance status &lt;2 (p = 0.017, HR 0.57; 95 %CI 0.36-0.91), treatment by chemotherapy (p = 0.033, HR 0.54, 95 %CI 0.31-0.95), and treatment by tyrosine kinase inhibitor or immunotherapy (p = 0.013, HR 0.36, 95 %CI 0.17-0.81) were related to overall survival. The evaluation of architectural pattern in metastases in stage IV patients provides further information for physicians about patient prognosis. This information might be included in clinical trials in patients with stage IV lung adenocarcinoma."	"Early KRAS oncogenic driver mutations in non-mucinous tissue of Congenital Pulmonary Airway Malformations as an indicator of potential malignant behavior. The potential for malignant degeneration is the most common reason for some practitioners to resect asymptomatic congenital pulmonary airway malformations (CPAM). We aimed to investigate the potential of various immunohistochemical and genomic biomarkers to predict the presence of mucinous proliferations in CPAM. Archival CPAM tissue samples were re-assessed and underwent immunohistochemical analysis using a panel of differentiating markers (TTF1/CDX2/CC10/MUC2/MUC5AC/p16/p53/DICER1). In each sample, intensity of immunohistochemical staining was assessed separately in normal lung tissue, CPAM and mucinous proliferation (MP) tissue, using a semi quantitative approach. Likewise, next-generation targeted sequencing of known adult lung driver mutations, including KRAS/BRAF/EGFR/ERBB2, was performed in all samples with MP and in control samples of CPAM tissue without MP. We analyzed samples of 25 CPAM type 1 and 25 CPAM type 2 and found mucinous proliferations in 11 samples. They were all characterized by strong MUC5AC expression and all carried a KRAS mutation in the MP and adjacent non-mucinous CPAM tissue, while the surrounding normal lung tissue was negative. By contrast, in less than half (5 out of 12) control samples lacking MP, the CPAM tissue also carried a KRAS mutation. KRAS mutations in non-mucinous CPAM tissue may identify lesions with a potential for malignant degeneration and may guide histopathological assessment and patient follow-up."	"Commentary: Every detail matters-Understanding the impact of KRAS mutations. NA"	"miRNAs-Based Molecular Signature for KRAS Mutated and Wild Type Colorectal Cancer: An Explorative Study. microRNAs (miRNAs) have been proposed as promising molecular biomarkers for diagnosis, prognosis, and responsive therapeutic targets in different types of cancer, including colorectal cancer (CRC). In this study, we evaluated the expression levels of 84 cancer-associated miRNAs in a cohort of 39 human samples comprising 13 peritumoral and 26 tumoral tissues from surgical specimens of CRC patients. KRAS mutations were detected in 11 tumoral samples. In a first analysis, we found 5 miRNAs (miR-215-5p, miR-9-5p, miR-138-5p, miR378a-3p, and miR-150-5p) that were significantly downregulated and one upregulated (miR-135b-5p) in tumoral tissues compared with the peritumoral tissues. Furthermore, by comparing miRNA profile between KRAS mutated CRC tissues respect to wild type CRC tissues, we found 7 miRNA (miR-27b-3p, miR-191-5p, miR-let7d-5p, miR-15b-5p, miR-98-5p, miR-10a-5p, and miR-149-5p) downregulated in KRAS mutated condition. In conclusion, we have identified a panel of miRNAs that specifically distinguish CRC tissues from peritumoral tissue and a different set of miRNAs specific for CRC with KRAS mutations. These findings may contribute to the discovering of new molecular biomarkers with clinic relevance and might shed light on novel molecular aspects of CRC."	"Top-level MET gene copy number gain defines a subtype of poorly differentiated pulmonary adenocarcinomas with poor prognosis. MET amplifications occur in human tumors, including non-small cell lung cancer (NSCLC). MET inhibitors have demonstrated some clinical activity in MET amplified NSCLC, presumably with a gene dose effect. However, the definition of MET positivity or MET amplification as a potential oncogenic driver is still under debate. In this study, we aimed to establish the molecular subgroup of NSCLC with the highest unequivocal MET amplification level and to describe the prevalence, and histologic and clinical phenotype of this subgroup. A total of 373 unselected patients with NSCLC were consecutively tested for MET gene copy number (GCN) by FISH. Mean GCN, MET/CEN7 ratio and other FISH parameters were identified and correlated with morphological and molecular pathological characteristics of the tumors as well as with clinical data. Based on the variability of obtained data a top-level category of MET amplification was newly defined (&gt;90th percentile of average GCN; ≥10 MET gene copies per tumor cell). This criterion was fulfilled in 2% of analyzed tumors. These tumors were exclusively poorly differentiated adenocarcinomas with a predominant solid subtype and pleomorphic features. Rarely, co-alterations were detected (KRAS mutation or MET exon 14 skipping mutation). In this top-level group, there were no EGFR mutations or ALK or ROS1 alterations. The most important clinical feature was a significantly shortened overall survival (HR 3.61; median OS 8.2 vs. 23.6 months). Worse prognosis did not depend on initial stage or treatment. The newly defined top-level category of MET amplification in NSCLC defines a specific subgroup of pulmonary adenocarcinoma with adverse prognosis and characteristic morphological features. Lower levels of MET gene copy number seem to have probably no specific value as a prognostic or predictive biomarker."	"TRIGGERING ANAPHASE CATASTROPHE TO COMBAT ANEUPLOID CANCERS. Cancer cells are genetically unstable and often have supernumerary centrosomes. When supernumerary centrosome clustering is inhibited at mitosis, multipolar cell division is forced, triggering apoptosis in daughter cells. This proapoptotic pathway is called anaphase catastrophe. Cyclin-dependent kinase 1 (CDK1) or CDK2 inhibitors can antagonize centrosome clustering and cause anaphase catastrophe to occur in lung cancer and other types of cancer. The centrosome protein CP110, a CDK1 and CDK2 phosphorylation substrate, engages anaphase catastrophe. Intriguingly, CP110 is downregulated by the KRAS oncoprotein, enhancing sensitivity of KRAS-driven cancers to CDK2 inhibitors. Anaphase catastrophe eradicates aneuploid cancer cells while relatively sparing normal diploid cells with two centrosomes. This therapeutic window discriminates between normal and neoplastic cells and can be exploited in the cancer clinic. The work reviewed here establishes that pharmacologically-induced anaphase catastrophe is useful to combat aneuploid cancers, especially when the KRAS oncoprotein is activated. This addresses an unmet medical need in oncology."	"Adjuvant Hepatic Artery Infusion Chemotherapy is Associated With Improved Survival Regardless of KRAS Mutation Status in Patients With Resected Colorectal Liver Metastases: A Retrospective Analysis of 674 Patients. To investigate the impact of adjuvant hepatic artery infusion (HAI) in relation to KRAS mutational status in patients with resected colorectal cancer liver metastases (CRLM). Patients with KRAS-mutated CRLM have worse outcomes after resection. Adjuvant HAI chemotherapy improves overall survival after liver resection. Patients with resected CRLM treated at MSKCC with and without adjuvant HAI who had available KRAS status (wild-type, WT; mutated, MUT) were reviewed from a prospectively maintained institutional database. Correlations between KRAS status, adjuvant HAI, clinical factors, and outcomes were analyzed. Cox proportional hazard model was used to adjust for confounders. Between 1993 and 2012, 674 patients (418 KRAS-WT, 256 MUT) with a median follow up of 6.5 years after resection were evaluated. Fifty-four percent received adjuvant HAI. Tumor characteristics (synchronous disease, number of lesions, clinical-risk score, 2-stage hepatectomy) were significantly worse in the HAI group; however, there were more patients with resected extrahepatic metastases in the no-HAI group. In KRAS-WT tumors, 5-year survival was 78% for patients treated with HAI versus 57% for patients without HAI [hazard ratio (HR) 0.51, P &lt; 0.001]. In KRAS-MUT tumors, 5-year survival was 59% for patients treated with HAI versus 40% for patients without HAI (HR 0.56, P &lt; 0.001). On multivariate analysis, HAI remained associated with improved OS (HR 0.53, P &lt; 0.002) independent of KRAS status and other clinicopathologic factors. Adjuvant HAI after resection of CRLM is independently associated with improved outcomes regardless of KRAS mutational status. Adjuvant HAI may mitigate the worse outcomes seen in patients with resectable KRAS-MUT CRLM."	"Prognostic factors differ according to KRAS mutational status: A classification and regression tree model to define prognostic groups after hepatectomy for colorectal liver metastasis. Although KRAS mutation status is known to affect the prognosis of patients with colorectal liver metastasis, the hierarchical association between other prognostic factors and KRAS status is not fully understood. Patients who underwent a hepatectomy for colorectal liver metastasis were identified in a multi-institutional international database. A classification and regression tree model was constructed to investigate the hierarchical association between prognostic factors and overall survival relative to KRAS status. Among 1,123 patients, 29.9% (n = 336) had a KRAS mutation. Among wtKRAS patients, the classification and regression tree model identified presence of metastatic lymph nodes as the most important prognostic factor, whereas among mtKRAS patients, carcinoembryonic antigen level was identified as the most important prognostic factor. Among patients with wtKRAS, the highest 5-year overall survival (68.5%) was noted among patients with node negative primary colorectal cancer, solitary colorectal liver metastases, size &lt;4.3 cm. In contrast, among patients with mtKRAS colorectal liver metastases, the highest 5-year overall survival (57.5%) was observed among patients with carcinoembryonic antigen &lt;6 mg/mL. The classification and regression tree model had higher prognostic accuracy than the Fong score (wtKRAS [Akaike's Information Criterion]: classification and regression tree model 3334 vs Fong score 3341; mtKRAS [Akaike's Information Criterion]: classification and regression tree model 1356 vs Fong score 1396). Machine learning methodology outperformed the traditional Fong clinical risk score and identified different factors, based on KRAS mutational status, as predictors of long-term prognosis."	"Incidence and PD-L1 Expression of MET 14 Skipping in Chinese Population: A Non-Selective NSCLC Cohort Study Using RNA-Based Sequencing. Mesenchymal-epithelial transition (MET) exon14 skipping mutations represent a clinically unique molecular subtype of NSCLC. The prevalence rates of MET exon 14 skipping in lung adenocarcinoma (ADC) range from 0.9% to 4.0% in Asian populations. Since some somatic variants that do not encompass the MET exon 14 splice sites might also induce MET exon 14 skipping, the RNA-based sequencing is speculated as the most accurate method for detecting exon 14 skipping. A total of 951 NSCLC patients from two hospitals were enrolled in this study. MET exon14 skipping was detected using RNA-based next-generation sequencing (NGS). Also, immunohistochemistry (IHC) was performed in 405 samples simultaneously. The overall estimated prevalence of MET exon 14 skipping was approximately 1.8% in ADCs and 1.7% in NSCLCs. The detection rate of MET exon 14 skipping from surgical resection specimen was 2.3% in NSCLCs and 2.0% in ADCs. The MET exon 14 skipping was identified in 6.6% of EGFR/KRAS/ALK/ROS1/RET-negative ADCs. Additionally, PD-L1 was found to be highly expressed in NSCLC patients harboring MET exon 14 skipping (P&lt;0.01). The prevalence of MET exon14 skipping in lung ADCs in the East Asian population was similar to that of the Western population as assessed by RNA-based NGS. The NSCLC patients with MET exon 14 skipping were older than those with other oncogenic driver mutations, such as EGFR, ALK, and ROS1. In addition, PD-L1 was highly expressed in NSCLC patients with MET exon 14 skipping."	"Mechanism of action of a T cell-dependent bispecific antibody as a breakthrough immunotherapy against refractory colorectal cancer with an oncogenic mutation. T cell-dependent bispecific antibody (TDB)-induced T cell activation, which can eliminate tumor cells independent of MHC engagement, is expected to be a novel breakthrough immunotherapy against refractory cancer. However, the mechanism of action of TDBs has not been fully elucidated thus far. We focused on TDB-induced T cell-tumor cell contact as an important initial step in direct T cell-mediated tumor cell killing via transport of cytotoxic cell proteases (e.g., granzymes) with or without immunological synapse formation. Using an anti-EGFR/CD3 TDB, hEx3, we visualized and quantified T cell-tumor cell contact and demonstrated a correlation between the degree of cell contact and TDB efficacy. We also found that cytokines, including interferon-gamma (IFNγ) and tumor necrosis factor-alpha (TNFα) secreted by activated T cells, damaged tumor cells in a cell contact-independent manner. Moreover, therapeutic experiences clearly indicated that hEx3, unlike conventional anti-EGFR antibodies, was effective against colorectal cancer (CRC) cells with mutant KRAS, BRAF, or PIK3CA. In a pharmacokinetic analysis, T cells spread gradually in accordance with the hEx3 distribution within tumor tissue. Accordingly, we propose that TDBs should have four action steps: 1st, passive targeting via size-dependent tumor accumulation; 2nd, active targeting via specific binding to tumor cells; 3rd, T cell redirection toward tumor cells; and 4th, TDB-induced cell contact-dependent (direct) or -independent (indirect) tumor cell killing. Finally, our TDB hEx3 may be a promising reagent against refractory CRC with an oncogenic mutation associated with a poor prognosis."	"BRAF and KRAS mutations in metastatic colorectal cancer: future perspectives for personalized therapy. Colorectal cancer (CRC) is one of the most commonly diagnosed cancers worldwide and 30% of patients with CRC experience metastasis. Patients with metastatic colorectal cancer (mCRC) have a 5-year overall survival rate of &lt;10%. V-raf murine sarcoma viral oncogene homolog B1 (BRAF) and V-Ki-ras2 Kirsten ratsarcoma viral oncogene homolog (KRAS) mutations are mostly studied in mCRC, as clinical trials found that first-line chemotherapy with anti-epidermal growth factor receptor agent confers limited efficacy for mCRC. Treatment decisions for early-stage mCRC do not consider BRAF or KRAS mutations, given the dramatically poor prognosis conferred by these mutations in clinical trials. Thus, it is necessary to identify patients with mCRC harboring BRAF or KRAS mutations to formulate rational therapeutic strategies to improve prognosis and survival. BRAF and KRAS mutations occur in ∼10% and ∼44% of patients with mCRC, respectively. Although the survival rate of patients with mCRC has improved in recent years, the response and prognosis of patients with the aforementioned mutations are still poor. There is a substantial unmet need for prospective personalized therapies for patients with BRAF- or KRAS-mutant mCRC. In this review, we focus on BRAF and KRAS mutations to understand the mechanisms underlying resistance and improving the response rate, outcomes, and prognosis of patients with mCRC bearing these mutations and to discuss prospective personalized therapies for BRAF- and KRAS-mutant mCRC."	"Anti-EGFR therapy in metastatic colorectal cancer: mechanisms and potential regimens of drug resistance. Cetuximab and panitumumab, as the highly effective antibodies targeting epidermal growth factor receptor (EGFR), have clinical activity in the patients with metastatic colorectal cancer (mCRC). These agents have good curative efficacy, but drug resistance also exists at the same time. The effects of KRAS, NRAS, and BRAF mutations and HER2 amplification on the treatment of refractory mCRC have been elucidated and the corresponding countermeasures have been put forward. However, the changes in EGFR and its ligands, the mutations or amplifications of PIK3CA, PTEN, TP53, MET, HER3, IRS2, FGFR1, and MAP2K1, the overexpression of insulin growth factor-1, the low expression of Bcl-2-interacting mediator of cell death, mismatch repair-deficient, and epigenetic instability may also lead to drug resistance in mCRC. Although the emergence of drug resistance has genetic or epigenetic heterogeneity, most of these molecular changes relating to it are focused on the key signaling pathways, such as the RAS/RAF/mitogen-activated protein kinase or phosphatidylinositol 3-kinase/Akt/mammalian target of the rapamycin pathway. Accordingly, numerous efforts to target these signaling pathways and develop the novel therapeutic regimens have been carried out. Herein, we have reviewed the underlying mechanisms of the resistance to anti-EGFR therapy and the possible implications in clinical practice."	"A Molecular Stratification of Chilean Gastric Cancer Patients with Potential Clinical Applicability. Gastric cancer (GC) is a complex and heterogeneous disease. In recent decades, The Cancer Genome Atlas (TCGA) and the Asian Cancer Research Group (ACRG) defined GC molecular subtypes. Unfortunately, these systems require high-cost and complex techniques and consequently their impact in the clinic has remained limited. Additionally, most of these studies are based on European, Asian, or North American GC cohorts. Herein, we report a molecular classification of Chilean GC patients into five subtypes, based on immunohistochemical (IHC) and in situ hybridization (ISH) methods. These were Epstein-Barr virus positive (EBV+), mismatch repair-deficient (MMR-D), epithelial to mesenchymal transition (EMT)-like, and accumulated (p53+) or undetected p53 (p53-). Given its lower costs this system has the potential for clinical applicability. Our results confirm relevant molecular alterations previously reported by TCGA and ACRG. We confirm EBV+ and MMR-D patients had the best prognosis and could be candidates for immunotherapy. Conversely, EMT-like displayed the poorest prognosis; our data suggest FGFR2 or KRAS could serve as potential actionable targets for these patients. Finally, we propose a low-cost step-by-step stratification system for GC patients. To the best of our knowledge, this is the first Latin American report on a molecular classification for GC. Pending further validation, this stratification system could be implemented into the routine clinic."	"Reliability of digital PCR in detecting KRAS mutation in colorectal cancer using plasma sample: A systematic review and meta-analysis. Test on the KRAS somatic mutation status is necessary before cetuximab and panitumumab treatments are given to colorectal cancer patients. Metastatic colorectal cancer patients sometimes lack tumor tissue samples, and the testing of KRAS mutation in plasma samples requires highly sensitive methods. The aim of this study was to evaluate the accuracy of digital PCR in detecting KRAS mutation in plasma samples of colorectal cancer patients. Literature research was conducted in Pubmed, Embase, and Cochrane Library. Database searching found 188 relevant studies. After removing duplicates, eligible studies were selected from 151 publications using the following exclusion criteria: STUDY APPRAISAL AND SYNTHESIS METHODS:: Data were extracted from the eligible studies by 2 independent researchers. Pooled accuracy parameters were calculated from those extracted data using Meta-DiSc and STATA software. Twelve eligible studies were selected for the systematic review and meta-analysis. After calculation, the pooled sensitivity and specificity were 0.83 (95% CI: 0.79-0.86) and 0.91 (95%CI: 0.88-0.93), respectively. Pooled positive likelihood ratio, negative likelihood ratio, and diagnostic odds ratio were 7.30 (95%CI: 4.78-11.17), 0.22 (95%CI: 0.15-0.32), and 41.00 (95%CI: 21.07-79.78), respectively. Area under curve of the summarized ROC curve was 0.9322. Although no significant bias was identified, number of included studies was still quite small, especially in subgroup analysis. Digital PCR showed high accuracy and could be a reliable detection method for KRAS mutation in plasma samples. Large-cohort prospective study is required to further confirm the usefulness of digital PCR in KRAS mutation detection."	"Investigating the utility of extended mutation analysis in gastrointestinal peritoneal metastasis. Outcomes for gastrointestinal peritoneal metastases (GI-PM) are worse compared to systemic metastases, with a paucity of data exploring extended mutation profiling. An exploratory mutation analysis in GI-PMs was performed as a &quot;proof of concept&quot; of potential predictive values of profiling in GI-PM and rates of actionable mutations. The study included 40 GI-PM patients: 14 low-grade mucinous carcinoma peritonei and 26 HG-PM (12 colons, 10 appendix, 4 small bowels). Demographics, histologies, peritoneal cancer indexes, cytoreduction scores, and survival data were collected. NGS 50-gene mutation profiling was performed on 38 specimens. The association of mutations with survival was evaluated in high-grade PM. KRAS, TP53, and SMAD4 mutations were observed in 61%, 29%, and 8% of cases across all tumor histologies. In 66% cases &gt;1 mutations occurred, associated with decreased survival in HG-PM: 32 vs 73 months, P = .03. TP53 or SMAD4 mutations were associated with decreased survival in HG-PM: 22 vs 48 months, P = .02. Actionable mutations were detected in 70%. Actionable mutations were detected at high rates. GI-PMs have similar mutational profiles and TP53, SMAD4, and/or &gt;1 mutation were associate with decreased survival in HG-PM. This data supports the concept of the extended mutation profiling utility in GI-PM warranting further investigation."	"EFFECTIVENESS OF FIRST-LINE CETUXIMAB IN WILD-TYPE RAS METASTATIC COLORECTAL CANCER ACCORDING TO TUMOUR BRAF MUTATION STATUS FROM THE EREBUS COHORT. Poor efficacy has been reported for patients with BRAF mutations for metastatic colorectal cancer (mCRC). EREBUS is a French cohort study of wild-type (wt) KRAS unresectable mCRC patients initiating a first-line treatment with cetuximab from 2009 to 2010, followed two years (five-year for vital status). Molecular genetics platforms have provided additional RAS and BRAF mutation testing results. Progression-free survival (PFS) and overall survival (OS) were assessed according to tumour mutation (mt) status: RASmt/BRAFany, RASwt/BRAFmt and RASwt/BRAFwt. Multivariate Cox analyses were used to evaluate association between mutation status and death or progression. 389 patients were included in 65 centres and had a known tumour mutation status: 64 RASmt/BRAFany (21%), 33 RASwt/BRAFmt (13%) and 213 RASwt/BRAFwt (87%). Respective baseline characteristics were: median age 65, 64 and 63 years, male gender 63%, 64% and 69%, Eastern Cooperative Oncology Group performance status ≤ 1 75%, 76% and 79%, and liver-only metastases 39%, 33% and 40%. Median progression-free survival was 8.0 months [5.9-9.3] for patients with RASmt/BRAFany, 6.0 months [2.3-7.2] for patients with RASwt/BRAFmt, and 10.4 months [9.5-11.0] for patients with RASwt/BRAFwt. Respectively, median overall survival was 18.4 months [10.9-23.3], 9.7 months [6.9-16.6] and 29.3 months [26.3-36.1]. In multivariate analyses, progression (HR=2.71 [1.79-4.10]) and death (HR=2.79 [1.81-4.30]) were more likely for RASwt/BRAFmt vs. RASwt/BRAFwt patients. BRAF mutations were associated with markedly poorer outcomes in initially unresectable RASwt mCRC patients treated by cetuximab in first-line treatment."	"A Novel E2F1-EP300-VMP1 Pathway Mediates Gemcitabine-Induced Autophagy in Pancreatic Cancer Cells Carrying Oncogenic KRAS. Autophagy is an evolutionarily preserved degradation process of cytoplasmic cellular constituents, which participates in cell response to disease. We previously characterized VMP1 (Vacuole Membrane Protein 1) as an essential autophagy related protein that mediates autophagy in pancreatic diseases. We also demonstrated that VMP1-mediated autophagy is induced by HIF-1A (hypoxia inducible factor 1 subunit alpha) in colon-cancer tumor cell lines, conferring resistance to photodynamic treatment. Here we identify a new molecular pathway, mediated by VMP1, by which gemcitabine is able to trigger autophagy in human pancreatic tumor cell lines. We demonstrated that gemcitabine requires the VMP1 expression to induce autophagy in the highly resistant pancreatic cancer cells PANC-1 and MIAPaCa-2 that carry activated KRAS. E2F1 is a transcription factor that is regulated by the retinoblastoma pathway. We found that E2F1 is an effector of gemcitabine-induced autophagy and regulates the expression and promoter activity of VMP1. Chromatin immunoprecipitation assays demonstrated that E2F1 binds to the VMP1 promoter in PANC-1 cells. We have also identified the histone acetyltransferase EP300 as a modulator of VMP1 promoter activity. Our data showed that the E2F1-EP300 activator/co-activator complex is part of the regulatory pathway controlling the expression and promoter activity of VMP1 triggered by gemcitabine in PANC-1 cells. Finally, we found that neither VMP1 nor E2F1 are induced by gemcitabine treatment in BxPC-3 cells, which do not carry oncogenic KRAS and are sensitive to chemotherapy. In conclusion, we have identified the E2F1-EP300-VMP1 pathway that mediates gemcitabine-induced autophagy in pancreatic cancer cells. These results strongly support that VMP1-mediated autophagy may integrate the complex network of events involved in pancreatic ductal adenocarcinoma chemo-resistance. Our experimental findings point at E2F1 and VMP1 as novel potential therapeutic targets in precise treatment strategies for pancreatic cancer."	"Prevention of tobacco carcinogen-induced lung tumor development by a novel STAT3 decoy inhibitor. The signal transducer and activator of transcription 3 (STAT3) pathway is frequently overactive in non-small cell lung cancer (NSCLC), an often fatal disease with known risk factors including tobacco and chemical exposures. Whether STAT3 can be down-modulated to delay or prevent development of lung cancer resulting from an environmental exposure has not been previously tested. A circular oligonucleotide STAT3 decoy (CS3D) was used to treat mice previously exposed to the tobacco carcinogen nitrosamine 4-(methylnitrosamino)-1-(3-pyridyl)-1-butanone (NNK). CS3D contains a double-stranded STAT3 DNA response element sequence and interrupts STAT3 signaling by binding to STAT3 dimers, rendering them unable to initiate transcription at native STAT3 DNA binding sites. An intermittent course of CS3D decreased the development of airway preneoplasias by 42% at 1 week post-treatment, reduced the progression of preneoplasia to adenomas by 54% at 8 weeks post-treatment, and reduced the size and number of resulting lung tumors by 49.7% and 29.5%, respectively, at 20 weeks post-treatment. No toxicity was detected. A mutant cyclic oligonucleotide with no STAT3 binding ability was used as a control. Chemopreventive effects were independent of the KRAS mutational status of the tumors. In lungs harvested during and after the treatment course with CS3D, airway preneoplasias had reduced STAT3 signaling. Chemopreventive effects were accompanied by decreased VEGFA expression, ablated IL6, COX-2, and p-NFκB, and decreased pulmonary M2 macrophages and MDSC cells. Thus, down-modulation of STAT3 activity using a decoy molecule both reduced oncogenic signaling in the airway epithelium and favored a lung microenvironment with reduced immunosuppression."	"Comprehensive clinicopathological and molecular analysis of primary malignant melanoma of the oesophagus. This study was performed to elucidate the clinicopathological characteristics, genetic alterations, and therapeutic targets of primary malignant melanoma of the oesophagus (PMME). The clinicopathology and molecular pathology of 13 PMME and 10 skin malignant melanoma (SKMM) cases were analysed via next-generation sequencing (NGS) and immunohistochemistry. Three-year overall survival rate and the median survival time for PMME patients were 23.1% and 11.9 months, respectively. Three (23.1%) and eight (61.5%) PMME cases exhibited a papillary structure and lymph node metastasis, respectively. DNA and RNA hybridisation capture-based NGS analysis revealed that NF1 was the most frequently mutated gene (30%) in 10 of the PMME cases. Other mutations detected in PMME included SF3B1 (20%), KRAS (10%), BRCA2 (10%), KIT (10%), and TP53 (10%). Commonly detected BRAF mutations in SKMM were not detected in PMME. Immunohistochemistry and mutation status were concordant between p53/c-kit and TP53/KIT, respectively. Focal expression of PD-L1 was observed in one PMME sample. The tumour mutation burden in PMME was significantly lower than that in SKMM (p = 0.030). No PMME case displayed high microsatellite instability. RNA-sequencing revealed a distinctive pattern with respect to RNA expression. T-cell co-stimulation differed between PMME and SKMM. The RAS-MAPK pathway is one of the main pathways involved in PMME. The genetic profile of PMME was similar to that of mucosal/acral melanoma but differed from the SKMM profile. A subset of PMME may contain actionable mutations. Immunotherapy seemed to be less effective for most PMMEs in this series."	"Genomic characterization of Chinese ovarian clear cell carcinoma identifies driver genes by whole exome sequencing. Little is known about the genetic alterations characteristic of ovarian clear cell carcinoma (OCCC). Our aim was to identify targetable genomic alterations in this type of cancer. Forty-two OCCC formalin-fixed, paraffin-embedded (FFPE) tissue samples were analyzed by whole-exome sequencing (WES), and 74 FFPE tissue samples underwent targeted sequencing (TS) to confirm the relevant driver mutations. Cell proliferation was assessed by cell counting kit-8 (CCK8) assays. In the 42 samples, ARID1A (64.3%) and PIK3CA (28.5%) were frequently mutated, as were PPP2R1A (11.9%), PTEN (7.1%) and KRAS (4.8%), which have been reported in previous OCCC studies. We also detected mutations in MUC4 (28.6%), MAGEE1 (19%), and ARID3A (16.7%); associations with these genes have not been previously reported. The functional protein-activated pathways were associated with proliferation and survival (including the PI3K/AKT, TP53, and ERBB2 pathways) in 83% of OCCCs and with chromatin remodeling in 71% of OCCCs. Patients with alterations in MAGEE1 (64% in the targeted sequencing cohort) had worse clinical outcomes (log-rank p &lt; 0.05). A functional study revealed that two MAGEE1 mutants, one lacking two MAGE domains and the other containing two MAGE domains, significantly decreased the proliferative capacity of OCCC cells. We successfully identified novel genetic alterations in OCCC using whole-exome sequencing and targeted sequencing of OCCC patient samples and potential therapeutic targets for the treatment of this malignancy."	"Nicotine inhibits MAPK signaling and spheroid invasion in ovarian cancer cells. Nicotine is the major addictive component of cigarette smoke and although it is not considered carcinogenic, it can enhance or inhibit cancer cell proliferation depending on the type of cancer. Nicotine mediates its effects through nicotinic acetylcholine receptors (nAChRs), which are expressed in many different neuronal and non-neuronal cell types. We observed that the α4, α5, α7 subunits nAChRs were expressed in ovarian cancer (OC) cells. Nicotine inhibited the proliferation of SKOV3 and TOV112D OC cells, which have TP53 mutation and wild-type KRAS, but did not inhibit the proliferation of TOV21G or HEY OC cells, which have KRAS mutation and wild-type TP53. Exposure to nicotine for 96 h led to a significant reduction in the amounts of activated extracellular signal-regulated kinase (ERK) and activated p38 mitogen-activated protein kinases (MAPKs) in SKOV3 cells; and in activated ERK in TOV112D cells. In addition, SKOV3 and TOV112D invasion and spheroid formation was substantially inhibited by siRNA knockdown of mixed lineage kinase 3 (MLK3), or MEK inhibition. Nicotine treatment reduced SKOV3 and TOV112D spheroid invasion and compaction but did not significantly affect spheroid formation. Furthermore, SKOV3 spheroid invasion was blocked by p38 inhibition with SB202190, but not by MEK inhibition with U0126; whereas TOV112D spheroid invasion was reduced by MEK inhibition, but not by p38 inhibition. These results indicate that nicotine can suppress spheroid invasion and compaction as well as proliferation in SKOV3 and TOV112D OC cells; and p38 and ERK MAPK signaling pathways are important mediators of these responses."	"Proteogenomic Characterization Reveals Therapeutic Vulnerabilities in Lung Adenocarcinoma. To explore the biology of lung adenocarcinoma (LUAD) and identify new therapeutic opportunities, we performed comprehensive proteogenomic characterization of 110 tumors and 101 matched normal adjacent tissues (NATs) incorporating genomics, epigenomics, deep-scale proteomics, phosphoproteomics, and acetylproteomics. Multi-omics clustering revealed four subgroups defined by key driver mutations, country, and gender. Proteomic and phosphoproteomic data illuminated biology downstream of copy number aberrations, somatic mutations, and fusions and identified therapeutic vulnerabilities associated with driver events involving KRAS, EGFR, and ALK. Immune subtyping revealed a complex landscape, reinforced the association of STK11 with immune-cold behavior, and underscored a potential immunosuppressive role of neutrophil degranulation. Smoking-associated LUADs showed correlation with other environmental exposure signatures and a field effect in NATs. Matched NATs allowed identification of differentially expressed proteins with potential diagnostic and therapeutic utility. This proteogenomics dataset represents a unique public resource for researchers and clinicians seeking to better understand and treat lung adenocarcinomas."	"Ultra-fast detection and quantification of nucleic acids by amplification-free fluorescence assay. Two types of clinically important nucleic acid biomarkers, microRNA (miRNA) and circulating tumor DNA (ctDNA) were detected and quantified from human serum using an amplification-free fluorescence hybridization assay. Specifically, miRNAs hsa-miR-223-3p and hsa-miR-486-5p with relevance for rheumatoid arthritis and cancer related mutations BRAF and KRAS of ctDNA were directly measured. The required oligonucleotide probes for the assay were rationally designed and synthesized through a novel &quot;clickable&quot; approach which is time and cost-effective. With no need for isolating nucleic acid components from serum, the fluoresence-based assay took only 1 hour. Detection and absolute quantification of targets was successfully achieved despite their notoriously low abundance, with a precision down to individual nucleotides. Obtained miRNA and ctDNA amounts showed overall a good correlation with current techniques. With appropriate probes, our novel assay and signal boosting approach could become a useful tool for point-of-care measuring other low abundance nucleic acid biomarkers."	"Evaluation of Variances in VEGF-A-D and VEGFR-1-3 Expression in the Ishikawa Endometrial Cancer Cell Line Treated with Salinomycin and An-ti-Angiogenic/Lymphangiogenic Effect. In cancer, an excessive and uncontrolled process of creating new blood and lymphatic vessels that play a key role in the metastasis process can be observed. The vascular endothelial growth factor (VEGF-A,-B,-C,-D) family together with their specific receptors (VEGFR-1,-2,-3) plays a key role in these processes, therefore it would be reasonable to determine the correct pattern of their expression. The study aimed to assess the use of salinomycin as an anti-angiogenic and anti-lymphangiogenic drug during endometrial cancer by examining changes in the expression pattern of VEGF-A, VEGF-B, VEGF-C, VEGF-D, VEGFR-1, VEGFR-2, VEGFR-3 depending on the treatment period of the Ishikawa endometrial cancer cells with salinomycin in comparison to the control culture. To determine how influential salinomycin was on the expression of both mRNAs, 1 µM of the drug was added to the cell culture and then it was cultured all together for 12,24 and 48 hour periods. The cells that made up the control culture were not treated with salinomycin. To determine the changes in the expression profile of the selected genes we used the microarray, techniques: RTqPCR and ELISA (p&lt;0.05). For all isoforms of VEGF-A-D as well as receptors of VEGFR-1-3, a decrease in expression under the influence of salinomycin was noted. For VEGF-A and VEGFR-1, the difference in the expression between the culture treated with salinomycin in comparison to the control was statistically significant (p=0.0004). In turn for VEGF-B, the difference between the culture exposed for 24 hours in comparison to the control (p=0.00000) as well as the comparison between H48 vs C (p=0.00000) was statistically significant. In reference to VEGF-C, VEGFR-2, VEGFR-3 the statistical analysis showed the significant difference in expression between the culture incubated with the drug for 12,24 and 48 hours in comparison to the control as well as between the selected times. For all of these comparisons, p=0.00000 was utilized. Salinomycin changes the expression pattern of VEGF-A, VEGF-B, VEGF-C, VEGF-D, VEGFR-1, VEGFR-2, and VEGFR-3 in endometrial cancer cells. The obtained results suggest that salinomycin might exert the effect via VEGF signaling pathways."	"Peritoneal Cell-Free Tumor DNA as Biomarker for Peritoneal Surface Malignancies. Disease burden in patients with peritoneal carcinomatosis (PC) is difficult to estimate. We evaluate whether peritoneal cell-free tumor DNA can be used as a measure of disease burden. Malignant ascites or peritoneal lavage fluids were collected from patients with PC under approved IRB protocol. Cell-free DNA was extracted from peritoneal fluid. Droplet digital PCR (ddPCR) was performed using a commercially available KRAS G12/G13 screening kit. Mutant allele frequency (MAF) was calculated based on the numbers of KRAS wild-type and mutant droplets. Clinicopathological, treatment and outcome data were abstracted and correlated with MAF of cell-free KRAS mutant DNA. Cell-free KRAS mutant DNA was detected in 15/37 (40%) malignant peritoneal fluids with a MAF of 0.1% to 26.2%. While peritoneal cell-free KRAS mutant DNA was detected in all the patients with KRAS mutant tumors (N = 10), 3/16 (19%) patients with KRAS wild-type tumors also had peritoneal cell-free KRAS mutant DNA. We also found that 71% (5/7) of patients with disease amenable to cytoreductive surgery (CRS) had a MAF of &lt; 1% (median: 0.5%, range: 0.1-4.7%), while 75% (6/8) of patients with unresectable disease had a MAF of &gt; 1% (median: 4.4%, range: 0.1-26.2%). This pilot proof-of-principle study suggests that peritoneal cell-free tumor DNA detected by ddPCR may enable prediction of disease burden and a measure of disease amenable to CRS in patients with PC."	"Current therapy of advanced colorectal cancer according to RAS/RAF mutational status. Colorectal cancer is a clinically and molecularly heterogeneous disease. Currently, extended RAS and BRAF mutation testing is obligatory in routine clinical practice before starting any treatment in the metastatic setting. Treatment decision making also includes assessment of the clinical condition of the patient, definition of the treatment goal, and consideration of the primary tumor site. Biological treatment is part of the first-line drug combination unless contraindicated. Mutational status is significantly associated with the outcome of patients and is strongly predictive for anti-EGFR-targeted therapy. The prognosis of RAS mutant CRC is clearly inferior to wild-type cases. RAS remains an elusive target, and specific treatment options are not yet available. Recently, promising results of a direct KRAS G12C inhibitor have been reported; however, further confirmation is needed. The biomarker landscape in mCRC is evolving; new promising markers are awaited with the chance of more precise targeted treatment."	"HUWE1 cooperates with RAS activation to control leukemia cell proliferation and human hematopoietic stem cells differentiation fate. Acute myeloid leukemia (AML) is a poor prognosis hematopoietic malignance characterized by abnormal proliferation and differentiation of hematopoietic stem cells (HSCs). Although advances in treatment have greatly improved survival rates in young patients, in the elderly population, ~70% of patients present poor prognosis. A pan-cancer analysis on the TCGA cohort showed that AML has the second higher HUWE1 expression in tumor samples among all cancer types. In addition, pathway enrichment analysis pointed to RAS signaling cascade as one of the most important pathways associated to HUWE1 expression in this particular AML cohort. In silico analysis for biological processes enrichment also revealed that HUWE1 expression is correlated with 13 genes involved in myeloid differentiation. Therefore, to understand the role of HUWE1 in human hematopoietic stem and progenitor cells (HSPC) we constitutively expressed KRAS<sup>G12V</sup> oncogene concomitantly to HUWE1 knockdown in stromal co-cultures. The results showed that, in the context of KRAS<sup>G12V</sup>, HUWE1 significantly reduces cell cumulative growth and changes myeloid differentiation profile of HSPCs. Overall, these observations suggest that HUWE1 might contribute to leukemic cell proliferation and impact myeloid differentiation of human HSCs, thus providing new venues for RAS-driven leukemia targeted therapy approach."	"Epigenetic CRISPR screens identify Npm1 as a therapeutic vulnerability in non-small cell lung cancer. Despite advancements in treatment options, the overall cure and survival rates for non-small cell lung cancers (NSCLC) remain low. While small-molecule inhibitors of epigenetic regulators have recently emerged as promising cancer therapeutics, their application in patients with NSCLC is limited. To exploit epigenetic regulators as novel therapeutic targets in NSCLC, we performed pooled epigenome-wide CRISPR knockout screens in vitro and in vivo and identified the histone chaperone nucleophosmin 1 (NPM1) as a potential therapeutic target. Genetic ablation of Npm1 significantly attenuated tumor progression in vitro and in vivo. Furthermore, KRAS-mutant cancer cells were more addicted to NPM1 expression. Genetic ablation of Npm1 rewired the balance of metabolism in cancer cells from predominant aerobic glycolysis to oxidative phosphorylation and reduced the population of tumor-propagating cells. Overall, our results support NPM1 as a therapeutic vulnerability in NSCLC."	"The YAP-Interacting Phosphatase SHP2 can Regulate Transcriptional Coactivity and Modulate Sensitivity to Chemotherapy in Cholangiocarcinoma. The Hippo pathway effector Yes-associated protein (YAP) is localized to the nucleus and transcriptionally active in a number of tumor types, including a majority of human cholangiocarcinomas. YAP activity has been linked to chemotherapy resistance and has been shown to rescue KRAS and BRAF inhibition in RAS/RAF-driven cancers; however, the underlying mechanisms of YAP-mediated chemoresistance have yet to be elucidated. Herein, we report that the tyrosine phosphatase SHP2 directly regulates the activity of YAP by dephosphorylating pYAP<sup>Y357</sup> even in the setting of RAS/RAF mutations, and that diminished SHP2 phosphatase activity is associated with chemoresistance in cholangiocarcinomas. A screen for YAP-interacting tyrosine phosphatases identified SHP2, and characterization of cholangiocarcinomas cell lines demonstrated an inverse relationship between SHP2 levels and pYAP<sup>Y357</sup>. Human sequencing data demonstrated lower SHP2 levels in cholangiocarcinomas tumors as compared with normal liver. Cell lines with low SHP2 expression and higher levels of pYAP<sup>Y357</sup> were resistant to gemcitabine and cisplatin. In cholangiocarcinomas cells with high levels of SHP2, pharmacologic inhibition or genetic deletion of SHP2 increased YAP<sup>Y357</sup> phosphorylation and expression of YAP target genes, including the antiapoptotic regulator MCL1, imparting resistance to gemcitabine and cisplatin. In vivo evaluation of chemotherapy sensitivity demonstrated significant resistance in xenografts with genetic deletion of SHP2, which could be overcome by utilizing an MCL1 inhibitor. IMPLICATIONS: These findings demonstrate a role for SHP2 in regulating YAP activity and chemosensitivity, and suggest that decreased phosphatase activity may be a mechanism of chemoresistance in cholangiocarcinoma via a MCL1-mediated mechanism."	"ImmunoPET Detects Changes in Multi-RTK Tumor Cell Expression Levels in Response to Targeted Kinase Inhibition. Receptor tyrosine kinase (RTK) co-expression facilitates tumor resistance due to redundancies in the PI3K-AKT and KRAS-ERK signaling pathways, among others. Crosstalk between the oncogenic RTKs hepatocyte growth factor receptor (MET), epidermal growth factor receptor (EGFR), and human epidermal growth factor receptor 2 (HER2) are involved in tumor resistance to RTK-targeted therapies. Methods: In a relevant renal cell carcinoma (RCC) patient derived xenograft (PDX) model, we use zirconium-89 (89Zr)-labeled anti-RTKs antibodies (immunoPET) onartuzumab, panitumumab, and trastuzumab to monitor MET, EGFR, and HER2 protein levels, respectively, during treatment with agents to which the model was resistant (cetuximab) or sensitive (INC280 and trametinib). Results: Cetuximab treatment resulted in continued tumor growth, as well as an increase in all RTK protein levels at the tumor in vivo on immunoPET, and ex vivo at the cellular level. Conversely, following dual MET/MEK inhibition, tumor growth was significantly blunted, and corresponded with a decrease in RTK levels. Conclusion: These data show the utility of RTK-targeted immunoPET to annotate RTK changes in protein expression and inform tumor response to targeted therapies."	"Predicting gemcitabine delivery by <sup>18</sup>F-FAC PET in murine models of pancreatic cancer. [<sup>18</sup>F]-FAC (2'-deoxy-2'-[<sup>18</sup>F] fluoro-β-D-arabinofuranosylcytosine) has close structural similarity to gemcitabine, and thus offers the potential to image drug delivery to tumors. We compared tumor [<sup>18</sup>F]-FAC PET images to [<sup>14</sup>C]-gemcitabine levels, established ex vivo, in three mouse models of pancreatic cancer. We further modified tumor gemcitabine levels with injectable hyaluronidase (PEGPH20) to test whether changes in gemcitabine would be tracked by [<sup>18</sup>F]-FAC. Methods: [<sup>18</sup>F]-FAC was synthesized at MSKCC as described previously. Three patient derived xenografts (PDX) models were grown in the flanks of NSG mice. Mice were given PEGPH20 or vehicle i.v. 24 hours prior to co-injection of [<sup>18</sup>F]-FAC and [<sup>14</sup>C]-gemcitabine. Animals were euthanized and imaged one hour after tracer administration. Tumor and muscle uptake of both [<sup>18</sup>F]-FAC and [<sup>14</sup>C]-gemcitabine were obtained ex vivo. The efficacy of PEPGPH20 was validated through staining with hyaluronic acid binding protein. Additionally, an organoid culture initiated from a KPC (Pdx-1 Cre LSL-Kras G12D LSL-p53 R172H) tumor, was used to generate orthotopically growing tumors in C57BL/6J mice, which were then serially transplanted. Animals were injected with PEGPH20 and <sup>14</sup>C gemcitabine as described above to validate increased drug uptake by ex vivo assay. PET-MR images were obtained using a PET insert on a 7T Brucker MR scanner. Animals were imaged immediately before injection with PEGPH20, and again 24 hours later. Results: Tumor/muscle ratios of [<sup>14</sup>C]-gemcitabine and [<sup>18</sup>F]-FAC correlated well across all PDX models and treatments (R2 = 0.78). There was a significant increase in the tumor PET signal in PEGPH20 treated PDX animals which was matched in ex vivo counts for 2 out of 3 models. In KPC-derived tumors, PEGPH20 raised [<sup>14</sup>C]-gemcitabine levels (T/M 1.9 vs 2.4, control vs treated, P = 0.013). PET-MR [<sup>18</sup>F]-FAC images showed a 12% increase in tumor [<sup>18</sup>F]-FAC uptake following PEGPH20 treatment (P = 0.023). PEGPH20 treated animals uniformly displayed clear reductions in hyaluronic acid staining. Conclusion: [<sup>18</sup>F]-FAC PET was shown to be a good surrogate for gemcitabine uptake, and when combined with MR, to successfully determine drug uptake in tumors growing in the pancreas. PEGPH20 had moderate effects on tumor uptake of gemcitabine."	"Pathogenesis of bowel endometriosis. The pathogenesis of bowel endometriosis is multifactorial. There is a predilection for disease of the rectum/sigmoid colon because refluxed endometrium is more likely to settle in the pouch of Douglas and its movement is delimited by the sigmoid colon, in addition to the close proximity of the rectum/sigmoid to posterior extrinsic uterine adenomyosis and to ovarian endometriomas. Once situated, deep bowel endometriosis has features of invasion, angiogenesis, and fibrosis (repeated tissue injury and repair), with emerging research on oxidative stress and the microbiome. Furthermore, deep bowel endometriosis is associated with neurogenesis and/or the recruitment of local nerve fibers and is capable of invading existing nerves, which in turn may also promote fibrosis. Recently, somatic cancer driver mutations (e.g., in KRAS) were identified in deep bowel endometriosis, which may play a role in the genetic/epigenetic theory of endometriosis. In the future, it is possible that bowel endometriosis could be classified based on molecular features."	"Image based cellular contractile force evaluation with small-world network inspired CNN: SW-UNet. We propose an image based cellular contractile force evaluation method using a machine learning technique. We use a special substrate that exhibits wrinkles when cells grab the substrate and contract, and the wrinkles can be used to visualize the force magnitude and direction. In order to extract wrinkles from the microscope images, we develop a new CNN (convolutional neural network) architecture SW-UNet (small-world U-Net), which is a CNN that reflects the concept of the small-world network. The SW-UNet shows better performance in wrinkle segmentation task compared to other methods: the error (Euclidean distance) of SW-UNet is 4.9 times smaller than the 2D-FFT (fast Fourier transform) based segmentation approach, and is 2.9 times smaller than U-Net. As a demonstration, here we compare the contractile force of U2OS (human osteosarcoma) cells and show that cells with a mutation in the KRAS oncogene show larger force compared to wild-type cells. Our new machine learning based algorithm provides us an efficient, automated and accurate method to evaluate the cell contractile force."	"circRNA_100859 functions as an oncogene in colon cancer by sponging the miR-217-HIF-1α pathway. Circular RNAs (circRNAs) play an important role in cancer development and progression by regulating gene expression. The present study aimed to investigate the function of circRNA_100859 in colon cancer. circRNA expression profiles from a human circRNAs chip were analyzed. The effects of circRNA_100859 on cell proliferation and apoptosis were assessed in vitro and interactions between circRNA_100859 and its micro (mi)RNA and target genes were analyzed. The diagnostic and prognostic significance of circRNA_100859 was also investigated. It was identified that circRNA_100859 was overexpressed in colon cancer tissues and promoted cell proliferation and inhibited cell apoptosis. Additionally, bioinformatics and a dual-luciferase reporter assay confirmed that circRNA_100859 acted as a miR-217 sponge, and miR-217 directly targeted hypoxia-inducible factor (HIF)-1α. Rescue assays demonstrated that HIF-1α protein and mRNA expression levels and cell proliferation were regulated by the circRNA_100859/miR-217 axis (P&lt;0.05). Furthermore, statistical analysis showed that the circRNA_100859-miR-217-HIF-1α axis was associated with Tumor-Node-Metastasis (TNM) stage, histological grade, and KRAS mutations, and also showed high diagnostic and prognostic value for patients with colon cancer (P&lt;0.05). Therefore, it was concluded that circRNA_100859 functions as an oncogene in colon cancer by sponging the miR-217-HIF-1α pathway. In addition, the circRNA_100859-miR-217-HIF-1α axis may serve as a novel diagnostic and prognostic biomarker for patients with colon cancer."	"NF1-like optic pathway gliomas in children: clinical and molecular characterization of this specific presentation. Pediatric neurofibromatosis type 1 (NF1)-associated optic pathway gliomas (OPGs) exhibit different clinico-radiological features, treatment, and outcome compared with sporadic OPGs. While NF1-associated OPGs are caused by complete loss-of-function of the NF1 gene, other genetic alterations of the RAS-MAPK pathway are frequently described in the sporadic cases. We identified a group of patients who presented OPGs with typical radiological features of NF1-associated OPGs but without the NF1 diagnostic criteria. We aim to investigate into the possible molecular mechanisms underlying this &quot;NF1-like&quot; pediatric OPGs presentation. We analyzed clinico-radiological features of 16 children with NF1-like OPGs and without NF1 diagnostic criteria. We performed targeted sequencing of the NF1 gene in constitutional samples (n = 16). The RAS-MAPK pathway major genes were sequenced in OPG tumor samples (n = 11); BRAF FISH and IHC analyses were also performed. In one patient's blood and tumor samples, we identified a NF1 nonsense mutation (exon 50: c.7285C&gt;T, p.Arg2429*) with ~8% and ~70% VAFs, respectively, suggesting a mosaic NF1 mutation limited to the brain (segmental NF1). This patient presented signs of neurodevelopmental disorder. We identified a somatic alteration of the RAS-MAPK pathway in eight tumors: four BRAF activating p.Val600Glu mutations, three BRAF:KIAA oncogenic fusions, and one putative gain-of-function complex KRAS indel inframe mutation. NF1-like OPGs can rarely be associated with mosaic NF1 that needs specific constitutional DNA analyses for diagnosis. Further studies are warranted to explore unknown predisposition condition leading to the NF1-like OPG presentation, particularly in patients with the association of a neurodevelopmental disorder."	"Impact of concurrent genomic alterations in epidermal growth factor receptor (EGFR)-mutated lung cancer. Comprehensive characterization of the genomic landscape of epidermal growth factor receptor (EGFR)-mutated lung cancers have identified patterns of secondary mutations beyond the primary oncogenic EGFR mutation. These include concurrent pathogenic alterations affecting p53 (60-65%), RTKs (5-10%), PIK3CA/KRAS (3-23%), Wnt (5-10%), and cell cycle (7-25%) pathways as well as transcription factors such as MYC and NKX2-1 (10-15%). The majority of these co-occurring alterations were detected or enriched in samples collected from patients at resistance to tyrosine kinase inhibitor (TKI) treatment, indicating a potential functional role in driving resistance to therapy. Of note, these co-occurring tumor genomic alterations are not necessarily mutually exclusive, and evidence suggests that multiple clonal and sub-clonal cancer cell populations can co-exist and contribute to EGFR TKI resistance. Computational tools aimed to classify, track and predict the evolution of cancer clonal populations during therapy are being investigated in pre-clinical models to guide the selection of combination therapy switching strategies that may delay the development of treatment resistance. Here we review the most frequently identified tumor genomic alterations that co-occur with mutated EGFR and the evidence that these alterations effect responsiveness to EGFR TKI treatment."	"Sub-solid lung adenocarcinoma in Asian versus Caucasian patients: different biology but similar outcomes. Asian and Caucasian patients with lung cancer have been compared in several database studies, with conflicting findings regarding survival. However, these studies did not include proportion of ground-glass opacity or mutational status in their analyses. Asian patients commonly develop sub-solid lung adenocarcinomas that harbor EGFR mutations, which have a better prognosis. We hypothesized that among patients undergoing surgery for sub-solid lung adenocarcinomas, Asian patients have better survival compared to Caucasian patients. We identified Asian and Caucasian patients who underwent surgical resection for a sub-solid lung adenocarcinoma from 2002 to 2015 at our institution. Sub-solid was defined as ≥10% ground-glass opacity on preoperative CT scan or ≥10% lepidic component on surgical pathology. Time-to-event multivariable analysis was performed to determine which characteristics were associated with recurrence and survival. Two hundred twenty-four patients were included with median follow up 48 months. Asian patients were more likely to be never smokers (76.3% vs. 29.0%, P&lt;0.01) and have an EGFR mutation (69.4% vs. 25.6% of those tested, P&lt;0.01), while Caucasian patients were more likely to have a KRAS mutation (23.5% vs. 4.9% of those tested, P&lt;0.01). There was a trend towards Asian patients having a higher proportion of ground-glass opacity (38.8% vs. 30.5%, P=0.11). Time-to-event multivariable analysis showed that higher proportion of ground-glass opacity was significantly associated with better recurrence-free survival (HR 0.76 per 20% increase, P=0.02). However, mutational status and race did not have a significant impact on recurrence-free or overall survival. Asian and Caucasian patients with sub-solid lung adenocarcinoma have different tumor biology, but recurrence-free and overall survival after surgical resection is similar."	"KRAS Mutation-Responsive miR-139-5p inhibits Colorectal Cancer Progression and is repressed by Wnt Signaling. Introduction: Colorectal cancer (CRC) frequently harbors KRAS mutations that result in chemoresistance and metastasis. MicroRNAs (miRNAs) are usually dysregulated and play important regulatory roles in tumor progression. However, the KRAS mutation-responsive miRNA profile in CRC remains uninvestigated. Methods: miR-139-5p was identified and evaluated by small RNA sequencing, qRT-PCR and in situ hybridization. The roles of miR-139-5p in CRC cells with and without KRAS mutation were determined by Cell Counting Kit-8 (CCK-8), colony formation, flow cytometry and transwell assays in vitro and by tumorigenesis and metastasis assays in vivo. Microarrays followed by bioinformatic analyses, luciferase reporter assays and Western blotting were applied for mechanistic studies. Results: miR-139-5p was significantly downregulated in KRAS-mutated CRC cells and tissues compared with their wild-type counterparts. Low miR-139-5p expression was associated with aggressive phenotypes and poor prognosis in CRC patients. miR-139-5p overexpression inhibited CRC cell proliferation, migration and invasion in vitro, sensitized tumors to chemotherapy, and impaired tumor growth and metastasis in vivo. Transcriptomic profiling identified multiple modulators in the Ras (JUN and FOS) and Wnt (CTNNB1 and DVL1) signaling pathways and the epithelial-to-mesenchymal transition (EMT) process (ZEB1) as direct targets of miR-139-5p, and inverse correlations were confirmed in CRC clinical tissues. Aberrantly activated Wnt signaling in KRAS-mutant cells was demonstrated to transcriptionally repress miR-139-5p through TCF4, forming a miR-139-5p/Wnt signaling double-negative feedback loop. Conclusions: We identified miR-139-5p as a KRAS-responsive miRNA and demonstrated its involvement in CRC progression. KRAS mutation disrupted the miR-139-5p/Wnt signaling reciprocal negative feedback mechanism, which might cause miR-139-5p downregulation and derepression of oncogenic signaling pathways and EMT. These results reveal a transcriptional regulatory mode of KRAS-driven malignant transformation and highlight miR-139-5p as a novel regulator of crosstalk between the Ras and Wnt signaling pathways in CRC."	"κB-Ras and Ral GTPases regulate acinar to ductal metaplasia during pancreatic adenocarcinoma development and pancreatitis. Pancreatic ductal adenocarcinoma (PDAC) is associated with high mortality and therapy resistance. Here, we show that low expression of κB-Ras GTPases is frequently detected in PDAC and correlates with higher histologic grade. In a model of KRas<sup>G12D</sup>-driven PDAC, loss of κB-Ras accelerates tumour development and shortens median survival. κB-Ras deficiency promotes acinar-to-ductal metaplasia (ADM) during tumour initiation as well as tumour progression through intrinsic effects on proliferation and invasion. κB-Ras proteins are also required for acinar regeneration after pancreatitis, demonstrating a general role in control of plasticity. Molecularly, upregulation of Ral GTPase activity and Sox9 expression underlies the observed phenotypes, identifying a previously unrecognized function of Ral signalling in ADM. Our results provide evidence for a tumour suppressive role of κB-Ras proteins and highlight low κB-Ras levels and consequent loss of Ral control as risk factors, thus emphasizing the necessity for therapeutic options that allow interference with Ral-driven signalling."	"Genetic characteristics of gastric-type mucinous carcinoma of the uterine cervix. Gastric-type mucinous carcinoma (GAS) is a recently established variant of endocervical mucinous adenocarcinoma that is characterized as being unrelated to HPV and having aggressive behavior and chemoresistance. GAS has a distinct morphology resembling nonneoplastic gastric glands or pancreaticobiliary adenocarcinoma, and their possible genetic similarity has been posed. In this study, next-generation sequencing was performed in 21 GAS cases using a customized panel including 94 cancer-associated genes. A total of 54 nonsynonymous somatic mutations were detected with an average mutation rate of 2.6 per lesion (range: 0-9). The most frequently mutated gene was TP53 (11/21, 52.4%), followed by STK11, HLA-B, PTPRS (4/21, 19.0%), FGFR4 (3/21, 14.3%), GNAS, BRCA2, ELF3, ERBB3, KMT2D, SLX4 (2/21, 9.5%), CDH1, EPCAM, KRAS, MLH1, RNF43, SNAI1, TWIST1, ZEB1, ZEB2, and so on (1/21, 4.8%). The mutated genes were mostly involved in signal transduction, DNA damage repair, and epithelial-mesenchymal transition (EMT). Correlation of TP53 mutation and p53 protein expression demonstrated that 31.3% with abnormal p53 expression harbored wild-type TP53. Compared to genetic features of gastric and pancreaticobiliary adenocarcinoma, TP53 mutations were frequent in both GAS and gastrointestinal adenocarcinoma. While KMT2D, ERBB3, and RNF43 mutations were shared between GAS and gastric adenocarcinoma, highly mutated genes in pancreatic ductal adenocarcinoma such as KRAS, SMAD4, and CDKN2A were rarely mutated in GAS. Of frequently mutated genes in cholangiocarcinoma, BAP1 and HLA-B were identified in GAS. Frequent EMT-related gene mutations suggested a possible role of EMT-related pathways in tumor dissemination and chemoresistance of GAS. In addition, GAS shared some genetic features with gastrointestinal adenocarcinoma. These findings provide a clue in understanding the biological basis of GAS."	"Survival benefit of surgical resection after first-line triplet chemotherapy and bevacizumab in patients with initially unresectable metastatic colorectal cancer. Surgical resection of metastatic disease in patients with initially non-resectable colorectal cancer (CRC) has improved overall survival. Intensified chemotherapy regimens have increased the probability of converting unresectable metastasis to resectable. Here, we report the result of combining intensive chemotherapy (triplet) and surgical resection of metastatic lesions in patients with metastatic CRC. Patients with unresectable metastatic CRC were enrolled in phase I/II trial of triplet chemotherapy consisting of capecitabine, oxaliplatin, irinotecan, and bevacizumab. Patients were given 5-8 cycles induction chemotherapy of the above regimen followed by maintenance capecitabine and bevacizumab until disease progression, unacceptable toxicity, or patient request. All patients were assessed at a multidisciplinary conference for possible surgical resection of their metastatic disease at the time of inclusion in the trial and 2 monthly intervals thereafter. Patients who underwent R0 resection of their metastatic disease received adjuvant oxaliplatin and capecitabine to complete a total of 6 months of chemotherapy. Fifty-three patients were enrolled. The median age was 52 years (range 23-74), 29 (55%) were males, ECOG PS 0-1 was 13 (66%), 11 (42%) had a right-sided tumor, 29 (55%) had resection of their primary tumor, 22 (42%) had a single metastatic site, and 8 (15.1%) had a liver-limited disease. Thirteen patients (24.5%) underwent surgical resection of residual metastatic disease +/- the primary tumor with 10 (18.9%) of them were R0. The surgical group had a higher incidence of males compared to the non-surgical group (69.3% vs 47.2%, p = 0.2), equal performance status, lower median number of metastatic sites (1 vs 2, p = 0.09), higher mutant Kras (53.8% vs 34.2%, p = 0.3), and higher response rate (84.6% vs 56.2%, p = 0.3). With a median follow-up duration of 89 months, the median PFS for the whole group was 16.1 months [95% confidence interval (CI) 9.1-20] and the median OS was 28.2 months (95% CI 22.5-53.3). The median PFS for the surgery group was 18.9 months (95% CI 12.6-not reached) compared to 9.6 months (95% CI 7.0-18.3) for the non-surgical group, log-rank p = 0.0165. The median OS for both groups was not reached (95% CI 53.3-not reached) and 23.2 months (95% CI 17.0-28.4) respectively, log-rank p = 0.0006. Five-year PFS and OS for the surgery group were 46.2% and 67.6% respectively. Patients with unresectable metastatic CRC and fit for triplet chemotherapy should have the benefit of combining this intensified regimen and surgical resection of their metastatic disease if possible. Clinicaltrials.gov , NCT01311050 , registered March 6, 2011, retrospectively registered."	"Proteomics reveals a therapeutic vulnerability via the combined blockade of APE1 and autophagy in lung cancer A549 cells. Drug resistance is a major cause of therapeutic failure that is often associated with elevated autophagy and apurinic/apyrimidinic endonuclease 1 (APE1) expression. Herein, we investigated the role of APE1 and autophagy in A549 cells treated with cisplatin. SILAC proteomics was applied to obtain a panoramic view of cisplatin treatment in KRAS<sup>G12S</sup>-mutant A549 cells. Quantity analysis of cellular apoptosis and autophagy was based on flow cytometry. Western blotting was used to examine the expression levels of apoptosis- and autophagy-related proteins, as well as those of APE1. Knockdown of APE1 was achieved by RNA interference. Immunoprecipitation was further employed to reveal the molecular interaction of APE1, p53, and LC3 when A549 cells were exposed to cisplatin. SILAC proteomics revealed that 72 canonical pathways, including base excision repair (BER) and autophagy signalling pathways, were regulated after cisplatin treatment in A549 cells. Cisplatin markedly induced autophagy and apoptosis in A549 cells, accompanied by remarkable APE1 increase. Suppression of autophagy enhanced the inhibition effect of cisplatin on cell growth, proliferation, and colony formation; however, APE1 inhibition enhanced the expression of LC3-I/II, suggesting that APE1 and autophagy are compensatory for cell survival to evade the anticancer action of cisplatin. Immunoprecipitation results revealed the triple complex of APE1-p53-LC3 in response to cisplatin plus CQ in A549 cells. Dual inhibition of APE1 and autophagy significantly enhanced cisplatin-induced apoptosis, which eventually overcame drug resistance in cisplatin-resistant A549 cells. Dual inhibition of APE1 and autophagy greatly enhances apoptosis in parental KRAS<sup>G12S</sup>-mutant A549 cells and cisplatin-resistant A549 cells via regulation of APE1-p53-LC3 complex assembly, providing therapeutic vulnerability to overcome cisplatin resistance in the context of KRAS<sup>G12S</sup>-mutant lung cancer."	"Characterization of TNNC1 as a Novel Tumor Suppressor of Lung Adenocarcinoma. In this study, we describe a novel function of TNNC1 (Troponin C1, Slow Skeletal and Cardiac Type), a component of actin-bound troponin, as a tumor suppressor of lung adenocarcinoma (LUAD). First, the expression of TNNC1 was strongly down-regulated in cancer tissues compared to matched normal lung tissues, and down-regulation of TNNC1 was shown to be strongly correlated with increased mortality among LUAD patients. Interestingly, TNNC1 expression was enhanced by suppression of KRAS, and ectopic expression of TNNC1 in turn inhibited KRAS<sup>G12D</sup>-mediated anchorage independent growth of NIH3T3 cells. Consistently, activation of KRAS pathway in LUAD patients was shown to be strongly correlated with down-regulation of TNNC1. In addition, ectopic expression of TNNC1 inhibited colony formation of multiple LUAD cell lines and induced DNA damage, cell cycle arrest and ultimately apoptosis. We further examined potential correlations between expression levels of TNNC1 and various clinical parameters and found that low-level expression is significantly associated with invasiveness of the tumor. Indeed, RNA interference-mediated down-regulation of TNNC1 led to significant enhancement of invasiveness in vitro. Collectively, our data indicate that TNNC1 has a novel function as a tumor suppressor and is targeted for down-regulation by KRAS pathway during the carcinogenesis of LUAD."	"Drugging &quot;Undruggable&quot; Genes for Cancer Treatment: Are we Making Progress? RAS, TP53 (p53) and MYC are amongst the most frequently altered driver genes in cancer. Thus, RAS is the most frequently mutated oncogene, MYC the most frequently amplified gene and TP53 the most frequently mutated tumour suppressor gene and overall the most frequently mutated gene in cancer. Theoretically, therefore, these genes are highly attractive targets for cancer treatment. However, as the protein products of each of these genes lack an accessible hydrophobic pocket into which low molecular weight compounds might bind with high affinity, they have proved difficult to target and have traditionally been referred to as &quot;undruggable&quot;. Despite this branding, several low molecular weight compounds targeting each of these proteins have recently been reported to have anticancer activity in preclinical models. Indeed, several drugs inhibiting mutant KRAS, MYC overexpression or reactivating mutant p53 have undergone or are currently undergoing clinical trials. For targeting mutant KRAS and reactivating mutant p53, trials have progressed to a phase III stage, i.e., the mutant-p53 reactivating drug, APR-246 is currently being investigated in patients with myelodysplastic syndrome (MDS) and the RAS inhibitor, rigosertib is also undergoing evaluation in patients with MDS. Although there appears to be no directly acting MYC inhibitor currently being tested in a clinical trial, an anti-MYC compound, known as OmoMYC has been extensively validated in multiple preclinical models and is being developed for clinical evaluation. Based on current evidence, the traditional perception of RAS, p53 and MYC as being &quot;undruggable&quot; would appear to be coming to an end. This article is protected by copyright. All rights reserved."	"Mutation profile of primary subungual melanomas in Caucasians. Specific genomic profile of cutaneous melanomas is related to UVR exposure, which exerts biological and therapeutic impact. Subungual melanoma (SUM) is an exceedingly rare disease; therefore, it is not well characterized. SUM pathogenesis is not related to UVR induced DNA damage and expected to differ from other melanoma subtypes. Our study aimed to define the mutation profile of SUM in Caucasians. Next-generation sequencing-based genomic analysis was used to identify frequently mutated loci in 50 cancer-related genes in 31 SUM primary tumors. The most abundant mutations in SUM were found in KIT - in 13% of cases and NRAS - also in 13%, while BRAF - only in 3% of cases. Our findings confirmed a high frequency of KIT and NRAS mutations in SUM, as well as a low incidence of BRAF mutations. We reported novel KRAS, CTNNB1, TP53, ERBB2, and SMAD4 mutations in SUM. Our findings provide new insights into the molecular pathogenesis of SUM."	"The role of mucin cell-free DNA detection as a new marker for the study of acellular pseudomyxoma peritonei of appendicular origin by liquid biopsy. Acellular pseudomyxoma peritonei (aPMP) is a rare peritoneal malignancy characterized by the accumulation of large amounts of mucin (lacking tumor cells) in the peritoneum. Many cases account for several kilograms of mucin to be screened by the pathologist. This is a comprehensive study of three patients with aPMP, whose tumors showed KRAS mutation, allowing for the tracking of this marker by liquid biopsy. Pre and post-surgery plasma, and mucin removed during cytoreductive surgery were collected from the patients. KRAS mutations were analyzed using droplet digital polymerase chain reaction (ddPCR). Mucin was injected in mice. KRAS and cytokine levels were measured in plasma of the mice using ddPCR and a magnetic bead-based assay. Mucin microbiome was analyzed by 16S rRNA sequencing. KRAS mutations were detected in mucin cell-free DNA (cfDNA) from the three patients but not in the pre or post-surgery plasma. Electron microscopy detected microparticles (diameter &lt;0.4 µm) in mucin. Mucin from one patient grew up inside the peritoneal cavity of mice and human KRAS was identified in mucin cfDNA, but not in plasma. All mucins showed the same bacterial profile. Cytokine levels were slightly altered in mice. The three aPMP patients included in this study shared some common aspects: the absence of tumor cells in mucin, the presence of KRAS mutated cfDNA in mucin, and the absence of this tumor-derived mutation in the bloodstream, providing additional information to the routine pathological examinations and suggesting that mucin cfDNA could potentially play a role in aPMP recurrence and prognosis."	"Beta 1 integrin signaling mediates pancreatic ductal adenocarcinoma resistance to MEK inhibition. Pancreatic cancer, one of the deadliest human malignancies, has a dismal 5-year survival rate of 9%. KRAS is the most commonly mutated gene in pancreatic cancer, but clinical agents that directly target mutant KRAS are not available. Several effector pathways are activated downstream of oncogenic Kras, including MAPK signaling. MAPK signaling can be inhibited by targeting MEK1/2; unfortunately, this approach has been largely ineffective in pancreatic cancer. Here, we set out to identify mechanisms of MEK inhibitor resistance in pancreatic cancer. We optimized the culture of pancreatic tumor 3D clusters that utilized Matrigel as a basement membrane mimetic. Pancreatic tumor 3D clusters recapitulated mutant KRAS dependency and recalcitrance to MEK inhibition. Treatment of the clusters with trametinib, a MEK inhibitor, had only a modest effect on these cultures. We observed that cells adjacent to the basement membrane mimetic Matrigel survived MEK inhibition, while the cells in the interior layers underwent apoptosis. Our findings suggested that basement membrane attachment provided survival signals. We thus targeted integrin β1, a mediator of extracellular matrix contact, and found that combined MEK and integrin β1 inhibition bypassed trametinib resistance. Our data support exploring integrin signaling inhibition as a component of combination therapy in pancreatic cancer."	"Microenvironmental activation of Nrf2 restricts the progression of Nrf2-activated malignant tumors. The transcription factor Nrf2 activates transcription of cytoprotective genes during oxidative and electrophilic insults. Nrf2 activity is regulated by Keap1 in a stress-dependent manner in normal cells, and somatic loss-of-function mutations of Keap1 are known to induce constitutive Nrf2 activation, especially in lung adenocarcinomas, conferring survival and proliferative benefits to tumors. Therefore, several therapeutic strategies that aim to inhibit Nrf2 in tumors have been developed for the treatment of Nrf2-activated cancers. Here we addressed whether targeting Nrf2 activation in the microenvironment can suppress the progression of Nrf2-activated tumors. We combined two types of Keap1-flox mice expressing variable levels of Keap1 with a Kras-driven adenocarcinoma model to generate Keap1-deficient lung tumors surrounded by normal or Keap1-knockdown host cells. In this model system, activation of Nrf2 in the microenvironment prolonged the survival of Nrf2-activated tumor-bearing mice. The Nrf2-activated microenvironment suppressed tumor burden; in particular, preinvasive lesion formation was significantly suppressed. Notably, loss of Nrf2 in bone marrow-derived cells in Nrf2-activated host cells appeared to counteract the suppression of Nrf2-activated cancer progression. Thus, these results demonstrate that microenvironmental Nrf2 activation suppresses the progression of malignant Nrf2-activated tumors and that Nrf2 activation in immune cells at least partially contributes to these suppressive effects."	"The molecular basis for immune dysregulation by the hyper-activated E62K mutant of the GTPase RAC2. The RAS-related C3 botulinum toxin substrate 2 (RAC2) is a member of the RHO sub-class of RAS superfamily GTPases required for proper immune function. An activating mutation in a key switch II region of RAC2 (RAC2<sup>E62K</sup>) involved in recognizing modulatory factors and effectors has been identified in patients with common variable immune deficiency (CVID). To better understand how the mutation dysregulates RAC2 function, we evaluated the structure and stability, GEF and GAP activity, and effector binding of RAC2<sup>E62K</sup> Our findings indicate the E62K mutation does not alter RAC2 structure or stability. However, it does alter GEF specificity, as RAC2<sup>E62K</sup> is activated by the DOCK GEF, DOCK2, but not by the Dbl Homology GEF, TIAM1, both of which activate the parent protein. Our previous data further showed that the E62K mutation impairs GAP activity for RAC2<sup>E62K</sup> As this disease mutation is also found in RAS GTPases, we assessed GAP-stimulated GTP hydrolysis for KRAS and observed a similar impairment, suggesting the mutation plays a conserved role in GAP activation. We also investigated whether the E62K mutation alters effector binding, as activated RAC2 binds effectors to transmit signaling through effector pathways. We find RAC2<sup>E62K</sup> retains binding to an NADPH oxidase (NOX2) subunit, p67phox, and to the RAC binding domain of p21-activated kinase (PAK), consistent with our earlier findings. Taken together, our findings indicate that the RAC2<sup>E62K</sup> mutation promotes immune dysfunction by promoting RAC2 hyper-activation, altering GEF specificity, and impairing GAP function yet retaining key effector interactions."	"Characterization of Chilean patients with sporadic colorectal cancer according to the three main carcinogenic pathways: Microsatellite instability, CpG island methylator phenotype and Chromosomal instability. Molecular classification of colorectal cancer is difficult to implement in clinical settings where hundreds of genes are involved, and resources are limited. This study aims to characterize the molecular subtypes of patients with sporadic colorectal cancer based on the three main carcinogenic pathways microsatellite instability (MSI), CpG island methylator phenotype (CIMP), and chromosomal instability (CIN) in a Chilean population. Although several reports have characterized colorectal cancer, most do not represent Latin-American populations. Our study includes 103 colorectal cancer patients who underwent surgery, without neoadjuvant treatment, in a private hospital between 2008 and 2017. MSI, CIN, and CIMP status were assessed. Frequent mutations in KRAS, BRAF, and PIK3CA genes were analyzed by Sanger sequencing, and statistical analysis was performed by Fisher's exact and/or chi-square test. Survival curves were estimated with Kaplan-Meier and log-rank test. Based on our observations, we can classify the tumors in four subgroups, Group 1: MSI-high tumors (15%) are located in the right colon, occur at older age, and 60% show a BRAF mutation; Group 2: CIN-high tumors (38%) are in the left colon, and 26% have KRAS mutations. Group 3: [MSI/CIN/CIMP]-low/negative tumors (30%) are left-sided, and 39% have KRAS mutations; Group 4: CIMP-high tumors (15%) were more frequent in men and left side colon, with 27% KRAS and 7% presented BRAF mutations. Three percent of patients could not be classified. We found that CIMP-high was associated with a worse prognosis, both in MSI-high and MSI stable patients (p = 0.0452). Group 3 (Low/negative tumors) tend to have better overall survival compared with MSI-high, CIMP-high, and CIN-high tumors. This study contributes to understanding the heterogeneity of tumors in the Chilean population being one of the few characterizations performed in Latin-America. Given the limited resources of these countries, these results allow to improve molecular characterization in Latin-American colorectal cancer populations and confirm the possibility of using the three main carcinogenic pathways to define therapeutic strategies."	"MEK activation modulates glycolysis and supports suppressive myeloid cells in TNBC. Triple-negative breast cancers (TNBCs) are heterogeneous and aggressive, with high mortality rates. TNBCs frequently respond to chemotherapy, yet many patients develop chemoresistance. The molecular basis and roles for tumor cell-stromal crosstalk in establishing chemoresistance are complex and largely unclear. Here we report molecular studies of paired TNBC patient-derived xenografts (PDXs) established before and after the development of chemoresistance. Interestingly, the chemoresistant model acquired a distinct KRASQ61R mutation that activates K-Ras. The chemoresistant KRAS-mutant model showed gene expression and proteomic changes indicative of altered tumor cell metabolism. Specifically, KRAS-mutant PDXs exhibited increased redox ratios and decreased activation of AMPK, a protein involved in responding to metabolic homeostasis. Additionally, the chemoresistant model exhibited increased immunosuppression, including expression of CXCL1 and CXCL2, cytokines responsible for recruiting immunosuppressive leukocytes to tumors. Notably, chemoresistant KRAS-mutant tumors harbored increased numbers of granulocytic myeloid-derived suppressor cells (gMDSCs). Interestingly, previously established Ras/MAPK-associated gene expression signatures correlated with myeloid/neutrophil-recruiting CXCL1/2 expression and negatively with T cell-recruiting chemokines (CXCL9/10/11) across patients with TNBC, even in the absence of KRAS mutations. MEK inhibition induced tumor suppression in mice while reversing metabolic and immunosuppressive phenotypes, including chemokine production and gMDSC tumor recruitment in the chemoresistant KRAS-mutant tumors. These results suggest that Ras/MAPK pathway inhibitors may be effective in some breast cancer patients to reverse Ras/MAPK-driven tumor metabolism and immunosuppression, particularly in the setting of chemoresistance."	"Viscous Media Slow Down the Decay of the Key Intermediate in Bacterial Bioluminescent Reaction. The effects of medium viscosity on the decay rate of the 4a-hydroperoxyflavin intermediate of the bioluminescent reaction was investigated. It was found that at low concentrations of glycerol or sucrose (viscosity 1.1-1.3 cP) the decay rate rises, whereas a further increase in viscosity to 6.2 cP leads to a decrease in the decay rate following a power function with an exponent of 0.82-0.84. Using molecular dynamics methods, it was shown that the presence of glycerol and sucrose molecules causes a change in the mobility of the amino acid residues in the active center of luciferase, particularly those responsible for binding of flavin. The results obtained are indicative of two opposite effects of viscous media with glycerol and sucrose: (1) destabilization of 4a-hydroperoxyflavin due to a change in the structural and dynamic properties of the protein and (2) stabilization of this intermediate by the decrease in the diffusion rate of its decay products."	"Multicenter Single-Arm, Two-Stage Phase 2 Study of Panitumumab in Patients With Cetuximab-Refractory Metastatic Colorectal Cancer: The PACER Trial. To assess whether panitumumab is active in patients with cetuximab-refractory metastatic colorectal cancer (mCRC). Eligible patients had pretreated RAS (renin-angiotensin system) wild-type mCRC that progressed after cetuximab treatment, after having shown either objective response or stable disease. A minimax two-stage design was applied, with progression-free rate at 2 months as the primary end point. At least 12 of 28 and 21 of 41 successes at the first and second stage, respectively, were required for a positive result. Panitumumab 6 mg/kg was provided every 2 weeks, until progression or unacceptable toxicity. Overall, 52 patients with KRAS (Kirsten rat sarcoma viral oncogene) wild-type disease were enrolled, but 11 were found to have mutated disease after all-RAS retesting. Among 41 eligible patients, median time since diagnosis was 38 months, and 71% experienced an objective response to previous cetuximab. First stage was passed with 12 of 28 patients alive without progression at 2 months. At the second stage, 17 of 41 patients were alive without progression at 2 months. At a median follow-up of 21.8 months, 35 patients experienced disease progression, and 26 died. Median progression-free survival was 2.1 months (95% confidence interval, 1.8-3.6) and median overall survival 6.8 months (95% confidence interval, 4.6-16.6). Most of the patients experienced no adverse reactions; 25% of patients had grade 3 rash. According to our study design, panitumumab was not effective in patients with cetuximab-refractory RAS wild-type mCRC."	"Design, synthesis and biological evaluation of new Myo-inositol derivatives as potential RAS inhibitors. Ras is a small family of GTPases that control numerous cellular functions like cell proliferation, growth, survival, gene expression, and is closely engaged in cancer pathogenesis. The ras-targeted methodology entails a holy grail in oncology. Nevertheless, there are no specific molecules reported targeting the same, although it is a known oncogene for more than three decades. In this study, we have designed and synthesized new phosphate derivatives of Myo-inositol to inhibit the oncogenic KRAS pathway in breast cancer cells, which has been validated by cellular and theoretical studies. The synthesized compound 1b (C2-O-phosphate derivative of Myo-inositol 1,3,5-orthobenzoate) inhibited the downstream signaling pathway of oncogenic KRAS, RAF/MEK/ERK. Furthermore, we also found that this compound induced necrosis/apoptosis and causes cell cycle arrest. This class of molecules may work as a potential inhibitor of breast cancer caused by a mutation in KRAS and its downstream proteins. Though the efficacy of the molecules is in the micromolar scale, they have not been explored previously for RAS inhibition. Impressive preliminary results are presented in this article which could be further explored for its detailed biological studies to get better candidates as RAS inhibitors."	"Comprehensive molecular profiling of intrahepatic cholangiocarcinoma in the Chinese population and therapeutic experience. The genomic alterations of intrahepatic cholangiocarcinoma (ICC) in the Chinese population have not been fully revealed. Molecular profiling may provide a reference for clinical management, especially targeted therapy. A retrospective study was conducted in 122 ICC patients. All patients' samples underwent next-generation sequencing (NGS), which analyzed 417 genes. The genetic characteristics, clinical management and therapeutic responses were analyzed. The most commonly mutated genes were TP53 (34%), KRAS (25%) and ARID1A (17%). Targeted agents were used referring to molecular profiling, in combination with chemotherapy. Twenty-two patients with wild-type KRAS/NRAS/BRAF were treated with cetuximab. The disease control and response rates were 78% and 47%, respectively, which were higher than those achieved with chemotherapy alone (72% and 11%, P = 0.16). Fifty-four patients underwent anti-VEGF treatment with bevacizumab. The disease control and response rates were 85% and 60%, respectively. Better therapeutic efficiency (P = 0.001) and longer progression-free survival (PFS) were observed in the bevacizumab-treated group compared to chemotherapy alone group (15.4 and 6.7 months, respectively; P = 0.04). The PFS of ten patients who underwent hepatectomy after combined treatment with chemotherapy and bevacizumab was longer than that of 139 patients who underwent surgical treatment (28.9 vs 18.0 months, P = 0.03). Two patients (1.6%) had signatures of microsatellite instability (MSI-H), and both benefited from immunotherapy. This study provides an overview of genetic alterations in Chinese ICC patients and indicates the potential clinical implications for NGS-based personalized therapies."	"Y Chromosome Loss is a Frequent Event in Barrett's Adenocarcinoma and Associated with Poor Outcome. The loss of the Y chromosome in various malignant diseases has been described previously. There are no reliable information on the actual frequency, significance and homogeneity of Y chromosome loss (LoY) in esophageal adenocarcinoma (EAC). 400 male EAC including lymph-node metastases were analyzed with commercially available Y chromosome specific fluorescence in-situ probes. The results were correlated with molecular and immunohistochemical markers and clinicopathological aspects. The entire cohort (n = 400) showed a singular LoY of one chromosome arm in 1.0% (q-arm) and 2.8% (p-arm), complete LoY in 52.5%. LoY was strongly associated with shortened overall-survival (OS). Patients with preserved Y chromosome had a median OS of 58.8 months, patients with LoY an OS of 19.4 months (p &lt; 0.001). Multivariate analysis showed LoY as an independent prognostic marker with a hazard ratio of 1.835 (95% CI 1.233-2.725). LoY correlated with TP53 mutations (p = 0.003), KRAS amplification (p = 0.004), loss of ARID1a (p = 0.045) and presence of LAG3 (p = 0.018). Loss of the Y chromosome is a very common phenomenon in EAC. The LoY is heterogeneously distributed within the tumor, but corresponding lymph node metastases frequently show homogeneous LoY, indicating a selection and metastasizing advantage with poor prognosis. To date, the male predominance of EAC (7-9:1) is unclear, so genetic explanatory models are favored. The LoY in EAC may be biologically and functionally relevant and additional genomic or functional analyses are needed."	"Single Nucleotide Polymorphisms in MiRNA Binding Sites of Nucleotide Excision Repair-Related Genes Predict Clinical Benefit of Oxaliplatin in FOLFOXIRI Plus Bevacizumab: Analysis of the TRIBE Trial. The nucleotide excision repair (NER) pathway participates in platinum-induced DNA damage repair. Single nucleotide polymorphisms (SNPs) in miRNA-binding sites in the NER genes RPA2 and GTF2H1 are associated with the risk of colorectal cancer (CRC). Here, we analyzed whether RPA2 and GTF2H1 SNPs predict the efficacy of oxaliplatin in metastatic CRC (mCRC) patients. Genomic DNA was extracted from blood samples from 457 patients with mCRC enrolled in the TRIBE trial, which compared first-line FOLFOXIRI plus bevacizumab (BEV) (n = 230, discovery cohort) and first-line FOLFIRI plus BEV (n = 227, control cohort). SNPs were analyzed by PCR-based direct sequencing. In the FOLFOXIRI + BEV-treated cohort expressing wild-type KRAS, progression-free survival (PFS) was shorter for the RPA2 rs7356 C/C variant subgroup than the any T allele subgroup in univariate analysis (9.1 versus 13.3 months respectively, hazard ratio (HR) 2.32, 95% confidence interval (CI): 1.07-5.03, p = 0.020) and this remained significant in multivariable analysis (HR 2.97, 95%CI: 1.27-6.94, p = 0.012). A similar trend was observed for overall survival. In contrast, patients expressing mutant RAS and RPA2 rs7356 C/C variant had longer PFS with FOLFOXIRI + BEV than with FOLFIRI + BEV (12.1 versus 7.6 months, HR 0.23, 95%CI: 0.09-0.62, p = 0.002) but no superiority of FOLFOXIRI + BEV was observed for the RAS mutant, RPA2 rs7356 any T variant subgroup (11.7 versus 9.6 months, HR 0.77, 95%CI: 0.56-1.07, p = 0.12) or the RAS wild-type, RPA2 rs7356 C/C variant subgroup. RPA2 SNPs may serve as predictive and prognostic markers of oxaliplatin responsiveness in a RAS status-dependent manner in mCRC patients receiving FOLFOXIRI + BEV."	"Contribution of Immune Cells to Glucocorticoid Receptor Expression in Breast Cancer. Breast cancer (BC) patients experience increased stress with elevated cortisol levels, increasing risk of cancer recurrence. Cortisol binds to a cytoplasmic receptor, glucocorticoid receptor (GR) encoded by GR gene (NR3C1). We hypothesized that not only cancer cells, but even immune cells in the tumor microenvironment (TME) may contribute to GR expression in bulk tumor and influence prognosis. To test this, mRNA expression data was accessed from METABRIC and TCGA. &quot;High&quot; and &quot;low&quot; expression was based on highest and lowest quartiles of NR3C1 gene expression, respectively. Single-cell sequencing data were obtained from GSE75688 and GSE114725 cohorts. Computer algorithms CIBERSORT, Gene Set Enrichment Analysis and TIMER were used. GR-high BC has better median disease-free and disease-specific survival. Single cell sequencing data showed higher GR expression on immune cells compared to cancer and stromal cells. Positive correlation between GR-high BC and CD8<sup>+</sup> T-cells was noted. In GR-high tumors, higher cytolytic activity (CYT) with decreased T-regulatory and T-follicular helper cells was observed. High GR expression was associated with lower proliferation index Ki67, enriched in IL-2_STAT5, apoptosis, KRAS, TGF-β signaling, and epithelial-to-mesenchymal transition. Immune cells significantly contribute to GR expression of bulk BC. GR-high BC has a favorable TME with higher CYT with favorable outcomes."	"Oncogenic mutation in RAS-RAF axis leads to increased expression of GREB1 resulting in tumor proliferation in CRC. BRAF<sup>V600E</sup> mutation accounts for up to 90 % of all BRAF mutations in human colorectal cancer (CRC), and constitutively activates the MEK-MAPK pathway. It is recognized that neutralizing monoclonal antibodies for epidermal growth factor receptor alone are not effective for CRC with BRAF<sup>V600E</sup> mutation. Therefore, there are increasing interests in identification of the possible therapeutic targets in downstream of BRAF mutation in CRCs. To address this, we studied genome engineered mouse models for colonic neoplasia which has Braf<sup>V600E</sup> mutation on the basis of Apc inactivation, induced in two distinct Cre mouse models, CDX2P-G22Cre and CDX2P-CreER<sup>T2</sup> mice. We carried out oligonucleotide microarray analysis for colonic neoplasia generated in these mouse models, and compared gene expression profiles among Kras/Braf wild-type, Kras mutated, and Braf-mutated mouse colon tumors to seek new molecular targets corresponding to the KRAS-BRAF-MAPK axis. We found that the expression of the Growth Regulation by Estrogen in Breast cancer protein 1 (Greb1) was the most upregulated gene in Braf-mutated mouse tumors compared to Kras/Braf wild-type counterparts. The silencing of GREB1 significantly reduced the proliferation and tumorigenesis of CRC cell lines, whereas the overexpression of GREB1 promoted cell proliferation. Although GREB1 was first identified as a hormone-responsive gene mediating estrogen-stimulated cell proliferation in endometriosis, breast and ovarian cancers, these results suggest that RAS-RAF-MAPK signaling upregulates GREB1 expression in CRC resulting in cellular proliferation. Thus, GREB1 is a possible therapeutic target for CRCs with Braf<sup>V600E</sup> mutation."	"Dual inhibition of VEGF and PARP suppresses KRAS-mutant colorectal cancer. The addition of bevacizumab to chemotherapy has prolonged overall and progression-free survival rates for metastatic colorectal cancer (mCRC). However, KRAS-mutant (KRAS-mut) CRC, lacking an ideal targeted agent, represents an inferior-response subgroup of patients. In the present study, we investigated a combination approach of bevacizumab + olaparib in KRAS-mut CRC in a preclinical setting. The combined therapy effectively prevented tumor growth in a KRAS-mut cancer cell-derived xenograft model, although this effect was not observed in vitro. Under bevacizumab treatment, we detected intratumor hypoxia and impaired homologous recombination repair (HRR), accompanied by vascular regression. We explored the underlying mechanism of this combined therapy by mimicking a hypoxic condition in vitro using cobalt chloride (CoCl2). The results showed that hypoxia impairs HRR and therefore sensitized KRAS-mut CRC cell lines HCT-116, SW620, and Lovo to olaparib. Furthermore, under this hypoxic condition, olaparib could arrest the cell cycle in the G2/M phase, increase DNA damage and dramatically induce cell apoptosis in KRAS-mut CRC cells. Taken together, these results indicated that the combination of bevacizumab + olaparib could be a potential therapeutic approach in a KRAS-mut CRC cohort."	"KRAS, NRAS, and BRAF mutation prevalence, clinicopathological association, and their application in a predictive model in Mexican patients with metastatic colorectal cancer: A retrospective cohort study. Mutations in KRAS, NRAS, and BRAF (RAS/BRAF) genes are the main predictive biomarkers for the response to anti-EGFR monoclonal antibodies (MAbs) targeted therapy in metastatic colorectal cancer (mCRC). This retrospective study aimed to report the mutational status prevalence of these genes, explore their possible associations with clinicopathological features, and build and validate a predictive model. To achieve these objectives, 500 mCRC Mexican patients were screened for clinically relevant mutations in RAS/BRAF genes. Fifty-two percent of these specimens harbored clinically relevant mutations in at least one screened gene. Among these, 86% had a mutation in KRAS, 7% in NRAS, 6% in BRAF, and 2% in both NRAS and BRAF. Only tumor location in the proximal colon exhibited a significant correlation with KRAS and BRAF mutational status (p-value = 0.0414 and 0.0065, respectively). Further t-SNE analyses were made to 191 specimens to reveal patterns among patients with clinical parameters and KRAS mutational status. Then, directed by the results from classical statistical tests and t-SNE analysis, neural network models utilized entity embeddings to learn patterns and build predictive models using a minimal number of trainable parameters. This study could be the first step in the prediction for RAS/BRAF mutational status from tumoral features and could lead the way to a more detailed and more diverse dataset that could benefit from machine learning methods."	"Genomic alterations of NTRK, POLE, ERBB2 and MSI status in Chinese colorectal cancers. Background The increasing molecular characterization of colorectal cancers (CRC) has spurred the need to look beyond RAS, BRAF, and microsatellite instability (MSI). Genomic alterations, including ERBB2 amplifications and mutations, POLE mutations, MSI, and NTRK1-3 fusions, have emerged as targets for matched therapies. We sought to study a clinically annotated Chinese cohort of CRC subjected to genomic profiling to explore relative target frequencies. Methods Tumor and matched whole blood from 609 Chinese CRC patients were collected. Extracted DNA was analyzed for all classes of genomic alterations across 450 cancer-related genes, including: single-nucleotide variations (SNV), short and long insertions and deletions (Indel), copy number variations (CNV), and gene rearrangements. NGS-based computational algorithms also determined tumor mutational burden (TMB) and microsatellite instability (MSI) status. Results Alterations in TP53 (76%), APC (72%), and KRAS (46%) were common in Chinese CRC patients. For the first time, NTRK gene fusion's prevalence was observed to be around 7% in the MSI-H CRC cohort. Across the cohort, MSI was found in 9%, ERBB2 amplification in 3%, and POLE pathogenic mutation in 1.5% of patients. Such results mostly parallel frequencies observed in Western patients. However, POLE existed at a higher frequency and was associated with large tumor T-cell infiltration. Conclusion Comparing to the Western counterparts, POLE mutations were increased in our cohort. The prevalence of NTRK gene fusion was around 7% in the MSI-H CRC cohort. Increased adoption of molecular profiling in Asian patients is essential for the improvement of therapeutic outcomes. IMPLICATIONS FOR PRACTICE: The increasing use of genomic profiling assays in CRC has allowed for the identification of a higher number of patient subsets benefiting from matched therapies. With an increase in the number of therapies, assays simultaneously evaluating all candidate biomarkers are critical. Here we provide an early support for the feasibility and utility of genomic profiling in Chinese CRC patients."	"Germline and Somatic Pharmacogenomics to Refine Rectal Cancer Patients Selection for Neo-Adjuvant Chemoradiotherapy. Neoadjuvant chemoradiotherapy (nCRT) followed by radical surgery is the standard of care for patients with Locally Advanced Rectal Cancer (LARC). Current selection for nCRT is based on clinical criteria regardless of any molecular marker. Pharmacogenomics may be a useful strategy to personalize and optimize nCRT in LARC. This review aims to summarize the most recent and relevant findings about the role of germline and somatic pharmacogenomics in the prediction of nCRT outcome in patients with LARC, discussing the state of the art of their application in the clinical practice. A systematic literature search of the PubMed database was completed to identify relevant English-language papers published up to January 2020. The chemotherapeutic backbone of nCRT is represented by fluoropyrimidines, mainly metabolized by DPD (Dihydro-Pyrimidine Dehydrogenase, DPYD). The clinical impact of testing DPYD*2A, DPYD*13, c.2846A &gt; T and c.1236G &gt; A-HapB3 before a fluoropyrimidines administration to increase treatment safety is widely acknowledged. Other relevant target genes are TYMS (Thymidylate Synthase) and MTHFR (Methylene-Tetrahydro-Folate Reductase), whose polymorphisms were mainly studied as potential markers of treatment efficacy in LARC. A pivotal role of a TYMS polymorphism in the gene promoter region (rs34743033) was reported and was pioneeringly used to guide nCRT treatment in a phase II study. The pharmacogenomic analysis of other pathways mostly involved in the cellular response to radiation damage, as the DNA repair and the activation of the inflammatory cascade, provided less consistent results. A high rate of somatic mutation in genes belonging to PI3K (Phosphatidyl-Inositol 3-Kinase) and MAPK (Mitogen-Activated Protein Kinase) pathways, as BRAF (V-raf murine sarcoma viral oncogene homolog B1), KRAS (Kirsten Rat Sarcoma viral oncogene homolog), NRAS (Neuroblastoma RAS viral (v-ras) oncogene homolog), PIK3CA (Phosphatidyl-Inositol-4,5-bisphosphate 3-Kinase, Catalytic Subunit Alpha), as well as TP53 (Tumor Protein 53) was reported in LARC. Their pharmacogenomic role, already defined in colorectal cancer, is under investigation in LARC with promising results concerning specific somatic mutations in KRAS and TP53, as predictors of tumor response and prognosis. The availability of circulating tumor DNA in plasma may also represent an opportunity to monitor somatic mutations in course of therapy."	"Next-generation sequencing reveals heterogeneous genetic alterations in key signaling pathways of mismatch repair deficient colorectal carcinomas. Colorectal carcinoma (CRC) with deficient mismatch repair (dMMR) is an etiologically heterogeneous molecular entity. We investigated the genetic profile, focusing on key signaling pathways and molecular diversity of dMMR CRCs. In this study, next-generation sequencing was applied to 156 consecutive dMMR CRCs and 225 randomly selected proficient MMR (pMMR) CRCs diagnosed between July 2015 and December 2019 at Peking Union Medical College Hospital. Genetic alterations and MLH1 promoter hypermethylation (MLH1<sup>me+</sup>) were analyzed. Among the most frequently mutated genes, RNF43, ARID1A, PIK3CA, ATM, and BRCA2 mutants were enriched in dMMR CRCs, whereas APC and TP53 mutations were enriched in pMMR CRCs. In dMMR group, RNF43, APC, ARID1A, and BRCA2 mutations were largely microsatellite instability events. WNT pathway was commonly altered regardless of MMR status. Compared to pMMR CRCs, dMMR CRCs had remarkably more prevalent PI3K, RTK-RAS, TGFβ, and DNA damage repair pathway alterations and more multiple mutations in WNT and PI3K pathways. Within dMMR tumors, mutual exclusivity occurred between CTNNB1 mutation and APC or RNF43 mutation, while coexistence existed between BRAF and RNF43 mutation, as well as RAS and APC mutation. MLH1<sup>me+</sup> dMMR CRCs had significantly more frequent RNF43 mutations but less frequent KRAS, APC, and CTNNB1 mutations comparing to MLH1-unmethylated dMMR CRCs. RNF43/BRAF comutations were detected in MLH1<sup>me+</sup> dMMR CRCs, whereas RAS/APC comutations were largely detected in Lynch syndrome-associated cases. RNF43 mutation was independently associated with MLH1<sup>me+</sup> rather than BRAF mutations. dMMR CRCs bearing receptor tyrosine kinase fusion demonstrated no additional RTK-RAS mutations, significantly fewer PI3K alterations and more TGFBR2 mutations than other dMMR tumors. Our study revealed that dMMR CRCs had distinctive gene mutation spectra and signaling pathway interaction patterns compared to proficient mismatch repair (pMMR) CRCs, and molecular heterogeneity was evident for these divergent oncogenic pathways. These findings justify the use of individualized therapy targeted to dMMR CRC subgroups."	"NRAS mutant E132K identified in young-onset sporadic colorectal cancer and the canonical mutants G12D and Q61K affect distinct oncogenic phenotypes. Recent data show a global increase in colorectal cancer (CRC) cases among younger demographics, which portends poorer prognosis. The cause of rising incidence is uncertain, and its mutational landscape remains largely unexplored, including those in genes of the epidermal growth factor receptor pathway. Among these are NRAS mutants where there is paucity of functional studies compared to KRAS. Here, the novel NRAS mutant E132K, identified in three tumor samples from Filipino young-onset, sporadic colorectal cancer patients, was investigated for its effects on different cancer hallmarks, alongside the NRAS canonical mutants G12D and Q61K which are yet poorly characterized in the context of CRC. The novel NRAS mutant E132K and the canonical G12D and Q61K mutants show resistance to apoptosis, cytoskeletal reorganization, and loss of adhesion. In contrast to activating KRAS mutations, including the analogous KRAS G12D and Q61K mutations, all three NRAS mutants have no apparent effect on cell proliferation and motility. The results highlight the need to characterize isoform- and mutation-specific oncogenic phenotypes which can have repercussions in disease management and choice of therapeutic intervention. Further analyses of young-onset versus late-onset CRC datasets are necessary to qualify NRAS E132K as a biomarker for the young-onset subtype."	"Real world outcomes in KRAS G12C mutation positive non-small cell lung cancer. KRAS mutations are found in 20-30 % of non-small cell lung cancers (NSCLC) and were traditionally considered undruggable. KRAS<sup>G12C</sup> mutation confers sensitivity to KRAS<sup>G12C</sup> covalent inhibitors, however its prognostic impact remains unclear. This study assesses the frequency, clinical features, prevalence of brain metastases and outcomes in KRAS<sup>G12C</sup> NSCLC in a real-world setting. Patients enrolled in the prospective Thoracic Malignancies Cohort (TMC) between July 2012 to October 2019 with recurrent/metastatic non-squamous NSCLC, available KRAS results, and without EGFR/ALK/ROS1 gene aberrations, were selected. Data was extracted from TMC and patient records. Clinicopathologic features, treatment and overall survival (OS) was compared for KRAS wildtype (KRAS<sup>WT</sup>) and KRAS mutated (KRAS<sup>mut</sup>); and KRAS<sup>G12C</sup> and other (KRAS<sup>other</sup>) mutations. Of 1386 NSCLC patients, 1040 were excluded: non-metastatic/recurrent (526); unknown KRAS status (356); ALK/EGFR/ROS1 positive (154); duplicate (4). Of 346 patients analysed, 144 (42 %) were KRAS<sup>mut</sup>, of whom 65 (45 %) were KRAS<sup>G12C</sup>. All patients with KRAS<sup>G12C</sup> were active or ex-smokers, compared to 92 % of KRAS<sup>other</sup> and 83 % of KRAS<sup>WT</sup>. The prevalence of brain metastases during follow-up was similar between KRAS<sup>mut</sup> and KRAS<sup>WT</sup> (33 % vs 40 %, p = 0.17), and KRAS<sup>G12C</sup> and KRAS<sup>other</sup> (40 % vs 41 %, p = 0.74). The proportion of patients receiving one or multiple lines of systemic therapy was comparable. OS was similar between KRAS<sup>mut</sup> and KRAS<sup>WT</sup> (p = 0.54), and KRAS<sup>G12C</sup> and KRAS<sup>other</sup> (p = 0.39). Patients with KRAS<sup>mut</sup> and KRAS<sup>WT</sup>, and KRAS<sup>G12C</sup> and KRAS<sup>other</sup> NSCLC have comparable clinical features, treatment and survival. While not prognostic, KRAS<sup>G12C</sup> may be an important predictive biomarker as promising KRAS<sup>G12C</sup> covalent inhibitors continue to be developed."	"The predictive value of KRAS and NRAS mutations in metastatic colorectal cancer. NA"	"Comprehensive genomic profiling reveals ubiquitous KRAS mutations and frequent PIK3CA mutations in ovarian seromucinous borderline tumor. The molecular underpinnings of seromucinous borderline tumor (SMBT) - an uncommon ovarian epithelial neoplasm characterized by association with endometriosis, frequent bilateral ovarian involvement, and occasional progression to invasive carcinoma - remain poorly understood. Here, we sought to comprehensively characterize the mutational landscape of SMBT and elucidate the clonal relationship between bilateral ovarian SMBTs. We also compared the mutational profiles between SMBTs and concurrent invasive carcinomas. Formalin-fixed, paraffin-embedded tissue specimens were retrieved from 28 patients diagnosed with SMBT. Massively parallel sequencing of 409 cancer-related genes was conducted to identify somatic mutations in 33 SMBT samples and four concurrent invasive carcinoma specimens. TERT promoter mutations were assessed by Sanger sequencing, whereas immunohistochemistry was used as a surrogate tool for detecting deletions or epigenetic silencing of relevant tumor suppressor genes. Twenty-six (92.9%) of the 28 patients were diagnosed with stage I SMBTs. Seven (25%) cases showed bilateral ovarian involvement and 13 (46%) had concomitant endometriosis. Concurrent ovarian carcinomas were identified in three patients, whereas one case had a synchronous endometrial carcinoma. Somatic mutations in the KRAS, PIK3CA, and ARID1A genes were identified in 100, 60.7, and 14.3% of SMBT samples, respectively. In contrast, TERT promoter mutations and DNA mismatch repair deficiencies were absent. Sequencing of paired specimens from patients with bilateral SMBT revealed the presence of at least two shared somatic mutations, suggestive of a clonal relationship. Similarly, we identified shared somatic mutations between SMBT samples and concurrent ovarian carcinoma specimens. Taken together, these findings demonstrated a distinct mutational landscape of SMBT in which (1) KRAS is invariably mutated, (2) PIK3CA is frequently mutated, and (3) TERT promoter mutations and DNA mismatch repair deficiencies are absent. Our findings represent the first extensive characterization of this rare ovarian neoplasm, with potential implications for disease classification and molecular diagnostics."	"Evaluation of circulating tumor DNA as a biomarker in pancreatic cancer with liver metastasis. Pancreatic cancer is an aggressive, solid tumor, with a grave prognosis. Despite surgical treatment in patients with pancreatic cancer, the rate of recurrence is high. In addition, although tumor biomarkers are frequently used to confirm advanced pancreatic cancer, this is not accurate and the biomarkers currently used cannot indicate prognosis. This study sought to evaluate circulating tumor DNA as a tumor biomarker to prognosticate pancreatic cancer. Patients with advanced pancreatic cancer and liver metastasis (N = 104) were included, and blood samples were collected from all patients. The mutant allele frequency was measured using amplicon-based deep sequencing on a cell-free DNA panel covering 14 genes with &gt; 240 hot spots. In patients with advanced pancreatic cancer, 50% (N = 52) had detectable ctDNA levels, with TP53 (45%, N = 47) and KRAS (42.3%, N = 44) mutations the most common. Patients with detectable circulating tumor DNA levels also had significantly worse overall survival and progression free survival than ctDNA negative patients (8.4 vs 16 months, P&lt;0.0001 for overall survival; 3.2 vs 7.9 months, P&lt;0.0001 for progression-free survival). In a multivariate analysis, ctDNA status was independently associated with overall survival and progression-free survival (HR = 3.1, 95%CI = 1.9-5.0, P&lt;0.0001; HR 2.6, 95%CI = 1.7-4.0, P&lt;0.0001, respectively). Moreover, circulating tumor DNA significantly correlated with a higher number of liver metastases, the presence of lung and/or peritoneal metastases, tumor burden, and higher carbohydrate antigen 19-9 levels. This study supports the use of circulating tumor DNA as an independent prognostic marker for advanced pancreatic cancer."	"Expression of DUSP4 transcript variants as a potential biomarker for colorectal cancer. Aim: To provide novel data on the expression of DUSP4 transcripts in colorectal cancer (CRC) tissues and to explore their potential as biomarkers. Materials &amp; methods:DUSP4 transcripts expression was determined by quantitative real-time PCR in tissues from 28 CRC patients. Their association with clinicopathological factors and survival analysis was performed. Data from 380 CRC patients available at The Cancer Genome Atlas project were also analyzed. Results: All transcripts were overexpressed in CRC tissues. Variant X1 was the most upregulated and associated with KRAS mutations and poorly differentiated tumor. Overexpression of DUSP4 transcripts could distinguish all tumor stages from normal tissues. Similar results were found in The Cancer Genome Atlas cohort. Conclusion:DUSP4 transcripts have the potential to serve as diagnostic biomarkers for CRC, particularly variant X1."	"Klippel-Trenaunay and Sturge-Weber Overlap Syndrome with KRAS and GNAQ mutations. Patients with combined phenotypes of Sturge-Weber syndrome and Klippel-Trenaunay syndrome have been reported, though the underlying genetic spectrum in these individuals remains to be elucidated. We reported the patient presenting with Klippel-Trenaunay and Sturge-Weber overlap syndrome in mainland China. Histopathologic study confirmed the hemangioma of vein and capillary. Co-existence of a novel somatic KRAS c.182_183 delins TC mutation and GNAQ c.548G&gt;A mutation was identified in the affected skin tissue rather than paired peripheral blood. The somatic mutations of GNAQ and KRAS may affect MAPK-ERK signaling pathway, resulting in endothelial anomaly and blood vessel malformation."	"Upconversion nanoparticle and gold nanocage satellite assemblies for sensitive ctDNA detection in serum. A rapid molecular diagnostic technique targeting circulating tumor DNA (ctDNA) has become one of the most clinically significant liquid biopsy methods for non-invasive and timely diagnosis of cancer. Herein, a sensitive detection system of ctDNA based on a fluorescence resonance energy transfer (FRET) system using upconversion nanoparticles (UCNPs) and gold nanocages (AuNCs) was constructed. Through the doping of Yb and Tm ions, the excitation and emission wavelengths of UCNPs were adjusted to 980 nm and 806 nm, respectively. Subsequently, UCNPs and AuNCs with the corresponding wavelength absorption were linked by complementary pairing of surface-modified DNA to form near-infrared fluorescent nanoprobes (NIR probes). Targeting DNA mutation recognition and signal transduction were realized by using NIR probes through the toehold-mediated strand displacement reaction. This method could detect a single point mutation of the KRAS gene with a wide detection range from 5 pM to 1000 pM and the limit of detection reached 6.30 pM. More importantly, the stable and highly specific NIR probes could be directly used in the serum environment without complicated pretreatment and amplification processes in advance. It could be envisioned that this specific and sensitive ctDNA detection strategy has great potential in clinical diagnosis and monitoring of diverse malignant tumors."	"Cytotoxicity study of the interleukin-12-expressing recombinant Newcastle disease virus strain, rAF-IL12, towards CT26 colon cancer cells in vitro and in vivo. Oncolytic viruses have emerged as an alternative therapeutic modality for cancer as they can replicate specifically in tumour cells and induce toxic effects leading to apoptosis. Despite the great potentials and promising results shown in multiple studies, it appears that their efficacy is still moderate and deemed as not sufficient in clinical studies. In addressing this issue, genetic/molecular engineering approach has paved its way to improve the therapeutic efficacy as observed in the case of herpes simplex virus (HSV) expressing granulocyte-macrophage colony-stimulating factor (GM-CSF). This study aimed to explore the cytotoxicity effects of recombinant NDV strain AF2240-i expressing interleukin-12 (rAF-IL12) against CT26 colon cancer cells. The cytotoxicity effect of rAF-IL12 against CT26 colon cancer cell line was determined by MTT assay. Based on the IC50 value from the anti-proliferative assay, further downward assays such as Annexin V FITC and cell cycle progression were carried out and measured by flow cytometry. Then, the in vivo study was conducted where the rAF-IL12 viral injections were given at the intra-tumoral site of the CT26 tumour-burden mice. At the end of the experiment, serum biochemical, T cell immunophenotyping, serum cytokine, histopathology of tumour and organ section, TUNEL assay, and Nanostring gene expression analysis were performed. The rAF-IL12 induced apoptosis of CT26 colon cancer cells in vitro as revealed in the Annexin V FITC analysis and also arrested the cancer cells progression at G1 phase of the cell cycle analysis. On the other hand, the rAF-IL12 significantly (p &lt; 0.05) inhibited the growth of CT26 tumour in Balb/c mice and had regulated the immune system by increasing the level of CD4 + , CD8 + , IL-2, IL-12, and IFN-γ. Furthermore, the expression level of apoptosis-related genes (bax and p53) was up-regulated as a result of the rAF-IL12 treatment. Additionally, the rAF-IL12 had also down-regulated the expression level of KRAS, BRAF, MAPK1, Notch1, CCL2, and VEGF oncogenes. Besides, rAF-IL12 intra-tumoral delivery was considered safe and not hazardous to the host as evidenced in pathophysiology of the normal tissues and organs of the mice as well as from the serum biochemistry profile of liver and kidney. These results indicated that rAF-IL12 had better anti-tumoral and cytotoxicity effects compared to its parental wild-type, AF2240-i in combatting the CT26 colon cancer model."	"Reduced replication origin licensing selectively kills KRAS-mutant colorectal cancer cells via mitotic catastrophe. To unravel vulnerabilities of KRAS-mutant CRC cells, a shRNA-based screen specifically inhibiting MAPK pathway components and targets was performed in CaCo2 cells harboring conditional oncogenic KRAS<sup>G12V</sup>. The custom-designed shRNA library comprised 121 selected genes, which were previously identified to be strongly regulated in response to MEK inhibition. The screen showed that CaCo2 cells expressing KRAS<sup>G12V</sup> were sensitive to the suppression of the DNA replication licensing factor minichromosome maintenance complex component 7 (MCM7), whereas KRAS<sup>wt</sup> CaCo2 cells were largely resistant to MCM7 suppression. Similar results were obtained in an isogenic DLD-1 cell culture model. Knockdown of MCM7 in a KRAS-mutant background led to replication stress as indicated by increased nuclear RPA focalization. Further investigation showed a significant increase in mitotic cells after simultaneous MCM7 knockdown and KRAS<sup>G12V</sup> expression. The increased percentage of mitotic cells coincided with strongly increased DNA damage in mitosis. Taken together, the accumulation of DNA damage in mitotic cells is due to replication stress that remained unresolved, which results in mitotic catastrophe and cell death. In summary, the data show a vulnerability of KRAS-mutant cells towards suppression of MCM7 and suggest that inhibiting DNA replication licensing might be a viable strategy to target KRAS-mutant cancers."	"It Takes a Village to Overcome KRAS Dependence in Pancreatic Cancer. In this issue, Hou and colleagues present their exciting work demonstrating that, through remodeling of the local tumor microenvironment (TME), pancreatic ductal adenocarcinoma forms a tumor-supportive niche capable of liberating cancer cells from dependence on oncogenic KRAS signaling. Through extensive experimentation both in vitro and in vivo, the authors reveal that the HDAC5-CCL2 axis drives the recruitment of tumor-associated macrophages to the TME to provide trophic signaling.See related article by Hou et al., p. 1058."	"Hyperglycemia enhances pancreatic cancer progression accompanied by elevations in phosphorylated STAT3 and MYC levels. Diabetes mellitus is a well-known risk factor for pancreatic cancer. We focused on hyperglycemia, a main feature of diabetes mellitus, and uncovered its effect on precancerous pancreatic intraepithelial neoplasia (PanIN) progression. In vivo induction of hyperglycemia with 100 mg/kg streptozotocin in KrasLSL G12D Pdx1Cre (KP) mice promoted the PanIN formation and progression. Preconditioning with a high- or low-glucose medium for 28 days showed that a high-glucose environment increased cell viability and sphere formation in PANC-1, a Kras-mutant human pancreatic ductal adenocarcinoma cell line, and mPKC1, a Kras-mutant murine pancreatic cancer cell line. In contrast, no changes were observed in BxPC3, a Kras-wild-type human pancreatic cancer cell line. Orthotopic injection of mPKC1 into the pancreatic tails of BL6/J mice showed that cells maintained in high-glucose medium grew into larger tumors than did those maintained in low-glucose medium. Hyperglycemia strengthened the STAT3 phosphorylation, which was accompanied by elevated MYC expression in Kras-mutant cells. Immunohistochemistry showed stronger phosphorylated STAT3 (pSTAT3) and MYC staining in PanINs from diabetic KP mice than in those from euglycemic counterparts. STAT3 inhibition with 1 μM STAT3 inhibitor STATTIC in Kras-mutant pancreatic cell lines blocked the cell viability- and sphere formation-enhancing effects of the hyperglycemic environment and reversed the elevated pSTAT3 and MYC expression. MYC knockdown did not affect cell viability but did reduce sphere formation. No decrease in pSTAT3 expression was observed upon siMYC treatment. In conclusion, hyperglycemia, on a Kras-mutant background, aggravates the PanIN progression, which is accompanied by elevated pSTAT3 and MYC expression."	"Clinical characteristics and prognostic value of the KRAS G12C mutation in Chinese non-small cell lung cancer patients. The KRAS mutation is the second most common genetic variant in Chinese non-small cell lung cancer (NSCLC) patients. At the 2019th World Conference of Lung Cancer, the KRAS G12C-specific inhibitor AMG510 showed promising results in the phase I clinical trial. However, the frequency, clinical characteristics, and prognostic significance of the KRAS G12C mutation in Chinese NSCLC patients are rarely reported. Next-generation sequencing was used to confirm the KRAS mutation status in 40,804 NSCLC patients from multiple centers (mCohort). Survival data were collected retrospectively from 1456 patients at one of the centers, the Guangdong Lung Cancer Institute (iCohort). In the mCohort, 3998 patients (9.8%) were confirmed to harbor a KRAS mutation, of whom 1179 (29.5%) had the G12C subtype. In the iCohort, 130 NSCLC patients (8.9%) had a KRAS mutation and 42 (32.3%) had the G12C subtype. The G12C subgroup included more male patients (85.2% vs 67.4%, P &lt; 0.0001) and more smokers (76.2% vs 53.4%, P = 0.02) than did the non-G12C subgroup. Both the KRAS mutation group and KRAS G12C mutation subgroup were associated with a shorter median overall survival (OS) than wildtype tumors (15.1 vs 26.7 months, hazard ratio [HR]  KRAS  = 1.50, P = 0.002; 18.3 vs 26.7 months, HR  G12C  = 1.66, P = 0.007). In Cox regression analysis, smoking (HR = 1.39, P = 0.05) and stage IV disease (HR = 2.72, P &lt; 0.001) remained as independent predictors of shorter OS. Both the KRAS mutation (HR = 1.30, P = 0.07) and KRAS G12C mutation (HR = 1.47, P = 0.07) reached borderline significance. In the largest sample used thus for, our study found that approximately 10% of Chinese NSCLC patients had KRAS mutations. Of these, nearly 30% harbored the KRAS G12C mutation subtype, which was most common in male smokers. The KRAS G12C mutation is a biomarker of poor prognosis in Chinese NSCLC patients, which could potentially be improved by G12C-specific inhibitors in the future.(296 words)."	"Inhibition of lncRNA PART1 Chemosensitizes Wild Type but Not KRAS Mutant NSCLC Cells. Lung cancer has the highest incidence among solid tumors in men and is the third most common cancer in women. Despite improved understanding of genomic and mutational landscape in non-small cell lung cancer (NSCLC), the five-year survival in these patients has remained stagnant at a dismal 15%. The first line of treatment commonly adapted for NSCLC patients with somatic mutation in EGFR is tyrosine kinase inhibitor gefitinib or erlotinib. EGFR mutant cells seem to be intrinsically sensitive to tyrosine kinase inhibitors; however, the remaining 20-30% patients are resistant to tyrosine kinase inhibitor. Here we show, using in vitro normal and NSCLS cell lines, that the lncRNA Prostate androgen-regulated transcript 1 (PART1) is expressed at higher levels in NSCLC cells compared to normal lung epithelial cell line, corroborating two earlier studies. We additionally show that these cells are resistant to erlotinib which is reversed in some, but not all, cell lines following suppression of PART1 expression. The differential response to erlotinib following siRNA-mediated knockdown of PART1 was found to be related to the mutational status of KRAS. Only in cells with wild-type KRAS suppression of PART1 sensitized them to erlotinib. Knockdown of mutant KRAS did not sensitize those cell lines to erlotinib. But knockdown of mutant KRAS along with suppression of PART1 sensitized the cells to treatment with erlotinib. The results from the study reveal a yet undefined and important role of lncRNA PART1 in defining sensitivity to erlotinib. This action is mediated by mutation status of KRAS. Even though preliminary, our results indicate PART1 might be a potential candidate for targeted therapy or used as a predictor of chemosensitivity in patients with NSCLC."	"Development and validation of a genomic mutation signature to predict response to PD-1 inhibitors in non-squamous NSCLC: a multicohort study Genetic variations of some driver genes in non-small cell lung cancer (NSCLC) had shown potential impact on immune microenvironment and associated with response or resistance to programmed cell death protein 1 (PD-1) blockade immunotherapy. We therefore undertook an exploratory analysis to develop a genomic mutation signature (GMS) and predict the response to anti-PD-(L)1 therapy. In this multicohort analysis, 316 patients with non-squamous NSCLC treated with anti-PD-(L)1 from three independent cohorts were included in our study. Tumor samples from the patients were molecularly profiled by MSK-IMPACT or whole exome sequencing. We developed a risk model named GMS based on the MSK training cohort (n=123). The predictive model was first validated in the separate internal MSK cohort (n=82) and then validated in an external cohort containing 111 patients from previously published clinical trials. A GMS risk model consisting of eight genes (TP53, KRAS, STK11, EGFR, PTPRD, KMT2C, SMAD4, and HGF) was generated to classify patients into high and low GMS groups in the training cohort. Patients with high GMS in the training cohort had longer progression-free survival (hazard ratio (HR) 0.41, 0.28-0.61, p&lt;0.0001) and overall survival (HR 0.53, 0.32-0.89, p=0.0275) compared with low GMS. We noted equivalent findings in the internal validation cohort and in the external validation cohort. The GMS was demonstrated as an independent predictive factor for anti-PD-(L)1 therapy comparing with tumor mutational burden. Meanwhile, GMS showed undifferentiated predictive value in patients with different clinicopathological features. Notably, both GMS and PD-L1 were independent predictors and demonstrated poorly correlated; inclusion of PD-L1 with GMS further improved the predictive capacity for PD-1 blockade immunotherapy. Our study highlights the potential predictive value of GMS for immunotherapeutic benefit in non-squamous NSCLC. Besides, the combination of GMS and PD-L1 may serve as an optimal partner in guiding treatment decisions for anti-PD-(L)1 based therapy."	"KRASQ61H preferentially signals through MAPK in a RAF dimer-dependent manner in non-small cell lung cancer. Assembly of RAS molecules into complexes at the cell membrane is critical for RAS signaling. We previously showed that oncogenic KRAS codon 61 mutations increase its affinity for RAF, raising the possibility that KRASQ61H, the most common KRAS mutation at codon 61, upregulates RAS signaling through mechanisms at the level of RAS assemblies. We show here that KRASQ61H exhibits preferential binding to RAF relative to PI3K in cells, leading to enhanced MAPK signaling in in vitro models and human NSCLC tumors. X-ray crystallography of KRASQ61H:GTP revealed that a hyper-dynamic switch 2 allows for a more stable interaction with switch 1, suggesting that enhanced RAF activity arises from a combination of absent intrinsic GTP hydrolysis activity and increased affinity for RAF. Disruption of KRASQ61H assemblies by the RAS oligomer-disrupting D154Q mutation impaired RAF dimerization and altered MAPK signaling but had little effect on PI3K signaling. However, KRASQ61H oligomers but not KRASG12D oligomers were disrupted by RAF mutations that disrupt RAF-RAF interactions. KRASQ61H cells show enhanced sensitivity to RAF and MEK inhibitors individually whereas combined treatment elicited synergistic growth inhibition. Furthermore, KRASQ61H tumors in mice exhibited high vulnerability to MEK inhibitor, consistent with cooperativity between KRASQ61H and RAF oligomerization and dependence on MAPK signaling. These findings support the notion that KRASQ61H and functionally similar mutations may serve as predictive biomarkers for targeted therapies against the MAPK pathway."	"KRAS G12C Metastatic Colorectal Cancer: Specific Features of a New Emerging Target Population. Kirsten rat sarcoma viral oncogene (KRAS) G12C mutation occurs in about 4% of colorectal cancers (CRCs). Recently, KRAS G12C was identified to be a potential drug target and predictor of response to the novel on AMG510 target treatment. We described the clinicopathologic features and prognosis of KRAS G12C-mutated metastatic CRCs compared to other KRAS mutation. Clinicopathologic features and outcome data of KRAS-mutated metastatic CRC (mCRC) patients referred to 3 Italian oncology units from January 2010 to December 2018 were collected. A cohort of KRAS-mutant mCRC patients referred to the Department of Medical Oncology at Fondazione IRCCS Istituto Nazionale dei Tumori, Milan (Italy) within the same time frame was included as external validation. A total of 839 KRAS-mutated mCRC cases were included in the main patient population. A total of 145 patients (17%) had KRAS G12C mutation. Our analyses showed that patients harboring KRAS G12C mutation were more likely to be men and to present lung and liver metastases, and were less likely to have peritoneal spread. KRAS G12C mutation was associated with shorter overall survival compared to other KRAS mutations (hazard ratio, 1.32; 95% confidence interval, 1.07-1.63; P = .009). Such results were confirmed in the external validation cohort. The knowledge of the distinctive traits of KRAS G12C-mutated CRC patients is crucial to future translational research studies, clinical trial design, and proper interpretation of results."	"Efficacy of Panitumumab and Cetuximab in Patients with Colorectal Cancer Previously Treated with Bevacizumab; a Combined Analysis of Individual Patient Data from ASPECCT and WJOG6510G. Phase-III ASPECCT and randomised phase-II WJOG6510G trials demonstrated the noninferiority of panitumumab, when compared with cetuximab, for overall survival in patients with chemotherapy-refractory wild-type KRAS exon 2 metastatic colorectal cancer. The subgroup that received bevacizumab either prior to panitumumab or cetuximab monotherapy (ASPECCT) or in combination with irinotecan (WJOG6510G) was included. Multivariate Cox models were created, including the treatment arms as covariates together with patient, disease and treatment characteristics. We included 185 and 189 patients in the panitumumab and cetuximab arms, respectively. The median overall survival was 12.8 and 10.1 months [p = 0.0031; log-rank test, stratified by trial; hazard ratio (HR), 0.72; 95% confidence interval (CI), 0.58-0.90], and the median progression-free survival was 4.7 and 4.1 months, in the panitumumab and cetuximab arms, respectively (p = 0.0207; HR, 0.79; 95% CI, 0.64-0.97). The treatment regimen was an independent prognostic factor of overall survival (adjusted HR, 0.69; 95% CI, 0.54-0.87; p = 0.0013). Panitumumab significantly prolonged the overall survival and progression-free survival, when compared with cetuximab in the cohort that previously received bevacizumab in the included studies. Clinical Trial Registration: ASPECCT trial registered with ClinicalTrials.gov (NCT01001377) and WJOG6510G trial registered with UMIN-CTR (UMIN000006643)."	"DNA Repair and Ovarian Carcinogenesis: Impact on Risk, Prognosis and Therapy Outcome. There is ample evidence for the essential involvement of DNA repair and DNA damage response in the onset of solid malignancies, including ovarian cancer. Indeed, highpenetrance germline mutations in DNA repair genes are important players in familial cancers: BRCA1, BRCA2 mutations or mismatch repair, and polymerase deficiency in colorectal, breast, and ovarian cancers. Recently, some molecular hallmarks (e.g., TP53, KRAS, BRAF, RAD51C/D or PTEN mutations) of ovarian carcinomas were identified. The manuscript overviews the role of DNA repair machinery in ovarian cancer, its risk, prognosis, and therapy outcome. We have attempted to expose molecular hallmarks of ovarian cancer with a focus on DNA repair system and scrutinized genetic, epigenetic, functional, and protein alterations in individual DNA repair pathways (homologous recombination, non-homologous end-joining, DNA mismatch repair, base- and nucleotide-excision repair, and direct repair). We suggest that lack of knowledge particularly in non-homologous end joining repair pathway and the interplay between DNA repair pathways needs to be confronted. The most important genes of the DNA repair system are emphasized and their targeting in ovarian cancer will deserve further attention. The function of those genes, as well as the functional status of the entire DNA repair pathways, should be investigated in detail in the near future."	"Genetic Markers in Lung Cancer Diagnosis: A Review. Lung cancer is the most often diagnosed cancer in the world and the most frequent cause of cancer death. The prognosis for lung cancer is relatively poor and 75% of patients are diagnosed at its advanced stage. The currently used diagnostic tools are not sensitive enough and do not enable diagnosis at the early stage of the disease. Therefore, searching for new methods of early and accurate diagnosis of lung cancer is crucial for its effective treatment. Lung cancer is the result of multistage carcinogenesis with gradually increasing genetic and epigenetic changes. Screening for the characteristic genetic markers could enable the diagnosis of lung cancer at its early stage. The aim of this review was the summarization of both the preclinical and clinical approaches in the genetic diagnostics of lung cancer. The advancement of molecular strategies and analytic platforms makes it possible to analyze the genome changes leading to cancer development-i.e., the potential biomarkers of lung cancer. In the reviewed studies, the diagnostic values of microsatellite changes, DNA hypermethylation, and p53 and KRAS gene mutations, as well as microRNAs expression, have been analyzed as potential genetic markers. It seems that microRNAs and their expression profiles have the greatest diagnostic potential value in lung cancer diagnosis, but their quantification requires standardization."	"Discovery of Novel PDEδ Degraders for the Treatment of KRAS Mutant Colorectal Cancer. KRAS-PDEδ protein-protein interaction represents an appealing target for cancer therapy. However, fast release of high-affinity inhibitors from PDEδ hampered drug binding affinity and antiproliferative activity. To overcome the limitations, the first proteolysis-targeting chimeric (PROTAC) small molecules targeting PDEδ were designed. By employment of PDEδ inhibitor deltazinone (2) and cereblon ligand pomalidomide (6), a series of potent PROTAC PDEδ degraders were obtained. The most promising compound 17f efficiently induced PDEδ degradation and demonstrated significantly improved antiproliferative potency in KRAS mutant SW480 cells. Compound 17f also achieved significant tumor growth inhibition in the SW480 colorectal cancer xenograft model. This proof-of-concept study provided a new strategy to validate the druggability of KRAS-PDEδ interaction and offered an effective lead compound for the treatment of KRAS mutant cancer."	"Landscape of RAS Variations in 17,993 Pan-cancer Patients Identified by Next-generation Sequencing. RAS family genes (HRAS, KRAS and NRAS) were frequently observed in several tumors. The expression of constitutively active RAS proteins mediated by RAS variations promote the development of tumors. KRAS is an important prognostic and drug resistance biomarker. It would also be a promising drug target. Several trials which evaluating the efficacy of RAS G12C inhibitor in solid tumors are initiated. Herein, we analyzed the alterations status of KRAS/NRAS/HRAS across diverse solid tumors. The sing nucleotide variants (SNV) and copy number variants (CNV) data of 17993 Chinese patients from 22 types of cancer were obtained in our database. Genomic profiling of DNA was performed through a next-generation sequencing on tissue. Only the pathogenic mutations and likely pathogenic mutations in clinical significance were rolled into our analysis. Among 17993 pan-cancer patients, the total RAS variants frequency was 22.58%. KRAS was the most frequently altered, followed by NRAS and HRAS. For the SNV, KRAS were most commonly found in pancreas cancer, intestine cancer and colorectal cancer. Further analysis among KRAS SNV patients showed that the mutation frequency of KRAS G12C, G12D, G12R, and G12V was 1.81%, 6.81%, 0.69% and 4.25%, respectively. A total of 21 in 22 types of solid tumors had KRAS G12C/D/R/V pathogenic or likely pathogenic mutation, which occurred most frequently in colorectal cancer, pancreas cancer and lung cancer. Our results suggested that a variety of solid tumors may harbor KRAS G12C/D/R/V mutation. These patients may benefit from KRAS inhibitors."	"Evaluation of Circulating Tumor DNA in Patients with Ovarian Cancer Harboring Somatic PIK3CA or KRAS Mutations. Circulating tumor DNA (ctDNA) is an attractive source for liquid biopsy to understand molecular phenotypes of a tumor non-invasively, which is also expected to be both a diagnostic and prognostic marker. PIK3CA and KRAS are among the most frequently mutated genes in epithelial ovarian cancer (EOC). In addition, their hotspot mutations have already been identified and are ready for a highly sensitive analysis. Our aim is to clarify the significance of PIK3CA and KRAS mutations in the plasma of EOC patients as tumor-informed ctDNA. We screened 306 patients with ovarian tumors for somatic PIK3CA or KRAS mutations. A total of 85 EOC patients had somatic PIK3CA and/or KRAS mutations, and the corresponding mutations were subsequently analyzed using a droplet digital polymerase chain reaction in their plasma. The detection rates for ctDNA were 27% in EOC patients. Advanced stage and positive peritoneal cytology were associated with higher frequency of ctDNA detection. Preoperative ctDNA detection was found to be an indicator of outcomes, and multivariate analysis revealed that ctDNA remained an independent risk factor for recurrence (p=0.010). Moreover, we assessed the mutation frequency in matched plasma before surgery and at recurrence from 17 patients, and found six patients had higher mutation rates in cell-free DNA at recurrence compared to that at primary diagnosis. The presence of ctDNA at diagnosis was an indicator for recurrence, which suggests potential tumor spread even when tumors were localized at the time of diagnosis."	"Next-generation sequencing of residual cytologic fixative preserved DNA from pancreatic lesions: A pilot study. Endoscopic ultrasound-guided fine needle aspiration (EUS-FNA) is a sensitive and specific tool in the risk stratification of pancreatic lesions, including cysts. The sensitivity and specificity of EUS-FNA has been shown to improve when cytology is combined with next-generation sequencing (NGS). Ideally, fresh cyst fluid is used for NGS. In this pilot study, we explore the possibility of sequencing DNA derived from residual alcohol-fixed pancreatic aspirates. Residual cytologic fixatives (n = 42) from 39 patients who underwent EUS-FNA for pancreatic lesions were collected along with demographics, imaging, and laboratory studies. Samples were designated as nonneoplastic/nonmucinous benign (NB), mucinous cyst (MC), pancreatic ductal adenocarcinoma (PDAC), or well-differentiated neuroendocrine tumor (NET) on the basis of cytopathologic evaluation and sequenced on the Oncomine platform (ThermoFisher Scientific, Waltham, Massachusetts). Ten of 14 (71.4%) MCs exhibited clinically significant variants, including KRAS, GNAS, and TP53. Ten of 15 (66.7%) PDACs had KRAS alterations, and 9 of 15 (60%) showed variants in TP53. No variants were detected in any NETs. Only 1 of 9 (11.1%) NB aspirates showed variants in KRAS and MAP2K. Sequencing of formalin-fixed, paraffin-embedded tissue revealed variants identical to those detected in fixative-derived DNA in 4 of 5 cases (80%). Residual DNA from alcohol-fixed aspirates are an underutilized source for NGS. Sequencing residual fixative-derived DNA has the potential to be integrated into the workup of pancreatic aspirates, possibly impacting management."	"Outcome of patients with colorectal cancer undergoing lung metastases resection: a single-institution retrospective analysis. This study was undertaken to review a single-institution cohort of patients with metastatic colorectal cancer undergoing lung resection after a multidisciplinary evaluation and to investigate the main prognostic factors for survival. Medical records of 129 patients undergoing lung metastasectomy for colorectal cancer with curative intent from 2001 to 2017 were reviewed. Tissue samples from the primary tumor were analyzed with a multiplex genotyping system for the detection of mutations in RAS and BRAF genes. Survival analyses were carried out by the Kaplan-Meier method. Univariate and multivariable analyses were performed using the log-rank test and the Cox regression model. Postoperative morbidity and mortality were 13.2% and 0%, respectively. At a median follow-up time of 62.5 months, median overall survival was 90.5 months and median relapse-free survival was 42.8 months. Multivariable analysis for overall survival identified synchronous versus metachronous metastatic presentation as the only prognostic factor, whereas relapse-free survival was independently associated with synchronous versus metachronous metastatic presentation, number of metastases, and postoperative chemotherapy. This study shows particularly favorable survival outcomes for patients undergoing lung metastasectomy. The validity of some of the main prognostic factors was confirmed and a positive effect of postoperative chemotherapy on relapse-free survival was shown. Contrary to other reports, the presence of KRAS mutations was not associated with significant survival differences. Further studies are needed in order to clarify the interactions between molecular, clinical, and pathologic characteristics and treatment-related factors."	"Investigation of EGFR/pi3k/Akt signaling pathway in seminomas. Activation of the receptor for epidermal growth factor (EGFR) in some testicular tumors activates several signaling pathways. Some components of these pathways are phosphorylated or mutated in testicular germ tumors (TCGT), including EGFR, Kirstein ras oncogen (KRAS) and cell surface protein of the germ cell (KIT). The latter two activate RAF ⁄MEK⁄ERK and PI3 K⁄AKT, and interconnect with the EGFR/pI3 k/Akt pathway. We investigated the expression of EGFR/pI3 k/Akt pathway proteins in seminomas and in their precursor lesion, germinal cell neoplasia in situ (GCNIS) and related genetic mutations. We used immunohistochemistry for pEGFR, pI3 k and pAkt expression with a scoring system for 46 seminoma surgical specimens: 36 classical and 10 GCNIS. In 17 samples, the mutations of EGFR (exons 19 - 21), KIT (exons 11, 17) and KRAS (exons 2, 3) were investigated using qPCR and sequencing. Of the 36 seminomas studied, 22 (61%) expressed pEGFR. Ten samples exhibited high scores for pEGFR, pI3 k and pAkt. In 5 of 17 cases (33%) some mutation was exhibited in the exons studied: 21 of EGFR (2), 17 of EGFR (1), 3 of KRAS (1) and 11 of KIT (1). Six cases exhibited nuclear translocation of EGFR; of these, four exhibited mutations of EGFR, KRAS and KIT. Eight of ten of the GCNIS expressed a high pEGFR score (80%). In 2 of 6 cases (33%), mutation was detected in exon 21 of EGFR and one smear showed EGFR translocation to the nucleus. The translocation represents a subpopulation with worse prognosis for TCGT. The EGFR/pI3 k/Akt signaling pathway is linked to TDRG1, which regulates chemosensitivity to cisplatin; this is a mechanism of resistance to treatment. TDRG1 and the EGFR/pI3 k/pAkt pathway could be therapeutic targets for seminomas resistant to cisplatin."	"miR193b Promotes Apoptosis of Gastric Cancer Cells via Directly Mediating the Akt Pathway. Gastric cancer (GC) is one of the most common and fatal malignancies worldwide. MicroRNAs (miRNAs) play a critical role in tumor initiation, proliferation, and metastasis of gastric cancer. miR193b has been identified as a tumor suppressor in a variety of tumor types; however, its role in gastric cancer is yet to be determined. Here, we found a significant downregulation of miR193b expression in both human gastric cancer tissues (p &lt; 0.05) and human gastric cancer cell lines (p &lt; 0.01). Furthermore, the expression level of miR193b correlated with the tumor type, tumor size, and clinical stage (p &lt; 0.05). In vitro, miR193b overexpression inhibited cell survival and induced apoptosis in GC cell lines, indicating that miR193b plays a role in the development of gastric cancer. KRAS was verified as the target of miR193b, and KRAS overexpression attenuated miR193b-induced apoptosis (p &lt; 0.05). Moreover, we found that the Akt pathway negatively regulated miR193b, also affecting apoptosis. Further analyses indicated that PIK3CA mutation and KRAS amplification are two mutually exclusive pathways (p &lt; 0.01), and we hypothesize that both two pathways could result in the carcinogenic overactivation of KRAS. Thus, our results suggest that the Akt-miR193b-KRAS axis may act as a mechanism affecting apoptosis in gastric cancer cells."	"Dramatic Response of Pulmonary Sarcomatoid Carcinoma to Nivolumab Combined with Anlotinib: A Case Report. Pulmonary sarcomatoid carcinoma (PSC) is a rare subtype of non-small-cell lung cancer, which is resistant to the conventional chemotherapy and radiotherapy with a poor prognosis. Limited case reports have showed good response to the immunotherapy in PSC patients with high PD-L1 expression generally. Herein, we report a case of rapid recurrence of PSC during postoperative adjuvant chemotherapy in a 62-year-old male ex-smoker. The patient had high PD-L1 expression (tumor proportion score: 90%) and KRAS exon 2 mutation. Nivolumab combined with anlotinib was administered synchronously. Clinical symptoms gradually relieved and response evaluation on imaging revealed a partial response after 8 weeks. This case suggests immunotherapy combined with antiangiogenic agent anlotinib may be a potential promising strategy to treat PSC patients."	"KRAS and BRAF Concomitant Mutations in a Patient with Metastatic Colon Adenocarcinoma: An Interesting Case Report. A 68-year-old female patient with tenesmus and blood in the stool was admitted to the S.G. Moscati Hospital of Taranto. Investigations revealed infiltrative mucinous colon adenocarcinoma accompanied by lymph node metastases. Following surgery and adjuvant chemotherapy, computed tomography (CT) and carcinoembryonic antigen screening were negative. Two years later, CT demonstrated a liver lesion. Histologic and genetic analyses confirmed the diagnosis of metastatic colorectal cancer with the coexistence of KRAS and BRAF mutations in hepatic metastases and the presence of the BRAF V600E in the primary tumour. It is unclear whether the lack of response was due to BRAF mutations, but the data suggest that mutated BRAF confers resistance to anti-epidermal growth factor receptor therapy. In our patient, BRAF mutation turned out to be a negative prognostic factor, and it may have been the cause of clinical implications for disease progression and therapeutic responses."	"KRAS Status is Associated with Metabolic Parameters in Metastatic Colorectal Cancer According to Primary Tumour Location. Colorectal cancer (CRC) is characterized by complex interplay between macroenvironmental factors and tumour microenvironment, leading to variable outcomes in CRC patients. To date, there is still a need to identify macroenvironment/microenvironment factors that could define subgroup of patients that would benefit from specific anti-cancer treatment in order to improve patient selection for individualized targeted-based therapy. Aim of this study was to evaluate associations between metabolic parameters and KRAS status in metastatic CRC (mCRC) according to a new tumour site classification. Retrospective data were extracted from a total of 201 patients diagnosed with mCRC between 2012 and 2017 extracted from an established CRC database at our tertiary institute. Clinical-pathological data, including age, gender, BMI, hypertension, diabetes, pre-CRC diagnosis serum lipid levels and KRAS status were recorded. Categorical characteristics were compared using chi-squared test. Continuous characteristics were compared using Mann-Whitney U test. Log rank test was used to compare hazards for survival. In all comparisons, a two-sided P value &lt;0.05 was considered statistically significant. Out of 201 patients, 170 patients with complete serum lipid profile were included in the analysis. In recto-sigmoid cancers there was a statistically significant association between high cholesterol:high-density lipoprotein (chol:HDL) ratio and KRAS mutation (OR 2.69, 95% CI 1.1-6.4, p = 0,02). In non recto-sigmoid cancers, high cholesterol was associated with KRAS WT (OR 0.39, CI 0.15-0.97, p = 0.04). In 22 patients with KRAS mutated recto-sigmoid cancer stage IV at diagnosis normal chol:HDL ratio was associated with a trend to better survival (p = 0.06). High chol:HDL ratio was significantly associated with KRAS mutated metastatic recto-sigmoid cancers. A subgroup of mCRC patients with KRAS mutated recto-sigmoid cancer may benefit from optimal lipid lowering treatment."	"Testicular cancer: Determinants of cisplatin sensitivity and novel therapeutic opportunities. Testicular cancer (TC) is the most common solid tumor among men aged between 15 and 40 years. TCs are highly aneuploid and the 12p isochromosome is the most frequent chromosomal abnormality. The mutation rate is of TC is low, with recurrent mutations in KIT and KRAS observed only at low frequency in seminomas. Overall cure rates are high, even in a metastatic setting, resulting from excellent cisplatin sensitivity of TCs. Factors contributing to the observed cisplatin sensitivity include defective DNA damage repair and a hypersensitive apoptotic response to DNA damage. Nonetheless, around 10-20% of TC patients with metastatic disease cannot be cured by cisplatin-based chemotherapy. Resistance mechanisms include downregulation of OCT4 and failure to induce PUMA and NOXA, elevated levels of MDM2, and hyperactivity of the PI3K/AKT/mTOR pathway. Several pre-clinical approaches have proven successful in overcoming cisplatin resistance, including specific targeting of PARP, MDM2 or AKT/mTOR combined with cisplatin. Finally, patient-derived xenograft models hold potential for mechanistic studies and pre-clinical validation of novel therapeutic strategies in TC. While clinical trials investigating targeted drugs have been disappointing, pre-clinical successes with chemotherapy and targeted drug combinations fuel the need for further investigation in clinical setting."	"The type of KRAS mutation drives PI3Kα/γ signalling dependency: Implication for the choice of targeted therapy in pancreatic adenocarcinoma patients. Pancreatic ductal adenocarcinoma PDAC is a complex disease with an important diversity of genetic alterations found between patients. KRAS mutation is considered as a major oncogenic driver in this cancer (around 90% of the patients), but there exists different KRAS mutation types. The type of KRAS mutation was recently shown to be of importance to detect signalling vulnerabilities in a subset of PDAC patients. We comment on these innovative results and discuss their importance when designing clinical trials with PI3K targeted therapies in this cancer."	"Integrin-linked kinase (ILK) regulates KRAS, IPP complex and Ras suppressor-1 (RSU1) promoting lung adenocarcinoma progression and poor survival. Integrin-linked kinase (ILK) forms a heterotrimeric protein complex with PINCH and PARVIN (IPP) in Focal Adhesions (FAs) that acts as a signaling platform between the cell and its microenvironment regulating important cancer-related functions. We aimed to elucidate the role of ILK in lung adenocarcinoma (LUADC) focusing on a possible link with KRAS oncogene. We used immunohistochemistry on human tissue samples and KRAS-driven LUADC in mice, analysis of large scale publicly available RNA sequencing data, ILK overexpression and pharmacological inhibition as well as knockdown of KRAS in lung cancer cells. ILK, PINCH1 and PARVB (IPP) proteins are overexpressed in human LUADC and KRAS-driven LUADC in mice representing poor prognostic indicators. Genes implicated in ILK signaling are significantly enriched in KRAS-driven LUADC. Silencing of KRAS, as well as, overexpression and pharmacological inhibition of ILK in lung cancer cells provide evidence of a two-way association between ILK and KRAS. Upregulation of PINCH, PARVB and Ras suppressor-1 (RSU1) expression was demonstrated in ILK overexpressing lung cancer cells in addition to a significant positive correlation between these factors in tissue samples, while KRAS silencing downregulates IPP and RSU1. Pharmacological inhibition of ILK in KRAS mutant lung cancer cells suppresses cell growth, migration, EMT and increases sensitivity to platinum-based chemotherapy. ILK promotes an aggressive lung cancer phenotype with prognostic and therapeutic value through functions that involve KRAS, IPP complex and RSU1, rendering ILK a promising biomarker and therapeutic target in lung adenocarcinoma."	"A somatic activating KRAS variant identified in an affected lesion of a patient with Gorham-Stout disease. Gorham-Stout disease (GSD), a rare disorder of unknown etiology, is characterized by massive osteolysis that is associated with proliferation and dilation of lymphatic vessels. Variants in cancer-associated genes have been described in complex lymphatic anomalies. To explore the pathogenesis of GSD, we performed the amplicon-based deep sequencing on 50 cancer-related genes to assay affected tissues from the six patients with GSD. In one patient, a somatic activating KRAS c.182A &gt; G variant (p.Q61R) was detected in 1% of the tissue sample. Conversely, the mutant allele was not detected in uninvolved normal skin and blood samples. Histopathology of the patient's tissue sample showed proliferation of abnormal lymphatic and blood vascular endothelial cells, osteoclasts, and activated macrophages. The activating KRAS variant is a known 'hotspot' variant, frequently identified in several types of human cancer. This is the first report of identifying a pathogenic variant in a patient with GSD. This finding may set the stage for elucidation of pathophysiology and the development of novel therapies for GSD."	"A potent KRAS macromolecule degrader specifically targeting tumours with mutant KRAS. Tumour-associated KRAS mutations are the most prevalent in the three RAS-family isoforms and involve many different amino-acids. Therefore, molecules able to interfere with mutant KRAS protein are potentially important for wide-ranging tumour therapy. We describe the engineering of two RAS degraders based on protein macromolecules (macrodrugs) fused to specific E3 ligases. A KRAS-specific DARPin fused to the VHL E3 ligase is compared to a pan-RAS intracellular single domain antibody (iDAb) fused to the UBOX domain of the CHIP E3 ligase. We demonstrate that while the KRAS-specific DARPin degrader induces specific proteolysis of both mutant and wild type KRAS, it only inhibits proliferation of cancer cells expressing mutant KRAS in vitro and in vivo. Pan-RAS protein degradation, however, affects proliferation irrespective of the RAS mutation. These data show that specific KRAS degradation is an important therapeutic strategy to affect tumours expressing any of the range of KRAS mutations."	"Undifferentiated carcinoma with osteoclast-like giant cells of the pancreas harboring KRAS and BRCA mutations: case report and whole exome sequencing analysis. Undifferentiated carcinoma with osteoclast-like giant cells (UC-OGC) is an extremely uncommon pancreatic neoplasm that comprises less than 1% of all exocrine pancreatic tumors. To date, cases and data from whole-exome sequencing (WES) analysis have been reported by specific studies. We report a case of pancreatic UC-OGC with a literature review, and provide novel insights into the molecular characteristics of this tumor entity. A 31-year-old male presented with intermittent abdominal pain for several months, and positron emission tomography (PET) showed isolated high metabolic nodules during the pancreatic uncinate process that were likely to be malignant disease. Pathological examination after radical excision revealed UC-OGC associated with poorly differentiated adenocarcinoma at the head of the pancreas. The disease recurred 7.4 months after radical surgery. The KRAS p.G12D (c.35G &gt; A) and somatic BRCA2 p.R2896C (c.8686C &gt; T) mutations were detected by subsequent WES analysis. The patient showed no response to platinum-based systemic chemotherapy, and his condition quickly worsened. He finally died, with an overall survival of 1 year. As an extremely uncommon tumor entity, UC-OGC is really a unique variant of conventional pancreatic ductal adenocarcinoma due to its similarities, as shown by genomic WES analysis. Clinical examination and molecular analysis by WES could further indicate potential treatment strategies for UC-OGC."	"The diagnostic accuracy of digital PCR, ARMS and NGS for detecting KRAS mutation in cell-free DNA of patients with colorectal cancer: A protocol for systematic review and meta-analysis. Cetuximab and panitumumab have been used clinically to treat metastatic colorectal cancer for more than 15 years. Before the treatment is given, it is required to determine the KRAS mutation status since it would lead to drug resistance. Tumor tissue sample is traditionally used for cancer genotyping. In recent years, liquid biopsy sample has been intensively investigated as a surrogate for tumor tissue sample due to its non-invasiveness and better presentation of tumor heterogeneity. The aim of this study is to systematically summarize the accuracy of KRAS mutation measurement in colorectal cancer using cell-free DNA in liquid biopsy samples, with tumor tissue sample as reference (gold standard). We will search literatures in the following databases: Pubmed, Embase, and Cochrane Library. Systemic review and meta-analysis will be performed to summarize the accuracy of KRAS mutation measurement in colorectal cancer using liquid biopsy sample, and subgroup analysis will be performed on different testing platforms, and on metastatic and non-metastatic colorectal cancer. This study will start on June 1, 2020, and is expected to be finished by November 1, 2020. Ethical approval will not be required since the data obtained and analyzed in this study will not be on individual patients. Study results will be disseminated as an official publication in a peer-reviewed journal.Registration: PROSPERO CRD42020176682."	"ZNF251 promotes the progression of lung cancer by activating ERK signaling. Aberrant activation of ERK signaling is a hallmark of lung cancer. Although constitutively activating mutations of EGFR and KRAS contribute to the hyperactivation of ERK1/2, other mechanisms remain elusive. In this study, the zinc finger protein ZNF251 was found to be upregulated in clinical lung cancer samples, and it promoted the growth of lung cancer cells and the growth of primary lung KPC cells from mouse models (Ad-Cre, Kras<sup>G12D</sup> , and P53<sup>f/f</sup> ). In studying the molecular mechanism, ZNF251 was found to inhibit the expression of dual-specificity phosphatase 6, a negative regulator of ERK activation, by directly binding to its promoter region. Taken together, our data indicate the tumor-promoting effects of ZNF251 in lung cancer and suggest that ZNF251 is a therapeutic target."	"Endoscopic Ultrasound-Guided Fine Needle Aspiration Cytologic Evaluation of Intraductal Papillary Mucinous Neoplasm and Mucinous Cystic Neoplasms of Pancreas. To evaluate the role of endoscopic ultrasound-guided fine needle aspiration cytology in identifying mucinous cystic lesions (MCLs) in histologically proven cases of intraductal papillary mucinous neoplasm (IPMN) or mucinous cystic neoplasm (MCN) and risk of malignancy associated with each cytologic category based on the Papanicolaou Society of Cytopathology (PSC) guidelines. All resected cases with histologic diagnosis of IPMN or MCN at our institution from January 1, 2004, to August 31, 2019, with associated cytology were included. Available cytology slides of nondiagnostic (ND), negative/benign (BN), and atypical cytology (AC) cases were reviewed and reclassified based on the PSC guidelines. A total of 120 cases were identified, including 57 IPMNs with low-grade or moderate dysplasia (LGD/MD) and high-grade dysplasia (HGD), 34 MCNs with LGD/MD or HGD, and 29 IPMNs with invasive malignancy. After cytology slide review and reclassification, we observed that ND and BN cases were paucicellular and lacked ancillary testing (carcinoembryonic antigen levels or KRAS mutation analysis). The risk-of-malignancy rates were 33% for ND, 11% for BN, 28.5% for AC, 17% for MCL, and 100% for suspicious/positive cytologic diagnosis. A multidisciplinary approach including combined use of cytology and ancillary testing is helpful in establishing a diagnosis of MCL and identifying associated malignancy."	"Optimal Management of Patients with Advanced NSCLC Harboring High PD-L1 Expression and Driver Mutations. Patients with stage IV or recurrent/metastatic non-small cell lung cancer (NSCLC) whose tumors harbor high PD-L1 expression and driver mutations with approved targeted treatments (EGFR, ALK, BRAF<sup>V600E</sup>, ROS1) should receive initial therapy with targeted therapy based on impressive clinical activity. PD-(L)1 inhibitors have demonstrated minimal activity in many driver mutation subsets including EGFR and ALK and appears to have more benefit in smoking-associated oncogenic drivers (KRAS, BRAF). For KRAS-driven tumors, co-mutations such as STK11/LKB1 are negative predictive markers of immunotherapy with or without chemotherapy. Therefore, driver mutations need to be evaluated before pursuing immunotherapy independent of PD-L1 expression level. Caution should be used with TKIs following or concurrent with immunotherapy owing to potentially increased toxicity. New immunotherapy combinations are needed especially for oncogene-driven tumors associated with never or light smoking history."	"Development of a cell-free split-luciferase biochemical assay as a tool for screening for inhibitors of challenging protein-protein interaction targets. Targeting the interaction of proteins with weak binding affinities or low solubility represents a particular challenge for drug screening. The NanoLuc <sup>â </sup>® Binary Technology (NanoBiT <sup>â </sup>®) was originally developed to detect protein-protein interactions in live mammalian cells. Here we report the successful translation of the NanoBit cellular assay into a biochemical, cell-free format using mammalian cell lysates. We show that the assay is suitable for the detection of both strong and weak protein interactions such as those involving the binding of RAS oncoproteins to either RAF or phosphoinositide 3-kinase (PI3K) effectors respectively, and that it is also effective for the study of poorly soluble protein domains such as the RAS binding domain of PI3K. Furthermore, the RAS interaction assay is sensitive and responds to both strong and weak RAS inhibitors. Our data show that the assay is robust, reproducible, cost-effective, and can be adapted for small and large-scale screening approaches. The NanoBit Biochemical Assay offers an attractive tool for drug screening against challenging protein-protein interaction targets, including the interaction of RAS with PI3K."	"Correlations of morphology and molecular alterations in traditional serrated adenoma. Traditional serrated adenoma was first reported by Longacre and Fenoglio-Presier in 1990. Their initial study described main features of this lesion, but the consensus diagnostic criteria were not widely adopted until recently. Traditional serrated adenoma presents with grossly protuberant configuration and pinecone-like appearance upon endoscopy. Histologically, it is characterized by ectopic crypt formation, slit-like serration, eosinophilic cytoplasm and pencillate nuclei. Although much is now known about the morphology and molecular changes, the mechanisms underlying the morphological alterations are still not fully understood. Furthermore, the origin of traditional serrated adenoma is not completely known. We review recent studies of the traditional serrated adenoma and provide an overview on current understanding of this rare entity."	"NRAS status determines sensitivity to SHP2 inhibitor combination therapies targeting the RAS-MAPK pathway in neuroblastoma. Survival for high-risk neuroblastoma (NB) remains poor and treatment for relapsed disease rarely leads to long-term cures. Large sequencing studies of NB tumors from diagnosis have not identified common targetable driver mutations other than the 10% of tumors that harbor mutations in the anaplastic lymphoma kinase (ALK) gene. However, at NB recurrence, more frequent mutations in genes in the RAS-MAPK pathway have been detected. The PTPN11-encoded tyrosine phosphatase SHP2 is an activator of the RAS pathway, and we and others have shown that pharmacologic inhibition of SHP2 suppresses the growth of various tumor types harboring KRAS mutations such as pancreatic and lung cancers. Here we report inhibition of growth and downstream RAS-MAPK signaling in NB cells in response to treatment with the SHP2 inhibitors SHP099, II-B08 and RMC-4550. However, NB cell lines harboring endogenous NRASQ61K mutation (which is commonly detected at relapse) or isogenic NB cells engineered to overexpress NRASQ61K were distinctly resistant to SHP2 inhibitors. Combinations of SHP2 inhibitors with other RAS pathway inhibitors such as trametinib, vemurafenib, and ulixertinib were synergistic and reversed resistance to SHP2 inhibition in NB in vitro and in vivo. These results suggest for the first time that combination therapies targeting SHP2 and other components of the RAS-MAPK pathway may be effective against conventional therapy-resistant relapsed NB, including those that have acquired NRAS mutations."	"Inactivation of APC Induces CD34 Upregulation to Promote Epithelial-Mesenchymal Transition and Cancer Stem Cell Traits in Pancreatic Cancer. Pancreatic cancer (PC) is a highly lethal malignancy due to the cancer routinely being diagnosed late and having a limited response to chemotherapy. Pancreatic ductal adenocarcinoma (PDAC) is the most common form of pancreatic malignant tumor, representing more than 85% of all pancreatic cancers. In the present study, we characterized the phenotypes of concomitant P53 and APC mutations in pancreatic neoplasms driven by the oncogene KRAS in genetically modified mice (GEMM). In this GEMM setting, APC haploinsufficiency coupled with P53 deletion and KRAS<sup>G12D</sup> activation resulted in an earlier appearance of pancreatic intraepithelial neoplasia (PanIN) lesions and progressed rapidly to highly invasive and metastatic PDAC. Through a microarray analysis of murine PDAC cells derived from our APC-deficient PDAC model, we observed that APC loss leads to upregulated CD34 expression in PDAC. CD34 is a member of a family of single-pass transmembrane proteins and is selectively expressed in hematopoietic progenitor cells, vascular endothelial cells, interstitial precursor cells, and various interstitial tumor cells. However, the functional roles of CD34 in pancreatic cancer remain unclear. Thus, in this study, we explored the mechanisms regarding how CD34 promotes the deterioration of pancreatic malignancy. Our results demonstrated that the increased expression of CD34 induced by APC inactivation promotes the invasion and migration of PDAC cells, which may relate to PDAC metastasis in vivo. Collectively, our study provides first-line evidence to delineate the association between CD34 and the APC/Wnt pathway in PDAC, and reveals the potential roles of CD34 in PDAC progression."	"Pancreatic ductal adenocarcinomas from Mexican patients present a distinct genomic mutational pattern. Pancreatic ductal adenocarcinoma (PDAC) is one of the deadliest cancers in humans, with less than 5% 5-year survival rate. PDAC is characterized by a small number of recurrent mutations, including KRAS, CDKN2A, TP53, and SMAD4 and a long &quot;tail&quot; of infrequent mutated genes. Most of the studies have been performed in US and European populations, so new studies are needed to describe the mutational landscape of these tumors in other cohorts. The present study analyzed the exome and transcriptome of four PDAC tumors from Mexican patients. We found a paucity of the previously described recurrent mutations, with mutations in only three genes (HERC2, CNTNAP2 and HMCN1) previously reported in PDAC with a frequency &gt; 1%. In addition, we discovered several recurrent putative copy number aberrations in SKP2, BRAF, CSSF1R, FOXE1, JAK2 and MET genes and in genes previously reported as putative drivers in PDAC, including KRAS, SF3B1, BRAF, MYC and MET. Although a larger cohort is needed to validate these findings, our results could be pointing toward potential differences in contributing factors for PDAC in Latin-American populations."	"Downregulation of microRNA‑143 promotes osteogenic differentiation of human adipose‑derived mesenchymal stem cells through the k‑Ras/MEK/ERK signaling pathway. MicroRNAs (miRNAs) are known to have regulatory roles in the osteogenic differentiation of various mesenchymal stem cells (MSCs), although their regulatory role on human adipose‑derived mesenchymal stem cells (hADSCs) remains unclear. The aim of the present study was to investigate the biological function and underlying molecular mechanism of miRNAs in regulating the osteogenic differentiation of hADSCs using microarray assay. hADSCs differentiated into osteoblasts under culture with osteogenic medium, with an increase observed in calcium deposits and alkaline phosphatase activity. The mRNA levels of bone sialoprotein, osteopontin and osteocalcin increased, whereas Runt‑related transcription factor‑2 expression decreased during osteogenic differentiation. In addition, miR‑143 was markedly downregulated during osteogenic differentiation, while miR‑143 overexpression inhibited and miR‑143 knockdown enhanced this process. miR‑143 overexpression also blocked extracellular signal‑regulated kinase 1/2 (ERK1/2) pathway activation, while miR‑143 inhibition enhanced it. The promoting effects of miR‑143 knockdown on the osteogenic differentiation of hADSCs were partly diminished by the mitogen‑activated protein kinase (MEK) inhibitors U0126 and PD98059. Bioinformatics analysis further revealed that miR‑143 targets k‑Ras and directly binds to the 3'‑untranslated region of its mRNA. Inhibition of miR‑143 enhanced the activation of the k‑Ras/MEK/ERK pathway during osteogenic differentiation, whereas miR‑143 overexpression had the opposite effect. Collectively, these results demonstrated that miR‑143 negatively regulates the osteogenic differentiation of hADSCs through the k‑Ras/MEK/ERK pathway, providing further insight into the underlying molecular mechanisms."	"Clinicopathological Characteristics and Mutation Spectrum of Colorectal Adenocarcinoma With Mucinous Component in a Chinese Cohort: Comparison With Classical Adenocarcinoma. Background: Colorectal adenocarcinoma with mucinous component (AWMC) is a special entity of colorectal cancer. The study is aimed at analyzing the clinicopathological characteristics, mutation spectrum, and prognosis of AWMC and comparing it with classical adenocarcinoma (AC) in a Chinese cohort. Methods: One hundred eight AMWC and 204 AC patients were included. Targeted next-generation sequencing (NGS) was performed on formalin-fixed paraffin-embedded (FFPE) tissues. AWMC was further divided into two groups: AWMC with signet ring cell component and AWMC without signet ring cell component. Clinicopathological features, mismatch repair protein (MMR) status, genetic alterations, and survival outcomes were analyzed after tumor location was taken into consideration. Results: AWMC had larger tumor size (p = 0.014) and showed predilection for proximal colon (p &lt; 0.001) compared with AC. Regardless of primary sites, AWMC was associated with less metastasis (p &lt; 0.001) and earlier AJCC stage (p &lt; 0.001). Mismatch repair protein deficiency (dMMR) was more commonly detected in AWMC than in AC for right-sided colon (p &lt; 0.001), but the difference was not significant for left-sided colon (p = 0.081). The five most commonly mutated genes in AWMC were KRAS (45.4%), TP53 (39.8%), APC (22.2%), PIK3CA (22.2%), and SMAD4 (10.2%). AWMC showed a significantly lower mutation rate of TP53 than AC, both in right-sided colon and in left-sided colon (p &lt; 0.001 and p = 0.033, respectively). In left-sided colon, AWMC with signet ring cell component had a significantly smaller size than tumors with signet ring cell component (p = 0.034). No dMMR cases were detected in AWMC with signet ring cell component (n = 7). Moreover, AWMC with signet ring cell component had a significantly lower KRAS mutation rate than AWMC without signet ring cell component, both in right-sided colon and in left-sided colon (p = 0.036 and p = 0.012, respectively). The disease-specific survival (DSS) for AWMC and AC were not statistically different (p = 0.0587). Multivariate analysis showed that AWMC was not an independent predictor of prognosis. Conclusion: Regardless of primary sites, AWMC demonstrates less metastasis, earlier stages, more frequent dMMR, and lower TP53 mutation rate than AC. Our results indicate that different molecular pathogenesis might underlie mucinous morphology in colorectal carcinoma. Mucinous component is not an independent factor of outcome."	"Genetic Tracing of Clonal Expansion and Progression of Pancreatic Ductal Adenocarcinoma: A Case Report and Multi-Region Sequencing Analysis. Pancreatobiliary tumors frequently contain multiple malignant and precancerous lesions; however, the origin of the driver mutations and the mechanisms that underlie the generation of distinct clones within an organ field remain unclear. Herein, we describe a 76-year-old male suffering from moderately differentiated adenocarcinomas of the pancreas that primarily involved the distal bile duct and multiple &quot;dispersing&quot; invasive lesions in the pancreatic head. The patient underwent pylorus-preserving pancreaticoduodenectomy with superior mesenteric vein resection, and targeted sequencing of 18 genes associated with pancreatic tumorigenesis and immunohistochemical analysis of RNF43 and ARID1A were performed on each tumor compartment, including the invasive and non-invasive areas. Multi-region sequencing revealed shared KRAS and TGFBR1 mutations in all invasive foci, including those involving the distal bile duct. Distinct KRAS variants were found to be present in other non-continuous and non-invasive lesions in the pancreas. Intraductal lesions with KRAS G12D and RNF43 V50R mutations were evident in the main pancreatic duct. This appeared to be a founder clone, given that the mutation profile was common to the invasive foci as well as the additional high-grade dysplasia harboring ARID1A mutations, thereby suggesting a clonal branch-off during tumor evolution. In addition, we also observed independent intraductal papillary mucinous neoplasms with KRAS G12V and GNAS R201H mutations. Our theory, learned from this patient, was that lesions skipped dissemination and wide-spread movement potentially through the pancreatic ductal system as a process of pancreatic cancer development."	"Assessment of Nine Driver Gene Mutations in Surgically Resected Samples from Patients with Non-Small-Cell Lung Cancer. The mutational profile of oncogenic driver genes play an important role in non-small-cell lung cancer (NSCLC). The need of a testing panel capable of comprehensively determining patient genotypes in limited amounts of material has increased since the recent association of nine core oncogenic driver genes as tumor predictive biomarkers. Surgically resected samples from 214 NSCLC patients (168 patients with adenocarcinomas and 46 with squamous cell cancers) were included. A multiplexed PCR-based assay was developed to simultaneously test 118 hotspot mutations and fusions in nine driver genes. The sensitivity of the kit was 1% for gene mutation and 450 copies for gene fusion. Genetic alterations were detected in 143 (66.8%) patients by the assay. The three most common alterations identified were EGFR mutations (50.9%), KRAS mutations (8.4%) and ALK fusions (4.7%). Eight (3.7%) patients harbored concurrent mutations, and the most common partners were EGFR mutations which were observed in the eight patients. No associations between survival and EGFR, KRAS, and ALK status were observed. Patients with two or more alterations exhibited shorter DFS compared to those with single mutations (P=0.032), whilst had no significant difference in OS (P=0.245). However, only TNM stage was an independent predictor of OS (HR=2.905, P&lt;0.001) as well as DFS (HR=2.114, P&lt;0.001) in our cohort in multivariate analysis. Furthermore, patients with the L858R mutation had longer DFS (P=0.014) compared to other sensitizing mutations and tended to have better OS but the differences were not significant (P=0.06). These findings suggest this multiplex gene panel testing technique can be efficiently used to detect nine driver genes in a limited number of specimens. This methodology would have the potential to save both specimens and time compared to the combination of all assays by other methods."	"Lung-only melanoma: UV mutational signature supports origin from occult cutaneous primaries and argues against the concept of primary pulmonary melanoma. Primary pulmonary melanoma (PPM) is an entity recognized by the thoracic WHO classification. However, given the absence of native melanocytes in the lung and the known phenomenon of regression of cutaneous melanomas, the existence of PPM has remained controversial. Herein we investigate clinicopathologic and genomic features of lung-only melanomas with the goal to clarify their site of origin. We identified 10 melanomas involving exclusively lung with no current or previous cutaneous, uveal, or mucosal primaries. Four patients had solitary lesions with mean size of 5.1 cm (range 3.0-10.1 cm), meeting the criteria of PPM. Four patients had 2-3 lesions and 2 patients had &gt;10 lesions. All cases underwent targeted next-generation sequencing interrogating up to 468 cancer genes, which revealed mean tumor mutation burden of 42.6 per megabase (range 1.8 to 126) and frequent mutations involving BRAF, NRAS, NF1, KIT, and KRAS - a genomic profile typical of UV-associated cutaneous melanoma. Mutational signature was assessable for eight cases harboring &gt;20 mutations. This revealed that all evaluable cases harbored a dominant UV signature. In addition, one nonevaluable case harbored a GG &gt; AA TERT promoter variant that is highly specific for UV-mutagenesis. As control groups, using the same methodology, a dominant UV signature was identified in 97% (470/486) of cutaneous melanomas, whereas no lung adenocarcinoma (n = 291) exhibited this signature. Notably, the clinical and pathologic features of solitary melanomas, especially those with large size and epithelioid morphology, closely mimicked primary lung carcinomas, highlighting a major potential for misdiagnosis. In conclusion, presence of a UV signature provides direct evidence that nearly all lung-only melanomas in this series, including solitary lesions meeting the strict criteria of PPM, represent metastases from occult cutaneous melanomas. This suggests that lung-only melanomas should be considered as likely metastatic even in the absence of a known primary melanoma elsewhere."	"Genome-wide association meta-analysis identifies GP2 gene risk variants for pancreatic cancer. Pancreatic cancer is the fourth leading cause of cancer-related deaths in Japan. To identify risk loci, we perform a meta-analysis of three genome-wide association studies comprising 2,039 pancreatic cancer patients and 32,592 controls in the Japanese population. Here, we identify 3 (13q12.2, 13q22.1, and 16p12.3) genome-wide significant loci (P &lt; 5.0 × 10<sup>-8</sup>), of which 16p12.3 has not been reported in the Western population. The lead single nucleotide polymorphism (SNP) at 16p12.3 is rs78193826 (odds ratio = 1.46, 95% confidence interval = 1.29-1.66, P = 4.28 × 10<sup>-9</sup>), an Asian-specific, nonsynonymous glycoprotein 2 (GP2) gene variant. Associations between selected GP2 gene variants and pancreatic cancer are replicated in 10,822 additional cases and controls of East Asian origin. Functional analyses using cell lines provide supporting evidence of the effect of rs78193826 on KRAS activity. These findings suggest that GP2 gene variants are probably associated with pancreatic cancer susceptibility in populations of East Asian ancestry."	"Effect of PIERCE1 on colorectal cancer. Colorectal cancer is the second most lethal cancer type across all ages and sexes, the many mechanisms of which are still currently being further elucidated. PIERCE1 has been known to be involved in the cell cycle and proliferation, the expression of which is regulated by stress conditions in a p53-dependent manner. Through a database search, we found that PIERCE1 was significantly augmented in patients with colorectal carcinoma compared to normal samples, suggesting its possible role in tumor regulation. Recently, PIERCE1 has also been reported to increase proliferation of a liver cancer cell line, indicating its possible role as an oncogene. To examine its relevance to tumorigenesis, such as whether it has either oncogenic or tumor suppressive function, PIERCE1 was knocked down and overexpressed in several colorectal cancer cell lines and mice, respectively. To evaluate the roles of Pierce1in vivo, we established a Pierce1 transgenic (TG) mouse model and then administered azoxymethane with dextran sodium sulfate (DSS) to induce colorectal carcinogenesis via promoting mutations in Apc and Kras. Nonetheless, PIERCE1 depletion in these cell lines showed no significant change in cell growth. AOM/DSS-treated Pierce1 TG mice were comparable with respect to colon lengths, the number of polyps, and tumor sizes to those of the control mice. These results implicate that PIERCE1 does not play an oncogenic or tumor suppressive role in AOM/DSS-induced colorectal cancer."	"p38gamma MAPK is essential for aerobic glycolysis and pancreatic tumorigenesis. KRAS is mutated in most pancreatic ductal adenocarcinomas (PDAC) and yet remains undruggable. Here we report that p38gamma MAPK, which promotes PDAC tumorigenesis by linking KRAS signaling and aerobic glycolysis (also called the Warburg effect), is a novel therapeutic target. p38gamma interacted with a glycolytic activator PFKFB3 that was dependent on mutated KRAS. KRAS transformation and overexpression of p38gamma increased expression of PFKFB3 and glucose transporter GLUT2; conversely, silencing mutant KRAS and p38gamma decreased PFKFB3 and GLUT2 expression. p38gamma phosphorylated PFKFB3 at S467, stabilized PFKFB3, and promoted their interaction with GLUT2. Pancreatic knockout (KO) of p38gamma decreased p-PFKFB3/PFKFB3/GLUT2 protein levels, reduced aerobic glycolysis, and inhibited PDAC tumorigenesis in KPC mice. PFKFB3 and GLUT2 depended on p38gamma to stimulate glycolysis and PDAC growth and p38gamma required PFKFB3/S467 to promote these activities. A p38gamma inhibitor cooperated with a PFKFB3 inhibitor to blunt aerobic glycolysis and PDAC growth, which was dependent on p38gamma. Moreover, overexpression of p38gamma, p-PFKFB3, PFKFB3, and GLUT2 in PDAC predicted poor clinical prognosis. These results indicate that p38gamma links KRAS oncogene signaling and aerobic glycolysis to promote pancreatic tumorigenesis through PFKFB3 and GLUT2, and that p38gamma and PFKFB3 may be targeted for therapeutic intervention in PDAC."	"High expression of AMAP1, an ARF6 effector, is associated with elevated levels of PD-L1 and fibrosis of pancreatic cancer. Not merely the onset of immune evasion, but other factors, such as acidosis and fibrosis, are also major barriers in cancer therapeutics. Dense fibrosis is a hallmark of pancreatic ductal carcinoma (PDAC), in which hyperactivation of focal adhesion kinase (FAK) in tumor cells was shown to be crucial. Double mutations of KRAS/ TP53 are characteristic to PDAC. We previously showed that high protein expression of ARF6 and its downstream effector AMAP1, as well as processes involved in the ARF6 activation by cell surface tyrosine kinase receptors, are major targets of the KRAS/TP53 mutations to promote PDAC invasion, metastasis, and immune evasion. This notion was recaptured by KPC mouse model of human PDAC (LSL-Kras(G12D/+); LSL-Trp53(R172H/+)); Pdx-1-Cre). Mechanistically, the ARF6-AMAP1 pathway is primarily involved in cellular dynamics of PD-L1, β1-integrins, and E-cadherin; and hence modulates cell-adhesion properties when ARF6 is activated. Here, with an aim to understand whether the ARF6-AMAP1 pathway is critically involved in the elevated levels of PD-L1 and fibrosis of PDAC, we analyzed relationship between AMAP1 and these malignant phenotypes. Moreover, because the ARF6 pathway may closely be related to focal adhesion dynamics and hence to FAK, we also investigated whether AMAP1 employs FAK in fibrosis. Clinical specimens, as well as KPC cells/tumors and their shAMAP1 or shFAK derivatives were analyzed. Elevated levels of PD-L1 and fibrosis correlated with poor outcome of our patient cohort, to be consistent with previous reports; in which high AMAP1 expression statistically correlated with the elevated PD-L1 and fibrosis. To be consistent, silencing of AMAP1 (shAMAP1) in KPC cells resulted in reduced PD-L1 expression and fibrosis in their tumors. On the other hand, shAMAP1 only slightly affected FAK activation in KPC cells, and phosphorylated FAK did not correlate with enhanced fibrosis or with poor outcome of our patients. Together with our previous data, our results collectively indicated that the ARF6-AMAP1 pathway, empowered by the KRAS/TP53 mutations, is closely associated with elevated PD-L1 expression and fibrosis of human PDACs, to be recaptured in the KPC mouse model. The ARF6 pathway may promote fibrosis independent of FAK. Video abstract."	"Molecular therapeutic targets in non-small cell lung cancer. Several targetable genetic alterations have been identified in non-small cell lung cancers (NSCLC) and drugs targeting these alterations have been approved for the management of advanced NSCLC patients. Driver mutations with emerging clinical trial data include EGFR exon 20 insertion mutations, MET amplification, KRAS G12 C point mutations, RET rearrangements, HER2 amplification and mutations, and FGFR amplification and translocations. We reviewed English-language articles indexed in Medline and PubMed up to the 1<sup>st</sup> of June 2020. In addition, the proceedings of major conferences were reviewed for relevant abstracts. We report data published regarding targeted therapies which are currently approved and for those which are emerging in advanced or metastatic NSCLC. While these drugs have been shown to be efficacious and tolerable, resistance almost always develops. Though next-generation tyrosine kinase inhibitors (TKIs) have been developed, the appropriate sequencing of these drugs is not clear. Evaluating combination therapies to prevent or delay the onset of resistance and understanding mechanisms of resistance are critical areas of emerging research."	"Analysis of cancer-related mutations in extracellular vesicles RNA by Droplet Digital™ PCR. Extracellular vesicles (EVs) are taking their place as potential biomarkers in the field of liquid biopsy. In this study, EVs were isolated from plasma samples of 31 patients with colorectal cancer and melanoma via differential centrifugation and Droplet Digital™ PCR (Bio-Rad, CA, USA) was used to profile BRAF V600E/K, KRAS G12A/C/D/V and KRAS G13D mutations from EV-derived cDNA. The concordance rates with corresponding tissue were 54% and 44% in the colorectal cancer and melanoma cohort, respectively. Two patients displayed mutations in EVs not previously detected in tissue as evidence for emerging molecular resistance to anti-EGFR and BRAF/MEK inhibitor therapy prior to radiological evidence of tumor progression. We concluded that EV-derived nucleic acids may provide clinically relevant diagnostic information and mirror evolution of the disease."	"Evolving pathologic concepts of serrated lesions of the colorectum. Here, we provide an up-to-date review of the histopathology and molecular pathology of serrated colorectal lesions. First, we introduce the updated contents of the 2019 World Health Organization classification for serrated lesions. The sessile serrated lesion (SSL) is a new diagnostic terminology that replaces sessile serrated adenoma and sessile serrated polyp. The diagnostic criteria for SSL were revised to require only one unequivocal distorted serrated crypt, which is sufficient for diagnosis. Unclassified serrated adenomas have been included as a new category of serrated lesions. Second, we review ongoing issues concerning the morphology of serrated lesions. Minor morphologic variants with distinct molecular features were recently defined, including serrated tubulovillous adenoma, mucin-rich variant of traditional serrated adenoma (TSA), and superficially serrated adenoma. In addition to intestinal dysplasia and serrated dysplasia, minimal deviation dysplasia and not otherwise specified dysplasia were newly suggested as dysplasia subtypes of SSLs. Third, we summarize the molecular features of serrated lesions. The critical determinant of CpG island methylation development in SSLs is patient age. Interestingly, there may be ethnic differences in BRAF/KRAS mutation frequencies in SSLs. The molecular pathogenesis of TSAs is divided into KRAS and BRAF mutation pathways. SSLs with MLH1 methylation can progress into favorable prognostic microsatellite instability-positive (MSI+)/CpG island methylator phenotype-positive (CIMP+) carcinomas, whereas MLH1-unmethylated SSLs and BRAF-mutated TSAs can be precursors of poor-prognostic MSI-/CIMP+ carcinomas. Finally, based on our recent data, we propose an algorithm for stratifying risk subgroups of non-dysplastic SSLs."	"Active Compound of Pharbitis Semen (Pharbitis nil Seeds) Suppressed KRAS-Driven Colorectal Cancer and Restored Muscle Cell Function during Cancer Progression. Kirsten rat sarcoma viral oncogene homolog (KRAS)-driven colorectal cancer (CRC) is notorious to target with drugs and has shown ineffective treatment response. The seeds of Pharbitis nil, also known as morning glory, have been used as traditional medicine in East Asia. We focused on whether Pharbitis nil seeds have a suppressive effect on mutated KRAS-driven CRC as well as reserving muscle cell functions during CRC progression. Seeds of Pharbitis nil (Pharbitis semen) were separated by chromatography and the active compound of Pharbitis semen (PN) was purified by HPLC. The compound PN efficiently suppressed the proliferation of mutated KRAS-driven CRC cells and their clonogenic potentials in a concentration-dependent manner. It also induced apoptosis of SW480 human colon cancer cells and cell cycle arrest at the G2/M phase. The CRC related pathways, including RAS/ERK and AKT/mTOR, were assessed and PN reduced the phosphorylation of AKT and mTOR. Furthermore, PN preserved muscle cell proliferation and myotube formation in cancer conditioned media. In summary, PN significantly suppressed mutated KRAS-driven cell growth and reserved muscle cell function. Based on the current study, PN could be considered as a promising starting point for the development of a nature-derived drug against KRAS-mutated CRC progression."	"Fibroblast-Derived STC-1 Modulates Tumor-Associated Macrophages and Lung Adenocarcinoma Development. The tumor microenvironment (TME) consists of different cell types, including tumor-associated macrophages (TAMs) and tumor-associated fibroblasts (TAFs). How these cells interact and contribute to lung carcinogenesis remains elusive. Using <sup>G12D</sup>KRAS- and <sup>V600E</sup>BRAF-driven mouse lung models, we identify the pleiotropic glycoprotein stanniocalcin-1 (STC1) as a regulator of TAM-TAF interactions. STC1 is secreted by TAFs and suppresses TAM differentiation, at least in part, by sequestering the binding of GRP94, an autocrine macrophage-differentiation-inducing factor, to its cognate scavenger receptors. The accumulation of mature TAMs in the Stc1-deficient lung leads to enhanced secretion of TGF-β1 and, thus, TAF accumulation in the TME. Consistent with the mouse data, in human lung adenocarcinoma, STC1 expression is restricted to myofibroblasts, and a significant increase of naive macrophages is detected in STC1-high compared with STC1-low cases. This work increases our understanding of lung adenocarcinoma development and suggests new approaches for therapeutic targeting of the TME."	"Genome-wide DNA methylation analysis of KRAS mutant cell lines. Oncogenic RAS mutations are associated with DNA methylation changes that alter gene expression to drive cancer. Recent studies suggest that DNA methylation changes may be stochastic in nature, while other groups propose distinct signaling pathways responsible for aberrant methylation. Better understanding of DNA methylation events associated with oncogenic KRAS expression could enhance therapeutic approaches. Here we analyzed the basal CpG methylation of 11 KRAS-mutant and dependent pancreatic cancer cell lines and observed strikingly similar methylation patterns. KRAS knockdown resulted in unique methylation changes with limited overlap between each cell line. In KRAS-mutant Pa16C pancreatic cancer cells, while KRAS knockdown resulted in over 8,000 differentially methylated (DM) CpGs, treatment with the ERK1/2-selective inhibitor SCH772984 showed less than 40 DM CpGs, suggesting that ERK is not a broadly active driver of KRAS-associated DNA methylation. KRAS G12V overexpression in an isogenic lung model reveals &gt;50,600 DM CpGs compared to non-transformed controls. In lung and pancreatic cells, gene ontology analyses of DM promoters show an enrichment for genes involved in differentiation and development. Taken all together, KRAS-mediated DNA methylation are stochastic and independent of canonical downstream effector signaling. These epigenetically altered genes associated with KRAS expression could represent potential therapeutic targets in KRAS-driven cancer."	"Real-world programmed death-ligand 1 prevalence rates in non-small cell lung cancer: correlation with clinicopathological features and tumour mutation status. The detection of programmed death-ligand 1 (PD-L1) protein expression on tumour cells by immunohistochemistry (IHC) is a predictor of response to immune checkpoint inhibitors. New immunotherapeutic options are changing the treatment paradigm for patients with advanced non-small cell lung cancer (NSCLC). The aim of this retrospective study was to investigate real-world prevalence of PD-L1 expression in NSCLC and any correlations with clinicopathological features. We reviewed 425 NSCLC cases at a Sydney metropolitan hospital that had PD-L1 IHC (SP263 clone) expression estimated as part of routine diagnostic assessment during a 30-month period. Overall, 32.2% of cases were negative for PD-L1 expression (&lt;1%), 40.3% demonstrated low expression (1%-49%) and 27.5% exhibited high protein expression (≥50%). High PD-L1 expression rates were more likely in non-lung resection cases and in KRAS mutant NSCLC as opposed to KRAS wildtype, while lower expression rates were more commonly found in EGFR mutant NSCLC compared with EGFR wildtype tumours. Ongoing observation and comparison of PD-L1 expression rates is an important practice for ensuring its validity as a predictive biomarker. The results from our study align with and contribute to the growing field of published real-world PD-L1 prevalence rates in NSCLC."	"Ex vivo modelling of drug efficacy in a rare metastatic urachal carcinoma. Ex vivo drug screening refers to the out-of-body assessment of drug efficacy in patient derived vital tumor cells. The purpose of these methods is to enable functional testing of patient specific efficacy of anti-cancer therapeutics and personalized treatment strategies. Such approaches could prove powerful especially in context of rare cancers for which demonstration of novel therapies is difficult due to the low numbers of patients. Here, we report comparison of different ex vivo drug screening methods in a metastatic urachal adenocarcinoma, a rare and aggressive non-urothelial bladder malignancy that arises from the remnant embryologic urachus in adults. To compare the feasibility and results obtained with alternative ex vivo drug screening techniques, we used three different approaches; enzymatic cell viability assay of 2D cell cultures and image-based cytometry of 2D and 3D cell cultures in parallel. Vital tumor cells isolated from a biopsy obtained in context of a surgical debulking procedure were used for screening of 1160 drugs with the aim to evaluate patterns of efficacy in the urachal cancer cells. Dose response data from the enzymatic cell viability assay and the image-based assay of 2D cell cultures showed the best consistency. With 3D cell culture conditions, the proliferation rate of the tumor cells was slower and potency of several drugs was reduced even following growth rate normalization of the responses. MEK, mTOR, and MET inhibitors were identified as the most cytotoxic targeted drugs. Secondary validation analyses confirmed the efficacy of these drugs also with the new human urachal adenocarcinoma cell line (MISB18) established from the patient's tumor. All the tested ex vivo drug screening methods captured the patient's tumor cells' sensitivity to drugs that could be associated with the oncogenic KRAS<sup>G12V</sup> mutation found in the patient's tumor cells. Specific drug classes however resulted in differential dose response profiles dependent on the used cell culture method indicating that the choice of assay could bias results from ex vivo drug screening assays for selected drug classes."	"Optimization of a WGA-Free Molecular Tagging-Based NGS Protocol for CTCs Mutational Profiling. Molecular characterization of Circulating Tumor Cells (CTCs) is still challenging, despite attempts to minimize the drawbacks of Whole Genome Amplification (WGA). In this paper, we propose a Next-Generation Sequencing (NGS) optimized protocol based on molecular tagging technology, in order to detect CTCs mutations while skipping the WGA step. MDA-MB-231 and MCF-7 cell lines, as well as leukocytes, were sorted into pools (2-5 cells) using a DEPArray™ system and were employed to set up the overall NGS procedure. A substantial reduction of reagent volume for the preparation of libraries was performed, in order to fit the limited DNA templates directly derived from cell lysates. Known variants in TP53, KRAS, and PIK3CA genes were detected in almost all the cell line pools (35/37 pools, 94.6%). No additional alterations, other than those which were expected, were found in all tested pools and no mutations were detected in leukocytes. The translational value of the optimized NGS workflow is confirmed by sequencing CTCs pools isolated from eight breast cancer patients and through the successful detection of variants. In conclusion, this study shows that the proposed NGS molecular tagging approach is technically feasible and, compared to traditional NGS approaches, has the advantage of filtering out the artifacts generated during library amplification, allowing for the reliable detection of mutations and, thus, making it highly promising for clinical use."	"Alterations in driver genes are predictive of survival in patients with resected pancreatic ductal adenocarcinoma. KRAS, TP53, CDKN2A, and SMAD4 are established driver genes in pancreatic ductal adenocarcinoma (PDAC). This study was aimed at determining whether the mutational status of driver genes and those involved in DNA repair pathways are associated with clinical outcomes for individuals who undergo resection. Eligible individuals were those who underwent resection of PDAC and consented to targeted sequencing of their primary tumor via Memorial Sloan Kettering-Integrated Mutation Profiling of Actionable Cancer Targets (MSK-IMPACT). Genomic alterations were determined on the basis of MSK-IMPACT results from formalin-fixed, paraffin-embedded samples. Associations between genomic alterations and clinical outcomes were assessed. Targeted sequencing was performed on 283 primary tumors resected between 2004 and 2017. The median follow-up was 23 months among survivors. Alterations in KRAS and TP53 were associated with worse overall survival (OS) in comparison to wild type (median for KRAS, 38.8 months [95% CI, 33.0-45.5 months] vs 91.0 months [95% CI, 34.8 months to not available (NA)]; P = .043; median for TP53, 37.4 months [95% CI, 32.1-42.8 months] vs 65.0 months [95% CI, 33.0 months to NA]; P = .035). KRAS G12D mutations were associated with worse OS (median, 31.6 months [95% CI, 25.3-45.5 months] vs 39.2 months [95% CI, 37.4-75.2 months]; P = .012). TP53 truncating mutations (median, 39.6 months [95% CI, 32.4-75.2 months] vs 33.9 months [95% CI, 24.0-39.0 months]; P = .020) and those associated with loss of heterozygosity (median, 26.6 months [95% CI, 21.6-44.2 months] vs 39.2 months [95% CI, 34.5-49.1 months]; P = .048) had decreased OS. TP53 alterations were independently associated with OS in a multivariate analysis (hazard ratio, 1.54; 95% CI, 1.01-2.33; P = .042). Individuals with germline alterations in homologous recombination deficiency (HRD) genes had improved OS in comparison with those without them (median, not reached vs 37.0 months; 95% CI, 33.0-49.8 months; P = .035). In patients with resected PDAC, genomic alterations in KRAS and TP53 are associated with worse outcomes, whereas alterations in HRD genes are associated with a favorable prognosis. Further studies are needed to better define these alterations as biomarkers in resected PDAC."	"TPL2 enforces RAS-induced inflammatory signaling and is activated by point mutations. NF-kB transcription factors, driven by the IRAK-IKK cascade, confer treatment resistance in pancreatic ductal adenocarcinoma (PDAC), a cancer characterized by near universal KRAS mutation. Through reverse-phase protein array and RNAseq we discovered IRAK4 also contributes substantially to MAPK activation in KRAS-mutant PDAC. IRAK4 ablation completely blocked RAS-induced transformation of human and murine cells. Mechanistically, expression of mutant KRAS stimulated an inflammatory, autocrine IL-1b signaling loop that activated IRAK4 and MAPK pathway. Downstream of IRAK4, we uncovered TPL2/MAP3K8 as the essential kinase that propels both MAPK and NF-kB cascades. Inhibition of TPL2 blocked both MAPK and NF-kB signaling, and suppressed KRAS-mutant cell growth. To counter chemotherapy-induced genotoxic stress, PDAC cells upregulated TLR9, which activated pro-survival IRAK4-TPL2 signaling. Accordingly, TPL2 inhibitor synergized with chemotherapy to curb PDAC growth in vivo. Finally, from TCGA we characterized two MAP3K8 point mutations that hyperactivate MAPK and NF-kB cascades by impeding TPL2 protein degradation. Cancer cell lines naturally harboring these MAP3K8 mutations are strikingly sensitive to TPL2 inhibition, underscoring the need to identify these potentially targetable mutations in patients. Overall, our study establishes TPL2 as a promising therapeutic target in RAS- and MAP3K8-mutant cancers and strongly prompts development of TPL2 inhibitors for pre-clinical and clinical studies."	"Drastic Reduction of Turnaround Time After Implementation of a Fully Automated Assay for RAS-BRAF Mutations in Colorectal Cancer: A Pilot Prospective Study in Real-life Conditions. In some situations, there is a need for rapid mutation tests for guiding clinical decisions and starting targeted therapies with minimal delays. In this study we evaluated the turnaround time before and after the implementation of a fully automated multiplex assay for KRAS and NRAS/BRAF mutation tests (Idylla™ platform, Biocartis) in metastatic colorectal cancer. The objective of this project was to compare the turnaround times in 2017-2018 with the fully automated multiplex assay to the 2016 results with previous methods. Centers with a number of tests for metastatic colorectal cancer &gt; 100 yearly and a usual turnaround time ≥ 3 weeks for mutation detection were selected. Results of 505 KRAS tests and 369 NRAS/BRAF tests were transmitted by 10 centers. The mean turnaround time from test prescription to reception of results was reduced from 25.8 days in 2016 to 4.5 days in 2017-2018. In conclusion, this pilot project shows that the Idylla™ platform for testing KRAS and NRAS/BRAF mutations allows an optimized turnaround time from test prescription to reception of results."	"Nano-delivery of Gemcitabine Derivative as a Therapeutic Strategy in a Desmoplastic KRAS Mutant Pancreatic Cancer. Pancreatic ductal adenocarcinoma remains one of the challenging malignancies to treat, and chemotherapy is the primary treatment strategy available to most patients. Gemcitabine, one of the oldest chemotherapeutic drugs approved for pancreatic cancer, has limited efficacy, due to low drug distribution to the tumor and chemoresistance following therapy. In this study, we delivered gemcitabine monophosphate using lipid calcium phosphate nanoparticles, to desmoplastic pancreatic tumors. Monophosphorylation is a critical, rate-limiting step following cellular uptake of gemcitabine and precursor of the pharmacologically active gemcitabine triphosphate. Our drug delivery strategy enabled us to achieve robust tumor regression with a low parenteral dose in a clinically relevant, KRAS mutant, syngeneic orthotopic allograft, lentivirus-transfected KPC cell line-derived model of pancreatic cancer. Treatment with gemcitabine monophosphate significantly increased apoptosis of cancer cells, enabled reduction in the proportion of immunosuppressive tumor-associated macrophages and myeloid-derived suppressor cells, and did not increase expression of cancer stem cell markers. Overall, we could trigger a strong antitumor response in a treatment refractory PDAC model, while bypassing critical hallmarks of gemcitabine chemoresistance."	"Ciliogenesis and Hedgehog signalling are supressed downstream of KRas during acinar-ductal metaplasia. Pancreatic ductal adenocarcinoma (PDAC) is the third leading cause of cancer related deaths worldwide, but has a dismal 5-year survival rate of only 7% primarily due to late diagnosis and ineffective therapies. To treat or even prevent PDAC it is vital we understand the initiating events that lead to tumour onset.PDAC develops from preneoplastic lesions, most commonly pancreatic intraepithelial neoplasias (PanIN) driven by constitutive activation of KRas. In patients PanIN are associated with regions of acinar-ductal metaplasia (ADM), where in response to inflammation acini dedifferentiate to a pancreatic progenitor-like fate. In healthy tissue this process is reversible leading to regeneration of the pancreas however in the presence of oncogenic KRas regeneration is blocked and ADM can give rise to PanIN lesions. Here we have used a 3D acinar culture that recapitulates ADM in vitro to explore how KRas prevents regeneration.Regeneration is regulated by Hedgehog (Hh) signalling, which is transduced via the primary cilium. In WT acini, cilia assemble upon ADM and Hh target gene expression is upregulated however ciliogenesis and Hh signaling is suppressed during ADM in cells expressing oncogenic KRas. We show that ciliogenesis fails due to ectopic activation of the cilium disassembly pathway, which is mediated by AurkA, a direct transcriptional target of KRas. Inhibition of AurkA is able to rescue primary cilia and restore Hh signalling. We suggest this could be used as a mechanism to prevent the formation of early lesions and thereby prevent progression to PDAC."	"Amplification of KRAS and its heterogeneity in non-Asian gastric adenocarcinomas. Gastric cancer is one of the deadliest cancer entities worldwide. While surgery is the only curative treatment option in early tumors, for locally advanced and metastatic patients further therapeutic targets are needed. Several studies not only reported mutations but also amplifications of the KRAS locus in different cancer entities. More recently, KRAS amplification was discussed as a new therapeutic target. Little is known about the (prognostic) relevance and (heterogenic) distribution of KRAS amplification in gastric adenocarcinomas, especially in Non-Asian patients. Amplification of the KRAS locus and corresponding protein expression was analyzed in 582 gastric adenocarcinomas employing fluorescence in-situ hybridization (FISH) and immunohistochemistry. Amplification status was correlated with clinico-pathological features, clinical outcome and molecular tumor data including a correlation to the TCGA subtypes of gastric carcinoma. KRAS amplification was detected in 27 out of 470 analysable tumors (5.7%) and correlated with protein expression of KRAS in all amplified tumors. Within the KRAS amplified gastric tumors 14/27 (51.9%) showed a heterogeneous distribution with also KRAS non-amplified tumor parts. According to TCGA 24 tumors (88.8%) were related to chromosomal instable tumors (CIN). The survival analysis of the entire patient cohort did not show any difference in overall survival in dependence on the KRAS status. However, a significant survival difference with a worse outcome for patients with KRAS amplified tumors was identified when analysing patients without neoadjuvant pre-treatment. We confirm the unfavorable prognosis of KRAS amplified tumors reported by other studies in (Asian) patient groups, at least in patients without neoadjuvant pre-treatment. Within KRAS amplified tumors we revealed intratumoral heterogeneity that may define a (more aggressive) tumor cell population which is more frequently observed in patients with lymph node metastases. Despite the heterogeneous distribution of KRAS amplified tumor clones, KRAS amplified locally advanced or metastasized gastric adenocarcinomas represent a therapeutically highly relevant tumor subgroup."	"Discovery of Turn-On Fluorescent Probes for Detecting PDEδ Protein in Living Cells and Tumor Slices. The first small-molecule fluorescent turn-on probes for detecting PDEδ protein were rationally designed, showing reasonable fluorescent properties and the fluorescent ability has been applied for visualization of the PDEδ protein in living cells and at tissue levels. The qPCR results showed that the mRNA expression of KRAS, PDEδ, AKT1, MAPK1, MEK7, RAF1, and mTOR were downregulated by probes 1-3 through PI3K/AKT/mTOR and MAPK signal pathways. The probes also can downregulate the protein level of pErk and tErk. Therefore, these small-molecule fluorescent probes are expected to be used in the screening of antipancreatic cancer drugs targeting the PDEδ protein, as well as in obtaining a better understanding of the pathological and physiological roles of PDEδ protein."	"Resection for pancreatic cancer metastases contributes to survival: A case report with sequential tumor genotype profiling during the long-term postoperative course. Surgical management is not a standard treatment option for metastatic recurrence of pancreatic adenocarcinoma. However, the surgical management of a solitary metastasis is useful in selected cases. A 42-year-old woman was referred to our hospital on account of epigastric pain associated with a mass in the pancreatic body. The patient had a family history of branch duct-type intraductal papillary mucinous neoplasm of the pancreas. The patient was diagnosed with pancreatic ductal adenocarcinoma (PDA) complicated with pancreatitis due to pancreatic duct involvement. The patient underwent distal pancreatectomy, and pathological examination revealed a tubular adenocarcinoma. Solitary liver and lung metastatic tumors were found 6 and 43 months after the initial presentation, respectively, and sequential metastasectomies were performed. The patient survived until 8 years after her initial presentation. The genetic profiles of the resected specimens, primary PDA, and recurrent tumors in the liver and lung possessed identical KRAS mutations at codon 12, whereas there were no mutations in the main tumor suppressor genes, such as TP53, CDKN2A, and SMAD4. Multiplex polymerase chain reaction-based microsatellite instability assay demonstrated microsatellite stability. In our case, the patient with pancreatic adenocarcinoma survived for over 8 years following the resection of the primary tumor and resections of metachronous metastatic tumors. The outcome of PDA may be associated with the genetic profile that regulates its biological behavior. Operative management of solitary metastatic tumors may be a therapeutic options for selected patients with pancreatic cancer."	"Toward the Clinical Development and Validation of a Thy1-Targeted Ultrasound Contrast Agent for the Early Detection of Pancreatic Ductal Adenocarcinoma. Early detection of pancreatic ductal adenocarcinoma (PDAC) represents the most significant step toward the treatment of this aggressive lethal disease. Previously, we engineered a preclinical Thy1-targeted microbubble (MBThy1) contrast agent that specifically recognizes Thy1 antigen overexpressed in the vasculature of murine PDAC tissues by ultrasound (US) imaging. In this study, we adopted a single-chain variable fragment (scFv) site-specific bioconjugation approach to construct clinically translatable MBThy1-scFv and test for its efficacy in vivo in murine PDAC imaging, and functionally evaluated the binding specificity of scFv ligand to human Thy1 in patient PDAC tissues ex vivo. We recombinantly expressed the Thy1-scFv with a carboxy-terminus cysteine residue to facilitate its thioether conjugation to the PEGylated MBs presenting with maleimide functional groups. After the scFv-MB conjugations, we tested binding activity of the MBThy1-scFv to MS1 cells overexpressing human Thy1 (MS1Thy1) under liquid shear stress conditions in vitro using a flow chamber setup at 0.6 mL/min flow rate, corresponding to a wall shear stress rate of 100 seconds, similar to that in tumor capillaries. For in vivo Thy1 US molecular imaging, MBThy1-scFv was tested in the transgenic mouse model (C57BL/6J - Pdx1-Cre; KRas; Ink4a/Arf) of PDAC and in control mice (C57BL/6J) with L-arginine-induced pancreatitis or normal pancreas. To facilitate its clinical feasibility, we further produced Thy1-scFv without the bacterial fusion tags and confirmed its recognition of human Thy1 in cell lines by flow cytometry and in patient PDAC frozen tissue sections of different clinical grades by immunofluorescence staining. Under shear stress flow conditions in vitro, MBThy1-scFv bound to MS1Thy1 cells at significantly higher numbers (3.0 ± 0.8 MB/cell; P &lt; 0.01) compared with MBNontargeted (0.5 ± 0.5 MB/cell). In vivo, MBThy1-scFv (5.3 ± 1.9 arbitrary units [a.u.]) but not the MBNontargeted (1.2 ± 1.0 a.u.) produced high US molecular imaging signal (4.4-fold vs MBNontargeted; n = 8; P &lt; 0.01) in the transgenic mice with spontaneous PDAC tumors (2-6 mm). Imaging signal from mice with L-arginine-induced pancreatitis (n = 8) or normal pancreas (n = 3) were not significantly different between the two MB constructs and were significantly lower than PDAC Thy1 molecular signal. Clinical-grade scFv conjugated to Alexa Fluor 647 dye recognized MS1Thy1 cells but not the parental wild-type cells as evaluated by flow cytometry. More importantly, scFv showed highly specific binding to VEGFR2-positive vasculature and fibroblast-like stromal components surrounding the ducts of human PDAC tissues as evaluated by confocal microscopy. Our findings summarize the development and validation of a clinically relevant Thy1-targeted US contrast agent for the early detection of human PDAC by US molecular imaging."	"Hitting KRAS When It's Down. KRAS, one of the most prevalent oncogenes and sought-after anticancer targets, has eluded chemists for decades until an irreversible covalent strategy targeting a specific mutation (G12C) paved the way for the first KRAS inhibitors to reach the clinic. MRTX849 is one such clinical candidate with promising initial results in patients harboring the mutation. The impressive optimization story of MRTX849 highlights challenges and solutions in the development of covalent drugs, including the use of an α-fluoroacrylamide electrophile."	"SREBP1 regulates mitochondrial metabolism in oncogenic KRAS expressing NSCLC. Cancer cells require extensive metabolic reprograming in order to provide the bioenergetics and macromolecular precursors needed to sustain a malignant phenotype. Mutant KRAS is a driver oncogene that is well-known for its ability to regulate the ERK and PI3K signaling pathways. However, it is now appreciated that KRAS can promote the tumor growth via upregulation of anabolic metabolism. We recently reported that oncogenic KRAS promotes a gene expression program of de novo lipogenesis in non-small cell lung cancer (NSCLC). To define the mechanism(s) responsible, we focused on the lipogenic transcription factor SREBP1. We observed that KRAS increases SREBP1 expression and genetic knockdown of SREBP1 significantly inhibited the cell proliferation of mutant KRAS-expressing cells. Unexpectedly, lipogenesis was not significantly altered in cells subject to SREBP1 knockdown. Carbon tracing metabolic studies showed a significant decrease in oxidative phosphorylation and RNA-seq data revealed a significant decrease in mitochondrial encoded subunits of the electron transport chain (ETC). Taken together, these data support a novel role, distinct from lipogenesis, of SREBP1 on mitochondrial function in mutant KRAS NSCLC."	"Genomic and signalling pathway characterization of the NZM panel of melanoma cell lines: A valuable model for studying the impact of genetic diversity in melanoma. Melanoma is a disease associated with a very high mutation burden and thus the possibility of a diverse range of oncogenic mechanisms that allow it to evade therapeutic interventions and the immune system. Here, we describe the characterization of a panel of 102 cell lines from metastatic melanomas (the NZM lines), including using whole-exome and RNA sequencing to analyse genetic variants and gene expression changes in a subset of this panel. Lines possessing all major melanoma genotypes were identified, and hierarchical clustering of gene expression profiles revealed four broad subgroups of cell lines. Immunogenotyping identified a range of HLA haplotypes as well as expression of neoantigens and cancer-testis antigens in the lines. Together, these characteristics make the NZM panel a valuable resource for cell-based, immunological and xenograft studies to better understand the diversity of melanoma biology and the responses of melanoma to therapeutic interventions."	"Tensin4 (TNS4) is upregulated by Wnt signalling in adenomas in multiple intestinal neoplasia (Min) mice. Apc<sup>Min/+</sup> mice are regarded as a standard animal model of colorectal cancer (CRC). Tensin4 (TNS4 or Cten) is a putative oncogene conferring features of stemness and promoting motility. Our objective was to assess TNS4 expression in intestinal adenomas and determine whether TNS4 is upregulated by Wnt signalling. Apc<sup>Min/+</sup> mice (n = 11) were sacrificed at approximately 120 days old at the onset of anaemia signs. Small intestines were harvested, and Swiss roll preparations were tested for TNS4 expression by immunohistochemistry (IHC). Individual polyps were also separately collected (n = 14) and tested for TNS4 mRNA expression and Kras mutation. The relationship between Wnt signalling and TNS4 expression was tested by Western blotting in the human CRC cell line HCT116 after inhibition of β-catenin activity with MSAB or its increase by transfection with a Flag β-catenin expression vector. Overall, 135/148 (91.2%) of the total intestinal polyps were positive for TNS4 expression by IHC, whilst adjacent normal areas were negative. RT-qPCR analysis showed approximately 5-fold upregulation of TNS4 mRNA in the polyps compared to adjacent normal tissue and no Kras mutations were detected. In HCT116, β-catenin inhibition resulted in reduced TNS4 expression, and conversely, β-catenin overexpression resulted in increased TNS4 expression. In conclusion, this is the first report linking aberrant Wnt signalling to upregulation of TNS4 both during initiation of intestinal adenomas in mice and in in vitro models. The exact contribution of TNS4 to adenoma development remains to be investigated, but the Apc<sup>Min/+</sup> mouse represents a good model to study this."	"Histology and its prognostic effect on KRAS-mutated colorectal carcinomas in Korea. KRAS mutation is frequently identified in advanced colorectal carcinoma (CRC); however, its prognostic significance and the associated histological features have remained to be clarified. In the present study, the precise histological results and prognostic value of KRAS-mutated CRCs were investigated in patients from South Korea. A retrospective review of the results from KRAS mutation testing, as well as evaluation of the histology of 310 cases of CRC at various stages, were performed. Cross-tabulation and survival analysis were performed according to the KRAS status. Patients with KRAS mutation more frequently exhibited serrated and papillary architectures (P=0.009 and P=0.014, respectively). KRAS mutation was an independent unfavorable prognostic factor for overall survival (OS) according to multivariate analysis (P=0.001), whereas no association was observed with disease-free survival (DFS) (P=0.611). Of note, in the subgroup of KRAS-mutated carcinomas, the presence of a solid component on histology was associated with less favorable OS (P=0.032). Furthermore, among the wild type cases, patients with a micropapillary component had a worse OS than those who did not (P=0.018). However, no subgroup or specific histological features were associated with DFS. In summary, KRAS-mutated CRCs had a moderate association with particular histological features, and according to the KRAS mutational status, there was a certain degree of association between histology and prognosis."	"Clinicopathological and mutational differences between tumors with multiple metastases and single lung metastasis in colorectal cancer. Cancer metastasis, particularly multiple metastatic cancer, is a significant event that affects patient prognosis. However, single metastasis can be treated by partial resection, although the clinicopathological and molecular profile of single lung metastasis has not been thoroughly elucidated. The present study examined tumor heterogeneity by comparing the mutation status between primary colorectal cancer (CRC) and corresponding metastatic lesions to identify prognostic factors associated with single lung metastasis and multiple metastases. The present study enrolled 31 cases of CRC; 20 cases with multiple metastases and 11 cases with single lung metastasis. Clinicopathologically, all cases with multiple metastases were tubular adenocarcinoma, and 3/11 cases with single metastasis were mucinous adenocarcinoma originating from the left side, the remaining 8 cases were tubular adenocarcinoma from the left side. CRC cases with multiple metastases exhibited more frequent vascular invasion, but not lymphatic invasion, than those with single lung metastasis. Furthermore, CRC with multiple metastases was associated with strong tumor budding (P=0.04). Patients with CRC with multiple metastases had lower recurrence-free survival rates compared with those with single lung metastasis (P=0.02). However, there was no significant difference between these two groups in terms of overall survival rates. A next-generation sequencing cancer hotspot panel was used to analyze a heterochronous multiple metastases case, including brain metastasis. Sanger sequencing, immunohistochemistry and microsatellite instability were examined for all 31 cases to reveal the molecular features. KRAS and TP53 mutation signatures were largely preserved throughout the metastatic events. TP53/APC mutations and overexpression of p53 appeared to be associated with the presence of lymphovascular invasion and strong tumor budding, respectively, although these differences were not statistically significant. Early relapses in patients with CRC could be a sign for eventual multiple metastases, although these may not affect the overall survival of patients with CRC. Considerable mutational changes were seemingly rare during metastatic events in patients with CRC."	"Retraction notice to &quot;Activation of KRas-ERK1/2 signaling drives the initiation and progression of glioma by suppressing the acetylation of histone H4 at lysine 16&quot; [Life Sci. 225 (2019) 55-63]. NA"	"Isoprenylcysteine carboxylmethyltransferase is required for the impact of mutant KRAS on TAZ protein level and cancer cell self-renewal. Cancer stem cells possess the capacity for self-renewal and resistance to chemotherapy. It is therefore crucial to understand the molecular regulators of stemness in the quest to develop effective cancer therapies. TAZ is a transcription activator that promotes stem cell functions in post-development mammalian cells; suppression of TAZ activity reduces or eliminates cancer stemness in select cancers. Isoprenylcysteine carboxylmethyltransferase (ICMT) is the unique enzyme of the last step of posttranslational prenylation processing pathway that modifies several oncogenic proteins, including RAS. We found that suppression of ICMT results in reduced self-renewal/stemness in KRAS-driven pancreatic and breast cancer cells. Silencing of ICMT led to significant reduction of TAZ protein levels and loss of self-renewal ability, which could be reversed by overexpressing mutant KRAS, demonstrating the functional impact of ICMT modification on the ability of KRAS to control TAZ stability and function. Contrary to expectation, YAP protein levels appear to be much less susceptible than TAZ to the regulation by ICMT and KRAS, and YAP is less consequential in regulating stemness characteristics in these cells. Further, we found that the ICMT-dependent KRAS regulation of TAZ was mediated through RAF, but not PI3K, signaling. Functionally, we demonstrate that a signaling cascade from ICMT modification of KRAS to TAZ protein stability supports cancer cell self-renewal abilities in both in vitro and in vivo settings. In addition, studies using the proof-of-concept small molecule inhibitors of ICMT confirmed its role in regulating TAZ and self-renewal, demonstrating the potential utility of targeting ICMT to control aggressive KRAS-driven cancers."	"The Long Noncoding RNA NEAT1 Promotes Sarcoma Metastasis by Regulating RNA Splicing Pathways. Soft-tissue sarcomas (STS) are rare malignancies showing lineage differentiation toward diverse mesenchymal tissues. Half of all high-grade STSs develop lung metastasis with a median survival of 15 months. Here, we used a genetically engineered mouse model that mimics undifferentiated pleomorphic sarcoma (UPS) to study the molecular mechanisms driving metastasis. High-grade sarcomas were generated with Cre recombinase technology using mice with conditional mutations in Kras and Trp53 (KP) genes. After amputation of the limb bearing the primary tumor, mice were followed for the development of lung metastasis. Using RNA-sequencing of matched primary KP tumors and lung metastases, we found that the long noncoding RNA (lncRNA) Nuclear Enriched Abundant Transcript 1 (Neat1) is significantly upregulated in lung metastases. Furthermore, NEAT1 RNA ISH of human UPS showed that NEAT1 is upregulated within a subset of lung metastases compared with paired primary UPS. Remarkably, CRISPR/Cas9-mediated knockout of Neat1 suppressed the ability of KP tumor cells to colonize the lungs. To gain insight into the underlying mechanisms by which the lncRNA Neat1 promotes sarcoma metastasis, we pulled down Neat1 RNA and used mass spectrometry to identify interacting proteins. Interestingly, most Neat1 interacting proteins are involved in RNA splicing regulation. In particular, KH-Type Splicing Regulatory Protein (KHSRP) interacts with Neat1 and is associated with poor prognosis of human STS. Moreover, depletion of KHSRP suppressed the ability of KP tumor cells to colonize the lungs. Collectively, these results suggest that Neat1 and its interacting proteins, which regulate RNA splicing, are involved in mediating sarcoma metastasis. IMPLICATIONS: Understanding that lncRNA NEAT1 promotes sarcoma metastasis, at least in part, through interacting with the RNA splicing regulator KHSRP may translate into new therapeutic approaches for sarcoma."	"Targeting KRAS Mutant Non-Small-Cell Lung Cancer: Past, Present and Future. Lung cancer is the most frequent cancer with an aggressive clinical course and high mortality rates. Most cases are diagnosed at advanced stages when treatment options are limited and the efficacy of chemotherapy is poor. The disease has a complex and heterogeneous background with non-small-cell lung cancer (NSCLC) accounting for 85% of patients and lung adenocarcinoma being the most common histological subtype. Almost 30% of adenocarcinomas of the lung are driven by an activating Kirsten rat sarcoma viral oncogene homolog (KRAS) mutation. The ability to inhibit the oncogenic KRAS has been the holy grail of cancer research and the search for inhibitors is immensely ongoing as KRAS-mutated tumors are among the most aggressive and refractory to treatment. Therapeutic strategies tailored for KRAS<sup>+</sup> NSCLC rely on the blockage of KRAS functional output, cellular dependencies, metabolic features, KRAS membrane associations, direct targeting of KRAS and immunotherapy. In this review, we provide an update on the most recent advances in anti-KRAS therapy for lung tumors with mechanistic insights into biological diversity and potential clinical implications."	"Complex Oncological Decision-Making Utilizing Fast-and-Frugal Trees in a Community Setting-Role of Academic and Hybrid Modeling. Non-small cell lung cancer is a devastating disease and with the advent of targeted therapies and molecular testing, the decision-making process has become complex. While established guidelines and pathways offer some guidance, they are difficult to utilize in a busy community practice and are not always implemented in the community. The rationale of the study was to identify a cohort of patients with lung adenocarcinoma at a City of Hope community site (n = 11) and utilize their case studies to develop a decision-making framework utilizing fast-and-frugal tree (FFT) heuristics. Most patients had stage IV (N = 9, 81.8%) disease at the time of the first consultation. The most common symptoms at initial presentation were cough (N = 5, 45.5%), shortness of breath (N = 3, 27.2%), and weight loss (N = 3, 27.2%). The Eastern Cooperative Oncology Group (ECOG) performance status ranged from 0-1 in all patients in this study. Distribution of molecular drivers among the patients were as follows: EGFR (N = 5, 45.5%), KRAS (N = 2, 18.2%), ALK (N = 2, 18.2%), MET (N = 2, 18.2%), and RET (N = 1, 9.1%). Seven initial FFTs were developed for the various case scenarios, but ultimately the decisions were condensed into one FFT, a molecular stage IV FFT, that arrived at accurate decisions without sacrificing initial information. While these FFT decision trees may seem arbitrary to an experienced oncologist at an academic site, the simplicity of their utility is essential for community practice where patients often do not get molecular testing and are not assigned proper therapy."	"Quadruplicate Synchronous Adenocarcinoma of the Colon with Distant Metastases-Long-Term Molecular Follow-Up by KRAS and TP53 Mutational Profiling. Anatomically independent tumor foci represent biologically distinct neoplasias, potentially featured by different progressivity and treatment responsiveness. To demonstrate the biological complexity, a metastatic colon adenocarcinoma patient originally presenting with four independent primary tumors of the right colon half and altogether eight distant metastases was followed by molecular testing. Next-generation sequencing results highlighted the mutational profile of the individual primaries and the dynamics of the different gene variants observed during follow-up. The four primary colon tumors presented with four different KRAS genotypes, one of them with a wild-type and three with pathogenic variants, without overlap. These were the following: c.35G &gt; A; p.Gly12Asp with 40.6% variant allele frequency (VAF); c.34G &gt; T; p.Gly12Cys with 16.2% VAF and c.35G &gt; T; p.Gly12Val with 15.1% VAF. In metastatic tumors, with one exception where no mutation was detected, only the KRAS c.34G &gt; T; p.Gly12Cys mutation could be detected. TP53 gene variants were variable in the primary tumors, with a single dominant variant evolving in the follow-up metastases (c.820G &gt; T; p.Val274Phe). Genetic profiling of individually developing synchronous malignancies uncovers the clonal relations of metastatic tumors. NGS gene panels provide a solution to follow the dynamics of key oncogene variants during the course of the disease and greatly contribute to therapy optimization."	"DKK2 blockage-mediated immunotherapy enhances anti-angiogenic therapy of Kras mutated colorectal cancer. There are limited options for targeted therapies for colorectal cancer (CRC). Anti-EGFR therapy is limited to CRC without KRAS mutations. Even worse, most of CRC are refractory to currently immune checkpoint blockade. DKK2, which is upregulated in CRC, was recently found to suppress host immune responses, and its blockage effectively impeded tumor progression in benign genetic CRC models in our previous study. Here, our recent study demonstrated that in human CRC tumor samples expressing high levels of DKK2, DKK2 blockade caused stronger activation of tumor infiltrating CD8<sup>+</sup> T cells in ex vivo culture. Intriguingly, we observed a correlation of high DKK2 expression with increased lymph node metastasis prevalence in these CRC patients as well. Furthermore, in a mouse genetic CRC model with mutations in APC and KRAS, which more closely mimics advanced human CRC, we confirmed the tumor inhibitory effect of DKK2 blockade, which significantly retarded tumor progression and extended survival, with increased immune effector cell activation and reduced angiogenesis. Based on this, we performed a combined administration of DKK2 blockade with sub-optimal anti-VEGFR treatment and observed a synergetic effect on suppressing tumor angiogenesis and progression, as well as extending survival, better than those of every single therapy. Thus, this study provides further evidence for the potential therapeutic application of DKK2 blockade in the clinical treatment of human CRC."	"Altered RNA Splicing by Mutant p53 Activates Oncogenic RAS Signaling in Pancreatic Cancer. Pancreatic ductal adenocarcinoma (PDAC) is driven by co-existing mutations in KRAS and TP53. However, how these mutations collaborate to promote this cancer is unknown. Here, we uncover sequence-specific changes in RNA splicing enforced by mutant p53 which enhance KRAS activity. Mutant p53 increases expression of splicing regulator hnRNPK to promote inclusion of cytosine-rich exons within GTPase-activating proteins (GAPs), negative regulators of RAS family members. Mutant p53-enforced GAP isoforms lose cell membrane association, leading to heightened KRAS activity. Preventing cytosine-rich exon inclusion in mutant KRAS/p53 PDACs decreases tumor growth. Moreover, mutant p53 PDACs are sensitized to inhibition of splicing via spliceosome inhibitors. These data provide insight into co-enrichment of KRAS and p53 mutations and therapeutics targeting this mechanism in PDAC."	"The effect of pentadecapeptide BPC 157 on hippocampal ischemia/reperfusion injuries in rats. We focused on the, yet undescribed, therapy effect of the stable gastric pentadecapeptide BPC 157 in hippocampal ischemia/reperfusion injuries, after bilateral clamping of the common carotid arteries in rats. The background is the proven therapy effect of BPC 157 in ischemia/reperfusion injuries in different tissues. Furthermore, there is the subsequent oxidative stress counteraction, particularly when given during reperfusion. The recovering effect it has on occluded vessels, results with activation of the alternative pathways, bypassing the occlusion in deep vein thrombosis. Finally, the BPC 157 therapy benefits with its proposed role as a novel mediator of Roberts' cytoprotection and bidirectional effects in the gut-brain axis. Male Wistar rats underwent bilateral clamping of the common carotid arteries for a 20-min period. At 30 s thereafter, we applied medication (BPC 157 10 µg/kg; or saline) as a 1 ml bath directly to the operated area, that is, trigonum caroticum. We documented, in reperfusion, the resolution of the neuronal damages sustained in the brain, resolution of the damages reflected in memory, locomotion, and coordination disturbances, with the presentation of the particular genes expression in hippocampal tissues. In the operated rats, at 24 and 72 hr of the reperfusion, the therapy counteracted both early and delayed neural hippocampal damage, achieving full functional recovery (Morris water maze test, inclined beam-walking test, lateral push test). mRNA expression studies at 1 and 24 hr, provided strongly elevated (Egr1, Akt1, Kras, Src, Foxo, Srf, Vegfr2, Nos3, and Nos1) and decreased (Nos2, Nfkb) gene expression (Mapk1 not activated), as a way how BPC 157 may act. Together, these findings suggest that these beneficial BPC 157 effects may provide a novel therapeutic solution for stroke."	"Targeted 595-gene genomic profiling demonstrates low tumor mutational burden in olfactory neuroblastoma. Olfactory neuroblastoma (ONB) is a rare skull-base malignancy associated with delayed local recurrence. Treatment options in recurrent disease are few and unreliable. We undertook analysis of the ONB exome and immune environment in order to identify potential future immunotherapy treatment options. Retrospective chart review and next-generation targeted 595-gene genomic profiling was performed on a cohort of 14 ONB cases utilizing Tempus proprietary DNA and RNA sequencing technology. Tempus analysis provided a measurement of tumor mutational burden (TMB) and composition of the immune cell infiltrate present in tumor samples. Clinically relevant genomic alterations and associated targeted therapies were identified using cancer.gov and clinicaltrials.gov. TMB was tested by univariate analysis against clinical stage, pathologic grade, recurrence risk, and immune cell infiltration. The mean age for the subjects was 50 years (range, 13 to 76 years) with a male:female ratio of 1:1. TMB for ONB samples ranged from 1.3 to 9.6 mutations/megabase (Mb) with mean of 3.8 mutations/Mb. Univariate analysis showed no association between TMB and tumor stage, pathologic grade, risk of recurrence, or immune cell infiltration. Genomic profile revealed that 6 of 13 tumors had genetic alterations with targeted therapies in clinical trials, whereas 1 tumor demonstrated KRAS Q61R mutation with U.S. Food and Drug Administration (FDA)-approved targeted therapies. TMB is a novel biomarker guiding the classification of neoplasms in the emerging era of immunotherapy. The characterization of ONB as a low-TMB pathology contributes to the overall taxonomy of all cancers and suggests limited utility of immunotherapy treatment."	"Afatinib-loaded inhalable PLGA nanoparticles for localized therapy of non-small cell lung cancer (NSCLC)-development and in-vitro efficacy. Afatinib (AFA) is a potent aniline-quinazoline derivative, approved by the Food and Drug Administration (FDA) in 2013, as a first-line treatment for metastatic non-small cell lung cancer (NSCLC). However, its clinical application is highly limited by its poor solubility, and consequently low bioavailability. We hypothesize that loading of AFA into biodegradable PLGA nanoparticles for localized inhalational drug delivery will be instrumental in improving therapeutic outcomes in NSCLC patients. Formulated AFA nanoparticles (AFA-NP) were evaluated for physicochemical properties (particle size: 180.2 ± 15.6 nm, zeta potential: - 23.1 ± 0.2 mV, % entrapment efficiency: 34.4 ± 2.3%), formulation stability, in-vitro aerosol deposition behavior, and anticancer efficacy. Stability studies revealed the physicochemical stability of AFA-NP. Moreover, AFA-NP exhibited excellent inhalable properties (mass median aerodynamic diameter (MMAD): 4.7 ± 0.1 μm; fine particle fraction (FPF): 77.8 ± 4.3%), indicating efficient particle deposition in deep lung regions. With respect to in-vitro drug release, AFA-NP showed sustained drug release with cumulative release of 56.8 ± 6.4% after 48 h. Cytotoxic studies revealed that encapsulation of AFA into PLGA nanoparticles significantly enhanced its cytotoxic potential in KRAS-mutated NSCLC cell lines (A549, H460). Cellular uptake studies revealed enhanced internalization of coumarin-loaded nanoparticles compared to plain coumarin in A549. In addition, 3D tumor spheroid studies demonstrated superior efficacy of AFA-NP in tumor penetration and growth inhibition. To conclude, we have established in-vitro efficacy of afatinib-loaded PLGA nanoparticles as inhalable NSCLC therapy, which will be of great significance when designing preclinical and clinical studies. Graphical abstract."	"Mucinous borderline ovarian tumors with BRAF<sup>V600E</sup> mutation may have low risk for progression to invasive carcinomas. Mucinous ovarian carcinomas (MOCs) are relatively rare. It has been proposed that a subset of mucinous cystadenomas (MCAs) may progress to mucinous borderline tumors (MBTs), and then to MOCs. KRAS is the predominantly mutated gene in MOC; however, other associated mutations and the mechanism underlying carcinogenesis in MOC remain unclear. Here, we assessed molecular genetic alterations in mucinous ovarian tumors and constructed mutation profiles. Using the Sanger sequencing method, we assessed genetic mutations (KRAS, BRAF, TP53, and PIK3CA) in 16 cases of MOC, 10 cases of MBT, and 12 cases of MCA. Among MOC cases, the prevalence of G12D and G13D KRAS mutations was 43.8% (7/16). No MOC cases showed V600E BRAF and TP53 mutations. Among MBT cases, the prevalence of G12D KRAS mutation was 20.0% (2/10), those of TP53 and PIK3CA mutations were nil, and that of V600E BRAF mutation was 40% (4/10). None of the genetic mutations assessed were detected among MCA cases. These results suggest that MBT with V600E BRAF mutation may rarely progress to MOC, while MBT with G12D or G13D KRAS mutation may more commonly progress to MOC."	"Genetic Alterations in Pediatric Thyroid Cancer Using a Comprehensive Childhood Cancer Gene Panel. Pediatric differentiated thyroid cancer (DTC) differs from adult DTC in its underlying genetics and clinicopathological features. In this report, we studied these aspects in 48 cases of pediatric DTC. We used the comprehensive Oncomine Childhood Cancer Gene panel on Ion Torrent next generation sequencing platform. We included 48 patients (37 females and 11 males) with pediatric DTC (median age 17 years, range 5-18) and studied the association between these genetic alterations and the clinicopatholgical features and outcome. Of 48 tumors, 33 (69%) had somatic genetic alterations which were mutually exclusive except in one tumor. BRAFV600E and RET-PTC1 were the most common occurring in 9 different tumors (19%) each. RET-PTC3 and ETV6-NTRK3 were the next most common with each of them occurring in 4 different tumors (8%). Other genetic alterations including EML4-NTRK1, EML4-ALK, NRAS, KRAS, PTEN and CREBBP occurred once each. There were no differences between those who had mutations and those without mutations in the age, sex, tumor multifocality, extrathyroidal extension, vascular invasion, lymph node or distant metastasis and the American Thyroid Association status at the last follow up visits. Similarly, none of these factors were different between those with fusion genes vs. single point mutations vs. no mutations. In pediatric DTC, fusion genes are more common than single point mutations. The most common genetic alterations are RET/PTC1, BRAFV600E, RET/PTC3 and ETV6-NTRK3. Other alterations occur rarely. Genetic alterations do not correlate with the clinicopathological features or the outcome."	"Combination of variations in inflammation- and endoplasmic reticulum-associated genes as putative biomarker for bevacizumab response in KRAS wild-type colorectal cancer. Chemotherapy combined with the angiogenesis inhibitor bevacizumab (BVZ) is approved as a first-line treatment in metastatic colorectal cancer (mCRC). Limited clinical benefit underpins the need for improved understanding of resistance mechanisms and the elucidation of novel predictive biomarkers. We assessed germline single-nucleotide polymorphisms (SNPs) in 180 mCRC patients (Angiopredict [APD] cohort) treated with combined BVZ + chemotherapy and investigated previously reported predictive SNPs. We further employed a machine learning approach to identify novel associations. In the APD cohort IL8 rs4073 any A carriers, compared to TT carriers, were associated with worse progression-free survival (PFS) (HR = 1.51, 95% CI:1.03-2.22, p-value = 0.037) and TBK1 rs7486100 TT carriers, compared to any A carriers, were associated with worse PFS in KRAS wild-type (wt) patients (HR = 1.94, 95% CI:1.04-3.61, p-value = 0.037), replicating previous findings. Machine learning identified novel associations in genes encoding the inflammasome protein NLRP1 and the ER protein Sarcalumenin (SRL). A negative association between PFS and carriers of any A at NLRP1 rs12150220 and AA for SRL rs13334970 in APD KRAS wild-type patients (HR = 4.44, 95% CI:1.23-16.13, p-value = 0.005), which validated in two independent clinical cohorts involving BVZ, MAVERICC and TRIBE. Our findings highlight a key role for inflammation and ER signalling underpinning BVZ + chemotherapy responsiveness."	"Long-term PM2.5 exposure increases the risk of non-small cell lung cancer (NSCLC) progression by enhancing interleukin-17a (IL-17a)-regulated proliferation and metastasis. PM2.5 is a class of airborne particles and droplets with sustained high levels in many developing countries. Epidemiological studies have indicated that PM2.5 is closely associated with the increased morbidity and mortality of lung cancer in the world. Unfortunately, the effects of PM2.5 on lung cancer are largely unknown. In the present study, we attempted to explore the role of PM2.5 in the etiology of NSCLC. Here, we found that long-term PM2.5 exposure led to significant pulmonary injury. Epithelial-mesenchymal transition (EMT) and cancer stem cells (CSC) properties were highly induced by PM2.5 exposure. EMT was evidenced by the significant up-regulation of MMP2, MMP9, TGF-β1, α-SMA, Fibronectin and Vimentin. Lung cancer progression was associated with the increased expression of Kras, c-Myc, breast cancer resistance protein BCRP (ABCG2), OCT4, SOX2 and Aldh1a1, but the decreased expression of p53 and PTEN. Importantly, mice with IL-17a knockout (IL-17a<sup>-/-</sup>) showed significantly alleviated lung injury and CSC properties following PM2.5 exposure. Also, IL-17a<sup>-/-</sup>-attenuated tumor growth was recovered in PM2.5-exposed mice injected with recombinant mouse IL-17a, accompanied with significantly restored lung metastasis. Taken together, these data revealed that PM2.5 could promote the progression of lung cancer by enhancing the proliferation and metastasis through IL-17a signaling."	"Oncogene-induced senescence limits the progression of pancreatic neoplasia through production of Activin A. Pancreatic ductal adenocarcinoma (PDA) is a deadly and aggressive cancer. Understanding mechanisms that drive pre-neoplastic pancreatic lesions is necessary to improve early diagnostic and therapeutic strategies. Mutations and inactivation of activin-like kinase (ALK4) have been demonstrated to favor PDA onset. Surprisingly, little is known regarding the ligands that drive ALK4 signaling in pancreatic cancer or how this signaling pathway limits the initiation of neoplastic lesions. In this study, data mining and histological analyses performed on human and mouse tumor tissues reveal that Activin A is the major ALK4-ligand that drives PDA initiation. Activin A, which is absent in normal acinar-cells, was strongly induced during acinar-to-duct metaplasia (ADM), which was promoted by pancreatitis or the activation of KrasG12D in mice. Activin A expression during ADM was associated with the cellular senescence program that was induced in precursor lesions. Blocking Activin A-signaling through the use of a soluble form of Activin receptor IIB (sActRIIB-Fc) and ALK4-knockout (KO) in mice expressing KrasG12D resulted in reduced senescence associated with decreased expression of p21, reduced phosphorylation of H2A histone family member X (H2AX), and increased proliferation. Thus, this study indicates that Activin A acts as a protective senescence-associated secretory phenotype (SASP) factor produced by Kras-induced senescent cells during ADM, which limits the expansion and proliferation of pancreatic neoplastic lesions."	"The RAS-interacting chaperone UNC119 drives the RASSF6-MDM2-p53 axis and antagonizes RAS-mediated malignant transformation. The gene encoding the proto-oncogene GTPase RAS is frequently mutated in human cancers. Mutated RAS proteins trigger antiapoptotic and cell proliferative signals and lead to oncogenesis. However, RAS also induces apoptosis and senescence, which may contribute to the eradication of cells with RAS mutations. We previously reported that Ras association domain family member 6 (RASSF6) binds MDM2 proto-oncogene (MDM2) and stabilizes the tumor suppressor p53 and that the active form of KRAS promotes the interaction between RASSF6 and MDM2. We also reported that Unc-119 lipid-binding chaperone (UNC119A), a chaperone of myristoylated proteins, interacts with RASSF6 and regulates RASSF6-mediated apoptosis. In this study, using several human cancer cell lines, quantitative RT-PCR, RNAi-based gene silencing, and immunoprecipitation/-fluorescence and cell biology assays, we report that UNC119 interacts with the active form of KRAS and that the C-terminal modification of KRAS is required for this interaction. We also noted that the hydrophobic pocket of UNC119, which binds the myristoylated peptides, is not involved in the interaction. We observed that UNC119 promotes the binding of KRAS to RASSF6, enhances the interaction between RASSF6 and MDM2, and induces apoptosis. Conversely, UNC119 silencing promoted soft agar colony formation, migration, and invasiveness in KRAS-mutated cancer cells. We conclude that UNC119 promotes KRAS-mediated p53-dependent apoptosis via RASSF6 and may play a tumor-suppressive role in cells with KRAS mutations."	"Low-Dose Vertical Inhibition of the RAF-MEK-ERK Cascade Causes Apoptotic Death of KRAS Mutant Cancers. We address whether combinations with a pan-RAF inhibitor (RAFi) would be effective in KRAS mutant pancreatic ductal adenocarcinoma (PDAC). Chemical library and CRISPR genetic screens identify combinations causing apoptotic anti-tumor activity. The most potent combination, concurrent inhibition of RAF (RAFi) and ERK (ERKi), is highly synergistic at low doses in cell line, organoid, and rat models of PDAC, whereas each inhibitor alone is only cytostatic. Comprehensive mechanistic signaling studies using reverse phase protein array (RPPA) pathway mapping and RNA sequencing (RNA-seq) show that RAFi/ERKi induced insensitivity to loss of negative feedback and system failures including loss of ERK signaling, FOSL1, and MYC; shutdown of the MYC transcriptome; and induction of mesenchymal-to-epithelial transition. We conclude that low-dose vertical inhibition of the RAF-MEK-ERK cascade is an effective therapeutic strategy for KRAS mutant PDAC."	"[Analysis of Genomic Landscape in Patients with Acute Myeloid Leukemia]. To investigate the gene mutation occurved in AML patients with 29 kinds of fusion genes and 51 kinds of tumor gene. Next-generation sequencing (NGS) was used to detected the 49 kinds of targeted gene. FLT3 internal tandem duplication (FLT3-ITD), CALR, NPM1 and CEBPA mutation were detected by DNA-based PCR and Sanger sequencing. Twenty-nine kinds of fusion genes were dected by multiplex nested RT-PCR. The total gene mutation rate was 91% (109/121) in all the 121 patients. On average, 2.1 mutated genes per patient were identified, among these 121 patients, coexistence of ≥ 3 mutations was frequent (34.7%). The most commonly mutated genes were NRAS (23.96%, n=29), followed by NPM1 (14.04%, n=17), CEBPA double mutations (14.04%, n=17), KRAS (11.57%, n=14),FLT3-ITD (10.74%, n=13), CSF3R (10.74%, n=13), TET2 (9.92%, n=12) and IDH1 (9.1%, n=11). Overall, fusion genes were detected in 47 (37.3%) patients, including AML/ETO (n=12), CBFβ/MYH11 (n=11), PML/RARa (n=12), MLL rearranagement realated mutation MLL-X (n=10). TLS/ERG (n=1) and DEK/CAN (n=1) in an order of decreasing frequency. Patients with normal karyotype (NK)- AML exhibited more mutations in CEBPA, NPM1, TET2, RUNX1 and IDH1, comparing with abnormal karyotype patients. KRAS mutation in abnormal kayotype patients was significantly higher than that in normal kayotype patients (P=0.014). TP53 mutations were predominantly associated with complex cytogenetics (P=0.199). KRAS mutations were more frequent in core binding factor (CBF) acute myeloid leukemia (AML) and 11q23/MLL rearrangement leukemia, compared with NK-AML (P=0.006 and 0.003, respectively). KIT mutations predominated in CBF-AML (P=0.006). JAK2V617F mutations were detected in two patients and co-occurred with AML-ETO fusions. At least one mutation is observed in more than 90% patients. On average, more than 2 mutated genes per patient are identified. Some gene mutations are associated with gene rearrangement. 121例急性髓系白血病患者基因突变谱的分析. 研究急性髓系白血病(AML)患者29种融合基因及51种肿瘤基因突变的发生情况. 采用第二代DNA测序技术检测49种靶基因;采用DNA-PCR检测FLT3-ITD、NPM1基因12号外显子、CALR基因9号外显子及CEBPA的TAD、BZIP 2个功能区的突变发生情况;采用多重PCR法检测29种白血病融合基因. 121例患者中,基因突变总发生率为90.1%(109/121),每例患者平均发生2.1个基因突变,34.7%的患者同时携带≥3个基因突变。突变检出率最高的基因为NRAS(23.96%,n=29),其他基因依次为:NPM1(14.04%,n=17)、CEBPA双突变(14.04%,n=17)、KRAS(11.57%,n=14)、FLT3-ITD(10.74%,n=13)、CSF3R(10.74%,n=13)、TET2(9.92%,n=12)和IDH1(9.1%,n=11)。共47例患者检出融合基因,包括AML/ETO 12例,CBFβ/MYH11 11例,PML/RARa 12例,涉及MLL重排的MLL-X融合基因10例,TLS/ERG 1例及DEK/CAN 1例。 CEBPA、NPM1、TET2、RUNX1及IDH1突变在正常核型中的检出率均高于异常核型,差异有统计学意义;KRAS突变在异常核型中的发生率高于正常核型,差异显著(P=0.014)。复杂核型患者的TP53突变检出率明显高于正常核型及其他异常核型(P=0.199)。KRAS突变在核心结合因子白血病及伴有11q23/MLL重排的M5患者中的阳性率均高于正常核型(P=0.006,P=0.003)。KIT基因突变主要见于核心结合因子白血病,两者有相关性(P=0.006)。共检测到2例JAK2V617F突变,均与t (8; 21)/AML1/ETO伴随出现. 大于90%的AML患者至少携带1个基因突变,每例患者平均发生2个以上白血病常见致病基因突变,部分基因突变与基因重排有一定相关性."	"[Effect of Signal Transduction Pathway Gene Mutations on the One- course Induced Remission Rate and Analysis of Clinical Characteristics in Patients with CBF-AML]. To investigate the effect of other gene mutations outside the fusion gene on the first complete remission (CR1) induced by one course of induction chemotherapy in patients with core binding factor-associated acute myeloid leukemia (CBF-AML). DNA was extracted from bone marrow or peripheral blood samples of newly diagnosed CBF-AML patients admitted to the Hematology Department of the Second Hospital of Shanxi Medical University from January 2015 to January 2019. Next-generation sequencing was used for detection of 34 kinds of hematologic malignancy-related gene mutations in patients with CBF-AML, the effect of related gene mutations on the first complete remission (CR1) rate in one course of induction chemotherapy was analyzed by combineation with clinical characteristics. 34 kinds of genes in bone marrow or peripheral blood of 43 patients were detected by high throughput sequencing and the gene mutations were detected in 16 out of 34 genes. The mutation rate of KIT gene was the highest (48.8%), followed by NRAS (16.3%), ASXL1 (16.3%), TET2 (11.6%), CSF3R (9.3%), FLT3 (9.3%), KRAS (7.0%). The detection rates of mutations in different functional genes were as follows: genes related with signal transduction pathway (KIT, FLT3, CSF3R, KRAS, NRAS, JAK2, CALR, SH2B3, CBL) had the highest mutation frequency (72.1% (31/43); epigenetic modification gene mutation frequency was 30.2% (13/43), including ASXL1, TET2, BCOR); transcriptional regulation gene mutation frequency was 7.0% (3/43), including ETV6, RUNX1, GATA2). Splicing factor related gene mutation frequency was 2.3% (1/43), including ZRSR2). The CR1 rate was 74.4% after one course of induction chemotherapy. At first diagnosis, patients with low expression of WT1 (the median value of WT1 was 788.9) were more likely to get CR1 (P=0.032) and the RFS of patients who got CR1 after one course of induction chemotherapy was significantly longer than that of patients without CR1 [7.6 (2.2-44.1) versus 5.8 (1-19.4), (P=0.048)]. The rate of CR1 in the signal transduction pathway gene mutation group was significantly lower than that in non-mutation group (64.5% vs 100%) (P=0.045), while the level of serum hydroxybutyrate dehydrogenase (HBDH) was significantly higher than that in non-mutation group [(418 (154-2702) vs 246 (110-1068)] (P=0.032). There was no difference in CD56 expression between the two groups (P=0.053), which was limited to the difference between (≥20%) expression and non-expression. (P=0.048). CBF-AML patients with signal transduction pathway gene mutation are often accompanied by high HBDH level and CD56 expression, moreover, the remission rate induced by one course of treatment is low. 信号传导通路基因突变对CBF-AML患者一个疗程诱导缓解率的影响及临床特征分析. 研究融合基因外其他基因突变对核心结合因子相关急性髓系白血病(CBF-AML)患者1个疗程诱导化疗达首次完全缓解的影响. 采集2015年1月至2019年1月在山西医科大学第二医院血液科收治的43例初发CBF-AML患者的骨髓或外周血标本,提取DNA,通过高通量测序检测34种常见血液肿瘤基因突变情 况;结合其临床特征,分析相关基因突变对1个疗程诱导化疗完全缓解(CR1)率的影响. 43例初发CBF-AML患者初发时骨髓或外周血DNA均通过二代测序(NGS)检测了34种基因,其中16种基因存在突变,KIT基因突变率最高(48.8%),其次为NRAS(16.3%),ASXL1(16.3%),TET2(11.6%),CSF3R(9.3%),FLT3(9.3%), KRAS(7.0%)。不同功能基因突变检出率依次为:信号传导通路基因(KIT、FLT3、CSF3R、KRAS、NRAS、JAK2、CALR、SH2B3、CBL)突变发生频率最高,为72.1%(31/43);表观遗传修饰基因突变频率 为30.2%(13/43,包括ASXL1、TET2、BCOR);转录调节基因突变频率为7.0%(3/43,包括ETV6、RUNX1、GATA2);剪接因子相关基因为2.3%(1/43,包括ZRSR2)。经1个疗程诱导化疗CR1率为74.4%。初诊时WT1低表达(表达量临界值选取WT1中位值788.9)患者经1个疗程诱导化疗更易获得CR1(P=0.032),且1个疗程获CR1 组患者的RFS显著长于未获CR1组患者[7.6(2.2-44.1)对5.8(1-19.4),(P=0.048)]。信号传导通路基因突变组的1个疗程诱导治疗CR1率明显低于非信号传导通路基因突变组(64.5%对100%,P=0.045),但血清羟丁酸脱氢酶(HBDH)水平显著高于非突变组[418(154-2702)对246(110-1068),P=0.032],2组CD56表达情况总体无差异(P=0.053),仅限于≥20%表达与不表达间存在差异(P=0.048). 存在信号传导通路基因突变的CBF-AML患者常伴较高的HBDH水平和CD56表达,1疗程诱导缓解率低."	"Immune characterization of metastatic colorectal cancer patients post reovirus administration. KRAS mutations are prevalent in 40-45% of patients with colorectal cancer (CRC) and targeting this gene has remained elusive. Viruses are well known immune sensitizing agents. The therapeutic efficacy of oncolytic reovirus in combination with chemotherapy is examined in a phase 1 study of metastatic CRC. This study evaluates the nature of immune response by determining the cytokine expression pattern in peripheral circulation along with the distribution of antigen presenting cells (APCs) and activated T lymphocytes. Further the study evaluates the alterations in exosomal and cellular microRNA levels along with the effect of reovirus on leukocyte transcriptome. Reovirus was administered as a 60-min intravenous infusion for 5 consecutive days every 28 days, at a tissue culture infective dose (TCID50) of 3 × 10<sup>10</sup>. Peripheral blood mononuclear cells (PBMC) were isolated from whole blood prior to reovirus administration and post-reovirus on days 2, 8, and 15. The expression profile of 25 cytokines in plasma was assessed (post PBMC isolation) on an EMD Millipore multiplex Luminex platform. Exosome and cellular levels of miR-29a-3p was determined in pre and post reovirus treated samples. Peripheral blood mononuclear cells were stained with fluorophore labelled antibodies against CD4, CD8, CD56, CD70, and CD123, fixed and evaluated by flow cytometry. The expression of granzyme B was determined on core biopsy of one patient. Finally, Clariom D Assay was used to determine the expression of 847 immune-related genes when compared to pre reovirus treatment by RNA sequencing analysis. A change was considered if the expression level either doubled or halved and the significance was determined at a p value of 0.001. Cytokine assay indicated upregulation at day 8 for IL-12p40 (2.95; p = 0.05); day 15 for GM-CSF (3.56; p = 0.009), IFN-y (1.86; p = 0.0004) and IL-12p70 (2.42; p = 0.02). An overall reduction in IL-8, VEGF and RANTES/CCL5 was observed over the 15-day period. Statistically significant reductions were observed at Day 15 for IL-8 (0.457-fold, 53.3% reduction; p = 0.03) and RANTES/CC5 (0.524-fold, 47.6% reduction; p = 0.003). An overall increase in IL-6 was observed, with statistical significance at day 8 (1.98- fold; 98% increase, p = 0.00007). APCs were stimulated within 48 h and activated (CD8<sup>+</sup> CD70<sup>+</sup>) T cells within 168 h as determine by flow cytometry. Sustained reductions in exosomal and cellular levels of miR-29a-3p (a microRNA upregulated in CRC and associated with decreased expression of the tumor suppressor WWOX gene) was documented. Reovirus administration further resulted in increases in KRAS (33x), IFNAR1 (20x), STAT3(5x), and TAP1 (4x) genes after 2 days; FGCR2A (23x) and CD244 (3x) after 8 days; KLRD1 (14x), TAP1 (2x) and CD244(2x) after 15 days. Reductions (&gt; 0.5x) were observed in VEGFA (2x) after 2 days; CXCR2 (2x), ITGAM (3x) after 15 days. Reovirus has profound immunomodulatory properties that span the genomic, protein and immune cell distribution levels. This is the first study with reovirus in cancer patients that demonstrates these multi- layered effects, demonstrating how reovirus can function as an immune stimulant (augmenting the efficacy of immuno-chemo-therapeutic drugs), and an oncolytic agent. Reovirus thus functions bimodally as an oncolytic agent causing lysis of tumor cells, and facilitator of immune-mediated recognition and destruction of tumor cells."	"Identification of a novel IL-5 signaling pathway in chronic pancreatitis and crosstalk with pancreatic tumor cells. While inflammation is associated with pancreatic cancer, the underlying mechanisms leading to cancer initiation are still being delineated. Eosinophils may promote or inhibit tumor growth, although the specific role in pancreatic cancer has yet to be determined. Eosinophil-supporting cytokine interleukin-5 and receptor are likely to have a role, but the significance in the pancreatic cancer microenvironment is unknown. Genetically engineered Akt1<sup>Myr</sup>/KRas<sup>G12D</sup> and KRas<sup>G12D</sup> mice were used to model changes induced by chronic inflammation. Tissue samples were collected to analyze the tumor microenvironment and infiltration of immune cells, whereas serum was collected to analyze cytokine and amylase activity in the inflammatory model. The expression of IL-5R and the effects of IL-5 were analyzed in human and murine tumor cells. Compound Akt1<sup>Myr</sup>/KRas<sup>G12D</sup> mice, compared to single KRas<sup>G12D</sup> or Akt1<sup>Myr</sup> mice, exhibited increased tissue damage after repeat inductions of inflammation, and had accelerated tumor development and metastasis. M2 macrophages and newly identified eosinophils co-localized with fibrotic regions rather than infiltrating into tumors, consistent with immune cell privilege. The majority of eosinophils found in the pancreas of Akt1<sup>Myr</sup>/KRas<sup>G12D</sup> mice with chronic inflammation lacked the cytotoxic NKG2D marker. IL-5 expression was upregulated in pancreatic cells in response to inflammation, and then diminished in advanced lesions. Although not previously described in pancreatic tumors, IL-5Rα was increased during mouse pancreatic tumor progression and expressed in human pancreatic ductal adenocarcinomas (7 of 7 by immunohistochemistry). IL-5 stimulated tumor cell migration and activation through STAT5 signaling, thereby suggesting an unreported tumor-promoting role for IL-5Rα in pancreatic cancer. Chronic inflammation induces increased pancreatic cancer progression and immune cells such as eosinophils are attracted to areas of fibrosis. Results suggest that IL-5 in the pancreatic compartment stimulates increased IL-5Rα on ductal tumor cells to increase pancreatic tumor motility. Collectively, IL-5/IL-5Rα signaling in the mouse and human pancreatic tumors microenvironment is a novel mechanism to facilitate tumor progression. Additional file 1: Video Abstract."	"A novel hotspot and rare somatic mutation p.A138V, at TP53 is associated with poor survival of pancreatic ductal and periampullary adenocarcinoma patients. Pancreatic Ductal Adenocarcinoma (PDAC) is a cancer of the exocrine pancreas and 5-year survival rates remain constant at 7%. Along with PDAC, Periampullary Adenocarcinoma (PAC) accounts for 0.5-2% of all gastrointestinal malignancies. Genomic observations were well concluded for PDAC and PACs in western countries but no reports are available from India till now. Targeted Next Generation Sequencing were performed in 8 (5 PDAC and 3 PAC) tumour normal pairs, using a panel of 412 cancer related genes. Primary findings were replicated in 85 tumour samples (31 PDAC and 54 PAC) using the Sanger sequencing. Mutations were also validated by ASPCR, RFLP, and Ion Torrent sequencing. IHC along with molecular dynamics and docking studies were performed for the p.A138V mutant of TP53. Key polymorphisms at TP53 and its associated genes were genotyped by PCR-RFLP method and association with somatic mutations were evaluated. All survival analysis was done using the Kaplan-Meier survival method which revealed that the survival rates varied significantly depending on the somatic mutations the patients harboured. Among the total 114 detected somatic mutations, TP53 was the most frequently mutated (41%) gene, followed by KRAS, SMAD4, CTNNB1, and ERBB3. We identified a novel hotspot TP53 mutation (p.A138V, in 17% of all patients). Low frequency of KRAS mutation (33%) was detected in these samples compared to patients from Western counties. Molecular Dynamics (MD) simulation and DNA-protein docking analysis predicted p.A138V to have oncogenic characteristics. Patients with p.A138V mutation showed poorer overall survival (p = 0.01). So, our finding highlights elevated prevalence of the p53p.A138V somatic mutation in PDAC and pancreatobiliary PAC patients. Detection of p.A138V somatic variant in TP53 might serve as a prognostic marker to classify patients. It might also have a role in determining treatment regimes. In addition, low frequency of KRAS hotspot mutation mostly in Indian PDAC patient cohort indicates presence of other early drivers in malignant transformation."	"Genomic profiling of microRNA target genes in colorectal cancer. Colorectal cancer is the second and third most common cancer in men and women, respectively, worldwide. Alterations such as genetic and epigenetic are common in colorectal cancer and are the basis of tumor formation. The exploration of the molecular basis of colorectal cancer can drive a better understanding of the disease as well as guide the prognosis, therapeutics, and disease management. This study is aimed at investigating the genetic mutation profile of five candidate microRNAs (hsa-miR-513b-3p, hsa-miR-500b-3p, hsa-miR-500a-3p, hsa-miR-450b-3p, hsa-miR-193a-5p) targeted by seven genes (APC, KRAS, TCF7L2, EGFR, IGF1R, CASP8, and GNAS)) using in silico approaches. Two datasets (dataset 1 from our previous study and dataset two (The Cancer Genome Atlas, Nature 2012) were considered for this study. Protein-protein interaction, expression analysis, and genetic profiling were carried out using STRING, FireBrowse, and cBioPortal, respectively. Protein-protein interaction network showed that epidermal growth factor receptor has the highest connection among the target genes and this can be considered as the hub gene. Relative to other solid tumors, in colorectal cancer, six of the target genes were downregulated and only CASP8 was upregulated. Genes with protein tyrosine kinases domain were frequently altered in colorectal cancer and the most common alteration in these genes/domain are missense mutation. These results could serve as a lead in the identification of driver genes responsible for colorectal cancer initiation and progression. However, the intense mechanism of these results remains unclear and further experimental validation and molecular approaches are the focal points in the nearest future."	"Somatic Gain of KRAS Function in the Endothelium is Sufficient to Cause Vascular Malformations that Require MEK but not PI3K Signaling. Rationale: We previously identified somatic activating mutations in the KRAS gene in the endothelium of the majority of human sporadic brain arteriovenous malformations (bAVMs); a disorder characterized by direct connections between arteries and veins. However, whether this genetic abnormality alone is sufficient for lesion formation, as well as how active KRAS signaling contributes to AVM formation, remains unknown. Objective:To establish the first in vivo models of somatic KRAS gain of function in the endothelium in both mice and zebrafish in order to directly observe the phenotypic consequences of constitutive KRAS activity at a cellular level in vivo, and to test potential therapeutic interventions for AVMs. Methods and Results: Using both postnatal and adult mice, as well as embryonic zebrafish, we demonstrate that endothelial-specific gain of function mutations in Kras (G12D or G12V) are sufficient to induce bAVMs. Active KRAS signaling leads to altered endothelial cell morphogenesis and increased cell size, ectopic sprouting, expanded vessel lumen diameter, and direct connections between arteries and veins. Furthermore, we show that these lesions are not associated with altered endothelial growth dynamics or a lack of proper arteriovenous identity, but instead appear to feature exuberant angiogenic signaling. Finally, we demonstrate that KRAS-dependent AVMs in zebrafish are refractory to inhibition of the downstream effector PI3K, but instead require active MEK signaling. Conclusions: We demonstrate that active KRAS expression in the endothelium is sufficient for bAVM formation, even in the setting of uninjured adult vasculature. Furthermore, the finding that KRAS-dependent lesions are reversible in zebrafish suggests that MEK inhibition may represent a promising therapeutic treatment for AVM patients."	"Is there any correlation among MKK4 (mitogen-activated protein kinase kinase 4) expression, clinicopathological features, and KRAS/NRAS mutation in colorectal cancer. We aimed to evaluate the correlation between MKK4 expression and clinicopathological features, KRAS/NRAS mutation in colorectal cancer. MKK4 expression was assessed by immunoreactivity score (IRS). Staining intensity(SI) and percentage of positively stained cells (PP) were used for IRS (IRS = SI×PP). Cutoffs were explored with ROC analysis. Patients were grouped as WIR ('weak immunoreactive'; IRS:0-2) and SIR ('strong immunoreactive'; IRS: &gt;3). We enrolled 95 patients. 63.2% had metastasis. Median follow-up was 31.4 months. KRAS/NRAS mutation rate was 45.2%. Median values for OS, DFS, and PFS were as 31.6, 17.2, and 10.3 months. WIR group had longer OS (p = 0.03). Recurrence rate was 36.8%. Median DFS was longer for recurrent patients in WIR group (p = 0.055). KRAS or NRAS wild-type patients and those with left-sided tumors in WIR group had longer OS (p = 0.029, p = 0.024, p = 0.03). There was no PFS difference (p: 0.15). In correlation analysis, there was a negative correlation between MKK4 expression and KRAS mutation, NRAS mutation, OS, PFS, DFS (r: -0,06; r: -0,02; r: -0,10; r: -0,06; r: -0,34). Only the correlation for MKK4 expression and DFS was significant (p = 0.04). MKK4 expression inversely correlates with survival outcomes. Patients with KRAS/NRAS wild-type, left-sided tumors with WIR had longer OS."	"Incorporating traditional and emerging biomarkers in the clinical management of metastatic colorectal cancer: an update. Molecular profiling has led to significantly longer survival in metastatic colorectal cancer (mCRC) patients. Clinical guidelines recommend testing for KRAS/NRAS, BRAF and MSI status, and new biomarkers such as HER2 amplification and NTRK fusions have emerged more recently in refractory CRC, supported by overwhelming clinical relevance. These biomarkers can guide treatment management to improve clinical outcomes in these patients. Preclinical and clinical data over the last decade were reviewed for known and novel biomarkers with clinical implications in refractory CRC. Molecular alterations are described for classic and novel biomarkers, and data for completed and ongoing studies with targeted and immunotherapies are presented. Use of targeted therapies based on biomarker testing in CRC has enabled impressive improvements in clinical outcomes in refractory patients. BRAF, MSI, NRAS and KRAS should be tested upfront in all patients given their indisputable therapeutic implications. Other molecular alterations such as HER2 and NTRK are emerging. Testing for these alterations may further improve outcomes for refractory CRC patients. Nonetheless, many key aspects remain to be defined including the optimal timing and technique for testing, the most adequate panel, and whether all patients should be tested for all alterations."	"Identification of PIGU as the Hub Gene Associated with KRAS Mutation in Colorectal Cancer by Coexpression Analysis. Colorectal cancer (CRC) patients with KRAS mutation are refractory and usually have poor prognosis. We aimed to identify the hub gene associated with KRAS mutant CRCs. Weighted gene coexpression network analysis (WGCNA) was used to calculate the key module and the hub genes in GSE39582. Combined with the protein-protein interaction (PPI) network and survival analysis, the real hub gene was identified and further validated. With the highest module significance value and correlation coefficient, the blue module was selected as the key module, 19 genes were identified as the hub gene candidates. The above genes were significantly downregulated in KRAS mutant CRCs compared with the wild type. Four genes (AAR2, PSMA7, NELFCD, and PIGU) were further screened as the potential hub genes by the PPI network. Low expression of PIGU for KRAS mutant patients had a poor prognosis. Therefore, PIGU was identified as the hub gene. PIGU expression was also downregulated in other two CRC datasets. &quot;MAPK SIGNALING PATHWAY&quot; was enriched in PIGU lowly expressed samples. PIGU was identified and validated to be closely related to KRAS mutation. It could be a potential prognosis biomarker and a novel treatment target for KRAS mutant CRC patients."	"Application of targeted next generation sequencing for the mutational profiling of patients with acute lymphoblastic leukemia. Acute lymphoblastic leukemia (ALL) is the most common cancer in children, whereas it is less common in adults. Identification of cytogenetic aberrations and a small number of molecular abnormalities are still the most important risk and therapy stratification methods in clinical practice today. Next generation sequencing (NGS) technology provides a large amount of data contributing to elucidation of mutational landscape of childhood (cALL) and adult ALL (aALL). We analyzed DNA samples from 34 cALL and aALL patients, using NGS targeted sequencing TruSeq Amplicon - Cancer Panel (TSACP) which targets mutational hotspots in 48 cancer related genes. We identified a total of 330 variants in the coding regions, out of which only 95 were potentially protein-changing. Observed in individual patients, detected mutations predominantly disrupted Ras/RTK pathway (STK11, KIT, MET, NRAS, KRAS, PTEN). Additionally, we identified 5 patients with the same mutation in HNF1A gene, disrupting both Wnt and Notch signaling pathway. In two patients we detected variants in NOTCH1 gene. HNF1A and NOTCH1 variants were mutually exclusive, while genes involved in Ras/RTK pathway exhibit a tendency of mutation accumulation. Our results showed that ALL contains low number of mutations, without significant differences between cALL and aALL (median per patient 2 and 3, respectively). Detected mutations affect few key signaling pathways, primarily Ras/RTK cascade. This study contributes to knowledge of ALL mutational landscape, leading to better understanding of molecular basis of this disease. Akutna limfoblastna leukemija (ALL) je najčešće maligno oboljenje kod dece, dok je kod odraslih njena učestalost mnogo niža. U današnjoj kliničkoj praksi kao najvažnije metode stratifikacije pacijenata u određene grupe rizika koriste se metode identifikacije citogenetičkih aberacija i malog broja molekulanih markera. Tehnologija sekvenciranja nove generacije (SNG) obezbeđuje veliku količinu podataka koji doprinose razjašnjavanju mutacionog profila dečje (dALL) i adultne ALL (aALL). Uzorci DNK iz 34 dALL i aALL pacijenata analizirani su primenom SNG ciljanog sekvenciranja (&quot;TruSeq Amplicon Cancer Panel - TSACP&quot;) kojim se sekvenciraju &quot;hotspot&quot; mutacije u 48 gena povezanih sa kancerom. Identifikovano je ukupno 330 varijanti u kodirajućim regionima, od kojih je samo 95 njih za posledicu imalo potencijalnu promenu u proteinu. Posmatrano kod pojedinačnih pacijenata, detektovane mutacije su pretežno remetile Ras/RTK signalni put (STK11, KIT, MET, NRAS, KRAS, PTEN). Pored toga, identifikovano je 5 pacijenata sa istom mutacijom u HNF1A genu, koja je uzrokovala poremećaje u Wnt i Notch signalnom putu. Kod dva pa cijenta otkrivene su varijante u NOTCH1 genu. Nije detektovano istovremeno prisustvo varijanti u HNF1A i NOTCH1 genu, dok su geni uključeni u Ras/RTK signalni put pokazali tendenciju ka akumuliranju mutacija. Naši rezultati pokazuju da ALL sadrži Mali broj mutacija, bez značajnih razlika između dALL i aALL (medijana po pacijentu 2 odnosno 3). Detektovane mutacije izazivaju poremećaje u nekoliko ključnih signalnih puteva, prvenstveno Ras/RTK kaskade. Ova studija doprinosi ukupnom znanju o mutacionom profilu ALL, što vodi ka boljem razumijevanju molekularne osnove ovog oboljenja."	"Current therapy of KRAS-mutant lung cancer. KRAS mutations are the most frequent gain-of-function alterations in patients with lung adenocarcinoma (LADC) in the Western world. Although they have been identified decades ago, prior efforts to target KRAS signaling with single-agent therapeutic approaches such as farnesyl transferase inhibitors, prenylation inhibition, impairment of KRAS downstream signaling, and synthetic lethality screens have been unsuccessful. Moreover, the role of KRAS oncogene in LADC is still not fully understood, and its prognostic and predictive impact with regards to the standard of care therapy remains controversial. Of note, KRAS-related studies that included general non-small cell lung cancer (NSCLC) population instead of LADC patients should be very carefully evaluated. Recently, however, comprehensive genomic profiling and wide-spectrum analysis of other co-occurring genetic alterations have identified unique therapeutic vulnerabilities. Novel targeted agents such as the covalent KRAS G12C inhibitors or the recently proposed combinatory approaches are some examples which may allow a tailored treatment for LADC patients harboring KRAS mutations. This review summarizes the current knowledge about the therapeutic approaches of KRAS-mutated LADC and provides an update on the most recent advances in KRAS-targeted anti-cancer strategies, with a focus on potential clinical implications."	"Chemotherapeutic Effectiveness of Combining Cetuximab for Metastatic Colorectal Cancer Treatment: A System Review and Meta-Analysis. This meta-analysis used the database including PubMed, Medline, Cochrane Library, CNKI, Chinese-Cqvip, and Wanfang for randomized controlled trials (RCTs) to investigate the clinical effectiveness for combining cetuximab treatment with chemotherapy for treating metastatic colorectal cancer (mCRC). A total of 12 RCTs involved 7,108 patients with mCRC were included. The patients received chemotherapy with (3,521 cases) or without cetuximab (3,587 cases). Outcomes were overall survival (OS), progression-free survival (PFS), disease control rate (DCR), overall response rate (ORR), odd ratio (OR), and risk ratio (HR). Our results showed that the chemotherapy alone group has shorter OS, PFS, and ORR than the chemotherapy plus cetuximab group, with significant differences (PFS:HR = 0.77, 95% CI = 0.72-0.82, P &lt; 0.00001; OS:HR = 0.88, 95% CI = 0.79-0.99, P = 0.03; ORR:OR = 1.79, 95% CI = 1.30-2.47; P = 0.0003). Results of subgroup analysis showed that cetuximab treatment prolonged PFS and OS in KRAS wild-type patients, with statistically significant differences (PFS:HR = 0.79, 95% CI = 0.65-0.95, P = 0.01; OS:HR = 0.85, 95% CI = 0.74-0.98, P = 0.02). Combining cetuximab with chemotherapy, the PFS and OS of wild-type KRAS patients and the ORR of all patients were significantly improved."	"CUX1, A Controversial Player in Tumor Development. CUX1 belongs to the homeodomain transcription factor family and is evolutionarily and functionally conserved from Drosophila to humans. In addition to the involvement in various physiological events including tissue development, cell proliferation, differentiation and migration, and DNA damage response, CUX1 has been implicated in tumorigenesis. Interestingly, CUX1 has been recently recognized as a haploinsufficient tumor suppressor, which is paradoxically overexpressed in tumor cells. While loss of heterozygosity and/or mutations of CUX1 have been frequently detected in many types of cancers, genomic amplification, and overexpression of CUX1 have also been reported in cancer tissues and are correlated with higher tumor grade and poor prognosis. Therefore, deciphering the roles of different CUX1 isoforms and in different tumor stages is required to establish a CUX1-based therapeutic strategy for cancer treatment."	"Prognostic value of KRAS mutation status in colorectal cancer patients: a population-based competing risk analysis. To use competing analyses to estimate the prognostic value of KRAS mutation status in colorectal cancer (CRC) patients and to build nomogram for CRC patients who had KRAS testing. The cohort was selected from the Surveillance, Epidemiology, and End Results database. Cumulative incidence function model and multivariate Fine-Gray regression for proportional hazards modeling of the subdistribution hazard (SH) model were used to estimate the prognosis. An SH model based nomogram was built after a variable selection process. The validation of the nomogram was conducted by discrimination and calibration with 1,000 bootstraps. We included 8,983 CRC patients who had KRAS testing. SH model found that KRAS mutant patients had worse CSS than KRAS wild type patients in overall cohort (HR = 1.10 (95% CI [1.04-1.17]), p &lt; 0.05), and in subgroups that comprised stage III CRC (HR = 1.28 (95% CI [1.09-1.49]), p &lt; 0.05) and stage IV CRC (HR = 1.14 (95% CI [1.06-1.23]), p &lt; 0.05), left side colon cancer (HR = 1.28 (95% CI [1.15-1.42]), p &lt; 0.05) and rectal cancer (HR = 1.23 (95% CI [1.07-1.43]), p &lt; 0.05). We built the SH model based nomogram, which showed good accuracy by internal validation of discrimination and calibration. Calibration curves represented good agreement between the nomogram predicted CRC caused death and actual observed CRC caused death. The time dependent area under the curve of receiver operating characteristic curves (AUC) was over 0.75 for the nomogram. This is the first population based competing risk study on the association between KRAS mutation status and the CRC prognosis. The mutation of KRAS indicated a poor prognosis of CRC patients. The current competing risk nomogram would help physicians to predict cancer specific death of CRC patients who had KRAS testing."	"Anlotinib Exerts Anti-Cancer Effects on KRAS-Mutated Lung Cancer Cell Through Suppressing the MEK/ERK Pathway. With a high frequency of 30%, KRAS mutations in patients with non-small cell lung cancer (NSCLC) often lead to their poor response to most anti-cancer therapies. As a multi-target tyrosine kinase inhibitor, Anlotinib shows clinical efficacy against several types of cancer. However, its effects on KRAS mutant NSCLC and the underlying molecular mechanisms remain unclear. Cell counting Kit-8 assay, colony formation assay, flow cytometry analysis, wound healing scratch assay, Transwell assay and xenograft mouse model were used to evaluate the anti-cancer effects of Anlotinib. The potential molecular mechanisms were determined by immunohistochemistry (IHC) and Western blotting. Anlotinib inhibited proliferation of KRAS mutant lung cancer cells and induced apoptosis in vitro. In addition, the migration and invasion abilities of these cells were also decreased after treatment with Anlotinib. It significantly suppressed tumor growth in vivo and prolonged the survival of the xenograft-bearing mice, which correlated to lower expression levels of Ki67 in the tumor tissues. Mechanistically, Anlotinib downregulated MEK and ERK as well as their phosphorylated forms in the KRAS mutant lung cancer cells. Anlotinib inhibits the growth of KRAS mutant lung cancer cells partly via the suppression of the MEK/ERK pathway. Our findings provide novel insights into treating recalcitrant KRAS mutated NSCLC."	"Anti-PD-1 Therapy Achieved Disease Control After Multiline Chemotherapy in Unresectable KRAS-Positive Hepatoid Lung Adenocarcinoma: A Case Report and Literature Review. Hepatoid adenocarcinoma of the lung (HAL) is extremely rare and standardized treatment strategy for HAL has not been established. Patients with unresectable HAL have a shorter survival time ranges from 1 to 36 months. Here, we reported a 65-year-old female patient with unresectable alpha-fetoprotein-producing HAL harboring KRAS-G12V and no other targetable driver mutations. The patient was treated with multiple lines of chemotherapies followed by PD-1 inhibitor, sintilimab, due to positive staining of PD-L1, and achieved an overall survival of 52 months. Although the disease was under control, the patient experienced fifth-grade pneumonia and died after 6 months of anti-PD-1 treatment. This is the first case of KRAS-positive HAL patient achieved stable disease by PD-1 inhibitor, which may provide valuable information for the treatment strategy development of advanced HAL patients, and highlights the importance of molecular diagnosis in treatment decision-making."	"Identification of Altered Genes in Gallbladder Cancer as Potential Driver Mutations for Diagnostic and Prognostic Purposes: A Computational Approach. Prognostic markers for cancer can assist in the evaluation of survival probability of patients and help clinicians to assess the available treatment modalities. Gallbladder cancer (GBC) is a rare tumor that causes 165 087 deaths in the world annually. It is the most common cancer of the biliary tract and has a particularly high incidence in Chile, Japan, and northern India. Currently, there is no accurate diagnosis test or effective molecular markers for GBC identification. Several studies have focused on the discovery of genetic alterations in important genes associated with GBC to propose novel diagnosis pathways and to create prognostic profiles. To achieve this, we performed data-mining of GBC in public repositories, harboring 133 samples of GBC, allowing us to describe relevant somatic mutations in important genes and to propose a genetic alteration atlas for GBC. In our results, we reported the 14 most altered genes in GBC: arid1a, arid2, atm, ctnnb1, erbb2, erbb3, kmt2c, kmt2d, kras, pik3ca, smad4, tert, tp53, and znf521 in samples from Japan, the United States, Chile, and China. Missense mutations are common among these genes. The annotations of many mutations revealed their importance in cancer development. The observed annotations mentioned that several mutations found in this repository are probably oncogenic, with a putative loss-of-function. In addition, they are hotspot mutations and are probably linked to poor prognosis in other cancers. We identified another 11 genes, which presented a copy number alteration in gallbladder database samples, which are ccnd1, ccnd3, ccne1, cdk12, cdkn2a, cdkn2b, erbb2, erbb3, kras, mdm2, and myc. The findings reported here can help to detect GBC cancer through the development of systems based on genetic alterations, for example, the development of a mutation panel specifically for GBC diagnosis, as well as the creation of prognostic profiles to accomplish the development of GBC and its prevalence."	"Lineage reversion drives WNT independence in intestinal cancer. The WNT pathway is a fundamental regulator of intestinal homeostasis and hyperactivation of WNT signaling is the major oncogenic driver in colorectal cancer (CRC). To date, there are no described mechanisms that bypass WNT dependence in intestinal tumors. Here, we show that while WNT suppression blocks tumor growth in most organoid and in vivo CRC models, the accumulation of CRC-associated genetic alterations enables drug resistance and WNT-independent growth. In intestinal epithelial cells harboring mutations in KRAS or BRAF, together with disruption of p53 and SMAD4, transient TGFB exposure drives YAP/TAZ-dependent transcriptional reprogramming and lineage reversion. Acquisition of embryonic intestinal identity is accompanied by a permanent loss of adult intestinal lineages, and long-term WNT-independent growth. This work identifies genetic and microenvironmental factors that drive WNT inhibitor resistance, defines a new mechanism for WNT-independent CRC growth and reveals how integration of associated genetic alterations and extracellular signals can overcome lineage-dependent oncogenic programs."	"BRAF Mutated Colorectal Cancer: New Treatment Approaches. Colon cancer is one of the most frequently diagnosed malignancies in adults, considering both its incidence and prevalence. Anatomically, the right colon is considered as being from the cecum to the splenic flexure, and the left colon is from the splenic flexure to the rectum. Sidedness is a surrogate of a wide spectrum of colorectal cancer (CRC) biology features (embryology, microbiome, methylation, microsatellite instability (MSI), BRAF, aging, KRAS, consensus molecular subtypes (CMS), etc.), which result in prognostic factors. Different molecular subtypes have been identified, according to genomic and transcriptomic criteria. A subgroup harboring a BRAF mutation has been described, and represents approximately 10% of the patients diagnosed with colon cancer. This subgroup has morphological, clinical, and therapeutic characteristics that differ substantially from patients who do not carry this genetic alteration. Unfortunately, there is no established standard of care for this particular cohort of patients. This manuscript aims to study the biology of this subgroup of colon cancer, to understand the current approach in clinical research."	"RNA Binding Proteins as Drivers and Therapeutic Target Candidates in Pancreatic Ductal Adenocarcinoma. Pancreatic ductal adenocarcinomas (PDAC) belong to the most frequent and most deadly malignancies in the western world. Mutations in KRAS and TP53 along with some other frequent polymorphisms occur almost universally and are likely to be responsible for tumor initiation. However, these mutations cannot explain the heterogeneity in therapeutic responses observed in PDAC patients, which limits efficiency of current therapeutic strategies. Instead, recent classifications of PDAC tumor samples are based on transcriptomics data and thus include information about epigenetic, transcriptomic, and post-transcriptomic deregulations. RNA binding proteins (RBPs) are important post-transcriptional regulators involved in every aspect of the RNA life cycle and thus considerably influence the transcriptome. In this study, we systematically investigated deregulated expression, prognostic value, and essentiality reported for RBPs in PDAC or PDAC cancer models using publicly available data. We identified 44 RBPs with suggested oncogenic potential. These include various proteins, e.g., IGF2 mRNA binding proteins (IGF2BPs), with reported tumor-promoting roles. We further characterized these RBPs and found common patterns regarding their expression, interaction, and regulation by microRNAs. These analyses suggest four prime candidate oncogenic RBPs with partially validated target potential: APOBEC1, IGF2BP1 and 3, and OASL."	"A Driver Never Works Alone-Interplay Networks of Mutant p53, MYC, RAS, and Other Universal Oncogenic Drivers in Human Cancer. The knowledge accumulating on the occurrence and mechanisms of the activation of oncogenes in human neoplasia necessitates an increasingly detailed understanding of their systemic interactions. None of the known oncogenic drivers work in isolation from the other oncogenic pathways. The cooperation between these pathways is an indispensable element of a multistep carcinogenesis, which apart from inactivation of tumor suppressors, always includes the activation of two or more proto-oncogenes. In this review we focus on representative examples of the interaction of major oncogenic drivers with one another. The drivers are selected according to the following criteria: (1) the highest frequency of known activation in human neoplasia (by mutations or otherwise), (2) activation in a wide range of neoplasia types (universality) and (3) as a part of a distinguishable pathway, (4) being a known cause of phenotypic addiction of neoplastic cells and thus a promising therapeutic target. Each of these universal oncogenic factors-mutant p53, KRAS and CMYC proteins, telomerase ribonucleoprotein, proteasome machinery, HSP molecular chaperones, NF-κB and WNT pathways, AP-1 and YAP/TAZ transcription factors and non-coding RNAs-has a vast network of molecular interrelations and common partners. Understanding this network allows for the hunt for novel therapeutic targets and protocols to counteract drug resistance in a clinical neoplasia treatment."	"Peripheral type squamous cell carcinoma of the lung: clinicopathologic characteristics in comparison to the central type. Squamous cell carcinomas (SqCCs) of the lung are known to arise more often in a central area but reports of peripheral SqCCs have increased, with a pathogenesis that is obscured. In this study, the clinicopathologic characteristics of peripheral lung SqCCs were studied and compared with those of the central type. This study included 63 peripheral lung SqCCs and 48 randomly selected central cases; hematoxylin and eosin-stained slides of surgically resected specimens were reviewed in conjunction with radiologic images and clinical history. Cytokeratin-7 immunohistochemical staining of key slides and epidermal growth factor receptor (EGFR)/KRAS mutations tested by DNA sequencing were also included. Stages of peripheral SqCCs were significantly lower than central SqCCs (p=.016). Cystic change of the mass (p=.007), presence of interstitial fibrosis (p=0.007), and anthracosis (p=.049) in the background lung were significantly associated with the peripheral type. Cytokeratin-7 positivity was also higher in peripheral SqCCs with cutoffs of both 10% and 50% (p=.011). Pathogenic mutations in EGFR and KRAS were observed in only one case out of the 72 evaluated. The Cox proportional hazard model indicated a significantly better disease-free survival (p=.009) and the tendency of better overall survival (p=.106) in the peripheral type. In peripheral type, lower stage is a favorable factor for survival but more frequent interstitial fibrosis and older age are unfavorable factors. Multivariate Cox analysis revealed that peripheral type is associated with better disease-free survival. The pathogenesis of peripheral lung SqCCs needs further investigation, together with consideration of the background lung conditions."	"Comparative genomics of high grade neuroendocrine carcinoma of the cervix. In order to improve treatment selection for high grade neuroendocrine carcinomas of the cervix (NECC), we performed a comparative genomic analysis between this rare tumor type and other cervical cancer types, as well as extra-cervical neuroendocrine small cell carcinomas of the lung and bladder. We performed whole exome sequencing on fresh-frozen tissue from 15 NECCs and matched normal tissue. We then identified mutations and copy number variants using standard analysis pipelines. Published mutation tables from cervical cancers and extra-cervical small cell carcinomas were used for comparative analysis. Descriptive statistical methods were used and a two-sided threshold of P &lt; .05 was used for significance. In the NECC cohort, we detected a median of 1.7 somatic mutations per megabase (range 1.0-20.9). PIK3CA p.E545K mutations were the most frequency observed oncogenic mutation (4/15 tumors, 27%). Activating MAPK pathway mutations in KRAS (p.G12D) and GNAS (p.R201C) co-occurred in two tumors (13%). In total we identified PI3-kinase or MAPK pathway activating mutations in 67% of NECC. When compared to NECC, lung and bladder small cell carcinomas exhibited a statistically significant higher rate of coding mutations (P &lt; .001 for lung; P = .001 for bladder). Mutation of TP53 was uncommon in NECC (13%) and was more frequent in both lung (103 of 110 tumors [94%], P &lt; .001) and bladder (18 of 19 tumors [95%], P &lt; .001) small cell carcinoma. These comparative genomics data suggest that NECC may be genetically more similar to common cervical cancer subtypes than to extra-cervical small cell neuroendocrine carcinomas of the lung and bladder. These results may have implications for the selection of cytotoxic and targeted therapy regimens for this rare disease."	"Genetic alteration of colorectal adenoma-carcinoma sequence among gastric adenocarcinoma and dysplastic lesions in a patient with attenuated familial adenomatous polyposis. Familial adenomatous polyposis (FAP) is characterized by colorectal polyposis and adenocarcinoma that is frequently accompanied by extracolonic neoplasm. The risk of gastric carcinoma is increasing in Western FAP patients as well as Asian patients. We report the case of an FAP patient with fundic gland polyposis who developed gastric adenocarcinoma and metachronous pyloric gland adenomas. These tumors were endoscopically resected, and immunohistochemistry with gastric mucin (i.e., MUC6, MUC5AC) showed that the tumors belonged to the gastric subtype. Somatic mutation profiles were determined by target amplicon sequencing using a next-generation sequencer. Germline APC variant c.5782delC was found by direct sequencing and somatic KRAS mutations in these tumors were identified by next-generation sequencing. Different KRAS mutation alleles (KRAS p.Gly12Ala, p.Gly12Arg, and p.Gly12Asp) indicated these dysplastic lesions developed from a distinct origin in fundic gland polyposis. Sequential mutations of the APC and KRAS were judged-based on a database search-to be characteristic of the adenoma-carcinoma sequence in colorectal carcinogenesis. The colonic adenoma-carcinoma sequence among gastric adenocarcinoma and dysplastic lesions was indicated in FAP-associated gastric carcinogenesis."	"An Immunocompetent Model of Pancreatic Cancer Resection and Recurrence. Even after surgical resection, most patients with localized pancreatic ductal adenocarcinoma (PDAC) succumb to disease recurrence. Current animal models do not recapitulate this pattern of disease recurrence. Our goal was to develop a clinically relevant, immunocompetent model of PDAC resection to study recurrence and evaluate therapy. Pancreatic cancer cells derived from tumors arising in KPC (LSL-Kras<sup>G12D/+</sup>; LSL-Trp53<sup>R172H/+</sup>; Pdx-1-Cre) mice were co-injected with stromal cells (pancreatic stellate cells) into the pancreas of immunocompetent mice to simulate the stroma-rich tumors seen in human PDAC. After allowing tumors to form, we resected these localized tumors and followed the mice for tumor recurrence. Circulating tumor cells (CTCs) were isolated, and systemic chemotherapy or immunotherapy was administered following tumor resection. Tumors formed by co-injection of KPC cells and stromal cells demonstrated a dense desmoplastic reaction similar to that seen in human disease. Resection at days 15 and 21 after implantation revealed uniform tumor volumes of 92 ± 19 mm<sup>3</sup> on day 15 and 444 ± 54 mm<sup>3</sup> on day 21. Histology of resected tumors showed negative margins. Resembling human PDAC, mice that underwent resection showed improved median survival (58 vs 47 days) but most animals developed intra-abdominal recurrence on follow-up. Adjuvant chemotherapy (median survival 69 vs 58 days), but not immunotherapy (median survival 69 vs 65 days) tended towards improved survival as seen in human disease. Circulating tumor cells were reliably identified from mice with and without resection, suggesting utility of this model in studying tumor metastases and recurrence. We describe an immunocompetent animal model that recapitulates human disease in morphology and recurrence patterns. We show that it can be used to evaluate therapy in clinical scenarios associated with surgical resection and may help characterize factors responsible for disease recurrence."	"Mir34a constrains pancreatic carcinogenesis. Several studies have shown that over 70 different microRNAs are aberrantly expressed in pancreatic ductal adenocarcinoma (PDAC), affecting proliferation, apoptosis, metabolism, EMT and metastasis. The most important genetic alterations driving PDAC are a constitutive active mutation of the oncogene Kras and loss of function of the tumour suppressor Tp53 gene. Since the MicroRNA 34a (Mir34a) is a direct target of Tp53 it may critically contribute to the suppression of PDAC. Mir34a is epigenetically silenced in numerous cancers, including PDAC, where Mir34a down-regulation has been associated with poor patient prognosis. To determine whether Mir34a represents a suppressor of PDAC formation we generated an in vivo PDAC-mouse model harbouring pancreas-specific loss of Mir34a (Kras<sup>G12D</sup>; Mir34a<sup>Δ/Δ</sup>). Histological analysis of Kras<sup>G12D</sup>; Mir34a<sup>Δ/Δ</sup> mice revealed an accelerated formation of pre-neoplastic lesions and a faster PDAC development, compared to Kras<sup>G12D</sup> controls. Here we show that the accelerated phenotype is driven by an early up-regulation of the pro-inflammatory cytokines TNFA and IL6 in normal acinar cells and accompanied by the recruitment of immune cells. Our results imply that Mir34a restrains PDAC development by modulating the immune microenvironment of PDAC, thus defining Mir34a restauration as a potential therapeutic strategy for inhibition of PDAC development."	"BAP1 is a haploinsufficient tumor suppressor linking chronic pancreatitis to pancreatic cancer in mice. Chronic pancreatitis represents a risk factor for the development of pancreatic cancer. We find that heterozygous loss of histone H2A lysine 119 deubiquitinase BAP1 (BRCA1 Associated Protein-1) associates with a history of chronic pancreatitis and occurs in 25% of pancreatic ductal adenocarcinomas and 40% of acinar cell carcinomas. Deletion or heterozygous loss of Bap1 in murine pancreata causes genomic instability, tissue damage, and pancreatitis with full penetrance. Concomitant expression of Kras<sup>G12D</sup> leads to predominantly intraductal papillary mucinous neoplasms and mucinous cystic neoplasms, while pancreatic intraepithelial neoplasias are rarely detected. These lesions progress to metastatic pancreatic cancer with high frequency. Lesions with histological features mimicking Acinar Cell Carcinomas are also observed in some tumors. Heterozygous mice also develop pancreatic cancer suggesting a haploinsufficient tumor suppressor role for BAP1. Mechanistically, BAP1 regulates genomic stability, in a catalytic independent manner, and its loss confers sensitivity to irradiation and platinum-based chemotherapy in pancreatic cancer."	"Cytological, histological, and molecular characteristics of pure invasive micropapillary carcinoma of pancreas: A case report. Pure invasive micropapillary carcinoma (IMPC) is a rare histologic subtype of pancreatic cancer which has a high propensity for lymph node metastasis and poor prognosis. An 81-year-old woman was admitted to our institution with a 3-month history of back pain. Computed tomography of the abdomen and pelvis confirmed the presence of a low-density mass in the tail of the pancreas. Endoscopic ultrasound-guided fine needle aspiration cytology (FNAC) from the pancreatic mass showed small tumor cell clusters with three-dimensional aggregates and morula-like structures. The tumor was diagnosed as adenocarcinoma with micropapillary features. The patient underwent radical antegrade modular pancreatosplenectomy and regional lymph node dissection. Histological examination showed small clusters of tumor cells that were closely adhered to one another. The cells were located in empty stromal spaces mimicking lymphovascular channels. All tumor cells showed reverse polarity, resulting in an &quot;inside-out&quot; pattern. An extensive search was performed, and no typical ductal adenocarcinoma component was found. The tumor measured 1.5 × 1.3 cm and invaded into the peripancreatic fat tissue without adjacent organ invasion. One of the 12 regional lymph nodes showed metastasis. Ion Torrent next-generation sequencing identified missense mutations in KRAS, TP53, and SMAD4 using the Oncomine Comprehensive Panel version 1. Twelve months following surgical resection the patient remained healthy with no evidence of recurrence at clinical follow-up. This report highlights the diagnostic features and molecular characteristics of pure pancreatic IMPC and the challenges with diagnosis by FNAC. A centralized and collaborative accumulation of additional cases of pure IMPC could further elucidate its pathogenesis."	"[A New Era of Colorectal Cancer Treatment Being Led by a Precise Analysis of Somatic Mutational Profiles Including RAS, BRAF Mutation and Microsatellite Instability Status]. In Japan, clinically, a decade has passed since KRAS exon 2 hotspot mutations could be measured as a companion diagnostic agent of an anti-epidermal growth factor receptor antibody to treat unresectable advanced colorectal cancer. Till now, not only KRAS exon 2, but also KRAS exon 3, 4 and NRAS exon 2-4 mutation, and BRAF mutation(V600E)are approved as insurance as a companion diagnostics tool. In addition to those somatic mutations observed in Ras-Raf signal cascade, the measurement of microsatellite instability status is also approved as a companion diagnostic to anti-programmed death-1 receptor antibodies. Since these somatic mutational profiles in colorectal cancer cells are measured to determine the propriety of administration of a particular medicine, the results must be appropriately reflected in therapy for each patient. In this review, I will summarize the feature of clinical characteristics belonging to each somatic mutational profile commonly observed in colorectal cancer, and discuss howsuch somatic mutational profiles including RAS, BRAF mutation, and microsatellite instability status bring us to a newera of colorectal cancer."	"HDAC10 Regulates Cancer Stem-like Cell Properties in KRAS-driven Lung Adenocarcinoma. Activation of oncogenic KRAS is the most common driving event in lung adenocarcinoma development. Despite the existing rationale for targeting activated KRAS and its downstream effectors, the failure of clinical trials to date indicates that the mechanism of KRAS-driven malignancy remains poorly understood. Here we report that histone deacetylase 10 (HDAC10) might function as a putative tumor suppressor in mice carrying a spontaneously activated oncogenic Kras allele. Hdac10 deletion accelerated KRAS-driven early-onset lung adenocarcinomas, increased macrophage infiltration in the tumor microenvironment, and shortened survival time in mice. Highly tumorigenic and stem-like lung adenocarcinoma (LUAD) cells were increased in Hdac10-deleted tumors compared to Hdac10 wild-type tumors. HDAC10 regulated the stem-like properties of KRAS-expressing tumor cells by targeting SOX9. Expression of SOX9 was significantly increased in Hdac10-deleted tumor cells and depletion of SOX9 in Hdac10 knockout (KO) LUAD cells inhibited growth of tumor spheres. The genes associated with TGF-β pathway were enriched in Hdac10 KO tumor cells, and activation of TGF-β signaling contributed to SOX9 induction in Hdac10 KO LUAD cells. Overall, our study evaluates the functions and mechanisms of action of HDAC10 in lung carcinogenesis which will inform the rationale for targeting its related regulatory signaling as an anticancer strategy."	"AMG 510 Shows Activity beyond NSCLC. The latest results from the CodeBreak 100 trial evaluating AMG 510 indicate that this first-in-class KRAS inhibitor, having shown promise in non-small cell lung cancer, is modestly active in several other types of solid tumors, including colorectal cancer."	"High levels of immunoglobulin expression predict shorter overall survival in patients with acute myeloid leukemia. It has been believed that immunoglobulins can only be produced by B lymphocytes and plasma cells. We have previously reported that IgG can be expressed in myeloblasts from patients with acute myeloid leukemia (AML) and plays a role in the proliferation and apoptosis of leukemic cells. However, its clinical impact has not been assessed. We assessed the expression of different classes of immunoglobulin in peripheral blood and bone marrow samples from 132 AML patients and correlated the levels of expression with clinicopathologic and molecular genetic features, as well as clinical outcome. We found that, in addition to IgG, all classes of immunoglobulin are expressed in myeloblasts, including IgG, IgM, IgA, IgD, IgE, Igκ, and Igλ. The levels of IgG expression (coupled with Igκ or Igλ) are higher than those of IgM, IgA, IgD, and IgE. Using receiver operating characteristic (ROC) curve analysis, we identified two distinct groups of AML patients with differential expression of immunoglobulin and different clinical outcomes. High levels of immunoglobulin expression are associated with monocytic differentiation, multilineage dysplasia, TET2 and KRAS mutations, and poor overall survival. Assessment of immunoglobulin may serve as a useful marker for prognostic stratification and target therapy."	"Traditional serrated adenoma has two distinct genetic pathways for molecular tumorigenesis with potential neoplastic progression. Recent studies have shown that traditional serrated adenoma (TSA) can be classified into BRAF and KRAS subtypes. Here, we examined the clinicopathological and molecular findings of 73 TSAs. TSAs were subclassified into BRAF type (46 cases, type A) and KRAS type (27 cases, type B) and divided into polyp head (TSA component) and base (precursor component [PC]) to identify pathological and molecular differences between the two components. BRAF and KRAS mutations, microsatellite instability (MSI), and DNA methylation status of the TSA component and PC were analyzed. In addition, immunohistochemical expressions of annexin A10, MUC2, MUC5AC, MUC6, and CD10 were also examined. Finally, we compared endoscopic findings with histological features. We classified type As into 31 type A1s with mutation of the corresponding PC (42.5%) and 15 type A2s without mutation of the PC (20.5%). None of the corresponding PCs without KRAS mutation were observed in type Bs. MSI was not detected in the TSAs examined. There were significant differences in the frequency of annexin A10 and MUC5AC expression between the three subtypes. Furthermore, we compared the TSA component with the corresponding PC to identify the progression mechanism between the two components. Methylation status played an important role in the progression of type A1 from the corresponding PC, unlike type A2 and type B. Finally, specific endoscopic findings were well correlated with distinct histological findings. TSAs were heterogeneous tumors with two or three pathways to neoplastic progression."	"Targeting platelets for improved outcome in KRAS-driven lung adenocarcinoma. Elevated platelet count is associated with poor survival in certain solid cancers, including lung cancer. In addition, experimental transplantation of cancer cell lines has uncovered a role for platelets in blood-borne metastasis. These studies, however, do not account for heterogeneity between lung cancer subtypes. Subsequently, the role of platelets in the major subtypes of non-small cell lung cancer (adenocarcinoma (ADC) and squamous cell carcinoma (SqCC)) is not fully understood. We utilised an autochthonous Kras<sup>LSL-G12D/+</sup>;p53<sup>flox/flox</sup> mouse model of lung ADC together with genetic models of thrombocytopenia to interrogate the role of platelets in lung cancer growth and progression. While thrombocytopenia failed to impact primary tumour growth, in experimental metastatic models however, thrombocytopenic mice displayed significantly extended survival. Utilising a novel thrombocytopenic immunocompromised mouse, the importance of platelets in metastatic dissemination was confirmed with human KRAS-mutant ADC cell lines. Finally, retrospective analysis of a NSCLC patient cohort revealed thrombocytosis was predictive of poor survival in ADC patients with metastatic disease. Interestingly, this association was not apparent in SqCC patients. Overall, these data highlight the possibility of patient stratification using thrombocytosis as a biomarker, and indicates opportunities for potential novel treatment strategies that combine anti-platelet and lung cancer therapies."	"Allelic discrimination between circulating tumor DNA fragments enabled by a multiplex-qPCR assay containing DNA-enriched magnetic ionic liquids. Multiplex amplification of DNA can be highly valuable in circulating tumor DNA (ctDNA) analysis due to the sheer number of potential mutations. However, commercial ctDNA extraction methods struggle to preconcentrate low concentrations of DNA and require multiple sample handling steps. Recently, magnetic ionic liquids (MILs) have been used to extract DNA and were integrated with a quantitative polymerase chain reaction (qPCR). However, in previous studies, DNA could not be preconcentrated from plasma and only one fragment could be amplified per reaction. In this study, MILs were utilized as DNA extraction solvents and directly integrated into a multiplex-qPCR buffer to simultaneously amplify wild-type KRAS, G12S KRAS, and wild-type BRAF, three clinically-relevant genes whose mutation status can affect the success of anti-EGFR therapy. DNA was desorbed from the MIL solvent during a multiplex-PCR without having a significant effect on the amplification efficiency, and allelic discrimination of single-nucleotide polymorphisms could still be achieved. Enrichment factors over 35 for all three sequences were achieved from Tris buffer using the [N8,8,8,Bz<sup>+</sup>][Ni(hfacac)3<sup>-</sup>]) and [P6,6,6,14<sup>+</sup>][Ni(Phtfacac)3<sup>-</sup>] MILs. DNA could still be preconcentrated from 2-fold diluted human plasma using the [N8,8,8,Bz<sup>+</sup>][Ni(hfacac)3<sup>-</sup>] MIL. Extractions from undiluted plasma were reproducible with the [P6,6,6,14<sup>+</sup>][Ni(Phtfacac)3<sup>-</sup>] MIL although DNA was not preconcentrated with enrichment factors around 0.6 for all three fragments. Compared to commercial DNA extraction methods (i.e., silica-based spin columns and magnetic beads), the MIL-based extraction achieved higher enrichment factors in Tris buffer and plasma. The ability of the MIL-based dispersive liquid-liquid microextraction (DLLME) direct-multiplex-qPCR method to simultaneously achieve high enrichment factors of multiple DNA fragments from human plasma is highly promising in the field of ctDNA detection."	"Characteristics of genomic alterations in Chinese cholangiocarcinoma patients. Cholangiocarcinoma (CCA) is a primary malignancy, which is often diagnosed as advanced and inoperable due to the lack of effective biomarkers and poor sensitivity of clinical diagnosis. Here, we aimed to identify the genomic profile of CCA and provided molecular evidence for further biomarker development. The formalin-fixed paraffin-embedded and matching blood samples were sequenced by deep sequencing targeting 450 cancer genes and genomic alteration analysis was performed. Tumor mutational burden (TMB) was measured by an algorithm developed in-house. Correlation analysis was performed by Fisher's exact test. The most commonly altered genes in this cohort were TP53 (41.27%, 26/63), KRAS (31.75%, 20/63), ARID1A and IDH1 (15.87%, 10/63, for both), SMAD4 (14.29%, 9/63), FGFR2 and BAP1 (12.70%, 8/63, for both), and CDKN2A (11.11%, 7/63). BAP1 mutations were significantly correlated with the CCA subtype. LRP2 mutations were significantly associated with the younger intrahepatic CCA (iCCA) patients, while BAP1 was associated with iCCA patients aged 55-65 years old. BAP1 and LRP2 mutations were associated with TMB. Most Chinese CCA patients were 50-70 years old. BAP1 and LRP2 mutations were associated with the age of iCCA patients."	"The Coexistence of RAS and BRAF Mutations in Metastatic Colorectal Cancer: A Case Report and Systematic Literature Review. The coexistence of RAS and BRAF mutations is extremely rare, occurring in approximately 0.05% of patients with metastatic colorectal cancer (mCRC). Starting from a case presentation, this review aims to examine the prevalence, clinical, histopathological and molecular features of tumors with concomitant mutations. Case report and systematic review. We performed a systematic literature search in PubMed and EMBASE using the following MeSH terms: &quot;coexistence&quot; OR &quot;concomitant&quot; AND &quot;RAS&quot; AND &quot;BRAF&quot; AND &quot;colorectal cancer&quot; from the inception of the databases onwards. We present the case of a 53-year-old man diagnosed with metastatic rectal adenocarcinoma with both a KRAS and a BRAF mutation. The review included eleven papers reporting on a total of 30 mCRC cases with concomitant RAS and BRAF mutations. The male/female ratio was 11/5. The average age was 58.5 years. The tumor was located in nine cases on the right colon and in two cases in the left colon. 43.3% of subjects had liver metastases, and 6.6% had lung metastases. Next-generation sequencing (NGS) was used in 36.6% of cases and polymerase chain reaction (PCR) in 16.6% of cases. KRAS mutations were present in 83.3% of patients and NRAS mutations in 16.6% of patients. Survival could be assessed in 10 patients and the median was 21.1 months (about 30% lower than the survival in the general mCRC population). The results of this systematic review suggest the need to design a cohort study (either prospective or retrospective) to better characterize the patients with concomitant RAS and BRAF mutations and to establish the optimal treatment for this rare situation."	"Combined inhibition of ACK1 and AKT shows potential toward targeted therapy against KRAS-mutant non-small-cell lung cancer. Non-small-cell lung cancer (NSCLC) with KRAS (Kirsten RAt Sarcoma 2 viral oncogene homolog) mutation has become a clinical challenge in cancer treatment as KRAS-mutant tumors are often resistant to conventional anti-tumor therapies. Activated CDC42-associated kinase 1 (ACK1), an activator of protein kinase B (AKT), is a promising target for KRAS-mutant tumor therapy, but the downstream ACK1 signaling remains poorly understood. The aim of this study was to evaluate the effectiveness of combined ACK1/AKT inhibition on the proliferation, migration, invasion, and apoptosis of KRAS-mutant NSCLC cell lines (NCI-H23, NCI-H358, and A549). The cells were treated with an inhibitor of either ACK1 (dasatinib or sunitinib) or AKT (MK-2206 or GDC-0068), and the optimal concentrations of the two yielding synergistic tumor-killing effects were determined by applying the Chou-Talalay equation for drug combinations. We showed that combined administration of ACK1 and AKT inhibitors at the optimal concentrations effectively suppressed NSCLC cell viability and promoted apoptosis, while inducing cell cycle arrest at the G2 phase. Moreover, NSCLC cell migration and invasion were inhibited by combined ACK1/AKT inhibition. These phenomena were associated with the reduced phosphorylation levels of ACK1 and AKT (at Ser473 and Thr308), as well as alterations in caspase-dependent apoptotic signaling. Collectively, our results demonstrate the promising therapeutic potential of combined ACK1/AKT inhibition as a strategy against KRAS-mutant NSCLC. Our findings provide the basis for the clinical translation of biological targeted drugs (ACK1 and AKT inhibitors) and their rational combination in cancer treatment."	"MICA <sup>∗</sup>012:01 Allele Facilitates the Metastasis of KRAS-Mutant Colorectal Cancer. Major histocompatibility complex (HLA) class I chain-related protein A (MICA) regulates immune surveillance through activation of NKG2D (natural killer group 2D) receptor. However, the genetic association, potential function, and predictive ability of MICA alleles with colorectal cancer (CRC) prognosis remain undefined. In this study, we characterized MICA alleles in tissue samples from 104 patients with CRC and 536 healthy controls and carried out genetic association studies by molecular and clinical CRC phenotypes. Preliminary sequence analysis revealed that MICA <sup>∗</sup>009:01 or <sup>∗</sup>049 alleles were significantly decreased in patients with CRC (p = 0.0049), and further stratification analysis indicated that MICA <sup>∗</sup>012:01 allele was associated with patients with CRC and carrying KRAS codon 12 mutation (p = 0.027). The functional consequences of MICA alleles were examined via transfected CRC cell lines which showed that overexpression of MICA <sup>∗</sup>012:01 enhanced the proliferation, invasion, and metastatic phenotype of CRC. Preliminary analysis of disease-free survival time in patients with and without MICA <sup>∗</sup>012:01 suggest this allele may be predictive for poor prognosis of patients with KRAS codon 12 mutated CRC, as no somatic mutation of MICA gene was detected in CRC tumors compared to paracancerous tissues. Our study indicates that MICA <sup>∗</sup>012:01 allele is associated with KRAS-mutated CRC, facilitates CRC invasion and metastasis, and possibly reduces the survival of patients with KRAS-mutated CRC."	"RAS-targeted therapies: is the undruggable drugged? RAS (KRAS, NRAS and HRAS) is the most frequently mutated gene family in cancers, and, consequently, investigators have sought an effective RAS inhibitor for more than three decades. Even 10 years ago, RAS inhibitors were so elusive that RAS was termed 'undruggable'. Now, with the success of allele-specific covalent inhibitors against the most frequently mutated version of RAS in non-small-cell lung cancer, KRAS<sup>G12C</sup>, we have the opportunity to evaluate the best therapeutic strategies to treat RAS-driven cancers. Mutation-specific biochemical properties, as well as the tissue of origin, are likely to affect the effectiveness of such treatments. Currently, direct inhibition of mutant RAS through allele-specific inhibitors provides the best therapeutic approach. Therapies that target RAS-activating pathways or RAS effector pathways could be combined with these direct RAS inhibitors, immune checkpoint inhibitors or T cell-targeting approaches to treat RAS-mutant tumours. Here we review recent advances in therapies that target mutant RAS proteins and discuss the future challenges of these therapies, including combination strategies."	"Glans metastatic extra-nodal natural killer/T-cell lymphoma, nasal-type with HDAC inhibitor as maintenance therapy: a rare case report with literature review. Extra-nodal natural killer/T-cell lymphoma (ENKTL) is an aggressive lymphoid malignancy and advanced ENKTL is characterized by a dismal survival outcome. Distant metastasis is frequently common in advanced ENKTLs, while the glans is rarely involved. Here we report a 67-year-old Chinese male with glans metastasis ENKTL, nasal type secondary from the nasal cavity, treated with modified SMILE regimen plus glans radiotherapy and achieved a complete remission (CR). Since the poor prognosis of metastatic ENKTL and unfitness for hematological stem cell transplant (HSCT), we administered histone deacetylase (HDAC) inhibitor Chidamide as maintenance therapy, which was resulted in a progression-free survival (PFS) of 12 months. To investigate the gene alternations, the whole exon sequencing and the 446-gene panel sequencing were performed and we found the BCOR, KRAS, CDKN1B, XPO1, DOT1L genes mutations. Best to our knowledge, this is a glans metastasis ENKTL with the longest PFS and the most successful treatment."	"Randomised phase II study of panitumumab plus irinotecan versus cetuximab plus irinotecan in patients with KRAS wild-type metastatic colorectal cancer refractory to fluoropyrimidine, irinotecan and oxaliplatin (WJOG 6510G). Cetuximab has been shown to be clinically active when given in combination with irinotecan in patients with irinotecan-refractory metastatic colorectal cancer (mCRC). However, it has remained unclear whether panitumumab is effective when combined with irinotecan. We compared efficacies of both regimens in this randomised phase II study. Patients with wild-type KRAS exon 2 mCRC previously treated with fluorouracil-, oxaliplatin- and irinotecan-based chemotherapies were randomised (1:1) to either panitumumab plus irinotecan (panitumumab arm) or cetuximab plus irinotecan (cetuximab arm). The primary end-point was progression-free survival (PFS). The planned sample size was 120, expecting a hazard ratio (HR) of 1.0 with non-inferiority margin of 1.3 (one-sided alpha error 0.2 and power 0.7). Major secondary end-points were overall survival (OS), response rate and safety. From December 2011 to September 2014, 121 patients were enrolled, and 61 and 59 patients were randomised to the panitumumab and cetuximab arms, respectively (1 patient excluded). Most patients (97%) had received prior chemotherapies containing bevacizumab. The median PFS was 5.42 months in the panitumumab arm and 4.27 months in the cetuximab arm (HR = 0.64, 95% confidence interval [CI] = 0.44-0.94, P &lt; 0.001 for non-inferiority, P = 0.058 for superiority), and median OS was 14.85 and 11.53 months (HR = 0.66, 95% CI = 0.44-1.00, P = 0.050 for superiority), respectively. The incidence of grade 3 or 4 hypomagnesaemia was higher in the panitumumab arm than that in the cetuximab arm (17% vs. 7%). Panitumumab may be non-inferior to cetuximab in combination with irinotecan in survival of patients with irinotecan-refractory mCRC."	"Comparison of Tissue Molecular Biomarker Testing Turnaround Times and Concordance Between Standard of Care and the Biocartis Idylla Platform in Patients With Colorectal Cancer. Management of colorectal cancer warrants mutational analysis of KRAS/NRAS when considering anti-epidermal growth factor receptor therapy and BRAF testing for prognostic stratification. In this multicenter study, we compared a fully integrated, cartridge-based system to standard-of-care assays used by participating laboratories. Twenty laboratories enrolled 874 colorectal cancer cases between November 2017 and December 2018. Testing was performed on the Idylla automated system (Biocartis) using the KRAS and NRAS-BRAF cartridges (research use only) and results compared with in-house standard-of-care testing methods. There were sufficient data on 780 cases to measure turnaround time compared with standard assays. In-house polymerase chain reaction (PCR) had an average testing turnaround time of 5.6 days, send-out PCR of 22.5 days, in-house Sanger sequencing of 14.7 days, send-out Sanger of 17.8 days, in-house next-generation sequencing (NGS) of 12.5 days, and send-out NGS of 20.0 days. Standard testing had an average turnaround time of 11 days. Idylla average time to results was 4.9 days with a range of 0.4 to 13.5 days. The described cartridge-based system offers rapid and reliable testing of clinically actionable mutation in colorectal cancer specimens directly from formalin-fixed, paraffin-embedded tissue sections. Its simplicity and ease of use compared with other molecular techniques make it suitable for routine clinical laboratory testing."	"Impact of Driver Mutations on the Evolution of Isolated Metachronous Lung Metastasis of Pancreatic Ductal adenocarcinoma. The incidence of pancreatic ductal adenocarcinoma (PDAC) is increasing sharply. The survival of patients with metastases is usually about a year. However, the occurrence of isolated lung metastases after resection of the primary tumor, although rare, seems to indicate a better prognosis, with an average survival ranging from 40 to 80 months. KRAS, TP53, CDK2NA, and SMAD4 are the most common driver genes in pancreatic adenocarcinoma. Our objectives were to determine whether a link exists between survival and mutations of driver genes in patients with isolated pulmonary metastases. All patients who underwent curative surgery in our institution between 2010 and 2018 were included in the study. From these, we identified patients for whom recurrence was only pulmonary and those with metastases at other sites. KRAS, TP53, CDK2NA, and SMAD4 were analyzed on the primary tumor of patients with pulmonary metastases. Among 233 patients diagnosed with PDAC in our institution over 8 years, 41 (17.5%) underwent curative surgery. Of these, seven (3%) developed isolated pulmonary metastases, 32 developed other metastases, and two did not recur. Median survival was 59 months for patients with isolated lung metastases and 25.3 months for patients with metastases at other sites. An absence of mutations of two driver genes in primary tumors (CDK2NA and SMAD4) was observed in patients with isolated pulmonary metastases. The absence of mutations in the CDK2NA and SMAD4 tumor-suppressor genes in patients with isolated pulmonary metastases contrasts with the commonly observed high rates of driver gene mutations and suggests a link with overall survival."	"K-Ras prenylation as a potential anticancer target. KRAS is one of the most commonly mutated oncogene and a negative predictive factor for a number of targeted therapies. Therefore, the development of targeting strategies against mutant KRAS is urgently needed. One potential strategy involves disruption of K-Ras membrane localization, which is necessary for its proper function. In this review, we summarize the current data about the importance of membrane-anchorage of K-Ras and provide a critical evaluation of this targeting paradigm focusing mainly on prenylation inhibition. Additionally, we performed a RAS mutation-specific analysis of prenylation-related drug sensitivity data from a publicly available database (https://depmap.org/repurposing/) of three classes of prenylation inhibitors: statins, N-bisphosphonates, and farnesyl-transferase inhibitors. We observed significant differences in sensitivity to N-bisphosphonates and farnesyl-transferase inhibitors depending on KRAS mutational status and tissue of origin. These observations emphasize the importance of factors affecting efficacy of prenylation inhibition, like distinct features of different KRAS mutations, tissue-specific mutational patterns, K-Ras turnover, and changes in regulation of prenylation process. Finally, we enlist the factors that might be responsible for the large discrepancy between the outcomes in preclinical and clinical studies including methodological pitfalls, the incomplete understanding of K-Ras protein turnover, and the variation of KRAS dependency in KRAS mutant tumors."	"Myotubularin-related protein 7 activates peroxisome proliferator-activated receptor-gamma. Peroxisome proliferator-activated receptor-gamma (PPARγ) is a transcription factor drugable by agonists approved for treatment of type 2 diabetes, but also inhibits carcinogenesis and cell proliferation in vivo. Activating mutations in the Kirsten rat sarcoma viral oncogene homologue (KRAS) gene mitigate these beneficial effects by promoting a negative feedback-loop comprising extracellular signal-regulated kinase 1/2 (ERK1/2) and mitogen-activated kinase kinase 1/2 (MEK1/2)-dependent inactivation of PPARγ. To overcome this inhibitory mechanism, we searched for novel post-translational regulators of PPARγ. Phosphoinositide phosphatase Myotubularin-Related-Protein-7 (MTMR7) was identified as cytosolic interaction partner of PPARγ. Synthetic peptides were designed resembling the regulatory coiled-coil (CC) domain of MTMR7, and their activities studied in human cancer cell lines and C57BL6/J mice. MTMR7 formed a complex with PPARγ and increased its transcriptional activity by inhibiting ERK1/2-dependent phosphorylation of PPARγ. MTMR7-CC peptides mimicked PPARγ-activation in vitro and in vivo due to LXXLL motifs in the CC domain. Molecular dynamics simulations and docking predicted that peptides interact with the steroid receptor coactivator 1 (SRC1)-binding site of PPARγ. Thus, MTMR7 is a positive regulator of PPARγ, and its mimicry by synthetic peptides overcomes inhibitory mechanisms active in cancer cells possibly contributing to the failure of clinical studies targeting PPARγ."	"Phase angle, body mass index and KRAS status of metastatic colorectal cancer in response to chemotherapy with and without target therapy: clinical impact and survival. KRAS mutations are associated with colorectal cancer survival whereas the role of body mass index (BMI) is less defined. Phase angle, which is more an indicator of cell integrity also has not been studied as prognostic and predictive factor. We evaluated the association between BMI, phase angle and colorectal cancer overall survival (OS), by KRAS mutation status and other prognostic for metastatic colorectal cancer. This prospective study included 89 patients diagnosed with metastatic colorectal cancer in oncology and pathology departments. BMI and phase angle alpha were reported from the TANITA MC-780U mutifrequency segmental body composition analyzer at presentation at our department. KRAS mutation status was analyzed. Multivariate analysis was estimated from Cox proportional hazards models. High phase angle which indicated proper cell integrity was associated with good performance status, low T stage, low fat percent and high BMI. Overall response was statistically significant with left sided colon cancer and high BMI. On multivariate analysis, the factors maintaining statistical significance with OS were KRAS and overall response. High BMI was associated with higher OS in both mutated and wild groups without statistical significance. As regard progression-free survival (PFS), surgery, T stage, and lymphovascular invasion maintained statistical significance on multivariate analysis. High phase angle was associated with improved performance status. High BMI was associated with improved OS in all KRAS subgroups."	"A novel sensitive detection method for DNA methylation in circulating free DNA of pancreatic cancer. Despite recent advances in clinical treatment, pancreatic cancer remains a highly lethal malignancy. In order to improve the survival rate of patients with pancreatic cancer, the development of non-invasive diagnostic methods using effective biomarkers is urgently needed. Here, we developed a highly sensitive method to detect DNA methylation in cell-free (cf)DNA samples based on the enrichment of methyl-CpG binding (MBD) protein coupled with a digital PCR method (MBD-ddPCR). Five DNA methylation markers for the diagnosis of pancreatic cancer were identified through DNA methylation microarray analysis in 37 pancreatic cancers. The sensitivity and specificity of the five markers were validated in another independent cohort of pancreatic cancers (100% and 100%, respectively; n = 46) as well as in The Cancer Genome Atlas data set (96% and 90%, respectively; n = 137). MBD-ddPCR analysis revealed that DNA methylation in at least one of the five markers was detected in 23 (49%) samples of cfDNA from 47 patients with pancreatic cancer. Further, a combination of DNA methylation markers and the KRAS mutation status improved the diagnostic capability of this method (sensitivity and specificity, 68% and 86%, respectively). Genome-wide MBD-sequencing analysis in cancer tissues and corresponding cfDNA revealed that more than 80% of methylated regions were overlapping; DNA methylation profiles of cancerous tissues and cfDNA significantly correlated with each other (R = 0.97). Our data indicate that newly developed MBD-ddPCR is a sensitive method to detect cfDNA methylation and that using five marker genes plus KRAS mutations may be useful for the detection of pancreatic cancers."	"Molecular Genetic Features of Primary Nonurachal Enteric-type Adenocarcinoma, Urachal Adenocarcinoma, Mucinous Adenocarcinoma, and Intestinal Metaplasia/Adenoma: Review of the Literature and Next-generation Sequencing Study. The diagnosis of primary adenocarcinoma of the urinary bladder may be challenging in routine practice. These tumors may morphologically and immunohistochemically overlap with urachal adenocarcinoma and colorectal adenocarcinoma. Further, their genetic background is poorly understood. We systematically searched the PubMed database for results of complex genetic evaluation of primary bladder adenocarcinoma subtypes. Subsequently, we designed our own series of bladder lesions. We evaluated 36 cases: 16 primary enteric-type adenocarcinomas, 7 urachal enteric adenocarcinomas, 3 primary mucinous/colloid adenocarcinomas, and 10 intestinal-type metaplasia/villous adenoma. Detailed clinical data were collected, and all cases were examined using targeted next-generation sequencing. On the basis of the literature, the first mutated gene in these tumors was reported to be KRAS in 11.3% of cases, followed by TERT promoter mutations in 28.5%. In addition to KRAS and TERT, other genes were also found to be frequently mutated in primary bladder adenocarcinoma, including TP53, PIK3CA, CTNNB1, APC, FBXW7, IDH2, and RB1. In our series, the most frequent gene mutations in primary enteric-type adenocarcinomas were as follows: TP53 (56%); BRCA2, KMT2B (both 33%); NOTCH2, KDR, ARID1B, POLE, PTEN, KRAS (all 28%); in urachal enteric adenocarcinoma they were as follows: TP53 (86%); PTEN, NOTCH (both 43%); in primary mucinous/colloid adenocarcinomas they were as follows: KRAS, GRIN2A, AURKB (all 67%); and, in intestinal-type metaplasia/villous adenoma, they were as follows: APC, PRKDC (both 60%); ROS1, ATM, KMT2D (all 50%). No specific mutational pattern was identified using cluster analysis for any of the groups. Herein, we describe the pathologic features and immunohistochemical staining patterns traditionally used in the differential diagnoses of glandular lesions of the bladder in routine surgical pathology. We outline the mutational landscape of these lesions as an aggregate of published data with additional data from our cohort. Although diagnostically not discriminatory, we document that the most common genetic alterations shared between these glandular neoplasms include TP53, APC (in the Wnt pathway), and KRAS (in the MAPK pathway) mutations."	"The landscape of gene mutations and clinical significance of tumor mutation burden in patients with soft tissue sarcoma who underwent surgical resection and received conventional adjuvant therapy. The aim of this study was to evaluate the landscape of gene mutations and the clinical significance of tumor mutation burden (TMB) in patients with soft tissue sarcoma who underwent surgical resection and received conventional adjuvant therapy. A total of 68 patients with soft tissue sarcoma were included. Postoperative tumor tissue specimens from the patients were collected for DNA extraction. Targeted next-generation sequencing of cancer-relevant genes was performed for the detection of gene mutations and the analysis of TMB. Univariate analysis between TMB status and prognosis was carried out using the Kaplan-Meier survival analysis, and multivariate analysis was adjusted by the Cox regression model. No specific genetic mutations associated with soft tissue sarcoma were found. The mutation frequency of TP53, PIK3C2G, NCOR1, and KRAS of the 68 patients with soft tissue sarcoma were observed in 19 cases (27.94%), 15 cases (22.06%), 14 cases (20.59%), and 14 cases (20.59%), respectively. With regard to the analysis of TMB, the overall TMB of the 68 patients with soft tissue sarcoma was relatively low (median: 2.05 per Mb (range: 0∼15.5 per Mb)). Subsequently, TMB status was divided into TMB-Low and TMB-Middle according to the median TMB. Patients with TMB-Low and TMB-Middle were 37 cases (54.41%) and 31 cases (45.59%), respectively. Overall survival analysis indicated that the median overall survival of patients with TMB-Low and TMB-Middle was not reached, and 4.5 years, respectively (P=0.015). This study characterizes the genetic background of patients with STS soft tissue sarcoma. The TMB was of clinical significance for patients with soft tissue sarcoma who underwent surgical resection and received conventional adjuvant therapy."	"Prognostic value of molecular biomarkers in patients with metastatic colorectal cancer: a real-world study. Outcomes for patients with metastatic colorectal cancer (mCRC) have been improved by the identification of biomarkers predictive and prognostic of clinical outcome. The present retrospective analysis was undertaken to assess the utility of key biomarkers and clinical parameters in predicting outcomes in Spanish patients with mCRC. We retrospectively analyzed tumor samples from a series of patients aged &gt; 18 years with mCRC who were treated at the Hospital General Universitario Gregorio Marañón Spain. Real-time polymerase chain reaction was used to detect KRAS, NRAS, BRAF, and PIK3CA mutations. The key outcome of interest was overall survival (OS). Survival curves were estimated using the Kaplan-Meier method and stratified by the variables of greatest clinical interest. Differences were tested using the log-rank test. Median OS in the overall population was 24.4 months. Triple WT patients (WT KRAS, NRAS, and BRAF) and quadruple WT patients (WT KRAS, NRAS, BRAF, and PIK3CA) had significantly better OS than those who did not have triple or quadruple WT tumors. OS was significantly better in patients with left- vs. right-sided tumors, patients with resected primary tumors and metastases vs. those without resection, and patients with isolated hepatic and isolated pulmonary metastases. This retrospective, observational study has confirmed the prognostic value of the location and resection status of the primary tumor and metastases in Spanish patients with mCRC. Triple WT status, in particular, was prognostic in this patient population, with PIK3CA adding to the prognostic value in the quadruple WT population."	"Detection of Colorectal Cancer and Advanced Adenoma by Liquid Biopsy (Decalib Study): The ddPCR Challenge. In most countries, participation in colorectal cancer (CRC) screening programs with the immunological fecal occult blood test (iFOBT) is low. Mutations of RAS and BRAF occur early in colorectal carcinogenesis and &quot;liquid biopsy&quot; allows detection of mutated circulating tumor DNA (ctDNA). This prospective study aims to evaluate the performance of RAS and BRAF-mutated ctDNA in detecting CRC and advanced adenomas (AA). One hundred and thirty patients who underwent colonoscopy for suspicion of colorectal lesion were included and divided into four groups: 20 CRC, 39 AA, 31 non-advanced adenoma and/or hyperplastic polyp(s) (NAA) and 40 with no lesion. Mutated ctDNA was analyzed by droplet digital PCR. ctDNA was detected in 45.0% of CRC, in 2.6% of AA and none of the NAA and &quot;no-lesion&quot; groups. All patients with stage II to IV mutated CRC had detectable ctDNA (n = 8/8). Among the mutated AA, only one patient had detectable ctDNA (4.3%), maybe due to limited technical sensitivity or to a low rate of ctDNA or even the absence ctDNA in plasma. Specificity and sensitivity of KRAS- and BRAF-mutated ctDNA for the detection of all CRC and AA were 100% and 16.9%, respectively. ctDNA had high sensitivity in detection of advanced mutated CRC but was unable to sensitively detect AA. ctDNA analysis was easy to perform and readily accepted by the population but requires combination with other circulating biomarkers before replacing iFOBT."	"Synergistic effects of piperlongumine and gemcitabine against KRAS mutant lung cancer. To determine the combined efficacy of piperlongumine and gemcitabine for treatment of KRAS mutant lung cancer. The cell growth inhibition of piperlongumine, gemcitabine, and piperlongumine plus gemcitabine was measured by Cell Counting Kit‑8 assay and the combination index was calculated. In addition, the combined effects of piperlongumine and gemcitabine on cell apoptosis, reactive oxygen species (ROS) contents, and microtubule-associated protein 1 light chain 3B (LC3B) expression were examined. Piperlongumine increased ROS contents and LC3B-II expression. Following the combined treatment with piperlongumine and 10 mM N-acetyl-L-cysteine (NAC), intracellular ROS and cell viability returned to normal levels, and the expression of LC3B-II decreased to the predose level. Gemcitabine also induced cell apoptosis, increased ROS contents, and LC3B-II expression. The combination of piperlongumine with gemcitabine exhibited a synergetic anticancer activity with the combination index &lt;1. The combined application of gemcitabine and piperlongumine yielded synergistic effects on cell apoptosis, but failed to synergistically increase ROS levels and LC3B-II expression. Combination therapy with piperlongumine and gemcitabine is a promising treatment option for KRAS mutant lung cancer."	"A Multicenter Phase 2 Trial to Evaluate the Efficacy of mFOLFOX6 + Cetuximab as Induction Chemotherapy to Achieve R0 Surgical Resection for Advanced Colorectal Liver Metastases (NEXTO Trial). The effect of cetuximab plus mFOLFOX on downsizing of the tumors for curative resection has yet to be assessed for patients with advanced colorectal liver metastases (CRLMs). This study aimed to assess the oncologic benefit of cetuximab plus mFOLFOX for wild-type KRAS patients with advanced CRLMs. In this multicenter phase 2 trial, patients with technically unresectable tumor and/or five or more CRLMs harboring wild-type KRAS were treated with mFOLFOX plus cetuximab. The patients were assessed for resectability after 4 treatments, and then every 2 months up to 12 treatments. Patients with resectable disease were offered surgery after a waiting period of 1 month. The primary end point of the study was the R0 resection rate. The secondary end points were safety, progression-free survival (PFS), and overall survival (OS). The study is registered with the University Hospital Medical Information Network-Clinical Trials Registry Clinical Trials Registry (no. C000007923). Between 2012 and 2015, 50 patients from 13 centers were enrolled in this trial. Two patients were excluded because they had not received induction therapy. The 48 patients had a complete response rate of 0% and a partial response rate of 64.6%. For 26 R0 resections (54.2%) and 5 R1 resections (10.4%), no mortality occurred. During a median follow-up period of 31 months, the median OS for all the patients was calculated to be 41 months (95% confidence interval, 28-not reached). The 3-year OS rate was 59%. For patients with advanced CRLMs harboring wild-type KRAS, cetuximab administered in combination with mFOLFOX yields high response rates, leading to significantly high R0 resection rates and favorable prognoses."	"PAWI-2 overcomes tumor stemness and drug resistance via cell cycle arrest in integrin β3-KRAS-dependent pancreatic cancer stem cells. Today, pancreatic cancer (PC) remains a major health problem in the US. The fact that cancer stem cells (CSCs) become enriched in humans following anti-cancer therapy implicates CSCs as key contributors to tumor dormancy, metastasis, and relapse in PC. A highly validated CSC model (FGβ3 cells) was used to test a novel compound (PAWI-2) to eradicate CSCs. Compared to parental bulk FG cells, PAWI-2 showed greater potency to inhibit cell viability and self-renewal capacity of FGβ3 cells. For FGβ3 cells, dysregulated integrin β3-KRAS signaling drives tumor progression. PAWI-2 inhibited β3-KRAS signaling independent of KRAS. This is clinically relevant. PAWI-2 targeted the downstream TBK1 phosphorylation cascade that was negatively regulated by optineurin phosphorylation via a feedback mechanism. This was confirmed by TBK1 genetic knockdown or co-treatment with TBK1-specific inhibitor (MRT67307). PAWI-2 also overcame erlotinib (an EGFR inhibitor) resistance in FGβ3 cells more potently than bortezomib. In the proposed working model, optineurin acts as a key regulator to link inhibition of KRAS signaling and cell cycle arrest (G2/M). The findings show PAWI-2 is a new approach to reverse tumor stemness that resensitizes CSC tumors to drug inhibition."	"Novel, provable algorithms for efficient ensemble-based computational protein design and their application to the redesign of the c-Raf-RBD:KRas protein-protein interface. The K* algorithm provably approximates partition functions for a set of states (e.g., protein, ligand, and protein-ligand complex) to a user-specified accuracy ε. Often, reaching an ε-approximation for a particular set of partition functions takes a prohibitive amount of time and space. To alleviate some of this cost, we introduce two new algorithms into the osprey suite for protein design: fries, a Fast Removal of Inadequately Energied Sequences, and EWAK*, an Energy Window Approximation to K*. fries pre-processes the sequence space to limit a design to only the most stable, energetically favorable sequence possibilities. EWAK* then takes this pruned sequence space as input and, using a user-specified energy window, calculates K* scores using the lowest energy conformations. We expect fries/EWAK* to be most useful in cases where there are many unstable sequences in the design sequence space and when users are satisfied with enumerating the low-energy ensemble of conformations. In combination, these algorithms provably retain calculational accuracy while limiting the input sequence space and the conformations included in each partition function calculation to only the most energetically favorable, effectively reducing runtime while still enriching for desirable sequences. This combined approach led to significant speed-ups compared to the previous state-of-the-art multi-sequence algorithm, BBK*, while maintaining its efficiency and accuracy, which we show across 40 different protein systems and a total of 2,826 protein design problems. Additionally, as a proof of concept, we used these new algorithms to redesign the protein-protein interface (PPI) of the c-Raf-RBD:KRas complex. The Ras-binding domain of the protein kinase c-Raf (c-Raf-RBD) is the tightest known binder of KRas, a protein implicated in difficult-to-treat cancers. fries/EWAK* accurately retrospectively predicted the effect of 41 different sets of mutations in the PPI of the c-Raf-RBD:KRas complex. Notably, these mutations include mutations whose effect had previously been incorrectly predicted using other computational methods. Next, we used fries/EWAK* for prospective design and discovered a novel point mutation that improves binding of c-Raf-RBD to KRas in its active, GTP-bound state (KRasGTP). We combined this new mutation with two previously reported mutations (which were highly-ranked by osprey) to create a new variant of c-Raf-RBD, c-Raf-RBD(RKY). fries/EWAK* in osprey computationally predicted that this new variant binds even more tightly than the previous best-binding variant, c-Raf-RBD(RK). We measured the binding affinity of c-Raf-RBD(RKY) using a bio-layer interferometry (BLI) assay, and found that this new variant exhibits single-digit nanomolar affinity for KRasGTP, confirming the computational predictions made with fries/EWAK*. This new variant binds roughly five times more tightly than the previous best known binder and roughly 36 times more tightly than the design starting point (wild-type c-Raf-RBD). This study steps through the advancement and development of computational protein design by presenting theory, new algorithms, accurate retrospective designs, new prospective designs, and biochemical validation."	"Prediction of therapeutic outcome and survival in a transgenic mouse model of pancreatic ductal adenocarcinoma treated with dendritic cell vaccination or CDK inhibitor using MRI texture: a feasibility study. There is a lack of a well-established approach for assessment of early treatment outcomes for modern therapies for pancreatic ductal adenocarcinoma (PDAC) e.g. dinaciclib or dendritic cell (DC) vaccination. Here, we developed multivariate models using MRI texture features to detect treatment effects following dinaciclib drug or DC vaccine therapy in a transgenic mouse model of PDAC including 21 LSL-Kras<sup>G12D</sup> ; LSL-Trp53<sup>R172H</sup> ; Pdx-1-Cre (KPC) mice used as untreated control subjects (n=8) or treated with dinaciclib (n=7) or DC vaccine (n=6). Support vector machines (SVM) technique was performed to build a linear classifier with three variables for detection of tumor tissue changes following drug or vaccine treatments. Besides, multivariate regression models were generated with five variables to predict survival behavior and histopathological tumor markers (Fibrosis, CK19, and Ki67). The diagnostic performance was evaluated using accuracy, area under the receiver operating characteristic curve (AUC) and decision curve analyses. The regression models were evaluated with adjusted r-squared (Radj<sup>2</sup>). SVM classifier successfully distinguished changes in tumor tissue with an accuracy of 95.24% and AUC of 0.93. The multivariate models generated with five variables were strongly associated with histopathological tumor markers, fibrosis (Radj<sup>2</sup>=0.82, P&lt;0.001), CK19 (Radj<sup>2</sup>=0.92, P&lt;0.001) and Ki67 (Radj<sup>2</sup>=0.97, P&lt;0.001). Furthermore, the multivariate regression model successfully predicted survival of KPC mice by interpreting tumor characteristics from MRI data (Radj<sup>2</sup>=0.91, P&lt;0.001). The results demonstrated that MRI texture features had great potential to generate diagnosis and prognosis models for monitoring early treatment response following dinaciclib drug or DC vaccine treatment and also predicting histopathological tumor markers and long-term clinical outcomes."	"Overexpression of EP300-interacting inhibitor of differentiation 3 predicts poor prognosis in patients with glioblastoma multiforme. EP300-interacting inhibitor of differentiation 3 (EID3) is a member of the IED family and has been associated with tumorigenesis and tumor development in different cancer types. However, the role of EID3 in glioblastoma multiforme (GBM) prognosis is not clear. Whole transcriptome sequencing data of 249 and 149 GBM patients were collected from the Chinese Glioma Genome Atlas (CGGA) and The Cancer Genome Atlas (TCGA) database respectively. The correlation between EID3 expression and overall survival (OS)/clinical pathologic features of GBM patients was investigated. Based on the Wilcoxon rank-sum test, EID3 expression in GBM tissues was significantly lower than in normal brain tissues (P &lt; 0.001), and significantly higher than in LGG (low-grade glioma) (P &lt; 0.001).There was a significant correlation between high EID3 expression with poor OS in CGGA (P = 0.049) and TCGA data (P = 0.024). Gene set enrichment analysis (GSEA) data analysis revealed a significant difference (FDR &lt; 0.25, NOM p-value &lt; 0.05) in the enrichment of MSigDB Collection (h.all.v6.2.symbols.gmt). A total of eight enriched pathways were identified in the high EID3 expression group, including Myc Targets V1, Kras signaling DN, and DNA repair pathways. Multivariate Cox regression analysis indicated that high expression of EID3 correlated with poor OS (P = 0.032, HR = 1.41, CI: 1.03-1.90). We conclude that EID3 could serve as an independent factor for predicting the prognosis of patients with GBM. Moreover, it is associated with GBM development through the regulation of the Myc Targets, Kras signaling DN, and DNA repair pathways."	"Molecular analysis in cytological samples obtained by endobronchial or oesophageal ultrasound guided needle aspiration in non-small cell lung cancer. Cytological samples obtained by endobronchial ultrasound (EBUS) are capital for diagnosis, staging and molecular profile in non-small cell lung carcinoma (NSCLC). To assess the success rate of complete, partial and individual of molecular analysis in samples obtained by EBUS-guided transbronchial needle aspiration (TBNA) and/or by oesophageal ultrasound-guided fine needle aspiration with an echobronchoscope (EUS-B-FNA) in patients with NSCLC. Prospective study including 90 patients with non-squamous NSCLC, or non-smoking squamous. Cytological samples were classified into two groups. Group 1: PEN membrane slide and/or cell blocks for the determination of mutations of EGFR, KRAS, ERBB2 and BRAF. Group 2: silane coated slides or cell blocks for rearrangements of ALK, ROS1 and MET amplification. The success rate was 78.6% for 4 molecular alterations (EGFR, KRAS, ALK and ROS1), and 44% for 7 determinations. The individual success rate for EGFR was 97%, KRAS 96.3%, ALK 85%, ROS1 82.3%, ERBB2 71.4%, BRAF 67.7% and MET 81.1%. There were no significant differences (p=0.489) in the number of molecular analyses (1-3 vs. 4) in group 1, depending on the types of samples (cell block vs. PEN membrane slide vs. cell block and PEN membrane slide). In patients with NSCLC, the cytological material obtained by ultrasound-guided needle aspiration is sufficient for individual and partial molecular analysis in the vast majority of cases. Membrane slides such as cell blocks are valid samples for molecular analysis."	"A first case report of clinical response to targeted therapy in a patient with primary myoepithelial carcinoma of the lung harboring EGFR exon 19 deletion. Primary myoepithelial carcinoma of the lung is a rare subtype in lung cancer. Comprehensive molecular profiling of myoepithelial carcinoma of the lung is absent, neither was clinical evidence of targeted therapy available for this disease. Therefore, the optimal treatment regimen of this tumor needs to be established. Here we present a case of a 68-year-old patient with stage IVB primary myoepithelial carcinoma of the lung who harbored EGFR exon 19 deletion and KRAS mutation and underwent icotinib targeted therapy, achieving partial response (PR) with progression free survival (PFS) of 3 months. To our knowledge, this study describes the first documented case of primary myoepithelial carcinoma lung cancer patient harboring EGFR exon 19 deletion and KRAS mutation, and showed clinical efficacy of epidermal growth factor receptor tyrosine kinase inhibitors (EGFR-TKI) treatment in this patient."	"Clonal Origin Evaluated by Trunk and Branching Drivers and Prevalence of Mutations in Multiple Lung Tumor Nodules. Differentiation between intrapulmonary metastasis (IPM) and multiple primary lung cancers (MPLC) in patients with synchronous or metachronous lung tumor nodules is critical but challenging. We proposed an algorithm to evaluate clonal origin based on trunk (initiating) versus branching drivers and the prevalence of mutations in lung adenocarcinomas. Driver mutations were examined using next-generation sequencing in five trunk driver genes (BRAF, EGFR, ERBB2, KRAS, and NRAS) and three branching driver genes (ATK1, PIK3CA, and TP53). Mutational profiling supported same clonality and likely same clonality, respectively, in 39 and 14 of 66 pairs of specimens with known identical clonal origin. Discordance of TP53 mutations (branching drivers) was observed in three pairs. Subsequent analyses of 30 pairs of synchronous or metachronous lung tumor nodules revealed different clonality and likely different clonality in 17 and 2 pairs, respectively, including three pairs with similar histomorphology; same clonality and likely same clonality in three and five pairs, respectively, including two pairs with different histomorphology; and inconclusive or noninformative results in three pairs. While discordance of trunk drivers indicated MPLC in patients with synchronous or metachronous lung tumor nodules, discordance of branching drivers did not exclude IPM. Concordance of uncommon drivers supported IPM, whereas concordance of common drivers did not exclude MPLC. Additional recommendations from official organizations are needed to guide applications of molecular markers in defining clonality of multiple lung tumor nodules."	"Serrated adenomas with a BRAF mutation in a young patient with familial adenomatous polyposis. Familial adenomatous polyposis (FAP) is typically characterized by more than hundred adenomatous polyps in the colorectum, caused by germline APC mutation. A small proportion of the polyps progress to colorectal adenocarcinoma via adenoma-carcinoma sequence. Serrated lesions and polyps, characterized by a serrated architecture of the epithelium, are noted for two types of genetic pathways in colorectal carcinogenesis. BRAF and KRAS mutations are observed in the serrated pathway. We report a young FAP patient with rectal serrated adenomas that were removed by colonoscopic procedures. The histological features with villiform projections and slit-like serration indicated traditional serrated adenoma. A genetic examination with next-generation sequencing showed a somatic BRAF mutation in the serrated adenoma and APC mutations in the tubular adenomas. His germline mutation was found at APC p.Q1928fs*. Serrated adenomas with dual genetic alterations in a FAP patient may be associated with colorectal carcinogenesis and should be considered a target lesion for treatment. The present study demonstrated the malignant potential of serrated adenoma in a FAP patient."	"A mouse model for peritoneal metastases of colorectal origin recapitulates patient heterogeneity. The peritoneum is a common site of dissemination in patients with colorectal cancer. In order to identify high-risk patients and improve therapeutic strategies, a better understanding of the peritoneal dissemination process and the reasons behind the high heterogeneity that is observed between patients is required. We aimed to create a murine model to further elucidate the process of peritoneal dissemination and to provide an experimental platform for further studies. We developed an in vivo model to assess patterns of peritoneal dissemination of 15 colorectal cancer cell lines. Immune deficient mice were intraperitoneally injected with 10,000 human colorectal cancer cells. Ten weeks after injection, or earlier in case of severe discomfort, the mice were sacrificed followed by dissection including assessment of the outgrowth and localization of peritoneal metastases. Furthermore, using a color-based clonal tracing method, the clonal dynamics of peritoneal nodules were observed. The different cell lines showed great variation in the extent of peritoneal outgrowth, ranging from no outgrowth to localized or widespread outgrowth of cells. An association between KRAS pathway activation and the formation of peritoneal metastases was identified. Also, cell line specific tumor location preferences were observed, with similar patterns of outgrowth in anatomically related areas. Furthermore, different patterns regarding clonal dynamics were found, varying from monoclonal or polyclonal outgrowth to extensively dispersed polyclonal lesions. The established murine model recapitulates heterogeneity as observed in human peritoneal metastases, which makes it a suitable platform for future (intervention) studies."	"Anti-Tumor Effects of Biomimetic Sulfated Glycosaminoglycans on Lung Adenocarcinoma Cells in 2D and 3D In Vitro Models. Lung cancer development relies on cell proliferation and migration, which in turn requires interaction with extracellular matrix (ECM) components such as glycosaminoglycans (GAGs). The mechanisms through which GAGs regulate cancer cell functions are not fully understood but they are, in part, mediated by controlled interactions with cytokines and growth factors (GFs). In order to mechanistically understand the effect of the degree of sulfation (DS) of GAGs on lung adenocarcinoma (LUAD) cells, we synthesized sulfated alginate (AlgSulf) as sulfated GAG mimics with DS = 0.0, 0.8, 2.0, and 2.7. Human (H1792) and mouse (MDA-F471) LUAD cell lines were treated with AlgSulf of various DSs at two concentrations 10 and 100 µg/mL and their anti-tumor properties were assessed using 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT), trypan blue exclusion, and wound healing assays for 2D models and sphere formation assay for the 3D model. The proliferation and number of live MDA-F471 cells at the concentration of 100 µg/mL decreased significantly with the increase in the DS of biomimetic GAGs. In addition, the increase in the DS of biomimetic GAGs decreased cell migration (p &lt; 0.001 for DS = 2.0 and 2.7 compared to control) and decreased the diameter and number of spheres formed (p &lt; 0.001). The increased DS of biomimetic GAGs attenuated the expression of cancer stem cell (CSC)/progenitor markers in the 3D cultures. In conclusion, GAG-mimetic AlgSulf with increased DS exhibit enhanced anti-proliferative and migratory properties while also reducing growth of KRAS-mutant LUAD spheres in vitro. We suggest that these anti-tumor effects by GAG-mimetic AlgSulf are possibly due to differential binding to GFs and consequential decreased cell stemness. AlgSulf may be suitable for applications in cancer therapy after further in vivo validation."	"A subset of flavaglines inhibits KRAS nanoclustering and activation. The RAS oncogenes are frequently mutated in human cancers and among the three isoforms (KRAS, HRAS and NRAS), KRAS is the most frequently mutated oncogene. Here, we demonstrate that a subset of flavaglines, a class of natural anti-tumour drugs and chemical ligands of prohibitins, inhibit RAS GTP loading and oncogene activation in cells at nanomolar concentrations. Treatment with rocaglamide, the first discovered flavagline, inhibited the nanoclustering of KRAS, but not HRAS and NRAS, at specific phospholipid-enriched plasma membrane domains. We further demonstrate that plasma membrane-associated prohibitins directly interact with KRAS, phosphatidylserine and phosphatidic acid, and these interactions are disrupted by rocaglamide but not by the structurally related flavagline FL1. Depletion of prohibitin-1 phenocopied the rocaglamide-mediated effects on KRAS activation and stability. We also demonstrate that flavaglines inhibit the oncogenic growth of KRAS-mutated cells and that treatment with rocaglamide reduces non-small-cell lung carcinoma (NSCLC) tumour nodules in autochthonous KRAS-driven mouse models without severe side effects. Our data suggest that it will be promising to further develop flavagline derivatives as specific KRAS inhibitors for clinical applications."	"The Addition of EGFR Inhibitors in Neoadjuvant Therapy for KRAS-Wild Type Locally Advanced Rectal Cancer Patients: A Systematic Review and Meta-Analysis. Patients with locally advanced rectal cancer (LARC) are at higher risk of local and distant recurrence and are thus more vulnerable to metastatic diseases. Neoadjuvant chemoradiotherapy (nCRT) and subsequent curative resection with total mesorectal excision (TME) followed by adjuvant chemotherapy have been recommended by the National Comprehensive Cancer Network (NCCN) guidelines as standard of care for LARC patients. However, the efficacy of the addition of epidermal growth factor receptor (EGFR) inhibitors in kirsten rat sarcoma viral oncogene (KRAS)-wild type LARC patients remains uncertain. PubMed, Embase, and Web of Science were searched to retrieve records on the application of EGFR inhibitors in a neoadjuvant setting for LARC patients. pCR was used as surrogate endpoint to perform data synthesis in a single-arm setting. Ten cohorts covering 540 subjects were eligible in this systematic review. The pooled pCR rate for EGFR inhibitors was 15% (95% confidence interval (95% CI), 11-20%; I<sup>2</sup> = 55.2%); the pooled estimates of Grade 3/4 diarrhea, Grade 3/4 hand-foot syndrome, Grade 3/4 acneiform rash were 17% (95% CI, 4-34%; I<sup>2</sup> = 93.3%), 2% (95% CI, 0-5%; I<sup>2</sup> = 13.7%), and 15% (95% CI, 9-22%; I<sup>2</sup> = 65.4%), respectively. The addition of EGFR inhibitors in the nCRT for KRAS-wild type LARC patients provides comparable efficacy and acceptable safety. However, the results should be interpreted cautiously due to the small amount of relevant data and need further confirmation by more future studies."	"An essential role for Argonaute 2 in EGFR-KRAS signaling in pancreatic cancer development. Both KRAS and EGFR are essential mediators of pancreatic cancer development and interact with Argonaute 2 (AGO2) to perturb its function. Here, in a mouse model of mutant KRAS-driven pancreatic cancer, loss of AGO2 allows precursor lesion (PanIN) formation yet prevents progression to pancreatic ductal adenocarcinoma (PDAC). Precursor lesions with AGO2 ablation undergo oncogene-induced senescence with altered microRNA expression and EGFR/RAS signaling, bypassed by loss of p53. In mouse and human pancreatic tissues, PDAC progression is associated with increased plasma membrane localization of RAS/AGO2. Furthermore, phosphorylation of AGO2<sup>Y393</sup> disrupts both the wild-type and oncogenic KRAS-AGO2 interaction, albeit under different conditions. ARS-1620 (G12C-specific inhibitor) disrupts the KRAS<sup>G12C</sup>-AGO2 interaction, suggesting that the interaction is targetable. Altogether, our study supports a biphasic model of pancreatic cancer development: an AGO2-independent early phase of PanIN formation reliant on EGFR-RAS signaling, and an AGO2-dependent phase wherein the mutant KRAS-AGO2 interaction is critical for PDAC progression."	"Detection of Immunotherapeutic Response in a Transgenic Mouse Model of Pancreatic Ductal Adenocarcinoma Using Multiparametric MRI Radiomics: A Preliminary Investigation. To develop classification and regression models interpreting tumor characteristics obtained from structural (T1w and T2w) magnetic resonance imaging (MRI) data for early detection of dendritic cell (DC) vaccine treatment effects and prediction of long-term outcomes for LSL-Kras<sup>G12D</sup>; LSL-Trp53<sup>R172H</sup>; Pdx-1-Cre (KPC) transgenic mice model of pancreatic ductal adenocarcinoma. Eight mice were treated with DC vaccine for 3 weeks while eight KPC mice were used as untreated control subjects. The reproducibility of the computed 264 features was evaluated using the intraclass correlation coefficient. Key variables were determined using a three-step feature selection approach. Support vector machines classifiers were generated to differentiate treatment-related changes on tumor tissue following first- and third weeks of the DC vaccine therapy. The multivariable regression models were generated to predict overall survival (OS) and histological tumor markers of KPC mice using quantitative features. The quantitative features computed from T1w MRI data have better reproducibility than T2w MRI features. The KPC mice in treatment and control groups were differentiated with a longitudinally increasing accuracy (first- and third weeks: 87.5% and 93.75%). The linear regression model generated with five features of T1w MRI data predicted OS with a root-mean-squared error (RMSE) &lt;6 days. The proposed multivariate regression models predicted histological tumor markers with relative error &lt;2.5% for fibrosis percentage (RMSE: 0.414), CK19<sup>+</sup> area (RMSE: 0.027), and Ki67<sup>+</sup> cells (RMSE: 0.190). Our results demonstrated that proposed models generated with quantitative MRI features can be used to detect early treatment-related changes in tumor tissue and predict OS of KPC mice following DC vaccination."	"Expression profiling of small intestinal neuroendocrine tumors identified pathways and gene networks linked to tumorigenesis and metastasis. Small intestinal neuroendocrine tumors (SI-NETs) remain the most common subset in gastrointestinal neuroendocrine tumors and featured by aggressiveness. However, the molecular feature of SI-NETs remains largely unclear with key genes and pathways yet to be identified. The gene expression profile GSE65286 was retrieved for analysis. Artificial neural networks (ANNs) were constructed for the hub genes network models. A total of 613 differentially expressed genes (DEGs) were identified between normal (N) and primary tumor (T) groups, whereas 61 DEGs were identified between T and liver metastases (LM) groups. The top Kyoto Encyclopedia of Genes and Genomes (KEGG) pathways for the DEGs of N versus T were fat digestion and absorption pathway. For T versus LM the top KEGG pathways were complement and coagulation. In gene set enrichment analysis (GSEA), five gene sets, including Notch signaling, inflammatory response, coagulation, KRAS signaling, and allograft rejection were significantly enriched in the T group. The hub genes in the DEGs of T versus LM included albumin, fibrinogen gamma chain, alpha 2-HS glycoprotein, transferrin and GC, vitamin D binding protein. A distinct correlational alteration of hub genes was observed between T and LM groups. In ANN analysis, ALB and TF were the top predictors of metastasis. Moreover, the expression of ALB≤ showed the highest support to T whereas ALB&gt;15.97 supports LM. TF≤7.54 showed the highest negative correlation to the T. This bioinformatics analysis provided insights on potential key pathways and genes networks involved in SI-NETs and established an ANN-based hub gene model for metastatic prediction."	"Selective capture of plasma cell-free tumor DNA on magnetic beads: a sensitive and versatile tool for liquid biopsy. Recently, 'solid tumor biopsies' have been challenged by the emergence of 'liquid biopsies', which are aimed at the isolation and detection of circulating cell-free tumor DNA (ctDNA) in body fluids. Here, we developed and optimized a method for selective capture of ctDNA on magnetic beads (SCC-MAG) for mutation detection in plasma of patients with colorectal cancer (CRC). Blood and tissue samples from 28 CRC patients were included for the detection of KRAS mutations. For the tissue samples, mutation analysis was conducted by high resolution melting (HRM) analysis and sequencing. For the SCC-MAG method, ctDNA was isolated from 200 µl plasma from patients with a mutant KRAS gene. For comparison, ctDNA extraction was carried out using a silica membrane-based method, after which mutations were detected using Intplex allele-specific PCR. The mean ctDNA integrity index in plasma samples of cancer patients was 1.03, comparable with that of silica membrane-derived ctDNA (1.011). Notably, the limit of detection for the SCC-MAG approach was lower than that of the silica membrane method and measured 2.25 pg/ml ctDNA in plasma. Our analyses showed that while the silica membrane-based approach was capable of collecting ctDNA from two out of six CRC patient samples (average Cq 34.23), the SCC-MAG captured ctDNA from all samples with an average Cq of 29.76. We present a robust, reproducible, and highly sensitive method for the analysis of mutation statuses in liquid biopsies. The SCC-MAG method can readily be applied to any nucleic acid target for diagnostic purposes upon careful design of the specific capture probes, and can be multiplexed by several probes to identify multiple targets."	"Molecular Targeting of a BRAF Mutation in Pancreatic Ductal Adenocarcinoma: Case Report and Literature Review. Current standard-of-care treatment for advanced pancreatic ductal adenocarcinoma is mainly based on conventional cytotoxic chemotherapy. Until recently, no randomized clinical trials had shown any clinically meaningful outcome benefit from targeted therapy in this indication. This is in contrast to many other tumor types. The majority of pancreatic tumors are driven by KRAS mutations, which are generally not amenable to targeted therapy. Driving mutations in the BRAF oncogene have proven to be an interesting molecular target in the management of advanced melanoma and colorectal adenocarcinoma and can be found in 3% of patients with advanced pancreatic ductal adenocarcinoma. Here, we report objective tumor response to treatment with the combination of the BRAF inhibitor vemurafenib and the MEK inhibitor cobimetinib in a patient with poorly differentiated, V600E mutant, advanced pancreatic ductal adenocarcinoma."	"Mutation Status and Prognostic Value of KRAS and BRAF in Southeast Iranian Colorectal Cancer Patients: First Report from Southeast of Iran. This study aimed to determine any association of KRAS and BRAF mutations in colorectal cancer with clinicopathological features and overall survival (OS) of Southeast Iranian colorectal cancer (CRC) patients. Overall, KRAS and BRAF status were assessed in 100 Iranian CRC subjects. A hundred consecutive stages I-IV CRC patients, who underwent surgical tumor resection from February 2012 to August 2015, were prospectively attained from three centers and were enrolled in the research. Direct sequencing and real-time PCR methods were used to the detection of KRAS and BRAF mutations, respectively. Logistic regression models were used to detect associations of KRAS and BRAF mutations with clinical/clinicopathological features. Kaplan-Meier model was used to estimate overall survival. In total, KRAS and BRAF mutations were detected in 29 (29%) and 7 (7%) of 100 CRC patients, respectively. BRAF mutations that all comprised V600E and KRAS mutations were found in codon 12, 13, and 61 (72.4%, 20.7 and 6.9%), respectively. In a multivariate analysis, older age (≥ 60) was significantly associated with higher KRAS mutations rate and high BRAF mutation rate was significantly associated with older age (≥ 60) and poorly differentiated tumors. KRAS and BRAF mutant vs. wild type of KRAS and BRAF, 5-year OS was 62.1% vs. 71.8% (p value &gt; 0.05) and 57.1% vs. 67.7% (p value &gt; 0.05), respectively. Mutations were found in both KRAS and BRAF genes in Iranian colorectal cancers patients and were associated with clinical/clinicopathologic features. Our data emphasizes the importance of these molecular features in Iranian CRC patients."	"Transcriptomic silencing as a potential mechanism of treatment resistance. Next-generation sequencing (NGS) has not revealed all the mechanisms underlying resistance to genomically matched drugs. Here, we performed in 1417 tumors whole-exome tumor (somatic)/normal (germline) NGS and whole-transcriptome sequencing, the latter focusing on a clinically oriented 50-gene panel in order to examine transcriptomic silencing of putative driver alterations. In this large-scale study, approximately 13% of the somatic single nucleotide variants (SNVs) were unexpectedly not expressed as RNA; 23% of patients had ≥1 nonexpressed SNV. SNV-bearing genes consistently transcribed were TP53, PIK3CA, and KRAS; those with lower transcription rates were ALK, CSF1R, ERBB4, FLT3, GNAS, HNF1A, KDR, PDGFRA, RET, and SMO. We also determined the frequency of tumor mutations being germline, rather than somatic, in these and an additional 462 tumors with tumor/normal exomes; 33.8% of germline SNVs within the gene panel were rare (not found after filtering through variant information domains) and at risk of being falsely reported as somatic. Both the frequency of silenced variant transcription and the risk of falsely identifying germline mutations as somatic/tumor related are important phenomena. Therefore, transcriptomics is a critical adjunct to genomics when interrogating patient tumors for actionable alterations, because, without expression of the target aberrations, there will likely be therapeutic resistance."	"KRAS mutations in brown tumor of the jaws in hyperparathyroidism. Brown tumors are giant cell-rich lesions that result from abnormal bone metabolism in hyperparathyroidism, one of the most common endocrine disorders worldwide. Brown tumors occasionally affect the jaws and, despite well-known clinical and microscopic features, their molecular pathogenesis remains unclear. We investigated the presence of pathogenic activating mutations in TRPV4, FGFR1, and KRAS in a cohort of brown tumors since these have recently been reported in giant-cell lesions of the jaws and non-ossifying fibromas of the bones (FGFR1 and KRAS), which are histologic mimics of brown tumors. We target sequenced 13 brown tumors of the jaws associated with primary or secondary hyperparathyroidism. As mutations in these genes are known to activate the MAPK/ERK signaling pathway, we also assessed the immunostaining of the phosphorylated form of ERK1/2 (pERK1/2) in these lesions. KRAS pathogenic mutations were detected in seven cases (p.G12V n = 4, p.G12D n = 1, p.G13D n = 1, p.A146T n = 1). KRAS variants of unknown significance (VUS), p.A134T and p.E37K, were also detected. All samples showed wild-type sequences for FGFR1 and TRPV4 genes. The activation of the MAPK/ERK signaling pathway was demonstrated by pERK1/2 immunohistochemical positivity of the brown tumors´ mononuclear cells. Mutations in KRAS and activation of the MAPK/ERK signaling pathway were detected in brown tumors of hyperparathyroidism of the jaws, expanding the spectrum of giant cell lesions whose molecular pathogenesis involve RAS signaling."	"[Driver Mutations in Acute Myeloid Leukemia with Inversion of Chromosome 16]. Certain subtypes of acute myeloid leukemia occur as a result of the cooperation of several events these are, the formation of fusion genes as a result of chromosomal rearrangements, which leads to the disruption of cell differentiation, and the emergence of mutations that enhance cellular proliferation by activating intracellular signaling pathways. High-throughput sequencing methods reveal characteristic mutation spectra in leukemia associated with different chromosomal disorders. However, the role of mutation events in malignant cell transformation processes remains obscure. We searched for driver mutation events in leukemic cells containing the chimeric CBFB-MYH11 gene, which results from inversion of chromosome 16. Using target enrichment, the coding regions of 84 genes in genomes of 12 children with acute myeloid leukemia with inv(16) were investigated. Somatic mutations have been found in the genes of the proteins of intracellular signaling cascades mediated by receptor tyrosine kinases, such as KIT (41%), NRAS (25%), KRAS (17%), and FLT3 (8.3%). Comparative analysis of samples at the time of diagnosis and during remission was used to assess the role of mutations in the pathogenesis of the disease. Previously undescribed mutations in the KDM6A, NOTCH1, and IDH1 genes, which may be involved in leukemogenesis processes have been identified."	"An immune competent orthotopic model of endometrial cancer with metastasis. Endometrial cancer is the most common gynecologic malignancy in the U.S. with metastatic disease remaining the major cause of patient death. Therapeutic strategies have remained essentially unchanged for decades. A significant barrier to progression in treatment modalities stems from a lack of clinically applicable in vivo models to accurately mimic endometrial cancer; specifically, ones that form distant metastases and maintain an intact immune system. To address this problem, we have established the first immune competent murine orthotopic tumor model for metastatic endometrial cancer by creating a green fluorescent protein labeled cell line from an endometrial cancer that developed in a Pgr<sup> cre/+ </sup>Pten<sup> f/f </sup>Kras<sup> G12D </sup> genetically engineered mouse. These cancer cells were grafted into the abraded uterine lumen of ovariectomized recipient mice treated with estrogen and subsequently developed local and metastatic endometrial tumors. We noted primary tumor formation in 59% mixed background and 86% of C57BL/6 animals at 4 weeks and distant lung metastases in 78% of mice after 2 months. This immunocompetent orthotopic tumor model closely resembles some human metastatic endometrial cancer, modeling both local metastasis and hematogenous spread to lung and has significant potential to advance the study of endometrial cancer and its metastasis."	"Blood-based Genomic Profiling of Circulating Tumor DNA from Patients with Advanced Pancreatic Cancer and its Value to Guide Clinical Treatment. Objective: Pancreatic cancer (PC) is a malignant tumor with limited therapeutic choices and extremely poor prognosis. Personalized therapy based on gene alternations is a promising choice. Considering tumor heterogeneity, the practice of ctDNA analysis has drawn the attention. Here, we try to assess the applicability of ctDNA in PC. Methods and materials: Next generation sequencing (NGS) was performed from blood samples of 223 PC patients and tissue sample of 564 PC patients. Genomic data from the TCGA database were also utilized. In addition, two cases received personalized treatment based on ctDNA sequencing results were reported. Results: Based on ctDNA sequencing, the genomic features of PC was revealed. Totally, 68.2% of patients detected at least one reportable genomic alteration (GA) from ctDNA. The frequently altered genes were KRAS (53.5%), followed by TP53 (52.8%), and CDKN2A (15.1%). Cell cycle control (8%) and DNA damage response (8%) pathways enriched the most mutated genes. Compared with mutations from tissue samples and a tissue-genomic database, similar frequencies of GAs were detected from ctDNA. The first two highest frequent mutation of genes were the same, but some of mutated genes were inclined to be observed in ctDNA, like AR. And two cases who received personalized therapy achieved better clinical benefit. Conclusion: Blood-source ctDNA sequencing could be regarded as a meaningful complement to tissue testing, and might guide clinically therapeutic regimen."	"Chetomin, a Hsp90/HIF1α pathway inhibitor, effectively targets lung cancer stem cells and non-stem cells. Non-small cell lung cancer (NSCLC) remains recalcitrant to effective treatment due to tumor relapse and acquired resistance. Cancer stem cells (CSCs) are believed to be one mechanism for relapse and resistance and are consequently considered promising drug targets. We report that chetomin, an active component of Chaetomium globosum, blocks heat shock protein 90/hypoxia-inducible factor 1 alpha (Hsp90/HIF1α) pathway activity. Chetomin also attenuated sphere-forming, a stem cell-like characteristic, of NSCLC CSCs (at ~ nM range) and the proliferation of non-CSCs NSCLC cultures and chemoresistant sublines (at ~ μM range). At these concentrations, chetomin exerted a marginal influence on noncancerous cells originating from several organs. Chetomin markedly decreased in vivo tumor formation in a spontaneous Kras<sup>LA1</sup> lung cancer model, flank xenograft models, and a tumor propagation flank implanted model at doses that did not produce an observable toxicity to the animals. Chetomin blocked Hsp90/HIF1α pathway activity via inhibiting the Hsp90-HIF1α binding interaction without affecting Hsp90 or Hsp70 protein levels. This study advocates chetomin as a Hsp90/HIF1α pathway inhibitor and a potent, nontoxic NSCLC CSC-targeting molecule."	"Noninvasive KRAS mutation estimation in colorectal cancer using a deep learning method based on CT imaging. The detection of Kirsten rat sarcoma viral oncogene homolog (KRAS) gene mutations in colorectal cancer (CRC) is key to the optimal design of individualized therapeutic strategies. The noninvasive prediction of the KRAS status in CRC is challenging. Deep learning (DL) in medical imaging has shown its high performance in diagnosis, classification, and prediction in recent years. In this paper, we investigated predictive performance by using a DL method with a residual neural network (ResNet) to estimate the KRAS mutation status in CRC patients based on pre-treatment contrast-enhanced CT imaging. We have collected a dataset consisting of 157 patients with pathology-confirmed CRC who were divided into a training cohort (n = 117) and a testing cohort (n = 40). We developed an ResNet model that used portal venous phase CT images to estimate KRAS mutations in the axial, coronal, and sagittal directions of the training cohort and evaluated the model in the testing cohort. Several groups of expended region of interest (ROI) patches were generated for the ResNet model, to explore whether tissues around the tumor can contribute to cancer assessment. We also explored a radiomics model with the random forest classifier (RFC) to predict KRAS mutations and compared it with the DL model. The ResNet model in the axial direction achieved the higher area under the curve (AUC) value (0.90) in the testing cohort and peaked at 0.93 with an input of 'ROI and 20-pixel' surrounding area. AUC of radiomics model in testing cohorts were 0.818. In comparison, the ResNet model showed better predictive ability. Our experiments reveal that the computerized assessment of the pre-treatment CT images of CRC patients using a DL model has the potential to precisely predict KRAS mutations. This new model has the potential to assist in noninvasive KRAS mutation estimation."	"[Clinicopathological and molecular features of pulmonary enteric adenocarcinoma]. Objective: To investigate the clinicopathological and molecular characteristics of pulmonary enteric adenocarcinoma (PEAC). Methods: The clinical and pathological data of 19 cases of PEAC in the Affiliated Cancer Hospital of Zhengzhou University were retrospectively collected from 2015 to 2019. Immunohistochemistry (IHC) was used to detect the relevant immunophenotypes, amplification refractory mutation system (ARMS) and fluorescence in situ hybridization (FISH) were used to detect the expression of EGFR, KRAS and ALK genes. The patients were followed up, and the relevant literature was reviewed and analyzed. Results: There were 19 cases, including 10 males and 9 females, with a mean age of 58 years (range 33-71 years). Microscopically, the tumors showed moderately to highly differentiated adenoid and/or papillary growth patterns. The tumor cells were highly columnar and sometimes showed pseudostratification. Inflammatory necrosis and scattered nuclear fragmentation were seen in some glandular lumens. IHC showed variable expression of CK7 (19/19), TTF1 (8/19), Napsin A (6/19), villin (17/19), CK20 (16/19) and CDX2 (10/19). Molecular testing showed KRAS mutation in nine cases (9/19), EGFR mutation in one case (1/19), and positive ALK split signal in one case (1/19). In the literature, the reported mutation rate of KRAS in PEAC was much higher than that of EGFR and ALK. All 19 cases underwent surgical resection and 11 cases were subjected to chemotherapy or radiotherapy. Conclusions: PEAC is a rare variant of invasive pulmonary adenocarcinoma, and has similar histological and cytological features to that of colorectal adenocarcinoma. However, detailed medical history, histologic heterogeneity, an IHC combination of CK7(+)/villin(+) and high KRAS mutation rate are the key points of diagnosis. The prognosis needs long-term follow-up and big data statistics. 目的: 探讨肺肠型腺癌(pulmonary enteric adenocarcinoma,PEAC)的临床病理学及分子学特征。 方法: 收集2015至2019年郑州大学附属肿瘤医院确诊的PEAC19例,复查相关临床及病理资料,同时采用免疫组织化学(IHC)法检测相关免疫表型,扩增阻滞突变系统(ARMS)法和荧光原位杂交(FISH)法检测表皮生长因子受体(EGFR)、KRAS、间变性淋巴瘤激酶(ALK)基因的表达情况,随访患者,复习相关文献并总结分析。 结果: 19例患者中男性10例,女性9例,平均年龄58岁(33~71岁)。镜下见肿瘤组织呈中到高分化的腺样和/或乳头样生长方式,肿瘤细胞呈高柱状,有时假复层排列。部分腺腔内可见炎性坏死和散在的碎裂核。IHC显示该组病例不同程度表达细胞角蛋白(CK)7(19/19)、甲状腺转录因子1(TTF1,8/19)、Napsin A(6/19)、Villin(17/19)、CK20(16/19)和CDX2(10/19)。基因检测发现9例(9/19)KRAS基因突变,1例(1/19)EGFR基因突变,1例(1/19)ALK基因断裂信号阳性。检索国内外有关PEAC的文献报道并总结发现KRAS在PEAC中的突变率远远高于EGFR及ALK的突变率。19例病例均行手术切除,11例术后行化疗或放化疗。 结论: PEAC是肺腺癌的一种少见变异类型,与结直肠腺癌有相似的组织细胞学形态。但是详细病史、组织学异质性、CK7(+)/Villin(+)的免疫组合以及KRAS基因突变率高是诊断的要点。预后有待于长期随访及大数据统计。."	"Pharmacogenomic Analysis Reveals CCNA2 as a Predictive Biomarker of Sensitivity to Polo-Like Kinase I Inhibitor in Gastric Cancer. Despite recent innovations and advances in early diagnosis, the prognosis of advanced gastric cancer remains poor due to a limited number of available therapeutics. Here, we employed pharmacogenomic analysis of 37 gastric cancer cell lines and 1345 small-molecule pharmacological compounds to investigate biomarkers predictive of cytotoxicity among gastric cancer cells to the tested drugs. We discovered that expression of CCNA2, encoding cyclin A2, was commonly associated with responses to polo-like kinase 1 (PLK1) inhibitors (BI-2536 and volasertib). We also found that elevated CCNA2 expression is required to confer sensitivity to PLK1 inhibitors through increased mitotic catastrophe and apoptosis. Further, we demonstrated that CCNA2 expression is elevated in KRAS mutant gastric cancer cell lines and primary tumors, resulting in an increased sensitivity to PLK1 inhibitors. Our study suggests that CCNA2 is a novel biomarker predictive of sensitivity to PLK1 inhibitors for the treatment of advanced gastric cancer, particularly cases carrying KRAS mutation."	"A H-REV107 Peptide Inhibits Tumor Growth and Interacts Directly with Oncogenic KRAS Mutants. Kirsten-RAS (KRAS) has been the target of drugs because it is the most mutated gene in human cancers. Because of the low affinity of drugs for KRAS mutations, it was difficult to target these tumor genes directly. We found a direct interaction between KRAS G12V and tumor suppressor novel H-REV107 peptide with high binding affinity. We report the first crystal structure of an oncogenic mutant, KRAS G12V-H-REV107. This peptide was shown to interact with KRAS G12V in the guanosine diphosphate (GDP)-bound inactive state and to form a stable complex, blocking the activation function of KRAS. We showed that the peptide acted as an inhibitor of mutant KRAS targets by [α-<sup>32</sup>P] guanosine triphosphate (GTP) binding assay. The H-REV107 peptide inhibited pancreatic cancer and colon cancer cell lines in cell proliferation assay. Specially, the H-REV107 peptide can suppress pancreatic tumor growth by reduction of tumor volume and weight in xenotransplantation mouse models. Overall, the results presented herein will facilitate development of novel drugs for inhibition of KRAS mutations in cancer patients."	"Integrated multi-omics data analyses for exploring the co-occurring and mutually exclusive gene alteration events in colorectal cancer. Co-occurring and mutually exclusive gene alteration events are helpful for understanding carcinogenesis but systematic screening for such events is quite limited. We conducted pairwise screening tests to identify &quot;hit pairs&quot; in colorectal cancer (CRC) by utilizing the cross-omics data from The Cancer Genome Atlas (TCGA). Numerous hit pairs involving somatic mutations, copy number variations, and DNA methylation were found to occur nonrandomly in CRC, such as KRAS and HOXB6, SMAD4 and PMEPA1. Based on these hit pairs, we identified 32 synthetic lethal pairs and 7,527 co-occurring pairs relating to drug response. Our further biological experiments showed that the co-occurrence of mutant FCGBP and NUDT12 silencing (or mutant TMC3 and RPS6KA6 silencing) with small interfering RNA reduced cell viability. Moreover, novel hit pairs could influence prognosis. The patients who carried concurrent mutations of IRF5 and NEFH, SYNE1 and TTN, or MUC16 and NEFH had worse survival outcomes. Particularly, the presence of mutant SYNE1 and TTN pair not only affects prognosis, but also is related to CRC patients' response to drug treatment. Our &quot;hit pair&quot; genes may provide insights into colorectal carcinogenesis and help open new avenues for CRC therapy."	"Clonal Evolution and Heterogeneity of Osimertinib Acquired Resistance Mechanisms in EGFR Mutant Lung Cancer. Clonal evolution of osimertinib-resistance mechanisms in EGFR mutant lung adenocarcinoma is poorly understood. Using multi-region whole-exome and RNA sequencing of prospectively collected pre- and post-osimertinib-resistant tumors, including at rapid autopsies, we identify a likely mechanism driving osimertinib resistance in all patients analyzed. The majority of patients acquire two or more resistance mechanisms either concurrently or in temporal sequence. Focal copy-number amplifications occur subclonally and are spatially and temporally separated from common resistance mutations such as EGFR C797S. MET amplification occurs in 66% (n = 6/9) of first-line osimertinib-treated patients, albeit spatially heterogeneous, often co-occurs with additional acquired focal copy-number amplifications and is associated with early progression. Noteworthy osimertinib-resistance mechanisms discovered include neuroendocrine differentiation without histologic transformation, PD-L1, KRAS amplification, and ESR1-AKAP12, MKRN1-BRAF fusions. The subclonal co-occurrence of acquired genomic alterations upon osimertinib resistance will likely require targeting multiple resistance mechanisms by combination therapies."	"Identification of a potent and selective covalent Pin1 inhibitor. Peptidyl-prolyl cis/trans isomerase NIMA-interacting 1 (Pin1) is commonly overexpressed in human cancers, including pancreatic ductal adenocarcinoma (PDAC). While Pin1 is dispensable for viability in mice, it is required for activated Ras to induce tumorigenesis, suggesting a role for Pin1 inhibitors in Ras-driven tumors, such as PDAC. We report the development of rationally designed peptide inhibitors that covalently target Cys113, a highly conserved cysteine located in the Pin1 active site. The inhibitors were iteratively optimized for potency, selectivity and cell permeability to give BJP-06-005-3, a versatile tool compound with which to probe Pin1 biology and interrogate its role in cancer. In parallel to inhibitor development, we employed genetic and chemical-genetic strategies to assess the consequences of Pin1 loss in human PDAC cell lines. We demonstrate that Pin1 cooperates with mutant KRAS to promote transformation in PDAC, and that Pin1 inhibition impairs cell viability over time in PDAC cell lines."	"Role of Clostridium perfringens Enterotoxin on YAP Activation in Colonic Sessile Serrated Adenoma/ Polyps with Dysplasia. Sessile serrated adenoma/polyp with dysplasia (SSA/P-D) is an SSA/P with cellular dysplasia and has a higher risk of progressing to colon carcinogenesis. Previously, we reported that tight junction impairment by Clostridiumperfringens enterotoxin (CPE) leads to activation of the transcriptional co-activator yes-associated protein (YAP) in oral squamous cell carcinoma. Here, we investigated whether CPE activates YAP to promote the malignant progression of SSA/P. E-cadherin expression was lower in the 12 cases with SSA/P-D examined than that in normal mucosa, SSA/P, or tubular adenoma (TA). Furthermore, intracellular translocation of claudin-4 (CLDN4) and nuclear translocation of YAP were observed. The CPE gene was detected in DNA extracted from SSA/P-D lesions, but not in SSA/P or TA. Treatment of the rat intestinal epithelial cell line IEC6 with low-dose CPE resulted in intracellular translocation of CLDN4 to the cytoplasmic membrane. Cytoplasmic CLDN4 showed co-precipitation with transcriptional co-activator with PDZ-binding motif, zonula occludens (ZO)-1, large tumor suppressor, and mammalian Ste20-like. Additionally, YAP co-precipitated with ZO-2 under CPE treatment led to decreased YAP phosphorylation and nuclear translocation. YAP activation promoted increase in nuclear TEA domain family member level, expression of cyclin D1, snail, vimentin, CD44, NS and decrease in E-cadherin levels, thereby inducing stemness and epithelial-mesenchymal-transition (EMT). The Hippo complex with the incorporation of CLDN4 increased stability. Upon low-dose CPE treatment, HT29 cells with BRAF<sup>V600E</sup> gene mutation showed increased growth, enhanced invasive potential, stemness, and induced EMT phenotype, whereas HCT116 cells, which carry KRAS<sup>G13D</sup> gene mutation, did not show such changes. In an examination of 10 colorectal cancers, an increase in EMT and stemness was observed in CPE (+) and BRAF mutation (+) cases. These findings suggest that C.perfringens might enhance the malignant transformation of SSA/P-D via YAP activation. Our findings further highlight the importance of controlling intestinal flora using probiotics or antibiotics."	"The Combination of Loss of ALDH1L1 Function and Phenformin Treatment Decreases Tumor Growth in KRAS-Driven Lung Cancer. Lung adenocarcinoma cells express high levels of ALDH1L1, an enzyme of the one-carbon pathway that catalyzes the conversion of 10-formyltetrahydrofolate into tetrahydrofolate and NAD(P)H. In this study, we evaluated the potential of ALDH1L1 as a therapeutic target by deleting the Aldh1l1 gene in Kras<sup>LA2</sup> mice, a model of spontaneous non-small cell lung cancer (NSCLC). Reporter assays revealed KRAS-mediated upregulation of the ALDH1L1 promoter in human NSCLC cells. Aldh1l1<sup>-/-</sup> mice exhibited a normal phenotype, with a 10% decrease in Kras-driven lung tumorigenesis. By contrast, the inhibition of oxidative phosphorylation inhibition using phenformin in Aldh1l1<sup>-/-</sup>; Kras<sup>LA2</sup> mice dramatically decreased the number of tumor nodules and tumor area by up to 50%. Furthermore, combined treatment with pan-ALDH inhibitor and phenformin showed a decreased number and area of lung tumors by 70% in the Kras<sup>LA2</sup> lung cancer model. Consistent with this, previous work showed that the combination of ALDH1L1 knockdown and phenformin treatment decreased ATP production by as much as 70% in NSCLS cell lines. Taken together, these results suggest that the combined inhibition of ALDH activity and oxidative phosphorylation represents a promising therapeutic strategy for NSCLC."	"Blood-based next-generation sequencing analysis of neuroendocrine neoplasms. Background: Neuroendocrine neoplasms (NENs) are a heterogeneous group of neoplasms that span from well-differentiated neuroendocrine tumors (NETs) to highly aggressive neoplasms classified as neuroendocrine carcinomas (NECs). The genomic landscape of NENs has not been well studied. The aim of this study is to confirm the feasibility of next generation sequencing (NGS) testing circulating tumor DNA (ctDNA) in patients with NENs and characterize common alterations in the genomic landscape. Results: Of the 320 NEN patients, 182 (57%) were male with a median age of 63 years (range: 8-93) years. Tumor type included pancreatic NET (N = 165, 52%), gastrointestinal NEC (N = 52, 16%), large cell lung NEC (N = 21, 7%), nasopharyngeal NEC (N = 16, 5%) and NEC/NET not otherwise specified (N = 64, 20%). ctDNA NGS testing was performed on 338 plasma samples; 14 patients had testing performed twice and 2 patients had testing performed three times. Genomic alterations were defined in 280 (87.5%) samples with a total of 1,012 alterations identified after excluding variants of uncertain significance (VUSs) and synonymous mutations. Of the 280 samples with alterations, TP53 associated genes were most commonly altered (N = 145, 52%), followed by KRAS (N = 61, 22%), EGFR (N = 33, 12%), PIK3CA (N = 30, 11%), BRAF (N = 28, 10%), MYC (N = 28, 10%), CCNE1 (N = 28, 10%), CDK6 (N = 22, 8%), RB1 (N = 19, 7%), NF1 (N = 19, 7%), MET (N = 19, 7%), FGFR1 (N = 19, 7%), APC (N = 19, 7%), ERBB2 (N = 16, 6%) and PTEN (N = 14, 5%). Conclusions: Evaluation of ctDNA was feasible among individuals with NEN. Liquid biopsies are non-invasive methods that can provide personalized options for targeted therapies in NEN patients. Patients and Methods: Molecular alterations in 338 plasma samples from 320 patients with NEN were evaluated using clinical-grade NGS of ctDNA (Guardant360<sup>®</sup>) across multiple institutions. The test detects single nucleotide variants in 54-73 genes, copy number amplifications, fusions, and indels in selected genes."	"Synergy of GSK-J4 With Doxorubicin in KRAS-Mutant Anaplastic Thyroid Cancer. Anaplastic thyroid cancer is the most aggressive thyroid cancer and has a poor prognosis. At present, there is no effective treatment for it. Here, we used different concentrations of GSK-J4 or a combination of GSK-J4 and doxorubicin to treat human Cal-62, 8505C, and 8305C anaplastic thyroid cancer (ATC) cell lines. The in vitro experiments were performed using cell viability assays, cell cycle assays, annexin-V/PI binding assays, Transwell migration assays, and wound-healing assays. Tumor xenograft models were used to observe effects in vivo. The half maximal inhibitory concentration (IC50) of GSK-J4 in Cal-62 cells was 1.502 μM, and as the dose of GSK-J4 increased, more ATC cells were blocked in the G2-M and S stage. The combination of GSK-J4 and doxorubicin significantly increased the inhibitory effect on proliferation, especially in KRAS-mutant ATC cells in vivo (inhibition rate 38.0%) and in vitro (suppresses rate Fa value 0.624, CI value 0.673). The invasion and migration abilities of the KRAS-mutant cell line were inhibited at a low concentration (p &lt; 0.05). The combination of GSK-J4 with doxorubicin in KRAS-mutant ATC achieved tumor-suppressive effects at a low dose. The synergy of the combination of GSK-J4 and doxorubicin may make it an effective chemotherapy regimen for KRAS-mutant ATC."	"Blocking histone methyltransferase SETDB1 inhibits tumorigenesis and enhances cetuximab sensitivity in colorectal cancer. The histone methyltransferase SETDB1 catalyzes the addition of methyl groups to histone H3 at lysine 9, and upregulation of SETDB1 is associated with poor prognosis in cancer patients. Here, we describe how overexpression of SETDB1 contributes to colorectal cancer (CRC) tumorigenesis and drug resistance. We show that SETDB1 is upregulated in CRC, and its level correlates with poor clinical outcome. SETDB1 attenuation inhibits CRC cell proliferation Mechanistically, SETDB1 promotes cell proliferation by upregulating Akt activation. Further, SETDB1 is essential for the tumorigenic activity of Akt. Functional characterization revealed that inhibition of SETDB1 reduces cell growth in CRC resistant to targeted treatments in vitro and in vivo, KRAS-mutated CRC included. Taken together, our results indicate that SETDB1 is a major driver of CRC and may serve as a potential target for the treatment of KRAS-mutated CRC."	"The Role of Vitamin D Receptor Gene Polymorphisms in Colorectal Cancer Risk. Vitamin D deficiency has been associated with increased colorectal cancer (CRC) incidence risk and mortality. Vitamin D mediates its action through the binding of the vitamin D receptor (VDR), and polymorphisms of the VDR might explain these inverse associations. The aim of the study was the investigation of the relevance of rs731236; Thermus aquaticus I (TaqI), rs7975232; Acetobacter pasteurianus sub. pasteurianus I (ApaI), rs2228570; Flavobacterium okeanokoites I (FokI) and rs1544410, Bacillus stearothermophilus I (BsmI) polymorphisms of the VDR gene to colorectal carcinogenesis (CRC) and progression. Peripheral blood was obtained from 397 patients with early operable stage II/III (n = 202) and stage IV (n = 195) CRC. Moreover, samples from 100 healthy donors and 40 patients with adenomatous polyps were also included as control groups. Genotyping in the samples from patients and controls was performed using polymerase chain reaction-restriction fragment length polymorphisms (PCR-RFLP). A significant association was revealed between all four polymorphisms and cancer. Individuals with homozygous mutant (tt, aa, ff or bb) genotypes were more susceptible to the disease (p &lt; 0.001). All of the mutant genotypes detected were also significantly associated with stage IV (p &lt; 0.001), leading to significantly decreased survival (p &lt; 0.001). Moreover, all four polymorphisms were significantly associated with KRAS (Kirsten ras oncogene) mutations and Toll-like receptor (TLR2, TLR4 and TLR9) genetic variants. In multivariate analysis, tt, aa and ff genotypes emerged as independent factors associated with decreased overall survival (OS) (p = 0.001, p &lt; 0.001 and p = 0.001, respectively). The detection of higher frequencies of the VDR polymorphisms in CRC patients highlights the role of these polymorphisms in cancer development and progression."	"Insulin-Like Growth Factor-1 Receptor Expression and Disease Recurrence and Survival in Patients with Resected Pancreatic Ductal Adenocarcinoma. Insulin-like growth factor-1 receptor (IGF1R) signaling is important in pancreatic ductal adenocarcinoma (PDAC) biology, but little is known regarding IGF1R expression and patient characteristics and outcomes. In 365 patients with resected PDAC, we evaluated IGF1R protein expression using IHC on whole-slide sections and IGF1R genomic status using next-generation sequencing. Associations of IGF1R expression, measured by H-scores incorporating staining intensity and proportion of positive tumor cells, with disease-free survival (DFS) and overall survival (OS) were evaluated in 317 and 321 patients, respectively, using Cox regression adjusting for known prognostic factors. Higher IGF1R expression in tumor cells was associated with worse DFS comparing highest versus lowest expression tertiles [median DFS, 10.8 vs. 16.1 months; adjusted hazard ratio (HR), 1.73; 95% confidence interval (CI), 1.24-2.44; Ptrend = 0.002] and worse OS (median OS, 17.4 vs. 25.8 months; HR, 1.39; 95% CI, 1.00-1.92; Ptrend = 0.046). The association between high IGF1R expression and reduced DFS was identified primarily among patients with a preoperative body mass index ≥25 kg/m<sup>2</sup> (HR, 4.27; 95% CI, 2.03-8.96, comparing extreme tertiles; Pinteraction = 0.032). KRAS-mutant tumors had greater IGF1R expression, and IGF1R expression in tumor epithelium was inversely correlated with that in stromal cells. Mutations in IGF1R were infrequent, and no overt loss-of-function alterations were identified. Higher IGF1R expression was modestly associated with higher gene copy number (Pearson correlation coefficient = 0.26, P &lt; 0.001). Higher IGF1R protein expression was associated with worse patient outcomes in resected PDAC. IGF1R expression in PDAC represents a potential biomarker to guide patient selection for more aggressive, multidrug regimens in the adjuvant setting."	"Comparison of Tissue-Based Molecular Markers in Younger versus Older Patients with Colorectal Neoplasia. Emerging colorectal cancer trends demonstrate increased incidence and mortality in younger populations, prompting consideration of average-risk colorectal cancer screening initiation at age 45 versus 50 years. However, screening test performance characteristics in adults 45-49 years have been minimally described. To inform the biologic rationale for multi-target stool DNA (mt-sDNA) screening in younger patients, we analyzed and compared tissue levels of methylation (BMP3, NDRG4) and mutation (KRAS) markers included in the FDA-approved, mt-sDNA assay (Cologuard; Exact Sciences Corporation). Within 40-44, 45-49, and 50-64 year age groups, archived colorectal tissue specimens were identified for 211 sporadic colorectal cancer cases, 123 advanced precancerous lesions (APLs; adenomas &gt;1 cm, high-grade dysplasia, ≥25% villous morphology, or sessile serrated polyp; 45-49 and 50-64 age groups only), and 204 histologically normal controls. Following DNA extraction, KRAS, BMP3, and NDRG4 were quantified using QuARTS assays, relative to ACTB (reference gene). None of the molecular marker concentrations were significantly associated with age (P &gt; 0.05 for all comparisons), with the exception of NDRG4 concentration in APL samples (higher in older vs. younger cases; P = 0.008). However, NDRG4 levels were also statistically higher in APL case versus normal control samples in both the 45-49 (P &lt; 0.0001) and 50-64 (P &lt; 0.0001) year age groups. Overall, these findings support the potential for earlier onset of average-risk colorectal cancer screening with the mt-sDNA assay. These novel data address an identified knowledge gap and strengthen the biologic basis for earlier-onset, average-risk screening with the mt-sDNA assay."	"A novel NGS-based microsatellite instability (MSI) status classifier with 9 loci for colorectal cancer patients. With the recent emergence of immune checkpoint inhibitors, microsatellite instability (MSI) status has become an important biomarker for immune checkpoint blockade therapy. There are growing technical demands for the integration of different genomic alterations profiling including MSI analysis in a single assay for full use of the limited tissues. Tumor and paired control samples from 64 patients with primary colorectal cancer were enrolled in this study, including 14 MSI-high (MSI-H) cases and 50 microsatellite stable (MSS) cases determined by MSI-PCR. All the samples were sequenced by a customized NGS panel covering 2.2 MB. A training dataset of 28 samples was used for selection of microsatellite loci and a novel NGS-based MSI status classifier, USCI-msi, was developed. NGS-based MSI status, single nucleotide variant (SNV) and tumor mutation burden (TMB) were detected for all patients. Most of the patients were also independently detected by immunohistochemistry (IHC) staining. A 9-loci model for detecting microsatellite instability was able to correctly predict MSI status with 100% sensitivity and specificity compared with MSI-PCR, and 84.3% overall concordance with IHC staining. Mutations in cancer driver genes (APC, TP53, and KRAS) were dispersed in MSI-H and MSS cases, while BRAF p.V600E and frameshifts in TCF7L2 gene occurred only in MSI-H cases. Mismatch repair (MMR)-related genes are highly mutated in MSI-H samples. We established a new NGS-based MSI classifier, USCI-msi, with as few as 9 microsatellite loci for detecting MSI status in CRC cases. This approach possesses 100% sensitivity and specificity, and performed robustly in samples with low tumor purity."	"Genetic profiling of patients with adenoid cystic carcinoma of the Bartholin's glands reveals potential new routes for targeted therapies: a case report. Bartholin gland carcinomas (BGCs) are rare tumor types, for which no molecular analyses including genomic sequencing have been reported to date. Adenoid cystic carcinomas (ACCs) of the Bartholin's glands are an atypical histological type of BGC, and currently nothing is known regarding their genetic profiles or similarity to ACC carcinogenesis in other organs including the salivary glands, thereby limiting possible therapeutic options using precision medicine. We used targeted gene sequencing to analyze the occurrence of 160 cancer-related genes in two patients with BG-ACC. KRAS and KDM6A mutations were detected in tumor samples collected from each patient. No KRAS mutations have been previously reported in salivary gland ACCs, indicating that the carcinogenesis of BG-ACC differs from that of the salivary gland ACCs. KDM6A mutations are often reported in salivary gland ACCs and facilitate novel gene-targeted therapy, including the use of BET and HDAC inhibitors. A better understanding of the underlying genetic mechanisms will help to clarify the carcinogenesis of BG-ACC. In turn, this will enable treatment with novel targeting agents, as well as the initial exploration of gene-based precision oncological therapies, which aim to improve treatment outcomes for patients with this disease."	"The genomic landscape of metastasis in treatment-naïve breast cancer models. Metastasis remains the principle cause of mortality for breast cancer and presents a critical challenge because secondary lesions are often refractory to conventional treatments. While specific genetic alterations are tightly linked to primary tumor development and progression, the role of genetic alteration in the metastatic process is not well-understood. The theory of tumor evolution postulated by Peter Nowell in 1976 has yet to be proven in the context of metastasis. Therefore, in order to investigate how somatic evolution contributes to breast cancer metastasis, we performed exome, whole genome, and RNA sequencing of matched metastatic and primary tumors from pre-clinical mouse models of breast cancer. Here we show that in a treatment-naïve setting, recurrent single nucleotide variants and copy number variation, but not gene fusion events, play key metastasis-driving roles in breast cancer. For instance, we identified recurrent mutations in Kras, a known driver of colorectal and lung tumorigenesis that has not been previously implicated in breast cancer metastasis. However, in a set of in vivo proof-of-concept experiments we show that the Kras G12D mutation is sufficient to significantly promote metastasis using three syngeneic allograft models. The work herein confirms the existence of metastasis-driving mutations and presents a novel framework to identify actionable metastasis-targeted therapies."	"Resveratrol Ameliorates the Malignant Progression of Pancreatic Cancer by Inhibiting Hypoxia-induced Pancreatic Stellate Cell Activation. Pancreatic cancer is characterized by a hypoxic tumor microenvironment, which is primarily caused by massive fibrosis with pancreatic stellate cells (PSCs) as a main component. Our previous studies have shown that resveratrol can significantly inhibit pancreatic cancer. However, whether resveratrol can inhibit hypoxia-induced cancer development remains unclear. The objective of this study was to explore whether PSCs and hypoxia synergistically mediate aggressiveness in pancreatic cancer and detect the potential pleiotropic protective effects of resveratrol on hypoxia-induced pancreatic cancer progression. Human PSCs were treated with vehicle or resveratrol under normoxic or hypoxic conditions (3% O2), and PSC activation was assessed by immunofluorescence staining. SiRNA was used to silence hypoxia-inducible factor 1 (HIF-1) expression. The invasive capacity of Panc-1 and Mia Paca-2 cells cocultured with conditioned medium from PSCs was assessed by Transwell assays. To examine tumor formation kinetics, KPC (LSL-Kras<sup>G12D/+</sup>, Trp53<sup>fl/+</sup>, and Pdx1-Cre) mice were sacrificed at different time points. To investigate the antitumor effects of resveratrol in vivo, 8-wk-old KPC mice were divided into two groups and treated daily with or without 50 mg/kg resveratrol. Our data indicate that hypoxia induces PSC activation via HIF-1 and that the interleukin 6, vascular endothelial growth factor A, and stromal cell-derived factor 1 derived from activated PSCs promote both invasion and the epithelial-mesenchymal transition and inhibit apoptosis in pancreatic cancer cells. However, resveratrol inhibits hypoxia-induced PSC activation, blocks the interplay between PSCs and pancreatic cancer cells, and suppresses the malignant progression of pancreatic cancer and stromal desmoplasia in a KPC mouse model. Our data highlight that activated PSCs and intratumoral hypoxia are essential targets for novel strategies to prevent tumor-microenvironment interactions. Furthermore, the polyphenolic compound resveratrol effectively ameliorates the malignant progression of pancreatic ductal adenocarcinoma."	"Clinical activity of brigatinib in ROS1-rearranged non-small cell lung cancer. Brigatinib is a potent ROS1 inhibitor. The existing data on its clinical activity in ROS1-rearranged non-small cell lung cancer (NSCLC) are limited to four cases. Six patients with ROS1-rearranged advanced NSCLC treated with brigatinib were identified through search of the internal databases of four participating cancer centers. Four additional patients were selected by PubMed and Google Scholar search. The objective response rate (ORR), progression-free survival (PFS) (RECIST v.1.1), duration of treatment (DOT), and safety were assessed. Of eight patients evaluable for response assessment (crizotinib naive-1, crizotinib resistant -7), three patients demonstrated a partial response (ORR-37%). One crizotinib-naive patient had an ongoing response at 21.6 months. Of seven crizotinib-resistant patients, two patients demonstrated a partial response (ORR-29%), and one patient (14%) had stable disease. PFS, available in four crizotinib-resistant patients, was 7.6 + , 2.9, 2.0, and 0.4 months. In crizotinib-resistant patients, DOT was 9.7 + , 7.7 + , 7.6 + , 4.0, 2.0, 1.1, 0.4 months, and was not reported in two patients. Genomic profiling in one responder revealed no ROS1 alteration, suggesting that the response was attributable to &quot;off-target&quot; brigatinib activity. In two patients with progressive disease, genomic profiling demonstrated a cMET exon 14 mutation + KRAS G12A mutation in one case, and a persisting ROS1-CD74 fusion + TP53 K139N, FGFR2 E250G, ATM G2695D, and NF1 R2258Q mutations in the other. No grade 3-5 toxicity was observed. Brigatinib demonstrated modest activity in crizotinib-resistant ROS1-rearranged NSCLC. Its intracranial and systemic activity should be assessed in correlation with the underlying molecular mechanism of crizotinib resistance. Our series is the first to describe brigatinib activity in ROS1-altered NSCLC. In crizotinib-resistant patients, ORR with brigatinib was 29%. PFS with brigatinib was 7.6+, 2.9, 2.0, and 0.4 months. DOT with brigatinib was 9.7+, 7.7+, 7.6+, 4.0, 2.0, 1.1, 0.4 months. The correlation between response and molecular resistance needs further exploration."	"Comparison of liquid-based to tissue-based biopsy analysis by targeted next generation sequencing in advanced non-small cell lung cancer: a comprehensive systematic review. To explore whether targeted next generation sequencing (NGS) of liquid biopsy in advanced non-small cell lung cancer (NSCLC) could potentially overcome the innate problems that arise with standard tissue biopsy, like intratumoral heterogeneity and the inability to obtain adequate samples for analysis. The Scopus, Cochrane Library, and MEDLINE (via PubMed) databases were searched for studies with matched tissue and liquid biopsies from advanced NSCLC patients, analyzed with targeted NGS. The number of mutations detected in tissue biopsy only, liquid biopsy only, or both was assessed and the positive percent agreement (PPA) of the two methods was calculated for every clinically relevant gene. A total of 644 unique relevant articles were retrieved and data were extracted from 38 studies fulfilling the inclusion criteria. The sample size was composed of 2000 mutations tested in matched tissue and liquid biopsies derived from 1141 patients. No studies analyzed circulating tumor cells. The calculated PPA rates were 53.6% (45/84) for ALK, 53.9% (14/26) for BRAF, 56.5% (13/23) for ERBB2, 67.8% (428/631) for EGFR, 64.2% (122/190) for KRAS, 58.6% (17/29) for MET, 54.6% (12/22) for RET, and 53.3% (8/15) for ROS1. We additionally recorded data for 65 genes that are not recommended by current guidelines for mutational testing. An extra category containing results of unspecified genes was added, with a PPA rate of 55.7% (122/219). Despite many advantages, liquid biopsy might be unable to fully substitute its tissue counterpart in detecting clinically relevant mutations in advanced NSCLC patients. However, it may serve as a helpful tool when making therapeutic decisions. More studies are needed to evaluate its role in everyday clinical practice."	"High-affinity oligoclonal TCRs define effective adoptive T cell therapy targeting mutant KRAS-G12D. Complete cancer regression occurs in a subset of patients following adoptive T cell therapy (ACT) of ex vivo expanded tumor-infiltrating lymphocytes (TILs). However, the low success rate presents a great challenge to broader clinical application. To provide insight into TIL-based immunotherapy, we studied a successful case of ACT where regression was observed against tumors carrying the hotspot mutation G12D in the KRAS oncogene. Four T cell receptors (TCRs) made up the TIL infusion and recognized two KRAS-G12D neoantigens, a nonamer and a decamer, all restricted by human leukocyte antigen (HLA) C*08:02. Three of them (TCR9a, 9b, and 9c) were nonamer-specific, while one was decamer-specific (TCR10). We show that only mutant G12D but not the wild-type peptides stabilized HLA-C*08:02 due to the formation of a critical anchor salt bridge to HLA-C. Therapeutic TCRs exhibited high affinities, ranging from nanomolar to low micromolar. Intriguingly, TCR binding affinities to HLA-C inversely correlated with their persistence in vivo, suggesting the importance of antigenic affinity in the function of therapeutic T cells. Crystal structures of TCR-HLA-C complexes revealed that TCR9a to 9c recognized G12D nonamer with multiple conserved contacts through shared CDR2β and CDR3α. This allowed CDR3β variation to confer different affinities via a variable HLA-C contact, generating an oligoclonal response. TCR10 recognized an induced and distinct G12D decamer conformation. Thus, this successful case of ACT included oligoclonal TCRs of high affinity recognizing distinct conformations of neoantigens. Our study revealed the potential of a structural approach to inform clinical efforts in targeting KRAS-G12D tumors by immunotherapy and has general implications for T cell-based immunotherapies."	"Juvenile myelomonocytic leukemia - A bona fide RASopathy syndrome. Juvenile myelomonocytic leukemia (JMML) is a pediatric myelodysplastic/myeloproliferative neoplasm overlap syndrome with sustained peripheral blood monocytosis, aggressive features, and poor outcomes. In &gt;90% of cases JMML is driven by germline or somatic mutations involving the canonical RAS pathway (PTPN11, NRAS, CBL, KRAS and NF1), with somatic mutations/alterations in RAS pathway genes (second hit), SETBP1, ASXL1 and JAK3 resulting in disease progression. While spontaneous regression has been seen in germline PTPN11 and CBL mutant JMML, in most patients, allogeneic stem cell transplant is the only curative modality. JMML shares several phenotypic features with its adult counterpart proliferative, chronic myelomonocytic leukemia (pCMML). pCMML largely occurs due to RAS pathway mutations that occur in the context of age related clonal hematopoiesis (TET2, SRSF2, ASXL1), while JMML is a bona fide RASopathy, with additional somatic mutations, including in epigenetic regulators genes resulting in disease progression."	"RAC1 as a Therapeutic Target in Malignant Melanoma. Small GTPases of the RAS and RHO families are related signaling proteins that, when activated by growth factors or by mutation, drive oncogenic processes. While activating mutations in KRAS, NRAS, and HRAS genes have long been recognized and occur in many types of cancer, similar mutations in RHO family genes, such as RAC1 and RHOA, have only recently been detected as the result of extensive cancer genome-sequencing efforts and are linked to a restricted set of malignancies. In this review, we focus on the role of RAC1 signaling in malignant melanoma, emphasizing recent advances that describe how this oncoprotein alters melanocyte proliferation and motility and how these findings might lead to new therapeutics in RAC1-mutant tumors."	"The Quest for Improving Treatment of Cancer of Unknown Primary (CUP) Through Molecularly-Driven Treatments: A Systematic Review. Background: Carcinomas of unknown primary (CUP) account for 3-5% of all malignancy and, despite a reduction in incidence, the overall survival has not improved over the last decade. Chemotherapy regimens have not provided encouraging results. New diagnostic technologies, such as next generation sequencing (NGS), could represent a chance to identify potentially targetable genomic alterations in order to personalize treatment of CUP and provide insights into tumor biology. Methods: A systematic review of studies of patients with CUP, whose tumor specimen was evaluated through a NGS panel, has been performed on June 10th, 2019 according to PRISMA criteria from PubMed, ASCO meeting library and Clinicaltrial.gov. We have identified potentially targetable alterations for which approved/off-label/in clinical trials drugs are available. Moreover, we have included case reports about CUP patients treated with targeted therapies driven by NGS results in order to explore the clinical role of NGS in this setting. Results: We have evaluated 15 publications of which eleven studies (9 full-text articles and 2 abstracts) have analyzed the genomic profiling of CUPs through NGS technology, with different platforms and with different patients cohorts, ranging from 16 to 1,806 patients. Among all these studies, 85% of patients demonstrated at least one molecular alteration, the most frequent involving TP53 (41.88%), KRAS (18.81%), CDKN2A (8.8%), and PIK3CA (9.3%). A mean of 47.3% of patients harbored a potentially targetable alteration for which approved/off-label/in clinical trials drugs were available. Furthermore, we have identified 4 case reports in order to evaluate the clinical relevance of a specific targeted therapy identified through NGS. Conclusions: NGS may represent a tool to improve diagnosis and treatment of CUP by identifying therapeutically actionable alterations and providing insights into tumor biology."	"Tiny but mighty: use of next generation sequencing on discarded cytocentrifuged bile duct brushing specimens to increase sensitivity of cytological diagnosis. Bile duct brushing (BDB) is used to evaluate pancreatobiliary lesions as it widely samples lesions with a low complication rate. Cytological evaluation of BDB is a specific but insensitive test. There is limited literature on the use of post-cytocentrifuged (PCC) samples, which are usually discarded, for next-generation sequencing (NGS) as an adjunct to cytological diagnosis of BDB. In this study we investigate whether molecular analysis by NGS of PCC specimens improves the sensitivity of diagnosis. PCC samples from 100 consecutive BDB specimens spanning 93 unique patients were retained. DNA was extracted and mutational analysis was performed agnostic of morphologic or clinical findings. Each BDB specimen was characterized as negative, atypical or positive based on morphological analysis by trained cytopathologists. Performance characteristics for mutational profiling and morphological analysis were calculated on the basis of clinicopathologic follow-up. There was sufficient clinicopathologic follow-up to classify 94 of 100 cases as either malignant (n = 43) or benign (n = 51). Based on morphologic analysis of cytology, these 94 cases were classified as either benign (n = 55), atypical (n = 18), or as at least suspicious or positive for malignancy (n = 21). Morphologic analysis of cytology showed a sensitivity of 49% and a specificity of 100% if atypical cases were considered negative. NGS revealed oncogenic alterations in 40/43 (93%) of malignant cases based on clinicopathologic follow-up. The most common alterations were in KRAS and TP53, observed in 77% and 49% of malignant cases respectively. No alterations were observed in the 51 benign cases classified based on clinicopathologic follow-up. Supplementing cytomorphologic analysis with molecular profiling of PCC by targeted NGS analysis increased the sensitivity to 93% and maintained specificity at 100%. This study provides evidence for the utility of NGS molecular profiling of PCC specimens to increase the sensitivity of BDB cytology samples, although studies with larger cohorts are needed to verify these findings."	"Small Molecule KRAS Inhibitors: The Future for Targeted Pancreatic Cancer Therapy? Pancreatic ductal adenocarcinoma (PDAC) is one of the deadliest solid tumors in the world. Currently, there are no approved targeted therapies for PDAC. Mutations in Kirsten rat sarcoma viral oncogene homologue (KRAS) are known to be a major driver of PDAC progression, but it was considered an undruggable target until recently. Moreover, PDAC also suffers from drug delivery issues due to the highly fibrotic tumor microenvironment. In this perspective, we provide an overview of recent developments in targeting mutant KRAS and strategies to overcome drug delivery issues (e.g., nanoparticle delivery). Overall, we propose that the antitumor effects from novel KRAS inhibitors along with strategies to overcome drug delivery issues could be a new therapeutic way forward in PDAC."	"Pleiotropic Roles of Calmodulin in the Regulation of KRas and Rac1 GTPases: Functional Diversity in Health and Disease. Calmodulin is a ubiquitous signalling protein that controls many biological processes due to its capacity to interact and/or regulate a large number of cellular proteins and pathways, mostly in a Ca<sup>2+</sup>-dependent manner. This complex interactome of calmodulin can have pleiotropic molecular consequences, which over the years has made it often difficult to clearly define the contribution of calmodulin in the signal output of specific pathways and overall biological response. Most relevant for this review, the ability of calmodulin to influence the spatiotemporal signalling of several small GTPases, in particular KRas and Rac1, can modulate fundamental biological outcomes such as proliferation and migration. First, direct interaction of calmodulin with these GTPases can alter their subcellular localization and activation state, induce post-translational modifications as well as their ability to interact with effectors. Second, through interaction with a set of calmodulin binding proteins (CaMBPs), calmodulin can control the capacity of several guanine nucleotide exchange factors (GEFs) to promote the switch of inactive KRas and Rac1 to an active conformation. Moreover, Rac1 is also an effector of KRas and both proteins are interconnected as highlighted by the requirement for Rac1 activation in KRas-driven tumourigenesis. In this review, we attempt to summarize the multiple layers how calmodulin can regulate KRas and Rac1 GTPases in a variety of cellular events, with biological consequences and potential for therapeutic opportunities in disease settings, such as cancer."	"WRN-Mutated Colorectal Cancer Is Characterized by a Distinct Genetic Phenotype. Werner syndrome gene (WRN) contributes to DNA repair. In cancer, WRN mutations (WRN-mut) lead to genomic instability. Thus, WRN is a promising target in cancers with microsatellite instability (MSI). We assessed this study to investigate the molecular profile of WRN-mut in colorectal cancer (CRC). Tumor samples were analyzed using next-generation sequencing (NGS) in-situ hybridization and immunohistochemistry. Tumor mutational burden (TMB) was calculated based on somatic nonsynonymous missense mutations. Determination of tumor mismatch repair (MMR) or microsatellite instability (MSI) status was conducted by fragment analysis. WRN-mut were detected in 80 of 6854 samples (1.2%). WRN-mut were more prevalent in right-sided compared to left-sided CRC (2.5% vs. 0.7%, p &lt; 0.0001). TMB, PD-L1 and MSI-H/dMMR were significantly higher in WRN-mut than in WRN wild-type (WRN-wt). WRN-mut were associated with a higher TMB in the MSI-H/dMMR and in the MSS (microsatellite stable) subgroups. Several genetic differences between WRN-mut and WRN-wt CRC were observed, i.e., TP53 (47% vs. 71%), KRAS (34% vs. 49%) and APC (56% vs. 73%). This is the largest molecular profiling study investigating the genetic landscape of WRN-mut CRCs so far. A high prevalence of MSI-H/dMMR, higher TMB and PD-L1 in WRN-mut tumors were observed. Our data might serve as an additional selection tool for trials testing immune checkpoint antibodies in WRN-mut CRC."	"Contribution of Immunoscore and Molecular Features to Survival Prediction in Stage III Colon Cancer. The American Joint Committee on Cancer staging and other prognostic tools fail to account for stage-independent variability in outcome. We developed a prognostic classifier adding Immunoscore to clinicopathological and molecular features in patients with stage III colon cancer. Patient (n = 559) data from the FOLFOX arm of adjuvant trial NCCTG N0147 were used to construct Cox models for predicting disease-free survival (DFS). Variables included age, sex, T stage, positive lymph nodes (+LNs), N stage, performance status, histologic grade, sidedness, KRAS/BRAF, mismatch repair, and Immunoscore (CD3<sup>+</sup>, CD8<sup>+</sup> T-cell densities). After determining optimal functional form (continuous or categorical) and within Cox models, backward selection was performed to analyze all variables as candidate predictors. All statistical tests were two-sided. Poorer DFS was found for tumors that were T4 vs T3 (hazard ratio [HR] = 1.76, 95% confidence interval [CI] = 1.19 to 2.60; P = .004), right- vs left-sided (HR = 1.52, 95% CI = 1.14 to 2.04; P = .005), BRAF <sup>V600E</sup> (HR = 1.74, 95% CI = 1.26 to 2.40; P &lt; .001), mutant KRAS (HR = 1.66, 95% CI = 1.08 to 2.55; P = .02), and low vs high Immunoscore (HR = 1.69, 95% CI = 1.22 to 2.33; P = .001) (all P &lt; .02). Increasing numbers of +LNs and lower continuous Immunoscore were associated with poorer DFS that achieved significance (both Ps&lt; .0001). After number of +LNs, T stage, and BRAF/KRAS, Immunoscore was the most informative predictor of DFS shown multivariately. Among T1-3 N1 tumors, Immunoscore was the only variable associated with DFS that achieved statistical significance. A nomogram was generated to determine the likelihood of being recurrence-free at 3 years. The Immunoscore can enhance the accuracy of survival prediction among patients with stage III colon cancer."	"Argonaute proteins: Structural features, functions and emerging roles. Argonaute proteins are highly conserved in almost all organisms. They not only involve in the biogenesis of small regulatory RNAs, but also regulate gene expression and defend against foreign pathogen invasion via small RNA-mediated gene silencing pathways. As a key player in these pathways, the abnormal expression and/or mis-modifications of Argonaute proteins lead to the disorder of small RNA biogenesis and functions, thus influencing multiply biological processes and disease development, especially cancer. In this review, we focus on the post-translational modifications and novel functions of Argonaute proteins in alternative splicing, host defense and genome editing."	"CXCR2 signaling promotes secretory cancer-associated fibroblasts in pancreatic ductal adenocarcinoma. Pancreatic ductal adenocarcinoma (PDAC) remains one of the most challenging malignancies. Desmoplasia and tumor-supporting inflammation are hallmarks of PDAC. The tumor microenvironment contributes significantly to tumor progression and spread. Cancer-associated fibroblasts (CAFs) facilitate therapy resistance and metastasis. Recent reports emphasized the concurrence of multiple subtypes of CAFs with diverse roles, fibrogenic, and secretory. C-X-C motif chemokine receptor 2 (CXCR2) is a chemokine receptor known for its role during inflammation and its adverse role in PDAC. Oncogenic Kras upregulates CXCR2 and its ligands and, thus, contribute to tumor proliferation and immunosuppression. CXCR2 deletion in a PDAC syngeneic mouse model produced increased fibrosis revealing a potential undescribed role of CXCR2 in CAFs. In this study, we demonstrate that the oncogenic Kras-CXCR2 axis regulates the CAFs function in PDAC and contributes to CAFs heterogeneity. We observed that oncogenic Kras and CXCR2 signaling alter CAFs, producing a secretory CAF phenotype with low fibrogenic features; and increased secretion of pro-tumor cytokines and CXCR2 ligands, utilizing the NF-κB activity. Finally, using syngeneic mouse models, we demonstrate that oncogenic Kras is associated with secretory CAFs and that CXCR2 inhibition promotes activation of fibrotic cells (myofibroblasts) and impact tumors in a mutation-dependent manner."	"Targeted Therapy for Non-Small Cell Lung Cancer. Lung cancer is a heterogeneous disease, and the availability of comprehensive genomic profiling has allowed for the characterization of its molecular subtypes. This has increased the ability to deliver &quot;personalized medicines&quot; by tailoring therapies to target driver mutations in a patient's cancer. The development of targeted therapies for non-small cell lung cancer (NSCLC) has helped define the era of precision medicine throughout oncology. This article aims to contextualize recent research and provide an updated summary of targeted therapies available for patients with NSCLC. With practitioners and clinical researchers in mind, we note standard of care therapies, important approvals, practice guidelines, and treatments in development. The first section discusses mutations in the epidermal growth factor receptor (EGFR) gene, and the second section examines rearrangements in the anaplastic lymphoma kinase (ALK) and ROS1 fusions. Finally, we explore the rarer molecular alterations in BRAF, RET, MET, HER2, and KRAS. Given the many available therapies, it is important to understand the molecular alterations in NSCLC, and how to target them."	"Experimental Treatment of Mucinous Peritoneal Metastases Using Patient-Derived Xenograft Models. Mucinous peritoneal metastases (PM) generally respond poorly to systemic treatment, and there is a clear unmet need for new treatment strategies to improve survival and quality of life for patients with PM. In this work, the growth inhibitory effect of five drugs (oxaliplatin (OXA; 5 mg/kg), irinotecan (IRI; 60 mg/kg), cabazitaxel (CBZ; 15 or 30 mg/kg), regorafenib (REG; 10, 30 or 60 mg/kg), and capecitabine (CAP; 359 or 755 mg/kg) was investigated in three orthotopic patient-derived xenograft models that mimic mucinous PM. Drugs were administered intraperitoneally (i.p.) as monotherapy weekly for 4 weeks (OXA, IRI), as one single i.p. injection (CBZ), or orally (REG, CAP) daily 5 of 7 days per week for four weeks, and i.p. tumor growth and survival were monitored and compared between treatment groups. The i.p. administered drugs (OXA, IRI, CBZ) had the strongest growth inhibitory effect, with OXA being most efficacious, completely inhibiting tumor growth in the majority of the animals. CBZ and IRI also strongly inhibited tumor growth, but with more variation in efficacy between the models. A moderate reduction in tumor growth was observed in all models treated with REG, while CAP had little to no growth inhibitory effect. Targeted next-generation-sequencing has identified mutational profiles typically associated with PM (mutations in KRAS, GNAS, and BRAF oncogenes), supporting the representativeness of the models. The results presented in this work support the continued exploration of i.p. treatment protocols for PM, with OXA remaining and CBZ emerging as particularly interesting candidates for further studies."	"Protein Kinase D1, Reduced in Human Pancreatic Tumors, Increases Secretion of Small Extracellular Vesicles From Cancer Cells That Promote Metastasis to Lung in Mice. Pancreatic tumor cells release extracellular vesicles (sEVs, exosomes) that contain lipids and proteins, RNA, and DNA molecules might promote formation of metastases. It is not clear what cargo these vesicles contain and how they are released. Protein kinase D1 (PRKD1) inhibits cell motility and is believed to be dysregulated in pancreatic ductal adenocarcinomas (PDACs). We investigated whether it regulates production of sEVs in pancreatic cancer cells and their ability to form pre-metastatic niches for pancreatic cancer cells in mice. We analyzed data from UALCAN and human pancreatic tissue microarrays to compare levels of PRKD1 between tumor and non-tumor tissues. We studied mice with pancreas-specific disruption of Prkd1 (PRKD1<sup>KO</sup> mice), mice that express oncogenic KRAS (KC mice), and KC mice with disruption of Prkd1 (PRKD1<sup>KO</sup>-KC mice). Subcutaneous xenograft tumors were grown in NSG mice from Panc1 cells; some mice were then given injections of sEVs. Pancreata and lung tissues from mice were analyzed by histology, immunohistochemistry, and/or quantitative PCR; we performed nanoparticle tracking analysis of plasma sEVs. The Prkd1 gene was disrupted in Panc1 cells using CRISPR-Cas9 or knocked down with small hairpin RNAs, or PRKD1 activity was inhibited with the selective inhibitor CRT0066101. Pancreatic cancer cell lines were analyzed by gene-expression microarray, quantitative PCR, immunoblot, and immunofluorescence analyses. sEVs secreted by Panc1 cell lines were analyzed by flow cytometry, transmission electron microscopy, and mass spectrometry. Levels of PRKD1 were reduced in human PDAC tissues compared with non-tumor tissues. PRKD1<sup>KO</sup>-KC mice developed more pancreatic intraepithelial neoplasia, at a faster rate, than KC mice, and had more lung metastases and significantly shorter average survival time. Serum from PRKD1<sup>KO</sup>-KC mice had increased levels of sEVs, compared with KC mice. Pancreatic cancer cells with loss or inhibition of PRKD1 increased secretion of sEVs; loss of PRKD1 reduced phosphorylation of its substrate, cortactin, resulting in increased F-actin levels at the plasma membrane. sEVs from cells with loss or reduced expression of PRKD1 had altered content, and injection of these sEVs into mice increased metastasis of xenograft tumors to lung, compared with sEVs from pancreatic cells that expressed PRKD1. PRKD1-deficient pancreatic cancer cells showed increased loading of integrin α6β4 into sEVs-a process that required CD82. Human PDAC have reduced levels of PRKD1 compared with non-tumor pancreatic tissues. Loss of PRKD1 results in reduced phosphorylation of cortactin in pancreatic cancer cell lines, resulting in increased in F-actin at the plasma membrane and increased release of sEVs, with altered content. These sEVs promote metastasis of xenograft and pancreatic tumors to lung in mice."	"Metformin selectively inhibits metastatic colorectal cancer with the KRAS mutation by intracellular accumulation through silencing MATE1. Metastatic colorectal cancer (mCRC) patients have poor overall survival despite using irinotecan- or oxaliplatin-based chemotherapy combined with anti-EGFR (epidermal growth factor receptor) drugs, especially those with the oncogene mutation of KRAS Metformin has been reported as a potentially novel antitumor agent in many experiments, but its therapeutic activity is discrepant and controversial so far. Inspiringly, the median survival time for KRAS-mutation mCRC patients with diabetes on metformin is 37.8 mo longer than those treated with other hypoglycemic drugs in combination with standard systemic therapy. In contrast, metformin could not improve the survival of mCRC patients with wild-type KRAS Interestingly, metformin is preferentially accumulated in KRAS-mutation mCRC cells, but not wild-type ones, in both primary cell cultures and patient-derived xenografts, which is in agreement with its tremendous effect in KRAS-mutation mCRC. Mechanistically, the mutated KRAS oncoprotein hypermethylates and silences the expression of multidrug and toxic compound extrusion 1 (MATE1), a specific pump that expels metformin from the tumor cells by up-regulating DNA methyltransferase 1 (DNMT1). Our findings provide evidence that KRAS-mutation mCRC patients benefit from metformin treatment and targeting MATE1 may provide a strategy to improve the anticancer response of metformin."	"Synthesis of novel PET tracer <sup>124</sup>I-trametinib for MAPK/ERK kinase distribution and resistance monitoring. Trametinib (MEKINIST™) is an extremely potent allosteric inhibitor of MEK1/2 that has been approved for treatment of metastatic melanoma and anaplastic thyroid cancer in patients with confirmed BRAFV600E/K mutations. Though highly efficacious, adverse side effects including skin, gastrointestinal and hepatic toxicity, are dose limiting and can lead to treatment termination. Development of a non-invasive tool to visualize and quantify the delivery and distribution of trametinib (either as single agent or in combination with other therapeutics) to tumors and organs would be very helpful in assessing therapeutic index, personalizing individual dose and potentially predict resistance to therapy. To address these issues, we have developed a radiolabeled trametinib and evaluated the in vitro and in vivo properties. <sup>123</sup>I-, <sup>124</sup>I- and <sup>131</sup>I-trametinib, pure tracer analogs to trametinib, were synthesized in &gt;95% purity with average yield of 69.7% and &gt;100GBq/µmol specific activity. Overall, <sup>124</sup>I-trametinib uptake in a panel of cancer cell lines can be blocked with cold trametinib confirming specificity of the radiotracer in vitro and in vivo. <sup>124</sup>I-Trametinib was taken up at higher rates in KRAS and BRAF mutant cell lines compared to wild type KRAS cancer cell lines. In vivo, biodistribution revealed high uptake in the liver 2 hours post injection followed by clearance through the gastrointestinal tract over 4 days. Importantly, higher than expected uptake was observed in the lung and heart for up to 24 hours. Peak uptake in the skin and gastrointestinal tract was observed between 6 and 24 hours while in B16F10 melanoma bearing mice peak tumor concentrations were achieved between 24 to 48 hours. Tumor uptake relative to muscle and skin was relatively low, peaking at 3.4- to 8.1-fold by 72 hours, respectively. Biodistribution of <sup>124</sup>I-trametinib was significantly reduced in mice on trametinib therapy providing a quantitative method to observe MEK inhibition in vivo. <sup>124</sup>I-trametinib serves as a tool to personalize in vivo the dose instead of using the current single fixed dose scheme and when combined with radiomic data monitor emergence of therapy resistance. In addition, the production of iodinated trametinib affords researchers the ability to measure drug distribution for improved drug delivery studies."	"SETD5-Coordinated Chromatin Reprogramming Regulates Adaptive Resistance to Targeted Pancreatic Cancer Therapy. Molecular mechanisms underlying adaptive targeted therapy resistance in pancreatic ductal adenocarcinoma (PDAC) are poorly understood. Here, we identify SETD5 as a major driver of PDAC resistance to MEK1/2 inhibition (MEKi). SETD5 is induced by MEKi resistance and its deletion restores refractory PDAC vulnerability to MEKi therapy in mouse models and patient-derived xenografts. SETD5 lacks histone methyltransferase activity but scaffolds a co-repressor complex, including HDAC3 and G9a. Gene silencing by the SETD5 complex regulates known drug resistance pathways to reprogram cellular responses to MEKi. Pharmacological co-targeting of MEK1/2, HDAC3, and G9a sustains PDAC tumor growth inhibition in vivo. Our work uncovers SETD5 as a key mediator of acquired MEKi therapy resistance in PDAC and suggests a context for advancing MEKi use in the clinic."	"Genomic Profiling of Smoldering Multiple Myeloma Identifies Patients at a High Risk of Disease Progression. Smoldering multiple myeloma (SMM) is a precursor condition of multiple myeloma (MM) with a 10% annual risk of progression. Various prognostic models exist for risk stratification; however, those are based on solely clinical metrics. The discovery of genomic alterations that underlie disease progression to MM could improve current risk models. We used next-generation sequencing to study 214 patients with SMM. We performed whole-exome sequencing on 166 tumors, including 5 with serial samples, and deep targeted sequencing on 48 tumors. We observed that most of the genetic alterations necessary for progression have already been acquired by the diagnosis of SMM. Particularly, we found that alterations of the mitogen-activated protein kinase pathway (KRAS and NRAS single nucleotide variants [SNVs]), the DNA repair pathway (deletion 17p, TP53, and ATM SNVs), and MYC (translocations or copy number variations) were all independent risk factors of progression after accounting for clinical risk staging. We validated these findings in an external SMM cohort by showing that patients who have any of these three features have a higher risk of progressing to MM. Moreover, APOBEC associated mutations were enriched in patients who progressed and were associated with a shorter time to progression in our cohort. SMM is a genetically mature entity whereby most driver genetic alterations have already occurred, which suggests the existence of a right-skewed model of genetic evolution from monoclonal gammopathy of undetermined significance to MM. We identified and externally validated genomic predictors of progression that could distinguish patients at high risk of progression to MM and, thus, improve on the precision of current clinical models."	"Molecular testing on bronchial washings for the diagnosis and predictive assessment of lung cancer. Cytopathological analyses of bronchial washings (BWs) collected during fibre-optic bronchoscopy are often inconclusive for lung cancer diagnosis. To address this issue, we assessed the suitability of conducting molecular analyses on BWs, with the aim to improve the diagnosis and outcome prediction of lung cancer. The methylation status of RASSF1A, CDH1, DLC1 and PRPH was analysed in BW samples from 91 lung cancer patients and 31 controls, using a novel two-colour droplet digital methylation-specific PCR (ddMSP) technique. Mutations in ALK, BRAF, EGFR, ERBB2, KRAS, MAP2K1, MET, NRAS, PIK3CA, ROS1 and TP53 and gene fusions of ALK, RET and ROS1 were also investigated, using next-generation sequencing on 73 lung cancer patients and 14 tumour-free individuals. Our four-gene methylation panel had significant diagnostic power, with 97% sensitivity and 74% specificity (relative risk, 7.3; odds ratio, 6.1; 95% confidence interval, 12.7-127). In contrast, gene mutation analysis had a remarkable value for predictive, but not for diagnostic, purposes. Actionable mutations in EGFR, HER2 and ROS1 as well as in other cancer genes (KRAS, PIK3CA and TP53) were detected. Concordance with gene mutations uncovered in tumour biopsies was higher than 90%. In addition, bronchial-washing analyses permitted complete patient coverage and the detection of additional actionable mutations. In conclusion, BWs are a useful material on which to perform molecular tests based on gene panels: aberrant gene methylation and mutation analyses could be performed as approaches accompanying current diagnostic and predictive assays during the initial workup phase. This study establishes the grounds for further prospective investigation."	"Tissue gene mutation profiles in patients with colorectal cancer and their clinical implications. Colorectal cancer (CRC) is one of the most common types of cancer in the world, and targeted therapy is frequently used in the clinical management of the disease. A complete and accurate picture of tissue gene mutations is therefore critical. Tissue specimens from 117 patients with CRC were used for high throughput DNA next-generation sequencing (NGS) analysis. Hotspots from 50 genes frequently associated with the development and progression of solid tumors were targeted for sequencing. Characterization of tissue gene mutations was performed; the tissue mutation positive rates of KRAS, KIT, PIK3CA, MET and EGFR were 52.1, 19.7, 29.9, 15.4 and 14.5%, respectively. The mutation positive rates of TP53, APC, CDKN2A, STK11 and FBXW7 were 65.8, 39.3, 32.5, 19.7 and 19.7%, respectively. The most frequent KRAS mutations were G12A/C/D/S/V, accounting for 61.2% of all KRAS mutations. The most frequent TP53 mutations were R273C/G/H/L, accounting for 8.5% of all TP53 mutations. The most frequent APC mutation was E1554fs, accounting for 19.7% of all APC mutations. IDH1 R132C/H, KIT M541L, MET N375S, and SMAD4 R361C/H were also frequently identified. TP53 mutations were more common in patients ≥60 years old (P&lt;0.05), and IDH1 mutations were more common in male patients (P&lt;0.05). NGS 50 gene panel sequencing provides a comprehensive tissue gene mutation profile which may significantly improve clinical management."	"Sorafenib and everolimus in patients with advanced solid tumors and KRAS-mutated NSCLC: A phase I trial with early pharmacodynamic FDG-PET assessment. Treatment of patients with solid tumors and KRAS mutations remains disappointing. One option is the combined inhibition of pathways involved in RAF-MEK-ERK and PI3K-AKT-mTOR. Patients with relapsed solid tumors were treated with escalating doses of everolimus (E) 2.5-10.0 mg/d in a 14-day run-in phase followed by combination therapy with sorafenib (S) 800 mg/d from day 15. KRAS mutational status was assessed retrospectively in the escalation phase. Extension phase included KRAS-mutated non-small-cell lung cancer (NSCLC) only. Pharmacokinetic analyses were accompanied by pharmacodynamics assessment of E by FDG-PET. Efficacy was assessed by CT scans every 6 weeks of combination. Of 31 evaluable patients, 15 had KRAS mutation, 4 patients were negative for KRAS mutation, and the KRAS status remained unknown in 12 patients. Dose-limiting toxicity (DLT) was not reached. The maximum tolerated dose (MTD) was defined as 7.5 mg/d E + 800 mg/d S due to toxicities at previous dose level (10 mg/d E + 800 mg/d S) including leucopenia/thrombopenia III° and pneumonia III° occurring after the DLT interval. The metabolic response rate in FDG-PET was 17% on day 5 and 20% on day 14. No patient reached partial response in CT scan. Median progression free survival (PFS) and overall survival (OS) were 3.25 and 5.85 months, respectively. Treatment of patients with relapsed solid tumors with 7.5 mg/d E and 800 mg/d S is safe and feasible. Early metabolic response in FDG-PET was not confirmed in CT scan several weeks later. The combination of S and E is obviously not sufficient to induce durable responses in patients with KRAS-mutant solid tumors."	"Loss of Wasl improves pancreatic cancer outcome. Several studies have suggested an oncogenic role for the neural Wiskott-Aldrich syndrome protein (N-WASP, encoded by the Wasl gene), but thus far, little is known about its function in pancreatic ductal adenocarcinoma (PDAC). In this study, we performed in silico analysis of WASL expression in PDAC patients and found a correlation between low WASL expression and prolonged survival. To clarify the role of Wasl in pancreatic carcinogenesis, we used 2 oncogenic Kras-based PDAC mouse models with pancreas-specific Wasl deletion. In line with human data, both mouse models had an increased survival benefit due to either impaired tumor development in the presence of the tumor suppressor Trp53 or the delayed tumor progression and senescent phenotype upon genetic ablation of Trp53. Mechanistically, loss of Wasl resulted in cell-autonomous senescence through displacement of the N-WASP binding partners WASP-interacting protein (WIP) and p120ctn; vesicular accumulation of GSK3β, as well as YAP1 and phosphorylated β-catenin, which are components of the destruction complex; and upregulation of Cdkn1a(p21), a master regulator of senescence. Our findings, thus, indicate that Wasl functions in an oncogenic manner in PDAC by promoting the deregulation of the p120-catenin/β-catenin/p21 pathway. Therefore, strategies to reduce N-WASP activity might improve the survival outcomes of PDAC patients."	"Cisplatin treatment induced interleukin 6 and 8 production alters lung adenocarcinoma cell migration in an oncogenic mutation dependent manner. The predominant metastatic site of lung cancer (LC) is the brain. Although outdated, conventional cisplatin treatment is still the main therapeutic approach for patients with advanced non-small cell lung cancer (NSCLC), since targeted therapy that offers better tumor control is not always possible. In the present study brain metastasis associated cytokine expression was investigated in primary NSCLC adenocarcinoma (AC) tissues with known oncogenic mutations in the presence or absence of platina based and tyrosine kinase inhibitor (TKI) drugs. Primary lung tumor samples were isolated, DNA was sequenced and then the samples were grouped based on mutation. Experiments were also performed using KRAS mutant A549 and EGFR mutant PC-9 cells. Drug response was analyzed in three dimensional (3D) tissue cultures. We assessed drug response and IL-6 and IL-8 cytokine expression in relation to cellular invasion using ATP dependent cell viability, qRT-PCR analysis, cytokine bead array, and migration assay. In 3D co-cultures, primary NSCLC derived cells harboring EGFR mutation responded better to erlotinib treatment than KRAS mutant or KRAS/EGFR wild type (WT) cancer cells. In contrast, under the same culture conditions KRAS/EGFR WT or KRAS mutant cancer cells are more sensitive to cisplatin than EGFR mutant cells. Drug response and pro-inflammatory cytokine production varied depending on the driver mutations. Cisplatin but not erlotinib increased both IL-6 and IL-8 secretion and only IL-6 increased cellular migration and proliferation. In vitro assays are available to determine the response to planned therapeutic approach of lung cancer subtypes. The sequence of administration of therapeutic drugs determines cytokine production and therefore therapeutic response."	"Correction to: Small Molecule KRAS Agonist for Mutant KRAS Cancer Therapy. An amendment to this paper has been published and can be accessed via the original article."	"Acidic fibroblast growth factor underlies microenvironmental regulation of MYC in pancreatic cancer. Despite a critical role for MYC as an effector of oncogenic RAS, strategies to target MYC activity in RAS-driven cancers are lacking. In genetically engineered mouse models of lung and pancreatic cancer, oncogenic KRAS is insufficient to drive tumorigenesis, while addition of modest MYC overexpression drives robust tumor formation, suggesting that mechanisms beyond the RAS pathway play key roles in MYC regulation and RAS-driven tumorigenesis. Here we show that acidic fibroblast growth factor (FGF1) derived from cancer-associated fibroblasts (CAFs) cooperates with cancer cell-autonomous signals to increase MYC level, promoter occupancy, and activity. FGF1 is necessary and sufficient for paracrine regulation of MYC protein stability, signaling through AKT and GSK-3β to increase MYC half-life. Patient specimens reveal a strong correlation between stromal CAF content and MYC protein level in the neoplastic compartment, and identify CAFs as the specific source of FGF1 in the tumor microenvironment. Together, our findings demonstrate that MYC is coordinately regulated by cell-autonomous and microenvironmental signals, and establish CAF-derived FGF1 as a novel paracrine regulator of oncogenic transcription."	"Utility of DNA Profiling From Main Pancreatic Duct Fluid by Endoscopic Ultrasound and Endoscopic Retrograde Cholangiopancreatography to Screen for Malignant Potential. The yield of genetic testing of main pancreatic duct (MPD) fluid collected during endoscopic retrograde cholangiopancreatography (ERCP) versus endoscopic ultrasound-guided fine-needle aspiration is unclear. Consecutive MPD fluid samples obtained by endoscopic ultrasound/ERCP with DNA profiling were reviewed, excluding specimens designated &quot;no amplification.&quot; Invasive disease included invasive cancer or malignant cytology. One hundred ten samples from 109 patients who underwent ERCP (n = 32) or endoscopic ultrasound-guided fine-needle aspiration (n = 78) were analyzed (2007-2018). Leading indications were dilated MPD and suspected intraductal papillary mucinous neoplasm. Elevated DNA quantity, KRAS, loss of heterozygosity (LOH), and GNAS mutations occurred in 61.5%, 25.5%, 16.4%, and 8.7% of samples, respectively. Elevated DNA quantity occurred more frequently in ERCP samples (84.4% vs 51.9%, P = 0.002); other mutation yields were similar (P &gt; 0.05). Invasive pathology (P = 0.032) was associated with LOH in the subset of patients who underwent surgery (n = 44). Adverse events occurred more frequently after ERCP (28.1% vs 9.0%, P = 0.016). Endoscopic MPD fluid sampling may yield genetic data to improve diagnosis and risk stratification. In our surgical cohort, LOH was the sole predictor of invasive pathology. Endoscopic ultrasound-guided fine-needle aspiration of MPD fluid, when possible, is preferred because of superior safety profile."	"Structure of two G-quadruplexes in equilibrium in the KRAS promoter. KRAS is one of the most mutated oncogenes and still considered an undruggable target. An alternative strategy would consist in targeting its gene rather than the protein, specifically the formation of G-quadruplexes (G4) in its promoter. G4 are secondary structures implicated in biological processes, which can be formed among G-rich DNA (or RNA) sequences. Here we have studied the major conformations of the commonly known KRAS 32R, or simply 32R, a 32 residue sequence within the KRAS Nuclease Hypersensitive Element (NHE) region. We have determined the structure of the two major stable conformers that 32R can adopt and which display slow equilibrium (&gt;ms) with each other. By using different biophysical methods, we found that the nucleotides G9, G25, G28 and G32 are particularly implicated in the exchange between these two conformations. We also showed that a triad at the 3' end further stabilizes one of the G4 conformations, while the second conformer remains more flexible and less stable."	"Trop2 is upregulated in the transition to dysplasia in the metaplastic gastric mucosa. Intestinal-type gastric adenocarcinoma arises in a field of pre-existing metaplasia. While biomarkers of cancer and metaplasia have been identified, the definition of dysplastic transition as a critical point in the evolution of cancer has remained obscure. We have evaluated Trop2 as a putative marker of the transition from metaplasia to dysplasia in the stomach in multiple mouse models of metaplasia induction and progression. In addition, TROP2 expression was evaluated in human samples by immunostaining tissue microarrays for metaplasia, dysplasia, and gastric cancer. Dysplastic mouse organoids were evaluated in vitro following shRNA knockdown of Trop2 expression. In mouse models, no Trop2 was observed in the normal corpus and Trop2 was not induced in acute models of metaplasia induction with either L635 or DMP-777. In Mist1-Kras mice, Trop2 expression was not observed in metaplasia at 1 month after Kras induction, but was observed in dysplastic glands at 3-4 months after Kras induction. In human tissues, no Trop2 was observed in normal corpus mucosa or SPEM, but Trop2 expression was observed in incomplete intestinal metaplasia, with significantly less expression in complete intestinal metaplasia. Trop2 expression was observed in all dysplastic and 84% of gastric cancer lesions, although expression levels were variable. Dysplastic mouse organoids from Mist1-Kras mice expressed Trop2 strongly. Knockdown of Trop2 with shRNA markedly reduced organoid growth and budding behavior, and induced the upregulation of apical villin expression. We conclude that Trop2 is upregulated in the transition to dysplasia in the stomach and promotes dysplastic cell behaviors. © 2020 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Mutated RAP1GDS1 causes a new syndrome of dysmorphic feature, intellectual disability &amp; speech delay. RAP1GDS1 (RAP1, GTP-GDP dissociation stimulator 1), also known as SmgGDS, is a guanine nucleotide exchange factor (GEF) that regulates small GTPases, including, RHOA, RAC1, and KRAS. RAP1GDS1 was shown to be highly expressed in different tissue types including the brain. However, mutations in the RAP1GDS1 gene associated with human diseases have not previously been reported. We report on four affected individuals, presenting intellectual disability, global developmental delay (GDD), and hypotonia. The probands' DNA was subjected to whole-genome sequencing, revealing a homozygous splice acceptor site mutation in the RAP1GDS1 gene (1444-1G &gt; A). Sanger sequencing was performed to confirm the segregation of the variant in two Saudi families. The possible aberrant splicing in the patients' RNA was investigated using RT-PCR and changes in mRNA expression of the patients were confirmed using qRT-PCR. The identified splice variant was found to segregate within the two families. RT-PCR showed that the mutation affected RAP1GDS1 gene splicing, resulting in the production of aberrant transcripts in the affected individuals. Quantitative gene expression analysis demonstrated that the RAP1GDS1 mRNA expression in all the probands was significantly decreased compared to that of the control, and Sanger sequencing of the probands' cDNA revealed skipping of exon 13, further strengthening the pathogenicity of this variant. We are the first to report the mutation of the RAP1GDS1 gene as a potential cause of GDD and hypotonia. However, further investigations into the molecular mechanisms involved are required to confirm the role of RAP1GDS1 gene in causing GDD and hypotonia."	"The Interleukin 22 Pathway Interacts with Mutant KRAS to Promote Poor Prognosis in Colon Cancer. The cytokine IL22 promotes tumor progression in murine models of colorectal cancer. However, the clinical significance of IL22 in human colorectal cancer remains unclear. We sought to determine whether the IL22 pathway is associated with prognosis in human colorectal cancer, and to identify mechanisms by which IL22 can influence disease progression. Transcriptomic data from stage II/III colon cancers in independent discovery (GSE39582 population-based cohort, N = 566) and verification (PETACC3 clinical trial, N = 752) datasets were used to investigate the association between IL22 receptor expression (encoded by the genes IL22RA1 and IL10RB), tumor mutation status, and clinical outcome using Cox proportional hazard models. Functional interactions between IL22 and mutant KRAS were elucidated using human colorectal cancer cell lines and primary tumor organoids. Transcriptomic analysis revealed a poor-prognosis subset of tumors characterized by high expression of IL22RA1, the alpha subunit of the heterodimeric IL22 receptor, and KRAS mutation [relapse-free survival (RFS): HR = 2.93, P = 0.0006; overall survival (OS): HR = 2.45, P = 0.0023]. KRAS mutations showed a similar interaction with IL10RB and conferred the worst prognosis in tumors with high expression of both IL22RA1 and IL10RB (RFS: HR = 3.81, P = 0.0036; OS: HR = 3.90, P = 0.0050). Analysis of human colorectal cancer cell lines and primary tumor organoids, including an isogenic cell line pair that differed only in KRAS mutation status, showed that IL22 and mutant KRAS cooperatively enhance cancer cell proliferation, in part through augmentation of the Myc pathway. Interactions between KRAS and IL22 signaling may underlie a previously unrecognized subset of clinically aggressive colorectal cancer that could benefit from therapeutic modulation of the IL22 pathway."	"EGFR Blockade Reverts Resistance to KRAS<sup>G12C</sup> Inhibition in Colorectal Cancer. Most patients with KRAS<sup>G12C</sup>-mutant non-small cell lung cancer (NSCLC) experience clinical benefit from selective KRAS<sup>G12C</sup> inhibition, whereas patients with colorectal cancer bearing the same mutation rarely respond. To investigate the cause of the limited efficacy of KRAS<sup>G12C</sup> inhibitors in colorectal cancer, we examined the effects of AMG510 in KRAS<sup>G12C</sup> colorectal cancer cell lines. Unlike NSCLC cell lines, KRAS<sup>G12C</sup> colorectal cancer models have high basal receptor tyrosine kinase (RTK) activation and are responsive to growth factor stimulation. In colorectal cancer lines, KRAS<sup>G12C</sup> inhibition induces higher phospho-ERK rebound than in NSCLC cells. Although upstream activation of several RTKs interferes with KRAS<sup>G12C</sup> blockade, we identify EGFR signaling as the dominant mechanism of colorectal cancer resistance to KRAS<sup>G12C</sup> inhibitors. The combinatorial targeting of EGFR and KRAS<sup>G12C</sup> is highly effective in colorectal cancer cells and patient-derived organoids and xenografts, suggesting a novel therapeutic strategy to treat patients with KRAS<sup>G12C</sup> colorectal cancer. SIGNIFICANCE: The efficacy of KRAS<sup>G12C</sup> inhibitors in NSCLC and colorectal cancer is lineage-specific. RTK dependency and signaling rebound kinetics are responsible for sensitivity or resistance to KRAS<sup>G12C</sup> inhibition in colorectal cancer. EGFR and KRAS<sup>G12C</sup> should be concomitantly inhibited to overcome resistance to KRAS<sup>G12C</sup> blockade in colorectal tumors.See related commentary by Koleilat and Kwong, p. 1094.This article is highlighted in the In This Issue feature, p. 1079."	"Azasteroid Alkylators as Dual Inhibitors of AKT and ERK Signaling for the Treatment of Ovarian Carcinoma. (1) Background: Previous findings show that lactam steroidal alkylating esters display improved therapeutic efficacy with reduced toxicity. The aim of this study was to evaluate the anticancer activity of two newly synthesized aza-steroid alkylators (ENGA-L06E and ENGA-L08E) against human ovarian carcinoma cells, and consequently, the dual inhibition of RAS/PI3K/AKT and RAS/RAF/MEK/ERK signaling pathways, both of which are closely associated with ovarian cancer; (2) Methods: The in vitro cytostatic and cytotoxic effects of ENGA-L06E and ENGA-L08E were evaluated in a panel of five human ovarian cancer cell lines, as well as in in vivo studies. ENGA-L06E and ENGA-L08E, in addition to another two aniline-mustard alkylators, POPAM and melphalan (L-PAM), were utilized in order to determine the acute toxicity and antitumor efficacy on two human ovarian xenograft models. Also, in silico studies were performed in order to investigate the dual inhibition of ENGA-L06E and ENGA-L08E on RAS/PI3K/AKT and RAS/RAF/MEK/ERK signaling pathways; (3) Results: Both, in vitro and in vivo studies demonstrated that ENGA-L06E and ENGA-L08E were significantly more effective with a lower toxicity profile in comparison to POPAM and L-PAM alkylators. Moreover, in silico studies demonstrated that the two new aza-steroid alkylators could act as efficient inhibitors of the phosphorylation of AKT and ERK1/2 molecules; and (4) Conclusions: Both ENGA-L06E and ENGA-L08E demonstrated high anticancer activity through the inhibition of the PI3K-AKT and KRAS-ERK signaling pathways against human ovarian carcinoma, and thus constituting strong evidence towards further clinical development."	"Tumor Location Is Associated With the Prevalence of Braf And Pik3ca Mutations in Patients with Wild-Type Ras Colorectal Cancer: A Prospective Multi-Center Cohort Study in Japan. Primary tumor location is a critical prognostic factor that also impacts the efficacy of anti-epidermal growth factor receptor (EGFR) therapy in wild-type RAS (KRAS/NRAS) metastatic colorectal cancer (CRC). However, the association between the incidence of BRAF and phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha (PIK3CA) mutations and primary tumor location remains unclear. We prospectively collected tumor samples and clinical data of patients from 15 hospitals between August 2014 and April 2016 to investigate RAS, BRAF, and PIK3CA mutations using a polymerase chain reaction-based assay. According to the primary tumor location, patients were classified to right-sided (from cecum to splenic flexure) and left-sided (from descending colon to rectum) tumor groups. In total, 577 patients with CRC were investigated, 331 patients (57%) had CRC with wild-type RAS; of these 331 patients, 10.5%, 4.8%, and 5.9% patients harbored BRAF<sup>V600E</sup>, BRAF<sup>non-V600E</sup>, and PIK3CA mutations, respectively. BRAF/PIK3CA mutations were more frequent in females, patients with right-sided tumors, and patients with peritoneal metastasis cases and less frequent in patients with liver metastases. The prevalence rates of BRAF<sup>V600E</sup> and PIK3CA mutations were higher in patients with right-sided tumors than in those with left-sided tumors (32.3% vs. 4.8% and 17.2% vs. 3.6%, respectively). More than half of the patients with right-sided CRC and wild-type RAS harbored BRAF/PIK3CA mutations, including BRAF<sup>non-V600E</sup>, which may contribute to the difference in the anti-EGFR efficacy between the right- and left-sided CRC."	"Resveratrol slows the tumourigenesis of pancreatic cancer by inhibiting NFκB activation. Pancreatic ductal adenocarcinoma (PDAC) is a highly malignant tumour with an extremely poor prognosis due to its insidious initiation and a lack of therapeutic strategies. Resveratrol suppresses pancreatic cancer progression and attenuates pancreatitis by modulating multiple targets, including nuclear factor kappa B (NFκB) signalling pathways. However, the effect of resveratrol on pancreatic cancer initiation and its mechanisms remain unclear. In this study, we utilised the LSL-Kras<sup>G12D/+</sup>; Pdx1-Cre (KC) spontaneous pancreatic precancerous lesion mouse model to explore the anti-tumourigenesis mechanisms of resveratrol in vivo. In vitro acinar-to-ductal metaplasia (ADM) and pancreatic intraepithelial neoplasias (PanINs) formation assays were performed by pancreatic acinar cell 3-dimensional (3D) culture. Histopathological analysis was used to examine the pathological morphology of pancreatic tissues. Resveratrol prevented the progression of pancreatic precancerous lesions and inhibited the activation of NFκB signalling pathway-related molecules in KC mouse pancreatic tissues. In addition, resveratrol reduced the severity of cerulein-induced pancreatitis and the formation of ADM/PanINs in vivo and in vitro, which may be related to its effect on NFκB inactivation. Furthermore, pancreatic acinar 3D culture demonstrated that activation of the NFκB signalling pathway promoted the formation of ADM/PanINs in vitro, and this initiating effect of NFκB was blocked by resveratrol. Resveratrol slowed the tumourigenesis of pancreatic cancer by inhibiting NFκB activation."	"Targeted next generation sequencing of MLH1-deficient, MLH1 promoter hypermethylated, and BRAF/RAS-wild-type colorectal adenocarcinomas is effective in detecting tumors with actionable oncogenic gene fusions. Oncogenic gene fusions represent attractive targets for therapy of cancer. However, the frequency of actionable genomic rearrangements in colorectal cancer (CRC) is very low, and universal screening for these alterations seems to be impractical and costly. To address this problem, several large scale studies retrospectivelly showed that CRC with gene fusions are highly enriched in groups of tumors defined by MLH1 DNA mismatch repair protein deficiency (MLH1d), and hypermethylation of MLH1 promoter (MLH1ph), and/or the presence of microsatellite instability, and BRAF/KRAS wild-type status (BRAFwt/KRASwt). In this study, we used targeted next generation sequencing (NGS) to explore the occurence of potentially therapeutically targetable gene fusions in an unselected series of BRAFwt/KRASwt CRC cases that displayed MLH1d/MLH1ph. From the initially identified group of 173 MLH1d CRC cases, 141 cases (81.5%) displayed MLH1ph. BRAFwt/RASwt genotype was confirmed in 23 of 141 (~16%) of MLH1d/MLH1ph cases. Targeted NGS of these 23 cases identified oncogenic gene fusions in nine patients (39.1%; CI95: 20.5%-61.2%). Detected fusions involved NTRK (four cases), ALK (two cases), and BRAF genes (three cases). As a secondary outcome of NGS testing, we identified PIK3K-AKT-mTOR pathway alterations in two CRC cases, which displayed PIK3CA mutation. Altogether, 11 of 23 (~48%) MLH1d/MLH1ph/BRAFwt/RASwt tumors showed genetic alterations that could induce resistance to anti-EGFR therapy. Our study confirms that targeted NGS of MLH1d/MLH1ph and BRAFwt/RASwt CRCs could be a cost-effective strategy in detecting patients with potentially druggable oncogenic kinase fusions."	"FAM83H overexpression predicts worse prognosis and correlates with less CD8<sup>+</sup> T cells infiltration and Ras-PI3K-Akt-mTOR signaling pathway in pancreatic cancer. Family with sequence similarity 83 members H (FAM83H) is one member of Family with sequence similarity 83 (FAM83) family, which possess oncogenic properties in several types of cancer. However, the potential function of FAM83H in pancreatic cancer (PC) still remain unknown. This study aims to explore the role of FAM83H during pancreatic carcinogenesis and the regulation of immune infiltration in PC. In the current study, the clinical significance and potential biological of FAM83H were evaluated by bioinformatics analysis. Possible associations between FAM83H expression and tumor immunity were analyzed using ESTIMATE algorithm and single-sample gene set enrichment analysis (ssGSEA). FAM83H expression was significantly upregulated in tumor tissues, and positively associated with higher histologic grade, tumor recurrence, and worse prognosis. FAM83H overexpression is notably associated with KRAS activation. And functional enrichment analysis demonstrated that FAM83H may be involved in positive regulation of cell proliferation and migration, Ras protein signal transduction, regulation of cell-matrix adhesion, epithelial to mesenchymal transition (EMT), TGF-β receptor signaling in EMT, and activated NOTCH transmits signal to the nucleus. ESTIMATE algorithm and ssGSEA demonstrated that FAM83H overexpression suppressed the infiltration and antitumor activity of tumor-infiltrating lymphocytes (TILs), especially for CD8<sup>+</sup> T cells. Besides, FAM83H overexpression significantly correlated with low expression of TIL-related gene markers (e.g. CD8A, CD8B, CD2, CD3D, and CD3E). The study suggests that FAM83H overexpression predicts poor prognosis and correlates with less CD8<sup>+</sup> T cells infiltration and Ras-PI3K-Akt-mTOR signaling pathway in PC."	"Analysis of RAS protein interactions in living cells reveals a mechanism for pan-RAS depletion by membrane-targeted RAS binders. HRAS, NRAS, and KRAS4A/KRAS4B comprise the RAS family of small GTPases that regulate signaling pathways controlling cell proliferation, differentiation, and survival. RAS pathway abnormalities cause developmental disorders and cancers. We found that KRAS4B colocalizes on the cell membrane with other RAS isoforms and a subset of prenylated small GTPase family members using a live-cell quantitative split luciferase complementation assay. RAS protein coclustering is mainly mediated by membrane association-facilitated interactions (MAFIs). Using the RAS-RBD (CRAF RAS binding domain) interaction as a model system, we showed that MAFI alone is not sufficient to induce RBD-mediated RAS inhibition. Surprisingly, we discovered that high-affinity membrane-targeted RAS binding proteins inhibit RAS activity and deplete RAS proteins through an autophagosome-lysosome-mediated degradation pathway. Our results provide a mechanism for regulating RAS activity and protein levels, a more detailed understanding of which should lead to therapeutic strategies for inhibiting and depleting oncogenic RAS proteins."	"Copper - a novel stimulator of autophagy. Toxic copper accumulation causes Wilson disease, but trace amounts of copper are required for cellular and organismal survival. In a recent paper Tsang et al. (Nat Cell Biol, doi: 10.1038/s41556-020-0481-4) demonstrate that copper binds with high affinity to a designated interaction site in the pro-autophagic kinases ULK1 and ULK2. Chelation of copper or genetic deletion of this copper-binding site inhibits autophagy and hence reduces the fitness of KRAS-induced cancers. These findings suggest that copper chelation might constitute a novel therapeutic intervention on autophagy-dependent malignancies."	"FAM111B enhances proliferation of KRAS-driven lung adenocarcinoma by degrading p16. Lung cancer is a common type of cancer that represents a health problem worldwide; lung adenocarcinoma (LUAD) is a major subtype of lung cancer. Although several treatments for LUAD have been developed, the mortality rate remains high because of uncontrollable progression. Further biological and clinicopathological studies are therefore needed. Here, we investigated the role of family with sequence similarity 111 member B (FAM111B), which is highly expressed in papillary-predominant LUAD; however, its role in cancer is unclear. An immunohistochemical analysis confirmed that papillary-predominant adenocarcinomas exhibited higher expression of FAM111B, compared with lepidic-predominant adenocarcinomas. Additionally, FAM111B expression was significantly correlated with clinical progression. In vitro functional analyses using FAM111B-knockout cells demonstrated that FAM111B plays an important role in proliferation and cell cycle progression of KRAS-driven LUAD under serum-starvation conditions. Furthermore, FAM111B regulated cyclin D1-CDK4-dependent cell cycle progression by degradation of p16. In summary, we revealed the clinical importance of FAM111B in human tumor tissues, as well as its function as a degradative enzyme. Therefore, FAM111B has potential as a clinicopathological prognostic marker for LUAD."	"Update of the recommendations for the determination of biomarkers in colorectal carcinoma: National Consensus of the Spanish Society of Medical Oncology and the Spanish Society of Pathology. In this update of the consensus of the Spanish Society of Medical Oncology (Sociedad Española de Oncología Médica-SEOM) and the Spanish Society of Pathology (Sociedad Española de Anatomía Patológica-SEAP), advances in the analysis of biomarkers in advanced colorectal cancer (CRC) as well as susceptibility markers of hereditary CRC and molecular biomarkers of localized CRC are reviewed. Recently published information on the essential determination of KRAS, NRAS and BRAF mutations and the convenience of determining the amplification of human epidermal growth factor receptor 2 (HER2), the expression of proteins in the DNA repair pathway and the study of NTRK fusions are also evaluated. From the pathological point of view, the importance of analysing the tumour budding and poorly differentiated clusters, and its prognostic value in CRC is reviewed, as well as the impact of molecular lymph node analysis on lymph node staging in CRC. The incorporation of pan-genomic technologies, such as next-generation sequencing (NGS) and liquid biopsy in the clinical management of patients with CRC is also outlined. All these aspects are developed in this guide, which, like the previous one, will remain open to any necessary revision in the future."	"The effects of resection margin and KRAS status on outcomes after resection of colorectal liver metastases. The aim of this study was to investigate the influence of resection margin status in patients with KRAS mutations (mt-KRAS) when compared to those with wild-type KRAS (wt-KRAS) on long-term outcomes in patients with resected CRLM. All patients who underwent resection of CRLM with curative intent between January 2011 and December 2016 and had a KRAS type recorded were included in the study. Overall survival (OS), as well as death-censored overall (RFS) and liver-specific (LS-RFS) recurrence-free survival between KRAS types and the margin status within KRAS subgroups were compared using Cox regression models. Data were available for N = 500 patients (30.4% mt-KRAS). mt-KRAS status was independently associated with significantly shorter OS. Within the wt-KRAS subgroup, smaller margins were found to be associated with significantly shorter death-censored LS-RFS (p &lt; 0.001), with HRs of 1.93 (p = 0.005) for 1-4 mm margins and 2.83 (p &lt; 0.001) for &lt;1 mm margins, relative to those with clear margins. No such association was observed in the mt-KRAS subgroup (p = 0.721). The resection margin status is of greater importance in patients with wt-KRAS. Such information could be useful in the operative planning, especially for those with multiple metastatic deposits, and also in the post-operative counselling and surveillance based on the margin and KRAS status."	"Metachronous primary lung adenocarcinomas harboring distinct KRAS mutations. To distinguish whether multiple lung nodules represent multiple primary lung cancers (MPLC) or intrapulmonary metastases (IPM) is crucial for staging and subsequent therapy. We herein present the first report of a patient with two simultaneously resected metachronous lung adenocarcinomas in the right upper lobe, each with a distinct driver mutation in the KRAS gene identified by targeted next generation sequencing (NGS). The nodules appeared chronologically metachronous, with a 3.7 year interval. Histopathology showed two histologically identical adenocarcinomas, without lymph node metastases. It was hard to decide whether they should be classified as either MPLC or IPM based only on the clinicopathological criteria. Sequencing further revealed distinct KRAS mutation in each tumor, with one tumor harboring the KRAS-G12C mutation, and the other tumor harboring the KRAS-Q61H mutation. Incorporation of the molecular data cleared the confusion with regard to staging and spared this patient from adjuvant therapy. This case highlights that molecular profiling allows for better differentiation between MPLC and IPM than histopathology alone. KEY POINTS: To the best of our knowledge, this is the first case of multiple primary lung cancers harboring distinct KRAS mutations. The case highlights the importance of incorporating molecular profiling using NGS along with the clinicopathological criteria in classifying multiple lung tumors."	"Sporadic pyloric gland adenoma associated with a large fundic gland polyp: genetic evidence for stepwise progression. Pyloric gland adenoma (PGA) is an uncommon variant of gastric adenoma exhibiting pyloric gland/mucous neck cell differentiation. We present a sporadic PGA associated with a large fundic gland polyp (FGP) in a woman in her 40 s without Helicobacter pylori infection. The polyp, measuring 25 mm in size, was located in the middle gastric body and was removed by endoscopic submucosal dissection. Histological examination revealed three morphologically distinct components: FGP, FGP with large cysts, and PGA. A genetic analysis identified a truncating APC mutation in all the three components, supporting their histogenetic relationship. Additionally, a GNAS mutation was detected in two components, FGP with large cysts and PGA, whereas a KRAS mutation was exclusively found in the PGA component. Thus, despite the unusual presentation, the PGA component harbored prototypical genetic alterations. The differential genetic alterations observed in the three components imply that they represent stepwise progression from FGP to PGA."	"Performance of four platforms for KRAS mutation detection in plasma cell-free DNA: ddPCR, Idylla, COBAS z480 and BEAMing. Multiple platforms are commercially available for the detection of circulating cell-free tumour DNA (ctDNA) from liquid biopsies. Since platforms have different input and output variables, deciding what platform to use for a given clinical or research question can be daunting. This study aimed to provide insight in platform selection criteria by comparing four commercial platforms that detect KRAS ctDNA hotspot mutations: Bio-Rad droplet digital PCR (ddPCR), BioCartis Idylla, Roche COBAS z480 and Sysmex BEAMing. Platform sensitivities were determined using plasma samples from metastatic colorectal cancer (mCRC) patients and synthetic reference samples, thereby eliminating variability in amount of plasma analysed and ctDNA isolation methods. The prevalence of KRAS nucleotide alterations was set against platform-specific breadth of target. Platform comparisons revealed that ddPCR and BEAMing detect more KRAS mutations amongst mCRC patients than Idylla and COBAS z480. Maximum sample throughput was highest for ddPCR and COBAS z480. Total annual costs were highest for BEAMing and lowest for Idylla and ddPCR. In conclusion, when selecting a platform for detection of ctDNA hotspot mutations the desired test sensitivity, breadth of target, maximum sample throughput, and total annual costs are critical factors that should be taken into consideration. Based on the results of this study, laboratories will be able to select the optimal platform for their needs."	"Multivalent assembly of KRAS with the RAS-binding and cysteine-rich domains of CRAF on the membrane. Membrane anchoring of farnesylated KRAS is critical for activation of RAF kinases, yet our understanding of how these proteins interact on the membrane is limited to isolated domains. The RAS-binding domain (RBD) and cysteine-rich domain (CRD) of RAF engage KRAS and the plasma membrane, unleashing the kinase domain from autoinhibition. Due to experimental challenges, structural insight into this tripartite KRAS:RBD-CRD:membrane complex has relied on molecular dynamics simulations. Here, we report NMR studies of the KRAS:CRAF RBD-CRD complex. We found that the nucleotide-dependent KRAS-RBD interaction results in transient electrostatic interactions between KRAS and CRD, and we mapped the membrane interfaces of the CRD, RBD-CRD, and the KRAS:RBD-CRD complex. RBD-CRD exhibits dynamic interactions with the membrane through the canonical CRD lipid-binding site (CRD β7-8), as well as an alternative interface comprising β6 and the C terminus of CRD and β2 of RBD. Upon complex formation with KRAS, two distinct states were observed by NMR: State A was stabilized by membrane association of CRD β7-8 and KRAS α4-α5 while state B involved the C terminus of CRD, β3-5 of RBD, and part of KRAS α5. Notably, α4-α5, which has been proposed to mediate KRAS dimerization, is accessible only in state B. A cancer-associated mutation on the state B membrane interface of CRAF RBD (E125K) stabilized state B and enhanced kinase activity and cellular MAPK signaling. These studies revealed a dynamic picture of the assembly of the KRAS-CRAF complex via multivalent and dynamic interactions between KRAS, CRAF RBD-CRD, and the membrane."	"Combinatorial efficacy of entospletinib and chemotherapy in patient-derived xenograft models of infant acute lymphoblastic leukemia. Survival of infants with KMT2A-rearranged (R) acute lymphoblastic leukemia (ALL) remains dismal despite intensive chemotherapy. We observed constitutive phosphorylation of spleen tyrosine kinase (SYK) and associated signaling proteins in infant ALL patient-derived xenograft (PDX) model specimens and hypothesized that the SYK inhibitor entospletinib would inhibit signaling and cell growth in vitro and leukemia proliferation in vivo. We further predicted that combined entospletinib and chemotherapy could augment anti-leukemia effects. Basal kinase signaling activation and HOXA9/MEIS1 expression differed among KMT2A-R (KMT2A-AFF1 [n=4], KMT2A-MLLT3 [n=1], KMT2A-MLLT1 [n=4]) and non-KMT2A-R [n=3] ALL specimens and stratified by genetic subgroup. Incubation of KMT2A-R ALL cells in vitro with entospletinib inhibited methylcellulose colony formation and SYK pathway signaling in a dose-dependent manner. In vivo inhibition of leukemia proliferation with entospletinib monotherapy was observed in RAS-wild-type KMT2A-AFF1, KMT2A-MLLT3, and KMT2A-MLLT1 ALL PDX models with enhanced activity in combination with vincristine chemotherapy in several models. Surprisingly, entospletinib did not decrease leukemia burden in two KMT2A-AFF1 PDX models with NRAS/ or KRAS mutations, suggesting potential RAS-mediated resistance to SYK inhibition. As hypothesized, superior inhibition of ALL proliferation was observed in KMT2A-AFF1 PDX models treated with entospletinib and the MEK inhibitor selumetinib versus vehicle or inhibitor monotherapies (p&lt;0.05). In summary, constitutive activation of SYK and associated signaling occurs in KMT2A-R ALL with in vitro and in vivo sensitivity to entospletinib. Combination therapy with vincristine or selumetinib further enhanced treatment effects of SYK inhibition. Clinical study of entospletinib and chemotherapy or other kinase inhibitors in patients with KMT2A-R leukemias may be warranted."	"Frequent Mutations of POT1 Distinguish Pulmonary Sarcomatoid Carcinoma From Other Lung Cancer Histologies. Pulmonary sarcomatoid carcinoma (PSC) is a rare subtype of non-small-cell lung cancer (NSCLC) harboring mutations in many canonical NSCLC-driver genes (eg, TP53, KRAS, MET). Protection of telomeres 1 (POT1) mutations are observed in angiosarcoma and chronic lymphocytic leukemia, but their frequency in other solid tumors, including NSCLC subtypes, has not been rigorously explored. We analyzed next-generation sequencing data from 62,368 tumors, including 11,134 NSCLCs and 100 PSCs. We performed logistic regression to identify associations between POT1 mutation frequency and tumor histology across 184 tumor categories, adjusting for tumor mutational burden. We further explored co-occurring gene mutations in genes previously reported to underlie PSC tumorigenesis. Across 184 tumor categories, POT1 mutations were most frequent in PSC and were 14 times more common in PSC (28%) than in other tumor types (P = 1.23 × 10<sup>-31</sup>) and 6.7 times more common in PSC than other NSCLCs (P = 5.1 × 10<sup>-17</sup>). PSCs harboring KRAS mutations were significantly more likely to harbor POT1 mutations (P = 1.3 × 10<sup>-3</sup>), whereas those with TP53 mutations were less likely to harbor POT1 mutations (P = .037). One-fourth of POT1-mutated PSCs harbored a second POT1 mutation. Across all PSCs, 83% of POT1 mutations were in the OB1/OB2 (DNA-binding) domain (P = 1.5 × 10<sup>-5</sup>), an enrichment not observed in other tumor types. We report an unanticipated association between POT1 mutation and PSC. Unlike other molecular alterations that are frequent across NSCLC subtypes, POT1 mutations are largely unique to PSC. This finding may help to develop disease-defining molecular subgroups within PSC and presents opportunities for molecularly stratified prognostication and therapy."	"Less immune cell infiltration and worse prognosis after immunotherapy for patients with lung adenocarcinoma who harbored STK11 mutation. The STK11 mutation defined a special subtype for patients with lung adenocarcinoma. The cBioPortal data platform was applied to analyze STK11 mutation frequency and the relationship between STK11 mutation and immune prognostic markers. The TIMER database was used to analyze the relationship between STK11 mutation and immune cell infiltration. The survival difference for lung adenocarcinoma patients harbored STK11 mutation who received immunotherapy also used the cBioPortal database. The results showed that STK11 mutation co-occurrence more KRAS and KEAP1 mutation and fewer TP53 and EGFR mutation (all, P &lt; 0.05); the patients harbored STK11 mutation had a lower expression of PDL1 (P = 0.002), higher TMB score (P = 0.002), higher proportion of males and smoking history; the patients harbored STK11 mutation had fewer immune cell infiltration including B cell (P &lt; 0.01), CD8+ T cell (P &lt; 0.001), CD4+ T cell (P &lt; 0.001), Macrophage (P &lt; 0.001), Neutrophil (P &lt; 0.001) and Dendritic cell (P &lt; 0.001). Importantly, we found the patients harbored STK11 mutation who received immune checkpoint inhibitors have worse overall survival (OS) with median survival only 6 months. In conclusion, our study demonstrated that STK11 mutation defined a special subtype for lung adenocarcinoma patients with different co-occurrence gene mutation, lower PDL1 expression, fewer immune cell infiltration and worse OS benefit from immune checkpoint inhibitors."	"Binge Drinking: Macropinocytosis Promotes Tumorigenic Growth of RAS-Mutant Cancers. The RAS oncoprotein drives elevated macropinocytosis, a metabolic process essential for cancer growth. A recent study by Ramirez et al. elucidated a mechanism whereby RAS controls V-ATPase association with the plasma membrane to drive RAC1 GTPase-dependent macropinocytosis. Potentially actionable targets to disrupt this RAS-dependent nutrient acquisition pathway were identified."	"RNA-Seq-Based TCR Profiling Reveals Persistently Increased Intratumoral Clonality in Responders to Anti-PD-1 Therapy. Substantial effort is being invested in the search for peripheral or intratumoral T cell receptor (TCR) repertoire features that could predict the response to immunotherapy. Here we demonstrate the utility of MiXCR software for TCR and immunoglobulin repertoire extraction from RNA-Seq data obtained from sorted tumor-infiltrating T and B cells. We use this approach to extract TCR repertoires from RNA-Seq data obtained from sorted tumor-infiltrating CD4<sup>+</sup> and CD8<sup>+</sup> T cells in an HKP1 (Kras<sup>G12D</sup>p53<sup>-/-</sup>) syngeneic mouse model of lung cancer after anti-PD-1 treatment. For both subsets, we demonstrate decreased TCR diversity in response to therapy. At a later time point, repertoire diversity is restored in progressing disease but remains decreased in responders to therapy in both CD4<sup>+</sup> and CD8<sup>+</sup> subsets. These observations complement previous studies and suggest that stably increased intratumoral CD4<sup>+</sup> and CD8<sup>+</sup> T cell clonality after anti-PD-1/PD-L1 therapy could serve as a predictor of long-term response."	"Cisplatin changes expression of SEMA3B in endometrial cancer. Semaphorin 3B (SEMA3B) is characterized as a strong suppressing factor of the proliferation of cancerous cells and also by its anti-angiogenic effect. However, the knowledge on the changes in the expression profile of SEMA3B under the influence of cisplatin in endometrial cancer remains fragmented. The aim of this work was to note the changes in expression of SEMA3B when under the influence of cisplatin in the endometrial cancer cell line. Ishikawa cell line cells were exposed to three different concentrations of cisplatin: 2.5µM; 5µM; 10µM for 12,24 and 48 hour periods and were compared to cells untreated by the drug. Changes in the expression profile of SEMA3B were determined based upon RtqPCR (mRNA) alongside the ELISA assay (protein). The Statistica 13.0 PL program was used for statistical analysis (p&lt;0.05). Changes on the transcriptome level seem to be more dynamic than on the proteome level. Regardless of the concentration given or the exposition period, the expression of semaphorin 3B was, in fact, higher in cells exposed to cisplatin. Statistically substantial differences (p&lt;0.05) in the expression of SEMA3B mRNA and protein were seen for all incubation periods at the given cisplatin level when compared to the control. Cisplatin causes a growth in the expression of SEMA3B in a endometrial cancer cell culture, this results in the restoration in the state of cell homeostasis and shows the effectiveness of pharmacotherapy, including a low risk of drug resistance."	"A phase 1b study of the MET inhibitor capmatinib combined with cetuximab in patients with MET-positive colorectal cancer who had progressed following anti-EGFR monoclonal antibody treatment. Background Overcoming resistance to anti-epidermal growth factor receptor (EGFR) monoclonal antibodies (mAbs) in patients with KRAS wildtype (WT) metastatic colorectal cancer (mCRC) could help meet the needs of patients with limited treatment options. Methods In this phase 1b study, patients with N/KRAS WT, MET-positive mCRC who had progressed following anti-EGFR mAb treatment received escalating oral doses of capmatinib (150, 300, and 400 mg) twice daily plus weekly intravenous cetuximab (at the approved dose). The primary objective was to establish a recommended dose for expansion (RDE) of capmatinib in combination with cetuximab. Safety, preliminary activity, pharmacokinetics, and pharmacodynamics were also explored. Results Thirteen patients were enrolled. No patients experienced a dose-limiting toxicity at investigated doses; the RDE was established as capmatinib 400 mg twice daily plus cetuximab. All patients experienced adverse events (AEs) suspected to be related to the study treatment. Five patients (38.5%) reported study-drug-related AEs of grade 3/4 in severity. No patients achieved a complete or partial response according to RECIST v1.1; however, tumor shrinkage of 29-44% was observed in 4 patients. Conclusions Capmatinib plus cetuximab was well tolerated. Preliminary signs of activity were observed. Further investigation is warranted to obtain efficacy data and refine predictive biomarkers of response. Clinical trial registration NCT02205398."	"Inhibition of miR-21 Regulates Mutant KRAS Effector Pathways and Intercepts Pancreatic Ductal Adenocarcinoma Development. Almost all pancreatic ductal adenocarcinomas (PDA) develop following KRAS activation, which triggers epithelial transformation and recruitment of desmoplastic stroma through additional transcriptional and epigenetic regulation, but only a few of these regulatory mechanisms have been described. We profiled dysregulated miRNAs starting with the earliest premalignant pancreatic intraepithelial neoplasias (PanIN) in genetically engineered mutated KRAS and P53 (KPC) mice programmed to recapitulate human PDA tumorigenesis. We identified miR-21 and miR-224 as cell-specific and compartment-specific regulators in PanINs and PDA. miR-21 is overexpressed in tumor epithelial cells of premalignant ducts, while miR-224 is overexpressed in cancer-associated fibroblasts in PDA stroma. Inhibition of miR-21 reverted protumorigenic functionalities to baseline levels. Overexpression of miR-224 induced activated phenotypes in normal fibroblasts. In vivo miR-21 inhibition improved survival in established PDA. Importantly, early systemic miR-21 inhibition completely intercepted premalignant progression. Finally, an evaluation of miR-21 expression in the PDA cohort of The Cancer Genome Atlas identified a correlation between tumor epithelial cell content and miR-21 expression in human tumors providing further rationale for conducting human studies. Thus, miR-21 may be useful for early PanIN detection, and for intercepting developing premalignant pancreatic lesions and other KRAS-driven premalignancies."	"HPV-related methylation-based reclassification and risk stratification of cervical cancer. Human papillomavirus (HPV) is a clear etiology of cervical cancer (CC). However, the associations between HPV infection and DNA methylation have not been thoroughly investigated. Additionally, it remains unknown whether HPV-related methylation signatures can identify subtypes of CC and stratify the prognosis of CC patients. DNA methylation profiles were obtained from The Cancer Genome Atlas to identify HPV-related methylation sites. Unsupervised clustering analysis of HPV-related methylation sites was performed to determine the different CC subtypes. CC patients were categorized into cluster 1 (Methylation-H), cluster 2 (Methylation-M), and cluster 3 (Methylation-L). Compared to Methylation-M and Methylation-L, Methylation-H exhibited a significantly improved overall survival (OS). Gene set enrichment analysis (GSEA) was conducted to investigate the functions that correlated with different CC subtypes. GSEA indicated that the hallmarks of tumors, including KRAS signaling, TNFα signaling via NF-κB, inflammatory response, epithelial-mesenchymal transition, and interferon-gamma response, were enriched in Methylation-M and Methylation-L. Based on mutation and copy number variation analyses, we found that aberrant mutations, amplifications, and deletions among the MYC, Notch, PI3K-AKT, and RTK-RAS pathways were most frequently detected in Methylation-H. Additionally, mutations, amplifications, and deletions within the Hippo, PI3K-AKT, and TGF-β pathways were presented in Methylation-M. Genes within the cell cycle, Notch, and Hippo pathways possessed aberrant mutations, amplifications, and deletions in Methylation-L. Moreover, the analysis of tumor microenvironments revealed that Methylation-H was characterized by a relatively low degree of immune cell infiltration. Finally, a prognostic signature based on six HPV-related methylation sites was developed and validated. Our study revealed that CC patients could be classified into three heterogeneous clusters based on HPV-related methylation signatures. Additionally, we derived a prognostic signature using six HPV-related methylation sites that stratified the OS of patients with CC into high- and low-risk groups."	"Genomic Profiling of Stage II Colorectal Cancer Identifies Candidate Genes Associated with Recurrence-Free Survival, Tumor Location, and Differentiation Grade. Identification of high-risk stage II colorectal cancer (CRC) patients, potential candidates for adjuvant chemotherapy, is challenging. Current clinical guidelines rely mainly on histopathological markers with relatively weak prognostic value. This motivates further search for prognostic markers. This explorative study aimed to identify potential candidate gene mutations to facilitate differentiation between subgroups of patients with CRC stage II. Panel-based massive parallel sequencing was used to genetically characterize tumor tissues from 85 patients radically operated for CRC stage II, of which 12 developed recurrent cancer during follow-up. Genetic data was compared between patients with or without cancer recurrence, between tumors located in colon and in rectum, and for association with tumor differentiation grade. Genetic variation in ATM, C11ORF65 was associated with recurrence-free survival. Previous reports regarding the association between BRAF mutation and a higher age at diagnosis, and tumor location in colon were confirmed. APC, BRAF, or KRAS mutation was associated with tumor differentiation grade. Multiple correspondence analyses revealed no obvious clustering of patients with the studied clinical characteristics, indicating that the genetic signatures observed here were unique for each individual. Taken together, we have demonstrated the utility of panel-based massive parallel sequencing to explore the pathogenesis of CRC stage II. We have identified promising candidate gene mutations associated with cancer recurrence, tumor location, and differentiation grade in patients with CRC stage II, which merit further investigation."	"Efficient Gene Therapy of Pancreatic Cancer via a Peptide Nucleic Acid (PNA)-Loaded Layered Double Hydroxides (LDH) Nanoplatform. Pancreatic ductal adenocarcinoma (PDAC) is one of the deadliest malignant tumors with extremely poor prognosis due to the later stage diagnosis when surgical resection is no longer applicable. Alternatively, the traditional gene therapy which drives pancreatic cancer cells into an inactive state and inhibiting the proliferation and metastasis, presents potentials to safely inhibit pancreatic cancer progression, but unfortunately has received limited success to date. Here, an efficient gene therapy of pancreatic cancer is shown via a peptide nucleic acid (PNA)-loaded layered double hydroxides (LDHs) nanoplatform. Compared with the traditional DNA- or RNA-based gene therapies, the gene therapy using PNA features great advantages in recognizing and hybridizing with the target mutant sequences to form PNA-DNA hybrids with significantly enhanced stability due to the absence of electrostatic repulsion, and the constrained flexibility of the polyamide backbone. Moreover, ultrasmall LDHs are engineered to load PNA and the obtained PNA-loaded LDH platform (LDHs/PNA) is capable of efficiently and selectively targeting the intranuclear mutant sequences thanks to the proton sponge effect. Treatments with LDHs/PNA demonstrate markedly inhibited growth of pancreatic cancer xenografts via a cancer cell proliferation suppression mechanism. The results demonstrate the great potentials of LDHs/PNA as a highly promising gene therapy agent for PDAC."	"[Molecular predictors for the course of disease and individualized therapy in pancreatic cancer]. The understanding of the development of pancreatic cancer has undergone considerable development over the last two decades. This is mainly due to the progress and use of methods for molecular biological analysis of pancreatic carcinomas. There is now a fundamental understanding with respect to the genetic drivers for the development of pancreatic cancer and the correlation with clinical data as well as the classification of different genetic characteristics of individual tumors even enables an estimation of the prognosis in some cases. The most common mutation in ductal adenocarcinoma, which if found in &gt;90% of tumors, is the mutation of the KRAS oncogene. The other three, CDKN2A, p53 and SMAD4, are all tumor suppressor genes and are mutated in approximately 90%, 70% and 50% of carcinomas, respectively. In addition, genetic mutations predisposing to pancreatic cancer have been identified. Among the most important are BRCA2, p16/CDKN2A, STK11, PRSS1, PALP2, FANCC, FANCG and ATM. The classification of different subtypes and the knowledge of individual mutations (especially BRCA) can also be used to assess the response to treatment in individual cases. This applies to &quot;conventional&quot; combination chemotherapies (especially FOLFIRINOX) and also to targeted treatment approaches with tyrosine kinase inhibitors, PARP inhibitors and PD‑1 inhibitors. If knowledge about the course of the disease and decisions on individual therapies become established in everyday clinical practice in the future, this may also have a decisive impact on surgery as the most important pillar of curative treatment. This ranges from the increased achievement of secondary operability to the expansion of indications with respect to resection even in patients with metastases."	"KRAS or BRAF mutations cause hepatic vascular cavernomas treatable with MAP2K-MAPK1 inhibition. Human hepatic vascular cavernomas, the most common benign tumor of the liver, were described in the mid-1800s, yet the mechanisms for their formation and effective treatments remain unknown. Here, we demonstrate gain-of-function mutations in KRAS or BRAF genes within liver endothelial cells as a causal mechanism for hepatic vascular cavernomas. We identified gain-of-function mutations in KRAS or BRAF genes in pathological liver tissue samples from patients with hepatic vascular cavernomas. Mice expressing these human KRASG12D or BRAFV600E mutations in hepatic endothelial cells recapitulated the human hepatic vascular cavernoma phenotype of dilated sinusoidal capillaries with defective branching patterns. KRASG12D or BRAFV600E induced &quot;zipper-like&quot; contiguous expression of junctional proteins at sinusoidal endothelial cell-cell contacts, switching capillaries from branching to cavernous expansion. Pharmacological or genetic inhibition of the endothelial RAS-MAPK1 signaling pathway rescued hepatic vascular cavernoma formation in endothelial KRASG12D- or BRAFV600E-expressing mice. These results uncover a major cause of hepatic vascular cavernomas and provide a road map for their personalized treatment."	"The Genomic Landscape of Intrinsic and Acquired Resistance to Cyclin-Dependent Kinase 4/6 Inhibitors in Patients with Hormone Receptor-Positive Metastatic Breast Cancer. Mechanisms driving resistance to cyclin-dependent kinase 4/6 inhibitors (CDK4/6i) in hormone receptor-positive (HR<sup>+</sup>) breast cancer have not been clearly defined. Whole-exome sequencing of 59 tumors with CDK4/6i exposure revealed multiple candidate resistance mechanisms including RB1 loss, activating alterations in AKT1, RAS, AURKA, CCNE2, ERBB2, and FGFR2, and loss of estrogen receptor expression. In vitro experiments confirmed that these alterations conferred CDK4/6i resistance. Cancer cells cultured to resistance with CDK4/6i also acquired RB1, KRAS, AURKA, or CCNE2 alterations, which conferred sensitivity to AURKA, ERK, or CHEK1 inhibition. Three of these activating alterations-in AKT1, RAS, and AURKA-have not, to our knowledge, been previously demonstrated as mechanisms of resistance to CDK4/6i in breast cancer preclinically or in patient samples. Together, these eight mechanisms were present in 66% of resistant tumors profiled and may define therapeutic opportunities in patients. SIGNIFICANCE: We identified eight distinct mechanisms of resistance to CDK4/6i present in 66% of resistant tumors profiled. Most of these have a therapeutic strategy to overcome or prevent resistance in these tumors. Taken together, these findings have critical implications related to the potential utility of precision-based approaches to overcome resistance in many patients with HR<sup>+</sup> metastatic breast cancer.This article is highlighted in the In This Issue feature, p. 1079."	"Dynamic alterations of genome and transcriptome in KRAS G13D mutant CRC PDX model treated with cetuximab. KRAS mutations have been characterized as the major predictive biomarkers for resistance to cetuximab treatment. However, studies indicate that not all KRAS mutations are associated with equivalent treatment outcomes. KRAS G13D mutations were observed to account for approximately 16% of all KRAS mutations in advanced colorectal cancer patients, and whether these patients can benefit from cetuximab has not been determined. An established KRAS G13D mutant colorectal cancer (CRC) patient-derived xenograft (PDX) model was treated with cetuximab. After repeated use of cetuximab, treatment-resistant PDX models were established. Tissue samples were collected before and during treatment, and multiomics data were subsequently sequenced and processed, including whole-exome, mRNA and miRNA data, to explore potential dynamic changes. Cetuximab treatment initially slowed tumor growth, but resistance developed not long after treatment. WES (whole-exome sequencing) and RNA sequencing found that 145 genes had low P values (&lt; 0.01) when analyzed between the locus genotype and its related gene expression level. Among these genes, SWAP70 was believed to be a probable cause of acquired resistance. JAK2, PRKAA1, FGFR2 and RALBP1, as well as 10 filtered immune-related genes, also exhibited dynamic changes during the treatment. Cetuximab may be effective in KRAS G13D mutation patients. Dynamic changes in transcription, as determined by WES and RNA sequencing, occurred after repeated drug exposure, and these changes were believed to be the most likely cause of drug resistance."	"Autophagy in the physiological endometrium and cancer. Autophagy is a highly conserved catabolic process and a major cellular pathway for the degradation of long-lived proteins and cytoplasmic organelles. An increasing body of evidence has unveiled autophagy as an indispensable biological function that helps to maintain normal tissue homeostasis and metabolic fitness that can also lead to severe consequences for the normal cellular functioning when altered. Recent accumulating data point to autophagy as a key player in a wide variety of physiological and pathophysiological conditions in the human endometrium, one of the most proficient self-regenerating tissues in the human body and an instrumental player in placental species reproductive function. The current review highlights the most recent findings regarding the process of autophagy in the normal and cancerous endometrial tissue. Current research efforts aiming to therapeutically exploit autophagy and the methodological approaches used are discussed. 3-MA: 3-methyladenine; ACACA (acetyl-CoA carboxylase alpha); AICAR: 5-aminoimidazole-4-carboximide riboside; AKT: AKT serine/threonine kinase; AMPK: AMP-activated protein kinase; ATG: autophagy related; ATG12: autophagy related 12; ATG16L1: autophagy related 16 like 1; ATG3: autophagy related 3; ATG4C: autophagy related 4C cysteine peptidase; ATG5: autophagy related 5; ATG7: autophagy related 7; ATG9: autophagy related 9; Baf A1: bafilomycin A1; BAX: BCL2 associated X, apoptosis regulator; BCL2: BCL2 apoptosis regulator; BECN1: beclin 1; CACNA1D: calcium voltage-gated channel subunit alpha1 D; CASP3: caspase 3; CASP7: caspase 7; CASP8: caspase 8; CASP9: caspase 9; CD44: CD44 molecule (Indian blood group); CDH1: cadherin 1; CDKN1A: cyclin dependent kinase inhibitor 1A; CDKN2A: cyclin dependent kinase inhibitor 2A; CMA: chaperone-mediated autophagy; CQ: chloroquine; CTNNB1: catenin beta 1; DDIT3: DNA damage inducible transcript 3; EC: endometrial cancer; EGFR: epidermal growth factor receptor; EH: endometrial hyperplasia; EIF4E: eukaryotic translation initiation factor 4E; EPHB2/ERK: EPH receptor B2; ER: endoplasmic reticulum; ERBB2: er-b2 receptor tyrosine kinase 2; ERVW-1: endogenous retrovirus group W member 1, envelope; ESR1: estrogen receptor 1; FSH: follicle-stimulating hormone; GCG/GLP1: glucagon; GFP: green fluorescent protein; GIP: gastric inhibitory polypeptide; GLP1R: glucagon-like peptide-1 receptor; GLS: glutaminase; H2AX: H2A.X variant histone; HIF1A: hypoxia inducible factor 1 alpha; HMGB1: high mobility group box 1; HOTAIR: HOX transcript antisense RNA; HSPA5: heat shock protein family A (HSP70) member 5; HSPA8: heat shock protein family A (HSP70) member 8; IGF1: insulin like growth factor 1; IL27: interleukin 27; INS: insulin; ISL: isoliquiritigenin; KRAS: KRAS proto-oncogene, GTPase; LAMP2: lysosomal-associated membrane protein 2; lncRNA: long-non-coding RNA; MAP1LC3A/LC3A: microtubule associated protein 1 light chain 3 alpha; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; MAPK8: mitogen-activated protein kinase 8; MAPK9: mitogen-activated protein kinase 9; MPA: medroxyprogesterone acetate; MTOR: mechanistic target of rapamycin kinase; MTORC1: mechanistic target of rapamycin kinase complex 1; MTORC2: mechanistic target of rapamycin kinase complex 2; MYCBP: MYC-binding protein; NFE2L2: nuclear factor, erythroid 2 like 2; NFKB: nuclear factor kappa B; NFKBIA: NFKB inhibitor alpha; NK: natural killer; NR5A1: nuclear receptor subfamily 5 group A member 1; PARP1: poly(ADP-ribose) polymerase 1; PAX2: paired box 2; PDK1: pyruvate dehydrogenase kinase 1; PDX: patient-derived xenograft; PIK3C3/Vps34: phosphatidylinositol 3-kinase catalytic subunit type 3; PIK3CA: phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha; PIK3R1: phosphoinositide-3-kinase regulatory subunit 1; PIKFYVE: phosphoinositide kinase, FYVE-type zinc finger containing; PPD: protopanaxadiol; PRKCD: protein kinase C delta; PROM1/CD133: prominin 1; PtdIns3K: class III phosphatidylinositol 3-kinase; PtdIns3P: phosphatidylinositol-3-phosphate; PTEN: phosphatase and tensin homolog; RB1CC1/FIP200: RB1 inducible coiled-coil 1; RFP: red fluorescent protein; RPS6KB1/S6K1: ribosomal protein S6 kinase B1; RSV: resveratrol; SGK1: serum/glucocorticoid regulated kinase 1; SGK3: serum/glucocorticoid regulated kinase family member 3; SIRT: sirtuin; SLS: stone-like structures; SMAD2: SMAD family member 2; SMAD3: SMAD family member 3; SQSTM1: sequestosome 1; TALEN: transcription activator-like effector nuclease; TGFBR2: transforming growth factor beta receptor 2; TP53: tumor protein p53; TRIB3: tribbles pseudokinase 3; ULK1: unc-51 like autophagy activating kinase 1; ULK4: unc-51 like kinase 4; VEGFA: vascular endothelial growth factor A; WIPI2: WD repeat domain, phosphoinositide interacting 2; XBP1: X-box binding protein 1; ZFYVE1: zinc finger FYVE domain containing 1."	"Disease course of lung oligometastatic colorectal cancer treated with stereotactic body radiotherapy. Stereotactic body radiotherapy (SBRT) or stereotactic ablative radiotherapy (SABR) has been shown to increase survival rates in oligometastatic disease (OMD), but local control of colorectal metastases remains poor. We aimed to explore the natural course of oligometastatic colorectal cancer and to investigate how SBRT of lung metastases can delay the progression to polymetastatic disease (PMD). 107 lung oligometastases in 38 patients were treated with SBRT at a single institution. The median number of treated lesions was 2 (range 1-5). Time to PMD (ttPMD) was defined as the time from SBRT to the occurrence of &gt;5 new metastases. Genetic biomarkers such as EGFR, KRAS, NRAS, BRAF, and microsatellite instability were investigated as predictive factors for response rates. Median follow-up was 28 months. At median follow-up, 7 patients were free from disease and 31 had progression: 18 patients had sequential oligometastatic disease (SOMD) and 13 polymetastatic progression. All SOMD cases received a second SBRT course. Median progression-free survival (PFS) was 7 months (range 4-9 months); median ttPMD was 25.8 months (range 12-39 months) with 1‑ and 2‑year PFS rates of 62.5% and 53.4%, respectively. 1‑ and 2‑year local PFS (LPFS) rates were 91.5% and 80%, respectively. At univariate analysis, BRAF wildtype correlated with better LPFS (p = 0.003), SOMD after primary SBRT was associated with longer cancer-specific survival (p = 0.031). Median overall survival (OS) was 39.5 months (range 26-64 months) and 2‑year OS was 71.1%. The present results support local ablative treatment of lung metastases using SBRT in oligometastatic colorectal cancer patients, as it can delay the transition to PMD. Patients who progressed as SOMD maintained a survival advantage compared to those who developed PMD."	"Integration of multiple biological contexts reveals principles of synthetic lethality that affect reproducibility. Synthetic lethal screens have the potential to identify new vulnerabilities incurred by specific cancer mutations but have been hindered by lack of agreement between studies. In the case of KRAS, we identify that published synthetic lethal screen hits significantly overlap at the pathway rather than gene level. Analysis of pathways encoded as protein networks could identify synthetic lethal candidates that are more reproducible than those previously reported. Lack of overlap likely stems from biological rather than technical limitations as most synthetic lethal phenotypes are strongly modulated by changes in cellular conditions or genetic context, the latter determined using a pairwise genetic interaction map that identifies numerous interactions that suppress synthetic lethal effects. Accounting for pathway, cellular and genetic context nominates a DNA repair dependency in KRAS-mutant cells, mediated by a network containing BRCA1. We provide evidence for why most reported synthetic lethals are not reproducible which is addressable using a multi-faceted testing framework."	"Emerging Therapeutic Implications of STK11 Mutation: Case Series. STK11 was first recognized as a tumor suppressor gene in the late 1990s based on linkage analysis of patients with Peutz-Jeghers syndrome. STK11 encodes LKB1, an intracellular serine-threonine kinase involved in cellular metabolism, cell polarization, regulation of apoptosis, and DNA damage response. Recurrent somatic loss-of-function mutations occur in multiple cancer types, most notably in 13% of lung adenocarcinomas. Recent reports indicate that KRAS-mutant non-small cell lung cancers harboring co-mutations in STK11 do not respond to PD-1 axis inhibitors. We present three patients with STK11-mutated tumors and discuss the proposed mechanisms by which germline and somatic alterations in STK11 promote carcinogenesis, potential approaches for therapeutic targeting, and the new data on resistance to immune checkpoint inhibitors. KEY POINTS: STK11 is a tumor suppressor gene, and loss-of-function mutations are oncogenic, due at least in part to loss of AMPK regulation of mTOR and HIF-1-α. Clinical trials are under way, offering hope to patients whose STK11-mutated tumors are refractory and/or have progressed on chemotherapeutic regimens. Whether gastrointestinal cancers with STK11 loss of function will show the same outcome and potential refractoriness to immune therapy that were reported for lung cancer is unknown. However, physicians managing such patients should consider the experience in lung cancer, particularly outside the context of a clinical trial. In the CheckMate-057 trial lung tumors harboring co-mutations in KRAS and STK11 had an inferior response to PD-1 axis inhibitors. Coupled with the observation that STK11-mutated tumors were found to have a cold immune microenvironment regardless of KRAS status, the conclusion could extend to KRAS wild-type tumors with STK11 mutation. Current data suggest that the use of PD-1 axis inhibitors may be ill advised in the presence of STK11 mutation."	"Association of KRAS mutation with tumor deposit status and overall survival of colorectal cancer. To examine associations of KRAS mutation with tumor deposit status and overall survival in colorectal cancer (CRC) patients. This retrospective cohort study included patients with incidental CRC diagnosed during 2010-2014 and recorded statuses of KRAS and tumor deposit in the National Cancer Database of the USA. Multivariable logistic regression and time-varying Cox regression analyses were used. We included 45,761 CRC patients with KRAS status (24,027 [52.5%] men, 24,240 [53.0%] &lt; 65 years old, 17,338 [37.9%] with KRAS mutation). Adjusted for microsatellite instability, age, pathologic stage and tumor grade, KRAS mutation (versus wild type) was associated with tumor deposit presence (odds ratio = 1.11, 95% CI 1.02-1.20). KRAS mutation was also linked to worse overall survival of CRC patients regardless of tumor deposit status (adjusted Hazard ratio [HR] = 1.20, 95% CI 1.07-1.33 for CRC with tumor deposits, and adjusted HR = 1.24, 95% CI 1.14-1.35 or CRC without) or tumor stage (adjusted HR = 1.32, 95% CI 1.14-1.54 for early-stage and adjusted HR = 1.18, 95% CI 1.10-1.27 for late-stage). Microsatellite instability was associated with better overall survival in CRC without tumor deposit (adjusted HR = 0.89, 95% CI 0.79-0.99), but not in CRC with tumor deposit (adjusted HR = 1.12, 95% CI 0.97-1.30). KRAS mutation is independently associated with tumor deposit presence and a worse overall survival in CRC patients."	"Emerging RAS, BRAF, and EGFR mutations in cell-free DNA of metastatic colorectal patients are associated with both primary and secondary resistance to first-line anti-EGFR therapy. Oncogenic RAS mutations are negative biomarkers of response to epidermal growth factor receptor (EGFR) blockade. RAS mutations are usually detected in biopsies of primary colorectal tumors. However, the genomic profiles of primary tumors and metastases are not always concordant, and chemotherapeutic agents can alter the tumor molecular landscape. Cell-free DNA (cfDNA) is a novel tool to detect molecular heterogeneity. This study evaluated the clinical utility of cfDNA to predict primary or secondary resistance to EGFR blockade in patients with metastatic colorectal cancer. Thirty metastatic colorectal cancer patients without RAS and BRAF mutations were prospectively enrolled and treated with cytotoxic agents and EGFR blockade as first-line therapy. cfDNA was analyzed for the presence of RAS, BRAF, and EGFR (S492R) point mutations before initiating chemotherapy and every 2 months during chemotherapy. The analysis was performed in 223 plasma samples from all 30 patients. Of the 30 patients, five had RAS mutations in their cfDNA before starting chemotherapy and did not respond. Twenty-four of the remaining 25 patients without cfDNA RAS mutations had a response. Twenty of the 24 responders developed secondary resistance and cfDNA RAS mutations were found in 17 of the 20. cfDNA BRAF mutations were found in seven, and EGFR mutations were found in eight of the 20 patients. Emerging RAS, BRAF, and EGFR mutations occurred in patients with primary and secondary resistance to EGFR blockade. The detection of these mutations in cfDNA is a promising approach to predict treatment response and secondary resistance."	"Synergistic effect of fasting-mimicking diet and vitamin C against KRAS mutated cancers. Fasting-mimicking diets delay tumor progression and sensitize a wide range of tumors to chemotherapy, but their therapeutic potential in combination with non-cytotoxic compounds is poorly understood. Here we show that vitamin C anticancer activity is limited by the up-regulation of the stress-inducible protein heme-oxygenase-1. The fasting-mimicking diet selectivity reverses vitamin C-induced up-regulation of heme-oxygenase-1 and ferritin in KRAS-mutant cancer cells, consequently increasing reactive iron, oxygen species, and cell death; an effect further potentiated by chemotherapy. In support of a potential role of ferritin in colorectal cancer progression, an analysis of The Cancer Genome Atlas Database indicates that KRAS mutated colorectal cancer patients with low intratumor ferritin mRNA levels display longer 3- and 5-year overall survival. Collectively, our data indicate that the combination of a fasting-mimicking diet and vitamin C represents a promising low toxicity intervention to be tested in randomized clinical trials against colorectal cancer and possibly other KRAS mutated tumors."	"KRAS mutations in uterine endometrium are associated with gravidity and parity. NA"	"RAS internal tandem duplication disrupts GTPase-activating protein (GAP) binding to activate oncogenic signaling. The oncogene RAS is one of the most widely studied proteins in cancer biology, and mutant active RAS is a driver in many types of solid tumors and hematological malignancies. Yet the biological effects of different RAS mutations and the tissue-specific clinical implications are complex and nuanced. Here, we identified an internal tandem duplication (ITD) in the switch II domain of NRAS from a patient with extremely aggressive colorectal carcinoma. Results of whole-exome DNA sequencing of primary and metastatic tumors indicated that this mutation was present in all analyzed metastases and excluded the presence of any other clear oncogenic driver mutations. Biochemical analysis revealed increased interaction of the RAS ITD with Raf proto-oncogene Ser/Thr kinase (RAF), leading to increased phosphorylation of downstream MAPK/ERK kinase (MEK)/extracellular signal-regulated kinase (ERK). The ITD prevented interaction with neurofibromin 1 (NF1)-GTPase-activating protein (GAP), providing a mechanism for sustained activity of the RAS ITD protein. We present the first crystal structures of NRAS and KRAS ITD at 1.65-1.75 Å resolution, respectively, providing insight into the physical interactions of this class of RAS variants with its regulatory and effector proteins. Our in-depth bedside-to-bench analysis uncovers the molecular mechanism underlying a case of highly aggressive colorectal cancer and illustrates the importance of robust biochemical and biophysical approaches in the implementation of individualized medicine."	"Interleukin-1β-induced pancreatitis promotes pancreatic ductal adenocarcinoma via B lymphocyte-mediated immune suppression. Long-standing chronic pancreatitis is an established risk factor for pancreatic ductal adenocarcinoma (PDAC). Interleukin-1β (IL-1β) has been associated in PDAC with shorter survival. We employed murine models to investigate the mechanisms by which IL-1β and chronic pancreatitis might contribute to PDAC progression. We crossed LSL-Kras<sup>+/G12D</sup>;Pdx1-Cre (KC) mice with transgenic mice overexpressing IL-1β to generate KC-IL1β mice, and followed them longitudinally. We used pancreatic 3D in vitro culture to assess acinar-to-ductal metaplasia formation. Immune cells were analysed by flow cytometry and immunohistochemical staining. B lymphocytes were adoptively transferred or depleted in Kras-mutant mice. B-cell infiltration was analysed in human PDAC samples. KC-IL1β mice developed PDAC with liver metastases. IL-1β treatment increased Kras<sup>+/G12D</sup> pancreatic spheroid formation. CXCL13 expression and B lymphocyte infiltration were increased in KC-IL1β pancreata. Adoptive transfer of B lymphocytes from KC-IL1β mice promoted tumour formation, while depletion of B cells prevented tumour progression in KC-IL1β mice. B cells isolated from KC-IL1β mice had much higher expression of PD-L1, more regulatory B cells, impaired CD8<sup>+</sup> T cell activity and promoted tumorigenesis. IL-35 was increased in the KC-IL1β pancreata, and depletion of IL-35 decreased the number of PD-L1<sup>+</sup> B cells. Finally, in human PDAC samples, patients with PDAC with higher B-cell infiltration within tumours showed significantly shorter survival. We show here that IL-1β promotes tumorigenesis in part by inducing an expansion of immune-suppressive B cells. These findings point to the growing significance of B suppressor cells in pancreatic tumorigenesis."	"Genomic characterization of high-recurrence risk papillary thyroid carcinoma in a southern Chinese population. The objective of this study was to investigate genetic variations and the relationships between these genetic variations and clinicopathological features of high-recurrence risk papillary thyroid carcinoma in a southern Chinese population. One hundred sixty-eight patients of high-recurrence risk papillary thyroid carcinoma were recruited for this study from 2017 to 2018. Formalin-fixed paraffin-embedded tissue and the data of clinicopathological characteristics were all collected and analyzed from these patients. We used next-generation sequencing technology to investigate the targeted gene mutations and gene fusions of the pathology specimens. The frequency of candidate tumor driver gene mutation was 85.1% in 143 patients, including BRAF V600E mutation in 119 patients(70.8%), RET fusion in 13 patients(7.7%), TERT promoter mutations in 11 patients(6.5%), RAS (HRAS, NRAS, KRAS) gene mutations in 10 patients(6.0%), and other mutations involving TP53, PIK3CA, AKT1, PTEN and NTRK1. Concomitant presence of more than two genetic aberrations was seen in 27 patients (16.1%). Our study showed that BRAF V600E mutation is highly correlated with conventional PTC (p &lt; 0.001), BRAF V600E and TERT promoter mutation duet was associated with older patient age (&gt; 45, p = 0.003) and higher disease stage of III or IV (p = 0.002). RAS gene and BRAF V600E co-mutations were only seen in multifocal PTC (p = 0.015). In our high-recurrence risk PTC cohort, most patients had more than one driver gene aberration. Coexistence of BRAF V600E with TERT promoter mutations or with RAS mutations were significantly correlated with worse clinicopathological characteristics."	"[Clinicopathological and genetic characteristics of lung cancer in the lungs of explanted from lung transplant recipients]. Objective: To describe the clinicopathological features of the lung cancers in the lungs explanted from lung transplant recipients, and to understand the molecular alterations of these cancers. Methods: The patients who underwent lung transplantation in China-Japan Friendship Hospital from March 2017 to December 2018 were reviewed. Clinical data of the patients with lung cancer associated with end-stage interstitial lung diseases (ILD) were collected. Hematoxylin-eosin staining and immunohistochemistry were performed to evaluate the pathological feature. Real-time quantitative PCR was performed to analyze the hotspots and targeted regions of 9 cancer-associated genes. Results: Among the 154 identified patients, 10 met the inclusion criteria and were included. The detection rate of lung cancer in the lung transplantation patients was 6.5%(10/154). All of the included 10 patients were male, with an average age of 59 years. They all had a history of heavy smoking. Three cases had a lung cancer diagnosed before operation, while the other 7 cases were concealed in the specimen of end-stage ILD. All of lung cancers were non-small-cell carcinoma, including 8 cases of adenocarcinoma and 2 cases of squamous cell carcinoma. The proportion of mucinous adenocarcinoma components was 3/10. The mutations in KRAS gene exon 2 were detected in two patients with mucous adenocarcinoma, while no alterations in NRAS, EGFR, ALK, ROS1, BRAF, HER2, PI3KCA and RET were detected in the remaining patients. Conclusions: Lung cancers are difficult to detect in patients with end-stage ILD. They are mainly adenocarcinomas and associated with a higher frequency of mutations in KRAS gene. These cancers have limited treatment options and a poor prognosis. 目的: 观察肺移植切除病肺中合并肺癌的临床病理特征,了解其常见驱动基因改变情况。 方法: 分析2017年3月至2018年12月间中日友好医院肺移植术154例病肺标本,收集其中10例终末期间质性肺疾病合并肺癌患者的临床资料,采用HE染色,免疫组织化学染色及荧光PCR法进行病理学观察及肺癌常见驱动基因突变检测。 结果: 肺移植病例中肺癌检出率为6.5%(10/154),10例患者均为男性,平均年龄59岁,重度吸烟病史,基础性肺疾病以特发性肺纤维化多见(4/10)。3例术前明确诊断肿瘤,7例经术后病理检查方才确诊。组织学类型均为非小细胞性癌,其中腺癌8例,鳞状细胞癌2例,出现黏液腺癌成分的比例为3/10。2例伴有黏液腺癌成分的病例检出KRAS基因第2号外显子突变,其余病例未检出NRAS、表皮生长因子受体(EGFR)、间变性淋巴瘤激酶(ALK)、ROS1、BRAF、HER2、PI3KCA及RET基因改变。 结论: 肺癌在终末期间质性肺疾病患者中难以检出,组织学类型以腺癌为主,并且KRAS基因突变发生率高。患者治疗手段有限,预后差。."	"Genomic variation as a marker of response to neoadjuvant therapy in locally advanced rectal cancer. There is variation in the responsiveness of locally advanced rectal cancer to neoadjuvant chemoradiation, from complete response to total resistance. This study compared genetic variation in rectal cancer patients who had a complete response to chemoradiation versus poor response, using tumor tissue samples sequenced with genomics analysis software. Rectal cancer patients treated with chemoradiation and proctectomy June 2006-March 2017 were grouped based on response to chemoradiation: those with no residual tumor after surgery (CR, complete responders, AJCC-CPR tumor grade 0, n = 8), and those with poor response (PR, AJCC-CPR tumor grade two or three on surgical resection, n = 8). We identified 195 variants in 83 genes in tissue specimens implicated in colorectal cancer biopathways. PR patients showed mutations in four genes not mutated in complete responders: KDM6A, ABL1, DAXX-ZBTB22, and KRAS. Ten genes were mutated only in the CR group, including ARID1A, PMS2, JAK1, CREBBP, MTOR, RB1, PRKAR1A, FBXW7, ATM C11orf65, and KMT2D, with specific discriminating variants noted in DMNT3A, KDM6A, MTOR, APC, and TP53. Although conclusions may be limited by small sample size in this pilot study, we identified multiple genetic variations in tumor DNA from rectal cancer patients who are poor responders to neoadjuvant chemoradiation, compared to complete responders."	"A Retrospective Exploration of Targeted Maintenance Therapy in Advanced Colorectal Cancer: Based on the Background of Chinese Patient Assistance Program. Background: Maintenance therapy with bevacizumab (Bev) in patients with colorectal cancer (CRC) provides progression-free survival (PFS) benefits. However, the role of maintenance therapy with an anti-EGFR monoclonal antibody has not been established. Methods: Eligible CRC patients were assigned to maintenance therapy with cetuximab (Cet; Cet group) or Bev (Bev group). PFS, the duration of maintenance therapy, and safety were analyzed. Cox multivariate regression analyses were performed to determine independent prognostic factors. Results: A total of 143 eligible patients were assigned to the Cet (n = 79) or Bev (n = 64) groups. In the Cet group, all patients had KRAS wild-type. The baseline characteristics were well-balanced between the two groups, except for a higher percentage of patients with a left-sided primary tumor in the Cet group than in the Bev group (86.1 vs. 62.5%, P &lt; 0.0001). The median PFS was not significantly different between the Cet group and the Bev group: 5.9 months (95% CI 2.30-9.50) vs. 7.0 months (95% CI 3.69-10.31) (HR 1.17, 95% CI 0.77-1.79, P = 0.45). The median duration of maintenance therapy in the Cet group was shorter than that in the Bev group: 4.0 months (95% CI 1.94-5.99) vs. 4.8 months (95% CI 2.68-6.98) (HR 0.90, 95% CI 0.61-1.33; P = 0.59). The subgroup analyses showed that the median PFS for the first maintenance therapy and the second maintenance therapy were 3.2 months (95% CI 1.69-4.78) and 5.2 months (95% CI 1.58-8.83), respectively (HR 0.89, 95% CI 0.44-1.81; P = 0.75). Conclusions: This study suggests that maintenance therapy with Cet or Bev can be considered an appropriate option following induction chemotherapy for selected patients with advanced CRC. Multiple maintenance therapy seems to confer survival benefits in advanced CRC. Maintenance therapy with Cet after first-line induction chemotherapy seems to be associated with greater survival benefits."	"Efficacy of bevacizumab-containing chemotherapy in metastatic colorectal cancer and CXCL5 expression: Six case reports. In metastatic colorectal cancer (mCRC), the anti-vascular endothelial growth factor drug bevacizumab (BVZ) plus chemotherapy significantly improves progression-free survival compared to chemotherapy (CT) alone. This benefit is not, however, observed in all patients. While increased chemokine CXCL5 gene expression promoting angiogenesis has been proposed as a prognostic mCRC biomarker, few studies have examined its relationship with drug efficacy. This study sought to analyze tumor CXCL5 gene expression in six patients with different efficacy of BVZ-containing CT in terms of the tumor response to treatment. We report six cases of stage IV KRAS-mutated mCRC. Patients were given first line treatment with BVZ-containing chemotherapy in University Hospital of Fuenlabrada. The six patients differed in terms of primary tumor location (right/left side), tumor burden (mostly hepatic and peritoneal disease) and clinical disease course. Before treatment onset, total RNA was isolated from paraffinated tumor biopsy specimens and CXCL5 gene expression quantified through conventional RT-qPCR procedures. Our main finding was that CXCL5 expression levels were several times higher in three patients with lower progression free survival (under 6 mo) from the start of treatment. A higher expression of CXCL5 was observed in the three patients showing worse tumor response to treatment."	"Integration of Liquid Biopsies into Clinical Laboratory Applications via NGS in Cancer Diagnostics. Next Generation Sequencing is one of the latest advances in molecular testing and clinical laboratory applications. Next Generation Sequencing techniques involving liquid biopsies are emerging as important tools in cancer diagnostics and prognostics. Thus, integration of liquid biopsy studies into clinical laboratory applications has become a necessity. By virtue of liquid biopsies, determining potential treatment targets through metastasis and primary tumor sites in the right clinical context can result in a more comprehensive treatment. This also helps to overcome re-sampling difficulties which require an invasive procedure with the problem of tumor heterogeneity. As the literature involving liquid biopsies and next generation sequencing increases, the rate of laboratories with competencies and experience in this novel technology remains limited. Next generation sequencing was performed via a comprehensive multi-gene cancer panel (Actionable In-sight Solid Tumor Panel, Qiagen) consisting of 12 solid tumor related genes (EGFR, ALK, KRAS, PIK3CA, NRAS, PDGFRA, KIT, ERBB2, ERBB3, ESR1, BRAF and RAF1) from lung cancer patients who applied or were referred to CU AGENTEM (Cukurova University Adana Genetic Diseases Diagnosis and Treatment Center) for routine genetic testing. A modified next generation sequencing workflow was performed with a multi-gene solid tumor panel using liquid biopsies in comparison with formalin fixed paraffin embedded samples to integrate this technique into the routine clinical laboratory applications and bioinformatics. In this study, next generation sequencing of liquid biopsies in cancer patients was integrated into cancer diagnostics. Liquid biopsy studies provide numerous advantages when integrated with next generation sequencing through a well-optimized workflow."	"Long Survival and Prolonged Remission after Surgery and Chemotherapy in a Metastatic Mismatch Repair Deficient Pancreatic Neuroendocrine Carcinoma with MLH1/PMS2 Immunodeficiency and Minimal Microsatellite Shift. Pancreatic neuroendocrine carcinomas (NECs) are rare and very aggressive neoplasms with dismal prognosis, especially when metastatic or with negative prognostic factors, such as vascular invasion. To the best of our knowledge, no case of pancreatic NEC with mismatch repair deficiency has been reported to date. We describe a 62-year-old patient who underwent pancreaticoduodenectomy for a NEC located in the pancreatic head, with peripancreatic lymph node metastases. Tumor necrosis was prominent and the Ki67 proliferative index was 60%. One year after the diagnosis, the patient experienced recurrence with a left supraclavicular lymph node metastasis, which was surgically removed, followed by standard cisplatin-etoposide chemotherapy. Neoplastic cells showed combined loss of expression of MLH1 and PMS2 in both primary tumor and lymph node metastasis. Microsatellite instability (MSI) test using a mononucleotide repeats pentaplex PCR (BAT-25, BAT-26, NR-21, NR-22, and NR-24) revealed minimal mononucleotide shifts showing deletion of less than 3 bp at NR-21, BAT-26, NR-24, and NR-22 loci. MLH1 methylation analysis revealed absence of the gene promoter methylation. BRAF and KRAS mutations were not detected. In gut, NECs' mismatch repair deficiency phenotype has been reported in about 10% of cases, and it represents an independent factor of more favorable outcome. Likewise, our patient is currently alive with a follow-up of more than 12 years after pancreaticoduodenectomy, by itself an unexpected finding for such an aggressive neoplasm."	"Localized Hypertrophic Neuropathy as a Neoplastic Manifestation of KRAS-Mediated RASopathy. Localized hypertrophic neuropathy is a rare Schwann cell proliferation that usually affects single nerves from the extremities, and it is of unclear etiology in its pure form. RASopathies are a defined group of genetic diseases with overlapping clinical features, usually secondary to germline mutations in genes encoding either components or regulators of the RAS/MAPK pathway. Herein, we report an 11-year-old boy presenting with café au lait spots and right leg length discrepancy. A fascicular nerve biopsy of the tibial nerve demonstrated a Schwann cell proliferation with prominent onion-bulb formation, satisfying criteria for localized hypertrophic neuropathy. Molecular genetic analysis demonstrated identical KRAS mutations (c38_40dupGCG) in the peripheral nerve lesion and melanocytes from café au lait spots, but not in blood, supporting a diagnosis of a KRAS-mediated rasopathy with mosaicism. Immunohistochemical staining in the peripheral nerve lesion demonstrated strong pERK staining consistent with downstream MAPK pathway activation. This report suggests that at least a subset of localized hypertrophic neuropathies are bonafide, well-differentiated Schwann cell neoplasms developing through oncogenic RAS signaling, which provides new insights into the controversial entity historically known as localized hypertrophic neuropathy."	"Molecular mechanisms of resistance to BRAF and MEK inhibitors in BRAF<sup>V600E</sup> non-small cell lung cancer. BRAF is a confirmed therapeutic target in non-small cell lung cancer (NSCLC), as the BRAF inhibitor dabrafenib, in combination with the MEK inhibitor trametinib, is approved for the treatment of NSCLC harbouring BRAF V600E mutation. Scant evidence is available concerning the mechanisms of resistance to BRAF/MEK inhibitors in BRAF<sup>V600E</sup> NSCLC. Patients with BRAF<sup>V600E</sup> NSCLC with acquired resistance to BRAF/MEK inhibitors were included in the institutional, prospective MATCH-R (from &quot;Matching Resistance&quot;) trial and underwent tumour and liquid biopsies at the moment of radiological progression. Extensive molecular analyses were performed, including targeted next-generation sequencing (NGS), whole-exome sequencing (WES), RNA sequencing and comparative genomic hybridisation (CGH) array. Of the 11 patients included, eight had progressed on dabrafenib-trametinib combination, two on dabrafenib monotherapy and one on vemurafenib (BRAF inhibitor). Complete molecular analyses were available for seven patients, whereas an additional case had only targeted NGS and CGH array data. Among these eight patients, acquired molecular events potentially responsible for resistance were detected in three who progressed on dabrafenib-trametinib combination, that is, MEK1 K57N, RAS viral (v-ras) oncogene homolog (NRAS) Q61R and rat sarcoma viral oncogene homolog (KRAS) Q61R mutations. One patient progressing on dabrafenib monotherapy developed a PTEN frameshift mutation. No molecular hints addressing resistance emerged in the remaining four patients with analyses performed. Tumour mutational burden, evaluated by WES in seven patients, was low (median = 2.06 mutations/megabase, range = 1.57-3.75 mut/Mb). Novel resistance mechanisms to BRAF/MEK inhibitors in BRAF<sup>V600E</sup> NSCLC were identified, pointing out the recurring involvement of the MAPK pathway and guiding the development of new treatment strategies."	"A multi-omics approach expands the mutational spectrum of MAP2K1-related melorheostosis. Melorheostosis is a very rare sclerosing bone dysplasia characterized by asymmetrical and progressive cortical hyperostosis, usually with involvement of soft tissues surrounding the lesions. Recently Kang et al. identified somatic mosaicism for variants (p.Gln56Pro, p.Lys57Asn, or p.Lys57Glu) in the negative regulatory domain of MAP2K1, resulting in increased ERK1/2 signalling in affected tissues. In our study, we employed several sequencing technologies to unravel genetic variants (only present in affected tissues) from four sporadic melorheostosis patients. In the exome of two patients, we identified the same variants (p.K57N and p.K57E) as previously described by Kang et al. WGS and RNAseq analysis in a third patient demonstrated the presence of a novel variant (p.Cys121Ser) in the catalytic domain of MAP2K1. In addition, gene set enrichment analysis of the transcriptome data demonstrated upregulation of proliferative pathways. Interestingly, increased proliferation of MAP2K1 p.Lys57Asn-positive osteoblasts has been reported by Kang et al. The variants located in the hotspot region of the negative regulatory domain as well as this newly identified p.Cys121Ser variant have all been classified as MAP2K1 variants that can constitutively activate the downstream effector Erk. Finally, in a fourth patient with classical radiographic features of melorheostosis, no pathogenic variants could be identified in MAP2K1 or the other candidate genes for melorheostosis (SMAD3; LEMD3; KRAS). In conclusion, our study strongly suggests that not only somatic variants in the regulatory domain of MAP2K1 but also in the catalytic domain can cause melorheostosis. Our observations confirm that mutations in MAP2K1 are a major cause of melorheostosis and also suggest further locus heterogeneity for this disorder."	"A novel lncRNA, lnc403, involved in bovine skeletal muscle myogenesis by mediating KRAS/Myf6. Skeletal muscle, the most abundant and plasticity tissue in mammals, is essential for various functions such as movement, breathing, maintaining posture and metabolism. Myogenesis is a complex and precise process, which is regulated by the sequential expression of multiple transcription factors, and accumulating evidence have confirmed that multiple lncRNAs are involved in muscle development as the important transcriptional regulator. In this study, a novel lncRNA, named lnc403 was obtained, with a full-length 2689 bp, which had poor coding ability and was mainly expressed in the nucleus of myoblasts and myotubes. The expression of lnc403 was significantly different in the proliferation and differentiation stages of muscle cells. Then we successfully constructed lnc403 loss/gain-function cell models by transfecting silnc403 and pCDNA3.1-EGFP-lnc403 into satellite cells, respectively; and found that lnc403 inhibited skeletal muscle satellite cell differentiation but had no significant effect on cell proliferation, either in the case of lnc403 knockdown or overexpression. In order to further screen the target factors regulated by lncRNA in the process of myogenic differentiation, the RNA-pull down, mass spectrometry and bioinformatics analysis were performed. The results showed that lnc403 negatively regulated the expression of the adjacent gene Myf6 and positively regulated interaction proteins KRAS expression. The above results indicate that lnc403 affects skeletal muscle cell differentiation by affecting the expression of nearby genes and interacting proteins, implying lnc403 might participate in the bovine myoblasts differentiation through multi-pathway network regulation mode. This study provides a new perspective for further understanding of the regulation mechanism of lncRNAs on bovine myogenic process."	"HotSpotAnnotations-a database for hotspot mutations and annotations in cancer. Hotspots, recurrently mutated DNA positions in cancer, are thought to be oncogenic drivers because random chance is unlikely and the knowledge of clear examples of oncogenic hotspots in genes like BRAF, IDH1, KRAS and NRAS among many other genes. Hotspots are attractive because provide opportunities for biomedical research and novel treatments. Nevertheless, recent evidence, such as DNA hairpins for APOBEC3A, suggests that a considerable fraction of hotspots seem to be passengers rather than drivers. To document hotspots, the database HotSpotsAnnotations is proposed. For this, a statistical model was implemented to detect putative hotspots, which was applied to TCGA cancer datasets covering 33 cancer types, 10 182 patients and 3 175 929 mutations. Then, genes and hotspots were annotated by two published methods (APOBEC3A hairpins and dN/dS ratio) that may inform and warn researchers about possible false functional hotspots. Moreover, manual annotation from users can be added and shared. From the 23 198 detected as possible hotspots, 4435 were selected after false discovery rate correction and minimum mutation count. From these, 305 were annotated as likely for APOBEC3A whereas 442 were annotated as unlikely. To date, this is the first database dedicated to annotating hotspots for possible false functional hotspots."	"Genomic analysis of multiple myeloma using targeted capture sequencing in the Japanese cohort. Previous genomic studies have revealed the genomic landscape of myeloma cells. Although some of the genomic abnormalities shown are believed to be correlated to the molecular pathogenesis of multiple myeloma and/or clinical outcome, these correlations are not fully understood. The aim of this study is to elucidate the correlation between genomic abnormalities and clinical characteristics by targeted capture sequencing in the Japanese multiple myeloma cohort. We analysed 154 patients with newly diagnosed multiple myeloma. The analysis revealed that the study cohort consisted of a less frequent hyperdiploid subtype (37·0%) with relatively high frequencies of KRAS mutation (36·4%) and IGH-CCND1 translocation (26·6%) compared with previous reports. Moreover, our targeted capture sequencing strategy was able to detect rare IGH-associated chromosomal translocations, such as IGH-CCND2 and IGH-MAFA. Interestingly, all 10 patients harboured MAX mutations accompanied by 14q23 deletion. The patients with del(17p) exhibited an unfavourable clinical outcome, and the presence of KRAS mutation was associated with shorter survival in patients with multiple myeloma, harbouring IGH-CCND1. Thus, our study provides a detailed landscape of genomic abnormalities, which may have potential clinical application for patients with multiple myeloma."	"Acquired resistance to osimertinib in patients with non-small-cell lung cancer: mechanisms and clinical outcomes. Osimertinib, a third-generation epidermal growth factor receptor tyrosine-kinase inhibitor (EGFR-TKI), has demonstrated substantial clinical benefit in patients with non-small-cell lung cancer (NSCLC) who were resistant to early-generation EGFR-TKIs and had acquired a T790M mutation. The aim of our study was to identify the mechanisms underlying resistance to osimertinib and to correlate them with clinical outcomes. We retrospectively analyzed patients with advanced NSCLC who received osimertinib for T790M-mutated acquired resistance to prior EGFR-TKIs between March 1, 2017 and December 31, 2018. Patients with paired molecular data of pre-osimertinib and after resistance development, which were not confirmed with small-cell lung cancer (SCLC) transformation, were included in the molecular analysis set. Of 49 patients evaluated in the molecular analysis set, 24 patients maintained T790M mutation, while 25 patients exhibited T790M-loss. Molecular modifications were identified in 27 of 49 patients including EGFR acquired mutations (C797S, C796S, G796S, V802I, V834L, E758D and G724S), non-EGFR-dependent mutations (PIK3CA, ALK, BRAF, KRAS and TP53), EGFR amplification and MET amplification. At data cutoff, median progression-free survival (PFS) was 9.3 months in the T790M-retain group compared with 7.8 months in T790M-loss patients (P = 0.053). Median PFS was significantly longer in patients with EGFR-dependent resistance mechanism (13.5 months) than in those with alternative pathway activation (8.2 months; P = 0.012). The study revealed heterogeneous mechanisms of resistance to osimertinib in advanced NSCLC patients and their association with clinical outcomes. Patients who maintained T790M mutation or with EGFR-dependent resistance mechanism had longer clinical outcome benefits."	"Next-generation sequencing and histological response assessment in peritoneal metastasis from pancreatic cancer treated with PIPAC. Peritoneal metastasis from pancreatic cancer (PM-PC) may be treated with repeated pressurised intraperitoneal aerosol chemotherapy (PIPAC). Utility of next-generation sequencing (NGS) to detect cancer-related mutations in peritoneal quadrant biopsies (QBs) and peritoneal fluid (PF) after systemic and PIPAC treatment has not been evaluated. Around 90% of pancreatic cancers (PCs) harbour a KRAS mutation, making PC ideal for the evaluation of this aspect. Evaluation of PM-PC in terms of (1) histological response to PIPAC using Peritoneal Regression Grading Score (PRGS), (2) clinical characteristics and (3) frequency of mutations in QBs and PF before and after PIPAC. Peritoneal QBs and PF were obtained prior to each PIPAC. NGS for 22 cancer-related genes was performed on primary tumours, QBs and PFs. Response was assessed by the four-tiered PRGS. Sixteen patients treated with a median of three PIPAC procedures were included. The mean PRGS was reduced from 1.91 to 1.58 (p=0.02). Fifty-seven specimens (13 primary tumours, 2 metastatic lymph nodes, 16 PFs and 26 QB sets) were analysed with NGS. KRAS mutation was found in 14/16 patients (87.50%) and in QBs, primary tumours and PF in 8/12 (66.67%), 8/13 (61.53%) and 6/9 (66.67%). The median overall survival was 9.9 months (SE 1.5, 95% CI 4.9 to 13.9). PIPAC induces histological response in the majority of patients with PM-PC. KRAS mutation can be found in PM-PC after PIPAC at a frequency similar to the primaries. NGS may be used to detect predictive mutations in PM-PC of various origins, also when only post-PIPAC QBs or PFs are available."	"Colorectal carcinomas with mucinous differentiation are associated with high frequent mutation of KRAS or BRAF mutations, irrespective of quantity of mucinous component. Mucinous adenocarcinoma (MAC) is a distinct type of colorectal cancer (CRC) associated with poor response to treatment and poorer prognosis. MAC is diagnosed by WHO definition when the extracellular mucin is more than 50% of the lesion. We aimed at assessing the gene expression profiles of the CRCs with any mucinous features (&gt; 5%) in a retrospective study. The data of a 50-gene next generation sequencing (NGS) panel of 166 CRCs was analyzed and the gene mutational profile with morphologic features was correlated. We identified the different genetic mutation profiles between CRCs with and without mucinous component, but noticed a similar genetic profile between MACs and CRCs with mucinous component, irrespective of the percentage (if mucinous component more than 5%). The different genetic mutation profile related to MSI status was also identified between two groups of tumors. The most frequent mutations in CRCs with mucinous component are KRAS (28/49, 57.1%) and BRAF (19/49, 38.7%), PIK3CA (16/49, 32.6%), followed by APC (12/49, 24.5%) and TP53 (11/49, 22.5%). The combined mutation frequency of the two key factors in the EGFR signaling pathway, KRAS and BRAF, in the CRCs with and without mucinous component is 95.9 and 52.1%, respectively. The dysregulation of EGFR pathway plays a critical role in the development of CRCs with mucinous component, irrespective of the percentage. The result suggested that the current cut off of 50% mucin component to define mucinous adenocarcinoma might be challengeable."	"Clinicopathologic and Molecular Characteristics of Familial Adenomatous Polyposis-associated Traditional Serrated Adenoma. Colorectal carcinogenesis in familial adenomatous polyposis (FAP) follows a conventional adenoma-carcinoma sequence. However, previous studies have also reported the occurrence of traditional serrated adenomas (TSAs) in patients with FAP. In the present study, we analyzed the clinicopathologic and molecular features of 37 TSAs from 21 FAP patients. Histologically, the majority of FAP-associated TSAs showed typical cytology and slit-like serration; however, ectopic crypt formation was infrequent. Next-generation sequencing and Sanger sequencing identified KRAS and BRAF V600E mutations in 18 (49%) and 14 (38%) TSAs, respectively. Somatic APC mutations were detected in 26 lesions (84% of analyzed cases). Three lesions had BRAF non-V600E mutations, and 2 of them had a concurrent KRAS mutation. Seven TSAs (19%) were associated with a precursor polyp, 6 with a hyperplastic polyp, and 1 with a sessile serrated lesion, and all of them showed the BRAF V600E mutation. Additional sequencing analysis of 4 TSAs with a precursor polyp showed that the BRAF V600E mutation was shared between the TSA and precursor components, but APC mutations were exclusive to the TSA component in all the analyzed lesions. None of the lesions showed the high CpG island methylation phenotype. These results indicate that FAP-associated TSAs frequently have KRAS or BRAF mutations, similar to sporadic cases, and second-hit somatic APC mutations are commonly involved in their tumorigenesis as in other FAP-associated tumors. Although progression to adenocarcinoma is likely rare, tumorigenesis via the serrated pathway occurs in patients with FAP."	"Molecular Heterogeneity of Endometrioid Ovarian Carcinoma: An Analysis of 166 Cases Using the Endometrial Cancer Subrogate Molecular Classification. Endometrioid ovarian carcinoma (EOC) has clinical and biological differences compared with other histologic types of ovarian carcinomas, but it shares morphologic and molecular features with endometrioid endometrial carcinoma. To analyze the molecular heterogeneity of EOC according to the new molecular classification of endometrial cancer and to evaluate the prognostic significance of this molecular classification, we have analyzed 166 early-stage EOC by immunohistochemistry for mismatch repair proteins and p53 expression, and by Sanger sequencing for the exonuclease domain of polymerase epsilon (POLE EDM). In addition, we have carried out next-generation sequencing analysis of tumors with POLE EDM mutations to confirm the ultramutated profile. Eight tumors carried POLE EDM mutations and were classified as ultramutated (5%), 29 showed mismatch repair deficiency and were classified as hypermutated (18%), 16 tumors had a mutated pattern of p53 expression and were classified as p53 abnormal (11%), and 114 tumors did not have any of the previous alterations and were classified as no specific type (66%). Five tumors showed &gt;1 classification criteria. The frequencies of ultramutated and hypermutated tumors were lower in EOC compared with the frequency reported in endometrial cancer. Subrogate molecular groups differed in both morphologic features (histologic grade, squamous and morular metaplasia, and necrosis) and immunohistochemical expression of several biomarkers (ARID1A, nuclear β-catenin, estrogen receptors, Napsin A, and HINF1B). In addition, the number of CD8 tumor-infiltrating lymphocytes was higher in ultramutated and hypermutated tumors. The most commonly mutated genes in the ultramutated group were ARID1A (100%), PIK3R1, PTEN, BCOR, and TP53 (67% each), whereas no mutations were detected in KRAS. Although the prognosis did not differ among subgroups in the multivariate analysis, a trend toward a better prognosis in POLE-mutated and a worse prognosis in p53 abnormal tumors was observed. In addition, this classification could have important therapeutic implications for the use of immunotherapy in tumors classified as ultramutated and hypermutated."	"Genomic profiling of acute myeloid leukaemia associated with ataxia telangiectasia identifies a complex karyotype with wild-type TP53 and mutant KRAS, G3BP1 and IL7R. NA"	"The treatment paradigm of right-sided metastatic colon cancer: harboring BRAF mutation makes the difference. BRAF mutations represent the main negative prognostic factor for metastatic colorectal cancer and a supposed negative predictive factor of response to standard chemotherapy. We have explored survival difference in right-sided colon cancer (RCC) patients according to BRAF mutations, with the aim to identify any predictive factors of response to targeted-based therapy. A retrospective study of RCC patients, with BRAF known mutation status, treated with chemotherapy (CT) from October 2008 to June 2019 in 5 Italian centers, was conducted. We identified 207 advanced RCC patients: 20.3% BRAF mutant and 79.7% BRAF wild type (wt). BRAF-mutant cancers were more likely to be pT4 (50.0% v 25.7%, p = 0.016), undifferentiated (71.4% v 44.0%, p = 0.004), KRAS wt (90.5% v 38.2%, p &lt; 0.001), and MSI-H (41.7% v 16.2%, p = 0.019) tumors, with synchronous (52.4% v 31.5%, p = 0.018) and peritoneal metastases (38.1% v 22.4%, p = 0.003). Median overall survival (OS) was 16 v 27 months in BRAF mutant and BRAF wt (P = 0.020). In first-line setting, BRAF-mutant showed a 2ys OS of 80% in clinical trials, 32% in anti-VEGF, 14% in epidermial growth factor receptor (EGFR), and 0% in chemotherapy alone regimens (P = 0.009). BRAF-mutant patients demonstrated worse survival, regardless of targeted therapy administered. However, survival difference was statistically significant in the anti-EGFR-treated subgroup (16 v 28 months, P = 0.005 in BRAF mutant v BRAF wt, respectively). Our study demonstrated that BRAF status makes the difference in treatment's outcome. Therefore, the anti-EGFR should not be excluded in all advanced RCC but considered on a case-by-case basis."	"[A Case of Colon Cancer with Peritoneal Dissemination and Liver Metastasis That Responded to Comprehensive Treatment by Perioperative Chemotherapy and Cytoreductive Surgery]. A 64-year-old man was referred to our hospital to determine the cause of fecal occult blood. Colonoscopy revealed a type Ⅱtumor located in the ascending colon. Histopathologic analysis of the tumor biopsy specimen revealed moderately differen- tiated, tubular adenocarcinoma with KRAS exon 2(G12V)mutation. FDG-PET/CT revealed high trace accumulation in the S4 of the liver and in multiple sites spread across the abdominal cavity(cT4aN1M1c2[H1, P3], cStage Ⅳc). Chemotherapy using S-1 plus oxaliplatin(SOX)with bevacizumab(Bmab)was administered. After 8 courses of SOX with Bmab, the volume of the ascending colon cancer and liver metastasis reduced, and peritoneal disseminations disappeared. We, therefore, considered that curability B resection was suitable, and performed right hemicolectomy, total omentectomy, and resection of the rectovesical peritoneum. Histopathological examination of surgical specimens revealed extensive fibrosis from the submucosa to subserosal tissue with some tubular adenocarcinoma cells(histological effect: Grade 2). For maintenance therapy, trifluri- dine/tipiracil plus Bmab was administered after cytoreduction. The patient is in remission for 26 months without recurrence. Perioperative chemotherapy and cytoreductive surgery are useful for the treatment of colon cancer with diffuse peritoneal dissemination."	"Simple mucinous cysts of the pancreas have heterogeneous somatic mutations. Simple mucinous cysts of the pancreas have an epithelial lining resembling pancreatic intraepithelial neoplasia but may have a clinical presentation similar to premalignant mucinous neoplasms such as intraductal papillary mucinous neoplasms. Whether the epithelial lining shares genomic alterations with other pancreatic preinvasive neoplasms such as PanIN and intraductal papillary mucinous neoplasm has not been determined. We performed targeted sequencing analysis using a custom-designed MiSeq panel including the full coding regions of 18 pancreatic cancer genes on 13 clinically and pathologically well-characterized simple mucinous cysts. We detected 59 mutations in 15 genes in the cohort, with a median of 4 mutations per cyst (range = 0-16 mutations per cyst). The mutated genes and rate of detected mutations were as follows: KMT2C (MLL3) (62%), KRAS (15%), BRAF (8%), RNF43 (8%), CDKN2a (8%), TP53 (15%), and SMAD4 (8%). No GNAS mutations were detected. Four cases (31%) had no mutations detected. These findings place the majority of simple mucinous cysts of the pancreas in the spectrum of early, low-grade mucinous neoplasia, albeit with a different spectrum of genomic alterations compared with PanIN and intraductal papillary mucinous neoplasm."	"Liquid biopsy-based tumor profiling for metastatic colorectal cancer patients with ultra-deep targeted sequencing. Analyzing cell-free DNA (cfDNA) as a source of circulating tumor DNA is useful for diagnosing or monitoring patients with cancer. However, the concordance between cfDNA within liquid biopsy and genomic DNA (gDNA) within tumor tissue biopsy is still under debate. To evaluate the concordance in a clinical setting, we enrolled 54 patients with metastatic colorectal cancer and analyzed their plasma cfDNA, gDNA from peripheral blood mononuclear cells (PBMC), and gDNA from available matched tumor tissues using ultra-deep sequencing targeting 10 genes (38-kb size) recurrently mutated in colorectal cancer. We first established a highly reliable cut-off value using reference material. The sensitivity of detecting KRAS hotspot mutations in plasma was calculated as 100%, according to digital droplet PCR. We could selectively detect clinically important somatic alterations with a variant allele frequency as low as 0.18%. We next compared somatic mutations of the 10 genes between cfDNA and genomic DNA from tumor tissues and observed an overall 93% concordance rate between the two types of samples. Additionally, the concordance rate of patients with the time interval between liquid biopsy and tumor tissue biopsy within 6 months and no prior exposure to chemotherapy was much higher than those without. The patients with KRAS mutant fragments in plasma had poor prognosis than those without the mutant fragments (33 months vs. 63 months; p&lt;0.05). Consequently, the profiling with our method could achieve highly concordant results and may facilitate the surveillance of the tumor status with liquid biopsy in CRC patients."	"Utility of circulating tumor cells and DNA in the management of advanced colorectal cancer. Aim: Clinical management of colorectal cancer is challenging. Circulating tumor cells (CTCs) and DNA (ctDNA) are investigated to detect key KRAS mutation and for prognosis for risk stratifications. Materials &amp; methods: 200 advance-stage patients with metastatic disease were selected and followed-up. Serial blood draws were used to quantify CTCs and ctDNA. Results: Both CTCs and ctDNA are strongly associated with colorectal cancer patients. The positive predictive values were 96.5 and 96.3% among CTCs and ctDNA, respectively, for all 200 patients using KRAS mutation. Specificity for healthy controls was 100%. As a prognosis indicator, results demonstrated that patients who had positive CTCs and plasma DNA had worse outcomes. Conclusion: Blood-based assessment of colorectal cancer shows promising results in early-risk stratifications."	"miR‑193b exhibits mutual interaction with MYC, and suppresses growth and metastasis of osteosarcoma. Emerging evidence has indicated that microRNAs (miRs) are involved in the malignant behavior of cancer. The present study explored the role of miR‑193b in the development and metastasis of osteosarcoma. Compared with F4 osteosarcoma cells, which have a relatively low metastatic potential, highly metastatic F5M2 cells exhibited a lower expression of miR‑193b. Furthermore, miR‑193b exerted negative effects on cell proliferation, colony formation, cell cycle progression, migration and invasion, and induced apoptosis. In vivo studies revealed negative influences of miR‑193b on tumorigenesis and metastasis. The tumor‑suppressive role of miR‑193b was achieved by targeting KRAS and stathmin 1 (STMN1). Notably, overexpression of KRAS and STMN1 attenuated the miR‑193b‑induced inhibition of malignant behaviors. There was a double‑negative regulatory loop between MYC and miR‑193b, with MYC inhibiting miR‑193b expression by directly binding to its promoter region and miR‑193b negatively influencing MYC expression indirectly through some unknown mechanism. Collectively, these findings indicated that miR‑193b may serve a tumor suppressive role in osteosarcoma by targeting KRAS and STMN1. The double‑negative regulatory loop between MYC and miR‑193b may contribute to the sustained upregulation of MYC, the downregulation of miR‑193b, and to the subsequently enhanced expression of KRAS and STMN1, which may eventually lead to the development and metastasis of osteosarcoma."	"Early assessment of KRAS mutation in cfDNA correlates with risk of progression and death in advanced non-small-cell lung cancer. Liquid biopsy has the potential to monitor biological effects of treatment. KRAS represents the most commonly mutated oncogene in Caucasian non-small-cell lung cancer (NSCLC). The aim of this study was to explore association of dynamic plasma KRAS genotyping with outcome in advanced NSCLC patients. Advanced NSCLC patients were prospectively enrolled. Plasma samples were collected at baseline (T1), after 3 or 4 weeks, according to treatment schedule (T2) and at first radiological restaging (T3). Patients carrying KRAS mutation in tissue were analysed in plasma with droplet digital PCR. Semi-quantitative index of fractional abundance of mutated allele (MAFA) was used. KRAS-mutated cohort included 58 patients, and overall 73 treatments (N = 39 chemotherapy and N = 34 immune checkpoint inhibitors) were followed with longitudinal liquid biopsy. Sensitivity of KRAS detection in plasma at baseline was 48.3% (95% confidence interval (CI): 35.0-61.8). KRAS mutation at T2 was associated with increased probability of experiencing progressive disease as best radiological response (adjusted odds ratio: 7.3; 95% CI: 2.1-25.0, p = 0.0016). Increased MAFA (T1-T2) predicted shorter progression-free survival (adjusted hazard ratio (HR): 2.1; 95% CI: 1.2-3.8, p = 0.0142) and overall survival (adjusted HR: 3.2; 95% CI: 1.2-8.4, p = 0.0168). Longitudinal analysis of plasma KRAS mutations correlated with outcome: its early assessment during treatment has great potentialities for monitoring treatment outcome in NSCLC patients."	"KRAS amplification in metastatic colon cancer is associated with a history of inflammatory bowel disease and may confer resistance to anti-EGFR therapy. Mutations in RAS occur in 30-50% of metastatic colorectal carcinomas (mCRCs) and correlate with resistance to anti-EGFR therapy. Consequently, mCRC biomarker guidelines state RAS mutational testing should be performed when considering EGFR inhibitor treatment. However, a small subset of mCRCs are reported to harbor RAS amplification. In order to elucidate the clinicopathologic features and anti-EGFR treatment response associated with RAS amplification, we retrospectively reviewed a large cohort of mCRC patients that underwent targeted next-generation sequencing and copy number analysis for KRAS, NRAS, HRAS, BRAF, and PIK3CA. Molecular testing was performed on 1286 consecutive mCRC from 1271 patients as part of routine clinical care, and results were correlated with clinicopathologic findings, mismatch repair (MMR) status and follow-up. RAS amplification was detected in 22 (2%) mCRCs and included: KRAS, NRAS, and HRAS for 15, 5, and 2 cases, respectively (6-21 gene copies). Patients with a KRAS-amplified mCRC were more likely to report a history of inflammatory bowel disease (p &lt; 0.001). In contrast, mutations in KRAS were associated with older patient age, right-sided colonic origin, low-grade differentiation, mucinous histology, and MMR proficiency (p ≤ 0.017). Four patients with a KRAS-amplified mCRC and no concomitant RAS/BRAF/PIK3CA mutations received EGFR inhibitor-based therapy, and none demonstrated a clinicoradiographic response. The therapeutic impact of RAS amplification was further evaluated using a separate, multi-institutional cohort of 23 patients. Eight of 23 patients with KRAS-amplified mCRC received anti-EGFR therapy and all 8 patients exhibited disease progression on treatment. Although the number of KRAS-amplified mCRCs is limited, our data suggest the clinicopathologic features associated with mCRC harboring a KRAS amplification are distinct from those associated with a KRAS mutation. However, both alterations seem to confer EGFR inhibitor resistance and, therefore, RAS testing to include copy number analyses may be of consideration in the treatment of mCRC."	"Oncogenic states dictate the prognostic and predictive connotations of intratumoral immune response. An immune active cancer phenotype typified by a T helper 1 (Th-1) immune response has been associated with increased responsiveness to immunotherapy and favorable prognosis in some but not all cancer types. The reason of this differential prognostic connotation remains unknown. To explore the contextual prognostic value of cancer immune phenotypes, we applied a multimodal pan-cancer analysis among 31 different histologies (9282 patients), encompassing immune and oncogenic transcriptomic analysis, mutational and neoantigen load and copy number variations. We demonstrated that the favorable prognostic connotation conferred by the presence of a Th-1 immune response was abolished in tumors displaying specific tumor-cell intrinsic attributes such as high transforming growth factor-beta (TGF-β) signaling and low proliferation capacity. This observation was independent of mutation rate. We validated this observation in the context of immune checkpoint inhibition. WNT-β catenin, barrier molecules, Notch, hedgehog, mismatch repair, telomerase activity and AMPK signaling were the pathways most coherently associated with an immune silent phenotype together with mutations of driver genes including IDH1/2, FOXA2, HDAC3, PSIP1, MAP3K1, KRAS, NRAS, EGFR, FGFR3, WNT5A and IRF7. This is the first systematic study demonstrating that the prognostic and predictive role of a bona fide favorable intratumoral immune response is dependent on the disposition of specific oncogenic pathways. This information could be used to refine stratification algorithms and prioritize hierarchically relevant targets for combination therapies."	"Development and Clinical Validation of Discriminatory Multitarget Digital Droplet PCR Assays for the Detection of Hot Spot KRAS and NRAS Mutations in Cell-Free DNA. Detection and quantification of tumor-derived KRAS and NRAS mutations in plasma cell-free DNA (cfDNA) holds great potential for cancer diagnostics and treatment response monitoring. Because of high sensitivity, specificity, robustness, and affordability, digital droplet PCR (ddPCR) is ideally suited for this application but requires discriminatory multiplexing when used as screening assay. We therefore designed, optimized, and clinically validated mutation-specific locked nucleic acid-based ddPCR assays for 14 commonly occurring KRAS and NRAS mutations and assembled these assays into seven discriminatory multitarget screening assays covering two to six single-nucleotide variants each. Limit of detection, limit of blank, and interassay accuracy were determined. Assay performance and suitability for screening in cfDNA were validated with plasma samples from a clinically fully characterized cohort of pancreatic cancer patients and healthy controls. Limits of detection for single-target assays were between 0.0015% and 0.069% variant allele fraction, and between 0.022% and 0.16% for multitarget assays. Dilution linearity and interassay accuracy were excellent throughout (r<sup>2</sup> &gt; 0.99). Multitarget assay screening of cfDNA extracted from pancreatic cancer patients with unknown KRAS mutational status correctly identified single-nucleotide variants in 45 of 45 (100%) of tumor-derived cell-free DNA-positive samples. In summary, we herein present and clinically validate generic single-target and discriminatory multitarget ddPCR assays for KRAS and NRAS hot spot mutations with broad applicability for clinical and translational research."	"The genomic landscape of metastatic breast cancer: Insights from 11,000 tumors. Metastatic breast cancer is the leading cause of cancer death in women, but the genomics of metastasis in breast cancer are poorly studied. We explored a set of 11,616 breast tumors, including 5,034 metastases, which had undergone targeted sequencing during standard clinical care. Besides the known hotspot mutations in ESR1, we observed a metastatic enrichment of previously unreported, lower-prevalence mutations in the ligand-binding domain, implying that these mutations may also be functional. Furthermore, individual ESR1 hotspots are significantly enriched in specific metastatic tissues and histologies, suggesting functional differences between these mutations. Other alterations enriched across all metastases include loss of function of the CDK4 regulator CDKN1B, and mutations in the transcription factor CTCF. Mutations enriched at specific metastatic sites generally reflect biology of the target tissue and may be adaptations to growth in the local environment. These include PTEN and ASXL1 alterations in brain metastases and NOTCH1 alterations in skin. We observed an enrichment of KRAS, KEAP1, STK11 and EGFR mutations in lung metastases. However, the patterns of other mutations in these tumors indicate that these are misdiagnosed lung primaries rather than breast metastases. An order-of-magnitude increase in samples relative to previous studies allowed us to detect novel genomic characteristics of metastatic cancer and to expand and clarify previous findings."	"Transcription and Translation Inhibitors in Cancer Treatment. Transcription and translation are fundamental cellular processes that govern the protein production of cells. These processes are generally up regulated in cancer cells, to maintain the enhanced metabolism and proliferative state of these cells. As such cancerous cells can be susceptible to transcription and translation inhibitors. There are numerous druggable proteins involved in transcription and translation which make lucrative targets for cancer drug development. In addition to proteins, recent years have shown that the &quot;undruggable&quot; transcription factors and RNA molecules can also be targeted to hamper the transcription or translation in cancer. In this review, we summarize the properties and function of the transcription and translation inhibitors that have been tested and developed, focusing on the advances of the last 5 years. To complement this, we also discuss some of the recent advances in targeting oncogenes tightly controlling transcription including transcription factors and KRAS. In addition to natural and synthetic compounds, we review DNA and RNA based approaches to develop cancer drugs. Finally, we conclude with the outlook to the future of the development of transcription and translation inhibitors."	"Chronic exposure to excess iron promotes EMT and cancer via p53 loss in pancreatic cancer. Based on the evidence that hemochromatosis, an iron-overload disease, drives hepatocellular carcinoma, we hypothesized that chronic exposure to excess iron, either due to genetic or environmental causes, predisposes an individual to cancer. Using pancreatic cancer as our primary focus, we employed cell culture studies to interrogate the connection between excess iron and cancer, and combined in vitro and in vivo studies to explore the connection further. Ferric ammonium citrate was used as an exogenous iron source. Chronic exposure to excess iron induced epithelial-mesenchymal transition (EMT) in normal and cancer cell lines, loss of p53, and suppression of p53 transcriptional activity evidenced from decreased expression of p53 target genes (p21, cyclin D1, Bax, SLC7A11). To further extrapolate our cell culture data, we generated EL-Kras<sup>G12D</sup> (EL-Kras) mouse (pancreatic neoplastic mouse model) expressing Hfe<sup>+/+</sup> and Hfe<sup>-/-</sup> genetic background. p53 target gene expression decreased in EL-Kras/Hfe<sup>-/-</sup> mouse pancreas compared to EL-Kras/Hfe<sup>+/+</sup> mouse pancreas. Interestingly, the incidence of acinar-to-ductal metaplasia and cystic pancreatic neoplasms (CPN) decreased in EL-Kras/Hfe<sup>-/-</sup> mice, but the CPNs that did develop were larger in these mice than in EL-Kras/Hfe<sup>+/+</sup> mice. In conclusion, these in vitro and in vivo studies support a potential role for chronic exposure to excess iron as a promoter of more aggressive disease via p53 loss and SLC7A11 upregulation within pancreatic epithelial cells."	"The Roles of Frequently Mutated Genes of Pancreatic Cancer in Regulation of Tumor Microenvironment. Pancreatic ductal adenocarcinoma has extremely high malignancy and patients with pancreatic ductal adenocarcinoma have dismal prognosis. The failure of pancreatic ductal adenocarcinoma treatment is largely due to the tumor microenvironment, which is featured by ample stromal cells and complicated extracellular matrix. Recent genomic analysis revealed that pancreatic ductal adenocarcinoma harbors frequently mutated genes including KRAS, TP53, CDKN2A, and SMAD4, which can widely alter cellular processes and behaviors. As shown by accumulating studies, these mutant genes may also change tumor microenvironment, which in turn affects pancreatic ductal adenocarcinoma progression. In this review, we summarize the role of such genetic mutations in tumor microenvironment regulation and potential mechanisms."	"A Genome-scale CRISPR Screen Identifies the ERBB and mTOR Signaling Networks as Key Determinants of Response to PI3K Inhibition in Pancreatic Cancer. KRAS mutation is a key driver of pancreatic cancer and PI3K pathway activity is an additional requirement for Kras-induced tumorigenesis. Clinical trials of PI3K pathway inhibitors in pancreatic cancer have shown limited responses. Understanding the molecular basis for this lack of efficacy may direct future treatment strategies with emerging PI3K inhibitors. We sought new therapeutic approaches that synergize with PI3K inhibitors through pooled CRISPR modifier genetic screening and a drug combination screen. ERBB family receptor tyrosine kinase signaling and mTOR signaling were key modifiers of sensitivity to alpelisib and pictilisib. Inhibition of the ERBB family or mTOR was synergistic with PI3K inhibition in spheroid, stromal cocultures. Near-complete loss of ribosomal S6 phosphorylation was associated with synergy. Genetic alterations in the ERBB-PI3K signaling axis were associated with decreased survival of patients with pancreatic cancer. Suppression of the PI3K/mTOR axis is potentiated by dual PI3K and ERBB family or mTOR inhibition. Surprisingly, despite the presence of oncogenic KRAS, thought to bestow independence from receptor tyrosine kinase signaling, inhibition of the ERBB family blocks downstream pathway activation and synergizes with PI3K inhibitors. Further exploration of these therapeutic combinations is warranted for the treatment of pancreatic cancer."	"Pancreatic cancer triggers diabetes through TGF-β-mediated selective depletion of islet β-cells. Pancreatic ductal adenocarcinoma (PDAC) is a lethal disease that remains incurable because of late diagnosis, which renders any therapeutic intervention challenging. Most PDAC patients develop de novo diabetes, which exacerbates their morbidity and mortality. How PDAC triggers diabetes is still unfolding. Using a mouse model of Kras<sup>G12D</sup>-driven PDAC, which faithfully recapitulates the progression of the human disease, we observed a massive and selective depletion of β-cells, occurring very early at the stages of preneoplastic lesions. Mechanistically, we found that increased TGF beta (TGF-β) signaling during PDAC progression caused erosion of β-cell mass through apoptosis. Suppressing TGF-β signaling, either pharmacologically through TGF-β immunoneutralization or genetically through deletion of Smad4 or TGF-β type II receptor (TβRII), afforded substantial protection against PDAC-driven β-cell depletion. From a translational perspective, both activation of TGF-β signaling and depletion of β-cells frequently occur in human PDAC, providing a mechanistic explanation for the pathogenesis of diabetes in PDAC patients, and further implicating new-onset diabetes as a potential early prognostic marker for PDAC."	"Paediatric metanephric tumours: a clinicopathological and molecular characterisation. To characterize metanephric tumours in children, we performed a literature review investigating paediatric metanephric adenomas (MA), metanephric stromal tumours (MST) and metanephric adenofibromas (MAF). Including two patients from our own institution (MA, MAF), 110 individual cases (41 MA, 20 MAF, 49 MST) were identified. Additionally, fifteen composite tumours were identified, with areas of MA/MAF and Wilms tumour (WT) or papillary carcinoma. No distinct clinical or radiological features could be defined. In pure metanephric tumours, histologically proven distant metastases were reported once (MA), relapse was reported once (MST) and one tumour-related death occurred (MST). Somatic BRAF-V600E mutations were tested in 15 cases, and identified in 3/6 MA, 3/3 MAF, and 6/6 MST. In our institution the MA harboured a somatic KRAS-G12R mutation. Overall, paediatric metanephric tumours are difficult to discriminate from other renal tumours at presentation, behave relatively benign, and the occurrence of composite tumours warrants analysis of underlying (genetic) pathways."	"Plasma-Derived Extracellular Vesicles Convey Protein Signatures that Reflect Pathophysiology in Lung and Pancreatic Adenocarcinomas. Using a combination of mass-spectrometry and aptamer array-based proteomics, we characterized the protein features of circulating extracellular vesicles (EVs) in the context of lung (LUAD) and pancreatic ductal (PDAC) adenocarcinomas. We profiled EVs isolated from conditioned media of LUAD and PDAC cell lines to identify EV-associated protein cargoes released by these cancer cell types. Analysis of the resulting data identified LUAD and PDAC specific and pan-adenocarcinoma EV protein signatures. Bioinformatic analyses confirmed enrichment of proteins annotated to vesicle-associated processes and intracellular compartments, as well as representation of cancer hallmark functions and processes. Analysis of upstream regulator networks indicated significant enrichment of TP53, MYC, TGFB1 and KRAS-driven network effectors (p = 1.69 × 10<sup>-77</sup>-2.93 × 10<sup>-49</sup>) manifest in the adenocarcinoma sEV protein cargoes. We extended these findings by profiling the proteome of EVs isolated from lung (N = 15) and pancreatic ductal (N = 6) adenocarcinoma patient plasmas obtained at time of diagnosis, along with EVs derived from matched healthy controls (N = 21). Exploration of these proteomic data revealed abundant protein features in the plasma EVs with capacity to distinguish LUAD and PDAC cases from controls, including features yielding higher performance in the plasma EV isolates relative to unfractionated plasmas."	"High Expression of microRNA-143 is Associated with Favorable Tumor Immune Microenvironment and Better Survival in Estrogen Receptor Positive Breast Cancer. microRNA-143(miR-143) is a well-known tumor suppressive microRNA that exhibits anti-tumoral function by targeting KRAS signaling pathways in various malignancies. We hypothesized that miR-143 suppresses breast cancer progression by targeting KRAS and its effector molecules. We further hypothesized that high expression of miR-143 is associated with a favorable tumor immune microenvironment of estrogen receptor (ER)-positive breast cancer patients which result in improved survival. Two major publicly available breast cancer cohorts; The Cancer Genome Atlas (TCGA) and Molecular Taxonomy of Breast Cancer International Consortium (METABRIC) were used. The miR-143 high expression group was associated with increased infiltration of anti-cancer immune cells and decreased pro-cancer immune cells, as well as enrichment of the genes relating to T helper (Th1) cells resulting in improved overall survival (OS) in ER-positive breast cancer patients. To the best of our knowledge, this is the first study to demonstrate that high expression of miR-143 in cancer cells associates with a favorable tumor immune microenvironment, upregulation of anti-cancer immune cells, and suppression of the pro-cancer immune cells, associating with better survival of the breast cancer patients."	"Mutational Profiling of Driver Tumor Suppressor and Oncogenic Genes in Brazilian Malignant Pleural Mesotheliomas. Malignant pleural mesothelioma (MPM) is a highly lethal disease comprising a heterogeneous group of tumors with challenging to predict biological behavior. The diagnosis is complex, and the histologic classification includes 2 major subtypes of MPM: epithelioid (∼60% of cases) and sarcomatous (∼20%). Its identification depends upon pathological investigation supported by clinical and radiological evidence and more recently ancillary molecular testing. Treatment options are currently limited, with no known targeted therapies available. To elucidate the mutation profile of driver tumor suppressor and oncogenic genes in a cohort of Brazilian patients. We sequenced 16 driver genes in a series of 43 Brazilian malignant mesothelioma (MM) patients from 3 distinct Brazilian centers. Genomic DNA was extracted from formalin-fixed paraffin-embedded tumor tissue blocks, and the TERT promoter region was amplified by PCR followed by direct capillary sequencing. The Illumina TruSight Tumor 15 was used to evaluate 250 amplicons from 15 genes associated with solid tumors (AKT1, GNA11, NRAS, BRAF, GNAQ, PDGFRA, EGFR, KIT, PIK3CA, ERBB2, KRAS, RET, FOXL2, MET,and TP53). Library preparation with the TruSight Tumor 15 was performed before sequencing at the MiSeq platform. Data analysis was performed using Sophia DDM software. Out of 43 MPM patients, 38 (88.4%) were epithelioid subtype and 5 (11.6%) were sarcomatoid histotype. Asbestos exposure was present in 15 (39.5%) patients with epithelioid MPM and 3 (60%) patients with sarcomatoid MPM. We found a TERT promoter mutation in 11.6% of MM, and the c.-146C&gt;T mutation was the most common event. The next-generation sequencing was successful in 33 cases. A total of 18 samples showed at least 1 pathogenic, with a median of 1.8 variants, ranging from 1 to 6. The most mutated genes were TP53 and ERBB2 with 7 variants each, followed by NRAS BRAF, PI3KCA, EGFR and PDGFRA with 2 variants each. KIT, AKT1, and FOXL2 genes exhibited 1 variant each. Interestingly, 2 variants observed in the PDGFRA gene are classic imatinib-sensitive therapy. We concluded that Brazilian MPM harbor mutation in classic tumor suppressor and oncogenic genes, which might help in the guidance of personalized treatment of MPM."	"Anthrax Protective Antigen Retargeted with Single-Chain Variable Fragments Delivers Enzymes to Pancreatic Cancer Cells. The nontoxic, anthrax protective antigen/lethal factor N-terminal domain (PA/LFN ) complex is an effective platform for translocating proteins into the cytosol of cells. Mutant PA (mPA) was recently fused to epidermal growth factor (EGF) to retarget delivery of LFN to cells bearing EGF receptors (EGFR), but the requirement for a known cognate ligand limits the applicability of this approach. Here, we render practical protective antigen retargeting to a variety of receptors with mPA single-chain variable fragment (scFv) fusion constructs. Our design enables the targeting of two pancreatic cancer-relevant receptors, EGFR and carcinoembryonic antigen. We demonstrate that fusion to scFvs does not disturb the basic functions of mPA. Moreover, mPA-scFv fusions enable cell-specific delivery of diphtheria toxin catalytic domain and Ras/Rap1-specific endopeptidase to pancreatic cancer cells. Importantly, mPA-scFv fusion-based treatments display potent cell-specific toxicity in vitro, opening fundamentally new routes toward engineered immunotoxins and providing a potential solution to the challenge of targeted protein delivery to the cytosol of cancer cells."	"Molecular Guided Treatments in Gynecologic Oncology: Analysis of a Real-World Precision Cancer Medicine Platform. Advanced gynecologic cancers have a poor prognosis and constitute a major challenge for adequate treatment strategies. By analyzing and targeting molecular alterations, molecular guided treatments may be a viable option for the treatment of advanced gynecologic cancers. In this single-center, real-world retrospective analysis of our platform for precision cancer medicine (PCM), we describe the molecular profiling of 72 patients diagnosed with different types of advanced gynecologic malignancies. Tumor samples of the patients were examined by next-generation sequencing panel and immunohistochemistry (IHC). In total, we identified 209 genetic aberrations in 72 patients. The ten most frequent alterations were TP53 (n = 42, 20%), KRAS (n = 14, 6.6%), PIK3CA (n = 11, 5.2%), PIK3R1 (n = 9, 4.3%), ATR (n = 8, 3.8%), PTEN (n = 8, 3.8%), BRCA1 (n = 6, 2.8%), NF1 (n = 4, 1.9%), NOTCH1 (n = 4, 1.9%), and POLE (n = 4, 1.9%), which account for more than half of all molecular alterations (52.6%). In 21 (29.1%) patients only one mutation could be detected, and 44 (61.1%) patients had more than one mutation. No molecular alterations were detected in seven (9.7%) patients. IHC detected expression of phosphorylated mammalian target of rapamycin and epidermal growth factor receptor in 58 (80.6%) and 53 (73.6%) patients, respectively. In over two thirds (n = 49, 68.1%), a targeted therapy was suggested, based on the identified genetic aberrations. The most frequently recommended specific treatment was the combination of everolimus with exemestane (n = 18, 25 %). Based on our observations, it seems that PCM might be a feasible approach for advanced gynecologic cancers with limited treatment options. Nowadays molecular profiling of advanced gynecologic malignancies is feasible in the clinical routine. A molecular portrait should be done for every patient with an advanced therapy-refractory gynecologic malignancy to offer molecular-based treatment concepts."	"Grifolin, neogrifolin and confluentin from the terricolous polypore Albatrellus flettii suppress KRAS expression in human colon cancer cells. In our search for bioactive mushrooms native to British Columbia, we determined that the ethanol extracts from fruiting bodies of the terrestrial polypore Albatrellus flettii had potent anti-cell viability activity. Using bioassay-guided fractionation, mass spectrometry and nuclear magnetic resonance, we successfully isolated three known compounds (grifolin, neogrifolin and confluentin). These compounds represent the major anti-cell viability components from the ethanol extracts of A. flettii. We also identified a novel biological activity for these compounds, specifically in down-regulating KRAS expression in two human colon cancer cell lines. Relatively little is known about the anti-cell viability activity and mechanism of action of confluentin. For the first time, we show the ability of confluentin to induce apoptosis and arrest the cell cycle at the G2/M phase in SW480 human colon cancer cells. The oncogenic insulin-like growth factor 2 mRNA-binding protein 1 (IMP1) has been previously shown to regulate KRAS mRNA expression in colon cancer cells, possibly through its ability to bind to the KRAS transcript. Using a fluorescence polarization assay, we show that confluentin dose-dependently inhibits the physical interaction between KRAS RNA and full-length IMP1. The inhibition also occurs with truncated IMP1 containing the KH1 to KH4 domain (KH1to4 IMP1), but not with the di-domain KH3 and KH4 (KH3&amp;4 IMP1). In addition, unlike the control antibiotic neomycin, grifolin, neogrifolin and confluentin do not bind to KRAS RNA. These results suggest that confluentin inhibits IMP1-KRAS RNA interaction by binding to the KH1&amp;2 di-domains of IMP1. Since the molecular interaction between IMP1 and its target RNAs is a pre-requisite for the oncogenic function of IMP1, confluentin should be further explored as a potential inhibitor of IMP1 in vivo."	"Black raspberries suppress pancreatic cancer through modulation of NKp46<sup>+</sup>, CD8<sup>+</sup>, and CD11b<sup>+</sup> immune cells. Pancreatic ductal adenocarcinoma (PDAC) is a fatal disease with a low survival rate (9%). Epidemiologic studies show that healthy dietary patterns enriched of fruits and vegetables lower the risk of PDAC. We previously showed that supplementing black raspberries (BRBs) to patients with colorectal cancer increased tumor-infiltrating NK cells and their cytotoxicity. We aimed to determine whether BRBs combat PDAC by modulating cancer immunity. NOD.SCID mice lacking T and B cells were injected with human Panc-1-Luc cells orthotopically, and immunocompetent Kras<sup> LSL.G12D/+ </sup>-Trp53<sup> LSL.R172H/+ </sup>-Pdx-1-Cre mice were fed BRBs. Peripheral blood mononuclear cells (PBMCs) from PDAC patients were treated with butyrate, a microbial metabolite of BRBs. The absence of T and B cells did not dampen BRBs' anti-tumor effects in the NOD.SCID mice. In the Kras<sup> LSL.G12D/+ </sup>-Trp53<sup> LSL.R172H/+ </sup>-Pdx-1-Cre mice, BRBs significantly prolonged survival (189 days versus 154 days). In both models, BRBs decreased tumor-infiltrating CD11b<sup>+</sup> cells and the expression of IL-1β, sEH, and Ki67. BRBs also increased tumor-infiltrating NKp46<sup>+</sup> cells and the expression of CD107a, a functional marker of cytolytic NK and CD8<sup>+</sup> T cells. In Kras<sup> LSL.G12D/+ </sup>-Trp53<sup> LSL.R172H/+ </sup>-Pdx-1-Cre mice, tumor infiltration of CD8<sup>+</sup> T cells was increased by BRBs. Further using the PBMCs from PDAC patients, we show that butyrate decreased the population of myeloid-derived suppressor cells (MDSCs). Butyrate also reversed CD11b<sup>+</sup> cell-mediated suppression on CD8<sup>+</sup> T cells. Interestingly, there is a negative association between MDSC changes and patients' survival, suggesting that the more decrease in MDSC population induced by butyrate treatment, the longer the patient had survived. Our study suggests the immune-modulating potentials of BRBs in PDAC."	"Cisplatin sensitivity mediated by NKX2-1 in lung adenocarcinoma is dependent on p53 mutational status via modulating TNFSF10 expression. NKX2-1 was shown to enhance cisplatin sensitivity in KRAS-mutated cells, but it conferred cisplatin resistance in EGFR-mutated lung adenocarcinoma cells. However, NKX2-1 as a dual role in tumor progression depended on p53 mutational status via modulation of the NF-κB pathway. We hypothesized that NKX2-1 may confer cisplatin resistance in p53-mutated (p53-MT) lung adenocarcinoma cells but may enhance cisplatin sensitivity in wild-type (p53-WT) cells. In the present study, six p53-MT and -p53-WT cell lines were treated with various concentrations of cisplatin to calculate the inhibitory concentration of cisplatin for 50% cell viability (IC50). The IC50 value was positively correlated with NKX2-1 expression in the p53-MT cells but negatively correlated in the p53-WT cells. TNFSF10 was identified in a microarray analysis as a potential candidate responsible for NKX2-1-mediated apoptosis induced by cisplatin. The retrospective study evaluated 97 surgically resected lung adenocarcinoma patients receiving cisplatin-based chemotherapy to explore the possible association between NKX2-1 expression and tumor response. Patients with higher TNFSF10 mRNA levels, as determined by real-time reverse transcription-polymerase Chain Reaction (RT-PCR), typically showed an favorable response when compared with patients with lower TNFSF10 mRNA levels. Additionally, the association of higher TNFSF10 mRNA levels with favorable response was only revealed in p53-WT patients, not in p53-MT patients. Higher NKX2-1 mRNA levels were associated with an unfavorable response in patients with p53-MT tumors but a favorable response in patients with p53-WT tumors. In summary, modulation of TNFSF10 expression by NKX2-1 may be a potential indicator for predicting the response to cisplatin-based chemotherapy in patients with lung adenocarcinomas."	"Abrogation of ARF6 promotes RSL3-induced ferroptosis and mitigates gemcitabine resistance in pancreatic cancer cells. ADP Ribosylation Factor 6 (ARF6) is a part of the RAS superfamily and regulates vesicular trafficking, remodeling of membrane lipids, and signaling pathways. Our previous study has found that ARF6, functioned as a downstream of Kras/ERK signaling pathway, could promote proliferation and Warburg effect in pancreatic cancer cells. Moreover, ARF6 is promising to be a biomarker for predicting prognosis of pancreatic cancer. Ferroptosis is a new defined iron-dependent form of nonapoptotic cell death, which is closely related to Kras mutation. Therefore, it is urgent to further explore the relationship between ARF6 and ferroptosis. Our study demonstrated that ARF6 did not directly regulate lipid peroxidation, but endowed pancreatic cancer cells to a status that is sensitive to oxidative stress, especially RSL3-induced lipid peroxidation. Further study revealed that ARF6 could also regulate gemcitabine resistance via multiple pathways. In conclusion, ARF6 has a profound effect on pancreatic cancer development."	"Primary tumor location and survival in colorectal cancer: A retrospective cohort study. Primary tumor location is a prognostic factor for metastatic colorectal cancer (mCRC). Post hoc analyses of mCRC clinical trials, including FIRE-3, CALGB/SWOG 80405, suggest that primary tumor location is also predictive of survival benefit with cetuximab or bevacizumab in combination with 5-fluorouracil-based chemotherapy. Evaluate prognostic/predictive roles of primary tumor location in real-world mCRC patients treated with cetuximab or bevacizumab plus 5-fluorouracil-based chemotherapy. This retrospective cohort study selected patients with KRAS wild-type mCRC who initiated first-line therapy with cetuximab or bevacizumab in combination with 5-fluorouracil/leucovorin/irinotecan (FOLFIRI) or 5-fluorouracil/ leucovorin/oxaliplatin (FOLFOX) between January 2013 and April 2017 from the Flatiron Health electronic health record-derived database of de-identified patient-level data in the United States. Primary tumor location was abstracted from patients' charts. Left-sided primary tumor location (LPTL) was defined as tumors that originated in the splenic flexure, descending colon, sigmoid colon, or rectum; right-sided primary tumor location (RPTL) was defined as tumors that originated from the appendix, cecum, ascending colon, hepatic flexure, or transverse colon. Propensity score matching was used to balance the baseline demographic and clinical characteristics between patients treated with cetuximab and patients treated with bevacizumab. Kaplan-Meier and Cox regression methods were used for survival analyses. A total of 1312 patients met the selection criteria. Of 248 cetuximab plus FOLFIRI or FOLFOX patients, 164 had LPTL and 84 had RPTL; of 1064 bevacizumab plus FOLFIRI or FOLFOX patients, 679 had LPTL and 385 had RPTL. Cetuximab LPTL and RPTL patients were more likely to receive FOLFIRI vs bevacizumab patients (LPTL: 64.0% vs 24.3%; RPTL: 76.2% vs 24.9%, P &lt; 0.001). Stage at initial diagnosis was different between cetuximab RPTL vs bevacizumab RPTL patients (P &lt; 0.001); cetuximab RPTL patients were more likely to have stage III disease (44.0% vs 22.6%), while bevacizumab RPTL patients were more likely to have stage IV disease (65.7% vs 48.8%). Cetuximab RPTL patients were more likely to have a documented history of adjuvant chemotherapy vs bevacizumab RPTL patients (47.6% vs 22.3%, P &lt; 0.001). In the propensity score-matched sample, median overall survival (OS) was 29.7 mo (95%CI: 26.9-35.2) for LPTL patients vs 18.3 mo (95%CI: 15.8-21.3) for RPTL patients (P &lt; 0.001). Median OS was 29.7 mo (95%CI: 27.4-NA) for cetuximab LPTL patients vs 29.1 mo (95%CI: 26.6-35.6) for bevacizumab LPTL patients (HR = 0.87; 95%CI: 0.63-1.19; P = 0.378) and 17.0 mo (95%CI: 12.0-32.6) for cetuximab RPTL patients vs 18.8 mo (95%CI: 15.8-22.3) for bevacizumab RPTL patients (HR = 1.00; 95%CI: 0.68-1.46; P = 0.996). The interaction of treatment and primary tumor location was not significant in the Cox regression. In this real-world mCRC cohort, the prognostic role of primary tumor location was substantiated, but not the predictive role for treatment with cetuximab vs bevacizumab in combination with 5-fluorouracil-based chemotherapy."	"HACE1 Prevents Lung Carcinogenesis via Inhibition of RAC-Family GTPases. HACE1 is an E3 ubiquitin ligase with important roles in tumor biology and tissue homeostasis. Loss or mutation of HACE1 has been associated with the occurrence of a variety of neoplasms, but the underlying mechanisms have not been defined yet. Here, we report that HACE1 is frequently mutated in human lung cancer. In mice, loss of Hace1 led to enhanced progression of KRas<sup>G12D</sup> -driven lung tumors. Additional ablation of the oncogenic GTPase Rac1 partially reduced progression of Hace1<sup>-/-</sup> lung tumors. RAC2, a novel ubiquitylation target of HACE1, could compensate for the absence of its homolog RAC1 in Hace1-deficient, but not in HACE1-sufficient tumors. Accordingly, ablation of both Rac1 and Rac2 fully averted the increased progression of KRas<sup>G12D</sup> -driven lung tumors in Hace1<sup>-/-</sup> mice. In patients with lung cancer, increased expression of HACE1 correlated with reduced levels of RAC1 and RAC2 and prolonged survival, whereas elevated expression of RAC1 and RAC2 was associated with poor prognosis. This work defines HACE1 as a crucial regulator of the oncogenic activity of RAC-family GTPases in lung cancer development. SIGNIFICANCE: These findings reveal that mutation of the tumor suppressor HACE1 disrupts its role as a regulator of the oncogenic activity of RAC-family GTPases in human and murine lung cancer. GRAPHICAL ABSTRACT: http://cancerres.aacrjournals.org/content/canres/80/14/3009/F1.large.jpg."	"Usefulness of Two Independent DNA and RNA Tissue-Based Multiplex Assays for the Routine Care of Advanced NSCLC Patients. Personalized medicine is nowadays a paradigm in lung cancer management, offering important benefits to patients. This study aimed to test the feasibility and utility of embedding two multiplexed genomic platforms as the routine workup of advanced non-squamous non-small cell lung cancer (NSCLC) patients. Two parallel multiplexed approaches were performed based on DNA sequencing and direct digital detection of RNA with nCounter<sup>®</sup> technology to evaluate gene mutations and fusions. The results were used to guide genotype-directed therapies and patient outcomes were collected. A total of 224 advanced non-squamous NSCLC patients were prospectively included in the study. Overall, 85% of samples were successfully characterized at DNA and RNA levels and oncogenic drivers were found in 68% of patients, with KRAS, EGFR, METΔex14, BRAF, and ALK being the most frequent (31%, 19%, 5%, 4%, and 4%, respectively). Among all patients with complete genotyping results and follow-up data (n = 156), the median overall survival (OS) was 1.90 years (confidence interval (CI) 95% 1.69-2.10) for individuals harbouring an actionable driver treated with a matched therapy, compared with 0.59 years (CI 95% 0.39-0.79) in those not eligible for any targeted therapy and 0.61 years (CI 95% 0.12-1.10) in patients with no drivers identified (p &lt; 0.001). Integrating DNA and RNA multiplexing technologies into the routine molecular testing of advanced NSCLC patients is feasible and useful and highlights the necessity of widespread integrating comprehensive molecular diagnosis into lung cancer care."	"Ki-67 index of 55% distinguishes two groups of bronchopulmonary pure and composite large cell neuroendocrine carcinomas with distinct prognosis. Little information is available concerning prognostic factors of bronchopulmonary large cell neuroendocrine carcinomas (BP-LCNECs) and even less is known about combined LCNECs (Co-LCNECs). We investigated whether an integrated morphological, immunohistochemical and molecular approach could be used for their prognostic evaluation. Morphological (including combined features), proliferative (mitotic count/Ki-67 index), immunohistochemical (napsin A, p-40, TTF-1, CD44, OTP, SSTR2A, SSTR5, mASH1, p53, RB1, MDM2) and genomic (TP53, RB1, ATM, JAK2, KRAS, STK11) findings were analyzed from BP-LCNECs from 5 Italian centers, and correlated with overall survival (OS). Ki-67 was expressed as a percentage of positive cells in hot spot as indicated in the WHO 2019 Digestive System Tumors and, for Co-LCNEC, Ki-67 was evaluated only in the LCNEC component. 111 LCNECs were distinguished in: 70 pure LCNECs, 35 co-LCNECs [27 with adenocarcinoma (ADC); 8 with squamous cell carcinoma (SqCC) and 6 LCNECs with only napsin A immunoreactivity]. Ki-67 cut off at 55% evaluated in the NE component was the most powerful OS predictor (Log-rank P=0.0001) in all LCNECs: 34 LCNECs-A Ki-67 &lt;55% and 77 LCNECs-B Ki-67 ≥55%; statistical differences in OS (Log-rank P=0.0001) were also observed between pure and co-LCNECs. A significant difference in OS was found between pure LCNEC-A and co-LCNEC-A (P&lt;0.05) but not between pure LCNEC-B and Co-LCNEC-B. Co-LCNEC-ADC and LCNEC Napsin A+ cases had longer OS than pure LCNEC and Co-LCNEC-SqCC cases (Log-rank P=0.0001). At multivariable analysis, tumor location, pure vs combined features and napsin A, but no single gene mutation, were significantly associated with OS, after adjustment for Ki-67 and study center (P&lt;0.05). The Ki-67 proliferation index and the morphologic characterization of combined features in LCNECs seem to be important tools for predicting clinical outcome in BP-LCNECs."	"Human papillomavirus-negative epithelial proliferations resembling condylomata acuminata in a patient receiving vemurafenib for Stage IV melanoma. With the discovery of v-Raf murine sarcoma viral oncogene homolog B (BRAF) inhibitors, new treatment possibilities arose against metastatic melanoma. A frequent adverse effect of BRAF inhibitor therapy is the induction of epithelial proliferations such as cutaneous squamous cell carcinoma and verrucous papilloma. Here, we describe a case in which a patient developed extensive anal epithelial proliferations resembling condylomata acuminata, after starting vemurafenib treatment. This adverse effect has rarely been reported in the literature. Interestingly, the lesions in our patient were negative for human papillomavirus, and mutations in BRAF, Neuroblastoma rat sarcoma viral oncogene homolog (NRAS), Kirsten rat sarcoma viral oncogene homolog (KRAS), and Harvey rat sarcoma viral oncogene homolog (HRAS) were not detected. Different pathways can contribute to these epithelial proliferations resembling condylomata acuminata. We show the relevance of a detailed history at the beginning and during treatment, instructions, education, and dermatological follow-up (including the genital area) for patients treated with BRAF inhibitors. Condylomata acuminata can influence the quality of life and are treated, in an early stage, with cryotherapy, coagulation, imiquimod, and/or CO2 laser therapy."	"EGFR-mutant lung adenocarcinoma harboring co-mutational tumor suppressor genes predicts poor prognosis. EGFR mutations occur most frequently in patients with lung adenocarcinoma in East Asia. However, the prognostic and therapeutic impact of co-mutational status of EGFR and tumor suppressor genes is not fully understood. This study aims to provide a deeper understanding of lung adenocarcinoma patients with co-mutation of EGFR and tumor suppressor genes. From November 2009 to May 2016, 675 patients with lung adenocarcinoma who underwent complete surgery were included in this study. Samples were collected and pathologically examined. Whole-exome sequencing was performed on 197 samples, while direct sequencing of major driver genes, including EGFR, KRAS, ERBB2 and BRAF and Ion-torrent targeted sequencing of tumor suppressor genes, including TP53, KEAP1, MGA, NF1, RB1, SMARCA4 and STK11, were performed on 478 samples. Tumor mutational burden was calculated and survival analyses were performed. The frequency of EGFR and TP53 mutation was 409 (60.6%) and 215 (31.9%), respectively. Co-mutation of EGFR and TP53 occured in 151 patients (22.4%), while co-mutation of EGFR and at least one tumor suppressor gene occured in 184 patients (27.3%). Compared with patients with only EGFR mutations, patients with co-mutations of EGFR and TP53 had a higher tumor mutational burden (p = 0.007) and worse recurrence-free survival (p = 0.010), while patients with co-mutations of EGFR and at least one tumor suppressor gene had a higher tumor mutational burden (p = 0.007), worse recurrence-free survival (p = 0.016) and worse overall survival (p = 0.018). Lung adenocarcinoma patients harboring EGFR and co-mutational tumor suppressor genes should be regarded as a unique subgroup."	"SETDB1 Inhibits p53-Mediated Apoptosis and Is Required for Formation of Pancreatic Ductal Adenocarcinomas in Mice. SETDB1, a histone methyltransferase that trimethylates histone H3 on lysine 9, promotes development of several tumor types. We investigated whether SETDB1 contributes to development of pancreatic ductal adenocarcinoma (PDAC). We performed studies with Ptf1a<sup>Cre</sup>; Kras<sup>G12D</sup>; Setdb1<sup>f/f</sup>, Ptf1a<sup>Cre</sup>; Kras<sup>G12D</sup>; Trp53<sup>f/+</sup>; Setdb1<sup>f/f</sup>, and Ptf1a<sup>Cre</sup>; Kras<sup>G12D</sup>; Trp53<sup>f/f</sup>; Setdb1<sup>f/f</sup> mice to investigate the effects of disruption of Setdb1 in mice with activated KRAS-induced pancreatic tumorigenesis, with heterozygous or homozygous disruption of Trp53. We performed microarray analyses of whole-pancreas tissues from Ptf1a<sup>Cre</sup>; Kras<sup>G12D</sup>; Setdb1<sup>f/f</sup>, and Ptf1a<sup>Cre</sup>; Kras<sup>G12D</sup> mice and compared their gene expression patterns. Chromatin immunoprecipitation assays were performed using acinar cells isolated from pancreata with and without disruption of Setdb1. We used human PDAC cells for SETDB1 knockdown and inhibitor experiments. Loss of SETDB1 from pancreas accelerated formation of premalignant lesions in mice with pancreata that express activated KRAS. Microarray analysis revealed up-regulated expression of genes in the apoptotic pathway and genes regulated by p53 in SETDB1-deficient pancreata. Deletion of SETDB1 from pancreas prevented formation of PDACs, concomitant with increased apoptosis and up-regulated expression of Trp53 in mice heterozygous for disruption of Trp53. In contrast, pancreata of mice with homozygous disruption of Trp53 had no increased apoptosis, and PDACs developed. Chromatin immunoprecipitation revealed that SETDB1 bound to the Trp53 promoter to regulate its expression. Expression of an inactivated form of SETDB1 in human PDAC cells with wild-type TP53 resulted in TP53-induced apoptosis. We found that the histone methyltransferase SETDB1 is required for development of PDACs, induced by activated KRAS, in mice. SETDB1 inhibits apoptosis by regulating expression of p53. SETDB1 might be a therapeutic target for PDACs that retain p53 function."	"RAF1 rearrangements are common in pancreatic acinar cell carcinomas. There is now evidence that gene fusions activating the MAPK pathway are relatively common in pancreatic acinar cell carcinoma with potentially actionable BRAF or RET fusions being found in ~30%. We sought to investigate the incidence of RAF1 fusions in pancreatic malignancies with acinar cell differentiation. FISH testing for RAF1 was undertaken on 30 tumors comprising 25 'pure' acinar cell carcinomas, 2 mixed pancreatic acinar-neuroendocrine carcinomas, 1 mixed acinar cell-low grade neuroendocrine tumor and 2 pancreatoblastomas. RAF1 rearrangements were identified in 5 cases and confirmed by DNA and RNA sequencing to represent oncogenic fusions (GATM-RAF1, GOLGA4-RAF1, PDZRN3-RAF1, HERPUD1-RAF1 and TRIM33-RAF1) and to be mutually exclusive with BRAF and RET fusions, as well as KRAS mutations. Large genome-wide copy number changes were common and included 1q gain and/or 1p loss in all five RAF1 FISH-positive acinar cell carcinomas. RAF1 expression by immunohistochemistry was found in 3 of 5 (60%) of fusion-positive cases and no FISH-negative cases. Phospho-ERK1/2 expression was found in 4 of 5 RAF1-fusion-positive cases. Expression of both RAF1 and phospho-ERK1/2 was heterogeneous and often only detected at the tumor-stroma interface, thus limiting their clinical utility. We conclude that RAF1 gene rearrangements are relatively common in pancreatic acinar cell carcinomas (14.3% to 18.5% of cases) and can be effectively identified by FISH with follow up molecular testing. The combined results of several studies now indicate that BRAF, RET or RAF1 fusions occur in between one third and one-half of these tumors but are extremely rare in other pancreatic malignancies. As these fusions are potentially actionable with currently available therapies, a strong argument can be made to perform FISH or molecular testing on all pancreatic acinar cell carcinomas."	"Proimmunogenic impact of MEK inhibition synergizes with agonist anti-CD40 immunostimulatory antibodies in tumor therapy. Cancer types with lower mutational load and a non-permissive tumor microenvironment are intrinsically resistant to immune checkpoint blockade. While the combination of cytostatic drugs and immunostimulatory antibodies constitutes an attractive concept for overcoming this refractoriness, suppression of immune cell function by cytostatic drugs may limit therapeutic efficacy. Here we show that targeted inhibition of mitogen-activated protein kinase (MAPK) kinase (MEK) does not impair dendritic cell-mediated T cell priming and activation. Accordingly, combining MEK inhibitors (MEKi) with agonist antibodies (Abs) targeting the immunostimulatory CD40 receptor results in potent synergistic antitumor efficacy. Detailed analysis of the mechanism of action of MEKi shows that this drug exerts multiple pro-immunogenic effects, including the suppression of M2-type macrophages, myeloid derived suppressor cells and T-regulatory cells. The combination of MEK inhibition with agonist anti-CD40 Ab is therefore a promising therapeutic concept, especially for the treatment of mutant Kras-driven tumors such as pancreatic ductal adenocarcinoma."	"The protein kinase MAP3K19 phosphorylates MAP2Ks and thereby activates ERK and JNK kinases and increases viability of KRAS-mutant lung cancer cells. Identifying additional mitogen-activated protein kinase (MAPK) pathway regulators is invaluable in aiding our understanding of the complex signaling networks that regulate cellular processes, including cell proliferation and survival. Here, using in vitro kinase assays and by expressing WT or kinase-dead MAPK kinase kinase 19 (MAP3K19) in the HEK293T cell line and assessing activation of the extracellular signal-regulated kinase (ERK) and JUN N-terminal kinase (JNK) signaling pathways, we defined MAP3K19 as a novel regulator of MAPK signaling. We also observed that overexpression of WT MAP3K19 activates both the ERK and JNK pathways in a panel of cancer cell lines. Furthermore, MAP3K19 sustained ERK pathway activation in the presence of inhibitors targeting the RAF proto-oncogene Ser/Thr protein kinase (RAF) and MAPK/ERK kinase, indicating that MAP3K19 activates ERK via a RAF-independent mechanism. Findings from in vitro and in-cell kinase assays demonstrate that MAP3K19 is a kinase that directly phosphorylates both MAPK/ERK kinase (MEK) and MAPK kinase 7 (MKK7). Results from an short-hairpin RNA screen indicated that MAP3K19 is essential for maintaining survival in KRAS-mutant cancers; therefore, we depleted or inhibited MAP3K19 in KRAS-mutant cancer cell lines and observed that this reduces viability and decreases ERK and JNK pathway activation. In summary, our results reveal that MAP3K19 directly activates the ERK and JNK cascades and highlight a role for this kinase in maintaining survival of KRAS-mutant lung cancer cells."	"Extrapulmonary poorly differentiated NECs, including molecular and immune aspects. Patients with extrapulmonary poorly differentiated neuroendocrine carcinomas (EP-PD-NECs) have a poor prognosis. Surgery is offered for those with localised disease, but the majority of patients present with advanced disease. Treatment strategies adopted are analogous to that of high grade NECs of the lung, with platinum/etoposide-based regimens advocated in the first-line setting for advanced disease. There is no standard second-line therapy. Research into their molecular and immune pathways may pave the way for novel drug discovery. The molecular drivers of NEC are best identified in small cell lung carcinoma, which present with near universal genomic alterations in TP53 and RB1. The genetics of EP-PD-NEC remain poorly understood; TP53, KRAS, PIK3CA/PTEN and BRAF mutations have been identified, with alterations in the BRCA pathway reported additionally in small cell NEC of the cervix and absence of argininosuccinate synthetase 1 expression in NEC of the urinary bladder. The use of cell lines and patient-derived xenografts (PDX) to predict response to treatment in NEC and the emergence of alternative biomarkers, such as circulating tumour cells and cell-free DNA, will also be explored. Despite limited published data on the immune microenvironment of EP-NEC, there are a number of clinical trials investigating the use of immune-targeted agents in this disease category, with conflicting emerging data from studies thus far. This review will summarise the treatment and available molecular and immune data in this under researched diagnosis and may stimulate the direction of future exploratory studies."	"Identification of m6A-related genes and m6A RNA methylation regulators in pancreatic cancer and their association with survival. N6-methyladenosine (m6A) modification holds an important position in tumorigenesis and metastasis because it can change gene expression and even function in multiple levels including RNA splicing, stability, translocation and translation. In present study, we aim to conducted comprehensive investigation on m6A RNA methylation regulators and m6A-related genes in pancreatic cancer and their association with survival time. Based on Univariate Cox regression analysis, protein-protein interaction analysis, LASSO Cox regression, a risk prognostic model, STRING, Spearman and consensus clustering analysis, data from The Cancer Genome Atlas (TCGA) and the International Cancer Genome Consortium (ICGC) database was used to analyze 15 m6A RNA methylation regulators that were widely reported and 1,393 m6A-related genes in m6Avar. We found that 283 candidate m6A RNA methylation-related genes and 4 m6A RNA methylation regulatory factors, including RNA binding motif protein 15 (RBM15), methyltransferase like 14 (METTL14), fat mass and obesity-associated protein (FTO), and α-ketoglutarate-dependent dioxygenase AlkB homolog 5 (ALKBH5), differed significantly among different stages of the American Joint Committee on Cancer (AJCC) staging system. Protein-protein interaction analysis indicated epidermal growth factor receptor (EGFR), plectin-1 (PLEC), BLM RecQ like helicase (BLM), and polo like kinase 1 (PLK1) were closely related to other genes and could be considered as hub genes in the network. The results of LASSO Cox regression and the risk prognostic model indicated that AJCC stage, stage T and N, KRAS mutation status and x8q23.3 CNV fragment mutation differed significantly between the high-risk and the low-risk subgroups. The AUCs of 1 to 5 years after surgery were all more than 0.7 and increased year by year. Finally, we found KRAS mutation status and AJCC stage differed significantly among these groups after TCGA samples divided into subgroups with k=7. Moreover, we identified four m6A RNA methylation related genes expressed significantly differently among these seven subgroups, including collagen type VII alpha 1 chain (COL7A1), branched chain amino acid transaminase 1 (BCAT1), zinc finger protein 596 (ZNF596), and PLK1. Our study systematically analyzed the m6A RNA methylation related genes, including expression, protein-protein interaction, potential function, and prognostic value and provides important clues to further research on the function of RNA m6A methylation and its related genes in pancreatic cancer."	"Successful Multidisciplinary Treatment for Aggressive Primary Pulmonary Undifferentiated Pleomorphic Sarcoma. Undifferentiated pleomorphic sarcoma (UPS) was previously known as malignant fibrous histiocytoma (MFH). This sarcoma occurs preferentially in the extremities and retroperitoneal space; primary pulmonary UPS/MFH is rare. We report a 52-year-old woman referred to our hospital with dyspnea and severe cough. Chest computed tomography (CT) revealed a pulmonary mass in the left upper lobe and pleural effusion. Cytology of the effusion showed no malignancy; however, the tumor increased rapidly in size, and the patient's respiratory symptoms worsened. The tumor occupied almost all of the left upper lobe and involved the adjacent pericardium. She underwent left upper lobectomy with pericardial resection and reconstruction. Postoperative pathology of the resected specimen showed undifferentiated pulmonary sarcoma, pT4N0M1a stage IV A, and genetic analyses revealed the v-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog (KRAS) mutation. The patient's dyspnea recurred 1 month postoperatively, and CT showed marked pleural effusion. An 18F-fluorodeoxyglucose positron emission tomography demonstrated abnormal diffuse accumulation of 18F-fluorodeoxyglucose in the left pleural cavity. We initiated five cycles of chemotherapy with doxorubicin and ifosfamide, and the patient has been well without recurrence for 24 months after multidisciplinary treatment with surgery followed by systemic combination chemotherapy. We successfully treated our patient with primary pulmonary UPS/MFH using a multidisciplinary approach, even though this sarcoma carries a poor prognosis and is insensitive to both chemotherapy and radiotherapy."	"RAS Mutational Status Detection in Tissue, Plasma, and Stool Samples for Colorectal Cancer. RAS gene testing on tumor tissue biopsies is required for metastatic colorectal cancer (CRC) patients. However, it is infeasible for patients after curative surgery and repeated biopsy. This study is aimed at evaluating the consistency of RAS genes in patient's plasma, stool, and tumor tissue samples, to explore whether plasma and stool samples can supplement or replace tumor tissue to assess baseline RAS gene status. Between June 2016 and October 2017, 53 patients with stage I-IV CRC from the Liaoning Cancer Hospital and the Department of Medical Oncology of the First Hospital of China Medical University were enrolled in the study. Patient tissues, peripheral blood, and stool samples were collected, and RAS gene tests were performed. Analysis of the KRAS gene in tissue, plasma, and stool samples from 53 CRC patients detected 25 cases (47%) of KRAS gene mutations in the tissue samples, 20 cases (38%) of KRAS gene mutations in plasma, and 18 (34%) KRAS gene mutations in fecal samples. The overall consistency of KRAS gene status between tissue samples and plasma samples was 77.4% (p ≤ 0.05) and between tissue samples and stool samples was 83% (p ≤ 0.05). In stage IV cases, the agreement of KRAS gene status between tissue and plasma samples was 93.8% (p ≤ 0.05) and 93.8% (p ≤ 0.05) between tissue and stool samples. There was a high overall consistency in KRAS mutational assessment between plasma, stool, and tissue samples. In stage IV patients, the consistency of KRAS gene detection between tissue and stools or plasma was higher."	"The Emerging Role of the Mammalian Glycocalyx in Functional Membrane Organization and Immune System Regulation. All cells in the human body are covered by a dense layer of sugars and the proteins and lipids to which they are attached, collectively termed the &quot;glycocalyx.&quot; For decades, the organization of the glycocalyx and its interplay with the cellular state have remained enigmatic. This changed in recent years. Latest research has shown that the glycocalyx is an organelle of vital significance, actively involved in and functionally relevant for various cellular processes, that can be directly targeted in therapeutic contexts. This review gives a brief introduction into glycocalyx biology and describes the specific challenges glycocalyx research faces. Then, the traditional view of the role of the glycocalyx is discussed before several recent breakthroughs in glycocalyx research are surveyed. These results exemplify a currently unfolding bigger picture about the role of the glycocalyx as a fundamental cellular agent."	"Application of trastuzumab emtansine in HER-2-positive and KRAS/BRAF-mutated colon cancer cells. Trastuzumab emtansine (T-DM1) is an antibody-drug conjugate (ADC) for the treatment of human epidermal growth factor receptor 2 (HER-2)-positive breast cancer. T-DM1 is based on the trastuzumab antibody and delivers a toxic agent into breast cancer cells through endocytic mechanism. This study evaluated whether T-DM1 can be used in HER-2-positive colon cancer cells which harbour KRAS/ BRAF mutation with limited treatment. LS174T and HT-29 which are KRAS and BRAF mutant HER-2-positive colon cancer cells were used in this study. Cells were first treated with T-DM1; cetuximab and trastuzumab were applied for comparison, the effect of drug sensitivity was determined. Cells were then transfected with plasmid to overexpress HER-2 or the endocytic protein, caveolin-1 or furthermore pretreated with metformin to examine the effect of T-DM1 efficacy. Finally, a xenograft mouse model was used to evaluate the drug efficacy in vivo. The results showed that T-DM1 had better inhibitory effect than cetuximab and trastuzumab on LS174T and HT-29 cells. HER-2 or caveolin-1 overexpression with plasmid in the cells to increase T-DM1 recognition or internalization can increase the sensitivity to T-DM1. When cells were pretreated with metformin, caveolin-1 expression was induced and promoted T-DM1 uptake and enhanced cell toxicity. In xenograft mouse model, combined treatment of T-DM1 and metformin had apparent inhibitory effect on subcutaneous tumour growth. The results of this study suggested that T-DM1 has potential in the treatment of HER-2-positive colon cancer cells, and application of metformin has therapeutic benefits during T-DM1 treatment."	"Genetic and clinical correlates of entosis in pancreatic ductal adenocarcinoma. Entosis is a type of regulated cell death that promotes cancer cell competition. Though several studies have revealed the molecular mechanisms that govern entosis, the clinical and genetic correlates of entosis in human tumors is less well understood. Here we reviewed entotic cell-in-cell (CIC) patterns in a large single institution sequencing cohort (MSK IMPACT clinical sequencing cohort) of more than 1600 human pancreatic ductal adenocarcinoma (PDAC) samples to identify the genetic and clinical correlates of this cellular feature. After case selection, 516 conventional PDACs and 21 ASCs entered this study and ~45,000 HPFs (median 80 HPFs per sample) were reviewed; 549 entotic-CICs were detected through our cohort. We observed that entotic-CIC occurred more frequently in liver metastasis compared with primary in PDAC. Moreover, poorly differentiated adenocarcinoma or adenosquamous carcinoma had more entotic-CIC than well or moderately differentiated adenocarcinoma. With respect to genetic features TP53 mutations, KRAS amplification, and MYC amplification were significantly associated with entosis in PDAC tissues. From a clinical standpoint entotic CICs were independently associated with a poor prognosis by multivariate Cox regression analysis when considering all cases or primary PDACs specifically. These results provide a contextual basis for understanding entosis in PDAC, a highly aggressive cancer for which molecular insights are needed to improve survival."	"Comprehensive characterisation of pancreatic ductal adenocarcinoma with microsatellite instability: histology, molecular pathology and clinical implications. Recently, tumours with microsatellite instability (MSI)/defective DNA mismatch repair (dMMR) have gained considerable interest due to the success of immunotherapy in this molecular setting. Here, we aim to clarify clinical-pathological and/or molecular features of this tumour subgroup through a systematic review coupled with a comparative analysis with existing databases, also providing indications for a correct approach to the clinical identification of MSI/dMMR pancreatic ductal adenocarcinoma (PDAC). PubMed, SCOPUS and Embase were searched for studies reporting data on MSI/dMMR in PDAC up to 30 November 2019. Histological and molecular data of MSI/dMMR PDAC were compared with non-MSI/dMMR PDAC and with PDAC reference cohorts (including SEER database and The Cancer Genome Atlas Research Network - TCGA project). Overall, 34 studies with 8323 patients with PDAC were included in the systematic review. MSI/dMMR demonstrated a very low prevalence in PDAC (around 1%-2%). Compared with conventional PDAC, MSI/dMMR PDAC resulted strongly associated with medullary and mucinous/colloid histology (p&lt;0.01) and with a KRAS/TP53 wild-type molecular background (p&lt;0.01), with more common JAK genes mutations. Data on survival are still unclear. PDAC showing typical medullary or mucinous/colloid histology should be routinely examined for MSI/dMMR status using specific tests (immunohistochemistry, followed by MSI-PCR in cases with doubtful results). Next-generation sequencing (NGS) should be adopted either where there is limited tissue or as part of NGS tumour profiling in the context of precision oncology, acknowledging that conventional histology of PDAC may rarely harbour MSI/dMMR."	"Genetic background influences tumour development in heterozygous Men1 knockout mice. Multiple endocrine neoplasia type 1 (MEN1), an autosomal dominant disorder caused by MEN1 germline mutations, is characterised by parathyroid, pancreatic and pituitary tumours. MEN1 mutations also cause familial isolated primary hyperparathyroidism (FIHP), a milder condition causing hyperparathyroidism only. Identical mutations can cause either MEN1 or FIHP in different families, thereby implicating a role for genetic modifiers in altering phenotypic expression of tumours. We therefore investigated the effects of genetic background and potential for genetic modifiers on tumour development in adult Men1+/- mice, which develop tumours of the parathyroids, pancreatic islets, anterior pituitary, adrenal cortex and gonads, that had been backcrossed to generate C57BL/6 and 129S6/SvEv congenic strains. A total of 275 Men1+/- mice, aged 5-26 months were macroscopically studied, and this revealed that genetic background significantly influenced the development of pituitary, adrenal and ovarian tumours, which occurred in mice over 12 months of age and more frequently in C57BL/6 females, 129S6/SvEv males and 129S6/SvEv females, respectively. Moreover, pituitary and adrenal tumours developed earlier, in C57BL/6 males and 129S6/SvEv females, respectively, and pancreatic and testicular tumours developed earlier in 129S6/SvEv males. Furthermore, glucagon-positive staining pancreatic tumours occurred more frequently in 129S6/SvEv Men1+/- mice. Whole genome sequence analysis of 129S6/SvEv and C57BL/6 Men1+/- mice revealed &gt;54,000 different variants in &gt;300 genes. These included, Coq7, Dmpk, Ccne2, Kras, Wnt2b, Il3ra and Tnfrsf10a, and qRT-PCR analysis revealed that Kras was significantly higher in pituitaries of male 129S6/SvEv mice. Thus, our results demonstrate that Kras and other genes could represent possible genetic modifiers of Men1."	"Pooled In Vitro and In Vivo CRISPR-Cas9 Screening Identifies Tumor Suppressors in Human Colon Organoids. Colorectal cancer (CRC) is characterized by prominent genetic and phenotypic heterogeneity between patients. To facilitate high-throughput genetic testing and functional identification of tumor drivers, we developed a platform for pooled CRISPR-Cas9 screening in human colon organoids. Using transforming growth factor β (TGF-β) resistance as a paradigm to establish sensitivity and scalability in vitro, we identified optimal conditions and strict guide RNA (gRNA) requirements for screening in 3D organoids. We then screened a pan-cancer tumor suppressor gene (TSG) library in pre-malignant organoids with APC<sup>-/-</sup>;KRAS<sup>G12D</sup> mutations, which were xenografted to study clonal advantages in context of a complex tumor microenvironment. We identified TGFBR2 as the most prevalent TSG, followed by known and previously uncharacterized mediators of CRC growth. gRNAs were validated in a secondary screen using unique molecular identifiers (UMIs) to adjust for clonal drift and to distinguish clone size and abundance. Together, these findings highlight a powerful organoid-based platform for pooled CRISPR-Cas9 screening for patient-specific functional genomics."	"Trifluridine/tipiracil: A practical guide to its use in the management of refractory metastatic colorectal cancer in Australia. Trifluridine/tipiracil is available on the Australian Pharmaceutical Benefits Scheme for the treatment of patients with metastatic colorectal cancer (mCRC) previously treated with, or not considered candidates for, fluoropyrimidine-, oxaliplatin- and irinotecan-based chemotherapies, anti-vascular endothelial growth factor agents and anti-epidermal growth factor receptor agents. This article reviews trifluridine/tipiracil clinical data and presents practical information on its use in the management of refractory mCRC in Australia. Whereas the primary mechanism of action of fluoropyrimidines such as fluorouracil (5-FU) and capecitabine is enzyme inhibition of nucleotide synthesis, trifluridine/tipiracil primarily acts by incorporation into DNA, resulting in DNA dysfunction. Trifluridine/tipiracil has activity in patients with 5-FU-resistant tumors and can be considered in patients with prior intolerance or toxicity to 5-FU. In the pivotal phase III RECOURSE trial evaluating trifluridine/tipiracil in chemotherapy-refractory mCRC, efficacy benefits were observed across all a priori prognostic subgroups including those defined by age (≥65 and ≥75 years), geographical origin, primary tumor site or KRAS status. Trifluridine/tipiracil therapy benefits appropriately selected patients who have an ECOG performance status of 0 or 1, with no more than mild hepatic impairment or mild-to-moderate renal impairment, and who are capable of adhering to oral therapy safely. Appropriate dosing, monitoring for adverse events and effective management of side effects are essential."	"Dispensable role of CCL28 in Kras-mutated non-small cell lung cancer mouse models. NA"	"Prognostic Biomarkers in Early-stage Gastric Adenocarcinoma Treated With Adjuvant Chemoradiotherapy. Early-stage gastric cancer has a high risk of recurrence, despite trimodality therapy with surgery, chemotherapy and radiation. To improve patient selection for adjuvant chemoradiotherapy, we evaluated the prognostic significance of immunohistochemical and genetic biomarkers in patients with resected gastric adenocarcinoma. Tumors from 119 patients were subjected to immunohistochemistry for 12 protein biomarkers, as well as next-generation sequencing. Clinical and biomarker data were available for 91 patients. EBV-positive tumors and tumors with mutations had higher intratumoral CD8 tumor-infiltrating lymphocyte density (p=0.009 and p=0.017, respectively). PIK3CA mutations were correlated with VEGFA overexpression (p=0.042), while KRAS mutations and HER2 expression were mutually exclusive (p=0.036). PTEN expression univariately confirmed longer overall survival (HR=0.27; p=0.046), while there was a trend between the presence of KRAS mutations and inferior disease-free and overall survival. PTEN protein expression and KRAS mutations may predict disease outcome in early-stage gastric cancer. These results need to be further validated in larger cohorts."	"Multiparametric Modelling of Survival in Pancreatic Ductal Adenocarcinoma Using Clinical, Histomorphological, Genetic and Image-Derived Parameters. Pancreatic ductal adenocarcinoma (PDAC) remains a tumor entity of exceptionally poor prognosis, and several biomarkers are under current investigation for the prediction of patient prognosis. Many studies focus on promoting newly developed imaging biomarkers without a rigorous comparison to other established parameters. To assess the true value and leverage the potential of all efforts in this field, a multi-parametric evaluation of the available biomarkers for PDAC survival prediction is warranted. Here we present a multiparametric analysis to assess the predictive value of established parameters and the added contribution of newly developed imaging features such as biomarkers for overall PDAC patient survival. 103 patients with resectable PDAC were retrospectively enrolled. Clinical and histopathological data (age, sex, chemotherapy regimens, tumor size, lymph node status, grading and resection status), morpho-molecular and genetic data (tumor morphology, molecular subtype, tp53, kras, smad4 and p16 genetics), image-derived features and the combination of all parameters were tested for their prognostic strength based on the concordance index (CI) of multivariate Cox proportional hazards survival modelling after unsupervised machine learning preprocessing. The average CIs of the out-of-sample data were: 0.63 for the clinical and histopathological features, 0.53 for the morpho-molecular and genetic features, 0.65 for the imaging features and 0.65 for the combined model including all parameters. Imaging-derived features represent an independent survival predictor in PDAC and enable the multiparametric, machine learning-assisted modelling of postoperative overall survival with a high performance compared to clinical and morpho-molecular/genetic parameters. We propose that future studies systematically include imaging-derived features to benchmark their additive value when evaluating biomarker-based model performance."	"KRAS-retroviral fusion transcripts and gene amplification in arsenic-transformed, human prostate CAsE-PE cancer cells. CAsE-PE cells are an arsenic-transformed, human prostate epithelial line containing oncogenic mutations in KRAS compared to immortalized, normal KRAS parent cells, RWPE-1. We previously reported increased copy number of mutated KRAS in CAsE-PE cells, suggesting gene amplification. Here, KRAS flanking genomic and transcriptomic regions were sequenced in CAsE-PE cells for insight into KRAS amplification. Comparison of DNA-Seq and RNA-Seq showed increased reads from background aligning to all KRAS exons in CAsE-PE cells, while a uniform DNA-Seq read distribution occurred in RWPE-1 cells with normal transcript expression. We searched for KRAS fusions in DNA and RNA sequencing data finding a portion of reads aligning to KRAS and viral sequence. After generation of cDNA from total RNA, short and long KRAS probes were generated to hybridize cDNA and KRAS enriched fragments were PacBio sequenced. More KRAS reads were captured from CAsE-PE cDNA versus RWPE-1 by each probe set. Only CAsE-PE cDNA showed KRAS viral fusion transcripts, primarily mapping to LTR and endogenous retrovirus sequences on either 5'- or 3'-ends of KRAS. Most KRAS viral fusion transcripts contained 4 to 6 exons but some PacBio sequences were in unusual orientations, suggesting viral insertions within the gene body. Additionally, conditioned media was extracted for potential retroviral particles. RNA-Seq of culture media isolates identified KRAS retroviral fusion transcripts in CAsE-PE media only. Truncated KRAS transcripts suggested multiple retroviral integration sites occurred within the KRAS gene producing KRAS retroviral fusions of various lengths. Findings suggest activation of endogenous retroviruses in arsenic carcinogenesis should be explored."	"Relationship between the efficacy of immunotherapy and characteristics of specific tumor mutation genes in non-small cell lung cancer patients. Immune checkpoint inhibitors (ICIs) have greatly improved the prognosis and overall management of non-small cell lung cancer (NSCLC) patients, but in the long term less than 20% of patients benefit from treatment with ICIs. Therefore, it is necessary to guide the choice of immunotherapy population through biomarkers in order to maximize the benefit for NSCLC patients. This article mainly explores the relationship between the efficacy of immunotherapy and specific tumor mutation gene characteristics in an NSCLC population. This was a prospective analysis of patients with advanced NSCLC who visited the Department of Respiratory Medicine of Peking Union Medical College Hospital from March 2018 to June 2019 and were instructed to use PD-1 inhibitors. The follow-up deadline was 31 December 2019. The tumor pathological tissues were tested for tumor mutation genes, and the patients were evaluated for efficacy according to RECIST 1.1. The patients were divided into the durable benefit group (DCB) and the nonsustainable benefit group (NDB). DCB/NDB was used as the outcome variable. Various statistics methods were used to explore the independent predictors of long-term benefits associated with immunotherapy and to draw a progression-free survival curve for the relevant predictors. A total of 44 patients were examined for tumor mutation genes in pathological tissues; 20 in the DCB group and 24 in the NDB group. Specific gene mutations occurred in TP53 38.64%, KRAS 31.82%, EGFR 20.45%, BRCA 20.45%, ERBB (excluding EGFR) 18.18%, PTEN 15.91%, CDK4/6 13.64%, POLE 11.36%, MET 11.36%, PIK3CA 9.10%, FGFR 9.10%, BRAF 9.10%, JAK 9.10%, ALK 6.82%, POLD1 4.55%, BLM 4.55%. Chi-square test results showed that there were statistically significant differences between DCB and NDB groups with eight mutations such as KRAS. Logistic regression showed that the KRAS mutation was statistically significant (P &lt; 0.001). Two accuracy indicators, Random Forest Classification of Mean Decrease Gini and Mean Decrease Accuracy, evaluated the importance of the impact of different gene mutations on the outcome. Under two different measures, the variables were all KRAS mutations. It is suggested that the mutation of the KRAS gene is an independent predictor of the long-term benefit of immunotherapy. The mutation of KRAS gene in tumor tissues is an independent predictor of the long-term benefit of immunotherapy, and the predictive ability is better."	"Tumor Microenvironment Remodeling Enables Bypass of Oncogenic KRAS Dependency in Pancreatic Cancer. Oncogenic KRAS (KRAS*) is a key tumor maintenance gene in pancreatic ductal adenocarcinoma (PDAC), motivating pharmacologic targeting of KRAS* and its effectors. Here, we explored mechanisms involving the tumor microenvironment (TME) as a potential basis for resistance to targeting KRAS*. Using the inducible Kras<sup>G12D</sup>;Trp53<sup>-/-</sup> PDAC mouse model, gain-of-function screens of epigenetic regulators identified HDAC5 as the top hit enabling KRAS* independent tumor growth. HDAC5-driven escaper tumors showed a prominent neutrophil-to-macrophage switch relative to KRAS*-driven tumors. Mechanistically, HDAC5 represses Socs3, a negative regulator of chemokine CCL2, resulting in increased CCL2, which recruits CCR2<sup>+</sup> macrophages. Correspondingly, enforced Ccl2 promotes macrophage recruitment into the TME and enables tumor recurrence following KRAS* extinction. These tumor-associated macrophages in turn provide cancer cells with trophic support including TGFβ to enable KRAS* bypass in a SMAD4-dependent manner. Our work uncovers a KRAS* resistance mechanism involving immune cell remodeling of the PDAC TME. SIGNIFICANCE: Although KRAS* is required for PDAC tumor maintenance, tumors can recur following KRAS* extinction. The capacity of PDAC cancer cells to alter the TME myeloid cell composition to support KRAS*-independent tumor growth illuminates novel therapeutic targets that may enhance the effectiveness of therapies targeting KRAS* and its pathway components.See related commentary by Carr and Fernandez-Zapico, p. 910.This article is highlighted in the In This Issue feature, p. 890."	"Transgenic expression of Sag/Rbx2 E3 causes early stage tumor promotion, late stage cytogenesis and acinar loss in the Kras-PDAC model. SAG (Sensitive to Apoptosis Gene), also known as RBX2 or ROC2, is a RING component of CRL (Cullin-RING ligase), required for its activity. Our previous studies showed that Sag/Rbx2 co-operated with Kras or Pten loss to promote tumorigenesis in the lung and prostate, respectively, but antagonized Kras to inhibit skin tumorigenesis, suggesting a tissue/context dependent function of Sag. The role of SAG in KRAS-induced pancreatic tumorigenesis is unknown. In this study, we mined a cancer database and found that SAG is overexpressed in pancreatic cancer tissues and correlates with decreased patient survival. Whether Sag overexpression plays a causal role in pancreatic tumorigenesis is unknown. Here, we reported the generation of Sag transgenic mouse model alone (CS), or in combination with Kras<sup>G12D</sup>, driven by p48-Cre (KCS mice) for pancreatic specific Sag expression. Sag transgenic expression alone has no phenotypical abnormality, but in combination with Kras<sup>G12D</sup> promotes ADM (acinar-to-ductal metaplasia) conversion in vitro and mPanIN1 formation in vivo at the early stage, and impairs pancreatic functions at the late stage, as evidenced by poor glucose tolerance and significantly reduced α-Amylase activity, and induction of cytogenesis and acinar cell loss, eventually leading to atrophic pancreata and shortened mouse life-span. Mechanistically, Sag transgenic expression altered several key signaling pathways, particularly inactivation of mTORC1 signaling due to Deptor accumulation, and activation of the antioxidant Nrf2-Nqo1 axis. Thus, Sag plays a stage dependent promotion (early) and fate-changing (late) role during Kras-pancreatic tumorigenesis, likely via regulating its key substrates, which control growth-related signal transduction pathways."	"Discoidin Domain Receptor 1 (DDR1) Is Necessary for Tissue Homeostasis in Pancreatic Injury and Pathogenesis of Pancreatic Ductal Adenocarcinoma. Pancreatic ductal adenocarcinoma (PDA) and chronic pancreatitis are characterized by a dense collagen-rich desmoplastic reaction. Discoidin domain receptor 1 (DDR1) is a receptor tyrosine kinase activated by collagens that can regulate cell proliferation, migration, adhesion, and remodeling of the extracellular matrix. To address the role of DDR1 in PDA, Ddr1-null (Ddr<sup>-/-</sup>) mice were crossed with the Kras<sup>G12D/+</sup>; Trp53<sup>R172H/+</sup>; Ptf1a<sup>Cre/+</sup> (KPC) model of metastatic PDA. Ddr1<sup>-/-</sup>; KPC mice progress to differentiated PDA but resist progression to poorly differentiated cancer compared with KPC control mice. Strikingly, severe pancreatic atrophy accompanied tumor progression in Ddr1<sup>-/-</sup>; KPC mice. To further explore the effects of Ddr1 ablation, Ddr1<sup>-/-</sup> mice were crossed with the Kras<sup>G12D/+</sup>; Ptf1a<sup>Cre/+</sup> neoplasia model and subjected to cerulein-induced experimental pancreatitis. Similar to KPC mice, tissue atrophy was a hallmark of both neoplasia and pancreatitis models in the absence of Ddr1. Compared with controls, Ddr1<sup>-/-</sup> models had increased acinar cell dropout and reduced proliferation with no difference in apoptotic cell death between control and Ddr1<sup>-/-</sup> animals. In most models, organ atrophy was accompanied by increased fibrillar collagen deposition, suggesting a compensatory response in the absence of this collagen receptor. Overall, these data suggest that DDR1 regulates tissue homeostasis in the neoplastic and injured pancreas."	"Association Between Spatial Heterogeneity Within Nonmetastatic Gastroesophageal Adenocarcinomas and Survival. Intratumoral heterogeneity has been recognized as a significant barrier in successfully developing targetable biomarkers for gastroesophageal adenocarcinoma (GEA) and may affect neoadjuvant precision medicine approaches. To describe intratumoral spatial heterogeneity of tumor cell populations in nonmetastatic GEA and its association with survival. This case series retrospectively identified 41 patients with GEA who underwent up-front surgical resection at a tertiary referral cancer center from January 1, 1989, through December 31, 2013. Survival was calculated from date of surgery to date of death through June 1, 2017. Data were analyzed from June 2, 2017, to March 1, 2019. Overall survival, intratumoral clonal composition determined by genomic single-nucleotide variation array and bioinformatic analysis, and intercellular tumoral distances determined by multiprobe fluorescence in situ hybridization. Among the 41 patients included in the analysis (22 men [54%]; mean [SD] age, 63 [12] years), a high proportion (19 [46%]) presented with tumors possessing high intratumoral heterogeneity. Kaplan-Meier analysis demonstrated that cases with an intratumoral clonal composition count of at least 2 exhibited worse survival compared with cases with a clonal composition count of 0 to 1 (univariate hazard ratio, 3.92; 95% CI, 1.27-12.08; P = .02). This finding remained significant on multivariate analysis controlling for stage, Lauren histologic subtype, receipt of adjuvant therapy, and age (multivariate hazard ratio, 4.55; 95% CI, 1.09-19.04; P = .04). Multiprobe fluorescence in situ hybridization demonstrated intratumoral clonal populations coexisting at submillimeter distances with differing relevant oncogenic copy number alterations, such as EGFR, JAK2, FGFR2, MET, CCND1, KRAS, MYC, PIK3CA, CD274, and PDCD1LG2. This study found that spatial intratumoral heterogeneity of oncogenic copy number alterations exists before metastatic dissemination, and increased heterogeneity was associated with worse outcomes in resected GEA. Baseline heterogeneity illustrates the challenges in GEA targeted therapy. Further study may offer insight into strategies on combinatorial and/or sequential targeted and immunotherapeutic approaches."	"Concurrent Injection of Unlabeled Antibodies Allows Positron Emission Tomography Imaging of Programmed Cell Death Ligand 1 Expression in an Orthotopic Pancreatic Tumor Model. Purpose: Among the treatment options for pancreatic ductal adenocarcinoma (PDAC) are antibodies against the programmed cell death receptor 1 (PD-1)/programmed cell death ligand 1 (PD-L1) pathway. Positron emission tomography (PET) has been successfully used to assess PD-1/PD-L1 signaling in subcutaneous tumor models, but orthotopic tumor models are increasingly being recognized as a better option to accurately recapitulate human disease. However, when PET radiotracers have high uptake in the liver and spleen, it can obscure signals from the adjacent pancreas, making visualization of the response in orthotopic pancreatic tumors technically challenging. In this study, we first investigated the impact of radioisotope chelators on the biodistribution of <sup>64</sup>Cu-labeled anti-PD-1 and anti-PD-L1 antibodies and compared the distribution profiles of anti-PD-1 and anti-PD-L1 antibodies. We then tested the hypothesis that co-injection of unlabeled antibodies reduces uptake of <sup>64</sup>Cu-labeled anti-PD-L1 antibodies in the spleen and thereby permits accurate delineation of orthotopic pancreatic tumors in mice. Procedures: We established subcutaneous and orthotopic mouse models of PDAC using KRAS* murine pancreatic cancer cells with a doxycycline-inducible mutation of KRAS<sup>G12D</sup>. We then (1) compared the biodistribution of <sup>64</sup>Cu-labeled anti-PD-1 with 2-(4-isothiocyanatobenzyl)-1,4,7,10-tetraazacyclododecane tetraacetic acid (p-SCN-Bn-DOTA) and 2-(4-isothiocyanatobenzyl)-1,4,7-triazacyclononane-1,4,7-triacetic acid (p-SCN-Bn-NOTA) used as the chelators in the orthotopic model; (2) compared the biodistribution of [<sup>64</sup>Cu]Cu-NOTA-anti-PD-1 and [<sup>64</sup>Cu]Cu-NOTA-anti-PD-L1 in the orthotopic model; and (3) imaged subcutaneous and orthotopic KRAS* tumors with [<sup>64</sup>Cu]Cu-NOTA-anti-PD-L1 with and without co-injection of unlabeled anti-PD-L1 as the blocking agent. Results: [<sup>64</sup>Cu]Cu-NOTA-anti-PD-L1 was a promising imaging probe. By co-injection of an excess of unlabeled anti-PD-L1, background signals of [<sup>64</sup>Cu]Cu-NOTA-anti-PD-L1 from the spleen were significantly reduced, leading to a clear delineation of orthotopic pancreatic tumors. Conclusions: Co-injection with unlabeled anti-PD-L1 is a useful method for PET imaging of PD-L1 expression in orthotopic pancreatic cancer models."	"Upregulation of DAB2IP Inhibits Ras Activity and Tumorigenesis in Human Pancreatic Cancer Cells. KRAS mutation-induced Ras activation plays an important role in the pathogenesis of pancreatic cancer, but the role of wild-type Ras and Ras GTPase-activating proteins remains unclear. The present study was designed to determine the expression spectra of Ras GTPase-activating proteins genes in pancreatic cancer cells, and the role of DAB2IP, a Ras GTPase-activating proteins gene, in the development and progression of pancreatic cancer. Following the analyses of the expression profiles of 16 Ras GTPase-activating proteins in 6 pancreatic cancer cell lines including Bxpc-3 (with wild-type KRAS), Capan-2, Sw1990, Aspc-1, CFPAC-1, and Panc-1 (with mutant KRAS) and 1 normal human pancreatic ductal epithelial cell line, H6C7, the expression of DAB2IP messenger RNA was further analyzed by quantitative real-time polymerase chain reaction. The role of DAB2IP in pancreatic cancer was further investigated in vitro and in vivo by upregulating DAB2IP in Bxpc-3 cells through transfection of DAB2IP into Bxpc-3 cells with recombinant lentivirus. The DAB2IP expression in pancreatic cancer cells and tissues with wild-type KRAS was significantly lower than that in cells and tissues with mutant KRAS (P &lt; .05). In Bxpc-3 cells with wild-type KRAS, overexpression of DAB2IP decreased the expression of P-AKT and P-ERK and the Ras activity; increased the expression of P-JNK and caspase 3; inhibited cell proliferation, invasiveness, and migration; and increased the cell sensitivity to cetuximab. Overexpression of DAB2IP inhibited tumor progression in a mouse model. In conclusion, DAB2IP downregulates Ras activity in wild-type pancreatic cancer cells. Overexpression of DAB2IP decreases the Ras activity, inhibits cell proliferation, and increases sensitivity to cetuximab in wild-type pancreatic cancer cells. In conclusion, DAB2IP may serve as a potential molecular therapeutic target for the treatment of pancreatic cancer."	"[Analysis of Clinical Characteristics and Driver Genes in 405 Patients with Lung Cancer Complicated with Tuberculosis]. New treatment methods such as targeted therapy and immune checkpoint inhibitors have been applied to lung cancer patients. It is necessary to further understand the patients with lung cancer combined with pulmonary tuberculosis with the development of lung cancer research. The purpose of this study was to analyze the clinical characteristics of lung cancer patients with pulmonary tuberculosis, the status of driver genes, and their relationships. A retrospective analysis was performed on 405 patients with lung cancer and pulmonary tuberculosis hospitalized in our hospital from January 2014 to December 2019. The relationship between clinical characteristics and driver genes status was analyzed. Among the 405 patients with lung cancer combined with pulmonary tuberculosis, 77.3% were male and 85.3% were patients with a history of smoking. The pathological type was mainly lung adenocarcinoma. When there were cavities in chest computed tomography (CT) , squamous cell carcinoma was the main type. 214 patients underwent driver genes testing. The epidermal growth factor receptor (EGFR) gene mutation rate was 35.9%, of which 41.8% were exon 19 deletion mutations and 50.9% were exon 21 L858R mutations. When there were cavities in the chest CT, the EGFR mutation rate was significantly reduced (16.1%). The positive rate of anaplastic lymphoma kinase (ALK) fusion gene detection was 2.5%, the mutation rate of c-ros oncogene 1 receptor kinase (ROS1) gene was 1.9%, the mutation rate of V-raf murine sarcoma viral oncogene homolog B1 (BRAF) gene was 1.1%, and the mutation rate of Kirsten Rat Sarcoma Viral Oncogene Homolog (KRAS) gene was 10.1%. The genetic mutation rate of female patients with lung cancer and pulmonary tuberculosis was 50.0%, and that of men was 27.9%. Patients with lung cancer and pulmonary tuberculosis are predominantly male with smoking history. Adenocarcinoma is the most common pathological type. The positive rate of gene mutation was not significantly different from that of simple lung cancer, but when there were cavities in the chest image, the genetic mutation rate was significantly reduced. 【中文题目:405例肺癌合并肺结核患者临床特征及驱动基因检测分析】 【中文摘要:背景与目的 随着肺癌研究进展,靶向治疗、免疫检查点抑制剂等新的治疗方法已经开始应用于肺癌患者,因此需要进一步了解合并肺结核的肺癌患者的临床及实验室特点,从而为此类患者的临床治疗提供新的思路。本研究目的是分析肺癌合并肺结核患者的临床特征、驱动基因检测结果及其之间关系。方法 回顾性分析我院2014年1月-2019年12月收治的405例肺癌合并肺结核患者,应用统计学方法分析其临床特征与驱动基因状态之间的关系。结果 405例肺癌合并肺结核患者中男性占77.3%,有吸烟史患者占85.3%,病理类型以肺腺癌为主,当胸部影像学有空洞改变时以鳞癌为主要类型。214例患者进行驱动基因检测,表皮生长因子受体(epidermal growth factor receptor, EGFR)基因突变率为35.9%,其中41.8%为外显子19缺失突变,50.9%为外显子21 L858R突变。当胸部影像有空洞改变时,EGFR突变率显著降低(16.1%)。间变性淋巴瘤激酶(anaplastic lymphoma kinase, ALK)融合基因检测阳性率为2.5%,原癌基因1酪氨酸激酶(c-ros oncogene 1 receptor kinase, ROS1)突变率为1.9%,肉瘤病毒致癌基因同源物B1(V-raf murine sarcoma viral oncogene homolog B1, BRAF)基因突变率为1.1%,克尔斯滕大鼠肉瘤病毒致癌基因同源物(Kirsten Rat Sarcoma Viral Oncogene Homolog, KRAS)基因突变率为10.1%。女性肺癌合并肺结核患者基因突变率为50.0%,男性为27.9%。结论 肺癌合并肺结核患者以有吸烟史的男性患者为主,病理类型以腺癌为主。基因突变阳性率与单纯肺癌无明显差异,但是当胸部影像有空洞表现时,基因突变率显著降低。】 【中文关键词:肺肿瘤;肺结核;驱动基因】."	"Unraveling ERBB network dynamics upon betacellulin signaling in pancreatic ductal adenocarcinoma in mice. Pancreatic ductal adenocarcinoma (PDAC) will soon belong to the top three cancer killers. The only approved specific PDAC therapy targets the epidermal growth factor receptor (EGFR). Although EGFR is a crucial player in PDAC development, EGFR-based therapy is disappointing. In this study, we evaluated the role of the EGFR ligand betacellulin (BTC) in PDAC. The expression of BTC was investigated in human pancreatic cancer specimen. Then, we generated a BTC knockout mouse model by CRISPR/Cas9 technology and a BTC overexpression model. Both models were crossed with the Ptf1a<sup>Cre/+</sup> ;KRAS<sup>G12D/+</sup> (KC) mouse model (B<sup>-/-</sup> KC or BKC, respectively). In addition, EGFR, ERBB2, and ERBB4 were investigated by the pancreas-specific deletion of each receptor using the Cre-loxP system. Tumor initiation and progression were analyzed in all mouse lines, and the underlying molecular biology of PDAC was investigated at different time points. BTC is expressed in human and murine PDAC. B<sup>-/-</sup> KC mice showed a decelerated PDAC progression, associated with decreased EGFR activation. BKC mice developed severe PDAC with a poor survival rate. The dramatically increased BTC-mediated tumor burden was EGFR-dependent, but also ERBB4 and ERBB2 were involved in PDAC development or progression, as depletion of EGFR, ERBB2, or ERBB4 significantly improved the survival rate of BTC-mediated PDAC. BTC increases PDAC tumor burden dramatically by enhanced RAS activation. EGFR signaling, ERBB2 signaling, and ERBB4 signaling are involved in accelerated PDAC development mediated by BTC indicating that targeting the whole ERBB family, instead of a single receptor, is a promising strategy for the development of future PDAC therapies."	"Albumin-conjugated drug is irresistible by single gene mutation of endocytic system: Verification by genome-wide CRISPR-Cas9 loss-of-function screens. Albumin-conjugated drugs attain KRAS mutant cancer targeting through KRAS-enhanced macropinocytosis and intensified lysosomal degradation due to reduced neonatal Fc receptor (FcRn) expression. The cytosolic delivery of active payloads relies on endocytosis and subsequent intracellular processing of albumin delivery vehicles, wherein complex regulatory mechanisms and molecular machineries are closely involved. Despite the obvious merit of KRAS targeting, could such an endocytic process involving extra molecular regulators also bring about extra vulnerabilities to albumin-conjugated drugs, particularly, unexpected drug resistance? To assess such risks, here we performed an unbiased drug resistance mechanism comparison in pancreatic cancer, between free triptolide (TP, a potent cytotoxin) and albumin-conjugated TP, using genome-wide CRISPR-Cas9 loss-of-function screens. GTF2H5, a subunit of GTF2H transcription factor complex, was the only hit identified regardless of forms of TP treatment. With drug efficacy tests on GTF2H5 knockout clones, we further concluded that GTF2H5 deficiency conferred drug resistance primarily due to the pharmacological mechanism of action (MoA) of TP. In addition, molecules previously considered to be able to affect endocytosis and intracellular processing were not enriched during the screening with albumin-conjugated TP. With the aid of genome-wide CRISPR-Cas9 loss-of-function screens, we conclude that the pharmacological resistance of the active payload, rather than any potential loss-of-function mutations in endocytic molecular machineries, is the solely crucial drug resistance mechanism of albumin-conjugated drugs."
+"LZTR1"	"Noonan syndrome"	"The inflammatory microenvironment in vestibular schwannoma. Vestibular schwannomas are tumors arising from the vestibulocochlear nerve at the cerebellopontine angle. Their proximity to eloquent brainstem structures means that the pathology itself and the treatment thereof can be associated with significant morbidity. The vast majority of these tumors are sporadic, with the remainder arising as a result of the genetic syndrome Neurofibromatosis Type 2 or, more rarely, LZTR1-related schwannomatosis. The natural history of these tumors is extremely variable, with some tumors not displaying any evidence of growth, others demonstrating early, persistent growth and a small number growing following an extended period of indolence. Emerging evidence now suggests that far from representing Schwann cell proliferation only, the tumor microenvironment is complex, with inflammation proposed to play a key role in their growth. In this review, we provide an overview of this new evidence, including the role played by immune cell infiltration, the underlying molecular pathways involved, and biomarkers for detecting this inflammation in vivo. Given the limitations of current treatments, there is a pressing need for novel therapies to aid in the management of this condition, and we conclude by proposing areas for future research that could lead to the development of therapies targeted toward inflammation in vestibular schwannoma."	"Intronic CRISPR Repair in a Preclinical Model of Noonan Syndrome-Associated Cardiomyopathy. Background: Noonan syndrome (NS) is a multisystemic developmental disorder characterized by common, clinically variable symptoms, such as typical facial dysmorphisms, short stature, developmental delay, intellectual disability as well as cardiac hypertrophy. The underlying mechanism is a gain-of-function of the RAS-MAP kinase (MAPK) signaling pathway. However, our understanding of the pathophysiological alterations and mechanisms, especially of the associated cardiomyopathy, remains limited and effective therapeutic options are lacking. Methods: Here, we present a family with two siblings displaying an autosomal recessive form of NS with massive hypertrophic cardiomyopathy (HCM) as the clinically most prevalent symptom caused by biallelic mutations within the leucine zipper like transcription regulator 1 (LZTR1). We generated induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) of the affected siblings and investigated the patient-specific CMs on the molecular and functional level. Results: The patients' iPSC-CMs recapitulated the hypertrophic phenotype and uncovered a so far not described causal link between LZTR1 dysfunction, RAS-MAPK signaling hyperactivity, hypertrophic gene response and cellular hypertrophy. Calcium channel blockade and MEK inhibition could prevent some of the disease characteristics, providing a molecular underpinning for the clinical use of these drugs in patients with NS, but might not be a sustainable therapeutic option. In a proof-of-concept approach, we explored a clinically translatable intronic CRISPR repair and demonstrated a rescue of the hypertrophic phenotype. Conclusions: Our study revealed the human cardiac pathogenesis in patient-specific iPSC-CMs from NS patients carrying biallelic variants in LZTR1 and identified a unique disease-specific proteome signature. In addition, we identified the intronic CRISPR repair as a personalized and in our view clinically translatable therapeutic strategy to treat NS-associated HCM."	"Sporadic vestibular schwannoma: a molecular testing summary. Cases of sporadic vestibular schwannoma (sVS) have a low rate of association with germline pathogenic variants. However, some individuals with sVS can represent undetected cases of neurofibromatosis type 2 (NF2) or schwannomatosis. Earlier identification of patients with these syndromes can facilitate more accurate familial risk prediction and prognosis. Cases of sVS were ascertained from a local register at the Manchester Centre for Genomic Medicine. Genetic analysis was conducted in NF2 on blood samples for all patients, and tumour DNA samples when available. LZTR1 and SMARCB1 screening was also performed in patient subgroups. Age at genetic testing for vestibular schwannoma (VS) presentation was younger in comparison with previous literature, a bias resulting from updated genetic testing recommendations. Mosaic or constitutional germline NF2 variants were confirmed in 2% of patients. Pathogenic germline variants in LZTR1 were found in 3% of all tested patients, with a higher rate of 5% in patients &lt;30 years. No pathogenic SMARCB1 variants were identified within the cohort. Considering all individuals who received tumour DNA analysis, 69% of patients were found to possess two somatic pathogenic NF2 variants, including those with germline LZTR1 pathogenic variants. Undiagnosed schwannoma predisposition may account for a significant minority of apparently sVS cases, especially at lower presentation ages. Loss of NF2 function is a common event in VS tumours and may represent a targetable common pathway in VS tumourigenesis. These data also support the multi-hit mechanism of LZTR1-associated VS tumourigenesis."	"Simultaneous Detection of NF1, SPRED1, LZTR1, and NF2 Gene Mutations by Targeted NGS in an Italian Cohort of Suspected NF1 Patients. Neurofibromatosis type 1 (NF1) displays overlapping phenotypes with other neurocutaneous diseases such as Legius Syndrome. Here, we present results obtained using a next generation sequencing (NGS) panel including NF1, NF2, SPRED1, SMARCB1, and LZTR1 genes on Ion Torrent. Together with NGS, the Multiplex Ligation-Dependent Probe Amplification Analysis (MLPA) method was performed to rule out large deletions/duplications in NF1 gene; we validated the MLPA/NGS approach using Sanger sequencing on DNA or RNA of both positive and negative samples. In our cohort, a pathogenic variant was found in 175 patients; the pathogenic variant was observed in NF1 gene in 168 cases. A SPRED1 pathogenic variant was also found in one child and in a one year old boy, both NF2 and LZTR1 pathogenic variants were observed; in addition, we identified five LZTR1 pathogenic variants in three children and two adults. Six NF1 pathogenic variants, that the NGS analysis failed to identify, were detected on RNA by Sanger. NGS allows the identification of novel mutations in five genes in the same sequencing run, permitting unambiguous recognition of disorders with overlapping phenotypes with NF1 and facilitating genetic counseling and a personalized follow-up."	"Digenic inheritance of subclinical variants in Noonan Syndrome patients: an alternative pathogenic model? Noonan syndrome (NS) is an autosomal-dominant disorder with variable expressivity and locus heterogeneity. Despite several RAS pathway genes were implicated in NS, 20-30% of patients remain without molecular diagnosis, suggesting the involvement of further genes or multiple mechanisms. Eight patients out of 60, negative for conventional NS mutation analysis, with heterogeneous NS phenotype were investigated by means of target resequencing of 26 RAS/MAPK pathway genes. A trio was further characterized by means of whole-exome sequencing. Protein modeling and in silico prediction of protein stability allowed to identify possible pathogenic RAS pathway variants in four NS patients. A new c.355T&gt;C variant in LZTR1 was found in patient 43. Two patients co-inherited variants in LRP1 and LZTR1 (patient 53), or LRP1 and SOS1 genes (patient 67). The forth patient (56) carried a compound heterozygote of RASAL3 gene variants and also an A2ML1 variant. While these subclinical variants are singularly present in healthy parents, they co-segregate in patients, suggesting their addictive effect and supporting a digenic inheritance, as alternative model to a more common monogenic transmission. The ERK1/2 and SAPK/JNK activation state, assessed on immortalized lymphocytes from patients 53 and 67 showed highest phosphorylation levels compared to their asymptomatic parents. These findings together with the lack of their co-occurrence in the 1000Genomes database strengthen the hypothesis of digenic inheritance in a subset of NS patients. This study suggests caution in the exclusion of subclinical variants that might play a pathogenic role providing new insights for alternative hereditary mechanisms."	"Analysis of genes within the schizophrenia-linked 22q11.2 deletion identifies interaction of night owl/LZTR1 and NF1 in GABAergic sleep control. The human 22q11.2 chromosomal deletion is one of the strongest identified genetic risk factors for schizophrenia. Although the deletion spans a number of known genes, the contribution of each of these to the 22q11.2 deletion syndrome (DS) is not known. To investigate the effect of individual genes within this interval on the pathophysiology associated with the deletion, we analyzed their role in sleep, a behavior affected in virtually all psychiatric disorders, including the 22q11.2 DS. We identified the gene LZTR1 (night owl, nowl) as a regulator of night-time sleep in Drosophila. In humans, LZTR1 has been associated with Ras-dependent neurological diseases also caused by Neurofibromin-1 (Nf1) deficiency. We show that Nf1 loss leads to a night-time sleep phenotype nearly identical to that of nowl loss and that nowl negatively regulates Ras and interacts with Nf1 in sleep regulation. Furthermore, nowl is required for metabolic homeostasis, suggesting that LZTR1 may contribute to the genetic susceptibility to obesity associated with the 22q11.2 DS. Knockdown of nowl or Nf1 in GABA-responsive sleep-promoting neurons elicits the sleep phenotype, and this defect can be rescued by increased GABAA receptor signaling, indicating that Nowl regulates sleep through modulation of GABA signaling. Our results suggest that nowl/LZTR1 may be a conserved regulator of GABA signaling important for normal sleep that contributes to the 22q11.2 DS."	"Germline Mutations for Novel Candidate Predisposition Genes in Sporadic Schwannomatosis. Schwannomatosis is a late-onset tumor predisposition syndrome associated with the development of many different types of malignancies. A relevant genetic mechanism can be explained by three mutational events. The first-hit mutation is a germline mutation, and the SMARCB1 mutation on chromosome 22 is the most well-known genetic abnormality in patients with schwannomatosis. LZTR1 is another major predisposing gene in 22q-related schwannomatosis that lacks SMARCB1 variants. Although these two variants account for the occurrence of most familiar schwannomatoses, the genetic causes of sporadic schwannomatosis for the most part remain unknown. Therefore, current molecular diagnostic criteria cannot completely explain the basis of this disease. The common genetic background between schwannomatosis and other related malignant tumors is also unclear. Moreover, it is not easy to explain various clinical manifestations by only two known mutations. QUESTION/PURPOSES: (1) Are there important sequences outside the SMARCB1 or LZTR1 region on chromosome 22 that might carry a first-hit mutational predisposition to sporadic schwannomatosis? Or are there alternative evolutionarily conserved loci that might carry a first-hit mutational predisposition? (2) Is the age of disease onset associated to such genetic variants? This study was a retrospective chart review and prospective genetic study on patients with schwannomatosis who were treated surgically. The clinical criteria to diagnose schwannomatosis were as follows: (1) histologically proven non-vestibular schwannomas; (2) no evidence of vestibular schwannomas on 3-mm brain MRI. A total of 21 patients were treated between March 2006 and June 2015. Since nine patients did not visit the outpatient clinic during the recruitment period, we obtained blood samples from 12 patients with schwannomatosis for a genetic analysis. After two patients were excluded because of their family history of schwannomatosis, genetic analyses were finally performed on 10 patients. Then, those with NF2, SMARCB1 or LZTR1 variants were screened by whole exome sequencing. All 10 patients passed our screening strategy. There were eight men and two women, with a median (range) age of 43 years (24 to 66) at the time of diagnosis. To select candidate genes, common ethnic variants and frequent mutations in in-house exome sequencing data were removed to exclude the population-specific polymorphisms not found in other population and to generalize the findings. Frameshift, nonsense, and splice-site variants were deemed pathogenic. Missense variants were classified as potentially pathogenic, variants of uncertain significance, or benign using in silico (via computer simulation) prediction algorithms, Sorting Intolerant From Tolerant (SIFT), Polymorphism Phenotyping v2 (PolyPhen-2), and Combined Annotation Dependent Depletion (CADD). A variant was considered potentially pathogenic if two or more algorithms predicted the variant to be damaging and benign if none considered it damaging. Then, potentially pathogenic variants only in the genes associated with cancer-predisposition or DNA damage repair were classified as the pathogenic candidate variants of sporadic schwannomatosis. The predictions for pathogenic candidate variants were checked again on Clinical Interpretation of Genetic Variants (InterVar) based on the American College of Medical Genetics guidelines and validated against Mendelian clinically applicable pathogenicity scores (M-CAP scores). We detected 26 variants; 13 variants across 10 genes were predicted to be pathogenic and found in seven patients, two each in ARID1A, PTCH2, and NOTCH2 and one each in MSH6, ALPK2, MGMT, NOTCH1, CIC, TSC2, and CDKN2A. One frameshift deletion in PTCH2 met the criteria for pathogenic or likely pathogenic classification, as recommended by the American College of Medical Genetics guidelines. Six missense mutations were classified as possibly pathogenic variants based on M-CAP scores. Four predicted pathogenic missense variants were detected in DNA damage repair (DDR) genes. Three DDR genes were affected: ARID1A, MGMT, and MSH6. Among the nine predicted pathogenic mutations detected in known cancer-predisposing genes, one was a frameshift deletion and the others were missense mutations. Seven tumor suppressor genes were involved: PTCH2, ALPK2, CIC, NOTCH1, NOTCH2, TSC2, and CDKN2A. One patient with multiple pathogenic variants in two DDR genes, ARID1A and MSH6, received a schwannomatosis diagnosis at 33 years old. Each of the other patients who had single variants in the DDR gene received their diagnoses at 41 years of age. The age at diagnosis was 40 years or older in patients with variants in cancer-predisposing genes, except for one patient who had multiple variants in TSC2 and CDKN2A. The carrier of those variants received the diagnosis at 24 years old. This study identified first-hit candidate mutations predisposing patients to schwannomatosis that were not related to SMARCB1 or LZTR1 variations in a cohort of patients with sporadic schwannomatosis. Patients with sporadic schwannomatosis without SMARCB1 or LZTR1 genetic variation may have developed the disease because of genomic variants related to cancer initiation in areas other than chromosome 22. Seven of 10 patients had predicted pathogenic germline mutations in DDR and cancer predisposition genes. We detected multiple cancer-related mutations in each patient. The age at the time schwannomatosis was diagnosed might be associated with a combination of variants and characteristics of the genes containing the variants; however, we did not have enough patients to confirm this association. The germline mutations identified in this study and the ideas related to the age of disease onset may provide potential candidate variants for future research on sporadic schwannomatosis and help to revise the current clinical and molecular diagnostic criteria. Further in vivo and in vitro studies are needed for these variants."	"Intraneural perineurioma in neurofibromatosis type 2 with molecular analysis. Intraneural perineuriomas are rare benign neoplasms. The gene associated with neurofibromatosis 2 (NF2) is located on chromosome 22q12, and mutations in NF2 are commonly seen in soft tissue perineuriomas. However, an association between NF2 mutations and intraneural perineuriomas (INPs) has not been well established. We present a 20-year-old male with NF2, multiple schwannomas and an intraneural perineurioma in the radial nerve at the spiral groove. Sequencing of NF2, SMARCB1, and LZTR1 was performed and demonstrated loss of the long arm of chromosome 22 including NF2, SMARCB1, and LZTR1, and a constitutional NF2:c.(-4577_-854)_(45-185)del alteration. We review the literature supporting two mutually exclusive pathways involving NF2 and TRAF7 mutations that lead to the development of INPs."	"The Noonan Syndrome Gene Lztr1 Controls Cardiovascular Function by Regulating Vesicular Trafficking. Noonan syndrome (NS) is one of the most frequent genetic disorders. Bleeding problems are among the most common, yet poorly defined complications associated with NS. A lack of consensus on the management of bleeding complications in patients with NS indicates an urgent need for new therapeutic approaches. Bleeding disorders have recently been described in patients with NS harboring mutations of LZTR1 (leucine zipper-like transcription regulator 1), an adaptor for CUL3 (CULLIN3) ubiquitin ligase complex. Here, we assessed the pathobiology of LZTR1-mediated bleeding disorders. Whole-body and vascular specific knockout of Lztr1 results in perinatal lethality due to cardiovascular dysfunction. Lztr1 deletion in blood vessels of adult mice leads to abnormal vascular leakage. We found that defective adherent and tight junctions in Lztr1-depleted endothelial cells are caused by dysregulation of vesicular trafficking. LZTR1 affects the dynamics of fusion and fission of recycling endosomes by controlling ubiquitination of the ESCRT-III (endosomal sorting complex required for transport III) component CHMP1B (charged multivesicular protein 1B), whereas NS-associated LZTR1 mutations diminish CHMP1B ubiquitination. LZTR1-mediated dysregulation of CHMP1B ubiquitination triggers endosomal accumulation and subsequent activation of VEGFR2 (vascular endothelial growth factor receptor 2) and decreases blood levels of soluble VEGFR2 in Lztr1 haploinsufficient mice. Inhibition of VEGFR2 activity by cediranib rescues vascular abnormalities observed in Lztr1 knockout mice Conclusions: Lztr1 deletion phenotypically overlaps with bleeding diathesis observed in patients with NS. ELISA screening of soluble VEGFR2 in the blood of LZTR1-mutated patients with NS may predict both the severity of NS phenotypes and potential responders to anti-VEGF therapy. VEGFR inhibitors could be beneficial for the treatment of bleeding disorders in patients with NS."	"LZTR1-Related Hypertrophic Cardiomyopathy Without Typical Noonan Syndrome Features. NA"	"[A Case of Familial Schwannomatosis Occurring as Intraorbital Schwannoma]. A 67-year-old male presenting with left exophthalmos and progressive visual disturbance was referred to our department. Tumors at the supraclavicular fossa and dorsal femoral region were resected at ages 27 and 45 years. His father and son had both been diagnosed with spinal tumors, and his son's tumor was pathologically diagnosed as a schwannoma. Brain MRI of his son demonstrated no intracranial tumor. Brain MRI of the patient revealed a multilobular tumor of 2 cm diameter compressing the optic nerve medially within the left muscle cone, and no other intracranial tumors. However, large masses lateral to the pharynx and intercostal nerve, as well as multiple spinal tumors were detected. Transcranial total resection of the intraorbital tumor was performed. The pathological diagnosis was consistent with a schwannoma. These clinical characteristics fulfilled the diagnostic criteria of familial schwannomatosis. The postoperative course was uneventful. His visual dysfunction and eye movement disorder resolved completely. The intraorbital tumor was believed to originate from the lacrimal nerve. Sequencing of all exons for &lt;i&gt;SMARCB1&lt;/i&gt; and &lt;i&gt;LZTR1&lt;/i&gt; using DNA extracted from the tumor did not reveal any mutations. This case is the third report on familial schwannomatosis in Japan."	"Cullin 3 and Its Role in Tumorigenesis. Cullin 3 (Cul3) family of ubiquitin ligases comprises three components, the RING finger protein RBX1, the Cul3 scaffold, and a Bric-a-brac/Tramtrack/Broad complex (BTB) protein. The BTB protein serves as a bridge to connect Cul3 to substrate and is functionally equivalent to the combination of substrate adaptor and linker in other Cullin complexes. Human genome encodes for ~180 BTB proteins, implying a broad spectrum of ubiquitination signals and substrate repertoire. Accordingly, Cul3 ubiquitin ligases are involved in diverse cellular processes, including cell division, differentiation, cytoskeleton remodeling, stress responses, and nerve cell functions. Emerging evidence has pointed to the prominent role of Cul3 ubiquitin ligases in cancer. This chapter will describe recent advances on the roles of Cul3 E3 ligase complexes in regulating various cancer hallmarks and therapeutic responses and the mutation/dysregulation of Cul3 substrate adaptors in cancer. In particular, we will focus on several extensively studied substrate adaptors, such as Keap1, SPOP, KLHL20, and LZTR1, and will also discuss other recently identified Cul3 adaptors with oncogenic or tumor-suppressive functions. We conclude that Cul3 ubiquitin ligases represent master regulators of human malignancies and highlight the importance of developing modulating agents for oncogenic/tumor-suppressive Cul3 E3 ligase complexes to prevent or intervene tumorigenesis."	"Schwannoma of the posterior tibial nerve in a patient with schwannomatosis and a novel mutation of the LZTR1 gene. NA"	"Noonan syndrome-associated biallelic LZTR1 mutations cause cardiac hypertrophy and vascular malformations in zebrafish. Variants in the LZTR1 (leucine-zipper-like transcription regulator 1) gene (OMIM #600574) have been reported in recessive Noonan syndrome patients. In vivo evidence from animal models to support its causative role is lacking. By CRISPR-Cas9 genome editing, we generated lztr1-mutated zebrafish (Danio rerio). Analyses of histopathology and downstream signaling were performed to investigate the pathogenesis of cardiac and extracardiac abnormalities in Noonan syndrome. A frameshift deletion allele was created in the zebrafish lztr1. Crosses of heterozygotes obtained homozygous lztr1 null mutants that modeled LZTR1 loss-of-function. Histological analyses of the model revealed ventricular hypertrophy, the deleterious signature of Noonan syndrome-associated cardiomyopathy. Further, assessment for extracardiac abnormalities documented multiple vascular malformations, resembling human vascular pathology caused by RAS/MAPK activation. Due to spatiotemporal regulation of LZTR1, its downstream function was not fully elucidated from western blots of adult tissue. Our novel zebrafish model phenocopied human recessive Noonan syndrome and supported the loss-of-function mechanism of disease-causing LZTR1 variants. The discovery of vascular malformations in mutants calls for the clinical follow-up of patients to monitor for its emergence. The model will serve as a novel platform for investigating the pathophysiology linking RAS/MAPK signaling to cardiac and vascular pathology."	"Providing more evidence on LZTR1 variants in Noonan syndrome patients. Noonan syndrome (NS, OMIM 163950) is a common autosomal dominant RASopathy caused mainly by gain-of-function germline pathogenic variants in genes involved in the RAS/MAPK signaling pathway. LZTR1 gene has been associated with both dominant and recessive NS. Here, we present seven patients with NS and variants in the LZTR1 gene from seven unrelated families, 14 individuals in total. The detection rAte of LZTR1 variants in our NS cohort was 4% similar to RAF1 and KRAS genes, indicating that variants in this gene might be frequent among our population. Three different variants were detected, c.742G&gt;A (p.Gly248Arg), c.360C&gt;A (p.His120Gln), and c.2245T&gt;C (p.Tyr749His). The pathogenic variant c.742G&gt;A (p.Gly248Arg) was found in five/seven patients. In our cohort 50% of patients presented heart defects and neurodevelopment delay or learning disabilities, short stature was present in 21% of them and one patient had acute lymphoblastic leukemia. This study broadens the spectrum of variants in the LZTR1 gene and provides increased knowledge of the clinical phenotypes observed in Argentinean NS patients."	"Genetic characterisation of 22q11.2 variations and prevalence in patients with congenital heart disease. The 22q11.2 deletion syndrome is considered the most frequent chromosomal microdeletion syndrome in humans and the second leading chromosomal cause of congenital heart disease (CHD). We aimed to identify the prevalence and the detailed genetic characterisation of 22q11.2 region in children with CHD including simple defects and to explore the genotype-phenotype relationship between deletion/amplification type and clinical data. Patients with CHD for surgery were screened by multiplex ligation-dependent probe amplification and capillary electrophoresis methods. Universal Probe Library technology was applied for validation. In 354 patients with CHD, 40 (11.3%) carried different levels of deletions/amplifications at the 22q11.2 region with various phenotypes. The affected genes at this region include CDC45 (15 patients), TBX1 (8), USP18 (8), RTDR1 (7), SNAP29 (6), TOP3B (6), ZNF74 (4) and other genes with less frequency. Among those, two patients carried 3 Mb typically deleted region from CLTCL1 to LZTR1 (low copy repeats A-D) or 1.5 Mb deletions from CLTCL1 to MED15 (low copy repeats A-C). Clinical facial manifestations were found in 12 patients. This study revealed an unexpected high prevalence of chromosome 22q11.2 variations in patients with CHD even in simple defects. The genotype-phenotype relationship analysis suggests that genetic detection of 22q11.2 may become necessary in all patients with CHD and that detection of unique deletions or amplifications may provide useful insight into personalised management in patients with CHD."	"LZTR1: Genotype Expansion in Noonan Syndrome. LZTR1 participates in RAS protein degradation, hence limiting the RAS/MAPK cascade. Pathogenic mutations in LZTR1 (MIM:600574) have been described in a few patients with Noonan syndrome (NS). Three patients with LZTR1 mutations of different genetic transmission and NS phenotype are herein characterized. Case 1 is a 5-year-old boy with NS phenotype. Sanger sequencing of PTPN11 and SOS1 identified no mutations. Whole exome sequencing (WES) detected a heterozygous missense mutation in LZTR1:c.742G&gt;A (p.Gly248Arg) (exon 8, Kelch 4 functional domain). Bioinformatic algorithms predict a deleterious effect of this variant, previously described to cause NS. Case 2 is a 4-year-old boy with NS phenotype. Direct sequencing of 8 genes associated with NS identified no mutations. WES localized a homozygous missense mutation in LZTR1:c.2074T&gt;C (p.Phe692Leu, exon 18). This mutation has not been reported before and is predicted to have a deleterious effect on the protein. Case 3 is an 8-year-old boy who shares NS phenotype with his mother. A multigene panel for RASopathies showed a heterozygous missense variant in LZTR1:c.730T&gt;C (p.Ser244Pro) (exon 8; Kelch 4 functional domain) that was maternally inherited. This variant has not been previously described; however, in silico predictors classify it as deleterious. Familial segregation suggests its pathogenicity. The molecular approach for syndromic phenotypes associated with various genes should involve complete/updated panels or WES rather than gene-by-gene sequencing. RASopathy genetic panels should incorporate LZTR1. Patients with pathogenic mutations in LZTR1 exhibit a characteristic NS gestalt but variable cardiac, height, and neurodevelopment expressions, with recessive inheritance possibly associating with a more severe phenotype."	"Genomic profiling of primary histiocytic sarcoma reveals two molecular subgroups. Histiocytic sarcoma is a rare malignant neoplasm that may occur de novo or in the context of a previous hematologic malignancy or mediastinal germ cell tumor. Here, we performed whole exome sequencing and RNA-sequencing (RNA-Seq) on 21 archival cases of primary histiocytic sarcoma. We identified a high number of genetic alterations within the RAS/RAF/MAPK pathway in 21 of 21 cases, with alterations in NF1 (6 of 21), MAP2K1 (5 of 21), PTPN11 (4 of 21), BRAF (4 of 21), KRAS (4 of 21), NRAS (1 of 21), and LZTR1 (1 of 21), including single cases with homozygous deletion of NF1, high-level amplification of PTPN11, and a novel TTYH3-BRAF fusion. Concurrent NF1 and PTPN11 mutations were present in 3 of 21 cases, and 5 of 7 cases with alterations in NF1 and/or PTPN11 had disease involving the gastrointestinal tract. Following unsupervised clustering of gene expression data, cases with NF1 and/or PTPN11 abnormalities formed a distinct tumor subgroup. A subset of NF1/PTPN11 wild-type cases had frequent mutations in B-cell lymphoma associated genes and/or clonal IG gene rearrangements. Our findings expand the current understanding of the molecular pathogenesis of this rare tumor and suggest the existence of a distinct subtype of primary histiocytic sarcoma characterized by NF1/PTPN11 alterations with predilection for the gastrointestinal tract."	"Segmental schwannomatosis: characteristics in 12 patients. Segmental schwannomatosis is characterized by multiple schwannomas affecting one-limb or less than 5 contiguous segments of spine. Its characteristics are not well described in the literature. Our objective was to better describe the demographic and clinical characteristics of this condition. This was a retrospective, bi-center study conducted in two French expert centers for neurofibromatosis and schwannomatosis. The clinical, radiographic, pathological and molecular aspects were extracted from patients' clinical records. Twelve patients with segmental schwannomatosis were identified. Eight were female and 4 were male. The median age at initial symptom was 29 years (range: 6-60 years) and the median age at diagnosis was 34.5 years (range: 13-65 years). Pain was the initial symptom for the majority of patients (7 of 12). The number of tumors was variable with six patients having more than 10 tumors. Peripheral distribution was seen in all patients. Quality of life could be impaired (median Dermatology Life Quality Index score was 4.5 (range: 2-13). The median duration of follow up was 3 years (range: 1-26). Chronic pain was the main complication (9 of 12 patients). Surgical intervention to control chronic pain was performed for 9 patients of whom 5 experienced recurrence of tumors. Molecular investigations revealed heterozygous LZTR1 variants in 3 of 9 patients. Segmental schwannomatosis is a rare condition that may start early in life and often remains undiagnosed for many years. Pain is the main symptom and consequently could impair the quality of life. Surgery seems to be effective, but recurrences are frequent. Some patients carried heterozygous LZTR1 variants. Further studies are needed to better understand this rare condition."	"Neurofibromatosis type 2 and related disorders. Neurofibromatosis type 2 (NF2) is a schwannoma predisposition syndrome, alongside schwannomatosis related to germline LZTR1 and SMARCB1 pathogenic variants. This review highlights their overlapping phenotypes, new insight into NF2 phenotype and treatment outcomes. Mosaic NF2 is more prevalent than previously thought. Use of next-generation sequencing and tumour testing is needed to differentiate mosaic NF2 and schwannomatosis. Developing NF2 phenotypic insights include vasculopathy with brainstem infarction and vessel stenosis; focal cortical dysplasia in severe phenotypes; swallowing/speech difficulties and continued debate into malignancy in NF2. Proposed are: use of visual evoked potentials to monitor optic nerve sheath meningioma; potential routine magnetic resonance angiogram in adolescence and a genetic score to cohort patients with similar pathogenic_variants, for natural history/treatment outcome studies. Cohort studies found survival analysis to hearing loss and unilateral visual loss in severe mutation groups was 32 and 38 years; active management gave better outcomes than surveillance in spinal ependymoma; gamma knife, bevacizumab and hearing preservation surgery maintained or improved short-term hearing in selected patients, and gamma knife had a good long-term tumour control in mild patients with small tumours. Further long-term outcome studies are needed comparing similar severity patients to allow informed decision making."	"Distinctive low epidermal nerve fiber density in schwannomatosis patients provides a major parameter for diagnosis and differential diagnosis. Schwannomatosis and neurofibromatosis type 2 (NF2) are two distinct neuro-genetic tumor predisposition disorders, which, however, share some clinical and genetic features. While germline mutations in the NF2 gene are only found in NF2, a majority of schwannomatosis patients have germline mutations in the SMARCB1 or LZTR1 genes. The overlapping clinical phenotypes pose a serious challenge in differential diagnosis and in risk stratification of these two entities which is further complicated by frequent mosaicism in both disorders. Chronic neuropathic pain which is a typical consequence of small fiber neuropathy, is characteristic for schwannomatosis. By contrast, NF2 patients do not have chronic pain but may have moderate to severe sensory deficits and paresis which are not characteristic for schwannomatosis. In the present study, we determined intraepidermal nerve fiber density (IEND) in skin biopsies of 34 clinically ascertained schwannomatosis and 25 NF2 patients. In the NF2 group, 11/25 (44%) presented with IEND below the age- and gender-matched bottom 5% normative reference IEND. In contrast, nearly all (33/34 = 97%) schwannomatosis patients showed IEND below or on the bottom 5% normative reference. The reduction of IEND in schwannomatosis patients was age-independent. Paired t-test revealed no difference between the NF2-IEND and the corresponding bottom 5% normative reference (P = 0.98). By contrast, IEND in the schwannomatosis patients were highly significantly lower than the corresponding 5% normative reference IEND (P &lt; 0.0001). In addition, the difference between the IEND of our patients and the 5% lowest normative reference IEND was highly significantly larger in schwannomatosis patients than in NF2 patients (P &lt; 0.0001). IEND of our patients did not correlate with neither the presence nor types of germline mutations in neither the NF2 nor the LZTR1 gene. In conclusion, schwannomatosis patients have marked low IEND which provides a major parameter for diagnosis and differential diagnosis."	"LZTR1 facilitates polyubiquitination and degradation of RAS-GTPases. Leucine zipper-like transcriptional regulator 1 (LZTR1) encodes a member of the BTB-Kelch superfamily, which interacts with the Cullin3 (CUL3)-based E3 ubiquitin ligase complex. Mutations in LZTR1 have been identified in glioblastoma, schwannomatosis, and Noonan syndrome. However, the functional role of LZTR1 in carcinogenesis or human development is not fully understood. Here, we demonstrate that LZTR1 facilitates the polyubiquitination and degradation of RAS via the ubiquitin-proteasome pathway, leading to the inhibition of the RAS/MAPK signaling. The polyubiquitination and degradation of RAS was also observed in cells expressing MRAS, HRAS, NRAS, and KRAS as well as oncogenic RAS mutants and inhibited the activation of ERK1/2 and cell growth. In vivo ubiquitination assays showed that MRAS-K127 and HRAS-K170 were ubiquitinated by LZTR1 and that the polyubiquitinated-chains contained mainly Ub-K48, K63, and K33-linked chains, suggesting its possible involvement in autophagy. Immunoprecipitation analyses showed the interaction of LZTR1 and RAS-GTPases with autophagy-related proteins, including LC3B and SQSTM1/p62. Co-expression of LZTR1 and RAS increased the expression of lipidated form of LC3B. However, long-term treatment with chloroquine had little effect on RAS protein levels, suggesting that the contribution of autophagy to LZTR1-mediated RAS degradation is minimal. Taken together, these results show that LZTR1 functions as a &quot;RAS killer protein&quot; mainly via the ubiquitin-proteasome pathway regardless of the type of RAS GTPase, controlling downstream signal transduction. Our results also suggest a possible association of LZTR1 and RAS-GTPases with the autophagy. These findings provide clues for the elucidation of the mechanisms of RAS degradation and regulation of the RAS/MAPK signaling cascade."	"Incidence of mosaicism in 1055 de novo NF2 cases: much higher than previous estimates with high utility of next-generation sequencing. To evaluate the incidence of mosaicism in de novo neurofibromatosis 2 (NF2). Patients fulfilling NF2 criteria, but with no known affected family member from a previous generation (n = 1055), were tested for NF2 variants in lymphocyte DNA and where available tumor DNA. The proportion of individuals with a proven or presumed mosaic NF2 variant was assessed and allele frequencies of identified variants evaluated using next-generation sequencing. The rate of proven/presumed mosaicism was 232/1055 (22.0%). However, nonmosaic heterozygous pathogenic variants were only identified in 387/1055 (36.7%). When variant detection rates in second generation nonmosaics were applied to de novo cases, we assessed the overall probable mosaicism rate to be 59.7%. This rate differed by age from 21.7% in those presenting with bilateral vestibular schwannoma &lt;20 years to 80.7% in those aged ≥60 years. A mosaic variant was detected in all parents of affected children with a single-nucleotide pathogenic NF2 variant. This study has identified a very high probable mosaicism rate in de novo NF2, probably making NF2 the condition with the highest expressed rate of mosaicism in de novo dominant disease that is nonlethal in heterozygote form. Risks to offspring are small and probably correlate with variant allele frequency detected in blood."	"Molecular and phenotypic spectrum of Noonan syndrome in Chinese patients. Noonan syndrome (NS) is a common autosomal dominant/recessive disorder. No large-scale study has been conducted on NS in China, which is the most populous country in the world. Next-generation sequencing (NGS) was used to identify pathogenic variants in patients that exhibited NS-related phenotypes. We assessed the facial features and clinical manifestations of patients with pathogenic or likely pathogenic variants in the RAS-MAPK signaling pathway. Gene-related Chinese NS facial features were described using artificial intelligence (AI).NGS identified pathogenic variants in 103 Chinese patients in eight NS-related genes: PTPN11 (48.5%), SOS1 (12.6%), SHOC2 (11.7%), KRAS (9.71%), RAF1 (7.77%), RIT1 (6.8%), CBL (0.97%), NRAS (0.97%), and LZTR1 (0.97%). Gene-related facial representations showed that each gene was associated with different facial details. Eight novel pathogenic variants were detected and clinical features because of specific genetic variants were reported, including hearing loss, cancer risk due to a PTPN11 pathogenic variant, and ubiquitous abnormal intracranial structure due to SHOC2 pathogenic variants. NGS facilitates the diagnosis of NS, especially for patients with mild/moderate and atypical symptoms. Our study describes the genotypic and phenotypic spectra of NS in China, providing new insights into distinctive clinical features due to specific pathogenic variants."	"Two Novel Cases of Autosomal Recessive Noonan Syndrome Associated With LZTR1 Variants. NA"	"An update on the CNS manifestations of neurofibromatosis type 2. Neurofibromatosis type II (NF2) is a tumor predisposition syndrome characterized by the development of distinctive nervous system lesions. NF2 results from loss-of-function alterations in the NF2 gene on chromosome 22, with resultant dysfunction of its protein product merlin. NF2 is most commonly associated with the development of bilateral vestibular schwannomas; however, patients also have a predisposition to development of other tumors including meningiomas, ependymomas, and peripheral, spinal, and cranial nerve schwannomas. Patients may also develop other characteristic manifestations such as ocular lesions, neuropathies, meningioangiomatosis, and glial hamartia. NF2 has a highly variable clinical course, with some patients exhibiting a severe phenotype and development of multiple tumors at an early age, while others may be nearly asymptomatic throughout their lifetime. Despite the high morbidity associated with NF2 in severe cases, management of NF2-associated lesions primarily consists of surgical resection and treatment of symptoms, and there are currently no FDA-approved systemic therapies that address the underlying biology of the syndrome. Refinements to the diagnostic criteria of NF2 have been proposed over time due to increasing understanding of clinical and molecular data. Large-population studies have demonstrated that some features such as the development of gliomas and neurofibromas, currently included as diagnostic criteria, may require further clarification and modification. Meanwhile, burgeoning insights into the molecular biology of NF2 have shed light on the etiology and highly variable severity of the disease and suggested numerous putative molecular targets for therapeutic intervention. Here, we review the clinicopathologic features of NF2, current understanding of the molecular biology of NF2, particularly with regard to central nervous system lesions, ongoing therapeutic studies, and avenues for further research."	"Coexistence of schwannomatosis and glioblastoma in two families. Schwannomatosis is a rare affection predisposing to multiple peripheral neurologic tumors development. Approximatively, one third of patients with schwannomatosis are carriers of a germline mutation in LZTR1 (Leucin Zipper Transcription Regulator 1). Tumorigenesis in schwannomatosis responds to a somatic 5-hit/3-step mechanism resulting in a loss of function (LOF) of LZTR1 and the contiguous genes of locus 22q11.2q12.2. Effectively, LZTR1 is mapped on 22q11.2 and centromeric to SMARCB1 also implicated in the determinism of schwannomatosis and NF2, responsible for neurofibromatosis type 2. On a somatic point of view, LZTR1 mutations are known to drive with a significant frequency glioblastoma (GB) development. We report here two families in which segregate both multiple schwannomas and GB. In the first family, the proband received a diagnosis with of schwannomatosis after a surgery for a lumbar schwannoma at age 43, molecularly confirmed by identification of a germline heterozygous mutation in LZTR1. Her father, having unremarkable medical history deceased from an apparently isolated GB at age 59. In the second family, LZTR1-related schwannomatosis was diagnosed in the index case at age 70 after multiple schwannomas surgeries. Her elder sister had no neurological medical history before occurrence of a lethal GB at age 78. Molecular analysis of GB sample from both affected relatives showed the presence of the familial mutation. These observations hypothesize a potential link between schwannomatosis and the GB development."	"Further support linking the 22q11.2 microduplication to an increased risk of bladder exstrophy and highlighting LZTR1 as a candidate gene. The bladder exstrophy-epispadias complex (BEEC) is a congenital malformation of the bladder and urethra. The underlying causes of this malformation are still largely unknown; however, aside from environment, genetics is thought to play an essential role. The recurrent 22q11.2 microduplication is the most persistently detected genetic aberration found in BEEC cases. We performed array comparative genomic hybridization (array-CGH) analysis of 76 Swedish BEEC patients. Statistical analysis was performed on current dataset pooled with previously published data on the 22q11.2 microduplication in BEEC patients. We performed massive parallel sequencing (MPS) of the 22q11.2 region in 20 BEEC patients without the 22q11.2 microduplication followed by functional studies. We identified three additional cases with the 22q11.2 microduplication. Pooling data from this study with previously published reports showed a statistically significant enrichment of the 22q11.2 microduplication in BEEC patients (2.61% in cases vs. 0.08% in controls; OR = 32.6; p = 8.7 × 10<sup>-4</sup> ). MPS of the 22q11.2 region in 20 BEEC patients without the 22q11.2 microduplication identified a novel variant in LZTR1 (p.Ser698Phe) in one patient. Functional evaluation of the LZTR1 p.Ser698Phe variant in live NIH 3T3 cells showed that the concentration and cytoplasmic mobility differ between the Lztr1wt and Lztr1mut , indicating a potential functional effect of the LZTR1mut . Our study further emphasizes the involvement of the 22q11.2 region in BEEC development and highlights LZTR1 as a candidate gene underlying the urogenital malformation."	"Schwannomatosis of the Spinal Accessory Nerve: A Case Report. Schwannomatosis is a distinct syndrome characterized by multiple peripheral nerve schwannomas that can be sporadic or familial in nature. Cases affecting the lower cranial nerves are infrequent. Here, the authors present a rare case of schwannomatosis affecting the left spinal accessory nerve. Upon genetic screening, an in-frame insertion at codon p.R177 of the Sox 10 gene was observed. There were no identifiable alterations in NF1, NF2, LZTR1, and SMARCB1. This case demonstrates a rare clinical presentation of schwannomatosis in addition to a genetic aberration that has not been previously reported in this disease context."	"RIT1 oncoproteins escape LZTR1-mediated proteolysis. RIT1 oncoproteins have emerged as an etiologic factor in Noonan syndrome and cancer. Despite the resemblance of RIT1 to other members of the Ras small guanosine triphosphatases (GTPases), mutations affecting RIT1 are not found in the classic hotspots but rather in a region near the switch II domain of the protein. We used an isogenic germline knock-in mouse model to study the effects of RIT1 mutation at the organismal level, which resulted in a phenotype resembling Noonan syndrome. By mass spectrometry, we detected a RIT1 interactor, leucine zipper-like transcription regulator 1 (LZTR1), that acts as an adaptor for protein degradation. Pathogenic mutations affecting either RIT1 or LZTR1 resulted in incomplete degradation of RIT1. This led to RIT1 accumulation and dysregulated growth factor signaling responses. Our results highlight a mechanism of pathogenesis that relies on impaired protein degradation of the Ras GTPase RIT1."	"Delineation of dominant and recessive forms of LZTR1-associated Noonan syndrome. Noonan syndrome (NS) is characterised by distinctive facial features, heart defects, variable degrees of intellectual disability and other phenotypic manifestations. Although the mode of inheritance is typically dominant, recent studies indicate LZTR1 may be associated with both dominant and recessive forms. Seeking to describe the phenotypic characteristics of LZTR1-associated NS, we searched for likely pathogenic variants using two approaches. First, scrutiny of exomes from 9624 patients recruited by the Deciphering Developmental Disorders (DDDs) study uncovered six dominantly-acting mutations (p.R97L; p.Y136C; p.Y136H, p.N145I, p.S244C; p.G248R) of which five arose de novo, and three patients with compound-heterozygous variants (p.R210*/p.V579M; p.R210*/p.D531N; c.1149+1G&gt;T/p.R688C). One patient also had biallelic loss-of-function mutations in NEB, consistent with a composite phenotype. After removing this complex case, analysis of human phenotype ontology terms indicated significant phenotypic similarities (P = 0.0005), supporting a causal role for LZTR1. Second, targeted sequencing of eight unsolved NS-like cases identified biallelic LZTR1 variants in three further subjects (p.W469*/p.Y749C, p.W437*/c.-38T&gt;A and p.A461D/p.I462T). Our study strengthens the association of LZTR1 with NS, with de novo mutations clustering around the KT1-4 domains. Although LZTR1 variants explain ~0.1% of cases across the DDD cohort, the gene is a relatively common cause of unsolved NS cases where recessive inheritance is suspected."	"Clinical and mutation profile of pediatric patients with RASopathy-associated hypertrophic cardiomyopathy: results from a Chinese cohort. The RASopathies are a class of developmental disorders caused by germline mutations in the RAS-mitogen-activated protein kinase (MAPK) pathway. Hypertrophic cardiomyopathy (HCM) has been frequently described in children with RASopathy, but only a minority of patients have received formal genotyping. The purpose of this study was to evaluate the genetic basis and clinical outcome of pediatric patients with RASopathy-associated HCM. We retrospectively reviewed the mutation spectrum and clinical outcome of all the patients with RASopathy derived from 168 pediatric HCM cases referred to our institution between January 2012 and July 2018. A heterozygous missense mutation in one of known RASopathy genes was identified in 46 unrelated children with HCM. Mutations in the PTPN11 gene were the most prevalent (19/46); this was followed by mutations in RAF1 (11/46), KRAS (5/46), RIT1 (4/46), BRAF (3/46), SOS1 (2/46), HRAS (1/46), and SHOC2 (1/46). Moreover, two compound heterozygous missense mutations in the LZTR1 gene were identified in one patient with the Noonan syndrome phenotype and HCM. The median age at the diagnosis of HCM was 3.0 months (range 0 months to 8.1 years). Twenty-one of the patients had significant left ventricular outflow tract obstruction and 32 had concomitant congenital heart disease. Three patients with a mutation in exon 13 of the PTPN11 gene died of cardiac failure at the ages of 3.0, 3.5, and 6.0 months. The remaining 44 patients were alive after an average follow-up time of 3.9 years (0.5 to 17.1 years, median 2.9 years) from the initial diagnosis of HCM, including 5 patients with spontaneous regression of their cardiac hypertrophy. RASopathy-associated HCM is a heterogeneous genetic condition characterized by early-onset cardiac hypertrophy and a high prevalence of co-existing congenital heart disease, which is most frequently related to specific mutations in the PTPN11 gene. Rapidly progressive HCM, resulting in an early death, is uncommon in RASopathy patients except those with specific mutations in exon 13 of the PTPN11 gene."	"Oligo-astrocytoma in LZTR1-related Noonan syndrome. Mutations in LZTR1, already known to be causal in familial schwannomatosis type 2, have been recently involved in a small proportion of patients with autosomal dominant and autosomal recessive Noonan syndrome. LZTR1 is also a driver gene in non syndromal glioblastoma. We report a 26-year-old patient with typical Noonan syndrome, and the dominantly transmitted c.850C &gt; T (p.(Arg284Cys)) variant in LZTR1. An oligoastrocytoma was diagnosed in the patient at the age of 22 years; recurrence of the tumor occurred at age 26, as a ganglioblastoma. The patient had been transiently treated with growth hormone between ages 15 and 17. Considering the implication of LZTR1 in sporadic tumors of the nervous system, we hypothesize that gliomas are a possible complication of LZTR1-related Noonan syndrome. This report also supports a possible link between occurrence of a cerebral tumor in Noonan syndrome and a previous treatment with growth hormone."	"Ras tuning. NA"	"Identifying the deficiencies of current diagnostic criteria for neurofibromatosis 2 using databases of 2777 individuals with molecular testing. We have evaluated deficiencies in existing diagnostic criteria for neurofibromatosis 2 (NF2). Two large databases of individuals fulfilling NF2 criteria (n = 1361) and those tested for NF2 variants with criteria short of diagnosis (n = 1416) were interrogated. We assessed the proportions meeting each diagnostic criterion with constitutional or mosaic NF2 variants and the positive predictive value (PPV) with regard to definite diagnosis. There was no evidence for usefulness of old criteria &quot;glioma&quot; or &quot;neurofibroma.&quot; &quot;Ependymoma&quot; had 100% PPV and high levels of confirmed NF2 diagnosis (67.7%). Those with bilateral vestibular schwannoma (VS) alone aged ≥60 years had the lowest confirmation rate (6.6%) and reduced PPV (80%). Siblings as a first-degree relative, without an affected parent, had 0% PPV. All three individuals with unilateral VS and an affected sibling were proven not to have NF2. The biggest overlap was with LZTR1-associated schwannomatosis. In this category, seven individuals with unilateral VS plus ≥2 nondermal schwannomas reduced PPV to 67%. The present study confirms important deficiencies in NF2 diagnostic criteria. The term &quot;glioma&quot; should be dropped and replaced by &quot;ependymoma.&quot; Similarly &quot;neurofibroma&quot; should be removed. Dropping &quot;sibling&quot; from first-degree relatives should be considered and testing of LZTR1 should be recommended for unilateral VS."	"Dominant Noonan syndrome-causing LZTR1 mutations specifically affect the Kelch domain substrate-recognition surface and enhance RAS-MAPK signaling. Noonan syndrome (NS), the most common RASopathy, is caused by mutations affecting signaling through RAS and the MAPK cascade. Recently, genome scanning has discovered novel genes implicated in NS, whose function in RAS-MAPK signaling remains obscure, suggesting the existence of unrecognized circuits contributing to signal modulation in this pathway. Among these genes, leucine zipper-like transcriptional regulator 1 (LZTR1) encodes a functionally poorly characterized member of the BTB/POZ protein superfamily. Two classes of germline LZTR1 mutations underlie dominant and recessive forms of NS, while constitutional monoallelic, mostly inactivating, mutations in the same gene cause schwannomatosis, a cancer-prone disorder clinically distinct from NS. Here we show that dominant NS-causing LZTR1 mutations do not affect significantly protein stability and subcellular localization. We provide the first evidence that these mutations, but not the missense changes occurring as biallelic mutations in recessive NS, enhance stimulus-dependent RAS-MAPK signaling, which is triggered, at least in part, by an increased RAS protein pool. Moreover, we document that dominant NS-causing mutations do not perturb binding of LZTR1 to CUL3, a scaffold coordinating the assembly of a multimeric complex catalyzing protein ubiquitination but are predicted to affect the surface of the Kelch domain mediating substrate binding to the complex. Collectively, our data suggest a model in which LZTR1 contributes to the ubiquitinationof protein(s) functioning as positive modulator(s) of the RAS-MAPK signaling pathway. In this model, LZTR1 mutations are predicted to variably impair binding of these substrates to the multi-component ligase complex and their efficient ubiquitination and degradation, resulting in MAPK signaling upregulation."	"LZTR1 is a regulator of RAS ubiquitination and signaling. In genetic screens aimed at understanding drug resistance mechanisms in chronic myeloid leukemia cells, inactivation of the cullin 3 adapter protein-encoding leucine zipper-like transcription regulator 1 (LZTR1) gene led to enhanced mitogen-activated protein kinase (MAPK) pathway activity and reduced sensitivity to tyrosine kinase inhibitors. Knockdown of the Drosophila LZTR1 ortholog CG3711 resulted in a Ras-dependent gain-of-function phenotype. Endogenous human LZTR1 associates with the main RAS isoforms. Inactivation of LZTR1 led to decreased ubiquitination and enhanced plasma membrane localization of endogenous KRAS (V-Ki-ras2 Kirsten rat sarcoma viral oncogene homolog). We propose that LZTR1 acts as a conserved regulator of RAS ubiquitination and MAPK pathway activation. Because LZTR1 disease mutations failed to revert loss-of-function phenotypes, our findings provide a molecular rationale for LZTR1 involvement in a variety of inherited and acquired human disorders."	"Mutations in LZTR1 drive human disease by dysregulating RAS ubiquitination. The leucine zipper-like transcriptional regulator 1 (LZTR1) protein, an adaptor for cullin 3 (CUL3) ubiquitin ligase complex, is implicated in human disease, yet its mechanism of action remains unknown. We found that Lztr1 haploinsufficiency in mice recapitulates Noonan syndrome phenotypes, whereas LZTR1 loss in Schwann cells drives dedifferentiation and proliferation. By trapping LZTR1 complexes from intact mammalian cells, we identified the guanosine triphosphatase RAS as a substrate for the LZTR1-CUL3 complex. Ubiquitome analysis showed that loss of Lztr1 abrogated Ras ubiquitination at lysine-170. LZTR1-mediated ubiquitination inhibited RAS signaling by attenuating its association with the membrane. Disease-associated LZTR1 mutations disrupted either LZTR1-CUL3 complex formation or its interaction with RAS proteins. RAS regulation by LZTR1-mediated ubiquitination provides an explanation for the role of LZTR1 in human disease."	"Delineation of LZTR1 mutation-positive patients with Noonan syndrome and identification of LZTR1 binding to RAF1-PPP1CB complexes. RASopathies are a group of developmental disorders caused by mutations in genes that regulate the RAS/MAPK pathway and include Noonan syndrome (NS), Costello syndrome, cardiofaciocutaneous syndrome and other related disorders. Whole exome sequencing studies recently identified LZTR1, PPP1CB and MRAS as new causative genes in RASopathies. However, information on the phenotypes of LZTR1 mutation-positive patients and functional properties of the mutations are limited. To identify variants of LZTR1, PPP1CB, and MRAS, we performed a targeted next-generation sequencing and reexamined previously analyzed exome data in 166 patients with suspected RASopathies. We identified eight LZTR1 variants, including a de novo variant, in seven probands who were suspicious for NS and one known de novo PPP1CB variant in a patient with NS. One of the seven probands had two compound heterozygous LZTR1 variants, suggesting autosomal recessive inheritance. All probands with LZTR1 variants had cardiac defects, including hypertrophic cardiomyopathy and atrial septal defect. Five of the seven probands had short stature or intellectual disabilities. Immunoprecipitation of endogenous LZTR1 followed by western blotting showed that LZTR1 bound to the RAF1-PPP1CB complex. Cells transfected with a small interfering RNA against LZTR1 exhibited decreased levels of RAF1 phosphorylated at Ser259. These are the first results to demonstrate LZTR1 in association with the RAF1-PPP1CB complex as a component of the RAS/MAPK pathway."	"Familial unilateral vestibular schwannoma is rarely caused by inherited variants in the NF2 gene. Unilateral vestibular schwannoma (VS) occurs with a lifetime risk of around 1 in 1,000 and is due to inactivation of the NF2 gene, either somatically or from a constitutional mutation. It has been postulated that familial occurrence of unilateral VS occurs more frequently than by chance, but no causal mechanism has been confirmed. Retrospective database analysis. The likelihood of chance occurrence of unilateral VS, or occurring in the context of neurofibromatosis type 2 (NF2), was assessed using national UK audit data and data from the national NF2 database. Families with familial unilateral VS (occurrence in first- and second-degree relatives) were assessed for constitutional NF2 and LZTR1 genetic variants, and where possible the tumor was also analyzed. Approximately 1,000 cases of unilateral VS occurred annually in the United Kingdom between 2013 and 2016. Of these, 2.5 may be expected to have a first-degree relative who had previously developed a unilateral VS. The likelihood of this occurring in NF2 was considered to be as low as 0.05 annually. None of 28 families with familial unilateral VS had a constitutional NF2 intragenic variant, and in nine cases where the VS was analyzed, both mutational events in NF2 were identified and excluded from the germline. Only three variants of uncertain significance were found in LZTR1. Familial occurrence of unilateral VS is very unlikely to be due to a constitutional NF2 or definitely pathogenic LZTR1 variant. The occurrence of unilateral VS in two or more first-degree relatives is likely due to chance. This phenomenon may well increase in clinical practice with increasing use of cranial magnetic resonance imaging in older patients. 2b Laryngoscope, 129:967-973, 2019."	"Oral malignant gastrointestinal neuroectodermal tumour with junctional component mimicking mucosal melanoma. Malignant gastrointestinal neuroectodermal tumour (GNET) is a recently characterised rare and aggressive tumour that typically arises in association with the small intestine of adults. We present a novel case of this entity and expand the spectrum of its reported morphological features. The patient was a 5-year-old female, the youngest reported patient affected by the condition, and presented with extra-abdominal disease. The histopathological features included the presence of a junctional component of the palatal tumour, which mimicked mucosal melanoma, a feature that has not been previously reported in GNET. Whole genome and RNA sequencing was performed that demonstrated the EWSR1-ATF1 translocation characteristic of GNET. Knowledge of this entity and its features, together with careful morphological assessment supplemented by judicious immunohistochemical and molecular studies should enable the correct diagnosis to be established."	"Phenotypic and genotypic overlap between mosaic NF2 and schwannomatosis in patients with multiple non-intradermal schwannomas. Schwannomatosis and neurofibromatosis type 2 (NF2) are both characterized by the development of multiple schwannomas but represent different genetic entities. Whereas NF2 is caused by mutations of the NF2 gene, schwannomatosis is associated with germline mutations of SMARCB1 or LZTR1. Here, we studied 15 sporadic patients with multiple non-intradermal schwannomas, but lacking vestibular schwannomas and ophthalmological abnormalities, who fulfilled the clinical diagnostic criteria for schwannomatosis. None of them harboured germline NF2 or SMARCB1 mutations as determined by the analysis of blood samples but seven had germline LZTR1 variants predicted to be pathogenic. At least two independent schwannomas from each patient were subjected to NF2 mutation testing. In five of the 15 patients, identical somatic NF2 mutations were identified (33%). If only those patients without germline LZTR1 variants are considered (n = 8), three of them (37.5%) had mosaic NF2 as concluded from identical NF2 mutations identified in independent schwannomas from the same patient. These findings imply that a sizeable proportion of patients who fulfil the diagnostic criteria for schwannomatosis, are actually examples of mosaic NF2. Hence, the molecular characterization of tumours in patients with a clinical diagnosis of schwannomatosis is very important. Remarkably, two of the patients with germline LZTR1 variants also had identical NF2 mutations in independent schwannomas from each patient which renders differential diagnosis of LZTR1-associated schwannomatosis versus mosaic NF2 in these patients very difficult."	"Response to Nakaguma et al. NA"	"Noonan syndrome associated with growth hormone deficiency with biallelic LZTR1 variants. NA"	"Schwannomatosis: a genetic and epidemiological study. Schwannomatosis is a dominantly inherited condition predisposing to schwannomas of mainly spinal and peripheral nerves with some diagnostic overlap with neurofibromatosis-2 (NF2), but the underlying epidemiology is poorly understood. We present the birth incidence and prevalence allowing for overlap with NF2. Schwannomatosis and NF2 cases were ascertained from the Manchester region of England (population=4.8 million) and from across the UK. Point prevalence and birth incidence were calculated from regional birth statistics. Genetic analysis was also performed on NF2, LZTR1 and SMARCB1 on blood and tumour DNA samples when available. Regional prevalence for schwannomatosis and NF2 were 1 in 126 315 and 50 500, respectively, with calculated birth incidences of 1 in 68 956 and 1 in 27 956. Mosaic NF2 causes a substantial overlap with schwannomatosis resulting in the misdiagnosis of at least 9% of schwannomatosis cases. LZTR1-associated schwannomatosis also causes a small number of cases that are misdiagnosed with NF2 (1%-2%), due to the occurrence of a unilateral vestibular schwannoma. Patients with schwannomatosis had lower numbers of non-vestibular cranial schwannomas, but more peripheral and spinal nerve schwannomas with pain as a predominant presenting symptom. Life expectancy was significantly better in schwannomatosis (mean age at death 76.9) compared with NF2 (mean age at death 66.2; p=0.004). Within the highly ascertained North-West England population, schwannomatosis has less than half the birth incidence and prevalence of NF2."	"Autosomal recessive Noonan syndrome associated with biallelic LZTR1 variants. To characterize the molecular genetics of autosomal recessive Noonan syndrome. Families underwent phenotyping for features of Noonan syndrome in children and their parents. Two multiplex families underwent linkage analysis. Exome, genome, or multigene panel sequencing was used to identify variants. The molecular consequences of observed splice variants were evaluated by reverse-transcription polymerase chain reaction. Twelve families with a total of 23 affected children with features of Noonan syndrome were evaluated. The phenotypic range included mildly affected patients, but it was lethal in some, with cardiac disease and leukemia. All of the parents were unaffected. Linkage analysis using a recessive model supported a candidate region in chromosome 22q11, which includes LZTR1, previously shown to harbor mutations in patients with Noonan syndrome inherited in a dominant pattern. Sequencing analyses of 21 live-born patients and a stillbirth identified biallelic pathogenic variants in LZTR1, including putative loss-of-function, missense, and canonical and noncanonical splicing variants in the affected children, with heterozygous, clinically unaffected parents and heterozygous or normal genotypes in unaffected siblings. These clinical and genetic data confirm the existence of a form of Noonan syndrome that is inherited in an autosomal recessive pattern and identify biallelic mutations in LZTR1."	"Targeted next-generation sequencing for differential diagnosis of neurofibromatosis type 2, schwannomatosis, and meningiomatosis. Clinical overlap between neurofibromatosis type 2 (NF2), schwannomatosis, and meningiomatosis can make clinical diagnosis difficult. Hence, molecular investigation of germline and tumor tissues may improve the diagnosis. We present the targeted next-generation sequencing (NGS) of NF2, SMARCB1, LZTR1, SMARCE1, and SUFU tumor suppressor genes, using an amplicon-based approach. We analyzed blood DNA from a cohort of 196 patients, including patients with NF2 (N = 79), schwannomatosis (N = 40), meningiomatosis (N = 12), and no clearly established diagnosis (N = 65). Matched tumor DNA was analyzed when available. Forty-seven NF2-/SMARCB1-negative schwannomatosis patients and 27 NF2-negative meningiomatosis patients were also evaluated. A NF2 variant was found in 41/79 (52%) NF2 patients. SMARCB1 or LZTR1 variants were identified in 5/40 (12.5%) and 13/40 (∼32%) patients in the schwannomatosis cohort. Potentially pathogenic variants were found in 12/65 (18.5%) patients with no clearly established diagnosis. A LZTR1 variant was identified in 16/47 (34%) NF2/SMARCB1-negative schwannomatosis patients. A SMARCE1 variant was found in 3/39 (∼8%) meningiomatosis patients. No SUFU variant was found in the cohort. NGS was an effective and sensitive method to detect mutant alleles in blood or tumor DNA of mosaic NF2 patients. Interestingly, we identified a 4-hit mechanism resulting in the complete NF2 loss-of-function combined with SMARCB1 and LZTR1 haploinsufficiency in two-thirds of tumors from NF2 patients. Simultaneous investigation of NF2, SMARCB1, LZTR1, and SMARCE1 is a key element in the differential diagnosis of NF2, schwannomatosis, and meningiomatosis. The targeted NGS strategy is suitable for the identification of NF2 mosaicism in blood and for the investigation of tumors from these patients."	"Pain correlates with germline mutation in schwannomatosis. Schwannomatosis has been linked to germline mutations in the SMARCB1 and LZTR1 genes, and is frequently associated with pain.In a cohort study, we assessed the mutation status of 37 patients with clinically diagnosed schwannomatosis and compared to clinical data, whole body MRI (WBMRI), visual analog pain scale, and Short Form 36 (SF-36) bodily pain subscale.We identified a germline mutation in LZTR1 in 5 patients (13.5%) and SMARCB1 in 15 patients (40.5%), but found no germline mutation in 17 patients (45.9%). Peripheral schwannomas were detected in 3 LZTR1-mutant (60%) and 10 SMARCB1-mutant subjects (66.7%). Among those with peripheral tumors, the median tumor number was 4 in the LZTR1 group (median total body tumor volume 30 cc) and 10 in the SMARCB1 group (median volume 85cc), (P=.2915 for tumor number and P = .2289 for volume). mutation was associated with an increased prevalence of spinal schwannomas (100% vs 41%, P = .0197). The median pain score was 3.9/10 in the LZTR1 group and 0.5/10 in the SMARCB1 group (P = .0414), and SF-36 pain-associated quality of life was significantly worse in the LZTR1 group (P = .0106). Pain scores correlated with total body tumor volume (rho = 0.32471, P = .0499), but not with number of tumors (rho = 0.23065, P = .1696).We found no significant difference in quantitative tumor burden between mutational groups, but spinal schwannomas were more common in LZTR1-mutant patients. Pain was significantly higher in LZTR1-mutant than in SMARCB1-mutant patients, though spinal tumor location did not significantly correlate with pain. This suggests a possible genetic association with schwannomatosis-associated pain."	"A novel pretherapeutic gene expression-based risk score for treatment guidance in gastric cancer. Perioperative chemotherapy is an established treatment of advanced gastric cancer patients. Treatment selection is based on clinical staging (cT). We aimed to establish and validate a prognostic score including clinical and molecular factors, to optimize treatment decisions for these patients. We analyzed 626 carcinomas of the stomach and of the gastro-esophageal junction from two academic centers including primarily resected and pre-/perioperatively treated patients. Patients were divided into a training (N = 269) and validation (N = 357) set. Expression of 11 target genes was measured by quantitative PCR in resected tumors. A risk score to predict overall survival (OS) was generated and validated. Intra-tumoral heterogeneity was assessed by analyzing 50 tumor areas from 10 patients. A risk score including the expression of CCL5, CTNNB1, EXOSC3 and LZTR1 and the clinical parameters cT, tumor localization and histopathologic type suggested two groups with a significant difference in OS [hazard ratio (HR) 0.30; 95% confidence interval (CI) 0.17-0.52]. The risk score was successfully validated in an independent cohort (HR 0.32; 95% CI 0.21-0.51; P &lt; 0.001) as well as in subgroups of primarily resected (HR 0.30; 95% CI 0.17-0.54; P &lt; 0.001) and pre-/perioperatively treated patients (HR 0.37; 95% CI 0.17-0.81; P = 0.009). A significant difference in OS of high- and low-risk patients was also found in primarily resected patients with intestinal (HR 0.45; 95% CI 0.23-0.90; P = 0.020) and nonintestinal-type carcinomas (HR 0.1; 95% CI 0.02-0.42; P &lt; 0.001). Intra-tumor heterogeneity analysis indicated a classification reliability of 95% for a supposed analysis of three biopsies. The identified risk score could substantially contribute to an improved management of gastric cancer patients in the context of perioperative chemotherapy."	"[Application of chromosomal microarray analysis for fetuses with ventricular septal defects]. To explore the genetic etiology of fetuses with ventricular septal defects (VSD) using chromosomal microarray analysis (CMA). A total of 248 fetuses were divided into isolated VSD group, VSD with other cardiac and/or great vessels malformation group, VSD with extra-cardiac anomalies group (including malformation and sonographic soft markers), and VSD with both cardiac and extra-cardiac anomalies group. Standard karyotyping was carried out for all fetuses, and CMA was performed for 6 fetuses with an abnormal karyotype and a proportion of fetuses with a normal karyotype. All cases were followed up, and neonates were followed up until 1 year of age. Chromosomal abnormalities were identified in 60 (24.2%) of the 248 fetuses. For 6 of the fetuses subjected to further CMA analysis, the origin of abnormal chromosomes were clarified, among which 2 have overlapped with the critical region of Wolf-Hirschhorn syndrome. Candidate genes for VSD included WHSC1, LBX1, LDB3 and BBS10. For 143 fetuses with a normal karyotype, CMA has identified pathogenic copy number variations (CNVs) in 11 cases (7.7%). These included 9 well-known microdeletion or microduplication syndromes, including 22q11.2 microdeletion, 17p11.2 microdeletion (Smith-Magenis syndrome), 17p13.3 microdeletion (Miller-Dieker syndrome), 1p36 microdeletion, 1q21.1 microduplication and 4q deletion. Candidate genes for VSD included TBX1, LZTR1, FAT1, AKAP10, SKI, PRDM26, GJA5, ERCC4 and YWHAE. For 48.7% of the fetuses with benign CNVs, spontaneously closure has occurred within the first year of life. CMA may increase the detection rate of submicroscopic imbalances by 7.7%. No significant correlation between different groups of VSD and the pathogenic CNVs was observed. Whole-genome CMA should be recommended to the fetuses with VSD but a normal karyotype. Nearly half of VSDs with benign CNVs may close spontaneously within the first year of life."	"Lymph node metastatic melanoma from ungual melanoma: Identification of somatic mutations in KIT and LZTR1. NA"	"Clinical application of SNP array analysis in fetuses with ventricular septal defects and normal karyotypes. The present study aims to evaluate the utility of high-resolution single-nucleotide polymorphism (SNP) arrays in fetuses with ventricular septal defects (VSDs) with or without other structural anomalies but with normal karyotypes and to investigate the outcomes of cases of prenatal VSDs via clinical follow-up. We analyzed 144 fetuses with VSDs and normal karyotypes using Affymetrix CytoScan HD arrays and the analyses were carried out a year after birth. Clinically significant CNVs were detected in 12 fetuses (8.3%). The most common pathogenic CNV was a 22q11.2 deletion with a detection rate of 2.8% (4/144). Well-known microdeletion or microduplication syndromes, including Smith-Magenis, Miller-Dieker, 9q subtelomeric deletion, 1p36 microdeletion, 1q21.1 microduplication, and terminal 4q deletion syndrome, were identified in six cases. Three regions of chromosomal imbalance were also identified: microduplication at 12q24.32q24.33, microdeletion at 16p13.13p13.12 and microdeletion at Xp21.1. The genes TBX1, SKI, GJA5, EHMT1, NOTCH1 were identified as established genes and LZTR1, PRDM26, YWHAE, FAT1, AKAP10, ERCC4, and ULK1 were identified as potential candidate genes of fetal VSDs. There was no significant difference in pathogenic CNVs between isolated VSDs and VSDs with additional structural abnormalities. Ninety-five (74.8%) pregnant women with fetuses with benign CNVs chose to continue the pregnancy and had a favorable prognosis, while nine (75%) pregnant women with fetuses with pathogenic CNVs chose to terminate the pregnancy. High-resolution SNP arrays are valuable tools for identifying submicroscopic chromosomal abnormalities in the prenatal diagnosis of VSDs. An excellent outcome can be expected for VSD fetuses that are negative for chromosomal anomalies and other severe anatomic abnormalities."	"Association of Genetic Predisposition With Solitary Schwannoma or Meningioma in Children and Young Adults. Meningiomas and schwannomas are usually sporadic, isolated tumors occurring in adults older than 60 years and are rare in children and young adults. Multiple schwannomas and/or meningiomas are more frequently associated with a tumor suppressor syndrome and, accordingly, trigger genetic testing, whereas solitary tumors do not. Nevertheless, apparently sporadic tumors in young patients may herald a genetic syndrome. To determine the frequency of the known heritable meningioma- or schwannoma-predisposing mutations in children and young adults presenting with a solitary meningioma or schwannoma. Using the database of the Manchester Centre for Genomic Medicine, this cohort study analyzed lymphocyte DNA from young individuals prospectively referred to the clinic for genetic testing between January 1, 1990, and December 31, 2016, on presentation with a single meningioma (n = 42) or schwannoma (n = 135) before age 25 years. Sequencing data were also examined from an additional 39 patients with neurofibromatosis type 2 who were retrospectively identified as having a solitary tumor before age 25 years. Patients with schwannoma were screened for NF2, SMARCB1, and LZTR1 gene mutations, while patients with meningioma were screened for NF2, SMARCB1, SMARCE1, and SUFU. The type of underlying genetic mutation, or lack of a predisposing mutation, was associated with the presenting tumor type and subsequent development of additional tumors or other features of known schwannoma- and meningioma-predisposing syndromes. In 2 cohorts of patients who presented with an isolated meningioma (n = 42; median [range] age, 11 [1-24] years; 22 female) or schwannoma (n = 135; median [range] age, 18 [0.2-24] years; 60 female) before age 25 years, 16 of 42 patients (38%) had a predisposing mutation to meningioma and 27 of 135 patients (20%) to schwannoma, respectively. In the solitary meningioma cohort, 34 of 63 patients (54%) had a constitutional mutation in a known meningioma predisposition gene. Twenty-five of 63 patients (40%) had a constitutional NF2 mutation, and 9 (14%) had a constitutional SMARCE1 mutation. In the cohort of those who developed a solitary schwannoma before age 25 years, 44 of 153 patients (29%) had an identifiable genetic predisposition. Twenty-four patients (55%) with a spinal schwannoma had a constitutional mutation, while only 20 (18%) with a cranial schwannoma had a constitutional predisposition (P &lt; .001). Of 109 cranial schwannomas, 106 (97.2%) were vestibular. Four of 106 people (3.8%) with a cranial schwannoma had an LZTR1 mutation (3 were vestibular schwannomas and 1 was a nonvestibular schwannoma), and 9 (8.5%) had an NF2 mutation. A significant proportion of young people with an apparently sporadic solitary meningioma or schwannoma had a causative predisposition mutation. This finding has important clinical implications because of the risk of additional tumors and the possibility of familial disease. Young patients presenting with a solitary meningioma or schwannoma should be referred for genetic testing."	"Molecular autopsy in maternal-fetal medicine. PurposeThe application of genomic sequencing to investigate unexplained death during early human development, a form of lethality likely enriched for severe Mendelian disorders, has been limited.MethodsIn this study, we employed exome sequencing as a molecular autopsy tool in a cohort of 44 families with at least one death or lethal fetal malformation at any stage of in utero development. Where no DNA was available from the fetus, we performed molecular autopsy by proxy, i.e., through parental testing.ResultsPathogenic or likely pathogenic variants were identified in 22 families (50%), and variants of unknown significance were identified in further 15 families (34%). These variants were in genes known to cause embryonic or perinatal lethality (ALPL, GUSB, SLC17A5, MRPS16, THSD1, PIEZO1, and CTSA), genes known to cause Mendelian phenotypes that do not typically include embryonic lethality (INVS, FKTN, MYBPC3, COL11A2, KRIT1, ASCC1, NEB, LZTR1, TTC21B, AGT, KLHL41, GFPT1, and WDR81) and genes with no established links to human disease that we propose as novel candidates supported by embryonic lethality of their orthologs or other lines of evidence (MS4A7, SERPINA11, FCRL4, MYBPHL, PRPF19, VPS13D, KIAA1109, MOCS3, SVOPL, FEN1, HSPB11, KIF19, and EXOC3L2).ConclusionOur results suggest that molecular autopsy in pregnancy losses is a practical and high-yield alternative to traditional autopsy, and an opportunity for bringing precision medicine to the clinical practice of perinatology."	"Unilateral vestibular schwannoma and meningiomas in a patient with PIK3CA-related segmental overgrowth: Co-occurrence of mosaicism for 2 rare disorders. A 28-year-old female with PIK3CA-related segmental overgrowth presented with headaches. She also had a unilateral vestibular schwannoma (VS), as well as 3 small (&lt;2 cm) meningiomas, which according to the Manchester consensus diagnostic criteria for neurofibromatosis 2 (NF2) is sufficient for a clinical diagnosis. Analysis of blood revealed a mosaic PIK3CA c.2740G&gt;A (p.Gly914Arg) mutation, confirming the diagnosis of PIK3CA-related overgrowth, but no mutations in NF2 were detected. Although VS has not previously been reported in PIK3CA-related segmental overgrowth, meningiomas have, raising the question of whether this patient's VS and meningiomas represent coincidental NF2 or phenotypic extension of her overgrowth syndrome. Genetic analysis of the VS revealed a heterozygous NF2 mutation c.784C&gt;T (p.Arg262Ter) and loss of a portion of 22q, including NF2, SMARCB1, and LZTR1 genes. These results suggest that the patient has 2 different mosaic disorders, NF2 and PIK3CA-related overgrowth. The PIK3CA mutation was also present in the VS. Confirmation of the clinical diagnosis of mosaic NF2 in this patient has implications for monitoring and highlights the possibility of co-occurrence of mosaicism for multiple rare disorders in a single patient."	"Revisiting neurofibromatosis type 2 diagnostic criteria to exclude LZTR1-related schwannomatosis. NA"	"Comprehensive and Integrative Genomic Characterization of Hepatocellular Carcinoma. Liver cancer has the second highest worldwide cancer mortality rate and has limited therapeutic options. We analyzed 363 hepatocellular carcinoma (HCC) cases by whole-exome sequencing and DNA copy number analyses, and we analyzed 196 HCC cases by DNA methylation, RNA, miRNA, and proteomic expression also. DNA sequencing and mutation analysis identified significantly mutated genes, including LZTR1, EEF1A1, SF3B1, and SMARCA4. Significant alterations by mutation or downregulation by hypermethylation in genes likely to result in HCC metabolic reprogramming (ALB, APOB, and CPS1) were observed. Integrative molecular HCC subtyping incorporating unsupervised clustering of five data platforms identified three subtypes, one of which was associated with poorer prognosis in three HCC cohorts. Integrated analyses enabled development of a p53 target gene expression signature correlating with poor survival. Potential therapeutic targets for which inhibitors exist include WNT signaling, MDM4, MET, VEGFA, MCL1, IDH1, TERT, and immune checkpoint proteins CTLA-4, PD-1, and PD-L1."	"Cancer and Central Nervous System Tumor Surveillance in Pediatric Neurofibromatosis 2 and Related Disorders. The neurofibromatoses consist of at least three autosomal-dominant inherited disorders: neurofibromatosis type 1 (NF1), neurofibromatosis type 2 (NF2), and schwannomatosis. For over 80 years, these conditions were inextricably tied together under generalized neurofibromatosis. In 1987, the localization of NF1 to chromosome 17q and NF2 (bilateral vestibular schwannoma) to 22q led to a consensus conference at Bethesda, Maryland. The two main neurofibromatoses, NF1 and NF2, were formally separated. More recently, the SMARCB1 and LZTR1 genes on 22q have been confirmed as causing a subset of schwannomatosis. The last 26 years have seen a great improvement in understanding of the clinical and molecular features of these conditions as well as insights into management. Childhood presentation of NF2 (often with meningioma) in particular predicts a severe multitumor disease course. Malignancy is rare in NF2, particularly in childhood; however, there are substantial risks from benign and low-grade central nervous system (CNS) tumors necessitating MRI surveillance to optimize management. At least annual brain MRI, including high-resolution images through the auditory meatus, and a clinical examination and auditory assessment are required from diagnosis or from around 10 to 12 years of age if asymptomatic. Spinal imaging at baseline and every 2 to 3 years is advised with more frequent imaging if warranted on the basis of sites of tumor involvement. The malignancy risk in schwannomatosis is not well defined but may include an increased risk of malignant peripheral nerve sheath tumor in SMARCB1 Imaging protocols are also proposed for SMARCB1 and LZTR1 schwannomatosis and SMARCE1-related meningioma predisposition. Clin Cancer Res; 23(12); e54-e61. ©2017 AACRSee all articles in the online-only CCR Pediatric Oncology Series."	"A mosaic pattern of INI1/SMARCB1 protein expression distinguishes Schwannomatosis and NF2-associated peripheral schwannomas from solitary peripheral schwannomas and NF2-associated vestibular schwannomas. The INI1/SMARCB1 gene protein product has been implicated in the direct pathogenesis of schwannomas from patients with one form of schwannomatosis [SWNTS1; MIM # 162091] showing a mosaic pattern of loss of protein expression by immunohistochemistry [93% in familial vs. 55% in sporadic cases]. To verify whether such INI1/SMARCB1 mosaic pattern could be extended to all schwannomas arising in the sporadic and familial schwannomatoses [i.e. to SMARCB1-related (SWNTS1) or LZTR1-related (SWNTS2) schwannomatosis or to SMARCB1/LZTR1-negative schwannomatosis] and whether it could be involved in classical NF2 or solitary peripheral schwannomas METHODS: We blindly analysed schwannoma samples obtained from a total of 22 patients including (a) 2 patients (2 males; aged 38 and 55 years) affected by non-familial SMARCB1-associated schwannomatosis (SWTNS1); (b) 1 patient (1 female; aged 33 years) affected by familial schwannomatosis (SWTNS1/ SMARCB1 germ line mutations); (c) 5 patients (3 males, 2 females; aged 33 to 35 years) affected by non-familial (sporadic) LZTR1-associated schwannomatosis (SWNTS2); (d) 3 patients (3 males; aged 35 to 47 years) affected by familial schwannomatosis (SWTNS2/ LZTR1 germ line mutations); (e) 2 patients (1 male, 1 female; aged 63 and 49 years, respectively) affected by non-familial schwannomatosis (SWTNS, negative for SMARCB1, LZTR1 and NF2 gene mutations); (f) 4 patients (3 males, 1 females; aged 15 to 24 years) affected by classical NF2 (NF2: harbouring NF2 germ line mutations; and (g) 5 patients (3 males, 2 females; aged 33 to 68 years) who had solitary schwannomas. [follow-up = 15-30 years; negative for constitutional/somatic mutation analysis for the SMARCB1, LZTR1 and NF2 genes] were (blindly) analyzed. The INI1/SMARCB1 immunostaining pattern was regarded as (1) diffuse positive nuclear staining [= retained expression] or (2) mosaic pattern [mixed positive/negative nuclei = loss of expression in a subset of tumour cells]. All solitary peripheral schwannomas and NF2-associated vestibular schwannomas showed diffuse nuclear INI1/SMARCB1 staining in 97-100% of neoplastic cells; schwannomas obtained from all cases of non-familial and familial schwannomatosis and NF2-associated non-vestibular schwannomas showed a mosaic pattern ranging from 10 to 70% of INI1/SMARCB1-positive expression. We did not record a complete lack of nuclear staining. The present data suggests that (a) mosaic loss of immunohistochemical INI1/SMARCB1 expression, despite the interlesional variability, is a reliable marker of schwannomatosis regardless of the involved gene and it might help in the differential diagnosis of schwannomatosis vs. solitary schwannomas and (b) INI1/SMARCB1 expression is not useful in the differential with mosaic NF2, since NF2-associated peripheral schwannomas show the same immunohistochemical pattern."	"Constitutional LZTR1 mutation presenting with a unilateral vestibular schwannoma in a teenager. Schwannomatosis is a rare neurofibromatosis clinically diagnosed by age-dependent criteria, with bilateral vestibular schwannoma and/or a constitutional NF2 mutation representing exclusion criteria. Following SMARCB1 germline mutations, constitutional mutations in LZTR1 were discovered. We report on the molecular investigation in a patient presenting at 14 years with a unilateral vestibular schwannoma, ultimately causing blindness and unilateral hearing loss, in the absence of other schwannomas or a positive family history. In DNA derived from frozen tumor tissue, a comprehensive NF2, SMARCB1 and LZTR1 analysis showed an NF2 truncating mutation c.1006_1021delins16; an LZTR1 mutation c.791+1G&gt;A; and a partial 22q deletion including NF2, SMARCB1 and LZTR1. Sequence analysis on peripheral blood derived DNA showed the LZTR1 mutation to be constitutional, but the NF2 mutation and partial 22q deletion were not found, indicating them to be somatic events. RNA-based targeted analysis confirmed missplicing of LZTR1 intron 8, predicted to result in a premature stop codon. This LZTR1 mutation was paternally inherited. While isolated vestibular schwannoma or NF2 may be considered in a young individual with a unilateral vestibular schwannoma, this report suggests that LZTR1 -related schwannomatosis be added to this differential diagnosis."	"Childhood neurofibromatosis type 2 (NF2) and related disorders: from bench to bedside and biologically targeted therapies. Neurofibromatosis type 2 [NF2; MIM # 101000] is an autosomal dominant disorder characterised by the occurrence of vestibular schwannomas (VSs), schwannomas of other cranial, spinal and cutaneous nerves, cranial and spinal meningiomas and/or other central nervous system (CNS) tumours (e.g., ependymomas, astrocytomas). Additional features include early onset cataracts, optic nerve sheath meningiomas, retinal hamartomas, dermal schwannomas (i.e., NF2-plaques), and (few) café-au-lait spots. Clinically, NF2 children fall into two main groups: (1) congenital NF2 - with bilateral VSs detected as early as the first days to months of life, which can be stable/asymptomatic for one-two decades and suddenly progress; and (2) severe pre-pubertal (Wishart type) NF2- with multiple (and rapidly progressive) CNS tumours other-than-VS, which usually present first, years before VSs [vs. the classical adult (Gardner type) NF2, with bilateral VSs presenting in young adulthood, sometimes as the only disease feature]. Some individuals can develop unilateral VS associated with ipsilateral meningiomas or multiple schwannomas localised to one part of the peripheral nervous system [i.e., mosaic NF2] or multiple non-VS, non-intradermal cranial, spinal and peripheral schwannomas (histologically proven) [schwannomatosis]. NF2 is caused by mutations in the NF2 gene at chromosome 22q12.1, which encodes for a protein called merlin or schwannomin, most similar to the exrin-readixin-moesin (ERM) proteins; mosaicNF2 is due to mosaic phenomena for the NF2 gene, whilst schwannomatosis is caused by coupled germ-line and mosaic mutations either in the SMARCB1 gene [SWNTS1; MIM # 162091] or the LZTR1 gene [SWNTS2; MIM # 615670] both falling within the 22q region and the NF2 gene. Data driven from in vitro and animal studies on the merlin pathway [e.g., post-translational and upstream/downstream regulation] allowed biologically targeted treatment strategies [e.g., Lapatinib, Erlotinib, Bevacizumab] aimed to multiple tumour shrinkage and/or regression and tumour arrest of progression with functional improvement. La neurofibromatosi tipo 2 [NF2] è una malattia genetica a trasmissione autosomica dominante [MIM # 101000]. Clinicamente è caratterizzata da: (1) schwannomi bilaterali del (VIII) nervo acustico/vestibolare; (2) cataratta giovanile o amartomi retinici; (3) schwannomi a carico dei nervi periferici e dei nervi cranici; (4) tumori multipli del sistema nervoso centrale (es., meningiomi, astrocitomi, ependimomi); (5) lesioni cutanee: (a) placche NF2 (schwannomi cutanei); (b) (poche) macchie caffellatte; (6) “malformazioni dello sviluppo corticale cerebrale”. La prevalenza della (forma sintomatica di) NF2 nella popolazione generale è di 1 su 100.000-200.000 individui con un’incidenza di 1 su 33.000 nati. La forma classica a esordio nel giovane adulto è conosciuta come forma di Gardner, (esordio intorno ai 20-30 anni d’età) con manifestazioni legate agli schwannomi bilaterali del nervo acustico/vestibolare (diminuzione/perdita progressiva dell’udito, tinnito, vertigini) e/o più raramente con manifestazioni da (altri) tumori del sistema nervoso centrale e/o periferico. In età pediatrica il fenotipo è diverso (forma di Wishart): per primi compaiono abitualmente i tumori del sistema nervoso centrale in assenza di schwannomi vestibolari; si possono avere macchie caffellatte e placche NF2 e solo dopo anni i tumori del nervo cranico VIII e di altri nervi cranici. Il quadro è più grave. Esiste anche una forma “congenita” ad esordio nei primi giorni/mesi di vita, con schwannomi vestibolari di piccole dimensioni (stabili nel tempo: anche per anni/decenni ma con improvvisa e rapida progressione) e numerose placche NF2; in questa forma le altre manifestazioni (es. meningiomi, altri tumori, altri schwannomi) sono spesso più gravi e progressive delle altre forme. Il gene responsabile della NF2 è localizzato sul cromosoma 22q12.1. Il prodotto genico della NF2 è conosciuto con il nome di schwannomina o merlina [dalla famiglia di proteine 4.1 del tipo moesina-ezrina-radixina/ERM alla quale appartiene il gene della NF2) e ha funzioni di regolazione della crescita e del rimodellamento cellulare (soppressione della crescita cellulare e della tumorigenesi)]. Alcune persone possono presentare tutte le (o parte delle) manifestazioni della NF2 in un emilato o in segmenti corporei circoscritti [NF2 a mosaico]. Altre persone presentano schwannomi (confermati istologicamente) dei nervi periferici (non intradermici) e/o delle radici gangliari in assenza di tumori del nervo vestibolare (o di altri nervi cranici: anche se in alcuni casi vi possono essere anche tumori unilaterali o bilaterali del nervo acustico/vestibolare e/o dei nervi cranici misti) o di altri segni diagnostici per la NF2 [Schwannomatosi, SWNTS]. L’esordio in questa forma è intorno ai 30 anni d’età (sono conosciuti casi in età pediatrica) con tumori in svariate sedi (abitualmente tronco e arti). Si conoscono due forme principali: (1) SWNTS1 [MIM # 162091] causata da alterazioni del gene SMARCB1 [regolatore della cromatina actina-dipendente associato alla matrice e correlato alle proteina SWI/SBF, sub-famiglia B, membro di tipo 1; MIM # 601607], sul cromosoma 22q11.23 (posizione centromerica rispetto al gene della NF2); (2) SWNTS2 [MIM # 615670] causata da alterazioni del gene LZTR1 [regolatore della trascrizione di tipo 1 legato alla Leucina; MIM # 600574], cromosoma 22q11.21 (posizione centromerica rispetto al gene SMARCB1) che codifica per una proteina, membro della super-famiglia BTB-kelch. Il meccanismo molecolare della Schwannomatosi comprende: (1) mutazione germinale del gene SMARCB1 o del gene LZTR1; (2) ampia delezione all’interno del cromosoma 22 (con perdita del gene NF2 e dell’allele intatto SMARCB1 o LZTR1); e (3) mutazione somatica dell’allele intatto del gene NF2 [meccanismo conosciuto come “four hits”: “Quadrupla alterazione” (su entrambi gli alleli dei due geni SWNTS/NF2), con tre passaggi consecutivi]. Negli ultimi anni, accanto alle tradizionali terapie chirurgiche e/o radioterapiche sono stati anche impiegati diversi farmaci “biologici” (es., Lapatinib e Bevacizumab) con effetti di riduzione/arresto della crescita dei tipici tumori NF2."	"Expansion of the RASopathies. The Ras/mitogen activated protein kinase (MAPK) pathway is essential in the regulation of cell cycle, differentiation, growth, cell senescence and apoptosis, all of which are critical to normal development. A class of neurodevelopmental disorders, RASopathies, is caused by germline mutations in genes of the Ras/MAPK pathway. Through the use of whole exome sequencing and targeted sequencing of selected genes in cohorts of panel-negative RASopathy patients, several new genes have been identified. These include: RIT1, SOS2, RASA2, RRAS and SYNGAP1, that likely represent new, albeit rare, causative RASopathy genes. In addition, A2ML1, LZTR1, MYST4, SPRY1 and MAP3K8 may represent new rare genes for RASopathies, but, additional functional studies regarding the mutations are warranted. In addition, recent reports have demonstrated that chromosomal copy number variation in regions encompassing Ras/MAPK pathway genes may be a novel pathogenetic mechanism expanding the RASopathies."	"The molecular pathogenesis of schwannomatosis, a paradigm for the co-involvement of multiple tumour suppressor genes in tumorigenesis. Schwannomatosis is characterized by the predisposition to develop multiple schwannomas and, less commonly, meningiomas. Despite the clinical overlap with neurofibromatosis type 2 (NF2), schwannomatosis is not caused by germline NF2 gene mutations. Instead, germline mutations of either the SMARCB1 or LZTR1 tumour suppressor genes have been identified in 86% of familial and 40% of sporadic schwannomatosis patients. In contrast to patients with rhabdoid tumours, which are due to complete loss-of-function SMARCB1 mutations, individuals with schwannomatosis harbour predominantly hypomorphic SMARCB1 mutations which give rise to the synthesis of mutant proteins with residual function that do not cause rhabdoid tumours. Although biallelic mutations of SMARCB1 or LZTR1 have been detected in the tumours of patients with schwannomatosis, the classical two-hit model of tumorigenesis is insufficient to account for schwannoma growth, since NF2 is also frequently inactivated in these tumours. Consequently, tumorigenesis in schwannomatosis must involve the mutation of at least two different tumour suppressor genes, an occurrence frequently mediated by loss of heterozygosity of large parts of chromosome 22q harbouring not only SMARCB1 and LZTR1 but also NF2. Thus, schwannomatosis is paradigmatic for a tumour predisposition syndrome caused by the concomitant mutational inactivation of two or more tumour suppressor genes. This review provides an overview of current models of tumorigenesis and mutational patterns underlying schwannomatosis that will ultimately help to explain the complex clinical presentation of this rare disease."	"Noonan syndrome-causing genes: Molecular update and an assessment of the mutation rate. Noonan syndrome is a common autosomal dominant disorder characterized by short stature, congenital heart disease and facial dysmorphia with an incidence of 1/1000 to 2500 live births. Up to now, several genes have been proven to be involved in the disturbance of the transduction signal through the RAS-MAP Kinase pathway and the manifestation of Noonan syndrome. The first gene described was PTPN11, followed by SOS1, RAF1, KRAS, BRAF, NRAS, MAP2K1, and RIT1, and recently SOS2, LZTR1, and A2ML1, among others. Progressively, the physiopathology and molecular etiology of most signs of Noonan syndrome have been demonstrated, and inheritance patterns as well as genetic counseling have been established. In this review, we summarize the data concerning clinical features frequently observed in Noonan syndrome, and then, we describe the molecular etiology as well as the physiopathology of most Noonan syndrome-causing genes. In the second part of this review, we assess the mutational rate of Noonan syndrome-causing genes reported up to now in most screening studies. This review should give clinicians as well as geneticists a full view of the molecular aspects of Noonan syndrome and the authentic prevalence of the mutational events of its causing-genes. It will also facilitate laying the groundwork for future molecular diagnosis research, and the development of novel treatment strategies."	"Revisiting neurofibromatosis type 2 diagnostic criteria to exclude LZTR1-related schwannomatosis. To determine the specificity of the current clinical diagnostic criteria for neurofibromatosis type 2 (NF2) relative to the requirement for unilateral vestibular schwannoma (VS) and at least 2 other NF2-related tumors. We interrogated our Manchester NF2 database, which contained 205 individuals meeting NF2 criteria who initially presented with a unilateral VS. Of these, 83 (40.7%) went on to develop a contralateral VS. We concentrated our genetic analysis on a group of 70 who initially fulfilled NF2 criteria with a unilateral vestibular schwannoma and at least 2 additional nonintradermal schwannomas. Overall, 5/70 (7%) individuals with unilateral VS and at least 2 other schwannomas had a pathogenic or likely pathogenic LZTR1 mutation. Twenty of the 70 subsequently developed bilateral disease. Of the remaining 50, 5 (10%) had a germline LZTR1 mutation, equivalent to the number (n = 5) with a germline NF2 mutation. The most common etiology for unilateral VS and 2 additional NF2-associated tumors in this cohort was mosaic NF2. Germline LZTR1 and germline NF2 mutations were equally common in our cohort. This indicates that LZTR1 must be considered when making a diagnosis of NF2 in the presence of unilateral VS in individuals without a germline NF2 mutation."	"Creation of an international registry to support discovery in schwannomatosis. Schwannomatosis is a tumor suppressor syndrome that causes multiple tumors along peripheral nerves. Formal diagnostic criteria were first published in 2005. Variability in clinical presentation and a relative lack of awareness of the syndrome have contributed to difficulty recognizing affected individuals and accurately describing the natural history of the disorder. Many critical questions such as the mutations underlying schwannomatosis, genotype-phenotype correlations, inheritance patterns, pathologic diagnosis of schwannomatosis-associated schwannomas, tumor burden in schwannomatosis, the incidence of malignancy, and the effectiveness of current, or new treatments remain unanswered. A well-curated registry of schwannomatosis patients is needed to facilitate research in field. An international consortium of clinicians and scientists across multiple disciplines with expertise in schwannomatosis was established and charged with the task of designing and populating a schwannomatosis patient registry. The International Schwannomatosis Registry (ISR) was built around key data points that allow confirmation of the diagnosis and identification of potential research subjects to advance research to further the knowledge base for schwannomatosis. A registry with 389 participants enrolled to date has been established. Twenty-three additional subjects are pending review. A formal process has been established for scientific investigators to propose research projects, identify eligible subjects, and seek collaborators from ISR sites. Research collaborations have been created using the information collected by the registry and are currently being conducted. The ISR is a platform from which multiple research endeavors can be launched, facilitating connections between affected individuals interested in participating in research and researchers actively investigating a variety of aspects of schwannomatosis. © 2016 Wiley Periodicals, Inc."	"Multifocal nerve lesions and LZTR1 germline mutations in segmental schwannomatosis. Schwannomatosis is a genetic disorder characterized by the occurrence of multiple peripheral schwannomas. Segmental schwannomatosis is diagnosed when schwannomas are restricted to 1 extremity and is thought to be caused by genetic mosaicism. We studied 5 patients with segmental schwannomatosis through microstructural magnetic resonance neurography and mutation analysis of NF2, SMARCB1, and LZTR1. In 4 of 5 patients, subtle fascicular nerve lesions were detected in clinically unaffected extremities. Two patients exhibited LZTR1 germline mutations. This appears contrary to a simple concept of genetic mosaicism and suggests more complex and heterogeneous mechanisms underlying the phenotype of segmental schwannomatosis than previously thought. Ann Neurol 2016;80:625-628."	"[Pathogenesis and molecular pathology of vestibular schwannoma]. Schwannomas are benign Schwann cell-derived tumors of the peripheral nerve sheath often involving the vestibular cranial nerve (vestibular schwannoma). Histologically, they consist of bipolar spindle cells and show a moderate cellularity. Typically, Antoni A regions with a storiform pattern and loose Antoni B regions are intermingled. Verocay bodies are the pathognomonic palisading structures. Malignant transformation is rare. Merlin (schwannomin), the protein product of NF2, is inactivated by mutations, loss of heterozygosity or methylation. Within neurofibromatosis type 2, a germline mutation is present in about half of cases, whereas tumors demonstrate an additional second hit of the NF2 gene. A loss of chromosome 22 or 22q is common. Merlin links the cell membrane with the cytoskeleton and regulates intracellular signaling pathways leading to dysorganization when merlin is inactivated. Loss of merlin activates Rac1 and Ras, and the PAK1, mTORC1, EGFR-Ras-ERK, PI3K-Akt, WNT and Hippo pathways as well as receptor tyrosine kinases. Furthermore, merlin locates to the nucleus and inhibits E3 ubiquitin ligase CRL4<sup>DCAF1</sup>. Besides biallelic inactivation of NF2 in schwannomas, other genes are involved in the pathogenesis of schwannomatosis-associated schwannomas such as LZTR1, SMARCB1, COQ6 indicating an important role of SWI/SNF chromatin-remodeling complex for schwannoma development. Our own investigations point to deregulation of BAF170, another essential SWI/SNF complex component. Knowledge of mechanisms allows targeted molecular therapy, especially in vestibular schwannomas, using antagonists against mTOR (rapamycin/sirolmus/everolimus), EGFR (lapatinib) or VEGF (bevacizumab), although clinical studies have been in part disappointing so far."	"Unilateral vestibular schwannoma in a patient with schwannomatosis in the absence of LZTR1 mutation. The presence of vestibular schwannomas has long been considered an exclusion criterion for the diagnosis of schwannomatosis. Recently, 2 cases of vestibular schwannoma were reported in patients with schwannomatosis, leading to a revision of the diagnostic criteria for this genetic disorder. Overall, the relative infrequency of vestibular schwannomas in schwannomatosis is unexplained, and the genetics of this uncommon phenomenon have not been described. The authors report on a family with clinical manifestations consistent with schwannomatosis, including 4 affected members, that was identified as having an affected member harboring a unilateral cerebellopontine angle mass with extension into the internal auditory canal. Radiologically, this mass was consistent with a vestibular schwannoma and resulted in a symptomatic change in ipsilateral hearing (word recognition 86% at 52 dB) and increased latency of the wave I-V interval on auditory brainstem response testing. The patient was found to be negative for a germline mutation of NF2 and LZTR1, and her affected mother was found to harbor neither NF2 nor SMARCB1 mutations on genetic testing. Although vestibular schwannomas have been classically considered to not occur in the setting of schwannomatosis, this patient with schwannomatosis and a vestibular schwannoma further confirms that schwannomas can occur on the vestibular nerve in this syndrome. Further, this is the first such case found to be negative for a mutation on the LZTR1 gene."	"Type 1 papillary renal cell carcinoma in a patient with schwannomatosis: Mosaic versus loss of SMARCB1 expression in respectively schwannoma and renal tumor cells. In schwannomatosis, germline SMARCB1 or LZTR1 mutations predispose to the development of multiple benign schwannomas. Besides these, other tumors may occur in schwannomatosis patients. We present a 45-year-old male patient who developed multiple schwannomas and in addition a malignant type 1 papillary renal cell carcinoma (pRCC1). We identified a duplication of exon 7 of SMARCB1 on chromosome 22 in the constitutional DNA of the patient (c.796-2246_986 + 5250dup7686), resulting in the generation of a premature stop codon in the second exon 7 copy (p.Glu330*). The mutant SMARCB1 allele proved to be retained in three schwannomas and in the pRCC1 of the patient. Loss of heterozygosity analysis demonstrated partial loss of the wild-type SMARCB1 allele containing chromosome 22, suggesting loss of that chromosome in only a subset of tumor cells, in all four tumors. Immunohistochemical staining with a SMARCB1 antibody revealed a mosaic SMARCB1 expression pattern in the three benign schwannomas, but absence of expression in the malignant tumor cells of the pRCC1. To our knowledge, this difference in SMARCB1 protein expression has not been reported before. We conclude that a germline SMARCB1 mutation may predispose to the development of pRCC1, thereby further widening the spectrum of tumors that can develop in the context of schwannomatosis."	"Diagnosis, Management, and New Therapeutic Options in Childhood Neurofibromatosis Type 2 and Related Forms. Neurofibromatosis type 2 (NF2; MIM # 101000) is an autosomal dominant disorder characterized by the development of vestibular schwannomas (VSs); schwannomas of other cranial, spinal, and cutaneous nerves; cranial and spinal meningiomas or other central nervous system tumors (eg, ependymomas and astrocytomas) or both. Additional features include eye (eg, early onset cataracts, optic nerve sheath meningiomas, retinal or pigment epithelial hamartomas or both, and epithelial retinal membranes) and skin abnormalities (eg, flat dermal [NF2 plaques] or spherical subcutaneous nodular schwannomas or both, and few, atypical café-au-lait spots). Clinically, children with NF2 fall into 2 main groups: (1) congenital NF2 with bilateral VSs detected as early as the first days to months of life, which can be stable or asymptomatic for 1-2 decades and suddenly progress; and (2) severe prepubertal (Wishart type) NF2 with multiple (and rapidly progressive) central nervous system tumors other-than-VS, which usually presents first, years before VSs, both associated with more marked skin and eye involvement (vs the classical mild adult [Gardner type] NF2, with bilateral VSs presenting in young adulthood, sometimes as the only disease feature). Individuals manifesting unilateral VS associated with ipsilateral meningiomas or multiple schwannomas localized to a part of the peripheral nervous system have mosaic or segmental NF2; individuals developing multiple nonVS, nonintradermal cranial, spinal, and peripheral schwannomas (histologically proven) have schwannomatosis (SWNTS). NF2 is caused by mutations in the NF2 gene at chromosome 22q12.1, which encodes for a protein called merlin or schwannomin, most similar to the exrin-readixin-moesin proteins; mosaic or segmental NF2 is because of mosaic phenomena for the NF2 gene, whereas SWNTS is caused by germline and possibly mosaic mutations either in the SMARCB1 gene (SWNTS1; MIM # 162091) or the LZTR1 gene (SWNTS2; MIM # 615670), both falling within the 22q region. Data driven from in vitro and animal studies on the merlin pathway allowed biologically targeted treatment strategies (employing Lapatinib, Erlotinib, Everolimus, Picropodophyllin, OSU.03012, Imatinib, Sorafenib, and Bevacizumab) aimed at multiple tumor shrinkage or regression or both and tumor arrest of progression with functional improvement. "	"Recent developments in brain tumor predisposing syndromes. The etiologies of brain tumors are in the most cases unknown, but improvements in genetics and DNA screening have helped to identify a wide range of brain tumor predisposition disorders. In this review we are discussing some of the most common predisposition disorders, namely: neurofibromatosis type 1 and 2, schwannomatosis, rhabdoid tumor predisposition disorder, nevoid basal cell carcinoma syndrome (Gorlin), tuberous sclerosis complex, von Hippel-Lindau, Li-Fraumeni and Turcot syndromes. Recent findings from the GLIOGENE collaboration and the newly identified glioma causing gene POT1, will also be discussed. Genetics. We will describe these disorders from a genetic and clinical standpoint, focusing on the difference in clinical symptoms depending on the underlying gene or germline mutation. Central nervous system (CNS) tumors. Most of these disorders predispose the carriers to a wide range of symptoms. Herein, we will focus particularly on tumors affecting the CNS and discuss improvements of targeted therapy for the particular disorders. "	"Recent advances in RASopathies. RASopathies or RAS/mitogen-activated protein kinase (MAPK) syndromes are a group of phenotypically overlapping syndromes caused by germline mutations that encode components of the RAS/MAPK signaling pathway. These disorders include neurofibromatosis type I, Legius syndrome, Noonan syndrome, Noonan syndrome with multiple lentigines (formerly called LEOPARD syndrome), Costello syndrome, cardiofaciocutaneous (CFC) syndrome, Noonan-like syndrome, hereditary gingival fibromatosis and capillary malformation-arteriovenous malformation. Recently, novel gene variants, including RIT1, RRAS, RASA2, A2ML1, SOS2 and LZTR1, have been shown to be associated with RASopathies, further expanding the disease entity. Although further analysis will be needed, these findings will help to better elucidate an understanding of the pathogenesis of these disorders and will aid in the development of potential therapeutic approaches. In this review, we summarize the novel genes that have been reported to be associated with RASopathies and highlight the cardiovascular abnormalities that may arise in affected individuals. "	"Broadening the spectrum of SMARCB1-associated malignant tumors: a case of uterine leiomyosarcoma in a patient with schwannomatosis. Schwannomatosis is a tumor predisposition syndrome characterized by development of multiple intracranial, spinal, and peripheral schwannomas. Constitutional alterations in either SMARCB1 or LZTR1 on 22q are responsible of the phenotype. We describe a 34-year-old woman who developed multiple benign peripheral sheath tumors and a uterine leiomyosarcoma. The patient carried a de novo constitutional alteration in exon 8 of SMARCB1, c.1118G &gt; A, which destroyed the splice donor site of intron 8. Two schwannomas and the leiomyosarcoma of the patient retained the SMARCB1 mutation; in addition, the tumors showed loss of the normal chromosome 22. In conclusion, our findings enlarged the spectrum of SMARCB1-predisposing tumors and demonstrated, for the first time, the association of a malignant smooth muscle tumor to schwannomatosis. Therefore, clinicians should definitely be aware that a constitutional SMARCB1 mutation, which mainly predisposes to benign nerve sheath tumors, may also predispose to aggressive neoplasms throughout life, within an unexpected spectrum. "	"Excess of rare, inherited truncating mutations in autism. To assess the relative impact of inherited and de novo variants on autism risk, we generated a comprehensive set of exonic single-nucleotide variants (SNVs) and copy number variants (CNVs) from 2,377 families with autism. We find that private, inherited truncating SNVs in conserved genes are enriched in probands (odds ratio = 1.14, P = 0.0002) in comparison to unaffected siblings, an effect involving significant maternal transmission bias to sons. We also observe a bias for inherited CNVs, specifically for small (&lt;100 kb), maternally inherited events (P = 0.01) that are enriched in CHD8 target genes (P = 7.4 × 10(-3)). Using a logistic regression model, we show that private truncating SNVs and rare, inherited CNVs are statistically independent risk factors for autism, with odds ratios of 1.11 (P = 0.0002) and 1.23 (P = 0.01), respectively. This analysis identifies a second class of candidate genes (for example, RIMS1, CUL7 and LZTR1) where transmitted mutations may create a sensitized background but are unlikely to be completely penetrant. "	"Rare variants in SOS2 and LZTR1 are associated with Noonan syndrome. Noonan syndrome is an autosomal dominant, multisystemic disorder caused by dysregulation of the RAS/mitogen activated protein kinase (MAPK) pathway. Heterozygous, pathogenic variants in 11 known genes account for approximately 80% of cases. The identification of novel genes associated with Noonan syndrome has become increasingly challenging, since they might be responsible for very small fractions of the cases. A cohort of 50 Brazilian probands negative for pathogenic variants in the known genes associated with Noonan syndrome was tested through whole-exome sequencing along with the relatives in the familial cases. Families from the USA and Poland with mutations in the newly identified genes were included subsequently. We identified rare, segregating or de novo missense variants in SOS2 and LZTR1 in 4% and 8%, respectively, of the 50 Brazilian probands. SOS2 and LZTR1 variants were also found to segregate in one American and one Polish family. Notably, SOS2 variants were identified in patients with marked ectodermal involvement, similar to patients with SOS1 mutations. We identified two novel genes, SOS2 and LZTR1, associated with Noonan syndrome, thereby expanding the molecular spectrum of RASopathies. Mutations in these genes are responsible for approximately 3% of all patients with Noonan syndrome. While SOS2 is a natural candidate, because of its homology with SOS1, the functional role of LZTR1 in the RAS/MAPK pathway is not known, and it could not have been identified without the large pedigrees. Additional functional studies are needed to elucidate the role of LZTR1 in RAS/MAPK signalling and in the pathogenesis of Noonan syndrome."	"Mutations in LZTR1 add to the complex heterogeneity of schwannomatosis. We aimed to determine the proportion of individuals in our schwannomatosis cohort whose disease is associated with an LZTR1 mutation. We used exome sequencing, Sanger sequencing, and copy number analysis to screen 65 unrelated individuals with schwannomatosis who were negative for a germline NF2 or SMARCB1 mutation. We also screened samples from 39 patients with a unilateral vestibular schwannoma (UVS), plus at least one other schwannoma, but who did not have an identifiable germline or mosaic NF2 mutation. We identified germline LZTR1 mutations in 6 of 16 patients (37.5%) with schwannomatosis who had at least one affected relative, 11 of 49 (22%) sporadic patients, and 2 of 39 patients with UVS in our cohort. Three germline mutation-positive patients in total had developed a UVS. Mosaicism was excluded in 3 patients without germline mutation in NF2, SMARCB1, or LZTR1 by mutation screening in 2 tumors from each. Our data confirm the relationship between mutations in LZTR1 and schwannomatosis. They indicate that germline mutations in LZTR1 confer an increased risk of vestibular schwannoma, providing further overlap with NF2, and that further causative genes for schwannomatosis remain to be identified."	"Expanding the mutational spectrum of LZTR1 in schwannomatosis. Schwannomatosis is characterized by the development of multiple non-vestibular, non-intradermal schwannomas. Constitutional inactivating variants in two genes, SMARCB1 and, very recently, LZTR1, have been reported. We performed exome sequencing of 13 schwannomatosis patients from 11 families without SMARCB1 deleterious variants. We identified four individuals with heterozygous loss-of-function variants in LZTR1. Sequencing of the germline of 60 additional patients identified 18 additional heterozygous variants in LZTR1. We identified LZTR1 variants in 43% and 30% of familial (three of the seven families) and sporadic patients, respectively. In addition, we tested LZTR1 protein immunostaining in 22 tumors from nine unrelated patients with and without LZTR1 deleterious variants. Tumors from individuals with LZTR1 variants lost the protein expression in at least a subset of tumor cells, consistent with a tumor suppressor mechanism. In conclusion, our study demonstrates that molecular analysis of LZTR1 may contribute to the molecular characterization of schwannomatosis patients, in addition to NF2 mutational analysis and the detection of chromosome 22 losses in tumor tissue. It will be especially useful in differentiating schwannomatosis from mosaic Neurofibromatosis type 2 (NF2). However, the role of LZTR1 in the pathogenesis of schwannomatosis needs further elucidation. "	"Whole exome sequencing reveals that the majority of schwannomatosis cases remain unexplained after excluding SMARCB1 and LZTR1 germline variants. NA"	"Classic bladder exstrophy: Frequent 22q11.21 duplications and definition of a 414 kb phenocritical region. Classic bladder exstrophy (CBE) is the most common form of the bladder exstrophy and epispadias complex. Previously, we and others have identified four patients with a duplication of 22q11.21 among a total of 96 unrelated CBE patients. Here, we investigated whether this chromosomal aberration was commonly associated with CBE/bladder exstrophy and epispadias complex in an extended case-control sample. Multiplex ligation-dependent probe amplification and microarray-based analysis were used to identify 22q11.21 duplications in 244 unrelated bladder exstrophy and epispadias complex patients (including 217 CBE patients) and 665 healthy controls. New duplications of variable size were identified in four CBE patients and one control. Pooling of our previous and present data (eight duplications in 313 CBE patients) yielded a combined odds ratio of 31.86 (95% confidence interval, 4.24-1407.97). Array-based sequence capture and high-throughput targeted re-sequencing established that all breakpoints resided within the low-copy repeats 22A to 22D. Comparison of the eight duplications revealed a 414 kb phenocritical region harboring 12 validated RefSeq genes. Characterization of these 12 candidate genes through whole-mount in situ hybridization of mouse embryos at embryonic day 9.5 suggested that CRKL, THAP7, and LZTR1 are CBE candidate genes. Our data suggest that duplication of 22q11.21 increases CBE risk and implicate a phenocritical region in disease formation."	"Germline loss-of-function mutations in LZTR1 predispose to an inherited disorder of multiple schwannomas. Constitutional SMARCB1 mutations at 22q11.23 have been found in ∼50% of familial and &lt;10% of sporadic schwannomatosis cases. We sequenced highly conserved regions along 22q from eight individuals with schwannomatosis whose schwannomas involved somatic loss of one copy of 22q, encompassing SMARCB1 and NF2, with a different somatic mutation of the other NF2 allele in every schwannoma but no mutation of the remaining SMARCB1 allele in blood and tumor samples. LZTR1 germline mutations were identified in seven of the eight cases. LZTR1 sequencing in 12 further cases with the same molecular signature identified 9 additional germline mutations. Loss of heterozygosity with retention of an LZTR1 mutation was present in all 25 schwannomas studied. Mutations segregated with disease in all available affected first-degree relatives, although four asymptomatic parents also carried an LZTR1 mutation. Our findings identify LZTR1 as a gene predisposing to an autosomal dominant inherited disorder of multiple schwannomas in ∼80% of 22q-related schwannomatosis cases lacking mutation in SMARCB1. "	"The integrated landscape of driver genomic alterations in glioblastoma. Glioblastoma is one of the most challenging forms of cancer to treat. Here we describe a computational platform that integrates the analysis of copy number variations and somatic mutations and unravels the landscape of in-frame gene fusions in glioblastoma. We found mutations with loss of heterozygosity in LZTR1, encoding an adaptor of CUL3-containing E3 ligase complexes. Mutations and deletions disrupt LZTR1 function, which restrains the self renewal and growth of glioma spheres that retain stem cell features. Loss-of-function mutations in CTNND2 target a neural-specific gene and are associated with the transformation of glioma cells along the very aggressive mesenchymal phenotype. We also report recurrent translocations that fuse the coding sequence of EGFR to several partners, with EGFR-SEPT14 being the most frequent functional gene fusion in human glioblastoma. EGFR-SEPT14 fusions activate STAT3 signaling and confer mitogen independence and sensitivity to EGFR inhibition. These results provide insights into the pathogenesis of glioblastoma and highlight new targets for therapeutic intervention. "	"Role of SNAP29, LZTR1 and P2RXL1 genes on immune regulation in a patient with atypical 0.5 Mb deletion in 22q11.2 region. NA"	"Detecting 22q11.2 deletion in Chinese children with conotruncal heart defects and single nucleotide polymorphisms in the haploid TBX1 locus. Conotruncal heart defects (CTDs) are present in 75-85% of patients suffering from the 22q11.2 deletion syndrome. To date, no consistent phenotype has been consistently correlated with the 22q11.2 deletions. Genetic studies have implicated TBX1 as a critical gene in the pathogenesis of the syndrome. The aim of study was to determine the incidence of the 22q11.2 deletion in Chinese patients with CTDs and the possible mechanism for pathogenesis of CTDs. We enrolled 212 patients with CTDs and 139 unrelated healthy controls. Both karyotypic analysis and multiplex ligation-dependent probe amplification were performed for all CTDs patients. Fluorescence in situ hybridization was performed for the patients with genetic deletions and their relatives. The TBX1 gene was sequenced for all patients and healthy controls. The χ2 and Fisher's exact test were used in the statistical analysis. Thirteen of the 212 patients with CTDs (6.13%) were found to have the 22q11.2 deletion syndrome. Of the 13 cases, 11 presented with a hemizygous interstitial microdeletion from CLTCL1 to LZTR1; one presented with a regional deletion from CLTCL1 to DRCR8; and one presented with a regional deletion from CDC45L to LZTR1. There were eight sequence variants in the haploid TBX1 genes of the del22q11 CTDs patients. The frequency of one single nucleotide polymorphism (SNP) in the del22q11 patients was different from that of the non-del patients (P &lt; 0.05), and the frequencies of two other SNPs were different between the non-del CTDs patients and controls (P &lt; 0.05). CTDs, especially pulmonary atresia with ventricular septal defect and tetralogy of Fallot, are the most common disorders associated with the 22q11.2 deletion syndrome. Those patients with both CTDs and 22q11.2 deletion generally have a typical or atypical deletion region within the TBX1 gene. Our results indicate that TBX1 genetic variants may be associated with CTDs."	"[Diagnosis of 22q11 deletion and duplication in congenital heart disease by multiplex ligation dependent probe amplification]. To investigate the clinical utility of multiplex ligation-dependent probe amplification (MLPA) for detecting 22q11 deletion and duplication in congenital heart disease (CHD) cases and to study the incidence of 22q11 deletion and duplicaton in different kinds of CHD. Forty eight probes of which 25 located in 22q11 low copy number region (LCR 22s A-H), 7 in 22q11 surrounding region (CES, 22q13) and 16 in chromosomes 4, 8, 10 and 17 were selected to detect 22q11 deletion and duplication in 181 preoperative children with CHD and 14 fetuses with serious CHD or CHD with multiple malformations. In these cases, karyotype analysis was also performed. MLPA demonstrated that 7 cases had 22q11 deletion [6 cases from CLTCL1 to LZTR1(LCR A-D) and 1 case from CLTCL1 to PCQAP (LCR A-C)] and that 1 case had 22q11 duplication,spanning from ZNF74 to LZTR1(LCR B-D). The phenotypes of heart defect included ventricular septal defect, atrioventricular septal defect, pulmonary stenosis and tetralogy of Fallot. Karyotype analysis showed that 1 case had 21q deletion [46, XY, 21q], 1 case had mosaic trisomy 8 [47,XY, +8/46, XY(1:2)] and 4 cases had trisomy 21. One of the 4 cases with trisomy 21 had concurrent 22q11 duplication. MLPA is a rapid, sensitive, site specific and relatively inexpensive method for diagnosis of 22q11 deletion and duplication in CHD. 22q11 deletion and duplication may cause various kinds of CHD, suggesting that genetic detection should be performed routinely in CHD patients."	"Incidences of micro-deletion/duplication 22q11.2 detected by multiplex ligation-dependent probe amplification in patients with congenital cardiac disease who are scheduled for cardiac surgery. 22q11.2 microdeletion is the most common microdeletion in the global population. Congenital cardiac disease is the most frequently observed feature of this syndrome. The prognosis of patients with 22q11.2 copy number aberrations varies from those without 22q11.2 deletion or duplication. We enrolled 241 patients from Nanjing Drum Tower Hospital and Nanjing Sick Children's Hospital, 227 being scheduled for cardiac surgery, and 14 cases being fetuses aged from 24 to 36 gestational weeks. We performed karyotypic analysis and multiplex ligation-dependent probe amplification in all cases. Karyotypic analysis demonstrated 3 cases with trisomy 21, and 1 case with mosaic trisomy 8 [47,XY,+8/46,XY(1:2)]. Multiplex ligation-dependent probe amplification analysis revealed 10 cases (4.15%) with changes in the number of copies within the region of 22q11.2, of which 7 cases were hemizygous interstitial microdeletion from CLTCL1 to LZTR1, 1 case with deletion of the region from CLTCL1 to PCQAP, and 2 cases with 22q11.2 duplication, one of which spanned from ZNF74 to LZTR1, and simultaneously showed trisomy 21 by karyotyping analysis, and the other spanned from HIC2 to TOP3B. The phenotypes of the cardiac lesions included 3 cases of ventricular septal defect, 3 of tetralogy of Fallot, 2 of combined ventricular and atrial septal defects, and 2 with pulmonary arterial stenosis. Patients with congenitally malformed hearts who are scheduled for cardiac surgery, as well as fetuses with congenital cardiac disease, should routinely undergo karyotypic analysis and examination for 22q11.2 aberrations. Multiplex ligation-dependent probe amplification has been proven to be a cost-effective diagnostic technique for 22q11 deletion syndrome."	"Down-regulation of tumor suppressor gene FEZ1/LZTS1 in breast carcinoma involves promoter methylation and associates with metastasis. FEZ1/LZTS1 is a tumor suppressor gene located in chromosomal band 8p22, and methylation has been identified as a mechanism for its loss of function in tumors. Chromosomal deletion at 8p22 is also frequent in breast cancer. We therefore examined whether LZTS1 plays a role in breast cancer. We analyzed expression of LZTS1 at both the RNA and protein levels, and promoter methylation in a number of primary tumors and cell lines from breast cancer. We also examined the association between LZTS1 expression and different clinicopathological parameters of breast cancer. We found that the expression of LZTS1 mRNA was reduced in 25 of 50 (50%) primary tumors and 29 of 30 (97%) breast cancer cell lines. Immunohistochemical staining showed that LZTS1 protein was absent or down-regulated in 72 (72%) of 100 primary breast carcinomas. Reduced expression of LZTS1 at either the RNA or protein level was significantly correlated with lymph node metastases (P &lt; 0.05). DNA methylation analysis revealed that the LZTS1 gene was frequently methylated in both cell lines and primary tumors from breast cancer, and the extent of DNA methylation was correlated with reduced expression of the gene. These findings suggest that LZTS1 plays a role in the development and progression of breast cancer at least through promoter methylation-mediated transcriptional downregulation."	"The BTB-kelch protein LZTR-1 is a novel Golgi protein that is degraded upon induction of apoptosis. Members of the BTB-kelch superfamily play important roles during fundamental cellular processes, such as the regulation of cell morphology, migration, and gene expression. The BTB-kelch protein LZTR-1 is deleted in the majority of DiGeorge syndrome patients and is believed to act as a transcriptional regulator. However, functional and expression profiling studies of LZTR-1 have not been performed thus far. Therefore, we examined the subcellular localization and function of LZTR-1 to gain insights into its biological role. Analysis of the primary structure of the protein revealed six N-terminal kelch motifs and two BTB/POZ domains at the C terminus within LZTR-1. Confocal analysis of the subcellular distribution of LZTR-1 using the Golgi markers GM130, Golgin-97, and TGN46 identified a localization of LZTR-1 exclusively on the cytoplasmic surface of the Golgi network that is mediated by its second BTB/POZ domain. In contrast to most other BTB-kelch proteins, LZTR-1 did not co-localize with actin. Treatment with brefeldin A did not lead to redistribution of LZTR-1 to the endoplasmic reticulum but caused its relocalization in dispersed, punctuated structures that were also positive for GM130. These data demonstrate that LZTR-1 is a Golgi matrix-associated protein. Upon induction of apoptosis, LZTR-1 was phosphorylated on tyrosine residues and subsequently degraded; that could be rescued partially by the addition of the caspase inhibitor Z-VAD-fmk and the proteasome inhibitors lactacystin and MG132. Taken together, our experiments identify LZTR-1 as the first BTB-kelch protein that exclusively localizes to the Golgi network, and the binding of LZTR-1 to the Golgi complex is mediated by its second BTB/POZ domain."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NRAS"	"Noonan syndrome"	"Comparison of BRAF Mutation Screening Strategies in a Large Real-Life Series of Advanced Melanoma Patients. Malignant melanoma (MM) is one of the deadliest skin cancers. BRAF mutation status plays a predominant role in the management of MM patients. The aim of this study was to compare BRAF mutational testing performed by conventional nucleotide sequencing approaches with either real-time polymerase chain reaction (rtPCR) or next-generation sequencing (NGS) assays in a real-life, hospital-based series of advanced MM patients. Consecutive patients with AJCC (American Joint Committee on Cancer) stage IIIC and IV MM from Sardinia, Italy, who were referred for molecular testing, were enrolled into the study. Initial screening was performed to assess the mutational status of the BRAF and NRAS genes, using the conventional methodologies recognized by the nationwide guidelines, at the time of the molecular classification, required by clinicians: at the beginning, Sanger-based sequencing (SS) and, after, pyrosequencing. The present study was then focused on BRAF mutation detecting approaches only. BRAF wild-type cases with available tissue and adequate DNA were further tested with rtPCR (Idylla™) and NGS assays. Globally, 319 patients were included in the study; pathogenic BRAF mutations were found in 144 (45.1%) cases examined with initial screening. The rtPCR detected 11 (16.2%) and 3 (4.8%) additional BRAF mutations after SS and pyrosequencing, respectively. NGS detected one additional BRAF-mutated case (2.1%) among 48 wild-type cases previously tested with pyrosequencing and rtPCR. Our study evidenced that rtPCR and NGS were able to detect additional BRAF mutant cases in comparison with conventional sequencing methods; therefore, we argue for the preferential utilization of the aforementioned assays (NGS and rtPCR) in clinical practice, to eradicate false-negative cases and improve the accuracy of BRAF detection."	"Personalized Treatment Selection and Disease Monitoring Using Circulating Tumor DNA Profiling in Real-World Cancer Patient Management. Circulating tumor DNA (ctDNA) in the blood plasma of cancer patients is an emerging biomarker used across oncology, facilitating noninvasive disease monitoring and genetic profiling at various disease milestones. Digital droplet PCR (ddPCR) technologies have demonstrated high sensitivity and specificity for robust ctDNA detection at relatively low costs. Yet, their value for ctDNA-based management of a broad population of cancer patients beyond clinical trials remains elusive. We developed mutation-specific ddPCR assays that were optimized for their use in real-world cancer management, covering 12 genetic aberrations in common cancer genes, such as EGFR, BRAF, KIT, KRAS, and NRAS. We assessed the limit of detection (LOD) and the limit of blank (LOB) for each assay and validated their performance for ctDNA detection using matched tumor sequencing. We applied our custom ddPCR assays to 352 plasma samples from 96 patients with solid tumors. Mutation detection in plasma was highly concordant with tumor sequencing, demonstrating high sensitivity and specificity across all assays. In 20 cases, radiographic cancer progression was mirrored by an increase of ctDNA concentrations or the occurrence of novel mutations in plasma. Moreover, ctDNA profiling at diagnosis and during disease progression reflected personalized treatment selection through the identification of actionable gene targets in 20 cases. Collectively, our work highlights the potential of ctDNA assessment by sensitive ddPCR for accurate disease monitoring, robust identification of resistance mutations, and upfront treatment selection in patients with solid tumors. We envision an increasing future role for ctDNA profiling within personalized cancer management in daily clinical routine."	"Induction of PIK3CA alterations during neoadjuvant letrozole may improve outcome in postmenopausal breast cancer patients. Estrogen receptor positive (ER+) breast cancer constitutes almost 85% of all breast cancer patients and are a genetically highly heterogenic group. Data on the association of somatic alterations to outcome and prognosis are however sparse. In this neoadjuvant endocrine phase II trial including postmenopausal breast cancer patients with ER+, HER2 normal breast cancer, we investigated the rate of pathogenic mutations before and after treatment as well as the association with treatment response and survival. Pretreatment and posttreatment tumour samples from 109 patients treated with neoadjuvant letrozole were collected and analysed with Next Generation Sequencing utilizing a panel of 12 genes (ALK, BRAF, EGFR, ERBB2, ERBB3, ESR1, KIT, KRAS, NRAS, PDGFRA, PIK3CA, and RAF1). Residual disease was assessed by a modified Miller Payne scale and the Residual Cancer Burden index. Survival data were collected prospectively. Among the 109 patients, 52 had at least one pathogenic mutation in the pretreatment sample and 60 in the posttreatment sample. The most frequently mutated gene was PIK3CA, followed by EGFR and KRAS. Twelve different pathogenic PIK3CA mutations were identified, primarily in exon 20 and exon 9. An altered PIK3CA mutation profile from the pre- to the posttreatment specimen was significantly associated to improved pathological outcome. Overall and Disease-Free Survival benefits in PIK3CA mutated patients was observed. Considerable heterogeneity was identified both among patients and between pre- and posttreatment samples. PIK3CA has the potential to be a predictive biomarker. To further assess the implications of a treatment related altered PIK3CA mutation profile, more data are needed."	"Activating KRAS, NRAS, and BRAF mutants enhance proteasome capacity and reduce endoplasmic reticulum stress in multiple myeloma. KRAS, NRAS, and BRAF mutations which activate p44/42 mitogen-activated protein kinase (MAPK) signaling are found in half of myeloma patients and contribute to proteasome inhibitor (PI) resistance, but the underlying mechanisms are not fully understood. We established myeloma cell lines expressing wild-type (WT), constitutively active (CA) (G12V/G13D/Q61H), or dominant-negative (DN) (S17N)-KRAS and -NRAS, or BRAF-V600E. Cells expressing CA mutants showed increased proteasome maturation protein (POMP) and nuclear factor (erythroid-derived 2)-like 2 (NRF2) expression. This correlated with an increase in catalytically active proteasome subunit β (PSMB)-8, PSMB9, and PSMB10, which occurred in an ETS transcription factor-dependent manner. Proteasome chymotrypsin-like, trypsin-like, and caspase-like activities were increased, and this enhanced capacity reduced PI sensitivity, while DN-KRAS and DN-NRAS did the opposite. Pharmacologic RAF or MAPK kinase (MEK) inhibitors decreased proteasome activity, and sensitized myeloma cells to PIs. CA-KRAS, CA-NRAS, and CA-BRAF down-regulated expression of endoplasmic reticulum (ER) stress proteins, and reduced unfolded protein response activation, while DN mutations increased both. Finally, a bortezomib (BTZ)/MEK inhibitor combination showed enhanced activity in vivo specifically in CA-NRAS models. Taken together, the data support the hypothesis that activating MAPK pathway mutations enhance PI resistance by increasing proteasome capacity, and provide a rationale for targeting such patients with PI/RAF or PI/MEK inhibitor combinations. Moreover, they argue these mutations promote myeloma survival by reducing cellular stress, thereby distancing plasma cells from the apoptotic threshold, potentially explaining their high frequency in myeloma."	"Genetic Characterization of Pediatric Sarcomas by Targeted RNA Sequencing. Somatic variants, primarily fusion genes and single nucleotide variants (SNVs) or indels, are prevalent among sarcomas. In many cases, accurate diagnosis of these tumors incorporates genetic findings that may also carry prognostic or therapeutic significance. Using the Anchored Multiplex PCR based FusionPlex system, we developed a custom RNA sequencing panel that simultaneously detects fusion genes, SNVs and indels in 112 genes found to be recurrently mutated in solid tumors. Using this assay, we conducted a retrospective analysis to identify somatic variants that may have assisted with classifying a cohort of 90 previously uncharacterized primarily pediatric sarcoma specimens. In total, somatic variants were identified in 45.5% (41/90) of the samples tested, including 22 cases with fusion genes and 19 cases with SNVs or indels. Additionally, two of these findings represent novel alterations: a WHSC1L1/NCOA2 fusion and a novel in-frame deletion in the NRAS gene (NM_002524: c.174_176delAGC p.Ala59del). These sequencing results, taken in context with the available clinical data, indicate a potential change in the initial diagnosis, prognosis, or management in 27 of the 90 cases. In this study we present a custom RNA sequencing assay that detects fusion genes and SNVs in tandem and has the ability to identify novel fusion partners. These features highlight the advantages associated with utilizing AMP technology for the rapid and highly sensitive detection of somatic variants."	"Malignant struma ovarii: next-generation sequencing of six cases revealed Nras, Braf, and Jak3 mutations. Struma ovarii (SO) is a highly specialized ovarian teratoma, consisting of thyroid tissue. Rarely, carcinomas histologically identical to their thyroid counterparts may occur, and are comprehensively defined as malignant struma ovarii (MSO). Their optimal management is controversial, and the molecular profile of the malignant counterpart in the ovary is incompletely known. In this study, the clinicopathological and molecular features of six MSO from different Italian Institutions were analysed, to explore genetic profiles of potential therapeutic interest. The histopathological features and immunoprofile (according to the known markers Galectin-3, HBME1, cytokeratin 19 and CD56) were reviewed. In addition, all cases underwent genetic analysis with a next-generation sequencing (NGS) hot spot cancer panel detecting mutations in 50 genes involved in cancerogenesis. RET/PTC rearrangements and TERT promoter alterations were also evaluated. Papillary carcinoma in all similar to its thyroid counterpart was found in five of six cases, including classical (two tumors) and follicular variant (three tumors) types. The last case was a poorly differentiated carcinoma. An activating gene mutation, was detected in five of six cases, including two NRAS, two BRAF, and one JAK3 oncogene mutations. No alterations were found in the other panel genes, nor in TERT promoter, or in RET chromosomal regions. MSO is a rare condition. Papillary carcinoma is the predominant malignant type, sharing both histomorphological and molecular features of its thyroid counterpart. Interestingly, the single case of poorly differentiated carcinoma displayed a JAK3 mutation. The presence of such driving mutation could be of potential interest in guiding postoperative treatment."	"Differences in Pathology and Mutation Status Among Colorectal Cancer Patients Younger Than, Older Than, and of Screening Age. Screening protocols for colorectal cancer are broadly recommended and effective in reducing mortality. However, populations from different age groups can harbor distinct pathologic and molecular profiles that can also be influenced by screening and polyp resection, especially in older ages. We retrospectively analyzed tumors from stage IV colorectal cancer patients from a central pathology laboratory in Brazil that is a reference for mutational profiling countrywide. Patients were classified into age groups as follows: prescreening age (PrSA; &lt; 45 years old), screening age (SA; 45-75 years old), and postscreening age (PoSA; &gt; 75 years old). Every tumor was centrally reviewed by the pathologist. Groups were compared regarding clinicopathologic features, and the presence of RAS (renin-angiotensin system) and BRAF (v-Raf murine sarcoma viral oncogene homolog B) mutations. We included 1635 patients (215 PrSA, 1213 SA, 207 PoSA). There was no difference among groups regarding sidedness (P = .65) and KRAS (Kirsten rat sarcoma viral oncogene) mutations (P = .57). Stage IV disease at diagnosis (P = .04), the presence of a signet-ring cell component (P &lt; .001), and poorly differentiated tumors (P = .02) were most common in young patients, while BRAF and NRAS (neuroblastoma RAS viral (v-ras) oncogene homolog) mutations were significantly more common among PoSA patients (P = .002 and .03, respectively). When divided by age decade, KRAS mutations seem to have a stable frequency among all ages, while the BRAF mutation rate increased with increasing age. BRAF mutations are more frequent among PoSA patients, and this seems to be a continuous trend. PrSA and PoSA patients seem to present a distinct profile from SA, including differences in molecular and pathologic aspects. These findings could impact the frequency of screening tests among different age groups."	"Evaluation of two different mutations in codon 12 of NRAS gene in ulcerated penile mucosal nodular malignant melanoma pT4b of the 90-year-old man in perspective of targeted therapy of NRAS mutated advanced melanomas. NA"	"Antitumor Activity of Combination Therapy with Metformin and Trametinib in Non-Small Cell Lung Cancer Cells. Metformin has been widely used as an antidiabetic drug, and reported to inhibit cell proliferation in many cancers including non-small cell lung cancer (NSCLC). In NSCLC cells, metformin suppresses PI3K/AKT/mTOR signaling pathway, but effect of metformin on RAS/ RAF/MEK/ERK signaling pathway is controversial; several studies showed the inhibition of ERK activity, while others demonstrated the activation of ERK in response to metformin exposure. Metformin-induced activation of ERK is therapeutically important, since metformin could enhance cell proliferation through RAS/RAF/MEK/ERK pathway and lead to impairment of its anticancer activity suppressing PI3K/AKT/mTOR pathway, requiring blockade of both signaling pathways for more efficient antitumor effect. The present study tested the combination therapy of metformin and trametinib by monitoring the alterations of regulatory effector proteins of cell signaling pathways and the effect of the combination on cell viability in NCI-H2087 NSCLC cells with NRAS and BRAF mutations. We show that metformin alone blocks PI3K/AKT/mTOR signaling pathway but induces the activation and phosphorylation of ERK. The combination therapy synergistically decreased cell viability in treatment with low doses of two drugs, while it gave antagonistic effect with high doses. These findings suggest that the efficacy of metformin and trametinib combination therapy may depend on the alteration of ERK activity induced by metformin and specific cellular context of cancer cells."	"Cutaneous Melanocytic Tumors With Concomitant NRASQ61R and IDH1R132C Mutations: A Report of 6 Cases. We report a series of 6 melanocytic proliferations harboring both NRAS and IDH1 hotspot mutations. Clinically, there was no specific sex-ratio, ages ranged from 18 to 85 years, and the trunk and limbs were the most affected localizations. In half of the cases, progressive modification of a pre-existing nevus was reported. Morphologically, all tumors were predominantly based in the dermis and the most striking pathologic finding was the presence of a background architecture of congenital-type nevi with a superimposed biphasic pattern formed by dendritic pigmented melanocytes surrounding areas of nevoid melanocytes. This finding was further underscored by HMB45 staining, which was positive in the dendritic cells and negative in the nevoid melanocytes. Four cases displayed increased cellularity and 1 case showed increased dermal mitotic activity. DNA and RNA sequencing revealed NRAS and IDH1 comutations in all 6 cases, with homogenous expression data according to unsupervised clustering analysis. Array-comparative genomic hybridization revealed no copy number alteration for the 2 most cellular and mitogenic cases. All were surgically excised, available follow-up for 2 patients showed no relapse nor metastases. We hypothesize that the IDH1 mutation is a secondary event in a pre-existing NRAS-mutated nevus and could be in part responsible for the emergence of a pigmented dendritic dermal component. So far, such comutations have been reported in one benign melanocytic nevus and several melanomas. This combination could represent a new subgroup of intermediate prognosis (melanocytoma) with a distinctive morphology. Further acquisition of genomic anomalies could progressively lead to malignant transformation."	"Sinonasal Malignant Melanoma. Sinonasal malignant mucosal melanoma (SNMM) is a rare, aggressive, and capricious tumour accounting for 4% of sinonasal malignancies. Recent studies suggest an increasing frequency. There are few large published series, but all authors report poor outcomes irrespective of treatment of approximately 25% 5-year survival. As a consequence, the American Joint Committee on Cancer (AJCC) have restaged all SNMMs as T3 or greater, irrespective of extent. Surgery remains the principle treatment modality. Survival and recurrence data analysis from a single-centre prospective cohort of 125 cases (all treated surgically with or without radiotherapy) showed 5-year overall survival was 28% and disease-free survival was 23.7%. Local control was achieved for a median of 21 months, with a 5-year disease control rate of 27.7%. However, endoscopically resected cases showed a significant overall survival advantage up to 5 years, confirming that endoscopic resection of SNMM does not adversely affect outcome and may even be beneficial up to 5 years. These findings are supported by other recent series in the literature. Radiotherapy did not improve local control or survival in this study, though there is debate in the literature as to its value. Cervical metastases confer a dramatically worse outcome. Chemotherapy has not previously shown much advantage, but more recently immunologic manipulation with drugs such as ipilimumab have shown promise. Thus far, the mutation status does not appear to affect survival outcomes, but NRAS mutations are relatively frequent and could be targeted in this disease by MEK inhibitors in the future."	"Status of 10 targeted genes of non-small cell lung cancer in eastern China: A study of 884 patients based on NGS in a single institution. The status of targeted genes and the association between targeted genes and clinicopathological features in Chinese lung cancer patients remains to be elucidated. The status of 10 targeted genes was evaluated by next-generation sequencing (NGS) in 884 non-small cell lung cancer (NSCLC) patients. The relationship between gene alterations and clinicopathological characters was analyzed. Overall, 684 (77.4%) patients harbored gene alterations, and EGFR (510, 57.7%) was found to be the most common type of mutation followed by KRAS (91, 10.3%), HER2 (38, 4.3%), PIK3CA (32, 3.6%), ALK (21, 2.4%), BRAF (10, 1.1%), ROS1 (5, 0.6%), RET (5, 0.6%), MET (4, 0.5%) and NRAS (1, 0.1%). Gene alterations were more frequent in females, non-smokers and adenocarcinoma (P &lt; 0.001). EGFR mutations were associated with women, non-smokers, normal level of serum tumor markers, and adenocarcinoma (P &lt; 0.001). Patients without lymph node metastasis (P = 0.012), or early stage disease (P &lt; 0.001) exhibited a higher EGFR mutation rate. KRAS mutations tended to arise in men (P &lt; 0.001), smokers (P &lt; 0.001) and patients with higher levels of serum tumor markers (P = 0.048). A mucus-producing component was associated with KRAS (P &lt; 0.001), ROS1 (P = 0.033) and ALK (P &lt; 0.001) alterations. ALK and ROS1 rearrangements were more frequent in micropapillary structures (P = 0.004, P = 0.012). BRAF mutation was associated with advanced disease patients and micropapillary structure (P &lt; 0.001). PIK3CA mutation was more likely to be found in elderly patients (P = 0.014). Some patients had synchronous gene alterations, including EGFR/PIK3CA, EGFR/HER2, HER2/KRAS, EGFR/KRAS, EGFR/ROS1, EGFR/NRAS, KRAS/PIK3CA, KRAS/PIK3CA/HER2. Most patients had at least one genetic alteration, and individual patients harbored synchronous mutation. Each gene alteration had unique clinicopathological characteristics. SIGNIFICANT FINDINGS OF THE STUDY: This study revealed the frequency and distribution of 10 targeted gene abnormalities and their association with clinicopathological parameters of Chinese non-small cell lung cancer (NSCLC) patients in eastern China. Some rare synchronous mutations were detected in our study by next-generation sequencing (NGS)."	"A perspective on the early days of RAS research. The name of the oncogene, ras, has its origin in studies of murine leukemia viruses in the 1960s by Jenny Harvey (H-ras) and by Werner Kirsten (K-ras) which, at high doses, produced sarcomas in rats. Transforming retroviruses were isolated, and its oncogene was named ras after rat sarcoma. From 1979, cellular ras sequences with transforming properties were identified by transfection of tumor DNA initially by Robert Weinberg from rodent tumors, and the isolation of homologous oncogenes from human tumors soon followed, including HRAS and KRAS, and a new member of the family named NRAS. I review these discoveries, placing emphasis on the pioneering research of Christopher Marshall and Alan Hall, who subsequently made immense contributions to our understanding of the functions of RAS and related small GTPases to signal transduction pathways, cell structure, and the behavior of normal and malignant cells."	"Age Does Matter in Adolescents and Young Adults versus Older Adults with Advanced Melanoma; A National Cohort Study Comparing Tumor Characteristics, Treatment Pattern, Toxicity and Response. Cutaneous melanoma is a common type of cancer in Adolescents and Young Adults (AYAs, 15-39 years of age). However, AYAs are underrepresented in clinical trials investigating new therapies and the outcomes from these therapies for AYAs are therefore unclear. Using prospectively collected nation-wide data from the Dutch Melanoma Treatment Registry (DMTR), we compared baseline characteristics, mutational profiles, treatment strategies, grade 3-4 adverse events (AEs), responses and outcomes in AYAs (n = 210) and older adults (n = 3775) who were diagnosed with advanced melanoma between July 2013 and July 2018. Compared to older adults, AYAs were more frequently female (51% versus 40%, p = 0.001), and had a better Eastern Cooperative Oncology Group performance status (ECOG 0 in 54% versus 45%, p = 0.004). BRAF and NRAS mutations were age dependent, with more BRAF V600 mutations in AYAs (68% versus 46%) and more NRAS mutations in older adults (13% versus 21%), p &lt; 0.001. This finding translated in distinct first-line treatment patterns, where AYAs received more initial targeted therapy. Overall, grade 3-4 AE percentages following first-line systemic treatment were similar for AYAs and older adults; anti-PD-1 (7% versus 14%, p = 0.25), anti-CTLA-4 (16% versus 33%, p = 0.12), anti-PD-1 + anti-CTLA-4 (67% versus 56%, p = 0.34) and BRAF/MEK-inhibition (14% versus 23%, p = 0.06). Following anti-CTLA-4 treatment, no AYAs experienced a grade 3-4 colitis, while 17% of the older adults did (p = 0.046). There was no difference in response to treatment between AYAs and older adults. The longer overall survival observed in AYAs (hazard ratio (HR) 0.7; 95% CI 0.6-0.8) was explained by the increased cumulative incidence of non-melanoma related deaths in older adults (sub-distribution HR 2.8; 95% CI 1.5-4.9), calculated by competing risk analysis. The results of our national cohort study show that baseline characteristics and mutational profiles differ between AYAs and older adults with advanced melanoma, leading to different treatment choices made in daily practice. Once treatment is initiated, AYAs and older adults show similar tumor responses and melanoma-specific survival."	"Molecular epidemiology and diagnostics of KRAS mutations in human cancer. RAS mutation is the most frequent oncogenic alteration in human cancers. KRAS is the most frequently mutated followed by NRAS. The emblematic KRAS mutant cancers are pancreatic, colorectal, lung adenocarcinomas and urogenital cancers. KRAS mutation frequencies are relatively stable worldwide in various cancer types with the one exception of lung adenocarcinoma. The frequencies of KRAS variant alleles appears cancer type specific, reflecting the various carcinogenic processes. In addition to point mutation KRAS, allelic imbalances are also frequent in human cancers leading to the predominance of a mutant allele. KRAS mutant cancers are characterized by typical, cancer-type-specific co-occurring mutations and distinct gene expression signatures. The heterogeneity of KRAS mutant primary cancers is significant, affecting the variant allele frequency, which could lead to unpredictable branching development in metastases. Selection of minute mutant subclones in the primary tumors or metastases during target therapies can also occur frequently in lung or colorectal cancers leading to acquired resistance. Ultrahigh sensitivity techniques are now routinely available for diagnostic purposes, but the proper determination of mutant allele frequency of KRAS in the primary or metastatic tissues may have larger clinical significance."	"Identification of key genes for guiding chemotherapeutic management in ovarian cancer using translational bioinformatics. The emergence of resistance to chemotherapy drugs in patients with ovarian cancer is still the main cause of low survival rates. The present study aimed to identify key genes that may provide treatment guidance to reduce the incidence of drug resistance in patients with ovarian cancer. Original data of chemotherapy sensitivity and chemoresistance of ovarian cancer were obtained from the Gene Expression Omnibus dataset GSE73935. Differentially expressed genes (DEGs) between sensitive and resistant ovarian cancer cell lines were screened by Empirical Bayes methods. Overlapping DEGs between four chemoresistant groups were identified by Venn map analysis. Protein-protein interaction networks were also constructed, and hub genes were identified. The hub genes were verified by in vitro experiments as well as The Cancer Genome Atlas data. Results from the present study identified eight important genes that may guide treatment decisions regarding chemotherapy regimens for ovarian cancer, including epidermal growth factor-like repeats and discoidin I-like domains 3, NRAS proto-oncogene, hyaluronan and proteoglycan link protein 1, activated protein C receptor, CD53, cyclin-dependent kinase inhibitor 2A, insulin-like growth factor 1 receptor and roundabout guidance receptor 2 genes. Their expressions were found to have an impact on the prognosis of different treatment groups (cisplatin, paclitaxel, cisplatin + paclitaxel, cisplatin + doxorubicin and cisplatin + topotecan). The results indicated that these genes may minimise the occurrence of ovarian cancer drug resistance and may provide effective treatment options for patients with ovarian cancer."	"Mechanisms Underlying Resistance to FLT3 Inhibitors in Acute Myeloid Leukemia. FLT3-ITD and FLT3-TKD mutations were observed in approximately 20 and 10% of acute myeloid leukemia (AML) cases, respectively. FLT3 inhibitors such as midostaurin, gilteritinib and quizartinib show excellent response rates in patients with FLT3-mutated AML, but its duration of response may not be sufficient yet. The majority of cases gain secondary resistance either by on-target and off-target abnormalities. On-target mutations (i.e., FLT3-TKD) such as D835Y keep the TK domain in its active form, abrogating pharmacodynamics of type II FLT3 inhibitors (e.g., midostaurin and quizartinib). Second generation type I inhibitors such as gilteritinib are consistently active against FLT3-TKD as well as FLT3-ITD. However, a &quot;gatekeeper&quot; mutation F691L shows universal resistance to all currently available FLT3 inhibitors. Off-target abnormalities are consisted with a variety of somatic mutations such as NRAS, AXL and PIM1 that bypass or reinforce FLT3 signaling. Off-target mutations can occur just in the primary FLT3-mutated clone or be gained by the evolution of other clones. A small number of cases show primary resistance by an FL-dependent, FGF2-dependent, and stromal CYP3A4-mediated manner. To overcome these mechanisms, the development of novel agents such as covalently-coupling FLT3 inhibitor FF-10101 and the investigation of combination therapy with different class agents are now ongoing. Along with novel agents, gene sequencing may improve clinical approaches by detecting additional targetable mutations and determining individual patterns of clonal evolution."	"RAS/MAPK Pathway Driver Alterations Are Significantly Associated with Oncogenic KIT Mutations in Germ-cell Tumors. To report the mutational profile and clinical outcomes of a cohort of patients with KIT-mutant germ-cell tumors (GCTs). Retrospective cohort study of all patients with KIT-mutant GCTs sequenced at Memorial Sloan Kettering between March 2014 and March 2020. Tumors were assessed with MSK-IMPACT, a DNA next-generation sequencing assay for targeted sequencing of up to 468 key cancer genes. Among 568 patients with GCTs, 8.1% had somatic KIT mutations, including 28 seminomas and 18 mixed/NSGCTs. Exons 17 (67.3%), 11 (22.4%), and 13 (6.1%) were most commonly affected. KIT-mutant cases were enriched for oncogenic RAS/MAPK pathway alterations compared to KIT-wildtype cases (34.8% vs. 19.2%, p = 0.02). Among KIT-mutant cases, concurrent mutations were noted in KRAS (21.7%), RRAS2 (11.8%), CBL (6.5%), NRAS (4.3%), MAP2K1 (2.2%), and RAC1 (2.2%). Mutations in KRAS, RRAS2, and NRAS were mutually exclusive. In all, 73.9% of patients developed metastases and 95.7% received chemotherapy. No patients received KIT-directed TKIs. Classification as a NSGCT rather than a SGCT was associated with an increased risk of death (HR 9.1, 95% CI 1.1-78.4, p = 0.04) while the presence of a concurrent RAS/MAPK pathway alteration was not (HR 0.8, 95% CI 0.1-4.3, p = 0.76). Mitogenic driver alterations can co-occur with activating KIT mutations, which may explain the lack of efficacy of TKIs in prior trials. Novel KIT-directed TKIs that target exon 17 mutations may benefit chemotherapy-refractory patients with KIT-mutant GCTs without RAS/MAPK alterations. Dual MEK/KIT inhibitor therapy in KIT-mutant GCTs with concurrent RAS/MAPK alterations could also be a plausible therapeutic strategy."	"Mutational Portrait of Lung Adenocarcinoma in Brazilian Patients: Past, Present, and Future of Molecular Profiling in the Clinic. Objectives: Approximately 60% of lung adenocarcinomas (LAs) carry mutations that can guide treatment with tyrosine-kinase inhibitors (TKI) and other targeted therapies. Data on activating mutations in EGFR and other tyrosine-kinase receptor (TKR) genes in highly admixed populations, such as that of Brazil, are scarce. In this study, we comprehensively analyzed the actionable alteration profile of LA in Brazilian patients. Materials and Methods:EGFR driver mutation data were collected from a large Brazilian LA cohort covering an 8-year period of molecular testing in a single institution. Tests were performed using three distinct methods, and demographic and histopathological data were analyzed. For a subset of patients, driver mutations in KRAS, NRAS, and BRAF and gene fusions involving TKR genes (before TKI treatment) and EGFR T790M (after TKI treatment) were assessed. Results:EGFR mutations were detected in 25% of 1,316 LAs evaluated, with exon 19 deletions and exon 21 L858R TKI sensitizing mutations representing 72.5% of all mutations. Mutation rates were higher in women and non-smokers (p &lt; 0.001). Next-generation sequencing was very sensitive, with a lower rate of inconclusive results compared with Sanger sequencing and pyrosequencing. EGFR/RAS/BRAF hotspot gene panels were applied in 495 LA cases and detected oncogenic mutations in 51.3% of samples, most frequently in EGFR (22.4%) and KRAS (26.9%). In subgroups of 36 and 35 patients, gene fusions were detected in 11.1% of tumors and EGFR T790M resistance mutations were detected in 59% of plasma samples from patients previously treated with TKI, respectively. Conclusion: This report provides the first comprehensive actionable alteration portrait of LA in Brazil. The high rate of actionable alterations in EGFR and other driver genes in LA reinforces the need to incorporate TKI guided by molecular diagnostics into clinical routines for patients in both public and private healthcare systems."	"Clinical complete regression after local radiotherapy combined with chemotherapy for stage IV rectal cancer: A case report. Colorectal cancer is the fourth most common type of cancer worldwide with about 0.8 million new cases annually. Improving patient survival remains a challenge for clinicians. Observation waiting method provides improved quality of life compared with direct surgery. This case report suggested that colorectal cancer patients could choose active observation waiting method for treatment. A 59-year-old male patient, with rectal bleeding and an Eastern Cooperative Oncology Group (ECOG) performance status score of 0, was admitted to the hospital due to increased fecal blood volume. The electronic colonoscopy revealed multiple polyps in colon and rectum, whereas the pathological biopsy indicated poorly differentiated rectal adenocarcinoma. The clinical stage was defined as T3N2M1a according to the TNM classification of the American Joint Committee on Cancer (AJCC) staging manual (version 8). In addition, positron emission tomography/computed tomography (PET/CT) examination showed non-regional lymph node metastasis (subclavian). Subsequently, the expression of PD-L1 (-), NRAS (-), KRAS (-), HRAS (-), BRAF (-) (-, negative) and the microsatellite stability (MSS) were detected in the rectal cancer lesion using molecular pathological examination. Patients with primary rectal cancer and pelvic lymph node metastasis were treated with three-dimensional conformal radiotherapy (3D-CRT; dose, 60 Gy/30 Fr) and XELOX chemotherapy (200 mg oxaliplatin at day 1 plus 1.5 g capecitabine twice a day from day 1-14 for a total of 5 cycles). PET/CT scan revealed that the metabolism levels of the lesion returned to normal. In addition, the routine re-examination showed progressive improvement of tumor lesions. Until recently, the carcinoembryonic antigen (CEA) level of the male patient has been within normal range. The observation waiting method rather than the direct sequential surgical resection of the primary lesion in patients with advanced rectal cancer who achieved complete clinical remission (CCR) may provide a novel treatment method for rectal cancer. Thus, overall survival (OS) and quality of survival (QoS) differences between the two strategies need to be further verified by multicenter clinical trials."	"Study of Ras Mutations' Prognostic Value in Metastatic Colorectal Cancer: STORIA Analysis. Colorectal cancer (CRC) is the second most common cause of cancer-specific death in both sexes in Western countries. KRAS mutations occur in about 50% of metastatic CRCs (mCRCs). The prognostic value of specific KRAS mutations still remains unexplored and unclear. Two hundred and forty KRAS wild-type and 206 KRAS/NRAS mutant consecutive unresectable mCRC patients with PS Eastern Cooperative Oncology Group (ECOG) 0 or 1, aged &lt; 80 years, and with a life expectancy &gt;3 months entered into this study. DNA was extracted from paraffin-embedded formalin-fixed tumour tissues, and it was sequenced with the Oncomine Solid Tumour DNA kit (Thermo Fisher Scientific, Waltham, MA, USA). Data were analysed using the Torrent Suite Software v5.0 (Thermo Fisher Scientific). The primary outcome was the analysis of the prognostic role of different KRAS mutations in terms of overall survival (OS). There were no significant differences among the most prevalent mutations (p.G12D, p.G12V, p.G13D, p.G12A, p.G12C, and p.G12S) in terms of age (&lt;65 vs. ≥65 years), gender (male vs. female), grading (G1/G2 vs. G3), side of primary tumour (left vs. right), pT, and pN. At the median follow-up of 25.6 months, there were 77 deaths in KRAS-mutated patients and 94 in wild-type patients. Three homogeneous prognostic groups were identified: wild-type patients (group A, median survival: 27.5 months), p.G13D/p.G12A/p.G12V/p.G12D mutants (group B, median survival: 17.3 months), and p.G12C/p.G12S mutants (group C, median survival: 5.0 months, p &lt; 0.0001 according to Log Rank test). Upon multivariate analysis, metastatic involvement and p.G12C/p.G12S KRAS mutation group C (vs. other mutations) emerged as independent prognostic variables for survival. We show that mutant KRAS is a negative prognostic factor and that p.G12C/p.G12S variants present the worst clinical courses. This information suggests a clear difference among KRAS mutations, and it will be useful to test potentiated and/or innovative therapeutic strategies in p.G12C/p.G12S metastatic CRC patients."	"Circular RNA hsa_circ_0000073 contributes to osteosarcoma cell proliferation, migration, invasion and methotrexate resistance by sponging miR-145-5p and miR-151-3p and upregulating NRAS. An increasing number of studies have demonstrated that circular RNAs (circRNAs), as promising therapeutic targets, are essential for diverse human diseases, especially cancer. However, the potential functions and complex mechanisms of most circRNAs in osteosarcoma (OS) are still not fully elucidated. In the present study, we obtained the expression profile of circRNAs from a GEO database (GSE96964) and identified hsa_circ_0000073 as a highly expressed candidate in OS. Overexpression of hsa_circ_0000073 accelerated the proliferation, migration, invasion and MTX resistance of OS cells, and knockdown of hsa_circ_0000073 resulted in the opposite effects. Mechanistically, hsa_circ_0000073 upregulated NRAS expression by targeting miR-145-5p and miR-151-3p in OS cells. In addition, the promotion of OS progression by hsa_circ_000007 was blocked by miR-145-5p and miR-151-3p-mediated NRAS inhibition. In conclusion, hsa_circ_0000073 facilitated the proliferation, migration, invasion and MTX resistance of OS cells through the inhibition of miR-145-5p and miR-151-3p-mediated downregulation of NRAS."	"Analysis of multigene detection in patients with advanced lung adenocarcinoma using cytological specimens. To investigate the mutation status and clinical characteristics of multigene detection in advanced lung adenocarcinoma using cytological specimens. 137 advanced lung adenocarcinoma patients with 10 driver genes detection in the Fourth Hospital Hebei Medical University from January 2019 to November 2019 was analysized. 137 cytological specimens including fine-needle aspiration specimens and maligant serous cavity effusion (pleural effusion, peritoneal and pericardial effusion). Ten driver mutations of EGFR, ALK, ROS1, BRAF, KRAS, NRAS, HER2, RET, PIK3CA and MET were detected by the amplification refractory mutation system (ARMS). Meanwhile, 90 of 137 patients were detected with biopsies for parallel gene detection. 78.10 % (107/137) of patients with advanced lung adenocarcinoma harbored at least one of 10 driver mutations. The three main mutations were EGFR (69.16 %, 74/137), ALK (6.57 %, 9/137)and ROS1 (3.65 %, 5/137) mutations. Besides, we found 6 cases including two concomitant mutations: EGFR Exon19 del/HER2 (1/137), EGFR Exon21 L858R/PIK3CA (2/137), EGFR Exon21 L858R/RET (1/137), and ALK/KRAS (2/137). Among 137 patients, women aged 64 or older were more likely to have the mutations (P &lt; 0.05). Female patients (P = 0.003) older or equal to 64 years (P = 0.015) with non-smoking habbit (P = 0.027) were more detected with EGFR mutations, while ALK was more detectable in patients yonger than 64 years. Parallel analysis showed that rates of single EGFR, ALK, ROS1, RET, KRAS, NRAS, HER2, MET mutations and concomitant different mutations were not significantly different between cytological specimens and matched histological specimens. In the study, cytological specimens and biopsy samples have a very high coincidence rate of gene detection. EGFR, ALK and ROS1 mutations were the main driver mutations in patients with advanced lung adenocarcinoma.We speculate that EGFR and ALK are more prone to concomitant mutations respectively and the treatment of advanced lung adenocarcinoma patients with concomitant mutations deserves further study. The rate of KRAS, NRAS, BRAF, PIK3CA, RET and MET exon14 skipping mutation were low but may had a significant impact on the targeted therapy of patients with advanced lung adenocarcinoma."	"NRAS Mutation Detected in a Melanoma With Chondroid Stroma: A Case Report With Molecular Evaluation and Literature Review of a Rare Form of Melanoma. Melanoma with cartilaginous differentiation is a rare histologic subtype that has been reported in the literature. It often presents clinically different than conventional melanomas and can be diagnostically challenging. Molecular alterations in previously reported cases have not been published. We present a case of melanoma with chondroid stroma from a 70-year-old man that was found to contain an NRAS mutation (c.182A&gt;G (p.Q61R)) via Illumina TruSight Tumor 15 (TST15) next generation sequencing assay."	"Novel LRRFIP2-RAF1 Fusion Identified in an Acral Melanoma: A Review of the Literature on Melanocytic Proliferations with RAF1 fusions and the Potential Therapeutic Implications. A small subset of cutaneous melanomas harbor oncogenic gene fusions, which could potentially serve as therapeutic targets for patients with advanced disease as novel therapies are developed. Fusions involving RAF1 are exceedingly rare in melanocytic neoplasms, occurring in less than 1% of melanomas, and usually arise in tumors that are wild type for BRAF, NRAS, and NF1. We describe herein a case of acral melanoma with two satellite metastases and sentinel lymph node involvement. The melanoma had a concomitant KIT variant and LRRFIP2-RAF1 fusion. This constellation of molecular findings has not been reported previously in melanoma. We review the existing literature on melanocytic neoplasms with RAF1 fusions and discuss the potential clinical implications of this genetic event. This article is protected by copyright. All rights reserved."	"Systems analysis of protein signatures predicting Cetuximab responses in KRAS, NRAS, BRAF and PIK3CA wild-type patient-derived xenografts models of metastatic colorectal cancer. Antibodies targeting the human epidermal growth factor receptor (EGFR) are used for the treatment of RAS wild-type metastatic colorectal cancer. A significant proportion of patients remains unresponsive to this therapy. Here, we performed a reverse phase protein array-based (phospho)protein analysis of 63 KRAS, NRAS, BRAF and PIK3CA wild-type metastatic CRC tumours. Responses of tumours to anti-EGFR therapy with cetuximab were recorded in patient-derived xenograft (PDX) models. Unsupervised hierarchical clustering of pre-treatment tumour tissue identified three clusters, of which cluster C3 was exclusively composed of responders. Clusters C1 and C2 showed mixed responses. None of the three protein clusters showed a significant correlation with transcriptome-based subtypes. Analysis of protein signatures across all PDXs identified 14 markers that discriminated cetuximab-sensitive and -resistant tumours: PDK1 (S241), Caspase-8, Shc (Y317), Stat3 (Y705), p27, GSK-3β (S9), HER3, PKC-α (S657), EGFR (Y1068), Akt (S473), S6 Ribosomal Protein (S240/244), HER3 (Y1289), NF-κB-p65 (S536) and Gab-1 (Y627). Least absolute shrinkage and selection operator and binominal logistic regression analysis delivered refined protein signatures for predicting response to cetuximab. (Phospo-)protein analysis of matched pre- and post-treated models furthermore showed significant reduction of Gab-1 (Y627) and GSK-3β (S9) exclusively in responding models, suggesting novel targets for treatment. This article is protected by copyright. All rights reserved."	"Mutational spectrum and prognosis in NRAS-mutated acute myeloid leukemia. The mutational spectrum and prognostic factors of NRAS-mutated (NRAS<sup>mut</sup>) acute myeloid leukemia (AML) are largely unknown. We performed next-generation sequencing (NGS) in 1,149 cases of de novo AML and discovered 152 NRAS<sup>mut</sup> AML (13%). Of the 152 NRAS<sup>mut</sup> AML, 89% had at least one companion mutated gene. DNA methylation-related genes confer up to 62% incidence. TET2 had the highest mutation frequency (51%), followed by ASXL1 (17%), NPM1 (14%), CEBPA (13%), DNMT3A (13%), FLT3-ITD (11%), KIT (11%), IDH2 (9%), RUNX1 (8%), U2AF1 (7%) and SF3B1(5%). Multivariate analysis suggested that age ≥ 60 years and mutations in U2AF1 were independent factors related to failure to achieve complete remission after induction therapy. Age ≥ 60 years, non-M3 types and U2AF1 mutations were independent prognostic factors for poor overall survival. Age ≥ 60 years, non-M3 types and higher risk group were independent prognostic factors for poor event-free survival (EFS) while allogenic hematopoietic stem cell transplantation was an independent prognostic factor for good EFS. Our study provided new insights into the mutational spectrum and prognostic factors of NRAS<sup>mut</sup> AML."	"Role of lncRNA Morrbid in PTPN11(Shp2)E76K-driven juvenile myelomonocytic leukemia. Mutations in PTPN11, which encodes the protein tyrosine phosphatase SHP2, contribute to ∼35% of cases of juvenile myelomonocytic leukemia (JMML). A common clinical picture in children with JMML is that it presents as a constitutive hyperinflammatory syndrome, partially reminiscent of chronic myelomonocytic leukemia in adults. Thus, a component of JMML is associated with a hyperinflammatory state and abundant innate immune cells such as neutrophils and monocytes. Recently, we showed that the evolutionarily conserved mouse lncRNA Morrbid is specifically expressed in myeloid cells and uniquely represses the expression of the proapoptotic gene Bim to regulate the lifespan of myeloid cells. However, its role in JMML has not been investigated. In this study, we characterized the role of Morrbid and its target Bim, which are significantly dysregulated in Shp2E76K/+-bearing myeloid cells, in driving JMML. Loss of Morrbid in a mouse model of JMML driven by the Shp2E76K/+ mutation resulted in a significant correction of myeloid and erythroid cell abnormalities associated with JMML, including overall survival. Consistently, patients with JMML who had PTPN11, KRAS, and NRAS mutations and high expression of MORRBID manifested poor overall survival. Our results suggest that Morrbid contributes to JMML pathogenesis."	"Molecular Basis of ETV6-Mediated Predisposition to Childhood Acute Lymphoblastic Leukemia. There is growing evidence supporting an inherited basis for susceptibility to acute lymphoblastic leukemia (ALL) in children. In particular, we and others reported recurrent germline ETV6 variants linked to ALL risk, which collectively represent a novel leukemia predisposition syndrome. To understand the influence of ETV6 variation on ALL pathogenesis, we comprehensively characterized a cohort of 32 childhood leukemia cases arising from this rare syndrome. Of 34 nonsynonymous germline ETV6 variants in ALL, we identified 22 variants with impaired transcription repressor activity, loss of DNA binding, and altered nuclear localization. Missense variants retained dimerization with WT ETV6 with potentially dominate negative effects. Whole transcriptome and whole genome sequencing of this cohort of leukemia cases revealed a profound influence of germline ETV6 variants on leukemia transcriptional landscape, with distinct ALL subsets invoking unique patterns of somatic cooperating mutations. 70% of ALL cases with damaging germline ETV6 variants exhibited hyperdiploid karyotype with characteristic recurrent mutations in NRAS, KRAS, and PTPN11. In contrast, the remaining 30% cases had a diploid leukemia genome and an exceedingly high frequency of somatic copy number loss of PAX5 and ETV6, with a gene expression pattern that strikingly mirrored that of ALL with somatic ETV6-RUNX1 fusion. Two ETV6 germline variants gave rise to both AML and ALL, with lineage-specific genetic lesions in the leukemia genomes. ETV6 variants compromise its tumor suppressor activity in vitro with specific molecular targets identified by ATAC-seq profiling. ETV6-mediated ALL predisposition exemplifies the intricate interactions between inherited and acquired genomic variations in leukemia pathogenesis."	"Congenital melanocytic nevi. To update pediatric providers on new developments in our understanding of the clinical presentation, genetics, and systemic risks associated with congenital melanocytic nevi (CMN). CMN are primarily caused by sporadic postzygotic somatic mutations, most frequently in NRAS, and studies of the genetic underpinnings of CMN have demonstrated a diverse array of genetic drivers. The primary complications of large and giant CMN include neurocutaneous melanocytosis and malignant melanoma. Abnormalities in CNS MRI may predict a worse clinical course for patients and increased risk of melanoma. Targeted therapies of the MEK pathway have begun to be studied for the treatment of CMN and prevention of associated complications. Patients with large and giant CMN should be managed by an interdisciplinary care team for the monitoring of dermatologic, neurologic, and psychosocial concerns. Ongoing research is underway to better characterize the genetic drivers of CMN and to better guide development of targeted therapeutics."	"Genome-Wide Somatic Alterations in Multiple Myeloma Reveal a Superior Outcome Group. Multiple myeloma (MM) is accompanied by heterogeneous somatic alterations. The overall goal of this study was to describe the genomic landscape of myeloma using deep whole-genome sequencing (WGS) and develop a model that identifies patients with long survival. We analyzed deep WGS data from 183 newly diagnosed patients with MM treated with lenalidomide, bortezomib, and dexamethasone (RVD) alone or RVD + autologous stem cell transplant (ASCT) in the IFM/DFCI 2009 study (ClinicalTrials.gov identifier: NCT01191060). We integrated genomic markers with clinical data. We report significant variability in mutational load and processes within MM subgroups. The timeline of observed activation of mutational processes provides the basis for 2 distinct models of acquisition of mutational changes detected at the time of diagnosis of myeloma. Virtually all MM subgroups have activated DNA repair-associated signature as a prominent late mutational process, whereas APOBEC signature targeting C&gt;G is activated in the intermediate phase of disease progression in high-risk MM. Importantly, we identify a genomically defined MM subgroup (17% of newly diagnosed patients) with low DNA damage (low genomic scar score with chromosome 9 gain) and a superior outcome (100% overall survival at 69 months), which was validated in a large independent cohort. This subgroup allowed us to distinguish patients with low- and high-risk hyperdiploid MM and identify patients with prolongation of progression-free survival. Genomic characteristics of this subgroup included lower mutational load with significant contribution from age-related mutations as well as frequent NRAS mutation. Surprisingly, their overall survival was independent of International Staging System and minimal residual disease status. This is a comprehensive study identifying genomic markers of a good-risk group with prolonged survival. Identification of this patient subgroup will affect future therapeutic algorithms and research planning."	"[A prognostic nomogram for metastasized colorectal cancer patients treated with cetuximab]. Objective: To identify the prognostic factors in metastatic colorectal cancer (mCRC) patients treated with cetuximab and establish a prognostic nomogram and validate its accuracy. Methods: A retrospective case-control study was conducted. Patients were selected as following criteria: patients with metastatic colorectal cancer(mCRC), which primary site confirmed by pathology and metastatic lesions confirmed by CT or MRI with at least one measurable and evaluable target lesion; patients' expected survival longer than 3 months; Eastern Cooperative Oncology Group (ECOG) score between 0 to 2; patients have signed informed consent; both KRAS and NRAS genes were wild-type; and at least 2 cycles of cetuximab combined with chemotherapy as the first-line regimen. Patients who met the following criteria were excluded: patients with incomplete clinicopathological and follow-up data; patients with severe diseases of vital organs such as heart, brain, lung, kidney, or other advanced malignant tumors; patients without informed consent. According to the above criteria, clinicopathological data of 95 patients with mCRC admitted in the Department of Medical Oncology, the Second Affiliated Hospital, Zhejiang University School of Medicine for first-line treatment with cetuximab from January 2010 to January 2017 were analyzed retrospectively. The Cox proportional hazards model was used to analyze the clinicopathological factors to determine the independent prognostic factors for progression-free survival(PFS). The R software was adopted to establish a prognostic nomogram model. Then, the nomograms of 6-month, 12-month and 18-month progression-free survivals (PFS) were drawn, and compared with the reality. The internal validation and accuracy of the nomogram were determined by the Bootstrap method and also the calculated concordance index (C-index). Results: The median follow-up time was 16.5 (2-43) months and the median PFS was 8.5 months. PFS at 6-,12- and 18-month was 73.7%, 35.8%, and 17.9%, respectively. ECOG score of 1-2 (HR=5.733, 95% CI:2.408-13.649, P&lt;0.001), primary tumor was located in the ileocecal region (HR=5.880, 95% CI:1.645-21.023, P=0.006), Ki-67 index ≥45% (HR=3.574,95% CI:1.403-9.108,P=0.008), baseline D-dimer level ≥345 mg/L (HR=2.536,95% CI:1.531-7.396, P=0.012), NLR≥2.8 (HR=5.573,95% CI:2.107-14.740,P=0.001) and the combined treatment for FOLFOX (HR=0.465, 95% CI: 0.265-0.817, P=0.008) were independent risk factors for PFS of mCRC patients (all P&lt;0.05). These independent risk factors were taken into account to construct a nomogram prediction model. The bootstrap method was used to perform internal validation, and the C-index of the nomogram prediction model in this study was 0.67 (95% CI: 0.64~0.71). The 6-, 12- and 18-month PFS predicted by the nomogram were consistent with the actual values. Conclusion: The nomogram model constructed by ECOG score, primary tumor site, Ki-67 index, baseline D-dimer level, baseline NLR and chemotherapy regimen may predict the prognosis of mCRC patients treated with cetuximab more accurately and individually, which can assist clinicians in making treatment decisions. 目的: 建立西妥昔单抗治疗转移性结直肠癌(mCRC)患者的预后列线图预测模型并进行验证。 方法: 采用回顾性病例对照研究方法。患者入选标准:病理证实为结直肠腺癌,通过CT或MRI检查证实存在转移灶,且有至少一处可测量评价的靶病灶的病例;预计生存期≥3个月;美国东部肿瘤协助组(ECOG)评分0~2分;签署知情同意书;KRAS和NRAS基因检测均为野生型,均接受至少2个周期的西妥昔单抗联合化疗,且该治疗方案作为一线方案。排除标准:临床病理学及随访资料不完整者,合并心、脑、肺、肾等重要器官严重疾病或合并其他晚期恶性肿瘤者以及未签署知情同意者。根据以上标准,回顾性收集2010年1月至2017年1月期间,浙江大学医学院附属第二医院肿瘤内科收治的接受西妥昔单抗一线治疗的95例mCRC患者的临床及病理学资料。应用Cox回归模型对可能影响无复发生存率(PFS)的临床病理学因素进行单因素及多因素分析,确定独立预后因素;应用R软件建立列线图预测模型,绘制校准曲线并与实际观察情况比较。用Bootstrap法进行内部验证,计算一致性指数(C-index)评估模型准确性。 结果: 全组中位随访16.5(2~43)个月,中位PFS为8.5个月,6个月、12个月及18个月PFS分别为73.7%、35.8%和17.9%。ECOG评分1~2分(HR=5.733,95% CI:2.408~13.649,P&lt;0.001)、肿瘤原发部位为回盲部(HR=5.880,95% CI:1.645~21.023,P=0.006)、Ki-67指数≥45%(HR=3.574,95% CI:1.403~9.108,P=0.008)、基线D-二聚体水平≥345 mg/L(HR=2.536,95% CI:1.531~7.396,P=0.012)以及中性粒细胞淋巴细胞比值(NLR)≥2.8(HR=5.573,95% CI:2.107~14.740,P=0.001)是影响本组mCRC患者PFS的独立危险因素,联合治疗方案为FOLFOX(HR=0.465,95% CI:0.265~0.817,P=0.008)是影响本组mCRC患者PFS的独立保护性因素(均P&lt;0.05)。将以上影响本组mCRC患者PFS的独立因素,构建列线图预测模型。使用bootstrap方法执行内部验证,本研究列线图预测模型的一致性指数(C-index)为0.67(95% CI:0.64~0.71)。校正曲线表明预测的6个月、12个月及18个月PFS率与实际观察情况符合。 结论: 将ECOG评分、肿瘤原发部位、Ki-67指数、基线D-二聚体水平、基线NLR以及化疗方案构建的列线图模型,可较准确个体化地预测西妥昔单抗治疗mCRC患者的预后,可以辅助临床医生进行治疗决策。."	"Association of RAS Mutation Location and Oncologic Outcomes After Resection of Colorectal Liver Metastases. RAS mutations are prognostic for patients with metastatic colorectal cancer (mCRC). We investigated clinical, pathologic, and survival differences based on RAS exon for patients with colorectal liver metastases (CRLM). This retrospective, single-center study included patients with R0/R1 resection of CRLM from 1992 to 2016. Patients with unresected extrahepatic disease or liver-first resection were excluded. Overall survival (OS) and recurrence-free survival were assessed and stratified by mutation status and location. Fisher's exact test, Wilcoxon rank-sum test, and log-rank test were used, where appropriate. A total of 938 mCRC patients were identified with median age of 57 (range 19-91). Of the 445 patients with KRAS mutations, 407 (91%) had a mutation in exon 2, 14 (3%) exon 3, and 24 (5%) exon 4. Median OS was 71.4 months (95% confidence interval [CI] 66.1-76.5). Patients with KRAS mutations had worse OS compared with KRAS wild-type patients (median 55.5 vs. 91.3 months, p &lt; 0.001). While there was no significant difference in OS based on the exon mutated (p = 0.12), 5-year OS was higher for patients with exon 4 mutations [68.8% (95% CI 0.45-0.84)] compared with those with mutations in exon 2 [45.7% (95% CI 0.40-0.51)] or exon 3 [39.1% (95% CI: 0.11-0.68)]. Patients with NRAS mutant tumors also had worse OS compared with NRAS wild-type patients (median 50.9 vs. 73.3 months, p = 0.03). NRAS and KRAS exon 3/4 mutations are present in a minority of mCRC patients. Patients with exon 4 mutant tumors may have a more favorable prognosis, although the difference in oncologic outcomes based on mutated exon appears to be smaller than previously reported."	"Co-occurrence of cohesin complex and Ras signaling mutations during progression from myelodysplastic syndromes to secondary acute myeloid leukemia. Myelodysplastic syndromes (MDS) are hematological disorders at high risk of progression to secondary acute myeloid leukemia (sAML). However, the mutational dynamics and clonal evolution underlying disease progression are poorly understood at present. To elucidate the mutational dynamics of pathways and genes occurring during the evolution to sAML, next generation sequencing was performed on 84 serially paired samples of MDS patients who developed sAML (discovery cohort) and 14 paired samples from MDS patients who did not progress to sAML during follow-up (control cohort). Results were validated in an independent series of 388 MDS patients (validation cohort). We used an integrative analysis to identify how mutations, alone or in combination, contribute to leukemic transformation. The study showed that MDS progression to sAML is characterized by greater genomic instability and the presence of several types of mutational dynamics, highlighting increasing (STAG2) and newly-acquired (NRAS and FLT3) mutations. Moreover, we observed cooperation between genes involved in the cohesin and Ras pathways in 15-20% of MDS patients who evolved to sAML, as well as a high proportion of newly acquired or increasing mutations in the chromatin-modifier genes in MDS patients receiving a disease-modifying therapy before their progression to sAML."	"Anti-EGFR therapy in metastatic colorectal cancer: mechanisms and potential regimens of drug resistance. Cetuximab and panitumumab, as the highly effective antibodies targeting epidermal growth factor receptor (EGFR), have clinical activity in the patients with metastatic colorectal cancer (mCRC). These agents have good curative efficacy, but drug resistance also exists at the same time. The effects of KRAS, NRAS, and BRAF mutations and HER2 amplification on the treatment of refractory mCRC have been elucidated and the corresponding countermeasures have been put forward. However, the changes in EGFR and its ligands, the mutations or amplifications of PIK3CA, PTEN, TP53, MET, HER3, IRS2, FGFR1, and MAP2K1, the overexpression of insulin growth factor-1, the low expression of Bcl-2-interacting mediator of cell death, mismatch repair-deficient, and epigenetic instability may also lead to drug resistance in mCRC. Although the emergence of drug resistance has genetic or epigenetic heterogeneity, most of these molecular changes relating to it are focused on the key signaling pathways, such as the RAS/RAF/mitogen-activated protein kinase or phosphatidylinositol 3-kinase/Akt/mammalian target of the rapamycin pathway. Accordingly, numerous efforts to target these signaling pathways and develop the novel therapeutic regimens have been carried out. Herein, we have reviewed the underlying mechanisms of the resistance to anti-EGFR therapy and the possible implications in clinical practice."	"Circulating Tumour DNA Is an Independent Prognostic Biomarker for Survival in Metastatic BRAF or NRAS-Mutated Melanoma Patients. Circulating tumour DNA (ctDNA) can be used to identify gene alterations. The purpose of this study was to determine whether the detection of ctDNA, based on the identification of BRAF and NRAS mutations before systemic treatment initiation, was associated with the prognosis of metastatic melanoma. In total, 68 BRAF or NRAS-mutated stage IV or unresectable stage III metastatic cutaneous melanoma patients were included and tested for the presence of BRAF and NRAS mutations in circulating DNA before treatment initiation, using the Cobas BRAF/NRAS Mutation Test (Roche). The expected mutation was detected in the plasma of 34/68 patients (50% sensitivity). ctDNA detection was associated with AJCC stage, along with the number and nature of metastases. ctDNA was less frequently detected in NRAS-mutated than in BRAF-mutated melanoma (36% and 66%, respectively). At initiation of first-line treatment, ctDNA detection was associated with poor prognosis in Progression Free Survival (PFS) and Overall Survival (OS) in univariate analysis (log-rank: p = 0.002 and p &lt; 0.0001, respectively). In multivariate analysis, ctDNA detection was an independent factor of poor prognosis in OS, after adjustment for AJCC stage, number and nature of metastases and gender (HR = 4.384; 95% CI: (1.308; 14.699); p = 0.017)."	"Activation of CD8+ T cells contributes to anti-tumor effects of CDK4/6 inhibitors plus MEK inhibitors. Concurrent MEK and CDK4/6 inhibition shows promise in clinical trials for patients with advanced-stage mutant BRAF/NRAS solid tumors. The effects of CDK4/6 inhibitor (CDK4/6i) in combination with BRAF/MEK targeting agents on the tumor immune microenvironment are unclear, especially in melanoma for which immune checkpoint inhibitors are effective in ~50% of patients. Here, we show that patients progressing on the CDK4/6i/MEK pathway inhibitor combinations showed T cell exclusion. Furthermore, we found that MEK and CDK4/6 targeting was more effective at delaying re-growth of mutant BRAF melanoma in immune-competent versus immune-deficient mice. While MEK inhibitor (MEKi) treatment increased tumor immunogenicity and intra-tumoral recruitment of CD8+ T cells, the main effect of CDK4/6i alone and in combination with MEKi was increased expression of CD137L, a T-cell co-stimulatory molecule on immune cells. Depletion of CD8+ T cells or blockade of the CD137 ligand-receptor interaction reduced time to re-growth of melanomas on CDK4/6i plus MEKi treatment in vivo. Together, our data outline an anti-tumor immune-based mechanism underscoring the efficacy of MEK pathway plus CDK4/6 targeting."	"Defective migration and dysmorphology of neutrophil granulocytes in atypical chronic myeloid leukemia treated with ruxolitinib. The identification of pathologically altered neutrophil granulocyte migration patterns bears strong potential for surveillance and prognostic scoring of diseases. We recently identified a strong correlation between impaired neutrophil motility and the disease stage of myelodysplastic syndrome (MDS). Here, we apply this assay to study quantitively increased neutrophils of a patient suffering from a rare leukemia subtype, atypical chronic myeloid leukemia (aCML). A 69-year-old male was analyzed in this study. Besides routine analyses, we purified the patient's neutrophils from peripheral whole blood and studied their migration behavior using time-lapse video microscopy in a standardized assay. These live cell migration analyses also allowed for the quantification of cell morphology. Furthermore, the cells were stained for the markers CD15, CD16, fMLPR, CXCR1 and CXCR2. Despite cytoreductive therapy with hydroxyurea, the patient's WBC and ANC were poorly controlled and severe dysgranulopoiesis with hypogranularity was observed. Neutrophils displayed strongly impaired migration when compared to healthy controls and migrating cells exhibited a more flattened-out morphology than control neutrophils. Because of a detected CSF3R (p.T618I) mutation and constitutional symptoms treatment with ruxolitinib was initiated. Within 1 week of ruxolitinib treatment, the cell shape normalized and remained indistinguishable from healthy control neutrophils. However, neutrophil migration did not improve over the course of ruxolitinib therapy but was strikingly altered shortly before a sinusitis with fever and bleeding from a gastric ulcer. Molecular work-up revealed that under ruxolitinib treatment, the CSF3R clone was depleted, yet the expansion of a NRAS mutated subclone was promoted. These results demonstrate the usefulness of neutrophil migration analyses to uncover corresponding alterations of neutrophil migration in rare myeloid neoplasms. Furthermore, in addition to monitoring migration the determination of morphological features of live neutrophils might represent a useful tool to monitor the effectiveness of therapeutic approaches."	"NTRK gene fusions in melanoma: detection, prevalence and potential therapeutic implications. Fusions involving neurotrophic tyrosine receptor kinase (NTRK) are known drivers of oncogenesis and also occur in melanoma, although very rarely. A particularly high incidence of NTRK gene fusions is reported in infantile fibrosarcoma (&gt; 90 %) or the secretory type of breast cancer (&gt; 90 %). Recently, larotrectinib (a tropomyosin receptor kinase [TRK] inhibitor) was approved, and we wondered whether TRK inhibitors might also be helpful for melanoma patients. We therefore screened the literature and obtained relevant results. NTRK fusions are relatively common in spitzoid melanoma, with a prevalence of 21-29 % compared to &lt; 1 % in cutaneous or mucosal melanoma and 2.5 % in acral melanoma. It appears that fusion proteins are mutually exclusive for most common oncogenic drivers such as BRAF or NRAS. A further indicator of an increased probability of detecting NTRK-positive tumors could be a low mutation load. Since TRK inhibitors are already available for patients with NTRK fusions, the challenge will be to implement screening for NTRK gene fusions in clinical practice. A possible approach could be to screen BRAF, NRAS and KIT wild-type melanoma patients with next-generation sequencing as soon as they need systemic treatment or at the latest when they have no tumor control on checkpoint inhibitors."	"[Application and clinical study of clonal heterogeneity analysis in acute myeloid leukemia]. Objective: This study aimed to explore the characteristics and clinical value of clonal heterogeneity in acute myeloid leukemia (AML) . Method: A high-throughput sequencing was carried out to detect 68 related genes in 465 AML patients. Clonal heterogeneity was analyzed based on variant allele frequency (VAF) and flow cytometry results combined with clinical data. Results: Gene mutations were discovered in 338 (81.4%) newly diagnosed patients, and 2 or more clones were significantly increased in patients with DNMT3A, NRAS, and RUNX1 mutations (DNMT3A, χ(2)=15.23; P&lt;0.001; NRAS, χ(2)=19.866; P&lt;0.001; RUNX1, χ(2)=23.647; P&lt;0.001) . The number of clones significantly differed between groups at different ages (χ(2)=17.505, P=0.022) . The proportion of carrying 2 and ≥3 clones increased in patients aged more than 60 years old. There was a significant difference in the clonal heterogeneity between newly diagnosed patients and relapsed or secondary patients (χ(2)=11.302, P=0.010) . Moreover, the proportion of patients with clonal heterogeneity gradually increased according to their prognostic risk (χ(2)=17.505, P=0.022) . Based on the clone analysis, the proportion of primary clones of patients with RUNX1 mutation was higher (χ(2)=4.527, P=0.033) . The analysis of clonal heterogeneity and efficacy demonstrated that patients with three or more clones had significantly lower overall survival (OS) and progression-free survival (PFS) compared to other patients (OS, χ(2)=13.533; P=0.004; PFS, χ(2)=9.817; P=0.020) , while in the intermediate-risk group, patients with a significant clonal heterogeneity also exhibited a significant decrease in PFS (χ(2)=10.883, P=0.012) . Cox regression multivariate analysis revealed that carrying three or more clones was an independent factor affecting prognosis, and OS and PFS were significantly lower than those of patients without clones (OS, HR=3.296; 95% CI, 1.568-6.932; P=0.002; PFS, HR=3.241; 95% CI, 1.411-7.440; P=0.006) . Conclusion: Clonal heterogeneity may reflect the biological characteristics of a tumor, suggesting its drug resistance, refractory, and invasiveness, and further evaluate the treatment effect and prognosis of patients. 目的: 探讨急性髓系白血病(AML)的克隆异质性特征及其临床价值。 方法: 采用高通量测序技术靶向检测2016年1月至2019年6月河南省肿瘤医院收治的465例AML患者的68种相关基因,将检出的基因突变位点根据变异等位基因频率(VAF)及同期流式细胞学结果进行克隆异质性分析,并分析其与预后的关系。 结果: 338例(81.4%)初诊患者检出基因突变,其中携带DNMT3A、NRAS和RUNX1突变患者出现2个及以上克隆比例显著增加(DNMT3A:χ(2)=15.231, P&lt;0.001;NRAS:χ(2)=19.866, P&lt;0.001;RUNX1:χ(2)=23.647, P&lt;0.001)。不同年龄组间克隆数差异有统计学意义(χ(2)=17.505, P=0.022),其中&gt;60岁患者携带2个和≥3个克隆的比例增加。初诊患者与复发或继发AML患者间克隆分布差异具有统计学意义(χ(2)=11.302, P=0.010),且患者多克隆的比例随预后危险度增加而逐渐增加(χ(2)=17.505, P=0.022)。而主克隆分析中,RUNX1突变标志的主克隆比例较高(χ(2)=4.527, P=0.033)。克隆异质性与疗效相关分析显示,携带3个及以上克隆患者的总生存(OS)期和无进展生存(PFS)期均远低于其他患者(OS:χ(2)=13.533,P=0.004;PFS:χ(2)=9.817,P=0.020),而在中危组患者中,克隆数目多的患者其PFS期显著缩短(χ(2)=10.883,P=0.012)。Cox回归多因素分析显示,携带3个及以上克隆为影响预后的独立危险因素,其OS期和PFS期显著短于无克隆患者(OS:HR=3.296,95%CI 1.568~6.932,P=0.002;PFS:HR=3.241,95%CI 1.411~7.440,P=0.006)。 结论: 克隆异质性可反映肿瘤的生物学特性,提示其耐药性、难治性及侵袭性,可进一步用来评估疗效和AML中危组患者的预后。."	"Cost-effectiveness Analysis of Non-risk-adapted Active Surveillance for Postorchiectomy Management of Clinical Stage I Seminoma. Cancer-specific survival for men with clinical stage I (CSI) seminoma approaches 100%, regardless of the management approach chosen after orchiectomy. Given the young age and high survival rate of these patients, there has been a shift toward minimizing treatment-related morbidity and cost. In this context, non-risk-adapted active surveillance (NRAS) has emerged as a desirable management strategy. To evaluate the clinical, quality of life, and economic values of postorchiectomy NRAS for CSI seminoma. We developed a decision analytic Markov model to estimate the costs and health outcomes of competing postorchiectomy management strategies for otherwise healthy 30-yr-old men with CSI seminoma. Real-world current practice, comprising active surveillance and adjuvant therapies (reference arm), was compared with empiric adjuvant radiotherapy (option 1), empiric adjuvant chemotherapy (option 2), risk-adapted active surveillance (RAAS; option 3), and NRAS (option 4). Quality-adjusted life-years (QALYs), medical costs, incremental cost-effectiveness ratio, mortality, and unnecessary treatment avoidance were estimated over a 10-yr period. Uncertainties in model input values were accounted for using univariate, scenario, and probabilistic sensitivity analyses. NRAS dominated all other management options, offering the lowest per-patient health care cost ($3839) and the highest QALYs gained (7.74) over 10 yr. On probabilistic sensitivity analysis, NRAS had the highest chance of being most cost effective. Although NRAS resulted in the highest rate of salvage chemotherapy (20% vs 6% radiotherapy, 6% chemotherapy, 15% current practice, and 16% RAAS), it had the same mortality rate compared to current practice (2.5%). NRAS also allowed 80% of patients to avoid unnecessary treatment compared with 46% for current practice and 52% for RAAS. Study limitations included model simplifications, model parameter assumptions, as well as the absence of patient preference as a decision factor. NRAS maintains high cure rates for CSI seminoma, minimizes unnecessary treatment, and is cost effective compared with other management strategies. Clinical stage I (CSI) seminoma is one of the most common forms of testicular cancer. Surgery is the first step in the treatment of men with this disease, and some men may receive additional treatment with radiation or chemotherapy afterward. As most men are cured with surgery alone, non-risk-adapted active surveillance (NRAS), which involves routine monitoring with imaging and blood tests for disease recurrence after surgery, has become a desirable treatment option. Our study shows that in addition to maintaining high survival rates and avoiding unnecessary radiation and chemotherapy, NRAS is cost effective for the health care system."	"Ultrasensitive Multiplex Detection of Single Nucleotide Polymorphisms Based on Short-Chain Hybridization Combined with Online Preconcentration of Capillary Electrophoresis. Reliable multiple single nucleotide polymorphisms (SNPs) detection at low abundance is of great significance for disease diagnosis and biomedical research. Herein, we have developed a novel and simple method for multiple SNPs detection combining solid-phase capture by specific hybridization with online preconcentration of capillary gel electrophoresis-laser-induced fluorescence (CGE-LIF). The method presents an excellent performance due to its favorable traits: the solid-phase short-chain hybridization ensures the high specificity of SNP detection; the effective separation ability of CGE can easily achieve multiplex detection; the simple online preconcentration significantly improves the detection sensitivity of fluorescent probe by nearly 100-fold. For a single SNP target, the assay achieves a limit of detection as low as 0.01-0.02% for three different NRAS mutations in the same codon. For multiple SNP targets, as low as 0.05% abundance can be easily realized. Our method is simple, efficient, ultrasensitive, and universal for multiple SNPs detection without complex enzymatic or chemical ligation reaction, which shows great potential in early clinical diagnosis."	"Expression of NrasQ61R and MYC transgene in germinal center B cells induces a highly malignant multiple myeloma in mice. NRAS Q61 mutations are prevalent in advanced/relapsed multiple myeloma (MM) and correlate with poor patient outcomes. Thus, we generated a novel MM model by conditionally activating expression of endogenous NrasQ61R and a MYC transgene in germinal center B cells (VQ mice). VQ mice developed a highly malignant MM characterized by high proliferation index, hyperactivation of ERK and AKT signaling, impaired hematopoiesis, widespread extramedullary disease, bone lesions, kidney abnormalities, preserved PD1 and TIGIT immune checkpoint pathways, and expression of human high-risk MM gene signatures. VQ MM mice recapitulate most of the biological and clinical features of human advanced/high-risk MM. These MM phenotypes are serially transplantable in syngeneic recipients. Two MM cell lines were also derived to facilitate future genetic manipulations. Combination therapies based on MEK inhibition significantly prolonged the survival of VQ mice with advanced stage MM. Our study provides a strong rationale to develop MEK inhibition-based therapies for treating advanced/relapsed MM."	"Mutation profile of primary subungual melanomas in Caucasians. Specific genomic profile of cutaneous melanomas is related to UVR exposure, which exerts biological and therapeutic impact. Subungual melanoma (SUM) is an exceedingly rare disease; therefore, it is not well characterized. SUM pathogenesis is not related to UVR induced DNA damage and expected to differ from other melanoma subtypes. Our study aimed to define the mutation profile of SUM in Caucasians. Next-generation sequencing-based genomic analysis was used to identify frequently mutated loci in 50 cancer-related genes in 31 SUM primary tumors. The most abundant mutations in SUM were found in KIT - in 13% of cases and NRAS - also in 13%, while BRAF - only in 3% of cases. Our findings confirmed a high frequency of KIT and NRAS mutations in SUM, as well as a low incidence of BRAF mutations. We reported novel KRAS, CTNNB1, TP53, ERBB2, and SMAD4 mutations in SUM. Our findings provide new insights into the molecular pathogenesis of SUM."	"Comprehensive molecular profiling of intrahepatic cholangiocarcinoma in the Chinese population and therapeutic experience. The genomic alterations of intrahepatic cholangiocarcinoma (ICC) in the Chinese population have not been fully revealed. Molecular profiling may provide a reference for clinical management, especially targeted therapy. A retrospective study was conducted in 122 ICC patients. All patients' samples underwent next-generation sequencing (NGS), which analyzed 417 genes. The genetic characteristics, clinical management and therapeutic responses were analyzed. The most commonly mutated genes were TP53 (34%), KRAS (25%) and ARID1A (17%). Targeted agents were used referring to molecular profiling, in combination with chemotherapy. Twenty-two patients with wild-type KRAS/NRAS/BRAF were treated with cetuximab. The disease control and response rates were 78% and 47%, respectively, which were higher than those achieved with chemotherapy alone (72% and 11%, P = 0.16). Fifty-four patients underwent anti-VEGF treatment with bevacizumab. The disease control and response rates were 85% and 60%, respectively. Better therapeutic efficiency (P = 0.001) and longer progression-free survival (PFS) were observed in the bevacizumab-treated group compared to chemotherapy alone group (15.4 and 6.7 months, respectively; P = 0.04). The PFS of ten patients who underwent hepatectomy after combined treatment with chemotherapy and bevacizumab was longer than that of 139 patients who underwent surgical treatment (28.9 vs 18.0 months, P = 0.03). Two patients (1.6%) had signatures of microsatellite instability (MSI-H), and both benefited from immunotherapy. This study provides an overview of genetic alterations in Chinese ICC patients and indicates the potential clinical implications for NGS-based personalized therapies."	"KRAS, NRAS, and BRAF mutation prevalence, clinicopathological association, and their application in a predictive model in Mexican patients with metastatic colorectal cancer: A retrospective cohort study. Mutations in KRAS, NRAS, and BRAF (RAS/BRAF) genes are the main predictive biomarkers for the response to anti-EGFR monoclonal antibodies (MAbs) targeted therapy in metastatic colorectal cancer (mCRC). This retrospective study aimed to report the mutational status prevalence of these genes, explore their possible associations with clinicopathological features, and build and validate a predictive model. To achieve these objectives, 500 mCRC Mexican patients were screened for clinically relevant mutations in RAS/BRAF genes. Fifty-two percent of these specimens harbored clinically relevant mutations in at least one screened gene. Among these, 86% had a mutation in KRAS, 7% in NRAS, 6% in BRAF, and 2% in both NRAS and BRAF. Only tumor location in the proximal colon exhibited a significant correlation with KRAS and BRAF mutational status (p-value = 0.0414 and 0.0065, respectively). Further t-SNE analyses were made to 191 specimens to reveal patterns among patients with clinical parameters and KRAS mutational status. Then, directed by the results from classical statistical tests and t-SNE analysis, neural network models utilized entity embeddings to learn patterns and build predictive models using a minimal number of trainable parameters. This study could be the first step in the prediction for RAS/BRAF mutational status from tumoral features and could lead the way to a more detailed and more diverse dataset that could benefit from machine learning methods."	"Germline and Somatic Pharmacogenomics to Refine Rectal Cancer Patients Selection for Neo-Adjuvant Chemoradiotherapy. Neoadjuvant chemoradiotherapy (nCRT) followed by radical surgery is the standard of care for patients with Locally Advanced Rectal Cancer (LARC). Current selection for nCRT is based on clinical criteria regardless of any molecular marker. Pharmacogenomics may be a useful strategy to personalize and optimize nCRT in LARC. This review aims to summarize the most recent and relevant findings about the role of germline and somatic pharmacogenomics in the prediction of nCRT outcome in patients with LARC, discussing the state of the art of their application in the clinical practice. A systematic literature search of the PubMed database was completed to identify relevant English-language papers published up to January 2020. The chemotherapeutic backbone of nCRT is represented by fluoropyrimidines, mainly metabolized by DPD (Dihydro-Pyrimidine Dehydrogenase, DPYD). The clinical impact of testing DPYD*2A, DPYD*13, c.2846A &gt; T and c.1236G &gt; A-HapB3 before a fluoropyrimidines administration to increase treatment safety is widely acknowledged. Other relevant target genes are TYMS (Thymidylate Synthase) and MTHFR (Methylene-Tetrahydro-Folate Reductase), whose polymorphisms were mainly studied as potential markers of treatment efficacy in LARC. A pivotal role of a TYMS polymorphism in the gene promoter region (rs34743033) was reported and was pioneeringly used to guide nCRT treatment in a phase II study. The pharmacogenomic analysis of other pathways mostly involved in the cellular response to radiation damage, as the DNA repair and the activation of the inflammatory cascade, provided less consistent results. A high rate of somatic mutation in genes belonging to PI3K (Phosphatidyl-Inositol 3-Kinase) and MAPK (Mitogen-Activated Protein Kinase) pathways, as BRAF (V-raf murine sarcoma viral oncogene homolog B1), KRAS (Kirsten Rat Sarcoma viral oncogene homolog), NRAS (Neuroblastoma RAS viral (v-ras) oncogene homolog), PIK3CA (Phosphatidyl-Inositol-4,5-bisphosphate 3-Kinase, Catalytic Subunit Alpha), as well as TP53 (Tumor Protein 53) was reported in LARC. Their pharmacogenomic role, already defined in colorectal cancer, is under investigation in LARC with promising results concerning specific somatic mutations in KRAS and TP53, as predictors of tumor response and prognosis. The availability of circulating tumor DNA in plasma may also represent an opportunity to monitor somatic mutations in course of therapy."	"Can Standardisation of the Public Assessment Report Improve Benefit-Risk Communication? National regulatory authorities (NRAs) make the decision to register a medicine based on an assessment of its benefits and risks and publicly available assessment reports are used as a tool to communicate the basis for the decision. The Universal Methodology for Benefit-Risk Assessment (UMBRA) has also been used to effectively communicate the basis of regulatory decisions. Many NRAs in emerging markets place reliance on the public assessment reports (PARs) of reference agencies to inform about their own regulatory decisions. However, PAR users often criticise the redacted nature of PARs and may be challenged in identifying key benefits and risks, value judgements, and benefit-risk (BR) trade-offs. PARs for ertugliflozin l-pyroglutamic acid, erenumab, and durvalumab published by regulatory bodies in Australia, Europe, Canada, and the United States were compared with the validated UMBRA Benefit-Risk Template to evaluate the BR decision documentation. Published validation of UMBRA included report of a consortium of four regulatory authorities in Australia, Canada, Switzerland, and Singapore indicating that their clinical assessment templates were modified to align with the UMBRA approach. A focus group discussed the use of PARs as potential knowledge management tools for stakeholder understanding of regulatory decision making. The South African Health Product Regulatory Authority (SAHPRA) approach to document and communicate the BR decisions was evaluated. Results indicate key elements to include in the PARs including regulatory history, an effects table and a record of the strengths and uncertainties for each benefit and risk. Focus group participants agreed that a harmonised PAR template would support improved regulatory decision-making transparency. SAHPRA communication of BR decisions could be improved through the use of the UMBRA BR Template as a guidance for BR assessment and the basis of the South Africa public assessment report format. SAHPRA's use of a structured template that supports transparent and quality decision making could have a major impact in ensuring consistency in the BR assessment of new medicines. The implementation of this effective approach for communicating BR decisions will advance agency goals of being a trusted, responsive, accountable regulatory body in which all healthcare stakeholders may rely on with confidence."	"Molecular characterisation and clinical correlation of papillary thyroid microcarcinoma. Papillary thyroid microcarcinoma (mPTC) is defined as a papillary thyroid cancer sized 10 mm or less. Despite their generally indolent clinical course and good prognosis, a subset of mPTCs shows potentially aggressive behaviour. To search for predictors of clinical outcome of mPTCs, we retrospectively evaluated the genetic tumour profile of 100 patients (23 M/77 F, mean age ± SD 53.8 ± 13.4 years) with histologically confirmed mPTCs through analysis of BRAF, NRAS and TERT promoter mutations as well as RET/PTC translocations. Mean follow-up period was 8.4 ± 3.6 years. In 55 cases, mPTC were detected incidentally after surgery. Capsular invasion, bilateralism and multifocality were found in 11/100, 17/100 and 24/100 cases, respectively, while lymph-nodes metastases were present at diagnosis in 9/100 cases. After 3.5 ± 2.0 years, tumour relapse occurred in 6/100 cases and was locoregional in five (two in the thyroid bed, three in laterocervical lymph-nodes), while lung metastasis occurred in one case. Biochemical persistence of disease was seen in 1/100 case. Mutations occurred in 55/100 cases; BRAF<sup>V600E</sup> was the most frequently detected (49/100) and was associated with higher tumour size, bilateralism and follicular variant but not with capsular invasion. RET/PTC rearrangements were found in 2/100 cases, NRAS<sup>Q61R</sup> in 4/100, while no mutations of TERT promoter gene were detected. Despite the observed association between BRAF<sup>V600E</sup> mutation and unfavourable histopathological features, we found no direct association with tumour recurrence, distant metastases and mortality. In our study, the search for the most frequent genetic alterations as prognostic markers in mPTCs would not have changed the therapeutic strategy."	"NRAS mutant E132K identified in young-onset sporadic colorectal cancer and the canonical mutants G12D and Q61K affect distinct oncogenic phenotypes. Recent data show a global increase in colorectal cancer (CRC) cases among younger demographics, which portends poorer prognosis. The cause of rising incidence is uncertain, and its mutational landscape remains largely unexplored, including those in genes of the epidermal growth factor receptor pathway. Among these are NRAS mutants where there is paucity of functional studies compared to KRAS. Here, the novel NRAS mutant E132K, identified in three tumor samples from Filipino young-onset, sporadic colorectal cancer patients, was investigated for its effects on different cancer hallmarks, alongside the NRAS canonical mutants G12D and Q61K which are yet poorly characterized in the context of CRC. The novel NRAS mutant E132K and the canonical G12D and Q61K mutants show resistance to apoptosis, cytoskeletal reorganization, and loss of adhesion. In contrast to activating KRAS mutations, including the analogous KRAS G12D and Q61K mutations, all three NRAS mutants have no apparent effect on cell proliferation and motility. The results highlight the need to characterize isoform- and mutation-specific oncogenic phenotypes which can have repercussions in disease management and choice of therapeutic intervention. Further analyses of young-onset versus late-onset CRC datasets are necessary to qualify NRAS E132K as a biomarker for the young-onset subtype."	"The predictive value of KRAS and NRAS mutations in metastatic colorectal cancer. NA"	"Historical Perspectives on Ethical and Regulatory Aspects of Human Participants Research: Implications for Oncology Clinical Trials in Africa. Clinical trials research involving human participants has led to numerous medical advances. Historically, however, clinical trials research was the source of major concerns for the safety and welfare of the human participants taking part in these studies. The ethical principles of autonomy, beneficence, and justice came about in response to medical atrocities, and regulations were ultimately put in place to protect the rights and welfare of human participants and to maintain the public trust in the research enterprise. Today, clinical trials are one of the most heavily regulated practices in the world, and yet still not all people are provided the same oversights and protections, with improprieties disproportionately affecting poor-resource nations and vulnerable populations. As Africa approaches the post-communicable disease era, cancer is set to take the lead as the most burdensome disease, making the need for oncology clinical trials in Africa greater than ever before. Africa represents a heterogeneous market with 55 countries, most with their own National Regulatory Agency (NRA) and each with varying levels of regulatory maturity. This diversity creates a highly complex regulatory environment and causes challenges when bringing drugs to market. There is a large need for harmonization and increased collaboration between the African nations' NRAs. In addition, many African countries need to be better equipped to handle research ethics committees and/or learn how to rely on neighboring countries with more established ethics committees. Well-run clinical trials offer solutions to national health care problems, and all people deserve equal access to their benefits."	"Pimasertib Versus Dacarbazine in Patients With Unresectable NRAS-Mutated Cutaneous Melanoma: Phase II, Randomized, Controlled Trial with Crossover. This study investigated the efficacy and safety of pimasertib (MEK1/MEK2 inhibitor) versus dacarbazine (DTIC) in patients with untreated NRAS-mutated melanoma. Phase II, multicenter, open-label trial. Patients with unresectable, stage IIIc/IVM1 NRAS-mutated cutaneous melanoma were randomized 2:1 to pimasertib (60 mg; oral twice-daily) or DTIC (1000 mg/m<sup>2</sup>; intravenously) on Day 1 of each 21-day cycle. Patients progressing on DTIC could crossover to pimasertib. Primary endpoint: investigator-assessed progression-free survival (PFS); secondary endpoints: overall survival (OS), objective response rate (ORR), quality of life (QoL), and safety. Overall, 194 patients were randomized (pimasertib n = 130, DTIC n = 64), and 191 received treatment (pimasertib n = 130, DTIC n = 61). PFS was significantly improved with pimasertib versus DTIC (median 13 versus 7 weeks, respectively; hazard ratio (HR) 0.59, 95% confidence interval (CI) 0.42-0.83; p = 0.0022). ORR was improved with pimasertib (odds ratio 2.24, 95% CI 1.00-4.98; p = 0.0453). OS was similar between treatments (median 9 versus 11 months, respectively; HR 0.89, 95% CI 0.61-1.30); 64% of patients receiving DTIC crossed over to pimasertib. Serious adverse events (AEs) were more frequent for pimasertib (57%) than DTIC (20%). The most common treatment-emergent AEs were diarrhea (82%) and blood creatine phosphokinase (CPK) increase (68%) for pimasertib, and nausea (41%) and fatigue (38%) for DTIC. Most frequent grade ≥3 AEs were CPK increase (34%) for pimasertib and neutropenia (15%) for DTIC. Mean QoL scores (baseline and last assessment) were similar between treatments. Pimasertib has activity in NRAS-mutated cutaneous melanoma and a safety profile consistent with known toxicities of MEK inhibitors. Trial registration: ClinicalTrials.gov, NCT01693068."	"Landscape of RAS Variations in 17,993 Pan-cancer Patients Identified by Next-generation Sequencing. RAS family genes (HRAS, KRAS and NRAS) were frequently observed in several tumors. The expression of constitutively active RAS proteins mediated by RAS variations promote the development of tumors. KRAS is an important prognostic and drug resistance biomarker. It would also be a promising drug target. Several trials which evaluating the efficacy of RAS G12C inhibitor in solid tumors are initiated. Herein, we analyzed the alterations status of KRAS/NRAS/HRAS across diverse solid tumors. The sing nucleotide variants (SNV) and copy number variants (CNV) data of 17993 Chinese patients from 22 types of cancer were obtained in our database. Genomic profiling of DNA was performed through a next-generation sequencing on tissue. Only the pathogenic mutations and likely pathogenic mutations in clinical significance were rolled into our analysis. Among 17993 pan-cancer patients, the total RAS variants frequency was 22.58%. KRAS was the most frequently altered, followed by NRAS and HRAS. For the SNV, KRAS were most commonly found in pancreas cancer, intestine cancer and colorectal cancer. Further analysis among KRAS SNV patients showed that the mutation frequency of KRAS G12C, G12D, G12R, and G12V was 1.81%, 6.81%, 0.69% and 4.25%, respectively. A total of 21 in 22 types of solid tumors had KRAS G12C/D/R/V pathogenic or likely pathogenic mutation, which occurred most frequently in colorectal cancer, pancreas cancer and lung cancer. Our results suggested that a variety of solid tumors may harbor KRAS G12C/D/R/V mutation. These patients may benefit from KRAS inhibitors."	"STK19: a new target for NRAS-driven cancer. NA"	"NRAS status determines sensitivity to SHP2 inhibitor combination therapies targeting the RAS-MAPK pathway in neuroblastoma. Survival for high-risk neuroblastoma (NB) remains poor and treatment for relapsed disease rarely leads to long-term cures. Large sequencing studies of NB tumors from diagnosis have not identified common targetable driver mutations other than the 10% of tumors that harbor mutations in the anaplastic lymphoma kinase (ALK) gene. However, at NB recurrence, more frequent mutations in genes in the RAS-MAPK pathway have been detected. The PTPN11-encoded tyrosine phosphatase SHP2 is an activator of the RAS pathway, and we and others have shown that pharmacologic inhibition of SHP2 suppresses the growth of various tumor types harboring KRAS mutations such as pancreatic and lung cancers. Here we report inhibition of growth and downstream RAS-MAPK signaling in NB cells in response to treatment with the SHP2 inhibitors SHP099, II-B08 and RMC-4550. However, NB cell lines harboring endogenous NRASQ61K mutation (which is commonly detected at relapse) or isogenic NB cells engineered to overexpress NRASQ61K were distinctly resistant to SHP2 inhibitors. Combinations of SHP2 inhibitors with other RAS pathway inhibitors such as trametinib, vemurafenib, and ulixertinib were synergistic and reversed resistance to SHP2 inhibition in NB in vitro and in vivo. These results suggest for the first time that combination therapies targeting SHP2 and other components of the RAS-MAPK pathway may be effective against conventional therapy-resistant relapsed NB, including those that have acquired NRAS mutations."	"Lung-only melanoma: UV mutational signature supports origin from occult cutaneous primaries and argues against the concept of primary pulmonary melanoma. Primary pulmonary melanoma (PPM) is an entity recognized by the thoracic WHO classification. However, given the absence of native melanocytes in the lung and the known phenomenon of regression of cutaneous melanomas, the existence of PPM has remained controversial. Herein we investigate clinicopathologic and genomic features of lung-only melanomas with the goal to clarify their site of origin. We identified 10 melanomas involving exclusively lung with no current or previous cutaneous, uveal, or mucosal primaries. Four patients had solitary lesions with mean size of 5.1 cm (range 3.0-10.1 cm), meeting the criteria of PPM. Four patients had 2-3 lesions and 2 patients had &gt;10 lesions. All cases underwent targeted next-generation sequencing interrogating up to 468 cancer genes, which revealed mean tumor mutation burden of 42.6 per megabase (range 1.8 to 126) and frequent mutations involving BRAF, NRAS, NF1, KIT, and KRAS - a genomic profile typical of UV-associated cutaneous melanoma. Mutational signature was assessable for eight cases harboring &gt;20 mutations. This revealed that all evaluable cases harbored a dominant UV signature. In addition, one nonevaluable case harbored a GG &gt; AA TERT promoter variant that is highly specific for UV-mutagenesis. As control groups, using the same methodology, a dominant UV signature was identified in 97% (470/486) of cutaneous melanomas, whereas no lung adenocarcinoma (n = 291) exhibited this signature. Notably, the clinical and pathologic features of solitary melanomas, especially those with large size and epithelioid morphology, closely mimicked primary lung carcinomas, highlighting a major potential for misdiagnosis. In conclusion, presence of a UV signature provides direct evidence that nearly all lung-only melanomas in this series, including solitary lesions meeting the strict criteria of PPM, represent metastases from occult cutaneous melanomas. This suggests that lung-only melanomas should be considered as likely metastatic even in the absence of a known primary melanoma elsewhere."	"Effective drug treatment identified by in vivo screening in a transplantable patient-derived xenograft model of chronic myelomonocytic leukemia. To establish novel and effective treatment combinations for chronic myelomonocytic leukemia (CMML) preclinically, we hypothesized that supplementation of CMML cells with the human oncogene Meningioma 1 (MN1) promotes expansion and serial transplantability in mice, while maintaining the functional dependencies of these cells on their original genetic profile. Using lentiviral expression of MN1 for oncogenic supplementation and transplanting transduced primary mononuclear CMML cells into immunocompromised mice, we established three serially transplantable CMML-PDX models with disease-related gene mutations that recapitulate the disease in vivo. Ectopic MN1 expression was confirmed to enhance the proliferation of CMML cells, which otherwise did not engraft upon secondary transplantation. Furthermore, MN1-supplemented CMML cells were serially transplantable into recipient mice up to 5 generations. This robust engraftment enabled an in vivo RNA interference screening targeting CMML-related mutated genes including NRAS, confirming that their functional relevance is preserved in the presence of MN1. The novel combination treatment with azacitidine and the MEK-inhibitor trametinib additively inhibited ERK-phosphorylation and thus depleted the signal from mutated NRAS. The combination treatment significantly prolonged survival of CMML mice compared to single-agent treatment. Thus, we identified the combination of azacitidine and trametinib as an effective treatment in NRAS-mutated CMML and propose its clinical development."	"Drastic Reduction of Turnaround Time After Implementation of a Fully Automated Assay for RAS-BRAF Mutations in Colorectal Cancer: A Pilot Prospective Study in Real-life Conditions. In some situations, there is a need for rapid mutation tests for guiding clinical decisions and starting targeted therapies with minimal delays. In this study we evaluated the turnaround time before and after the implementation of a fully automated multiplex assay for KRAS and NRAS/BRAF mutation tests (Idylla™ platform, Biocartis) in metastatic colorectal cancer. The objective of this project was to compare the turnaround times in 2017-2018 with the fully automated multiplex assay to the 2016 results with previous methods. Centers with a number of tests for metastatic colorectal cancer &gt; 100 yearly and a usual turnaround time ≥ 3 weeks for mutation detection were selected. Results of 505 KRAS tests and 369 NRAS/BRAF tests were transmitted by 10 centers. The mean turnaround time from test prescription to reception of results was reduced from 25.8 days in 2016 to 4.5 days in 2017-2018. In conclusion, this pilot project shows that the Idylla™ platform for testing KRAS and NRAS/BRAF mutations allows an optimized turnaround time from test prescription to reception of results."	"Combination of Congenital and Deep Penetrating Nevus by Acquisition of β-Catenin Activation. Deep penetrating nevus (DPN) is an intradermal, sometimes compound benign melanocytic lesion, which involves the reticular dermis, occasionally reaching the subcutis, which can raise concern for melanoma both clinically and histologically. Recently, it has been genetically defined by the combination of MAPK activating and β-catenin activating mutations. We sought to investigate genetic alterations in 2 cases of combined nevi of congenital melanocytic and DPN. Case 1 was a 16-year-old woman with a pigmented lesion on the trunk since birth, which was completely excised. Histopathological examination revealed a combined congenital nevus with a DPN. Comparative genomic hybridization showed no major genetic alterations, except for gain of 6q11.1 and point mutation of B-RAF V600E. Case 2 was a 62-year-old woman with a congenital pigmented lesion on the back. The lesion was diagnosed as a combined nevus of congenital and DPN. Comparative genomic hybridization showed no genetic alterations, and the NRAS Q61K was detected in both components. DPN is in most cases part of a combined nevus. Our cases showed strong and uniform nuclear expression of β-catenin and cyclin D1 in the DPN component suggesting the evolution of the congenital nevus to the DPN clone by acquiring β-catenin activating mutation."	"Inhibition of NRAS Signaling in Melanoma through Direct Depalmitoylation Using Amphiphilic Nucleophiles. Activating mutations in the small GTPase NRAS are responsible for driving tumor growth in several cancers. Unfortunately, the development of NRAS inhibitors has proven difficult due to the lack of hydrophobic binding pockets on the protein's surface. To overcome this limitation, we chose to target the post-translational S-palmitoyl modification of NRAS, which is required for its signaling activity. Utilizing an amphiphile-mediated depalmitoylation (AMD) strategy, we demonstrate the ability to directly cleave S-palmitoyl groups from NRAS and inhibit its function. C8 alkyl cysteine causes a dose-dependent decrease in NRAS palmitoylation and inhibits downstream signaling in melanoma cells with an activating mutation in NRAS. This compound reduces cell growth in NRAS-driven versus non-NRAS-driven melanoma lines and inhibits tumor progression in an NRAS-mutated melanoma xenograft mouse model. Our work demonstrates that AMD can effectively suppress NRAS activity and could represent a promising new avenue for discovering lead compounds for treatment of NRAS-driven cancers."	"Genomic and signalling pathway characterization of the NZM panel of melanoma cell lines: A valuable model for studying the impact of genetic diversity in melanoma. Melanoma is a disease associated with a very high mutation burden and thus the possibility of a diverse range of oncogenic mechanisms that allow it to evade therapeutic interventions and the immune system. Here, we describe the characterization of a panel of 102 cell lines from metastatic melanomas (the NZM lines), including using whole-exome and RNA sequencing to analyse genetic variants and gene expression changes in a subset of this panel. Lines possessing all major melanoma genotypes were identified, and hierarchical clustering of gene expression profiles revealed four broad subgroups of cell lines. Immunogenotyping identified a range of HLA haplotypes as well as expression of neoantigens and cancer-testis antigens in the lines. Together, these characteristics make the NZM panel a valuable resource for cell-based, immunological and xenograft studies to better understand the diversity of melanoma biology and the responses of melanoma to therapeutic interventions."	"Primary tumor characteristics and next-generation sequencing mutations as biomarkers for melanoma immunotherapy response. Considerable advances in melanoma have been realized through immunotherapy. The principal aim was to determine whether primary tumor characteristics or next-generation sequencing (NGS) could serve as markers of immunotherapy response. The study cohort consisted of 67 patients who received immunotherapy for recurrent or metastatic melanoma and for whom primary tumor biopsies and pathology reports were available. A subset of 59 patient tumors were profiled using an NGS panel of 50 cancer-related genes. Objective response rate to immunotherapy was assessed using RECIST v1.1 criteria. Progression-free survival (PFS) and overall survival (OS) were used as endpoints. Lymphovascular invasion (LVI) strongly correlated with an increased proportion of immunotherapy responders (p = .002). PFS interval (p = .003) and OS (p = .036) were significantly higher in patients with LVI. NRAS mutation was more strongly correlated with an increased proportion of immunotherapy responders (p =.050). PFS was significantly higher in patients with NRAS mutation (p = .042); no difference in OS (p = .111). This analysis demonstrates an association between lymphovascular invasion and immunotherapy response. Additionally, NGS mutation analysis demonstrated a potential association between NRAS mutations and immunotherapy response."	"BRAF and NRAS mutated melanoma: Different Ca<sup>2+</sup> responses, Na<sup>+</sup>/Ca<sup>2+</sup> exchanger expression, and sensitivity to inhibitors. Calcium is a ubiquitous intracellular second messenger, playing central roles in the regulation of several biological processes. Alterations in Ca<sup>2+</sup> homeostasis and signaling are an important feature of tumor cells to acquire proliferative and survival advantages, which include structural and functional changes in storage capacity, channels, and pumps. Here, we investigated the differences in Ca<sup>2+</sup> homeostasis in vemurafenib-responsive and non-responsive melanoma cells. Also, the expression of the Na<sup>+</sup>/Ca<sup>2+</sup> exchanger (NCX) and the impact of its inhibition were studied. For this, it was used B-RAF<sup>V600E</sup> and NRAS<sup>Q61R</sup>-mutated human melanoma cells. The intracellular Ca<sup>2+</sup> chelator BAPTA-AM decreased the viability of SK-MEL-147 but not of SK-MEL-19 and EGTA sensitized NRAS<sup>Q61R</sup>-mutated cells to vemurafenib. These cells also presented a smaller response to thapsargin and ionomycin regarding the cytosolic Ca<sup>2+</sup> levels in relation to SK-MEL-19, which was associated to an increased expression of NCX1, NO basal levels, and sensitivity to NCX inhibitors. These data highlight the differences between B-RAF<sup>V600E</sup> and NRAS<sup>Q61R</sup>-mutated melanoma cells in response to Ca<sup>2+</sup> stimuli and point to the potential combination of clinically used chemotherapeutic drugs, including vemurafenib, with NCX inhibitors as a new therapeutic strategy to the treatment of melanoma."	"The Hippo pathway oncoprotein YAP promotes melanoma cell invasion and spontaneous metastasis. Melanoma is a deadly form of skin cancer that accounts for a disproportionally large proportion of cancer-related deaths in younger people. Compared with most other skin cancers, a feature of melanoma is its high metastatic capacity, although the mechanisms that confer this are not well understood. The Hippo pathway is a key regulator of organ growth and cell fate that is deregulated in many cancers. To analyse the Hippo pathway in cutaneous melanoma, we generated a transcriptional signature of melanoma cells that overexpressed YAP, the key downstream Hippo pathway oncoprotein. YAP-mediated transcriptional activity varied in melanoma cell lines but did not cluster with known genetic drivers of melanomagenesis such as BRAF and NRAS mutations. Instead, it correlated strongly with published gene expression profiles linked to melanoma cell invasiveness and varied throughout the metastatic cascade in melanoma patient tumours. Consistent with this, YAP was both necessary and sufficient for melanoma cell invasion in vitro. In vivo, YAP promoted spontaneous melanoma metastasis, whilst the growth of YAP-expressing primary tumours was impeded. Finally, we identified the YAP target genes AXL, THBS1 and CYR61 as key mediators of YAP-induced melanoma cell invasion. These data suggest that YAP is a critical regulator of melanoma metastasis."	"TERT Promoter Mutations and Their Impact on Gene Expression Profile in Papillary Thyroid Carcinoma. Telomerase reverse transcriptase promoter (TERTp) mutations are related to a worse prognosis in various malignancies, including papillary thyroid carcinoma (PTC). Since mechanisms responsible for the poorer outcome of TERTp(+) patients are still unknown, searching for molecular consequences of TERTp mutations in PTC was the aim of our study. The studied cohort consisted of 54 PTCs, among them 24 cases with distant metastases. BRAF V600E, RAS, and TERTp mutational status was evaluated in all cases. Differences in gene expression profile between TERTp(+) and TERTp(-) PTCs were examined using microarrays. The evaluation of signaling pathways and gene ontology was based on the Gene Set Enrichment Analysis. Fifty-nine percent (32/54) of analyzed PTCs were positive for at least one mutation: 27 were BRAF(+), among them eight were TERTp(+), and 1 NRAS(+), whereas five other samples harbored RAS mutations. Expression of four genes significantly differed in BRAF(+)TERTp(+) and BRAF(+)TERTp(-) PTCs. Deregulation of pathways involved in key cell processes was observed. TERTp mutations are related to higher PTC aggressiveness. CRABP2 gene was validated as associated with TERTp mutations. However, its potential use in diagnostics or risk stratification in PTC patients needs further studies."	"Senescent cholangiocytes release extracellular vesicles that alter target cell phenotype via the epidermal growth factor receptor. Primary sclerosing cholangitis (PSC) is a chronic liver disease characterized by peribiliary inflammation and fibrosis. Cholangiocyte senescence is a prominent feature of PSC. Here, we hypothesize that extracellular vesicles (EVs) from senescent cholangiocytes influence the phenotype of target cells. EVs were isolated from normal human cholangiocytes (NHCs), cholangiocytes from PSC patients and NHCs experimentally induced to senescence. NHCs, malignant human cholangiocytes (MHCs) and monocytes were exposed to 10<sup>8</sup> EVs from each donor cell population and assessed for proliferation, MAPK activation and migration. Additionally, we isolated EVs from plasma of wild-type and Mdr2<sup>-/-</sup> mice (a murine model of PSC), and assessed mouse monocyte activation. EVs exhibited the size and protein markers of exosomes. The number of EVs released from senescent human cholangiocytes was increased; similarly, the EVs in plasma from Mdr2<sup>-/-</sup> mice were increased. Additionally, EVs from senescent cholangiocytes were enriched in multiple growth factors, including EGF. NHCs exposed to EVs from senescent cholangiocytes showed increased NRAS and ERK1/2 activation. Moreover, EVs from senescent cholangiocytes promoted proliferation of NHCs and MHCs, findings that were blocked by erlotinib, an EGF receptor inhibitor. Furthermore, EVs from senescent cholangiocytes induced EGF-dependent Interleukin 1-beta and Tumour necrosis factor expression and migration of human monocytes; similarly, Mdr2<sup>-/-</sup> mouse plasma EVs induced activation of mouse monocytes. The data continue to support the importance of cholangiocyte senescence in PSC pathogenesis, directly implicate EVs in cholangiocyte proliferation, malignant progression and immune cell activation and migration, and identify novel therapeutic approaches for PSC."	"Genetic Alterations in Pediatric Thyroid Cancer Using a Comprehensive Childhood Cancer Gene Panel. Pediatric differentiated thyroid cancer (DTC) differs from adult DTC in its underlying genetics and clinicopathological features. In this report, we studied these aspects in 48 cases of pediatric DTC. We used the comprehensive Oncomine Childhood Cancer Gene panel on Ion Torrent next generation sequencing platform. We included 48 patients (37 females and 11 males) with pediatric DTC (median age 17 years, range 5-18) and studied the association between these genetic alterations and the clinicopatholgical features and outcome. Of 48 tumors, 33 (69%) had somatic genetic alterations which were mutually exclusive except in one tumor. BRAFV600E and RET-PTC1 were the most common occurring in 9 different tumors (19%) each. RET-PTC3 and ETV6-NTRK3 were the next most common with each of them occurring in 4 different tumors (8%). Other genetic alterations including EML4-NTRK1, EML4-ALK, NRAS, KRAS, PTEN and CREBBP occurred once each. There were no differences between those who had mutations and those without mutations in the age, sex, tumor multifocality, extrathyroidal extension, vascular invasion, lymph node or distant metastasis and the American Thyroid Association status at the last follow up visits. Similarly, none of these factors were different between those with fusion genes vs. single point mutations vs. no mutations. In pediatric DTC, fusion genes are more common than single point mutations. The most common genetic alterations are RET/PTC1, BRAFV600E, RET/PTC3 and ETV6-NTRK3. Other alterations occur rarely. Genetic alterations do not correlate with the clinicopathological features or the outcome."	"[Analysis of Genomic Landscape in Patients with Acute Myeloid Leukemia]. To investigate the gene mutation occurved in AML patients with 29 kinds of fusion genes and 51 kinds of tumor gene. Next-generation sequencing (NGS) was used to detected the 49 kinds of targeted gene. FLT3 internal tandem duplication (FLT3-ITD), CALR, NPM1 and CEBPA mutation were detected by DNA-based PCR and Sanger sequencing. Twenty-nine kinds of fusion genes were dected by multiplex nested RT-PCR. The total gene mutation rate was 91% (109/121) in all the 121 patients. On average, 2.1 mutated genes per patient were identified, among these 121 patients, coexistence of ≥ 3 mutations was frequent (34.7%). The most commonly mutated genes were NRAS (23.96%, n=29), followed by NPM1 (14.04%, n=17), CEBPA double mutations (14.04%, n=17), KRAS (11.57%, n=14),FLT3-ITD (10.74%, n=13), CSF3R (10.74%, n=13), TET2 (9.92%, n=12) and IDH1 (9.1%, n=11). Overall, fusion genes were detected in 47 (37.3%) patients, including AML/ETO (n=12), CBFβ/MYH11 (n=11), PML/RARa (n=12), MLL rearranagement realated mutation MLL-X (n=10). TLS/ERG (n=1) and DEK/CAN (n=1) in an order of decreasing frequency. Patients with normal karyotype (NK)- AML exhibited more mutations in CEBPA, NPM1, TET2, RUNX1 and IDH1, comparing with abnormal karyotype patients. KRAS mutation in abnormal kayotype patients was significantly higher than that in normal kayotype patients (P=0.014). TP53 mutations were predominantly associated with complex cytogenetics (P=0.199). KRAS mutations were more frequent in core binding factor (CBF) acute myeloid leukemia (AML) and 11q23/MLL rearrangement leukemia, compared with NK-AML (P=0.006 and 0.003, respectively). KIT mutations predominated in CBF-AML (P=0.006). JAK2V617F mutations were detected in two patients and co-occurred with AML-ETO fusions. At least one mutation is observed in more than 90% patients. On average, more than 2 mutated genes per patient are identified. Some gene mutations are associated with gene rearrangement. 121例急性髓系白血病患者基因突变谱的分析. 研究急性髓系白血病(AML)患者29种融合基因及51种肿瘤基因突变的发生情况. 采用第二代DNA测序技术检测49种靶基因;采用DNA-PCR检测FLT3-ITD、NPM1基因12号外显子、CALR基因9号外显子及CEBPA的TAD、BZIP 2个功能区的突变发生情况;采用多重PCR法检测29种白血病融合基因. 121例患者中,基因突变总发生率为90.1%(109/121),每例患者平均发生2.1个基因突变,34.7%的患者同时携带≥3个基因突变。突变检出率最高的基因为NRAS(23.96%,n=29),其他基因依次为:NPM1(14.04%,n=17)、CEBPA双突变(14.04%,n=17)、KRAS(11.57%,n=14)、FLT3-ITD(10.74%,n=13)、CSF3R(10.74%,n=13)、TET2(9.92%,n=12)和IDH1(9.1%,n=11)。共47例患者检出融合基因,包括AML/ETO 12例,CBFβ/MYH11 11例,PML/RARa 12例,涉及MLL重排的MLL-X融合基因10例,TLS/ERG 1例及DEK/CAN 1例。 CEBPA、NPM1、TET2、RUNX1及IDH1突变在正常核型中的检出率均高于异常核型,差异有统计学意义;KRAS突变在异常核型中的发生率高于正常核型,差异显著(P=0.014)。复杂核型患者的TP53突变检出率明显高于正常核型及其他异常核型(P=0.199)。KRAS突变在核心结合因子白血病及伴有11q23/MLL重排的M5患者中的阳性率均高于正常核型(P=0.006,P=0.003)。KIT基因突变主要见于核心结合因子白血病,两者有相关性(P=0.006)。共检测到2例JAK2V617F突变,均与t (8; 21)/AML1/ETO伴随出现. 大于90%的AML患者至少携带1个基因突变,每例患者平均发生2个以上白血病常见致病基因突变,部分基因突变与基因重排有一定相关性."	"[Effect of Signal Transduction Pathway Gene Mutations on the One- course Induced Remission Rate and Analysis of Clinical Characteristics in Patients with CBF-AML]. To investigate the effect of other gene mutations outside the fusion gene on the first complete remission (CR1) induced by one course of induction chemotherapy in patients with core binding factor-associated acute myeloid leukemia (CBF-AML). DNA was extracted from bone marrow or peripheral blood samples of newly diagnosed CBF-AML patients admitted to the Hematology Department of the Second Hospital of Shanxi Medical University from January 2015 to January 2019. Next-generation sequencing was used for detection of 34 kinds of hematologic malignancy-related gene mutations in patients with CBF-AML, the effect of related gene mutations on the first complete remission (CR1) rate in one course of induction chemotherapy was analyzed by combineation with clinical characteristics. 34 kinds of genes in bone marrow or peripheral blood of 43 patients were detected by high throughput sequencing and the gene mutations were detected in 16 out of 34 genes. The mutation rate of KIT gene was the highest (48.8%), followed by NRAS (16.3%), ASXL1 (16.3%), TET2 (11.6%), CSF3R (9.3%), FLT3 (9.3%), KRAS (7.0%). The detection rates of mutations in different functional genes were as follows: genes related with signal transduction pathway (KIT, FLT3, CSF3R, KRAS, NRAS, JAK2, CALR, SH2B3, CBL) had the highest mutation frequency (72.1% (31/43); epigenetic modification gene mutation frequency was 30.2% (13/43), including ASXL1, TET2, BCOR); transcriptional regulation gene mutation frequency was 7.0% (3/43), including ETV6, RUNX1, GATA2). Splicing factor related gene mutation frequency was 2.3% (1/43), including ZRSR2). The CR1 rate was 74.4% after one course of induction chemotherapy. At first diagnosis, patients with low expression of WT1 (the median value of WT1 was 788.9) were more likely to get CR1 (P=0.032) and the RFS of patients who got CR1 after one course of induction chemotherapy was significantly longer than that of patients without CR1 [7.6 (2.2-44.1) versus 5.8 (1-19.4), (P=0.048)]. The rate of CR1 in the signal transduction pathway gene mutation group was significantly lower than that in non-mutation group (64.5% vs 100%) (P=0.045), while the level of serum hydroxybutyrate dehydrogenase (HBDH) was significantly higher than that in non-mutation group [(418 (154-2702) vs 246 (110-1068)] (P=0.032). There was no difference in CD56 expression between the two groups (P=0.053), which was limited to the difference between (≥20%) expression and non-expression. (P=0.048). CBF-AML patients with signal transduction pathway gene mutation are often accompanied by high HBDH level and CD56 expression, moreover, the remission rate induced by one course of treatment is low. 信号传导通路基因突变对CBF-AML患者一个疗程诱导缓解率的影响及临床特征分析. 研究融合基因外其他基因突变对核心结合因子相关急性髓系白血病(CBF-AML)患者1个疗程诱导化疗达首次完全缓解的影响. 采集2015年1月至2019年1月在山西医科大学第二医院血液科收治的43例初发CBF-AML患者的骨髓或外周血标本,提取DNA,通过高通量测序检测34种常见血液肿瘤基因突变情 况;结合其临床特征,分析相关基因突变对1个疗程诱导化疗完全缓解(CR1)率的影响. 43例初发CBF-AML患者初发时骨髓或外周血DNA均通过二代测序(NGS)检测了34种基因,其中16种基因存在突变,KIT基因突变率最高(48.8%),其次为NRAS(16.3%),ASXL1(16.3%),TET2(11.6%),CSF3R(9.3%),FLT3(9.3%), KRAS(7.0%)。不同功能基因突变检出率依次为:信号传导通路基因(KIT、FLT3、CSF3R、KRAS、NRAS、JAK2、CALR、SH2B3、CBL)突变发生频率最高,为72.1%(31/43);表观遗传修饰基因突变频率 为30.2%(13/43,包括ASXL1、TET2、BCOR);转录调节基因突变频率为7.0%(3/43,包括ETV6、RUNX1、GATA2);剪接因子相关基因为2.3%(1/43,包括ZRSR2)。经1个疗程诱导化疗CR1率为74.4%。初诊时WT1低表达(表达量临界值选取WT1中位值788.9)患者经1个疗程诱导化疗更易获得CR1(P=0.032),且1个疗程获CR1 组患者的RFS显著长于未获CR1组患者[7.6(2.2-44.1)对5.8(1-19.4),(P=0.048)]。信号传导通路基因突变组的1个疗程诱导治疗CR1率明显低于非信号传导通路基因突变组(64.5%对100%,P=0.045),但血清羟丁酸脱氢酶(HBDH)水平显著高于非突变组[418(154-2702)对246(110-1068),P=0.032],2组CD56表达情况总体无差异(P=0.053),仅限于≥20%表达与不表达间存在差异(P=0.048). 存在信号传导通路基因突变的CBF-AML患者常伴较高的HBDH水平和CD56表达,1疗程诱导缓解率低."	"Is there any correlation among MKK4 (mitogen-activated protein kinase kinase 4) expression, clinicopathological features, and KRAS/NRAS mutation in colorectal cancer. We aimed to evaluate the correlation between MKK4 expression and clinicopathological features, KRAS/NRAS mutation in colorectal cancer. MKK4 expression was assessed by immunoreactivity score (IRS). Staining intensity(SI) and percentage of positively stained cells (PP) were used for IRS (IRS = SI×PP). Cutoffs were explored with ROC analysis. Patients were grouped as WIR ('weak immunoreactive'; IRS:0-2) and SIR ('strong immunoreactive'; IRS: &gt;3). We enrolled 95 patients. 63.2% had metastasis. Median follow-up was 31.4 months. KRAS/NRAS mutation rate was 45.2%. Median values for OS, DFS, and PFS were as 31.6, 17.2, and 10.3 months. WIR group had longer OS (p = 0.03). Recurrence rate was 36.8%. Median DFS was longer for recurrent patients in WIR group (p = 0.055). KRAS or NRAS wild-type patients and those with left-sided tumors in WIR group had longer OS (p = 0.029, p = 0.024, p = 0.03). There was no PFS difference (p: 0.15). In correlation analysis, there was a negative correlation between MKK4 expression and KRAS mutation, NRAS mutation, OS, PFS, DFS (r: -0,06; r: -0,02; r: -0,10; r: -0,06; r: -0,34). Only the correlation for MKK4 expression and DFS was significant (p = 0.04). MKK4 expression inversely correlates with survival outcomes. Patients with KRAS/NRAS wild-type, left-sided tumors with WIR had longer OS."	"Incorporating traditional and emerging biomarkers in the clinical management of metastatic colorectal cancer: an update. Molecular profiling has led to significantly longer survival in metastatic colorectal cancer (mCRC) patients. Clinical guidelines recommend testing for KRAS/NRAS, BRAF and MSI status, and new biomarkers such as HER2 amplification and NTRK fusions have emerged more recently in refractory CRC, supported by overwhelming clinical relevance. These biomarkers can guide treatment management to improve clinical outcomes in these patients. Preclinical and clinical data over the last decade were reviewed for known and novel biomarkers with clinical implications in refractory CRC. Molecular alterations are described for classic and novel biomarkers, and data for completed and ongoing studies with targeted and immunotherapies are presented. Use of targeted therapies based on biomarker testing in CRC has enabled impressive improvements in clinical outcomes in refractory patients. BRAF, MSI, NRAS and KRAS should be tested upfront in all patients given their indisputable therapeutic implications. Other molecular alterations such as HER2 and NTRK are emerging. Testing for these alterations may further improve outcomes for refractory CRC patients. Nonetheless, many key aspects remain to be defined including the optimal timing and technique for testing, the most adequate panel, and whether all patients should be tested for all alterations."	"Application of targeted next generation sequencing for the mutational profiling of patients with acute lymphoblastic leukemia. Acute lymphoblastic leukemia (ALL) is the most common cancer in children, whereas it is less common in adults. Identification of cytogenetic aberrations and a small number of molecular abnormalities are still the most important risk and therapy stratification methods in clinical practice today. Next generation sequencing (NGS) technology provides a large amount of data contributing to elucidation of mutational landscape of childhood (cALL) and adult ALL (aALL). We analyzed DNA samples from 34 cALL and aALL patients, using NGS targeted sequencing TruSeq Amplicon - Cancer Panel (TSACP) which targets mutational hotspots in 48 cancer related genes. We identified a total of 330 variants in the coding regions, out of which only 95 were potentially protein-changing. Observed in individual patients, detected mutations predominantly disrupted Ras/RTK pathway (STK11, KIT, MET, NRAS, KRAS, PTEN). Additionally, we identified 5 patients with the same mutation in HNF1A gene, disrupting both Wnt and Notch signaling pathway. In two patients we detected variants in NOTCH1 gene. HNF1A and NOTCH1 variants were mutually exclusive, while genes involved in Ras/RTK pathway exhibit a tendency of mutation accumulation. Our results showed that ALL contains low number of mutations, without significant differences between cALL and aALL (median per patient 2 and 3, respectively). Detected mutations affect few key signaling pathways, primarily Ras/RTK cascade. This study contributes to knowledge of ALL mutational landscape, leading to better understanding of molecular basis of this disease. Akutna limfoblastna leukemija (ALL) je najčešće maligno oboljenje kod dece, dok je kod odraslih njena učestalost mnogo niža. U današnjoj kliničkoj praksi kao najvažnije metode stratifikacije pacijenata u određene grupe rizika koriste se metode identifikacije citogenetičkih aberacija i malog broja molekulanih markera. Tehnologija sekvenciranja nove generacije (SNG) obezbeđuje veliku količinu podataka koji doprinose razjašnjavanju mutacionog profila dečje (dALL) i adultne ALL (aALL). Uzorci DNK iz 34 dALL i aALL pacijenata analizirani su primenom SNG ciljanog sekvenciranja (&quot;TruSeq Amplicon Cancer Panel - TSACP&quot;) kojim se sekvenciraju &quot;hotspot&quot; mutacije u 48 gena povezanih sa kancerom. Identifikovano je ukupno 330 varijanti u kodirajućim regionima, od kojih je samo 95 njih za posledicu imalo potencijalnu promenu u proteinu. Posmatrano kod pojedinačnih pacijenata, detektovane mutacije su pretežno remetile Ras/RTK signalni put (STK11, KIT, MET, NRAS, KRAS, PTEN). Pored toga, identifikovano je 5 pacijenata sa istom mutacijom u HNF1A genu, koja je uzrokovala poremećaje u Wnt i Notch signalnom putu. Kod dva pa cijenta otkrivene su varijante u NOTCH1 genu. Nije detektovano istovremeno prisustvo varijanti u HNF1A i NOTCH1 genu, dok su geni uključeni u Ras/RTK signalni put pokazali tendenciju ka akumuliranju mutacija. Naši rezultati pokazuju da ALL sadrži Mali broj mutacija, bez značajnih razlika između dALL i aALL (medijana po pacijentu 2 odnosno 3). Detektovane mutacije izazivaju poremećaje u nekoliko ključnih signalnih puteva, prvenstveno Ras/RTK kaskade. Ova studija doprinosi ukupnom znanju o mutacionom profilu ALL, što vodi ka boljem razumijevanju molekularne osnove ovog oboljenja."	"Combining texture features of whole slide images improves prognostic prediction of recurrence-free survival for cutaneous melanoma patients. Accurate prediction of recurrence-free survival (RFS) is important for the prognosis of cutaneous melanoma patients. The image-based pathological examination remains as the gold standard for diagnosis. It is of clinical interest to account for computer-aided processing of pathology image when performing prognostic analysis. We enrolled in this study a total of 152 patients from TCGA-SKCM (The Cancer Genome Atlas Skin Cutaneous Melanoma project) with complete information in recurrence-related survival time, baseline variables (clinicopathologic variables, mutation status of BRAF and NRAS genes), gene expression data, and whole slide image (WSI) features. We preprocessed WSI to segment global or nucleus areas, and extracted 3 types of texture features from each region. We performed cross validation and used multiple evaluation metrics including C-index and time-dependent AUC to determine the best model of predicting recurrence events. We further performed differential gene expression analysis between the higher and lower-risk groups within AJCC pathologic tumor stage III patients to explore the underlying molecular mechanisms driving risk stratification. The model combining baseline variables and WSI features had the best performance among models with any other types of data integration. The prognostic risk score generated by this model could provide a higher-resolution risk stratification within pathologically defined subgroups. We found the selected image features captured important immune-related variations, such as the aberration of expression in T cell activation and proliferation gene sets, and therefore contributed to the improved prediction. Our study provided a prognostic model based on the combination of baseline variables and computer-processed WSI features. This model provided more accurate prediction than models based on other types of data combination in recurrence-free survival analysis. This study was based on public open data from TCGA and hence the study objects were retrospectively registered."	"[A New Era of Colorectal Cancer Treatment Being Led by a Precise Analysis of Somatic Mutational Profiles Including RAS, BRAF Mutation and Microsatellite Instability Status]. In Japan, clinically, a decade has passed since KRAS exon 2 hotspot mutations could be measured as a companion diagnostic agent of an anti-epidermal growth factor receptor antibody to treat unresectable advanced colorectal cancer. Till now, not only KRAS exon 2, but also KRAS exon 3, 4 and NRAS exon 2-4 mutation, and BRAF mutation(V600E)are approved as insurance as a companion diagnostics tool. In addition to those somatic mutations observed in Ras-Raf signal cascade, the measurement of microsatellite instability status is also approved as a companion diagnostic to anti-programmed death-1 receptor antibodies. Since these somatic mutational profiles in colorectal cancer cells are measured to determine the propriety of administration of a particular medicine, the results must be appropriately reflected in therapy for each patient. In this review, I will summarize the feature of clinical characteristics belonging to each somatic mutational profile commonly observed in colorectal cancer, and discuss howsuch somatic mutational profiles including RAS, BRAF mutation, and microsatellite instability status bring us to a newera of colorectal cancer."	"A Reply to ''Evidence that STK19 Is Not an NRAS-Dependent Melanoma Driver&quot;. NA"	"Evidence That STK19 Is Not an NRAS-dependent Melanoma Driver. STK19 was proposed to be a cancer driver, and recent work by Yin et al. (2019) in Cell suggested that the frequently recurring STK19 D89N substitution represents a gain-of-function change, allowing increased phosphorylation of NRAS to enhance melanocyte transformation. Here we show that the STK19 gene has been incorrectly annotated, and that the expressed protein is 110 amino acids shorter than indicated by current databases. The &quot;cancer driving&quot; STK19 D89N substitution is thus outside the coding region. We also fail to detect evidence of the mutation affecting STK19 expression; instead, it is a UV signature mutation, found in the promoter of other genes as well. Furthermore, STK19 is exclusively nuclear and chromatin-associated, while no evidence for it being a kinase was found. The data in this Matters Arising article raise fundamental questions about the recently proposed role for STK19 in melanoma progression via a function as an NRAS kinase, suggested by Yin et al. (2019) in Cell. See also the response by Yin et al. (2020), published in this issue."	"The Coexistence of RAS and BRAF Mutations in Metastatic Colorectal Cancer: A Case Report and Systematic Literature Review. The coexistence of RAS and BRAF mutations is extremely rare, occurring in approximately 0.05% of patients with metastatic colorectal cancer (mCRC). Starting from a case presentation, this review aims to examine the prevalence, clinical, histopathological and molecular features of tumors with concomitant mutations. Case report and systematic review. We performed a systematic literature search in PubMed and EMBASE using the following MeSH terms: &quot;coexistence&quot; OR &quot;concomitant&quot; AND &quot;RAS&quot; AND &quot;BRAF&quot; AND &quot;colorectal cancer&quot; from the inception of the databases onwards. We present the case of a 53-year-old man diagnosed with metastatic rectal adenocarcinoma with both a KRAS and a BRAF mutation. The review included eleven papers reporting on a total of 30 mCRC cases with concomitant RAS and BRAF mutations. The male/female ratio was 11/5. The average age was 58.5 years. The tumor was located in nine cases on the right colon and in two cases in the left colon. 43.3% of subjects had liver metastases, and 6.6% had lung metastases. Next-generation sequencing (NGS) was used in 36.6% of cases and polymerase chain reaction (PCR) in 16.6% of cases. KRAS mutations were present in 83.3% of patients and NRAS mutations in 16.6% of patients. Survival could be assessed in 10 patients and the median was 21.1 months (about 30% lower than the survival in the general mCRC population). The results of this systematic review suggest the need to design a cohort study (either prospective or retrospective) to better characterize the patients with concomitant RAS and BRAF mutations and to establish the optimal treatment for this rare situation."	"RAS-targeted therapies: is the undruggable drugged? RAS (KRAS, NRAS and HRAS) is the most frequently mutated gene family in cancers, and, consequently, investigators have sought an effective RAS inhibitor for more than three decades. Even 10 years ago, RAS inhibitors were so elusive that RAS was termed 'undruggable'. Now, with the success of allele-specific covalent inhibitors against the most frequently mutated version of RAS in non-small-cell lung cancer, KRAS<sup>G12C</sup>, we have the opportunity to evaluate the best therapeutic strategies to treat RAS-driven cancers. Mutation-specific biochemical properties, as well as the tissue of origin, are likely to affect the effectiveness of such treatments. Currently, direct inhibition of mutant RAS through allele-specific inhibitors provides the best therapeutic approach. Therapies that target RAS-activating pathways or RAS effector pathways could be combined with these direct RAS inhibitors, immune checkpoint inhibitors or T cell-targeting approaches to treat RAS-mutant tumours. Here we review recent advances in therapies that target mutant RAS proteins and discuss the future challenges of these therapies, including combination strategies."	"Molecular Analysis of Atypical Deep Penetrating Nevus Progressing to Melanoma. Deep penetrating nevi (DPN) are dermal-based, heavily pigmented melanocytic proliferations primarily resulting from mutations in B-catenin and BRAF or, less commonly, NRAS. DPNs are considered to be intermediate grade tumors which are stable with low risk of malignant transformation. The precise risk for transformation is unknown. Only rare cases of DPN progressing to melanoma have been described. We present a case of a 53-year-old female with a blue-black thigh lesion, on histopathology illustrating a melanocytic proliferation with morphology most consistent with a DPN progressing to melanoma. Targeted next generation sequencing performed on both the atypical melanocytic proliferation and melanoma components demonstrated NRAS and CTNNB1 mutations but no evidence of TERT promoter mutation or chromosomal copy number aberrations. The melanoma had additional mutations including a hotspot TERT promoter mutation as well as unbalanced chromosomal copy number aberrations. This report details the progression of DPN to melanoma through a prominent ultraviolet signature and acquisition of genetic aberrations. While the vast majority of DPNs are benign stable nevi, there are rare examples which may progress to melanoma. This report documents a case and demonstrates the molecular evolution by which the tumor transformed to melanoma. This article is protected by copyright. All rights reserved."	"Comparison of Tissue Molecular Biomarker Testing Turnaround Times and Concordance Between Standard of Care and the Biocartis Idylla Platform in Patients With Colorectal Cancer. Management of colorectal cancer warrants mutational analysis of KRAS/NRAS when considering anti-epidermal growth factor receptor therapy and BRAF testing for prognostic stratification. In this multicenter study, we compared a fully integrated, cartridge-based system to standard-of-care assays used by participating laboratories. Twenty laboratories enrolled 874 colorectal cancer cases between November 2017 and December 2018. Testing was performed on the Idylla automated system (Biocartis) using the KRAS and NRAS-BRAF cartridges (research use only) and results compared with in-house standard-of-care testing methods. There were sufficient data on 780 cases to measure turnaround time compared with standard assays. In-house polymerase chain reaction (PCR) had an average testing turnaround time of 5.6 days, send-out PCR of 22.5 days, in-house Sanger sequencing of 14.7 days, send-out Sanger of 17.8 days, in-house next-generation sequencing (NGS) of 12.5 days, and send-out NGS of 20.0 days. Standard testing had an average turnaround time of 11 days. Idylla average time to results was 4.9 days with a range of 0.4 to 13.5 days. The described cartridge-based system offers rapid and reliable testing of clinically actionable mutation in colorectal cancer specimens directly from formalin-fixed, paraffin-embedded tissue sections. Its simplicity and ease of use compared with other molecular techniques make it suitable for routine clinical laboratory testing."	"Prognostic value of molecular biomarkers in patients with metastatic colorectal cancer: a real-world study. Outcomes for patients with metastatic colorectal cancer (mCRC) have been improved by the identification of biomarkers predictive and prognostic of clinical outcome. The present retrospective analysis was undertaken to assess the utility of key biomarkers and clinical parameters in predicting outcomes in Spanish patients with mCRC. We retrospectively analyzed tumor samples from a series of patients aged &gt; 18 years with mCRC who were treated at the Hospital General Universitario Gregorio Marañón Spain. Real-time polymerase chain reaction was used to detect KRAS, NRAS, BRAF, and PIK3CA mutations. The key outcome of interest was overall survival (OS). Survival curves were estimated using the Kaplan-Meier method and stratified by the variables of greatest clinical interest. Differences were tested using the log-rank test. Median OS in the overall population was 24.4 months. Triple WT patients (WT KRAS, NRAS, and BRAF) and quadruple WT patients (WT KRAS, NRAS, BRAF, and PIK3CA) had significantly better OS than those who did not have triple or quadruple WT tumors. OS was significantly better in patients with left- vs. right-sided tumors, patients with resected primary tumors and metastases vs. those without resection, and patients with isolated hepatic and isolated pulmonary metastases. This retrospective, observational study has confirmed the prognostic value of the location and resection status of the primary tumor and metastases in Spanish patients with mCRC. Triple WT status, in particular, was prognostic in this patient population, with PIK3CA adding to the prognostic value in the quadruple WT population."	"Clinical, environmental and histological distribution of BRAF, NRAS and TERT promoter mutations among patients with cutaneous melanoma: a retrospective study of 563 patients. The distinct somatic mutations that define clinical and histopathological heterogeneity in cutaneous melanoma could be dependent on host susceptibility to exogenous factors like ultraviolet radiation. Firstly, to characterize patients with cutaneous melanoma clinically and pathologically based on the mutational status of BRAF, NRAS and TERT promoter. Secondly, to elucidate the modified features due to the presence of TERT promoter mutations over the background of either BRAF or NRAS mutations. We performed a retrospective study on 563 patients with melanoma by investigating somatic mutations in BRAF, NRAS and TERT promoter. We observed co-occurrence of TERT promoter mutations with BRAF and NRAS mutations in 26.3% and 6.9% of melanomas, respectively. Multivariate analysis showed an independent association between BRAF mutations and a decreased presence of cutaneous lentigines at the melanoma site, and an increased association with the presence of any MC1R polymorphism. We also observed an independent association between TERT promoter mutations and increased tumour mitotic rate. Co-occurrence of BRAF and TERT promoter mutations was independently associated with occurrence of primary tumours at usually sun-exposed sites, lack of histological chronic sun damage in surrounding unaffected skin at the melanoma site, and increased tumour mitotic rate. Co-occurrence of NRAS and TERT promoter mutations was independently associated with increased tumour mitotic rate. The presence of TERT promoter together with BRAF or NRAS mutations was associated with statistically significantly worse survival. The presence of TERT promoter mutations discriminates BRAF- and NRAS-mutated tumours and indicates a higher involvement of ultraviolet-induced damage and tumours with worse melanoma-specific survival than those without any mutation. These observations refine classification of patients with melanoma based on mutational status."	"Clonal Origin Evaluated by Trunk and Branching Drivers and Prevalence of Mutations in Multiple Lung Tumor Nodules. Differentiation between intrapulmonary metastasis (IPM) and multiple primary lung cancers (MPLC) in patients with synchronous or metachronous lung tumor nodules is critical but challenging. We proposed an algorithm to evaluate clonal origin based on trunk (initiating) versus branching drivers and the prevalence of mutations in lung adenocarcinomas. Driver mutations were examined using next-generation sequencing in five trunk driver genes (BRAF, EGFR, ERBB2, KRAS, and NRAS) and three branching driver genes (ATK1, PIK3CA, and TP53). Mutational profiling supported same clonality and likely same clonality, respectively, in 39 and 14 of 66 pairs of specimens with known identical clonal origin. Discordance of TP53 mutations (branching drivers) was observed in three pairs. Subsequent analyses of 30 pairs of synchronous or metachronous lung tumor nodules revealed different clonality and likely different clonality in 17 and 2 pairs, respectively, including three pairs with similar histomorphology; same clonality and likely same clonality in three and five pairs, respectively, including two pairs with different histomorphology; and inconclusive or noninformative results in three pairs. While discordance of trunk drivers indicated MPLC in patients with synchronous or metachronous lung tumor nodules, discordance of branching drivers did not exclude IPM. Concordance of uncommon drivers supported IPM, whereas concordance of common drivers did not exclude MPLC. Additional recommendations from official organizations are needed to guide applications of molecular markers in defining clonality of multiple lung tumor nodules."	"A subset of flavaglines inhibits KRAS nanoclustering and activation. The RAS oncogenes are frequently mutated in human cancers and among the three isoforms (KRAS, HRAS and NRAS), KRAS is the most frequently mutated oncogene. Here, we demonstrate that a subset of flavaglines, a class of natural anti-tumour drugs and chemical ligands of prohibitins, inhibit RAS GTP loading and oncogene activation in cells at nanomolar concentrations. Treatment with rocaglamide, the first discovered flavagline, inhibited the nanoclustering of KRAS, but not HRAS and NRAS, at specific phospholipid-enriched plasma membrane domains. We further demonstrate that plasma membrane-associated prohibitins directly interact with KRAS, phosphatidylserine and phosphatidic acid, and these interactions are disrupted by rocaglamide but not by the structurally related flavagline FL1. Depletion of prohibitin-1 phenocopied the rocaglamide-mediated effects on KRAS activation and stability. We also demonstrate that flavaglines inhibit the oncogenic growth of KRAS-mutated cells and that treatment with rocaglamide reduces non-small-cell lung carcinoma (NSCLC) tumour nodules in autochthonous KRAS-driven mouse models without severe side effects. Our data suggest that it will be promising to further develop flavagline derivatives as specific KRAS inhibitors for clinical applications."	"Raman reporter-assisted Au nanorod arrays SERS nanoprobe for ultrasensitive detection of mercuric ion (Hg<sup>2+</sup>) with superior anti-interference performances. Ultra sensitive detection of mercuric ion (Hg<sup>2+</sup>) with superior anti-interference capability from natural water is of great significance for food safety, environmental protection, and human health. We herein develop Au ordered nanorod arrays (Au NRAs) as surface-enhanced Raman scattering (SERS) substrates to construct SERS-active and signal-reproducible sensing platforms modified with 4-mercaptophenylboronic acid (4-MBA) as multifunctional SERS reporters. The aqueous Hg<sup>2+</sup> can be efficiently trapped by 4-MBA through electrophilic substitution reactions and precisely appraise its concentration based on the collective spectral changes of reporters including peak disappearance, emergence, and Raman shift. Based on this, the optical nanoprobe shows an ultrahigh detection sensitivity of 0.1 nM for Hg<sup>2+</sup>, which is two orders of magnitude lower than the U.S.A. environmental protection agency (EPA)-required maximum level of drinkable water. It also offers both an exceptional Hg<sup>2+</sup> discrimination against other metal ions as well as organic ligands and perfect feasibilities of detecting solutions with ultra-wide pH ranges from 1.0-14.0 at varying temperatures. Moreover, the nanoprobe demonstrates an ability to identify different chemical forms of mercury and has a high repeatability, accuracy and reliability to meet the practical detection requirements in natural environments."	"The molecular pathogenesis of Trichilemmal carcinoma. Trichilemmal carcinoma (TC) is an extremely rare hair follicle tumor. We aimed to explore the genetic abnormalities involved in TC to gain insight into its molecular pathogenesis. Data from patients diagnosed with TC within a 12-year period were retrospectively reviewed. Genomic DNA isolated from a formalin-fixed paraffin-embedded (FFPE) tumor tissue block was sequenced and explored for a panel of cancer genes. DNA was extracted from the FFPE tissue of four patients (50% female; mean age, 51.5 years) diagnosed with TC for analysis. The tumor was located in the head and neck of three patients and in the shoulder of one patient. TP53 mutations (p.Arg213*, p.Arg249Trp, and p.Arg248Gln) were found in three patients. Fusions previously identified in melanoma were detected in two patients (TACC3-FGFR3 and ROS1-GOPC fusions). Other mutations found included NF1-truncating mutation (Arg1362*), NRAS mutation (p.Gln61Lys), TOP1 amplification, and PTEN deletion. Overall, genetic changes found in TC resemble that of other skin cancers, suggesting similar pathogenesis. All patients with TP53 mutations had aggressive clinical course, two who died (OS 93 and 36 months), and one who experienced recurrent relapse. We reported the genomic variations found in TC, which may give insight into the molecular pathogenesis. Overall, genetic changes found in TC resembled that of other skin cancers, suggesting similar pathogenesis. TP53 mutations was were identified in patients who had an aggressive clinical course. Genetic alterations identified may further suggest the potential treatment options of TC."	"[Driver Mutations in Acute Myeloid Leukemia with Inversion of Chromosome 16]. Certain subtypes of acute myeloid leukemia occur as a result of the cooperation of several events these are, the formation of fusion genes as a result of chromosomal rearrangements, which leads to the disruption of cell differentiation, and the emergence of mutations that enhance cellular proliferation by activating intracellular signaling pathways. High-throughput sequencing methods reveal characteristic mutation spectra in leukemia associated with different chromosomal disorders. However, the role of mutation events in malignant cell transformation processes remains obscure. We searched for driver mutation events in leukemic cells containing the chimeric CBFB-MYH11 gene, which results from inversion of chromosome 16. Using target enrichment, the coding regions of 84 genes in genomes of 12 children with acute myeloid leukemia with inv(16) were investigated. Somatic mutations have been found in the genes of the proteins of intracellular signaling cascades mediated by receptor tyrosine kinases, such as KIT (41%), NRAS (25%), KRAS (17%), and FLT3 (8.3%). Comparative analysis of samples at the time of diagnosis and during remission was used to assess the role of mutations in the pathogenesis of the disease. Previously undescribed mutations in the KDM6A, NOTCH1, and IDH1 genes, which may be involved in leukemogenesis processes have been identified."	"Genetic profile of naïve untreated primary cutaneous melanomas with a negative sentinel lymph node. Sentinel lymph node (SLN) biopsy is typically offered to patients with primary cutaneous melanomas (PCMs) of ≥ 1 mm depth, but not all SLNs are positive using this cutoff. To ascertain whether positivity is genetically regulated, genetic analysis was performed using an augmented enrichment-based next-generation DNA and RNA sequencing assay in SLN-negative (Group 1, n = 8, mean depth 1.3 mm) and SLN-positive PCMs (controls, Group 2, n = 4, mean depth 1.4 mm). In Group 1, the mean number of mutations was 21 (range 3-48) with the most frequent mutations occurring in NF1 (75%) followed by TP53 (63%), CDKN2A and BRAF (38%), and NRAS (25%), while in Group 2, the ean number of mutations was 9.5 (range 5-18) with mutations in NRAS and BRAF being the most frequent (50%) followed by those in ATM, CDKN2A, CDKN2B, and NOTCH1 (25%). Increased frequency of NF1-inactivating mutations in Group 1 provides provocative early data that the presence of NF1 mutations might confer a less aggressive phenotype."	"Melanoma with in-frame deletion of MAP2K1: a distinct molecular subtype of cutaneous melanoma mutually exclusive from BRAF, NRAS, and NF1 mutations. While the genomics of BRAF, NRAS, and other key genes influencing MAP kinase (MAPK) activity have been thoroughly characterized in melanoma, mutations in MAP2K1 (MEK1) have received significantly less attention and have consisted almost entirely of missense mutations considered secondary oncogenic drivers of melanoma. Here, we investigated melanomas with in-frame deletions of MAP2K1, alterations characterized as MAPK-activating in recent experimental models. Our case archive of clinical melanoma samples with comprehensive genomic profiling by a hybrid capture-based DNA sequencing platform was searched for MAP2K1 genetic alterations. Clinical data, pathology reports, and histopathology were reviewed for each case. From a cohort of 7119 advanced melanomas, 37 unique cases (0.5%) featured small in-frame deletions in MAP2K1. These included E102_I103del (n = 11 cases), P105_A106del (n = 8), Q58_E62del (n = 6), I103_K104del (n = 5), I99_K104del (n = 3), L98_I103del (n = 3), and E41_F53del (n = 1). All 37 were wild type for BRAF, NRAS, and NF1 genomic alterations (&quot;triple wild-type&quot;), representing 2.0% of triple wild-type melanomas overall (37/1882). Median age was 66 years and 49% were male. The majority arose from primary cutaneous sites (35/37; 95%) and demonstrated a UV signature when available (21/25; 84%). Tumor mutational burden was typical for cutaneous melanoma (median = 9.6 mut/Mb, range 0-35.7), and frequently mutated genes included TERTp (63%), CDKN2A (46%), TP53 (11%), PTEN (8%), APC (8%), and CTNNB1 (5%). Histopathology revealed a spectrum of appearances typical of melanoma. For comparison, we evaluated 221 cases with pathogenic missense single nucleotide variants in MAP2K1. The vast majority of melanomas with missense SNVs in MAP2K1 showed co-mutations in BRAF (58%), NF1 (23%), or NRAS (18%). In-frame deletions in MAP2K1, previously shown in experimental models to be strongly MAPK-activating, characterized a significant subset of triple wild-type melanoma (2.0%), suggesting a primary oncogenic role for these mutations. Comprehensive genomic profiling of melanomas enables detection of this alteration, which may have implications for potential therapeutic options."	"Mutational landscape of patients with acute myeloid leukemia or myelodysplastic syndromes in the context of RUNX1 mutation. Introduction: RUNX1 mutations in acute myeloid leukemia (AML) and myelodysplastic syndromes (MDS) are associated with distinct clinicopathologic features. However, the clinical and laboratory characteristics of the myeloid malignancies may be influenced by the presence of more concomitant mutations. The aim of this study is to provide a further understanding of mutational landscape in the context of RUNX1 mutation in AML/MDS.Methods: The present study screened for 49 mutations using next-generation sequencing (NGS). FLT3-ITD, NPM1, and CEBPA mutations were detected by PCR Sanger sequencing.Results: One or more co-mutations were detected in all AML and 92.3% MDS patients in the context of RUNX1 mutation. The most common co-mutation was DNMT3A, followed by NRAS, IDH1, and FLT3-ITD in AML. The four more frequently co-mutated genes were U2AF1, TET2, PTPN11, and ASXL1 in MDS. We also identified a significantly difference in co-mutational spectrums between RUNX1-mutatedAML and MDS patients, as reflected in incidence of DNMT3A (35.1% vs 7.7%), FLT3-ITD (16.2% vs 0%) and U2AF1 (10.8% vs 30.7%) mutations. RUNX1-mutated AML patients with 3, or ≥4 co-mutations showed much lower CR rate than that with 2 additional mutations (p = 0.0247, 0.00919).Conclusion: RUNX1-mutated AML and MDS are associated with a different complex co-mutation cluster. Some co-mutations have certain influence on the clinical feature and CR rate in the context of RUNX1 mutation."	"Clonal lineage from normal endometrium to ovarian clear cell carcinoma through ovarian endometriosis. Clear cell carcinoma of the ovary is thought to arise from endometriosis. In addition, retrograde menstruation of shed endometrium is considered the origin of endometriosis. However, little evidence supports cellular continuity from uterine endometrium to clear cell carcinoma through endometriosis at the genomic level. Here, we performed multiregional whole-exome sequencing to clarify clonal relationships among uterine endometrium, ovarian endometriosis and ovarian clear cell carcinoma in a 56-year-old patient. Many somatic mutations including cancer-associated gene mutations in ARID1A, ATM, CDH4, NRAS and PIK3CA were shared among epithelium samples from uterine endometrium, endometriotic lesions distant from and adjacent to the carcinoma, and the carcinoma. The mutant allele frequencies of shared mutations increased from uterine endometrium to distant endometriosis, adjacent endometriosis, and carcinoma. Although a splice site mutation of ARID1A was shared among the four epithelium samples, a frameshift insertion in ARID1A was shared by adjacent endometriosis and carcinoma samples, suggesting that the biallelic mutations triggered malignant transformation. Somatic copy number alterations, including loss of heterozygosity events at PIK3CA and ATM, were identified only in adjacent endometriosis and carcinoma, suggesting that mutant allele-specific imbalance is another key factor driving malignant transformation. By reconstructing a clonal evolution tree based on the somatic mutations, we showed that the epithelium samples were derived from a single ancestral clone. Although the study was limited to a single patient, the results from this illustrative case could suggest the possibility that epithelial cells of ovarian endometriosis and clear cell carcinoma were descendants of uterine endometrial epithelium."	"17-Aminogeldanamycin Inhibits Constitutive Nuclear Factor-Kappa B (NF-κB) Activity in Patient-Derived Melanoma Cell Lines. Melanoma remains incurable skin cancer, and targeting heat shock protein 90 (HSP90) is a promising therapeutic approach. In this study, we investigate the effect of 17-aminogeldanamycin, a potent HSP90 inhibitor, on nuclear factor-kappa B (NF-κB) activity in BRAF<sup>V600E</sup> and NRAS<sup>Q61R</sup> patient-derived melanoma cell lines. We performed time-lapse microscopy and flow cytometry to monitor changes in cell confluence and viability. The NF-κB activity was determined by immunodetection of phospho-p65 and assessment of expression of NF-κB-dependent genes by quantitative real-time polymerase chain reaction (qRT-PCR), Western blotting, and enzyme-linked immunosorbent assay (ELISA). Constitutive activity of p65/NF-κB was evident in all melanoma cell lines. Differences in its level might be associated with genetic alterations in CHUK, IL1B, MAP3K14, NFKBIE, RIPK1, and TLR4, while differences in transcript levels of NF-κB-inducible genes revealed by PCR array might result from the contribution of other regulatory mechanisms. 17-Aminogeldanamycin markedly diminished the level of phospho-p65, but the total p65 protein level was unaltered, indicating that 17-aminogeldanamycin inhibited activation of p65/NF-κB. This conclusion was supported by significantly reduced expression of selected NF-κB-dependent genes: cyclin D1 (CCND1), C-X-C motif chemokine ligand 8 (CXCL8), and vascular endothelial growth factor (VEGF), as shown at transcript and protein levels, as well as secretion of IL-8 and VEGF. Our study indicates that 17-aminogeldanamycin can be used for efficient inhibition of NF-κB activity and the simultaneous diminution of IL-8 and VEGF levels in the extracellular milieu of melanoma."	"Outcomes after progression of disease with anti-PD-1/PD-L1 therapy for patients with advanced melanoma. Greater than one-half of patients with melanoma who are treated with antibodies blocking programmed cell death protein 1 receptor (anti-PD-1) experience disease progression. The objective of the current study was to identify prognostic factors and outcomes in patients with metastatic melanoma that progressed while they were receiving anti-PD-1 therapy. The authors evaluated 383 consecutively treated patients who received anti-PD-1 for advanced melanoma between 2009 and 2019. Patient and disease characteristics at baseline and at the time of progression, subsequent therapies, objective response rate (ORR), overall survival, and progression-free survival were assessed. Of 383 patients, 247 experienced disease progression. The median survival after progression was 6.8 months. There was no difference in survival noted after disease progression based on primary tumor subtype, receipt of prior therapy, or therapy type. However, significantly improved survival after disease progression correlated with clinical features at the time of progression, including normal lactate dehydrogenase, more favorable metastatic stage (American Joint Committee on Cancer eighth edition stage IV M1a vs M1b, M1c, or M1d), mutation status (NRAS or treatment-naive BRAF V600 vs BRAF/NRAS wild-type or treatment-experienced BRAF-mutant), decreasing tumor bulk, and progression at solely existing lesions. After progression, approximately 54.3% of patients received additional systemic therapy. A total of 41 patients received BRAF/MEK inhibition (ORR of 58.6%, including 70.4% for BRAF/MEK-naive patients), 30 patients received ipilimumab (ORR of 0%), and 11 patients received ipilimumab plus nivolumab (ORR of 27.3%). The current study identified prognostic factors in advanced melanoma for patients who experienced disease progression while receiving anti-PD-1, including lactate dehydrogenase, stage of disease, site of disease progression, tumor size, and mutation status."	"Juvenile myelomonocytic leukemia - A bona fide RASopathy syndrome. Juvenile myelomonocytic leukemia (JMML) is a pediatric myelodysplastic/myeloproliferative neoplasm overlap syndrome with sustained peripheral blood monocytosis, aggressive features, and poor outcomes. In &gt;90% of cases JMML is driven by germline or somatic mutations involving the canonical RAS pathway (PTPN11, NRAS, CBL, KRAS and NF1), with somatic mutations/alterations in RAS pathway genes (second hit), SETBP1, ASXL1 and JAK3 resulting in disease progression. While spontaneous regression has been seen in germline PTPN11 and CBL mutant JMML, in most patients, allogeneic stem cell transplant is the only curative modality. JMML shares several phenotypic features with its adult counterpart proliferative, chronic myelomonocytic leukemia (pCMML). pCMML largely occurs due to RAS pathway mutations that occur in the context of age related clonal hematopoiesis (TET2, SRSF2, ASXL1), while JMML is a bona fide RASopathy, with additional somatic mutations, including in epigenetic regulators genes resulting in disease progression."	"RAC1 as a Therapeutic Target in Malignant Melanoma. Small GTPases of the RAS and RHO families are related signaling proteins that, when activated by growth factors or by mutation, drive oncogenic processes. While activating mutations in KRAS, NRAS, and HRAS genes have long been recognized and occur in many types of cancer, similar mutations in RHO family genes, such as RAC1 and RHOA, have only recently been detected as the result of extensive cancer genome-sequencing efforts and are linked to a restricted set of malignancies. In this review, we focus on the role of RAC1 signaling in malignant melanoma, emphasizing recent advances that describe how this oncoprotein alters melanocyte proliferation and motility and how these findings might lead to new therapeutics in RAC1-mutant tumors."	"Metabolic Reprogramming in Metastatic Melanoma with Acquired Resistance to Targeted Therapies: Integrative Metabolomic and Proteomic Analysis. Treatments of metastatic melanoma underwent an impressive development over the past few years, with the emergence of small molecule inhibitors targeting mutated proteins, such as BRAF, NRAS, or cKIT. However, since a significant proportion of patients acquire resistance to these therapies, new strategies are currently being considered to overcome this issue. For this purpose, melanoma cell lines with mutant BRAF, NRAS, or cKIT and with acquired resistances to BRAF, MEK, or cKIT inhibitors, respectively, were investigated using both <sup>1</sup>H-NMR-based metabonomic and protein microarrays. The <sup>1</sup>H-NMR profiles highlighted a similar go and return pattern in the metabolism of the BRAF, NRAS, and cKIT mutated cell lines. Indeed, melanoma cells exposed to mutation-specific inhibitors underwent metabolic disruptions following acute exposure but partially recovered their basal metabolism in long-term exposure, most likely acquiring resistance skills. The protein microarrays inquired about the potential cellular mechanisms used by the resistant cells to escape drug treatment, by showing decreased levels of proteins linked to the drug efficacy, especially in the downstream part of the MAPK signaling pathway. Integrating metabonomic and proteomic findings revealed some metabolic pathways (i.e., glutaminolysis, choline metabolism, glutathione production, glycolysis, oxidative phosphorylation) and key proteins (i.e., EPHA2, DUSP4, and HIF-1A) as potential targets to discard drug resistance."	"Genetic heterogeneity of pediatric systemic lupus erythematosus with lymphoproliferation. Systemic lupus erythematosus (SLE) is a chronic, rare autoimmune disease. In recent years, multiple monogenic diseases with early onset autoimmunity and lymphoproliferation have been identified, such as autoimmune lymphoproliferative syndrome, rat sarcoma (RAS)-associated autoimmune leukoproliferative disease, signal transducer and activator of transcription 3 gain-of-function syndrome and interleukin-2 receptor α deficiency. Therefore, we performed whole-exome sequencing in children with SLE with lymphoproliferation to identify genes associated with these conditions.We enrolled 7 patients with SLE with lymphoproliferation from different families. Demographic data, clinical manifestations, laboratory and histopathologic findings, treatment, and outcome were documented. Whole-exome sequencing was performed in 7 patients and their families. Suspected variants were confirmed by Sanger sequencing. Protein levels were detected in patients with gene mutations by western blot.Four patients were male, and 3 were female. No consanguinity was reported within the 7 families. The average age at onset was 5.0 years (range: 1.2-10.0 years). The most common features were renal (7/7 patients) and hematologic (6/7 patients) involvement and recurrent fever (6/7 patients), while only 2 patients presented with skin involvement. Antinuclear antibodies at a titer of ≥1:320 were positive in all patients. All patients fulfilled four 2019 European League Against Rheumatism/American College of Rheumatology (EULAR/ACR) criteria for the classification of SLE. We identified a somatic activating NRAS variant (c.38 A&gt;G, p.G13C) in peripheral venous blood from 4 patients, at levels ranging from 8.8% to 42.8% in variant tissues that were absent from their parents. B cell lymphoma (BCL)-2-interacting mediator of cell death levels in peripheral blood mononuclear cells from 4 patients were markedly reduced, whereas those in the control were normal. Another 2 mutations, c.559C&gt;T (p.Q187X) in the TNFAIP3 gene and c.3061G&gt;A (p.E1021K) in the PIK3CD gene were detected in 2 patients.The SLE is a novel phenotype of somatic mutations in the NRAS gene and germline mutations in the PI3CKD gene. These genes, NRAS, TNFAIP3, and PIK3CD, should be considered candidates for children with SLE with lymphoproliferation. If patients with SLE and lymphoproliferation present with renal and hematologic involvement and recurrent fever, they need gene testing, especially male patients."	"Carbon quantum dots-decorated TiO2/g-C3N4 film electrode as a photoanode with improved photoelectrocatalytic performance for 1,4-dioxane degradation. In this study, carbon quantum dots (CQDs) were used to decorate a TiO2/g-C3N4 (TCN) film electrode. The morphological, optical, and electrochemical properties of the TiO2/g-C3N4/CQDs nanorod arrays (TCNC NRAs) film were investigated using transmission electron microscopy (TEM), scanning electron microscopy (SEM), UV-vis diffuse reflectance spectroscopy (DRS), photoluminescence (PL), and electrochemical impedance spectroscopy (EIS). The improved optical properties, photoelectrochemical properties and photoelectrocatalytic (PEC) performance of photoanode can be observed by doping CQDs onto the TCN NRAs film. Compared with TiO2 NRAs and TCN NRAs, the narrower band gap of 2.47 eV and longer lifetime of photoinduced electron-hole pairs were observed in the TCNC NRAs. Under visible light irradiation and a bias voltage of 1.2 V, the photocurrent density and 1,4-dioxane (1,4-D) removal rate of PEC process with TCNC NRAs electrode reached 0.16 mA/cm<sup>2</sup> and 77.9%, respectively, which was 2.5 times and 1.5 times of that with TCN NRAs electrode. TCNC NRAs electrode could keep &gt;75% of the 1,4-D removal rate during five cycles tests. High PEC performance with TCNC NRAs electrode could be attributed to the enhanced charge separation and the change of electron transfer mechanism from typical heterojunction to Z-scheme, which may increase the active species production and change the dominant reactive species from O2·<sup>-</sup> to ·OH. Our experimental results should be useful for studying the degradation of 1,4-D and developing efficient PEC materials."	"Genomic Profiling of Smoldering Multiple Myeloma Identifies Patients at a High Risk of Disease Progression. Smoldering multiple myeloma (SMM) is a precursor condition of multiple myeloma (MM) with a 10% annual risk of progression. Various prognostic models exist for risk stratification; however, those are based on solely clinical metrics. The discovery of genomic alterations that underlie disease progression to MM could improve current risk models. We used next-generation sequencing to study 214 patients with SMM. We performed whole-exome sequencing on 166 tumors, including 5 with serial samples, and deep targeted sequencing on 48 tumors. We observed that most of the genetic alterations necessary for progression have already been acquired by the diagnosis of SMM. Particularly, we found that alterations of the mitogen-activated protein kinase pathway (KRAS and NRAS single nucleotide variants [SNVs]), the DNA repair pathway (deletion 17p, TP53, and ATM SNVs), and MYC (translocations or copy number variations) were all independent risk factors of progression after accounting for clinical risk staging. We validated these findings in an external SMM cohort by showing that patients who have any of these three features have a higher risk of progressing to MM. Moreover, APOBEC associated mutations were enriched in patients who progressed and were associated with a shorter time to progression in our cohort. SMM is a genetically mature entity whereby most driver genetic alterations have already occurred, which suggests the existence of a right-skewed model of genetic evolution from monoclonal gammopathy of undetermined significance to MM. We identified and externally validated genomic predictors of progression that could distinguish patients at high risk of progression to MM and, thus, improve on the precision of current clinical models."	"Molecular testing on bronchial washings for the diagnosis and predictive assessment of lung cancer. Cytopathological analyses of bronchial washings (BWs) collected during fibre-optic bronchoscopy are often inconclusive for lung cancer diagnosis. To address this issue, we assessed the suitability of conducting molecular analyses on BWs, with the aim to improve the diagnosis and outcome prediction of lung cancer. The methylation status of RASSF1A, CDH1, DLC1 and PRPH was analysed in BW samples from 91 lung cancer patients and 31 controls, using a novel two-colour droplet digital methylation-specific PCR (ddMSP) technique. Mutations in ALK, BRAF, EGFR, ERBB2, KRAS, MAP2K1, MET, NRAS, PIK3CA, ROS1 and TP53 and gene fusions of ALK, RET and ROS1 were also investigated, using next-generation sequencing on 73 lung cancer patients and 14 tumour-free individuals. Our four-gene methylation panel had significant diagnostic power, with 97% sensitivity and 74% specificity (relative risk, 7.3; odds ratio, 6.1; 95% confidence interval, 12.7-127). In contrast, gene mutation analysis had a remarkable value for predictive, but not for diagnostic, purposes. Actionable mutations in EGFR, HER2 and ROS1 as well as in other cancer genes (KRAS, PIK3CA and TP53) were detected. Concordance with gene mutations uncovered in tumour biopsies was higher than 90%. In addition, bronchial-washing analyses permitted complete patient coverage and the detection of additional actionable mutations. In conclusion, BWs are a useful material on which to perform molecular tests based on gene panels: aberrant gene methylation and mutation analyses could be performed as approaches accompanying current diagnostic and predictive assays during the initial workup phase. This study establishes the grounds for further prospective investigation."	"A digital mRNA expression signature to classify challenging Spitzoid melanocytic neoplasms. Spitzoid neoplasms are a challenging group of cutaneous melanocytic proliferations. They are characterized by epithelioid and/or spindle-shaped melanocytes and classified as benign Spitz nevi (SN), atypical Spitz tumors (AST), or malignant Spitz tumors (MST). The intermediate AST category represents a diagnostically challenging group since on purely histopathological grounds, their benign or malignant character remains unpredictable. This results in uncertainties in patient treatment and prognosis. The molecular properties of Spitzoid lesions, especially their transcriptomic landscape, remain poorly understood, and genomic alterations in melanoma-associated oncogenes are typically absent. The aim of this study was to characterize their transcriptome with digital mRNA expression profiling. Formalin-fixed paraffin-embedded samples (including 27 SN, 10 AST, and 14 MST) were analyzed using the NanoString nCounter PanCancer Pathways Panel. The number of significantly differentially expressed genes in SN vs. MST, SN vs. AST, and AST vs. MST was 68, 167, and 18, respectively. Gene set enrichment analysis revealed upregulation of pathways related to epithelial-mesenchymal transition and immunomodulatory-, angiogenesis-, hormonal-, and myogenesis-associated processes in AST and MST. A molecular signature of SN vs. MST was discovered based on the top-ranked most informative genes: NRAS, NF1, BMP2, EIF2B4, IFNA17, and FZD9. The AST samples showed intermediate levels of the identified signature. This implies that the gene signature can potentially be used to distinguish high-grade from low-grade AST with a larger study cohort in the future. This combined histopathological and transcriptomic methodology is promising for prospective diagnostics of Spitzoid neoplasms and patient management in dermatological oncology."	"Tumor Location Is Associated With the Prevalence of Braf And Pik3ca Mutations in Patients with Wild-Type Ras Colorectal Cancer: A Prospective Multi-Center Cohort Study in Japan. Primary tumor location is a critical prognostic factor that also impacts the efficacy of anti-epidermal growth factor receptor (EGFR) therapy in wild-type RAS (KRAS/NRAS) metastatic colorectal cancer (CRC). However, the association between the incidence of BRAF and phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha (PIK3CA) mutations and primary tumor location remains unclear. We prospectively collected tumor samples and clinical data of patients from 15 hospitals between August 2014 and April 2016 to investigate RAS, BRAF, and PIK3CA mutations using a polymerase chain reaction-based assay. According to the primary tumor location, patients were classified to right-sided (from cecum to splenic flexure) and left-sided (from descending colon to rectum) tumor groups. In total, 577 patients with CRC were investigated, 331 patients (57%) had CRC with wild-type RAS; of these 331 patients, 10.5%, 4.8%, and 5.9% patients harbored BRAF<sup>V600E</sup>, BRAF<sup>non-V600E</sup>, and PIK3CA mutations, respectively. BRAF/PIK3CA mutations were more frequent in females, patients with right-sided tumors, and patients with peritoneal metastasis cases and less frequent in patients with liver metastases. The prevalence rates of BRAF<sup>V600E</sup> and PIK3CA mutations were higher in patients with right-sided tumors than in those with left-sided tumors (32.3% vs. 4.8% and 17.2% vs. 3.6%, respectively). More than half of the patients with right-sided CRC and wild-type RAS harbored BRAF/PIK3CA mutations, including BRAF<sup>non-V600E</sup>, which may contribute to the difference in the anti-EGFR efficacy between the right- and left-sided CRC."	"Analysis of RAS protein interactions in living cells reveals a mechanism for pan-RAS depletion by membrane-targeted RAS binders. HRAS, NRAS, and KRAS4A/KRAS4B comprise the RAS family of small GTPases that regulate signaling pathways controlling cell proliferation, differentiation, and survival. RAS pathway abnormalities cause developmental disorders and cancers. We found that KRAS4B colocalizes on the cell membrane with other RAS isoforms and a subset of prenylated small GTPase family members using a live-cell quantitative split luciferase complementation assay. RAS protein coclustering is mainly mediated by membrane association-facilitated interactions (MAFIs). Using the RAS-RBD (CRAF RAS binding domain) interaction as a model system, we showed that MAFI alone is not sufficient to induce RBD-mediated RAS inhibition. Surprisingly, we discovered that high-affinity membrane-targeted RAS binding proteins inhibit RAS activity and deplete RAS proteins through an autophagosome-lysosome-mediated degradation pathway. Our results provide a mechanism for regulating RAS activity and protein levels, a more detailed understanding of which should lead to therapeutic strategies for inhibiting and depleting oncogenic RAS proteins."	"WHO working group meeting to develop WHO Recommendations to assure the quality, safety and efficacy of enterovirus 71 vaccines. Enterovirus A71 (EV71) is one of the major causative agents of hand, foot and mouth disease (HFMD), and is sometimes associated with severe central nervous system syndromes. Vaccines against EV71 infection have been developed or are in development in several countries and few have been licensed in China. In response to requests from some of these countries, WHO convened a working group meeting in Shanghai China from 11 to 12 September 2019 to develop WHO Recommendations to assure the quality, safety and efficacy of EV71 vaccines. Meeting participants included members of the drafting group, experts from vaccine developers, manufacturers, regulators and academia. The epidemiology of EV71, as well as the development, regulation and standardization of EV71 vaccines were reviewed in the meeting. Information on R&amp;D, manufacturing, quality control and standardization of EV71 vaccines was presented by vaccine developers, manufacturers and regulators. Based on their experience, the working group discussed the main principles that would determine WHO's position on quality, safety and efficacy of EV71 vaccines. The working group agreed to develop WHO Recommendations to assure the quality, safety and efficacy of inactivated EV71 vaccines with a scope covering only whole virus inactivated vaccines. Other type of vaccines, such as EV71 virus-like particles (VLPs) will not be covered as they are still at the developmental stage. The outline of the document was agreed and will follow the usual style of WHO recommendations. It was also agreed to submit the draft Recommendations for review and adoption to the WHO ECBS in 2020 following discussion at a WHO informal consultation, which will include NRAs and vaccine manufacturers."	"Update of the recommendations for the determination of biomarkers in colorectal carcinoma: National Consensus of the Spanish Society of Medical Oncology and the Spanish Society of Pathology. In this update of the consensus of the Spanish Society of Medical Oncology (Sociedad Española de Oncología Médica-SEOM) and the Spanish Society of Pathology (Sociedad Española de Anatomía Patológica-SEAP), advances in the analysis of biomarkers in advanced colorectal cancer (CRC) as well as susceptibility markers of hereditary CRC and molecular biomarkers of localized CRC are reviewed. Recently published information on the essential determination of KRAS, NRAS and BRAF mutations and the convenience of determining the amplification of human epidermal growth factor receptor 2 (HER2), the expression of proteins in the DNA repair pathway and the study of NTRK fusions are also evaluated. From the pathological point of view, the importance of analysing the tumour budding and poorly differentiated clusters, and its prognostic value in CRC is reviewed, as well as the impact of molecular lymph node analysis on lymph node staging in CRC. The incorporation of pan-genomic technologies, such as next-generation sequencing (NGS) and liquid biopsy in the clinical management of patients with CRC is also outlined. All these aspects are developed in this guide, which, like the previous one, will remain open to any necessary revision in the future."	"Combinatorial efficacy of entospletinib and chemotherapy in patient-derived xenograft models of infant acute lymphoblastic leukemia. Survival of infants with KMT2A-rearranged (R) acute lymphoblastic leukemia (ALL) remains dismal despite intensive chemotherapy. We observed constitutive phosphorylation of spleen tyrosine kinase (SYK) and associated signaling proteins in infant ALL patient-derived xenograft (PDX) model specimens and hypothesized that the SYK inhibitor entospletinib would inhibit signaling and cell growth in vitro and leukemia proliferation in vivo. We further predicted that combined entospletinib and chemotherapy could augment anti-leukemia effects. Basal kinase signaling activation and HOXA9/MEIS1 expression differed among KMT2A-R (KMT2A-AFF1 [n=4], KMT2A-MLLT3 [n=1], KMT2A-MLLT1 [n=4]) and non-KMT2A-R [n=3] ALL specimens and stratified by genetic subgroup. Incubation of KMT2A-R ALL cells in vitro with entospletinib inhibited methylcellulose colony formation and SYK pathway signaling in a dose-dependent manner. In vivo inhibition of leukemia proliferation with entospletinib monotherapy was observed in RAS-wild-type KMT2A-AFF1, KMT2A-MLLT3, and KMT2A-MLLT1 ALL PDX models with enhanced activity in combination with vincristine chemotherapy in several models. Surprisingly, entospletinib did not decrease leukemia burden in two KMT2A-AFF1 PDX models with NRAS/ or KRAS mutations, suggesting potential RAS-mediated resistance to SYK inhibition. As hypothesized, superior inhibition of ALL proliferation was observed in KMT2A-AFF1 PDX models treated with entospletinib and the MEK inhibitor selumetinib versus vehicle or inhibitor monotherapies (p&lt;0.05). In summary, constitutive activation of SYK and associated signaling occurs in KMT2A-R ALL with in vitro and in vivo sensitivity to entospletinib. Combination therapy with vincristine or selumetinib further enhanced treatment effects of SYK inhibition. Clinical study of entospletinib and chemotherapy or other kinase inhibitors in patients with KMT2A-R leukemias may be warranted."	"Developing a tool that could reliably refute total thyroidectomy for solitary Bethesda IV thyroid nodules. To assess the reliability of a simple, accessible, cost-effective rule-out tool, for use in triaging patients with Bethesda IV nodules to appropriate surgery. The diagnostic tool was assembled by combining the negativity for suspicious ultrasound features (irregular margins, microcalcification, and a taller-than-wide orientation), and mutational marker negativity (BRAF and NRAS). The tool, (US<sup>-</sup>/mutation<sup>-</sup>), was tested on 167 patients with solitary Bethesda IV nodules. The primary outcome was its negative predictive value (NPV) for lesions requiring total thyroidectomy (TT). The impact of mutational marker negativity, as part of the tool, was evaluated by comparing the NPV of (US<sup>-</sup>/mutation<sup>-</sup>) to that of (US<sup>-</sup>/mutation<sup>+</sup>). 10 out of 167 lesions were positive for a mutational marker. These underwent TT, and only 2/10 (20%) were benign, on final histology. In 6/8 malignant lesions, TT was concordant with current clinical guidelines. 157 patients comprised the negative study cohort, for both mutational markers and suspicious US features. These underwent thyroid lobectomy, and 17 cases resulted in malignancy, only 8 of which required completion thyroidectomy. Accordingly, the NPV of (US<sup>-</sup>/mutation<sup>-</sup>) for malignancy was 89% (140/157), and 95% (149/157) for malignancy requiring TT. However, the NPV of (US<sup>-</sup>/mutation<sup>+</sup>) was 20% for malignancy, and 40% for malignancy requiring TT. These differences were statistically significant (89% vs. 20%; p &lt; 0.0001, and 95% vs. 40%; p &lt; 0.0001). US<sup>-</sup>/mutation<sup>-</sup> is a reliable rule-out tool, with sufficient diagnostic accuracy to spare patients, with Bethesda IV nodules, an overly radical TT."	"NRAS palmitoylation and oncogenic fitness. NA"	"Disease course of lung oligometastatic colorectal cancer treated with stereotactic body radiotherapy. Stereotactic body radiotherapy (SBRT) or stereotactic ablative radiotherapy (SABR) has been shown to increase survival rates in oligometastatic disease (OMD), but local control of colorectal metastases remains poor. We aimed to explore the natural course of oligometastatic colorectal cancer and to investigate how SBRT of lung metastases can delay the progression to polymetastatic disease (PMD). 107 lung oligometastases in 38 patients were treated with SBRT at a single institution. The median number of treated lesions was 2 (range 1-5). Time to PMD (ttPMD) was defined as the time from SBRT to the occurrence of &gt;5 new metastases. Genetic biomarkers such as EGFR, KRAS, NRAS, BRAF, and microsatellite instability were investigated as predictive factors for response rates. Median follow-up was 28 months. At median follow-up, 7 patients were free from disease and 31 had progression: 18 patients had sequential oligometastatic disease (SOMD) and 13 polymetastatic progression. All SOMD cases received a second SBRT course. Median progression-free survival (PFS) was 7 months (range 4-9 months); median ttPMD was 25.8 months (range 12-39 months) with 1‑ and 2‑year PFS rates of 62.5% and 53.4%, respectively. 1‑ and 2‑year local PFS (LPFS) rates were 91.5% and 80%, respectively. At univariate analysis, BRAF wildtype correlated with better LPFS (p = 0.003), SOMD after primary SBRT was associated with longer cancer-specific survival (p = 0.031). Median overall survival (OS) was 39.5 months (range 26-64 months) and 2‑year OS was 71.1%. The present results support local ablative treatment of lung metastases using SBRT in oligometastatic colorectal cancer patients, as it can delay the transition to PMD. Patients who progressed as SOMD maintained a survival advantage compared to those who developed PMD."	"P38-β/SAPK-inhibiting and apoptosis-inducing activities of (E)-4-chloro-2-((3-ethoxy-2-hydroxybenzylidene) amino)phenol. The present study has three purposes; first evaluating cytotoxicity of (E)-4-chloro-2-((3-ethoxy-2-hydroxybenzylidene)amino)phenol (ACES), second deciphering ACES-mediated cellular death mechanism, and third estimating ACES-mediated alterations in the expressions of mitogen-activated protein kinase (MAPK) pathway-related genes. Neutral red uptake assay, cell cycle analysis, mitochondrial membrane potential (MMP), reactive oxygen species (ROS) measurements, caspase 3/7 and 9 activations, and quantitative reverse transcription-polymerase chain reaction (qRT-PCR) were implemented. IC50 values of ACES-treated five cells were around 4-6 µg/mL. However, Caco-2 and Huh-7 cells were found to be twofold resistant and fivefold sensitive with IC50 values of 11 µg/mL and 0.93 µg/mL, respectively. In this study, it was initially reported that ACES exhibits selective cytotoxicity to Huh-7 cells. In addition, ACES induced apoptosis by nuclear fragmentation, MMP disruption, and intracellular ROS elevation in MCF-7 cells. qRT-PCR experiment indicated the expressions of 30 genes including ATF2, CREB1, MYC, NFATC4 (NFAT3), CCNA1, CCNB1, CCND2, CDK2, CDKN1A (p21CIP1), CDKN1C (p57KIP2), CDKN2A (p16INK4a), CDKN2B (p15INK4b), DLK1, NRAS, CDC42, PAK1, MAP4K1 (HPK1), MAP3K3 (MEKK3), MAP2K3 (MEK3), MAP2K6 (MEK6), MOS, MAPK1 (ERK2), MAPK8 (JNK1), MAPK10 (JNK3), MAPK11 (p38-β), LAMTOR3 (MP1), MAPK8IP2 (JIP-1), PRDX6 (AOP2), COL1A1, and HSPA5 (Grp78) were downregulated at least 1.5-fold. Moreover, ACES effectively inhibited expressions of genes that code for elements of p38-β/stress-activated protein kinase (SAPK) pathway. ACES has the potential to be used for the reversal of trastuzumab resistance in breast cancer patients by inhibiting p38/SAPK pathway in MCF-7 cells. Therefore, with the selective cytotoxic, apoptosis-inducing, and p38-β/SAPK-inhibiting activities, ACES can be utilized for developing a novel anticancer drug."	"RAS internal tandem duplication disrupts GTPase-activating protein (GAP) binding to activate oncogenic signaling. The oncogene RAS is one of the most widely studied proteins in cancer biology, and mutant active RAS is a driver in many types of solid tumors and hematological malignancies. Yet the biological effects of different RAS mutations and the tissue-specific clinical implications are complex and nuanced. Here, we identified an internal tandem duplication (ITD) in the switch II domain of NRAS from a patient with extremely aggressive colorectal carcinoma. Results of whole-exome DNA sequencing of primary and metastatic tumors indicated that this mutation was present in all analyzed metastases and excluded the presence of any other clear oncogenic driver mutations. Biochemical analysis revealed increased interaction of the RAS ITD with Raf proto-oncogene Ser/Thr kinase (RAF), leading to increased phosphorylation of downstream MAPK/ERK kinase (MEK)/extracellular signal-regulated kinase (ERK). The ITD prevented interaction with neurofibromin 1 (NF1)-GTPase-activating protein (GAP), providing a mechanism for sustained activity of the RAS ITD protein. We present the first crystal structures of NRAS and KRAS ITD at 1.65-1.75 Å resolution, respectively, providing insight into the physical interactions of this class of RAS variants with its regulatory and effector proteins. Our in-depth bedside-to-bench analysis uncovers the molecular mechanism underlying a case of highly aggressive colorectal cancer and illustrates the importance of robust biochemical and biophysical approaches in the implementation of individualized medicine."	"Genomic characterization of high-recurrence risk papillary thyroid carcinoma in a southern Chinese population. The objective of this study was to investigate genetic variations and the relationships between these genetic variations and clinicopathological features of high-recurrence risk papillary thyroid carcinoma in a southern Chinese population. One hundred sixty-eight patients of high-recurrence risk papillary thyroid carcinoma were recruited for this study from 2017 to 2018. Formalin-fixed paraffin-embedded tissue and the data of clinicopathological characteristics were all collected and analyzed from these patients. We used next-generation sequencing technology to investigate the targeted gene mutations and gene fusions of the pathology specimens. The frequency of candidate tumor driver gene mutation was 85.1% in 143 patients, including BRAF V600E mutation in 119 patients(70.8%), RET fusion in 13 patients(7.7%), TERT promoter mutations in 11 patients(6.5%), RAS (HRAS, NRAS, KRAS) gene mutations in 10 patients(6.0%), and other mutations involving TP53, PIK3CA, AKT1, PTEN and NTRK1. Concomitant presence of more than two genetic aberrations was seen in 27 patients (16.1%). Our study showed that BRAF V600E mutation is highly correlated with conventional PTC (p &lt; 0.001), BRAF V600E and TERT promoter mutation duet was associated with older patient age (&gt; 45, p = 0.003) and higher disease stage of III or IV (p = 0.002). RAS gene and BRAF V600E co-mutations were only seen in multifocal PTC (p = 0.015). In our high-recurrence risk PTC cohort, most patients had more than one driver gene aberration. Coexistence of BRAF V600E with TERT promoter mutations or with RAS mutations were significantly correlated with worse clinicopathological characteristics."	"[Clinicopathological and genetic characteristics of lung cancer in the lungs of explanted from lung transplant recipients]. Objective: To describe the clinicopathological features of the lung cancers in the lungs explanted from lung transplant recipients, and to understand the molecular alterations of these cancers. Methods: The patients who underwent lung transplantation in China-Japan Friendship Hospital from March 2017 to December 2018 were reviewed. Clinical data of the patients with lung cancer associated with end-stage interstitial lung diseases (ILD) were collected. Hematoxylin-eosin staining and immunohistochemistry were performed to evaluate the pathological feature. Real-time quantitative PCR was performed to analyze the hotspots and targeted regions of 9 cancer-associated genes. Results: Among the 154 identified patients, 10 met the inclusion criteria and were included. The detection rate of lung cancer in the lung transplantation patients was 6.5%(10/154). All of the included 10 patients were male, with an average age of 59 years. They all had a history of heavy smoking. Three cases had a lung cancer diagnosed before operation, while the other 7 cases were concealed in the specimen of end-stage ILD. All of lung cancers were non-small-cell carcinoma, including 8 cases of adenocarcinoma and 2 cases of squamous cell carcinoma. The proportion of mucinous adenocarcinoma components was 3/10. The mutations in KRAS gene exon 2 were detected in two patients with mucous adenocarcinoma, while no alterations in NRAS, EGFR, ALK, ROS1, BRAF, HER2, PI3KCA and RET were detected in the remaining patients. Conclusions: Lung cancers are difficult to detect in patients with end-stage ILD. They are mainly adenocarcinomas and associated with a higher frequency of mutations in KRAS gene. These cancers have limited treatment options and a poor prognosis. 目的: 观察肺移植切除病肺中合并肺癌的临床病理特征,了解其常见驱动基因改变情况。 方法: 分析2017年3月至2018年12月间中日友好医院肺移植术154例病肺标本,收集其中10例终末期间质性肺疾病合并肺癌患者的临床资料,采用HE染色,免疫组织化学染色及荧光PCR法进行病理学观察及肺癌常见驱动基因突变检测。 结果: 肺移植病例中肺癌检出率为6.5%(10/154),10例患者均为男性,平均年龄59岁,重度吸烟病史,基础性肺疾病以特发性肺纤维化多见(4/10)。3例术前明确诊断肿瘤,7例经术后病理检查方才确诊。组织学类型均为非小细胞性癌,其中腺癌8例,鳞状细胞癌2例,出现黏液腺癌成分的比例为3/10。2例伴有黏液腺癌成分的病例检出KRAS基因第2号外显子突变,其余病例未检出NRAS、表皮生长因子受体(EGFR)、间变性淋巴瘤激酶(ALK)、ROS1、BRAF、HER2、PI3KCA及RET基因改变。 结论: 肺癌在终末期间质性肺疾病患者中难以检出,组织学类型以腺癌为主,并且KRAS基因突变发生率高。患者治疗手段有限,预后差。."	"Integration of Liquid Biopsies into Clinical Laboratory Applications via NGS in Cancer Diagnostics. Next Generation Sequencing is one of the latest advances in molecular testing and clinical laboratory applications. Next Generation Sequencing techniques involving liquid biopsies are emerging as important tools in cancer diagnostics and prognostics. Thus, integration of liquid biopsy studies into clinical laboratory applications has become a necessity. By virtue of liquid biopsies, determining potential treatment targets through metastasis and primary tumor sites in the right clinical context can result in a more comprehensive treatment. This also helps to overcome re-sampling difficulties which require an invasive procedure with the problem of tumor heterogeneity. As the literature involving liquid biopsies and next generation sequencing increases, the rate of laboratories with competencies and experience in this novel technology remains limited. Next generation sequencing was performed via a comprehensive multi-gene cancer panel (Actionable In-sight Solid Tumor Panel, Qiagen) consisting of 12 solid tumor related genes (EGFR, ALK, KRAS, PIK3CA, NRAS, PDGFRA, KIT, ERBB2, ERBB3, ESR1, BRAF and RAF1) from lung cancer patients who applied or were referred to CU AGENTEM (Cukurova University Adana Genetic Diseases Diagnosis and Treatment Center) for routine genetic testing. A modified next generation sequencing workflow was performed with a multi-gene solid tumor panel using liquid biopsies in comparison with formalin fixed paraffin embedded samples to integrate this technique into the routine clinical laboratory applications and bioinformatics. In this study, next generation sequencing of liquid biopsies in cancer patients was integrated into cancer diagnostics. Liquid biopsy studies provide numerous advantages when integrated with next generation sequencing through a well-optimized workflow."	"Targeting PHGDH upregulation reduces glutathione levels and re-sensitizes resistant NRAS mutant melanoma to MEK inhibition. Melanomas frequently harbor activating NRAS mutations leading to activation of MEK-ERK1/2 signaling; however, clinical efficacy of inhibitors to this pathway are limited by resistance. Tumors re-wire metabolic pathways in response to stress signals such as targeted inhibitors and drug resistance, but most therapeutic resistant pre-clinical models are generated in conditions that lack physiological metabolism. We generated human NRAS mutant melanoma xenografts that were resistant to the MEK inhibitor (MEKi), PD0325901, in vivo. MEKi-resistant (MEKiR) cells showed cross-resistance to the structurally distinct MEKi, trametinib, and elevated ERK1/2 phosphorylation and downstream signaling. Additionally, we observed upregulation of the serine synthesis pathway and phosphoglycerate dehydrogenase (PHGDH), a key enzyme in this pathway. Suppressing PHGDH in MEKiR cells together with MEKi treatment decreased oxidative stress tolerance and cell proliferation. Together, our data suggest targeting PHGDH as a potential strategy in overcoming MEKi resistance."	"Molecular mechanisms of resistance to BRAF and MEK inhibitors in BRAF<sup>V600E</sup> non-small cell lung cancer. BRAF is a confirmed therapeutic target in non-small cell lung cancer (NSCLC), as the BRAF inhibitor dabrafenib, in combination with the MEK inhibitor trametinib, is approved for the treatment of NSCLC harbouring BRAF V600E mutation. Scant evidence is available concerning the mechanisms of resistance to BRAF/MEK inhibitors in BRAF<sup>V600E</sup> NSCLC. Patients with BRAF<sup>V600E</sup> NSCLC with acquired resistance to BRAF/MEK inhibitors were included in the institutional, prospective MATCH-R (from &quot;Matching Resistance&quot;) trial and underwent tumour and liquid biopsies at the moment of radiological progression. Extensive molecular analyses were performed, including targeted next-generation sequencing (NGS), whole-exome sequencing (WES), RNA sequencing and comparative genomic hybridisation (CGH) array. Of the 11 patients included, eight had progressed on dabrafenib-trametinib combination, two on dabrafenib monotherapy and one on vemurafenib (BRAF inhibitor). Complete molecular analyses were available for seven patients, whereas an additional case had only targeted NGS and CGH array data. Among these eight patients, acquired molecular events potentially responsible for resistance were detected in three who progressed on dabrafenib-trametinib combination, that is, MEK1 K57N, RAS viral (v-ras) oncogene homolog (NRAS) Q61R and rat sarcoma viral oncogene homolog (KRAS) Q61R mutations. One patient progressing on dabrafenib monotherapy developed a PTEN frameshift mutation. No molecular hints addressing resistance emerged in the remaining four patients with analyses performed. Tumour mutational burden, evaluated by WES in seven patients, was low (median = 2.06 mutations/megabase, range = 1.57-3.75 mut/Mb). Novel resistance mechanisms to BRAF/MEK inhibitors in BRAF<sup>V600E</sup> NSCLC were identified, pointing out the recurring involvement of the MAPK pathway and guiding the development of new treatment strategies."	"Novel three-way complex rearrangement of TRPM1-PUM1-LCK in a case of agminated Spitz nevi arising in a giant congenital hyperpigmented macule. The genetic anomalies associated with the agminated variant of Spitz nevus have so far been limited to HRAS G13R mutations, especially when arising within a nevus spilus. A previous report exposed the case of a man with a giant pigmented macule involving his upper right limb and trunk. Since childhood, Spitz nevi have been periodically arising, within the pigmented area. The histopathology of several lesions displayed the usual criteria of junctional, compound, or intradermal Spitz nevi with a diversity of cytomorphological and architectural features. Some lesions spontaneously regressed. Genetic studies confirmed in three lesions an identical translocation involving TRPM1, PUM1, and LCK. No mutations in HRAS, NRAS, BRAF, or other known fusion genes linked to Spitz nevus were detected. LCK break-apart fluorescence in situ hybridization confirmed the rearrangement was present not only in the melanocytic proliferation but also in the surrounding non-spitzoid melanocytes. This report expands the list of genetic alterations involved both in giant congenital macules and in agminated Spitz nevi, and also extends the concept of mosaicism in melanocytes to gene translocations."	"HotSpotAnnotations-a database for hotspot mutations and annotations in cancer. Hotspots, recurrently mutated DNA positions in cancer, are thought to be oncogenic drivers because random chance is unlikely and the knowledge of clear examples of oncogenic hotspots in genes like BRAF, IDH1, KRAS and NRAS among many other genes. Hotspots are attractive because provide opportunities for biomedical research and novel treatments. Nevertheless, recent evidence, such as DNA hairpins for APOBEC3A, suggests that a considerable fraction of hotspots seem to be passengers rather than drivers. To document hotspots, the database HotSpotsAnnotations is proposed. For this, a statistical model was implemented to detect putative hotspots, which was applied to TCGA cancer datasets covering 33 cancer types, 10 182 patients and 3 175 929 mutations. Then, genes and hotspots were annotated by two published methods (APOBEC3A hairpins and dN/dS ratio) that may inform and warn researchers about possible false functional hotspots. Moreover, manual annotation from users can be added and shared. From the 23 198 detected as possible hotspots, 4435 were selected after false discovery rate correction and minimum mutation count. From these, 305 were annotated as likely for APOBEC3A whereas 442 were annotated as unlikely. To date, this is the first database dedicated to annotating hotspots for possible false functional hotspots."	"Comprehensive analysis of mutations of renal cell carcinoma in an autosomal dominant polycystic kidney disease patient. Renal cell carcinoma (RCC) is known to be more prevalent in autosomal dominant polycystic kidney disease (ADPKD) patients than in the general population. However, little is known about genetic alterations or changes in signaling pathways in RCC in patients with ADPKD.In the current report, whole-exome and transcriptome sequencing was performed for paired samples of tumor tissue, cyst tissue, and peripheral blood (triple set) from a patient diagnosed with ADPKD and RCC.A 68-year-old man with ADPKD underwent left partial nephrectomy and was diagnosed with RCC. DNA and RNA were extracted from the triple set of the patient. A nonsense mutation in PKD2 (p.Arg742X), which is well known as a pathogenic variant in ADPKD, was identified in the paired triple set. In the tumor sample, a somatic missense mutation of VHL (p.S65L) was found, which is known as a pathogenic mutation in Von Hippel-Lindau syndrome and RCC. Furthermore, loss of chromosome 3p, where VHL is located, was detected. Upregulated VEGFA was found in the analysis of RCC mRNA, which might be caused by the loss of VHL and accelerate angiogenesis in RCC.Proliferation was also expected to be activated by the MAPK signaling pathway, including NRAS and MAPK1 expression."	"Clinicopathological study of intraductal carcinoma of the salivary gland, with emphasis on the apocrine type. Intraductal carcinoma (IC) is a rare salivary gland tumor with low- to intermediate-grade cytological features. It is further classified into intercalated duct type and apocrine type based on its distinct histologic and immunohistochemical expression. Conventional salivary duct carcinoma (SDC) is an aggressive carcinoma with high-grade features and is usually associated with poor prognosis. In this study, immunohistochemistry and mutation analyses (including HRAS/PIK3CA mutations, RET rearrangement, and human epidermal growth factor receptor 2 [HER2] amplification) of 9 ICs (including 3 pure ICs, 6 ICs with invasive carcinoma) and 24 conventional SDCs were performed and the results were compared. Four intercalated duct-type cases were positive for SOX10 and S100 and negative for AR; five apocrine-type cases showed opposite results. All five apocrine-type cases had cysts with relatively circumscribed tumor borders and morphologically mimicking breast low-grade ductal carcinoma in situ or papillary carcinoma. RET fusion is detected in half of the 4 intercalated duct-type IC but not in the apocrine-type or conventional SDC. HER2 amplification was only observed in conventional SDC. The monoclonal antibody (clone RBT-NRAS) against NRAS Q61R is a sensitive and specific marker used for detecting HRAS Q61R mutation in the salivary gland tumors. The apocrine-type IC had different cytological grades, distinct tumor growth patterns, and no evidence of low- to high-grade transition, suggesting that apocrine-type IC should be distinguished from apocrine SDC with an in situ component."	"KRAS amplification in metastatic colon cancer is associated with a history of inflammatory bowel disease and may confer resistance to anti-EGFR therapy. Mutations in RAS occur in 30-50% of metastatic colorectal carcinomas (mCRCs) and correlate with resistance to anti-EGFR therapy. Consequently, mCRC biomarker guidelines state RAS mutational testing should be performed when considering EGFR inhibitor treatment. However, a small subset of mCRCs are reported to harbor RAS amplification. In order to elucidate the clinicopathologic features and anti-EGFR treatment response associated with RAS amplification, we retrospectively reviewed a large cohort of mCRC patients that underwent targeted next-generation sequencing and copy number analysis for KRAS, NRAS, HRAS, BRAF, and PIK3CA. Molecular testing was performed on 1286 consecutive mCRC from 1271 patients as part of routine clinical care, and results were correlated with clinicopathologic findings, mismatch repair (MMR) status and follow-up. RAS amplification was detected in 22 (2%) mCRCs and included: KRAS, NRAS, and HRAS for 15, 5, and 2 cases, respectively (6-21 gene copies). Patients with a KRAS-amplified mCRC were more likely to report a history of inflammatory bowel disease (p &lt; 0.001). In contrast, mutations in KRAS were associated with older patient age, right-sided colonic origin, low-grade differentiation, mucinous histology, and MMR proficiency (p ≤ 0.017). Four patients with a KRAS-amplified mCRC and no concomitant RAS/BRAF/PIK3CA mutations received EGFR inhibitor-based therapy, and none demonstrated a clinicoradiographic response. The therapeutic impact of RAS amplification was further evaluated using a separate, multi-institutional cohort of 23 patients. Eight of 23 patients with KRAS-amplified mCRC received anti-EGFR therapy and all 8 patients exhibited disease progression on treatment. Although the number of KRAS-amplified mCRCs is limited, our data suggest the clinicopathologic features associated with mCRC harboring a KRAS amplification are distinct from those associated with a KRAS mutation. However, both alterations seem to confer EGFR inhibitor resistance and, therefore, RAS testing to include copy number analyses may be of consideration in the treatment of mCRC."	"Oncogenic states dictate the prognostic and predictive connotations of intratumoral immune response. An immune active cancer phenotype typified by a T helper 1 (Th-1) immune response has been associated with increased responsiveness to immunotherapy and favorable prognosis in some but not all cancer types. The reason of this differential prognostic connotation remains unknown. To explore the contextual prognostic value of cancer immune phenotypes, we applied a multimodal pan-cancer analysis among 31 different histologies (9282 patients), encompassing immune and oncogenic transcriptomic analysis, mutational and neoantigen load and copy number variations. We demonstrated that the favorable prognostic connotation conferred by the presence of a Th-1 immune response was abolished in tumors displaying specific tumor-cell intrinsic attributes such as high transforming growth factor-beta (TGF-β) signaling and low proliferation capacity. This observation was independent of mutation rate. We validated this observation in the context of immune checkpoint inhibition. WNT-β catenin, barrier molecules, Notch, hedgehog, mismatch repair, telomerase activity and AMPK signaling were the pathways most coherently associated with an immune silent phenotype together with mutations of driver genes including IDH1/2, FOXA2, HDAC3, PSIP1, MAP3K1, KRAS, NRAS, EGFR, FGFR3, WNT5A and IRF7. This is the first systematic study demonstrating that the prognostic and predictive role of a bona fide favorable intratumoral immune response is dependent on the disposition of specific oncogenic pathways. This information could be used to refine stratification algorithms and prioritize hierarchically relevant targets for combination therapies."	"Development and Clinical Validation of Discriminatory Multitarget Digital Droplet PCR Assays for the Detection of Hot Spot KRAS and NRAS Mutations in Cell-Free DNA. Detection and quantification of tumor-derived KRAS and NRAS mutations in plasma cell-free DNA (cfDNA) holds great potential for cancer diagnostics and treatment response monitoring. Because of high sensitivity, specificity, robustness, and affordability, digital droplet PCR (ddPCR) is ideally suited for this application but requires discriminatory multiplexing when used as screening assay. We therefore designed, optimized, and clinically validated mutation-specific locked nucleic acid-based ddPCR assays for 14 commonly occurring KRAS and NRAS mutations and assembled these assays into seven discriminatory multitarget screening assays covering two to six single-nucleotide variants each. Limit of detection, limit of blank, and interassay accuracy were determined. Assay performance and suitability for screening in cfDNA were validated with plasma samples from a clinically fully characterized cohort of pancreatic cancer patients and healthy controls. Limits of detection for single-target assays were between 0.0015% and 0.069% variant allele fraction, and between 0.022% and 0.16% for multitarget assays. Dilution linearity and interassay accuracy were excellent throughout (r<sup>2</sup> &gt; 0.99). Multitarget assay screening of cfDNA extracted from pancreatic cancer patients with unknown KRAS mutational status correctly identified single-nucleotide variants in 45 of 45 (100%) of tumor-derived cell-free DNA-positive samples. In summary, we herein present and clinically validate generic single-target and discriminatory multitarget ddPCR assays for KRAS and NRAS hot spot mutations with broad applicability for clinical and translational research."	"Efficient Suppression of NRAS-Driven Melanoma by Co-inhibition of ERK1/2 and ERK5 MAPK Pathways. Cutaneous melanoma is a highly malignant tumor typically driven by somatic mutation in the oncogenes BRAF or NRAS, leading to uncontrolled activation of the MEK/ERK MAPK pathway. Despite the availability of immunotherapy, MAPK pathway‒targeting regimens are still a valuable treatment option for BRAF-mutant melanoma. Unfortunately, patients with NRAS mutation do not benefit from such therapies owing to the lack of targetable BRAF mutations and a high degree of intrinsic and acquired resistance toward MEK inhibition. Here, we demonstrate that concomitant inhibition of ERK5 removes this constraint and effectively sensitizes NRAS-mutant melanoma cells for MAPK pathway‒targeting therapy. Using approved MEK inhibitors or a pharmacologic ERK inhibitor, we demonstrate that MAPK inhibition triggers a delayed activation of ERK5 through a PDGFR inhibitor-sensitive pathway in NRAS-mutant melanoma cells, resulting in sustained proliferation and survival. ERK5 phosphorylation also occurred naturally in NRAS-mutant melanoma cells and correlated with nuclear localization of its stem cell-associated effector KLF2. Importantly, MEK/ERK5 co-inhibition prevented long-term growth of human NRAS-mutant melanoma cells in vitro and effectively repressed tumor progression in a xenotransplant mouse model. Our findings suggest MEK/ERK5 cotargeting as a potential treatment option for NRAS-mutant melanoma, which currently is not amenable for targeted therapies."	"Frequent KIT mutations in skin lesions of patients with BRAF wild-type Langerhans cell histiocytosis. Langerhans cell histiocytosis (LCH) is characterized by mutations of the RAS-RAF-MAPK signaling pathway. We analyzed MAP2K1, NRAS and KIT mutation incidence in skin lesions of BRAF wild-type (wt) LCH patients. We evaluated the occurrence of MAP2K1, NRAS and KIT mutations in seven LCH and one indeterminate cell histiocytosis (ICH) patients. MAP2K1 mutation frequency was found to be 3/7 (42.9%) in LCH and also found in ICH. Similarly, the KIT mutation frequency was found to be equally prevalent (4/7, 57.1%) in LCH and also occurred in ICH. Involvement of KIT exons in LCH-ICH indicated that exon 9/11/18 were equally prevalent followed by exon 13. This exploratory analysis on BRAF-wt LCH revealed a KIT mutation rate comparable to MAP2K1. Although the detected KIT mutations are different from activating mutations found in other KIT-dependent neoplasms, our data suggest that KIT-inhibitors might have a role in treating BRAF-wt LCH patients."	"Mutational Profiling of Driver Tumor Suppressor and Oncogenic Genes in Brazilian Malignant Pleural Mesotheliomas. Malignant pleural mesothelioma (MPM) is a highly lethal disease comprising a heterogeneous group of tumors with challenging to predict biological behavior. The diagnosis is complex, and the histologic classification includes 2 major subtypes of MPM: epithelioid (∼60% of cases) and sarcomatous (∼20%). Its identification depends upon pathological investigation supported by clinical and radiological evidence and more recently ancillary molecular testing. Treatment options are currently limited, with no known targeted therapies available. To elucidate the mutation profile of driver tumor suppressor and oncogenic genes in a cohort of Brazilian patients. We sequenced 16 driver genes in a series of 43 Brazilian malignant mesothelioma (MM) patients from 3 distinct Brazilian centers. Genomic DNA was extracted from formalin-fixed paraffin-embedded tumor tissue blocks, and the TERT promoter region was amplified by PCR followed by direct capillary sequencing. The Illumina TruSight Tumor 15 was used to evaluate 250 amplicons from 15 genes associated with solid tumors (AKT1, GNA11, NRAS, BRAF, GNAQ, PDGFRA, EGFR, KIT, PIK3CA, ERBB2, KRAS, RET, FOXL2, MET,and TP53). Library preparation with the TruSight Tumor 15 was performed before sequencing at the MiSeq platform. Data analysis was performed using Sophia DDM software. Out of 43 MPM patients, 38 (88.4%) were epithelioid subtype and 5 (11.6%) were sarcomatoid histotype. Asbestos exposure was present in 15 (39.5%) patients with epithelioid MPM and 3 (60%) patients with sarcomatoid MPM. We found a TERT promoter mutation in 11.6% of MM, and the c.-146C&gt;T mutation was the most common event. The next-generation sequencing was successful in 33 cases. A total of 18 samples showed at least 1 pathogenic, with a median of 1.8 variants, ranging from 1 to 6. The most mutated genes were TP53 and ERBB2 with 7 variants each, followed by NRAS BRAF, PI3KCA, EGFR and PDGFRA with 2 variants each. KIT, AKT1, and FOXL2 genes exhibited 1 variant each. Interestingly, 2 variants observed in the PDGFRA gene are classic imatinib-sensitive therapy. We concluded that Brazilian MPM harbor mutation in classic tumor suppressor and oncogenic genes, which might help in the guidance of personalized treatment of MPM."	"Human papillomavirus-negative epithelial proliferations resembling condylomata acuminata in a patient receiving vemurafenib for Stage IV melanoma. With the discovery of v-Raf murine sarcoma viral oncogene homolog B (BRAF) inhibitors, new treatment possibilities arose against metastatic melanoma. A frequent adverse effect of BRAF inhibitor therapy is the induction of epithelial proliferations such as cutaneous squamous cell carcinoma and verrucous papilloma. Here, we describe a case in which a patient developed extensive anal epithelial proliferations resembling condylomata acuminata, after starting vemurafenib treatment. This adverse effect has rarely been reported in the literature. Interestingly, the lesions in our patient were negative for human papillomavirus, and mutations in BRAF, Neuroblastoma rat sarcoma viral oncogene homolog (NRAS), Kirsten rat sarcoma viral oncogene homolog (KRAS), and Harvey rat sarcoma viral oncogene homolog (HRAS) were not detected. Different pathways can contribute to these epithelial proliferations resembling condylomata acuminata. We show the relevance of a detailed history at the beginning and during treatment, instructions, education, and dermatological follow-up (including the genital area) for patients treated with BRAF inhibitors. Condylomata acuminata can influence the quality of life and are treated, in an early stage, with cryotherapy, coagulation, imiquimod, and/or CO2 laser therapy."	"A twelve-gene signature for survival prediction in malignant melanoma patients. Melanoma is defined as a highly mutational heterogeneous disease containing numerous alternations of the molecule. However, due to the phenotypically and genetically heterogeneity of malignant melanoma, conventional clinical characteristics remain restricted or limited in the ability to accurately predict individual outcomes and survival. This study aimed to establish an accurate gene expression signature to predict melanoma prognosis. In this study, we established an RNA sequencing-based 12-gene signature data of melanoma patients obtained from 2 independent databases: the Cancer Genome Atlas (TCGA) database and the Gene Expression Omnibus (GEO) database. We evaluated the quality of each gene to predict survival conditions in each database by employing univariate and multivariate regression models. A prognostic risk score based on a prognostic signature was determined. This prognostic gene signature further classified patients into low-risk and high-risk groups. Based on a prognostic signature, a prognostic risk score was determined. This prognostic gene signature further divided the patients into low-risk and high-risk groups. In the chemotherapy and radiotherapy groups of the TCGA cohort and V-raf murine sarcoma viral oncogene homolog B1 (BRAF) expression group in the GEO cohort, patients in the low-risk group had a longer survival duration compared to patients in the high-risk group. Nevertheless, the immunotherapy group in the TCGA database and neuroblastoma RAS viral oncogene homolog (NRAS) expression group in the GEO database had no significant differences in statistics. Moreover, this gene signature was associated with patient prognosis regardless of whether the Breslow depth was greater than or less than 3.75 mm. Stratified gene set enrichment analysis (GSEA) revealed that certain immune-related pathways, such as the T-cell signaling pathway, chemokine signaling pathway, and primary immunodeficiency, were significantly enriched in the low-risk group of both TCGA and GEO cohorts. This information implied the immune-related properties of the 12-gene signature. Our study emphasizes the significance of the gene expression signature in that it may be an indispensable prognostic predictor in melanoma and has great potential for application in personalized treatment."	"Melanoma Genomics. The incidence of cutaneous melanoma continues to increase in pale skinned peoples in Europe and elsewhere. Epidemiological studies identified genetically determined phenotypes such as pale skin, freckles and red hair, and sunburn as risk factors for this cancer. The development of many melanocytic naevi is also genetically determined and a strong melanoma risk phenotype. Not surprisingly then, genome wide association studies have identified pigmentation genes as common risk genes, and to a lesser extent, genes associated with melanocytic naevi. More unexpectedly, genes associated with telomere length have also been identified as risk genes. Higher risk susceptibility genes have been identified, particularly CDKN2A as the most common cause, and very rarely genes such as CDK4, POT1, TERT and other genes in coding for proteins in the shelterin complex are found to be mutated. Familial melanoma genes are associated with an increased number of melanocytic naevi but not invariably and the atypical naevus phenotype is therefore an imperfect marker of gene carrier status. At a somatic level, the most common driver mutation is BRAF, second most common NRAS, third NF1 and increasing numbers of additional rarer mutations are being identified such as in TP53. It is of note that the BRAF and NRAS mutations are not C&gt;T accepted as characteristic of ultraviolet light induced mutations."	"In vivo antitumoral effect of 4-nerolidylcatechol (4-NC) in NRAS-mutant human melanoma. NRAS-mutations arise in 15-20% of all melanomas and are associated with aggressive disease and poor prognosis. Besides, the treatment for NRAS-mutant melanoma are not very efficient and is currently limited to immune checkpoints inhibitors or aggressive chemotherapy. 4-nerolidylcathecol (4-NC), a natural product extracted from Pothomorphe umbellata, induces apoptosis in melanoma cells by ROS production, DNA damage and increased p53 expression, in addition to inhibiting invasion in reconstructed skin. Moreover, 4-NC showed cytotoxicity in BRAF/MEKi-resistant and naive melanoma cells by Endoplasmic Reticulum (ER) stress induction in vitro. We evaluated the in vivo efficacy and the systemic toxicity of 4-NC in a NRAS-mutant melanoma model. 4-NC was able to significantly suppress tumor growth 4-fold compared to controls. Cleaved PARP and p53 expression were increased indicating cell death. As a proof of concept, MMP-2 and MMP-14 gene expression were decreased, demonstrating a possible role of 4-NC in melanoma invasion inhibition. Toxicological analysis indicated minor changes in the liver and bone marrow, but this toxicity was very mild when compared to other proteasome inhibitors and ER stress inductors already described. Our data indicate that 4-NC can counteract melanoma growth in vivo with minor adverse effects, suggesting further investigation as a potential NRAS-mutant melanoma treatment."	"The role of AIP variants in pituitary adenomas and concomitant thyroid carcinomas in the Netherlands: a nationwide pathology registry (PALGA) study. Germline mutations in the aryl-hydrocarbon receptor interacting protein (AIP) have been identified often in the setting of familial isolated pituitary adenoma (FIPA). To date there is no strong evidence linking germline AIP mutations to other neoplasms apart from the pituitary. Our primary objective was to investigate the prevalence of AIP gene mutations and mutations in genes that have been associated with neuroendocrine tumors in series of tumors from patients presenting with both pituitary adenomas and differentiated thyroid carcinomas (DTCs). Pathology samples were retrieved from all pituitary adenomas in patients with concomitant DTCs, including one with a known germline AIP variant. Subsequently, two additional patients with known germline AIP variants were included, of which one presented only with a follicular thyroid carcinoma (FTC). In total, 17 patients (14 DTCs and 15 pituitary adenomas) were investigated by targeted next generation sequencing (NGS). The pituitary tumor samples revealed no mutations, while among the thyroid tumor samples BRAF (6/14, 42.9%) was the most frequently mutated gene, followed by NRAS (3/11, 27.3%). In one AIP-mutated FIPA kindred, the AIP-variant c.853C&gt;T; p.Q285* was confirmed in the FTC specimen, including evidence of loss of heterozygosity (LOH) at the AIP locus in the tumor DNA. Although most observed variants in pituitary adenomas and DTCs were similar to those of sporadic DTCs, we confirmed in one AIP mutation-positive case the AIP-variant and LOH at this locus in an FTC specimen, which raises the potential role of the AIP mutation as a rare initiating event."	"Single-Center Experience With Epigenetic Treatment for Juvenile Myelomonocytic Leukemia. Background: Juvenile myelomonocytic leukemia (JMML) is a rare myelodysplastic/myeloproliferative neoplasm diagnosed in young children, characterized by somatic or germline mutations that lead to hyperactive RAS signaling. The only curative option is hematopoietic stem cell transplantation (HSCT). Recent data showing that aberrant DNA methylation plays a significant role in pathogenesis and correlates with clinical risk suggest a possible benefit of hypomethylating agents (HMA) in JMML treatment. Aim: The aim is to report the results of HMA-based therapy with 5-azacytidine (AZA) in three JMML patients treated in a single center, non-participating in EWOG-MDS study. Methods: The diagnosis and treatment response were evaluated according to international consensus criteria. AZA 75 mg/m<sup>2</sup> intravenous (i.v.) was administered once daily on days 1-7 of each 28-day cycle. All patients were monitored for hematologic response, spleen size, and evolution of extramedullary disease. Targeted next generation sequencing (NGS) were performed after the 3rd AZA cycle and before SCT to evaluate the molecular alterations and genetic response. Results: Three patients diagnosed with JMML were treated with AZA (off-label indication) in Pediatric Department of Fundeni Clinical Institute, Bucharest, Romania between 2017 and 2019. There were two females and one male with median age 11 months, range 2-16 months. The cytogenetic analysis showed normal karyotype in all patients. Molecular analysis confirmed KRAS G13D mutation in two patients and NRAS G12D mutation in one patient. The clinical evaluation showed important splenomegaly and hepatomegaly in all 3 pts. One patient received AZA for early relapse after haploidentical HSCT and the other two patients received upfront AZA, as bridging therapy before HSCT. After HMA therapy, 2/3 patients achieved clinical partial response (cPR), 1/3 had clinical stable disease (cSD) and all had genetic stable disease (gSD) after 3 cycles and were able to receive the planned HSTC. One patient achieved clinical and genetic complete response before HSCT. During 22 cycles of AZA there were only four adverse events but only one determined dose reduction and treatment delay. Conclusion: Our data show that AZA monotherapy is safe and effective in controlling disease both in upfront and relapsed patients in order to proceed to HSCT."	"Prevalence and characteristics of PIK3CA mutation in mismatch repair-deficient colorectal cancer. Background: Chromosomal instability (CIN) and microsatellite instability (MSI) account for the major causes of colorectal cancer (CRC). As an important component of the CIN pathway, PIK3CA mutation is a negative prognostic factor in CRC. However, the relationship between PIK3CA mutation and mismatch repair (MMR) status has not been well clarified. Methods: MMR status was determined by immunohistochemical assay. KRAS, NRAS, BRAF, PIK3CA and TP53 mutations were comparatively analyzed in 424 MMR-proficient (pMMR) and 104 MMR-deficient (dMMR) CRC tumors using next-generation sequencing (NGS). Results: PIK3CA mutation was more commonly mutated in dMMR tumors. PIK3CA mutation less commonly coexisted with KRAS/NRAS/BRAF and TP53 mutations, but more likely coexisted with HER2 and PTCH1 mutations in dMMR tumors compared with pMMR tumors. In tumors with concurrent RAS/BRAF and PIK3CA mutations, PIK3CA and RAS/BRAF mutant allele frequencies (MAFs) were highly concordant in dMMR tumors, whereas PIK3CA MAFs were significantly lower than the corresponding RAS/BRAF MAFs in pMMR tumors, implying that PIK3CA mutation may occur in the early stage of dMMR CRC. Conclusions: The molecular pathogenesis is different between dMMR and pMMR tumors with PIK3CA mutation in CRC. PIK3CA mutation may act as a clonally dominant truncal mutation in dMMR CRC. Thus, combination of PIK3CA mutation and MMR status might determine a specific group of CRC to select treatment or elevate prognosis."	"Risk Stratification Using a Novel Genetic Classifier Including PLEKHS1 Promoter Mutations for Differentiated Thyroid Cancer with Distant Metastasis.  Background:  Although most differentiated thyroid carcinomas (DTCs) have indolent behavior, DTCs with distant metastasis have a poor prognosis. However, there are no validated markers that predict the risk of distant metastasis and the prognosis of DTC. We aimed to develop a genetic classifier for predicting the outcomes of DTC patients with distant metastases.  Methods:  Targeted deep sequencing of 157 cancer-related genes was performed for 61 DTCs with distant metastases. A candidate mutation was validated with independent thyroid cancer samples using digital polymerase chain reaction.  Results:  The most frequently mutated gene in the 61 DTCs was BRAF (n = 31, 51%), followed by TERT promoter (n = 28, 46%), NRAS (n = 13, 11%), PLEKHS1 promoter (n = 6, 10%), and STK11 (n = 6, 10%) mutations. PLEKHS1 promoter mutations were more common in the radioactive iodine (RAI)-refractory cases (p = 0.003). Losses of 9q and 11q were associated with RAI-refractory disease (p = 0.002) and cancer-specific mortality (p = 0.028), respectively. In multivariate analysis, bone metastasis (adjusted odds ratio [aOR] = 15.17, 95% confidence interval [CI 3.38-68.06], p &lt; 0.001) and at least one mutation in the TERT promoter, the PLEKHS1 promoter, or TP53 (aOR = 7.64 [CI 1.78-32.76], p = 0.006) remained significant factors associated with RAI-refractoriness. In independently collected papillary thyroid carcinomas without initial distant metastasis (n = 75), a PLEKHS1 promoter mutation was only found in one case that developed distant metastasis during the follow-up period. We developed a genetic classifier consisting of BRAF, RAS, the TERT promoter, the PLEKHS1 promoter, and TP53 for categorizing the prognosis of patients with DTC with distant metastasis. In the poor-prognosis group, 61% of the patients were RAI-refractory and death occurred in 21% during the follow-up. In the intermediate-prognosis group, 29% were RAI-refractory, but no death occurred. In the good-prognosis group, all patients were RAI-responsive and no death occurred.  Conclusions:  Mutations in the PLEKHS1 promoter are a novel genetic marker of aggressive DTC. Our genetic classifier can be useful for predicting RAI-refractory disease and poor prognosis in DTC patients with distant metastases."	"Longitudinal Monitoring of ctDNA in Patients with Melanoma and Brain Metastases Treated with Immune Checkpoint Inhibitors. Brain involvement occurs in the majority of patients with metastatic melanoma. The potential of circulating tumor DNA (ctDNA) for surveillance and monitoring systemic therapy response in patients with melanoma brain metastases merits investigation. This study examined circulating BRAF, NRAS, and c-KIT mutations in patients with melanoma with active brain metastases receiving PD-1 inhibitor-based therapy. Intracranial and extracranial disease volumes were measured using the sum of product of diameters, and response assessment performed using RECIST. Longitudinal plasma samples were analyzed for ctDNA over the first 12 weeks of treatment (threshold 2.5 copies/mL plasma). Of a total of 72 patients, 13 patients had intracranial metastases only and 59 patients had concurrent intracranial and extracranial metastases. ctDNA detectability was 0% and 64%, respectively, and detectability was associated with extracranial disease volume (P &lt; 0.01). Undetectable ctDNA on-therapy was associated with extracranial response (P &lt; 0.01) but not intracranial response. The median overall survival in patients with undetectable (n = 34) versus detectable (n = 38) ctDNA at baseline was 39.2 versus 10.6 months [HR, 0.51; 95% confidence interval (CI), 0.28-0.94; P = 0.03] and on-therapy was 39.2 versus 9.2 months (HR, 0.32; 95% CI, 0.16-0.63; P &lt; 0.01). ctDNA remains a strong prognostic biomarker in patients with melanoma with brain metastases, especially in patients with concurrent extracranial disease. However, ctDNA was not able to detect or monitor intracranial disease activity, and we recommend against using ctDNA as a sole test during surveillance and therapeutic monitoring in patients with melanoma."	"High frequency of germline RUNX1 mutations in patients with RUNX1-mutated AML. RUNX1 is mutated in ∼10% of adult acute myeloid leukemia (AML). Although most RUNX1 mutations in this disease are believed to be acquired, they can also be germline. Indeed, germline RUNX1 mutations result in the well-described autosomal-dominant familial platelet disorder with predisposition to hematologic malignancies (RUNX1-FPD, FPD/AML, FPDMM); ∼44% of affected individuals progress to AML or myelodysplastic syndromes. Using the Leucegene RUNX1 AML patient group, we sought to investigate the proportion of germline vs acquired RUNX1 mutations in this cohort. Our results showed that 30% of RUNX1 mutations in our AML cohort are germline. Molecular profiling revealed higher frequencies of NRAS mutations and other mutations known to activate various signaling pathways in these patients with RUNX1 germline-mutated AML. Moreover, 2 patients (mother and son) had co-occurrence of RUNX1 and CEBPA germline mutations, with variable AML disease onset at 59 and 27 years, respectively. Together, these data suggest a higher than anticipated frequency of germline RUNX1 mutations in the Leucegene cohort and further highlight the importance of testing for RUNX1 mutations in instances in which allogeneic stem cell transplantation using a related donor is envisioned."	"Phase Ib Trial of the PI3K Inhibitor Copanlisib Combined with the Allosteric MEK Inhibitor Refametinib in Patients with Advanced Cancer. Dual inhibition of PI3K and MAPK signaling is conceptually a promising anticancer therapy. This phase 1b trial investigated the safety, maximum tolerated dose (MTD), recommended phase II dose, pharmacokinetics, tumor response, fluorodeoxyglucose positron emission tomography (FDG-PET) pharmacodynamics, and biomarker explorations for the combination of pan-PI3K inhibitor copanlisib and allosteric MEK inhibitor refametinib in patients with advanced solid tumors. This was an adaptive trial with eight dose cohorts combining dose escalation and varying schedules in repeated 28-day cycles. Patients received copanlisib (0.2-0.8 mg/kg intravenously) intermittently (days 1, 8, 15) or weekly (days 1, 8, 15, 22) each cycle, and refametinib (30-50 mg twice daily orally) continuously or 4 days on/3 days off. Patients with KRAS, NRAS, BRAF, or PI3KCA mutations were eligible for the expansion cohort. In the dose-escalation (n = 49) and expansion (n = 15) cohorts, the most common treatment-emergent adverse events included diarrhea (59.4%), nausea, acneiform rash, and fatigue (51.6% each). Dose-limiting toxicities included oral mucositis (n = 4), increased alanine aminotransferase/aspartate aminotransferase (n = 3), rash acneiform, hypertension (n = 2 each), and diarrhea (n = 1). MTD was copanlisib 0.4 mg/kg weekly and refametinib 30 mg twice daily. No pharmacokinetic interactions were identified. Decreased tumor FDG uptake and MEK-ERK signaling inhibition were demonstrated during treatment. Best response was stable disease (n = 21); median treatment duration was 6 weeks. Despite sound rationale and demonstrable pharmacodynamic tumor activity in relevant tumor populations, a dose and schedule could not be identified for this drug combination that was both tolerable and offered clear efficacy in the population assessed. CLINICALTRIALS. NCT01392521."	"Limited antitumor activity of combined BET and MEK inhibition in neuroblastoma. The treatment of high-risk neuroblastoma continues to present a formidable challenge to pediatric oncology. Previous studies have shown that Bromodomain and extraterminal (BET) inhibitors can inhibit MYCN expression and suppress MYCN-amplified neuroblastoma in vivo. Furthermore, alterations within RAS-MAPK (mitogen-activated protein kinase) signaling play significant roles in neuroblastoma initiation, maintenance, and relapse, and mitogen-activated extracellular signal-regulated kinase (MEK) inhibitors demonstrate efficacy in subsets of neuroblastoma preclinical models. Finally, hyperactivation of RAS-MAPK signaling has been shown to promote resistance to BET inhibitors. Therefore, we examined the antitumor efficacy of combined BET/MEK inhibition utilizing I-BET726 or I-BET762 and trametinib in high-risk neuroblastoma. Utilizing a panel of genomically annotated neuroblastoma cell line models, we investigated the in vitro effects of combined BET/MEK inhibition on cell proliferation and apoptosis. Furthermore, we evaluated the effects of combined inhibition in neuroblastoma xenograft models. Combined BET and MEK inhibition demonstrated synergistic effects on the growth and survival of a large panel of neuroblastoma cell lines through augmentation of apoptosis. A combination therapy slowed tumor growth in a non-MYCN-amplified, NRAS-mutated neuroblastoma xenograft model, but had no efficacy in an MYCN-amplified model harboring a loss-of-function mutation in NF1. Combinatorial BET and MEK inhibition was synergistic in the vast majority of neuroblastoma cell lines in the in vitro setting but showed limited antitumor activity in vivo. Collectively, these data do not support clinical development of this combination in high-risk neuroblastoma."	"Presence and prevalence of UV related genetic mutations in uveal melanoma: similarities with cutaneous melanoma. Ultraviolet (UV) radiation is an accepted etiological factor in cutaneous melanoma (CM), however its role in Uveal Melanoma (UM) is controversial. Partly as a consequence, CM and UM are often considered to be separate conditions, and advances in the treatment of CM have not led to joint clinical trials or parallel improvements in survival of UM. This study hypothesized that a subset of UM tumors display evidence of genetic changes consistent with UV-related damage similar to that shown in CM. Analysis of the Broad Institute's Firebrowse depository of 80 UM samples and 343 CM samples, together with the Sanger Institute's Catalogue of Somatic Mutations in Cancer depository of 995 UM and 12,447 CM samples was undertaken to identify the most frequently mutated genes, mutation types and specific nucleotide variants (SNVs) in each condition. Somatic mutation data was cross-correlated and shared mutations assessed against known effects of UV radiation. The proportion of samples with C&gt;T substitutions (a classic genetic marker of UV-related damage) was higher in UM than CM on both DNA strands (17.0% vs 13.1% , p = 0.038). The most frequently encountered cross-correlated mutated genes between UM and CM were, in order, BRAF, NRAS, TP53, CDKN2A, TERT, PTEN, ARID2 and KMT2C, with multiple common BRAF point mutations. Each cross-correlated mutation, and each common point mutation in BRAF, was associated with UV-related mechanistic changes. These findings support the hypothesis that the etiology of a substantial minority of UMs may be more UV dependent than previously recognized."	"Biological and clinical significance of dysplastic hematopoiesis in patients with newly diagnosed multiple myeloma. Risk of developing myelodysplastic syndrome (MDS) is significantly increased in both multiple myeloma (MM) and monoclonal gammopathy of undetermined significance, suggesting that it is therapy independent. However, the incidence and sequelae of dysplastic hematopoiesis at diagnosis are unknown. Here, we used multidimensional flow cytometry (MFC) to prospectively screen for the presence of MDS-associated phenotypic alterations (MDS-PA) in the bone marrow of 285 patients with MM enrolled in the PETHEMA/GEM2012MENOS65 trial (#NCT01916252). We investigated the clinical significance of monocytic MDS-PA in a larger series of 1252 patients enrolled in 4 PETHEMA/GEM protocols. At diagnosis, 33 (11.6%) of 285 cases displayed MDS-PA. Bulk and single-cell-targeted sequencing of MDS recurrently mutated genes in CD34+ progenitors (and dysplastic lineages) from 67 patients revealed clonal hematopoiesis in 13 (50%) of 26 cases with MDS-PA vs 9 (22%) of 41 without MDS-PA; TET2 and NRAS were the most frequently mutated genes. Dynamics of MDS-PA at diagnosis and after autologous transplant were evaluated in 86 of 285 patients and showed that in most cases (69 of 86 [80%]), MDS-PA either persisted or remained absent in patients with or without MDS-PA at diagnosis, respectively. Noteworthy, MDS-associated mutations infrequently emerged after high-dose therapy. Based on MFC profiling, patients with MDS-PA have altered hematopoiesis and T regulatory cell distribution in the tumor microenvironment. Importantly, the presence of monocytic MDS-PA at diagnosis anticipated greater risk of hematologic toxicity and was independently associated with inferior progression-free survival (hazard ratio, 1.5; P = .02) and overall survival (hazard ratio, 1.7; P = .01). This study reveals the biological and clinical significance of dysplastic hematopoiesis in newly diagnosed MM, which can be screened with moderate sensitivity using cost-effective MFC."	"Targeted next generation sequencing (NGS) to classify melanocytic neoplasms. This study piloted a pan-solid-tumor next generation sequence (NGS)-based laboratory developed test as a diagnostic aid in melanocytic tumors. 31 cases (4 &quot;epithelioid&quot; nevi, 5 blue nevi variants, 7 Spitz tumors [3 benign and 4 malignant] and 15 melanomas) were evaluated. All tumors [median diameter 7 mm (range 4-15 mm); median thickness 2.25 mm (range 0.25-12 mm)] yielded satisfactory results. The number of small nucleotide variants/tumor was significantly different between melanoma (median 18/tumor, range 4-71) and all other lesions (median 8/tumor, range 3-17)(P &lt; 0.004) and malignant (median 16/tumor, range 4-71) vs benign lesions (median 7/tumor, range 3-14) (P = 0.01). BRAF, MET, NTRK1, and ROS fusions only occurred in benign Spitz tumors; EML4 fusion, BRAF, MAP2K1 and TERT mutations occurred in malignant Spitz tumors and/or melanoma. Amplifications, NRAS, and NF1 mutations only occurred in melanoma. Most melanomas contained &gt;1 pathogenic alteration. Developed NGS-based criteria correctly classified all malignant lesions in this series. 10/12 cases showed concordance with FISH; consensus diagnosis agreed with NGS classification in FISH-non-concordant cases. This pilot study suggests that NGS may be an effective diagnostic adjunct comparable to FISH, but further studies with larger numbers of cases are needed."	"Papillary thyroid carcinoma with prominent myofibroblastic stromal component: clinicopathologic, immunohistochemical and next-generation sequencing study of seven cases. Papillary thyroid carcinoma with desmoid-type fibromatosis or nodular fasciitis-like stroma is an extremely unusual and poorly understood subtype of papillary thyroid cancer. Although prior studies have demonstrated alterations in the Wnt/β-catenin signaling pathway in some of these tumors, controversy still exists regarding the nature of the stromal spindle component. We have studied seven cases of papillary thyroid carcinoma with prominent myofibroblastic stroma, including six men and one woman aged 20-65 years (mean age = 44). All cases displayed areas consistent with conventional papillary thyroid carcinoma embedded in abundant myofibroblastic-like stroma. The myofibroblastic stroma in six cases resembled desmoid-type fibromatosis and in one case it more closely resembled nodular fasciitis. By immunohistochemical staining, the stromal spindle component showed positivity for SMA and low MIB1 proliferation index in all cases, and there was at least patchy strong nuclear positivity for beta-catenin in six/seven cases. Stains for cytokeratin AE1/AE3 and PAX8 were positive in the epithelial elements but negative in the stromal component. Next-generation sequencing was performed on six of seven cases. CTNNB1 gene mutations were identified in six/seven cases. The epithelial component showed BRAF mutations in two cases and an NRAS mutation in one case. The case with fasciitis-like stroma was negative for beta-catenin by sequencing and immunostaining as well as negative for USP6 gene rearrangement. Our findings indicate that papillary thyroid carcinoma with prominent myofibroblastic stroma may represent more than one category of lesions."	"RAS/RAF mutations in tumor samples and cell-free DNA from plasma and bone marrow aspirates in multiple myeloma patients. Purpose: To evaluate the detection of gene mutations in bone marrow biopsy and circulating free DNA (cfDNA) from plasma in multiple myeloma (MM). Experimental design: We used cell-free DNA from plasma and bone marrow to test BRAF V600, KRAS G12/G13, NRAS G12/G13 and NRAS Q61 mutations using multiplex assays for droplet digital PCR (ddPCR), and evaluated results with clinical outcomes. Results: We found of 83 patients, the detectable mutation frequencies for the above four genes were 4 (5%), 13 (16%), 3 (4%) and 14 (17%) in bone marrow, respectively. The median variant allelic frequency (VAF) in most mutations were 1.595%. In 17 paired cfDNA samples, the detectable mutation frequencies for the above four genes were 5 (30%), 1 (6%), 0 (0%) and 3 (18%) respectively, and the median VAF rate was 2.9%. Agreement between bone marrow DNA and plasma cfDNA were 76%, 100%, 100% and 100% compared to the tissue detections, respectively. In 17 patients with paired bone marrow and plasma samples, the above four mutations were 3 (18%), 1 (6%), 0 (0%) and 2 (12%) respectively, with the agreement rates of 88%, 88%, 100% and 100% compared to tissue detections. Of 57 patients with available outcome data, high mutation VAF had a shorter median survival than patients with low mutation VAF (P=0.0322). Conclusions: Oncogenic mutations in BRAF, KRAS and NRAS genes can be detected in the bone marrow and plasma cfDNA with ddPCR in patients with MM patients and high VAF is associated with short survival."	"The rise of T-type channels in melanoma progression and chemotherapeutic resistance. Hyperactivation of the Mitogen Activated Protein Kinase (MAPK) pathway is prevalent in melanoma, principally due to mutations in the BRAF and NRAS genes. MAPK inhibitors are effective only short-term, and recurrence occurs due to functional redundancies or intertwined pathways. The remodeling of Ca<sup>2+</sup> signaling is also common in melanoma cells, partly through the increased expression of T-type channels (TTCCs). Here we summarize current knowledge about the prognostic value and molecular targeting of TTCCs. Furthermore, we discuss recent evidence pointing to TTCCs as molecular switches for melanoma chemoresistance, which set the grounds for novel combined therapies against the advanced disease."	"Uveal melanoma. Uveal melanoma (UM) is the most common primary intraocular malignancy in adults. UMs are usually initiated by a mutation in GNAQ or GNA11, unlike cutaneous melanomas, which usually harbour a BRAF or NRAS mutation. The annual incidence in Europe and the USA is ~6 per million population per year. Risk factors include fair skin, light-coloured eyes, congenital ocular melanocytosis, ocular melanocytoma and the BAP1-tumour predisposition syndrome. Ocular treatment aims at preserving the eye and useful vision and, if possible, preventing metastases. Enucleation has largely been superseded by various forms of radiotherapy, phototherapy and local tumour resection, often administered in combination. Ocular outcomes are best with small tumours not extending close to the optic disc and/or fovea. Almost 50% of patients develop metastatic disease, which usually involves the liver, and is usually fatal within 1 year. Although UM metastases are less responsive than cutaneous melanoma to chemotherapy or immune checkpoint inhibitors, encouraging results have been reported with partial hepatectomy for solitary metastases, with percutaneous hepatic perfusion with melphalan or with tebentafusp. Better insight into tumour immunology and metabolism may lead to new treatments."	"Evaluation of KRAS, NRAS and BRAF mutational status and microsatellite instability in early colorectal carcinomas invading the submucosa (pT1): towards an in-house molecular prognostication for pathologists? We aimed to study the prognostic value of KRAS, NRAS, BRAF mutations and microsatellite stable (MSS)/instable (MSI) in the field of colorectal cancer invading the submucosa (ie, pT1 colorectal cancer (CRC)). We led a case-control study in tumour samples from 60 patients with pT1 CRC with (20 cases) and without (40 cases) metastatic evolution (5 years of follow-up) which were analysed for KRAS, NRAS, BRAF mutations (Idylla testing and next generation sequencing, NGS) and MSS/MSI status (Idylla testing and expression of mismatch repair (MMR) proteins using immunohistochemistry). KRAS mutations were encountered in 11/20 (55%) cases and 21/40 (52.5%) controls (OR=1.11 (0.38 to 3.25), p=0.8548), NRAS mutations in 1/20 (5%) cases and 3/40 (7.5%) controls (OR=3.08 (0.62 to 15.39), p=0.1698) and BRAF mutations in 3/20 (15%) cases and 6/40 (15%) controls (OR=1.00 (0.22 to 4.5), p=1.00). A MSI status was diagnosed in 3/20 (15%) cases and 5/40 (12.5%) controls (OR=1.2353 (0.26 to 5.79), p=0.7885). Beyond the absence of significant association between the metastatic evolution and any of the studied molecular parameters, we observed a very good agreement between methods analysing KRAS, NRAS and BRAF mutations (Kappa value of 0.849 (0.748 to 0.95) between Idylla and NGS) and MSS/MSI (Idylla)-proficient MMR/deficient MMR (immunohistochemistry) status (Kappa value of 1.00). Although being feasible using the fully automated Idylla method as well as NGS, the molecular testing of KRAS, NRAS, BRAF and MSS/MSI status does not seem useful for prognostic purpose in the field of pT1 CRC."	"Incidence of venous thromboembolism in patients with colorectal cancer according to oncogenic status. There are conflicting data regarding the role of KRAS mutation on the risk of venous thromboembolism (VTE) in colorectal cancer (CRC) patients. Moreover, the role of other biomarkers such as NRAS or BRAF has not been studied. To analyze the incidence of VTE in a cohort of patients with CRC based on KRAS, NRAS, and BRAF status. We performed a retrospective review of patients with unresectable locally advanced and metastatic CRC (mCRC) and known KRAS/NRAS/BRAF status, attended in the Medical Oncology Department of the Hospital General Universitario Gregorio Marañón (Madrid, Spain). The primary outcome was VTE defined as any venous thromboembolic event that occurred either 6 months before or at any time after the diagnosis of CRC. The biomarker status (KRAS, NRAS, and BRAF) and other predictors of thrombosis were collected. One hundred and ninety-four patients were identified and included in the analysis. Forty-one patients (21.1%) experienced VTE. The incidence was 19.1% in RAS-mutated patients, 28.6% in BRAF-mutated patients and 21% in triple wild-type patients (p = NS). In multivariate analysis, ECOG ≥ 2 was the only independent predictor of VTE (OR 8.73; CI 95% 1.32-57.82; p = 0.025). In our study, biomarkers have not been associated with an increased risk of VTE in CRC patients. A high incidence of VTE in BRAF-mutated patients has been observed and should be explored in further studies."	"Amplicon-Based NGS Panels for Actionable Cancer Target Identification in Follicular Cell-Derived Thyroid Neoplasia. Follicular cell-derived thyroid cancers are heterogenous and morphological classification is a complex and highly specialized task. Hence, identification of somatic alterations could provide insights to tumor biology and serve as an add-on diagnostic tool. Furthermore, results from these add-on tools could point in the direction of a more personalized treatment strategy. In the present study we set out to identify and validate the somatic mutation profile in a sample-set of follicular cell-derived thyroid neoplasia. One-hundred-and-one archived formalin fixed paraffin embedded (FFPE) tissue samples from patients diagnosed with follicular cell-derived thyroid neoplasia were included, and upon DNA-extraction and qualitative measurements 99 samples were eligible for amplicon-based next-generation-sequencing. Libraries were generated using the TruSeq Amplicon Cancer Panel, followed by sequencing using a MiSeq. Upon data processing and variant filtering all variants were manually assessed to exclude false positive mutations in the final curated list. Moreover, hot-spot mutations were validated using an independent platform from Agilent. Each diagnostic group were correlated to mutation burden and individual mutations were classified according to recent guidelines for somatic mutation classification. Close to 100% of the archived FFPE samples were eligible for DNA-library preparation and amplicon sequencing based on DNA quality criterion. The distribution of mutations in the specific diagnostic groups resulted in a higher mutation frequency among the most dedifferentiated than in the groups with a more differentiated cell profile. Based on the distribution mutations across the samples and using hierarchical clustering, we generated four tentative mutational signatures; highly mutated tumors; tumors with mainly NRAS and TP53 mutations; BRAF mutated tumors and tumors with none or single sporadic mutations. Future studies including more samples and follow-up data may amend these signatures, however our results imply that morphological classification of follicular cell derived thyroid neoplasia could be supplemented with a somatic mutational signature. Taken together, broad screening of the somatic alterations in FFPE tissue of thyroid neoplasia is comprehensible and essential for future identification of possible treatment targets and personalized medicine."	"Effects of mevalonate kinase interference on cell differentiation, apoptosis, prenylation and geranylgeranylation of human keratinocytes are attenuated by farnesyl pyrophosphate or geranylgeranyl pyrophosphate. Mevalonate kinase (MVK) mutations were previously identified in disseminated superficial actinic porokeratosis. However, the role of MVK in differentiation, apoptosis and prenylation of keratinocytes requires further investigation. Farnesyl pyrophosphate (FPP) and geranylgeranyl pyrophosphate (GGPP) of the mevalonate pathway attach to small G proteins, and serve as molecular switches in biochemical pathways. Therefore, the aim of the present study was to investigate the role of MVK in the expression of keratin 1 and involucrin, apoptosis, protein prenylation and the processing of small G proteins. HaCat human keratinocytes were transfected with viruses carrying MVK interference and overexpression vectors, respectively. The mRNA expression of MVK, keratin 1 and involucrin was detected by reverse transcription-quantitative PCR. Protein expression of MVK, keratin 1, involucrin, lamin A, HRAS, KRAS, NRAS, Rho E, Rho B, Rho A, RAC1 and cdc42 in HaCat cells was detected by western blotting. The apoptotic rates of HaCat cells and protein prenylation levels were examined by flow cytometry. The expression of MVK in HaCat cells was significantly decreased in the interference groups, and markedly increased in the overexpression group compared with the negative control groups. The mRNA and protein expression levels of keratin 1 and involucrin were significantly decreased following interference of MVK expression, and the decrease was markedly attenuated by FPP. Furthermore, the apoptotic rate was markedly increased following MVK interference, and the increase was significantly attenuated by GGPP. The overexpression of MVK significantly decreased the apoptotic rate of HaCat cells. The prenylation levels after MVK interference was notably decreased, which was markedly attenuated by GGPP. The overexpression of MVK significantly increased the prenylation levels of HaCat cells. FPP or GGPP reversed MVK interference-induced decrease in geranylgeranylation levels of lamin A, HRAS, KRAS, NRAS, Rho E, Rho B, Rho A, RAC1 and cdc42. In conclusion, MVK interference decreases the expression of differentiation markers, increases apoptosis, and decreases protein prenylation and geranylgeranylation levels in keratinocytes. These changes are attenuated by FPP or GGPP."	"The Clinicopathological and Survival Profiles Comparison Across Primary Sites in Acral Melanoma. The clinicopathological and survival profiles across primary sites in acral melanoma (AM) are still controversial and unclear. This is a multi-center retrospective study. Clinicopathological data of AM patients diagnosed between 1 January 2000 and 31 December 2017 from 6 large tertiary hospitals in China were extracted. Chi square tests were used to compare basic characteristics between primary sites of sole, palm and nail bed. Melanoma-specific survival (MSS) differences based on primary sites were compared by log-rank tests and multivariate Cox regressions were used to identify prognostic factors for MSS. In total, 1157 AM patients were included. The sole group had a more advanced initial stage, deeper Breslow thickness, higher recurrence rate and distant metastases risk (all P &lt; 0.05). The proportion of age &lt; 65 years and ulceration were statistically lower in nail bed and palm groups, respectively. A total of 294 patients underwent sentinel lymph node biopsy and rates of positive SLN status had no statistical difference across primary sites. Among 701 patients with genetic profiles, the mutational frequency of BRAF, C-KIT, and PDGFRA were similar except for NRAS (higher in sole group, P = 0.0102). The median MSS of sole, nail bed and palm patients were 65.0 months, 112.0 months, and not reached, respectively (log-rank P = 0.0053). In multivariate analyses, primary site, initial stage, ulceration and recurrence were the prognostic factors for MSS in overall population, but the statistical significance varied over primary sites. Substantial clinicopathological and survival heterogeneities exist across different primary sites in the AM population. Sole melanoma has worse prognosis compared with palm and nail bed subtypes."	"Phase I Trial of Trametinib with Neoadjuvant Chemoradiation in Patients with Locally Advanced Rectal Cancer. The RAS/RAF/MEK/ERK signaling pathway is critical to the development of colorectal cancers, and KRAS, NRAS, and BRAF mutations foster resistance to radiation. We performed a phase I trial to determine the safety of trametinib, a potent MEK1/2 inhibitor, with 5-fluorouracil (5-FU) chemoradiation therapy (CRT) in patients with locally advanced rectal cancer (LARC). Patients with stage II/III rectal cancer were enrolled on a phase I study with 3+3 study design, with an expansion cohort of 9 patients at the MTD. Following a 5-day trametinib lead-in, with pre- and posttreatment tumor biopsies, patients received trametinib and CRT, surgery, and adjuvant chemotherapy. Trametinib was given orally daily at 3 dose levels: 0.5 mg, 1 mg, and 2 mg. CRT consisted of infusional 5-FU 225 mg/m<sup>2</sup>/day and radiation dose of 28 daily fractions of 1.8 Gy (total 50.4 Gy). The primary endpoint was to identify the MTD and recommended phase II dose. IHC staining for phosphorylated ERK (pERK) and genomic profiling was performed on the tumor samples. Patients were enrolled to all dose levels, and 18 patients were evaluable for toxicities and responses. Treatment was well tolerated, and there was one dose-limiting toxicity of diarrhea, which was attributed to CRT rather than trametinib. At the 2 mg dose level, 25% had pathologic complete response. IHC staining confirmed dose-dependent decrease in pERK with increasing trametinib doses. The combination of trametinib with 5-FU CRT is safe and well tolerated, and may warrant additional study in a phase II trial, perhaps in a RAS/RAF-mutant selected population."	"The discovery and development of binimetinib for the treatment of melanoma. Binimetinib is an uncompetitive, small-molecule inhibitor of selective mitogen-activated protein kinase (MEK1/2) and was recently approved in 2018 in combination with encorafenib for the treatment of metastatic melanomas. Preclinical and clinical trial data on the drug demonstrate its potent efficacy in cancers, especially melanomas with BRAF and NRAS mutations. The authors review the preclinical as well as clinical Phase 1, 2 and 3 trial data leading to its FDA approval in 2018 for metastatic melanoma. Phase 3 data in combination with encorafenib demonstrated double the PFS (14.9 months) compared to vemurafenib alone (7.3 months) in patients with BRAF-mutated metastatic melanoma. No longer-term data is available yet to demonstrate any durable complete responses to therapy with binimetinib or improvements in overall survival compared to other FDA-approved therapies including immunotherapy or vemurafenib. Treatment approaches to patients with BRAF-mutated metastatic melanoma should be individualized and binimetinib in combination with encorafenib is a reasonable oral strategy with a reasonably tolerated toxicity profile. The cost of treatment and durability of response should be incorporated into the discussion as part of the overall medical decision-making."	"Genetic analyses of mosaic neurofibromatosis type 1 with giant café-au-lait macule, plexiform neurofibroma and multiple melanocytic nevi. Neurofibromatosis type 1 (NF1) is a genodermatosis caused by heterozygous germ line variations in the NF1 gene. A second-hit NF1 aberration results in the formation of café-au-lait macules, cutaneous neurofibroma and plexiform neurofibroma (PNF). Mosaic NF1 (mNF1), caused by a postzygotic NF1 mutation, is characterized by localized or generalized NF1-related manifestations. Although NF1 and mNF1 are associated with pigmentary skin lesions, clinically recognizable melanocytic nevi that developed over PNF have not been reported. Here, we report the first case of multiple melanocytic nevi that developed on a giant café-au-lait macule and PNF. The PNF had biallelic NF1 deletions, a whole deletion of NF1 and a novel intragenic deletion involving exons 25-30. The deletions were not detected in the blood, which resulted in the diagnosis of mNF1. Furthermore, the nevus cells had not only biallelic NF1 deletions but also NRAS Q61R, a common mutation found in congenital melanocytic nevi. These analyses revealed the coexistence of the two different mosaic diseases, mNF1 and congenital melanocytic nevi. For a diagnosis of cases with atypical NF1-like symptoms, genetic analyses using blood and lesional tissues are useful and aid in genetic counseling."	"Targeted chemotherapy overcomes drug resistance in melanoma. The emergence of drug resistance is a major obstacle for the success of targeted therapy in melanoma. Additionally, conventional chemotherapy has not been effective as drug-resistant cells escape lethal DNA damage effects by inducing growth arrest commonly referred to as cellular dormancy. We present a therapeutic strategy termed &quot;targeted chemotherapy&quot; by depleting protein phosphatase 2A (PP2A) or its inhibition using a small molecule inhibitor (1,10-phenanthroline-5,6-dione [phendione]) in drug-resistant melanoma. Targeted chemotherapy induces the DNA damage response without causing DNA breaks or allowing cellular dormancy. Phendione treatment reduces tumor growth of BRAF<sup>V600E</sup>-driven melanoma patient-derived xenografts (PDX) and diminishes growth of NRAS<sup>Q61R</sup>-driven melanoma, a cancer with no effective therapy. Remarkably, phendione treatment inhibits the acquisition of resistance to BRAF inhibition in BRAF<sup>V600E</sup> PDX highlighting its effectiveness in combating the advent of drug resistance."	"Germline and sporadic cancers driven by the RAS pathway: parallels and contrasts. Somatic mutations in RAS and related pathway genes such as NF1 have been strongly implicated in the development of cancer while also being implicated in a diverse group of developmental disorders named the 'RASopathies', including neurofibromatosis type 1 (NF1), Noonan syndrome (NS), Noonan syndrome with multiple lentigines (NSML), Costello syndrome (CS), cardiofaciocutaneous syndrome (CFC), and capillary malformation-arteriovenous syndrome (CM-AVM). It remains unclear why (i) there is little overlap in mutational subtype between Ras-driven malignancies associated with sporadic disease and those associated with the RASopathy syndromes, and (ii) RASopathy-associated cancers are usually of different histological origin to those seen with sporadic mutations of the same genes. For instance, germline variants in KRAS and NRAS are rarely found at codons 12, 13 or 61, the most common sites for somatic mutations in sporadic cancers. An exception is CS, where germline variants in codons 12 and 13 of HRAS occur relatively frequently. Given recent renewed drug interest following early clinical success of RAS G12C and farnesyl transferase inhibitors, an improved understanding of this relationship could help guide targeted therapies for both sporadic and germline cancers associated with the Ras pathway."	"BRAF V600E mutation is a potential therapeutic target for a small subset of synovial sarcoma. Synovial sarcoma (SS) is an aggressive tumor that most often affects the deep soft tissues in young adults. Intrathoracic SS is rare and is associated with poor outcome, highlighting the urgent need for a novel therapeutic strategy. In the process of clinical sequencing, we identified two patients with intrathoracic SS harboring the BRAF V600E mutation. The patients were women aged 32 and 23 years, and both presented with SS18-SSX2-positive monophasic SS in the thoracic cavity. BRAF V600E mutations were detected by next generation sequencing, and validated immunohistochemically by diffuse intense positivity to BRAF V600E mutation-specific antibodies. The phosphorylated ERK (pERK) immunohistochemistry result was also positive. One patient received a combination therapy of dabrafenib and trametinib, which led to tumor shrinkage. However, the tumor growth progressed 7.5 months later with an additional NRAS Q61K mutation. Immunohistochemical screening of 67 archival SS tumor samples failed to identify additional samples with BRAF V600E mutation. However, 32% of BRAF V600E-negative cases was positive for pERK, and one of the six tumors showing the highest pERK expression harbored an FGFR2-activating mutation. This is the first report of targetable BRAF mutation in a small subset of SS. Our study suggests involvement of the mitogen-activated protein kinase pathway and the potential clinical implication of BRAF mutation screening in SS."	"Mutational spectrum and classification of novel mutations in patients with metastatic gastrointestinal stromal tumours. In total, ~85% of malignant gastrointestinal stromal tumours (GISTs) harbour activating mutations in one of the genes KIT or PDGFRA, while 10‑15% of all GISTs have no detectable KIT or PDGFRA mutations, but could have alterations in genes of the succinate dehydrogenase complex or in BRAF, PIK3CA or rarely RAS family genes. The clinical benefit of tyrosine kinase inhibitors, such as imatinib, depends on the GIST genotype, therefore molecular characterization of GIST has a crucial role in overall management of GIST. The aim of the present study was to molecularly characterize a cohort of 70 patients with metastatic GISTs from the Slovenian Cancer Registry (National Cancer Registry) treated between January 2002 and December 2011. Exons 9, 11, 13 and 17 of the KIT gene and exons 12, 14 and 18 of the PDGFRA gene were analysed by direct Sanger sequencing. All KIT/PDGFRA wild‑type GISTs were tested for the presence of mutations in hot spot regions of KRAS, NRAS, BRAF, PIK3CA and AKT1 genes. Novel variants were characterized and classified using Cancer Genome Interpreter and according to The American College of Medical Genetics and Genomics/Association for Molecular Pathology guidelines. In total, 60 (85.7%) patients had mutations in KIT and 2 (2.9%) in PDGFRA. Whereas, 8 (11.4%) patients with GIST had no mutation in either of the analysed genes. The majority of GIST cases (n=52) had a mutation in KIT exon 11, where 40 different mutations were detected. Eight of the variants were novel: c.1652_1672del, c.1653_1660delinsAA, c.1665_1672delinsCC, c.1668_1686del, c.1676_1720del, c.1715_1756dup, c.1721_1765dup, and c.1722_1766dup. Mutation frequencies of KIT and PDGFRA genes observed in Slovenian patients are comparable with those in other European populations. In the present group of patients analysed, the most frequently mutated region was exon 11 in the KIT gene, responsible for coding juxtamembrane domain of KIT protein. In this region, eight novel mutations were identified and classified as likely pathogenic driver variants. In addition, the present study identified 6 patients with secondary KIT mutation and 1 patient with double mutant GIST, who had two different mutations in PDGFRA exon 14."	"Metastatic Melanoma Patient-Derived Xenografts Respond to MDM2 Inhibition as a Single Agent or in Combination with BRAF/MEK Inhibition. Over 60% of patients with melanoma respond to immune checkpoint inhibitor (ICI) therapy, but many subsequently progress on these therapies. Second-line targeted therapy is based on BRAF mutation status, but no available agents are available for NRAS, NF1, CDKN2A, PTEN, and TP53 mutations. Over 70% of melanoma tumors have activation of the MAPK pathway due to BRAF or NRAS mutations, while loss or mutation of CDKN2A occurs in approximately 40% of melanomas, resulting in unregulated MDM2-mediated ubiquitination and degradation of p53. Here, we investigated the therapeutic efficacy of over-riding MDM2-mediated degradation of p53 in melanoma with an MDM2 inhibitor that interrupts MDM2 ubiquitination of p53, treating tumor-bearing mice with the MDM2 inhibitor alone or combined with MAPK-targeted therapy. To characterize the ability of the MDM2 antagonist, KRT-232, to inhibit tumor growth, we established patient-derived xenografts (PDX) from 15 patients with melanoma. Mice were treated with KRT-232 or a combination with BRAF and/or MEK inhibitors. Tumor growth, gene mutation status, as well as protein and protein-phosphoprotein changes, were analyzed. One-hundred percent of the 15 PDX tumors exhibited significant growth inhibition either in response to KRT-232 alone or in combination with BRAF and/or MEK inhibitors. Only BRAF<sup>V600WT</sup> tumors responded to KRT-232 treatment alone while BRAF<sup>V600E/M</sup> PDXs exhibited a synergistic response to the combination of KRT-232 and BRAF/MEK inhibitors. KRT-232 is an effective therapy for the treatment of either BRAF<sup>WT</sup> or PAN <sup> WT </sup>(BRAF<sup>WT</sup>, NRAS<sup>WT</sup>) TP53<sup>WT</sup> melanomas. In combination with BRAF and/or MEK inhibitors, KRT-232 may be an effective treatment strategy for BRAF<sup>V600</sup>-mutant tumors."	"Genetic disruption of N-RasG12D palmitoylation perturbs hematopoiesis and prevents myeloid transformation in mice. Oncogenic RAS mutations pose substantial challenges for rational drug discovery. Sequence variations within the hypervariable region of Ras isoforms underlie differential posttranslational modification and subcellular trafficking, potentially resulting in selective vulnerabilities. Specifically, inhibiting the palmitoylation/depalmitoylation cycle is an appealing strategy for treating NRAS mutant cancers, particularly as normal tissues would retain K-Ras4b function for physiologic signaling. The role of endogenous N-RasG12D palmitoylation in signal transduction, hematopoietic differentiation, and myeloid transformation is unknown, and addressing these key questions will inform efforts to develop mechanism-based therapies. To evaluate the palmitoylation/depalmitoylation cycle as a candidate drug target in an in vivo disease-relevant model system, we introduced a C181S mutation into a conditional NrasG12D &quot;knock-in&quot; allele. The C181S second-site amino acid substitution abrogated myeloid transformation by NrasG12D, which was associated with mislocalization of the nonpalmitoylated N-Ras mutant protein, reduced Raf/MEK/ERK signaling, and alterations in hematopoietic stem and progenitor populations. Furthermore, hematologic malignancies arising in NrasG12D/G12D,C181S compound heterozygous mice invariably acquired revertant mutations that restored cysteine 181. Together, these studies validate the palmitoylation cycle as a promising therapeutic target in NRAS mutant cancers."	"Harmonization of Next-Generation Sequencing Procedure in Italian Laboratories: A Multi-Institutional Evaluation of the SiRe® Panel. Background: Next-generation sequencing (NGS) needs to be validated and standardized to ensure that cancer patients are reliably selected for target treatments. In Italy, NGS is performed in several institutions and harmonization of wet and dry procedures is needed. To this end, a consortium of five different laboratories, covering the most part of the Italian peninsula, was constituted. A narrow gene panel (SiRe®) covering 568 clinically relevant mutations in six different genes (EGFR, KRAS, NRAS, BRAF, cKIT, and PDGFRα) with a predictive role for therapy selection in non-small cell lung cancer (NSCLC), gastrointestinal stromal tumor, colorectal carcinoma (CRC), and melanoma was evaluated in each participating laboratory. Methods: To assess the NGS inter-laboratory concordance, the SiRe® panel, with a related kit and protocol for library preparation, was used in each center to analyze a common set of 20 NSCLC and CRC routine samples. Concordance rate, in terms of mutation detected and relative allelic frequencies, was assessed. Then, each institution prospectively analyzed an additional set of 40 routine samples (for a total of 160 specimens) to assess the reproducibility of the NGS run parameters in each institution. Results: An inter-laboratory agreement of 100% was reached in analyzing the data obtained from the 20 common sample sets; the concordance rate of allelic frequencies distribution was 0.989. The prospective analysis of the run metric parameters obtained by each center locally showed that the analytical performance of the SiRe® panel in the different institutions was highly reproducible. Conclusions: The SiRe® panel represents a robust diagnostic tool to harmonize the NGS procedure in different Italian laboratories."	"Comparison of Somatic Mutation Profiles Between Formalin-Fixed Paraffin Embedded Tissues and Plasma Cell-Free DNA from Ovarian Cancer Patients Before and After Surgery. Ovarian carcinogenesis can be induced by a large number of somatic gene mutations. Circulating tumor DNA (ctDNA) released into peripheral blood can provide insights into the genomic landscape of cancer cells and monitor their dynamics. Our aim was to detect and compare the genetic profiles in tumor tissue and plasma before and after tumor resection in ovarian cancer patients. All three samples were collected from each patient. In this study, we used a commercial cancer panel to identify somatic mutations in 26 genes in seven selected patients through next-generation sequencing on the Illumina platform. Overall, 16 variants with pathogenic effect were identified in the TP53, PIK3CA, PTEN, APC, NRAS, KRAS, GNAS, and MET genes involved in important signaling pathways. The genetic alterations found in the presurgical plasma in six of seven ovarian cancer patients were no longer present in the plasma after tumor surgical removal. Identical variants in formalin-fixed paraffin embedded (FFPE) tissues and preoperative plasma specimens were observed in only two cases. These findings suggest that the detected presurgical pathogenic variants absent in postsurgery plasma are associated with the primary ovarian tumor. Finally, the low-identified concordance between FFPE and plasma can be due to various factors, but most likely to high tumor heterogeneity and low ctDNA level."	"Acquired Secondary RAS Mutation in BRAF<sup>V600E</sup>-Mutated Thyroid Cancer Patients Treated with BRAF Inhibitors.  Background:  The BRAF<sup>V600E</sup> mutation is the most common driver mutation in papillary thyroid cancer (PTC) and anaplastic thyroid cancer (ATC). This mutation is considered actionable and, for BRAF<sup>V600E</sup>-mutated ATC, a BRAF inhibitor (dabrafenib) in combination with an MEK inhibitor (trametinib) is FDA approved. BRAF inhibitors have also shown efficacy in BRAF<sup>V600E</sup>-mutated PTC. However, as with all targeted therapies, resistance to these drugs eventually develops. It is essential that we understand the mechanisms of resistance to the BRAF inhibitors in thyroid cancer to develop future strategies to effectively treat these patients and improve survival.  Patients:  Herein, we describe four patients with thyroid cancer treated with selective BRAF inhibitors, who developed a RAS mutation in addition to the BRAF<sup>V600E</sup> mutation at progression.  Results:  Patients 1 and 3 acquired a KRAS<sup>G12V</sup> mutation in the progressive tumor, patient 2 acquired a NRAS<sup>Q61K</sup> mutation in a progressive lymph node, and patient 4 acquired NRAS<sup>G13D</sup> mutation on liquid biopsy performed at the time of radiographic disease progression.  Conclusion:  Similar to the melanoma experience, the emergence of RAS mutations appears to act as a mechanism of resistance to BRAF inhibitors in thyroid cancers."	"Qualitative Ras pathway signature for cetuximab therapy reveals resistant mechanism in colorectal cancer. Cetuximab therapy, which heavily relies on the activation of Ras pathway, has been used in KRAS, NRAS, BRAF, and PIK3CA wild-type colorectal cancer (CRC) (Ras-normal). However, the response rate only reached 60%, due to false-negative mutation detection and mutation-like transcriptome features in wild-type patients. Herein, by integrating RNA-seq, microarray, and mutation data, we developed a Ras pathway signature by characterizing KRAS/NRAS/BRAF/PIK3CA mutations to identify the hidden nonresponders from the Ras-normal patients by mutation detection. Using public and in-house data of CRC patients treated with cetuximab, discovery of the signature could identify cetuximab-resistant samples from the Ras-normal samples. Cetuximab resistance-related genes, such as PTEN, were significantly and frequently mutated in the identified Ras-activated samples, whereas two cetuximab sensitivity-related genes, APC and TP53, showed comutation and significantly higher mutation frequencies in the remaining Ras-normal samples. Furthermore, all the NF1- and BCL2L1-mutated samples were identified as Ras-activated from the Ras-normal samples by the Ras pathway signature with significantly under-regulated expression. Genes co-expressed with the two genes were both involved in Ras signaling pathway, the out-of-control of which could be attributed by the genes' loss-of-function mutations. To improve the treatment of cetuximab in CRC, NF1 and BCL2L1 could be used as complementary detection technique to those applied in clinical. In conclusion, the proposed Ras pathway signature could identify the hidden CRC patients resistant to cetuximab therapy and help to reveal resistance mechanisms."	"Liquid Biopsies in Progressing Metastatic Colorectal Cancer- Application and their Therapeutic Implications According to the RAS Status. Introduction The treatment of metastatic colorectal cancer (mCRC) now includes therapy with biological agents inthe first line of treatment. The advances of our knowledge in molecular biology of these tumors allowed the identification of signaling pathways involved in tumorigenesis as potential therapeutic targets. In this field, monoclonal antibodies against epidermal growth factor receptor (anti-EGFR) added to a chemotherapy doublet have demonstrated improved overall survival for these patients. However, mutations in oncogenes NRAS/KRAS are predictive of absence of response to these treatments. Therefore, genotyping in mCRC is essential to personalized treatment. It is known that tumoral heterogeneity and selective pression by targeted therapies can lead to changes in RAS mutational status, along the course of the disease. This opens the possibility of different targeted therapies. Tumor analysis through liquid biopsies allows for the detection of genetic alterations in a less invasive way than common solid tumor biopsy and is currently being validated in different settings, with promising results in mCRC. The main goal of this study was to assess therapeutic implications of Liquid Biopsy (LB) in treatment of progressive mCRC and its potential impact on survival. Material and methods A retrospective, observational, unicentric study of patients diagnosed with progressive mCRC and who underwent LB after several lines of treatment, was performed. Analysis of patient and tumor characteristics, as well as LB results was performed with descriptive statistics and survival analysis according to Kaplan-Meier methods and COX analysis with STATA/IC software. Results We included 18 patients on whom LB were performed (median age 61 years; 55% (n=10) men). The median follow-up was 37.4 months. At diagnosis, 12 patients had a KRAS mutation. In the LB reassessment, there was a change in the RAS status in six patients, who initially had a mutation and later showed KRASwt (wild type RAS). LB led to a change in the therapeutic plan in these six patients, allowing the use of anti-EGFR therapy. Progression Free Survival (PFS) and Overall Survival (OS) could not be calculated at this time. Conclusion LB can revolutionize the approach to mCRC by optimizing therapeutic sequencing in a continuum of care strategy. The search for genetic changes over the course of the disease allows a better therapeutic approach to each patient. In the study presented, the realization of LB allowed an increase in therapeutic options in 1/3 of the patients. It is important to continue these studies with larger samples in order to better validate this strategy."	"Molecular subtypes in canine hemangiosarcoma reveal similarities with human angiosarcoma. Angiosarcoma (AS) is a rare neoplasm with limited treatment options and a poor survival rate. Development of effective therapies is hindered by the rarity of this disease. Dogs spontaneously develop hemangiosarcoma (HSA), a common, histologically similar neoplasm. Metastatic disease occurs rapidly and despite chemotherapy, most dogs die several months after diagnosis. These features suggest that HSA might provide a tractable model to test experimental therapies in clinical trials. We previously reported whole exome sequencing of 20 HSA cases. Here we report development of a NGS targeted resequencing panel to detect driver mutations in HSA and other canine tumors. We validated the panel by resequencing the original 20 cases and sequenced 30 additional cases. Overall, we identified potential driver mutations in over 90% of the cases, including well-documented (in human cancers) oncogenic mutations in PIK3CA (46%), PTEN (6%), PLCG1(4%), and TP53 (66%), as well as previously undetected recurrent activating mutations in NRAS (24%). The driver role of these mutations is further demonstrated by augmented downstream signaling crucial to tumor growth. The recurrent, mutually exclusive mutation patterns suggest distinct molecular subtypes of HSA. Driver mutations in some subtypes closely resemble those seen in some AS cases, including NRAS, PLCG1, PIK3CA and TP53. Furthermore, activation of the MAPK and PI3K pathways appear to be key oncogenic mechanisms in both species. Together, these observations suggest that dogs with spontaneous HSA could serve as a useful model for testing the efficacy of targeted therapies, some of which could potentially be of therapeutic value in AS."	"RAS, wanted dead or alive: Advances in targeting RAS mutant cancers. Oncogenic RAS proteins, which are mutated in approximately 24% of all human cancers, have earned a well-deserved reputation as being &quot;undruggable.&quot; However, several studies have challenged that reputation. With the first small molecules that directly target one oncogenic RAS mutant (G12C) undergoing clinical evaluation, there have been substantial advances in finding anti-RAS therapeutic strategies. Furthermore, new insights have come from the growing appreciation that neither all RAS proteins (HRAS, NRAS, and KRAS4A/KRAS4B) nor all oncogenic RAS mutations (such as at residues Gly<sup>12</sup>, Gly<sup>13</sup>, and Gln<sup>61</sup>) have the same impact on RAS signaling and function. The role of the nonmutated, wild-type RAS proteins in the context of mutant RAS is increasingly considered to be targetable, with reports of strategies that directly disrupt either the RAS interaction with activating guanine nucleotide exchange factors (GEFs) or receptor tyrosine kinase-mediated and GEF-dependent RAS activation (such as by targeting the scaffolding phosphatase SHP2). Last, the development of agents that target downstream effectors of RAS signaling has advanced substantially. In this review, we highlight some important trends in the targeting of RAS proteins in cancer."	"RAS Pathway Mutation Patterns in Patients With Juvenile Myelomonocytic Leukemia: A Developing Country Single-center Experience. Juvenile myelomonocytic leukemia (JMML) is a rare clonal myelodysplastic/myeloproliferative neoplasm of early childhood. Historically, it was difficult to diagnose clinically, as patients present with manifestations shared with other hematologic malignancies or viral infections. It is now clear that JMML is a disease of hyperactive RAS signaling. We examined the bone marrow of 41 Egyptian children with JMML by direct sequencing for mutations in the RAS pathway genes. Mutations were detected in 33 (80%) of 41 patients. We identified 12 (29%) of 41 patients with PTPN11 mutation; 18 (44%) of 41 with RAS mutation; 9 (22%) of 41 with NRAS mutation; 9 (22%) of 41 with KRAS mutation; and 3 (7%) of 41 with CBL mutation. Eleven (92%) of the PTPN11 mutations were detected in exon 3 and 1 (8%) in exon 13. Seven of the NRAS mutations were in exon 2, and 2 were in exon 3. All KRAS mutations were in exon 2. The 3 cases with CBL mutation were homozygous mutations in exon 8. All the mutations detected in PTPN11, NRAS/KRAS, and the CBL genes were previously reported missense mutations in JMML. Our results demonstrate that Egyptian children diagnosed with JMML have high frequency of NRAS/KRAS mutations and lower frequency of PTPN11 mutations as compared with previous studies. The concept of mutually exclusive RAS pathway mutations was clearly observed in our patients. All cancer centers in our region should start implementing molecular diagnostic methods before confirming the diagnosis of JMML and before offering hematopoietic stem cell transplantation."	"RUNX1-mutated families show phenotype heterogeneity and a somatic mutation profile unique to germline predisposed AML. First reported in 1999, germline runt-related transcription factor 1 (RUNX1) mutations are a well-established cause of familial platelet disorder with predisposition to myeloid malignancy (FPD-MM). We present the clinical phenotypes and genetic mutations detected in 10 novel RUNX1-mutated FPD-MM families. Genomic analyses on these families detected 2 partial gene deletions, 3 novel mutations, and 5 recurrent mutations as the germline RUNX1 alterations leading to FPD-MM. Combining genomic data from the families reported herein with aggregated published data sets resulted in 130 germline RUNX1 families, which allowed us to investigate whether specific germline mutation characteristics (type, location) could explain the large phenotypic heterogeneity between patients with familial platelet disorder and different HMs. Comparing the somatic mutational signatures between the available familial (n = 35) and published sporadic (n = 137) RUNX1-mutated AML patients showed enrichment for somatic mutations affecting the second RUNX1 allele and GATA2. Conversely, we observed a decreased number of somatic mutations affecting NRAS, SRSF2, and DNMT3A and the collective genes associated with CHIP and epigenetic regulation. This is the largest aggregation and analysis of germline RUNX1 mutations performed to date, providing a unique opportunity to examine the factors underlying phenotypic differences and disease progression from FPD to MM."	"Changes in the genetic landscape during the malignization of high grade squamous intraepithelial lesion into cervical cancer. In 5 patients, a change in the genetic landscape from HPV16 positive high-grade squamous intraepithelial lesion (HSIL) to squamous cervical cancer was traced, which occurred in these patients within the period from 7 months to 5 years after diagnosing HSIL. The DNA from paraffin blocks of dysplasia tissue and the tumor that emerged afterwards was used for the study, which was analyzed using the OncoScan FFPE microarray Assay Kit Affymetrix (USA) for genome-wide determination of gene abundance and 65 key somatic driver mutations of oncogenes and tumor suppressor genes. In the study of HSIL material, somatic mutations were observed in 4/5 cases, 18 different somatic driver mutations of the NRAS, EGFR, BRAF, KRAS, IDH2 oncogenes and TP53 suppressor genes were found and almost no CNA-Copy Number Aberration was identified. HSIL malignization is associated with the appearance of secondary driver mutations in oncogenes and tumor suppressor genes and a large number of structural and numerical CNA, the frequency of which correlates with the time of dysplasia malignization into cancer with a very high correlation coefficient r = 0.98, P = 0.004. The trees of dysplasia evolution into tumor were constructed for each patient. According to the results of the work, it is assumed that the initiation of the development of mucosa dysplastic changes is due to primary driver mutations. The formation of secondary driver mutations and CNA are genetic mechanisms of malignant transformation, while the scenarios of the evolution of dysplasia into a tumor are individual and very diverse."	"miRNA expression can classify pediatric thyroid lesions and increases the diagnostic yield of mutation testing. Genetic alterations in multiple cell signaling pathways are involved in the molecular pathogenesis of thyroid cancer. Oncogene mutation testing and gene-expression profiling are routinely used for the preoperative risk management of adult thyroid nodules. In this study, we evaluated the potential value of miRNA biomarkers for the classification of pediatric thyroid lesions. Double-blind case-control study with 113 resected pediatric lesions: 66 malignant and 47 benign. Quantitative and qualitative molecular data generated with a 10-miRNA expression panel (ThyraMIR) and a next-generation sequencing oncogene panel (ThyGeNEXT) were compared with clinicopathological parameters. miRNAs were differentially expressed in benign versus malignant tumors with distinct expression patterns in different histopathology categories. The 10-miRNA classifier identified 39 (59%) malignant lesions with 100% specificity. A positive classifier score was associated with lymph node metastasis, extrathyroidal extension and intrathyroidal spread. Genetic alterations associated with increased risk for malignancy were detected in 35 (53%) malignant cases, 20 positive for point mutations in BRAF, HRAS, KRAS, NRAS, PIK3CA, or TERT and 15 positive for gene rearrangements involving ALK, NTRK3, PPARG, or RET. The 10-miRNA classifier correctly identified 11 mutation-negative malignant cases. The performance of the combined molecular test was 70% sensitivity and 96% specificity with an area under the curve of 0.924. These data suggest that the regulatory miRNA pathways underlying thyroid tumorigenesis are similar in adults and children. miRNA expression can identify malignant lesions with high specificity, augment the diagnostic yield of mutation testing, and improve the molecular classification of pediatric thyroid nodules."	"Assessment of clinical outcomes with immune checkpoint inhibitor therapy in melanoma patients with CDKN2A and TP53 pathogenic mutations. CDKN2A and TP53 mutations are recurrent events in melanoma, occurring in 13.3% and 15.1% of cases respectively and are associated with poorer outcomes. It is unclear what effect CDKN2A and TP53 mutations have on the clinical outcomes of patients treated with checkpoint inhibitors. All patients with cutaneous melanoma or melanoma of unknown primary who received checkpoint inhibitor therapy and underwent genomic profiling with the 50-gene Mayo Clinic solid tumor targeted cancer gene panel were included. Patients were stratified according to the presence or absence of mutations in BRAF, NRAS, CDKN2A, and TP53. Patients without mutations in any of these genes were termed quadruple wild type (QuadWT). Clinical outcomes including median time to progression (TTP), median overall survival (OS), 6-month and 12-month OS, 6-month and 12-month without progression, ORR and disease control rate (DCR) were analyzed according to the mutational status of CDKN2A, TP53 and QuadWT. A total of 102 patients were included in this study of which 14 had mutations of CDKN2A (CDKN2Amut), 21 had TP53 mutations (TP53mut), and 12 were QuadWT. TP53mut, CDKN2Amut and QuadWT mutational status did not impact clinical outcomes including median TTP, median OS, 6-month and 12-month OS, 6-month and 12-month without progression, ORR and DCR. There was a trend towards improved median TTP and DCR in CDKN2Amut cohort and a trend towards worsened median TTP in the QuadWT cohort. Cell cycle regulators such as TP53 and CDKN2A do not appear to significantly alter clinical outcomes when immune checkpoint inhibitors are used."	"Genomic and pathological heterogeneity in clinically diagnosed small cell lung cancer in never/light smokers identifies therapeutically targetable alterations. Small cell lung cancer (SCLC) occurs infrequently in never/former light smokers. We sought to study this rare clinical subset through next generation sequencing (NGS) and by characterizing a representative patient derived model. We performed targeted NGS, as well as comprehensive pathological evaluation, in 11 never/former light smokers with clinically diagnosed SCLC. We established a patient derived model from one such patient (DFCI168) harboring an NRAS<sup>Q61K</sup> mutation and characterized the sensitivity of this model to MEK and TORC1/2 inhibitors. Despite the clinical diagnosis of SCLC, the majority (8/11) of cases were either of non-pulmonary origin or of mixed histology and included atypical carcinoid (n=1), mixed non-small cell lung carcinoma (NSCLC) and SCLC (n=4), unspecified poorly differentiated carcinoma, (n=1) or small cell carcinoma from different origins (n=2). RB1 and TP53 mutations were found in 4 and 5 cases, respectively. Predicted driver mutations were detected in EGFR (n=2), NRAS (n=1), KRAS (n=1), BRCA1 (n=1), ATM (n=1) and one case harbored a TMPRSS2-ERG fusion. DFCI168 (NRAS<sup>Q61K</sup> ) exhibited marked sensitivity to MEK inhibitors in vitro and in vivo. The combination of MEK and mTORC1/2 inhibitors synergized to prevent compensatory mTOR activation, resulting in prolonged growth inhibition in this model and in three other NRAS-mutant lung cancer cell lines. SCLC in never/former light smokers is rare and is potentially a distinct disease entity comprised of oncogenic driver mutation-harboring carcinomas morphologically and/or clinically mimicking SCLC. Comprehensive pathologic review integrated with genomic profiling is critical in refining the diagnosis and in identifying potential therapeutic options."	"Acute Promyelocytic Leukemia: A Constellation of Molecular Events around a Single PML-RARA Fusion Gene. Although acute promyelocytic leukemia (APL) is one of the most characterized forms of acute myeloid leukemia (AML), the molecular mechanisms involved in the development and progression of this disease are still a matter of study. APL is defined by the PML-RARA rearrangement as a consequence of the translocation t(15;17)(q24;q21). However, this abnormality alone is not able to trigger the whole leukemic phenotype and secondary cooperating events might contribute to APL pathogenesis. Additional somatic mutations are known to occur recurrently in several genes, such as FLT3, WT1, NRAS and KRAS, whereas mutations in other common AML genes are rarely detected, resulting in a different molecular profile compared to other AML subtypes. How this mutational spectrum, including point mutations in the PML-RARA fusion gene, could contribute to the 10%-15% of relapsed or resistant APL patients is still unknown. Moreover, due to the uncertain impact of additional mutations on prognosis, the identification of the APL-specific genetic lesion is still the only method recommended in the routine evaluation/screening at diagnosis and for minimal residual disease (MRD) assessment. However, the gene expression profile of genes, such as ID1, BAALC, ERG, and KMT2E, once combined with the molecular events, might improve future prognostic models, allowing us to predict clinical outcomes and to categorize APL patients in different risk subsets, as recently reported. In this review, we will focus on the molecular characterization of APL patients at diagnosis, relapse and resistance, in both children and adults. We will also describe different standardized molecular approaches to study MRD, including those recently developed. Finally, we will discuss how novel molecular findings can improve the management of this disease."	"Comprehensive Evaluation of Relapse Risk (CERR) Score for Colorectal Liver Metastases: Development and Validation. The calculation of the tumor burden score (TBS) is not perfect because the bilobar spread of colorectal liver metastasis (CRLM) is neglected. The identification of an ideal prognostic scoring system for CRLM remains controversial. Patients who underwent curative intent liver resection for CRLM from one medical center were enrolled in cohort 1 (787 patients) and cohort 2 (162 patients). Tumor relapse-free survival (RFS) was the main outcome. A Cox regression model was used to identify independent predictors of prognosis. The time-dependent area under the curve, calibration curve, and C-index were employed to validate the predictive ability of the survival model. Modified TBS (mTBS) was established by a mathematical equation with parameters including CRLM size, CRLM number, and unilobar or bilobar metastasis. Five preoperative predictors of worse RFS were identified in cohort 1 and incorporated into the Comprehensive Evaluation of Relapse Risk (CERR) score: KRAS/NRAS/BRAF-mutated tumor (1 point); node-positive primary (1 point); extrahepatic disease (1 point); carcinoembryonic antigen level &gt; 200 ng/mL or carbohydrate antigen 19-9 (CA19-9) &gt;200 U/mL (1 point); and mTBS between 5 and 11 (1 point) or 12 and over (2 points). Patients in cohort 1 were stratified by their CERR score into risk groups: the high-risk group (CERR score 4 or more), the medium-risk group (CERR score 2-3), and the low-risk group (CERR score 0-1). Importantly, internal validation in cohort 1 and further validation in cohort 2 both showed the superior discriminatory capacity of the CERR score. mTBS should be promoted. The CERR score is a powerful prognostic tool that can help determine optimal clinical management strategies. This work resulted in the successful modification of the tumor burden score and development of a comprehensive and practical prognostic scoring system-the Comprehensive Evaluation of Relapse Risk (CERR) score. The CERR score, with a better prognostic discriminatory ability, outperformed the Fong score. Perhaps more importantly, the CERR score is a powerful prognostic tool because it unified the most consistently reported prognostic factors. Therefore, the CERR score can assist doctors in determining optimal clinical management strategies."	"Perineural invasion is associated with poor prognosis of colorectal cancer: a retrospective cohort study. Perineural invasion (PNI) is associated with poor prognosis in a variety of cancers. Our aim was to determine the clinicopathological factors associated with PNI in colorectal cancer (CRC) and its impact on patient survival. The clinical data of 1412 patients diagnosed with CRC from July 2013 to July 2016 were retrospectively collected. PNI was determined based on hematoxylin-eosin staining. The relationships of PNI with various clinicopathological factors and prognosis were analyzed. The incidence of PNI in the entire cohort was 21.5%. PNI was significantly more common in patients with lower tumor differentiation, higher tumor stage, vascular invasion, TNM stage, tumor diameter, MMR/KRAS/NRAS/BRAF mutation, and more positive lymph nodes. Logistic regression analysis showed that T stage, vascular invasion, tumor diameter, and MMR were the main influencing factors of PNI. Cox regression analysis showed that poor tumor differentiation, N stage, TNM stage, PNI, and BRAF status were independent prognostic factors for OS. The OS, CSS, and PFS rate of the PNI (-) group was higher than that of the PNI (+) group, and the difference was statistically significant (P &lt; 0.001). PNI in patients with colorectal cancer is significantly associated with T stage, TNM stage, vessel invasion, tumor diameter, MMR status, and BRAF mutation. PNI status is an independent prognostic factor for CRC. Assessing the postoperative PNI status may help predict prognosis and determine further treatment options for these patients."	"Multiclonal colorectal cancers with divergent histomorphological features and RAS mutations: one cancer or separate cancers? Detection of coexisting mutations within the same signal transduction pathway, which are expected to be mutually exclusive, raises a concern of laboratory errors. We have previously confirmed the presence of different RAS (KRAS and NRAS) mutations in the adenoma and/or adenocarcinoma subpopulations of colorectal cancers (CRCs). In this study, multiregional analyses by next-generation sequencing were conducted to elucidate the mechanisms underlying multiple RAS mutations seen in 5 CRC specimens. Multiregional analyses were initially conducted in a single tissue block originally submitted for mutational profiling. In 2 specimens, mutational status of the APC gene was not identical, indicating collisional adenoma and adenocarcinoma. In 3 specimens, the same APC mutation was present in different subpopulations with divergent RAS mutations, indicating a common clonal origin. Subsequent comprehensive multiregional analyses of additional adenoma and adenocarcinoma components revealed multiclonal CRCs with divergent histomorphological features and RAS mutations originating from a common APC-mutated founder lineage of adenoma, but from different RAS-mutated founder lineages of adenocarcinoma. These findings are consistent with the stepwise model of colorectal tumorigenesis along with parallel evolution, which affects RAS genes within the mitogen-activated protein kinase pathway and occurs during the progression from adenomas to adenocarcinomas. Evaluation of tumor subpopulations with divergent histomorphological features by pathologists may help identify multiclonal CRCs. Further studies are warranted to evaluate the incidence of multiclonality in CRCs and its impact on clinical outcomes. Perhaps, multiclonal CRCs originating from the same APC-mutated founder lineage of adenoma but from different RAS-mutated founder lineages of adenocarcinomas should be defined and managed as separate CRCs."	"Epstein-Barr virus induces morphological and molecular changes in thyroid neoplastic cells. Although the evolution of differentiated thyroid cancer (DTC) is usually indolent, some tumors grow fast, metastasize, and may be fatal. Viruses have been associated with many human tumors, especially the Epstein-Barr virus (EBV), which shows a high viral load in DTC. In order to evaluate the ability of the virus to cause morphological and molecular changes in neoplastic thyroid cell lines TPC-1, BCPAP, and 8505C, a viral adaptation was performed for the analysis of EBV cytopathic effect (CPE), viral kinetics and gene expression analysis of oncogenes KRAS, NRAS, HRAS, and TP53. Comparison of inoculated cells with non-inoculated control cells showed that all tumor cell lines were permissive to the virus. The virus caused CPE in the TPC-1 and 8505C, but not in BCPAP cells. Viral kinetic was similar in both BCPAP and 8505C with a point of eclipse at 24 h post infection. TPC-1 cell line displayed a decreasing growth curve, with highest viral load right after inoculation, which decreased over time. There was hyperexpression of TP53 and NRAS in BCPAP cell (p = 0.012 and p = 0.0344, respectively). The 8505C cell line presented NRAS hyperexpression (p = 0.0255), but lower TP53 expression (p = 0.0274). We concluded that neoplastic thyroid cell lines are permissive to EBV that the virus presents different viral kinetic patterns in different cell lines and produces a CPE on both well-differentiated and undifferentiated thyroid cell lines. We also demonstrated that EBV interferes in oncogene expression in thyroid neoplastic cell lines, suggesting that these effects could be related to different tumor progression patterns."	"Genetic mutational analysis of pediatric acute lymphoblastic leukemia from a single center in China using exon sequencing. Acute lymphoblastic leukemia (ALL), the most common childhood malignancy, is characterized by recurring structural chromosomal alterations and genetic alterations, whose detection is critical in diagnosis, risk stratification and prognostication. However, the genetic mechanisms that give rise to ALL remain poorly understood. Using next-generation sequencing (NGS) in matched germline and tumor samples from 140 pediatric Chinese patients with ALL, we landscaped the gene mutations and estimated the mutation frequencies in this disease. Our results showed that the top driver oncogenes having a mutation prevalence over 5% in childhood ALL included KRAS (8.76%), NRAS (6.4%), FLT3 (5.7%) and KMT2D (5.0%). While the most frequently mutated genes were KRAS, NRAS and FLT3 in B cell ALL (B-ALL), the most common mutations were enriched in NOTCH1 (23.1%), FBXW7 (23.1%) and PHF6 (11.5%) in T cell ALL (T-ALL). These mutant genes are involved in key molecular processes, including the Ras pathway, the Notch pathway, epigenetic modification, and cell-cycle regulation. Strikingly, more than 50% of mutations occurred in the high-hyperdiploid (HeH) ALL existed in Ras pathway, especially FLT3 (20%). We also found that the epigenetic regulator gene KMT2D, which is frequently mutated in ALL, may be involved in driving leukemia transformation, as evidenced by an in vitro functional assay. Overall, this study provides further insights into the genetic basis of ALL and shows that Ras mutations are predominant in childhood ALL, especially in the high-hyperdiploid subtype in our research."	"Guardant360 Circulating Tumor DNA Assay Is Concordant with FoundationOne Next-Generation Sequencing in Detecting Actionable Driver Mutations in Anti-EGFR Naive Metastatic Colorectal Cancer. Direct comparisons between Guardant360 (G360) circulating tumor DNA (ctDNA) and FoundationOne (F1) tumor biopsy genomic profiling in metastatic colorectal cancer (mCRC) are limited. We aim to assess the concordance across overlapping genes tested in both F1 and G360 in patients with mCRC. We retrospectively analyzed 75 patients with mCRC who underwent G360 and F1 testing. We evaluated the concordance among gene mutations tested by both G360 and F1 among three categories of patients: untreated, treated without, and treated with EGFR inhibitors, while considering the clonal and/or subclonal nature of each genomic alteration. There was a high rate of concordance in APC, TP53, KRAS, NRAS, and BRAF mutations in the treatment-naive and non-anti-EGFR-treated cohorts. There was increased discordance in the anti-EGFR treated patients in three drivers of anti-EGFR resistance: KRAS, NRAS, and EGFR somatic mutations. Based on percentage of ctDNA, discordant somatic mutations were mostly subclonal instead of clonal and may have limited clinical significance. Most discordant amplifications noted on G360 showed the magnitude below the top decile, occurred in all three cohorts of patients, and were of unknown clinical significance. Serial ctDNA in anti-EGFR treated patients showed the emergence of multiple new alterations that affected the EGFR pathway: EGFR and RAS mutations and MET, RAS, and BRAF amplifications. G360 Next-Generation Sequencing platform may be used as an alternative to F1 to detect targetable somatic alterations in non-anti-EGFR treated mCRC, but larger prospective studies are needed to further validate our findings. Genomic analysis of tissue biopsy is currently the optimal method for identifying DNA genomic alterations to help physicians target specific genes but has many disadvantages that may be mitigated by a circulating free tumor DNA (ctDNA) assay. This study showed a high concordance rate in certain gene mutations in patients who were treatment naive and treated with non-anti-EGFR therapy prior to ctDNA testing. This suggests that ctDNA genomic analysis may potentially be used as an alternative to tumor biopsy to identify appropriate patients for treatment selection in mCRC, but larger prospective studies are needed to further validate concordance among tissue and ctDNA tumor profiling."	"Effect of Tumor Location on Clinicopathological and Molecular Markers in Colorectal Cancer in Eastern China Patients: An Analysis of 2,356 Cases. Colorectal cancer (CRC) has become a major health concern in China due to its increasing incidence and mortality. This study aimed to clarify the relationship between tumor locations and the clinicopathological molecular marker features in eastern China CRC patients. We continuously collected data on 2,356 CRC patients who underwent surgical resection from January 2017 to April 2019. Right-sided colorectal cancer (RCC), was located from the cecum to the transverse colon and left-side colorectal cancer (LCRC) was located from the splenic flexure to the rectum. The clinicopathological indices (including age, sex, pTNM stage, mucinous production, and distant metastasis) and frequency of molecular markers such as KRAS, NRAS, BRAF, and microsatellite instability (MSI) were statistically analyzed between the RCC and LCRC groups. The associations between clinicopathological characters and molecular markers were also investigated. LCRC and RCC proportions in eastern China CRC patients were 81.75% and 18.25%, respectively. RCC (vs. LCRC) was more frequently observed with higher frequencies of MSI-high (MSI-H) and BRAF mutations in female and younger patients, and was closely associated with metastasis, poor differentiation, and mucinous tumors. Tumor location also showed significant differences in bowel wall infiltration degree and pTNM stage. Mutation rates of KRAS, NRAS, MSI, and BRAF were 40.15%, 3.85%, 6.31%, and 2.30%, respectively. Patients with a KRAS mutation tended to be female, had mucinous, perineural invasive, and polypoid tumor. Those with NRAS mutation tended to develop well-differentiated ulcerative tumors. The BRAF mutation was more relevant with lymph node involvement, deeper infiltration of the bowel wall, mucinous, poorly-differentiated tumor with thrombus, and perineural invasion. Furthermore, MSI-H was more commonly found in younger patients with deeper bowel wall infiltration and a poorly-differentiated polypoid tumor, whereas MSS patients tended to develop lymph node involvement, and a mucinous and perineural invasive tumor. In our study, we found that LCRC and RCC showed different features on the clinicopathological and molecular markers in eastern China CRC patients. Since our data differ from those of Western countries and other regions in China, further studies are required to clarify the regional differences of the clinicopathological and molecular markers in CRC patients."	"A mechanism for the response of KRAS<sup>G13D</sup> expressing colorectal cancers to EGFR inhibitors. Previous analysis of Phase 3 clinical trial data for colorectal cancer patients treated with cetuximab revealed that patients harboring a KRAS mutation did not benefit from treatment. This finding set the stage for one of the first examples of cancer personalized medicine. Confusingly, patients with a Glycine to Aspartic Acid mutation at amino acid 13 of KRAS (KRAS<sup>G13D</sup>) appeared to respond positively to cetuximab, suggesting this mutation is an exception to the rule that KRAS mutations confer resistance to Epidermal Growth Factor Receptor (EGFR) inhibitors. Oncologists have stated that the mechanism that explains why the KRAS<sup>G13D</sup> mutation is an exception should be identified before KRAS<sup>G13D</sup> colorectal cancer patients should be treated differently. We have recently elucidated this mechanism using mathematical modeling of the KRAS biochemical system coupled with experimental biology. The mechanism we revealed involves a cetuximab-mediated reduction in HRAS and NRAS signaling within KRAS<sup>G13D</sup> cancer cells, owing to impaired binding of KRAS<sup>G13D</sup> to the tumor suppressor, Neurofibromin (NF1)."	"Hypophosphatemic rickets: A rare complication of congenital melanocytic nevus syndrome. We report the case of a child who presented with a giant melanocytic nevus with numerous satellite nevi at birth and developed hypophosphatemic rickets due to excessive secretion of the FGF23 hormone. A NRAS c.182A&gt;G (Q61R) mutation was identified in the lesional skin. The functional outcome was favorable with medical treatment."	"Targeting NRAS-Mutant Cancers with the Selective STK19 Kinase Inhibitor Chelidonine. Oncogenic mutations in NRAS promote tumorigenesis. Although novel anti-NRAS inhibitors are urgently needed for the treatment of cancer, the protein is generally considered &quot;undruggable&quot; and no effective therapies have yet reached the clinic. STK19 kinase was recently reported to be a novel activator of NRAS and a potential therapeutic target for NRAS-mutant melanomas. Here, we describe a new pharmacologic inhibitor of STK19 kinase for the treatment of NRAS-mutant cancers. The STK19 kinase inhibitor was identified from a natural compound library using a luminescent phosphorylation assay as the primary screen followed by verification with an in vitro kinase assay and immunoblotting of treated cell extracts. The antitumor potency of chelidonine was investigated in vitro and in vivo using a panel of NRAS-mutant and NRAS wild-type cancer cells. Chelidonine was identified as a potent and selective inhibitor of STK19 kinase activity. In vitro, chelidonine treatment inhibited NRAS signaling, leading to reduced cell proliferation and induction of apoptosis in a panel of NRAS-mutant cancer cell lines, including melanoma, liver, lung, and gastric cancer. In vivo, chelidonine suppressed the growth of NRAS-driven tumor cells in nude mice while exhibiting minimal toxicity. Chelidonine suppresses NRAS-mutant cancer cell growth and could have utility as a new treatment for such malignancies."	"Toxicity Syndromes, Patient-Related Clinical Indicator of Toxicity Burden Induced by Intensive Triplet Chemotherapy-Based Regimens in Gastrointestinal Cancers With Metastatic Disease. Background: Cancer treatments induce symptoms/signs superimposing on individual patient's clinical status, determining heterogenous toxicity syndromes (TS). We reviewed intensive first line triplet chemotherapy-based regimens in metastatic gastro-intestinal cancers (mGI), based on FIr/FOx schedule, fluorouracil and weekly alternating irinotecan/oxaliplatin, to point out limiting TS (LTS) relevance. Methods: Metastatic colo-rectal (mCRC), pancreatic ductal adenocarcinoma (mPDAC), gastric carcinoma (mGC) patients were enrolled by careful decision-making including age, performance status (PS), and comorbidity status in real life phase II studies: FIr-B/FOx adding bevacizumab (B) overall, FIr-C/FOx-C adding cetuximab (C) in KRAS/NRAS wild-type mCRC; FIr/FOx in mPDAC; FD/FOx adding docetaxel (D) in mGC. Toxicity, individual LTS, LT alone (LTS-single site, LTS-ss) or associated to other limiting/G2 toxicities (LTS-multiple sites, LTS-ms) were evaluated, compared by chi-square test. In FIr-C/FOx-C, 5-fluorouracil/irinotecan pharmacogenomic biomarkers, 5-fluorouracil degradation rate (5-FUDR), SNPs ABCB1, CYP3A4, DYPD, UGT1A1 were evaluated, related with LTS. Results: FIr-B/FOx, FIr-C/FOx-C in mCRC, FIr/FOx in mPDAC, FD/FOx in mGC, showed activity, efficacy, toxicities similar to reported triplet regimens. LTS: mCRC FIr-B/FOx 44%, LTS-ms 24%, LTS-ss 20%, in young-elderly 46%, LTS-ms significantly increased vs. LTS-ss; FIr-C/FOx-C 65.5%, significantly increased LTS-ms vs. LTS-ss, in young-elderly 83%; mPDAC FIr/FOx 27.5%, mostly LTS-ms, in young-elderly 38.4% all LTS-ms; mGC FD/FOx 30%, all LTS-ms, in young-elderly 25%. Reduced FUDR, SNPs CYP3A4, UGT1A1, &gt;1 positive pharmacogenomic biomarkers were prevalent in patients with gastrointestinal LTS. Conclusions: LTS is an innovative clinical parameter of toxicity burden, differential treatment-related TS in individual patient. LTS can evaluate pharmacogenomic biomarkers predictive relevance to select mGI patients fit for intensive treatments, at risk of limiting gastrointestinal toxicity. Trial Registrations: The trials were registered at Osservatorio Nazionale sulla Sperimentazione Clinica dei Medicinali (OsSC) Agenzia Italiana del Farmaco (AIFA) Numero EudraCT 2007-004946-34, and Osservatorio Nazionale sulla Sperimentazione Clinica dei Medicinali (OsSC) Agenzia Italiana del Farmaco (AIFA) Numero EudraCT 2009- 016793-32."	"Ras pathway mutation feature in the same individuals at diagnosis and relapse of childhood acute lymphoblastic leukemia. Acute lymphoblastic leukemia (ALL) is the most common malignancy in children, while relapse and refractory ALL remains a leading cause of death in children. However, paired ALL samples of initial diagnosis and relapse subjected to next-generation sequencing (NGS) could construct clonal lineage changes, and help to explore the key issues in the evolutionary process of tumor clones. Therefore, we aim to analyze gene alterations during the initial diagnosis and relapse of ALL patients and to explore the underlying mechanism. Targeted exome sequencing technology was used to detect molecular characteristic of initial diagnosis and relapse of ALL in 12 pediatric patients. Clinical features, treatment response, prognostic factors and genetic features were analyzed. In our 12 paired samples, 75% of pre-B-cell acute lymphoblastic leukemia (B-ALL) patients had alterations in the Ras pathway (NRAS, KRAS, NF1, and EPOR), and Ras mutation are very common in patients with ALL relapse. TP53 mutations mainly existed in the primary clones and occurred at the initial diagnosis and relapse of ALL. Relapse-associated genes such as NT5C2 and CREBBP were observed in patients with ALL relapse; however, all patients included in this study had gene abnormalities in the Ras pathway, and NT5C2 and CREBBP genes may collaboratively promote ALL relapse. Among the 12 ALL patients, Ras pathway mutations are common in ALL relapse and may be associated with other recurrence-related genes alterations. The study with paired samples could improve the understanding of ALL relapse."	"Accessing the transcriptional status of selenoproteins in skin cancer-derived cell lines. Selenoproteins are selenocysteine (Sec)-containing proteins that exhibit numerous physiological functions, mainly antioxidative activities. Studies have suggested that several human selenoproteins play an important role in tumor initiation and progression, including melanoma. Using RNA-seq data set from Sequence Reads Archive (SRA) experiments published at the National Center for Biotechnology Information (NCBI), we determined and compared the transcriptional levels of the 25 selenoproteins-coding sequences found in 16 human-derived melanoma cell lines and compared to four melanocyte controls. 15 selenoprotein-coding genes were found to be expressed in melanoma and normal melanocyte cells, and their mRNA levels varied among the cell lines. All melanoma cells analyzed with BRAF or NRAS mutations presented upregulated levels of SELENOI, TXNRD1, and SELENOT transcripts and downregulated levels of SELENOW and SELENON transcripts in comparison with melanocytes controls. Moreover, SELENOW, SELENON, SELENOI, TXNRD1, and SELENOT-coding transcripts were affected when BRAF-mutated A375 cells were treated with CPI203, A771726 or Vorinostat drugs. Our results indicate that melanoma cells can modify, in a different manner, the selenoprotein transcript levels, as a possible mechanism to control tumor progression. We suggest that the usage of diet and supplements containing selenium should be carefully used for patients with melanoma."	"Metastatic de-differentiated melanoma resembling synovial sarcoma diagnosed by synchronous NRAS genetic mutation. NA"	"A Novel Risk Stratification System for Thyroid Nodules With Indeterminate Cytology-A Pilot Cohort Study. Background: Thyroid ultrasound (US), fine needle aspiration biopsy (FNAB), and molecular testing have been widely used to stratify the risk of malignancy in thyroid nodules. The goal of this study was to investigate a novel diagnostic approach for cytologically indeterminate thyroid nodules (ITN) based upon a combination of US features and genetic alterations. Methods: We performed a pilot cohort study of patients with ITN (Bethesda III/IV), who underwent surgical treatment. Based on standardized sonographic patterns established by the American Thyroid Association (ATA), each ITN received an US score (XUS), ranging between 0 and 0.9 according to its risk of thyroid cancer (TC). DNA and RNA were extracted from pathologic material, available for all patients, and subjected to Oncomine™ Comprehensive Assay v2 (OCAv2) next-generation sequencing. Each genetic alteration was annotated based on its strength of association with TC and its sum served as the genomic classifier score (XGC). The total risk score (TRS) was the sum of XUS and XGC. ROC curves were generated to assess the diagnostic accuracy of XUS, XGC, and TRS. Results: The study cohort consisted of 50 patients (39 females and 11 males), aged 47.5 ± 14.8 years. Three patients were excluded due to molecular testing failure. Among the remaining 47 patients, 28 (59.6%) were diagnosed with TC. BRAFV600E was the most common mutation in papillary TC, PAX8-PPARG fusion was present in NIFTP, pathogenic variants of SLX4, ATM, and NRAS were found in Hürthle cell TC and RET mutations in medullary TC. The diagnostic accuracy of XGC and TRS was significantly higher compared with XUS (88 vs. 62.5%, p &lt; 0.001; 85.2 vs. 62.5%, p &lt; 0.001, respectively). However, this increased accuracy was due to significantly better sensitivity (80.7 vs. 34.6%, p &lt; 0.001; 84.6 vs. 34.6%, p &lt; 0.001, respectively) without improved specificity (94.7 vs. 90%, p = 0.55; 85.7 vs. 90%, p = 0.63, respectively). Conclusion: Molecular testing might not be necessary in ITN with high-risk US pattern (XUS = 0.9), as specificity of TC diagnosis based on Xus alone is sufficient and not improved with molecular testing. OCAv2 is useful in guiding the management of ITN with low-to-intermediate risk US features (XUS &lt; 0.9), as it increases the accuracy of TC diagnosis."	"Gut Microbiota and Host Gene Mutations in Colorectal Cancer Patients and Controls of Iranian and Finnish Origin. Gut microbiota plays an important role in colorectal cancer (CRC) and its composition in CRC patients can be influenced by ethnicity and tumour genomics. Herein, the aim was to study the possible associations of ethnicity and gene mutations with the gut microbiota in CRC patients. Bacterial composition in stool samples of 83 CRC patients and 60 controls from Iran and Finland was studied by 16S rRNA gene sequencing. The association of gut microbiota composition with CRC, host mutations in KRAS, NRAS and TP53, and ethnicity analysed. Beta diversity analysis indicated significant differences between the Iranian and Finnish gut microbiota composition, in both controls and patients' groups. The Iranian controls had higher abundance of Prevotella and lower abundance of Bacteroides compared to the Finnish controls, while the Finnish patients had higher abundance of Clostridium compared to Iranian patients. Abundance of Ruminococcus was higher in patients compared to the controls. Higher abundances of Herbaspirillum, Catenibacterium and lower abundances of Barnesiella were associated with mutations in NRAS, TP53, and RAS respectively. A possible link of host gene mutations with gut bacterial composition is suggested."	"Melanoma Metabolism: Cell Survival and Resistance to Therapy. Cutaneous melanoma is one of the most aggressive types of cancer, presenting the highest potential to form metastases, both locally and distally, which are associated with high death rates of melanoma patients. A high somatic mutation burden is characteristic of these tumours, with most common oncogenic mutations occurring in the BRAF, NRAS and NF1 genes. These intrinsic oncogenic pathways contribute to the metabolic switch between glycolysis and oxidative phosphorylation metabolisms of melanoma, facilitating tumour progression and resulting in a high plasticity and adaptability to unfavourable conditions. Moreover, melanoma microenvironment can influence its own metabolism and reprogram several immune cell subset functions, enabling melanoma to evade the immune system. The knowledge of the biology, molecular alterations and microenvironment of melanoma has led to the development of new targeted therapies and the improvement of patient care. In this work, we reviewed the impact of melanoma metabolism in the resistance to BRAF and MEK inhibitors and immunotherapies, emphasizing the requirement to evaluate metabolic alterations upon development of novel therapeutic approaches. Here we summarized the current understanding of the impact of metabolic processes in melanomagenesis, metastasis and microenvironment, as well as the involvement of metabolic pathways in the immune modulation and resistance to targeted and immunocheckpoint therapies."	"Clinicopathological significance of EGFR pathway gene mutations and CRTC1/3-MAML2 fusions in salivary gland mucoepidermoid carcinoma. Mucoepidermoid carcinoma (MEC) is one of the most common salivary gland carcinomas. Epidermal growth factor receptor (EGFR) signalling pathway gene mutations are important in predicting a patient's prognosis, selecting molecularly targeted drugs and estimating the efficacy of a molecular therapy. However, their significance in MEC have been poorly clarified. CRTC1/3-MAML2 fusions are specific to MEC and may be associated with favourable characteristics in these patients. We looked for CRTC1/3-MAML2 fusions and gene alterations in the EGFR, RAS family (KRAS, HRAS and NRAS), PIK3CA, BRAF and AKT1 in 101 MEC cases. We also examined mutations in TP53. CRTC1/3-MAML2 fusions were found in 62.4% of the cases. KRAS, HRAS and PIK3CA mutations were detected in 6.9%, 2.0% and 6.9%, respectively, but other EGFR pathway genes were not mutated. In total, gene mutations (RAS/PIK3CA) in the EGFR pathway were detected in 14.9% of the cases. TP53 mutations were found in 20.8%. CRTC1/3-MAML2 fusions were associated with a better prognosis and RAS/PIK3CA mutations a worse prognosis of the patients, respectively, and both were selected as independent prognostic factors for the overall survival of the patients. TP53 mutations had no prognostic impact. CRTC1/3-MAML2 fusion-positive rates were inversely associated with the patients' age and the fusions were found in 82% of patients aged &lt; 30 years. RAS/PIK3CA mutations were frequently detected, and may be a biomarker for a poorer prognosis in MEC patients. CTRC1/3-MAML2 fusions were positive in most of the young MEC patients."	"Identification of relapse-associated gene mutations by next-generation sequencing in low-risk acute myeloid leukaemia patients. Recommended genetic categorization of acute myeloid leukaemias (AML) includes a favourable-risk category, but not all these patients have good prognosis. Here, we used next-generation sequencing to evaluate the mutational profile of 166 low-risk AML patients: 30 core-binding factor (CBF)-AMLs, 33 nucleophosmin (NPM1)-AMLs, 4 biCEBPα-AMLs and 101 acute promyelocytic leukaemias (APLs). Functional categories of mutated genes differed among subgroups. NPM1-AMLs showed frequent variations in DNA-methylation genes (DNMT3A, TET2, IDH1/2) (79%), although without prognostic impact. Within this group, splicing-gene mutations were an independent factor for relapse-free (RFS) and overall survival (OS). In CBF-AML, poor independent factors for RFS and OS were mutations in RAS pathway and cohesin genes, respectively. In APL, the mutational profile differed according to the risk groups. High-risk APLs showed a high mutation rate in cell-signalling genes (P = 0·002), highlighting an increased incidence of FLT3 internal tandem duplication (ITD) (65%, P &lt; 0·0001). Remarkably, in low-risk APLs (n = 28), NRAS mutations were strongly correlated with a shorter five-year RFS (25% vs. 100%, P &lt; 0·0001). Overall, a high number of mutations (≥3) was the worst prognostic factor RFS (HR = 2·6, P = 0·003). These results suggest that gene mutations may identify conventional low-risk AML patients with poor prognosis and might be useful for better risk stratification and treatment decisions."	"Melanomas with activating RAF1 fusions: clinical, histopathologic, and molecular profiles. A subset of melanomas is characterized by fusions involving genes that encode kinases. Melanomas with RAF1 fusions have been rarely reported, mostly in clinical literature. To investigate this distinctive group of melanomas, we searched for melanomas with activating structural variants in RAF1, utilizing our case archive of clinical samples with comprehensive genomic profiling (CGP) by a hybrid capture-based DNA sequencing platform. Clinical data, pathology reports, and histopathology were reviewed for each case. RAF1 breakpoints, fusion partners, and co-occurring genetic alterations were characterized. From a cohort of 7119 melanomas, 40 cases (0.6%) featured fusions that created activating structural variants in RAF1. Cases with activating RAF1 fusions had median age of 62 years, were 58% male, and consisted of 9 primary tumors and 31 metastases. Thirty-nine cases were cutaneous primary, while one case was mucosal (anal) primary. Primary cutaneous melanomas showed variable architectures, including wedge-shaped and nodular growth patterns. Cytomorphology was predominantly epithelioid, with only one case, a desmoplastic melanoma, consisting predominantly of spindle cells. RAF1 5' rearrangement partners were predominantly intrachromosomal (n = 18), and recurrent partners included MAP4 (n = 3), CTNNA1 (n = 2), LRCH3 (n = 2), GOLGA4 (n = 2), CTDSPL (n = 2), and PRKAR2A (n = 2), all 5' of the region encoding the kinase domain. RAF1 breakpoints occurred in intron 7 (n = 32), intron 9 (n = 4), intron 5 (n = 2), and intron 6 (n = 2). Ninety-eight percent (n = 39) were wild type for BRAF, NRAS, and NF1 genomic alterations (triple wild type). Activating RAF1 fusions were present in 2.1% of triple wild-type melanomas overall (39/1882). In melanomas with activating RAF1 fusions, frequently mutated genes included TERTp (62%), CDKN2A (60%), TP53 (13%), ARID2 (10%), and PTEN (10%). Activating RAF1 fusions characterize a significant subset of triple wild-type melanoma (2.1%) with frequent accompanying mutations in TERTp and CDKN2A. CGP of melanomas may improve tumor classification and inform potential therapeutic options, such as consideration of specific kinase inhibitors."	"Cell-type specific tumorigenesis with Ras oncogenes in human lung epithelial cells. The oncogenic Ras mutation is one of the most common genomic abnormalities having the highest incidence in cancer; it has three isoforms: Hras, Kras, and Nras. Although the Ras isoforms are highly similar in the primary sequence, each mutational frequency is clearly distinct according to tissue- or cell-type. Regarding non-small-cell lung carcinoma, almost all Kras mutations have been detected in lung adenocarcinoma, whereas lung squamous cell carcinoma is extremely rare. Here, we focus on the cell-type specific tumorigenesis of mutant Ras isoforms and determine the mechanisms of oncogenic signaling outputs between lung adenocarcinoma and squamous cell carcinoma. An in vitro transformation model with mutant Ras isoforms in immortalized bronchial epithelial cells (BEC-E6E7/myc) and immortalized small airway epithelial cells (SAEC-E6E7/myc) revealed that only the HrasG12V mutation, not the KrasG12V mutation, could induce tumorigenesis in BEC-E6E7/myc. In contrast, SAEC-E6E7/myc showed high sensitivity to the KrasG12V mutation compared with the HrasG12V mutation. The transformation of BEC-E6E7/myc and SAEC-E6E7/myc with mutant Ras isoforms was confirmed by soft agar assay and migration assay. HrasG12V-expressing BEC-E6E7/myc significantly increased MAPK/ERK signaling, whereas PI3K/AKT signaling was significantly elevated in KrasG12V-expressing SAEC-E6E7/myc. These results suggest a context dependency with oncogenic Ras mutations in tumorigenesis between lung adenocarcinoma and squamous cell carcinoma."	"Mutation topography and risk stratification for de novo acute myeloid leukaemia with normal cytogenetics and no nucleophosmin 1 (NPM1) mutation or Fms-like tyrosine kinase 3 internal tandem duplication (FLT3-ITD). About 25% of patients with newly diagnosed acute myeloid leukaemia (AML) have normal cytogenetics and no nucleophosmin 1 (NPM1) mutation or Fms-like tyrosine kinase 3 internal tandem duplication (FLT3-ITD). The prognosis and best therapy for these patients is controversial. We evaluated 158 newly diagnosed adults with this genotype who achieved histological complete remission within two cycles of induction therapy and were assigned to two post-remission strategies with and without an allotransplant. Targeted regional sequencing at diagnosis was performed and data were used to estimate their prognosis, including relapse and survival. In multivariable analyses, having wild-type or mono-allelic mutated CCAAT/enhancer-binding protein alpha (CEBPA) [hazard ratio (HR) 2·39, 95% confidence interval (CI) 1·08-5·30; P = 0·032), mutated NRAS (HR 2·67, 95% CI 1·36-5·25; P = 0·004), mutated colony-stimulating factor 3 receptor (CSF3R) (HR 2·85, 95% CI 1·12-7·27; P = 0·028) and a positive measurable residual disease (MRD)-test after the second consolidation cycle (HR 2·88, 95% CI 1·32-6·30; P = 0·008) were independently correlated with higher cumulative incidence of relapse (CIR). These variables were also significantly associated with worse survival (HR 3·02, 95% CI 1·17-7·78, P = 0·022; HR 3·62, 95% CI 1·51-8·68, P = 0·004; HR 3·14, 95% CI 1·06-9·31, P = 0·039; HR 4·03, 95% CI 1·64-9·89, P = 0·002; respectively). Patients with ≥1 of these adverse-risk variables benefitted from a transplant, whereas the others did not. In conclusion, we identified variables associated with CIR and survival in patients with AML and normal cytogenetics without a NPM1 mutation or FLT3-ITD."	"An overview of binimetinib for the treatment of melanoma. Approximately 50% of patients with metastatic melanoma have mutations in BRAF. Based on the results of prior phase III trials, the combination of a BRAF inhibitor (BRAFi) and a MEK inhibitor (MEKi) is the standard of care in patients with BRAF-mutant metastatic melanoma. The author summarizes the available data on binimetinib, a reversible inhibitor of the kinase activity of MEK1 and MEK2, in BRAF- and NRAS-mutated melanoma. With the advent of binimetinib and encorafenib, clinicians can choose between three BRAFi/MEKi combinations. Indirect comparison and a network meta-analysis suggest that binimetinib plus encorafenib is at least as active as the other two BRAFi/MEKi combinations and that safety is similar. The choice should be guided by the slightly different toxicity profile, local availability, and product experience. The optimal sequence of immunotherapy and BRAFi/MEKi in patients with BRAF-mutated tumors is unclear. As the response to BRAF/MEK inhibition is usually prompt and response to immunotherapy can be delayed, clinicians often choose a BRAFi/MEKi combination as first-line therapy in patients with rapidly evolving and threatening disease. Single-agent binimetinib almost doubled median progression-free survival when compared to dacarbazine in patients with NRAS-mutated melanoma."	"Inactivation of NF1 Promotes Resistance to EGFR Inhibition in KRAS/NRAS/BRAF<sup>V600</sup> -Wild-Type Colorectal Cancer. Through the use of an unbiased, genome-scale CRISPR modifier screen, we identified NF1 suppression as a mechanism of resistance to EGFR inhibition in NRAS/KRAS/BRAF<sup>V600</sup> -wild-type colorectal cancer cells. Reduced NF1 expression permitted sustained signaling through the MAPK pathway to promote cell proliferation in the presence of EGFR inhibition. Targeting of MEK in combination with EGFR inhibition leads to synergistic antiproliferative activity. Human KRAS/NRAS/BRAF<sup>V600</sup> -wild-type colorectal cancer cell lines with NF1 mutations displayed reduced NF1 mRNA or protein expression and were resistant to EGFR blockade by gefitinib or cetuximab. Cooccurring loss-of-function mutations in PTEN were associated with resistance to dual EGFR/MEK inhibition but cotreatment with a PI3K inhibitor further suppressed proliferation. Loss of NF1 may be a useful biomarker to identify patients that are less likely to benefit from single-agent anti-EGFR therapy in colorectal cancer and may direct potential combination strategies. IMPLICATIONS: This study suggests that further clinical validation of NF1 status as predictor of response to anti-EGFR targeting antibodies in patients with colorectal cancer with KRAS/NRAS/BRAF<sup>V600</sup> -wild-type tumors is warranted."	"RAS/RAF mutations and their associations with epigenetic alterations for distinct pathways in Vietnamese colorectal cancer. KRAS, NRAS, and BRAF are potential tumor-driven genes that are involved in the RAS/RAF/MAPK signaling pathway. RAS/RAF mutations importantly contribute to colorectal tumorigenesis since they remain the activated status of downstream pathways without regulation of the upstream EGFR signal. However, it has not been unclear how epigenetic alterations involved in colorectal tumorigenesis mediated by KRAS, NRAS, or BRAF mutations. Therefore, in this study, we investigated the frequency and distribution of KRAS/NRAS/BRAF mutations in Vietnamese colorectal cancer (CRC) and explored the relationship between genetic and epigenetic abnormalities in 156 tumors of CRC. Somatic mutations of KRAS (exon 2, codon 12/13; exon 3, codon 61), NRAS (exon 2, codon 12/13; exon 3, codon 61), and BRAF (exon 15, codon 600) was determined by Cobas® KRAS Mutation Test, Therascreen NRAS Pyro Kit and Cobas® 4800 BRAF V600 Mutation Test, respectively. Methylation status of BRCA1, MLH1, MGMT, p16, RASSF1A, and APC was detected by methylation-specific PCR. Distribution of each abnormality in clinicopathological features was also analyzed. Results showed the mutation rates of KRAS, NRAS, and BRAF were 41.0 %, 9.6 %, 8.3 % respectively, while the methylation rates of BRCA1, MLH1, MGMT, p16, RASSF1A, and APC were 16.7 %, 16.7 %, 32.7 %, 30.1 %, 30.1 %, and 37.2 % respectively. The distribution of KRAS mutation was mutually exclusive against that of NRAS (p &lt; 0.001) and BRAF (p &lt; 0.001) mutations in CRC. RAS/RAF mutations were more common in adenocarcinoma subtype (p = 0.020), whereas RASSF1A methylation was more frequent in mucinous adenocarcinoma subtype (p = 0.007). In addition, the frequency of having KRAS mutations was significantly higher in MGMT (p = 0.035) or RASSF1A (p = 0.043) methylated cases than in those without methylation. BRAF mutations were positively associated with MLH1 hypermethylation (p = 0.028) but were inversely associated with APC hypermethylation (p = 0.032). Overall, our results show specific interactions of genetic and epigenetic alterations and suggest the presence of independent oncogenic pathways in tumorigenesis of CRC."	"TERT, BRAF, and NRAS Mutational Heterogeneity between Paired Primary and Metastatic Melanoma Tumors. Mutational heterogeneity can contribute to therapeutic resistance in solid cancers. In melanoma, the frequencies of intertumoral and intratumoral heterogeneity are controversial. We examined mutational heterogeneity within individual patients with melanoma using multiplatform analysis of commonly mutated driver and nonpassenger genes. We analyzed paired primary and metastatic tumors from 60 patients and multiple metastatic tumors from 39 patients whose primary tumors were unavailable (n = 271 tumors). We used a combination of multiplex SNaPshot assays, Sanger sequencing, mutation-specific PCR, or droplet digital PCR to determine the presence of BRAF<sup>V600</sup>, NRAS<sup>Q61</sup>, TERT<sup>-124C&gt;T</sup>, and TERT<sup>-146C&gt;T</sup> mutations. Mutations were detected in BRAF (39%), NRAS (21%), and/or TERT (78%). Thirteen patients had TERT<sup>mutant</sup> discordant tumors; seven of these had a single tumor with both TERT<sup>-124C&gt;T</sup> and TERT<sup>-146C&gt;T</sup> mutations present at different allele frequencies. Two patients had both BRAF and NRAS mutations; one had different tumors and the other had a single tumor with both mutations. One patient with a BRAF<sup>mutant</sup> primary lacked mutant BRAF in at least one of their metastases. Overall, we identified mutational heterogeneity in 18 of 99 patients (18%). These results suggest that some primary melanomas may be composed of subclones with differing mutational profiles. Such heterogeneity may be relevant to treatment responses and survival outcomes."	"Conformation-specific inhibitors of activated Ras GTPases reveal limited Ras dependency of patient-derived cancer organoids. The small GTPases H, K, and NRAS are molecular switches indispensable for proper regulation of cellular proliferation and growth. Several mutations in the genes encoding members of this protein family are associated with cancer and result in aberrant activation of signaling processes caused by a deregulated recruitment of downstream effector proteins. In this study, we engineered variants of the Ras-binding domain (RBD) of the C-Raf proto-oncogene, Ser/Thr kinase (CRAF). These variants bound with high affinity with the effector-binding site of Ras in an active conformation. Structural characterization disclosed how the newly identified RBD mutations cooperate and thereby enhance affinity with the effector-binding site in Ras compared with WT RBD. The engineered RBD variants closely mimicked the interaction mode of naturally occurring Ras effectors and acted as dominant-negative affinity reagents that block Ras signal transduction. Experiments with cancer cells showed that expression of these RBD variants inhibits Ras signaling, reducing cell growth and inducing apoptosis. Using these optimized RBD variants, we stratified patient-derived colorectal cancer organoids with known Ras mutational status according to their response to Ras inhibition. These results revealed that the presence of Ras mutations was insufficient to predict sensitivity to Ras inhibition, suggesting that not all of these tumors required Ras signaling for proliferation. In summary, by engineering the Ras/Raf interface of the CRAF-RBD, we identified potent and selective inhibitors of Ras in its active conformation that outcompete binding of Ras-signaling effectors."	"Overall survival in patients with lung adenocarcinoma harboring &quot;niche&quot; mutations: an observational study. Objective: In addition to the most common somatic lung cancer mutations (i. e., KRAS and EGFR mutations), other genes may harbor mutations that could be relevant for lung cancer. We defined BRAF, c-MET, DDR2, HER2, MAP2K1, NRAS, PIK3CA, and RET mutations as &quot;niche&quot; mutations and analyzed. The aim of this retrospective cohort study was to assess the differences in the overall survival (OS) of patients with lung adenocarcinoma harboring niche somatic mutations. Results: Data were gathered for 252 patients. Mutations were observed in all genes studied, except c-MET, DDR2, MAP2K1, and RET. The multivariable analysis showed that 1) niche mutations had a higher mortality than EGFR mutations (HR = 2.3; 95% CI = 1.2-4.4; p = 0.009); 2) KRAS mutations had a higher mortality than EGFR mutations (HR = 2.5; 95% CI = 1.4-4.5; p = 0.003); 3) niche mutations presented a similar mortality to KRAS mutations (HR = 0.9; 95% CI = 0.6-1.5; p = 0.797). Methods: Three cohorts of mutations were selected from patients with lung adenocarcinoma and their OS was compared. Mutations that were searched for, were 1) BRAF, c-MET, DDR2, HER2, MAP2K1, NRAS, PIK3CA, and RET; 2) K-RAS; and 3) EGFR. Differences in OS between these three cohorts were assessed by means of a multivariable Cox model that adjusted for age, sex, smoking habits, clinical stages, and treatments. Conclusions: Niche mutations exhibited an increased risk of death when compared with EGFR mutations and a similar risk of death when compared with KRAS mutations."	"Effects of MIR143 on rat sarcoma signaling networks in solid tumors: A brief overview. Rat sarcoma (RAS) is a well-known oncogene that plays important roles in cancer proliferation, cell survival and cell invasion. RAS exists as three major isoforms, Kirsten rat sarcoma (KRAS), Harvey rat sarcoma (HRAS) and neuroblastoma rat sarcoma (NRAS). Mutations of these genes account for approximately 30% of all cancers. Among them, KRAS mutations are the most common, responsible for 85%, followed by NRAS (12%) and HRAS (3%). Although the development of RAS inhibitors has been explored for over the past decade, so far, no effective inhibitor has been found. MicroRNA (miRNA) are a class of small non-coding RNA that control the gene expression of pleural target genes at the post-transcriptional level. MiRNA play critical roles in the physiological and pathological processes at work in cancers, such as cell proliferation, cell death, cell invasion and metastasis. MicroRNA-143 (MIR143) is known to function as a tumor suppressor in a variety of cancers. One of its known mechanisms is suppression of RAS expression and its effector signaling pathways, such as PI3K/AKT and MAPK/ERK. Within the last five years, we developed a potent chemically modified MIR143-3p that enabled us to elucidate the details of the KRAS signaling networks at play in colon and other cancer cells. In this review, we will discuss the role of MIR143-3p in those RAS signaling networks that are related to various biological processes of cancer cells. In addition, we will discuss the possibility of the use of MIR143 as a therapeutic drug for targeting RAS signaling networks."	"High mutational concordance between primary colorectal tumors and associated pulmonary metastases. Precision medicine has altered the management of colorectal cancer (CRC). However, the concordance of mutational findings between primary CRC tumors and associated pulmonary metastases (PM) is not well-described. This study aims to determine the concordance of genomic profiles between primary CRC and PM. Patients treated for colorectal PM at a single institution from 2000 to 2017 were identified. Mutational concordance was defined as either both wild-type or both mutant alleles in lung and colorectal lesion; genes with opposing mutational profiles were reported as discordant. Thirty-eight patients met inclusion criteria, among whom KRAS, BRAF, NRAS, MET, RET, and PIK3CA were examined for concordance. High concordance was demonstrated among all evaluated genes, ranging from 86% (KRAS) to 100% concordance (NRAS, RET, and MET). De novo KRAS mutations were detected in the PM of 4 from 35 (11%) patients, 3 of whom had previously received anti-epidermal growth factor receptor (EGFR) therapy. Evaluation of Cohen's κ statistic demonstrated moderate to perfect correlation among evaluated genes. Because high intertumoral genomic homogeneity exists, it may be reasonable to use primary CRC mutational profiles to guide prognostication and targeted therapy for PM. However, the possibility of de novo KRAS-mutant PM should be considered, particularly among patients previously treated with anti-EGFR therapy."	"Actionable Mutation Profiles of Non-Small Cell Lung Cancer patients from Vietnamese population. Comprehensive profiling of actionable mutations in non-small cell lung cancer (NSCLC) is vital to guide targeted therapy, thereby improving the survival rate of patients. Despite the high incidence and mortality rate of NSCLC in Vietnam, the actionable mutation profiles of Vietnamese patients have not been thoroughly examined. Here, we employed massively parallel sequencing to identify alterations in major driver genes (EGFR, KRAS, NRAS, BRAF, ALK and ROS1) in 350 Vietnamese NSCLC patients. We showed that the Vietnamese NSCLC patients exhibited mutations most frequently in EGFR (35.4%) and KRAS (22.6%), followed by ALK (6.6%), ROS1 (3.1%), BRAF (2.3%) and NRAS (0.6%). Interestingly, the cohort of Vietnamese patients with advanced adenocarcinoma had higher prevalence of EGFR mutations than the Caucasian MSK-IMPACT cohort. Compared to the East Asian cohort, it had lower EGFR but higher KRAS mutation prevalence. We found that KRAS mutations were more commonly detected in male patients while EGFR mutations was more frequently found in female. Moreover, younger patients (&lt;61 years) had higher genetic rearrangements in ALK or ROS1. In conclusions, our study revealed mutation profiles of 6 driver genes in the largest cohort of NSCLC patients in Vietnam to date, highlighting significant differences in mutation prevalence to other cohorts."	"Clinicopathological and molecular correlations in traditional serrated adenoma. Traditional serrated adenoma (TSA) is the least common type of colorectal serrated polyp, which exhibits considerable morphological and molecular diversity. We examined the spectra of alterations in MAPK and WNT pathway genes and their relationship with clinicopathological features in 128 TSAs. Sequencing analyses identified BRAF V600E, BRAF non-V600E, KRAS, and NRAS mutations in 77, 3, 45, and 1 lesion, respectively. Collectively, 124 lesions (97%) had mutations in MAPK pathway genes. Alterations in WNT pathway genes were identified in 107 lesions (84%), including RSPO fusions/overexpression, RNF43 mutations, ZNRF3 mutations, APC mutations, and CTNNB1 mutations in 47, 45, 2, 13, and 2 lesions, respectively. Ten lesions (8%) harbored GNAS mutations. There was significant interdependence between the altered MAPK and WNT pathway genes. RSPO fusions/overexpression was significantly associated with KRAS mutations (31/47, 66%), whereas most RNF43 mutations coexisted with the BRAF V600E mutation (40/45, 89%). Histologically, extensive slit-like serration was more common in lesions with the BRAF V600E mutation (71%) and those with RNF43 mutations (87%). Prominent ectopic crypt formation was more prevalent in lesions with RSPO fusions/overexpression (58%) and those with GNAS mutations (100%). Our observations indicate that TSAs mostly harbor various combinations of concurrent WNT and MAPK gene alterations. The associations between genetic and morphological features suggest that the histological diversity of TSA reflects the underlying molecular heterogeneity."	"An atypical chronic neutrophilic leukemia patient harboring ASXL1 and NRAS mutations associated with monoclonal plasma cell dyscrasia presenting as hemopericardium. NA"	"Prebiotic-Induced Anti-tumor Immunity Attenuates Tumor Growth. Growing evidence supports the importance of gut microbiota in the control of tumor growth and response to therapy. Here, we select prebiotics that can enrich bacterial taxa that promote anti-tumor immunity. Addition of the prebiotics inulin or mucin to the diet of C57BL/6 mice induces anti-tumor immune responses and inhibition of BRAF mutant melanoma growth in a subcutaneously implanted syngeneic mouse model. Mucin fails to inhibit tumor growth in germ-free mice, indicating that the gut microbiota is required for the activation of the anti-tumor immune response. Inulin and mucin drive distinct changes in the microbiota, as inulin, but not mucin, limits tumor growth in syngeneic mouse models of colon cancer and NRAS mutant melanoma and enhances the efficacy of a MEK inhibitor against melanoma while delaying the emergence of drug resistance. We highlight the importance of gut microbiota in anti-tumor immunity and the potential therapeutic role for prebiotics in this process."	"Targeting effector pathways in RAC1<sup>P29S</sup>-driven malignant melanoma. Malignant melanoma is characterized by mutations in a number of driver genes, most notably BRAF and NRAS. Recent genomic analyses revealed that 4-9% of sun-exposed melanomas bear activating mutations in RAC1, which encodes a small GTPase that is known to play key roles in cell proliferation, survival, and migration. The RAC1 protein activates several effector pathways, including Group A p21-activated kinases (PAKs), phosphoinositol-3-kinases (PI3Ks), in particular the beta isoform, and the serum-response factor/myocardin-related transcription factor (SRF/MRTF). Having previously shown that inhibition of Group A PAKs impedes oncogenic signalling from RAC1<sup>P29S</sup>, we here extend this analysis to examine the roles of PI3Ks and SRF/MRTF in melanocytes and/or in a zebrafish model. We demonstrate that a selective Group A PAK inhibitor (Frax-1036), a pan-PI3K (BKM120), and two PI3Kβ inhibitors (TGX221, GSK2636771) impede the growth of melanoma cells driven by mutant RAC1 but not by mutant BRAF, while other PI3K selective inhibitors, including PI3Kα, δ and γ, are less effective. Using these compounds as well as an SRF/MRTF inhibitor (CCG-203,971), we observed similar results in vivo, using embryonic zebrafish development as a readout. These results suggest that targeting Group A PAKs, PI3Kβ, and/or SRF/MRTF represent a promising approach to suppress RAC1 signalling in malignant melanoma."	"Prevalence of NRAS Mutation, PD-L1 Expression and Amplification, and Overall Survival Analysis in 36 Primary Vaginal Melanomas. Primary vaginal melanomas are uncommon and aggressive tumors with poor prognosis, and the development of new targeted therapies is essential. This study aimed to identify the molecular markers occurring in these patients and potentially improve treatment strategies. The clinicopathological characteristics of 36 patients with primary vaginal melanomas were reviewed. Oncogenic mutations in BRAF, KIT, NRAS, GNAQ and GNA11 and the promoter region of telomerase reverse transcriptase (TERT) were investigated using the Sanger sequencing. The expression and copy number of programmed death-ligand 1 (PD-L1) were also assessed. Mutations in NRAS, KIT, and TERT promoter were identified in 13.9% (5/36), 2.9% (1/34), and 5.6% (2/36) of the primary vaginal melanomas, respectively. PD-L1 expression and amplification were observed in 27.8% (10/36) and 5.6% (2/36) of cases, respectively. PD-L1 positive expression and/or amplification was associated with older patients (p = .008). Patients who had NRAS mutations had a poorer overall survival compared with those with a wild-type NRAS (33.5 vs. 14.0 months; hazard ratio [HR], 3.09; 95% CI, 1.08-8.83). Strikingly, two patients with/without PD-L1 expression receiving immune checkpoint inhibitors had a satisfying outcome. Multivariate analysis demonstrated that &gt;10 mitoses per mm<sup>2</sup> (HR, 2.96; 95% CI, 1.03-8.51) was an independent prognostic factor. NRAS mutations and PD-L1 expression were most prevalent in our cohort of primary vaginal melanomas and can be potentially considered as therapeutic targets. This study used the Sanger sequencing, immunohistochemistry, and fluorescence in situ hybridization methods to detect common genetic mutations and PD-L1 expression and copy number in 36 primary vaginal melanomas. NRAS mutations and PD-L1 expression were the most prevalent, but KIT and TERT mutations occurred at a lower occurrence in this rare malignancy. Two patients receiving immune checkpoint inhibitors had a satisfying outcome, signifying that the PD-L1 expression and amplification can be a possible predictive marker of clinical response. This study highlights the possible prospects of biomarkers that can be used for patient selection in clinical trials involving treatments with novel targeted therapies based on these molecular aberrations."	"Post-radiotherapy vascular lesions of the breast: immunohistochemical and molecular features of 74 cases with long-term follow-up and literature review. A wide range of post-radiotherapy (RT) vascular lesions can occur, ranging from benign lymphangiomatous papules of the skin (BLAPs), to atypical vascular lesions (AVLs) and post-RT angiosarcomas (ASs). The relationship between benign and malignant post-RT breast lesions and their prognostic features are still controversial. The aims of this study were to investigate the relationship between benign and malignant mammary post-RT vascular lesions and to define post-RT AS prognostic features. Seventy-four post-RT vascular lesion cases were obtained and stained with antibodies against CD34, CD31, D2-40, Ki67, and c-Myc. Mutational analysis was performed by deep sequencing for the following genes: KRAS, NRAS, HRAS, BRAF, PIK3CA, TP53, NOTCH1, PTEN, CDKN2A, EGFR, AKT1, CTNNB1, hTERT, and PTPRB. Post-RT AS cases were graded according to a previously reported breast AS grading system. AVL cases showed a low number of HRAS and hTERT mutations, whereas post-RT AS cases showed a high frequency of EGFR, TP53, HRAS and hTERT mutations. On follow-up, all BLAP and AVL patients were alive with no evidence of disease. Post-RT AS 5-year overall survival declined with the increase in grade, as follows: 85.7% for grade 1, 83.3% for grade 2, and 40.4% for grade 3. Our findings confirm that BLAP and AVL have a good prognosis, and that post-RT AS prognosis is strongly related to histological grading. On molecular analysis, AVL and post-RT AS shared HRAS and hTERT mutations, suggesting a relationship between the two lesions."	"MicroRNA let-7b Inhibits Proliferation and Induces Apoptosis of Castration-Resistant Prostate Cancer Cells by Blocking the Ras/Rho Signaling Pathway via NRAS. Castration-resistant prostate cancer (CRPC) is a heterogeneous disease with a high mortality rate. MicroRNA let-7b has been documented to act as a tumor suppressor in various cancers. The present study intends to explore how let-7b affects CRPC by influencing the Ras/Rho signaling pathway. The expression of neuroblastoma RAS viral oncogene homolog (NRAS) and let-7b in CRPC tissues and cells was determined. The binding relationship between let-7b and NRAS was predicted by the Targetscan website and verified by the dual luciferase reporter gene assay. Gain-of-function and loss-of-function approaches were used to investigate the relationship among let-7b, NRAS, and Ras/Rho signaling pathway as well as their effects on the proliferation, invasion, and apoptosis of CRPC cells. The tumor formation ability of nude mice was tested in vivo. Poorly expressed Let-7b and highly expressed NRAS were presented in CRPC tissues and androgen-independent cell line C4-2. NRAS was verified as a target gene of let-7b. Overexpression of let-7b or silencing of NRAS repressed C4-2 cell proliferation and invasion in vitro and tumor growth in vivo as well as induced C4-2 cell apoptosis in vitro through the blockage of the Ras/Rho signaling pathway. Let-7b overexpression or NRAS silencing reduced matrix metalloproteinase-2, matrix metalloproteinase-9, Bcl-2, cyclinD1, and CyclinB expression, but elevated Caspase3 expression in vivo and in vitro. Taken together, in CRPC, let-7b blocks the Ras/Rho signaling pathway by inhibiting NRAS expression, thereby inhibiting cell proliferation and invasion, and promoting cell apoptosis. Thus, let-7b targeting NRAS may be a potential therapeutic target for the repression of CRPC."	"Cross-Resistance of Acquired Radioresistant Colorectal Cancer Cell Line to gefitinib and regorafenib. Usually, chemoradiotherapy can be used for the treatment of locally advanced colorectal cancer (CRC) before surgery. On the other hand, some studies have shown that fractional radiation of tumor cells leads to chemoresistance. The aim of this study was to evaluate the chemoresistance of radioresistant sub-line (RR sub-line). This study was done in Hamadan University of Medical Sciences in 2017-2018. MTT assay and sub-G1 fraction analysis by flow cytometry were used to evaluate cross-resistance of RR sub-line to gefitinib and regorafenib. Real-time PCR was used to investigate the role of four miRNAs and their target genes in the cross-resistance of RR sub-line. The t test and repeated measures test were used for the assessment of statistical significance between groups. The IC50 of gefitinib and regorafenib for RR sub-line were significantly higher than those of the parental cell line. On the other hand, the resistance index of RR sub-line for gefitinib and regorafenib were 1.92 and 1.44, respectively. The sub-G1 fraction of RR sub-line following treatment with gefitinib and regorafenib was significantly lower than that of the parental cell line (P=0.012 and P=0.038, respectively). The expression of miR-9, Let-7e, and Let-7b in RRsub-line was significantly lower than that of the parental cell line. However, NRAS, IGF1R, NFKB1, and CCND1 found to be upregulated in RR sub-line in comparison with the parental cell line. We can conclude that the acquired RR sub-line was cross-resistance to gefitinib and regorafenib. Furthermore, miR-9/NFKB1, let-7b/CCND1, let-7e/NRAS, and IGF1R played essential roles in the chemoradioresistance of CRC."	"Assessing the Diagnostic Yield of Targeted Next-Generation Sequencing for Melanoma and Gastrointestinal Tumors. A common rationale in molecular diagnostic laboratories is that implementation of next-generation sequencing (NGS) enables simultaneous multigene testing, allowing increased information benefit compared with non-NGS assays. However, minimal published data exist to support this justification. The current study compared clinical diagnostic yield of TruSight Tumor 26 Sequencing Panel (TST26) in melanoma, colorectal (CRC), and gastrointestinal stromal (GIST) tumors with non-NGS assays. A total of 1041 formalin-fixed, paraffin-embedded tumors, of melanoma, CRC, and GIST, were profiled. NGS results were compared with non-NGS single-gene or single-variant assays with respect to variant output and diagnostic yield. A total of 79% melanoma and 94% CRC tumors were variant positive by panel testing. TST26 panel improved serine/threonine-protein kinase B-raf (BRAF) variant detection in melanoma compared with single-variant BRAF Val600Glu/Lys (V600E/K) routine tests by 24% and detected variants in genes other than BRAF, NRAS, and KIT, which could impact patient management in 20% additional cases. NGS enhanced diagnostic yield in CRC by 36% when compared with routine single-gene assays. In contrast, no added benefit of NGS-based testing for GIST tumors was observed. TST26 panel either missed or inaccurately called complex insertion/deletion variants in KIT exon 11, which were accurately identified by non-NGS methods. Findings of this study demonstrate the differential impact of cancer site and variant type on diagnostic test information yield from NGS assays."	"Diagnostic accuracy of molecular testing with three molecular markers on thyroid fine-needle aspiration cytology with abnormal category. Cases with abnormal category, determined by thyroid fine-needle aspiration (FNA), frequently undergo surgical resection, despite the majority of cases being identified as benign after resection. Additional diagnostic markers are needed to guide the management of patients with abnormal thyroid nodules. The retrospective study enrolled 150 cases diagnosed abnormal by FNA cytology that had undergone molecular testing with three markers (BRAF V600E, NRAS, and KRAS) on the cell block. Seventy-one cases had a surgical follow-up. When NIFTP is not considered as malignant, positive predictive values (PPVs) of cytology and combined cytology and molecular testing (CC-MT) were 67.6% (95% CI: 0.555-0.782) and 89.2% (95% CI: 0.746-0.970) (P = .004), respectively. The sensitivity of the CC-MT was 68.8%, specificity was 82.5%, and the false-positive rate was 17.4%. When NIFTP is considered as malignant, PPVs of cytology and CC-MT were 83.1% (95% CI: 0.743-0.918) and 94.6% (95% CI: 0.873-1.018) (P = .047), respectively. The sensitivity of the CC-MT was 59.3%, specificity was 83.3%, and the false-positive rate was 16.7%. The addition of molecular testing with a small panel to FNA cytology may increase the PPV of cytology in abnormal categories. Small panel (BRAF V600E, KRAS, and NRAS) with high specificity and high PPVs may be used particularly for the detection of thyroid malignancy. Cell blocks can be an especially useful and straightforward method for molecular diagnostic studies."	"An NRAS mutation in primary malignant melanoma of the lung: a case report. Primary malignant melanoma of the lung (PML) is extremely rare. No precursor lesions of PML have been identified, and little is known about the genetic mutations associated with the disease. Typically, 15-20% of malignant melanomas possess NRAS gene mutations, but no cases of NRAS-mutated PML have been reported in the English literature. We present a case of PML involving an NRAS mutation. Clinical summary A 74-year-old Japanese female presented with worsening dyspnea and was admitted to hospital. Computed tomography (CT) revealed a right lung (S10) mass and pleural dissemination. Cytology of the pleural effusion in the right lung was performed, and malignant melanoma or clear cell sarcoma was suspected. A dermatological examination and gallium scintigraphy were conducted to determine the primary tumor site, but no suspicious lesions, expect for the right lung mass, were found. After admission, CT showed complicating bilateral pneumonia, and an antibiotic drug was administered, but the pleural effusion got worse. About 2 weeks later, the patient died of respiratory failure and cardiac arrest. An autopsy was performed to determine the histological diagnosis. Autopsy findings A 26x15x20-mm black and pale yellow mass was found in the right lower lobe. Many disseminated nodules were found in the right lobe. The tumor had invaded the right diaphragm. Subcarinal lymph node metastasis was also detected. Immunohistochemically, the tumor cells exhibited positivity for S-100 and HMB45 staining. The patient was diagnosed with malignant melanoma. Sanger sequencing of the tumor detected an NRAS mutation. We found an NRAS D54N mutation in PML, which has not been reported previously anywhere in the world. Previous reports indicated that most cases of PML can be classified into the triple-wild-type, but BRAF mutation status was only analyzed in a few cases. We should analyze the mutation patterns of PML to determine whether any subtypes other than the triple-wild-type exist. PML might be a form of de novo cancer."	"[NRAS Gene Expression and Its Clinical Significance in Patients with Acute Myeloid Leukemia]. To investigate the mutation rate and distribution of Homo sapiens neuroblastoma RAS viral oncogene homolog (NRAS) gene in the patients with acute myeloid leukemia. The genomic DNA of bone marrow was screened by polymerase chain reaction (PCR) and sequencing for NRAS mutations. At the same time, the mutations of ASXL1, DNMT3A, TET2, CEBPA, FLT3, IDH2, NPM1 and c-KIT genes were also detected to analyze the relation with NRAS mutations. A total of 11 NRAS mutations were found in 108 patients with initial acute myeloid leukemia and the mutation rate was 10.2%, including 6 cases of G12D, 3 cases of G13D, and 2 cases of G61K. In the mutation group, the peripheral blood leukocyte count was higher (P<0.05), more likely to occur in the M4 subtype, and the M2 subtype was mutually exclusive (P<0.05). Moreover, the mutant group was more likely to express CD13 than the non-mutation group (P<0.05), while no statistic difference was found in age, gender, hemoglobin level, platelet count, lactate dehydrogenase level, bone marrow blast, cytogenetics, complete remission rate and overall survival (P>0.05). The mutation of NRAS gene has no effect on the prognosis of AML patients. NRAS基因突变在成人急性髓系白血病中的表达及临床意义. 探讨神经母细胞瘤RAS病毒致癌基因(NRAS)在急性髓系白血病患者中的突变率及分布情况. 提取骨髓基因组DNA,采用聚合酶链式反应技术(polymerase chain reaction, PCR)扩增目的基因片段,应用基因测序分析NRAS基因突变情况。同时检测FLT3-ITD、DNMT3A、NPM1、CEBPA、TET2、IDH2、ASXL1及c-KIT基因突变情况,分析其与NRAS突变之间的关系. 108例初发急性髓系白血病患者中共发现NRAS突变11例,突变率为10.2%,其中G12D 6例、G13D 3例、G61K 2例。突变组患者外周血白细胞计数偏高(P<0.05),突变更易发生在M4亚型中,而与M2亚型相互排斥(P<0.05),突变组较未突变组更易表达CD13(P<0.05),而在年龄、性别、血红蛋白水平、血小板计数、乳酸脱氢酶水平、骨髓原始细胞比例、细胞遗传学变化、与其他基因突变的关系以及完全缓解(CR)率和2年总生存(OS)率方面差异均无统计学意义(P>0.05). NRAS基因突变对AML患者的预后无影响."	"[Comparision of Mutational Spectrum between Elderly and Young Adults with Acute Myeloid Leukemia Based on Next Generation Sequencing]. To compare the gene mutational spectrum between elderly and young adults with acute myeloid leukemia(AML) based on next generation sequencing(NGS). The specimens of 250 AML patients in first affiliated hospital of Zhengzhou University from January 2018 to November 2018 were collected and analyzed retrospectively. The mutation of 22 related genes were detected by using AML NGS chips. Then, the differences between elderly (≥60 years old) and young adults (<60 years old) were compared. The most frequent mutations of 250 patients were as follows: NPM1(22.4%), FLT3-ITD(18.8%), NRAS(17.2%), DNMT3A(14.4%), TET2(11.6%), IDH2(9.6%), Biallelic CEBPA(8.8%), Moallelic CEBPA(8.4%), KIT(8.4%), RUNX1(7.6%), IDH1(7.6%), ASXL1(6.0%), U2AF1(5.2%), SRSF2 (3.2%), SF3B1(3.2%), TP53(2.4%), KRAS(2.0%). The NPM1, CEBPA, DNMT3A mutation significantly increased in intermediate prognosis group while KIT significantly increased in favourable prognosis group. The TET2 and IDH2 mutation rate in elderly patients were significantly higher than that in young patients (21.8% vs 8.7%) (χ<sup>2</sup>=7.180, P=0.007) and (20.0% vs 6.7%) ( χ<sup>2</sup>=8.788, P=0.003) respectively. Compared with young patients, the frequencies of DNA methylation and demethylation mutations (including DNMT3A, TET2, IDH1, IDH2) and RNA splicing enzyme mutations (inc-luding SRSF2, SF3B1, U2AF1, ZRSR2) in elderly patients significantly increased(67.3% vs 36.4%) (χ<sup>2</sup>=16.653, P=0.000) and (23.6% vs 8.7%)(χ<sup>2</sup>=9.041, P=0.003) respectively. The gene mutational spectrum in elderly and young adult AML shows heterogeneity. Compared with young adults, the frequencies of DNA methylation and demethylation mutations and RNA splicing enzyme mutations in elderly patients significantly increase. 基于二代测序的老年和年轻成人急性髓系白血病患者突变基因谱比较. 比较基于二代测序(NGS)的老年和年轻急性髓系白血病(AML)患者突变基因谱,探讨老年AML的分子生物学特点. 回顾性分析2018年1月至2018年11月在郑州大学第一附属医院进行了基于22个基因突变谱的NGS检测初治AML(非急性早幼粒细胞白血病)患者的突变基因数据,并比较老年(≥60岁)和年轻(<60岁)AML患者之间的差异. 250例患者常见突变频率依次为NPM1(22.4%)、FLT3-ITD(18.8%)、NRAS(17.2%)、DNMT3A(14.4%)、TET2(11.6%)、IDH2(9.6%)、CEBPA双突变(8.8%)、CEBPA单突变(8.4%)、KIT(8.4%)、RUNX1(7.6%)、IDH1(7.6%)、ASXL1(6.0%)、U2AF1(5.2%)、SRSF2 (3.2%)、SF3B1(3.2%)、TP53(2.4%)、KRAS(2.0%)。NPM1、CEBPA 、DNMT3A突变常见于患者预后中等组,而KIT突变在患者预后良好组更常见。老年患者较年轻患者更多出现TET2突变(21.8% vs 8.7%)(χ<sup>2</sup>=7.180,P=0.007)和IDH2突变(20.0% vs 6.7%)(χ<sup>2</sup>=8.788,P=0.003)。将突变基因按照功能进行分组显示,老年患者更多发生DNA甲基化和去甲基化突变(包括DNMT3A、TET2、IDH1、IDH2)(67.3% vs 36.4%,χ<sup>2</sup>=16.653,P=0.000),以及RNA剪切酶突变(包括SRSF2、SF3B1 、U2AF1、ZRSR2)(23.6% vs 8.7%)(χ<sup>2</sup>=9.041,P=0.003). 基于NGS技术发现,不同年龄的AML患者常见突变种类存在显著差异,老年患者更多发生DNA甲基化和去甲基化突变以及RNA剪切酶突变."	"Cardiofaciocutaneous Syndrome Phenotype in a Case with de novo KRAS Pathogenic Variant. Cardiofaciocutaneous (CFC) syndrome is one of the developmental disorders caused by a dysregulation of the Ras/mitogen-activated protein kinase (MAPK) pathway. RASopathies share overlapping clinical features, making the diagnosis challenging, especially in the newborn period. The majority of CFC syndrome cases arise by a mutation in the BRAF, MAP2K1, MAP2K2, or (rarely) KRAS genes. Germline KRAS mutations are identified in a minority of CFC and Noonan syndrome cases. Here, we describe a patient with a KRAS mutation presenting with a CFC syndrome phenotype. The female patient was referred for genetic testing because of congenital exophthalmos. Her facial appearance is distinctive with a coarse face, exophthalmos, ptosis, downslanting palpebral fissures, hypertelorism, deep philtrum, downturned corners of the mouth, and a short neck. She suffered from feeding difficulties, poor weight gain, and developmental delay. The sequencing of the genes involved in the MAPK pathway (PTPN11, SOS1, RAF1, KRAS, NRAS, MAP2K1, SHOC2, CBL, and SPRED1) identified a heterozygous de novo NM_004985.4:c.173C&gt;T (p.Thr58Ile) in the KRAS gene. Germline KRAS mutations have been identified in approximately 2% of the reported NS cases and less than 5% of the reported CFC syndrome cases. Because CFC and Noonan syndrome share clinical overlapping features, the phenotype caused by KRAS mutations is often difficult to assign to one of the 2 entities. The mutation that we detected in our patient was previously reported in a patient with an Noonan syndrome phenotype. However, our patient predominantly exhibits CFC clinical features. In our case, coarse facial appearance and severe developmental delay help discriminate CFC from Noonan syndrome. Thus, patient follow-up, especially for delayed motor milestones suspected from RASopathies, is important for the discrimination of overlapping conditions as in the abovementioned syndromes."	"Oncogene-dependent function of BRG1 in hepatocarcinogenesis. Hepatocellular carcinoma (HCC) is the major type of primary liver cancer. Genomic studies have revealed that HCC is a heterogeneous disease with multiple subtypes. BRG1, encoded by the SMARCA4 gene, is a key component of SWI/SNF chromatin-remodeling complexes. Based on TCGA studies, somatic mutations of SMARCA4 occur in ~3% of human HCC samples. Additional studies suggest that BRG1 is overexpressed in human HCC specimens and may promote HCC growth and invasion. However, the precise functional roles of BRG1 in HCC remain poorly delineated. Here, we analyzed BRG1 in human HCC samples as well as in mouse models. We found that BRG1 is overexpressed in most of human HCC samples, especially in those associated with poorer prognosis. BRG1 expression levels positively correlate with cell cycle and negatively with metabolic pathways in the Cancer Genome Atlas (TCGA) human HCC data set. In a murine HCC model induced by c-MYC overexpression, ablation of the Brg1 gene completely repressed HCC formation. In striking contrast, however, we discovered that concomitant deletion of Brg1 and overexpression of c-Met or mutant NRas (NRAS<sup>V12</sup>) triggered HCC formation in mice. Altogether, the present data indicate that BRG1 possesses both oncogenic and tumor-suppressing roles depending on the oncogenic stimuli during hepatocarcinogenesis."	"BRAF, KIT, and NRAS Mutations of Acral Melanoma in White Patients. Malignant acral melanoma (AM) is relatively infrequent in white patients. Molecular investigations have returned variable results regarding the mutational pattern. We sought to describe the mutation profile and clinicopathologic features of AM. We investigated BRAF, KIT, and NRAS mutational status in a series of 31 AM samples from white patients. Nodular melanoma was the most common histopathologic subtype (48.4%), followed by acral lentiginous melanoma (25.8%) and superficial spreading melanoma (25.8%). BRAF, KIT, and NRAS mutational rates were 12.9%, 17.2%, and 30.0%, respectively. We observed significant associations between KIT mutational status and a thinner Breslow thickness compared with wild-type (WT) status (P = .002), NRAS mutation status and younger age compared with WT. In patients presenting at least one mutation, triple-WT patients presented metastases most frequently. Although these data represent preliminary results, better knowledge of tumor biology and prognosis of AM can support the clinical approach and follow-up."	"Establishment and Characterization of a Novel Primitive Yolk Sac Tumour Cell Line, TC587. Yolk sac tumour (YST) is a rare malignant ovarian germ cell tumour that often occurs in young women or adolescents and exhibits an unfavourable outcome. To evaluate the biological behavior of carcinomas in vitro, permanent tumour cell lines are required. However, previously, only a few human YST cell lines have been established. Therefore, we aimed to establish a novel YST cell line. We established a novel YST cell line, TC587, from an adolescent patient with ovarian YST. The cell line expressed AFP and SALL4, the characteristics of YST. In addition, we evaluated somatic mutations using next-generation sequencing and revealed some pathogenic variants, including mutations in the NRAS, KIT, KMT2C, RSF1, and TP53 genes. The newly established TC587 cell line may represent an effective tool for developing treatments and conducting molecular analyses for YST."	"Interrogation of molecular profiles can help in differentiating between MDS and AML with MDS-related changes. A subset of AML with myelodysplastic syndrome (MDS)-related changes (MRCs) occurs without a documented MDS phase. We studied genomic profile of 646 patients: 310 with MDS, 167 with AML without (w/o) MRC, 99 with primary (p) AML-MRC, and 70 with secondary (s) AML-MRC and sought to find differences in mutational patterns. Among the 32-myeloid associated genes studied, SF3B1 (p ≤ .001) was significantly mutated in higher proportion of patients with MDS, compared to other categories. NPM1 (p &lt; .001), FLT3 ITD (p = .08), and NRAS (p = .02) mutations showed trend toward significance for AML w/o MRC, compared to other categories. In pAML-MRC, TP53 (p &lt; .001) was significantly mutated in higher proportion of patients. Similarly, SETBP1 (p = .001), RUNX1 (p = .004), and SRSF2 (p = .04) mutations were more commonly seen in sAML-MRC. While these signatures may not be diagnostically discriminatory, they may help in disease categorization when other data are absent or in challenging cases."	"Molecular profiling of key driver genes improves staging accuracy in multifocal non-small cell lung cancer. Multifocal non-small cell lung cancer has historically been separated into synchronous primary lung cancers or intrapulmonary metastases with the use of histopathology. We hypothesize that using targeted next-generation sequencing of key driver mutations in multifocal non-small cell lung cancer will improve our ability to differentiate intrapulmonary metastases from synchronous primary lung cancers. We identified patients who underwent surgery for non-small cell lung cancer between 2013 and 2018 with multifocal tumors. Archived specimens were reviewed with a 4-gene next-generation sequencing panel identifying mutations of EGFR, KRAS, BRAF, and NRAS. Synchronous primary lung cancers were classified as lesions with different histopathologic subtypes or driver mutations. Tests of hypotheses were performed with the Fisher exact test. Calculations were performed in Stata (v13.0; StataCorp LLC, College Station, Tex). A total of 18 patients had non-small cell lung cancer tumor specimens (n = 41) available from 2 or more sites. The pathologic diagnosis was predominantly adenocarcinoma (39/41 specimens). We detected a driver mutation in 68.3% (28/41) of all tumors. The most common mutations observed were in KRAS (n = 17/41) and EGFR (n = 7/41). Eleven patients had synchronous primary lung cancers, and 4 patients had intrapulmonary metastases based on combined histopathologic and molecular profiling results. Three lacked driver mutations in either lesion. Eight synchronous primary lung cancers (8/18, 44%) were downstaged when compared with their original diagnosis (P = .08). Of these, 4 patients received adjuvant chemotherapy unnecessarily in hindsight. Molecular non-small cell lung cancer profiling using a 4-gene next-generation sequencing panel allows for better distinction between synchronous primary lung cancers and intrapulmonary metastases than histopathology alone. Routine use of next-generation sequencing for multifocal lesions prevents unnecessary adjuvant treatment for patients with histologically similar synchronous primary lung cancers."	"Integrating Next-Generation Sequencing with Morphology Improves Prognostic and Biologic Classification of Spitz Neoplasms. The newest World Health Organization classification of skin tumors suggests the elimination of cases with BRAF and NRAS mutations from the categories of Spitz tumors (ST) and Spitz melanoma (SM). The objective of this study is to better characterize the genomics of Spitz neoplasms and assess whether the integration of genomic data with morphologic diagnosis improves classification and prognostication. We performed DNA and RNA sequencing on 80 STs, 26 SMs, and 22 melanomas with Spitzoid features (MSF). Next-generation sequencing data were used to reclassify tumors by moving BRAF and/or NRAS mutated cases to MSF. In total, 81% of STs harbored kinase fusions and/or truncations. Of SMs, 77% had fusions and/or truncations with eight involving MAP3K8. Previously unreported fusions identified were MYO5A-FGFR1, MYO5A-ERBB4, and PRKDC-CTNNB1. The majority of MSFs (84%) had BRAF, NRAS, or NF1 mutations, and 62% had TERT promoter mutations. Only after reclassification, the following was observed: (i) mRNA expression showed distinct clustering of MSF, (ii) six of seven cases with recurrence and all distant metastases were of MSFs, (iii) recurrence-free survival was worse in MSF than in the ST and SM groups (P = 0.0073); and (iv) classification incorporating genomic data was highly predictive of recurrence (OR 13.20, P = 0.0197). The majority of STs and SMs have kinase fusions as primary initiating genomic events. The elimination of BRAF and/or NRAS mutated neoplasms from these categories results in the improved classification and prognostication of melanocytic neoplasms with Spitzoid cytomorphology."	"Analysis of Molecular Pretreated Tumor Profiles as Predictive Biomarkers of Therapeutic Response and Survival Outcomes after Neoadjuvant Therapy for Rectal Cancer in Moroccan Population. Pathologic features depending on tumor response to preoperative chemoradiotherapy are important to determine the outcomes in patients with rectal cancer. Evaluating the potential predictive roles of biomarker expression and their prognostic impact is a promising challenge. We reported here the immunohistochemical staining of a panel marker of mismatch repair protein (MMR), Ki67, HER-2, and p53. Additionally, identification of somatic mutations of KRAS, NRAS, and BRAF genes were performed by direct sequencing and pyrosequencing in pretreated biopsy tissues from 57 patients diagnosed for rectal cancer. Clinical features and pathological criteria for postneoadjuvant treatment surgical resection specimen's data were collected. Immunohistochemical expression and mutational status were correlated with therapeutic response, overall survival, and disease progression. The mean age of patients was 56 years. Seven (12.3%) out of 57 patients had a complete therapeutic response. Our analysis showed that when using complete therapeutic response (Dworak 4) and incomplete therapeutic response (Dworak 3, 2, and 1) as grouping factor, high p53 expression at the pretreatment biopsy was significantly associated to an incomplete response (p = 0.002). For 20 and 2 out of 57, KRAS and NRAS mutations were detected, respectively. The majority of these mutations affected codon 12. KRAS mutations detected at codon 146 (A146T, A146V) was associated with the appearance of recurrence and distant metastasis (p = 0.019). A high expression of HER-2 corresponding to score 3+ was observed in 3 pretreatment biopsy specimens. This class was significantly associated with a short relapse-free survival (p = 0.002). Furthermore, the high expression of Ki67 was moderately correlated with an older age (p = 0.016, r = 0.319). In addition, this shows that high p53 expression in the pretreatment biopsy was associated with an incomplete response in surgical resection specimens after neoadjuvant treatment, and a HER-2 score 3+ can be a predictive factor of distant metastasis and local recurrence. Larger, prospective, and more studies are needed."	"Adult T-cell acute lymphoblastic leukemias with IL7R pathway mutations are slow-responders who do not benefit from allogeneic stem-cell transplantation. The prognostic value of IL7-receptor pathway (IL7Rp) mutations in T-cell acute lymphoblastic leukemia (T-ALL) remains unclear. We performed a comprehensive study of 200 adult patients with T-ALL included in the GRAALL2003/2005 protocols to address the clinical significance of IL7Rp mutations. Next-generation sequencing of the IL7Rp (IL7R/JAK1/JAK3/STAT5B) revealed that IL7Rp mutations were frequent in adult T-ALL (28%) particularly in immature/early T-cell progenitor (ETP)-ALL. They were associated with mutations of NOTCH-pathway, PHF6, and PRC2 components but not with K/NRAS. IL7Rp mutated (IL7Rp<sup>mut</sup>) T-ALL were slow-responders, with a high rate of M2/M3 day-8 marrow compared with IL7Rp non-mutated (IL7Rp<sup>WT</sup>) T-ALL (p = 0.002) and minimal residual disease positivity at 6-weeks (MRD1) (p = 0.008) but no difference in MRD2 positivity at 12-weeks. Despite this, no adverse prognosis was evidenced when censored for allogeneic hematopoietic stem cell transplantation (HSCT). In time-dependent analysis, HSCT did not benefit IL7Rp<sup>mut</sup> patients whereas it was of marked benefit to IL7Rp<sup>WT</sup> cases. IL7Rp-mutations identify a subgroup of slow-responder T-ALLs which benefit from post-induction chemotherapy regimens but not from HSCT. Our data suggest that prior knowledge of the mutation status of IL7Rp may influence HSCT decision and help to guide therapy reduction."	"BRAF and DIS3 Mutations Associate with Adverse Outcome in a Long-term Follow-up of Patients with Multiple Myeloma. Copy-number changes and translocations have been studied extensively in many datasets with long-term follow-up. The impact of mutations remains debated given the short time to follow-up of most datasets. We performed targeted panel sequencing covering 125 myeloma-specific genes and the loci involved in translocations in 223 newly diagnosed myeloma samples recruited into one of the total therapy trials. As expected, the most commonly mutated genes were NRAS, KRAS, and BRAF, making up 44% of patients. Double-Hit and BRAF and DIS3 mutations had an impact on outcome alongside classical risk factors in the context of an intensive treatment approach. We were able to identify both V600E and non-V600E BRAF mutations, 58% of which were predicted to be hypoactive or kinase dead. Interestingly, 44% of the hypoactive/kinase dead BRAF-mutated patients showed co-occurring alterations in KRAS, NRAS, or activating BRAF mutations, suggesting that they play a role in the oncogenesis of multiple myeloma by facilitating MAPK activation and may lead to chemoresistance. Overall, these data highlight the importance of mutational screening to better understand newly diagnosed multiple myeloma and may lead to patient-specific mutation-driven treatment approaches."	"Enteric Type Bartholin Gland Adenocarcinoma: An Unusual Variant of a Rare Neoplasm. Vulval cancer is rare. With Bartholin gland carcinomas representing &lt;5% of all vulval carcinomas they present both diagnostic and management challenges. There are a small number of cases in the literature describing Bartholin gland carcinomas with unusual histology which necessitates the need to explore the possibility of metastases from elsewhere. We present a case of a 55-yr-old woman presenting with a vulval lesion within the Bartholin gland. Morphology demonstrated enteric type adenocarcinoma and the immunohistochemistry profile was positive for CK7, CK20, CDX2, CEA, and CA19-9. There was no evidence of an alternative primary cancer and the tumor was excised with negative regional sentinel node assessment. Genotyping showed no detectable mutations in KRAS, BRAF or NRAS suggesting a possible future role for anti-EGFR therapy."	"High Concordance and Negative Prognostic Impact of RAS/BRAF/PIK3CA Mutations in Multiple Resected Colorectal Liver Metastases. The prevalence and clinical implications of genetic heterogeneity in patients with multiple colorectal liver metastases remain largely unknown. In a prospective series of patients undergoing resection of colorectal liver metastases, the aim was to investigate the inter-metastatic and primary-to-metastatic heterogeneity of mutations in KRAS, NRAS, BRAF, and PIK3CA and their prognostic impact. We analyzed the mutation status among 372 liver metastases and 78 primary tumors from 106 patients by methods used in clinical routine testing, by Sanger sequencing, by next-generation sequencing (NGS), and/or by droplet digital polymerase chain reaction. The 3-year cancer-specific survival (CSS) was analyzed using the Kaplan-Meier method. Although Sanger sequencing indicated inter-metastatic mutation heterogeneity in 14 of 97 patients (14%), almost all cases were refuted by high-sensitive NGS. Also, heterogeneity among metastatic deposits was concluded only for PIK3CA in 2 patients. Similarly, primary-to-metastatic heterogeneity was indicated in 8 of 78 patients (10%) using Sanger sequencing but for only 2 patients after NGS, showing the emergence of 1 KRAS and 1 PIK3CA mutation in the metastatic lesions. KRAS mutations were present in 53 of 106 patients (50%) and were associated with poorer 3-year CSS after liver resection (37% vs. 61% for KRAS wild-type; P = .004). Poor prognostic associations were found also for the combination of KRAS/NRAS/BRAF mutations compared with triple wild-type (P = .002). Intra-patient mutation heterogeneity was virtually undetected, both between the primary tumor and the liver metastases and among the metastatic deposits. KRAS mutations separately, and KRAS/NRAS/BRAF mutations combined, were associated with poor patient survival after partial liver resection."	"Genetic Profiling of Advanced Melanoma: Candidate Mutations for Predicting Sensitivity and Resistance to Targeted Therapy. Molecularly targeted therapy has revolutionized the treatment of advanced melanoma. However, despite its high efficiency, a majority of patients experience relapse within 1 year of treatment because of acquired resistance, and approximately 10-25% patients gain no benefit from these agents owing to intrinsic resistance. This is mainly caused by the genetic heterogeneity of melanoma cells. We aimed to validate the predictive significance of selected genes in advanced melanoma patients before treatment with BRAF/MEK inhibitors. Archival DNA derived from 37 formalin-fixed paraffin-embedded pre-treatment advanced melanoma samples of patients treated with targeted therapy was used for next-generation sequencing analysis using the Ion Torrent platform. The AmpliSeq Custom Panel comprised coding sequences or hot spots of 23 melanoma genes: ATM, BRAF, CDK4, CDKN2A, CTNNB1, EGFR, HOXD8, HRAS, IDH1, KIT, KRAS, MAP3K8, MAP2K1, MAP2K2, MITF, MYC, NF1, NRAS, PAX5, PIK3R1, PTEN, RAC1, and RB1. The sequences were evaluated for genomic alterations and further validated using Sanger sequencing. Our analysis revealed non-BRAF genetic alterations in 28 out of 37 samples (75.7%). Genetic changes were identified in PTEN, CDK4, CDKN2A, CTNNB1, EGFR, HOXD8, HRAS, KIT, MAP2K1, MAP2K2, MITF, MYC, NF1, PAX5, RAC1, and RB1. Fifteen known pathogenic mutations (single nucleotide variants or indels) and 11 variants of unknown significance were detected. Statistical analysis revealed an association between the presence of pathogenic mutations and time to progression during treatment with combination therapy. Pathogenic mutations identified by gene panel sequencing have potential predictive value for targeted therapy of melanoma and are worth further validation in a larger series of cases. The role of some known mutations (e.g. CDK4<sup>R24</sup>, PTEN c.801 + 1G &gt; A, CTNNB1<sup>S45F</sup>) as well as variants of unknown significance identified in this study (e.g. MITF<sup>R316K</sup>, KIT<sup>G498S</sup>) in the generation of resistance to BRAF/MEK inhibitors should be further investigated."	"After 95 years, it's time to eRASe JMML. Juvenile myelomonocytic leukaemia (JMML) is a rare clonal disorder of early childhood. Constitutive activation of the RAS pathway is the initial event in JMML. Around 90% of patients diagnosed with JMML carry a mutation in the PTPN11, NRAS, KRAS, NF1 or CBL genes. It has been demonstrated that after this first genetic event, an additional somatic mutation or epigenetic modification is involved in disease progression. The available genetic and clinical data have enabled researchers to establish relationships between JMML and several clinical conditions, including Noonan syndrome, Ras-associated lymphoproliferative disease, and Moyamoya disease. Despite scientific progress and the development of more effective treatments, JMML is still a deadly disease: the 5-year survival rate is ~50%. Here, we report on recent research having led to a better understanding of the genetic and molecular mechanisms involved in JMML."	"NRAS Mutation Detected in a Melanoma With Chondroid Stroma: A Case Report With Molecular Evaluation and Literature Review of a Rare Form of Melanoma. Melanoma with cartilaginous differentiation is a rare histologic subtype that has been reported in the literature. It often presents clinically different than conventional melanomas and can be diagnostically challenging. Molecular alterations in previously reported cases have not been published. We present a case of melanoma with chondroid stroma from a 70-year-old man that was found to contain an NRAS mutation (c.182A&gt;G (p.Q61R)) via Illumina TruSight Tumor 15 (TST15) next generation sequencing assay."	"Precision Therapy in RAS Mutant Colorectal Cancer. NA"	"Clinicopathological Characteristics of BRAF V600E Mutated Melanomas in the Dalmatian Region of Croatia. A high proportion of cutaneous melanomas harbor activating mutations of the BRAF or NRAS genes, which are components of mitogen-activated protein kinase (MAPK) signal transduction pathway. The importance of BRAF V600E mutation in melanoma is not only related to the possibility of the administration of the targeted therapy, but also to the fact that BRAF V600E mutated melanomas have distinct clinicopathological features. We investigated the clinicopathological features of 80 primary skin melanomas with known BRAF V600E mutation status excised in the Dalmatian region of Croatia, with comparison of these features between the mutated and wild-type group. The frequency of BRAF V600E mutation was 47.5%. In comparison with wild-type melanomas, BRAF V600E mutated melanomas were significantly associated with younger age and female sex (P=0.014 and P=0.011, respectively). The mutated melanomas were more often located on the extremities, of a nodular type, ulcerated, and with higher median of mitotic index but without significant difference in comparison with wild-type tumors. There were no differences in the depth of invasion and the presence of lymphovascular invasion, tumor infiltrating lymphocytes, and regression between the investigated groups. The frequency of BRAF V600E mutation in our cohort of primary skin melanomas and the clinicopathological features of mutated tumors were similar to those reported in the literature, except for the higher proportion of women observed in our group with mutation."	"In Situ Growing Double-Layer TiO2 Nanorod Arrays on New-Type FTO Electrodes for Low-Concentration NH3 Detection at Room Temperature. A novel double-layer TiO2 nanorod array (NRA) gas sensor for room-temperature detection of NH3 was fabricated by employing etched fluorine-doped tin dioxide (FTO) glass as the in situ growing substrate and the new-type gas-sensing electrode via the facile droplet-coating and hydrothermal methods. Due to the synergistic effect of forces, special double-layer TiO2 NRAs with a cross-linked and bridgelike structure is formed, in which adequate point junctions can be generated to construct self-assembled electron pathways required for gas-sensing tests. Gas-sensing tests indicate that all samples obtained at different growth times have an excellent gas-sensing response to low-concentration NH3 at room temperature. Among them, the TiO2 NRAs obtained at 6 h (S2) exhibit the highest gas-sensing response to 100 ppm NH3 with a value of 102%. In addition, the growth mechanism, the gas reaction mechanism, and the effect of humidity on the gas-sensing performance are also discussed in the present paper."	"Cytogenetics and mutations could predict outcome in relapsed and refractory acute myeloid leukemia patients receiving BCL-2 inhibitor venetoclax. Venetoclax, a selective B cell leukemia/lymphoma-2 (BCL2) inhibitor, has recently shown activity in relapsed or refractory (R/R) acute myeloid leukemia (AML). Effective biomarkers for identifying patients most likely to respond to venetoclax-based treatment are of clinical utility. In this study, we aimed to evaluate the efficacy and safety profiles of venetoclax-based therapy in a total 40 R/R AML patients and identify the potentially predictive factors for response. Overall response rate was 50%, including 9 (22.5%) complete response (CR) or CR with incomplete hematologic recovery of either neutrophil or platelet counts (CRi). Median time to best response was 1.4 months and the median overall survival (OS) was 6.6 months. Presence of intermediate-risk cytogenetics predicted better OS compared to unfavorable-risk cytogenetics. Patients harboring NPM1, RUNX1, or SRSF2 mutations seemed to have higher CR/CRi rates and median OS was significantly longer in RUNX1-mutated patients. On the contrary, patients with FLT3-ITD, TP53, or DNMT3A mutations did not reach any objective response and had worse OS. No laboratory or clinical tumor lysis syndrome was observed and the most common adverse events were prolonged cytopenias which resulted in 67.5% of febrile neutropenia. Patients with concurrent use of azole antifungals had similar incidence of cytopenias compared with those without azole antifungals. In summary, we demonstrate that venetoclax is an effective and well-tolerated salvage option for R/R AML patients. Survival benefits were particularly remarkable in patients with intermediate-risk cytogenetics or RUNX1 mutations. In contrast, TP53, NRAS, and DNMT3A mutations as well as FLT3-ITD conferred negative impact on survival."	"β,β-Dimethylacrylshikonin Induces Apoptosis in Melanoma Cell Lines by NOXA Upregulation. Melanoma is the most aggressive form of skin cancer, with high metastasis rates and poor prognosis. Survival rates and possible therapies depend on the state of the tumor and its mutational profile. BRAF and NRAS are the most frequent driver mutations. Currently, there is no efficient therapy for NRAS-mutated or late-stage melanoma. In this study, the therapeutic potential of β,β-dimethylacrylshikonin (DMAS) was investigated on melanoma. The influence of DMAS was determined in five different melanoma cell lines with different mutational profiles. The effects of this compound on cell viability, apoptosis, and gene and protein expression were examined. The results obtained were validated in vivo. DMAS significantly reduced the viability of several melanoma cell lines in a concentration- and time-dependent manner. Furthermore, DMAS induced caspase-3-dependent apoptosis via NOXA upregulation, as confirmed by NOXA knockdown experiments. This is the first time that NOXA-dependent apoptosis was shown with respect to a shikonin derivative and melanoma. Additionally, tumor regression and necrosis under DMAS treatment were demonstrated in vivo. Importantly, BRAF as well as NRAS-mutated metastatic human melanoma cell lines were treated successfully in vitro and in vivo. Taken together, DMAS showed promising results and is worthy of further study."	"Membrane interactions of the globular domain and the hypervariable region of KRAS4b define its unique diffusion behavior. The RAS proteins are GTP-dependent switches that regulate signaling pathways and are frequently mutated in cancer. RAS proteins concentrate in the plasma membrane via lipid-tethers and hypervariable region side-chain interactions in distinct nano-domains. However, little is known about RAS membrane dynamics and the details of RAS activation of downstream signaling. Here, we characterize RAS in live human and mouse cells using single-molecule-tracking methods and estimate RAS mobility parameters. KRAS4b exhibits confined mobility with three diffusive states distinct from the other RAS isoforms (KRAS4a, NRAS, and HRAS); and although most of the amino acid differences between RAS isoforms lie within the hypervariable region, the additional confinement of KRAS4b is largely determined by the protein's globular domain. To understand the altered mobility of an oncogenic KRAS4b, we used complementary experimental and molecular dynamics simulation approaches to reveal a detailed mechanism."	"Cost-Effectiveness of RAS Genetic Testing Strategies in Patients With Metastatic Colorectal Cancer: A Systematic Review. Monoclonal antibodies against epidermal growth factor receptor (EGFR) have proved beneficial for the treatment of metastatic colorectal cancer (mCRC), particularly when combined with predictive biomarkers of response. International guidelines recommend anti-EGFR therapy only for RAS (NRAS,KRAS) wild-type tumors because tumors with RAS mutations are unlikely to benefit. We aimed to review the cost-effectiveness of RAS testing in mCRC patients before anti-EGFR therapy and to assess how well economic evaluations adhere to guidelines. A systematic review of full economic evaluations comparing RAS testing with no testing was performed for articles published in English between 2000 and 2018. Study quality was assessed using the Quality of Health Economic Studies scale, and the British Medical Journal and the Philips checklists. Six economic evaluations (2 cost-effectiveness analyses, 2 cost-utility analyses, and 2 combined cost-effectiveness and cost-utility analyses) were included. All studies were of good quality and adopted the perspective of the healthcare system/payer; accordingly, only direct medical costs were considered. Four studies presented testing strategies with a favorable incremental cost-effectiveness ratio under the National Institute for Clinical Excellence (£20 000-£30 000/QALY) and the US ($50 000-$100 000/QALY) thresholds. Testing mCRC patients for RAS status and administering EGFR inhibitors only to patients with RAS wild-type tumors is a more cost-effective strategy than treating all patients without testing. The treatment of mCRC is becoming more personalized, which is essential to avoid inappropriate therapy and unnecessarily high healthcare costs. Future economic assessments should take into account other parameters that reflect the real world (eg, NRAS mutation analysis, toxicity of biological agents, genetic test sensitivity and specificity)."	"Evaluation of KRAS, NRAS and BRAF mutations detection in plasma using an automated system for patients with metastatic colorectal cancer. Cell-free DNA detection is becoming a surrogate assay for tumor genotyping. Biological fluids often content a very low amount of cell-free tumor DNA and assays able to detect very low allele frequency mutant with a few quantities of DNA are required. We evaluated the ability of the fully-automated molecular diagnostics platform Idylla for the detection of KRAS, NRAS and BRAF hotspot mutations in plasma from patients with metastatic colorectal cancer (mCRC). First, we evaluated the limit of detection of the system using two set of laboratory made samples that mimic mCRC patient plasma, then plasma samples from patients with mCRC were assessed using Idylla system and BEAMing digital PCR technology. Limits of detection of 0.1%, 0.4% and 0.01% for KRAS, NRAS and BRAF respectively have been reached. With our laboratory made samples, sensitivity up to 0.008% has been reached. Among 15 patients' samples tested for KRAS mutation, 2 discrepant results were found between Idylla and BEAMing dPCR. A 100% concordance between the two assays has been found for the detection of NRAS and BRAF mutations in plasma samples. The Idylla system does not reach as high sensitivity as assays like ddPCR but has an equivalent sensitivity to modified NGS technics with a lower cost and a lower time to results. These data allowed to consider the Idylla system in a routine laboratory workflow for KRAS, NRAS and BRAF mutations detection in plasma."	"Evaluation of a Liquid Biopsy Protocol using Ultra-Deep Massive Parallel Sequencing for Detecting and Quantifying Circulation Tumor DNA in Colorectal Cancer Patients. The identification and quantification of actionable mutations are critical for guiding targeted therapy and monitoring drug response in colorectal cancer. Liquid biopsy (LB) based on plasma cell-free DNA analysis has emerged as a noninvasive approach with many clinical advantages over conventional tissue sampling. Here, we developed a LB protocol using ultra-deep massive parallel sequencing and validated its clinical performance for detection and quantification of actionable mutations in three major driver genes (KRAS, NRAS and BRAF). The assay showed a 92% concordance for mutation detection between plasma and paired tissues and great reliability in quantification of variant allele frequency."	"Vitamin B6 Addiction in Acute Myeloid Leukemia. Cancer cells rely on altered metabolism to support abnormal proliferation. We performed a CRISPR/Cas9 functional genomic screen targeting metabolic enzymes and identified PDXK-an enzyme that produces pyridoxal phosphate (PLP) from vitamin B6-as an acute myeloid leukemia (AML)-selective dependency. PDXK kinase activity is required for PLP production and AML cell proliferation, and pharmacological blockade of the vitamin B6 pathway at both PDXK and PLP levels recapitulated PDXK disruption effects. PDXK disruption reduced intracellular concentrations of key metabolites needed for cell division. Furthermore, disruption of PLP-dependent enzymes ODC1 or GOT2 selectively inhibited AML cell proliferation and their downstream products partially rescued PDXK disruption induced proliferation blockage. Our work identifies the vitamin B6 pathway as a pharmacologically actionable dependency in AML."	"Relationship between CpG island methylation phenotype, microsatellite instability phenotype and mutation of KRAS, NRAS, and BRAF genes in colorectal cancer. CpG island methylation phenotype (CIMP) and microsatellite instability (MSI) are two different molecular mechanisms in colorectal cancer (CRC). Proto-oncogene KRAS, mutations in NRAS and BRAF play an important role in the formation of colorectal cancer. The correlation between the molecular typing of CIMP and MSI and the genes of KRAS, NRAS and BRAF was explored in this study. A total of 110 paraffin-embedded specimens of colorectal cancer were collected from the Chinese People's Liberation Army Rocket Army Special Medical Center during the period from May 2017 to September 2018. CIMP were detected by DNA methylation quantitative PCR (Methylight). Mutations in KRAS, NRAS, and BRAF genes were detected by realtime fluorescence quantitative PCR (qPCR); MSI typing was detected by sequencing. Of the 110 colorectal cancer samples, 11 cases (10%) were CIMP-H, 92 cases (83.64%) were CIMP-L, and 7 cases (6.36%) were CIMP-0. 10 cases (9.09%) were MSI-H, and 100 cases (90.91%) were MSS and MSI-L. The mutation rates of KRAS, NRAS and BRAF genes were 50% (55 cases), 6.36% (7 cases) and 5.45% (6 cases), respectively. There was no significant correlation between CIMP group and MSI group (P &gt; 0.05). Also, no significant differences were found in the mutations between the three subtypes of the CIMP group and the KRAS, NRAS genes (P &gt; 0.05), while there was a statistically significant difference among the three subtypes of the BR and the BRAF gene mutations (P &lt; 0.0001). There were no obvious differences between the three states of microsatellites and the mutations of KRAS and NRAS genes (P &gt; 0.05), and the differences between them and BRAF gene mutations were statistically significant (P &lt; 0.01). The BRAF gene mutation is closely related to the two types of CIMP and MSI, which may be an important part of the above two molecular mechanisms, and provide a reference for the treatment of the patients with CIMP-H and MSI-H."	"Photodynamic Therapy for ras-Driven Cancers: Targeting G-Quadruplex RNA Structures with Bifunctional Alkyl-Modified Porphyrins. Designing small molecules able to break down G4 structures in mRNA (RG4s) offers an interesting approach to cancer therapy. Here, we have studied cationic porphyrins (CPs) bearing an alkyl chain up to 12 carbons, as they bind to RG4s while generating reactive oxygen species upon photoirradiation. Fluorescence-activated cell sorting (FACS) and confocal microscopy showed that the designed alkyl CPs strongly penetrate cell membranes, binding to KRAS and NRAS mRNAs under low-abundance cell conditions. In Panc-1 cells, alkyl CPs at nanomolar concentrations promote a dramatic downregulation of KRAS and NRAS expression, but only if photoactivated. Alkyl CPs also reduce the metabolic activity of pancreatic cancer cells and the growth of a Panc-1 xenograft in SCID mice. Propidium iodide/annexin assays and caspase 3, caspase 7, and PARP-1 analyses show that these compounds activate apoptosis. All these data demonstrate that the designed alkyl CPs are efficient photosensitizers for the photodynamic therapy of ras-driven cancers."	"Molecular diagnostic characteristics based on the next generation sequencing in lung cancer and its relationship with the expression of PD-L1. Next generation sequencing (NGS) is a massively parallel sequencing technique that can be used to detect many forms of DNA variation, including point mutations, small fragment insertion deletions, gene recombination, and copy number variations. It can simultaneously analyze multiple genes and mutations, quantitatively detect gene mutation rate, and provide comprehensive information for clinicians. More and more lung cancer patients have benefited from studies on programmed death-1igand l (PD-L1) and immunocheckpoint inhibitors. The relationship between gene mutation and PD-L1 is also a focus of current research. Therefore, we collected a large number of cases to describe the molecular diagnostic characteristics of NGS in lung cancer and the relationship between NGS and PD-L1 expression. A total of 1017 lung cancer patients with 15-gene panel (EGFR, ALK, ROS1, BRAF, MET, RET, ERBB2, KRAS, PIK3CA, KIT, ESR1, PDGFRA, DDR2, HRAS, NRAS) examined by NGS from our hospital were collected to analyze their clinicopathological characteristics. 600 of 1017 patients were tested for PD-L1 (22C3) by immunohistochemistry (IHC) at the same time. PD-L1 tumor proportion score (TPS) were used for comparative analysis with gene mutation results, and then to screen for possible correlation genes. 74.63 % (759/1017) of lung cancer patients had at least one version of the genes. The top three mutation were EGFR (46.41 %), KRAS (13.86 %) and PIK3CA (10.03 %). Mutations in EGFR, KRAS, PIK3CA, KIT, ESR1 and NRAS were associated with sex (P &lt; 0.05). Except for EGFR, which was more frequent in female, other genes were more frequent in male. ALK was more detectable in patients younger than 60, while PIK3CA was more detectable in patients older than 60(P &lt; 0.05). EGFR, ALK, ROS1, KRAS, PIK3CA, ESR1 and NRAS were associated with smoking (P &lt; 0.05). EGFR, KRAS, PIK3CA and ESR1 were correlated with pathological histology (P &lt; 0.05). Among the 15 genes, only EGFR was associated with pathological histology of invasive adenocarcinoma (IA). EGFR had the highest mutation rate (60.00 %) in Lepidic predominate IA. Significantly different in sample types were found in EGFR, ALK, MET, KRAS, PIK3CA and NRAS examined by NGS. There were significant differences in the TPS of PD-L1 (22C3) in EGFR, ALK, BRAF and MET variants (P &lt; 0.05). EGFR mutations were more common in TPS &lt; 1 %, ALK mutations were more common in TPS (1 %-49 %), and BRAF and MET mutations were more common in TPS ≥ 50 %. In the 15-gene panel, in addition to EGFR, ALK and ROS1, MET, KRAS, PIK3CA, KIT, ESR1 and NRAS also had their own characteristics in sex, age, smoking history, histopathology, sample type and PD-L1, showing different clinicopathological tendencies. Understanding this information can help us optimize stratified lung cancer patients. Furthermore, it provides patients with a variety of diagnostic needs and a large number of unique clinical data worthy of clinical recognition."	"Comparative-effectiveness of pembrolizumab vs. nivolumab for patients with metastatic melanoma. Background: Pembrolizumab (P) and nivolumab (N) are commonly used therapies for advanced melanoma. However, their effectiveness has never been directly compared, leaving little guidance for clinicians to select the best therapy. Therefore, we sought to retrospectively compare the overall survival of patients with metastatic melanoma treated with front line P or N in the real-world setting.Material and methods: This study included patients with advanced melanoma, diagnosed between 1 January 2011 and 31 July 2018, treated with frontline P or N who were included in a nationwide, longitudinal de-identified electronic health record (EHR)-derived database. Overall survival (OS) was estimated for each treatment group using Kaplan-Meier curves with a log-rank test. Comparison of OS was estimated using an inverse probability weighting model to reduce bias between the groups. The model was adjusted using age, sex, ECOG, LDH (elevated or not), BRAF (mutated or not), Kit (mutated or not), NRAS (mutated or not), PD-L1 expression (0% or greater), Body Mass Index, and primary site.Results: 888 patients with advanced disease who received treatment with frontline P (n = 486) or N (n = 402) were identified. Median OS for all patients treated with P was 22.6 months (m) and was 23.9 m for those treated with N (p = 0.91). In the inverse probability weight analysis there was no difference in survival between patients treated with P or N 1.06 (95% CI 0.84-1.33).Concluding Statement: In our retrospective, real-world analysis of patients with advanced melanoma, no statistical difference in OS was noted between patients treated with frontline P compared to N. This supports the current practice of choosing either P or N based on patient and provider preference."	"AXL and CAV-1 play a role for MTH1 inhibitor TH1579 sensitivity in cutaneous malignant melanoma. Cutaneous malignant melanoma (CMM) is the deadliest form of skin cancer and clinically challenging due to its propensity to develop therapy resistance. Reactive oxygen species (ROS) can induce DNA damage and play a significant role in CMM. MTH1 protein protects from ROS damage and is often overexpressed in different cancer types including CMM. Herein, we report that MTH1 inhibitor TH1579 induced ROS levels, increased DNA damage responses, caused mitotic arrest and suppressed CMM proliferation leading to cell death both in vitro and in an in vivo xenograft CMM zebrafish disease model. TH1579 was more potent in abrogating cell proliferation and inducing cell death in a heterogeneous co-culture setting when compared with CMM standard treatments, vemurafenib or trametinib, showing its broad anticancer activity. Silencing MTH1 alone exhibited similar cytotoxic effects with concomitant induction of mitotic arrest and ROS induction culminating in cell death in most CMM cell lines tested, further emphasizing the importance of MTH1 in CMM cells. Furthermore, overexpression of receptor tyrosine kinase AXL, previously demonstrated to contribute to BRAF inhibitor resistance, sensitized BRAF mutant and BRAF/NRAS wildtype CMM cells to TH1579. AXL overexpression culminated in increased ROS levels in CMM cells. Moreover, silencing of a protein that has shown opposing effects on cell proliferation, CAV-1, decreased sensitivity to TH1579 in a BRAF inhibitor resistant cell line. AXL-MTH1 and CAV-1-MTH1 mRNA expressions were correlated as seen in CMM clinical samples. Finally, TH1579 in combination with BRAF inhibitor exhibited a more potent cell killing effect in BRAF mutant cells both in vitro and in vivo. In summary, we show that TH1579-mediated efficacy is independent of BRAF/NRAS mutational status but dependent on the expression of AXL and CAV-1."	"Relation of cetuximab-induced skin toxicity and early tumor shrinkage in metastatic colorectal cancer patients: results of the randomized phase 3 trial FIRE-3 (AIO KRK0306). Cetuximab-induced skin toxicity (Cet-ST) is positively associated with outcome in metastatic colorectal cancer (mCRC). Besides its predictive relevance for targeted therapy, we investigated its prognostic impact with early tumor shrinkage (ETS) ≥20%, another on-treatment surrogate for clinical outcome in FIRE-3. FIRE-3 evaluated first-line FOLFIRI (folinic acid, fluorouracil and irinotecan) plus cetuximab (FOLFIRI/Cet) versus FOLFIRI plus bevacizumab (FOLFIRI/Bev) in mCRC patients with RAS-WT tumors (i.e. wild-type in KRAS and NRAS exons 2-4). Retrospective data on Cet-ST that occurred during cycles 1-3 of treatment were correlated with efficacy endpoints, including ETS. To control for guarantee-time bias, only patients who had completed three or more treatment cycles were considered. Of 199 patients treated with FOLFIRI/Cet, 181 (91.0%) completed three or more treatment cycles. A significant survival benefit of FOLFIRI/Cet over FOLFIRI/Bev was only evident in patients developing Cet-ST grade 2-3 [41.0 versus 26.6 months; hazard ratio (HR) = 0.73; 95% confidence interval (CI): 0.61-0.87; P &lt; 0.001] compared with Cet-ST grade 0-1 (HR = 0.90; 95% CI: 0.67-1.20; P = 0.48). Regarding prognosis, Cet-ST grade 2-3 (n = 75; 41.4%), compared with Cet-ST grade 0-1 (n = 106; 58.6%), was associated with prolonged overall survival (OS; HR = 0.62; 95% CI: 0.42-0.91; P = 0.01). In multivariate analysis, both Cet-ST (HR = 0.66; 95% CI: 0.50-0.87; P = 0.003) and ETS (HR = 0.55; 95% CI: 0.41-0.74; P &lt; 0.0001) were independently prognostic for OS. Absence of both Cet-ST grade ≥2 and ETS identified a subgroup of patients with very poor prognosis (median OS 15.1 months). In FIRE-3, the addition of cetuximab to FOLFIRI was associated with superior OS compared with FOLFIRI/Bev only in patients developing Cet-ST grade ≥2. Regarding prognostic relevance, both Cet-ST and ETS were independent and early predictors of survival. The present analysis supports that a combined evaluation of on-treatment parameters such as Cet-ST and ETS may help to guide treatment of mCRC."	"STAT3 Relays a Differential Response to Melanoma-Associated NRAS Mutations. Melanoma patients carrying an oncogenic NRAS mutation represent 20% of all cases and present worse survival, relapse rate and therapy response than patients with wild type NRAS or with BRAF mutations. Nevertheless, no efficient targeted therapy has emerged so far for this group of patients in comparison with the classical combination of BRAF and MEK inhibitors for the patient group carrying a BRAF mutation. NRAS key downstream actors should therefore be identified for drug targeting, possibly in combination with MEK inhibitors. Here, we investigated the influence of different melanoma-associated NRAS mutations (codon 12, 13 or 61) on several parameters such as oncogene-induced senescence, cell proliferation, migration or colony formation in immortalized melanocytes and in melanoma cell lines. We identified AXL/STAT3 axis as a main regulator of NRASQ61-induced oncogene-induced senescence (OIS) and observed that NRASQ61 mutations are not only more tumorigenic than NRASG12/13 mutations but also associated to STAT3 activation. In conclusion, these data bring new evidence of the potential tumorigenic role of STAT3 in NRAS-mutant melanomas and will help improving current therapy strategies for this particular patient group."	"Clinical response to larotrectinib in adult Philadelphia chromosome-like ALL with cryptic ETV6-NTRK3 rearrangement. Philadelphia chromosome (Ph)-like acute lymphoblastic leukemia (ALL) is a subtype of Ph-negative ALL that molecularly resembles Ph-positive ALL. It shares the adverse prognosis of Ph-positive ALL, but lacks the BCR-ABL1 fusion oncogene. Instead, Ph-like ALL is associated with alternative mutations in signaling pathways. We describe a case of Ph-like ALL that harbored 2 genomic alterations, which activated signaling, an NRASGly12Asp mutation, and an ETV6-NTRK3 rearrangement. Initially, the NRAS mutation was detected at high frequency, whereas the gene fusion was only detectable with a targeted next-generation sequencing-based fusion assay, but not by fluorescence in situ hybridization analysis. The disease failed to respond to multiagent chemotherapy but investigational CD19-directed chimeric antigen receptor T-cell therapy resulted in a complete remission. However, the leukemia relapsed after 6 weeks. Intriguingly, the NRAS mutation was extinguished during the chimeric antigen receptor T-cell therapy and did not contribute to the relapse, which was instead associated with a rise in ETV6-NTRK3. The relapsed leukemia progressed with further chemo- and immunotherapy but was controlled for 6 weeks with substantial leukemic cytoreduction using the TRK inhibitor larotrectinib. Unfortunately, recovery of normal hematopoiesis was only marginal and the patient eventually succumbed to infections. These results demonstrate that larotrectinib has clinical activity in ETV6-NTRK3-associated Ph-like ALL."	"Rapid On-site Molecular Evaluation in thyroid cytopathology: A same-day cytological and molecular diagnosis. Thyroid fine-needle aspirates (FNAs) with undetermined morphology can be outsourced to centralized laboratories for comprehensive molecular profiling. When a local, rapid screening rules out easily detectable BRAF and NRAS mutations outsourcing is minimized, leading to cost savings. The fully automated Idylla technology, that does not require trained staff, is an emerging option. However, Idylla platform has only been validated to process formalin fixed paraffin embedded (FFPE) sections. Here we investigate whether also the FNA needle rinse could be genotyped by the same cytopathologist who performs the FNA, a procedure that can be termed rapid on site molecular evaluation (ROME). To validate this approach, the Idylla BRAF and NRAS Test was performed on the rinses from 25 simulated (bench-top) FNAs, in a first part of the study. Genotyping data were compared with those obtained on matched histological FFPE blocks. The second part of the study was carried out on 25 prospectively collected routine FNAs to assess the performance of the Idylla BRAF and NRAS assay against a gold standard real time polymerase chain reaction method. Idylla NRAS-BRAF Mutation Test was performed on needle rinse as well as histological FFPE blocks. A sensitivity of 88.9%, a specificity of 100.0% were obtained comparing the Idylla NRAS-BRAF Mutation Test on needle rinse to the reference method. The FNA needle rinse can be directly genotyped. This obviates the need of cell block preparation, making possible a rapid combined morphological and molecular evaluation. Since DNA extraction is no longer necessary, the cytopathologist can perform ROME him/herself."	"Therapeutic options for mucinous ovarian carcinoma. Mucinous ovarian carcinoma (MOC) is an uncommon ovarian cancer histotype that responds poorly to conventional chemotherapy regimens. Although long overall survival outcomes can occur with early detection and optimal surgical resection, recurrent and advanced disease are associated with extremely poor survival. There are no current guidelines specifically for the systemic management of recurrent MOC. We analyzed data from a large cohort of women with MOC to evaluate the potential for clinical utility from a range of systemic agents. We analyzed gene copy number (n = 191) and DNA sequencing data (n = 184) from primary MOC to evaluate signatures of mismatch repair deficiency and homologous recombination deficiency, and other genetic events. Immunohistochemistry data were collated for ER, CK7, CK20, CDX2, HER2, PAX8 and p16 (n = 117-166). Molecular aberrations noted in MOC that suggest a match with current targeted therapies include amplification of ERBB2 (26.7%) and BRAF mutation (9%). Observed genetic events that suggest potential efficacy for agents currently in clinical trials include: KRAS/NRAS mutations (66%), TP53 missense mutation (49%), RNF43 mutation (11%), ARID1A mutation (10%), and PIK3CA/PTEN mutation (9%). Therapies exploiting homologous recombination deficiency (HRD) may not be effective in MOC, as only 1/191 had a high HRD score. Mismatch repair deficiency was similarly rare (1/184). Although genetically diverse, MOC has several potential therapeutic targets. Importantly, the lack of response to platinum-based therapy observed clinically corresponds to the lack of a genomic signature associated with HRD, and MOC are thus also unlikely to respond to PARP inhibition."	"Spitz melanoma is a distinct subset of spitzoid melanoma. Melanomas that have histopathologic features that overlap with those of Spitz nevus are referred to as spitzoid melanomas. However, the diagnostic concept is used inconsistently and genomic analyses suggest it is a heterogeneous category. Spitz tumors, the spectrum of melanocytic neoplasms extending from Spitz nevi to their malignant counterpart Spitz melanoma, are defined in the 2018 WHO classification of skin tumors by the presence of specific genetic alterations, such as kinase fusions or HRAS mutations. It is unclear what fraction of &quot;spitzoid melanomas&quot; defined solely by their histopathologic features belong to the category of Spitz melanoma or to other melanoma subtypes. We assembled a cohort of 25 spitzoid melanomas diagnosed at a single institution over an 8-year period and performed high-coverage DNA sequencing of 480 cancer related genes. Transcriptome wide RNA sequencing was performed for select cases. Only nine cases (36%) had genetic alterations characteristic of Spitz melanoma, including HRAS mutation or fusion involving BRAF, ALK, NTRK1, or MAP3K8. The remaining cases were divided into those with an MAPK activating mutation and those without an MAPK activating mutation. Both Spitz melanoma and spitzoid melanomas in which an MAPK-activating mutation could not be identified tended to occur in younger patients on skin with little solar elastosis, infrequently harbored TERT promoter mutations, and had a lower burden of pathogenic mutations than spitzoid melanomas with non-Spitz MAPK-activating mutations. The MAPK-activating mutations identified affected non-V600 residues of BRAF as well as NRAS, MAP2K1/2, NF1, and KIT, while BRAF V600 mutations, the most common mutations in melanomas of the WHO low-CSD category, were entirely absent. While the &quot;spitzoid melanomas&quot; comprising our cohort were enriched for bona fide Spitz melanomas, the majority of melanomas fell outside of the genetically defined category of Spitz melanomas, indicating that histomorphology is an unreliable predictor of Spitz lineage."	"Ameloblastic fibrosarcoma: clinicopathological and molecular analysis of seven cases highlighting frequent BRAF and occasional NRAS mutations. Ameloblastic fibrosarcoma (AFS) is an aggressive odontogenic neoplasm featuring malignant mesenchymal stroma in addition to an ameloblastic epithelial component, and is hence considered to be the malignant counterpart of ameloblastic fibroma (AF). AFS is exceedingly rare, with &lt;110 cases having been reported so far. Although BRAF mutations are recognised driver mutations in ameloblastoma, the molecular pathogenesis of AFS remains elusive. We herein describe seven AFSs that were analysed, for the first time, for mutations in the BRAF-NRAS pathway. The patients were four females and three males aged 23-57 years (median, 26 years). Three tumours developed after one or multiple recurrences of AF (4-20 years after initial diagnosis), two showed transition from AF-like bland areas, and two developed de novo. All patients were treated with surgery; adjuvant chemotherapy was given to one patient. At the last follow-up, five patients were alive and well (19-344 months). The remainder were lost to follow-up. Histological examination showed variable sarcomatous overgrowth with varying degrees of atypia and increased mitotic activity. The epithelial component varied greatly according to the degree of sarcomatous overgrowth. Molecular testing revealed BRAF V600E mutations in five cases and NRAS p.Gln61Lys mutation in one case. One tumour was wild-type. To our knowledge, this is the first study on BRAF/NRAS mutations in AFS. Given the activity of RAF and MEK inhibitors across different cancers harbouring V600E mutations, our data strongly suggest that all AFS cases should be genetically tested, and that targeted treatment approaches for this extremely rare sarcoma subtype should be clinically investigated."	"Prospective evaluation of prognostic impact of KIT mutations on acute myeloid leukemia with RUNX1-RUNX1T1 and CBFB-MYH11. The prognostic impact of KIT mutation on core-binding factor acute myeloid leukemia (CBF-AML) remains controversial. We registered 199 newly diagnosed de novo CBF-AML patients, aged 16 to 64 years, who achieved complete remission. They received 3 courses of high-dose cytarabine therapy and no further treatment until hematological relapse. Mutations in exons 8, 10-11, and 17 of the KIT gene were analyzed. Furthermore, we analyzed mutations in 56 genes that are frequently identified in myeloid malignancies and evaluated minimal residual disease (MRD). The primary end point was relapse-free survival (RFS) according to KIT mutations. The RFS in KIT-mutated patients was inferior to that in unmutated patients (hazard ratio, 1.92; 95% confidence interval, 1.23-3.00; P = .003). Based on subgroup analysis, KIT mutations had a prognostic impact in patients with RUNX1-RUNX1T1, but not in those with CBFB-MYH11, and only exon 17 mutation had a significant prognostic impact. Multivariate Cox regression analysis with stepwise selection revealed that the KIT exon 17 mutation and the presence of extramedullary tumors in patients with RUNX1-RUNX1T1, and loss of chromosome X or Y and NRAS mutation in patients with CBFB-MYH11 were poor prognostic factors for RFS. MRD was evaluated in 112 patients, and it was associated with a poorer RFS in the patients with CBFB-MYH11, but not in those with RUNX1-RUNX1T1. These results suggested that it is necessary to separately evaluate AML with RUNX1-RUNX1T1 or CBFB-MYH11 according to appropriate prognostic factors. This study was registered at www.umin.ac.jp/ctr/ as #UMIN000003434."	"Somatic mutations in intracranial arteriovenous malformations. Intracranial arteriovenous malformation (AVM) is a common cause of primary intracerebral hemorrhage in young adults. Lesions typically are sporadic and contain somatic mutations in KRAS or BRAF. The purpose of this study was to identify somatic mutations in a cohort of participants with brain AVM and to determine if any genotype-phenotype associations exist. Human brain AVM specimens (n = 16) were collected during a clinically-indicated procedure and subjected to multiplex targeted sequencing using molecular inversion probe (MIP-seq) for mutations in KRAS, BRAF, HRAS, NRAS, and MAP2K1. Endothelial cells (ECs) were separated from non-ECs by immune-affinity purification. Droplet digital PCR (ddPCR) was used to confirm mutations and to screen for mutations that may have been missed by MIP-seq. Patient and AVM characteristics were recorded. We detected somatic mutations in 10 of 16 specimens (63%). Eight had KRAS mutations [G12D (n = 5), G12V (n = 3)] and two had BRAF mutations [V600E (n = 1), Q636X (n = 1)]. We found no difference in age, sex, presenting symptom, AVM location, or AVM size between patients with a confirmed mutation and those without. Nor did we observe differences in these features between patients with KRAS or BRAF mutations. However, two patients with BRAF mutations presented at an older age than other study participants. Somatic mutations in KRAS and, less commonly in BRAF, are found in many but not all intracranial AVM samples. Currently, there are no obvious genotype-phenotype correlations that can be used to predict whether a somatic mutation will be detected and, if so, which gene will be mutated."	"Kaposiform hemangioendothelioma and tufted angioma - (epi)genetic analysis including genome-wide methylation profiling. Kaposiform hemangioendothelioma (KHE) is a locally aggressive vascular condition of childhood and is clinicopathologically related to tufted angioma (TA), a benign skin lesion. Due to their rarity molecular data are scarce. We investigated 7 KHE and 3 TA by comprehensive mutational analysis and genome-wide methylation profiling and compared the clustering, also with vascular malformations. Lesions were from 7 females and 3 males. The age range was 2 months to 9 years with a median of 10 months. KHEs arose in the soft tissue of the thigh (n = 2), retroperitoneum (n = 1), thoracal/abdominal (n = 1), supraclavicular (n = 1) and neck (n = 1). One patient presented with multiple lesions without further information. Two patients developed a Kasabach-Merritt phenomenon. TAs originated in the skin of the shoulder (n = 2) and nose/forehead (n = 1). Of the 5 KHEs and 2 TAs investigated by DNA sequencing, one TA showed a hot spot mutation in NRAS, and one KHE a mutation in RAD50. Unsupervised hierarchical clustering analysis indicated a common methylation pattern of KHEs and TAs, which separated from the homogeneous methylation pattern of vascular malformations. In conclusion, methylation profiling provides further evidence for KHEs and TAs potentially forming a spectrum of one entity. Using next generation sequencing, heterogeneous mutations were found in a subset of cases (2/7) without the presence of GNA14 mutations, previously reported in KHE and TA."	"Implication of Microsatellite Instability Pathway in Outcome of Colon Cancer in Moroccan Population. Tumors with microsatellite instability (MSI tumors) have distinct clinicopathological features. However, the relation between these tumor subtypes and survival in colon cancer remains controversial. The aim of this study was to evaluate the overall survival (OS) in patients with MSI phenotype, in FES population. The expression of MMR proteins was evaluated by immunohistochemistry for 330 patients. BRAF, KRAS, and NRAS mutations were examined by Sanger sequencing and pyrosequencing methods. The association of MSI status with a patient's survival was assessed by the Kaplan-Meier method and log-rank test. The mean age was 54.6 years (range of 19-90 years). The MSI status was found in 11.2% of our population. MSI tumors were significantly associated with male gender, younger patients, stage I-II, right localization, and a lower rate of lymph node and distant metastasis. The OS tends to be longer in MSI tumors than MSS tumors (109.71 versus 74.08), with a difference close to significance (P = 0.05). Our study demonstrates that MSI tumors have a particular clinicopathological features. The results of survival analysis indicate that the MSI status was not predictive of improved overall survival in our context with a lower statistical significance (P = 0.05) after multivariate analysis."	"KRAS and NRAS mutational gene profile of metastatic colorectal cancer patients in Jordan. A constitutively active RAS protein in the absence of stimulation of the epidermal growth factor receptor (EGFR) is the result of mutations in KRAS and NRAS genes. Mutations in the KRAS exon 2 and outside exon 2 have been found to predict the resistance to anti-EGFR monoclonal therapy. A substantial proportion of metastatic colorectal cancer cases (mCRC) exhibit RAS mutations outside KRAS exon 2, particularly in KRAS exon 3 and 4 and NRAS exons 2 and 3. No data about RAS mutations outside KRAS exon 2 are available for Jordanian patients with mCRC. We aim to study the molecular spectrum, frequency, and distribution pattern of KRAS and NRAS mutations in Jordanian patients with mCRC. A cohort of 190 Jordanian metastatic colorectal cancer patients were enrolled in the trial. We detected mutations in exon 2 of the KRAS and NRAS gene as well as mutations outside of exon 2 using the StripAssay technique. The KRAS StripAssay covered 29 mutations and 22 NRAS mutations. Mutations were observed in 92 (48.42%) cases, and KRAS exon 2 mutations accounted for 76 cases (83.69%). KRAS G12D was the most common mutation, occurring in 18 cases, followed by KRAS G12A in 16 cases, and G12T in 13 cases. Mutations outside of KRAS exon 2 represented 16.3% of the mutated cases. Among those, 6 cases (6.48%) carried mutations in NRAS exon 2 and 3, and 10 cases (10.87%) in KRAS exon 3 and 4. The frequency of NRAS and KRAS mutations outside of exon 2 appears to be higher in Jordanian patients in comparison with patients from western countries. KRAS mutations outside of exon 2 should be tested routinely to identify patients who should not be treated with anti-EGFR antibodies."	"Analysis of Intestinal Metaplasia Without Dysplasia in the Urinary Bladder Reveal Only Rare Mutations Associated With Colorectal Adenocarcinoma. Intestinal metaplasia (IM) is a rare finding in urinary bladder specimens. It is unclear whether IM without dysplasia is a precursor of malignancy in the urinary system. We retrospectively selected 9 cases of IM of bladder (1 case harboring high-grade dysplasia), and performed mutation analysis for genes frequently mutated in colon cancer including BRAF, APC, KRAS, MET, NRAS, PIK3CA, CTNNB1, FBXW7, and TP53 using validated clinical tests. Control groups included 7 colonic tubular adenomas, 10 high-grade papillary urothelial carcinomas. One IM case revealed an APC mutation and another showed an NRAS mutation. Among the tubular adenomas cases, 6 of 7 (85.7%) harbored KRAS mutations and 3 of 7 (42%) APC mutations. Among urothelial carcinomas cases, 1 revealed a KRAS mutation, 2 had PIK3CA mutations, and all cases were negative for APC mutations. Clinical follow-up for the IM patients was available with a median follow-up of 70 months. One patient-without any mutation in the genes investigated-developed invasive bladder adenocarcinoma with intestinal differentiation with metastasis to the liver and lung. Neither of the 2 patients harboring mutations developed any malignancy. In conclusion, a minority of cases with IM without dysplasia bear mutations in the genes commonly associated with colonic adenocarcinoma, suggesting a premalignant potential for such lesions possibly following the classic multistep chromosomal instability pathway of carcinogenesis. A larger cohort of patients with longer follow-up is needed to better establish whether close follow-up is warranted for mutation-harboring IM of the bladder."	"Clinicopathologic, Immunohistochemical, and Molecular Characteristics of Ovarian Serous Carcinoma With Mixed Morphologic Features of High-grade and Low-grade Serous Carcinoma. Despite the current classification of high-grade serous carcinoma (HGSCA) and low-grade serous carcinoma (LGSCA) as mutually exclusive diseases based on morphology and molecular pathogenesis, cases with mixed morphologic features of HGSCA and LGSCA have been reported. Herein we assess the clinicopathologic, immunohistochemical (IHC), and molecular genetic characteristics of a group of these cases, which we termed indeterminate grade serous carcinoma (IGSCA) in comparison with groups of HGSCA and LGSCA. Using the World Health Organization (WHO) classification criteria, we selected 27 LGSCA and 19 IGSCA for detailed morphologic study. Thirteen classic HGSCA, 19 classic LGSCA, and 19 IGSCA were selected for p53 and BRAF V600E IHC and molecular genetic testing by next-generation sequencing. IGSCA showed the architectural patterns of invasion of LGSCA, but with higher grade nuclear features focally and a mitotic index intermediate between LGSCA and HGSCA. Few cases in the IGSCA group showed mutant TP53 by IHC or sequencing (4/18, 22.2%), 1 case had mutant BRAF non-V600E by sequencing, and 1 had an NRAS mutation. When present, the mutations were identical in the low-grade and high-grade areas. The IGSCA group had a long-term survival similar to the classic HGSCA group. IGSCA with mixed morphologic features of HGSCA and LGSCA is a rare and potentially clinically aggressive variant of serous carcinoma. Their distinct morphologic, but heterogenous molecular features, including low frequency of TP53 and BRAF mutations suggest that these rare tumors may have a different pathogenesis pathway compared with classic HGSCA and classic LGSCA."	"Next generation sequencing identifies novel potential actionable mutations for grade I meningioma treatment. Meningiomas are common brain tumors that arise from the meningeal membranes that envelope the brain and spinal cord. The World Health Organization classifies these tumors into three histopathological grades. Because of tumor recurrence, treating meningiomas may be challenging even in well-differentiated grade I (GI) neoplasms. Indeed, around 5% of completely resected GI meningiomas relapse within 5 years. Therefore, identifying driver mutations in GI meningiomas through next generation sequencing (NGS) assays is paramount. The aim of this study was to validate the use of the 50-gene AmpliSeq Hotspot Cancer Panel v2 to identify the mutational status of 23 GI meningioma, namely, 12 non recurrent and 11 recurrent. In 18 out of the 23 GI meningiomas analyzed, we identified at least one gene mutation (78.2%). The most frequently mutated genes were c-kit (39.1%), ATM (26.1%), TP53 (26.1%), EGFR (26.1%), STK11 (21.7%), NRAS (17.4%), SMAD4 (13%), FGFR3 (13%), and PTPN11 (13%); less frequent mutations were SMARCB1 (8.7%), FLT3 (8.7%), KRAS (8.7%), FBWX7 (8.7%), ABL1 (8.7%), ERBB2 (8.7%), IDH1 (8.7%), BRAF (8.7%), MET (8.7%), HRAS (4.3%), RB1 (4.3%), CTNNB1 (4.3%), PIK3CA (4.3%), VHL (4.3%), KDR (4.3%), APC (4.3%), NOTCH1 (4.3%), JAK3 (4.3%), and SRC (4.3%). To our knowledge, mutations in all of these genes, except for TP53, STK11, SMARCB1, PIK3CA, VHL, and BRAF, have never been described before in meningiomas. Hence, these findings demonstrate the viability of NGS to detect new genetic alterations in GI meningiomas. Equally important, this technology enabled us to detect possible novel actionable mutations not previously associated with GI and for which selective inhibitors already exist."	"Genotypic and phenotypic evolution in a patient with chronic myelomonocytic leukemia. The correlation of molecular and phenotypic evolution in individual patients with chronic myelomonocytic leukemia (CMML) is poorly investigated. The longitudinal follow up of a CMML patient for more than 10 years illustrates that the emergence of clones harboring mutations in TET2, SRSF2, RUNX1, MPL, NRAS, and finally in multiple genes, respectively, was mirrored by thrombocytopenia, thrombocytosis, myeloproliferation and transformation into acute myeloid leukemia. Moreover, molecular aberrations of the RAS genes were associated with markedly increased spontaneous in vitro myeloid colony formation which has been shown to be a functional indicator of RAS pathway hyperactivation."	"Newly recognized non-adenomatous lesions associated with enteric carcinomas in inflammatory bowel disease - Report of six rare and unique cases. It is the current view that the inflammatory bowel disease (IBD)-associated precancerous lesions may be adenomatous (with classic cytologic dysplasia) and non-adenomatous (without frank cytologic dysplasia), and the latter ones are in various histomorphologies including serrated, mucinous, eosinophilic (goblet cell deficient), and differentiated (dysplasia with terminal epithelial differentiation) types. By retrospectively reviewing the surgically resected IBD-associated colorectal and ileal carcinomas (×53), analyzing the background epithelial changes/lesions in the mucosa surrounding and adjacent to invasive carcinomas, and testing the key molecular profile (KRAS, BRAF, PIK3CA, NRAS, p53, mismatch repair proteins, and SAT-B2) known to be involved in colorectal carcinogenesis, we identified 6 representative, rare and unique cases, in which non-adenomatous lesions were clearly in vicinity and in transition to invasive carcinomas. Furthermore, we identified certain colonic carcinoma-related molecular alterations, and thus further confirmed the neoplastic nature of various non-adenomatous lesions. It was also revealed that non-adenomatous lesions are heterogeneous in both morphology and molecular alterations, and that it is common to have more than one type of lesions be associated with a carcinoma. Moreover, mixed focal adenomatous dysplasia was common, which may be the necessary step in the malignant transformation of the non-adenomatous lesions."	"Clinicopathologic Characteristics, Treatment Outcomes, and Acquired Resistance Patterns of Atypical EGFR Mutations and HER2 Alterations in Stage IV Non-Small-Cell Lung Cancer. The clinicopathologic characteristics, acquired resistance patterns, and outcomes among patients with atypical EGFR mutations and HER2 alterations remain underexplored. A single-center retrospective review was conducted. Oncogenes assessed include typical EGFR (t-EGFR; exon 19 del and L858R), atypical EGFR (a-EGFR; G719X, exon 20, L861Q), HER2 (exon 19, exon 20, amplifications), gene fusions (ALK, ROS1, RET), RAS (KRAS, NRAS), and RAF (BRAF V600E). Progression-free survival (PFS), overall survival (OS), disease control rate, and objective response rate (Response Evaluation Criteria in Solid Tumors 1.1) were collected. Among 570 patients, we found 55 a-EGFR mutations (13 G719X, 38 exon 20, 4 L861Q) and 31 HER2 alterations (2 exon 19 mutations, 27 exon 20 insertions, 2 amplifications). Patients with EGFR and HER2 alterations had increased lung and bone metastases relative to patients with gene fusions, RAS/RAF mutations, and no identified driver oncogenes (P &lt; .001). Patients with EGFR exon 20 insertions had a median PFS to EGFR tyrosine kinase inhibitors (TKIs) of 5 months and an OS of 16 months-significantly worse than exon 19 del and L858R (Bonferroni correction; P &lt; .001), but not G719X or L861Q. Relative to t-EGFR mutations, T790M and MET amplification occurred less frequently as acquired resistance mechanisms among a-EGFR samples (P &lt; .001). Ten patients with a-EGFR mutations and HER2 alterations received single-agent immune checkpoint inhibitors (ICIs) with no radiographic responses and a median PFS of 2 months. EGFR and HER2-mutated NSCLC have a high rate of synchronous lung and bone metastases. Patients with a-EGFR mutations have inferior responses to EGFR-directed therapies with lower rates of acquired T790M and MET amplification. Responses to ICIs are uniformly poor. Novel therapeutic approaches are needed."	"Mutation-derived Neoantigen-specific T-cell Responses in Multiple Myeloma. Somatic mutations in cancer cells can give rise to novel protein sequences that can be presented by antigen-presenting cells as neoantigens to the host immune system. Tumor neoantigens represent excellent targets for immunotherapy, due to their specific expression in cancer tissue. Despite the widespread use of immunomodulatory drugs and immunotherapies that recharge T and NK cells, there has been no direct evidence that neoantigen-specific T-cell responses are elicited in multiple myeloma. Using next-generation sequencing data we describe the landscape of neo-antigens in 184 patients with multiple myeloma and successfully validate neoantigen-specific T cells in patients with multiple myeloma and support the feasibility of neoantigen-based therapeutic vaccines for use in cancers with intermediate mutational loads such as multiple myeloma. In this study, we demonstrate an increase in neoantigen load in relapsed patients with multiple myeloma as compared with newly diagnosed patients with multiple myeloma. Moreover, we identify shared neoantigens across multiple patients in three multiple myeloma oncogenic driver genes (KRAS, NRAS, and IRF4). Next, we validate neoantigen T-cell response and clonal expansion in correlation with clinical response in relapsed patients with multiple myeloma. This is the first study to experimentally validate the immunogenicity of predicted neoantigens from next-generation sequencing in relapsed patients with multiple myeloma. Our findings demonstrate that somatic mutations in multiple myeloma can be immunogenic and induce neoantigen-specific T-cell activation that is associated with antitumor activity in vitro and clinical response in vivo. Our results provide the foundation for using neoantigen targeting strategies such as peptide vaccines in future trials for patients with multiple myeloma."	"The impact of oncogenic RAS on redox balance and implications for cancer development. The RAS family of proto-oncogenes comprises HRAS, KRAS, and NRAS, which are among the most mutated genes in human cancers. The RAS family genes encode small GTPases that coordinate key signaling pathways in response to growth factors. Mutations in RAS result in a constitutively active form of the protein that supports cellular transformation and tumorigenesis. The mechanisms of oncogenic RAS-mediated transformation encompass uncontrolled proliferation and inhibition of cell death through overactivation of the RAF-MEK-ERK and the PI3K-AKT pathways, respectively. In addition, the control of redox balance by RAS has also been proposed to play a role in its oncogenic properties. However, the exact role of redox balance in mediating mutant RAS transformation is still under debate. Here, we present, on one hand, the involvement of pro-oxidant components in oncogenic RAS transformation, such as NADPH oxidases and mitochondrial reactive oxygen species, and how these promote transformation. On the other hand, we describe the contribution of antioxidant components to mutant RAS transformation, including Nrf2, glutathione biosynthesis and xCT, as well as the mechanisms by which antioxidant programs drive transformation. Finally, we aim to reconcile the seemingly opposite effects of oncogenic RAS on redox balance and discuss a model for the complementary role of both pro-oxidant and antioxidant pathways in mutant RAS-driven tumor progression."	"Comment on 'Testing for BRAF fusions in patients with advanced BRAF/NRAS/KIT wild-type melanomas permits to identify patients who could benefit of anti-MEK targeted therapy'. NA"	"KIT Mutation Incidence and Pattern of Melanoma in Central Europe. Data on the KIT mutation rate in melanoma in the central European region is missing. Accordingly, in a cohort of 79 BRAF/NRAS double wild type cutaneous melanoma and 17 mucosal melanoma KIT mutation was assessed by Sanger sequencing of exons 9,11,13,17 and 18. In this cutaneous melanoma cohort KIT mutation frequency was found to be 34/79 (43.04%) with a significantly higher rate in acrolentiginous melanoma (ALM) as compared to UV-induced common variants (20/34, 58.8% versus 14/45, 31.1%, p = 0.014). In the double wild type mucosal melanoma cohort the KIT mutation frequency was found to be comparable (41.2%). The actual frequency of KIT mutation in the original 227 patient cutaneous melanoma cohort was 34/227, 14.9%. Exon 11 was the most frequent mutation site (44.7%) followed by exon 9 (21.1%) equally characterizing UV-induced common histotypes and ALM tumors. In mucosal melanoma exon 9 was the most frequently involved exon followed by exon 13 and 17. KIT mutation hotspots were identified in exon 9 (c482/491/492), in exon 11 (c559,c572, c570), in exon 13 (c642), in exon 17 (c822) and in exon 18 (c853). The relatively high KIT mutation rate in cutaneous melanoma in this central-European cohort justifies regular testing of this molecular target in this entity, not only in mucosal variants."	"Triple blockade of EGFR, MEK and PD-L1 has antitumor activity in colorectal cancer models with constitutive activation of MAPK signaling and PD-L1 overexpression. Molecular mechanisms driving acquired resistance to anti-EGFR therapies in metastatic colorectal cancer (mCRC) are complex but generally involve the activation of the downstream RAS-RAF-MEK-MAPK pathway. Nevertheless, even if inhibition of EGFR and MEK could be a strategy for overcoming anti-EGFR resistance, its use is limited by the development of MEK inhibitor (MEKi) resistance. We have generated in vitro and in vivo different CRC models in order to underline the mechanisms of MEKi resistance. The three different in vitro MEKi resistant models, two generated by human CRC cells quadruple wild type for KRAS, NRAS, BRAF, PI3KCA genes (SW48-MR and LIM1215-MR) and one by human CRC cells harboring KRAS mutation (HCT116-MR) showed features related to the gene signature of colorectal cancer CMS4 with up-regulation of immune pathway as confirmed by microarray and western blot analysis. In particular, the MEKi phenotype was associated with the loss of epithelial features and acquisition of mesenchymal markers and morphology. The change in morphology was accompanied by up-regulation of PD-L1 expression and activation of EGFR and its downstream pathway, independently to RAS mutation status. To extend these in vitro findings, we have obtained mouse colon cancer MC38- and CT26-MEKi resistant syngeneic models (MC38-MR and CT26-MR). Combined treatment with MEKi, EGFR inhibitor (EGFRi) and PD-L1 inhibitor (PD-L1i) resulted in a marked inhibition of tumor growth in both models. These results suggest a strategy to potentially improve the efficacy of MEK inhibition by co-treatment with EGFR and PD-L1 inhibitors via modulation of host immune responses."	"Label-Free Detection of E. coli O157:H7 DNA Using Light-Addressable Potentiometric Sensors with Highly Oriented ZnO Nanorod Arrays. The detection of bacterial deoxyribonucleic acid (DNA) is of great significance in the quality control of food and water. In this study, a light-addressable potentiometric sensor (LAPS) deposited with highly oriented ZnO nanorod arrays (NRAs) was used for the label-free detection of single-stranded bacterial DNA (ssDNA). A functional, sensitive surface for the detection of Escherichia coli (E. coli) O157:H7 DNA was prepared by the covalent immobilization of the specific probe single-stranded DNA (ssDNA) on the LAPS surface. The functional surface was exposed to solutions containing the target E. coli ssDNA molecules, which allowed for the hybridization of the target ssDNA with the probe ssDNA. The surface charge changes induced by the hybridization of the probe ssDNA with the target E. coli ssDNA were monitored using LAPS measurements in a label-free manner. The results indicate that distinct signal changes can be registered and recorded to detect the target E. coli ssDNA. The lower detection limit of the target ssDNA corresponded to 1.0 × 10<sup>2</sup> colony forming units (CFUs)/mL of E. coli O157:H7 cells. All the results demonstrate that this DNA biosensor, based on the electrostatic detection of ssDNA, provides a novel approach for the sensitive and effective detection of bacterial DNA, which has promising prospects and potential applications in the quality control of food and water."	"Ultra-deep massively parallel sequencing with unique molecular identifier tagging achieves comparable performance to droplet digital PCR for detection and quantification of circulating tumor DNA from lung cancer patients. The identification and quantification of actionable mutations are of critical importance for effective genotype-directed therapies, prognosis and drug response monitoring in patients with non-small-cell lung cancer (NSCLC). Although tumor tissue biopsy remains the gold standard for diagnosis of NSCLC, the analysis of circulating tumor DNA (ctDNA) in plasma, known as liquid biopsy, has recently emerged as an alternative and noninvasive approach for exploring tumor genetic constitution. In this study, we developed a protocol for liquid biopsy using ultra-deep massively parallel sequencing (MPS) with unique molecular identifier tagging and evaluated its performance for the identification and quantification of tumor-derived mutations from plasma of patients with advanced NSCLC. Paired plasma and tumor tissue samples were used to evaluate mutation profiles detected by ultra-deep MPS, which showed 87.5% concordance. Cross-platform comparison with droplet digital PCR demonstrated comparable detection performance (91.4% concordance, Cohen's kappa coefficient of 0.85 with 95% CI = 0.72-0.97) and great reliability in quantification of mutation allele frequency (Intraclass correlation coefficient of 0.96 with 95% CI = 0.90-0.98). Our results highlight the potential application of liquid biopsy using ultra-deep MPS as a routine assay in clinical practice for both detection and quantification of actionable mutation landscape in NSCLC patients."	"Dual-specificity protein phosphatase DUSP4 regulates response to MEK inhibition in BRAF wild-type melanoma. Aiming to improve treatment options for BRAF wild-type melanoma, we previously conducted the DOC-MEK study of docetaxel with MEK inhibitor (MEKi) selumetinib or placebo, revealing trends to prolongation of progression-free survival (hazard ratio 0.75, P = 0.130), and improved response rates (32% vs 14%, P = 0.059) with docetaxel plus selumetinib. NRAS status did not associate with outcome. Here, the aim was to identify novel biomarkers of response to MEKi. A MEK 6 gene signature was quantified using NanoString and correlated with clinical outcomes. Two components of the gene signature were investigated by gene silencing in BRAF/NRAS wild-type melanoma cells. In melanomas of patients on the selumetinib but not the placebo arm, two gene signature components, dual-specificity protein phosphatase 4 (DUSP4) and ETS translocation variant 4 (ETV4), were expressed more highly in responders than non-responders. In vitro, ETV4 depletion inhibited cell survival but did not influence sensitivity to MEKi selumetinib or trametinib. In contrast, DUSP4-depleted cells showed enhanced cell survival and increased resistance to both selumetinib and trametinib. ETV4 and DUSP4 associated with clinical response to docetaxel plus selumetinib. DUSP4 depletion induced MEKi resistance, suggesting that DUSP4 is not only a biomarker but also a mediator of MEKi sensitivity. DOC-MEK (EudraCT no: 2009-018153-23)."	"Development and Analytical Validation of a DNA Dual-Strand Approach for the US Food and Drug Administration-Approved Next-Generation Sequencing-Based Praxis Extended RAS Panel for Metastatic Colorectal Cancer Samples. A next-generation sequencing method was developed that can distinguish single-stranded modifications from low-frequency somatic mutations present on both strands of DNA in formalin-fixed paraffin-embedded colorectal cancer samples. We applied this method for analytical validation of the Praxis Extended RAS Panel, a US Food and Drug Administration-approved companion diagnostic for panitumumab, on the Illumina MiSeqDx platform. With the use of the TruSeq amplicon workflow, both strands of DNA from the starting material were interrogated independently. Mutations were reported only if found on both strands; artifacts usually present on only one strand would not be reported. A total of 56 mutations were targeted within the KRAS and NRAS genes. A minimum read depth of 1800× per amplicon is required per sample but averaged &gt;30,000× at maximum multiplexing levels. Analytical validation studies were performed to determine the simultaneous detection of mutations on both strands, reproducibility, assay detection level, precision of the assay across various factors, and the impact of interfering substances. In conclusion, this assay can clearly distinguish single-stranded artifacts from low-frequency mutations. Furthermore, the assay is accurate, precise, and reproducible, can achieve consistent detection of a mutation at 5% mutation frequency, exhibits minimal impact from tested interfering substances, and can simultaneously detect 56 mutations in a single run using 10 samples plus controls."	"Targeted therapies in melanoma beyond BRAF: targeting NRAS-mutated and KIT-mutated melanoma. Melanoma treatment have been revolutionized since 2010 by the development of immune checkpoint inhibitors, and, for BRAF-mutated melanoma, targeted therapies based on BRAF and MEK inhibitors, which is a model of effective targeted therapy in cancer. However, patients with BRAF wild type cannot benefit for such treatments. In this review, we will focus on the current clinical development of targeted therapies beyond BRAF, in NRAS-mutated and KIT-altered melanoma. In NRAS-mutated melanoma, targeted therapies based on MEK inhibition are being developed as monotherapy or in combination with MAPK, PI3K or CDK4/6 inhibitor. Targeted therapies of KIT-altered melanoma patients is based in KIT inhibitor (mostly imatinib, nilotinib), although for both melanoma subtypes, results are for now disappointing as compared with BRAF and MEK inhibitors in BRAF-mutated melanoma. Combined therapeutic targeted strategies are awaited in NRAS-mutated and KIT-altered melanoma and could provide additional benefit."	"Macroscopic and microscopic morphology and molecular profiling to distinguish heterogeneous traditional serrated adenomas of the colorectum. Serrated lesions of the colorectum often have complex histological morphology, and some groups include subtypes with different molecular biology. This study aimed to characterize serrated lesions with heterogeneous histology that was dominated by a traditional serrated adenoma (TSA) component. Representative lesions were selected based on both endoscopic and histological features. If a lesion had more than one component, each of the different structural parts was considered as a separate sample. DNA was extracted from 177 samples of 60 lesions and amplified to screen for BRAF and K/NRAS mutations. Heterogeneous TSA samples were classified into four categories: sessile serrated lesion with TSA (SA-1); TSAs with microvesicular hyperplastic polyp (SA-2); TSAs with unclassified adenoma, characterized by tubulo-serrated histology (SA-3); and TSAs with conventional adenomas (SA-4). On endoscopy, SA-1 lesions had sessile-elevated morphology with the small reddish elevations; SA-2 lesions had a pedunculated appearance with a whitish mucosal component at the stalk; SA-3 lesions had a sessile-elevated component surrounded by flat spreading margins; and SA-4 lesions had mixed adenomatous morphology. Eighteen of the 19 category SA-1 and -2 lesions (95%) had BRAF mutations, and all of the SA-3 and -4 lesions had K/NRAS mutations. Traditional serrated adenomas were classified into two phenotypes according to their molecular characteristics: microvesicular serrated subtypes with BRAF mutations (SA-1 and -2 lesions) and subtypes containing tubulo-serrated/conventional adenoma with K/NRAS mutations (SA-3 and -4 lesions). Each subtype had characteristic macroscopic and microscopic morphologies and was distinct on endoscopy."	"NRAS Contributes to Retinoblastoma Progression Through SNHG16/miR-183-5p/NRAS Regulatory Network. The oncogene of wild type neuroblastoma RAS viral oncogene homolog (NRAS) has been found to involve in the tumorigenesis of cancers. However, the role of NRAS in retinoblastoma (RB) progression remains largely unknown. The expression levels of NRAS, miR-183-5p and small nucleolar RNA host gene 16 (SNHG16) were measured using quantitative real-time polymerase chain reaction assay or Western blot assay, respectively. Cell proliferation and apoptosis were analyzed with 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assay or flow cytometry, respectively. Transwell assay was used to determine cell migration and invasion abilities. The interaction between miR-183-5p and NRAS or SNHG16 was analyzed using bioinformatics analysis and dual-luciferase reporter assay. NRAS was elevated in RB tissues and cell lines, knockdown of NRAS could inhibit proliferation, migration and invasion but induced apoptosis in vitro and suppressed tumor growth in vivo. NRAS was confirmed to be a target of miR-183-5p and was negatively regulated by miR-183-5p in RB cells. Moreover, overexpressed NRAS reversed miR-183-5p mediated inhibition on RB cell progression. Besides that, SNHG16 directly interacted with miR-183-5p and reduced miR-183-5p expression in RB cells. The suppression of RB cell progression induced by SNHG16 silencing could be partially attenuated by the inhibition of miR-183-5p. Besides that, SNHG16 could regulate NRAS expression through competitively binding to miR-183-5p in RB cells. NRAS functioned as an oncogene to contribute to RB progression by SNHG16/miR-183-5p/NRAS regulatory network, indicating a novel and promising therapeutic target for RB."	"Clonal hierarchy of main molecular lesions in acute myeloid leukaemia. Genetic mutations in acute myeloid leukaemia (AML) are assumed to occur in a sequential order; however, the predominant hierarchical roles of specific mutated genes have not been fully described. In this study, we aimed to determine the clonal involvement of the most frequent AML-associated mutations. Using a targeted sequencing panel for 18 genes, we traced changes and relative clonal contribution of mutations in 52 patients. We analysed 35 pairs of diagnosis and relapse samples, 27 pairs of primary samples and corresponding patient-derived xenografts, and 34 pairs of total leukocytes and corresponding isolated primitive cells or blast populations. In both relapse and xenografts, we observed conservation of main leukaemic clones and variability was limited to subclones with late-acquired mutations. AML evolution thus mainly involved modification of subclones while the clonal background remained unchanged. NPM1 mutations were identified as the most probable leukaemia-transformation lesion, remaining conserved in contrast to high variation of accompanying subclonal FLT3 and NRAS mutations. DNMT3A mutations represented the most stable mutations forming a preleukaemic background in most samples. Mutations in genes IDH1/2, TET2, RUNX1, ASXL1 and U2AF1 were detected both as preleukaemic and as subclonal lesions, suggesting a non-specific order of acquisition."	"Mutations In Thirty Hotspot Genes In Newly Diagnosed Chinese Multiple Myeloma Patients. In recent years, whole-genome sequencing and whole-exon sequencing have revealed the spectrum of gene mutations in multiple myeloma (MM). Gene mutations may play an important role in the pathogenesis, progression, and prognosis of this disease. On the basis of these studies, we established a box of mutations in 30 hotspot genes and analyzed the characteristics in newly diagnosed MM patients in China. Bone marrow samples were collected. Mononuclear cells were isolated and plasma cells were separated using CD138 magnetic beads. Gene mutations were detected by PCR and Sanger sequencing. Fluorescence in situ hybridization (FISH) was used to analyze 1q21, 17p13.1, 14q32/16q23, 14q32/4p16, and 14q32/11q13.3. In the first part of this study, characterization of 30 genes and FISH analysis were performed in 40 patients. For economic reasons, in the second part of this study, 12 of 30 genes were characterized in another 46 patients. In the 40 patients of the first part of this study, single nucleotide polymorphisms (SNPs) were detected in 7 genes (CRBN, ATM, FAT4, FAM46C, RB1, NR3C1, and SPEN), while 16 genes were mutated (ATM, CUL4B, IRF4, CCND1, KRAS, DIS3, CRBN, TP53, FAT4, NR3C1, VCAN, RB1, SP140, NRAS, EGR1, and BRAF). Overall, 83 mutations of 30 genes were identified, including 54 intronic mutations, 18 missense mutations, 6 synonymous mutations, 3 5'/3'-UTR mutations, and 2 deletions mutations. Cytogenetic abnormalities were also screened in the 40 patients assayed, with 50% of the patients having 1q21<sup>+</sup>, 12.5% having 17p<sup>-</sup>, 15% having t(4;14), and 17.5% having t(11;14). DIS3 was mutated in 4/40, three of which involved t(4;14) or t(11;14). TP53 was mutated in two non-17p<sup>-</sup> patients, one of whom survived only 7 months, while the other survived 13 months. Three genes (ATM, CUL4B, and IRF4) with a high mutation rate were analyzed for an association with survival. There was no statistically significant difference in 2-year PFS (progress free survival) and 2-year OS (overall survival) between patients with or without ATM or CUL4B mutation (P&gt;0.05). This finding was also obtained for IFR4 mutation, but patients with IFR4 mutation did show trends for longer PFS and OS. SNPs and other types of gene mutations are common in newly diagnosed Chinese multiple myeloma patients. The genes most commonly featuring SNPs are CRBN, ATM, FAT4, and FAM46C, while the genes most commonly featuring other mutation types are ATM, CUL4B, and IRF4. There were differences in the profiles of genes affected by SNPs and by other mutation types. Intronic mutations were the most common mutation type. Gene mutations may differ among patients with different cytogenetic abnormalities. Genetic mutations may be associated with prognosis."	"Non-Redundant and Overlapping Oncogenic Readouts of Non-Canonical and Novel Colorectal Cancer KRAS and NRAS Mutants. RAS oncogene family members are molecular switches of signaling pathways that control cell growth, proliferation, differentiation, and survival. In colorectal cancer, Kirsten-RAS (KRAS) and neuroblastoma-RAS (NRAS) are the commonly mutated isoforms. Activating mutations in RAS result in cellular transformation independent of upregulated epidermal growth factor receptor (EGFR)-initiated signaling. The present study characterized the functional consequences of non-canonical/novel KRAS and NRAS mutants identified in a targeted next-generation sequencing study of colorectal cancer specimens from Filipino patients. In vitro assays in NIH3T3 cells showed that similar to the canonical KRAS G12D mutant, overexpression of KRAS G12S, A59T, and Y137C, but not NRAS G12D and NRAS A11V, confer higher proliferation and migration rates. HCT116 cells transfected with the novel NRAS A11V and the canonical NRAS G12D, but not the KRAS mutants, display enhanced resistance to apoptosis. All four non-canonical/novel KRAS and NRAS mutants induce gross changes in F-actin cytoskeletal organization and cellular morphology of NIH3T3 cells. Only KRAS G12S and KRAS A59T appear to deregulate extracellular signal-regulated kinase (ERK) and its downstream target ETS transcription factor ELK1 (ELK1). Elucidation of differential effector engagement responsible for the variable phenotypic readouts of the mutants is warranted. If validated by mouse studies and clinical correlates, these can have wider implications in choosing treatment options."	"Targeting RAS in pediatric cancer: is it becoming a reality? The current review aims to highlight the frequency of RAS mutations in pediatric leukemias and solid tumors and to propose strategies for targeting oncogenic RAS in pediatric cancers. The three RAS genes (HRAS, NRAS, and KRAS) comprise the most frequently mutated oncogene family in human cancer. RAS mutations are commonly observed in three of the leading causes of cancer death in the United States, namely lung cancer, pancreatic cancer, and colorectal cancer. The association of RAS mutations with these aggressive malignancies inspired the creation of the National Cancer Institute RAS initiative and spurred intense efforts to develop strategies to inhibit oncogenic RAS, with much recent success. RAS mutations are frequently observed in pediatric cancers; however, recent advances in anti-RAS drug development have yet to translate into pediatric clinical trials. We find that RAS is mutated in common and rare pediatric malignancies and that oncogenic RAS confers a functional dependency in these cancers. Many strategies for targeting RAS are being pursued for malignancies that primarily affect adults and there is a clear need for inclusion of pediatric patients in clinical trials of these agents."	"Detection of clinically relevant epidermal growth factor receptor pathway mutations in circulating cell-free tumor DNA using next generation sequencing in squamous cell carcinoma lung. Limited repertoires of targets are available in the management of squamous cell carcinoma lung. In this study, we analyzed epidermal growth factor receptor (EGFR), RAS, BRAF mutations in lung cancer patients of squamous cell histology using next-generation sequencing (NGS) on the circulating cell-free DNA (cf-DNA). In this prospective observational study, patients with squamous cell carcinoma lung, either newly diagnosed or having a progressive disease on prior therapy were eligible. Cf-DNA was extracted from peripheral blood and analyzed for EGFR, KRAS, NRAS, and BRAF mutations using NGS. Sixteen patients were enrolled over a period of 1 month. The mean cf-DNA quantity extracted from the plasma was 96.5 ng (range, 15-200 ng). Eight clinically relevant mutations in the EGFR pathway were identified. These include Exon 21 mutations in 4 patients, Exon 20 mutation in onepatient, complex mutations with coexisting Exon 21 and Exon18 in one patient and KRAS Exon 2 mutations in two patients. cf-DNA is a minimally invasive technique for detection of clinically relevant mutations in lung cancer patients. The use of novel advanced techniques such as NGS may help in detecting EGFR pathway mutations in patients with squamous cell carcinoma lung."	"Genetic landscape of adult Langerhans cell histiocytosis with lung involvement. The clinical significance of the BRAF<sup>V600E</sup> mutation in adult Langerhans cell histiocytosis (LCH), including pulmonary Langerhans cell histiocytosis (PLCH), is not well understood. Similarly, the spectrum of molecular alterations involved in adult LCH has not been fully delineated. To address these issues, we genotyped a large number of adult LCH biopsies and searched for an association of identified molecular alterations with clinical presentation and disease outcome.Biopsies from 117 adult LCH patients, 83 with PLCH (median age 36.4 years, 56 females, 38 multisystem disease, 79 single system disease, 65 current smokers) were genotyped for the BRAF<sup>V600E</sup> mutation. In 69 cases, LCH lesions were also genotyped by whole-exome sequencing (WES) or targeted gene panel next-generation sequencing (NGS). Cox models were used to estimate the association of baseline characteristics with the hazard of LCH progression.MAPK pathway alterations were detected in 59 out of 69 cases (86%) (BRAF<sup>V600E</sup> mutation: 36%, BRAF<sup>N486_P490</sup> deletion: 28%, MAP2K1 mutations: 15%, isolated NRAS<sup>Q61</sup> mutations: 4%), while KRAS mutations were virtually absent in PLCH lesions. The BRAF<sup>V600E</sup> mutation was not associated with LCH presentation at diagnosis, including smoking status and lung function, in PLCH patients. BRAF<sup>V600E</sup> status did not influence the risk of LCH progression over time.Thus, MAPK alterations are present in most lesions from adult LCH patients, particularly in PLCH. Unlike reports in paediatric LCH, BRAF<sup>V600E</sup> genotyping did not provide additional information on disease outcome. The search for alterations involved in the MAPK pathway, including BRAF deletions, is useful for guiding targeted treatment in selected patients with refractory progressive LCH."	"RAS and TP53 can predict survival in adults with T-cell lymphoblastic leukemia treated with hyper-CVAD. Adult T-cell acute lymphoblastic leukemia (T-ALL) is a heterogeneous group of acute leukemias that account for about one third of all cases of Philadelphia chromosome (Ph)-negative ALL. Recently, a molecular classifier using the mutational status of NOTCH1, FBXW7, RAS, and PTEN (NFRP) has been shown to distinguish low- vs high-risk groups in adult T-ALL patients treated using the Berlin-Frankfurt-Münster ALL protocol. However, it is unknown if this molecular classifier can stratify adult T-ALL patients treated with hyper-CVAD ± nelarabine. We identified a relatively small cohort of 27 adults with T-ALL who were uniformly treated with hyper-CVAD ± nelarabine with available mutational analysis at time of diagnosis. The most commonly mutated genes in this group were NOTCH1 (52%), NRAS (22%), DNMT3A (19%), KRAS (15%), and TP53 (7%). The NFRP molecular classifier failed to stratify overall survival (OS; P = .84) and relapse-free survival (RFS; P = .18) in this cohort. We developed a new stratification model combining K/NRAS and TP53 mutations as high-risk factors and showed that mutations in these genes predicted poorer OS (P = .03) and RFS (P = .04). While the current study is limited by cohort size, these data suggest that the NFRP molecular classifier might not be applicable to adult T-ALL patients treated with hyper-CVAD ± nelarabine. RAS/TP53 mutation status, however, was useful in risk stratification in adults with T-ALL."	"Unintended Consequences and Hidden Obstacles in Medicine Access in Sub-Saharan Africa. Many life-saving drugs are still inaccessible and unaffordable in low- and middle-income countries, particularly in Sub-Saharan Africa. This contributes to poor health outcomes, wider health and socioeconomic inequities, and higher patient spending on healthcare. While resource limitations facing national regulatory authorities (NRAs) contribute to the problem, we believe that (1) fragmented and complex drug regulations, (2) suboptimal enforcement of existing regulations, and (3) poorly designed disincentives for non-compliance play a larger role. These &quot;unintended consequences&quot; that are a direct result of our current regulatory regimes limit competition, keep drug costs high, and lead to shortages and the proliferation of illegitimate and unregistered drugs. While NRAs can gain a lot from increased investment in their work, regulatory harmonization and innovation can arrest and reverse the regulatory failures we still see today and improve medicine access in Africa. Unfortunately, harmonization initiatives in Sub-Saharan Africa have made modest impact and have done so slowly. We encourage greater attention and investment in harmonization and other downstream functions of NRAs. We also urge increased participation of national governments-particularly executive agencies in health and the treasury-and patient advocacy groups in advancing harmonization across the subcontinent."	"RAS, Cellular Plasticity, and Tumor Budding in Colorectal Cancer. The high morbidity and mortality of colorectal cancer (CRC) remain a worldwide challenge, despite the advances in prevention, diagnosis, and treatment. RAS alterations have a central role in the pathogenesis of CRC universally recognized both in the canonical mutation-based classification and in the recent transcriptome-based classification. About 40% of CRCs are KRAS mutated, 5% NRAS mutated, and only rare cases are HRAS mutated. Morphological and molecular correlations demonstrated the involvement of RAS in cellular plasticity, which is related to invasive and migration properties of neoplastic cells. RAS signaling has been involved in the initiation of epithelial to mesenchymal transition (EMT) in CRC leading to tumor spreading. Tumor budding is the morphological surrogate of EMT and features cellular plasticity. Tumor budding is clinically relevant for CRC patients in three different contexts: (i) in pT1 CRC the presence of tumor buds is associated with nodal metastasis, (ii) in stage II CRC identifies the cases with a prognosis similar to metastatic disease, and (iii) intratumoral budding could be useful in patient selection for neoadjuvant therapy. This review is focused on the current knowledge on RAS in CRC and its link with cellular plasticity and related clinicopathological features."	"Tumour location and efficacy of first-line EGFR inhibitors in KRAS/RAS wild-type metastatic colorectal cancer: retrospective analyses of two phase II randomised Spanish TTD trials. Metastatic colorectal cancer (mCRC) is a group of distinct diseases, with clinical and molecular differences between right-sided and left-sided tumours driving varying prognosis. Patients with KRAS/RAS-wild type (wt) mCRC treated in first line with epidermal growth factor receptor inhibitors (EGFR-Is) (cetuximab or panitumumab) plus oxaliplatin or irinotecan-based chemotherapy from two phase II randomised trials conducted by the Spanish Cooperative for the Treatment of Digestive Tumours group were included in this retrospective study. The main objective was to analyse the prognostic effect of primary tumour location on objective response rate (ORR), progression-free survival (PFS) and overall survival (OS). Patients with KRAS-wt right-sided tumours (n=52) had significantly lower efficacy as compared with patients with KRAS-wt left-sided tumours (n=209); confirmed ORR (25% vs 47%, respectively; OR 0.4, 95% CI 0.2 to 0.8, p=0.004); and shorter median PFS (7.2 vs 9.9 months; HR 0.6, 95% CI 0.4 to 0.9, p=0.0157) and OS (13.6 vs 27.7 months; HR 0.5, 95% CI 0.3 to 0.7, p&lt;0.0001). Similar results were observed in the RAS-wt populations. The further classification of left-sided tumours as colon or rectum delivered similar survival outcomes, as well as a tendency to diminished ORR in patients with rectum tumours. We observed significantly improved efficacy outcomes in patients with KRAS/RAS-wt mCRC treated with first-line EGFR-I plus chemotherapy in left-sided primary tumours as compared with right-sided primary tumours. NCT01161316 and NCT00885885."	"Histological and molecular diversity and heterogeneity of precancerous lesions associated with inflammatory bowel diseases. Inflammatory bowel disease (IBD)-associated precancerous lesions may be adenomatous or non-adenomatous with various histomorphologies. We aim to validate the newly proposed classification, to explore the neoplastic nature of the non-adenomatous lesions and to elucidate the molecular mechanisms underlying the different histomorphologies. 44 background precursor lesions identified in 53 cases of surgically resected IBD-associated colorectal and ileal carcinomas were reviewed for the histomorphological features (classified into adenomatous, mucinous, sessile serrated adenoma (SSA)-like, traditional serrated adenoma-like, differentiated, eosinophilic and serrated not otherwise specified (NOS)) and analysed for a key panel of colonic cancer-related molecular markers. Approximately 60% of the lesions were adenomatous, of which some had mixed serrated, mucinous or eosinophilic changes. The remaining non-adenomatous lesions, including all other types except SSA-like type, mostly showed mixed features and focal adenomatous dysplasia. KRAS mutation and p53 mutant-type expression were found in about half cases across all types, while PIK3CA mutation only in some of adenomatous and eosinophilic lesions and MLH1/PMS2 loss in a subset of adenomatous, mucinous and eosinophilic but not in differentiated and serrated lesions. SAT-B2 or PTEN loss and IMP3 overexpression were seen in a small subset of lesions. No BRAF, NRAS or EGFR gene mutation was detected in any type. Certain molecular-morphological correlations were demonstrated; however, no single or combined molecular alteration(s) was specific to any particular morphological type. IBD-associated precancerous lesions are heterogeneous both histologically and molecularly. True colitis-associated adenomatous lesions are unlikely conventional adenomas. Non-adenomatous lesions without frank cytologic dysplasia should also be regarded as neoplastic."	"Identification of Circulating Genomic and Metabolic Biomarkers in Intrahepatic Cholangiocarcinoma. Intrahepatic cholangiocarcinoma (ICC) is an aggressive cancer arising from the bile ducts with a need for earlier diagnosis and a greater range of treatment options. KRAS/NRAS mutations are common in ICC tumours and 6-32% of patients also have isocitrate dehydrogenase 1 and 2 (IDH1 and IDH2) gene mutations associated with metabolic changes. This feasibility study investigated sequencing circulating tumour DNA (ctDNA) combined with metabolite profiling of plasma as a method for biomarker discovery in ICC patients. Plasma was collected from four ICC patients receiving radio-embolisation and healthy controls at multiple time points. ctDNA was sequenced using Ampliseq cancer hotspot panel-v2 on Ion Torrent PGM for single nucleotide variants (SNV) detection and with Illumina whole genome sequencing for copy number variants (CNV) and further targeted examination for SNVs. Untargeted analysis of metabolites from patient and control plasma was performed using liquid chromatography coupled with high-resolution tandem mass spectrometry (LC-MS/MS). Metabolite identification was performed using multi-parameter comparisons with analysis of authentic standards, and univariate statistical analysis was performed to identify differences in metabolite abundance between patient and control samples. Recurrent somatic SNVs and CNVs were identified in ctDNA from three out of four patients that included both NRAS and IDH1 mutations linked to ICC. Plasma metabolite analysis revealed biomarker metabolites associated with ICC and in particular 2-hydroxyglutarate (2-HG) levels were elevated in both samples from the only patient showing a variant allele in IDH1. A reduction in the number of CNVs was observed with treatment. This study demonstrates that ctDNA and metabolite levels can be identified and correlated in ICC patient blood samples and differentiated from healthy controls. We conclude that combining genomic and metabolic analysis of plasma offers an effective approach to biomarker identification with potential for disease stratification and early detection studies."	"Blood-Based Next-Generation Sequencing Analysis of Appendiceal Cancers. Appendiceal cancers (ACs) are rare. The genomic landscape of ACs has not been well studied. The aim of this study was to confirm the feasibility of next-generation sequencing (NGS) using circulating tumor DNA (ctDNA) in ACs and characterize common genomic alterations. Molecular alterations in 372 plasma samples from 303 patients with AC using clinical-grade NGS of ctDNA (Guardant360) across multiple institutions were evaluated. Test detects single nucleotide variants in 54-73 genes, copy number amplifications, fusions, and indels in selected genes. A total of 303 patients with AC were evaluated, of which 169 (56%) were female. Median age was 56.8 (25-83) years. ctDNA NGS testing was performed on 372 plasma samples; 48 patients had testing performed twice, 9 patients had testing performed three times, and 1 patient had testing performed four times. Genomic alterations were defined in 207 (n = 207/372, 55.6%) samples, and 288 alterations were identified excluding variants of uncertain significance and synonymous mutations. Alterations were identified in at least one sample from 184 patients; TP53-associated genes (n = 71, 38.6%), KRAS (n = 33, 17.9%), APC (n = 14, 7.6%), EGFR (n = 12, 6.5%), BRAF (n = 11, 5.9%), NF1 (n = 10, 5.4%), MYC (n = 9, 4.9%), GNAS (n = 8, 4.3%), MET (n = 6, 3.3%), PIK3CA (n = 5, 2.7%), and ATM (n = 5, 2.7%). Other low-frequency but clinically relevant genomic alterations were as follows: AR (n = 4, 2.2%), TERT (n = 4, 2.2%), ERBB2 (n = 4, 2.2%), SMAD4 (n = 3, 1.6%), CDK4 (n = 2, 1.1%), NRAS (n = 2, 1.1%), FGFR1 (n = 2, 1.1%), FGFR2 (n = 2, 1.1%), PTEN (n = 2, 1.1%), RB1 (n = 2, 1.1%), and CDK6, CDKN2A, BRCA1, BRCA2, JAK2, IDH2, MAPK, NTRK1, CDH1, ARID1A, and PDGFRA (n = 1, 0.5%). Evaluation of ctDNA is feasible among patients with AC. The frequency of genomic alterations is similar to that previously reported in tissue NGS. Liquid biopsies are not invasive and can provide personalized options for targeted therapies in patients with AC. The complexity of appendiceal cancer and its unique genomic characteristics suggest that customized combination therapy may be required for many patients. Theoretically, as more oncogenic pathways are discovered and more targeted therapies are approved, customized treatment based on the patient's unique molecular profile will lead to personalized care and improve patient outcomes. Liquid biopsies are noninvasive, cost-effective, and promising methods that provide patients with access to personalized treatment."	"Single-Cell Gene Expression Analyses Reveal Distinct Self-Renewing and Proliferating Subsets in the Leukemia Stem Cell Compartment in Acute Myeloid Leukemia. Standard chemotherapy for acute myeloid leukemia (AML) targets proliferative cells and efficiently induces complete remission; however, many patients relapse and die of their disease. Relapse is caused by leukemia stem cells (LSC), the cells with self-renewal capacity. Self-renewal and proliferation are separate functions in normal hematopoietic stem cells (HSC) in steady-state conditions. If these functions are also separate functions in LSCs, then antiproliferative therapies may fail to target self-renewal, allowing for relapse. We investigated whether proliferation and self-renewal are separate functions in LSCs as they often are in HSCs. Distinct transcriptional profiles within LSCs of Mll-AF9/NRAS<sup>G12V</sup> murine AML were identified using single-cell RNA sequencing. Single-cell qPCR revealed that these genes were also differentially expressed in primary human LSCs and normal human HSPCs. A smaller subset of these genes was upregulated in LSCs relative to HSPCs; this subset of genes constitutes &quot;LSC-specific&quot; genes in human AML. To assess the differences between these profiles, we identified cell surface markers, CD69 and CD36, whose genes were differentially expressed between these profiles. In vivo mouse reconstitution assays resealed that only CD69<sup>High</sup> LSCs were capable of self-renewal and were poorly proliferative. In contrast, CD36<sup>High</sup> LSCs were unable to transplant leukemia but were highly proliferative. These data demonstrate that the transcriptional foundations of self-renewal and proliferation are distinct in LSCs as they often are in normal stem cells and suggest that therapeutic strategies that target self-renewal, in addition to proliferation, are critical to prevent relapse and improve survival in AML. SIGNIFICANCE: These findings define and functionally validate a self-renewal gene profile of leukemia stem cells at the single-cell level and demonstrate that self-renewal and proliferation are distinct in AML. GRAPHICAL ABSTRACT: http://cancerres.aacrjournals.org/content/canres/80/3/458/F1.large.jpg."	"Gene mutation profiling in Chinese colorectal cancer patients and its association with clinicopathological characteristics and prognosis. Gene mutations may play an important role in the development, response to treatment and prognosis of colorectal cancer (CRC). This retrospective study aimed to investigate the mutation profiling of Chinese patients with CRC, and its correlation with clinicopathological features and prognosis. This study included 1190 Chinese CRC patients who were diagnosed between May 1998 and December 2018 and received clinical genetic testing. The OncoCarta Panel was used to test a total of 238 possible mutations in 19 common oncogenes. Five hundred and eighty-two (48.9%) cases were detected with gene mutations. Of the 582 cases, there were 111 cases (19.7%) with two concurrent mutations, and six cases (1.0%) with three concurrent mutations. KRAS was the most common gene mutation that occurred in all cases (429, 36.1%), followed by PIK3CA (121, 10.2%), NRAS (47, 3.9%), BRAF (35, 2.9%), HRAS (11, 0.9%) and epidermal growth factor receptor (EGFR) (11, 0.9%). AKT1, KIT, FGFR1, FGFR3, FLT3, CDK, ERBB2, ABL1, MET, RET and PDGFRA mutations were also detected in several cases. When it came to prognosis, we found that KRAS/NRAS/PIK3CA/BRAF mutation was not associated with prognosis. But BRAF mutation was associated with poor prognosis in patients who accepted anti-EGFR therapy. The molecular testing offered the clinical data and mutation profile of Chinese CRC patients. The information of these mutated genes may help to find out the correlation between mutated genes and the development or prognosis of CRC."	"Intra-patient Heterogeneity of BRAF and NRAS Molecular Alterations in Primary Melanoma and Metastases. Mutations in MAPK signalling genes are driver events in melanoma, and have therapeutic relevance in the metastatic and adjuvant setting. This study evaluated the intra-patient heterogeneity of BRAF, NRAS and c-KIT mutational status between 30 primary melanomas and 39 related metastases, using molecular analysis and immunohistochemistry. BRAF mutations were identified in 46.7% of primary melanomas and 48.7% of metastases and NRAS mutations in 20% and 25.6%, respectively. Intra-patient heterogeneity was detected in 13.3% of patients for both BRAF and NRAS genes and was not associated with clinico-pathological characteristics of melanomas or metastases. High consistency was observed between immunostaining and molecular methods for BRAFV600E (k = 0.90; p &lt; 0.001) and NRASQ61R (k = 0.87; p &lt; 0.001). These findings demonstrate a relevant intra-patient heterogeneity between primary and metastatic lesions that is independent of clinical variables and methodological approach."	"Significance of RAS mutations in pulmonary metastases of patients with colorectal cancer. RAS/BRAF mutations of colorectal cancer (CRC) play a crucial role in carcinogenesis and cancer progression and need to be considered for the therapeutic strategy choice. We used next-generation-sequencing (NGS) technology to assess RAS/BRAF mutation differences between primary CRC and corresponding pulmonary metastases (PMs). We examined the mutation statuses of the KRAS 12/13/61/146, NRAS 12/13/61/146, and BRAF 600 codons in genomic DNA from fresh-frozen or formalin-fixed paraffin-embedded tissues derived from 34 primary lesions and 52 corresponding PMs from 36 patients with CRC. We found RAS mutations in 76% (26/34) of primary CRC lesions and in 86% (31/36) of PMs. While 27% (7/26) of the primary CRC RAS mutations were heterogeneous, all the RAS mutations in PMs were homogeneous. Of the mutations in PMs, 71% (22/31) were KRAS G&gt;A transitions, of which 82% (18/22) were KRAS G12D or G13D. The RAS mutation discordance between primary tumors and PMs was 12.1% (4/33). RAS mutations with the same genotyping were detected in all synchronous and metachronous PMs from 9 patients. We found no BRAF mutations in either primary or pulmonary tissues. Our NGS analysis suggests that RAS mutations of PM of patients with CRC are more common than initially thought. The presence of KRAS mutations in CRC specimens, especially G12D or G13D mutations, seems to promote PM formation."	"ctDNA detected by ddPCR reveals changes in tumour load in metastatic malignant melanoma treated with bevacizumab. Bevacizumab is included in an increasing number of clinical trials. To find biomarkers to predict and monitor treatment response, cancer and angiogenesis relevant mutations in tumour and circulating tumour DNA (ctDNA) were investigated in 26 metastatic melanoma patients treated with bevacizumab. Patients with &gt;1% BRAF/NRAS ctDNA at treatment start had significantly decreased progression free survival (PFS) and overall survival (OS) (PFS: p = 0.019, median 54 vs 774 days, OS: p = 0.026, median 209 vs 1064 days). Patients with &gt;1% BRAF/NRAS ctDNA during treatment showed similar results (PFS: p = 0.002, OS: p = 0.003). ≤1% BRAF/NRAS ctDNA and normal lactate dehydrogenase (LDH) levels both significantly predicted increased response to treatment, but BRAF/NRAS ctDNA was better at predicting response compared to LDH at treatment start (OR 16.94, p = 0.032 vs OR 4.57, p = 0.190), and at predicting PFS (HR 6.76, p = 0.002) and OS (HR 6.78, p = 0.002) during therapy. ctDNA BRAF p.V600D/E/K and NRAS p.G12V/p.Q61K/L/R were better biomarkers for response prediction than TERT promoter mutations (OR 1.50, p = 0.657). Next generation sequencing showed that all patients with ≥2 mutations in angiogenesis-relevant genes had progressive disease, but did not reveal other biomarkers identifying responders. To conclude, ctDNA and LDH are useful biomarkers for both monitoring and predicting response to bevacizumab."	"Melanoma mutations modify melanocyte dynamics in co-culture with keratinocytes or fibroblasts. Melanocytic cell interactions are integral to skin homeostasis, and affect the outcome of multiple diseases, including cutaneous pigmentation disorders and melanoma. By using automated-microscopy and machine-learning-assisted morphology analysis of primary human melanocytes in co-culture, we performed combinatorial interrogation of melanocyte genotypic variants and functional assessment of lentivirus-introduced mutations. Keratinocyte-induced melanocyte dendricity, an indicator of melanocyte differentiation, was reduced in the melanocortin 1 receptor (MC1R) R/R variant strain and by NRAS.Q61K and BRAF.V600E expression, while expression of CDK4.R24C and RAC1.P29S had no detectable effect. Time-lapse tracking of melanocytes in co-culture revealed dynamic interaction phenotypes and hyper-motile cell states that indicated that, in addition to the known role in activating mitogenic signalling, MEK-pathway-activating mutations may also allow melanocytes to escape keratinocyte control and increase their invasive potential. Expanding this combinatorial platform will identify other therapeutic target mutations and melanocyte genetic variants, as well as increase understanding of skin cell interactions."	"Neurocutaneous Melanocytosis and Leptomeningeal Melanoma. Neurocutaneous melanocytosis (NCM) is a disorder characterized by multiple or large congenital nevi and excessive proliferation of melanocytes in the leptomeninges and brain parenchyma. The majority of NCM is a result of somatic mosaicism due to a single postzygotic mutation in codon 61 of NRAS. Patients with NCM are at high risk of developing leptomeningeal melanoma. The prognosis for leptomeningeal melanoma is poor with no known effective treatment options. We describe the clinical features, treatment, and outcome of 4 children with NCM and leptomeningeal melanoma and discuss the latest molecular findings and treatment options for this rare condition."	"Changes in oncogenic protein levels in peri-implant oral malignancy: a case report. Oral squamous cell carcinoma (OSCC) constitutes a group of tumors that exhibit heterogeneous biology, histopathology, and clinical behaviors. A 73-year-old male had a whitish leukoplakia-like lesion around inflamed peri-implant area (#42, #43, and #44), and this lesion had transformed to OSCC within 3 years. He underwent mass resection, selective neck dissection, and reconstructive surgery. To detect any carcinogenesis progression, we examined the removed tumor tissue as well as the patient's preoperative and postoperative sera to identify causative oncogenic proteins using immunoprecipitation high-performance liquid chromatography (IP-HPLC). The protein expression levels of p53, E-cadherin, β-catenin, MMP-10, HER2, NRAS, Met, HER2, and ERb were significantly lower in the serum collected on postoperative day 10 than in the preoperative serum, and if these proteins are consistently not elevated in the serum 3 months after surgery compared with the preoperative serum, these proteins can be potential oncogenic proteins. However, we also found that the serum extracted 3 months after the operation had elevated levels of oncogenic proteins compared with that of the preoperative and 10-day postoperative serum indicating the possibility of tumor recurrence. At postoperative follow-up period, ipsilateral neck metastasis and second primary lesion were found and additional surgery was performed to the patient. IP-HPLC using the patient's serum shows the possibility of oncogenic protein detection. However, follow-up IP-HPLC data is needed to find out patient-specific prognostic factors."	"NRAS rs2273267 A&gt;T polymorphism reduces neuroblastoma risk in Chinese children. Neuroblastoma is an extracranial solid tumor that mainly occurs in childhood. Mutations of NRAS gene have been described in several cancers. However, whether NRAS gene polymorphisms can predict the risk of neuroblastoma have not been investigated. We hypothesized that variations of NRAS gene contribute to neuroblastoma predisposition. Therefore, we conducted a multi-center case-control study using 263 cases and 715 controls to examine the association of NRAS gene rs2273267 A&gt;T polymorphism and neuroblastoma risk. We calculated odds ratios (ORs) and corresponding 95% confidence intervals (CIs) to assess the strength of the associations. Relative to those with AA genotype, subjects with AT/TT genotype had reduced neuroblastoma risk (adjusted OR = 0.72, 95% CI = 0.54-0.96, P = 0.024). Stratified analysis revealed that rs2273267 AT/TT carriers were less likely to develop neuroblastoma for patients with tumor originating from the adrenal gland (adjusted OR = 0.67, 95% CI = 0.45-0.99, P = 0.047) and clinical stages III + IV (adjusted OR = 0.57, 95% CI = 0.36-0.90, P = 0.015). Our findings underline the likely importance of NRAS gene rs2273267 A&gt;T in the risk of neuroblastoma. Further independent case-control studies with functional analysis are needed to verify the role of NRAS gene rs2273267 A&gt;T polymorphism in the risk of neuroblastoma."	"Mutational Profile of Driver Genes in Brazilian Melanomas. Mutation testing of the key genes involved in melanoma oncogenesis is now mandatory for the application of targeted therapeutics. However, knowledge of the mutational profile of melanoma remains largely unknown in Brazil. In this study, we assessed the mutation status of melanoma driver genes BRAF, NRAS, TERT, KIT, and PDGFRA in a cohort of 459 patients attended at Barretos Cancer Hospital between 2001 and 2012. We used polymerase chain reaction followed by Sanger sequencing to analyze the hot spot mutations of BRAF exon 15 (V600E), NRAS (codons 12/13 and 61), TERT (promoter region), KIT (exons 9, 11, 13, and 17), and PDGFRA (exons 12, 14, and 18) in tumors. The mutational profile was investigated for associations with demographic, histopathologic, and clinical features of the disease. The nodular subtype was most frequent (38.9%) followed by the superficial spreading subtype (34.4%). The most frequent tumor location was in the limbs (50.0%). The mutation rates were 34.3% for TERT and 34.1% for BRAF followed by NRAS (7.9%), KIT (6.2%), and PDGFRA (2.9%). The BRAF (P = .014) and TERT (P = .006) mutations were associated with younger patients and with different anatomic locations, particularly in the trunk, for the superficial spreading and nodular subtypes, respectively (P = .0001 for both). PDGFRA mutations were associated with black skin color (P = .023) and TERT promoter mutations with an absence of ulceration (P = .037) and lower levels of lactate dehydrogenase. There was no association between patient survival rates and mutational status. The similar mutational profile we observe in melanomas in Brazil compared with other populations will help to guide precision medicine in this country."	"Conjunctival melanoma with orbital invasion and liver metastasis managed with systemic immune checkpoint inhibitor therapy. A 60-year-old Caucasian female was referred for biopsy-proven amelanotic orbito-conjunctival melanoma. Map biopsies revealed residual invasive melanoma on the deep tarsal margin at the site of previous surgery. Repeat excisions were required after recurrence was detected following 3 months and 7 months. Positron emission tomography scan detected liver metastasis and additional orbito-conjunctival melanoma recurrence. Biomarker testing showed NRAS mutation without BRAF or c-KIT mutations and without PD-L1 expression. Systemic checkpoint inhibitor therapy was initiated with regression of both the orbito-conjunctival melanoma and liver metastasis. Invasive, non resectable orbito-conjunctival melanoma with liver metastasis can demonstrate a response to systemic checkpoint inhibitor therapy."	"Principles of Targeted Therapy for Melanoma. Targeted BRAF and MEK inhibition has become an appropriate first-line treatment of BRAF-mutant advanced cutaneous melanoma. The authors present an overview of the MAPK pathway as well as the other major pathways implicated in melanoma development. Melanoma brain metastases are a devastating complication of melanoma that can be traced to derangements in cell signaling pathways, and the current evidence for targeted therapy is reviewed. Finally, activating KIT mutations are rarely found to cause melanomas and may provide an actionable target for therapy. The authors review the current evidence for targeted KIT therapy and summarize the ongoing clinical trials."	"VEGF-A and ICAM-1 Gene Polymorphisms as Predictors of Clinical Outcome to First-Line Bevacizumab-Based Treatment in Metastatic Colorectal Cancer. Bevacizumab is used to treat metastatic colorectal cancer (mCRC). However, there are still no available predictors of clinical outcomes. We investigated selected single nucleotide polymorphisms (SNPs) in the genes involved in VEGF-dependent and -independent angiogenesis pathways and other major intracellular signaling pathways involved in the pathogenesis of mCRC as an attempt to find predictors of clinical outcome. Forty-six patients treated with first-line bevacizumab-based chemotherapy were included in this study with a 5 year follow up. Genomic DNA was isolated from whole blood for the analysis of VEGF-A (rs2010963, 1570360, rs699947), ICAM-1 (rs5498, rs1799969) SNPs and from tumor tissue for the detection of genomic variants in KRAS, NRAS, BRAF genes. PCR and next generation sequencing were used for the analysis. The endpoints of the study were progression-free survival (PFS) and overall survival (OS). The VEGF-A rs699947 A/A allele was associated with increased PFS (p = 0.006) and OS (p = 0.043). The ICAM-1 rs1799969 G/A allele was associated with prolonged OS (p = 0.036). Finally, BRAF wild type was associated with increased OS (p = 0.027). We identified VEGF-A and ICAM-1 variants in angiogenesis and other major intracellular signaling pathways, such as BRAF, that can predict clinical outcome upon bevacizumab administration. These identified biomarkers could be used to select patients with mCRC who may achieve long-term responses and benefit from bevacizumab-based therapies."	"Molecular and IHC analysis of head and neck carcinomas associated with HPV infection. Head and neck squamous cell carcinomas (HNSCC) are a highly heterogenous disease which can be induced by two main carcinogens - tobacco and/or alcohol, or by HR HPV infection. This work examined 60 paraffin-embedded biopsies of head and neck carcinomas after histological verification. HPV infection, including its specific types in various HNSCC areas, was studied using multiplex qPCR. Expression levels of p16INK4A and p53 were detected by subsequent IHC analysis as being potential diagnostic markers. Based on the assumption that patients with HNSCC could benefit from anti-EGFR therapy (cetuximab), but the predictors are not yet defined, analyses of point mutations of ras genes (Kras, Nras) were carried out using multiplex qPCR and sequence analysis of the Braf gene. All statistical data were processed by Chí-x2 test.HPV infection was detected in 23.34 % of cases with HNSCC, of which 100 % were HPV 16, which is the most frequently infection found in the oropharyngeal region. Using IHC analysis, a positive expression of P16INK4A was detected in 100 % of HPV-positive HNSCC while this expression was discovered to be highly correlated with HPV infection. Furthermore, a correlation between p53 and HPV-negative HNSCC was proved. The mutation incidence was the highest in the Kras gene (codon 12 and codon 146), Nras (codon 12) and Braf. A correlation between tumor location in the oropharyngeal region and Kras mutations was proved. The HPV infection correlated with Kras mutations in case of codon 146 but on the grounds of low amount of output data, these figures could be irrelevant. In one case, c.1808 G&gt;A, protein 603 Arg&gt;Gln mutation was found in the Braf gene but its correlation with head and neck carcinomas has not been described yet (Tab. 2, Fig. 2, Ref. 24). Keywords: head and neck carcinomas, biopsy, HPV types, PCR, p16INK4A, p53, molecular predictors, Kras, Nras, Braf."	"Quantitative monitoring of circulating tumor DNA in patients with advanced pancreatic cancer undergoing chemotherapy. According to cancer genome sequences, more than 90% of cases of pancreatic ductal adenocarcinoma (PDAC) harbor active KRAS mutations. Digital PCR (dPCR) enables accurate detection and quantification of rare mutations. We assessed the dynamics of circulating tumor DNA (ct-DNA) in patients with advanced PDAC undergoing chemotherapy using dPCR. KRAS G12/13 mutation was assayed by dPCR in 47 paired tissue- and ct-DNA samples. The 21 patients were subjected to quantitative ct-DNA monitoring at 4 to 8-week intervals during chemotherapy. KRAS mutation was detected in 45 of those 47 patients using tissue DNA. In the KRAS mutation-negative cases, next-generation sequencing revealed KRAS Q61K and NRAS Q61R mutations. KRAS mutation was detected in 23/45 cases using ct-DNA (liver or lung metastasis, 18/19; mutation allele frequency [MAF], 0.1%-31.7%; peritoneal metastasis, 3/9 [0.1%], locally advanced, 2/17 [0.1%-0.2%]). In the ct-DNA monitoring, the MAF value changed in concordance with the disease state. In the 6 locally advanced cases, KRAS mutation appeared concurrently with liver metastasis. Among the 6 cases with liver metastasis, KRAS mutation disappeared during the duration of stable disease or a partial response, and reappeared at the time of progressive disease. The median progression-free survival was longer in cases in which KRAS mutation disappeared after an initial course of chemotherapy than in those in which it was continuously detected (248.5 vs 50 days, P &lt; .001). Therefore, ct-DNA monitoring enables continuous assessment of disease state and could have prognostic utility during chemotherapy."	"A Versatile ES Cell-Based Melanoma Mouse Modeling Platform. The cumbersome and time-consuming process of generating new mouse strains and multiallelic experimental animals often hinders the use of genetically engineered mouse models (GEMM) in cancer research. Here, we describe the development and validation of an embryonic stem cell (ESC)-GEMM platform for rapid modeling of melanoma in mice. The platform incorporates 12 clinically relevant genotypes composed of combinations of four driver alleles (LSL-Braf<sup>V600E</sup>, LSL-Nras<sup>Q61R</sup>, Pten<sup>Flox</sup>, and Cdkn2a<sup>Flox</sup>) and regulatory alleles to spatiotemporally control the perturbation of genes of interest. The ESCs produce high-contribution chimeras, which recapitulate the melanoma phenotypes of conventionally bred mice. Using the ESC-GEMM platform to modulate Pten expression in melanocytes in vivo, we highlighted the utility and advantages of gene depletion by CRISPR-Cas9, RNAi, or conditional knockout for melanoma modeling. Moreover, complementary genetic methods demonstrated the impact of Pten restoration on the prevention and maintenance of Pten-deficient melanomas. Finally, we showed that chimera-derived melanoma cell lines retain regulatory allele competency and are a powerful resource to complement ESC-GEMM chimera experiments in vitro and in syngeneic grafts in vivo Thus, when combined with sophisticated genetic tools, the ESC-GEMM platform enables rapid, high-throughput, and versatile studies aimed at addressing outstanding questions in melanoma biology.Significance: This study presents a high-throughput and versatile ES cell-based mouse modeling platform that can be combined with state-of-the-art genetic tools to address unanswered questions in melanoma in vivoSee related commentary by Thorkelsson et al., p. 655."	"Molecular Profiling of Noncoding Mutations Distinguishes Nevoid Melanomas From Mitotically Active Nevi in Pregnancy. The accurate recognition of subtle melanomas and their distinction from benign mimics is an oft-recurring diagnostic problem, critical for patient management. Melanomas that bear resemblance to benign nevi (so-called nevoid melanomas, NMs) and benign mitotically active nevi in pregnancy (MANP) are 2 lesions particularly prone to error. Molecular data, including analysis of noncoding regions, in MANP and NM are very limited. This study sought to identify differences in clinical, pathologic, and molecular characteristics between MANP and NMs to facilitate correct diagnosis and reduce the risk of overtreatment or undertreatment. Clinicopathologic characteristics of NM (n=18) and MANP (n=30) were evaluated, and mutation data were analyzed using next-generation sequencing for available cases in each group (NM, n=8; MANP, n=12). All MANP showed innocent histopathologic characteristics apart from increased mitotic activity, frequently in both superficial and deep parts of the lesion (median dermal mitotic rate: 2/mm, range: 1 to 7/mm). All cases of NM demonstrated a characteristic nevoid silhouette, subtle atypical architectural and cytologic features, and variable mitoses (median mitotic rate: 3/mm, range: 1 to 5/mm). Median NM tumor thickness was 1.4 mm. Four of 10 NM patients with follow-up had metastatic disease, including 3 patients who developed widespread metastases, with 1 disease-related death. No other recurrences have been identified (follow-up period: 24 to 60 mo). None of the 15 MANP patients with available follow-up had a recurrence. Most NMs harbored hotspot mutations in NRAS (6/8, 75%). Noncoding mutations were significantly more common in NMs than in MANP (median: 4 vs. 0, P=0.0014). Copy number alterations were infrequent but, when present, were seen in NMs (3/8 NMs vs. 0/12 MANP). All NMs but only 1 of 12 MANP had &gt;1 abnormality in the noncoding regions. Similar to conventional common acquired nevi, MANP mostly harbored driver BRAF mutations, while activating NRAS mutations, noncoding mutations, and copy number alterations were rare. NM and MANP have subtle but recognizable distinguishing histopathologic characteristics that are underpinned by molecular differences. Mutation analysis of targeted noncoding mutations may assist in the diagnosis of difficult lesions."	"Chemical complementarity between immune receptor CDR3s and IDH1 mutants correlates with increased survival for lower grade glioma. Focusing on highly specific aspects of the immune response is likely to answer a number of basic questions, and in some cases even resolve basic contradictions, in cancer immunology. For example, there are many cases, where chronic inflammation is associated with cancer development, and many other cases where an immune response represents an anticancer process. In this study, using bioinformatics algorithms, we examined the chemical relationships between the amino acid sequences of the complementarity-determining region-3 (CDR3) represented by immune receptors associated with lower grade glioma and isocitrate dehydrogenase-1 (IDH1) mutants. In particular, we developed a chemical complementarity scoring approach to classify tumors based on the complementarity of CDR3s and mutant IDH1 amino acids, relying on net charge per residue and hydropathy parameters. There was a strong correlation between the increased survival in low-grade glioma (LGG) and complementarity of IDH1 mutants to the CDR3 domain of the T-cell receptor beta chain (TRB). Similar results were obtained for TRB CDR3s and NRAS mutants in melanoma. Furthermore, the clear connection between increased survival rates and immune receptor-IDH1 mutant complementarities may also, partially, explain the better LGG prognosis for patients with IDH1 mutants."	"Non-del(5q) myelodysplastic syndromes-associated loci detected by SNP-array genome-wide association meta-analysis. Myelodysplastic syndromes (MDS) are hematopoietic stem cell malignancies. Known predisposing factors to adult MDS include rare germline mutations, cytotoxic therapy, age-related clonal hematopoiesis, and autoimmune or chronic inflammatory disorders. To date, no published studies characterizing MDS-associated germline susceptibility polymorphisms exist. We performed a genome-wide association study of 2 sample sets (555 MDS cases vs 2964 control subjects; 352 MDS cases vs 2640 control subjects) in non-del(5q) MDS cases of European genomic ancestry. Meta-analysis identified 8 MDS-associated loci at 1q31.1 (PLA2G4A), 3p14.1 (FAM19A4), 5q21.3 (EFNA5), 6p21.33, 10q23.1 (GRID1), 12q24.32, 15q26.1, and 20q13.12 (EYA2) that approached genome-wide significance. Gene expression for 5 loci that mapped within or near genes was significantly upregulated in MDS bone marrow cells compared with those of control subjects (P &lt; .01). Higher PLA2G4A expression and lower EYA2 expression were associated with poorer overall survival (P = .039 and P = .037, respectively). Higher PLA2G4A expression is associated with mutations in NRAS (P &lt; .001), RUNX1 (P = .012), ASXL1 (P = .007), and EZH2 (P = .038), all of which are known to contribute to MDS development. EYA2 expression was an independently favorable risk factor irrespective of age, sex, and Revised International Scoring System score (relative risk, 0.67; P = .048). Notably, these genes have regulatory roles in innate immunity, a critical driver of MDS pathogenesis. EYA2 overexpression induced innate immune activation, whereas EYA2 inhibition restored colony-forming potential in primary MDS cells indicative of hematopoietic restoration and possible clinical relevance. In conclusion, among 8 suggestive MDS-associated loci, 5 map to genes upregulated in MDS with functional roles in innate immunity and potential biological relevance to MDS."	"NPY Gene Methylation as a Universal, Longitudinal Plasma Marker for Evaluating the Clinical Benefit from Last-Line Treatment with Regorafenib in Metastatic Colorectal Cancer. There is a need for biomarkers to improve the clinical benefit from systemic treatment of colorectal cancer. We designed a prospective, clinical study where patients receiving regorafenib as last-line treatment had sequential blood samples drawn. Effect and toxicity was monitored. The primary clinical endpoint was progression free survival (PFS). Cell-free circulating tumor (ct) DNA was measured as either the fraction with Neuropeptide Y (NPY) methylated DNA or KRAS/NRAS/BRAF mutated ctDNA. One hundred patients were included from three Danish centers. Among 95 patients who received regorafenib for at least two weeks, the median PFS was 2.1 months (95% confidence interval (CI) 1.8-3.3) and the median overall survival (OS) was 5.2 months (95% CI 4.3-6.5). Grade 3-4 toxicities were reported 51 times, most frequently hypertension, hand-food syndrome, and skin rash. In the biomarker population of 91 patients, 49 could be monitored using mutated DNA and 90 using methylated DNA. There was a strong correlation between mutated and methylated DNA. The median survival for patients with a level of methylated ctDNA above the median was 4.3 months compared to 7.6 months with ctDNA below the median, p &lt; 0.001. The median time from increasing methylated ctDNA to disease progression was 1.64 months (range 0.46-8.38 months). In conclusion, NPY methylated ctDNA was a universal liquid biopsy marker in colorectal cancer patients treated with regorafenib. High baseline levels correlated with short survival and changes during treatment may predict early effect and later progression. We suggest plasma NPY methylation analysis as an easy and universally applicable method for longitudinal monitoring of ctDNA in metastatic colorectal cancer patients."	"Human Papillomavirus Infection, p16<sup>INK4a</sup> Expression and Genetic Alterations in Vietnamese Cervical Neuroendocrine Cancer. Neuroendocrine cervical cancer is a rare subtype of cervical cancer with a highly aggressive malignancy. This study was conducted to analyse the human papillomavirus (HPV) infection and molecular abnormalities in Vietnamese neuroendocrine carcinomas of the uterine cervix. HPV genotyping and p53 mutations were examined using polymerase chain reaction (PCR)-based direct sequencing. Mutations of epidermal growth factor receptor (EGFR), Kirsten rat sarcoma (KRAS), neuroblastoma RAS viral oncogene homolog (NRAS) and v-Raf murine sarcoma viral oncogene homolog B (BRAF) were identified using commercial kits. Four high-risk HPV genotypes were identified in 26 (86.7%) out of a total of 30 tumours. The prevalence of HPV 16, 18, 31 and 45 was 20.0%, 50.0%, 20.0% and 36.7%, respectively. Overexpression of p16<sup>INK4a</sup> was observed in 93.3% of cases and was significantly correlated with high-risk HPV infections. Furthermore, p53 and NRAS mutations were detected in five (16.7%) and one (3.3%) cases, respectively, whereas no EGFR, KRAS or BRAF mutations were observed. These results demonstrate that high-risk HPV infection may be an important oncogenic factor for the development and progression of cervical neuroendocrine carcinoma."	"Coaltered Ras/B-raf and TP53 Is Associated with Extremes of Survivorship and Distinct Patterns of Metastasis in Patients with Metastatic Colorectal Cancer. We aimed to investigate genomic correlates underlying extremes of survivorship in metastatic colorectal cancer and their applicability in informing survival in distinct subsets of patients with metastatic colorectal cancer. We examined differences in oncogenic somatic alterations between metastatic colorectal cancer cohorts demonstrating extremes of survivorship following complete metastasectomy: ≤2-year (n = 17) and ≥10-year (n = 18) survivors. Relevant genomic findings, and their association with overall survival (OS), were validated in two independent datasets of 935 stage IV and 443 resected stage I-IV patients. In the extremes-of-survivorship cohort, significant co-occurrence of KRAS hotspot mutations and TP53 alterations was observed in ≤2-year survivors (P &lt; 0.001). When validating these findings in the independent cohort of 935 stage IV patients, incorporation of the cumulative effect of any oncogenic Ras/B-raf (i.e., either KRAS, NRAS, or BRAF) and TP53 alteration generated three prognostic clusters: (i) TP53-altered alone (median OS, 132 months); (ii) Ras/B-raf-altered alone (65 months) or Ras/B-raf- and TP53 pan-wild-type (60 months); and (iii) coaltered Ras/B-raf-TP53 (40 months; P &lt; 0.0001). Coaltered Ras/B-raf-TP53 was independently associated with mortality (HR, 2.47; 95% confidence interval, 1.91-3.21; P &lt; 0.001). This molecular profile predicted survival in the second independent cohort of 443 resected stage I-IV patients. Coaltered Ras/B-raf-TP53 was associated with worse OS in patients with liver (n = 490) and lung (n = 172) but not peritoneal surface (n = 149) metastases. Moreover, coaltered Ras/B-raf-TP53 tumors were significantly more likely to involve extrahepatic metastatic sites with limited salvage options. Genomic analysis of extremes of survivorship following colorectal cancer metastasectomy identifies a prognostic role for coaltered Ras/B-raf-TP53 and its association with distinct patterns of colorectal cancer metastasis."	"Accurate detection of KRAS, NRAS and BRAF mutations in metastatic colorectal cancers by bridged nucleic acid-clamp real-time PCR. Patients with metastatic colorectal cancer can benefit from anti-EGFR therapy, such as cetuximab and panitumumab. However, colorectal cancers harboring constitutive activating mutations in KRAS, NRAS and BRAF genes are not responsive to anti-EGFR therapy. To select patients for appropriate treatment, genetic testing of these three genes is routinely performed. We applied bridged nucleic acid-clamp real-time PCR (BNA-clamp PCR) to detect somatic hotspot mutations in KRAS, NRAS and BRAF. PCR products from BNA-clamp PCR were subsequently analyzed Sanger sequencing. We then compared results with those from the PCR-reverse sequence-specific oligonucleotide probe (PCR-rSSO) method, which has been used as in vitro diagnostic test in Japan. To validate the mutation status, we also performed next generation sequencing using all samples. In 50 formalin-fixed paraffin-embedded tissues, KRAS mutations were detected at frequencies of 50% (25/50) and 52% (26/50) by PCR-rSSO and BNA-clamp PCR with Sanger sequencing, respectively, and NRAS mutations were detected at 12% (6/50) and 12% (6/50) by PCR-rSSO and BNA-clamp PCR with Sanger sequencing, respectively. The concordance rate for detection of KRAS and NRAS mutations between the two was 94% (47/50). However, there were three discordant results. We validated these three discordant and 47 concordant results by next generation sequencing. All mutations identified by BNA-clamp PCR with Sanger sequencing were also identified by next generation sequencing. BNA-clamp PCR detected BRAF mutations in 6% (3/50) of tumor samples. Our results indicate that BNA-clamp PCR with Sanger sequencing detects somatic mutations in KRAS, NRAS and BRAF with high accuracy."	"KRAS/NRAS/BRAF Mutations as Potential Targets in Multiple Myeloma. In multiple myeloma the mutational profile is mainly represented by translocations involving chromosome 14 and by single nucleotide mutations, frequently involving genes implicated in the mitogen activated protein kinase (MAPK) pathway, as KRAS, NRAS, and, less frequently, BRAF. Because KRAS/NRAS/BRAF mutations are associated with a higher number of mutations per patient, we hypothesize that this group of patients could benefit from therapy with checkpoint inhibitors because of the higher frequency of neo-antigens that this group would present. This might also true for IMiD therapy, because of their activatory effect on T cells. Because, KRAS/NRAS/BRAF are members of the MAPK pathway, this subgroup of patients would also benefit from inhibitors of MAPK, either directly on the specific mutation or through downstream targeting of MEK1/2 or ERK1/2 to account for a possible compensatory collateral signaling that might activate as response to upstream inhibition."	"Microsatellite Instability in Greek Colorectal Carcinoma Patients: Clinicopathological and Molecular Correlations. In the present retrospective study, we assessed the molecular profile and clinicopathological correlations of Greek colorectal carcinoma (CRC) patients. Data from 157 CRC patients were collected. High Resolution Melting Analysis and Pyrosequencing/Sanger sequencing were applied to identify KRAS, BRAF, NRAS mutations and microsatellite instability (MSI) status. Immunohistochemistry was performed to characterize the associated Mismatch Repair Protein loss. Statistical calculations were performed using the statistical package SPSS v21.0. KRAS mutations were detected in 39.3% of cases, BRAF in 10.9% and NRAS in 4.9%. MSI status was recognized in 11.5% of CRC patients and was associated with right colon tumors. MSI phenotype was inversely correlated with stage, N status and KRAS mutations and positively correlated with BRAF mutations. MSI positive CRCs in the Greek population are more often right-sided, free of metastasis, KRAS wild type and BRAF mutated. Providing more detailed clinicopathological and molecular data for specific populations will enable better clinical management and individualized therapy in the future."	"Cooperation of Dnmt3a R878H with Nras G12D promotes leukemogenesis in knock-in mice: a pilot study. DNMT3A R882H, a frequent mutation in acute myeloid leukemia (AML), plays a critical role in malignant hematopoiesis. Recent findings suggest that DNMT3A mutant acts as a founder mutation and requires additional genetic events to induce full-blown AML. Here, we investigated the cooperation of mutant DNMT3A and NRAS in leukemogenesis by generating a double knock-in (DKI) mouse model harboring both Dnmt3a R878H and Nras G12D mutations. DKI mice with both Dnmt3a R878H and Nras G12D mutations were generated by crossing Dnmt3a R878H knock-in (KI) mice and Nras G12D KI mice. Routine blood test, flow cytometry analysis and morphological analysis were performed to determine disease phenotype. RNA-sequencing (RNA-seq), RT-PCR and Western blot were carried out to reveal the molecular mechanism. The DKI mice developed a more aggressive AML with a significantly shortened lifespan and higher percentage of blast cells compared with KI mice expressing Dnmt3a or Nras mutation alone. RNA-seq analysis showed that Dnmt3a and Nras mutations collaboratively caused abnormal expression of a series of genes related to differentiation arrest and growth advantage. Myc transcription factor and its target genes related to proliferation and apoptosis were up-regulated, thus contributing to promote the process of leukemogenesis. This study showed that cooperation of DNMT3A mutation and NRAS mutation could promote the onset of AML by synergistically disturbing the transcriptional profiling with Myc pathway involvement in DKI mice."	"Integrated phosphoproteomics and transcriptional classifiers reveal hidden RAS signaling dynamics in multiple myeloma. A major driver of multiple myeloma (MM) is thought to be aberrant signaling, yet no kinase inhibitors have proven successful in the clinic. Here, we employed an integrated, systems approach combining phosphoproteomic and transcriptome analysis to dissect cellular signaling in MM to inform precision medicine strategies. Unbiased phosphoproteomics initially revealed differential activation of kinases across MM cell lines and that sensitivity to mammalian target of rapamycin (mTOR) inhibition may be particularly dependent on mTOR kinase baseline activity. We further noted differential activity of immediate downstream effectors of Ras as a function of cell line genotype. We extended these observations to patient transcriptome data in the Multiple Myeloma Research Foundation CoMMpass study. A machine-learning-based classifier identified surprisingly divergent transcriptional outputs between NRAS- and KRAS-mutated tumors. Genetic dependency and gene expression analysis revealed mutated Ras as a selective vulnerability, but not other MAPK pathway genes. Transcriptional analysis further suggested that aberrant MAPK pathway activation is only present in a fraction of RAS-mutated vs wild-type RAS patients. These high-MAPK patients, enriched for NRAS Q61 mutations, have inferior outcomes, whereas RAS mutations overall carry no survival impact. We further developed an interactive software tool to relate pharmacologic and genetic kinase dependencies in myeloma. Collectively, these predictive models identify vulnerable signaling signatures and highlight surprising differences in functional signaling patterns between NRAS and KRAS mutants invisible to the genomic landscape. These results will lead to improved stratification of MM patients in precision medicine trials while also revealing unexplored modes of Ras biology in MM."	"Safety and effectiveness of regorafenib in patients with metastatic colorectal cancer in routine clinical practice in the prospective, observational CORRELATE study. Regorafenib prolonged overall survival (OS) versus placebo in patients with treatment-refractory metastatic colorectal cancer (mCRC) in phase III trials. We conducted an observational study of regorafenib for patients with mCRC in real-world clinical practice. The international, prospective, CORRELATE study recruited patients with mCRC previously treated with approved therapies, for whom the decision to treat with regorafenib was made by the treating physician according to the local health authority approved label. The primary objective was safety, assessed by treatment-emergent adverse events (TEAEs; National Cancer Institute Common Terminology Criteria for Adverse Events, version 4.03). A total of 1037 patients were treated. The median age was 65 years (range: 24-93); 87% of patients had Eastern Cooperative Oncology Group performance status 0-1, 56% of patients had KRAS, 7% had NRAS and 4% had BRAF mutations. The initial regorafenib dose was 160 mg/day in 57% of patients. The most common grade III or IV drug-related TEAEs were fatigue (9%), hand-foot skin reaction (7%) and hypertension (6%). Drug-related grade V (fatal) TEAEs occurred in 1% of patients. Dose reductions for drug-related TEAEs occurred in 24% of patients. Median OS was 7.7 months (95% confidence interval [CI]: 7.2-8.3), and median progression-free survival (PFS) was 2.9 months (95% CI: 2.8-3.0). In this real-world, observational study of patients with mCRC, the regorafenib toxicity profile was similar to that reported in phase III trials. The starting dose for almost half of patients was less than the approved 160-mg dose, and the median OS and PFS were in the range observed in phase III trials. NCT02042144."	"Hereditary spastic paraplegia masqueraded by congenital melanocytic nevus syndrome: Dual pathogenesis of germline non-mosaicism and somatic mosaicism. Neurocutaneous disorders are caused by germline and/or somatic mutations and involve the integument and central nervous systems. Congenital melanocytic nevus syndrome is characterized by melanotic skin lesions caused by somatic mutations at codon 61 in NRAS. A large cutaneous lesion raises the risk of central nervous system involvement. We report an 8-year-old girl with a congenital giant pigmented nevus that covered almost her entire back. Despite the absence of any radiological evidence of intracranial melanosis, the patient exhibited progressive limb spasticity with preserved intellectual ability. An extensive genetic analysis identified a specific class of heterozygous germline mutation in SPAST, p.(Arg499His), which is responsible for hereditary spastic paraplegia with infantile onset. In addition, a known heterozygous somatic mutation in NRAS, p.(Gln61Lys) was detected in the cutaneous lesion. This observation recapitulates concomitant mosaicism and non-mosaicism within a single individual and suggests that the possibility of a dual genetic diagnosis should be considered when neurological decline is observed in a patient with a neurocutaneous disorder without any detectable intracranial lesions."	"NRAS associated RASopathy and embryonal rhabdomyosarcoma. RASopathies are a group of phenotypically overlapping disorders that arise from dysregulation of the RAS/MAPK pathway. These disorders include Noonan syndrome, Costello syndrome, cardiofaciocutaneous syndrome, and neurofibromatosis-Type 1. While somatic mutations in the three human Ras genes (KRAS, HRAS, and NRAS) are a common finding in a variety of cancers, germline mutations in each of the these genes cause developmental RASopathy phenotypes with mutations in specific genes typically correlating with specific phenotypes. We present the case of a germline heterozygous NRAS mutation producing a severe phenotype involving embryonal rhabdomyosarcoma, severe intellectual disability, and numerous melanocytic nevi in addition to more typical manifestations of Noonan syndrome. Additionally, the specific p.G12R NRAS mutation in this case is a common somatic mutation in cancer cells, and analysis of previously reported NRAS-RASopathy cases suggests that mutations at traditionally oncogenic codons are associated with elevated cancer risk not present with mutations at other sites."	"miR-144 suppresses cell proliferation and migration in colorectal cancer by targeting NRAS. Colorectal cancer (CRC) is a type of malignant cancer that has become particularly prevalent worldwide. It is of crucial importance to CRC treatment that the underlying molecular mechanism of CRC progression is determined. The NRAS gene is an important small G protein that is involved in various biological processes, including cancers. NRAS is an oncogene in many neoplasms but its function and regulation in CRC have seldom been investigated. In this study, it was uncovered that the NRAS protein was significantly upregulated in CRC tissues. According to a bioinformatics prediction, we identified that miR-144 may target NRAS to suppress its expression. In vitro experiments indicated that miR-144 decreased NRAS expression in different CRC cell lines (SW480, LoVo, and Caco2). By inhibiting NRAS, miR-144 repress SW480 cell proliferation and migration. Moreover, miR-144 decelerated the growth of SW480 xenograft tumors in vivo by targeting NRAS. In summary, our results identified a novel miR-144-NRAS axis in CRC that could promote the research and treatment of CRC."	"Melittin inhibits proliferation, migration and invasion of bladder cancer cells by regulating key genes based on bioinformatics and experimental assays. The antitumour effect of melittin (MEL) has recently attracted considerable attention. Nonetheless, information regarding the functional role of MEL in bladder cancer (BC) is currently limited. Herein, we investigated the effect of MEL on critical module genes identified in BC. In total, 2015 and 4679 differentially expressed genes (DEGs) associated with BC were identified from the GSE31189 set and The Cancer Genome Atlas database, respectively. GSE-identified DEGs were mapped and analysed using Gene Ontology and Kyoto Encyclopaedia of Genes and Genomes analyses to determine BC-involved crucial genes and signal pathways. Coupled with protein-protein interaction network and Molecular Complex Detection analyses, Modules 2 and 4 were highlighted in the progression of BC. In in-vitro experiments, MEL inhibited the proliferation, migration, and invasion of UM-UC-3 and 5637 cells. The expression of NRAS, PAK2, EGFR and PAK1 in Module 4-enriched in the MAPK signalling pathway-was significantly reduced after treatment with MEL at concentrations of 4 or 6 μg/mL. Finally, quantitative reverse transcription-polymerase chain reaction and Western blotting analyses revealed MEL inhibited the expression of genes at the mRNA (ERK1/2, ERK5, JNK and MEK5), protein (ERK5, MEK5, JNK and ERK1/2) and phosphorylation (p-ERK1/2, p-JNK, and p-38) levels. This novel evidence indicates MEL exerts effects on the ERK5-MAK pathway-a branch of MAPK signalling pathway. Collectively, these findings provide a theoretical basis for MEL application in BC treatment."	"Mutational and Immunophenotypic Profiling of a Series of 8 Tubo-ovarian Carcinosarcomas Revealed a Monoclonal Origin of the Disease. Carcinosarcomas are rare, highly aggressive neoplasms composed of a combination of carcinomatous and sarcomatous elements. These tumors represent a paradigmatic field for the study of intratumor heterogeneity. A series of 8 tubo-ovarian carcinosarcomas was characterized for the following: (i) immunohistochemical expression of MNF116, epithelial membrane antigen, vimentin, S100, chromogranin, synaptophysin, desmin, myogenin (MYF4), and p53; (ii) mutational profiling of KRAS, BRAF, PIK3CA, NRAS, TP53, and DICER1 genes. Heterologous differentiation was present in 6 of 8 tumors. Cytokeratin MNF116 and epithelial membrane antigen were positive in all the carcinomatous components and in 87.5% and 50.0% of the sarcomatous components, respectively. The sarcomatous components showed positive staining for vimentin in all cases. Two cases demonstrated positivity for neuroendocrine markers in their carcinomatous components. All rhabdomyosarcomas were positive for desmin and MYF-4. Chondrosarcomas were positive for S100. All but one tumor showed similar p53 immunoreactivity in both the carcinomatous and sarcomatous components, and one case showed cytoplasmic p53 expression. Three of 8 cases (37.5%) showed TP53 mutations, and, in 2 cases, the TP53 mutation was shared by both epithelial and mesenchymal components. DICER1 mutation was found in all components of one case. Mutations in KRAS, NRAS, BRAF, and PIK3CA genes were not found in the study cohort. Our results highlight the heterogeneity of ovarian carcinosarcomas at the phenotypic level. A common mutational signature was observed in both components in 3 of 4 informative tumors. More studies are required to dissect different levels of ovarian carcinosarcomas' heterogeneity in order to define the best therapeutic approaches to these aggressive neoplasms."	"Concomitant deletion of HRAS and NRAS leads to pulmonary immaturity, respiratory failure and neonatal death in mice. We reported previously that adult (HRAS<sup>-/-</sup>; NRAS<sup>-/-</sup>) double knockout (DKO) mice showed no obvious external phenotype although lower-than-expected numbers of weaned DKO animals were consistently tallied after crossing NRAS-KO and HRAS-KO mice kept on mixed genetic backgrounds. Using mouse strains kept on pure C57Bl/6 background, here we performed an extensive analysis of the offspring from crosses between HRAS-KO and NRAS-KO mice and uncovered the occurrence of very high rates of perinatal mortality of the resulting DKO littermates due to respiratory failure during the first postnatal 24-48 h. The lungs of newborn DKO mice showed normal organ structure and branching but displayed marked defects of maturation including much-reduced alveolar space with thick separating septa and significant alterations of differentiation of alveolar (AT1, AT2 pneumocytes) and bronchiolar (ciliated, Clara cells) cell lineages. We also observed the retention of significantly increased numbers of undifferentiated progenitor precursor cells in distal lung epithelia and the presence of substantial accumulations of periodic acid-Schiff-positive (PAS+) material and ceramide in the lung airways of newborn DKO mice. Interestingly, antenatal dexamethasone treatment partially mitigated the defective lung maturation phenotypes and extended the lifespan of the DKO animals up to 6 days, but was not sufficient to abrogate lethality in these mice. RNA microarray hybridization analyses of the lungs of dexamethasone-treated and untreated mice uncovered transcriptional changes pointing to functional and metabolic alterations that may be mechanistically relevant for the defective lung phenotypes observed in DKO mice. Our data suggest that delayed alveolar differentiation, altered sphingolipid metabolism and ceramide accumulation are primary contributors to the respiratory stress and neonatal lethality shown by DKO mice and uncover specific, critical roles of HRAS and NRAS for correct lung differentiation that are essential for neonatal survival and cannot be substituted by the remaining KRAS function in this organ."	"Conjunctival Melanoma: Genetic and Epigenetic Insights of a Distinct Type of Melanoma. Conjunctival melanoma (CjM) is a rare, primary cancer of the ocular region. Genetic and epigenetic characteristics of conjunctival melanoma have not been completely elucidated yet. Conjunctival melanoma presents similarities with cutaneous melanoma, with substantial differences in the biological behavior. We reviewed the genetic and epigenetic insights of CjM involved in invasion and metastatic spread. CjM is commonly characterized by mutations of v-raf murine sarcoma viral oncogene homolog B1 (BRAF), neurofibromin 1 (NF1) and telomerase reverse transcriptase (TERT), high expression of mammalian target of rapamycin (mTOR) and heat shock protein 90 (HSP90), frequent phosphatase and tensin homolog (PTEN) loss and upregulation of specific miRNAs. These features should identify CjM as a distinct subset of melanoma with its own profile, which is more similar to cutaneous melanoma than mucosal melanoma and remarkably different from uveal melanoma."	"A Comparative Analysis of Individual RAS Mutations in Cancer Biology. In human cells, three closely related RAS genes, termed HRAS, KRAS, and NRAS, encode four highly homologous proteins. RAS proteins are small GTPases involved in a broad spectrum of key molecular and cellular activities, including proliferation and survival among others. Gain-of-function missense mutations, mostly located at codons 12, 13, and 61, constitutively activate RAS proteins and can be detected in various types of human cancers. KRAS is the most frequently mutated, followed by NRAS and HRAS. However, each isoform exhibits distinctive mutation frequency at each codon, supporting the hypothesis that different RAS mutants may lead to distinct biologic manifestations. This review is focused on the differences in signaling and phenotype, as well as on transcriptomics, proteomics, and metabolomics profiles related to individual RAS-mutated variants. Additionally, association of these mutants with particular targeted outcomes and rare mutations at additional RAS codons are discussed."	"Clinical significance of BRAF/NRAS concurrent mutations in a clinic-based metastatic melanoma cohort. NA"	"YAP1 Mediates Resistance to MEK1/2 Inhibition in Neuroblastomas with Hyperactivated RAS Signaling. Relapsed neuroblastomas are enriched with activating mutations of the RAS-MAPK signaling pathway. The MEK1/2 inhibitor trametinib delays tumor growth but does not sustain regression in neuroblastoma preclinical models. Recent studies have implicated the Hippo pathway transcriptional coactivator protein YAP1 as an additional driver of relapsed neuroblastomas, as well as a mediator of trametinib resistance in other cancers. Here, we used a highly annotated set of high-risk neuroblastoma cellular models to modulate YAP1 expression and RAS pathway activation to test whether increased YAP1 transcriptional activity is a mechanism of MEK1/2 inhibition resistance in RAS-driven neuroblastomas. In NLF (biallelic NF1 inactivation) and SK-N-AS (NRAS Q61K) cell lines, trametinib caused a near-complete translocation of YAP1 protein into the nucleus. YAP1 depletion sensitized neuroblastoma cells to trametinib, while overexpression of constitutively active YAP1 protein induced trametinib resistance. Mechanistically, significant enhancement of G1-S cell-cycle arrest, mediated by depletion of MYC/MYCN and E2F transcriptional output, sensitized RAS-driven neuroblastomas to trametinib following YAP1 deletion. These findings underscore the importance of YAP activity in response to trametinib in RAS-driven neuroblastomas, as well as the potential for targeting YAP in a trametinib combination. SIGNIFICANCE: High-risk neuroblastomas with hyperactivated RAS signaling escape the selective pressure of MEK inhibition via YAP1-mediated transcriptional reprogramming and may be sensitive to combination therapies targeting both YAP1 and MEK."	"Revised criteria for diagnosis of NIFTP reveals a better correlation with tumor biological behavior. The recent reclassification of a follicular variant of papillary thyroid carcinoma (FVPTC), subset as noninvasive follicular thyroid neoplasm with papillary-like nuclear features (NIFTP), aims to avoid overtreatment of patients with an indolent lesion. The diagnosis of NIFTP has recently been revisited using more rigid criteria. This study presents histological and molecular findings and a long clinical follow-up of 94 FVPTC, 40 cases of follicular adenoma (FTA) and 22 cases of follicular carcinoma (FTC) that were classified before the advent of the NIFTP reclassification. All slides were reviewed using these rigid criteria and analysis of numerous sections of paraffin blocks and reclassified as 7 NIFTPs, 2 EFVPTCs, 29 infiltrative FVPTC (IFVPTCs), 57 invasive EFVPTC (I-EFVPTCs), 39 FTAs and 22 FTCs. Remarkably, EFVPTC and NIFTP patients were all free of disease at the end of follow-up and showed no BRAF mutation. Only one NIFTP sample harbored mutations, an NRAS Q61R. PAX8/PPARG fusion was found in I-EFVPTCs and FTC. Although additional studies are needed to identify a specific molecular profile to aid in the diagnosis of lesions with borderline morphological characteristics, we confirmed that the BRAF V600E mutation is an important tool to exclude the diagnosis of NIFTP. We also show that rigorous histopathological criteria should be strongly followed to avoid missing lesions in which more aggressive behavior is present, mainly via the analysis of capsule or vascular invasion and the presence of papillary structures."	"Whole-Exome Sequencing of Matched Primary and Metastatic Papillary Thyroid Cancer.  Background:  Distant metastasis is a rare occurrence in thyroid cancer, and it can be associated with poor prognosis. The genomic repertoires of various solid malignancies have previously been reported but remain underexplored in metastatic papillary thyroid cancer (PTC). Furthermore, whether distant metastases harbor distinct genetic alterations beyond those observed in primary tumors is unknown.  Methods:  We performed whole-exome sequencing on 14 matched distant metastases, primary PTC tumors, and normal tissues. Point mutations, copy number alterations, cancer cell fractions, and mutational signatures were defined using the state-of-the-art bioinformatics methods. All likely deleterious variants were validated by orthogonal methods.  Results:  Genomic differences were observed between primary and distant metastatic deposits, with a median of 62% (range 21-92%) of somatic mutations detected in metastatic tissues, but absent from the corresponding primary tumor sample. Mutations in known driver genes including BRAF, NRAS, and HRAS were shared and preferentially clonal in both sites. However, likely deleterious variants affecting DNA methylation and transcriptional repression signaling genes including SIN3A, RBBP1, and CHD4 were found to be restricted in the metastatic lesions. Moreover, a mutational signature shift was observed between the mutations that are specific or enriched in the metastatic and primary lesions.  Conclusions:  Primary PTC and distant metastases differ in their range of somatic alterations. Genomic analysis of distant metastases provides an opportunity to identify potentially clinically informative alterations not detected in primary tumors, which might influence decisions for personalized therapy in PTC patients with distant metastasis."	"Genomic analysis reveals low tumor mutation burden which may be associated with GNAQ/11 alteration in a series of primary leptomeningeal melanomas. Primary central nervous system melanoma is rare and characterized by a variable prognosis, and no current treatment guidelines exist. We describe the clinical course of a 70-year-old female patient diagnosed with primary leptomeningeal melanoma (LMN) whose case represents the diagnostic and management challenges of this tumor. Targeted genomic sequencing of 315 genes from this tumor revealed GNAQ Q209L mutation and low (4 mutations/Megabase) tumor mutation burden (TMB). Wild-type NRAS, KIT, and BRAF were also observed. A cohort of 4,787 melanomas was subsequently analyzed to identify additional primary central nervous system melanomas, of which 10 additional tumors met pathologic criteria (0.21% of total melanoma cohort). These tumors were genomically assessed according to the same targeted sequencing panel, and 6 of the tumors were also found to harbor a GNAQ mutation. All 10 tumors had low (less than or equal to 2 mutations/Megabase) TMB indicating a potential trend between G-protein-coupled receptor (GPCR) alterations and low TMB in LMNs. GPCR alterations were found to significantly correlate with TMB across the cohort of 4,787 melanomas, supporting this potential finding in the limited LMN subset."	"miR-29a Is Repressed by MYC in Pancreatic Cancer and Its Restoration Drives Tumor-Suppressive Effects via Downregulation of LOXL2. Pancreatic ductal adenocarcinoma (PDAC) is an intractable cancer with a dismal prognosis. miR-29a is commonly downregulated in PDAC; however, mechanisms for its loss and role still remain unclear. Here, we show that in PDAC, repression of miR-29a is directly mediated by MYC via promoter activity. RNA sequencing analysis, integrated with miRNA target prediction, identified global miR-29a downstream targets in PDAC. Target enrichment coupled with gene ontology and survival correlation analyses identified the top five miR-29a-downregulated target genes (LOXL2, MYBL2, CLDN1, HGK, and NRAS) that are known to promote tumorigenic mechanisms. Functional validation confirmed that upregulation of miR-29a is sufficient to ablate translational expression of these five genes in PDAC. We show that the most promising target among the identified genes, LOXL2, is repressed by miR-29a via 3'-untranslated region binding. Pancreatic tissues from a PDAC murine model and patient biopsies showed overall high LOXL2 expression with inverse correlations with miR-29a levels. Collectively, our data delineate an antitumorigenic, regulatory role of miR-29a and a novel MYC-miR-29a-LOXL2 regulatory axis in PDAC pathogenesis, indicating the potential of the molecule in therapeutic opportunities. IMPLICATIONS: This study unravels a novel functional role of miR-29a in PDAC pathogenesis and identifies an MYC-miR-29a-LOXL2 axis in regulation of the disease progression, implicating miR-29a as a potential therapeutic target for PDAC. VISUAL OVERVIEW: http://mcr.aacrjournals.org/content/molcanres/18/2/311/F1.large.jpg."	"[Pyogenic granuloma with satellitosis]. A 16-year-old female developed a satellite-like recurrence of a pyogenic granuloma on her thorax 2 weeks after complete excision. Treatment with a pulsed dye laser led to a complete resolution. BRAF and RAS mutations detected in the pyogenic granuloma are considered major driver mutations. Whether these findings are also of importance for the etiopathogenesis of satellitosis is unknown. In our patient, no BRAF or NRAS mutation could be detected."	"The mutational landscape of mucosal melanoma. Mucosal melanoma is a rare and aggressive subtype of melanoma that has a less favorable prognosis due to the lack of understanding and identification of oncogenic drivers. Recently, whole genome and whole exome sequencing have unveiled the molecular landscape and potential oncogenic drivers of mucosal melanoma, which remains distinct from cutaneous melanoma. In this review, we provide an overview of the genomic landscape of mucosal melanoma, with a focus on molecular studies identifying potential oncogenic drivers allowing for a better mechanistic understanding of the biology of mucosal melanoma. We summarized the published genomics and clinical data supporting the observations that mucosal melanoma harbors distinct genetic alterations and oncogenic drivers from cutaneous melanoma, and thus should be treated accordingly. The common drivers (BRAF and NRAS) found in cutaneous melanoma have lower mutation rate in mucosal melanoma. In contrast, SF3B1 and KIT have higher mutation rate in mucosal melanoma as compared to cutaneous melanoma. From the meta-analysis, we also observed that the mutational profiles are slightly different between the &quot;upper&quot; and &quot;lower&quot; regions of mucosal melanoma, providing new insights and therapeutic options for the mucosal melanoma patients. Mutations identified in mucosal melanoma should be incorporated into routine clinical testing, as there are targeted therapies already developed for treating patients with these mutations in the precision medicine era."	"Integrative Exome and Transcriptome Analysis of Conjunctival Melanoma and Its Potential Application for Personalized Therapy. Greater understanding of molecular features of conjunctival melanoma (CM) may improve its clinical management. To evaluate molecular features of CM and application of this information into clinical care. In a prospective case series of CM with integrative exome and transcriptome analysis, 8 patients at an academic ocular oncology setting were evaluated. The study was conducted from November 2015 to March 2018. Integrative exome and transcriptome analysis of CMs and clinical management of a patient's care by using this information. Molecular characterization of CM and its potential clinical application. In the 8 patients (4 men) included in analysis, 4 subgroups of CM were observed, including the BRAF V600E mutation in 1 tumor, NRAS Q61R mutation in 3 tumors, NF1 mutations (Q1188X, R440X, or M1215K+ S15fs) in 3 tumors, and triple-wild type (triple-WT) in 1 tumor. The triple-WT case had CCND1 amplification and mutation in the CIC gene (Q1508X). Five tumors, including the triple-WT, also harbored mutations in MAPK genes. In addition to the genes linked to mitogen-activated protein kinase and phosphoinositol 3-kinase pathways, those involved in cell cycle and/or survival, ubiquitin-mediated protein degradation, and chromatin remodeling/epigenetic regulation (ATRX being the most frequently mutated: noted in 5 tumors) may play an important role. Other frequently mutated genes included PREX2 (n = 3), APOB (n = 4), and RYR1/2 (n = 4), although their relevance remains to be determined. The mutation burden ranged from 1.1 to 15.6 mutations per megabase (Mut/Mb) and was 3.3 Mut/Mb or less in 3 tumors and more than 10 Mut/Mb in 2 tumors. A patient with a large tumor and BRAF V600E mutation was treated with combined systemic BRAF (dabrafenib) and MEK (trametinib) inhibitors. After 3 months of therapy, her CM responded substantially and the residual tumor was removed by local surgical excision. The NRAS Q61R and NF1 mutations were more common than the BRAF V600E mutation in this series. Although small tumors (where incisional biopsy is not indicated) are treated with surgical excision regardless of mutational profile, in large tumors carrying the BRAF V600E mutation, neoadjuvant therapy with combined systemic BRAF and MEK inhibitors followed by local excision may be used as an alternative to exenteration. Integrative omics analysis of CM may be informative and guide clinical management and treatment in selected cases."	"Regulation of large and small G proteins by ubiquitination. Many sensory and chemical signal inputs are transmitted by intracellular GTP-binding (G) proteins. G proteins make up two major subfamilies: &quot;large&quot; G proteins comprising three subunits and &quot;small&quot; G proteins, such as the proto-oncogene product RAS, which contains a single subunit. Members of both subfamilies are regulated by post-translational modifications, including lipidation, proteolysis, and carboxyl methylation. Emerging studies have shown that these proteins are also modified by ubiquitination. Much of our current understanding of this post-translational modification comes from investigations of the large G-protein α subunit from yeast (Gpa1) and the three RAS isotypes in humans, NRAS, KRAS, and HRAS. Gα undergoes both mono- and polyubiquitination, and these modifications have distinct consequences for determining the sites and mechanisms of its degradation. Genetic and biochemical reconstitution studies have revealed the enzymes and binding partners required for addition and removal of ubiquitin, as well as the delivery and destruction of both the mono- and polyubiquitinated forms of the G protein. Complementary studies of RAS have identified multiple ubiquitination sites, each having distinct consequences for binding to regulatory proteins, shuttling to and from the plasma membrane, and degradation. Here, we review what is currently known about these two well-studied examples, Gpa1 and the human RAS proteins, that have revealed additional mechanisms of signal regulation and dysregulation relevant to human physiology. We also compare and contrast the effects of G-protein ubiquitination with other post-translational modifications of these proteins."	"Mutations of RAS genes in endometrial polyps. Endometrial polyps are common, yet the molecular mechanisms underlying their formation and progression remain unclear. We examined gene mutations possibly related to the pathogenesis of endometrial polyps, as well as to their clinical features. Four premenopausal patients with endometrial polyps, who were not under drug treatment, were recruited. Whole exomes of endometrial polyps and peripheral blood lymphocytes were analyzed by next‑generation sequencing, and somatic mutations were derived by subtraction. Then, 35 samples of endometrial polyps and 12 samples of atypical polypoid adenomyoma were newly recruited to validate the identified mutations by polymerase chain reaction‑reverse sequence specific oligonucleotide method. The mutations were also analyzed in separate stromal and glandular components of the polyps after laser‑capture microdissection. Whole exome sequencing revealed that KRAS mutations were the only type of mutation detectable in multiple cases (2/4). Targeted mutation analysis revealed that 16 of 35 samples (45.7%) of endometrial polyps harbored RAS mutations. Mutation‑positive cases exhibited a significantly higher number of endometrial polyps (3.25±2.70 vs. 1.74±0.87, P=0.045). Laser‑capture microdissection in NRAS‑mutated endometrial polyps revealed that both stromal and glandular components harbored RAS mutations. There was no RAS mutation in 12 samples of atypical polypoid adenomyoma. This is the first report demonstrating that pathogenic RAS mutations are frequent in non‑treated endometrial polyps. RAS mutations may have an important role in tumorigenesis and in the formation of multiple endometrial polyps."	"MicroRNA‑4500 suppresses tumor progression in non‑small cell lung cancer by regulating STAT3. Research has revealed that microRNA (miR)‑4500 is downregulated in non‑small cell lung cancer (NSCLC), and miR‑4500 suppresses tumor growth by targeting lin‑28 homolog B and NRAS proto‑oncogene, GTPase. In the present study, it was reported that signal transducer and activator of transcription 3 (STAT3) may function as a novel target gene for miR‑4500 in NSCLC. The experiments conducted in the present study confirmed that the miR‑4500 expression was decreased in NSCLC tissues and cells compared with adjacent normal tissues and a normal lung cell line. miR‑4500 suppressed the cell proliferation, migration, invasion and promoted apoptosis of the human NSCLC cell lines A549 and H1975. Expression of STAT3 was negatively correlated with miR‑4500 expression in vivo. A luciferase reporter assay suggested that miR‑4500 directly targeted the 3' untranslated region of STAT3. The tumor inhibition effect of small interfering RNA STAT3 in A549 and H1975 lines may be partially impaired by a miR‑4500 inhibitor. The results of the present study suggests that miR‑4500 may be a tumor suppressor and a potential therapeutic target in NSCLC."	"Mitogen-Activated Protein Kinase Pathway Inhibition for Redifferentiation of Radioiodine Refractory Differentiated Thyroid Cancer: An Evolving Protocol.  Background:  Some patients with metastatic differentiated thyroid cancer (DTC) lack iodine avidity and are therefore unsuitable for radioactive iodine (RAI) therapy. Limited experience suggests that single-agent selective mitogen-activated protein kinase (MAPK) pathway inhibitors can restore expression of the sodium-iodide symporter rendering RAI refractory (RAIR) DTC patients amenable to RAI therapy. The aim of this study was to assess the feasibility of mutation-guided MAPK-pathway blockade combined with thyroid hormone withdrawal (THW) for redifferentiation.  Methods:  This is a retrospective review of metastatic RAIR DTC and driver mutation in MAPK pathway, treated on a redifferentiation protocol. All patients had metastatic disease that had never been RAI-avid and/or imaging and biochemical progression despite treatment with RAI within the past 12 months. Patients with tumors harboring an NRAS mutation were treated with an MEK inhibitor (trametinib), and tumors with a BRAF<sup>V600E</sup> mutation with combined BRAF and MEK inhibition (dabrafenib and trametinib; or vemurafenib and cobimetinib) for four weeks. Thyrotropin stimulation was performed by THW for four weeks. Restoration of RAI uptake was determined by <sup>124</sup>I positron emission tomography/computed tomography imaging. The response was assessed at least three months post-RAI.  Results:  From 2015 to 2017, six patients (age 45-70, four females) received redifferentiation therapy. Three patients had an NRAS mutation; two with follicular thyroid carcinoma (FTC) and one with a poorly differentiated thyroid carcinoma (PDTC); and three patients had a BRAF<sup>V600E</sup> mutation and papillary thyroid carcinoma (PTC). One NRAS and all BRAF<sup>V600E</sup> mutation cases demonstrated restoration of RAI uptake and proceeded to RAI therapy with a median follow-up of 16.6 months (range 13.5-42.3 months). The patient with an NRAS mutation and two of three patients with a BRAF<sup>V600E</sup> demonstrated partial imaging response beyond a three-month follow-up. Grade 3 adverse events (acneiform rash) were observed in two patients with NRAS mutations.  Conclusions:  Mutation-guided MAPK pathway inhibition with MEK inhibitor or a combination of BRAF inhibitor and MEK inhibitor under concurrent THW is a feasible and a promising strategy to redifferentiate RAIR DTC, thereby rendering them suitable for RAI therapy with satisfactory retention following treatment."	"Acute Promyelocytic Leukemia: Update on the Mechanisms of Leukemogenesis, Resistance and on Innovative Treatment Strategies. This review highlights new findings that have deepened our understanding of the mechanisms of leukemogenesis, therapy and resistance in acute promyelocytic leukemia (APL). Promyelocytic leukemia-retinoic acid receptor α (PML-RARa) sets the cellular landscape of acute promyelocytic leukemia (APL) by repressing the transcription of RARa target genes and disrupting PML-NBs. The RAR receptors control the homeostasis of tissue growth, modeling and regeneration, and PML-NBs are involved in self-renewal of normal and cancer stem cells, DNA damage response, senescence and stress response. The additional somatic mutations in APL mainly involve FLT3, WT1, NRAS, KRAS, ARID1B and ARID1A genes. The treatment outcomes in patients with newly diagnosed APL improved dramatically since the advent of all-trans retinoic acid (ATRA) and arsenic trioxide (ATO). ATRA activates the transcription of blocked genes and degrades PML-RARα, while ATO degrades PML-RARa by promoting apoptosis and has a pro-oxidant effect. The resistance to ATRA and ATO may derive from the mutations in the RARa ligand binding domain (LBD) and in the PML-B2 domain of PML-RARa, but such mutations cannot explain the majority of resistances experienced in the clinic, globally accounting for 5-10% of cases. Several studies are ongoing to unravel clonal evolution and resistance, suggesting the therapeutic potential of new retinoid molecules and combinatorial treatments of ATRA or ATO with different drugs acting through alternative mechanisms of action, which may lead to synergistic effects on growth control or the induction of apoptosis in APL cells."	"Extended Molecular Profiling Improves Stratification and Prediction of Survival After Resection of Colorectal Liver Metastases. The aim of this study was to assess the effect of cancer-related genes and their mutations analyzed by next-generation sequencing (NGS) on the oncological outcome after resection of colorectal liver metastases (CRLM). Traditional prognostic scores include clinical and pathological parameters of primary tumor and metastases. The modified clinical risk score (m-CS), based on size of metastases, primary tumor nodal status, and RAS mutation status outperformed traditional scores. We hypothesized to further improve the scoring system based on the results of NGS. Cancer tissues of 139 patients with CRLM were used for NGS. The work-up included the analysis of recurrent somatic mutations and copy number changes of 720 genes. Clinical data were extracted from a prospectively collected institutional liver database. Depending on significance, the following cancer-related genes and their alterations (%) were further investigated: APC (86%), TP53 (78%), KRAS (29%), SMAD4 (15%), PIK3CA (14%), BRAF (8%), ERBB2 (6%), SMAD3 (5%), SMAD2 (4%), and NRAS (4%). The most predictive parameters for poor oncological outcome were alterations in the SMAD family (P = 0.0186) and RAS-RAF pathway (P = 0.032). Refining the m-CS by replacing RAS with RAS-RAF pathway and adding SMAD family resulted in an extended clinical risk score which is highly predictive for oncological outcome (P &lt; 0.0001). In conclusion, mutations of the SMAD family revealed a strong prognostic effect after surgery for CRLM. Integration of alterations of the SMAD family as well as the RAS/RAF pathway resulted in a new, still simple but highly prognostic score."	"Oculoectodermal Syndrome - Encephalocraniocutaneous Lipomatosis Associated with NRAS Mutation. NA"	"BRAF and NRAS mutations and antitumor immunity in Korean malignant melanomas and their prognostic relevance: Gene set enrichment analysis and CIBERSORT analysis. Cutaneous malignant melanomas (CMMs) are rare but are the cause of the highest skin cancer-related mortality in Korea. Very few studies have investigated the associations between KRAS, NRAS, BRAF, and PIK3CA mutations and TICs, as well as their prognostic impact on Korean CMMs. Peptide nucleic acid-mediated polymerase chain reaction clamping and Mutyper and immunohistochemistry were used to detect these mutations in 47 paraffinized CMMs. BRAF and NRAS mutations were detected in 21.3% and 12.8% of CMMs, respectively. No KRAS or PIK3CA mutations were identified. NRAS mutations correlated with low FOXP3 (regulatory T lymphocyte marker) and indoleamine 2,3-dioxygenase (IDO) (activated dendritic cell marker) TICs in CMMs, which is consistent with the negative correlation of regulatory T cells with NRAS mutations in TCGA data, while BRAF mutations were not associated with any TICs. In gene set enrichment analysis, BRAF and NRAS mutations were enriched in decreased CD8 (suppressor/cytotoxic T lymphocyte marker) T cell-linked and increased CD4 (helper/inducer T lymphocyte marker) T cell-linked gene signatures, respectively, confirming the trend in our cohort of associations only with NRAS. BRAF or NRAS mutations alone did not affect any prognosis. In the subgroup analyses, BRAF mutations, as well as high CD4, CD8, FOXP3, and IDO TICs, caused worse overall survival in NRAS-mutated melanoma. No correlation of CD163 (monocyte-macrophage-specific marker) was detected. We found that approximately one-third of our cohort had BRAF and NRAS mutations, none had KRAS or PIK3CA mutations, and most displayed decreased anti-tumor immunity. These findings may warrant further study on combined immunotherapeutic and molecular targeted therapy in Korean CMMs. Subgroup analyses according to TICs and BRAF/NRAS mutations may help to identify high-risk patients with worse prognoses."	"Molecular mutations as a possible factor for determining extent of thyroid surgery. Molecular testing of thyroid nodules is a diagnostic tool used to better understand the nature of thyroid nodules. The aim of this study is to better comprehend the relationship between specific mutations and aggressive behavior of the tumour as demonstrated on postoperative pathological analysis. A retrospective chart review of 103 cases was performed. Included were patients who had undergone molecular testing using a panel that tests for 9 mutations (ThyGenX®) and were found to have malignant tumours. The following gene alterations were found pre-operatively in the nodules: BRAF V600E (n = 32), BRAF K601E (n = 4), NRAS (n = 11), HRAS (n = 4), KRAS (n = 3), RET/PTC1 rearrangement (n = 1), TERT promoter (n = 2), PAX8-PPARγ rearrangement (n = 1), and 45 cases where no mutation was detected. Aggressive behavior was defined by extra-thyroidal extension (ETE), lymph node metastasis (LN+), and the following variants of papillary thyroid carcinoma: tall cell, solid, diffuse sclerosing, columnar cell and hobnail. Chi-squared testing was performed to compare groups. The group with BRAF V600E, RET/PTC1 rearrangement, and TERT promoter mutations was associated with ETE 37.1%, and LN+ 45.7% of the time compared to 4.3 and 13.0% in the group with other mutations, and 4.4 and 4.4% in the group with no mutations (p-value 0.02, p-value &lt; 0.001, p-value 0.006). In addition, the BRAF V600E, RET/PTC1 rearrangement, and TERT mutations group demonstrated tall cell variants (17.1%), columnar cell variants (5.7%), and hobnail variants (3%). The other mutations group demonstrated columnar cell variants (4.3%), and the no mutations group demonstrated solid variants (2.2%). In this study, BRAF V600E, RET/PTC1 rearrangement, and TERT mutations were associated with aggressive behaving thyroid malignancies as defined above. Molecular testing may be a useful method to anticipate aggressive tumour types and therefore assist in planning the extent and timing of surgery."	"Clinical Application of Next-Generation Sequencing as A Liquid Biopsy Technique in Advanced Colorectal Cancer: A Trick or A Treat? Owing to its advantages over prior relevant technologies, massive parallel or next-generation sequencing (NGS) is rapidly evolving, with growing applications in a wide range of human diseases. The burst in actionable molecular alterations in many cancer types advocates for the practicality of using NGS in the clinical setting, as it permits the parallel characterization of multiple genes in a cost- and time-effective way, starting from low-input DNA. In advanced clinical practice, the oncological management of colorectal cancer requires prior knowledge of KRAS, NRAS, and BRAF status, for the design of appropriate therapeutic strategies, with more gene mutations still surfacing as potential biomarkers. Tumor heterogeneity, as well as the need for serial gene profiling due to tumor evolution and the emergence of novel genetic alterations, have promoted the use of liquid biopsies-especially in the form of circulating tumor DNA (ctDNA)-as a promising alternative to tissue molecular analysis. This review discusses recent studies that have used plasma NGS in advanced colorectal cancer and summarizes the clinical applications, as well as the technical challenges involved in adopting this technique in a clinically beneficial oncological practice."	"The Importance of microRNAs in RAS Oncogenic Activation in Human Cancer. microRNAs (miRNAs) regulate gene expression by modulating the translation of protein-coding RNAs. Their aberrant expression is involved in various human diseases, including cancer. Here, we summarize the experimental pieces of evidence that proved how dysregulated miRNA expression can lead to RAS (HRAS, KRAS, or NRAS) activation irrespective of their oncogenic mutations. These findings revealed relevant pathogenic mechanisms as well as mechanisms of resistance to target therapies. Based on this knowledge, potential approaches for the control of RAS oncogenic activation can be envisioned."	"[Coexisting Mutations in IDH1/2-Mutated Acute Myeloid Leukemia]. To explore the coexisting mutations in IDH-mutated acute myeloid leukemia(AML) and its relation with partial clinical parametrs. The exon 4 mutation of IDH1/2 gene was screened by using genome DNA-PCR combined with sanger sequencing, 51 targeted gene mutations in the patients with IDH1/2 mutation were detected by using high throughput DNA sequencing combined with sanger sequencing. Among 358 patients, the IDH1/2 mutation was found in 46 cases including IDH1 mutation in 35 cases and IDH2 mutation in 11 cases, 97.87%(45/46) patients with IDH1/2 mutation simultaneously carried other gene mutations including 8(17.8%) cases with mutation of double gene, 17(37.8%) cases with mutation of 3 genes and 20(44.4%) cases with mutation of ≥ 4 genes. The mutation frequency of each patient averaged 3.52 times. In mutation of accompanied genes, the common genes were NPM1(n=29, 63.0%), next DNMT3A(n=25, 54.3%), FLT3-ITD(n=7, 15.2%), TET2(n=5, 10.9%) and NRAS(n=5, 10.9%). The average WBC level of patients with NPM1 mutation in IDH1 mutation group was higher than that of patients in wild type group(P&lt;0.05). The complete remission (CR) rate of patients with DNMT3A mutation was significant lower than that of patients with wild type (30% vs 80%, P&lt;0.01). The presence of ≥ 4 mutations was found to be significantly associated with higher white blood level than that in the patients with double mutations(P&lt;0.05). More than 95% AML patients with IDH1/2 mutation commonly show additional mutations. The number and the type of IDH coexisting mutations have certain effect on the clinical features and CR rate. 急性髓系白血病中与IDH1/2突变共存的基因突变分析. 探讨急性髓系白血病(AML)患者中与IDH1/2突变共存的基因突变及其与部分临床参数的相关性。. 采用基因组DNA-PCR联合Sanger测序法筛选IDH1/2基因4号外显子突变;采用高通量DNA测序联合Sanger测序法检测IDH1/2突变患者51种肿瘤靶基因突变. 358例患者中共检出46例IDH1/2突变,其中35例IDH1突变,11例IDH2突变。97.8%(45/46)IDH1/2突变患者同时携带其他基因突变,其中双基因突变8例,3个基因突变共存17例,≥4个基因突变共存20例。每例患者平均突变3.52次。伴随基因突变中最常见的基因为NPM1(n=29,63.0%),其他依次为: DNMT3A(n=25,54.3%)、FLT3-ITD(n=7,15.2%)、TET2(n=5,10.9%)及NRAS(n=5,10.9%)。在IDH1突变组中,伴NPM1突变者的平均外周血白细胞水平高于正常者,伴DNMT3A突变患者的CR率明显低于正常者,差异均有统计学意义(P=0.034,0.003);≥4个基因突变患者的白细胞水平明显高于双基因突变者,差异显著(P=0.037). 95%以上伴IDH1/2突变的AML患者同时存在额外基因突变,基因突变个数及突变类型对患者的临床特征及CR率有一定的影响."	"High MET Overexpression Does Not Predict the presence of MET exon 14 Splice Mutations in NSCLC: Results From the IFCT PREDICT.amm study. MET proto-oncogene (MET) exon 14 splice site (METex14) mutations were recently described in NSCLC and has been reported to correlate with efficacy of MET tyrosine kinase inhibitors. High diversity of these alterations makes them hard to detect by DNA sequencing in clinical practice. Because METex14 mutations induce increased stabilization of the MET receptor, it is anticipated that these mutations are associated with MET overexpression. We aim to determine whether NSCLC with high MET overexpression could define a subset of patients with a high rate of METex14 mutations. From The French Cooperative Thoracic Intergroup PREDICT.amm cohort of 843 consecutive patients with a treatment-naive advanced NSCLC who were eligible for a first-line therapy, 108 NSCLC samples with high MET overexpression defined by an immunochemistry score 3+ were tested for METex14 mutations using fragment length analysis combined with optimized targeted next-generation sequencing. MET copy number analysis was also derived from the sequencing data. METex14 mutations were detected in two patients (2.2%) who also displayed a TP53 mutation and a PIK3CA mutation, respectively. An MET gene copy number increase was observed in seven additional patients (7.7%). Next-generation sequencing analysis revealed inactivating mutations in TP53 (52.7%) and PTEN (1.1%), and oncogenic mutations in KRAS (28.6%), EGFR (7.7%), PIK3CA (4.4%), BRAF (4.4%), NRAS (2.2%), GNAS (1.1%), and IDH1 (1.1%). The rate of METex14 mutations in NSCLC with high MET overexpression was similar to that found in unselected NSCLC. Moreover, we observed a high frequency of driver alterations in other oncogenes. Consequently these findings do not support the use of MET immunohistochemistry as a surrogate marker for METex14 mutations."	"Genomic profiling of cell-free circulating tumor DNA in patients with colorectal cancer and its fidelity to the genomics of the tumor biopsy. Liquid biopsy offers the ability to non-invasively analyze the genome of a tumor through circulating tumor DNA (ctDNA) to identify targetable and prognostic genomic alterations. Few studies have rigorously analyzed ctDNA results and determined the fidelity with which they recapitulate the genomics of a sequenced tissue sample obtained from the same tumor. The clinical utility study (CUS) for the FoundationACT™ ctDNA assay (Foundation Medicine, Cambridge, MA, USA; NCT02620527) is a multi-center prospective clinical study for multiple solid tumor types to compare genomic profiling of paired tissue and blood samples from the same patient. In this subset of the study, paired specimens from 96 patients with colorectal cancer (CRC) were analyzed with comprehensive genomic profiling (CGP) of the tumor tissue sample (FoundationOne<sup>®</sup>) and blood sample (FoundationACT™). Both samples underwent CGP using the hybrid capture-based Illumina Hi-Seq technology. Maximum somatic allele frequency (MSAF) was used to estimate the fraction of ctDNA in the sample. The set of genes and targeted regions common to both tumor and liquid were compared for each subject. Among these patients, 61% were male; 74% had clinical stage IV disease, 19% had clinical stage III disease, and 7% had clinical stage II disease. Time between the tissue biopsy and liquid biopsy (range, 0-709 days) had a significant impact on the positive percent agreement (PPA) between the two assays. Eighty percent of cases had evidence of ctDNA in the blood (MSAF &gt;0). For all cases with MSAF &gt;0, 171 base substitutions and insertions/deletions (indels) were identified in the tumor, and 79% (PPA) of these identical alterations were also identified in matched ctDNA samples; PPA increased to 87% for cases &lt;270 days between the tissue and liquid biopsy, 95% for &lt;90 days, and 100% PPA for &lt;30 days. All known and likely short variants in KRAS, NRAS, and BRAF were analyzed independently as testing of these genes is recommended by the National Comprehensive Cancer Network (NCCN) for patients with CRC and have therapeutic implications. For NCCN genes, PPA was 80% for all time points for short variants; PPA increased to 90% for cases &lt;270 days between the tissue and liquid biopsy. There was high concordance for KRAS G12X between tissue and liquid: overall percent agreement (97%), PPA (93%), negative percent agreement (NPA) (100%), positive predictive value (PPV) (100%), and negative predictive value (NPV) (96%) for the &lt;270 day cohort. In cases where tumor tissue profiling is not possible, these results provide compelling evidence that genomic profiling of ctDNA in late stage CRC shows a high concordance with tumor tissue sequencing results and can be used to identify most clinically relevant alterations capable of guiding therapy for these patients."	"Detection of ctDNA in the plasma of patients with papillary thyroid carcinoma. A total of 15-30% of thyroid nodules that are evaluated by fine-needle aspiration are not clearly determined to be benign or malignant. Gene mutation analysis is recommended for the evaluation of thyroid nodules using clinical guidelines. The detection of circulating tumor DNA (ctDNA) has the potential to aid in the screening, diagnosis and prediction of thyroid cancer prognosis, and can be used when tissues are difficult to obtain. In the present study, whole-exome sequencing (WES) was performed on tumors and matched normal tissues from 10 patients with papillary thyroid carcinoma (PTC) in Quanzhou, China. Hotspot mutations in tumor DNA and cell-free DNA were identified in the validation cohort, which included 59 patients with PTC. BRAF V600E occurred in five samples, and was the most frequent mutation observed. Variation allele frequency (VAF) of BRAF V600E detected by WES was positively correlated with VAF determined using digital PCR (R<sup>2</sup>=0.9197; P=0.0099). A number of novel mutated genes were identified, including zinc finger protein 717, pleckstrin homology like domain family A member 1, RBMX like 3, lysine methyltransferase 5A and trichohyalin, along with the reported genes BRAF, NRAS and mucin 16, cell surface associated. Somatic mutated genes were enriched in the 'focal adhesion' pathway, as determined by Kyoto Encyclopedia of Genes and Genomes or Gene Ontology analysis. In the validation cohort, 44.07% of tumors were BRAF V600E-positive, and the sensitivity and specificity of BRAF V600E ctDNA were 61.54 and 90.91%, respectively. BRAF V600E was associated with aggressive tumor factors, including lymph node metastasis (P=0.001) and advanced disease stage (P=0.009). The present study investigated the accuracy of ctDNA detection in patients with PTC, and provided evidence that ctDNA can be used as an evaluation of tumor DNA in thyroid nodules."	"Clinical Practice Use of Liquid Biopsy to Identify RAS/BRAF Mutations in Patients with Metastatic Colorectal Cancer (mCRC): A Single Institution Experience. Tumor heterogeneity represents a possible cause of error in detecting predictive genetic alterations on tumor tissue and can be overcome by testing alterations in circulating tumor DNA (ctDNA) using liquid biopsy. We assessed 72 consecutive patients with a diagnosis of metastatic colorectal cancer (mCRC) using Idylla™ Biocartis, a fully automated platform that evaluates the most frequent mutations of KRAS, NRAS and BRAF genes. We correlated the results of liquid biopsy and standard tissue-based next generation sequencing (NGS) analyses to patient clinical features. The overall agreement was 81.94%. Concordance was 85.71% and 96.15% in treatment-naïve patients and in the patient subgroup with liver metastases, respectively. In liver metastases positive, treatment-naïve patients, sensitivity, specificity and positive predictive value (PPV) were 92.31%, 100% and 100%, respectively. Circulating mutational fraction (CMF) was significantly higher in patients with liver metastases and high carcinoembryonic antigen (CEA) levels. In a subgroup of patients pre-treated with anti-Epidermal Growth Factor Receptor (EGFR) agents, emerging KRAS mutations were evidenced in 33% of cases. Testing RAS/BRAF mutations on plasma using the Idylla™ Biocartis platform is feasible and reliable in mCRC patients in clinical practice."	"The extended spectrum of RAS-MAPK pathway mutations in colorectal cancer. Current clinical guidelines recommend mutation analysis for select codons in KRAS and NRAS exons 2, 3, and 4 and BRAF V600E to guide therapy selection and prognostic stratification in advanced colorectal cancer. This study evaluates the impact of extended molecular testing on the detection of RAS-MAPK pathway mutations. Panel next-generation sequencing results of colorectal cancer specimens from 5795 individuals from the American Association for Cancer Research Project Genomics Evidence Neoplasia Information Exchange (AACR Project GENIE) were included. Mutations in RAS-MAPK pathway genes were analyzed and functionally annotated. Colorectal cancers had recurrent pathogenic pathway activating mutations in KRAS (44%), NRAS (4%), HRAS (&lt;1%), BRAF (10%), MAP2K1 (1%), RAF1 (&lt;1%), and PTPN11 (&lt;1%). The proportion of colorectal cancers with pathogenic RAS pathway mutations was 37% when only KRAS codon 12 and 13 mutations were considered, 46% when also including select KRAS and NRAS exons 2, 3, and 4 mutations, 53% when including BRAF V600E mutations, and 56% when including all pathogenic mutations. Panel next-generation sequencing testing identifies additional RAS-MAPK pathway driver mutations beyond current guideline recommendations. These mutations have potential implications in treatment selection for patients with advanced colorectal cancer."	"Prevalence, prognosis and predictive status of HER2 amplification in anti-EGFR-resistant metastatic colorectal cancer. Numerous inherent and acquired genetic alterations have been demonstrated with resistance to anti-epidermal growth factor receptor (anti-EGFR) therapy in metastatic colorectal cancer (mCRC) patients. Although the common oncogenic driver mutations identified include KRAS, NRAS, BRAF, and PI3K, recent studies report a vital role played by human epithelial growth factor receptor-2 (HER2) amplification in acquired resistance to anti-EGFR therapy. HER2 amplification has been associated with poor prognosis in many malignancies including breast and gastric cancer and is also a negative predictor of anti-EGFR therapy. Given the relevance of HER2 amplification in conferring an anti-EGFR resistance, this paper reviews the prevalence of HER2 amplification in mCRC while exploring the prognostic and predictive values of this biomarker. Further, we also discuss the results of the studies that explored the utilization of anti-HER2-targeted therapies in mCRC. HER2-directed therapies have the ability to change the treatment algorithm in clinically relevant small subset of patients with HER2-amplified mCRC."	"A Novel Probe for Spliceosomal Proteins that Induces Autophagy and Death of Melanoma Cells Reveals New Targets for Melanoma Drug Discovery. Despite recent advances in melanoma drug discovery, the average overall survival of patients with late stage metastatic melanoma is approximately 3 years, suggesting a need for approaches that identify new melanoma targets. We have previously reported a discovery of novel anti-melanoma compound 2155-14 (Onwuha-Ekpete et al., J Med Chem. 2014 Feb 27; 57(4):1599-608). In the report presented herein we aim to identify its target(s) and mechanism of action. We utilized biotinylated analog of 2155-14 to pull down its targets from melanoma cells. Proteomics in combination with western blot were used to identify the targets. Mechanism of action of 2155-14 was determined using flow cytometry, RT-PCR, microscopy, western blot, and enzymatic activity assays. Where applicable, one-way analysis of variance (ANOVA) was used followed by Dunnett post hoc test. In the present study, we identified ATP-dependent RNA helicase DDX1 and heterogeneous nuclear ribonucleoproteins (hnRNPs) H1, H2 and A2/B1 as targets of anti-melanoma compound 215514. To the best of our knowledge, this is a first report suggesting that these proteins could be targeted for melanoma therapy. Mechanistic investigations showed that 2155-14 induces ER stress leading to potentiation of basal autophagy resulting in melanoma cell death in BRAF and NRAS mutated melanoma cells. Identification of mode of action of 2155-14 may provide insight into novel therapies against a broad range of melanoma subtypes. These studies were enabled by the novel probe derived from a mixture-based library, an important class of chemical biology tools for discovering novel targets."	"Cutaneous melanoma: ESMO Clinical Practice Guidelines for diagnosis, treatment and follow-up†. NA"	"Separation and characterization of KRas proteins and tryptic peptides using enhanced-fluidity liquid chromatography tandem mass spectrometry. Enhanced-fluidity, reversed-phase liquid chromatography was developed using custom instrumentation for separation and characterization of intact KRas proteins and tryptic peptides. The KRas, HRas and NRas function as GDP-GTP regulated binary switches in many signalling pathways, and mutations in Ras proteins are frequently found in human cancers and represent poor prognosis markers for patients. Mutations of the KRas isoform constitute some of the most common aberrations among all human cancers and intensive drug discovery efforts have been directed toward targeting the KRas protein. Separation and characterization of the KRas protein and tryptic peptides are helpful for exploring targeting, which has not been fully investigated using liquid chromatography-tandem mass spectrometry. EFLC-MS provided improved chromatographic performance compared to traditional HPLC-MS in terms of shorter analysis time, increased ion intensity and a shift to higher charge states for intact KRas proteins."	"Advances in chronic myelomonocytic leukemia and future prospects: Lessons learned from precision genomics. In the latest World Health Organization classification of myeloid neoplasms, chronic myelomonocytic leukemia (CMML) exists as a separate entity under the category of myelodysplastic/myeloproliferative (MDS/MPN) overlap syndromes. Outcomes remain uniformly poor with a median overall survival of ~2 years and an inherent risk of transformation into acute myeloid leukemia (15-20% over 5 years). Due to unique biologic characteristics such as overlapping features of myelodysplasia and myeloproliferation, and clinical diversity despite relative genomic homogeneity, CMML represents a unique model to study chronic myeloid tumor biology. Recent advances have focused on understanding the role of putative genomic abnormalities, in particular, clonal evolution of pathogenic alterations in genes regulating the epigenome (TET2), chromatin architecture (ASXL1), spliceosome complex (SRSF2, SF3B1) and cell signaling (NRAS, KRAS, CBL, JAK2). Disease prognostication has evolved from purely clinical prognostic models to those incorporating pathogenic gene variations. Therapeutic options in this disease remain dismal with only two agents approved by the United States Food and Drug Administration, namely 5-azacitidine and decitabine. Allogeneic hematopoietic stem cell transplantation remains the sole curative option in this disease; however is associated with substantial treatment-related morbidity and mortality. Future areas of research include opportunities to further improve disease prognostication by employing novel technologies such as machine learning, incorporation of methylation and cytokine signatures, in addition to gene mutations; insights into clonal origins of this disease, and novel therapeutic strategies."	"Combined deep penetrating nevi of the conjunctiva are relatively common lesions characterised by BRAFV600E mutation and activation of the beta catenin pathway: a clinicopathological analysis of 34 lesions. Deep penetrating nevus (DPN) is not a widely recognised lesion on the conjunctiva and only a few cases consistent with combined DPN have been reported. A review of all excised and histopathologically diagnosed conjunctival melanocytic lesions between 2003 and 2018 was performed in order to identify melanocytic nevi morphologically consistent with DPN. Thirty-four DPN were identified among 361 histopathologically examined conjunctival nevi (9.4%), including 33 (97%) combined with a common nevus and 1 (3%) pure DPN. The patients' age ranged from 7 to 51 years (median, 22 years). Clinically, 21 of 29 (72%) lesions with available data were darkly pigmented, and an increase in size and/or pigmentation was noted in 13 of 18 (72%) lesions with known history. All 24 lesions in which an immunohistochemical analysis was possible were diffusely positive for BRAFV600E (in DPN and common nevus components) and showed a diffuse nuclear positivity for beta catenin and cyclin D1 in the DPN component. None of the 21 lesions with available follow-up data recurred during a follow-up period from 0.3 to 16.3 years (median, 7.5 years). DPN of the conjunctiva is a relatively common lesion and usually presents as a combined nevus. Genetically, DPN of the conjunctiva are characterised by a combination of BRAFV600E mutation and activation of the beta catenin pathway. Recognition of DPN of the conjunctiva is important in order not to overdiagnose it as a melanoma, and to explain its potential atypical clinical features. DPN of the conjunctiva seems to be a benign lesion."	"Analysis of Biomarkers and Association With Clinical Outcomes in Patients With Differentiated Thyroid Cancer: Subanalysis of the Sorafenib Phase III DECISION Trial. The phase III DECISION trial (NCT00984282; EudraCT:2009-012007-25) established sorafenib efficacy in locally recurrent or metastatic, progressive, differentiated thyroid cancer (DTC) refractory to radioactive iodine. We conducted a retrospective, exploratory biomarker analysis of patients from DECISION. Candidate biomarkers [15 baseline plasma proteins, baseline and during-treatment serum thyroglobulin, and relevant tumor mutations (BRAF, NRAS, HRAS, and KRAS)] were analyzed for correlation with clinical outcomes. Plasma biomarker and thyroglobulin data were available for 395 of 417 (94.7%) and 403 of 417 (96.6%) patients, respectively. Elevated baseline VEGFA was independently associated with poor prognosis for progression-free survival [PFS; HR = 1.82; 95% confidence interval (CI), 1.38-2.44; P = 0.0007], overall survival (HR = 2.13; 95% CI, 1.37-3.36; P = 0.013), and disease-control rate (DCR; OR = 0.30; P = 0.009). Elevated baseline thyroglobulin was independently associated with poor PFS (HR = 2.03; 95% CI, 1.52-2.71; P &lt; 0.0001) and DCR (OR = 0.32; P = 0.01). Combined VEGFA/thyroglobulin signatures correlated with poor PFS (HR = 2.12; 95% CI, 1.57-2.87; P &lt; 0.00001). Thyroglobulin decrease ≥30% from baseline was achieved by 76% and 14% of patients receiving sorafenib and placebo, respectively (P &lt; 0.001). Patients with ≥30% thyroglobulin reduction had longer PFS than those without ≥30% reduction [HR (95% CI): sorafenib = 0.61 (0.40-0.94), P = 0.022; placebo = 0.49 (0.29-0.85), P = 0.009]. BRAF mutations were associated with better PFS; RAS mutations were associated with worse PFS, although neither was independently prognostic in multivariate models. No examined biomarker predicted sorafenib benefit. We identified biomarkers associated with poor prognosis in DTC, including elevated baseline VEGFA and thyroglobulin and the presence of RAS mutations. Serum thyroglobulin may be a biomarker of tumor response and progression."	"KRAS, NRAS, BRAF, HER2 and microsatellite instability in metastatic colorectal cancer - practical implications for the clinician. Background Colorectal cancer is a successful model of genetic biomarker development in oncology. Currently, several predictive or prognostic genetic alterations have been identified and are used in clinical practice. The RAS gene family, which includes KRAS and NRAS act as predictors for anti-epithelial growth factor receptor treatment (anti-EGFR), and it has been suggested that NRAS mutations also play a role in prognosis: patients harboring NRAS alterations have a significantly shorter survival compared to those with wild type tumours. BRAF V600E mutations are rare and occur mostly in tumors located in the ascending colon in elderly female patients. BRAF is instrumental in establishing prognosis: survival is shorter by 10-16 months in BRAF-mutant patients, and BRAF may be a negative prognostic factor for patients who undergo hepatic or pulmonary metastasectomy. Moreover, this mutation is used as a negative predictive factor for anti-EGFR therapies. Two new biomarkers have recently been added to the metastatic colorectal cancer panel: HER2 and microsatellite instability. While HER2 is still being investigated in different prospective studies in order to validate its prognostic role, microsatellite instability already guides clinical decisions in substituted with advanced colorectal cancer. Conclusions There are current evidences that support using above mentioned genetic biomarkers to better identify the right medicine that is supposed to be used in the right patient. This approach contributes to a more individualized patient-oriented treatment in daily clinical practice."	"A genome-wide CRISPR screen identifies FBXO42 involvement in resistance toward MEK inhibition in NRAS-mutant melanoma. NRAS mutations are the most common alterations among RAS isoforms in cutaneous melanoma, with patients harboring these aggressive tumors having a poor prognosis and low survival rate. The main line of treatment for these patients is MAPK pathway-targeted therapies, such as MEK inhibitors, but, unfortunately, the response to these inhibitors is variable due to tumor resistance. Identifying genetic modifiers involved in resistance toward MEK-targeted therapy may assist in the development of new therapeutic strategies, enhancing treatment response and patient survival. Our whole-genome CRISPR-Cas9 knockout screen identified the target Kelch domain-containing F-Box protein 42 (FBXO42) as a factor involved in NRAS-mutant melanoma-acquired resistance to the MEK1/2 inhibitor trametinib. We further show that FBXO42, an E3 ubiquitin ligase, is involved in the TAK1 signaling pathway, possibly prompting an increase in active P38. In addition, we demonstrate that combining trametinib with the TAK1 inhibitor, takinib, is a far more efficient treatment than trametinib alone in NRAS-mutant melanoma cells. Our findings thus show a new pathway involved in NRAS-mutant melanoma resistance and provide new opportunities for novel therapeutic options."	"Analytical Evaluation of an NGS Testing Method for Routine Molecular Diagnostics on Melanoma Formalin-Fixed, Paraffin-Embedded Tumor-Derived DNA. Next Generation Sequencing (NGS) is a promising tool for the improvement of tumor molecular profiling in view of the identification of a personalized treatment in oncologic patients. To verify the potentiality of a targeted NGS (Ion AmpliSeq™ Cancer Hotspot Panel v2), selected melanoma samples (n = 21) were retrospectively analyzed on S5 platform in order to compare NGS performance with the conventional techniques adopted in our routine clinical setting (Sequenom MassARRAY system, Sanger sequencing, allele-specific real-time PCR). The capability in the identification of rare and low-frequency mutations in the main genes involved in melanoma (BRAF and NRAS genes) was verified and integrated with the results deriving from other oncogenes and tumor suppressor genes. The analytical evaluation was carried out by the analysis of DNA derived from control cell lines and FFPE (Formalin-Fixed, Paraffin-Embedded) samples to verify that the achieved resolution of uncommon mutations and low-frequency variants was suitable to meet the technical and clinical requests. Our results demonstrate that the amplicon-based NGS approach can reach the sensitivity proper of the allele-specific assays together with the high specificity of a sequencing method. An overall concordance among the tested methods was observed in the identification of classical and uncommon mutations. The assessment of the quality parameters and the comparison with the orthogonal methods suggest that the NGS method could be implemented in the clinical setting for melanoma molecular characterization."	"Sorafenib inhibits vascular endothelial cell proliferation stimulated by anaplastic thyroid cancer cells regardless of BRAF mutation status. Anaplastic thyroid cancer (ATC) is a rare refractory disease, frequently associated with BRAF mutations and aberrant vascular endothelial growth factor (VEGF) secretion. The antitumor effects of sorafenib were evaluated, and its mechanisms of action were investigated. Four human ATC cell lines were used: OCUT‑4, which possesses a BRAF mutation; OCUT‑6 and ACT‑1, which carry NRAS mutations; and OCUT‑2, which possesses mutations in BRAF and PI3KCA. The viability of Sorafenib was evaluated by MTT assay. In order to examine the inhibitory effect of Sorafenib on intracellular signal transduction, expression of mitogen‑activated protein kinase kinase was examined by western blotting. In addition, cell cycle analysis was performed using flow cytometry. The inhibitory effects of sorafenib on the growth of ATC cells and human umbilical vein endothelial cells (HUVECs) stimulated with conditioned media from ATC cells were examined. Sorafenib inhibited the viability of OCUT‑4 more effectively than other ATC cell lines; these effects may have been mediated cytostatically by suppressing mitogen‑activated protein kinase kinase phosphorylation. Conversely, similar suppression was not observed in OCUT‑6 cells, which possess an NRAS mutation. The four cell lines secreted different quantities of VEGF, and the proliferation of HUVECs was differentially stimulated by their conditioned media. Both anti‑VEGF antibody and sorafenib prevented this stimulation of proliferation. In conclusion, sorafenib more effectively inhibited RAF‑generated growth signals in ATC cells compared with signals generated by its upstream gene, RAS. ATC cells stimulated the growth of HUVECs via humoral factors, including VEGF; this effect was clearly inhibited by sorafenib. The present findings highlighted the potential of sorafenib for the treatment of ATC and provided insight into its mechanism of action."	"Detection of NRAS G12D and NRAS G13C mutant genes among apparently healthy and haematologic malignant individuals in Federal Capital Territory, Nigeria. Rat Sarcoma gene mutations is an important aspect in the management of hematologic malignancies globally. Unfortunately, this is not the trend in West Africa, including Nigeria. This study was aimed at detecting NRAS G12D and NRAS G13C mutant genes among apparently healthy and haematologic malignant individuals, and to explore their association with some clinical and demographic factors as well as disease status and progression. A total of 200 cfDNAs, 100 each from haematologic malignant patients and blood donors, respectively, were analyzed for the presence of NRAS gene mutations in codons 12 and 13. These mutations were tested using multiplex allele-specific PCR (AS-PCR). The mutations were detected by selective amplification using mutation-specific synthetic oligonucleotides. NRAS G12D and NRAS G13C mutations were 20.0% and 10.0%, respectively. In 17.5% of the 100 haemapoietic cancer patients, NRAS G12D mutant genes were seen while 7.5% of NRAS G13C mutation was found. Both mutant genes were observed in five healthy blood donors each. This result confirms the existence of NRAS mutations in Nigerian haemapoietic cancer patients and the preponderance of G-A transitions over G-T transversions. Mutant NRAS genes were associated with the types and stages of cancer, highlighting probable connection between mutation and increased susceptibility as well as quick progression of hematologic malignancies in the population studied. The result also highlighted higher risk of susceptibility/progression associated with leukemia than other hematopoietic cancers. We recommend more studies on NRAS mutation specifically targeted at improved diagnosis and prognostic therapy. The role of RAS mutation should be explored in other aside blood cancers in the Nigerian population."	"Detection of RAS mutations in circulating tumor DNA: a new weapon in an old war against colorectal cancer. A systematic review of literature and meta-analysis. Tissue evaluation for RAS (KRAS or NRAS) gene status in metastatic colorectal cancer (mCRC) patients represent the standard of care to establish the optimal therapeutic strategy. Unfortunately, tissue biopsy is hampered by several critical limitations due to its invasiveness, difficulty to access to disease site, patient's compliance and, more recently, neoplastic tissue spatial and temporal heterogeneity. The authors performed a systematic literature review to identify available trials with paired matched tissue and ctDNA RAS gene status evaluation. The authors searched EMBASE, MEDLINE, Cochrane, www.ClinicalTrials.gov, and abstracts from international meetings. In total, 19 trials comparing standard tissue RAS mutational status matched paired ctDNA evaluated through polymerase chain reaction (PCR), next generation sequencing (NGS) or beads, emulsions, amplification and magnetics (BEAMing) were identified. The pooled sensitivity and specificity of ctDNA were 0.83 (95% CI: 0.80-0.85) and 0.91 (95% CI: 0.89-0.93) respectively. The pooled positive predictive value (PPV) and negative predictive value (NPV) of the ctDNA were 0.87 (95% CI: 0.81-0.92) and 0.87 (95% CI: 0.82-0.92), respectively. Positive likelihood ratio (PLR) was 8.20 (95% CI: 5.16-13.02) and the negative likelihood ratio (NLR) was 0.22 (95% CI: 0.16-0.30). The pooled diagnostic odds ratio (DOR) was 50.86 (95% CI: 26.15-98.76), and the area under the curve (AUC) of the summary receiver operational characteristics (sROC) curve was 0.94. The authors' meta-analysis produced a complete and updated overview of ctDNA diagnostic accuracy to test RAS mutation in mCRC. Results provide a strong rationale to include the RAS ctDNA test into randomized clinical trials to validate it prospectively."	"Analysis of Predictive Biomarkers in Patients With Lung Adenocarcinoma From Southern Brazil Reveals a Distinct Profile From Other Regions of the Country. Adenocarcinoma is the most common histologic subtype of non-small-cell lung cancer, representing 40% of all diagnoses. Several biomarkers are currently used to determine patient eligibility for targeted treatments, including analysis of molecular alterations in EGFR and ALK, as well as programmed death-ligand 1 (PD-L1) protein expression. Epidemiologic data reporting the frequency of these biomarkers in Brazilian patients with lung adenocarcinoma (LUAD) are limited, and existing studies predominantly included patients from the southeast region of the country. The goal of this study was to investigate the frequency of somatic mutations in the EGFR, KRAS, NRAS, and BRAF genes, ALK, and PD-L1 expression in a series of Brazilian patients diagnosed with LUAD predominantly recruited from centers in southern Brazil. Molecular analysis of the EGFR, KRAS, NRAS, and BRAF genes was performed by next-generation sequencing using DNA extracted from tumor tissue. Immunohistochemistry was used to detect ALK and PD-L1 expression. Analysis of 619 tumors identified KRAS mutations in 189 (30.2%), EGFR mutations in 120 (19.16%), and BRAF mutations in 19 (3%). Immunohistochemistry demonstrated ALK and PD-L1 expression in 4% and 35.1% of patients, respectively. To our knowledge, this is the first study investigating the molecular epidemiology of patients with LUAD from southern Brazil and the largest assessing the frequency of multiple predictive biomarkers for this tumor in the country. The study also reveals a distinct mutation profile compared with data originating from other regions of Brazil."	"Rare case of triple mutant (KRAS + NRAS + BRAF) metastatic colon adenocarcinoma. KRAS is detected in 30%-50% of colorectal cancer (CRC) and BRAF mutations are found in 10% of CRC. A 62-year-old man with the long-standing smoking history presented to the emergency department with abdominal pain, weight loss and constipation. CT scan of abdomen/pelvis showed obstructive mass which was found to be colon adenocarcinoma which on further molecular analysis tested positive for KRAS, NRAS and BRAF mutations. His tumour progressed despite chemotherapy and surgery and he died within a year of diagnosis. Concomitant KRAS, NRAS and BRAF mutations are rare enough to be considered mutually exclusive but coexistent mutations appear to be a distinct molecular and clinical subset which needs new and effective treatment strategies in a setting of dismal prognosis."	"Detection of NRAS mutation in cell-free DNA biological fluids from patients with kaposiform lymphangiomatosis. Kaposiform lymphangiomatosis (KLA) has recently been distinguished as a novel subtype of generalized lymphatic anomaly (GLA) with foci of spindle endothelial cells. All cases of KLA involve multiple organs and have an unfavorable prognosis. However, the molecular pathogenesis is unknown, and there are no useful biomarkers. In the present study, we performed genetic analysis to elucidate the cause of this disease and detect biomarkers for it. We performed whole-exome sequencing of DNA samples from leukocytes and a biopsy specimen and analyzed cell-free DNA (cfDNA) from plasma and pleural effusion of patients to identify the NRAS c.182A &gt; G (p.Q61R) mutation using the droplet digital polymerase chain reaction (ddPCR). All KLA patients (patients 1-5) had invasive and aggressive features (hemorrhagic pleural effusions, coagulation disorder, and thrombocytopenia) and characteristic findings of KLA in their pathological examinations. In whole exome sequencing for patient 1, c.182A &gt; G missense variant (p.Q61R) in NRAS was identified in fresh frozen samples of a mass on the left chest wall at a frequency of 5% of total alleles but not in his blood leukocytes. Furthermore, the same mutation was detected in cfDNA isolated from plasma and pleural effusion by using ddPCR. ddPCR analysis of plasma/pleural effusion samples from an additional four KLA patients showed that the same mutation was detected in isolated cfDNA in three of the four, as well as in a tissue sample from one of the three plasma/effusion-positive patients that had been obtained to confirm the mutation. These results provide the first evidence that NRAS oncogenic variant was identified in DNA samples from KLA patients from not only two affected lesions but also plasma and pleural effusion."	"Combining ERBB family and MET inhibitors is an effective therapeutic strategy in cutaneous malignant melanoma independent of BRAF/NRAS mutation status. Current treatment modalities for disseminated cutaneous malignant melanoma (CMM) improve survival; however, relapses are common. A number of receptor tyrosine kinases (RTKs) including EGFR and MET have been reported to be involved in CMM metastasis and in the development of resistance to therapy, targeting the mitogen-activated protein kinase (MAPK pathway). IHC analysis showed that patients with higher MET protein expression had a significantly shorter overall survival. In addition, silencing of MET caused an upregulation of EGFR and p-AKT, which was abrogated by concomitant silencing of MET and EGFR in CMM cells resistant to MAPK-targeting drugs. We therefore explored novel treatment strategies using clinically approved drugs afatinib (ERBB family inhibitor) and crizotinib (MET inhibitor), to simultaneously block MET and ERBB family RTKs. The effects of the combination were assessed in cell culture and spheroid models using established CMM and patient-derived short-term cell lines, and an in vivo xenograft mouse model. The combination had a synergistic effect, promoting cell death, concomitant with a potent downregulation of migratory and invasive capacity independent of their BRAF/NRAS mutational status. Furthermore, the combination attenuated tumor growth rate, as ascertained by the significant reduction of Ki67 expression and induced DNA damage in vivo. Importantly, this combination therapy had minimal therapy-related toxicity in mice. Lastly, the cell cycle G2 checkpoint kinase WEE1 and the RTK IGF1R, non-canonical targets, were altered upon exposure to the combination. Knockdown of WEE1 abrogated the combination-mediated effects on cell migration and proliferation in BRAF mutant BRAF inhibitor-sensitive cells, whereas WEE1 silencing alone inhibited cell migration in NRAS mutant cells. In summary, our results show that afatinib and crizotinib in combination is a promising alternative targeted therapy option for CMM patients, irrespective of BRAF/NRAS mutational status, as well as for cases where resistance has developed towards BRAF inhibitors."	"Testing for BRAF fusions in patients with advanced BRAF/NRAS/KIT wild-type melanomas permits to identify patients who could benefit of anti-MEK targeted therapy. Beyond targeted therapy for patients with BRAF-mutated melanomas and immunotherapy in patients lacking BRAF mutations, anti-MEK therapy has been proposed in patients with advanced melanomas harbouring BRAF fusions. BRAF fusions diagnosis in patients with advanced melanomas is the subject of the present study. Using BRAF fluorescent in situ hybridisation (FISH), we searched for BRAF fusions in 74 samples of 66 patients with advanced BRAF/NRAS/KIT wild-type melanomas. We identified 2/66 (3%) patients with BRAF fusions in a brain metastasis of one patient and in a lymph node metastasis and in a cutaneous metastasis for the second patient with 90%-95% of tumour nuclei containing isolated 3'-BRAF FISH signals. As a result, we conclude that BRAF FISH in patients with advanced BRAF/NRAS/KIT wild-type melanomas is a valuable and easy-to-perform test to diagnose BRAF fusions and to identify patients who could benefit of anti-MEK targeted therapy."	"Cetuximab, irinotecan and fluorouracile in fiRst-line treatment of immunologically-selected advanced colorectal cancer patients: the CIFRA study protocol. Combination of chemotherapies (fluoropirimidines, oxaliplatin and irinotecan) with biologic drugs (bevacizumab, panitumumab, cetuximab) have improved clinical responses and survival of metastatic colorectal cancer (mCRC). However, patients' selection thorough the identification of predictive factors still represent a challange. Cetuximab (Erbitux®), a chimeric monoclonal antibody binding to the Epidermal Growth Factor Receptor (EGFR), belongs to the Immunoglobulins (Ig) grade 1 subclass able to elicite both in vitro and in vivo the Antibody-Dependent Cell-mediated Cytotoxicity (ADCC). ADCC is the cytotoxic killing of antibody-coated target cells by immunologic effectors. The effector cells express a receptor for the Fc portion of these antibodies (FcγR); genetic polymorphisms of FcγR modify the binding affinity with the Fc of IgG1. Interestingly, the high-affinity FcγRIIIa V/V is associated with increased ADCC in vitro and in vivo. Thus, ADCC could partially account for cetuximab activity. CIFRA is a single arm, open-label, phase II study assessing the activity of cetuximab in combination with irinotecan and fluorouracile in FcγRIIIa V/V patients with KRAS, NRAS, BRAF wild type mCRC. The study is designed with a two-stage Simon model based on a hypothetical higher response rate (+ 10%) of FcγRIIIa V/V patients as compared to previous trials (about 60%) assuming ADCC as one of the possible mechanisms of cetuximab action. The test power is 95%, the alpha value of the I-type error is 5%. With these assumptions the sample for passing the first stage is 14 patients with &gt; 6 responses and the final sample is 34 patients with &gt; 18 responses to draw positive conclusions. Secondary objectives include toxicity, responses' duration, progression-free and overall survival. Furthermore, an associated translational study will assess the patients' cetuximab-mediated ADCC and characterize the tumor microenvironment. The CIFRA study will determine whether ADCC contributes to cetuximab activity in mCRC patients selected on an innovative immunological screening. Data from the translational study will support results' interpretation as well as provide new insights in host-tumor interactions and cetuximab activity. The CIFRA trial (version 0.0, June 21, 2018) has been registered into the NIH-US National Library of Medicine, ClinicalTrials.gov database with the identifier number ( NCT03874062 )."	"Morpho-Molecular Assessment Indicates New Prognostic Aspects and Personalized Therapeutic Options in Sinonasal Melanoma. Sinonasal melanoma is a rare subtype of melanoma and little is known about its molecular fingerprint. Systemic treatment options are limited, as targetable BRAF mutations are rare compared to cutaneous melanoma. Currently, metastatic sinonasal melanoma is being treated according to the guidelines of cutaneous melanoma. In this study, we investigated the molecular profile of 19 primary sinonasal melanomas, using a novel customized melanoma-specific next generation sequencing (NGS) panel (MelArray) of 190 genes. Results were correlated to histological and clinical features to further characterize this rare, aggressive type of melanoma and screen for prognostic markers and possible treatment options. Molecular profiles encompassed predominantly mutations in NRAS (25%), whereas KIT or BRAF p.V600 mutations were not detected. Tumor mutational burden was overall low. High level of copy number variations (CNVs) were associated with alterations in DNA-repair genes and shorter distant metastasis-free survival (p = 0.005). Monomorphic (vs. pleomorphic) morphology was found to be significantly associated with worse disease-specific survival (p &lt; 0.001), however no correlation between morphology and molecular aberrations was found. A variety of alterations in different pathways were detected, justifying molecular testing and opening potential personalized treatment options in current study or compassionate use settings."	"Ras functional proximity proteomics establishes mTORC2 as new direct ras effector. Although oncogenic mutations in the three major Ras isoforms, KRAS, HRAS and NRAS, are present in nearly a third of human cancers, therapeutic targeting of Ras remains a challenge due to its structure and complex regulation. However, an in-depth examination of the protein interactome of oncogenic Ras may provide new insights into key regulators, effectors and other mediators of its tumorigenic functions. Previous proteomic analyses have been limited by experimental tools that fail to capture the dynamic, transient nature of Ras cellular interactions. Therefore, in a recent study, we integrated proximity-dependent biotin labeling (BioID) proteomics with CRISPR screening of identified proteins to identify Ras proximal proteins required for Ras-dependent cancer cell growth. Oncogenic Ras was proximal to proteins involved in unexpected biological processes, such as vesicular trafficking and solute transport. Critically, we identified a direct, bona fide interaction between active Ras and the mTOR Complex 2 (mTORC2) that stimulated mTORC2 kinase activity. The oncogenic Ras-mTORC2 interaction resulted in a downstream pro-proliferative transcriptional program and promoted Ras-dependent tumor growth in vivo. Here we provide additional insight into the Ras isoform-specific protein interactomes, highlighting new opportunities for unique tumor-type therapies. Finally, we discuss the active Ras-mTORC2 interaction in detail, providing a more complete understanding of the direct relationship between Ras and mTORC2. Collectively, our findings support a model wherein Ras integrates an expanded array of pro-oncogenic signals to drive tumorigenic processes, including action on mTORC2 as a direct effector of Ras-driven proliferative signals."	"Intracellular nanoparticle delivery by oncogenic KRAS-mediated macropinocytosis. The RAS family of oncogenes (KRAS, HRAS, NRAS) are the most frequent mutations in cancers and regulate key signaling pathways that drive tumor progression. As a result, drug delivery targeting RAS-driven tumors has been a long-standing challenge in cancer therapy. Mutant RAS activates cancer cells to actively take up nutrients, including glucose, lipids, and albumin, via macropinocytosis to fulfill their energetic requirements to survive and proliferate. We exploit macropinocytosis pathway to deliver nanoparticles (NPs) in cancer cells harboring activating KRAS mutations. NPs were synthesized by the desolvation method. The physicochemical properties and stability of NPs were characterized by dynamic light scattering and transmission electron microscopy. Uptake of fluorescently labelled NPs in wild-type and mutant KRAS cells were quantitively determined by flow cytometry and qualitatively by fluorescent microscopy. NP uptake by KRAS-driven macropinocytosis was confirmed by pharmacological inhibition and genetic knockdown. We have synthesized stable albumin NPs that demonstrate significantly greater uptake in cancer cells with activating mutations of KRAS than monomeric albumin (ie, dissociated form of clinically used nab-paclitaxel). From pharmacological inhibition and semi-quantitative fluorescent microscopy studies, these NPs exhibit significantly increased uptake in mutant KRAS cancer cells than wild-type KRAS cells by macropinocytosis. The uptake of albumin nanoparticles is driven by KRAS. This NP-based strategy targeting RAS-driven macropinocytosis is a facile approach toward improved delivery into KRAS-driven cancers."	"Mutational Profile Using Next-Generation Sequencing May Aid in the Diagnosis and Treatment of Urachal Adenocarcinoma. Objectives. The rare urachal adenocarcinoma (UAC) of the bladder has striking morphologic and immunohistochemical overlap with colorectal adenocarcinoma (CAC) and bladder adenocarcinoma (BAC). To date, the mutational status in UAC and BAC has not been well investigated. Methods. We retrospectively evaluated 34 UACs (mucinous, n = 9; intestinal, n = 3; signet ring cell, n = 1; not otherwise specified, n = 21) and 4 BACs (n = 4). Next-generation sequencing analysis of 50 cancer &quot;hotspot&quot; gene mutations using the Ampliseq Cancer Hotspot Panel v2 was performed. Two UAC cases did not have adequate DNA quality with poor sequencing coverage and were excluded from the study. Results. RAS mutations were identified in 16 of 32 (50%) UACs (15 KRAS; 1 NRAS) and none of the BACs (0%). TP53 mutations were found in both UACs (18/32; 56%) and BACs (4/4; 100%). GNAS (n = 4), SMAD4 (n = 3), and BRAF (n = 1) mutations were only found in UACs. In contrast, APC (n = 2) mutations were only found in BACs. The mucinous subtype of UAC contained a SMAD4 mutation in 33% of cases (3/9), which was not identified in any other subtype (0/23; 0%) (P = .0169). The only BRAF mutation was identified in the single signet ring cell subtype of UAC. There were no other differences in the mutation profile when comparing histologic subtypes of UAC. Conclusions. In summary, UAC and BAC have overlapping but distinct mutation profiles and these differences may aid in separating these 2 entities. Next-generation sequencing to identify therapeutic targets or resistance markers may aid treatment decisions."	"[Genetic testing of thyroid nodules using a gene panel developed on a new generation sequencing platform]. Introduction: Twenty-five percent of fine-needle aspiration biopsy samples of thyroid nodules produce indeterminate cytological results. Genetic testing of nodules can contribute to accurate diagnosis. Aim: Developing the first gene panel in Europe utilizing the 23 most relevant thyroid oncogenes with 568 mutations. Method: Examination of the isolated DNA from biopsy samples by Ion Torrent new generation sequencing. Results: The validation of our method was performed on tumor tissue samples, in which 127 genetic variations were identified, yet unknown in thyroid tumors. AXIN1 was the most polymorphic gene, while BRAF c.1799T&gt;A (V600E) was the most frequently identified mutation. We detected 36 clinically relevant variants, 75% of which have not been described in the literature. Six of our 8 cytologically malignant and 8 of our 14 indeterminate as well as 20 of our 28 cytologically benign samples were identified as containing pathologic variants in a driver gene (BRAF c.1799T&gt;A, NRAS c.181C&gt;A). Conclusion: We have developed a validated, reliable new generation sequencing-based method with high positive predictive value (89%) and sensitivity (79%), suitable for the early detection of malignant lesions in the thyroid. Orv Hetil. 2019; 160(36): 1417-1425. Absztrakt: Bevezetés: Vékonytű-biopsziás pajzsmirigygöbminták 25%-ánál bizonytalan citológiai eredményt kapunk. A göbök genetikai vizsgálata hozzájárulhat a pontos diagnózishoz. Célkitűzés: Európában az első és a legtöbb, 23 releváns pajzsmirigyonkogént (568 mutációval) tartalmazó génpanel kialakítása. Módszer: A biopsziás mintákból izolált DNS vizsgálata Ion Torrent újgenerációs szekvenálással történt. Eredmények: Módszerünk validációját tumorszövetmintákon végeztük, ennek során 127, a pajzsmirigydaganatokban eddig nem ismert eltéréseket azonosítottunk. Az AXIN1 a legpolimorfabb génnek, míg a BRAF c.1799T&gt;A (V600E) a leggyakrabban azonosított mutációnak bizonyult. A vékonytű-biopsziás mintáinkban 36-féle, klinikailag releváns variánst detektáltunk, melyek 75%-a az irodalomban még nincs leírva. A citológiailag malignus nyolc mintánk közül hatban, a bizonytalan citológiájú tizennégy mintánk közül nyolcban, míg a citológiailag benignus huszonnyolc mintánk közül húszban azonosítottunk patogén variánst valamely driver génben (BRAF c.1799T&gt;A, NRAS c.181C&gt;A). Következtetés: Olyan validált, megbízhatóan működő újgenerációs szekvenáláson alapú módszert fejlesztettünk ki, amely nagy pozitív prediktív értékkel (89%) és szenzitivitással (79%) képes a pajzsmirigy rosszindulatú elváltozásainak korai felismerésére. Orv Hetil. 2019; 160(36): 1417–1425."	"Undetectable circulating tumor DNA (ctDNA) levels correlate with favorable outcome in metastatic melanoma patients treated with anti-PD1 therapy. Treatment with anti-PD1 monoclonal antibodies improves the survival of metastatic melanoma patients but only a subgroup of patients benefits from durable disease control. Predictive biomarkers for durable benefit could improve the clinical management of patients. Plasma samples were collected from patients receiving anti-PD1 therapy for ctDNA quantitative assessment of BRAF<sup>V600</sup> and NRAS<sup>Q61/G12/G13</sup> mutations. After a median follow-up of 84 weeks 457 samples from 85 patients were analyzed. Patients with undetectable ctDNA at baseline had a better PFS (Hazard ratio (HR) = 0.47, median 26 weeks versus 9 weeks, p = 0.01) and OS (HR = 0.37, median not reached versus 21.3 weeks, p = 0.005) than patients with detectable ctDNA. Additionally, the HR for death was lower after the ctDNA level became undetectable during follow-up (adjusted HR: 0.16 (95% CI 0.07-0.36), p-value &lt; 0.001). ctDNA levels &gt; 500 copies/ml at baseline or week 3 were associated with poor clinical outcome. Patients progressive exclusively in the central nervous system (CNS) had undetectable ctDNA at baseline and at subsequent assessments. In multivariate analysis adjusted for LDH, CRP, ECOG and number of metastatic sites, the ctDNA remained significant for PFS and OS. A positive correlation was observed between ctDNA levels and total metabolic tumor volume (TMTV), number of metastatic sites and total tumor burden. Assessment of ctDNA baseline and during therapy was predictive for tumor response and clinical outcome in metastatic melanoma patients and reflected the tumor burden. ctDNA evaluation provided reliable complementary information during anti-PD1 antibody therapy."	"External Quality Assurance of Current Technology for the Testing of Cancer-Associated Circulating Free DNA Variants. Liquid biopsy testing is rapidly emerging as a diagnostic means of identifying circulating free DNA (cfDNA) disease-associated variants. However, the reporting of cfDNA variants remains inconsistent due in part to the application of multiple testing pipelines which raise uncertainty about current cfDNA detection efficiency. External quality assurance (EQA) programs are required to monitor, evaluate and help improve laboratory performance for cfDNA variant detection and in clinical interpretation. This study therefore evaluated the performance of diagnostic laboratories currently performing cfDNA testing in China, Australia and New Zealand. A total of 89 laboratories participated in this EQA program. Reference testing material comprised of cfDNA manufactured to contain six different genotypes in four different genes (EGFR, KRAS, BRAF, NRAS). The predicted genotypic variant allelic frequencies ranged between 0.5% - 2.5%. Proficiency testing used a z-score on the laboratory consensus allelic frequency data to compare laboratory performance for the detection of the different genotypes. Allelic frequency genotyping data were received from 88 of the 89 laboratories. Next generation sequencing and digital PCR testing platforms were primarily used by participants in this pilot EQA. The average consensus data for each cfDNA genotype identified allelic frequencies ranging between 0.39% - 4.4%. Z-score proficiency testing found that &gt;92% of clinical laboratories were concordant for detecting the cfDNA variants. The data from this pilot study suggest that current cfDNA testing platforms can detect cfDNA allelic frequency variants from 0.39% and above with high levels of confidence. In addition, these data highlight the importance of laboratories enrolling on EQA programs so that proficiency in cfDNA diagnostic testing can be determined and potential sources of error identified and addressed."	"An &quot;EZ&quot; Epigenetic Road to Leukemia Stem Cell Metabolic Reprogramming? In this issue of Cancer Discovery, Gu and colleagues developed a mouse model of myeloproliferative neoplasm driven by Nras<sup>G12D</sup> and Ezh2<sup>-/-</sup> , which cooperated to induce malignant transformation and metabolic reprogramming of leukemic stem cells at least in part through loss of normal epigenetic regulation of gene expression. Furthermore, their findings point to Ezh1 and branched chain amino acid metabolism as biological dependencies and potential therapeutic targets in myeloid neoplasms.See related article by Gu et al., p. 1228."	"High Proportion of Potential Candidates for Immunotherapy in a Chilean Cohort of Gastric Cancer Patients: Results of the FORCE1 Study. Gastric cancer (GC) is a heterogeneous disease. This heterogeneity applies not only to morphological and phenotypic features but also to geographical variations in incidence and mortality rates. As Chile has one of the highest mortality rates within South America, we sought to define a molecular profile of Chilean GCs (ClinicalTrials.gov identifier: NCT03158571/(FORCE1)). Solid tumor samples and clinical data were obtained from 224 patients, with subsets analyzed by tissue microarray (TMA; n = 90) and next generation sequencing (NGS; n = 101). Most demographic and clinical data were in line with previous reports. TMA data indicated that 60% of patients displayed potentially actionable alterations. Furthermore, 20.5% were categorized as having a high tumor mutational burden, and 13% possessed micro-satellite instability (MSI). Results also confirmed previous studies reporting high Epstein-Barr virus (EBV) positivity (13%) in Chilean-derived GC samples suggesting a high proportion of patients could benefit from immunotherapy. As expected, TP53 and PIK3CA were the most frequently altered genes. However, NGS demonstrated the presence of TP53, NRAS, and BRAF variants previously unreported in current GC databases. Finally, using the Kendall method, we report a significant correlation between EBV+ status and programmed death ligand-1 (PDL1)+ and an inverse correlation between p53 mutational status and MSI. Our results suggest that in this Chilean cohort, a high proportion of patients are potential candidates for immunotherapy treatment. To the best of our knowledge, this study is the first in South America to assess the prevalence of actionable targets and to examine a molecular profile of GC patients."	"Positive Correlation Between Somatic Mutations in RAS Gene and Colorectal Cancer in Telangana Population: Hospital-Based Study in a Cosmopolitan City. Colorectal cancer (CRC) ranks among the most prevalent cancer types in both men and women. Screening of RAS (Kirsten rat sarcoma viral oncogene homolog (KRAS), neuro-blastoma RAS viral oncogene homolog (NRAS), and v-raf murine sarcoma viral oncogene homolog B1 (BRAF)) somatic mutations is necessary prior to considering anti-epidermal growth factor receptor (EGFR) therapies in CRC patients. Next-generation sequencing studies have confirmed that RAS gene panels could be used while developing treatment strategies for patients with CRC. The present study explored genetic mutations in KRAS, NRAS, and BRAF in CRC patients in the Telangana state of India. Patients with confirmed CRC (n = 100) who visited the Apollo hospitals were evaluated. Genomic DNA was extracted from formalin-fixed, paraffin-embedded tissues, and pyrosequencing analysis was performed. Patient DNA samples were screened for 54 different KRAS, NRAS, and BRAF mutations, which revealed 34 somatic mutations. Exon 11 of BRAF possessed 4 mutations with highest individuals documented with G469A mutation. Pyrosequencing, a reliable method for analyzing somatic mutations present in RAS, could aid in taking treatment decisions for patients with CRC."	"Molecular Variants and Their Risks for Malignancy in Cytologically Indeterminate Thyroid Nodules.  Background:  Gene panels are routinely used to assess predisposition to hereditary cancers by simultaneously testing multiple susceptibility genes and/or variants. More recently, genetic panels have been implemented as part of solid tumor malignancy testing assessing somatic alterations. One example is targeted variant panels for thyroid nodules that are not conclusively malignant or benign upon fine-needle aspiration (FNA). We systematically reviewed published studies from 2009 to 2018 that contained genetic data from preoperative FNA specimens on cytologically indeterminate thyroid nodules (ITNs) that subsequently underwent surgical resection. Pooled prevalence estimates per gene and variant, along with their respective positive predictive values (PPVs) for malignancy, were calculated.  Summary:  Our systematic search identified 540 studies that were supplemented by 18 studies from bibliographies or personal files. Sixty-one studies met all inclusion criteria and included &gt;4600 ITNs. Overall, 26% of nodules contained at least 1 variant or fusion. However, half of them did not include details on the specific gene, variant, and/or complete fusion pair reported for inclusion toward PPV calculations. The PPVs of genomic alterations reported at least 10 times were limited to BRAF<sup>V600E</sup> (98%, 95% confidence interval [CI 96-99%]), PAX8/PPARG (55% [CI 34-78%]), HRAS<sup>Q61R</sup> (45% [CI 22-72%]), BRAF<sup>K601E</sup> (42% [CI 19-68%]), and NRAS<sup>Q61R</sup> (38% [CI 23-55%]). Excluding BRAF<sup>V600E</sup>, the pooled PPV for all other specified variants and fusions was 47%. Multiple variants within the same nodule were identified in ∼1% of ITN and carried a cumulative PPV of 77%.  Conclusions:  The chance that a genomic alteration predicts malignancy depends on the individual variant or fusion detected. Only five alterations were reported at least 10 times; BRAF<sup>V600E</sup> had a PPV of 98%, while the remaining four had individual PPVs ranging from 38% to 55%. The small sample size of most variants and fusion pairs found among ITNs, however, limits confidence in their individual PPV point estimates. Better specific reporting of genomic alterations with cytological category, histological subtype, and cancer staging would facilitate better understanding of cancer prediction, and the independent contribution of the genomic profile to prognosis."	"Correction to: Dynamic and unpredictable changes in mutant allele fractions of BRAF and NRAS during visceral progression of cutaneous malignant melanoma. Following publication of the original article [1], the authors reported the family name of the second author was incorrectly published."	"Nitrogen-Implanted ZnO Nanorod Arrays for Visible Light Photocatalytic Degradation of a Pharmaceutical Drug Acetaminophen. The present study focuses on the effects of nitrogen (N) ion implantation in vertically aligned ZnO nanorod arrays (NRAs) and the photocatalytic degradation of acetaminophen. The X-ray diffraction of these NRAs exhibit a wurtzite structure with a predominant (002) diffraction peak that shifts slightly after N-ion implantation. The field emission scanning electron microscopic images of as-prepared NRAs show a length of ∼4 μm and diameter of ∼150 nm. UV-visible spectroscopy reveals that the band gap of pristine ZnO NRAs decreases from 3.2 to 2.18 eV after N-ion implantation. Under visible irradiation, the N-ion-implanted ZnO catalyst exhibits significant enhancement of the photocatalytic degradation of acetaminophen from 60.0 to 98.46% for 120 min."	"Differentiated Thyroid Carcinoma in Pediatric Age: Genetic and Clinical Scenario. Introduction: Follicular-derived differentiated thyroid carcinoma (DTC) is the most common endocrine and epithelial malignancy in children. The differences in the clinical and pathological features of pediatric vs. adult DTC could relate to a different genetic profile. Few studies are currently available in this issue, however, and most of them involved a limited number of patients and focused mainly on radiation-exposed populations. Materials and Methods: We considered 59 pediatric patients who underwent surgery for DTC between 2000 and 2017. RET/PTC rearrangement was investigated with fluorescent in situ hybridization and real-time polymerase chain reaction. Sequencing was used to analyze mutations in the BRAF, NRAS, PTEN, PIK3CA genes, and the TERT promoter. The pediatric patients' clinical and molecular features were compared with those of 178 adult patients. Results: In our pediatric sample, male gender and age &lt;15 years coincided with more extensive disease and more frequent lymph node and distant metastases. Compared with adults, the pediatric patients were more likely to have lymph node and distant metastasis, and to need second treatments (p &lt; 0.01). In all, 44% of the pediatric patients were found to carry molecular alterations. RET/PTC rearrangement was confirmed as the most frequent genetic alteration in childhood DTC (24.6%) and correlated with aggressive features. BRAFV600E was only identified in 16% of the pediatric DTCs, while NRASQ61R, NRASQ61K, and TERTC250T mutations were very rare. Conclusions: Pediatric DTC is more aggressive at diagnosis and more likely to recur than its adult counterpart. Unlike the adult disease, point mutations have no key genetic role."	"Mutational concordance between primary and metastatic melanoma: a next-generation sequencing approach. Cutaneous malignant melanoma (CMM) is one of the most common skin cancers worldwide. Limited information is available in the current scientific literature on the concordance of genetic alterations between primary and metastatic CMM. In the present study, we performed next-generation sequencing (NGS) analysis of the main genes participating in melanoma pathogenesis and progression, among paired primary and metastatic lesions of CMM patients, with the aim to evaluate levels of discrepancies in mutational patterns. Paraffin-embedded tumor tissues of the paired lesions were retrieved from the archives of the institutions participating in the study. NGS was performed using a specific multiple-gene panel constructed by the Italian Melanoma Intergroup (IMI) to explore the mutational status of selected regions (343 amplicons; amplicon range: 125-175 bp; coverage 100%) within the main 25 genes involved in CMM pathogenesis; sequencing was performed with the Ion Torrent PGM System. A discovery cohort encompassing 30 cases, and a validation cohort including eleven Sardinian patients with tissue availability from both the primary and metachronous metastatic lesions were identified; the global number of analyzed tissue specimens was 90. A total of 829 genetic non-synonymous variants were detected: 101 (12.2%) were pathogenic/likely pathogenic, 131 (15.8%) were benign/likely benign, and the remaining 597 (72%) were uncertain/unknown significance variants. Considering the global cohort, the consistency in pathogenic/pathogenic like mutations was 76%. Consistency for BRAF and NRAS mutations was 95.2% and 85.7% respectively, without statistically significant differences between the discovery and validation cohort. Our study showed a high level of concordance in mutational patterns between primary and metastatic CMM, especially when pathogenic mutations in driver genes were considered."	"How Many Papillae in Conventional Papillary Carcinoma? A Clinical Evidence-Based Pathology Study of 235 Unifocal Encapsulated Papillary Thyroid Carcinomas, with Emphasis on the Diagnosis of Noninvasive Follicular Thyroid Neoplasm with Papillary-Like Nuclear Features.  Background:  The percentage of papillae is a crucial criterion in differentiating noninvasive follicular thyroid neoplasm with papillary-like nuclear features (NIFTP) from papillary thyroid carcinomas (PTCs) and in subclassifying PTC into classic and follicular variant. Since the description of NIFTP, three studies have shown that the presence of any papillae may be associated with nodal metastasis, which led to modification of the NIFTP criterion from &lt;1% papillae to no true papillae allowed. We aim at providing clinical evidence-based data on the impact that papillary growth has on nodal spread and tumor genotype in tumors previously diagnosed as encapsulated unifocal PTC.  Methods:  A meticulous histopathologic examination was performed on 235 cases previously diagnosed as unifocal encapsulated PTC (U-EPTC). One hundred of these cases were subjected to BRAF<sup>V600E</sup> and NRAS<sup>Q61R</sup> immunohistochemistry.  Results:  In our cohort, 27 patients (12%) had lymph node metastasis (N1) at the time of initial resection. Overall, 89% of the tumors in the N1 group contained ≥50% papillae, compared with 13% in the N0/Nx group. Nodal metastases were only present in tumors with ≥1% papillae. In noninvasive U-EPTC (n = 161), N1 disease was seen only in tumors with ≥10% papillae. A higher percentage of papillae within the tumor also correlated with an increased frequency of BRAF<sup>V600E</sup> and decreased rate of NRAS<sup>Q61R</sup>. None of the 26 NRAS-positive cases had nodal disease, including the invasive tumors. Among 216 patients with follow-up (median: 5.2 years), 3 patients (1.5%) had distant metastases, all detected at the initial presentation. All three tumors displayed 100% follicular growth, and capsular or vascular invasion. There was no locoregional recurrence in the entire cohort.  Conclusion:  In U-EPTC, there is a strong correlation between high percentage of papillary growth, presence of nodal metastasis, and BRAF+/RAS- genotype regardless of invasive status. Nodal metastases were not seen in tumors with &lt;1% papillae irrespective of invasive status. These findings indicate that the initial criterion of &lt;1% papillae is still valid for the diagnosis of NIFTP. Reinstituting this criterion will spare a carcinoma diagnosis and unnecessary therapy with its side effects on patients who have negligible clinical risk."	"Anti-leukemic effects of simvastatin on NRAS<sup>G12D</sup> mutant acute myeloid leukemia cells. The statins are a group of therapeutic drugs widely used for lowering plasma cholesterol level, while it has also been reported to induce cell death in human acute myeloid leukemia (AML) cells. To determine antitumor activity triggered by simvastatin, four AML cell lines-U937, KG1, THP1 (NRAS<sup>G12D</sup> mutant) and HL60 (NRAS<sup>Q61L</sup> mutant)-were cultured with simvastatin and cell viability was assessed using the CellTiter-Glo reagent. For understanding mechanism of antitumor activity, immunoblot analysis for pAkt (Ser473), Akt, pMEK, MEK, pERK (Thr202/Tyr204) and ERK (Thr202/Tyr204) was performed. Apoptotic cell population was calculated using the Annexin V-FITC assay, and cell cycle state was assessed by flow cytometry. Simvastatin showed different cytotoxic effect among AML cells, of which NRAS<sup>G12D</sup> mutant THP1 was the most statin sensitive cell line (IC50 values: 1.96 uM in HL60, 7.87 uM in KG1, 0.83 uM in THP1 and 1.37 uM in U937). Western blot analysis revealed that Ras downstream signaling molecules including Akt, MEK, and ERK1/2 were markedly inhibited in THP1 cells compared to other AML cells when exposed to simvastatin. In addition, only in THP1 cells, increased apoptosis and cell cycle arrest by simvastatin was observed. The combination of simvastatin and MEK inhibitor AZD6244 synergistically reduced THP1 cell proliferation compared to simvastatin alone and AZD6244 alone (IC50 values: 0.88 uM in simvastatin, 0.32 uM in AZD6244, and 0.23 uM in combination of simvastatin and AZD6244). Simvastatin exhibited anti-leukemic effect in human AML cells in vitro, especially at NRAS<sup>G12D</sup> mutant AML cell line."	"High Frequency of KRAS Codon 146 and FBXW7 Mutations in Thai Patients with Stage II-III Colon Cancer. Background: KRAS, NRAS, and BRAF gene mutations are the most clinically relevant and frequently reported incolorectal cancer (CRC). Although data on these genes are frequently reported in several counties, data specific to thesegenes among Thai population are scarce. The aim of this study was to investigate and identify molecular alterationsassociated with colon cancer in Thai population, and to determine the impact of these genetic aberrations on clinicaloutcome. Methods: DNA from 108 archived formalin-fixed, paraffin-embedded (FFPE) tissue samples that histologicallyconfirmed adenocarcinoma of stage II-III colon cancer between 2010 and 2012 at Siriraj Hospital (Bangkok, Thailand)were extracted. Gene mutational analysis was performed by next-generation sequencing (NGS) using an OncomineSolid Tumor DNA kit (Thermo Fisher Scientific, Inc., Waltham, MA, USA). Results: A total of 22 somatic genemutations were detected. The mutation frequency observed in KRAS, NRAS, BRAF, PIK3CA, and FBXW7 mutationswas 47.2%, 1.9%, 1.9%, 12%, and 14.8%, respectively. KRAS mutation codon 12, 13, 59, 61, 117, and 146 mutationswere identified in 29.6%, 8.3%, 1.8%, 0.9%, 0.0%, and 8.3%, respectively. KRAS Exon 4 had better DFS comparedwith Exon 2 and 3. Conclusions: This study is the first to comprehensively report hotspot mutations using NGS in Thaicolon cancer patients. The most commonly identified gene mutation frequencies among Thai patients (KRAS, NRAS,BRAF, TP53, and PIK3CA) were similar to the gene mutation frequencies reported in Western population, except forsubgroup of KRAS codon 146 and FBXW7 mutations that had a slightly higher frequency."	"A rare case of acute promyelocytic leukemia with IRF2BP2-RARA fusion; and literature review. Acute promyelocytic leukemia (APL) is commonly characterized by the fusion of retinoic acid receptor alpha (RARA) with promyelocytic leukemia (PML). Most APL patients acquire long-term survival after treatment with all-trans retinoic acid (ATRA) or arsenic agents-based chemotherapy. A rare case of APL was reported after IRF2BP2-RARA was detected in the relapsed process using next-generation RNA-sequencing analysis. In addition, the mutation of NRAS was also detected. ATRA and arsenic trioxide combined with daunorubicin were used during induction treatment. The patient acquired complete remission but relapsed in 12 months. The patient was resistant to all other chemotherapies and refused any further therapy. The literature review indicated that allogeneic hematopoietic stem cell transplantation might be a therapeutic method to treat APL with IRF2BP2-RARA fusion. Atypical APL should be considered even if the patients present with normal chromosomal karyotype and no classic PML-RARA fusions, but classical clinical features and bone marrow cell morphology. We reported a case of APL with IRF2BP2-RARA fusion was shown to harbor the NRAS mutation at relapse."	"Allogeneic stem cell transplantation in patients with myelofibrosis harboring the MPL mutation. Primary and post-ET/PV myelofibrosis are myeloproliferative neoplasms harboring in most cases driving mutations in JAK2, CALR or MPL, and a variable number of additional mutations in other genes. Molecular analysis represents a powerful tool to guide prognosis and clinical management. Only about 10% of patients with myelofibrosis harbor alterations in MPL gene. No data are available about the transplantation outcome in the specific MPL-mutated group. We collected the data of 18 myelofibrosis patients(primary: 14; post-ET: 4) transplanted in 4 EBMT centers (Hamburg, Paris, Essen, and Hannover) between 2005 and 2016. Before the transplant, we explored the molecular profile by NGS and reported the frequency of mutations occurring in a panel of genes including JAK2, MPL, CALR, U2AF1, SRSF2, SF3B1, ASXL1, IDH1, IDH2, CBL, DNMT3A, TET2, EZH2, TP53, IKZF1, NRAS, KRAS, FLT3, SH2B3, and RUNX1. The 1-year transplant-related mortality was 16.5%, 5-years overall survival and 5-y relapse-free survival 83.5%. The only relapse occurred in a patient who harbored mutations in both ASXL1 and EZH2 genes. These retrospective data suggest that MPL-mutated myelofibrosis patients have a favorable outcome after allogeneic transplantation with very low rate of disease relapse (5.5%) in comparison with the available historical controls regarding myelofibrosis in all."	"Genomic Landscape and Immune Microenvironment Features of Preinvasive and Early Invasive Lung Adenocarcinoma. Understanding the genomic landscape and immune microenvironment features of preinvasive and early invasive lung adenocarcinoma may provide critical insight and facilitate development of novel strategies for early detection and intervention. A total of 80 tumor tissue samples and 30 paired histologically normal lung tissue samples from 30 patients with adenocarcinoma in situ (AIS) (n = 8), minimally invasive adenocarcinoma (MIA) (n = 8), and invasive adenocarcinoma (IAC) (n = 14) were subjected to multiregion whole exome sequencing and immunohistochemistry staining for CD8 and programmed death ligand 1 (PD-L1). All tumors, including AIS, exhibited evidence of genomic intratumor heterogeneity. Canonical cancer gene mutations in EGFR, erb-b2 receptor tyrosine kinase 2 gene (ERBB2), NRAS, and BRAF were exclusively trunk mutations detected in all regions within each tumor, whereas genes associated with cell mobility, gap junction, and metastasis were all subclonal mutations. EGFR mutation represented the most common driver alterations across AIS, MIA, and IAC, whereas tumor protein p53 gene (TP53) was identified in MIA and IAC but not in AIS. There was no difference in PD-L1 expression among AIS, MIA, and IAC, but the CD8 positivity rate was higher in IAC. Tumors positive for both PD-L1 and CD8 had a larger proportion of subclonal mutations. Mutations in EGFR, ERBB2, NRAS, and BRAF are early clonal genomic events during carcinogenesis of lung adenocarcinoma, whereas TP53 and cell mobility, gap junction, and metastasis-related genes may be late events associated with subclonal diversification and neoplastic progression. Genomic intratumor heterogeneity and immunoediting are common and early phenomena that may have occurred before the acquisition of invasion."	"Drug resistance of BRAF-mutant melanoma: Review of up-to-date mechanisms of action and promising targeted agents. Melanoma onset and progression are associated with a high variety of activating mutations in the MAPK-pathway, most frequently involving BRAF (35-45%) and NRAS (15-25%) genes, but also c-KIT and PTEN. Targeted therapies with BRAF and MEK inhibitors showed promising results over the past years, but it is known that most responses are temporary, and almost all of patients develop a tumor relapse within one year. Different drug-resistance mechanisms underlie the progression of disease and activation of both MAPK and PI3K/AKT/mTOR pathways. Therefore, in this article we reviewed the main studies about clinical effects of several target inhibitors, describing properly the most prominent mechanisms of both intrinsic and acquired resistance. Furthermore, suggestive strategies for overcoming drug resistance and the most recent alternative combination therapies to optimize the use of MAPK pathway inhibitors were also discussed."	"Evaluation, Validation, and Implementation of the Idylla System as Rapid Molecular Testing for Precision Medicine. The Idylla Mutation Test System is an automated, PCR-based mutation testing system. The advantages of this system can greatly impact the delivery of precision medicine. We describe our evaluation, validation, and implementation of this system for routine testing of BRAF, EGFR, KRAS, and NRAS using formalin-fixed, paraffin-embedded cancer samples. All four Idylla test systems showed excellent concordance with reference methods. The analytical sensitivity ranged from 94.66% to 100%, depending on the cartridge, and specificity was 100%. A few discordant results were noted and further investigated: KRAS Q61L was misclassified as Q61H; KRAS Q61R was not identified; there was a false-negative EGFR double mutation (L861Q and G719A); and there was a false-negative EGFR double mutation (T790M and exon 19 deletion). The limit of detection was determined to be 1% or 5% for the variants with available reference material. The turnaround time was shortened by 7 days on average. Idylla testing of a cohort of 25 non-small-cell lung cancer samples with insufficient material for next-generation sequencing testing delivered results for all cases and identified actionable results for eight cases. In addition, patient care would have been changed in four of these cases: targeted therapies were identified in two cases, and repeated biopsies would have been avoided in two cases. The Idylla molecular testing system is an accessible, rapid, robust, and reliable testing option for both routine and challenging formalin-fixed, paraffin-embedded specimens."	"Synergy of NUP98-HOXA10 Fusion Gene and NrasG12D Mutation Preserves the Stemness of Hematopoietic Stem Cells on Culture Condition. Natural hematopoietic stem cells (HSC) are susceptible and tend to lose stemness, differentiate, or die on culture condition in vitro, which adds technical challenge for maintaining bona fide HSC-like cells, if ever generated, in protocol screening from pluripotent stem cells. It remains largely unknown whether gene-editing of endogenous genes can genetically empower HSC to endure the culture stress and preserve stemness. In this study, we revealed that both NUP98-HOXA10HD fusion and endogenous Nras mutation modifications (NrasG12D) promoted the engraftment competitiveness of HSC. Furthermore, the synergy of these two genetic modifications endowed HSC with super competitiveness in vivo. Strikingly, single NAV-HSC successfully maintained its stemness and showed robust multi-lineage engraftments after undergoing the in vitro culture. Mechanistically, NUP98-HOXA10HD fusion and NrasG12D mutation distinctly altered multiple pathways involving the cell cycle, cell division, and DNA replication, and distinctly regulated stemness-related genes including Hoxa9, Prdm16, Hoxb4, Trim27, and Smarcc1 in the context of HSC. Thus, we develop a super-sensitive transgenic model reporting the existence of HSC at the single cell level on culture condition, which could be beneficial for protocol screening of bona fide HSC regeneration from pluripotent stem cells in vitro."	"How to Deal with Second Line Dilemma in Metastatic Colorectal Cancer? A Systematic Review and Meta-Analysis. Monoclonal antibodies targeting epidermal growth factor receptor (EGFR) or vascular endothelial growth factor (VEGF) have demonstrated efficacy with chemotherapy (CT) as second line treatment for metastatic colorectal cancer (mCRC). The right sequence of the treatments in all RAS (KRAS/NRAS) wild type (wt) patients has not precisely defined. We evaluated the impact of aforementioned targeted therapies in second line setting, analyzing efficacy and safety data from phase III clinical trials. We performed both direct and indirect comparisons between anti-EGFR and anti-VEGF. Outcomes included disease control rate (DCR), objective response rate (ORR), progression-free survival (PFS), overall survival (OS) and G3-G5 toxicities. Our results showed significantly improved OS (HR 0.83, 95% CI 0.72-0.94) and DCR (HR 1.27, 95% CI 1.04-1.54) favouring anti-VEGF combinations in overall population; no statistically significant differences in all RAS wt patients was observed (HR 0.87, 95% CI 0.70-1.09). Anti-EGFR combinations significantly increased ORR in all patients (RR 0.54, 95% CI 0.31-0.96), showing a trend also in all RAS wt patients (RR 0.63, 95% CI 0.48-0.83). No significant difference in PFS and DCR all RAS was registered. Our results provided for the first time a strong rationale to manage both targeted agents in second line setting."	"Dermoscopic features in BRAF and NRAS primary cutaneous melanoma: association with peppering and blue-white veil. NA"	"Genomic profiling of primary histiocytic sarcoma reveals two molecular subgroups. Histiocytic sarcoma is a rare malignant neoplasm that may occur de novo or in the context of a previous hematologic malignancy or mediastinal germ cell tumor. Here, we performed whole exome sequencing and RNA-sequencing (RNA-Seq) on 21 archival cases of primary histiocytic sarcoma. We identified a high number of genetic alterations within the RAS/RAF/MAPK pathway in 21 of 21 cases, with alterations in NF1 (6 of 21), MAP2K1 (5 of 21), PTPN11 (4 of 21), BRAF (4 of 21), KRAS (4 of 21), NRAS (1 of 21), and LZTR1 (1 of 21), including single cases with homozygous deletion of NF1, high-level amplification of PTPN11, and a novel TTYH3-BRAF fusion. Concurrent NF1 and PTPN11 mutations were present in 3 of 21 cases, and 5 of 7 cases with alterations in NF1 and/or PTPN11 had disease involving the gastrointestinal tract. Following unsupervised clustering of gene expression data, cases with NF1 and/or PTPN11 abnormalities formed a distinct tumor subgroup. A subset of NF1/PTPN11 wild-type cases had frequent mutations in B-cell lymphoma associated genes and/or clonal IG gene rearrangements. Our findings expand the current understanding of the molecular pathogenesis of this rare tumor and suggest the existence of a distinct subtype of primary histiocytic sarcoma characterized by NF1/PTPN11 alterations with predilection for the gastrointestinal tract."	"The Use of HPLC-PDA in Determining Nicotine and Nicotine-Related Alkaloids from E-Liquids: A Comparison of Five E-Liquid Brands Purchased Locally. E-liquid manufacturers are under scrutiny concerning the purity and concentration accuracy of nicotine and the minor nicotine-related alkaloids (NRAs) packaged in their products. In this communication we report concentrations of nicotine and five NRAs (nornicotine, cotinine, anabasine, anatabine, myosmine) from locally purchased E-liquids. Five brands of E-liquids (three bottles each) were purchased locally. Additionally, three bottles of reference E-liquid were prepared. Concentrations of nicotine and NRAs from each bottle were measured by HPLC. Concentrations of these alkaloids were also determined from electronic cigarette-generated aerosol and traditional cigarette smoke. Nicotine concentrations in E-liquid brands 1, 2, 3, 4, 5 and in the reference E-liquid were 17.8 ± 4.1, 23.2 ± 0.7, 24.0 ± 0.9, 24.9 ± 0.2, 19.7 ± 0.3 and 20.4 ± 0.1 mg/mL, respectively. Concentrations normalized to 100% of product label were 74%, 97%, 100%, 104%, 109% and 102%, respectively. E-liquid brand 1 showed significance (p &lt; 0.001) between bottles, while the reference showed the least variability. Similar results were obtained for the NRAs. Results also indicated the NRAs in aerosol of the reference E-liquid are lower than in cigarette smoke. The amounts of NRAs present in E-liquids and E-liquid aerosol are less compared to cigarettes, however, inconsistencies and variation in nicotine concentrations supports the need for regulatory oversight."	"Binimetinib in heavily pretreated patients with NRAS-mutant melanoma with brain metastases. NA"	"[The analysis of genetic and clinicopathologic characteristics in patients with follicular thyroid neoplasm]. Objective: To explore the molecular characteristics of follicular variant papillary thyroid carcinoma (FVPTC), follicular thyroid adenoma (FTA) and follicular thyroid carcinoma (FTC), and investigate their role in tumorigenesis, differential diagnosis and prognosis evaluation in patients with follicular thyroid neoplasm. Methods: We retrospectively analyzed 50 surgical resection samples of follicular thyroid neoplasm. DNA was obtained from formalin-fixed, paraffin-embedded tissue, and subjected to next-generation sequencing (NGS) to analyze 50 hotspots for mutation in genes. Results: 47 samples passed quality control, including 29 FVPTCs, 8 FTAs and 10 FTCs. 75.9% of FVPTCs harbored mutated genes: BRAF V600E (31.0%, 9/29) was the most frequent, followed by TP53 (27.6%, 8/29), and N/KRAS (20.7%, 6/29). In contrast, 37.5% (3/8) FTAs carried NRAS Q61R mutation with 12.5% (1/8) FTA carrying mutated BRAF G466E. 20% (2/10) FTCs harbored NRAS Q61R mutation, and 20% (2/10) FTCs with TP53 mutations. BRAF V600E gene mutation only appeared in FVPTC, and was associated with age of onset and lymph node metastasis. There was no significant correlation between N/KRAS mutations and clinical pathologic features. Patients with lymph node metastasis group seems to have more TP53 mutation. Conclusions: BRAF V600E gene mutation can be used to identity FVPTC from FTA/FTC. N/KRAS mutations cannot be used as the exclusive indicator of benign and malignant in thyroid follicular tumor. TP53 mutations play an important role in the process of follicular thyroid neoplasm, indicating more aggressive behavior and poor prognosis. 目的: 探讨甲状腺滤泡型乳头状癌(FVPTC)、滤泡性腺瘤(FTA)及滤泡癌(FTC)的分子生物学特征,并分析其基因变异状态在甲状腺滤泡性肿瘤发生起源、鉴别诊断及预后评估中的意义。 方法: 提取50例甲状腺滤泡性肿瘤组织的DNA,进行二代基因测序(NGS),分析50个癌症相关热点基因的变异状态。 结果: NGS基因检测结果质控合格47例。29例FVPTC中,22例检测到基因突变,BRAF V600E基因突变最常见(9例),其次是TP53基因突变(8例)和NRAS基因突变(4例)。8例FTA中,NRAS Q61R突变3例,BRAF G466E突变1例。10例FTC中,NRAS Q61R突变2例,TP53基因突变2例。BRAF V600E基因突变只出现于FVPTC中,与患者发病年龄(P=0.022)、淋巴结转移(P=0.015)有关,RAS基因突变与各临床病理特征无关,TP53突变与淋巴结转移有关(P=0.009)。 结论: BRAF V600E基因突变可用于辅助鉴别诊断FVPTC与FTA、FTC,N/KRAS基因突变不能作为甲状腺滤泡性肿瘤良恶性鉴别诊断的唯一指标。TP53基因突变在甲状腺滤泡性肿瘤的发生发展过程中起着重要作用,可能提示肿瘤侵袭性更高,患者预后更差。."	"Melanocytic Skin Neoplasms: What Lesson From Genomic Aberrations? Studies on the genomic aberrations in melanocytic neoplasms have shown a complex genomic landscape. In nevi and melanomas, a MAP-kinase pathway activation was generally found, produced by different chromosomal aberrations, including BRAF, NRAS, HRAS, GNAQ, GNA11, BAP1, CTNNB1, MAP2K1, PRKAR1A, and NF1 mutations, and ALK, ROS1, NTRK1, RET, MET, BRAF, NTRK3, and PRKCA fusions. Melanomas also showed a variable number of additional mutations ablating tumor-suppression mechanisms and activating other oncogenic pathways, including CDKN2A loss, PTEN loss, as well as TP53 and TERT-promoter mutations. Moreover, borderline melanocytic tumors displayed the same chromosomal aberrations, but more mutations than nevi and fewer than melanomas. In this context, the notion that melanocytic neoplasms can be classified as benign/malignant is hardly supportable, because all neoplasms harbor a certain number of mutations and the progression risk, that is, the malignant potential, is related and proportional to the burden of pathogenic mutations. Moreover, from the genomic analysis, in parallel to the current diagnostic categories of &quot;nevi,&quot; &quot;melanomas,&quot; and &quot;melanocytomas,&quot; some aggregations or classes of tumors based on the characteristic types of driver mutations/fusions emerge as possible and more rationale, including Spitzoid neoplasms, blue neoplasms, BAP1-inactivated melanocytic neoplasms, deep penetrating melanocytic neoplasms, pigment-synthesizing melanocytic neoplasms, and &quot;common&quot; melanocytic neoplasms. Each of these classes, showing the same driver mutations/fusions, demonstrates to have the same pathogenesis and may be genetically considered as a single tumor, although with a variable amount of progression risk. Histologic features, being an expression of the mutational state, could be used to obtain an approximate risk assessment in each single tumor."	"Comprehensive characterization of RAS mutations in colon and rectal cancers in old and young patients. Colorectal cancer (CRC) is increasingly appreciated as a heterogeneous disease, with factors such as microsatellite instability (MSI), cancer subsite within the colon versus rectum, and age of diagnosis associated with specific disease course and therapeutic response. Activating oncogenic mutations in KRAS and NRAS are common in CRC, driving tumor progression and influencing efficacy of both cytotoxic and targeted therapies. The RAS mutational spectrum differs substantially between tumors arising from distinct tissues. Structure-function analysis of relatively common somatic RAS mutations in G12, Q61, and other codons is characterized by differing potency and modes of action. Here we show the mutational profile of KRAS, NRAS, and the less common HRAS in 13,336 CRC tumors, comparing the frequency of specific mutations based on age of diagnosis, MSI status, and colon versus rectum subsite. We identify mutation hotspots, and unexpected differences in mutation spectrum, based on these clinical parameters."	"Genomic profiling of a dedifferentiated mucosal melanoma following exposure to immunotherapy. The treatment landscape for metastatic melanoma has been revolutionised by the introduction of immunotherapy and targeted therapies. Despite these advances, some patients exhibit primary or acquired resistance to treatment. We present the case of a resected mucosal melanoma that on relapse underwent transformation to a dedifferentiated state. The relapsed tumour was phenotypically disparate and demonstrated loss of all typical melanoma-associated immunohistochemical markers. Furthermore, it demonstrated aggressive biological behaviour and immunotherapy resistance. We performed genomic profiling of the original and relapsed tumour to further elucidate the mechanisms underlying this rare phenomenon. Mass spectrometry-based single-nucleotide polymorphism genotyping technology was used to screen for mutations in the original and recurrent tumour. Whole-exome sequencing was performed on the original tumour, recurrent tumour and blood. Both the original and recurrent tumour shared a NRAS mutation, a similar aneuploidy profile and proportion of somatic single-nucleotide variants. However, in contrast to the original tumour, the recurrent tumour demonstrated a lower mutational burden and deletions in the CDKN2A/CDKN2B and CHEK2 genes. The genomic similarity between the original and recurrent tumour attests to a common ancestry and the possible existence of nongenomic drivers inciting phenotype plasticity. In contrast, the low mutational load and potential inactivation of tumour suppressor genes in the recurrent tumour may underlie its rapid proliferative rate and immunoresistance. Dynamic treatment models are desired in the future to track the genomic and epigenetic evolution of a tumour to guide optimal therapy choice and sequencing."	"Clinical and genetic analysis of melanomas arising in acral sites. Melanomas arising in acral sites are associated with a poorer prognosis than other melanoma subtypes. The aim of this study was to evaluate clinical-pathological and genetic characteristics as well as therapeutic responses of a larger cohort of patients with melanomas arising in acral sites. Clinical data of 134 patients with melanomas arising in acral sites from the Dept. of Dermatology Essen were collected and analysed with regard to clinicopathological characteristics and treatment responses. Genetic analysis with targeted next-generation sequencing was done on 50 samples. In our cohort, BRAF (30%), NRAS (28%), TERT promoter (26%), NF1 (14%) and KIT (6%) were frequently identified mutations. Comparing tumours situated on palms and soles with melanomas arising on dorsal acral sites, a higher frequency of NRAS (39.1% versus 25%) and NF1 (17.3% versus 0%) and lower frequencies of BRAF (21.7% versus 75%) and TERT promoter (8.6% versus 50%) mutations were observed. MAPK activating mutations were identified in 64% of tumours. Overall survival was longer in patients treated with immune checkpoint inhibitors as first-line treatment than in patients receiving other systemic therapies (i.e. BRAF/MEK inhibitors and chemotherapy). Our data suggest that the genetics of melanomas arising in acral sites varies by tumour location and may influence biological behaviour."	"An H-TERT Mutated Skin Metastasis as First Occurrence in a Case of Follicular Thyroid Carcinoma. Differentiated thyroid cancer arising from thyroid follicular epithelial cells is the most frequent endocrine malignancy, and skin metastases are very rare. We describe a case of a 70-year-old women with a history of an indeterminate thyroid nodule on cytology. A painless, erythematous skin nodule of about 7 mm diameter was removed from the scalp and diagnosed as a metastasis from thyroid cancer. After total thyroidectomy, a histological diagnosis of follicular thyroid cancer was made. Two cycles of radioactive iodine were performed. Both the follicular thyroid carcinoma (FTC) and the metastasis were investigated for the presence of BRAF/RAS and TERT promoter mutations. The results showed that the cutaneous metastasis was BRAF wild-type and TERT promoter-mutated (position g.1,295,228 C&gt;T); in contrast, the primary thyroid lesion was negative for both molecular markers."	"Prospective evaluation of two screening methods for molecular testing of metastatic melanoma: Diagnostic performance of BRAF V600E immunohistochemistry and of a NRAS-BRAF fully automated real-time PCR-based assay. Screening for theranostic biomarkers is mandatory for the therapeutic management of cutaneous melanoma. BRAF and NRAS genes must be tested in routine clinical practice. The methods used to identify these alterations must be sensitive to detect mutant alleles in a background of wild type alleles, and specific to identify the correct mutation. They should not require too much material, since in some cases the available samples are small biopsies. Finally, they should also be quick enough to allow a rapid therapeutic management of patients. Sixty five consecutive formalin-fixed paraffin-embedded (FFPE) melanoma samples were prospectively tested for BRAF mutations with the VE1 (anti-BRAF V600E) antibody and for both BRAF and NRAS mutations with the Idylla NRAS-BRAF-EGFR S492R Mutation Assay cartridges. Results were compared to our routine laboratory practice, allele specific amplification and/or Sanger sequencing and discordant cases confirmed by digital PCR. Excluding discordant by-design-mutations, system failures and DNA quantity or quality failures, BRAF IHC demonstrated an overall concordance of 89% for BRAF V600E mutation detection, the Idylla system gave a concordance of 100% for BRAF mutation detection and of 92.1% for NRAS mutation detection when compared to our reference. When discrepancies were observed, all routine results were confirmed by digital PCR. Finally, BRAF IHC positive predictive value (PPV) was of 82% and negative predictive value (NPV) of 92%. The Idylla cartridges showed a PPV and NPV of both 100% for BRAF mutation detection and a PPV and NPV of 100% and 87% respectively, for NRAS mutation detection. In conclusion, BRAF V600E immunohistochemistry is efficient for detecting the V600E mutation, but negative cases should be further evaluated by molecular approaches for other BRAF mutations. Since 3 NRAS mutations have not been detected by the Idylla NRAS-BRAF-EGFR S492R Mutation Assay, these cartridges should not be used as a substitute for traditional molecular methods in the conventional patient therapeutic care process without the expertise needed to have a critical view of the produced results."	"RAS-associated Autoimmune Leukoproliferative disease (RALD) manifested with early-onset SLE-like syndrome: a case series of RALD in Chinese children. Primary immunodeficiency diseases (PIDs) patients may show systemic lupus erythematosus (SLE)-like autoimmunity disorders, such as cytopenias, as well as polyarthritis, which leads to concerns of misdiagnosis. We diagnosed three RALD cases between 2015 and 2018, who were suspected as SLE and summarized clinical characteristics. We collected and analyzed the clinical data of the 3 cases. DNA was extracted from the patients' and their parents' peripheral blood as well as oral mucosa cells, hair follicles, and nails. Genes were detected with the application of gene trapping high-throughput sequencing using PIDs panel and suspicious gene or mutation was further verified by Sanger sequencing. 1. On the one hand, the patients presented with severe thrombocytopenia, facial erythema, arthritis, positive autoantibodies and other manifestations, supporting the diagnosis of SLE. On the other hand, symptoms including early onset ages, recurrent infections, lymphadenopathy, hepatosplenomegaly, monocytosis and hypergammaglobulinemia, were common observed in PIDs. 2. Gene analysis: NRAS mutations (c.38G &gt; A, p.G13D or c.37G &gt; T, p.G13C) were found in the blood of the patients. Besides, the same set of mutations was detected in buccal mucosa of patient 1 and nails of patient 3 while the frequency was much lower. However, no mutation was found in other tissues or in their parents' blood. Consequently, they were NRAS somatic mutated RALD. For those early-onset SLE-like patients with predominant hematologic disorders, monocytosis, recurrent infectious history, accompanied with hepatosplenomegaly and lymphadenopathy, a genetic screening of PIDs might be required."	"Molecular biomarkers predicting early development of endometrial carcinoma: A pilot study. Endometrial carcinoma represents the most common gynaecological cancer and the sixth most frequent cancer among women worldwide. The 5-year survival of patients with stage I endometrial carcinoma is 75%-88% versus 50% for stage III or 15% for stage IV disease. Therefore, early detection could improve survival rates. Specifically, in the most prevalent, type 1 endometrial cancer develops from hyperplastic endometrium. The aim of the study was to evaluate the utility of cancer gene mutations from endometrial biopsies towards predicting synchronous or metachronous development of malignant lesions. The aim of the study was to evaluate whether endometrial biopsies could already carry mutations in cancer genes useful for predicting or anticipating subsequent cancer development. Patients with a previous endometrial biopsy negative for cancer, followed by a subsequent biopsy positive for cancer, were included in the study. A fifty cancer genes targeted next-generation sequencing panel were used to investigate mutations in matched non-cancerous and malignant samples. All biopsies from cancer tissues harboured mutations in one or more of the following genes: APC, CTNNB1, FBXW7, HNF1A, KRAS, MTOR, NRAS, PIK3CA, PTEN, RB1 and TP53. Additionally, 50% of the biopsies from matched non-cancerous tissues exhibited mutations in PTEN, KRAS or PIK3CA genes. These results suggest that detecting pathogenic mutations in oncogenes or tumour suppressor genes in an otherwise benign condition is associated with a risk of developing a malignant disease. Given the identification of mutations several months or years before the appearance of a malignancy, our finding suggests that a closer monitoring of patients who present such molecular alterations in non-cancerous uterine mass is warranted."	"Genetic alterations in primary melanoma in Taiwan. Acral melanoma (AM) is the most common histopathological subtype of malignant melanoma in Asians. However, differences in the mutational profiles underlying AM and nonacral cutaneous melanoma (NAM) in Asians are not well understood. To augment the understanding of the prevalence, patterns and associations of various mutations between different subtypes of melanoma. We performed comprehensive genomic profiling of 409 cancer-associated genes, using next-generation sequencing, in 66 primary melanomas comprised of 45 AMs and 21 NAMs. Most of the AMs (n = 27/45; 60%), but only five of 21 (24%) NAMs, were triple wild-type (triple-WT) tumours. Compared with AMs, NAMs exhibited a significantly higher frequency of BRAF mutations. The frequencies of NRAS/KRAS mutations, cell-cycle aberrations, copy number gains in BIRC2, BIRC3 and BIRC5, and gains of receptor tyrosine kinase genes were significantly higher in AMs. Ulceration was found at significantly higher rates in the AMs and NAMs with cell-cycle aberrations and gains of receptor tyrosine kinase genes. Notably, cell-cycle aberrations and copy number gains in BIRC2, BIRC3 and BIRC5 were significantly associated with poor melanoma-specific survival in the 66 patients with melanoma and especially in the 45 patients with AM. Multivariate analysis showed that lymph node metastasis and cell-cycle aberrations were independent prognostic factors of melanoma-specific survival. This study strengthens our understanding of the patterns and clinical associations of oncogenic mutations in AMs and NAMs in Asians. What's already known about this topic? Mutation frequencies of driver genes vary between melanoma subtypes. Acral melanoma is the most common subtype of melanoma in Asians. KIT mutations and copy number variations occur more frequently in the acral subtype of melanoma than in the nonacral subtype What does this study add? NRAS/KRAS mutations, cell-cycle aberrations, copy number gains in BIRC2, BIRC3 and BIRC5, and amplifications of receptor tyrosine kinase genes were significantly enriched in acral melanoma and could be potential targets for treatment. Melanomas with cell-cycle aberrations and gains in receptor tyrosine kinase genes were significantly more likely to contain ulceration. What is the translational message? Cell-cycle aberrations and copy number gains in BIRC2, BIRC3 and BIRC5 were significantly associated with poor melanoma-specific survival. These observations should be explored further for future drug development."	"Neuroblastoma rat sarcoma mutated melanoma: That's what we got so far. Neuroblastoma rat sarcoma (NRAS) mutation, occurring in about 20%-30% of cutaneous melanomas, leads to activation of RAS-RAF-MAPK cascade and represents a clear distinct clinicopathological entity in melanoma. In contrast with BRAF mutant melanoma, no specific target therapies are available outside the setting of clinical trials. In the field of immunoncology, the predictive role of NRAS mutation with respect to checkpoint inhibitors treatment has not clearly established and deserves further investigation. At present, the standard treatment is the same as for BRAF wild type melanoma. Ongoing trials are exploring novel combination strategies among patients with advanced NRAS mutant melanoma."	"Atypical BRAF and NRAS Mutations in Mucosal Melanoma. Primary mucosal melanomas represent a minority of melanomas, but have a significantly worse prognosis than cutaneous melanomas. A better characterization of the molecular pathogenesis of this melanoma subtype could help us understand the risk factors associated with the development of mucosal melanomas and highlight therapeutic targets. Because the Mitogen-Activated Protein Kinase (MAPK) pathway plays such a significant role in melanoma development, we explore v-raf murine sarcoma viral oncogene homolog B (BRAF) and neuroblastoma RAS viral oncogene homolog (NRAS) mutations in mucosal melanoma and compare them to the mutation profiles in cutaneous melanoma and other tumors with BRAF and NRAS mutations. We show that in addition to being less frequent, BRAF and NRAS mutations are different in mucosal melanoma compared to cutaneous melanomas. Strikingly, the BRAF and NRAS mutation profiles in mucosal melanoma are closer to those found in cancers such as lung cancer, suggesting that mutations in mucosal melanoma could be linked to some genotoxic agents that remain to be identified. We also show that the atypical BRAF and NRAS mutations found in mucosal melanomas have particular effects on protein activities, which could be essential for the transformation of mucosal melanocytes."	"[Somatic Mutations Associated with Metastasis in Acral Melanoma]. Acral melanoma is one of the most aggressive and fast-growing forms of cutaneous melanoma and is characterized by a predominant location on the palms and feet. Primary tumors, metastases, and normal tissue samples from five acral melanoma patients were examined by massive parallel sequencing, focusing on the coding regions of 4100 genes involved in the origin and progression of hereditary and oncology diseases. Somatic mutations were found in genes related to cell division, proliferation, and apoptosis (BRAF, NRAS, VAV1, GATA1, and GCM2); cell adhesion (CTNND2 and ITGB4); angiogenesis (VEGFA); and the regulation of energy metabolism (BCS1L). Comparisons of target DNA sequences between morphologically normal and primary tumor tissues and between normal and metastatic tissues identified the candidate genes responsible for rapid metastasis in acral melanoma."	"Phase Ib Study of Combination Therapy with MEK Inhibitor Binimetinib and Phosphatidylinositol 3-Kinase Inhibitor Buparlisib in Patients with Advanced Solid Tumors with RAS/RAF Alterations. This multicenter, open-label, phase Ib study investigated the safety and efficacy of binimetinib (MEK inhibitor) in combination with buparlisib (phosphatidylinositol 3-kinase [PI3K] inhibitor) in patients with advanced solid tumors with RAS/RAF alterations. Eighty-nine patients were enrolled in the study. Eligible patients had advanced solid tumors with disease progression after standard therapy and/or for which no standard therapy existed. Evaluable disease was mandatory, per RECIST version 1.1 and Eastern Cooperative Oncology Group performance status 0-2. Binimetinib and buparlisib combinations were explored in patients with KRAS-, NRAS-, or BRAF-mutant advanced solid tumors until the maximum tolerated dose and recommended phase II dose (RP2D) were defined. The expansion phase comprised patients with epidermal growth factor receptor (EGFR)-mutant, advanced non-small cell lung cancer, after progression on an EGFR inhibitor; advanced RAS- or BRAF-mutant ovarian cancer; or advanced non-small cell lung cancer with KRAS mutation. At data cutoff, 32/89 patients discontinued treatment because of adverse events. RP2D for continuous dosing was buparlisib 80 mg once daily/binimetinib 45 mg twice daily. The toxicity profile of the combination resulted in a lower dose intensity than anticipated. Six (12.0%) patients with RAS/BRAF-mutant ovarian cancer achieved a partial response. Pharmacokinetics of binimetinib were not altered by buparlisib. Pharmacodynamic analyses revealed downregulation of pERK and pS6 in tumor biopsies. Although dual inhibition of MEK and the PI3K pathways showed promising activity in RAS/BRAF ovarian cancer, continuous dosing resulted in intolerable toxicities beyond the dose-limiting toxicity monitoring period. Alternative schedules such as pulsatile dosing may be advantageous when combining therapies. Because dysregulation of the mitogen-activated protein kinase (MAPK) and the phosphatidylinositol 3-kinase (PI3K) pathways are both frequently involved in resistance to current targeted therapies, dual inhibition of both pathways may be required to overcome resistance mechanisms to single-agent tyrosine kinase inhibitors or to treat cancers with driver mutations that cannot be directly targeted. A study investigating the safety and efficacy of combination binimetinib (MEK inhibitor) and buparlisib (PI3K inhibitor) in patients harboring alterations in the RAS/RAF pathway was conducted. The results may inform the design of future combination therapy trials in patients with tumors harboring mutations in the PI3K and MAPK pathways."	"Dynamic and unpredictable changes in mutant allele fractions of BRAF and NRAS during visceral progression of cutaneous malignant melanoma. Data indicate that primary cutaneous melanomas are characterized by clonal heterogeneity associated with oncogenic drivers. Less data are available on the clonal changes occurring during melanoma progression. We therefore wished to analyse these changes in skin melanomas in common sites of visceral metastases as compared to the primary tumor. An autopsy cohort of 50 patients with BRAF- and NRAS-mutant cutaneous metastatic melanomas including 139 visceral metastases was analysed for mutant allele fractions (MAF), determined by pyrosequencing and corrected for tumor/normal ratio. MAF levels were also classified as high (&gt; 40%), medium (15-40%) or low (&lt; 15%). Contrary to NRAS mutant cases, in BRAF-mutant melanomas MAFs were found to be significantly increased in visceral metastases compared to the primary due to the significantly higher levels in lung-, adrenal gland-, intestinal- and kidney metastases. The incidence of the three MAF variants in BRAF-mutant primaries was similar, whereas the high MAF cases were found to be increased in metastases. On the other hand, medium MAF levels were more common in case of NRAS-mutant tumors. Only 31.3% of BRAF mutant- and 50% of NRAS mutant cases maintained the MAF profile of the primary in metastasis. In the majority of multiple metastatic tumors, (BRAF:71.8%, NRAS:75%) metastases were relatively homogeneous regarding MAF. However, in 6/32(18.7%) of BRAF mutant cases low MAF primaries switched to high MAF in metastases. In heterogeneous BRAF mutant metastatic cases low to high or high to low MAF conversions occurred in a further 4/32(12.5%) cases in individual metastases as compared to the primary tumors. At lower frequency, in NRAS mutant tumor such changes also observed (2/12,16.7%). We provided evidence for the selection of BRAF-mutant melanoma cells during metastatic progression to the lung, intestine, adrenal gland and kidney. Our findings suggest that in visceral metastases of malignant melanoma BRAF- or NRAS-MAFs are rather heterogeneous and cannot be predicted from data of the primary tumor. These data may have clinical significance when using targeted therapies."	"Isoform-Specific Destabilization of the Active Site Reveals a Molecular Mechanism of Intrinsic Activation of KRas G13D. Ras GTPases are mutated at codons 12, 13, and 61, with different frequencies in KRas, HRas, and NRas and in a cancer-specific manner. The G13D mutant appears in 25% of KRas-driven colorectal cancers, while observed only rarely in HRas or NRas. Structures of Ras G13D in the three isoforms show an open active site, with adjustments to the D13 backbone torsion angles and with disconnected switch regions. KRas G13D has unique features that destabilize the nucleotide-binding pocket. In KRas G13D bound to GDP, A59 is placed in the Mg<sup>2+</sup> binding site, as in the HRas-SOS complex. Structure and biochemistry are consistent with an intermediate level of KRas G13D bound to GTP, relative to wild-type and KRas G12D, observed in genetically engineered mouse models. The results explain in part the elevated frequency of the G13D mutant in KRas over the other isoforms of Ras."	"A UK study: vocational experiences of young adults with juvenile idiopathic arthritis. NA"	"Cysteine-based regulation of redox-sensitive Ras small GTPases. Reactive oxygen and nitrogen species (ROS and RNS, respectively) activate the redox-sensitive Ras small GTPases. The three canonical genes (HRAS, NRAS, and KRAS) are archetypes of the superfamily of small GTPases and are the most common oncogenes in human cancer. Oncogenic Ras is intimately linked to redox biology, mainly in the context of tumorigenesis. The Ras protein structure is highly conserved, especially in effector-binding regions. Ras small GTPases are redox-sensitive proteins thanks to the presence of the NKCD motif (Asn116-Lys 117-Cys118-Asp119). Notably, the ROS- and RNS-based oxidation of Cys118 affects protein stability, activity, and localization, and protein-protein interactions. Cys residues at positions 80, 181, 184, and 186 may also help modulate these actions. Moreover, oncogenic mutations of Gly12Cys and Gly13Cys may introduce additional oxidative centres and represent actionable drug targets. Here, the pathophysiological involvement of Cys-redox regulation of Ras proteins is reviewed in the context of cancer and heart and brain diseases."	"Prognostic model for patient survival in primary anorectal mucosal melanoma: stage at presentation determines relevance of histopathologic features. Pathological staging of primary anorectal mucosal melanoma is often performed according to the American Joint Commission on Cancer (AJCC) guidelines for cutaneous melanoma, as an anorectal melanoma-specific staging system does not exist. However, it remains unknown whether prognostic factors derived for cutaneous melanoma also stratify risk in anorectal melanoma. We retrospectively determined correlations between clinicopathological parameters and disease-specific survival in 160 patients. Patients were grouped by clinical stage at presentation (localized disease, regional or distant metastases). Cox proportional hazards regression models determined associations with disease-specific survival. We also summarized the somatic mutations identified in a subset of tumors analyzed for hotspot mutations in cancer-associated gene panels. Most of the patients were white (82%) and female (61%). The median age was 62 years. With a median follow-up of 1.63 years, median disease-specific survival was 1.75 years, and 121 patients (76%) died of anorectal melanoma. Patients presenting with regional (34%) or distant metastases (24%) had significantly shorter disease-specific survival compared to those with disease localized to the anorectum (42%). Of the 71 anorectal melanoma tumors analyzed for hotspot genetic alterations, somatic mutations involving the KIT gene (24%) were most common followed by NRAS (19%). Increasing primary tumor thickness, lymphovascular invasion, and absence of regression also correlated with shorter disease-specific survival. Primary tumor parameters correlated with shorter disease-specific survival in patients presenting with localized disease (tumor thickness) or regional metastases (tumor thickness, absence of regression, and lymphovascular invasion), but not in patients presenting with distant metastases. Grouping of patients according to a schema based on modifications of the 8th edition AJCC cutaneous melanoma staging system stratified survival in anorectal melanoma. Our findings support stage-specific associations between primary tumor parameters and disease-specific survival in anorectal melanoma. Moreover, the AJCC cutaneous melanoma staging system and minor modifications of it predicted survival among anorectal melanoma patients."	"Germline and somatic mutations in patients with multiple primary melanomas: a next generation sequencing study. Multiple primary melanomas (MPM) occur up to 8% of patients with cutaneous malignant melanoma (CMM). They are often sporadic harbouring several somatic mutations, but also familial cases harbouring a CDKN2A germline mutation have been describe in Caucasian populations. The aim of this study was to investigate the incidence, the distribution patterns and the impact of known and unknown germline and somatic mutations in patients with MPM from Italy. One-hundred and two MPM patients were enrolled for germline mutation analysis, and five patients with at least four MPMs were identified for somatic mutation analysis. The demographic, pathologic and clinical features were retrieved from medical records. Molecular analysis for both germline and somatic mutations was performed in genomic DNA from peripheral blood and tissue samples, respectively, through a next generation sequencing approach, using a specific multiple-gene panel constructed by the Italian Melanoma Intergroup for somatic analysis and a commercial cancer hotspot panel for somatic analysis. CDKN2A mutations were detected in 6/16 (37.5%) and 3/86 (3.5%) MPM cases with and without family history for melanoma, respectively. Furthermore, multiple MC1R and, to a lesser extent, ATM variants have been identified. BAP1 variants were found only in MPM patients from southern Italy. The most frequent somatic variants were the pathogenic BRAF<sup>V600E</sup> and TP53, followed by KIT, PIK3CA, KDR, and NRAS. Single APC, ERBB4, MET, JAK3 and other variants with unknown function were also detected. CDNK2A mutation is the most relevant susceptibility mutation in Italian patients with MPM, especially those with a family history for CMM. The prevalence of this mutation and other sequence variants identified in this study varies among specific sub-populations. Furthermore, some heterogeneity in driver somatic mutations between sporadic MPMs has been observed, as well as in a number of associated sequence variants the clinical impact of which needs to be further elucidated."	"CD133 Is Associated with Increased Melanoma Cell Survival after Multikinase Inhibition. FDA-approved kinase inhibitors are now used for melanoma, including combinations of the MEK inhibitor trametinib, and BRAF inhibitor dabrafenib for BRAFV600 mutations. NRAS-mutated cell lines are also sensitive to MEK inhibition in vitro, and NRAS-mutated tumors have also shown partial response to MEK inhibitors. However, melanoma still has high recurrence rates due to subpopulations, sometimes described as &quot;melanoma initiating cells,&quot; resistant to treatment. Since CD133 is a putative cancer stem cell marker for different cancers, associated with decreased survival, we examined resistance of patient-derived CD133(+) and CD133(-) melanoma cells to MAPK inhibitors. Human melanoma cells were exposed to increasing concentrations of trametinib and/or dabrafenib, either before or after separation into CD133(+) and CD133(-) subpopulations. In parental CD133-mixed lines, the percentages of CD133(+) cells increased significantly (p&lt;0.05) after high-dose drug treatment. Presorted CD133(+) cells also exhibited significantly greater (p&lt;0.05) IC50s for single and combination MAPKI treatment. siRNA knockdown revealed a causal relationship between CD133 and drug resistance. Microarray and qRT-PCR analyses revealed that ten of 18 ABC transporter genes were significantly (P&lt;0.05) upregulated in the CD133(+) subpopulation, while inhibition of ABC activity increased sensitivity, suggesting a mechanism for increased drug resistance of CD133(+) cells."	"Targeted sequencing aids in identifying clonality in chronic myelomonocytic leukemia. Chronic myelomonocytic leukemia (CMML) typically shows monocytosis in the peripheral blood (PB), which must be differentiated from reactive monocytosis. To determine the clonality of CMML, we performed molecular and cytogenetic analysis in Korean patients. To investigate whether monocytes in the PB harbored clonal mutational changes, we performed single-cell sequencing after selecting monocytes, neutrophils, and lymphocytes by morphology-aided laser microdissection. Targeted sequencing was performed in 35 patients with CMML with 41 bone marrow samples. Single-cell analysis was performed in two cases. Most (94.3%) patients harbored at least one variant, in genes considered as potential therapeutic targets, while cytogenetic aberrations occurred in only 28.6% of cases. ASXL1 (54.3%), SRSF2 (37.1%), NRAS (31.4%), and TET2 (25.7%) were frequently mutated, with lower frequencies of TET2 mutation and higher frequencies of NRAS, DNMT3A (17.1%), and NPM1 (11.4%) mutations compared to in previous studies of Caucasians. Patients with SETBP1 mutation and those with more than two variants showed poorer survival than those without mutation (P &lt; 0.001 and P = 0.007, respectively). Most (70.8%) variants were detected at diagnosis and follow-up with no significant differences in variant allele frequency, warranting sequencing during follow-up if diagnostic samples were unavailable. Single-cell analysis revealed clonal monocytes with mutations, and the same mutations were also identified in lymphocytes and neutrophils. Targeted sequencing aided in clonality detection in most patients with CMML and single-cell sequencing facilitated identification of clonal monocytes and the co-existence of mutations in non-myeloid cells, suggesting that certain mutations are acquired by pluripotent stem cells."	"Non-conventional mucosal lesions (serrated epithelial change, villous hypermucinous change) are frequent in patients with inflammatory bowel disease-results of molecular and immunohistochemical single institutional study. Chronically inflamed mucosa in inflammatory bowel disease (IBD) is associated with an increased risk of cancer. Besides IBD-associated dysplasia, there are non-conventional mucosal changes that may act as potential precursors. The aim of the study was to retrospectively review samples from IBD patients focusing on detection of such lesions with evaluation of their immunohistochemical and molecular properties. Surgical specimens and/or endoscopical biopsy samples of IBD patients examined during a 10-year period were reviewed. Detected mucosal lesions were divided into three groups-group 1 (non-conventional or putative precursor lesions - PPLs) with serrated or villous hypermucinous morphology, group 2 (true serrated polyps fulfilling valid criteria), and group 3 (IBD-associated neoplasia). Lesions from all groups were analyzed with antibodies against MLH1, p53, and MGMT and by molecular testing of KRAS, NRAS, and BRAF mutation. Samples from 309 IBD patients were reviewed. A total of 88 mucosal lesions were found in 51 patients. Most common were lesions from group 1 with superficial serrated epithelial change seen in 41 samples (46.6%) and villous hypermucinous change in 6 (6.8%). Group 2 consisted of 15 true serrated polyps. Six conventional IBD-dysplasia cases and 11 carcinomas were seen in group 3. Six lesions from group 1 were associated with invasive carcinoma whereas two shared the same mutation in KRAS or BRAF. Lesions from group 1 were characterized by loss of MGMT expression in 44.6%, aberrant p53 expression, and by mutations in KRAS gene in 42.9% of cases. This study proves the existence of mucosal changes other than conventional IBD-dysplasia and extends the knowledge about their immunohistochemical and molecular properties and relation to carcinoma further supporting their potential role in IBD-related carcinogenesis."	"Analyses of molecular and histopathologic features and expression of PRAME by immunohistochemistry in mucosal melanomas. Mucosal melanomas are rare, and less is known about the biomarkers of this subtype in comparison to cutaneous or uveal melanomas. Preferentially expressed antigen in melanoma (PRAME) has been studied as a tool for prognostication of uveal melanomas, and immunotherapy against PRAME-expressing tumor cells has already shown promise. Our goal was to retrospectively analyze 29 cases of mucosal melanomas at our institution to determine if any molecular and histopathologic prognosticators could be identified, as well as to study PRAME expression and its association with prognosis. We found that the majority of mucosal melanomas expressed PRAME and a high PRAME expression score predicted a poor prognosis. There was no association between prognosis and the histomorphologic features analyzed, such as presence of spindle cell or epithelioid predominance. BRAF mutations were absent in 16 of 16 cases tested. Pathogenic NRAS mutations were detected in 3 of 11 cases tested and were associated with shorter overall survival compared to those without NRAS alterations, but the presence of NRAS mutations did not correlate with PRAME expression. In conclusion, an increase in PRAME expression and the presence of a pathogenic NRAS were both associated with a worse prognosis in mucosal melanomas."	"Immunomorphology and molecular biology of mixed primary liver cancers: is Nestin a marker of intermediate-cell carcinoma? Primary mixed liver cancers (PLCs), combined hepatocellular-cholangiocellular (cHCC-CC) and intermediate-cell carcinomas are rare tumours characterised by different molecular mechanisms. Nestin is a marker of progenitor cells with a promising application in human tumours. The aims of the present paper are (i) to determine the expression of Nestin in mixed PLCs; and (ii) to correlate the PLC immunoprofile with the gene expression in each tumour component. We selected 28 mixed PLCs, 13 (46.4%) cHCC-CC and 15 (53.6%) intermediate-cell carcinomas. The immunohistochemistry panel consisted of keratin 7, keratin 19, CD56 and Nestin. Next-generation sequencing analysis was performed on 17 cases (27 specimens) using a multi-gene custom panel. The differentiated HCC and CC components of cHCC-CC were negative for Nestin in all cases. The intermediate areas of cHCC-CC were immunoreactive for Nestin in 92.3% of cases, for CD56 in 76.9% and for K7/K19 in all cases. The immunoprofile of the intermediate-cell carcinomas showed 73.3% of cases positive for Nestin and 66.7% for CD56. TP53 and TERT were the most frequently mutated genes (31.3% and 17.6% of samples, respectively). Mutations were also found in IDH1, IDH2, PIK3CA and NRAS genes. Intermediate and HCC areas of cHCC-CC seemed to share the same mutational profile, and both harboured different mutations than the CC component. According to our preliminary data, Nestin was not expressed by hepatocellular or cholangiocellular-cell components, but was expressed by most of the intermediate cells in PLCs, and therefore could be considered in the differential diagnosis of PLCs, together with mutational profile."	"A phase 2 study of panitumumab with irinotecan as salvage therapy in chemorefractory KRAS exon 2 wild-type metastatic colorectal cancer patients. Targeted agents are standard treatment for RAS wild-type metastatic colorectal cancer in the first- and second-line settings. This phase 2 study determined the benefit of targeting the epidermal growth factor receptor (EGFR) with panitumumab plus irinotecan in irinotecan-refractory patients. KRAS exon-2 wild-type patients failing prior irinotecan received panitumumab (6 mg/kg) and irinotecan (180 mg/m²) every 2 weeks. The primary endpoint was the overall response rate (ORR). Secondary endpoints included safety, progression-free survival (PFS) and overall survival (OS). KRAS exon-2 status was evaluated centrally, along with NRAS, BRAF mutations, epiregulin, amphiregulin, PTEN and EGFR copy number status, and correlated with efficacy. Sixty-one patients were treated. Among the 46 wild-type RAS patients, the ORR was 15.2% (seven partial responses), with median PFS of 3.8 months (95% CI 2.7-4.3) and median OS of 12.5 months (95% CI 6.7-15.9). Wild-type BRAF patients showed a 13.0% response rate. No significant correlations between response and baseline biomarker expression were identified. Common grade 3-4 adverse events were diarrhoea and rash (18.0% each), hypomagnesaemia and asthenia (8.2% each). The addition of panitumumab to irinotecan as salvage therapy is feasible but has limited activity in irinotecan-refractory metastatic colorectal cancer. No biomarkers predictive of response were identified."	"Macroenvironment-gene-microenvironment interactions in ultraviolet radiation-induced melanomagenesis. Cutaneous malignant melanoma is one of the few major cancers that continue to exhibit a positive rate of increase in the developed world. A wealth of epidemiological data has undisputedly implicated ultraviolet radiation (UVR) from sunlight and artificial sources as the major risk factor for melanomagenesis. However, the molecular mechanisms of this cause-and-effect relationship remain murky and understudied. Recent efforts on multiple fronts have brought unprecedented expansion of our knowledge base on this subject and it is now clear that melanoma is caused by a complex interaction between genetic predisposition and environmental exposure, primarily to UVR. Here we provide an overview of the effects of the macroenvironment (UVR) on the skin microenvironment and melanocyte-specific intrinsic (mostly genetic) landscape, which conspire to produce one of the deadliest malignancies."	"Microarray Approach Combined with ddPCR: An Useful Pipeline for the Detection and Quantification of Circulating Tumour dna Mutations. : It has now been established that in biological fluids such as blood, it is possible to detect cancer causing genomic alterations by analysing circulating tumour DNA (ctDNA). Information derived from ctDNA offers a unique opportunity to enrich our understanding of cancer biology, tumour evolution and therapeutic efficacy and resistance. Here, we propose a workflow to identify targeted mutations by a customized microarray-based assay for the simultaneous detection of single point mutations in different oncogenes (KRAS, NRAS and BRAF) followed by droplet digital PCR (ddPCR) to determine the fractional abundance of the mutated allele. Genetic variants were determined in the plasma of 20 metastatic colorectal cancer (mCRC) patients previously genotyped on tissue biopsy at the diagnosis for medication planning (T0) and following the tumour genetic evolution during treatment phase (T1 and T2) with the objective of allowing therapy response prediction and monitoring. Our preliminary results show that this combined approach is suitable for routine clinical practice. The microarray platform enables for a rapid, specific and sensitive detection of the most common mutations suitable for high-throughput analysis without costly instrumentation while, the ddPCR, consents an absolute quantification of the mutated allele in a longitudinal observational study on patients undergoing targeted therapy."	"Analytical and clinical validation of a novel amplicon-based NGS assay for the evaluation of circulating tumor DNA in metastatic colorectal cancer patients. Background Evaluating the tumor RAS/BRAF status is important for treatment selection and prognosis assessment in metastatic colorectal cancer (mCRC) patients. Correction of artifacts from library preparation and sequencing is essential for accurately analyzing circulating tumor DNA (ctDNA) mutations. Here, we assessed the analytical and clinical performance of a novel amplicon-based next-generation sequencing (NGS) assay, Firefly™, which employs a concatemer-based error correction strategy. Methods Firefly assay targeting KRAS/NRAS/BRAF/PIK3CA was evaluated using cell-free DNA (cfDNA) reference standards and cfDNA samples from 184 mCRC patients. Plasma results were compared to the mutation status determined by ARMS-based PCR from matched tissue. Samples with a mutation abundance below the limit of detection (LOD) were retested again by droplet digital polymerase chain reaction (ddPCR) or NGS. Results The Firefly assay demonstrated superior sensitivity and specificity with a 98.89% detection rate at an allele frequency (AF) of 0.2% for 20 ng cfDNA. Generally, 40.76% and 48.37% of the patients were reported to be positive by NGS of plasma cfDNA and ARMS of FFPE tissue, respectively. The concordance rate between the two platforms was 80.11%. In the pre-treatment cohort, the concordance rate between plasma and tissue was 93.33%, based on the 17 common exons that Firefly™ and ARMS genotyped, and the positive percent agreement (PPA) and negative percent agreement (NPA) for KRAS/NRAS/BRAF/PIK3CA were 100% and 99.60%, respectively. Conclusions Total plasma cfDNA detected by Firefly offers a viable complement for mutation profiling in CRC patients, given the high agreement with matched tumor samples. Together, these data demonstrate that Firefly could be routinely applied for clinical applications in mCRC patients."	"LZTR1 facilitates polyubiquitination and degradation of RAS-GTPases. Leucine zipper-like transcriptional regulator 1 (LZTR1) encodes a member of the BTB-Kelch superfamily, which interacts with the Cullin3 (CUL3)-based E3 ubiquitin ligase complex. Mutations in LZTR1 have been identified in glioblastoma, schwannomatosis, and Noonan syndrome. However, the functional role of LZTR1 in carcinogenesis or human development is not fully understood. Here, we demonstrate that LZTR1 facilitates the polyubiquitination and degradation of RAS via the ubiquitin-proteasome pathway, leading to the inhibition of the RAS/MAPK signaling. The polyubiquitination and degradation of RAS was also observed in cells expressing MRAS, HRAS, NRAS, and KRAS as well as oncogenic RAS mutants and inhibited the activation of ERK1/2 and cell growth. In vivo ubiquitination assays showed that MRAS-K127 and HRAS-K170 were ubiquitinated by LZTR1 and that the polyubiquitinated-chains contained mainly Ub-K48, K63, and K33-linked chains, suggesting its possible involvement in autophagy. Immunoprecipitation analyses showed the interaction of LZTR1 and RAS-GTPases with autophagy-related proteins, including LC3B and SQSTM1/p62. Co-expression of LZTR1 and RAS increased the expression of lipidated form of LC3B. However, long-term treatment with chloroquine had little effect on RAS protein levels, suggesting that the contribution of autophagy to LZTR1-mediated RAS degradation is minimal. Taken together, these results show that LZTR1 functions as a &quot;RAS killer protein&quot; mainly via the ubiquitin-proteasome pathway regardless of the type of RAS GTPase, controlling downstream signal transduction. Our results also suggest a possible association of LZTR1 and RAS-GTPases with the autophagy. These findings provide clues for the elucidation of the mechanisms of RAS degradation and regulation of the RAS/MAPK signaling cascade."	"Superficial and Deep Cutaneous Involvement by RAS-Associated Autoimmunne Leukoproliferative Disease (RALD Cutis): A Histologic Mimicker of Histiocytoid Sweet Syndrome. RAS-associated autoimmune leukoproliferative disease (RALD) is a recently described noninfectious and nonmalignant clinical syndrome characterized by autoimmune disorders, massive splenomegaly, modest lymphadenopathy, and monocytosis. On the molecular level, RALD is defined by somatic mutations of either NRAS or KRAS gene in a subset of hematopoietic cells. To date, there is a dearth of well-documented histopathologic description of cutaneous involvement by RALD in the literature. In the current case report, a 43-year-old female patient with a history of RALD presented with clinical pictures of sepsis and an erythematous rash in the left lower extremity. Histologic examination revealed a dense perivascular and interstitial infiltrate of immature myeloid cells admixed with scattered neutrophils involving the dermis and subcutaneous adipose tissue, imparting a panniculitis-like histologic pictures. There was a strong angiocentric propensity of the immature hematopoietic cells as well as extensive extravasation of red blood cells, even in the subcutaneous adipose tissue. Immunohistochemically, the immature hematopoietic cells were positive for CD43, CD4, and CD68, but negative for CD34, CD117, and myeloperoxidase. Overall, the histologic and cytologic findings were highly reminiscent of histiocytoid Sweet syndrome. Review of the English literature revealed cutaneous involvements by RALD only in patients with KRAS mutation compared with none of its NRAS counterparts. However, larger clinicopathologic studies on cutaneous involvement by RALD are warranted. The term &quot;RALD cutis&quot; with its histologic and molecular features is suggested to serve as a potential groundwork for future studies of this rare phenomenon."	"Drugging an undruggable pocket on KRAS. The 3 human RAS genes, KRAS, NRAS, and HRAS, encode 4 different RAS proteins which belong to the protein family of small GTPases that function as binary molecular switches involved in cell signaling. Activating mutations in RAS are among the most common oncogenic drivers in human cancers, with KRAS being the most frequently mutated oncogene. Although KRAS is an excellent drug discovery target for many cancers, and despite decades of research, no therapeutic agent directly targeting RAS has been clinically approved. Using structure-based drug design, we have discovered BI-2852 (1), a KRAS inhibitor that binds with nanomolar affinity to a pocket, thus far perceived to be &quot;undruggable,&quot; between switch I and II on RAS; 1 is mechanistically distinct from covalent KRAS<sup>G12C</sup> inhibitors because it binds to a different pocket present in both the active and inactive forms of KRAS. In doing so, it blocks all GEF, GAP, and effector interactions with KRAS, leading to inhibition of downstream signaling and an antiproliferative effect in the low micromolar range in KRAS mutant cells. These findings clearly demonstrate that this so-called switch I/II pocket is indeed druggable and provide the scientific community with a chemical probe that simultaneously targets the active and inactive forms of KRAS."	"Genomic and epigenomic predictors of response to guadecitabine in relapsed/refractory acute myelogenous leukemia. Guadecitabine is a novel DNA methyltransferase (DNMT) inhibitor with improved pharmacokinetics and clinical activity in a subset of patients with relapsed/refractory acute myeloid leukemia (r/r AML), but identification of this subset remains difficult. To search for biomarkers of response, we measured genome-wide DNA methylation, mutations of 54 genes, and expression of a panel of 7 genes in pre-treatment samples from 128 patients treated at therapeutic doses in a phase I/II study. Response rate to guadecitabine was 17% (2 complete remission (CR), 3 CR with incomplete blood count recovery (CRi), or CR with incomplete platelets recovery (CRp)) in the phase I component and 23% (14 CR, 9 CRi/CRp) in phase II. There were no strong mutation or methylation predictors of response. Gene expression clustering defined a subset of patients (~ 20%) that had (i) high DNMT3B and low CDKN2B, CTCF, and CDA expression; (ii) enrichment for KRAS/NRAS mutations; (iii) frequent CpG island hypermethylation; (iv) low long interspersed nuclear element 1 (LINE-1) hypomethylation after treatment; and (v) resistance to guadecitabine in both phase I (response rate 0% vs. 33%, p = 0.07) and phase II components of the study (response rate 5% vs. 30%, p = 0.02). Multivariate analysis identified peripheral blood (PB) blasts and hemoglobin as predictors of response and cytogenetics, gene expression, RAS mutations, and hemoglobin as predictors of survival. A subset of patients (~ 20%) with r/r AML is unlikely to benefit from guadecitabine as a single agent. In the remaining 80%, guadecitabine is a viable option with a median survival of 8 months and a 2-year survival rate of 21%. NCT01261312 ."	"Organization of Farnesylated, Carboxymethylated KRAS4B on Membranes. Mutations of the Ras proteins HRAS, KRAS4A, KRAS4B, and NRAS are associated with a high percentage of all human cancers. The proteins are composed of highly homologous N-terminal catalytic or globular domains, plus C-terminal hypervariable regions (HVRs). Post-translational modifications of all RAS HVRs helps target RAS proteins to cellular membrane locations where they perform their signaling functions. For the predominant KRAS4 isoform, KRAS4B, post-translational farnesylation and carboxymethylation, along with a patch of HVR basic residues help foster membrane binding. Recent investigations implicate membrane-bound RAS dimers, oligomers, and nanoclusters as landing pads for effector proteins that relay RAS signals. The details of these RAS signaling platforms have not been elucidated completely, in part due to the difficulties in preparing modified proteins. We have employed properly farnesylated and carboxymethylated KRAS4B in lipid monolayer incubations to examine how the proteins assemble on membranes. Our results reveal novel insights into to how KRAS4B may organize on membranes."	"Multi-dimensional immunoproteomics coupled with in vitro recapitulation of oncogenic NRAS<sup>Q61R</sup> identifies diagnostically relevant autoantibody biomarkers in thyroid neoplasia. Tumor-associated antigen (TAA)-specific autoantibodies have been widely implicated in cancer diagnosis. However, cancer cell lines that are typically exploited as candidate TAA sources in immunoproteomic studies may fail to accurately represent the autoantigen-ome of lower-grade neoplasms. Here, we established an integrated strategy for the identification of disease-relevant TAAs in thyroid neoplasia, which combined NRAS<sup>Q61R</sup> oncogene expression in non-tumorous thyroid Nthy-ori 3-1 cells with a multi-dimensional proteomic technique DISER that consisted of profiling NRAS<sup>Q61R</sup>-induced proteins using 2-dimensional difference gel electrophoresis (2D-DIGE) coupled with serological proteome analysis (SERPA) of the TAA repertoire of patients with thyroid encapsulated follicular-patterned/RAS-like phenotype (EFP/RLP) tumors. We identified several candidate cell-based (nicotinamide phosphoribosyltransferase NAMPT, glutamate dehydrogenase GLUD1, and glutathione S-transferase omega-1 GSTO1) and autoantibody (fumarate hydratase FH, calponin-3 CNN3, and pyruvate kinase PKM autoantibodies) biomarkers, including NRAS<sup>Q61R</sup>-induced TAA phosphoglycerate kinase 1 PGK1. Meta-profiling of the reactivity of the identified autoantibodies across an independent SERPA series implicated the PKM autoantibody as a histological phenotype-independent biomarker of thyroid malignancy (11/38 (29%) patients with overtly malignant and uncertain malignant potential (UMP) tumors vs 0/22 (p = 0.0046) and 0/20 (p = 0.011) patients with non-invasive EFP/RLP tumors and healthy controls, respectively). PGK1 and CNN3 autoantibodies were identified as EFP/RLP-specific biomarkers, potentially suitable for further discriminating tumors with different malignant potential (PGK1: 7/22 (32%) patients with non-invasive EFP/RLP tumors vs 0/38 (p = 0.00044) and 0/20 (p = 0.0092) patients with other tumors and healthy controls, respectively; СNN3: 9/29 (31%) patients with malignant and borderline EFP/RLP tumors vs 0/31 (p = 0.00068) and 0/20 (p = 0.0067) patients with other tumors and healthy controls, respectively). The combined use of PKM, CNN3, and PGK1 autoantibodies allowed the reclassification of malignant/UMP tumor risk in 19/41 (46%) of EFP/RLP tumor patients. Taken together, we established an experimental pipeline DISER for the concurrent identification of cell-based and TAA biomarkers. The combination of DISER with in vitro oncogene expression allows further targeted identification of oncogene-induced TAAs. Using this integrated approach, we identified candidate autoantibody biomarkers that might be of value for differential diagnostic purposes in thyroid neoplasia."	"Tris DBA palladium is an orally available inhibitor of GNAQ mutant uveal melanoma in vivo. Uveal melanoma is a rare but often lethal malignancy and is the leading cause of death due to an ophthalmic condition. Uveal melanoma is often diagnosed at a late stage and has a strong propensity to hepatic metastasis. Recently, the most common driver mutations in uveal melanoma have been identified, predominantly in the G-proteins GNAQ. This pattern differs from that of cutaneous melanoma in which Braf and Nras predominate. There are no current clinically used agents that target GNAQ mutations, unlike the use of Braf inhibitors in cutaneous melanoma. We tested the novel agent Tris DBA palladium and found that it was markedly more effective against GNAQ mutant melanomas than wild type uveal melanomas. Given that ARF6 has recently been discovered as a node in GNAQ mutations, we evaluated the efficacy of Tris DBA palladium on ARF6 signaling and found that it was effective in inhibiting ARF6 activation. Finally, Tris DBA palladium was orally effective against GNAQ mutant melanoma in vivo. Tris DBA Palladium deserves further evaluation as a systemic agent for uveal melanoma."	"Whole-genome landscape of mucosal melanoma reveals diverse drivers and therapeutic targets. Knowledge of key drivers and therapeutic targets in mucosal melanoma is limited due to the paucity of comprehensive mutation data on this rare tumor type. To better understand the genomic landscape of mucosal melanoma, here we describe whole genome sequencing analysis of 67 tumors and validation of driver gene mutations by exome sequencing of 45 tumors. Tumors have a low point mutation burden and high numbers of structural variants, including recurrent structural rearrangements targeting TERT, CDK4 and MDM2. Significantly mutated genes are NRAS, BRAF, NF1, KIT, SF3B1, TP53, SPRED1, ATRX, HLA-A and CHD8. SF3B1 mutations occur more commonly in female genital and anorectal melanomas and CTNNB1 mutations implicate a role for WNT signaling defects in the genesis of some mucosal melanomas. TERT aberrations and ATRX mutations are associated with alterations in telomere length. Mutation profiles of the majority of mucosal melanomas suggest potential susceptibility to CDK4/6 and/or MEK inhibitors."	"Genomic Profiling of Blood-Derived Circulating Tumor DNA from Patients with Colorectal Cancer: Implications for Response and Resistance to Targeted Therapeutics. Molecular profiling of circulating tumor DNA (ctDNA) is a promising noninvasive tool. Here, next-generation sequencing (NGS) of blood-derived ctDNA was performed in patients with advanced colorectal cancer. We investigated ctDNA-derived genomic alterations, including potential actionability, concordance with tissue NGS, and serial dynamics in 78 patients with colorectal cancer using a clinical-grade NGS assay that detects single nucleotide variants (54-73 genes) and selected copy-number variants, fusions, and indels. Overall, 63 patients [80.8% (63/78)] harbored ctDNA alterations; 59 [75.6% (59/78)], ≥1 characterized alteration (variants of unknown significance excluded). All 59 patients had actionable alterations potentially targetable with FDA-approved drugs [on-label and/or off-label (N = 54) or with experimental drugs in clinical trials (additional five patients); University of California San Diego Molecular Tumor Board assessment]: 45, by OncoKB (http://oncokb.org/#/). The tissue and blood concordance rates for common specific alterations ranged from 62.3% to 86.9% (median = 5 months between tests). In serial samples from patients on anti-EGFR therapy, multiple emerging alterations in genes known to be involved in therapeutic resistance, including KRAS, NRAS, BRAF, EGFR, ERBB2, and MET were detected. In conclusion, over 80% of patients with stage IV colorectal cancer had detectable ctDNA, and the majority had potentially actionable alterations. Concordance between tissue and blood was between 62% and 87%, despite a median of 5 months between tests. Resistance alterations emerged on anti-EGFR therapy. Therefore, biopsy-free, noninvasive ctDNA analysis provides data relevant to the clinical setting. Importantly, sequential ctDNA analysis detects patterns of emerging resistance allowing for precision planning of future therapy."	"Oral pyogenic granulomas show MAPK/ERK signaling pathway activation, which occurs independently of BRAF, KRAS, HRAS, NRAS, GNA11, and GNA14 mutations. Pyogenic granuloma (PG) is a benign nodular lesion with a prominent vascular component which may affect different sites. Recently, BRAF, KRAS, HRAS, NRAS, GNA11, and GNA14 mutations were reported on PGs of the skin. The present study assessed the role of the MAPK/ERK pathway in oral PG pathogenesis. Mutations in hotspot regions of genes involved in the MAPK/ERK pathway activation were investigated by Sanger sequencing. The expression of phospho-ERK1/2 was evaluated by immunohistochemistry. Oral PGs did not show mutations in the sequenced regions of the genes BRAF, KRAS, HRAS, NRAS, GNA11, or GNA14. Our results also showed activation of the MAPK/ERK pathway demonstrated by phospho-ERK1/2 immunohistochemical positivity. Although oral PG shows MAPK/ERK pathway activation, the driver molecular event remains to be elucidated."	"Distinct Genomic Features in a Retrospective Cohort of Mucosal, Acral and Vulvovaginal Melanomas. Compared to sun-exposed melanomas, less is known regarding the pathogenesis of sun-protected melanomas. Sun-protected melanomas share many epidemiologic factors but their genetic heterogeneity is not well studied. We investigated the genomic profile of acral, mucosal and vulvovaginal melanomas. We hypothesize that mucosal melanomas, recognized for their uniquely aggressive clinical behavior, have distinct genomic features. We performed whole transcriptome mRNA and DNA (1711 genes) sequencing, mRNA expression profiling, TMB, UV signature and CNV analysis on 29 volar/digital acral, 7 mucosal and 6 vulvovaginal melanomas. There was significant genetic heterogeneity, particularly in acral melanomas with 36% having BRAF alterations while other melanomas had none (p = 0.0159). Nonzero UV signatures were more frequent in acral melanomas, suggesting greater UV involvement. Mucosal melanomas formed a distinct group with increased expression of cell cycle and proliferation genes. Various targetable aberrations were identified such as AURKA and ERBB2 in mucosal and acral melanomas, respectively. There was a small sample size. There is significant genetic heterogeneity among sun-protected melanomas. Mucosal melanomas have upregulation in cell cycle and proliferation genes, which may explain their aggressive behavior. Ultraviolet radiation plays some role in a subset of acral but not other melanomas."	"[Characterization of mutational pattern of patients with core-binding factor acute myeloid leukemia]. To characterize the mutational profile of patients with core-binding factor acute myeloid leukemia (CBF-AML). A total of 81 acute myeloid leukemia patients were recruited, which included 36 cases of CBF-AML and 45 cases of cytogenetically normal acute myeloid leukemia (CN-AML) . Mutations of FLT3-ITD, FLT3-TKD, NPM1, c-KIT, NRAS, KRAS, TET2, IDH1/2, RUNX1, DNMT3A, GATA2, ASjXL1, TP53, PTPN11, JAK2V617F, SETBP1 and CEBPA genes were simultaneously detected by DNA-based PCR and Sanger sequencing. Over all, mutations were detected in 68 patients (83.9%), with the most common ones including double CEBPA mutations (n=17), followed by NPM1 (n=15), c-KIT (n=11), NRAS (n=10), TET2 (n=9), FLT3-TKD (n=9), FLT3-ITD (n=8), IDH1 (n=7), RUNX1 (n=7), KRAS (n=7), DNMT3A (n=6), IDH2 (n=4), and GATA2 (n=4) mutations. AML1-ETO and CBFβ-MYH11 fusions were present in 21 and 15 patients, respectively. Coexistence of ≥2 mutations was more common in CN-AML comparing with CBF-AML. The mutation rate of NPM1, FLT3-ITD, DNMT3A, IDH1 and CEBPA double mutations were higher in patients with CN-AML. NRAS, c-KIT and KRAS mutations were identified more frequently in patients with CBF-AML (P&lt;0.05). Based on the function, aberration of genes involved in DNA methylation, NPM1 proteins and transcription predominated in CN-AML, while tyrosine kinase receptor signaling and RAS pathways have predominated in CBF-AML. The genomic landscape of CBF-AML patients has differed from that of CN-AML patients. Synergy of fusion genes with particular mutations may impact the clinical phenotype and prognosis of patients."	"Relevance and clinicopathologic relationship of BRAF V600E, TERT and NRAS mutations for papillary thyroid carcinoma patients in Northwest China. To determine the relevance of the single or combination mutations of BRAF V600E, TERT, and NRAS genes and the clinicopathologic relationship in papillary thyroid cancer (PTC). Patients with PTC were enrolled into the study between February 2018 and April 2019. Based on the number of mutant genes, we classified the participants into single BRAF V600E mutation group, double mutations group and no mutation group. Single factor and multiple logistic regression analyses were applied to explore the independent factors. Review Manager 5.3 was used for meta-analysis to review the clinical efficacy of gene co-mutations. Finally, 483 patients were enrolled into the study and 419 (86.7%) of them harbored BRAF V600E mutation. TERT or NRAS mutation was likely to coexist with BRAF V600E mutation in PTC. BRAF V600E and NRAS promoter co-mutations was identified in 6 patients, with a prevalence of 1.2%. Prevalence of BRAF V600E and TERT coexistence in PTC was 2.1%. Significant differences were found among age, pathology, multifocality, bilateral lesions, lymph node metastasis, and 131I radiotherapy, P &lt; 0.01. Multiple logistic regression analyses demonstrated that age [odds ratio (OR) = 1.044, 95% confidence interval (CI) = 1.013-1.076; P = 0.006], lymph node metastasis [OR = 0.094, 95% CI = 0.034-0.264; P &lt; 0.001], 131I radiotherapy [OR = 7.628, 95% CI = 2.721-21.378; P &lt; 0.001] were risk factors for BRAF V600E mutation. Besides, age [OR = 1.135, 95% CI = 1.069-1.205; P &lt; 0.001], multiple leisions [OR = 4.128, 95% CI = 1.026-16.614; P = 0.046], pathology [OR = 3.954, 95% CI = 1.235-12.654; P = 0.021] were independent factors for combination mutations. Meta-analysis showed significant association of BRAF V600E+/TERT+ co-mutations with lymph node metastasis, multifocality, distant metastasis, tumor recurrence, extrathyroidal extension, and dead of disease. Prevalence of BRAF V600E mutation in Northwest China was higher than other areas. Age, multiple lesions, and pathology were independent factors for double mutation of BRAF V600E/TERT or BRAF V600E/NRAS. Coexistence of BRAF V600E and TERT promoter mutations was significantly correlated with poor outcome."	"Molecular testing in metastatic colorectal adenocarcinoma cytology cell pellets. Mutational status for KRAS, NRAS, and BRAF genes should be performed on all colorectal carcinoma (CRC) specimens in order to guide targeted therapy selection for metastatic disease. Mutations are typically assessed via polymerase chain reaction and/or next generation sequencing (NGS) on formalin-fixed paraffin-embedded tissues. With minimally invasive diagnostic methodologies, the cytology cell pellet obtained by fine-needle aspiration (FNA) can serve as an alternative source of tumor deoxyribonucleic acid. An electronic record review of the cytopathology files (CoPathPlus, Cerner Corp., North Kansas City, Missouri) from September 1, 2015 through December 31, 2018 was conducted. All cytology specimens obtained via FNA and diagnosed as metastatic CRC on which NGS was performed were included. NGS for KRAS, NRAS, and BRAF mutations using the AmpliSeq Cancer Hotspot Panel v2.0 kit (Thermo Fisher Scientific, Waltham, Massachusetts) was performed on cytology cell pellets. Forty-eight cases were identified. Forty-six of 48 specimens (96%) were adequate for molecular testing. Of those adequate specimens, proportion of malignant cells in the sample ranged from 5% to 95% (mean 46%). Twenty-seven of 48 cases (56%) were positive for clinically relevant mutations. Twenty-four of 27 cases (89%) were positive for KRAS mutations, with exon 2 most frequently involved (22/24 cases, 92%). Two of 27 cases (7%) were positive for NRAS mutations and one case (1/27, 4%) was positive for a BRAF mutation involving codon 594. Mutational analysis performed on cytology cell pellets serves as a useful means of gathering clinically actionable information on tumor mutation status in metastatic CRC."	"Thyroid-Like Low-Grade Nasopharyngeal Papillary Adenocarcinoma. Thyroid-like low-grade nasopharyngeal papillary adenocarcinoma (TLLGNPPA) is a relatively rare nasopharyngeal tumor. We performed morphological characterization, immunohistochemical profiling, and investigated gene mutations. We also provide clinical follow-up data and brief review of the literature. Immunohistochemistry was used to evaluate the expression of TTF-1, CK19, CK7, EMA, TG, Pax-8, CK5/6, S100, and Ki-67. Additionally, in situ hybridization was utilized to identify the presence of EBV. We investigated mutations in hot-spot exons of KRAS/NRAS/BRAF to rule out common mutations seen in thyroid tumors. Histopathologic examination of four cases identified tumors that were mainly occupied by papillary architectures. One case had a predominantly glandular structure. The tumors expressed TTF-1 and CK19, while TG and Pax-8 were negative. S100 was moderately expressed focally in three cases. While TLLGNPPA displays a morphological resemblance to papillary thyroid carcinoma (PTC), it is vital to differentiate nasopharyngeal metastasis from PTC for appropriate treatment."	"[Genomic aberrations in myelodysplastic syndromes and related disorders]. Myelodysplastic syndromes (MDS) and myelodysplastic/myeloproliferative neoplasms (MDS/MPN) are heterogeneous myeloid neoplasms that frequently evolve into secondary acute myeloid leukemia (sAML). Recent progress in next-generation sequencing technologies has allowed us to discover frequent mutations throughout the coding regions of MDS, MDS/MPN, and sAML, subsequently providing information on more than 60 driver genes in these diseases. As shown by many study groups recently, such driver mutations are acquired in a gene-specific fashion. DDX41 and SAMD9/SAMD9L mutations are observed in germline cells long before MDS presentation. In blood samples from healthy elderly individuals, somatic DNMT3A, TET2, and ASXL1 mutations are detected as age-related clonal hematopoiesis and supposed to be a risk factor for hematological neoplasms. Recent reports on MDS have shown that mutations in genes such as NRAS and FLT3, designated as Type I genes, were significantly associated with leukemic evolution. Another type (Type II) of genes, including RUNX1 and GATA2, has been shown to be related to the progression from low-risk to high-risk MDS. These driver mutations are significantly concomitant during disease progression. Overall, various types of driver mutations are sequentially acquired in MDS, accounting for the heterogeneity of these disorders."	"Prognostic and predictive markers in liver limited stage IV colorectal cancer. Colorectal cancer is the third most commonly diagnosed cancer among both men and women. Personalised treatment options remain complex, although there is broad agreement over which patients with colorectal liver metastases (CRLM) should and should not be offered resection. Decisions on an optimal management strategy involves careful assessment of both technical and oncological factors. In this review we aim to summarise current prognostic biomarkers for metastatic colorectal cancers, specifically patients considered for resection. A number of clinico-pathological factors have been identified as prognostically important with good internal validity, but limited external validity. Furthermore, these prognostic scoring systems do not take factor in modern chemotherapeutic agents and the disease modification these agents produce. Histopathological response to chemotherapy is of significant prognostic importance. Molecular markers can help predict the efficacy of a biological agent. An important prognostic factor of liver metastasis is the recognition that location of the primary colorectal cancer impacts on metastatic phenotype and represents difference in genotype, i.e. proximal tumours are more aggressive than distal tumours with an increased likelihood of disease progression. Several mutational molecular markers identified include microsatellite instability, BRAF, and KRAS/NRAS and combination mutations, which confer poorer outcomes. Accurate prognostication in patients with liver limited colorectal metastases remains crucial, as this allows tailoring treatment options to each disease and improving outcomes. Access to tissue before treatment remains a limitation although advances in ability to assess tumour biology by non-invasive methods are promising."	"Clinical mutational profiling and categorization of BRAF mutations in melanomas using next generation sequencing. Analysis of melanomas for actionable mutations has become the standard of care. Recently, a classification scheme has been proposed that categorizes BRAF mutations based on their mechanisms for activation of the MAPK pathway. In this analysis BRAF, KIT, NRAS, and PIK3CA mutations were examined by next generation sequencing (NGS) in 446 melanomas in a clinical diagnostic setting. KRAS and HRAS were also analyzed to elucidate coexisting BRAF and RAS mutations. BRAF mutations were categorized into class-1 (kinase-activated, codon 600), class-2 (kinase-activated, non-codon 600) and class-3 (kinase-impaired), based on the newly proposed classification scheme. NGS demonstrated high analytic sensitivity. Among 355 mutations detected, variant allele frequencies were 2-5% in 21 (5.9%) mutations and 2-10% in 47 (13%) mutations. Mutations were detected in BRAF (42%), NRAS (25%), KIT (4.9%) and PIK3CA (2.7%). The incidence of class-1, class-2 and class-3 mutations were 33% (26% p.V600E and 6.1% p.V600K), 3.1 and 4.9% respectively. With a broader reportable range of NGS, class-1, class-2 and class-3 mutations accounted for 77, 7.4 and 12% of all BRAF mutations. Class-3 mutations, commonly affecting codons 594, 466 and 467, showed a higher incidence of coexisting RAS mutations, consistent with their RAS-dependent signaling. Significant association with old age and primary tumors of head/neck/upper back suggest chronic solar damage as a contributing factor for melanomas harboring BRAF p.V600K or class-3 mutations. This study categorizes the range, frequency, coexisting driver mutations and clinical characteristics of the three classes of BRAF mutations in a large cohort of melanomas in a clinical diagnostic setting. Further prospective studies are warranted to elucidate the clinical outcomes and benefits of newly developed targeted therapy in melanoma patients carrying each class of BRAF mutation."	"Frequency of mutations in BRAF, NRAS, and KIT in different populations and histological subtypes of melanoma: a systemic review. The presence of mutations of BRAF, NRAS, and KIT genes is recognized as playing a role during carcinogenesis. Our study aims to evaluate and review other studies that present the frequency of mutations of BRAF, NRAS, and KIT genes for different populations, and analyse correlation to their clinical-pathological characteristics and to the demographics of melanoma. Thirty-two articles were selected from a collection of published literature studying 6299 patients. The parameters for correlation to different variables were calculated by odds ratio, for random and single effects. 38.5% of patients present BRAF gene mutations, 16.4% in NRAS, and 10% in KIT. Mutations of the BRAF gene were correlated to superficial spreading melanoma (odds ratio = 1.31), localization in the torso (odds ratio = 1.42) and presence of metastases. Mutations in NRAS were correlated to nodular melanoma (odds ratio = 1.57), localized in the limbs (odds ratio = 1.31). Mutations of the KIT gene were correlated to mucosal melanoma (odds ratio = 1.59). Populations in Brazil, the US, Sweden, Italian, and Australia were found to be correlated to mutations of BRAF and melanoma. Populations in Italy, Sweden, Spain, and the US were found to be correlated to mutations of NRAS. Populations in Japan, China, Turkey, Canada, and Russia were found to be correlated to mutations of KIT. Data correlated to the presence of melanoma and population type is due to the amount of studies performed across of globe."	"Evaluation of KRAS, NRAS and BRAF hotspot mutations detection for patients with metastatic colorectal cancer using direct DNA pipetting in a fully-automated platform and Next-Generation Sequencing for laboratory workflow optimisation. Assessment of KRAS, NRAS (RAS) and BRAF mutations is a standard in the management of patients with metastatic colorectal cancer (mCRC). Mutations could be assessed using next-generation sequencing (NGS) or real-time PCR-based assays. Times to results are 1 to 2 weeks for NGS and 1 to 3 days for real-time PCR-based assays. Using NGS can delay first-line treatment commencement and using PCR-based assays is limited by the number of possible analysed targets. The Idylla system is a real-time PCR cartridge-based assay, able to analyse hotspots mutations using one section of FFPE tumour tissue sample. To combine short delays and analysis of a large gene-panel, we propose here a laboratory workflow combining the Idylla system and NGS and compatible with FFPE samples with low tissue quantity. In this study we evaluated and validated the Idylla system for the analysis of RAS and BRAF mutations by pipetting directly DNA in the cartridge instead of FFPE section as recommended by the manufacturer. DNA extracted from 29 FFPE samples from mCRC patients with NGS-characterized RAS and BRAF mutations were tested with the Idylla KRAS and the Idylla NRAS-BRAF mutation tests to assess sensitivity, specificity, reproducibility and limit of detection of each test. A 100% concordance was found between NGS and Idylla results for the determination of KRAS (12/12), NRAS (12/12) and BRAF (11/11) mutations with a sensitivity and a specificity of 100%. The system showed a good reproducibility with CV inferior to 3%. LOD was reached with 2.5 ng of DNA for KRAS and NRAS mutations and 5 ng of DNA for BRAF mutations. The analysis of RAS and BRAF mutations using DNA pipetted directly in the cartridge of the Idylla system showed a good sensitivity, specificity, reproducibility and LOD, and can be integrated in a laboratory workflow for samples with few tissue without compromising a further complete tumour characterization using NGS."	"RAC1<sup>P29S</sup> Induces a Mesenchymal Phenotypic Switch via Serum Response Factor to Promote Melanoma Development and Therapy Resistance. RAC1 P29 is the third most commonly mutated codon in human cutaneous melanoma, after BRAF V600 and NRAS Q61. Here, we study the role of RAC1<sup>P29S</sup> in melanoma development and reveal that RAC1<sup>P29S</sup> activates PAK, AKT, and a gene expression program initiated by the SRF/MRTF transcriptional pathway, which results in a melanocytic to mesenchymal phenotypic switch. Mice with ubiquitous expression of RAC1<sup>P29S</sup> from the endogenous locus develop lymphoma. When expressed only in melanocytes, RAC1<sup>P29S</sup> cooperates with oncogenic BRAF or with NF1-loss to promote tumorigenesis. RAC1<sup>P29S</sup> also drives resistance to BRAF inhibitors, which is reversed by SRF/MRTF inhibitors. These findings establish RAC1<sup>P29S</sup> as a promoter of melanoma initiation and mediator of therapy resistance, while identifying SRF/MRTF as a potential therapeutic target."	"RAS mutations in human cancers: Roles in precision medicine. Ras proteins play a crucial role as a central component of the cellular networks controlling a variety of signaling pathways that regulate growth, proliferation, survival, differentiation, adhesion, cytoskeletal rearrangements and motility of a cell. Almost, 4 decades passed since Ras research was started and ras genes were originally discovered as retroviral oncogenes. Later on, mutations of the human RAS genes were linked to tumorigenesis. Genetic analyses found that RAS is one of the most deregulated oncogenes in human cancers. In this review, we summarize the pioneering works which allowed the discovery of RAS oncogenes, the finding of frequent mutations of RAS in various human cancers, the role of these mutations in tumorigenesis and mutation-activated signaling networks. We further describe the importance of RAS mutations in personalized or precision medicine particularly in molecular targeted therapy, as well as their use as diagnostic and prognostic markers as therapeutic determinants in human cancers."	"Impact of genetic mutations and nutritional status on the survival of patients with colorectal cancer. The prognosis of colorectal cancer (CRC) patients can be influenced by genetic mutations and nutritional status. The relationship between these variables is unclear. The objective of the study was to verify the variables involved in the nutritional status and genetic mutations, which correlate with survival of CRC patients. Patients with surgical intervention for tumor resection were evaluated using body mass index, nutritional screening, patient self-produced global subjective assessment, phase angle, and computed tomography to calculate the areas of visceral adipose tissue (VAT) and subcutaneous adipose tissue, and muscle mass for the determination of sarcopenia. Ten gene mutations involved in CRC carcinogenesis were studied (PIK3CA, KRAS, BRAF, EGFR, NRAS, TP53, APC, PTEN, SMAD4, and FBXW7). DNA was extracted from fresh tumor or paraffin tissues. Of the 46 patients, 29 (64.4%) were at nutritional risk and 21 (45.7%) were moderately malnourished. However, there was a high percentage of VAT in 24 (61.5%) and sarcopenia in 19 (48.7%) patients. These variables were associated with a higher risk of mortality. Nutritional risk, moderate or severe malnutrition, phase angle &lt; 5°, VAT &lt; 163.8 cm<sup>2</sup> in men and &lt; 80.1 cm<sup>2</sup> in women, and sarcopenia were associated with the relative risk of death, with respective hazard ratios/odds ratios and 95% confidence intervals of 8.77 (1.14-67.1), 3.95 (1.11-14.0), 3.79 (1.10-13.1), 3.43 (1.03-11.4), and 3.95 (1.06-14.6). Increased VAT was associated with a lower risk of death, even in patients older than 60 years or those harboring mutated KRAS. Patients with positive indicators for malnutrition or risk of malnutrition had an increased risk of death. No relationship was identified between the presence of mutations and survival."	"C57BL/6 congenic mouse NRAS<sup>Q61K</sup> melanoma cell lines are highly sensitive to the combination of Mek and Akt inhibitors in vitro and in vivo. RAS is frequently mutated in various tumors and known to be difficult to target. NRAS<sup>Q61K/R</sup> are the second most frequent mutations found in human skin melanoma after BRAF<sup>V600E</sup> . Aside from surgery, various approaches, including targeted therapies, immunotherapies, and combination therapies, are used to treat patients carrying NRAS mutations, but they are inefficient. Here, we established mouse NRAS<sup>Q61K</sup> melanoma cell lines and genetically derived isografts (GDIs) from Tyr::NRAS<sup>Q61K</sup> mouse melanoma that can be used in vitro and in vivo in an immune-competent environment (C57BL/6) to test and discover novel therapies. We characterized these cell lines at the cellular, molecular, and oncogenic levels and show that NRAS<sup>Q61K</sup> melanoma is highly sensitive to the combination of Mek and Akt inhibitors. This preclinical model shows much potential for the screening of novel therapeutic strategies for patients harboring NRAS mutations that have limited therapeutic options and resulted in poor prognoses."	"Differences in Mutational Profile between Follicular Thyroid Carcinoma and Follicular Thyroid Adenoma Identified Using Next Generation Sequencing. We aimed to identify differences in mutational status between follicular thyroid adenoma (FTA) and follicular thyroid cancer (FTC). The study included 35 patients with FTA and 35 with FTC. DNA was extracted from formalin-fixed paraffin-embedded (FFPE) samples from thyroidectomy. Next-generation sequencing (NGS) was performed with the 50-gene Ion AmpliSeq Cancer Hotspot Panel v2. Potentially pathogenic mutations were found in 14 (40%) FTA and 24 (69%) FTC patients (OR (95%CI) = 3.27 (1.22-8.75)). The number of mutations was higher in patients with FTC than FTA (p-value = 0.03). SMAD4 and STK11 mutations were present only in patients with FTA, while defects in FBXW7, JAK3, KIT, NRAS, PIK3CA, SMARCB1, and TP53 were detected exclusively in FTC patients. TP53 mutations increased the risk of FTC; OR (95%CI) = 29.24 (1.64-522.00); p-value = 0.001. FLT3-positivity was higher in FTC than in the FTA group (51.4% vs. 28.6%; p-value = 0.051). The presence of FLT3 and TP53 with no RET mutations increased FTC detectability by 17.1%, whereas the absence of FLT3 and TP53 with a presence of RET mutations increased FTA detectability by 5.7%. TP53 and FLT3 are candidate markers for detecting malignancy in follicular lesions. The best model to predict FTA and FTC may consist of FLT3, TP53, and RET mutations considered together."	"Conjunctival Melanoma Targeted Therapy: MAPK and PI3K/mTOR Pathways Inhibition. To analyze the activity of mitogen-activated protein kinase (MAPK) and phosphoinositide 3-kinases/mechanistic target of rapamycin (PI3K/mTOR) pathways in benign and malignant conjunctival melanocytic proliferations and explore whether specific inhibitors can suppress growth of conjunctival melanoma (CJM) cells. The presence of a BRAF V600E mutation and activation of ERK, MEK, S6, and AKT were assessed with immunohistochemistry in 35 conjunctival nevi and 31 melanomas. Three CJM cell lines were used: CRMM1, carrying the BRAF V600E mutation; CRMM2, harboring the NRAS Q61L mutation; and T1527A, with a BRAF G466E mutation. WST-1 assays were performed with a BRAF inhibitor (vemurafenib), two MEK inhibitors (trametinib, selumetinib), a PI3K inhibitor (pictilisib), and a dual PI3K/mTOR inhibitor (dactolisib). The phosphorylation of ERK, MEK, and S6 were tested with western blots and apoptosis with cleaved caspase-3 immunostaining. A BRAF V600E mutation was detected in 42.6% of nevi and in 35.5% of CJM. MEK and ERK activation were higher in CJM, occurring in 62.9% and 45.7% of the nevi and 90.3% and 96.8% of the CJM, respectively. There was also a significant increase in S6 activation in CJM (90.3%) compared with the nevi (20%). CRMM1 was sensitive to trametinib and the PI3K inhibitors but only marginally to vemurafenib. CRMM2 was moderately sensitive to pictilisib, whereas T1527A was resistant to all drugs tested. The MAPK pathway activity in CJM is increased, not only as a consequence of the BRAF V600E mutation. Targeted therapy may be useful for patients with CJM, especially those with activating BRAF mutations, whereas NRAS-mutated melanomas are relatively resistant."	"Rapid progression to AML in a patient with germline GATA2 mutation and acquired NRAS Q61K mutation. GATA2 deficiency syndrome is caused by autosomal dominant, heterozygous germline mutations with widespread effects on immune, pulmonary and vascular systems. Patients commonly develop hematological abnormalities including bone marrow failure, myelodysplastic syndrome (MDS) and acute myeloid leukemia (AML). We present a patient with GATA2 mutation and MDS who progressed to AML over four months. Whole exome and targeted deep sequencing identified a new p.Q61K NRAS mutation in the bone marrow at the time of AML development. Rapid development of AML is possible in the setting of germline GATA2 mutation despite stable MDS, supporting close monitoring and consideration of early allogeneic transplantation."	"Generalized Lymphatic Anomaly and Gorham-Stout Disease: Overview and Recent Insights. Significance: Generalized lymphatic anomaly and Gorham-Stout disease are extremely rare diseases with severe symptoms and poor prognosis. The etiology and clinical presentation of the patients remain poorly defined, but recent research has attempted to determine the pathogenesis of these diseases. Recent Advances: In recent years, the characteristics of complex lymphatic anomalies have been revealed. Kaposiform lymphangiomatosis is recognized as a new entity that has an aggressive course and poor prognosis. Genetic analysis revealed somatic mutations in genes associated with the phosphoinositide 3-kinase (PI3K) pathway in lymphatic malformation lesions. Somatic NRAS mutation in lymphatic endothelium from a generalized lymphatic anomaly patient was also detected as a potential cause of disease. Furthermore, studies demonstrated the efficacy of the mammalian target of rapamycin (mTOR) inhibitor sirolimus for these lymphatic diseases. Critical Issues: These diseases have overlapping symptoms, imaging features, and complications, leading to difficulty in their differential diagnosis. In addition, there are no standard therapies. Therefore, we need to determine the differences among these diseases to not only diagnose but also treat them appropriately. Future Directions: Further investigations should reveal differences in the clinical features and findings of radiological, pathological, and genetic examinations to manage each disease appropriately. Somatic mutation in genes encoding RAS/PI3K/mTOR signaling pathway components could be associated with the pathogenesis of these diseases and may be novel targets for drug therapies."	"Stable G-Quadruplex Structures of Oncogene Promoters Induce Potassium-Dependent Stops of Thermostable DNA Polymerase. Amplification of GC-rich regions of genomic DNA is hindered either by high stability of DNA double helix or as a result of alternative structure formation by a guanine-rich DNA strand. Such potential G-quadruplex (G4) sequences are fairly common in promoters of the human genome. The efficiency of PCR amplification of promoter sequences for several human oncogenes (MYC, NRAS, TERT, KRAS, KIT) was studied. We demonstrate that the efficiency of DNA polymerase is reduced in the presence of potassium ions. The primer-extension technique localized DNA polymerase stops at the 3'-ends of potential quadruplex sequences. The structural and thermodynamic properties of short G-rich oligonucleotides corresponding to the stops of DNA polymerase were analyzed. These oligonucleotides formed stable parallel G4 in the presence of potassium ions. Correlation between the stability of G4 structure and efficiency of DNA polymerase stops was revealed. The results provide a method for detecting new G4 structures in extended genomic sequences and also clarify the mechanism of inhibition of DNA polymerase in G-rich regions of DNA."	"Multidisciplinary palliation for unresectable recurrent rectal cancer: hypoxic pelvic perfusion with mitomycin C and oxaliplatin in patients progressing after systemic chemotherapy and radiotherapy, a retrospective cohort study. Innovative systemic treatments and loco-regional chemotherapy by hypoxic pelvic perfusion (HPP) have been proposed for unresectable recurrent rectal cancer (URRC). Regorafenib and trifluridine-tipiracil reported significantly increased PFS 1.9-2.0 months, OS 6.4-7.1 months vs placebo, respectively. Present study evaluated safety and efficacy of mitomycin/oxaliplatin HPP associated to intravenous cetuximab, and of third line systemic therapy in clinical practice. HPP consisted of: isolation, perfusion, chemofiltration. Patients received mitomycin 25 mg/m<sup>2</sup> and oxaliplatin 80 mg/m<sup>2</sup> during HPP; from days 21 to 28, cetuximab 250 mg/m<sup>2</sup>/week. In case of partial response or stable disease, HPPs were repeated every 8 weeks. In control group, systemic third and further lines of therapy were defined in clinical practice according to clinical (age, comorbidities, performance status), biological parameters (KRAS, NRAS, BRAF genotype). From 2005 to 2018, 49 URRC patients were enrolled; 33 in HPP/target-therapy, 16 in systemic therapy control group. No HPP related complications were reported. Most common adverse events were skin, bone marrow toxicities. In HPP/target-therapy group, ORR and DCR were 36.4 and 100%; in systemic therapy control group, 18.7 and 31.25%, respectively. In HPP/target-therapy compared with systemic therapy group, respectively, DCR seemed significantly favourable (P = 0.001), as PFS 8 vs 4 months (P = 0.018), and OS 15 vs 8 months (P = 0.044). Present data showed that integration of HPP/target-therapy may be effective in local control, and efficacy as third line treatment of URCC patients. This therapeutic strategy deserves further prospective randomized trials to be compared to conventional systemic treatments."	"Constitutive Expression of NRAS with Q61R Driver Mutation Activates Processes of Epithelial-Mesenchymal Transition and Leads to Substantial Transcriptome Change of Nthy-ori 3-1 Thyroid Epithelial Cells. The Q61R mutation of the NRAS gene is one of the most frequent driver mutations of thyroid cancer. Tumors with this mutation are characterized by invasion into blood vessels and formation of distant metastases. To study the role of this mutation in the growth of thyroid cancer, we developed a model system on the basis of thyroid epithelial cell line Nthy-ori 3-1 transduced by a lentiviral vector containing the NRAS gene with the Q61R mutation. It was found that the expression of NRAS(Q61R) in thyroid epithelial cells has a profound influence on groups of genes involved in the formation of intercellular contacts, as well as in processes of epithelial-mesenchymal transition and cell invasion. The alteration in the expression of these genes affects the phenotype of the model cells, which acquire traits of mesenchymal cells and demonstrate increased ability for survival and growth without attachment to the substrate. The key regulators of these processes are transcription factors belonging to families SNAIL, ZEB, and TWIST, and in different types of tumors the contribution of each individual factor can vary greatly. In our model system, phenotype change correlates with an increase in the expression of SNAIL2 and TWIST2 factors, which indicates their possible role in regulating invasive growth of thyroid cancer with the mutation of NRAS(Q61R)."	"Avoiding non-contributive molecular results in cancer samples: proposal of a score-based approach for sample choice. Mutational analyses have become crucial for therapeutic choices in patients with advanced lung cancer, colorectal cancer and melanoma. Short turnaround times for molecular analyses are necessary to match the patient's therapeutic management. Non-contributive molecular analyses may increase the delay in reaching a relevant mutational status. We attempted to identify criteria in samples associated with non-contributive molecular results to better anticipate them and select samples with contributive analyses. We compared several criteria such as cancer type, sample type, organ of origin and percentage of tumour cells between samples with non-contributive or contributive EGFR, KRAS, NRAS and BRAF mutation analyses. Among two sets of 3367 and 554 tumour samples analysed in 2015-2017 and 2018, respectively, 11.7% and 15.7% of sample analyses were non-contributive for at least one oncogene. Lung cancer and melanoma cancer subtypes [odds ratio (OR)=7.2], cytological (OR=1.8) or bone samples (OR=8.5) and a percentage of tumour cells ≤20% (OR=41.4) were significantly associated with non-contributive results. By combining these parameters in a scoring system, we were able to predict the contributive or non-contributive result of a molecular analysis with sensitivity and specificity higher than 80% in a validation set of samples. Predicting the contributive or non-contributive result of a molecular analysis is feasible in samples on the basis of simple features. A combination of these features could be used to better choose samples to analyse in order to reduce the rate of non-contributive molecular results and related treatment delays and costs in patients with advanced cancers."	"Genomic Profiling of KRAS/NRAS/BRAF/PIK3CA Wild-Type Metastatic Colorectal Cancer Patients Reveals Novel Mutations in Genes Potentially Associated with Resistance to Anti-EGFR Agents. Previous findings suggest that metastatic colorectal carcinoma (mCRC) patients with KRAS/NRAS/BRAF/PIK3CA wild-type (quadruple-wt) tumors are highly sensitive to anti-epidermal growth factor receptor (EGFR) monoclonal antibodies (MoAbs). However, additional molecular alterations might be involved in the de novo resistance to these drugs. We performed a comprehensive molecular profiling of 21 quadruple-wt tumors from mCRC patients enrolled in the &quot;Cetuximab After Progression in KRAS wild-type colorectal cancer patients&quot; (CAPRI-GOIM) trial of first line FOLFIRI plus cetuximab. Tumor samples were analyzed with a targeted sequencing panel covering single nucleotide variants (SNVs), insertions/deletions (Indels), copy number variations (CNVs), and gene fusions in 143 cancer-related genes. The analysis revealed in all 21 patients the presence of at least one SNV/Indel and in 10/21 cases (48%) the presence of at least one CNV. Furthermore, 17/21 (81%) patients had co-existing SNVs/Indels in different genes. Quadruple-wt mCRC from patients with the shorter progression free survival (PFS) were enriched with peculiar genetic alterations in KRAS, FBXW7, MAP2K1, and NF1 genes as compared with patients with longer PFS. These data suggest that a wide genetic profiling of quadruple-wt mCRC patients might help to identify novel markers of de novo resistance to anti-EGFR MoAbs."	"LAG3 in Solid Tumors as a Potential Novel Immunotherapy Target. We performed a prospective immunohistochemical analysis of lymphocyte activation gene 3 (LAG3) for 430 consecutive patients with advanced gastrointestinal, genitourinary, or rare cancers between June 2012 and March 2016. Most patients (428/430, 99.5%) were evaluable for LAG3 expression by immunohistochemistry. In total, 18.5% (79/428) of the evaluated cancers expressed LAG3, including pancreatic cancer (33.3%, 2/6), gastric cancer (24.7%, 21/85), colorectal cancer (23.6%, 48/203), melanoma (12.5%, 1/8), genitourinary cancer (9.5%, 4/46), biliary tract cancer (6.3%, 1/16), and sarcoma (5.4%, 2/37), but not miscellaneous (0.0%, 0/14) or hepatocellular (0.0%, 0/15) cancer. Among 149 metastatic colorectal cancer patients, there was no statistically significant difference in sex, age, primary tumor site, pathologic differentiation, KRAS and NRAS status, BRAF status, and microsatellite instability according to LAG3 status (expressed vs. nonexpressed). Among 53 metastatic gastric cancer patients, LAG3 was only significantly associated with Epstein Barr virus status (P=0.042). Our results add to the emerging literature on LAG3 expression in various cancer types and support the need for extended clinical exploration of this target for immunotherapy."	"Molecular and phenotypic spectrum of Noonan syndrome in Chinese patients. Noonan syndrome (NS) is a common autosomal dominant/recessive disorder. No large-scale study has been conducted on NS in China, which is the most populous country in the world. Next-generation sequencing (NGS) was used to identify pathogenic variants in patients that exhibited NS-related phenotypes. We assessed the facial features and clinical manifestations of patients with pathogenic or likely pathogenic variants in the RAS-MAPK signaling pathway. Gene-related Chinese NS facial features were described using artificial intelligence (AI).NGS identified pathogenic variants in 103 Chinese patients in eight NS-related genes: PTPN11 (48.5%), SOS1 (12.6%), SHOC2 (11.7%), KRAS (9.71%), RAF1 (7.77%), RIT1 (6.8%), CBL (0.97%), NRAS (0.97%), and LZTR1 (0.97%). Gene-related facial representations showed that each gene was associated with different facial details. Eight novel pathogenic variants were detected and clinical features because of specific genetic variants were reported, including hearing loss, cancer risk due to a PTPN11 pathogenic variant, and ubiquitous abnormal intracranial structure due to SHOC2 pathogenic variants. NGS facilitates the diagnosis of NS, especially for patients with mild/moderate and atypical symptoms. Our study describes the genotypic and phenotypic spectra of NS in China, providing new insights into distinctive clinical features due to specific pathogenic variants."	"Progress in the identification of gene mutations involved in multiple myeloma. Sequencing studies have been used to determine a spectrum of multiple myeloma (MM) mutations. Mutation of certain genes, including KRAS, NRAS, TP53, FAM46C, DIS3 and BRAF, have a high recurrence rate and may play important roles in the pathogenesis, progression and prognosis of MM. Mutations in DIS3, which encodes a highly conserved RNA exonuclease, lead to loss of function. The expression of FAM46C is highly correlated with the expression of ribosomal protein, but the exact function of FAM46C mutation is unclear. There are mutants of IRF4, which is considered an MM survival factor. Mutations in the gene coding for the DNA damage-binding protein (DDB1) may affect interactions with CUL4A, which is part of the cereblon (CRBN) ubiquitin ligase complex. IRF4is part of the complex, which binds to DNA. These findings might explain the resistance to immunomodulatory. TP53 deletion or mutation is often present in B-cell malignancies and is associated with low response rates. Myeloma pathogenic mutations in ATM have been found in adult lymphatic tumors. XBP1 and PSMB5 mutations may be related to bortezomib resistance. Multiple gene mutations (KRAS, NRAS and BRAF) involved in the same pathway were found a single patient. Identification of driver gene mutations has brought great hope to the field of individualized, targeted medicine for MM."	"Evaluation of the Idylla KRAS and NRAS mutation test in colorectal cancer tissue. The currently approved techniques for RAS mutations testing in colorectal cancer (CRC) tissue are labor-intensive and time consuming. The Idylla technology (IT) is a rapid and fully automated diagnostics system. The primary aim of this study is to compare the Idylla performance against that of conventional techniques (CT). Archival CRC tumor samples from 2 hospitals were tested for KRAS and NRAS mutations using the IT. Results were compared to those obtained earlier by CT performed in accredited laboratories. Unexplained discordant results were verified locally by next generation sequencing (NGS) to ascertain the accuracy of IT. Forty five samples were processed. All samples underwent dual testing (CT &amp; IT) for KRAS mutations. IT identified mutations in 2 samples that were not detected by CT. Primary concordance rate for KRAS was 93.3% and the accuracy rate improved to 100% after verification and explanation of discordant results. Only 18 samples underwent dual testing for NRAS. Primary concordance and accuracy rates for NRAS were 94.4%. The mean time from dispatching the specimen for RAS testing by CT until receipt of results was 12 (7-28) days compared to few hours when IT was used. IT provides a quick and reliable mean for RAS testing. In addition, it identifies mutations that are not detected by CT and thus may provide better guidance to treatment choices."	"Systematic Functional Interrogation of Genes in GWAS Loci Identified ATF1 as a Key Driver in Colorectal Cancer Modulated by a Promoter-Enhancer Interaction. Genome-wide association studies (GWASs) have identified approximately 100 colorectal cancer (CRC) risk loci. However, the causal genes in these loci have not been systematically interrogated. We conducted a high-throughput RNA-interference functional screen to identify the genes essential for proliferation in the CRC risk loci of Asian populations. We found that ATF1, located in the 12q13.12 region, functions as an oncogene that facilitates cell proliferation; ATF1 has the most significant effect of the identified genes and promotes CRC xenograft growth by affecting cell apoptosis. Next, by integrating a fine-mapping analysis, a two-stage affected-control study consisting of 6,213 affected individuals and 10,388 controls, and multipronged experiments, we elucidated that two risk variants, dbSNP: rs61926301 and dbSNP: rs7959129, that located in the ATF1 promoter and first intron, respectively, facilitate a promoter-enhancer interaction, mediated by the synergy of SP1 and GATA3, to upregulate ATF1 expression, thus synergistically predisposing to CRC risk (OR = 1.77, 95% CI = 1.42-2.21, p = 3.16 × 10<sup>-7</sup>; Pmultiplicative-interaction = 1.20 × 10<sup>-22</sup>; Padditive-interaction = 6.50 × 10<sup>-3</sup>). Finally, we performed RNA-seq and ChIP-seq assays in CRC cells treated with ATF1 overexpression in order to dissect the target programs of ATF1. Results showed that ATF1 activates a subset of genes, including BRAF, NRAS, MYC, BIRC2, DAAM1, MAML2, STAT1, ID1, and NKD2, related to apoptosis, Wnt, TGF-β, and MAPK pathways, and these effects could cooperatively increase the risk of CRC. These findings reveal the clinical potential of ATF1 in CRC development and illuminate a promoter-enhancer interaction module between the ATF1 regulatory elements dbSNP: rs61926301 and dbSNP: rs7959129, and they bring us closer to understanding the molecular drivers of cancer."	"Analysis of KRAS, NRAS, BRAF, PIK3CA and TP53 mutations in a large prospective series of locally advanced rectal cancer patients. Little information is available on the clinical significance of cancer-related genes such as KRAS, NRAS, BRAF, PIK3CA and TP53 in nonmetastatic rectal cancer. We investigated mutations of these genes in a large prospective series of locally advanced rectal cancer (LARC) patients who were recruited into two phase II trials. Mutational analyses were performed with diagnostically validated methods including polymerase chain reaction, capillary electrophoresis single-strand conformational analysis, Sanger sequencing and next-generation sequencing. Associations between single or multiple gene mutations and clinicopathological characteristics and treatment outcomes were explored. Of these 269, 210 (78%) patients were assessable. Mutations of KRAS, NRAS, BRAF, PIK3CA and TP53 occurred in 43, 9, 4, 9 and 60% of patients, respectively. Concordance between paired biopsy and resection specimens was 82% for KRAS, 95% for NRAS, 99% for BRAF, 96% for PIK3CA and 63% for TP53. TP53 mutations were associated with extramural venous invasion on baseline MRI (78% vs. 65%, p = 0.04), poor pathological tumour regression (23% vs. 36%, p = 0.05) and a trend toward a worse 5-year progression-free survival (PFS; 60% vs. 74%, HR 1.59, p = 0.06). Patients with tumours harbouring mutation of TP53 and either KRAS or NRAS (32%) had a worse 5-year PFS than those with TP53/KRAS/NRAS wild-type tumours (54% vs. 72%, HR 1.75, p = 0.02). In univariate analysis, BRAF mutation predicted poor 5-year overall survival only among patients treated without cetuximab (20% vs. 73%, HR 3.29, p = 0.03). This is one of the largest biomarker studies in a prospective, largely homogeneous, LARC population. Our findings are hypothesis generating and require validation in independent series."	"Clinicopathological features and prognosis of AFP-producing colorectal cancer: a single-center analysis of 20 cases. Background: High serum levels of alpha-fetoprotein (AFP) are observed in some gastrointestinal cancers. However, primary AFP-producing colorectal cancer (CRC) is extremely rare and causes confusion among clinicians. In this study, we analyzed the clinicopathological features and clinical outcomes of AFP-producing CRC and provide a brief view of this rare carcinoma. Patients and methods: Twenty patients with AFP-producing CRC were enrolled at the Fudan University Shanghai Cancer Center from 2012 to 2015. Clinical information, including serum AFP and CEA levels, and outcomes were collected. Tumors were divided into three histologic types: the common adenocarcinoma (COM) type, mucinous adenocarcinoma type and hepatoid type (HPT). Immunohistochemical (IHC) staining of GPC3, Hepa-1, SALL4 and Arg-1 was performed. Additionally, mutations of the KRAS, NRAS and BRAF genes were examined. Finally, another 40 stage-matched patients with traditional CRC were enrolled as controls for survival analysis. Results: AFP-producing CRC was more likely to occur in males (60%) and arose mainly from the ascending (40%) and sigmoid (35%) colon. In addition, the majority of patients with AFP-producing CRC had poor differentiation (50%), advanced local invasion (80%) and lymph node (LN) metastasis (60%). Synchronous distant metastasis was commonly observed (35%). Interestingly, serum AFP levels were closely associated with LN metastasis. Histopathologically, the COM type was the most common pattern. In IHC staining, the HPT pattern was the most distinct due to high positivity rates of GPC3, Hepa-1 and Arg-1. One patient had mismatch repair deficiency, and another had a KRAS mutation. Patients with AFP-producing CRC had worse progression-free and overall survival than patients with traditional CRC. Conclusion: AFP-producing CRC has unique clinical and histopathological characteristics, showing an aggressive biological behavior and worse prognosis than traditional CRC."	"Loss of EZH2 Reprograms BCAA Metabolism to Drive Leukemic Transformation. Epigenetic gene regulation and metabolism are highly intertwined, yet little is known about whether altered epigenetics influence cellular metabolism during cancer progression. Here, we show that EZH2 and NRAS<sup>G12D</sup> mutations cooperatively induce progression of myeloproliferative neoplasms to highly penetrant, transplantable, and lethal myeloid leukemias in mice. EZH1, an EZH2 homolog, is indispensable for EZH2-deficient leukemia-initiating cells and constitutes an epigenetic vulnerability. BCAT1, which catalyzes the reversible transamination of branched-chain amino acids (BCAA), is repressed by EZH2 in normal hematopoiesis and aberrantly activated in EZH2-deficient myeloid neoplasms in mice and humans. BCAT1 reactivation cooperates with NRAS<sup>G12D</sup> to sustain intracellular BCAA pools, resulting in enhanced mTOR signaling in EZH2-deficient leukemia cells. Genetic and pharmacologic inhibition of BCAT1 selectively impairs EZH2-deficient leukemia-initiating cells and constitutes a metabolic vulnerability. Hence, epigenetic alterations rewire intracellular metabolism during leukemic transformation, causing epigenetic and metabolic vulnerabilities in cancer-initiating cells. SIGNIFICANCE: EZH2 inactivation and oncogenic NRAS cooperate to induce leukemic transformation of myeloproliferative neoplasms by activating BCAT1 to enhance BCAA metabolism and mTOR signaling. We uncover a mechanism by which epigenetic alterations rewire metabolism during cancer progression, causing epigenetic and metabolic liabilities in cancer-initiating cells that may be exploited as potential therapeutics.See related commentary by Li and Melnick, p. 1158.This article is highlighted in the In This Issue feature, p. 1143."	"Macrophages Promote Growth of Squamous Cancer Independent of T cells. Oral cancers, primarily squamous cell carcinomas (SCCs), progress either slowly or aggressively. Here we assessed the role of macrophages in SCC behavior. We used mouse SCC cells derived from tumors harboring a Kras<sup>G12D</sup> activation mutation and Smad4 deletion in keratin 15-positive stem cells and a human oral SCC cell line, FaDu, which has NRAS amplification and SMAD4 deletion. SCC cells were transplanted into immune-compromised or immune-competent (syngeneic) recipients. After tumors were established, we used clodronate liposomes to ablate macrophages. We found that the number of tumor-associated macrophages (TAMs) was not affected by the presence of T cells but differed considerably among tumors derived from different SCC lines. Clodronate significantly reduced TAMs and splenic macrophages, resulting in reduced SCC volumes. Tumors with clodronate treatment did not show decreased proliferation but did exhibit increased apoptosis and reduced vascular density. FLIP (Fas-associated via death domain-like interleukin 1β-converting enzyme inhibitory protein), an apoptosis inhibitor abundantly produced in tumor cells and TAMs, was reduced in tumor cells of clodronate-treated mice. Reduced FLIP levels correlated with reductions in phosphorylated nuclear NFκB p65 and NFκB inhibitor attenuated FLIP protein levels in SCC cells. Furthermore, TGFβ1 serum levels and pSmad3 were reduced in clodronate-treated mice, but their reductions were insufficient to reverse epithelial-mesenchymal transition or TGFβ-mediated angiogenesis in endothelial cells. Consequently, metastasis was not significantly reduced by macrophage reduction. However, reduced pSmad3 correlated with reduction of its transcriptional target, vascular endothelial growth factor A, in clodronate-treated tumor cells, which correlated with reduced vascular density in clodronate-treated tumors. Taken together, our study revealed that macrophages contribute to SCC expansion through interactions with tumor cells but are dispensable for SCC metastasis. Our study provides novel insights into understanding the contributions and limitations of TAMs in SCC progression."	"Necessity of Genetic Evaluation of Metachronous Metastases of Colorectal Cancer: Quantitative Analysis of Genetic Discordance Between Metachronous Metastases and Radically Resected Primary Colorectal Cancers Using Next-Generation Sequencing. Mutation analyses provide the basis of selecting an appropriate target agent for the treatment of metastatic colorectal cancer. However, metachronous metastases developed after the treatment of primary tumor could create significant opportunities for different genetic profiles relative to the primary tumors. The purpose of this study was to assess the necessity of genetic evaluation of metachronous metastases; we performed a quantitative analysis of genetic discordance between metachronous metastases and radically resected primary colorectal cancers using next-generation sequencing. This was a retrospective study. Patients from a single-institution tertiary care center were studied. We enrolled 33 patients who underwent resection of metachronous metastases between January 2014 and December 2016, ≥6 months after radical resection of primary colorectal cancer and whose tissue was available for analysis. Tumor samples were analyzed by next-generation sequencing. The mutant allele frequency was analyzed to evaluate the proportion of mutations in the tumor tissue. The mutant allele frequency of KRAS in metachronous metastases was higher in 6 cases (mean difference =% 25.5% (range, 9.5%-58.0%)) and lower in 3 cases (mean difference = 9.3% (range, 8.0-10.0%) compared with each of their primary tumors. In 1 case, the KRAS mutant-type (mutant allele frequency = 22.6%) metachronous metastasis had developed from the KRAS wild-type primary tumor. Tumor sample may not represent perfectly the whole tumor of the patient because of heterogeneity. Genetic discordance can exist between metachronous metastases and radically resected primary colorectal cancers. For appropriate target therapy, genetic evaluation of metachronous metastases needs to be considered when possible. See Video Abstract at http://links.lww.com/DCR/A932."	"High expression of microRNA-500 is associated with poor prognosis in patients with acute myeloid leukemia receiving allogeneic hematopoietic stem cell transplantation. MicroRNA-500 (miR-500) is a potential prognostic biomarker in a number of different types of cancer, such as prostate cancer and hepatocellular carcinoma. This study aimed to explore the clinical implications of miR-500 expression status in patients with acute myeloid leukemia (AML) that had received allogeneic hematopoietic stem cell transplantation (allo-HSCT). miR-500 expression status and clinical data were obtained from 74 patients with AML in the The Cancer Genome Atlas database receiving allo-HSCT. Patients with low expression level of miR-500 (miR-500low) were significantly more likely to present with a French-American-British classification M2 subtype (P=0.003), and less likely to have the M5 subtype (P=0.040) compared with patients with high expression levels (miR-500high). miR-500low patients were associated with low-risk AML (P=0.003) and core-binding factor subunit b-myosin heavy chain 11 translocation mutation (P=0.021). There was a significant difference in nucleophosmin 1 (P=0.009), NRAS proto-oncogene GTPase/KRAS proto-oncogene GTPase (P=0.047) and PHD finger protein 6 (P=0.040) expression levels between the two groups. miR-500high patients had a decreased overall survival (OS) time compared with the low expression group (P=0.035). Multivariate analysis revealed that miR-500 expression significantly affected OS time independent of other classical prognostic factors, such as age and common mutations. The analysis of survival curves further substantiated this result. The results obtained in the current study suggested that miR-500 may be a suitable prognostic marker for patients with AML receiving allo-HSCT."	"A Phase I Trial of the VEGF Receptor Tyrosine Kinase Inhibitor Pazopanib in Combination with the MEK Inhibitor Trametinib in Advanced Solid Tumors and Differentiated Thyroid Cancers. Differentiated thyroid cancer (DTC) responds to VEGF receptor inhibitors. VEGF signals through RAS/RAF/MEK signaling. We evaluated the safety and efficacy of the VEGF receptor inhibitor pazopanib and MEK inhibitor trametinib in advanced solid tumors and DTC. Patients with advanced solid tumors were enrolled in a phase I, multicenter trial with a DTC expansion cohort. Patients received pazopanib 400-800 mg and trametinib 1-2 mg daily. Efficacy in the expansion cohort was assessed with objective response (OR) at 6 months of treatment. Twenty-six patients were enrolled in five dose levels. MTD was not reached; the recommended phase II dose was pazopanib 800 mg orally and trametinib 2 mg orally every day. There was one dose-limiting toxicity on dose level 1 with grade 3 fatigue and muscle weakness. Common grade 3 adverse events were elevated transaminases (19%), diarrhea (15%), hypertension (12%), and fatigue (8%). Thirteen patients were enrolled in the DTC cohort; OR was 33% (95% confidence interval, 9.9, 65.1%) and median progression-free survival was 10.7 months. The cohort was terminated after planned interim analysis suggested insufficiently increased activity against the historical control of pazopanib alone. Reduction in tumor diameter negatively correlated with p-ERK change in tumor (Spearman ρ = -0.71; P = 0.05). NRAS mutation was associated with response (Fisher exact P = 0.008). Pazopanib + trametinib was tolerable at full single-agent doses with clinical activity in DTC but did not achieve the prespecified response rate target."	"Identification of Targetable Recurrent MAP3K8 Rearrangements in Melanomas Lacking Known Driver Mutations. Melanomas are characterized by driver and loss-of-function mutations that promote mitogen-activated protein kinase (MAPK) signaling. MEK inhibitors are approved for use in BRAF-mutated melanoma; however, early-phase clinical trials show occasional responses in driver-negative melanoma, suggesting other alterations conferring MAPK/ERK dependency. To identify additional structural alterations in melanoma, we evaluated RNA-Seq from a set of known MAPK/ERK regulators using a novel population-based algorithm in The Cancer Genome Atlas (TCGA). We identified recurrent MAP3K8 rearrangements in 1.7% of melanomas in TCGA, occurring in more than 15% of tumors without known driver mutations (BRAF, NRAS, KIT, GNAQ, GNA11, and NF1). Using an independent tumor set, we validated a similar rearrangement frequency by FISH. MAP3K8-rearranged melanomas exhibit a low mutational burden and absence of typical UV-mutational patterns. We identified two melanoma cell lines that harbor endogenous truncating MAP3K8 rearrangements that demonstrate exquisite dependency. Rearrangement and amplification of the MAP3K8 locus in melanoma cells result in increased levels of a truncated, active MAP3K8 protein; oncogenic dependency on the aberrant MAP3K8; and a concomitant resistance to BRAF inhibition and sensitivity to MEK or ERK1/2 inhibition. Our findings reveal and biochemically characterize targetable oncogenic MAP3K8 truncating rearrangements in driver mutation-negative melanoma, and provide insight to therapeutic approaches for patients with these tumors. These data provide rationale for using MEK or ERK inhibitors in a subset of driver-negative, MAPK/ERK-dependent melanomas harboring truncating MAP3K8 rearrangements. IMPLICATIONS: This is the first mechanistic study and therapeutic implications of truncating MAP3K8 rearrangements in driver-negative melanoma."	"Long term response on Regorafenib in non-V600E BRAF mutated colon cancer: a case report. <sup>Non-V600E</sup> BRAF mutated colorectal cancer (CRC) is a rare disease entity with specific clinical features. These tumors are less likely to have microsatellite instability than CRC with a V600E BRAF mutation and often harbor a KRAS or NRAS mutation. Notably, median overall survival is longer than in wild-type BRAF CRC. Little is known about treatment possibilities in these patients. We present the case of a 59 year old patient with a rare mutation in BRAF codon 594, who progressed rapidly on all classical therapies but experienced a clear and long lasting response on treatment with Regorafenib. Little is known about therapies that can be effective in the rare <sup>non-V600E</sup> BRAF mutated CRCs. We present a patient who had a definite response to treatment with Regorafenib. There are no predictive markers that define a subset of CRC patients who benefit most from Regorafenib. The specific features of this <sup>non-V600E</sup> BRAF mutated CRC may be relevant in the exploration of predictive biomarkers for the efficacy of Regorafenib."	"[Mutational Profiling of Pediatric Myeloid Leukemia Subtypes without Clinically Significant Chromosomal Aberrations]. The discovery of novel significant molecular and genetic markers is important for the diagnostics, prognosis, and therapy selection in hematological malignancies. Distinct cytogenetic aberrations leading to the formation of fusion genes are found in more than 40% of pediactric cases of acute myeloid leukemia (AML); however, the tumor cells in approximately 20% of these patients display cytogenetically normal karyotype (NK-AML). Here we present the analysis of the mutational profiles of leukemic cells collected from pediatric AML cases without known clinically significant chromosomal aberrations aimed at identifying AML specific markers. In 34 pediatric cases of different AML types, the coding regions of 26 genes involved in the AML pathogenesis were analyzed by massive parallel sequencing. Sequencing revealed the somatic mutations in genes that are involved in various intracellular signaling pathways, including the CEBPA, ETV, IDH1, JAK2, and NRAS genes. In addition, rare genetic variants were found in CUX1, FLT3, TET2, PTPN11, and NUP98 genes. This data may contribute to the understanding of the mechanisms of malignant cell transformation in the case of leukemogenesis."	"Extracellular vesicles from osteosarcoma cell lines contain miRNAs associated with cell adhesion and apoptosis. Osteosarcoma is the most common primary bone tumor during childhood and adolescence. Several reports have presented data on serum biomarkers for osteosarcoma, but few reports have analyzed circulating microRNAs (miRNAs). In this study, we used next generation miRNA sequencing to examine miRNAs isolated from microvesicle-depleted extracellular vesicles (EVs) derived from six different human osteosarcoma or osteoblastic cell lines with different degrees of metastatic potential (i.e., SAOS2, MG63, HOS, 143B, U2OS and hFOB1.19). EVs from each cell line contain on average ~300 miRNAs, and ~70 of these miRNAs are present at very high levels (i.e., &gt;1000 reads per million). The most prominent miRNAs are miR-21-5p, miR-143-3p, miR-148a-3p and 181a-5p, which are enriched between 3 and 100 fold and relatively abundant in EVs derived from metastatic SAOS2 cells compared to non-metastatic MG63 cells. Gene ontology analysis of predicted targets reveals that miRNAs present in EVs may regulate the metastatic potential of osteosarcoma cell lines by potentially inhibiting a network of genes (e.g., MAPK1, NRAS, FRS2, PRCKE, BCL2 and QKI) involved in apoptosis and/or cell adhesion. Our data indicate that osteosarcoma cell lines may selectively package miRNAs as molecular cargo of EVs that could function as paracrine agents to modulate the tumor micro-environment."	"Severe Noonan syndrome phenotype associated with a germline Q71R MRAS variant: a recurrent substitution in RAS homologs in various cancers. Activation of the RAS pathway through either the activation of genes that accelerate the pathway or the suppression of genes that inhibit the pathway leads to a group of disorders collectively referred to as RASopathies. The key molecules of the RAS pathway are KRAS, HRAS, and NRAS. Mutations in these three RAS homolog genes have been shown to be associated with RASopathies. Recently, two patients with a Noonan syndrome phenotype were shown to carry mutations in the yet another RASopathy gene, MRAS (muscle RAS oncogene homolog). Here, we report a patient with a severe Noonan syndrome phenotype associated with a germline Q71R MRAS variant, which represents a recurrent substitution in RAS homologs in various cancers. The patient's dysmorphic features included relative macrocephaly, a down-slanted palpebral fissure, hypertelorism, a depressed nasal bridge, and low-set ears with thick lobes; these facial features are strongly associated with RASopathy. We confirmed that the MRAS gene represents a causative gene for RASopathy."	"Molecular biomarkers and precision medicine in colorectal cancer: a systematic review of health economic analyses. An increased understanding of the biology of colorectal cancer (CRC) has fuelled identification of biomarkers with potential to drive a stratified precision medicine care approach in this common malignancy. We conducted a systematic review of health economic assessments of molecular biomarkers (MBMs) and their employment in patient stratification in CRC. Our analysis revealed scenarios where health economic analyses have been applied to evaluate the cost effectiveness of MBM-guided clinical interventions: (i) evaluation of Dihydropyrimidine dehydrogenase gene (DPYD) status to identify patients susceptible to 5-Fluouracil toxicity; (ii) determination of Uridine 5'-diphospho- glucuronosyltransferase family 1 member A1 gene (UGT1A1) polymorphism status to help guide irinotecan treatment; (iii) assessment of RAS/RAF mutational status to stratify patients for chemotherapy or Epidermal Growth Factor Receptor (EGFR) therapy and (iv) multigene expression analysis (Oncotype Dx) to identify and spare non-responders the debilitating effects of particular chemotherapy interventions. Our findings indicate that Oncotype Dx is cost-effective in high income settings within specific price points, by limiting treatment toxicity in CRC patients. DPYD status testing may also be cost effective in certain settings to avoid specific 5-FU toxicities post treatment. In contrast, current research does not support UGT1A1 polymorphism status as a cost-effective guide to irinotecan dosing, while the health economic evidence to support testing of KRAS/NRAS mutational status and chemo/EGFR therapy choice was inconclusive, despite its widespread adoption in CRC treatment management. However, we also show that there is a paucity of high-quality cost-effectiveness studies to support clinical application of precision medicine approaches in CRC."	"Combined blockade of MEK and PI3KCA as an effective antitumor strategy in HER2 gene amplified human colorectal cancer models. Targeting the epidermal growth factor receptor (EGFR) either alone or in combination with chemotherapy is an effective treatment for patients with RAS wild-type metastatic colorectal cancer (mCRC). However, only a small percentage of mCRC patients receive clinical benefits from anti-EGFR therapies, due to the development of resistance mechanisms. In this regard, HER2 has emerged as an actionable target in the treatment of mCRC patients with resistance to anti-EGFR therapy. We have used SW48 and LIM1215 human colon cancer cell lines, quadruple wild-type for KRAS, NRAS, BRAF and PI3KCA genes, and their HER2-amplified (LIM1215-HER2 and SW48-HER2) derived cells to perform in vitro and in vivo studies in order to identify novel therapeutic strategies in HER2 gene amplified human colorectal cancer. LIM1215-HER2 and SW48-HER2 cells showed over-expression and activation of the HER family receptors and concomitant intracellular downstream signaling including the pro-survival PI3KCA/AKT and the mitogenic RAS/RAF/MEK/MAPK pathways. HER2-amplified cells were treated with several agents including anti-EGFR antibodies (cetuximab, SYM004 and MM151); anti-HER2 (trastuzumab, pertuzumab and lapatinib) inhibitors; anti-HER3 (duligotuzumab) inhibitors; and MEK and PI3KCA inhibitors, such as refametinib and pictilisib, as single agents and in combination. Subsequently, different in vivo experiments have been performed. MEK plus PI3KCA inhibitors treatment determined the best antitumor activity. These results were validated in vivo in HER2-amplified patient derived tumor xenografts from three metastatic colorectal cancer patients. These results suggest that combined therapy with MEK and PI3KCA inhibitors could represent a novel and effective treatment option for HER2-amplified colorectal cancer."	"Clinicopathologic features and prognostic value of KRAS, NRAS and BRAF mutations and DNA mismatch repair status: A single-center retrospective study of 1,834 Chinese patients with Stage I-IV colorectal cancer. Mutations of KRAS, NRAS, BRAF and DNA mismatch repair (MMR) status have become an important part of the assessment of patients with colorectal cancer (CRC), while respective clinicopathologic features and prognostic significance in specific stages and related detection strategies remain unclear. We retrospectively analyzed clinicopathologic features and prognosis of 1,834 patients with Stage I-IV colorectal adenocarcinoma. Mutations in KRAS, NRAS and BRAF and DNA MMR status were determined. The mutation rates of KRAS, NRAS and BRAF were 46.4, 3.2 and 3.5%, respectively, and the mismatch repair gene deletion (dMMR) rate was 5.6%. In a multivariate analysis, female, advanced age, tumor type histology, mucinous carcinoma and positive tumor deposits were associated with a high KRAS mutation rate. A high BRAF mutation rate was associated with female, poor differentiation, lymphovascular invasion and positive tumor deposits. Factors associated with high dMMR rates included low age, large tumor size, poor differentiation, Stages I-III. Tumor site was independently associated with KRAS mutation, BRAF mutation and dMMR. KRAS and BRAF mutations were independent risk factors for shorter overall survival (OS) in Stage IV tumors but not in Stage I-III tumors. NRAS mutation was an independent risk factor for shorter OS in Stage I-II tumors. dMMR was independently associated with longer OS in Stage III tumors."	"Genomic alterations and survival in young patients aged under 40 years with completely resected non-small cell lung cancer. Young patients are rarely diagnosed with non-small cell lung cancer (NSCLC), and little is known about its predisposing genomic alterations and survival. This retrospective study was conducted to evaluate the genomic alterations, treatment and prognosis of young patients under 40 years old from a cohort of 640 lung adenocarcinoma and squamous carcinoma cases from Zhejiang Cancer Hospital. All patients were examined for EGFR, KRAS, NRAS, PIK3CA, BRAF and HER2 mutations and ALK, ROS1 and RET fusion genes. In total, 54 patients were aged under 40 years. The frequencies of genomic alterations in younger (≤40 years) and older (&gt;40 years) patients were 68.5% and 54.8%, respectively (P=0.05). Younger patients harbored a higher frequency of fusion genes (22.2% vs. 4.1%, P&lt;0.001) but not gene mutations (46.3% vs. 45.6%, P=0.92). There was a general trend toward shorter recurrence-free survival (RFS) (35.2 vs. 43.8 months, P=0.050), while no overall survival (OS) difference existed between younger and older patients (50.2 vs. 51.4 months, P=0.112). Younger patients with NSCLC had a higher frequency of gene fusions than older patients and had a trend of worse OS."	"TERT Promoter Mutation Spatial Heterogeneity in a Metastatic Follicular Thyroid Carcinoma: Implications for Clinical Work-Up. Follicular thyroid carcinoma (FTC) is not routinely diagnosed by a preoperative fine needle aspiration biopsy (FNAB), and the final diagnosis relies on histopathological criteria visible upon microscopic examination of the excised tumor. Several markers have been proposed as helpful in the identification of follicular thyroid tumors with malignant potential and worse prognosis, of which the specific point mutations C250T and C228T in the Telomerase Reverse Transcriptase (TERT) promoter region seem to be particularly promising. We describe a patient presenting with a large pelvic mass, in which a core needle biopsy was consistent with follicular-patterned thyroid tissue positive for a Q61R NRAS mutation and the C228T TERT promoter mutation. Upon clinical investigation, a 60-mm lesion was detected in the right thyroid lobe. The ensuing FNAB was consistent with a follicular thyroid tumor, Bethesda IV, positive for the same NRAS mutation and both the C228T and C250T TERT promoter mutations. A total thyroidectomy was performed, and a widely invasive FTC was diagnosed. Tumor tissue samples from various parts of the primary lesion were investigated for TERT promoter mutations, displaying C228T in three samples and C250T in one. Interestingly, the C228T mutations showed a coupling to areas with high Ki-67 proliferation indexes. Our data indicate that TERT promoter mutations can exhibit spatial heterogeneity in FTCs, with implications for clinical management as well as providing insights into the molecular biology underlying the tumoral etiology."	"The role of gene fusions in melanocytic neoplasms. Recent advances in next generation sequencing (NGS) have allowed for efficient whole transcriptome sequencing, leading to the identification of important kinase fusions as the primary driver in some melanocytic neoplasms. These fusions typically occur mutually exclusively of one another and other well-known initiating mutations such as BRAF, NRAS, NF1, KIT, and GNAQ. Fusions are found in over 50% of Spitz neoplasms, including ALK, BRAF, NTRK1, NTRK3, ROS1, MET, MAP3K8, and RET. Familiarity with the typical morphologic features of certain fusion-driven melanocytic neoplasms can help with classification, diagnosis, and identification of targeted molecular therapies in malignant cases. Spitz tumors with ALK, NTRK1, and NTRK3 fusions have characteristic morphologic features. BRAF and MAP3K8 fusions, in particular, tend to be epithelioid, high grade, and more frequent in Spitz melanoma than other fusion subtypes. Sporadic cases of pigmented epithelioid melanocytoma may have PRKCA fusions and sheets of monomorphic epithelioid melanocytes. Fusion events are also enriched among melanomas without the key mutations BRAF, NRAS, or NF1. Although NGS is the most reliable method to detect fusions, immunohistochemistry and fluorescence in situ hybridization are cost-effective alternatives in some cases. We describe recent discoveries regarding the role of kinase fusions in melanocytic neoplasms and their associated morphologies."	"Targeted Therapy in Metastatic Colorectal Cancer: Current Standards and Novel Agents in Review. Treatment options for patients with metastatic colorectal cancer continue to advance as the therapeutic implications of the molecular subtypes of this disease are becoming better understood. DNA sequencing and mismatch repair assessment are now standard of care analyses for patients with metastatic colorectal cancer Thi review describes important aspects of the biology of the clinically relevant molecular subtypes of colorectal cancer based on the current standard of care testing. In addition, the clinical treatment strategies available now and potentially in the future for these colorectal cancer subtypes are discussed. Currently for metastatic colorectal cancer, standard of care molecular testing is done for mutations in exons 2, 3, and 4 of KRAS and NRAS, and BRAF V600E. Testing for mismatch repair (MMR) deficiency/microsatellite instability (MSI) status is also done. These aberrations are well known to change the clinical prognosis and guide patients' treatment strategies. Additionally, three new subtypes have emerged: PIK3CAmut, HER2 amplified, and NTRK fusions. With the addition of these emerging subtypes, tumor heterogeneity further validates the need to examine mCRC as a heterogeneous disease. Here we present recent exciting data from translational research and clinical trials exhibiting possible distinct treatment strategies for these different subtypes. Altogether these data show promising treatment strategies for many of these well-known and emerging subtypes of mCRC. In addition, these also give better clinical prognostic and predictive information. We believe that as molecular testing expands PIK3CA mutation, HER2 amplification, and NTRK fusion molecular testing will be included in standard of care analyses. This incorporation of testing in clinical practice will generate further information regarding prognostic and therapeutic options for these and other CRC subtypes in the future."	"Diagnosis and treatment of juvenile myelomonocytic leukemia in Slovak Republic: novel approaches. Juvenile myelomonocytic leukemia (JMML) is a rare, aggressive clonal myeloproliferative disorder of infancy and early childhood caused by oncogenic mutations in genes involved in the Ras pathway. Long-term survival has only been achieved with hematopoietic stem cell transplantation (HSCT), being able to cure more than 50% patients. To manage the disease before HSCT remains an important issue with constant searching for optimal treatment modalities. According to several retrospective analyses, azacitidine (AZA) induced clinical and molecular responses in patients with relapsed JMML pre-transplant and post-transplant, suggesting its use as a promising &quot;bridging&quot; therapy before HSCT. In this paper we report our first consecutive cohort of patients with JMML treated at our institution as well as our experience with the diagnosis, novel treatment and management of these patients before the HSCT. We present 6 patients with JMML, harboring different somatic mutations (PTPN11 and NRAS), with distinct clinical features; 3 of them had been treated with AZA 75 mg/m2 i.v. on days 1 to 7 of a 28-day cycle before the HSCT. Response to therapy was evaluated after each cycle in accordance with the International response criteria. One patient had a progression of splenomegaly during the treatment and after three cycles he was urgently transplanted. At the present, he is remaining in complete remission 3 years after HSCT. Two patients showed impressive response following the first cycle of the therapy with a regression of splenomegaly and monocyte count, normalized leukocytes, platelets and absent blasts in peripheral blood. The treatment was well tolerated with no adverse effect recorded. The clinical activity and favorable toxicity of AZA in JMML provide a rationale for its use as a &quot;bridging&quot; therapy before HSCT. Prospective trials with accompanying translational studies are required to provide further information regarding individual factors that may direct the most appropriate choice of pretransplantation therapy."	"Molecular characterization of colorectal cancer using whole-exome sequencing in a Taiwanese population. Next-generation sequencing (NGS) technology is currently used to establish mutational profiles in many heterogeneous diseases. The aim of this study was to evaluate the mutational spectrum in Taiwanese patients with colorectal cancer (CRC) to help clinicians identify the best treatment method. Whole-exome sequencing was conducted in 32 surgical tumor tissues from patients with CRC. DNA libraries were generated using the Illumina TruSeq DNA Exome, and sequencing was performed on the Illumina NextSeq 500 system. Variants were annotated and compared to those obtained from publicly available databases. The analysis revealed frequent mutations in APC (59.38%), TP53 (50%), RAS (28.13%), FBXW7 (18.75%), RAF (9.38%), PIK3CA (9.38%), SMAD4 (9.38%), and SOX9 (9.38%). A mutation in TCF7L2 was also detected, but at lower frequencies. Two or more mutations were found in 22 (68.75%) samples. The mutation rates for the WNT, P53, RTK-RAS, TGF-β, and PI3K pathways were 78.13%, 56.25%, 40.63%, 18.75%, and 15.63%, respectively. RTK-RAS pathway mutations were correlated with tumor size (P = 0.028). We also discovered 23 novel mutations in NRAS, PIK3CA, SOX9, APC, SMAD4, MSH3, MSH4, PMS1 PMS2, AXIN2, ERBB2, PIK3R1, TGFBR2, and ATM that were not reported in the COSMIC, The Cancer Genome Atlas, and dbSNP databases. In summary, we report the mutational landscape of CRC in a Taiwanese population. NGS is a cost-effective and time-saving method, and we believe that NGS will help clinicians to treat CRC patients in the near future."	"Longitudinal sequencing of RUNX1 familial platelet disorder: new insights into genetic mechanisms of transformation to myeloid malignancies. The mechanisms by which patients with RUNX1 familial platelet disorder with propensity to myeloid malignancies (FPDMM) develop myeloid malignancies (MM) are not fully understood. We report the results of targeted next-generation sequencing on three patients with RUNX1 FPDMM who developed acute myeloid leukaemia or myelodysplastic syndromes (AML/MDS). DNA samples were collected from bone marrow, peripheral blood and buccal swabs at different time points. One patient had clonal haematopoiesis, represented by an SRSF2 p.P95R variant, prior to his AML diagnosis, when he developed an additional NRAS p.G12D variant. His sister presented to us with MDS, with a TET2 p.S471fs and identical NRAS p.G12D variant. The third patient, from another family, had an additional RUNX1 p.R204X and an NFE2 p.Q139fs variant at AML diagnosis. This constitutes the first report of NFE2 variants in AML without extramedullary disease and NRAS variants in AML/MDS in the setting of FPDMM. A systematic review of the literature including our findings distinguishes two genetic landscapes at AML transformation from FPDMM characterized by either the presence or absence of somatic abnormalities in RUNX1 with or without variants in genes usually associated with MM. Whether clonal haematopoiesis precedes transformation only in patients without somatic abnormalities in RUNX1 needs further confirmation."	"Patterns of gene mutations in bile duct cancers: is it time to overcome the anatomical classification? Two recent studies based on multi-omics data analysis identified distinct subtypes of bile-duct cancers (BDC) with important implications in terms of disease classification and patients' treatment. Patients with mutations in KRAS, NRAS, TP53, and ARID1A genes were classified in KRAS/TP53 group while patients with mutations in IDH1-2, BAP1, and PBRM1 were classified in IDH1-2/BAP1/PBRM1 group. The aim of this study was to define long-term outcomes among patients stratified by patterns of genes mutated. Among 105 patients who underwent surgical resection for BDCs, 71 (68%) patients were classified in two groups based on patterns of genes mutated. While in IDH1-2/BAP1/PBRM1 group there were 58%, 22%, and 10% of patients with intrahepatic-cholangiocarcinoma (ICC), perihilar-cholangiocarcinoma (PHCC), and gallbladder cancer (GBC), in KRAS/TP53 group there were 42%, 78%, and 90% of patients with ICC, PHCC, and GBC (p = 0.003), respectively. Patients in IDH1-2/BAP1/PBRM1 group had a 5-year OS of 40% compared with 13% for KRAS/TP53 group (p = 0.032). In a multivariable model adjusted for margins, lymph-node status, microvascular invasion, and tumor grade, patients in KRAS/TP53 group had a 2.1-fold increased risk of death compared with patients in IDH1-2/BAP1/PBRM1 group (p = 0.028). Genetic data were able to overcome the clinical based staging system in predicting patients' prognosis."	"Final congenital melanocytic naevi colour is determined by normal skin colour and unaltered by superficial removal techniques: a longitudinal study. Spontaneous lightening of congenital melanocytic naevi (CMN) has not been studied systematically. Final colour is considered an important outcome after superficial removal techniques such as curettage, dermabrasion or laser ablation, and is often compared with colour at birth. To quantify the natural history of CMN lightening over time, and explore phenotypic and genotypic predictors of colour change. A longitudinal cohort study was undertaken of 110 patients with CMN (mean follow-up 5·3 years). Accurate colour-space measurements were taken from professional serial photographs of CMN and normal skin. Changes in colour over time were modelled using multiple logistic regression, against phenotypic and genotypic variables. Lightening of CMN was significantly associated with lighter normal skin colour (P &lt; 0·001) and with MC1R variant alleles (red/blonde hair gene) (P &lt; 0·001), but not with CMN colour in the first 3 months of life, NRAS genotype or projected adult size of CMN. Importantly, the final colours of adjacent treated and untreated areas of CMN were indistinguishable. Final CMN colour in childhood is related to the genetically determined skin colour of the individual, is unrelated to the colour of CMN at birth, and is unaffected by superficial removal. What's already known about this topic? Final colour of congenital melanocytic naevi (CMN) is considered an important outcome after superficial removal techniques such as curettage, dermabrasion or laser ablation, and is often compared with colour at birth. The phenomenon of spontaneous lightening in CMN, in which naevi lighten gradually and sometimes dramatically during childhood, has been described but not systematically studied. What does this study add? Final CMN colour in childhood is significantly associated with the individual's normal skin colour, and with MC1R genotype, and is therefore genetically determined. Final CMN colour is not predictable from CMN colour in the first 3 months of life. Superficial removal techniques do not alter the final colour of CMN."	"Neuroblastoma RAS viral oncogene homolog mRNA is differentially spliced to give five distinct isoforms: implications for melanoma therapy. Neuroblastoma RAS viral oncogene homolog is a commonly mutated oncogene in melanoma, and therapeutic targeting of neuroblastoma RAS viral oncogene homolog has proven difficult. We characterized the expression and phenotypic functions of five recently discovered splice isoforms of neuroblastoma RAS viral oncogene homolog in melanoma. Canonical neuroblastoma RAS viral oncogene homolog (isoform-1) was expressed to the highest degree and its expression was significantly increased in melanoma metastases compared to primary lesions. Isoform-5 expression in metastases showed a significant, positive correlation with survival and tumours over-expressing isoform-5 had significantly decreased growth in a xenograft model. In contrast, over-expression of any isoform resulted in enhanced proliferation, and invasiveness was increased with over-expression of isoform-1 or isoform-2. Downstream signalling analysis indicated that the isoforms signalled differentially through the mitogen-activated protein kinase and PI3K pathways and A375 cells over-expressing isoform-2 or isoform-5 showed resistance to vemurafenib treatment in vitro. The neuroblastoma RAS viral oncogene homolog isoforms appear to play varying roles in melanoma phenotype and could potentially serve as biomarkers for therapeutic response and disease prognosis."	"Does the gene matter? Genotype-phenotype and genotype-outcome associations in congenital melanocytic naevi. Genotype-phenotype studies can identify subgroups of patients with specific clinical features or differing outcomes, which can help shape management. To characterize the frequency of different causative genotypes in congenital melanocytic naevi (CMN), and to investigate genotype-phenotype and genotype-outcome associations. We conducted a large cohort study in which we undertook MC1R genotyping from blood, and high-sensitivity genotyping of NRAS and BRAF hotspots in 156 naevus biopsies from 134 patients with CMN [male 40%; multiple CMN 76%; projected adult size (PAS) &gt; 20 cm, 59%]. Mosaic NRAS mutations were detected in 68%, mutually exclusive with BRAF mutations in 7%, with double wild-type in 25%. Two separate naevi were sequenced in five of seven patients with BRAF mutations, confirming clonality. Five of seven patients with BRAF mutations had a dramatic multinodular phenotype, with characteristic histology distinct from classical proliferative nodules. NRAS mutation was the commonest in all sizes of CMN, but was particularly common in naevi with PAS &gt; 60 cm, implying more tolerance to that mutation early in embryogenesis. Facial features were less common in double wild-type patients. Importantly, the incidence of congenital neurological disease, and apparently of melanoma, was not altered by genotype; no cases of melanoma were seen in BRAF-mutant multiple CMN, however, this genotype is rare. CMN of all sizes are most commonly caused by mutations in NRAS. BRAF is confirmed as a much rarer cause of multiple CMN, and appears to be commonly associated with a multinodular phenotype. Genotype in this cohort was not associated with differences in incidence of neurological disease in childhood. However, genotyping should be undertaken in suspected melanoma, for guidance of treatment. What's already known about this topic? Multiple congenital melanocytic naevi (CMN) have been shown to be caused by NRAS mosaic mutations in 70-80% of cases, by BRAF mosaicism in one case report and by inference in some previous cases. There has been debate about genotypic association with different sizes of CMN, and no data on genotype-outcome. What does this study add? NRAS mosaicism was found in 68%, BRAF in 7% and double wild-type in 25% of cases of CMN. NRAS was the commonest mutation in all sizes of CMN, but was nearly universal in projected adult size &gt; 60 cm. BRAF is often associated with a distinct multinodular clinical/histological phenotype. Adverse outcomes did not differ between genotypes on current numbers."	"HMGB1 regulates erastin-induced ferroptosis via RAS-JNK/p38 signaling in HL-60/NRAS<sup>Q61L</sup> cells. Ferroptosis is emerging as a new form of regulated cell death driven by oxidative injury promoting lipid peroxidation in an iron-dependent manner. High mobility group box 1 (HMGB1) plays an important role in leukemia pathogenesis and chemotherapy resistance. The mechanisms of ferroptosis in tumor pathogenesis and treatment have been a recent research focus but the role of HMGB1 in regulating ferroptosis especially in leukemia still remains largely unknown. Here, we shown that HMGB1 is a critical regulator of eratin-induced ferroptosis in HL-60 cell line expressing NRAS<sup>Q61L</sup> (HL-60/NRAS<sup>Q61L</sup>). Erastin enhanced ROS levels, thereby promoting cytosolic translocation of HMGB1 and enhancing cell death. Knockdown of HMGB1 decreased erastin-induced ROS generation and cell death in an iron-mediated lysosomal pathway in HL-60/NRAS<sup>Q61L</sup> cells. Knockdown of HMGB1 or rat sarcoma (RAS), or pharmacological inhibition of JNK and p38 decreased TfR1 levels in HL-60/NRAS<sup>Q61L</sup> cells. Importantly, these data were further supported by our in vivo experiment, in which xenografts formed by HMGB1 knockdown HL-60/NRAS<sup>Q61L</sup> cells had lower PTGS2 and TfR1 expression than that in control mice. Taken together, these results suggest that HMGB1 is a novel regulator of ferroptosis via the RAS-JNK/p38 pathway and a potential drug target for therapeutic interventions in leukemia."	"[Combined detection of KRAS, NRAS, BRAF and PIK3CA mutations in the plasma and tumor tissues of colorectal cancer patients]. Objective: To analyze the concordance of KRAS, NRAS, BRAF and PIK3CA gene mutations detected in plasma and matched tumor tissues in colorectal cancer patients, in order to provide good evidences to support plasma could be a potential surrogate of tumor tissue for gene mutation test. Methods: One hundred and seventy-five cases of colorectal cancer were collected at the First Hospital of Jilin University, from October 2016 to October 2017.There were 101 males and 74 females, their ages ranged from 28 to 85 years,with median age of 59 years. The KRAS, NRAS, BRAF and PIK3CA gene mutations in the plasma and paired tumor specimens of all patients were detected by next generation sequencing. Results: The results of tissue samples test were gold standard. Comparison of the four genes showed that concordance rates between plasma and tissue samples were 81.1%(Kappa=0.543), 99.4%(Kappa=0.886), 99.4% (Kappa=0.886) and 97.7%(Kappa=0.714) respectively for KRAS, NRAS, BRAF and PIK3CA. The plasma detection rates of these genes were related to tumor stage(P=0.001), but not to gender(P=0.468) and age(P=1.000) of patients. Conclusions: The study shows a high concordance of KRAS, NRAS, BRAF and PIK3CA gene mutations in plasma against mutation status in tumor tissue. In colorectal cancer, tumor tissue remains the best specimen for gene detection. However, patients from tumor tissue specimens cannot be obtained, especially those with advanced metastases, plasma can be used instead of tissue to detect the mutation status of KRAS, NRAS, BRAF and PIK3CA to guide targeted therapy. 目的: 通过检测结直肠癌患者血浆与组织中KRAS、NRAS、BRAF及PIK3CA基因突变情况,分析血浆与组织基因突变检测结果的一致性,为血浆可替代组织进行基因突变检测提供依据。 方法: 收集2016年10月至2017年10月在吉林大学白求恩第一医院进行手术切除的结直肠癌及其相应的患者血浆标本175例,其中男性101例,女性74例;患者年龄28~85岁,中位年龄59岁。运用二代测序法分别对175例结直肠癌患者的血浆和对应肿瘤组织的KRAS、NRAS、BRAF及PIK3CA基因突变状态进行检测。 结果: 以组织样本检测结果为金标准,KRAS基因在血浆和组织检测一致率为81.1%(Kappa值=0.543),NRAS检测一致率为99.4%(Kappa值=0.886),BRAF检测一致率为99.4%(Kappa值=0.886),PIK3CA检测一致率为97.7%(Kappa值=0.714),结果一致性较好;血浆中基因突变检测阳性率与结直肠癌患者的分期有关(P=0.001),与性别(P=0.468)、年龄(P=1.000)均无关。 结论: 血浆检测KRAS、NRAS、BRAF、PIK3CA基因突变与组织的一致性较好。虽然肿瘤组织仍是最佳的检测标本,但在结直肠癌患者无法获得肿瘤组织标本时,尤其是晚期已发生转移的患者,可考虑用血浆代替组织检测KRAS、NRAS、BRAF及PIK3CA的突变状态,用于指导患者的靶向治疗。."	"Cytogenetics and associated mutation profile in patients with acute monocytic leukemia. Cytogenetics and molecular testings for disease classifying and prognosis estimation are becoming routine in clinical practice. However, the molecular characteristics of acute monocytic leukemia (AML-M5) remain unclear. The aim of this study was to investigate the association between karyotypes and gene mutations, especially in AML-M5 patients with 11q23/KMT2A (MLL) rearrangement and normal karyotype. A total of 126 de novo AML-M5 patients were screened for mutations in the 51 genes known or suspected to have a role in myeloid malignancies or in monocytic differentiation using next-generation sequencing (NGS). Chromosome karyotype analysis was performed by R-banding method and further confirmed either by fluorescence in situ hybridization (FISH) and/or by multiple reverse transcription polymerase chain reaction (multiple RT-PCR). Of the 126 patients, one or more mutations were detected in 83.3% patients. FLT3-ITD and NRAS had the highest mutation frequency, followed by NPM1, DNMT3A, TET2, KRAS, and RUNX1. We also identified a significant difference in mutational spectrums between KMT2A-rearranged (KMT2Ar) patients and normal karyotype (NK) patients, as reflected in the average number of gene mutations per patient (1.66 vs 2.46), and in the frequencies of commonly mutated genes (FLT3-ITD: 6% vs 43.5%; NPM1: 0% vs 43.5%; RUNX1: 2.0% vs 15.2%; DNMT3A: 4% vs 26.1%; KRAS: 24.0% vs 4.35%). Patients harboring ≥3 mutations showed much lower complete remission rate than that with double mutations (P = 0.043) in high-risk group. There was a significantly different mutation profile between KMT2Ar-patients and NK patients. Our research provided new insight into the molecular characteristics of AML-M5."	"Retrospective comparison of efficacy and safety of CAPOX and FOLFOX regimens as adjuvant treatment in patients with stage III colon cancer. This study aimed to evaluate the efficacy and safety profile of capecitabine and oxaliplatin (CAPOX) and 5-fluorouracil, leucovorin, and oxaliplatin (FOLFOX) regimens as adjuvant treatment in patients with stage III colon cancer. A total of 243 patients who received CAPOX and FOLFOX chemotherapy between 2014 and 2018 for stage III colon cancer in two centers were retrospectively studied. Among the patients, 106 (43.6%) and 137 (56.4%) were treated using CAPOX and FOLFOX regimens, respectively. Efficacy, treatment-related side effects, and overall survival rates with these two regimens were compared. The rate of disease progression was significantly higher in the presence of moderately/poorly differentiated histology, and KRAS and NRAS mutations. An increased number of metastatic lymph nodes and prolonged time from surgery to chemotherapy significantly increased disease progression. Patients who received CAPOX were significantly older than those who received FOLFOX. Disease progression, metastasis, and mortality rates were significantly higher in the FOLFOX arm than in the CAPOX arm. There was no significant difference in the overall survival rate between the two regimens. The CAPOX regimen is preferred in older patients. Disease progression, metastasis, and mortality rates are higher with FOLFOX than with CAPOX."	"Loss of RAF kinase inhibitor protein is involved in myelomonocytic differentiation and aggravates RAS-driven myeloid leukemogenesis. RAS-signaling mutations induce the myelomonocytic differentiation and proliferation of hematopoietic stem and progenitor cells. Moreover, they are important players in the development of myeloid neoplasias. RAF kinase inhibitor protein (RKIP) is a negative regulator of RAS-signaling. As RKIP loss has recently been described in RAS-mutated myelomonocytic acute myeloid leukemia, we now aimed to analyze its role in myelomonocytic differentiation and RAS-driven leukemogenesis. Therefore, we initially analyzed RKIP expression during human and murine hematopoietic differentiation and observed that it is high in hematopoietic stem and progenitor cells and lymphoid cells but decreases in cells belonging to the myeloid lineage. By employing short hairpin RNA knockdown experiments in CD34<sup>+</sup> umbilical cord blood cells and the undifferentiated acute myeloid leukemia cell line HL-60, we show that RKIP loss is indeed functionally involved in myelomonocytic lineage commitment and drives the myelomonocytic differentiation of hematopoietic stem and progenitor cells. These results could be confirmed in vivo, where Rkip deletion induced a myelomonocytic differentiation bias in mice by amplifying the effects of granulocyte macrophage-colony-stimulating factor. We further show that RKIP is of relevance for RAS-driven myelomonocytic leukemogenesis by demonstrating that Rkip deletion aggravates the development of a myeloproliferative disease in Nras<sup>G12D</sup> -mutated mice. Mechanistically, we demonstrate that RKIP loss increases the activity of the RAS-MAPK/ERK signaling module. Finally, we prove the clinical relevance of these findings by showing that RKIP loss is a frequent event in chronic myelomonocytic leukemia, and that it co-occurs with RAS-signaling mutations. Taken together, these data establish RKIP as novel player in RAS-driven myeloid leukemogenesis."	NA
+"PTPN11"	"Noonan syndrome"	"Assessing Cellular Target Engagement by SHP2 (PTPN11) Phosphatase Inhibitors. The Src-homology 2 (SH2) domain-containing phosphatase 2 (SHP2), encoded by the PTPN11 proto-oncogene, is a key mediator of receptor tyrosine kinase (RTK)-driven cell signaling, promoting cell survival and proliferation. In addition, SHP2 is recruited by immune check point receptors to inhibit B and T cell activation. Aberrant SHP2 function has been implicated in the development, progression, and metastasis of many cancers. Indeed, small molecule SHP2 inhibitors have recently entered clinical trials for the treatment of solid tumors with Ras/Raf/ERK pathway activation, including tumors with some oncogenic Ras mutations. However, the current class of SHP2 inhibitors is not effective against the SHP2 oncogenic variants that occur frequently in leukemias, and the development of specific small molecules that target oncogenic SHP2 is the subject of current research. A common problem with most drug discovery campaigns involving cytosolic proteins like SHP2 is that the primary assays that drive chemical discovery are often in vitro assays that do not report the cellular target engagement of candidate compounds. To provide a platform for measuring cellular target engagement, we developed both wild-type and mutant SHP2 cellular thermal shift assays. These assays reliably detect target engagement of SHP2 inhibitors in cells. Here, we provide a comprehensive protocol of this assay, which provides a valuable tool for the assessment and characterization of SHP2 inhibitors."	"Medicinal chemistry strategies for the development of protein tyrosine phosphatase SHP2 inhibitors and PROTAC degraders. As a non-receptor protein tyrosine phosphatase encoded by the PTPN11 gene, the Src homology 2 domain-containing protein tyrosine phosphatase (SHP2) is involved in mitogen-activated protein kinase (MAPK) signaling pathway and contributes to immune surveillance via programmed cell death pathway (PD-1/PD-L1). To date, numerous SHP2 inhibitors have been developed, some of them have advanced into clinical trials. Moreover, the first PROTAC degrader SHP2-D26 has been proved to effectively induce degradation of SHP2, which may open a new avenue for targeted SHP2 therapies. In this review, we systematically summarized the development of SHP2 inhibitors with a particular focus on the structure-activity relationships (SAR) studies, crystal structures or binding models, and their modes of action."	"Congenital sensorineural hearing loss as the initial presentation of PTPN11-associated Noonan syndrome with multiple lentigines or Noonan syndrome: clinical features and underlying mechanisms. Germline variants in PTPN11 are the primary cause of Noonan syndrome with multiple lentigines (NSML) and Noonan syndrome (NS), which share common skin and facial symptoms, cardiac anomalies and retardation of growth. Hearing loss is considered an infrequent feature in patients with NSML/NS. However, in our cohort, we identified a group of patients with PTPN11 pathogenic variants that were primarily manifested in congenital sensorineural hearing loss (SNHL). This study evaluated the incidence of PTPN11-related NSML or NS in patients with congenital SNHL and explored the expression of PTPN11 and the underlying mechanisms in the auditory system. A total of 1502 patients with congenital SNHL were enrolled. Detailed phenotype-genotype correlations were analysed in patients with PTPN11 variants. Immunolabelling of Ptpn11 was performed in P35 mice. Zebrafish with Ptpn11 knockdown/mutant overexpression were constructed to further explore mechanism underlying the phenotypes. Ten NSML/NS probands were diagnosed via the identification of pathogenic variants of PTPN11, which accounted for ~0.67% of the congenital SNHL cases. In mice cochlea, Shp2, which is encoded by Ptpn11, is distributed in the spiral ganglion neurons, hair cells and supporting cells of the inner ear. In zebrafish, knockdown of ptpn11a and overexpression of mutant PTPN11 were associated with a significant decrease in hair cells and supporting cells. We concluded that congenital SNHL could be a major symptom in PTPN11-associated NSML or NS. Other features may be mild, especially in children. Screening for PTPN11 in patients with congenital hearing loss and variant-based diagnoses are recommended."	"Enhanced MAPK1 Function Causes a Neurodevelopmental Disorder within the RASopathy Clinical Spectrum. Signal transduction through the RAF-MEK-ERK pathway, the first described mitogen-associated protein kinase (MAPK) cascade, mediates multiple cellular processes and participates in early and late developmental programs. Aberrant signaling through this cascade contributes to oncogenesis and underlies the RASopathies, a family of cancer-prone disorders. Here, we report that de novo missense variants in MAPK1, encoding the mitogen-activated protein kinase 1 (i.e., extracellular signal-regulated protein kinase 2, ERK2), cause a neurodevelopmental disease within the RASopathy phenotypic spectrum, reminiscent of Noonan syndrome in some subjects. Pathogenic variants promote increased phosphorylation of the kinase, which enhances translocation to the nucleus and boosts MAPK signaling in vitro and in vivo. Two variant classes are identified, one of which directly disrupts binding to MKP3, a dual-specificity protein phosphatase negatively regulating ERK function. Importantly, signal dysregulation driven by pathogenic MAPK1 variants is stimulus reliant and retains dependence on MEK activity. Our data support a model in which the identified pathogenic variants operate with counteracting effects on MAPK1 function by differentially impacting the ability of the kinase to interact with regulators and substrates, which likely explains the minor role of these variants as driver events contributing to oncogenesis. After nearly 20 years from the discovery of the first gene implicated in Noonan syndrome, PTPN11, the last tier of the MAPK cascade joins the group of genes mutated in RASopathies."	"Role of lncRNA Morrbid in PTPN11(Shp2)E76K-driven juvenile myelomonocytic leukemia. Mutations in PTPN11, which encodes the protein tyrosine phosphatase SHP2, contribute to ∼35% of cases of juvenile myelomonocytic leukemia (JMML). A common clinical picture in children with JMML is that it presents as a constitutive hyperinflammatory syndrome, partially reminiscent of chronic myelomonocytic leukemia in adults. Thus, a component of JMML is associated with a hyperinflammatory state and abundant innate immune cells such as neutrophils and monocytes. Recently, we showed that the evolutionarily conserved mouse lncRNA Morrbid is specifically expressed in myeloid cells and uniquely represses the expression of the proapoptotic gene Bim to regulate the lifespan of myeloid cells. However, its role in JMML has not been investigated. In this study, we characterized the role of Morrbid and its target Bim, which are significantly dysregulated in Shp2E76K/+-bearing myeloid cells, in driving JMML. Loss of Morrbid in a mouse model of JMML driven by the Shp2E76K/+ mutation resulted in a significant correction of myeloid and erythroid cell abnormalities associated with JMML, including overall survival. Consistently, patients with JMML who had PTPN11, KRAS, and NRAS mutations and high expression of MORRBID manifested poor overall survival. Our results suggest that Morrbid contributes to JMML pathogenesis."	"Molecular Basis of ETV6-Mediated Predisposition to Childhood Acute Lymphoblastic Leukemia. There is growing evidence supporting an inherited basis for susceptibility to acute lymphoblastic leukemia (ALL) in children. In particular, we and others reported recurrent germline ETV6 variants linked to ALL risk, which collectively represent a novel leukemia predisposition syndrome. To understand the influence of ETV6 variation on ALL pathogenesis, we comprehensively characterized a cohort of 32 childhood leukemia cases arising from this rare syndrome. Of 34 nonsynonymous germline ETV6 variants in ALL, we identified 22 variants with impaired transcription repressor activity, loss of DNA binding, and altered nuclear localization. Missense variants retained dimerization with WT ETV6 with potentially dominate negative effects. Whole transcriptome and whole genome sequencing of this cohort of leukemia cases revealed a profound influence of germline ETV6 variants on leukemia transcriptional landscape, with distinct ALL subsets invoking unique patterns of somatic cooperating mutations. 70% of ALL cases with damaging germline ETV6 variants exhibited hyperdiploid karyotype with characteristic recurrent mutations in NRAS, KRAS, and PTPN11. In contrast, the remaining 30% cases had a diploid leukemia genome and an exceedingly high frequency of somatic copy number loss of PAX5 and ETV6, with a gene expression pattern that strikingly mirrored that of ALL with somatic ETV6-RUNX1 fusion. Two ETV6 germline variants gave rise to both AML and ALL, with lineage-specific genetic lesions in the leukemia genomes. ETV6 variants compromise its tumor suppressor activity in vitro with specific molecular targets identified by ATAC-seq profiling. ETV6-mediated ALL predisposition exemplifies the intricate interactions between inherited and acquired genomic variations in leukemia pathogenesis."	"Drug Repositioning for Noonan and LEOPARD Syndromes by Integrating Transcriptomics With a Structure-Based Approach. Noonan and LEOPARD syndromes (NS and LS) belong to a group of related disorders called RASopathies characterized by abnormalities of multiple organs and systems including hypertrophic cardiomyopathy and dysmorphic facial features. There are no approved drugs for these two rare diseases, but it is known that a missense mutation in PTPN11 genes is associated with approximately 50% and 70% of NS and LS cases, respectively. In this study, we implemented a hybrid computational drug repositioning framework by integrating transcriptomic and structure-based approaches to explore potential treatment options for NS and LS. Specifically, disease signatures were derived from the transcriptomic profiles of human induced pluripotent stem cells (iPSCs) from NS and LS patients and reverse correlated to drug transcriptomic signatures from CMap and L1000 projects on the basis that if disease and drug transcriptomic signatures are reversely correlated, the drug has the potential to treat that disease. The compounds that were ranked top based on their transcriptomic profiles were docked to mutated and wild-type 3D structures of PTPN11 by an adjusted Induced Fit Docking (IFD) protocol. In addition, we prioritized repositioned candidates for NS and LS by a consensus ranking strategy. Network analysis and phenotypic anchoring of the transcriptomic data could discriminate the two diseases at the molecular level. Furthermore, the adjusted IFD protocol was able to recapitulate the binding specificity of potential drug candidates to mutated 3D structures, revealing the relevant amino acids. Importantly, a list of potential drug candidates for repositioning was identified including 61 for NS and 43 for LS and was further verified from literature reports and on-going clinical trials. Altogether, this hybrid computational drug repositioning approach has highlighted a number of drug candidates for NS and LS and could be applied to identifying drug candidates for other diseases as well."	"Non-invasive prenatal sequencing for multiple Mendelian monogenic disorders among fetuses with skeletal dysplasia or increased nuchal translucency. To evaluate the performance of non-invasive prenatal sequencing for multiple Mendelian monogenic disorders (NIPS-M) among fetuses with skeletal abnormalities or increased nuchal translucency (NT). Pregnancies with fetal skeletal abnormalities or increased NT (≥3.0 mm) observed by ultrasonography were recruited between October 2017 and March 2019. Parental blood from 13 couples were collected for NIPS-M testing reported. All the NIPS-M results were followed up by invasive diagnostic testing or neonatal examination. Among the 13 cases, 8 (61.5%) yielded positive results for pathogenic variants in the FGFR3, COL1A1, RAF1, PTPN11 and SOS1 genes by NIPS-M. One case was excluded for further analysis due to insufficient fetal DNA (&lt;4.5%). De novo mutations were reported in six of the eight positive cases (75%). The other two were inconclusive as the pathogenic variants were detected in both plasma and genomic DNA of the mothers. The sensitivity of NIPS-M was 100%. Our pilot study demonstrates that NIPS-M is an accurate approach for detection of multiple monogenic disorders among fetuses with skeletal abnormalities or increased NT. It serves as an alternative and highly sensitive method to provide valuable molecular information for these groups of women who are reluctant to undergo invasive procedure. This article is protected by copyright. All rights reserved."	"CD14/16 monocyte profiling in juvenile myelomonocytic leukemia. Monocyte subset analysis by flow cytometry has been shown to be a useful diagnostic tool in chronic myelomonocytic leukemia in adults. An increase in the classical monocyte fraction (CD14++/CD16-) greater than 94.0% of total monocytes is considered highly sensitive and specific in distinguishing chronic myelomonocytic leukemia from other myeloproliferative disorders. In a pilot study of juvenile myelomonocytic leukemia cases, we noted that CD14++/CD16- monocyte fraction was &gt;95% in de novo juvenile myelomonocytic leukemia (JMML) with somatic PTPN11 mutations but normal in those with monosomy 7 or Noonan syndrome. Monocyte subgroup profiling by itself is not diagnostic of JMML but may distinguish molecular subgroups within JMML."	"A novel TJP1-ROS1 fusion in malignant peripheral nerve sheath tumor responding to crizotinib: A case report. Malignant peripheral nerve sheath tumor (MPNST) is a rare sarcoma. Owing to the lack of specific histological criteria, immunohistochemical, and molecular diagnostic markers, several differential diagnoses must be considered. Advances in molecular testing can provide significant insights for management of rare tumor. The patient was a 50-year-old man with a history of lumpectomy on the right back 30 years ago. He felt a stabbing pain at the right iliac fossa and went to the local hospital. By immunohistochemistry, the tumor cells stained positively for S-100 (focal +), CD34 (strong +++) and Ki-67 (20%), and negatively for smooth muscle actin, pan-cytokeratin, neurofilament, pan-cytokeratin-L, GFAP, CD31, STAT6, ERG, myogenin, and MyoD1. Combined with the histopathology and immunohistochemistry results, our initial diagnosis was solitary fibrous tumor (SFT) or MPNST. The tissue biopsy was sent for next-generation sequencing. neurofibromatosis type 1 Q1395Hfs*22 somatic mutation, neurofibromatosis type 1 D483Tfs*15 germline mutation, and amplifications of BTK, MDM2, ATF1, BMPR1A, EBHA2, GNA13, PTPN11, RAD52, RPTOR, and SOX9, as well as TJP1-ROS1 fusion, CDKN2A-IL1RAPL2 fusion and CDKN2A/UBAP1 rearrangement were identified. Given that NAB2-STAT6 fusion, a specific biomarker of SFT, was not identified in our patient's tumor, the SFT was excluded by through genetic testing results. Therefore, our finally diagnosis was a MPNST by 2 or more pathologists. Subsequently, the patient received crizotinib therapy for 2 months and showed stable disease. However, after crizotinib continued treatment for 4 months, the patient's disease progressed. Soon after, the patient stopped crizotinib treatment and died in home. To our knowledge, this is the first report of the TJP1-ROS1 fusion, which expands the list of gene fusions and highlights new targets for targeted therapy. Also, our case underlines the value of multi-gene panel next-generation sequencing for diagnosis of MPNST."	"NRAS status determines sensitivity to SHP2 inhibitor combination therapies targeting the RAS-MAPK pathway in neuroblastoma. Survival for high-risk neuroblastoma (NB) remains poor and treatment for relapsed disease rarely leads to long-term cures. Large sequencing studies of NB tumors from diagnosis have not identified common targetable driver mutations other than the 10% of tumors that harbor mutations in the anaplastic lymphoma kinase (ALK) gene. However, at NB recurrence, more frequent mutations in genes in the RAS-MAPK pathway have been detected. The PTPN11-encoded tyrosine phosphatase SHP2 is an activator of the RAS pathway, and we and others have shown that pharmacologic inhibition of SHP2 suppresses the growth of various tumor types harboring KRAS mutations such as pancreatic and lung cancers. Here we report inhibition of growth and downstream RAS-MAPK signaling in NB cells in response to treatment with the SHP2 inhibitors SHP099, II-B08 and RMC-4550. However, NB cell lines harboring endogenous NRASQ61K mutation (which is commonly detected at relapse) or isogenic NB cells engineered to overexpress NRASQ61K were distinctly resistant to SHP2 inhibitors. Combinations of SHP2 inhibitors with other RAS pathway inhibitors such as trametinib, vemurafenib, and ulixertinib were synergistic and reversed resistance to SHP2 inhibition in NB in vitro and in vivo. These results suggest for the first time that combination therapies targeting SHP2 and other components of the RAS-MAPK pathway may be effective against conventional therapy-resistant relapsed NB, including those that have acquired NRAS mutations."	"Tyrosyl phosphorylation of PZR promotes hypertrophic cardiomyopathy in PTPN11-associated Noonan syndrome with multiple lentigines. Noonan syndrome with multiple lentigines (NSML) is a rare autosomal dominant disorder that presents with cardio-cutaneous-craniofacial defects. Hypertrophic cardiomyopathy (HCM) represents the major life-threatening presentation in NSML. Mutations in the PTPN11 gene that encodes for the protein tyrosine phosphatase (PTP), SHP2, represents the predominant cause of HCM in NSML. NSML-associated PTPN11 mutations render SHP2 catalytically inactive with an &quot;open&quot; conformation. NSML-associated PTPN11 mutations cause hypertyrosyl phosphorylation of the transmembrane glycoprotein, protein zero-related (PZR), resulting in increased SHP2 binding. Here we show that NSML mice harboring a tyrosyl phosphorylation-defective mutant of PZR (NSML/PZRY242F) that is defective for SHP2 binding fail to develop HCM. Enhanced AKT/S6 kinase signaling in heart lysates of NSML mice was reversed in NSML/PZRY242F mice, demonstrating that PZR/SHP2 interactions promote aberrant AKT/S6 kinase activity in NSML. Enhanced PZR tyrosyl phosphorylation in the hearts of NSML mice was found to drive myocardial fibrosis by engaging an Src/NF-κB pathway, resulting in increased activation of IL-6. Increased expression of IL-6 in the hearts of NSML mice was reversed in NSML/PZRY242F mice, and PZRY242F mutant fibroblasts were defective for IL-6 secretion and STAT3-mediated fibrogenesis. These results demonstrate that NSML-associated PTPN11 mutations that induce PZR hypertyrosyl phosphorylation trigger pathophysiological signaling that promotes HCM and cardiac fibrosis."	"Genetic aberrations involved in relapse of pediatric acute myeloid leukemia: A literature review. Globally, 15-20% of all children diagnosed with leukemia suffer from acute myeloid leukemia (AML), a rapidly progressive, clinically and biologically heterogeneous disease leading to the impaired differentiation of myeloid blast cells. Although 80% of patients achieve complete remission after induction chemotherapy, many relapse, negatively affecting overall out comes. The mechanisms underlying relapse have not been fully elucidated. This review aims to provide an overview of genetic aberrations involved in relapse of disease. A literature review on molecular mechanisms implicated in pediatric AML relapse spanning from 2003 to 2017 was conducted. PubMed, Medline, and Google Scholar were interrogated using relevant search terms. Of note, we examined a total of final 10 research papers from four large study groups that have utilized whole genome sequencing and molecular targeting of trio or paired samples of initial diagnosis, remission, and relapse. Their findings reveal that the genomic landscape of pediatric AML varies from diagnosis to relapse in different populations. Pediatric AML relapse is a systemic evolutionary illness accompanied by synchronized mutational hits impairing differentiation function. The irregular proliferative function is a consequence of mutations in signal transduction genes such as FLT3, RAS, PTPN11, and c-KIT and genes that code for transcription factors such as CEBPα, WT1, SATB1, GFI1, KLF2, and TBP are associated with relapse of disease. Identification of molecular markers unique to different stages of the disease in distinct populations can provide valuable information about disease prognosis and management."	"The Clinical impact of PTPN11 mutations in adults with acute myeloid leukemia. While germline and somatic mutations in the gene PTPN11, encoding a phosphatase which regulates the RAS signaling pathway, are well characterized in children with Noonan syndrome and juvenile myelomonocytic leukemia, less is known about their clinical impact in adults with acute myeloid leukemia (AML). To elucidate the effect of PTPN11 mutations (PTPN11<sup>mut</sup>) on clinical outcomes, we screened adult patients with AML treated at our institution using targeted next-generation sequencing. Among 1406 consecutive patients, 112 (8%) had PTPN11<sup>mut</sup>. These mutations were more commonly associated with the acute myelomonocytic/monocytic leukemia subtype than was wild-type PTPN11, while none were detected in patients with core-binding factor AML. They co-occurred more commonly with NPM1 mutations and FLT3 internal tandem duplications and less commonly with mutations in IDH2 and a complex karyotype. Compared with the wild-type allele, PTPN11<sup>mut</sup> was associated with lower complete response rates (54% vs 40%; P = 0.04), and shorter overall survival (median 13.6 vs 8.4 months; P = 0.008). In a multivariate analysis, PTPN11<sup>mut</sup> independently increased the risk of death, with a hazard ratio of 1.69 (95% CI, 1.25-2.29; P = 0.0007). In summary, mutations in PTPN11 have a characteristic phenotype in adults with AML and are associated with an adverse prognosis."	"Noonan syndrome on the African Continent. Noonan syndrome is a common genetic syndrome caused by pathogenic variants in genes in the Ras/MAPK signaling pathway. The medical literature has an abundance of studies on Noonan syndrome, but few are from the African continent. The medical literature was searched for studies on Noonan syndrome from the African continent and these reports were added to our experience in Africa. Facial analysis was reviewed from two previous reports from our group using a support vector machine (SVM) algorithm and an analysis using the Face2Gene convolutional neural network technology. Individuals with Noonan syndrome from reports in African populations have the classic phenotype characteristics including typical minor facial anomalies such as widely spaced eyes (31-100%), short stature (71-100%), and congenital heart disease with pulmonary stenosis found in 24-100% of patients. Similarly, the genotypes are similar with the majority of variants occurring in the gene PTPN11 (72%) and 36% of these variants occurred in the amino acid residue Asn308, which is most commonly found in other populations. The two separate facial analysis algorithms successfully discriminated Africans with NS from unaffected matched individuals with area under the curve (AUC) of the receiver operator characteristic of 0.94 (SVM) and 0.979 for the Face2Gene research methodology. Few studies characterizing Noonan syndrome in Africans have been conducted, highlighting the need for more genetic and genomic research in African populations. Available clinical data, genotypes, and facial analysis technology data show that individuals of African descent with NS can be efficiently diagnosed using available standards."	"Juvenile myelomonocytic leukaemia presentation after preceding juvenile xanthogranuloma harbouring an identical somatic PTPN11 mutation. NA"	"Contribution of gene mutations to Silver-Russell syndrome phenotype: multigene sequencing analysis in 92 etiology-unknown patients. Silver-Russell syndrome (SRS) is characterized by growth failure and dysmorphic features. Major (epi)genetic causes of SRS are loss of methylation on chromosome 11p15 (11p15 LOM) and maternal uniparental disomy of chromosome 7 (upd(7)mat). However, IGF2, CDKN1C, HMGA2, and PLAG1 mutations infrequently cause SRS. In addition, other imprinting disturbances, pathogenic copy number variations (PCNVs), and monogenic disorders sometimes lead to SRS phenotype. This study aimed to clarify the frequency and clinical features of the patients with gene mutations among etiology-unknown patients with SRS phenotype. Multigene sequencing was performed in 92 out of 336 patients referred to us for genetic testing for SRS. The clinical features of the patients were evaluated based on the Netchine-Harbison clinical scoring system. None of the patients showed 11p15 LOM, upd(7)mat, abnormal methylation levels for six differentially methylated regions (DMRs), namely, PLAGL1:alt-TSS-DMR on chromosome 6, KCNQ1OT1:TSS-DMR on chromosome 11, MEG3/DLK1:IG-DMR on chromosome 14, MEG3:TSS-DMR on chromosome 14, SNURF:TSS-DMR on chromosome 15, and GNAS A/B:TSS-DMR on chromosome 20, PCNVs, or maternal uniparental disomy of chromosome 16. Using next-generation sequencing and Sanger sequencing, we screened four SRS-causative genes and 406 genes related to growth failure and/or skeletal dysplasia. We identified four pathogenic or likely pathogenic variants in responsible genes for SRS (4.3%: IGF2 in two patients, CDKN1C, and PLAG1), and five pathogenic variants in causative genes for known genetic syndromes presenting with growth failure (5.4%: IGF1R abnormality (IGF1R), SHORT syndrome (PIK3R1), Floating-Harbor syndrome (SRCAP), Pitt-Hopkins syndrome (TCF4), and Noonan syndrome (PTPN11)). Functional analysis indicated the pathogenicity of the CDKN1C variant. The variants we detected in CDKN1C and PLAG1 were the second and third variants leading to SRS, respectively. Our patients with CDKN1C and PLAG1 variants showed similar phenotypes to previously reported patients. Furthermore, our data confirmed IGF1R abnormality, SHORT syndrome, and Floating-Harbor syndrome are differential diagnoses of SRS because of the shared phenotypes among these syndromes and SRS. On the other hand, the patients with pathogenic variants in causative genes for Pitt-Hopkins syndrome and Noonan syndrome were atypical of these syndromes and showed partial clinical features of SRS. We identified nine patients (9.8%) with pathogenic or likely pathogenic variants out of 92 etiology-unknown patients with SRS phenotype. This study expands the molecular spectrum of SRS phenotype."	"Comprehensive Genomic Analysis of Noonan Syndrome and Acute Myeloid Leukemia in Adults: A Review and Future Directions. Acute myeloid leukemia (AML) in the setting of Noonan syndrome (NS) has been reported before without clear guidelines for treatment or prognosis in these subgroups of patients, most likely due to its rarity and incomplete understanding of the pathogenesis of both diseases. In the current era of next-generation sequencing-based genomic analysis, we can better identify patients with NS with more accurate AML-related prognostic markers. Germline mutations in PTPN11 are the most common cause of NS. Somatic mutations in NPM1 occur frequently in AML. Here, we describe a young adult patient with a novel combined germline PTPN11 and somatic NPM1, IDH1,and BCL6 mutations who presented with fatal AML. In addition, a 50.5-Mb interstitial deletion of 7q21.11-q33 in tumor DNA was detected by chromosomal microarray analysis. While mutations in the transcriptional repressor BCL6 are known to contribute to the pathogenesis of diffuse large B cell lymphoma (DLBCL) and chronic lymphocytic leukemia (CLL), its novel identification in this patient suggests an expanded role in aggressive AML. The identification of key molecular aberrations including the overexpression of SHP2, which drives leukemogenesis and tumorigenesis, has led to the development of novel investigational targeted SHP2 inhibitors."	"The expression patterns and the diagnostic/prognostic roles of PTPN family members in digestive tract cancers. Non-receptor protein tyrosine phosphatases (PTPNs) are a set of enzymes involved in the tyrosyl phosphorylation. The present study intended to clarify the associations between the expression patterns of PTPN family members, and diagnosis as well as the prognosis of digestive tract cancers. Oncomine and Ualcan were used to analyze PTPN expressions. Data from The Cancer Genome Atlas (TCGA) were downloaded through UCSC Xena for validation and to explore the relationship of the PTPN expression with diagnosis, clinicopathological parameters and survival of digestive tract cancers. Gene ontology enrichment analysis was conducted using the DAVID database. The gene-gene interaction network was performed by GeneMANIA and the protein-protein interaction (PPI) network was built using STRING portal coupled with Cytoscape. The expression of differentially expressed PTPNs in cancer cell lines were explored using CCLE. Moreover, by histological verification, the expression of four PTPNs in digestive tract cancers were further analyzed. Most PTPN family members were associated with digestive tract cancers according to Oncomine, Ualcan and TCGA data. Several PTPN members were differentially expressed in digestive tract cancers. For esophageal carcinoma (ESCA), PTPN1 and PTPN12 levels were correlated with incidence; PTPN20 was associated with poor prognosis. For stomach adenocarcinoma (STAD), PTPN2 and PTPN12 levels were correlated with incidence; PTPN3, PTPN5, PTPN7, PTPN11, PTPN13, PTPN14, PTPN18 and PTPN23 were correlated with pathological grade; PTPN20 expression was related with both TNM stage and N stage; PTPN22 was associated with T stage and pathological grade; decreased expression of PTPN5 and PTPN13 implied worse overall survival of STAD, while elevated PTPN6 expression indicated better prognosis. For colorectal cancer (CRC), PTPN2, PTPN21 and PTPN22 levels were correlated with incidence; expression of PTPN5, PTPN12, and PTPN14 was correlated with TNM stage and N stage; high PTPN5 or PTPN7 expression was associated with increased hazards of death. CCLE analyses showed that in esophagus cancer cell lines, PTPN1, PTPN4 and PTPN12 were highly expressed; in gastric cancer cell lines, PTPN2 and PTPN12 were highly expressed; in colorectal cancer cell lines, PTPN12 was highly expressed while PTPN22 was downregulated. Results of histological verification experiment showed differential expressions of PTPN22 in CRC, and PTPN12 in GC and CRC. Members of PTPN family were differentially expressed in digestive tract cancers. Correlations were found between PTPN genes and clinicopathological parameters of patients. Expression of PTPN12 was upregulated in both STAD and CRC, and thus could be used as a diagnostic biomarker. Differential expression of PTPN12 in GC and CRC, and PTPN22 in CRC were presented in our histological verification experiment."	"Persistent STAG2 mutation despite multimodal therapy in recurrent pediatric glioblastoma. Similar to their adult counterparts, the prognosis for pediatric patients with high-grade gliomas remains poor. At time of recurrence, treatment options are limited and remain without consensus. This report describes the genetic findings, obtained from whole-exome sequencing of a pediatric patient with glioblastoma who underwent multiple surgical resections and treatment with standard chemoradiation, as well as a novel recombinant poliovirus vaccine therapy. Strikingly, despite the variety of treatments, there was persistence of a tumor clone, characterized by a deleterious STAG2 mutation, whose deficiency in preclinical studies can cause aneuploidy and aberrant mitotic progression, but remains understudied in the clinical setting. There was near elimination of an EGFR mutated and amplified tumor clone after gross total resection, standard chemoradiation, and poliovirus therapy, followed by the emergence of a persistently STAG2 mutated clone, with rare mutations in PTPN11 and BRAF, the latter composed of a novel deleterious mutation previously not reported in pediatric glioblastoma (p.D594G). This was accompanied by a mutation signature shift towards one characterized by increased DNA damage repair defects, consistent with the known underlying STAG2 deficiency. As such, this case represents a novel report following the clinical and genetic progression of a STAG2 mutated glioblastoma, including treatment with a novel and emerging immunotherapy. Although STAG2 deficiency comprises only a small subset of gliomas, this case adds clinical evidence to existing preclinical data supporting a role for STAG2 mutations in gliomagenesis and resistance to standard therapies."	"The Noonan syndrome-associated D61G variant of the protein tyrosine phosphatase SHP2 prevents synaptic down-scaling. Homeostatic scaling of the synapse, such as synaptic down-scaling, has been proposed to offset deleterious effects induced by sustained synaptic strength enhancement. Proper function and subcellular distribution of Src homology 2 domain-containing nonreceptor protein tyrosine phosphatase (SHP2) are required for synaptic plasticity. However, the role of SHP2 in synaptic down-scaling remains largely unknown. Here, using biochemical assays and cell-imaging techniques, we found that synaptic SHP2 levels are temporally regulated during synaptic down-scaling in cultured hippocampal neurons. Furthermore, we observed that a Noonan syndrome-associated mutation of SHP2, resulting in a D61G substitution, prevents synaptic down-scaling. We further show that this effect is due to an inability of the SHP2-D61G variant to properly disassociate from postsynaptic density protein 95, leading to impaired SHP2 dispersion from synaptic sites after synaptic down-scaling. Our findings reveal a molecular mechanism of the Noonan syndrome-associated genetic variant SHP2-D61G that contributes to deficient synaptic down-scaling."	"In silico analysis of the molecular regulatory networks in peripheral arterial occlusive disease. Peripheral arterial occlusive disease (PAOD) is a global public health concern that decreases the quality of life of the patients and can lead to disabilities and death. The aim of this study was to identify the genes and pathways associated with PAOD pathogenesis, and the potential therapeutic targets. Differentially expressed genes (DEGs) and miRNAs related to PAOD were extracted from the GSE57691 dataset and through text mining. Additionally, bioinformatics analysis was applied to explore gene ontology, pathways and protein-protein interaction of those DEGs. The potential miRNAs targeting the DEGs and the transcription factors (TFs) regulating miRNAs were predicted by multiple different databases. A total of 59 DEGs were identified, which were significantly enriched in the inflammatory response, immune response, chemokine-mediated signaling pathway and JAK-STAT signaling pathway. Thirteen genes including IL6, CXCL12, IL1B, and STAT3 were hub genes in protein-protein interaction network. In addition, 513 miRNA-target gene pairs were identified, of which CXCL12 and PTPN11 were the potential targets of miRNA-143, and IL1B of miRNA-21. STAT3 was differentially expressed and regulated 27 potential target miRNAs including miRNA-143 and miRNA-21 in TF-miRNA regulatory network. In summary, inflammation, immune response and STAT3-mediated miRNA-target genes axis play an important role in PAOD development and progression."	"Mutational landscape of patients with acute myeloid leukemia or myelodysplastic syndromes in the context of RUNX1 mutation. Introduction: RUNX1 mutations in acute myeloid leukemia (AML) and myelodysplastic syndromes (MDS) are associated with distinct clinicopathologic features. However, the clinical and laboratory characteristics of the myeloid malignancies may be influenced by the presence of more concomitant mutations. The aim of this study is to provide a further understanding of mutational landscape in the context of RUNX1 mutation in AML/MDS.Methods: The present study screened for 49 mutations using next-generation sequencing (NGS). FLT3-ITD, NPM1, and CEBPA mutations were detected by PCR Sanger sequencing.Results: One or more co-mutations were detected in all AML and 92.3% MDS patients in the context of RUNX1 mutation. The most common co-mutation was DNMT3A, followed by NRAS, IDH1, and FLT3-ITD in AML. The four more frequently co-mutated genes were U2AF1, TET2, PTPN11, and ASXL1 in MDS. We also identified a significantly difference in co-mutational spectrums between RUNX1-mutatedAML and MDS patients, as reflected in incidence of DNMT3A (35.1% vs 7.7%), FLT3-ITD (16.2% vs 0%) and U2AF1 (10.8% vs 30.7%) mutations. RUNX1-mutated AML patients with 3, or ≥4 co-mutations showed much lower CR rate than that with 2 additional mutations (p = 0.0247, 0.00919).Conclusion: RUNX1-mutated AML and MDS are associated with a different complex co-mutation cluster. Some co-mutations have certain influence on the clinical feature and CR rate in the context of RUNX1 mutation."	"Juvenile myelomonocytic leukemia - A bona fide RASopathy syndrome. Juvenile myelomonocytic leukemia (JMML) is a pediatric myelodysplastic/myeloproliferative neoplasm overlap syndrome with sustained peripheral blood monocytosis, aggressive features, and poor outcomes. In &gt;90% of cases JMML is driven by germline or somatic mutations involving the canonical RAS pathway (PTPN11, NRAS, CBL, KRAS and NF1), with somatic mutations/alterations in RAS pathway genes (second hit), SETBP1, ASXL1 and JAK3 resulting in disease progression. While spontaneous regression has been seen in germline PTPN11 and CBL mutant JMML, in most patients, allogeneic stem cell transplant is the only curative modality. JMML shares several phenotypic features with its adult counterpart proliferative, chronic myelomonocytic leukemia (pCMML). pCMML largely occurs due to RAS pathway mutations that occur in the context of age related clonal hematopoiesis (TET2, SRSF2, ASXL1), while JMML is a bona fide RASopathy, with additional somatic mutations, including in epigenetic regulators genes resulting in disease progression."	"Recombinant glutathione-S-transferase A3 protein regulates the angiogenesis-related genes of erythrocytes in thiram induced tibial lesions. Tibial dyschondroplasia (TD) is a skeletal deformity disease in broilers that occurs when vascularization in the growth plate (GP) is below normal. Although, blood vessels have been reported to contribute significantly in bone formation. Therefore, in the current study, we have examined the mRNA expression of angiogenesis-related genes in erythrocytes of thiram induced TD chickens by qRT-PCR and performed histopathological analysis to determine regulatory effect of recombinant Glutathione-S-Transferase A3 (rGSTA3) protein in response to the destructive effect of thiram following the injection of rGSTA3 protein. Histopathology results suggested that, blood vessels of GPs were damaged in thiram induced TD chicken group (D), it also affected the area and density of blood vessels. In the 20 and 50 μg·kg<sup>-1</sup> of rGSTA3 protein-administered groups, E and F vessels appeared to be normal and improved on day 6 and 15. Furthermore, qRT-PCR results showed that rGSTA3 protein significantly (P &lt; .05) up-regulated the expression of the most important angiogenesis-related integrin family genes ITGA2, ITGA5, ITGB2, ITGB3, ITGAV. The expression level of other genes including TBXA2R, FYN, IQGAP2, IL1R1, GIT1, RAP1B, RPL17, RAC2, MAML3, PTPN11, VAV1, PTCH1, NCOR2, CLU and ITGB3 up-regulated on dosage of rGSTA3 protein. In conclusion, angiogenesis is destroyed in thiram induced TD broilers, and rGSTA3 protein injection improved the vascularization of GPs by upregulating the angiogenesis related genes most importantly integrin family genes ITGAV, ITGA2, ITGB2, ITGB3, ITGA5."	"Childhood Myeloid Neoplasms With PTPN11 Mutations in Brazil. NA"	"Identification of Differentially Expressed Gene Transcripts in Porcine Endometrium during Early Stages of Pregnancy. During the early stages of pregnancy, the uterine endometrium undergoes dramatic morphologic and functional changes accompanied with dynamic variation in gene expression. Pregnancy-stage specific differentially expressed gene (DEG)-transcript-probes were investigated and identified by comparing endometrium transcriptome at 9th day (9D), 12th day (12D) and 16th day (16D) of early pregnancy in Polish large-white (PLW) gilts. Endometrium comparisons between 9D-vs-12D, 9D-vs-16D and 12D-vs-16D of early pregnancy identified 6049, 374 and 6034 highly significant DEG-transcript-probes (p &lt; 0.001; &gt;2 FC). GO term enrichment analysis identified commonly shared upregulated endometrial DEG-transcript-probes (p &lt; 0.001; &gt;2 FC), that were regulating the gene functions of anatomic structure development and transport (TG), DNA-binding and methyltransferase activity (ZBTB2), ion-binding and kinase activity (CKM), cell proliferation and apoptosis activity (IL1B). Downregulated DEG-transcript-probes (p &lt; 0.001; &gt;2 FC) were involved in regulating the gene functions of phosphatase activity (PTPN11), TC616413 gene-transcript and Sus-scrofa LOC100525539. Moreover, blastn comparison of microarray-probes sequences against sus-scrofa11 assembly identified commonly shared upregulated endometrial DEG-transcript-probes (E &lt; 0.06; &gt;2 FC), that were regulating the gene functions of reproduction and growth (SELENOP), cytoskeleton organization and kinase activity (CDC42BPA), phosphatase activity (MINPP1), enzyme-binding and cell-population proliferation (VAV3), cancer-susceptibility candidate gene (CASC4), cytoskeletal protein-binding (COBLL1), ion-binding, enzyme regulator activity (ACAP2) Downregulated endometrial DEG-transcript-probes (E &lt; 0.06; &gt;2FC) were involved in regulating the gene functions of signal-transduction (TMEM33), catabolic and metabolic processes (KLHL15). Microarray validation experiment on selected candidate genes showed complementarity to significant endometrial DEG-transcript-probes responsible for the regulation of immune response (IL1B, S100A11), lipid metabolism (FABP3, PPARG), cell-adhesion (ITGAV), angiogenesis (IL1B), intercellular transmission (NMB), cell-adhesion (OPN) and response to stimuli (RBP4) was confirmed by RT-PCR. This study provides a clue that identified pregnancy-stage specific microarray transcript probes could be considered as candidate genes for recognition and establishment of early pregnancy in the pig."	"Structural Determinants of Phosphopeptide Binding to the N-Terminal Src Homology 2 Domain of the SHP2 Phosphatase. SH2 domain-containing tyrosine phosphatase 2 (SHP2), encoded by PTPN11, plays a fundamental role in the modulation of several signaling pathways. Germline and somatic mutations in PTPN11 are associated with different rare diseases and hematologic malignancies, and recent studies have individuated SHP2 as a central node in oncogenesis and cancer drug resistance. The SHP2 structure includes two Src homology 2 domains (N-SH2 and C-SH2) followed by a catalytic protein tyrosine phosphatase (PTP) domain. Under basal conditions, the N-SH2 domain blocks the active site, inhibiting phosphatase activity. Association of the N-SH2 domain with binding partners containing short amino acid motifs comprising a phosphotyrosine residue (pY) leads to N-SH2/PTP dissociation and SHP2 activation. Considering the relevance of SHP2 in signaling and disease and the central role of the N-SH2 domain in its allosteric regulation mechanism, we performed microsecond-long molecular dynamics (MD) simulations of the N-SH2 domain complexed to 12 different peptides to define the structural and dynamical features determining the binding affinity and specificity of the domain. Phosphopeptide residues at position -2 to +5, with respect to pY, have significant interactions with the SH2 domain. In addition to the strong interaction of the pY residue with its conserved binding pocket, the complex is stabilized hydrophobically by insertion of residues +1, +3, and +5 in an apolar groove of the domain and interaction of residue -2 with both the pY and a protein surface residue. Additional interactions are provided by hydrogen bonds formed by the backbone of residues -1, +1, +2, and +4. Finally, negatively charged residues at positions +2 and +4 are involved in electrostatic interactions with two lysines (Lys89 and Lys91) specific for the SHP2 N-SH2 domain. Interestingly, the MD simulations illustrated a previously undescribed conformational flexibility of the domain, involving the core β sheet and the loop that closes the pY binding pocket."	"Young children with Noonan syndrome: evaluation of feeding problems. Noonan syndrome (NS) is a common genetic syndrome with a high variety in phenotype. Even though genetic testing is possible, NS is still a clinical diagnosis. Feeding problems are often present in infancy. We investigated the feeding status of 108 patients with clinically and genetically confirmed NS. Only patients with a documented feeding status before the age of 6 were included. A distinction was made between patients with early onset feeding problems (&lt; 1 year) and children with late onset feeding problems (&gt; 1 year). Seventy-one of 108 patients had feeding problems, of which 40 patients required tube feeding. Children with a genetic mutation other than PTPN11 and SOS1 had significantly more feeding problems in the first year. Fifty-two of all 108 patients experienced early onset feeding problems, of which 33 required tube feeding. A strong decrease in prevalence of feeding problems was found after the first year of life. Fifteen children developed feeding problems later in life, of which 7 required tube feeding.Conclusion: Feeding problems occur frequently in children with NS, especially in children with NS based on genetic mutations other than PTPN11 and SOS1. Feeding problems develop most often in infancy and decrease with age.What is Known:• Young children with Noonan syndrome may have transient feeding problems.• Most of them will need tube feeding.What is New:• This is the first study of feeding problems in patients with clinically and genetically proven Noonan syndrome.• Feeding problems most often develop in infancy and resolve between the age of 1 and 2."	"Dasatinib response in acute myeloid leukemia is correlated with FLT3/ITD, PTPN11 mutations and a unique gene expression signature. Novel targeted therapies demonstrate improved survival in specific subgroups (defined by genetic variants) of acute myeloid leukemia (AML) patients, validating the paradigm of molecularly targeted therapy. However, identifying correlations between AML molecular attributes and effective therapies is challenging. Recent advances in high-throughput in vitro drug sensitivity screening applied to primary AML blasts were used to uncover such correlations; however, these methods cannot predict the response of leukemic stem cells (LSCs). Our study aimed to predict in vitro response to targeted therapies, based on molecular markers, with subsequent validation in LSCs. We performed ex vivo sensitivity screening to 46 drugs on 29 primary AML samples at diagnosis or relapse. Using unsupervised hierarchical clustering analysis we identified group with sensitivity to several tyrosine kinase inhibitors (TKIs), including the multi-TKI, dasatinib, and searched for correlations between dasatinib response, exome sequencing and gene expression from our dataset and from the Beat AML dataset. Unsupervised hierarchical clustering analysis of gene expression resulted in clustering of dasatinib responders and non-responders. In vitro response to dasatinib could be predicted based on gene expression (AUC=0.78). Furthermore, mutations in FLT3/ITD and PTPN11 were enriched in the dasatinib sensitive samples as opposed to mutations in TP53 which were enriched in resistant samples. Based on these results, we selected FLT3/ITD AML samples and injected them to NSG-SGM3 mice. Our results demonstrate that in a subgroup of FLT3/ITD AML (4 out of 9) dasatinib significantly inhibits LSC engraftment. In summary we show that dasatinib has an anti-leukemic effect both on bulk blasts and, more importantly, LSCs from a subset of AML patients that can be identified based on mutational and expression profiles. Our data provide a rational basis for clinical trials of dasatinib in a molecularly selected subset of AML patients."	"Design, synthesis and biological evaluation of pyridine derivatives as selective SHP2 inhibitors. SHP2 is a non-receptor protein tyrosine phosphatase encoded by the PTPN11 gene, which affects the transduction of multiple signaling pathways, including RAS-ERK, PI3K-AKT and JAK-STAT. SHP2 also plays an important role in the programmed cell death pathway (PD-1/PD-L1). Studies have shown that SHP2 is associated with a variety of cancers, including breast, liver and gastric cancers. Therefore, the development of SHP2 inhibitors has attracted extensive attention. In this study, based on the known inhibitor 1 (SHP099), novel SHP2 inhibitors were designed by means of scaffold hopping, and 35 pyridine derivatives as SHP2 inhibitors were found. The in vitro enzyme activity assay was performed on these compounds, and multiple selective SHP2 inhibitors with activity potency similar to that of SHP099 were obtained. Among them, compound (2-(4-(aminomethyl)piperidin-1-yl)-5-(2,3-dichlorophenyl)pyridin-3-yl)methanol (11a) was the most potent and highly selective SHP2 inhibitor with an in vitro enzyme activity IC50 value of 1.36 μM. Fluorescence titration assay verified that 11a bound directly to SHP2 protein. Subsequently, cell assay of representative compounds showed that these compounds could effectively inhibit the proliferation of Ba/F3 cells. In addition, the pharmacokinetic characteristics of the designed compounds were analyzed by the in silico ADMET prediction. Molecular docking study provided more detailed information on the binding mode of compounds and SHP2 protein. In brief, this study reported for the first time that pyridine derivatives as novel SHP2 inhibitors had good inhibitory activity and selectivity, providing new clues for the development of small molecule SHP2 inhibitors."	"De novo damaging variants associated with congenital heart diseases contribute to the connectome. Congenital heart disease (CHD) survivors are at risk for neurodevelopmental disability (NDD), and recent studies identify genes associated with both disorders, suggesting that NDD in CHD survivors may be of genetic origin. Genes contributing to neurogenesis, dendritic development and synaptogenesis organize neural elements into networks known as the connectome. We hypothesized that NDD in CHD may be attributable to genes altering both neural connectivity and cardiac patterning. To assess the contribution of de novo variants (DNVs) in connectome genes, we annotated 229 published NDD genes for connectome status and analyzed data from 3,684 CHD subjects and 1,789 controls for connectome gene mutations. CHD cases had more protein truncating and deleterious missense DNVs among connectome genes compared to controls (OR = 5.08, 95%CI:2.81-9.20, Fisher's exact test P = 6.30E-11). When removing three known syndromic CHD genes, the findings remained significant (OR = 3.69, 95%CI:2.02-6.73, Fisher's exact test P = 1.06E-06). In CHD subjects, the top 12 NDD genes with damaging DNVs that met statistical significance after Bonferroni correction (PTPN11, CHD7, CHD4, KMT2A, NOTCH1, ADNP, SMAD2, KDM5B, NSD2, FOXP1, MED13L, DYRK1A; one-tailed binomial test P ≤ 4.08E-05) contributed to the connectome. These data suggest that NDD in CHD patients may be attributable to genes that alter both cardiac patterning and the connectome."	"PCC0208023, a potent SHP2 allosteric inhibitor, imparts an antitumor effect against KRAS mutant colorectal cancer. The non-receptor tyrosine phosphatase SHP2, encoded by PTPN11, plays an indispensable role in tumors driven by oncogenic KRAS mutations, which frequently occur in colorectal cancer. Here, PCC0208023, a potent SHP2 allosteric inhibitor, was synthesized to evaluate its inhibitory effects against the SHP2 enzyme, and the KRAS mutant colorectal cancer in vitro and in vivo, and its impart on the RAS/MAPK pathway. Consistent with an allosteric mode of inhibition, PCC0208023 can non-competitively inhibit the activity of full-length SHP2 enzyme, but lacks activity against the free catalytic domain of SHP2. Furthermore, PCC0208023 inhibited the proliferation of KRAS mutation-driven human colorectal cancer cells by inhibiting the RAS/MAPK signaling pathway in vitro. Importantly, PCC0208023 displayed good anti-tumor efficacy against KRAS-driven LS180 and HCT116 xenograft models in nude mice with the decreased Ki67 and p-ERK level, and increased cleaved caspase-3 expression in tumors. Interestingly, PCC0208023 maintained high levels in LS180 tumors within 24 h after administration and was mainly distributed in both intestines and lungs. Molecular docking studies revealed a higher affinity of PCC0208023 with key residues in the SHP2 allosteric pocket than RMC-4550. PCC0208023 deserves further optimization to identify additional low-toxic and potent SHP2 allosteric inhibitors with novel scaffolds for the treatment of patients with KRAS mutation-positive colorectal cancer."	"Overlapping phenotypes between SHORT and Noonan syndromes in patients with PTPN11 pathogenic variants. Overlapping syndromes such as Noonan, Cardio-Facio-Cutaneous, Noonan syndrome (NS) with multiple lentigines and Costello syndromes are genetically heterogeneous conditions sharing a dysregulation of the RAS/mitogen-activated protein kinase (MAPK) pathway and are known collectively as the RASopathies. PTPN11 was the first disease-causing gene identified in NS and remains the more prevalent. We report seven patients from three families presenting heterozygous missense variants in PTPN11 probably responsible for a disease phenotype distinct from the classical Noonan syndrome. The clinical presentation and common features of these seven cases overlap with the SHORT syndrome. The latter is the consequence of PI3K/AKT signaling deregulation with the predominant disease-causing gene being PIK3R1. Our data suggest that the phenotypic spectrum associated with pathogenic variants of PTPN11 could be wider than previously described, and this could be due to the dual activity of SHP2 (ie, PTPN11 gene product) on the RAS/MAPK and PI3K/AKT signaling."	"PTPN11 mutations in canine and human disseminated histiocytic sarcoma. In humans, histiocytic sarcoma (HS) is an aggressive cancer involving histiocytes. Its rarity and heterogeneity explain that treatment remains a challenge. Sharing high clinical and histopathological similarities with human HS, the canine HS is conversely frequent in specific breeds and thus constitutes a unique spontaneous model for human HS to decipher the genetic bases and to explore therapeutic options. We identified sequence alterations in the MAPK pathway in at least 63.9% (71/111) of HS cases with mutually exclusive BRAF (0.9%; 1/111), KRAS (7.2%; 8/111) and PTPN11 (56.75%; 63/111) mutations concentrated at hotspots common to human cancers. Recurrent PTPN11 mutations are associated to visceral disseminated HS subtype in dogs, the most aggressive clinical presentation. We then identified PTPN11 mutations in 3/19 (15.7%) human HS patients. Thus, we propose PTPN11 mutations as key events for a specific subset of human and canine HS: the visceral disseminated form. Finally, by testing drugs targeting the MAPK pathway in eight canine HS cell lines, we identified a better anti-proliferation activity of MEK inhibitors than PTPN11 inhibitors in canine HS neoplastic cells. In combination, these results illustrate the relevance of naturally affected dogs in deciphering genetic mechanisms and selecting efficient targeted therapies for such rare and aggressive cancers in humans."	"RAS Pathway Mutation Patterns in Patients With Juvenile Myelomonocytic Leukemia: A Developing Country Single-center Experience. Juvenile myelomonocytic leukemia (JMML) is a rare clonal myelodysplastic/myeloproliferative neoplasm of early childhood. Historically, it was difficult to diagnose clinically, as patients present with manifestations shared with other hematologic malignancies or viral infections. It is now clear that JMML is a disease of hyperactive RAS signaling. We examined the bone marrow of 41 Egyptian children with JMML by direct sequencing for mutations in the RAS pathway genes. Mutations were detected in 33 (80%) of 41 patients. We identified 12 (29%) of 41 patients with PTPN11 mutation; 18 (44%) of 41 with RAS mutation; 9 (22%) of 41 with NRAS mutation; 9 (22%) of 41 with KRAS mutation; and 3 (7%) of 41 with CBL mutation. Eleven (92%) of the PTPN11 mutations were detected in exon 3 and 1 (8%) in exon 13. Seven of the NRAS mutations were in exon 2, and 2 were in exon 3. All KRAS mutations were in exon 2. The 3 cases with CBL mutation were homozygous mutations in exon 8. All the mutations detected in PTPN11, NRAS/KRAS, and the CBL genes were previously reported missense mutations in JMML. Our results demonstrate that Egyptian children diagnosed with JMML have high frequency of NRAS/KRAS mutations and lower frequency of PTPN11 mutations as compared with previous studies. The concept of mutually exclusive RAS pathway mutations was clearly observed in our patients. All cancer centers in our region should start implementing molecular diagnostic methods before confirming the diagnosis of JMML and before offering hematopoietic stem cell transplantation."	"Helicobacter pylori CagA oncoprotein interacts with SHIP2 to increase its delivery into gastric epithelial cells. Chronic infection with Helicobacter pylori cagA-positive strains is causally associated with the development of gastric diseases, most notably gastric cancer. The cagA-encoded CagA protein, which is injected into gastric epithelial cells by bacterial type IV secretion, undergoes tyrosine phosphorylation at the Glu-Pro-Ile-Tyr-Ala (EPIYA) segments (EPIYA-A, EPIYA-B, EPIYA-C, and EPIYA-D), which are present in various numbers and combinations in its C-terminal polymorphic region, thereby enabling CagA to promiscuously interact with SH2 domain-containing host cell proteins, including the prooncogenic SH2 domain-containing protein tyrosine phosphatase 2 (SHP2). Perturbation of host protein functions by aberrant complex formation with CagA has been considered to contribute to the development of gastric cancer. Here we show that SHIP2, an SH2 domain-containing phosphatidylinositol 5'-phosphatase, is a hitherto undiscovered CagA-binding host protein. Similar to SHP2, SHIP2 binds to the Western CagA-specific EPIYA-C segment or East Asian CagA-specific EPIYA-D segment through the SH2 domain in a tyrosine phosphorylation-dependent manner. In contrast to the case of SHP2, however, SHIP2 binds more strongly to EPIYA-C than to EPIYA-D. Interaction with CagA tethers SHIP2 to the plasma membrane, where it mediates production of phosphatidylinositol 3,4-diphosphate [PI(3,4)P2 ]. The CagA-SHIP2 interaction also potentiates the morphogenetic activity of CagA, which is caused by CagA-deregulated SHP2. This study indicates that initially delivered CagA interacts with SHIP2 and thereby strengthens H. pylori-host cell attachment by altering membrane phosphatidylinositol compositions, which potentiates subsequent delivery of CagA that binds to and thereby deregulates the prooncogenic phosphatase SHP2."	"PTPN11 hypomethylation is associated with gastric cancer progression. Protein tyrosine phosphatase non-receptor type 11 (PTPN11) encodes the tyrosine phosphatase SHP-2 that is overexpressed in gastric cancer (GC). In the present study, the association of PTPN11 methylation levels with the incidence of GC and its correlation with SHP-2 overexpression were investigated. The methylation levels of PTPN11 in tumor and adjacent normal tissues of 112 GC patients were assessed by quantitative methylation specific PCR (qMSP). The Cancer Genome Atlas (TCGA) public database was used to analyze the association between PTPN11 methylation and PTPN11 expression. Survival analyses were conducted in order to evaluate the prognostic value of PTPN11 methylation for GC. The results of the qMSP analysis indicated that the methylation levels of PTPN11 in GC tumor tissues were significantly decreased compared with those noted in the normal adjacent tissues (mean with standard deviation: 40.91±26.33 vs. 51.99±37.37, P=0.007). An inverse correlation between PTPN11 methylation levels and PTPN11 mRNA expression levels (P=4×10<sup>-6</sup>, r=-0.237) was noted. Subgroup analyses indicated that the association of PTPN11 hypomethylation with the incidence of GC was specific to male subjects (P=0.015), heavy drinking patients (P=0.019), patients with poor tumor differentiation (P=0.010) and patients with tumor node and metastasis (TNM) stage III+IV (P=0.008). Kaplan-Meier analyses and log-rank test suggested that PTPN11 hypomethylation was not associated with GC patient overall survival (P=0.605) and recurrence (P=0.485), although it could predict the recurrence of GC patients up to and including 60 years (≤60, P=0.049). The results indicated that PTPN11 levels were hypomethylated in GC patients. TCGA data analysis suggested that PTPN11 hypomethylation could cause an upregulation in the transcription levels of PTPN11. Although, this may explain the pattern of SHP-2 overexpression in GC, additional studies are required to verify this hypothesis. The association of PTPN11 hypomethylation with GC incidence may be specific to male patients, heavy drinking patients, patients with poor tumor differentiation and patients with TNM stage of III+IV. PTPN11 hypomethylation can be considered a biomarker for the recurrence of GC patients with an age of 60 years or lower."	"Images of the month 2: A leopard never changes its spots. NA"	"Molecular and clinical studies in 107 Noonan syndrome affected individuals with PTPN11 mutations. Noonan syndrome (NS), an autosomal dominant developmental genetic disorder, is caused by germline mutations in genes associated with the RAS / mitogen-activated protein kinase (MAPK) pathway. In several studies PTPN11 is one of the genes with a significant number of pathogenic variants in NS-affected patients. Therefore, clinically diagnosed NS individuals are initially tested for pathogenic variants in PTPN11 gene to confirm the relationship before studying genotype-phenotype correlation. Individuals (363) with clinically diagnosed NS from four hospitals in South India were recruited and the exons of PTPN11 gene were sequenced. Thirty-two previously described pathogenic variants in eight different exons in PTPN11 gene were detected in 107 patients, of whom 10 were familial cases. Exons 3, 8 and 13 had the highest number of pathogenic variants. The most commonly identified pathogenic variants in this series were in exon 8 (c.922A &gt; G, c.923A &gt; G), observed in 22 of the affected. Congenital cardiac anomalies were present in 84% of the mutation-positive cohort, the majority being defects in the right side of the heart. The most common facial features were downward-slanting palpebral fissures, hypertelorism and low-set posteriorly rotated ears. Other clinical features included short stature (40%), pectus excavatum (54%) and, in males, unilateral or bilateral cryptorchidism (44%). The clinical features and mutational spectrum observed in our cohort are similar to those reported in other large studies done worldwide. This is the largest case series of NS-affected individuals with PTPN11 mutations described till date from India."	"Noonan Syndrome: Common Molecular Alterations and the Consequences. Noonan syndrome (NS) is a relatively common autosomal dominant disorder with characteristic features and molecular alterations. The most common recurrent alteration is in the PTPN11 gene, a proto-oncogene that encodes a cytoplasmic receptor tyrosine phosphatase and helps regulate kinase activity and control cell survival and replication. Mutations in this gene can increase the risk for the development of multiple different malignancies, particularly hematopoietic. Here we present a case of NS with a PTPN11 mutation demonstrating the classic presentation of Noonan syndrome as well as the expected clinical follow-up."	"Mutations predictive of hyperactive Ras signaling correlate with inferior survival across high-risk pediatric acute leukemia. Cancer remains the number one cause of disease-related mortality in children, and despite advances in the molecular understanding of leukemia and targeted therapies, refractory leukemia remains a leading cause of death. It therefore is essential to further define features, e.g., FLT3 alterations and KMT2A rearrangements, associated with inferior survival early to augment or alter therapeutic strategies to improve outcomes. To gain insights into the genetic drivers predictive of aggressive clinical behavior among pediatric leukemia patients, we performed comprehensive integrative clinical sequencing (ICS), including paired tumor/normal DNA sequencing and RNA-seq, for pediatric patients who presented at our institution over a period of five years with acute lymphoblastic or myelogenous leukemia (ALL and AML; n=43) and high-risk clinical features (high white blood cell count, extramedullary disease, or refractory and/or relapsed disease). We found that RAS- and Ras-pathway aberrations, including N-RAS, NF1 and PTPN11, are frequent somatic mutations and, importantly, associated with decreased event free and overall survival (OS) (P=0.04, median event free survival 22.8 vs. 5.6 months; P=0.04, median OS 124 vs. 22.5 months). We thus propose that hyperactive Ras signaling confers inferior survival in high-risk pediatric acute leukemia and that Ras pathways should be molecularly characterized to inform clinical decision making and to identify patients for experimental clinical trials and RAS-targeted therapy."	"Genetic Testing for Diagnosis of Hypertrophic Cardiomyopathy Mimics: Yield and Clinical Significance. Background Genetic testing is helpful for diagnosis of hypertrophic cardiomyopathy (HCM) mimics. Little data are available regarding the yield of such testing and its clinical impact. Methods The HCM genetic database at our center was used for identification of patients who underwent HCM-directed genetic testing including at least 1 gene associated with an HCM mimic (GLA, TTR, PRKAG2, LAMP2, PTPN11, RAF1, and DES). Charts were retrospectively reviewed and genetic and clinical data extracted. Results There were 1731 unrelated HCM patients who underwent genetic testing for at least 1 gene related to an HCM mimic. In 1.45% of cases, a pathogenic or likely pathogenic variant in one of these genes was identified. This included a yield of 1% for Fabry disease, 0.3% for familial amyloidosis, 0.15% for PRKAG2-related cardiomyopathy, and 1 patient with Noonan syndrome. In the majority of patients, diagnosis of the HCM mimic based on clinical findings alone would have been challenging. Accurate diagnosis of an HCM mimic led to change in management (eg, enzyme replacement therapy) or family screening in all cases. Conclusions Genetic testing is helpful in the diagnosis of HCM mimics in patients with no or few extracardiac manifestations. Adding these genes to all HCM genetic panels should be considered."	"Rapid detection by hydrops panel of Noonan syndrome with PTPN11 mutation (p.Thr73Ile) and persistent thrombocytopenia. Nonimmune hydrops fetalis (NIHF) is still a challenging diagnosis. The differential diagnosis is extensive and the success of identifying a cause depends on the thoroughness of efforts to establish a diagnosis. For the early diagnosis of NIHF, a virtual gene panel diagnostic tool was developed. The female premature baby in question was delivered via emergency cesarean at 30 + 1 weeks of gestational age (GA) due to rapidly developing NIHF to a healthy mother. The family history was noncontributory. DNA of the family was extracted and sequenced by the virtual hydrops panel with whole-exome sequencing. The hydrops panel revealed Noonan syndrome (NS) with a germline mutation in PTPN11 c.218C&gt;T (p.Thr73Ile). The diagnosis of our patient was rapidly confirmed by the hydrops panel. The variant of c.218C&gt;T (p.Thr73Ile) has not yet been described in literature relating to NIHF. Only a few case reports of this variant are known. This particular mutation is associated with Noonan syndrome, congenital heart defect and persistent thrombocytopenia. Few reveal juvenile myelomonocytic leukemia."	"Connecting the dots between SHP2 and glutamate receptors. SHP2 is an unusual protein phosphatase that functions as an activator for several signaling pathways, including the RAS pathway, while most other phosphatases suppress their downstream signaling cascades. The physiological and pathophysiological roles of SHP2 have been extensively studied in the field of cancer research. Mutations in the PTPN11 gene which encodes SHP2 are also highly associated with developmental disorders, such as Noonan syndrome (NS), and cognitive deficits including learning disabilities are common among NS patients. However, the molecular and cellular mechanism by which SHP2 is involved in cognitive functions is not well understood. Recent studies using SHP2 mutant mice or pharmacological inhibitors have shown that SHP2 plays critical role in learning and memory and synaptic plasticity. Here, we review the recent studies demonstrating that SHP2 is involved in synaptic plasticity, and learning and memory, by the regulation of the expression and/or function of glutamate receptors. We suggest that each cell type may have distinct paths connecting the dots between SHP2 and glutamate receptors, and these paths may also change with aging."	"[Clinical practice guidelines for Noonan syndrome]. Noonan syndrome is a common genetic disease characterized by peculiar face, short stature, congenital heart disease and thoracic deformity. The pathogenesis of Noonan syndrome is mainly related to abnormal Ras-MAPK signal pathway which involves more than 16 genes including (PTPN11, SOS1, RAF1)] and KRAS. At present, there is a lack of experience in the diagnosis and treatment of Noonan syndrome in China. This guideline has summarized the clinical manifestation, pathogenesis, diagnostic criteria and treatment for Noonan syndrome, with an aim to improve the diagnostic level and clinical management of patients with this syndrome."	"Characterization of chromosome organization in the differentiation of acute myeloid leukemia cells by all-trans retinoic acid. A concomitant change of nucleus shape and chromosome conformation often happens in all-trans retinoic acid (ATRA)-induced differentiation of acute myeloid leukemia cells. However, the relation between the 3D chromosome architecture and the genome-wide epigenetic pattern for transcriptional regulation is poorly understood. In this study, high-throughput chromosome conformation capture (Hi-C) and chromosome immunoprecipitation (ChIP-seq) were employed to investigate the landscape of chromosome distal interaction and H3K4/27me3 in HL-60 cells treated with ATRA. We observed a general loss of topological associated domains (TADs) at PTPN11 during the differentiation of HL-60 cells. Furthermore, the significantly reduced enrichment of CCCTC binding factor (CTCF) near the boundary where PTPN11 located, as well as the decreased H3K4me3 and increased H3K27me3 enrichment at PTPN11 upon ATRA treatment was observed. Taken together, our study indicated a regulatory mechanism behind the silenced PTPN11 in HL-60 cells differentiation."	"Dental and maxillofacial features of Noonan Syndrome: Case series of ten patients. Noonan syndrome (NS) is a relatively common congenital multiple-anomaly syndrome, resembling Turner syndrome, but without chromosomal anomaly. Besides the unusual facies, the maxillofacial and dental features of patients with NS are not well-summarized in the literature. The aim of this study was to describe these features and propose specific treatment guidelines for practitioners involved in oral and maxillofacial care. A retrospective multicentric study was conducted of 14 patients who were referred for NS screening. In total, 10 patients were found to carry a mutation involved in NS or NS-related disorders. Fifty percent of the mutations affected PTPN11. All patients presented with the typical extraoral features, such as macrocephaly, hypertelorism, ptosis, triangular face shape and ear dystrophy. Intraoral manifestations, including malocclusion (maxillary transversal deficiency, crossbite, anterior open-bite and class II malocclusion), dental anomalies (delayed eruption, agenesis and dystrophy, odontoma) and radiologic jaw lesions were identified in five out of 10 patients. These findings were searched in a review of the literature to obtain a comprehensive description of oral and maxillofacial features in patients with NS. The proposed treatment guidelines emphasize frequent coagulation anomalies that need to be considered prior to surgery. Early dental assessment and yearly follow-up with oral prophylaxis are recommended. Orthodontics and orthognathic surgery are also of primary importance in the management of NS patients."	"Pathogenic PTPN11 variants involving the poly-glutamine Gln<sup>255</sup> -Gln<sup>256</sup> -Gln<sup>257</sup> stretch highlight the relevance of helix B in SHP2's functional regulation. Germline PTPN11 mutations cause Noonan syndrome (NS), the most common disorder among RASopathies. PTPN11 encodes SHP2, a protein tyrosine-phosphatase controlling signaling through the RAS-MAPK and PI3K-AKT pathways. Generally, NS-causing PTPN11 mutations are missense changes destabilizing the inactive conformation of the protein or enhancing its binding to signaling partners. Here, we report on two PTPN11 variants resulting in the deletion or duplication of one of three adjacent glutamine residues (Gln<sup>255</sup> -to-Gln<sup>257</sup> ). While p.(Gln257dup) caused a typical NS phenotype in carriers of a first family, p.(Gln257del) had incomplete penetrance in a second family. Missense mutations involving Gln<sup>256</sup> had previously been reported in NS. This poly-glutamine stretch is located on helix B of the PTP domain, a region involved in stabilizing SHP2 in its autoinhibited state. Molecular dynamics simulations predicted that changes affecting this motif perturb the SHP2's catalytically inactive conformation and/or substrate recognition. Biochemical data showed that duplication and deletion of Gln<sup>257</sup> variably enhance SHP2's catalytic activity, while missense changes involving Gln<sup>256</sup> affect substrate specificity. Expression of mutants in HEK293T cells documented their activating role on MAPK signaling, uncoupling catalytic activity and modulation of intracellular signaling. These findings further document the relevance of helix B in the regulation of SHP2's function."	"Identification, recombinant expression and immunological study of Lja-SHP2 in Lampetra japonica. The protein tyrosine phosphatase SHP2 of higher vertebrates, encoded by ptpn11 gene, catalyzes the dephosphorylation of tyrosine phosphorylation site, and plays regulatory roles in various signaling pathways by cooperating with other protein tyrosine kinase. Previous studies have shown that SHP2 plays an important role in the activation and signal transduction of T and B cells in higher vertebrates. To study the role of a SHP2 homologous molecule of lampreys (Lja-SHP2) in immune response, we cloned and expressed the open reading frame sequence of Lja-SHP2 gene in prokaryotic expression vector pET-32a. The recombinant protein was successfully expressed in E. coli and the rabbit-derived polyclonal antibody was prepared. Lampetra japonica were immunized with mixed bacteria, and the mRNA and protein of Lja-SHP2 in immune-related cells and tissues were detected by real-time quantitative PCR and Western blotting after immunization. The Lja-SHP2 mRNA and protein were not significantly affected in leukocytes and supraneural myeloid bodies, but up-regulated significantly in gill tissues (P&lt;0.05) after challenged by mixed bacteria, which indicated that Lja-SHP2 mainly participates in the immune response of gill tissues after mixed bacteria stimulation. To further investigate whether Lja-SHP2 level was affected in three lymphocyte subsets, the B-cell mitogen lipopolysaccharide (LPS) and T-cell mitogen phytohaemagglutinin (PHA) were employed to boost the immune response in L. japonica. LPS immune stimulation increased Lja-SHP2 in leucocytes significantly compared with the control group, and but had a marginal effect on Lja-SHP2 expression in gills and supraneural myeloid bodies. PHA immune stimulation could up-regulate Lja-SHP2 level in leukocytes, gill tissues and supraneural myeloid bodies. The change of Lja-SHP2 was especially dramatical in leukocytes, which was about 2.5 times higher than that in the control group, suggesting that Lja-SHP2 is involved in the lamprey immune response mediated by PHA. Consistent with the previous finding that PHA could induce the activation of VLRA<sup>+</sup> lymphocytes, our results showed that Lja-SHP2 might be included in the immune response of VLRA<sup>+</sup> lymphocytes mediated by PHA in gills. This research will benefit exploring the functions of Lja-SHP2 in the immune response of lamprey and will provide clues for understanding the phylogenesis of SHP2 molecular family, and its roles in the early occurrence and evolution of adaptive immune system in higher vertebrates. 高等脊椎动物的蛋白酪氨酸磷酸酶SHP2(SH2 domain-containing protein-tyrosine phosphatase-2)由ptpn11基因编码,催化酪氨酸残基去磷酸化,与其他能催化酪氨酸磷酸化的蛋白酪氨酸激酶共同调节机体内多种信号通路的信号传导。以往研究表明,SHP2在高等脊椎动物T细胞和B细胞的激活与信号转导过程中起着重要作用。为了研究无颌类脊椎动物日本七鳃鳗(Lampetra japonica)中与SHP2同源的分子——Lja-SHP2在免疫应答反应中的作用,本研究通过PCR 扩增获取其Lja-SHP2开放阅读框序列,并构建到原核表达载体 pET-32a中,成功在大肠杆菌中实现重组蛋白表达并制备了其兔源多克隆抗体。用混合菌免疫刺激日本七鳃鳗后,通过实时荧光定量PCR和免疫印迹方法检测了Lja-SHP2在日本七鳃鳗免疫相关组织中mRNA和蛋白水平表达谱。结果显示,混合菌免疫刺激后,Lja-SHP2 mRNA和蛋白表达在外周血白细胞和髓样小体中无显著变化,而在鳃组织中显著性上调(P&lt;0.05),说明Lja-SHP2在混合菌刺激后主要参与了鳃组织的免疫应答反应。为了进一步探究Lja-SHP2与淋巴细胞亚群免疫应答反应的相关性,本研究分别使用B细胞有丝分裂原脂多糖(lipopolysaccharide, LPS)和T细胞的有丝分裂原植物凝集素(phytohemagglutinin, PHA)免疫刺激日本七鳃鳗。经LPS免疫刺激后,与对照组相比,白细胞中Lja-SHP2蛋白表达显著上调,鳃组织和髓样小体没有显著性差异表达;但经PHA免疫刺激后,与对照组相比,白细胞、鳃组织和髓样小体3种组织中Lja-SHP2均有上调,尤其在白细胞中上调最为显著,大约是对照组的2.5倍,说明Lja-SHP2参与了日本七鳃鳗由PHA介导的免疫应答反应。由于PHA能刺激日本七鳃鳗鳃组织中VLRA <sup>+</sup>淋巴细胞的活化,这表明Lja-SHP2可能参与了PHA介导的VLRA <sup>+</sup>淋巴细胞亚群的免疫应答反应。上述研究结果为进一步探索Lja-SHP2在七鳃鳗免疫应答过程中的功能奠定了基础,也为揭示SHP2分子家族的系统发生及探索高等脊椎动物适应性免疫系统的早期发生及其进化历程提供一定的线索。."	"Identification and clinical impact of potentially actionable somatic oncogenic mutations in solid tumor samples. An increasing number of anti-cancer therapeutic agents target specific mutant proteins that are expressed by many different tumor types. Successful use of these therapies is dependent on the presence or absence of somatic mutations within the patient's tumor that can confer clinical efficacy or drug resistance. The aim of our study was to determine the type, frequency, overlap and functional proteomic effects of potentially targetable recurrent somatic hotspot mutations in 47 cancer-related genes in multiple disease sites that could be potential therapeutic targets using currently available agents or agents in clinical development. Using MassArray technology, of the 1300 patient tumors analysed 571 (43.9%) had at least one somatic mutation. Mutations were identified in 30 different genes. KRAS (16.5%), PIK3CA (13.6%) and BRAF (3.8%) were the most frequently mutated genes. Prostate (10.8%) had the lowest number of somatic mutations identified, while no mutations were identified in sarcoma. Ocular melanoma (90.6%), endometrial (72.4%) and colorectal (66.4%) tumors had the highest number of mutations. We noted high concordance between mutations in different parts of the tumor (94%) and matched primary and metastatic samples (90%). KRAS and BRAF mutations were mutually exclusive. Mutation co-occurrence involved mainly PIK3CA and PTPN11, and PTPN11 and APC. Reverse Phase Protein Array (RPPA) analysis demonstrated that PI3K and MAPK signalling pathways were more altered in tumors with mutations compared to wild type tumors. Hotspot mutational profiling is a sensitive, high-throughput approach for identifying mutations of clinical relevance to molecular based therapeutics for treatment of cancer, and could potentially be of use in identifying novel opportunities for genotype-driven clinical trials."	"PTPN11 Knockdown Prevents Changes in the Expression of Genes Controlling Cell Cycle, Chemotherapy Resistance, and Oncogene-Induced Senescence in Human Thyroid Cells Overexpressing BRAF V600E Oncogenic Protein. The MAPK (RAS/BRAF/MEK/ERK) signaling pathway is a kinase cascade involved in the regulation of cell proliferation, differentiation, and survival in response to external stimuli. The V600E mutation in the BRAF gene has been detected in various tumors, resulting in a 500-fold increase in BRAF kinase activity. However, monotherapy with selective BRAF V600E inhibitors often leads to reactivation of MAPK signaling cascade and emergence of drug resistance. Therefore, new targets are being developed for the inhibition of components of the aberrantly activated cascade. It was recently discovered that resistance to BRAF V600E inhibitors may be associated with the activity of the tyrosine phosphatase SHP-2 encoded by the PTPN11 gene. In this paper, we analyzed transcriptional effects of PTPN11 gene knockdown and selective suppression of BRAF V600E in a model of thyroid follicular epithelium. We found that the siRNA-mediated knockdown of PTPN11 after vemurafenib treatment prevented an increase in the expression CCNA1 and NOTCH4 genes involved in the formation of drug resistance of tumors. On the other hand, downregulation of PTPN11 expression blocked the transcriptional activation of genes (p21, p15, p16, RB1, and IGFBP7) involved in cell cycle regulation and oncogene-induced senescence in response to BRAF V600E expression. Therefore, it can be assumed that SHP-2 participates not only in emergence of drug resistance in cancer cells, but also in oncogene-induced cell senescence."	"Bioevaluation of superparamagnetic iron oxide nanoparticles (SPIONs) functionalized with dihexadecyl phosphate (DHP). Superparamagnetic iron oxide nanoparticles (SPIONs) have been investigated for wide variety of applications. Their unique properties render them highly applicable as MRI contrast agents, in magnetic hyperthermia or targeted drug delivery. SPIONs surface properties affect a whole array of parameters such as: solubility, toxicity, stability, biodistribution etc. Therefore, progress in the field of SPIONs surface functionalization is crucial for further development of therapeutic or diagnostic agents. In this study, SPIONs were synthesized by thermal decomposition of iron (III) acetylacetonate Fe(acac)3 and functionalized with dihexadecyl phosphate (DHP) via phase transfer. Bioactivity of the SPION-DHP was assessed on SW1353 and TCam-2 cancer derived cell lines. The following test were conducted: cytotoxicity and proliferation assay, reactive oxygen species (ROS) assay, SPIONs uptake (via Iron Staining and ICP-MS), expression analysis of the following genes: alkaline phosphatase (ALPL); ferritin light chain (FTL); serine/threonine protein phosphatase 2A (PP2A); protein tyrosine phosphatase non-receptor type 11 (PTPN11); transferrin receptor 1 (TFRC) via RT-qPCR. SPION-DHP nanoparticles were successfully obtained and did not reveal significant cytotoxicity in the range of tested concentrations. ROS generation was elevated, however not correlated with the concentrations. Gene expression profile was slightly altered only in SW1353 cells."	"Therapeutic potential of targeting SHP2 in human developmental disorders and cancers. Src homology 2 (SH2)-containing protein tyrosine phosphatase 2 (SHP2), encoded by PTPN11, regulates cell proliferation, differentiation, apoptosis and survival via releasing intramolecular autoinhibition and modulating various signaling pathways, such as mitogen-activated protein kinase (MAPK) pathway. Mutations and aberrant expression of SHP2 are implicated in human developmental disorders, leukemias and several solid tumors. As an oncoprotein in some cancers, SHP2 represents a rational target for inhibitors to interfere. Nevertheless, its tumor suppressive effect has also been uncovered, indicating the context-specificity. Even so, two types of SHP2 inhibitors including targeting catalytic pocket and allosteric sites have been developed associated with resolved cocrystal complexes. Herein, we describe its structure, biological function, deregulation in human diseases and summarize recent advance in development of SHP2 inhibitors, trying to give an insight into the therapeutic potential in future."	"Defining language disorders in children and adolescents with Noonan Syndrome. Noonan Syndrome is a developmental disorder characterized by a distinctive phenotype including facial dysmorphism, webbed neck, short stature, heart defects, and variable cognitive deficits as major features. Over the years, neuropsychological and behavioral studies explored alteration of cognitive functioning and related domains, such as learning, memory, and attention. To our knowledge, however, data concerning the language profile in this disorder is scarce. The aim of the present study was to detect specific language functioning combining nonverbal intelligence quotient and language abilities and to pinpoint strengths and weaknesses in the language domains. The language profile of 37 Italian participants with molecularly confirmed diagnosis of Noonan Syndrome was evaluated using specific tools to assess vocabulary and grammar comprehension and production, as well as phonological development. We observed that 78% of affected individuals exhibited language impairment. Within language domains, the strong area was lexical production and grammar production was the weak area. Almost half the participants manifested a similar trend of specific language impairment. Nonverbal intelligence quotient only correlated with grammar comprehension. Our study expands present knowledge about the language profile in NS, and provides data that could enable more effective patient management and appropriate intervention."	"A PTPN11 mutation in a woman with Noonan syndrome and protein-losing enteropathy. Noonan syndrome is an autosomal dominant, variably expressed multisystem disorder characterized by specific facial and cardiac defects, delayed growth, ectodermal abnormalities, and lymphatic dysplasias. Lymphedema and chylous pleural effusions are common in Noonan syndrome, but protein-losing enteropathy (PLE) has only rarely been described in the condition and little is known about its genetic associations. We report the case of a 30-year-old Chinese woman who developed severe recurrent edema and hypoproteinemia. Gastroduodenoscopy showed a &quot;snowflake&quot; appearance of lymphangiectasia in the duodenum, and CT reconstruction of the small intestine showed segmental thickening of the intestinal wall with localized stenosis. Whole exome sequencing revealed that the patient harbored a pathogenic variant of PTPN11 (c.A922G p.N308D), which was unfortunately inherited by her 2.5-year-old daughter who had short stature and atrial septal defect but no hypoproteinemia. This case of Noonan syndrome with PLE was associated with a PTPN11 mutation. A comprehensive review of PLE in Noonan syndrome revealed that PLE often presents late in this context but there is no clear genotype-phenotype correlation. Genetic evaluation with next-generation sequencing can be useful for securing the diagnosis and planning early intervention and management."	"The Cardiac Genome Clinic: implementing genome sequencing in pediatric heart disease. This study investigated the diagnostic utility of nontargeted genomic testing in patients with pediatric heart disease. We analyzed genome sequencing data of 111 families with cardiac lesions for rare, disease-associated variation. In 14 families (12.6%), we identified causative variants: seven were de novo (ANKRD11, KMT2D, NR2F2, POGZ, PTPN11, PURA, SALL1) and six were inherited from parents with no or subclinical heart phenotypes (FLT4, DNAH9, MYH11, NEXMIF, NIPBL, PTPN11). Outcome of the testing was associated with the presence of extracardiac features (p = 0.02), but not a positive family history for cardiac lesions (p = 0.67). We also report novel plausible gene-disease associations for tetralogy of Fallot/pulmonary stenosis (CDC42BPA, FGD5), hypoplastic left or right heart (SMARCC1, TLN2, TRPM4, VASP), congenitally corrected transposition of the great arteries (UBXN10), and early-onset cardiomyopathy (TPCN1). The identified candidate genes have critical functions in heart development, such as angiogenesis, mechanotransduction, regulation of heart size, chromatin remodeling, or ciliogenesis. This data set demonstrates the diagnostic and scientific value of genome sequencing in pediatric heart disease, anticipating its role as a first-tier diagnostic test. The genetic heterogeneity will necessitate large-scale genomic initiatives for delineating novel gene-disease associations."	"Design, synthesis, biological evaluation, common feature pharmacophore model and molecular dynamics simulation studies of ethyl 4-(phenoxymethyl)-2-phenylthiazole-5-carboxylate as Src homology-2 domain containing protein tyrosine phosphatase-2 (SHP2) inhibitors. SHP2 is a non-receptor protein tyrosine phosphatase (PTP) encoded by the PTPN11 gene involved in cell death pathway (PD-1/PD-L1) and cell growth and differentiation pathway (MAPK). Moreover, mutations in SHP2 have been implicated in Leopard syndrome (LS), Noonan syndrome (NS), juvenile myelomonocytic leukemia (JMML) and several types of cancer and solid tumors. Thus, SHP2 inhibitors are much needed reagents for evaluation of SHP2 as a therapeutic target. A series of novel ethyl 4-(phenoxymethyl)-2-phenylthiazole-5-carboxylate derivatives were designed and synthesized, and their SHP2 inhibitory activities (IC50) were determined. Among the desired compounds, 1d shares the highest inhibitory activity (IC50 = 0.99 μM) against SHP2. Additionally, a common feature pharmacophore model was established to explain the structure activity relationship of the desired compounds. Finally, molecular dynamics simulation was carried out to explore the most likely binding mode of compound 1d with SHP2. In brief, the findings reported here may at least provide a new strategy or useful insights in discovering novel effective SHP2 inhibitors.Communicated by Ramaswamy H. Sarma."	"Congenital heart defects in Noonan syndrome: Diagnosis, management, and treatment. Noonan syndrome is a pleomorphic genetic disorder, in which a high percentage of affected individuals have cardiovascular involvement, most prevalently various forms of congenital heart disease (i.e., pulmonary valve stenosis, septal defects, left-sided lesions, and complex forms with multiple anomalies). Care includes attentiveness to several comorbidities, some directly impacting cardiac management (bleeding diatheses and lymphatic anomalies). More than 50% of patients with Noonan syndrome harbor PTPN11 pathogenic variation, which results in hyperactivation of RAS/mitogen-activated protein kinase signaling. Several other disease genes with similar biological effects have been uncovered for NS and phenotypically related disorders, collectively called the RASopathies. Molecular diagnosis with gene resequencing panels is now widely available, but phenotype variability and in some cases, subtlety, continues to make identification of Noonan syndrome difficult. Until genetic testing becomes universal for patients with congenital heart disease, alertness to Noonan syndrome's broad clinical presentations remains crucial. Genotype-phenotype associations for Noonan syndrome enable better prognostication for affected patients when a molecular diagnosis is established. We still lack Noonan syndrome-specific treatment; however, newly developed anticancer RAS pathway inhibitors could fill that gap if safety and efficacy can be established for indications such as pulmonary valve stenosis."	"Cardiofaciocutaneous Syndrome Phenotype in a Case with de novo KRAS Pathogenic Variant. Cardiofaciocutaneous (CFC) syndrome is one of the developmental disorders caused by a dysregulation of the Ras/mitogen-activated protein kinase (MAPK) pathway. RASopathies share overlapping clinical features, making the diagnosis challenging, especially in the newborn period. The majority of CFC syndrome cases arise by a mutation in the BRAF, MAP2K1, MAP2K2, or (rarely) KRAS genes. Germline KRAS mutations are identified in a minority of CFC and Noonan syndrome cases. Here, we describe a patient with a KRAS mutation presenting with a CFC syndrome phenotype. The female patient was referred for genetic testing because of congenital exophthalmos. Her facial appearance is distinctive with a coarse face, exophthalmos, ptosis, downslanting palpebral fissures, hypertelorism, deep philtrum, downturned corners of the mouth, and a short neck. She suffered from feeding difficulties, poor weight gain, and developmental delay. The sequencing of the genes involved in the MAPK pathway (PTPN11, SOS1, RAF1, KRAS, NRAS, MAP2K1, SHOC2, CBL, and SPRED1) identified a heterozygous de novo NM_004985.4:c.173C&gt;T (p.Thr58Ile) in the KRAS gene. Germline KRAS mutations have been identified in approximately 2% of the reported NS cases and less than 5% of the reported CFC syndrome cases. Because CFC and Noonan syndrome share clinical overlapping features, the phenotype caused by KRAS mutations is often difficult to assign to one of the 2 entities. The mutation that we detected in our patient was previously reported in a patient with an Noonan syndrome phenotype. However, our patient predominantly exhibits CFC clinical features. In our case, coarse facial appearance and severe developmental delay help discriminate CFC from Noonan syndrome. Thus, patient follow-up, especially for delayed motor milestones suspected from RASopathies, is important for the discrimination of overlapping conditions as in the abovementioned syndromes."	"After 95 years, it's time to eRASe JMML. Juvenile myelomonocytic leukaemia (JMML) is a rare clonal disorder of early childhood. Constitutive activation of the RAS pathway is the initial event in JMML. Around 90% of patients diagnosed with JMML carry a mutation in the PTPN11, NRAS, KRAS, NF1 or CBL genes. It has been demonstrated that after this first genetic event, an additional somatic mutation or epigenetic modification is involved in disease progression. The available genetic and clinical data have enabled researchers to establish relationships between JMML and several clinical conditions, including Noonan syndrome, Ras-associated lymphoproliferative disease, and Moyamoya disease. Despite scientific progress and the development of more effective treatments, JMML is still a deadly disease: the 5-year survival rate is ~50%. Here, we report on recent research having led to a better understanding of the genetic and molecular mechanisms involved in JMML."	"Shp2 activation in bone marrow microenvironment mediates the drug resistance of B-cell acute lymphoblastic leukemia through enhancing the role of VCAM-1/VLA-4. B-cell acute lymphoblastic leukemia (B-ALL) is immune to the chemotherapy-induced apoptosis as a result of the protection of bone marrow mesenchymal stromal cells (BMSCs). However, the precise underlying mechanism of such protection remains unclear so far. In this experiment, protein tyrosine phosphatase 2 (Shp2), which was encoded by the PTPN11 gene, was highly expressed in BMSCs of the newly diagnosed and the recurrent B-ALL patients. The plasmid-induced (including Shp2 E76K) Shp2 activation in BMSCs (Shp2-activated BMSCs) markedly increased the BMSCs-mediated resistance of leukemia cells both in vitro and in vivo. Additionally, studies in vitro suggested that, the expression of vascular cell adhesion molecule 1 (VCAM-1) was markedly up-regulated in Shp2-activated BMSCs, and VCAM-1 expression in BMSCs of B-ALL patients was negatively correlated with Shp2 expression. Down-regulation of VCAM-1 in BMSCs using siRNA reversed the resistance of CCRF-SB cells mediated by the Shp2-activated BMSCs. As for the molecular mechanism, the PI3K/AKT pathway mediated the regulation of VCAM-1 by Shp2. Blocking the very late antigen-4 (VLA-4) by antibodies in CCRF-SB cells dramatically reversed the resistance of CCRF-SB cells mediated by the Shp2-activated BMSCs, and decreased the adhesion effects of both CCRF-SB cells and BMSCs. In conclusion, Shp2 activation in BMSCs up-regulates VCAM-1 expression through increasing the PI3K/AKT phosphorylation level, and targeting the VCAM-1/VLA-4 signaling may serve as a clinically relevant mechanism to overcome the BMSCs-mediated chemoresistance of B-ALL cells."	"A new abietane diterpenoid from Ajuga ovalifolia var. calantha induces human lung epithelial A549 cell apoptosis by inhibiting SHP2. The Src-homology 2 domain-containing phosphatase 2 (SHP2), encoded by PTPN11, has been reported oncogenic tyrosine phosphatase associated with various tumors and played critical roles in many cell signaling events. Targeting SHP2 by small molecules may be a promising way for cancer therapy. Herein, a new abietane diterpenoid, named 3-acetoxylteuvincenone G (3-AG), was isolated from the whole plants of Ajuga ovalifolia var. calantha. The structure of the new compound was elucidated by means of extensive spectroscopic analyses. Using recombinant enzyme activity assay and cellular thermal shift assay, we found that 3-AG was a selective inhibitor of SHP2. Molecular docking suggested 3-AG displayed an orientation favorable to nucleophilic attack in the catalytic domain of SHP2. 3-AG suppressed A549 cell proliferation (IC50 = 10.79 ± 0.14 μM), invasion and induced cell apoptosis through SHP2/ERK1/2 and SHP2/AKT pathways. In summary, 3-AG, a potent, selective, and efficacious SHP2 inhibitor, may be a promising small molecule to treat human lung epithelial cancer."	"A cellular target engagement assay for the characterization of SHP2 (PTPN11) phosphatase inhibitors. The nonreceptor protein-tyrosine phosphatase (PTP) SHP2 is encoded by the proto-oncogene PTPN11 and is a ubiquitously expressed key regulator of cell signaling, acting on a number of cellular processes and components, including the Ras/Raf/Erk, PI3K/Akt, and JAK/STAT pathways and immune checkpoint receptors. Aberrant SHP2 activity has been implicated in all phases of tumor initiation, progression, and metastasis. Gain-of-function PTPN11 mutations drive oncogenesis in several leukemias and cause developmental disorders with increased risk of malignancy such as Noonan syndrome. Until recently, small molecule-based targeting of SHP2 was hampered by the failure of orthosteric active-site inhibitors to achieve selectivity and potency within a useful therapeutic window. However, new SHP2 allosteric inhibitors with excellent potency and selectivity have sparked renewed interest in the selective targeting of SHP2 and other PTP family members. Crucially, drug discovery campaigns focusing on SHP2 would greatly benefit from the ability to validate the cellular target engagement of candidate inhibitors. Here, we report a cellular thermal shift assay that reliably detects target engagement of SHP2 inhibitors. Using this assay, based on the DiscoverX InCell Pulse enzyme complementation technology, we characterized the binding of several SHP2 allosteric inhibitors in intact cells. Moreover, we demonstrate the robustness and reliability of a 384-well miniaturized version of the assay for the screening of SHP2 inhibitors targeting either WT SHP2 or its oncogenic E76K variant. Finally, we provide an example of the assay's ability to identify and characterize novel compounds with specific cellular potency for either WT or mutant SHP2."	"Transcriptome-based screening of intracellular pathways and angiogenesis related genes at different stages of thiram induced tibial lesions in broiler chickens. The Tibial dyschondroplasia (TD) in fast-growing chickens is mainly caused by improper blood circulation. The exact mechanism underlying angiogenesis and vascularization in tibial growth plate of broiler chickens remains unclear. Therefore, this research attempts to study genes involved in the regulation of angiogenesis in chicken red blood cells. Twenty-four broiler chickens were allotted into a control and thiram (Tetramethyl thiuram disulfide) group. Blood samples were collected on day 2, 6 (8- and 14-days old chickens) and 15 (23 days old chickens). Histopathology and hematoxylin and eosin (H&amp;E) results showed that angiogenesis decreased on the 6th day of the experiment but started to recover on the 15th day of the experiment. Immunohistochemistry (IHC) results confirmed the expressions of integrin alpha-v precursor (ITGAV) and clusterin precursor (CLU). Transcriptome sequencing analysis evaluated 293 differentially expressed genes (DEGs), of which 103 up-regulated genes and 190 down-regulated genes were enriched in the pathways of neuroactive ligand receptor interaction, mitogen-activated protein kinase (MAPK), ribosome, regulation of actin cytoskeleton, focal adhesion, natural killer cell mediated cytotoxicity and the notch signalling pathways. DEGs (n = 20) related to angiogenesis of chicken erythrocytes in the enriched pathways were thromboxane A2 receptor (TBXA2R), interleukin-1 receptor type 1 precursor (IL1R1), ribosomal protein L17 (RPL17), integrin beta-3 precursor (ITGB3), ITGAV, integrin beta-2 precursor (ITGB2), ras-related C3 botulinum toxin substrate 2 (RAC2), integrin alpha-2 (ITGA2), IQ motif containing GTPase activating protein 2 (IQGAP2), ARF GTPase-activating protein (GIT1), proto-oncogene vav (VAV1), integrin alpha-IIb-like (ITGA5), ras-related protein Rap-1b precursor (RAP1B), tyrosine protein kinase Fyn-like (FYN), tyrosine-protein phosphatase non-receptor type 11 (PTPN11), protein patched homolog 1 (PTCH1), nuclear receptor corepressor 2 (NCOR2) and mastermind like protein 3 (MAML3) selected for further confirmation with qPCR. However, commonly DEGs were sarcoplasmic/endoplasmic reticulum calcium ATPase 3 (ATP2A3), ubiquitin-conjugating enzyme E2 R2 (UBE2R2), centriole cilia and spindle-associated protein (CCSAP), coagulation factor XIII A chain protein (F13A1), shroom 2 isoform X6 (SHROOM2), ras GTPase-activating protein 3 (RASA3) and CLU. We have found potential therapeutic genes concerned to erythrocytes and blood regulation, which regulated the angiogenesis in thiram induced TD chickens. This study also revealed the potential functions of erythrocytes. 1. Tibial dyschondroplasia (TD) in chickens were more on day 6, which started recovering on day 15. 2. The enriched pathway observed in TD chickens on day 6 was ribosome pathway, on day 15 were regulation of actin cytoskeleton and focal adhesion pathway. 3. The genes involved in the ribosome pathways was ribosomal protein L17 (RPL17). regulation of actin cytoskeleton pathway were Ras-related C3 botulinum toxin substrate 2 (RAC2), Ras-related protein Rap-1b precursor (RAP1B), ARF GTPase-activating protein (GIT1), IQ motif containing GTPase activating protein 2 (IQGAP2), Integrin alpha-v precursor (ITGAV), Integrin alpha-2 (ITGA2), Integrin beta-2 precursor (ITGB2), Integrin beta-3 precursor (ITGB3), Integrin alpha-IIb-like (ITGA5). Focal adhesion Proto-oncogene vav (Vav-like), Tyrosine-protein kinase Fyn-like (FYN)."	"A network analysis revealed the essential and common downstream proteins related to inguinal hernia. Although more than 1 in 4 men develop symptomatic inguinal hernia during their lifetime, the molecular mechanism behind inguinal hernia remains unknown. Here, we explored the protein-protein interaction network built on known inguinal hernia-causative genes to identify essential and common downstream proteins for inguinal hernia formation. We discovered that PIK3R1, PTPN11, TGFBR1, CDC42, SOS1, and KRAS were the most essential inguinal hernia-causative proteins and UBC, GRB2, CTNNB1, HSP90AA1, CBL, PLCG1, and CRK were listed as the most commonly-involved downstream proteins. In addition, the transmembrane receptor protein tyrosine kinase signaling pathway was the most frequently found inguinal hernia-related pathway. Our in silico approach was able to uncover a novel molecular mechanism underlying inguinal hernia formation by identifying inguinal hernia-related essential proteins and potential common downstream proteins of inguinal hernia-causative proteins."	"Next generation sequencing identifies novel potential actionable mutations for grade I meningioma treatment. Meningiomas are common brain tumors that arise from the meningeal membranes that envelope the brain and spinal cord. The World Health Organization classifies these tumors into three histopathological grades. Because of tumor recurrence, treating meningiomas may be challenging even in well-differentiated grade I (GI) neoplasms. Indeed, around 5% of completely resected GI meningiomas relapse within 5 years. Therefore, identifying driver mutations in GI meningiomas through next generation sequencing (NGS) assays is paramount. The aim of this study was to validate the use of the 50-gene AmpliSeq Hotspot Cancer Panel v2 to identify the mutational status of 23 GI meningioma, namely, 12 non recurrent and 11 recurrent. In 18 out of the 23 GI meningiomas analyzed, we identified at least one gene mutation (78.2%). The most frequently mutated genes were c-kit (39.1%), ATM (26.1%), TP53 (26.1%), EGFR (26.1%), STK11 (21.7%), NRAS (17.4%), SMAD4 (13%), FGFR3 (13%), and PTPN11 (13%); less frequent mutations were SMARCB1 (8.7%), FLT3 (8.7%), KRAS (8.7%), FBWX7 (8.7%), ABL1 (8.7%), ERBB2 (8.7%), IDH1 (8.7%), BRAF (8.7%), MET (8.7%), HRAS (4.3%), RB1 (4.3%), CTNNB1 (4.3%), PIK3CA (4.3%), VHL (4.3%), KDR (4.3%), APC (4.3%), NOTCH1 (4.3%), JAK3 (4.3%), and SRC (4.3%). To our knowledge, mutations in all of these genes, except for TP53, STK11, SMARCB1, PIK3CA, VHL, and BRAF, have never been described before in meningiomas. Hence, these findings demonstrate the viability of NGS to detect new genetic alterations in GI meningiomas. Equally important, this technology enabled us to detect possible novel actionable mutations not previously associated with GI and for which selective inhibitors already exist."	"Cardiac manifestations and gene mutations of patients with RASopathies in Taiwan. RASopathies are developmental diseases caused by mutations in rat sarcoma-mitogen-activated protein kinase pathway genes. These disorders, such as Noonan syndrome (NS) and NS-related disorders (NSRD), including cardio-facio-cutaneous (CFC) syndrome, Costello syndrome (CS), and NS with multiple lentigines (NSML; also known as LEOPARD syndrome), have a similar systemic phenotype. A wide spectrum of congenital heart disease and hypertrophic cardiomyopathy (HCMP) can exhibit major associated characteristics. A retrospective study was conducted at the Mackay Memorial Hospital, National Taiwan University Hospital, Buddhist Tzu-Chi General Hospital, Chang-Gung Memorial Hospital, Taichung Veterans General Hospital, and Chung Shan Medical University Hospital from January 2007 to December 2018. We reviewed the clinical records of 76 patients with a confirmed molecular diagnosis of RASopathies, including NS, CS, CFC syndrome, and NSML. We evaluated the demographic data and medical records with clinical phenotypes of cardiac structural anomalies using cross-sectional and color Doppler echocardiography, electrocardiographic findings, and follow-up data. A total of 47 (61.8%) patients had cardiac abnormalities. The prevalence of cardiac lesions according to each syndrome was 62.7, 50.0, 60.0, and 66.7% in patients with NS, CFC syndrome, CS, and NSML, respectively. An atrial septal defect was usually combined with other cardiac abnormalities, such as pulmonary stenosis (PS), HCMP, ventricular septal defect, or patent ductus arteriosus. Patients with NS most commonly showed PS. In patients with NSRD and cardiac abnormalities, HCMP (29.4%) was the most commonly observed cardiac lesion. PTPN11 was also the most frequently detected mutation in patients with NS and NSRD. Cardiac abnormalities were the most common symptoms observed in patients with RASopathies at the time of their first hospital visit. Performing precise analyses of genotype-cardiac phenotype correlations in a larger cohort will help us accurately diagnose RASopathy as soon as possible."	"Transcriptome Analysis of MDA-MB-231 Cells Treated with Fumosorinone Isolated from Insect Pathogenic Fungi. In our previous study, we have isolated a new compound, named Fumosorinone (FU) from insect pathogenic fungi, and was found to inhibit proliferation, migration, and invasion of breast cancer MDA-MB-231 cells. The aim of this study was to identify the underlying molecular mechanisms for FU effects on MDAMB- 231 cells. After MDA-MB-231 cells were treated with FU for 48h, RNA sequencing was used to identify the effect of FU on the transcriptome of MDA-MB-231 cells. The validation of the relative expression of the selective genes was done using quantitative real-time PCR (qRT-PCR). The transcriptome results showed that 2733 genes were differentially expressed between the untreated and the FU-treated cells, including 1614 up-regulated and 1119 down-regulated genes. The multiple genes are associated with cancer cell growth, migration, and invasion. Functional analysis identified multitude of pathways related to cancer, such as cell cycle, ECM-receptor interaction, p53 signaling pathway. We selected 4 upregulated and 9 downregulated genes, which are associated with breast cancer to verify their expression using qRT-PCR. The validation showed that HSD3B1, ALOX5, AQP5, COL1A2, CCNB1, CCND1, VCAM-1, PTPN1 and PTPN11 were significantly downregulated while DUSP1, DUSP5, GADD45A, EGR1 were upregulated in FU-treated MDA-MB-231cells. These aberrantly expressed genes and pathways may play pivotal roles in the anti-cancer activity of FU, and maybe potential targets of FU treatments for TNBC. Further investigations are required to evaluate the FU mechanisms of anti-cancer action in vivo."	"PTPN11 mutation with additional somatic alteration indicates unfavorable outcome in juvenile myelomonocytic leukemia: a retrospective clinical study from a single center. Juvenile myelomonocytic leukemia (JMML) is a heterogeneous childhood leukemia. The management of patients with JMML requires accurate assessment of genetic and clinical features to help in patient risk stratification. This study aimed to investigate the association between genomic alterations and prognosis in children with JMML. Genomic DNA was extracted from a total of 93 patients with JMML for targeted sequencing. Univariable and multivariable analysis were used to evaluate the correlation between gene mutations and prognosis of the patients. Patients with PTPN11 mutation exhibited significantly lower event-free survival (EFS) compared with non-PTPN11 mutations (P = 0.005). Patients without or with one somatic alteration at diagnosis showed significantly better prognosis in comparison with those with more than two alterations (P = 0.009). PTPN11 mutation with additional alterations showed significantly the poorest outcome in comparison with those with only one non-PTPN11 mutation, only one PTPN11 mutation, and combined mutations without PTPN11, respectively (P &lt; 0.0001).Conclusion: Both PTPN11 mutation and the number of somatic alterations detected at diagnosis are likely to be the major determinant of outcome in JMML. The subgroup of patients with PTPN11 mutation showed the shortest survival which was even worsened when a secondary mutation was present."	"Development and structure-activity relationship study of SHP2 inhibitor containing 3,4,6-trihydroxy-5-oxo-5H-benzo[7]annulene. SHP2, a non-receptor protein tyrosine phosphatase encoded by PTPN11 gene, plays an important role in the cell growth and proliferation. Activating mutations of SHP2 have been reported as a cause of various human diseases such as solid tumors, leukemia, and Noonan syndrome. The discovery of SHP2 inhibitor can be a potent candidate for the treatment of cancers and SHP2 related human diseases. Several reports on a small molecule targeting SHP2 have published, however, there are limitations on the discovery of SHP2 phosphatase inhibitors due to the polar catalytic site environment. Allosteric inhibitor can be an alternative to catalytic site inhibitors. 3,4,6-Trihydroxy-5-oxo-5H-benzo[7]annulene 1 was obtained as an initial hit with a 0.097 μM of IC50 from high-throughput screening (HTS) study. After the structure-activity relationship (SAR) study, compound 1 still showed the most potent activity against SHP2. Moreover, compound 1 exerted good potency against SHP2 expressing 2D and 3D MDA-MB-468."	"SHP2 deficiency promotes Staphylococcus aureus pneumonia following influenza infection. Secondary bacterial pneumonia is common following influenza infection. However, it remains unclear about the underlying molecular mechanisms. We established a mouse model of post-influenza S aureus pneumonia using conditional Shp2 knockout mice (LysM<sup>Cre/+</sup> :Shp2<sup>flox/flox</sup> ). The survival, bacterial clearance, pulmonary histology, phenotype of macrophages, and expression of type I interferons and chemokines were assessed between SHP2 deletion and control mice (Shp2<sup>flox/flox</sup> ). We infused additional KC and MIP-2 to examine the reconstitution of antibacterial immune response in LysM<sup>Cre/+</sup> :Shp2<sup>flox/flox</sup> mice. The effect of SHP2 on signal molecules including MAPKs (JNK, p38 and Erk1/2), NF-κB p65 and IRF3 was further detected. LysM<sup>Cre/+</sup> :Shp2<sup>flox/flox</sup> mice displayed impaired antibacterial immunity and high mortality compared with control mice in post-influenza S aureus pneumonia. The attenuated antibacterial ability was associated with the induction of type I interferon and suppression of chemo-attractants KC and MIP-2, which reduced the infiltration of neutrophils into the lung upon secondary bacterial invasion. In additional, Shp2 knockout mice displayed enhanced polarization to alternatively activated macrophages (M2 phenotype). Further in vitro analyses consistently demonstrated that SHP2-deficient macrophages were skewed towards an M2 phenotype and had a decreased antibacterial capacity. Moreover, SHP2 modulated the inflammatory response to secondary bacterial infection via interfering with NF-κB and IRF3 signalling in macrophages. Our findings reveal that the SHP2 expression enhances the host immune response and prompts bacterial clearance in post-influenza S aureus pneumonia."	"A Ce(iii) complex potently inhibits the activity and expression of tyrosine phosphatase SHP-2. Four new Ce(iii) complexes 1-4 with tridentate NNO-donor Schiff base ligands have been designed and successfully synthesized. These complexes were characterized by elemental analysis, IR, and ESI-MS, with formulas of [Ce(HL1)2(NO3)3]·2CH3OH (1), [Ce(L2)2(NO3)]·3H2O (2), [Ce(HL3)(L3)(NO3)Br]·H2O (3) and [Ce(L4)2(NO3)]·3H2O (4), in which ligands HL1-HL4 are respectively N'-[(1E)-pyridin-2-ylmethylidene]pyrazine-2-carbohydrazide (HL1), 2-(1-(salicyloylhydrazono)ethyl)pyrazine (HL2), N'-[(1E)-pyridin-2-ylmethylidene]pyridine-2-carbohydrazide (HL3) and 2-(1-(salicyloylhydrazono)ethyl) pyridine (HL4). X-ray single crystal diffraction analysis indicates that complex 1 crystallizes in the monoclinic system with the space group C2/c and the structure of complex 1 consists of a monomeric Ce(iii) species with a Ce(iii) moiety bonded to two tridentate Schiff base ligands, three nitrates and solvents. These complexes effectively inhibit the enzyme activities of PTPs (SHP-1, SHP-2, TCPTP and PTP1B), among which complex 3 shows the most potent inhibition of SHP-2 with the lowest IC50 value of 0.61 μM and displays obvious selectivity towards SHP-2. Its inhibition potency against SHP-2 was approximately 17, 4, and 5 fold higher than that against SHP-1, TCPTP and PTP1B, respectively. Further study discloses that complex 3 inhibits SHP-2 in a competitive manner. Fluorescence measurements indicate that complex 3 tightly binds to SHP-2 with a molar ratio of 1 : 1 and a binding constant of 5.45 × 105 M-1. Western blot experiments show that complex 3 promotes the phosphorylation of the SHP-2 substrate by the combination of the inhibition of the activity and expression of SHP-2. Moreover, complex 3 decreases the survival rate of A549 cells to 35.12% at 100 μM and induces apoptosis with an apoptosis rate of 12.06% at 50 μM. All these results suggest that complex 3 is a potential bi-functional inhibitor of the activity and expression of tyrosine phosphatase SHP-2."	"mTOR pathway in human cardiac hypertrophy caused by LEOPARD syndrome: a different role compared with animal models? Animal studies suggested that blocking the activation of the mammalian target of rapamycin (mTOR) pathway might be effective to treat cardiac hypertrophy in LEOPARD syndrome (LS) caused by PTPN11 mutations. In the present study, mTOR pathway activity was examined in human myocardial samples from two patients with LS, four patients with hypertrophic cardiomyopathy (HCM), and four normal controls. The two patients with LS had p.Y279C and p.T468 M mutations of the PTPN11 gene, respectively. Although PTPN11 mutation showed initially positive regulation on phosphoinositide 3-kinase, overall the mTOR complex 1 pathway showed widely attenuated activity in LS. This included mildly hypophosphorylated mTOR and ribosomal protein S6 kinase and significantly hypophosphorylated Akt<sup>308</sup> and ribosomal protein S6, which is similar to HCM. Akt<sup>473</sup> is a basal molecule of the mTOR complex 2 pathway. Akt<sup>473</sup> was less affected and showed hyperactivity in LS compared with HCM and normal controls. Additionally, MAPK/ERK kinase and ERK1/2 were significantly more phosphorylated in both HCM and LS than normal controls. In LS, the mTOR signaling pathway shows similar activity to HCM and is attenuated compared with normal controls. Thus, caution should be applied when using rapamycin to treat heart hypertrophy in LS."	"Identification of Gene Mutations in Primary Pediatric Cardiomyopathy by Whole Exome Sequencing. Pediatric primary cardiomyopathy is rare but serious, having high mortality; hypertrophic and dilated types are the most common. Its etiology has been mainly considered idiopathic; however, next generation sequencing techniques have revealed nearly half of idiopathic pediatric cases arose from specific genetic mutations. Therefore, our study aimed to identify the genetic causes of primary idiopathic cardiomyopathy. Newborns to 15-year old patients with this condition were recruited between March 2016 and May 2017 at Thammasat University Hospital. Complete patient history and physical examination data were collected by a geneticist with cardiac examinations and echocardiograms by pediatric cardiologists. Whole exome sequencing was performed for all. Of the 12 patients enrolled, 5 cases were dilated type and 7 hypertrophic. Two with dilated type were excluded during follow-up as cause was determined (hypocalcemia and pacemaker induced). A list of 118 genes for cardiomyopathy was analyzed in the remaining 10 cases. Pathogenic and likely pathogenic mutations were identified in 5 patients: HRAS, PTPN11, SOS1, FLNC and TXNRD2; half our patients were not actually idiopathic. Despite its high cost, genetic testing is useful for determining familial risk as well as predicting patient cardiomyopathy progress."	"SHP-2 in Lymphocytes' Cytokine and Inhibitory Receptor Signaling. Somewhat counterintuitively, the tyrosine phosphatase SHP-2 (SH2 domain-containing protein tyrosine phosphatase-2) is crucial for the activation of extracellular signal-regulated kinase (ERK) downstream of various growth factor receptors, thereby exerting essential developmental functions. This phosphatase also deploys proto-oncogenic functions and specific inhibitors have recently been developed. With respect to the immune system, the role of SHP-2 in the signaling of cytokines relevant for myelopoiesis and myeloid malignancies has been intensively studied. The function of this phosphatase downstream of cytokines important for lymphocytes is less understood, though multiple lines of evidence suggest its importance. In addition, SHP-2 has been proposed to mediate the suppressive effects of inhibitory receptors (IRs) that sustain a dysfunctional state in anticancer T cells. Molecules involved in IR signaling are of potential pharmaceutical interest as blockade of these inhibitory circuits leads to remarkable clinical benefit. Here, we discuss the dichotomy in the functions ascribed to SHP-2 downstream of cytokine receptors and IRs, with a focus on T and NK lymphocytes. Further, we highlight the importance of broadening our understanding of SHP-2's relevance in lymphocytes, an essential step to inform on side effects and unanticipated benefits of its therapeutic blockade."	"Transcriptome analysis of MAPK signaling pathway and associated genes to angiogenesis in chicken erythrocytes on response to thiram-induced tibial lesions. This study was planned to investigate TD (Tibial dyschondroplasia) on the potential MAPK signaling pathway and angiogenesis related genes. Forty-eight broilers were allotted into control (C) and treatment (T) groups of 2, 6 and 15 days as C1, C2, C3, T1, T2 and T3. The histopathology results revealed that tibiotarsus bone of chickens had more lesions on day 6 (T2 group). The chondrocytes were disordered, and the size, shape and proliferation were affected. Transcriptome results revealed that differentially expressed genes (DEGs) identified were 63, 1026, 623, 130, 141 and 146 in C1 (2 days control vs 6 days control); C2 (2 days control vs 15 days control); C3 (6 days control vs 15 days control); T1 (2 days treatment vs 6 days treatment); T2 (2 days treatment vs 15 days treatment) and T3 (6 days treatment vs 15 days treatment) groups respectively. Whereas, 10 angiogenesis related-genes RHOC, MEIS2, BAIAP2, TGFBI, KLF2, CYR61, PTPN11, PLXNC1, HSPH1 and NRP2 were downregulated on day 6 in the treatment group. The pathway which was found enriched in the control and treatment groups was MAPK signaling pathway. Therefore selected 10 MAPK signaling pathway-related genes RAC2, MAP3K1, PRKCB, FLNB, IL1R1, PTPN7, RPS6KA, MAP3K6, GNA12 and HSPA8 which were found significantly downregulated in the treatment group on day 6. It is concluded that angiogenesis and MAPK signaling pathway related genes has an essential role in TD, as those top screened genes found downregulated in the thiram fed chickens when TD observed severed on day 6."	"Proteomic Analysis of an Induced Pluripotent Stem Cell Model Reveals Strategies to Treat Juvenile Myelomonocytic Leukemia. Juvenile myelomonocytic leukemia (JMML) is an aggressive myeloproliferative neoplasm of early childhood with a poor survival rate, thus there is a requirement for improved treatment strategies. Induced pluripotent stem cells offer the ability to model disease and develop new treatment strategies. JMML is frequently associated with mutations in PTPN11. Children with Noonan syndrome, a development disorder, have an increased incidence of JMML associated with specific germline mutations in PTPN11. We undertook a proteomic assessment of myeloid cells derived from induced pluripotent stem cells obtained from Noonan syndrome patients with PTPN11 mutations, either associated or not associated with an increased incidence of JMML. We report that the proteomic perturbations induced by the leukemia-associated PTPN11 mutations are associated with TP53 and NF-Kκb signaling. We have previously shown that MYC is involved in the differential gene expression observed in Noonan syndrome patients associated with an increased incidence of JMML. Thus, we employed drugs to target these pathways and demonstrate differential effects on clonogenic hematopoietic cells derived from Noonan syndrome patients, who develop JMML and those who do not. Further, we demonstrated these small molecular inhibitors, JQ1 and CBL0137, preferentially extinguish primitive hematopoietic cells from sporadic JMML patients as opposed to cells from healthy individuals."	"The multi-site docking protein Grb2-associated binder 1 (Gab1) enhances interleukin-6-induced MAPK-pathway activation in an SHP2-, Grb2-, and time-dependent manner. Cytokine-dependent activation of signalling pathways is tightly orchestrated. The spatiotemporal activation of signalling pathways dictates the specific physiological responses to cytokines. Dysregulated signalling accounts for neoplastic, developmental, and inflammatory diseases. Grb2-associated binder (Gab) family proteins are multi-site docking proteins, which expand cytokine-induced signal transduction in a spatial- and time-dependent manner by coordinating the recruitment of proteins involved in mitogen activated protein kinase (MAPK)/extracellular-signal regulated kinase (ERK) and phosphatidyl-inositol-3-kinase (PI3K) signalling. Interaction of Gab family proteins with these signalling proteins determines strength, duration and localization of active signalling cascades. However, the underlying molecular mechanisms of signal orchestration by Gab family proteins in IL-6-induced signalling are only scarcely understood. We performed kinetic analyses of interleukin-6 (IL-6)-induced MAPK activation and analysed downstream responses. We compared signalling in wild-type cells, Gab1 knock-out cells, those reconstituted to express Gab1 mutants, and cells expressing gp130 receptors or receptor mutants. Interleukin-6-induced MAPK pathway activation can be sub-divided into an early Gab1-independent and a subsequent Gab1-dependent phase. Early Gab1-independent MAPK activation is critical for the subsequent initiation of Gab1-dependent amplification of MAPK pathway activation and requires binding of SH2 domain-containing phosphatase 2 (SHP2) to the interleukin-6 receptor complex. Subsequent and coordinated recruitment of Grb2 and SHP2 to Gab1 is essential for Gab1-dependent amplification of IL-6-induced late MAPK pathway activation and subsequent gene expression. Overall, we elaborated the molecular requirements for Gab1-dependent, spatiotemporal orchestration of interleukin-6-dependent MAPK signalling. We discriminated IL-6-induced Gab1-independent, early activation of MAPK signalling and Gab1-dependent, sustained activation of MAPK signalling."	"A First Case Report of Subependymoma in PTPN11 Mutation-Associated Noonan Syndrome. Noonan syndrome (NS) is an autosomal dominant disorder in some cases caused by PTPN11 mutations. Since somatic mutations in PTPN11 are seen in several tumor types, NS which causes germline PTPN11 mutations are also increase the risk of hematologic malignancies and brain solid tumors. However, the report of brain tumors in Noonan syndrome remains rather rare. Here, we report the first case of an 11-year-old Thai boy with Noonan syndrome who presented with symptoms related to hydrocephalus secondary to subependymoma in the fourth ventricle, and PTPN11 mutation was identified in this patient."	"PTPN11 (SHP2) Is Indispensable for Growth Factors and Cytokine Signal Transduction During Bovine Oocyte Maturation and Blastocyst Development. This study was aimed to investigate the role of SHP2 (Src-homology-2-containing phosphotyrosine phosphatase) in intricate signaling networks invoked by bovine oocyte to achieve maturation and blastocyst development. PTPN11 (Protein Tyrosine Phosphatase, non-receptor type 11) encoding protein SHP2, a positive transducer of RTKs (Receptor Tyrosine Kinases) and cytokine receptors, can play a significant role in bovine oocyte maturation and embryo development, but this phenomenon has not yet been explored. Here, we used different growth factors, cytokines, selective activator, and a specific inhibitor of SHP2 to ascertain its role in bovine oocyte developmental stages in vitro. We found that SHP2 became activated by growth factors and cytokines treatment and was highly involved in the activation of oocyte maturation and embryo development pathways. Activation of SHP2 triggered MAPK (mitogen-activated protein kinases) and PI3K/AKT (Phosphoinositide 3-kinase/Protein kinase B) signaling cascades, which is not only important for GVBD (germinal vesical breakdown) induction but also for maternal mRNA translation. Inhibition of phosphatase activity of SHP2 with PHPS1 (Phenylhydrazonopyrazolone sulfonate 1) reduced oocytes maturation as well as bovine blastocyst ICM (inner cell mass) volume. Supplementation of LIF (Leukemia Inhibitory Factor) to embryos showed an unconventional direct relation between p-SHP2 and p-STAT3 (Signal transducer and activator of transcription 3) for blastocyst ICM development. Other than growth factors and cytokines, cisplatin was used to activate SHP2. Cisplatin activated SHP2 modulate growth factors effect and combine treatment significantly enhanced quality and rate of developed blastocysts."	"Shp2 in myocytes is essential for cardiovascular and neointima development. Mutations in the PTPN11 gene, which encodes the protein tyrosine phosphatase Shp2, cause Noonan syndrome and LEOPARD syndrome, inherited multifaceted diseases including cardiac and vascular defects. However, the function of Shp2 in blood vessels, especially in vascular smooth muscle cells (VSMCs), remains largely unknown. We generated mice in which Shp2 was specifically deleted in VSMCs and embryonic cardiomyocytes using the SM22α-Cre transgenic mouse line. Conditional Shp2 knockout resulted in massive hemorrhage, cardiovascular defects and embryonic lethality at the late embryonic developmental stage (embryonic date 16.5). The thinning of artery walls in Shp2-knockout embryos was due to decreased VSMC number and reduced extracellular matrix deposition. Myocyte proliferation was decreased in Shp2-knockout arteries and hearts. Importantly, cardiomyocyte-specific Shp2-knockout did not cause similar vascular defects. Shp2 was required for TGFβ1-induced expression of ECM components, including collagens in VSMCs. In addition, collagens were sufficient to promote Shp2-inefficient VSMC proliferation. Finally, Shp2 was deleted in adult mouse VSMCs by using SMMHC-CreER<sup>T2</sup> and tamoxifen induction. Shp2 deletion dramatically inhibited the expression of ECM components, proliferation of VSMCs and neointima formation in a carotid artery ligation model. Therefore, Shp2 is required for myocyte proliferation in cardiovascular development and vascular remodeling through TGFβ1-regulated collagen synthesis."	"Identification and Characterization of Post-activated B Cells in Systemic Autoimmune Diseases. Autoimmune diseases (AID) such as systemic lupus erythematosus (SLE), primary Sjögren's syndrome (pSS), and rheumatoid arthritis (RA) are chronic inflammatory diseases in which abnormalities of B cell function play a central role. Although it is widely accepted that autoimmune B cells are hyperactive in vivo, a full understanding of their functional status in AID has not been delineated. Here, we present a detailed analysis of the functional capabilities of AID B cells and dissect the mechanisms underlying altered B cell function. Upon BCR activation, decreased spleen tyrosine kinase (Syk) and Bruton's tyrosine kinase (Btk) phosphorylation was noted in AID memory B cells combined with constitutive co-localization of CD22 and protein tyrosine phosphatase (PTP) non-receptor type 6 (SHP-1) along with hyporesponsiveness to TLR9 signaling, a Syk-dependent response. Similar BCR hyporesponsiveness was also noted specifically in SLE CD27<sup>-</sup> B cells together with increased PTP activities and increased transcripts for PTPN2, PTPN11, PTPN22, PTPRC, and PTPRO in SLE B cells. Additional studies revealed that repetitive BCR stimulation of normal B cells can induce BCR hyporesponsiveness and that tissue-resident memory B cells from AID patients also exhibited decreased responsiveness immediately ex vivo, suggesting that the hyporesponsive status can be acquired by repeated exposure to autoantigen(s) in vivo. Functional studies to overcome B cell hyporesponsiveness revealed that CD40 co-stimulation increased BCR signaling, induced proliferation, and downregulated PTP expression (PTPN2, PTPN22, and receptor-type PTPs). The data support the conclusion that hyporesponsiveness of AID and especially SLE B cells results from chronic in vivo stimulation through the BCR without T cell help mediated by CD40-CD154 interaction and is manifested by decreased phosphorylation of BCR-related proximal signaling molecules and increased PTPs. The hyporesponsiveness of AID B cells is similar to a form of functional anergy."	"In Vivo CRISPR Screen Identifies TgWIP as a Toxoplasma Modulator of Dendritic Cell Migration. Toxoplasma can reach distant organs, especially the brain, leading to a lifelong chronic phase. However, genes involved in related in vivo processes are currently unknown. Here, we use focused CRISPR libraries to identify Toxoplasma genes that affect in vivo fitness. We focus on TgWIP, whose deletion affects Toxoplasma dissemination to distant organs. We show that TgWIP is secreted into the host cell upon invasion and interacts with the host WAVE regulatory complex and SHP2 phosphatase, both of which regulate actin dynamics. TgWIP affects the morphology of dendritic cells and mediates the dissolution of podosomes, which dendritic cells use to adhere to extracellular matrix. TgWIP enhances the motility and transmigration of parasitized dendritic cells, likely explaining its effect on in vivo fitness. Our results provide a framework for systemic identification of Toxoplasma genes with in vivo effects at the site of infection or on dissemination to distant organs, including the brain."	"The extended spectrum of RAS-MAPK pathway mutations in colorectal cancer. Current clinical guidelines recommend mutation analysis for select codons in KRAS and NRAS exons 2, 3, and 4 and BRAF V600E to guide therapy selection and prognostic stratification in advanced colorectal cancer. This study evaluates the impact of extended molecular testing on the detection of RAS-MAPK pathway mutations. Panel next-generation sequencing results of colorectal cancer specimens from 5795 individuals from the American Association for Cancer Research Project Genomics Evidence Neoplasia Information Exchange (AACR Project GENIE) were included. Mutations in RAS-MAPK pathway genes were analyzed and functionally annotated. Colorectal cancers had recurrent pathogenic pathway activating mutations in KRAS (44%), NRAS (4%), HRAS (&lt;1%), BRAF (10%), MAP2K1 (1%), RAF1 (&lt;1%), and PTPN11 (&lt;1%). The proportion of colorectal cancers with pathogenic RAS pathway mutations was 37% when only KRAS codon 12 and 13 mutations were considered, 46% when also including select KRAS and NRAS exons 2, 3, and 4 mutations, 53% when including BRAF V600E mutations, and 56% when including all pathogenic mutations. Panel next-generation sequencing testing identifies additional RAS-MAPK pathway driver mutations beyond current guideline recommendations. These mutations have potential implications in treatment selection for patients with advanced colorectal cancer."	"Shp2 expression is upregulated in cervical cancer, and Shp2 contributes to cell growth and migration and reduces sensitivity to cisplatin in cervical cancer cells. Src homology phosphotyrosine phosphatase 2 (Shp2) has been found to be overexpressed in cervical cancer tissues. However, the influence of Shp2 on the biological behavior and sensitivity to cisplatin of cervical cancer cells remains unclear. We aimed to assess Shp2 expression in cervical tissues and cell lines and to detect the influence of Shp2 knockdown and overexpression on the biological behavior and sensitivity to cisplatin in cervical cancer cells. We found that Shp2 expression was significantly upregulated in cervical cancer tissues and cell lines, and Shp2 overexpression was associated with lymph node metastasis and a high human papillomavirus (HPV) DNA load. Shp2 knockdown inhibited cell growth and migration and enhanced sensitivity to cisplatin in the HeLa and SiHa cervical cancer cell lines. In contrast, Shp2 overexpression had the opposite effects. These tumor-promoting effects of Shp2 may be partly related to Akt signaling. In conclusion, Shp2 is involved in the occurrence and development of cervical cancer and may confer cisplatin resistance in cervical cancer. Shp2 blockade may be a new strategy for cervical cancer treatment."	"Catalytic dysregulation of SHP2 leading to Noonan syndromes affects platelet signaling and functions. Src homology 2 domain-containing phosphatase 2 (SHP2), encoded by the PTPN11 gene, is a ubiquitous protein tyrosine phosphatase that is a critical regulator of signal transduction. Germ line mutations in the PTPN11 gene responsible for catalytic gain or loss of function of SHP2 cause 2 disorders with multiple organ defects: Noonan syndrome (NS) and NS with multiple lentigines (NSML), respectively. Bleeding anomalies have been frequently reported in NS, but causes remain unclear. This study investigates platelet activation in patients with NS and NSML and in 2 mouse models carrying PTPN11 mutations responsible for these 2 syndromes. Platelets from NS mice and patients displayed a significant reduction in aggregation induced by low concentrations of GPVI and CLEC-2 agonists and a decrease in thrombus growth on a collagen surface under arterial shear stress. This was associated with deficiencies in GPVI and αIIbβ3 integrin signaling, platelet secretion, and thromboxane A2 generation. Similarly, arterial thrombus formation was significantly reduced in response to a local carotid injury in NS mice, associated with a significant increase in tail bleeding time. In contrast, NSML mouse platelets exhibited increased platelet activation after GPVI and CLEC-2 stimulation and enhanced platelet thrombotic phenotype on collagen matrix under shear stress. Blood samples from NSML patients also showed a shear stress-dependent elevation of platelet responses on collagen matrix. This study brings new insights into the understanding of SHP2 function in platelets, points to new thrombopathies linked to platelet signaling defects, and provides important information for the medical care of patients with NS in situations involving risk of bleeding."	"Clinical and molecular characterization of children with Noonan syndrome and other RASopathies in Argentina. RASopathies are a set of syndromes with phenotypic overlapping features caused by gene mutations involved in the RAS/MAPK pathway. They are autosomal dominantly inherited and share common clinical characteristics, including short stature, craniofacial dysmorphisms, congenital heart disease, ectodermal manifestations, and a higher risk for cancer. A molecular diagnosis is a key factor. To identify PTPN11, SOS1, RAF1, BRAF, and HRAS mutations and compare the main clinical characteristics of patients with molecular confirmation. Population and methods. Children with a clinical diagnosis of RASopathy assessed between August 2013 and February 2017. Mutations were identified in 71 % (87/122) of patients. The molecular test confirmed diagnosis in 73 % of patients with Noonan syndrome. The most prevalent mutation was c.922A&gt;G (p.Asn308Asp) in the PTPN11 gene. A previously undescribed variant in RAF1 was detected: c.1467G&gt;C (p.Leu489Phe). Cardiofaciocutaneous syndrome was confirmed in 67 % of cases with BRAF mutations. Costello syndrome and Noonan syndrome with multiple lentigines were confirmed in all cases. The confirmation of clinical diagnosis allowed for a more accurate differential diagnosis. The prevalence of PTPN11 (58 %), SOS1 (10 %), and RAF1 mutations (5 %) in children with Noonan syndrome, of PTPN11 mutations (100 %) in those with Noonan syndrome with multiple lentigines, of BRAF mutations (67 %) in those with cardiofaciocutaneous syndrome, and of HRAS mutations (100 %) in those with Costello syndrome was determined. Introducción. Las RASopatías son un conjunto de síndromes fenotípicamente superpuestos causados por mutaciones en genes implicados en la vía RAS/MAPK. La herencia es autosómica dominante, presentan características clínicas comunes, como baja talla, dismorfias craneofaciales, cardiopatía congénita, manifestaciones ectodérmicas y mayor riesgo de cáncer. El diagnóstico molecular es clave. Objetivo. Identificar mutaciones en los genes PTPN11, SOS1, RAF1, BRAF y HRAS, y comparar las principales características clínicas en pacientes con confirmación molecular. Población y métodos. Se estudiaron niños con diagnóstico clínico de RASopatía evaluados entre agosto de 2013 y febrero de 2017. Resultados. Se identificaron mutaciones en el 71 % (87/122) de los pacientes. El estudio molecular confirmó el diagnóstico en el 73 % de los pacientes con síndrome de Noonan. La mutación más prevalente fue c.922A&gt;G (p.Asn308Asp) en el gen PTPN11. Se detectó una variante no descrita en RAF1, c.1467G&gt;C (p.Leu489Phe). Se confirmó el síndrome cardiofaciocutáneo en el 67 % de los casos con mutaciones en el gen BRAF. El síndrome de Costello y el síndrome de Noonan con múltiples lentigos se confirmaron en todos los casos. Conclusión. La confirmación del diagnóstico clínico permitió un diagnóstico diferencial más preciso. Se determinó la prevalencia de las mutaciones en PTPN11 (el 58 %), SOS1 (el 10 %) y RAF1 (el 5 %) en niños con síndrome de Noonan, en PTPN11 (el 100 %) en el síndrome de Noonan con múltiples lentigos, en BRAF (el 67 %) en el síndrome cardiofaciocutáneo y en HRAS (el 100 %) en el síndrome de Costello."	"BRAF Mutations Classes I, II, and III in NSCLC Patients Included in the SLLIP Trial: The Need for a New Pre-Clinical Treatment Rationale. BRAF V600 mutations have been found in 1-2% of non-small-cell lung cancer (NSCLC) patients, with Food and Drug Administration (FDA) approved treatment of dabrafenib plus trametinib and progression free survival (PFS) of 10.9 months. However, 50-80% of BRAF mutations in lung cancer are non-V600, and can be class II, with intermediate to high kinase activity and RAS independence, or class III, with impaired kinase activity, upstream signaling dependence, and consequently, sensitivity to receptor tyrosine kinase (RTK) inhibitors. Plasma cell-free DNA (cfDNA) of 185 newly diagnosed advanced lung adenocarcinoma patients (Spanish Lung Liquid versus Invasive Biopsy Program, SLLIP, NCT03248089) was examined for BRAF and other alterations with a targeted cfDNA next-generation sequencing (NGS) assay (Guardant360®, Guardant Health Inc., CA, USA), and results were correlated with patient outcome. Cell viability with single or combined RAF, MEK, and SHP2 inhibitors was assessed in cell lines with BRAF class I, II, and III mutations. Out of 185 patients, 22 had BRAF alterations (12%) of which seven patients harbored amplifications (32%) and 17 had BRAF mutations (77%). Of the BRAF mutations, four out of 22 (18%) were V600E and 18/22 (82%) were non-V600. In vitro results confirmed sensitivity of class III and resistance of class I and II BRAF mutations, and BRAF wild type cells to SHP2 inhibition. Concomitant MEK or RAF and SHP2 inhibition showed synergistic effects, especially in the class III BRAF-mutant cell line. Our study indicates that the class of the BRAF mutation may have clinical implications and therefore should be defined in the clinical practice and used to guide therapeutic decisions."	"LZTR1: Genotype Expansion in Noonan Syndrome. LZTR1 participates in RAS protein degradation, hence limiting the RAS/MAPK cascade. Pathogenic mutations in LZTR1 (MIM:600574) have been described in a few patients with Noonan syndrome (NS). Three patients with LZTR1 mutations of different genetic transmission and NS phenotype are herein characterized. Case 1 is a 5-year-old boy with NS phenotype. Sanger sequencing of PTPN11 and SOS1 identified no mutations. Whole exome sequencing (WES) detected a heterozygous missense mutation in LZTR1:c.742G&gt;A (p.Gly248Arg) (exon 8, Kelch 4 functional domain). Bioinformatic algorithms predict a deleterious effect of this variant, previously described to cause NS. Case 2 is a 4-year-old boy with NS phenotype. Direct sequencing of 8 genes associated with NS identified no mutations. WES localized a homozygous missense mutation in LZTR1:c.2074T&gt;C (p.Phe692Leu, exon 18). This mutation has not been reported before and is predicted to have a deleterious effect on the protein. Case 3 is an 8-year-old boy who shares NS phenotype with his mother. A multigene panel for RASopathies showed a heterozygous missense variant in LZTR1:c.730T&gt;C (p.Ser244Pro) (exon 8; Kelch 4 functional domain) that was maternally inherited. This variant has not been previously described; however, in silico predictors classify it as deleterious. Familial segregation suggests its pathogenicity. The molecular approach for syndromic phenotypes associated with various genes should involve complete/updated panels or WES rather than gene-by-gene sequencing. RASopathy genetic panels should incorporate LZTR1. Patients with pathogenic mutations in LZTR1 exhibit a characteristic NS gestalt but variable cardiac, height, and neurodevelopment expressions, with recessive inheritance possibly associating with a more severe phenotype."	"Critical individual roles of the BCR and FGFR1 kinase domains in BCR-FGFR1-driven stem cell leukemia/lymphoma syndrome. Constitutive activation of FGFR1, as a result of diverse chromosome translocations, is the hallmark of stem cell leukemia/lymphoma syndrome. The BCR-FGFR1 variant is unique in that the BCR component contributes a serine-threonine kinase (STK) to the N-terminal end of the chimeric FGFR1 kinase. We have deleted the STK domain and mutated the critical Y177 residue and demonstrate that the transforming activity of these mutated genes is reduced compared to the BCR-FGFR1 parental kinase. In addition, we demonstrate that deletion of the FGFR1 tyrosine kinase domain abrogates transforming ability, which is not compensated for by BCR STK activity. Unbiased screening for proteins that are inactivated as a result of loss of the BCR STK identified activated S6 kinase and SHP2 kinase. Genetic and pharmacological inhibition of SHP2 function in SCLL cells expressing BCR-FGFR1 in vitro leads to reduced viability and increased apoptosis. In vivo treatment of SCLL in mice with SHP099 leads to suppression of leukemogenesis, supporting an important role for SHP2 in FGFR1-driven leukemogenesis. In combination with the BGJ398 FGFR1 inhibitor, cell viability in vitro is further suppressed and acts synergistically with SHP099 in vivo suggesting a potential combined targeted therapy option in this subtype of SCLL disease."	"The Phosphatase SHP-2 Activates HIF-1α in Wounds In Vivo by Inhibition of 26S Proteasome Activity. Vascular remodeling and angiogenesis are required to improve the perfusion of ischemic tissues. The hypoxic environment, induced by ischemia, is a potent stimulus for hypoxia inducible factor 1α (HIF-1α) upregulation and activation, which induce pro-angiogenic gene expression. We previously showed that the tyrosine phosphatase SHP-2 drives hypoxia mediated HIF-1α upregulation via inhibition of the proteasomal pathway, resulting in revascularization of wounds in vivo. However, it is still unknown if SHP-2 mediates HIF-1α upregulation by affecting 26S proteasome activity and how the proteasome is regulated upon hypoxia. Using a reporter construct containing the oxygen-dependent degradation (ODD) domain of HIF-1α and a fluorogenic proteasome substrate in combination with SHP-2 mutant constructs, we show that SHP-2 inhibits the 26S proteasome activity in endothelial cells under hypoxic conditions in vitro via Src kinase/p38 mitogen-activated protein kinase (MAPK) signalling. Moreover, the simultaneous expression of constitutively active SHP-2 (E76A) and inactive SHP-2 (CS) in separate hypoxic wounds in the mice dorsal skin fold chamber by localized magnetic nanoparticle-assisted lentiviral transduction showed specific regulation of proteasome activity in vivo. Thus, we identified a new additional mechanism of SHP-2 mediated HIF-1α upregulation and proteasome activity, being functionally important for revascularization of wounds in vivo. SHP-2 may therefore constitute a potential novel therapeutic target for the induction of angiogenesis in ischemic vascular disease."	"A rare association of pathological variant of Alport's syndrome caused by hemizygous 5' splice mutation in intron 10 of COL4A5 gene with metachondromatosis due to heterozygous missense variation in protein tyrosine phosphatase nonreceptor type 11 gene. Metachondromatosis is a rare disorder of autosomal inheritance with incomplete penetrance, which is characterized by formation of osteochondroma and enchondroma, caused by loss of function of the protein tyrosine phosphatase nonreceptor type 11 (PTPN11) gene. Diagnosis is made based on the distribution and orientation of lesions with history of regression of lesions with time and confirmed by genetic mutation of PTPN11 gene. We report a rare case of a 24-year-old male with Alport's syndrome with metachondromatosis due to missense variation in PTPN11 gene."	"Small-Molecule and CRISPR Screening Converge to Reveal Receptor Tyrosine Kinase Dependencies in Pediatric Rhabdoid Tumors. Cancer is often seen as a disease of mutations and chromosomal abnormalities. However, some cancers, including pediatric rhabdoid tumors (RTs), lack recurrent alterations targetable by current drugs and need alternative, informed therapeutic options. To nominate potential targets, we performed a high-throughput small-molecule screen complemented by a genome-scale CRISPR-Cas9 gene-knockout screen in a large number of RT and control cell lines. These approaches converged to reveal several receptor tyrosine kinases (RTKs) as therapeutic targets, with RTK inhibition effective in suppressing RT cell growth in vitro and against a xenograft model in vivo. RT cell lines highly express and activate (phosphorylate) different RTKs, creating dependency without mutation or amplification. Downstream of RTK signaling, we identified PTPN11, encoding the pro-growth signaling protein SHP2, as a shared dependency across all RT cell lines. This study demonstrates that large-scale perturbational screening can uncover vulnerabilities in cancers with &quot;quiet&quot; genomes."	"[PTPN11 and the deafness]. SummaryPTPN11 gene encodes tyrosine phosphatase SHP-2 which locates on chromosome 12(12q24.1), expresses in most embryonic and adult tissues, and plays pivotal roles in cell proliferation, differentiation, survival and cell death. SHP-2 apparently participates in signaling events downstream of RAS-MAPK and JAK/STAT. Diseases related to PTPN11 gene mutations include the Noonan syndrome(NS) and the NS with Multiple Lentigines(NSML). Both NS and NSML contain the phenotypes of deafness, craniofacial anomalies, short stature, congenital heart defects, skin disorders, ophthalmologic abnormalities and cancer predisposition."	"[Case report and diagnosis of Noonan syndrome with multiple lentigines with deafness as its main clinical feature]. Summary Noonan syndrome with multiple lentigines(NSML) is a disorder with syndromic hearing loss. Abnormalities of other systems in NSML have received increasing attention, but hearing loss is rarely concerned. And due to the incomplete phenotype, some patients with NSML maybe missed or maybe confused with other syndromic deafness such as Waardenburg syndrome. Our study will familiarize more otolaryngologists with Leopard syndrome. A 5-year-old boy with bilateral sensorineural hearing loss and numerous symmetrically distributed dark brown macules that had good effect of cochlear implantation was collected in this study. And his father had bilateral sensorineural hearing loss and numerous symmetrically distributed dark brown macules. Waardenburg syndrome was initially diagnosed by clinical phenotype and its molecular etiology was confirmed by gene diagnosis. Waardenburg syndrome-related deafness genes and 131 known deafness genes were not identified by second-generation sequencing. Whole-exon sequencing was performed for 4 individuals in the family and the results were confirmed by Sanger sequencing. This study confirmed the diagnosis by identifying a disease-causing mutation in the PTPN11 gene, which was a heterozygous missense mutation at p. Tyr279Cys(c. 836A&gt;G). The mutation co-segregated with hearing loss in the family. Our results demonstrated that hearing loss in this family was caused by heterozygous mutations in PTPN11. These cases will familiarize more otolaryngologists with NSML, and they emphasize the importance of considering NSML as a possible cause of hearing problems."	"Cancer Panel Assay for Precision Oncology Clinic: Results from a 1-Year Study. Next-generation sequencing (NGS)-based cancer panel tests are actively being applied in the clinic for precision oncology. Given the importance of NGS panel tests in the palliative clinical setting, it is critical to understand success rates, factors responsible for test failures, and the incidence of clinically meaningful genetic alterations. We performed NGS cancer panel test with tumors from the stomach (n = 234), colorectum (n = 196), and rare tumors (n = 105) from 535 recurrent or metastatic cancer patients for 1 year. Sequencing was successful in 483 (95.3%) archival tumor samples to find single nucleotide variant (SNV), copy number alteration (CNA), and fusion. NGS testing was unsuccessful in 52 (9.7%) specimens due to inadequate tissue (n = 28), low tumor volume (n = 19), and poor quality of nucleic acid (n = 5). According to the Tier system, variants were classified as Tier IA, 0.8%; IIC, 10.3%; IID, 2.0%; III, 66.7% for gastric: Tier IA, 3.6%; IIC, 11.6% for colorectal: Tier IA, 1.6%; IIC, 13.5%; IID, 0.5%; III, 70.8% for melanoma, and Tier IA, 9.1%; IIC, 1.8%; IID, 1.0%; III, 66.4% for GIST. In total, 30.8% of 483 sequenced cases harbored clinically meaningful variants. In Tier IA, KRAS and ERBB2 were the most commonly altered genes. Interestingly, we identified CD274 (PD-L1) amplification, PTPN11 (SHP2) SNV, TPM3-NTRK1 fusion, and FGFR3-TACC3 fusion as a rare (&lt;2%) alteration having therapeutic targets. In conclusion, although small biopsy samples constitute half of cases, informative NGS results were successfully reported in &gt;90% of archival tissue samples, and 30.8% of them harbored clinically meaningful variants."	"Genomic profiling of primary histiocytic sarcoma reveals two molecular subgroups. Histiocytic sarcoma is a rare malignant neoplasm that may occur de novo or in the context of a previous hematologic malignancy or mediastinal germ cell tumor. Here, we performed whole exome sequencing and RNA-sequencing (RNA-Seq) on 21 archival cases of primary histiocytic sarcoma. We identified a high number of genetic alterations within the RAS/RAF/MAPK pathway in 21 of 21 cases, with alterations in NF1 (6 of 21), MAP2K1 (5 of 21), PTPN11 (4 of 21), BRAF (4 of 21), KRAS (4 of 21), NRAS (1 of 21), and LZTR1 (1 of 21), including single cases with homozygous deletion of NF1, high-level amplification of PTPN11, and a novel TTYH3-BRAF fusion. Concurrent NF1 and PTPN11 mutations were present in 3 of 21 cases, and 5 of 7 cases with alterations in NF1 and/or PTPN11 had disease involving the gastrointestinal tract. Following unsupervised clustering of gene expression data, cases with NF1 and/or PTPN11 abnormalities formed a distinct tumor subgroup. A subset of NF1/PTPN11 wild-type cases had frequent mutations in B-cell lymphoma associated genes and/or clonal IG gene rearrangements. Our findings expand the current understanding of the molecular pathogenesis of this rare tumor and suggest the existence of a distinct subtype of primary histiocytic sarcoma characterized by NF1/PTPN11 alterations with predilection for the gastrointestinal tract."	"Genome-wide association scan for QTL and their positional candidate genes associated with internal organ traits in chickens. Poultry breeding programs have been focused on improvement of growth and carcass traits, however, this has resulted in correlated changes in internal organ weights and increased incidence of metabolic disorders. These disorders can affect feed efficiency or even cause death. We used a high density SNP array (600 K, Affymetrix) to estimate genomic heritability, perform genome-wide association analysis, and identify genomic regions and positional candidate genes (PCGs) associated with internal organ traits in an F2 chicken population. We integrated knowledge of haplotype blocks, selection signature regions and sequencing data to refine the list of PCGs. Estimated genomic heritability for internal organ traits in chickens ranged from low (LUNGWT, 0.06) to high (GIZZWT, 0.45). A total of 20 unique 1 Mb windows identified on GGA1, 2, 4, 7, 12, 15, 18, 19, 21, 27 and 28 were significantly associated with intestine length, and weights or percentages of liver, gizzard or lungs. Within these windows, 14 PCGs were identified based on their biological functions: TNFSF11, GTF2F2, SPERT, KCTD4, HTR2A, RB1, PCDH7, LCORL, LDB2, NR4A2, GPD2, PTPN11, ITGB4 and SLC6A4. From those genes, two were located within haplotype blocks and three overlapped with selection signature regions. A total of 13,748 annotated sequence SNPs were in the 14 PCGs, including 156 SNPs in coding regions (124 synonymous, 26 non-synonymous, and 6 splice variants). Seven deleterious SNPs were identified in TNFSF11, NR4A2 or ITGB4 genes. The results from this study provide novel insights to understand the genetic architecture of internal organ traits in chickens. The QTL detection performed using a high density SNP array covered the whole genome allowing the discovery of novel QTL associated with organ traits. We identified PCGs within the QTL involved in biological processes that may regulate internal organ growth and development. Potential functional genetic variations were identified generating crucial information that, after validation, might be used in poultry breeding programs to reduce the occurrence of metabolic disorders."	"Allelic Imbalance of Recurrently Mutated Genes in Acute Myeloid Leukaemia. The patho-mechanism of somatic driver mutations in cancer usually involves transcription, but the proportion of mutations and wild-type alleles transcribed from DNA to RNA is largely unknown. We systematically compared the variant allele frequencies of recurrently mutated genes in DNA and RNA sequencing data of 246 acute myeloid leukaemia (AML) patients. We observed that 95% of all detected variants were transcribed while the rest were not detectable in RNA sequencing with a minimum read-depth cut-off (10x). Our analysis focusing on 11 genes harbouring recurring mutations demonstrated allelic imbalance (AI) in most patients. GATA2, RUNX1, TET2, SRSF2, IDH2, PTPN11, WT1, NPM1 and CEBPA showed significant AIs. While the effect size was small in general, GATA2 exhibited the largest allelic imbalance. By pooling heterogeneous data from three independent AML cohorts with paired DNA and RNA sequencing (N = 253), we could validate the preferential transcription of GATA2-mutated alleles. Differential expression analysis of the genes with significant AI showed no significant differential gene and isoform expression for the mutated genes, between mutated and wild-type patients. In conclusion, our analyses identified AI in nine out of eleven recurrently mutated genes. AI might be a common phenomenon in AML which potentially contributes to leukaemogenesis."	"Response to trametinib of histiocytosis with an activating PTPN11 mutation. NA"	"SOS1 mutations in Noonan syndrome: Cardiomyopathies and not only congenital heart defects! Report of six patients including two novel variants and literature review. Noonan syndrome (NS) is caused by mutations in more than 10 genes, mainly PTPN11, SOS1, RAF1, and RIT1. Congenital heart defects and cardiomyopathy (CMP) are associated with significant morbidity and mortality in NS. Although hypertrophic CMP has &quot;classically&quot; been reported in association to RAF1, RIT1, and PTPN11 variants, SOS1 appears to be poorly related to CMP. Patients with NS attending our Center from January 2013 to June 2018 were eligible for inclusion if they carried SOS1 variants and presented with-or developed-CMP. Literature review describing the co-existence of SOS1 mutation and CMP was also performed. We identified six patients with SOS1 variants and CMP (male to female ratio 2:1) including two novel variants. CMP spectrum encompassed: (a) dilated CMP, (b) nonobstructive hypertrophic CMPs, and (c) obstructive hypertrophic CMPs. Survival is 100%. Literature review included 16 SOS1 mutated in CMP. CMP, mainly hypertrophic, has been often reported in association to RAF1, RIT1, and PTPN11 variants. Differently from previous reports, due to the frequent association of SOS1 variants and CMP in our single center experience, we suggest potential underestimated proportion of SOS1 in pediatric CMPs."	"Teasing apart the multiple roles of Shp2 (Ptpn11) in spermatogenesis. NA"	"Canine histiocytic sarcoma cell lines with SHP2 p.Glu76Gln or p.Glu76Ala mutations are sensitive to allosteric SHP2 inhibitor SHP099. Some canine cases of histiocytic sarcoma (HS) carry an activating mutation in the src homology two domain-containing phosphatase 2 (SHP2) encoded by PTPN11. SHP099 is an allosteric inhibitor of SHP2 that stabilizes SHP2 in a folded, auto-inhibited conformation. Here, we examined the expression and mutation status of SHP2 in five canine HS cell lines and evaluated the growth inhibitory properties of SHP099 against these cell lines. All five of the canine HS cell lines expressed SHP2, with three of the lines each harbouring a distinct mutation in PTPN11/SHP2 (p.Glu76Gln, p.Glu76Ala and p.Gly503Val). In silico analysis suggested that p.Glu76Gln and p.Glu76Ala, but not p.Gly503Val, promote shifting of the SHP2 conformation from folded to open-active state. SHP099 potently suppressed the growth of two of the mutant cell lines (harbouring SHP2 p.Glu76Gln or p.Glu76Ala) but not that of the other three cell lines. In addition, SHP099 suppressed ERK activation in the cell line harbouring the SHP2 p.Glu76Ala mutation. The SHP2 p.Glu76Gln and p.Glu76Ala mutations are considered to be activating mutations, and the signal from SHP2 p.Glu76Ala is inferred to be transduced primarily via the ERK pathway. Moreover, SHP099-sensitive HS cells, including those with SHP2 p.Glu76Gln or p.Glu76Ala mutations, may depend on these mutations for growth. Therefore, targeting cells harbouring SHP2 p.Glu76Gln and p.Glu76Ala with SHP099 may be an approach for the treatment of canine HS."	"Nilotinib interferes with cell cycle, ABC transporters and JAK-STAT signaling pathway in CD34+/lin- cells of patients with chronic phase chronic myeloid leukemia after 12 months of treatment. Chronic myeloid leukemia (CML) is characterized by the constitutive tyrosine kinase activity of the oncoprotein BCR-ABL1 in myeloid progenitor cells that activates multiple signal transduction pathways leading to the leukemic phenotype. The tyrosine-kinase inhibitor (TKI) nilotinib inhibits the tyrosine kinase activity of BCR-ABL1 in CML patients. Despite the success of nilotinib treatment in patients with chronic-phase (CP) CML, a population of Philadelphia-positive (Ph+) quiescent stem cells escapes the drug activity and can lead to drug resistance. The molecular mechanism by which these quiescent cells remain insensitive is poorly understood. The aim of this study was to compare the gene expression profiling (GEP) of bone marrow (BM) CD34+/lin- cells from CP-CML patients at diagnosis and after 12 months of nilotinib treatment by microarray, in order to identify gene expression changes and the dysregulation of pathways due to nilotinib action. We selected BM CD34+/lin- cells from 78 CP-CML patients at diagnosis and after 12 months of first-line nilotinib therapy and microarray analysis was performed. GEP bioinformatic analyses identified 2,959 differently expressed probes and functional clustering determined some significantly enriched pathways between diagnosis and 12 months of nilotinib treatment. Among these pathways, we observed the under expression of 26 genes encoding proteins belonging to the cell cycle after 12 months of nilotinib treatment which led to the up-regulation of chromosome replication, cell proliferation, DNA replication, and DNA damage checkpoint at diagnosis. We demonstrated the under expression of the ATP-binding cassette (ABC) transporters ABCC4, ABCC5, and ABCD3 encoding proteins which pumped drugs out of the cells after 12 months of nilotinib. Moreover, GEP data demonstrated the deregulation of genes involved in the JAK-STAT signaling pathway. The down-regulation of JAK2, IL7, STAM, PIK3CA, PTPN11, RAF1, and SOS1 key genes after 12 months of nilotinib could demonstrate the up-regulation of cell cycle, proliferation and differentiation via MAPK and PI3K-AKT signaling pathways at diagnosis."	"Gas6 is a reciprocal regulator of mitophagy during mammalian oocyte maturation. Previously, we found that the silencing of growth arrest-specific gene 6 (Gas6) expression in oocytes impairs cytoplasmic maturation through mitochondrial overactivation with concurrent failure of pronuclear formation after fertilization. In this study, we report that Gas6 regulates mitophagy and safeguards mitochondrial activity by regulating mitophagy-related genes essential to the complete competency of oocytes. Based on RNA-Seq and RT-PCR analysis, in Gas6-silenced MII oocytes, expressions of mitophagy-related genes were decreased in Gas6-silenced MII oocytes, while mitochondrial proteins and Ptpn11, the downstream target of Gas6, was increased. Interestingly, GAS6 depletion induced remarkable MTOR activation. Gas6-depleted MII oocytes exhibited mitochondrial accumulation and aggregation caused by mitophagy inhibition. Gas6-depleted MII oocytes had a markedly lower mtDNA copy number. Rapamycin treatment rescued mitophagy, blocked the increase in MTOR and phosphorylated-MTOR, and increased the mitophagy-related gene expression in Gas6-depleted MII oocytes. After treatment with Mdivi-1, a mitochondrial division/mitophagy inhibitor, all oocytes matured and these MII oocytes showed mitochondrial accumulation but reduced Gas6 expression and failure of fertilization, showing phenomena very similar to the direct targeting of Gas6 by RNAi. Taken together, we conclude that the Gas6 signaling plays a crucial role in control of oocytes cytoplasmic maturation by modulating the dynamics and activity of oocyte mitochondria."	"[Characterization of mutational pattern of patients with core-binding factor acute myeloid leukemia]. To characterize the mutational profile of patients with core-binding factor acute myeloid leukemia (CBF-AML). A total of 81 acute myeloid leukemia patients were recruited, which included 36 cases of CBF-AML and 45 cases of cytogenetically normal acute myeloid leukemia (CN-AML) . Mutations of FLT3-ITD, FLT3-TKD, NPM1, c-KIT, NRAS, KRAS, TET2, IDH1/2, RUNX1, DNMT3A, GATA2, ASjXL1, TP53, PTPN11, JAK2V617F, SETBP1 and CEBPA genes were simultaneously detected by DNA-based PCR and Sanger sequencing. Over all, mutations were detected in 68 patients (83.9%), with the most common ones including double CEBPA mutations (n=17), followed by NPM1 (n=15), c-KIT (n=11), NRAS (n=10), TET2 (n=9), FLT3-TKD (n=9), FLT3-ITD (n=8), IDH1 (n=7), RUNX1 (n=7), KRAS (n=7), DNMT3A (n=6), IDH2 (n=4), and GATA2 (n=4) mutations. AML1-ETO and CBFβ-MYH11 fusions were present in 21 and 15 patients, respectively. Coexistence of ≥2 mutations was more common in CN-AML comparing with CBF-AML. The mutation rate of NPM1, FLT3-ITD, DNMT3A, IDH1 and CEBPA double mutations were higher in patients with CN-AML. NRAS, c-KIT and KRAS mutations were identified more frequently in patients with CBF-AML (P&lt;0.05). Based on the function, aberration of genes involved in DNA methylation, NPM1 proteins and transcription predominated in CN-AML, while tyrosine kinase receptor signaling and RAS pathways have predominated in CBF-AML. The genomic landscape of CBF-AML patients has differed from that of CN-AML patients. Synergy of fusion genes with particular mutations may impact the clinical phenotype and prognosis of patients."	"Structure based design of selective SHP2 inhibitors by De novo design, synthesis and biological evaluation. SHP2 phosphatase, encoded by the PTPN11 gene, is a non-receptor PTP, which plays an important role in growth factor, cytokine, integrin, hormone signaling pathways, and regulates cellular responses, such as proliferation, differentiation, adhesion migration and apoptosis. Many studies have reported that upregulation of SHP2 expression is closely related to human cancer, such as breast cancer, liver cancer and gastric cancer. Hence, SHP2 has become a promising target for cancer immunotherapy. In this paper, we reported the identification of compound 1 as SHP2 inhibitor. Fragment-based ligand design, De novo design, ADMET and Molecular docking were performed to explore potential selective SHP2 allosteric inhibitors based on SHP836. The results of docking studies indicated that the selected compounds had higher selective SHP2 inhibition than existing inhibitors. Compound 1 was found to have a novel selectivity against SHP2 with an in vitro enzyme activity IC50 value of 9.97 μM. Fluorescence titration experiment confirmed that compound 1 directly bound to SHP2. Furthermore, the results of binding free energies demonstrated that electrostatic energy was the primary factor in elucidating the mechanism of SHP2 inhibition. Dynamic cross correlation studies also supported the results of docking and molecular dynamics simulation. This series of analyses provided important structural features for designing new selective SHP2 inhibitors as potential drugs and promising candidates for pre-clinical pharmacological investigations."	"Genotype-phenotype correlation analysis in Japanese patients with Noonan syndrome. Noonan syndrome (NS) is a heterogeneous disorder with multiple congenital malformations. Recent advances in molecular and genetic approaches have identified a number of responsible genes for NS, most of which are components of the RAS/MAPK signaling pathway, and genotype-phenotype correlation analyses have been extensively performed; however, analysis of Japanese NS patients is limited. Here, we evaluated clinical characteristics in genetically diagnosed NS patients and their relationships to genotypes. A total of 48 clinically diagnosed NS were included, and responsible mutations were identified in 39 patients (81.3%) with PTPN11 mutations being the most prevalent followed by SOS1 mutations. Cardiac anomalies including pulmonary stenosis and hypertrophic cardiomyopathy were most prevalent (87.2%), and the prevalence of hypertrophic cardiomyopathy was greater in patients without PTPN11 mutations than in those with PTPN11 mutations. Short stature was the second-most prevalent (69.2%) characteristic, and present height SD score was significantly associated with height SD score at 1 year old. Patients with SOS1 mutations had greater present height SD score and better growth during infancy. These findings suggest the presence of a genotype-phenotype correlation in Japanese patients with NS, which enables us to use genetic information to predict the clinical course and may allow for genotype-based medical interventions."	"Identification of chebulinic acid as a dual targeting inhibitor of protein tyrosine phosphatases relevant to insulin resistance. Natural products as antidiabetic agents have been shown to stimulate insulin signaling via the inhibition of the protein tyrosine phosphatases relevant to insulin resistance. Previously, we have identified PTPN9 and DUSP9 as potential antidiabetic targets and a multi-targeting natural product thereof. In this study, knockdown of PTPN11 increased AMPK phosphorylation in differentiated C2C12 muscle cells by 3.8 fold, indicating that PTPN11 could be an antidiabetic target. Screening of a library of 658 natural products against PTPN9, DUSP9, or PTPN11 identified chebulinic acid (CA) as a strong allosteric inhibitor with a slow cooperative binding to PTPN9 (IC50 = 34 nM) and PTPN11 (IC50 = 37 nM), suggesting that it would be a potential antidiabetic candidate. Furthermore, CA stimulated glucose uptake and resulted in increased AMP-activated protein kinase (AMPK) phosphorylation. Taken together, we demonstrated that CA increased glucose uptake as a dual inhibitor of PTPN9 and PTPN11 through activation of the AMPK signaling pathway. These results strongly suggest that CA could be used as a potential therapeutic candidate for the treatment of type 2 diabetes."	"Pediatric patients with RASopathy-associated hypertrophic cardiomyopathy: the multifaceted consequences of PTPN11 mutations. The concomitant occurrence of hypertrophic cardiomyopathy and congenital heart defect in patients with RASopathies has previously been reported as associated to a worse clinical outcome, particularly closed to cardiac surgery. Different mechanisms of disease have been demonstrated to be associated with the two classes of PTPN11 mutations underlying Noonan syndrome and Noonan syndrome with multiple lentigines (also known as LEOPARD syndrome). Although differential diagnosis between these two syndromes could be difficult, particularly in the first age of life, we underline the relevance in discriminating these two disorders in terms of affected signaling pathway to allow an effective targeted pharmacological treatment."	"Activating Mutations in PTPN11 and KRAS in Canine Histiocytic Sarcomas. While the genetic contributions to the predisposition of Bernese mountain dogs (BMDs) to histiocytic sarcoma (HS) remains unclear, some insights into key genetic drivers have been gained. Our group recently reported a mutation in the PTPN11 gene (E76K). We have now identified a second missense mutation in PTPN11 (G503V), and a mutation in KRAS (Q61H) present in HS cell lines. These mutations are associated with malignancies in humans, and known to be gain-of-function mutations that result in activation of the mitogen-activated protein kinase (MAPK) pathway. The goal of the present study was to evaluate the prevalence of these mutations in a large sample of HS cases from BMDs and golden retrievers, and in lymphoma cases, from a cohort of BMDs. Mutations in PTPN11 were present in HS in 41/96 (43%) BMDs, and in 3/13 (23%) golden retrievers. PTPN11 mutations E76K and G503V did not coexist in the same neoplasm. The KRAS mutation was much less frequent, with a prevalence of 3.1% (3/96). We did not identify either PTPN11 nor KRAS mutations in any of the lymphoma samples. These results point out the potential relevance of PTPN11 and KRAS mutations as activators of the oncogenic MAPK pathway for canine HS, particularly in BMDs."	"Cardiac transplantation in children with Noonan syndrome. NS and related RAS/MAPK pathway (RASopathy) disorders are the leading genetic cause of HCM presenting in infancy. HCM is a major cause of morbidity and mortality in children with Noonan spectrum disorders, especially in the first year of life. Previously, there have been only isolated reports of heart transplantation as a treatment for heart failure in NS. We report on 18 patients with NS disorders who underwent heart transplantation at seven US pediatric heart transplant centers. All patients carried a NS diagnosis: 15 were diagnosed with NS and three with NSML. Sixteen of eighteen patients had comprehensive molecular genetic testing for RAS pathway mutations, with 15 having confirmed pathogenic mutations in PTPN11, RAF1, and RIT1 genes. Medical aspects of transplantation are reported as well as NS-specific medical issues. Twelve of eighteen patients described in this series were surviving at the time of data collection. Three patients died following transplantation prior to discharge from the hospital, and another three died post-discharge. Heart transplantation in NS may be a more frequent occurrence than is evident from the literature or registry data. A mortality rate of 33% is consistent with previous reports of patients with HCM transplanted in infancy and early childhood. Specific considerations may be important in evaluation of this population for heart transplant, including a potentially increased risk for malignancies as well as lymphatic, bleeding, and coagulopathy complications."	"Investigating the reason for loss-of-function of Src homology 2 domain-containing protein tyrosine phosphatase 2 (SHP2) caused by Y279C mutation through molecular dynamics simulation. Noonan syndrome with multiple lentigines (NSML), formerly known as LEOPARD syndrome (LS), is an autosomal dominant inherited multisystemic disorder. Most patients involve mutation in SHP2 encoded by tyrosine-protein phosphatase non-receptor type 11 (PTPN11) gene. Studies have shown that NSML-associated Y279C mutation exhibited the reduced phosphatase activity, leading to loss-of-function (LOF) of SHP2. However, the effect of the Y279C mutation on the SHP2 at the molecular level is unclear. In this study, molecular dynamics simulations of SHP2 wild-type (SHP2<sup>WT</sup>) and Y279C mutant (SHP2<sup>Y279C</sup>) were performed to investigate the structural differences in proteins after Y279C mutation and to find out the reason for loss-of-function of SHP2. Through a series of post-dynamic analyses, it was found that the protein occupied a smaller phase space after Y279C mutation, showing reduced flexibility. Specifically, due to the mutation of Y279C, the secondary structures of these two regions (residues Lys70-Ala72 and Gly462-Arg465) were significantly transformed from Turn to α-helix and β-strand. Furthermore, by calculating the residue interaction network, hydrogen bond occupancy and binding free energy, it was further revealed that the conformational differences between SHP2<sup>WT</sup> and SHP2<sup>Y279C</sup> systems were mainly caused by the differences in the interaction between Arg465-Phe469, Ile463-Gly467, Cys279-Lys70, Cys459-Ala72, Gly464-Phe71, Phe71-Ile463, Ile463-Ala505 and Arg465-Glu361. Consequently, this finding is expected to provide a new insight into the reason for loss-of-function of SHP2 caused by Y279C mutation.Communicated by Ramaswamy H. Sarma."	"Neurodevelopmental Aspects of RASopathies. RAS gene mutations are frequently found in one third of human cancers. Affecting approximately 1 in 1,000 newborns, germline and somatic gain-of-function mutations in the components of RAS/mitogen-activated protein kinase (RAS/MAPK) pathway has been shown to cause developmental disorders, known as RASopathies. Since RAS-MAPK pathway plays essential roles in proliferation, differentiation and migration involving developmental processes, individuals with RASopathies show abnormalities in various organ systems including central nervous system. The frequently seen neurological defects are developmental delay, macrocephaly, seizures, neurocognitive deficits, and structural malformations. Some of the defects stemmed from dysregulation of molecular and cellular processes affecting early neurodevelopmental processes. In this review, we will discuss the implications of RAS-MAPK pathway components in neurodevelopmental processes and pathogenesis of RASopathies."	"Gain-of-Function SHP2 E76Q Mutant Rescuing Autoinhibition Mechanism Associated with Juvenile Myelomonocytic Leukemia. Juvenile myelomonocytic leukemia (JMML) is an invasive myeloproliferative neoplasm and is a childhood disease with very high clinical lethality. The SHP2 is encoded by the PTPN11 gene, which is a nonreceptor (pY)-phosphatase and mutation causes JMML. The structural hierarchy of SHP2 includes protein tyrosine phosphatase domain (PTP) and Src-homology 2 domain (N-SH2 and C-SH2). Somatic mutation (E76Q) in the interface of SH2-PTP domain is the most commonly identified mutation found in up to 35% of patients with JMML. The mechanism of this mutant associated with JMML is poorly understood. Here, molecular dynamics simulation was performed on wild-type and mutant (E76Q) of SHP2 to explore the precise impact of gain-of-function on PTP's activity. Consequently, such impact rescues the SHP2 protein from autoinhibition state through losing the interface interactions of Q256/F7 and S502/Q76 or weakening interactions of Q256/R4, Q510/G60, and Q506/A72 between N-SH2 and PTP domains. The consequences of these interactions further relieve the D'E loop away from the PTP catalytic site. The following study would provide a mechanistic insight for better understanding of how individual SHP2 mutations alter the PTP's activity at the atomic level."	"Targeting PDGFRα-activated glioblastoma through specific inhibition of SHP-2-mediated signaling. Glioblastoma (GBM) is the most malignant primary brain tumor, with dismal median survival. Treatment of GBM is particularly challenging given the intrinsic resistance to chemotherapy and difficulty of drugs to reach the tumor beds due to the blood-brain barrier. Here, we examined the efficacy of SHP099, a potent, selective, and oral SHP-2 inhibitor for treating GBM with activated platelet derived growth factor receptor alpha (PDGFRα) signaling. The effects of SHP099 on cell survival of neural progenitor cells (NPCs), GBM cell lines, and patient-derived glioma stem-like cells (GSCs) were evaluated. Brain and plasma pharmacokinetics of SHP099 and its ability to inhibit SHP-2 signaling were assessed. SHP099 efficacy as a single agent or in combination with temozolomide (TMZ) was assessed using transformed mouse astrocyte and GSC orthotopic xenograft models. Activated PDGFRα signaling in established GBM cells, GSCs, and transformed mouse astrocytes was significantly inhibited by SHP099 compared with NPCs in vitro and in vivo through targeting SHP-2-stimulated activation of extracellular signal-regulated protein kinases 1 and 2 in GBM. SHP099 treatment specifically inhibited expression of JUN, a downstream effector of PDGFR signaling, thereby attenuating cell cycle progression in GBM cells with activated PDGFRα. Moreover, SHP099 accumulated at efficacious concentrations in the brain and effectively inhibited orthotopic GBM tumor xenograft growth. SHP099 exhibited antitumor activity either as a single agent or in combination with TMZ and provided significant survival benefits for GBM tumor xenograft-bearing animals. Our data demonstrate the utility and feasibility of SHP099 as a potential therapeutic option for improving the clinical treatment of GBM in combination with TMZ."	"Seven Co-Occurring Mutations in a Patient with Acute Myeloid Leukemia Identified by Next-Generation Sequencing. Most cases of acute myeloid leukemia (AML) have multiple driver mutations. We report a rare AML case with seven mutations and an aggressive clinical course. A 69-year-old woman presented with nausea and vomiting. A bone marrow smear showed increased mye-loblasts, promonocytes, and monocytes. Immunophenotyping identified myeloid and monocytic markers. Fusion transcripts were not detected. Massive parallel sequencing showed seven variants in DNMT3A, FLT3, KRAS, NPM1, PTPN11, and TET2. Five days after beginning chemotherapy, the patient expired. These findings may provide insight into the link between multiple mutations and poor prognosis."	"Essential role of PTPN11 mutation in enhanced haematopoietic differentiation potential of induced pluripotent stem cells of juvenile myelomonocytic leukaemia. We established mutated and non-mutated induced pluripotent stem cell (iPSC) clones from a patient with PTPN11 (c.226G&gt;A)-mutated juvenile myelomonocytic leukaemia (JMML). Both types of iPSCs fulfilled the quality criteria. Mutated iPSC colonies generated significantly more CD34<sup>+</sup> and CD34<sup>+</sup> CD45<sup>+</sup> cells compared to non-mutated iPSC colonies in a culture coated with irradiated AGM-S3 cells to which four growth factors were added sequentially or simultaneously. The haematopoietic differentiation potential of non-mutated JMML iPSC colonies was similar to or lower than that of iPSC colonies from a healthy individual. The PTPN11 mutation coexisted with the OSBP2 c.389C&gt;T mutation. Zinc-finger nuclease-mediated homologous recombination revealed that correction of PTPN11 mutation in iPSCs with PTPN11 and OSBP2 mutations resulted in reduced CD34<sup>+</sup> cell generation to a level similar to that obtained with JMML iPSC colonies with the wild-type of both genes, and interestingly, to that obtained with normal iPSC colonies. Transduction of the PTPN11 mutation into JMML iPSCs with the wild-type of both genes increased CD34<sup>+</sup> cell production to a level comparable to that obtained with JMML iPSC colonies harbouring the two genetic mutations. Thus, PTPN11 mutation may be the most essential abnormality to confer an aberrant haematopoietic differentiation potential in this disorder."	"Natural history and cell of origin of TCF3-ZNF384 and PTPN11 mutations in monozygotic twins with concordant BCP-ALL. NA"	"Molecular and phenotypic spectrum of Noonan syndrome in Chinese patients. Noonan syndrome (NS) is a common autosomal dominant/recessive disorder. No large-scale study has been conducted on NS in China, which is the most populous country in the world. Next-generation sequencing (NGS) was used to identify pathogenic variants in patients that exhibited NS-related phenotypes. We assessed the facial features and clinical manifestations of patients with pathogenic or likely pathogenic variants in the RAS-MAPK signaling pathway. Gene-related Chinese NS facial features were described using artificial intelligence (AI).NGS identified pathogenic variants in 103 Chinese patients in eight NS-related genes: PTPN11 (48.5%), SOS1 (12.6%), SHOC2 (11.7%), KRAS (9.71%), RAF1 (7.77%), RIT1 (6.8%), CBL (0.97%), NRAS (0.97%), and LZTR1 (0.97%). Gene-related facial representations showed that each gene was associated with different facial details. Eight novel pathogenic variants were detected and clinical features because of specific genetic variants were reported, including hearing loss, cancer risk due to a PTPN11 pathogenic variant, and ubiquitous abnormal intracranial structure due to SHOC2 pathogenic variants. NGS facilitates the diagnosis of NS, especially for patients with mild/moderate and atypical symptoms. Our study describes the genotypic and phenotypic spectra of NS in China, providing new insights into distinctive clinical features due to specific pathogenic variants."	"The role of tyrosine phosphatase Shp2 in spermatogonial differentiation and spermatocyte meiosis. The transition from spermatogonia to spermatocytes and the initiation of meiosis are key steps in spermatogenesis and are precisely regulated by a plethora of proteins. However, the underlying molecular mechanism remains largely unknown. Here, we report that Src homology domain tyrosine phosphatase 2 (Shp2; encoded by the protein tyrosine phosphatase, nonreceptor type 11 [Ptpn11] gene) is abundant in spermatogonia but markedly decreases in meiotic spermatocytes. Conditional knockout of Shp2 in spermatogonia in mice using stimulated by retinoic acid gene 8 (Stra8)-cre enhanced spermatogonial differentiation and disturbed the meiotic process. Depletion of Shp2 in spermatogonia caused many meiotic spermatocytes to die; moreover, the surviving spermatocytes reached the leptotene stage early at postnatal day 9 (PN9) and the pachytene stage at PN11-13. In preleptotene spermatocytes, Shp2 deletion disrupted the expression of meiotic genes, such as disrupted meiotic cDNA 1 (Dmc1), DNA repair recombinase rad51 (Rad51), and structural maintenance of chromosome 3 (Smc3), and these deficiencies interrupted spermatocyte meiosis. In GC-1 cells cultured in vitro, Shp2 knockdown suppressed the retinoic acid (RA)-induced phosphorylation of extracellular-regulated protein kinase (Erk) and protein kinase B (Akt/PKB) and the expression of target genes such as synaptonemal complex protein 3 (Sycp3) and Dmc1. Together, these data suggest that Shp2 plays a crucial role in spermatogenesis by governing the transition from spermatogonia to spermatocytes and by mediating meiotic progression through regulating gene transcription, thus providing a potential treatment target for male infertility."	"Tau interacts with SHP2 in neuronal systems and in Alzheimer's disease brains. Microtubule-associated protein tau, an integral component of neurofibrillary tangles, interacts with a variety of signaling molecules. Previously, our laboratory reported that nerve growth factor (NGF)-induced MAPK activation in a PC12-derived cell line was potentiated by tau, with phosphorylation at T231 being required. Therefore, we sought to identify a signaling molecule involved in the NGF-induced Ras-MAPK pathway that interacted with phospho-T231-tau. Here, we report that the protein tyrosine phosphatase SHP2 (also known as PTPN11) interacted with tau, with phospho-T231 significantly enhancing the interaction. By using proximity ligation assays, we found that endogenous tau-SHP2 complexes were present in neuronal cells, where the number of tau-SHP2 complexes significantly increased when the cells were treated with NGF, with phosphorylation at T231 being required for the increase. The interaction did not require microtubule association, and an association between tau and activated SHP2 was also found. Tau-SHP2 complexes were also found in both primary mouse hippocampal cultures and adult mouse brain. Finally, SHP2 levels were upregulated in samples from patients with mild and severe Alzheimer's disease (AD), and the level of tau-SHP2 complexes were increased in AD patient samples. These findings strongly suggest a role for the tau-SHP2 interaction in NGF-stimulated neuronal development and in AD.This article has an associated First Person interview with the first author of the paper."	"Pathogenic variants of DYNC2H1, KIAA0556, and PTPN11 associated with hypothalamic hamartoma. Intensive genetic analysis was performed to reveal comprehensive molecular insights into hypothalamic hamartoma (HH). Thirty-eight individuals with HH were investigated by whole exome sequencing, target capture-based deep sequencing, or single nucleotide polymorphism (SNP) array using DNA extracted from blood leukocytes or HH samples. We identified a germline variant of KIAA0556, which encodes a ciliary protein, and 2 somatic variants of PTPN11, which forms part of the RAS/mitogen-activated protein kinase (MAPK) pathway, as well as variants in known genes associated with HH. An SNP array identified (among 3 patients) one germline copy-neutral loss of heterozygosity (cnLOH) at 6p22.3-p21.31 and 2 somatic cnLOH; one at 11q12.2-q25 that included DYNC2H1, which encodes a ciliary motor protein, and the other at 17p13.3-p11.2. A germline heterozygous variant and an identical somatic variant of DYNC2H1 arising from cnLOH at 11q12.2-q25 were confirmed in one patient (whose HH tissue, therefore, contains biallelic variants of DYNC2H1). Furthermore, a combination of a germline and a somatic DYNC2H1 variant was detected in another patient. Overall, our cohort identified germline/somatic alterations in 34% (13/38) of patients with HH. Disruption of the Shh signaling pathway associated with cilia or the RAS/MAPK pathway may lead to the development of HH."	"Quantitative Interactomics in Primary T Cells Provides a Rationale for Concomitant PD-1 and BTLA Coinhibitor Blockade in Cancer Immunotherapy. Deciphering how TCR signals are modulated by coinhibitory receptors is of fundamental and clinical interest. Using quantitative interactomics, we define the composition and dynamics of the PD-1 and BTLA coinhibitory signalosomes in primary effector T cells and at the T cell-antigen-presenting cell interface. We also solve the existing controversy regarding the role of the SHP-1 and SHP-2 protein-tyrosine phosphatases in mediating PD-1 coinhibition. PD-1 predominantly recruits SHP-2, but when absent, it recruits SHP-1 and remains functional. In contrast, BTLA predominantly recruits SHP-1 and to a lesser extent SHP-2. By separately analyzing the PD-1-SHP-1 and PD-1-SHP-2 complexes, we show that both dampen the TCR and CD28 signaling pathways equally. Therefore, our study illustrates how comparison of coinhibitory receptor signaling via quantitative interactomics in primary T cells unveils their extent of redundancy and provides a rationale for designing combinations of blocking antibodies in cancer immunotherapy on the basis of undisputed modes of action."	"[Mutational Profiling of Pediatric Myeloid Leukemia Subtypes without Clinically Significant Chromosomal Aberrations]. The discovery of novel significant molecular and genetic markers is important for the diagnostics, prognosis, and therapy selection in hematological malignancies. Distinct cytogenetic aberrations leading to the formation of fusion genes are found in more than 40% of pediactric cases of acute myeloid leukemia (AML); however, the tumor cells in approximately 20% of these patients display cytogenetically normal karyotype (NK-AML). Here we present the analysis of the mutational profiles of leukemic cells collected from pediatric AML cases without known clinically significant chromosomal aberrations aimed at identifying AML specific markers. In 34 pediatric cases of different AML types, the coding regions of 26 genes involved in the AML pathogenesis were analyzed by massive parallel sequencing. Sequencing revealed the somatic mutations in genes that are involved in various intracellular signaling pathways, including the CEBPA, ETV, IDH1, JAK2, and NRAS genes. In addition, rare genetic variants were found in CUX1, FLT3, TET2, PTPN11, and NUP98 genes. This data may contribute to the understanding of the mechanisms of malignant cell transformation in the case of leukemogenesis."	"Deletion of Protein Tyrosine Phosphatase Nonreceptor Type 2 in Intestinal Epithelial Cells Results in Upregulation of the Related Phosphatase Protein Tyrosine Phosphatase Nonreceptor Type 23. Knockdown of protein tyrosine phosphatase nonreceptor type 2 (PTPN2) exaggerates IFN-γ-induced intestinal barrier defects, but mice constitutively lacking PTPN2 in epithelial cells (PTPN2xVilCre mice) do not show changes in epithelial function or enhanced susceptibility to experimental colitis. Here, we investigated whether PTPN2 modulates the expression of related tyrosine phosphatases. PTPN2 knockdown in HT-29 cells was induced using siRNA constructs. Acute colitis in PTPN2xVilCre mice was induced by 2% dextran sulfate sodium (DSS) in drinking water for 7 days. Colitis-associated tumors were induced by injection of azoxymethane prior to treatment with DSS for 3 consecutive cycles. In HT-29 cells, PTPN2 depletion resulted in enhanced mRNA expression of PTPN11 and PTPN23 and in parallel to upregulation of IL-18 mRNA upon treatment with TNF for 24 h. DSS treatment of PTPN2-deficient mice resulted in a strong induction of Ptpn23 mRNA in colon tissue in vivo. In the tumor model, Ptpn23 mRNA was again clearly upregulated in nontumor tissue from PTPN2-deficient mice; however, this was not observed in tumor tissue. Our experiments show that PTPN23 function might, at least partially, compensate lack of PTPN2 in epithelial cells. Upregulation of PTPN23 might therefore crucially contribute to the lack of a colitis phenotype in PTPN2-VilCre mice."	"Impact of Growth Hormone Therapy on Adult Height in Patients with PTPN11 Mutations Related to Noonan Syndrome. The aim of this study was to evaluate the response to recombinant human growth hormone (rhGH) treatment in patients with Noonan syndrome (NS). Forty-two patients (35 PTPN11+) were treated with rhGH, and 17 were followed-up until adult height. The outcomes were changes in growth velocity (GV) and height standard deviation scores (SDS) for normal (height-CDC SDS) and Noonan standards (height-NS SDS). The pretreatment chronological age was 10.3 ± 3.5 years. Height-CDC SDS and height-NS SDS were -3.1 ± 0.7 and -0.5 ± 0.6, respectively. PTPN11+ patients had a better growth response than PTPN11- patients. GV SDS increased from -1.2 ± 1.8 to 3.1 ± 2.8 after the first year of therapy in PTPN11+ patients, and from -1.9 ± 2.6 to -0.1 ± 2.6 in PTPN11- patients. The gain in height-CDC SDS during the first year was higher in PTPN11+ than PTPN11- (0.6 ± 0.4 vs. 0.1 ± 0.2, p = 0.008). Similarly, the gain was observed in height-NS SDS (0.6 ± 0.3 vs. 0.2 ± 0.2, respectively, p &lt; 0.001). Among the patients that reached adult height (n = 17), AH-CDC SDS and AH-NS SDS were -2.1 ± 0.7 and 0.7 ± 0.8, respectively. The total increase in height SDS was 1.3 ± 0.7 and 1.5 ± 0.6 for normal and NS standards, respectively. This study supports the advantage of rhGH therapy on adult height in PTPN11+ patients. In comparison, PTPN11- patients showed a poor response to rhGH. However, this PTPN11- group was small, preventing an adequate comparison among different genotypes and no guarantee of response to therapy in genes besides PTPN11."	"Diagnosis and treatment of juvenile myelomonocytic leukemia in Slovak Republic: novel approaches. Juvenile myelomonocytic leukemia (JMML) is a rare, aggressive clonal myeloproliferative disorder of infancy and early childhood caused by oncogenic mutations in genes involved in the Ras pathway. Long-term survival has only been achieved with hematopoietic stem cell transplantation (HSCT), being able to cure more than 50% patients. To manage the disease before HSCT remains an important issue with constant searching for optimal treatment modalities. According to several retrospective analyses, azacitidine (AZA) induced clinical and molecular responses in patients with relapsed JMML pre-transplant and post-transplant, suggesting its use as a promising &quot;bridging&quot; therapy before HSCT. In this paper we report our first consecutive cohort of patients with JMML treated at our institution as well as our experience with the diagnosis, novel treatment and management of these patients before the HSCT. We present 6 patients with JMML, harboring different somatic mutations (PTPN11 and NRAS), with distinct clinical features; 3 of them had been treated with AZA 75 mg/m2 i.v. on days 1 to 7 of a 28-day cycle before the HSCT. Response to therapy was evaluated after each cycle in accordance with the International response criteria. One patient had a progression of splenomegaly during the treatment and after three cycles he was urgently transplanted. At the present, he is remaining in complete remission 3 years after HSCT. Two patients showed impressive response following the first cycle of the therapy with a regression of splenomegaly and monocyte count, normalized leukocytes, platelets and absent blasts in peripheral blood. The treatment was well tolerated with no adverse effect recorded. The clinical activity and favorable toxicity of AZA in JMML provide a rationale for its use as a &quot;bridging&quot; therapy before HSCT. Prospective trials with accompanying translational studies are required to provide further information regarding individual factors that may direct the most appropriate choice of pretransplantation therapy."	"Bioinformatic analysis of differentially expressed genes and identification of key genes in EBV-transformed lymphoblasts. Although the Epstein-Barr virus (EBV) is a well-known human oncogenic virus, its molecular mechanisms involved in the transformation of healthy human cells remain poorly understood. In this study, human lymphocytes were isolated from the peripheral blood of healthy adults, and lymphocytes were transformed in vitro by EBV. Agilent human whole genome microarrays were used to detect the differential gene expression profiles of EBV-transformed lymphoblasts and healthy peripheral blood lymphocytes (PBLs). By constructing the gene functional network of EBV-induced lymphocyte transformation, we screened out candidate key genes in this process and verified their expression levels by real-time quantitative polymerase chain reaction (RT-qPCR) and Western blot. In the EBV-transformed lymphoblasts, 2335 differentially expressed genes, including 1328 up-regulated and 1007 down-regulated, were screened out. Five candidate key genes, namely, PLK1, E2F1, PTPN11, BIRC5 and FYN were mainly screened out according to the results of LIMMA, String, Cytoscape software analysis. RT-qPCR and Western blot showed that PLK1, E2F1, PTPN11, BIRC5 genes had increased expression levels, and FYN gene was down-regulated in EBV-transformed lymphoblasts. Silencing of PLK1 gene in Raji cells could inhibit cell proliferation and invasion, and induce cell cycle arrest and apoptosis. In conclusion, PLK1, E2F1, PTPN11, BIRC5 and FYN are the candidate key molecules of EBV-transformed lymphocytes."	"Cardiac Manifestations of Noonan Syndrome. Noonan syndrome NS, a RASopathy, is commonly seen in association with cardiovascular abnormalities, with structural defects and/or cardiomyopathy present in 80-90-% of cases. Though a wide spectrum of cardiac pathology has been reported, pulmonary stenosis is the most common structural abnormality and more likely to be seen in PTPN11 mutations. Hypertrophic cardiomyopathy is the second most common and is more often associated with RAF1 mutations. Cardiac disease tends to be more progressive in infants and children with NS and therefore close cardiology follow-up is indicated. In general, the earlier the presentation, the more severe the phenotype and worse the long term prognosis. As genotype phenotype associations are being better understood, the mechanisms for development of cardiomyopathy are also becoming elucidated, raising the possibility of medical therapies targeted at the involved pathway."	"Endocrine Complications of Noonan Syndrome beyond Short Stature. Noonan syndrome (NS) is a diagnosis that is made clinically based on features including typical facies, congenital heart defects, short stature and developmental delay. Approximately 50% of the patients have identified mutations in the PTPN11 gene, and a smaller percentage of mutations have been reported in other genes such as SOS1, RAF1 and RIT1 Despite normal birth length, patients typically reach adult height below normal. Other than growth, endocrine complications of NS are not as commonly reported. These include possible pathology in thyroid function, pubertal development and bone metabolism. Some investigators have looked to see if genetic mutations in these patients could pose a risk for future endocrinopathies. This chapter reviews reports on endocrine dysfunction other than growth in patients with NS. The information is meant to enhance awareness in those providers who care for these patients to the possibility of other existing endocrinopathies. Most importantly, it supports and highlights the endocrinologist's role in the care of patients with NS."	"Molecular Genetics of Noonan Syndrome and RASopathies. The RAS/MAPK signaling pathway plays an essential role in development and tumorigenesis by regulating cell proliferation, differentiation, apoptosis, migration, and metabolism. Therefore, it is not surprising that germline mutations in genes encoding components or regulators of this signaling pathway cause numerous human genetic conditions, including Noonan syndrome and related disorders. The term &quot;RASopathies&quot; has been used to describe these disorders collectively due to their common underlying RAS/MAPK pathway dysregulation and overlapping clinical features. Taken together, the RASopathies represent one of the most common groups of genetic disorders, affecting approximately 1 in 1,000 individuals. This review describes the RAS/MAPK signaling pathway, summarizes multiple molecular genetic approaches used during the last several decades to discover genes responsible for different RASopathies, and finally focuses on several major disease genes associated with Noonan syndrome and related disorders with regard to genomic locations, structure, mutations, and genotype-phenotype correlations."	"The History of Noonan Syndrome. Early in her career, Jacqueline Noonan, a pediatric cardiologist, recognized that a number of children with valvular pulmonary stenosis had similar facial features. Dr. Noonan reported the clinical characteristics of this condition including short stature, hypertelorism, ptosis, mild mental retardation, undescended testes, and skeletal malformations. Further characterization of Noonan Syndrome led to the development of clinical criteria for the diagnosis of the condition. Identification of the first genetic cause of Noonan Syndrome, mutation of ptpn11 was reported in 2001. Multiple subsequent genes have been identified as causes of Noonan Syndrome and the related Rasopathies."	"Predisposing germline mutations in high hyperdiploid acute lymphoblastic leukemia in children. High hyperdiploidy (HD) is the most common cytogenetic subtype of childhood acute lymphoblastic leukemia (ALL), and a higher incidence of HD has been reported in ALL patients with congenital cancer syndromes. We assessed the frequency of predisposing germline mutations in 57 HD-ALL patients from the California Childhood Leukemia Study via targeted sequencing of cancer-relevant genes. Three out of 57 patients (5.3%) harbored confirmed germline mutations that were likely causal, in NBN, ETV6, and FLT3, with an additional six patients (10.5%) harboring putative predisposing mutations that were rare in unselected individuals (&lt;0.01% allele frequency in the Exome Aggregation Consortium, ExAC) and predicted functional (scaled CADD score ≥ 20) in known or potential ALL predisposition genes (SH2B3, CREBBP, PMS2, MLL, ABL1, and MYH9). Three additional patients carried rare and predicted damaging germline mutations in GAB2, a known activator of the ERK/MAPK and PI3K/AKT pathways and binding partner of PTPN11-encoded SHP2. The frequency of rare and predicted functional germline GAB2 mutations was significantly higher in our patients (2.6%) than in ExAC (0.28%, P = 4.4 × 10<sup>-3</sup> ), an observation that was replicated in ALL patients from the TARGET project (P = .034). We cloned patient GAB2 mutations and expressed mutant proteins in HEK293 cells and found that frameshift mutation P621fs led to reduced SHP2 binding and ERK1/2 phosphorylation but significantly increased AKT phosphorylation, suggesting possible RAS-independent leukemogenic effects. Our results support a significant contribution of rare, high penetrance germline mutations to HD-ALL etiology, and pinpoint GAB2 as a putative novel ALL predisposition gene."	"Diagnosis and treatment of juvenile myelomonocytic leukemia in Slovak Republic: novel approaches. Juvenile myelomonocytic leukemia (JMML) is a rare, aggressive clonal myeloproliferative disorder of infancy and early childhood caused by oncogenic mutations in genes involved in the Ras pathway. Long-term survival has only been achieved with hematopoietic stem cell transplantation (HSCT), being able to cure more than 50% patients. To manage the disease before HSCT remains an important issue with constant searching for optimal treatment modalities. According to several retrospective analyses, azacytidine (AZA) induced clinical and molecular responses in patients with relapsed JMML pre-transplant and post-transplant, suggesting its use as a promising &quot;bridging&quot; therapy before HSCT. In this paper we report our first consecutive cohort of patients with JMML treated at our institution as well as our experience with the diagnosis, novel treatment and management of these patients before the HSCT. We present 6 patients with JMML, harboring different somatic mutations (PTPN11 and NRAS), with distinct clinical features; 3 of them had been treated with AZA 75mg/m2 i.v. on days 1 to 7 of a 28-day cycle before the HSCT. Response to therapy was evaluated after each cycle in accordance with the International response criteria. One patient had a progression of splenomegaly during the treatment and after three cycles he was urgently transplanted. At present, he is remaining in complete remission 3 years after HSCT. Two patients showed impressive response following the first cycle of the therapy with a regression of splenomegaly and monocyte count, normalized leukocytes, platelets, and absent blasts in peripheral blood. The treatment was well-tolerated with no adverse effect recorded. The clinical activity and favorable toxicity of AZA in JMML provide a rationale for its use as a &quot;bridging&quot; therapy before HSCT. Prospective trials with accompanying translational studies are required to provide further information regarding individual factors that may direct the most appropriate choice of pretransplantation therapy."	"Clinicopathologic and genetic characterization of nonacute NPM1-mutated myeloid neoplasms. NPM1-mutated myeloid neoplasms (NPM1<sup>+</sup> MNs) with &lt;20% blood or bone marrow blasts are rare and have been previously shown in limited case series to exhibit an aggressive clinical course. We assembled the largest cohort of NPM1<sup>+</sup> MN cases to date (n = 45) and compared it with NPM1<sup>-</sup> MN (n = 95) and NPM1<sup>+</sup> de novo acute myeloid leukemia (AML; n = 119) patients. Compared with NPM1<sup>-</sup> MN, NPM1<sup>+</sup> MN were associated with younger age (P = .007), a normal karyotype (P &lt; .0001), more frequent mutations involving DNMT3A (P = .01) and PTPN11 (P = .03), and fewer involving ASXL1 (P = .003), RUNX1 (P = .0004), and TP53 (P = .02). Mutations involving IDH1 or IDH2 (IDH1/2) (P = .007) and FLT3 (internal tandem duplication, P &lt; .0001; noninternal tandem duplication, P = .01) were less frequent in NPM1<sup>+</sup> MN than in NPM1<sup>+</sup> AML. In multivariable analyses performed in patients with myelodysplastic syndrome only, total mutation count (hazard ratio [HR], 1.3; P = .05), NPM1 mutation (HR, 3.6; P = .02), TP53 mutation (HR, 5.2; P = .01), and higher International Prognostic Scoring System-R score (HR, 1.7; P = .0003) were independently associated with shorter overall survival, whereas stem cell transplant conferred a favorable effect (HR, 0.1; P &lt; .0001). These data suggest that NPM1<sup>+</sup> MN are biologically distinct from NPM1<sup>-</sup> MN. Similar to NPM1<sup>+</sup> AML, patients with NPM1-mutated myelodysplastic syndrome may benefit from more intensive therapeutic regimens."	"Regulatory Network of Two Tumor-Suppressive Noncoding RNAs Interferes with the Growth and Metastasis of Renal Cell Carcinoma. Noncoding RNAs (ncRNAs) such as microRNAs (miRNAs) and long ncRNAs (lncRNAs) have been shown to function as pivotal regulators in the carcinogenesis of renal cell carcinoma (RCC). However, the functions and underlying mechanisms of most ncRNAs in RCC are still elusive, and the crosstalks of different layers of ncRNAs are seldom reported. Here we showed that miR-124 and maternally expressed gene 3 (MEG3) were both significantly reduced in RCC, and combined expression of miR-124 and MEG3 emerged as an independent prognostic factor in our RCC cohort. Overexpression of miR-124 or MEG3 inhibited cell proliferation, migration, and invasion in vitro, and restrained tumor growth in vivo. EZH2 knockdown induced the epigenetic silencing of miR-124 and MEG3 expression by H3K27me3. Besides, miR-124 directly targeted the TET1 transcript, and then the interaction resulted in the upregulation of MEG3. Furthermore, we demonstrated that MEG3 induced p53 protein accumulation, whereas p53 was a positive transcriptional regulator of the miR-124. In addition, tumor-suppressive PTPN11 was identified as a direct target of miR-124, as well as the MEG3- and p53-regulated gene. Our study identifies three crosstalks between miR-124 and MEG3, which provide a plausible link for these two ncRNAs in RCC. Both ncRNAs exert important antitumor effects in RCC pathogenesis and might serve as prognostic biomarkers and molecular therapeutic targets."	"AlloDriver: a method for the identification and analysis of cancer driver targets. Identifying the variants that alter protein function is a promising strategy for deciphering the biological consequences of somatic mutations during tumorigenesis, which could provide novel targets for the development of cancer therapies. Here, based on our previously developed method, we present a strategy called AlloDriver that identifies cancer driver genes/proteins as possible targets from mutations. AlloDriver utilizes structural and dynamic features to prioritize potentially functional genes/proteins in individual cancers via mapping mutations generated from clinical cancer samples to allosteric/orthosteric sites derived from three-dimensional protein structures. This strategy exhibits desirable performance in the reemergence of known cancer driver mutations and genes/proteins from clinical samples. Significantly, the practicability of AlloDriver to discover novel cancer driver proteins in head and neck squamous cell carcinoma (HNSC) was tested in a real case of human protein tyrosine phosphatase, receptor type K (PTPRK) through a L1143F driver mutation located at the allosteric site of PTPRK, which was experimentally validated by cell proliferation assay. AlloDriver is expected to help to uncover innovative molecular mechanisms of tumorigenesis by perturbing proteins and to discover novel targets based on cancer driver mutations. The AlloDriver is freely available to all users at http://mdl.shsmu.edu.cn/ALD."	"SHP2 Inhibition Overcomes RTK-Mediated Pathway Reactivation in KRAS-Mutant Tumors Treated with MEK Inhibitors. FGFR1 was recently shown to be activated as part of a compensatory response to prolonged treatment with the MEK inhibitor trametinib in several KRAS-mutant lung and pancreatic cancer cell lines. We hypothesize that other receptor tyrosine kinases (RTK) are also feedback-activated in this context. Herein, we profile a large panel of KRAS-mutant cancer cell lines for the contribution of RTKs to the feedback activation of phospho-MEK following MEK inhibition, using an SHP2 inhibitor (SHP099) that blocks RAS activation mediated by multiple RTKs. We find that RTK-driven feedback activation widely exists in KRAS-mutant cancer cells, to a less extent in those harboring the G13D variant, and involves several RTKs, including EGFR, FGFR, and MET. We further demonstrate that this pathway feedback activation is mediated through mutant KRAS, at least for the G12C, G12D, and G12V variants, and wild-type KRAS can also contribute significantly to the feedback activation. Finally, SHP099 and MEK inhibitors exhibit combination benefits inhibiting KRAS-mutant cancer cell proliferation in vitro and in vivo These findings provide a rationale for exploration of combining SHP2 and MAPK pathway inhibitors for treating KRAS-mutant cancers in the clinic."	"Noonan Syndrome in South Africa: Clinical and Molecular Profiles. Noonan Syndrome (NS) is a common autosomal dominant multisystem disorder, caused by mutations in more than 10 genes in the Ras/MAPK signaling pathway. Differential mutation frequencies are observed across populations. Clinical expressions of NS are highly variable and include short stature, distinctive craniofacial dysmorphism, cardiovascular abnormalities, and developmental delay. Little is known about phenotypic specificities and molecular characteristics of NS in Africa. The present study has investigated patients with NS in Cape Town (South Africa). Clinical features were carefully documented in a total of 26 patients. Targeted Next-Generation Sequencing (NGS) was performed on 16 unrelated probands, using a multigene panel comprising 14 genes: PTPN11, SOS1, RIT1, A2ML1, BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NRAS, RAF1, SHOC2, and SPRED1. The median age at diagnosis was 4.5 years (range: 1 month-51 years). Individuals of mixed-race ancestry were most represented (53.8%), followed by black Africans (30.8%). Our cohort revealed a lower frequency of pulmonary valve stenosis (34.6%) and a less severe developmental milestones phenotype. Molecular analysis found variants predicted to be pathogenic in 5 / 16 cases (31.2%). Among these mutations, two were previously reported: MAP2K1-c.389A&gt;G (p.Tyr130Cys) and PTPN11 - c.1510A&gt;G (p.Met504Val); three are novel: CBL-c.2520T&gt;G (p.Cys840Trp), PTPN11- c.1496C&gt;T (p.Ser499Phe), and MAP2K1- c.200A&gt;C (p.Asp67Ala). Molecular dynamic simulations indicated that novel variants identified impact the stability and flexibility of their corresponding proteins. Genotype-phenotype correlations showed that clinical features of NS were more typical in patients with variants in MAP2K1. This first application of targeted NGS for the molecular diagnosis of NS in South Africans suggests that, while there is no major phenotypic difference compared to other populations, the distribution of genetic variants in NS in South Africans may be different."	"Have You Ever Seen a LEOPARD? NA"	"The Noonan Syndrome-linked Raf1L613V mutation drives increased glial number in the mouse cortex and enhanced learning. RASopathies are a family of related syndromes caused by mutations in regulators of the RAS/Extracellular Regulated Kinase 1/2 (ERK1/2) signaling cascade that often result in neurological deficits. RASopathy mutations in upstream regulatory components, such as NF1, PTPN11/SHP2, and RAS have been well-characterized, but mutation-specific differences in the pathogenesis of nervous system abnormalities remain poorly understood, especially those involving mutations downstream of RAS. Here, we assessed cellular and behavioral phenotypes in mice expressing a Raf1L613V gain-of-function mutation associated with the RASopathy, Noonan Syndrome. We report that Raf1L613V/wt mutants do not exhibit a significantly altered number of excitatory or inhibitory neurons in the cortex. However, we observed a significant increase in the number of specific glial subtypes in the forebrain. The density of GFAP+ astrocytes was significantly increased in the adult Raf1L613V/wt cortex and hippocampus relative to controls. OLIG2+ oligodendrocyte progenitor cells were also increased in number in mutant cortices, but we detected no significant change in myelination. Behavioral analyses revealed no significant changes in voluntary locomotor activity, anxiety-like behavior, or sociability. Surprisingly, Raf1L613V/wt mice performed better than controls in select aspects of the water radial-arm maze, Morris water maze, and cued fear conditioning tasks. Overall, these data show that increased astrocyte and oligodendrocyte progenitor cell (OPC) density in the cortex coincides with enhanced cognition in Raf1L613V/wt mutants and further highlight the distinct effects of RASopathy mutations on nervous system development and function."	"[Clinical and genetic analyses of juvenile myelomonocytic leukemia]. To study the clinical and genetic features of juvenile myelomonocytic leukemia (JMML) and the association between genotype and prognosis. Methods The clinical data of 15 children who were diagnosed with JMML were collected. Next-generation sequencing was used to detect common gene mutations of JMML. The male/female ratio was 6.5:1, and the age of onset was 19 months (range 2-67 months). Of the 15 children, 11 (73%) experienced disease onset before the age of 4 years, with abdominal distension and pyrexia as initial symptoms. All children had hepatosplenomegaly and superficial lymphadenectasis, with a number of peripheral blood mononuclear cells of &gt;1.0×109/L and a percentage of juvenile cells of 1%-7% in peripheral blood smear. The percentage of bone marrow blasts + juvenile cells was &lt;20%, and the percentage of monoblasts + promonocytes was 1%-10%. Of the 15 children, 10 (67%) had a higher level of hemoglobin F than the normal level at the corresponding age, with the highest level of 62.5%. All 15 children had the absence of Philadelphia chromosome, and one child had chromosome 7 deletion. All 15 children had a negative result of BCR/ABL fusion gene detection. PTPN11 gene mutation was found in 5 children (33%), NF1 mutation in 4 children (27%), CBL mutation in 3 children (20%), and RAS mutation in 3 children (20%). No children received regular chemotherapy, and one child underwent hematopoietic stem cell transplantation. The median follow-up time of 15 children was 18 months (range 1-48 months). Among the 15 children, 8 died (among whom 4 had PTPN11 gene mutation, 3 had NF1 mutation, and 1 had RAS mutation) and 7 survived. The children with PTPN11 mutation had the worst prognosis and the highest mortality rate, and those with CBL or NRAS mutation had a relatively good prognosis. The level of hemoglobin F was negatively correlated with survival time (rs=-7.21, P=0.002). In children with JMML, the type of gene mutation is associated with prognosis. The children with PTPN11 mutation often have a poor prognosis, and those with CBL or NRAS mutation have a relatively good prognosis."	"Protein and fat intake interacts with the haplotype of PTPN11_rs11066325, RPH3A_rs886477, and OAS3_rs2072134 to modulate serum HDL concentrations in middle-aged people. Low serum HDL cholesterol (HDL-C) concentration is a risk factor for cardiovascular diseases and it is influenced by genetic and environmental factors. We hypothesized that genetic variants that decrease serum HDL-C concentrations may interact with nutrient intakes in ways that increase or decrease the risk of cardiovascular disease. Candidate genetic variants that can lower serum HDL-C concentrations were explored by genome-wide association studies (GWAS), after adjusting for covariates, in the Ansan/Ansung cohort (n = 8842) from KoGES. The best genetic variants were selected and used to form a haplotype. According to the haplotype frequencies of SNPs, they were divided into major allele, heterozygote allele, and minor allele. The association of haplotype with serum HDL-C levels was determined using logistic regression after adjusting for confounding factors. Interaction of the haplotype with nutrient intake was also determined. PTPN11_rs11066325, RPH3A_rs886477 and OAS3_rs2072134 were selected to modulate serum HDL-C levels from GWAS(P = 1.09E-09, 7.04E-10, and 1.27E-09, respectively). The adjusted odds ratios (ORs) for a decrease in serum HDL-C concentration in the minor-allele group of the haplotype were elevated by 1.534 fold, compared to the major-allele group of the haplotype. Furthermore, the adjusted ORs for serum LDL cholesterol and levels increased by 1.645 in the minor-alleles compared to the major-alleles of the haplotype without a significant change of serum cholesterol levels. Interestingly, the adjusted ORs for serum triglyceride were lower in the minor-alleles than in the major-alleles. The haplotype had a significant interaction with the intake of protein, fat, saturated fatty acids (SAF) and polyunsaturated fatty acids (PUFA; P &lt; 0.05). In particular, the minor alleles of the haplotype decreased serum HDL-C levels compared to the major-alleles in the high intake of protein, fat, SFA, and PUFA, not in the low intake. People carrying the minor-allele of haplotypes should avoid diets that are high in protein and fat, especially rich in SFA and PUFA."	"Importance of prognostic stratification via gene mutation analysis in elderly patients with acute myelogenous leukemia. Acute myelogenous leukemia (AML) in elderly patients is associated with an increased incidence of complications and treatment-related toxicity because of the frequency of comorbid disease and age-related deterioration in organ function. Despite advances in AML treatment in recent years, elderly patients have experienced limited benefit, and their outcomes remain poor. This study aimed to perform a comprehensive gene mutation analysis in elderly AML patients and identify gene mutations that could serve as prognostic factors. An analysis of gene mutations was performed for 281 AML patients, including 98 elderly patients aged 65 years or above. Compared to younger AML patients, elderly patients showed a higher frequency of the following gene mutations: TP53 (P = 0.026), PTPN11 (P = 0.006), RUNX1 (P = 0.024), TET2 (P = 0.002), and ASXL1 (P = 0.023). The complete remission rate was significantly lower in DNMT3A mutation-positive cases (4.26%, P = 0.011) and TP53 mutation-positive cases (2.13%, P = 0.031) than in negative cases. The overall survival rate was significantly poorer in cases with FLT3-ITD (P = 0.003), DNMT3A (P = 0.033), or TP53 mutation (P &lt; 0.001). Conversely, cases with PTPN11 mutation (P = 0.014) had a significantly more favorable prognosis. In multivariate analysis, FLT3-ITD (P = 0.011) and TP53 mutation positivity (P = 0.002) were independent poor prognostic factors, as were a performance status of 3 or above (P &lt; 0.001) and poor cytogenetic prognosis (P = 0.001). In contrast, PTPN11 mutation positivity (P = 0.023) was an independent favorable prognosis factor. Analysis of gene mutations in elderly AML patients is very important, not only for establishing prognosis, but also for introducing appropriate molecular-targeted treatments."	"Noonan syndrome from a fetopathologist perspective. We present our experience with four cases of fetal autopsies with abnormal prenatal ultrasound findings and suspicion of Noonan syndrome. These were fetuses from the 17th to the 24th age of gestation (GA). In all cases, prenatal ultrasound examination recorded increased nuchal translucency (NT) and presence of lymphatic neck sacs. Some fetuses showed signs of fetal hydrops and polyhydramnion was found. Similar signs and congenital developmental defects were confirmed in the autopsy examination. These were primarily signs of developing fetal hydrops with increased nuchal edema, in some cases up to the character of cystic hygroma, pleural and abdominal effusions, congenital heart and kidney defects, skeletal defects and facial dysmorphism. A karyotype was examined in all cases without chromosome aneuploidy. The diagnosis of NS was confimed by subsequent genetic analysis of causal gene mutations (mainly PTPN11, KRAS, RAF 1,). Our cases demonstrate a wide range of signs of prenatal presentation of this syndrome. Because of wide differential diagnosis, summarizing prenatal ultrasound findings, autopsy examination and molecular genetic testing is essential."	"Network pharmacology-based identification of the protective mechanisms of taraxasterol in experimental colitis. Taraxasterol, a pentacyclic-triterpene, has been reported to exert potent anti-inflammatory activity. However, the molecular mechanisms by which taraxasterol attenuates acute experimental colitis (AEC) remain undocumented. A network pharmacology approach was used to identify the candidate and collective targets of taraxasterol and acute colitis, and an AEC model was established by oral administration of dextran sulfate sodium (DSS) in mice. Body weight and colon lengths were then examined, the pathological scoring was assessed by using hematoxylin and eosin staining, and the expression levels of target genes were further confirmed by qRT-PCR and immunohistochemistry (IHC) analysis in taraxasterol treated AEC models. 14 collective targets of taraxasterol and acute colitis were identified by a network pharmacology analysis, including PPARG, JAK2, MMP3, NR1I2 and PTPN11. Further investigations in an AEC model showed that, taraxasterol alleviated the unfavorable clinical symptoms and attenuated the intestinal inflammation response by reducing the cytokines TNF-α, IL-1β and IL-6 levels. qRT-PCR and IHC analysis evidenced that, taraxasterol decreased MMP3 expression levels, but increased PPARG expression levels in AEC models as compared with the DSS group. Our findings demonstrated that taraxasterol improved DSS-induced AEC through regulating MMP3 and PPARG expression, providing a new insight into the potential therapeutic strategies for acute colitis."	"Shp-2 is critical for ERK and metabolic engagement downstream of IL-15 receptor in NK cells. The phosphatase Shp-2 was implicated in NK cell development and functions due to its interaction with NK inhibitory receptors, but its exact role in NK cells is still unclear. Here we show, using mice conditionally deficient for Shp-2 in the NK lineage, that NK cell development and responsiveness are largely unaffected. Instead, we find that Shp-2 serves mainly to enforce NK cell responses to activation by IL-15 and IL-2. Shp-2-deficient NK cells have reduced proliferation and survival when treated with high dose IL-15 or IL-2. Mechanistically, Shp-2 deficiency hampers acute IL-15 stimulation-induced raise in glycolytic and respiration rates, and causes a dramatic defect in ERK activation. Moreover, inhibition of the ERK and mTOR cascades largely phenocopies the defect observed in the absence of Shp-2. Together, our data reveal a critical function of Shp-2 as a molecular nexus bridging acute IL-15 signaling with downstream metabolic burst and NK cell expansion."	"Rare myeloid sarcoma with KMT2A (MLL)-ELL fusion presenting as a vaginal wall mass. Myeloid sarcoma (MS) is a rare neoplasm of immature myeloid precursors that form tumor mass outside the bone marrow. The diagnosis of de novo MS can be challenging, particularly in patients with no prior history of hematologic malignancies or when MS involves unusual anatomic sites. The patient was a 53-year-old woman with a history of uterine fibroids and vaginal bleeding for many years who presented with a vaginal wall mass. The tumor had histologic and phenotypic features of histiocytic sarcoma, however, overlapping with a possible extramedullary MS. Using a comprehensive genomic profiling, we were able to identify recurrent chromosomal aberrations associated with MS including a rare KMT2A-ELL fusion, losses of chromosomes 1p, 9, 10, 15, 18, and gain of chromosome 1q and mutations in FLT3 and PTPN11, and achived the final diagnosis of a de novo MS. The patient received standard treatment for acute myeloid leukemia regimen with stem cell transplantation and achieved complete remission. Our case illustrates the clinical utility of comprehensive genomic profiling in assisting the diagnosis or differential diagnosis of challenging MS or histiocytic sarcoma cases, and in providing important information in tumor biology for appropriate clinical management."	"Genetic landscape of RASopathies in Chinese: Three decades' experience in Hong Kong. RASopathies are a group of genetic disorders due to dysregulation of the RAS-MAPK signaling pathway, which is important in regulating cell growth, proliferation, and differentiation. These include Noonan syndrome (NS), Noonan syndrome with multiple lentigines (NSML), cardiofaciocutaneous (CFC) syndrome, and Costello syndrome (CS), clinical manifestations include growth retardation, developmental delay, cardiac defects, and specific dysmorphic features. There were abundant publications describing the genotype and phenotype from the Western populations. However, detailed study of RASopathies in Chinese population is lacking. We present here the largest cohort of RASopathies ever reported in Chinese populations, detailing the mutation spectrum and clinical phenotypes of these patients. The Clinical Genetic Service, Department of Health, and Queen Mary Hospital are tertiary referral centers for genetic disorders in Hong Kong. We retrospectively reviewed all the genetically confirmed cases of RASopathies, including NS, NSML, CFC syndrome, and CS, over the past 29 years (from 1989 to 2017). Analyses of the mutation spectrum and clinical phenotypes were performed. One hundred and ninety-one ethnic Chinese patients with genetically confirmed RASopathies were identified, including 148 patients with NS, 23 NSML, 12 CFC syndrome, and eight CS. We found a lower incidence of hypertrophic cardiomyopathy in individuals with NSML (27.3%), and NS caused by RAF1 mutations (62.5%). Another significant finding was for those NS patients with myeloproliferative disorder, the mutations fall within Exon 3 of PTPN11 but not only restricted to the well-known hotspots, that is, p.Asp61 and p.Thr731, which suggested that re-evaluation of the current tumor surveillance recommendation maybe warranted."	"Cafestol Activates Nuclear Factor Erythroid-2 Related Factor 2 and Inhibits Urotensin II-Induced Cardiomyocyte Hypertrophy. Through population-based studies, associations have been found between coffee drinking and numerous health benefits, including a reduced risk of cardiovascular disease. Active ingredients in coffee have therefore received considerable attention from researchers. A wide variety of effects have been attributed to cafestol, one of the major compounds in coffee beans. Because cardiac hypertrophy is an independent risk factor for cardiovascular events, this study examined whether cafestol inhibits urotensin II (U-II)-induced cardiomyocyte hypertrophy. Neonatal rat cardiomyocytes were exposed only to U-II (1 <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mspace/> </mml:math> nM) or to U-II (1 <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mspace/> </mml:math> nM) following 12-h pretreatment with cafestol (1-10 <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mspace/> </mml:math><mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>μ</mml:mi> </mml:math> M). Cafestol (3-10 <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mspace/> </mml:math><mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mi>μ</mml:mi> </mml:math> M) pretreatment significantly inhibited U-II-induced cardiomyocyte hypertrophy with an accompanying decrease in U-II-induced reactive oxygen species (ROS) production. Cafestol also inhibited U-II-induced phosphorylation of redox-sensitive extracellular signal-regulated kinase (ERK) and epidermal growth factor receptor transactivation. In addition, cafestol pretreatment increased Src homology region 2 domains-containing phosphatase-2 (SHP-2) activity, suggesting that cafestol prevents ROS-induced SHP-2 inactivation. Moreover, nuclear factor erythroid-2-related factor 2 (Nrf2) translocation and heme oxygenase-1 (HO-1) expression were enhanced by cafestol. Addition of brusatol (a specific inhibitor of Nrf2) or Nrf2 siRNA significantly attenuated cafestol-mediated inhibitory effects on U-II-stimulated ROS production and cardiomyocyte hypertrophy. In summary, our data indicate that cafestol prevented U-II-induced cardiomycyte hypertrophy through Nrf2/HO-1 activation and inhibition of redox signaling, resulting in cardioprotective effects. These novel findings suggest that cafestol could be applied in pharmacological therapy for cardiac diseases."	"Excitatory neuron-specific SHP2-ERK signaling network regulates synaptic plasticity and memory. Mutations in RAS signaling pathway components cause diverse neurodevelopmental disorders, collectively called RASopathies. Previous studies have suggested that dysregulation in RAS-extracellular signal-regulated kinase (ERK) activation is restricted to distinct cell types in different RASopathies. Some cases of Noonan syndrome (NS) are associated with gain-of-function mutations in the phosphatase SHP2 (encoded by PTPN11); however, SHP2 is abundant in multiple cell types, so it is unclear which cell type(s) contribute to NS phenotypes. Here, we found that expressing the NS-associated mutant SHP2<sup>D61G</sup> in excitatory, but not inhibitory, hippocampal neurons increased ERK signaling and impaired both long-term potentiation (LTP) and spatial memory in mice, although endogenous SHP2 was expressed in both neuronal types. Transcriptomic analyses revealed that the genes encoding SHP2-interacting proteins that are critical for ERK activation, such as GAB1 and GRB2, were enriched in excitatory neurons. Accordingly, expressing a dominant-negative mutant of GAB1, which reduced its interaction with SHP2<sup>D61G</sup>, selectively in excitatory neurons, reversed SHP2<sup>D61G</sup>-mediated deficits. Moreover, ectopic expression of GAB1 and GRB2 together with SHP2<sup>D61G</sup> in inhibitory neurons resulted in ERK activation. These results demonstrate that RAS-ERK signaling networks are notably different between excitatory and inhibitory neurons, accounting for the cell type-specific pathophysiology of NS and perhaps other RASopathies."	"Phenotype switch in acute lymphoblastic leukaemia associated with 3 years of persistent CAR T cell directed-CD19 selective pressure. NA"	"Rosette-Forming Glioneuronal Tumor in Opticochiasmatic Region-Novel Entity in New Location. Rosette-forming glioneuronal tumour [RGNT] is a relatively rare entity first identified as a separate entity in 2002. We are reporting the second case of RGNT in the opticochiasmatic region. We report a case report and literature review of RGNT with syndromic association. Although initial reports were predominantly in the fourth ventricle, many recent reports have identified the possibility of its occurrence outside fourth ventricle in pineal gland, spinal cord, septum pellucidum, lateral ventricle, and suprasellar region. To date, only 1 case of RGNT involving the opticochiasmatic region has been reported in a patient with neurofibromatosis type 1. Genetic analysis of this rare tumor identified 3 hotspots involving somatic mutations of FGFR-1 and PIK3CA and a germline mutation involving PTPN11, which can be targets for therapeutic intervention in cases where complete resection is not possible. To the best of our knowledge, we report the first case of RGNT involving the opticochiasmatic region without any syndromic association. Other cases of RGNT with syndromic associations provide us with insight into possible therapeutic interventions."	"Protein dynamics analysis reveals that missense mutations in cancer-related genes appear frequently on hinge-neighboring residues. Missense mutations have various effects on protein structures, also leading to distorted protein dynamics that plausibly affects the function. We hypothesized that missense mutations in cancer-related genes selectively target hinge-neighboring residues that orchestrate collective structural dynamics. To test our hypothesis, we selected 69 cancer-related genes from the Cancer Gene Census database and their representative protein structures from the Protein Data Bank. We first identified the hinge residues in two global modes of motion by applying the Gaussian Network Model. We then showed that missense mutations are significantly enriched on hinge-neighboring residues in oncogenes and tumor suppressor genes. We observed that several oncogenes (eg, MAP2K1, PTPN11, and KRAS) and tumor suppressor genes (eg, EZH2, CDKN2C, and RHOA) strongly exhibit this phenomenon. This study highlights and rationalizes the functional importance of missense mutations on hinge-neighboring residues in cancer."	"The spectrum of genetic variants and phenotypic features of Southeast Asian patients with Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant disorder that belongs to a group of developmental disorders called RASopathies with overlapping features and multiple causative genes. The aim of the study was to identify mutations underlying this disorder in patients from Southeast Asia and characterize their clinical presentations. Patients were identified from the hospital's Genetics clinics after assessment by attending clinical geneticists. A targeted gene panel was used for next-generation sequencing on genomic DNA extracted from the blood samples of 17 patients. Heterozygous missense variants were identified in 13 patients: eight were in PTPN11, three in SOS1, and one each in RIT1 and KRAS. All are known variants that have been reported in patients with NS. Of the 13 patients with identified variants, 10 had short stature, the most common feature for NS. Four of the eight patients with PTPN11 variants had atrial septal defect. Only two had pulmonary stenosis which is reported to be common for PTPN11 mutation carriers. Another two had hypertrophic cardiomyopathy, a feature which is negatively associated with PTPN11 mutations. Our study provides the mutation and phenotypic spectrum of NS from a new population group. The molecular testing yield of 76% is similar to other studies and shows that the targeted panel approach is useful for identifying genetic mutations in NS which has multiple causative genes. The molecular basis for the phenotypes of the remaining patients remains unknown and would need to be uncovered via sequencing of additional genes or other investigative methods."	"Complex karyotype AML displays G2/M signature and hypersensitivity to PLK1 inhibition. Patients diagnosed with acute myeloid leukemia with complex karyotype (CK AML) have an adverse prognosis using current therapies, especially when accompanied by TP53 alterations. We hereby report the RNA-sequencing analysis of the 68 CK AML samples included in the Leucegene 415 patient cohort. We confirm the frequent occurrence of TP53 alterations in this subgroup and further characterize the allele expression profile and transcript alterations of this gene. We also document that the RAS pathway (N/KRAS, NF1, PTPN11, BRAF) is frequently altered in this disease. Targeted chemical interrogation of genetically characterized primary CK AML samples identifies polo-like kinase 1 (PLK1) inhibitors as the most selective agents for this disease subgroup. TP53 status did not alter sensitivity to PLK1 inhibitors. Interestingly, CK AML specimens display a G2/M transcriptomic signature that includes higher expression levels of PLK1 and correlates with PLK1 inhibition sensitivity. Together, our results highlight vulnerability in CK AML. In line with these in vitro data, volasertib shows a strong anti-AML activity in xenotransplantation mouse models of human adverse AML. Considering that PLK1 inhibitors are currently being investigated clinically in AML and myelodysplastic syndromes, our results provide a new rationale for PLK1-directed therapy in patients with adverse cytogenetic AML."	"Conformational Changes in the Cytoplasmic Region of KIR3DL1 upon Interaction with SHP-2. KIR3DL1 is an inhibitory killer cell immunoglobulin-like receptor (KIR) that negatively regulates natural killer cell cytotoxicity. The KIR3DL1 cytoplasmic region (3DL1-cyto) is disordered and can be dissected into three segments: (I) H340-V351; (II) M352-D371; and (III) P372-P423. NMR studies indicate that segment II can dynamically adopt a loop-like conformation, and segments I and III can form dynamic helices that may mediate binding to membranes, particularly in the region around the N-terminal (N) immunoreceptor tyrosine-based inhibitory motif (ITIM), consistent with its role in signaling. Furthermore, individual SH2 domains of SHP-2 strongly engage with the unphosphorylated N-ITIM of 3DL1-cyto, while binding of the tandem SHP-2 SH2 domains to the bis-phosphorylated ITIMs results in more extensive conformational changes in segments I and III. The findings enhance our understanding of KIR function and how ITIMs in a target receptor operate in concert to engage the tandem SH2 domains of SHP-2."	"SHP1 and SHP2 inhibition enhances the pro-differentiative effect of phorbol esters: an alternative approach against acute myeloid leukemia. The differentiation-based therapy for acute promyelocytic leukemia (APL) is an inspiring example for the search of novel strategies aimed at treatment of other subtypes of acute myeloid leukemia (AML). Thus, the discovery of new molecular players in cell differentiation becomes a paramount research area to achieve this goal. Here, the involvement of the protein tyrosine phosphatases SHP1 and SHP2 on leukemic cells differentiation is shown, along with the therapeutic possibilities of their targeting to enhance the differentiation induction effect of phorbol esters. The oxidation status and enzymatic activity of SHP1 and SHP2 during PMA-induced differentiation of HEL cells was evaluated. Additionally, the effects of RNAi-mediated downregulation of these phosphatases on cell differentiation was studied. Afterwards, the impact of chemical inhibition of SHP1 and SHP2 on differentiation both in the presence and absence of phorbol esters was tested. Finally, the anti-leukemic potential of phorbol esters and chemical inhibitors of SHP1 and SHP2 was addressed in several AML model cell lines, a xenograft mouse model and AML primary cells in vitro. An increase of oxidation with a concomitant decrease of activity was observed for both phosphatases at the onset of PMA-induced differentiation. Consistently, silencing of these proteins favored the process, with an enhanced effect upon their simultaneous downregulation. Moreover, the proteins SRC and β-catenin were identified as downstream targets of SHP1 and SHP2 in this context. In agreement with these findings, chemical inhibition of the phosphatases promoted cell differentiation itself and enhanced the effect of phorbol esters. Interestingly, treatment with the phorbol ester prostratin and the dual inhibitor of SHP1 and SHP2 NSC87877 synergistically hampered the proliferation of AML cell lines, prolonged the survival of xenografted mice and reduced the clonogenic potential of AML primary cells. SHP1 and SHP2 are relevant mediators of differentiation in AML cells and their inhibition either alone or in combination with prostratin seems a promising differentiation-based therapeutic strategy against different subtypes of AML beyond APL."	"Prevalence of pathogenic and likely pathogenic variants in the RASopathy genes in patients who have had panel testing for cardiomyopathy. RASopathies are a group of developmental disorders caused by pathogenic variants in the RAS-MAPK pathway. Cardiomyopathy is a major feature of this group of disorders, specifically hypertrophic cardiomyopathy (HCM). HCM can be the first presenting feature in individuals with RASopathies. We conducted a retrospective study of all individuals who have had a cardiomyopathy gene panel ordered through our institution to determine the prevalence of pathogenic or likely pathogenic variants in RAS pathway genes in individuals with cardiomyopathy. We evaluated variants in the following genes: BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NF1, NRAS, PTPN11, RAF1, SHOC2, and SOS1. We reviewed 74 cases with cardiomyopathy, including 32 with HCM, 24 with dilated cardiomyopathy (DCM), nine with both left ventricular noncompaction (LVNC) and DCM, four with LVNC only, two with arrhythmogenic right ventricular cardiomyopathy (ARVC) and three with unspecified cardiomyopathy. We identified four patients (5.41%) with pathogenic or likely pathogenic variants in HRAS, PTPN11 and RAF1 (two individuals). Indication for testing for all four individuals was HCM. The prevalence of pathogenic or likely pathogenic variants in RASopathy genes in our HCM patient cohort is 12.5% (4/32). We conclude that the RASopathy genes should be included on multi-gene panels for cardiomyopathy to increase diagnostic yield for individuals with HCM."	"Genetic mechanisms of primary chemotherapy resistance in pediatric acute myeloid leukemia. Acute myeloid leukemias (AML) are characterized by mutations of tumor suppressor and oncogenes, involving distinct genes in adults and children. While certain mutations have been associated with the increased risk of AML relapse, the genomic landscape of primary chemotherapy-resistant AML is not well defined. As part of the TARGET initiative, we performed whole-genome DNA and transcriptome RNA and miRNA sequencing analysis of pediatric AML with failure of induction chemotherapy. We identified at least three genetic groups of patients with induction failure, including those with NUP98 rearrangements, somatic mutations of WT1 in the absence of apparent NUP98 mutations, and additional recurrent variants including those in KMT2C and MLLT10. Comparison of specimens before and after chemotherapy revealed distinct and invariant gene expression programs. While exhibiting overt therapy resistance, these leukemias nonetheless showed diverse forms of clonal evolution upon chemotherapy exposure. This included selection for mutant alleles of FRMD8, DHX32, PIK3R1, SHANK3, MKLN1, as well as persistence of WT1 and TP53 mutant clones, and elimination of FLT3, PTPN11, and NRAS mutant clones. These findings delineate genetic mechanisms of primary chemotherapy resistance in pediatric AML, which should inform improved approaches for its diagnosis and therapy."	"High Prevalence of Growth Plate Gene Variants in Children With Familial Short Stature Treated With GH. Familial short stature (FSS) is a term describing a growth disorder that is vertically transmitted. Milder forms may result from the combined effect of multiple genes; more severe short stature is suggestive of a monogenic condition. The etiology of most FSS cases has not been thoroughly elucidated to date. To identify the genetic etiology of severe FSS in children treated with GH because of the diagnosis of small for gestational age or GH deficiency (SGA/GHD). Of 736 children treated with GH because of GHD/SGA, 33 with severe FSS (life-minimum height -2.5 SD or less in both the patient and shorter parent) were included in the study. The genetic etiology was known in 5 of 33 children prior to the study [ACAN (in 2], NF1, PTPN11, and SOS1). In the remaining 28 of 33, whole-exome sequencing was performed. The results were evaluated using American College of Medical Genetics and Genomics standards and guidelines. In 30 of 33 children (90%), we found at least one variant with potential clinical significance in genes known to affect growth. A genetic cause was elucidated in 17 of 33 (52%). Of these children, variants in growth plate-related genes were found in 9 of 17 [COL2A1, COL11A1, and ACAN (all in 2), FLNB, FGFR3, and IGF1R], and IGF-associated proteins were affected in 2 of 17 (IGFALS and HMGA2). In the remaining 6 of 17, the discovered genetic mechanisms were miscellaneous (TRHR, MBTPS2, GHSR, NF1, PTPN11, and SOS1). Single-gene variants are frequent among families with severe FSS, with variants affecting the growth plate being the most prevalent."	"Immune and genomic correlates of response to anti-PD-1 immunotherapy in glioblastoma. Immune checkpoint inhibitors have been successful across several tumor types; however, their efficacy has been uncommon and unpredictable in glioblastomas (GBM), where &lt;10% of patients show long-term responses. To understand the molecular determinants of immunotherapeutic response in GBM, we longitudinally profiled 66 patients, including 17 long-term responders, during standard therapy and after treatment with PD-1 inhibitors (nivolumab or pembrolizumab). Genomic and transcriptomic analysis revealed a significant enrichment of PTEN mutations associated with immunosuppressive expression signatures in non-responders, and an enrichment of MAPK pathway alterations (PTPN11, BRAF) in responders. Responsive tumors were also associated with branched patterns of evolution from the elimination of neoepitopes as well as with differences in T cell clonal diversity and tumor microenvironment profiles. Our study shows that clinical response to anti-PD-1 immunotherapy in GBM is associated with specific molecular alterations, immune expression signatures, and immune infiltration that reflect the tumor's clonal evolution during treatment."	"Clinical and mutation profile of pediatric patients with RASopathy-associated hypertrophic cardiomyopathy: results from a Chinese cohort. The RASopathies are a class of developmental disorders caused by germline mutations in the RAS-mitogen-activated protein kinase (MAPK) pathway. Hypertrophic cardiomyopathy (HCM) has been frequently described in children with RASopathy, but only a minority of patients have received formal genotyping. The purpose of this study was to evaluate the genetic basis and clinical outcome of pediatric patients with RASopathy-associated HCM. We retrospectively reviewed the mutation spectrum and clinical outcome of all the patients with RASopathy derived from 168 pediatric HCM cases referred to our institution between January 2012 and July 2018. A heterozygous missense mutation in one of known RASopathy genes was identified in 46 unrelated children with HCM. Mutations in the PTPN11 gene were the most prevalent (19/46); this was followed by mutations in RAF1 (11/46), KRAS (5/46), RIT1 (4/46), BRAF (3/46), SOS1 (2/46), HRAS (1/46), and SHOC2 (1/46). Moreover, two compound heterozygous missense mutations in the LZTR1 gene were identified in one patient with the Noonan syndrome phenotype and HCM. The median age at the diagnosis of HCM was 3.0 months (range 0 months to 8.1 years). Twenty-one of the patients had significant left ventricular outflow tract obstruction and 32 had concomitant congenital heart disease. Three patients with a mutation in exon 13 of the PTPN11 gene died of cardiac failure at the ages of 3.0, 3.5, and 6.0 months. The remaining 44 patients were alive after an average follow-up time of 3.9 years (0.5 to 17.1 years, median 2.9 years) from the initial diagnosis of HCM, including 5 patients with spontaneous regression of their cardiac hypertrophy. RASopathy-associated HCM is a heterogeneous genetic condition characterized by early-onset cardiac hypertrophy and a high prevalence of co-existing congenital heart disease, which is most frequently related to specific mutations in the PTPN11 gene. Rapidly progressive HCM, resulting in an early death, is uncommon in RASopathy patients except those with specific mutations in exon 13 of the PTPN11 gene."	"Occurrence of high-grade glioma in Noonan syndrome: Report of two cases. Noonan syndrome (NS) is an autosomal dominant disorder commonly caused by PTPN11 germline mutations. Patients are characterized by short stature, congenital heart defects, facial dysmorphism, and increased risk of malignancies including brain tumors. Commonly associated brain tumors are dysembryoplastic neuroepithelial tumor and low-grade glioma. We report two cases of anaplastic astrocytoma with PTPN11-related NS. We conducted a systematic search of medical databases looking for other reported cases of high-grade glioma associated with NS and identified 24 cases of brain tumors, all of which were low-grade glial or glioneuronal tumors except for one case of medulloblastoma."	"Sequentially inducible mouse models reveal that Npm1 mutation causes malignant transformation of Dnmt3a-mutant clonal hematopoiesis. Clonal hematopoiesis (CH) is a common aging-associated condition with increased risk of hematologic malignancy. Knowledge of the mechanisms driving evolution from CH to overt malignancy has been hampered by a lack of in vivo models that orthogonally activate mutant alleles. Here, we develop independently regulatable mutations in DNA methyltransferase 3A (Dnmt3a) and nucleophosmin 1 (Npm1), observed in human CH and AML, respectively. We find Dnmt3a mutation expands hematopoietic stem and multipotent progenitor cells (HSC/MPPs), modeling CH. Induction of mutant Npm1 after development of Dnmt3a-mutant CH causes progression to myeloproliferative disorder (MPD), and more aggressive MPD is observed with longer latency between mutations. MPDs uniformly progress to acute myeloid leukemia (AML) following transplant, accompanied by a decrease in HSC/MPPs and an increase in myeloid-restricted progenitors, the latter of which propagate AML in tertiary recipient mice. At a molecular level, progression of CH to MPD is accompanied by selection for mutations activating Ras/Raf/MAPK signaling. Progression to AML is characterized by additional oncogenic signaling mutations (Ptpn11, Pik3r1, Flt3) and/or mutations in epigenetic regulators (Hdac1, Idh1, Arid1a). Together, our study demonstrates that Npm1 mutation drives evolution of Dnmt3a-mutant CH to AML and rate of disease progression is accelerated with longer latency of CH."	"Induction of phosphatase shatterproof 2 by evodiamine suppresses the proliferation and invasion of human cholangiocarcinoma. Cholangiocarcinoma (CCA) is one of the most common fatal carcinomas and is well known to be lack of effective treatment. Thus, novel therapeutic strategies are greatly needed. Evodiamine, a quinozole alkaloid isolated from evodia rutaecarpa Bentham, has been demonstrated to exhibit anti-tumor effects on many cancer cells. However, little is known in terms of the effects on cholangiocarcinoma. In this study, we studied whether this traditional Chinese Medicine could serve as new potential therapeutic drugs to treat CCA. We discovered that evodiamine inhibited CCA cell proliferation and induced apoptosis. Moreover, evodiamine inhibited CCA cell migration and invasion. Mechanistically, our studies demonstrated that evodiamine inhibited the activation of IL-6 -induced STAT3 signaling activation, and the inhibitory effect was likely due to the upregulation of phosphatase shatterproof 2 (SHP-2), a negative feedback regulator of IL-6/STAT3. Blockage of SHP-2 through small interference RNA (siRNA) abolished the evodiamine -induced IL-6/STAT3 signaling inhibition. Moreover, in vivo experiment showed evodiamine inhibited the tumor growth of nude mice bearing TFK-1 xenografts. In summary, our results implied evodiamine as a promising anti-cancer agent in the treatment of CCA, and the mechanism is likely due to the inhibition of IL-6/STAT3 signaling with upregulating the expression levels of SHP-2."	"Juvenile myelomonocytic leukemia: who's the driver at the wheel? Juvenile myelomonocytic leukemia (JMML) is a unique clonal hematopoietic disorder of early childhood. It is classified as an overlap myeloproliferative/myelodysplastic neoplasm by the World Health Organization and shares some features with chronic myelomonocytic leukemia in adults. JMML pathobiology is characterized by constitutive activation of the Ras signal transduction pathway. About 90% of patients harbor molecular alterations in 1 of 5 genes (PTPN11, NRAS, KRAS, NF1, or CBL), which define genetically and clinically distinct subtypes. Three of these subtypes, PTPN11-, NRAS-, and KRAS-mutated JMML, are characterized by heterozygous somatic gain-of-function mutations in nonsyndromic children, whereas 2 subtypes, JMML in neurofibromatosis type 1 and JMML in children with CBL syndrome, are defined by germline Ras disease and acquired biallelic inactivation of the respective genes in hematopoietic cells. The clinical course of the disease varies widely and can in part be predicted by age, level of hemoglobin F, and platelet count. The majority of children require allogeneic hematopoietic stem cell transplantation for long-term leukemia-free survival, but the disease will eventually resolve spontaneously in ∼15% of patients, rendering the prospective identification of these cases a clinical necessity. Most recently, genome-wide DNA methylation profiles identified distinct methylation signatures correlating with clinical and genetic features and highly predictive for outcome. Understanding the genomic and epigenomic basis of JMML will not only greatly improve precise decision making but also be fundamental for drug development and future collaborative trials."	"Noonan Syndrome Case Report: PTPN11 and Other Potential Genetic Factors Contributing to Lethal Hypertrophic Right Ventricular Cardiomyopathy. Noonan syndrome is a genetic condition with a heterogeneous phenotype and multisystem involvement. The pathogenesis of this disorder has been attributed to the mutations in the RAS/MAPK signaling pathway involved in cell proliferation and differentiation. The most common clinical presentations are related to cardiovascular abnormalities with congestive heart failure as the most common mechanism of death. We present the autopsy findings from a Noonan syndrome patient who died as a result of an unusual form of right ventricular obstruction associated with a rare PTPN11 variant previously reported without details of the cardiac findings. Discussion follows that includes overview of the incidence, genetic causes, types of right-sided obstructive lesions, PTPN11 genotype-cardiac phenotype correlations, and other potential mechanisms that may contribute to disease heterogeneity."	"Generation of an induced pluripotent stem cell line (TRNDi003-A) from a Noonan syndrome with multiple lentigines (NSML) patient carrying a p.Q510P mutation in the PTPN11 gene. Noonan syndrome with multiple lentigines (NSML), formerly known as LEOPARD Syndrome, is a rare autosomal dominant disorder. Approximately 90% of NSML cases are caused by missense mutations in the PTPN11 gene which encodes the protein tyrosine phosphatase SHP2. A human induced pluripotent stem cell (iPSC) line was generated using peripheral blood mononuclear cells (PBMCs) from a patient with NSML that carries a gene mutation of p.Q510P on the PTPN11 gene using non-integrating Sendai virus technique. This iPSC line offers a useful resource to study the disease pathophysiology and a cell-based model for drug development to treat NSML."	"Multifocal Pigmented Villonodular Synovitis in the Noonan Syndrome. Noonan-like/multiple giant cell lesion (NS/MGCL) is a rare condition overlapping with Noonan syndrome. Once thought to be a specific and separate entity, it is now suggested to be a variant of the Noonan syndrome spectrum. We report the case of an 8-year-old boy with a typical clinical picture of Noonan syndrome with a de novo germline mutation of PTPN11 (c.854 T&gt;C). During his follow-up, the patient developed multifocal pigmented villonodular synovitis which first affected the left knee and shortly after both elbows."	"Identification of diverse activating mutations of the RAS-MAPK pathway in histiocytic sarcoma. Recent studies have demonstrated recurrent activating mutations involving the classical MAPK and PI3K signaling pathways in a large proportion of histiocytic neoplasms, such as Langerhans cell histiocytosis. However, very little is known about the molecular genetics of histiocytic sarcoma, a rare aggressive malignant neoplasm that shows pathologic characteristics of mature macrophages. Here we report the genomic characteristics of a large cohort of histiocytic sarcomas (n = 28) using a targeted next-generation sequencing approach to identify driver alterations. We identified recurrent mutations involving the RAS-MAPK signaling pathway (MAP2K1, KRAS, NRAS, BRAF, PTPN11, NF1, CBL) in a majority (57%) of histiocytic sarcoma cases and report a clinical response to a MEK inhibitor (Cobimetinib) in a patient with a NF1-mutated histiocytic sarcoma. A smaller subset of cases (21%) also showed mutations resulting in activation of the PI3K signaling pathway (PTEN, MTOR, PIK3R1, PIK3CA). In addition, the tumor-suppressor gene CDKN2A was the most frequently altered gene (46%). Further, a subset of histiocytic sarcoma cases shows striking molecular genetic similarities to B cell lymphomas, supporting a clonal relationship between B cell neoplasms and a subset of histiocytic sarcomas. These findings support a cooperative role for MAPK, PI3K, and cyclin-CDK4/6-INK4 signaling in the pathogenesis of histiocytic sarcoma and provide a rational basis for targeting these pathways."	"Mutational profile of colorectal cancer lung metastases and paired primary tumors by targeted next generation sequencing: implications on clinical outcome after surgery. Pulmonary metastasectomy is one of the cornerstones in the treatment of oligometastatic colorectal cancer (CRC). However, the selection of patients who benefit from a surgical resection is difficult. Mutational profiling has become an essential part of diagnosis and treatment of malignant disease. Despite this, comprehensive data on the mutational profile of CRC and its clinical impact in the context of pulmonary metastasectomy is sparse. We therefore aimed to provide a complete mutational status of CRC pulmonary metastases (PM) and corresponding primary tumors by targeted next-generation sequencing (tNGS), and correlate sequencing data with clinical outcome variables. Case-matched, formalin-fixed paraffin embedded surgical specimens of lung metastases (n=47) and matched primary CRC (n=24) were sequenced using the TruSeq Amplicon Cancer Panel (Illumina platform). Penalized Cox regression models were applied to identify mutations with prognostic impact. Mutations were found most frequently in APC, TP53 and KRAS, in both PM and matched primary tumors. Concordance between primary tumors and PM was 83.5%. Adaptive elastic-net regularized Cox regression models identified mutations being prognostic for time to pulmonary recurrence (EGFR, GNAQ, KIT, MET, and PTPN11) and for overall survival (OS) (PDGFRA, SMARCB1, and TP53). Our findings suggest that CRC PM harbor a variety of conserved and de novo mutations. We could identify a mutational profile predicting clinical outcome after pulmonary metastasectomy. Moreover, our data provide a rationale for future targeted therapies of patients with CRC lung metastases."	"Phosphatase Shp2 exacerbates intestinal inflammation by disrupting macrophage responsiveness to interleukin-10. Inflammatory cytokines produced by activated macrophages largely contribute to the pathological signs of inflammatory bowel disease (IBD). Interleukin-10 (IL-10) is the predominant anti-inflammatory cytokine in the intestine, and its therapeutic efficacy for IBD has been clinically tested. Nevertheless, how the function of IL-10 is regulated in the intestinal microenvironment remains unknown, which largely hinders the further development of IL-10-based therapeutic strategies. Here, we found that the expression of phosphatase Shp2 was increased in colonic macrophages and blood monocytes from IBD patients compared with those from healthy controls. Shp2 deficiency in macrophages protects mice from colitis and colitis-driven colon cancer. Mechanistically, Shp2 disrupts IL-10-STAT3 signaling and its dependent anti-inflammatory response in human and mouse macrophages. Furthermore, a Shp2-inducing role of TNF-α is unveiled in our study. Collectively, our work identifies Shp2 as a detrimental factor for intestinal immune homeostasis and hopefully will be helpful in the future exploitation of IL-10 immunotherapy for IBD."	"Multigene Sequencing Analysis of Children Born Small for Gestational Age With Isolated Short Stature. Patients born small for gestational age (SGA) who present with persistent short stature could have an underlying genetic etiology that will account for prenatal and postnatal growth impairment. We applied a unique massive parallel sequencing approach in cohort of patients with exclusively nonsyndromic SGA to simultaneously interrogate for clinically substantial genetic variants. To perform a genetic investigation of children with isolated short stature born SGA. Screening by exome (n = 16) or targeted gene panel (n = 39) sequencing. Tertiary referral center for growth disorders. We selected 55 patients born SGA with persistent short stature without an identified cause of short stature. Frequency of pathogenic findings. We identified heterozygous pathogenic or likely pathogenic genetic variants in 8 of 55 patients, all in genes already associated with growth disorders. Four of the genes are associated with growth plate development, IHH (n = 2), NPR2 (n = 2), SHOX (n = 1), and ACAN (n = 1), and two are involved in the RAS/MAPK pathway, PTPN11 (n = 1) and NF1 (n = 1). None of these patients had clinical findings that allowed for a clinical diagnosis. Seven patients were SGA only for length and one was SGA for both length and weight. These genomic approaches identified pathogenic or likely pathogenic genetic variants in 8 of 55 patients (15%). Six of the eight patients carried variants in genes associated with growth plate development, indicating that mild forms of skeletal dysplasia could be a cause of growth disorders in this group of patients."	"A tyrosine kinase-activating variant Asn666Ser in PDGFRB causes a progeria-like condition in the severe end of Penttinen syndrome. Missense variants located to the &quot;molecular brake&quot; in the tyrosine kinase hinge region of platelet-derived growth factor receptor-β, encoded by PFGFRB, can cause Penttinen-type (Val665Ala) and Penttinen-like (Asn666His) premature ageing syndromes, as well as infantile myofibromatosis (Asn666Lys and Pro660Thr). We have found the same de novo PDGFRB c.1997A&gt;G p.(Asn666Ser) variants in two patients with lipodystrophy, acro-osteolysis and severely reduced vision due to corneal neovascularisation, reminiscent of a severe form of Penttinen syndrome with more pronounced connective tissue destruction. In line with this phenotype, patient skin fibroblasts were prone to apoptosis. Both in patient fibroblasts and stably transduced HeLa and HEK293 cells, autophosphorylation of PDGFRβ was observed, as well as increased phosphorylation of downstream signalling proteins such as STAT1, PLCγ1, PTPN11/SHP2-Tyr580 and AKT. Phosphorylation of MAPK3 (ERK1) and PTPN11/SHP2-Tyr542 appeared unaffected. This suggests that this missense change not only weakens tyrosine kinase autoinhibition, but also influences substrate binding, as both PTPN11 tyrosines (Tyr542 and Tyr580) usually are phosphorylated upon PDGFR activation. Imatinib was a strong inhibitor of phosphorylation of all these targets, suggesting an option for precision medicine based treatment."	"Pathogenic gene screening in 91 Chinese patients with short stature of unknown etiology with a targeted next-generation sequencing panel. Dwarfism is a common severe growth disorder, but the etiology is unclear in the majority of cases. Recombinant human growth hormone may be a treatment option, but it has limited efficacy. The currently known laboratory assays do not meet the precision requirements for clinical diagnosis. Here, we have constructed a targeted next-generation sequencing (NGS) panel of selected genes that are suspected to be associated with dwarfism for genetic screening. Genetic screening of 91 children with short stature of unknown etiology was performed with the help of the NGS panel. All the coding regions and exon-intron boundaries of 166 genes were included in the panel. To clarify the pathogenicity of these mutations, their clinical data were reviewed and analyzed. The assay identified p.A72G, p.I282V, and p.P491S variants of the PTPN11 gene and a p.I437T variant of the SOS1 gene in 4 cases with Noonan syndrome. A frameshift mutation (p.D2407fs) of the ACAN gene was identified in a case of idiopathic short stature with moderately advanced bone age. A p.R904C variant of the COL2A1 gene was found in a patient, who was accordingly diagnosed with Stickler syndrome. Severe short stature without limb deformity was associated with a p.G11A variant of HOXD13. In addition, we evaluated evidence that a p.D401N variant of the COMP gene may cause multiple epiphyseal dysplasia. Our findings suggest that syndromes, particularly Noonan syndrome, may be overlooked due to atypical clinical features. This gene panel has been verified to be effective for the rapid screening of genetic etiologies associated with short stature and for guiding precision medicine-based clinical management."	"Genomic alterations associated with HER2+ breast cancer risk and clinical outcome in response to trastuzumab. Human epidermal growth factor receptor 2 positive (HER2+) breast cancer (BC) is an aggressive BC subtype characterized by HER2 overexpression/amplification. Genomic alterations of HER2 and others have been reported to be associated with, HER2 overexpression and prediction of trastuzumab-response. Here, we aimed at identifying germline and somatic alterations associated with HER2+ BC and evaluating their association with clinical outcome in response to trastuzumab therapy given to HER2+ BC patients. Global Sequencing Array (GSA) and polymerase chain reaction-restriction length polymorphism (PCR-RFLP) techniques were used to determine alterations in HER2 and other HER2-interacting as well as signaling-related genes in HER2+ BC. In addition, 20 formalin fixed paraffin-embedded tissue samples were also evaluated by GSA for identifying significant variations associated with HER + BC as well as response to trastuzumab therapy. A germline variant in HER2 (I655V) was found to be significantly associated with the risk of the disease (p &lt; 0.01). A nonsense mutation in PTPN11 (K99X), a pathogenic CCND1 splice site variant (P241P), a hotspot missense mutation in PIK3CA (E542K) and a hotspot missense mutation in TP53 (R249S); were observed in 25%, 75%, 30% and 40% of the HER2+ BC tissue samples, respectively. Mutant CCND1 (P241P) and PIK3CA (E542K) were found to be significantly associated with reduced disease-free survival (DFS) in patients treated with trastuzumab (p: 0.018 and 0.005, respectively). These results indicate that HER2, PTPN11, CCND1 and PIK3CA genes are important biomarkers in HER2+ BC. Moreover, the patients harboring mutant CCND1 and PIK3CA exhibit a poorer clinical outcome as compared to those carrying wild-type CCND1 and PIK3CA."	"Exploring the reason for increased activity of SHP2 caused by D61Y mutation through molecular dynamics. Juvenile myelomonocytic leukaemia, an aggressive myeloproliferative neoplasm, is characterized by thrombocytopenia, splenomegaly, fever and excess myelomonocytic cells. Approximately 35% of patients with JMML occur D61Y mutation in PTPN11, and it increases the activity of the protein. However, the effect of the D61Y mutation on SHP2 conformations in molecular basis is poorly understood. Therefore, the molecular dynamics simulations on SHP2-D61Y and SHP2-WT were performed to explore the effect of D61Y mutation on SHP2 and explain the reason for high activity of SHP2-D61Y mutant. The study on the RMSF, per-residue RMSD, PCA, DCCM and secondary structure found that the flexibilities of regions (residues His458-Ser460 and Gln506-Ala509) in SHP2-D61Y were higher than the corresponding regions in SHP2-WT, and the conformations of these regions almost transformed from α-helix and β-strand to Turn, respectively. Thus, the catalytical sites in the PTP domain (residues Asn217-Thr524) were exposed to the substrate easily, which contributed to the enhancement of SHP2-D61Y activity. Moreover, the residue interaction network, H bond occupancy and binding free energy were calculated, revealing that conformational difference were caused by distinctions in residue-residue interactions between Asp/Tyr61-Gln506, Gln506-Gln510, Gln506-Phe251, Gln506-Gly60, Gln506-Tyr63, Asp/Tyr61-Cys459, Cys459-Ile463 and Cys459-Arg465. The study here may offer the valuable information to explore the reason for the increased activity of SHP2 after D61Y-mutation."	"JMML genomics and decisions. Juvenile myelomonocytic leukemia (JMML) is a unique clonal hematopoietic disorder of early childhood characterized by hyperactivation of the RAS signal transduction pathway. Approximately 90% of patients harbor molecular alteration in 1 of 5 genes (PTPN11, NRAS, KRAS, NF1, CBL), which define genetically and clinically distinct JMML subtypes. Three subtypes, PTPN11- , NRAS-, and KRAS-mutated JMML, are characterized by heterozygous somatic gain-of-function mutations in non syndromic children, while two subtypes, JMML in neurofibromatosis type 1 and in JMML in children with CBL syndrome, are characterized by germ line RAS disease and acquired biallelic inactivation of the respective tumor suppressor genes in hematopoietic cells. In addition to the initiating RAS pathway lesion, secondary genetic alterations within and outside of the RAS pathway are detected in about half the patients. Most recently, genome-wide DNA methylation profiles identified distinct methylation signatures correlating with clinical and genetic features and highly predictive of outcome. JMML is a stem cell disorder, and most JMML patients require allogeneic stem cell transplantation for long-term survival. However, spontaneous disease regression is noted in the majority of children with CBL-mutated JMML and in some NRAS-mutated cases. In the absence of 1 of the 5 canonical RAS pathway alteration, rare mutations in other RAS genes and non-JMML myeloproliferative disorders need to be excluded. Understanding the genetic basis of myeloproliferative disorders in early childhood will greatly improve clinical decision making."	"Comparison of effectiveness of growth hormone therapy according to disease-causing genes in children with Noonan syndrome. To analyze the growth response to growth hormone (GH) therapy in prepubertal patients with Noonan syndrome (NS) harboring different genetic mutations. Twenty-three patients with prepubertal NS treated at Pusan National University Children's Hospital between March 2009 and July 2017 were enrolled. According to the disease-causing genes identified, the patients with NS were divided into 4 groups. Three groups were positive for mutations of the PTPN11, RAF1, and SOS1 genes. The five genes undetected (FGU) group was negative for PTPN11, RAF1, SOS1, KRAS, and BRAF gene mutations. The influence of genotype was retrospectively analyzed by comparing the growth parameters after GH therapy. The mean chronological age at the start of GH treatment was 5.85±2.67 years. At the beginning of the GH treatment, the height standard deviation score (SDS), growth velocity (GV), and lower levels of insulin-like growth factor-1 (IGF)-1 levels were not statistically different among the groups. All the 23 NS patients had significantly increased height SDS and serum IGF-1 level during the 3 years of treatment. GV was highest during the first year of treatment. During the 3 years of GH therapy, the PTPN11, RAF1, and SOS1 groups showed less improvement in height SDS, IGF-1 SDS, and GV, and less increase in bone age-to-chronological age ratio than the FGU group. The 3-year GH therapy in the 23 prepubertal patients with NS was effective in improving height SDS, GV, and serum IGF-1 levels. The FGU group showed a better response to recombinant human GH therapy than the PTPN11, RAF1, and SOS1 groups."	"Atypical coronary artery aneurysms due to Kawasaki disease in Noonan syndrome with a novel PTPN11 mutation. We report a 3-year-old boy with giant and atypical coronary artery aneurysms in the acute phase of Kawasaki disease, despite appropriate therapeutic intervention, in Noonan syndrome with a novel heterozygous PTPN11 mutation, c. 907 G&amp;gt;A (p.Asp303Asn). We hypothesised that this PTPN11 mutation might affect both hyperinflammation caused by Kawasaki disease and vascular fragility in the coronary artery, resulting in coronary artery aneurysms."	"SHP-2 is activated in response to force on E-cadherin and dephosphorylates vinculin Y822. The response of cells to mechanical inputs is a key determinant of cell behavior. In response to external forces, E-cadherin initiates signal transduction cascades that allow the cell to modulate its contractility to withstand the force. Much attention has focused on identifying the E-cadherin signaling pathways that promote contractility, but the negative regulators remain undefined. In this study, we identify SHP-2 as a force-activated phosphatase that negatively regulates E-cadherin force transmission by dephosphorylating vinculin Y822. To specifically probe a role for SHP-2 in E-cadherin mechanotransduction, we mutated vinculin so that it retains its phosphorylation but cannot be dephosphorylated. Cells expressing the mutant vinculin have increased contractility. This work provides a mechanism for inactivating E-cadherin mechanotransduction and provides a new method for specifically targeting the action of phosphatases in cells."	"Integrin-linked kinase (ILK) and src homology 2 domain-containing phosphatase 2 (SHP2): Novel targets in EGFR-mutation positive non-small cell lung cancer (NSCLC). The activation of multiple signaling pathways jeopardizes the clinical efficacy of EGFR tyrosine kinase inhibitors (TKIs) in EGFR-mutation positive non-small cell lung cancer (NSCLC). Integrin-linked kinase (ILK) regulates the interactions between tumor cells and extracellular environment to activate signaling pathways and promote cell proliferation, migration, and epithelial-mesenchymal transition. Src homology 2 domain-containing phosphatase 2 (SHP2) is essential for receptor tyrosine kinase signaling and mitogen-activated protein kinase (MAPK) pathway activation. We analyzed tumor ILK, β-receptor subunit glycoprotein 130 (gp130), SHP2, and stromal hepatocyte growth factor (HGF) and interleukin-6 (IL-6) mRNA expression in baseline tumor specimens of advanced EGFR-mutation positive NSCLC patients treated with EGFR TKIs. ILK, when highly expressed, was an independent poor prognostic factor for the progression-free survival of the patients, both in the univariate (hazard ratio [HR for disease progression, 2.49; 95% CI, 1.37-4.52; P = .0020]) and in the multivariate (HR 3.74; 95% CI, 1.33-10.56; P = .0126) Cox regression model. Patients with high SHP2 expression had an almost 13-month shorter progression-free survival (P = .0094) and an 18-month shorter overall survival (P = .0182) in comparison to those with low SHP2 mRNA expression. The levels of ILK and SHP2 could be predictive for upfront combinatory therapy of EGFR TKIs plus SHP2 or ILK inhibitors. FUND: A grant from La Caixa Foundation, an Instituto de Salud Carlos III grant (RESPONSE, PIE16/00011), an Instituto de Salud Carlos III grant (PI14/01678), a Marie Skłodowska-Curie Innovative Training Networks European Grant (ELBA No 765492) and a Spanish Association Against Cancer (AECC) grant (PROYE18012ROSE)."	"SHP2 regulates intramembranous ossification by modifying the TGFβ and BMP2 signaling pathway. SHP2 is a ubiquitously expressed protein tyrosine phosphatase, which is involved in many signaling pathways to regulate the skeletal development. In endochondral ossification, SHP2 is known to modify the osteogenic fate of osteochondroprogenitors and to impair the osteoblastic transdifferentiation of hypertrophic chondrocytes. However, how SHP2 regulates osteoblast differentiation in intramembranous ossification remains incompletely understood. To address this question, we generated a mouse model to ablate SHP2 in the Prrx1-expressing mesenchymal progenitors by using &quot;Cre-loxP&quot;-mediated gene excision and examined the development of calvarial bone, in which the main process of bone formation is intramembranous ossification. Phenotypic characterization showed that SHP2 mutants have severe defects in calvarial bone formation. Cell lineage tracing and in situ hybridization data showed less osteoblast differentiation of mesenchymal cells and reduced osteogenic genes expression, respectively. Further mechanistic studies revealed enhanced TGFβ and suppressed BMP2 signaling in SHP2 ablated mesenchymal progenitors and their derivatives. Our study uncovered the critical role of SHP2 in osteoblast differentiation through intramembranous ossification and might provide a potential target to treat craniofacial skeleton disorders."	"Conditional knockout of SHP2 in ErbB2 transgenic mice or inhibition in HER2-amplified breast cancer cell lines blocks oncogene expression and tumorigenesis. Overexpression of the human epidermal growth factor receptor 2 (HER2) is the cause of HER2-positive breast cancer (BC). Although HER2-inactivating therapies have benefited BC patients, development of resistance and disease recurrence have been the major clinical problems, pointing to a need for alternative therapeutic strategies. For that to happen, proteins that play critical roles in the biology of HER2-induced tumorigenesis have to be identified and characterized. Here, we show that the Src homology phosphotyrosyl phosphatase 2 (Shp2) encoded by the Ptpn11 gene is a requisite for ErbB2-induced tumorigenesis. We report that conditional knockout of Shp2 alleles in the ErbB2 BC model mice abrogates mammary tumorigenesis by blocking the expression of the ErbB2 transgene. We also show that inhibition of SHP2 encoded by the PTPN11 gene in the HER2-amplified BC cells induces a normal-like cellular phenotype and suppresses tumorigenesis and metastasis by blocking HER2 overexpression. These findings demonstrate that ErbB2-induced tumors in mice or xenograft tumors induced by transplantation of HER2-amplified BC cells are vulnerable to SHP2 inhibition since it abrogates the expression of the very oncogene that causes of the disease. This report paves the way for developing SHP2-targeting therapies for BC treatment in the future."	"What biologic factors predict for transformation to AML? Transformation of myelodysplastic syndromes (MDS) into secondary acute myeloid leukemia (sAML) is defined by an arbitrary boundary of ≥20% bone marrow blasts but does not necessarily reflect a defined biological transition. The more obvious distinction lies between MDS patients that have an isolated bone marrow failure phenotype and those with excess blasts. Subtyping of MDS might be more accurately stratified into clonal cytopenias and oligoblastic leukemias, using the degree of dysplasia and blast percentage as risk features, respectively, rather than as diagnostic criteria. Transformation from MDS to sAML often involves clonal evolution or expansion of existing subclones that can be assessed by changes in variant allele frequencies of the somatic mutations that define them. There are a number of predictors for transformation that have been identified: these include mutations of genes in growth signaling pathways (NRAS, KRAS, PTPN11, FLT3), mutations in genes more commonly observed in AML (NPM1, WT1, IDH2), certain cytogenetic abnormalities (monosomy 7, complex karyotype, loss of 17p). Gene expression profiles that divide MDS into two major categories identify a progenitor gene signature subtype associated with a high risk of AML transformation. Assessing for these genetic abnormalities may better identify MDS patients at greatest risk of transformation."	"Heterogeneous mutational profile and prognosis conferred by TP53 mutations in appendiceal mucinous neoplasms. The eighth edition of American Joint Committee on Cancer (AJCC) advocates a 3-tier grading system for appendiceal mucinous tumors. The mutational profile for each tumor grade and the impact of TP53 mutation on survival are unknown. We classified appendiceal mucinous tumors into 3 grades based on the eighth edition of American Joint Committee on Cancer: 21 G1 low-grade mucinous neoplasms, 21 G2 appendiceal adenocarcinomas, and 26 G3 signet ring cell carcinomas. Mutation profiles were obtained using next-generation sequencing. The impact of TP53 on prognosis was investigated by multivariable analysis. Most G1 tumors harbor KRAS/GNAS mutations with TP53 and SMAD4 in a small subset of cases. G2 and G3 tumors show a more complex mutation pattern carrying PIK3CA, BRAF, or TP53 mutations in addition to KRAS/GNAS. PTEN mutations were detected exclusively in G2 tumors. The prevalence of KRAS and GNAS mutations is significantly lower in G3 tumors relative to G1/G2, whereas TP53, PIK3CA, or BRAF mutations are common. Mutations in NRAS, IDH2, CDH1, RB1, CTNNB1, CDKN2A, PTPN11, and KIT genes were observed in single cases. Patients with TP53-mutated disseminated G2 and G3 tumors had worse progression-free survival than did those with wild-type TP53 tumors (P = .0315). A trend toward worse overall survival was observed in TP53-mutated G3 tumors (P = .102). p53 expression correlated with mutation status. We demonstrate a distinct but overlapping pattern of gene mutations in each grade of appendiceal mucinous tumors and the independent impact of TP53 mutation on progression-free survival but not overall survival."	"Small Molecule Inhibitor that Stabilizes the Autoinhibited Conformation of the Oncogenic Tyrosine Phosphatase SHP2. Genetic mutations in the phosphatase PTPN11 (SHP2) are associated with childhood leukemias. These mutations cause hyperactivation of SHP2 due to the disruption of the autoinhibitory conformation. By targeting the activation-associated protein conformational change, we have identified an SHP2 inhibitor ( E)-1-(1-(5-(3-(2,4-dichlorophenyl)acryloyl)-2-ethoxy-4-hydroxybenzyl)-1,2,5,6-tetrahydropyridin-3-yl)-1 H-benzo[ d]imidazol-2(3 H)-one (LY6, 1) using computer-aided drug design database screening combined with cell-based assays. This compound inhibited SHP2 with an IC50 value of 9.8 μM, 7-fold more selective for SHP2 than the highly related SHP1. Fluorescence titration, thermal shift, and microscale thermophoresis quantitative binding assays confirmed its direct binding to SHP2. This compound was further verified to effectively inhibit SHP2-mediated cell signaling and proliferation. Furthermore, mouse and patient leukemia cells with PTPN11 activating mutations were more sensitive to this inhibitor than wild-type cells. This small molecule SHP2 inhibitor has a potential to serve as a lead compound for further optimization studies to develop novel anti-SHP2 therapeutic agents."	"ATF3 Sustains IL-22-Induced STAT3 Phosphorylation to Maintain Mucosal Immunity Through Inhibiting Phosphatases. In gut epithelium, IL-22 transmits signals through STAT3 phosphorylation (pSTAT3) which provides intestinal immunity. Many components in the IL-22-pSTAT3 pathway have been identified as risk factors for inflammatory bowel disease (IBD) and some of them are considered as promising therapeutic targets. However, new perspectives are still needed to understand IL-22-pSTAT3 signaling for effective clinical interventions in IBD patients. Here, we revealed activating transcription factor 3 (ATF3), recently identified to be upregulated in patients with active IBD, as a crucial player in the epithelial IL-22-pSTAT3 signaling cascade. We found ATF3 is central to intestinal homeostasis and provides protection during colitis. Loss of ATF3 led to decreased crypt numbers, more shortened colon length, impaired ileal fucosylation at the steady state, and lethal disease activity during DSS-induced colitis which can be effectively ameliorated by rectal transplantation of wild-type colonic organoids. Epithelial stem cells and Paneth cells form a niche to orchestrate epithelial regeneration and host-microbe interactions, and IL-22-pSTAT3 signaling is a key guardian for this niche. We found ATF3 is critical for niche maintenance as ATF3 deficiency caused compromised stem cell growth and regeneration, as well as Paneth cell degeneration and loss of anti-microbial peptide (AMP)-producing granules, indicative of malfunction of Paneth/stem cell network. Mechanistically, we found IL-22 upregulates ATF3, which is required to relay IL-22 signaling leading to STAT3 phosphorylation and subsequent AMP induction. Intriguingly, ATF3 itself does not act on STAT3 directly, instead ATF3 regulates pSTAT3 by negatively targeting protein tyrosine phosphatases (PTPs) including SHP2 and PTP-Meg2. Furthermore, we identified ATF3 is also involved in IL-6-mediated STAT3 activation in T cells and loss of ATF3 leads to reduced capacity of Th17 cells to produce their signature cytokine IL-22 and IL-17A. Collectively, our results suggest that via IL-22-pSTAT3 signaling in the epithelium and IL-6-pSTAT3 signaling in Th17 cells, ATF3 mediates a cross-regulation in the barrier to maintain mucosal homeostasis and immunity."	"Platelet Shp2 negatively regulates thrombus stability under high shear stress. Essentials Shp2 negatively regulates thrombus stability under pathological shear rate. Shp2 suppresses TXA2 receptor-mediated platelet dense granule secretion. Through αIIbβ3 outside-in signaling, Shp2 targets calmodulin-dependent activation of Akt. Shp2 may serve to prevent the formation of unwanted occlusive thrombi. SUMMARY: Background Perpetuation is the final phase of thrombus formation; however, its mechanisms and regulation are poorly understood. Objective To investigate the mechanism of Shp2 in platelet function and thrombosis. Methods and results We demonstrate that the platelet-expressed Src homology region 2 domain-containing protein tyrosine phosphatase Shp2 is a negative regulator of thrombus stability under high shear stress. In a ferric chloride-induced mesenteric arteriole thrombosis model, megakaryocyte/platelet-specific Shp2-deficient mice showed less thrombi shedding than wild-type mice, although their occlusion times were comparable. In accordance with this in vivo phenotype, a microfluidic whole-blood perfusion assay revealed that the thrombi formed on collagen surfaces by Shp2-deficient platelets were more stable under high shear rates than those produced by wild-type platelets. Whereas Shp2 deficiency did not alter platelet responsiveness towards thrombin, ADP and collagen stimulation, Shp2-deficient platelets showed increased dense granule secretion when stimulated by the thromboxane A2 analog U46619. Shp2 appears to act downstream of integrin αIIb β3 outside-in signaling, inhibiting the phosphorylation of Akt (Ser473 and Thr308) and dense granule secretion. Calmodulin was also shown to bind both Shp2 and Akt, linking Shp2 to Akt activation. Conclusions Platelet Shp2 negatively regulates thrombus perpetuation under high shear stress. This signaling pathway may constitute an important mechanism for the prevention of unwanted occlusive thrombus formation, without dramatically interfering with hemostasis."	"Comparative Network Reconstruction using mixed integer programming. Signal-transduction networks are often aberrated in cancer cells, and new anti-cancer drugs that specifically target oncogenes involved in signaling show great clinical promise. However, the effectiveness of such targeted treatments is often hampered by innate or acquired resistance due to feedbacks, crosstalks or network adaptations in response to drug treatment. A quantitative understanding of these signaling networks and how they differ between cells with different oncogenic mutations or between sensitive and resistant cells can help in addressing this problem. Here, we present Comparative Network Reconstruction (CNR), a computational method to reconstruct signaling networks based on possibly incomplete perturbation data, and to identify which edges differ quantitatively between two or more signaling networks. Prior knowledge about network topology is not required but can straightforwardly be incorporated. We extensively tested our approach using simulated data and applied it to perturbation data from a BRAF mutant, PTPN11 KO cell line that developed resistance to BRAF inhibition. Comparing the reconstructed networks of sensitive and resistant cells suggests that the resistance mechanism involves re-establishing wild-type MAPK signaling, possibly through an alternative RAF-isoform. CNR is available as a python module at https://github.com/NKI-CCB/cnr. Additionally, code to reproduce all figures is available at https://github.com/NKI-CCB/CNR-analyses. Supplementary data are available at Bioinformatics online."	"Dermatological manifestations in Noonan syndrome: a prospective multicentric study of 129 patients positive for mutation. Data on dermatological manifestations of Noonan syndrome (NS) remain heterogeneous and are based on limited dermatological expertise. To describe the dermatological manifestations of NS, compare them with the literature findings, and test for dermatological phenotype-genotype correlations with or without the presence of PTPN11 mutations. We performed a large 4-year, prospective, multicentric, collaborative dermatological and genetic study. Overall, 129 patients with NS were enrolled, including 65 patients with PTPN11-NS, 34 patients with PTPN11-NS with multiple lentigines (NSML), and 30 patients with NS who had a mutation other than PTPN11. Easy bruising was the most frequent dermatological finding in PTPN11-NS, present in 53·8% of patients. Multiple lentigines and café-au-lait macules (n ≥ 3) were present in 94% and 80% of cases of NSML linked to specific mutations of PTPN11, respectively. Atypical forms of NSML could be associated with NS with RAF1 or NRAS mutations. In univariate analysis, patients without a PTPN11 mutation showed (i) a significantly higher frequency of keratinization disorders (P = 0·001), including keratosis pilaris (P = 0·005), ulerythema ophryogenes (P = 0·0001) and palmar and/or plantar hyperkeratosis (P = 0·06, trend association), and (ii) a significantly higher frequency of scarce scalp hair (P = 0·035) and scarce or absent eyelashes (P = 0·06, trend association) than those with PTPN11 mutations. The cutaneous phenotype of NS with a PTPN11 mutation is generally mild and nonspecific, whereas the absence of a PTPN11 mutation is associated with a high frequency of keratinization disorders and hair abnormalities."	"The Landscape of Protein Tyrosine Phosphatase (Shp2) and Cancer. Role of Shp2: The dysregulation of cell signaling cascades associated with the cell differentiation and growth, due to the deletion, insertion or point mutation in specific amino acids which alters the intrinsic conformation of the protein, can ultimately lead to a fatal cancer disease. The protein tyrosine phosphatase has been recognized as a key regulator of extracellular stimuli such as cytokine receptor and receptor tyrosine kinase signaling. In the last era, the PTPN11 gene (encode a Shp2 protein) and its association with acute myeloid, juvenile myelomonocytic, and B-cell acute lymphoblastic leukemia, Noonan syndrome, and myelodysplastic have been recognized as the cause of such deadly disease due to the occurrence of germline mutations in the interface of PTP and SH2 domain. Conclusion: The current study was designed to focus on the allosteric regulation (autoinhibition) of the of Shp2 protein. Subsequently, it will cover the last 10-year recap of Shp2 protein, their role in cancer, and regulation in numerous ways (allosteric regulation)."	"Genetic Basis of Severe Childhood-Onset Cardiomyopathies. Childhood cardiomyopathies are progressive and often lethal disorders, forming the most common cause of heart failure in children. Despite severe outcomes, their genetic background is still poorly characterized. The purpose of this study was to characterize the genetics of severe childhood cardiomyopathies in a countrywide cohort. The authors collected a countrywide cohort, KidCMP, of 66 severe childhood cardiomyopathies from the sole center in Finland performing cardiac transplantation. For genetic diagnosis, next-generation sequencing and subsequent validation using genetic, cell biology, and computational approaches were used. The KidCMP cohort presents remarkable early-onset and severe disorders: the median age of diagnosis was 0.33 years, and 17 patients underwent cardiac transplantation. The authors identified the pathogenic variants in 39% of patients: 46% de novo, 34% recessive, and 20% dominantly-inherited. The authors report NRAP underlying childhood dilated cardiomyopathy, as well as novel phenotypes for known heart disease genes. Some genetic diagnoses have immediate implications for treatment: CALM1 with life-threatening arrhythmias, and TAZ with good cardiac prognosis. The disease genes converge on metabolic causes (PRKAG2, MRPL44, AARS2, HADHB, DNAJC19, PPA2, TAZ, BAG3), MAPK pathways (HRAS, PTPN11, RAF1, TAB2), development (NEK8 and TBX20), calcium signaling (JPH2, CALM1, CACNA1C), and the sarcomeric contraction cycle (TNNC1, TNNI3, ACTC1, MYH7, NRAP). Childhood cardiomyopathies are typically caused by rare, family-specific mutations, most commonly de novo, indicating that next-generation sequencing of trios is the approach of choice in their diagnosis. Genetic diagnoses may suggest intervention strategies and predict prognosis, offering valuable tools for prioritization of patients for transplantation versus conservative treatment."	"Myelodysplastic syndrome with multilineage dysplasia evolving to acute myeloid leukemia: Noonan syndrome with c.218C&gt;T mutation in PTPN11 gene. NA"	"The tyrosine phosphatase Shp-2 confers resistance to colonic inflammation by driving goblet cell function and crypt regeneration. The Src homology-2 domain-containing tyrosine phosphatase 2 (SHP-2) regulates many cellular processes, including proliferation, differentiation and survival. Polymorphisms in the gene encoding SHP-2 are associated with an increased susceptibility to develop ulcerative colitis. We recently reported that intestinal epithelial cell (IEC)-specific deletion of Shp-2 in mice (Shp-2<sup>IEC-KO</sup> ) leads to chronic colitis and colitis-associated cancer. This suggests that SHP-2-dependent signaling protects the colonic epithelium against inflammation and colitis-associated cancer development. To verify this hypothesis, we generated mice expressing the Shp-2 E76K activated form specifically in IEC. Our results showed that sustained Shp-2 activation in IEC increased intestine and crypt length, correlating with increased cell proliferation and migration. Crypt regeneration capacity was also markedly enhanced, as revealed by ex vivo organoid culture. Shp-2 activation alters the secretory cell lineage, as evidenced by increased goblet cell numbers and mucus secretion. Notably, these mice also demonstrated elevated ERK signaling in IEC and exhibited resistance against both chemical- and Citrobacter rodentium-induced colitis. In contrast, mice with IEC-specific Shp-2 deletion displayed reduced ERK signaling and rapidly developed chronic colitis. Remarkably, expression of an activated form of Braf in Shp-2-deficient mice restored ERK activation, goblet cell production and prevented colitis. Altogether, our results indicate that chronic activation of Shp-2/ERK signaling in the colonic epithelium confers resistance to mucosal erosion and colitis. © 2018 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Structural reorganization of SHP2 by oncogenic mutations and implications for oncoprotein resistance to allosteric inhibition. Activating mutations in PTPN11, encoding the cytosolic protein tyrosine phosphatase SHP2, result in developmental disorders and act as oncogenic drivers in patients with hematologic cancers. The allosteric inhibitor SHP099 stabilizes the wild-type SHP2 enzyme in an autoinhibited conformation that is itself destabilized by oncogenic mutations. Here, we report the impact of the highly activated and most frequently observed mutation, E76K, on the structure of SHP2, and investigate the effect of E76K and other oncogenic mutations on allosteric inhibition by SHP099. SHP2<sup>E76K</sup> adopts an open conformation but can be restored to the closed, autoinhibited conformation, near-identical to the unoccupied wild-type enzyme, when complexed with SHP099. SHP099 inhibitory activity against oncogenic SHP2 variants in vitro and in cells scales inversely with the activating strength of the mutation, indicating that either oncoselective or vastly more potent inhibitors will be necessary to suppress oncogenic signaling by the most strongly activating SHP2 mutations in cancer."	"Evaluating the origin and virulence of a Helicobacter pylori cagA-positive strain isolated from a non-human primate. Helicobacter pylori cagA-positive strains are critically involved in the development of gastric cancer. Upon delivery into gastric epithelial cells via type IV secretion, the cagA-encoded CagA interacts with and thereby perturbs the pro-oncogenic phosphatase SHP2 and the polarity-regulating kinase PAR1b via the tyrosine-phosphorylated EPIYA-C/D segment and the CM sequence, respectively. Importantly, sequences spanning these binding regions exhibit variations among CagA proteins, which influence the pathobiological/oncogenic potential of individual CagA. Here we isolated an H. pylori strain (Hp_TH2099) naturally infecting the stomach of a housed macaque, indicating a zoonotic feature of H. pylori infection. Whole genome sequence analysis revealed that Hp_TH2099 belongs to the hpAsia2 cluster and possesses ABC-type Western CagA, which contains hitherto unreported variations in both EPIYA-C and CM sequences. The CM variations almost totally abolished PAR1b binding. Whereas pTyr + 5 variation in the EPIYA-C segment potentiated SHP2-binding affinity, pTyr-2 variation dampened CagA tyrosine phosphorylation and thus impeded CagA-SHP2 complex formation. As opposed to the H. pylori standard strain, infection of mouse ES cell-derived gastric organoids with Hp_TH2099 failed to elicit CagA-dependent epithelial destruction. Thus, the macaque-isolated H. pylori showed low virulence due to attenuated CagA activity through multiple substitutions in the sequences involved in binding with SHP2 and PAR1b."	"Inhibition of Src Homology 2 Domain-Containing Protein Tyrosine Phosphatase-2 Facilitates CD31hiEndomucinhi Blood Vessel and Bone Formation in Ovariectomized Mice. Recently, we and others showed that the relative abundance of a specific vessel subtype, strongly positive for CD31 and Endomucin (CD31hiEmcnhi), is associated with bone formation and bone loss, and platelet-derived growth factor-BB (PDGF-BB) secreted by preosteoclasts induces the formation of the specific vessels and thereby stimulates osteogenesis. Inhibition of Src homology 2 domain-containing protein tyrosine phosphatase-2 (SHP-2) has been shown to block the fusion of preosteoclasts into mature osteoclasts. However, it is unclear whether inhibition of SHP-2 could promote preosteoclast-induced angiogenesis and then enhance bone formation. This study aimed to determine the effects of a specific SHP-2 inhibitor (NSC-87877) on CD31 hiEmcnhi vessel and bone formation. 3-month-old C57BL/6 mice were subjected to either ovariectomy (OVX) or sham operation. OVX mice were intraperitoneally injected with NSC-87877 and the control (sham) mice were treated with an equal volume of diluents (PBS). Two months later, bone samples from mice were collected for µCT, histological, immunohistochemical and immunofluorescent analyses to assess bone mass, osteogenic and osteoclastic acitivities, as well as the densities of CD31hiEmcnhi vessels. A series of angiogenesis- related assays were performed to test the effects of NSC-87877 on the pro-angiogenic activities of preosteoclasts in vitro. We found that NSC-87877 is sufficient to induce bone-sparing effects in OVX-induced osteoporotic mouse model. We also found that NSC-87877 induces higher numbers of preosteoclasts and CD31hiEmcnhi vessels and higher levels of PDGF-BB in bone marrow of osteoporotic mice. In vitro assays showed that NSC-87877 prevents preosteoclast fusion, increases PDGF-BB production, and augments the pro-angiogenic abilities of preosteoclasts. Our results suggest that NSC-87877 can be used as a promising therapeutic agent for osteoporosis by inhibiting osteoclast formation and promoting preosteoclast-induced angiogenesis."	"PTPN11 Plays Oncogenic Roles and Is a Therapeutic Target for BRAF Wild-Type Melanomas. Melanoma is one of the most highly mutated cancer types. To identify functional drivers of melanoma, we searched for cross-species conserved mutations utilizing a mouse melanoma model driven by loss of PTEN and CDKN2A, and identified mutations in Kras, Erbb3, and Ptpn11. PTPN11 encodes the SHP2 protein tyrosine phosphatase that activates the RAS/RAF/MAPK pathway. Although PTPN11 is an oncogene in leukemia, lung, and breast cancers, its roles in melanoma are not clear. In this study, we found that PTPN11 is frequently activated in human melanoma specimens and cell lines and is required for full RAS/RAF/MAPK signaling activation in BRAF wild-type (either NRAS mutant or wild-type) melanoma cells. PTPN11 played oncogenic roles in melanoma by driving anchorage-independent colony formation and tumor growth. In Pten- and Cdkn2a-null mice, tet-inducible and melanocyte-specific PTPN11<sup>E76K</sup> expression significantly enhanced melanoma tumorigenesis. Melanoma cells derived from this mouse model showed doxycycline-dependent tumor growth in nude mice. Silencing PTPN11<sup>E76K</sup> expression by doxycycline withdrawal caused regression of established tumors by induction of apoptosis and senescence, and suppression of proliferation. Moreover, the PTPN11 inhibitor (SHP099) also caused regression of NRAS<sup>Q61K</sup> -mutant melanoma. Using a quantitative tyrosine phosphoproteomics approach, we identified GSK3α/β as one of the key substrates that were differentially tyrosine-phosphorylated in these experiments modulating PTPN11. This study demonstrates that PTPN11 plays oncogenic roles in melanoma and regulates RAS and GSK3β signaling pathways. IMPLICATIONS: This study identifies PTPN11 as an oncogenic driver and a novel and actionable therapeutic target for BRAF wild-type melanoma."	"Selfish mutations dysregulating RAS-MAPK signaling are pervasive in aged human testes. Mosaic mutations present in the germline have important implications for reproductive risk and disease transmission. We previously demonstrated a phenomenon occurring in the male germline, whereby specific mutations arising spontaneously in stem cells (spermatogonia) lead to clonal expansion, resulting in elevated mutation levels in sperm over time. This process, termed &quot;selfish spermatogonial selection,&quot; explains the high spontaneous birth prevalence and strong paternal age-effect of disorders such as achondroplasia and Apert, Noonan and Costello syndromes, with direct experimental evidence currently available for specific positions of six genes (FGFR2, FGFR3, RET, PTPN11, HRAS, and KRAS). We present a discovery screen to identify novel mutations and genes showing evidence of positive selection in the male germline, by performing massively parallel simplex PCR using RainDance technology to interrogate mutational hotspots in 67 genes (51.5 kb in total) in 276 biopsies of testes from five men (median age, 83 yr). Following ultradeep sequencing (about 16,000×), development of a low-frequency variant prioritization strategy, and targeted validation, we identified 61 distinct variants present at frequencies as low as 0.06%, including 54 variants not previously directly associated with selfish selection. The majority (80%) of variants identified have previously been implicated in developmental disorders and/or oncogenesis and include mutations in six newly associated genes (BRAF, CBL, MAP2K1, MAP2K2, RAF1, and SOS1), all of which encode components of the RAS-MAPK pathway and activate signaling. Our findings extend the link between mutations dysregulating the RAS-MAPK pathway and selfish selection, and show that the aging male germline is a repository for such deleterious mutations."	"Loss of Shp2 Rescues BDNF/TrkB Signaling and Contributes to Improved Retinal Ganglion Cell Neuroprotection. Glaucoma is characterized by the loss of retinal ganglion cells (RGC), and accordingly the preservation of RGCs and their axons has recently attracted significant attention to improve therapeutic outcomes in the disease. Here, we report that Src homology region 2-containing protein tyrosine phosphatase 2 (Shp2) undergoes activation in the RGCs, in animal model of glaucoma as well as in the human glaucoma tissues and that Shp2 dephosphorylates tropomyosin receptor kinase B (TrkB) receptor, leading to reduced BDNF/TrkB neuroprotective survival signaling. This was elucidated by specifically modulating Shp2 expression in the RGCs in vivo, using adeno-associated virus serotype 2 (AAV2) constructs. Shp2 upregulation promoted endoplasmic reticulum (ER) stress and apoptosis, along with functional and structural deficits in the inner retina. In contrast, loss of Shp2 decelerated the loss of RGCs, preserved their function, and suppressed ER stress and apoptosis in glaucoma. This report constitutes the first identification of Shp2-mediated TrkB regulatory mechanisms in the RGCs that can become a potential therapeutic target in both glaucoma and other neurodegenerative disorders."	"LILRB4 signalling in leukaemia cells mediates T cell suppression and tumour infiltration. Immune checkpoint blockade therapy has been successful in treating some types of cancer but has not shown clinical benefits for treating leukaemia<sup>1</sup>. This result suggests that leukaemia uses unique mechanisms to evade this therapy. Certain immune inhibitory receptors that are expressed by normal immune cells are also present on leukaemia cells. Whether these receptors can initiate immune-related primary signalling in tumour cells remains unknown. Here we use mouse models and human cells to show that LILRB4, an immunoreceptor tyrosine-based inhibition motif-containing receptor and a marker of monocytic leukaemia, supports tumour cell infiltration into tissues and suppresses T cell activity via a signalling pathway that involves APOE, LILRB4, SHP-2, uPAR and ARG1 in acute myeloid leukaemia (AML) cells. Deletion of LILRB4 or the use of antibodies to block LILRB4 signalling impeded AML development. Thus, LILRB4 orchestrates tumour invasion pathways in monocytic leukaemia cells by creating an immunosuppressive microenvironment. LILRB4 represents a compelling target for the treatment of monocytic AML."	"Noonan syndrome males display Sertoli cell-specific primary testicular insufficiency. Context Abnormalities in the hypothalamo-pituitary-gonadal axis have long been reported in Noonan syndrome (NS) males with only few data available in prepubertal children. Objective The aim of this study was to describe the gonadal function of NS males from childhood to adulthood. Design It is a retrospective chart review. Patients and methods A total of 37 males with a genetically confirmed diagnosis of NS were included. Clinical and genetic features, as well as serum hormone levels (LH, FSH, testosterone, anti-Müllerian hormone (AMH), and inhibin B) were analysed. Results Of the 37 patients, 16 (43%) children had entered puberty at a median age of 13.5 years (range: 11.4-15.0 years); age at pubertal onset was negatively correlated with BMI SDS (r = -0.541; P = 0.022). In pubertal boys, testosterone levels were normal suggesting a normal Leydig cell function. In contrast, NS patients had significant lower levels of AMH (mean SDS: -0.6 ± 1.1; P = 0.003) and inhibin B (mean SDS: -1.1 ± 1.2; P &lt; 0.001) compared with the general population, suggesting a Sertoli cell dysfunction. Lower AMH and inhibin B levels were found in NS-PTPN11 patients, whereas these markers did not differ from healthy children in SOS1 patients. No difference was found between cryptorchid and non-cryptorchid patients for AMH and inhibin B levels (P = 0.43 and 0.62 respectively). Four NS-PTPN11 patients had a severe primary hypogonadism with azoospermia/cryptozoospermia. Conclusions NS males display Sertoli cell-specific primary testicular insufficiency, whereas Leydig cell function seems to be unaffected."	"An Association of PTPN11 and SHOX Mutations in a Male Presenting With Syndromic Growth Failure. In children with genetic syndromes, short stature is frequently a characteristic feature that, when associated with other specific manifestations, significantly aids in clinical diagnosis. In this report, an atypical case of Noonan syndrome (NS) in a 5.5-year-old child with mesomelic short stature is described. Genetic tests revealed two different mutations in this child. As expected in an NS case, a mutation in PTPN11 gene related to the RAS/MAPK signal transduction pathway was identified. Moreover, a mutation in the SHOX gene that was able to cause disproportionate short stature was detected. A clinical picture of NS with mesomelic short stature makes the diagnosis even more difficult as haploinsufficiency and complete loss of function of SHOX gene are associated with the typical differentiation and proliferation of chondrocytes, leading to mesomelic appearance. This case exemplifies the difficulties that can be encountered in achieving proper diagnoses for children with syndromic diseases and highlights the role of genetic tests in identifying final diagnoses in these patients."	"Inducible SHP-2 activation confers resistance to imatinib in drug-tolerant chronic myeloid leukemia cells. BCR-ABL kinase mutations, accounting for clinical resistance to tyrosine kinase inhibitor (TKI) such as imatinib, frequently occur in acquired resistance or in advanced phases of chronic myeloid leukemia (CML). Emerging evidence implicates a critical role for non-mutational drug resistance mechanisms underlying the survival of residual cancer 'persister' cells. Here, we utilized non-mutational imatinib-resistant K562/G cells to reveal SHP-2 as a resistance modulator of imatinib treatment response during the early phase. SHP-2 phosphorylation was significantly higher in K562/G cells than in sensitive K562 cells. In K562 cells, both short-term and long-term exposure to imatinib induced SHP-2 phosphorylation. Consistently, gain- and loss-of-function mutants in SHP-2 proved its regulation of imatinib resistance. SHP-2 inhibitor and imatinib exhibited a strong antitumor synergy in in vitro and in vivo K562/G models. Mechanistically, dual SHP-2 and BCR-ABL inhibition blocked RAF/MEK/ERK and PI3K/AKT/mTOR pathways, respectively, leading to dramatic apoptotic death of K562/G cells. In conclusion, our results highlight that SHP-2 could be exploited as a biomarker and therapeutic target during the early phase of imatinib resistance development in CML."	"LINC00673 rs11655237 Polymorphism Is Associated With Increased Risk of Cervical Cancer in a Chinese Population. Cervical cancer is the fourth most commonly diagnosed cancer and the fourth leading cause of cancer deaths in women worldwide. Few single-nucleotide polymorphisms associated with risk of cervical cancer have been identified, yet genetic predisposition contributes significantly to this malignancy. Long noncoding RNA LINC00673 has been widely explored for its role in the development and prognosis of many tumors, and 2 genome-wide association studies identified that LINC00673 rs11655237 was associated with susceptibility to pancreatic cancer. In the current study, using a case-control study design, we found rs11655237 significantly increased susceptibility of cervical cancer in a Chinese population (odds ratio = 1.27; 95% confidence interval = 1.08-1.50; P = .005). Expression of LINC00673 was significantly higher in adjacent normal tissues than in paired cancer tissues ( P &lt; .01) and significantly lower in the cancer or paired adjacent normal tissues of patients with cervical cancer having rs11655237 allele A than in those having rs11655237 allele G ( P &lt; .001). Our results indicate that LINC00673 rs11655237 is associated with increased risk of cervical cancer, possibly by downregulating LINC00673 expression in cervical tissues."	"Hyperglycaemia-induced methylglyoxal accumulation potentiates VEGF resistance of diabetic monocytes through the aberrant activation of tyrosine phosphatase SHP-2/SRC kinase signalling axis. Diabetes mellitus (DM) is a major cardiovascular risk factor contributing to cardiovascular complications by inducing vascular cell dysfunction. Monocyte dysfunction could contribute to impaired arteriogenesis response in DM patients. DM monocytes show blunted chemotactic responses to arteriogenic stimuli, a condition termed as vascular endothelial growth factor (VEGF) resistance. We hypothesize that methylglyoxal (MG), a glucose metabolite, induces monocyte dysfunction and aimed to elucidate the underlying molecular mechanisms. Human monocytes exposed to MG or monocytes from DM patients or mice (db/db) showed VEGF-resistance secondary to a pro-migratory phenotype. Mechanistically, DM conditions or MG exposure resulted in the upregulation of the expression of SHP-2 phosphatase. This led to the enhanced activity of SHP-2 and aided an interaction with SRC kinase. SHP-2 dephosphorylated the inhibitory phosphorylation site of SRC leading to its abnormal activation and phosphorylation of cytoskeletal protein, paxillin. We demonstrated that MG-induced molecular changes could be reversed by pharmacological inhibitors of SHP-2 and SRC and by genetic depletion of SHP-2. Finally, a SHP-2 inhibitor completely reversed the dysfunction of monocytes isolated from DM patients and db/db mice. In conclusion, we identified SHP-2 as a hitherto unknown target for improving monocyte function in diabetes. This opens novel perspectives for treating diabetic complications associated with impaired monocyte function."	"Mutations in the RAS-BRAF-MAPK-ERK pathway define a specific subgroup of patients with adverse clinical features and provide new therapeutic options in chronic lymphocytic leukemia. Mutations in genes of the RAS-BRAF-MAPK-ERK pathway have not been fully explored in patients with chronic lymphocytic leukemia. We, therefore, analyzed the clinical and biological characteristics of chronic lymphocytic leukemia patients with mutations in this pathway and investigated the in vitro response of primary cells to BRAF and ERK inhibitors. Putative damaging mutations were found in 25 of 452 patients (5.5%). Among these, BRAF was mutated in nine patients (2.0%), genes upstream of BRAF (KITLG, KIT, PTPN11, GNB1, KRAS and NRAS) were mutated in 12 patients (2.6%), and genes downstream of BRAF (MAPK2K1, MAPK2K2, and MAPK1) were mutated in five patients (1.1%). The most frequent mutations were missense, subclonal and mutually exclusive. Patients with these mutations more frequently had increased lactate dehydrogenase levels, high expression of ZAP-70, CD49d, CD38, trisomy 12 and unmutated immunoglobulin heavy-chain variable region genes and had a worse 5-year time to first treatment (hazard ratio 1.8, P=0.025). Gene expression analysis showed upregulation of genes of the MAPK pathway in the group carrying RAS-BRAF-MAPK-ERK pathway mutations. The BRAF inhibitors vemurafenib and dabrafenib were not able to inhibit phosphorylation of ERK, the downstream effector of the pathway, in primary cells. In contrast, ulixertinib, a pan-ERK inhibitor, decreased phospho-ERK levels. In conclusion, although larger series of patients are needed to corroborate these findings, our results suggest that the RAS-BRAF-MAPK-ERK pathway is one of the core cellular processes affected by novel mutations in chronic lymphocytic leukemia, is associated with adverse clinical features and could be pharmacologically inhibited."	"PAX5-ELN oncoprotein promotes multistep B-cell acute lymphoblastic leukemia in mice. PAX5 is a well-known haploinsufficient tumor suppressor gene in human B-cell precursor acute lymphoblastic leukemia (B-ALL) and is involved in various chromosomal translocations that fuse a part of PAX5 with other partners. However, the role of PAX5 fusion proteins in B-ALL initiation and transformation is ill-known. We previously reported a new recurrent t(7;9)(q11;p13) chromosomal translocation in human B-ALL that juxtaposed PAX5 to the coding sequence of elastin (ELN). To study the function of the resulting PAX5-ELN fusion protein in B-ALL development, we generated a knockin mouse model in which the PAX5-ELN transgene is expressed specifically in B cells. PAX5-ELN-expressing mice efficiently developed B-ALL with an incidence of 80%. Leukemic transformation was associated with recurrent secondary mutations on Ptpn11, Kras, Pax5, and Jak3 genes affecting key signaling pathways required for cell proliferation. Our functional studies demonstrate that PAX5-ELN affected B-cell development in vitro and in vivo featuring an aberrant expansion of the pro-B cell compartment at the preleukemic stage. Finally, our molecular and computational approaches identified PAX5-ELN-regulated gene candidates that establish the molecular bases of the preleukemic state to drive B-ALL initiation. Hence, our study provides a new in vivo model of human B-ALL and strongly implicates PAX5 fusion proteins as potent oncoproteins in leukemia development."	"The inositol phosphatase SHIP2 enables sustained ERK activation downstream of FGF receptors by recruiting Src kinases. Sustained activation of extracellular signal-regulated kinase (ERK) drives pathologies caused by mutations in fibroblast growth factor receptors (FGFRs). We previously identified the inositol phosphatase SHIP2 (also known as INPPL1) as an FGFR-interacting protein and a target of the tyrosine kinase activities of FGFR1, FGFR3, and FGFR4. We report that loss of SHIP2 converted FGF-mediated sustained ERK activation into a transient signal and rescued cell phenotypes triggered by pathologic FGFR-ERK signaling. Mutant forms of SHIP2 lacking phosphoinositide phosphatase activity still associated with FGFRs and did not prevent FGF-induced sustained ERK activation, demonstrating that the adaptor rather than the catalytic activity of SHIP2 was required. SHIP2 recruited Src family kinases to the FGFRs, which promoted FGFR-mediated phosphorylation and assembly of protein complexes that relayed signaling to ERK. SHIP2 interacted with FGFRs, was phosphorylated by active FGFRs, and promoted FGFR-ERK signaling at the level of phosphorylation of the adaptor FRS2 and recruitment of the tyrosine phosphatase PTPN11. Thus, SHIP2 is an essential component of canonical FGF-FGFR signal transduction and a potential therapeutic target in FGFR-related disorders."	"Molecular pathogenesis of disease progression in MLL-rearranged AML. Leukemic relapse is frequently accompanied by progressively aggressive clinical course. To understand the molecular mechanism of leukemic relapse, MLL/AF9-transformed mouse leukemia cells were serially transplanted in C57BL/6 mice (N = 96) by mimicking repeated recurrences, where mutations were monitored by exome sequencing (N = 42). The onset of leukemia was progressively promoted with advanced transplants, during which increasing numbers of somatic mutations were acquired (P &lt; 0.005). Among these, mutations in Ptpn11 (p.G60R) and Braf (p.V637E) corresponded to those identified in human MLL-AML, while recurrent mutations affecting Msn (p.R295C) were observed only in mouse but not in human MLL-AML. Another mutated gene of interest was Gnb2 which was reported to be recurrently mutated in various hematological neoplasms. Gnb2 mutations (p.G77R) were significantly increased in clone size (P = 0.007) and associated with earlier leukemia onset (P = 0.011). GNB2 transcripts were significantly upregulated in human MLL-AML compared to MLL-negative AML (P &lt; 0.05), which was supported by significantly increased Gnb2 transcript induced by MLL/AF9 overexpression (P &lt; 0.001). In in vivo model, both mutation and overexpression of GNB2 caused leukemogenesis, and downregulation of GNB2 expression reduced proliferative potential and survival benefit, suggesting a driver role of GNB2. In conclusion, alterations of driver genes over time may play an important role in the progression of MLL-AML."	"Clinical Significance of DNA Variants in Chronic Myeloid Neoplasms: A Report of the Association for Molecular Pathology. To address the clinical relevance of small DNA variants in chronic myeloid neoplasms (CMNs), an Association for Molecular Pathology Working Group comprehensively reviewed published literature, summarized key findings that support clinical utility, and defined critical gene inclusions for high-throughput sequencing testing panels. This review highlights the biological complexity of CMNs [including myelodysplastic syndromes, myeloproliferative neoplasms, entities with overlapping features (myelodysplastic syndromes/myeloproliferative neoplasms), and systemic mastocytosis], the genetic heterogeneity within diagnostic categories, and similarities between apparently disparate diagnostic entities. The founding variant's hematopoietic differentiation compartment, specific genes and variants present, order of variant appearance, individual subclone dynamics, and therapeutic intervention all contribute to the clinicopathologic features of CMNs. Selection and efficacy of targeted therapies are increasingly based on DNA variant profiles present at various time points; therefore, high-throughput sequencing remains critical for patient management. The following genes are a minimum recommended list to provide relevant clinical information for the management of most CMNs: ASXL1, BCOR, BCORL1, CALR, CBL, CEBPA, CSF3R, DNMT3A, ETV6, EZH2, FLT3, IDH1, IDH2, JAK2, KIT, KRAS, MPL, NF1, NPM1, NRAS, PHF6, PPM1D, PTPN11, RAD21, RUNX1, SETBP1, SF3B1, SMC3, SRSF2, STAG2, TET2, TP53, U2AF1, and ZRSR2. This list is not comprehensive for all myeloid neoplasms and will evolve as insights into effects of combinations of relevant biomarkers on specific clinicopathologic characteristics of CMNs accumulate."	"Targeting MEK in a Translational Model of Histiocytic Sarcoma. Histiocytic sarcoma in humans is an aggressive orphan disease with a poor prognosis as treatment options are limited. Dogs are the only species that spontaneously develops histiocytic sarcoma with an appreciable frequency, and may have value as a translational model system. In the current study, high-throughput drug screening utilizing histiocytic sarcoma cells isolated from canine neoplasms identified these cells as particularly sensitive to a MEK inhibitor, trametinib. One of the canine cell lines carries a mutation in PTPN11 (E76K), and another one in KRAS (Q61H), which are associated with the activation of oncogenic MAPK signaling. Both mutations were previously reported in human histiocytic sarcoma. Trametinib inhibited sensitive cell lines by promoting cell apoptosis, indicated by a significant increase in caspase 3/7. Furthermore, in vitro findings were successfully recapitulated in an intrasplenic orthotopic xenograft mouse model, which represents a disseminated aggressive form of histiocytic sarcoma. Mice with histiocytic sarcoma xenograft neoplasms that were treated with trametinib had significantly longer survival times. Target engagement was validated as activity of ERK, downstream of MEK, was significantly downregulated in neoplasms of treated mice. Additionally, trametinib was found in plasma and neoplastic tissues within projected therapeutic levels. These findings demonstrate that in dogs, histiocytic sarcoma may be associated with a dysfunctional MAPK pathway, at least in some cases, and may be effectively targeted through MEK inhibition. Clinical trials to test safety and efficacy of trametinib in dogs with histiocytic sarcoma are warranted, and may provide valuable translational information to similar diseases in humans. Mol Cancer Ther; 17(11); 2439-50. ©2018 AACR."	"Exploring the effect of E76K mutation on SHP2 cause gain-of-function activity by a molecular dynamics study. Juvenile myelomonocytic leukemia (JMML), an invasive myeloproliferative neoplasm, is a childhood disease with very high clinical lethality. Somatic mutation E76K in SHP2 is the most commonly identified mutation found in up to 35% of patients with JMML. To investigate the effect of gain-of-function mutation-E76K on SHP2 activity, molecular dynamic simulations on the wild-type SHP2 (SHP2-WT) system and the mutated E76K (SHP2-E76K) system were performed. The evaluation of stability of these two systems indicated that the simulated trajectories were stable after simulation for 3 nanoseconds. The root mean square fluctuation and the per-residue root mean square deviation illustrated that there were two regions (residues Tyr 81-Glu 83 and Glu 258-Leu 261) in the wild-type system and the mutated system, which had large differences. The principal component analysis, dynamic cross correlation maps analysis, as well as secondary structure analysis suggested that the mutated E76K impacted the movement of these two regions in SHP2 protein. Furthermore, residue interaction network analysis, hydrogen bond occupancy, and binding free energies analysis were used to explain how the two regions were specifically affected by the mutant. The results indicated that the primary variances between SHP2-WT and SHP2-E76K were the different interactions between Glu/Lys 76 and Arg 265, Tyr 80 and Leu 77, Leu 77 and Tyr 81, Thr 73 and Glu 258, Ala 75 and Cys 259, Phe 71 and Tyr 81, Ala 75 and Glu 258, and Tyr 73 and Glu/Lys 76. Consequently, these findings here might provide insights into the increased activity in SHP2-E76K."	"RAS nucleotide cycling underlies the SHP2 phosphatase dependence of mutant BRAF-, NF1- and RAS-driven cancers. Oncogenic alterations in the RAS/RAF/MEK/ERK pathway drive the growth of a wide spectrum of cancers. While BRAF and MEK inhibitors are efficacious against BRAF<sup>V600E</sup>-driven cancers, effective targeted therapies are lacking for most cancers driven by other pathway alterations, including non-V600E oncogenic BRAF, RAS GTPase-activating protein (GAP) NF1 (neurofibromin 1) loss and oncogenic KRAS. Here, we show that targeting the SHP2 phosphatase (encoded by PTPN11) with RMC-4550, a small-molecule allosteric inhibitor, is effective in human cancer models bearing RAS-GTP-dependent oncogenic BRAF (for example, class 3 BRAF mutants), NF1 loss or nucleotide-cycling oncogenic RAS (for example, KRAS<sup>G12C</sup>). SHP2 inhibitor treatment decreases oncogenic RAS/RAF/MEK/ERK signalling and cancer growth by disrupting SOS1-mediated RAS-GTP loading. Our findings illuminate a critical function for SHP2 in promoting oncogenic RAS/MAPK pathway activation in cancers with RAS-GTP-dependent oncogenic BRAF, NF1 loss and nucleotide-cycling oncogenic KRAS. SHP2 inhibition is a promising molecular therapeutic strategy for patients with cancers bearing these oncogenic drivers."	"Overexpression of miR-489 derails mammary hierarchy structure and inhibits HER2/neu-induced tumorigenesis. Although it has been demonstrated that transformed progenitor cell population can contribute to tumor initiation, factors contributing to this malignant transformation are poorly known. Using in vitro and xenograft-based models, previous studies demonstrated that miR-489 acts as a tumor suppressor miRNA by targeting various oncogenic pathways. It has been demonstrated that miR-489 directly targets HER2 and inhibits the HER2 signaling pathway; however, its role in mammary gland development and HER2-induced tumor initiation hasn't been studied. To dissect the role of miR-489, we sorted different populations of mammary epithelial cells and determined that miR-489 was highly expressed in mammary stem cells. MMTV-miR-489 mice that overexpressed miR-489 in mammary epithelial cells were developed and these mice exhibited an inhibition of mammary gland development in early ages with a specific impact on highly proliferative cells. Double transgenic MMTV-Her2-miR489 mice were then generated to observe how miR-489 overexpression affects HER2-induced tumorigenesis. miR-489 overexpression delayed HER2-induced tumor initiation significantly. Moreover, miR-489 overexpression inhibited tumor growth and lung metastasis. miR-489 overexpression reduced mammary progenitor cell population significantly in preneoplastic mammary glands of MMTV-Her2 mice which showed a putative transformed population in HER2-induced tumorigenesis. The miR-489 overexpression reduced CD49f<sup>hi</sup>CD61<sup>hi</sup> populations in tumors that have stem-like properties, and miR-489 overexpression altered the HER2 signaling pathway in mammary tumors. Altogether, these data indicate that the inhibition of HER2-induced tumorigenesis by miR-489 overexpression was due to altering progenitor cell populations while decreasing tumor growth and metastasis via influencing tumor promoting genes DEK and SHP2."	"Trametinib for progressive pediatric low-grade gliomas. Pediatric pilocytic astrocytomas (PAs) are low grade gliomas and the most common brain tumors in children. They often represent a therapeutic challenge when incompletely resected as they can recur and progress despite the use of several lines of chemotherapeutic agents or even radiation therapy. Genetic alterations leading to activation of the mitogen-activated-protein-kinase pathway are a hallmark of this disease and offer an interesting therapeutic alternative through the use of targeted inhibitors. Here, we describe six children with sporadic PA who were treated with trametinib, a MEK inhibitor, following progression under conventional therapies. Retrospective chart review was performed. The median age at diagnosis was 2.3 years (y) old [range 11 months (m)-8.5 y old]. KIAA1549-BRAF fusion was identified in five cases, and hotspot FGFR1/NF1/PTPN11 mutations in one. All patients received at least one previous line of chemotherapy (range 1-4). The median time on treatment was 11 m (range 4-20). Overall, we observed two partial responses and three minor responses as best response; three of these patients are still on therapy. Treatment was discontinued in the patient with progressive disease. The most frequent toxicities were minor to moderately severe skin rash and gastro-intestinal symptoms. Two patients had dose reduction due to skin toxicity. Quality of life was excellent with decreased hospital visits and a close to normal life. Trametinib appears to be a suitable option for refractory pediatric low-grade glioma and warrants further investigations in case of progression."	"Genetic Polymorphisms Associated with the Neutrophil⁻Lymphocyte Ratio and Their Clinical Implications for Metabolic Risk Factors. The neutrophil⁻lymphocyte ratio (NLR) is a valuable prognostic or predictive biomarker in various diseases, but the genetic factors that underlie the NLR have not been studied. We attempted to investigate polymorphisms related to NLR phenotype and analyze their ability to predict metabolic risks. A genome-wide association study was performed with log-transformed NLR using an Affymetrix Axiom™ KORV1.1-96 Array. Regression models for metabolic risk status were designed using the identified significant single-nucleotide polymorphisms (SNPs). We identified four SNPs near the TMEM116, NAA25, and PTPN11 genes that were associated with the NLR. The top SNP associated with the log-transformed NLR was rs76181728 in TMEM116. A case⁻control study was performed to analyze the metabolic risks associated with each SNP after adjusting for age, sex, and body mass index (BMI). Three SNPs displayed significant odds ratios (ORs) for increased blood pressure and increased waist circumference. In the regression model for metabolic syndrome, rs76181728 showed a significant association (OR = 1.465, 95% confidence interval (CI) = 1.091⁻1.969, P = 0.011) after adjustment for the NLR phenotype. We identified four novel SNPs that are associated with the NLR in healthy Koreans. SNPs in relevant genes might therefore serve as biomarkers for metabolic risks."	"Inhibition of Shp2 ameliorates monocrotaline-induced pulmonary arterial hypertension in rats. Src homology 2 containing protein tyrosine phosphatase (PTP) 2 (Shp2) is a typical tyrosine phosphatase interacting with receptor tyrosine kinase to regulate multiple signaling pathways in diverse pathological processes. Here, we will investigate the effect of Shp2 inhibition on pulmonary arterial hypertension (PAH) in a rat model and its potential cellular and molecular mechanisms underlying. Monocrotaline (MCT)-induced PAH rat model was used in this study. Phps-1, a highly selective inhibitor for Shp2, was administered from 21 days to 35 days after MCT single-injection. Microcatheter method was applied to detected hemodynamic parameters. Histological methods were used to determine PVR changes in PAH rats. Moreover, cultured pulmonary artery smooth muscle cells (PASMCs) treated by platelet-derived growth factor (PDGF) with or without Phps-1 was used to investigate the potential cellular and molecular mechanisms underlying in vitro. Inhibition of Shp2 significantly attenuated MCT-induced increases of mean pulmonary arterial pressure (mPAP), right ventricular systolic pressure (RVSP) and right ventricular hypertrophy (RVH) in rats. Shp2 inhibition effectively decreased thickening of pulmonary artery media and cardiomyocyte hypertrophy as well as perivascular and myocardial fibrosis in MCT-treated rats. Moreover, Shp2 inhibition ameliorated muscularization of pulmonary arterioles in MCT-induced PAH rats. Shp2 inhibition significantly reduced platelet-derived growth factor (PDGF)-triggered proliferation and migration of human pulmonary artery smooth muscle cells (PASMCs), which might be attributed to the inactivations of Akt and Stat3 pathways. Shp2 contributes to the development of PAH in rats, which might be a potential target for the treatment of PAH."	"[Clinical and genetic analysis of Verheij syndrome caused by PUF60 de novo mutation in a Chinese boy and literature review]. Objective: To investigate the clinical and genetic characteristics of a Chinese boy with Verheij syndrome and review the literature. Methods: The clinical and genetic data of a Chinese boy with Verheij syndrome, who was admitted to the Department of Pediatrics, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology in May 2017 were analyzed. Original papers on Verheij syndrome published up to January 2018 were retrieved at PubMed, Human Gene Mutation Database (HGMD), Online Mendelian Inheritance in Man(OMIM), CNKI and WanFang databases by using the key words &quot;Verheij syndrome&quot; and &quot;PUF60&quot; . Results: The male patient (at the age of 14 years and 3 months) visited us because of growth retardation for 13 years. Atrial septal defect was repaired at the age 3. Congenital amblyopia and hyperopia were diagnosed at the age 4. On physical examination, serious growth retardation and delayed psychomotor development was noted. His height was 142.5 cm (-3.26 SDS). He had poor academic performance at school. Facial features included: webbed neck, hypertelorism, down-slanting palpebral fissures, long philtrum, thin upper lip, and high palate. Palmar crease was found in the right hand. His bone age was 10 years. Growth hormone stimulation test indicated partial growth hormone deficiency (growth hormone (GH) peak 6.63 μg/L). The level of insulin like growth factor 1 (IGF1) and insulin like growth factor binding protein 3 (IGFBP3) was lower than normal, 73.20 μg/L and 2 500 μg/L respectively. Abdominal ultrasound showed that the volumes of bilateral kidneys were small. The size of the left and right kidney was 8.5 cm × 3.3 cm and 8.4 cm × 4.3 cm respectively. Karyotype was normal (46, XY). MRI of pituitary showed partial empty sella turcica. Ten genes associated with Noonan syndrome (PTPN11, SOS1, RASA2, KRAS, RAF1, NRAS, SHOC2, BRAF, RIT1, A2ML1) were analyzed and no genetic mutations were found. Whole exome-sequencing analysis identified a de novo heterozygous frame shift mutation of PUF60 gene (c.931_934del, P.P.T 311Qfs*47). According to ACMG guidelines in 2015, the mutation is pathogenic and has not been reported in the above databases. Conclusions: This is the first case report of Verheij syndrome caused by mutation of PUF60 gene in Chinese population. It is difficult to discriminate Verheij syndrome from Noonan syndrome, both have clinical manifestations such as severe growth retardation, psychomotor retardation, and congenital heart disease. In addition to Noonan syndrome, PUF60 genetic analysis was recommended for avoiding missed diagnosis with such clinical manifestations of patients. 目的: 总结Verheij综合征的临床及遗传学分析特点。 方法: 对2017年5月华中科技大学同济医学院附属同济医院儿科收治的1例Verheij综合征患儿的临床资料及基因检测结果进行总结分析,并以&quot;Verheij syndrome&quot;PUF60&quot;和&quot;Verheij综合征&quot;PUF60基因&quot;为检索词,分别检索2018年1月前的PubMed、人类基因组突变数据库(HGMD)、在线人类孟德尔遗传数据库(OMIM)、中国知网数据库(CNKI)和万方数据库,对Verheij综合征病例进行文献复习。 结果: 患儿男,14岁3月龄,因&quot;生长落后13年&quot;就诊。出生体重2.9 kg,3岁时在外院行&quot;房间隔缺损修补术&quot;,4岁时发现&quot;先天性弱视及远视&quot;。身高142.5 cm,标准差积分-3.26。精神运动发育迟缓,学习成绩不佳。颈蹼,眼距宽、双侧外眼角下斜,人中长,腭弓高,后发际低;右手通贯掌。骨龄落后于实际年龄;垂体内分泌功能检测结果提示部分性生长激素(GH)缺乏(GH峰值6.63 μg/L),血胰岛素样生长因子1(IGF1)(73.20 μg/L)及胰岛素样生长因子结合蛋白3(IGFBP3)(2 500 μg/L)低于正常;肾脏B超左肾8.5 cm×3.3 cm,右肾8.4 cm×4.3 cm;染色体核型46,XY;垂体磁共振成像提示垂体高度约4 mm,存在部分空蝶鞍。内分泌基因Panel(与Noonan综合征相关的10个基因)分析,均未发现基因变异或缺失。全外显子基因检测发现患儿存在PUF60基因杂合变异(c.931_934del,p. p.T311Qfs*47)。患儿父母该位点均无变异。经Sanger测序进行验证及父母来源分析,提示为新发突变。根据2015年美国医学遗传学与基因组学学会指南,该移码突变为致病突变,且在上述数据库中尚未见报道。 结论: 首次报道中国人群PUF60基因变异导致的Verheij综合征。患儿有严重的生长发育落后、精神运动发育迟缓、特殊面部特征、先天性心脏病、肾脏发育不良等,临床与Noonan综合征难以鉴别。对具有上述临床表现的患儿除注意Noonan综合征相关基因检测外,还应注意PUF60基因分析,以免漏诊。."	"PTPN11 Gain-of-Function Mutations Affect the Developing Human Brain, Memory, and Attention. The Ras-MAPK pathway has an established role in neural development and synaptic signaling. Mutations in this pathway are associated with a collection of neurodevelopmental syndromes, Rasopathies; among these, Noonan syndrome (NS) is the most common (1:2000). Prior research has focused on identifying genetic mutations and cellular mechanisms of the disorder, however, effects of NS on the human brain remain unknown. Here, imaging and cognitive data were collected from 12 children with PTPN11-related NS, ages 4.0-11.0 years (8.98 ± 2.33) and 12 age- and sex-matched typically developing controls (8.79 ± 2.17). We observe reduced gray matter volume in bilateral corpus striatum (Cohen's d = -1.0:-1.3), reduced surface area in temporal regions (d = -1.8:-2.2), increased cortical thickness in frontal regions (d = 1.2-1.3), and reduced cortical thickness in limbic regions (d = -1.6), including limbic structures integral to the circuitry of the hippocampus. Further, we find high levels of inattention, hyperactivity, and memory deficits in children with NS. Taken together, these results identify effects of NS on specific brain regions associated with ADHD and learning in children. While our research lays the groundwork for elucidating the neural and behavioral mechanisms of NS, it also adds an essential tier to understanding the Ras-MAPK pathway's role in human brain development."	"Noonan syndrome: lessons learned from genetically modified mouse models. Noonan syndrome is a RASopathy that results from activating mutations in different members of the RAS/MAPK signaling pathway. At least eleven members of this pathway have been found mutated, PTPN11 being the most frequently mutated gene affecting about 50% of the patients, followed by SOS1 (10%), RAF1 (10%) and KRAS (5%). Recently, even more infrequent mutations have been newly identified by next generation sequencing. This spectrum of mutations leads to a broad variety of clinical symptoms such as cardiopathies, short stature, facial dysmorphia and neurocognitive impairment. The genetic variability of this syndrome makes it difficult to establish a genotype-phenotype correlation, which will greatly help in the clinical management of the patients. Areas covered: Studies performed with different genetically engineered mouse models (GEMMs) developed up to date. Expert commentary: GEMMs have helped us understand the role of some genes and the effect of the different mutations in the development of the syndrome. However, few models have been developed and more characterization of the existing ones should be performed to learn about the impact of the different modifiers in the phenotypes, the potential cancer risk in patients, as well as preventative and therapeutic strategies."	"Nonreentrant atrial tachycardia occurs independently of hypertrophic cardiomyopathy in RASopathy patients. Multifocal atrial tachycardia (MAT) has a well-known association with Costello syndrome, but is rarely described with related RAS/MAPK pathway disorders (RASopathies). We report 11 patients with RASopathies (Costello, Noonan, and Noonan syndrome with multiple lentigines [formerly LEOPARD syndrome]) and nonreentrant atrial tachycardias (MAT and ectopic atrial tachycardia) demonstrating overlap in cardiac arrhythmia phenotype. Similar overlap is seen in RASopathies with respect to skeletal, musculoskeletal and cutaneous abnormalities, dysmorphic facial features, and neurodevelopmental deficits. Nonreentrant atrial tachycardias may cause cardiac compromise if sinus rhythm is not restored expeditiously. Typical first-line supraventricular tachycardia anti-arrhythmics (propranolol and digoxin) were generally not effective in restoring or maintaining sinus rhythm in this cohort, while flecainide or amiodarone alone or in concert with propranolol were effective anti-arrhythmic agents for acute and chronic use. Atrial tachycardia resolved in all patients. However, a 4-month-old boy from the cohort was found asystolic (with concurrent cellulitis) and a second patient underwent cardiac transplant for heart failure complicated by recalcitrant atrial arrhythmia. While propranolol alone frequently failed to convert or maintain sinus rhythm, fleccainide or amiodarone, occasionally in combination with propranolol, was effective for RASopathy patient treatment for nonreentrant atrial arrhythmia. Our analysis shows that RASopathy patients may have nonreentrant atrial tachycardia with and without associated cardiac hypertrophy. While nonreentrant arrhythmia has been traditionally associated with Costello syndrome, this work provides an expanded view of RASopathy cardiac arrhythmia phenotype as we demonstrate mutant proteins throughout this signaling pathway can also give rise to ectopic and/or MAT."	"SHP2 Inhibition Prevents Adaptive Resistance to MEK Inhibitors in Multiple Cancer Models. Adaptive resistance to MEK inhibitors (MEKi) typically occurs via induction of genes for different receptor tyrosine kinases (RTK) and/or their ligands, even in tumors of the same histotype, making combination strategies challenging. SHP2 (PTPN11) is required for RAS/ERK pathway activation by most RTKs and might provide a common resistance node. We found that combining the SHP2 inhibitor SHP099 with a MEKi inhibited the proliferation of multiple cancer cell lines in vitroPTPN11 knockdown/MEKi treatment had similar effects, whereas expressing SHP099 binding-defective PTPN11 mutants conferred resistance, demonstrating that SHP099 is on-target. SHP099/trametinib was highly efficacious in xenograft and/or genetically engineered models of KRAS-mutant pancreas, lung, and ovarian cancers and in wild-type RAS-expressing triple-negative breast cancer. SHP099 inhibited activation of KRAS mutants with residual GTPase activity, impeded SOS/RAS/MEK/ERK1/2 reactivation in response to MEKi, and blocked ERK1/2-dependent transcriptional programs. We conclude that SHP099/MEKi combinations could have therapeutic utility in multiple malignancies.Significance: MEK inhibitors show limited efficacy as single agents, in part because of the rapid development of adaptive resistance. We find that SHP2/MEK inhibitor combinations prevent adaptive resistance in multiple cancer models expressing mutant and wild-type KRAS. Cancer Discov; 8(10); 1237-49. ©2018 AACR.See related commentary by Torres-Ayuso and Brognard, p. 1210This article is highlighted in the In This Issue feature, p. 1195."	"Role of protein phosphatases in the cancer microenvironment. Cancer cells depend on a supportive niche (the tumor microenvironment) that promotes tumor cell survival while protecting the malignant cells from therapeutic challenges and the host's defense systems. Cancer cells and the support cells in the tumor microenvironment communicate via cytokines/chemokines, cell:cell contact, or alterations in the metabolic state of the niche (e.g. hypoxia) that promote growth and survival of the tumor cell, influence metastasis, and defeat immune surveillance. These signaling pathways involve dysregulation of not only protein kinases but also protein phosphatases as normal signal transduction processes require both activation and deactivation. For instance, aberrant receptor signaling can result from constitutive activation of a tyrosine kinase such as FLT3 or inactivation of a tyrosine protein phosphatase such as SHP-2 (PTPN11). Activation of serine/threonine kinases such as AKT and ERK are often observed during the development of drug resistance while genomic and non-genomic suppression of serine/threonine protein phosphatases such as PP2A achieve similar results. It is fairly clear that the various protein phosphatases will impact processes that support drug resistance. Of growing interest is the emerging model whereby the support cells in the tumor microenvironment actually serve as drivers of tumorigenesis. This phenomenon has been most prominently observed in osteoblast cells in leukemic niches. At least one protein phosphatase, PTPN11, has emerged as a critical driver of this process in juvenile myelomonocytic leukemia. This review will cover the role of various serine/threonine and tyrosine protein phosphatases in processes that are central to tumor microenvironment function."	"Cardiovascular disease in Noonan syndrome. To provide information on the scope of cardiac disease in Noonan syndrome. Noonan syndrome is a common autosomal dominant RASopathy disorder characterized by clinical findings of facial dysmorphism, congenital heart disease, and short stature. The degree of genetic heterogeneity has recently become evident in that Noonan syndrome is now known to be caused by mutations in a large variety of genes which produce dysregulation of the RAS-MAPK (mitogen-activated protein kinase) signaling pathway. The scope of cardiac disease in Noonan syndrome is quite variable depending on the gene mutation, with some mutations usually associated with a high incidence of congenital heart defects (PTPN11, KRAS, and others) while those with predominantly hypertrophic cardiomyopathy (HCM) have higher risk and morbidity profiles (RAF1, RIT1, and those associated with multiple lentigines). Cardiac disease in Noonan syndrome varies according to the type of gene mutation. The most common forms of cardiac disease include pulmonary stenosis, HCM, and atrial septal defect. HCM in general is associated with increased risk, mortality, and morbidity. New concepts for potential treatments are discussed."	"Synthetic lethality of TNK2 inhibition in PTPN11-mutant leukemia. The protein tyrosine phosphatase PTPN11 is implicated in the pathogenesis of juvenile myelomonocytic leukemia (JMML), acute myeloid leukemia (AML), and other malignancies. Activating mutations in PTPN11 increase downstream proliferative signaling and cell survival. We investigated the signaling upstream of PTPN11 in JMML and AML cells and found that PTPN11 was activated by the nonreceptor tyrosine/serine/threonine kinase TNK2 and that PTPN11-mutant JMML and AML cells were sensitive to TNK2 inhibition. In cultured human cell-based assays, PTPN11 and TNK2 interacted directly, enabling TNK2 to phosphorylate PTPN11, which subsequently dephosphorylated TNK2 in a negative feedback loop. Mutations in PTPN11 did not affect this physical interaction but increased the basal activity of PTPN11 such that TNK2-mediated activation was additive. Consequently, coexpression of TNK2 and mutant PTPN11 synergistically increased mitogen-activated protein kinase (MAPK) signaling and enhanced colony formation in bone marrow cells from mice. Chemical inhibition of TNK2 blocked MAPK signaling and colony formation in vitro and decreased disease burden in a patient with PTPN11-mutant JMML who was treated with the multikinase (including TNK2) inhibitor dasatinib. Together, these data suggest that TNK2 is a promising therapeutic target for PTPN11-mutant leukemias."	"SHP2-Mediated Signal Networks in Stem Cell Homeostasis and Dysfunction. Stem cells, including embryonic stem cells (ESCs) and adult stem cells, play a central role in mammal organism development and homeostasis. They have two unique properties: the capacity for self-renewal and the ability to differentiate into many specialized cell types. Src homology region 2- (SH2-) containing protein tyrosine phosphatase 2 (SHP-2), a nonreceptor protein tyrosine phosphatase encoded by protein tyrosine phosphatase nonreceptor type 11 gene (PTPN11), regulates multicellular differentiation, proliferation, and survival through numerous conserved signal pathways. Gain-of-function (GOF) or loss-of-function (LOF) SHP2 in various cells, especially for stem cells, disrupt organism self-balance and lead to a plethora of diseases, such as cancer, maldevelopment, and excessive hyperblastosis. However, the exact mechanisms of SHP2 dysfunction in stem cells remain unclear. In this review, we intended to raise the attention and clarify the framework of SHP2-mediated signal pathways in various stem cells. Establishment of integrated signal architecture, from ESCs to adult stem cells, will help us to understand the changes of dynamic, multilayered pathways in response to SHP2 dysfunction. Overall, better understanding the functions of SHP2 in stem cells provides a new avenue to treat SHP2-associated diseases."	"Genetic Mutations in a Patient with Chronic Myeloid Leukemia Showing Blast Crisis 10 Years After Presentation. Since the introduction of tyrosine kinase inhibitors (TKI), the prospects for patients with chronic myeloid leukemia (CML) have improved significantly. Herein we present the case of a patient with CML who experienced blast crisis and development of acute myeloid leukemia (AML) 10 years after presentation. The CML was characterized by the gene fusion of breakpoint cluster region BCR and tyrosine-protein kinase ABL1. During treatment different therapeutic protocols including imatinib, nilotinib, dasatinib and ponatinib were applied due to development of resistance or non-response. Fluorescence in situ hybridization (FISH) and next-generation sequencing (NGS) were used to describe cytogenetic and molecular aberrations elucidating the development into AML: A loss of chromosome 7, as well as an arising frequency of variants in the gene met proto-oncogene MET (p.T110I) and tyrosine-protein phosphatase non-receptor type 11 PTPN11 (p.Q510L) was observed. This report describes the comprehensive characterization of a clinical case showing multiple therapeutic resistances correlated with genetic aberrations."	"A System-wide Approach to Monitor Responses to Synergistic BRAF and EGFR Inhibition in Colorectal Cancer Cells. Intrinsic and/or acquired resistance represents one of the great challenges in targeted cancer therapy. A deeper understanding of the molecular biology of cancer has resulted in more efficient strategies, where one or multiple drugs are adopted in novel therapies to tackle resistance. This beneficial effect of using combination treatments has also been observed in colorectal cancer patients harboring the BRAF(V600E) mutation, whereby dual inhibition of BRAF(V600E) and EGFR increases antitumor activity. Notwithstanding this success, it is not clear whether this combination treatment is the only or most effective treatment to block intrinsic resistance to BRAF inhibitors. Here, we investigate molecular responses upon single and multi-target treatments, over time, using BRAF(V600E) mutant colorectal cancer cells as a model system. Through integration of transcriptomic, proteomic and phosphoproteomics data we obtain a comprehensive overview, revealing both known and novel responses. We primarily observe widespread up-regulation of receptor tyrosine kinases and metabolic pathways upon BRAF inhibition. These findings point to mechanisms by which the drug-treated cells switch energy sources and enter a quiescent-like state as a defensive response, while additionally compensating for the MAPK pathway inhibition."	"Long-term moderate exercise enhances specific proteins that constitute neurotrophin signaling pathway: A TMT-based quantitative proteomic analysis of rat plasma. Physical exercise has been reported to increase neurotrophin in brain tissues as hippocampus as well as increased neurotrophic level peripherally in blood plasma and might have an effect on/or affect molecular processes of energy metabolism (and homeostasis). In this study, using quantitative proteomic analysis, we obtained a plasma protein profile from the rat with long-term moderate exercise. A total of 752 proteins were identified in the plasma. Among them, 54 proteins were significant up-regulated and 47 proteins were down-regulated in the plasma of exercise group compared with the control group. Bioinformatic analyses showed that these altered proteins are widely involved in multiple biological processes, molecular functions and cellular components, which connect with 11 signaling pathways. Interestingly, 5 up-regulated proteins Rap1b, PTPN11, ARHGDIA, Cdc42 and YWHAE, confirmed by Western blots, are involved in the neurotrophin signaling pathway which shows the lowest P value among the identified pathways. Further analyses showed that the 5 neurotrophin-signaling-pathway-related proteins participate in two important protein-protein interaction networks associated to cell survival and apoptosis, axonal development, synapse formation and plasticity. This study provides an exercise-induced plasma protein profile, suggesting that long-term exercise enhances the proteins involved in neurotrophin signaling pathway which may contribute to health benefit. Physical activity contributes to myriad benefits on body health across the lifespan. The changes in plasma proteins after chronic moderate exercise may be used as biomarkers for health and may also play important roles in increase of cardiovascular fitness, enhancement of immune competence, prevention of obesity, decrease of risk for neurological disorders, cancer, stroke, diabetes and other metabolic disorders. Using a TMT-based proteomic method, this study identified 101 altered proteins in the plasma of rats after long-term moderate treadmill running, which may provide novel biomarkers for further investigation of the underlying mechanism of physical exercise. We confirmed that exercise enhances 5 proteins of the neurotrophin signaling pathway that may contribute to health benefits."	"Clinicopathological and prognostic significance of SHP2 and Hook1 expression in patients with thyroid carcinoma. Some thyroid carcinomas (TCs) have an aggressive biological behavior and poor prognosis, and lacking of effective molecular markers is still the main obstacle for clinical stratified diagnosis and treatment of TC. The aim of the study was to discover the clinicopathological and prognostic implications of Src homology region 2-containing protein tyrosine phosphatase 2 (SHP2) and Hook microtubule tethering protein 1 (Hook1) expression in TC. The expression of SHP2 and Hook1 was detected by immunohistochemistry on tissue microarrays from 313 primary TCs who underwent surgery in January 2006 and January 2010 in Zhejiang Cancer Hospital. The χ<sup>2</sup> test, Kaplan-Meier method, and Cox proportional-hazards regression models were used to analyze the associations between their expressions and clinicopathological features and prognosis. The expression rates of SHP2 and Hook1 in TC were 57.5% (180/313) and 22.0% (69/313), respectively. SHP2 was positively correlated with Hook1 in TC. SHP2 expression differed significantly by age, histologic variants, maximal tumor diameter, intrathyroidal dissemination, metastases, and disease stage (P &lt; .05). Moreover, patients with high SHP2 expression had reduced risk for death of disease compared with those with low SHP2 expression (hazard ratio, 0.267; 95% confidence interval, 0.105-0.684; P = .006) in univariate analysis, but that multivariate analysis failed to suggest that SHP2 was an independent prognostic factor. Hook1 expression differed significantly by histologic variants, maximal tumor diameter, and intrathyroidal dissemination (P &lt; .05). However, there was no significant correlation between Hook1 expression and outcome in TC (P &gt; .05). Our results suggested that SHP2 may be a favorable indicator of prognosis in TC."	"Ocular findings in Noonan syndrome: a retrospective cohort study of 105 patients. The aim of this retrospective study is to describe ocular findings in a large Noonan syndrome cohort and to detect associations between ocular features and genetic mutations that were not found in earlier studies. We collected ophthalmological and genetic data of 105 patients (median age, 12 years; range, 0-60 years) clinically diagnosed as Noonan syndrome. The ocular findings were linked to the genotypes. All patients with Noonan syndrome showed multiple abnormalities in the categories of vision and refraction, external ocular features, ocular alignment and motility, anterior ocular segment, and posterior ocular segment. In total, 50 patients have NS due to a mutation in PTPN11. Permanent visual impairment (bilateral best-corrected visual acuity &lt; 0.3) was found in 7 patients, including patients with a mutation in RAF1, SHOC2, and KRAS. Keratoconus was found in 2 PTPN11 positive patients, and prominent corneal nerves were observed in a patient with a SOS1 mutation. This study shows an overview of ocular abnormalities in Noonan syndrome, including permanent visual impairment caused by binocular optic nerve abnormalities and nystagmus. Delay in ophthalmological diagnosis is still present, also in patients with visual impairment. All Noonan syndrome patients should have a complete ophthalmological examination at the time of diagnosis. What is Known: • Although we discover more pathogenic mutations in patients with Noonan syndrome, Noonan syndrome still is a clinical diagnosis • Ocular features of Noonan syndrome are characterized by developmental anomalies of the eyelids and associated with other ocular abnormalities in childhood (including refractive errors, strabismus and amblyopia). What is New: • There seems to be a delay in the ophthalmological diagnosis and awareness of the broad variety ofophthalmological features including refractive errors and visual impairment in Noonan syndrome is needed. All children should have a full ophthalmological examination at the time of diagnosis. • Permanent visual impairment (best-corrected visual acuity &lt; 0.3) is found in patients with mutations in RAF1, SHOC2, and KRAS and the cause is probably a developmental disorder of the optic nerves."	"Targeting SHP-1, 2 and SHIP Pathways: A Novel Strategy for Cancer Treatment? Well-balanced levels of tyrosine phosphorylation, maintained by the reversible and coordinated actions of protein tyrosine kinases (PTKs) and protein tyrosine phosphatases (PTPs), are critical for a wide range of cellular processes including growth, differentiation, metabolism, migration, and survival. Aberrant tyrosine phosphorylation, as a result of a perturbed balance between the activities of PTKs and PTPs, is linked to the pathogenesis of numerous human diseases, including cancer, suggesting that PTPs may be innovative molecular targets for cancer treatment. Two PTPs that have an important inhibitory role in haematopoietic cells are SHP-1 and SHP-2. SHP-1, 2 promote cell growth and act by both upregulating positive signaling pathways and by downregulating negative signaling pathways. SHIP is another inhibitory phosphatase that is specific for the inositol phospholipid phosphatidylinositol-3,4,5-trisphosphate (PIP3). SHIP acts as a negative regulator of immune response by hydrolysing PIP3, and SHIP deficiency results in myeloproliferation and B-cell lymphoma in mice. The validation of SHP-1, 2 and SHIP as oncology targets has generated interest in the development of inhibitors as potential therapeutic agents for cancers; however, SHP-1, 2 and SHIP have proven to be an extremely difficult target for drug discovery, primarily due to the highly conserved and positively charged nature of their PTP active site, and many PTP inhibitors lack either appro-priate selectivity or membrane permeability. To overcome these caveats, novel techniques have been employed to synthesise new inhibitors that specifically attenuate the PTP-dependent signaling inside the cell and amongst them; some are already in clinical development which are discussed in this review."	"Cutaneous involvement in an 8-year-old boy with Ras-associated autoimmune leucoproliferative disorder (RALD). Ras-associated autoimmune leucoproliferative disorder (RALD) is a nonmalignant syndrome associated with somatic KRAS mutations. We report a patient with RALD and cutaneous lesions, the first such case reported, to our knowledge. An 8-year-old boy presented with erythematous plaques on his face and body, along with lymphadenopathies and spleen enlargement without systemic symptoms. An increased number of monocytes were found in skin biopsy, peripheral blood and bone marrow (BM). Juvenile myelomonocytic leukaemia (JMML) was suspected. Genetic study using peripheral blood showed no mutations in the KRAS, PTPN11, NRAS, CBL or BCR-ABL genes, but bone marrow analysis revealed a mutation (p-G12S/c.34 G&gt;A) in the KRAS gene. The karyotype was normal. No KRAS mutations were found using molecular analysis of saliva. The diagnosis of RALD was proposed. The differential diagnosis between RALD and JMML is challenging because there are no established criteria to differentiate between them. The clinical course of RALD is uncertain, so long-term follow-up is recommended."	"Comparative assessment of gene-specific variant distribution in prenatal and postnatal cohorts tested for Noonan syndrome and related conditions. To compare the pattern of gene-specific involvement and the spectrum of variants observed in prenatal and postnatal (mean ± SD, 8.9 ± 9.4 years) cohorts tested for Noonan syndrome and related conditions. Outcomes of sequencing panel testing were compared between prenatal (n = 845) and postnatal (n = 409) cohorts. PTPN11 and SOS1 harbored the majority of observed variants in both prenatal and postnatal cohorts, and BRAF, HRAS, KRAS, MAP2K1, MAP2K2, RAF1, and SHOC2 had similarities in their pattern of involvement in both cohorts. PTPN11 was the largest contributor of pathogenic variants and had the lowest frequency of variants of uncertain significance (VUS). SOS1 had the highest VUS frequency in both cohorts. The overall VUS frequency was twice as high in prenatal specimens (58.1 vs. 29.3%). PTPN11 and SOS1 had a 1.5-fold higher VUS frequency in the prenatal cohort (10.7 vs. 7.4% and 95 vs. 61.1%, respectively). The diagnostic yield was 3.7% for prenatal samples, with a higher yield of 12.3% in fetuses with cystic hygroma as a sole finding, and 21.3% for postnatal. Comparison of prenatal versus postnatal specimens demonstrates that the pattern of specific gene involvement is similar, whereas the classification spectrum of observed variants differs considerably."	"Uncoupling ITIM receptor G6b-B from tyrosine phosphatases Shp1 and Shp2 disrupts murine platelet homeostasis. The immunoreceptor tyrosine-based inhibitory motif (ITIM)-containing receptor G6b-B has emerged as a key regulator of platelet homeostasis. However, it remains unclear how it mediates its effects. Tyrosine phosphorylation of ITIM and immunoreceptor tyrosine-based switch motif (ITSM) within the cytoplasmic tail of G6b-B provides a docking site for Src homology 2 domain-containing protein-tyrosine phosphatases Shp1 and Shp2, which are also critical regulators of platelet production and function. In this study, we investigate the physiological consequences of uncoupling G6b-B from Shp1 and Shp2. To address this, we generated a transgenic mouse model expressing a mutant form of G6b-B in which tyrosine residues 212 and 238 within ITIM and ITSM were mutated to phenylalanine. Mice homozygous for the mutation (G6b-B diY/F) were macrothrombocytopenic, as a result of the reduction in platelet production, and had large clusters of megakaryocytes and myelofibrosis at sites of hematopoiesis, similar to those observed in G6b-deficient mice and patients. Platelets from G6b-B diY/F mice were hyporesponsive to collagen, as a result of the significant reduction in the expression of the immunoreceptor tyrosine-based activation motif (ITAM)-containing collagen receptor complex GPVI-FcR γ-chain, as well as thrombin, which could be partially rescued by costimulating the platelets with adenosine diphosphate. In contrast, platelets from G6b-B diY/F, G6b KO, and megakaryocyte-specific Shp2 KO mice were hyperresponsive to antibody-mediated cross-linking of the hemi-ITAM-containing podoplanin receptor CLEC-2, suggesting that G6b-B inhibits CLEC-2-mediated platelet activation through Shp2. Findings from this study demonstrate that G6b-B must engage with Shp1 and Shp2 to mediate its regulatory effects on platelet homeostasis."	"Mutation-specific signaling profiles and kinase inhibitor sensitivities of juvenile myelomonocytic leukemia revealed by induced pluripotent stem cells. Juvenile myelomonocytic leukemia (JMML) is an uncommon myeloproliferative neoplasm driven by Ras pathway mutations and hyperactive Ras/MAPK signaling. Outcomes for many children with JMML remain dismal with current standard-of-care cytoreductive chemotherapy and hematopoietic stem cell transplantation. We used patient-derived induced pluripotent stem cells (iPSCs) to characterize the signaling profiles and potential therapeutic vulnerabilities of PTPN11-mutant and CBL-mutant JMML. We assessed whether MEK, JAK, and PI3K/mTOR kinase inhibitors (i) could inhibit myeloproliferation and aberrant signaling in iPSC-derived hematopoietic progenitors with PTPN11 E76K or CBL Y371H mutations. We detected constitutive Ras/MAPK and PI3K/mTOR signaling in PTPN11 and CBL iPSC-derived myeloid cells. Activated signaling and growth of PTPN11 iPSCs were preferentially inhibited in vitro by the MEKi PD0325901 and trametinib. Conversely, JAK/STAT signaling was selectively activated in CBL iPSCs and abrogated by the JAKi momelotinib and ruxolitinib. The PI3Kδi idelalisib and mTORi rapamycin inhibited signaling and myeloproliferation in both PTPN11 and CBL iPSCs. These findings demonstrate differential sensitivity of PTPN11 iPSCs to MEKi and of CBL iPSCs to JAKi, but similar sensitivity to PI3Ki and mTORi. Clinical investigation of mutation-specific kinase inhibitor therapies in children with JMML may be warranted."	"Identification of novel mutational drivers reveals oncogene dependencies in multiple myeloma. Understanding the profile of oncogene and tumor suppressor gene mutations with their interactions and impact on the prognosis of multiple myeloma (MM) can improve the definition of disease subsets and identify pathways important in disease pathobiology. Using integrated genomics of 1273 newly diagnosed patients with MM, we identified 63 driver genes, some of which are novel, including IDH1, IDH2, HUWE1, KLHL6, and PTPN11 Oncogene mutations are significantly more clonal than tumor suppressor mutations, indicating they may exert a bigger selective pressure. Patients with more driver gene abnormalities are associated with worse outcomes, as are identified mechanisms of genomic instability. Oncogenic dependencies were identified between mutations in driver genes, common regions of copy number change, and primary translocation and hyperdiploidy events. These dependencies included associations with t(4;14) and mutations in FGFR3, DIS3, and PRKD2; t(11;14) with mutations in CCND1 and IRF4; t(14;16) with mutations in MAF, BRAF, DIS3, and ATM; and hyperdiploidy with gain 11q, mutations in FAM46C, and MYC rearrangements. These associations indicate that the genomic landscape of myeloma is predetermined by the primary events upon which further dependencies are built, giving rise to a nonrandom accumulation of genetic hits. Understanding these dependencies may elucidate potential evolutionary patterns and lead to better treatment regimens."	"Intramolecular energies of the cytotoxic protein CagA of Helicobacter pylori as a possible descriptor of strains' pathogenicity level. The Helicobacter pylori cytotoxin-associated gene A (CagA) is known for causing gastroduodenal diseases, such as atrophic gastritis and peptic ulcerations. Furthermore Helicobacter pylori CagA positive strains has been reported as one of the main risk factors for gastric cancer (Parsonnet et al., 1997). Structural variations in the CagA structure can alter its affinity with the host proteins, inducing differences in the pathogenicity of H. pylori. CagA N-terminal region is characterized for be conserved among all H. pylori strains since the C-terminal region is characterized by an intrinsically disorder behavior. We generated complete structural models of CagA using different conformations of the C-terminal region for two H. pylori strains. These models contain the same EPIYA (ABC1C2) motifs but different level of pathogenicity: gastric cancer and duodenal ulcer. Using these structural models we evaluated the pathogenicity level of the H. pylori strain, based on the affinity of the interaction with SHP-2 and Grb2 receptors and on the number of interactions with the EPIYA motif. We found that the main differences in the interaction was due to the contributions of certain types of energies from each strain and not from the total energy of the molecule. Specifically, the electrostatic energy, helix dipole energy, Wander Waals clashes, torsional clash, backbone clash and cis bond energy allowed a separation between severe and mild pathology for the interaction of only CagA with SHP2."	"miR-1266 Contributes to Pancreatic Cancer Progression and Chemoresistance by the STAT3 and NF-κB Signaling Pathways. Pancreatic cancer is characterized by chemoresistance after several cycles of chemotherapy, which is a major issue responsible for treatment failure of pancreatic cancer. Therefore, it is necessary to explore the specific mechanism underlying chemotherapeutic resistance to overcome this issue. Here we report that miR-1266 is dramatically elevated and correlates with poor survival and chemotherapy response in pancreatic cancer patients. Upregulation of miR-1266 enhanced the chemoresistance of pancreatic cancer cells to gemcitabine (GEM) in vitro and in vivo; conversely, inhibition of miR-1266 yielded the opposite effect. Importantly, silencing of miR-1266 restored the sensitivity of pancreatic cancer cells to GEM in a dose-dependent manner in vivo. Furthermore, our results demonstrate that miR-1266 promotes resistance of pancreatic cancer cells to GEM by targeting multiple negative regulators of the STAT3 and NF-κB pathways, including SOCS3, PTPN11, ITCH, and TNIP1, leading to constitutive activation of STAT3 and NF-κB signaling. Thus, our findings clarify a novel mechanism by which miR-1266 induces chemotherapeutic resistance in pancreatic cancer, indicating that miR-1266 may be used as chemotherapeutic response indicator. Antagomir-1266 as a chemotherapeutic sensitizer, in combination with GEM, may serve as a rational regimen in the treatment of chemotherapy-resistant pancreatic cancer."	"Giant cell lesion of the jaw as a presenting feature of Noonan syndrome. This is a case of a 20-year-old woman who presented with a left jaw mass which was resected and found to be a giant cell granuloma of the mandible. Her history and physical examination were suggestive for Noonan syndrome which was confirmed with genetic testing and the finding of a PTPN11 gene mutation which has rarely been associated with giant cell lesions of the jaw. Given her particular genetic mutation and the presence of a giant cell lesion, we present a case of Noonan-like/multiple giant cell lesion syndrome."	"Mutant KRAS-driven cancers depend on PTPN11/SHP2 phosphatase. The ubiquitously expressed non-receptor protein tyrosine phosphatase SHP2, encoded by PTPN11, is involved in signal transduction downstream of multiple growth factor, cytokine and integrin receptors<sup>1</sup>. Its requirement for complete RAS-MAPK activation and its role as a negative regulator of JAK-STAT signaling have established SHP2 as an essential player in oncogenic signaling pathways<sup>1-7</sup>. Recently, a novel potent allosteric SHP2 inhibitor was presented as a viable therapeutic option for receptor tyrosine kinase-driven cancers, but was shown to be ineffective in KRAS-mutant tumor cell lines in vitro<sup>8</sup>. Here, we report a central and indispensable role for SHP2 in oncogenic KRAS-driven tumors. Genetic deletion of Ptpn11 profoundly inhibited tumor development in mutant KRAS-driven murine models of pancreatic ductal adenocarcinoma and non-small-cell lung cancer. We provide evidence for a critical dependence of mutant KRAS on SHP2 during carcinogenesis. Deletion or inhibition of SHP2 in established tumors delayed tumor progression but was not sufficient to achieve tumor regression. However, SHP2 was necessary for resistance mechanisms upon blockade of MEK. Synergy was observed when both SHP2 and MEK were targeted, resulting in sustained tumor growth control in murine and human patient-derived organoids and xenograft models of pancreatic ductal adenocarcinoma and non-small-cell lung cancer. Our data indicate the clinical utility of dual SHP2/MEK inhibition as a targeted therapy approach for KRAS-mutant cancers."	"SHP2 is required for growth of KRAS-mutant non-small-cell lung cancer in vivo. RAS mutations are frequent in human cancer, especially in pancreatic, colorectal and non-small-cell lung cancers (NSCLCs)<sup>1-3</sup>. Inhibition of the RAS oncoproteins has proven difficult<sup>4</sup>, and attempts to target downstream effectors<sup>5-7</sup> have been hampered by the activation of compensatory resistance mechanisms<sup>8</sup>. It is also well established that KRAS-mutant tumors are insensitive to inhibition of upstream growth factor receptor signaling. Thus, epidermal growth factor receptor antibody therapy is only effective in KRAS wild-type colon cancers<sup>9,10</sup>. Consistently, inhibition of SHP2 (also known as PTPN11), which links receptor tyrosine kinase signaling to the RAS-RAF-MEK-ERK pathway<sup>11,12</sup>, was shown to be ineffective in KRAS-mutant or BRAF-mutant cancer cell lines<sup>13</sup>. Our data also indicate that SHP2 inhibition in KRAS-mutant NSCLC cells under normal cell culture conditions has little effect. By contrast, SHP2 inhibition under growth factor-limiting conditions in vitro results in a senescence response. In vivo, inhibition of SHP2 in KRAS-mutant NSCLC also provokes a senescence response, which is exacerbated by MEK inhibition. Our data identify SHP2 inhibition as an unexpected vulnerability of KRAS-mutant NSCLC cells that remains undetected in cell culture and can be exploited therapeutically."	"Myeloid-restricted ablation of Shp2 restrains melanoma growth by amplifying the reciprocal promotion of CXCL9 and IFN-γ production in tumor microenvironment. The Src homology 2 domain-containing protein tyrosine phosphatase 2 (Shp2) is generally considered to be an oncogene owing to its ability in enhancing the malignancy of multiple types of tumor cells; however, its role in modulating tumor immunity remains largely elusive. Here, we reported that myeloid-restricted ablation of Shp2 suppressed melanoma growth. Mechanistically, loss of Shp2 potentiates macrophage production of CXCL9 in response to IFN-γ and tumor cell-derived cytokines, thereby facilitating the tumor infiltration of IFN-γ-producing T cells that could in turn support CXCL9 production within tumor microenvironment. Collectively, our findings highlight a causative role of myeloid Shp2 in dampening T cell-mediated antitumor immunity by restraining the macrophage/CXCL9-T cell/IFN-γ feedback loop. Thus, targeting macrophage Shp2 may help to create a Th1-dominant tumor immune microenvironment."	"Decline in arylsulfatase B expression increases EGFR expression by inhibiting the protein-tyrosine phosphatase SHP2 and activating JNK in prostate cells. Epidermal growth factor receptor (EGFR) has a crucial role in cell differentiation and proliferation and cancer, and its expression appears to be up-regulated when arylsulfatase B (ARSB or GalNAc-4-sulfatase) is reduced. ARSB removes 4-sulfate groups from the nonreducing end of dermatan sulfate and chondroitin 4-sulfate (C4S), and its decreased expression has previously been reported to inhibit the activity of the ubiquitous protein-tyrosine phosphatase, nonreceptor type 11 (SHP2 or PTPN11). However, the mechanism by which decline in ARSB leads to decline in SHP2 activity is unclear. Here, we show that SHP2 binds preferentially C4S, rather than chondroitin 6-sulfate, and confirm that SHP2 activity declines when ARSB is silenced. The reduction in ARSB activity, and the resultant increase in C4S, increased the expression of EGFR (Her1/ErbB1) in human prostate stem and epithelial cells. The increased expression of EGFR occurred after 1) the decline in SHP2 activity, 2) enhanced c-Jun N-terminal kinase (JNK) activity, 3) increased nuclear DNA binding by c-Jun and c-Fos, and 4) EGFR promoter activation. In response to exogenous EGF, there was increased bromodeoxyuridine incorporation, consistent with enhanced cell proliferation. These findings indicated that ARSB and chondroitin 4-sulfation affect the activation of an important dual phosphorylation threonine-tyrosine kinase and the mRNA expression of a critical tyrosine kinase receptor in prostate cells. Restoration of ARSB activity with the associated reduction in C4S may provide a new therapeutic approach for managing malignancies in which EGFR-mediated tyrosine kinase signaling pathways are active."	"New developments in the genetic diagnosis of short stature. Genome-wide approaches including genome-wide association studies as well as exome and genome sequencing represent powerful new approaches that have improved our ability to identify genetic causes of human disorders. The purpose of this review is to describe recent advances in the genetic causes of short stature. In addition to SHOX deficiency which is one of the most common causes of isolated short stature, PAPPA2, ACAN, NPPC, NPR2, PTPN11 (and other rasopathies), FBN1, IHH and BMP2 have been identified in isolated growth disorders with or without other mild skeletal findings. In addition, novel genetic causes of syndromic short stature have been discovered, including pathogenic variants in BRCA1, DONSON, AMMECR1, NFIX, SLC25A24, and FN1. Isolated growth disorders are often monogenic. Specific genetic causes typically have specific biochemical and/or phenotype characteristics which are diagnostically helpful. Identification of additional subjects with a specific genetic cause of short stature often leads to a broadening of the known clinical spectrum for that condition. The identification of novel genetic causes of short stature has provided important insights into the underlying molecular mechanisms of growth failure."	"A genome-wide association study reveals novel genomic regions and positional candidate genes for fat deposition in broiler chickens. Excess fat content in chickens has a negative impact on poultry production. The discovery of QTL associated with fat deposition in the carcass allows the identification of positional candidate genes (PCGs) that might regulate fat deposition and be useful for selection against excess fat content in chicken's carcass. This study aimed to estimate genomic heritability coefficients and to identify QTLs and PCGs for abdominal fat (ABF) and skin (SKIN) traits in a broiler chicken population, originated from the White Plymouth Rock and White Cornish breeds. ABF and SKIN are moderately heritable traits in our broiler population with estimates ranging from 0.23 to 0.33. Using a high density SNP panel (355,027 informative SNPs), we detected nine unique QTLs that were associated with these fat traits. Among these, four QTL were novel, while five have been previously reported in the literature. Thirteen PCGs were identified that might regulate fat deposition in these QTL regions: JDP2, PLCG1, HNF4A, FITM2, ADIPOR1, PTPN11, MVK, APOA1, APOA4, APOA5, ENSGALG00000000477, ENSGALG00000000483, and ENSGALG00000005043. We used sequence information from founder animals to detect 4843 SNPs in the 13 PCGs. Among those, two were classified as potentially deleterious and two as high impact SNPs. This study generated novel results that can contribute to a better understanding of fat deposition in chickens. The use of high density array of SNPs increases genome coverage and improves QTL resolution than would have been achieved with low density. The identified PCGs were involved in many biological processes that regulate lipid storage. The SNPs identified in the PCGs, especially those predicted as potentially deleterious and high impact, may affect fat deposition. Validation should be undertaken before using these SNPs for selection against carcass fat accumulation and to improve feed efficiency in broiler chicken production."	"Cholesterol crystals increase vascular permeability by inactivating SHP2 and disrupting adherens junctions. To understand the adverse effects of cholesterol crystals on vascular homeostasis, we have studied their effects on endothelial barrier function. Cholesterol crystals increased endothelial barrier permeability in a dose and time dependent manner. In addition, cholesterol crystals induced tyrosine phosphorylation of VE-cadherin and α-catenin, disrupting endothelial AJ and its barrier function and these effects required xanthine oxidase-mediated H2O2 production, SHP2 inactivation and Frk activation. Similarly, feeding C57BL/6 mice with cholesterol-rich diet increased xanthine oxidase expression, H2O2 production, SHP2 inactivation and Frk activation leading to enhanced tyrosine phosphorylation of VE-cadherin and α-catenin, thereby disrupting endothelial AJ and increasing vascular permeability. Resolvin D1, a specialized proresolving mediator, prevented all these adverse effects of cholesterol crystals and cholesterol-rich diet in endothelial cells and mice, respectively. Based on these observations, it is likely that cholesterol crystals via disrupting AJ increase vascular permeability, a critical event of endothelial dysfunction and specialized proresolving mediators such as Resolvin D1 exert protection against these effects."	"Ocimum basilicum miRNOME revisited: A cross kingdom approach. O. basilicum is medicinally important herb having inevitable role in human health. However, the mechanism of action is largely unknown. Present study aims to understand the mechanism of regulation of key human target genes that could plausibly modulated by O. basilicum miRNAs in cross kingdom manner using computational and system biology approach. O. basilicum miRNA sequences were retrieved and their corresponding human target genes were identified using psRNA target and interaction analysis of hub nodes. Six O. basilicum derived miRNAs were found to modulate 26 human target genes which were associated `with PI3K-AKTand MAPK signaling pathways with PTPN11, EIF2S2, NOS1, IRS1 and USO1 as top 5 Hub nodes. O. basilicum miRNAs not only regulate key human target genes having a significance in various diseases but also paves the path for future studies that might explore potential of miRNA mediated cross-kingdom regulation, prevention and treatment of various human diseases including cancer."	"Hematopoietic-restricted Ptpn11E76K reveals indolent MPN progression in mice. Juvenile Myelomonocytic Leukemia (JMML) is a pediatric myeloproliferative neoplasm (MPN) that has a poor prognosis. Somatic mutations in Ptpn11 are the most frequent cause of JMML and they commonly occur in utero. Animal models of mutant Ptpn11 have probed the signaling pathways that contribute to JMML. However, existing models may inappropriately exacerbate MPN features by relying on non-hematopoietic-restricted Cre-loxP strains or transplantations into irradiated recipients. In this study we generate hematopoietic-restricted models of Ptpn11E76K-mediated disease using Csf1r-MCM and Flt3Cre. We show that these animals have indolent MPN progression despite robust GM-CSF hypersensitivity and Ras-Erk hyperactivation. Rather, the dominant pathology is pronounced thrombocytopenia with expanded extramedullary hematopoiesis. Furthermore, we demonstrate that the timing of tamoxifen administration in Csf1r-MCM mice can specifically induce recombinase activity in either fetal or adult hematopoietic progenitors. We take advantage of this technique to show more rapid monocytosis following Ptpn11E76K expression in fetal progenitors compared with adult progenitors. Finally, we demonstrate that Ptpn11E76K results in the progressive reduction of T cells, most notably of CD4+ and naïve T cells. This corresponds to an increased frequency of T cell progenitors in the thymus and may help explain the occasional emergence of T-cell leukemias in JMML patients. Overall, our study is the first to describe the consequences of hematopoietic-restricted Ptpn11E76K expression in the absence of irradiation. Our techniques can be readily adapted by other researchers studying somatically-acquired blood disorders."	"Systemic lupus erythematosus in a patient with Noonan syndrome-like disorder with loose anagen hair 1: More than a chance association. Systemic lupus erythematosus (SLE) has been reported among patients with RASopathy. Five patients have been reported: three with SHOC2 variants, one with a PTPN11 variant, and one with a KRAS variant. SHOC2 variant might represent a relatively common predisposing factor for SLE among the RASopathy genes. However, the clinical details were only reported for two patients, while information on the remaining patient appeared only in a tabular format with minimal clinical description. Here, we report a patient with a SHOC2 variant and SLE. The proband was a 28-year-old male patient with intellectual disabilities, a short stature, dysmorphic facial features, and thin hair. He developed hypertrophic cardiomyopathy and afebrile generalized seizures at the ages of 7 and 18 years, respectively. At the age of 24 years, he presented with a 3-day history of intermittent fever accompanied by right chest pain and a malar butterfly rash. He fulfilled both the American College of Rheumatology (ACR) criteria and the Systemic Lupus International Collaborating Clinics (SLICC) criteria for SLE and was successfully treated with prednisolone. Medical exome sequencing identified a de novo SHOC2 variant (c.4A &gt; G, p.S2G). The present report of a second patient who fulfills both the ACR criteria and the SLICC criteria of SLE. We suggest that the association between SHOC2 variant and SLE represents more than a chance association. In the event of fever of unknown origin in patients with constitutional SHOC2 pathogenic variant, SLE should be suspected."	"De novo activating mutations drive clonal evolution and enhance clonal fitness in KMT2A-rearranged leukemia. Activating signaling mutations are common in acute leukemia with KMT2A (previously MLL) rearrangements (KMT2A-R). These mutations are often subclonal and their biological impact remains unclear. Using a retroviral acute myeloid mouse leukemia model, we demonstrate that FLT3 <sup>ITD</sup> , FLT3 <sup>N676K</sup> , and NRAS <sup>G12D</sup> accelerate KMT2A-MLLT3 leukemia onset. Further, also subclonal FLT3 <sup>N676K</sup> mutations accelerate disease, possibly by providing stimulatory factors. Herein, we show that one such factor, MIF, promotes survival of mouse KMT2A-MLLT3 leukemia initiating cells. We identify acquired de novo mutations in Braf, Cbl, Kras, and Ptpn11 in KMT2A-MLLT3 leukemia cells that favored clonal expansion. During clonal evolution, we observe serial genetic changes at the Kras <sup>G12D</sup> locus, consistent with a strong selective advantage of additional Kras <sup>G12D</sup> . KMT2A-MLLT3 leukemias with signaling mutations enforce Myc and Myb transcriptional modules. Our results provide new insight into the biology of KMT2A-R leukemia with subclonal signaling mutations and highlight the importance of activated signaling as a contributing driver."	"Noonan syndrome: Severe phenotype and PTPN11 mutations. Noonan syndrome (NS) is a genetic disorder characterized by a wide range of distinctive features and health problems. It caused in 50% of cases by missense mutations in PTPN11 gene. It has been postulated that it is possible to predict the disease course based into the impact of mutations on the protein. We report two cases of severe NS phenotype including hydrops fetalis. PTPN11 gene was studied in germinal cells of both patients by sequencing. Two different mutations (p.Gly503Arg and p.Met504Val) was detected in PTPN11 gene. These mutations have been reported previously, and when they were germinal variants, patients presented classic NS, NS with other malignancies and recently, p.Gly503Arg has been also observed in a patient with severe NS and hydrops fetalis, as our cases. Therefore, these observations shade light on that it is not always possibly to determine the genotype-phenotype relation based into the impact of mutations on the protein in NS patients with PTPN11 mutations."	"SHP2 inhibitor PHPS1 protects against atherosclerosis by inhibiting smooth muscle cell proliferation. Smooth muscle cells play an important role in the development of atherosclerosis. SHP2 is known to regulate the proliferation and migration of smooth muscle cells. The purpose of this study was to determine whether the SHP2 inhibitor PHPS1 has a pro-atherosclerotic or an atheroprotective effect in vivo and in vitro. After exposure to a high-cholesterol diet for 4 weeks, LDL receptor-deficient (Ldlr<sup>-/-</sup>) mice were exposed to the SHP2 inhibitor PHPS1 or vehicle. Body weight, serum glucose and lipid levels were determined. The size and composition of atherosclerotic plaques were measured by en face analysis, Movat staining and immunohistochemistry. The phosphorylation of SHP2 and related signaling molecules was analyzed by Western blot. Mechanistic analyses were performed in oxLDL-stimulated cultured vascular smooth muscle cells (VSMCs) with or without 10 mM PHPS1 pretreatment. Protein phosphorylation levels were detected by Western blot, and VSMC proliferation was assessed by BrdU staining. PHPS1 decreased the number of atherosclerotic plaques without significantly affecting body weight, serum glucose levels or lipid metabolism. Plaque composition analysis showed a significant decrease in the number of VSMCs in atherosclerotic lesions of Ldlr<sup>-/-</sup> mice treated with PHPS1. Stimulation with oxLDL induced a dose-dependent increase in the number of VSMCs and in SHP2 and ERK phosphorylation levels, and these effects were blocked by PHPS1. The SHP2 inhibitor PHPS1 exerts a protective effect against atherosclerosis by reducing VSMC proliferation via SHP2/ERK pathway activation."	"Multiple unexpected lesions of metachondromatosis detected by technetium-99m methylene diphosphonate SPECT/CT: A case report. Metachondromatosis (MC) is a very rare genetic disease, which is infrequently reported worldwide, which leads to osteochondroma and enchondromatosis. The disease has been shown to be associated with loss of function of the tumor suppressor gene &quot;protein tyrosine phosphatase, non-receptor type 11&quot; (PTPN11). A 12-year-old female was admitted to the hospital with pain due to an enlarged mass in her left fifth finger. Examination of the left hand by computed tomography (CT) revealed an expanding type of round and low-density lesion in the fifth proximal phalanx. The patient then underwent technetium-99m methylene diphosphonate single-photon emission CT/CT (Tc-MDP SPECT/CT) to assess the nature of the lesion. The SPECT/CT image revealed dilated osteopathy and increased activity of the fifth proximal phalanx on the left hand. Unexpectedly, the examination of the right hand revealed slight expanded lesions and increased activities of the third metacarpal and proximal phalange, as well as the fourth proximal phalange and the middle phalanx. On the basis of the patient's symptoms and the results of the above-mentioned examinations, we diagnosed the patient as having MC in her hands. Considering the pain of the fifth finger of the left hand, the patient underwent debridement of the fifth proximal phalanx of the left hand and internal fixation with bone graft taken from the body. The patient was discharged after a week of observation. One year later, she was admitted to the hospital again for removal of the bone healing internal fixation after osteoma surgery. Preoperative Tc-MDP SPECT/CT revealed that the left-handed lesions displayed postoperative changes, while the multiple lesions in the right hand increased in volume but remained unchanged in number. This case revealed the CT and Tc-MDP SPECT/CT imaging features of MC. Specifically, SPECT/CT imaging contributed to the diagnosis of clinically asymptomatic bone lesions, and the 3D SPECT/CT fusion allowed a more comprehensive and intuitive view of the lesion by combining anatomy and function."	"Tumorigenic role of YAP in hepatocellular carcinogenesis is involved in SHP2 whose function is different in vitro and in vivo. Yes-associated protein (YAP) is a nuclear effector of the cell-density sensing Hippo pathway and interacts with Src homology phosphotyrosine phosphatase 2 (SHP2), which controls cell proliferation and survival. The tumor promoting/suppressing activities of YAP and SHP2 during liver tumorigenesis remain controversial. This study aimed to investigate the tumorigenic roles of YAP and SHP2 in hepatocellular carcinogenesis. Cell density associated subcellular distributions of YAP and SHP2 in normal human hepatocytes (THLE-2) and hepatocellular carcinoma (HCC) cells (SK-Hep1, SNU-182) were investigated by Western blotting and cell block immunohistochemistry. The effects of YAP knockdown on proliferation, migration and invasion were studied using YAP-specific siRNAs. The prognostic significance of YAP and SHP2 expressions was investigated immunohistochemically using a tissue microarray (TMA) from 50 HCC cases. High-cell density decreased the nuclear expression of YAP and SHP2 in normal hepatocytes as compared with low-cell density. However, in HCC cells, nuclear YAP and SHP2 were observed regardless of cell density. Nuclear YAP influenced SHP2 expression and cell proliferation. In particular, YAP knockdown impacted nuclear levels of SHP2 protein in SK-Hep1 cells. In HCC tissues, nuclear YAP expression was elevated and cytoplasmic SHP2 expression was diminished as compared with adjacent non-tumor tissues. Notably, these expressions were found to be significantly associated with poor recurrence-free and overall survival rate in patients with HCC. Consequently, the tumor promoting role of YAP is involved in SHP2 which functions as a tumor promoter in vitro but as a tumor suppressor in vivo. YAP and SHP2 can be unfavorable prognostic markers in HCC."	"NGS testing for cardiomyopathy: Utility of adding RASopathy-associated genes. RASopathies include a group of syndromes caused by pathogenic germline variants in RAS-MAPK pathway genes and typically present with facial dysmorphology, cardiovascular disease, and musculoskeletal anomalies. Recently, variants in RASopathy-associated genes have been reported in individuals with apparently nonsyndromic cardiomyopathy, suggesting that subtle features may be overlooked. To determine the utility and burden of adding RASopathy-associated genes to cardiomyopathy panels, we tested 11 RASopathy-associated genes by next-generation sequencing (NGS), including NGS-based copy number variant assessment, in 1,111 individuals referred for genetic testing for hypertrophic cardiomyopathy (HCM) or dilated cardiomyopathy (DCM). Disease-causing variants were identified in 0.6% (four of 692) of individuals with HCM, including three missense variants in the PTPN11, SOS1, and BRAF genes. Overall, 36 variants of uncertain significance (VUSs) were identified, averaging ∼3VUSs/100 cases. This study demonstrates that adding a subset of the RASopathy-associated genes to cardiomyopathy panels will increase clinical diagnoses without significantly increasing the number of VUSs/case."	"Association between single-nucleotide polymorphisms and adverse events in nivolumab-treated non-small cell lung cancer patients. Treatment with PD-1 inhibitors can be hampered by severe auto-immune-related toxicities. Our objective was to identify single-nucleotide polymorphisms (SNPs) in genes previously associated with auto-immunity, which are associated with toxicities in nivolumab-treated NSCLC patients. This was in order to identify patients prone to develop severe toxicities and to gain more insight into the underlying pathobiology. We analysed 322 nivolumab-treated patients and assessed the association with toxicities for seven SNPs in four genes, which are considered contributors to PD-1-directed T-cell responses, i.e., PDCD1, PTPN11, ZAP70 and IFNG. Every SNP was tested for its association with toxicity endpoints. Significant associations were tested in a validation cohort. A multivariable analysis in the exploration cohort showed that homozygous variant patients for PDCD1 804C&gt;T (rs2227981) had decreased odds for any grade treatment-related toxicities (n = 96; OR 0.4; 95% CI 0.2-1.0; p = 0.039). However, this result could not be validated (n = 85; OR 0.9; 95% CI 0.4-1.9; p = NS). Our results show that it is unlikely that the investigated SNPs have a clinical implication in predicting toxicity. A finding, even though negative, that is considered timely and instructive towards further research in biomarker development for checkpoint inhibitor treatments."	"Inflammatory genes are novel prognostic biomarkers for colorectal cancer. Inflammatory genes serve a crucial role in the pathogenesis of inflammation‑associated tumors. However, as recent studies have mainly focused on the effects of single inflammatory genes on colorectal cancer (CRC), but not on the global interactions between genes, the underlying mechanisms between inflammatory genes and CRC remain unclear. In the current study, two inflammation‑associated networks were constructed based on inflammatory genes, differentially expressed genes (DEGs) in CRC vs. normal samples, and protein‑protein interactions (PPIs). These networks included an inflammation‑related neighbor network (IRNN) and an inflammation‑related DEG network (IRDN). Notably, the results indicated that the inflammatory genes served as important CRC‑associated genes in the IRNN. Certain inflammatory genes were more likely to be network hubs and exhibited higher betweenness centralities, indicating that these inflammatory hub genes had central roles in the communication between genes in the IRNN. By contrast, in the IRDN, functional enrichment analysis revealed that genes were enriched in numerous cancer‑associated functions and pathways. Subsequently, 14 genes in a module were identified in the IRDN as the potential biomarkers associated with disease‑free survival (DFS) in CRC patients in the GSE24550 dataset, the prognosis of which was further validated using three independent datasets (GSE24549, GSE34551 and GSE103479). All 14 genes (including BCAR1, CRK, FYN, GRB2, LCP2, PIK3R1, PLCG1, PTK2, PTPN11, PTPN6, SHC1, SOS1, SRC and SYK) in this module were inflammatory genes, emphasizing the critical role of inflammation in CRC. In conclusion, these findings based on integrated inflammation‑associated networks provided a novel insight that may help elucidate the inflammation‑mediated mechanisms involved in CRC."	"Nevus anemicus and RASopathies. NA"	"Pulmonary Vasculitis and a Horseshoe Kidney in Noonan Syndrome. We report a term male neonate with congenital myeloproliferative disorder, thrombocytopenia, a horseshoe kidney, feeding difficulty secondary to dysphagia/foregut dysmotility, and respiratory failure. Prenatal molecular genetic analysis revealed a fetus carrying c.184T&gt;G (p.Tyr62Asp) pathogenic variant in PTPN11. The infant eventually succumbed to respiratory failure. Bacterial and viral cultures/studies were all no growth/negative. Pulmonary capillaritis and vasculitis were noted at autopsy. This report presents a new case of Noonan syndrome with unusual associated disorders and a review of the literature."	"Mechanical strain induced phospho-proteomic signaling in uterine smooth muscle cells. Mechanical strain associated with the expanding uterus correlates with increased preterm birth rates. Mechanical signals result in a cascading network of protein phosphorylation events. These signals direct cellular activities and may lead to changes in contractile phenotype and calcium signaling. In this study, the complete phospho-proteome of uterine smooth muscle cells subjected to mechanical strain for 5 min was compared to un-strained controls. Statistically significant, differential phosphorylation events were annotated by Ingenuity Pathway Analysis to elucidate mechanically induced phosphorylation networks. Mechanical strain leads to the direct activation of ERK1/2, HSPB1, and MYL9, in addition to phosphorylation of PAK2, vimentin, DOCK1, PPP1R12A, and PTPN11 at previously unannotated sites. These results suggest a novel network reaction to mechanical strain and reveal proteins that participate in the activation of contractile mechanisms leading to preterm labor."	"SHP2 regulates skeletal cell fate by modifying SOX9 expression and transcriptional activity. Chondrocytes and osteoblasts differentiate from a common mesenchymal precursor, the osteochondroprogenitor (OCP), and help build the vertebrate skeleton. The signaling pathways that control lineage commitment for OCPs are incompletely understood. We asked whether the ubiquitously expressed protein-tyrosine phosphatase SHP2 (encoded by Ptpn11) affects skeletal lineage commitment by conditionally deleting Ptpn11 in mouse limb and head mesenchyme using &quot;Cre-loxP&quot;-mediated gene excision. SHP2-deficient mice have increased cartilage mass and deficient ossification, suggesting that SHP2-deficient OCPs become chondrocytes and not osteoblasts. Consistent with these observations, the expression of the master chondrogenic transcription factor SOX9 and its target genes Acan, Col2a1, and Col10a1 were increased in SHP2-deficient chondrocytes, as revealed by gene expression arrays, qRT-PCR, in situ hybridization, and immunostaining. Mechanistic studies demonstrate that SHP2 regulates OCP fate determination via the phosphorylation and SUMOylation of SOX9, mediated at least in part via the PKA signaling pathway. Our data indicate that SHP2 is critical for skeletal cell lineage differentiation and could thus be a pharmacologic target for bone and cartilage regeneration."	"Regulation of Brain-Derived Neurotrophic Factor and Growth Factor Signaling Pathways by Tyrosine Phosphatase Shp2 in the Retina: A Brief Review. SH2 domain-containing tyrosine phosphatase-2 (PTPN11 or Shp2) is a ubiquitously expressed protein that plays a key regulatory role in cell proliferation, differentiation and growth factor (GF) signaling. This enzyme is well expressed in various retinal neurons and has emerged as an important player in regulating survival signaling networks in the neuronal tissues. The non-receptor phosphatase can translocate to lipid rafts in the membrane and has been implicated to regulate several signaling modules including PI3K/Akt, JAK-STAT and Mitogen Activated Protein Kinase (MAPK) pathways in a wide range of biochemical processes in healthy and diseased states. This review focuses on the roles of Shp2 phosphatase in regulating brain-derived neurotrophic factor (BDNF) neurotrophin signaling pathways and discusses its cross-talk with various GF and downstream signaling pathways in the retina."	"Too many targets, not enough patients: rethinking neuroblastoma clinical trials. Neuroblastoma is a rare solid tumour of infancy and early childhood with a disproportionate contribution to paediatric cancer mortality and morbidity. Combination chemotherapy, radiation therapy and immunotherapy remains the standard approach to treat high-risk disease, with few recurrent, actionable genetic aberrations identified at diagnosis. However, recent studies indicate that actionable aberrations are far more common in relapsed neuroblastoma, possibly as a result of clonal expansion. In addition, although the major validated disease driver, MYCN, is not currently directly targetable, multiple promising approaches to target MYCN indirectly are in development. We propose that clinical trial design needs to be rethought in order to meet the challenge of providing rigorous, evidence-based assessment of these new approaches within a fairly small patient population and that experimental therapies need to be assessed at diagnosis in very-high-risk patients rather than in relapsed and refractory patients."	"A Rare Case of Left Ventricular Noncompaction in LEOPARD Syndrome. NA"	"Pathogenic Germline Variants in 10,389 Adult Cancers. We conducted the largest investigation of predisposition variants in cancer to date, discovering 853 pathogenic or likely pathogenic variants in 8% of 10,389 cases from 33 cancer types. Twenty-one genes showed single or cross-cancer associations, including novel associations of SDHA in melanoma and PALB2 in stomach adenocarcinoma. The 659 predisposition variants and 18 additional large deletions in tumor suppressors, including ATM, BRCA1, and NF1, showed low gene expression and frequent (43%) loss of heterozygosity or biallelic two-hit events. We also discovered 33 such variants in oncogenes, including missenses in MET, RET, and PTPN11 associated with high gene expression. We nominated 47 additional predisposition variants from prioritized VUSs supported by multiple evidences involving case-control frequency, loss of heterozygosity, expression effect, and co-localization with mutations and modified residues. Our integrative approach links rare predisposition variants to functional consequences, informing future guidelines of variant classification and germline genetic testing in cancer."	"Shp-2 Is Dispensable for Establishing T Cell Exhaustion and for PD-1 Signaling In Vivo. In chronic infection and cancer, T cells acquire a dysfunctional state characterized by the expression of inhibitory receptors. In vitro studies implicated the phosphatase Shp-2 downstream of these receptors, including PD-1. However, whether Shp-2 is responsible in vivo for such dysfunctional responses remains elusive. To address this, we generated T cell-specific Shp-2-deficient mice. These mice did not show differences in controlling chronic viral infections. In this context, Shp-2-deleted CD8<sup>+</sup> T lymphocytes expanded moderately better but were less polyfunctional than control cells. Mice with Shp-2-deficient T cells also showed no significant improvement in controlling immunogenic tumors and responded similarly to controls to α-PD-1 treatment. We therefore showed that Shp-2 is dispensable in T cells for globally establishing exhaustion and for PD-1 signaling in vivo. These results reveal the existence of redundant mechanisms downstream of inhibitory receptors and represent the foundation for defining these relevant molecular events."	"Racial Disparities in the Molecular Landscape of Cancer. African Americans (AA) have the highest incidence and mortality of any racial/ethnic group in the US for most cancer types. Heterogeneity in the molecular biology of cancer, as a contributing factor to this disparity, is poorly understood. To address this gap in knowledge, we explored the molecular landscape of colorectal cancer (CRC), non-small cell lung cancer (NSCLC) and high-grade glioma (HGG) from 271 AA and 636 Caucasian (CC) cases. DNA from formalin-fixed paraffin-embedded tumors was sequenced using next-generation sequencing. Additionally, we evaluated protein expression using immunohistochemistry. The Exome Aggregation Consortium Database was evaluated for known ethnicity associations. Considering only pathogenic or presumed pathogenic mutations, as determined by the American College of Medical Genetics and Genomics guidelines, and using Bonferroni and Benjamini-Hochberg corrections for multiple comparisons, we found that CRC tumors from AA patients harbored significantly more mutations of phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit alpha (PIK3CA) than those from CC patients. CRC tumors in AA patients also appeared to harbor more mutations of mitogen-activated protein kinase kinase 1 (MAP2K1/MEK1), MPL proto-oncogene (MPL), thrombo-poietin receptor, and neurofibromin 1 (NF1) than those from CC patients. In contrast, CRCs from AA patients were likely to carry fewer mutations of ataxia-telangiectasia mutated (ATM), as well as of proto-oncogene B-Raf (BRAF), including the V600E variant, than those from CC patients. Rates of immunohistochemical positivity for epidermal growth factor receptor (EGFR) and DNA topoisomerase 2-alpha (TOP2A) tended to be higher in CRCs from AA patients than in CC patients. In NSCLC adenocarcinoma, BRAF variants appeared to be more frequent in the AA than in the CC cohort, whereas in squamous cell lung carcinoma, programmed death-ligand 1 (PD-L1) expression tended to be lower in the AA than in CC group. Moreover, HGG tumors from AA patients showed a trend toward harboring more mutations of protein tyrosine phosphatase non-receptor 11 (PTPN11), than HGG tumors from the CC cohort. In contrast, mutations of phosphatase and tensin homolog (PTEN) and tumor protein 53 (TP53) appeared to be higher in HGG tumors in CC patients than in their AA counterparts. Our data revealed significant differences and trends in molecular signatures of the three cancer types in AA and CC cohorts. These findings imply that there may be differences in carcinogenesis between AA and CC patients and that race may be a factor that should be considered regarding cancer incidence and outcome."	"First-year growth in children with Noonan syndrome: Associated with feeding problems? Children with Noonan syndrome show rapid decline of growth in the first year of life and feeding problems are present in over 50%. The aim of this study was to explore whether growth decelerates because of feeding problems or other Noonan syndrome-related factors. We performed a retrospective, longitudinal cohort study of clinically and genetically diagnosed subjects with Noonan syndrome (n = 143). Questionnaires about the phenotypic-genotypic profile and reported feeding problems were sent to eligible subjects. Data on first-year growth was obtained from growth charts. Ninety-one participants were excluded because of different criteria. A total of 52 subjects with Noonan syndrome were included. The largest decline in weight and length standard deviation score (SDS) occurred in the first 2.5 months after birth (-1.93 and -1.15, respectively), with feeding problems causing a decline of 0.57 SDS in the remaining months. At 1 year, children with feeding problems were on average 290 g lighter and 0.8 cm shorter than children without feeding problems. Weight gain was also negatively influenced by having a PTPN11 mutation (n = 39) and a higher gestational age, whereas children of parents with Noonan syndrome and with a higher birth weight gained more weight. Growth in length was reduced by having cardiac surgery and a higher gestational age, but positively influenced by birth length and maternal height. Growth in children with Noonan syndrome is impaired right after birth and only partially associated with feeding problems. In addition, several specific Noonan syndrome-related factors seem to influence growth in the first year."	"[Spectrum of somatic mutations and their prognostic significance in adult patients with B cell acute lymphoblastic leukemia]. Objective: To investigate the spectrum of gene mutations in adult patients with B-acute lymphoblastic leukemia (B-ALL), and to analyze the influences of different gene mutations on prognosis. Methods: DNA samples from 113 adult B-ALL patients who administered from June 2009 to September 2015 were collected. Target-specific next generation sequencing (NGS) approach was used to analyze the mutations of 112 genes (focused on the specific mutational hotspots) and all putative mutations were compared against multiple databases to calculate the frequency spectrum. The impact of gene mutation on the patients' overall survival (OS) and recurrence free survival (RFS) was analyzed by the putative mutations through Kaplan-Meier, and Cox regression methods. Results: Of the 113 patients, 103 (92.0%) harbored at least one mutation and 29 (25.6%) harbored more than 3 genes mutation. The five most frequently mutated genes in B-ALL are SF1, FAT1, MPL, PTPN11 and NRAS. Gene mutations are different between Ph<sup>+</sup> B-ALL and Ph<sup>-</sup> B-ALL patients. Ph<sup>-</sup> B-ALL patients with JAK-STAT signal pathway related gene mutation, such as JAK1/JAK2 mutation showed a poor prognosis compared to the patients without mutation (OS: P=0.011, 0.001; RFS: P=0.014,&lt;0.001). Patients with PTPN11 mutation showed better survival than those without mutation, but the difference was not statistically significant (P value &gt; 0.05). Besides, in Ph<sup>+</sup> B-ALL patients whose epigenetic modifications related signaling pathway genes were affected, they had a worse prognosis (OS: P=0.038; RFS: P=0.047). Conclusion: Gene mutations are common in adult ALL patients, a variety of signaling pathways are involved. The frequency and spectrum are varied in different types of B-ALL. JAK family gene mutation usually indicates poor prognosis. The co-occurrence of somatic mutations in adult B-ALL patients indicate the genetic complex and instability of adult B-ALL patients. 目的: 探讨成人急性B淋巴细胞白血病(B-ALL)患者的基因突变谱,并分析其对患者预后的影响。 方法: 收集113例2009年6月至2015年9月收治的成人B-ALL患者DNA标本,采用靶向特异的二代测序技术,针对血液恶性疾病相关的112种基因进行突变分析,通过多个数据库筛选出可能致病的基因突变,描述其发生频谱,并通过Kaplan-Meier、Cox回归模型分析突变基因对患者总生存(OS)和无复发生存(RFS)的影响。 结果: 113例患者中103例(92.0%)发生至少一种基因突变,29例(25.6%)患者发生≥3种基因突变。所有患者中突变率较高的基因有SF1、FAT1、MPL、PTPN11、NRAS等,Ph阳性B-ALL和Ph阴性B-ALL患者中基因突变特点不尽一致。进一步分析基因突变对患者预后的影响,发现在Ph阴性B-ALL中伴JAK-STAT信号通路相关基因突变的患者(如JAK1、JAK2突变)较该信号通路未受影响的患者预后差(OS:P值分别为0.011和0.001;RFS:P值分别为0.014和&lt;0.001),而伴PTPN11突变的B-ALL患者较不伴PTPN11突变的患者有较好的OS及RFS,但差异无统计学意义(P值均&gt;0.05);在Ph阳性B-ALL患者中,表观遗传学修饰相关的信号通路异常的患者预后较差(OS:P=0.038;RFS:P=0.047)。 结论: 基因突变在成人B-ALL中存在普遍性,发生频谱因亚型而异,涉及多种信号通路,JAK家族相关基因突变常提示患者预后较差,突变基因之间的共存现象也预示着成人B-ALL患者的遗传复杂性和不稳定性。."	"Gain-of-function mutations in the gene encoding the tyrosine phosphatase SHP2 induce hydrocephalus in a catalytically dependent manner. Catalytically activating mutations in Ptpn11, which encodes the protein tyrosine phosphatase SHP2, cause 50% of Noonan syndrome (NS) cases, whereas inactivating mutations in Ptpn11 are responsible for nearly all cases of the similar, but distinct, developmental disorder Noonan syndrome with multiple lentigines (NSML; formerly called LEOPARD syndrome). However, both types of disease mutations are gain-of-function mutations because they cause SHP2 to constitutively adopt an open conformation. We found that the catalytic activity of SHP2 was required for the pathogenic effects of gain-of-function, disease-associated mutations on the development of hydrocephalus in the mouse. Targeted pan-neuronal knockin of a Ptpn11 allele encoding the active SHP2 E76K mutant resulted in hydrocephalus due to aberrant development of ependymal cells and their cilia. These pathogenic effects of the E76K mutation were suppressed by the additional mutation C459S, which abolished the catalytic activity of SHP2. Moreover, ependymal cells in NSML mice bearing the inactive SHP2 mutant Y279C were also unaffected. Mechanistically, the SHP2 E76K mutant induced developmental defects in ependymal cells by enhancing dephosphorylation and inhibition of the transcription activator STAT3. Whereas STAT3 activity was reduced in Ptpn11<sup> E76K/+ </sup> cells, the activities of the kinases ERK and AKT were enhanced, and neural cell-specific Stat3 knockout mice also manifested developmental defects in ependymal cells and cilia. These genetic and biochemical data demonstrate a catalytic-dependent role of SHP2 gain-of-function disease mutants in the pathogenesis of hydrocephalus."	"A Screening Approach to Identify Clinically Actionable Variants Causing Congenital Heart Disease in Exome Data. Congenital heart disease (CHD)-structural abnormalities of the heart that arise during embryonic development-is the most common inborn malformation, affecting ≤1% of the population. However, currently, only a minority of cases can be explained by genetic abnormalities. The goal of this study was to identify disease-causal genetic variants in 30 families affected by CHD. Whole-exome sequencing was performed with the DNA of multiple family members. We utilized a 2-tiered whole-exome variant screening and interpretation procedure. First, we manually curated a high-confidence list of 90 genes known to cause CHD in humans, identified predicted damaging variants in genes on this list, and rated their pathogenicity using American College of Medical Genetics and Genomics-Association for Molecular Pathology guidelines. In 3 families (10%), we found pathogenic variants in known CHD genes TBX5, TFAP2B, and PTPN11, explaining the cardiac lesions. Second, exomes were comprehensively analyzed to identify additional predicted damaging variants that segregate with disease in CHD candidate genes. In 10 additional families (33%), likely disease-causal variants were uncovered in PBX1, CNOT1, ZFP36L2, TEK, USP34, UPF2, KDM5A, KMT2C, TIE1, TEAD2, and FLT4. The pathogenesis of CHD could be explained using our high-confidence CHD gene list for variant filtering in a subset of cases. Furthermore, our unbiased screening procedure of family exomes implicates additional genes and variants in the pathogenesis of CHD, which suggest themselves for functional validation. This 2-tiered approach provides a means of (1) identifying clinically actionable variants and (2) identifying additional disease-causal genes, both of which are essential for improving the molecular diagnosis of CHD."	"Data on cardiac defects, morbidity and mortality in patients affected by RASopathies. CARNET study results. A comprehensive description of morbidity and mortality in patients affected by mutations in genes encoding for signal transducers of the RAS-MAPK cascade (RASopathies) was performed in our study recently published in the International Journal of Cardiology. Seven European cardiac centres participating to the CArdiac Rasopathy NETwork (CARNET), collaborated in this multicentric, observational, retrospective data analysis and collection. In this study, clinical records of 371 patients with confirmed molecular diagnosis of RASopathy were reviewed. Cardiac defects, crude mortality, survival rate of patients with 1) hypertrophic cardiomyopathy (HCM) and age &lt;2 years or young adults; 2) individuals with Noonan syndrome and pulmonary stenosis carrying PTPN11 mutations; 3) biventricular obstruction and PTPN11 mutations; 4) Costello syndrome or cardiofaciocutaneous syndrome were analysed. Mortality was described as crude mortality, cumulative survival and restricted estimated mean survival. In particular, with this Data In Brief (DIB) paper, the authors aim to report specific statistic highlights of the multivariable regression analysis that was used to assess the impact of mutated genes on number of interventions and overall prognosis."	"Network-Based Identification of Altered Stem Cell Pluripotency and Calcium Signaling Pathways in Metastatic Melanoma. Malignancy of cancer has been linked to distinct subsets of stem-like cells, the so-called cancer stem cells (CSCs), which persist during treatment and seem to lead to drug-resistant recurrence. Metastatic spread of cancer cells is one of the hallmarks of malignancy and contributes to most human melanoma-related deaths. Recently, overlapping groups of proteins and pathways were shown to regulate stem cell migration and cancer metastasis, raising the question of whether genes/proteins involved in stem cell pluripotency may have important implications when applied to the biology of cancer metastasis. Furthermore, it is well known that ion channels and receptors, particularly those responsible for calcium (Ca<sup>2+</sup>) signal generation, are critical in determining the cellular fate of stem cells (SCs). In the present study, we searched for evidence of altered stem cell pluripotency and Ca<sup>2+</sup> signaling-related genes in the context of melanoma metastasis. We did this by using network analysis of gene expression in tissue biopsies from three different independent datasets of patients. First, we created an in silico network model (&quot;STEMCa&quot; interactome) showing the landscape of interactions between stem cell pluripotency and Ca<sup>2+</sup> signaling-related genes/proteins, and demonstrated that around 51% (151 out of 294) of the genes within this model displayed significant changes of expression (False Discovery Rate (FDR), corrected p-value &lt; 0.05) in at least one of the datasets of melanoma metastasis when compared with primary tumor biopsies (controls). Analysis of the properties (degree and betweenness) of the topological network revealed 27 members as the most central hub (HB) and nonhub-bottlenecks (NH-B) among the 294 genes/proteins of the whole interactome. From those representative genes, CTNNB1, GNAQ, GSK3B, GSTP1, MAPK3, PPP1CC, PRKACA, and SMAD4 showed equal up- or downregulation (corrected p-value &lt; 0.05) in at least 2 independent datasets of melanoma metastases samples and PTPN11 showed upregulation (corrected p-value &lt; 0.05) in three of them when compared with control samples. We postulate that altered expression of stem cell pluripotency and Ca<sup>2+</sup> signaling pathway-related genes may contribute to the metastatic transformation, with these central members being an optimal candidate group of biomarkers and in silico therapeutic targets for melanoma metastasis, which deserve further investigation."	"Shp2 deletion in hepatocytes suppresses hepatocarcinogenesis driven by oncogenic β-Catenin, PIK3CA and MET. Shp2 is an SH2-tyrosine phosphatase acting downstream of receptor tyrosine kinases (RTKs). Most recent data demonstrated a liver tumor-suppressing role for Shp2, as ablating Shp2 in hepatocytes aggravated hepatocellular carcinoma (HCC) induced by chemical carcinogens or Pten loss. We further investigated the effect of Shp2 deficiency on liver tumorigenesis driven by classical oncoproteins c-Met (receptor for HGF), β-catenin and PIK3CA. We performed hydrodynamic tail vein injection of two pairs of plasmids expressing c-Met and ΔN90-β-catenin (MET/CAT), or c-Met and PIK3CA<sup>H1047R</sup> (MET/PIK), into WT and Shp2<sup>hep-/-</sup> mice. We compared liver tumor loads and investigated the pathogenesis and molecular mechanisms involved using multidisciplinary approaches. Despite the induction of oxidative and metabolic stresses, Shp2 deletion in hepatocytes suppressed hepatocarcinogenesis driven by overexpression of oncoproteins MET/CAT or MET/PIK. Shp2 loss inhibited proliferative signaling from c-Met, Wnt/β-catenin, Ras/Erk and PI3K/Akt pathways, but triggered cell senescence following exogenous expression of the oncogenes. Shp2, acting downstream of RTKs, is positively required for hepatocyte-intrinsic tumorigenic signaling from these oncoproteins, even if Shp2 deficiency induces a tumor-promoting hepatic microenvironment. These data suggest a new and more effective therapeutic strategy for HCCs driven by oncogenic RTKs and other upstream molecules, by inhibiting Shp2 and also suppressing any tumor-enhancing stromal factors produced because of Shp2 inhibition. Primary liver cancer is a malignant disease with poor prognosis, largely because there are limited systemic therapies available. We show here that a cytoplasmic tyrosine phosphatase Shp2 is required for liver tumorigenesis. This tumorigenesis is driven by two oncoproteins that are implicated in human liver cancer. This, together with our previous studies, uncovers the complexity of liver tumorigenesis, by elucidating the pro- and anti-tumor effects of Shp2 in mouse models. This data can be used to guide new therapies."	"SLAM family member 8 is involved in oncogenic KIT-mediated signalling in human mastocytosis. The signalling lymphocytic activation molecule family member 8 (SLAMF8)/CD353 is a member of the CD2 family of proteins. Its ligand has not been identified. SLAMF8 is expressed by macrophages and suppresses cellular functions. No study has yet explored SLAMF8 expression or function in human mastocytosis, which features oncogenic KIT-mediated proliferation of human mast cells. SLAMF8 protein was expressed in human mastocytosis cells, immunohistochemically. SLAMF8 expression was also evident in the human mast cell lines, HMC1.2 (expressing oncogenic KIT) and LAD2 (expressing wild-type KIT) cells. SLAMF8 knock-down significantly reduced the KIT-mediated growth of HMC1.2 cells but not that of LAD2 cells. SLAMF8 knock-down HMC1.2 cells exhibited significant attenuation of SHP-2 activation and oncogenic KIT-mediated RAS-RAF-ERK signalling. An interaction between SLAMF8 and SHP-2 was confirmed in HMC1.2 cells and all pathological mastocytosis specimens examined (19 of 19 cases, 100%). Thus, SLAMF8 is involved in oncogenic KIT-mediated RAS-RAF-ERK signalling and the subsequent growth of human neoplastic mast cells mediated by SHP-2. SLAMF8 is a possible therapeutic target in human mastocytosis patients."	"Targeted next-generation sequencing in blast phase myeloproliferative neoplasms. Among 248 consecutive patients with blast phase myeloproliferative neoplasm (MPN-BP), DNA collected at the time of blast transformation was available in 75 patients (median age, 66 years; 64% men). MPN-BP followed primary myelofibrosis in 39 patients, essential thrombocythemia in 20 patients, and polycythemia vera in 16 patients. A myeloid neoplasm-relevant 33-gene panel was used for next-generation sequencing. Driver mutation distribution was JAK2 57%, CALR 20%, MPL 9%, and triple-negative 13%. Sixty-four patients (85%) harbored other mutations/variants, including 37% with ≥3 mutations; most frequent were ASXL1 47%, TET2 19%, RUNX1 17%, TP53 16%, EZH2 15%, and SRSF2 13%; relative mutual exclusivity was expressed by TP53, EZH2, LNK, RUNX1, SRSF2, and NRAS/KRAS mutations. Paired chronic-blast phase sample analysis was possible in 19 patients and revealed more frequent blast phase acquisition of ASXL1, EZH2, LNK, TET2, TP53, and PTPN11 mutations/variants. In multivariable analysis, RUNX1 and PTPN11 mutations/variants were associated with shorter survival duration; respective hazard ratios (HRs) (95% confidence interval [CI]) were 2.1 (95% CI, 1.1-3.8) and 3.0 (95% CI, 1.1-6.6). An all-inclusive multivariable analysis confirmed the prognostic relevance of RUNX1 mutations (HR, 1.9; 95% CI, 1.5-5.5) and also showed additional contribution from a treatment strategy that includes transplant or induction of complete or near-complete remission (HR, 0.3; 95% CI, 0.2-0.5). The current study points to specific mutations that might bear pathogenetic relevance for leukemic transformation in MPN and also suggest an adverse survival effect of RUNX1 mutations."	"Rapid development of myeloproliferative neoplasm in mice with Ptpn11<sup> D61Y </sup> mutation and haploinsufficient for Dnmt3a. PTPN11 gain-of-function mutation is the most common mutation found in patients with juvenile myelomonocytic leukemia and DNMT3A loss occurs in over 20% of acute myeloid leukemia patients. We studied the combined effect of both Ptpn11 gain-of-function mutation (D61Y) and Dnmt3a haploinsufficiency on mouse hematopoiesis, the presence of which has been described in both juvenile myelomonocytic leukemia and acute myeloid leukemia patients. Double mutant mice rapidly become moribund relative to any of the other genotypes, which is associated with enlargement of the spleen and an increase in white blood cell counts. An increase in the mature myeloid cell compartment as reflected by the presence of Gr1<sup>+</sup>Mac1<sup>+</sup> cells was also observed in double mutant mice relative to any other group. Consistent with these observations, a significant increase in the absolute number of granulocyte macrophage progenitors (GMPs) was seen in double mutant mice. A decrease in the lymphoid compartment including both T and B cells was noted in the double mutant mice. Another significant difference was the presence of extramedullary erythropoiesis with increased erythroid progenitors in the spleens of Dnmt3a<sup>+/-</sup>;D61Y mice relative to other groups. Taken together, our results suggest that the combined haploinsufficiency of Dnmt3a and presence of an activated Shp2 changes the composition of multiple hematopoietic lineages in mice relative to the individual heterozygosity of these genes."	"Genomewide Association Study of Alcohol Dependence and Related Traits in a Thai Population. Alcohol use (both quantity and dependence) is moderately heritable, and genomewide association studies (GWAS) have identified risk genes in European, African, and Asian populations. The most reproducibly identified risk genes affect alcohol metabolism. Well-known functional variants at the gene encoding alcohol dehydrogenase B and other alcohol dehydrogenases affect risk in European and African ancestry populations. Similarly, variants mapped to these same genes and a well-known null variant that maps to the gene that encodes aldehyde dehydrogenase 2 (ALDH2) also affect risk in various Asian populations. In this study, we completed the first GWAS for 3 traits related to alcohol use in a Thai population recruited initially for studies of methamphetamine dependence. All subjects were evaluated with the Thai version of the Semi-Structured Assessment for Drug Dependence and Alcoholism (SSADDA). A total of 1,045 subjects were available for analysis. Three traits were analyzed: flushing, maximum number of alcoholic beverages consumed in any lifetime 24-hour period (&quot;MAXDRINKS&quot;), and DSM-IV alcohol dependence criterion count. We also conducted a pleiotropy analysis with major depression, the only other psychiatric trait where summary statistics from a large-scale Asian-population GWAS are available. All 3 traits showed genomewide significant association with variants near ALDH2, with significance ranging from 2.01 × 10<sup>-14</sup> (for flushing; lead single nucleotide polymorphism (SNP) PTPN11* rs143894582) to pmeta = 5.80 × 10<sup>-10</sup> (for alcohol dependence criterion count; lead SNP rs149212747). These lead SNPs flank rs671 and span a region of over a megabase, illustrating the need for prior biological information in identifying the actual effect SNP, rs671. We also identified significant pleiotropy between major depression and flushing. These results are consistent with prior findings in Asian populations and add new information regarding alcohol use-depression pleiotropy."	"Patient with confirmed LEOPARD syndrome developing multiple melanoma. LEOPARD syndrome, also known as Gorlin syndrome II, cardiocutaneous syndrome, lentiginosis profusa syndrome, Moynahan syndrome, was more recently coined as Noonan syndrome with multiple lentigines (NSML), inside the RASopathies. Historically, the acronym LEOPARD refers to the presence of distinctive clinical features such as: lentigines (L), electrocardiographic/conduction abnormalities (E), ocular hypertelorism (O), pulmonary stenosis (P), genital abnormalities (A), retardation of growth (R), and sensorineural deafness (D). This condition is identified in 85% of patients with phenotype hallmarks caused by presence a germline point mutation in PTPN11 gene. Association of melanoma to NSML seems to be rare: to our knowledge, two patients so far were reported in the literature. We herein present a patient diagnosed with LEOPARD syndrome, in whom molecular investigation confirmed the presence of the c.1403C&gt;T mutation in exon 12 of the PTPN11 gene, who developed four superficial spreading melanomas and three atypical lentiginous hyperplasias. Three of the melanomas were achromic or hypochromic, three were in situ, and one had a Breslow index under 0.5 mm. Dermoscopic examination showed some characteristic white structures in most of the lesions, which were a signature pattern and a key for the diagnosis."	"Integrated molecular profiling of juvenile myelomonocytic leukemia. Juvenile myelomonocytic leukemia (JMML), a rare and aggressive myelodysplastic/myeloproliferative neoplasm that occurs in infants and during early childhood, is characterized by excessive myelomonocytic cell proliferation. More than 80% of patients harbor germ line and somatic mutations in RAS pathway genes (eg, PTPN11, NF1, NRAS, KRAS, and CBL), and previous studies have identified several biomarkers associated with poor prognosis. However, the molecular pathogenesis of 10% to 20% of patients and the relationships among these biomarkers have not been well defined. To address these issues, we performed an integrated molecular analysis of samples from 150 JMML patients. RNA-sequencing identified ALK/ROS1 tyrosine kinase fusions (DCTN1-ALK, RANBP2-ALK, and TBL1XR1-ROS1) in 3 of 16 patients (18%) who lacked canonical RAS pathway mutations. Crizotinib, an ALK/ROS1 inhibitor, markedly suppressed ALK/ROS1 fusion-positive JMML cell proliferation in vitro. Therefore, we administered crizotinib to a chemotherapy-resistant patient with the RANBP2-ALK fusion who subsequently achieved complete molecular remission. In addition, crizotinib also suppressed proliferation of JMML cells with canonical RAS pathway mutations. Genome-wide methylation analysis identified a hypermethylation profile resembling that of acute myeloid leukemia (AML), which correlated significantly with genetic markers with poor outcomes such as PTPN11/NF1 gene mutations, 2 or more genetic mutations, an AML-type expression profile, and LIN28B expression. In summary, we identified recurrent activated ALK/ROS1 fusions in JMML patients without canonical RAS pathway gene mutations and revealed the relationships among biomarkers for JMML. Crizotinib is a promising candidate drug for the treatment of JMML, particularly in patients with ALK/ROS1 fusions."	"MicroRNA-186 serves as a tumor suppressor in oral squamous cell carcinoma by negatively regulating the protein tyrosine phosphatase SHP2 expression. MicroRNAs (miRs) have been shown to play critical roles in the pathogenesis of oral squamous cell carcinoma (OSCC), the current study is designed to identify the potential role of miR-186 in OSCC. Realtime polymerase chain reaction was used to determine miR-186 expression in paired tissue samples (OSCC and adjacent normal tissues) and multiple oral cell lines (normal oral keratinocyte HOK cell and OSCC cell lines). Cell viability, colony formation and flow cytometry assays were used to assess the biological function of miR-186. Furthermore, luciferase and western blot assays were used to verify the predicted target of miR-186. We found that miR-186 expression was significantly downregulated in OSCC tissues and cell lines. Overexpression of miR-186 produced an anti-growth effect and induced apoptosis in Tca8113 and SCC-25 cells. Luciferase assay revealed that miR-186 directly targeted PTPN11 (a gene encodes the protein tyrosine phosphatase SHP2) mRNA 3' untranslated region and suppressed its expression. Consistently, MiR-186 and SHP2 were negatively correlated in OSCC tissues. Consequently, miR-186 inhibited signaling activities of Extracellular Regulated protein Kinases (ERK) and Protein kinase B (AKT), which act downstream of SHP2 and are critical for growth of cancer cells. We identify that miR-186 serves as a tumor suppressor in OSCC. Downregulation of this microRNA may lead to a higher expression of oncogenic factor SHP2, which leads to activation of growth promoting signaling. Thus, miR-186 may be a novel and effective therapeutic agent for the treatment of OSCC."	"Integrating Functional Analysis in the Next-Generation Sequencing Diagnostic Pipeline of RASopathies. RASopathies are a group of heterogeneous conditions caused by germline mutations in RAS/MAPK signalling pathway genes. With next-generation sequencing (NGS), sequencing capacity is no longer a limitation to molecular diagnosis. Instead, the rising number of variants of unknown significance (VUSs) poses challenges to clinical interpretation and genetic counselling. We investigated the potential of an integrated pipeline combining NGS and the functional assessment of variants for the diagnosis of RASopathies. We included 63 Chinese patients with RASopathies that had previously tested negative for PTPN11 and HRAS mutations. In these patients, we performed a genetic analysis of genes associated with RASopathies using a multigene NGS panel and Sanger sequencing. For the VUSs, we evaluated evidence from genetic, bioinformatic and functional data. Twenty disease-causing mutations were identified in the 63 patients, providing a primary diagnostic yield of 31.7%. Four VUSs were identified in five patients. The functional assessment supported the pathogenicity of the RAF1 and RIT1 VUSs, while the significance of two VUSs in A2ML1 remained unclear. In summary, functional analysis improved the diagnostic yield from 31.7% to 36.5%. Although technically demanding and time-consuming, a functional genetic diagnostic analysis can ease the clinical translation of these findings to aid bedside interpretation."	"Tumor exome sequencing and copy number alterations reveal potential predictors of intrinsic resistance to multi-targeted tyrosine kinase inhibitors. Multi-targeted tyrosine kinase inhibitors (TKIs) have broad efficacy and similar FDA-approved indications, suggesting shared molecular drug targets across cancer types. Irrespective of tumor type, 20-30% of patients treated with multi-targeted TKIs demonstrate intrinsic resistance, with progressive disease as a best response. We conducted a retrospective cohort study to identify tumor (somatic) point mutations, insertion/deletions, and copy number alterations (CNA) associated with intrinsic resistance to multi-targeted TKIs. Using a candidate gene approach (n=243), tumor next-generation sequencing and CNA data was associated with resistant and non-resistant outcomes. Resistant individuals (n=11) more commonly harbored somatic point mutations in NTRK1, KDR, TGFBR2, and PTPN11 and CNA in CDK4, CDKN2B, and ERBB2 compared to non-resistant (n=26, p&lt;0.01). Using a random forest classification model for variable reduction and a decision tree classification model, we were able to differentiate intrinsically resistant from non-resistant patients. CNA in CDK4 and CDKN2B were the most important analytical features, implicating the cyclin D pathway as a potentially important factor in resistance to multi-targeted TKIs. Replication of these results in a larger, independent patient cohort has potential to inform personalized prescribing of these widely utilized agents."	"Chondrosarcoma in Metachondromatosis: A Rare Case Report. Metachondromatosis which was first described in 1971 by Maroteaux is a rare genetic disease consisting of osteochondromas and enchondromas, caused by loss of function of the PTPN11 gene. It is distinct from other cartilaginous tumors such as multiple osteochondromas and hereditary multiple exostosis by the distribution and orientation of lesions, and pattern of inheritance. In Metachondromatosis osteochondromas typically occur in hands, feet, femur, and tibia while enchondromas commonly affect the pelvic bones and femurs. Both tumors are generally reported to regress in adulthood. To the best of our knowledge only one case of Chondrosarcoma has been reported, and our case is the second reported case of Chondrosarcoma in metachondromatosis."	"Crk proteins transduce FGF signaling to promote lens fiber cell elongation. Specific cell shapes are fundamental to the organization and function of multicellular organisms. Fibroblast Growth Factor (FGF) signaling induces the elongation of lens fiber cells during vertebrate lens development. Nonetheless, exactly how this extracellular FGF signal is transmitted to the cytoskeletal network has previously not been determined. Here, we show that the Crk family of adaptor proteins, Crk and Crkl, are required for mouse lens morphogenesis but not differentiation. Genetic ablation and epistasis experiments demonstrated that Crk and Crkl play overlapping roles downstream of FGF signaling in order to regulate lens fiber cell elongation. Upon FGF stimulation, Crk proteins were found to interact with Frs2, Shp2 and Grb2. The loss of Crk proteins was partially compensated for by the activation of Ras and Rac signaling. These results reveal that Crk proteins are important partners of the Frs2/Shp2/Grb2 complex in mediating FGF signaling, specifically promoting cell shape changes."	"Novel Myopia Genes and Pathways Identified From Syndromic Forms of Myopia. To test the hypothesis that genes known to cause clinical syndromes featuring myopia also harbor polymorphisms contributing to nonsyndromic refractive errors. Clinical phenotypes and syndromes that have refractive errors as a recognized feature were identified using the Online Mendelian Inheritance in Man (OMIM) database. One hundred fifty-four unique causative genes were identified, of which 119 were specifically linked with myopia and 114 represented syndromic myopia (i.e., myopia and at least one other clinical feature). Myopia was the only refractive error listed for 98 genes and hyperopia and the only refractive error noted for 28 genes, with the remaining 28 genes linked to phenotypes with multiple forms of refractive error. Pathway analysis was carried out to find biological processes overrepresented within these sets of genes. Genetic variants located within 50 kb of the 119 myopia-related genes were evaluated for involvement in refractive error by analysis of summary statistics from genome-wide association studies (GWAS) conducted by the CREAM Consortium and 23andMe, using both single-marker and gene-based tests. Pathway analysis identified several biological processes already implicated in refractive error development through prior GWAS analyses and animal studies, including extracellular matrix remodeling, focal adhesion, and axon guidance, supporting the research hypothesis. Novel pathways also implicated in myopia development included mannosylation, glycosylation, lens development, gliogenesis, and Schwann cell differentiation. Hyperopia was found to be linked to a different pattern of biological processes, mostly related to organogenesis. Comparison with GWAS findings further confirmed that syndromic myopia genes were enriched for genetic variants that influence refractive errors in the general population. Gene-based analyses implicated 21 novel candidate myopia genes (ADAMTS18, ADAMTS2, ADAMTSL4, AGK, ALDH18A1, ASXL1, COL4A1, COL9A2, ERBB3, FBN1, GJA1, GNPTG, IFIH1, KIF11, LTBP2, OCA2, POLR3B, POMT1, PTPN11, TFAP2A, ZNF469). Common genetic variants within or nearby genes that cause syndromic myopia are enriched for variants that cause nonsyndromic, common myopia. Analysis of syndromic forms of refractive errors can provide new insights into the etiology of myopia and additional potential targets for therapeutic interventions."	"The gain-of-function mutation E76K in SHP2 promotes CAC tumorigenesis and induces EMT via the Wnt/β-catenin signaling pathway. SHP2 is encoded by the protein tyrosine phosphatase 11 (Ptpn11) gene. Several gain-of-function (GOF) mutations in Ptpn11 have been identified in human hematopoietic malignancies and solid tumors. In addition, the mutation rate for SHP2 is the highest for colorectal cancer (CRC) among solid tumors. The E76K GOF mutation is the most common and active SHP2 mutation; however, the pathogenic effects and function of this mutation in CRC tumor progression have not been well characterized. The Wnt/β-catenin (CTNNB1) signaling pathway is crucial for CRC, and excessive activation of this pathway has been observed in several tumors. We used Ptpn11<sup>E76K</sup> conditional knock-in mice to study this GOF mutation in colitis-associated CRC (CAC) and used the CRC cell lines HT29 and HCT116 to determine the relationship between SHP2 and Wnt/β-catenin signaling. Ptpn11<sup>E76K</sup> conditional knock-in mice exhibited aggravated inflammation and increased CAC tumorigenesis. In vitro, SHP2<sup>E76K</sup> and SHP2<sup>WT</sup> promoted malignant biological behaviors of CRC cells and induced epithelial-mesenchymal transition (EMT) via the Wnt/β-catenin signaling pathway. Together, our results showed that SHP2<sup>E76K</sup> acts as an oncogene that promotes the tumorigenesis and metastasis of CRC."	"Dual Allosteric Inhibition of SHP2 Phosphatase. SHP2 is a cytoplasmic protein tyrosine phosphatase encoded by the PTPN11 gene and is involved in cell proliferation, differentiation, and survival. Recently, we reported an allosteric mechanism of inhibition that stabilizes the auto-inhibited conformation of SHP2. SHP099 (1) was identified and characterized as a moderately potent, orally bioavailable, allosteric small molecule inhibitor, which binds to a tunnel-like pocket formed by the confluence of three domains of SHP2. In this report, we describe further screening strategies that enabled the identification of a second, distinct small molecule allosteric site. SHP244 (2) was identified as a weak inhibitor of SHP2 with modest thermal stabilization of the enzyme. X-ray crystallography revealed that 2 binds and stabilizes the inactive, closed conformation of SHP2, at a distinct, previously unexplored binding site-a cleft formed at the interface of the N-terminal SH2 and PTP domains. Derivatization of 2 using structure-based design resulted in an increase in SHP2 thermal stabilization, biochemical inhibition, and subsequent MAPK pathway modulation. Downregulation of DUSP6 mRNA, a downstream MAPK pathway marker, was observed in KYSE-520 cancer cells. Remarkably, simultaneous occupation of both allosteric sites by 1 and 2 was possible, as characterized by cooperative biochemical inhibition experiments and X-ray crystallography. Combining an allosteric site 1 inhibitor with an allosteric site 2 inhibitor led to enhanced pharmacological pathway inhibition in cells. This work illustrates a rare example of dual allosteric targeted protein inhibition, demonstrates screening methodology and tactics to identify allosteric inhibitors, and enables further interrogation of SHP2 in cancer and related pathologies."	"Maintenance of murine platelet homeostasis by the kinase Csk and phosphatase CD148. Src family kinases (SFKs) coordinate the initiating and propagating activation signals in platelets, but it remains unclear how they are regulated. Here, we show that ablation of C-terminal Src kinase (Csk) and receptor-like protein tyrosine-phosphatase CD148 in mice results in a dramatic increase in platelet SFK activity, demonstrating that these proteins are essential regulators of platelet reactivity. Paradoxically, Csk/CD148-deficient mice exhibit reduced in vivo and ex vivo thrombus formation and increased bleeding following injury rather than a prothrombotic phenotype. This is a consequence of multiple negative feedback mechanisms, including downregulation of the immunoreceptor tyrosine-based activation motif (ITAM)- and hemi-ITAM-containing receptors glycoprotein VI (GPVI)-Fc receptor (FcR) γ-chain and CLEC-2, respectively and upregulation of the immunoreceptor tyrosine-based inhibition motif (ITIM)-containing receptor G6b-B and its interaction with the tyrosine phosphatases Shp1 and Shp2. Results from an analog-sensitive Csk mouse model demonstrate the unconventional role of SFKs in activating ITIM signaling. This study establishes Csk and CD148 as critical molecular switches controlling the thrombotic and hemostatic capacity of platelets and reveals cell-intrinsic mechanisms that prevent pathological thrombosis from occurring."	"Prion-like Propagation of α-Synuclein Is Regulated by the FcγRIIB-SHP-1/2 Signaling Pathway in Neurons. Recent evidence of prion-like propagation of α-synuclein (α-syn) into neighboring neurons set up a paradigm to elucidate the mechanism of progression of Parkinson's disease (PD) and to develop therapeutic strategies. Here, we show that FcγRIIB expressed in neurons functions as a receptor for α-syn fibrils and mediates cell-to-cell transmission of α-syn. SHP-1 and 2 are activated downstream by α-syn fibrils through FcγRIIB and play an important role in cell-to-cell transmission of α-syn. Also, taking advantage of a co-culture system, we show that cell-to-cell transmission of α-syn induces intracellular Lewy body-like inclusion body formation and that the FcγRIIB/SHP-1/2 signaling pathway is involved in it. Therefore, the FcγRIIB-SHP-1/-2 signaling pathway may be a therapeutic target for the progression of PD. The in vitro system is an efficient tool for further high-throughput screening that can be used for developing a therapeutic intervention in PD."	"Affinity purification mass spectrometry analysis of PD-1 uncovers SAP as a new checkpoint inhibitor. Programmed cell death-1 (PD-1) is an essential inhibitory receptor in T cells. Antibodies targeting PD-1 elicit durable clinical responses in patients with multiple tumor indications. Nevertheless, a significant proportion of patients do not respond to anti-PD-1 treatment, and a better understanding of the signaling pathways downstream of PD-1 could provide biomarkers for those whose tumors respond and new therapeutic approaches for those whose tumors do not. We used affinity purification mass spectrometry to uncover multiple proteins associated with PD-1. Among these proteins, signaling lymphocytic activation molecule-associated protein (SAP) was functionally and mechanistically analyzed for its contribution to PD-1 inhibitory responses. Silencing of SAP augmented and overexpression blocked PD-1 function. T cells from patients with X-linked lymphoproliferative disease (XLP), who lack functional SAP, were hyperresponsive to PD-1 signaling, confirming its inhibitory role downstream of PD-1. Strikingly, signaling downstream of PD-1 in purified T cell subsets did not correlate with PD-1 surface expression but was inversely correlated with intracellular SAP levels. Mechanistically, SAP opposed PD-1 function by acting as a molecular shield of key tyrosine residues that are targets for the tyrosine phosphatase SHP2, which mediates PD-1 inhibitory properties. Our results identify SAP as an inhibitor of PD-1 function and SHP2 as a potential therapeutic target in patients with XLP."	"Novel approaches to diagnosis and treatment of Juvenile Myelomonocytic Leukemia. Juvenile myelomonocytic leukemia (JMML) is a clonal hematopoietic disorder of infancy/early childhood, resulting from oncogenic mutations in genes involved in the Ras pathway. As JMML often exhibits an aggressive course, the timing of diagnosis and treatment is critical to outcome. Areas covered: This review summarizes current approaches to diagnosis and treatment of JMML, highlighting most recent insights into genetic and epigenetic mechanisms underlying the disease, and providing an overview of novel potential therapeutic strategies. Expert commentary: At present, allogeneic HSCT remains the only potentially effective therapy, being able to cure more than 50% of patients, relapse representing the main cause of treatment failure. Prompt HSCT is recommended for all children with NF1, somatic PTPN11 and KRAS mutations, and for most children with somatic NRAS mutations. Conversely, a 'watch and wait' strategy should be adopted in children with germline CBL mutations, specific somatic NRAS mutation, and in Noonan syndrome patients, since spontaneous resolution has been reported to occur. Novel drugs targeting relevant nodes of JMML leukemogenesis have been explored in pre-HSCT window or at relapse. The use of 5-azacytidine, a DNA-hypomethylating agent reported to induce hematologic and molecular remission in some JMML children, is currently being investigated in clinical trials."	"RAS-pathway mutation patterns define epigenetic subclasses in juvenile myelomonocytic leukemia. Juvenile myelomonocytic leukemia (JMML) is an aggressive myeloproliferative disorder of early childhood characterized by mutations activating RAS signaling. Established clinical and genetic markers fail to fully recapitulate the clinical and biological heterogeneity of this disease. Here we report DNA methylome analysis and mutation profiling of 167 JMML samples. We identify three JMML subgroups with unique molecular and clinical characteristics. The high methylation group (HM) is characterized by somatic PTPN11 mutations and poor clinical outcome. The low methylation group is enriched for somatic NRAS and CBL mutations, as well as for Noonan patients, and has a good prognosis. The intermediate methylation group (IM) shows enrichment for monosomy 7 and somatic KRAS mutations. Hypermethylation is associated with repressed chromatin, genes regulated by RAS signaling, frequent co-occurrence of RAS pathway mutations and upregulation of DNMT1 and DNMT3B, suggesting a link between activation of the DNA methylation machinery and mutational patterns in JMML."	"Loss of Shp2 within radial glia is associated with cerebral cortical dysplasia, glial defects of cerebellum and impaired sensory‑motor development in newborn mice. Radial glia are key neural progenitors involved in the development of the central nervous system. Tyrosine-protein phosphatase non‑receptor type 11 (Shp2) is a widely expressed intracellular enzyme with multiple cellular functions. Previous studies have revealed the critical role of Shp2 in a variety of neural cell types; however, further investigation into the function of Shp2 within radial glia is required. In the present study, a conditional knockout mouse was generated using a human glial fibrillary acidic protein (hGFAP)‑Cre driver, in which the Shp2 genes were deleted within radial glia. Loss of Shp2 within radial glia was associated with developmental retardation, postnatal lethality, reduced brain size and thinner cerebral cortices in newborn mice. Deletion of Shp2 also led to an increase in gliogenesis, a reduction in neural genesis and extracellular signal‑regulated kinase signaling within the cerebral cortex. Furthermore, glial cell defects within the cerebellum of Shp2 mutants were observed, with abnormal granular cell retention and glial cell alignment in the external granular layer. In addition, Shp2 mutants exhibited impaired sensory‑motor development. The results of the present study suggested that Shp2 may have an important role within radial glia, and regulate cerebral cortical and cerebellar development in newborn mice."	"SHP2 associates with nuclear localization of STAT3: significance in progression and prognosis of colorectal cancer. Tyrosine phosphatase SHP2, encoded by PTPN11, has been implicated in many physiologic and pathologic processes in neoplastic progression. However, controversies are emerging from many studies, indicating SHP2 has a dual role in different types of tumors. We aimed to explore the role of SHP2 in progression and prognosis of colorectal cancer (CRC). SHP2 inhibited CRC cell proliferation and migration, and the phosphorylation of STAT3 was negatively regulated by SHP2 in CRC. SHP2 and nuclear STAT3 were examined in 270 CRC tissues. SHP2 was significantly correlated with nuclear STAT3 (Spearman's rho = -0.408, P ≤ 0.001). Based on Cox regression analysis, patients with high levels of SHP2 and low levels of nuclear STAT3 had longer disease-specific survival (DSS) (HR, 0.362; 95% CI, 0.165-0.794) and disease-free survival (DFS) (HR, 0.447; 95% CI, 0.227-0.877). Further, low levels of SHP2 and high levels of nuclear STAT3 were independently associated with adverse outcomes in the whole cohort (DFS; HR, 2.353; 95% CI, 1.199-4.619). These results suggest that combination of SHP2 and nuclear STAT3 is a strong prognostic predictor in CRC."	"The Molecular Pathway Regulating Bergmann Glia and Folia Generation in the Cerebellum. Evolution of complex behaviors in higher vertebrates and primates require the development of sophisticated neuronal circuitry and the expansion of brain surface area to accommodate the vast number of neuronal and glial populations. To achieve these goals, the neocortex in primates and the cerebellum in amniotes have developed specialized types of basal progenitors to aid the folding of their cortices. In the cerebellum, Bergmann glia constitute such a basal progenitor population, having a distinctive morphology and playing a critical role in cerebellar corticogenesis. Here, we review recent studies on the induction of Bergmann glia and their crucial role in mediating folding of the cerebellar cortex. These studies uncover a key function of FGF-ERK-ETV signaling cascade in the transformation of Bergmann glia from radial glia in the ventricular zone. Remarkably, in the neocortex, the same signaling axis operates to facilitate the transformation of ventricular radial glia into basal radial glia, a Bergmann glia-like basal progenitor population, which have been implicated in the establishment of neocortical gyri. These new findings draw a striking similarity in the function and ontogeny of the two basal progenitor populations born in distinct brain compartments."	"Redox Regulation of a Gain-of-Function Mutation (N308D) in SHP2 Noonan Syndrome. SHP2 (Src homology 2 domain-containing protein tyrosine phosphatase 2; PTPN11) is a ubiquitous multidomain, nonreceptor protein tyrosine phosphatase (PTP) that plays an important role in diseases such as cancer, diabetes, and Noonan syndrome (NS). NS is one of the most common genetic disorders associated with congenital heart disease, and approximately half of the patients with Noonan syndrome have gain-of-function mutations in SHP2. One of the most common NS mutations is N308D. The activity of SHP2, like that of most PTPs, is reversibly inactivated by reactive oxygen species (ROS). However, the molecular basis of this inactivation and the consequences of NS-related mutations in PTPN11 on ROS-mediated inhibition are poorly understood. Here, we investigated the mechanistic and structural details of the reversible oxidation of the NS variant SHP2N308D. We show that SHP2N308D is more sensitive to oxidation when compared with wild-type SHP2. We also show that although the SHP2N308D catalytic domain can be reactivated by dithiothreitol as effectively as the wild-type, full-length SHP2N308D is only poorly reactivated by comparison. To understand the mechanism of oxidation at a molecular level, we determined the crystal structure of oxidized SHP2N308D. The structure shows that the catalytic Cys459 residue forms a disulfide bond with Cys367, which confirms that Cys367 functions as the &quot;backdoor&quot; cysteine in SHP2. Together, our data suggest that the reversible oxidation of SHP2 contributes negligibly, if at all, to the symptoms associated with NS."	"Src homology phosphotyrosyl phosphatase 2 mediates cisplatin-related drug resistance by inhibiting apoptosis and activating the Ras/PI3K/Akt1/survivin pathway in lung cancer cells. Cisplatin resistance is a major cause of chemotherapeutic failure in lung cancer patients. Unraveling the molecular mechanisms underlying cisplatin (CDDP) resistance is important in lung cancer therapeutics. To explore the role of Src homology phosphotyrosyl phosphatase 2 (SHP2) in the development of cisplatin resistance in lung cancer and the underlying mechanism, we established stable SHP2‑overexpressing H446‑SHP2-OE cells and SHP2‑knockdown H446/CDDP‑SHP2-shRNA cells derived from H446 and H446/CDDP (cisplatin-resistant) parental lung cancer cells. The cell viability and apoptosis of these cells exposed to CDDP were observed to determine the influence of SHP2 on drug resistance. In addition, the expression of SHP2, Ras, Akt1 and survivin was assessed by western blot analysis after the lung cancer cells were challenged by cisplatin or silenced by Ras siRNA. As a result, the 50% inhibitory concentration (IC50) of the H446-SHP2-OE cells exposed to CDDP increased from 1.01 to 1.218 µg/ml vs. the H446-control vector cells. The percentage of apoptotic cells was smaller in the H446-SHP2-OE cells vs. the H446-control vector cells after cisplatin challenge. In addition, the expression of Ras, pAkt1, Akt1 and survivin in the H446/CDDP cells was significantly increased vs. the H446 cells. Furthermore, the IC50 of the H446/CDDP‑SHP2‑shRNA cells exposed to CDDP decreased from 11.92 to 4.382 µg/ml vs. the H446/CDDP‑mock cells. There were significantly more apoptotic cells among the H446/CDDP‑SHP2-shRNA cells vs. the H446/CDDP-mock cells exposed to cisplatin. A smaller percentage of the H446/CDDP-SHP2-shRNA cells vs. the H446/CDDP‑mock cells was observed. In addition, the expression of pAkt1 and survivin in the H446, H446/CDDP and H446/CDDP-mock cells was increased upon exposure to cisplatin however, a corresponding change was not observed in the H446/CDDP-SHP2-shRNA cells. Upon Ras RNA silencing with cisplatin, the Ras expression was significantly decreased in the H446, H446-SHP2-OE and H446/CDDP cells. However, upon Ras RNA interference, the SHP2 expression was not significantly changed, but the expression of Akt1, pAkt1 and survivin was significantly increased in the H446-SHP2-OE and H446/CDDP cells. In conclusion, SHP2 is a new cisplatin resistance-related phosphatase in lung cancer, which inhibits apoptosis by activating the Ras/PI3K/Akt1/survivin signaling pathway."	"Primary Epithelioid Angiosarcoma of Finger Masquerading as Epithelioid Hemangioma: Report of a Case and Analysis of Mutational Pattern in Epithelioid Hemangiomas and Angiosarcomas by Next-generation Sequencing. We report an unusual case of epithelioid angiosarcoma (AS) mimicking an epithelioid hemangioma (EH) and analyze mutational patterns in EHs and ASs. A 58-year-old woman presented with a finger lump and metastatic lung nodules. Initial needle biopsies showed an EH, with only focal atypical histologic features. The patient underwent finger amputation and resection of lung nodules. The amputation specimen and lung nodules revealed features of AS. Fluorescence in situ hybridization for FOS and FOSB gene rearrangements were negative in the primary tumor as well as in the lung metastasis. Intrigued by the unique morphologic features of an AS masquerading as an EH, we expanded our study by analyzing mutations in EHs versus ASs using a targeted next-generation sequencing of 50 cancer-related genes. Seven EHs and 6 ASs including the present case were subjected to mutation analysis using the Ion AmpliSeq Cancer Hotspot Panel v2 assay of 50 cancer-related genes. The present case lacked mutation. Novel somatic variants were detected in 2 of 7 EHs and 1 of 6 ASs. Sorting intolerant from tolerant and polymorphism phenotyping analysis revealed benign/tolerated and deleterious variants in both tumor types. Deleterious variants TP53 c.707T&gt;C (p.Tyr236Cys), FLT3 c.1995C&gt;T (p.Met665Ile), and SMO c.1919C&gt;T (p.Thr640Ile) were detected in EH, while AS revealed deleterious variant PTPN11 c.226G&gt;A (p.Glu76Lys). We present an epithelioid AS mimicking EH. We report novel somatic variants in EHs and AS. Benign variants may not be associated with development of these tumors. Whereas, deleterious variants, especially PTPN11 c.226G&gt;A, may be linked to tumorigenesis of AS."	"Maintenance of stemness by miR-589-5p in hepatocellular carcinoma cells promotes chemoresistance via STAT3 signaling. The strength and duration of STAT3 signaling are tightly controlled by multiple negative feedback mechanisms under physical conditions. However, how these serial feedback loops are simultaneously disrupted in cancers, leading to constitutive activation of STAT3 signaling in hepatocellular carcinoma (HCC), remains obscure. Here we report that miR-589-5p is elevated in HCC tissues, which is caused by recurrent gains. Overexpression of miR-589-5p correlates with poor overall and relapse-free survival in HCC patients. Upregulating miR-589-5p enhances spheroid formation ability, fraction of CD133 positive and side population cells, expression of cancer stem cell factors and the mitochondrial potential, and represses the apoptosis induced by doxorubicin in vitro and tumorigenicity in vivo in HCC cells; conversely, silencing miR-589-5p yields an opposite effect. Our findings further demonstrate miR-589-5p promotes the cancer stem cell characteristics and chemoresistance via targeting multiple negative regulators of STAT3 signaling pathway, including SOCS2, SOCS5, PTPN1 and PTPN11, leading to constitutive activation of STAT3 signaling. Collectively, our results unravel a novel mechanism by which miR-589-5p promotes the maintenance of stemness and chemoresistance in HCC, providing a potential rational registry of anti-miR-589-5p combining with conventional chemotherapy against HCC."	"Somatic PTPN11 Mutation in a Child With Neuroblastoma and Protein Losing Enteropathy. Neuroblastoma and protein losing enteropathy (PLE) are diagnoses commonly seen by oncologists and gastroenterologists, respectively. The concurrence of these 2 entities is rare, and not well explained. We describe the sixth case of PLE in a child with neuroblastoma, and the first for which genetic information is available. Tumor DNA had a mutation in the PTPN11 gene, which has been described in neuroblastoma, and in Noonan syndrome-a diagnosis in which neuroblastoma and PLE independently have been reported. Constitutional DNA was normal. Genetic studies in future patients will be needed to support the link between neuroblastoma and PLE."	"Fine-Tuning of Optimal TCR Signaling in Tumor-Redirected CD8 T Cells by Distinct TCR Affinity-Mediated Mechanisms. Redirecting CD8 T cell immunity with self/tumor-specific affinity-matured T cell receptors (TCRs) is a promising approach for clinical adoptive T cell therapy, with the aim to improve treatment efficacy. Despite numerous functional-based studies, little is known about the characteristics of TCR signaling (i.e., intensity, duration, and amplification) and the regulatory mechanisms underlying optimal therapeutic T cell responses. Using a panel of human SUP-T1 and primary CD8 T cells engineered with incremental affinity TCRs against the cancer-testis antigen NY-ESO-1, we found that upon activation, T cells with optimal-affinity TCRs generated intense and sustained proximal (CD3ζ, LCK) signals associated with distal (ERK1/2) amplification-gain and increased function. In contrast, in T cells with very high affinity TCRs, signal initiation was rapid and strong yet only transient, resulting in poor MAPK activation and low proliferation potential even at high antigen stimulation dose. Under resting conditions, the levels of surface TCR/CD3ε, CD8β, and CD28 expression and of CD3ζ phosphorylation were significantly reduced in those hyporesponsive cells, suggesting the presence of TCR affinity-related activation thresholds. We also show that SHP phosphatases were involved along the TCR affinity gradient, but displayed spatially distinct regulatory roles. While PTPN6/SHP-1 phosphatase activity controlled TCR signaling initiation and subsequent amplification by counteracting CD3ζ and ERK1/2 phosphorylation, PTPN11/SHP-2 augmented MAPK activation without affecting proximal TCR signaling. Together, our findings indicate that optimal TCR signaling can be finely tuned by TCR affinity-dependent SHP-1 and SHP-2 activity, and this may readily be determined at the TCR/CD3 complex level. We propose that these TCR affinity-associated regulations represent potential protective mechanisms preventing high affinity TCR-mediated autoimmune diseases."	"Functional STR within PTPN11: a novel potential risk factor for colorectal cancer. PTPN11 was previously regarded as a proto-oncogene, but recent reports have found that it acts as a tumor repressor in hepatocellular carcinogenesis and a prognostic predictor for colorectal carcinoma (CRC), although, its role in colorectal carcinogenesis is still unclear. This hospital-based case-control study with 830 CRC cases and 878 controls was carried out to determine the effect of the short tandem repeat (STR) polymorphism, located in the 3'UTR, on CRC risk in the study population of Chinese adults. Distribution of the genotypic frequency between CRC cases and controls in the Xuzhou study center revealed that the risk of CRC decreased as the repeat numbers increased. Compared with the 11/12 genotype, those with the 13/14 genotype were conferred reduced risk of CRC (OR=0.74, 95% CI=0.59-0.95, P=0.02), while carriers with the 15/16 genotype showed a marked reduction in CRC risk (OR=0.50, 95% CI=0.34-0.74, P=0.0004). A similar trend in genotype and allelic frequency was also observed in the Suining study center as well as in the pooled results. Using RT-qPCR analysis, longer alleles were found to upregulate the expression of PTPN11 in both tumor tissues and adjacent non-tumor tissues, with the expression of PTPN11 in non-CRC tissues observed to be 2.5-fold higher than those of CRC tissues. In the gain-of-function in vitro studies, it was found that constructs with allele 14 had the highest luciferase expression, while the allele 12 constructs had much lower expression, indicating that the STR polymorphism could influence the transcriptional activity and therefore was able to modulate PTPN11 expression. In conclusion, these findings indicate that the STR polymorphism located in PTPN11 modulates colorectal carcinogenesis probably through a motif change in the 3'UTR. Further studies with more study centers and the inclusion of other ethnic Chinese populations would have to be carried in the future so as to substantiate this observation."	"Allosteric Inhibitors of SHP2 with Therapeutic Potential for Cancer Treatment. SHP2, a cytoplasmic protein-tyrosine phosphatase encoded by the PTPN11 gene, is involved in multiple cell signaling processes including Ras/MAPK and Hippo/YAP pathways. SHP2 has been shown to contribute to the progression of a number of cancer types including leukemia, gastric, and breast cancers. It also regulates T-cell activation by interacting with inhibitory immune checkpoint receptors such as the programmed cell death 1 (PD-1) and B- and T-lymphocyte attenuator (BTLA). Thus, SHP2 inhibitors have drawn great attention by both inhibiting tumor cell proliferation and activating T cell immune responses toward cancer cells. In this study, we report the identification of an allosteric SHP2 inhibitor 1-(4-(6-bromonaphthalen-2-yl)thiazol-2-yl)-4-methylpiperidin-4-amine (23) that locks SHP2 in a closed conformation by binding to the interface of the N-terminal SH2, C-terminal SH2, and phosphatase domains. Compound 23 suppresses MAPK signaling pathway and YAP transcriptional activity and shows antitumor activity in vivo. The results indicate that allosteric inhibition of SHP2 could be a feasible approach for cancer therapy."	"Neutrophil CD16b crosslinking induces lipid raft-mediated activation of SHP-2 and affects cytokine expression and retarded neutrophil apoptosis. Two different types of FcRs for IgG are constitutively expressed on the surface of human neutrophils, namely, FcγRIIA (CD32a) and FcγRIIIB (CD16b). Unlike FcγRIIA, FcγRIIIb is GPI anchored to the cell membrane and its signal transduction is still ambiguous. To further understand the signal transduction of CD16b, we compared neutrophil cytokine expression and apoptosis by the cross-linking of CD32a and CD16b respectively. We found that both CD32a and CD16b crosslinking can activate neutrophils, but did not exactly share cytokine expression profiles. On the other hand, CD16b cross-linking retarded neutrophil apoptosis while CD32a promoted it. By interrupting the lipid raft with methyl-β-cyclodextrin (MβCD) and inhibiting the ITAM-SYK pathway with an SYK inhibitor (piceatannol), we found reduced apoptosis was at least partially mediated by lipid raft structure, but not the ITAM-SYK pathway. Additionally, CD16b but not CD32a cross-linking triggered SHP-2 phosphorylation and led to its translocation into lipid rafts. SHP-2 phosphorylation and translocation were inhibited by MβCD. Moreover, pre-inhibition of SHP-2 by a specific inhibitor (SHP099) converted IL-10 and SOCS3 expression level and promoted neutrophil apoptosis after CD16b crosslinking. In conclusion, these results, for the first time, collectively indicate that SHP-2 is activated by CD16b crosslinking in neutrophils and functions as a component of the raft-mediated signaling pathway."	"Exploring the effect of D61G mutation on SHP2 cause gain of function activity by a molecular dynamics study. Noonan syndrome (NS) is a common autosomal dominant congenital disorder which could cause the congenital cardiopathy and cancer predisposition. Previous studies reported that the knock-in mouse models of the mutant D61G of SHP2 exhibited the major features of NS, which demonstrated that the mutation D61G of SHP2 could cause NS. To explore the effect of D61G mutation on SHP2 and explain the high activity of the mutant, molecular dynamic simulations were performed on wild type (WT) of SHP2 and the mutated SHP2-D61G, respectively. The principal component analysis and dynamic cross-correlation mapping, associated with secondary structure, showed that the D61G mutation affected the motions of two regions (residues Asn 58-Thr 59 and Val 460-His 462) in SHP2 from β to turn. Moreover, the residue interaction networks analysis, the hydrogen bond occupancy analysis and the binding free energies were calculated to gain detailed insight into the influence of the mutant D61G on the two regions, revealing that the major differences between SHP2-WT and SHP2-D61G were the different interactions between Gly 61 and Gly 462, Gly 61 and Ala 461, Gln 506 and Ile 463, Gly 61 and Asn 58, Ile 463 and Thr 466, Gly 462 and Cys 459. Consequently, our findings here may provide knowledge to understand the increased activity of SHP2 caused by the mutant D61G."	"A Deregulated PI3K-AKT Signaling Pathway in Patients with Colorectal Cancer. Molecular switches in phosphatidylinositol 3-kinase (PI3K)-AKT signaling pathway may serve as potential targets for the treatment of colorectal cancer (CRC). This study aims to profile the gene alterations involved in PI3K-AKT signaling pathway in patients with CRC. Tumoral and matched peritumoral tissues were collected from 15 CRC patients who went routine surgery. A human PI3K-AKT signaling pathway polymerase chain reaction (PCR) array, which profiled the transcriptional changes of a total number of 84 genes involved in the PI3K-AKT pathway, was then applied to determine the gene alterations in CRC tumoral tissue with matched peritumoral tissue as a healthy control. Subsequent real-time reverse transcription PCR and western blot (WB) with different subgroups of CRC patients were then performed to further validate the array findings. The PCR array identified 14 aberrantly expressed genes involved in the PI3K-AKT signaling pathway in CRC tumoral tissue, among which 12 genes, CCND1, CSNK2A1, EIF4E, EIF4EBP1, EIF4G1, FOS, GRB10, GSK3B, ILK, PTK2, PTPN11, and PHEB were significantly up-modulated (&gt; two fold) while the remaining two, PDK1 and PIK3CG, were down-regulated (&gt; two fold). These genes involve in the regulation of gene transcription and translation, cell cycle, and cell growth, proliferation, and differentiation. The real-time reverse transcription PCR validation agreed with the array data towards the tested genes, CCND1, EIF4E, FOS, and PIK3CG, while it failed to obtain similar result for PDK1. Interestingly, the WB analyses were further consistent with the PCR results that the protein levels of CCND1, EIF4E, and FOS were apparently up-regulated and that protein PIK3CG was down-modulated. Taken together, the present study identified a deregulated PI3K-AKT signaling pathway in CRC patients, which might serve as therapeutic target(s)."	"Protein and mRNA expressions of IL-6 and its key signaling factors under orthodontic forces in mice: An in-vivo study. The purpose of this study was to investigate the mechanical loading-induced changes in protein and mRNA expressions of interleukin-6 (IL-6) and its key signaling factors glycoprotein 130 (gp130), signal transducer and activator of transcription 3 (STAT3), and the Src homology phosphotyrosine phosphatase (SHP2) at the tension and compression sides of the teeth in mouse models. A total of 55 C57B/6 mice (10 weeks old) were divided into 3 groups. Orthodontic force was applied in group A (experimental group, n = 30); the tooth movement device was placed without activation in group B (sham control group, n = 15), and group C (blank control group, n = 10). Tooth movement was induced by a nickel-titanium coil spring inserted between the maxillary left incisor and the first molar with a force of approximately 4 g. The animals were killed 12 days after the interventions; protein and mRNA expressions of IL-6, gp130, STAT3, and SHP2 in the periodontal tissues were observed with immunohistochemistry and in-situ hybridization, respectively. In contrast with the control groups, we observed enhanced expressions of IL-6, gp130, STAT3, and SHP2 protein and mRNA at the mesial and distal sides of the teeth with application of orthodontic forces in the experimental group. In contrast with the distal side, we observed enhanced expression of gp130 protein and mRNA at the mesial side in the experimental group. We observed enhanced expression of IL-6 and its key signaling factors gp130, STAT3, and SHP2 protein and mRNA at the tension and compression sides of the teeth with application of orthodontic forces. The mechanical loading applied for orthodontic tooth movement might induce changes in protein localization and mRNA expression patterns of IL-6 and its key signaling factors gp130, STAT3, and SHP2 at the tension and compression sides of the periodontal ligaments of the teeth in mouse models. The result might demonstrate the special role of IL-6 and its key signaling factors in the alveolar bone-modeling process."	"Sporadic granular cell tumours lack recurrent mutations in PTPN11, PTEN and other cancer-related genes. NA"	"Identification of an allosteric benzothiazolopyrimidone inhibitor of the oncogenic protein tyrosine phosphatase SHP2. The PTPN11 oncogene encodes the cytoplasmic protein tyrosine phosphatase SHP2, which, through its role in multiple signaling pathways, promotes the progression of hematological malignancies and other cancers. Here, we employ high-throughput screening to discover a lead chemical scaffold, the benzothiazolopyrimidones, that allosterically inhibits this oncogenic phosphatase by simultaneously engaging the C-SH2 and PTP domains. We improved our lead to generate an analogue that better suppresses SHP2 activity in vitro. Suppression of Erk phopsphorylation by the lead compound is also consistent with SHP2 inhibition in AML cells. Our findings provide an alternative starting point for therapeutic intervention and will catalyze investigations into the relationship between SHP2 conformational regulation, activity, and disease progression."	"Ptpn11 Deletion in CD4<sup>+</sup> Cells Does Not Affect T Cell Development and Functions but Causes Cartilage Tumors in a T Cell-Independent Manner. The ubiquitously expressed tyrosine phosphatase Src homology region 2 domain-containing phosphatase-2 (SHP-2, encoded by Ptpn11) is required for constitutive cellular processes including proliferation, differentiation, and the regulation of immune responses. During development and maturation, subsets of T cells express a variety of inhibitory receptors known to associate with phosphatases, which in turn, dephosphorylate key players of activating receptor signaling pathways. We hypothesized that SHP-2 deletion would have major effects on T cell development by altering the thresholds for activation, as well as positive and negative selection. Surprisingly, using mice conditionally deficient for SHP-2 in the T cell lineage, we show that the development of these lymphocytes is globally intact. In addition, our data demonstrate that SHP-2 absence does not compromise T cell effector functions, suggesting that SHP-2 is dispensable in these cells. Unexpectedly, in aging mice, Ptpn11 gene deletion driven by CD4 Cre recombinase leads to cartilage tumors in wrist bones in a T cell-independent manner. These tumors resemble miniature cartilaginous growth plates and contain CD4-lineage positive chondrocyte-like cells. Altogether these results indicate that SHP-2 is a cartilage tumor suppressor during aging."	"Targeted/exome sequencing identified mutations in ten Chinese patients diagnosed with Noonan syndrome and related disorders. Noonan syndrome (NS) and Noonan syndrome with multiple lentigines (NSML) are autosomal dominant developmental disorders. NS and NSML are caused by abnormalities in genes that encode proteins related to the RAS-MAPK pathway, including PTPN11, RAF1, BRAF, and MAP2K. In this study, we diagnosed ten NS or NSML patients via targeted sequencing or whole exome sequencing (TS/WES). TS/WES was performed to identify mutations in ten Chinese patients who exhibited the following manifestations: potential facial dysmorphisms, short stature, congenital heart defects, and developmental delay. Sanger sequencing was used to confirm the suspected pathological variants in the patients and their family members. TS/WES revealed three mutations in the PTPN11 gene, three mutations in RAF1 gene, and four mutations in BRAF gene in the NS and NSML patients who were previously diagnosed based on the abovementioned clinical features. All the identified mutations were determined to be de novo mutations. However, two patients who carried the same mutation in the RAF1 gene presented different clinical features. One patient with multiple lentigines was diagnosed with NSML, while the other patient without lentigines was diagnosed with NS. In addition, a patient who carried a hotspot mutation in the BRAF gene was diagnosed with NS instead of cardiofaciocutaneous syndrome (CFCS). TS/WES has emerged as a useful tool for definitive diagnosis and accurate genetic counseling of atypical cases. In this study, we analyzed ten Chinese patients diagnosed with NS and related disorders and identified their correspondingPTPN11, RAF1, and BRAF mutations. Among the target genes, BRAF showed the same degree of correlation with NS incidence as that of PTPN11 or RAF1."	"High expression of dedicator of cytokinesis 1 (DOCK1) confers poor prognosis in acute myeloid leukemia. DOCK family genes encode evolutionarily conserved guanine nucleotide exchange factors for Rho GTPase involving multiple biological functions. Yet the patterns and prognostic significance of their expression in acute myeloid leukemia (AML) remain unexplored. Here we analyzed the expression patterns of 11 DOCK family genes in AML cells based on the array data of 347 patients from our cohort and several other published datasets. We further focused on the implications of the expression of DOCK1 since it was the only one in DOCK family to be associated with survival. Physiological functions and biological pathways associated with DOCK1 were identified using bioinformatics approaches. With a median follow up of 57 months, higher DOCK1 expression was associated with shorter disease free and overall survival. The finding could be validated by two independent cohorts. Multivariate analysis showed higher DOCK1 expression as a strong independent unfavorable prognostic factor. Higher DOCK1 expression was closely associated with older age, higher platelet and peripheral blast counts, intermediate-risk cytogenetics, FLT3-ITD, MLL-PTD and mutations in PTPN11, NPM1, RUNX1, ASXL1 and DNMT3A. Functional enrichment analysis suggested the association of DOCK1 overexpression with several key physiological pathways including cell proliferation, motility, and chemotaxis. Therefore, we suggested that AML with higher DOCK1 expression showed characteristic clinical and biological features. DOCK1 expression is an important prognostic marker and a potential therapeutic target for the treatment of AML. Studies in large prospective cohorts are necessary to confirm our findings. Further mechanistic studies to delineate the role of DOCK1 in the leukemogenesis are warranted."	"Protein phosphatases and podocyte function. Deregulation of protecting factor signaling actions in podocytes has emerged as an alternative pathway of podocyte injury mechanisms. Here, we review recent knowledge that highlighted how podocyte protecting factors are modulated by protein phosphatases. Protein tyrosine kinases and phosphatases participate in many, if not all, aspects of cellular function by turning on or off multiple signaling cascades and podocytes are no exception. Modulation of tyrosine residue phosphorylation of podocyte factors such as nephrin, vascular endothelial growth factor, insulin receptors and substrates has been shown to promote podocyte damage and cell death that contributed to multiple glomerular diseases. Protein phosphatase activity can cause either an increase [Src homology 2 domain-containing phosphatase 2 (SHP-2)] or a decrease [Protein tyrosine phosphatase1B (PTP1B), SHP-1 and SH2 domain-containing 5'-inositol phosphatase 2 (SHIP2)] in nephrin tyrosine phosphorylation depending on which podocyte injury model was used. Insulin resistance is closely linked to the development and progression of renal disease. Expression of PTP1B, SHP-1, phosphatase and tensin homolog and SHIP2 are potential mechanisms of podocytes insulin resistance in diabetic kidney disease. Tight regulation of protein phosphatases is critical to maintain cell homeostasis and may offer new perceptive targets to restore protecting factor actions in order to prevent podocyte dysfunction and glomerular diseases."	"[Gene mutation and clinical phenotype analysis of patients with Noonan syndrome and hypertrophic cardiomyopathy]. Objective: To analyze the gene mutations and clinical features of patients with Noonan syndrome and hypertrophic cardiomyopathy. Method: Determined the mutation domain in five cases diagnosed with Noonan syndrome and hypertrophic cardiomyopathy and identified the relationship between the mutant domain and hypertrophic cardiomyopathy by searching relevant articles in pubmed database. Result: Three mutant genes (PTPN11 gene in chromosome 12, RIT1 gene in chromosome 1 and RAF1 gene in chromosome 3) in five cases all had been reported to be related to hypertrophic cardiomyopathy. The reported hypertrophic cardiomyopathy relevant genes MYPN, MYH6 and MYBP3 had also been found in case 1 and 2. Patients with same gene mutation had different clinical manifestations. Both case 4 and 5 had RAF1 mutation (c.770C&gt;T). However, case 4 had special face, low IQ, mild pulmonary artery stenosis, and only mild ventricular hypertrophy. Conclusion: Noonan syndrome is a genetic heterogeneity disease. Our study identified specific gene mutations that could result in Noonan syndrome with hypertrophic cardiomyopathy through molecular biology methods. The results emphasize the importance of gene detection in the management of Noonan syndrome. 目的: 分析Noonan综合征合并肥厚型心肌病患儿的基因突变与临床表型。 方法: 以北京安贞医院小儿心脏中心收治的5例确诊Noonan综合征合并肥厚型心肌病患儿为研究对象,进行基因突变检测,确定突变位点及结构域,分析突变基因与肥厚型心肌病临床表型的关系。 结果: 5例患儿的3个基因突变位点(12号染色体PTPN11基因,1号染色体RIT1基因及3号染色体RAF1基因)与肥厚型心肌病相关。2例患儿基因检测发现与肥厚型心肌病相关的已知基因突变MYPN、MYH6及MYBPC3。2例患儿基因突变均为RAF1,c.770C&gt;T,但临床表现不同,其中1例患儿除有特殊面容及智商较低外,肺动脉瓣狭窄极轻,心室肌肥厚亦不严重。 结论: Noonan综合征表现明显的遗传异质性,同一基因位点突变,临床表现多样。PTPN11、RAF1及RIT1基因位于特定结构域的突变位点与伴肥厚型心肌病的Noonan综合征密切相关。."	"A ERK/RSK-mediated negative feedback loop regulates M-CSF-evoked PI3K/AKT activation in macrophages. Activation of the RAS/ERK and its downstream signaling components is essential for growth factor-induced cell survival, proliferation, and differentiation. The Src homology-2 domain containing protein tyrosine phosphatase 2 (SHP2), encoded by protein tyrosine phosphatase, non-receptor type 11 ( Ptpn11), is a positive mediator required for most, if not all, receptor tyrosine kinase-evoked RAS/ERK activation, but differentially regulates the PI3K/AKT signaling cascade in various cellular contexts. The precise mechanisms underlying the differential effects of SHP2 deficiency on the PI3K pathway remain unclear. We found that mice with myelomonocytic cell-specific [ Tg(LysM-Cre); Ptpn11<sup>fl/fl</sup> mice] Ptpn11 deficiency exhibit mild osteopetrosis. SHP2-deficient bone marrow macrophages (BMMs) showed decreased proliferation in response to M-CSF and decreased osteoclast generation. M-CSF-evoked ERK1/2 activation was decreased, whereas AKT activation was enhanced in SHP2-deficient BMMs. ERK1/2, via its downstream target RSK2, mediates this negative feedback by negatively regulating phosphorylation of M-CSF receptor at Tyr721 and, consequently, its binding to p85 subunit of PI3K and PI3K activation. Pharmacologic inhibition of RSK or ERK phenotypically mimics the signaling defects observed in SHP2-deficient BMMs. Furthermore, this increase in PI3K/AKT activation enables BMM survival in the setting of SHP2 deficiency.-Wang, L., Iorio, C., Yan, K., Yang, H., Takeshita, S., Kang, S., Neel, B.G., Yang, W. An ERK/RSK-mediated negative feedback loop regulates M-CSF-evoked PI3K/AKT activation in macrophages."	"Psychopathological features in Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant disorder characterized by short stature, skeletal and haematological/lymphatic defects, distinctive facies, cryptorchidism, and a wide spectrum of congenital heart defects. Recurrent features also include variable cognitive deficits and behavioural problems. Recent research has been focused on the assessment of prevalence, age of onset and characterization of psychiatric features in this disorder. Herein, we evaluated the prevalence of attention deficit and hyperactivity disorder (ADHD), anxiety and depressive symptoms and syndromes in a cohort of individuals with clinical and molecular diagnosis of NS. The Kiddie Schedule for Affective Disorders and Schizophrenia for School-Age Children Present and Lifetime version (K-SADS PL) has been used for the assessment of psychiatric disorders according to Diagnostic and Statistical Manual of Mental Disorders (DSM-IV). Multidimensional Anxiety Scale for Children (MASC) and the Children's Depression Inventory (CDI) have been assessed for the evaluation of anxiety and depressive symptoms and syndromes, whereas Conners Teacher and Parent Rating Scales-long version (CRS-R) have been used to evaluate ADHD. The study included 27 individuals (67% males) with an average age of 10.4 years (range 6-18 years) receiving molecular diagnosis of NS or a clinically related condition, evaluated and treated at the Neuropsychiatric Unit of Children's Hospital Bambino Gesù and at the Center for Rare Diseases of Fondazione Policlinico Universitario Agostino Gemelli, in Rome. Twenty individuals showed mutations in PTPN11, five in SOS1 and two in SHOC2. The mean IQ was 94 (Standard Deviation = 17, min = 56, max = 130). Seventy percent of the individuals (n = 19; 95% Confidence Interval = 52-85%) showed ADHD features, with six individuals reaching DSM-IV-TR criteria for ADHD disorder, and thirteen showing subsyndromal traits. Symptoms or syndrome of anxiety were present in 37% of the cohort (n = 10; 95% Confidence Interval = 19-56%), with two individuals showing anxiety disorder and eight cases exhibiting subsyndromal traits. Our results show individuals with NS do present a very high risk to develop psychiatric disorders or symptoms during paediatric age. Based on these findings, preschool assessment of inattentive, hyperactivity/impulsivity and anxiety/depressive symptoms is recommended in order to plan a personalized treatment for psychological/psychiatric issues in affected individuals. Dedicated prospective studies are required to confirm the present data and better characterize the psychopathological profile in NS."	"A Comparison of Whole Genome Sequencing to Multigene Panel Testing in Hypertrophic Cardiomyopathy Patients. As DNA sequencing costs decline, genetic testing options have expanded. Whole exome sequencing and whole genome sequencing (WGS) are entering clinical use, posing questions about their incremental value compared with disease-specific multigene panels that have been the cornerstone of genetic testing. Forty-one patients with hypertrophic cardiomyopathy who had undergone targeted hypertrophic cardiomyopathy genetic testing (either multigene panel or familial variant test) were recruited into the MedSeq Project, a clinical trial of WGS. Results from panel genetic testing and WGS were compared. In 20 of 41 participants, panel genetic testing identified variants classified as pathogenic, likely pathogenic, or uncertain significance. WGS identified 19 of these 20 variants, but the variant detection algorithm missed a pathogenic 18 bp duplication in myosin binding protein C (MYBPC3) because of low coverage. In 3 individuals, WGS identified variants in genes implicated in cardiomyopathy but not included in prior panel testing: a pathogenic protein tyrosine phosphatase, non-receptor type 11 (PTPN11) variant and variants of uncertain significance in integrin-linked kinase (ILK) and filamin-C (FLNC). WGS also identified 84 secondary findings (mean=2 per person, range=0-6), which mostly defined carrier status for recessive conditions. WGS detected nearly all variants identified on panel testing, provided 1 new diagnostic finding, and allowed interrogation of posited disease genes. Several variants of uncertain clinical use and numerous secondary genetic findings were also identified. Whereas panel testing and WGS provided similar diagnostic yield, WGS offers the advantage of reanalysis over time to incorporate advances in knowledge, but requires expertise in genomic interpretation to appropriately incorporate WGS into clinical care. URL: https://clinicaltrials.gov. Unique identifier: NCT01736566."	"NO Augments Endothelial Reactivity by Reducing Myoendothelial Calcium Signal Spreading: A Novel Role for Cx37 (Connexin 37) and the Protein Tyrosine Phosphatase SHP-2. Because of its strategic position between endothelial and smooth muscle cells in microvessels, Cx37 (Connexin 37) plays an important role in myoendothelial gap junctional intercellular communication. We have shown before that NO inhibits gap junctional intercellular communication through gap junctions containing Cx37. However, the underlying mechanism is not yet identified. Using channel-forming Cx37 mutants exhibiting partial deletions or amino acid exchanges in their C-terminal loops, we now show that the phosphorylation state of a tyrosine residue at position 332 (Y332) in the C-terminus of Cx37 controls the gap junction-dependent spread of calcium signals. Mass spectra revealed that NO protects Cx37 from dephosphorylation at Y332 by inhibition of the protein tyrosine phosphatase SHP-2. Functionally, the inhibition of gap junctional intercellular communication by NO decreased the spread of the calcium signal (induced by mechanical stimulation of individual endothelial cells) from endothelial to smooth muscle cells in intact vessels, while, at the same time, augmenting the calcium signal spreading within the endothelium. Consequently, preincubation of small resistance arteries with exogenous NO enhanced the endothelium-dependent dilator response to acetylcholine in spite of a pharmacological blockade of NO-dependent cGMP formation by the soluable guanylyl cyclase inhibitor ODQ (1H-[1,2,4]oxadiazolo[4,3-a]quinoxalin-1-one). Our results identify a novel mechanism by which NO can increase the efficacy of calcium, rising vasoactive agonists in the microvascular endothelium."	"Complete Resolution of Lymphoid Interstitial Pneumonia in a Patient With Juvenile Myelomonocytic Leukemia Treated With Allogeneic Bone Marrow Transplant: Killing 2 Birds With 1 Stone. Lymphoid interstitial pneumonia (LIP) is a rare disease characterized by benign reactive polyclonal proliferation of bronchus-associated lymphoid tissue after exposure to inhaled or circulating antigen(s), leading to a disease symptomatology similar to idiopathic interstitial pneumonia. Its association with diseases that are caused due to immune dysregulation (autoimmune diseases, congenital/acquired immunodeficiency, and allogeneic bone marrow transplant) and response to immunomodulatory/suppressive medications suggests an immunologic pathophysiology. Although LIP has been reported in association with lymphoproliferative diseases like Castleman disease, it has never been described in patients with leukemia. We report the first case of LIP in a patient with juvenile myelomonocytic leukemia (JMML) who was found to have a novel germline mutation of unknown significance in additional sex combs-like-1 (ASXL1) gene and a pathogenic somatic mutation of protein tyrosine phosphatase, nonreceptor type 11 (PTPN11) gene at diagnosis. The patient underwent a matched unrelated bone marrow transplant for JMML with complete resolution of JMML and LIP with no recurrence to date. We also emphasize the importance of considering LIP in differential diagnosis of pulmonary lesions seen in conjunction with hematologic malignancies and distinguishing it from malignant infiltration of the lung."	"Yolk sac erythromyeloid progenitors expressing gain of function PTPN11 have functional features of JMML but are not sufficient to cause disease in mice. Accumulating evidence suggests the origin of juvenile myelomonocytic leukemia (JMML) is closely associated with fetal development. Nevertheless, the contribution of embryonic progenitors to JMML pathogenesis remains unexplored. We hypothesized that expression of JMML-initiating PTPN11 mutations in HSC-independent yolk sac erythromyeloid progenitors (YS EMPs) would result in a mouse model of pediatric myeloproliferative neoplasm (MPN). E9.5 YS EMPs from VavCre+;PTPN11<sup>D61Y</sup> embryos demonstrated growth hypersensitivity to granulocyte-macrophage colony-stimulating factor (GM-CSF) and hyperactive RAS-ERK signaling. Mutant EMPs engrafted the spleens of neonatal recipients, but did not cause disease. To assess MPN development during unperturbed hematopoiesis we generated CSF1R-MCM+;PTPN11<sup>E76K</sup> ;ROSA<sup>YFP</sup> mice in which oncogene expression was restricted to EMPs. Yellow fluorescent protein-positive progeny of mutant EMPs persisted in tissues one year after birth and demonstrated hyperactive RAS-ERK signaling. Nevertheless, these mice had normal survival and did not demonstrate features of MPN. YS EMPs expressing mutant PTPN11 demonstrate functional and molecular features of JMML but do not cause disease following transplantation nor following unperturbed development. Developmental Dynamics 246:1001-1014, 2017. © 2017 Wiley Periodicals, Inc."	"Novel mutations and their genotype-phenotype correlations in patients with Noonan syndrome, using next-generation sequencing. Noonan Syndrome (NS) is an autosomal dominant disorder with many variable and heterogeneous conditions. The genetic basis for 20-30% of cases is still unknown. This study evaluates Iranian Noonan patients both clinically and genetically for the first time. Mutational analysis of PTPN11 gene was performed in 15 Iranian patients, using PCR and Sanger sequencing at phase one. Then, as phase two, Next Generation Sequencing (NGS) in the form of targeted resequencing was utilized for analysis of exons from other related genes. Homology modelling for the novel founded mutations was performed as well. The genotype, phenotype correlation was done according to the molecular findings and clinical features. Previously reported mutation (p.N308D) in some patients and a novel mutation (p.D155N) in one of the patients were identified in phase one. After applying NGS methods, known and new variants were found in four patients in other genes, including: CBL (p. V904I), KRAS (p. L53W), SOS1 (p. I1302V), and SOS1 (p. R552G). Structural studies of two deduced novel mutations in related genes revealed deficiencies in the mutated proteins. Following genotype, phenotype correlation, a new pattern of the presence of intellectual disability in two patients was registered. NS shows strong variable expressivity along the high genetic heterogeneity especially in distinct populations and ethnic groups. Also possibly unknown other causative genes may be exist. Obviously, more comprehensive and new technologies like NGS methods are the best choice for detection of molecular defects in patients for genotype, phenotype correlation and disease management."	"PTPN11 induces endoplasmic stress and apoptosis in SH-SY5Y cells. PTPN11 is associated with regulation of growth factor signaling pathways in neuronal cells. Using SH-SY5Y neuroblastoma cells, we showed that adeno-associated virus (AAV)-mediated PTPN11 upregulation was associated with TrkB antagonism, reduced neuritogenesis and enhanced endoplasmic reticulum (ER) stress response leading to apoptotic changes. Genetic knock-down of PTPN11 on the other hand leads to increased TrkB phosphorylation in SH-SY5Y cells. ER stress response induced by PTPN11 upregulation was alleviated pharmacologically by a TrkB agonist. Conversely the enhanced ER stress response induced by TrkB receptor antagonism was ameliorated by PTPN11 suppression, providing evidence of cross-talk of PTPN11 effects with TrkB actions. BDNF treatment of neuronal cells with PTPN11 upregulation also resulted in reduced expression of ER stress protein markers. This study provides evidence of molecular interactions between PTPN11 and the TrkB receptor in SH-SY5Y cells. The results reinforce the role played by PTPN11 in regulating neurotrophin protective signaling in neuronal cells and highlight that PTPN11 dysregulation promotes apoptotic activation. Based on these findings we suggest that blocking PTPN11 could have potential beneficial effects to limit the progression of neuronal loss in neurodegenerative disorders."	"Gain-of-function mutation in PTPN11 in histiocytic sarcomas of Bernese Mountain Dogs. Histiocytic sarcoma (HS) is an aggressive malignant neoplasm of dendritic cell origin that is common in certain breeds of dogs. High prevalence of fatal, disseminated HS has been described in Bernese Mountain Dogs (BMDs). Support for genetic predisposition to develop HS has been presented in several studies, but to date, causative genetic events have not been reported. In addition, no driver mutations have been identified in tumours. Recently, E76K gain-of-function mutation in SHP2 encoded by the PTPN11 gene has been described in human histiocytic malignancies. In our study, we identified the PTPN11<sup>E76K</sup> in HS of BMDs. Amplification of exon 3 of the PTPN11 gene followed by Sanger sequencing was used to detect the mutation and estimate the prevalence in HS from 30 BMDs, 13 Golden Retrievers and 10 other dog breeds. The overall prevalence of PTPN11<sup>E76K</sup> in HS of BMDs was 36.67% compared with 8.69% in other breeds. No mutation was identified in normal tissues from 10 BMDs with HS that carried the mutation and 12 control dogs with no neoplastic disease, including 6 BMDs. Increased immunoreactivity for AKT, phosphorylated ERK1/2 and phosphorylated AKT in a small subset of BMDs with PTPN11<sup>E76K</sup> suggests that a gain-of-function might be mediated by the ERK and AKT pathways. These data suggest PTPN11<sup>E76K</sup> as an important driver mutation of HS in BMDs. This information may not only aid in unravelling the tumourigenic events associated with HS in BMDs, but also help in identifying more promising therapeutic strategies."	"A unique association of Noonan syndrome and 47,XYY syndrome in a male presenting with failure to thrive. We describe a 24-month-old male patient who presented to our Genetics-Endocrinology Clinic with a history of failure to thrive, short stature and cryptorchidism. Soon after birth he was diagnosed with 47,XYY syndrome, but due unusual facial features had further diagnostic workup which revealed Noonan syndrome (NS) as well. This report illustrates significant phenotypic-cytogenetic variability within the clinical presentation of NS and 47,XYY syndrome, as well as the need to investigate patients for other genetic defects when phenotype does not correlate with genotype. Furthermore, in this case, the cellular pathways attenuating growth via PTPN11 mutation appear to supersede the SHOX overdosage-an observation that can lead to further research in genetic mechanisms of growth physiology."	"Mutational profiling of acute myeloid leukemia with normal cytogenetics in Brazilian patients: the value of next-generation sequencing for genomic classification. Karyotype (KT) aberrations are important prognostic factors for acute myeloid leukemia (AML); however, around 50% of cases present normal results. Single nucleotide polymorphism array can detect chromosomal gains, losses or uniparental disomy that are invisible to KT, thus improving patients' risk assessment. However, when both tests are normal, important driver mutations can be detected by the use of next-generation sequencing (NGS). Fourteen adult patients with AML with normal cytogenetics were investigated by NGS for 19 AML-related genes. Every patient presented at least one mutation: DNMT3A in nine patients; IDH2 in six; IDH1 in three; NRAS and NPM1 in two; and TET2, ASXL1, PTPN11, and RUNX1 in one patient. No mutations were found in FLT3, KIT, JAK2, CEBPA, GATA2, TP53, BRAF, CBL, KRAS, and WT1 genes. Twelve patients (86%) had at least one mutation in genes related with DNA methylation (DNMT3A, IDH1, IDH2, and TET2), which is involved in regulation of gene expression and genomic stability. All patients could be reclassified based on genomic status and nine had their prognosis modified. In summary, NGS offers insights into the molecular pathogenesis and biology of cytogenetically normal AML in Brazilian patients, indicating that the prognosis could be further stratified by different mutation combinations. This study shows a different frequency of mutations in Brazilian population that should be confirmed."	"A novel approach using long-read sequencing and ddPCR to investigate gonadal mosaicism and estimate recurrence risk in two families with developmental disorders. De novo mutations contribute significantly to severe early-onset genetic disorders. Even if the mutation is apparently de novo, there is a recurrence risk due to parental germ line mosaicism, depending on in which gonadal generation the mutation occurred. We demonstrate the power of using SMRT sequencing and ddPCR to determine parental origin and allele frequencies of de novo mutations in germ cells in two families whom had undergone assisted reproduction. In the first family, a TCOF1 variant c.3156C&gt;T was identified in the proband with Treacher Collins syndrome. The variant affects splicing and was determined to be of paternal origin. It was present in &lt;1% of the paternal germ cells, suggesting a very low recurrence risk. In the second family, the couple had undergone several unsuccessful pregnancies where a de novo mutation PTPN11 c.923A&gt;C causing Noonan syndrome was identified. The variant was present in 40% of the paternal germ cells suggesting a high recurrence risk. Our findings highlight a successful strategy to identify the parental origin of mutations and to investigate the recurrence risk in couples that have undergone assisted reproduction with an unknown donor or in couples with gonadal mosaicism that will undergo preimplantation genetic diagnosis."	"MPZL1 forms a signalling complex with GRB2 adaptor and PTPN11 phosphatase in HER2-positive breast cancer cells. HER2/ErbB2 is overexpressed in a significant fraction of breast tumours and is associated with a poor prognosis. The adaptor protein GRB2 interacts directly with activated HER2 and is sufficient to transmit oncogenic signals. However, the consequence of HER2 activation on global GRB2 signalling networks is poorly characterized. We performed GRB2 affinity purification combined with mass spectrometry analysis of associated proteins in a HER2+ breast cancer model to delineate GRB2-nucleated protein interaction networks. We report the identification of the transmembrane protein MPZL1 as a new GRB2-associated protein. Our data show that the PTPN11 tyrosine phosphatase acts as a scaffold to bridge the association between GRB2 and MPZL1 in a phosphotyrosine-dependent manner. We further demonstrate that the formation of this MPZL1-PTPN11-GRB2 complex is triggered by cell attachment to fibronectin. Thus, our data support the importance of this new signalling complex in the control of cell adhesion of HER2+ breast cancer cells, a key feature of the metastatic process."	"Inhibitory Activity of Iron Chelators ATA and DFO on MCF-7 Breast Cancer Cells and Phosphatases PTP1B and SHP2. Rapidly-dividing cancer cells have higher requirement for iron compared to non-transformed cells, making iron chelating a potential anticancer strategy. In the present study we compared the anticancer activity of uncommon iron chelator aurintricarboxylic acid (ATA) with the known deferoxamine (DFO). We investigated the impact of ATA and DFO on the viability and proliferation of MCF-7 cancer cells. Moreover we performed enzymatic activity assays and computational analysis of the ATA and DFO effects on pro-oncogenic phosphatases PTP1B and SHP2. ATA and DFO decrease the viability and proliferation of breast cancer cells, but only ATA considerably reduces the activity of PTP1B and SHP2 phosphatases. Our studies indicated that ATA strongly inactivates and binds in the PTP1B and SHP2 active site, interacting with arginine residue essential for enzyme activity. We confirmed that iron chelating can be considered as a potential strategy for the adjunctive treatment of breast cancer."	"Distinct Patterns of Acral Melanoma Based on Site and Relative Sun Exposure. Acral melanoma is distinct from melanoma of other cutaneous sites, yet there is considerable variation within this category. To better define this variation, we assessed melanomas occurring on dorsal (n = 21), volar (n = 9), and subungual/interdigital (n = 13) acral skin as well as acral nevi (n = 24) for clinical, histologic, and molecular features. Melanomas on dorsal acral surfaces demonstrated clear differences compared with volar and subungual/interdigital melanomas. The latter two groups exhibited significantly less frequent BRAF mutations (P = 0.01), were significantly less likely to have the superficial spreading histologic subtype (P = 0.01), occurred in older patients (P = 0.05), and had more frequent involvement in non-Caucasians (P = 0.01). These differences can be explained by differing levels of UV exposure. Subungual/interdigital melanomas had the most diverse group of oncogenic mutations including PIK3CA (2/13), STK11 (2/13), EGFR (1/13), FGFR3 (1/13), and PTPN11 (1/13). In addition, subungual/interdigital melanomas had a significantly higher frequency of copy number aberrations (67%) than other subgroups (P = 0.02), particularly in CDK4 and cyclin D1, and were less likely to have BRAF mutations or a superficial spreading histologic subtype (P = 0.05) compared with volar acral melanomas. Although based on a limited sample size, differences between volar and subungual/interdigital melanomas in our study may be the result of differing levels of UV exposure."	"Clinical, pathological and dermoscopic characteristics of cutaneous lesions in LEOPARD syndrome. NA"	"Mutational status of NRAS, KRAS, and PTPN11 genes is associated with genetic/cytogenetic features in children with B-precursor acute lymphoblastic leukemia. We aimed to investigate the frequencies and the association with genetic/cytogenetic abnormalities as well as prognostic relevance of RAS pathway mutations in Taiwanese children with B-precursor acute lymphoblastic leukemia (ALL), the largest cohort in Asians. Between 1995 and 2012, marrow samples at diagnosis from 535 children were studied for NRAS, KRAS, and PTPN11 mutations. The mutational status of each gene was correlated with the clinico-hematological features, recurrent genetic abnormalities, and outcomes for those treated with TPOG-ALL-2002 protocol (n = 346). The frequencies of NRAS, KRAS, and PTPN11 mutations were 10.8% (57/530), 10.2% (54/530), and 3.0% (16/526), respectively. NRAS mutations were associated with a higher frequency of hyperdiploidy (P = 0.01) and lower frequency of ETV6-RUNX1 (P &lt; 0.01), whereas KRAS mutations were associated with younger age (P &lt; 0.01), a higher frequency of KMT2A rearranged (P &lt; 0.01) but no significant difference if infants with ALL were excluded, and inferior event-free survival (66.6% vs. 80.5%, P = 0.04). None of patients with TCF3-PBX1 had KRAS mutation (P = 0.02). Our study showed that the frequency of KRAS mutations in Taiwan was significantly higher than that reported in Caucasians. The occurrence of RAS pathway mutations was associated with recurrent genetic/cytogenetic abnormalities in pediatric B-precursor ALL."	"SHP2 regulates proliferation and tumorigenicity of glioma stem cells. SHP2 is a cytoplasmic protein tyrosine phosphatase (PTPase) involved in multiple signaling pathways and was the first identified proto-oncogene PTPase. Previous work in glioblastoma (GBM) has demonstrated the role of SHP2 PTPase activity in modulating the oncogenic phenotype of adherent GBM cell lines. Mutations in PTPN11, the gene encoding SHP2, have been identified with increasing frequency in GBM. Given the importance of SHP2 in developing neural stem cells, and the importance of glioma stem cells (GSCs) in GBM oncogenesis, we explored the functional role of SHP2 in GSCs. Using paired differentiated and stem cell primary cultures, we investigated the association of SHP2 expression with the tumor stem cell compartment. Proliferation and soft agar assays were used to demonstrate the functional contribution of SHP2 to cell growth and transformation. SHP2 expression correlated with SOX2 expression in GSC lines and was decreased in differentiated cells. Forced differentiation of GSCs by removal of growth factors, as confirmed by loss of SOX2 expression, also resulted in decreased SHP2 expression. Lentiviral-mediated knockdown of SHP2 inhibited proliferation. Finally, growth in soft-agar was similarly inhibited by loss of SHP2 expression. Our results show that SHP2 function is required for cell growth and transformation of the GSC compartment in GBM."	"SHP2 is required for BCR-ABL1-induced hematologic neoplasia. BCR-ABL1-targeting tyrosine kinase inhibitors (TKIs) have revolutionized treatment of Philadelphia chromosome-positive (Ph<sup>+</sup>) hematologic neoplasms. Nevertheless, acquired TKI resistance remains a major problem in chronic myeloid leukemia (CML), and TKIs are less effective against Ph<sup>+</sup> B-cell acute lymphoblastic leukemia (B-ALL). GAB2, a scaffolding adaptor that binds and activates SHP2, is essential for leukemogenesis by BCR-ABL1, and a GAB2 mutant lacking SHP2 binding cannot mediate leukemogenesis. Using a genetic loss-of-function approach and bone marrow transplantation models for CML and BCR-ABL1<sup>+</sup> B-ALL, we show that SHP2 is required for BCR-ABL1-evoked myeloid and lymphoid neoplasia. Ptpn11 deletion impairs initiation and maintenance of CML-like myeloproliferative neoplasm, and compromises induction of BCR-ABL1<sup>+</sup> B-ALL. SHP2, and specifically, its SH2 domains, PTP activity and C-terminal tyrosines, are essential for BCR-ABL1<sup>+</sup>, but not WT, pre-B-cell proliferation. The mitogen-activated protein kinase kinase (MEK) / extracellular signal-regulated kinase (ERK) pathway is regulated by SHP2 in WT and BCR-ABL1<sup>+</sup> pre-B cells, but is only required for the proliferation of BCR-ABL1<sup>+</sup> cells. SHP2 is required for SRC family kinase (SFK) activation only in BCR-ABL1<sup>+</sup> pre-B cells. RNAseq reveals distinct SHP2-dependent transcriptional programs in BCR-ABL1<sup>+</sup> and WT pre-B cells. Our results suggest that SHP2, via SFKs and ERK, represses MXD3/4 to facilitate a MYC-dependent proliferation program in BCR-ABL1-transformed pre-B cells."	"RAF1 variants causing biventricular hypertrophic cardiomyopathy in two preterm infants: further phenotypic delineation and review of literature. Noonan syndrome (NS) is an autosomal dominant disorder characterized by distinctive facial features, short neck, short stature, congenital heart defects, pectus deformities, and variable developmental delays. NS is genetically heterogeneous as pathogenic variants in several genes involved in the Ras/mitogen-activated protein kinase pathway have been associated with a NS phenotype. Overall, 50% of patients harbor pathogenic variants in PTPN11, whereas 3-17% of patients have variants in RAF1. We present two premature neonates with progressive biventricular hypertrophy found to have RAF1 variants in the CR2 domain. Molecular testing in patient 1 revealed a missense variant of a highly conserved residue c.782 C&gt;G (p.P261R). This variant has been reported once with fatal outcome. Patient 2 also had a missense variant in a highly conserved neighboring residue c.770 C&gt;T (p.S257L). This variant has been previously reported, most recently associated with the development of pulmonary arterial hypertension. Both our patients had prenatal findings of polyhydramnios, short long bones, hydrops fetalis, and cardiac anomalies with progressive biventricular hypertrophic cardiomyopathy. Both patients had a lethal outcome. Our findings further support the pathogenicity and lethality of p.P261R, and the need to monitor for pulmonary arterial hypertension in p.S257L. In addition, the second patient was presented with progressive hydrocephalus due to aqueductal stenosis. This could be related to the NS phenotype. More cases with this association are needed to confirm this finding."	"Src homology 2 domain-containing phosphotyrosine phosphatase 2 (Shp2) controls surface GluA1 protein in synaptic homeostasis. Src Homology 2 domain-containing phosphotyrosine phosphatase 2 (Shp2) functions in synaptic plasticity, learning, and memory. However, the precise mechanisms by which this multifunctional protein contributes to synaptic function remains largely unknown. Homeostatic plasticity may be viewed as a process of bidirectional synaptic scaling, up or down. Through this process, neuronal circuitry stability is maintained so that changes in synaptic strength may be preserved under changing conditions. A better understanding of these processes is needed. In this regard, we report that phosphorylation of Shp2 at tyrosine 542 and its translocation to the postsynaptic compartment are integral processes in synaptic scaling. Furthermore, we show, using both pharmacological and genetic approaches, that Shp2 phosphatase activity is critical to the regulation of Ser(P)<sup>845</sup> GluA1 and surface expression of this AMPA receptor subunit during synaptic scaling. Thus, Shp2 may contribute meaningfully to synaptic homeostasis."	"Cardiac defects, morbidity and mortality in patients affected by RASopathies. CARNET study results. RASopathies are developmental disease caused by mutations in genes encoding for signal transducers of the RAS-MAPK cascade. The aim of the present study was to provide a comprehensive description of morbidity and mortality in patients with molecularly confirmed RASopathy. A multicentric, observational, retrospective study was conducted in seven European cardiac centres participating to the CArdiac Rasopathy NETwork (CARNET). Clinical records of 371 patients with confirmed molecular diagnosis of RASopathy were reviewed. Mortality was described as crude mortality, cumulative survival and restricted estimated mean survival. Multivariable regression analysis was used to assess the impact of mutated genes on number of interventions and overall prognosis. Cardiac defects occurred in 80.3% of cases, almost half of them underwent at least one intervention. Overall, crude mortality was 0.29/100 patients-year. Cumulative survival was 98.8%, 98.2%, 97.7%, 94.3%, at 1, 5, 10, and 20years, respectively. Restricted estimated mean survival at 20years follow-up was 19.6years. Ten patients died (2.7% of the entire cohort; 3.4% of patients with cardiac defect). Patients with hypertrophic cardiomyopathy (HCM) and age &lt;2years or young adults, as well as subjects with biventricular obstruction and PTPN11 mutations had a higher risk of cardiac death. The risk of intervention was higher in individuals with Noonan syndrome and pulmonary stenosis carrying PTPN11 mutations. Overall, mortality was relatively low, even though the specific association between HCM, biventricular outflow tract obstructions and PTPN11 mutations appeared to be associated with early mortality, including immediate post-operative events and sudden death."	"Reciprocal regulation of TLR2-mediated IFN-β production by SHP2 and Gsk3β. Toll-like receptor 2 (TLR2) mediates the innate immune response to bacterial lipopeptides and peptidoglycans by stimulating the production of inflammatory cytokines. However, the mechanisms by which TLR2 signaling regulates type I interferon (IFN)-β production are poorly understood. Here, we identified Src homology 2-containing protein tyrosine phosphatase 2 (SHP2) as a negative regulator of TLR2-induced IFN-β production. Pharmacological inhibition or reduced expression of SHP2 potentiated TLR2 agonist-mediated IFN-β transcription and STAT1 activation, whereas overexpression of SHP2 impaired IFN-β transcription and STAT1 activation. SHP2 physically associated with the glycogen synthase kinase 3β (Gsk3β) in an agonist-dependent manner. Gsk3β positively regulates transcription of IFN-β following TLR2 stimulation by inhibiting the phosphorylation of SHP2. SHP2 inhibited the transcriptional activity of IRF-1 and IRF-8 at the IFN-β promoter. Remarkably, IRF-1 and IRF-8 are recruited to the IFN-β promoter in a SHP2 phosphatase activity-dependent manner. These findings provide insight into the mechanisms by which SHP2 and Gsk3β work together to modulate TLR2-mediated IFN-β production in macrophages."	"CCL3 is a key mediator for the leukemogenic effect of Ptpn11-activating mutations in the stem-cell microenvironment. NA"	"miR-500a-3p promotes cancer stem cells properties via STAT3 pathway in human hepatocellular carcinoma. miR-500a-3p has been demonstrated to be involved in the development, progression and metastasis in several human cancers. Constitutive activation of JAK/STAT3 signaling pathway has been reported to play an important role in the development and progression of hepatocellular carcinoma (HCC).The purpose of this study was to determine the biological roles and clinical significance of miR-500a-3p in HCC and to identify whether miR-500a-3p has an effect on the activity of JAK/STAT3 signaling in HCC. miR-500a-3p expression was examined by real-time PCR in 8 paired HCC tissues and individual 120 HCC tissues respectively. Statistical analysis was performed to explore the clinical correlation between miR-500a-3p expression and clinicopathological features and overall and relapse-free survival in HCC patients. In vitro and in vivo assays were performed to investigate the biological roles of miR-500a-3p in HCC. The bioinformatics analysis, real-time PCR, western blot and luciferase reporter assay were performed to discern and examine the relationship between miR-500a-3p and its potential targets. Clinical correlation of miR-500a-3p with its targets was examined in HCC tissues. miR-500a-3p is dramatically elevated in HCC tissues and cells and high expression of miR-500a-3p correlates with poor overall and relapse-free survival in HCC patients. Upregulating miR-500a-3p enhances, while silencing miR-500a-3p suppresses, the spheroid formation ability, fraction of side population and expression of cancer stem cell factors in vitro and tumorigenicity in vivo in HCC cells. Our findings further reveal miR-500a-3p promotes the cancer stem cell characteristics via targeting multiple negative regulators of JAK/STAT3 signaling pathway, including SOCS2, SOCS4 and PTPN11, leading to constitutive activation of STAT3 signaling. Moreover, the inhibitory effects of anti-miR-500a-3p on cancer stem cell phenotypes and activity of STAT3 signaling were reversed by silencing SOCS2, SOCS4 and PTPN11 in miR-500a-3p-downexpressing cells, respectively. Clinical correlation of miR-500a-3p with the targets was examined in human HCC tissues. our results uncover a novel mechanism by which miR-500a-3p promotes the stemness maintenance of cancer stem cell in HCC, suggesting that silencing miR-500a-3p may serve as a new therapeutic strategy in the treatment of hepatocellular carcinoma."	"[Multiple granular cell tumours in a patient with Noonan's syndrome and juvenile myelomonocytic leukaemia]. Granular cell tumour (GCT) is a rare form of tumour comprising Schwann cells. Herein, we report a case of a child presenting Noonan syndrome complicated by juvenile myelomonocytic leukaemia (JMML) and who also developed a multiple form of GCT. We discussed the molecular mechanisms that might account for this association. A six-year-old boy with Noonan syndrome complicated by JMML presented three asymptomatic subcutaneous nodules on his back, forearm and neck. Histological analysis revealed GCT. A literature review revealed seven cases of Noonan syndrome presenting GCT, none of which were associated with JMML. Mutation of gene PTPN11, via hyperactivation of intracellular Ras signalling may cause the development of GCT and JMML in children presenting Noonan syndrome. Detailed clinical examination is recommended in children presenting GCT to screen for multiple forms and for signs of malformation suggestive of a genetic syndrome. Ours is the first case to be described of Noonan syndrome complicated by JMML associated with multiple GCT. This association once again raises the important question of the role of the Ras-MAPK signalling pathway in the development of benign and malignant tumours of solid organs or blood, associated with genetic syndromes."	"Endothelial cell SHP-2 negatively regulates neutrophil adhesion and promotes transmigration by enhancing ICAM-1-VE-cadherin interaction. Intercellular adhesion molecule-1 (ICAM-1) mediates the firm adhesion of leukocytes to endothelial cells and initiates subsequent signaling that promotes their transendothelial migration (TEM). Vascular endothelial (VE)-cadherin plays a critical role in endothelial cell-cell adhesion, thereby controlling endothelial permeability and leukocyte transmigration. This study aimed to determine the molecular signaling events that originate from the ICAM-1-mediated firm adhesion of neutrophils that regulate VE-cadherin's role as a negative regulator of leukocyte transmigration. We observed that ICAM-1 interacts with Src homology domain 2-containing phosphatase-2 (SHP-2), and SHP-2 down-regulation via silencing of small interfering RNA in endothelial cells enhanced neutrophil adhesion to endothelial cells but inhibited neutrophil transmigration. We also found that VE-cadherin associated with the ICAM-1-SHP-2 complex. Moreover, whereas the activation of ICAM-1 leads to VE-cadherin dissociation from ICAM-1 and VE-cadherin association with actin, SHP-2 down-regulation prevented ICAM-1-VE-cadherin association and promoted VE-cadherin-actin association. Furthermore, SHP-2 down-regulation in vivo promoted LPS-induced neutrophil recruitment in mouse lung but delayed neutrophil extravasation. These results suggest that SHP-2-via association with ICAM-1-mediates ICAM-1-induced Src activation and modulates VE-cadherin switching association with ICAM-1 or actin, thereby negatively regulating neutrophil adhesion to endothelial cells and enhancing their TEM.-Yan, M., Zhang, X., Chen, A., Gu, W., Liu, J., Ren, X., Zhang, J., Wu, X., Place, A. T., Minshall, R. D., Liu, G. Endothelial cell SHP-2 negatively regulates neutrophil adhesion and promotes transmigration by enhancing ICAM-1-VE-cadherin interaction."	"Familial melanoma-astrocytoma syndrome: synchronous diffuse astrocytoma and pleomorphic xanthoastrocytoma in a patient with germline CDKN2A/B deletion and a significant family history. Familial melanoma-astrocytoma syndrome is a tumor predisposition syndrome caused by inactivating germline alteration of the &lt;italic&gt;CDKN2A&lt;/italic&gt; tumor suppressor gene on chromosome 9p21. While some families with germline &lt;italic&gt;CDKN2A&lt;/italic&gt; mutations are prone to development of just melanomas, other families develop both melanomas, astrocytomas, and occasionally other nervous-system neoplasms including peripheral nerve sheath tumors and meningiomas. The histologic spectrum of the astrocytomas that arise as part of this syndrome is not well described, nor are the additional genetic alterations that drive these astrocytomas apart from the germline &lt;italic&gt;CDKN2A&lt;/italic&gt; inactivation. Herein, we report the case of a young man with synchronous development of a pleomorphic xanthoastrocytoma, diffuse astrocytoma, and paraspinal mass radiographically consistent with a peripheral nerve sheath tumor. His paternal family history is significant for melanoma, glioblastoma, and oral squamous cell carcinoma. Genomic profiling revealed that he harbors a heterozygous deletion in the germline of chromosome 9p21.3 encompassing the &lt;italic&gt;CDKN2A&lt;/italic&gt; and &lt;italic&gt;CDKN2B&lt;/italic&gt; tumor suppressor genes. Both the pleomorphic xanthoastrocytoma and diffuse astrocytoma were found to have homozygous deletion of &lt;italic&gt;CDKN2A/B&lt;/italic&gt; due to somatic loss of the other copy of chromosome 9p containing the remaining intact alleles. Additional somatic alterations included &lt;italic&gt;BRAF&lt;/italic&gt; p.V600E mutation in the pleomorphic xanthoastrocytoma and &lt;italic&gt;PTPN11&lt;/italic&gt;, &lt;italic&gt;ATRX&lt;/italic&gt;, and &lt;italic&gt;NF1&lt;/italic&gt; mutations in the diffuse astrocytoma. The presence of germline &lt;italic&gt;CDKN2A/B&lt;/italic&gt; inactivation together with the presence of multiple anatomically, histologically, and genetically distinct astrocytic neoplasms, both with accompanying somatic loss of heterozygosity for the &lt;italic&gt;CDKN2A/B&lt;/italic&gt; deletion, led to a diagnosis of familial melanoma-astrocytoma syndrome. This remarkable case illustrates the histologic and genetic diversity that astrocytomas arising as part of this rare glioma predisposition syndrome can demonstrate.
."	"Noonan syndrome with multiple lentigines with PTPN11 (T468M) gene mutation accompanied with solitary granular cell tumor. NA"	"The co-regulatory networks of tumor suppressor genes, oncogenes, and miRNAs in colorectal cancer. Tumor suppressor genes (TSGs) and oncogenes (OG) are involved in carcinogenesis. MiRNAs also contribute to cellular pathways leading to cancer. We use data from 217 colorectal cancer (CRC) cases to evaluate differences in TSGs and OGs expression between paired CRC and normal mucosa and evaluate how TSGs and OGs are associated with miRNAs. Gene expression data from RNA-Seq and miRNA expression data from Agilent Human miRNA Microarray V19.0 were used. We focus on genes most strongly associated with CRC (fold change (FC) of ≥1.5 or ≤0.67) that were statistically significant after adjustment for multiple comparisons. Of the 74 TSGs evaluated, 22 were associated with carcinoma/normal mucosa differential expression. Ten TSGs were up-regulated (FAM123B, RB1, TP53, RUNX1, MSH2, BRCA1, BRCA2, SOX9, NPM1, and RNF43); six TSGs were down-regulated (PAX5, IZKF1, GATA3, PRDM1, TET2, and CYLD); four were associated with MSI tumors (MLH1, PTCH1, and CEBPA down-regulated and MSH6 up-regulated); and two were associated with MSS tumors (PHF6 and ASXL1 up-regulated). Thirteen of these TSGs were associated with 44 miRNAs. Twenty-seven of the 59 OGs evaluated were dysregulated: 14 down-regulated (KLF4, BCL2, SSETBP1, FGFR2, TSHR, MPL, KIT, PDGFRA, GNA11, GATA2, FGFR3, AR, CSF1R, and JAK3), seven up-regulated (DNMT1, EZH2, PTPN11, SKP2, CCND1, MET, and MYC); three down-regulated for MSI (FLT3, CARD11, and ALK); two up-regulated for MSI (IDH2 and HRAS); and one up-regulated with MSS tumors (CTNNB1). These findings suggest possible co-regulatory function between TSGs, OGs, and miRNAs, involving both direct and indirect associations that operate through feedback and feedforward loops."	"Craniosynostosis in patients with RASopathies: Accumulating clinical evidence for expanding the phenotype. RASopathies are phenotypically overlapping genetic disorders caused by dysregulation of the RAS/mitogen-activated protein kinase (MAPK) signaling pathway. RASopathies include Noonan syndrome, cardio-facio-cutaneous (CFC) syndrome, Costello syndrome, Neurofibromatosis type 1, Legius syndrome, Noonan syndrome with multiple lentigines, Noonan-like syndrome, hereditary gingival fibromatosis, and capillary malformation/arteriovenous malformation syndrome. Recently, six patients with craniosynostosis and Noonan syndrome involving KRAS mutations were described in a review, and a patient with craniosynostosis and Noonan syndrome involving a SHOC2 mutation has also been reported. Here, we describe patients with craniosynostosis and Noonan syndrome due to de novo mutations in PTPN11 and patients with craniosynostosis and CFC syndrome due to de novo mutations in BRAF or KRAS. All of these patients had cranial deformities in addition to the typical phenotypes of CFC syndrome and Noonan syndrome. In RASopathy, patients with cranial deformities, further assessments may be necessary to look for craniosynostosis. Future studies should attempt to elucidate the pathogenic mechanism responsible for craniosynostosis mediated by the RAS/MAPK signaling pathway."	"SHP-2 Activating Mutation Promotes Malignant Biological Behaviors of Glioma Cells. BACKGROUND This study investigated the mechanism underlying the activating mutation of SHP-2 in promoting malignant biological behaviors of glioma cells. MATERIAL AND METHODS The SHP-2 empty plasmid pcDNA3.1 and SHP-2 activating mutation plasmid pcDNA3.1 SHP-2 D61G mutant eukaryotic expression vectors were designed; stable SHP-2-expressing cells transfected with pcDNA3.1 SHP-2 D61G mutant were set as the mutation group; cells transfected with pcDNA3.1 were set as the empty vector group; and cells without transfection were set as the control group. The cell reproductive capacity in each group was measured by MTT method. The invasion ability of cells in vitro was detected by Transwell chamber assay, the cell apoptosis in each group was detected by Annexin-V/PE dual-staining method, and the clone formation ability of cells in vitro was detected by Tablet clone-forming assay. The activation of ERK1/2, ARK, and p38MAPK signal pathways in each group was determined by Western blot. RESULTS After transfection, the expression of SHP-2 protein in the mutant group was significantly higher than that in the control group and empty vector group. The proliferation ability of transfected cells, the apoptosis rate, the invasion ability, and the expression levels of phosphorylated ERK1/2, AKT, and p38 in the mutation group was significantly higher than in the empty vector group and the control group (P&lt;0.05). Moreover, the cell clone formation ability of the mutation group was obviously enhanced (P&lt;0.05). CONCLUSIONS The activating mutation of SHP-2 can lead to malignant changes in biological behaviors of glioma cells, and the specific mechanism may be related to the activation of ERK1/2, AKT, and p38 signal pathway. SHP-2 protein may become a new target for anti-malignant transformation of glioma."	"Recommendations for Cancer Surveillance in Individuals with RASopathies and Other Rare Genetic Conditions with Increased Cancer Risk. In October 2016, the American Association for Cancer Research held a meeting of international childhood cancer predisposition syndrome experts to evaluate the current knowledge of these syndromes and to propose consensus surveillance recommendations. Herein, we summarize clinical and genetic aspects of RASopathies and Sotos, Weaver, Rubinstein-Taybi, Schinzel-Giedion, and NKX2-1 syndromes as well as specific metabolic disorders known to be associated with increased childhood cancer risk. In addition, the expert panel reviewed whether sufficient data exist to make a recommendation that all patients with these disorders be offered cancer surveillance. For all syndromes, the panel recommends increased awareness and prompt assessment of clinical symptoms. Patients with Costello syndrome have the highest cancer risk, and cancer surveillance should be considered. Regular physical examinations and complete blood counts can be performed in infants with Noonan syndrome if specific PTPN11 or KRAS mutations are present, and in patients with CBL syndrome. Also, the high brain tumor risk in patients with L-2 hydroxyglutaric aciduria may warrant regular screening with brain MRIs. For most syndromes, surveillance may be needed for nonmalignant health problems. Clin Cancer Res; 23(12); e83-e90. ©2017 AACRSee all articles in the online-only CCR Pediatric Oncology Series."	"Hotspots in PTPN11 Gene Among Indian Children With Noonan Syndrome. To test for PTPN11 mutations in clinically diagnosed cases of Noonan syndrome. 17 individuals with clinical diagnosis of Noonan syndrome were included in the study. Sanger sequencing of all the 15 exons of PTPN11 was done. A genotype-phenotype correlation was attempted. Mutation in PTPN11 was detected in 11 out of 17 (64.7%) patients with Noonan syndrome; 72% had mutation in exon 3 and 27 % had mutation in exon 13. PTPN11 mutation accounts for 64.7% of cases with clinical features of Noonan syndrome in India. Majority of the mutations are in exon 3 and exon 13 of PTPN11, making them the hotspots in Indian population."	"A mutation in PTPN11 may drive leukemic transformation in a case of essential thrombocythemia. NA"	"In vivo efficacy of the AKT inhibitor ARQ 092 in Noonan Syndrome with multiple lentigines-associated hypertrophic cardiomyopathy. Noonan Syndrome with Multiple Lentigines (NSML, formerly LEOPARD syndrome) is an autosomal dominant &quot;RASopathy&quot; disorder manifesting in congenital heart disease. Most cases of NSML are caused by catalytically inactivating mutations in the protein tyrosine phosphatase (PTP), non-receptor type 11 (PTPN11), encoding the SH2 domain-containing PTP-2 (SHP2) protein. We previously generated knock-in mice harboring the PTPN11 mutation Y279C, one of the most common NSML alleles; these now-termed SHP2Y279C/+ mice recapitulate the human disorder and develop hypertrophic cardiomyopathy (HCM) by 12 weeks of age. Functionally, heart and/or cardiomyocyte lysates from SHP2Y279C/+ mice exhibit increased basal and agonist-induced AKT and mTOR activities. Here, we sought to determine whether we could reverse the hypertrophy in SHP2Y279C/+ mice using ARQ 092, an oral and selective allosteric AKT inhibitor currently in clinical trials for patients with PI3K/AKT-driven tumors or Proteus syndrome. We obtained echocardiographs of SHP2Y279C/+ and wildtype (SHP2+/+) littermates, either in the presence or absence of ARQ 092 at 12, 14, and 16 weeks of age. While SHP2Y279C/+ mice developed significant left ventricular hypertrophy by 12 weeks, as indicated by decreased chamber dimension and increased posterior wall thickness, treatment of SHP2Y279C/+ mice with ARQ 092 normalized the hypertrophy in as early as 2 weeks following treatment, with hearts comparable in size to those in wildtype (SHP2+/+) mice. In addition, we observed an increase in fractional shortening (FS%) in SHP2Y279C/+ mice, an effect of increased compensatory hypertrophy, which was not apparent in SHP2Y279C/+ mice treated with ARQ 092, suggesting functional improvement of HCM upon treatment with the AKT inhibitor. Finally, we found that ARQ 092 specifically inhibited AKT activity, as well as its downstream effectors, PRAS and S6RP in NSML mice. Taken together, these data suggest ARQ 092 may be a promising novel therapy for treatment of hypertrophy in NSML patients."	"Antibody blockade of CLEC12A delays EAE onset and attenuates disease severity by impairing myeloid cell CNS infiltration and restoring positive immunity. The mechanism of dendritic cells (DCs) recruitment across the blood brain barrier (BBB) during neuroinflammation has been the least explored amongst all leukocytes. For cells of myeloid origin, while integrins function at the level of adhesion, the importance of lectins remains unknown. Here, we identified functions of one C-type lectin receptor, CLEC12A, in facilitating DC binding and transmigration across the BBB in response to CCL2 chemotaxis. To test function of CLEC12A in an animal model of multiple sclerosis (MS), we administered blocking antibody to CLEC12A that significantly ameliorated disease scores in MOG35-55-induced progressive, as well as PLP138-151-induced relapsing-remitting experimental autoimmune encephalomyelitis (EAE) mice. The decline in both progression and relapse of EAE occurred as a result of reduced demyelination and myeloid cell infiltration into the CNS tissue. DC numbers were restored in the spleen of C57BL/6 and peripheral blood of SJL/J mice along with a decreased TH17 phenotype within CD4<sup>+</sup> T-cells. The effects of CLEC12A blocking were further validated using CLEC12A knockout (KO) animals wherein EAE disease induction was delayed and reduced disease severity was observed. These studies reveal the utility of a DC-specific mechanism in designing new therapeutics for MS."	"Fluid shear stress combined with shear stress spatial gradients regulates vascular endothelial morphology. High shear stress (SS) causes local changes around arterial bifurcations, which are common sites for cerebral aneurysms. High SS and SS spatial gradient (SSG) are thought to play important roles in the pathology of cerebral aneurysms. However, whether SS and SSG independently affect the function and morphology of vascular endothelial cells (ECs) exposed to fluid flow remains unclear. This study evaluated the morphology of ECs exposed to various SS and SSG combinations. Confluent ECs were exposed to a SS of 2-60 Pa and a uniform SSG of 0, 5, 10, or 15 Pa mm<sup>-1</sup> for 24 h. Although ECs exposed to lower levels of SS/SSG were not oriented or elongated in the direction of flow, they began to exhibit orientation, elongation, and development of actin stress fibers under the conditions of SS with a SSG when the SS exceeded a threshold value depending on the magnitude of SSG. Using a simplified computational model, we found that the presence of a SSG affects the strain field in ECs, resulting in a morphological response. SS combined with a SSG can alter the localization of SS mechano-sensing proteins along the strain field as a result of shear flow. Our results suggest that the magnitude of the relationship between SS and SSG plays an important role in regulating morphological changes in ECs in response to fluid flow by regulating EC polarity."	"Proteomic responses to elevated ocean temperature in ovaries of the ascidian Ciona intestinalis. Ciona intestinalis, a common sea squirt, exhibits lower reproductive success at the upper extreme of the water temperatures it experiences in coastal New England. In order to understand the changes in protein expression associated with elevated temperatures, and possible response to global temperature change, we reared C. intestinalis from embryos to adults at 18°C (a temperature at which they reproduce normally at our collection site in Rhode Island) and 22°C (the upper end of the local temperature range). We then dissected ovaries from animals at each temperature, extracted protein, and measured proteomic levels using shotgun mass spectrometry (LC-MS/MS). 1532 proteins were detected at a 1% false discovery rate present in both temperature groups by our LC-MS/MS method. 62 of those proteins are considered up- or down-regulated according to our statistical criteria. Principal component analysis shows a clear distinction in protein expression pattern between the control (18°C) group and high temperature (22°C) group. Similar to previous studies, cytoskeletal and chaperone proteins are upregulated in the high temperature group. Unexpectedly, we find evidence that proteolysis is downregulated at the higher temperature. We propose a working model for the high temperature response in C. intestinalis ovaries whereby increased temperature induces upregulation of signal transduction pathways involving PTPN11 and CrkL, and activating coordinated changes in the proteome especially in large lipid transport proteins, cellular stress responses, cytoskeleton, and downregulation of energy metabolism."	"Current diagnosis and treatment for myelodysplastc syndromes. Genetic analysis of myelodysplastic syndrome (MDS) using next-generation sequencing yields medcially important information, showing gene mutations in 90% of MDS cases. The World Health Organization (WHO) classification was revised in 2016 to incorporate SF3B1 gene mutations, frequently seen in MDS with ringed sideroblasts, into the diagnostic criteria. Unlike the poor prognosis seen in cases with ASXL1, EZH2, RUNX1 and in particular, TP53 MDS-related mutations, SF3B1 gene mutations show a favorable prognosis. In low-risk patients such as these, darbepoetin treatment is an option. Moreover, the CSNK1A1 gene is known to play a role in the mechanism of action of lenalidomide. Hematopoietic stem cell transplantation is the only curable treatment for MDS, but azacitidine (AZA) is administered to high-risk patients who are not candidates for transplantation, a situation that remains unchanged. Even with allogeneic hematopoietic cell transplantation, the prognosis is poor with TET2, DNMT3A, ASXL1, RUNX1, and TP53 mutations, with survival time being significantly shorter with TP53 and PTPN11 mutations, regardless of the responsiveness to AZA. In the case of TP53 mutations, prognosis is poor for both hematopoietic stem cell transplantation and AZA treatment, although, patients with TP53 mutations have been shown to respond favorably to decitabine administration for 10 days. It is thought that the importance of genetic screening and its role in treatment decisions for MDS will further increase with time."	"Cochlear implantation and clinical features in patients with Noonan syndrome and Noonan syndrome with multiple lentigines caused by a mutation in PTPN11. Existing literature only reports a few patients with Noonan syndrome (NS) and Noonan syndrome with multiple lentigines (NSML) who underwent cochlear implantation (CI). The present study describes four NS patients and one NSML patient with a PTPN11 mutation. They all had severe to profound hearing loss, and they received a CI. The age at which the CI surgery occurred ranged from 1 to 13 years old, and the audiological results in all five patients improved after the CI. Otological and audiological examinations in NS and NSML are important, and for those with severe hearing loss, the CI surgery improved the audiological outcome regardless of age."	"Deletion of Shp2 in bronchial epithelial cells impairs IL-25 production in vitro, but has minor influence on asthmatic inflammation in vivo. Shp2 played an important role in cigarette-smoke-mediated inflammation, surfactant homeostasis and asthmatic airway remodeling. However, whether shp2 plays a key role in epithelium-associated allergic reaction is still unknown. In this study, LPS and OVA were observed to induce the production of IL-25 in bronchial epithelial cells in vitro via the activation of MAPK p38 and JNK. Furthermore, blockage of Shp2 by its specific inhibitor PHPS1 or by siRNA-mediated depletion was found to reduce the production of IL-25 in epithelial cells as well as the up-regulated LPS-triggered activation of JNK but not p38. To confirm the role of intra-bronchial epithelial Shp2 in OVA-induced allergic reaction, we generated CC10-rtTA/(tetO)7-Cre/Shp2f/f mice, where Shp2 was conditionally knocked out in bronchial epithelial cells. Surprisingly, specific deletion of Shp2 in bronchial epithelial cells showed a mild but insignificant effect on the expressions of epithelium-derived cytokines as well as TH2 and TH17 polarization following allergen-induced murine airway inflammation. Collectively, our data suggested that deletion of Shp2 impaired IL-25 production in bronchial epithelial cells in vitro, but might yet have minor influence on OVA-induced allergic reaction in vivo."	"Molecular Characterization of Pediatric Acute Myeloid Leukemia: Results of a Multicentric Study in Brazil. The biological characterization of childhood acute myeloid leukemia (c-AML) is an important outcome predictor. In Brazil, very little is known about the frequency of AML subgroups, although c-AML accounts for about 18% of leukemias. We carried out this study to investigate the contribution of type I and II gene mutations in the probability of overall survival (pOS) of c-AML in Brazil. Seven hundred and three de novo pediatric AML cases (2000-2015) were assessed throughout a multicentric network study. Mutations in hotspot regions of FLT3, NRAS, KRAS, PTPN11, and c-KIT genes were analyzed as well as fusion genes (RUNX1-RUNX1T1, MLL/KMT2A-r, CBFβ-MYH11, and PML-RARα) associated with AML. Patients were treated out of the clinical trial although following the BFM-AML2004 protocol. Acute promyelocytic leukemia (APL) was treated differently. AML with Down syndrome was excluded. There were significant differences in gene mutations among age ranges (≤2 years-old; &gt;2-10 years old and ≥11 years old) and the nonrandom association between type I/II mutations. Lower white blood cell count (≤50 × 10<sup>9</sup>/L) was associated with RUNX1-RUNX1T1, whereas higher WBC with CBFβ-MYH11 (p &lt;0.05). Cumulative pOS in 5 years was 37.7 ± 2.8% for total AMLs and 59.8 ± 6.2% for APL (p = 0.03). pOS differences were observed between Brazilian regions. The South-Southeast regions had a better 5-year pOS, whereas the Midwest region presented the poorest pOS (23.7 ± 4.9%). PTPN11 mutations conferred an adverse prognosis as an independent prognostic factor. Identification of genetic subgroups contributes to the molecular epidemiology and biology of AML worldwide, reflecting the profile of pediatric AML cases in Brazil."	"Loss of Ptpn11 (Shp2) drives satellite cells into quiescence. The equilibrium between proliferation and quiescence of myogenic progenitor and stem cells is tightly regulated to ensure appropriate skeletal muscle growth and repair. The non-receptor tyrosine phosphatase Ptpn11 (Shp2) is an important transducer of growth factor and cytokine signals. Here we combined complex genetic analyses, biochemical studies and pharmacological interference to demonstrate a central role of Ptpn11 in postnatal myogenesis of mice. Loss of Ptpn11 drove muscle stem cells out of the proliferative and into a resting state during muscle growth. This Ptpn11 function was observed in postnatal but not fetal myogenic stem cells. Furthermore, muscle repair was severely perturbed when Ptpn11 was ablated in stem cells due to a deficit in stem cell proliferation and survival. Our data demonstrate a molecular difference in the control of cell cycle withdrawal in fetal and postnatal myogenic stem cells, and assign to Ptpn11 signaling a key function in satellite cell activity."	"HIF-1α Dependent Wound Healing Angiogenesis In Vivo Can Be Controlled by Site-Specific Lentiviral Magnetic Targeting of SHP-2. Hypoxia promotes vascularization by stabilization and activation of the hypoxia inducible factor 1α (HIF-1α), which constitutes a target for angiogenic gene therapy. However, gene therapy is hampered by low gene delivery efficiency and non-specific side effects. Here, we developed a gene transfer technique based on magnetic targeting of magnetic nanoparticle-lentivirus (MNP-LV) complexes allowing site-directed gene delivery to individual wounds in the dorsal skin of mice. Using this technique, we were able to control HIF-1α dependent wound healing angiogenesis in vivo via site-specific modulation of the tyrosine phosphatase activity of SHP-2. We thus uncover a novel physiological role of SHP-2 in protecting HIF-1α from proteasomal degradation via a Src kinase dependent mechanism, resulting in HIF-1α DNA-binding and transcriptional activity in vitro and in vivo. Excitingly, using targeting of MNP-LV complexes, we achieved simultaneous expression of constitutively active as well as inactive SHP-2 mutant proteins in separate wounds in vivo and hereby specifically and locally controlled HIF-1α activity as well as the angiogenic wound healing response in vivo. Therefore, magnetically targeted lentiviral induced modulation of SHP-2 activity may be an attractive approach for controlling patho-physiological conditions relying on hypoxic vessel growth at specific sites."	"Acute myeloid leukaemia in a case with Tatton-Brown-Rahman syndrome: the peculiar DNMT3A R882 mutation. Recently a novel syndromic form of overgrowth with intellectual disability and distinct facial features was identified caused by constitutional mutations in the epigenetic regulator DNA-methyltransferase 3A (DNMT3A), referred to as Tatton-Brown-Rahman syndrome (TBRS). Somatically acquired mutations in DNMT3A occur in haematological malignancies and are frequently present in acute myeloid leukaemia (AML) affecting in more than 50% the arginine residue at position 882 (R882). To date, additional cases with TBRS have been published but so far none of the reported cases with TBRS developed AML. Here we present the first case of TBRS who developed AML at the age of 15 years. Whole-exome sequencing identified a constitutional heterozygous DNMT3A R882C mutation. Our case exhibits macrocephaly, intellectual disability, distinct facial dysmorphism and other recurrent features fitting with the TBRS phenotype. The AML of the myelomonocytic subtype harboured only few additional somatically acquired mutations, that is, an aberrant karyotype and a recurrent PTPN11 mutation. The peculiarity of the specific R882 mutation in contrast to other DNMT3A mutations is discussed, including the hypothesis of the more aggressive nature of this variant.Our case represents the first evidence of the possible increased risk of the development of haematological malignancies in particular AML in cases with TBRS."	"Nuclear Shp2 directs normal embryo implantation via facilitating the ERα tyrosine phosphorylation by the Src kinase. Estrogen and progesterone coupled with locally produced signaling molecules are essential for embryo implantation. However, the hierarchical landscape of the molecular pathways that governs this process remains largely unexplored. Here we show that the protein tyrosine phosphatase Shp2, a positive transducer of RTK signaling, is predominately localized in the nuclei in the periimplantation mouse uterus. Uterine-specific deletion of Shp2 exhibits reduced progesterone receptor (PR) expression and progesterone resistance, which derails normal uterine receptivity, leading to complete implantation failure in mice. Notably, the PR expression defects are attributed to the limited estrogen receptor α (ERα) activation in uterine stroma. Further analysis reveals that nuclear Shp2, rather than cytosolic Shp2, promotes the ERα transcription activity. This function is achieved by enhancing the Src kinase-mediated ERα tyrosine phosphorylation, which facilitates ERα binding to Pgr promoter in an ERK-independent manner in periimplantation uteri. Besides uncovering a regulatory mechanism, this study could be clinically relevant to dysfunctional ERα-caused endometrial disorders in women."	"Unique presentation of cutis laxa with Leigh-like syndrome due to ECHS1 deficiency. Clinical finding of cutis laxa, characterized by wrinkled, redundant, sagging, nonelastic skin, is of growing significance due to its occurrence in several different inborn errors of metabolism (IEM). Metabolic cutis laxa results from Menkes syndrome, caused by a defect in the ATPase copper transporting alpha (ATP7A) gene; congenital disorders of glycosylation due to mutations in subunit 7 of the component of oligomeric Golgi (COG7)-congenital disorders of glycosylation (CDG) complex; combined disorder of N- and O-linked glycosylation, due to mutations in ATPase H+ transporting V0 subunit a2 (ATP6VOA2) gene; pyrroline-5-carboxylate reductase 1 deficiency; pyrroline-5-carboxylate synthase deficiency; macrocephaly, alopecia, cutis laxa, and scoliosis (MACS) syndrome, due to Ras and Rab interactor 2 (RIN2) mutations; transaldolase deficiency caused by mutations in the transaldolase 1 (TALDO1) gene; Gerodermia osteodysplastica due to mutations in the golgin, RAB6-interacting (GORAB or SCYL1BP1) gene; and mitogen-activated pathway (MAP) kinase defects, caused by mutations in several genes [protein tyrosine phosphatase, non-receptor-type 11 (PTPN11), RAF, NF, HRas proto-oncogene, GTPase (HRAS), B-Raf proto-oncogene, serine/threonine kinase (BRAF), MEK1/2, KRAS proto-oncogene, GTPase (KRAS), SOS Ras/Rho guanine nucleotide exchange factor 2 (SOS2), leucine rich repeat scaffold protein (SHOC2), NRAS proto-oncogene, GTPase (NRAS), and Raf-1 proto-oncogene, serine/threonine kinase (RAF1)], which regulate the Ras-MAPK cascade. Here, we further expand the list of inborn errors of metabolism associated with cutis laxa by describing the clinical presentation of a 17-month-old girl with Leigh-like syndrome due to enoyl coenzyme A hydratase, short chain, 1, mitochondria (ECHS1) deficiency, a mitochondrial matrix enzyme that catalyzes the second step of the beta-oxidation spiral of fatty acids and plays an important role in amino acid catabolism, particularly valine."	"Targetable kinase gene fusions in high-risk B-ALL: a study from the Children's Oncology Group. Philadelphia chromosome-like (Ph-like) acute lymphoblastic leukemia (ALL) is a high-risk subtype characterized by genomic alterations that activate cytokine receptor and kinase signaling. We examined the frequency and spectrum of targetable genetic lesions in a retrospective cohort of 1389 consecutively diagnosed patients with childhood B-lineage ALL with high-risk clinical features and/or elevated minimal residual disease at the end of remission induction therapy. The Ph-like gene expression profile was identified in 341 of 1389 patients, 57 of whom were excluded from additional analyses because of the presence of BCR-ABL1 (n = 46) or ETV6-RUNX1 (n = 11). Among the remaining 284 patients (20.4%), overexpression and rearrangement of CRLF2 (IGH-CRLF2 or P2RY8-CRLF2) were identified in 124 (43.7%), with concomitant genomic alterations activating the JAK-STAT pathway (JAK1, JAK2, IL7R) identified in 63 patients (50.8% of those with CRLF2 rearrangement). Among the remaining patients, using reverse transcriptase polymerase chain reaction or transcriptome sequencing, we identified targetable ABL-class fusions (ABL1, ABL2, CSF1R, and PDGFRB) in 14.1%, EPOR rearrangements or JAK2 fusions in 8.8%, alterations activating other JAK-STAT signaling genes (IL7R, SH2B3, JAK1) in 6.3% or other kinases (FLT3, NTRK3, LYN) in 4.6%, and mutations involving the Ras pathway (KRAS, NRAS, NF1, PTPN11) in 6% of those with Ph-like ALL. We identified 8 new rearrangement partners for 4 kinase genes previously reported to be rearranged in Ph-like ALL. The current findings provide support for the precision-medicine testing and treatment approach for Ph-like ALL implemented in Children's Oncology Group ALL trials."	"An aggressive multifocal primary CNS histiocytosis with PTPN11 (Shp2) mutation. NA"	"Abnormal repression of SHP-1, SHP-2 and SOCS-1 transcription sustains the activation of the JAK/STAT3 pathway and the progression of the disease in multiple myeloma. Sustained activation of JAK/STAT3 signaling pathway is classically described in Multiple Myeloma (MM). One explanation could be the silencing of the JAK/STAT suppressor genes, through the hypermethylation of SHP-1 and SOCS-1, previously demonstrated in MM cell lines or in whole bone marrow aspirates. The link between such suppressor gene silencing and the degree of bone marrow invasion or the treatment response has not been evaluated in depth. Using real-time RT-PCR, we studied the expression profile of three JAK/STAT suppressor genes: SHP-1, SHP-2 and SOCS-1 in plasma cells freshly isolated from the bone marrows of MM patients and healthy controls. Our data demonstrated an abnormal repression of such genes in malignant plasma cells and revealed a significant correlation between such defects and the sustained activation of the JAK/STAT3 pathway during MM. The repressed expression of SHP-1 and SHP-2 correlated significantly with a high initial degree of bone marrow infiltration but was, unexpectedly, associated with a better response to the induction therapy. Collectively, our data provide new evidences that substantiate the contribution of JAK/STAT suppressor genes in the pathogenesis of MM. They also highlight the possibility that the decreased gene expression of SHP-1 and SHP-2 could be of interest as a new predictive factor of a favorable treatment response, and suggest new potential mechanisms of action of the therapeutic molecules. Whether such defect helps the progression of the disease from monoclonal gammopathy of unknown significance to MM remains, however, to be determined."	"Noonan syndrome-associated SHP2 mutation differentially modulates the expression of postsynaptic receptors according to developmental maturation. Glutamate is the major excitatory neurotransmitter in the central nervous system, and related signaling involves both AMPA and NMDA subtype receptors. The expression of glutamate receptors is dynamically regulated during development. Recent studies showed that the dysregulation of glutamate receptor expression and function is associated with neurodevelopmental disorders including intellectual disability. Previously, a Noonan syndrome (NS)-associated SHP2 mutation (SHP2<sup>D61G</sup>) was shown to increase the synaptic delivery of AMPA receptor, subsequently impairing synaptic plasticity and learning in adult mice. However, how the mutant SHP2 affects glutamate receptor expression during development is not known. Here, we found that the SHP2<sup>D61G</sup> differentially regulates the expression of AMPA and NMDA receptors depending on the stage of neuronal maturation. In cultured neurons (immature stage; DIV 6), overexpression of SHP2<sup>D61G</sup> significantly increased the average size and the number of NMDA receptor-containing particles, but not those with AMPA receptors. In early matured neurons (DIV 12), SHP2<sup>D61G</sup> significantly increased only the average size of AMPA receptor particles, and subsequently increased their number in matured neurons (DIV 18). Importantly, all the changes described above for SHP2<sup>D61G</sup> neurons were reversed by inhibiting MAPK. These data demonstrate that the increased activation of MAPK signaling pathway by SHP2<sup>D61G</sup> could deregulate the surface expression of synaptic receptors during neuronal development, which likely contributes to cognitive impairments in NS patients."	"Congenital Chylothorax as the Initial Presentation of PTPN11-Associated Noonan Syndrome. NA"	"Aberrant neuronal activity-induced signaling and gene expression in a mouse model of RASopathy. Noonan syndrome (NS) is characterized by reduced growth, craniofacial abnormalities, congenital heart defects, and variable cognitive deficits. NS belongs to the RASopathies, genetic conditions linked to mutations in components and regulators of the Ras signaling pathway. Approximately 50% of NS cases are caused by mutations in PTPN11. However, the molecular mechanisms underlying cognitive impairments in NS patients are still poorly understood. Here, we report the generation and characterization of a new conditional mouse strain that expresses the overactive Ptpn11D61Y allele only in the forebrain. Unlike mice with a global expression of this mutation, this strain is viable and without severe systemic phenotype, but shows lower exploratory activity and reduced memory specificity, which is in line with a causal role of disturbed neuronal Ptpn11 signaling in the development of NS-linked cognitive deficits. To explore the underlying mechanisms we investigated the neuronal activity-regulated Ras signaling in brains and neuronal cultures derived from this model. We observed an altered surface expression and trafficking of synaptic glutamate receptors, which are crucial for hippocampal neuronal plasticity. Furthermore, we show that the neuronal activity-induced ERK signaling, as well as the consecutive regulation of gene expression are strongly perturbed. Microarray-based hippocampal gene expression profiling revealed profound differences in the basal state and upon stimulation of neuronal activity. The neuronal activity-dependent gene regulation was strongly attenuated in Ptpn11D61Y neurons. In silico analysis of functional networks revealed changes in the cellular signaling beyond the dysregulation of Ras/MAPK signaling that is nearly exclusively discussed in the context of NS at present. Importantly, changes in PI3K/AKT/mTOR and JAK/STAT signaling were experimentally confirmed. In summary, this study uncovers aberrant neuronal activity-induced signaling and regulation of gene expression in Ptpn11D61Y mice and suggests that these deficits contribute to the pathophysiology of cognitive impairments in NS."	"Critical Role for GAB2 in Neuroblastoma Pathogenesis through the Promotion of SHP2/MYCN Cooperation. Growing evidence suggests a major role for Src-homology-2-domain-containing phosphatase 2 (SHP2/PTPN11) in MYCN-driven high-risk neuroblastoma, although biologic confirmation and a plausible mechanism for this contribution are lacking. Using a zebrafish model of MYCN-overexpressing neuroblastoma, we demonstrate that mutant ptpn11 expression in the adrenal gland analog of MYCN transgenic fish promotes the proliferation of hyperplastic neuroblasts, accelerates neuroblastomagenesis, and increases tumor penetrance. We identify a similar mechanism in tumors with wild-type ptpn11 and dysregulated Gab2, which encodes a Shp2 activator that is overexpressed in human neuroblastomas. In MYCN transgenic fish, Gab2 overexpression activated the Shp2-Ras-Erk pathway, enhanced neuroblastoma induction, and increased tumor penetrance. We conclude that MYCN cooperates with either GAB2-activated or mutant SHP2 in human neuroblastomagenesis. Our findings further suggest that combined inhibition of MYCN and the SHP2-RAS-ERK pathway could provide effective targeted therapy for high-risk neuroblastoma patients with MYCN amplification and aberrant SHP2 activation."	"Noonan syndrome, PTPN11 mutations, and brain tumors. A clinical report and review of the literature. Noonan syndrome (NS), an autosomal dominant disorder, is characterized by short stature, congenital heart defects, developmental delay, and facial dysmorphism. PTPN11 mutations are the most common cause of NS. PTPN11 encodes a non-receptor protein tyrosine phosphatase, SHP2. Hematopoietic malignancies and solid tumors are associated with NS. Among solid tumors, brain tumors have been described in children and young adults but remain rather rare. We report a 16-year-old boy with PTPN11-related NS who, at the age of 12, was incidentally found to have a left temporal lobe brain tumor and a cystic lesion in the right thalamus. He developed epilepsy 2 years later. The temporal tumor was surgically resected because of increasing crises and worsening radiological signs. Microscopy showed nodules with specific glioneuronal elements or glial nodules, leading to the diagnosis of dysembryoplastic neuroepithelial tumor (DNT). Immunohistochemistry revealed positive nuclear staining with Olig2 and pERK in small cells. SHP2 plays a key role in RAS/MAPK pathway signaling which controls several developmental cell processes and oncogenesis. An amino-acid substitution in the N-terminal SHP2 domain disrupts the self-locking conformation and leads to ERK activation. Glioneuronal tumors including DNTs and pilocytic astrocytomas have been described in NS. This report provides further support for the relation of DNTs with RASopathies and for the implication of RAS/MAPK pathways in sporadic low-grade glial tumors including DNTs. © 2017 Wiley Periodicals, Inc."	"Targeted next generation sequencing and identification of risk factors in World Health Organization defined atypical chronic myeloid leukemia. Atypical chronic myeloid leukemia (aCML) is an aggressive myeloid neoplasm with overlapping features of myelodysplastic syndromes (prominent granulocytic dysplasia) and myeloproliferative neoplasms (neutrophilic leukocytosis). We studied 25 molecularly-annotated and World Health Organization defined aCML patients; median age 70 years, 84% males. Cytogenetic abnormalities were seen in 36% and gene mutations in 100%. Mutational frequencies were, ASXL1 28%, TET2 16%, NRAS 16%, SETBP1 12%, RUNX1 12%, ETNK1 8%, and PTPN11 4%. Fifteen patients (60%) had &gt;1 mutation, while 9 (36%) had ≥3. The median overall survival (OS) was 10.8 months and at last follow up (median 11 months), 17 (68%) deaths and 2 (8%) leukemic transformations were documented. On univariate analysis, survival was adversely impacted by advanced age (P = .02), low hemoglobin (P = .01), red blood cell transfusion dependence (P = .03), high white blood cell count (P = .02), TET2 (P = .03), NRAS (P = .04), PTPN11 (P = .02) mutations and the presence of ≥3 gene mutations (P = .006); ASXL1, SETBP1, and ETNK1 mutations did not impact OS. In multivariable analysis, advanced age (P = .003) [age &gt;67: HR 10.1, 95% CI 1.3-119], low hemoglobin (P = .008) [HB&lt; 10 gm/dL: HR 8.2, 95% CI 1.6-23.2] and TET2 mutations (P = .01) [HR 8.8, 95% CI 1.6-47.7] retained prognostic significance. We then used age &gt;67 years, hemoglobin &lt;10 gm/dL and the presence of TET2 mutations (each counted as one risk factor) to create a hazard ratio weighted prognostic model; effectively stratifying patients into two risk categories, low (0-1 risk factor) and high (≥2 risk factors), with median OS of 18 and 7 months, respectively."	"Role of SHP2 in hematopoiesis and leukemogenesis. SH2 domain-containing tyrosine phosphatase 2 (SHP2), encoded by PTPN11 plays an important role in regulating signaling from cell surface receptor tyrosine kinases during normal development as well as oncogenesis. Herein we review recently discovered roles of SHP2 in normal and aberrant hematopoiesis along with novel strategies to target it. Cell autonomous role of SHP2 in normal hematopoiesis and leukemogenesis has long been recognized. The review will discuss the newly discovered role of SHP2 in lineage specific differentiation. Recently, a noncell autonomous role of oncogenic SHP2 has been reported in which activated SHP2 was shown to alter the bone marrow microenvironment resulting in transformation of donor derived normal hematopoietic cells and development of myeloid malignancy. From being considered as an 'undruggable' target, recent development of allosteric inhibitor has made it possible to specifically target SHP2 in receptor tyrosine kinase driven malignancies. SHP2 has emerged as an attractive target for therapeutic targeting in hematological malignancies for its cell autonomous and microenvironmental effects. However a better understanding of the role of SHP2 in different hematopoietic lineages and its crosstalk with signaling pathways activated by other genetic lesions is required before the promise is realized in the clinic."	"Key insights into the protein tyrosine phosphatase PTPN11/SHP2 associated with noonan syndrome and cancer. NA"	"E3 ligase FBXW7 is critical for RIG-I stabilization during antiviral responses. Viruses can escape from host recognition by degradation of RIG-I or interference with the RIG-I signalling to establish persistent infections. However, the mechanisms by which host cells stabilize RIG-I protein for avoiding its degradation are largely unknown. We report here that, upon virus infection, the E3 ubiquitin ligase FBXW7 translocates from the nucleus into the cytoplasm and stabilizes RIG-I. FBXW7 interacts with SHP2 and mediates the degradation and ubiquitination of SHP2, thus disrupting the SHP2/c-Cbl complex, which mediates RIG-I degradation. When infected with VSV or influenza A virus, FBXW7 conditional knockout mice (Lysm<sup>+</sup>FBXW7<sup>f/f</sup>) show impaired antiviral immunity. FBXW7-deficient macrophages have decreased RIG-I protein levels and type-I interferon signalling. Furthermore, PBMCs from RSV-infected children have reduced FBXW7 mRNA levels. Our results identify FBXW7 as an important interacting partner for RIG-I. These findings provide insights into the function of FBXW7 in antiviral immunity and its related clinical significance."	"NF1-mutated melanoma tumors harbor distinct clinical and biological characteristics. In general, melanoma can be considered as a UV-driven disease with an aggressive metastatic course and high mutational load, with only few tumors (acral, mucosal, and uveal melanomas) not induced by sunlight and possessing a lower mutational load. The most commonly activated pathway in melanoma is the mitogen-activated protein kinase (MAPK) pathway. However, the prognostic significance of mutational stratification is unclear and needs further investigation. Here, in silico we combined mutation data from 162 melanomas subjected to targeted deep sequencing with mutation data from three published studies. Tumors from 870 patients were grouped according to BRAF, RAS, NF1 mutation or triple-wild-type status and correlated with tumor and patient characteristics. We found that the NF1-mutated subtype had a higher mutational burden and strongest UV mutation signature. Searching for co-occurring mutated genes revealed the RASopathy genes PTPN11 and RASA2, as well as another RAS domain-containing gene RASSF2 enriched in the NF1 subtype after adjustment for mutational burden. We found that a larger proportion of the NF1-mutant tumors were from males and with older age at diagnosis. Importantly, we found an increased risk of death from melanoma (disease-specific survival, DSS; HR, 1.9; 95% CI, 1.21-3.10; P = 0.046) and poor overall survival (OS; HR, 2.0; 95% CI, 1.28-2.98; P = 0.01) in the NF1 subtype, which remained significant after adjustment for age, gender, and lesion type (DSS P = 0.03, OS P = 0.06, respectively). Melanoma genomic subtypes display different biological and clinical characteristics. The poor outcome observed in the NF1 subtype highlights the need for improved characterization of this group."	"Spectrum of somatic mutations detected by targeted next-generation sequencing and their prognostic significance in adult patients with acute lymphoblastic leukemia. Target-specific next-generation sequencing technology was used to analyze 112 genes in adult patients with acute lymphoblastic leukemia (ALL). This sequencing mainly focused on the specific mutational hotspots. Among the 121 patients, 93 patients were B-ALL (76.9%), and 28 patients (23.1%) were T-ALL. Of the 121 patients, 110 (90.9%) harbored at least one mutation. The five most frequently mutated genes in T-ALL are NOTCH1, JAK3, FBXW7, FAT1, and NRAS. In B-ALL, FAT1, SF1, CRLF2, TET2, and PTPN1 have higher incidence of mutations. Gene mutations are different between Ph<sup>+</sup>ALL and Ph<sup>-</sup>ALL patients. B-ALL patients with PTPN11 mutation and T-ALL patients with NOTCH1 and/or FBXW7 mutations showed better survival. But B-ALL with JAK1/JAK2 mutations showed worse survival. The results suggest that gene mutations exist in adult ALL patients universally, they are related with prognosis."	"De novo KAT6B Mutation Identified with Whole-Exome Sequencing in a Girl with Say-Barber/Biesecker/Young-Simpson Syndrome. Say-Barber/Biesecker/Young-Simpson syndrome (SBBYSS; OMIM 603736) is a rare syndrome with multiple congenital anomalies/malformations. The clinical diagnosis is usually based on a phenotype with a mask-like face and severe blepharophimosis and ptosis as well as other distinctive facial traits. We present a girl with dysmorphic features, an atrial septal defect, and developmental delay. Previous genetic testing (array-CGH, 22q11 deletion, PTPN11 and MLL2 mutation analysis) gave normal results. We performed whole-exome sequencing (WES) and identified a heterozygous nonsense mutation in the KAT6B gene, NM_001256468.1: c.4943C&gt;G (p.S1648*). The mutation led to a premature stop codon and occurred de novo. KAT6B sequence variants have previously been identified in patients with SBBYSS, and the phenotype of the girl is similar to other patients diagnosed with SBBYSS. This case report provides additional evidence for the correlation between the KAT6B mutation and SBBYSS. If a patient is suspected of having a blepharophimosis syndrome or SBBYSS, we recommend sequencing the KAT6B gene. This is a further example showing that WES can assist diagnosis."	"Signaling adaptor ShcD suppresses extracellular signal-regulated kinase (Erk) phosphorylation distal to the Ret and Trk neurotrophic receptors. Proteins of the Src homology and collagen (Shc) family are typically involved in signal transduction events involving Ras/MAPK and PI3K/Akt pathways. In the nervous system, they function proximal to the neurotrophic factors that regulate cell survival, differentiation, and neuron-specific characteristics. The least characterized homolog, ShcD, is robustly expressed in the developing and mature nervous system, but its contributions to neural cell circuitry are largely uncharted. We now report that ShcD binds to active Ret, TrkA, and TrkB neurotrophic factor receptors predominantly via its phosphotyrosine-binding (PTB) domain. However, in contrast to the conventional Shc adaptors, ShcD suppresses distal phosphorylation of the Erk MAPK. Accordingly, genetic knock-out of mouse ShcD enhances Erk phosphorylation in the brain. In cultured cells, this capacity is tightly aligned to phosphorylation of ShcD CH1 region tyrosine motifs, which serve as docking platforms for signal transducers, such as Grb2. Erk suppression is relieved through independent mutagenesis of the PTB domain and the CH1 tyrosine residues, and successive substitution of these tyrosines breaks the interaction between ShcD and Grb2, thereby promoting TrkB-Grb2 association. Erk phosphorylation can also be restored in the presence of wild type ShcD through Grb2 overexpression. Conversely, mutation of the ShcD SH2 domain results in enhanced repression of Erk. Although the SH2 domain is a less common binding interface in Shc proteins, we demonstrate that it associates with the Ptpn11 (Shp2) phosphatase, which in turn regulates ShcD tyrosine phosphorylation. We therefore propose a model whereby ShcD competes with neurotrophic receptors for Grb2 binding and opposes activation of the MAPK cascade."	"Plasmacytoid dendritic cell proliferations and neoplasms involving the bone marrow : Summary of the workshop cases submitted to the 18th Meeting of the European Association for Haematopathology (EAHP) organized by the European Bone Marrow Working Group, Basel 2016. Two distinct forms of neoplasms derived from plasmacytoid dendritic cells (PDC) exist: mature PDC proliferations associated with myeloid neoplasms and blastic PDC neoplasms (BPDCN). Ten cases of PDC proliferations and neoplasms in the bone marrow have been submitted to the bone marrow workshop held at the 18th EAHP meeting. Based on observations from the submitted cases, scattered PDC (≤1% of cells) and PDC aggregates (≤10 PDC/HPF) reflect the normal bone marrow composition, while in myelodysplastic syndromes (MDS), there is a propensity for larger/more PDC aggregates (1-5% and 35 PDC/HPF). A shared PTPN11 mutation between a mature PDC proliferation and an accompanying MDS provides evidence of clonal relationship in such instances and shows that PDC are a part of the malignant clone. CD123 and CD303 should be considered backbone markers to histopathologically establish the diagnosis of BPDCN, since they are detectable in almost all cases and properly well on biopsies subjected to different fixations. Expression of some T-cell markers (e.g., CD2 and CD7 but not CD3), B-cell markers (e.g., CD79a but not CD19 and CD20), and myeloid markers (e.g., CD33 and CD117 but not myeloperoxidase) can be observed in BPDCN. Genetical data of the summarized cases corroborate the important role of chromosomal losses in BPDCN. Together with five previously reported instances, one additional workshop case with MYC rearrangement proposes that translocations of MYC may be recurrent. The frequent nature of deleterious mutations of IKZF3 and deletions of IKZF1 suggests a role for the Ikaros family proteins in BPDCN."	"Juvenile Myelomonocytic Leukemia in Turkey: A Retrospective Analysis of Sixty-five Patients. This study aimed to define the status of juvenile myelomonocytic leukemia (JMML) patients in Turkey in terms of time of diagnosis, clinical characteristics, mutational studies, clinical course, and treatment strategies. Data including clinical and laboratory characteristics and treatment strategies of JMML patients were collected retrospectively from pediatric hematology-oncology centers in Turkey. Sixty-five children with JMML diagnosed between 2002 and 2016 in 18 institutions throughout Turkey were enrolled in the study. The median age at diagnosis was 17 months (min-max: 2-117 months). Splenomegaly was present in 92% of patients at the time of diagnosis. The median white blood cell, monocyte, and platelet counts were 32.9x109/L, 5.4x109/L, and 58.3x109/L, respectively. Monosomy 7 was present in 18% of patients. JMML mutational analysis was performed in 32 of 65 patients (49%) and PTPN11 was the most common mutation. Hematopoietic stem cell transplantation (HSCT) could only be performed in 28 patients (44%), the majority being after the year 2012. The most frequent reason for not performing HSCT was the inability to find a suitable donor. The median time from diagnosis to HSCT was 9 months (min-max: 2-63 months). The 5-year cumulative survival rate was 33% and median estimated survival time was 30±17.4 months (95% CI: 0-64.1) for all patients. Survival time was significantly better in the HSCT group (log-rank p=0.019). Older age at diagnosis (&gt;2 years), platelet count of less than 40x109/L, and PTPN11 mutation were the factors significantly associated with shorter survival time. Although there has recently been improvement in terms of definitive diagnosis and HSCT in JMML patients, the overall results are not satisfactory and it is necessary to put more effort into this issue in Turkey. Amaç: Türkiye’deki juvenil miyelomonositik lösemi (JMML) hastalarının durumunu, tanı zamanı, klinik özellikler, mutasyon çalışmaları, klinik gidiş ve tedavi stratejileri açısından ortaya koymaktır. Gereç ve Yöntemler: Ülkemizdeki pediatrik hematoloji ve onkoloji kliniklerinden veri istenerek, JMML tanısı ile takip ve tedavisi yapılan hastaların klinik ve laboratuvar bulguları geriye dönük olarak değerlendirildi. Bulgular: On sekiz merkezden, 2002-2016 tarihleri arasında JMML tanısı alan toplam 65 hasta çalışmaya dahil edildi. Ortanca tanı yaşı 17 ay idi (2-117 ay). Splenomegali tanıda %92 hastada vardı. Ortanca lökosit, monosit ve trombosit sayıları sırasıyla 32,9x109/L, 5,4x109/L ve 58,3x109/L idi. Monozomi 7, %18 hastada saptanmıştı. JMML mutasyonları 32 hastada (%49) çalışılmış olup, en sık rastlanan mutasyon PTPN11 idi. Hematopoetik kök hücre nakli (HKHN) hastaların ancak %44’üne uygulanabilmiş olup, nakillerin büyük bir oranı 2012 yılından sonra yapılmıştı. Nakil yapılamamasının en sık nedeni uygun donör bulunamamasıydı. Tanı aldıktan nakile kadar geçen ortalama süre 9 ay (2-63 ay) olarak saptandı. Tüm hastalarda 5 yıllık kümülatif sağkalım oranı %33, ortanca tahmini yaşam süresi ise 30±17,4 ay (%95 CI: 0-64,1) olarak bulundu. Sağkalım süresi HKHN yapılan hastalarda anlamlı olarak daha uzundu (log-rank p=0,019). Tanıda 2 yaşın üstünde olmak, trombosit sayısının 40x109/L’nin altında saptanması ve PTPN11 mutasyon varlığı yaşam süresini anlamlı olarak kısaltan faktörler olarak bulundu. Sonuç: Ülkemizde her ne kadar son dönemlerde JMML hastalarında kesin tanı ve HKHN açısından iyileşme kaydedilmiş olsa da genel sonuç tatminkar değildir ve bu konu ile ilgili daha fazla çaba göstermeye gerek vardır."	"Coexisting and cooperating mutations in NPM1-mutated acute myeloid leukemia. NPM1 insertion mutations represent a common recurrent genetic abnormality in acute myeloid leukemia (AML) patients. The frequency of these mutations varies from approximately 30% overall up to 50% in patients with a normal karyotype. Several recent studies have exploited advances in massively parallel sequencing technology to shed light on the complex genomic landscape of AML. We hypothesize that variant allele fraction (VAF) data derived from massively parallel sequencing studies may provide further insights into the clonal architecture and pathogenesis of NPM1-driven leukemogenesis. Diagnostic peripheral blood or bone marrow samples from NPM1-mutated AML patients (n=120) were subjected to targeted sequencing using a panel of fifty-seven genes known to be commonly mutated in myeloid malignancies. NPM1 mutations were always accompanied by additional mutations and NPM1 had the highest VAF in only one case. Nearly all NPM1-mutated AML patients showed concurrent mutations in genes involved in regulation of DNA methylation (DNMT3A, TET2, IDH1, IDH2), RNA splicing (SRSF2, SF3B1), or in the cohesin complex (RAD21, SMC1A, SMC3, STAG2). Mutations in these genes had higher median VAFs that were higher (40% or greater) than the co-existing NPM1 mutations (median VAF 16.8%). Mutations associated with cell signaling pathways (FLT3, NRAS, and PTPN11) are also frequently encountered in NPM1-mutated AML cases, but had relatively low VAFs (7.0-11.9%). No cases of NPM1-mutated AML with a concurrent IDH2<sup>R172</sup> mutation were observed, suggesting that these variants are mutually exclusive. Overall, these data suggest that NPM1 mutations are a secondary or late event in the pathogenesis of AML and are preceded by founder mutations in genes that may be associated with recently described preclinical states such as clonal hematopoiesis of indeterminate potential or clonal cytopenias of undetermined significance."	"Sharing of a PTPN11 mutation by myelodysplastic bone marrow and a mature plasmacytoid dendritic cell proliferation provides evidence for their common myelomonocytic origin. NA"	"Transient myeloproliferative disorder in an infant with PTPN11 mutation. NA"	"Juvenile myelomonocytic leukemia-associated variants are associated with neo-natal lethal Noonan syndrome. Gain-of-function variants in some RAS-MAPK pathway genes, including PTPN11 and NRAS, are associated with RASopathies and/or acquired hematological malignancies, most notably juvenile myelomonocytic leukemia (JMML). With rare exceptions, the spectrum of germline variants causing RASopathies does not overlap with the somatic variants identified in isolated JMML. Studies comparing these variants suggest a stronger gain-of-function activity in the JMML variants. As JMML variants have not been identified as germline defects and have a greater impact on protein function, it has been speculated that they would be embryonic lethal. Here we identified three variants, which have previously only been identified in isolated somatic JMML and other sporadic cancers, in four cases with a severe pre- or neo-natal lethal presentation of Noonan syndrome. These cases support the hypothesis that these stronger gain-of-function variants are rarely compatible with life."	"Shp2 Inhibits Proliferation of Esophageal Squamous Cell Cancer via Dephosphorylation of Stat3. Shp2 (Src-homology 2 domain-containing phosphatase 2) was originally reported as an oncogene in kinds of solid tumors and hematologic malignancies. However, recent studies indicated that Shp2 may act as tumor suppressors in several tumor types. We investigated the function of Shp2 in esophageal squamous cell cancer (ESCC). The expression level of Shp2 was analyzed in tumor tissues in comparison with adjacent normal tissues of ESCC patients by immunohistochemistry and Western blot. Shp2 was knocked down by Short hairpin RNA to evaluate its function in ESCC cell lines. The relationship between Shp2 and p-Stat3 (signal transducer and activator of transcription 3) in human ESCC tissues was statistically examined. A significant low expression of Shp2 was found in ESCC tissues. Low expression of Shp2 was related to poorer overall survival in patients from The Cancer Genome Atlas (TCGA) dataset. Knockdown of Shp2 increased the growth of ESCC cell lines both in vivo and vitro. Activation of Stat3 (p-Stat3) was induced by Shp2 depletion. Expression of p-Stat3 was negatively correlated with Shp2 expression in ESCC tissues. Furthermore, knockdown of Shp2 attenuated cisplatin-sensitivity of ESCC cells. Shp2 might suppress the proliferation of ESCC by dephosphorylation of p-Stat3 and represents a novel research field for targeted therapy."	"Transient juvenile myelomonocytic leukemia in the setting of PTPN11 mutation and Noonan syndrome with secondary development of monosomy 7. Juvenile myelomonocytic leukemia (JMML) is a rare childhood neoplasm with poor prognosis except in the setting of Noonan syndrome, where prognosis is generally favorable. We present the case of a child with JMML in the setting of germline PTPN11 mutation and Noonan syndrome with suspected secondary development of monosomy 7 in the bone marrow. Diagnosed shortly after birth, she has been managed with active surveillance alone. Myeloblast percentages initially fluctuated; however, bone marrow biopsy at 4 years of age showed spontaneous remission despite persistence of the monosomy 7 clone, supporting a cautious approach in similar cases."	"Structural, Functional, and Clinical Characterization of a Novel PTPN11 Mutation Cluster Underlying Noonan Syndrome. Germline mutations in PTPN11, the gene encoding the Src-homology 2 (SH2) domain-containing protein tyrosine phosphatase (SHP2), cause Noonan syndrome (NS), a relatively common, clinically variable, multisystem disorder. Here, we report on the identification of five different PTPN11 missense changes affecting residues Leu<sup>261</sup> , Leu<sup>262</sup> , and Arg<sup>265</sup> in 16 unrelated individuals with clinical diagnosis of NS or with features suggestive for this disorder, specifying a novel disease-causing mutation cluster. Expression of the mutant proteins in HEK293T cells documented their activating role on MAPK signaling. Structural data predicted a gain-of-function role of substitutions at residues Leu<sup>262</sup> and Arg<sup>265</sup> exerted by disruption of the N-SH2/PTP autoinhibitory interaction. Molecular dynamics simulations suggested a more complex behavior for changes affecting Leu<sup>261</sup> , with possible impact on SHP2's catalytic activity/selectivity and proper interaction of the PTP domain with the regulatory SH2 domains. Consistent with that, biochemical data indicated that substitutions at codons 262 and 265 increased the catalytic activity of the phosphatase, while those affecting codon 261 were only moderately activating but impacted substrate specificity. Remarkably, these mutations underlie a relatively mild form of NS characterized by low prevalence of cardiac defects, short stature, and cognitive and behavioral issues, as well as less evident typical facial features."	"Shp2 promotes liver cancer stem cell expansion by augmenting β-catenin signaling and predicts chemotherapeutic response of patients. Src-homology 2 domain-containing phosphatase 2 (Shp2) has been reported to play an important role in the maintenance and self-renewal of embryonic and adult stem cells, but its role in cancer stem cells (CSCs) remains obscure. Herein, we observed high expression of Shp2 in both chemoresistant hepatocellular carcinomas (HCCs) and recurrent HCCs from patients. A remarkable increase of Shp2 was detected in sorted epithelial cell adhesion molecule-positive or cluster of differentiation 133-positive liver CSCs and in CSC-enriched hepatoma spheroids from patients. Up-regulated Shp2 facilitated liver CSC expansion by promoting the dedifferentiation of hepatoma cells and enhancing the self-renewal of liver CSCs. Mechanistically, Shp2 dephosphorylated cell division cycle 73 in the cytosol of hepatoma cells, and the dephosphorylated cell division cycle 73 bound β-catenin and facilitated the nuclear translocation of β-catenin, which promoted the dedifferentiation of hepatoma cells. Shp2 increased β-catenin accumulation by inhibiting glycogen synthase kinase 3β-mediated β-catenin degradation in liver CSCs, thereby enhancing the self-renewal of liver CSCs. Blockage of β-catenin abolished the discrepancy in liver CSC proportion and the self-renewal capacity between Shp2-depleted hepatoma cells and control cells, which further confirmed that β-catenin is required in Shp2-promoted liver CSC expansion. More importantly, HCC patients with low Shp2 levels benefited from transcatheter arterial chemoembolization or sorafenib treatment, but patients with high Shp2 expression did not, indicating the significance of Shp2 in personalized HCC therapy. Shp2 could promote HCC cell dedifferentiation and liver CSC expansion by amplifying β-catenin signaling and may be useful in predicting patient response to chemotherapeutics. (Hepatology 2017;65:1566-1580)."	"HTLV-1 bZIP Factor Enhances T-Cell Proliferation by Impeding the Suppressive Signaling of Co-inhibitory Receptors. Human T-cell leukemia virus type 1 (HTLV-1) causes adult T-cell leukemia-lymphoma (ATL) and inflammatory diseases. To enhance cell-to-cell transmission of HTLV-1, the virus increases the number of infected cells in vivo. HTLV-1 bZIP factor (HBZ) is constitutively expressed in HTLV-1 infected cells and ATL cells and promotes T-cell proliferation. However, the detailed mechanism by which it does so remains unknown. Here, we show that HBZ enhances the proliferation of expressing T cells after stimulation via the T-cell receptor. HBZ promotes this proliferation by influencing the expression and function of multiple co-inhibitory receptors. HBZ suppresses the expression of BTLA and LAIR-1 in HBZ expressing T cells and ATL cells. Expression of T cell immunoglobulin and ITIM domain (TIGIT) and Programmed cell death 1 (PD-1) was enhanced, but their suppressive effect on T-cell proliferation was functionally impaired. HBZ inhibits the co-localization of SHP-2 and PD-1 in T cells, thereby leading to impaired inhibition of T-cell proliferation and suppressed dephosphorylation of ZAP-70 and CD3ζ. HBZ does this by interacting with THEMIS, which associates with Grb2 and SHP-2. Thus, HBZ interacts with the SHP containing complex, impedes the suppressive signal from PD-1 and TIGIT, and enhances the proliferation of T cells. Although HBZ was present in both the nucleus and the cytoplasm of T cells, HBZ was localized largely in the nucleus by suppressed expression of THEMIS by shRNA. This indicates that THEMIS is responsible for cytoplasmic localization of HBZ in T cells. Since THEMIS is expressed only in T-lineage cells, HBZ mediated inhibition of the suppressive effects of co-inhibitory receptors accounts for how HTLV-1 induces proliferation only of T cells in vivo. This study reveals that HBZ targets co-inhibitory receptors to cause the proliferation of infected cells."	"Chlorogenic Acid Prevents Osteoporosis by Shp2/PI3K/Akt Pathway in Ovariectomized Rats. Cortex Eucommiae is used worldwide in traditional medicine, various constituents of Cortex Eucommiae, such as chlorogenic acid (CGA), has been reported to exert anti-osteoporosis activity in China, but the mechanism about their contribution to the overall activity is limited. The aims of this study were to determine whether chlorogenic acid can prevent estrogen deficiency-induced osteoporosis and to analyze the mechanism of CGA bioactivity. The effect of CGA on estrogen deficiency-induced osteoporosis was performed in vivo. Sixty female Sprague-Dawley rats were divided randomly among a sham-operated group and five ovariectomy (OVX) plus treatment subgroups: saline vehicle, 17α-ethinylestradiol (E2), or CGA at 9, 27, or 45 mg/kg/d. The rats' femoral metaphyses were evaluated by micro-computed tomography (μCT). The mechanism of CGA bioactivity was investigated in vitro. Bone mesenchymal stem cells (BMSCs) were treated with CGA, with or without phosphoinositide 3-kinase (PI3K) inhibitor LY294002. BMSCs proliferation and osteoblast differentiation were assessed with 3-(4,5-dimethyl-2-thiazolyl)-2,5-diphenyl-2-H-tetrazolium bromide (MTT) and alkaline phosphatase, with or without Shp2 interfering RNA (RNAi). The results display that CGA at 27 and 45 mg/kg/day inhibited the decrease of bone mineral density (BMD) that induced by OVX in femur (p&lt; 0.01), significantly promoted the levels of bone turnover markers, and prevented bone volume fraction (BV/TV), connectivity density (CoonD), trabecular number (Tb.N), trabecular thickness (Tb.Th) (all p&lt; 0.01) to decrease and prevented the trabecular separation (Tb.Sp), structure model index (SMI)(both p&lt; 0.01) to increase. CGA at 1 or 10 μM enhanced BMSC proliferation in a dose-dependent manner. CGA at 0.1 to 10 μM increased phosphorylated Akt (p-Akt) and cyclin D1. These effects were reversed by LY294002. CGA at 1 or 10 μM increased BMSC differentiation to osteoblasts (p&lt; 0.01), Shp2 RNAi suppressed CGA-induced osteoblast differentiation by decreasing Shp2, p-Akt, and cyclin D1. This study found that CGA improved the BMD and trabecular micro-architecture for the OVX-induced osteoporosis. Therefore, CGA might be an effective alternative treatment for postmenopausal osteoporosis. CGA promoted proliferation of osteoblast precursors and osteoblastic differentiation of BMSCs via the Shp2/PI3K/Akt/cyclin D1 pathway."	"DephosSitePred: A High Accuracy Predictor for Protein Dephosphorylation Sites. Protein tyrosine phosphatases (PTPs) are responsible for protein phosphorylation. Because the level of protein phosphorylation is correlated with tumor transformation, PTPs have been considered as candidate transformation suppressors. In this study, we developed a novel PTP site prediction model, DephosSitePred, based on bi-profile sequence features. A dataset which contains 63-, 50- and 51-positive samples, and 868-, 856-, and 731-negative samples with less than 70% sequence identity for the three phosphatases was constructed in this study. Based on the dataset, a predictor model DephosSitePred was constructed, by applying the sequence-based bi-profile Bayes feature extraction technique to identify three phosphatases, PTP1B, SHP-1, and SHP-2. Concerning the imbalance of datasets used in our study, the weight parameters (W1 and W-1) of the support vector machine (SVM) were selected according to jackknife cross-validation. DephosSitePred yielded Matthews correlation coefficients of 0.686 for protein tyrosine phosphatase 1B (PTP1B), 0.668 for Src homology region 2 domain-containing phosphatase (SHP)-1, and 0.748 for SHP-2 substrate sites, which significantly outperformed other existing predictors. Moreover, 30 times of 5-fold cross-validations showed that DephosSitePred achieved average area under the curve values of 0.968, 0.968, and 0.982 for PTP1B, SHP-1 and SHP-2, respectively, which were 0.115, 0.105 and 0.105 higher than those of the second best model, MGPS-DEPHOS, respectively. DephosSitePred is indeed an effective auxiliary tool for in silico identification of dephosphorylation sites and may help to reveal the physiological and pathological role of dephosphorylation protein."	"Dynamics of clonal evolution in myelodysplastic syndromes. To elucidate differential roles of mutations in myelodysplastic syndromes (MDS), we investigated clonal dynamics using whole-exome and/or targeted sequencing of 699 patients, of whom 122 were analyzed longitudinally. Including the results from previous reports, we assessed a total of 2,250 patients for mutational enrichment patterns. During progression, the number of mutations, their diversity and clone sizes increased, with alterations frequently present in dominant clones with or without their sweeping previous clones. Enriched in secondary acute myeloid leukemia (sAML; in comparison to high-risk MDS), FLT3, PTPN11, WT1, IDH1, NPM1, IDH2 and NRAS mutations (type 1) tended to be newly acquired, and were associated with faster sAML progression and a shorter overall survival time. Significantly enriched in high-risk MDS (in comparison to low-risk MDS), TP53, GATA2, KRAS, RUNX1, STAG2, ASXL1, ZRSR2 and TET2 mutations (type 2) had a weaker impact on sAML progression and overall survival than type-1 mutations. The distinct roles of type-1 and type-2 mutations suggest their potential utility in disease monitoring."	"Dual Shp2 and Pten Deficiencies Promote Non-alcoholic Steatohepatitis and Genesis of Liver Tumor-Initiating Cells. The complexity of liver tumorigenesis is underscored by the recently observed anti-oncogenic effects of oncoproteins, although the mechanisms are unclear. Shp2/Ptpn11 is a proto-oncogene in hematopoietic cells and antagonizes the effect of tumor suppressor Pten in leukemogenesis. In contrast, we show here cooperative functions of Shp2 and Pten in suppressing hepatocarcinogenesis. Ablating both Shp2 and Pten in hepatocytes induced early-onset non-alcoholic steatohepatitis (NASH) and promoted genesis of liver tumor-initiating cells likely due to augmented cJun expression/activation and elevated ROS and inflammation in the hepatic microenvironment. Inhibiting cJun partially suppressed NASH-driven liver tumorigenesis without improving NASH. SHP2 and PTEN deficiencies were detected in liver cancer patients with poor prognosis. These data depict a mechanism of hepato-oncogenesis and suggest a potential therapeutic strategy."	"Low-dose dasatinib rescues cardiac function in Noonan syndrome. Noonan syndrome (NS) is a common autosomal dominant disorder that presents with short stature, craniofacial dysmorphism, and cardiac abnormalities. Activating mutations in the PTPN11 gene encoding for the Src homology 2 (SH2) domain-containing protein tyrosine phosphatase-2 (SHP2) causes approximately 50% of NS cases. In contrast, NS with multiple lentigines (NSML) is caused by mutations that inactivate SHP2, but it exhibits some overlapping abnormalities with NS. Protein zero-related (PZR) is a SHP2-binding protein that is hyper-tyrosyl phosphorylated in the hearts of mice from NS and NSML, suggesting that PZR and the tyrosine kinase that catalyzes its phosphorylation represent common targets for these diseases. We show that the tyrosine kinase inhibitor, dasatinib, at doses orders of magnitude lower than that used for its anticancer activities inhibited PZR tyrosyl phosphorylation in the hearts of NS mice. Low-dose dasatinib treatment of NS mice markedly improved cardiomyocyte contractility and functionality. Remarkably, a low dose of dasatinib reversed the expression levels of molecular markers of cardiomyopathy and reduced cardiac fibrosis in NS and NSML mice. These results suggest that PZR/SHP2 signaling is a common target of both NS and NSML and that low-dose dasatinib may represent a unifying therapy for the treatment of PTPN11-related cardiomyopathies."	"T lymphocyte SHP2-deficiency triggers anti-tumor immunity to inhibit colitis-associated cancer in mice. Nonresolving inflammation is involved in the initiation and progression process of tumorigenesis. Src homology 2 domain-containing tyrosine phosphatase 2 (SHP2) is known to inhibit acute inflammation but its role in chronic inflammation-associated cancer remains unclear. The role of SHP2 in T cells in dextran sulfate sodium (DSS)-induced colitis and azoxymethane-DSS-induced colitis-associated carcinogenesis was examined using SHP2CD4-/- conditional knockout mice. SHP2 deficiency in T cells aggravated colitis with increased level of pro-inflammatory cytokines including IFN-γ and IL-17A. In contrast, the SHP2CD4-/- mice developed much fewer and smaller tumors than wild type mice with higher level of IFN-γ and enhanced cytotoxicity of CD8+ T cells in the tumor and peritumoral areas. At the molecular level, STAT1 was hyper-phosphorylated in T cells lacking SHP2, which may account for the increased Th1 differentiation and IFN-γ secretion. IFN-γ neutralization or IFN-γ receptor knockout but not IL-17A neutralization, abrogated the anti-tumor effect of SHP2 knockout with lowered levels of perforin 1, FasL and granzyme B. Finally, the expression of granzyme B was negatively correlated with the malignancy of colon cancer in human patients. In conclusion, these findings suggest a new strategy to treat colitis-associated cancer via targeting SHP2."	"Melanoma exosomes deliver a complex biological payload that upregulates PTPN11 to suppress T lymphocyte function. As exosomes are emerging as a new mode of intercellular communication, we hypothesized that the payload contained within exosomes is shaped by somatic evolution. To test this, we assayed the impact on primary CD8+ T-cell function, a key mechanism for antitumor immunity, of exosomes derived from three melanoma-related cell lines. While morphologically similar, exosomes from each cell line were functionally different, as B16F0 exosomes dose-dependently suppressed T-cell proliferation. In contrast, Cloudman S91 exosomes promoted T-cell proliferation and Melan-A exosomes had a negligible effect on primary CD8+ T cells. Mechanistically, transcript profiling suggested that exosomal mRNA is enriched for full-length mRNAs that target immune-related pathways. Interestingly, B16F0 exosomes were unique in that they contained both protein and mRNA for PTPN11, which inhibited T-cell proliferation. Collectively, the results suggest that upregulation of PTPN11 by B16F0 exosomes to tumor infiltrating lymphocytes would bypass the extracellular control of the immune checkpoints."	"Decline in arylsulfatase B leads to increased invasiveness of melanoma cells. Arylsulfatase B (ARSB; N-acetylgalactosamine 4-sulfatase) is reduced in several malignancies, but levels in melanoma have not been investigated previously. Experiments were performed in melanoma cell lines to determine ARSB activity and impact on melanoma invasiveness. ARSB activity was reduced ~50% in melanoma cells compared to normal melanocytes. Silencing ARSB significantly increased the mRNA expression of chondroitin sulfate proteoglycan(CSPG)4 and pro-matrix metalloproteinase(MMP)-2, known mediators of melanoma progression. Also, invasiveness and MMP activity increased when ARSB was reduced, and recombinant ARSB inhibited invasiveness and MMP activity. Since the only known function of ARSB is to remove 4-sulfate groups from the N-acetylgalactosamine 4-sulfate residue at the non-reducing end of chondroitin 4-sulfate (C4S) or dermatan sulfate, experiments were performed to determine the transcriptional mechanisms by which expression of CSPG4 and MMP2 increased. Promoter activation of CSPG4 was mediated by reduced binding of galectin-3 to C4S when ARSB activity declined. In contrast, increased pro-MMP2 expression was mediated by increased binding of the non-receptor tyrosine phosphatase SHP2 to C4S. Increased phospho-ERK1,2 resulted from SHP2 inhibition. Combined effects of increased C4S, CSPG4, and MMP2 increased the invasiveness of the melanoma cells, and therapy with recombinant ARSB may inhibit melanoma progression."	"Myelodysplastic and myeloproliferative disorders of childhood. Myelodysplastic syndrome (MDS) and myeloproliferative disorders are rare in children; they are divided into low-grade MDS (refractory cytopenia of childhood [RCC]), advanced MDS (refractory anemia with excess blasts in transformation), and juvenile myelomonocytic leukemia (JMML), each with different characteristics and management strategies. Underlying genetic predisposition is recognized in an increasing number of patients. Germ line GATA2 mutation is found in 70% of adolescents with MDS and monosomy 7. It is challenging to distinguish RCC from aplastic anemia, inherited bone marrow failure, and reactive conditions. RCC is often hypoplastic and may respond to immunosuppressive therapy. In case of immunosuppressive therapy failure, hypercellular RCC, or RCC with monosomy 7, hematopoietic stem cell transplantation (HSCT) using reduced-intensity conditioning regimens is indicated. Almost all patients with refractory anemia with excess blasts are candidates for HSCT; children age 12 years or older have a higher risk of treatment-related death, and the conditioning regimens should be adjusted accordingly. Unraveling the genetics of JMML has demonstrated that JMML in patients with germ line PTPN11 and CBL mutations often regresses spontaneously, and therapy is seldom indicated. Conversely, patients with JMML and neurofibromatosis type 1, somatic PTPN11, KRAS, and most of those with NRAS mutations have a rapidly progressive disease, and early HSCT is indicated. The risk of relapse after HSCT is high, and prophylaxis for graft-versus-host disease and monitoring should be adapted to this risk."	"Noonan syndrome-causing genes: Molecular update and an assessment of the mutation rate. Noonan syndrome is a common autosomal dominant disorder characterized by short stature, congenital heart disease and facial dysmorphia with an incidence of 1/1000 to 2500 live births. Up to now, several genes have been proven to be involved in the disturbance of the transduction signal through the RAS-MAP Kinase pathway and the manifestation of Noonan syndrome. The first gene described was PTPN11, followed by SOS1, RAF1, KRAS, BRAF, NRAS, MAP2K1, and RIT1, and recently SOS2, LZTR1, and A2ML1, among others. Progressively, the physiopathology and molecular etiology of most signs of Noonan syndrome have been demonstrated, and inheritance patterns as well as genetic counseling have been established. In this review, we summarize the data concerning clinical features frequently observed in Noonan syndrome, and then, we describe the molecular etiology as well as the physiopathology of most Noonan syndrome-causing genes. In the second part of this review, we assess the mutational rate of Noonan syndrome-causing genes reported up to now in most screening studies. This review should give clinicians as well as geneticists a full view of the molecular aspects of Noonan syndrome and the authentic prevalence of the mutational events of its causing-genes. It will also facilitate laying the groundwork for future molecular diagnosis research, and the development of novel treatment strategies."	"Tanshinone IIA induced cell death via miR30b-p53-PTPN11/SHP2 signaling pathway in human hepatocellular carcinoma cells. Tanshinone IIA, a multi-pharmaceutical compound from traditional Chinese herb, has been reported to have anti-hepatocarcinomic (HCC) properties through cell death induction. Apart from the typical p53-dependent pathway, mechanisms of the anti-carcinogenic role of Tanshinone remain scarce. In an effort to explore the mechanism behind Tanshinone IIA, we detected the upstream of the p53 and the potential novel pathway. Tanshinone IIA dose-dependently initiated HepG2 cell apoptosis and cell cycle arrest at the G1 checkpoint. In the miR30 family, only the transcription of miR30b was downregulated by Tanshinone IIA, which subsequently upregulated both the genomic and protein levels of p53. Further, we screened that PTPN11 and Tp53 are the two critical genomes involved in the pharmacology of Tanshinone IIA. Building upon LASAGNA-search and kinetics binding assay, p53 was found to be a potential transcription factor for PTPN11. Concomitant with the expression of p53, Tanshinone IIA stimulated both PTPN11 and its encoded protein SHP2. Inhibition miR30b attenuated the Tanshinone IIA-induced cytotoxicity, level of p53 and PTPN11 in HepG2 cells. Finally, the apoptotic molecules such as Bax/Bcl2, cleavage caspase 3 and the cell cycle regulation factors including p21, cyclin D1, and CDK6 were changed by Tanshinone IIA. Several cytotoxic endpoints induced by Tanshinone IIA were also checked in Hep3B cells. This study confirmed that Tanshinone IIA may induce hepatoma cell death through the miR30b-p53- PTPN11/SHP2 pathway. With regard to the complicated tumorigenesis of HCC and the multi-targets of Tanshinone IIA, our results propose developing Tanshinone IIA for clinic therapy and the interference of HCC."	"Progression in patients with low- and intermediate-1-risk del(5q) myelodysplastic syndromes is predicted by a limited subset of mutations. A high proportion of patients with lower-risk del(5q) myelodysplastic syndromes will respond to treatment with lenalidomide. The median duration of transfusion-independence is 2 years with some long-lasting responses, but almost 40% of patients progress to acute leukemia by 5 years after starting treatment. The mechanisms underlying disease progression other than the well-established finding of small TP53-mutated subclones at diagnosis remain unclear. We studied a longitudinal cohort of 35 low- and intermediate-1-risk del(5q) patients treated with lenalidomide (n=22) or not (n=13) by flow cytometric surveillance of hematopoietic stem and progenitor cell subsets, targeted sequencing of mutational patterns, and changes in the bone marrow microenvironment. All 13 patients with disease progression were identified by a limited number of mutations in TP53, RUNX1, and TET2, respectively, with PTPN11 and SF3B1 occurring in one patient each. TP53 mutations were found in seven of nine patients who developed acute leukemia, and were documented to be present in the earliest sample (n=1) and acquired during lenalidomide treatment (n=6). By contrast, analysis of the microenvironment, and of hematopoietic stem and progenitor cells by flow cytometry was of limited prognostic value. Based on our data, we advocate conducting a prospective study aimed at investigating, in a larger number of cases of del(5q) myelodysplastic syndromes, whether the detection of such mutations before and after lenalidomide treatment can guide clinical decision-making."	"Cooperation of MLL/AF10(OM-LZ) with PTPN11 activating mutation induced monocytic leukemia with a shorter latency in a mouse bone marrow transplantation model. PTPN11 mutation, a RAS signaling pathway mutation, is associated with MLL translocations in acute leukemia. A girl with MLL/AF10 AML was found to carry PTPN11<sup>G503A</sup> . To study the impact of PTPN11<sup>G503A</sup> cooperating with MLL/AF10 on leukemogenesis, we established a retroviral transduction/transplantation mouse model. Compared to the MLL/AF10(OM-LZ) leukemia cells harboring PTPN11<sup>wt</sup> , the cells harboring PTPN11<sup>G503A</sup> were hypersensitive to GM-CSF and IL3, and more resistant to death upon treatment with daunorubicin but sensitive to cytarabine. The cells harboring PTPN11<sup>G503A</sup> autonomously differentiated into macrophages (1.8%) in the medium containing IL3. Further studies showed that the cells had an elevated (∼2.9-fold) Csf1 transcription level and secreted more (∼4.5-fold) M-CSF to the medium which can stimulate monocyte/macrophage differentiation of BM cells. Mice transplanted with the cells harboring PTPN11<sup>G503A</sup> had a higher concentration of M-CSF in plasma. When mixed with the MLL/AF10(OM-LZ) leukemia cells harboring PTPN11<sup>wt</sup> , the cells harboring PTPN11<sup>G503A</sup> had an increased competitive engraftment and clonal expansion in the BM and spleen of recipient mice, although no competitive growth advantage was observed in the in vitro co-culturing assays. The mice transplanted with the MLL/AF10(OM-LZ) cells harboring PTPN11<sup>wt</sup> developed myelomonocytic leukemia, while those transplanted with the cells harboring PTPN11<sup>G503A</sup> -induced monocytic leukemia in a shorter latency. Our results demonstrated that addition of PTPN11<sup>G503A</sup> to MLL/AF10 affected cell proliferation, chemo-resistance, differentiation, in vivo BM recruitment/clonal expansion and accelerated disease progression."	"Inhibition of the Gab2/PI3K/mTOR signaling ameliorates myeloid malignancy caused by Ptpn11 (Shp2) gain-of-function mutations. Activating mutations, such as E76K and D61Y, in PTPN11 (SHP2), a protein tyrosine phosphatase implicated in multiple cell signaling processes, are associated with 35% of patients with juvenile myelomonocytic leukemia (JMML), an aggressive childhood myeloproliferative neoplasm (MPN). Here we show that the interaction between leukemia-associated mutant Shp2 and Gab2, a scaffolding protein important for cytokine-induced PI3K/Akt signaling, was enhanced, and that the mTOR pathway was elevated in Ptpn11<sup>E76K/+</sup> leukemic cells. Importantly, MPN induced by the Ptpn11<sup>E76K/+</sup> mutation was markedly attenuated in Ptpn11<sup>E76K/+</sup>/Gab2<sup>-/-</sup> double mutant mice-overproduction of myeloid cells was alleviated, splenomegaly was diminished and myeloid cell infiltration in nonhematopoietic organs was decreased in these double mutants. Excessive myeloid differentiation of stem cells was also normalized by depletion of Gab2. Acute leukemia progression of MPN was reduced in the double mutant mice and, as such, their survival was much prolonged. Furthermore, treatment of Ptpn11<sup>E76K/+</sup> mice with Rapamycin, a specific and potent mTOR inhibitor, mitigated MPN phenotypes. Collectively, this study reveals an important role of the Gab2/PI3K/mTOR pathway in mediating the pathogenic signaling of the PTPN11 gain-of-function mutations and a therapeutic potential of Rapamycin for PTPN11 mutation-associated JMML."	"Leukaemogenic effects of Ptpn11 activating mutations in the stem cell microenvironment. Germline activating mutations of the protein tyrosine phosphatase SHP2 (encoded by PTPN11), a positive regulator of the RAS signalling pathway, are found in 50% of patients with Noonan syndrome. These patients have an increased risk of developing leukaemia, especially juvenile myelomonocytic leukaemia (JMML), a childhood myeloproliferative neoplasm (MPN). Previous studies have demonstrated that mutations in Ptpn11 induce a JMML-like MPN through cell-autonomous mechanisms that are dependent on Shp2 catalytic activity. However, the effect of these mutations in the bone marrow microenvironment remains unclear. Here we report that Ptpn11 activating mutations in the mouse bone marrow microenvironment promote the development and progression of MPN through profound detrimental effects on haematopoietic stem cells (HSCs). Ptpn11 mutations in mesenchymal stem/progenitor cells and osteoprogenitors, but not in differentiated osteoblasts or endothelial cells, cause excessive production of the CC chemokine CCL3 (also known as MIP-1α), which recruits monocytes to the area in which HSCs also reside. Consequently, HSCs are hyperactivated by interleukin-1β and possibly other proinflammatory cytokines produced by monocytes, leading to exacerbated MPN and to donor-cell-derived MPN following stem cell transplantation. Remarkably, administration of CCL3 receptor antagonists effectively reverses MPN development induced by the Ptpn11-mutated bone marrow microenvironment. This study reveals the critical contribution of Ptpn11 mutations in the bone marrow microenvironment to leukaemogenesis and identifies CCL3 as a potential therapeutic target for controlling leukaemic progression in Noonan syndrome and for improving stem cell transplantation therapy in Noonan-syndrome-associated leukaemias."	"Targeting of Ras-mediated FGF signaling suppresses Pten-deficient skin tumor. Deficiency in PTEN (phosphatase and tensin homolog deleted on chromosome 10) is the underlying cause of PTEN hamartoma tumor syndrome and a wide variety of human cancers. In skin epidermis, we have previously identified an autocrine FGF signaling induced by loss of Pten in keratinocytes. In this study, we demonstrate that skin hyperplasia requires FGF receptor adaptor protein Frs2α and tyrosine phosphatase Shp2, two upstream regulators of Ras signaling. Although the PI3-kinase regulatory subunits p85α and p85β are dispensable, the PI3-kinase catalytic subunit p110α requires interaction with Ras to promote hyperplasia in Pten-deficient skin, thus demonstrating an important cross-talk between Ras and PI3K pathways. Furthermore, genetic and pharmacological inhibition of Ras-MAPK pathway impeded epidermal hyperplasia in Pten animals. These results reveal a positive feedback loop connecting Pten and Ras pathways and suggest that FGF-activated Ras-MAPK pathway is an effective therapeutic target for preventing skin tumor induced by aberrant Pten signaling."	"Regulation of self-renewing neural progenitors by FGF/ERK signaling controls formation of the inferior colliculus. The embryonic tectum displays an anteroposterior gradient in development and produces the superior colliculus and inferior colliculus. Studies suggest that partition of the tectum is controlled by different strengths and durations of FGF signals originated from the so-called isthmic organizer at the mid/hindbrain junction; however, the underlying mechanism is unclear. We show that deleting Ptpn11, which links FGF with the ERK pathway, prevents inferior colliculus formation by depleting a previously uncharacterized stem cell zone. The stem-zone loss is attributed to shortening of S phase and acceleration of cell cycle exit and neurogenesis. Expression of a constitutively active Mek1 (Mek1<sup>DD</sup>), the known ERK activator, restores the tectal stem zone and the inferior colliculus without Ptpn11. By contrast, Mek1<sup>DD</sup> expression fails to rescue the tectal stem zone and the inferior colliculus in the absence of Fgf8 and the isthmic organizer, indicating that FGF and Mek1<sup>DD</sup> initiate qualitatively and/or quantitatively distinctive signaling. Together, our data show that the formation of the inferior colliculus relies on the provision of new cells from the tectal stem zone. Furthermore, distinctive ERK signaling mediates Fgf8 in the control of cell survival, tissue polarity and cytogenetic gradient during the development of the tectum."	"Increased Src Family Kinase Activity Disrupts Excitatory Synaptic Transmission and Impairs Remote Fear Memory in Forebrain Shp2-Deficient Mice. Src homolog domain-containing phosphatase 2 (Shp2) signals a variety of cellular and physiological functions including learning and memory. Dysregulation of ERK signaling is known to be responsible for the cognitive deficits associated with gain-of-function mutated Shp2 mimicking Noonan syndrome. However, here, we report that CaMKIIα-cre induced knockout (CaSKO) of Shp2 in hippocampal pyramidal neurons resulted in increased Src activity, upregulated phosphorylation of N-methyl-D-aspartate receptors (NMDARs) at Y1325 of GluN2A and at Y1472 of GluN2B, disrupted the balance of synaptic transmission, and impaired long-term potentiation and remote contextual fear memory. Administration of PP2, a specific Src family kinase inhibitor, reversed the tyrosine phosphorylation of NMDARs, restored basal synaptic transmission, and rescued the contextual fear memory deficit in CaSKO mice without altering the phospho-ERK level. Taken together, our results reveal a novel role of Shp2 in NMDAR-dependent synaptic function and fear memory via the Src signaling pathway rather than the ERK pathway, and suggest a complicated mechanism for Shp2-associated cognitive deficits."	"SHP-2-upregulated ZEB1 is important for PDGFRα-driven glioma epithelial-mesenchymal transition and invasion in mice and humans. Gliomas are highly malignant brain tumors that are highly invasive and resistant to conventional therapy. Receptor tyrosine kinases (RTKs) such as PDGFRα (platelet-derived growth factor receptor-α), which show frequent aberrant activation in gliomas, are associated with a process of epithelial-mesenchymal transition (EMT), a cellular alteration that confers a more invasive and drug-resistant phenotype. Although this phenomenon is well documented in human cancers, the processes by which RTKs including PDGFRα mediate EMT are largely unknown. Here, we report that SHP-2 (encoded by PTPN11) upregulates an EMT inducer, ZEB1, to mediate PDGFRα-driven glioma EMT, invasion and growth in glioma cell lines and patient-derived glioma stem cells (GSCs) using cell culture and orthotopic xenograft models. ZEB1 and activated PDGFRα were coexpressed in invasive regions of mouse glioma xenografts and clinical glioma specimens. Glioma patients with high levels of both phospho-PDGFRα (p-PDGFRα) and ZEB1 had significantly shorter overall survival compared with those with low expression of p-PDGFRα and ZEB1. Knockdown of ZEB1 inhibited PDGFA/PDGFRα-stimulated glioma EMT, tumor growth and invasion in glioma cell lines and patient-derived GSCs. PDGFRα mutant deficient of SHP2 binding (PDGFRα-F720) or phosphoinositide 3-kinase (PI3K) binding (PDGFRα-F731/42), knockdown of SHP2 or treatments of pharmacological inhibitor for PDGFRα-signaling effectors attenuated PDGFA/PDGFRα-stimulated ZEB1 expression, cell migration and GSC proliferation. Importantly, SHP-2 acts together with PI3K/AKT to regulate a ZEB1-miR-200 feedback loop in PDGFRα-driven gliomas. Taken together, our findings uncover a new pathway in which ZEB1 functions as a key regulator for PDGFRα-driven glioma EMT, invasiveness and growth, suggesting that ZEB1 is a promising therapeutic target for treating gliomas with high PDGFRα activation."	"Integrated microRNA and protein expression analysis reveals novel microRNA regulation of targets in fetal down syndrome. Down syndrome (DS) is caused by trisomy of human chromosome 21 and is associated with a number of deleterious phenotypes. To investigate the role of microRNA (miRNA) in the regulation of DS, high‑throughput Illumina sequencing technology and isobaric tagging for relative and absolute protein quantification analysis were utilized for simultaneous expression profiling of miRNA and protein in fetuses with DS and normal fetuses. A total of 344 miRNAs were associated with DS. Gene Ontology and Kyoto Encyclopedia of Genes and Genomes pathway analyses were used to investigate the proteins found to be differentially expressed. Functionally important miRNAs were determined by identifying enriched or depleted targets in the transcript and the protein expression levels were consistent with miRNA regulation. The results indicated that GRB2, TMSB10, RUVBL2, the hsa‑miR‑329 and hsa‑miR‑27b, hsa‑miR‑27a targets, and MAPK1, PTPN11, ACTA2 and PTK2 or other differentially expressed proteins were connected with each other directly or indirectly. Integrative analysis of miRNAs and proteins provided an expansive view of the molecular signaling pathways in DS."	"SH2 Domain-Containing Phosphatase-2 Is a Novel Antifibrotic Regulator in Pulmonary Fibrosis. Idiopathic pulmonary fibrosis (IPF) is a chronic fatal lung disease with dismal prognosis and no cure. The potential role of the ubiquitously expressed SH2 domain-containing tyrosine phosphatase-2 (SHP2) as a therapeutic target has not been studied in IPF. To determine the expression, mechanistic role, and potential therapeutic usefulness of SHP2 in pulmonary fibrosis. The effects of SHP2 overexpression and inhibition on fibroblast response to profibrotic stimuli were analyzed in vitro in primary human and mouse lung fibroblasts. In vivo therapeutic effects were assessed in the bleomycin model of lung fibrosis by SHP2-lentiviral administration and transgenic mice carrying a constitutively active SHP2 mutation. SHP2 was down-regulated in lungs and lung fibroblasts obtained from patients with IPF. Immunolocalization studies revealed that SHP2 was absent within fibroblastic foci. Loss of SHP2 expression or activity was sufficient to induce fibroblast-to-myofibroblast differentiation in primary human lung fibroblasts. Overexpression of constitutively active SHP2 reduced the responsiveness of fibroblasts to profibrotic stimuli, including significant reductions in cell survival and myofibroblast differentiation. SHP2 effects were mediated through deactivation of fibrosis-relevant tyrosine kinase and serine/threonine kinase signaling pathways. Mice carrying the Noonan syndrome-associated gain-of-function SHP2 mutation (SHP2<sup>D61G/+</sup>) were resistant to bleomycin-induced pulmonary fibrosis. Restoration of SHP2 levels in vivo through lentiviral delivery blunted bleomycin-induced pulmonary fibrosis. Our data suggest that SHP2 is an important regulator of fibroblast differentiation, and its loss as observed in IPF facilitates profibrotic phenotypic changes. Augmentation of SHP2 activity or expression should be investigated as a novel therapeutic strategy for IPF."	"DNMT3A mutations are associated with inferior overall and leukemia-free survival in chronic myelomonocytic leukemia. DNMT3A mutations are seen in ∼5% of patients with chronic myelomonocytic leukemia (CMML) and thus far, have had an indeterminate prognostic impact on survival. We carried out this study to assess the prognostic impact of DNMT3A mutations on a larger informative cohort of CMML patients (n = 261). DNMT3A mutations were seen in 6% (n = 16); 56% (n = 9) male, with a median age of 64 years. Eighty-one % of DNMT3A mutations were missense, with the Arg882 mutational hot spot accounting for 63% of all changes. Five (31%) patients had an abnormal karyotype whereas concurrent gene mutations (SF3B1/SRSF2/U2AF1-56%, TET2-50%, and ASXL1-25%) were seen in all patients. Apart from a higher frequency of SF3B1 (P = 0.0001) and PTPN11 (P = 0.005) mutations and a lower frequency of SRSF2 (P = 0.004) mutations, there were no significant differences between DNMT3A mutated patients and their wildtype counterparts. In univariate analysis, survival was shorter in DNMT3A mutated (median 8 months) versus wildtype (median 27 months) patients (P = 0.0007; HR 2.9, 95% CI 1.5-5.7); with other variables of significance including lower hemoglobin (P = 0.002), higher leukocyte count (P = 0.0009), higher monocyte count (P = 0.0012), circulating blast % (P = 0.001), circulating immature myeloid cells (P = 0.01), bone marrow blast % (P = 0.045), abnormal karyotype (P = 0.02), and ASXL1 (P = 0.01) mutations. In a multivariable model that included the aforementioned variables, when both DNMT3A and ASXL1 mutations were added, only DNMT3A (P &lt; 0.0001) and ASXL1 (P = 0.004) mutations remained significant. DNMT3A mutations were also predictive of a shortened leukemia-free survival. These findings warrant inclusion of DNMT3A mutations in molecularly integrated CMML prognostic models. Am. J. Hematol. 92:56-61, 2017. © 2016 Wiley Periodicals, Inc."	"Clonal and microclonal mutational heterogeneity in high hyperdiploid acute lymphoblastic leukemia. High hyperdiploidy (HD), the most common cytogenetic subtype of B-cell acute lymphoblastic leukemia (B-ALL), is largely curable but significant treatment-related morbidity warrants investigating the biology and identifying novel drug targets. Targeted deep-sequencing of 538 cancer-relevant genes was performed in 57 HD-ALL patients lacking overt KRAS and NRAS hotspot mutations and lacking common B-ALL deletions to enrich for discovery of novel driver genes. One-third of patients harbored damaging mutations in epigenetic regulatory genes, including the putative novel driver DOT1L (n=4). Receptor tyrosine kinase (RTK)/Ras/MAPK signaling pathway mutations were found in two-thirds of patients, including novel mutations in ROS1, which mediates phosphorylation of the PTPN11-encoded protein SHP2. Mutations in FLT3 significantly co-occurred with DOT1L (p=0.04), suggesting functional cooperation in leukemogenesis. We detected an extraordinary level of tumor heterogeneity, with microclonal (mutant allele fraction &lt;0.10) KRAS, NRAS, FLT3, and/or PTPN11 hotspot mutations evident in 31/57 (54.4%) patients. Multiple KRAS and NRAS codon 12 and 13 microclonal mutations significantly co-occurred within tumor samples (p=4.8x10-4), suggesting ongoing formation of and selection for Ras-activating mutations. Future work is required to investigate whether tumor microheterogeneity impacts clinical outcome and to elucidate the functional consequences of epigenetic dysregulation in HD-ALL, potentially leading to novel therapeutic approaches."	"Lentiginous phenotypes caused by diverse pathogenic genes (SASH1 and PTPN11): clinical and molecular discrimination. Pathogenic mutations in genes (SASH1 and PTPN11) can cause a rare genetic disorder associated with pigmentation defects and the well-known LEOPARD syndrome, respectively. Both conditions presented with lentiginous phenotypes. The aim of this study was to arrive at definite diagnoses of three Chinese boys with clinically suspected lentigines-related syndromes. ADAR1, ABCB6, SASH1 and PTPN11 were candidate genes for mutational screening. Sanger sequencing was performed to identify the mutations, whereas bioinformatic analysis was used to predict the pathogenicity of novel missense mutations. Two novel mutations c.1537A&gt;C (p.Ser513Arg) and 1527_1530dupAAGT (p.Leu511Lysfs*21) in SASH1 and a common p.Thr468Met mutation in PTPN11 were detected in three pediatric patients with lentiginous phenotypes, respectively. Comparisons between clinical presentations showed that SASH1-related phenotypes can exhibit hyper- and hypopigmentation on the trunk and extremities, similar to dyschromatosis, while scattered café au-lait spots usually appeared in PTPN11-related LEOPARD syndrome. Furthermore, the similarity in the clinical presentations of Peutz-Jeghers syndrome, Laugier-Hunziker syndrome, xeroderma pigmentosum, neurofibromatosis type I, suggesting that these conditions should be added into the differential diagnoses of lentiginous phenotypes."	"Mutational landscape, clonal evolution patterns, and role of RAS mutations in relapsed acute lymphoblastic leukemia. Although multiagent combination chemotherapy is curative in a significant fraction of childhood acute lymphoblastic leukemia (ALL) patients, 20% of cases relapse and most die because of chemorefractory disease. Here we used whole-exome and whole-genome sequencing to analyze the mutational landscape at relapse in pediatric ALL cases. These analyses identified numerous relapse-associated mutated genes intertwined in chemotherapy resistance-related protein complexes. In this context, RAS-MAPK pathway-activating mutations in the neuroblastoma RAS viral oncogene homolog (NRAS), kirsten rat sarcoma viral oncogene homolog (KRAS), and protein tyrosine phosphatase, nonreceptor type 11 (PTPN11) genes were present in 24 of 55 (44%) cases in our series. Interestingly, some leukemias showed retention or emergence of RAS mutant clones at relapse, whereas in others RAS mutant clones present at diagnosis were replaced by RAS wild-type populations, supporting a role for both positive and negative selection evolutionary pressures in clonal evolution of RAS-mutant leukemia. Consistently, functional dissection of mouse and human wild-type and mutant RAS isogenic leukemia cells demonstrated induction of methotrexate resistance but also improved the response to vincristine in mutant RAS-expressing lymphoblasts. These results highlight the central role of chemotherapy-driven selection as a central mechanism of leukemia clonal evolution in relapsed ALL, and demonstrate a previously unrecognized dual role of RAS mutations as drivers of both sensitivity and resistance to chemotherapy."	"SHP2 phosphatase as a novel therapeutic target for melanoma treatment. Melanoma ranks among the most aggressive and deadly human cancers. Although a number of targeted therapies are available, they are effective only in a subset of patients and the emergence of drug resistance often reduces durable responses. Thus there is an urgent need to identify new therapeutic targets and develop more potent pharmacological agents for melanoma treatment. Herein we report that SHP2 levels are frequently elevated in melanoma, and high SHP2 expression is significantly associated with more metastatic phenotype and poorer prognosis. We show that SHP2 promotes melanoma cell viability, motility, and anchorage-independent growth, through activation of both ERK1/2 and AKT signaling pathways. We demonstrate that SHP2 inhibitor 11a-1 effectively blocks SHP2-mediated ERK1/2 and AKT activation and attenuates melanoma cell viability, migration and colony formation. Most importantly, SHP2 inhibitor 11a-1 suppresses xenografted melanoma tumor growth, as a result of reduced tumor cell proliferation and enhanced tumor cell apoptosis. Taken together, our data reveal SHP2 as a novel target for melanoma and suggest SHP2 inhibitors as potential novel therapeutic agents for melanoma treatment."	"Integrated tumor and germline whole-exome sequencing identifies mutations in MAPK and PI3K pathway genes in an adolescent with rosette-forming glioneuronal tumor of the fourth ventricle. The integration of genome-scale studies such as whole-exome sequencing (WES) into the clinical care of children with cancer has the potential to provide insight into the genetic basis of an individual's cancer with implications for clinical management. This report describes the results of clinical tumor and germline WES for a patient with a rare tumor diagnosis, rosette-forming glioneuronal tumor of the fourth ventricle (RGNT). Three pathogenic gene alterations with implications for clinical care were identified: somatic activating hotspot mutations in FGFR1 (p.N546K) and PIK3CA (p.H1047R) and a germline pathogenic variant in PTPN11 (p.N308S) diagnostic for Noonan syndrome. The molecular landscape of RGNT is not well-described, but these data are consistent with prior observations regarding the importance of the interconnected MAPK and PI3K/AKT/mTOR signaling pathways in this rare tumor. The co-occurrence of FGFR1, PIK3CA, and PTPN11 alterations provides further evidence for consideration of RGNT as a distinct molecular entity from pediatric low-grade gliomas and suggests potential therapeutic strategies for this patient in the event of tumor recurrence as novel agents targeting these pathways enter pediatric clinical trials. Although RGNT has not been definitively linked with cancer predisposition syndromes, two prior cases have been reported in patients with RASopathies (Noonan syndrome and neurofibromatosis type 1 [NF1]), providing an additional link between these tumors and the mitogen-activated protein kinase (MAPK) signaling pathway. In summary, this case provides an example of the potential for genome-scale sequencing technologies to provide insight into the biology of rare tumors and yield both tumor and germline results of potential relevance to patient care. "	"Chemotherapy Effectiveness and Prognosis of Gastric Cancer Influenced by PTPN11 Polymorphisms. Since gastric cancer (GC) cells exhibited higher grades of SHP-2 encoded by PTPN11 than normal cells, it would be intriguing to explore whether PTPN11 single nucleotide polymorphisms (SNPs) would influence chemotherapy effectiveness and GC prognosis among a Chinese population. Altogether 430 late-stage GC patients and 960 healthy controls matched with age and sex were incorporated. Three PTPN11 SNPs (i.e. rs7958372, rs12229892 and rs2301756) were genotyped by polymerase chain reaction-restriction fragment length polymorphism (PCR-RFLP). Chemotherapies of cisplatin and 5-fluorouracil were performed for 4 cycles. Odds ratios (ORs) and 95% confidence intervals (CIs) were calculated using the logistic regression. Survival curves were plotted with Kaplan-Meier method and the COX proportional hazard model was used to analyze independent factors for GC prognosis. For rs12229892, AA and GA genotypes would cause 1.60-fold increase of GC risk in comparison to homozygote GG (OR = 1.60; 95% CI = 1.23-2.07; P &lt; 0.001). The A allele of rs2301756 was significantly associated with a decrease in the risk of GC when compared with G allele (OR = 0.81; 95% CI = 0.65-0.99; P = 0.043). Results from both 2-cycle and 4-cycle chemotherapy suggested that chemotherapy was significantly more effective for GA and AA genotypes of rs2301756 compared with homozygote GG (P &lt; 0.001). Besides, the joint impact of rs12229892 (AA) and environmental factors (i.e. smoking, family history, intake of processed food and H .pylori infection) on GC risk was considered as positive interaction, while that of rs2301756 (AA) and the above parameters was deemed as negative interaction. Finally, differentiation degree, axillary lymph node metastasis, rs12229892 and rs2301756 appeared as independent risk factors for GC development (all P &lt; 0.05). Since rs2301756 polymorphism of PTPN11 was associated with reduced risk of GC and better effects of chemotherapy on GC, it can be considered as a predictor of GC prognosis and the treatment target for GC."	"Genome-Wide Transcriptional Analysis Reveals the Protection against Hypoxia-Induced Oxidative Injury in the Intestine of Tibetans via the Inhibition of GRB2/EGFR/PTPN11 Pathways. The molecular mechanisms for hypoxic environment causing the injury of intestinal mucosal barrier (IMB) are widely unknown. To address the issue, Han Chinese from 100 m altitude and Tibetans from high altitude (more than 3650 m) were recruited. Histological and transcriptome analyses were performed. The results showed intestinal villi were reduced and appeared irregular, and glandular epithelium was destroyed in the IMB of Tibetans when compared with Han Chinese. Transcriptome analysis revealed 2573 genes with altered expression. The levels of 1137 genes increased and 1436 genes decreased in Tibetans when compared with Han Chinese. Gene ontology (GO) analysis indicated most immunological responses were reduced in the IMB of Tibetans when compared with Han Chinese. Gene microarray showed that there were 25-, 22-, and 18-fold downregulation for growth factor receptor-bound protein 2 (GRB2), epidermal growth factor receptor (EGFR), and tyrosine-protein phosphatase nonreceptor type 11 (PTPN11) in the IMB of Tibetans when compared with Han Chinese. The downregulation of EGFR, GRB2, and PTPN11 will reduce the production of reactive oxygen species and protect against oxidative stress-induced injury for intestine. Thus, the transcriptome analysis showed the protecting functions of IMB patients against hypoxia-induced oxidative injury in the intestine of Tibetans via affecting GRB2/EGFR/PTPN11 pathways. "	"SHP-2 phosphatase contributes to KRAS-driven intestinal oncogenesis but prevents colitis-associated cancer development. A major risk factor of developing colorectal cancer (CRC) is the presence of chronic inflammation in the colon. In order to understand how inflammation contributes to CRC development, the present study focused on SHP-2, a tyrosine phosphatase encoded by PTPN11 gene in which polymorphisms have been shown to be markers of colitis susceptibility. Conversely, gain-of-function mutations in PTPN11 gene (E76 residue) have been found in certain sporadic CRC. Results shown herein demonstrate that SHP-2 expression was markedly increased in sporadic human adenomas but not in advanced colorectal tumors. SHP-2 silencing inhibited proliferative, invasive and tumoral properties of both intestinal epithelial cells (IECs) transformed by oncogenic KRAS and of human CRC cells. IEC-specific expression of a SHP-2E76K activated mutant in mice was not sufficient to induce tumorigenesis but markedly promoted tumor growth under the ApcMin/+ background. Conversely, mice with a conditional deletion of SHP-2 in IECs developed colitis-associated adenocarcinomas with age, associated with sustained activation of Wnt/β-catenin, NFκB and STAT3 signalings in the colonic mucosae. Moreover, SHP-2 epithelial deficiency considerably increased tumor load in ApcMin/+ mice, shifting tumor incidence toward the colon. Overall, these results reveal that SHP-2 can exert opposing functions in the large intestine: it can promote or inhibit tumorigenesis depending of the inflammatory context."	"GBM-associated mutations and altered protein expression are more common in young patients. Geriatric glioblastoma (GBM) patients have a poorer prognosis than younger patients, but IDH1/2 mutations (more common in younger patients) confer a favorable prognosis. We compared key GBM molecular alterations between an elderly (age ≥ 70) and younger (18 &lt; = age &lt; = 45) cohort to explore potential therapeutic opportunities. Alterations more prevalent in the young GBM cohort compared to the older cohort (P &lt; 0.05) were: overexpression of ALK, RRM1, TUBB3 and mutation of ATRX, BRAF, IDH1, and TP53. However, PTEN mutation was significantly more frequent in older patients. Among patients with wild-type IDH1/2 status, TOPO1 expression was higher in younger patients, whereas MGMT methylation was more frequent in older patients. Within the molecularly-defined IDH wild-type GBM cohort, younger patients had significantly more mutations in PDGFRA, PTPN11, SMARCA4, BRAF and TP53. GBMs from 178 elderly patients and 197 young patients were analyzed using DNA sequencing, immunohistochemistry, in situ hybridization, and MGMT-methylation assay to ascertain mutational and amplification/expressional status. Significant molecular differences occurred in GBMs from elderly and young patients. Except for the older cohort's more frequent PTEN mutation and MGMT methylation, younger patients had a higher frequency of potential therapeutic targets."	"Identification of protein tyrosine phosphatase SHP-2 as a new target of perfluoroalkyl acids in HepG2 cells. Perfluoroalkyl acids (PFAAs) are widespread environmental contaminants which have been detected in humans and linked to adverse health effects. Previous toxicological studies mostly focused on nuclear receptor-mediated pathways and did not support the observed toxic effects. In this study, we aimed to investigate the molecular mechanisms of PFAA toxicities by identifying their biological targets in cells. Using a novel electrochemical biosensor, 16 PFAAs were evaluated for inhibition of protein tyrosine phosphatase SHP-2 activity. Their potency increased with PFAA chain length, with perfluorooctadecanoic acid (PFODA) showing the strongest inhibition. Three selected PFAAs, 25 μM perfluorooctanoic acid (PFOA), perfluorooctane sulfonic acid, and PFODA, also inhibited SHP-2 activity in HepG2 cells and increased paxillin phosphorylation level. PFOA was detected in the immunoprecipitated SHP-2 from the cells exposed to 250 μM PFOA, providing unequivocal evidence for the direct binding of PFOA with SHP-2 in the cell. Molecular docking rationalized the formation of PFAA/SHP-2 complex and chain length-dependent inhibition potency. Our results have established SHP-2 as a new cellular target of PFAAs."	"Variations in Multiple Syndromic Deafness Genes Mimic Non-syndromic Hearing Loss. The genetics of both syndromic (SHL) and non-syndromic hearing loss (NSHL) is characterized by a high degree of genetic heterogeneity. We analyzed whole exome sequencing data of 102 unrelated probands with apparently NSHL without a causative variant in known NSHL genes. We detected five causative variants in different SHL genes (SOX10, MITF, PTPN11, CHD7, and KMT2D) in five (4.9%) probands. Clinical re-evaluation of these probands shows that some of them have subtle syndromic findings, while none of them meets clinical criteria for the diagnosis of the associated syndrome (Waardenburg (SOX10 and MITF), Kallmann (CHD7 and SOX10), Noonan/LEOPARD (PTPN11), CHARGE (CHD7), or Kabuki (KMT2D). This study demonstrates that individuals who are evaluated for NSHL can have pathogenic variants in SHL genes that are not usually considered for etiologic studies."	"Mutations of myelodysplastic syndromes (MDS): An update. The plethora of knowledge gained on myelodysplastic syndromes (MDS), a heterogeneous pre-malignant disorder of hematopoietic stem cells, through sequencing of several pathway genes has unveiled molecular pathogenesis and its progression to AML. Evolution of phenotypic classification and risk-stratification based on peripheral cytopenias and blast count has moved to five-tier risk-groups solely concerning chromosomal aberrations. Increased frequency of complex abnormalities, which is associated with genetic instability, defines the subgroup of worst prognosis in MDS. However, the independent effect of monosomal karyotype remains controversial. Recent discoveries on mutations in RNA-splicing machinery (SF3B1, SRSF2, ZRSR2, U2AF1, U2AF2); DNA methylation (TET2, DNMT3A, IDH1/2); chromatin modification (ASXL1, EZH2); transcription factor (TP53, RUNX1); signal transduction/kinases (FLT3, JAK2); RAS pathway (KRAS, NRAS, CBL, NF1, PTPN11); cohesin complex (STAG2, CTCF, SMC1A, RAD21); DNA repair (ATM, BRCC3, DLRE1C, FANCL); and other pathway genes have given insights into the independent effects and interaction of co-occurrence of mutations on disease-phenotype. RNA-splicing and DNA methylation mutations appeared to occur early and are reported as 'founder' mutations in over 50% MDS patients. TET2 mutation, through altered DNA methylation, has been found to have independent prognostic response to hypomethylating agents. Moreover, presence of DNMT3A, TET2 and ASXL1 mutations in normal elderly individuals forms the basis of understanding that accumulation of somatic mutations may not cause direct disease-development; however, cooperation with other mutations in the genes that are frequently mutated in myeloid and other hematopoietic cancers might result in clonal expansion through self-renewal and/or proliferation of hematopoietic stem cells. Identification of small molecules as inhibitors of epigenetic mutations has opened avenues for tailoring targeted drug development. The recommendations of a Clinical Advisory Committee is being considered by WHO for a revised classification of risk-groups of MDS, which is likely to be published in mid 2016, based on the new developments and discoveries of gene mutations."	"[Effects of PTPN11 on the Biological Characteristics of AML Cells]. To detect the expression of PTPN11 gene in acute myeloid leukemia (AML) cell line and to explore the effects of PTPN11 over expressing on proliferation and apotosis of AML cell lines. The expression of PTPN11 in AML cell lines(HEL,U937, K562, KG-1, HL -60) was detected by RT-PCR, Q-PCR and Western blot. The PTPN11 gene was amplified by RT-PCR. PTPN11 DNA fragement and the lentiviral vector PCDH-CD513B were digested by BamHI and EcoRI, and then ligated by T4 DNA ligase. Recombinant lentivirus was generated by co-transfection of three-plasmids into 293FT cells using lipofectamine 2000. Then Q-PCR and Western blot were used to detect the expression of PTPN11 in the lentivirus infected HEL and U937 cells. The CCK-8 and Annexin V/7-AAD assays were performed to evaluate effects of PTPN11 on proliferation, apoptosis of HEL and U937 cells. All 5 AML cell lines expressed the PTPN11 gene, restriction analysis and gene sequencing confirmed that recombinant lentiviral vector was successfully constructed. After transfection of cells with the lentivirus, the recombinant plasmid could stably up-regulate the expression of PTPN11. Analysis of the proliferation and apoptosis of transfected AML cells indicated that as compared with the control group, the OD values of over-expression group were significantly higher and the apoptotic rates were significantly lower (P&lt;0.05). PTPN11 is expressed in all the 5 AML cell lines. The lentiviral expression vector carrying human PTPN11 and the engineered HEL and U937 cell lines stably up-regulating PTPN11 gene expression are successfully obtained. Over-expression of PTPN11 promotes the proliferation of AML cell lines and inhibit then apoptosis."	"Targeted nanoconjugate co-delivering siRNA and tyrosine kinase inhibitor to KRAS mutant NSCLC dissociates GAB1-SHP2 post oncogene knockdown. A tri-block nanoparticle (TBN) comprising of an enzymatically cleavable porous gelatin nanocore encapsulated with gefitinib (tyrosine kinase inhibitor (TKI)) and surface functionalized with cetuximab-siRNA conjugate has been synthesized. Targeted delivery of siRNA to undruggable KRAS mutated non-small cell lung cancer cells would sensitize the cells to TKI drugs and offers an efficient therapy for treating cancer; however, efficient delivery of siRNA and releasing it in cytoplasm remains a major challenge. We have shown TBN can efficiently deliver siRNA to cytoplasm of KRAS mutant H23 Non-Small Cell Lung Cancer (NSCLC) cells for oncogene knockdown; subsequently, sensitizing it to TKI. In the absence of TKI, the nanoparticle showed minimal toxicity suggesting that the cells adapt a parallel GAB1 mediated survival pathway. In H23 cells, activated ERK results in phosphorylation of GAB1 on serine and threonine residues to form GAB1-p85 PI3K complex. In the absence of TKI, knocking down the oncogene dephosphorylated ERK, and negated the complex formation. This event led to tyrosine phosphorylation at Tyr627 domain of GAB1 that regulated EGFR signaling by recruiting SHP2. In the presence of TKI, GAB1-SHP2 dissociation occurs, leading to cell death. The outcome of this study provides a promising platform for treating NSCLC patients harboring KRAS mutation."	"Ocular Manifestations of Noonan Syndrome: A Prospective Clinical and Genetic Study of 25 Patients. To determine the full spectrum of ocular manifestations in patients with Noonan syndrome (NS). Prospective cross-sectional clinical and genetic study in a tertiary referral center. Twenty-five patients with NS (mean age, 14 years; range, 8 months-25 years) clinically diagnosed by validated criteria. All patients were examined by the same team following a detailed study protocol. Genetic analyses were performed in 23 patients. Ocular abnormalities of vision and refraction, external ocular features, ocular position and motility, anterior segment, posterior segment, and intraocular pressure. Ocular features of vision and refraction were amblyopia (32%), myopia (40%), and astigmatism (52%). External ocular features were epicanthic folds (84%), hypertelorism (68%), ptosis (56%), high upper eyelid crease (64%), lower eyelid retraction (60%), abnormal upward slanting palpebral fissures (36%), downward slanting palpebral fissures (32%), and lagophthalmos (28%). Orthoptic abnormalities included strabismus (40%), abnormal stereopsis (44%), and limited ocular motility (40%). Anterior segment abnormalities included prominent corneal nerves (72%) and posterior embryotoxon (32%). Additional ocular features were found, including nonglaucomatous optic disc excavation (20%), relatively low (&lt;10 mmHg) intraocular pressure (22%), and optic nerve hypoplasia (4%). Mutations were established in 22 patients: 19 PTPN11 mutations (76%), 1 SOS1 mutation, 1 BRAF mutation, and 1 KRAS mutation. The patient with the highest number of prominent corneal nerves had an SOS1 mutation. The patient with the lowest visual acuity, associated with bilateral optic nerve hypoplasia, had a BRAF mutation. Patients with severe ptosis and nearly total absence of levator muscle function had PTPN11 mutations. All patients showed at least 3 ocular features (range, 3-13; mean, 7), including at least 1 external ocular feature in more than 95% of the patients. Noonan syndrome is a clinical diagnosis with multiple genetic bases associated with an extensive variety of congenital ocular abnormalities. Ocular features of NS are characterized by 1 or more developmental anomalies of the eyelids (involving the position, opening, and closure) associated with various other ocular abnormalities in childhood, including amblyopia, myopia, astigmatism, strabismus, limited ocular motility, prominent corneal nerves, and posterior embryotoxon."	"Identification of a PTPN11 hot spot mutation in a child with atypical LEOPARD syndrome. LEOPARD syndrome (LS) is an autosomal dominant inherited disorder primarily caused by mutations in the PTPN11, RAF1 and BRAF genes. Characteristic features include lentigines, craniofacial dysmorphism, myocardium or valve abnormalities, eletrocardiographic conduction defects and deafness. LS, neurofibromatosis type 1, Noonan syndrome and Legius syndrome are a group of highly overlapped disorders termed 'RASopathies'. Therefore, clinical discrimination between these syndromes represents a huge challenge. The present study reports a young child diagnosed with LS via identification of a common p.Thr468Met mutation in PTPN11. Taking into account two Taiwanese LS cases with an identical mutation, Thr468Met is likely to be the most prevalent mutation in the Chinese population. Furthermore, this study suggests that a clinical diagnosis of LS should be considered for individuals with congenital cardiac defects and atypical lentigines (i.e., light brown freckles) scattered particularly on the face. "	"Identification of differentially expressed genes in salivary adenoid cystic carcinoma cells associated with metastasis. Salivary adenoid cystic carcinoma (SACC) is a frequent type of salivary gland cancer which is characterized by slow growth but high incidence of distant metastasis. We aimed to identify therapeutic targets which are associated with metastasis of SACC. Total RNA was isolated from a low metastatic SACC cell line (ACC-2) and a highly metastatic SACC cell line (ACC-M), which was screened from ACC-2 by combination of in vivo selection and cloning in vitro. Then the total RNA was subjected to microarray analysis. Differentially expressed genes (DEGs) were screened from ACC-M compared with ACC-2, followed by Gene Ontology function and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analysis. Function annotation for DEGs also was performed. A protein-protein interaction network (PPI) was constructed for DEGs. A total of 1128 DEGs were identified from ACC-M cells compared with ACC-2 cells. Both up- and down-regulated DEGs were enriched in different functions in biological process (BP), cellular component (CC) and molecular function (MF). Additionally, down-regulated DEGs were mainly enriched in &quot;Apoptosis&quot; and &quot;Cytokine-cytokine receptor interaction&quot; pathways which involved IFN-α1, NTRK1 and TGF-β1. In the PPI network, PIK3CA, PTPN11 and PIK3R1 had a number of nodes greater than 10. Transforming growth factor β1 might play a pivotal role during lung metastasis of SACC and be selected as a candidate target for treatment of metastatic SACC. IFNA1, NTRK1 and PIK3CA were also associated with tumor metastasis."	"Cancer: Allosteric phosphatase inhibitor puts brake on cancer cells. NA"	"Genomic complexity and dynamics of clonal evolution in childhood acute myeloid leukemia studied with whole-exome sequencing. Despite significant improvement in treatment of childhood acute myeloid leukemia (AML), 30% of patients experience disease recurrence, which is still the major cause of treatment failure and death in these patients. To investigate molecular mechanisms underlying relapse, we performed whole-exome sequencing of diagnosis-relapse pairs and matched remission samples from 4 pediatric AML patients without recurrent cytogenetic alterations. Candidate driver mutations were selected for targeted deep sequencing at high coverage, suitable to detect small subclones (0.12%). BiCEBPα mutation was found to be stable and highly penetrant, representing a separate biological and clinical entity, unlike WT1 mutations, which were extremely unstable. Among the mutational patterns underlying relapse, we detected the acquisition of proliferative advantage by signaling activation (PTPN11 and FLT3-TKD mutations) and the increased resistance to apoptosis (hyperactivation of TYK2). We also found a previously undescribed feature of AML, consisting of a hypermutator phenotype caused by SETD2 inactivation. The consequent accumulation of new mutations promotes the adaptability of the leukemia, contributing to clonal selection. We report a novel ASXL3 mutation characterizing a very small subclone (&lt;1%) present at diagnosis and undergoing expansion (60%) at relapse. Taken together, these findings provide molecular clues for designing optimal therapeutic strategies, in terms of target selection, adequate schedule design and reliable response-monitoring techniques."	"MiR-204 silencing in intraepithelial to invasive cutaneous squamous cell carcinoma progression. Cutaneous squamous cell carcinoma (cSCC) is the second most common skin cancer and frequently progresses from an actinic keratosis (AK), a sun-induced keratinocyte intraepithelial neoplasia (KIN). Epigenetic mechanisms involved in the phenomenon of progression from AK to cSCC remain to be elicited. Expression of microRNAs in sun-exposed skin, AK and cSCC was analysed by Agilent microarrays. DNA methylation of miR-204 promoter was determined by bisulphite treatment and pyrosequencing. Identification of miR-204 targets and pathways was accomplished in HaCat cells. Immunofluorescence and immunohistochemistry were used to analyze STAT3 activation and PTPN11 expression in human biopsies. cSCCs display a marked downregulation of miR-204 expression when compared to AK. DNA methylation of miR-204 promoter was identified as one of the repressive mechanisms that accounts for miR-204 silencing in cSCC. In HaCaT cells miR-204 inhibits STAT3 and favours the MAPK signaling pathway, likely acting through PTPN11, a nuclear tyrosine phosphatase that is a direct miR-204 target. In non-peritumoral AK lesions, activated STAT3, as detected by pY705-STAT3 immunofluorescence, is retained in the membrane and cytoplasm compartments, whereas AK lesions adjacent to cSCCs display activated STAT3 in the nuclei. Our data suggest that miR-204 may act as a &quot;rheostat&quot; that controls the signalling towards the MAPK pathway or the STAT3 pathway in the progression from AK to cSCC."	"Copy number variants and rasopathies: germline KRAS duplication in a patient with syndrome including pigmentation abnormalities. RAS/MAPK pathway germline mutations were described in Rasopathies, a class of rare genetic syndromes combining facial abnormalities, heart defects, short stature, skin and genital abnormalities, and mental retardation. The majority of the mutations identified in the Rasopathies are point mutations which increase RAS/MAPK pathway signaling. Duplications encompassing RAS/MAPK pathway genes (PTPN11, RAF1, MEK2, or SHOC2) were more rarely described. Here we report, a syndromic familial case of a 12p duplication encompassing the dosage sensitive gene KRAS, whose phenotype overlapped with rasopathies. The patient was referred because of a history of mild learning disabilities, small size, facial dysmorphy, and pigmentation abnormalities (café-au-lait and achromic spots, and axillar lentigines). This phenotype was reminiscent of rasopathies. No mutation was identified in the most common genes associated with Noonan, cardio-facio-cutaneous, Legius, and Costello syndromes, as well as neurofibromatosis type 1. The patient constitutional DNA exhibited a ~10.5 Mb duplication at 12p, including the KRAS gene. The index case's mother carried the same chromosome abnormality and also showed development delay with short stature, and numerous café-au-lait spots. Duplication of the KRAS gene may participate in the propositus phenotype, in particular of the specific pigmentation abnormalities. Array-CGH or some other assessment of gene/exon CNVs of RAS/MAPK pathway genes should be considered in the evaluation of individuals with rasopathies."	"MicroRNA fingerprints in juvenile myelomonocytic leukemia (JMML) identified miR-150-5p as a tumor suppressor and potential target for treatment. Juvenile myelomonocytic leukemia (JMML) is an aggressive leukemia of early childhood characterized by aberrant proliferation of myelomonocytic cells and hypersensitivity to GM-CSF stimulation. Mutually exclusive mutations in the RAS/ERK pathway genes such as PTPN11, NRAS, KRAS, CBL, or NF1 are found in ~90% of the cases. These mutations give rise to disease at least in part by activating STAT5 through phosphorylation and by promoting cell growth. MicroRNAs (miRs) are small non-coding RNAs that regulate gene expression, which are often deregulated in leukemia. However, little is known about their role in JMML. Here, we report distinctive miR expression signatures associated with the molecular subgroups of JMML. Among the downregulated miRs in JMML, miR-150-5p was found to target STAT5b, a gene which is often over-activated in JMML, and contributes to the characteristic aberrant signaling of this disorder. Moreover, loss of miR-150-5p and upregulation of STAT5b expression were also identified in a murine model of JMML. Ectopic overexpression of miR-150-5p in mononuclear cells from three JMML patients significantly decreased cell proliferation. Altogether, our data indicate that miR expression is deregulated in JMML and may play a role in the pathogenesis of this disorder by modulating key effectors of cytokine receptor pathways."	"Histiocytic Sarcoma Associated with Coombs Negative Acute Hemolytic Anemia: A Rare Presentation. Histiocytic sarcoma (HS) rarely involves extranodal sites, such as the spleen. We report a unique pediatric case of massive splenomegaly and refractory Coombs negative hemolytic anemia (CNHA) secondary to HS. The CNHA resolved completely after an emergent splenectomy. Next generation sequencing (NGS) revealed novel ASXL1, PTPN11, KIT, and TP53 mutations, unmasking a clonal heterogeneity within the same neoplasm. "	"Lack of SIRPα phosphorylation and concomitantly reduced SHP-2-PI3K-Akt2 signaling decrease osteoblast differentiation. Normal differentiation of bone forming osteoblasts is a prerequisite for maintenance of skeletal health and is dependent on intricate cellular signaling pathways, including the essential transcription factor Runx2. The cell surface glycoprotein CD47 and its receptor signal regulatory protein alpha (SIRPα) have both been suggested to regulate bone cell differentiation. Here we investigated osteoblastic differentiation of bone marrow stromal cells from SIRPα mutant mice lacking the cytoplasmic signaling domain of SIRPα. An impaired osteoblastogenesis in SIRPα-mutant cell cultures was demonstrated by lower alkaline phosphatase activity and less mineral formation compared to wild-type cultures. This reduced osteoblastic differentiation potential in SIRPα-mutant stromal cells was associated with a significantly reduced expression of Runx2, osterix, osteocalcin, and alkaline phosphatase mRNA, as well as a reduced phosphorylation of SHP-2 and Akt2, as compared with that in wild-type stromal cells. Addition of a PI3K-inhibitor to wild-type stromal cells could mimic the impaired osteoblastogenesis seen in SIRPα-mutant cells. In conclusion, our data suggest that SIRPα signaling through SHP-2-PI3K-Akt2 strongly influences osteoblast differentiation from bone marrow stromal cells."	"Allosteric inhibition of SHP2 phosphatase inhibits cancers driven by receptor tyrosine kinases. The non-receptor protein tyrosine phosphatase SHP2, encoded by PTPN11, has an important role in signal transduction downstream of growth factor receptor signalling and was the first reported oncogenic tyrosine phosphatase. Activating mutations of SHP2 have been associated with developmental pathologies such as Noonan syndrome and are found in multiple cancer types, including leukaemia, lung and breast cancer and neuroblastoma. SHP2 is ubiquitously expressed and regulates cell survival and proliferation primarily through activation of the RAS–ERK signalling pathway. It is also a key mediator of the programmed cell death 1 (PD-1) and B- and T-lymphocyte attenuator (BTLA) immune checkpoint pathways. Reduction of SHP2 activity suppresses tumour cell growth and is a potential target of cancer therapy. Here we report the discovery of a highly potent (IC50 = 0.071 μM), selective and orally bioavailable small-molecule SHP2 inhibitor, SHP099, that stabilizes SHP2 in an auto-inhibited conformation. SHP099 concurrently binds to the interface of the N-terminal SH2, C-terminal SH2, and protein tyrosine phosphatase domains, thus inhibiting SHP2 activity through an allosteric mechanism. SHP099 suppresses RAS–ERK signalling to inhibit the proliferation of receptor-tyrosine-kinase-driven human cancer cells in vitro and is efficacious in mouse tumour xenograft models. Together, these data demonstrate that pharmacological inhibition of SHP2 is a valid therapeutic approach for the treatment of cancers."	"Mutation profiling of 19 candidate genes in acute myeloid leukemia suggests significance of DNMT3A mutations. We selected 19 significantly-mutated genes in AMLs, including FLT3, DNMT3A, NPM1, TET2, RUNX1, CEBPA, WT1, IDH1, IDH2, NRAS, ASXL1, SETD2, PTPN11, TP53, KIT, JAK2, KRAS, BRAF and CBL, and performed massively parallel sequencing for 114 patients with acute myeloid leukemias, mainly including those with normal karyotypes (CN-AML). More than 80% of patients had at least one mutation in the genes tested. DNMT3A mutation was significantly associated with adverse outcome in addition to conventional risk stratification such as the European LeukemiaNet (ELN) classification. We observed clinical usefulness of mutation testing on multiple target genes and the association with disease subgroups, clinical features and prognosis in AMLs."	"Developmental SHP2 dysfunction underlies cardiac hypertrophy in Noonan syndrome with multiple lentigines. Hypertrophic cardiomyopathy is a common cause of mortality in congenital heart disease (CHD). Many gene abnormalities are associated with cardiac hypertrophy, but their function in cardiac development is not well understood. Loss-of-function mutations in PTPN11, which encodes the protein tyrosine phosphatase (PTP) SHP2, are implicated in CHD and cause Noonan syndrome with multiple lentigines (NSML), a condition that often presents with cardiac hypertrophic defects. Here, we found that NSML-associated hypertrophy stems from aberrant signaling mechanisms originating in developing endocardium. Trabeculation and valvular hyperplasia were diminished in hearts of embryonic mice expressing a human NSML-associated variant of SHP2, and these defects were recapitulated in mice expressing NSML-associated SHP2 specifically in endothelial, but not myocardial or neural crest, cells. In contrast, mice with myocardial- but not endothelial-specific NSML SHP2 expression developed ventricular septal defects, suggesting that NSML-associated mutations have both cell-autonomous and nonautonomous functions in cardiac development. However, only endothelial-specific expression of NSML-associated SHP2 induced adult-onset cardiac hypertrophy. Further, embryos expressing the NSML-associated SHP2 mutation exhibited aberrant AKT activity and decreased downstream forkhead box P1 (FOXP1)/FGF and NOTCH1/EPHB2 signaling, indicating that SHP2 is required for regulating reciprocal crosstalk between developing endocardium and myocardium. Together, our data provide functional and disease-based evidence that aberrant SHP2 signaling during cardiac development leads to CHD and adult-onset heart hypertrophy."	"Allosteric Inhibition of SHP2: Identification of a Potent, Selective, and Orally Efficacious Phosphatase Inhibitor. SHP2 is a nonreceptor protein tyrosine phosphatase (PTP) encoded by the PTPN11 gene involved in cell growth and differentiation via the MAPK signaling pathway. SHP2 also purportedly plays an important role in the programmed cell death pathway (PD-1/PD-L1). Because it is an oncoprotein associated with multiple cancer-related diseases, as well as a potential immunomodulator, controlling SHP2 activity is of significant therapeutic interest. Recently in our laboratories, a small molecule inhibitor of SHP2 was identified as an allosteric modulator that stabilizes the autoinhibited conformation of SHP2. A high throughput screen was performed to identify progressable chemical matter, and X-ray crystallography revealed the location of binding in a previously undisclosed allosteric binding pocket. Structure-based drug design was employed to optimize for SHP2 inhibition, and several new protein-ligand interactions were characterized. These studies culminated in the discovery of 6-(4-amino-4-methylpiperidin-1-yl)-3-(2,3-dichlorophenyl)pyrazin-2-amine (SHP099, 1), a potent, selective, orally bioavailable, and efficacious SHP2 inhibitor."	"Estimating Exceptionally Rare Germline and Somatic Mutation Frequencies via Next Generation Sequencing. We used targeted next generation deep-sequencing (Safe Sequencing System) to measure ultra-rare de novo mutation frequencies in the human male germline by attaching a unique identifier code to each target DNA molecule. Segments from three different human genes (FGFR3, MECP2 and PTPN11) were studied. Regardless of the gene segment, the particular testis donor or the 73 different testis pieces used, the frequencies for any one of the six different mutation types were consistent. Averaging over the C&gt;T/G&gt;A and G&gt;T/C&gt;A mutation types the background mutation frequency was 2.6x10-5 per base pair, while for the four other mutation types the average background frequency was lower at 1.5x10-6 per base pair. These rates far exceed the well documented human genome average frequency per base pair (~10-8) suggesting a non-biological explanation for our data. By computational modeling and a new experimental procedure to distinguish between pre-mutagenic lesion base mismatches and a fully mutated base pair in the original DNA molecule, we argue that most of the base-dependent variation in background frequency is due to a mixture of deamination and oxidation during the first two PCR cycles. Finally, we looked at a previously studied disease mutation in the PTPN11 gene and could easily distinguish true mutations from the SSS background. We also discuss the limits and possibilities of this and other methods to measure exceptionally rare mutation frequencies, and we present calculations for other scientists seeking to design their own such experiments. "	"Shp2 Deficiency Impairs the Inflammatory Response Against Haemophilus influenzae by Regulating Macrophage Polarization. Macrophages can polarize and differentiate to regulate initiation, development, and cessation of inflammation during pulmonary infection with nontypeable Haemophilus influenzae (NTHi). However, the underlying molecular mechanisms driving macrophage phenotypic differentiation are largely unclear. Our study investigated the role of Shp2, a Src homology 2 domain-containing phosphatase, in the regulation of pulmonary inflammation and bacterial clearance. Shp2 levels were increased upon NTHi stimulation. Selective inhibition of Shp2 in mice led to an attenuated inflammatory response by skewing macrophages toward alternatively activated macrophage (M2) polarization. Upon pulmonary NTHi infection, Shp2(-/-) mice, in which the gene encoding Shp2 in monocytes/macrophages was deleted, showed an impaired inflammatory response and decreased antibacterial ability, compared with wild-type controls. In vitro data demonstrated that Shp2 regulated activated macrophage (M1) gene expression via activation of p65-nuclear factor-κB signaling, independent of p38 and extracellular regulated kinase-mitogen-activated proteins kinase signaling pathways. Taken together, our study indicates that Shp2 is required to orchestrate macrophage function and regulate host innate immunity against pulmonary bacterial infection."	"Diagnosis and treatment of juvenile myelomonocytic leukemia. Juvenile myelomonocytic leukemia (JMML) is a rare myelodysplastic/myeloproliferative disorder that occurs during infancy and early childhood; this disorder is characterized by hypersensitivity of the myeloid progenitor cells to granulocyte-macrophage colony-stimulating factor in vitro. JMML usually involves somatic and/or germline mutations in the genes of the RAS pathway, including PTPN11, NRAS, KRAS, NF1, and CBL, in the leukemic cells. Almost all patients with JMML experience an aggressive clinical course, and hematopoietic stem cell transplantation (HSCT) is the only curative treatment. A certain proportion of patients with somatic NRAS and germline mutations in CBL, however, have spontaneous resolution. A suitable treatment after diagnosis and conditioning regimen prior to HSCT are yet to be determined, but several clinical trials have been initiated throughout the world to develop suitable pre- or post-allogeneic HSCT treatments and new targeted therapies that are less toxic, to improve patient outcome. "	"Protein-structure-guided discovery of functional mutations across 19 cancer types. Local concentrations of mutations are well known in human cancers. However, their three-dimensional spatial relationships in the encoded protein have yet to be systematically explored. We developed a computational tool, HotSpot3D, to identify such spatial hotspots (clusters) and to interpret the potential function of variants within them. We applied HotSpot3D to &gt;4,400 TCGA tumors across 19 cancer types, discovering &gt;6,000 intra- and intermolecular clusters, some of which showed tumor and/or tissue specificity. In addition, we identified 369 rare mutations in genes including TP53, PTEN, VHL, EGFR, and FBXW7 and 99 medium-recurrence mutations in genes such as RUNX1, MTOR, CA3, PI3, and PTPN11, all mapping within clusters having potential functional implications. As a proof of concept, we validated our predictions in EGFR using high-throughput phosphorylation data and cell-line-based experimental evaluation. Finally, mutation-drug cluster and network analysis predicted over 800 promising candidates for druggable mutations, raising new possibilities for designing personalized treatments for patients carrying specific mutations."	"Deletion of Gab2 in mice protects against hepatic steatosis and steatohepatitis: a novel therapeutic target for fatty liver disease. Fatty liver disease is a serious health problem worldwide and is the most common cause for chronic liver disease and metabolic disorders. The major challenge in the prevention and intervention of this disease is the incomplete understanding of the underlying mechanism and thus lack of potent therapeutic targets due to multifaceted and interdependent disease factors. In this study, we investigated the role of a signaling adaptor protein, GRB2-associated-binding protein 2 (Gab2), in fatty liver using an animal disease model. Gab2 expression in hepatocytes responded to various disease factor stimulations, and Gab2 knockout mice exhibited resistance to fat-induced obesity, fat- or alcohol-stimulated hepatic steatosis, as well as methionine and choline deficiency-induced steatohepatitis. Concordantly, the forced expression or knockdown of Gab2 enhanced or diminished oleic acid (OA)- or ethanol-induced lipid production in hepatocytes in vitro, respectively. During lipid accumulation in hepatocytes, both fat and alcohol induced the recruitment of PI3K or Socs3 by Gab2 and the activation of their downstream signaling proteins AKT, ERK, and Stat3. Therefore, Gab2 may be a disease-associated protein that is induced by pathogenic factors to amplify and coordinate multifactor-induced signals to govern disease development in the liver. Our research provides a novel potential target for the prevention and intervention of fatty liver disease."	"Abnormal PTPN11 enhancer methylation promotes rheumatoid arthritis fibroblast-like synoviocyte aggressiveness and joint inflammation. The PTPN11 gene, encoding the tyrosine phosphatase SHP-2, is overexpressed in rheumatoid arthritis (RA) fibroblast-like synoviocytes (FLS) compared with osteoarthritis (OA) FLS and promotes RA FLS invasiveness. Here, we explored the molecular basis for PTPN11 overexpression in RA FLS and the role of SHP-2 in RA pathogenesis. Using computational methods, we identified a putative enhancer in PTPN11 intron 1, which contained a glucocorticoid receptor- binding (GR-binding) motif. This region displayed enhancer function in RA FLS and contained 2 hypermethylation sites in RA compared with OA FLS. RA FLS stimulation with the glucocorticoid dexamethasone induced GR binding to the enhancer and PTPN11 expression. Glucocorticoid responsiveness of PTPN11 was significantly higher in RA FLS than OA FLS and required the differentially methylated CpGs for full enhancer function. SHP-2 expression was enriched in the RA synovial lining, and heterozygous Ptpn11 deletion in radioresistant or innate immune cells attenuated K/BxN serum transfer arthritis in mice. Treatment with SHP-2 inhibitor 11a-1 reduced RA FLS migration and responsiveness to TNF and IL-1β stimulation and reduced arthritis severity in mice. Our findings demonstrate how abnormal epigenetic regulation of a pathogenic gene determines FLS behavior and demonstrate that targeting SHP-2 or the SHP-2 pathway could be a therapeutic strategy for RA."	"Angiopoietin-2 mediates thrombin-induced monocyte adhesion and endothelial permeability. Essentials Mechanism of thrombin-induced inflammation is not fully understood. Thrombin induced monocyte adhesion and barrier loss require Angiopoietin-2 (Ang-2). Ang-2 mediates vessel leakage and monocyte adhesion through SHP-2/p38MAPK pathway. Calcium dependent SHP2/p38MAPK activation regulates Ang-2 expression through a feedback loop. Background Thrombin imparts an inflammatory phenotype to the endothelium by promoting increased monocyte adhesion and vascular permeability. However, the molecular players that govern these events are incompletely understood. Objective The aim of this study was to determine whether Angiopoietin-2 (Ang-2) has a role, if any, in regulating inflammatory signals initiated by thrombin. Methods Assessment of vascular leakage by Miles assay was performed by intra-dermal injection on the foot paw. Surface levels of intercellular adhesion molecule-1 (ICAM-1) were determined by flow cytometry. Overexpression, knockdown and phosphorylation of proteins were determined by Western blotting. Results In time-course experiments, thrombin-stimulated Ang-2 up-regulation, peaked prior to the expression of adhesion molecule ICAM-1 in human umbilical vein-derived endothelial cells (HUVECs). Knockdown of Ang-2 blocked both thrombin-induced monocyte adhesion and ICAM-1 expression. In addition, Ang-2(-/-) mice displayed defective vascular leakage when treated with thrombin. Introducing Ang-2 protein in Ang-2(-/-) mice failed to recover a wild-type phenotype. Mechanistically, Ang-2 appears to regulate the thrombin-activated calcium spike that is required for tyrosine phosphatase SHP2 and p38 MAPK activation. Further, down-regulation of SHP2 attenuated both thrombin-induced Ang-2 expression and monocyte adhesion. Down-regulation of the adaptor protein Gab1, a co-activator of SHP2, as well as overexpression of the Gab1 mutant incapable of interacting with SHP2 (YFGab1), inhibited thrombin-mediated effects, including downstream activation of p38 MAPK, which in turn was required for Ang-2 expression. Conclusions The data establish an essential role of the Gab1/SHP2/p38MAPK signaling pathway and Ang-2 in regulating thrombin-induced monocyte adhesion and vascular leakage."	"Multiple giant cell lesions in a patient with Noonan syndrome with multiple lentigines. A patient with Noonan syndrome with multiple lentigines (NSML) and multiple giant cell lesions (MGCL) in mandibles and maxillae is described. A mutation p.Thr468Met in the PTPN11-gene was found. This is the second reported NSML patient with MGCL. Our case adds to the assumption that, despite a different molecular pathogenesis and effect on the RAS/MEK pathway, NSML shares the development of MGCL, with other RASopathies. "	"Pancreatic cancer risk variant in LINC00673 creates a miR-1231 binding site and interferes with PTPN11 degradation. Genome-wide association studies have identified several loci associated with pancreatic cancer risk; however, the mechanisms by which genetic factors influence the development of sporadic pancreatic cancer remain largely unknown. Here, by using genome-wide association analysis and functional characterization, we identify a long intergenic noncoding RNA (lincRNA), LINC00673, as a potential tumor suppressor whose germline variation is associated with pancreatic cancer risk. LINC00673 is able to reinforce the interaction of PTPN11 with PRPF19, an E3 ubiquitin ligase, and promote PTPN11 degradation through ubiquitination, which causes diminished SRC-ERK oncogenic signaling and enhanced activation of the STAT1-dependent antitumor response. A G&gt;A change at rs11655237 in exon 4 of LINC00673 creates a target site for miR-1231 binding, which diminishes the effect of LINC00673 in an allele-specific manner and thus confers susceptibility to tumorigenesis. These findings shed new light on the important role of LINC00673 in maintaining cell homeostasis and how its germline variation might confer susceptibility to pancreatic cancer."	"How necessary is to analyze PTPN11 gene in fetuses with first trimester cystic hygroma and normal karyotype? Cystic hygroma (CH) is a vascular-lymphatic malformation and can occur either as an isolated finding or as a part of a syndrome. The incidence of CH is about 1:1000-1:6000 births. Ultrasonographic diagnosis of CH is usually obtained in the first trimester, and the lesion can appear in septated or non-septated forms. Increased nuchal translucency and CH have been associated with a wide range of structural and genetic abnormalities. Most of CHs are associated with a number of chromosomal abnormalities especially Trisomy 21, 13, 18 and Turner syndrome. Besides, the associations between CH and non-chromosomal syndromes were also reported and Noonan Syndrome (NS) is one of the leading causes. Approximately 50% of NS cases are caused by mutations in the PTPN11 gene. A novel PTPN11 mutation defined in two separate fetuses with CH and associated with NS phenotype is being reported here."	"Inhibition of SHP2 ameliorates the pathogenesis of systemic lupus erythematosus. Systemic lupus erythematosus (SLE) is a devastating multisystemic autoimmune disorder. However, the molecular mechanisms underlying its pathogenesis remain elusive. Some patients with Noonan syndrome, a congenital disorder predominantly caused by gain-of-function mutations in the protein tyrosine phosphatase SH2 domain-containing PTP (SHP2), have been shown to develop SLE, suggesting a functional correlation between phosphatase activity and systemic autoimmunity. To test this directly, we measured SHP2 activity in spleen lysates isolated from lupus-prone MRL/lpr mice and found it was markedly increased compared with that in control mice. Similar increases in SHP2 activity were seen in peripheral blood mononuclear cells isolated from lupus patients relative to healthy patients. To determine whether SHP2 alters autoimmunity and related immunopathology, we treated MRL/lpr mice with an SHP2 inhibitor and found increased life span, suppressed crescentic glomerulonephritis, reduced spleen size, and diminished skin lesions. SHP2 inhibition also reduced numbers of double-negative T cells, normalized ERK/MAPK signaling, and decreased production of IFN-γ and IL-17A/F, 2 cytokines involved in SLE-associated organ damage. Moreover, in cultured human lupus T cells, SHP2 inhibition reduced proliferation and decreased production of IFN-γ and IL-17A/F, further implicating SHP2 in lupus-associated immunopathology. Taken together, these data identify SHP2 as a critical regulator of SLE pathogenesis and suggest targeting of its activity as a potent treatment for lupus patients."	"Gene Mutation Profiles in Primary Diffuse Large B Cell Lymphoma of Central Nervous System: Next Generation Sequencing Analyses. The existence of a potential primary central nervous system lymphoma-specific genomic signature that differs from the systemic form of diffuse large B cell lymphoma (DLBCL) has been suggested, but is still controversial. We investigated 19 patients with primary DLBCL of central nervous system (DLBCL CNS) using the TruSeq Amplicon Cancer Panel (TSACP) for 48 cancer-related genes. Next generation sequencing (NGS) analyses have revealed that over 80% of potentially protein-changing mutations were located in eight genes (CTNNB1, PIK3CA, PTEN, ATM, KRAS, PTPN11, TP53 and JAK3), pointing to the potential role of these genes in lymphomagenesis. TP53 was the only gene harboring mutations in all 19 patients. In addition, the presence of mutated TP53 and ATM genes correlated with a higher total number of mutations in other analyzed genes. Furthermore, the presence of mutated ATM correlated with poorer event-free survival (EFS) (p = 0.036). The presence of the mutated SMO gene correlated with earlier disease relapse (p = 0.023), inferior event-free survival (p = 0.011) and overall survival (OS) (p = 0.017), while mutations in the PTEN gene were associated with inferior OS (p = 0.048). Our findings suggest that the TP53 and ATM genes could be involved in the molecular pathophysiology of primary DLBCL CNS, whereas mutations in the PTEN and SMO genes could affect survival regardless of the initial treatment approach. "	"Complete hematologic response of early T-cell progenitor acute lymphoblastic leukemia to the γ-secretase inhibitor BMS-906024: genetic and epigenetic findings in an outlier case. Notch pathway antagonists such as γ-secretase inhibitors (GSIs) are being tested in diverse cancers, but exceptional responses have yet to be reported. We describe the case of a patient with relapsed/refractory early T-cell progenitor acute lymphoblastic leukemia (ETP-ALL) who achieved a complete hematologic response following treatment with the GSI BMS-906024. Whole-exome sequencing of leukemic blasts revealed heterozygous gain-of-function driver mutations in NOTCH1, CSF3R, and PTPN11, and a homozygous/hemizygous loss-of-function mutation in DNMT3A. The three gain-of-function mutations were absent from remission marrow cells, but the DNMT3A mutation persisted in heterozygous form in remission marrow, consistent with an origin for the patient's ETP-ALL from clonal hematopoiesis. Ex vivo culture of ETP-ALL blasts confirmed high levels of activated NOTCH1 that were repressed by GSI treatment, and RNA-seq documented that GSIs downregulated multiple known Notch target genes. Surprisingly, one potential target gene that was unaffected by GSIs was MYC, a key Notch target in GSI-sensitive T-ALL of cortical T-cell type. H3K27ac super-enhancer landscapes near MYC showed a pattern previously reported in acute myeloid leukemia (AML) that is sensitive to BRD4 inhibitors, and in line with this ETP-ALL blasts downregulated MYC in response to the BRD4 inhibitor JQ1. To our knowledge, this is the first example of complete response of a Notch-mutated ETP-ALL to a Notch antagonist and is also the first description of chromatin landscapes associated with ETP-ALL. Our experience suggests that additional attempts to target Notch in Notch-mutated ETP-ALL are merited. "	"Detecting novel genes for low-density lipoprotein cholesterol in European population using bioinformatics analysis. The aim of this study was to identify related genes for low-density lipoprotein cholesterol and evaluate the functional relevance to provide evidences for prioritizing these genes. We performed a gene-based association study in about 188,578 individuals. Furthermore, we performed bioinformatics analyses to support the identified genes. A total of 292 genes were found to be significant after Bonferroni correction (p &lt; 2.3 × 10<sup>-6</sup>). Among these genes, 59 seemed to be associated with coronary artery disease (CAD). The evidence obtained from the analyses of this study signified the importance of many genes, for example, LDLR, ABCG5, ABCG8, APOB, HNF1A, PTPN11, APOA5 and MCM6, which were also associated with CAD. The findings might provide more insights into the genetic basis of lipid metabolism and CAD."	"The Growth Characteristics of Patients with Noonan Syndrome: Results of Three Years of Growth Hormone Treatment: A Nationwide Multicenter Study. Noonan syndrome (NS) is a multisystem disorder, and short stature is its most striking manifestation. Optimal growth hormone (GH) treatment for NS is still controversial. In this study, using a nationwide registration system, we aimed to evaluate the growth characteristics and the clinical features of NS patients in Turkey and their growth response to GH treatment. Children and adolescents with a diagnosis of NS were included inthe study. Laboratory assessment including standard GH stimulation test results were evaluated. Height increment of patients with or without GH treatment were analyzed after three years of therapy. A total of 124 NS patients from different centers were entered in the web-based system. Short stature and typical face appearance were the most frequently encountered diagnostic features of our patients. Of the 84 patients who were followed long-term, 47 hadreceived recombinant human GH (rhGH). In this group of 47 patients, height standard deviation score (HSDS) increased from -3.62±1.14 to -2.85±0.96 after three years of therapy, indicating significant differences from the patients who did not receive GH treatment. PTPN11 gene was analyzed in 61 patients, and 64% of these patients were found to have a mutation. HSDS at admission was similar in patients with or without PTPN11 gene mutation. A diagnosis of NS should be kept in mind in all patients with short stature showing systemic clinical findings. GH therapy is effective for improvement of short stature especially in the first two years of treatment. Further studies are needed for optimisation of GH therapy and evaluation of final height data in NS patients."	"Discovery of novel, high potent, ABC type PTP1B inhibitors with TCPTP selectivity and cellular activity. Protein tyrosine phosphatase 1B (PTP1B) as a key negative regulator of both insulin and leptin receptor pathways has been an attractive therapeutic target for the treatment of type 2 diabetes mellitus (T2DM) and obesity. With the goal of enhancing potency and selectivity of the PTP1B inhibitors, a series of methyl salicylate derivatives as ABC type PTP1B inhibitors (P1-P7) were discovered. More importantly, compound P6 exhibited high potent inhibitory activity (IC50 = 50 nM) for PTP1B with 15-fold selectivity over T-cell PTPase (TCPTP). Further studies on cellular activities revealed that compound P6 could enhance insulin-mediated insulin receptor β (IRβ) phosphorylation and insulin-stimulated glucose uptake. "	"Long-term efficacy of recombinant human growth hormone therapy in short-statured patients with Noonan syndrome. Noonan syndrome (NS) is characterized by short stature, heart anomalies, developmental delays, dysmorphic features, cryptorchidism, and coagulation defects. Several studies reported the short-term effects of recombinant human growth hormone (rhGH) treatment on the improvement of height. This study was performed to evaluate the long-term efficacy of rhGH in children with NS in Korea. This study included 15 prepubertal NS children who received rhGH subcutaneously at a dose of 50-75 µg/kg/day for 6 days a week for at least &gt;3 years. Preand posttreatment data, such as height, weight, bone age, insulin-like growth factor 1 (IGF-1), and IGF binding protein 3 (IGFBP-3) levels, were collected every 6 months. Chronologic age and bone age at the start of treatment were 7.97±1.81 and 5.09±2.12 years, respectively. Height standard deviation score (SDS) was increased from -2.64±0.64 to -1.54±1.24 years after 3 years (P&lt;0.001). Serum IGF-1 SDS levels were elevated from -1.28±1.03 to -0.10±0.94 (P&lt;0.001). Height SDS was more increased in subjects without PTPN11 mutations compared to those with mutations after 3 years (P=0.012). However, the other parameters, including bone age, IGF-1 SDS, and IGFBP-3 SDS, were not significantly different between patients with and without PTPN11 mutations. Although this study included a relatively small number of patients, long-term rhGH therapy in NS patients was safe and effective at improving height, growth velocity, and serum IGF-1 levels, in accordance with previous studies. However, the meticulous monitoring of potential adverse events is still needed because of high dose of rhGH and preexisting hyperactivity of RAS-MAPK pathway. Patients with PTPN11 mutations demonstrated a decreased response to rhGH therapy compared to those without mutations."	"SHP-2 Phosphatase Prevents Colonic Inflammation by Controlling Secretory Cell Differentiation and Maintaining Host-Microbiota Homeostasis. Polymorphisms in the PTPN11 gene encoding for the tyrosine phosphatase SHP-2 were described in patients with ulcerative colitis. We have recently demonstrated that mice with an intestinal epithelial cell-specific deletion of SHP-2 (SHP-2(IEC-KO) ) develop severe colitis 1 month after birth. However, the mechanisms by which SHP-2 deletion induces colonic inflammation remain to be elucidated. We generated SHP-2(IEC-KO) mice lacking Myd88 exclusively in the intestinal epithelium. The colonic phenotype was histologically analyzed and cell differentiation was determined by electron microscopy and lysozyme or Alcian blue staining. Microbiota composition was analyzed by 16S sequencing. Results show that innate defense genes including those specific to Paneth cells were strongly up-regulated in SHP-2-deficient colons. Expansion of intermediate cells (common progenitors of the Goblet and Paneth cell lineages) was found in the colon of SHP-2(IEC-KO) mice whereas Goblet cell number was clearly diminished. These alterations in Goblet/intermediate cell ratio were noticed 2 weeks after birth, before the onset of inflammation and were associated with significant alterations in microbiota composition. Indeed, an increase in Enterobacteriaceae and a decrease in Firmicutes were observed in the colon of these mice, indicating that dysbiosis also occurred prior to inflammation. Importantly, loss of epithelial Myd88 expression inhibited colitis development in SHP-2(IEC-KO) mice, rescued Goblet/intermediate cell ratio, and prevented NFκB hyperactivation and inflammation. These data indicate that SHP-2 is functionally important for the maintenance of appropriate barrier function and host-microbiota homeostasis in the large intestine. J. Cell. Physiol. 231: 2529-2540, 2016. © 2016 The Authors. Journal of Cellular Physiology published by Wiley Periodicals, Inc."	"Molecular Heterogeneity of Ewing Sarcoma as Detected by Ion Torrent Sequencing. Ewing sarcoma (ES) is the second most common malignant bone and soft tissue tumor in children and adolescents. Despite advances in comprehensive treatment, patients with ES metastases still suffer poor outcomes, thus, emphasizing the need for detailed genetic profiles of ES patients to identify suitable molecular biomarkers for improved prognosis and development of effective and targeted therapies. In this study, the next generation sequencing Ion AmpliSeq™ Cancer Hotspot Panel v2 was used to identify cancer-related gene mutations in the tissue samples from 20 ES patients. This platform targeted 207 amplicons of 2800 loci in 50 cancer-related genes. Among the 20 tissue specimens, 62 nonsynonymous hotspot mutations were identified in 26 cancer-related genes, revealing the molecular heterogeneity of ES. Among these, five novel mutations in cancer-related genes (KDR, STK11, MLH1, KRAS, and PTPN11) were detected in ES, and these mutations were confirmed with traditional Sanger sequencing. ES patients with KDR, STK11, and MLH1 mutations had higher Ki-67 proliferation indices than the ES patients lacking such mutations. Notably, more than half of the ES patients harbored one or two possible 'druggable' mutations that have been previously linked to a clinical cancer treatment option. Our results provided the foundation to not only elucidate possible mechanisms involved in ES pathogenesis but also indicated the utility of Ion Torrent sequencing as a sensitive and cost-effective tool to screen key oncogenes and tumor suppressors in order to develop personalized therapy for ES patients. "	"Genetic alterations and their clinical implications in older patients with acute myeloid leukemia. A number of patient-specific and leukemia-associated factors are related to the poor outcome in older patients with acute myeloid leukemia (AML). However, comprehensive studies regarding the impact of genetic alterations in this group of patients are limited. In this study, we compared relevant mutations in 21 genes between AML patients aged 60 years or older and those younger and exposed their prognostic implications. Compared with the younger patients, the elderly had significantly higher incidences of PTPN11, NPM1, RUNX1, ASXL1, TET2, DNMT3A and TP53 mutations but a lower frequency of WT1 mutations. The older patients more frequently harbored one or more adverse genetic alterations. Multivariate analysis showed that DNMT3A and TP53 mutations were independent poor prognostic factors among the elderly, while NPM1 mutation in the absence of FLT3/ITD was an independent favorable prognostic factor. Furthermore, the status of mutations could well stratify older patients with intermediate-risk cytogenetics into three risk groups. In conclusion, older AML patients showed distinct genetic alterations from the younger group. Integration of cytogenetics and molecular mutations can better risk-stratify older AML patients. Development of novel therapies is needed to improve the outcome of older patients with poor prognosis under current treatment modalities."	"Eosinophil differentiation in the bone marrow is promoted by protein tyrosine phosphatase SHP2. SHP2 participates in multiple signaling events by mediating T-cell development and function, and regulates cytokine-dependent granulopoiesis. To explore whether and how SHP2 can regulate bone-marrow eosinophil differentiation, we investigate the contribution of SHP2 in the bone-marrow eosinophil development in allergic mice. Blockade of SHP2 function by SHP2 inhibitor PHPS-1 or conditional shp2 knockdown by adenovirus-inhibited bone-marrow-derived eosinophil differentiation in vitro, with no detectable effects on the apoptosis of eosinophils. Furthermore, SHP2 induced eosinophil differentiation via regulation of the extracellular signal-regulated kinase pathway. Myeloid shp2 conditional knockout mice (LysM(cre)shp2(flox/flox)) failed to induce eosinophilia as well as airway hyper-responsiveness. The SHP2 inhibitor PHPS-1 also alleviated eosinophilic airway inflammation and airway hyper-responsiveness, accompanied by significantly reduced levels of systemic eosinophils and eosinophil lineage-committed progenitors in allergic mice. We demonstrate that inhibition of eosinophil development is SHP2-dependent and SHP2 is sufficient to promote eosinophil formation in vivo. Our data reveal SHP2 as a critical regulator of eosinophil differentiation, and inhibition of SHP2 specifically in myeloid cells alleviates allergic airway inflammation. "	"Rare Helicobacter pylori Infection May Explain Low Stomach Cancer Incidence: Ecological Observations in Bali, Indonesia. The incidence rate of stomach cancer in Bali, Indonesia, is estimated to be strikingly lower than that in Japan. We conducted an on-site ecological study to investigate the association between the stomach cancer incidence and Helicobacter pylori (H. pylori) infection. Recruiting 291 healthy persons (136 men and 155 women) from the general population in Bali, Indonesia, we conducted a urea breath test (UBT) to examine H. pylori infection, along with a pepsinogen test to detect chronic atrophic gastritis and urine analysis to estimate sodium and potassium excretion. UBT positivities were 9% (2-15, 95% confidence interval) for men and 7% (1-12) for women, and positive cases for H. pylori IgG antibodies were 1% (0-3) for men and 3% (0-5) for women, significantly lower than the respective values in Japan. Positive pepsinogen tests in Bali were 0% (0-0) for men and 1% (0-4) for women, also significantly lower than the Japanese figures. Computed values for daily salt excretion were 13.3±4.1 g (mean ± SD) for men and 11.1±3.1 g for women, as high as corresponding Japanese consumption values. Moreover, the estimated potassium excretion was 3.2±0.7 g for men and 2.8±0.6 g for women in Bali, significantly higher than the figures in Japan. There were no associations across genetic polymorphisms of IL-beta, TNF-alpha, and PTPN11 with UBT positivity. The low incidence of stomach cancer in Bali may thus mainly be due to the rare H. pylori infection. Namely, the bacterium infection seems to be a critical factor for gastric cancer rather than host or other environmental factors. "	"Structural and Functional Consequences of Three Cancer-Associated Mutations of the Oncogenic Phosphatase SHP2. The proto-oncogene PTPN11 encodes a cytoplasmic protein tyrosine phosphatase, SHP2, which is required for normal development and sustained activation of the Ras-MAPK signaling pathway. Germline mutations in SHP2 cause developmental disorders, and somatic mutations have been identified in childhood and adult cancers and drive leukemia in mice. Despite our knowledge of the PTPN11 variations associated with pathology, the structural and functional consequences of many disease-associated mutants remain poorly understood. Here, we combine X-ray crystallography, small-angle X-ray scattering, and biochemistry to elucidate structural and mechanistic features of three cancer-associated SHP2 variants harboring single point mutations within the N-SH2:PTP interdomain autoinhibitory interface. Our findings directly compare the impact of each mutation on autoinhibition of the phosphatase and advance the development of structure-guided and mutation-specific SHP2 therapies."	"Metachondromatosis without Enchondromas: A Case Report and Review of the Literature. A nine-year-old boy had multiple osteochondromas in the hands, feet, and tibiae, many of which pointed toward the adjacent joint. Although several were treated surgically, others resolved spontaneously. A heterozygous mutation in the PTPN11 gene was identified by genetic analysis of peripheral blood, so the patient was diagnosed with metachondromatosis despite the absence of enchondromatous lesions. To the best of our knowledge, this is the first reported case of a patient with metachondromatosis without any enchondromatous lesions."	"[The Biological Function of SHP2 in Human Disease]. Tyrosyl phosphorylation participates in various pathological and physiological processes, which are regulated by protein tyrosine kinases (PTKs) and protein tyrosine phosphatases (PTPs). The Src homology-2 domain containing phosphatase SHP2 (encoded by PTPN11) is an important phosphatase, which was found to be implicated in the regulation of genetic disease, development, metabolic, neurological, muscle, skeletal disease and cancer. Germline mutations in PTPN11 cause the Noonan Syndrome, LEOPARD syndrome and metachondromatosis. Somatic PTPN11 mutations occur in hematologic malignancies and in solid tumors. SHP2 is also an important component in oncogenic signaling pathways. It may play different roles in different stages and positions of human cancers. Whether SHP2 is an oncogene or cancer suppressor gene remains to be elucidated. Elucidation of the regulatory mechanisms of SHP2 in human disease will provide new insights into disease and new targets for therapy. Here, we summarized the structural basis and recent research progression on SHP2 in various human disease, including genetic and cancer diseases."	"Changes in Gab2 phosphorylation and interaction partners in response to interleukin (IL)-2 stimulation in T-lymphocytes. Interleukin-2 (IL-2) stimulation results in T-cell growth as a consequence of activation of highly sophisticated and fine-tuned signaling pathways. Despite lacking intrinsic enzymatic activity, scaffold proteins such as Gab2, play a pivotal role in IL-2-triggered signal transduction integrating, diversifying and amplifying the signal by serving as a platform for the assembly of effectors proteins. Traditionally, Gab2-mediated protein recruitment was believed to solely depend on cytokine-induced phosphotyrosine moieties. At present, phosphorylation on serine/threonine residues is also emerging as a key mediator of Gab2-dependent signal regulation. Despite its relevance, IL-2-triggered regulation on Gab2 phosphorylation is yet poorly understood. Combining antibody- and TiO2-based enrichment of the scaffold protein with SILAC quantitative mass spectrometry we disclose the prominent regulation IL-2 exerts on Gab2 serine/threonine phosphorylation by showing that at least 18 serines and 1 threonine, including previously non-reported ones, become phosphorylated in response to cytokine stimulation. Additionally, we decipher the interactome of the docking protein in resting and cytokine-treated T-lymphocytes and besides well-known Gab2 interactors we discover three novel cytokine-inducible Gab2-binding proteins. Thus, our data provide novel insights and a wealth of candidates for future studies that will shed light into the role of Gab2 in IL-2-initiated signal transduction. "	"Molecular and Cellular Mechanisms of Myelodysplastic Syndrome: Implications on Targeted Therapy. Myelodysplastic syndrome (MDS) is a group of heterogeneous clonal hematopoietic stem cell disorders characterized by cytopenia, ineffective hematopoiesis, and progression to secondary acute myeloid leukemia in high-risk cases. Conventional prognostication relies on clinicopathological parameters supplemented by cytogenetic information. However, recent studies have shown that genetic aberrations also have critical impacts on treatment outcome. Moreover, these genetic alterations may themselves be a target for treatment. The mutation landscape in MDS is shaped by gene aberrations involved in DNA methylation (TET2, DNMT3A, IDH1/2), histone modification (ASXL1, EZH2), the RNA splicing machinery (SF3B1, SRSF2, ZRSR2, U2AF1/2), transcription (RUNX1, TP53, BCOR, PHF6, NCOR, CEBPA, GATA2), tyrosine kinase receptor signaling (JAK2, MPL, FLT3, GNAS, KIT), RAS pathways (KRAS, NRAS, CBL, NF1, PTPN11), DNA repair (ATM, BRCC3, DLRE1C, FANCL), and cohesion complexes (STAG2, CTCF, SMC1A, RAD21). A detailed understanding of the pathogenetic mechanisms leading to transformation is critical for designing single-agent or combinatorial approaches in target therapy of MDS. "	"The genetic landscape of paediatric de novo acute myeloid leukaemia as defined by single nucleotide polymorphism array and exon sequencing of 100 candidate genes. Cytogenetic analyses of a consecutive series of 67 paediatric (median age 8 years; range 0-17) de novo acute myeloid leukaemia (AML) patients revealed aberrations in 55 (82%) cases. The most common subgroups were KMT2A rearrangement (29%), normal karyotype (15%), RUNX1-RUNX1T1 (10%), deletions of 5q, 7q and/or 17p (9%), myeloid leukaemia associated with Down syndrome (7%), PML-RARA (7%) and CBFB-MYH11 (5%). Single nucleotide polymorphism array (SNP-A) analysis and exon sequencing of 100 genes, performed in 52 and 40 cases, respectively (39 overlapping), revealed ≥1 aberration in 89%; when adding cytogenetic data, this frequency increased to 98%. Uniparental isodisomies (UPIDs) were detected in 13% and copy number aberrations (CNAs) in 63% (median 2/case); three UPIDs and 22 CNAs were recurrent. Twenty-two genes were targeted by focal CNAs, including AEBP2 and PHF6 deletions and genes involved in AML-associated gene fusions. Deep sequencing identified mutations in 65% of cases (median 1/case). In total, 60 mutations were found in 30 genes, primarily those encoding signalling proteins (47%), transcription factors (25%), or epigenetic modifiers (13%). Twelve genes (BCOR, CEBPA, FLT3, GATA1, KIT, KRAS, NOTCH1, NPM1, NRAS, PTPN11, SMC3 and TP53) were recurrently mutated. We conclude that SNP-A and deep sequencing analyses complement the cytogenetic diagnosis of paediatric AML."	"DephosSite: a machine learning approach for discovering phosphotase-specific dephosphorylation sites. Protein dephosphorylation, which is an inverse process of phosphorylation, plays a crucial role in a myriad of cellular processes, including mitotic cycle, proliferation, differentiation, and cell growth. Compared with tyrosine kinase substrate and phosphorylation site prediction, there is a paucity of studies focusing on computational methods of predicting protein tyrosine phosphatase substrates and dephosphorylation sites. In this work, we developed two elegant models for predicting the substrate dephosphorylation sites of three specific phosphatases, namely, PTP1B, SHP-1, and SHP-2. The first predictor is called MGPS-DEPHOS, which is modified from the GPS (Group-based Prediction System) algorithm with an interpretable capability. The second predictor is called CKSAAP-DEPHOS, which is built through the combination of support vector machine (SVM) and the composition of k-spaced amino acid pairs (CKSAAP) encoding scheme. Benchmarking experiments using jackknife cross validation and 30 repeats of 5-fold cross validation tests show that MGPS-DEPHOS and CKSAAP-DEPHOS achieved AUC values of 0.921, 0.914 and 0.912, for predicting dephosphorylation sites of the three phosphatases PTP1B, SHP-1, and SHP-2, respectively. Both methods outperformed the previously developed kNN-DEPHOS algorithm. In addition, a web server implementing our algorithms is publicly available at http://genomics.fzu.edu.cn/dephossite/ for the research community. "	"The use of SHP-2 gene transduced bone marrow mesenchymal stem cells to promote osteogenic differentiation and bone defect repair in rat. Bone tissue engineering is a promising approach for bone regeneration, in which growth factors play an important role. The tyrosine phosphatase Src-homology region 2-containing protein tyrosine phosphatase 2 (SHP2), encoded by the PTPN11 gene, is essential for the differentiation, proliferation and metabolism of osteoblasts. However, SHP-2 has never been systematically studied for its effect in osteogenesis. We predicted that overexpression of SHP-2 could promote bone marrow-derived mesenchymal stem cell (BMSC)osteogenic differentiation and SHP-2 transduced BMSCs could enhance new bone formation, determined using the following study groups: (1) BMSCs transduced with SHP-2 and induced with osteoblast-inducing liquid (BMSCs/SHP-2/OL); (2) BMSCs transduced with SHP-2 (BMSCs/-SHP-2); (3) BMSCs induced with osteoblast-inducing liquid (BMSCs/OL) and (4) pure BMSCs. Cells were assessed for osteogenic differentiation by quantitative real-time polymerase chain reaction analysis, western blot analysis, alkaline phosphatase activity and alizarin red S staining. For in vivo assessment, cells were combined with beta-tricalcium phosphate scaffolds and transplanted into rat calvarial defects for 8 weeks. Following euthanasia, skull samples were explanted for osteogenic evaluation, including micro-computed tomography measurement, histology and immunohistochemistry staining. SHP-2 and upregulation of its gene promoted BMSC osteogenic differentiation and therefore represents a potential new therapeutic approach to bone repair. © 2016 Wiley Periodicals, Inc. J Biomed Mater Res Part A: 104A: 1871-1881, 2016."	"miR-203 and miR-221 regulate SOCS1 and SOCS3 in essential thrombocythemia. The biological basis of essential thrombocythemia (ET) patients lacking known mutations is still unknown. MicroRNAs (miRNA) regulate hematopoietic differentiation and are deregulated in several hematopoietic malignancies. However, miRNA expression in ET patients has been poorly explored. We performed miRNA profiling in platelets from 19 ET patients and 10 healthy controls. Hierarchical cluster analysis showed two well-separated clusters between patients and controls, indicating that ET platelets had a characteristic 70-miRNA signature (P&lt;0.0001), 68 of which were downregulated. According to the mutational status, three differentially expressed miRNAs, miR-15a (P=0.045), miR-150 (P=0.001) and miR-519a (P=0.036), were identified. A 40-miRNA signature was identified characterizing JAK2V617F-positive ET patients. Eight genes, whose interaction with the miRNAs could activate the JAK/STAT pathway were identified. An inverse correlation was observed between miRNAs expression and their target genes for SOCS1 and miR-221, SOCS3 and miR-221, SOCS3 and miR-203, and PTPN11 and miR-23a. All three miRNAs were upregulated in JAK2V617F-negative ET patients. SOCS1 and SOCS3 were validated as targets of miR-221 and miR-203, respectively. In summary, our study shows that platelets from JAK2V617F-negative ET patients harbor a specific miRNA signature that can participate in the modulation of the JAK/STAT pathway through regulation of key genes as SOCS1 and SOCS3. "	"Exostoses, enchondromatosis and metachondromatosis; diagnosis and management. We describe a 5 years old girl who presented to the multidisciplinary skeletal dysplasia clinic following excision of two bony lumps from her fingers. Based on clinical examination, radiolographs and histological results an initial diagnosis of hereditary multiple exostosis (HME) was made. Four years later she developed further lumps which had the radiological appearance of enchondromas. The appearance of both exostoses and enchondromas suggested a possible diagnosis of metachondromatosis. Genetic testing revealed a splice site mutation at the end of exon 11 on the PTPN11 gene, confirming the diagnosis of metachondromatosis. While both single or multiple exostoses and enchondromas occur relatively commonly on their own, the appearance of multiple exostoses and enchondromas together is rare and should raise the differential diagnosis of metachondromatosis. Making this diagnosis is important as the lesions in metachondromatosis may spontaneously resolve and therefore surgical intervention is often unnecessary. We discuss the diagnostic findings, genetic causes, treatment and prognosis of this rare condition of which less than thirty cases have previously been reported. "	"Anti-proliferative effects of T cells expressing a ligand-based chimeric antigen receptor against CD116 on CD34(+) cells of juvenile myelomonocytic leukemia. Juvenile myelomonocytic leukemia (JMML) is a fatal, myelodysplastic/myeloproliferative neoplasm of early childhood. Patients with JMML have mutually exclusive genetic abnormalities in granulocyte-macrophage colony-stimulating factor (GM-CSF) receptor (GMR, CD116) signaling pathway. Allogeneic hematopoietic stem cell transplantation is currently the only curative treatment option for JMML; however, disease recurrence is a major cause of treatment failure. We investigated adoptive immunotherapy using GMR-targeted chimeric antigen receptor (CAR) for JMML. We constructed a novel CAR capable of binding to GMR via its ligand, GM-CSF, and generated piggyBac transposon-based GMR CAR-modified T cells from three healthy donors and two patients with JMML. We further evaluated the anti-proliferative potential of GMR CAR T cells on leukemic CD34(+) cells from six patients with JMML (two NRAS mutations, three PTPN11 mutations, and one monosomy 7), and normal CD34(+) cells. GMR CAR T cells from healthy donors suppressed the cytokine-dependent growth of MO7e cells, but not the growth of K562 and Daudi cells. Co-culture of healthy GMR CAR T cells with CD34(+) cells of five patients with JMML at effector to target ratios of 1:1 and 1:4 for 2 days significantly decreased total colony growth, regardless of genetic abnormality. Furthermore, GMR CAR T cells from a non-transplanted patient and a transplanted patient inhibited the proliferation of respective JMML CD34(+) cells at onset to a degree comparable to healthy GMR CAR T cells. Seven-day co-culture of GMR CAR T cells resulted in a marked suppression of JMML CD34(+) cell proliferation, particularly CD34(+)CD38(-) cell proliferation stimulated with stem cell factor and thrombopoietin on AGM-S3 cells. Meanwhile, GMR CAR T cells exerted no effects on normal CD34(+) cell colony growth. Ligand-based GMR CAR T cells may have anti-proliferative effects on stem and progenitor cells in JMML."	"Targeting the PI3K/Akt pathway in murine MDS/MPN driven by hyperactive Ras. Chronic and juvenile myelomonocytic leukemias (CMML and JMML) are myelodysplastic/myeloproliferative neoplasia (MDS/MPN) overlap syndromes that respond poorly to conventional treatments. Aberrant Ras activation because of NRAS, KRAS, PTPN11, CBL and NF1 mutations is common in CMML and JMML. However, no mechanism-based treatments currently exist for cancers with any of these mutations. An alternative therapeutic strategy involves targeting Ras-regulated effector pathways that are aberrantly activated in CMML and JMML, which include the Raf/MEK/ERK and phosphoinositide-3'-OH kinase (PI3K)/Akt cascades. Mx1-Cre, Kras(D12) and Mx1-Cre, Nf1(flox/)(-) mice accurately model many aspects of CMML and JMML. Treating Mx1-Cre, Kras(D12) mice with GDC-0941 (also referred to as pictilisib), an orally bioavailable inhibitor of class I PI3K isoforms, reduced leukocytosis, anemia and splenomegaly while extending survival. However, GDC-0941 treatment attenuated activation of both PI3K/Akt and Raf/MEK/ERK pathways in primary hematopoietic cells, suggesting it could be acting through suppression of Raf/MEK/ERK signals. To interrogate the importance of the PI3K/Akt pathway specifically, we treated mice with the allosteric Akt inhibitor MK-2206. This compound had no effect on Raf/MEK/ERK signaling, yet it also induced robust hematologic responses in Kras and Nf1 mice with MPN. These data support investigating PI3K/Akt pathway inhibitors as a therapeutic strategy in JMML and CMML patients."	"The adhesion molecule PECAM-1 enhances the TGF-β-mediated inhibition of T cell function. Transforming growth factor-β (TGF-β) is an immunosuppressive cytokine that inhibits the proinflammatory functions of T cells, and it is a major factor in abrogating T cell activity against tumors. Canonical TGF-β signaling results in the activation of Smad proteins, which are transcription factors that regulate target gene expression. We found that the cell surface molecule platelet endothelial cell adhesion molecule-1 (PECAM-1) facilitated noncanonical (Smad-independent) TGF-β signaling in T cells. Subcutaneously injected tumor cells that are dependent on TGF-β-mediated suppression of immunity for growth grew more slowly in PECAM-1(-/-) mice than in their wild-type counterparts. T cells isolated from PECAM-1(-/-) mice demonstrated relative insensitivity to the TGF-β-dependent inhibition of interferon-γ (IFN-γ) production, granzyme B synthesis, and cellular proliferation. Similarly, human T cells lacking PECAM-1 demonstrated decreased sensitivity to TGF-β in a manner that was partially restored by reexpression of PECAM-1. Co-incubation of T cells with TGF-β and a T cell-activating antibody resulted in PECAM-1 phosphorylation on an immunoreceptor tyrosine-based inhibitory motif (ITIM) and the recruitment of the inhibitory Src homology 2 (SH2) domain-containing tyrosine phosphatase-2 (SHP-2). Such conditions also induced the colocalization of PECAM-1 with the TGF-β receptor complex as identified by coimmunoprecipitation, confocal microscopy, and proximity ligation assays. These studies indicate a role for PECAM-1 in enhancing the inhibitory functions of TGF-β in T cells and suggest that therapeutic targeting of the PECAM-1-TGF-β inhibitory axis represents a means to overcome TGF-β-dependent immunosuppression within the tumor microenvironment. "	"Hypertrophic neuropathy in Noonan syndrome with multiple lentigines. RASopathies comprise several genetic syndromes with mainly cardio-facial-cutaneous manifestations. We report a patient with Noonan syndrome with multiple lentigines (NSML) due to a PTPN11 (p.Thr468Met) mutation associated with hypertrophic neuropathy of lumbar plexus in an adult woman, initially referred for neuropathic pain. Differential diagnosis of neurofibromatosis type 1 (NF1) and other RASopathies is difficult without molecular testing. © 2016 Wiley Periodicals, Inc."	"Genomic Profiling of Pediatric Acute Myeloid Leukemia Reveals a Changing Mutational Landscape from Disease Diagnosis to Relapse. The genomic and clinical information used to develop and implement therapeutic approaches for acute myelogenous leukemia (AML) originated primarily from adult patients and has been generalized to patients with pediatric AML. However, age-specific molecular alterations are becoming more evident and may signify the need to age-stratify treatment regimens. The NCI/COG TARGET-AML initiative used whole exome capture sequencing (WXS) to interrogate the genomic landscape of matched trios representing specimens collected upon diagnosis, remission, and relapse from 20 cases of de novo childhood AML. One hundred forty-five somatic variants at diagnosis (median 6 mutations/patient) and 149 variants at relapse (median 6.5 mutations) were identified and verified by orthogonal methodologies. Recurrent somatic variants [in (greater than or equal to) 2 patients] were identified for 10 genes (FLT3, NRAS, PTPN11, WT1, TET2, DHX15, DHX30, KIT, ETV6, KRAS), with variable persistence at relapse. The variant allele fraction (VAF), used to measure the prevalence of somatic mutations, varied widely at diagnosis. Mutations that persisted from diagnosis to relapse had a significantly higher diagnostic VAF compared with those that resolved at relapse (median VAF 0.43 vs. 0.24, P &lt; 0.001). Further analysis revealed that 90% of the diagnostic variants with VAF &gt;0.4 persisted to relapse compared with 28% with VAF &lt;0.2 (P &lt; 0.001). This study demonstrates significant variability in the mutational profile and clonal evolution of pediatric AML from diagnosis to relapse. Furthermore, mutations with high VAF at diagnosis, representing variants shared across a leukemic clonal structure, may constrain the genomic landscape at relapse and help to define key pathways for therapeutic targeting. Cancer Res; 76(8); 2197-205. ©2016 AACR."	"[Juvenile myelomonocytic leukemia (JMML): recent advances in molecular pathogenesis and treatment]. Juvenile myelomonocytic leukemia (JMML) is a rare myelodysplastic/myeloproliferative disorder that occurs during infancy and early childhood; this disorder is characterized by hypersensitivity of the myeloid progenitor cells to granulocyte-macrophage colony-stimulating factor (GM-CSF) in vitro. JMML usually involves somatic and/or germline mutations in the genes of the RAS pathway, including PTPN11, NRAS, KRAS, NF1, and CBL, in the leukemic cells. Recently, additional genetic and/or epigenetic alterations have been identified in JMML, and these alterations appear to be prognostic indicators. Moreover, analyses of JMML stem cells and induced pluripotent stem cells (iPSCs) technology are expected to identify new targets for therapeutic interventions. Almost all patients with JMML experience an aggressive clinical course, and hematopoietic stem cell transplantation (HSCT) is the only curative treatment. The most suitable therapeutic regimen after diagnosis and the optimal conditioning regimen prior to HSCT have yet to be identified, though several clinical trials have been initiated worldwide. Taken together, these new findings indicate that genetic and/or epigenetic alteration-specific risk management may be introduced, and that suitable pre- or post-allogeneic HSCT treatments which are less toxic and can improve outcomes will be developed in the near future. "	"Retrospective study of prenatal ultrasound findings in newborns with a Noonan spectrum disorder. Noonan spectrum disorders (NSDs) occur in 1:1000-2500 live births. Currently, there are no guidelines for prenatal molecular genetic testing for NSDs. Recent studies recommend prenatal testing for NSDs when ultrasonography detects two or more associated abnormalities. A stronger association between ultrasound findings and NSDs would enable more informed prenatal genetic testing. A total of 212 newborns (0-12 weeks) with prenatal ultrasound findings and a clinical suspicion of a NSD were referred for molecular genetic testing. Of these, 159/212 newborns tested had a single ultrasound abnormality and 53/212 newborns had two or more. Testing was performed by either a microarray-based resequencing assay or next generation sequencing of RAS/MAPK pathway genes associated with NSDs. Prenatal ultrasound findings in positive and negative cases were compared. A disease-causing variant was identified in 21.7% (46/212) of newborns tested. Of these positive cases, 67.4% (31/46) had only one ultrasound abnormality reported. The rate of detecting a disease-causing variant in cases with one ultrasound finding was 19.5% (31/159), which was not significantly different (p-value = 0.36) than that in cases with two or more ultrasound findings (28.3%; 15/53). Prenatal molecular testing for NSDs should be considered even in the presence of a single associated abnormal ultrasound finding. © 2016 John Wiley &amp; Sons, Ltd."	"A novel double-negative feedback loop between miR-489 and the HER2-SHP2-MAPK signaling axis regulates breast cancer cell proliferation and tumor growth. Human epidermal growth factor receptor 2 (HER2 or ErBb2) is a receptor tyrosine kinase overexpressed in 20-30% of breast cancers and associated with poor prognosis and outcome. Dysregulation of several microRNAs (miRNAs) plays a key role in breast cancer progression and metastasis. In this study, we screened and identified miRNAs dysregualted in HER2-positive breast cancer cells. Our molecular study demonstrated that miR-489 was specifically downregulated by the HER2-downstream signaling, especially through the MAPK pathway. Restoration or overexpression of miR-489 in HER2-positive breast cancer cells significantly inhibited cell growth in vitro and decreased the tumorigenecity and tumor growth in xenograft mice. Mechanistically, we found that overexpression of miR-489 led to the decreased levels of HER2 and SHP2 and thus attenuated HER2-downstream signaling. Furthermore, we for the first time demonstrated that HER2 is a direct target of miR-489 and therefore HER2-SHP2-MAPK and miR-489 signaling pathways form a mutually inhibitory loop. Using quantitative real-time PCR analysis and Fluorescent in situ hybridization technique (FISH), we found that miR-489 was expressed at significantly lower level in tumor tissues compared to the adjacent normal tissues. Downregulation of miR-489 in breast cancers was associated with aggressive tumor phenotypes. Overall, our results define a double-negative feedback loop involving miR-489 and the HER2-SHP2-MAPK signaling axis that can regulate breast cancer cell proliferation and tumor progression and might have therapeutic relevance for HER2-positive breast cancer. "	"Attenuation of the programmed cell death-1 pathway increases the M1 polarization of macrophages induced by zymosan. Programmed cell death-1 (PD-1) is a member of the CD28 superfamily that delivers negative signals on interaction with its 2 ligands, PD-L1 and PD-L2. We assessed the contribution of the PD-1 pathway to regulating the polarization of macrophages that promote inflammation induced by zymosan. We found that PD-1(-/-) mice developed robust peritonitis with more abundant infiltration of M1 macrophages, accompanied by higher levels of pro-inflammation factors, especially monocyte chemotactic protein-1 (MCP-1) compared with wild-type controls ex vivo and in vitro. Our results indicated that PD-1 deficiency promotes M1 rather than M2 polarization of macrophages by enhancing the expression of p-STAT1/p-NF-κB p65 and downregulating p-STAT6. We found that PD-1 engagement followed by zymosan stimulation might primarily attenuate the phosphorylation of tyrosine residue in PD-1 receptor/ligand and the recruitment of SHP-2 to PD-1 receptor/ligand, leading to the reduction of M1 type cytokine production. "	"Resveratrol attenuates constitutive STAT3 and STAT5 activation through induction of PTPε and SHP-2 tyrosine phosphatases and potentiates sorafenib-induced apoptosis in renal cell carcinoma. Signal transducers and activators of transcription (STAT) proteins are critical transcription factor that are aberrantly activated in various types of malignancies, including renal cell carcinoma (RCC). We investigated the effect of resveratrol (RES), an edible polyphenol phytoalexin on STAT3 and STAT5 activation cascade in both Caki-1 and 786-O RCC cell lines. We found that RES suppressed both constitutive STAT3 (tyrosine residue 705 and serine residue 727) and STAT5 (tyrosine residue 694 and 699) activation, which correlated with the suppression of the upstream kinases (JAK1, JAK2, and c-Src) in RCC. Also, RES abrogated DNA binding capacity and nuclear translocation of these two transcription factors. RES-induced an increased expression of PTPε and SHP-2 and the deletion of these two genes by small interfering RNA abolished the ability of RES to inhibit STAT3 activation, suggesting the critical role of both PTPε and SHP-2 in its possible mechanism of action. Moreover, RES induced S phase cell cycle arrest, caused induction of apoptosis, loss of mitochondrial membrane potential, and suppressed colony formation in RCC. We also found that RES downregulated the expression of STAT3/5-regulated antiapoptotic, proliferative, and metastatic gene products; and this correlated with induction of caspase-3 activation and anti-invasive activity. Beside, RES potentiated sorafenib induced inhibitory effect on constitutive STAT3 and STAT5 phosphorylation, apoptotic effects in 786-O cells, and this correlated with down-regulation of various oncogenic gene products. Overall, our results suggest that RES is a blocker of both STAT3 and STAT5 activation and thus may exert potential growth inhibitory effects against RCC cells."	"Growth patterns of patients with Noonan syndrome: correlation with age and genotype. Growth patterns of patients with Noonan syndrome (NS) were established before the involved genes were identified. The goal of this study was to compare growth parameters according to genotype in patients with NS. The study population included 420 patients (176 females and 244 males) harboring mutations in the PTPN11, SOS1, RAF1, or KRAS genes. NS-associated PTPN11 mutations (NS-PTPN11) and NS with multiple lentigines-associated PTPN11 mutations (NSML-PTPN11) were distinguished. Birth measures and height and body mass index (BMI) measures at 2, 5, 10 years, and adulthood were compared with the general population and between genotypes. Patients with NS were shorter at birth (mean birth length standard deviation score (SDS): -1.0 ± 1.4; P &lt; 0.001) and throughout childhood than the healthy population, with height SDS being -2.1 ± 1.3 at 2 years, and -2.1 ± 1.2 at 5 and 10 years and adulthood (P &lt; 0.001). At birth, patients with NS-PTPN11 were significantly shorter and thinner than patients with NSML-PTPN11, SOS1, or KRAS. Growth retardation was significantly less severe and less frequent at 2 years in patients with NSML-PTPN11 and SOS1 than in patients with NS-PTPN11 (P &lt; 0.001 and P = 0.002 respectively). Patients with NS had lower BMI at 10 years (P &lt; 0.001). No difference between genotypes was demonstrated. Determining the growth patterns of patients with NS according to genotype should better inform clinicians about the natural course of growth in NS so that they can optimize the follow-up and management of these patients."	"The Mutational Landscape of Acute Promyelocytic Leukemia Reveals an Interacting Network of Co-Occurrences and Recurrent Mutations. Preliminary Acute Promyelocytic Leukemia (APL) whole exome sequencing (WES) studies have identified a huge number of somatic mutations affecting more than a hundred different genes mainly in a non-recurrent manner, suggesting that APL is a heterogeneous disease with secondary relevant changes not yet defined. To extend our knowledge of subtle genetic alterations involved in APL that might cooperate with PML/RARA in the leukemogenic process, we performed a comprehensive analysis of somatic mutations in APL combining WES with sequencing of a custom panel of targeted genes by next-generation sequencing. To select a reduced subset of high confidence candidate driver genes, further in silico analysis were carried out. After prioritization and network analysis we found recurrent deleterious mutations in 8 individual genes (STAG2, U2AF1, SMC1A, USP9X, IKZF1, LYN, MYCBP2 and PTPN11) with a strong potential of being involved in APL pathogenesis. Our network analysis of multiple mutations provides a reliable approach to prioritize genes for additional analysis, improving our knowledge of the leukemogenesis interactome. Additionally, we have defined a functional module in the interactome of APL. The hypothesis is that the number, or the specific combinations, of mutations harbored in each patient might not be as important as the disturbance caused in biological key functions, triggered by several not necessarily recurrent mutations. "	"Visualizing the origins of selfish de novo mutations in individual seminiferous tubules of human testes. De novo point mutations arise predominantly in the male germline and increase in frequency with age, but it has not previously been possible to locate specific, identifiable mutations directly within the seminiferous tubules of human testes. Using microdissection of tubules exhibiting altered expression of the spermatogonial markers MAGEA4, FGFR3, and phospho-AKT, whole genome amplification, and DNA sequencing, we establish an in situ strategy for discovery and analysis of pathogenic de novo mutations. In 14 testes from men aged 39-90 y, we identified 11 distinct gain-of-function mutations in five genes (fibroblast growth factor receptors FGFR2 and FGFR3, tyrosine phosphatase PTPN11, and RAS oncogene homologs HRAS and KRAS) from 16 of 22 tubules analyzed; all mutations have known associations with severe diseases, ranging from congenital or perinatal lethal disorders to somatically acquired cancers. These results support proposed selfish selection of spermatogonial mutations affecting growth factor receptor-RAS signaling, highlight its prevalence in older men, and enable direct visualization of the microscopic anatomy of elongated mutant clones. "	"Acute lymphoblastic leukemia in the context of RASopathies. Noonan syndrome is associated with a range of malignancies including acute lymphoblastic leukemia (ALL). However, little information is available regarding the frequency, natural history, characteristics and prognosis of ALL in Noonan syndrome or RASopathies in general. Cross-referencing data from a large prospective cohort of 1176 patients having a molecularly confirmed RASopathy with data from the French childhood cancer registry allowed us to identify ALL in 6 (0.5%) patients including 4/778 (0.5%) with a germline PTPN11 mutation and 2/94 (2.1%) with a germline SOS1 mutation. None of the patients of our series with CFC syndrome (with germline BRAF or MAP2K1/MAP2K2 mutation - n = 121) or Costello syndrome (with HRAS mutation - n = 35) had an ALL. A total of 19 Noonan-ALL were gathered by adding our patients to those of the International Berlin-Munster-Frankfurt (I-BFM) study group and previously reported patients. Strikingly, all Noonan-associated ALL were B-cell precursor ALL, and high hyperdiploidy with more than 50 chromosomes was found in the leukemia cells of 13/17 (76%) patients with available genetics data. Our data suggest that children with Noonan syndrome are at higher risk to develop ALL. Like what is observed for somatic PTPN11 mutations, NS is preferentially associated with the development of hyperdiploid ALL that will usually respond well to chemotherapy. However, Noonan syndrome patients seem to have a propensity to develop post therapy myelodysplasia that can eventually be fatal. Hence, one should be particularly cautious when treating these patients."	"A PATIENT WITH PARTIAL CHROMOSOME 12q DUPLICATION AND 10q DELETION. Chromosomal deletions and/or duplications are relatively common cytogenetic abnormalities. Clinical findings depend on pure or complex forms of the anomaly, the location and size. In those cases, using current analytical technologies increases the possibility of discovering candidate genes that were not detected by conventional karyotyping responsible for these features. Here, we report an 18-month-old girl with prenatal and postnatal growth retardation, secundum ASD and PDA, facial dysmorphic features including frontal bossing, arched eyebrows, hypertelorism, wide nasal bridge and chronic diarrhea. Chromosome analysis on the peripheral leukocytes showed a 46,XX del(10)(q26.3),dup(12)(q24.11-q24.33) dn karyotype. An array-CGH analysis was performed to understand which genes were located on the deletion and duplication regions and what was their relationship with the phenotype. Based on our analyses, the deletion of the CALY gene on Chromosome 10q and the duplication of PTPN11 and TBX5 genes on chromosome 12q were possibly relevant for the clinical findings with our patient."	"CLINICAL REPORT OF A PATIENT WITH DE NOVO TRISOMY 12q23.1q24.33. We report a patient with a rare de novo duplication of 12q23.1-12q24.33 region with a 32.7 Mb gain, having similar features seen in previously reported isolated cases of duplications of the 12q23q24 region, such as growth retardation, neuromotor retardation, corpus callosum agenesis, dysmorphic features such as, hypertelorism, epicanthus, flat nasal bridge, low-set small ears, down-turned corners of the mouth, micrognathia, cryptorchidism and limb anomalies such as pes plano valgus, prominent heels and overriding toes. Our patient has Noonan-like features, such as short stature, short neck, epicanthal folds, ptosis of eyelids, hypertelorism, pectus excavatum, widely spaced nipples and cryptorchidism. Duplication of PTPN11 gene has been postulated as a mechanism for the Noonan syndrome. Phenotypic features and the genes involved in this region are important to further delineate the 12q23q24 phenotype."	"Treating leukemia at the risk of inducing severe anemia. Anemia is a frequently observed adverse effect in cancer patients who receive chemotherapy or drugs designed to block specific oncogenic signaling pathways, although the underlying mechanisms are poorly understood. An article first published online (Zhu HH, Luo X, Zhang K, et al. Proc Natl Acad Sci USA 2015;112:13342-13347) presented data indicating that cell type-specific pathway cross-talk is likely an important mechanism to consider. Shp2 and Pten, two master regulators of central cytoplasmic signaling pathways, oppose each other in myeloproliferation and leukemogenesis, but cooperate in promoting erythropoiesis. Thus, genetic ablation or pharmacologic inhibition of Shp2 suppresses the leukemogenic effect of Pten loss, yet simultaneously induces severe anemia in mice with Pten deficiency in blood cells. "	"Mutation Spectrum and Phenotypic Features in Noonan Syndrome with PTPN11 Mutations: Definition of Two Novel Mutations. To evaluate the spectrum of PTPN11 gene mutations in Noonan syndrome patients and to study the genotype-phenotype associations. In this study, twenty Noonan syndrome patients with PTPN11 mutations were included. The patients underwent a detailed clinical and physical evaluation. To identify inherited cases, parents of all mutation positive patients were analyzed. Thirteen different PTPN11 mutations, two of them being novel, were detected in the study group. These mutations included eleven missense mutations: p.G60A, p.D61N, p.Y62D, p.Y63C, p.E69Q, p.Q79R, p.Y279C,p.N308D, p.N308S, p.M504V, p.Q510R and two novel missense mutations: p.I56V and p.I282M. The frequency of cardiac abnormalities and short stature were found to be 80 % and 80 %, respectively. Mental retardation was not observed in patients having exon 8 mutations. No significant correlations were detected between other phenotypic features and genotypes. By identifying genotype-phenotype correlations, this study provides information on phenotypes observed in NS patients with different PTPN11 mutations."	"The regulation of male fertility by the PTPN11 tyrosine phosphatase. PTPN11 (also known as SHP2) is a ubiquitously expressed non-receptor tyrosine phosphatase that regulates cell survival, proliferation, differentiation, migration and adhesion. Naturally occurring mutations in the PTPN11 gene cause Noonan and LEOPARD syndromes, two genetic disorders that are characterized by a spectrum of defects including male infertility. This review summarizes four cellular and molecular mechanisms by which PTPN11 acts to support male fertility. First, PTPN11 is required for the proliferation and survival of spermatogonial stem cells (SSCs) that are essential to replenish the germ cells that will become sperm. Second, PTPN11 regulation of cellular adhesion functions in Sertoli cells is required to maintain the blood-testis barrier (BTB) that protects meiotic and post-meiotic germ cells. Third, expression of PTPN11 in Sertoli cells is essential to prevent premature differentiation and exhaustion of the SSC population and to maintain the SSC niche. Finally, in Leydig cells, PTPN11 supports mitochondrial fusion and the expression of acyl-CoA synthetase (ACSL4) needed for the production of steroids including testosterone, which is required for fertility."	"Distinct GAB2 signaling pathways are essential for myeloid and lymphoid transformation and leukemogenesis by BCR-ABL1. Tyrosine kinase inhibitors (TKIs) directed against BCR-ABL1, the product of the Philadelphia (Ph) chromosome, have revolutionized treatment of patients with chronic myeloid leukemia (CML). However, acquired resistance to TKIs is a significant clinical problem in CML, and TKI therapy is much less effective against Ph(+)B-cell acute lymphoblastic leukemia (B-ALL). BCR-ABL1, via phosphorylated Tyr177, recruits the adapter GRB2-associated binding protein 2 (GAB2) as part of a GRB2/GAB2 complex. We showed previously that GAB2 is essential for BCR-ABL1-evoked myeloid transformation in vitro. Using a genetic strategy and mouse models of CML and B-ALL, we show here that GAB2 is essential for myeloid and lymphoid leukemogenesis by BCR-ABL1. In the mouse model, recipients of BCR-ABL1-transducedGab2(-/-)bone marrow failed to develop CML-like myeloproliferative neoplasia. Leukemogenesis was restored by expression of GAB2 but not by GAB2 mutants lacking binding sites for its effectors phosphatidylinositol 3-kinase (PI3K) or SRC homology 2-containing phosphotyrosine phosphatase 2 (SHP2). GAB2 deficiency also attenuated BCR-ABL1-induced B-ALL, but only the SHP2 binding site was required. The SHP2 and PI3K binding sites were differentially required for signaling downstream of GAB2. Hence, GAB2 transmits critical transforming signals from Tyr177 to PI3K and SHP2 for CML pathogenesis, whereas only the GAB2-SHP2 pathway is essential for lymphoid leukemogenesis. Given that GAB2 is dispensable for normal hematopoiesis, GAB2 and its effectors PI3K and SHP2 represent promising targets for therapy in Ph(+)hematologic neoplasms. "	"Identification of genomic aberrations in hemangioblastoma by droplet digital PCR and SNP microarray highlights novel candidate genes and pathways for pathogenesis. The genetic mechanisms underlying hemangioblastoma development are still largely unknown. We used high-resolution single nucleotide polymorphism microarrays and droplet digital PCR analysis to detect copy number variations (CNVs) in total of 45 hemangioblastoma tumors. We identified 94 CNVs with a median of 18 CNVs per sample. The most frequently gained regions were on chromosomes 1 (p36.32) and 7 (p11.2). These regions contain the EGFR and PRDM16 genes. Recurrent losses were located at chromosome 12 (q24.13), which includes the gene PTPN11. Our findings provide the first high-resolution genome-wide view of chromosomal changes in hemangioblastoma and identify 23 candidate genes: EGFR, PRDM16, PTPN11, HOXD11, HOXD13, FLT3, PTCH, FGFR1, FOXP1, GPC3, HOXC13, HOXC11, MKL1, CHEK2, IRF4, GPHN, IKZF1, RB1, HOXA9, and micro RNA, such as hsa-mir-196a-2 for hemangioblastoma pathogenesis. Furthermore, our data implicate that cell proliferation and angiogenesis promoting pathways may be involved in the molecular pathogenesis of hemangioblastoma."	NA
+"RAF1"	"Noonan syndrome"	"Induction of PIK3CA alterations during neoadjuvant letrozole may improve outcome in postmenopausal breast cancer patients. Estrogen receptor positive (ER+) breast cancer constitutes almost 85% of all breast cancer patients and are a genetically highly heterogenic group. Data on the association of somatic alterations to outcome and prognosis are however sparse. In this neoadjuvant endocrine phase II trial including postmenopausal breast cancer patients with ER+, HER2 normal breast cancer, we investigated the rate of pathogenic mutations before and after treatment as well as the association with treatment response and survival. Pretreatment and posttreatment tumour samples from 109 patients treated with neoadjuvant letrozole were collected and analysed with Next Generation Sequencing utilizing a panel of 12 genes (ALK, BRAF, EGFR, ERBB2, ERBB3, ESR1, KIT, KRAS, NRAS, PDGFRA, PIK3CA, and RAF1). Residual disease was assessed by a modified Miller Payne scale and the Residual Cancer Burden index. Survival data were collected prospectively. Among the 109 patients, 52 had at least one pathogenic mutation in the pretreatment sample and 60 in the posttreatment sample. The most frequently mutated gene was PIK3CA, followed by EGFR and KRAS. Twelve different pathogenic PIK3CA mutations were identified, primarily in exon 20 and exon 9. An altered PIK3CA mutation profile from the pre- to the posttreatment specimen was significantly associated to improved pathological outcome. Overall and Disease-Free Survival benefits in PIK3CA mutated patients was observed. Considerable heterogeneity was identified both among patients and between pre- and posttreatment samples. PIK3CA has the potential to be a predictive biomarker. To further assess the implications of a treatment related altered PIK3CA mutation profile, more data are needed."	"Identifying the key regulators that promote cell-cycle activity in the hearts of early neonatal pigs after myocardial injury. Mammalian cardiomyocytes exit the cell cycle shortly after birth. As a result, an occurrence of coronary occlusion-induced myocardial infarction often results in heart failure, postinfarction LV dilatation, or death, and represents one of the most significant public health morbidities worldwide. Interestingly however, the hearts of neonatal pigs have been shown to regenerate following an acute myocardial infarction (MI) occuring on postnatal day 1 (P1); a recovery period which is accompanied by an increased expression of markers for cell-cycle activity, and suggests that early postnatal myocardial regeneration may be driven in part by the MI-induced proliferation of pre-existing cardiomyocytes. In this study, we identified signaling pathways known to regulate the cell cycle, and determined of these, the pathways persistently upregulated in response to MI injury. We identified five pathways (mitogen associated protein kinase [MAPK], Hippo, cyclic [cAMP], Janus kinase/signal transducers and activators of transcription [JAK-STAT], and Ras) which were comprehensively upregulated in cardiac tissues collected on day 7 (P7) and/or P28 of the P1 injury hearts. Several of the initiating master regulators (e.g., CSF1/CSF1R, TGFB, and NPPA) and terminal effector molecules (e.g., ATF4, FOS, RELA/B, ITGB2, CCND1/2/3, PIM1, RAF1, MTOR, NKF1B) in these pathways were persistently upregulated at day 7 through day 28, suggesting there exists at least some degree of regenerative activity up to 4 weeks following MI at P1. Our observations provide a list of key regulators to be examined in future studies targeting cell-cycle activity as an avenue for myocardial regeneration."	"Corrigendum to ``Chinese yam extract and adenosine attenuated LPS-induced cardiac dysfunction by inhibiting RAS and apoptosis via the ER-mediated activation of SHC/Ras/Raf1 pathway'' [Phytomedicine 61 (2019) /152857]. NA"	"MiR-135a inhibits non-small cell lung cancer progression by suppressing RAB1B expression and the RAS pathway. Lung cancer is the most common tumor in China and worldwide. Despite advances in diagnosis and therapy, it still represents the most lethal malignancy in industrialized countries. The study of regulatory noncoding RNAs has deepened our understanding of cancer on the molecular and clinical level. In this article, it showed that miR-135a was aberrantly downregulated in non-small cell lung cancer (NSCLC) cells in comparison with normal bronchial epithelial cells, and the expression of miR-135a inhibited proliferation, invasion and metastasis of NSCLC cells in vitro. Moreover, it was demonstrated that miR-135a inhibited the expression of multiple components (including RAS, Raf1, Rac1 and RhoA) of the RAS pathway via RAB1B, which was a novel target of miR-135a. The expression of miR-135a and RAB1B could effectively predict the clinical outcomes of NSCLC. In summary, miR-135a might function as a suppressor of NSCLC cells, and thus could be used as a potential therapeutic target."	"One Cell, One Drop, One Click: Hybrid Microfluidics for Mammalian Single Cell Isolation. Generating a stable knockout cell line is a complex process that can take several months to complete. In this work, a microfluidic method that is capable of isolating single cells in droplets, selecting successful edited clones, and expansion of these isoclones is introduced. Using a hybrid microfluidics method, droplets in channels can be individually addressed using a co-planar electrode system. In the hybrid microfluidics device, it is shown that single cells can be trapped and subsequently encapsulate them on demand into pL-sized droplets. Furthermore, droplets containing single cells are either released, kept in the traps, or merged with other droplets by the application of an electric potential to the electrodes that is actuated through an in-house user interface. This high precision control is used to successfully sort and recover single isoclones to establish monoclonal cell lines, which is demonstrated with a heterozygous NCI-H1299 lung squamous cell population resulting from loss-of-function eGFP and RAF1 gene knockout transfections."	"Novel LRRFIP2-RAF1 Fusion Identified in an Acral Melanoma: A Review of the Literature on Melanocytic Proliferations with RAF1 fusions and the Potential Therapeutic Implications. A small subset of cutaneous melanomas harbor oncogenic gene fusions, which could potentially serve as therapeutic targets for patients with advanced disease as novel therapies are developed. Fusions involving RAF1 are exceedingly rare in melanocytic neoplasms, occurring in less than 1% of melanomas, and usually arise in tumors that are wild type for BRAF, NRAS, and NF1. We describe herein a case of acral melanoma with two satellite metastases and sentinel lymph node involvement. The melanoma had a concomitant KIT variant and LRRFIP2-RAF1 fusion. This constellation of molecular findings has not been reported previously in melanoma. We review the existing literature on melanocytic neoplasms with RAF1 fusions and discuss the potential clinical implications of this genetic event. This article is protected by copyright. All rights reserved."	"Long noncoding RNA LINC01559 promotes pancreatic cancer progression by acting as a competing endogenous RNA of miR-1343-3p to upregulate RAF1 expression. An increasing number of studies have shown that lncRNAs are involved in the biological processes of pancreatic cancer (PC). Hence, we investigated the role of a novel noncoding RNA, LINC01559, involved in PC progression. LINC01559 and RAF1 were highly expressed in PC, while miR-1343-3p had low expression. High expression of LINC01559 was significantly associated with large tumors, lymph node metastasis, and poor prognosis. Functional experiment results revealed that silencing of LINC01559 significantly suppressed PC cell proliferation and metastasis. Meanwhile, LINC01559 could act as a ceRNA to competitively sponge miR-1343-3p to up-regulate RAF1 and activate its downstream ERK pathwayConclusions: LINC01559 functions as an oncogene in PC progression through acting as a ceRNA of miR-1343-3p. Hence, LINC01559 is a potential diagnostic and therapeutic target. RT-qPCR was performed to determine the expression of LINC01559 and miR-1343-3p in PC. Individual patient data were collected to investigate the correlation between clinicopathological features and LINC01559 expression. Subsequently, the expression of LINC01559, miR-1343-3p, and RAF1 was altered using transfection of vectors or inhibitors. Gain- and loss-of-function assays and mechanistic assays were applied to verify the effects of LINC01559, miR-1343-3p, and RAF1 on PC cell proliferation and metastasis in vivo and in vitro."	"Non-invasive prenatal sequencing for multiple Mendelian monogenic disorders among fetuses with skeletal dysplasia or increased nuchal translucency. To evaluate the performance of non-invasive prenatal sequencing for multiple Mendelian monogenic disorders (NIPS-M) among fetuses with skeletal abnormalities or increased nuchal translucency (NT). Pregnancies with fetal skeletal abnormalities or increased NT (≥3.0 mm) observed by ultrasonography were recruited between October 2017 and March 2019. Parental blood from 13 couples were collected for NIPS-M testing reported. All the NIPS-M results were followed up by invasive diagnostic testing or neonatal examination. Among the 13 cases, 8 (61.5%) yielded positive results for pathogenic variants in the FGFR3, COL1A1, RAF1, PTPN11 and SOS1 genes by NIPS-M. One case was excluded for further analysis due to insufficient fetal DNA (&lt;4.5%). De novo mutations were reported in six of the eight positive cases (75%). The other two were inconclusive as the pathogenic variants were detected in both plasma and genomic DNA of the mothers. The sensitivity of NIPS-M was 100%. Our pilot study demonstrates that NIPS-M is an accurate approach for detection of multiple monogenic disorders among fetuses with skeletal abnormalities or increased NT. It serves as an alternative and highly sensitive method to provide valuable molecular information for these groups of women who are reluctant to undergo invasive procedure. This article is protected by copyright. All rights reserved."	"Rubisco accumulation factor 1 (Raf1) plays essential roles in mediating Rubisco assembly and carboxysome biogenesis. Carboxysomes are membrane-free organelles for carbon assimilation in cyanobacteria. The carboxysome consists of a proteinaceous shell that structurally resembles virus capsids and internal enzymes including ribulose 1,5-bisphosphate carboxylase/oxygenase (Rubisco), the primary carbon-fixing enzyme in photosynthesis. The formation of carboxysomes requires hierarchical self-assembly of thousands of protein subunits, initiated from Rubisco assembly and packaging to shell encapsulation. Here we study the role of Rubisco assembly factor 1 (Raf1) in Rubisco assembly and carboxysome formation in a model cyanobacterium, Synechococcus elongatus PCC7942 (Syn7942). Cryo-electron microscopy reveals that Raf1 facilitates Rubisco assembly by mediating RbcL dimer formation and dimer-dimer interactions. Syn7942 cells lacking Raf1 are unable to form canonical intact carboxysomes but generate a large number of intermediate assemblies comprising Rubisco, CcaA, CcmM, and CcmN without shell encapsulation and a low abundance of carboxysome-like structures with reduced dimensions and irregular shell shapes and internal organization. As a consequence, the Raf1-depleted cells exhibit reduced Rubisco content, CO2-fixing activity, and cell growth. Our results provide mechanistic insight into the chaperone-assisted Rubisco assembly and biogenesis of carboxysomes. Advanced understanding of the biogenesis and stepwise formation process of the biogeochemically important organelle may inform strategies for heterologous engineering of functional CO2-fixing modules to improve photosynthesis."	"Bovine Interferon-Tau Activates Type I interferon-Associated Janus-signal Transducer in HPV16-positive Tumor Cell. The mechanisms of signal transduction by interferon-tau (IFN-τ) are widely known during the gestation of ruminants. In trophoblast cells, IFN-τ involves the activation of the JAK-STAT pathway, and it can have effects on other cell types, such as tumor cells. Here we report that the HPV16-positive BMK-16/myc cell treated with ovine IFN-τ, results in the activation of the canonical JAK-STAT and non-canonical JAK-STAT pathway. The MAPK signaling pathway was activated, we detected the proteins MEK1, MEK2, Raf1, STAT3, STA4, STAT5 and STAT6. Moreover, IFN-τ induced the expression of MHC Class I, MX and IP10 in the tumor cells and this response may be associated with the viral replication and with the anti-proliferative and the immunoregulatory effects of IFN-τ."	"Biology and grading of pleomorphic xanthoastrocytoma-what have we learned about it? Pleomorphic xanthoastrocytoma (PXA) is a rare astrocytoma predominantly affecting children and young adults. We performed comprehensive genomic characterization on a cohort of 67 patients with histologically defined PXA (n = 53, 79%) or anaplastic PXA (A-PXA, n = 14, 21%), including copy number analysis (ThermoFisher Oncoscan, n = 67), methylation profiling (Illumina EPIC array, n = 43) and targeted next generation sequencing (n = 32). The most frequent alterations were CDKN2A/B deletion (n = 63; 94%) and BRAF p.V600E (n = 51, 76.1%). In 7 BRAF p.V600 wild-type cases, alternative driver alterations were identified involving BRAF, RAF1 and NF1. Downstream phosphorylation of ERK kinase was uniformly present. Additional pathogenic alterations were rare, with TERT, ATRX and TP53 mutations identified in a small number of tumors, predominantly A-PXA. Methylation-based classification of 46 cases utilizing a comprehensive reference tumor allowed assignment to the PXA methylation class in 40 cases. A minority grouped with the methylation classes of ganglioglioma or pilocytic astrocytoma (n = 2), anaplastic pilocytic astrocytoma (n = 2) or control tissues (n = 2). In 9 cases, tissue was available from matched primary and recurrent tumors, including 8 with anaplastic transformation. At recurrence, two tumors acquired TERT promoter mutations and the majority demonstrated additional non-recurrent copy number alterations. Methylation class was preserved at recurrence. For 62 patients (92.5%), clinical follow-up data were available (median follow-up, 5.4 years). Overall survival was significantly different between PXA and A-PXA (5-year OS 80.8% vs. 47.6%; P = 0.0009) but not progression-free survival (5-year PFS 59.9% vs. 39.8%; P = 0.05). WHO grade remained a strong predictor of overall survival when limited to 38 cases defined as PXA by methylation-based classification. Our data confirm the importance of WHO grading in histologically and epigenetically defined PXA. Methylation-based classification may be helpful in cases with ambiguous morphology, but is largely confirmatory in PXA with well-defined morphology."	"Early But Not Delayed Optogenetic RAF Activation Promotes Astrocytogenesis in Mouse Neural Progenitors. The RAS/RAF/MEK/ERK pathway promotes gliogenesis but the kinetic role of RAF1, a key RAF kinase, in the induction of astrocytogenesis remains to be elucidated. To address this challenge, we determine the temporal functional outcome of RAF1 during mouse neural progenitor cell differentiation using an optogenetic RAF1 system (OptoRAF1). OptoRAF1 allows for reversible activation of the RAF/MEK/ERK pathway via plasma membrane recruitment of RAF1 based on blue light-sensitive protein dimerizer CRY2/CIB1. We found that early light-induced OptoRAF1 activation in neural progenitor cells promotes cell proliferation and increased expression of glial markers and glia-enriched genes. However, delayed OptoRAF1 activation in differentiated neural progenitor had little effect on glia marker expression, suggesting that RAF1 is required to promote astrocytogenesis only within a short time window. In addition, activation of OptoRAF1 did not have a significant effect on neurogenesis, but was able to promote neuronal neurite growth."	"Discovery of Turn-On Fluorescent Probes for Detecting PDEδ Protein in Living Cells and Tumor Slices. The first small-molecule fluorescent turn-on probes for detecting PDEδ protein were rationally designed, showing reasonable fluorescent properties and the fluorescent ability has been applied for visualization of the PDEδ protein in living cells and at tissue levels. The qPCR results showed that the mRNA expression of KRAS, PDEδ, AKT1, MAPK1, MEK7, RAF1, and mTOR were downregulated by probes 1-3 through PI3K/AKT/mTOR and MAPK signal pathways. The probes also can downregulate the protein level of pErk and tErk. Therefore, these small-molecule fluorescent probes are expected to be used in the screening of antipancreatic cancer drugs targeting the PDEδ protein, as well as in obtaining a better understanding of the pathological and physiological roles of PDEδ protein."	"PTPIP51 crosslinks the NFκB signaling and the MAPK pathway in SKBR3 cells. PTPIP51 interacts with NFκB signaling at the RelA and IκB level. NFκB signaling is linked to the initiation, progression and metastasis of breast cancer. Her2-amplified breast cancer cells frequently display activation of the NFκB signaling. We aimed to clarify the effects of NFκB inhibition on the NFκB- and MAPK-related interactome of PTPIP51 and cell viability in HaCat cells and SKBR3 cells. IKK-16 selectively reduced cell viability in SKBR3 cells. PDTC induced a formation of the Raf1/14-3-3/PTPIP51 complex in SKBR3 cells, indicating a shift of PTPIP51 into MAPK signaling. IKK-16 selectively inhibits cell viability of SKBR3 cells. In addition, PTPIP51 might serve as the mediator between NFκB signaling and the MAPK pathway in SKBR3."	"Maternal SLE and brachytelephalangic chondrodysplasia punctata in a patient with unrelated de novo RAF1 and SIX2 variants. Our improved tools to identify the aetiologies in patients with multiple abnormalities resulted in the finding that some patients have more than a single genetic condition and that some of the diagnoses made in the past are acquired rather than inherited. However, limited knowledge has been accumulated regarding the phenotypic outcome of the interaction between different genetic conditions identified in the same patients. We report a newborn girl with brachytelephalangic chondrodysplasia punctata (BCDP) as well as frontonasal dysplasia, ptosis, bilateral hearing loss, vertebral anomalies, and pulmonary hypoplasia who was found, by whole exome sequencing, to have a de novo pathogenic variant in RAF1 (c.770C&gt;T, [p.Ser257Leu]) and a likely pathogenic variant in SIX2 (c.760G&gt;A [p.A254T]), as well as maternal systemic lupus erythematosus (SLE). This case shows that BCDP is most probably not a diagnostic entity and can be associated with various conditions associated with CDP including maternal SLE."	"The novel duplication HRAS c.186_206dup p.(Glu62_Arg68dup): clinical and functional aspects. Specific activating missense HRAS variants cause Costello syndrome (CS), a RASopathy with recognizable facial features. The majority of these dominant disease causing variants affect the glycine residues in position 12 or 13. A clinically suspected CS diagnosis can be confirmed through identification of a dominant pathogenic HRAS variant. A novel HRAS variant predicting p.(Glu62_Arg68dup) was identified in an individual with hypertrophic cardiomyopathy, Chiari 1 malformation and ectodermal findings consistent with a RASopathy. Functional studies showed that the p.Glu62_Arg68dup alteration affects HRAS interaction with effector protein PIK3CA (catalytic subunit of phosphoinositide 3-kinase) and the regulator neurofibromin 1 (NF1) GTPase-activating protein (GAP). HRAS<sup>Glu62_Arg68dup</sup> binding with effectors rapidly accelerated fibrosarcoma (RAF1), RAL guanine nucleotide dissociation stimulator (RALGDS) and phospholipase C1 (PLCE1) was enhanced. Accordingly, p.Glu62_Arg68dup increased steady-state phosphorylation of MEK1/2 and ERK1/2 downstream of RAF1, whereas AKT phosphorylation downstream of PI3K was not significantly affected. Growth factor stimulation revealed that expression of HRAS<sup>Glu62_Arg68dup</sup> abolished the HRAS' capacity to modulate downstream signaling. Our data underscore that different qualities of dysregulated HRAS-dependent signaling dynamics determine the clinical severity in CS."	"[Intervention mechanism of Qingwen Baidu Yin on cytokine storm based on network pharmacology]. The aim of this paper was to explore the intervention mechanism of Qingwen Baidu Yin in cytokine storm based on network pharmacology. TCMSP and TCMIP V2.0 server were used to predict all chemical components and action targets of Qingwen Baidu Yin. Diseases that could be treated by Qingwen Baidu Yin were predicted through Enrichr database. A compound target interaction(PPI) network diagram was constructed using STRING 11.0. OmicShare was used to analyzed the gene ontology(GO) enrichment and enrichment of the Kyoto encyclopedia of genes and genomes(KEGG) pathway of core targets. Component-target-path network diagram was constructed with Cytoscape 3.6.0 software. After analysis of the database, 267 compounds were screened for Qingwen Baidu Yin, involving 1 450 targets, and a protein interaction network was constructed. Total 219 core target proteins were predicted, such as NFKB1, STAT1, RAF1, IL2, JAK1, IL6, TNF, BCL2 and other important targets, and 221 core target pathways were enriched, including cancer pathway, Kaposi's sarcoma-associated herpes virus infection, chemokine signal pathway, PI3 K-AKT signal pathway, EB virus infection, virus carcinogenesis and T cell receptor signaling pathways, a collection of which were highly related to cytokine storms. GO annotation analysis suggested that Qingwen Baidu Yin Decoction may exert therapeutic effects by regulating protein phosphorylation, cell response to cytokine stimulation, cell proliferation, inflammatory response, transmembrane receptor protein tyrosine kinase signaling pathway, and cytokine-mediated signaling pathways. This study revealed potential active components of Qingwen Baidu Yin in defending against cytokine storm and its possible mechanism of action, and provided theoretical basis and technical support for further clinical application of this prescription."	"Molecular basis for the assembly of RuBisCO assisted by the chaperone Raf1. The folding and assembly of RuBisCO, the most abundant enzyme in nature, needs a series of chaperones, including the RuBisCO accumulation factor Raf1, which is highly conserved in cyanobacteria and plants. Here, we report the crystal structures of Raf1 from cyanobacteria Anabaena sp. PCC 7120 and its complex with RuBisCO large subunit RbcL. Structural analyses and biochemical assays reveal that each Raf1 dimer captures an RbcL dimer, with the C-terminal tail inserting into the catalytic pocket, and further mediates the assembly of RbcL dimers to form the octameric core of RuBisCO. Furthermore, the cryo-electron microscopy structures of the RbcL-Raf1-RbcS assembly intermediates enable us to see a dynamic assembly process from RbcL8Raf18 to the holoenzyme RbcL8RbcS8. In vitro assays also indicate that Raf1 can attenuate and reverse CcmM-mediated cyanobacterial RuBisCO condensation. Combined with previous findings, we propose a putative model for the assembly of cyanobacterial RuBisCO coordinated by the chaperone Raf1."	"A low-grade malignant soft tissue tumor with S100 and CD34 co-expression showing novel CDC42SE2-BRAF fusion with distinct features. Recently, a novel group of spindle cell tumors defined by S100 and CD34 co-expression harboring recurrent fusions involving RET, RAF1, BRAF, and NTRK1/2 gene has been identified. Morphologically, they are characterized by monomorphic neoplasm cells, &quot;patternless&quot; growth pattern, stromal, and perivascular hyalinization, lacked necrosis. We reported a 52-year-old Chinese female patient with a S100 and CD34 co-expression sarcoma presenting in the right proximal forearm. The forearm mass initially emerged 19 months ago when it was misdiagnosed as a solitary fibrous tumor and was surgically removed without further treatment. Microscopically, the primary and the recurred tumors share the same features, resembling the morphology of the recently characterized group. Nevertheless, some distinct features, such as predominantly epithelioid tumor cells and focally staghorn vessels, were also present in our case. Genomic profiling with clinical next-generation sequencing was performed and revealed CDC42SE2-BRAF gene fusion, MET amplification, and CDKN2A/B deletion. Both FISH and nested RT-PCR were performed to confirm the gene fusion. The patient was treated with crizotinib for two cycles but showed no obvious benefit. The presented case adds to the spectrum of the novel, characterized solid tumors, and provides suggestions for emerging therapeutic strategies for precision medicine involving targeted kinase inhibitors."	"Effect of dietary N-carbamylglutamate on development of ovarian follicles via enhanced angiogenesis in the chicken. N-carbamylglutamate (NCG), an analogue of N-acetyl-L-glutamate (NAG), can increase arginine synthesis in mammals and improve the reproductive performance. However, the effect of NCG on poultry laying performance is still unclear. This study investigated the effect of dietary NCG on development of chicken ovarian follicles. The dosage and timing for NCG administration were evaluated for its effect on follicular development. Results showed that supplementation with 1% NCG in the diet for 14 D led to accelerated development of growing follicles (over 60 μm in oocyte diameter) and significantly increased feed intake and feed efficiency. Plasma amino acids (AA) analysis showed that feeding with 1% NCG significantly increased of plasma AA levels. RNA-seq analysis revealed that NCG supplementation upregulated expression of genes related to angiogenesis and cell proliferation, but downregulated expression of apoptosis-related genes. Meanwhile, RT-qPCR and Western blot analysis validated the RNA-seq results. Moreover, NCG enhanced plasma NO level; upregulated expression of PKG-I, Raf1, and p-p38; and increased angiogenesis of the ovaries. In conclusion, dietary NCG (1% for 14 D) can promote development of ovarian follicles by increasing angiogenesis in ovaries of the chicken."	"Detection of Fusion Genes Using a Targeted RNA Sequencing Panel in Gastrointestinal and Rare Cancers. Successful identification and targeting of oncogenic gene fusion is a major breakthrough in cancer treatment. Here, we investigate the therapeutic implications and feasibility of using a targeted RNA sequencing panel to identify fusion genes in gastrointestinal and rare cancers. From February through December 2017, patients with gastrointestinal, hepatobiliary, gynecologic, sarcoma, or rare cancers were recruited for a clinical sequencing project at Samsung Medical Center (NCT #02593578). The median age of the patients was 58 years (range, 31-81 years), and the male-to-female ratio was 1.3 : 1. A total of 118 patients passed the quality control process for a next-generation sequencing- (NGS-) based targeted sequencing assay. The NGS-based targeted sequencing assay was performed to detect gene fusions in 36-53 cancer-implicated genes. The following cancer types were included in this study: 28 colorectal cancers, 27 biliary tract cancers, 25 gastric cancers, 18 soft tissue sarcomas, 9 pancreatic cancers, 6 ovarian cancers, and 9 other rare cancers. Strong fusion was detected in 25 samples (21.2%). We found that 5.9% (7/118) of patients had known targetable fusion genes involving NTRK1 (n=3), FGFR (n=3), and RET (n=1), and 10.2% (12/118) of patients had potentially targetable fusion genes involving RAF1 (n=4), BRAF (n=2), ALK (n=2), ROS1 (n=1), EGFR (n=1), and CLDN18 (n=2). Thus, we successfully identified a substantial proportion of patients harboring fusion genes by RNA panel sequencing of gastrointestinal/rare cancers. Targetable and potentially targetable involved fusion genes were NTRK1, RET, FGFR3, FGFR2, BRAF, RAF1, ALK, ROS1, and CLDN18. Detection of fusion genes by RNA panel sequencing may be beneficial in refractory patients with gastrointestinal/rare cancers."	"Dequalinium chloride inhibits the growth of human glioma cells in vitro and vivo: a study on molecular mechanism and potential targeted agents. Our current understanding of the role of dequalinium chloride (DECA) in the progression of glioma remains very limited. This study was aimed to investigate the effect of DECA on human glioma cell lines in vitro and vivo. The underlying molecular mechanism was analyzed for developing potential targeted agents. MTT assay, genomic DNA electrophoresis, DAPI staining, TUNEL staining, and wound scratch assay were performed to evaluate the effect of DECA on human glioma cell lines. Bioinformatics methods were used to screen the possible signaling pathway proteins, and the expression of these proteins and the corresponding mRNA was measured. DECA significantly inhibited the growth and proliferation of human glioma cells. Screening of apoptosis-related proteins showed the mRNA expression level of 6 genes was significantly changed after DECA administration. This study shows that DECA effectively inhibits the growth of glioma cells in vitro and vivo. DECA may promote glioma cell apoptosis by affecting the expression of NFKB2, HRAS, NF1, CBL, RAF1, and BCL-2 genes."	"Integration of Liquid Biopsies into Clinical Laboratory Applications via NGS in Cancer Diagnostics. Next Generation Sequencing is one of the latest advances in molecular testing and clinical laboratory applications. Next Generation Sequencing techniques involving liquid biopsies are emerging as important tools in cancer diagnostics and prognostics. Thus, integration of liquid biopsy studies into clinical laboratory applications has become a necessity. By virtue of liquid biopsies, determining potential treatment targets through metastasis and primary tumor sites in the right clinical context can result in a more comprehensive treatment. This also helps to overcome re-sampling difficulties which require an invasive procedure with the problem of tumor heterogeneity. As the literature involving liquid biopsies and next generation sequencing increases, the rate of laboratories with competencies and experience in this novel technology remains limited. Next generation sequencing was performed via a comprehensive multi-gene cancer panel (Actionable In-sight Solid Tumor Panel, Qiagen) consisting of 12 solid tumor related genes (EGFR, ALK, KRAS, PIK3CA, NRAS, PDGFRA, KIT, ERBB2, ERBB3, ESR1, BRAF and RAF1) from lung cancer patients who applied or were referred to CU AGENTEM (Cukurova University Adana Genetic Diseases Diagnosis and Treatment Center) for routine genetic testing. A modified next generation sequencing workflow was performed with a multi-gene solid tumor panel using liquid biopsies in comparison with formalin fixed paraffin embedded samples to integrate this technique into the routine clinical laboratory applications and bioinformatics. In this study, next generation sequencing of liquid biopsies in cancer patients was integrated into cancer diagnostics. Liquid biopsy studies provide numerous advantages when integrated with next generation sequencing through a well-optimized workflow."	"RAF1 rearrangements are common in pancreatic acinar cell carcinomas. There is now evidence that gene fusions activating the MAPK pathway are relatively common in pancreatic acinar cell carcinoma with potentially actionable BRAF or RET fusions being found in ~30%. We sought to investigate the incidence of RAF1 fusions in pancreatic malignancies with acinar cell differentiation. FISH testing for RAF1 was undertaken on 30 tumors comprising 25 'pure' acinar cell carcinomas, 2 mixed pancreatic acinar-neuroendocrine carcinomas, 1 mixed acinar cell-low grade neuroendocrine tumor and 2 pancreatoblastomas. RAF1 rearrangements were identified in 5 cases and confirmed by DNA and RNA sequencing to represent oncogenic fusions (GATM-RAF1, GOLGA4-RAF1, PDZRN3-RAF1, HERPUD1-RAF1 and TRIM33-RAF1) and to be mutually exclusive with BRAF and RET fusions, as well as KRAS mutations. Large genome-wide copy number changes were common and included 1q gain and/or 1p loss in all five RAF1 FISH-positive acinar cell carcinomas. RAF1 expression by immunohistochemistry was found in 3 of 5 (60%) of fusion-positive cases and no FISH-negative cases. Phospho-ERK1/2 expression was found in 4 of 5 RAF1-fusion-positive cases. Expression of both RAF1 and phospho-ERK1/2 was heterogeneous and often only detected at the tumor-stroma interface, thus limiting their clinical utility. We conclude that RAF1 gene rearrangements are relatively common in pancreatic acinar cell carcinomas (14.3% to 18.5% of cases) and can be effectively identified by FISH with follow up molecular testing. The combined results of several studies now indicate that BRAF, RET or RAF1 fusions occur in between one third and one-half of these tumors but are extremely rare in other pancreatic malignancies. As these fusions are potentially actionable with currently available therapies, a strong argument can be made to perform FISH or molecular testing on all pancreatic acinar cell carcinomas."	"Reticulohistiocytoma (solitary epithelioid histiocytoma) with mutations in RAF1 and TSC2. NA"	"Exposure to mold proteases stimulates mucin production in airway epithelial cells through Ras/Raf1/ERK signal pathway. Environmental mold (fungus) exposure poses a significant threat to public health by causing illnesses ranging from invasive fungal diseases in immune compromised individuals to allergic hypertensive diseases such as asthma and asthma exacerbation in otherwise healthy people. However, the molecular pathogenesis has not been completely understood, and treatment options are limited. Due to its thermo-tolerance to the normal human body temperature, Aspergillus. fumigatus (A.fumigatus) is one of the most important human pathogens to cause different lung fungal diseases including fungal asthma. Airway obstruction and hyperresponsiveness caused by mucus overproduction are the hallmarks of many A.fumigatus induced lung diseases. To understand the underlying molecular mechanism, we have utilized a well-established A.fumigatus extracts (AFE) model to elucidate downstream signal pathways that mediate A.fumigatus induced mucin production in airway epithelial cells. AFE was found to stimulate time- and dose-dependent increase of major airway mucin gene expression (MUC5AC and MUC5B) partly via the elevation of their promoter activities. We also demonstrated that EGFR was required but not sufficient for AFE-induced mucin expression, filling the paradoxical gap from a previous study using the same model. Furthermore, we showed that fungal proteases in AFE were responsible for mucin induction by activating a Ras/Raf1/ERK signaling pathway. Ca2+ signaling, but ROS, both of which were stimulated by fungal proteases, was an indispensable determinant for ERK activation and mucin induction. The discovery of this novel pathway likely contributes to our understanding of the pathogenesis of fungal sensitization in allergic diseases such as fungal asthma."	"Circulating Tumor DNA Is Capable of Monitoring the Therapeutic Response and Resistance in Advanced Colorectal Cancer Patients Undergoing Combined Target and Chemotherapy. Colorectal cancer (CRC) is a highly lethal disease worldwide. The majority of patients receiving targeted therapy or chemotherapy develop drug resistance, while its molecular mechanism remains to be elucidated. The plasma circulating tumor DNA (ctDNA) exhibited the potential in identifying gene variations and monitoring drug resistance in CRC treatment. In this study, we monitored the ctDNA mutational changes in advanced CRC patients underwent first-line therapy with bevacizumab and cetuximab combined with chemotherapy. The mutation spectrum of 43 patients was established by a 605-gene next-generation sequencing (NGS) panel. The baseline measurement shows that genes with the highest mutation frequency were TP53 (74%), APC (58%), KRAS (40%), SYNE1 (33%), LRP1B (23%), TOP1 (23%), and PIK3CA (21%). Mutations in TP53, APC, and KRAS were detected in 29 paired plasma and tissue samples with the consistency of 81, 67, and 42%, respectively. Clinically targetable gene mutations, such as APC, RNF43, SMAD4, BRAD1, KRAS, RAF1, and TP53, were also identified in ctDNA. The overall consistency between ctDNA and tissue samples was 54.6%. Alleviation of mutational burden in BRAF, KRAS, AMER1, and other major driving genes was observed following the first-line therapy. Patients with KRAS and TP53 mutations in tissues appeared to benefit more than the wild-type counterpart. The dynamic change of plasma mutation status was consistent with the tissue tumor burden and was closely correlated with disease progression. In conclusion, ctDNA monitoring is a useful method for molecular genotyping of colorectal cancer patients. Dynamic changes in resistance can be sensitively monitored by gene variation status, which potentially helps to develop treatment strategy."	"Tomatidine Alleviates Osteoporosis by Downregulation of p53. BACKGROUND As a common metabolic disorder, osteoporosis is characterized by decreasing bone mass density and increased possibility of fragility fracture. The incidence of senile osteoporosis increases year by year. There is no gold standard of treatment for osteoporosis. Tomatidine is the aglycone derivative of tomatine, having the ability to treat various diseases, including osteoporosis. However, the mechanism by which tomatidine improves osteoporosis has not been fully elucidated. Tomatidine is a potential and promising drug for osteoporosis. MATERIAL AND METHODS In this study, the KEGG pathways that tomatidine-targeted genes enriched in were obtained using bioinformatics methods. The KEGG pathways involved in osteoporosis that were also associated with tomatidine-targeted genes were selected. After analysis of these pathways, essential genes that may be involved in this biological process were identified and validated experimentally. RESULTS We found 110 osteoporosis related KEGG pathways and 76 tomatidine-targeted genes-related KEGG pathways were obtained. 39 shared KEGG pathways were identified. The top 5 pathways were: pathway of chronic myeloid leukemia, pathway of B cell receptor signaling, pathway in cancer, bladder cancer pathway, and progesterone-mediated oocyte maturation pathway. MAPK1, MAP2K1, MAPK3, RAF1 were involved in all the 5 pathways. The p53 signaling pathway and the MAPK signaling pathway were involved in the 5 KEGG pathways. In vitro experiments showed that downregulating p53 expression could be potentially protective for osteoporosis. CONCLUSIONS Tomatidine can improve osteoporosis, and one of the mechanisms of its action is achieved by modulating p53. Tomatidine may be a promising drug for osteoporosis."	"Targeting the MAPK Pathway in KRAS-Driven Tumors. KRAS mutations occur in a quarter of all of human cancers, yet no selective drug has been approved to treat these tumors. Despite the recent development of drugs that block KRAS<sup>G12C</sup>, the majority of KRAS oncoproteins remain undruggable. Here, we review recent efforts to validate individual components of the mitogen-activated protein kinase (MAPK) pathway as targets to treat KRAS-mutant cancers by comparing genetic information derived from experimental mouse models of KRAS-driven lung and pancreatic tumors with the outcome of selective MAPK inhibitors in clinical trials. We also review the potential of RAF1 as a key target to block KRAS-mutant cancers."	"Effects of Mitofusin2 on astrocytes proliferation in vitro induced by scratch injury. Reactive astrogliosis, a common phenomenon after central nervous system (CNS) injury, exerts negative effects on neuronal repair and recovery by forming a glial scar. Mitofusin2 (Mfn2), a hyperplasia suppression gene, is a potential target of therapeutics to better control astrogliosis. To simulate traumatic injury of the CNS in vivo, an in vitro scratch injury model was established to investigate the role of Mfn2 in the proliferation of astrocytes in this study. We demonstrated that scratch-injury stimulation upregulated the expression of the markers cyclin D1, PCNA and GFAP and turned quiescent astrocytes into mitotic cells, which may have been via activation of Ras-Raf1-ERK1/2 and PI3K-Akt signaling. Meanwhile, both the gene and protein of Mfn2 were markedly inhibited. Furthermore, overexpression of Mfn2 effectively attenuated astrocyte proliferation and halted the cell cycle, concomitant with marker downregulation and wound healing suppression. Our results demonstrate that overexpression of Mfn2 inhibits the reactive astrogliosis process by blocking the Raf1-ERK1/2 and PI3K-Akt signal pathways. Therapeutic approaches that target Mfn2 may have protective effects against reactive gliosis and glia formation."	"PM2.5-inducible long non-coding RNA (NONHSAT247851.1) is a positive regulator of inflammation through its interaction with raf-1 in HUVECs. Several studies have demonstrated that PM2.5 inhalation is associated with an increased risk of cerebrovascular disease (CVD), in which inflammation plays an important role. The mechanisms of this disease are not fully understood to date. Long non-coding RNAs (lncRNAs) are involved in many pathophysiological processes, such as immune responses; however, their functions associated with inflammation are largely unexplored. High-throughput sequencing assay and obtained numerous lncRNAs that altered the expression in response to PM2.5 treatment in HUVECs. NONHSAT247851.1 was also identified, which was significantly up-regulated to control the expression of immune response genes. Mechanistically, the results indicated that NONHSAT247851.1 knockdown reduced the expression of IL1β. In study, we investigated NONHSAT247851.1 as a promoter in regulating immune response genes via binding with raf-1 to regulate the phosphorylation level of p65 protein in HUVECs. The data collected suggests that NONHSAT247851.1 regulates inflammation via interaction with raf-1 to control the inflammatory expression in PM2.5 exposure."	"Emerging soft tissue tumors with kinase fusions: An overview of the recent literature with an emphasis on diagnostic criteria. A recent breakthrough in the classification of soft tissue tumors (STT) has been a significant expansion in the number of neoplasms associated with NTRK and other kinase related fusions. This is important not only for diagnostic purposes, but also because it opens new avenues for targeted therapy. Indeed, recent clincal trials have shown significant benefit across multiple tumor-types, prompting approval of NTRK inhibitors for clinical use in the setting of advanced/metastatic NTRK-rearranged neoplasms. Despite these therapeutic oportunities, diagnostic challenges have transpired in recognizing these emerging new histologic subtypes of kinase fusions positive-STT prospectively. This, in part, is attributable to their wide morphologic spectrum, variable risk of malignancy, and non-specific immunoprofile. As such, recommendations for pathologic criteria and immunohistochemical testing are needed to improve classification and streamline the small subset of potential candidates for further molecular validation. This overview summarizes the key histologic features of various STT associated with NTRK and other kinase fusions, which appear to share a similar morphologic spectrum. Immunohistochemically, many of these tumors, regardless of the kinase fusion type, notably show co-expression of S100 and CD34; issues related to the utility of pan-NTRK and NTRK1 immunostaining are therefore summarized. Finally, I discuss the role of confirmatory molecular testing and how, in some instances, this may also be of prognostic value. This review is intended as a critical summary of the current literature to emphasize pathologic criteria for improving recognition of this emerging and complex group of kinase fusion associated STT."	"Novel PPP1CB-ALK fusion in spindle cell tumor defined by S100 and CD34 coexpression and distinctive stromal and perivascular hyalinization. A novel group of S100- and CD34-positive spindle cell tumors with distinctive stromal and perivascular hyalinization harboring recurrent gene fusions involving kinases including RAF1, BRAF, NTRK1/2/3, and RET have been recently reported. To our knowledge, no such cases harboring ALK rearrangements have been identified. We report a previously healthy 41-year-old male with a 12-cm intramuscular shoulder mass. The tumor was composed of bland-appearing spindled to epithelioid cells, arranged in a patternless pattern in a background of loose myxoid stroma containing striking amianthoid-like stromal collagen and perivascular rings. In accordance with the previously reported tumors, the tumor cells showed diffuse immunopositivity with S100 and CD34, while lacking SOX10 expression. Targeted RNA-based next-generation sequencing identified a novel serine/threonine-protein phosphatase PP1-beta-catalytic subunit (PPP1CB)-ALK fusion gene. Although ALK break-apart was not detected by FISH, likely due to a paracentric inversion of chromosome 2, the presence of the fusion was confirmed by Sanger sequencing showing a 10-bp linker between exon 6 of PPP1CB and intron 19 of ALK while maintaining reading frame. Subsequent ALK-1 immunostain exhibited diffuse cytoplasmic staining in the tumor cells. Our case expands the molecular genetic spectrum of the distinctive group of spindle cell tumors with CD34/S100+ immunophenotype, supporting the important role of various kinases as drivers of oncogenesis. Awareness of this entity including its unique morphologic and immunophenotypic features as well as its interchangeable kinase gene fusions is crucial for correct classification and potential targeted therapy, particularly in aggressive subsets."	"MiR-222-3p ameliorates glucocorticoid-induced inhibition of airway epithelial cell repair through down-regulating GILZ expression. GILZ expression is induced by glucocorticoids (GCs) and is involved in the mechanism of airway epithelial cell repair in patients with asthma. The present study aimed to investigate the role of miR-222-3p/GILZ pathway in treatment of airway epithelial cell repair by GCs. 9HTE cells were treated by 10 µmol/L dexamethasone (Dex) for 6, 12, and 24 hours (h). MiR-222-3p mimic and GILZ were used for cell transfection. Cell vitality, migration, and invasion were detected by methyl-thiazolyl tetrazolium (MTT), wound healing, and Transwell. The targeting relationship between miR-222-3p and GILZ was predicted by TargetScan and further confirmed by dual-luciferase reporter assay. The expressions of relative mRNAs or proteins were detected by Western blot and quantitative polymerase chain reaction (qPCR). The results showed that Dex treatment up-regulated the GILZ expression level but inhibited the levels of p-Raf1, p-MEK1/2, p-ERK1/2, and miR-222-3p of the cells, moreover, it also inhibited cell activity, migration, and invasion in a time-dependent manner. MiR-222-3p specifically targeted GILZ. MiR-222-3p mimic ameliorated the cell viability, migration, and invasion reduced by Dex treatment, increased the expression levels of p-Raf1 and p-MEK1/2, p-ERK1/2, and partially reversed the effects of GILZ overexpression on the above indexes. Moreover, GILZ showed the opposite effects to miR-222-3p. MiR-222-3p activated MAPK signaling pathway through inhibiting the GILZ expression, thus promoting the cell viability, migration, and invasion previously reduced by Dex."	"RAF1 Expression is Correlated with HAF, a Parameter of Liver Computed Tomographic Perfusion, and may Predict the Early Therapeutic Response to Sorafenib in Advanced Hepatocellular Carcinoma Patients. Monitoring the early treatment effect of sorafenib in advanced hepatocellular carcinoma (HCC) patients is a diagnostic challenge. In a previous study, we reported the potential role of liver computed tomography perfusion (CTP) in the assessment of the response to sorafenib therapy in HCC. The present study aims to investigate whether sorafenib-targeted genes is correlated with CTP parameter, and investigate the potential of sorafenib-targeted genes in early prediction of therapeutic response to sorafenib in advanced HCC. A total of 21 HCC patients were enrolled. Sorafenib was administered orally at a dose of 400 mg twice daily continuously. Treatment response was assessed using modified response evaluation criteria in solid tumors (mRECIST) criteria. CTP scanning was performed before and after two weeks of sorafenib treatment using a 320-detector row CT scanner. The perfusion parameters of portal vein flow (PVF), hepatic artery flow (HAF), and perfusion index (PI) were acquired by CTP. The expression levels of several sorafenib-targeted genes were assayed using real-time quantitative PCR and western blot analysis. Logistic regression was performed to analyze the relationship between HAF values and RAF1 expression levels. According to mRECIST, the disease control rate (CR+PR+SD) of treatment group was 70.5% after two months of treatment. Compared to background controls, tumor tissues exhibited higher HAF. A sorafenib-targeted gene, RAF1 expression, was increased in tumor tissues especially in the sorafenib-resistant group. The sorafenib-resistant group exhibited a significantly higher RAF1 expression and HAF than the sensitive group. Moreover, the RAF1 expression is positively correlated with the HAF value. RAF1 expression might predict therapeutic effects of sorafenib in advanced HCC, where RAF1 could potentially serve as a molecular marker for monitoring early therapeutic effects after sorafenib treatment."	"Hydrogen sulfide upregulates miR-16-5p targeting PiK3R1 and RAF1 to inhibit neutrophil extracellular trap formation in chickens. Hydrogen sulfide (H2S) is a toxic air pollutant that causes immune damage. Recent studies have found that neutrophil extracellular trap (NET) formation is one way in which neutrophils exert immune functions. In addition, the formation of NETs is also related to thrombosis and autoimmune diseases. Recent studies have shown that miRNAs are involved in the regulation of a variety of pathophysiological processes. Here, we investigated the role of H2S in regulating the formation of NETs by affecting miR-16-5p. Our study established an in vitro H2S exposure model for neutrophils using phorbol-myristate-acetate (PMA) to induce NET formation. We observed the morphological changes of cells with scanning electron microscopy and fluorescence microscopy. Then, the content of extracellular DNA and the expression of MPO and NE in each group were detected. The results showed that H2S inhibited the formation of NETs. The expression of miR-16-5p and its target genes PiK3R1 and RAF1 was then measured by qRT-PCR. H2S upregulated miR-16-5p and inhibited expression of the target genes PiK3R1 and RAF1, and it subsequently inhibited the Pi3K/AKT and ERK pathways and decreased respiratory burst levels. Furthermore, H2S attenuated inositol 1,4,5-trisphosphate receptor (IP3R)-mediated endoplasmic reticulum calcium outflow as well as autophagy caused by PMA. This study enriches H2S immunotoxicity research and provides a possible solution for the treatment of NET-related diseases."	"Genetic Testing for Diagnosis of Hypertrophic Cardiomyopathy Mimics: Yield and Clinical Significance. Background Genetic testing is helpful for diagnosis of hypertrophic cardiomyopathy (HCM) mimics. Little data are available regarding the yield of such testing and its clinical impact. Methods The HCM genetic database at our center was used for identification of patients who underwent HCM-directed genetic testing including at least 1 gene associated with an HCM mimic (GLA, TTR, PRKAG2, LAMP2, PTPN11, RAF1, and DES). Charts were retrospectively reviewed and genetic and clinical data extracted. Results There were 1731 unrelated HCM patients who underwent genetic testing for at least 1 gene related to an HCM mimic. In 1.45% of cases, a pathogenic or likely pathogenic variant in one of these genes was identified. This included a yield of 1% for Fabry disease, 0.3% for familial amyloidosis, 0.15% for PRKAG2-related cardiomyopathy, and 1 patient with Noonan syndrome. In the majority of patients, diagnosis of the HCM mimic based on clinical findings alone would have been challenging. Accurate diagnosis of an HCM mimic led to change in management (eg, enzyme replacement therapy) or family screening in all cases. Conclusions Genetic testing is helpful in the diagnosis of HCM mimics in patients with no or few extracardiac manifestations. Adding these genes to all HCM genetic panels should be considered."	"Next-Generation Sequencing of Retinoblastoma Identifies Pathogenic Alterations beyond RB1 Inactivation That Correlate with Aggressive Histopathologic Features. To determine the usefulness of a comprehensive, targeted-capture next-generation sequencing (NGS) assay for the clinical management of children undergoing enucleation for retinoblastoma. Cohort study. Thirty-two children with retinoblastoma. We performed targeted NGS using the UCSF500 Cancer Panel (University of California, San Francisco, San Francisco, CA) on formalin-fixed, paraffin-embedded tumor tissue along with constitutional DNA isolated from peripheral blood, buccal swab, or uninvolved optic nerve. Peripheral blood samples were also sent to a commercial laboratory for germline RB1 mutation testing. Presence or absence of germline RB1 mutation or deletion, tumor genetic profile, and association of genetic alterations with clinicopathologic features. Germline mutation or deletion of the RB1 gene was identified in all children with bilateral retinoblastoma (n = 12), and these NGS results were 100% concordant with commercial germline RB1 mutation analysis. In tumor tissue tested with NGS, biallelic inactivation of RB1 was identified in 28 tumors and focal MYCN amplification was identified in 4 tumors (2 with wild-type RB1 and 2 with biallelic RB1 inactivation). Additional likely pathogenic alterations beyond RB1 were identified in 13 tumors (41%), several of which have not been reported previously in retinoblastoma. These included focal amplifications of MDM4 and RAF1, as well as damaging mutations involving BCOR, ARID1A, MGA, FAT1, and ATRX. The presence of additional likely pathogenetic mutations beyond RB1 inactivation was associated with aggressive histopathologic features, including higher histologic grade and anaplasia, and also with both unilateral and sporadic disease. Comprehensive NGS analysis reliably detects relevant mutations, amplifications, and chromosomal copy number changes in retinoblastoma. The presence of genetic alterations beyond RB1 inactivation correlates with aggressive histopathologic features."	"[Clinical practice guidelines for Noonan syndrome]. Noonan syndrome is a common genetic disease characterized by peculiar face, short stature, congenital heart disease and thoracic deformity. The pathogenesis of Noonan syndrome is mainly related to abnormal Ras-MAPK signal pathway which involves more than 16 genes including (PTPN11, SOS1, RAF1)] and KRAS. At present, there is a lack of experience in the diagnosis and treatment of Noonan syndrome in China. This guideline has summarized the clinical manifestation, pathogenesis, diagnostic criteria and treatment for Noonan syndrome, with an aim to improve the diagnostic level and clinical management of patients with this syndrome."	"Melanomas with activating RAF1 fusions: clinical, histopathologic, and molecular profiles. A subset of melanomas is characterized by fusions involving genes that encode kinases. Melanomas with RAF1 fusions have been rarely reported, mostly in clinical literature. To investigate this distinctive group of melanomas, we searched for melanomas with activating structural variants in RAF1, utilizing our case archive of clinical samples with comprehensive genomic profiling (CGP) by a hybrid capture-based DNA sequencing platform. Clinical data, pathology reports, and histopathology were reviewed for each case. RAF1 breakpoints, fusion partners, and co-occurring genetic alterations were characterized. From a cohort of 7119 melanomas, 40 cases (0.6%) featured fusions that created activating structural variants in RAF1. Cases with activating RAF1 fusions had median age of 62 years, were 58% male, and consisted of 9 primary tumors and 31 metastases. Thirty-nine cases were cutaneous primary, while one case was mucosal (anal) primary. Primary cutaneous melanomas showed variable architectures, including wedge-shaped and nodular growth patterns. Cytomorphology was predominantly epithelioid, with only one case, a desmoplastic melanoma, consisting predominantly of spindle cells. RAF1 5' rearrangement partners were predominantly intrachromosomal (n = 18), and recurrent partners included MAP4 (n = 3), CTNNA1 (n = 2), LRCH3 (n = 2), GOLGA4 (n = 2), CTDSPL (n = 2), and PRKAR2A (n = 2), all 5' of the region encoding the kinase domain. RAF1 breakpoints occurred in intron 7 (n = 32), intron 9 (n = 4), intron 5 (n = 2), and intron 6 (n = 2). Ninety-eight percent (n = 39) were wild type for BRAF, NRAS, and NF1 genomic alterations (triple wild type). Activating RAF1 fusions were present in 2.1% of triple wild-type melanomas overall (39/1882). In melanomas with activating RAF1 fusions, frequently mutated genes included TERTp (62%), CDKN2A (60%), TP53 (13%), ARID2 (10%), and PTEN (10%). Activating RAF1 fusions characterize a significant subset of triple wild-type melanoma (2.1%) with frequent accompanying mutations in TERTp and CDKN2A. CGP of melanomas may improve tumor classification and inform potential therapeutic options, such as consideration of specific kinase inhibitors."	"Simulated Microgravity Influences VEGF, MAPK, and PAM Signaling in Prostate Cancer Cells. Prostate cancer is one of the leading causes of cancer mortality in men worldwide. An unusual but unique environment for studying tumor cell processes is provided by microgravity, either in space or simulated by ground-based devices like a random positioning machine (RPM). In this study, prostate adenocarcinoma-derived PC-3 cells were cultivated on an RPM for time periods of 3 and 5 days. We investigated the genes associated with the cytoskeleton, focal adhesions, extracellular matrix, growth, survival, angiogenesis, and metastasis. The gene expression of signaling factors of the vascular endothelial growth factor (VEGF), mitogen-activated protein kinase (MAPK), and PI3K/AKT/mTOR (PAM) pathways was investigated using qPCR. We performed immunofluorescence to study the cytoskeleton, histological staining to examine the morphology, and a time-resolved immunofluorometric assay to analyze the cell culture supernatants. When PC-3 cells were exposed to simulated microgravity (s-µg), some cells remained growing as adherent cells (AD), while most cells detached from the cell culture flask bottom and formed multicellular spheroids (MCS). After 3-day RPM exposure, PC-3 cells revealed significant downregulation of the VEGF, SRC1, AKT, MTOR, and COL1A1 gene expression in MCS, whereas FLT1, RAF1, MEK1, ERK1, FAK1, RICTOR, ACTB, TUBB, and TLN1 mRNAs were not significantly changed. ERK2 and TLN1 were elevated in AD, and FLK1, LAMA3, COL4A5, FN1, VCL, CDH1, and NGAL mRNAs were significantly upregulated in AD and MCS after 3 days. After a 5-day culture in s-µg, the PC-3 cells showed significant downregulations of VEGF mRNA in AD and MCS, and FN1, CDH1, and LAMA3 in AD and SCR1 in MCS. In addition, we measured significant upregulations in FLT1, AKT, ERK1, ERK2, LCN2, COL1A1, TUBB, and VCL mRNAs in AD and MCS, and increases in FLK1, FN1, and COL4A5 in MCS as well as LAMB2, CDH1, RAF1, MEK1, SRC1, and MTOR mRNAs in AD. FAK1 and RICTOR were not altered by s-µg. In parallel, the secretion rate of VEGFA and NGAL proteins decreased. Cytoskeletal alterations (F-actin) were visible, as well as a deposition of collagen in the MCS. In conclusion, RPM-exposure of PC-3 cells induced changes in their morphology, cytoskeleton, and extracellular matrix protein synthesis, as well as in their focal adhesion complex and growth behavior. The significant upregulation of genes belonging to the PAM pathway indicated their involvement in the cellular changes occurring in microgravity."	"Prohibitin ligands: a growing armamentarium to tackle cancers, osteoporosis, inflammatory, cardiac and neurological diseases. Over the last three decades, the scaffold proteins prohibitins-1 and -2 (PHB1/2) have emerged as key signaling proteins regulating a myriad of signaling pathways in health and diseases. Small molecules targeting PHBs display promising effects against cancers, osteoporosis, inflammatory, cardiac and neurodegenerative diseases. This review provides an updated overview of the various classes of PHB ligands, with an emphasis on their mechanism of action and therapeutic potential. We also describe how these ligands have been used to explore PHB signaling in different physiological and pathological settings."	"Anti-ageing effects of red ginseng on female Drosophila melanogaster. Red ginseng (RG) was recently reported to extend the lifespan of Drosophila melanogaster. However, the mechanism underlying this effect has not yet been elucidated. The present study aimed to elucidate the molecular mechanisms of the RG-mediated prolongation of the lifespan of female D melanogaster. In this study, protein changes in 36-day-old female D melanogaster were identified using isobaric tag for relative and absolute quantitation (iTRAQ), and levels of differentially expressed proteins were verified by quantitative real-time PCR and Western blotting. Our studies have shown that RG concentrations of 12.5, 15 and 17.5 mg/mL significantly prolonged the lifespan. Eleven proteins were up-regulated and 46 were down-regulated between the RG and control groups; and Pebp1 expression was significantly down-regulated. In addition, AKT and p-AKT were down-regulated, and ERK, p-ERK and Raf1 were up-regulated by RG. Therefore, RG significantly prolonged the lifespan of female D melanogaster by reducing the expression of Pebp1, up-regulating ERK and inhibiting the AKT pathway. RG may be a potential drug for anti-ageing treatment."	"Cardiofaciocutaneous Syndrome Phenotype in a Case with de novo KRAS Pathogenic Variant. Cardiofaciocutaneous (CFC) syndrome is one of the developmental disorders caused by a dysregulation of the Ras/mitogen-activated protein kinase (MAPK) pathway. RASopathies share overlapping clinical features, making the diagnosis challenging, especially in the newborn period. The majority of CFC syndrome cases arise by a mutation in the BRAF, MAP2K1, MAP2K2, or (rarely) KRAS genes. Germline KRAS mutations are identified in a minority of CFC and Noonan syndrome cases. Here, we describe a patient with a KRAS mutation presenting with a CFC syndrome phenotype. The female patient was referred for genetic testing because of congenital exophthalmos. Her facial appearance is distinctive with a coarse face, exophthalmos, ptosis, downslanting palpebral fissures, hypertelorism, deep philtrum, downturned corners of the mouth, and a short neck. She suffered from feeding difficulties, poor weight gain, and developmental delay. The sequencing of the genes involved in the MAPK pathway (PTPN11, SOS1, RAF1, KRAS, NRAS, MAP2K1, SHOC2, CBL, and SPRED1) identified a heterozygous de novo NM_004985.4:c.173C&gt;T (p.Thr58Ile) in the KRAS gene. Germline KRAS mutations have been identified in approximately 2% of the reported NS cases and less than 5% of the reported CFC syndrome cases. Because CFC and Noonan syndrome share clinical overlapping features, the phenotype caused by KRAS mutations is often difficult to assign to one of the 2 entities. The mutation that we detected in our patient was previously reported in a patient with an Noonan syndrome phenotype. However, our patient predominantly exhibits CFC clinical features. In our case, coarse facial appearance and severe developmental delay help discriminate CFC from Noonan syndrome. Thus, patient follow-up, especially for delayed motor milestones suspected from RASopathies, is important for the discrimination of overlapping conditions as in the abovementioned syndromes."	"Murrayanine exerts antiproliferative effects on human oral cancer cells through inhibition of AKT/mTOR and Raf/MEK/ERK signalling pathways in vitro and inhibits tumor growth in vivo. Oral cancer ranks as the 6th most prevalent type of cancer accounting for significant mortality around the world and studies are being directed to develop efficient chemotherapy for oral cancer. In this study the anticancer effects of a carbazole alkaloid Murrayanine were investigated in vitro and in vivo. Cell counting assay and colony formation assay were used to examine cell viability. DAPI and propidium iodide (PI) staining were used to detect apoptosis. Western blotting was used to examine protein expression. Xenografted mice were used for in vivo study. The results showed that Murrayanine decreased the viability of the oral cancer SCC-25 cells and exhibited an IC50 of 15 µM. The cytotoxicity of Murrayanine was also investigated on the normal hTERT-OME cells and it was found that this molecule exerted very low toxic effects on these cells exhibiting an IC50 of 92 µM. Murrayanine also caused considerable changes in the morphology of the SCC-25 cells and inhibited their colony forming potential. PI and DAPI staining revealed that Murrayanine prompted apoptosis of the SCC-25 cells. The apoptotic cells from 2.2% in the control increased to around 35% at 30 µM concentration. Moreover, Murrayanine caused increase in the Bax/Bcl-2 ratio and also increased the expression of Caspase-3. Murrayanine also deactivated the AKT/mTOR and Raf/MEK/ERK signalling pathways and suppressed the growth of the xenografted tumors in vivo. The findings of the present investigation suggest that Murrayanine may prove essential in the development of systemic therapy for oral cancers."	"Chaperone mediated detection of small molecule target binding in cells. The ability to quantitatively measure a small molecule's interactions with its protein target(s) is crucial for both mechanistic studies of signaling pathways and in drug discovery. However, current methods to achieve this have specific requirements that can limit their application or interpretation. Here we describe a complementary target-engagement method, HIPStA (Heat Shock Protein Inhibition Protein Stability Assay), a high-throughput method to assess small molecule binding to endogenous, unmodified target protein(s) in cells. The methodology relies on the change in protein turnover when chaperones, such as HSP90, are inhibited and the stabilization effect that drug-target binding has on this change. We use HIPStA to measure drug binding to three different classes of drug targets (receptor tyrosine kinases, nuclear hormone receptors, and cytoplasmic protein kinases), via quantitative fluorescence imaging. We further demonstrate its utility by pairing the method with quantitative mass spectrometry to identify previously unknown targets of a receptor tyrosine kinase inhibitor."	"RASSF1A Tumour Suppressor: Target the Network for Effective Cancer Therapy. The RASSF1A tumour suppressor is a scaffold protein that is involved in cell signalling. Increasing evidence shows that this protein sits at the crossroad of a complex signalling network, which includes key regulators of cellular homeostasis, such as Ras, MST2/Hippo, p53, and death receptor pathways. The loss of expression of RASSF1A is one of the most common events in solid tumours and is usually caused by gene silencing through DNA methylation. Thus, re-expression of RASSF1A or therapeutic targeting of effector modules of its complex signalling network, is a promising avenue for treating several tumour types. Here, we review the main modules of the RASSF1A signalling network and the evidence for the effects of network deregulation in different cancer types. In particular, we summarise the epigenetic mechanism that mediates RASSF1A promoter methylation and the Hippo and RAF1 signalling modules. Finally, we discuss different strategies that are described for re-establishing RASSF1A function and how a multitargeting pathway approach selecting druggable nodes in this network could lead to new cancer treatments."	"Long noncoding RNA ITGB2-AS1 promotes growth and metastasis through miR-4319/RAF1 axis in pancreatic ductal adenocarcinoma. Long noncoding RNA (lncRNA) has been considered as potentially critical regulators in pancreatic ductal adenocarcinoma (PDAC). In this study, we prospectively investigate the effect and mechanism of lncRNA integrin subunit beta 2-anti-sense RNA 1 (ITGB2-AS1) on regulation of PDAC progression. The expression of ITGB2-AS1 and its target were analyzed by quantitative real-time polymerase chain reaction and in situ hybridization. 3-(4,5-Dimethylthiazol-z-yl)-2,5-diphenyltetrazolium bromide, flow cytometry, wound healing, and transwell assays were used to investigate the influence of ITGB2-AS1 on cell proliferation, cell cycle, migration, and invasion, respectively. The interaction between ITGB2-AS1 and its target was determined via luciferase activity assay and RNA immunoprecipitation. The subcutaneous xenotransplanted tumor model was established and employed to detect the tumorigenic function of ITGB2-AS1, which was evaluated by western blot analysis, immunohistochemistry, and hematoxylin and eosin staining. The results showed that ITGB2-AS1 was elevated in both PDAC tumor tissues and cell lines, predicting a poor prognosis in PDAC patients. Knocking down of ITGB2-AS1 suppressed PDAC cell proliferation, invasion, and migration but induced cell apoptosis in vitro. Moreover, ITGB2-AS1 could target and inhibit the expression of miR-4319 and miR-4319-targeted and -suppressed serine/threonine kinase RAF1. ITGB2-AS1 promoted PDAC progression via inhibition of miR-4319. Interference of ITGB2-AS1 could suppress in vivo tumorigenic ability of PDAC via downregulation of RAF1. In conclusion, ITGB2-AS1 promoted PDAC progression via sponging miR-4319 to upregulate RAF1, suggesting the potential therapeutic target ability of ITGB2-AS1 in PDAC."	"Cerebral ischemia-reperfusion aggravated cerebral infarction injury and possible differential genes identified by RNA-Seq in rats. Numerous studies have shown that local excessive inflammatory response in brain tissue was an important pathogenesis of secondary injury following cerebral ischemia-reperfusion (I/R). However, the inflammatory-related targets and pathways after cerebral I/R injury are still unclear. This study was to investigate possible targets and mechanisms after cerebral I/R injury. Rats were subjected to transient or permanent middle cerebral artery occlusion (MCAO). Neurological deficit scores test was used to evaluate neurological function. Cerebral infarction was evaluated by MRI, TTC staining and Nissl staining. Microglia activation was detected by immunofluorescence using Iba-1 antibody. Inflammatory factors were detected by ELISA assay. RNA-sequencing transcriptome analysis was processed and the differential genes were verified by real-time quantitative PCR (qPCR) and western blotting. The results showed that neurological function of rats in I/R group was more severe than that in I group on the 7<sup>th</sup> after cerebral I/R. Therefore, the differences between cerebral ischemia and cerebral I/R for 7 days were studied in further study. The results showed that the levels of pro-inflammatory factors in I/R group were higher and the levels of anti-inflammatory factors were lower than those in I group. KEGG pathway and gene network enrichment analysis revealed that some common differential up- and down-regulated genes were involved in most of significant pathways. These common differential up-regulated genes belonged to TLR4/MYD88 inflammatory signaling pathway and common differential down-regulated genes belonged to HRAS/RAF1 neurotrophic signaling pathway. Interestingly, according to the genetic interaction analysis of string database, these up-regulated differential genes might promote the development of inflammation, while the down-regulated differential genes might inhibit the development of inflammation. Furthermore, qPCR and WB results verified that these pro-inflammatory genes in the I/R group were higher than those in the I group, while possible anti-inflammatory genes in the I/R group were lower than those in the I group. It is concluded that TLR4/MYD88 inflammatory signaling pathway and HRAS/RAF1 neurotrophic signaling pathway may play different roles after cerebral I or I/R and may be therapeutic targets for stroke recovery."	"LncRNA LINC00460 promotes the papillary thyroid cancer progression by regulating the LINC00460/miR-485-5p/Raf1 axis. Papillary thyroid cancer (PTC) is the most common malignancy of all thyroid cancers. LncRNA LINC00460 has been proved to play roles in the oncogenesis and progression of various tumors, including papillary thyroid cancer. However, the potential molecular mechanism of LINC00460 in PTC is poorly investigated. LINC00460 was upregulated in PTC tissues and cells. Raf1 was upregulated in PTC tissues, but miR-485-5p was down-regulated. High LINC00460 expression was associated with poor prognosis. LINC00460 knockdown suppressed proliferation, migration, invation and EMT of PTC cells. Bioinformatics prediction revealed that LINC00460 had binding sites with miR-485-5p, which was validated by luciferase reporter assay. In addition, miR-485-5p was confirmed to directly target Raf1 3'-UTR. Moreover, LINC00460 promoted PTC progression by sponging miR-485-5p to elevate the expression of Raf1. Knockdown of LINC00460 restrained tumor growth in vivo. LINC00460 induced proliferation, migration, invation and EMT of PTC cells by regulating the LINC00460/miR-485-5p/Raf1 axis, which indicated that LINC00460 may be a potential biomarker and therapeutic target for PTC."	"Effects of Sorafenib and Arsenic Trioxide on U937 and KG-1 Cell Lines: Apoptosis or Autophagy? Acute myeloid leukemia (AML) is a clonal disorder of hemopoietic progenitor cells. The Raf serine/threonine (Ser/Thr) protein kinase isoforms including B-Raf and RAF1, are the upstream in the MAPK cascade that play essential functions in regulating cellular proliferation and survival. Activated autophagy-related genes have a dual role in both cell death and cell survival in cancer cells. The cytotoxic activities of arsenic trioxide (ATO) were widely assessed in many cancers. Sorafenib is known as a multikinase inhibitor which acts through suppression of Ser/Thr kinase Raf that was reported to have a key role in tumor cell signaling, proliferation, and angiogenesis. In this study, we examined the combination effect of ATO and sorafenib in AML cell lines. In this experimental study, we studied in vitro effects of ATO and sorafenib on human leukemia cell lines. The effective concentrations of compounds were determined by MTT assay in both single and combination treatments. Apoptosis was evaluated by annexin-V FITC staining. Finally, mRNA levels of apoptotic and autophagy genes were evaluated using real-time polymerase chain reaction (PCR). Data demonstrated that sorafenib, ATO, and their combination significantly increase the number of apoptotic cells. We found that the combination of ATO and sorafenib significantly reduces the viability of U937 and KG-1 cells. The expression level of selective autophagy genes, ULK1 and Beclin1 decreased but LC3-II increased in U937. The expression levels of apoptotic and autophagy activator genes were increased in response to treatment. The crosstalk between apoptosis and autophagy is a complicated mechanism and further investigations seem to be necessary."	"Dominant-negative antagonists of the Ras-ERK pathway: DA-Raf and its related proteins generated by alternative splicing of Raf. The Ras-ERK pathway regulates a variety of cellular and physiological responses, including cell proliferation, differentiation, morphogenesis during animal development, and homeostasis in adults. Deregulated activation of this pathway leads to cellular transformation and tumorigenesis as well as RASopathies. Several negative regulators of this pathway have been documented. Each of these proteins acts at particular points of the pathway, and they exert specific cellular and physiological functions. Among them, DA-Raf1 (DA-Raf), which is a splicing isoform of A-Raf and contains the Ras-binding domain but lacks the kinase domain, antagonizes the Ras-ERK pathway in a dominant-negative manner. DA-Raf induces apoptosis, skeletal myocyte differentiation, lung alveolarization, and fulfills tumor suppressor functions by interfering with the Ras-ERK pathway. After the findings of DA-Raf, several kinase-domain-truncated splicing variants of Raf proteins have also been reported. The family of these truncated proteins represents the concept that alternative splicing can generate antagonistic proteins to their full-length counterparts."	"Providing more evidence on LZTR1 variants in Noonan syndrome patients. Noonan syndrome (NS, OMIM 163950) is a common autosomal dominant RASopathy caused mainly by gain-of-function germline pathogenic variants in genes involved in the RAS/MAPK signaling pathway. LZTR1 gene has been associated with both dominant and recessive NS. Here, we present seven patients with NS and variants in the LZTR1 gene from seven unrelated families, 14 individuals in total. The detection rAte of LZTR1 variants in our NS cohort was 4% similar to RAF1 and KRAS genes, indicating that variants in this gene might be frequent among our population. Three different variants were detected, c.742G&gt;A (p.Gly248Arg), c.360C&gt;A (p.His120Gln), and c.2245T&gt;C (p.Tyr749His). The pathogenic variant c.742G&gt;A (p.Gly248Arg) was found in five/seven patients. In our cohort 50% of patients presented heart defects and neurodevelopment delay or learning disabilities, short stature was present in 21% of them and one patient had acute lymphoblastic leukemia. This study broadens the spectrum of variants in the LZTR1 gene and provides increased knowledge of the clinical phenotypes observed in Argentinean NS patients."	"Gene set based systematic analysis of prostate cancer and its subtypes. Aim: A gene set based systematic analysis strategy is used to investigate prostate tumors and its subclusters with focuses on similarities and differences of biological functions. Results: Dysregulation of methylation status, as well as RAS/RAF/ERK and PI3K-ATK signaling pathways, were found to be the most dramatic changes during prostate cancer tumorigenesis. Besides, neural and inflammation microenvironment is also significantly divergent between tumor and adjacent tissues. Insights of subclasses within prostate tumor cohorts revealed four different clusters with distinct gene expression patterns. We found that samples are mainly clustered by immune environments and proliferation traits. Conclusion: The findings of this article may help to advance the progress of identifying better diagnosis biomarkers and therapeutic targets."	"5-Aza-CdR Regulates RASSF1A By Inhibiting DNMT1 To Affect Colon Cancer Cell Proliferation, Migration And Apoptosis. To evaluate 5-Aza-CdR's inhibited effects on migration, proliferation, and apoptosis in colon cancer cells and its potential mechanisms. HCT-116, SW480, and SW620 were divided into HCT116 group, HCT116+5-Aza-CdR group, SW480 group, SW480+5-Aza-CdR group, SW620 group and SW620+5-Aza according to experimental needs. MTT test was chosen to investigate cell proliferation; Transwell test was used to evaluate cell migration; scratch assay was used to investigate cell invasion; flow cytometry was used to investigate apoptosis; immunofluorescence assay was used to investigate the protein level of DNMT1 and RASSF1A in cells; qRT-PCR was used to examine DNMT1, RASSF1A, RAS, Raf1, MEK, Grb2 and ERK transcription levels. Compared with HCT116 group, 5-Aza-CdR+HCT116 group inhibited cell proliferation, increased apoptosis rate, decreased invasive ability, decreased DNMT1 expression, increased expression of RASSF1A, decreased expression of RAS, Raf1, MEK, Grb2 and ERK. SW480 was compared with 5-Aza-CdR+SW480 group and SW620 group with 5-Aza-CdR+SW620 group. Their change trend of detection index was similar to that in HCT-116 group and HCT116+5-Aza-CdR group. 5-Aza-CdR can obviously inhibit the proliferation, migration and invasion of three colon cancer cell lines. Its mechanism maybe relies on the inhibition of DNMT1 mRNA level and protein level and the enhancement of RASSF1A mRNA level and protein level."	"Increased Rubisco content in maize mitigates chilling stress and speeds recovery. Many C4 plants, including maize, perform poorly under chilling conditions. This phenomenon has been linked in part to decreased Rubisco abundance at lower temperatures. An exception to this is chilling-tolerant Miscanthus, which is able to maintain Rubisco protein content under such conditions. The goal of this study was to investigate whether increasing Rubisco content in maize could improve performance during or following chilling stress. Here, we demonstrate that transgenic lines overexpressing Rubisco large and small subunits and the Rubisco assembly factor RAF1 (RAF1-LSSS), which have increased Rubisco content and growth under control conditions, maintain increased Rubisco content and growth during chilling stress. RAF1-LSSS plants exhibited 12% higher CO2 assimilation relative to nontransgenic controls under control growth conditions, and a 17% differential after 2 weeks of chilling stress, although assimilation rates of all genotypes were ~50% lower in chilling conditions. Chlorophyll fluorescence measurements showed RAF1-LSSS and WT plants had similar rates of photochemical quenching during chilling, suggesting Rubisco may not be the primary limiting factor that leads to poor performance in maize under chilling conditions. In contrast, RAF1-LSSS had improved photochemical quenching before and after chilling stress, suggesting that increased Rubisco may help plants recover faster from chilling conditions. Relatively increased leaf area, dry weight and plant height observed before chilling in RAF1-LSSS were also maintained during chilling. Together, these results demonstrate that an increase in Rubisco content allows maize plants to better cope with chilling stress and also improves their subsequent recovery, yet additional modifications are required to engineer chilling tolerance in maize."	"The inhibitory function of icariin in cell model of benign prostatic hyperplasia by upregulation of miR-7. In spite of a considerable breakthrough in antitumor effects of icariin (ICA), the studies regarding other functions of ICA still have not explored widely. This study aimed to report the function of ICA about the growth and migration of benign prostatic hyperplasia epithelial cell line (BPH-1) and human prostate epithelial cell line RWPE-1. Both BPH-1 and RWPE-1 cells were treated with ICA for 12 hr. The cells proliferation, migration, apoptosis were tested by CCK-8 assay, transwell assay, flow cytometry, and western blot. The miR-7 expression was silenced by transfection in both BPH-1 and RWPE-1 cells. The activation of PI3K/AKT and Raf1/ERK1/2 signaling pathways was detected by western blot. ICA inhibited both BPH-1 and RWPE-1 cells proliferation, migration, and promoted apoptosis. Meanwhile, ICA promoted miR-7 expression. Other than this, the changes of cells proliferation inhibition, migration inhibition and apoptosis promotion in both BPH-1 and RWPE-1 cells induced by ICA were reversed partially or completely by transfecting specific miR-7 inhibitor. Apart from this, the activation of PI3K/AKT and Raf1/ERK1/2 signaling pathways was inhibited by ICA through upregulating miR-7 expression. The study released that ICA inhibited both BPH-1 and RWPE-1 cells proliferation, migration and promoted apoptosis by upregulating the levels of miR-7 expression, which was related to PI3K/AKT and Raf1/ERK1/2 signaling pathways."	"PI3K/AKT Signaling in Breast Cancer Molecular Subtyping and Lymph Node Involvement. Lymph node metastatic involvement persists to be among the most important predictors of recurrence and survival in breast carcinoma (BC). This study is aimed at investigating possible gene expression differences in primary BC between patients with or without lymph node involvement at the time of diagnosis. In a retrospective study, we investigated the potential prognostic role of 9 candidate biomarkers at the mRNA level in a cohort of 305 breast cancer patients, 151 lymph node-negative (LN-) and 154 lymph node-positive (LN+) individuals. The analyzed genes belonged to the RAS pathway (RAF1, ERBB2, PIK3CB, AKT1, AKT2, and AKT3), RB pathway (RB1 and CDK2), and cellular differentiation (KRT8). Their expression profiles were investigated by RT-qPCR and were correlated to immunohistochemically based molecular subtypes and BC clinical and pathological features. The differential expression of several genes in the primary tumor tissue was related to the LN involvement. Some of those genes, including PIK3CB, RB1, and AKT3, were more expressed in LN- BC patients, while some others, notably ERBB2 and AKT1, in LN+ ones. Among the candidate biomarkers, the expression levels of AKT isoforms influenced also patients' survival rates. In detail, higher expression levels of AKT1 and AKT2 negatively influenced overall patients' survival, and in particular, AKT2 expression levels defined a group of luminal B BC patients with shorter cancer-specific survival. On the contrary, longer cancer-specific survival was recorded in luminal A BC patients with higher expression levels of AKT3. That finding was also confirmed by Cox multivariate analysis. The same AKT3 resulted to be a possible candidate predictive biomarker for Tamoxifen response. In conclusion, our study highlighted the complex regulation of the PI3K/AKT pathway in BC and its differences in BC patients with and without lymph node involvement."	"Growth Factors as Tools in Photoreceptor Cell Regeneration and Vision Recovery. Photoreceptor loss is a major cause of blindness around the world. Stem cell therapy offers a new strategy in retina degenerative disease. Retinal progenitors can be derived from embryonic stem cells (ESC) in vitro, but cannot be processed to a mature state. In addition, the adult recipient retina presents a very different environment than the photoreceptor precursor donor. It seems that modulation of the recipient environment by ectopic development regulated growth factors for transplanted cells could generate efficient putative photoreceptors. The purpose of this review article was to investigate the signaling pathway of growth factors including: insulin-like growth factors (IGFs), fibroblast growth factors (FGF), Nerve growth factor (NGF), Brain-derived neurotrophic factor (BDNF), Taurin and Retinoic acid (RA) involved in the differentiation of neuroretina cell, like; photoreceptor and retinal progenitor cells. Given the results available in the related literature, the differentiation efficacy of ESCs toward the photoreceptor and retinal neurons and the important role of growth factors in activating signaling pathways such as Akt, Ras/Raf1/ and ERKs also inhibit the ASK1/JNK apoptosis pathway. Manipulating differentiated culture, growth factors can influence photoreceptor transplantation efficiency in retinal degenerative disease."	"Fanconi anemia proteins counteract the implementation of the oncogene-induced senescence program. Fanconi Anemia (FA), due to the loss-of-function of the proteins that constitute the FANC pathway involved in DNA replication and genetic stability maintainance, is a rare genetic disease featuring bone marrow failure, developmental abnormalities and cancer predisposition. Similar clinical stigmas have also been associated with alterations in the senescence program, which is activated in physiological or stress situations, including the unscheduled, chronic, activation of an oncogene (oncogene induced senescence, OIS). Here, we wanted to determine the crosstalk, if any, between the FANC pathway and the OIS process. OIS was analyzed in two known cellular models, IMR90-hTERT/ER:RAS<sup>G12V</sup> and WI38-hTERT/ER:GFP:RAF1, harboring 4-hydroxytamoxifen-inducible oncogenes. We observed that oncogene activation induces a transitory increase of both FANCA and FANCD2 as well as FANCD2 monoubiquitination, readout of FANC pathway activation, followed by their degradation. FANCD2 depletion, which leads to a pre-senescent phenotype, anticipates OIS progression. Coherently, FANCD2 overexpression or inhibition of its proteosomal-dependent degradation slightly delays OIS progression. The pro-senescence protease cathepsin L, which activation is anticipated during OIS in FANCD2-depleted cells, also participates to FANCD2 degradation. Our results demonstrate that oncogene activation is first associated with FANCD2 induction and activation, which may support initial cell proliferation, followed by its degradation/downregulation when OIS proceeds."	"Short-Term Microgravity Influences Cell Adhesion in Human Breast Cancer Cells. With the commercialization of spaceflight and the exploration of space, it is important to understand the changes occurring in human cells exposed to real microgravity (r-µg) conditions. We examined the influence of r-µg, simulated microgravity (s-µg, incubator random positioning machine (iRPM)), hypergravity (hyper-g), and vibration (VIB) on triple-negative breast cancer (TNBC) cells (MDA-MB-231 cell line) with the aim to study early changes in the gene expression of factors associated with cell adhesion, apoptosis, nuclear factor &quot;kappa-light-chain-enhancer&quot; of activated B-cells (NF-κB) and mitogen-activated protein kinase (MAPK) signaling. We had the opportunity to attend a parabolic flight (PF) mission and to study changes in RNA transcription in the MDA-MB cells exposed to PF maneuvers (29th Deutsches Zentrum für Luft- und Raumfahrt (DLR) PF campaign). PF maneuvers induced an early up-regulation of ICAM1, CD44 and ERK1 mRNAs after the first parabola (P1) and a delayed upregulation of NFKB1, NFKBIA, NFKBIB, and FAK1 after the last parabola (P31). ICAM-1, VCAM-1 and CD44 protein levels were elevated, whereas the NF-κB subunit p-65 and annexin-A2 protein levels were reduced after the 31st parabola (P31). The PRKCA, RAF1, BAX mRNA were not changed and cleaved caspase-3 was not detectable in MDA-MB-231 cells exposed to PF maneuvers. Hyper-g-exposure of the cells elevated the expression of CD44 and NFKBIA mRNAs, iRPM-exposure downregulated ANXA2 and BAX, whereas VIB did not affect the TNBC cells. The early changes in ICAM-1 and VCAM-1 and the rapid decrease in the NF-κB subunit p-65 might be considered as fast-reacting, gravity-regulated and cell-protective mechanisms of TNBC cells exposed to altered gravity conditions. This data suggest a key role for the detected gravity-signaling elements in three-dimensional growth and metastasis."	"Molecular insight of regorafenib treatment for colorectal cancer. Regorafenib is a multi-targeting kinase inhibitor approved for the treatment of metastatic colorectal cancer patients in refractory to standard chemotherapy. Similarly to sorafenib, this agent was originally developed as a RAF1 inhibitor. However, the kinase inhibitory profile is distinct from sorafenib. A broad-spectrum of kinase inhibition induces wide-range drug sensitivity, irrespective of mutation status of major oncogenes. This agent's main therapeutic effects are anti-angiogenesis and the remodeling of tumor microenvironment through several mechanisms of action. The dual blockade of VEGF receptors and TIE2 can lead to both additive anti-angiogenesis effects and the suggestive unique regulation of vessel stability. Additionally, it inhibits molecular escape pathways to VEGF inhibition (e.g., FGF, PIGF, and PDGF signaling), enabling its continuous antiangiogenic effect even in tumors resistant to VEGF inhibitors. Furthermore, regorafenib has the important effect of enhancing anti-tumor immunity via macrophage modulation. Based on this concept, clinical trials have been recently launched for the development of a combination strategy with immune checkpoint inhibitors. Contrary to regorafenib induced clinical benefits and advances in the novel strategy, currently no predictive biomarkers have been identified. In the present review, we revisit and summarize regorafenib's unique mechanisms of action. The review could highlight molecular insights and provide some perspective for the search of predictive biomarkers used in metastatic colorectal cancer patients treated with regorafenib."	"CircAGFG1 promotes cervical cancer progression via miR-370-3p/RAF1 signaling. In past decades, circular RNAs (circRNAs) have achieved increasing attention because of its regulatory role in different kinds of cancers. However, how circAGFG1 regulates cervical cancer (CC) is still largely undiscovered. This study aims to evaluate the role of a novel circRNAs and related molecular mechanism in CC cells. High or low level of circAGFG1 was detected in CC cells or normal cell line with qRT-PCR. The proliferative and migratory abilities of CC cells were assessed with loss-of function assays. The downstream miRNA and mRNA of circAGFG1 were searched out and proved by using bioinformatics analysis and mechanism experiments. Recue assays were designed to confirm the role of circAGFG1/miR-370-3p/RAF1 axis in CC cell activities. The levels of circAGFG1 was abundant in CC cells in comparison with normal cervical cell End1/E6E7. The inhibitory effect of decreased circAGFG1 level on the proliferative and migratory abilities of CC cells was assessed. CircAGFG1 and miR-370-3p were localized in the cytoplasm and they can interact with each other. Moreover, miR-370-3p was downregulated in CC cells. We also determined the negative effect of miR-370-3p on RAF1. CircAGFG1 could promote RAF1 expression by absorbing miR-370-3p, thereby activating RAF/MEK/ERK pathway. circAGFG1 promoted proliferation and migration of CC cells via enhancing the activity of RAF/MEK/ERK pathway by sponging miR-370-3p and further regulating RAF1. The results of this study provided new evidence that circAGFG1 acted as a vital regulator in cervical cancer proliferation and migration, giving great promise to apply it as a potential biomarker for diagnosis and therapy in CC treatment."	"Melanoma-Derived Exosomes Induce PD-1 Overexpression and Tumor Progression via Mesenchymal Stem Cell Oncogenic Reprogramming. Recently, it has been described that programmed cell death protein 1 (PD-1) overexpressing melanoma cells are highly aggressive. However, until now it has not been defined which factors lead to the generation of PD-1 overexpressing subpopulations. Here, we present that melanoma-derived exosomes, conveying oncogenic molecular reprogramming, induce the formation of a melanoma-like, PD-1 overexpressing cell population (mMSC<sup>PD-1+</sup>) from naïve mesenchymal stem cells (MSCs). Exosomes and mMSC<sup>PD-1+</sup> cells induce tumor progression and expression of oncogenic factors in vivo. Finally, we revealed a characteristic, tumorigenic signaling network combining the upregulated molecules (e.g., PD-1, MET, RAF1, BCL2, MTOR) and their upstream exosomal regulating proteins and miRNAs. Our study highlights the complexity of exosomal communication during tumor progression and contributes to the detailed understanding of metastatic processes."	"miR‑489 promotes apoptosis and inhibits invasiveness of glioma cells by targeting PAK5/RAF1 signaling pathways. Glioma patients receiving therapy are at a high risk of relapse and rapid progression and, thus, more effective treatments are required. The aim of the present study was to determine the suppressive role of miR‑489 as an alternative therapeutic target for preventing glioma progression. The results of the present study demonstrated that patients with relatively lower levels of expression of miR‑489 had more favorable clinical outcomes. Furthermore, miR‑489 expression was inversely correlated with p21‑activated kinase 5 (PAK5) mRNA expression levels in glioma specimens. A dual luciferase reporter assay revealed that miR‑489 suppressed PAK5 expression by directly targeting the PAK5 3'‑untranslated region. The effects of miR‑489 on cell viability were measured using MTT and Cell Counting Kit‑8 assays. The results demonstrated that ectopic expression of miR‑489 mimic decreased cell viability by interfering with cyclin D1 and c‑Myc signaling. Additionally, the effect of miR‑489 on apoptosis was determined using Hoechst 33258 staining and flow cytometry. The results demonstrated that miR‑489 decreased the activity of RAF1, reduced Bcl‑2 and promoted Bax expression, resulting in increased cell apoptosis. Furthermore, the effect of miR‑489 mimic on cellular motility was assessed using migration and invasion assays. miR‑489 was shown to abolish the PAK5/RAF1/MMP2 pathway, resulting in decreased cell invasion ability. These results indicated that miR‑489 may be involved in PAK5‑mediated regulation of glioma progression, demonstrating the potential therapeutic benefits of targeting miR‑489 in glioma."	"Design, synthesis, and anticancer activity of imidazo[2,1-b]oxazole-based RAF kinase inhibitors. In the present work, a novel series of B-RAF kinase inhibitors having imidazo[2,1-b]oxazole scaffold was designed and synthesized based on the structures of the well-known B-RAF inhibitors. The twenty two final compounds were tested over A375 and SKMEL28 cell lines to determine the primary cytotoxic activity of these compounds, and their activities were compared with that of sorafenib as a standard. Compounds 11c, 11e, 11o, 11q, 11r, and 11u exhibited higher cellular activity compared to sorafenib with IC50 values of 7.25, 8.03, 9.81, 8.47, 4.70, and 9.04 µM, respectively and 10.38 µM for sorafenib. In addition, the target compounds were screened for their anticancer activity by the NCI-60 cell line assay. Compounds 11v and 11u were the most active compounds with percent inhibition reached 95.99% for 11v and 87.03% for 11u over K562 cell line at 10 µM concentration. Compound 11v was selected for 5-dose test mode. Furthermore, the kinase inhibitory activities of 11a, 11c, 11e, 11i, 11o, 11q, 11r, 11u, and 11v were determined against wild-type B-RAF, V600E-B-RAF, and RAF1. Compound 11o was the most potent against V600E-B-RAF with IC50 34 nM followed by 11q and 11u with IC50 92 and 93 nM, respectively."	"Prognostic Roles of Central Carbon Metabolism-Associated Genes in Patients With Low-Grade Glioma. Purpose: Metabolic alterations are crucial for tumor progression and response to therapy. The comprehensive model of combined central carbon metabolism-associated genes that contribute to the outcomes of glioma and astrocytoma is not well understood. Method: We studied the profiles of 63 genes involved in central carbon metabolism in 514 relatively low-grade glioma patients. The different distributions of gene expression in gliomas and astrocytoma were identified. The differential gene expression between each cohort and the correlations with prognosis were detected. Finally, we built a tentative model to detect the prognostic roles of carbon metabolism-associated genes in astrocytoma. Result: Two primary clusters and four subclusters with significantly different overall survival were identified in low-grade glioma. The differences of histological diagnoses, grade, tumor site, and age were detected between each cluster. Comparing with other histological types, patients with astrocytoma exhibited the worst prognosis. Between astrocytoma patients with poor and favorable prognoses, expression profiles of 11 genes were significantly discrepant. We detected that 18 genes were respectively correlated with overall survival in astrocytoma; moreover, four genes (RAF1, AKT3, IDH1, and FGFR1) were detected as dependent variables for the prediction of the survival status of astrocytoma patients and were capable to predict the survival. Conclusion: Central carbon metabolism-associated genes are differentially expressed in all patients with glioma and histological subtype astrocytoma. The gene expression profile is significantly associated with clinical manifestations. These results suggested that both the multigene expression patterns and individual central carbon metabolism-associated genes were potentially capable to predict the prognosis of patients with low-grade glioma."	"miR-4510 blocks hepatocellular carcinoma development through RAF1 targeting and RAS/RAF/MEK/ERK signalling inactivation. Therapeutic outcomes using the multikinase inhibitors, sorafenib and regorafenib, remain unsatisfactory for patients with advanced hepatocellular carcinoma (HCC). Thus, new drug modalities are needed. We recently reported the remarkable capacity of miR-4510 to impede the growth of HCC and hepatoblastoma through Glypican-3 (GPC3) targeting and Wnt pathway inactivation. To identify new targets of miR-4510, we used a label-free proteomic approach and reported down-regulation of RAF proto-oncogene serine/threonine-protein kinase (RAF1) by miR-4510. Because the tumourigenic role of RAF1 in HCC is controversial, we further studied RAF1:miR-4510 interactions using cellular, molecular as well as functional approaches and a chicken chorioallantoic membrane (CAM) xenograft model. We found an increase in RAF1 protein in 59.3% of HCC patients and a specific up-regulation of its transcript in proliferative tumours. We showed that miR-4510 inactivates the RAS/RAF/MEK/ERK pathway and reduces the expression of downstream targets (ie c-Fos proto-oncogene [FOS]) through RAF1 direct targeting. At a cellular level, miR-4510 inhibited HCC cell proliferation and migration and induced senescence in part by lowering RAF1 messenger RNA (mRNA) and protein expression. Finally, we confirmed the pro-tumoural function of RAF1 protein in HCC cells and its ability to sustain HCC tumour progression in vitro and in vivo. In this work, we confirm that RAF1 acts as an oncogene in HCC and further demonstrate that miR-4510 acts as a strong tumour suppressor in the liver by targeting many proto-oncogenes, including GPC3 and RAF1, and subsequently controlling key biological and signalling pathways among which Wnt and RAS/RAF/MEK/ERK signals."	"Distinct Binding Preferences between Ras and Raf Family Members and the Impact on Oncogenic Ras Signaling. The Ras GTPases are frequently mutated in human cancer, and, although the Raf kinases are essential effectors of Ras signaling, the tumorigenic properties of specific Ras-Raf complexes are not well characterized. Here, we examine the ability of individual Ras and Raf proteins to interact in live cells using bioluminescence resonance energy transfer (BRET) technology. We find that C-Raf binds all mutant Ras proteins with high affinity, whereas B-Raf exhibits a striking preference for mutant K-Ras. This selectivity is mediated by the acidic, N-terminal segment of B-Raf and requires the K-Ras polybasic region for high-affinity binding. In addition, we find that C-Raf is critical for mutant H-Ras-driven signaling and that events stabilizing B-Raf/C-Raf dimerization, such as Raf inhibitor treatment or certain B-Raf mutations, can allow mutant H-Ras to engage B-Raf with increased affinity to promote tumorigenesis, thus revealing a previously unappreciated role for C-Raf in potentiating B-Raf function."	"The extended spectrum of RAS-MAPK pathway mutations in colorectal cancer. Current clinical guidelines recommend mutation analysis for select codons in KRAS and NRAS exons 2, 3, and 4 and BRAF V600E to guide therapy selection and prognostic stratification in advanced colorectal cancer. This study evaluates the impact of extended molecular testing on the detection of RAS-MAPK pathway mutations. Panel next-generation sequencing results of colorectal cancer specimens from 5795 individuals from the American Association for Cancer Research Project Genomics Evidence Neoplasia Information Exchange (AACR Project GENIE) were included. Mutations in RAS-MAPK pathway genes were analyzed and functionally annotated. Colorectal cancers had recurrent pathogenic pathway activating mutations in KRAS (44%), NRAS (4%), HRAS (&lt;1%), BRAF (10%), MAP2K1 (1%), RAF1 (&lt;1%), and PTPN11 (&lt;1%). The proportion of colorectal cancers with pathogenic RAS pathway mutations was 37% when only KRAS codon 12 and 13 mutations were considered, 46% when also including select KRAS and NRAS exons 2, 3, and 4 mutations, 53% when including BRAF V600E mutations, and 56% when including all pathogenic mutations. Panel next-generation sequencing testing identifies additional RAS-MAPK pathway driver mutations beyond current guideline recommendations. These mutations have potential implications in treatment selection for patients with advanced colorectal cancer."	"A Multifunctional Therapy Approach for Cancer: Targeting Raf1- Mediated Inhibition of Cell Motility, Growth, and Interaction with the Microenvironment. Prostate cancer cells move from their primary site of origin, interact with a distant microenvironment, grow, and thereby cause death. It had heretofore not been possible to selectively inhibit cancer cell motility. Our group has recently shown that inhibition of intracellular activation of Raf1 with the small-molecule therapeutic KBU2046 permits, for the first time, selective inhibition of cell motility. We hypothesized that simultaneous disruption of multiple distinct functions that drive progression of prostate cancer to induce death would result in advanced disease control. Using a murine orthotopic implantation model of human prostate cancer metastasis, we demonstrate that combined treatment with KBU2046 and docetaxel retains docetaxel's antitumor action, but provides improved inhibition of metastasis, compared with monotherapy. KBU2046 does not interfere with hormone therapy, inclusive of enzalutamide-mediated inhibition of androgen receptor (AR) function and cell growth inhibition, and inclusive of the ability of castration to inhibit LNCaP-AR cell outgrowth in mice. Cell movement is necessary for osteoclast-mediated bone degradation. KBU2046 inhibits Raf1 and its downstream activation of MEK1/2 and ERK1/2 in osteoclasts, inhibiting cytoskeleton rearrangement, resorptive cavity formation, and bone destruction in vitro, with improved effects observed when the bone microenvironment is chemically modified by pretreatment with zoledronic acid. Using a murine cardiac injection model of human prostate cancer bone destruction quantified by CT, KBU2046 plus zoledronic exhibit improved inhibitory efficacy, compared with monotherapy. The combined disruption of pathways that drive cell movement, interaction with bone, and growth constitutes a multifunctional targeting strategy that provides advanced disease control."	"Clinical and molecular characterization of children with Noonan syndrome and other RASopathies in Argentina. RASopathies are a set of syndromes with phenotypic overlapping features caused by gene mutations involved in the RAS/MAPK pathway. They are autosomal dominantly inherited and share common clinical characteristics, including short stature, craniofacial dysmorphisms, congenital heart disease, ectodermal manifestations, and a higher risk for cancer. A molecular diagnosis is a key factor. To identify PTPN11, SOS1, RAF1, BRAF, and HRAS mutations and compare the main clinical characteristics of patients with molecular confirmation. Population and methods. Children with a clinical diagnosis of RASopathy assessed between August 2013 and February 2017. Mutations were identified in 71 % (87/122) of patients. The molecular test confirmed diagnosis in 73 % of patients with Noonan syndrome. The most prevalent mutation was c.922A&gt;G (p.Asn308Asp) in the PTPN11 gene. A previously undescribed variant in RAF1 was detected: c.1467G&gt;C (p.Leu489Phe). Cardiofaciocutaneous syndrome was confirmed in 67 % of cases with BRAF mutations. Costello syndrome and Noonan syndrome with multiple lentigines were confirmed in all cases. The confirmation of clinical diagnosis allowed for a more accurate differential diagnosis. The prevalence of PTPN11 (58 %), SOS1 (10 %), and RAF1 mutations (5 %) in children with Noonan syndrome, of PTPN11 mutations (100 %) in those with Noonan syndrome with multiple lentigines, of BRAF mutations (67 %) in those with cardiofaciocutaneous syndrome, and of HRAS mutations (100 %) in those with Costello syndrome was determined. Introducción. Las RASopatías son un conjunto de síndromes fenotípicamente superpuestos causados por mutaciones en genes implicados en la vía RAS/MAPK. La herencia es autosómica dominante, presentan características clínicas comunes, como baja talla, dismorfias craneofaciales, cardiopatía congénita, manifestaciones ectodérmicas y mayor riesgo de cáncer. El diagnóstico molecular es clave. Objetivo. Identificar mutaciones en los genes PTPN11, SOS1, RAF1, BRAF y HRAS, y comparar las principales características clínicas en pacientes con confirmación molecular. Población y métodos. Se estudiaron niños con diagnóstico clínico de RASopatía evaluados entre agosto de 2013 y febrero de 2017. Resultados. Se identificaron mutaciones en el 71 % (87/122) de los pacientes. El estudio molecular confirmó el diagnóstico en el 73 % de los pacientes con síndrome de Noonan. La mutación más prevalente fue c.922A&gt;G (p.Asn308Asp) en el gen PTPN11. Se detectó una variante no descrita en RAF1, c.1467G&gt;C (p.Leu489Phe). Se confirmó el síndrome cardiofaciocutáneo en el 67 % de los casos con mutaciones en el gen BRAF. El síndrome de Costello y el síndrome de Noonan con múltiples lentigos se confirmaron en todos los casos. Conclusión. La confirmación del diagnóstico clínico permitió un diagnóstico diferencial más preciso. Se determinó la prevalencia de las mutaciones en PTPN11 (el 58 %), SOS1 (el 10 %) y RAF1 (el 5 %) en niños con síndrome de Noonan, en PTPN11 (el 100 %) en el síndrome de Noonan con múltiples lentigos, en BRAF (el 67 %) en el síndrome cardiofaciocutáneo y en HRAS (el 100 %) en el síndrome de Costello."	"Effect of dietary N-carbamylglutamate on development of ovarian follicles via enhanced angiogenesis in the chicken. N-carbamylglutamate (NCG), an analogue of N-acetyl-L-glutamate (NAG), can increase arginine synthesis in mammals and improve the reproductive performance. However, the effect of NCG on poultry laying performance is still unclear. This study investigated the effect of dietary NCG on development of chicken ovarian follicles. The dosage and timing for NCG administration were evaluated for its effect on follicular development. Results showed that supplementation with 1% NCG in the diet for 14 D led to accelerated development of growing follicles (over 60 μm in oocyte diameter) and significantly increased feed intake and feed efficiency. Plasma amino acids (AA) analysis showed that feeding with 1% NCG significantly increased of plasma AA levels. RNA-seq analysis revealed that NCG supplementation upregulated expression of genes related to angiogenesis and cell proliferation, but downregulated expression of apoptosis-related genes. Meanwhile, RT-qPCR and Western blot analysis validated the RNA-seq results. Moreover, NCG enhanced plasma NO level; upregulated expression of PKG-I, Raf1, and p-p38; and increased angiogenesis of the ovaries. In conclusion, dietary NCG (1% for 14 D) can promote development of ovarian follicles by increasing angiogenesis in ovaries of the chicken."	"Propofol exerts anticancer activity on hepatocellular carcinoma cells by raising lncRNA DGCR5. Hepatocellular carcinoma is one of the most fatal cancers worldwide. Propofol is an intravenous anesthetic extensively used in clinical. Herein, we tested the anticancer activity of propofol on hepatocellular carcinoma, along with the internal molecular mechanism related to lncRNA DiGeorge syndrome critical region gene 5 (DGCR5). Followed by propofol stimulation, hepatocellular carcinoma Huh-7 and HepG2 cell viability, proliferation, migration, invasion, and apoptosis were tested, respectively. Then, DGCR5 expression levels in hepatocellular carcinoma tissues and cells were measured. sh-DGCR5 was transfected to silence DGCR5 expression. Subsequently, the influence of DGCR5 silence on propofol caused Huh-7 and HepG2 cell viability loss, proliferation inhibition, migration and invasion suppression, apoptosis induction, as well as Raf1/ERK1/2 and Wnt/β-catenin pathways inactivation were assessed, respectively. We discovered that propofol declined Huh-7 and HepG2 cell viability, proliferation, migration and invasion, but increased cell apoptosis. DGCR5 had a relatively lower expression level in hepatocellular carcinoma tissues and cells. Propofol elevated DGCR5 expression in Huh-7 and HepG2 cells. Increased expression of DGCR5 was connected with the anticancer activity of propofol on Huh-7 and HepG2 cells. Besides, propofol repressed Raf1/ERK1/2 and Wnt/β-catenin pathways through elevating DGCR5 expression. In conclusion, the anticancer activity of propofol on hepatocellular carcinoma was verified in this study. Propofol repressed hepatocellular carcinoma Huh-7 and HepG2 cell growth and metastasis at least by elevating DGCR5 and hereafter inactivating Raf1/ERK1/2 and Wnt/β-catenin pathways."	"O-GlcNAcylation of RAF1 increases its stabilization and induces the renal fibrosis. Epithelial-mesenchymal transition (EMT) is considered to be one of the most important mechanisms for the progression of renal interstitial fibrosis (RIF). Recently the relationship between post-translational modifications and EMT has been reported. O-GlcNAcylation, one of the key post-translational modifications, was rarely mentioned about its role in EMT, especially in EMT during the process of RIF. The current study aimed to determine whether O-GlcNAcylation participates in the regulation of EMT during RIF. We proved that O-GlcNAcylation prompted the EMT of HK2 cells. Mass spectral analysis identified RAF1 to be one of the O-GlcNAcylated proteins. Moreover, O-GlcNAcylation of RAF1 stabilized RAF1 protein and prompted EMT of HK2 cells. In terms of mechanism, we verified that O-GlcNAcylation of RAF1 inhibited its ubiquitination and thus stabilized RAF1. The upregulation of RAF1 and O-GlcNAcylation products (O-GlcNAc) in vivo were also observed in unilateral ureteral obstruction (UUO) animal models. Collectively, our study indicated that O-GlcNAcylation suppressed the ubiquitination of RAF1, stabilized RAF1 and then modulated the EMT in HK2 cells. These results may give us several new targets for the treatment of RIF."	"Noonan syndrome associated with anomalous left coronary artery from the pulmonary artery in a patient with the rare RAF1 mutation: A case report and review of literature. We present the case of a 7-week-old male infant diagnosed with anomalous left coronary artery from the pulmonary artery (ALCAPA) who underwent repair by left coronary artery reimplantation, followed by an eventful postoperative period including need for venous arterial extracorporeal membrane oxygenation and mitral valve replacement due to mitral calcification and severe insufficiency. He also required heart transplant due to severe rapidly progressive biventricular hypertrophy. The pathology examination of the explanted heart showed massive cardiomegaly. Subsequently, the infant's cardiomyopathy panel was positive for RAF1 mutation, consistent with diagnosis of a rare form of Noonan syndrome. To our knowledge, this autosomal dominant condition in association with ALCAPA has not been previously reported in the literature."	"Granulosa cells exposed to fibroblast growth factor 8 and 18 reveal early onset of cell growth and survival. Fibroblast growth factors (FGFs) are growth factors that have diverse biological activities including broad mitogenic and cell survival activities. They function through the activation of a specific tyrosine kinase receptor that transduces the signal by activating several intracellular signaling pathways. To identify the different signaling pathways involved in the mechanism of action of FGF8 and FGF18 on ovine granulosa cells using mass spectrometry. Ovine ovarian granulosa cells were harvested from adult sheep independently at the stage of the estrous cycle and were cultured at a density of 500,000 viable cells in 1 ml DMEM/F12 medium for five days. The cells were then treated on day 5 of culture with 10 ng/mL FGF8 and FGF18 for 30 minutes, and total cell protein was collected for mass spectrometry. Mass spectrometry showed that both FGF8 and FGF18 significantly induce simultaneous upregulation of several proteins, including ATF1, STAT3, MAPK1, MAPK3, MAPK14, PLCG1, PLCG2, PKCA, PIK3CA, RAF1, GAB1, and BAG2 ( <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mo>&gt;</mml:mo> </mml:math> 1.5-fold; p <mml:math xmlns:mml=\"http://www.w3.org/1998/Math/MathML\"> <mml:mo>&lt;</mml:mo> </mml:math> 0.01). ATF1 and STAT3 are important transcription factors involved in cell growth, proliferation and survival, and consequently can hamper or rescue the normal ovine reproductive system function."	"FRET-assisted photoactivation of flavoproteins for in vivo two-photon optogenetics. Optical dimerizers have been developed to untangle signaling pathways, but they are of limited use in vivo, partly due to their inefficient activation under two-photon (2P) excitation. To overcome this problem, we developed Förster resonance energy transfer (FRET)-assisted photoactivation, or FRAPA. On 2P excitation, mTagBFP2 efficiently absorbs and transfers the energy to the chromophore of CRY2. Based on structure-guided engineering, a chimeric protein with 40% FRET efficiency was developed and named 2P-activatable CRY2, or 2paCRY2. 2paCRY2 was employed to develop a RAF1 activation system named 2paRAF. In three-dimensionally cultured cells expressing 2paRAF, extracellular signal-regulated kinase (ERK) was efficiently activated by 2P excitation at single-cell resolution. Photoactivation of ERK was also accomplished in the epidermal cells of 2paRAF-expressing mice. We further developed an mTFP1-fused LOV domain that exhibits efficient response to 2P excitation. Collectively, FRAPA will pave the way to single-cell optical control of signaling pathways in vivo."	"Circulating Tumor DNA Alterations in Advanced Urothelial Carcinoma and Association with Clinical Outcomes: A Pilot Study. Cell-free circulating DNA (cfDNA) can be used for noninvasive profiling of tumor genomic aberrations. We hypothesized that molecular alterations may inform prognostication in advanced urothelial carcinoma (aUC). We evaluated 124 aUC patients who underwent cfDNA analysis using a 73-gene sequencing panel (Guardant360). The association of molecular alterations and clinical factors with overall survival (OS) and failure-free-survival (FFS) was evaluated using the Kaplan-Meier method and Cox proportional-hazards regression. The median age was 72yr, and 65 patients (52.4%) received prior therapy with platinum, 21 (17.1%) with a taxane, and ten (8.1%) with a PD-1/PD-L1 inhibitor. At least one genomic alteration was detected in 112 patients (90.3%). The median number of alterations per sample was four (range 0-80). Commonly altered genes included TP53 (54.8%), PIK3CA (24.2%), ARID1A (22.6%), ERBB2 (19.4%), EGFR (16.1%), NF1 (13.7%), RB1 (12.9%), FGFR3 (11.3%), BRAF (10.5%), BRCA1 (10.5%), and RAF1 (8.9%). BRCA1 and RAF1 alterations were associated with worse OS (hazard ratio [HR] 2.48; p=0.07; HR 4.87; p=0.007) and FFS (HR 2.35; p=0.016; HR 2.40; p=0.047). Poor Eastern Cooperative Oncology Group performance status and the presence of visceral metastasis were associated with shorter OS; genomic evolution was observed. In conclusion, cfDNA molecular alterations were detected in most aUC patients. BRCA1 and RAF1 alterations were negatively prognostic, supporting further evaluation of DNA damage response and RAF kinase inhibitors. PATIENT SUMMARY: Noninvasive testing of cell-free circulating DNA in advanced urothelial carcinoma identifies clinically relevant molecular aberrations. Alterations in BRCA1 and RAF1 genes appear to be negatively associated with clinical outcomes, supporting further study of DNA damage response and RAF kinase inhibitors in selected patients."	"SOS1 mutations in Noonan syndrome: Cardiomyopathies and not only congenital heart defects! Report of six patients including two novel variants and literature review. Noonan syndrome (NS) is caused by mutations in more than 10 genes, mainly PTPN11, SOS1, RAF1, and RIT1. Congenital heart defects and cardiomyopathy (CMP) are associated with significant morbidity and mortality in NS. Although hypertrophic CMP has &quot;classically&quot; been reported in association to RAF1, RIT1, and PTPN11 variants, SOS1 appears to be poorly related to CMP. Patients with NS attending our Center from January 2013 to June 2018 were eligible for inclusion if they carried SOS1 variants and presented with-or developed-CMP. Literature review describing the co-existence of SOS1 mutation and CMP was also performed. We identified six patients with SOS1 variants and CMP (male to female ratio 2:1) including two novel variants. CMP spectrum encompassed: (a) dilated CMP, (b) nonobstructive hypertrophic CMPs, and (c) obstructive hypertrophic CMPs. Survival is 100%. Literature review included 16 SOS1 mutated in CMP. CMP, mainly hypertrophic, has been often reported in association to RAF1, RIT1, and PTPN11 variants. Differently from previous reports, due to the frequent association of SOS1 variants and CMP in our single center experience, we suggest potential underestimated proportion of SOS1 in pediatric CMPs."	"Litchi (Litchi chinensis Sonn.) flower proanthocyanidin fraction exhibited protective efficacy to suppress nickel-induced expression for vascular endothelial growth factor in HepG2 cells. The protective efficacy of litchi (Litchi chinensis Sonn.) flower proanthocyanidin fraction (LFPF) composed of (-)-epicatechin and proanthocyanidin A2 against vascular endothelial growth factor (VEGF) generation induced by nickel (Ni) in hepatocellular carcinoma (Hep G2) cells was studied. VEGF is an angiogenic inducer, which promotes tumor angiogenesis, leading to rapid tumor growth and metastasis. VEGF could be substantially induced in the Ni-mediated Hep G2 cells. Through LFPF treatment, the Ni-induced VEGF generation could be suppressed significantly. The inhibition of HIF-1α expression by blocking phosphatidylinositol-3-kinase (PI3K)/protein kinase B (AKT)/mammalian target of rapamycin (mTOR) pathways, and the suppression of Janus kinase 2 (JAK2)/signal transducers and activators of transcription 3 (STAT 3), and Raf-1 proto-oncogene, serine/threonine kinase (RAF1)/mitogen-activated protein kinase (MEK1/2)/extracellular-signal-regulated kinase (ERK1/2) pathways are important molecular mechanisms for the LFPF action. LFPF should probably reduce the risk of liver cancer in Ni-contaminated environments by inhibiting VEGF expression. PRACTICAL APPLICATIONS: LFPF mainly contained (-)-epicatechin and proanthocyanidin A2. Our results demonstrated that LFPF considerably suppressed the Ni-induced VEGF expression through inhibition of JAK2/STAT 3 and RAF1/MEK1/2/ERK1/2 pathways and prohibited HIF-1α expression through blocking PI3K/AKT/mTOR pathway. Litchi flowers might have the potential to diminish the liver cancer risk in a Ni-contaminated environment through suitable treatment."	"A Systems-level Characterization of the Differentiation of Human Embryonic Stem Cells into Mesenchymal Stem Cells. Mesenchymal stem/stromal cells (MSCs) are self-renewing multipotent cells with regenerative, secretory and immunomodulatory capabilities that are beneficial for the treatment of various diseases. To avoid the issues that come with using tissue-derived MSCs in therapy, MSCs may be generated by the differentiation of human embryonic stems cells (hESCs) in culture. However, the changes that occur during the differentiation process have not been comprehensively characterized. Here, we combined transcriptome, proteome and phosphoproteome profiling to perform an in-depth, multi-omics study of the hESCs-to-MSCs differentiation process. Based on RNA-to-protein correlation, we determined a set of high confidence genes that are important to differentiation. Among the earliest and strongest induced proteins with extensive differential phosphorylation was AHNAK, which we hypothesized to be a defining factor in MSC biology. We observed two distinct expression waves of developmental HOX genes and an AGO2-to-AGO3 switch in gene silencing. Exploring the kinetic of noncoding ORFs during differentiation, we mapped new functions to well annotated long noncoding RNAs (CARMN, MALAT, NEAT1, LINC00152) as well as new candidates which we identified to be important to the differentiation process. Phosphoproteome analysis revealed ESC and MSC-specific phosphorylation motifs with PAK2 and RAF1 as top predicted upstream kinases in MSCs. Our data represent a rich systems-level resource on ESC-to-MSC differentiation that will be useful for the study of stem cell biology."	"Genetic architecture and adaptations of Nunavik Inuit. The Canadian Inuit have a distinct population background that may entail particular implications for the health of its individuals. However, the number of genetic studies examining this Inuit population is limited, and much remains to be discovered in regard to its genetic characteristics. In this study, we generated whole-exome sequences and genomewide genotypes for 170 Nunavik Inuit, a small and isolated founder population of Canadian Arctic indigenous people. Our study revealed the genetic background of Nunavik Inuit to be distinct from any known present-day population. The majority of Nunavik Inuit show little evidence of gene flow from European or present-day Native American peoples, and Inuit living around Hudson Bay are genetically distinct from those around Ungava Bay. We also inferred that Nunavik Inuit have a small effective population size of 3,000 and likely split from Greenlandic Inuit ∼10.5 kya. Nunavik Inuit went through a bottleneck at approximately the same time and might have admixed with a population related to the Paleo-Eskimos. Our study highlights population-specific genomic signatures in coding regions that show adaptations unique to Nunavik Inuit, particularly in pathways involving fatty acid metabolism and cellular adhesion (CPNE7, ICAM5, STAT2, and RAF1). Subsequent analyses in selection footprints and the risk of intracranial aneurysms (IAs) in Nunavik Inuit revealed an exonic variant under weak negative selection to be significantly associated with IA (rs77470587; P = 4.6 × 10<sup>-8</sup>)."	"Mitofusin2 regulates the proliferation and function of fibroblasts: The possible mechanisms underlying pelvic organ prolapse development. The present study aimed to investigate the effects of Mitofusin2 (Mfn2) on the proliferation of human uterosacral ligament fibroblasts and on the expression of procollagen. We also aimed to identify the possible signal transduction pathway involved in the development of pelvic organ prolapse (POP). For this purpose, uterosacral ligaments were harvested from POP and non‑pelvic organ prolapse (NPOP) patients for fibroblast culture. Cellular proliferation and the cell cycle were assessed following transduction with lentiviral vectors for the overexpression and suppression of Mfn2. The expression levels of the proteins Mfn2, procollagens, phosphoprotein 21 wild‑type p53 activating fragment (p21Waf1), cyclin‑dependent kinase 2 (CDK2), extracellular signal‑regulated kinase1/2 (ERK1/2) and rapidly accelerated fibrosarcoma‑1 (Raf‑1) were examined. Overexpression of Mfn2 resulted in the decreased proliferation of cells and the induction of G0/G1 phase arrest. Concomitantly, the relative expression levels of procollagen proteins, CDK2 and the phosphorylation levels of ERK1/2 and Raf‑1 proteins were notably decreased, while the levels of the p21waf1 protein were increased in the Mfn2 overexpressing group. Opposing results were reported cells following Mfn2 silencing via RNA interference. The results of the present study indicated that the cell cycle of the fibroblasts, their cellular proliferation and the levels of the procollagen proteins could be inhibited via the Ras‑Raf‑ERK axis as a result of the increased levels of Mfn2 during the development of POP."	"Nilotinib interferes with cell cycle, ABC transporters and JAK-STAT signaling pathway in CD34+/lin- cells of patients with chronic phase chronic myeloid leukemia after 12 months of treatment. Chronic myeloid leukemia (CML) is characterized by the constitutive tyrosine kinase activity of the oncoprotein BCR-ABL1 in myeloid progenitor cells that activates multiple signal transduction pathways leading to the leukemic phenotype. The tyrosine-kinase inhibitor (TKI) nilotinib inhibits the tyrosine kinase activity of BCR-ABL1 in CML patients. Despite the success of nilotinib treatment in patients with chronic-phase (CP) CML, a population of Philadelphia-positive (Ph+) quiescent stem cells escapes the drug activity and can lead to drug resistance. The molecular mechanism by which these quiescent cells remain insensitive is poorly understood. The aim of this study was to compare the gene expression profiling (GEP) of bone marrow (BM) CD34+/lin- cells from CP-CML patients at diagnosis and after 12 months of nilotinib treatment by microarray, in order to identify gene expression changes and the dysregulation of pathways due to nilotinib action. We selected BM CD34+/lin- cells from 78 CP-CML patients at diagnosis and after 12 months of first-line nilotinib therapy and microarray analysis was performed. GEP bioinformatic analyses identified 2,959 differently expressed probes and functional clustering determined some significantly enriched pathways between diagnosis and 12 months of nilotinib treatment. Among these pathways, we observed the under expression of 26 genes encoding proteins belonging to the cell cycle after 12 months of nilotinib treatment which led to the up-regulation of chromosome replication, cell proliferation, DNA replication, and DNA damage checkpoint at diagnosis. We demonstrated the under expression of the ATP-binding cassette (ABC) transporters ABCC4, ABCC5, and ABCD3 encoding proteins which pumped drugs out of the cells after 12 months of nilotinib. Moreover, GEP data demonstrated the deregulation of genes involved in the JAK-STAT signaling pathway. The down-regulation of JAK2, IL7, STAM, PIK3CA, PTPN11, RAF1, and SOS1 key genes after 12 months of nilotinib could demonstrate the up-regulation of cell cycle, proliferation and differentiation via MAPK and PI3K-AKT signaling pathways at diagnosis."	"Cucurbitacin IIa interferes with EGFR-MAPK signaling pathway leads to proliferation inhibition in A549 cells. Cucurbitacin IIa (CuIIa), a tetracyclic triterpenoid harboring anticancer activity, was investigated in A549 cells to reveal its mechanism of targeting on epidermal growth factor receptor (EGFR) signaling pathway. Results showed that CuIIa was capable of inducing apoptosis and cell cycle arrest at G2/M phase. The transcription of EGFR pathway genes and their proteins accumulation was inconsistently influenced by CuIIa. Notably, transcription of Raf1 was significantly upregulated, nevertheless, MEK1 and ERK1 were significantly downregulated. On the other hand, the accumulation of the total and phosphorylated proteins of the most members in EGFR-mitogen-activated protein kinase (MAPK) pathway, as well as CylclinB1 and survivin were also shifted by CuIIa treatment. Remarkably, total MEK remained constant but survivin completely degraded. Moreover, phosphorylated BRAF continuously increased while Raf1 and MEK decreased continuously. CuIIa was further confirmed to be a tyrosine kinase inhibitor (TKI) of EGFR by kinase inhibition assay. The results of molecular simulation showed that the long side chain of CuIIa occupied the binding pocket of EGFR and the ligand was stabilized at the active site of EGFR. In view of the results above, it is suggested that CuIIa inhibits cell proliferation by interfering the EGFR-MAPK signaling pathway."	"C-type natriuretic peptide attenuates renal osteodystrophy through inhibition of FGF-23/MAPK signaling. Renal osteodystrophy (ROD) occurs as early as chronic kidney disease (CKD) stage 2 and seems ubiquitous in almost all pediatric patients with CKD stage 5. Fibroblast growth factor (FGF)-23, a bone-derived endocrine regulator of phosphate homeostasis, is overexpressed in CKD and disturbs osteoblast differentiation and matrix mineralization. In contrast, C-type natriuretic peptide (CNP) acts as a potent positive regulator of bone growth. In the present study, we infused CNP into uremic rats and observed whether CNP could attenuate ROD through the inhibition of FGF-23 cascades. In uremic rats, CNP administration significantly alleviated renal dysfunction, calcium phosphate metabolic disorders, hypovitaminosis D, secondary hyperparathyroidism, the decrease in bone turnover markers and retarded bone pathological progression. More importantly, within FGF-23/mitogen-activated protein kinase (MAPK) signaling, the fibroblast growth factor receptor-1, Klotho and alternative (STAT-1/phospho-STAT-1) elements were upregulated by CNP, whereas FGF-23, RAF-1/phospho-RAF-1, and downstream (ERK/phospho-ERK and P38/phospho-P38) elements were paradoxically underexpressed in bone tissue. Therefore, CNP exerts a therapeutic effect on ROD through inhibition of FGF-23/MAPK signaling at the RAF-1 level."	"Cardiac transplantation in children with Noonan syndrome. NS and related RAS/MAPK pathway (RASopathy) disorders are the leading genetic cause of HCM presenting in infancy. HCM is a major cause of morbidity and mortality in children with Noonan spectrum disorders, especially in the first year of life. Previously, there have been only isolated reports of heart transplantation as a treatment for heart failure in NS. We report on 18 patients with NS disorders who underwent heart transplantation at seven US pediatric heart transplant centers. All patients carried a NS diagnosis: 15 were diagnosed with NS and three with NSML. Sixteen of eighteen patients had comprehensive molecular genetic testing for RAS pathway mutations, with 15 having confirmed pathogenic mutations in PTPN11, RAF1, and RIT1 genes. Medical aspects of transplantation are reported as well as NS-specific medical issues. Twelve of eighteen patients described in this series were surviving at the time of data collection. Three patients died following transplantation prior to discharge from the hospital, and another three died post-discharge. Heart transplantation in NS may be a more frequent occurrence than is evident from the literature or registry data. A mortality rate of 33% is consistent with previous reports of patients with HCM transplanted in infancy and early childhood. Specific considerations may be important in evaluation of this population for heart transplant, including a potentially increased risk for malignancies as well as lymphatic, bleeding, and coagulopathy complications."	"Apoptosis regulation in the penumbra after ischemic stroke: expression of pro- and antiapoptotic proteins. Ischemic stroke is the leading cause of human disability and mortality in the world. The main problem in stroke therapy is the search of efficient neuroprotector capable to rescue neurons in the potentially salvageable transition zone (penumbra), which is expanding after brain damage. The data on molecular mechanisms of penumbra formation and expression of diverse signaling proteins in the penumbra during first 24 h after ischemic stroke are discussed. Two basic features of cell death regulation in the ischemic penumbra were observed: (1) both apoptotic and anti-apoptotic proteins are simultaneously over-expressed in the penumbra, so that the fate of individual cells is determined by the balance between these opposite tendencies. (2) Similtaneous and concerted up-regulation in the ischemic penumbra of proteins that execute apoptosis (caspases 3, 6, 7; Bcl-10, SMAC/DIABLO, AIF, PSR), signaling proteins that regulate different apoptosis pathways (p38, JNK, DYRK1A, neurotrophin receptor p75); transcription factors that control expression of various apoptosis regulation proteins (E2F1, p53, c-Myc, GADD153); and proteins, which are normally involved in diverse cellular functions, but stimulate apoptosis in specific situations (NMDAR2a, Par4, GAD65/67, caspase 11). Hence, diverse apoptosis initiation and regulation pathways are induced simultaneously in penumbra from very different initial positions. Similarly, various anti-apoptotic proteins (Bcl-x, p21/WAF-1, MDM2, p63, PKBα, ERK1, RAF1, ERK5, MAKAPK2, protein phosphatases 1α and MKP-1, estrogen and EGF receptors, calmodulin, CaMKII, CaMKIV) are upregulated. These data provide an integral view of neurodegeneration and neuroprotection in penumbra. Some discussed proteins may serve as potential targets for anti-stroke therapy."	"Neurodevelopmental Aspects of RASopathies. RAS gene mutations are frequently found in one third of human cancers. Affecting approximately 1 in 1,000 newborns, germline and somatic gain-of-function mutations in the components of RAS/mitogen-activated protein kinase (RAS/MAPK) pathway has been shown to cause developmental disorders, known as RASopathies. Since RAS-MAPK pathway plays essential roles in proliferation, differentiation and migration involving developmental processes, individuals with RASopathies show abnormalities in various organ systems including central nervous system. The frequently seen neurological defects are developmental delay, macrocephaly, seizures, neurocognitive deficits, and structural malformations. Some of the defects stemmed from dysregulation of molecular and cellular processes affecting early neurodevelopmental processes. In this review, we will discuss the implications of RAS-MAPK pathway components in neurodevelopmental processes and pathogenesis of RASopathies."	"A Flp-SUMO hybrid recombinase reveals multi-layered copy number control of a selfish DNA element through post-translational modification. Mechanisms for highly efficient chromosome-associated equal segregation, and for maintenance of steady state copy number, are at the heart of the evolutionary success of the 2-micron plasmid as a stable multi-copy extra-chromosomal selfish DNA element present in the yeast nucleus. The Flp site-specific recombination system housed by the plasmid, which is central to plasmid copy number maintenance, is regulated at multiple levels. Transcription of the FLP gene is fine-tuned by the repressor function of the plasmid-coded partitioning proteins Rep1 and Rep2 and their antagonist Raf1, which is also plasmid-coded. In addition, the Flp protein is regulated by the host's post-translational modification machinery. Utilizing a Flp-SUMO fusion protein, which functionally mimics naturally sumoylated Flp, we demonstrate that the modification signals ubiquitination of Flp, followed by its proteasome-mediated degradation. Furthermore, reduced binding affinity and cooperativity of the modified Flp decrease its association with the plasmid FRT (Flp recombination target) sites, and/or increase its dissociation from them. The resulting attenuation of strand cleavage and recombination events safeguards against runaway increase in plasmid copy number, which is deleterious to the host-and indirectly-to the plasmid. These results have broader relevance to potential mechanisms by which selfish genomes minimize fitness conflicts with host genomes by holding in check the extra genetic load they pose."	"Molecular and phenotypic spectrum of Noonan syndrome in Chinese patients. Noonan syndrome (NS) is a common autosomal dominant/recessive disorder. No large-scale study has been conducted on NS in China, which is the most populous country in the world. Next-generation sequencing (NGS) was used to identify pathogenic variants in patients that exhibited NS-related phenotypes. We assessed the facial features and clinical manifestations of patients with pathogenic or likely pathogenic variants in the RAS-MAPK signaling pathway. Gene-related Chinese NS facial features were described using artificial intelligence (AI).NGS identified pathogenic variants in 103 Chinese patients in eight NS-related genes: PTPN11 (48.5%), SOS1 (12.6%), SHOC2 (11.7%), KRAS (9.71%), RAF1 (7.77%), RIT1 (6.8%), CBL (0.97%), NRAS (0.97%), and LZTR1 (0.97%). Gene-related facial representations showed that each gene was associated with different facial details. Eight novel pathogenic variants were detected and clinical features because of specific genetic variants were reported, including hearing loss, cancer risk due to a PTPN11 pathogenic variant, and ubiquitous abnormal intracranial structure due to SHOC2 pathogenic variants. NGS facilitates the diagnosis of NS, especially for patients with mild/moderate and atypical symptoms. Our study describes the genotypic and phenotypic spectra of NS in China, providing new insights into distinctive clinical features due to specific pathogenic variants."	"Golgi Phosphoprotein 3 Promotes Malignant Phenotypes via FAK/Raf/MEK and Wnt/β-Catenin Signaling Pathways in Human Renal Cell Carcinoma. Golgi phosphoprotein 3 (GOLPH3), a proto-oncogene product, is significantly increased during the progression of several types of cancer. However, its biological role and underlying mechanism in the development of renal cell carcinoma (RCC) remain poorly understood. In this study, GOLPH3 was found to be highly expressed in RCC specimens compared to the corresponding non-tumor tissues. In vitro, ectopic overexpression of GOLPH3 substantially promoted the proliferative and invasive capacity of RCC cells, while the depletion of GOLPH3 significantly inhibited proliferation and invasion of RCC cells. Furthermore, the average tumor volume was significantly increased in mice injected with 769-P cells highly expressing GOLPH3, whereas GOLPH3 knockdown reduced the tumor growth rate. Mechanistically, using a high-throughput phospho-proteome array verified by Western blotting, we have identified that phosphorylated proteins (FAK, Raf1, MEK, and GSK3β) were upregulated, activating, in turn, FAK/Raf1/MEK and Wnt/β-catenin signaling pathways in RCC cells. Taken together, our findings demonstrate that GOLPH3, whose expression is related to enhanced cell proliferation and invasion via activation of GOLPH3-FAK/Raf1/MEK axis or Wnt/β-catenin signaling pathways, may provide a new therapeutic target to treat renal cell carcinoma."	"MAP3K kinases and kidney injury. Mitogen-activated protein kinases (MAP kinases) are functionally connected kinases that regulate key cellular process involved in kidney disease such as all survival, death, differentiation and proliferation. The typical MAP kinase module is composed by a cascade of three kinases: a MAP kinase kinase kinase (MAP3K) that phosphorylates and activates a MAP kinase kinase (MAP2K) which phosphorylates a MAP kinase (MAPK). While the role of MAPKs such as ERK, p38 and JNK has been well characterized in experimental kidney injury, much less is known about the apical kinases in the cascade, the MAP3Ks. There are 24 characterized MAP3K (MAP3K1 to MAP3K21 plus RAF1, BRAF and ARAF). We now review current knowledge on the involvement of MAP3K in non-malignant kidney disease and the therapeutic tools available. There is in vivo interventional evidence clearly supporting a role for MAP3K5 (ASK1) and MAP3K14 (NIK) in the pathogenesis of experimental kidney disease. Indeed, the ASK1 inhibitor Selonsertib has undergone clinical trials for diabetic kidney disease. Additionally, although MAP3K7 (MEKK7, TAK1) is required for kidney development, acutely targeting MAP3K7 protected from acute and chronic kidney injury; and targeting MAP3K8 (TPL2/Cot) protected from acute kidney injury. By contrast MAP3K15 (ASK3) may protect from hypertension and BRAF inhibitors in clinical use may induced acute kidney injury and nephrotic syndrome. Given their role as upstream regulators of intracellular signaling, MAP3K are potential therapeutic targets in kidney injury, as demonstrated for some of them. However, the role of most MAP3K in kidney disease remains unexplored."	"Inducible Pluripotent Stem Cell-Derived Cardiomyocytes Reveal Aberrant Extracellular Regulated Kinase 5 and Mitogen-Activated Protein Kinase Kinase 1/2 Signaling Concomitantly Promote Hypertrophic Cardiomyopathy in RAF1-Associated Noonan Syndrome. More than 90% of individuals with Noonan syndrome (NS) with mutations clustered in the CR2 domain of RAF1 present with severe and often lethal hypertrophic cardiomyopathy (HCM). The signaling pathways by which NS RAF1 mutations promote HCM remain elusive, and so far, there is no known treatment for NS-associated HCM. We used patient-derived RAF1<sup>S257L/+</sup> and CRISPR-Cas9-generated isogenic control inducible pluripotent stem cell (iPSC)-derived cardiomyocytes to model NS RAF1-associated HCM and to further delineate the molecular mechanisms underlying the disease. We show that mutant iPSC-derived cardiomyocytes phenocopy the pathology seen in hearts of patients with NS by exhibiting hypertrophy and structural defects. Through pharmacological and genetic targeting, we identify 2 perturbed concomitant pathways that, together, mediate HCM in RAF1 mutant iPSC-derived cardiomyocytes. Hyperactivation of mitogen-activated protein kinase kinase 1/2 (MEK1/2), but not extracellular regulated kinase 1/2, causes myofibrillar disarray, whereas the enlarged cardiomyocyte phenotype is a direct consequence of increased extracellular regulated kinase 5 (ERK5) signaling, a pathway not previously known to be involved in NS. RNA-sequencing reveals genes with abnormal expression in RAF1 mutant iPSC-derived cardiomyocytes and identifies subsets of genes dysregulated by aberrant MEK1/2 or ERK5 pathways that could contribute to the NS-associated HCM. Taken together, the results of our study identify the molecular mechanisms by which NS RAF1 mutations cause HCM and reveal downstream effectors that could serve as therapeutic targets for treatment of NS and perhaps other, more common, congenital HCM disorders."	"Bioinformatic and experimental data decipher the pharmacological targets and mechanisms of plumbagin against hepatocellular carcinoma. Plumbagin exerts effective anti-hepatocellular carcinoma (HCC) benefits, however, the detailed mechanisms behind these effects are not yet completely elucidated. The pharmacological targets and molecular mechanisms of plumbagin against HCC were revealed through conducting network pharmacology approach before experimentative verification. The web-accessible databases of herbal ingredients' targets (HIT), Swiss-Target-Prediction and Super-Pred were used to predict the therapeutic targets of plumbagin, followed by combined with pathogenic targets of HCC from oncogenomic database of hepatocellular carcinoma (OncoDB.HCC) and Liverome databases to obtain the predominant targets of plumbagin-treating HCC. The database for annotation, visualization and integrated discovery (DAVID) was applied to output the gene ontology (GO) annotation and Kyoto encyclopedia of genes and genomes (KEGG) pathway enrichment by use of all predominant targets for computerized visualization. The validated data of human and cell culture were subjected to a group of medical imaging, biochemical tests and immunostaining, respectively. As revealed in bioinformatic data, 19 predominant targets of plumbagin-treating HCC were obtained, and 5 top targets of TP53, MAPK1, MAP2K1, RAF1 and CCND1 were the most important biomolecules in anti-HCC effects exerted by plumbagin. Other identifiable 102 GO items were showed, including 66 biological processes, and 12 cellular components, 24 molecular functions. And 67 KEGG pathways were mainly involved in neoplastic signaling. In human data, HCC sections showed increased expressions of hepatocellular TP53, MAPK1, accompanied with positive clinical imaging results for HCC. In plumbagin-treated HepG2 cells, reduced TP53, MAPK1 protein expressions were observed, accompanied with cell arrest and apoptosis. Collectively, the pharmacological targets and mechanisms of plumbagin-treating HCC were predicted and integrated through the method of network pharmacology, followed by some investigative validations. Interestingly, these 5 predominant biomolecules may be the potential targets for screening and treating HCC."	"Role of C5b-9 and RGC-32 in Cancer. The complement system represents an effective arsenal of innate immunity as well as an interface between innate and adaptive immunity. Activation of the complement system culminates with the assembly of the C5b-9 terminal complement complex on cell membranes, inducing target cell lysis. Translation of this sequence of events into a malignant setting has traditionally afforded C5b-9 a strict antitumoral role, in synergy with antibody-dependent tumor cytolysis. However, in recent decades, a plethora of evidence has revised this view, highlighting the tumor-promoting properties of C5b-9. Sublytic C5b-9 induces cell cycle progression by activating signal transduction pathways (e.g., Gi protein/ phosphatidylinositol 3-kinase (PI3K)/Akt kinase and Ras/Raf1/ERK1) and modulating the activation of cancer-related transcription factors, while shielding malignant cells from apoptosis. C5b-9 also induces Response Gene to Complement (RGC)-32, a gene that contributes to cell cycle regulation by activating the Akt and CDC2 kinases. RGC-32 is expressed by tumor cells and plays a dual role in cancer, functioning as either a tumor promoter by endorsing malignancy initiation, progression, invasion, metastasis, and angiogenesis, or as a tumor suppressor. In this review, we present recent data describing the versatile, multifaceted roles of C5b-9 and its effector, RGC-32, in cancer."	"RAF1 variant in a patient with Noonan syndrome with multiple lentigines and craniosynostosis. We report the case of a 14 years and 8 months girl, who is the first child of nonconsanguineous parents, with short stature, obstructive hypertrophic cardiomyopathy, multiple facial lentigines, high and wide forehead, downslanting palpebral fissures, low-set ears, short neck, and pectus excavatum; all features suggestive of Noonan syndrome with multiple lentigines (NSML). In addition, the patient exhibited craniosynostosis. Molecular analysis of rats sarcoma (RAS)/mitogen-activated protein kinase (MAPK) pathway genes with high-resolution melting curve analysis followed by sequencing showed a RAF1 amino acid substitution of valine to glycine at position 263 (p.V263G). The present report provides clinical data regarding the first association of a RAF1 variant and craniosynostosis in a patient with clinical diagnosis of NSML."	"Germline-Activating RRAS2 Mutations Cause Noonan Syndrome. Noonan syndrome (NS) is characterized by distinctive craniofacial appearance, short stature, and congenital heart disease. Approximately 80% of individuals with NS harbor mutations in genes whose products are involved in the RAS/mitogen-activating protein kinase (MAPK) pathway. However, the underlying genetic causes in nearly 20% of individuals with NS phenotype remain unexplained. Here, we report four de novo RRAS2 variants in three individuals with NS. RRAS2 is a member of the RAS subfamily and is ubiquitously expressed. Three variants, c.70_78dup (p.Gly24_Gly26dup), c.216A&gt;T (p.Gln72His), and c.215A&gt;T (p.Gln72Leu), have been found in cancers; our functional analyses showed that these three changes induced elevated association of RAF1 and that they activated ERK1/2 and ELK1. Notably, prominent activation of ERK1/2 and ELK1 by p.Gln72Leu associates with the severe phenotype of the individual harboring this change. To examine variant pathogenicity in vivo, we generated zebrafish models. Larvae overexpressing c.70_78dup (p.Gly24_Gly26dup) or c.216A&gt;T (p.Gln72His) variants, but not wild-type RRAS2 RNAs, showed craniofacial defects and macrocephaly. The same dose injection of mRNA encoding c.215A&gt;T (p.Gln72Leu) caused severe developmental impairments and low dose overexpression of this variant induced craniofacial defects. In contrast, the RRAS2 c.224T&gt;G (p.Phe75Cys) change, located on the same allele with p.Gln72His in an individual with NS, resulted in no aberrant in vitro or in vivo phenotypes by itself. Together, our findings suggest that activating RRAS2 mutations can cause NS and expand the involvement of RRAS2 proto-oncogene to rare germline disorders."	"Cardiac Manifestations of Noonan Syndrome. Noonan syndrome NS, a RASopathy, is commonly seen in association with cardiovascular abnormalities, with structural defects and/or cardiomyopathy present in 80-90-% of cases. Though a wide spectrum of cardiac pathology has been reported, pulmonary stenosis is the most common structural abnormality and more likely to be seen in PTPN11 mutations. Hypertrophic cardiomyopathy is the second most common and is more often associated with RAF1 mutations. Cardiac disease tends to be more progressive in infants and children with NS and therefore close cardiology follow-up is indicated. In general, the earlier the presentation, the more severe the phenotype and worse the long term prognosis. As genotype phenotype associations are being better understood, the mechanisms for development of cardiomyopathy are also becoming elucidated, raising the possibility of medical therapies targeted at the involved pathway."	"Endocrine Complications of Noonan Syndrome beyond Short Stature. Noonan syndrome (NS) is a diagnosis that is made clinically based on features including typical facies, congenital heart defects, short stature and developmental delay. Approximately 50% of the patients have identified mutations in the PTPN11 gene, and a smaller percentage of mutations have been reported in other genes such as SOS1, RAF1 and RIT1 Despite normal birth length, patients typically reach adult height below normal. Other than growth, endocrine complications of NS are not as commonly reported. These include possible pathology in thyroid function, pubertal development and bone metabolism. Some investigators have looked to see if genetic mutations in these patients could pose a risk for future endocrinopathies. This chapter reviews reports on endocrine dysfunction other than growth in patients with NS. The information is meant to enhance awareness in those providers who care for these patients to the possibility of other existing endocrinopathies. Most importantly, it supports and highlights the endocrinologist's role in the care of patients with NS."	"Functional linkage of gene fusions to cancer cell fitness assessed by pharmacological and CRISPR-Cas9 screening. Many gene fusions are reported in tumours and for most their role remains unknown. As fusions are used for diagnostic and prognostic purposes, and are targets for treatment, it is crucial to assess their function in cancer. To systematically investigate the role of fusions in tumour cell fitness, we utilized RNA-sequencing data from 1011 human cancer cell lines to functionally link 8354 fusion events with genomic data, sensitivity to &gt;350 anti-cancer drugs and CRISPR-Cas9 loss-of-fitness effects. Established clinically-relevant fusions were identified. Overall, detection of functional fusions was rare, including those involving cancer driver genes, suggesting that many fusions are dispensable for tumour fitness. Therapeutically actionable fusions involving RAF1, BRD4 and ROS1 were verified in new histologies. In addition, recurrent YAP1-MAML2 fusions were identified as activators of Hippo-pathway signaling in multiple cancer types. Our approach discriminates functional fusions, identifying new drivers of carcinogenesis and fusions that could have clinical implications."	"BRAF, A gatekeeper controlling endothelial permeability. The RAF/MEK/ERK signal transduction pathway is commonly deregulated in cancer and is activated by various stimuli regulating a variety of cell responses. In wild-type endothelial cells, upon permeability stimuli, ROKα, RAF1, BRAF, and RAP1 become activated, inducing a cascade of reactions resulting in F-actin remodeling and increased cell permeability. Here, Dorard et al. showed that BRAF ablated cells had more RAF1/ROKα dimerization and relocalization to VE-cadherin occurred, ultimately leading to less F-actin content and reduced vessel permeability."	"A Premature Stop Codon in RAF1 Is the Priority Candidate Causative Mutation of the Inherited Chicken Wingless-2 Developmental Syndrome. The chicken wingless-2 (wg-2) mutation is inherited in an autosomal recessive fashion, and the resulting phenotype in mutant (wg-2/wg-2) individuals is a developmental syndrome characterized by absent wings, truncated legs, craniofacial as well as skin and feather defects, and kidney malformations. Mapping and genotyping established that the mutation resides within 227 kilobases (kb) of chromosome 12 in a wg-2 congenic inbred line. A capture array was designed to target and sequence the candidate region along with flanking DNA in 24 birds from the line. Many point mutations and insertions or deletions were identified, and analysis of the linked variants indicated a point mutation predicted to cause a premature stop codon in the RAF1 gene. Expression studies were conducted inclusive of all genes in the candidate region. Interestingly, RAF1 transcription was elevated, yet the protein was absent in the mutants relative to normal individuals. RAF1 encodes a protein integral to the Ras/Raf/MAPK signaling pathway controlling cellular proliferation, and notably, human RASopathies are developmental syndromes caused by germline mutations in genes of this pathway. Our work indicates RAF1 as the priority candidate causative gene for wg-2 and provides a new animal model to study an important signaling pathway implicated in limb development, as well as RASopathies."	"Crosstalks of the PTPIP51 interactome revealed in Her2 amplified breast cancer cells by the novel small molecule LDC3/Dynarrestin. LDC3/Dynarrestin, an aminothiazole derivative, is a recently developed small molecule, which binds protein tyrosine phosphatase interacting protein 51 (PTPIP51). PTPIP51 interacts with various proteins regulating different signaling pathways leading to proliferation and migration. Her2 positive breast cancer cells (SKBR3) express high levels of PTPIP51. Therefore, we investigated the effects of LDC3/Dynarrestin on PTPIP51 and its interactome with 12 different proteins of various signal pathways including the interaction with dynein in SKBR3 cells. The localization and semi-quantification of PTPIP51 protein and the Tyr176 phosphorylated PTPIP51 protein were evaluated. Protein-protein-interactions were assessed by Duolink proximity ligation assays. Interactions and the activation of signal transduction hubs were examined with immunoblots. LDC3/Dynarrestin led to an increased PTPIP51 tyrosine 176 phosphorylation status while the overall amount of PTPIP51 remained unaffected. These findings are paralleled by an enhanced interaction of PTPIP51 with its crucial kinase c-Src and a reduced interaction with the counteracting phosphatase PTP1B. Furthermore, the treatment results in a significantly augmented interaction of PTPIP51/14-3-3β and PTPIP51/Raf1, the link to the MAPK pathway. Under the influence of LDC3/Dynarrestin, the activity of the MAPK pathway rose in a concentration-dependent manner as indicated by RTK assays and immunoblots. The novel small molecule stabilizes the RelA/IκB/PTPIP51 interactome and can abolish the effects caused by TNFα stimulation. Moreover, LDC3/Dynarrestin completely blocked the Akt signaling, which is essential for tumor growth. The data were compared to the recently described interactome of PTPIP51 in LDC3/Dynarrestin treated non-cancerous keratinocyte cells (HaCaT). Differences were identified exclusively for the mitochondrial-associated ER-membranes (MAM) interactions and phospho-regulation related interactome of PTPIP51.LDC3/Dynarrestin gives the opportunity/possibility to influence the MAPK signaling, NFkB signaling and probably calcium homeostasis in breast cancer cells by affecting the PTPIP51 interactome."	"In-cell single-molecule FRET measurements reveal three conformational state changes in RAF protein. The structures of proteins are intimately related to their functions. Significant efforts have been dedicated to the structural investigation of proteins, mainly those of purified proteins in in vitro environments. Proteins function in living cells and thus protein structures must be regulated by interactions with various molecules, some of which participate in reaction networks, depending on the states, conditions, or actions of the cell. Therefore, it is very important to understand the structural behavior of proteins in living cells. Single-molecule Förster resonance energy transfer (smFRET) measurements were conducted using the alternative laser excitation (ALEX) technique. smFRET distributions of cytosolic Rapidly Accelerated Fibrosarcoma (RAF) proteins in living HeLa cells were obtained with exclusion of the negative effects of photobleached fluorophores and incompletely labeled proteins on smFRET. smFRET histograms of wildtype (wt) RAF in live cells exhibited two major peaks, whereas that of the S621A mutant, which has been thought to have an expanded structure, was almost single-peaked. A population shift involving the peaks for wt RAF was detected upon epidermal growth factor stimulation. Spontaneous transitions between the conformational states corresponding to the two peaks were also detected using the FRET-two-channel kernel-based density distribution estimator method in comparison to static double-stranded DNA samples. Cytosolic CRAF has at least three conformational states; in addition to the closed and open forms, the fully-open form was distinctly specified. Based on the results, we propose a speculative structural model for CRAF. Structural distribution and changes to proteins in live cells as a result of intracellular interactions were successfully identified. smFRET using ALEX is applicable to any other cytosolic proteins."	"Noonan Syndrome in South Africa: Clinical and Molecular Profiles. Noonan Syndrome (NS) is a common autosomal dominant multisystem disorder, caused by mutations in more than 10 genes in the Ras/MAPK signaling pathway. Differential mutation frequencies are observed across populations. Clinical expressions of NS are highly variable and include short stature, distinctive craniofacial dysmorphism, cardiovascular abnormalities, and developmental delay. Little is known about phenotypic specificities and molecular characteristics of NS in Africa. The present study has investigated patients with NS in Cape Town (South Africa). Clinical features were carefully documented in a total of 26 patients. Targeted Next-Generation Sequencing (NGS) was performed on 16 unrelated probands, using a multigene panel comprising 14 genes: PTPN11, SOS1, RIT1, A2ML1, BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NRAS, RAF1, SHOC2, and SPRED1. The median age at diagnosis was 4.5 years (range: 1 month-51 years). Individuals of mixed-race ancestry were most represented (53.8%), followed by black Africans (30.8%). Our cohort revealed a lower frequency of pulmonary valve stenosis (34.6%) and a less severe developmental milestones phenotype. Molecular analysis found variants predicted to be pathogenic in 5 / 16 cases (31.2%). Among these mutations, two were previously reported: MAP2K1-c.389A&gt;G (p.Tyr130Cys) and PTPN11 - c.1510A&gt;G (p.Met504Val); three are novel: CBL-c.2520T&gt;G (p.Cys840Trp), PTPN11- c.1496C&gt;T (p.Ser499Phe), and MAP2K1- c.200A&gt;C (p.Asp67Ala). Molecular dynamic simulations indicated that novel variants identified impact the stability and flexibility of their corresponding proteins. Genotype-phenotype correlations showed that clinical features of NS were more typical in patients with variants in MAP2K1. This first application of targeted NGS for the molecular diagnosis of NS in South Africans suggests that, while there is no major phenotypic difference compared to other populations, the distribution of genetic variants in NS in South Africans may be different."	"Chinese yam extract and adenosine attenuated LPS-induced cardiac dysfunction by inhibiting RAS and apoptosis via the ER-mediated activation of SHC/Ras/Raf1 pathway. This study aimed to examine the effects of the Chinese yam extract and adenosine on lipopolysaccharide (LPS)-induced cardiac anomalies and the underlying mechanisms involved. Chinese yam extract [1630 mg/kg, intragastric (i.g.), 2 times/day] and adenosine (50 mg/kg, i.g., 2 times/day) were administered for 3 days, followed by the induction of sepsis by injecting LPS intraperitoneally [10 mg/kg, 2 h prior, intraperitoneally (i.p.)]. Also, estrogen receptor (ER)-unspecific antagonist Faslodex (ICI182,780, 0.5 mg/kg, i.p.) was administered 30 min before the treatments of Chinese yam extract or adenosine to evaluate whether the observed effects elicited by yam and adenosine were mediated via ERs. The heart function and the levels of pro-inflammatory cytokines, reversed mitogen-activated protein kinases (MAPKs), renin-angiotensin system (RAS), apoptosis markers, ER, and SHC/Ras/Raf1 were examined. The antagonistic effect of ICI182,780 (1 μM) and FTS (1 μM) against the Chinese yam extract (0.1 mg/ml) and adenosine (5 μM) in LPS (20 μg/ml, 24 h)-induced H9c2 cells was also investigated. The Chinese yam extract and adenosine improved heart function, downregulated pro-inflammatory cytokines, reversed MAPK and RAS, transformed the apoptosis markers, and increased the expression of ER and SHC/Ras/Raf1 following LPS challenge. These effects could be blocked by ICI182,780. FTS could not block the expression of ER on the Chinese yam extract and adenosine interposed on LPS-induced H9c2 cells, demonstrating that ER might be the upstream signaling regulator of SHC/Ras/Raf1. The Chinese yam extract and adenosine ameliorated LPS-induced cardiac contractility through the inhibition of RAS and apoptosis possibly via an ER-SHC/Ras/Raf1-dependent mechanism."	"A severe clinical phenotype of Noonan syndrome with neonatal hypertrophic cardiomyopathy in the second case worldwide with RAF1 S259Y neomutation. Noonan syndrome and related disorders are a group of clinically and genetically heterogeneous conditions caused by mutations in genes of the RAS/MAPK pathway. Noonan syndrome causes multiple congenital anomalies, which are frequently accompanied by hypertrophic cardiomyopathy (HCM). We report here a Tunisian patient with a severe phenotype of Noonan syndrome including neonatal HCM, facial dysmorphism, severe failure to thrive, cutaneous abnormalities, pectus excavatum and severe stunted growth, who died in her eighth month of life. Using whole exome sequencing, we identified a de novo mutation in exon 7 of the RAF1 gene: c.776C &amp;gt; A (p.Ser259Tyr). This mutation affects a highly conserved serine residue, a main mediator of Raf-1 inhibition via phosphorylation. To our knowledge the c.776C &amp;gt; A mutation has been previously reported in only one case with prenatally diagnosed Noonan syndrome. Our study further supports the striking correlation of RAF1 mutations with HCM and highlights the clinical severity of Noonan syndrome associated with a RAF1 p.Ser259Tyr mutation."	"Genetic Profile and Clinical Implications of Hepatoblastoma and Neuroblastoma Coexistence in a Child. The aim of the following case report is to provide a description of the coexistence of two independent tumors in a child. A 9-month-old male was referred to Department of Pediatric Oncology and Hematology with hepatic tumor present on ultrasound imaging and symptoms of enlarged abdominal circumference. Physical examination revealed a palpable epigastric mass and the imaging techniques showed a tumor of the left hepatic lobe measuring 11 × 6.5 × 8.9 cm with pancreas infiltration, distant metastases in both lungs and abnormal lesion in the left adrenal gland. Basing on histopathological examination, after a core-needle biopsy, hepatoblastoma (HBL) (mixed epithelial-mesenchymal subtype) was diagnosed. The α-fetoprotein level was 112 993 ng/ml. Elevated values of normetanephrine, 3-methoxytyramine as well as neuron-specific enolase were observed. Due to the clinical picture and diagnosis, the patient was qualified to preoperative chemotherapy according to the SIOPEL-3 protocol, followed by SIOPEL-4 protocol for the high-risk patients. After undergoing preoperative chemotherapy, imaging tests revealed regression of hepatic tumor and no focal pulmonary masses, while regression of adrenal gland mass was not completed. The patient was qualified for left hemihepatectomy with left adrenalectomy. Histopathological examination of liver specimen confirmed the HBL diagnosis. However, in left adrenal gland and paraaortic lymph nodes the residual neuroblastoma (NBL) cells were detected. Whole exome sequencing (WES) was utilized to identify disease-associated germline mutations. WES revealed a novel germline insertion variant in TWIST1 (p.Gly86dup), along with the potentially pathogenic non-synonymous variants in NF1 (p.Val2511Ile), RAF1 (p.Leu445Arg), and WHSC1 (p.Ser4Asn) genes. Currently, 6 months after completion of treatment according to the SIOPEL-4 protocol, the patient is in good general condition, without any signs, and symptoms of relapse of both neoplasms. The coexistence of two different primary childhood malignancies is rarely seen. So far, only one case of synchronous HBL and NBL has been reported. However, for the first time therapeutic process was successful. A specific signature of rare germline mutations can be proposed as a predisposing factor to synchronous HBL and NBL occurrence."	"Integrative In Vivo Drug Testing Using Gene Expression Signature and Patient-Derived Xenografts from Treatment-Refractory HER2 Positive and Triple-Negative Subtypes of Breast Cancer. Patient-derived xenografts (PDXs) are powerful tools for translational cancer research. Here, we established PDX models from different molecular subtypes of breast cancer for in vivo drug tests and compared the histopathologic features of PDX model tumors with those of patient tumors. Predictive biomarkers were identified by gene expression analysis of PDX samples using Nanostring nCount cancer panels. Validation of predictive biomarkers for treatment response was conducted in established PDX models by in vivo drug testing. Twenty breast cancer PDX models were generated from different molecular subtypes (overall success rate, 17.5%; 3.6% for HR<sup>+</sup>/HER2<sup>-</sup>, 21.4% for HR<sup>+</sup>/HER2<sup>+</sup>, 21.9% for HR<sup>-</sup>/HER2<sup>+</sup> and 22.5% for triple-negative breast cancer (TNBC)). The histopathologic features of original tumors were retained in the PDX models. We detected upregulated HIF1A, RAF1, AKT2 and VEGFA in TNBC cases and demonstrated the efficacy of combined treatment with sorafenib and everolimus or docetaxel and bevacizumab in each TNBC model. Additionally, we identified upregulated HIF1A in two cases of trastuzumab-exposed HR<sup>-</sup>/HER2<sup>+</sup> PDX models and validated the efficacy of the HIF1A inhibitor, PX-478, alone or in combination with neratinib. Our results demonstrate that PDX models can be used as effective tools for predicting therapeutic markers and evaluating personalized treatment strategies in breast cancer patients with resistance to standard chemotherapy regimens."	"The Noonan Syndrome-linked Raf1L613V mutation drives increased glial number in the mouse cortex and enhanced learning. RASopathies are a family of related syndromes caused by mutations in regulators of the RAS/Extracellular Regulated Kinase 1/2 (ERK1/2) signaling cascade that often result in neurological deficits. RASopathy mutations in upstream regulatory components, such as NF1, PTPN11/SHP2, and RAS have been well-characterized, but mutation-specific differences in the pathogenesis of nervous system abnormalities remain poorly understood, especially those involving mutations downstream of RAS. Here, we assessed cellular and behavioral phenotypes in mice expressing a Raf1L613V gain-of-function mutation associated with the RASopathy, Noonan Syndrome. We report that Raf1L613V/wt mutants do not exhibit a significantly altered number of excitatory or inhibitory neurons in the cortex. However, we observed a significant increase in the number of specific glial subtypes in the forebrain. The density of GFAP+ astrocytes was significantly increased in the adult Raf1L613V/wt cortex and hippocampus relative to controls. OLIG2+ oligodendrocyte progenitor cells were also increased in number in mutant cortices, but we detected no significant change in myelination. Behavioral analyses revealed no significant changes in voluntary locomotor activity, anxiety-like behavior, or sociability. Surprisingly, Raf1L613V/wt mice performed better than controls in select aspects of the water radial-arm maze, Morris water maze, and cued fear conditioning tasks. Overall, these data show that increased astrocyte and oligodendrocyte progenitor cell (OPC) density in the cortex coincides with enhanced cognition in Raf1L613V/wt mutants and further highlight the distinct effects of RASopathy mutations on nervous system development and function."	"Molecular Profiling of Tumor Tissue and Plasma Cell-Free DNA from Patients with Non-Langerhans Cell Histiocytosis. The BRAF<sup>V600E</sup> mutation and BRAF inhibitor responsiveness characterize ∼50% of patients with the non-Langerhans cell histiocytosis (non-LCH) Erdheim-Chester disease (ECD). We interrogated the non-LCH molecular landscape [ECD, n = 35; Rosai-Dorfman disease (RDD), n = 3; mixed ECD/RDD, n = 1] using BRAF<sup>V600E</sup> PCR and/or next-generation sequencing [tissue and cell-free DNA (cfDNA) of plasma and/or urine]. Of 34 evaluable patients, 17 (50%) had the BRAF<sup>V600E</sup> mutation. Of 31 patients evaluable for non-BRAF<sup>V600E</sup> alterations, 18 (58%) had ≥1 alteration and 12 putative non-BRAF<sup>V600E</sup> MAPK pathway alterations: atypical BRAF mutation; GNAS, MAP2K1, MAP2K2, NF1, and RAS mutations; RAF1 or ERBB2 amplifications; LMNA-NTRK1 (TRK inhibitor-sensitive) and CAPZA2-BRAF fusions. Four patients had JAK2, MPL ASXL1, U2AF1 alterations, which can correlate with myeloid neoplasms, a known ECD predisposition, and one developed myelofibrosis 13 months after cfDNA testing. Therefore, our multimodal comprehensive genomics reveals clinically relevant alterations and suggests that MAPK activation is a hallmark of non-LCH."	"ERα is required for suppressing OCT4-induced proliferation of breast cancer cells via DNMT1/ISL1/ERK axis. POU5F1 (OCT4) is implicated in cancer stem cell self-renewal. Currently, some studies have shown that OCT4 has a dual function in suppressing or promoting cancer progression. However, the precise molecular mechanism of OCT4 in breast cancer progression remains unclear. RT-PCR and Western blot were utilized to investigate OCT4 expression in breast cancer tissues and cells. Cell proliferation assays and mouse models were applied to determine the effects of OCT4 on breast cancer cell proliferation. DNMT1 inhibitors, ChIP, CoIP, IHC and ERα inhibitors were used to explore the molecular mechanism of OCT4 in breast cancer. OCT4 was down-regulated in breast cancer tissues, and the overexpression of OCT4 promoted MDA-MB-231 cell proliferation and inhibited the proliferation of MCF-7 cells in vitro and in vivo, respectively. Two DNMT1 inhibitors (5-aza-dC and zebularine) suppressed OCT4-induced MDA-MB-231 cell proliferation through Ras/Raf1/ERK inactivation by targeting ISL1, which is the downstream of DNMT1. In contrast, OCT4 interacted with ERα, decreased DNMT1 expression and inactivated the Ras/Raf1/ERK signalling pathway in MCF-7 cells. Moreover, ERα inhibitor (AZD9496) reversed the suppression of OCT4-induced proliferation in MCF-7 cells via the activation of ERK signalling pathway. OCT4 is dependent on ERα to suppress the proliferation of breast cancer cells through DNMT1/ISL1/ERK axis."	"Complete Regression of Advanced Pancreatic Ductal Adenocarcinomas upon Combined Inhibition of EGFR and C-RAF. Five-year survival for pancreatic ductal adenocarcinoma (PDAC) patients remains below 7% due to the lack of effective treatments. Here, we report that combined ablation of EGFR and c-RAF expression results in complete regression of a significant percentage of PDAC tumors driven by Kras/Trp53 mutations in genetically engineered mice. Moreover, systemic elimination of these targets induces toxicities that are well tolerated. Response to this targeted therapy correlates with transcriptional profiles that resemble those observed in human PDACs. Finally, inhibition of EGFR and c-RAF expression effectively blocked tumor progression in nine independent patient-derived xenografts carrying KRAS and TP53 mutations. These results open the door to the development of targeted therapies for PDAC patients."	"Targeting p21-activated kinase 1 inhibits growth and metastasis via Raf1/MEK1/ERK signaling in esophageal squamous cell carcinoma cells. p21-activated kinase 1 (PAK1) plays a fundamental role in promoting the development and progression of several cancers and is a potential therapeutic target. However, the biological function and underlying mechanism of PAK1 in esophageal squamous cell carcinoma (ESCC) remain unclear. The expression of PAK1 was detected in both ESCC cell lines and clinical samples. Cell growth was measured by MTT, focus formation and soft agar assays. Cell migration and invasion were detected by wound healing and transwell assays. Animal models of subcutaneous tumourigenicity and tail vein metastasis were performed to determine the inhibitory effect of pharmacological inhibitor IPA-3 on tumor growth and metastasis of ESCC cells. We found that PAK1 was frequently overexpressed in ESCC. Ectopic expression of PAK1 promoted cellular growth, colony formation and anchorage-independent growth. Overexpressing PAK1 also enhanced migration, invasion and the expression of MMP-2 and MMP-9 in ESCC cells. In contrast, silencing PAK1 by lentiviral knockdown or a specific inhibitor IPA-3 resulted in a contrary effect. Subsequent investigations revealed that Raf1/MEK1/ERK signaling pathway was involved in PAK1-mediated effect. Enhanced expression of Raf1 attenuated the inhibitory functions of PAK1 shRNA. Whereas blocking of Raf1 by shRNA or specific inhibition of MEK1 by U0126 antagonized the oncogenetic effect of PAK1 on ESCC cells. More importantly, Pharmacological inhibition of PAK1 by IPA-3 significantly suppressed tumor growth and lung metastasis of ESCC cells in vivo. These data support that PAK1 is an ideal target for the development of potential therapeutic drugs for ESCC patients even with metastasis."	"Lentiviral delivery of a shRNA sequence analogous to miR-4319/miR-125-5p induces apoptosis in NSCLC cells by arresting G2/M phase. In this study, we explored the therapeutic potential of microRNA (miR) analogs against non-small-cell lung cancer (NSCLC) using lentiviral delivery of short hairpin RNA (shRNA). By using A549 as a model cell line, we used analogs and mimics of miR-4319/miR-125-5p to target the tumorigenic RAF1 gene. Lentiviral vectors carrying shRNA of a highly efficient miRNA analog of miR-4319/miR-125-5p, Analog2, were constructed to infect A549 cells. Our results showed that, compared with the noncancerous bronchial epithelial cell line 16HBE, lentivirus delivering Analog2 shRNA induced significant G2/M arrest and subsequent apoptosis in A549 cells, but not in 16HBE cells. Western blot analysis revealed that key factors regulating cell cycle were downregulated following RAF1 inhibition. In vivo xenograft experiments showed that lentivirus carrying Analog2 shRNA markedly decreased tumor size. Therefore, lentiviral delivery of Analog2 shRNA is a valid RNA interference-based treatment against NSCLC with high potency and specificity."	"Malignant melanoma with areas of rhabdomyosarcomatous differentiation arising in a giant congenital nevus with RAF1 gene fusion. A girl, born with a posterior lumbosacral giant congenital nevus, developed a central nodule that expanded over a period of 14 months into a 10-cm pedunculated mass. Histological analysis of the mass revealed melanoma of myxoid, small round-cell type with areas of rhabdomyosarcomatous transformation confirmed by immunohistochemistry. RNA sequencing identified an in-frame SASS6(e14)-RAF1(e8) fusion in both components and the nevus. A RAF1 FISH break-apart test found a balanced rearrangement pattern in the nevus and an unbalanced pattern in the malignant areas. Wild-type status of NRAS and BRAF was confirmed by NGS techniques. The array-CGH profile displayed copy number alterations commonly found in rhabdomyosarcomas. Despite intensive treatment, widespread metastatic evolution of the melanomatous component was observed."	"S100 and CD34 positive spindle cell tumor with prominent perivascular hyalinization and a novel NCOA4-RET fusion. We report a case of a 35-year old male patient with a tumor located in the deep dermis on his forearm. The lesion was completely excised but recurred 4 years later. The patient showed no signs of neurofibromatosis type 1. The morphology and immunophenotype of the tumor corresponded to the recently characterized group of soft tissue spindle cell lesions defined by a relatively uniform cytomorphology, patternless architecture, conspicuous stromal and perivascular hyalinization, S100 and CD34 coexpression and recurrent fusions involving RAF1, BRAF, and NTRK1/2 genes. Using a 592-gene panel and massively parallel next-generation sequencing platform, we initially detected only NF1 gene mutation in our case. However, further molecular testing with Archer fusion assay revealed a novel NCOA4-RET gene fusion, adding it to the list of multiple kinase fusions originally reported in these tumors. Although break-apart FISH showed false negative result due to the presence of intrachromosomal rearrangement, RT-PCR confirmed the fusion transcript. Knowing the exact fusion is of great clinical importance especially for patients within the aggressive subset of these neoplasms that could be treated with selective kinase inhibitors. The presented case underscores the benefits of massively parallel sequencing as the types and number of gene fusions these tumors can potentially harbor render single-gene assays such as FISH impractical, and in this particular case, also insensitive."	"Targeting B-Raf inhibitor resistant melanoma with novel cell penetrating peptide disrupters of PDE8A - C-Raf. Recent advances in the treatment of melanoma that involve immunotherapy and B-Raf inhibition have revolutionised cancer care for this disease. However, an un-met clinical need remains in B-Raf inhibitor resistant patients where first-generation B-Raf inhibitors provide only short-term disease control. In these cases, B-Raf inhibition leads to paradoxical activation of the C-Raf - MEK - ERK signalling pathway, followed by metastasis. PDE8A has been shown to directly interact with and modulate the cAMP microdomain in the vicinity of C-Raf. This interaction promotes C-Raf activation by attenuating the PKA-mediated inhibitory phosphorylation of the kinase. We have used a novel cell-penetrating peptide agent (PPL-008) that inhibits the PDE8A - C-Raf complex in a human malignant MM415 melanoma cell line and MM415 melanoma xenograft mouse model to investigate ERK MAP kinase signalling. We have demonstrated that the PDE8A - C-Raf complex disruptor PPL-008 increased inhibitory C-Raf-S259 phosphorylation and significantly reduced phospho-ERK signalling. We have also discovered that the ability of PPL-008 to dampen ERK signalling can be used to counter B-Raf inhibitor-driven paradoxical activation of phospho-ERK in MM415 cells treated with PLX4032 (Vemurafenib). PPL-008 treatment also significantly retarded the growth of these cells. When applied to a MM415 melanoma xenograft mouse model, PPL-008C penetrated tumour tissue and significantly reduced phospho-ERK signalling in that domain. Our data suggests that the PDE8A-C-Raf complex is a promising therapeutic treatment for B-Raf inhibitor resistant melanoma."	"Whole-Exome Sequencing Identifies Novel Heterozygous Mutation in RAF1 in Family With Neonatal Testicular Torsion. To investigate a genetic cause of neonatal testicular torsion in 2 siblings and paternal cryptorchidism in a Caucasian family without history of consanguinity, we performed whole exome sequencing. Targeted exon/whole-exome sequencing was performed in 2 siblings with testicular torsion. Potentially pathogenic variants passing filter criteria were validated with Sanger sequencing of parents to confirm familial segregation. Additionally, immunofluorescence staining for Raf-1, pERK (downstream from Raf-1) and c-Kit was performed on a testicular biopsy on the preserved testicle from the proband brother and compared with testicular biopsies from fertile men. A potentially pathogenic variant was identified in the RAF1 gene (serine/threonine-protein kinase) in exon 7 of chromosome 3: 12645786 G &gt; C; both brothers and father were heterozygous for the variant, while the mother was negative for this mutation. This mutation in exon 7 (chr3:) of RAF1 is predicted to be damaging as a highly conserved splicing site is disrupted. The mutation is not found in the single nucleotide polymorphism database, the 1000 Genomes Project, ExACT, or esp6500. Immunofluorescence of the testis biopsy from one of the brothers demonstrated markedly decreased expression of Raf-1 as well as pERK but similar expression of c-kit when compared with fertile controls. We identified a novel nonsynonymous mutation in RAF1 in n Caucasian family with testicular torsion and cryptorchidism. We present the first human evidence that the RAF/MEK/ERK pathway is associated with testicular descent."	"Genetic landscape of RASopathies in Chinese: Three decades' experience in Hong Kong. RASopathies are a group of genetic disorders due to dysregulation of the RAS-MAPK signaling pathway, which is important in regulating cell growth, proliferation, and differentiation. These include Noonan syndrome (NS), Noonan syndrome with multiple lentigines (NSML), cardiofaciocutaneous (CFC) syndrome, and Costello syndrome (CS), clinical manifestations include growth retardation, developmental delay, cardiac defects, and specific dysmorphic features. There were abundant publications describing the genotype and phenotype from the Western populations. However, detailed study of RASopathies in Chinese population is lacking. We present here the largest cohort of RASopathies ever reported in Chinese populations, detailing the mutation spectrum and clinical phenotypes of these patients. The Clinical Genetic Service, Department of Health, and Queen Mary Hospital are tertiary referral centers for genetic disorders in Hong Kong. We retrospectively reviewed all the genetically confirmed cases of RASopathies, including NS, NSML, CFC syndrome, and CS, over the past 29 years (from 1989 to 2017). Analyses of the mutation spectrum and clinical phenotypes were performed. One hundred and ninety-one ethnic Chinese patients with genetically confirmed RASopathies were identified, including 148 patients with NS, 23 NSML, 12 CFC syndrome, and eight CS. We found a lower incidence of hypertrophic cardiomyopathy in individuals with NSML (27.3%), and NS caused by RAF1 mutations (62.5%). Another significant finding was for those NS patients with myeloproliferative disorder, the mutations fall within Exon 3 of PTPN11 but not only restricted to the well-known hotspots, that is, p.Asp61 and p.Thr731, which suggested that re-evaluation of the current tumor surveillance recommendation maybe warranted."	"Efficacy of MEK inhibition in patients with histiocytic neoplasms. Histiocytic neoplasms are a heterogeneous group of clonal haematopoietic disorders that are marked by diverse mutations in the mitogen-activated protein kinase (MAPK) pathway<sup>1,2</sup>. For the 50% of patients with histiocytosis who have BRAF<sup>V600</sup> mutations<sup>3-5</sup>, RAF inhibition is highly efficacious and has markedly altered the natural history of the disease<sup>6,7</sup>. However, no standard therapy exists for the remaining 50% of patients who lack BRAF<sup>V600</sup> mutations. Although ERK dependence has been hypothesized to be a consistent feature across histiocytic neoplasms, this remains clinically unproven and many of the kinase mutations that are found in patients who lack BRAF<sup>V600</sup> mutations have not previously been biologically characterized. Here we show ERK dependency in histiocytoses through a proof-of-concept clinical trial of cobimetinib, an oral inhibitor of MEK1 and MEK2, in patients with histiocytoses. Patients were enrolled regardless of their tumour genotype. In parallel, MAPK alterations that were identified in treated patients were characterized for their ability to activate ERK. In the 18 patients that we treated, the overall response rate was 89% (90% confidence interval of 73-100). Responses were durable, with no acquired resistance to date. At one year, 100% of responses were ongoing and 94% of patients remained progression-free. Cobimetinib treatment was efficacious regardless of genotype, and responses were observed in patients with ARAF, BRAF, RAF1, NRAS, KRAS, MEK1 (also known as MAP2K1) and MEK2 (also known as MAP2K2) mutations. Consistent with the observed responses, the characterization of the mutations that we identified in these patients confirmed that the MAPK-pathway mutations were activating. Collectively, these data demonstrate that histiocytic neoplasms are characterized by a notable dependence on MAPK signalling-and that they are consequently responsive to MEK inhibition. These results extend the benefits of molecularly targeted therapy to the entire spectrum of patients with histiocytosis."	"Discovery and validation an eight-biomarker serum gene signature for the diagnosis of steroid-induced osteonecrosis of the femoral head. Steroid-induced osteonecrosis of the femoral head (SONFH) is difficult to be diagnosed at the early stages when it can be administrated effectively. Yet, to date no study has been performed to identify diagnostic biomarkers and to develop diagnostic models for SONFH. In the current study, a total of 60 SONFH patients with Association Research Circulation Osseous (ARCO) stages I-IV, and 20 controls were enrolled and divided into the discovery and validation cohorts. The serum samples were collected and the gene expression profiles were detected by microarray analysis based on the discovery cohort. Then, eight genes (BIRC3, CBL, CCR5, LYN, PAK1, PTEN, RAF1 and TLR4) were identified as the candidate serum biomarkers of SONFH due to the significant differential expression patterns and the topological importance in the interaction network of SONFH-related differentially expressed genes. Functionally, these candidate serum biomarkers were significantly involved into several pathological processes during SONFH progression, such as the immune regulation and inflammation, bone metabolism and angiogenesis. After that, a prediction model for the diagnosis of SONFH was constructed using Partial least squares regression based on the serum levels of the candidate biomarkers. Notably, both the 10-fold cross-validation and the independent dataset test demonstrated the good performance of this model. In conclusion, our study discovered eight promising serum biomarkers and developed the multi-biomarker-based prediction model as a new, potential and non-invasive diagnostic tool for the detection of SONFH, as well as benefit the administration of SONFH in a daily clinical setting."	"Profound MEK inhibitor response in a cutaneous melanoma harboring a GOLGA4-RAF1 fusion. BRAF and CRAF are critical components of the MAPK signaling pathway which is activated in many cancer types. In approximately 1% of melanomas, BRAF or CRAF are activated through structural arrangements. We describe here a metastatic melanoma with a GOLGA4-RAF1 fusion and pathogenic variants in CTNNB1 and CDKN2A. Anti-CTLA4/anti-PD1 combination immunotherapy failed to control tumor progression. In the absence of other actionable variants the patient was administered MEK inhibitor therapy on the basis of its potential action against RAF1 fusions. This resulted in a profound and clinically significant response. We demonstrated that GOLGA4-RAF1 expression was associated with ERK activation, elevated expression of the RAS/RAF downstream co-effector ETV5, and a high Ki67 index. These findings provide a rationale for the dramatic response to targeted therapy. This study shows that thorough molecular characterization of treatment-resistant cancers can identify therapeutic targets and personalize management, leading to improved patient outcomes."	"RAF dimers control vascular permeability and cytoskeletal rearrangements at endothelial cell-cell junctions. The endothelium functions as a semipermeable barrier regulating fluid homeostasis, nutrient, and gas supply to the tissue. Endothelial permeability is increased in several pathological conditions including inflammation and tumors; despite its clinical relevance, however, there are no specific therapies preventing vascular leakage. Here, we show that endothelial cell-restricted ablation of BRAF, a kinase frequently activated in cancer, prevents vascular leaking as well metastatic spread. BRAF regulates endothelial permeability by promoting the cytoskeletal rearrangements necessary for the remodeling of VE-Cadherin-containing endothelial cell-cell junctions and the formation of intercellular gaps. BRAF kinase activity and the ability to form complexes with RAS/RAP1 and dimers with its paralog RAF1 are required for proper permeability control, achieved mechanistically by modulating the interaction between RAF1 and the RHO effector ROKα. Thus, RAF dimerization impinges on RHO pathways to regulate cytoskeletal rearrangements, junctional plasticity, and endothelial permeability. The data advocate the development of RAF dimerization inhibitors, which would combine tumor cell autonomous effect with stabilization of the vasculature and antimetastatic spread."	"Improved recombinant expression and purification of functional plant Rubisco. Improving the performance of the key photosynthetic enzyme Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco) by protein engineering is a critical strategy for increasing crop yields. The extensive chaperone requirement of plant Rubisco for folding and assembly has long been an impediment to this goal. Production of plant Rubisco in Escherichia coli requires the coexpression of the chloroplast chaperonin and four assembly factors. Here, we demonstrate that simultaneous expression of Rubisco and chaperones from a T7 promotor produces high levels of functional enzyme. Expressing the small subunit of Rubisco with a C-terminal hexahistidine-tag further improved assembly, resulting in a ~ 12-fold higher yield than the previously published procedure. The expression system described here provides a platform for the efficient production and engineering of plant Rubisco."	"Downregulation of miR-503 in Activated Kidney Fibroblasts Disinhibits KCNN4 in an in Vitro Model of Kidney Fibrosis. Activated fibroblasts are key controllers of extracellular matrix turnover in kidney fibrosis, the pathophysiological end stage of chronic kidney disease. The proliferation of activated fibroblasts depends on the expression of the calcium-dependent potassium channel KCNN4. Expression of this ion channel is upregulated in fibrotic kidneys. Genetic and pharmacological blockade of KCNN4 inhibits fibrosis in vitro and in vivo. We studied the regulation of KCNN4 and possible involvement of miRNAs in an in-vitro fibrosis model using murine kidney fibroblasts. We tested fibroblast proliferation, channel function, channel expression and expression regulation after FGF-2 stimulation. Proliferation was significantly increased by FGF-2, channel current and expression were almost doubled (+ 91% and +125%, respectively). MiRNA microarray identified upregulation of miRNA-503, which targets RAF1 and thereby controls KCNN4-expression via disinhibition of the Ras/Raf/MEK/ ERK-cascade. This data show a) a profound upregulation of KCNN4 in stimulated fibroblast and b) identifies miR-503 as a regulator of KCNN4 expression."	"Comparison of protein expression between formalin-fixed core-cut biopsies and surgical excision specimens using a novel multiplex approach. We evaluated whether multiplex protein quantification using antibody bar-coding with photocleavable oligonucleotides (NanoString) can be applied to evaluate protein expression in breast cancer FFPE specimens. We also assessed whether diagnostic core-cuts fixed immediately at time of procedures and surgical excision sections from routinely fixed breast cancers are affected by the same fixation related differences noted using immunohistochemistry (IHC). The expression of 26 proteins was analysed using NanoString technology in 16 pairs of FFPE breast cancer core-cuts and surgical excisions. The measurements yielded were compared with those by IHC on Ki67, PgR and HER2 biomarkers and pAKT and pERK1/2 phosphorylated proteins. When considered irrespective of sample type, expression measured by the two methods was strongly correlated for all markers (p &lt; 0.001; ρ = 0.69-0.88). When core-cuts and excisions were evaluated separately, the correlations between NanoString and IHC were weaker but significant except for pAKT in excisions. Surgical excisions showed lower levels of 8/12 phosphoproteins and higher levels of 4/13 non-phosphorylated proteins in comparison to core-cuts (p &lt; 0.01). Reduced p4EBP1, pAMPKa, pRPS6 and pRAF1 immunogenicity in excisions was correlated with tumour size and mastectomy specimens showed lower p4EBP1 and pRPS6 expression than lumpectomy (p &lt; 0.05). Our study supports the validity of the new multiplex approach to protein analysis but indicates that, as with IHC, caution is necessary for the analysis in excisions particularly of phosphoproteins. The specimen type, tumour size and surgery type may lead to biases in the quantitative analysis of many proteins of biologic and clinical interest in excision specimens."	"Prevalence of pathogenic and likely pathogenic variants in the RASopathy genes in patients who have had panel testing for cardiomyopathy. RASopathies are a group of developmental disorders caused by pathogenic variants in the RAS-MAPK pathway. Cardiomyopathy is a major feature of this group of disorders, specifically hypertrophic cardiomyopathy (HCM). HCM can be the first presenting feature in individuals with RASopathies. We conducted a retrospective study of all individuals who have had a cardiomyopathy gene panel ordered through our institution to determine the prevalence of pathogenic or likely pathogenic variants in RAS pathway genes in individuals with cardiomyopathy. We evaluated variants in the following genes: BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NF1, NRAS, PTPN11, RAF1, SHOC2, and SOS1. We reviewed 74 cases with cardiomyopathy, including 32 with HCM, 24 with dilated cardiomyopathy (DCM), nine with both left ventricular noncompaction (LVNC) and DCM, four with LVNC only, two with arrhythmogenic right ventricular cardiomyopathy (ARVC) and three with unspecified cardiomyopathy. We identified four patients (5.41%) with pathogenic or likely pathogenic variants in HRAS, PTPN11 and RAF1 (two individuals). Indication for testing for all four individuals was HCM. The prevalence of pathogenic or likely pathogenic variants in RASopathy genes in our HCM patient cohort is 12.5% (4/32). We conclude that the RASopathy genes should be included on multi-gene panels for cardiomyopathy to increase diagnostic yield for individuals with HCM."	"MicroRNA-143 is Associated With Pathological Complete Response and Regulates Multiple Signaling Proteins in Breast Cancer. Almost 55% to 80% of patients with breast cancer have an unfavorable pathological complete response to chemotherapy. MicroRNAs are small noncoding RNAs involved in cancer progression; however, their utility as predictors of pathological complete response to neoadjuvant chemotherapy is unclear. Here, we investigated if miR-143 could discriminate between pathological complete response and no-polymerase chain reaction of patients with locally advanced triple negative breast cancer that have received a fluorouracil-cisplatin/paclitaxel-based neoadjuvant treatment. Data showed that miR-143 exhibited a significant low expression ( P &lt; .0006) in patients that achieved pathological complete response in comparison to nonresponder group. Receiver operating characteristic curve analysis suggested that miR-143 could be a good predictor of pathological complete response (area under curve = 0.849, P &lt; .0006). Moreover, Kaplan-Meier analysis indicated that before neoadjuvant therapy low levels of miR-143 were associated to increased disease free survival. To gain insights into cellular functions of miR-143, we firstly showed that miR-143 was severely repressed in breast cancer cell lines and tumors in comparison to normal mammary cells and tissues. Ectopic restoration of miR-143 using RNA mimics inhibited both cell proliferation and migration and sensitized breast cancer cells to cisplatin therapy in vitro. To decipher the signaling networks regulated by miR-143, we used a high-throughput enzyme-linked immunosorbent assay-based phosphorylation antibody array. Phospho-proteomic profiling revealed that miR-143 coordinately reduced the protein levels and phosphorylation status of multiple oncoproteins involved in AKT, WNT/β-catenin, SAPK/JNK, FAK, and JAK/STAT signaling pathways. Moreover, low miR-143 and high GSK3-β, RAF1, paxillin, and p21CIP1 expression levels in a large cohort of patients with breast cancer were associated with worst outcome. In summary, miR-143 could be a potential predictor of response to neoadjuvant therapy and it may function as a divergent regulator of diverse signaling networks to suppress cell proliferation and migration in breast cancer."	"DA-Raf, a dominant-negative regulator of the Ras-ERK pathway, is essential for skeletal myocyte differentiation including myoblast fusion and apoptosis. Ras-activated ERK pathway (Raf-MEK-ERK phosphorylation cascade) regulates a variety of cellular responses including cell proliferation, differentiation, survival, and apoptosis. DA-Raf1 (DA-Raf) is a splicing variant of A-Raf and contains the Ras-binding domain but lacks the kinase domain. Accordingly, DA-Raf antagonizes the Ras-ERK pathway in a dominant-negative manner. Here we show that DA-Raf plays essential roles in skeletal myocyte differentiation including myoblast fusion and in apoptosis, which are suppressed by the Ras-ERK pathway. Expression of DA-Raf was highly induced in C2C12 skeletal myocytes in a low serum concentration of differentiation condition and in NIH3T3 fibroblasts under a serum starvation apoptosis-inducing condition. Stable knockdown of DA-Raf resulted in suppression of muscle-specific gene expression, myoblast fusion, and apoptosis. In contrast, exogenous overexpression of DA-Raf prominently caused apoptosis. DA-Raf induces apoptosis by preventing ERK-RSK-mediated inhibitory phosphorylation of Bad. Although it has been reported that apoptosis triggers myoblast fusion, DA-Raf-induced apoptosis was not involved in myoblast fusion in C2C12 cells. These results imply that suppression of the Ras-ERK pathway by DA-Raf is essential for both myocyte differentiation including myoblast fusion and apoptosis but that apoptosis is not a prerequisite for myoblast fusion."	"Spindle cell tumour with S100 and CD34 co-expression showing PDZRN3-RAF1 rearrangement - a recently described entity. NA"	"Clinical and mutation profile of pediatric patients with RASopathy-associated hypertrophic cardiomyopathy: results from a Chinese cohort. The RASopathies are a class of developmental disorders caused by germline mutations in the RAS-mitogen-activated protein kinase (MAPK) pathway. Hypertrophic cardiomyopathy (HCM) has been frequently described in children with RASopathy, but only a minority of patients have received formal genotyping. The purpose of this study was to evaluate the genetic basis and clinical outcome of pediatric patients with RASopathy-associated HCM. We retrospectively reviewed the mutation spectrum and clinical outcome of all the patients with RASopathy derived from 168 pediatric HCM cases referred to our institution between January 2012 and July 2018. A heterozygous missense mutation in one of known RASopathy genes was identified in 46 unrelated children with HCM. Mutations in the PTPN11 gene were the most prevalent (19/46); this was followed by mutations in RAF1 (11/46), KRAS (5/46), RIT1 (4/46), BRAF (3/46), SOS1 (2/46), HRAS (1/46), and SHOC2 (1/46). Moreover, two compound heterozygous missense mutations in the LZTR1 gene were identified in one patient with the Noonan syndrome phenotype and HCM. The median age at the diagnosis of HCM was 3.0 months (range 0 months to 8.1 years). Twenty-one of the patients had significant left ventricular outflow tract obstruction and 32 had concomitant congenital heart disease. Three patients with a mutation in exon 13 of the PTPN11 gene died of cardiac failure at the ages of 3.0, 3.5, and 6.0 months. The remaining 44 patients were alive after an average follow-up time of 3.9 years (0.5 to 17.1 years, median 2.9 years) from the initial diagnosis of HCM, including 5 patients with spontaneous regression of their cardiac hypertrophy. RASopathy-associated HCM is a heterogeneous genetic condition characterized by early-onset cardiac hypertrophy and a high prevalence of co-existing congenital heart disease, which is most frequently related to specific mutations in the PTPN11 gene. Rapidly progressive HCM, resulting in an early death, is uncommon in RASopathy patients except those with specific mutations in exon 13 of the PTPN11 gene."	"Systematically Characterizing Chemical Profile and Potential Mechanisms of Qingre Lidan Decoction Acting on Cholelithiasis by Integrating UHPLC-QTOF-MS and Network Target Analysis. Qingre Lidan Decoction (QRLDD), a classic precompounded prescription, is widely used as an effective treatment for cholelithiasis clinically. However, its chemical profile and mechanism have not been characterized and elucidated. In the present study, a rapid, sensitive, and reliable ultraperformance liquid chromatography coupled with quadrupole time-of-flight mass spectrometry method was established for comprehensively identifying the major constituents in QRLDD. Furthermore, a network pharmacology strategy based on the chemical profile was applied to clarify the synergetic mechanism. A total of 72 compounds containing flavonoids, terpenes, phenolic acid, anthraquinones, phenethylalchohol glycosides, and other miscellaneous compounds were identified, respectively. 410 disease genes, 432 compound targets, and 71 related pathways based on cholelithiasis-related and compound-related targets databases as well as related pathways predicted by the Kyoto Encyclopedia of Genes and Genomes database were achieved. Among these pathways and genes, pathway in cancer and MAPK signaling pathway may play an important role in the development of cholelithiasis. EGFR may be a crucial target in the conversion of gallstones to gallbladder carcinoma. Regulation of PRKCB/RAF1/MAP2K1/MAPK1 is associated with cell proliferation and differentiation. Thus, the fingerprint coupled with network pharmacology analysis could contribute to simplifying the complex system and providing directions for further research of QRLDD."	"Predicting responses to platin chemotherapy agents with biochemically-inspired machine learning. The selection of effective genes that accurately predict chemotherapy responses might improve cancer outcomes. We compare optimized gene signatures for cisplatin, carboplatin, and oxaliplatin responses in the same cell lines and validate each signature using data from patients with cancer. Supervised support vector machine learning is used to derive gene sets whose expression is related to the cell line GI50 values by backwards feature selection with cross-validation. Specific genes and functional pathways distinguishing sensitive from resistant cell lines are identified by contrasting signatures obtained at extreme and median GI50 thresholds. Ensembles of gene signatures at different thresholds are combined to reduce the dependence on specific GI50 values for predicting drug responses. The most accurate gene signatures for each platin are: cisplatin: BARD1, BCL2, BCL2L1, CDKN2C, FAAP24, FEN1, MAP3K1, MAPK13, MAPK3, NFKB1, NFKB2, SLC22A5, SLC31A2, TLR4, and TWIST1; carboplatin: AKT1, EIF3K, ERCC1, GNGT1, GSR, MTHFR, NEDD4L, NLRP1, NRAS, RAF1, SGK1, TIGD1, TP53, VEGFB, and VEGFC; and oxaliplatin: BRAF, FCGR2A, IGF1, MSH2, NAGK, NFE2L2, NQO1, PANK3, SLC47A1, SLCO1B1, and UGT1A1. Data from The Cancer Genome Atlas (TCGA) patients with bladder, ovarian, and colorectal cancer were used to test the cisplatin, carboplatin, and oxaliplatin signatures, resulting in 71.0%, 60.2%, and 54.5% accuracies in predicting disease recurrence and 59%, 61%, and 72% accuracies in predicting remission, respectively. One cisplatin signature predicted 100% of recurrence in non-smoking patients with bladder cancer (57% disease-free; N = 19), and 79% recurrence in smokers (62% disease-free; N = 35). This approach should be adaptable to other studies of chemotherapy responses, regardless of the drug or cancer types."	"Epidermal growth factor receptor controls glycogen phosphorylase in T cells through small GTPases of the RAS family. We recently uncovered a regulatory pathway of the muscle isoform of glycogen phosphorylase (PYGM) that plays an important role in regulating immune function in T cells. Here, using various enzymatic, pulldown, and immunoprecipitation assays, we describe signaling cross-talk between the small GTPases RAS and RAP1A, member of RAS oncogene family (RAP1) in human Kit 225 lymphoid cells, which, in turn, is regulated by the epidermal growth factor receptor (EGFR). We found that this communication bridge is essential for glycogen phosphorylase (PYG) activation through the canonical pathway because this enzyme is inactive in the absence of adenylyl cyclase type 6 (ADCY6). PYG activation required stimulation of both exchange protein directly activated by cAMP 2 (EPAC2) and RAP1 via RAS and ADCY6 phosphorylation, with the latter being mediated by Raf-1 proto-oncogene, Ser/Thr kinase (RAF1). Consistent with this model, PYG activation was EGFR-dependent and may be initiated by the constitutively active form of RAS. Consequently, PYG activation in Kit 225 T cells could be blocked with specific inhibitors of RAS, EPAC, RAP1, RAF1, ADCY6, and cAMP-dependent protein kinase. Our results establish a new paradigm for the mechanism of PYG activation, which depends on the type of receptor involved."	"Mutational profile of papillary thyroid microcarcinoma with extensive lymph node metastasis. Papillary thyroid microcarcinoma (PTMC) has excellent outcomes, but extensive lymph node (LN) metastasis can be associated with fatal outcomes. We evaluated the mutational profiles of primary tumors and their metastatic LNs of PTMCs with extensive lateral cervical LN metastases. Formalin-fixed, paraffin-embedded archival samples from 16 sets of normal thyroid tissue, the primary PTMC, and the largest metastatic LN were used for targeted sequencing. A total of seven somatic variants were confirmed in the PTMCs compared to the normal tissue. The BRAF<sup>V600E</sup> mutation was the most common and seen in 12 primary tumors (75%) and 11 metastatic LNs (69%). A nonsense mutation in AR and an in-frame deletion in ACVR2A were detected in one primary tumor and its metastatic LN (6%). Missense mutations in KMT2A, RAF1, and ROS1 were detected in one primary tumor (3%). A frameshift deletion mutation in JAK2 was detected in a metastatic LN (3%). In PTMCs without the BRAF mutation, an ALK and RET rearrangement (one PTMC and its metastatic LN, 6%) was detected. In one patient, the BRAF mutation was detected in the primary tumor, but only a RET rearrangement was detected in its metastatic LN. No mutations were detected in two patients. The mutational frequency of PTMCs was really low, even in those with extensive LN metastasis. The mutational status of the primary tumor and its metastatic LNs were not significantly different, and this suggests a minor role for genetic alterations in the process of LN metastasis in PTMC."	"MicroRNA-7 inhibits melatonin synthesis by acting as a linking molecule between leptin and norepinephrine signaling pathways in pig pineal gland. MicroRNAs, including microRNA-7 (miR-7), are important modulators of numerous gene expressions and the related biological processes. Melatonin is a key hormone regulating daily and seasonal rhythms, in which a variety of positive and negative regulatory factors, such as norepinephrine (NE) and leptin, are involved. However, the interactions among these factors and the mechanisms remain to be elucidated. The aims of the present study were to identify the functions and the related mechanisms of miR-7 in regulating melatonin synthesis and secretion through in vitro and in vivo experiments in pineal gland of pigs, which is an important animal model for agricultural and biomedical studies. Our results firstly show that miR-7 is specifically expressed in porcine pinealocytes and negatively regulates melatonin synthesis. The further functional studies show that the dynamic expression levels of miR-7 are contrary to the melatonin levels throughout the day, and the forced inhibition of endogenous miR-7 in porcine pinealocytes sharply increases arylalkylamine N-acetyltransferase (AANAT) expression by 80.0% (P = 0.0031) and melatonin levels by 81.0% (P = 0.0421), whereas miR-7 over-expression down-regulates AANAT expression by 38.6% (P = 0.0004) and melatonin levels by 37.6% (P = 0.0212). In addition, the miR-7 expression is up-regulated by leptin through the JAK/STAT3 signaling pathway, and the in vivo intracerebroventricular injection of leptin increases miR-7 expression by 80.0% (P = 0.0044) in porcine pineal glands and reduces melatonin levels by 57.1% (P = 0.0060) compared with the controls. This functional inhibition of melatonin synthesis by miR-7 is accomplished by its binding to the 3'-UTR of Raf1. Further, our results demonstrate that the RAF1/MEK/ERK signaling pathway mediates NE-induced AANAT expression, whereas leptin attenuates NE's function through miR-7. Taken together, the results demonstrated that leptin activates the JAK/STAT3 signaling pathway to increase the expression of miR-7, which acts as a negative regulatory molecule inhibiting NE-activated RAF1/MEK/ERK signaling pathway by targeting Raf1, resulting in decreased AANAT expression and melatonin synthesis. These findings suggest that miR-7 is a novel negative regulator of melatonin synthesis and links leptin- and NE-mediated signaling pathways in porcine pineal glands, which will contribute to our understanding in the establishment of the biological rhythms resulting from melatonin."	"FBXL19-AS1 exerts oncogenic function by sponging miR-431-5p to regulate RAF1 expression in lung cancer. Lung cancer is the leading cause of cancer-related mortality worldwide, characterized by uncontrolled proliferation and metastasis of lung cancer cells. Tumor angiogenesis plays a key role in proliferation and metastasis in cancers, and is an essential component in microenvironment. It has been reported that long non-coding RNA FBXL19-AS1 plays an oncogenic role in colorectal cancer. However, the molecular mechanism of FBXL19-AS1 in lung cancer has not been fully elucidated. In the present study, we found that FBXL19-AS1 expression was up-regulated in lung cancer tissues and cell lines. FBXL19-AS1 knockdown inhibited cell proliferation, migration, invasion, and angiogenesis in lung cancer cells. Molecular mechanism exploration uncovered that FBXL19-AS1 acted as a molecular sponge of miR-431-5p and that RAF1 was a downstream target of miR-431-5p in lung cancer. Moreover, there was a negative association between miR-431-5p expression and FBXL19-AS1 or RAF1 expression in tumor tissues. Through rescue experiments, we discovered that overexpression of RAF1 partially rescued FBXL19-AS1 knockdown-mediated inhibition of angiogenesis and progression in lung cancer. Together, these results indicated that FBXL19-AS1 was involved in progression and angiogenesis in lung cancer by targeting miR-431-5p/RAF1 axis, which provided a new insight into the therapeutic strategies of lung cancer."	"Polymorphisms in RAS/RAF/MEK/ERK Pathway Are Associated with Gastric Cancer. The RAS/RAF/MEK/ERK pathway regulates certain cellular functions, including cell proliferation, differentiation, survival, and apoptosis. Dysregulation of this pathway leads to the occurrence and progression of cancers mainly by somatic mutations. This study aimed to assess if polymorphisms of the RAS/RAF/MEK/ERK pathway are associated with gastric cancer. A case-control study of 242 gastric cancer patients and 242 controls was performed to assess the association of 27 single nucleotide polymorphisms (SNPs) in the RAS/RAF/MEK/ERK pathway genes with gastric cancer. Analyses performed under the additive model (allele) showed four significantly associated SNPs: RAF1 rs3729931 (Odds ratio (OR) = 1.54, 95%, confidence interval (CI): 1.20⁻1.98, p-value = 7.95 × 10<sup>-4</sup>), HRAS rs45604736 (OR = 1.60, 95% CI: 1.16⁻2.22, p-value = 4.68 × 10<sup>-3</sup>), MAPK1 rs2283792 (OR = 1.45, 95% CI: 1.12⁻1.87, p-value = 4.91 × 10<sup>-3</sup>), and MAPK1 rs9610417 (OR = 0.60, 95% CI: 0.42⁻0.87, p-value = 6.64 × 10<sup>-3</sup>). Functional annotation suggested that those variants or their proxy variants may have a functional effect. In conclusion, this study suggests that RAF1 rs3729931, HRAS rs45604736, MAPK1 rs2283792, and MAPK1 rs9610417 are associated with gastric cancer."	"Localization dynamics of endogenous fluorescently labeled RAF1 in EGF-stimulated cells. Activation of the epidermal growth factor (EGF) receptor (EGFR) at the cell surface initiates signaling through the RAS-RAF-MAPK/ERK1/2 pathway and receptor endocytosis. Whether this signaling continues from endosomes remains unclear, because RAS is predominantly located on the plasma membrane, and the localization of endogenous RAF kinases, downstream effectors of RAS, is not defined. To examine RAF localization, we labeled endogenous RAF1 with mVenus using gene editing. From 10 to 15% of RAF1-mVenus (&lt;2000 molecules/cell), which was initially entirely cytosolic, transiently translocated to the plasma membrane after EGF stimulation. Following an early burst of translocation, the membrane-associated RAF1-mVenus was undetectable by microscopy or subcellular fractionation, and this pool was estimated to be &lt;200 molecules per cell. In contrast, persistent EGF-dependent translocation of RAF1-mVenus to the plasma membrane was driven by the RAF inhibitor sorafenib, which increases the affinity of Ras-GTP:RAF1 interactions. RAF1-mVenus was not found in EGFR-containing endosomes under any conditions. Computational modeling of RAF1 dynamics revealed that RAF1 membrane abundance is controlled most prominently by association and dissociation rates from RAS-GTP and by RAS-GTP concentration. The model further suggested that the relatively protracted activation of the RAF-MEK1/2-ERK1/2 module, in comparison with RAF1 membrane localization, may involve multiple rounds of cytosolic RAF1 rebinding to active RAS at the membrane."	"Citron kinase (CIT-K) promotes aggressiveness and tumorigenesis of breast cancer cells in vitro and in vivo: preliminary study of the underlying mechanism. Citron kinase (CIT-K), as a key Rho effector, functions to maintain proper structure of the midbody during cell mitosis. This study assessed CIT-K expression and its role in breast cancer cells. Paraffin-embedded breast cancer and para-tumor tissues from 43 invasive breast cancer patients and 33 normal mammary glands were collected for immunohistochemistry. CIT-K expression knockdown was achieved using lentivirus carrying CIT-K shRNA in a wide range of breast cancer cell lines. Cells were then subjected to Western blot, qRT-PCR, cell proliferation, colony formation, transwell, and flow cytometric assays. The tumorigenicity of CIT-K knocked-down breast cancer cells was assessed using the nude mouse xenograft assay. Microarray analysis was performed to elucidate the underlying gene regulation after CIT-K silencing. CIT-K protein was overexpressed in breast cancer tissues, which is associated with advanced tumor stage, HER-2 expression and Ki-67 expression, whereas knockdown of CIT-K expression reduced breast cancer cell proliferation and colony formation, but promoted tumor cell apoptosis and cell-cycle arrest. Knockdown of CIT-K expression also inhibited breast cancer cell migration and invasion capacity. Moreover, CIT-K knockdown suppressed the tumorigenicity of breast cancer cells in nude mice. Molecularly, the expression of a variety of signaling genes, such as cyclin D1, EGFR, JAK1, TGF-α, PTK2, RAF1, RALB, SOS1, mTOR, and PTGS2, were altered after CIT-K knockdown. This study demonstrated that CIT-K is associated with aggressive breast cancer behavior and targeting CIT-K may be a novel strategy for the future control of breast cancer."	"Quantitative biophysical analysis defines key components modulating recruitment of the GTPase KRAS to the plasma membrane. The gene encoding the GTPase KRAS is frequently mutated in pancreatic, lung, and colorectal cancers. The KRAS fraction in the plasma membrane (PM) correlates with activation of the mitogen-activated protein kinase (MAPK) pathway and subsequent cellular proliferation. Understanding KRAS's interaction with the PM is challenging given the complexity of the cellular environment. To gain insight into key components necessary for KRAS signal transduction at the PM, we used synthetic membranes such as liposomes and giant unilamellar vesicles. Using surface plasmon resonance (SPR) spectroscopy, we demonstrated that KRAS and Raf-1 proto-oncogene Ser/Thr kinase (RAF1) domains interact with these membranes primarily through electrostatic interactions with negatively charged lipids reinforced by additional interactions involving phosphatidyl ethanolamine and cholesterol. We found that the RAF1 region spanning RBD through CRD (RBDCRD) interacts with the membrane significantly more strongly than the isolated RBD or CRD domains and synergizes KRAS partitioning to the membrane. We also found that calmodulin and phosphodiesterase 6 delta (PDE6δ), but not galectin3 previously proposed to directly interact with KRAS, passively sequester KRAS and prevent it from partitioning into the PM. RAF1 RBDCRD interacted with membranes preferentially at nonraft lipid domains. Moreover, a C-terminal O-methylation was crucial for KRAS membrane localization. These results contribute to a better understanding of how the KRAS-membrane interaction is tuned by multiple factors whose identification could inform drug discovery efforts to disrupt this critical interaction in diseases such as cancer."	"A Positive Feedback Loop of SLP2 Activates MAPK Signaling Pathway to Promote Gastric Cancer Progression. Rationale: This study is to validate the clinicopathologic significance and potential prognostic value of SLP2 in gastric cancer (GC), to investigate the biological function and regulation mechanism of SLP2, and to explore potential therapeutic strategies for GC. Methods: The expression of SLP2 in GC tissues from two cohorts was examined by IHC. The biological function and regulation mechanism of SLP2 and PHB was validated via loss-of-function or gain-of-function experiments. In vitro proliferation detection was used to evaluate the therapeutic effects of Sorafenib. Results: We validated that SLP2 was significantly elevated in GC tissues and its elevation was associated with poor prognosis of patients. Loss of SLP2 drastically suppressed the proliferation of GC cells and inhibited the tumor growth, while SLP2 overexpression promoted the progression of GC. Mechanistically, SLP2 competed against E3 ubiquitin ligase SKP2 to bind with PHB and stabilized its expression. Loss of SLP2 significantly suppressed phosphorylation of Raf1, MEK1/2, ERK1/2 and ELK1. Furthermore, phosphorylated ELK1 could in turn activate transcription of SLP2. Finally, we demonstrated that a Raf1 inhibitor, Sorafenib, was sufficient to inhibit the proliferation of GC cells. Conclusion: Our findings demonstrated a positive feedback loop of SLP2 which leads to acceleration of tumor progression and poor survival of GC patients. This finding also provided evidence for the reason of SLP2 elevation. Moreover, we found that sorafenib might be a potential therapeutic drug for GC and disrupting the interaction between SLP2 and PHB might also serve as a potential therapeutic target in GC."	"Prediction of sorafenib treatment-related gene expression for hepatocellular carcinoma: preoperative MRI and histopathological correlation. To investigate the feasibility of prediction for targeted therapy-related gene expression in hepatocellular carcinoma (HCC) using preoperative gadoxetic acid-enhanced magnetic resonance imaging (MRI). Ninety-one patients (81 men, mean age 53.9 ± 12 years) with solitary HCC who underwent preoperative enhanced MRI were retrospectively analyzed. Features including tumor size, signal homogeneity, tumor capsule, tumor margin, intratumoral vessels, peritumor enhancement, peritumor hypointensity, signal intensity ratio on DWI, T1 relaxation times, and the reduction rate between pre- and post-contrast enhancement images were assessed. The operation and histopathological evaluation were performed within 2 weeks after MRI examination (mean time 7 days). The expression levels of BRAF, RAF1, VEGFR2, and VEGFR3 were evaluated. The associations between these imaging features and gene expression levels were investigated. Tumor incomplete capsules or non-capsules (p = 0.001) and intratumoral vessels (p = 0.002) were significantly associated with BRAF expression, and tumor incomplete capsules or non-capsules (p = 0.001) and intratumoral vessels (p = 0.013) with RAF1 expression. There was no significant association between the expression of VEGFR2, VEGFR3, and all examined MRI features. Multivariate logistic regression showed that incomplete tumor capsule (p = 0.002) and non-capsule (p = 0.004) were independent risk factors of HCC with high BRAF expression; incomplete tumor capsule (p &lt; 0.001) and non-capsule (p = 0.040) were independent risk factors of HCC with high RAF1 expression. The presence of incomplete capsule or intratumoral vessels and the absence of capsule are potential indicators of high BRAF and RAF1 expression. Gadoxetic acid-enhanced MRI may facilitate the choice of gene therapy for patients with HCC. • Incomplete tumor capsule and non-capsule were independent risk factors of HCC with high BRAF and RAF1 expression. • The presence of intratumoral vessels was a potential indicator of high BRAF and RAF1 expression. • Gadoxetic acid-enhanced MRI may be a predictor of efficacy of treatment with sorafenib."	"Protein kinase C-α is upregulated by IMP1 in melanoma and is linked to poor survival. The oncofetal mRNA-binding protein, IMP1 or insulin-like growth factor-2 mRNA-binding protein 1 (IGF2BP1), promotes the overexpression of several oncogenic proteins by binding to and stabilizing their mRNAs. IMP1 is frequently overexpressed in melanoma and is associated with a poor prognosis, but the full spectrum of IMP1 target transcripts remains unknown. Here, we report the identification of protein kinase C-α (PKCα), as a novel molecular target of IMP1. Overexpression of IMP1 resulted in increased levels of PKCα, while RNAi knockdown of IMP1 resulted in decreased PKCα mRNA stability, PKCα protein levels, and MAPK/ERK activation. In addition to IMP1 acting as a positive regulator of PKCα mRNA, we also report the identification of miR-340 as a negative regulator of PKCα mRNA. In melanoma cancer cells, inhibition of miR-340 led to increased PKCα protein levels. PKCα plays important roles in numerous signaling pathways including the MAPK/ERK signaling pathway. PKCα activates RAF1, which in turn activates MEK1, and activates downstream transcriptional targets of MAPK through activation of JNK signaling. Together, these pathways provide a way to activate MAPK signaling downstream of BRAF and MEK1 inhibitors, which are commonly used to treat melanoma. Analysis of 117 melanoma tumors samples showed that overexpression of PKCα is associated with poorer overall survival. In patients harboring BRAF or NRAS mutations, PKCα overexpression is associated with an 11-fold increased risk of death. Thus, PKCα mRNA is a novel target of IMP1, which is commonly overexpressed in melanoma and is linked to poorer overall survival."	"Proto-oncogenes in a eukaryotic unicellular organism play essential roles in plasmodial growth in host cells. The eukaryotic unicellular protist Plasmodiophora brassicae is an endocellular parasite of cruciferous plants. In host cortical cells, this protist develops a unicellular structure that is termed the plasmodium. The plasmodium is actually a multinucleated cell, which subsequently splits and forms resting spores. The mechanism for the growth of this endocellular parasite in host cell is unclear. Here, combining de novo genome sequence and transcriptome analysis of strain ZJ-1, we identified top five significant enriched KEGG pathways of differentially expressed genes (DEGs), namely translation, cell growth and death, cell communication, cell motility and cancers. We detected 171 proto-oncogenes from the genome of P. brassicae that were implicated in cancer-related pathways, of which 46 were differential expression genes. Three predicted proto-oncogenes (Pb-Raf1, Pb-Raf2, and Pb-MYB), which showed homology to the human proto-oncogenes Raf and MYB, were specifically activated during the plasmodial growth in host cortical cells, demonstrating their involvement in the multinucleate development stage of the unicellular protist organism. Gene networks involved in the tumorigenic-related signaling transduction pathways and the activation of 12 core genes were identified. Inhibition of phosphoinositol-3-kinase relieved the clubroot symptom and significantly suppressed the development process of plasmodia. Proto-oncogene-related regulatory mechanisms play an important role in the plasmodial growth of P. brassicae."	"YHp as a highly stable, hyper-copy, hyper-expression plasmid constructed using a full 2-μm circle sequence in cir<sup>0</sup> strains of Saccharomyces cerevisiae. In the yeast Saccharomyces cerevisiae, the yeast episomal plasmid (YEp), containing a partial sequence from a natural 2-μm plasmid, has been frequently used to induce high levels of gene expression. In this study, we used Japanese sake yeast natural cir<sup>0</sup> strain as a host for constructing an entire 2-μm plasmid with an expression construct using the three-fragment gap-repair method without Escherichia coli manipulation. The 2-μm plasmid contains two long inverted repeats, which is problematic for the amplification by polymerase chain reaction. Therefore, we amplified it by dividing into two fragments, each containing a single repeat together with an overlapping sequence for homologous recombination. TDH3 promoter-driven yEmRFP (TDH3p-yEmRFP) and the URA3 were used as a reporter gene and a selection marker, respectively, and inserted at the 3' end of the RAF1 gene on the 2-μm plasmid. The three fragments were combined and used for the transformation of sake yeast cir<sup>0</sup> ura3<sup>-</sup> strain. The resulting transformant colonies showed a red or purple coloration, which was significantly stronger than that of the cells transformed with YEp-TDH3p-yEmRFP. The 2-μm transformants were cultured in YPD medium and observed by fluorescence microscopy. Almost all cells showed strong fluorescence, suggesting that the plasmid was preserved during nonselective culture conditions. The constructed plasmid maintained a high copy state similar to that of the natural 2-μm plasmid, and the red fluorescent protein expression was 54 fold compared with the chromosomal integrant. This vector is named YHp, the Yeast Hyper expression plasmid."	"hsa_circRNA_0006528 as a competing endogenous RNA promotes human breast cancer progression by sponging miR-7-5p and activating the MAPK/ERK signaling pathway. Emerging research has indicated that circular RNAs (circRNAs), a novel class of non-coding RNAs, play a vital role in human tumorigenesis and progression. Our previous results suggested that hsa_circ_0006528 (circ_0006528), a circRNA with an unknown function, mediates adriamycin resistance in human breast cancer cells. However, the role of circ_0006528 in breast cancer progression remains unknown. Here, we investigated the probable involvement of circ_0006528 in breast cancer. We analyzed a cohort of 97 patients and found that circ_0006528 expression was significantly upregulated in human breast cancer tissues compared with that in adjacent non-tumorous tissues and was significantly associated with advanced tumor-node-metastasis (TNM) stage and poor prognosis. In addition, we found that in breast cancer cells, circ_0006528 could promote DNA synthesis and cell proliferation, invasion, and migration. Downregulating circ_0006528 induced G2 phase arrest and cell apoptosis. Further mechanistic studies revealed that circ_0006528 could sponge endogenous miR-7-5p and inhibit its activity. We also identified Raf1, which activates the MAPK/ERK signaling pathway, as a target of miR-7-5p and determined that circ_0006528 promotes breast cancer growth, invasion, and migration by promoting the expression of Raf1 and activates the MAPK/ERK pathway. Thus, this study provides the first evidence of the circ_0006528/miR-7-5p/Raf1/MEK/ERK regulatory network in the development of breast cancer and suggests that circ_0006528 is a potential therapeutic target and prognostic predictor for breast cancer."	"Spinal Pleomorphic Xanthoastrocytoma With a QKI-RAF1 Fusion. Pleomorphic xanthoastrocytoma (PXA) is a slow-growing neoplasm that predominantly affects the pediatric and young adult population. This neoplasm has a good prognosis, with a median 10-year survival rate of 70%. The majority of tumors are supratentorial and arise in the temporal lobe, while spinal tumors are extremely rare, with only 8 reported cases. Molecular perturbations involving the MAPK/ERK signaling pathway have been described in PXAs. The most common mutation is BRAF V600E in 60%-80% of cases. Other mechanisms activating this pathway in the absence of this mutation are rare and include CRAF (RAF1) fusion genes. We report a PXA case in the cervical spinal cord of a 49-year-old man with slowly progressive coordination difficulties and extremity numbness. The tumor was negative for the V600E mutation, but 2 RNA sequencing platforms detected a QKI-RAF1 fusion (t(6; 3)(q26; p25)), which has not been previously reported in PXAs. This fusion is known to activate MAPK/ERK and PI3K/mTOR signaling. Although first- and second-generation RAF inhibitors are predicted to be ineffective, this fusion may be targetable by the novel RAF inhibitor LY3009120 and to some extent by the MEK inhibitor trametinib. Genetic analysis to screen for MAPK/ERK pathway mutations is warranted on PXAs negative for the V600E mutation."	"Comparison of effectiveness of growth hormone therapy according to disease-causing genes in children with Noonan syndrome. To analyze the growth response to growth hormone (GH) therapy in prepubertal patients with Noonan syndrome (NS) harboring different genetic mutations. Twenty-three patients with prepubertal NS treated at Pusan National University Children's Hospital between March 2009 and July 2017 were enrolled. According to the disease-causing genes identified, the patients with NS were divided into 4 groups. Three groups were positive for mutations of the PTPN11, RAF1, and SOS1 genes. The five genes undetected (FGU) group was negative for PTPN11, RAF1, SOS1, KRAS, and BRAF gene mutations. The influence of genotype was retrospectively analyzed by comparing the growth parameters after GH therapy. The mean chronological age at the start of GH treatment was 5.85±2.67 years. At the beginning of the GH treatment, the height standard deviation score (SDS), growth velocity (GV), and lower levels of insulin-like growth factor-1 (IGF)-1 levels were not statistically different among the groups. All the 23 NS patients had significantly increased height SDS and serum IGF-1 level during the 3 years of treatment. GV was highest during the first year of treatment. During the 3 years of GH therapy, the PTPN11, RAF1, and SOS1 groups showed less improvement in height SDS, IGF-1 SDS, and GV, and less increase in bone age-to-chronological age ratio than the FGU group. The 3-year GH therapy in the 23 prepubertal patients with NS was effective in improving height SDS, GV, and serum IGF-1 levels. The FGU group showed a better response to recombinant human GH therapy than the PTPN11, RAF1, and SOS1 groups."	"Association of Target Therapy Gene Expression with Metastasizing of Clear-Cell Renal Cell Carcinoma. We analyzed association of the levels of VEGFA, RAF1, and mTOR gene expression in the tissue of clear-cell renal cell carcinoma (ccRCC) with tumor metastasizing. Significant association with metastases was found only for VEGFA gene: OR=6.641, 95%CI=2.111-20.696. The risk of metastasis associated with reduced expression of VEGFA gene - 2.467, 95%CI=1.238-4.915. An association of VEGFA gene expression with the time to the metastasis appearance was revealed (p=0.0005). Reduced expression of the VEGFA gene is associated with reduction of the time to metastasis appearance; the median of this time is shifted from 46 to 2 months. Analysis of tumor samples with reduced expression of the VEGFA gene revealed association of increased expression of RAF1 (p=0.003) and mTOR genes (p=0.038) with metastasis."	"Dual functions for OVAAL in initiation of RAF/MEK/ERK prosurvival signals and evasion of p27-mediated cellular senescence. Long noncoding RNAs (lncRNAs) function through a diverse array of mechanisms that are not presently fully understood. Here, we sought to find lncRNAs differentially regulated in cancer cells resistant to either TNF-related apoptosis-inducing ligand (TRAIL) or the Mcl-1 inhibitor UMI-77, agents that act through the extrinsic and intrinsic apoptotic pathways, respectively. This work identified a commonly up-regulated lncRNA, ovarian adenocarcinoma-amplified lncRNA (OVAAL), that conferred apoptotic resistance in multiple cancer types. Analysis of clinical samples revealed OVAAL expression was significantly increased in colorectal cancers and melanoma in comparison to the corresponding normal tissues. Functional investigations showed that OVAAL depletion significantly inhibited cancer cell proliferation and retarded tumor xenograft growth. Mechanically, OVAAL physically interacted with serine/threonine-protein kinase 3 (STK3), which, in turn, enhanced the binding between STK3 and Raf-1. The ternary complex OVAAL/STK3/Raf-1 enhanced the activation of the RAF protooncogene serine/threonine-protein kinase (RAF)/mitogen-activated protein kinase kinase 1 (MEK)/ERK signaling cascade, thus promoting c-Myc-mediated cell proliferation and Mcl-1-mediated cell survival. On the other hand, depletion of OVAAL triggered cellular senescence through polypyrimidine tract-binding protein 1 (PTBP1)-mediated p27 expression, which was regulated by competitive binding between OVAAL and p27 mRNA to PTBP1. Additionally, c-Myc was demonstrated to drive OVAAL transcription, indicating a positive feedback loop between c-Myc and OVAAL in controlling tumor growth. Taken together, these results reveal that OVAAL contributes to the survival of cancer cells through dual mechanisms controlling RAF/MEK/ERK signaling and p27-mediated cell senescence."	"GM1 Induced the inflammatory response related to the Raf-1/MEK1/2/ERK1/2 pathway in co-culture of pig mesenchymal stem cells with RAW264.7. Pig-human xenotransplantation can trigger cell-mediated immune responses. We explored the role of gangliosides in inflammation related to immune rejection in xenotransplantation. Co-culture of xenogeneic cells (pig-MSCs and RAW264.7) was used to emulate xenotransplantation conditions. MTT assay results indicated that cell viability was significantly decreased in pADMSCs co-cultured with RAW264.7 cells. GM1 and GM3 were highly expressed in pADMSCs co-cultured with RAW264.7 cells. pADMSCs co-cultured with RAW264.7 cells strongly expressed pro-inflammatory proteins such as COX-2, iNOS, p50, p65, pIκBα, and TNF-α. GM1-knockdown pADMSCs co-cultured with RAW 264.7 cells did not show significantly altered cell viability, but pro-inflammatory proteins were markedly inhibited. Co-culture of pADMSCs with RAW264.7 cells induced significant phosphorylation (p) of JNK1/2 and pERK1/2. However, pERK1/2 and pJNK1/2 were decreased and MEK1/2 and Raf1 were suppressed in GM1-knockdown pADMSCs co-cultured with RAW264.7 cells. Thus, the Raf-1/MEK1/2/ERK1/2 and JNK1/2 pathways were significantly upregulated in response to increases of GM1 in co-cultured xenogeneic cells. However, the inflammatory response was suppressed in co-culture of GM1-knockdown pADMSCs with RAW264.7 cells via down-regulation of the Raf-1/MEK1/2/ERK1/2 and JNK1/2 pathways. Therefore, the ganglioside GM1 appears to play a major role in the inflammatory response in xenotransplantation via the Raf-1/MEK1/2/ERK1/2 and JNK1/2 pathways."	"Aortic constriction induces hypertension and cardiac hypertrophy via (pro)renin receptor activation and the PLC‑β3 signaling pathway. The (pro)renin receptor [(P)RR] serves an important role in cardiovascular complications. However, the precise mechanisms of (P)RR in the heart remain obscure. The authors hypothesized that overexpression of (P)RR would be associated with activation of the relevant signal pathway which could lead to organ injury. The aim of the present study was to test the role of cardiac (P)RR and its potential signaling pathway components including phospholipase C (PLC), protein kinase C (PKC), extracellular signal‑regulated kinase (ERK)1/2 and Raf‑1 proto‑oncogene, serine/threonine kinase (Raf‑1). Hypertension and cardiac hypertrophy were induced by partial abdominal aortic ligation in Sprague‑Dawley rats. The expression levels of cardiac (P)RR, PLC‑β3, PKC, ERK1/2 and Raf‑1 were measured following administration of the handle region peptide (HRP) and PLC‑β3 inhibitor U73122. The expression of (P)RR and PLC‑β3 significantly increased in the left ventricle (P&lt;0.05). Levels of PKC‑α, ERK1/2 and Raf‑1 in the heart rose significantly (P&lt;0.05). HRP and U73122 significantly decreased the levels of cardiac (P)RR and PLC‑β3. Furthermore, levels of PKC‑α, ERK1/2 and Raf‑1 were also decreased (P&lt;0.05). Cardiac parameters, blood pressure and plasma Angiotensin (Ang) I and Ang II levels were altered significantly (P&lt;0.05). The results demonstrated that hypertension induced by aortic restriction activated the (P)RR in the heart. This action led to hypertension and cardiac hypertrophy via the (P)RR‑PLC‑β3‑PKC‑ERK1/2‑Raf‑1 signaling pathway. These results provide a mechanism by which elevated (P)RR levels in hypertension may contribute to the development of cardiac remodeling."	"CircRNA CDR1as/miR-7 signals promote tumor growth of osteosarcoma with a potential therapeutic and diagnostic value. The circular RNA (circRNA) antisense to the cerebellar degeneration-related protein 1 transcript (CDR1as)/micro RNA-7(miR-7) signal axis has been investigated in many diseases via regulation of the target genes of miR-7, which participates in the carcinogenesis and metastasis. However, the clinical role and function of CDR1as/miR-7 pathway in osteosarcoma (OS) remain to be identified. Noncancerous bone tissues (n=18) and OS tissues (n=38) were used to determine the expressions and roles of CDR1as and miR-7. We knocked down the expression of CDR1as via siRNAs in OS cell lines to analyze its function in vitro and in vivo. CDR1as was upregulated in OS tissues with significant diagnostic value (cutoff value: 1.613). OS patients with high tumor size, Enneking stage, and distant metastasis have high CDR1as levels, but the miR-7 as tumor suppressor negatively correlated with CDR1as. Inhibition of CDR1as in OS cell lines U2OS and MG63 with high CDR1as levels, leading to de-repressed miR-7 levels, impaired cell vitality and increased apoptosis and G1/S arrest in parallel with reduced ability of cell migration, which, however, could be restored by miR-7 inhibitor. Mechanistically, knockdown of CDR1as could restore the availability of miR-7 and inhibit the target genes of miR-7 including EGFR, CCNE1, PI3KCD, and RAF1. Moreover, CDR1as also upregulated N-cadherin and inhibited E-cadherin to promote the epithelial-mesenchymal transition via miR-7 for cell migration. CDR1as inhibition in vivo also induced tumor regression with decreased PCNA levels, and miR-7 inhibitor could reverse these effects via upregulation of EGFR, CCNE1, PI3KCD, and RAF1. The expressions of these genes were confirmed to be higher in CDR1as-high OS samples than in CDR1as-low OS samples. These findings suggested that the CDR1as/miR-7 signal axis could be the molecular target for the treatment of OS."	"Dermatological manifestations in Noonan syndrome: a prospective multicentric study of 129 patients positive for mutation. Data on dermatological manifestations of Noonan syndrome (NS) remain heterogeneous and are based on limited dermatological expertise. To describe the dermatological manifestations of NS, compare them with the literature findings, and test for dermatological phenotype-genotype correlations with or without the presence of PTPN11 mutations. We performed a large 4-year, prospective, multicentric, collaborative dermatological and genetic study. Overall, 129 patients with NS were enrolled, including 65 patients with PTPN11-NS, 34 patients with PTPN11-NS with multiple lentigines (NSML), and 30 patients with NS who had a mutation other than PTPN11. Easy bruising was the most frequent dermatological finding in PTPN11-NS, present in 53·8% of patients. Multiple lentigines and café-au-lait macules (n ≥ 3) were present in 94% and 80% of cases of NSML linked to specific mutations of PTPN11, respectively. Atypical forms of NSML could be associated with NS with RAF1 or NRAS mutations. In univariate analysis, patients without a PTPN11 mutation showed (i) a significantly higher frequency of keratinization disorders (P = 0·001), including keratosis pilaris (P = 0·005), ulerythema ophryogenes (P = 0·0001) and palmar and/or plantar hyperkeratosis (P = 0·06, trend association), and (ii) a significantly higher frequency of scarce scalp hair (P = 0·035) and scarce or absent eyelashes (P = 0·06, trend association) than those with PTPN11 mutations. The cutaneous phenotype of NS with a PTPN11 mutation is generally mild and nonspecific, whereas the absence of a PTPN11 mutation is associated with a high frequency of keratinization disorders and hair abnormalities."	"Modulation of vascular endothelial growth factor and mitogen-activated protein kinase-related pathway involved in extracorporeal shockwave therapy accelerate diabetic wound healing. Extracorporeal shockwave therapy (ESWT) has a significant positive effect to accelerate chronic wound healing. This study investigated whether the vascular endothelial growth factor (VEGF)-related pathway has involved in ESWT enhancement of diabetic wound healing. A dorsal skin defect (area, 6 × 5 cm) in a streptozotocin-induced diabetes rodent model was used. Thirty-two male Wistar rats were divided into four groups. Group I consisted of nondiabetic control; group II, diabetic control without treatment; group III, diabetic rats received ESWT; and group IV, rats received Avastin (a VEGF monoclonal antibody) on day 0 (post-wounding immediately) to day 7 and ESWT on day 3 and day 7. The wound healing was assessed clinically. The VEGF, endothelial nitric oxide synthase (eNOS), and Ki-67 were analyzed with immunohistochemical staining. The mRNA expression of mitogen-activated protein kinase-related genes was measured by real-time quantitative real-time polymerase chain reaction. The results revealed wound size was significantly reduced in the ESWT-treated rats as compared to the diabetic control (p &lt; 0.01). The positive effect of ESWT-increasing wound healing was significantly suppressed in pretreatment of the Avastin group. Histological findings revealed significant increase in neo-vessels in the ESWT group as compared to the control. In immunohistochemical stain, significant increases in VEGF, eNOS, and Ki-67 expressions were noted in the ESWT group as compared to that in controls. However, Avastin suppressed the shockwave effect and down-regulation of VEGF, eNOS, and Ki-67 expressions in the Avastin-ESWT group as compared to that in the ESWT alone group. We found that highly mRNA expression of Kras, Raf1, Mek1, Jnkk, Jnk, and Jun at early stage in the ESWT group, as compared to the diabetic control. These evidences indicated treatment with multiple sessions of ESWT significantly enhanced diabetic wound healing associated with increased neovascularization and tissue regeneration. The bio-mechanism of ESWT-enhanced wound healing is correlated with VEGF and mitogen-activated protein kinase-mediated pathway."	"Induction of apoptosis in ovarian cancer cells by miR-493-3p directly targeting AKT2, STK38L, HMGA2, ETS1 and E2F5. Apoptosis is a form of directed programmed cell death with a tightly regulated signalling cascade for the destruction of single cells. MicroRNAs (miRNAs) play an important role as fine tuners in the regulation of apoptotic processes. MiR-493-3p mimic transfection leads to the induction of apoptosis causing the breakdown of mitochondrial membrane potential and the activation of Caspases resulting in the fragmentation of DNA in several ovarian carcinoma cell lines. Ovarian cancer shows with its pronounced heterogeneity a very high death-to-incidence ratio. A target gene analysis for miR-493-3p was performed for the investigation of underlying molecular mechanisms involved in apoptosis signalling pathways. Elevated miR-493-3p levels downregulated the mRNA and protein expression levels of Serine/Threonine Kinase 38 Like (STK38L), High Mobility Group AT-Hook 2 (HMGA2) and AKT Serine/Threonine Kinase 2 (AKT2) by direct binding as demonstrated by luciferase reporter assays. Notably, the protein expression of RAF1 Proto-Oncogene, Serine/Threonine Kinase (RAF1) was almost completely downregulated by miR-493-3p. This interaction, however, was indirect and regulated by STK38L phosphorylation. In addition, RAF1 transcription was diminished as a result of reduced transcription of ETS proto-oncogene 1 (ETS1), another direct target of miR-493-3p. Taken together, our observations have uncovered the apoptosis inducing potential of miR-493-3p through its regulation of multiple target genes participating in the extrinsic and intrinsic apoptosis pathway."	"Genetic Basis of Severe Childhood-Onset Cardiomyopathies. Childhood cardiomyopathies are progressive and often lethal disorders, forming the most common cause of heart failure in children. Despite severe outcomes, their genetic background is still poorly characterized. The purpose of this study was to characterize the genetics of severe childhood cardiomyopathies in a countrywide cohort. The authors collected a countrywide cohort, KidCMP, of 66 severe childhood cardiomyopathies from the sole center in Finland performing cardiac transplantation. For genetic diagnosis, next-generation sequencing and subsequent validation using genetic, cell biology, and computational approaches were used. The KidCMP cohort presents remarkable early-onset and severe disorders: the median age of diagnosis was 0.33 years, and 17 patients underwent cardiac transplantation. The authors identified the pathogenic variants in 39% of patients: 46% de novo, 34% recessive, and 20% dominantly-inherited. The authors report NRAP underlying childhood dilated cardiomyopathy, as well as novel phenotypes for known heart disease genes. Some genetic diagnoses have immediate implications for treatment: CALM1 with life-threatening arrhythmias, and TAZ with good cardiac prognosis. The disease genes converge on metabolic causes (PRKAG2, MRPL44, AARS2, HADHB, DNAJC19, PPA2, TAZ, BAG3), MAPK pathways (HRAS, PTPN11, RAF1, TAB2), development (NEK8 and TBX20), calcium signaling (JPH2, CALM1, CACNA1C), and the sarcomeric contraction cycle (TNNC1, TNNI3, ACTC1, MYH7, NRAP). Childhood cardiomyopathies are typically caused by rare, family-specific mutations, most commonly de novo, indicating that next-generation sequencing of trios is the approach of choice in their diagnosis. Genetic diagnoses may suggest intervention strategies and predict prognosis, offering valuable tools for prioritization of patients for transplantation versus conservative treatment."	"Up-regulation of microRNA-497 inhibits the proliferation, migration and invasion but increases the apoptosis of multiple myeloma cells through the MAPK/ERK signaling pathway by targeting Raf-1. Multiple myeloma (MM) is a cancer that occurs in plasma cells, which fall under the category of white blood cells that are in charge of antibody production. According to previous studies, microRNA-497 (miR-497) functions as a tumor suppressor in several types of cancer, including gastric cancer and colorectal cancer. Therefore, the present study aims to investigate the effects of miR-497 on cellular function of human MM cells through the mitogen-activated protein kinase/extracellular signal-regulated kinase (MAPK/ERK) signaling pathway by targeting Raf-1. The differentially expressed genes and miRs in MM, and the relationship between the miR and gene were verified. It was found that Raf-1 was a target gene of miR-497. The data obtained from MM tissues showed increased Raf-1 level and decreased miR-497 level. MM cells were treated with mimic, inhibitor and siRNA in order to evaluate the role of miR-497, Raf-1 and MAPK/ERK in MM. The expression pattern of miR-497, Raf-1, ERK1/2, survivin, B-cell lymphoma-2 (Bcl-2) and BCL2-Associated X (Bax) as well as the extent of ERK1/2 phosphorylation were determined. Retored miR-497 and si-Raf-1 resulted in increases in the Bax expression and cell apoptosis and decreases in the expressions of Raf-1, MEK-2, survivin, Bcl-2, along with the extent of ERK1/2 phosphorylation. In addition, the biological function evaluations of MM cells revealed that miR-497 mimic or si-Raf-1 led to suppression in cell proliferation, invasion and migration. In conclusion, our results have demonstrated that miR-497 targets Raf-1 in order to inhibit the progression of MM by blocking the MAPK/ERK signaling pathway."	"Delineation of LZTR1 mutation-positive patients with Noonan syndrome and identification of LZTR1 binding to RAF1-PPP1CB complexes. RASopathies are a group of developmental disorders caused by mutations in genes that regulate the RAS/MAPK pathway and include Noonan syndrome (NS), Costello syndrome, cardiofaciocutaneous syndrome and other related disorders. Whole exome sequencing studies recently identified LZTR1, PPP1CB and MRAS as new causative genes in RASopathies. However, information on the phenotypes of LZTR1 mutation-positive patients and functional properties of the mutations are limited. To identify variants of LZTR1, PPP1CB, and MRAS, we performed a targeted next-generation sequencing and reexamined previously analyzed exome data in 166 patients with suspected RASopathies. We identified eight LZTR1 variants, including a de novo variant, in seven probands who were suspicious for NS and one known de novo PPP1CB variant in a patient with NS. One of the seven probands had two compound heterozygous LZTR1 variants, suggesting autosomal recessive inheritance. All probands with LZTR1 variants had cardiac defects, including hypertrophic cardiomyopathy and atrial septal defect. Five of the seven probands had short stature or intellectual disabilities. Immunoprecipitation of endogenous LZTR1 followed by western blotting showed that LZTR1 bound to the RAF1-PPP1CB complex. Cells transfected with a small interfering RNA against LZTR1 exhibited decreased levels of RAF1 phosphorylated at Ser259. These are the first results to demonstrate LZTR1 in association with the RAF1-PPP1CB complex as a component of the RAS/MAPK pathway."	"Biased TAS2R Bronchodilators Inhibit Airway Smooth Muscle Growth by Downregulating Phosphorylated Extracellular Signal-regulated Kinase 1/2. Bitter taste receptor (TAS2R) agonists dilate airways by receptor-dependent smooth muscle relaxation. Besides their coupling to relaxation, we have found that human airway smooth muscle (HASM) cell TAS2Rs activate (phosphorylate) extracellular signal-related kinase 1/2 (ERK1/2), but the cellular effects are not known. In the present study, we show in HASM cells that TAS2R agonists initially stimulate phosphorylated ERK1/2 (pERK1/2) but by 24 hours cause a marked (50-70%) downregulation of pERK1/2 without a change in total ERK1/2. It was hypothesized that TAS2R agonists suppress cell growth through this pERK1/2 downregulation. Agonist-dependent inhibition of cell proliferation was indeed found in HASM cells derived from normal and asthmatic human lungs, as well as in an immortalized HASM cell line. pERK1/2 downregulation was linked to downregulation of the upstream kinase MEK1/2 (mitogen-activated protein kinase/extracellular signal-regulated kinase). Various structurally diverse TAS2R agonists evoked a range of inhibition of HASM proliferation, the magnitude of which directly correlated with the downregulation of pERK1/2 (R<sup>2</sup> = 0.86). Some TAS2R agonists were as effective as pharmacological inhibitors of Raf1 and MEK1/2 in suppressing growth. siRNA silencing of TAS2Rs (subtypes 10, 14, and 31) ablated the pERK1/2 and growth-inhibitory effects of TAS2R agonists. These phenotypes were attenuated by inhibiting the TAS2R G protein Gαi and by knocking down β-arrestin 1/2, indicating a dual pathway, although there may be additional mechanisms involved in this HASM TAS2R multidimensional signaling. Thus, TAS2R agonist structure can be manipulated to maintain the relaxation response and can be biased toward suppression of HASM growth. The latter response is of potential therapeutic benefit in asthma, in which an increase in smooth muscle mass contributes to airway obstruction."	"Genetic Abnormalities in Large to Giant Congenital Nevi: Beyond NRAS Mutations. Large and giant congenital melanocytic nevi (CMN) are rare melanocytic lesions mostly caused by postzygotic NRAS alteration. Molecular characterization is usually focused on NRAS and BRAF genes in a unique biopsy sample of the CMN. However, large/giant CMN may exhibit phenotypic differences among distinct areas, and patients differ in features such as presence of multiple CMN or spilus-like lesions. Herein, we have characterized a series of 21 large/giant CMN including patients with spilus-type nevi (9/21 patients, 42.8%). Overall, 53 fresh frozen biopsy samples corresponding to 40 phenotypically characterized areas of large/giant CMNs and 13 satellite lesions were analyzed with a multigene panel and RNA sequencing. Mutational screening showed mutations in 76.2% (16/21) of large/giant CMNs. A NRAS mutation was found in 57.1% (12/21) of patients, and mutations in other genes such as BRAF, KRAS, APC, and MET were detected in 14.3% (3/21) of patients. RNA sequencing showed the fusion transcript ZEB2-ALK and SOX5-RAF1 in large/giant CMN from two patients without missense mutations. Both alterations were not detected in unaffected skin and were detected in different areas of affected skin. These findings suggest that large/giant CMN may result from distinct molecular events in addition to NRAS mutations, including point mutations and fusion transcripts."	"Identifying the genetic causes for prenatally diagnosed structural congenital anomalies (SCAs) by whole-exome sequencing (WES). Whole-exome sequencing (WES) has become an invaluable tool for genetic diagnosis in paediatrics. However, it has not been widely adopted in the prenatal setting. This study evaluated the use of WES in prenatal genetic diagnosis in fetuses with structural congenital anomalies (SCAs) detected on prenatal ultrasound. Thirty-three families with fetal SCAs on prenatal ultrasonography and normal chromosomal microarray results were recruited. Genomic DNA was extracted from various fetal samples including amniotic fluid, chorionic villi, and placental tissue. Parental DNA was extracted from peripheral blood when available. We used WES to sequence the coding regions of parental-fetal trios and to identify the causal variants based on the ultrasonographic features of the fetus. Pathogenic mutations were identified in three families (n = 3/33, 9.1%), including mutations in DNAH11, RAF1 and CHD7, which were associated with primary ciliary dyskinesia, Noonan syndrome, and CHARGE syndrome, respectively. In addition, variants of unknown significance (VUSs) were detected in six families (18.2%), in which genetic changes only partly explained prenatal features. WES identified pathogenic mutations in 9.1% of fetuses with SCAs and normal chromosomal microarray results. Databases for fetal genotype-phenotype correlations and standardized guidelines for variant interpretation in prenatal diagnosis need to be established to facilitate the use of WES for routine testing in prenatal diagnosis."	"Selfish mutations dysregulating RAS-MAPK signaling are pervasive in aged human testes. Mosaic mutations present in the germline have important implications for reproductive risk and disease transmission. We previously demonstrated a phenomenon occurring in the male germline, whereby specific mutations arising spontaneously in stem cells (spermatogonia) lead to clonal expansion, resulting in elevated mutation levels in sperm over time. This process, termed &quot;selfish spermatogonial selection,&quot; explains the high spontaneous birth prevalence and strong paternal age-effect of disorders such as achondroplasia and Apert, Noonan and Costello syndromes, with direct experimental evidence currently available for specific positions of six genes (FGFR2, FGFR3, RET, PTPN11, HRAS, and KRAS). We present a discovery screen to identify novel mutations and genes showing evidence of positive selection in the male germline, by performing massively parallel simplex PCR using RainDance technology to interrogate mutational hotspots in 67 genes (51.5 kb in total) in 276 biopsies of testes from five men (median age, 83 yr). Following ultradeep sequencing (about 16,000×), development of a low-frequency variant prioritization strategy, and targeted validation, we identified 61 distinct variants present at frequencies as low as 0.06%, including 54 variants not previously directly associated with selfish selection. The majority (80%) of variants identified have previously been implicated in developmental disorders and/or oncogenesis and include mutations in six newly associated genes (BRAF, CBL, MAP2K1, MAP2K2, RAF1, and SOS1), all of which encode components of the RAS-MAPK pathway and activate signaling. Our findings extend the link between mutations dysregulating the RAS-MAPK pathway and selfish selection, and show that the aging male germline is a repository for such deleterious mutations."	"Biomarker analysis beyond angiogenesis: RAS/RAF mutation status, tumour sidedness, and second-line ramucirumab efficacy in patients with metastatic colorectal carcinoma from RAISE-a global phase III study. : Second-line treatment with ramucirumab+FOLFIRI improved overall survival (OS) versus placebo+FOLFIRI for patients with metastatic colorectal carcinoma (CRC) [hazard ratio (HR)=0.84, 95% CI 0.73-0.98, P = 0.022]. Post hoc analyses of RAISE patient data examined the association of RAS/RAF mutation status and the anatomical location of the primary CRC tumour (left versus right) with efficacy parameters. Patient tumour tissue was classified as BRAF mutant, KRAS/NRAS (RAS) mutant, or RAS/BRAF wild-type. Left-CRC was defined as the splenic flexure, descending and sigmoid colon, and rectum; right-CRC included transverse, ascending colon, and cecum. RAS/RAF mutation status was available for 85% of patients (912/1072) and primary tumour location was known for 94.4% of patients (1012/1072). A favourable and comparable ramucirumab treatment effect was observed for patients with RAS mutations (OS HR = 0.86, 95% CI 0.71-1.04) and patients with RAS/BRAF wild-type tumours (OS HR = 0.86, 95% CI 0.64-1.14). Among the 41 patients with BRAF-mutated tumours, the ramucirumab benefit was more notable (OS HR = 0.54, 95% CI 0.25-1.13), although, as with the other genetic sub-group analyses, differences were not statistically significant. Progression-free survival (PFS) data followed the same trend. Treatment-by-mutation status interaction tests (OS P = 0.523, PFS P = 0.655) indicated that the ramucirumab benefit was not statistically different among the mutation sub-groups, although the small sample size of the BRAF group limited the analysis. Addition of ramucirumab to FOLFIRI improved left-CRC median OS by 2.5 month over placebo (HR = 0.81, 95% CI 0.68-0.97); median OS for ramucirumab-treated patients with right-CRC was 1.1 month over placebo (HR = 0.97, 95% CI 0.75-1.26). The treatment-by-sub-group interaction was not statistically significant for tumour sidedness (P = 0.276). In the RAISE study, the addition of ramucirumab to FOLFIRI improved patient outcomes, regardless of RAS/RAF mutation status, and tumour sidedness. Ramucirumab treatment provided a numerically substantial benefit in BRAF-mutated tumours, although the P-values were not statistically significant. NCT01183780."	"Identification of a novel MTAP-RAF1 fusion in a soft tissue sarcoma. RAF family activating fusions have been described as a potentially targetable molecular finding in a subset of soft tissue sarcomas. To further expand upon the landscape of this genetic feature, we describe a novel MTAP-RAF1 activating fusion identified in a S100 positive soft tissue sarcoma. A 51 year old man underwent excision of a soft tissue mass in his foot. Pathology revealed a spindle cell neoplasm with S100 positivity, ultimately classified as a soft tissue sarcoma, not otherwise specified. Comprehensive molecular profiling was performed to help establish the diagnosis and revealed a novel MTAP-RAF1 fusion that includes the tyrosine kinase domain of RAF1. Our report adds to the spectrum of fusion-driven RAF activation observed in soft tissue sarcomas and lends additional evidence that RAF activation plays an important role in some soft tissue sarcomas. Identification of novel fusions involving the MAPK/ERK pathway in sarcomas may provide new avenues for precision medicine strategies involving targeted kinase inhibitors."	"A New Linkage between the Tumor Suppressor RKIP and Autophagy: Targeted Therapeutics. The complexities of molecular signaling in cancer cells have been hypothesized to mediate cross-network alterations of oncogenic processes such as uncontrolled cell growth, proliferation, acquisition of epithelial-to-mesenchymal transition (EMT) markers, and resistance to cytotoxic therapies. The two biochemically exclusive processes/proteins examined in the present review are the metastasis suppressor Raf-1 kinase inhibitory protein (RKIP) and the cell-intrinsic system of macroautophagy (hereafter referred to as autophagy). RKIP is poorly expressed in human cancer tissues, and low expression levels are correlated with high incidence of tumor growth, metastasis, poor treatment efficacy, and poor prognoses in cancer patients. By comparison, autophagy is a conserved cytoprotective degradation pathway that has been shown to influence the acquisition of resistance to hypoxia and nutrient depletion as well as the regulation of chemo-immuno-resistance and apoptotic evasion. Evidently, a broad library of cancer-relevant studies exists for RKIP and autophagy, although reports of the interactions between pathways involving RKIP and autophagy have been relatively sparse. To circumvent this limitation, the coordinate regulatory and effector mechanisms were examined for both RKIP and autophagy. Here, we propose three putative pathways that demonstrate the inherent pleiotropism and relevance of RKIP and the microtubule-associated protein 1 light chain 3 (MAP1LC3, LC3) on cell growth, proliferation, senescence, and EMT, among the hallmarks of cancer. Our findings suggest that signaling modules involving p53, signal transducer and activator of transcription 3 (STAT3), nuclear factor-κB (NF-κB), and Snail highlight the novel roles for RKIP in the control of autophagy and vice versa. The suggested potential crosstalk mechanisms are new areas of research in which to further study RKIP and autophagy in cancer models. These should lead to novel prognostic motifs and will provide alternative therapeutic strategies for the treatment of unresponsive aggressive cancer types."	"Urachal carcinoma: from gross specimen to morphologic, immunohistochemical, and molecular analysis. Urachal carcinoma (UrC) is an exceedingly rare neoplasm that develops from the urachus, an embryologic remnant of the urogenital sinus and allantois. The most commonly encountered histologic subtype is adenocarcinoma. The aim of this study is to characterize a series of UrC by morphology, immunohistochemistry, and molecular analysis. We retrospectively investigated seven cases of UrCs and assessed patient symptoms, imaging, histologic features, immunohistochemical profile, molecular characteristics, pathologic stages, and type of treatment. Immunostaining for CK7, CK20, Muc-2, CDX2, GATA3, β-catenin, and CK34βE12 was carried out on each neoplasm and on seven non-neoplastic urachal remnants as the control group. Additionally, a mutational analysis was performed using the QIAact Actionable Insights Tumor Panel Kit, which analyzes KRAS, NRAS, KIT, BRAF, PDGFRA, ALK, EGFR, ERBB2, PIK3CA, ERBB3, ESR1, and RAF1. Our cohort comprised five females and two males with a mean age of 64 years. UrCs consisted of two mucinous cystadenocarcinomas and five invasive, non-cystic adenocarcinomas. Carcinoma antigen expression profile was positive for CK20 and negative for CK34βE12 and GATA3 in all cases. Five of seven cases stained positively for Muc-2 and CDX2. On the contrary, non-neoplastic urachal remnants were immunoreactive for CK34βE12, CK7, and GATA3. Mutational analysis gave a positive result in four out of seven (57.1%) cases. All four positive tumors showed RAS mutation and one an additional mutation in PIK3CA. Urachal tumors exhibit peculiar morphologic, immunohistochemical, and molecular features. Due to the advanced stage at presentation, individualized treatment should be undertaken."	"Detection of MAPK/ERK pathway proteins and KRAS mutations in adenomatoid odontogenic tumors. This study aimed to assess the frequency of KRAS mutation and its association with the presence of the MAPK/ERK signaling pathway proteins in adenomatoid odontogenic tumors. Paraffin-embedded tissue samples from nine cases of adenomatoid odontogenic tumor were used. Genomic DNA was extracted from each sample; in one case, genetic mutations in 50 cancer-associated genes were examined by next-generation sequencing. Hotspot mutations in the RAS family were analyzed by Luminex assay using the remaining eight cases. Subsequently, immunohistochemistry for KRAS, CRAF, BRAF, EGFR, ERK, MEK, and BRAFV600E was performed. A KRAS G12D missense mutation was detected in the DNA sequence of the tumor cells, but it was not detected in the stromal tissue. KRAS G12V and KRAS G12R mutations were detected in two and four cases, respectively. For immunohistochemistry, all the cases were EGFR, KRAS, BRAF, CRAF positive, one case was ERK negative,and one case was MEK and ERK negative, all the other remaining cases were MEK and ERK positive. KRAS mutation at codon 12 and the presence of MAPK/ERK pathway proteins were detected suggesting their association with tumorigenesis of adenomatoid odontogenic tumors."	"Overexpression of Rubisco subunits with RAF1 increases Rubisco content in maize. Rubisco catalyses a rate-limiting step in photosynthesis and has long been a target for improvement due to its slow turnover rate. An alternative to modifying catalytic properties of Rubisco is to increase its abundance within C4 plant chloroplasts, which might increase activity and confer a higher carbon assimilation rate. Here, we overexpress the Rubisco large (LS) and small (SS) subunits with the Rubisco assembly chaperone RUBISCO ASSEMBLY FACTOR 1 (RAF1). While overexpression of LS and/or SS had no discernable impact on Rubisco content, addition of RAF1 overexpression resulted in a &gt;30% increase in Rubisco content. Gas exchange showed a 15% increase in CO2 assimilation (ASAT) in UBI-LSSS-RAF1 transgenic plants, which correlated with increased fresh weight and in vitro Vcmax calculations. The divergence of Rubisco content and assimilation could be accounted for by the Rubisco activation state, which decreased up to 23%, suggesting that Rubisco activase may be limiting Vcmax, and impinging on the realization of photosynthetic potential from increased Rubisco content."	"USP10 promotes proliferation and migration and inhibits apoptosis of endometrial stromal cells in endometriosis through activating the Raf-1/MEK/ERK pathway. Endometriosis has been initially described as endometrial-like tissue outside of the uterine cavity. The mitogen-activated protein kinase/ERK kinase (MEK)/extracellular signal-regulated kinase (ERK) signaling pathway playing an important role in the regulation of cell proliferation, apoptosis, and migration has been found to be activated in endometriosis. However, regulation of the MEK/ERK signaling pathway in endometriosis has not been fully understood. In this study, primary-cultured endometrial stromal cells were collected from patients with endometriosis and healthy controls, and the proliferation, apoptosis, and migration of ectopic endometrial stromal cells transfected with ubiquitin-specific protease 10 (USP10)-small-interfering RNA (siRNA) or pLVX-Puro-USP10 with or without MEK inhibitor PD-98059 or exogenous signaling stimulation such as epidermal growth factor (EGF) were measured by CCK-8, flow cytometry, and Transwell, respectively. The gene and protein expressions were measured by real-time PCR or Western blot. USP10 overexpression promoted ectopic endometrial stromal cell migration and proliferation, suppressed cell apoptosis, and activated MEK/ERK signaling that is a critical downstream target of the serine/threonine protein kinase Raf-1, which was significantly blocked by PD-98059. USP10 silencing demonstrated the inverse effects, and these effects induced by USP10 silencing were significantly blocked by EGF. USP10 overexpression promoted Raf-1 protein expression, but not mRNA expression, through deubiquitination. In conclusion, these results suggest that USP10 promotes proliferation and migration and inhibits apoptosis of endometrial stromal cells in endometriosis through activating the Raf-1/MEK/ERK pathway."	"A novel group of spindle cell tumors defined by S100 and CD34 co-expression shows recurrent fusions involving RAF1, BRAF, and NTRK1/2 genes. Tumors characterized by co-expression of S100 and CD34, in the absence of SOX10, remain difficult to classify. Triggered by a few index cases with monomorphic cytomorphology and distinctive stromal and perivascular hyalinization, immunopositivity for S100 and CD34, and RAF1 and NTRK1 fusions, the authors undertook a systematic review of tumors with similar features. Most of the cases selected were previously diagnosed as low-grade malignant peripheral nerve sheath tumors, while others were deemed unclassified. The tumors were studied with targeted RNA sequencing and/or FISH. A total of 25 cases (15 adults and 10 children) with kinase fusions were identified, including 8 cases involving RAF1, 2 BRAF, 14 NTRK1, and 1 NTRK2 gene rearrangements. Most tumors showed a monomorphic spindle cell proliferation with stromal and perivascular keloidal collagen, in a patternless architecture, with only occasional scattered pleomorphic or multinucleated cells. Most cases showed low cellularity, a low mitotic count, and absence of necrosis. Although a subset showed overlap with lipofibromatosis-like neural tumors, the study group showed distinctive hyalinization and overt malignant features, such as highly cellular fascicular growth and primitive appearance. All tumors showed co-expression of S100 and CD34, ranging from focal to diffuse. SOX10 was negative in all cases. NTRK1 immunohistochemistry showed high levels of expression in all tumors with NTRK1 gene rearrangements. H3K27me3 expression performed in a subset of cases was retained. These findings together with the recurrent gene fusions in RAF1, BRAF, and NTRK1/2 kinases suggest a distinct molecular tumor subtype with consistent S100 and CD34 immunoreactivity."	"Neutrophil Caspase-11 Is Required for Cleavage of Caspase-1 and Secretion of IL-1β in Aspergillus fumigatus Infection. Neutrophils are an important source of IL-1β secretion in bacterial infections, where they infiltrate affected tissues in log-fold higher numbers than macrophages. Neutrophils also have functional NLRP3 and NLRC4 inflammasomes that can process pro-IL-1β to the bioactive 17-kDa form. In the current study, we examined the role of IL-1β in response to corneal infection with the filamentous fungus Aspergillus fumigatus and found that neutrophils were the predominant source of bioactive IL-1β in the cornea. We also observed that caspase-11<sup>-/-</sup> mice exhibit the same susceptibility phenotype as IL-1β<sup>-/-</sup>, ASC<sup>-/-</sup>, NLRP3<sup>-/-</sup>, and caspase-1<sup>-/-</sup> mice, with impaired neutrophil recruitment to infected corneas and increased hyphal growth. We further demonstrate that caspase-11 is required for caspase-1 activation and IL-1β processing during infection. In vitro, we show that caspase-11 is regulated by the common type I IFN receptor (IFNAR) through JAK-STAT signaling and that caspase-11 is required for speck formation and caspase-1 activity. Aspergillus spores (conidia) stimulate IL-1β processing and secretion in neutrophils activation of Dectin-1 and signaling through the Raf1 kinase/MEKK rather than the spleen tyrosine kinase pathway. Collectively, these findings reveal unexpected regulation of IL-1β production by neutrophils in response to pathogenic fungi."	"C-type natriuretic peptide improves growth retardation in a mouse model of cardio-facio-cutaneous syndrome. Cardio-facio-cutaneous (CFC) syndrome, a genetic disorder caused by germline mutations in BRAF, KRAS, MAP2K1 and MAP2K2, is characterized by growth retardation, heart defects, dysmorphic facial appearance and dermatologic abnormalities. We have previously reported that knock-in mice expressing the CFC syndrome-associated mutation, Braf Q241R, showed growth retardation because of gastrointestinal dysfunction. However, other factors associated with growth retardation, including chondrogenesis and endocrinological profile, have not been examined. Here, we show that 3- and 4-week-old BrafQ241R/+ mice have decreased body weight and length, as well as reduced growth plate width in the proximal tibiae. Furthermore, proliferative and hypertrophic chondrocyte zones of the growth plate were reduced in BrafQ241R/+ mice compared with Braf+/+ mice. Immunohistological analysis revealed that extracellular signal-regulated kinase (ERK) activation was enhanced in hypertrophic chondrocytes in BrafQ241R/+ mice. In accordance with growth retardation and reduced growth plate width, decreased serum levels of insulin-like growth factor 1 (IGF-1) and IGF binding protein 3 (IGFBP-3) were observed in BrafQ241R/+ mice at 3 and 4 weeks of age. Treatment with C-type natriuretic peptide (CNP), a stimulator of endochondral bone growth and a potent inhibitor of the FGFR3-RAF1-MEK/ERK signaling, increased body and tail lengths in Braf+/+ and BrafQ241R/+ mice. In conclusion, ERK activation in chondrocytes and low serum IGF-1/IGFBP-3 levels could be associated with the growth retardation observed in BrafQ241R/+ mice. Our data also suggest that CNP is a potential therapeutic target in CFC syndrome."	"Melatonin Inhibits the Progression of Hepatocellular Carcinoma through MicroRNA Let7i-3p Mediated RAF1 Reduction. Melatonin is the main pineal hormone that relays light/dark-cycle information to the circadian system. Recent studies have examined the intrinsic antitumor activity of melatonin in various cancers, including hepatocellular carcinoma (HCC), the primary life-threatening malignancy in both sexes in Taiwan. However, the detailed regulatory mechanisms underlying melatonin's anti-HCC activity remain incompletely understood. Here, we investigated the mechanisms by which the anti-HCC activity of melatonin is regulated. Human hepatoma cell lines were treated with 1 and 2 mM melatonin, and functional assays were used to dissect melatonin's antitumor effect in HCC; small-RNA sequencing was performed to identify the microRNAs (miRNAs) involved in the anti-HCC activity of melatonin; and quantitative RT-PCR and Western blotting were used to elucidate how miRNAs regulate melatonin-mediated HCC suppression. Melatonin treatment at both doses strongly inhibited the proliferation, migration and invasion capacities of Huh7 and HepG2 cell lines, and melatonin treatment markedly induced the expression of the miRNA let7i-3p in cells. Notably, transfection of cells with a let7i-3p mimic drastically reduced RAF1 expression and activation of mitogen-activated protein kinase signaling downstream from RAF1, and rescue-assay results demonstrated that melatonin inhibited HCC progression by modulating let7i-3p-mediated RAF1 suppression. Our findings support the view that melatonin treatment holds considerable promise as a therapy for HCC."	"Chemoproteomic Discovery of a Ritanserin-Targeted Kinase Network Mediating Apoptotic Cell Death of Lung Tumor Cells. Ritanserin was tested in the clinic as a serotonin receptor inverse agonist but recently emerged as a novel kinase inhibitor with potential applications in cancer. Here, we discovered that ritanserin induced apoptotic cell death of non-small cell lung cancer (NSCLC) and small cell lung cancer (SCLC) cells via a serotonin-independent mechanism. We used quantitative chemical proteomics to reveal a ritanserin-dependent kinase network that includes key mediators of lipid [diacylglycerol kinase α, phosphatidylinositol 4-kinase β] and protein [feline encephalitis virus-related kinase, rapidly accelerated fibrosarcoma (RAF)] signaling, metabolism [eukaryotic elongation factor 2 kinase, eukaryotic translation initiation factor 2-α kinase 4], and DNA damage response [tousled-like kinase 2] to broadly kill lung tumor cell types. Whereas ritanserin exhibited polypharmacology in NSCLC proteomes, this compound showed unexpected specificity for c-RAF in the SCLC subtype, with negligible activity against other kinases mediating mitogen-activated protein kinase signaling. Here we show that ritanserin blocks c-RAF but not B-RAF activation of established oncogenic signaling pathways in live cells, providing evidence in support of c-RAF as a key target mediating its anticancer activity. Given the role of c-RAF activation in RAS-mutated cancers resistant to clinical B-RAF inhibitors, our findings may have implications in overcoming resistance mechanisms associated with c-RAF biology. The unique target landscape combined with acceptable safety profiles in humans provides new opportunities for repositioning ritanserin in cancer."	"Clinical profile of comorbidity of rare diseases in a Tunisian patient: a case report associating incontinentia pigmenti and Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant multisystem disorder caused by the dysregulation of several genes belonging to the RAS Mitogen Activated Protein Kinase (MAPK) signaling pathway. Incontinentia Pigmenti (IP) is an X-linked, dominantly inherited multisystem disorder. This study is the first report of the coexistence of Noonan (NS) and Incontinentia Pigmenti (IP) syndromes in the same patient. We report on the clinical phenotype and molecular characterization of this patient. The patient was examined by a pluridisciplinary staff of clinicians and geneticist. The clinical diagnosis of NS and IP was confirmed by molecular investigations. The newborn girl came to our clinics due to flagrant dysmorphia and dermatological manifestations. The clinical observations led to characterize the Incontinentia Pigmenti traits and a suspicion of a Noonan syndrome association. Molecular diagnosis was performed by Haloplex resequencing of 29 genes associated with RASopathies and confirmed the NS diagnosis. The common recurrent intragenic deletion mutation in IKBKG gene causing the IP was detected with an improved PCR protocol. This is the first report in the literature of comorbidity of NS and IP, two rare multisystem syndromes."	"Phosphorylation promotes binding affinity of Rap-Raf complex by allosteric modulation of switch loop dynamics. The effects of phosphorylation of a serine residue on the structural and dynamic properties of Ras-like protein, Rap, and its interactions with effector protein Ras binding domain (RBD) of Raf kinase, in the presence of GTP, are investigated via molecular dynamics simulations. The simulations show that phosphorylation significantly effects the dynamics of functional loops of Rap which participate in the stability of the complex with effector proteins. The effects of phosphorylation on Rap are significant and detailed conformational analysis suggest that the Rap protein, when phosphorylated and with GTP ligand, samples different conformational space as compared to non-phosphorylated protein. In addition, phosphorylation of SER11 opens up a new cavity in the Rap protein which can be further explored for possible drug interactions. Residue network analysis shows that the phosphorylation of Rap results in a community spanning both Rap and RBD and strongly suggests transmission of allosteric effects of local alterations in Rap to distal regions of RBD, potentially affecting the downstream signalling. Binding free energy calculations suggest that phosphorylation of SER11 residue increases the binding between Rap and Raf corroborating the network analysis results. The increased binding of the Rap-Raf complex can have cascading effects along the signalling pathways where availability of Raf can influence the oncogenic effects of Ras proteins. These simulations underscore the importance of post translational modifications like phosphorylation on the functional dynamics in proteins and can be an alternative to drug-targeting, especially in notoriously undruggable oncoproteins belonging to Ras-like GTPase family."	"Effectiveness of EGFR/HER2-targeted drugs is influenced by the downstream interaction shifts of PTPIP51 in HER2-amplified breast cancer cells. Breast cancer is the most common female cancerous disease and the second most cause of cancer death in women. About 20-30% of these tumors exhibit an amplification of the HER2/ErbB2 receptor, which is coupled to a more aggressive and invasive growth of the cancer cells. Recently developed tyrosine kinase inhibitors and therapeutic antibodies targeting the HER2 receptor improved the overall survival time compared with sole radio- and chemotherapy. Upcoming resistances against the HER2-targeted therapy make a better understanding of the receptor associated downstream pathways an absolute need. In earlier studies, we showed the involvement of Protein Tyrosine Phosphatase Interacting Protein 51 (PTPIP51) in the mitogen-activated protein kinase (MAPK) pathway. The MAPK pathway is one of the most frequently overactivated pathways in HER2-amplified breast cancer cells. This study is aimed to elucidate the effects of four different TKIs on the interactome of PTPIP51, namely with the receptors EGFR and HER2, 14-3-3/Raf1 (MAPK pathway), its regulating enzymes, and the mitochondria-associated interaction partners in HER2 breast cancer cell lines (SK-BR3 and BT474) by using the Duolink proximity ligation assay, immunoblotting and knockdown of PTPIP51. Inhibition of both EGFR and HER2/ErbB2R shifted PTPIP51 into the MAPK pathway, but left the mitochondria-associated interactome of PTPIP51 unattended. Exclusively inhibiting HER2/ErbB2 by Mubritinib did not affect the interaction of PTPIP51 with the MAPK signaling. Selective inhibition of HER2 induced great alterations of mitochondria-associated interactions of PTPIP51, which ultimately led to the most-effective reduction of cell viability of SK-BR3 cells of all tested TKIs. The results clearly reveal the importance of knowing the exact mechanisms of the inhibitors affecting receptor tyrosine kinases in order to develop more efficient anti-HER2-targeted therapies."	"Anti-leprosy drug Clofazimine binds to human Raf1 kinase inhibitory protein and enhances ERK phosphorylation. Human Raf1 kinase inhibitory protein (hRKIP) is an important modulator of the Ras/Raf1/MEK/ERK signaling pathway. Here, we demonstrated that anti-leprosy drug Clofazimine can bind to hRKIP with a significantly stronger affinity than the endogenous substrate phosphatidylethanolamine (PE) by using Biolayer interference technology. Moreover, we identified that residues P74, S75, K80, P111, P112, V177, and P178 play crucial roles in the binding of hRKIP to Clofazimine by using a combination of Nuclear Magnetic Resonance spectroscopy and molecular docking approach. These residues are located at the conserved ligand-binding pocket of hRKIP. Furthermore, we found that 3.2 μM Clofazimine could significantly increase the ERK phosphorylation level by about 37%. Our results indicate that Clofazimine can enhance Ras/Raf1/MEK/ERK signaling transduction pathway via binding to hRKIP. This work provides valuable hints for exploiting Clofazimine as a potential lead compound to efficiently treat the diseases related to RKIP or the Ras/Raf/MEK/ERK pathway."	"Nuclear localized Raf1 isoform alters DNA-dependent protein kinase activity and the DNA damage response. Raf1/c-Raf is a well-characterized serine/threonine-protein kinase that links Ras family members with the MAPK/ERK signaling cascade. We have identified a novel splice isoform of human Raf1 that causes protein truncation and loss of the C-terminal kinase domain (Raf1-tr). We found that Raf1-tr has increased nuclear localization compared with full-length Raf1, and this finding was secondary to reduced binding of Raf1-tr to the cytoplasmic chaperone FK506 binding protein 5. We show that Raf1-tr has increased binding to DNA-dependent protein kinase (DNA-PK), which inhibits DNA-PK function and causes amplification of irradiation- and bleomycin-induced DNA damage. We found that the human colorectal cancer cell line, HCT-116, displayed reduced expression of Raf1-tr, and reintroduction of Raf1-tr sensitized the cells to bleomycin-induced apoptosis. Furthermore, we identified differential Raf1-tr expression in breast cancer cell lines and showed that breast cancer cells with increased Raf1-tr expression become sensitized to bleomycin-induced apoptosis. Collectively, these results demonstrate a novel Raf1 isoform in humans that has a unique noncanonical role in regulating the double-stranded DNA damage response pathway through modulation of DNA-PK function.-Nixon, B. R., Sebag, S. C., Glennon, M. S., Hall, E. J., Kounlavong, E. S., Freeman, M. L., Becker, J. R. Nuclear localized Raf1 isoform alters DNA-dependent protein kinase activity and the DNA damage response."	"[Clinical and genetic analysis of Verheij syndrome caused by PUF60 de novo mutation in a Chinese boy and literature review]. Objective: To investigate the clinical and genetic characteristics of a Chinese boy with Verheij syndrome and review the literature. Methods: The clinical and genetic data of a Chinese boy with Verheij syndrome, who was admitted to the Department of Pediatrics, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology in May 2017 were analyzed. Original papers on Verheij syndrome published up to January 2018 were retrieved at PubMed, Human Gene Mutation Database (HGMD), Online Mendelian Inheritance in Man(OMIM), CNKI and WanFang databases by using the key words &quot;Verheij syndrome&quot; and &quot;PUF60&quot; . Results: The male patient (at the age of 14 years and 3 months) visited us because of growth retardation for 13 years. Atrial septal defect was repaired at the age 3. Congenital amblyopia and hyperopia were diagnosed at the age 4. On physical examination, serious growth retardation and delayed psychomotor development was noted. His height was 142.5 cm (-3.26 SDS). He had poor academic performance at school. Facial features included: webbed neck, hypertelorism, down-slanting palpebral fissures, long philtrum, thin upper lip, and high palate. Palmar crease was found in the right hand. His bone age was 10 years. Growth hormone stimulation test indicated partial growth hormone deficiency (growth hormone (GH) peak 6.63 μg/L). The level of insulin like growth factor 1 (IGF1) and insulin like growth factor binding protein 3 (IGFBP3) was lower than normal, 73.20 μg/L and 2 500 μg/L respectively. Abdominal ultrasound showed that the volumes of bilateral kidneys were small. The size of the left and right kidney was 8.5 cm × 3.3 cm and 8.4 cm × 4.3 cm respectively. Karyotype was normal (46, XY). MRI of pituitary showed partial empty sella turcica. Ten genes associated with Noonan syndrome (PTPN11, SOS1, RASA2, KRAS, RAF1, NRAS, SHOC2, BRAF, RIT1, A2ML1) were analyzed and no genetic mutations were found. Whole exome-sequencing analysis identified a de novo heterozygous frame shift mutation of PUF60 gene (c.931_934del, P.P.T 311Qfs*47). According to ACMG guidelines in 2015, the mutation is pathogenic and has not been reported in the above databases. Conclusions: This is the first case report of Verheij syndrome caused by mutation of PUF60 gene in Chinese population. It is difficult to discriminate Verheij syndrome from Noonan syndrome, both have clinical manifestations such as severe growth retardation, psychomotor retardation, and congenital heart disease. In addition to Noonan syndrome, PUF60 genetic analysis was recommended for avoiding missed diagnosis with such clinical manifestations of patients. 目的: 总结Verheij综合征的临床及遗传学分析特点。 方法: 对2017年5月华中科技大学同济医学院附属同济医院儿科收治的1例Verheij综合征患儿的临床资料及基因检测结果进行总结分析,并以&quot;Verheij syndrome&quot;PUF60&quot;和&quot;Verheij综合征&quot;PUF60基因&quot;为检索词,分别检索2018年1月前的PubMed、人类基因组突变数据库(HGMD)、在线人类孟德尔遗传数据库(OMIM)、中国知网数据库(CNKI)和万方数据库,对Verheij综合征病例进行文献复习。 结果: 患儿男,14岁3月龄,因&quot;生长落后13年&quot;就诊。出生体重2.9 kg,3岁时在外院行&quot;房间隔缺损修补术&quot;,4岁时发现&quot;先天性弱视及远视&quot;。身高142.5 cm,标准差积分-3.26。精神运动发育迟缓,学习成绩不佳。颈蹼,眼距宽、双侧外眼角下斜,人中长,腭弓高,后发际低;右手通贯掌。骨龄落后于实际年龄;垂体内分泌功能检测结果提示部分性生长激素(GH)缺乏(GH峰值6.63 μg/L),血胰岛素样生长因子1(IGF1)(73.20 μg/L)及胰岛素样生长因子结合蛋白3(IGFBP3)(2 500 μg/L)低于正常;肾脏B超左肾8.5 cm×3.3 cm,右肾8.4 cm×4.3 cm;染色体核型46,XY;垂体磁共振成像提示垂体高度约4 mm,存在部分空蝶鞍。内分泌基因Panel(与Noonan综合征相关的10个基因)分析,均未发现基因变异或缺失。全外显子基因检测发现患儿存在PUF60基因杂合变异(c.931_934del,p. p.T311Qfs*47)。患儿父母该位点均无变异。经Sanger测序进行验证及父母来源分析,提示为新发突变。根据2015年美国医学遗传学与基因组学学会指南,该移码突变为致病突变,且在上述数据库中尚未见报道。 结论: 首次报道中国人群PUF60基因变异导致的Verheij综合征。患儿有严重的生长发育落后、精神运动发育迟缓、特殊面部特征、先天性心脏病、肾脏发育不良等,临床与Noonan综合征难以鉴别。对具有上述临床表现的患儿除注意Noonan综合征相关基因检测外,还应注意PUF60基因分析,以免漏诊。."	"Noonan syndrome: lessons learned from genetically modified mouse models. Noonan syndrome is a RASopathy that results from activating mutations in different members of the RAS/MAPK signaling pathway. At least eleven members of this pathway have been found mutated, PTPN11 being the most frequently mutated gene affecting about 50% of the patients, followed by SOS1 (10%), RAF1 (10%) and KRAS (5%). Recently, even more infrequent mutations have been newly identified by next generation sequencing. This spectrum of mutations leads to a broad variety of clinical symptoms such as cardiopathies, short stature, facial dysmorphia and neurocognitive impairment. The genetic variability of this syndrome makes it difficult to establish a genotype-phenotype correlation, which will greatly help in the clinical management of the patients. Areas covered: Studies performed with different genetically engineered mouse models (GEMMs) developed up to date. Expert commentary: GEMMs have helped us understand the role of some genes and the effect of the different mutations in the development of the syndrome. However, few models have been developed and more characterization of the existing ones should be performed to learn about the impact of the different modifiers in the phenotypes, the potential cancer risk in patients, as well as preventative and therapeutic strategies."	"A Comparative Evaluation of the Cytotoxic and Antioxidant Activity of Mentha crispa Essential Oil, Its Major Constituent Rotundifolone, and Analogues on Human Glioblastoma. Cancer is a major public health problem around the globe. This disorder is affected by alterations in multiple physiological processes, and oxidative stress has been etiologically implicated in its pathogenesis. Glioblastoma (GBM) is considered the most common and aggressive brain tumor with poor prognosis despite recent improvements in surgical, radiation, and chemotherapy-based treatment approaches. The purpose of this study was to evaluate antitumor activity from Mentha crispa essential oil (MCEO), its major constituent rotundifolone (ROT), and a series of six analogues on the human U87MG glioblastoma cell line. Cytotoxic effects of the compounds on the human U87MG-GBM cell line were assessed using in vitro cell viability and oxidative and molecular genetic assays. In addition, biosafety assessment tests were performed on cultured human blood cells. Our findings revealed that MCEO, 1,2-perillaldehyde epoxide (EPER1), and perillaldehyde (PALD) were the most cytotoxic compounds against U87MG cells, with IC50 values of 16.263, 15.087, and 14.888 μg/mL, respectively. Further, these compounds increased the expressions of BRAF, EGFR, KRAS, NFκB1, NFκB1A, NFκB2, PIK3CA, PIK3R, PTEN, and TP53 genes at different degrees and decreased the expression of some genes such as AKT1, AKT2, FOS, and RAF1. Finally, treatment with MCEO, EPER1, and PALD did not lead to genotoxic damage in blood cells. Taken together, our findings reveal antiproliferative potential of MCEO, its major component ROT, and its tested analogues. Some of these chemical analogues may be useful as prototypes for the development of novel chemotherapeutic agents for treating human brain cancer and/or other cancers due to their promising activities as well as nonmutagenic property and safety."	"Nonreentrant atrial tachycardia occurs independently of hypertrophic cardiomyopathy in RASopathy patients. Multifocal atrial tachycardia (MAT) has a well-known association with Costello syndrome, but is rarely described with related RAS/MAPK pathway disorders (RASopathies). We report 11 patients with RASopathies (Costello, Noonan, and Noonan syndrome with multiple lentigines [formerly LEOPARD syndrome]) and nonreentrant atrial tachycardias (MAT and ectopic atrial tachycardia) demonstrating overlap in cardiac arrhythmia phenotype. Similar overlap is seen in RASopathies with respect to skeletal, musculoskeletal and cutaneous abnormalities, dysmorphic facial features, and neurodevelopmental deficits. Nonreentrant atrial tachycardias may cause cardiac compromise if sinus rhythm is not restored expeditiously. Typical first-line supraventricular tachycardia anti-arrhythmics (propranolol and digoxin) were generally not effective in restoring or maintaining sinus rhythm in this cohort, while flecainide or amiodarone alone or in concert with propranolol were effective anti-arrhythmic agents for acute and chronic use. Atrial tachycardia resolved in all patients. However, a 4-month-old boy from the cohort was found asystolic (with concurrent cellulitis) and a second patient underwent cardiac transplant for heart failure complicated by recalcitrant atrial arrhythmia. While propranolol alone frequently failed to convert or maintain sinus rhythm, fleccainide or amiodarone, occasionally in combination with propranolol, was effective for RASopathy patient treatment for nonreentrant atrial arrhythmia. Our analysis shows that RASopathy patients may have nonreentrant atrial tachycardia with and without associated cardiac hypertrophy. While nonreentrant arrhythmia has been traditionally associated with Costello syndrome, this work provides an expanded view of RASopathy cardiac arrhythmia phenotype as we demonstrate mutant proteins throughout this signaling pathway can also give rise to ectopic and/or MAT."	"The genetic landscape of anaplastic pleomorphic xanthoastrocytoma. Pleomorphic xanthoastrocytoma (PXA) is an astrocytic neoplasm that is typically well circumscribed and can have a relatively favorable prognosis. Tumor progression to anaplastic PXA (WHO grade III), however, is associated with a more aggressive biologic behavior and worse prognosis. The factors that drive anaplastic progression are largely unknown. We performed comprehensive genomic profiling on a set of 23 PXAs from 19 patients, including 15 with anaplastic PXA. Four patients had tumor tissue from multiple recurrences, including two with anaplastic progression. We find that PXAs are genetically defined by the combination of CDKN2A biallelic inactivation and RAF alterations that were present in all 19 cases, most commonly as CDKN2A homozygous deletion and BRAF p.V600E mutation but also occasionally BRAF or RAF1 fusions or other rearrangements. The third most commonly altered gene in anaplastic PXA was TERT, with 47% (7/15) harboring TERT alterations, either gene amplification (n = 2) or promoter hotspot mutation (n = 5). In tumor pairs analyzed before and after anaplastic progression, two had increased copy number alterations and one had TERT promoter mutation at recurrence. Less commonly altered genes included TP53, BCOR, BCORL1, ARID1A, ATRX, PTEN, and BCL6. All PXA in this cohort were IDH and histone H3 wildtype, and did not contain alterations in EGFR. Genetic profiling performed on six regions from the same tumor identified intratumoral genomic heterogeneity, likely reflecting clonal evolution during tumor progression. Overall, anaplastic PXA is characterized by the combination of CDKN2A biallelic inactivation and oncogenic RAF kinase signaling as well as a relatively small number of additional genetic alterations, with the most common being TERT amplification or promoter mutation. These data define a distinct molecular profile for PXA and suggest additional genetic alterations, including TERT, may be associated with anaplastic progression."	"Buffalo SCNT embryos exhibit abnormal gene expression of ERK/MAPK pathway and DNA methylation. Inhibition of ERK/MAPK pathway has been shown to decrease DNA methylation via down-regulation of DNA methyltransferases (DNMTs) in several studies suggesting that this pathway plays an important role in regulation of DNA methylation. We examined the relative expression level of seven important genes related to ERK/MAPK pathway and DNMTs (DNMT1, DNMT3a and DNMT3b) by quantitative real-time PCR in buffalo blastocysts produced by Hand-made cloning and compared it with that in blastocyst-stage embryos produced by in vitro fertilization (IVF). The expression level of six of seven genes related to ERK/MAPK pathway examined i.e., p21RAS, RAF1, AKT1, ERK2, PIK3R2 and c-Myc was significantly higher (p &lt; 0.05) in cloned than in IVF embryos. However, the expression level of FOS was lower (p &lt; 0.005) in cloned than in IVF embryos. The relative expression level of DNMT3a and DNMT3b but not that of DNMT1 was significantly higher (p &lt; 0.05) in cloned than in IVF embryos. These results indicate that the cloned embryos exhibit an abnormal expression of several important genes related to ERK/MAPK pathway and DNMTs. Although a direct link between ERK/MAPK pathway and DNMTs was not examined in the present study, it can be speculated that ERK/MAPK pathway may have a role in regulating the expression of DNMTs in embryos, as also observed in other tissues."	"C-type natriuretic peptide analog treatment of craniosynostosis in a Crouzon syndrome mouse model. Activating mutations of fibroblast growth factor receptors (FGFRs) are a major cause of skeletal dysplasias, and thus they are potential targets for pharmaceutical intervention. BMN 111, a C-type natriuretic peptide analog, inhibits FGFR signaling at the level of the RAF1 kinase through natriuretic peptide receptor 2 (NPR2) and has been shown to lengthen the long bones and improve skull morphology in the Fgfr3Y367C/+ thanatophoric dysplasia mouse model. Here we report the effects of BMN 111 in treating craniosynostosis and aberrant skull morphology in the Fgfr2cC342Y/+ Crouzon syndrome mouse model. We first demonstrated that NPR2 is expressed in the murine coronal suture and spheno-occipital synchondrosis in the newborn period. We then gave Fgfr2cC342Y/+ and Fgfr2c+/+ (WT) mice once-daily injections of either vehicle or reported therapeutic levels of BMN 111 between post-natal days 3 and 31. Changes in skeletal morphology, including suture patency, skull dimensions, and long bone length, were assessed by micro-computed tomography. Although BMN 111 treatment significantly increased long bone growth in both WT and mutant mice, skull dimensions and suture patency generally were not significantly affected. A small but significant increase in the relative length of the anterior cranial base was observed. Our results indicate that the differential effects of BMN 111 in treating various skeletal dysplasias may depend on the process of bone formation targeted (endochondral or intramembranous), the specific FGFR mutated, and/or the specific signaling pathway changes due to a given mutation."	"MAST1 Drives Cisplatin Resistance in Human Cancers by Rewiring cRaf-Independent MEK Activation. Platinum-based chemotherapeutics represent a mainstay of cancer therapy, but resistance limits their curative potential. Through a kinome RNAi screen, we identified microtubule-associated serine/threonine kinase 1 (MAST1) as a main driver of cisplatin resistance in human cancers. Mechanistically, cisplatin but no other DNA-damaging agents inhibit the MAPK pathway by dissociating cRaf from MEK1, while MAST1 replaces cRaf to reactivate the MAPK pathway in a cRaf-independent manner. We show clinical evidence that expression of MAST1, both initial and cisplatin-induced, contributes to platinum resistance and worse clinical outcome. Targeting MAST1 with lestaurtinib, a recently identified MAST1 inhibitor, restores cisplatin sensitivity, leading to the synergistic attenuation of cancer cell proliferation and tumor growth in human cancer cells and patient-derived xenograft models."	"Cardiovascular disease in Noonan syndrome. To provide information on the scope of cardiac disease in Noonan syndrome. Noonan syndrome is a common autosomal dominant RASopathy disorder characterized by clinical findings of facial dysmorphism, congenital heart disease, and short stature. The degree of genetic heterogeneity has recently become evident in that Noonan syndrome is now known to be caused by mutations in a large variety of genes which produce dysregulation of the RAS-MAPK (mitogen-activated protein kinase) signaling pathway. The scope of cardiac disease in Noonan syndrome is quite variable depending on the gene mutation, with some mutations usually associated with a high incidence of congenital heart defects (PTPN11, KRAS, and others) while those with predominantly hypertrophic cardiomyopathy (HCM) have higher risk and morbidity profiles (RAF1, RIT1, and those associated with multiple lentigines). Cardiac disease in Noonan syndrome varies according to the type of gene mutation. The most common forms of cardiac disease include pulmonary stenosis, HCM, and atrial septal defect. HCM in general is associated with increased risk, mortality, and morbidity. New concepts for potential treatments are discussed."	"Small molecule inhibition of RAS/MAPK signaling ameliorates developmental pathologies of Kabuki Syndrome. Kabuki Syndrome (KS) is a rare disorder characterized by distinctive facial features, short stature, skeletal abnormalities, and neurodevelopmental deficits. Previously, we showed that loss of function of RAP1A, a RAF1 regulator, can activate the RAS/MAPK pathway and cause KS, an observation recapitulated in other genetic models of the disorder. These data suggested that suppression of this signaling cascade might be of therapeutic benefit for some features of KS. To pursue this possibility, we performed a focused small molecule screen of a series of RAS/MAPK pathway inhibitors, where we tested their ability to rescue disease-relevant phenotypes in a zebrafish model of the most common KS locus, kmt2d. Consistent with a pathway-driven screening paradigm, two of 27 compounds showed reproducible rescue of early developmental pathologies. Further analyses showed that one compound, desmethyl-Dabrafenib (dmDf), induced no overt pathologies in zebrafish embryos but could rescue MEK hyperactivation in vivo and, concomitantly, structural KS-relevant phenotypes in all KS zebrafish models (kmt2d, kmd6a and rap1). Mass spectrometry quantitation suggested that a 100 nM dose resulted in sub-nanomolar exposure of this inhibitor and was sufficient to rescue both mandibular and neurodevelopmental defects. Crucially, germline kmt2d mutants recapitulated the gastrulation movement defects, micrognathia and neurogenesis phenotypes of transient models; treatment with dmDf ameliorated all of them significantly. Taken together, our data reinforce a causal link between MEK hyperactivation and KS and suggest that chemical suppression of BRAF might be of potential clinical utility for some features of this disorder."	"An automated microfluidic gene-editing platform for deciphering cancer genes. Gene-editing techniques such as RNA-guided endonuclease systems are becoming increasingly popular for phenotypic screening. Such screens are normally conducted in arrayed or pooled formats. There has been considerable interest in recent years to find new technological methods for conducting these gene-editing assays. We report here the first digital microfluidic method that can automate arrayed gene-editing in mammalian cells. Specifically, this method was useful in culturing lung cancer cells for up to six days, as well as implementing automated gene transfection and knockout procedures. In addition, a standardized imaging pipeline to analyse fluorescently labelled cells was also designed and implemented during these procedures. A gene editing assay for interrogating the MAPK/ERK pathway was performed to show the utility of our platform and to determine the effects of knocking out the RAF1 gene in lung cancer cells. In addition to gene knockout, we also treated the cells with an inhibitor, Sorafenib Tosylate, to determine the effects of enzymatic inhibition. The combination of enzymatic inhibition and guide targeting on device resulted in lower drug concentrations for achieving half-inhibitory effects (IC50) compared to cells treated only with the inhibitor, confirming that lung cancer cells are being successfully edited on the device. We propose that this system will be useful for other types of gene-editing assays and applications related to personalized medicine."	"PDK1 governs thromboxane generation and thrombosis in platelets by regulating activation of Raf1 in the MAPK pathway: comment. NA"	"PDK1 governs thromboxane generation and thrombosis in platelets by regulating activation of Raf1 in the MAPK pathway: reply. NA"	"Novel oncogene COPS3 interacts with Beclin1 and Raf-1 to regulate metastasis of osteosarcoma through autophagy. Expression of COP9 signalosome subunit 3 (COPS3), an oncogene overexpressed in osteosarcoma, has been demonstrated to be significantly correlated with tumor metastasis. However, the underlying mechanism by which COPS3 promotes metastasis of osteosarcoma and its role in autophagy remain unknown. The expression of COPS3 was detected in primary osteosarcoma tissues and matching lung metastasis tissues by immunohistochemistry (IHC). The effect of COPS3 on the metastasis of osteosarcoma cells was investigated by transwell, wound healing assays and animal studies. Indicated proteins was analyzed by western blotting when COPS3 was knockdown or overexpressed. The COPS3 Interacting protein was determined by immunoprecipitation assay. The relationship between COPS3 and autophagy was detected by western blotting and immunofluorescence. We found that knockdown of COPS3 significantly reduced the lung metastasis of osteosarcoma cells in a mouse model, coinciding with downregulation of mitogen-activated protein kinase (MEK) and extracellular signal-regulated kinase (ERK) signaling. The silencing of COPS3 also inhibited the epithelial-mesenchymal transition (EMT) through the 90 kDa ribosomal S6 kinases (RSK), a family of signal transduction proteins downstream of MEK/ERK. Reciprocal immunoprecipitation assays revealed that COPS3 directly interacts with Raf-1, an upstream regulator of MEK/ERK. Surprisingly, Beclin1, an important autophagic protein, appeared in the COPS3-immunoprecipitates, along with the autophagic markers LC3-I and LC3-II. Loss of COPS3 completely inhibited H2O2-induced autophagic flux and reduced Beclin1 expression. Additionally, autophagy inhibitor or silencing of Beclin1 both decreased cell metastasis. Taken together, these data reveal a novel function of COPS3 in the regulation of autophagy and highlight the relationship between autophagy and metastasis in osteosarcoma cells."	"Ocular findings in Noonan syndrome: a retrospective cohort study of 105 patients. The aim of this retrospective study is to describe ocular findings in a large Noonan syndrome cohort and to detect associations between ocular features and genetic mutations that were not found in earlier studies. We collected ophthalmological and genetic data of 105 patients (median age, 12 years; range, 0-60 years) clinically diagnosed as Noonan syndrome. The ocular findings were linked to the genotypes. All patients with Noonan syndrome showed multiple abnormalities in the categories of vision and refraction, external ocular features, ocular alignment and motility, anterior ocular segment, and posterior ocular segment. In total, 50 patients have NS due to a mutation in PTPN11. Permanent visual impairment (bilateral best-corrected visual acuity &lt; 0.3) was found in 7 patients, including patients with a mutation in RAF1, SHOC2, and KRAS. Keratoconus was found in 2 PTPN11 positive patients, and prominent corneal nerves were observed in a patient with a SOS1 mutation. This study shows an overview of ocular abnormalities in Noonan syndrome, including permanent visual impairment caused by binocular optic nerve abnormalities and nystagmus. Delay in ophthalmological diagnosis is still present, also in patients with visual impairment. All Noonan syndrome patients should have a complete ophthalmological examination at the time of diagnosis. What is Known: • Although we discover more pathogenic mutations in patients with Noonan syndrome, Noonan syndrome still is a clinical diagnosis • Ocular features of Noonan syndrome are characterized by developmental anomalies of the eyelids and associated with other ocular abnormalities in childhood (including refractive errors, strabismus and amblyopia). What is New: • There seems to be a delay in the ophthalmological diagnosis and awareness of the broad variety ofophthalmological features including refractive errors and visual impairment in Noonan syndrome is needed. All children should have a full ophthalmological examination at the time of diagnosis. • Permanent visual impairment (best-corrected visual acuity &lt; 0.3) is found in patients with mutations in RAF1, SHOC2, and KRAS and the cause is probably a developmental disorder of the optic nerves."	"[The effects of microRNA-7 on proliferation and invasion of hepatocellular carcinoma HepG2 cells]. Objective: To investigate the effects of overexpression of microRNA-7 (miR-7) on the proliferation and invasion of HepG2 cells and the underlying mechanism in vitro. Methods: The relative expression levels of miR-7 and Raf1 in hepatocellular carcinoma (HCC) tissues and adjacent normal tissues (ANT) were detected by quantitative real time-PCR (qRT-PCR). The relationship between the expression of miR-7 and the characteristics of HCC patients was analyzed. Cells were divided into blank control group, negative control (NC) group and miR-7 mimics transfected group, miR-7 mimics and NC were transfected into HepG2 cells by Lipofectamine™2000. The relative expression of miR-7 was detected by qRT-PCR. The proliferation ability of HepG2 cells was detected by 3-(4, 5-dimethyl-2-thiazolyl)-2, 5-diphenyl-2-H-tetrazolium bromide (MTT) assay. The invasion of HepG2 cells was detected by Transwell assay. The target genes of miR-7 were predicted by TargetScan and the binding effect of miR-7 on the 3'UTR of Raf1 was verified by dual luciferase reporter assay.The expressions of Raf1 protein in hepatocellular carcinoma tissues, normal tissues and miR-7 mimics transfected HepG2 cells was detected by Western blot. The correlation of the levels of miR-7 and Raf1 mRNA was determined by Pearson correlation analysis. Results: The relative expression level of miR-7 in HCC was 0.49±0.02, significantly lower than in ANT (1.21±0.05, P&lt;0.01). The level of miR-7 was significantly correlated the tumor volume, metastasis and prognosis of HCC patients (P&lt;0.05). The relative expression level of miR-7 in miR-7 mimics transfected HepG2 group was 12.67±0.40, significantly higher than that in blank group (P&lt;0.01). Compared with the blank group, the A value and invasion ability of miR-7 mimics transfected group were significantly down-regulated at 48 hours and 72 hours after transfection (P&lt;0.01). Compared with miR-7 NC group, the luciferase activity of wild-type Raf1 reporter gene in miR-7 mimics transfected group was significantly reduced (P&lt;0.01). The relative expression of Raf1 protein in HCC was 3.15±0.10, significant higher than in ANT (0.53±0.03, P&lt;0.01). The relative expression of Raf1 protein in miR-7 mimics transfected group was 0.24±0.01, significantly lower than in miR-7 NC group (0.98±0.02, P&lt;0.01). Furthermore, an negative correlation was observed between the levels of miR-7 and Raf1 in HCC tissues (P&lt;0.05). Conclusions: The expression of miR-7 in HCC is significantly decreased and inversely correlated with poor survival of HCC patients. Overexpression of miR-7 can inhibit the proliferation and invasion ability of hepatocellular carcinoma cells HepG2 by downregulating Raf1 in vitro. 目的: 探讨过表达微小RNA-7(miR-7)对肝癌HepG2细胞体外增殖和侵袭能力的影响及调控机制。 方法: 采用实时荧光定量PCR法检测肝癌组织和癌旁正常组织中miR-7 mRNA和Raf1 mRNA的表达,分析miR-7 mRNA的表达与肝癌患者临床病理特征的关系。将肝癌HepG2细胞分为空白对照组、miR-7阴性对照组和miR-7模拟物转染组,采用脂质体转染技术将miR-7模拟物和阴性对照瞬时转染HepG2细胞,以实时荧光定量PCR法检测miR-7 mRNA的表达,采用四甲基偶氮唑蓝(MTT)法检测不同时间点各组细胞的增殖活性,采用Transwell侵袭实验检测各组侵袭细胞数目。通过TargetScan在线预测miR-7作用的靶基因,采用荧光素酶报告基因实验验证miR-7对预测靶基因Raf1的3′非翻译区的靶向作用。采用Western blot法检测肝癌组织、相邻正常组织和各组细胞中Raf1蛋白的表达。采用Pearson法分析miR-7 mRNA与Raf1 mRNA表达的相关性。 结果: 肝癌组织和相邻正常组织中miR-7 mRNA的相对表达水平分别为0.49±0.02和1.21±0.05,差异有统计学意义(P&lt;0.01);miR-7 mRNA的表达水平与肿瘤大小、是否转移和预后有关(均P&lt;0.05)。miR-7模拟物转染组HepG2细胞中miR-7 mRNA的相对表达量为12.67±0.40,明显高于空白对照组(0.49±0.01,P&lt;0.01)。与空白对照组比较,转染48和72 h时,miR-7模拟物转染组的吸光度明显降低(P&lt;0.01),侵袭细胞数目明显减少(P&lt;0.01),野生型Raf1报告基因的荧光素酶活性明显降低(P&lt;0.01)。肝癌组织和相邻正常组织中Raf1蛋白的相对表达量分别为3.15±0.10和0.53±0.03,差异有统计学意义(P&lt;0.01)。miR-7阴性对照组和miR-7模拟物转染组HepG2细胞中Raf1蛋白的相对表达量分别为0.98±0.02和0.24±0.01,差异有统计学意义(P&lt;0.01);肝癌组织中miR-7与Raf1的表达呈负相关(P&lt;0.05)。 结论: miR-7在肝癌组织中的表达明显降低,与肝癌患者的较差预后相关;miR-7能通过调控Raf1基因的表达抑制肝癌HepG2细胞的体外增殖和侵袭能力。."	"Comparative assessment of gene-specific variant distribution in prenatal and postnatal cohorts tested for Noonan syndrome and related conditions. To compare the pattern of gene-specific involvement and the spectrum of variants observed in prenatal and postnatal (mean ± SD, 8.9 ± 9.4 years) cohorts tested for Noonan syndrome and related conditions. Outcomes of sequencing panel testing were compared between prenatal (n = 845) and postnatal (n = 409) cohorts. PTPN11 and SOS1 harbored the majority of observed variants in both prenatal and postnatal cohorts, and BRAF, HRAS, KRAS, MAP2K1, MAP2K2, RAF1, and SHOC2 had similarities in their pattern of involvement in both cohorts. PTPN11 was the largest contributor of pathogenic variants and had the lowest frequency of variants of uncertain significance (VUS). SOS1 had the highest VUS frequency in both cohorts. The overall VUS frequency was twice as high in prenatal specimens (58.1 vs. 29.3%). PTPN11 and SOS1 had a 1.5-fold higher VUS frequency in the prenatal cohort (10.7 vs. 7.4% and 95 vs. 61.1%, respectively). The diagnostic yield was 3.7% for prenatal samples, with a higher yield of 12.3% in fetuses with cystic hygroma as a sole finding, and 21.3% for postnatal. Comparison of prenatal versus postnatal specimens demonstrates that the pattern of specific gene involvement is similar, whereas the classification spectrum of observed variants differs considerably."	"Inhibitory effect of SLIT2 on granulosa cell proliferation mediated by the CDC42-PAKs-ERK1/2 MAPK pathway in the prehierarchical follicles of the chicken ovary. The SLIT2 ligand and ROBO receptors of the SLIT/ROBO pathway are expressed in hen ovarian follicles and have been shown to play critical roles in ovary development, cell proliferation and apoptosis in mammals. However, the exact roles of SLIT2 and the molecular mechanisms of chicken follicle development remain poorly understood. Here, we discovered that high levels of SLIT2 suppress FSHR, GDF9, STAR and CYP11A1 mRNA and protein expression in granulosa cells (GCs) and cell proliferation (p &lt; 0.01). However, these inhibitory effects can be abolished by the siRNA-mediated knockdown of the ROBO1 and ROBO2 receptors. Furthermore, the activity of CDC42, which is a key Rho GTPase in the SLIT/ROBO pathway, is regulated by the ligand SLIT2 because the intrinsic GTPase activation activity of CDC42 is activated or repressed by regulating SRGAP1 expression (p &lt; 0.01). The effects of the SLIT2 overexpression on GC proliferation and phosphorylation of the B-RAF, RAF1 and ERK1/2 kinases were completely abrogated by knocking down endogenous PAK1 and partially abrogated by the knockdown of PAK2 and PAK3 in the GCs. Collectively, our findings indicate that SLIT2 suppresses GC proliferation, differentiation and follicle selection mainly by a mechanism involving ROBO1 and ROBO2 and that this suppression is mediated by the CDC42-PAKs-ERK1/2 MAPK signaling cascade in the prehierarchical follicles of the chicken ovary."	"Cooperative multi-targeting of signaling networks by angiomiR-204 inhibits vasculogenic mimicry in breast cancer cells. RNA-based multi-target therapies focused in the blocking of signaling pathways represent an attractive approach in cancer. Here, we uncovered a miR-204 cooperative targeting of multiple signaling transducers involved in vasculogenic mimicry (VM). Our data showed that invasive triple negative MDA-MB-231 and Hs-578T breast cancer cells, but not poorly invasive MCF-7 cells, efficiently undergoes matrix-associated VM under hypoxia. Ectopic restoration of miR-204 in MDA-MB-231 cells leads to a potent inhibition of VM and reduction of number of branch points and patterned 3D channels. Further analysis of activation state of multiple signaling pathways using Phosphorylation Antibody Arrays revealed that miR-204 reduced the expression and phosphorylation levels of 13 proteins involved in PI3K/AKT, RAF1/MAPK, VEGF, and FAK/SRC signaling. In agreement with phospho-proteomic profiling, VM was impaired following pharmacological administration of PI3K and SRC inhibitors. Mechanistic studies confirmed that miR-204 exerts a negative post-transcriptional regulation of PI3K-α and c-SRC proto-oncogenes. Moreover, overall survival analysis of a large cohort of breast cancer patients indicates that low miR-204 and high FAK/SRC levels were associated with worst outcomes. In conclusion, our study provides novel lines of evidence indicating that miR-204 may exerts a fine-tuning regulation of the synergistic transduction of PI3K/AKT/FAK mediators critical in VM formation."	"Luteolin attenuates neutrophilic oxidative stress and inflammatory arthritis by inhibiting Raf1 activity. Neutrophils play a significant role in inflammatory tissue injury. Activated neutrophils produce reactive oxygen species (ROS), release proteases, and form neutrophil extracellular traps (NETs), significantly affecting the pathogenesis of inflammatory arthritis. We examined the therapeutic effects of luteolin, a flavone found in many plants, in neutrophilic inflammation and on acute inflammatory arthritis. Luteolin significantly inhibited superoxide anion generation, ROS production, and NET formation in human neutrophils. The increase in elastase release, CD11b expression, and chemotaxis was also inhibited by luteolin. Luteolin significantly suppressed phosphorylation of extracellular signal-regulated kinase (Erk) and mitogen-activated protein kinase kinase-1 (MEK-1), but not c-Jun N-terminal kinase (JNK) and p38 mitogen-activated protein kinase (MAPK). Analysis of the molecular mechanism further revealed that luteolin acts as a Raf-1 inhibitor. In mice with complete Freund's adjuvant-induced arthritis, luteolin ameliorated neutrophil infiltration as well as the thickness of paw edema and ROS production. In conclusion, in addition to its known ROS scavenging effect, this study is the first to provide evidence that luteolin diminishes human neutrophil inflammatory responses by inhibiting Raf1-MEK-1-Erk. Our results focused on the importance of neutrophil activation in inflammatory tissue injury and offer opportunities for the development of luteolin's therapeutic potential to attenuate neutrophilic inflammatory diseases."	"The genetic landscape of ganglioglioma. Ganglioglioma is the most common epilepsy-associated neoplasm that accounts for approximately 2% of all primary brain tumors. While a subset of gangliogliomas are known to harbor the activating p.V600E mutation in the BRAF oncogene, the genetic alterations responsible for the remainder are largely unknown, as is the spectrum of any additional cooperating gene mutations or copy number alterations. We performed targeted next-generation sequencing that provides comprehensive assessment of mutations, gene fusions, and copy number alterations on a cohort of 40 gangliogliomas. Thirty-six harbored mutations predicted to activate the MAP kinase signaling pathway, including 18 with BRAF p.V600E mutation, 5 with variant BRAF mutation (including 4 cases with novel in-frame insertions at p.R506 in the β3-αC loop of the kinase domain), 4 with BRAF fusion, 2 with KRAS mutation, 1 with RAF1 fusion, 1 with biallelic NF1 mutation, and 5 with FGFR1/2 alterations. Three gangliogliomas with BRAF p.V600E mutation had concurrent CDKN2A homozygous deletion and one additionally harbored a subclonal mutation in PTEN. Otherwise, no additional pathogenic mutations, fusions, amplifications, or deletions were identified in any of the other tumors. Amongst the 4 gangliogliomas without canonical MAP kinase pathway alterations identified, one epilepsy-associated tumor in the temporal lobe of a young child was found to harbor a novel ABL2-GAB2 gene fusion. The underlying genetic alterations did not show significant association with patient age or disease progression/recurrence in this cohort. Together, this study highlights that ganglioglioma is characterized by genetic alterations that activate the MAP kinase pathway, with only a small subset of cases that harbor additional pathogenic alterations such as CDKN2A deletion."	"Complex Landscape of Germline Variants in Brazilian Patients With Hereditary and Early Onset Breast Cancer. Pathogenic variants in known breast cancer (BC) predisposing genes explain only about 30% of Hereditary Breast Cancer (HBC) cases, whereas the underlying genetic factors for most families remain unknown. Here, we used whole-exome sequencing (WES) to identify genetic variants associated to HBC in 17 patients of Brazil with familial BC and negative for causal variants in major BC risk genes (BRCA1/2, TP53, and CHEK2 c.1100delC). First, we searched for rare variants in 27 known HBC genes and identified two patients harboring truncating pathogenic variants in ATM and BARD1. For the remaining 15 negative patients, we found a substantial vast number of rare genetic variants. Thus, for selecting the most promising variants we used functional-based variant prioritization, followed by NGS validation, analysis in a control group, cosegregation analysis in one family and comparison with previous WES studies, shrinking our list to 23 novel BC candidate genes, which were evaluated in an independent cohort of 42 high-risk BC patients. Rare and possibly damaging variants were identified in 12 candidate genes in this cohort, including variants in DNA repair genes (ERCC1 and SXL4) and other cancer-related genes (NOTCH2, ERBB2, MST1R, and RAF1). Overall, this is the first WES study applied for identifying novel genes associated to HBC in Brazilian patients, in which we provide a set of putative BC predisposing genes. We also underpin the value of using WES for assessing the complex landscape of HBC susceptibility, especially in less characterized populations."	"New insights into donor directionality of mating-type switching in Schizosaccharomyces pombe. Mating-type switching in Schizosaccharomyces pombe entails programmed gene conversion events regulated by DNA replication, heterochromatin, and the HP1-like chromodomain protein Swi6. The whole mechanism remains to be fully understood. Using a gene deletion library, we screened ~ 3400 mutants for defects in the donor selection step where a heterochromatic locus, mat2-P or mat3-M, is chosen to convert the expressed mat1 locus. By measuring the biases in mat1 content that result from faulty directionality, we identified in total 20 factors required for donor selection. Unexpectedly, these included the histone H3 lysine 4 (H3K4) methyltransferase complex subunits Set1, Swd1, Swd2, Swd3, Spf1 and Ash2, the BRE1-like ubiquitin ligase Brl2 and the Elongator complex subunit Elp6. The mutant defects were investigated in strains with reversed donor loci (mat2-M mat3-P) or when the SRE2 and SRE3 recombination enhancers, adjacent to the donors, were deleted or transposed. Mutants in Set1C, Brl2 or Elp6 altered balanced donor usage away from mat2 and the SRE2 enhancer, towards mat3 and the SRE3 enhancer. The defects in these mutants were qualitatively similar to heterochromatin mutants lacking Swi6, the NAD+-dependent histone deacetylase Sir2, or the Clr4, Raf1 or Rik1 subunits of the histone H3 lysine 9 (H3K9) methyltransferase complex, albeit not as extreme. Other mutants showed clonal biases in switching. This was the case for mutants in the NAD+-independent deacetylase complex subunits Clr1, Clr2 and Clr3, the casein kinase CK2 subunit Ckb1, the ubiquitin ligase component Pof3, and the CENP-B homologue Cbp1, as well as for double mutants lacking Swi6 and Brl2, Pof3, or Cbp1. Thus, we propose that Set1C cooperates with Swi6 and heterochromatin to direct donor choice to mat2-P in M cells, perhaps by inhibiting the SRE3 recombination enhancer, and that in the absence of Swi6 other factors are still capable of imposing biases to donor choice."	"Molecularly defined diffuse leptomeningeal glioneuronal tumor (DLGNT) comprises two subgroups with distinct clinical and genetic features. Diffuse leptomeningeal glioneuronal tumors (DLGNT) represent rare CNS neoplasms which have been included in the 2016 update of the WHO classification. The wide spectrum of histopathological and radiological features can make this enigmatic tumor entity difficult to diagnose. In recent years, large-scale genomic and epigenomic analyses have afforded insight into key genetic alterations occurring in multiple types of brain tumors and provide unbiased, complementary tools to improve diagnostic accuracy. Through genome-wide DNA methylation screening of &gt; 25,000 tumors, we discovered a molecularly distinct class comprising 30 tumors, mostly diagnosed histologically as DLGNTs. Copy-number profiles derived from the methylation arrays revealed unifying characteristics, including loss of chromosomal arm 1p in all cases. Furthermore, this molecular DLGNT class can be subdivided into two subgroups [DLGNT methylation class (MC)-1 and DLGNT methylation class (MC)-2], with all DLGNT-MC-2 additionally displaying a gain of chromosomal arm 1q. Co-deletion of 1p/19q, commonly seen in IDH-mutant oligodendroglioma, was frequently observed in DLGNT, especially in DLGNT-MC-1 cases. Both subgroups also had recurrent genetic alterations leading to an aberrant MAPK/ERK pathway, with KIAA1549:BRAF fusion being the most frequent event. Other alterations included fusions of NTRK1/2/3 and TRIM33:RAF1, adding up to an MAPK/ERK pathway activation identified in 80% of cases. In the DLGNT-MC-1 group, age at diagnosis was significantly lower (median 5 vs 14 years, p &lt; 0.01) and clinical course less aggressive (5-year OS 100, vs 43% in DLGNT-MC-2). Our study proposes an additional molecular layer to the current histopathological classification of DLGNT, of particular use for cases without typical morphological or radiological characteristics, such as diffuse growth and radiologic leptomeningeal dissemination. Recurrent 1p deletion and MAPK/ERK pathway activation represent diagnostic biomarkers and therapeutic targets, respectively-laying the foundation for future clinical trials with, e.g., MEK inhibitors that may improve the clinical outcome of patients with DLGNT."	"Genetic heterogeneity and actionable mutations in HER2-positive primary breast cancers and their brain metastases. Brain metastases constitute a challenge in the management of patients with HER2-positive breast cancer treated with anti-HER2 systemic therapies. Here we sought to define the repertoire of mutations private to or enriched for in HER2-positive brain metastases. Massively parallel sequencing targeting all exons of 254 genes frequently mutated in breast cancers and/or related to DNA repair was used to characterize the spatial and temporal heterogeneity of HER2-positive breast cancers and their brain metastases in six patients. Data were analyzed with state-of-the-art bioinformatics algorithms and selected mutations were validated with orthogonal methods. Spatial and temporal inter-lesion genetic heterogeneity was observed in the HER2-positive brain metastases from an index patient subjected to a rapid autopsy. Genetic alterations restricted to the brain metastases included mutations in cancer genes FGFR2, PIK3CA and ATR, homozygous deletion in CDKN2A and amplification in KRAS. Shifts in clonal composition and the acquisition of additional mutations in the progression from primary HER2-positive breast cancer to brain metastases following anti-HER2 therapy were investigated in additional five patients. Likely pathogenic mutations private to or enriched in the brain lesions affected cancer and clinically actionable genes, including ATR, BRAF, FGFR2, MAP2K4, PIK3CA, RAF1 and TP53. Changes in clonal composition and the acquisition of additional mutations in brain metastases may affect potentially actionable genes in HER2-positive breast cancers. Our observations have potential clinical implications, given that treatment decisions for patients with brain metastatic disease are still mainly based on biomarkers assessed in the primary tumor."	"SUV39H1/DNMT3A-dependent methylation of the RB1 promoter stimulates PIN1 expression and melanoma development. Melanoma is among the most aggressive and treatment-resistant human cancers. Aberrant histone H3 methylation at Lys 9 (H3K9) correlates with carcinogenic gene silencing, but the significance of suppressor of variegation 3-9 homolog 1 (SUV39H1), an H3K9-specific methyltransferase, in melanoma initiation and progression remains unclear. Here, we show that SUV39H1-mediated H3K9 trimethylation facilitates retinoblastoma ( RB) 1 promoter CpG island methylation by interacting with DNA methyltransferase 3A and decreasing RB mRNA and protein in melanoma cells. Reduced RB abundance, in turn, impairs E2F1 transcriptional inhibition, leading to increased peptidyl-prolyl cis-trans isomerase never-in-mitosis A (NIMA)-interacting 1 (PIN1) levels, human keratinocyte neoplastic cell transformation, and melanoma tumorigenesis via enhanced rapidly accelerated fibrosarcoma 1(RAF1)-MEK-ERK signaling pathway activation. In a synergistic model with B16-F1 murine melanoma cells, SUV39H1 and PIN1 overexpression increased melanoma growth, which was abrogated by their inhibition in SUV39H1-overexpressing B16-F1 mice. SUV39H1 also positively correlated with PIN1 expression in human melanoma. Our studies establish SUV39H1 as an oncogene in melanoma and underscore the role of chromatin factors in regulating tumorigenesis.-Kim, G., Kim, J.-Y., Lim, S.-C., Lee, K. Y., Kim, O., Choi, H. S. SUV39H1/DNMT3A-dependent methylation of the RB1 promoter stimulates PIN1 expression and melanoma development."	"Inhibition of Raf1 ameliorates bleomycin-induced pulmonary fibrosis through attenuation of TGF-β1 signaling. Idiopathic pulmonary fibrosis (IPF) is a fatal fibrotic lung disease associated with aberrant activation and differentiation of fibroblasts, leading to abnormal extracellular matrix production. Currently, it is still an untreatable disease (except for lung transplantation). Here, we demonstrate that the Raf1 inhibitor GW5074 ameliorates lung fibrosis in bleomycin-induced pulmonary fibrosis. Posttreatment with GW5074 reduced fibronectin (FN) expression, collagen deposition, and inflammatory cell infiltration in bleomycin-challenged mice, suggesting an antifibrotic property of GW5074. To determine the molecular mechanisms by which inhibition of Raf1 ameliorates lung fibrosis, we investigated the role of Raf1 in TGF-β1 signaling in human lung fibroblasts. GW5074 or downregulation of Raf1 by siRNAs significantly attenuated TGF-β1-induced smooth muscle actin, FN, and collagen I expression, whereas overexpression of Raf1 promoted the effects of TGF-β1 in lung fibroblasts. Furthermore, we found that Raf1-promoted TGF-β1 signaling was through the Raf1/ERK/Smad pathway and contributed to the cell proliferation and migration in human lung fibroblasts. This study provides preclinical and mechanistic evidence for development of Raf1 inhibitors as potential antifibrotic drugs for the treatment of IPF."	"NGS testing for cardiomyopathy: Utility of adding RASopathy-associated genes. RASopathies include a group of syndromes caused by pathogenic germline variants in RAS-MAPK pathway genes and typically present with facial dysmorphology, cardiovascular disease, and musculoskeletal anomalies. Recently, variants in RASopathy-associated genes have been reported in individuals with apparently nonsyndromic cardiomyopathy, suggesting that subtle features may be overlooked. To determine the utility and burden of adding RASopathy-associated genes to cardiomyopathy panels, we tested 11 RASopathy-associated genes by next-generation sequencing (NGS), including NGS-based copy number variant assessment, in 1,111 individuals referred for genetic testing for hypertrophic cardiomyopathy (HCM) or dilated cardiomyopathy (DCM). Disease-causing variants were identified in 0.6% (four of 692) of individuals with HCM, including three missense variants in the PTPN11, SOS1, and BRAF genes. Overall, 36 variants of uncertain significance (VUSs) were identified, averaging ∼3VUSs/100 cases. This study demonstrates that adding a subset of the RASopathy-associated genes to cardiomyopathy panels will increase clinical diagnoses without significantly increasing the number of VUSs/case."	"Nevus anemicus and RASopathies. NA"	"Acid Stimulation of the Citrate Transporter NaDC-1 Requires Pyk2 and ERK1/2 Signaling Pathways. Background Urine citrate is reabsorbed exclusively along the renal proximal tubule via the apical Na<sup>+</sup>-dicarboxylate cotransporter NaDC-1. We previously showed that an acid load in vivo and media acidification in vitro increase NaDC-1 activity through endothelin-1 (ET-1)/endothelin B (ETB) signaling. Here, we further examined the signaling pathway mediating acid-induced NaDC-1 activity.Methods We transiently transfected cultured opossum kidney cells, a model of the proximal tubule, with NaDC-1 and ETB and measured [<sup>14</sup>C]-citrate uptake after media acidification under various experimental conditions, including inactivation of Pyk2 and c-Src, which were previously shown to be activated by media acidification. Wild-type (Pyk2<sup>+/+</sup>) and Pyk2-null (Pyk2<sup>-/-</sup>) mice were exposed to NH4Cl loading and euthanized after various end points, at which time we harvested the kidneys for immunoblotting and brush border membrane NaDC-1 activity studies.Results Inhibition of Pyk2 or c-Src prevented acid stimulation but not ET-1 stimulation of NaDC-1 in vitro Consistent with these results, NH4Cl loading stimulated NaDC-1 activity in kidneys of wild-type but not Pyk2<sup>-/-</sup> mice. In cultured cells and in mice, ERK1/2 was rapidly phosphorylated by acid loading, even after Pyk2 knockdown, and it was required for acid but not ET-1/ETB stimulation of NaDC-1 in vitro Media acidification also induced the phosphorylation of Raf1 and p90RSK, components of the ERK1/2 pathway, and inhibition of these proteins blocked acid stimulation of NaDC-1 activity.Conclusions Acid stimulation of NaDC-1 activity involves Pyk2/c-Src and Raf1-ERK1/2-p90RSK signaling pathways, but these pathways are not downstream of ET-1/ETB in this process."	"Pre-clinical validation of a next generation sequencing testing panel. Next Generation Sequencing (NGS) has become a useful tool for gene mutation testing which is required for targeted therapies. The aim of this study was to validate the GeneRead QIAact Actionable Insights Tumor Panel (Qiagen) on the GeneReader System in a diagnostic laboratory setting. The GeneRead QIAact Actionable Insights Tumor Panel allows the analysis of 773 variant positions in 12 genes (ALK, BRAF, EGFR, ERBB2, ERBB3, ESR1, KIT, KRAS, NRAS, PDGFRA, PIK3CA and RAF1). For the validation of the panel we used a commercial available multiplex reference standard carrying 11 mutations in defined positions, samples from interlaboratory tests, and FFPE tumor samples from patients which were tested previously for mutations in KRAS, NRAS, BRAF, EGFR, KIT, and/or PDGFRA with pyrosequencing. Among the 122 tested samples, 121 samples (99.2%) were successfully sequenced. The sensitivity and specificity for detecting variants was 100% and results proved to be reproducible and precise. 119 (98.3%) results were concordant to the expected results. The differences between NGS and pyrosequencing observed in two samples were due to a wrong analysis by the pyrosequencing software which did not cover the present mutations. Overall, the GeneRead QIAact Actionable Insights Tumor Panel was specific and sensitive for mutation analysis for targeted therapies and can be incorporated into laboratory diagnostics' daily practice."	"A Network Pharmacology Approach to Uncover the Multiple Mechanisms of Hedyotis diffusa Willd. on Colorectal Cancer. As one of the most frequently diagnosed cancer diseases globally, colorectal cancer (CRC) remains an important cause of cancer-related death. Although the traditional Chinese herb Hedyotis diffusa Willd. (HDW) has been proven to be effective for treating CRC in clinical practice, its definite mechanisms have not been completely deciphered. The aim of our research is to systematically explore the multiple mechanisms of HDW on CRC. This study adopted the network pharmacology approach, which was mainly composed of active component gathering, target prediction, CRC gene collection, network analysis, and gene enrichment analysis. The network analysis showed that 10 targets might be the therapeutic targets of HDW on CRC, namely, HRAS, PIK3CA, KRAS, TP53, APC, BRAF, GSK3B, CDK2, AKT1, and RAF1. The gene enrichment analysis implied that HDW probably benefits patients with CRC by modulating pathways related to cancers, infectious diseases, endocrine system, immune system, nervous system, signal transduction, cellular community, and cell motility. This study partially verified and predicted the pharmacological and molecular mechanism of HDW against CRC from a holistic perspective, which will also lay a foundation for the further experimental research and clinical rational application of HDW."	"Rubisco Assembly in the Chloroplast. Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco) catalyzes the rate-limiting step in the Calvin-Benson cycle, which transforms atmospheric carbon into a biologically useful carbon source. The slow catalytic rate of Rubisco and low substrate specificity necessitate the production of high levels of this enzyme. In order to engineer a more efficient plant Rubisco, we need to better understand its folding and assembly process. Form I Rubisco, found in green algae and vascular plants, is a hexadecamer composed of 8 large subunits (RbcL), encoded by the chloroplast genome and 8 small, nuclear-encoded subunits (RbcS). Unlike its cyanobacterial homolog, which can be reconstituted in vitro or in E. coli, assisted by bacterial chaperonins (GroEL-GroES) and the RbcX chaperone, biogenesis of functional chloroplast Rubisco requires Cpn60-Cpn20, the chloroplast homologs of GroEL-GroES, and additional auxiliary factors, including Rubisco accumulation factor 1 (Raf1), Rubisco accumulation factor 2 (Raf2) and Bundle sheath defective 2 (Bsd2). The discovery and characterization of these factors paved the way for Arabidopsis Rubisco assembly in E. coli. In the present review, we discuss the uniqueness of hetero-oligomeric chaperonin complex for RbcL folding, as well as the sequential or concurrent actions of the post-chaperonin chaperones in holoenzyme assembly. The exact stages at which each assembly factor functions are yet to be determined. Expression of Arabidopsis Rubisco in E. coli provided some insight regarding the potential roles for Raf1 and RbcX in facilitating RbcL oligomerization, for Bsd2 in stabilizing the oligomeric core prior to holoenzyme assembly, and for Raf2 in interacting with both RbcL and RbcS. In the long term, functional characterization of each known factor along with the potential discovery and characterization of additional factors will set the stage for designing more efficient plants, with a greater biomass, for use in biofuels and sustenance."	"Complex Chaperone Dependence of Rubisco Biogenesis. Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco), a ∼530 kDa complex of 8 large (RbcL) and 8 small subunits (RbcS), mediates the fixation of atmospheric CO2 into usable sugars during photosynthesis. Despite its fundamental role, Rubisco is a remarkably inefficient enzyme and thus is produced by plants in huge amounts. It has long been a key target for bioengineering with the goal to increase crop yields. However, such efforts have been hampered by the complex requirement of Rubisco biogenesis for molecular chaperones. Recent studies have identified an array of auxiliary factors needed for the folding and assembly of the Rubisco subunits. The folding of plant RbcL subunits is mediated by the cylindrical chloroplast chaperonin, Cpn60, and its cofactor Cpn20. Folded RbcL requires a number of additional Rubisco specific assembly chaperones, including RbcX, Rubisco accumulation factors 1 (Raf1) and 2 (Raf2), and the Bundle sheath defective-2 (BSD2), to mediate the assembly of the RbcL8 intermediate complex. Incorporation of the RbcS and displacement of the assembly factors generates the active holoenzyme. An Escherichia coli strain expressing the chloroplast chaperonin and auxiliary factors now allows the expression of functional plant Rubisco, paving the way for Rubisco engineering by large scale mutagenesis. Here, we review our current understanding on how these chaperones cooperate to produce one of the most important enzymes in nature."	"PDK1 governs thromboxane generation and thrombosis in platelets by regulating activation of Raf1 in the MAPK pathway. Essentials Phosphoinositide 3-kinase and MAPK pathways crosstalk via PDK1. PDK1 is required for adenosine diphosphate-induced platelet activation and thromboxane generation. PDK1 regulates RAF proto-oncogene Ser/Thr kinase (Raf1) activation in the MAPK pathway. Genetic ablation of PDK1 protects against platelet-dependent thrombosis in vivo. Background Platelets are dynamic effector cells with functions that span hemostatic, thrombotic and inflammatory continua. Phosphoinositide-dependent protein kinase 1 (PDK1) regulates protease-activated receptor 4-induced platelet activation and thrombus formation through glycogen synthase kinase3β. However, whether PDK1 also signals through the ADP receptor and its functional importance in vivo remain unknown. Objective To establish the mechanism of PDK1 in ADP-induced platelet activation and thrombosis. Methods We assessed the role of PDK1 on 2MeSADP-induced platelet activation by measuring aggregation, thromboxane generation and phosphorylation events in the presence of BX-795, which inhibits PDK1, or by using platelet-specific PDK1 knockout mice and performing western blot analysis. PDK1 function in thrombus formation was assessed with an in vivo pulmonary embolism model. Results PDK1 inhibition with BX-795 reduced 2-methylthio-ADP (2MeSADP)-induced aggregation of human and murine platelets by abolishing thromboxane generation. Similar results were observed in pdk1<sup>-/-</sup> mice. PDK1 was also necessary for the phosphorylation of mitogen-activated protein kinase kinase 1/2 (MEK1/2), extracellular signal-regulated kinase 1/2, and cytosolic phospholipase A2, indicating that PDK1 regulates an upstream kinase in the mitogen-activated protein kinase (MAPK) pathway. We next determined that this upstream kinase is Raf-1, a serine/threonine kinase that is necessary for the phosphorylation of MEK1/2, as pharmacological inhibition and genetic ablation of PDK1 were sufficient to prevent Raf1 phosphorylation. Furthermore, in vivo inhibition or genetic ablation of PDK1 protected mice from collagen/epinephrine-induced pulmonary embolism. Conclusion PDK1 governs thromboxane generation and thrombosis in platelets that are stimulated with 2MeSADP by regulating activation of the MAPK pathway."	"TRPC1/3/6 inhibition attenuates the TGF-β1-induced epithelial-mesenchymal transition in gastric cancer via the Ras/Raf1/ERK signaling pathway. Gastric cancer (GC) is one of the most common malignancies worldwide. TGF-β1 induces the epithelial-mesenchymal transition (EMT) in GC, mainly through Smad-dependent pathways. Nevertheless, few studies have focused on the activation of non-canonical transduction pathways. TRPC, Ca<sup>2+</sup> entry channels, are ubiquitously expressed in various cell types and are involved in many cellular functions. However, their roles in GC are not well elucidated. This study aimed to determine whether TRPC participates in the TGF-β1-induced EMT of GC and to investigate the potential mechanisms. Immunofluorescence staining was performed to examine the distribution and expression of TRPCs and EMT-related proteins in SGC-7901 cells incubated with or without TGF-β1. The expression of TRPC1/3/6 and EMT-related molecules, including E-cadherin, vimentin, and α-SMA, was detected by qRT-PCR and Western blotting. Additionally, the underlying mechanism was determined by treating cells with pharmacological inhibitors and examining the levels of proteins involved in the main signaling cascades using Western blotting. TRPC1/3/6 were expressed at high levels in SGC-7901 cells. Following TGF-β1 stimulation, the expression of vimentin, α-SMA, and TRPC1/3/6 increased and E-cadherin expression decreased, accompanied by activation of the Ras/Raf1/ERK1/2 signaling pathway. Notably, activation of the Ras/Raf1/ERK1/2 signaling cascade was suppressed by SKF96365 and 2-APB. Both TRPC and ERK inhibitors mitigated EMT progression. Based on these results, TRPC1/3/6 inhibition attenuated the TGF-β1-induced EMT in GC by suppressing Ras/Raf1/ERK signal transduction."	"LncRNA NEAT1/let-7a-5p axis regulates the cisplatin resistance in nasopharyngeal carcinoma by targeting Rsf-1 and modulating the Ras-MAPK pathway. The long non-coding RNA nuclear paraspeckle assembly transcript 1 (NEAT1) was reported to be upregulated and be involved in oncogenic growth and drug resistance in nasopharyngeal carcinoma (NPC). However, the exact roles of NEAT1 and its underlying mechanisms in the drug resistance of NPC remain largely unclear. In this study, the expressions of NEAT1, let-72-5p and Rsf-1 mRNA were detected by reverse transcription-quantitative polymerase chain reaction (RT-qPCR). The effects of NEAT1 and let-72-5p on cell proliferation and cisplatin resistance of NPC cells were investigated by 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyl tetrazolium bromide (MTT) assay and 5-ethynyl-20-deoxyuridine (EdU) assay. Western blot analysis was performed to detect the protein levels of Rsf-1, Ras, p-Raf1, Raf1, p-MEK1, MEK1, p-ERK1/2 and ERK1/2. Xenograft tumor assay was done to elucidate the role of NEAT1 involved in NPC tumor growth in vivo. We found that NEAT1 was upregulated and let-7a-5p was downregulated in NPC tissues, as well as NPC cell lines. Inhibition of NEAT1 markedly repressed the cisplatin resistance of NPC cells. NEAT1 was demonstrated to interact with let-7a-5p. Besides, a negative correlation between NEAT1 and let-7a-5p expression was observed in NPC tissues. Rsf-1 was confirmed as a target of let-7a-5p. NEAT1 remarkably reversed the inhibitory effect of let-7q-5p on the cisplatin resistance of NPC cells in vitro. Additionally, NEAT1 knockdown inhibited the Ras-MAPK pathway in NPC cells. NEAT1 knockdown suppressed tumor growth in the presence of cisplatin in vivo. Overall, these findings suggest that NEAT1/let-7a-5p axis regulates the cisplatin resistance in NPC by targeting Rsf-1 and modulating the Ras-MAPK signaling pathway."	"Metformin Promotes HaCaT Cell Apoptosis through Generation of Reactive Oxygen Species via Raf-1-ERK1/2-Nrf2 Inactivation. Although metformin (MET) may be useful for the treatment of psoriasis, the mechanisms underlying its method of action have yet to be fully elucidated. Here, the relationship between MET function and reactive oxygen species (ROS) levels and the underlying mechanism were explored in human immortalized keratinocyte cell line (HaCaT). HaCaT cells were incubated with MET at 0, 10, 20, 40, and 60 mM for 24 h. The cell viability was evaluated by the CCK-8 assay. The cell apoptosis rate and intracellular ROS levels were examined using flow cytometry. The protein expression and the phosphorylation levels of nuclear factor erythroid-derived 2 related factor 2 (Nrf2), Raf-1, and ERK1/2 were assessed by Western blot. The specific ROS scavenger N-acetyl-cysteine (NAC) and the specific Nrf2 agonist Oltipraz (OPZ) were used to analyze the effect of MET. MET decreased HaCaT cell proliferation and induced HaCaT cell apoptosis in a dose-dependent manner. MET was found to elevate intracellular ROS levels in a dose-dependent manner, while pretreatment with NAC attenuated these effects. MET inhibits the protein expression and the phosphorylation levels of Nrf2. The combination of OPZ and MET can significantly increase the cell viability, decrease the rate of apoptosis, and attenuate the intracellular ROS levels relative to MET alone. MET inhibits the protein expression and the phosphorylation levels of Raf-1 and ERK1/2. MET was found to attenuate Raf-1-ERK1/2 signaling in HaCaT cells to suppress the expression and phosphorylation levels of Nrf2, which contributed to the intracellular generation of ROS and the pro-apoptotic effects of MET."	"MicroRNA-146b-3p regulates the development and progression of cerebral infarction with diabetes through RAF1/P38MAPK/COX-2 signaling pathway. Diabetes has been considered as an independent risk factor for cerebral infarction. However, the pathological mechanism of cerebral infarction with diabetes (DMCI) is still rarely known. In this study, we try to explore the relationship between microRNA-146b-3p (miR-146b-3p) and DMCI patients. The peripheral blood mononuclear cells were separated after the patients were selected from our hospital. Firstly, the content of IL-6 and COX-2 was detected by ELISA. Then, the total RNAs were extracted and analyzed by microRNA (miRNA) microarray. Moreover, the target genes of miR-146b-3p were predicted by online miRNA target prediction algorithms. Meanwhile, luciferase reporter system was used for assaying the target gene for miRNA-146b-3p. Simultaneously, RT-PCR assay was used for the miRNA expression detection. Furthermore, western blot was applied to determine the expression of the signal pathway involved proteins. Our results demonstrated that expression of IL-6 and COX-2 were remarkably up-regulated in peripheral blood of DMCI patients compared with that in normal control group. In addition, miRNA microarray data suggested that miR-146b-3p expression was significantly down-regulated in DMCI patients, with v-raf-1 expression negatively regulated. Moreover, miR-146b-3p regulated RAF1 expression was found to mediate P38MAPK signaling activation in thrombosis patients. The following research indicated that activation of RAF1 trough miR-146b-3p down-regulation contributed to activation of RAF/P38MAPK/COX-2 signaling pathway in vascular infarction. Our data have implied that altered expression of miR-146b-3p is closely related to the progression and development of DCMI mediating the RAF/P38MAPK/COX-2 signal transduction pathway."	"Downregulation of castor zinc finger 1 predicts poor prognosis and facilitates hepatocellular carcinoma progression via MAPK/ERK signaling. Castor zinc finger 1 (CASZ1) plays critical roles in various biological processes and pathologic conditions, including cancer. However, the prognostic importance and biologic functions of CASZ1 in hepatocellular carcinoma (HCC) are still unclear. qRT-PCR, western blot and immunohistochemistry analyses were used to determine CASZ1 expression in HCC samples and cell lines. The clinical significance of CASZ1 was assessed in two independent study cohorts containing 232 patients with HCC. A series of in vitro and in vivo experiments were performed to explore the role and molecular mechanism of CASZ1 in HCC progression. Here we report that CASZ1 expression was downregulated in HCC tissues and cell lines. Low CASZ1 expression was closely correlated with aggressive clinicopathological features, poor clinical outcomes and early recurrence of HCC patients. Moreover, overexpression of CASZ1 in HCCLM3 cells significantly inhibited cell proliferation, migration, invasion in vitro and tumor growth and metastasis in vivo, whereas silencing CASZ1 significantly enhanced the above abilities of PLC/PRF/5 cells. Further mechanism study indicated that these phenotypic changes were mediated by MAPK/ERK signaling pathway and involved altered expression of MMP2, MMP9 and cyclinD1. Finally, we proved that CASZ1 exerted its tumor-suppressive effect by directly interacting with RAF1 and reducing the protein stability of RAF1. Our study for the first time demonstrated that CASZ1 is a tumor suppressor in HCC, which may serve as a novel prognostic predictor and therapeutic target for HCC patients."	"Next-Generation Sequencing of Circulating Tumor DNA Reveals Frequent Alterations in Advanced Hepatocellular Carcinoma. Because imaging has a high sensitivity to diagnose hepatocellular carcinoma (HCC) and tissue biopsies carry risks such as bleeding, the latter are often not performed in HCC. Blood-derived circulating tumor DNA (ctDNA) analysis can identify somatic alterations, but its utility has not been characterized in HCC. We evaluated 14 patients with advanced HCC (digital ctDNA sequencing [68 genes]). Mutant relative to wild-type allele fraction was calculated. All patients (100%) had somatic alterations (median = 3 alterations/patient [range, 1-8]); median mutant allele fraction, 0.29% (range, 0.1%-37.77%). Mutations were identified in several genes: TP53 (57% of patients), CTNNB1 (29%), PTEN (7%), CDKN2A (7%), ARID1A (7%), and MET (7%); amplifications, in CDK6 (14%), EGFR (14%), MYC (14%), BRAF (7%), RAF1 (7%), FGFR1 (7%), CCNE1 (7%), PIK3CA (7%), and ERBB2/HER2 (7%). Eleven patients (79%) had ≥1 theoretically actionable alteration. No two patients had identical genomic portfolios, suggesting the need for customized treatment. A patient with a CDKN2A-inactivating and a CTNNB1-activating mutation received matched treatment: palbociclib (CDK4/6 inhibitor) and celecoxib (COX-2/Wnt inhibitor); des-gamma-carboxy prothrombin level decreased by 84% at 2 months (1,410 to 242 ng/mL [normal: ≤7.4 ng/mL]; alpha fetoprotein [AFP] low at baseline). A patient with a PTEN-inactivating and a MET-activating mutation (an effect suggested by in silico molecular dynamic simulations) received sirolimus (mechanistic target of rapamycin inhibitor) and cabozantinib (MET inhibitor); AFP declined by 63% (8,320 to 3,045 ng/mL [normal: 0-15 ng/mL]). ctDNA derived from noninvasive blood tests can provide exploitable genomic profiles in patients with HCC. This study reports that blood-derived circulating tumor DNA can provide therapeutically exploitable genomic profiles in hepatocellular cancer, a malignancy that is known to be difficult to biopsy."	"Raf1 is a prognostic factor for progression in patients with non‑small cell lung cancer after radiotherapy. Raf-1 proto-oncogene, serine/threonine kinase (Raf1) acts as a part of the RAS/RAF/MEK/ERK signaling pathway and regulates cell migration, apoptosis and differentiation. However, few studies are available on the expression and clinical significance of Raf1 in non‑small cell lung cancer (NSCLC). This study investigated the clinical value and prognostic significance of Raf1 in NSCLC patients, following radiotherapy. We evaluated the Raf1 expression using immunohistochemical analyses of samples from 110 NSCLC patients who received radiotherapy. The association between Raf1 expression and clinicopathological variables was also analyzed. The multivariate Cox proportional hazard model was used to determine the prognostic value of Raf1 in regards to progression and 3‑year survival. Significant associations between Raf1 expression and invasion and metastasis capability in lung cancer A549 and H1299 cell lines were identified. Results showed that 44.5% (49/110) of the NSCLC patient specimens demonstrated Raf1 expression, which was found to be positively correlated with lymph node metastasis (P=0.014), T stage (P=0.038) and poor histological differentiation (P=0.029). Later progression was observed in patients with negative or low Raf1 expression than in patients with high Raf1 expression (P=0.002). The multivariate analysis indicated that Raf1 is an independent prognostic factor for time to progression (TTP) (HR, 1.94; 95% CI, 1.16‑3.25; P=0.01). A high Raf1 expression was found to result in a poor 3‑year overall survival (OS)(HR, 1.64; 95% CI, 0.98‑2.75; P=0.06). Raf1 overexpression was correlated with early progression in NSCLC. Raf1 may serve as a novel prognostic factor and potential target for improving the long‑term outcome of NSCLC patients."	"Immune profiling of human prostate epithelial cells determined by expression of p38/TRAF-6/ERK MAP kinases pathways. The aim of the present work was to study the immune profiling of prostate epithelial cells by the expression of ASK-1/p38 and Raf-1/ERK MAP Kinases signaling pathways mediated by TRAF-6. Immunohistochemical and Western blot analyses for TRAF-6, ASK-1, MEK-6, p38, Raf-1, MEK-1, ERK-1, ERK-2 and PSA were carried out in 5 samples of normal prostate gland, 24 samples of BPH and 19 samples of PC. Immunoreaction to TRAF-6 was found in the cytoplasm of epithelial cells of BPH and tumor cells of PC samples. For patients with the profile (TRAF-6+), optical densities revealed a weak immunoexpression of ASK-1 in PC compared to BPH patients. Whereas, immunoexpression to Raf-1 was higher in PC than in BPH. According to the expression of ASK-1 and Raf-1, two main profiles were identified: (TRAF-6+, ASK-1+, Raf-1+) and (TRAF-6+, ASK-1+, RAF-1-) in both BPH and PC. In addition, ASK-1/p38 axis expression was increased in BPH. Raf-1/ERK signaling pathway was increased in PC samples. On the other hand, representing of individual signaling protein expression enclosing each of p38 and ERK MAP Kinases according to TRAF-6+ showed a qualitative behavior of ASK61/p38 and Raf-1/ERK signaling pathways and a dynamic expression of PSA associated with immune and inflammatory process. These findings suggest that prostate epithelial cell could able an immune and inflammatory setting."	"Construction of key signal regulatory network in metastatic colorectal cancer. There are many stages in the development and metastasis of colorectal cancer (CRC). In this study, we compared the differential expression genes in different stages of metastatic CRC. Then, we screened the continuously up-regulated genes and the continuously down-regulated genes that were associated with the development and metastasis of CRC. After analyzing the intersection of differential expression genes in each stage, we screened the continuously up-regulated genes and deviated genes in the extracellular matrix and the continuously down-regulated genes and deviated genes in the mitochrondia of CRC. Then, we performed gene ontology enrichment analysis of the deviated genes in different phases, and we found that key molecular events occurred in the period extending from stage II to III (early stage of metastasis) of CRC. Furthermore, in this period we found that the chemotaxis of inflammatory cells had decreased in the extracellular matrix. On the other hand, the aerobic respiration had increased in the mitochondrion. Then, we constructed protein-protein interaction network of deviated genes in the extracellular matrix and mitochondrion. We used the network module and hub network to analyze the protein-protein interaction network. The network module analysis showed that the protein complex of VEGFA and CCL7-CCR3 is the key node in the extracellular matrix, while MAPK1 is the key node in the mitochondrion. The hub network analysis showed that the signal transmission chain FN1→SPARC→COL1A1→MMP2 is the key regulatory pathway for extracellular signal transmission. Furthermore, it also showed that CAV1→MAPK3→RAF1→NR3C1→MAPK1→ESR1 is the key regulatory pathway for signal transmission in mitochondrion."	"Potential Breast Anticancer Drug Targets Revealed by Differential Gene Regulatory Network Analysis and Molecular Docking: Neoadjuvant Docetaxel Drug as a Case Study. Understanding gene-gene interaction and its causal relationship to protein-protein interaction is a viable route for understanding drug action at the genetic level, which is largely hindered by inability to robustly map gene regulatory networks. Here, we use biological prior knowledge of family-to-family gene interactions available in the KEGG database to reveal individual gene-to-gene interaction networks that underlie the gene expression profiles of 2 cell line data sets, sensitive and resistive to neoadjuvant docetaxel breast anticancer drug. Comparison of the topology of the 2 networks revealed that the resistant network is highly connected with 2 large domains of connectivity: one in which the RAF1 and MAP2K2 genes form hubs of connectivity and another in which the RAS gene is highly connected. On the contrary, the sensitive network is highly disrupted with a lower degree of connectivity. We investigated the interactions of the neoadjuvant docetaxel drug with the protein chains encoded by gene-gene interactions that underlie the disruption of the sensitive network topology using protein-protein and drug-protein docking techniques. We found that the sensitive network is likely to be disrupted by interaction of the neoadjuvant docetaxel drug with the DAXX and FGR1 proteins, which is consistent with the observed accumulation of cytoplasmic DAXX and overexpression of FGR1 precursors in cancer cell lines. This indicates that the DAXX and FGR1 proteins could be potential targets for the neoadjuvant docetaxel drug. The work, therefore, provides a new route for understanding the effect of the drug mode of action from the viewpoint of the change in the topology of gene-gene regulatory networks and provides a new avenue for bridging the gap between gene-gene interactions and protein-protein interactions which could have deep implications on mainstream drug development protocols."	"Identification of gene expression models for laryngeal squamous cell carcinoma using co-expression network analysis. One of the most common head and neck cancers is laryngeal squamous cell carcinoma (LSCC). LSCC exhibits high mortality rates and has a poor prognosis. The molecular mechanisms leading to the development and progression of LSCC are not entirely clear despite genetic and therapeutic advances and increased survival rates. In this study, a total of 116 differentially expressed genes (DEGs), including 11 upregulated genes and 105 downregulated genes, were screened from LSCC samples and compared with adjacent noncancerous. Statistically significant differences (log 2-fold difference &gt; 0.5 and adjusted P-value &lt; .05) were found in this study in the expression between tumor and nontumor larynx tissue samples. Nine cancer hub genes were found to have a high predictive power to distinguish between tumor and nontumor larynx tissue samples. Interestingly, they also appear to contribute to the progression of LSCC and malignancy via the Jak-STAT signaling pathway and focal adhesion. The model could separate patients into high-risk and low-risk groups successfully when only using the expression level of mRNA signatures. A total of 4 modules (blue, gray, turquoise, and yellow) were screened for the DEGs in the weighted co-expression network. The blue model includes cancer-specific pathways such as pancreatic cancer, bladder cancer, nonsmall cell lung cancer, colorectal cancer, glioma, Hippo signaling pathway, melanoma, chronic myeloid leukemia, prostate cancer, and proteoglycans in cancer. Endocrine resistance (CCND1, RAF1, RB1, and SMAD2) and Hippo signaling pathway (CCND1, LATS1, SMAD2, and TP53BP2) could be of importance in LSCC, because they had high connectivity degrees in the blue module. Results from this study provide a powerful biomarker discovery platform to increase understanding of the progression of LSCC and to reveal potential therapeutic targets in the treatment of LSCC. Improved monitoring of LSCC and resulting improvement of treatment of LSCC might result from this information."	"RIPK4/PEBP1 axis promotes pancreatic cancer cell migration and invasion by activating RAF1/MEK/ERK signaling. Pancreatic cancer is a lethal disease with a high metastatic potential. In our previous study, we identified a specific subgroup of patients with pancreatic cancer with a serum signature of carcinoembryonic antigen (CEA)+/cancer antigen (CA)125+/CA19-9 ≥1,000 U/ml. In this study, by using high-throughput screening analysis, we found that receptor-interacting protein kinases 4 (RIPK4) may be a key molecule involved in the high metastatic potential of this subgroup of patients with pancreatic cancer. A high RIPK4 expression predicted a poor prognosis and promoted pancreatic cancer cell migration and invasion via the RAF1/MEK/ERK pathway. Moreover, RIPK4 activated the RAF1/MEK/ERK pathway by regulating proteasome-mediated phosphatidylethanolamine binding protein 1 (PEBP1) degradation. The suppression of PEBP1 degradation eliminated the RIPK4-induced activation of RAF1/MEK/ERK signaling and pancreatic cancer cell migration or invasion. Thus, on the whole, the findings of this study indicated that RIPK4 was upregulated in the subgroup of pancreatic cancer with a high metastatic potential. RIPK4 overexpression promoted pancreatic cancer cell migration and invasion via the PEBP1 degradation-induced activation of the RAF1/MEK/ERK pathway."	"Integrating Functional Analysis in the Next-Generation Sequencing Diagnostic Pipeline of RASopathies. RASopathies are a group of heterogeneous conditions caused by germline mutations in RAS/MAPK signalling pathway genes. With next-generation sequencing (NGS), sequencing capacity is no longer a limitation to molecular diagnosis. Instead, the rising number of variants of unknown significance (VUSs) poses challenges to clinical interpretation and genetic counselling. We investigated the potential of an integrated pipeline combining NGS and the functional assessment of variants for the diagnosis of RASopathies. We included 63 Chinese patients with RASopathies that had previously tested negative for PTPN11 and HRAS mutations. In these patients, we performed a genetic analysis of genes associated with RASopathies using a multigene NGS panel and Sanger sequencing. For the VUSs, we evaluated evidence from genetic, bioinformatic and functional data. Twenty disease-causing mutations were identified in the 63 patients, providing a primary diagnostic yield of 31.7%. Four VUSs were identified in five patients. The functional assessment supported the pathogenicity of the RAF1 and RIT1 VUSs, while the significance of two VUSs in A2ML1 remained unclear. In summary, functional analysis improved the diagnostic yield from 31.7% to 36.5%. Although technically demanding and time-consuming, a functional genetic diagnostic analysis can ease the clinical translation of these findings to aid bedside interpretation."	"Comparative Nucleotide-Dependent Interactome Analysis Reveals Shared and Differential Properties of KRas4a and KRas4b. The KRAS gene encodes two isoforms, KRas4a and KRas4b. Differences in the signaling functions of the two KRas proteins are poorly understood. Here we report the comparative and nucleotide-dependent interactomes of KRas4a and KRas4b. Many previously unknown interacting proteins were identified, with some interacting with both isoforms while others prefer only one. For example, v-ATPase a2 and eIF2Bδ interact with only KRas4b. Consistent with the v-ATPase interaction, KRas4b has a significant lysosomal localization. Comparing WT and constitutively active G12D mutant KRas, we examined differences in the effector proteins of the KRas4a and KRas4b. Interestingly, KRas4a binds RAF1 stronger than KRas4b. Correspondingly, KRas4a can better promote ERK phosphorylation and anchorage-independent growth than KRas4b. The interactome data represent a useful resource to understand the differences between KRas4a and KRas4b and to discover new function or regulation for them. A similar proteomic approach would be useful for studying numerous other small GTPases."	"Wogonoside induces depalmitoylation and translocation of PLSCR1 and N-RAS in primary acute myeloid leukaemia cells. Acute myeloid leukaemia (AML) comprises a range of disparate genetic subtypes, involving complex gene mutations and specific molecular alterations. Post-translational modifications of specific proteins influence their translocation, stability, aggregation and even leading disease progression. Therapies that target to post-translational modification of specific proteins in cancer cells represent a novel treatment strategy. Non-homogenous subcellular distribution of PLSCR1 is involved in the primary AML cell differentiation. However, the nuclear translocation mechanism of PLSCR1 remains poorly understood. Here, we leveraged the observation that nuclear translocation of PLSCR1 could be induced during wogonoside treatment in some primary AML cells, despite their genetic heterogeneity that contributed to the depalmitoylation of PLSCR1 via acyl protein thioesterase 1 (APT-1), an enzyme catalysing protein depalmitoylation. Besides, we found a similar phenomenon on another AML-related protein, N-RAS. Wogonoside inhibited the palmitoylation of small GTPase N-RAS and enhanced its trafficking into Golgi complex, leading to the inactivation of N-RAS/RAF1 pathway in some primary AML cells. Taken together, our findings provide new insight into the mechanism of wogonoside-induced nuclear translocation of PLSCR1 and illuminate the influence of N-RAS depalmitoylation on its Golgi trafficking and RAF1 signalling inactivation in AML."	"A comparative global phosphoproteomics analysis of obinutuzumab (GA101) versus rituximab (RTX) against RTX sensitive and resistant Burkitt lymphoma (BL) demonstrates differential phosphorylation of signaling pathway proteins after treatment. We recently demonstrated that obinutuzumab (GA101), a novel glycoengineered type II CD20 Ab compared to rituximab (RTX) mediates significantly enhanced antibody-dependent cell cytotoxicity (ADCC) in vitro and increased overall survival in a Burkitt lymphoma (BL) xenograft non-obese diabetic severe combined immunodeficiency gamma (NSG) model. In this study we compared the phosphoproteomic changes by pathway analysis following obinutuzumab vs RTX against RTX-sensitive (Raji) and -resistant BL (Raji4RH). Phosphoproteomic analyses were performed by mass-spectrometry (MS)-based label-free quantitative phosphoproteomic profiling. We demonstrated that 418 proteins in Raji and 377 proteins in Raji 4RH, were differentially phosphorylated (&gt;1.5-fold) after obinutuzumab vs. RTX. Proteins that were significantly differentially phosphorylated included the B cell antigen receptor (BCR) (PLCG2, BTK and GSK3B), Fc gamma phagocytosis (FCRG2B, MAPK1, PLCG2 and RAF1), and natural killer cell-mediated cytotoxicity (MAPK1, RAF1, PLCG2 and MAPK3) signaling pathways. Differential phosphorylation of BCR or cytotoxicity pathway proteins revealed significant up-regulation of BTK, PLCY2 and ERK1/RAF1 after obinutuzumab compared to RTX. Silencing of PLCG2 in the BCR and MAPK1 in the cytotoxicity pathway significantly increased BL proliferation and decreased BL cytotoxicity after obinutuzumab compared to RTX. These results in combination with our previous results demonstrating a significant improvement in in vitro BL cytotoxicity and in vivo BL survival by obinutuzumab compared to RTX may in part be due to differential effects on selected BL protein signaling pathways."	"A whole-animal platform to advance a clinical kinase inhibitor into new disease space. Synthetic tailoring of approved drugs for new indications is often difficult, as the most appropriate targets may not be readily apparent, and therefore few roadmaps exist to guide chemistry. Here, we report a multidisciplinary approach for accessing novel target and chemical space starting from an FDA-approved kinase inhibitor. By combining chemical and genetic modifier screening with computational modeling, we identify distinct kinases that strongly enhance ('pro-targets') or limit ('anti-targets') whole-animal activity of the clinical kinase inhibitor sorafenib in a Drosophila medullary thyroid carcinoma (MTC) model. We demonstrate that RAF-the original intended sorafenib target-and MKNK kinases function as pharmacological liabilities because of inhibitor-induced transactivation and negative feedback, respectively. Through progressive synthetic refinement, we report a new class of 'tumor calibrated inhibitors' with unique polypharmacology and strongly improved therapeutic index in fly and human MTC xenograft models. This platform provides a rational approach to creating new high-efficacy and low-toxicity drugs."	"Demethylation-Induced Overexpression of Shc3 Drives c-Raf-Independent Activation of MEK/ERK in HCC. Invasion and intrahepatic metastasis are major factors of poor prognosis in patients with hepatocellular carcinoma (HCC). In this study, we show that increased Src homolog and collagen homolog 3 (Shc3) expression in malignant HCC cell lines associate with HCC invasion and metastasis. Shc3 (N-Shc) was significantly upregulated in tumors of 33 HCC patient samples as compared with adjacent normal tissues. Further analysis of 52 HCC patient samples showed that Shc3 expression correlated with microvascular invasion, cancer staging, and poor prognosis. Shc3 interacted with major vault protein, resulting in activation of MEK1/2 and ERK1/2 independently of Shc1 and c-Raf; this interaction consequently induced epithelial-mesenchymal transition and promoted HCC cell proliferation and metastasis. The observed increase in Shc3 levels was due to demethylation of its upstream promoter, which allowed c-Jun binding. In turn, Shc3 expression promoted c-Jun phosphorylation in a positive feedback loop. Analysis of metastasis using a tumor xenograft mouse model further confirmed the role of Shc3 in vivo Taken together, our results indicate the importance of Shc3 in HCC progression and identify Shc3 as a novel biomarker and potential therapeutic target in HCC.Significance: Ectopic expression of Shc3 forms a complex with MVP/MEK/ERK to potentiate ERK activation and plays an important role in sorafinib resistance in HCC. Cancer Res; 78(9); 2219-32. ©2018 AACR."	"miR‑378a enhances the sensitivity of liver cancer to sorafenib by targeting VEGFR, PDGFRβ and c‑Raf. Liver cancer is a globally prevalent cancer with poor prognosis. The present study investigated the link between microRNA-378a (miR‑378a) expression and the sensitivity of hepatocellular carcinoma (HCC) and hepatoblastoma (HB) cancers to sorafenib therapy. miR‑378a expression was determined in liver tissue samples from healthy candidates and patients with liver cancer using the reverse transcription‑quantitative polymerase chain reaction. The antitumor effects of miR‑378a alone and in combination with sorafenib were investigated in the HB cell line HepG2 and the HCC cell line SMMC‑7721 with methyl thiazoyl tetrazolium, colony formation, flow cytometry and Transwell migration assays. The underlying mechanisms were investigated using western blot analysis. miR‑378a expression was decreased in tissue samples from patients with liver cancer. HCC and HB cell line proliferation and invasion ability was inhibited by miR‑378a. The combination of miR‑378a and sorafenib provided the greatest inhibition. Western blot indicated that mitogen activated protein kinase signaling pathway proteins, vascular endothelial growth factor receptor, platelet derived growth factor receptor β, Raf‑1 proto‑oncogene, serine/threonine kinase and matrix metallopeptidase 2 were regulated by miR‑378a alone and to a greater extent when combined with sorafenib. Results suggest that miR‑378a can inhibit liver cancer cell growth and enhance the sensitivity of liver cancer cells to sorafenib‑based chemotherapies."	"Oncomirs Expression Profiling in Uterine Leiomyosarcoma Cells. MicroRNAs (miRNAs) are small non-coding RNAs that act as regulators of gene expression at the post-transcriptional level. They play a key role in several biological processes. Their abnormal expression may lead to malignant cell transformation. This study aimed to evaluate the expression profile of 84 miRNAs involved in tumorigenesis in immortalized cells of myometrium (MM), uterine leiomyoma (ULM), and uterine leiomyosarcoma (ULMS). Specific cell lines were cultured and qRT-PCR was performed. Thirteen miRNAs presented different expression profiles in ULM and the same thirteen in ULMS compared to MM. Eight miRNAs were overexpressed, and five were underexpressed in ULM. In ULMS cells, five miRNAs exhibited an overexpression and eight were down-regulated. Six miRNAs (miR-1-3p, miR-130b-3p, miR-140-5p, miR-202-3p, miR-205-5p, and miR-7-5p) presented a similar expression pattern in cell lines compared to patient samples. Of these, only three miRNAs showed significant expression in ULM (miR-1-3p, miR-140-5p, and miR-7-5p) and ULMS (miR-1-3p, miR-202-3p, and miR-7-5p). Our preliminary approach identified 24 oncomirs with an altered expression profile in ULM and ULMS cells. We identified four differentially expressed miRNAs with the same profile when compared with patients' samples, which strongly interacted with relevant genes, including apoptosis regulator (BCL2), epidermal growth factor receptor (EGFR), vascular endothelial growth factor A (VEGFA), insulin like growth factor 1 receptor (IGF1R),serine/threonine kinase (RAF1), receptor tyrosine kinase (MET), and bHLH transcription factor (MYCN). This led to alterations in their mRNA-target."	"The novel RAF1 mutation p.(Gly361Ala) located outside the kinase domain of the CR3 region in two patients with Noonan syndrome, including one with a rare brain tumor. Noonan syndrome is characterized by typical craniofacial dysmorphism, postnatal growth retardation, congenital heart defect, and learning difficulties and belongs to the RASopathies, a group of neurodevelopmental disorders caused by germline mutations in genes encoding components of the RAS-MAPK pathway. Mutations in the RAF1 gene are associated with Noonan syndrome, with a high prevalence of hypertrophic cardiomyopathy (HCM). RAF1 mutations cluster in exons encoding the conserved region 2 (CR2), the kinase activation segment of the CR3 domain, and the C-terminus. We present two boys with Noonan syndrome and the identical de novo RAF1 missense variant c.1082G&gt;C/p.(Gly361Ala) affecting the CR3, but located outside the kinase activation segment. The p.(Gly361Ala) mutation has been identified as a RAF1 allele conferring resistance to RAF inhibitors. This amino acid change favors a RAF1 conformation that allows for enhanced RAF dimerization and increased intrinsic kinase activity. Both patients with Noonan syndrome showed typical craniofacial dysmorphism, macrocephaly, and short stature. One individual developed HCM and was diagnosed with a disseminated oligodendroglial-like leptomeningeal tumor (DOLT) of childhood at the age of 9 years. While there is a well-established association of NS with malignant tumors, especially childhood hemato-oncological diseases, brain tumors have rarely been reported in Noonan syndrome. Our data demonstrate that mutation scanning of the entire coding region of genes associated with Noonan syndrome is mandatory not to miss rare variants located outside the known mutational hotspots."	"Enhancement of colon carcinogenesis by the combination of indole-3 carbinol and synbiotics in hemin-fed rats. The risk of developing colorectal cancer (CRC) could be associated with red and processed meat intake. Experimental data supports that hemin iron, found abundantly in red meat, promotes CRC in mice and rats, while indole-3 carbinol (I3C) and synbiotics (syn) exert anti-carcinogenic activities in most studies of colon carcinogenesis. This study aimed to investigate the modifying effects of I3C and syn (inulin + Bifidobacterium lactis), given separately or together, on dimethylhidrazine (DMH)-induced colon carcinogenesis in hemin-fed rats. All animals were given four subcutaneous DMH injections and then, two weeks after carcinogen exposure, they began a basal diet containing hemin, hemin + I3C, hemin + syn, or hemin + I3C + syn for 23 weeks. The combination of I3C + syn significantly increased fecal water genotoxicity, tumor volume and invasiveness when compared to the hemin-fed control group. The groups fed I3C or syn alone had a significant reduction in the number of preneoplastic aberrant crypt foci (ACF) lesions compared to the hemin-fed group. Dietary I3C also reduced fecal water genotoxicity. Gene expression analysis of colorectal tumors demonstrated that the combination of dietary I3C + syn increased transcript levels for Raf1 and decreased tumor progression and invasiveness related to the genes Cdh1 and Appl1. This analysis also revealed that the Tnf and Cdh1 genes were significantly up- and down-regulated, respectively, in tumors of rats that received I3C, in comparison with the hemin-fed group. These findings reveal that the joint administration of I3C and syn enhanced the development of colon tumors induced by DMH in hemin-fed rats, while they potentially reduced ACF development when given alone."	"CX3CL1 promotes MMP-3 production via the CX3CR1, c-Raf, MEK, ERK, and NF-κB signaling pathway in osteoarthritis synovial fibroblasts. Osteoarthritis (OA) is a degenerative joint disease that affects the cartilage, synovium, and subchondral bone and is the leading cause of disability in older populations. Specific diagnostic biomarkers are lacking; hence, treatment options for OA are limited. Synovial inflammation is very common in OA joints and has been associated with both OA's symptoms and pathogenesis. Confirming the role of the synovium in OA pathogenesis is a promising strategy for mitigating the symptoms and progression of OA. CX3CL1 is the only member of the CX3C class of chemokines that combines the properties of chemoattractants and adhesion molecules. CX3CL1 levels in the synovium and serum were both discovered to be positively associated with OA pathogenesis. CX3CL1 and its receptor CX3CR1 belong to a family of G protein-coupled receptors. Matrix metalloproteinases (MMPs), which are responsible for matrix degradation, play a crucial role in OA progression. The relationship between CX3CL1 and MMPs in the pathophysiology of OA is still unclear. CX3CL1-induced MMP-3 production was assessed with quantitative real-time PCR and ELISA. The mechanisms of action of CX3CL1 in different signaling pathways were studied using western blot analysis, quantitative real-time PCR and ELISA. Neutralization antibodies of integrin were achieved to block the CX3CR1 signaling pathway. Luciferase assays were used to study NF-κB promoter activity. We investigated the signaling pathway involved in CX3CL1-induced MMP-3 production in osteoarthritis synovial fibroblasts (OASFs). CX3CL1 was found to induce MMP-3 production in a concentration-dependent and time-dependent manner. Using pharmacological inhibitors and CX3CR1 small interfering RNA to block CX3CR1 revealed that the CX3CR1 receptor was involved in the CX3CL1-mediated upregulation of MMP-3. CX3CL1-mediated MMP-3 production was attenuated by c-Raf inhibitors (GW5074) and MEK/ERK inhibitors (PD98059 and U0126). The OASFs were stimulated using CX3CL1-activated p65 phosphorylation. Our results demonstrate that CX3CL1 activates c-Raf, MEK, ERK, and NF-κB on the MMP-3 promoter through CX3CR1, thus contributing to cartilage destruction during OA."	"X-linked inhibitor of apoptosis protein (XIAP) is a client of heat shock protein 70 (Hsp70) and a biomarker of its inhibition. Heat shock protein 70 (Hsp70) and Hsp90 are molecular chaperones that play essential roles in tumor growth by stabilizing pro-survival client proteins. However, although the development of Hsp90 inhibitors has benefited from the identification of clients, such as Raf-1 proto-oncogene, Ser/Thr kinase (RAF1), that are particularly dependent on this chaperone, no equivalent clients for Hsp70 have been reported. Using chemical probes and MDA-MB-231 breast cancer cells, we found here that the inhibitors of apoptosis proteins, including c-IAP1 and X-linked inhibitor of apoptosis protein (XIAP), are obligate Hsp70 clients that are rapidly (within ∼3-12 h) lost after inhibition of Hsp70 but not of Hsp90. Mutagenesis and pulldown experiments revealed multiple Hsp70-binding sites on XIAP, suggesting that it is a direct, physical Hsp70 client. Interestingly, this interaction was unusually tight (∼260 nm) for an Hsp70-client interaction and involved non-canonical regions of the chaperone. Finally, we also found that Hsp70 inhibitor treatments caused loss of c-IAP1 and XIAP in multiple cancer cell lines and in tumor xenografts, but not in healthy cells. These results are expected to significantly accelerate Hsp70 drug discovery by providing XIAP as a pharmacodynamic biomarker. More broadly, our findings further suggest that Hsp70 and Hsp90 have partially non-overlapping sets of obligate protein clients in cancer cells."	"Expressed Gene Fusions as Frequent Drivers of Poor Outcomes in Hormone Receptor-Positive Breast Cancer. We sought to uncover genetic drivers of hormone receptor-positive (HR<sup>+</sup>) breast cancer, using a targeted next-generation sequencing approach for detecting expressed gene rearrangements without prior knowledge of the fusion partners. We identified intergenic fusions involving driver genes, including PIK3CA, AKT3, RAF1, and ESR1, in 14% (24/173) of unselected patients with advanced HR<sup>+</sup> breast cancer. FISH confirmed the corresponding chromosomal rearrangements in both primary and metastatic tumors. Expression of novel kinase fusions in nontransformed cells deregulates phosphoprotein signaling, cell proliferation, and survival in three-dimensional culture, whereas expression in HR<sup>+</sup> breast cancer models modulates estrogen-dependent growth and confers hormonal therapy resistance in vitro and in vivo Strikingly, shorter overall survival was observed in patients with rearrangement-positive versus rearrangement-negative tumors. Correspondingly, fusions were uncommon (&lt;5%) among 300 patients presenting with primary HR<sup>+</sup> breast cancer. Collectively, our findings identify expressed gene fusions as frequent and potentially actionable drivers in HR<sup>+</sup> breast cancer.Significance: By using a powerful clinical molecular diagnostic assay, we identified expressed intergenic fusions as frequent contributors to treatment resistance and poor survival in advanced HR<sup>+</sup> breast cancer. The prevalence and biological and prognostic significance of these alterations suggests that their detection may alter clinical management and bring to light new therapeutic opportunities. Cancer Discov; 8(3); 336-53. ©2017 AACR.See related commentary by Natrajan et al., p. 272See related article by Liu et al., p. 354This article is highlighted in the In This Issue feature, p. 253."	"Melatonin exerts an inhibitory effect on insulin gene transcription via MTNR1B and the downstream Raf‑1/ERK signaling pathway. The pineal hormone melatonin influences the secretion of insulin by pancreatic islets via the G‑protein‑coupled melatonin receptors 1 and 2 that are expressed in pancreatic β‑cells. Genome‑wide association studies indicate that melatonin receptor 1B (MTNR1B) single nucleotide polymorphisms are tightly associated with type 2 diabetes mellitus (T2DM). However, the underlying mechanism is unclear. Raf‑1 serves a critical role in the mitogen‑activated protein kinase (MAPK) pathways in β‑cell survival and proliferation and, therefore, may be involved in the mechanism by which melatonin impacts on T2DM through MTNR1B. In the present study, the mRNA expression of the two mouse insulin genes Ins1 and Ins2 was investigated in MIN6 cells treated with different concentrations of melatonin, and insulin secretion was detected under the same conditions. Following the overexpression or silencing of MTNR1B, the activities of components of the MAPK signaling pathway, including Raf‑1 and ERK, were evaluated. The impact of MTNR1B knockdown on the melatonin‑regulated insulin gene expression and insulin secretion were also investigated. The results demonstrated that exogenous melatonin inhibited the expression of insulin mRNA in the MIN6 cells. Insulin secretion by the MIN6 cells, however, was not affected by melatonin. The MAPK signaling pathway was inhibited in MIN6 cells by treatment with melatonin or the overexpression of MTNR1B. The knockdown of MTNR1B totally attenuated the regulating effect of melatonin on insulin gene expression. Additionally, the inductive effect of melatonin on the expression of insulin mRNA was attenuated when the activities of Raf‑1 or ERK were blocked using the chemical inhibitors GW5074 and U0126, respectively. It may be concluded that melatonin exerts an inhibitory effect on insulin transcription via MTNR1B and the downstream MAPK signaling pathway."	"A systems medicine approach reveals disordered immune system and lipid metabolism in multiple sclerosis patients. Identification of autoimmune processes and introduction of new autoantigens involved in the pathogenesis of multiple sclerosis (MS) can be helpful in the design of new drugs to prevent unresponsiveness and side effects in patients. To find significant changes, we evaluated the autoantibody repertoires in newly diagnosed relapsing-remitting MS patients (NDP) and those receiving disease-modifying therapy (RP). Through a random peptide phage library, a panel of NDP- and RP-specific peptides was identified, producing two protein data sets visualized using Gephi, based on protein--protein interactions in the STRING database. The top modules of NDP and RP networks were assessed using Enrichr. Based on the findings, a set of proteins, including ATP binding cassette subfamily C member 1 (ABCC1), neurogenic locus notch homologue protein 1 (NOTCH1), hepatocyte growth factor receptor (MET), RAF proto-oncogene serine/threonine-protein kinase (RAF1) and proto-oncogene vav (VAV1) was found in NDP and was involved in over-represented terms correlated with cell-mediated immunity and cancer. In contrast, transcription factor RelB (RELB), histone acetyltransferase p300 (EP300), acetyl-CoA carboxylase 2 (ACACB), adiponectin (ADIPOQ) and phosphoenolpyruvate carboxykinase 2 mitochondrial (PCK2) had major contributions to viral infections and lipid metabolism as significant events in RP. According to these findings, further research is required to demonstrate the pathogenic roles of such proteins and autoantibodies targeting them in MS and to develop therapeutic agents which can ameliorate disease severity."	"Uncovering the relationship and mechanisms of Tartary buckwheat (Fagopyrum tataricum) and Type II diabetes, hypertension, and hyperlipidemia using a network pharmacology approach. Tartary buckwheat (TB), a crop rich in protein, dietary fiber, and flavonoids, has been reported to have an effect on Type II diabetes (T2D), hypertension (HT), and hyperlipidemia (HL). However, limited information is available about the relationship between Tartary buckwheat and these three diseases. The mechanisms of how TB impacts these diseases are still unclear. In this study, network pharmacology was used to investigate the relationship between the herb as well as the diseases and the mechanisms of how TB might impact these diseases. A total of 97 putative targets of 20 compounds found in TB were obtained. Then, an interaction network of 97 putative targets for these compounds and known therapeutic targets for the treatment of the three diseases was constructed. Based on the constructed network, 28 major nodes were identified as the key targets of TB due to their importance in network topology. The targets of ATK2, IKBKB, RAF1, CHUK, TNF, JUN, and PRKCA were mainly involved in fluid shear stress and the atherosclerosis and PI3K-Akt signaling pathways. Finally, molecular docking simulation showed that 174 pairs of chemical components and the corresponding key targets had strong binding efficiencies. For the first time, a comprehensive systemic approach integrating drug target prediction, network analysis, and molecular docking simulation was developed to reveal the relationships and mechanisms between the putative targets in TB and T2D, HT, and HL."	"MicroRNA-497 accelerates apoptosis while inhibiting proliferation, migration, and invasion through negative regulation of the MAPK/ERK signaling pathway via RAF-1. The aim of this study is to explore the various modes of action miR-497 has on human cervical cancer (CC) cell behavior. We also speculate that miR-497 achieves its anti-tumor role by governing RAF-1 via MAPK/ERK signaling pathway. CC tissues with corresponding adjacent normal tissues were collected from 168 CC patients. RAF-1-positive cells were identified by means of immunohistochemistry in tissues. A series of inhibitors, mimics and siRNA against RAF-1 were introduced to validate regulatory mechanisms for miR-497 and RAF-1. Quantitative real-time polymerase chain reaction (qRT-PCR) and Western blot assay were employed for evaluating alternations of miR-497, RAF-1, and MAPK/ERK signaling pathway. HeLa cell proliferation, invasion, migration, cycle progression, and apoptosis were assessed by means of CCK-8, wound-healing, transwell invasion assays, and flow cytometry, respectively. The target prediction program and luciferase activity determination were used to identify miR-497 targeting RAF-1. We determined reduced miR-497 expression and elevated expression of RAF-1 in CC tissues as opposed to adjacent tissues. Transfection of miR-497 mimics and siRNA-RAF-1 both decreased levels of MEK1, ERK1, and p38 phosphorylation in HeLa cells, inhibited cell proliferation, migration and invasion, induced more cells arrested in the G0/G1 phase, and promoted cell apoptosis; while miR-497 inhibitors led to opposite results. These findings indicate miR-497 as a tumor suppressor results from negative regulation of the MAPK/ERK signaling pathway via RAF-1 in CC."	"Predictive model identifies key network regulators of cardiomyocyte mechano-signaling. Mechanical strain is a potent stimulus for growth and remodeling in cells. Although many pathways have been implicated in stretch-induced remodeling, the control structures by which signals from distinct mechano-sensors are integrated to modulate hypertrophy and gene expression in cardiomyocytes remain unclear. Here, we constructed and validated a predictive computational model of the cardiac mechano-signaling network in order to elucidate the mechanisms underlying signal integration. The model identifies calcium, actin, Ras, Raf1, PI3K, and JAK as key regulators of cardiac mechano-signaling and characterizes crosstalk logic imparting differential control of transcription by AT1R, integrins, and calcium channels. We find that while these regulators maintain mostly independent control over distinct groups of transcription factors, synergy between multiple pathways is necessary to activate all the transcription factors necessary for gene transcription and hypertrophy. We also identify a PKG-dependent mechanism by which valsartan/sacubitril, a combination drug recently approved for treating heart failure, inhibits stretch-induced hypertrophy, and predict further efficacious pairs of drug targets in the network through a network-wide combinatorial search."	"DA-Raf, a dominant-negative antagonist of the Ras-ERK pathway, is a putative tumor suppressor. Activating mutations of RAS genes, particularly KRAS, are detected with high frequency in human tumors. Mutated Ras proteins constitutively activate the ERK pathway (Raf-MEK-ERK phosphorylation cascade), leading to cellular transformation and tumorigenesis. DA-Raf1 (DA-Raf) is a splicing variant of A-Raf and contains the Ras-binding domain (RBD) but lacks the kinase domain. Accordingly, DA-Raf antagonizes the Ras-ERK pathway in a dominant-negative fashion and suppresses constitutively activated K-Ras-induced cellular transformation. Thus, we have addressed whether DA-Raf serves as a tumor suppressor of Ras-induced tumorigenesis. DA-Raf(R52Q), which is generated from a single nucleotide polymorphism (SNP) in the RBD, and DA-Raf(R52W), a mutant detected in a lung cancer, neither bound to active K-Ras nor interfered with the activation of the ERK pathway. They were incapable of suppressing activated K-Ras-induced cellular transformation and tumorigenesis in mice, in which K-Ras-transformed cells were transplanted. Furthermore, although DA-Raf was highly expressed in lung alveolar epithelial type 2 (AE2) cells, its expression was silenced in AE2-derived lung adenocarcinoma cell lines with oncogenic KRAS mutations. These results suggest that DA-Raf represents a tumor suppressor protein against Ras-induced tumorigenesis."	"Association between TNF-α rs1799964 and RAF1 rs1051208 MicroRNA binding site SNP and gastric cancer susceptibility in an Iranian population. The aim of this study was to find the relationship between rs1799964 in TNF-α gene as well as rs1051208 of RAF1 gene SNPs on GC in an Iranian population. Gastric cancer (GC) is the second leading cause of cancer-related death worldwide after lung cancer. Tumor necrosis factor (TNF) is one of the most important factors in the pathogenesis of this cancer. Single nucleotide polymorphisms have a principle role in gene expression of TNF-α and miRNAs which may lead to gastric cancer. In a case-control study, we investigated the risk of GC in 198 Iranians. For this purpose, 5 mL of peripheral blood was collected in EDTA -containing tube and genomic DNA was isolated. Genotyping of SNPs was also performed by PCR-RFLP; to approve the outcome, 10% of genotyping results with RFLP were sequenced. The comparison between case and control groups revealed a significant association between the rs1051208 C allele of RAF1 gene and GC (P = 0.04). We did not observe any remarkable association between TNF-α -1031 in gastric cancer patients and the healthy control group. The results indicated that C allele in RAF1 gene plays a role in susceptibility to gastric cancer. Therefore, SNPs are among notable biomarkers for predicting susceptibility to dreadful diseases, especially cancers."	"Predicting pathogenic genes for primary myelofibrosis based on a system‑network approach. The aim of the present study was to predict pathogenic genes for primary myelofibrosis (PMF) using a system‑network approach by combining protein‑protein interaction (PPI) network and gene expression data with known pathogenic genes. PMF gene expression profiles, known pathogenic genes and protein‑protein interactions were obtained. Using these data, differentially expressed genes (DEGs) were identified between PMF and normal conditions using significance analysis of microarrays, and seed genes were determined based on the intersection of known pathogenic genes and the PMF gene expression profile. A new network was constructed using the seed genes and their adjacent DEGs within the PPI network. Subsequently, a pathogenic network was extracted from the new network, and contained genes that interacted with at least two seed genes, and the candidate pathogenic genes were predicted based on the cohesion with seed genes. Cluster analysis was performed to mine the pathogenic modules from the pathogenic network, and functional analysis was performed to identify the putative biological processes of the candidate pathogenic genes. Results from the present study identified 845 DEGs between PMF and normal conditions, and 45 seed genes in PMF were screened. Subsequently, a pathogenic network comprising 103 nodes and 265 interactions was constructed, and 4 pathogenic modules (modules A‑D) were mined from the pathogenic network. There were nine candidate pathogenic genes contained within Module A and four potential pathogenic genes, including E1A‑binding protein p300, RAS‑like proto‑oncogene A, von Willebrand factor and RAF‑1 proto‑oncogene, serine/threonine kinase, were identified that may be involved in the same biological process with the seed genes. This study predicted 10 candidate pathogenic genes and several signaling pathways that may be related to the pathogenesis of PMF using a system‑network approach. These predictions may shed light on the PMF pathogenesis and may provide guidelines for future experimental verification."	"Getting a GRP on histone deacetylase inhibitor selectivity. NA"	"Reversal effects of low-dose imatinib compared with sunitinib on monocrotaline-induced pulmonary and right ventricular remodeling in rats. High-dose imatinib reverses cardiopulmonary remodeling but adverse effects limit its clinical use. Efficacy of the multi-kinase inhibitor sunitinib remains questionable. We compared anti-remodeling effects of imatinib with sunitinib on monocrotaline-induced right ventricular (RV) hypertrophy and pulmonary arterial remodeling in rats, focusing on a lower dose. Fourteen days after monocrotaline injection, oral gavage of imatinib (5, 15, or 50mg/kg), sunitinib (0.3, 1, 3, or 10mg/kg), or water for 14days was started. RV hypertrophy and b-type natriuretic peptide mRNA levels were significantly and dose-dependently reduced, much greater in imatinib- than sunitinib-treated groups. Imatinib normalized muscularization of 20-50μm intra-acinar pulmonary arteries more significantly than sunitinib. At transcript levels, sunitinib significantly upregulated pulmonary nestin, and downregulated platelet-derived growth factor receptor beta (PDGFR-β), fibroblast growth factor receptor 1, vascular endothelial growth factor receptor-2 and vascular endothelial growth factor (VEGF)-A, but not Raf-1 proto-oncogene serine/threonine kinase mRNAs. Sunitinib also suppressed VEGF-A, but not phosphorylated extra-cellular-signal-related kinase (ERK)-1/2 protein expression. The sole PDGFR-β antagonism of imatinib resulted in significant Raf-1 mRNA and phosphorylated ERK-1/2 protein downregulation, suggesting that the equivocal reversal effect of sunitinib may be due to its VEGF signaling inhibition in the lung. Imatinib's greater dose-dependent reversal on cardiopulmonary remodeling may make a low dose suitable for PAH treatment."	"Dasatinib synergizes with ATRA to trigger granulocytic differentiation in ATRA resistant acute promyelocytic leukemia cell lines via Lyn inhibition-mediated activation of RAF-1/MEK/ERK. All-trans retinoic acid (ATRA) resistance has been a critical problem in acute promyelocytic leukemia (APL) relapsed patients. In this study, dasatinib synergized with ATRA to trigger differentiation in ATRA-resistant APL cell lines. The combined treatment activated RAF-1, MEK and ERK as well as enhanced ATRA-promoted up-regulation of the protein level of PU.1, C/EBPβ and C/EBPε. U0126 (MEK specific inhibitor) and sorafenib tosylate (RAF-1 specific inhibitor) suppressed the combined treatment-induced differentiation, ERK phosphorylation and the up-regulation of C/EBPs and PU.1. Sorafenib tosylate also attenuated the MEK activity. However, the combined treatment did not enhance Ras activity and Ras inhibitor neither blocked MEK activation nor inhibited differentiation. Therefore, the combined treatment induced differentiation via Ras independent RAF-1/MEK/ERK. Earlier than RAF-1 activation, dasatinib suppressed Lyn activity, the predominant activated Src family kinase (SFK) and dephosphorylated RAF-1 at S259. Furthermore, SFK inhibitor, PP2 did suppress Lyn activity and mimicked the effect of dasatinib on ATRA-induced differentiation as well as decreased phosphorylation of RAF-1 at S259. Thus, it was suggested that Lyn inhibition might activate RAF-1 by the dephosphorylation of RAF at S259 and lead to differentiation. In conclusion, the combination of dasatinib and ATRA could overcome ATRA resistance through Lyn inhibition-mediated activation of RAF-1/MEK/ERK."	"Targeted/exome sequencing identified mutations in ten Chinese patients diagnosed with Noonan syndrome and related disorders. Noonan syndrome (NS) and Noonan syndrome with multiple lentigines (NSML) are autosomal dominant developmental disorders. NS and NSML are caused by abnormalities in genes that encode proteins related to the RAS-MAPK pathway, including PTPN11, RAF1, BRAF, and MAP2K. In this study, we diagnosed ten NS or NSML patients via targeted sequencing or whole exome sequencing (TS/WES). TS/WES was performed to identify mutations in ten Chinese patients who exhibited the following manifestations: potential facial dysmorphisms, short stature, congenital heart defects, and developmental delay. Sanger sequencing was used to confirm the suspected pathological variants in the patients and their family members. TS/WES revealed three mutations in the PTPN11 gene, three mutations in RAF1 gene, and four mutations in BRAF gene in the NS and NSML patients who were previously diagnosed based on the abovementioned clinical features. All the identified mutations were determined to be de novo mutations. However, two patients who carried the same mutation in the RAF1 gene presented different clinical features. One patient with multiple lentigines was diagnosed with NSML, while the other patient without lentigines was diagnosed with NS. In addition, a patient who carried a hotspot mutation in the BRAF gene was diagnosed with NS instead of cardiofaciocutaneous syndrome (CFCS). TS/WES has emerged as a useful tool for definitive diagnosis and accurate genetic counseling of atypical cases. In this study, we analyzed ten Chinese patients diagnosed with NS and related disorders and identified their correspondingPTPN11, RAF1, and BRAF mutations. Among the target genes, BRAF showed the same degree of correlation with NS incidence as that of PTPN11 or RAF1."	"Scaffold Proteins in Gastrointestinal Tumors as a Shortcut to Oncoprotein Activation. The development of cancer involves uncontrolled cell proliferation, and multiple signaling pathways that regulate cell proliferation have been found to be dysregulated in cancers. Extracellular signal-regulated protein kinase (ERK) is one of three major subtypes in the mitogen-activated protein kinase (MAPK) families. The MAPK/ERK pathway (RAS/RAF1/MEK/ERK) plays an important part in promoting cell proliferation in response to growth factors, thereby serving as a driving signal in gastrointestinal (GI) tumors. In contrast, the p53 tumor suppressor functions as a &quot;guardian of the genome&quot; and stops cell proliferation when oncogenic signaling is activated. Both pathways constrain each other in healthy GI epithelium, facilitating controlled proliferation that is essential for tissue repair and regeneration. However, in GI tumors, the MAPK/ERK and p53 pathways are commonly dysregulated, in part due to abnormal posttranslational modifications. Hyperphosphorylation of the ERK protein causes sustained activation of cell proliferation, whereas hypoacetylation of the p53 protein impairs its transcriptional function and blocks cell apoptosis. Multiple scaffold proteins have been found to regulate the posttranslational modifications of ERK and p53 proteins in GI tumors. Abnormal expression of scaffold proteins may contribute to the dysregulation of the MAPK and p53 signaling pathways and thereby contribute to the development of GI tumors. Scaffold proteins are potential biomarkers and therapeutic targets in GI tumors."	"A maternal high-fat, high-sucrose diet alters insulin sensitivity and expression of insulin signalling and lipid metabolism genes and proteins in male rat offspring: effect of folic acid supplementation. A maternal high-fat, high-sucrose (HFS) diet alters offspring glucose and lipid homoeostasis through unknown mechanisms and may be modulated by folic acid. We investigated the effect of a maternal HFS diet on glucose homoeostasis, expression of genes and proteins associated with insulin signalling and lipid metabolism and the effect of prenatal folic acid supplementation (HFS/F) in male rat offspring. Pregnant Sprague-Dawley rats were randomly fed control (CON), HFS or HFS/F diets. Offspring were weaned on CON; at postnatal day 70, fasting plasma insulin and glucose and liver and skeletal muscle gene and protein expression were measured. Treatment effects were assessed by one-way ANOVA. Maternal HFS diet induced higher fasting glucose in offspring v. HFS/F (P=0·027) and down-regulation (P&lt;0·05) of genes coding for v-Akt murine thymoma viral oncogene homolog 2, resistin and v-Raf-1 murine leukaemia viral oncogene homolog 1 (Raf1) in offspring skeletal muscle and acetyl-CoA carboxylase (Acaca), fatty acid synthase and phosphatidylinositol-4,5-biphosphate 3-kinase, catalytic subunit β in offspring liver. Skeletal muscle neuropeptide Y and hepatic Kruppel-like factor 10 were up-regulated in HFS v. CON offspring (P&lt;0·05). Compared with CON, Acaca and Raf1 protein expression levels were significantly lower in HFS offspring. Maternal HFS induced higher homoeostasis model of assessment index of insulin resistance v. CON (P=0·030) and HFS/F was associated with higher insulin (P=0·016) and lower glucose (P=0·025). Maternal HFS diet alters offspring insulin sensitivity and de novo hepatic lipogenesis via altered gene and protein expression, which appears to be potentiated by folate supplementation."	"[Gene mutation and clinical phenotype analysis of patients with Noonan syndrome and hypertrophic cardiomyopathy]. Objective: To analyze the gene mutations and clinical features of patients with Noonan syndrome and hypertrophic cardiomyopathy. Method: Determined the mutation domain in five cases diagnosed with Noonan syndrome and hypertrophic cardiomyopathy and identified the relationship between the mutant domain and hypertrophic cardiomyopathy by searching relevant articles in pubmed database. Result: Three mutant genes (PTPN11 gene in chromosome 12, RIT1 gene in chromosome 1 and RAF1 gene in chromosome 3) in five cases all had been reported to be related to hypertrophic cardiomyopathy. The reported hypertrophic cardiomyopathy relevant genes MYPN, MYH6 and MYBP3 had also been found in case 1 and 2. Patients with same gene mutation had different clinical manifestations. Both case 4 and 5 had RAF1 mutation (c.770C&gt;T). However, case 4 had special face, low IQ, mild pulmonary artery stenosis, and only mild ventricular hypertrophy. Conclusion: Noonan syndrome is a genetic heterogeneity disease. Our study identified specific gene mutations that could result in Noonan syndrome with hypertrophic cardiomyopathy through molecular biology methods. The results emphasize the importance of gene detection in the management of Noonan syndrome. 目的: 分析Noonan综合征合并肥厚型心肌病患儿的基因突变与临床表型。 方法: 以北京安贞医院小儿心脏中心收治的5例确诊Noonan综合征合并肥厚型心肌病患儿为研究对象,进行基因突变检测,确定突变位点及结构域,分析突变基因与肥厚型心肌病临床表型的关系。 结果: 5例患儿的3个基因突变位点(12号染色体PTPN11基因,1号染色体RIT1基因及3号染色体RAF1基因)与肥厚型心肌病相关。2例患儿基因检测发现与肥厚型心肌病相关的已知基因突变MYPN、MYH6及MYBPC3。2例患儿基因突变均为RAF1,c.770C&gt;T,但临床表现不同,其中1例患儿除有特殊面容及智商较低外,肺动脉瓣狭窄极轻,心室肌肥厚亦不严重。 结论: Noonan综合征表现明显的遗传异质性,同一基因位点突变,临床表现多样。PTPN11、RAF1及RIT1基因位于特定结构域的突变位点与伴肥厚型心肌病的Noonan综合征密切相关。."	"miR-1908 as a novel prognosis marker of glioma via promoting malignant phenotype and modulating SPRY4/RAF1 axis. MicroRNAs (miRNAs) are reported to be involved in the development of glioma. However, study on miRNAs in glioma is limited. The present study aimed to identify miRNAs which can act as potential novel prognostic markers for glioma and analyze its possible mechanism. We show that miR-1908 correlates with shorter survival time of glioma patients via promoting cell proliferation, invasion, anti-apoptosis and regulating SPRY4/RAF1 axis. Analysis of GEO and TCGA database found that miR-1908 was significantly upregulated in glioma tissues, and strongly associated with shorter survival time of glioma patients. Further Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) analysis revealed that miR-1908 is mainly involved in regulating cell proliferation, invasion and apoptosis. To further confirm the above results, in vitro, glioma U251 cells were transfected with miR-1908 mimics or inhibitor, and upregulated miR-1908 promoted U251 cell proliferation, and enhanced the ability of invasion by transwell assay. In addition, upregulated miR-1908 also enhanced anti-apoptosis ability of U251 cells through decreasing pro-apoptosis protein Bax expression. Since miRNAs regulate numerous biological processes by targeting broad set of messenger RNAs, validated target genes of miR-1908 in glioma were analyzed by Targetscan and miRTarBase databases. Among them SPRY4 was significantly decreased in glioma tissues and associated with short survival time, which was selected as the key target gene of miR-1908. Moreover, protein-protein interaction (PPI) showed that SPRY4 could interacted with pro-oncogene RAF1 and negatively correlated with RAF1 expression. Consistent with above analysis, in vitro, western blot analysis identified that miR-1908 upregulated significantly decreased SPRY4 expression and increased RAF1 expression. Hence, miR-1908 was correlated with poor prognosis of glioma via promoting cell proliferation, invasion, anti-apoptosis and regulating SPRF4/RAF1 axis. Our results elucidated the tumor promoting role of miR-1908 and established miR-1908 as a potential novel prognostic marker for glioma."	"Internal driving factors leading to extrahepatic manifestation of the hepatitis C virus infection. The hepatitis C virus (HCV) infection is associated with various extrahepatic manifestations, which are correlated with poor outcomes, and thus increase the morbidity and mortality of chronic hepatitis C (CHC). Therefore, understanding the internal linkages between systemic manifestations and HCV infection is helpful for treatment of CHC. Yet, the mechanism by which the virus evokes the systemic diseases remains to be elucidated. In the present study, using gene set enrichment analysis (GSEA) and signaling pathway impact analysis (SPIA), a comprehensive analysis of microarray data of mRNAs was conducted in HCV-infected and -uninfected Huh7.5 cells, and signaling pathways (which are significantly activated or inhibited) and certain molecules (which are commonly important in those signaling pathways) were selected. Forty signaling pathways were selected using GSEA, and eight signaling pathways were selected with SPIA. These pathways are associated with cancer, metabolism, environmental information processing and organismal systems, which provide important information for further clarifying the intrinsic associations between syndromes of HCV infection, of which seven pathways were not previously reported, including basal transcription factors, pathogenic Escherichia coli infection, shigellosis, gastric acid secretion, dorso-ventral axis formation, amoebiasis and cholinergic synapse. Ten genes, SOS1, RAF1, IFNA2, IFNG, MTHFR, IGF1, CALM3, UBE2B, TP53 and BMP7 whose expression may be the key internal driving molecules, were selected using the online tool Anni 2.1. Furthermore, the present study demonstrated the internal linkages between systemic manifestations and HCV infection, and presented the potential molecules that are key to those linkages."	"Decoding the full picture of Raf1 function based on its interacting proteins. Raf1 is a member of the Raf kinase family and regulates many fundamental cell processes, including proliferation, differentiation, apoptosis, motility, and metabolism. However, the functions of Raf1 have not been completely elucidated. To better understand Raf1 function, we investigated the proteins that interacted with Raf1. We identified 198 Raf1 interacting proteins and our data suggested that Raf1 may regulate cell processes through these interactions. These interaction partners were involved in all ten hallmarks of cancer, suggesting that Raf1 is involved in different aspects of carcinogenesis. In addition, we showed that Raf1 interacting proteins were enriched in six signaling pathways and many human diseases. The interaction partners identified in this study may represent oncological candidates for future investigations into Raf1 function. Our findings have provided an overview of Raf1 function from a systems biology perspective."	"Systems-level identification of PKA-dependent signaling in epithelial cells. G protein stimulatory α-subunit (Gαs)-coupled heptahelical receptors regulate cell processes largely through activation of protein kinase A (PKA). To identify signaling processes downstream of PKA, we deleted both PKA catalytic subunits using CRISPR-Cas9, followed by a &quot;multiomic&quot; analysis in mouse kidney epithelial cells expressing the Gαs-coupled V2 vasopressin receptor. RNA-seq (sequencing)-based transcriptomics and SILAC (stable isotope labeling of amino acids in cell culture)-based quantitative proteomics revealed a complete loss of expression of the water-channel gene Aqp2 in PKA knockout cells. SILAC-based quantitative phosphoproteomics identified 229 PKA phosphorylation sites. Most of these PKA targets are thus far unannotated in public databases. Surprisingly, 1,915 phosphorylation sites with the motif x-(S/T)-P showed increased phosphooccupancy, pointing to increased activity of one or more MAP kinases in PKA knockout cells. Indeed, phosphorylation changes associated with activation of ERK2 were seen in PKA knockout cells. The ERK2 site is downstream of a direct PKA site in the Rap1GAP, Sipa1l1, that indirectly inhibits Raf1. In addition, a direct PKA site that inhibits the MAP kinase kinase kinase Map3k5 (ASK1) is upstream of JNK1 activation. The datasets were integrated to identify a causal network describing PKA signaling that explains vasopressin-mediated regulation of membrane trafficking and gene transcription. The model predicts that, through PKA activation, vasopressin stimulates AQP2 exocytosis by inhibiting MAP kinase signaling. The model also predicts that, through PKA activation, vasopressin stimulates Aqp2 transcription through induction of nuclear translocation of the acetyltransferase EP300, which increases histone H3K27 acetylation of vasopressin-responsive genes (confirmed by ChIP-seq)."	"Phytoagent deoxyelephantopin derivative inhibits triple negative breast cancer cell activity by inducing oxidative stress-mediated paraptosis-like cell death. Triple negative breast cancer (TNBC) is a highly metastatic cancer among the breast cancer subgroups. A thorny issue for clinical therapy of TNBC is lack of an efficient targeted therapeutic strategy. We previously created a novel sesquiterpene lactone analog (named DETD-35) derived from plant deoxyelephantopin (DET) which exhibits potent effects against human TNBC MDA-MB-231 tumor growth in a xenograft mouse model. Here we studied the mechanisms of both DET and DETD-35 against MDA-MB-231 cells. DETD-35 (3-fold decreased in IC50) exhibited better anti-TNBC cell activity than DET as observed through induction of reactive oxygen species production (within 2 h treatment) and damage to the ER structures, resulting in ER-derived cytoplasmic vacuolation and ubiquitinated protein accumulation in the treated cells. Intriguingly, the effects of both compounds were blockaded by pretreatment with ROS scavengers, N-acetylcysteine and reduced glutathione, and protein synthesis inhibitor, cycloheximide. Further, knockdown of MEK upstream regulator RAF1 and autophagosomal marker LC3, and co-treatment with JNK or ERK1/2 inhibitor resulted in the most significant attenuation of DETD-35-induced morphological and molecular or biochemical changes in cancer cells, while the inhibitory effect of DET was not influenced by MAPK inhibitor treatment. Therefore, DETD-35 exerted both ER stress-mediated paraptosis and apoptosis, which may explain its superior activity to DET against TNBC cells. Although the chemotherapeutic drug paclitaxel induced vacuole-like structures in MDA-MB-231 cells, no paraptotic cell death features were detected. This study provides a strategy for combating TNBC through sesquiterpene lactone analogs by induction of oxidative and ER stresses that cause paraptosis-like cell death."	"Copy number variants of Ras/MAPK pathway genes in patients with isolated cryptorchidism. Cryptorchidism is the most common congenital disorder in boys, but the cause for most cases remains unknown. Patients with Noonan Syndrome are characterized by a typical face, growth retardation, congenital heart defects, learning disabilities and cryptorchidism. Copy number variations of Ras/MAPK pathway genes are unusual in patients with several clinical features of Noonan Syndrome; however, they have not been studied in patients with only one feature of this condition, such as cryptorchidism. Our aim was to determine whether patients with isolated cryptorchidism exhibit Ras/MAPK pathway gene copy number variations (CNVs). Fifty-nine patients with isolated cryptorchidism and negative for mutations in genes associated with Noonan Syndrome were recruited. Determination of Ras/MAPK pathway gene CNVs was performed by Comparative Genome Hybridization array. A CNV was identified in two individuals, a ~175 kb microduplication at 3p25.2, partially including RAF1. A similar RAF1 microduplication has been observed in a patient with testicular aplasia. This suggests that some patients with isolated cryptorchidism may harbor Ras/MAPK pathway gene CNVs."	"Comprehensive Genomic Profiling of 282 Pediatric Low- and High-Grade Gliomas Reveals Genomic Drivers, Tumor Mutational Burden, and Hypermutation Signatures. Pediatric brain tumors are the leading cause of death for children with cancer in the U.S. Incorporating next-generation sequencing data for both pediatric low-grade (pLGGs) and high-grade gliomas (pHGGs) can inform diagnostic, prognostic, and therapeutic decision-making. We performed comprehensive genomic profiling on 282 pediatric gliomas (157 pHGGs, 125 pLGGs), sequencing 315 cancer-related genes and calculating the tumor mutational burden (TMB; mutations per megabase [Mb]). In pLGGs, we detected genomic alterations (GA) in 95.2% (119/125) of tumors. BRAF was most frequently altered (48%; 60/125), and FGFR1 missense (17.6%; 22/125), NF1 loss of function (8.8%; 11/125), and TP53 (5.6%; 7/125) mutations were also detected. Rearrangements were identified in 35% of pLGGs, including KIAA1549-BRAF, QKI-RAF1, FGFR3-TACC3, CEP85L-ROS1, and GOPC-ROS1 fusions. Among pHGGs, GA were identified in 96.8% (152/157). The genes most frequently mutated were TP53 (49%; 77/157), H3F3A (37.6%; 59/157), ATRX (24.2%; 38/157), NF1 (22.2%; 35/157), and PDGFRA (21.7%; 34/157). Interestingly, most H3F3A mutations (81.4%; 35/43) were the variant K28M. Midline tumor analysis revealed H3F3A mutations (40%; 40/100) consisted solely of the K28M variant. Pediatric high-grade gliomas harbored oncogenic EML4-ALK, DGKB-ETV1, ATG7-RAF1, and EWSR1-PATZ1 fusions. Six percent (9/157) of pHGGs were hypermutated (TMB &gt;20 mutations per Mb; range 43-581 mutations per Mb), harboring mutations deleterious for DNA repair in MSH6, MSH2, MLH1, PMS2, POLE, and POLD1 genes (78% of cases). Comprehensive genomic profiling of pediatric gliomas provides objective data that promote diagnostic accuracy and enhance clinical decision-making. Additionally, TMB could be a biomarker to identify pediatric glioblastoma (GBM) patients who may benefit from immunotherapy. By providing objective data to support diagnostic, prognostic, and therapeutic decision-making, comprehensive genomic profiling is necessary for advancing care for pediatric neuro-oncology patients. This article presents the largest cohort of pediatric low- and high-grade gliomas profiled by next-generation sequencing. Reportable alterations were detected in 95% of patients, including diagnostically relevant lesions as well as novel oncogenic fusions and mutations. Additionally, tumor mutational burden (TMB) is reported, which identifies a subpopulation of hypermutated glioblastomas that harbor deleterious mutations in DNA repair genes. This provides support for TMB as a potential biomarker to identify patients who may preferentially benefit from immune checkpoint inhibitors."	"High glucose and high insulin conditions promote MCF‑7 cell proliferation and invasion by upregulating IRS1 and activating the Ras/Raf/ERK pathway. Diabetes mellitus is associated with an increased risk of breast cancer, but the molecular mechanism underlying this association remains unclear. The aim of the present study was to investigate the effect of high glucose and high insulin conditions on MCF‑7 breast cancer cells and to elucidate the molecular mechanisms underlying these effects. High glucose and high insulin conditions resulted in increased viability, proliferation, and invasion in MCF‑7 cells compared with normal glucose and low insulin conditions. Reverse transcription‑quantitative polymerase chain reaction and western blot analyses revealed that insulin receptor substrate 1 (IRS1) was significantly upregulated following high glucose and high insulin treatment compared with normal glucose and low insulin conditions. Furthermore, high glucose and high insulin treatment increased the Ras family of proto‑oncogenes (Ras) and RAF1 proto‑oncogene (Raf‑1) protein expression, and activated the phosphorylation of extracellular signal‑regulated kinase (ERK) 1/2. These findings suggest that high glucose and high insulin conditions promoted the proliferation and invasion of MCF‑7 cells by upregulating IRS1 and activating the Ras/Raf/ERK pathway."	"Regulation of fibroblast growth factor 8 (FGF8) in chicken embryonic stem cells differentiation into spermatogonial stem cells. Fibroblast growth factors (FGFs) are essential in regulating the formation of spermatogonial stem cells (SSCs). Here, we explored the effect of FGF8 on chicken SSCs formation by knockdown or overexpression of FGF8 in chicken embryonic stem cells (ESCs) both in vitro and in vivo. Our results showed that knockdown of FGF8 could facilitate the differentiation of ESCs into SSCs, overexpression of FGF8 could promote PGCs self-renewal, inhibit SSCs formation. This study further revealed the positive correlation between the expression level of FGF8 and MAPK/ERK signal. In the absence of FGF8, the expression of downstream genes such as FGFR2, GRB2, RAS, BRAF, RAF1, and MEK2 was not maintained, while overexpressing FGF8 enhances them. Thus, our study demonstrated that FGF8 can regulate germ cell fate by modulating the dynamic equilibrium between differentiation and self-renewal, which provides a new idea for the study of germ cell regulatory network."	"Inhibition of IKK-NFκB pathway sensitizes lung cancer cell lines to radiation. : Cancer cell radioresistance is a stumbling block in radiation therapy. The activity in the nuclear factor kappa B (NFκB) pathway correlates with anti-apoptotic mechanisms and increased radioresistance. The IKK complex plays a major role in NFκB activation upon numerous signals. In this study, we examined the interaction between ionizing radiation (IR) and different members of the IKK-NFκB pathway, as well as upstream activators, RAF1, ERK, and AKT1. : The effect of 4 Gy of IR on the expression of the RAF1-ERK-IKK-NFκB pathway was examined in A549 and H1299 lung cancer cell lines using Western blot analysis and confocal microscopy. We examined changes in radiation sensitivity using gene silencing or pharmacological inhibitors of ERK and IKKβ. : IKKα, IKKγ, and IκBα increased upon exposure to IR, thereby affecting nuclear levels of NFκB (phospho-p65). ERK inhibition or siRNA-mediated down-regulation of RAF1 suppressed the post-irradiation survival of the examined lung cancer cell lines. A similar effect was detected on survival upon silencing IKKα/IKKγ or inhibiting IKKβ. : Exposure of lung cancer cells to IR results in NFκB activation via IKK. The genetic or pharmacological blockage of the RAF1-ERK-IKK-NFκB pathway sensitizes cells to therapeutic doses of radiation. Therefore, the IKK pathway is a promising target for therapeutic intervention in combination with radiotherapy."	"Necrotic cell death occur via JNK pathway with the activity of transcription factor c-Jun by 4-MC in INS-1 cell line. In this study, it was aimed to determine the doses of 4-methylcatechol causing cell death in rat insulinoma β-cells (INS-1), to find out the type of cellular death at these doses, and to investigate the molecular mechanism of cellular death occurring. More necrotic cells were observed than apoptosis with the administration of 350, 400, and 450 μM 4-methylcatechol. Lactate dehydrogenase levels, reactive oxygen species, mitochondrial potential loss, ATP, and GTP losses increased at these doses. The JNK and ERK cellular pathway were screened. We observed an increase in p-RAF1 activity, the active JNK amount, the total c-Jun amount, while a decrease in p-RAF1 expression, the total JNK amount, JNK expression, ATF2 expression, active ERK, and its expression and Elk1 expression. It was concluded that cells perform necrotic death by the following options: i) phosphorylated RAF1 activates the JNK pathway with the activity of transcription factor c-Jun; ii) Hsp 70 and Hsp 90 do not show a change inside the cell, rendering the JNK pathway active."	"Identification of NRAS isoform 2 overexpression as a mechanism facilitating BRAF inhibitor resistance in malignant melanoma. Activating mutations in BRAF are found in 50% of melanomas and although treatment with BRAF inhibitors (BRAFi) is effective, resistance often develops. We now show that recently discovered NRAS isoform 2 is up-regulated in the setting of BRAF inhibitor resistance in melanoma, in both cell lines and patient tumor tissues. When isoform 2 was overexpressed in BRAF mutant melanoma cell lines, melanoma cell proliferation and in vivo tumor growth were significantly increased in the presence of BRAFi treatment. shRNA-mediated knockdown of isoform 2 in BRAFi resistant cells restored sensitivity to BRAFi compared with controls. Signaling analysis indicated decreased mitogen-activated protein kinase (MAPK) pathway signaling and increased phosphoinositol-3-kinase (PI3K) pathway signaling in isoform 2 overexpressing cells compared with isoform 1 overexpressing cells. Immunoprecipitation of isoform 2 validated a binding affinity of this isoform to both PI3K and BRAF/RAF1. The addition of an AKT inhibitor to BRAFi treatment resulted in a partial restoration of BRAFi sensitivity in cells expressing high levels of isoform 2. NRAS isoform 2 may contribute to resistance to BRAFi by facilitating PI3K pathway activation."	"In vivo loss-of-function screens identify KPNB1 as a new druggable oncogene in epithelial ovarian cancer. Epithelial ovarian cancer (EOC) is a deadly cancer, and its prognosis has not been changed significantly during several decades. To seek new therapeutic targets for EOC, we performed an in vivo dropout screen in human tumor xenografts using a pooled shRNA library targeting thousands of druggable genes. Then, in follow-up studies, we performed a second screen using a genome-wide CRISPR/Cas9 library. These screens identified 10 high-confidence drug targets that included well-known oncogenes such as ERBB2 and RAF1, and novel oncogenes, notably KPNB1, which we investigated further. Genetic and pharmacological inhibition showed that KPNB1 exerts its antitumor effects through multiphase cell cycle arrest and apoptosis induction. Mechanistically, proteomic studies revealed that KPNB1 acts as a master regulator of cell cycle-related proteins, including p21, p27, and APC/C. Clinically, EOC patients with higher expression levels of KPNB1 showed earlier recurrence and worse prognosis than those with lower expression levels of KPNB1. Interestingly, ivermectin, a Food and Drug Administration-approved antiparasitic drug, showed KPNB1-dependent antitumor effects on EOC, serving as an alternative therapeutic toward EOC patients through drug repositioning. Last, we found that the combination of ivermectin and paclitaxel produces a stronger antitumor effect on EOC both in vitro and in vivo than either drug alone. Our studies have thus identified a combinatorial therapy for EOC, in addition to a plethora of potential drug targets."	"CRAF gene fusions in pediatric low-grade gliomas define a distinct drug response based on dimerization profiles. Pediatric low-grade gliomas (PLGGs) are commonly associated with BRAF gene fusions that aberrantly activate the mitogen-activated protein kinase (MAPK) signaling pathway. This has led to PLGG clinical trials utilizing RAF- and MAPK pathway-targeted therapeutics. Whole-genome profiling of PLGGs has also identified rare gene fusions involving another RAF isoform, CRAF/RAF1, in PLGGs and cancers occuring in adults. Whereas BRAF fusions primarily dysregulate MAPK signaling, the CRAF fusions QKI-RAF1 and SRGAP3-RAF1 aberrantly activate both the MAPK and phosphoinositide-3 kinase/mammalian target of rapamycin (PI3K/mTOR) signaling pathways. Although ATP-competitive, first-generation RAF inhibitors (vemurafenib/PLX4720, RAFi) cause paradoxical activation of the MAPK pathway in BRAF-fusion tumors, inhibition can be achieved with 'paradox breaker' RAFi, such as PLX8394. Here we report that, unlike BRAF fusions, CRAF fusions are unresponsive to both generations of RAFi, vemurafenib and PLX8394, highlighting a distinct responsiveness of CRAF fusions to clinically relevant RAFi. Whereas PLX8394 decreased BRAF-fusion dimerization, CRAF-fusion dimerization is unaffected primarily because of robust protein-protein interactions mediated by the N-terminal non-kinase fusion partner, such as QKI. The pan-RAF dimer inhibitor, LY3009120, could suppress CRAF-fusion oncogenicity by inhibiting dimer-mediated signaling. In addition, as CRAF fusions activate both the MAPK and PI3K/mTOR signaling pathways, we identify combinatorial inhibition of the MAPK/mTOR pathway as a potential therapeutic strategy for CRAF-fusion-driven tumors. Overall, we define a mechanistic distinction between PLGG-associated BRAF- and CRAF/RAF1 fusions in response to RAFi, highlighting the importance of molecularly classifying PLGG patients for targeted therapy. Furthermore, our study uncovers an important contribution of the non-kinase fusion partner to oncogenesis and potential therapeutic strategies against PLGG-associated CRAF fusions and possibly pan-cancer CRAF fusions."	"Screening circular RNA related to chemotherapeutic resistance in breast cancer. We aimed to identify circular RNAs (circRNAs) associated with breast cancer chemoresistance. CircRNA microarray expression profiles were obtained from Adriamycin (ADM) resistant MCF-7 breast cancer cells (MCF-7/ADM) and parental MCF-7 cells and were validated using quantitative real-time reverse transcription PCR. The expression data were analyzed bioinformatically. We detected 3093 circRNAs and identified 18 circRNAs that are differentially expressed between MCF-7/ADM and MCF-7 cells; after validating by quantitative real-time reverse transcription PCR, we predicted the possible miRNAs and potential target genes of the seven upregulated circRNAs using TargetScan and miRanda. The bioinformatics analysis revealed several target genes related to cancer-related signaling pathways. Additionally, we discovered a regulatory role of the circ_0006528-miR-7-5p-Raf1 axis in ADM-resistant breast cancer. These results revealed that circRNAs may play a role in breast cancer chemoresistance and that hsa_circ_0006528 might be a promising candidate for further functional analysis."	"RAF1 variants causing biventricular hypertrophic cardiomyopathy in two preterm infants: further phenotypic delineation and review of literature. Noonan syndrome (NS) is an autosomal dominant disorder characterized by distinctive facial features, short neck, short stature, congenital heart defects, pectus deformities, and variable developmental delays. NS is genetically heterogeneous as pathogenic variants in several genes involved in the Ras/mitogen-activated protein kinase pathway have been associated with a NS phenotype. Overall, 50% of patients harbor pathogenic variants in PTPN11, whereas 3-17% of patients have variants in RAF1. We present two premature neonates with progressive biventricular hypertrophy found to have RAF1 variants in the CR2 domain. Molecular testing in patient 1 revealed a missense variant of a highly conserved residue c.782 C&gt;G (p.P261R). This variant has been reported once with fatal outcome. Patient 2 also had a missense variant in a highly conserved neighboring residue c.770 C&gt;T (p.S257L). This variant has been previously reported, most recently associated with the development of pulmonary arterial hypertension. Both our patients had prenatal findings of polyhydramnios, short long bones, hydrops fetalis, and cardiac anomalies with progressive biventricular hypertrophic cardiomyopathy. Both patients had a lethal outcome. Our findings further support the pathogenicity and lethality of p.P261R, and the need to monitor for pulmonary arterial hypertension in p.S257L. In addition, the second patient was presented with progressive hydrocephalus due to aqueductal stenosis. This could be related to the NS phenotype. More cases with this association are needed to confirm this finding."	"Downregulation of RIKP by miR-200a promotes the invasive ability of esophageal cancer cells by upregulating the expression of LIN28 and MMP-14. Esophageal cancer (EC) is one of common digestive tract malignant tumors which morbidity and mortality were increased year by year. This study was aimed to investigate the role of microRNA (miR)-200a in EC. Human esophageal squamous cell carcinoma (ESCC) cells TE3 was transfected with miR-200a mimic or scramble control. Cell viability and invasion were assessed by MTT and Transwell assay, respectively. Binding effect of miR-200a on 3'UTR of RKIP was verified by luciferase activity assay. RKIP expression in miR-200a mimic transfected cells was measured. RKIP was overexpressed in miR-200a transfected cells and cell viability and invasion were measured. The expressions of Raf1, ERK, MMP-14, LIN28 and GRK-2 were also measured by qRT-PCR and Western blot analysis, respectively. Results showed that miR-200a mimic transfection increased cell viability and invasion of TE3 cells in vitro. miR-200a binding with 3'UTR of RKIP negatively regulated RKIP expression. RKIP overexpression inhibited effects of miR-200a on cell viability and invasion, as well as the increased phosphorylation levels of Raf1 and ERK. miR-200a increased expressions of MMP-14, LIN28 and GRK-2 in TE3 cells, and the up-regulations were inhibited by RKIP overexpression. In conclusion, the up-regulation of miR-200a in TE3 cells promoted cell viability and invasion via negatively regulating RKIP expression. RKIP was a direct target of miR-200a. miR-200a might be involved in activation of MAPK/ERK signaling pathway and expression of MMP-14, LIN28 and GRK-2 which were important factors of intracellular information transduction. Our findings demonstrated that miR-200a regulated ESCC cells via regulating RKIP expression."	"A time-resolved molecular map of the macrophage response to VSV infection. Studying the relationship between virus infection and cellular response is paradigmatic for our understanding of how perturbation changes biological systems. Immune response, in this context is a complex yet evolutionarily adapted and robust cellular change, and is experimentally amenable to molecular analysis. To visualize the full cellular response to virus infection, we performed temporal transcriptomics, proteomics, and phosphoproteomics analysis of vesicular stomatitis virus (VSV)-infected mouse macrophages. This enabled the understanding of how infection-induced changes in host gene and protein expression are coordinated with post-translational modifications by cells in time to best measure and control the infection process. The vast and complex molecular changes measured could be decomposed in a limited number of clusters within each category (transcripts, proteins, and protein phosphorylation) each with own kinetic parameter and characteristic pathways/processes, suggesting multiple regulatory options in the overall sensing and homeostatic program. Altogether, the data underscored a prevalent executive function to phosphorylation. Resolution of the molecular events affecting the RIG-I pathway, central to viral recognition, reveals that phosphorylation of the key innate immunity adaptor mitochondrial antiviral-signaling protein (MAVS) on S328/S330 is necessary for activation of type-I interferon and nuclear factor κ B (NFκB) pathways. To further understand the hierarchical relationships, we analyzed kinase-substrate relationships and found RAF1 and, to a lesser extent, ARAF to be inhibiting VSV replication and necessary for NFκB activation, and AKT2, but not AKT1, to be supporting VSV replication. Integrated analysis using the omics data revealed co-regulation of transmembrane transporters including SLC7A11, which was subsequently validated as a host factor in the VSV replication. The data sets are predicted to greatly empower future studies on the functional organization of the response of macrophages to viral challenges."	"RAS Proteins and Their Regulators in Human Disease. RAS proteins are binary switches, cycling between ON and OFF states during signal transduction. These switches are normally tightly controlled, but in RAS-related diseases, such as cancer, RASopathies, and many psychiatric disorders, mutations in the RAS genes or their regulators render RAS proteins persistently active. The structural basis of the switch and many of the pathways that RAS controls are well known, but the precise mechanisms by which RAS proteins function are less clear. All RAS biology occurs in membranes: a precise understanding of RAS' interaction with membranes is essential to understand RAS action and to intervene in RAS-driven diseases."	"Highly reproducible improved label-free quantitative analysis of cellular phosphoproteome by optimization of LC-MS/MS gradient and analytical column construction. Expanding the sequencing depth of the peptides with a statistically significant quantitative change derived from a biological stimulation is critical. Here we demonstrate that optimization of LC gradient and analytical column construction can reveal over 30,000 unique peptides and 23,000 phosphopeptides at high confidence. The quantitative reproducibility of different analytical workflows was evaluated by comparing the phosphoproteome of CD3/4 stimulated and unstimulated T-cells as a model system. A fritless, 50cm-long column packed with 1.9μm particles operated with a standard pressure HPLC significantly improved the sequencing depth 51% and decreased the selected ion chromatogram peak spreading. Most importantly, under the optimal workflow we observed an improvement of over 300% in detection of significantly changed phosphopeptides in the stimulated cells compared with the other workflows. The discovery power of the optimized column configuration was illustrated by identification of significantly altered phosphopeptides harboring novel sites from proteins previously established as important in T cell signaling including A-Raf, B-Raf, c-Myc, CARMA1, Fyn, ITK, LAT, NFAT1/2/3, PKCα, PLCγ1/2, RAF1, and SOS1. Taken together, our results reveal the analytical power of optimized chromatography using sub 2μm particles for the analysis of the T cell phosphoproteome to reveal a vast landscape of significantly altered phosphorylation changes in response to T cell receptor stimulation."	"Commentary on &quot;Integrative clinical genomics of advanced prostate cancer&quot;. Robinson D, Van Allen EM, Wu YM, Schultz N, Lonigro RJ, Mosquera JM, Montgomery B, Taplin ME, Pritchard CC, Attard G, Beltran H, Abida W, Bradley RK, Vinson J, Cao X, Vats P, Kunju LP, Hussain M, Feng FY, Tomlins SA, Cooney KA, Smith DC, Brennan C, Siddiqui J, Mehra R, Chen Y, Rathkopf DE, Morris MJ, Solomon SB, Durack JC, Reuter VE, Gopalan A, Gao J, Loda M, Lis RT, Bowden M, Balk SP, Gaviola G, Sougnez C, Gupta M, Yu EY, Mostaghel EA, Cheng HH, Mulcahy H, True LD, Plymate SR, Dvinge H, Ferraldeschi R, Flohr P, Miranda S, Zafeiriou Z, Tunariu N, Mateo J, Perez-Lopez R, Demichelis F, Robinson BD, Schiffman M, Nanus DM, Tagawa ST, Sigaras A, Eng KW, Elemento O, Sboner A, Heath EI, Scher HI, Pienta KJ, Kantoff P, de Bono JS, Rubin MA, Nelson PS, Garraway LA, Sawyers CL, Chinnaiyan AM.Cell. 21 May 2015;161(5):1215-1228. Toward development of a precision medicine framework for metastatic, castration-resistant prostate cancer (mCRPC), we established a multi-institutional clinical sequencing infrastructure to conduct prospective whole-exome and transcriptome sequencing of bone or soft tissue tumor biopsies from a cohort of 150 mCRPC affected individuals. Aberrations of AR, ETS genes, TP53, and PTEN were frequent (40%-60% of cases), with TP53 and AR alterations enriched in mCRPC compared to primary prostate cancer. We identified new genomic alterations in PIK3CA/B, R-spondin, BRAF/RAF1, APC, β-catenin, and ZBTB16/PLZF. Moreover, aberrations of BRCA2, BRCA1, and ATM were observed at substantially higher frequencies (19.3% overall) compared to those in primary prostate cancers. A total of 89% of affected individuals harbored a clinically actionable aberration, including 62.7% with aberrations in AR, 65% in other cancer-related genes, and 8% with actionable pathogenic germline alterations. This cohort study provides clinically actionable information that could affect treatment decisions for these affected individuals."	"Copy number alterations determined by single nucleotide polymorphism array testing in the clinical laboratory are indicative of gene fusions in pediatric cancer patients. Gene fusions resulting from structural rearrangements are an established mechanism of tumorigenesis in pediatric cancer. In this clinical cohort, 1,350 single nucleotide polymorphism (SNP)-based chromosomal microarrays from 1,211 pediatric cancer patients were evaluated for copy number alterations (CNAs) associated with gene fusions. Karyotype or fluorescence in situ hybridization studies were performed in 42% of the patients. Ten percent of the bone marrow or solid tumor specimens had SNP array-associated CNAs suggestive of a gene fusion. Alterations involving ETV6, ABL1-NUP214, EBF1-PDGFRB, KMT2A(MLL), LMO2-RAG, MYH11-CBFB, NSD1-NUP98, PBX1, STIL-TAL1, ZNF384-TCF3, P2RY8-CRLF2, and RUNX1T1-RUNX1 fusions were detected in the bone marrow samples. The most common alteration among the low-grade gliomas was a 7q34 tandem duplication resulting in a KIAA1549-BRAF fusion. Additional fusions identified in the pediatric brain tumors included FAM131B-BRAF and RAF1-QKI. COL1A1-PDGFB, CRTC1-MAML2, EWSR1, HEY1, PAX3- and PAX7-FOXO1, and PLAG1 fusions were determined in a variety of solid tumors and a novel potential gene fusion, FGFR1-USP6, was detected in an aneurysmal bone cyst. The identification of these gene fusions was instrumental in tumor diagnosis. In contrast to hematologic and solid tumors in adults that are predominantly driven by mutations, the majority of hematologic and solid tumors in children are characterized by CNAs and gene fusions. Chromosomal microarray analysis is therefore a robust platform to identify diagnostic and prognostic markers in the clinical setting."	"The 2 micron plasmid: a selfish genetic element with an optimized survival strategy within Saccharomyces cerevisiae. Since its discovery in the early 70s, the 2 micron plasmid of Saccharomyces cerevisiae continues to intrigue researchers with its high protein-coding capacity and a selfish nature yet high stability, earning it the title of a 'miniaturized selfish genetic element'. It codes for four proteins (Rep1, Rep2, Raf1, and Flp) vital for its own survival and recruits several host factors (RSC2, Cohesin, Cse4, Kip1, Bik1, Bim1, and microtubules) for its faithful segregation during cell division. The plasmid maintains a high-copy number with the help of Flp-mediated recombination. The plasmids organize in the form of clusters that hitch-hike the host chromosomes presumably with the help of the plasmid-encoded Rep proteins and host factors such as microtubules, Kip1 motor, and microtubule-associated proteins Bik1 and Bim1. Although there is no known yeast cell phenotype associated with the 2 micron plasmid, excessive copies of the plasmid are lethal for the cells, warranting a tight control over the plasmid copy number. This control is achieved through a combination of feedback loops involving the 2 micron encoded proteins. Thus, faithful segregation and a concomitant tightly controlled plasmid copy number ensure an optimized benign parasitism of the 2 micron plasmid within budding yeast."	"MicroRNA-497 acts as a tumor suppressor in gastric cancer and is downregulated by DNA methylation. Gastric cancer (GC) is one of the most common malignant tumors in the world and microRNAs (miRNAs) play an important role in GC. In this study, we found miR‑497 played an important role and served as a novel biomarker in GC. Quantitative real-time PCR (qRT-PCR) was used to measure the miR‑497 expression in GC cell lines and 86 paired GC samples and we also analyzed its correlation with GC clinicopathological parameters. A series of cellular function experiments were applied to validate the effects of miR‑497 on GC. In addition, methylation-specific PCR (MSP) was applied to detect the gene methylation status. Finally, the correlation between miR‑497 and the target gene was analyzed by western blotting assay. miR‑497 was reduced obviously in GC cells and tissues and significantly associated with the pathologic stage. Low expression of miR‑497 significantly inhibited the proliferation, invasion and migration of GC cell lines and accelerated apoptosis. Moreover, we found that the aberrant expression of miR‑497 may be ascribed to DNA methylation. microRNA.org and luciferase reporter assay suggested that RAF1 was a direct target of miR‑497 in GC. This study suggested that miR‑497 could serve as a tumor suppressor and a potential early diagnostic marker of GC by targeting Raf-1 proto-oncogene, serine/threonine kinase (RAF1)."	"Cellular interplay via cytokine hierarchy causes pathological cardiac hypertrophy in RAF1-mutant Noonan syndrome. Noonan syndrome (NS) is caused by mutations in RAS/ERK pathway genes, and is characterized by craniofacial, growth, cognitive and cardiac defects. NS patients with kinase-activating RAF1 alleles typically develop pathological left ventricular hypertrophy (LVH), which is reproduced in Raf1<sup>L613V/+</sup> knock-in mice. Here, using inducible Raf1<sup>L613V</sup> expression, we show that LVH results from the interplay of cardiac cell types. Cardiomyocyte Raf1<sup>L613V</sup> enhances Ca<sup>2+</sup> sensitivity and cardiac contractility without causing hypertrophy. Raf1<sup>L613V</sup> expression in cardiomyocytes or activated fibroblasts exacerbates pressure overload-evoked fibrosis. Endothelial/endocardial (EC) Raf1<sup>L613V</sup> causes cardiac hypertrophy without affecting contractility. Co-culture and neutralizing antibody experiments reveal a cytokine (TNF/IL6) hierarchy in Raf1<sup>L613V</sup>-expressing ECs that drives cardiomyocyte hypertrophy in vitro. Furthermore, postnatal TNF inhibition normalizes the increased wall thickness and cardiomyocyte hypertrophy in vivo. We conclude that NS-cardiomyopathy involves cardiomyocytes, ECs and fibroblasts, TNF/IL6 signalling components represent potential therapeutic targets, and abnormal EC signalling might contribute to other forms of LVH."	"PAQR3 Inhibits the Proliferation and Tumorigenesis in Esophageal Cancer Cells. Progestin and adipoQ receptor family member III (PAQR3), a member of the PAQR family, is frequently downregulated in different types of human cancer. However, its expression and functions in esophageal cancer are still unknown. This study aimed to explore the expression of PAQR3 in esophageal cancer cell lines and to investigate the role of PAQR3 in the development of esophageal cancer. Our data showed that PAQR3 is expressed in low amounts in human esophageal cancer cell lines. Overexpression of PAQR3 significantly suppressed the proliferation, migration, and invasion of esophageal cancer cells. In addition, overexpression of PAQR3 downregulated the protein expression levels of RAF1, p-MEK1, and p-ERK1/2 in esophageal cancer cells. Furthermore, overexpression of PAQR3 attenuated the tumor growth in a tumor xenograft model. In conclusion, we demonstrated that overexpression of PAQR3 suppresses cell proliferation, migration, and invasion in esophageal cancer in vitro and in vivo. Therefore, PAQR3 may act as a therapeutic target for human esophageal cancer."	"Association Analysis of Nonsyndromic Congenital Heart Disease and Tag Single Nucleotide Polymorphisms of TBX20 and Genes in the Ras-MAPK Pathway. The present study was performed to determine whether there are variants in TBX20 and genes of the Ras-MAPK pathway associated with nonsyndromic congenital heart disease (ns-CHD). A total of 223 ns-CHD patients and 273 healthy controls from China were selected as study subjects to perform an association analysis using 22 tag single-nucleotide polymorphisms (tag SNPs) located either in one of three genes in the Ras-MAPK pathway (MAP2K2, BRAF, and RAF1) or the TBX20 gene that have previously been associated with syndromic congenital heart disease. The results showed that none of these tag SNPs are associated with ns-CHD. The results suggested that these disease-causing genes, which were previously discovered in familial cases, might not be the major genetic factors causing the development of ns-CHD in Chinese."	"Targeted sequencing-based analyses of candidate gene variants in ulcerative colitis-associated colorectal neoplasia. Long-standing ulcerative colitis (UC) leading to colorectal cancer (CRC) is one of the most serious and life-threatening consequences acknowledged globally. Ulcerative colitis-associated colorectal carcinogenesis showed distinct molecular alterations when compared with sporadic colorectal carcinoma. Targeted sequencing of 409 genes in tissue samples of 18 long-standing UC subjects at high risk of colorectal carcinoma (UCHR) was performed to identify somatic driver mutations, which may be involved in the molecular changes during the transformation of non-dysplastic mucosa to high-grade dysplasia. Findings from the study are also compared with previously published genome wide and exome sequencing data in inflammatory bowel disease-associated and sporadic colorectal carcinoma. Next-generation sequencing analysis identified 1107 mutations in 275 genes in UCHR subjects. In addition to TP53 (17%) and KRAS (22%) mutations, recurrent mutations in APC (33%), ACVR2A (61%), ARID1A (44%), RAF1 (39%) and MTOR (61%) were observed in UCHR subjects. In addition, APC, FGFR3, FGFR2 and PIK3CA driver mutations were identified in UCHR subjects. Recurrent mutations in ARID1A (44%), SMARCA4 (17%), MLL2 (44%), MLL3 (67%), SETD2 (17%) and TET2 (50%) genes involved in histone modification and chromatin remodelling were identified in UCHR subjects. Our study identifies new oncogenic driver mutations which may be involved in the transition of non-dysplastic cells to dysplastic phenotype in the subjects with long-standing UC with high risk of progression into colorectal neoplasia."	"w09, a novel autophagy enhancer, induces autophagy-dependent cell apoptosis via activation of the EGFR-mediated RAS-RAF1-MAP2K-MAPK1/3 pathway. The EGFR (epidermal growth factor receptor) signaling pathway is frequently deregulated in many malignancies. Therefore, targeting the EGFR pathway is regarded as a promising strategy for anticancer drug discovery. Herein, we identified a 2-amino-nicotinonitrile compound (w09) as a novel autophagy enhancer, which potently induced macroautophagy/autophagy and consequent apoptosis in gastric cancer cells. Mechanistic studies revealed that EGFR-mediated activation of the RAS-RAF1-MAP2K-MAPK1/3 signaling pathway played a critical role in w09-induced autophagy and apoptosis of gastric cancer cells. Inhibition of the MAPK1/3 pathway with U0126 or blockade of autophagy by specific chemical inhibitors markedly attenuated the effect of w09-mediated growth inhibition and caspase-dependent apoptosis. Furthermore, these conclusions were supported by knockdown of ATG5 or knockout of ATG5 and/or ATG7. Notably, w09 increased the expression of SQSTM1 by transcription, and knockout of SQSTM1 or deleting the LC3-interaction region domain of SQSTM1, significantly inhibited w09-induced PARP1 cleavage, suggesting the central role played by SQSTM1 in w09-induced apoptosis. In addition, in vivo administration of w09 effectively inhibited tumor growth of SGC-7901 xenografts. Hence, our findings not only suggested that activation of the EGFR-RAS-RAF1-MAP2K-MAPK1/3 signaling pathway may play a critical role in w09-induced autophagy and apoptosis, but also imply that induction of autophagic cancer cell death through activation of the EGFR pathway may be a potential therapeutic strategy for EGFR-disregulated gastric tumors."	"CD99-Derived Agonist Ligands Inhibit Fibronectin-Induced Activation of β1 Integrin through the Protein Kinase A/SHP2/Extracellular Signal-Regulated Kinase/PTPN12/Focal Adhesion Kinase Signaling Pathway. The human CD99 protein is a 32-kDa glycosylated transmembrane protein that regulates various cellular responses, including cell adhesion and leukocyte extravasation. We previously reported that CD99 activation suppresses β1 integrin activity through dephosphorylation of focal adhesion kinase (FAK) at Y397. We explored a molecular mechanism underlying the suppression of β1 integrin activity by CD99 agonists and its relevance to tumor growth in vivo CD99-Fc fusion proteins or a series of CD99-derived peptides suppressed β1 integrin activity by specifically interacting with three conserved motifs of the CD99 extracellular domain. CD99CRIII3, a representative CD99-derived 3-mer peptide, facilitated protein kinase A-SHP2 interaction and subsequent activation of the HRAS/RAF1/MEK/ERK signaling pathway. Subsequently, CD99CRIII3 induced FAK phosphorylation at S910, which led to the recruitment of PTPN12 and PIN1 to FAK, followed by FAK dephosphorylation at Y397. Taken together, these results indicate that CD99-derived agonist ligands inhibit fibronectin-mediated β1 integrin activation through the SHP2/ERK/PTPN12/FAK signaling pathway."	"The 2-μm plasmid encoded protein Raf1 regulates both stability and copy number of the plasmid by blocking the formation of the Rep1-Rep2 repressor complex. The 2-μm plasmid of the budding yeast Saccharomyces cerevisiae achieves a high chromosome-like stability with the help of four plasmid-encoded (Rep1, Rep2, Raf1 and Flp) and several host-encoded proteins. Rep1 and Rep2 and the DNA locus STB form the partitioning system ensuring equal segregation of the plasmid. The Flp recombinase and its target sites FRTs form the amplification system which is responsible for the steady state plasmid copy number. In this work we show that the absence of Raf1 can affect both the plasmid stability and the steady sate copy number. We also show that the Rep proteins do bind to the promoter regions of the 2-μm encoded genes, as predicted by earlier models and Raf1 indeed blocks the formation of the Rep1-Rep2 repressor complex not by blocking the transcription of the REP1 and REP2 genes but by physically associating with the Rep proteins and negating their interactions. This explains the role of Raf1 in both the partitioning and the amplification systems as the Rep1-Rep2 complex is believed to modulate both these systems. Based on this study, we have provided, from a systems biology perspective, a model for the mechanism of the 2-μm plasmid maintenance."	"Targeted next-generation sequencing of pediatric neuro-oncology patients improves diagnosis, identifies pathogenic germline mutations, and directs targeted therapy. Molecular profiling is revolutionizing cancer diagnostics and leading to personalized therapeutic approaches. Herein we describe our clinical experience performing targeted sequencing for 31 pediatric neuro-oncology patients. We sequenced 510 cancer-associated genes from tumor and peripheral blood to identify germline and somatic mutations, structural variants, and copy number changes. Genomic profiling was performed on 31 patients with tumors including 11 high-grade gliomas, 8 medulloblastomas, 6 low-grade gliomas, 1 embryonal tumor with multilayered rosettes, 1 pineoblastoma, 1 uveal ganglioneuroma, 1 choroid plexus carcinoma, 1 chordoma, and 1 high-grade neuroepithelial tumor. In 25 cases (81%), results impacted patient management by: (i) clarifying diagnosis, (ii) identifying pathogenic germline mutations, or (iii) detecting potentially targetable alterations. The pathologic diagnosis was amended after genomic profiling for 6 patients (19%), including a high-grade glioma to pilocytic astrocytoma, medulloblastoma to pineoblastoma, ependymoma to high-grade glioma, and medulloblastoma to CNS high-grade neuroepithelial tumor with BCOR alteration. Multiple patients had pathogenic germline mutations, many of which were previously unsuspected. Potentially targetable alterations were identified in 19 patients (61%). Additionally, novel likely pathogenic alterations were identified in 3 cases: an in-frame RAF1 fusion in a BRAF wild-type pleomorphic xanthoastrocytoma, an inactivating ASXL1 mutation in a histone H3 wild-type diffuse pontine glioma, and an in-frame deletion within exon 2 of MAP2K1 in a low-grade astrocytic neoplasm. Our experience demonstrates the significant impact of molecular profiling on diagnosis and treatment of pediatric brain tumors and confirms its feasibility for use at the time of diagnosis or recurrence."	"A new GTF2I-BRAF fusion mediating MAPK pathway activation in pilocytic astrocytoma. Pilocytic astrocytoma (PA) is the most common pediatric brain tumor. A recurrent feature of PA is deregulation of the mitogen activated protein kinase (MAPK) pathway most often through KIAA1549-BRAF fusion, but also by other BRAF- or RAF1-gene fusions and point mutations (e.g. BRAFV600E). These features may serve as diagnostic and prognostic markers, and also facilitate development of targeted therapy. The aims of this study were to characterize the genetic alterations underlying the development of PA in six tumor cases, and evaluate methods for fusion oncogene detection. Using a combined analysis of RNA sequencing and copy number variation data we identified a new BRAF fusion involving the 5' gene fusion partner GTF2I (7q11.23), not previously described in PA. The new GTF2I-BRAF 19-10 fusion was found in one case, while the other five cases harbored the frequent KIAA1549-BRAF 16-9 fusion gene. Similar to other BRAF fusions, the GTF2I-BRAF fusion retains an intact BRAF kinase domain while the inhibitory N-terminal domain is lost. Functional studies on GTF2I-BRAF showed elevated MAPK pathway activation compared to BRAFWT. Comparing fusion detection methods, we found Fluorescence in situ hybridization with BRAF break apart probe as the most sensitive method for detection of different BRAF rearrangements (GTF2I-BRAF and KIAA1549-BRAF). Our finding of a new BRAF fusion in PA further emphasis the important role of B-Raf in tumorigenesis of these tumor types. Moreover, the consistency and growing list of BRAF/RAF gene fusions suggests these rearrangements to be informative tumor markers in molecular diagnostics, which could guide future treatment strategies."	"Activity of distinct growth factor receptor network components in breast tumors uncovers two biologically relevant subtypes. The growth factor receptor network (GFRN) plays a significant role in driving key oncogenic processes. However, assessment of global GFRN activity is challenging due to complex crosstalk among GFRN components, or pathways, and the inability to study complex signaling networks in patient tumors. Here, pathway-specific genomic signatures were used to interrogate GFRN activity in breast tumors and the consequent phenotypic impact of GRFN activity patterns. Novel pathway signatures were generated in human primary mammary epithelial cells by overexpressing key genes from GFRN pathways (HER2, IGF1R, AKT1, EGFR, KRAS (G12V), RAF1, BAD). The pathway analysis toolkit Adaptive Signature Selection and InteGratioN (ASSIGN) was used to estimate pathway activity for GFRN components in 1119 breast tumors from The Cancer Genome Atlas (TCGA) and across 55 breast cancer cell lines from the Integrative Cancer Biology Program (ICBP43). These signatures were investigated for their relationship to pro- and anti-apoptotic protein expression and drug response in breast cancer cell lines. Application of these signatures to breast tumor gene expression data identified two novel discrete phenotypes characterized by concordant, aberrant activation of either the HER2, IGF1R, and AKT pathways (&quot;the survival phenotype&quot;) or the EGFR, KRAS (G12V), RAF1, and BAD pathways (&quot;the growth phenotype&quot;). These phenotypes described a significant amount of the variability in the total expression data across breast cancer tumors and characterized distinctive patterns in apoptosis evasion and drug response. The growth phenotype expressed lower levels of BIM and higher levels of MCL-1 proteins. Further, the growth phenotype was more sensitive to common chemotherapies and targeted therapies directed at EGFR and MEK. Alternatively, the survival phenotype was more sensitive to drugs inhibiting HER2, PI3K, AKT, and mTOR, but more resistant to chemotherapies. Gene expression profiling revealed a bifurcation pattern in GFRN activity represented by two discrete phenotypes. These phenotypes correlate to unique mechanisms of apoptosis and drug response and have the potential of pinpointing targetable aberration(s) for more effective breast cancer treatments."	"Unique presentation of cutis laxa with Leigh-like syndrome due to ECHS1 deficiency. Clinical finding of cutis laxa, characterized by wrinkled, redundant, sagging, nonelastic skin, is of growing significance due to its occurrence in several different inborn errors of metabolism (IEM). Metabolic cutis laxa results from Menkes syndrome, caused by a defect in the ATPase copper transporting alpha (ATP7A) gene; congenital disorders of glycosylation due to mutations in subunit 7 of the component of oligomeric Golgi (COG7)-congenital disorders of glycosylation (CDG) complex; combined disorder of N- and O-linked glycosylation, due to mutations in ATPase H+ transporting V0 subunit a2 (ATP6VOA2) gene; pyrroline-5-carboxylate reductase 1 deficiency; pyrroline-5-carboxylate synthase deficiency; macrocephaly, alopecia, cutis laxa, and scoliosis (MACS) syndrome, due to Ras and Rab interactor 2 (RIN2) mutations; transaldolase deficiency caused by mutations in the transaldolase 1 (TALDO1) gene; Gerodermia osteodysplastica due to mutations in the golgin, RAB6-interacting (GORAB or SCYL1BP1) gene; and mitogen-activated pathway (MAP) kinase defects, caused by mutations in several genes [protein tyrosine phosphatase, non-receptor-type 11 (PTPN11), RAF, NF, HRas proto-oncogene, GTPase (HRAS), B-Raf proto-oncogene, serine/threonine kinase (BRAF), MEK1/2, KRAS proto-oncogene, GTPase (KRAS), SOS Ras/Rho guanine nucleotide exchange factor 2 (SOS2), leucine rich repeat scaffold protein (SHOC2), NRAS proto-oncogene, GTPase (NRAS), and Raf-1 proto-oncogene, serine/threonine kinase (RAF1)], which regulate the Ras-MAPK cascade. Here, we further expand the list of inborn errors of metabolism associated with cutis laxa by describing the clinical presentation of a 17-month-old girl with Leigh-like syndrome due to enoyl coenzyme A hydratase, short chain, 1, mitochondria (ECHS1) deficiency, a mitochondrial matrix enzyme that catalyzes the second step of the beta-oxidation spiral of fatty acids and plays an important role in amino acid catabolism, particularly valine."	"Spatial regulation of ARAF controls the MST2-Hippo pathway. The RAF-MAPK signaling pathway regulates several very diverse cellular processes such as proliferation, differentiation, apoptosis, and transformation. While the canonical function of RAF kinases within the MAPK pathway is the activation of MEK, our group could demonstrate an important crosstalk between RAF signaling and the pro-apoptotic mammalian sterile 20-like kinase (MST2) tumor suppressor pathway in several cancer entities, including head and neck, colon, and breast. Here, the RAF kinases CRAF and ARAF sequester and inhibit the pro-apoptotic kinase MST2 independently of their own kinase activity. In our recent study, we showed that the ARAF-MST2 complex is regulated by subcellular compartmentalization during epithelial differentiation. Proliferating cells of the basal cell layer in squamous epithelia and tumor cells express ARAF at the mitochondria thus allowing for efficient sequestration of MST2. In contrast, non-malignant squamous epithelia have ARAF localized at the plasma membrane, where the control of MST2-mediated apoptosis is compromised. This re-distribution is regulated by the scaffold protein kinase suppressor of Ras 2 (KSR2). Here, we summarize how spatial and temporal regulation of RAF signaling complexes affect cellular signaling and functions."	"RAF1/BRAF dimerization integrates the signal from RAS to ERK and ROKα. Downstream of growth factor receptors and of the guanine triphosphatase (GTPase) RAS, heterodimers of the serine/threonine kinases BRAF and RAF1 are critical upstream kinases and activators of the mitogen-activated protein kinase (MAPK) module containing the mitogen-activated and extracellular signal-regulated kinase kinase (MEK) and their targets, the extracellular signal-regulated kinase (ERK) family. Either direct or scaffold protein-mediated interactions among the components of the ERK module (the MAPKKKs BRAF and RAF1, MEK, and ERK) facilitate signal transmission. RAF1 also has essential functions in the control of tumorigenesis and migration that are mediated through its interaction with the kinase ROKα, an effector of the GTPase RHO and regulator of cytoskeletal rearrangements. We combined mutational and kinetic analysis with mathematical modeling to show that the interaction of RAF1 with ROKα is coordinated with the role of RAF1 in the ERK pathway. We found that the phosphorylated form of RAF1 that interacted with and inhibited ROKα was generated during the interaction of RAF1 with the ERK module. This mechanism adds plasticity to the ERK pathway, enabling signal diversification at the level of both ERK and RAF. Furthermore, by connecting ERK activation with the regulation of ROKα and cytoskeletal rearrangements by RAF1, this mechanism has the potential to precisely coordinate the proper timing of proliferation with changes in cell shape, adhesion, or motility."	"Erratum to: Is RAF1 protein from Synechocystis sp. PCC 6803 really needed in the cyanobacterial Rubisco assembly process? NA"	"Molecular profiling of metastatic colorectal tumors using next-generation sequencing: a single-institution experience. Recent molecular characterization of colorectal tumors has identified several molecular alterations of interest that are considered targetable in metastatic colorectal cancer (mCRC). We conducted a single-institution, retrospective study based on comprehensive genomic profiling of tumors from 138 patients with mCRC using next-generation sequencing (NGS) via FoundationOne. Overall, RAS mutations were present in 51.4% and RAF mutations were seen in 7.2% of mCRC patients. We found a novel KRASR68S1 mutation associated with an aggressive phenotype. RAS amplifications (1.4% KRAS and 0.7% NRAS), MET amplifications (2.2%), BRAFL597Ralterations (0.7%), ARAFS214F alterations (0.7%), and concurrent RAS+RAF (1.4%), BRAF+RAF1 (0.7%), and rare PTEN-PIK3CA-AKT pathway mutations were identified and predominantly associated with poor prognosis. ERBB2 (HER2) amplified tumors were identified in 5.1% and all arose from the rectosigmoid colon. Three cases (2.2%) were associated with a hypermutated profile that was corroborated with findings of high tumor mutational burden (TMB): 2 cases with MSI-H and 1 case with a POLE mutation. Comprehensive genomic profiling can uncover alterations beyond the well-characterized RAS/RAF mutations associated with anti-EGFR resistance. ERBB2 amplified tumors commonly originate from the rectosigmoid colon, are predominantly RAS/BRAF wild-type, and may predict benefit to HER2-directed therapy. Hypermutant tumors or tumors with high TMB correlate with MSI-H status or POLE mutations and may predict a benefit from anti-PD-1 therapy."	"Circular RNA ciRS-7-A Promising Prognostic Biomarker and a Potential Therapeutic Target in Colorectal Cancer. Purpose: Colorectal cancer is one of the most common malignancies worldwide. Recently, a novel circular RNA, ciRS-7, was proposed to be a potential miR-7 sponge. As miR-7, a putative tumor-suppressor, regulates the expression of several important drivers of colorectal cancer, we analyzed the clinical significance of ciRS-7 in colorectal cancer patients.Experimental Design: Initially, we evaluated the expression levels of ciRS-7 in a training cohort comprising of 153 primary colorectal cancer tissues and 44 matched normal mucosae. We subsequently confirmed its clinical relevance in an independent validation cohort (n = 165), and evaluated the effect of ciRS-7 on miR-7, and its target genes EGFR and RAF1. Functional analyses were performed in cell lines and an animal model to support clinical findings.Results: Our data revealed that ciRS-7 was significantly upregulated in colorectal cancer tissues compared with matched normal mucosae (P = 0.0018), and its overexpression was associated with poor patient survival (P = 0.0224 and 0.0061 in the training and validation cohorts, respectively). Multivariate survival analysis revealed that ciRS-7 emerged as an independent risk factor for overall survival (P = 0.0656 and 0.0324 in the training and validation cohorts, respectively). Overexpression of ciRS-7 in HCT116 and HT29 cells led to the blocking of miR-7 and resulted in a more aggressive oncogenic phenotype, and ciRS-7 overexpression permitted the inhibition of miR-7 and subsequent activation of EGFR and RAF1 oncogenes.Conclusions: CiRS-7 is a promising prognostic biomarker in colorectal cancer patients and may serve as a therapeutic target for reducing EGFR-RAF1 activity in colorectal cancer patients. Clin Cancer Res; 23(14); 3918-28. ©2017 AACR."	"Is RAF1 protein from Synechocystis sp. PCC 6803 really needed in the cyanobacterial Rubisco assembly process? Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco) is responsible for carbon dioxide conversion during photosynthesis and, therefore, is the most important protein in biomass generation. Modifications of this biocatalyst toward improvements in its properties are hindered by the complicated and not yet fully understood assembly process required for the formation of active holoenzymes. An entire set of auxiliary factors, including chaperonin GroEL/GroES and assembly chaperones RbcX or Rubisco accumulation factor 1 (RAF1), is involved in the folding and subsequent assembly of Rubisco subunits. Recently, it has been shown that cyanobacterial RAF1 acts during the formation of the large Rubisco subunit (RbcL) dimer. However, both its physiological function and its necessity in the prokaryotic Rubisco formation process remain elusive. Here, we demonstrate that the Synechocystis sp. PCC 6803 strain with raf1 gene disruption shows the same growth rate as wild-type cells under standard conditions. Moreover, the Rubisco biosynthesis process seems to be unperturbed in mutant cells despite the absence of RbcL-RAF1 complexes. However, in the tested environmental conditions, sulfur starvation triggers the degradation of RbcL and subsequent proteolysis of other polypeptides in wild-type but not Δraf1 strains. Pull-down experiments also indicate that, apart from Rubisco, RAF1 co-purifies with phycocyanins. We postulate that RAF1 is not an obligatory factor in cyanobacterial Rubisco assembly, but rather participates in environmentally regulated Rubisco homeostasis."	"Dishevelled segment polarity protein 3 (DVL3): a novel and easily applicable recurrence predictor in localised prostate adenocarcinoma. To identify new biomarkers for biochemical recurrence (BCR) of prostate adenocarcinoma. Clinical information of 500 patients with prostate adenocarcinoma and their 152 RNA-sequencing and protein-array data from The Cancer Genome Atlas (TCGA) were separated into a discovery set and a validation set. Each dataset was analysed according to the Gleason grade groups reflecting BCR. The results obtained from the analysis using TCGA dataset were confirmed by immunohistochemistry analyses of a confirmation cohort composed of 395 patients with localised prostate adenocarcinoma. TCGA discovery set was subgrouped into lower- and higher-risk groups for recurrence-free survival (RFS) (P &lt; 0.001). Cyclin B1 (CCNB1), dishevelled segment polarity protein 3 (DVL3), paxillin (PXN), RAF1, transferrin, X-ray repair cross complementing 5 (XRCC5) and BIM had lower expression in the lower-risk group than that in the higher-risk group (all, P &lt; 0.05). In TCGA validation set, CCNB1, DVL3, transferrin, XRCC5 and BIM were also differently expressed between the two groups. Immunohistochemically, DVL3 positivity was associated with high prostate-specific antigen (PSA) levels, resection margin involvement, and BCR (all, P &lt; 0.05). A high Gleason score indicated a marginal relationship (P = 0.055). BIM positivity was related to high PSA levels, lymphovascular invasion, and BCR (all, P &lt; 0.05). Both DVL3 positivity (P = 0.010) and BIM positivity (P = 0.024) were associated with shorter RFS, but statistical significance was lost when the multivariate Cox regression model included all patients. In the lower-risk group, the multivariate Cox model confirmed that DVL3 was an independent predictor for poor RFS (hazard ratio 1.80, P = 0.040), and the concordance index (C-index) was 0.805. DVL3 and BIM were expressed in patients with a higher risk of BCR. DVL3 may be a novel and easily applicable recurrence predictor of localised prostate adenocarcinoma."	"Frontline Science: Tumor necrosis factor-α stimulation and priming of human neutrophil granule exocytosis. Neutrophil granule exocytosis plays an important role in innate and adaptive immune responses. The present study examined TNF-α stimulation or priming of exocytosis of the 4 neutrophil granule subsets. TNF-α stimulated exocytosis of secretory vesicles and gelatinase granules and primed specific and azurophilic granule exocytosis to fMLF stimulation. Both stimulation and priming of exocytosis by TNF-α were dependent on p38 MAPK activity. Bioinformatic analysis of 1115 neutrophil proteins identified by mass spectrometry as being phosphorylated by TNF-α exposure found that actin cytoskeleton regulation was a major biologic function. A role for p38 MAPK regulation of the actin cytoskeleton was confirmed experimentally. Thirteen phosphoproteins regulated secretory vesicle quantity, formation, or release, 4 of which-Raf1, myristoylated alanine-rich protein kinase C (PKC) substrate (MARCKS), Abelson murine leukemia interactor 1 (ABI1), and myosin VI-were targets of the p38 MAPK pathway. Pharmacologic inhibition of Raf1 reduced stimulated exocytosis of gelatinase granules and priming of specific granule exocytosis. We conclude that differential regulation of exocytosis by TNF-α involves the actin cytoskeleton and is a necessary component for priming of the 2 major neutrophil antimicrobial defense mechanisms: oxygen radical generation and release of toxic granule contents."	"Type II cGMP-dependent protein kinase negatively regulates fibroblast growth factor signaling by phosphorylating Raf-1 at serine 43 in rat chondrosarcoma cells. Although type II cGMP-dependent protein kinase (PKGII) is a major downstream effector of cGMP in chondrocytes and attenuates the FGF receptor 3/ERK signaling pathway, its direct target proteins have not been fully explored. In the present study, we attempted to identify PKGII-targeted proteins, which are associated with the inhibition of FGF-induced MAPK activation. Although FGF2 stimulation induced the phosphorylation of ERK1/2, MEK1/2, and Raf-1 at Ser-338 in rat chondrosarcoma cells, pretreatment with a cell-permeable cGMP analog strongly inhibited their phosphorylation. On the other hand, Ser-43 of Raf-1 was phosphorylated by cGMP in a dose-dependent manner. Therefore, we examined the direct phosphorylation of Raf-1 by PKGII. Wild-type PKGII phosphorylated Raf-1 at Ser-43 in a cGMP-dependent manner, but a PKGII D412A/R415A mutant, which has a low affinity for cGMP, did not. Finally, we found that a phospho-mimic mutant, Raf-1 S43D, suppressed FGF2-induced MAPK pathway. These results suggest that PKGII counters FGF-induced MEK/ERK activation through the phosphorylation of Raf-1 at Ser-43 in chondrocytes."	"MiR-216a decreases MALAT1 expression, induces G2/M arrest and apoptosis in pancreatic cancer cells. How lncRNA MALAT1 is regulated by miRNAs at posttranscriptional level in pancreatic cancer and their regulative effects on the cancer cells remain largely unknown. By retrieving previous miRNA array data and performing primary qRT-PCR, we observed a significant negative correlation between miR-216a and MALAT1 in pancreatic ductal adenocarcinoma (PDAC) tissues and adjacent normal tissues. The following in vitro cell assay further confirmed a direct binding between miR-216a and MALAT1 and the suppressive effect of miR-216a on MALAT1 expression. MiR-216a overexpression had similar effects as MALAT1 siRNA on restoring p21 and p27 expression and inhibiting B-MYB, RAF1 and PCNA1 expression in both PANC-1 and BxPC3 cells. MiR-216a overexpression and MALAT1 knockdown induced cell cycle arrest at G2/M phase. MiR-216a overexpression not only significantly induced cell apoptosis, but also reduced cell viability and increased cell apoptosis in response to gemcitabine in the cancer cells. Based on these findings, we infer that miR-216a induces apoptosis both in the presence and absence of gemcitabine in pancreatic cancer cells by silencing MALAT1 expression."	"βIII-tubulin overexpression is linked to aggressive tumor features and genetic instability in urinary bladder cancer. Development of genetic instability is a hallmark of tumor progression. Type III β-tubulin (TUBB3) is a component of microtubules involved in chromosome segregation. Its overexpression has been linked to adverse features of urinary bladder cancer. To investigate the role of TUBB3 for development of genetic instability, we compared TUBB3 expression with histopathological features and surrogate markers of genetic instability and tumor aggressiveness; copy number changes of HER2, TOP2A, CCND1, RAF1, and FGFR1; nuclear accumulation of p53, and cell proliferation in a tissue microarray (TMA) with more than 700 bladder cancers. TUBB3 expression was linked to high-grade and advanced-stage cancers (P&lt;.0001), rapid cell proliferation (P&lt;.0001), presence of multiple gene copy number alterations (P=.0008), and nuclear accumulation of p53 (P=.0008). Strong TUBB3 staining was found in 43% of urothelial cancers harboring copy number alterations as compared with 28% of genetically stable cancers, and in 50% of p53-positive cancers as compared with 30% of p53-negative tumors. The fraction of tumors with concomitant TUBB3 and p53 positivity increased with tumor stage and grade: 2% in pTaG1-2, 11% in pTaG3, 17% in pT1G2, 23% in pT1G3, and 32% in pT2-4 cancers (P&lt;.0001). Importantly, strong TUBB3 overexpression was detectable in about 20% of low-grade, noninvasive cancers. In summary, our study demonstrates that TUBB3 overexpression is linked to an aggressive subtype of urinary bladder cancers, which is characterized by increased genetic instability, p53 alterations, and rapid cell proliferation. Detection of TUBB3 overexpression in genetically stable, low-grade, and noninvasive bladder cancers may be clinically useful to identify patients requiring particular close monitoring."	"Overexpression of Mitofusin2 decreased the reactive astrocytes proliferation in vitro induced by oxygen-glucose deprivation/reoxygenation. Glia scar is a hallmark in late-stage of brain stroke disease, which hinder axonal regeneration and neuronal repair. Mitofusin2 (Mfn2) is a newly found cellular proliferation inhibitor. This study is to elucidate the role of Mfn2 in reactive astrocytes induced by oxygen-glucose deprivation/reoxygenation(OGD/R) model in vitro. Up-expression in EdU staining and protein level of GFAP, PCNA and CyclinD1, demonstrates the distinct activation and proliferation of astrocytes after the stimulation of OGD/R. Meanwhile, Mfn2 was proved to be down-regulated both in gene and protein levels. Pretreatment of cells with adenoviral vector encoding Mfn2 gene increased Mfn2 expression and subsequently attenuated OGD-induced astrocyte proliferation. Down-regulation of Ras-p-Raf1-p-ERK1/2 pathway and cell cycle arrest were found to be relevant. Together, these results suggested that overexpression of Mfn2 can effectively inhibit the proliferation of reactive astrogliosis, which might contribute to a promising therapeutic intervention in cerebral ischemic injury."	"A cell-autonomous tumour suppressor role of RAF1 in hepatocarcinogenesis. Hepatocellular carcinoma (HCC) is a leading cause of cancer deaths, but its molecular heterogeneity hampers the design of targeted therapies. Currently, the only therapeutic option for advanced HCC is Sorafenib, an inhibitor whose targets include RAF. Unexpectedly, RAF1 expression is reduced in human HCC samples. Modelling RAF1 downregulation by RNAi increases the proliferation of human HCC lines in xenografts and in culture; furthermore, RAF1 ablation promotes chemical hepatocarcinogenesis and the proliferation of cultured (pre)malignant mouse hepatocytes. The phenotypes depend on increased YAP1 expression and STAT3 activation, observed in cultured RAF1-deficient cells, in HCC xenografts, and in autochthonous liver tumours. Thus RAF1, although essential for the development of skin and lung tumours, is a negative regulator of hepatocarcinogenesis. This unexpected finding highlights the contribution of the cellular/tissue environment in determining the function of a protein, and underscores the importance of understanding the molecular context of a disease to inform therapy design."	"Higher Nevus Count Exhibits a Distinct DNA Methylation Signature in Healthy Human Skin: Implications for Melanoma. High nevus count is the strongest risk factor for melanoma, and although gene variants have been discovered for both traits, epigenetic variation is unexplored. We investigated 322 healthy human skin DNA methylomes associated with total body nevi count, incorporating genetic and transcriptomic variation. DNA methylation changes were identified at genes involved in melanocyte biology, such as RAF1 (P = 1.2 × 10<sup>-6</sup>) and CTC1 (region: P = 6.3 × 10<sup>-4</sup>), and other genes including ARRDC1 (P = 3.1 × 10<sup>-7</sup>). A subset exhibited coordinated methylation and transcription changes within the same biopsy. The total analysis was also enriched for melanoma-associated DNA methylation variation (P = 6.33 × 10<sup>-6</sup>). In addition, we show that skin DNA methylation is associated in cis with known genome-wide association study single nucleotide polymorphisms for nevus count, at PLA2G6 (P = 1.7 × 10<sup>-49</sup>) and NID1 (P = 6.4 × 10<sup>-14</sup>), as well as melanoma risk, including in or near MC1R, MX2, and TERT/CLPTM1L (P &lt; 1 × 10<sup>-10</sup>). Our analysis using a uniquely large dataset comprising healthy skin DNA methylomes identified known and additional regulatory loci and pathways in nevi and melanoma biology. This integrative study improves our understanding of predisposition to nevi and their potential contribution to melanoma pathogenesis."	"Contrary influence of clinically applied sorafenib concentrations among hepatocellular carcinoma patients. The treatment responses of sorafenib in hepatocellular carcinoma are modest which may be due to different characteristics of cancer cells or insufficient therapeutic concentrations. This study was to clarify this issue. The anti-proliferative effects and differential expressions of 8 genes related to sorafenib anti-cancer mechanisms (tyrosine kinase receptor genes: KDR, PDGFRB; RAF cascade: RAF1, BRAF, MAP2K1, MAP2K2, MAPK1, MAPK3) were investigated in primary cultured hepatocellular carcinoma cells collected from 8 patients using clinically applied sorafenib concentrations (5, 10μg/mL). The anti-proliferative effects of sorafenib at either 5 or 10μg/mL, which were related to down-regulations of KDR, PDGFRB and/or genes in the RAF cascade, were achieved only in one patient (HCC38/KMUH). However, either 5 or 10μg/mL sorafenib promoted proliferation in 4 patients (HCC29/KMUH, HCC62/KMUH, HCC87/KMUH, HCC98/KMUH). Among them, the RAF cascade, PDGFRB and/or KDR were up-regulated in 3 patients but no gene was differentially expressed in the remaining one patient (HCC87/KMUH). Increase the sorafenib concentration to 10μg/mL paradoxically up-regulated and/or obliterated the previously down-regulated genes in the RAF cascade and/or KDR in 4 patients (HCC29/KMUH, HCC76/KMUH, HCC87/KMUH, HCC98/KMUH). Significant down-regulations of the RAF cascade and PDGFRB by sorafenib but without anti-proliferative effects were detected in one patient (HCC54/KMUH). In conclusion, influence of sorafenib on proliferation is not simply through the RAF cascade. The responses of KDR, PDGFRB and the RAF cascade to sorafenib among patients are diverse or even contrary. Increase the sorafenib concentration has potential to up-regulate genes favored angiogenesis and proliferation."	"SH003 induces apoptosis of DU145 prostate cancer cells by inhibiting ERK-involved pathway. Herbal medicines have been used in cancer treatment, with many exhibiting favorable side effect and toxicity profiles compared with conventional chemotherapeutic agents. SH003 is a novel extract from Astragalus membranaceus, Angelica gigas, and Trichosanthes Kirilowii Maximowicz combined at a 1:1:1 ratio that impairs the growth of breast cancer cells. This study investigates anti-cancer effects of SH003 in prostate cancer cells. SH003 extract in 30% ethanol was used to treat the prostate cancer cell lines DU145, LNCaP, and PC-3. Cell viability was determined by MTT and BrdU incorporation assays. Next, apoptotic cell death was determined by Annexin V and 7-AAD double staining methods. Western blotting was conducted to measure protein expression levels of components of cell death and signaling pathways. Intracellular reactive oxygen species (ROS) levels were measured using H2DCF-DA. Plasmid-mediated ERK2 overexpression in DU145 cells was used to examine the effect of rescuing ERK2 function. Results were analyzed using the Student's t-test and P-values &lt; 0.05 were considered to indicate statistically-significant differences. Our data demonstrate that SH003 induced apoptosis in DU145 prostate cancer cells by inhibiting ERK signaling. SH003 induced apoptosis of prostate cancer cells in dose-dependent manner, which was independent of androgen dependency. SH003 also increased intracellular ROS levels but this is not associated with its pro-apoptotic effects. SH003 inhibited phosphorylation of Ras/Raf1/MEK/ERK/p90RSK in androgen-independent DU145 cells, but not androgen-dependent LNCaP and PC-3 cells. Moreover, ERK2 overexpression rescued SH003-induced apoptosis in DU145 cells. SH003 induces apoptotic cell death of DU145 prostate cancer cells by inhibiting ERK2-mediated signaling."	"Noonan syndrome-causing genes: Molecular update and an assessment of the mutation rate. Noonan syndrome is a common autosomal dominant disorder characterized by short stature, congenital heart disease and facial dysmorphia with an incidence of 1/1000 to 2500 live births. Up to now, several genes have been proven to be involved in the disturbance of the transduction signal through the RAS-MAP Kinase pathway and the manifestation of Noonan syndrome. The first gene described was PTPN11, followed by SOS1, RAF1, KRAS, BRAF, NRAS, MAP2K1, and RIT1, and recently SOS2, LZTR1, and A2ML1, among others. Progressively, the physiopathology and molecular etiology of most signs of Noonan syndrome have been demonstrated, and inheritance patterns as well as genetic counseling have been established. In this review, we summarize the data concerning clinical features frequently observed in Noonan syndrome, and then, we describe the molecular etiology as well as the physiopathology of most Noonan syndrome-causing genes. In the second part of this review, we assess the mutational rate of Noonan syndrome-causing genes reported up to now in most screening studies. This review should give clinicians as well as geneticists a full view of the molecular aspects of Noonan syndrome and the authentic prevalence of the mutational events of its causing-genes. It will also facilitate laying the groundwork for future molecular diagnosis research, and the development of novel treatment strategies."	"A retrospective analysis of the clinicopathological and molecular characteristics of pulmonary blastoma. The aim of this study was to analyze and summarize the clinicopathological and molecular characteristics of classic biphasic pulmonary blastoma (PB) to improve its diagnosis and treatment. A retrospective analysis was performed in patients who were diagnosed with PB at Sun Yat-Sen University Cancer Center from March 1995 to March 2015. Genomic DNA was profiled using a capture-based targeted sequencing panel. Sixteen patients with an average age of 40 years were included in this study. Accurate preoperative diagnosis was very challenging as surgically resected tissues with immunohistochemical staining were required for the diagnosis. Surgery was the optimal treatment for localized disease and there was no standard management for metastatic disease. Mutations were detected among 9 out of the 56 genes profiled, including BRCA2, ERBB4, ALK, MET, BRAF, RAF1, PTEN, EGFR, and PIK3CA. Due to the low incidence rate and the reclassification of PB, no standard treatment is available. Although the numbers of cases are few with varying individual experiences, it is important to improve our understanding regarding this rare lung cancer. Targeted DNA sequencing may be of clinical use for molecular testing and the effects of targeted therapy need to be confirmed."	"Integrated bioinformatics, computational and experimental methods to discover novel Raf/extracellular-signal regulated kinase (ERK) dual inhibitors against breast cancer cells. Beginning with our previously reported ERK inhibitor BL-EI001, we found Raf1 to be an important regulator in the ERK interactive network, and then we designed and synthesized a novel series of Raf1/ERK dual inhibitors against human breast cancers through integrative computational, synthetic and biological screening methods. Moreover, we found that compound 9d suppressed the proliferation of breast cancer cell lines and induced cellular apoptosis via a mitochondrial pathway with only partial dependence on Raf1 and ERK. Our results suggest that an integrative method including in silico design, chemical synthesis, biological screening and bioinformatics analysis could be an attractive strategy for the discovery of multi-target inhibitors against breast cancer."	"A new NFIA:RAF1 fusion activating the MAPK pathway in pilocytic astrocytoma. Pilocytic astrocytoma (PA) is one of the most common brain cancers among children and activation of the Mitogen-Activated Protein Kinase (MAPK) pathway is considered the hallmark. In the majority of cases, oncogenic BRAF fusions or BRAF V600E mutations are observed, while RAF1 or NF1 alterations are more rarely found. However, in some cases, no apparent cancer driver events can be identified. Here, we describe a novel fusion between the transcription factor nuclear factor 1A (NFIA) and Raf-1 proto-oncogene (RAF1) in a 5-year old boy with PA. The novel fusion was identified as part of a comprehensive genomic tumor profiling. We show that the NFIA:RAF1 fusion results in constitutive Raf1 kinase activity, leading to activation of downstream MEK1/2 cascade and increased proliferation of cancer cells. The NFIA:RAF1 fusion displayed distinct subcellular localization towards the plasma membrane indicative of Raf-1 activation, in contrast to both wild type NFIA and Raf-1, which were localized in the nucleus and cytoplasm, respectively. In conclusion, our data support the existence of rare oncogenic RAF1 fusions with constitutive Raf-1 activity. This highlights the need for broad genetic testing in order to refine diagnostics of PA and to unravel potential treatment options, e.g. with MEK inhibitors."	"LPIN1 promotes epithelial cell transformation and mammary tumourigenesis via enhancing insulin receptor substrate 1 stability. LPIN1 is a protein that exhibits dual functions as a phosphatidic acid phosphatase enzyme in regulation of triglyceride and glycerophospholipid metabolism and a transcriptional coregulator. Through unknown tumour-promoting mechanism, LPIN1 frequently observed in various human cancer cell lines controls main cellular processes involved in cancer progression. Here, we demonstrate that LPIN1 enhances the tumour-promoting function of insulin receptor substrate 1 (IRS1) by controlling IRS1 stability. LPIN1 interacts with IRS1 in an insulin growth factor-1-dependent signalling pathway and inhibits its serine phosphorylation, and thereby eliminating ubiquitin-dependent degradation of IRS1 via proteasomal and lysosomal pathways. Consequently, LPIN1 overexpression increases IRS1 abundance and enhances IRS1's ability to induce epithelial cell proliferation and mammary tumourigenesis. By contrast, depletion or inhibition of LPIN1 in breast cancer cells leads to a decreased IRS1 level, which subsequently inhibits the RAF1-mediated signalling pathway and AP-1 activity. In the syngeneic 4T1 breast cancer model, LPIN1 overexpression increased tumour development, whereas inhibition of LPIN1 and IRS1 suppressed it. Consistent with these observations, LPIN1 levels were positively correlated with IRS1 expression in human breast cancer. Thus, our results indicate a mechanism by which IRS1 expression is increased in breast cancer, and LPIN1 may be a promising drug target for anticancer therapy."	"Erythropoietin improves hypoxic-ischemic encephalopathy in neonatal rats after short-term anoxia by enhancing angiogenesis. Erythropoietin (EPO) is important for angiogenesis after hypoxia/ischemia. In this study, we investigated whether recombinant human erythropoietin (rhEPO) can enhance angiogenesis, and promote cognitive function through vascular endothelial growth factor (VEGF)/VEGF receptor 2 (VEGFR2) signaling pathway in a rat model of hypoxic-ischemic encephalopathy (HIE). RhEPO, selective VEGFR2 inhibitor (SU5416) or vehicle was administrated by intraperitoneal injection. The assessment for cognitive function begins on day 60 after anoxia. Vascular density in hippocampus and white matter damage within corpus callosum were examined on day 28 after anoxia. The expression of erythropoietin receptor (EPOR), VEGF, rapidly accelerated fibrosarcoma 1 (Raf1), and extracellular-signal-regulated kinases 1 and 2 (ERK1/2) in hippocampus were evaluated on day 7 after anoxia. RhEPO-treated anoxia rats had better cognitive recovery, higher vascular density, and less white matter damage than in the vehicle anoxia rats. These protective effects associated with increased expression of EPOR, VEGF; and increased phosphorylation of Raf1 and ERK1/2. While this up-regulation, and changes in the histopathologic and functional outcomes were abolished by SU5416. Our data indicate that rhEPO can enhance angiogenesis, reduce white matter damage, and promote cognitive recovery through VEGF/VEGFR2 signaling pathway in anoxia rats."	"ARF1 promotes prostate tumorigenesis via targeting oncogenic MAPK signaling. ADP-ribosylation factor 1 (ARF1) is a crucial regulator in vesicle-mediated membrane trafficking and involved in the activation of signaling molecules. However, virtually nothing is known about its function in prostate cancer. Here we have demonstrated that ARF1 expression is significantly elevated in prostate cancer cells and human tissues and that the expression levels of ARF1 correlate with the activation of mitogen-activated protein kinases (MAPK) ERK1/2. Furthermore, we have shown that overexpression and knockdown of ARF1 produce opposing effects on prostate cancer cell proliferation, anchorage-independent growth and tumor growth in mouse xenograft models and that ARF1-mediated cell proliferation can be abolished by the Raf1 inhibitor GW5074 and the MEK inhibitors U0126 and PD98059. Moreover, inhibition of ARF1 activation achieved by mutating Thr48 abolishes ARF1's abilities to activate the ERK1/2 and to promote cell proliferation. These data demonstrate that the aberrant MAPK signaling in prostate cancer is, at least in part, under the control of ARF1 and that, similar to Ras, ARF1 is a critical regulator in prostate cancer progression. These data also suggest that ARF1 may represent a key molecular target for prostate cancer therapeutics and diagnosis."	"Profiling of Signaling Proteins in Penumbra After Focal Photothrombotic Infarct in the Rat Brain Cortex. In ischemic stroke, cell damage propagates from infarct core to surrounding tissue. To reveal proteins involved in neurodegeneration and neuroprotection, we explored the protein profile in penumbra surrounding the photothrombotic infarct core induced in rat cerebral cortex by local laser irradiation after Bengal Rose administration. Using antibody microarrays, we studied changes in expression of 224 signaling proteins 1, 4, or 24 h after photothrombotic infarct compared with untreated contralateral cortex. Changes in protein expression were greatest at 4 h after photothrombotic impact. These included over-expression of proteins initiating, regulating, or executing various apoptosis stages (caspases, SMAC/DIABLO, Bcl-10, phosphatidylserine receptor (PSR), prostate apoptosis response 4 (Par4), E2F1, p75, p38, JNK, p53, growth arrest and DNA damage inducible protein 153 (GADD153), glutamate decarboxylases (GAD65/67), NMDAR2a, c-myc) and antiapoptotic proteins (Bcl-x, p63, MDM2, p21WAF-1, ERK1/2, ERK5, MAP kinase-activated protein kinase-2 (MAKAPK2), PKCα, PKCβ, PKCμ, RAF1, protein phosphatases 1α and MAP kinase phosphatase-1 (MKP-1), neural precursor cell expressed, developmentally down-regulated 8 (NEDD8), estrogen and EGF receptors, calmodulin, CaMKIIα, CaMKIV, amyloid precursor protein (APP), nicastrin). Phospholipase Cγ1, S-100, and S-100β were down-regulated. Bidirectional changes in levels of adhesion and cytoskeleton proteins were related to destruction and/or remodeling of penumbra. Following proteins regulating actin cytoskeleton were over-expressed: cofilin, actopaxin, p120CTN, α-catenin, p35, myosin Va, and pFAK were up-regulated, whereas ezrin, tropomyosin, spectrin (α + β), βIV-tubulin and polyglutamated β-tubulin, and cytokeratins 7 and 19 were down-regulated. Down-regulation of syntaxin, AP2β/γ, and adaptin β1/2 indicated impairment of vesicular transport and synaptic processes. Down-regulation of cyclin-dependent kinase 6 (Cdk6), cell division cycle 7-related protein kinase (Cdc7 kinase), telomeric repeat-binding factor 1 (Trf1), and topoisomerase-1 showed proliferation suppression. Cytoprotection proteins AOP-1 and chaperons Hsp70 and Hsp90 were down-regulated. These data provide the integral view on penumbra response to photothrombotic infarct. Some of these proteins may be potential targets for antistroke therapy."	"Zoledronic acid is an effective radiosensitizer in the treatment of osteosarcoma. To overcome radioresistance in the treatment of osteosarcoma, a primary malignant tumor of the bone, radiotherapy is generally combined with radiosensitizers. The purpose of this study was to investigate a third-generation bisphosphonate, zoledronic acid (ZOL), as a radiosensitizer for osteosarcoma. We found that exposure of KHOS/NP osteosarcoma cells to 20 μM ZOL decreased the γ-radiation dose needed to kill 90% of cells. This radiosensitizing effect of ZOL was mediated through decreased mitochondrial membrane potential, increased levels of reactive oxygen species, increased DNA damage (as assessed by counting γ-H2AX foci), decreased abundance of proteins involved in DNA repair pathways (ATR, Rad52, and DNA-PKcs), and decreased phosphorylation of PI3K-Akt and MAPK pathway proteins (Raf1, MEK1/2, ERK1/2, and Akt), as compared to γ-irradiation alone. Cells treated with ZOL plus γ-irradiation showed impaired cell migration and invasion and reduced expression of epithelial-mesenchymal transition markers (vimentin, MMP9, and Slug). In Balb/c nude mice, the mean size of orthotopic osteosarcoma tumors 2 weeks post-inoculation was 195 mm3 following γ-irradiation (8 Gy), while it was 150 mm3 after γ-irradiation plus ZOL treatment (0.1 mg/kg twice weekly for 2 weeks). These results provide a rationale for combining ZOL with radiotherapy to treat osteosarcoma."	"Activating NRF1-BRAF and ATG7-RAF1 fusions in anaplastic pleomorphic xanthoastrocytoma without BRAF p.V600E mutation. NA"	"Circulating miRNAs as Potential Alternative Cell Signaling Associated with Maternal Recognition of Pregnancy in the Mare. During early pregnancy, the conceptus and mare communicate to establish pregnancy. Cell-secreted vesicles (e.g., exosomes) have been reported in serum. Exosomes contain bioactive materials, such as miRNA, that can mediate cell responses. We hypothesized that a) exosomes are present in mare circulation and quantity varies with pregnancy status, b) exosomes contain miRNAs unique to pregnancy status, and c) miRNAs target pathways in endometrium based upon pregnancy status of the mare. First, serum samples were obtained from mares in a crossover design, with each mare providing samples from a pregnant and nonmated control cycle (n = 3/sample day) on Days 12, 14, 16, and 18 postovulation. Flow cytometry revealed the presence of serum microvesicles in mares in two different-sized populations (greater than or less than 100 nm), validated by transmission electron microscopy. Second, serum was collected on Days 9, 11, and 13 (n = 4/day), and endometrial biopsies were collected on Days 11 and 13 (n = 3/day) from pregnant and nonmated mares. Total RNA from serum exosomes was evaluated with quantitative RT-PCR using equine-specific miRNA sequences. A total of 12 miRNAs were found in different quantities on the specified days. Pathway analysis suggested that miRNAs targeted focal adhesion molecules (FAMs). Transcripts corresponding to FAMs were evaluated in endometrial biopsies. Protein levels and localization for PAK6 and RAF1 were further evaluated. Our data suggest that serum exosomes contain miRNA that differ based upon pregnancy status, and may affect mRNA expression related to focal adhesion pathway in the endometrium, with a potential role in maternal recognition of pregnancy."	"RAF1-associated Noonan syndrome presenting antenatally with an abnormality of skull shape, subdural haematoma and associated with novel cerebral malformations. NA"	"Inhibition of RAF1 kinase activity restores apicobasal polarity and impairs tumour growth in human colorectal cancer. Colorectal cancer (CRC) remains one of the leading causes of cancer-related death. Novel therapeutics are urgently needed, especially for tumours with activating mutations in KRAS (∼40%). Here we investigated the role of RAF1 in CRC, as a potential, novel target. Colonosphere cultures were established from human tumour specimens obtained from patients who underwent colon or liver resection for primary or metastatic adenocarcinoma. The role of RAF1 was tested by generating knockdowns (KDs) using three independent shRNA constructs or by using RAF1-kinase inhibitor GW5074. Clone-initiating and tumour-initiating capacities were assessed by single-cell cloning and injecting CRC cells into immune-deficient mice. Expression of tight junction (TJ) proteins, localisation of polarity proteins and activation of MEK-ERK pathway was analysed by western blot, immunohistochemistry and immunofluorescence. KD or pharmacological inhibition of RAF1 significantly decreased clone-forming and tumour-forming capacity of all CRC cultures tested, including KRAS-mutants. This was not due to cytotoxicity but, at least in part, to differentiation of tumour cells into goblet-like cells. Inhibition of RAF1-kinase activity restored apicobasal polarity and the formation of TJs in vitro and in vivo, without reducing MEK-ERK phosphorylation. MEK-inhibition failed to restore polarity and TJs. Moreover, RAF1-impaired tumours were characterised by normalised tissue architecture. RAF1 plays a critical role in maintaining the transformed phenotype of CRC cells, including those with mutated KRAS. The effects of RAF1 are kinase-dependent, but MEK-independent. Despite the lack of activating mutations in RAF1, its kinase domain is an attractive therapeutic target for CRC."	"Intelligent Mixing of Proteomes for Elimination of False Positives in Affinity Purification-Mass Spectrometry. Protein complexes are essential in all organizational and functional aspects of the cell. Different strategies currently exist for analyzing such protein complexes by mass spectrometry, including affinity purification (AP-MS) and proximal labeling-based strategies. However, the high sensitivity of current mass spectrometers typically results in extensive protein lists mainly consisting of nonspecifically copurified proteins. Finding the true positive interactors in these lists remains highly challenging. Here, we report a powerful design based on differential labeling with stable isotopes combined with nonequal mixing of control and experimental samples to discover bona fide interaction partners in AP-MS experiments. We apply this intelligent mixing of proteomes (iMixPro) concept to overexpression experiments for RAF1, RNF41, and TANK and also to engineered cell lines expressing epitope-tagged endogenous PTPN14, JIP3, and IQGAP1. For all baits, we confirmed known interactions and found a number of novel interactions. The results for RNF41 and TANK were compared to a classical affinity purification experiment, which demonstrated the efficiency and specificity of the iMixPro approach."	"Approaching the facts between genetic mutation and clinical practice of hypertrophic cardiomyopathy: A case report with RAF1 770C&gt;T mutant. Hypertrophic cardiomyopathy (HCM) is one of the most common cardiomyopathies, which induces sudden cardiac death. Several mutants have been identified among HCM cases. A 10-month female infant who experienced cough, fever, aggressive exertional dyspnea, and recurrent cyanosis was admitted to our hospital. The patient was first diagnosed with type I respiratory failure, dysfunction of heart, severe pneumonia, and also some cardiac disorders were suspected. The echocardiography, cardiac computed tomography scan, cardiac magnetic resonance imaging scan, and also electrocardiogram were performed to confirm a diagnosis of HCM. Moreover, the whole-genome sequencing and chromatin analysis have been suggested. Based on the sequencing analysis, a new heterozygous mutant of RAF1 at c. 770C&gt;T had been identified in absence of the same mutant in both her parents. Besides, the existence of normal karyotypes was confirmed among 3 samples. So we first reported a single mutant of RAF1 770C&gt;T with idiopathic HCM in a very early age. This patient would have suffered significant cardiac ventricular hypertrophy with more severe clinical manifestation in an extremely younger age compared with other identified mutations. However, we could only take limited advantages of deoxyribonucleic acid sequencing in HCM diagnosis and therapy. Reporting additional observations of well designed cohorts with a long-term follow-up would be very helpful to accelerate the transition of genetic molecular research on HCM."	"Whole Genomic Copy Number Alterations in Circulating Tumor Cells from Men with Abiraterone or Enzalutamide-Resistant Metastatic Castration-Resistant Prostate Cancer. Purpose: Beyond enumeration, circulating tumor cells (CTCs) can provide genetic information from metastatic cancer that may facilitate a greater understanding of tumor biology and enable a precision medicine approach.Experimental Design: CTCs and paired leukocytes from men with metastatic castration-resistant prostate cancer (mCRPC) were isolated from blood through red cell lysis, CD45 depletion, and flow sorting based on EpCAM/CD45 expression. We next performed whole genomic copy number analysis of CTCs and matched patient leukocytes (germline) using array-based comparative genomic hybridization (aCGH) from 16 men with mCRPC, including longitudinal and sequential aCGH analyses of CTCs in the context of enzalutamide therapy.Results: All patients had mCRPC and primary or acquired resistance to abiraterone acetate or enzalutamide. We compiled copy gains and losses, with a particular focus on those genes highly implicated in mCRPC progression and previously validated as being aberrant in metastatic tissue samples and genomic studies of reference mCRPC datasets. Genomic gains in &gt;25% of CTCs were observed in AR, FOXA1, ABL1, MET, ERG, CDK12, BRD4, and ZFHX3, while common genomic losses involved PTEN, ZFHX3, PDE4DIP, RAF1, and GATA2 Analysis of aCGH in a sample with sequential enzalutamide-resistant visceral progression showed acquired loss of AR amplification concurrent with gain of MYCN, consistent with evolution toward a neuroendocrine-like, AR-independent clone.Conclusions: Genomic analysis of pooled CTCs in men with mCRPC suggests a reproducible, but highly complex molecular profile that includes common aberrations in AR, ERG, c-MET, and PI3K signaling during mCRPC progression, which may be useful for predictive biomarker development. Clin Cancer Res; 23(5); 1346-57. ©2016 AACR."	"The therapeutic potential of sulforaphane on light-induced photoreceptor degeneration through antiapoptosis and antioxidant protection. Oxidative stress due to excessive light exposure can exacerbate a variety of human retinal diseases by accelerating photoreceptor cell death. The thioredoxin (Trx) system is considered to play a crucial role in reduction/oxidation (redox) regulation of signal transduction and in cell defense against oxidative stresses. Sulforaphane (SF) protects cells from oxidative damage through nuclear factor (erythroid-derived 2)-like 2 (Nrf2), which is responsible for multiple detoxification processes, including elevating the expression of Trx. This study sought to demonstrate whether SF increased Trx expression in retinal tissues in vivo and whether it could preserve the photoreceptors from degeneration induced by oxidative stress. Our data clearly showed that pretreatment with SF abated photoreceptor cell loss, in association with increased expression of Nrf2 and Trx, subsequently activating the Ras/Raf1/Erk signaling pathway and decreasing the expression of Bak1, Cyt-c release and the activity of caspase-3 in light-induced mouse retinas. These data suggested that the therapeutic potential of SF in retinal degeneration due to oxidative stress might partially involve anti-caspase and antioxidant protection mediated by Trx."	"Panax notoginseng saponins attenuate lung cancer growth in part through modulating the level of Met/miR-222 axis. Panax notoginseng saponins (PNS) are the major chemical constituents of Panax notoginseng (Burkill) F.H. Chen (Araliaceae), a medicinal herb extensively used in China for the treatment of various diseases including cancer. PNS have been reported to contribute to the therapeutic effects of Panax notoginseng in disease conditions including lung cancer. The current study aims to further understand the molecular mechanisms implicated in the pharmacological activities of PNS in attenuating lung cancer growth. Lewis lung carcinoma (LLC) cell line was employed and the impact of PNS treatment on the viability of LLC cells was first examined in vitro. The tumor-suppressive effect of PNS was further validated in vivo by assessing the tumor growth in BALB/c mice inoculated with LLC cells. Whole genome microarray and real-time PCR analyses were performed to examine and verify altered expression of genes associated with PNS treatment. Real-time PCR and western blotting analyses were also carried out to investigate the implication of microRNA (miRNA)-mediated gene expression regulation in the anti-tumor activity of PNS. PNS treatment resulted in selective impairment of the survival of LLC cells. Furthermore, PNS treatment led to attenuated growth of tumors derived from inoculated LLC cells in mice. Bioinformatic analyses of gene expression profiles revealed that multiple pathways associated with tumorigenesis were significantly modulated by PNS treatment in vivo. The expression of an array of genes promoting tumorigenesis and progression including Hgf, Met, Notch3, Scd1, Epas1, Col1a1, Raf1, Braf1 and CDK6 was significantly decreased by PNS treatment, whereas the expression of tumor suppressive Rxrg was significantly increased as a result of PNS treatment. The level of miR-222, a miRNA regulated by Met, was significantly decreased by PNS treatment. The expression of tumor suppressor p27 and PTEN, miR-222 target genes, was significantly increased by PNS treatment. Out work here presented novel evidence demonstrating that multiple mechanisms were implicated in the anti-tumor effects of PNS in lung cancer models. Particularly, PNS treatment significantly modulated the level of Met/miR-222 axis in LLC cells. Increased understanding of the anti-tumor mechanisms of PNS may provide further experimental evidence to help optimize the therapeutic modalities for the treatment of lung cancer and other types of cancer."	"Set3 contributes to heterochromatin integrity by promoting transcription of subunits of Clr4-Rik1-Cul4 histone methyltransferase complex in fission yeast. Heterochromatin formation in fission yeast depends on RNAi machinery and histone-modifying enzymes. One of the key histone-modifying complexes is Clr4-Rik1-Cul4 methyltransferase complex (CLRC), which mediates histone H3K9 methylation, a hallmark for heterochromatin. CLRC is composed of the Clr4 histone methyltransferase, Rik1, Raf1, Raf2 and Pcu4. However, transcriptional regulation of the CLRC subunits is not well understood. In this study, we identified Set3, a core subunit of the Set3/Hos2 histone deacetylase complex (Set3C), as a contributor to the integrity and silencing of heterochromatin at centromeres, telomeres and silent mating-type locus. This novel role of Set3 relies on its PHD finger, but is independent of deacetylase activity or structural integrity of Set3C. Set3 is not located to the centromeric region. Instead, Set3 is targeted to the promoters of clr4(+) and rik1(+), probably through its PHD finger. Set3 promotes transcription of clr4(+) and rik1(+). Consistently, the protein levels of Clr4 and Rik1 were reduced in the set3Δ mutant. The heterochromatin silencing defect in the set3Δ mutant could be rescued by overexpressing of clr4(+) or rik1(+). Our study suggests transcriptional activation of essential heterochromatin factors underlies the tight regulation of heterochromatin integrity."	"Celecoxib-erlotinib combination delays growth and inhibits angiogenesis in EGFR-mutated lung cancer. Combination treatment for non-small cell lung cancer (NSCLC) is becoming more popular due to the anticipation that it may be more effective than single drug treatment. In addition, there are efforts to genetically screen patients for specific mutations in light of attempting to administer specific anticancer agents that are most effective. In this study, we evaluate the anticancer and anti-angiogenic effects of low dose celecoxib-erlotinib combination in NSCLC in vitro and in vivo. In NSCLC cells harboring epidermal growth factor receptor (EGFR) mutations, combination celecoxib-erlotinib treatment led to synergistic cell death, but there was minimal efficacy in NSCLC cells with wild-type EGFR. In xenograft models, combination treatment also demonstrated greater inhibition of tumor growth compared to individual treatment. The anti-tumor effect observed was secondary to the targeting of angiogenesis, evidenced by decreased vascular endothelial growth factor A (VEGFA) levels and decreased levels of CD31 and microvessel density. Combination treatment targets angiogenesis through the modulation of of the PI3K/AKT and ERK/Raf1-1 pathway in NSCLC with EGFR exon 19 deletions. These findings may have significant clinical implications in patients with tumors harboring EGFR exon 19 deletions as they may be particularly sensitive to this regimen. "	"Dectin-1-activated dendritic cells trigger potent antitumour immunity through the induction of Th9 cells. Dectin-1 signalling in dendritic cells (DCs) has an important role in triggering protective antifungal Th17 responses. However, whether dectin-1 directs DCs to prime antitumour Th9 cells remains unclear. Here, we show that DCs activated by dectin-1 agonists potently promote naive CD4(+) T cells to differentiate into Th9 cells. Abrogation of dectin-1 in DCs completely abolishes their Th9-polarizing capability in response to dectin-1 agonist curdlan. Notably, dectin-1 stimulation of DCs upregulates TNFSF15 and OX40L, which are essential for dectin-1-activated DC-induced Th9 cell priming. Mechanistically, dectin-1 activates Syk, Raf1 and NF-κB signalling pathways, resulting in increased p50 and RelB nuclear translocation and TNFSF15 and OX40L expression. Furthermore, immunization of tumour-bearing mice with dectin-1-activated DCs induces potent antitumour response that depends on Th9 cells and IL-9 induced by dectin-1-activated DCs in vivo. Our results identify dectin-1-activated DCs as a powerful inducer of Th9 cells and antitumour immunity and may have important clinical implications."	"Identification of a PTPN11 hot spot mutation in a child with atypical LEOPARD syndrome. LEOPARD syndrome (LS) is an autosomal dominant inherited disorder primarily caused by mutations in the PTPN11, RAF1 and BRAF genes. Characteristic features include lentigines, craniofacial dysmorphism, myocardium or valve abnormalities, eletrocardiographic conduction defects and deafness. LS, neurofibromatosis type 1, Noonan syndrome and Legius syndrome are a group of highly overlapped disorders termed 'RASopathies'. Therefore, clinical discrimination between these syndromes represents a huge challenge. The present study reports a young child diagnosed with LS via identification of a common p.Thr468Met mutation in PTPN11. Taking into account two Taiwanese LS cases with an identical mutation, Thr468Met is likely to be the most prevalent mutation in the Chinese population. Furthermore, this study suggests that a clinical diagnosis of LS should be considered for individuals with congenital cardiac defects and atypical lentigines (i.e., light brown freckles) scattered particularly on the face. "	"Crosstalk between 6-OHDA-induced autophagy and apoptosis in PC12 cells is mediated by phosphorylation of Raf-1/ERK1/2. Parkinson's disease (PD) is a degenerative brain disorder characterized by motor symptoms and loss of dopaminergic (DA) neurons in the substantia nigra. The mechanisms for DA cell death in PD have been extensively investigated using PC12 cells treated with a dopamine neurotoxin 6-hydroxydopamine (6-OHDA). 6-OHDA may induce both autophagy and apoptosis in PC12 cells. However, it remains unclear whether crosstalk occurs between autophagy and apoptosis in PC12 cells treated with 6-OHDA and whether Raf-1/ERK1/2 and their phosphorylation status play a role in autophagy. In this study, we used MDC staining assay and flow cytometry and found that 6-OHDA induced autophagy in PC12 cells. This induction was inhibited by the autophagy inhibitor 3-MA. Our electron microscopy observations also supported 6-OHDA induced autophagy in PC12 cells. Apoptosis of PC12 cells was increased with inhibition of autophagy by 3-MA. In addition, Inhibition of Raf-1 resulted in a decreased 6-OHDA-induced autophagy rate among PC12 cells. Phosphorylation levels of Raf-1 and ERK1/2 were increased in PC12 cells treated with 6-OHDA and inhibited by co-treatment with 6-OHDA and 3-MA. These data suggest that crosstalk between 6-OHDA-induced apoptosis and autophagy in PC12 cells may be regulated via the Raf-1/ERK1/2 signaling pathway. Our data suggest a mechanism for 6-OHDA toxicity in PC12 cells, contributing to our understanding of the pathogenesis of PD."	"SHOC2 subcellular shuttling requires the KEKE motif-rich region and N-terminal leucine-rich repeat domain and impacts on ERK signalling. SHOC2 is a scaffold protein composed almost entirely by leucine-rich repeats (LRRs) and having an N-terminal region enriched in alternating lysine and glutamate/aspartate residues (KEKE motifs). SHOC2 acts as a positive modulator of the RAS-RAF-MEK-ERK signalling cascade by favouring stable RAF1 interaction with RAS. We previously reported that the p.Ser2Gly substitution in SHOC2 underlies Mazzanti syndrome, a RASopathy clinically overlapping Noonan syndrome, promoting N-myristoylation and constitutive targeting of the mutant to the plasma membrane. We also documented transient nuclear translocation of wild-type SHOC2 upon EGF stimulation, suggesting a more complex function in signal transduction.Here, we characterized the domains controlling SHOC2 shuttling between the nucleus and cytoplasm, and those contributing to SHOC2<sup>S2G</sup> mistargeting to the plasma membrane, analysed the structural organization of SHOC2's LRR motifs, and determined the impact of SHOC2 mislocalization on ERK signalling. We show that LRRs 1 to 13 constitute a structurally recognizable domain required for SHOC2 import into the nucleus and constitutive targeting of SHOC2<sup>S2G</sup> to the plasma membrane, while the KEKE motif-rich region is necessary to achieve efficient SHOC2 export from the nucleus. We also document that SHOC2<sup>S2G</sup> localizes both in raft and non-raft domains, and that it translocates to the non-raft domains following stimulation. Finally, we demonstrate that SHOC2 trapping at different subcellular sites has a diverse impact on ERK signalling strength and dynamics, suggesting a dual counteracting modulatory role of SHOC2 in the control of ERK signalling exerted at different intracellular compartments."	"Copy number variants and rasopathies: germline KRAS duplication in a patient with syndrome including pigmentation abnormalities. RAS/MAPK pathway germline mutations were described in Rasopathies, a class of rare genetic syndromes combining facial abnormalities, heart defects, short stature, skin and genital abnormalities, and mental retardation. The majority of the mutations identified in the Rasopathies are point mutations which increase RAS/MAPK pathway signaling. Duplications encompassing RAS/MAPK pathway genes (PTPN11, RAF1, MEK2, or SHOC2) were more rarely described. Here we report, a syndromic familial case of a 12p duplication encompassing the dosage sensitive gene KRAS, whose phenotype overlapped with rasopathies. The patient was referred because of a history of mild learning disabilities, small size, facial dysmorphy, and pigmentation abnormalities (café-au-lait and achromic spots, and axillar lentigines). This phenotype was reminiscent of rasopathies. No mutation was identified in the most common genes associated with Noonan, cardio-facio-cutaneous, Legius, and Costello syndromes, as well as neurofibromatosis type 1. The patient constitutional DNA exhibited a ~10.5 Mb duplication at 12p, including the KRAS gene. The index case's mother carried the same chromosome abnormality and also showed development delay with short stature, and numerous café-au-lait spots. Duplication of the KRAS gene may participate in the propositus phenotype, in particular of the specific pigmentation abnormalities. Array-CGH or some other assessment of gene/exon CNVs of RAS/MAPK pathway genes should be considered in the evaluation of individuals with rasopathies."	"Epidermal RAF prevents allergic skin disease. The RAS pathway is central to epidermal homeostasis, and its activation in tumors or in Rasopathies correlates with hyperproliferation. Downstream of RAS, RAF kinases are actionable targets regulating keratinocyte turnover; however, chemical RAF inhibitors paradoxically activate the pathway, promoting epidermal proliferation. We generated mice with compound epidermis-restricted BRAF/RAF1 ablation. In these animals, transient barrier defects and production of chemokines and Th2-type cytokines by keratinocytes cause a disease akin to human atopic dermatitis, characterized by IgE responses and local and systemic inflammation. Mechanistically, BRAF and RAF1 operate independently to balance MAPK signaling: BRAF promotes ERK activation, while RAF1 dims stress kinase activation. In vivo, JNK inhibition prevents disease onset, while MEK/ERK inhibition in mice lacking epidermal RAF1 phenocopies it. These results support a primary role of keratinocytes in the pathogenesis of atopic dermatitis, and the animals lacking BRAF and RAF1 in the epidermis represent a useful model for this disease."	"MSK1 triggers the expression of the INK4AB/ARF locus in oncogene-induced senescence. The tumor suppressor proteins p15(INK4B), p16(INK4A), and p14(ARF), encoded by the INK4AB/ARF locus, are crucial regulators of cellular senescence. The locus is epigenetically silenced by the repressive Polycomb complexes in growing cells but is activated in response to oncogenic stress. Here we show that the mitogen- and stress-activated kinase (MSK1) is up-regulated after RAF1 oncogenic stress and that the phosphorylated (activated) form of MSK1 is significantly increased in the nucleus and recruited to the INK4AB/ARF locus. We show that MSK1 mediates histone H3S28 phosphorylation at the INK4AB/ARF locus and contributes to the rapid transcriptional activation of p15(INK4B) and p16(INK4A) in human cells despite the presence of the repressive H3K27me3 mark. Furthermore, we show that upon MSK1 depletion in oncogenic RAF1-expressing cells, H3S28ph presence at the INK4 locus and p15(INK4B) and p16(INK4A) expression are reduced. Finally, we show that H3S28-MSK-dependent phosphorylation functions in response to RAF1 signaling and that ERK and p38α contribute to MSK1 activation in oncogene-induced senescence."	"Human Blood Autoantibodies in the Detection of Colorectal Cancer. Colorectal cancer (CRC) is the second most common malignancy in the western world. Early detection and diagnosis of all cancer types is vital to improved prognosis by enabling early treatment when tumours should be both resectable and curable. Sera from 3 different cohorts; 42 sera (21 CRC and 21 matched controls) from New York, USA, 200 sera from Pittsburgh, USA (100 CRC and 100 controls) and 20 sera from Dundee, UK (10 CRC and 10 controls) were tested against a panel of multiple tumour-associated antigens (TAAs) using an optimised multiplex microarray system. TAA specific IgG responses were interpolated against the internal IgG standard curve for each sample. Individual TAA specific responses were examined in each cohort to determine cutoffs for a robust initial scoring method to establish sensitivity and specificity. Sensitivity and specificity of combinations of TAAs provided good discrimination between cancer-positive and normal serum. The overall sensitivity and specificity of the sample sets tested against a panel of 32 TAAs were 61.1% and 80.9% respectively for 6 antigens; p53, AFP, K RAS, Annexin, RAF1 and NY-CO16. Furthermore, the observed sensitivity in Pittsburgh sample set in different clinical stages of CRC; stage I (n = 19), stage II (n = 40), stage III (n = 34) and stage IV (n = 6) was similar (73.6%, 75.0%, 73.5% and 83.3%, respectively), with similar levels of sensitivity for right and left sided CRC. We identified an antigen panel of sufficient sensitivity and specificity for early detection of CRC, based upon serum profiling of autoantibody response using a robust multiplex antigen microarray technology. This opens the possibility of a blood test for screening and detection of early colorectal cancer. However this panel will require further validation studies before they can be proposed for clinical practice. "	"[Overexpression of miR-125b promotes apoptosis of macrophages]. Objective To investigate the expressions of miR-125b and target gene Raf1 proto-oncogene serine/threonine protein kinase (RAF1) in peripheral blood mononuclear cells (PBMCs) of pediatric patients with pulmonary tuberculosis (PTB), and observe the regulation of miR-125b on macrophage apoptosis and activity. Methods PBMCs of patients with PTB and healthy children were collected and separated. Real-time fluorescence quantitative PCR was used to detect mRNA expression level of miR-125b and RAF1, and Western blotting was used to detect the protein level of RAF1. THP-1 macrophages were transfected into miR-125b mimic, negative control mimic (NC-mimic), miR-125b inhibitor and negative control inhibitor (NC-inhibitor), which were cultured for 48 hours. Western blotting was performed to observe the expression of RAF1 in THP-1 macrophages, annexin V-FITC/PI double staining combined with flow cytometry was used to test cell apoptosis, and CCK-8 assay was used to detect cell proliferation. Results The expression of miR-125b in PBMCs in pediatric patients with PTB was downregulated, and mRNA and protein levels of RAF1 were upregulated. When miR-125b was over-expressed in THP-1 macrophages, the expression of RAF1 was reduced to promote the apoptosis of macrophages and decrease cell activity; when the expression of miR-125b was inhibited in THP-1 macrophages, the expression of RAF1 was elevatedand the apoptosis of macrophages was inhibited, the cell activity was promoted. Conclusion In PBMCs of children with PTB, miR-125b level is low. Upregulation of miR-125b in THP-1 macrophages, the apoptosis of THP-1 macrophages is promoted and cell activity is inhibited. "	"PPM1A Methylation Is Associated With Vascular Recurrence in Aspirin-Treated Patients. Despite great efforts by pharmacogenetic studies, the causes of aspirin failure to prevent the recurrence of ischemic events remain unclear. Our aim was to study whether epigenetics could be associated with the risk of vascular recurrence in aspirin-treated stroke patients. We performed an epigenetic joint analysis study in 327 patients treated with aspirin. In the discovery stage, we performed a nested case-control study in 38 matched ischemic stroke patients in whom 450 000 methylation sites were analyzed. Nineteen patients presented vascular recurrence after stroke, and 19 matched patients did not present vascular recurrence during the first year of follow-up. In a second stage, 289 new patients were analyzed by EpiTYPER. The following 3 differentially methylated candidate CpG sites, were identified in the discovery stage and analyzed in the second stage: cg26039762 (P=9.69×10(-06), RAF1), cg04985020 (P=3.47×10(-03), PPM1A), and cg08419850 (P=3.47×10(-03), KCNQ1). Joint analysis identified an epigenome-wide association for cg04985020 (PPM1A; P=1.78×10(-07)), with vascular recurrence in patients treated with aspirin. The pattern of differential methylation in PPM1A is associated with vascular recurrence in aspirin-treated stroke patients."	"Design, synthesis, and in vitro antiproliferative and kinase inhibitory effects of pyrimidinylpyrazole derivatives terminating with arylsulfonamido or cyclic sulfamide substituents. A novel series of substituted pyrimidine compounds bearing N-phenylpyrazole and terminating with aryl and cyclic sulfonamido moiety were designed, synthesized, and evaluated in vitro as antiproliferative agents against a panel of 53 cell lines of different tissues at the NCI. Among them, compound 1d with p-chlorobenzenesulfonamido terminal moiety, ethylene spacer, and 4-chloro-3-methoxyphenyl ring at position 3 of the pyrazole nucleus showed the highest mean percentage inhibition value over the whole cancer cell line panel at 10 μM concentration. It showed broad-spectrum antiproliferative activity over many cell lines of different cancer types. For instance, compound 1d inhibited the growth of HL-60 (TB), SR leukemia, and T-47D and MCF-7 breast cancer cell line by 135.92%, 119.44%, 95.32%, and 82.03% at 10 μM, respectively. And it inhibited the growth of COLO 205 colon, HT29 colon, BT-549 breast, and ACHN renal cancer cell lines by more than 80% at the same test concentration. However, testing compound 1d upon determining its IC50 against the most sensitive cell lines showed to good extent selectivity against HT29 colon cancer cell line than HL-60 leukemia and MRC-5 lung fibroblasts (normal cells). Compound 1d was further tested against 12 kinases of different kinase families, and the highest inhibitory effect was exerted against RAF1, V600E-B-RAF, and V600K-B-RAF kinases."	"A Phos-tag SDS-PAGE method that effectively uses phosphoproteomic data for profiling the phosphorylation dynamics of MEK1. MEK1, an essential component of the mitogen-activated protein kinase (MAPK) pathway, is phosphorylated during activation of the pathway; 12 phosphorylation sites have been identified in human MEK1 by MS-based phosphoproteomic methods. By using Phos-tag SDS-PAGE, we found that multiple variants of MEK1 with different phosphorylation states are constitutively present in typical human cells. The Phos-tag-based strategy, which makes effective use of existing information on the location of phosphorylation sites, permits quantitative time-course profiling of MEK1 phosphospecies in their respective phosphorylation states. By subsequent immunoblotting with an anti-HaloTag antibody, we analyzed a HaloTag-fused MEK1 protein and 12 potential phosphorylation-site-directed mutants of the protein transiently expressed in HEK 293 cells. This strategy revealed that MEK1 is constitutively and mainly phosphorylated at the Thr-292, Ser-298, Thr-386, and Thr-388 residues in vivo, and that combinations of phosphorylations at these four residues produce at least six phosphorylated variants of MEK1. Like the levels of phosphorylation of the Ser-218 and Ser-222 residues by RAF1, which have been well studied, the phosphorylation statuses of Thr-292, Ser-298, Thr-386, and Thr-388 residues vary widely during activation and deactivation of the MAPK pathway. Furthermore, we demonstrated inhibitor-specific profiling of MEK1 phosphospecies by using three MEK inhibitors: TAK-733, PD98059, and U0126."	"Targeted Sequencing and Meta-Analysis of Preterm Birth. Understanding the genetic contribution(s) to the risk of preterm birth may lead to the development of interventions for treatment, prediction and prevention. Twin studies suggest heritability of preterm birth is 36-40%. Large epidemiological analyses support a primary maternal origin for recurrence of preterm birth, with little effect of paternal or fetal genetic factors. We exploited an &quot;extreme phenotype&quot; of preterm birth to leverage the likelihood of genetic discovery. We compared variants identified by targeted sequencing of women with 2-3 generations of preterm birth with term controls without history of preterm birth. We used a meta-genomic, bi-clustering algorithm to identify gene sets coordinately associated with preterm birth. We identified 33 genes including 217 variants from 5 modules that were significantly different between cases and controls. The most frequently identified and connected genes in the exome library were IGF1, ATM and IQGAP2. Likewise, SOS1, RAF1 and AKT3 were most frequent in the haplotype library. Additionally, SERPINB8, AZU1 and WASF3 showed significant differences in abundance of variants in the univariate comparison of cases and controls. The biological processes impacted by these gene sets included: cell motility, migration and locomotion; response to glucocorticoid stimulus; signal transduction; metabolic regulation and control of apoptosis."	"Design, synthesis, broad-spectrum antiproliferative activity, and kinase inhibitory effect of triarylpyrazole derivatives possessing arylamides or arylureas moieties. A novel series of 1,3,4-triarylpyrazole derivatives possessing terminal arylamide or arylurea terminal moieties has been designed and synthesized. Their in vitro antiproliferative activities were investigated against a panel of 58 cell lines of nine different cancer types at the NCI, USA. The urea analogues 2b, 2c, and 2f as well as the amide derivatives 3e and 3f exerted the highest mean % inhibition values over the 58 cell line panel at 10 μM, and thus were further tested in 5-dose testing mode to determine their GI50, TGI, and LC50 values. The above mentioned compounds have shown stronger antiproliferative activities in terms of potency and efficacy upon comparing their results with Sorafenib as a reference compound. Among them, compounds 2c and 2f possessing 3,4-dichlorophenylurea terminal moiety showed the highest mean %inhibition value of about 99.85 and 104.15% respectively over the 58-cell line panel at 10 μM concentration. Also compounds 2b, 3e, and 3f exhibited mean % inhibition over 80% at 10 μM concentration. The GI50 value of compound 3e over K-562 cancer cell line was 0.75 μM. Accordingly, compound 2f was screened over seven kinases at a single-dose concentration of 10 μM to profile its kinase inhibitory activity. Interestingly, the compound showed highly inhibitory activities (90.44% and 87.71%) against BRAF (V600E) and RAF1 kinases, respectively. Its IC50 value against BRAF (V600E) was 0.77 μM. Compounds 2b, 2c, 2f, 3e, and 3f exerted high selectivity towards cancer cell lines than L132 normal lung cells. "	"IGF2BP2 promotes colorectal cancer cell proliferation and survival through interfering with RAF-1 degradation by miR-195. Insulin-like growth factor 2 (IGF2) mRNA-binding protein 2 (IGF2BP2) is a post-transcriptional regulatory factor implicated in mRNA localization, stability, and translational control. However, the role of IGF2BP2 regulation in colorectal cancer (CRC) and its underlying mechanism remain elusive. In this study, we found that IGF2BP2 expression is markedly increased in CRC tissues. Notably, IGF2BP2 overexpression strikingly enhanced the proliferation and survival of CRC cells in vitro, whereas its shRNA-mediated silencing resulted in the opposite. Molecular function analyses revealed that IGF2BP2 regulates RAF1 expression through blocking its degradation by miR-195. These results identify IGF2BP2 as a post-transcriptional regulatory mRNA-binding factor that contributes to CRC carcinogenesis. "	"Carboxyl terminus-truncated α1D-adrenoceptors inhibit the ERK pathway. Human α1D-adrenoceptors are G protein-coupled receptors that mediate adrenaline/noradrenaline actions. There is a growing interest in identifying regulatory domains in these receptors and determining how they function. In this work, we show that the absence of the human α1D-adrenoceptor carboxyl tail results in altered ERK (extracellular signal-regulated kinase) and p38 phosphorylation states. Amino terminus-truncated and both amino and carboxyl termini-truncated α1D-adrenoceptors were transfected into Rat-1, HEK293, and B103 cells, and changes in the phosphorylation state of extracellular signal-regulated kinase was assessed using biochemical and biophysical approaches. The phosphorylation state of other protein kinases (p38, MEK1, and Raf-1) was also studied. Noradrenaline-induced ERK phosphorylation in Rat-1 fibroblasts expressing amino termini-truncated α1D-adrenoceptors. However, in cells expressing receptors with both amino and carboxyl termini truncations, noradrenaline-induced activation was abrogated. Interestingly, ERK phosphorylation that normally occurs through activation of endogenous G protein-coupled receptors, EGF receptors, and protein kinase C, was also decreased, suggesting that downstream steps in the mitogen-activated protein kinase pathway were affected. A similar effect was observed in B103 cells but not in HEK 293 cells. Phosphorylation of Raf-1 and MEK1 was also diminished in Rat-1 fibroblasts expressing amino- and carboxyl-truncated α1D-adrenoceptors. Our data indicate that expression of carboxyl terminus-truncated α1D-adrenoceptors alters ERK and p38 phosphorylation state. "	"Pranlukast, a novel binding ligand of human Raf1 kinase inhibitory protein. To study the binding of pranlukast to hRKIP and its regulatory role in the Raf1/MEK/ERK signal pathway. NMR and fluorescence experiments demonstrated hRKIP could bind pranlukast with a binding constant of 1016 mM(-1). Residues (Y81, S109 and Y181) on the conserved ligand-binding pocket of hRKIP played a crucial role in binding pranlukast, and their mutations reduced the binding affinity more than 85 %. Furthermore, 25 μM pranlukast could up-regulate the ERK phosphorylation by about 17 %. Pranlukast may be used as a potential drug precursor for treating hRKIP involved diseases."	"The Effect of Sorafenib, Tadalafil and Macitentan Treatments on Thyroxin-Induced Hemodynamic Changes and Cardiac Abnormalities. Multikinase inhibitors (e.g. Sorafenib), phosphodiesterase-5 inhibitors (e.g. Tadalafil), and endothelin-1 receptor blockers (e.g. Macitentan) exert influential protection in a variety of animal models of cardiomyopathy; however, their effects on thyroxin-induced cardiomyopathy have never been investigated. The goal of the present study was to assess the functional impact of these drugs on thyroxin-induced hemodynamic changes, cardiac hypertrophy and associated altered responses of the contractile myocardium both in-vivo at the whole heart level and ex-vivo at the cardiac tissue level. Control and thyroxin (500 μg/kg/day)-treated mice with or without 2-week treatments of sorafenib (10 mg/kg/day; I.P), tadalafil (1 mg/kg/day; I.P or 4 mg/kg/day; oral), macitentan (30 and 100 mg/kg/day; oral), and their vehicles were studied. Blood pressure, echocardiography and electrocardiogram were non-invasively evaluated, followed by ex-vivo assessments of isolated multicellular cardiac preparations. Thyroxin increased blood pressure, resulted in cardiac hypertrophy and left ventricular dysfunction in-vivo. Also, it caused contractile abnormalities in right ventricular papillary muscles ex-vivo. None of the drug treatments were able to significantly attenuate theses hemodynamic changes or cardiac abnormalities in thyroxin-treated mice. We show here for the first time that multikinase (raf1/b, VEGFR, PDGFR), phosphodiesterase-5, and endothelin-1 pathways have no major role in thyroxin-induced hemodynamic changes and cardiac abnormalities. In particular, our data show that the involvement of endothelin-1 pathway in thyroxine-induced cardiac hypertrophy/dysfunction seems to be model-dependent and should be carefully interpreted. "	"Nutritional aspects of Noonan syndrome and Noonan-related disorders. Rasopathies are a group of rare disorders characterized by neurocardiofaciocutaneous involvement, and caused by mutations in several genes of the RAS/MAPK pathway. In the present study, we characterized growth parameters, body composition, and nutritional aspects of children and adults (n = 62) affected by these disorders, mainly Noonan syndrome, using an indirect method-anthropometry-and a 24-hr recall questionnaire. The growth parameters in our cohort showed short stature, especially in individuals with RAF1 and SHOC2 mutations, lower obesity rates compared to the control population, and BMI scores highest in individuals with BRAF mutations and lowest in individuals with SHOC2. Body composition showed a compromise in the upper arm muscle circumference, with a statistically significant difference in the z-score of triceps skinfold (P = 0.0204) and upper arm fat area (P = 0.0388) between BRAF and SHOC2 groups and in the z-score of triceps skinfold between RAF1 and SHOC2 (P = 0.0218). The pattern of macronutrient consumption was similar to the control population. Our study is the first to address body composition in RASopathy individuals and the data indicate a compromise not only in adipose tissue, but also in muscle mass. Studies using different techniques, such as dual-energy X-ray absorptiometry or imaging studies, which give a more precise delineation of fat and non-fat mass, are required to confirm our results, ultimately causing an impact on management strategies. © 2016 Wiley Periodicals, Inc."	"Disseminated glioneuronal tumors occurring in childhood: treatment outcomes and BRAF alterations including V600E mutation. Disseminated glioneuronal tumors of childhood are rare. We present a retrospective IRB-approved review of the clinical course and frequency of BRAF mutations in disseminated glioneuronal tumors at two institutions. Defining features of our cohort include diffuse leptomeningeal-spread, often with a discrete spinal cord nodule and oligodendroglioma-like histologic features. Patients were identified through a pathology database search of all cases with disseminated low-grade neoplasms with an oligodendroglioma-like component. De-identified clinical information was collected by chart review and all imaging was reviewed. We retrieved the results of targeted genomic analyses for alterations in BRAF. Ten patients (aged 2-14 years) were identified from the Dana-Farber/Boston Children's Hospital and the Royal Children's Hospital, Melbourne pathology databases. Nine patients received chemotherapy. Eight patients are alive, although three have had episodes of progressive disease. We identified genomic alterations affecting the MAPK pathway in six patients. One patient had a germline RAF1 mutation and a clinical diagnosis of cardio-facio-cutaneous syndrome. BRAF duplications were identified in four and BRAF V600E mutation was identified in one. These data support the presence of targetable genomic alterations in this disease."	"MicroRNAs mediated regulation of MAPK signaling pathways in chronic myeloid leukemia. Chronic myeloid leukemia (CML) is a severe problem throughout the world and requires identification of novel targets for its treatment. This multifactorial disease accounts for about 15% of the all diagnosed leukemia cases. Mitogen-activated protein kinase (MAPK) signaling pathway is crucial for the cell survival and its dysregulation is being implicated in various types of cancers. In here, we have discussed the potential role of various miRNAs that are found involved in regulating the proteins cascades of MAPK signaling pathway associated with CML. An emphasis has been paid to summarize the influence of various miRNAs in elevating or suppressing the expression level of significant proteins such as miR-203, miR-196a, miR-196b, miR-30a, miR-29b, miR-138 in BCR-ABL tyrosine kinase; miR-126, miR-221, miR-128, miR-15a, miR-188-5p, miR-17 in CRK family proteins; miR-155, miR-181a with SOS proteins; miR-155, miR-19a, with KRAS proteins; miR-19a with RAF1 protein; and miR-17, miR-19a, miR-17-92 cluster with MAPK/ERK proteins. In light of ever-increasing importance and ever-widening regulatory roles of miRNAs in cells, we have reviewed the recent progress in the field of miRNAs and have tried to suggest them as controlling targets for various protein cascades of MAPK signaling pathway. An understanding of the supervisory mechanism of MAPK by miRNAs might provide novel targets for treating CML."	"RSK3 is required for concentric myocyte hypertrophy in an activated Raf1 model for Noonan syndrome. Noonan syndrome (NS) is a congenital disorder resulting from mutations of the Ras-Raf signaling pathway. Hypertrophic cardiomyopathy associated with RAF1 &quot;RASopathy&quot; mutations is a major risk factor for heart failure and death in NS and has been attributed to activation of MEK1/2-ERK1/2 mitogen-activated protein kinases. We recently discovered that type 3 p90 ribosomal S6 kinase (RSK3) is an ERK effector that is required, like ERK1/2, for concentric myocyte hypertrophy in response to pathological stress such as pressure overload. In order to test whether RSK3 also contributes to NS-associated hypertrophic cardiomyopathy, RSK3 knock-out mice were crossed with mice bearing the Raf1(L613V) human NS mutation. We confirmed that Raf1(L613V) knock-in confers a NS-like phenotype, including cardiac hypertrophy. Active RSK3 was increased in Raf1(L613V) mice. Constitutive RSK3 gene deletion prevented the Raf1(L613V)-dependent concentric growth in width of the cardiac myocyte and attenuated cardiac hypertrophy in female mice. These results are consistent with RSK3 being an important mediator of ERK1/2-dependent growth in RASopathy. In conjunction with previously published data showing that RSK3 is important for pathological remodeling of the heart, these data suggest that targeting of this downstream MAP-kinase pathway effector should be considered in the treatment of RASopathy-associated hypertrophic cardiomyopathy."	"Growth patterns of patients with Noonan syndrome: correlation with age and genotype. Growth patterns of patients with Noonan syndrome (NS) were established before the involved genes were identified. The goal of this study was to compare growth parameters according to genotype in patients with NS. The study population included 420 patients (176 females and 244 males) harboring mutations in the PTPN11, SOS1, RAF1, or KRAS genes. NS-associated PTPN11 mutations (NS-PTPN11) and NS with multiple lentigines-associated PTPN11 mutations (NSML-PTPN11) were distinguished. Birth measures and height and body mass index (BMI) measures at 2, 5, 10 years, and adulthood were compared with the general population and between genotypes. Patients with NS were shorter at birth (mean birth length standard deviation score (SDS): -1.0 ± 1.4; P &lt; 0.001) and throughout childhood than the healthy population, with height SDS being -2.1 ± 1.3 at 2 years, and -2.1 ± 1.2 at 5 and 10 years and adulthood (P &lt; 0.001). At birth, patients with NS-PTPN11 were significantly shorter and thinner than patients with NSML-PTPN11, SOS1, or KRAS. Growth retardation was significantly less severe and less frequent at 2 years in patients with NSML-PTPN11 and SOS1 than in patients with NS-PTPN11 (P &lt; 0.001 and P = 0.002 respectively). Patients with NS had lower BMI at 10 years (P &lt; 0.001). No difference between genotypes was demonstrated. Determining the growth patterns of patients with NS according to genotype should better inform clinicians about the natural course of growth in NS so that they can optimize the follow-up and management of these patients."	"Gene expression profiling analysis of lung adenocarcinoma. The present study screened potential genes related to lung adenocarcinoma, with the aim of further understanding disease pathogenesis. The GSE2514 dataset including 20 lung adenocarcinoma and 19 adjacent normal tissue samples from 10 patients with lung adenocarcinoma aged 45-73 years was downloaded from Gene Expression Omnibus. Differentially expressed genes (DEGs) between the two groups were screened using the t-test. Potential gene functions were predicted using functional and pathway enrichment analysis, and protein-protein interaction (PPI) networks obtained from the STRING database were constructed with Cytoscape. Module analysis of PPI networks was performed through MCODE in Cytoscape. In total, 535 upregulated and 465 downregulated DEGs were identified. These included ATP5D, UQCRC2, UQCR11 and genes encoding nicotinamide adenine dinucleotide (NADH), which are mainly associated with mitochondrial ATP synthesis coupled electron transport, and which were enriched in the oxidative phosphorylation pathway. Other DEGs were associated with DNA replication (PRIM1, MCM3, and RNASEH2A), cell surface receptor-linked signal transduction and the enzyme-linked receptor protein signaling pathway (MAPK1, STAT3, RAF1, and JAK1), and regulation of the cytoskeleton and phosphatidylinositol signaling system (PIP5K1B, PIP5K1C, and PIP4K2B). Our findings suggest that DEGs encoding subunits of NADH, PRIM1, MCM3, MAPK1, STAT3, RAF1, and JAK1 might be associated with the development of lung adenocarcinoma. "	"Induction of MAP kinase phosphatase 3 through Erk/MAP kinase activation in three oncogenic Ras (H-, K- and N-Ras)-expressing NIH/3T3 mouse embryonic fibroblast cell lines. Ras oncoproteins are small molecular weight GTPases known for their involvement in oncogenesis, which operate in a complex signaling network with multiple effectors. Approximately 25% of human tumors possess mutations in a member of this family. The Raf1/MEK/Erk1/2 pathway is one of the most intensively studied signaling mechanisms. Different levels of regulation account for the inactivation of MAP kinases by MAPK phosphatases in a cell type- and stimuli-dependent manner. In the present study, using three inducible Ras-expressing NIH/3T3 cell lines, we demonstrated that MKP3 upregulation requires the activation of the Erk1/2 pathway, which correlates with the shutdown of this pathway. We also demonstrated, by applying pharmacological inhibitors and effector mutants of Ras, that induction of MKP3 at the protein level is positively regulated by the oncogenic Ras/Raf/MEK/Erk1/2 signaling pathway. [BMB Reports 2016; 49(7): 370-375]. "	"RAF1 is increased in labouring myometrium and modulates inflammation-induced pro-labour mediators. Inflammation plays a central role in the terminal process of human labour and delivery, including myometrial contractions. RAF1 proto-oncogene serine/threonine-protein kinase (RAF1) can activate ERK (official gene symbol MAPK1) and/or nuclear factor-kappa B (NF-κB) to regulate genes involved in inflammation. There are, however, no studies on the role of RAF1 in the processes of human labour and delivery. Thus, the aims of this study were to determine the effect of i) human labour and pro-inflammatory cytokines interleukin 1 beta (IL1B) and tumour necrosis factor (TNF) alpha on RAF1 protein expression in myometrium and ii) siRNA knockdown of RAF1 on pro-inflammatory and pro-labour mediators in human myometrial primary cells. Term labour was associated with an increase in RAF1 protein expression. Furthermore, RAF1 protein expression was increased in myometrial cells treated with IL1B and TNF, two likely factors contributing to preterm birth. Knockdown of RAF1 by siRNA in primary myometrial cells significantly decreased IL1B- and TNF-induced IL1A, IL1B, IL6, (C-X-C motif) ligand 8 (CXCL8)and chemokine (C-C motif) ligand 2 (CCL2) mRNA abundance and IL6, IL8 and CCL2; prostaglandin-endoperoxide synthase 2 (PTGS2) mRNA levels and prostaglandin PGF2 α release; and NF-κB activation. Furthermore, RAF1 knockdown was associated with decreased activation of ERK in the presence of IL1B but not TNF. Concordantly, the ERK inhibitor U0126 significantly decreased IL1B-induced IL6, CXCL8, CCL2 and PTGS2 mRNA abundance; IL6, CXCL8, CCL2 and PGF2 α release; and NF-κB activation. In conclusion, IL1B induces the expression and secretion of pro-labour mediators through the RAF1-MAPK1-NF-κB signalling pathway. TNF, on the other hand, regulates pro-labour mediators through the RAF1-NF-κB signalling pathway via an MAPK1-independent mechanism. "	"Sprouty 2: a novel attenuator of B-cell receptor and MAPK-Erk signaling in CLL. Clinical heterogeneity is a major barrier to effective treatment of chronic lymphocytic leukemia (CLL). Emerging evidence suggests that constitutive activation of various signaling pathways like mitogen-activated protein kinase-extracellular signal-regulated kinase (MAPK-Erk) signaling plays a role in the heterogeneous clinical outcome of CLL patients. In this study, we have investigated the role of Sprouty (SPRY)2 as a negative regulator of receptor and nonreceptor tyrosine kinase signaling in the pathogenesis of CLL. We show that SPRY2 expression is significantly decreased in CLL cells, particularly from poor-prognosis patients compared with those from good-prognosis patients. Overexpression of SPRY2 in CLL cells from poor-prognosis patients increased their apoptosis. Conversely, downregulation of SPRY2 in CLL cells from good-prognosis patients resulted in increased proliferation. Furthermore, CLL cells with low SPRY2 expression grew more rapidly in a xenograft model of CLL. Strikingly, B-cell-specific transgenic overexpression of spry2 in mice led to a decrease in the frequency of B1 cells, the precursors of CLL cells in rodents. Mechanistically, we show that SPRY2 attenuates the B-cell receptor (BCR) and MAPK-Erk signaling by binding to and antagonizing the activities of RAF1, BRAF, and spleen tyrosine kinase (SYK) in normal B cells and CLL cells. We also show that SPRY2 is targeted by microRNA-21, which in turn leads to increased activity of Syk and Erk in CLL cells. Taken together, these results establish SPRY2 as a critical negative regulator of BCR-mediated MAPK-Erk signaling in CLL, thereby providing one of the molecular mechanisms to explain the clinical heterogeneity of CLL."	"MRP3 as a novel resistance factor for sorafenib in hepatocellular carcinoma. The mechanism of resistance of hepatocellular carcinoma (HCC) to sorafenib is unknown and no useful predictive biomarker for sorafenib treatment has been reported. Accordingly, we established sorafenib-resistant HCC cells and investigated the underlying mechanism of resistance to sorafenib. Sorafenib-resistant cell lines were established from the HCC cell line PLC/PRF5 by cultivation under continuous exposure to increasing concentration of sorafenib. The IC50 values of the 2 resistant clones PLC/PRF5-R1 and PLC-PRF5-R2 were 9.2±0.47 μM (1.8-fold) and 25±5.1 μM (4.6-fold) respectively, which were significantly higher than that of parental PLC/PRF5 cells (5.4±0.17 μM) (p &lt; 0.01 respectively), as determined by MTT assay. Western blot analysis of signal transduction-related proteins showed no significant differences in expression of AKT/pAKT, mTOR/pmTOR, or ERK/pERK between the 2 resistant clones versus parent cells, suggesting no activation of an alternative signal transduction pathway. Likewise, when expression of membrane transporter proteins was determined, there were no significant differences in expression levels of BSEP, MDR1, MRP2, BCRP, MRP4 and OCT1 between resistant clones and parent cells. However, the expression levels of MRP3 in the 2 resistant clones were significantly higher than that of parent cells. When MRP3 gene was knocked down by siRNA in PLC-PRF5-R2 cells, the sensitivity of the cells to sorafenib was restored. In the analysis of gene mutation, there was no mutation in the activation segment of Raf1 kinase in the resistant clones. Our data clearly demonstrate that the efflux transporter MRP3 plays an important role in resistance to sorafenib in HCC cells."	"Morinda citrifolia edible leaf extract enhanced immune response against lung cancer. Lung cancer causes 1.4 million deaths annually. In the search for functional foods as complementary therapies against lung cancer, the immuno-stimulatory properties of the vegetable Morinda citrifolia leaves were investigated and compared with the anti-cancer drug erlotinib. Lung tumour-induced BALB/c mice were fed with 150 mg kg(-1) or 300 mg kg(-1) body weight of the leaf extract, or erlotinib (50 mg kg(-1) body-weight) for 21 days. The 300 mg kg(-1) body weight extract significantly (and dose-dependently) suppressed lung tumour growth; the extract worked more effectively than the 50 mg kg(-1) body weight erlotinib treatment. The extract significantly increased blood lymphocyte counts, and spleen tissue B cells, T cells and natural killer cells, and reduced the epidermal growth factor receptor (EGFR) which is a lung adenocarcinoma biomarker. The extract also suppressed the cyclooxygenase 2 (COX2) inflammatory markers, and enhanced the tumour suppressor gene (phosphatase and tensin homolog, PTEN). It inhibited tumour growth cellular gene (transformed mouse 3T3 cell double minute 2 (MDM2), V-raf-leukemia viral oncogene 1 (RAF1), and mechanistic target of rapamycin (MTOR)) mRNA expression in the tumours. The extract is rich in scopoletin and epicatechin, which are the main phenolic compounds. The 300 mg kg(-1)Morinda citrifolia leaf 50% ethanolic extract showed promising potential as a complementary therapeutic dietary supplement which was more effective than the 50 mg kg(-1) erlotinib in suppressing lung adenocarcinoma. Part of the mechanisms involved enhancing immune responses, suppressing proliferation and interfering with various tumour growth signalling pathways. "	"Functional Analysis of the Adrenomedullin Pathway in Malignant Pleural Mesothelioma. Malignant pleural mesothelioma (MPM) grows aggressively within the thoracic cavity and has a very low cure rate, thus highlighting the need for identification of new therapeutic targets. Adrenomedullin (AM) is a multifunctional peptide that is highly expressed in several tumors and plays an important role in angiogenesis and tumor growth after binding to its receptors, calcitonin receptor-like receptor/receptor activity-modifying protein 2 (CLR/RAMP2) and calcitonin receptor-like receptor/receptor activity-modifying protein 3 (CLR/RAMP3). Real time quantitative reverse transcriptase polymerase chain reaction (RT-PCR) was used to assess the steady-state levels of AM, CLR, RAMP2 and RAMP3 messenger RNA (mRNA) transcripts in normal pleural tissue (n=5) and MPM (n=24). The expression of these candidates at protein level was revealed by immunohistochemistry. We also characterized the expression and regulation by hypoxia of AM system in MPM cell lines and MeT-5A cells. In vitro and in vivo studies were performed to determine the functional role of AM system in MPM. In this study, real-time quantitative reverse transcriptase polymerase chain reaction showed twofold to 10-fold higher levels of AM messenger RNA in MPM tissue than in normal pleural tissue. The MPM cell lines H2452, H2052, and human mesothelioma cell line MSTO-211H showed a significant increase in expression of AM messenger RNA under hypoxic conditions. Our results also show that AM stimulates cell proliferation in vitro through the Raf1 proto-oncogene, serine/threonine kinase (CRAF)/ Mitogen-activated protein kinase kinase 1 (MEK)/Extracellular regulated MAPKinase (ERK) pathway. Furthermore, the proliferation, migration, and invasion of MPM cells were decreased after treatment with anti-AM (αAM) and anti-AM receptor antibodies, thus indicating that MPM cells are regulated by AM. The action of AM was specific and mediated by CLR/RAMP2 and CLR/RAMP3 receptors. In vivo, αAM and AM22-52 antagonist therapies blocked angiogenesis and induced apoptosis in MSTO-211H xenografts, thereby resulting in tumor regression. Histologic examination of tumors treated with AM22-52 and αAM antibody showed evidence of disruption of tumor vasculature with depletion of vascular endothelial cells and a significant decrease in lymphatic endothelial cells. Our findings highlight the importance of the AM pathway in growth of MPM and in neovascularization by supplying and amplifying signals that are essential for pathologic neoangiogenesis and lymphangiogenesis."	"Why high cholesterol levels help hematological malignancies: role of nuclear lipid microdomains. Diet and obesity are recognized in the scientific literature as important risk factors for cancer development and progression. Hypercholesterolemia facilitates lymphoma lymphoblastic cell growth and in time turns in hypocholesterolemia that is a sign of tumour progression. The present study examined how and where the cholesterol acts in cancer cells when you reproduce in vitro an in vivo hypercholesterolemia condition. We used non-Hodgkin's T cell human lymphoblastic lymphoma (SUP-T1 cell line) and we studied cell morphology, aggressiveness, gene expression for antioxidant proteins, polynucleotide kinase/phosphatase and actin, cholesterol and sphingomyelin content and finally sphingomyelinase activity in whole cells, nuclei and nuclear lipid microdomains. We found that cholesterol changes cancer cell morphology with the appearance of protrusions together to the down expression of β-actin gene and reduction of β-actin protein. The lipid influences SUP-T1 cell aggressiveness since stimulates DNA and RNA synthesis for cell proliferation and increases raf1 and E-cadherin, molecules involved in invasion and migration of cancer cells. Cholesterol does not change GRX2 expression but it overexpresses SOD1, SOD2, CCS, PRDX1, GSR, GSS, CAT and PNKP. We suggest that cholesterol reaches the nucleus and increases the nuclear lipid microdomains known to act as platform for chromatin anchoring and gene expression. The results imply that, in hypercholesterolemia conditions, cholesterol reaches the nuclear lipid microdomains where activates gene expression coding for antioxidant proteins. We propose the cholesterolemia as useful parameter to monitor in patients with cancer."	"Quantitative proteomics reveals protein kinases and phosphatases in the individual phases of contextual fear conditioning in the C57BL/6J mouse. A series of protein kinases and phosphatases (PKPs) have been linked to contextual fear conditioning (cFC) but information is mainly derived from immunochemical studies. It was therefore decided to use an explorative label-free quantitative proteomics approach to concomitantly determine PKPs in hippocampi of mice in the individual phases of cFC. C57BL/6J mice were divided into four groups: three training groups representing the acquisition, consolidation and retrieval phases of cFC and a foot shock control group. Using this approach we identified 32 protein kinases or phosphatases/phosphatase subunits with significantly changed protein levels in one or more training groups as compared to foot shock control. These include members of PKP signalling modules of mitogen-activated protein kinase (MAP3K10, RAF1, KSR2), Ca2+/calmodulin-dependent protein kinase (CaMKIIα, DAPK1), protein kinase C (PRKCD) and protein phosphatases 1, 2A, 2B(3) previously implicated in various learning paradigms. In addition, our analysis showed protein kinases WNK1, LYN, VRK1, ABL1, CDK4, CDKL3, SgK223 and ADCK1, and protein phosphatases PTPRF, ACP1, DNAJC6, SSH2 and UBASH3B that have not been directly linked to fear memory processes so far. Determination of PKPs in the individual cFC phases represents a valuable resource for interpretation of previous and design of future studies on PKPs in memory mechanisms."	"HDAC inhibitors suppress c-Jun/Fra-1-mediated proliferation through transcriptionally downregulating MKK7 and Raf1 in neuroblastoma cells. Activator protein 1 (AP-1) is a transcriptional factor composed of the dimeric members of bZIP proteins, which are frequently deregulated in human cancer cells. In this study, we aimed to identify an oncogenic AP-1 dimer critical for the proliferation of neuroblastoma cells and to investigate whether histone deacetylase inhibitors (HDACIs), a new generation of anticancer agents, could target the AP-1 dimer. We report here that HDACIs including trichostatin A, suberoylanilidehydroxamic acid, valproic acid and M344 can transcriptionally suppress both c-Jun and Fra-1, preceding their inhibition of cell growth. c-Jun preferentially interacting with Fra-1 as a heterodimer is responsible for AP-1 activity and critical for cell growth. Mechanistically, HDACIs suppress Fra-1 expression through transcriptionally downregulating Raf1 and subsequently decreasing MEK1/2-ERK1/2 activity. Unexpectedly, HDACI treatment caused MKK7 downregulation at both the protein and mRNA levels. Deletion analysis of the 5'-flanking sequence of the MKK7 gene revealed that a major element responsible for the downregulation by HDACI is located at -149 to -3 relative to the transcriptional start site. Knockdown of MKK7 but not MKK4 remarkably decreased JNK/c-Jun activity and proliferation, whereas ectopic MKK7-JNK1 reversed HDACI-induced c-Jun suppression. Furthermore, suppression of both MKK-7/c-Jun and Raf-1/Fra-1 activities was involved in the tumor growth inhibitory effects induced by SAHA in SH-SY5Y xenograft mice. Collectively, these findings demonstrated that c-Jun/Fra-1 dimer is critical for neuroblastoma cell growth and that HDACIs act as effective suppressors of the two oncogenes through transcriptionally downregulating MKK7 and Raf1."	"Inhibition of Chronic Pancreatitis and Murine Pancreatic Intraepithelial Neoplasia by a Dual Inhibitor of c-RAF and Soluble Epoxide Hydrolase in LSL-KrasG¹²D/Pdx-1-Cre Mice. Mutation of Kirsten rat sarcoma viral oncogene homolog (KRAS) and chronic pancreatitis are the most common pathogenic events involved in human pancreatic carcinogenesis. In the process of long-standing chronic inflammation, aberrant metabolites of arachidonic acid play a crucial role in promoting carcinogenesis, in which the soluble epoxide hydrolase (sEH), as a pro-inflammatory enzyme, generally inactivates anti-inflammatory epoxyeicosatrienoic acids (EETs). Herein, we determined the effect of our newly-synthesized novel compound trans-4-{4-[3-(4-chloro-3-trifluoromethyl-phenyl)-ureido]-cyclohexyloxy}-pyridine-2-carboxylic acid methylamide (t-CUPM), a dual inhibitor of sEH and RAF1 proto-oncogene serine/threonine kinase (c-RAF), on inhibiting the development of pancreatitis and pancreatic intraepithelial neoplasia (mPanIN) in LSL-Kras(G12D)/Pdx1-Cre mice. The results showed that t-CUPM significantly reduced the severity of chronic pancreatitis, as measured by the extent of acini loss, inflammatory cell infiltration and stromal fibrosis. The progression of low-grade mPanIN I to high-grade mPanIN II/III was significantly suppressed. Inhibition of mutant Kras-transmitted phosphorylation of mitogen-activated protein kinase's kinase/extracellular signal-regulated kinases was demonstrated in pancreatic tissues by western blots. Quantitative real-time polymerase chain reaction analysis revealed that t-CUPM treatment significantly reduced the levels of inflammatory cytokines including tumor necrosis facor-α, monocyte chemoattractant protein-1, as well as vascular adhesion molecule-1, and the levels of Sonic hedgehog and Gli transcription factor (Hedgehog pathway). Analysis of the eicosanoid profile revealed a significant increase of the EETs/dihydroxyeicosatrienoic acids ratio, which further confirmed sEH inhibition by t-CUPM. These results indicate that simultaneous inhibition of sEH and c-RAF by t-CUPM is important in preventing chronic pancreatitis and carcinogenesis."	"Activation of AKT of signaling pathway and the level of mTOR substrates in tumor of patients with kidney cancer, connection with prevalence of malignancy. Activation of AKT signaling pathway and mTOR substrates of kidney tumor tissue occurs by improving AKT, its phosphorylated form, the serine / threonine proteinkinase m-TOR, the exchange regulator glycogen GSK-3-beta and also the inhibitor of 4E-BP1transcription. Increasing the size of primary tumor is followed by increasing the content of therein c-Raf and decreasing the content of phospho-m-TOR. The development of disseminated forms of the disease was associated with a reduction PTEN and phospho-AKT in tumor."	"PHENOTYPIC CONSEQUENCES AND THE MALIGNANCY RISK IN FAMILIAL NOONAN SYNDROME DUE TO A RARE P.S427G RAF1 MUTATION. Mutations leading to dysregulation of the Ras/MAPK signal transduction cascade are a common cause of Noonan syndrome (NS) and play a key role in the pathogenesis of many human malignancies. To date, about 24 various RAF1 germline mutations were identified in NS. The incidence of malignancies in NS patients with RAF1 mutations has not been reported so far. However, in a few cases somatic RAF1 mutations were observed in cancer, including two described in therapy-related acute myeloid leukaemia (t-AML). We present a case of an adult female patient with Noonan syndrome and her affected mother with a rare RAF] germline mutation c.1279A&gt;G (p.S427G), located within the highly conserved domain (CR3) of serine/threonine kinase C-RAF. Interestingly, this mutation has been reported for the first time in a patient with t-AML as a somatic change and so far has been identified in only one individual with NS phenotype and his mother. Our report presents the second familial case of Noonan syndrome due to a germline p.S427G substitution in RAF] with no occurrence of a malignant tumor. It may suggest that carrying a germline mutation in the RAF1 oncogene is not associated with an increased risk of tumor development. Since RAF1 mutations have been observed as a somatic event in many types of cancer, this report might be of importance for the genetic counselling and management of patients both with germline and somatic alterations in this gene."	"Spectrum of mutations and genotype-phenotype analysis in Noonan syndrome patients with RIT1 mutations. RASopathies are autosomal dominant disorders caused by mutations in more than 10 known genes that regulate the RAS/MAPK pathway. Noonan syndrome (NS) is a RASopathy characterized by a distinctive facial appearance, musculoskeletal abnormalities, and congenital heart defects. We have recently identified mutations in RIT1 in patients with NS. To delineate the clinical manifestations in RIT1 mutation-positive patients, we further performed a RIT1 analysis in RASopathy patients and identified 7 RIT1 mutations, including two novel mutations, p.A77S and p.A77T, in 14 of 186 patients. Perinatal abnormalities, including nuchal translucency, fetal hydrops, pleural effusion, or chylothorax and congenital heart defects, are observed in all RIT1 mutation-positive patients. Luciferase assays in NIH 3T3 cells demonstrated that the newly identified RIT1 mutants, including p.A77S and p.A77T, and the previously identified p.F82V, p.T83P, p.Y89H, and p.M90I, enhanced Elk1 transactivation. Genotype-phenotype correlation analyses of previously reported NS patients harboring RIT1, PTPN11, SOS1, RAF1, and KRAS revealed that hypertrophic cardiomyopathy (56 %) was more frequent in patients harboring a RIT1 mutation than in patients harboring PTPN11 (9 %) and SOS1 mutations (10 %). The rates of hypertrophic cardiomyopathy were similar between patients harboring RIT1 mutations and patients harboring RAF1 mutations (75 %). Short stature (52 %) was less prevalent in patients harboring RIT1 mutations than in patients harboring PTPN11 (71 %) and RAF1 (83 %) mutations. These results delineate the clinical manifestations of RIT1 mutation-positive NS patients: high frequencies of hypertrophic cardiomyopathy, atrial septal defects, and pulmonary stenosis; and lower frequencies of ptosis and short stature."	"Blocking HSP90 Addiction Inhibits Tumor Cell Proliferation, Metastasis Development, and Synergistically Acts with Zoledronic Acid to Delay Osteosarcoma Progression. Despite recent improvements in therapeutic management of osteosarcoma, ongoing challenges in improving the response to chemotherapy warrants the development of new strategies to improve overall patient survival. Among them, HSP90 is a molecular chaperone involved in the maturation and stability of various oncogenic proteins leading to tumor cells survival and disease progression. We assessed the antitumor properties of a synthetic HSP90 inhibitor, PF4942847, alone or in combination with zoledronic acid in osteosarcoma. The effects of PF4942847 were evaluated on human osteosarcoma cells growth and apoptosis. Signaling pathways were analyzed by Western blotting. The consequence of HSP90 therapy combined or not with zoledronic acid was evaluated in mice bearing HOS-MNNG xenografts on tumor growth, associated bone lesions, and pulmonary metastasis. The effect of PF4942847 on osteoclastogenesis was assessed on human CD14(+) monocytes. In osteosarcoma cell lines, PF4942847 inhibited cell growth in a dose-dependent manner (IC50 ±50 nmol/L) and induced apoptosis with an increase of sub-G1 fraction and cleaved PARP. These biologic events were accompanied by decreased expression of Akt, p-ERK, c-Met, and c-RAF1. When administered orally to mice bearing osteosarcoma tumors, PF4942847 significantly inhibited tumor growth by 80%, prolonged survival compared with controls, and inhibited pulmonary metastases by blocking c-Met, FAK, and MMP9 signaling. In contrast to 17-allylamino-17-demethoxygeldanamycin (17-AAG), PF4942847 did not induce osteoclast differentiation, and synergistically acted with zoledronic acid to delay osteosarcoma progression and prevent bone lesions. All these data provide a strong rationale for clinical evaluation of PF4942847 alone or in combination with zoledronic acid in osteosarcoma. Clin Cancer Res; 22(10); 2520-33. ©2015 AACR."	"Landscape of gene fusions in epithelial cancers: seq and ye shall find. Enabled by high-throughput sequencing approaches, epithelial cancers across a range of tissue types are seen to harbor gene fusions as integral to their landscape of somatic aberrations. Although many gene fusions are found at high frequency in several rare solid cancers, apart from fusions involving the ETS family of transcription factors which have been seen in approximately 50% of prostate cancers, several other common solid cancers have been shown to harbor recurrent gene fusions at low frequencies. On the other hand, many gene fusions involving oncogenes, such as those encoding ALK, RAF or FGFR kinase families, have been detected across multiple different epithelial carcinomas. Tumor-specific gene fusions can serve as diagnostic biomarkers or help define molecular subtypes of tumors; for example, gene fusions involving oncogenes such as ERG, ETV1, TFE3, NUT, POU5F1, NFIB, PLAG1, and PAX8 are diagnostically useful. Tumors with fusions involving therapeutically targetable genes such as ALK, RET, BRAF, RAF1, FGFR1-4, and NOTCH1-3 have immediate implications for precision medicine across tissue types. Thus, ongoing cancer genomic and transcriptomic analyses for clinical sequencing need to delineate the landscape of gene fusions. Prioritization of potential oncogenic &quot;drivers&quot; from &quot;passenger&quot; fusions, and functional characterization of potentially actionable gene fusions across diverse tissue types, will help translate these findings into clinical applications. Here, we review recent advances in gene fusion discovery and the prospects for medicine."	"Reproducible Analysis of Post-Translational Modifications in Proteomes--Application to Human Mutations. Protein post-translational modifications (PTMs) are an important aspect of protein regulation. The number of PTMs discovered within the human proteome, and other proteomes, has been rapidly expanding in recent years. As a consequence of the rate in which new PTMs are identified, analysis done in one year may result in different conclusions when repeated in subsequent years. Among the various functional questions pertaining to PTMs, one important relationship to address is the interplay between modifications and mutations. Specifically, because the linear sequence surrounding a modification site often determines molecular recognition, it is hypothesized that mutations near sites of PTMs may be more likely to result in a detrimental effect on protein function, resulting in the development of disease. We wrote an application programming interface (API) to make analysis of ProteomeScout, a comprehensive database of PTMs and protein information, easy and reproducible. We used this API to analyze the relationship between PTMs and human mutations associated with disease (based on the 'Clinical Significance' annotation from dbSNP). Proteins containing pathogenic mutations demonstrated a significant study bias which was controlled for by analyzing only well-studied proteins, based on their having at least one pathogenic mutation. We found that pathogenic mutations are significantly more likely to lie within eight amino acids of a phosphoserine, phosphotyrosine or ubiquitination site when compared to mutations in general, based on a Fisher's Exact test. Despite the skew of pathogenic mutations occurring on positively charged arginines, we could not account for this relationship based only on residue type. Finally, we hypothesize a potential mechanism for a pathogenic mutation on RAF1, based on its proximity to a phosphorylation site, which represents a subtle regulation difference that may explain why its biochemical effect has failed to be uncovered previously. The combination of the API and a dynamically expanding PTM database will make the reanalysis of this question and other systems-level questions easier in the future."	"c-Raf promotes angiogenesis during normal growth plate maturation. Extracellular phosphate plays a key role in growth plate maturation by inducing Erk1/2 (Mapk3/1) phosphorylation, leading to hypertrophic chondrocyte apoptosis. The Raf kinases induce Mek1/2 (Map2k1/2) and Erk1/2 phosphorylation; however, a role for Raf kinases in endochondral bone formation has not been identified. Ablation of both A-Raf (Araf) and B-Raf (Braf) in chondrocytes does not alter growth plate maturation. Because c-Raf (Raf1) phosphorylation is increased by extracellular phosphate and c-Raf is the predominant isoform expressed in hypertrophic chondrocytes, chondrocyte-specific c-Raf knockout mice (c-Raf(f/f);ColII-Cre(+)) were generated to define a role for c-Raf in growth plate maturation. In vivo studies demonstrated that loss of c-Raf in chondrocytes leads to expansion of the hypertrophic layer of the growth plate, with decreased phospho-Erk1/2 immunoreactivity and impaired hypertrophic chondrocyte apoptosis. However, cultured hypertrophic chondrocytes from these mice did not exhibit impairment of phosphate-induced Erk1/2 phosphorylation. Studies performed to reconcile the discrepancy between the in vitro and in vivo hypertrophic chondrocyte phenotypes revealed normal chondrocyte differentiation in c-Raf(f/f);ColII-Cre(+) mice and lack of compensatory increase in the expression of A-Raf and B-Raf. However, VEGF (Vegfa) immunoreactivity in the hypertrophic chondrocytes of c-Raf(f/f);ColII-Cre(+) mice was significantly reduced, associated with increased ubiquitylation of VEGF protein. Thus, c-Raf plays an important role in growth plate maturation by regulating vascular invasion, which is crucial for replacement of terminally differentiated hypertrophic chondrocytes by bone."	"The safety of regorafenib for the treatment of gastrointestinal stromal tumors. The management of gastrointestinal stromal tumors (GIST) evolved due to effective molecularly targeted therapy with imatinib and sunitinib which are used first- and second-line, respectively. However, due to the development of resistance to those drugs in the majority of patients, the need for third-line therapy arose. Regorafenib, an oral multitargeted inhibitor with activity against multiple kinases including KIT, RET, RAF1, BRAF, angiogenesis (VEGFR, TIE-2) and those involved in tumor microenvironment (PDGFR and FGFR) was introduced after the successful Phase III GRID (GIST - Regorafenib In progressive Disease) clinical trial. This study showed significant improvement in progression-free survival for patients receiving regorafenib compared to placebo (4.8 months vs 0.9 months). The treatment was reasonably well tolerated, with arterial hypertension, hand-foot syndrome, diarrhea being the most common grade ≥3 adverse events, which could be managed by dose reduction and supportive treatment. The aim of this paper is to describe, assess and advise on the safety of regorafenib as third-line therapy in GIST. Regorafenib has demonstrated clinical benefit in GIST patients after progression on prior treatment with at least imatinib/sunitinib and currently it is the approved standard third-line option in therapy of advanced GIST. The safety profile is similar to other multikinase inhibitors with anti-VEGFR activity and is manageable."	"Identification of Top-ranked Proteins within a Directional Protein Interaction Network using the PageRank Algorithm: Applications in Humans and Plants. Somatic mutation of signal transduction genes or key nodes of the cellular protein network can cause severe diseases in humans but can sometimes genetically improve plants, likely because growth is determinate in animals but indeterminate in plants. This article reviews protein networks; human protein ranking; the mitogen-activated protein kinase (MAPK) and insulin (phospho- inositide 3kinase [PI3K]/phosphatase and tensin homolog [PTEN]/protein kinase B [AKT]) signaling pathways; human diseases caused by somatic mutations to the PI3K/PTEN/ AKT pathway; use of the MAPK pathway in plant molecular breeding; and protein domain evolution. Casitas B-lineage lymphoma (CBL), PTEN, MAPK1 and PIK3CA are among PIK3CA the top-ranked proteins in directional rankings. Eight proteins (ACVR1, CDC42, RAC1, RAF1, RHOA, TGFBR1, TRAF2, and TRAF6) are ranked in the top 50 key players in both signal emission and signal reception and in interaction with many other proteins. Top-ranked proteins likely have major impacts on the network function. Such proteins are targets for drug discovery, because their mutations are implicated in various cancers and overgrowth syndromes. Appropriately managing food intake may help reduce the growth of tumors or malformation of tissues. The role of the protein kinase C/ fatty acid synthase pathway in fat deposition in PTEN/PI3K patients should be investigated. Both the MAPK and insulin signaling pathways exist in plants, and MAPK pathway engineering can improve plant tolerance to biotic and abiotic stresses such as salinity. "	"In vivo assessment of optical properties of melanocytic skin lesions and differentiation of melanoma from non-malignant lesions by high-definition optical coherence tomography. One of the most challenging problems in clinical dermatology is the early detection of melanoma. Reflectance confocal microscopy (RCM) is an added tool to dermoscopy improving considerably diagnostic accuracy. However, diagnosis strongly depends on the experience of physicians. High-definition optical coherence tomography (HD-OCT) appears to offer additional structural and cellular information on melanocytic lesions complementary to that of RCM. However, the diagnostic potential of HD-OCT seems to be not high enough for ruling out the diagnosis of melanoma if based on morphology analysis. The aim of this paper is first to quantify in vivo optical properties such as light attenuation in melanocytic lesions by HD-OCT. The second objective is to determine the best critical value of these optical properties for melanoma diagnosis. The technique of semi-log plot whereby an exponential function becomes a straight line has been implemented on HD-OCT signals coming from four successive skin layers (epidermis, upper papillary dermis, deeper papillary dermis and superficial reticular dermis). This permitted the HD-OCT in vivo measurement of skin entrance signal (SES), relative attenuation factor normalized for the skin entrance signal (µ raf1) and half value layer (z 1/2). The diagnostic accuracy of HD-OCT for melanoma detection based on the optical properties, µ raf1 , SES and z 1/2 was high (95.6, 82.2 and 88.9 %, respectively). High negative predictive values could be found for these optical properties (96.7, 89.3 and 96.3 %, respectively) compared to morphologic assessment alone (89.9 %), reducing the risk of mistreating a malignant lesion to a more acceptable level (3.3 % instead of 11.1 %). HD-OCT seems to enable the combination of in vivo morphological analysis of cellular and 3-D micro-architectural structures with in vivo analysis of optical properties of tissue scatterers in melanocytic lesions. In vivo HD-OCT analysis of optical properties permits melanoma diagnosis with higher accuracy than in vivo HD-OCT analysis of morphology alone. "	"MicroRNA-7 enhances cytotoxicity induced by gefitinib in non-small cell lung cancer via inhibiting the EGFR and IGF1R signalling pathways. Gefitinib is a tyrosine kinase inhibitor that has been used for the treatment of non-small-cell lung carcinoma (NSCLC). The ability of miR-7 to enhance gefitinib-induced cytotoxicity in NSCLC cells was evaluated in this study. We found that miR-7 significantly decreased the IC50 of gefitinib and inhibited cell growth. G0/G1 cell cycle arrest and cell apoptosis were increased after the treatment of gefitinib coupled with miR-7 transfection. In addition, levels of Raf1, IGF1R, and PI3K and phosphorylation levels of Akt and ERK were also significantly decreased. Our results suggest that miR-7 may provide a novel therapeutic target for the treatment of NSCLCs. "	"Ras-activated Dsor1 promotes Wnt signaling in Drosophila development. Wnt/Wingless (Wg) and Ras-MAPK signaling both play fundamental roles in growth and cell fate determination, and when dysregulated, can lead to tumorigenesis. Several conflicting modes of interaction between Ras-MAPK and Wnt signaling have been identified in specific cellular contexts, causing synergistic or antagonistic effects on target genes. We find novel evidence that the Drosophila homolog of the dual specificity kinases MEK1/2 (also known as MAP2K1/2), Downstream of Raf1 (Dsor1), is required for Wnt signaling. Knockdown of Dsor1 results in loss of Wg target gene expression, as well as reductions in stabilized Armadillo (Arm; Drosophila β-catenin). We identify a close physical interaction between Dsor1 and Arm, and find that catalytically inactive Dsor1 causes a reduction in active Arm. These results suggest that Dsor1 normally counteracts the Axin-mediated destruction of Arm. We find that Ras-Dsor1 activity is independent of upstream activation by EGFR, and instead it appears to be activated by the insulin-like growth factor receptor to promote Wg signaling. Taken together, our results suggest that there is a new crosstalk pathway between insulin and Wg signaling that is mediated by Dsor1. "	"miR-195 is a key regulator of Raf1 in thyroid cancer. Proto-oncogene Raf1 serves as a part of the mitogen-activated protein kinases/extracellular signal-regulated kinase signal transduction pathway and regulates cell migration, apoptosis, and differentiation. Although a large number of studies have shown that Raf1 is overexpressed in various kinds of cancer, little is known about the association between Raf1 and miRNAs in thyroid carcinoma. This study proves that Raf1 is overexpressed in thyroid cancer, which has been confirmed by many other studies. Besides, we identify that Raf1 is a direct target of miR-15a/b, miR-16, and miR-195 by dual luciferase reporter assay. We also find that the expression of miR-195 is downregulated in 50 pairs of thyroid tumor tissues compared to the adjacent nontumor tissues, while there is no difference in the expression of miR-15a/b and miR-16 between the groups. Furthermore, exogenous overexpression of miR-195 significantly inhibits the protein expression of Raf1 and blocks the thyroid cancer cell proliferation. Our findings delineate a novel mechanism for the regulation of Raf1 in thyroid cancer, which may help to provide a new direction for the treatment of thyroid cancer. "	"Comprehensive genomic profiling of extrahepatic cholangiocarcinoma reveals a long tail of therapeutic targets. We queried whether extrahepatic cholangiocarcinoma featured clinically relevant genomic alterations that could lead to targeted therapy. Comprehensive genomic profiling by hybridisation capture of up to 315 genes was performed on 99 clinically advanced extrahepatic cholangiocarcinoma. There were 60 male and 39 female patients with a median age of 60.5 years. A total of 400 alterations were identified (mean 4.0; range 0-13) in 84 genes. Eighty-two (83%) of extrahepatic cholangiocarcinoma patients featured at least one clinically relevant genomic alterations including KRAS (43%); ERBB2 (9%), PTEN (7%); ATM and NF1 (6%) and CCND1, FBXW7, GNAS, MDM2 and NRAS (all at 5%). BRAF, BRCA2, CDK4, CDK6, FGFR1, FGFR3, PTCH1, RAF1 and STK11 were each altered in a single patient. No IDH1/2 mutations or FGFR2 gene fusions were identified. Comprehensive genomic profiling of extrahepatic cholangiocarcinoma differs significantly from intrahepatic cholangiocarcinoma and pancreatic adenocarcinoma, and reveals diverse opportunities for the use of targeted therapies."	"Mutation in NRAS in familial Noonan syndrome--case report and review of the literature. Noonan syndrome (NS), a heterogeneous developmental disorder associated with variable clinical expression including short stature, congenital heart defect, unusual pectus deformity and typical facial features, is caused by activating mutations in genes involved in the RAS-MAPK signaling pathway. Here, we present a clinical and molecular characterization of a small family with Noonan syndrome. Comprehensive mutation analysis of NF1, PTPN11, SOS1, CBL, BRAF, RAF1, SHOC2, MAP2K2, MAP2K1, SPRED1, NRAS, HRAS and KRAS was performed using targeted next-generation sequencing. The result revealed a recurrent mutation in NRAS, c.179G &gt; A (p.G60E), in the index patient. This mutation was inherited from the index patient's father, who also showed signs of NS. We describe clinical features in this family and review the literature for genotype-phenotype correlations for NS patients with mutations in NRAS. Neither of affected individuals in this family presented with juvenile myelomonocytic leukemia (JMML), which together with previously published results suggest that the risk for NS individuals with a germline NRAS mutation developing JMML is not different from the proportion seen in other NS cases. Interestingly, 50% of NS individuals with an NRAS mutation (including our family) present with lentigines and/or Café-au-lait spots. This demonstrates a predisposition to hyperpigmented lesions in NRAS-positive NS individuals. In addition, the affected father in our family presented with a hearing deficit since birth, which together with lentigines are two characteristics of NS with multiple lentigines (previously LEOPARD syndrome), supporting the difficulties in diagnosing individuals with RASopathies correctly. The clinical and genetic heterogeneity observed in RASopathies is a challenge for genetic testing. However, next-generation sequencing technology, which allows screening of a large number of genes simultaneously, will facilitate an early and accurate diagnosis of patients with RASopathies."	"A Novel Mutation on RAF1 in Association with Fetal Findings Suggestive of Noonan Syndrome. Noonan syndrome is a multisystem genetic disorder caused by genes encoding proteins involved in the RAS-MAPK pathway. Affected fetuses have variable presentations ranging from the absence of prenatal findings to increased nuchal fold, cystic hygromas, pleural effusions, cardiac malformations, or skin edema. We describe a male fetus who had features consistent with Noonan syndrome at the time of fetal anatomic survey, including hydrops and a possible cardiac defect. Subsequent scan revealed persistent bilateral pleural effusions (with predominance of lymphocytes). After bilateral thoracoamniotic shunt placement, the fetus did well and delivered at term. Prenatal testing revealed an S650F missense mutation in the RAF1 gene, which had not previously been associated with Noonan syndrome. "	"Inhibition of crosstalk between Bcr-Abl and PKC signaling by PEITC, augments imatinib sensitivity in chronic myelogenous leukemia cells. Chronic myelogenous leukemia (CML), a clonal hyperproliferation of immature blood cells accounts for 20% of adult leukemia cases. Reciprocal translocation of chromosomes 9 and 22, results into Bcr-Abl fusion and is responsible for expression of a tyrosine kinase protein p210(bcr/abl), which mediates several survival pathways and confer therapeutic resistance. Protein kinase C (PKC), a family of serine threonine kinases play an important role in the process of leukemogenesis. A crosstalk between Bcr-Abl and PKC signaling has been documented. Therefore, targeting p210(bcr/abl) and its associated signaling proteins using non-toxic natural means will be an effective strategy for antileukemic therapy. Aim of the present study is to investigate whether PEITC, a natural isothiocyanate in combination with imatinib mesylate (IM), a tyrosine kinase inhibitor could increase the therapeutic efficacy of IM by modulating the expression of p210(bcr/abl). Enhanced cytotoxic efficacy of IM by PEITC was further validated using another myelogenous leukemia cell line, KU812. It was observed that PEITC in combination with IM efficiently downregulated the expression of p210(bcr/abl) in chronic myelogenous leukemia cell lines (K-562). PEITC inhibited the expressions of PKCα, PKCβII and PKCζ (both phosphorylated and total form). Expression of Raf1 and ERK1/2, two important target proteins in PKC signaling cascade was diminished. The result indicated that PEITC ultimately reduced expression of Raf1 and ERK1/2 through Bcr-Abl and PKC inhibition. This result was further confirmed by UCN-01, a selective PKC inhibitor and IM; indicating an association between p210(bcr/abl) and PKC with Raf1 and ERK1/2. PEITC thus may have enormous potential in synergistic therapy of leukemia by enhancing drug efficacy. "	"MicroRNA-7 as a tumor suppressor and novel therapeutic for adrenocortical carcinoma. Adrenocortical carcinoma (ACC) has a poor prognosis with significant unmet clinical need due to late diagnosis, high rates of recurrence/metastasis and poor response to conventional treatment. Replacing tumor suppressor microRNAs (miRNAs) offer a novel therapy, however systemic delivery remains challenging. A number of miRNAs have been described to be under-expressed in ACC however it is not known if they form a part of ACC pathogenesis. Here we report that microRNA-7-5p (miR-7) reduces cell proliferation in vitro and induces G1 cell cycle arrest. Systemic miR-7 administration in a targeted, clinically safe delivery vesicle (EGFREDVTM nanocells) reduces ACC xenograft growth originating from both ACC cell lines and primary ACC cells. Mechanistically, miR-7 targets Raf-1 proto-oncogene serine/threonine kinase (RAF1) and mechanistic target of rapamycin (MTOR). Additionally, miR-7 therapy in vivo leads to inhibition of cyclin dependent kinase 1 (CDK1). In patient ACC samples, CDK1 is overexpressed and miR-7 expression inversely related. In summary, miR-7 inhibits multiple oncogenic pathways and reduces ACC growth when systemically delivered using EDVTM nanoparticles. This data is the first study in ACC investigating the possibility of miRNAs replacement as a novel therapy. "	"Effect of Chaihushugan San on expression of the Raf/mitogen-activated protein kinase/extracellular signal-regulated kinase pathway in the hippocampi of perimenopausal rats induced by immobilization stress. We wished to study the impact of Chaihushugan San (CSS) on the behavior of perimenopausal rats with liver-Qi stagnation (LQS) and to investigate the effect of CSS on signal transduction of the Raf/mitogen-activated protein kinase (MEK)/ extracellular signal-regulated kinase (ERK) cascade in the hippocampi of rats induced by immobilization. Twenty 52-week-old female rats were divided into two groups by the random number table method: model control group (MCG) and CSS group (CSSG), with 10 rats in each group. Ten-week-old female rats were used as the normal control group (NCG). CSS effects were assessed using rats exposed to immobilization stress by measuring body weight and sucrose consumption, serum hormone levels, and observing performance in the open field test (OFT). Molecular mechanisms were examined by measuring the effect of CSS on expression of Raf1, MEK1/2 and ERK1/2 mRNA in hippocampi using quantitative real-time polymerase chain reaction and by measuring levels of these proteins and related phospho-proteins using Western blotting. Perimenopausal rats with LQS had decreased locomotor activity; reduced sucrose consumption; and increased serum levels of corticotropin releasing hormone (CRH) and corticosterone (CORT). Activation of hippocampal Raf/MEK/ERK cascade was suppressed significantly in the MCG, and activation was increased after 21 days of CSS treatment. CSS has significant effects upon relief of the symptoms of LQS in immobilization-induced rats. The mechanism underlying this action might (at least in part) be mediated by reversal of disruption of the Raf/MEK/ERK pathway."	"Loss of Gsα impairs liver regeneration through a defect in the crosstalk between cAMP and growth factor signaling. The stimulatory G protein α subunit (Gsα) activates the cAMP-dependent pathway by stimulating the production of cAMP and participates in diverse cell processes. Aberrant expression of Gsα results in various pathophysiological disorders, including tumorigenesis, but little is known about its role in liver regeneration. We generated a hepatocyte-specific Gsα gene knockout mouse to demonstrate the essential role of Gsα in liver regeneration using a mouse model with 70% partial hepatectomy (PH) or an intraperitoneal injection of carbon tetrachloride (CCl4). Gsα inactivation dramatically impaired liver regeneration and blocked proliferating hepatocytes in G1/S transition due to the simultaneous depression of cyclin-dependent kinase 2 (CDK2) and cyclin E1. Loss of Gsα led to a fundamental alteration in gene profiles. Among the altered signaling cascades, the MAPK/Erk pathway, which is downstream of growth factor signaling, was disrupted secondary to a defect in phosphorylated Raf1 (pRaf1), resulting in a deficiency in phosphorylated CREB (pCREB) and CDK2 ablation. The lack of pRaf1 also resulted in a failure to phosphorylate retinoblastoma, which releases and activates E2F1, and a decrease in cyclin E1. Although these factors could be phosphorylated through both Gsα and growth factor signaling, the unique function of Raf1 in the growth factor cascade collapsed in response to the lack of Gsα. The growth factor signaling pathway that promotes hepatocyte proliferation is dependent on Gsα signaling. Loss of Gsα leads to a breakdown of the crosstalk between cAMP and growth factor signaling and dramatically impairs liver regeneration."	"Cardiomyopathies in Noonan syndrome and the other RASopathies. Noonan syndrome and related disorders (Noonan syndrome with multiple lentigines, Costello syndrome, cardiofaciocutaneous syndrome, Noonan syndrome with loose anagen hair, and other related traits) are autosomal dominant traits. Mutations causing these disorders alter proteins relevant for signaling through RAS. Thus, these traits are now collectively called the RASopathies. While the RASopathies have pleiomorphic features, this review will focus on the hypertrophic cardiomyopathy observed in varying percentages of all of these traits. In addition, inherited abnormalities in one pathway gene, RAF1, cause pediatric-onset dilated cardiomyopathy. The pathogeneses for the RASopathy-associated cardiomyopathies are being elucidated, principally using animal models, leading to genotype-specific insights into how signal transduction is perturbed. Based on those findings, small molecule therapies seem possible for RASopathy-associated cardiomyopathies."	"Organ-specific efficacy of HSP90 inhibitor in multiple-organ metastasis model of chemorefractory small cell lung cancer. Small-cell lung cancer (SCLC) accounts for nearly 15% of lung cancer cases and exhibits aggressive clinical behavior characterized by rapid growth and metastatic spread to multiple organs. About 70% of patients with SCLC present with extensive disease and distant metastases at diagnosis. HSP90 is a 90-kDa molecular chaperone whose association is required for the stability and function of its numerous &quot;client proteins.&quot; Here, we assessed the therapeutic potential of the HSP90 inhibitor 17-DMAG in SCLC. Notably, 17-DMAG hindered the viability of human SCLC cell lines-regardless of their chemosensitivity-via the decreased expression of client proteins, including the proto-oncogene c-Raf (also known as RAF1). In an in vivo imaging model of SCLC multiple-organ metastasis with the human SCLC cell line SBC-5, treatment with 17-DMAG remarkably inhibited the formation of metastatic sites in the liver, but was ineffective in hindering the progression of bone lesions. The latter was likely the result of activation of osteoclasts. IGF-1, which is supposed to be rich in bone environment, preserved c-Raf expression and maintained viability of SBC-5 cells treated with 17-DMAG. Furthermore, the combined use of a bisphosphonate with 17-DMAG significantly attenuated the progression of metastases in both the liver and the bone. These findings suggest that therapeutic effects of HSP90 inhibitors may be organ-specific and should be carefully monitored in SCLC clinical trials."	"Alpha2-Adrenergic-Agonist Brimonidine Stimulates Negative Feedback and Attenuates Injury-Induced Phospho-ERK and Dedifferentiation of Chicken Müller Cells. Retinal injury induces Müller cell dedifferentiation by activating extracellular signal-regulated kinase (ERK) signaling. Stimulation of α2-adrenergic receptors protects against injury but also activates ERK in Müller cells. The purpose of this work was to study the effect of α2-adrenergic signaling on injury-induced ERK and Müller cell dedifferentiation. We tested the hypothesis that α2-stimulation triggers negative feedback regulation of the injury-induced ERK pathway that attenuates Müller cell dedifferentiation. Chicken retina injured by N-methyl-D-aspartate and cultured primary Müller cells were stimulated by the α2-adrenergic agonist brimonidine. Immunostaining, quantitative RT-PCR, and Western blot techniques in combination with receptor blockers were used for analysis of the cellular responses. Alpha2-adrenergic receptor stimulation attenuated injury-induced ERK activation and dedifferentiation of Müller cells as seen by decreased phospho-ERK, expression of transitin, and retinal progenitor cell genes. The attenuation was concomitant with a synergistic upregulation of several negative ERK-signal feedback regulators including ERK-phosphatases, Raf1-, and growth factor receptor-binding proteins. The results were also seen in cultures of primary Müller cells. Alpha2-adrenergic signaling on Müller cells elicits an intracellular attenuation of the injury response that comprises negative ERK-signaling feedback leading to attenuated Müller cell dedifferentiation. The implications of this study are that adrenergic stress signals may directly modulate glial function in retina and that α2-adrenergic receptor pharmacology may be used to control glial injury response."	"A Neoglycoconjugate Containing the Human Milk Sugar LNFPIII Drives Anti-Inflammatory Activation of Antigen Presenting Cells in a CD14 Dependent Pathway. The milk pentasaccharide LNFPIII has therapeutic action for metabolic and autoimmune diseases and prolongs transplant survival in mice when presented as a neoglycoconjugate. Within LNFPIII is the Lewisx trisaccharide, expressed by many helminth parasites. In humans, LNFPIII is found in human milk and also known as stage-specific embryonic antigen-1. LNFPIII-NGC drives alternative activation of macrophages and dendritic cells via NFκB activation in a TLR4 dependent mechanism. However, the connection between LNFPIII-NGC activation of APCs, TLR4 signaling and subsequent MAP kinase signaling leading to anti-inflammatory activation of APCs remains unknown. In this study we determined that the innate receptor CD14 was essential for LNFPIII-NGC induction of both ERK and NFkB activation in APCs. Induction of ERK activation by LNFPIII-NGC was completely dependent on CD14/TLR4-Ras-Raf1/TPL2-MEK axis in bone marrow derived dendritic cells (BMDCs). In addition, LNFPIII-NGC preferentially induced the production of Th2 &quot;favoring&quot; chemokines CCL22 and matrix metalloprotease protein-9 in a CD14 dependent manner in BMDCs. In contrast, LNFPIII-NGC induces significantly lower levels of Th1 &quot;favoring&quot; chemokines, MIP1α, MIP1β and MIP-2 compared to levels in LPS stimulated cells. Interestingly, NGC of the identical human milk sugar LNnT, minus the alpha 1-3 linked fucose, failed to activate APCs via TLR4/MD2/CD14 receptor complex, suggesting that the alpha 1-3 linked fucose in LNFPIII and not on LNnT, is required for this process. Using specific chemical inhibitors of the MAPK pathway, we found that LNFPIII-NGC induction of CCL22, MMP9 and IL-10 production was dependent on ERK activation. Over all, this study suggests that LNFPIII-NGC utilizes CD14/TLR4-MAPK (ERK) axis in modulating APC activation to produce anti-inflammatory chemokines and cytokines in a manner distinct from that seen for the pro-inflammatory PAMP LPS. These pathways may explain the in vivo therapeutic effect of LNFPIII-NGC treatment for inflammation based diseases. "	"Transcriptional and post-translational modifications of B-Raf in quinol-thioether induced tuberous sclerosis renal cell carcinoma. Increased activity of B-Raf has been identified in approximately 7% of human cancers. Treatment of Eker rats (Tsc-2(EK/+) ), bearing a mutation in one allele of the tuberous sclerosis-2 (Tsc-2) gene, with the nephrocarcinogen 2,3,5-tris-(glutathion-S-yl) hydroquinone (TGHQ) results in loss of the wild-type allele of Tsc-2 in renal preneoplastic lesions and tumors. These tumors have increased protein expression of B-Raf, C-Raf (Raf-1), and increased expression and activity of ERK kinase. Similar changes are observed in Raf kinases following TGHQ-mediated transformation of primary renal epithelial cells derived from Tsc-2(EK/+) rats (QTRRE cells), cells that are also null for tuberin. Herein, we utilized LC-MS/MS to identify constitutive phosphorylation of S345 and S483 in both 100- and 95-kDa forms of B-Raf in QTRRE cells. Using microRotofor liquid-phase isoelectric focusing, we identified four fractions of B-Raf that contain different post-translational modification profiles in QTRRE cells. Amplification of the kinase domain of B-Raf from QTRRE cells, outer-stripe of the outer medulla of 8-month TGHQ- or vehicle-treated Tsc-2(+/+) and Tsc-2(EK/+) rats, as well as tumors excised from 8-month TGHQ-treated Tsc-2(EK/+) rats revealed three splice variants of B-Raf within the kinase domain. These splice variants differed by approximately 340, 544, and 600 bp; confirmed by sequencing. No point mutations within the kinase domain of B-Raf were identified. In addition, B-Raf/Raf-1/14-3-3 complex formation in the QTRRE cells was decreased by sorafenib, with concomitant selective decreases in p-ERK levels. Transcriptional and post-translational characterization of critical kinases, such as B-Raf, may contribute to the progression of tuberous sclerosis RCC. (246/250) © 2015 Wiley Periodicals, Inc."	"Copy Number Changes Are Associated with Response to Treatment with Carboplatin, Paclitaxel, and Sorafenib in Melanoma. Copy number alterations have been shown to be involved in melanoma pathogenesis. The randomized phase III clinical trial E2603: carboplatin, paclitaxel, ± sorafenib (CP vs. CPS) offers a large collection of tumor samples to evaluate association of somatic mutations, genomic alterations, and clinical outcomes, prior to current FDA-approved therapies. Copy number and mutational analysis on 119 pretreatment samples was performed. CPS therapy was associated with improved progression-free survival (PFS) compared with CP in patients with tumors with RAF1 (cRAF) gene copy gains (HR, 0.372; P = 0.025) or CCND1 gene copy gains (HR, 0.45; P = 0.035). CPS therapy was associated with improved overall survival (OS) compared with CP in patients with tumors with KRAS gene copy gains (HR, 0.25; P = 0.035). BRAF gene copy gain and MET amplification were more common in samples with V600K versus V600E mutations (P &lt; 0.001), which was validated in The Cancer Genome Atlas (TCGA) dataset. We observed improved treatment response with CPS in patients with melanoma whose tumors have RAF1 (cRAF), KRAS, or CCND1 amplification, all of which can be attributed to sorafenib targeting CRAF. These genomic alterations should be incorporated in future studies for evaluation as biomarkers."	"The intracerebroventricular injection of rimonabant inhibits systemic lipopolysaccharide-induced lung inflammation. We investigated the role of intracerebroventricular (ICV) injection of rimonabant (500ng), a CB1 antagonist, on lipopolysaccharide ((LPS) 5mg/kg)-induced pulmonary inflammation in rats in an isolated perfused lung model. There were decreases in pulmonary capillary pressure (Ppc) and increases in the ((Wet-Dry)/Dry lung weight)/(Ppc) ratio in the ICV-vehicle/LPS group at 4h. There were decreases in TLR4 pathway markers, such as interleukin receptor-associated kinase-1, IκBα, Raf1 and phospho-SFK (Tyr416) at 30min and at 4h increases in IL-6, vascular cell adhesion molecule-1 and myeloperoxidase in lung homogenate. Intracerebroventricular rimonabant attenuated these LPS-induced responses, indicating that ICV rimonabant modulates LPS-initiated pulmonary inflammation. "	"Co-occurrence of hypertrophic cardiomyopathy and myeloproliferative disorder in a neonate with Noonan syndrome carrying Thr73Ile mutation in PTPN11. Most cases of Noonan syndrome (NS) result from mutations in one of the RAS-MAPK signaling genes, including PTPN11, SOS1, KRAS, NRAS, RAF1, BRAF, SHOC2, MEK1 (MAP2K1), and CBL. Cardiovascular diseases of varying severity, such as pulmonary stenosis and hypertrophic cardiomyopathy (HCM), are common in NS patients. RAF1 mutations are most frequent in NS with HCM, while PTPN11 mutations are also well known. Thr73Ile is a gain-of-function mutation of PTPN11, which has been highly associated with juvenile myelomonocytic leukemia and NS/myeloproliferative disease (MPD), but has not previously been reported in HCM. Here, we report a Japanese female infant with NS carrying the PTPN11 T73I mutation with NS/MPD, complete atrio-ventricular septal defect, and rapidly progressive HCM. No other HCM-related mutations were detected in PTPN11, RAF1, KRAS, BRAF, and SHOC2. This patient provides additional information regarding the genotype-phenotype correlation for PTPN11 T73I mutation in NS."	"Phase II Trial of Sorafenib in Patients with Chemotherapy Refractory Metastatic Esophageal and Gastroesophageal (GE) Junction Cancer. Vascular endothelial growth factor receptor (VEGFR2) directed therapies result in a modest survival benefit for patients with advanced esophageal and gastroesophageal (GE) junction cancer. Platelet-derived growth factor receptor (PDGFR) may contribute to escape from VEGFR2 inhibition. We evaluated the efficacy of sorafenib, a broad spectrum tyrosine kinase inhibitor targeting VEGFR2 and PDGFR as well as RET and RAF1, in patients with metastatic chemotherapy refractory esophageal and GE junction cancer. This phase II trial of sorafenib 400 mg twice daily enrolled chemotherapy refractory patients with metastatic esophageal and GE junction cancer with primary endpoint of progression-free survival (PFS) rate at two months. Secondary endpoints included overall survival, objective response rate and toxicity. Among 34 patients, 8 week Kaplan-Meier estimated PFS was 61% (90%CI 45 to 73%). Median PFS is 3.6 months (95% CI 1.8 to 3.9 months), with median overall survival OS 9.7 months (95% CI 5.9 to 11.6 months). Grade 3 toxicities were uncommon and included hand foot skin reaction, rash, dehydration and fatigue. One patient (3%) with ongoing complete response and remains on trial for over 5 years. Whole exome sequencing of this tumor revealed mutations in many cancer-associated genes including ARID1A, PIK3CA, and TP53, and focal amplifications of HMGA2 and MET. Sorafenib therapy results in disease stabilization and encouraging PFS in patients with refractory esophageal and GE junction cancer. ClinicalTrials.gov NCT00917462."	"A Novel Noonan Syndrome RAF1 Mutation: Lethal Course in a Preterm Infant. Noonan syndrome is a relatively common and heterogeneous genetic disorder, associated with congenital heart defect in about 50% of the cases. If the defect is not severe, life expectancy is normal. We report a case of Noonan syndrome in a preterm infant with hypertrophic cardiomyopathy and lethal outcome associated to acute respiratory distress syndrome caused by Adenovirus pneumonia. A novel mutation in the RAF1 gene was identified: c.782C&gt;G (p.Pro261Arg) in heterozygosity, not described previously in the literature. Consequently, the common clinical course in this mutation and its respective contribution to the early fatal outcome is unknown. No conclusion can be established regarding genotype/phenotype correlation. "	"Epigenetic Role of Histone 3 Lysine Methyltransferase and Demethylase in Regulating Apoptosis Predicting the Recurrence of Atypical Meningioma. Alteration of apoptosis is related with progression and recurrence of atypical meningiomas (AMs). However, no comprehensive study has been conducted regarding histone modification regulating apoptosis in AMs. This study aimed to determine the prognostic values of certain apoptosis-associated factors, and examine the role of histone modification on apoptosis in AMs. The medical records of 67 patients with AMs, as diagnosed during recent 13 yr, were reviewed retrospectively. Immunohistochemical staining was performed on archived paraffin-embedded tissues for pro-apoptotic factors (CASP3, IGFBP, TRAIL-R1, BAX, and XAF1), anti-apoptotic factors (survivin, ERK, RAF1, MDM2, and BCL2), and the histone modifying enzymes (MLL2, RIZ, EZH1, NSD2, KDM5c, JMJD2a, UTX, and JMJD5). Twenty-six (38.8%) patients recurred during the follow-up period (mean duration 47.7 months). In terms of time-to-recurrence (TTR), overexpression of CASP3, TRAIL-R1, and BAX had a longer TTR than low expression, and overexpression of survivin, MDM2, and BCL2 had a shorter TTR than low expression (P&lt;0.05). Additionally, overexpression of MLL2, UTX, and JMJ5 had shorter TTRs than low expression, and overexpression of KDM5c had a longer TTR than low expression. However, in the multi-variate analysis of predicting factors for recurrence, low expression of CASP3 (P&lt;0.001), and BAX (P&lt;0.001), and overexpression of survivin (P=0.007), and MDM2 (P=0.037) were associated with recurrence independently, but any enzymes modifying histone were not associated with recurrence. Conclusively, this study suggests certain apoptosis-associated factors should be associated with recurrence of AMs, which may be regulated epigenetically by histone modifying enzymes. "	"Structure and mechanism of the Rubisco-assembly chaperone Raf1. Biogenesis of the photosynthetic enzyme Rubisco, a complex of eight large (RbcL) and eight small (RbcS) subunits, requires assembly chaperones. Here we analyzed the role of Rubisco accumulation factor1 (Raf1), a dimer of ∼40-kDa subunits. We find that Raf1 from Synechococcus elongatus acts downstream of chaperonin-assisted RbcL folding by stabilizing RbcL antiparallel dimers for assembly into RbcL8 complexes with four Raf1 dimers bound. Raf1 displacement by RbcS results in holoenzyme formation. Crystal structures show that Raf1 from Arabidopsis thaliana consists of a β-sheet dimerization domain and a flexibly linked α-helical domain. Chemical cross-linking and EM reconstruction indicate that the β-domains bind along the equator of each RbcL2 unit, and the α-helical domains embrace the top and bottom edges of RbcL2. Raf1 fulfills a role similar to that of the assembly chaperone RbcX, thus suggesting that functionally redundant factors ensure efficient Rubisco biogenesis. "	"Comprehensive Genomic Profiling of Carcinoma of Unknown Primary Site: New Routes to Targeted Therapies. For carcinoma of unknown primary site (CUP), determining the primary tumor site may be uninformative and often does not improve outcome. To discover opportunities for targeted therapies in patients with CUP not currently searched for in routine practice. Comprehensive genomic profiling on 200 CUP formalin-fixed paraffin-embedded specimens (mean, 756× coverage) using the hybrid-capture-based FoundationOne assay at academic and community oncology clinics. Presence of targetable genomic alterations (GAs) in CUP and responses to targeted therapies. There were 125 adenocarcinomas of unknown primary site (ACUPs) and 75 carcinomas of unknown primary site without features of adenocarcinoma (non-ACUPs). At least 1 GA was found in 192 (96%) of CUP specimens, with a mean (SD) of 4.2 (2.8) GAs per tumor. The most frequent GAs were in TP53 (110 [55%]), KRAS (40 [20%]), CDKN2A (37 [19%]), MYC (23 [12%]), ARID1A (21 [11%]), MCL1 (19 [10%]), PIK3CA (17 [9%]), ERBB2 (16 [8%]), PTEN (14 [7%]), EGFR (12 [6%]), SMAD4 (13 [7%]), STK11 (13 [7%]), SMARCA4 (12 [6%]), RB1 (12 [6%]), RICTOR (12 [6%]), MLL2 (12 [6%]), BRAF (11 [6%]), and BRCA2 (11 [6%]). One or more potentially targetable GAs were identified in 169 of 200 (85%) CUP specimens. Mutations or amplifications of ERBB2 were more frequent in ACUPs (13 [10%]) than in non-ACUPs (3 [4%]). Alterations of EGFR (10 [8%] vs 2 [3%]) and BRAF (8 [6%] vs 3 [4%]) were more common in ACUPs than in non-ACUPs. Strikingly, clinically relevant alterations in the receptor tyrosine kinase (RTK)/Ras signaling pathway including alterations in ALK, ARAF, BRAF, EGFR, FGFR1, FGFR2, KIT, KRAS, MAP2K1, MET, NF1, NF2, NRAS, RAF1, RET, and ROS1 were found in 90 (72%) ACUPs but in only 29 (39%) non-ACUPs (P &lt; .001). Almost all CUP samples harbored at least 1 clinically relevant GA with potential to influence and personalize therapy. The ACUP tumors were more frequently driven by GAs in the highly druggable RTK/Ras/mitogen-activated protein kinase (MAPK) signaling pathway than the non-ACUP tumors. Comprehensive genomic profiling can identify novel treatment paradigms to address the limited options and poor prognoses of patients with CUP."	"The mechanism and function of mitogen-activated protein kinase activation by ARF1. Mitogen-activated protein kinases (MAPK) can be activated by a number of biochemical pathways through distinct signaling molecules. We have recently revealed a novel function for the Ras-like small GTPase ADP-ribosylation factor 1 (ARF1) in mediating the activation of Raf1-MEK-ERK1/2 pathway by G protein-coupled receptors [Dong C, Li C and Wu G (2011) J Biol Chem 286, 43,361-43,369]. Here, we have further defined the underlying mechanism and the possible function of ARF1-mediated MAPK pathway. We demonstrated that the blockage of ARF1 activation and the disruption of ARF1 localization to the Golgi by mutating Thr48, a highly conserved residue involved in the exchange of GDP for GTP, and the myristoylation site Gly2 abolished ARF1's ability to activate ERK1/2. In addition, treatment with Golgi structure disrupting agents markedly attenuated ARF1-mediated ERK1/2 activation. Furthermore, ARF1 significantly promoted cell proliferation. More interestingly, ARF1 activated 90kDa ribosomal S6 kinase 1 (RSK1) without influencing Elk-1 activation and ERK2 translocation to the nuclei. These data demonstrate that, once activated, ARF1 activates the MAPK pathway likely using the Golgi as a main platform, which in turn activates the cytoplasmic RSK1, leading to cell proliferation. "	"Very-long-chain fatty acid sphingomyelin in nuclear lipid microdomains of hepatocytes and hepatoma cells: can the exchange from C24:0 to C16:0 affect signal proteins and vitamin D receptor? Lipid microdomains localized in the inner nuclear membrane are considered platforms for active chromatin anchoring. Stimuli such as surgery, vitamin D, or glucocorticoid drugs influence their gene expression, DNA duplication, and RNA synthesis. In this study, we used ultrafast liquid chromatography-tandem mass spectrometry to identify sphingomyelin (SM) species coupled with immunoblot analysis to comprehensively map differences in nuclear lipid microdomains (NLMs) purified from hepatocytes and hepatoma cells. We showed that NLMs lost saturated very-long-chain fatty acid (FA; C24:0) SM in cancer cells and became enriched in long-chain FA (C16:0) SM. We also found that signaling proteins, such as STAT3, Raf1, and PKCζ, were increased and vitamin D receptor was reduced in cancer cells. Because recent researches showed a shift in sphingolipid composition from C24:0 to C16:0 in relation to cell life, we performed a comparative analysis of properties among C16:0 SM, C24:0 SM, and cholesterol. Our results led us to hypothesize that the enrichment of C16:0 SM could determine enhanced dynamic properties of NLMs in cancer cells with an increased shuttling of protein signaling molecules. "	"Tyrosine Kinase Inhibitors as Potential Therapeutic Agents in the Treatment of Granulosa Cell Tumors of the Ovary. Granulosa cell tumors of the ovary (GCTs) represent a specific subset of malignant ovarian tumors, of which there are 2 distinct subtypes, the juvenile and the adult form. Aside from surgery, no reliable therapeutic options currently exist for patients with GCT. This study sought to investigate the potential role of small molecule tyrosine kinase inhibitors (TKIs) as novel therapeutics in the clinical management of GCT. Using TKI with distinct but overlapping multitargeted specificities, cellular proliferation, viability, and apoptosis were evaluated in 2 human GCT-derived cell lines, COV434 and KGN. Sunitinib, which targets the imatinib-inhibited tyrosine kinases of VEGFR, KIT, PDGFR, and FLT-3, was without effect in COV434 and KGN cell lines. Sorafenib, which has a high affinity for RAF1 and BRAF, dose dependently inhibited cellular proliferation and viability in both cell lines at concentrations equivalent to that seen in other systems. A RAF1 kinase inhibitor was without effect, suggesting that sorafenib is acting via inhibition of BRAF, or that aberrant signaling originates upstream of BRAF in the MAPK pathway. In the presence of a selective Src family inhibitor (SU6656), cell proliferation and cell viability responses dissociated; that is, although SU6656 dose dependently inhibited cell viability, it had limited effect on proliferation and apoptosis. These findings implicate BRAF in the activated signaling responsible for the growth and viability of GCT and suggest that TKI already in clinical use may be a therapeutic option in the treatment of GCT."	"Activation of RAF1 (c-RAF) by the Marine Alkaloid Lasonolide A Induces Rapid Premature Chromosome Condensation. Lasonolide A (LSA), a potent antitumor polyketide from the marine sponge, Forcepia sp., induces rapid and reversible protein hyperphosphorylation and premature chromosome condensation (PCC) at nanomolar concentrations independent of cyclin-dependent kinases. To identify cellular targets of LSA, we screened 2951 shRNAs targeting a pool of human kinases and phosphatases (1140 RefSeqs) to identify genes that modulate PCC in response to LSA. This led to the identification of RAF1 (C-RAF) as a mediator of LSA-induced PCC, as shRNAs against RAF1 conferred resistance to LSA. We found that LSA induced RAF1 phosphorylation on Serine 338 within minutes in human colorectal carcinoma HCT-116, ovarian carcinoma OVCAR-8, and Burkitt's lymphoma CA46 cell lines. RAF1 depletion by siRNAs attenuated LSA-induced PCC in HCT-116 and OVCAR-8 cells. Furthermore, mouse embryonic fibroblasts (MEF) with homozygous deletion in Raf1, but not deletion in the related kinase Braf, were resistant to LSA-induced PCC. Complementation of Raf1-/- MEFs with wild-type human RAF1, but not with kinase-dead RAF1 mutant, restored LSA-induced PCC. Finally, the Raf inhibitor sorafenib, but not the MEK inhibitor AZD6244, effectively suppressed LSA-induced PCC. Our findings implicate a previously unknown, MAPK-independent role of RAF1 in chromatin condensation and potent activation of this pathway by LSA. "	"Unraveling the molecular architecture of a G protein-coupled receptor/β-arrestin/Erk module complex. β-arrestins serve as signaling scaffolds downstream of G protein-coupled receptors, and thus play a crucial role in a plethora of cellular processes. Although it is largely accepted that the ability of β-arrestins to interact simultaneously with many protein partners is key in G protein-independent signaling of GPCRs, only the precise knowledge of these multimeric arrangements will allow a full understanding of the dynamics of these interactions and their functional consequences. However, current experimental procedures for the determination of the three-dimensional structures of protein-protein complexes are not well adapted to analyze these short-lived, multi-component assemblies. We propose a model of the receptor/β-arrestin/Erk1 signaling module, which is consistent with most of the available experimental data. Moreover, for the β-arrestin/Raf1 and the β-arrestin/ERK interactions, we have used the model to design interfering peptides and shown that they compete with both partners, hereby demonstrating the validity of the predicted interaction regions. "	"Integrative clinical genomics of advanced prostate cancer. Toward development of a precision medicine framework for metastatic, castration-resistant prostate cancer (mCRPC), we established a multi-institutional clinical sequencing infrastructure to conduct prospective whole-exome and transcriptome sequencing of bone or soft tissue tumor biopsies from a cohort of 150 mCRPC affected individuals. Aberrations of AR, ETS genes, TP53, and PTEN were frequent (40%-60% of cases), with TP53 and AR alterations enriched in mCRPC compared to primary prostate cancer. We identified new genomic alterations in PIK3CA/B, R-spondin, BRAF/RAF1, APC, β-catenin, and ZBTB16/PLZF. Moreover, aberrations of BRCA2, BRCA1, and ATM were observed at substantially higher frequencies (19.3% overall) compared to those in primary prostate cancers. 89% of affected individuals harbored a clinically actionable aberration, including 62.7% with aberrations in AR, 65% in other cancer-related genes, and 8% with actionable pathogenic germline alterations. This cohort study provides clinically actionable information that could impact treatment decisions for these affected individuals. "	"Tyrosine phosphorylation of RAS by ABL allosterically enhances effector binding. RAS proteins are signal transduction gatekeepers that mediate cell growth, survival, and differentiation through interactions with multiple effector proteins. The RAS effector RAS- and RAB-interacting protein 1 (RIN1) activates its own downstream effectors, the small GTPase RAB5 and the tyrosine kinase Abelson tyrosine-protein kinase (ABL), to modulate endocytosis and cytoskeleton remodeling. To identify ABL substrates downstream of RAS-to-RIN1 signaling, we examined human HEK293T cells overexpressing components of this pathway. Proteomic analysis revealed several novel phosphotyrosine peptides, including Harvey rat sarcoma oncogene (HRAS)-pTyr(137). Here we report that ABL phosphorylates tyrosine 137 of H-, K-, and NRAS. Increased RIN1 levels enhanced HRAS-Tyr(137) phosphorylation by nearly 5-fold, suggesting that RAS-stimulated RIN1 can drive ABL-mediated RAS modification in a feedback circuit. Tyr(137) is well conserved among RAS orthologs and is part of a transprotein H-bond network. Crystal structures of HRAS(Y137F) and HRAS(Y137E) revealed conformation changes radiating from the mutated residue. Although consistent with Tyr(137) participation in allosteric control of HRAS function, the mutations did not alter intrinsic GTP hydrolysis rates in vitro. HRAS-Tyr(137) phosphorylation enhanced HRAS signaling capacity in cells, however, as reflected by a 4-fold increase in the association of phosphorylated HRAS(G12V) with its effector protein RAF proto-oncogene serine/threonine protein kinase 1 (RAF1). These data suggest that RAS phosphorylation at Tyr(137) allosterically alters protein conformation and effector binding, providing a mechanism for effector-initiated modulation of RAS signaling."	"DA-Raf-Mediated Suppression of the Ras--ERK Pathway Is Essential for TGF-β1-Induced Epithelial-Mesenchymal Transition in Alveolar Epithelial Type 2 Cells. Myofibroblasts play critical roles in the development of idiopathic pulmonary fibrosis by depositing components of extracellular matrix. One source of lung myofibroblasts is thought to be alveolar epithelial type 2 cells that undergo epithelial-mesenchymal transition (EMT). Rat RLE-6TN alveolar epithelial type 2 cells treated with transforming growth factor-β1 (TGF-β1) are converted into myofibroblasts through EMT. TGF-β induces both canonical Smad signaling and non-canonical signaling, including the Ras-induced ERK pathway (Raf-MEK-ERK). However, the signaling mechanisms regulating TGF-β1-induced EMT are not fully understood. Here, we show that the Ras-ERK pathway negatively regulates TGF-β1-induced EMT in RLE-6TN cells and that DA-Raf1 (DA-Raf), a splicing isoform of A-Raf and a dominant-negative antagonist of the Ras-ERK pathway, plays an essential role in EMT. Stimulation of the cells with fibroblast growth factor 2 (FGF2), which activated the ERK pathway, prominently suppressed TGF-β1-induced EMT. An inhibitor of MEK, but not an inhibitor of phosphatidylinositol 3-kinase, rescued the TGF-β1-treated cells from the suppression of EMT by FGF2. Overexpression of a constitutively active mutant of a component of the Ras-ERK pathway, i.e., H-Ras, B-Raf, or MEK1, interfered with EMT. Knockdown of DA-Raf expression with siRNAs facilitated the activity of MEK and ERK, which were only weakly and transiently activated by TGF-β1. Although DA-Raf knockdown abrogated TGF-β1-induced EMT, the abrogation of EMT was reversed by the addition of the MEK inhibitor. Furthermore, DA-Raf knockdown impaired the TGF-β1-induced nuclear translocation of Smad2, which mediates the transcription required for EMT. These results imply that intrinsic DA-Raf exerts essential functions for EMT by antagonizing the TGF-β1-induced Ras-ERK pathway in RLE-6TN cells. "	"Copy number variants including RAS pathway genes-How much RASopathy is in the phenotype? The RASopathies comprise a group of clinically overlapping developmental syndromes the common pathogenetic basis of which is dysregulated signal flow through the RAS-MAPK pathway. Mutations in several components or modifiers of the pathway have been identified in Noonan syndrome and related disorders. Over the past years copy number variants (CNVs) encompassing RAS pathway genes (PTPN11, RAF1, MEK2, or SHOC2) have been reported in children with developmental syndromes. These observations raised speculations that the associated phenotypes represent RASopathies, implying that the increased or reduced expression of the respective RAS pathway component and a consecutive dysregulation of RAS pathway signalling is responsible for the clinical picture. Herein, we present two individuals and three of their relatives harboring duplications of either 3p25.2 including the RAF1 locus or 19p13.3 including the MEK2 locus. Duplication carriers exhibited variable clinical phenotypes including non-specific facial dysmorphism, short stature, and learning difficulties. A careful review of the literature supported the impression that phenotypes associated with CNVs including RAS pathway genes commonly share non-specific symptoms with RASopathies, while the characteristic &quot;gestalt&quot; is lacking. Considering the known molecular pathogenesis of RASopathies, it is questionable that a modest increase in the expression of a functionally normal signaling component can mimic the effects of a qualitatively abnormal (hyperactive) mutant protein. We thus argue that current empirical and biological evidence is still insufficient to allow the conclusion that an altered copy number of a RAS pathway component is indeed the mechanism that is critical for the phenotype associated with CNVs including RASopathy genes."	"An attenuated phenotype of Costello syndrome in three unrelated individuals with a HRAS c.179G&gt;A (p.Gly60Asp) mutation correlates with uncommon functional consequences. Heterozygous germline mutations in the proto-oncogene HRAS cause Costello syndrome (CS), an intellectual disability condition with severe failure to thrive, cardiac abnormalities, predisposition to tumors, and neurologic abnormalities. More than 80% of patients share the HRAS mutation c.34G&gt;A (p.Gly12Ser) associated with the typical, relatively homogeneous phenotype. Rarer mutations occurred in individuals with an attenuated phenotype and less characteristic facial features. Most pathogenic HRAS alterations affect hydrolytic HRAS activity resulting in constitutive activation. &quot;Gain-of-function&quot; and &quot;hyperactivation&quot; concerning downstream pathways are widely used to explain the molecular basis and dysregulation of the RAS-MAPK pathway is the biologic mechanism shared amongst rasopathies. Panel testing for rasopathies identified a novel HRAS mutation (c.179G&gt;A; p.Gly60Asp) in three individuals with attenuated features of Costello syndrome. De novo paternal origin occurred in two, transmission from a heterozygous mother in the third. Individuals showed subtle facial features; curly hair and relative macrocephaly were seen in three; atrial tachycardia and learning difficulties in two, and pulmonic valve dysplasia and mildly thickened left ventricle in one. None had severe failure to thrive, intellectual disability or cancer, underscoring the need to consider HRAS mutations in individuals with an unspecific rasopathy phenotype. Functional studies revealed strongly increased HRAS(Gly60Asp) binding to RAF1, but not to other signaling effectors. Hyperactivation of the MAPK downstream signaling pathways was absent. Our results indicate that an increase in the proportion of activated RAS downstream signaling components does not entirely explain the molecular basis of CS. We conclude that the phenotypic variability in CS recapitulates variable qualities of molecular dysfunction."	"XomAnnotate: Analysis of Heterogeneous and Complex Exome- A Step towards Translational Medicine. In translational cancer medicine, implicated pathways and the relevant master genes are of focus. Exome's specificity, processing-time, and cost advantage makes it a compelling tool for this purpose. However, analysis of exome lacks reliable combinatory analysis tools and techniques. In this paper we present XomAnnotate--a meta- and functional-analysis software for exome. We compared UnifiedGenotyper, Freebayes, Delly, and Lumpy algorithms that were designed for whole-genome and combined their strengths in XomAnnotate for exome data through meta-analysis to identify comprehensive mutation profile (SNPs/SNVs, short inserts/deletes, and SVs) of patients. The mutation profile is annotated followed by functional analysis through pathway enrichment and network analysis to identify most critical genes and pathways implicated in the disease genesis. The efficacy of the software is verified through MDS and clustering and tested with available 11 familial non-BRCA1/BRCA2 breast cancer exome data. The results showed that the most significantly affected pathways across all samples are cell communication and antigen processing and presentation. ESCO1, HYAL1, RAF1 and PRKCA emerged as the key genes. Network analysis further showed the purine and propanotate metabolism pathways along with RAF1 and PRKCA genes to be master regulators in these patients. Therefore, XomAnnotate is able to use exome data to identify entire mutation landscape, pathways, and the master genes accurately with wide concordance from earlier microarray and whole-genome studies--making it a suitable biomedical software for using exome in next-generation translational medicine."	"External ear anomalies and hearing impairment in Noonan Syndrome. This is the first cohort in which hearing impairment and external ear anomalies in Noonan Syndrome are described extensively. Retrospective analysis of the otorhinolaryngological and clinical genetic data from 97 Noonan Syndrome (NS) patients. Forty-four NS patients were seen by an otorhinolaryngologist for the analysis of hearing impairment. In our cohort 80 of the 97 patients were genetically tested. In 71 of these mutations were found: in 48 patients a mutation in PTPN11, in 10 patients in SOS1, in 5 patients in SHOC2, in 5 patients in RAF1, in 1 patient in MAP2K2, in 1 patient in KRAS and in 1 patient in A2ML1. External ear anomalies were reported in 75 NS patients (77%). In 69 patients the ears were low-set, 28 patients had posteriorly rotated ears, 14 patients showed protruding ears and 18 had thickened helices. Hearing impairment was detected in 34 NS patients. Nine patients had sensorineural hearing impairment, two a permanent conductive hearing impairment, two other patients had mixed hearing impairment and 20 patients had conductive hearing impairment in the past, caused by otitis media with effusion. Their temporary conductive hearing impairment resolved between the ages of 2 and 18 years. Sensorineural hearing impairment varied between mild high-frequency hearing impairment and profound (uni- and bilateral) hearing impairment and was progressive in three patients. Four NS patients received cochlear implants for their severe sensorineural hearing impairment. The cohort is small for genotype-phenotype correlations, but sensorineural hearing impairment, especially the bilateral severe hearing impairment, was only seen in patients with a PTPN11 mutation. NS is characterized by dysmorphic external ear anomalies and both sensorineural and conductive hearing impairment. Audiological examinations are recommended in all patients with Noonan Syndrome."	"PTPIP51 levels in glioblastoma cells depend on inhibition of the EGF-receptor. Protein tyrosine phosphatase interacting protein 51 (PTPIP51) is upregulated in glioblastoma multiforme (GBM) and expression levels correlate with the grade of malignancy in gliomas. A similar correlation was reported for its interacting partner 14-3-3β, which has been shown to facilitate the interaction of PTPIP51 with cRAF (Raf1). Since the interaction of these signalling partners stimulates growth factor signalling downstream of the epidermal growth factor receptor (EGFR), a major drug target in GBM, we here investigated the impact of EGFR inhibition by small molecule inhibitors or monoclonal antibody on PTPIP51. The effect of EGFR inhibition on PTPIP51 mRNA, protein expression and its interaction profile in GBM was analyzed using the U87 cell line as model system. The transferability of the results to in vivo conditions was evaluated in cultured tumour cells from GBM patients. Cells were treated either to the small molecule tyrosine kinase inhibitor of EGFR Gefitinib or the monoclonal antibody Cetuximab in a time and dose dependent manner. Gefitinib treatment decreased the proliferation rate and induced apoptosis in U87 and primary tumour cells. The PTPIP51 interaction profile changed in correlation to the applied Gefitinib. Despite unchanged mRNA levels PTPIP51 protein was reduced. In contrast, treatment with Cetuximab had no effects on PTPIP51 expression. In conclusion, our results demonstrate the impact of EGFR inhibition by Gefitinib on PTPIP51 protein expression, a downstream regulator of MAPK signalling. These data will serve as a basis to unravel the precise role of PTPIP51-mediated signalling in GBM and its potential implications for Gefitinib-mediated therapy in future studies. "	"Structures of Ras superfamily effector complexes: What have we learnt in two decades? The Ras superfamily small G proteins are master regulators of a diverse range of cellular processes and act via downstream effector molecules. The first structure of a small G protein-effector complex, that of Rap1A with c-Raf1, was published 20 years ago. Since then, the structures of more than 60 small G proteins in complex with their effectors have been published. These effectors utilize a diverse array of structural motifs to interact with the G protein fold, which we have divided into four structural classes: intermolecular β-sheets, helical pairs, other interactions, and pleckstrin homology (PH) domains. These classes and their representative structures are discussed and a contact analysis of the interactions is presented, which highlights the common effector-binding regions between and within the small G protein families. "	"H-ferritin-regulated microRNAs modulate gene expression in K562 cells. In a previous study, we showed that the silencing of the heavy subunit (FHC) offerritin, the central iron storage molecule in the cell, is accompanied by a modification in global gene expression. In this work, we explored whether different FHC amounts might modulate miRNA expression levels in K562 cells and studied the impact of miRNAs in gene expression profile modifications. To this aim, we performed a miRNA-mRNA integrative analysis in K562 silenced for FHC (K562shFHC) comparing it with K562 transduced with scrambled RNA (K562shRNA). Four miRNAs, namely hsa-let-7g, hsa-let-7f, hsa-let-7i and hsa-miR-125b, were significantly up-regulated in silenced cells. The remarkable down-regulation of these miRNAs, following FHC expression rescue, supports a specific relation between FHC silencing and miRNA-modulation. The integration of target predictions with miRNA and gene expression profiles led to the identification of a regulatory network which includes the miRNAs up-regulated by FHC silencing, as well as91 down-regulated putative target genes. These genes were further classified in 9 networks; the highest scoring network, &quot;Cell Death and Survival, Hematological System Development and Function, Hematopoiesis&quot;, is composed by 18 focus molecules including RAF1 and ERK1/2. We confirmed that, following FHC silencing, ERK1/2 phosphorylation is severely impaired and that RAF1 mRNA is significantly down-regulated. Taken all together, our data indicate that, in our experimental model, FHC silencing may affect RAF1/pERK1/2 levels through the modulation of a specific set of miRNAs and add new insights in to the relationship among iron homeostasis and miRNAs. "	"Molecular profiling of ETS and non-ETS aberrations in prostate cancer patients from northern India. Molecular stratification of prostate cancer (PCa) based on genetic aberrations including ETS or RAF gene-rearrangements, PTEN deletion, and SPINK1 over-expression show clear prognostic and diagnostic utility. Gene rearrangements involving ETS transcription factors are frequent pathogenetic somatic events observed in PCa. Incidence of ETS rearrangements in Caucasian PCa patients has been reported, however, occurrence in Indian population is largely unknown. The aim of this study was to determine the prevalence of the ETS and RAF kinase gene rearrangements, SPINK1 over-expression, and PTEN deletion in this cohort. In this multi-center study, formalin-fixed paraffin embedded (FFPE) PCa specimens (n = 121) were procured from four major medical institutions in India. The tissues were sectioned and molecular profiling was done using immunohistochemistry (IHC), RNA in situ hybridization (RNA-ISH) and/or fluorescence in situ hybridization (FISH). ERG over-expression was detected in 48.9% (46/94) PCa specimens by IHC, which was confirmed in a subset of cases by FISH. Among other ETS family members, while ETV1 transcript was detected in one case by RNA-ISH, no alteration in ETV4 was observed. SPINK1 over-expression was observed in 12.5% (12/96) and PTEN deletion in 21.52% (17/79) of the total PCa cases. Interestingly, PTEN deletion was found in 30% of the ERG-positive cases (P = 0.017) but in only one case with SPINK1 over-expression (P = 0.67). BRAF and RAF1 gene rearrangements were detected in ∼1% and ∼4.5% of the PCa cases, respectively. This is the first report on comprehensive molecular profiling of the major spectrum of the causal aberrations in Indian men with PCa. Our findings suggest that ETS gene rearrangement and SPINK1 over-expression patterns in North Indian population largely resembled those observed in Caucasian population but differed from Japanese and Chinese PCa patients. The molecular profiling data presented in this study could help in clinical decision-making for the pursuit of surgery, diagnosis, and in selection of therapeutic intervention."	"T11TS inhibits Angiopoietin-1/Tie-2 signaling, EGFR activation and Raf/MEK/ERK pathway in brain endothelial cells restraining angiogenesis in glioma model. Malignant gliomas represent one of the most aggressive and hypervascular primary brain tumors. Angiopoietin-1, the peptide growth factor activates endothelial Tie-2 receptor promoting vessel maturation and vascular stabilization steps of angiogenesis in glioma. Epidermal growth factor receptor (EGFR) and Tie-2 receptor on endothelial cells once activated transmits signals through downstream Raf/MEK/ERK pathway promoting endothelial cell proliferation and migration which are essential for angiogenesis induction. The in vivo effect of sheep erythrocyte membrane glycopeptide T11-target structure (T11TS) on angiopoietin-1/Tie-2 axis, EGFR signaling and Raf/MEK/ERK pathway in glioma associated endothelial cells has not been investigated previously. The present study performed with rodent glioma model aims to investigate the effect of T11TS treatment on angiopoietin-1/Tie-2 signaling, EGFR activity and Raf/MEK/ERK pathway in glioma associated endothelial cells within glioma milieu. T11TS administration in rodent glioma model inhibited angiopoietin-1 expression and attenuated Tie-2 expression and activation in glioma associated brain endothelial cells. T11TS treatment also downregulated total and phosphorylated EGFR expression in glioma associated endothelial cells. Additionally T11TS treatment inhibited Raf-1 expression, MEK-1 and ERK-1/2 expression and phosphorylation in glioma associated brain endothelial cells. Thus T11TS therapy remarkably inhibits endothelial angiopoietin-1/Tie-2 signaling associated with vessel maturation and simultaneously antagonizes endothelial cell proliferation signaling by blocking EGFR activation and components of Raf/MEK/ERK pathway. Collectively, the findings demonstrate a multi-targeted anti-angiogenic activity of T11TS which augments the potential for clinical translation of T11TS as an effective angiogenesis inhibitor for glioma treatment. "	"Constitutively active signaling by the G protein βγ-subunit mediates intrinsically increased phosphodiesterase-4 activity in human asthmatic airway smooth muscle cells. Signaling by the Gβγ subunit of Gi protein, leading to downstream c-Src-induced activation of the Ras/c-Raf1/MEK-ERK1/2 signaling pathway and its upregulation of phosphodiesterase-4 (PDE4) activity, was recently shown to mediate the heightened contractility in proasthmatic sensitized isolated airway smooth muscle (ASM), as well as allergen-induced airway hyperresponsiveness and inflammation in an in vivo animal model of allergic asthma. This study investigated whether cultured human ASM (HASM) cells derived from asthmatic donor lungs exhibit constitutively increased PDE activity that is attributed to intrinsically upregulated Gβγ signaling coupled to c-Src activation of the Ras/MEK/ERK1/2 cascade. We show that, relative to normal cells, asthmatic HASM cells constitutively exhibit markedly increased intrinsic PDE4 activity coupled to heightened Gβγ-regulated phosphorylation of c-Src and ERK1/2, and direct co-localization of the latter with the PDE4D isoform. These signaling events and their induction of heightened PDE activity are acutely suppressed by treating asthmatic HASM cells with a Gβγ inhibitor. Importantly, along with increased Gβγ activation, asthmatic HASM cells also exhibit constitutively increased direct binding of the small Rap1 GTPase-activating protein, Rap1GAP, to the α-subunit of Gi protein, which serves to cooperatively facilitate Ras activation and, thereby, enable enhanced Gβγ-regulated ERK1/2-stimulated PDE activity. Collectively, these data are the first to identify that intrinsically increased signaling via the Gβγ subunit, facilitated by Rap1GAP recruitment to the α-subunit, mediates the constitutively increased PDE4 activity detected in asthmatic HASM cells. These new findings support the notion that interventions targeted at suppressing Gβγ signaling may lead to novel approaches to treat asthma. "	"Improving recombinant Rubisco biogenesis, plant photosynthesis and growth by coexpressing its ancillary RAF1 chaperone. Enabling improvements to crop yield and resource use by enhancing the catalysis of the photosynthetic CO2-fixing enzyme Rubisco has been a longstanding challenge. Efforts toward realization of this goal have been greatly assisted by advances in understanding the complexities of Rubisco's biogenesis in plastids and the development of tailored chloroplast transformation tools. Here we generate transplastomic tobacco genotypes expressing Arabidopsis Rubisco large subunits (AtL), both on their own (producing tob(AtL) plants) and with a cognate Rubisco accumulation factor 1 (AtRAF1) chaperone (producing tob(AtL-R1) plants) that has undergone parallel functional coevolution with AtL. We show AtRAF1 assembles as a dimer and is produced in tob(AtL-R1) and Arabidopsis leaves at 10-15 nmol AtRAF1 monomers per square meter. Consistent with a postchaperonin large (L)-subunit assembly role, the AtRAF1 facilitated two to threefold improvements in the amount and biogenesis rate of hybrid L8(A)S8(t) Rubisco [comprising AtL and tobacco small (S) subunits] in tob(AtL-R1) leaves compared with tob(AtL), despite &gt;threefold lower steady-state Rubisco mRNA levels in tob(AtL-R1). Accompanying twofold increases in photosynthetic CO2-assimilation rate and plant growth were measured for tob(AtL-R1) lines. These findings highlight the importance of ancillary protein complementarity during Rubisco biogenesis in plastids, the possible constraints this has imposed on Rubisco adaptive evolution, and the likely need for such interaction specificity to be considered when optimizing recombinant Rubisco bioengineering in plants."	"Reconfiguring phosphorylation signaling by genetic polymorphisms affects cancer susceptibility. Large-scale sequencing has characterized an enormous number of genetic variations (GVs), and the functional analysis of GVs is fundamental to understanding differences in disease susceptibility and therapeutic response among and within populations. Using a combination of a sequence-based predictor with known phosphorylation and protein-protein interaction information, we computationally detected 9606 potential phosSNPs (phosphorylation-related single nucleotide polymorphisms), including 720 known, disease-associated SNPs that dramatically modify the human phosSNP-associated kinase-substrate network. Further analyses demonstrated that the proteins in the network are heavily associated in various signaling and cancer pathways, while cancer genes and drug targets are significantly enriched. We re-constructed four population-specific kinase-substrate networks and found that several inherited disease or cancer genes, such as IRS1, RAF1, and EGFR, were differentially regulated by phosSNPs. Thus, phosSNPs may influence disease susceptibility and be involved in cancer development by reconfiguring phosphorylation networks in different populations. Moreover, by systematically characterizing potential phosphorylation-related cancer mutations (phosCMs) in 12 types of cancers, we observed that both types of GVs preferentially occur in the known cancer genes, while a considerable number of phosphorylated proteins, especially those over-representing cancer genes, contain both phosSNPs and phosCMs. Furthermore, it was observed that phosSNPs were significantly enriched in amplification genes identified from breast cancers and tyrosine kinase circuits of lung cancers. Taken together, these results should prove helpful for further elucidation of the functional impacts of disease-associated SNPs. "	"Differential allelic expression of SOS1 and hyperexpression of the activating SOS1 c.755C variant in a Noonan syndrome family. Noonan syndrome (NS) is a genetic condition characterized by congenital heart defects, short stature and characteristic facial features. We here present the case of a girl with moderate learning disabilities, delayed language development, craniofacial features and skin anomalies reminiscent of NS. After a mutation screening of the known NS genes PTPN11, SOS1, RAF1, KRAS, GRB2, BRAF and SHOC2 we found the heterozygous c.755T&gt;C variant in SOS1 causing the p.I252T amino-acid substitution, which was considered possibly pathogenetic by bioinformatic predictions. The same variant was present in the proband's mother, displaying some NS features, and maternal grandfather showing no NS traits, but also by a healthy subject in 1000 genomes project database without phenotype informations. The functional analysis revealed that SOS1 c.755C activated the RAS-ERK intracellular pathway, whereas no effects on RAC-JNK cascade have been detected. After a comparison between the sequence of SOS1 cDNA from peripheral blood and SOS1 genomic DNA, we showed for the first time a differential allelic expression of the SOS1 gene in healthy individuals, thus occurring as a physiologic condition. Interestingly, we found that the mutated allele C was 50% more expressed than the wild-type allele T in all familial carriers. The comparable amount of SOS1 mRNA between mutated individuals and the controls indicates that the variant does not affect SOS1 expression. The present study provides a first evidence of allelic imbalance of SOS1 and pinpoints this condition as a possible mechanism underlying a different penetrance of some SOS1-mutated alleles in unrelated carriers. "	"Neonatal pulmonary arterial hypertension and Noonan syndrome: two fatal cases with a specific RAF1 mutation. Mutations in RAF1 are associated with Noonan syndrome and hypertrophic cardiomyopathy. We present two infants with Noonan syndrome and an identical RAF1 mutation, p.Ser257Leu (c.770C&gt;T), who developed severe pulmonary arterial hypertension (PAH) that proved to be fatal. The RAF1 gene encodes Raf-1 kinase, part of the Ras/mitogen-activated kinase (MAPK) signaling pathway, which has been linked to the development of PAH. This specific mutation has been associated with dephosphorylation of a critical serine residue and constitutive activation of the Raf-1 kinase. These two cases suggest that abnormal activation of the Ras/MAPK pathway may play a significant role in the development of pulmonary vascular disease in the subset of patients with Noonan syndrome and a specific RAF1 mutation."	"Detecting key genes regulated by miRNAs in dysfunctional crosstalk pathway of myasthenia gravis. Myasthenia gravis (MG) is a neuromuscular autoimmune disorder resulting from autoantibodies attacking components of the neuromuscular junction. Recent studies have implicated the aberrant expression of microRNAs (miRNAs) in the pathogenesis of MG; however, the underlying mechanisms remain largely unknown. This study aimed to identify key genes regulated by miRNAs in MG. Six dysregulated pathways were identified through differentially expressed miRNAs and mRNAs in MG, and significant crosstalk was detected between five of these. Notably, crosstalk between the &quot;synaptic long-term potentiation&quot; pathway and four others was mediated by five genes involved in the MAPK signaling pathway. Furthermore, 14 key genes regulated by miRNAs were detected, of which six-MAPK1, RAF1, PGF, PDGFRA, EP300, and PPP1CC-mediated interactions between the dysregulated pathways. MAPK1 and RAF1 were responsible for most of this crosstalk (80%), likely reflecting their central roles in MG pathogenesis. In addition, most key genes were enriched in immune-related local areas that were strongly disordered in MG. These results provide new insight into the pathogenesis of MG and offer new potential targets for therapeutic intervention. "	"Prolyl isomerase PIN1 negatively regulates SGK1 stability to mediate tamoxifen resistance in breast cancer cells. Endocrine therapies that inhibit oestrogen receptor (ER)-α signaling are the most common and effective treatment for ER-α-positive breast cancer. The present study aimed to elucidate the mechanisms by which down-regulation of serum- and glucocorticoid-inducible protein kinase-1 (SGK1) expression confers tamoxifen resistance in breast cancer. SGK1 expression and the cytotoxic effects of combinatorial 4-hydroxy-tamoxifen (4-OHT) treatment with SGK1 overexpression were investigated by immunoblotting, bromodeoxyuridine incorporation, and soft agar assay. We showed that PIN1 down-regulates SGK1 expression through interaction with and ubiquitination of SGK1. PIN1 silencing in MCF7 cells increased SGK1 expression. In tamoxifen-resistant human breast cancer, immunohistochemical staining analysis showed an inverse correlation between SGK1 expression and severity of tamoxifen resistance. Importantly, 4-OHT in combination with overexpression of SGK1 increased cleavage of poly-(ADP-ribose) polymerase and DNA fragmentation to inhibit clonogenic growth of tamoxifen-resistant MCF7 (TAMR-MCF7) cells. We suggest that PIN1-mediated SGK1 ubiquitination is a major regulator of tamoxifen-resistant breast cancer cell growth and survival."	"Raf kinase inhibitory protein (RKIP): functional pleiotropy in the mammalian brain. In 1984, a cytosolic protein was isolated from bovine brain and coined phosphatidylethanolamine binding protein (PEBP) to describe its phospholipid-binding potential. Its cellular function remained elusive for more than a decade until it was discovered that PEBP had the ability to suppress the Raf1-mitogen activated protein kinase (MAPK) pathway, earning it the new name of Raf1 kinase inhibitory protein (RKIP). This milestone discovery has paved the way for numerous studies that have now extended the reach of RKIP's function to other signaling cascades, within the context of various physiological and pathophysiological systems. This review will summarize our current knowledge of the neurophysiological roles of RKIP in the mammalian brain, including its function in the circadian clock and synaptic plasticity. It will also discuss evidence for an involvement of RKIP and its derived neuropeptide, hippocampal cholinergic neurostimulating peptide (HCNP), in neural development and differentiation. Implications in certain pathologies such as Alzheimer's disease and brain cancer will be highlighted. By chronicling the diverse functions of RKIP in the brain, we hope that this review will serve as a timely resource that ignites future studies on this versatile, multifaceted protein in the nervous system. "	"Phosphatidylethanolamine-binding protein is not involved in µ-opioid receptor-mediated regulation of extracellular signal-regulated kinase. Stimulation of the µ‑opioid receptor activates extracellular signal‑regulated kinase (ERK), however, the mechanism by which this occurs remains to be elucidated. Phosphatidylethanolamine‑binding protein (PEBP) has been reported to act as a negative regulator of the ERK cascade (Raf‑MEK‑ERK) by binding to Raf‑1 kinase. In the present study, the role of PEBP in µ‑opioid receptor‑mediated ERK activation was investigated in Chinese hamster ovary/µ cells and SH‑SY5Y cells, as well as in human embryonic kidney 293 cells expressing other types of G protein‑coupled receptors. The acute activation of µ‑opioid receptors by morphine or (D‑Ala2, MePhe4, Gly5‑ol) enkephalin induced a rapid activation of ERK. Prolonged morphine treatment did not affect the phosphorylation level of ERK compared with control cells, but the phosphorylation level of ERK decreased markedly when cells were precipitated with naloxone following chronic morphine treatment. For the phosphorylation of PEBP, no change was identified under the designated drug treatment and exposure duration. A total of two other types of G protein‑coupled receptors, including Gs‑coupled dopamine D1 receptors and Gq‑coupled adrenergic α1A receptors were also investigated and only the activation of adrenergic α1A receptors induced an upregulated phosphorylation of PEBP, which was protein kinase C activity dependent. Thus, PEBP did not have a significant role in µ‑opioid receptor‑mediated regulation of ERK."	"The influence of the CHIEF pathway on colorectal cancer-specific mortality. Many components of the CHIEF (Convergence of Hormones, Inflammation, and Energy Related Factors) pathway could influence survival given their involvement in cell growth, apoptosis, angiogenesis, and tumor invasion stimulation. We used ARTP (Adaptive Rank Truncation Product) to test if genes in the pathway were associated with colorectal cancer-specific mortality. Colon cancer (n = 1555) and rectal cancer (n = 754) cases were followed over five years. Age, center, stage at diagnosis, and tumor molecular phenotype were considered when calculating ARTP p values. A polygenic risk score was used to summarize the magnitude of risk associated with this pathway. The JAK/STAT/SOC was significant for colon cancer survival (PARTP = 0.035). Fifteen genes (DUSP2, INFGR1, IL6, IRF2, JAK2, MAP3K10, MMP1, NFkB1A, NOS2A, PIK3CA, SEPX1, SMAD3, TLR2, TYK2, and VDR) were associated with colon cancer mortality (PARTP &lt; 0.05); JAK2 (PARTP = 0.0086), PIK3CA (PARTP = 0.0098), and SMAD3 (PARTP = 0.0059) had the strongest associations. Over 40 SNPs were significantly associated with survival within the 15 significant genes (PARTP &lt; 0.05). SMAD3 had the strongest association with survival (HRGG 2.46 95% CI 1.44,4.21 PTtrnd = 0.0002). Seven genes (IL2RA, IL8RA, IL8RB, IRF2, RAF1, RUNX3, and SEPX1) were significantly associated with rectal cancer (PARTP &lt; 0.05). The HR for colorectal cancer-specific mortality among colon cancer cases in the upper at-risk alleles group was 11.81 (95% CI 7.07, 19. 74) and was 10.99 (95% CI 5.30, 22.78) for rectal cancer. These results suggest that several genes in the CHIEF pathway are important for colorectal cancer survival; the risk associated with the pathway merits validation in other studies."	"Genetic modifiers of EGFR dependence in non-small cell lung cancer. Lung adenocarcinomas harboring activating mutations in the epidermal growth factor receptor (EGFR) represent a common molecular subset of non-small cell lung cancer (NSCLC) cases. EGFR mutations predict sensitivity to EGFR tyrosine kinase inhibitors (TKIs) and thus represent a dependency in NSCLCs harboring these alterations, but the genetic basis of EGFR dependence is not fully understood. Here, we applied an unbiased, ORF-based screen to identify genetic modifiers of EGFR dependence in EGFR-mutant NSCLC cells. This approach identified 18 kinase and kinase-related genes whose overexpression can substitute for EGFR in EGFR-dependent PC9 cells, and these genes include seven of nine Src family kinase genes, FGFR1, FGFR2, ITK, NTRK1, NTRK2, MOS, MST1R, and RAF1. A subset of these genes can complement loss of EGFR activity across multiple EGFR-dependent models. Unbiased gene-expression profiling of cells overexpressing EGFR bypass genes, together with targeted validation studies, reveals EGFR-independent activation of the MEK-ERK and phosphoinositide 3-kinase (PI3K)-AKT pathways. Combined inhibition of PI3K-mTOR and MEK restores EGFR dependence in cells expressing each of the 18 EGFR bypass genes. Together, these data uncover a broad spectrum of kinases capable of overcoming dependence on EGFR and underscore their convergence on the PI3K-AKT and MEK-ERK signaling axes in sustaining EGFR-independent survival. "	"PTEN signaling through RAF1 proto-oncogene serine/threonine kinase (RAF1)/ERK in the epididymis is essential for male fertility. Without a fully developed initial segment, the most proximal region of the epididymis, male infertility results. Therefore, it is important to understand the development and regulation of this crucial region. In addition to distinctively high activity levels of the components of the ERK pathway, which are essential for initial-segment differentiation, the initial segment exhibits high protein and activity levels of phosphatase and tensin homolog (PTEN). To understand the role of PTEN in the regulation of the initial segment, we generated a mouse model with a conditional deletion of Pten from the epithelial cells of the proximal epididymis from postnatal day 17 (P17) onward. Shortly after Pten deletion, hypertrophy of the proximal epididymis became evident. Loss of Pten resulted in activation of the AKT (protein kinase B) pathway components from P28 onward, which in turn gradually suppressed RAF1 proto-oncogene serine/threonine kinase (RAF1)/ERK signaling through the interaction between AKT and RAF1. Consistent with progressive changes in RAF1/ERK signaling, loss of Pten progressively altered cell shape, size, organization, proliferation, and survival in the initial-segment epithelium and resulted in dedifferentiation and extensive epithelial folding. Most importantly, knockout males progressively lost fertility and became infertile from 6 to 12 mo. Spermatozoa from older knockout mice showed a lower percentage of motility and a higher percentage of flagellar angulation compared with controls, suggesting compromised sperm maturation. Therefore, under normal physiological conditions, PTEN suppresses AKT activity to maintain activation of the RAF1/ERK signaling pathway, which in turn maintains normal function of the initial segment and therefore, normal sperm maturation. "	"DA-9801 promotes neurite outgrowth via ERK1/2-CREB pathway in PC12 cells. In the present study, we examined the mechanisms underlying the effect of DA-9801 on neurite outgrowth. We found that DA-9801 elicits its effects via the mitogen-activated protein kinase (MEK) extracellular signal-regulated kinase (ERK)1/2-cAMP response element-binding protein (CREB) pathway. DA-9801, an extract from a mixture of Dioscorea japonica and Dioscorea nipponica, was reported to promote neurite outgrowth in PC12 cells. The effects of DA-9801 on cell viability and expression of neuronal markers were evaluated in PC12 cells. To investigate DA-9801 action, specific inhibitors targeting the ERK signaling cascade were used. No cytotoxicity was observed in PC12 cells at DA-9801 concentrations of less than 30 µg/mL. In the presence of nerve growth factor (NGF, 2 ng/mL), DA-9801 promoted neurite outgrowth and increased the relative mRNA levels of neurofilament-L (NF-L), a marker of neuronal differentiation. The Raf-1 inhibitor GW5074 and MEK inhibitor PD98059 significantly attenuated DA-9801-induced neurite outgrowth. Additionally, the MEK1 and MEK2 inhibitor SL327 significantly attenuated the increase in the percentage of neurite-bearing PC12 cells induced by DA-9801 treatment. Conversely, the selective p38 mitogen-activated protein kinase inhibitor SB203580 did not attenuate the DA-9801 treatment-induced increase in the percentage of neurite-bearing PC12 cells. DA-9801 enhanced the phosphorylation of ERK1/2 and CREB in PC12 cells incubated with and without NGF. Pretreatment with PD98059 blocked the DA-9801-induced phosphorylation of ERK1/2 and CREB. In conclusion, DA-9801 induces neurite outgrowth by affecting the ERK1/2-CREB signaling pathway. Insights into the mechanism underlying this effect of DA-9801 may suggest novel potential strategies for the treatment of peripheral neuropathy."	"Truncated RAF kinases drive resistance to MET inhibition in MET-addicted cancer cells. Constitutively active receptor tyrosine kinases (RTKs) are known oncogenic drivers and provide valuable therapeutic targets in many cancer types. However, clinical efficacy of RTK inhibitors is limited by intrinsic and acquired resistance. To identify genes conferring resistance to inhibition of the MET RTK, we conducted a forward genetics screen in the GTL-16 gastric cancer cell line, carrying MET amplification and exquisitely sensitive to MET inhibition. Cells were transduced with three different retroviral cDNA expression libraries and selected for growth in the presence of the MET inhibitor PHA-665752. Selected cells displayed robust and reproducible enrichment of library-derived cDNAs encoding truncated forms of RAF1 and BRAF proteins, whose silencing reversed the resistant phenotype. Transduction of naïve GTL-16 cells with truncated, but not full length, RAF1 and BRAF conferred in vitro and in vivo resistance to MET inhibitors, which could be reversed by MEK inhibition. Induction of resistance by truncated RAFs was confirmed in other MET-addicted cell lines, and further extended to EGFR-addicted cells. These data show that truncated RAF1 and BRAF proteins, recently described as products of genomic rearrangements in gastric cancer and other malignancies, have the ability to render neoplastic cells resistant to RTK-targeted therapy. "	"A novel heterozygous MAP2K1 mutation in a patient with Noonan syndrome with multiple lentigines. Noonan syndrome with multiple lentigines (NSML), formerly referred to as LEOPARD syndrome, is a rare autosomal-dominant condition, characterized by multiple lentigines, electrocardiographic conduction abnormalities, ocular hypertelorism, pulmonary stenosis, abnormal genitalia, growth retardation, and sensorineural deafness. To date, PTPN11, RAF1, and BRAF have been reported to be causal for NSML. We report on a 13-year-old Japanese boy, who was diagnosed with NSML. He was found to have a novel heterozygous missense variant (c.305A &gt; G; p.E102G) in MAP2K1, a gene mostly causal for cardio-facio-cutaneous syndrome (CFCS). He manifested fetal macrosomia, and showed hypotonia and poor sucking in the neonatal period. He had mild developmental delay, and multiple lentigines appearing at approximately age 3 years, as well as flexion deformity of knees bilaterally, subtle facial characteristics including ocular hypertelorism, sensorineural hearing loss, and precocious puberty. He lacked congenital heart defects or hypertrophic cardiomyopathy, frequently observed in patients with NSML, mostly caused by PTPN11 mutations. He also lacked congenital heart defects, characteristic facial features, or intellectual disability, frequently observed in those with CFCS caused by MAP2K1 or MAP2K2 mutations. This may be the first patient clinically diagnosed with NSML, caused by a mutation in MAP2K1."	"The C-type lectin OCILRP2 costimulates EL4 T cell activation via the DAP12-Raf-MAP kinase pathway. OCILRP2 is a typical Type-II transmembrane protein that is selectively expressed in activated T lymphocytes, dendritic cells, and B cells and functions as a novel co-stimulator of T cell activation. However, the signaling pathways underlying OCILRP2 in T cell activation are still not completely understood. In this study, we found that the knockdown of OCILRP2 expression with shRNA or the blockage of its activity by an anti-OCILRP2 antagonist antibody reduced CD3/CD28-costimulated EL4 T cell viability and IL-2 production, inhibit Raf1, MAPK3, and MAPK8 activation, and impair NFAT and NF-κB transcriptional activities. Furthermore, immunoprecipitation results indicated that OCILRP2 could interact with the DAP12 protein, an adaptor containing an intracellular ITAM motif that can transduce signals to induce MAP kinase activation for T cell activation. Our data reveal that after binding with DAP12, OCILRP2 activates the Raf-MAP kinase pathways, resulting in T cell activation. "	"Role of small subunit in mediating assembly of red-type form I Rubisco. Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco) is the key enzyme involved in photosynthetic carbon fixation, converting atmospheric CO2 to organic compounds. Form I Rubisco is a cylindrical complex composed of eight large (RbcL) subunits that are capped by four small subunits (RbcS) at the top and four at the bottom. Form I Rubiscos are phylogenetically divided into green- and red-type. Some red-type enzymes have catalytically superior properties. Thus, understanding their folding and assembly is of considerable biotechnological interest. Folding of the green-type RbcL subunits in cyanobacteria is mediated by the GroEL/ES chaperonin system, and assembly to holoenzyme requires specialized chaperones such as RbcX and RAF1. Here, we show that the red-type RbcL subunits in the proteobacterium Rhodobacter sphaeroides also fold with GroEL/ES. However, assembly proceeds in a chaperone-independent manner. We find that the C-terminal β-hairpin extension of red-type RbcS, which is absent in green-type RbcS, is critical for efficient assembly. The β-hairpins of four RbcS subunits form an eight-stranded β-barrel that protrudes into the central solvent channel of the RbcL core complex. The two β-barrels stabilize the complex through multiple interactions with the RbcL subunits. A chimeric green-type RbcS carrying the C-terminal β-hairpin renders the assembly of a cyanobacterial Rubisco independent of RbcX. Our results may facilitate the engineering of crop plants with improved growth properties expressing red-type Rubisco. "	"[Mutagenic effect of advanced paternal age in neurocardiofaciocutaneous syndrome]. Increased frequency of chromosomal aberration in children of mothers aged 35 years and older is very well known and since 1973 it is an indication to investigate the foetal karyotype in cells obtained by invasive method (amniocentesis), because the genetic risk of severe affection is higher than the risk of necessary invasive method. Mutagenic effect of advanced paternal age is known only among geneticists (1-4). The reason is not only low absolute risk of new mutation but particularly a high number of involved genes and last not least the limited spectrum of autosomal dominant disorders without abiotrofic character. Therefore the preventive methods for elimination of this risk are very limited. Only a few of them could be recognized prenatally by noninvasive methods of prenatal diagnostics. Genealogical, anamnestic and clinical data of 83 patients were studied with clinical suspection on neurocardiofaciocutaneous syndrome (NCFCs) (5-7). The diagnosis has not been confirmed in 29 patients, no mutation was detected in 8 investigated genes (PTPN11, SOS1, HRAS, BRAF, RAF1, MEK1, KRAS, NRAS). In 54 patients with autosomal dominant inherited Noonan syndrome, Costello syndrome and cardiofaciocutaneous syndrome the diagnosis was confirmed on DNA level and the biological fitness was estimated for each disorder. Paternal age at conception was compared in the group of patients with familial and sporadic occurrence of Noonan and NCFC syndromes. The clinical prognosis of this disorder is represented by biological fitness of patients. Coefficient of selection is 0,6 in Noonan and LEOPARD syndromes (29 from 48). All 6 patients with Costello and cardiofaciocutaneous syndromes developed due to a new mutation. Paternal age at birth was studied in 83 children patients with autosomal dominant Neurocardiofaciocutaneous syndrome (Noonan, LEOPARD, Costello, CFC) with a high population incidence and decreased biological fitness. Due to severe congenital heart defects, failure to thrive in infancy, increased risk for malignancy and further health problems the clinical prognosis of patients in the past was not good. Therefore high mutation rate is expected until now. Identification of genes responsible for manifestation of this disorder, enables to confirm the diagnosis and to recognize inherited and de novo mutations. Genealogy and DNA analysis of PTPN11, SOS1, HRAS, BRAF, RAF1, MEK1, KRAS and NRAS were obtained in cohort of 54 patients with NCFC syndromes and their parents. There were 48 patients with Noonan and LEOPARD syndromes, in 29 cases due to mutation de novo, 19 patients inherited the mutation from one of parents. All 6 patients with Costello syndrome and CFC syndrome were affected due to new mutation. DNA analysis revealed 32 mutations in PTPN11 gene, mutation in SOS1 gene was found in 10 patients, RAF1 mutation was present in 3 patients; mutation in MEK1, KRAS and NRAS genes was present in one patient each. In Costello syndrome and CFC syndrome mutations in HRAS (4 patients) and BRAF (2 patients) genes were detected. Genealogic data allow analysing parental age in the group of patients with new mutation and inherited mutation. Paternal age at conception of patients with Noonan syndrome due to new mutation was significantly increased in comparison to the group of fathers of Noonan patients with inherited mutation - 38,4 years and 29,6 years, resp., range 28 to 55 years and 25 to 35 years, resp. Maternal age was slightly increased too, -30,9 and 27,7, resp. and range 24 to 42 years and 21 to 36 years, resp. but not significantly. The results support the mutagenic effect of paternal age, espec. autosomal dominant mutations."	"Possible Role of Raf-1 Kinase in the Development of Cerebral Vasospasm and Early Brain Injury After Experimental Subarachnoid Hemorrhage in Rats. This study aims to clarify the potential role of Raf-1 kinase in cerebral vasospasm (CVS) and early brain injury (EBI) after subarachnoid hemorrhage (SAH). Two experimental SAH models in rats, including cisterna magna double injection model for CVS study and prechiasmatic cistern single injection model for EBI study, were performed in this research. As a specific inhibitor of Raf-1, BAY 43-9006 was used in this study. In CVS study, time course study showed that the basilar artery exhibited vasospasm after SAH and became most severe at day 5, and the phosphorylation of Raf-1 had the same trends, while both vasospasm and the phosphorylation of Raf-1 induced by SAH were inhibited by BAY 43-9006 treatment. In addition, BAY 43-9006 treatment significantly reversed the phosphorylation of ERK1/2 and the activation of NF-κB induced by SAH and decreased the messenger RNA (mRNA) levels of IL-6 and IL-1β. In EBI study, BAY 43-9006 treatment significantly suppressed the brain injury induced by SAH. Besides, BAY 43-9006 inhibited the phosphorylation of Raf-1 and ERK1/2; decreased the protein levels of COX-2, VEGF, and MMP-9; and reversed the activation of NF-κB induced by SAH. These results demonstrate that Raf-1 kinase contributes to CVS and EBI after SAH by enhancing the activation of the Raf-1/ERK1/2 and Raf-1/NF-κB signaling pathways, and that the inhibition of these pathways might offer new treatment strategies for CVS and EBI. "	"Cardio-miRNAs and onco-miRNAs: circulating miRNA-based diagnostics for non-cancerous and cancerous diseases. Cardiovascular diseases and cancers are the leading causes of morbidity and mortality in the world. MicroRNAs (miRNAs) are short non-coding RNAs that primarily repress target mRNAs. Here, miR-24, miR-125b, miR-195, and miR-214 were selected as representative cardio-miRs that are upregulated in human heart failure. To bridge the gap between miRNA studies in cardiology and oncology, the targets and functions of these miRNAs in cardiovascular diseases and cancers will be reviewed. ACVR1B, BCL2, BIM, eNOS, FGFR3, JPH2, MEN1, MYC, p16, and ST7L are miR-24 targets that have been experimentally validated in human cells. ARID3B, BAK1, BCL2, BMPR1B, ERBB2, FGFR2, IL6R, MUC1, SITR7, Smoothened, STAT3, TET2, and TP53 are representative miR-125b targets. ACVR2A, BCL2, CCND1, E2F3, GLUT3, MYB, RAF1, VEGF, WEE1, and WNT7A are representative miR-195 targets. BCL2L2, ß-catenin, BIM, CADM1, EZH2, FGFR1, NRAS, PTEN, TP53, and TWIST1 are representative miR-214 targets. miR-125b is a good cardio-miR that protects cardiomyocytes; miR-195 is a bad cardio-miR that elicits cardiomyopathy and heart failure; miR-24 and miR-214 are bi-functional cardio-miRs. By contrast, miR-24, miR-125b, miR-195, and miR-214 function as oncogenic or tumor suppressor miRNAs in a cancer (sub)type-dependent manner. Circulating miR-24 is elevated in diabetes, breast cancer and lung cancer. Circulating miR-195 is elevated in acute myocardial infarction, breast cancer, prostate cancer and colorectal adenoma. Circulating miR-125b and miR-214 are elevated in some cancers. Cardio-miRs and onco-miRs bear some similarities in functions and circulation profiles. miRNAs regulate WNT, FGF, Hedgehog and other signaling cascades that are involved in orchestration of embryogenesis and homeostasis as well as pathogenesis of human diseases. Because circulating miRNA profiles are modulated by genetic and environmental factors and are dysregulated by genetic and epigenetic alterations in somatic cells, circulating miRNA association studies (CMASs) within several thousands of cases each for common non-cancerous diseases and major cancers are necessary for miRNA-based diagnostics. "	"MicroRNA-455 inhibits proliferation and invasion of colorectal cancer by targeting RAF proto-oncogene serine/threonine-protein kinase. Colorectal cancer (CRC, also known as colon cancer, rectal cancer, or bowel cancer) is the second leading cause of cancer mortality in the Western world. MicroRNAs (miRNAs) are a class of small (18-25 nucleotides long) noncoding RNAs with important posttranscriptional regulatory functions. miRNAs play important roles in various physiological and pathological processes including carcinogenesis in various solid cancers including CRC. In order to investigate the roles that miRNAs played in CRC, the expression of human miRNAs (in 20 normal adjacent tissue samples and 20 colon cancer samples) was examined in this study. miR-455, miR-484, and miR-101 were significantly downregulated in colon cancer samples. And overexpression of miR-455 significantly inhibited the proliferation and the invasion of SW480, but had no effect on apoptosis. PCR and Western blot showed that overexpression of miR-455 decreased protein expression of RAF proto-oncogene serine/threonine-protein kinase (RAF1) but had no effect on mRNA level. Luciferase assay indicated that miR-455 regulated RAF1 expression directly. Moreover, overexpression of RAF1 partially reversed the inhibitory effect of miR-455 on the growth and the invasion of SW480. The data indicated that miR-455 regulates the proliferation and invasion of colorectal cancer cells, at least in part, by downregulating RAF1, a direct target of miR-455. Collectively, our study demonstrated that miR-455-RAF1 may represent a new potential therapeutic target for colorectal carcinoma treatment. "	"A protein with an inactive pterin-4a-carbinolamine dehydratase domain is required for Rubisco biogenesis in plants. Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco) plays a critical role in sustaining life by catalysis of carbon fixation in the Calvin-Benson pathway. Incomplete knowledge of the assembly pathway of chloroplast Rubisco has hampered efforts to fully delineate the enzyme's properties, or seek improved catalytic characteristics via directed evolution. Here we report that a Mu transposon insertion in the Zea mays (maize) gene encoding a chloroplast dimerization co-factor of hepatocyte nuclear factor 1 (DCoH)/pterin-4α-carbinolamine dehydratases (PCD)-like protein is the causative mutation in a seedling-lethal, Rubisco-deficient mutant named Rubisco accumulation factor 2 (raf2-1). In raf2 mutants newly synthesized Rubisco large subunit accumulates in a high-molecular weight complex, the formation of which requires a specific chaperonin 60-kDa isoform. Analogous observations had been made previously with maize mutants lacking the Rubisco biogenesis proteins RAF1 and BSD2. Chemical cross-linking of maize leaves followed by immunoprecipitation with antibodies to RAF2, RAF1 or BSD2 demonstrated co-immunoprecipitation of each with Rubisco small subunit, and to a lesser extent, co-immunoprecipitation with Rubisco large subunit. We propose that RAF2, RAF1 and BSD2 form transient complexes with the Rubisco small subunit, which in turn assembles with the large subunit as it is released from chaperonins."	"Comprehensive genomic profiling of pancreatic acinar cell carcinomas identifies recurrent RAF fusions and frequent inactivation of DNA repair genes. Pancreatic acinar cell carcinomas (PACC) account for approximately 1% (∼500 cases) of pancreatic cancer diagnoses annually in the United States. Oncogenic therapuetic targets have proven elusive in this disease, and chemotherapy and radiotherapy have demonstrated limited efficacy against these tumors. Comprehensive genomic profiling of a large series of PACCs (n=44) identified recurrent rearrangements involving BRAF and RAF1 (CRAF) in approximately 23% of tumors. The most prevalent fusion, SND1-BRAF, resulted in activation of the MAPK pathway, which was abrogated with MEK inhibition. SND1-BRAF-transformed cells were sensitive to treatment with the MEK inhibitor trametinib. PACCs lacking RAF rearrangements were significantly enriched for genomic alterations, causing inactivation of DNA repair genes (45%); these genomic alterations have been associated with sensitivity to platinum-based therapies and PARP inhibitors. Collectively, these results identify potentially actionable genomic alterations in the majority of PACCs and provide a rationale for using personalized therapies in this disease. PACC is genomically distinct from other pancreatic cancers. Fusions in RAF genes and mutually exclusive inactivation of DNA repair genes represent novel potential therapeutic targets that are altered in over two thirds of these tumors."	"ERK and RAF1 genes: analysis of methylation and expression profiles in patients with oral squamous cell carcinoma. The Ras/RAF/MEK/ERK1/2 pathway is important in the control of growth signals, differentiation and cell survival. Over-expression and activation of this pathway have been reported in different types of cancer. This study analyses the promoter methylation and RNA expression profiles of ERK and RAF1 genes with risk of oral squamous cell carcinoma (OSCC) along with the promoter methylation status of ERK and RAF1 genes using a methylation-specific polymerase chain reaction (MS-PCR) in 86 paraffin-wax embedded samples of OSCC and 68 normal control tissues. Furthermore, ERK and RAF1 expression was analysed in 19 cases and 20 normal samples by real-time reverse transcription PCR. Frequency of promoter methylation was detected for ERK (93.02% and 6.98%) and RAF1 (95.35% and 4.65%) genes in cases and controls, respectively. Messenger RNA (mRNA) expression analysis indicated statistically significant difference between cases and controls for ERK (P &lt; 0.002) and RAF1 (P &lt; 0.006). The authors believe that this is the first report to show that expression of ERK and RAF1 is involved in risk of OSCC."	"Novel RNA hybridization method for the in situ detection of ETV1, ETV4, and ETV5 gene fusions in prostate cancer. The genetic basis of 50% to 60% of prostate cancer (PCa) is attributable to rearrangements in E26 transformation-specific (ETS) (ERG, ETV1, ETV4, and ETV5), BRAF, and RAF1 genes and overexpression of SPINK1. The development and validation of reliable detection methods are warranted to classify various molecular subtypes of PCa for diagnostic and prognostic purposes. ETS gene rearrangements are typically detected by fluorescence in situ hybridization and reverse-transcription polymerase chain reaction methods. Recently, monoclonal antibodies against ERG have been developed that detect the truncated ERG protein in immunohistochemical assays where staining levels are strongly correlated with ERG rearrangement status by fluorescence in situ hybridization. However, specific antibodies for ETV1, ETV4, and ETV5 are unavailable, challenging their clinical use. We developed a novel RNA in situ hybridization-based assay for the in situ detection of ETV1, ETV4, and ETV5 in formalin-fixed paraffin-embedded tissues from prostate needle biopsies, prostatectomy, and metastatic PCa specimens using RNA probes. Further, with combined RNA in situ hybridization and immunohistochemistry we identified a rare subset of PCa with dual ETS gene rearrangements in collisions of independent tumor foci. The high specificity and sensitivity of RNA in situ hybridization provides an alternate method enabling bright-field in situ detection of ETS gene aberrations in routine clinically available PCa specimens. "	"RAF suppression synergizes with MEK inhibition in KRAS mutant cancer cells. KRAS is the most frequently mutated oncogene in human cancer, yet no therapies are available to treat KRAS mutant cancers. We used two independent reverse genetic approaches to identify components of the RAS-signaling pathways required for growth of KRAS mutant tumors. Small interfering RNA (siRNA) screening of 37 KRAS mutant colorectal cancer cell lines showed that RAF1 suppression was synthetic lethal with MEK inhibition. An unbiased kinome short hairpin RNA (shRNA)-based screen confirmed this synthetic lethal interaction in colorectal as well as in lung cancer cells bearing KRAS mutations. Compounds targeting RAF kinases can reverse resistance to the MEK inhibitor selumetinib. MEK inhibition induces RAS activation and BRAF-RAF1 dimerization and sustains MEK-ERK signaling, which is responsible for intrinsic resistance to selumetinib. Prolonged dual blockade of RAF and MEK leads to persistent ERK suppression and efficiently induces apoptosis. Our data underlie the relevance of developing combinatorial regimens of drugs targeting the RAF-MEK pathway in KRAS mutant tumors. "	"[Cardiofaciocutaneous syndrome, a Noonan syndrome related disorder: clinical and molecular findings in 11 patients]. To describe 11 patients with cardiofaciocutaneous syndrome (CFC) and compare them with 130 patients with other RAS-MAPK syndromes (111 Noonan syndrome patients [NS] and 19 patients with LEOPARD syndrome). Clinical data from patients submitted for genetic analysis were collected. Bidirectional sequencing analysis of PTPN11, SOS1, RAF1, BRAF, and MAP2K1 focused on exons carrying recurrent mutations, and of all KRAS exons were performed. Six different mutations in BRAF were identified in 9 patients, as well as 2 MAP2K1 mutations. Short stature, developmental delay, language difficulties and ectodermal anomalies were more frequent in CFC patients when compared with other neuro-cardio-faciocutaneous syndromes (P&lt;.05). In at least 2 cases molecular testing helped reconsider the diagnosis. CFC patients showed a rather severe phenotype but at least one patient with BRAF mutation showed no developmental delay, which illustrates the variability of the phenotypic spectrum caused by BRAF mutations. Molecular genetic testing is a valuable tool for differential diagnosis of CFC and NS related disorders."	"TSC1 controls macrophage polarization to prevent inflammatory disease. Macrophages acquire distinct phenotypes during tissue stress and inflammatory responses, but the mechanisms that regulate the macrophage polarization are poorly defined. Here we show that tuberous sclerosis complex 1 (TSC1) is a critical regulator of M1 and M2 phenotypes of macrophages. Mice with myeloid-specific deletion of TSC1 exhibit enhanced M1 response and spontaneously develop M1-related inflammatory disorders. However, TSC1-deficient mice are highly resistant to M2-polarized allergic asthma. Inhibition of the mammalian target of rapamycin (mTOR) fails to reverse the hypersensitive M1 response of TSC1-deficient macrophages, but efficiently rescues the defective M2 polarization. Deletion of mTOR also fails to reverse the enhanced inflammatory response of TSC1-deficient macrophages. Molecular studies indicate that TSC1 inhibits M1 polarization by suppressing the Ras GTPase-Raf1-MEK-ERK pathway in mTOR-independent manner, whereas TSC1 promotes M2 properties by mTOR-dependent CCAAT/enhancer-binding protein-β pathways. Overall, these findings define a key role for TSC1 in orchestrating macrophage polarization via mTOR-dependent and independent pathways. "	"Keratin 19 expression correlates with poor prognosis in breast cancer. Breast cancer expression profiling has been used for determining biomarkers. Using gene expression profiles of 2,400 patients we identified keratin 19 (KRT19) as a highly deregulated gene in breast cancer. KRT19 expression is independent of patient race but correlates with disease grade, and ER, PR or HER2 expression. Expression of TPD52, GATA3 and KRT18 was increased in KRT19 expressing patients. Furthermore, KRT19 expression was associated with ER up-regulation and Luminal B gene signatures, as well as a constitutive RAF1 signaling pathway. Finally, KRT19 expression correlated with poor overall survival. Taken together, our results suggest that KRT19 expression can be used as a prognostic marker. "	"Initial experience with genomic profiling of heavily pretreated breast cancers. Rapidly evolving advances in the understanding of theorized unique driver mutations within individual patient's cancers, as well as dramatic reduction in the cost of genomic profiling, have stimulated major interest in the role of such testing in routine clinical practice. The aim of this study was to report our initial experience with genomic testing in heavily pretreated breast cancer patients. Patients with primary or recurrent breast cancer managed at any of our five hospitals and whose malignancy had failed to respond to therapy or had progressed on all recognized standard-of-care options were offered the opportunity to have their cancer undergo next-generation sequencing genomic profiling. Of a total of 101 patients, 98 (97 %) had at least one specific genomic alteration identified. A total of 465 different somatic genetic abnormalities were revealed in this group of patients. Although 52 % of patients were found to have an abnormality for which an U.S. Food and Drug Administration (FDA)-approved drug was available, 69 % of patients had an FDA-approved agent for an indication other than breast cancer. The most common genomic alterations of potential clinical consequence were PIK3 (25 %), FGFR1 (16 %), AKT (11 %), PTEN (10 %), ERBB2 (8 %), JAK2 (6 %), and RAF1 (5 %). Almost all advanced breast cancers possess at least one well-characterized genomic alteration that might be actionable at the clinical level. Further, in most cases, a plausible argument can be advanced for the potential biological and clinical relevance of an FDA-approved antineoplastic agent not currently indicated in the treatment of breast cancer."	"Rubisco Accumulation Factor 1 from Thermosynechococcus elongatus participates in the final stages of ribulose-1,5-bisphosphate carboxylase/oxygenase assembly in Escherichia coli cells and in vitro. Ribulose-1,5-bisphosphate carboxylase/oxygenase (Rubisco) biosynthesis is a multi-step process in which specific chaperones are involved. Recently, a novel polypeptide, Rubisco Accumulation Factor 1 (RAF1), has been identified as a protein that is necessary for proper assembly of this enzyme in maize cells (Zea mays). However, neither its specific function nor its mode of action have as yet been determined. The results presented here show that the prokaryotic homolog of RAF1 from Thermosynechococcus elongatus is expressed in cyanobacterial cells and interacts with a large Rubisco subunit (RbcL). Using a heterologous expression system, it was demonstrated that this protein promotes Rubisco assembly in Escherichia coli cells. Moreover, when co-expressed with RbcL alone, a stable RbcL-RAF1 complex is formed. Molecular mass determination for this Rubisco assembly intermediate by size-exclusion chromatography coupled with multi-angle light scattering indicates that it consists of an RbcL dimer and two RAF1 molecules. A purified RbcL-RAF1 complex dissociated upon addition of a small Rubisco subunit (RbcS), leading to formation of the active holoenzyme. Moreover, titration of the octameric (RbcL8) core of Rubisco with RAF1 results in disassembly of such a stucture and creation of an RbcL-RAF1 intermediate. The results presented here are the first attempt to elucidate the role of cyanobacterial Rubisco Accumulation Factor 1 in the Rubisco biosynthesis process."	"The mammalian Ste20-like kinase 2 (Mst2) modulates stress-induced cardiac hypertrophy. The Hippo signaling pathway has recently moved to center stage in cardiac research because of its key role in cardiomyocyte proliferation and regeneration of the embryonic and newborn heart. However, its role in the adult heart is incompletely understood. We investigate here the role of mammalian Ste20-like kinase 2 (Mst2), one of the central regulators of this pathway. Mst2(-/-) mice showed no alteration in cardiomyocyte proliferation. However, Mst2(-/-) mice exhibited a significant reduction of hypertrophy and fibrosis in response to pressure overload. Consistently, overexpression of MST2 in neonatal rat cardiomyocytes significantly enhanced phenylephrine-induced cellular hypertrophy. Mechanistically, Mst2 positively modulated the prohypertrophic Raf1-ERK1/2 pathway. However, activation of the downstream effectors of the Hippo pathway (Yes-associated protein) was not affected by Mst2 ablation. An initial genetic study in mitral valve prolapse patients revealed an association between a polymorphism in the human MST2 gene and adverse cardiac remodeling. These results reveal a novel role of Mst2 in stress-dependent cardiac hypertrophy and remodeling in the adult mouse and likely human heart. "	"MiR-7-5p is frequently downregulated in glioblastoma microvasculature and inhibits vascular endothelial cell proliferation by targeting RAF1. The aberrant expression of microRNAs (miRNAs) is always associated with tumor development and progression. Microvascular proliferation is one of the unique pathologic features of glioblastoma (GBM) . In this study, the microvasculature from GBM or normal brain tissue derived from neurosurgeries was purified and total RNA was isolated from purified microvasculature. The difference of miRNA expression profiles between glioblastoma microvasculature and normal brain capillaries was investigated. It was found that miR-7-5p in GBM microvessels was significantly reduced compared with that in normal brain capillaries. In the in vitro experiments, overexpression of miR-7-5p significantly inhibited human umbilical vein endothelial cell proliferation. Forced expression of miR-7-5p in human umbilical vein endothelial cells in vitro significantly reduced the protein level of RAF1 and repressed the activity of the luciferase, a reporter vector carrying the 3'-untranslated region of RAF1. These findings indicate that RAF1 is one of the miR-7-5p target genes. Furthermore, a significant inverse correlation between miR-7-5p expression and RAF1 protein level in GBM microvasculature was found. These data suggest that miR-7-5p functions as a tumor suppressor gene to regulate GBM microvascular endothelial cell proliferation potentially by targeting the RAF1 oncogene, implicating an important role for miR-7-5p in the pathogenesis of GBM. It may serve as a guide for the antitumor angiogenesis drug development. "	"Heat shock protein 90 positively regulates Chikungunya virus replication by stabilizing viral non-structural protein nsP2 during infection. The high morbidity and socio-economic loss associated with the recent massive global outbreak of Chikungunya virus (CHIKV) emphasize the need to understand the biology of the virus for developing effective antiviral therapies. In this study, an attempt was made to understand the molecular mechanism involved in Heat shock protein 90 (Hsp90) mediated regulation of CHIKV infection in mammalian cells using CHIKV prototype strain (S 27) and Indian outbreak strain of 2006 (DRDE-06). Our results showed that Hsp90 is required at a very early stage of viral replication and Hsp90 inhibitor Geldanamycin (GA) can abrogate new virus particle formation more effectively in the case of S 27 than that of DRDE-06. Further analysis revealed that CHIKV nsP2 protein level is specifically reduced by GA treatment as well as HSP90-siRNA transfection; however, viral RNA remains unaltered. Immunoprecipitation analysis showed that nsP2 interacts with Hsp90 during infection; however this interaction is reduced in the presence of GA. In addition, our analysis on Hsp90 associated PI3K/Akt/mTOR signaling pathway demonstrated that CHIKV infection stabilizes Raf1 and activates Hsp90 client protein Akt, which in turn phosphorylates mTOR. Subsequently, this phosphorylation leads to the activation of two important downstream effectors, S6K and 4EBP1, which may facilitate translation of viral as well as cellular mRNAs. Hence, the data suggests that CHIKV infection is regulated by Hsp90 associated Akt phosphorylation and DRDE-06 is more efficient than S 27 in enhancing the activation of host signaling molecules for its efficient replication and virus production. Hsp90 positively regulates Chikungunya virus replication by stabilizing CHIKV-nsP2 through its interaction during infection. The study highlights the possible molecular mechanism of GA mediated inhibition of CHIKV replication and differential effect of this drug on S 27 and DRDE-06, which will be informative for developing effective anti-CHIKV therapies in future."	"CNS myelin induces regulatory functions of DC-SIGN-expressing, antigen-presenting cells via cognate interaction with MOG. Myelin oligodendrocyte glycoprotein (MOG), a constituent of central nervous system myelin, is an important autoantigen in the neuroinflammatory disease multiple sclerosis (MS). However, its function remains unknown. Here, we show that, in healthy human myelin, MOG is decorated with fucosylated N-glycans that support recognition by the C-type lectin receptor (CLR) DC-specific intercellular adhesion molecule-3-grabbing nonintegrin (DC-SIGN) on microglia and DCs. The interaction of MOG with DC-SIGN in the context of simultaneous TLR4 activation resulted in enhanced IL-10 secretion and decreased T cell proliferation in a DC-SIGN-, glycosylation-, and Raf1-dependent manner. Exposure of oligodendrocytes to proinflammatory factors resulted in the down-regulation of fucosyltransferase expression, reflected by altered glycosylation at the MS lesion site. Indeed, removal of fucose on myelin reduced DC-SIGN-dependent homeostatic control, and resulted in inflammasome activation, increased T cell proliferation, and differentiation toward a Th17-prone phenotype. These data demonstrate a new role for myelin glycosylation in the control of immune homeostasis in the healthy human brain through the MOG-DC-SIGN homeostatic regulatory axis, which is comprised by inflammatory insults that affect glycosylation. This phenomenon should be considered as a basis to restore immune tolerance in MS."	"The preclinical development of regorafenib for the treatment of colorectal cancer. The RAS-RAF-MEK-ERK pathway is one of the best characterized kinase cascades. During the exploration of small molecules that inhibit RAF1 kinase, regorafenib (BAY 73-4506) was discovered as a multikinase inhibitor which demonstrated anti-cancer, anti-angiogenic, and apoptotic activities in metastatic colorectal cancer. This was not the first multikinase inhibitor discovered for the disease; indeed, before regorafenib was approved by FDA as a multikinase inhibitor for metastatic colorectal cancer in 2012, sorafenib (BAY 43-9006) had already been developed to be the first in the world as a multikinase inhibitor for malignancy. Indeed, the only difference between the two compounds is fluorine bound to its proximal phenyl ring although the end result is a considerably different profile, both as a kinase inhibitor as well as in its clinical application. In this drug discovery case history, the authors review the design, discovery, and development of both regorafenib and sorafenib from back in the 1990s. Furthermore, the authors highlight the drug's anti-cancer and anti-angiogenic properties as well as its efficacy, safety pharmacology and toxicology based on FDA documents. In order to better predict the efficacy of kinase inhibitors and to utilize them more efficiently, our understanding of drug discovery, the approaches for kinase profiling, and technologies needed for their development are paramount. Indeed, the authors believe that the field should better explore the use of predictive biomarkers that might be able to better assess these therapeutics. Pharmaceutical scientists must also consider the cost effectiveness of the targeted agents developed as a number of the drugs developed are very expensive."	"Remarkable reductions of PAKs in the brain tissues of scrapie-infected rodent possibly linked closely with neuron loss. Prion diseases are irreversible progressive neurodegenerative diseases characterized in the brain by PrP(Sc) deposits, neuronal degeneration, gliosis and by cognitive, behavioral and physical impairments, leading to severe incapacity and inevitable death. Proteins of the p21-activated kinase (PAK) family are noted for roles in gene transcription, cytoskeletal dynamics, cell cycle progression and survival signaling. In the present study, we aimed to identify the potential roles of PAKs during prion infection, utilizing the brains of scrapie agent-infected hamsters. Western blots and immunohistochemical assays showed that brain levels of PAK3 and PAK1, as well as their upstream activator Rac/cdc42 and downstream substrate Raf1, were remarkably reduced at terminal stage. Double-stained immunofluorescent assay demonstrated that PAK3 was expressed mainly in neurons. Dynamic analyses of the brain samples collected at the different time points during the incubation period illustrated successive decreases of PAK3, PAK1 and Raf1, especially phosphor Raf1, which correlated well with neuron loss. Rac/cdc42 in the brain tissues increased at early stage and reached to the top at mid-late stage, but diminished at final stage. Unlike the alteration of PAKs in vivo, PAK3 and PAK1, as well as Rac/cdc42 and Raf1 in the prion-infected cell line SMB-S15 remained unchanged compared with those of its normal cell line SMB-PS. Our data here indicate that the functions of PAKs and their associated signaling pathways are seriously affected in the brains of prion disease, which appear to associate closely with the extensive neuron loss. "	"Structural basis for RKIP binding with its substrate Raf1 kinase. Raf1 kinase inhibitor protein (RKIP) negatively regulates the Raf1/MEK/ERK pathway which is vital for cell growth and differentiation. It is also a biomarker in clinical cancer diagnosis. RKIP binds to the N-terminus of Raf1 kinase but little is known about the structural basis of RKIP binding with Raf1. Here, we demonstrate that the N-terminus of human Raf1 kinase (hRaf11-147aa) binds with human RKIP (hRKIP) at its ligand-binding pocket, loop &quot;127-149&quot;, and the C-terminal helix by NMR experiments. D70, D72, E83, Y120, and Y181 were further verified as the key residues participating in the interaction of hRKIP and hRaf11-147aa. G143-R146 fragment was also critical for hRKIP binding with hRaf11-147aa, for its deletion decreased the binding affinity around 300 times, from 154 to 0.46 mM(-1). Our results provide important structural clues for designing the lead compound that disrupts RKIP-Raf1 interaction. "	"Sulfur dioxide inhibits vascular smooth muscle cell proliferation via suppressing the Erk/MAP kinase pathway mediated by cAMP/PKA signaling. The present study was designed to investigate the role of endogenous sulfur dioxide (SO2) in vascular smooth muscle cell (VSMC) proliferation, and explore the possible role of cross-talk between cyclic adenosine monophosphate (cAMP)/protein kinase A (PKA) and extracellular signal-regulated kinase (Erk)/mitogen-activated protein kinase (MAPK) pathways in this action. By cell counting, growth curve depict, flow cytometry and bromodeoxyuridine (BrdU) labeling assays, we found that SO2 inhibited VSMC proliferation by preventing cell cycle progression from G1 to S phase and by reducing DNA synthesis. SO2 synthase aspartate aminotransferase (AAT1 and AAT2) overexpression significantly inhibited serum-induced proliferating cell nuclear antigen (PCNA) protein expression in VSMCs, demonstrated by western blot analysis. Moreover, overexpression of AAT1 or AAT2 markedly reduced incorporation of BrdU in serum-treated VSMCs. By contrast, either AAT1 or AAT2 knockdown significantly exacerbated serum-stimulated VSMC proliferation. Thus, both exogenous- and endogenous-derived SO2 suppressed serum-induced VSMC proliferation. However, annexin V-propidium iodide (PI) staining and cell cycle analysis demonstrated that SO2 did not influence VSMC apoptosis in the serum-induced proliferation model. In a platelet-derived growth factor (PDGF)-BB-stimulated VSMC proliferation model, SO2 dephosphorylated the active sites of Erk1/2, MAPK kinase 1/2 and RAF proto-oncogene serine/threonine-protein kinase (c-Raf) induced by PDGF-BB. However, the inactivation of the three kinases of the Erk/MAPK pathway was not due to the separate interferences on them by SO2 simultaneously, but a consequence of the influence on the upstream activity of the c-Raf molecule. Hence, we examined the cAMP/PKA pathway, which could inhibit Erk/MAPK transduction in VSMCs. The results showed that SO2 could stimulate the cAMP/PKA pathway to block c-Raf activation, whereas the Ser259 site on c-Raf had an important role in SO2-induced suppression of Erk/MAPK pathway. The present study firstly demonstrated that SO2 exerted a negative regulation of VSMC proliferation via suppressing the Erk/MAPK pathway mediated by cAMP/PKA signaling. "	"Memantine improves spatial learning and memory impairments by regulating NGF signaling in APP/PS1 transgenic mice. Memantine (MEM) is used for improving the cognitive impairments of the patients suffering from Alzheimer's disease (AD) by multiple neuroprotective mechanisms. However, it is still not clear whether nerve growth factor (NGF) signaling is involved in the mechanisms of MEM. The present study investigated the neuroprotective effects of MEM treatment on the cognitive performance and amyloidosis in APP/PS1 transgenic mice, and disclosed the NGF-related mechanism of MEM. We found that MEM treatment improved the cognitive performance by decreasing the escape latency and path length in the navigation test, by shortening the duration in target quadrant and reducing the frequency to pass through the target in probe trial, and by prolonging the latency and decreasing the frequencies of entering the dark compartment in passive avoidance test. The over-expressions of Aβ(1-42) and amyloid precursor protein (APP) were also decreased in the brains of APP/PS1 mice. Interestingly, MEM treatment improved the decreased NGF levels in APP/PS1 mice. Furthermore, NGF/TrkA signaling was activated by increasing the phosphorylation levels of tyrosine kinase (TrkA), proto-oncogene serine/threonine-protein kinase, Raf1 (c-Raf), extracellular regulated protein kinases (ERK)1/2 and cAMP-response element binding protein (CREB) after MEM treatment. Simultaneously, MEM also inhibited NGF/p75(NTR) signaling via decreasing the cleavage substrate of p75(NTR), increasing the JNK2 phosphorylation and decreasing the levels of p53 and cleaved-caspase 3. Therefore, the dual-regulation on NGF signaling was attributed to the improvements of cognitive deficits and Aβ depositions in APP/PS1 mice. In conclusion, MEM treatment activated the NGF/TrkA signaling, and inhibited the p75(NTR) signaling in APP/PS1 mice to ameliorate the behavioral deficits and amyloidosis, indicating that NGF signaling was a new potential target of MEM treatment for AD therapy. "	"DA-Raf-dependent inhibition of the Ras-ERK signaling pathway in type 2 alveolar epithelial cells controls alveolar formation. Alveolar formation is coupled to the spatiotemporally regulated differentiation of alveolar myofibroblasts (AMYFs), which contribute to the morphological changes of interalveolar walls. Although the Ras-ERK signaling pathway is one of the key regulators for alveolar formation in developing lungs, the intrinsic molecular and cellular mechanisms underlying its role remain largely unknown. By analyzing the Ras-ERK signaling pathway during postnatal development of lungs, we have identified a critical role of DA-Raf1 (DA-Raf)-a dominant-negative antagonist for the Ras-ERK signaling pathway-in alveolar formation. DA-Raf-deficient mice displayed alveolar dysgenesis as a result of the blockade of AMYF differentiation. DA-Raf is predominantly expressed in type 2 alveolar epithelial cells (AEC2s) in developing lungs, and DA-Raf-dependent MEK1/2 inhibition in AEC2s suppresses expression of tissue inhibitor of matalloprotienase 4 (TIMP4), which prevents a subsequent proteolytic cascade matrix metalloproteinase (MMP)14-MMP2. Furthermore, MMP14-MMP2 proteolytic cascade regulates AMYF differentiation and alveolar formation. Therefore, DA-Raf-dependent inhibition of the Ras-ERK signaling pathway in AEC2s is required for alveolar formation via triggering MMP2 activation followed by AMYF differentiation. These findings reveal a pivotal role of the Ras-ERK signaling pathway in the dynamic regulation of alveolar development. "	"Novel genetic aberrations in breast phyllodes tumours: comparison between prognostically distinct groups. Phyllodes tumours of the breast are uncommon fibroepithelial neoplasms which pose management challenges due to difficulties in accurate prediction of clinical behaviour, as histological assessment has its limitations. Molecular studies have improved the understanding of these rare tumours but such findings are scant. We aimed to investigate genetic aberrations in phyllodes tumours stratified according to clinical behaviour, to identify potential genes contributing to disease progression. Twenty phyllodes tumours were separated into prognostically distinct categories depending on whether they had recurred/metastasized within the follow-up period. DNA extracted from FFPE materials was subjected to Affymetrix OncoScan™ FFPE Express molecular inversion probe microarray platform for analysis of copy number changes and mutational status. Results were cross validated with Sanger sequencing, FISH and immunohistochemistry. A higher number of chromosomal aberrations were observed in cases which recurred/metastasized, with median events of 19 compared to 3.5 in cases which did not recur/metastasize. High-level amplification and homozygous deletions were detected exclusively in the former group. Regions of high-level amplification included MDM4 (1q32.1), RAF1 (3p25), EGFR (7p12) and PDZD2 (5p13.3). EGFR amplification was confirmed on FISH and accompanied by intense EGFR immunostaining. Regions of homozygous deletion included CDKN2A (9p21) and MACROD2 (20p12.1). Homozygous deletion of 9p21 which involved CDKN2A was accompanied by loss of protein expression. No mutations were identified in all samples. These findings provide insights into identifying target genes and pathways exploited by phyllodes tumours, which would aid future development of individualised therapy. "	"Genetic signature of histiocytic sarcoma revealed by a sleeping beauty transposon genetic screen in mice. Histiocytic sarcoma is a rare, aggressive neoplasm that responds poorly to therapy. Histiocytic sarcoma is thought to arise from macrophage precursor cells via genetic changes that are largely undefined. To improve our understanding of the etiology of histiocytic sarcoma we conducted a forward genetic screen in mice using the Sleeping Beauty transposon as a mutagen to identify genetic drivers of histiocytic sarcoma. Sleeping Beauty mutagenesis was targeted to myeloid lineage cells using the Lysozyme2 promoter. Mice with activated Sleeping Beauty mutagenesis had significantly shortened lifespan and the majority of these mice developed tumors resembling human histiocytic sarcoma. Analysis of transposon insertions identified 27 common insertion sites containing 28 candidate cancer genes. Several of these genes are known drivers of hematological neoplasms, like Raf1, Fli1, and Mitf, while others are well-known cancer genes, including Nf1, Myc, Jak2, and Pten. Importantly, several new potential drivers of histiocytic sarcoma were identified and could serve as targets for therapy for histiocytic sarcoma patients. "	"Functional module search in protein networks based on semantic similarity improves the analysis of proteomics data. The continuously evolving field of proteomics produces increasing amounts of data while improving the quality of protein identifications. Albeit quantitative measurements are becoming more popular, many proteomic studies are still based on non-quantitative methods for protein identification. These studies result in potentially large sets of identified proteins, where the biological interpretation of proteins can be challenging. Systems biology develops innovative network-based methods, which allow an integrated analysis of these data. Here we present a novel approach, which combines prior knowledge of protein-protein interactions (PPI) with proteomics data using functional similarity measurements of interacting proteins. This integrated network analysis exactly identifies network modules with a maximal consistent functional similarity reflecting biological processes of the investigated cells. We validated our approach on small (H9N2 virus-infected gastric cells) and large (blood constituents) proteomic data sets. Using this novel algorithm, we identified characteristic functional modules in virus-infected cells, comprising key signaling proteins (e.g. the stress-related kinase RAF1) and demonstrate that this method allows a module-based functional characterization of cell types. Analysis of a large proteome data set of blood constituents resulted in clear separation of blood cells according to their developmental origin. A detailed investigation of the T-cell proteome further illustrates how the algorithm partitions large networks into functional subnetworks each representing specific cellular functions. These results demonstrate that the integrated network approach not only allows a detailed analysis of proteome networks but also yields a functional decomposition of complex proteomic data sets and thereby provides deeper insights into the underlying cellular processes of the investigated system. "	"Identification of a novel de novo deletion in RAF1 associated with biventricular hypertrophy in Noonan syndrome. Biventricular hypertrophy (BVH) is a disease state characterized by the thickening of the ventricle walls. The differential diagnosis of BVH with other congenital and familial diseases in which increased ventricle wall thickness is a prominent clinical feature is fundamental due to its therapeutic and prognostic value, mainly during infancy. We describe a 2-month-old infant presenting BVH. Using exome sequencing, we identified a novel de novo 3-bp deletion in the RAF1 gene that is located in the binding active site for the 14-3-3 peptide. Based on docking calculations, we demonstrate that this novel mutation impairs protein/target binding, thus constitutively activating Ras signaling, which is a dysregulation associated with Noonan syndrome. Finally, our study underlines the importance of molecular modeling to understand the roles of novel mutations in pathogenesis."	"RAF1 mutations in childhood-onset dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a highly heterogeneous trait with sarcomeric gene mutations predominating. The cause of a substantial percentage of DCMs remains unknown, and no gene-specific therapy is available. On the basis of resequencing of 513 DCM cases and 1,150 matched controls from various cohorts of distinct ancestry, we discovered rare, functional RAF1 mutations in 3 of the cohorts (South Indian, North Indian and Japanese). The prevalence of RAF1 mutations was ~9% in childhood-onset DCM cases in these three cohorts. Biochemical studies showed that DCM-associated RAF1 mutants had altered kinase activity, resulting in largely unaltered ERK activation but in AKT that was hyperactivated in a BRAF-dependent manner. Constitutive expression of these mutants in zebrafish embryos resulted in a heart failure phenotype with AKT hyperactivation that was rescued by treatment with rapamycin. These findings provide new mechanistic insights and potential therapeutic targets for RAF1-associated DCM and further expand the clinical spectrum of RAF1-related human disorders."	"LEOPARD syndrome: a variant of Noonan syndrome strongly associated with hypertrophic cardiomyopathy. LEOPARD syndrome is an autosomal dominant condition related to Noonan syndrome, although it occurs less frequently. The aim of this study was to characterize the clinical and molecular features of a large series of LEOPARD syndrome patients. We collected clinical data from 19 patients in 10 hospitals. Bidirectional sequencing analysis of PTPN11, RAF1, and BRAF focused on exons carrying recurrent mutations. After facial dysmorphism, structural heart defects (88%) were the most common feature described. Hypertrophic cardiomyopathy (71%) was diagnosed more often than pulmonary valve stenosis (35%). Multiple lentigines or café au lait spots were found in 84% of the series, and deafness was diagnosed in 3 patients. Mutations in PTPN11 were identified in 16 (84%) patients (10 patients had the recurrent LEOPARD syndrome mutation, p.Thr468Met) (NP_002825.3T468M). Two other patients had a mutation in RAF, and 1 patient had a mutation in BRAF. When compared with other neurocardiofaciocutaneous syndromes, LEOPARD syndrome patients showed a higher prevalence of hypertrophic cardiomyopathy and cutaneous abnormalities, and a lower prevalence of pulmonary valve stenosis and short stature. LEOPARD syndrome patients display distinctive features apart from multiple lentigines, such as a higher prevalence of hypertrophic cardiomyopathy and lower prevalence of short stature. Given its clinical implications, active search for hypertrophic cardiomyopathy is warranted in Noonan syndrome spectrum patients, especially in LEOPARD syndrome patients."	"Conserved residues at the MAPKs binding interfaces that regulate transcriptional machinery. Signaling through c-Raf downstream pathways is the crucial subject of extensive studies because over expressed or mutated genes in this pathway lead to a variety of human cancers. On the basis of cellular localization, this pathway has been sub-divided into two cascades. The first RAF1-MEK1-ERK2 cascade which remains in the cytosol, whereas the second MEK1-ERK2-RSKs transduces into the nucleus and regulates the transactivation function. But how a few amino acids critically regulate the transcriptional function remains unclear. In this paper, we have performed in silico studies to unravel how atomic complexities at the MEK1-ERK2-RSKs pathways intercedes different functional responses. The secondary structure of the ERK, RSKs have been modeled using Jpred3, PSI-PHRED, protein modeler, and Integrated sequence analyzer from Discovery Studio software. Peptides of RSKs isozymes (RSK1/2/3/4) were built and docked on ERK2 structure using ZDOCK module. The hydropathy index for the RSKs molecules was determined using the KYTE-DOOLITTLE plot. The simulations of complex molecules were carried out using a CHARMM force field. The protein-protein interactions (PPIs) in different cascade of MAP kinase (MAPK) have been shown to be similar to those predicted in vivo. PPIs elucidate that the amino acids located at the conserved domains of MAPK pathways are responsible for transactivation functions. "	"Conserved oncogenic behavior of the FAM83 family regulates MAPK signaling in human cancer. FAM83B (family with sequence similarity 83, member B) was recently identified as a novel oncogene involved in activating CRAF/MAPK signaling and driving epithelial cell transformation. FAM83B is one of eight members of a protein family (FAM83) characterized by a highly conserved domain of unknown function (DUF1669), which is necessary and sufficient to drive transformation. Here, it is demonstrated that additional FAM83 members also exhibit oncogenic properties and have significantly elevated levels of expression in multiple human tumor types using a TissueScan Cancer Survey Panel PCR array and database mining. Furthermore, modeling the observed tumor expression of FAM83A, FAM83C, FAM83D, or FAM83E promoted human mammary epithelial cell (HMEC) transformation, which correlated with the ability of each FAM83 member to bind CRAF (RAF1) and promote CRAF membrane localization. Conversely, ablation of FAM83A or FAM83D from breast cancer cells resulted in diminished MAPK signaling with marked suppression of growth in vitro and tumorigenicity in vivo. Importantly, each FAM83 member was determined to be elevated in at least one of 17 distinct tumor types examined, with FAM83A, FAM83B, and FAM83D most frequently overexpressed in several diverse tissue types. Finally, evidence suggests that elevated expression of FAM83 members is associated with elevated tumor grade and decreased overall survival. FAM83 proteins represent a novel family of oncogenes suitable for the development of cancer therapies aimed at suppressing MAPK signaling."	"RASSF1A inactivation unleashes a tumor suppressor/oncogene cascade with context-dependent consequences on cell cycle progression. The RASSF1A gene is one of the most frequently inactivated genes in over 30 different types of cancers (H. Donninger, M. D. Vos, and G. J. Clark, J. Cell Sci. 120:3163-3172, 2007, http://dx.doi.org/10.1242/jcs.010389). Despite the prevalence of RASSF1A silencing in human cancer, the mechanism by which RASSF1A functions as a tumor suppressor is not well understood. Characterization of the consequences of RASSF1A loss on epithelial cell proliferation revealed that RASSF1A expression suppresses both microRNA 21 (miR-21) expression and extracellular signal-regulated kinase 1/2 (ERK1/2) activation. The mechanism of the former is through restraint of SCF(βTrCP)-dependent destruction of the repressor element 1 silencing transcription factor (REST) tumor suppressor and consequent inhibition of miR-21 promoter activation. The mechanism of the latter is through physical sequestration of MST2, which results in accumulation of inactivating S259 phosphorylation of RAF1. Whether or not inactivation of these RASSF1A regulatory relationships can unleash enhanced proliferative capacity is dependent upon the coupling of SCF(βTrCP) and miR-21 to suppression of SKP2 protein translation and stability. Airway epithelial cultures retain this coupling and therefore respond to RASSF1A inactivation by p27-dependent cell cycle arrest. In contrast, colonic crypt-derived epithelial cells have uncoupled SCF(βTrCP) from SKP2 and respond to RASSF1A inactivation by enhanced proliferation rates. These observations help account for context-specific molecular etiology of oncogenic transformation and suggest intervention strategies for recently developed SKP2 inhibitors. "	"Prolongation of life in rats with malignant glioma by intranasal siRNA/drug codelivery to the brain with cell-penetrating peptide-modified micelles. New therapeutic strategies are required to develop candidate drugs and ensure efficient delivery of these drugs to the brain and the central nervous system (CNS). Small interfering RNA (siRNA)-based therapies have been investigated as potential novel approaches for the treatment of brain disorders. Previously, we showed that Tat, a cell-penetrating peptide derived from HIV-Tat, and the modified block copolymers (MPEG-PCL-Tat) can form stable complexes with siRNA or can be loaded with an anticancer drug and efficiently deliver the drugs to the brain tissue via intranasal delivery. In this study, to develop a novel, efficient, and safe therapeutic strategy for managing brain disorders, we used MPEG-PCL-Tat micelles with a nose-to-brain delivery system to investigate its therapeutic effects on a rat model of malignant glioma using siRNA with a Raf-1 (siRaf-1)/camptothecin (CPT) codelivery system. MPEG-PCL-Tat and CPT-loaded MPEG-PCL-Tat can form a stable complex with siRNA with a particle size from 60 to 200 nm and a positive charge at N/P ratios up to 5. Additionally, MPEG-PCL-Tat/siRaf-1 and CPT-loaded MPEG-PCL-Tat/siRaf-1 have fostered cell death in rat glioma cells after the high cellular uptake of siRaf-1/drug by the MPEG-PCL-Tat carrier. Furthermore, compared to the unloaded MPEG-PCL-Tat/siRaf-1 complex, a CPT-loaded MPEG-PCL-Tat/siRaf-1 complex achieved the high therapeutic effect because of the additive effects of CPT and siRaf-1. These results indicate that drug/siRNA codelivery using MPEG-PCL-Tat nanomicelles with nose-to-brain delivery is an excellent therapeutic approach for brain and CNS diseases. "	"Ubiquitous expression of MAKORIN-2 in normal and malignant hematopoietic cells and its growth promoting activity. Makorin-2 (MKRN2) is a highly conserved protein and yet its functions are largely unknown. We investigated the expression levels of MKRN2 and RAF1 in normal and malignant hematopoietic cells, and leukemia cell lines. We also attempted to delineate the role of MKRN2 in umbilical cord blood CD34+ stem/progenitor cells and K562 cell line by over-expression and inhibition of MKRN2 through lentivirus transduction and shRNA nucleofection, respectively. Our results provided the first evidence on the ubiquitous expression of MKRN2 in normal hematopoietic cells, embryonic stem cell lines, primary leukemia and leukemic cell lines of myeloid, lymphoid, erythroid and megakaryocytic lineages. The expression levels of MKRN2 were generally higher in primary leukemia samples compared with those in age-matched normal BM cells. In all leukemia subtypes, there was no significant correlation between expression levels of MKRN2 and RAF1. sh-MKRN2-silenced CD34+ cells had a significantly lower proliferation capacity and decreased levels of the early stem/progenitor subpopulation (CFU-GEMM) compared with control cultures. Over-expression of MKRN2 in K562 cells increased cell proliferation. Our results indicated possible roles of MKRN2 in normal and malignant hematopoiesis. "	"Light-mediated kinetic control reveals the temporal effect of the Raf/MEK/ERK pathway in PC12 cell neurite outgrowth. It has been proposed that differential activation kinetics allows cells to use a common set of signaling pathways to specify distinct cellular outcomes. For example, nerve growth factor (NGF) and epidermal growth factor (EGF) induce different activation kinetics of the Raf/MEK/ERK signaling pathway and result in differentiation and proliferation, respectively. However, a direct and quantitative linkage between the temporal profile of Raf/MEK/ERK activation and the cellular outputs has not been established due to a lack of means to precisely perturb its signaling kinetics. Here, we construct a light-gated protein-protein interaction system to regulate the activation pattern of the Raf/MEK/ERK signaling pathway. Light-induced activation of the Raf/MEK/ERK cascade leads to significant neurite outgrowth in rat PC12 pheochromocytoma cell lines in the absence of growth factors. Compared with NGF stimulation, light stimulation induces longer but fewer neurites. Intermittent on/off illumination reveals that cells achieve maximum neurite outgrowth if the off-time duration per cycle is shorter than 45 min. Overall, light-mediated kinetic control enables precise dissection of the temporal dimension within the intracellular signal transduction network. "	"Bone marrow mononuclear cell transplantation promotes therapeutic angiogenesis via upregulation of the VEGF-VEGFR2 signaling pathway in a rat model of vascular dementia. Bone marrow mononuclear cells (BMMNCs) are important for angiogenesis after stroke. We investigated the effects of BMMNCs on cognitive function, angiogenesis, and the vascular endothelial growth factor (VEGF)-VEGF receptor 2 (VEGFR2) signaling pathway in a rat model of vascular dementia. We transplanted BMMNCs into rats that had undergone permanent bilateral occlusion of the common carotid arteries (2VO) and observed their migration in vivo. On day 28, we assessed cognitive function with the Morris Water Maze test and examined vascular density and white matter damage within the corpus striatum by staining with fluorescein lycopersicon esculentum (tomato) lectin or Luxol fast blue. We evaluated expression of VEGF, rapidly accelerated fibrosarcoma 1 (Raf1), and extracellular-signal-regulated kinases 1 and 2 (ERK1/2) in the ischemic hemisphere by Western blot analysis on day 7 after cell transplantation. Contribution of the VEGF-VEGFR2 signaling pathway was confirmed by using VEGFR2 inhibitor SU5416. BMMNCs penetrated the blood-brain barrier and reached the ischemic cortex and white matter or incorporated into vascular walls of 2VO rats. BMMNC-treated 2VO rats had better learning and memory, higher vascular density, and less white matter damage than did vehicle-treated rats. The beneficial effects of BMMNCs were abolished by pretreatment of rats with SU5416. Protein expression of VEGF and phosphorylated Raf1 and ERK1/2 was also significantly increased by BMMNC treatment, but this upregulation was reversed by SU5416. BMMNCs can enhance angiogenesis, reduce white matter damage, and promote cognitive recovery in 2VO rats. The angiogenic effect may result from upregulation of the VEGF-VEGFR2 signaling pathway. "	"Oncogenic and sorafenib-sensitive ARAF mutations in lung adenocarcinoma. Targeted cancer therapies often induce &quot;outlier&quot; responses in molecularly defined patient subsets. One patient with advanced-stage lung adenocarcinoma, who was treated with oral sorafenib, demonstrated a near-complete clinical and radiographic remission for 5 years. Whole-genome sequencing and RNA sequencing of primary tumor and normal samples from this patient identified a somatic mutation, ARAF S214C, present in the cancer genome and expressed at high levels. Additional mutations affecting this residue of ARAF and a nearby residue in the related kinase RAF1 were demonstrated across 1% of an independent cohort of lung adenocarcinoma cases. The ARAF mutations were shown to transform immortalized human airway epithelial cells in a sorafenib-sensitive manner. These results suggest that mutant ARAF is an oncogenic driver in lung adenocarcinoma and an indicator of sorafenib response. "	"Cardiovascular disease in Noonan syndrome. Noonan syndrome (NS), a relatively common autosomal dominant disorder with an incidence of 1 in 1000 to 2500 live births, is the most common syndromic cause of congenital heart disease after Trisomy 21. To comprehensively define the spectrum of cardiac morphology and specific clinical course of a large cohort of NS patients. Retrospective, descriptive case series study. An international Harvard-based NS registry was combined with clinical data from NS patients followed at Boston Children's Hospital, Massachusetts, USA. We identified 293 patients with NS. Cardiovascular disease was seen in 81% (n=237) including pulmonary stenosis in 57%, secundum atrial septal defects in 32% and hypertrophic cardiomyopathy in 16%. A genetic mutation of the RAS-MAPK signalling pathway was identified in 62% (n=136). Genotype-phenotype associations were noted between PTPN11 mutations and atrial septal defects (p=0.001), and pulmonary stenosis (p&lt;0.001). RAF1 mutations were associated with hypertrophic cardiomyopathy (p&lt;0.001). Cardiovascular outcomes that differed specifically in a NS cohort included high re-intervention rates (65%) after percutaneous balloon pulmonary valvuloplasty for valvar pulmonary stenosis. Additionally, in NS patients with hypertrophic cardiomyopathy, a clinically significant regression of hypertrophy (17%) was observed as was a markedly higher incidence of concomitant congenital heart defects (70%). Patients with NS have a distinct spectrum of cardiac phenotypes that may have a natural history and response to therapy atypical to that normally seen in non-syndromic heart disease. A diagnosis of NS in a patient with pulmonary stenosis or infant-onset hypertrophic cardiomyopathy would facilitate condition-specific counselling on outcome and prognosis."	"PHLPP is a negative regulator of RAF1, which reduces colorectal cancer cell motility and prevents tumor progression in mice. Hyperactivation of the RAS-RAF signaling pathway in colorectal tumors is associated with metastasis and poor outcomes of patients. Little is known about how RAS-RAF signaling is turned off once activated. We investigated how the pH domain and leucine-rich repeat protein phosphatases (PHLPPs) control RAS-RAF signaling and colorectal cancer (CRC) development. We used co-immunoprecipitation assays to identify substrates of PHLPP1 and PHLPP2. We studied phosphorylation of RAF1 in CRC cells that express exogenous PHLPP1 or PHLPP2, or lentiviral-based small hairpin RNAs against their transcripts; we measured effects on cell motility, migration, and invasion in vitro. Tumor progression and survival were analyzed in Phlpp1(-/-) Apc(Min) and Apc(Min)/Phlpp1(-/-) mice. Microarray datasets of colorectal tumor and nontumor tissues were analyzed for PHLPP gene expression. PHLPP1 and 2 were found to dephosphorylate RAF1 at S338, inhibiting its kinase activity in vitro and in CRC cells. In cells, knockdown of PHLPP1 or PHLPP2 increased the amplitude and duration of RAF-MEK-ERK signaling downstream of epidermal growth factor receptor and KRAS, whereas overexpression had the opposite effect. In addition, knockdown of PHLPP1 or PHLPP2 caused CRC cells to express markers of the epithelial-mesenchymal transition, and increased cell migration and invasion. Apc(Min)/Phlpp1(-/-) mice had decreased survival and developed larger intestinal and colon tumors compared to Apc(Min) mice. Whereas Apc(Min) mice developed mostly low-grade adenomas, 20% of the tumors that developed in Apc(Min)/Phlpp1(-/-) mice were invasive adenocarcinomas. Normal villi and adenomas of Apc(Min)/Phlpp1(-/-) mice had significantly fewer apoptotic cells than Apc(Min) mice. Human CRC patient microarray data revealed that the expression of PHLPP1 or PHLPP2 is positively correlated with CDH1. PHLPP1 and PHLPP2 dephosphorylate RAF1 to reduce its signaling, increase the invasive and migratory activities of CRC cells, and activate the epithelial-mesenchymal transition. In Apc(Min) mice, loss of PHLPP1 promotes tumor progression."	"Rapamycin antagonizes TNF induction of VCAM-1 on endothelial cells by inhibiting mTORC2. Recruitment of circulating leukocytes into inflamed tissues depends on adhesion molecules expressed by endothelial cells (ECs). Here we report that rapamycin pretreatment reduced the ability of TNF-treated ECs to capture T cells under conditions of venular flow. This functional change was caused by inhibition of TNF-induced expression of vascular cell adhesion molecule-1 (VCAM-1) and could be mimicked by knockdown of mammalian target of rapamycin (mTOR) or rictor, but not raptor, implicating mTORC2 as the target of rapamycin for this effect. Mechanistically, mTORC2 acts through Akt to repress Raf1-MEK1/2-ERK1/2 signaling, and inhibition of mTORC2 consequently results in hyperactivation of ERK1/2. Increased ERK1/2 activity antagonizes VCAM-1 expression by repressing TNF induction of the transcription factor IRF-1. Preventing activation of ERK1/2 reduced the ability of rapamycin to inhibit TNF-induced VCAM-1 expression. In vivo, rapamycin inhibited mTORC2 activity and potentiated activation of ERK1/2. These changes correlated with reduced endothelial expression of TNF-induced VCAM-1, which was restored via pharmacological inhibition of ERK1/2. Functionally, rapamycin reduced infiltration of leukocytes into renal glomeruli, an effect which was partially reversed by inhibition of ERK1/2. These data demonstrate a novel mechanism by which rapamycin modulates the ability of vascular endothelium to mediate inflammation and identifies endothelial mTORC2 as a potential therapeutic target."	"Methods to study the Ras2 protein activation state and the subcellular localization of Ras-GTP in Saccharomyces cerevisiae. Ras proteins were highly conserved during evolution. They function as a point of convergence for different signalling pathways in eukaryotes and are involved in a wide range of cellular responses (shift from gluconeogenic to fermentative growth, breakdown of storage carbohydrates, stress resistance, growth control and determination of life span, morphogenesis and development, and others). These proteins are members of the small GTPase superfamily, which are active in the GTP-bound form and inactive in the GDP-bound form. Given the importance of studies on the Ras protein activation state to understand the detailed mechanism of Ras-mediated signal transduction, we provide here a simple, sensitive, and reliable method, based on the high affinity interaction of Ras-GTP with the Ras binding domain (RBD) of Raf1, to measure the level of Ras2-GTP on total Ras2 in Saccharomyces cerevisiae. Moreover, to study the localization of Ras-GTP in vivo in single S. cerevisiae cells, we expressed a probe consisting of a GFP fusion with a trimeric Ras Binding Domain of Raf1 (eGFP-RBD3), which was proven to be a useful live-cell biosensor for Ras-GTP in mammalian cells. "	"Diagnosis of Noonan syndrome and related disorders using target next generation sequencing. Noonan syndrome is an autosomal dominant developmental disorder with a high phenotypic variability, which shares clinical features with other rare conditions, including LEOPARD syndrome, cardiofaciocutaneous syndrome, Noonan-like syndrome with loose anagen hair, and Costello syndrome. This group of related disorders, so-called RASopathies, is caused by germline mutations in distinct genes encoding for components of the RAS-MAPK signalling pathway. Due to high number of genes associated with these disorders, standard diagnostic testing requires expensive and time consuming approaches using Sanger sequencing. In this study we show how targeted Next Generation Sequencing (NGS) technique can enable accurate, faster and cost-effective diagnosis of RASopathies. In this study we used a validation set of 10 patients (6 positive controls previously characterized by Sanger-sequencing and 4 negative controls) to assess the analytical sensitivity and specificity of the targeted NGS. As second step, a training set of 80 enrolled patients with a clinical suspect of RASopathies has been tested. Targeted NGS has been successfully applied over 92% of the regions of interest, including exons for the following genes: PTPN11, SOS1, RAF1, BRAF, HRAS, KRAS, NRAS, SHOC, MAP2K1, MAP2K2, CBL. All expected variants in patients belonging to the validation set have been identified by targeted NGS providing a detection rate of 100%. Furthermore, all the newly detected mutations in patients from the training set have been confirmed by Sanger sequencing. Absence of any false negative event has been excluded by testing some of the negative patients, randomly selected, with Sanger sequencing. Here we show how molecular testing of RASopathies by targeted NGS could allow an early and accurate diagnosis for all enrolled patients, enabling a prompt diagnosis especially for those patients with mild, non-specific or atypical features, in whom the detection of the causative mutation usually requires prolonged diagnostic timings when using standard routine. This approach strongly improved genetic counselling and clinical management."	"Activation of AKT/ERK confers non-small cell lung cancer cells resistance to vinorelbine. Vinorelbine is a semi-synthetic vinca-alkaloid approved for the treatment of non-small cell lung cancer (NSCLC). However, the lower objective response rate and higher adverse effects of vinorelbine hinder its wide use in treatment of advanced NSCLC. Therefore, it is of great interest to uncover the biomarkers for sensitivity of NSCLC cells to vinorelbine to allow the identification of patients most likely to benefit from vinorelbine-based chemotherapy and to improve the therapy. In present work, four NSCLC cell lines were divided into vinorelbine-sensitive (VS) group and vinorelbine-resistant (VR) group according to their sensitivities to vinorelbine. And then the gene expression profiles of these two groups was compared, the differentially expressed genes (expression difference higher than 100% and p&lt;0.05, totally 496 genes) were applied to Ingenuity Pathway Analysis (IPA). IPA results showed that NF-κB and PTEN signaling were predicted to be inactivated in VR cell lines, which was partially validated by quantitative PCR or western blotting experiments. The higher expression of RAF1 mRNA and the activation of AKT/ERK proteins in VR NSCLC cell lines may confer resistance to vinorelbine. Our work may provide potential pathway signature for vinorelbine sensitivity and some therapeutic targets for combined therapy. "	"ATGs: Scaffolds for MAPK/ERK signaling. Autophagy maintains cellular homeostasis by sequestering unwanted material within autophagosomes and transferring these to lysosomes for degradation. Several signaling cascades activate or suppress autophagy in response to diverse environmental cues. However, whether autophagic structures per se regulate cell signaling was not known. The MAPK/ERK (mitogen-activated protein kinase) pathway controls several functions in the cell, and studies have identified the importance of scaffold proteins in modulating MAPK signaling through the spatial coordination of the RAF1-MAP2K/MEK-MAPK cascade. Growth factors increase the nuclear localization and activity of MAPK, and since the nucleus has been reported to contain LC3, an autophagy-related protein, we asked whether autophagic structures could serve as cytosolic and nuclear scaffolds for growth factor-induced MAPK phosphorylation."	"Immortalization of erythroblasts by c-MYC and BCL-XL enables large-scale erythrocyte production from human pluripotent stem cells. The lack of knowledge about the mechanism of erythrocyte biogenesis through self-replication makes the in vitro generation of large quantities of cells difficult. We show that transduction of c-MYC and BCL-XL into multipotent hematopoietic progenitor cells derived from pluripotent stem cells and gene overexpression enable sustained exponential self-replication of glycophorin A(+) erythroblasts, which we term immortalized erythrocyte progenitor cells (imERYPCs). In an inducible expression system, turning off the overexpression of c-MYC and BCL-XL enabled imERYPCs to mature with chromatin condensation and reduced cell size, hemoglobin synthesis, downregulation of GCN5, upregulation of GATA1, and endogenous BCL-XL and RAF1, all of which appeared to recapitulate normal erythropoiesis. imERYPCs mostly displayed fetal-type hemoglobin and normal oxygen dissociation in vitro and circulation in immunodeficient mice following transfusion. Using critical factors to induce imERYPCs provides a model of erythrocyte biogenesis that could potentially contribute to a stable supply of erythrocytes for donor-independent transfusion. "	"Small G proteins Rac1 and Ras regulate serine/threonine protein phosphatase 5 (PP5)·extracellular signal-regulated kinase (ERK) complexes involved in the feedback regulation of Raf1. Serine/threonine protein phosphatase 5 (PP5, PPP5C) is known to interact with the chaperonin heat shock protein 90 (HSP90) and is involved in the regulation of multiple cellular signaling cascades that control diverse cellular processes, such as cell growth, differentiation, proliferation, motility, and apoptosis. Here, we identify PP5 in stable complexes with extracellular signal-regulated kinases (ERKs). Studies using mutant proteins reveal that the formation of PP5·ERK1 and PP5·ERK2 complexes partially depends on HSP90 binding to PP5 but does not require PP5 or ERK1/2 activity. However, PP5 and ERK activity regulates the phosphorylation state of Raf1 kinase, an upstream activator of ERK signaling. Whereas expression of constitutively active Rac1 promotes the assembly of PP5·ERK1/2 complexes, acute activation of ERK1/2 fails to influence the phosphatase-kinase interaction. Introduction of oncogenic HRas (HRas(V12)) has no effect on PP5-ERK1 binding but selectively decreases the interaction of PP5 with ERK2, in a manner that is independent of PP5 and MAPK/ERK kinase (MEK) activity, yet paradoxically requires ERK2 activity. Additional studies conducted with oncogenic variants of KRas4B reveal that KRas(L61), but not KRas(V12), also decreases the PP5-ERK2 interaction. The expression of wild type HRas or KRas proteins fails to reduce PP5-ERK2 binding, indicating that the effect is specific to HRas(V12) and KRas(L61) gain-of-function mutations. These findings reveal a novel, differential responsiveness of PP5-ERK1 and PP5-ERK2 interactions to select oncogenic Ras variants and also support a role for PP5·ERK complexes in regulating the feedback phosphorylation of PP5-associated Raf1. "	"Systems biology approach to stage-wise characterization of epigenetic genes in lung adenocarcinoma. Epigenetics refers to the reversible functional modifications of the genome that do not correlate to changes in the DNA sequence. The aim of this study is to understand DNA methylation patterns across different stages of lung adenocarcinoma (LUAD). Our study identified 72, 93 and 170 significant DNA methylated genes in Stages I, II and III respectively. A set of common 34 significant DNA methylated genes located in the promoter section of the true CpG islands were found across stages, and these were: HOX genes, FOXG1, GRIK3, HAND2, PRKCB, etc. Of the total significant DNA methylated genes, 65 correlated with transcription function. The epigenetic analysis identified the following novel genes across all stages: PTGDR, TLX3, and POU4F2. The stage-wise analysis observed the appearance of NEUROG1 gene in Stage I and its re-appearance in Stage III. The analysis showed similar epigenetic pattern across Stage I and Stage III. Pathway analysis revealed important signaling and metabolic pathways of LUAD to correlate with epigenetics. Epigenetic subnetwork analysis identified a set of seven conserved genes across all stages: UBC, KRAS, PIK3CA, PIK3R3, RAF1, BRAF, and RAP1A. A detailed literature analysis elucidated epigenetic genes like FOXG1, HLA-G, and NKX6-2 to be known as prognostic targets. Integrating epigenetic information for genes with expression data can be useful for comprehending in-depth disease mechanism and for the ultimate goal of better target identification."	"Novel association of neurofibromatosis type 1-causing mutations in families with neurofibromatosis-Noonan syndrome. Neurofibromatosis-Noonan syndrome (NFNS) is a rare condition with clinical features of both neurofibromatosis type 1 (NF1) and Noonan syndrome (NS). All three syndromes belong to the RASopathies, which are caused by dysregulation of the RAS-MAPK pathway. The major gene involved in NFNS is NF1, but co-occurring NF1 and PTPN11 mutations in NFNS have been reported. Knowledge about possible involvement of additional RASopathy-associated genes in NFNS is, however, very limited. We present a comprehensive clinical and molecular analysis of eight affected individuals from three unrelated families displaying features of NF1 and NFNS. The genetic etiology of the clinical phenotypes was investigated by mutation analysis, including NF1, PTPN11, SOS1, KRAS, NRAS, BRAF, RAF1, SHOC2, SPRED1, MAP2K1, MAP2K2, and CBL. All three families harbored a heterozygous NF1 variant, where the first family had a missense variant, c.5425C&gt;T;p.R1809C, the second family a recurrent 4bp-deletion, c.6789_6792delTTAC;p.Y2264Tfs*6, and the third family a splice-site variant, c.2991-1G&gt;A, resulting in skipping of exon 18 and an in-frame deletion of 41 amino acids. These NF1 variants have all previously been reported in NF1 patients. Surprisingly, both c.6789_6792delTTAC and c.2991-1G&gt;A are frequently associated with NF1, but association to NFNS has, to our knowledge, not previously been reported. Our results support the notion that NFNS represents a variant of NF1, genetically distinct from NS, and is caused by mutations in NF1, some of which also cause classical NF1. Due to phenotypic overlap between NFNS and NS, we propose screening for NF1 mutations in NS patients, preferentially when café-au-lait spots are present."	"Activation of protein kinase C delta by ψδRACK peptide promotes embryonic stem cell proliferation through ERK 1/2. The protein kinase C (PKC) family of serine/threonine kinases participate in embryonic stem cell (ESC) proliferation/self-renewal. A few stimuli that induce ESC proliferation activate several PKC isoenzymes including δPKC, however, the role of this isoenzyme under basal conditions that maintain undifferentiated ESCs remains to be determined. Herewith, we aimed to characterize signaling events that occur in undifferentiated ESCs upon δPKC activation. Using phosphoproteomics and a δPKC specific activator peptide, ψδRACK, it was seen that the majority of proteins whose phosphorylation increased upon δPKC activation participate in cell proliferation. Network analysis of these proteins directly connected δPKC to Raf1 and 14-3-3. Experimental validation studies showed that activation of δPKC increased its binding to 14-3-3, transiently activated ERK1/2 and increased ESC proliferation. Independently inhibiting MEK or PI3 kinase both led to a decrease in proliferation of approximately 50%, but δPKC activation only recovered the effect of PI3 kinase inhibition suggesting that ERK1/2 activation via δPKC is probably a parallel pathway to PI3 kinase and that both pathways are necessary for undifferentiated ESC proliferation. The use of embryonic stem cells and induced pluripotent stem cells for regenerative therapies is still a challenge. Understanding the underlying mechanisms that keep these cells proliferating with the ability to differentiate in more than 200 cell types (self-renewal) will aid in the future use of these cells therapeutically. Using a targeted phosphoproteomics study, insights into signaling pathways involved in ESC proliferation can be obtained. Modulating these pathways will aid the obtention of a larger number of self-renewing stem cells and induced pluripotent stem cells that can be used therapeutically."	"Sulphoxythiocarbamates modify cysteine residues in HSP90 causing degradation of client proteins and inhibition of cancer cell proliferation. Heat shock protein 90 (HSP90) has a key role in the maintenance of the cellular proteostasis. However, HSP90 is also involved in stabilisation of oncogenic client proteins and facilitates oncogene addiction and cancer cell survival. The development of HSP90 inhibitors for cancer treatment is an area of growing interest as such agents can affect multiple pathways that are linked to all hallmarks of cancer. This study aimed to test the hypothesis that targeting cysteine residues of HSP90 will lead to degradation of client proteins and inhibition of cancer cell proliferation. Combining chemical synthesis, biological evaluation, and structure-activity relationship analysis, we identified a new class of HSP90 inhibitors. Click chemistry and protease-mass spectrometry established the sites of modification of the chaperone. The mildly electrophilic sulphoxythiocarbamate alkyne (STCA) selectively targets cysteine residues of HSP90, forming stable thiocarbamate adducts. Without interfering with the ATP-binding ability of the chaperone, STCA destabilises the client proteins RAF1, HER2, CDK1, CHK1, and mutant p53, and decreases proliferation of breast cancer cells. Addition of a phenyl or a tert-butyl group in tandem with the benzyl substituent at nitrogen increased the potency. A new compound, S-4, was identified as the most robust HSP90 inhibitor within a series of 19 derivatives. By virtue of their cysteine reactivity, sulphoxythiocarbamates target HSP90, causing destabilisation of its client oncoproteins and inhibiting cell proliferation."	"Analogs of the Allosteric Heat Shock Protein 70 (Hsp70) Inhibitor, MKT-077, as Anti-Cancer Agents. The rhodacyanine, MKT-077, has anti-proliferative activity against cancer cell lines through its ability to inhibit members of the heat shock protein 70 (Hsp70) family of molecular chaperones. However, MKT-077 is rapidly metabolized, which limits its use as either a chemical probe or potential therapeutic. We report the synthesis and characterization of MKT-077 analogs designed for greater stability. The most potent molecules, such as 30 (JG-98), were at least 3-fold more active than MKT-077 against the breast cancer cell lines MDA-MB-231 and MCF-7 (EC50 values of 0.4 ± 0.03 μM and 0.7 ± 0.2 μM, respectively). The analogs modestly destabilized the chaperone &quot;clients&quot;, Akt1 and Raf1, and induced apoptosis in these cells. Further, the microsomal half-life of JG-98 was improved at least 7-fold (t1/2 = 37 min) compared to MKT-077 (t1/2 &lt; 5 min). Finally, NMR titration experiments suggested that these analogs bind an allosteric site that is known to accommodate MKT-077. These studies advance MKT-077 analogs as chemical probes for studying Hsp70's roles in cancer."	"The precise timeline of transcriptional regulation reveals causation in mouse somitogenesis network. In vertebrate development, the segmental pattern of the body axis is established as somites, masses of mesoderm distributed along the two sides of the neural tube, are formed sequentially in the anterior-posterior axis. This mechanism depends on waves of gene expression associated with the Notch, Fgf and Wnt pathways. The underlying transcriptional regulation has been studied by whole-transcriptome mRNA profiling; however, interpretation of the results is limited by poor resolution, noisy data, small sample size and by the absence of a wall clock to assign exact time for recorded points. We present a method of Maximum Entropy deconvolution in both space and time and apply it to extract, from microarray timecourse data, the full spatiotemporal expression profiles of genes involved in mouse somitogenesis. For regulated genes, we have reconstructed the temporal profiles and determined the timing of expression peaks along the somite cycle to a single-minute resolution. Our results also indicate the presence of a new class of genes (including Raf1 and Hes7) with two peaks of activity in two distinct phases of the somite cycle. We demonstrate that the timeline of gene expression precisely reflects their functions in the biochemical pathways and the direction of causation in the regulatory networks. By applying a novel framework for data analysis, we have shown a striking correspondence between gene expression times and their interactions and regulations during somitogenesis. These results prove the key role of finely tuned transcriptional regulation in the process. The presented method can be readily applied to studying somite formation in other datasets and species, and to other spatiotemporal processes."	"Integrins promote cytokinesis through the RSK signaling axis. Cytokinesis is the final stage in cell division. Although integrins can regulate cytokinesis, the mechanisms involved are not fully understood. In this study, we demonstrate that integrin-regulated ERK (extracellular signal-related kinase) and RSK (p90 ribosomal S6 kinase) signaling promotes successful cytokinesis. Inhibiting the activation of ERK and RSK in CHO cells by a mutation in the integrin β1 cytoplasmic tail or with pharmacological inhibitors results in the accumulation of cells with midbodies and the formation of binucleated cells. Activation of ERK and RSK signaling by the expression of constitutively active RAF1 suppresses the mutant phenotype in a RSK-dependent manner. Constitutively active RSK2 also restores cytokinesis inhibited by the mutant integrin. Importantly, the regulatory role of the RSK pathway is not specific to CHO cells. MCF-10A human mammary epithelial cells and HPNE human pancreatic ductal epithelial cells exhibit a similar dependence on RSK for successful cytokinesis. In addition, depriving mitotic MCF10A cells of integrin-mediated adhesion by incubating them in suspension suppressed ERK and RSK activation and resulted in a failure of cytokinesis. Furthermore, inhibition of RSK or integrins within the 3D context of a developing salivary gland organ explant also leads to an accumulation of epithelial cells with midbodies, suggesting a similar defect in cytokinesis. Interestingly, neither ERK nor RSK regulates cytokinesis in human fibroblasts, suggesting cell-type specificity. Taken together, our results identify the integrin-RSK signaling axis as an important regulator of cytokinesis in epithelial cells. We propose that the proper interaction of cells with their microenvironment through integrins contributes to the maintenance of genomic stability by promoting the successful completion of cytokinesis. "	"The c-FLIPL cleavage product p43FLIP promotes activation of extracellular signal-regulated kinase (ERK), nuclear factor κB (NF-κB), and caspase-8 and T cell survival. Caspase-8 is now appreciated to govern both apoptosis following death receptor ligation and cell survival and growth via inhibition of the Ripoptosome. Cells must therefore carefully regulate the high level of caspase-8 activity during apoptosis versus the modest levels observed during cell growth. The caspase-8 paralogue c-FLIP is a good candidate for a molecular rheostat of caspase-8 activity. c-FLIP can inhibit death receptor-mediated apoptosis by competing with caspase-8 for recruitment to FADD. However, full-length c-FLIPL can also heterodimerize with caspase-8 independent of death receptor ligation and activate caspase-8 via an activation loop in the C terminus of c-FLIPL. This triggers cleavage of c-FLIPL at Asp-376 by caspase-8 to produce p43FLIP. The continued function of p43FLIP has, however, not been determined. We demonstrate that acute deletion of endogenous c-FLIP in murine effector T cells results in loss of caspase-8 activity and cell death. The lethality and caspase-8 activity can both be rescued by the transgenic expression of p43FLIP. Furthermore, p43FLIP associates with Raf1, TRAF2, and RIPK1, which augments ERK and NF-κB activation, IL-2 production, and T cell proliferation. Thus, not only is c-FLIP the initiator of caspase-8 activity during T cell activation, it is also an initial caspase-8 substrate, with cleaved p43FLIP serving to both stabilize caspase-8 activity and promote activation of pathways involved with T cell growth. "	"Myocardial KRAS(G12D) expression does not cause cardiomyopathy in mice. Germ-line mutations in genes encoding components of the RAS/mitogen-activated protein kinase (MAPK) pathway cause developmental disorders called RASopathies. Hypertrophic cardiomyopathy (HCM) is the most common myocardial pathology and a leading cause of death in RASopathy patients. KRAS mutations are found in Noonan and cardio-facio-cutaneous syndromes. KRAS mutations, unlike mutations of RAF1 and HRAS, are rarely associated with HCM. This has been attributed to the fact that germ-line KRAS mutations cause only a moderate up-regulation of the MAPK pathway. Highly bioactive KRAS mutations have been hypothesized to cause severe cardiomyopathy incompatible with life. The aim of this study was to define the impact of KRAS(G12D) expression in the heart. To generate mice with endogenous cardiomyocyte-specific KRAS(G12D) expression (cKRAS(G12D) mice), we bred mice with a Cre-inducible allele expressing KRAS(G12D) from its endogenous promoter (Kras2(LSL)) to mice expressing Cre under control of the cardiomyocyte-specific α-myosin heavy chain promoter (αMHC-Cre). cKRAS(G12D) mice showed high levels of myocardial ERK and AKT signalling. However, surprisingly, cKRAS(G12D) mice were born in Mendelian ratios, appeared healthy, and had normal function, size, and histology of the heart. Mice with cardiomyocyte-specific KRAS(G12D) expression do not develop heart pathology. These results challenge the view that the level of MAPK activation correlates with the severity of HCM in RASopathies and suggests that MAPK-independent strategies may be of interest in the development of new treatments for these syndromes."	"RTK/ERK pathway under natural selection associated with prostate cancer. Prostate cancer (PCa) is a global disease causing large numbers of deaths every year. Recent studies have indicated the RTK/ERK pathway might be a key pathway in the development of PCa. However, the exact association and evolution-based mechanism remain unclear. This study was conducted by combining genotypic and phenotypic data from the Chinese Consortium for Prostate Cancer Genetics (ChinaPCa) with related databases such as the HapMap Project and Genevar. In this analysis, expression of quantitative trait loci (eQTLs) analysis, natural selection and gene-based pathway analysis were involved. The pathway analysis confirmed the positive relationship between PCa risk and several key genes. In addition, combined with the natural selection, it seems that 4 genes (EGFR, ERBB2, PTK2, and RAF1) with five SNPs (rs11238349, rs17172438, rs984654, rs11773818, and rs17172432) especially rs17172432, might be pivotal factors in the development of PCa. The results indicate that the RTK/ERK pathway under natural selection is a key link in PCa risk. The joint effect of the genes and loci with positive selection might be one reason for the development of PCa. Dealing with all the factors simultaneously might give insight into prevention and aid in predicting the success of potential therapies for PCa. "	"Nodes and biological processes identified on the basis of network analysis in the brain of the senescence accelerated mice as an Alzheimer's disease animal model. Harboring the behavioral and histopathological signatures of Alzheimer's disease (AD), senescence accelerated mouse-prone 8 (SAMP8) mice are currently considered a robust model for studying AD. However, the underlying mechanisms, prioritized pathways and genes in SAMP8 mice linked to AD remain unclear. In this study, we provide a biological interpretation of the molecular underpinnings of SAMP8 mice. Our results were derived from differentially expressed genes in the hippocampus and cerebral cortex of SAMP8 mice compared to age-matched SAMR1 mice at 2, 6, and 12 months of age using cDNA microarray analysis. On the basis of PPI, MetaCore and the co-expression network, we constructed a distinct genetic sub-network in the brains of SAMP8 mice. Next, we determined that the regulation of synaptic transmission and apoptosis were disrupted in the brains of SAMP8 mice. We found abnormal gene expression of RAF1, MAPT, PTGS2, CDKN2A, CAMK2A, NTRK2, AGER, ADRBK1, MCM3AP, and STUB1, which may have initiated the dysfunction of biological processes in the brains of SAMP8 mice. Specifically, we found microRNAs, including miR-20a, miR-17, miR-34a, miR-155, miR-18a, miR-22, miR-26a, miR-101, miR-106b, and miR-125b, that might regulate the expression of nodes in the sub-network. Taken together, these results provide new insights into the biological and genetic mechanisms of SAMP8 mice and add an important dimension to our understanding of the neuro-pathogenesis in SAMP8 mice from a systems perspective. "	"Identification of a farnesol analog as a Ras function inhibitor using both an in vivo Ras activation sensor and a phenotypic screening approach. Mutations in Ras isoforms such as K-Ras, N-Ras, and H-Ras contribute to roughly 85, 15, and 1% of human cancers, respectively. Proper membrane targeting of these Ras isoforms, a prerequisite for Ras activity, requires farnesylation or geranylgeranylation at the C-terminal CAAX box. We devised an in vivo screening strategy based on monitoring Ras activation and phenotypic physiological outputs for assaying synthetic Ras function inhibitors (RFI). Ras activity was visualized by the translocation of RBD Raf1 -GFP to activated Ras at the plasma membrane. By using this strategy, we screened one synthetic farnesyl substrate analog (AGOH) along with nine putative inhibitors and found that only m-CN-AGOH inhibited Ras activation. Phenotypic analysis of starving cells could be used to monitor polarization, motility, and the inability of these treated cells to aggregate properly during fruiting body formation. Incorporation of AGOH and m-CN-AGOH to cellular proteins was detected by western blot. These screening assays can be incorporated into a high throughput screening format using Dictyostelium discoideum and automated microscopy to determine effective RFIs. These RFI candidates can then be further tested in mammalian systems."	"The RTK/ERK pathway is associated with prostate cancer risk on the SNP level: a pooled analysis of 41 sets of data from case-control studies. Prostate cancer (PCa) is a malignant disease influencing numerous men worldwide every year. However, the exact pathogenesis and the genes, environment, and other factors involved have not been explained clearly. Some studies have proposed that cell signaling pathways might play a key role in the development and progression of PCa. According to our previous study, the RTK/ERK pathway containing nearly 40 genes was associated with PCa risk. On the basis of these genes, we conducted a meta-analysis with our own Chinese Consortium for Prostate Cancer Genetics (ChinaPCa) study and available studies in the databases to describe the association between the pathway and PCa on the SNP level. The results suggested that rs4764695/IGF1 (recessive model: pooled OR=0.92, 95%CI=0.852-0.994, P=0.034; I(2)=0%, P=0.042; allele analysis: pooled OR=0.915, 95%CI=0.874-0.958, P=0; I(2)=0%, P=0.424; codominant model: OR=0.835, 95%CI=0.762-0.916, P=0; I(2)=0%, P=0.684) and rs1570360/VEGF (recessive model: OR=0.596, 95%CI=0.421-0.843, P=0.003; I(2)=23.9%, P=0.269; codominant model: OR=0.576, 95%CI=0.404-0.820, P=0.002; I(2)=49.1%, P=0.140) were significantly associated with PCa. In subgroup analysis, the relationship was also found in Caucasians for IGF1 (dominant model: OR=0.834, 95%CI=0.769-0.904, P=0; allele analysis: OR=0.908, 95%CI=0.863-0.955, P=0; AA vs CC: OR=0.829, 95%CI=0.750-0.916, P=0; AC vs CC: OR=0.837, 95%CI=0.768-0.912, P=0). In addition, in Asians (allele analysis: OR=0.21, 95%CI=0.168-0.262, P=0) and Caucasians (recessive model: OR=0.453, 95%CI: 0.240-0.855, P=0.015; codominant model: OR=0.464, 95%CI=0.240-0.898, P=0.023) for VEGF, the association was significant. The results indicated that rs4764695/IGF1 and rs1570360/VEGF might play a key role in the development and progression of PCa. On the SNP level, we suggest that the study gives us a new view of gene-pathway analysis and targeted therapy for PCa. "	"Network analysis of neurotransmitter related human kinase genes: possible role of SRC, RAF1, PTK2B? Previous co-expression analysis of human kinase genes highlighted 119 genes in neurotransmitter-related activity (based on Go:Terms). Using a merged interactome dataset, we analyzed the network of these Neurotransmitter Related Human Kinase Genes. Using the full interactome dataset we extended the network and calculating degrees and closeness centralities we identified SRC, MAPK1, RAF1, PTK2B and AKT1 kinase genes as potentially relevant nodes which did not show relevant activity in the original experimental study. As AKT1 and MAPK1 have already been indicated in various neuronal functions, we hypothesize a potential direct or indirect role for SRC, RAF1, PTK2B genes in neurotransmission and in central nervous system signaling processes. "	"Integrated enrichment analysis of variants and pathways in genome-wide association studies indicates central role for IL-2 signaling genes in type 1 diabetes, and cytokine signaling genes in Crohn's disease. Pathway analyses of genome-wide association studies aggregate information over sets of related genes, such as genes in common pathways, to identify gene sets that are enriched for variants associated with disease. We develop a model-based approach to pathway analysis, and apply this approach to data from the Wellcome Trust Case Control Consortium (WTCCC) studies. Our method offers several benefits over existing approaches. First, our method not only interrogates pathways for enrichment of disease associations, but also estimates the level of enrichment, which yields a coherent way to promote variants in enriched pathways, enhancing discovery of genes underlying disease. Second, our approach allows for multiple enriched pathways, a feature that leads to novel findings in two diseases where the major histocompatibility complex (MHC) is a major determinant of disease susceptibility. Third, by modeling disease as the combined effect of multiple markers, our method automatically accounts for linkage disequilibrium among variants. Interrogation of pathways from eight pathway databases yields strong support for enriched pathways, indicating links between Crohn's disease (CD) and cytokine-driven networks that modulate immune responses; between rheumatoid arthritis (RA) and &quot;Measles&quot; pathway genes involved in immune responses triggered by measles infection; and between type 1 diabetes (T1D) and IL2-mediated signaling genes. Prioritizing variants in these enriched pathways yields many additional putative disease associations compared to analyses without enrichment. For CD and RA, 7 of 8 additional non-MHC associations are corroborated by other studies, providing validation for our approach. For T1D, prioritization of IL-2 signaling genes yields strong evidence for 7 additional non-MHC candidate disease loci, as well as suggestive evidence for several more. Of the 7 strongest associations, 4 are validated by other studies, and 3 (near IL-2 signaling genes RAF1, MAPK14, and FYN) constitute novel putative T1D loci for further study. "	"A novel noncanonical signaling pathway for the μ-opioid receptor. The µ-opioid receptor (OPRM1) signals as a classic G protein-coupled receptor by activating heterotrimeric Gi/Go proteins resulting in adenylyl cyclase (AC) inhibition. Such AC inhibition is desensitized after prolonged agonist treatment. However, after receptor desensitization, the intracellular cAMP level remains regulated by OPRM1, as demonstrated by the intracellular cAMP level increase or AC superactivation upon removal of an agonist or addition of an antagonist. We now demonstrate that such intracellular cAMP regulation is mediated by a novel noncanonical signaling pathway resulting from OPRM1 being converted to a receptor tyrosine kinase (RTK)-like entity. This noncanonical OPRM1 signaling is initiated by the receptor recruiting and activating Src kinase within the receptor complex, leading to phosphorylation of the OPRM1 Tyr(336) residue. Phospho-Tyr(336) serves as the docking site for growth factor receptor-bound protein/son of sevenless, leading to the recruitment and activation of the Ras/Raf-1 and subsequent phosphorylation and activation of AC5/6 by Raf-1. Such sequence of events was established by the absence of Ras/Raf1 recruitment and activation by the OPRM1-Y336F mutant, by the presence of Src kinase inhibitor 4-amino-5-(4-chlorophenyl)-7-(t-butyl)pyrazolo[3,4-d]pyrimidine (PP2) or the absence of Src activity, by the presence of specific Raf-1 inhibitor GW5074 (5-iodo-3-[(3,5-dibromo-4-hydroxyphenyl) methylene]-2-indolinone) or the absence of Raf-1, or by the dominant negative RasN17 mutant. Src together with Ras activates Raf1 which was established by the inability of the Raf1-Tyr(340/341) mutant to activate AC. Hence, the phosphorylation of OPRM1 at Tyr(336) by Src serves as the trigger for the conversion of a classic Gi/Go-coupled receptor into an RTK-like entity, resulting in a noncanonical pathway even after the original Gi/Go signals are blunted. "	"Genetic variation in IL-16 miRNA target site and time to prostate cancer diagnosis in African-American men. Men with a family history of prostate cancer and African-American men are at high risk for prostate cancer and in need of personalized risk estimates to inform screening decisions. This study evaluated genetic variants in genes encoding microRNA (miRNA) binding sites for informing of time to prostate cancer diagnosis among ethnically diverse, high-risk men undergoing prostate cancer screening. The Prostate Cancer Risk Assessment Program (PRAP) is a longitudinal screening program for high-risk men. The eligibility includes men aged between 35 and 69 years with a family history of prostate cancer or African descent. Participants with 1 follow-up visit were included in the analyses (n=477). Genetic variants in genes encoding miRNA binding sites (ALOX15 (arachidonate 15-lipooxygenase), IL-16, IL-18 and RAF1 (v-raf-1 murine leukemia viral oncogene homolog 1)) previously implicated in prostate cancer development were evaluated. Genotyping methods included Taqman SNP Genotyping Assay or pyrosequencing. Cox models were used to assess time to prostate cancer diagnosis by risk genotype. Among 256 African Americans with one follow-up visit, the TT genotype at rs1131445 in IL-16 was significantly associated with earlier time to prostate cancer diagnosis vs the CC/CT genotypes (P=0.013), with a suggestive association after correction for false discovery (P=0.065). Hazard ratio after controlling for age and PSA for TT vs CC/CT among African Americans was 3.0 (95% confidence interval: 1.26-7.12). No association with time to diagnosis was detected among Caucasians by IL-16 genotype. No association with time to prostate cancer diagnosis was found for the other miRNA target genotypes. Genetic variation in IL-16 encoding miRNA target site may be informative of time to prostate cancer diagnosis among African-American men enrolled in prostate cancer risk assessment, which may inform individualized prostate cancer screening strategies in the future."	"Pulmonary interstitial glycogenosis in a patient ultimately diagnosed with Noonan syndrome. We describe an infant prenatally diagnosed with hydrops fetalis ultimately found to have Noonan syndrome (NS). Prior to genetic confirmation of diagnosis, lung biopsy was performed which revealed widespread pulmonary interstitial glycogenosis (PIG), abnormal alveolarization, and mild inflammation. Although genetic alterations have been identified in NS, the mutations are heterogeneous and the diagnosis remains one of clinical suspicion. The combination of PIG and NS has not yet been documented in the literature. While the underlying pathophysiologic mechanism of PIG is unclear, we suggest that the mitogen-activated protein kinase signal transduction pathway members (PTPN11, KRAS, SOS1, RAF1, SHOC2, NRAS) involved in cellular growth factor signaling, which are affected in NS, can provide clues. In addition, this case demonstrates that empiric corticosteroids can be considered in complicated cases since biopsy did reveal an inflammatory component, not typically noted in PIG."	"Effects of butyltins on mitogen-activated-protein kinase kinase kinase and Ras activity in human natural killer cells. Butyltins (BTs) contaminate the environment and are found in human blood. BTs, tributyltin (TBT) and dibutyltin (DBT) diminish the cytotoxic function and levels of key proteins of human natural killer (NK) cells. NK cells are an initial immune defense against tumors, virally infected cells and antibody-coated cells and thus critical to human health. The signaling pathways that regulate NK cell functions include mitogen-activated protein kinases (MAPKs). Studies have shown that exposure to BTs leads to activation of specific MAPKs and MAPK kinases (MAP2Ks) in human NK cells. MAP2K kinases (MAP3Ks) are upstream activators of MAP2Ks, which then activate MAPKs. The current study examined if BT-induced activation of MAP3Ks was responsible for MAP2K and thus, MAPK activation. This study examines the effects of TBT and DBT on the total levels of two MAP3Ks, c-Raf and ASK1, as well as activating and inhibitory phosphorylation sites on these MAP3Ks. In addition, the immediate upstream activator of c-Raf, Ras, was examined for BT-induced alterations. Our results show significant activation of the MAP3K, c-Raf, in human NK cells within 10 min of TBT exposure and the MAP3K, ASK1, after 1 h exposures to TBT. In addition, our results suggest that both TBT and DBT affect the regulation of c-Raf."	"Tegumentary manifestations of Noonan and Noonan-related syndromes. Noonan and Noonan-related syndromes are common autosomal dominant disorders with neuro-cardio-facial-cutaneous and developmental involvement. The objective of this article is to describe the most relevant tegumentary findings in a cohort of 41 patients with Noonan or Noonan-related syndromes and to detail certain aspects of the molecular mechanisms underlying ectodermal involvement. A standard questionnaire was administered. A focused physical examination and a systematic review of clinical records was performed on all patients to verify the presence of tegumentary alterations. The molecular analysis of this cohort included sequencing of the following genes in all patients: PTPN1, SOS1, RAF1, KRAS, SHOC2 and BRAF. The most frequent tegumentary alterations were xeroderma (46%), photosensitivity (29%), excessive hair loss (24%), recurrent oral ulcers (22%), curly hair (20%), nevi (17%), markedly increased palmar and plantar creases (12%), follicular hyperkeratosis (12%), palmoplantar hyperkeratosis (10%), café-au-lait spots (10%) and sparse eyebrows (7%). Patients with mutations in PTPN11 had lower frequencies of palmar and plantar creases and palmar/plantar hyperkeratosis compared with the other patients. We observed that patients with mutations in genes directly involved in cell proliferation kinase cascades (SOS1, BRAF, KRAS and RAF1) had a higher frequency of hyperkeratotic lesions compared with patients with mutations in genes that have a more complex interaction with and modulation of cell proliferation kinase cascades (PTPN11)."	NA	NA
+"RIT1"	"Noonan syndrome"	"Complicated ventricular arrhythmia and hematologic myeloproliferative disorder in RIT1-associated Noonan syndrome: Expanding the phenotype and review of the literature. Noonan syndrome is an autosomal dominant disorder secondary to RASopathies, which are caused by germ-line mutations in genes encoding components of the RAS mitogen-activated protein kinase pathway. RIT1 (OMIM *609591) was recently reported as a disease gene for Noonan syndrome. We present a patient with RIT1-associated Noonan syndrome, who in addition to the congenital heart defect, had monocytosis, myeloproliferative disorder, and accelerated idioventricular rhythm that was associated with severe hemodynamic instability. Noonan syndrome was suspected given the severe pulmonary stenosis, persistent monocytosis, and &quot;left-shifted&quot; complete blood counts without any evidence of an infectious process. Genetic testing revealed that the patient had a heterozygous c.221 C&gt;G (pAla74Gly) mutation in the RIT1. We report a case of neonatal Noonan syndrome associated with RIT1 mutation. The clinical suspicion for Noonan syndrome was based only on the congenital heart defect, persistent monocytosis, and myeloproliferative process as the child lacked all other hallmarks characteristics of Noonan syndrome. However, the patient had an unusually malignant ventricular dysrhythmia that lead to his demise. The case highlights the fact that despite its heterogeneous presentation, RIT1-associated Noonan syndrome can be extremely severe with poor outcome."	"SOS1 mutations in Noonan syndrome: Cardiomyopathies and not only congenital heart defects! Report of six patients including two novel variants and literature review. Noonan syndrome (NS) is caused by mutations in more than 10 genes, mainly PTPN11, SOS1, RAF1, and RIT1. Congenital heart defects and cardiomyopathy (CMP) are associated with significant morbidity and mortality in NS. Although hypertrophic CMP has &quot;classically&quot; been reported in association to RAF1, RIT1, and PTPN11 variants, SOS1 appears to be poorly related to CMP. Patients with NS attending our Center from January 2013 to June 2018 were eligible for inclusion if they carried SOS1 variants and presented with-or developed-CMP. Literature review describing the co-existence of SOS1 mutation and CMP was also performed. We identified six patients with SOS1 variants and CMP (male to female ratio 2:1) including two novel variants. CMP spectrum encompassed: (a) dilated CMP, (b) nonobstructive hypertrophic CMPs, and (c) obstructive hypertrophic CMPs. Survival is 100%. Literature review included 16 SOS1 mutated in CMP. CMP, mainly hypertrophic, has been often reported in association to RAF1, RIT1, and PTPN11 variants. Differently from previous reports, due to the frequent association of SOS1 variants and CMP in our single center experience, we suggest potential underestimated proportion of SOS1 in pediatric CMPs."	"Mek Inhibitor Reverses Hypertrophic Cardiomyopathy in RIT1 Mutated Noonan Syndrome: For the first time, hypertrophic cardiomyopathy was reversed in Noonan syndrome associated with a RIT1 mutation. NA"	"Cardiac transplantation in children with Noonan syndrome. NS and related RAS/MAPK pathway (RASopathy) disorders are the leading genetic cause of HCM presenting in infancy. HCM is a major cause of morbidity and mortality in children with Noonan spectrum disorders, especially in the first year of life. Previously, there have been only isolated reports of heart transplantation as a treatment for heart failure in NS. We report on 18 patients with NS disorders who underwent heart transplantation at seven US pediatric heart transplant centers. All patients carried a NS diagnosis: 15 were diagnosed with NS and three with NSML. Sixteen of eighteen patients had comprehensive molecular genetic testing for RAS pathway mutations, with 15 having confirmed pathogenic mutations in PTPN11, RAF1, and RIT1 genes. Medical aspects of transplantation are reported as well as NS-specific medical issues. Twelve of eighteen patients described in this series were surviving at the time of data collection. Three patients died following transplantation prior to discharge from the hospital, and another three died post-discharge. Heart transplantation in NS may be a more frequent occurrence than is evident from the literature or registry data. A mortality rate of 33% is consistent with previous reports of patients with HCM transplanted in infancy and early childhood. Specific considerations may be important in evaluation of this population for heart transplant, including a potentially increased risk for malignancies as well as lymphatic, bleeding, and coagulopathy complications."	"HIF-1α-induced RIT1 promotes liver cancer growth and metastasis and its deficiency increases sensitivity to sorafenib. Ras-like-without-CAAX-1 (RIT1) belongs to the RAS superfamily of small GTPases, which plays critical roles in tumor progression. However, little is known about the roles of RIT1 in hepatocellular carcinoma (HCC). Here we found that RIT1 expression was positively associated with the presence of intrahepatic metastasis and the histological grade of HCC and higher RIT1 expression indicated shorter overall survival in HCC patients. In vitro and in vivo studies revealed that RIT1 functioned as an oncogene, as overexpression of RIT1 enhanced HCC cell proliferation and aggressive behavior, whereas silencing RIT1 expression repressed the malignant behaviors. Furthermore, RIT1 deficiency increased drug sensitivity to sorafenib treatment. We further demonstrated that hypoxia-inducible factor 1α (HIF-1α) directly transcriptionally upregulated RIT1, and its stableness was positively correlated with RIT1 expression in HCC tissues. Knockdown of RIT1 attenuated the invasion and migration induced by hypoxia. Collectively, our data highlight the significance of HIF-1α/RIT1 axis in driving HCC progression and sorafenib resistance."	"Molecular and phenotypic spectrum of Noonan syndrome in Chinese patients. Noonan syndrome (NS) is a common autosomal dominant/recessive disorder. No large-scale study has been conducted on NS in China, which is the most populous country in the world. Next-generation sequencing (NGS) was used to identify pathogenic variants in patients that exhibited NS-related phenotypes. We assessed the facial features and clinical manifestations of patients with pathogenic or likely pathogenic variants in the RAS-MAPK signaling pathway. Gene-related Chinese NS facial features were described using artificial intelligence (AI).NGS identified pathogenic variants in 103 Chinese patients in eight NS-related genes: PTPN11 (48.5%), SOS1 (12.6%), SHOC2 (11.7%), KRAS (9.71%), RAF1 (7.77%), RIT1 (6.8%), CBL (0.97%), NRAS (0.97%), and LZTR1 (0.97%). Gene-related facial representations showed that each gene was associated with different facial details. Eight novel pathogenic variants were detected and clinical features because of specific genetic variants were reported, including hearing loss, cancer risk due to a PTPN11 pathogenic variant, and ubiquitous abnormal intracranial structure due to SHOC2 pathogenic variants. NGS facilitates the diagnosis of NS, especially for patients with mild/moderate and atypical symptoms. Our study describes the genotypic and phenotypic spectra of NS in China, providing new insights into distinctive clinical features due to specific pathogenic variants."	"Endocrine Complications of Noonan Syndrome beyond Short Stature. Noonan syndrome (NS) is a diagnosis that is made clinically based on features including typical facies, congenital heart defects, short stature and developmental delay. Approximately 50% of the patients have identified mutations in the PTPN11 gene, and a smaller percentage of mutations have been reported in other genes such as SOS1, RAF1 and RIT1 Despite normal birth length, patients typically reach adult height below normal. Other than growth, endocrine complications of NS are not as commonly reported. These include possible pathology in thyroid function, pubertal development and bone metabolism. Some investigators have looked to see if genetic mutations in these patients could pose a risk for future endocrinopathies. This chapter reviews reports on endocrine dysfunction other than growth in patients with NS. The information is meant to enhance awareness in those providers who care for these patients to the possibility of other existing endocrinopathies. Most importantly, it supports and highlights the endocrinologist's role in the care of patients with NS."	"Computational analysis of data from a genome-wide screening identifies new PARP1 functional interactors as potential therapeutic targets. Knowledge of interaction network between different proteins can be a useful tool in cancer therapy. To develop new therapeutic treatments, understanding how these proteins contribute to dysregulated cellular pathways is an important task. PARP1 inhibitors are drugs used in cancer therapy, in particular where DNA repair is defective. It is crucial to find new candidate interactors of PARP1 as new therapeutic targets in order to increase efficacy of PARP1 inhibitors and expand their clinical utility. By a yeast-based genome wide screening, we previously discovered 90 candidate deletion genes that suppress growth-inhibition phenotype conferred by PARP1 in yeast. Here, we performed an integrated and computational analysis to deeply study these genes. First, we identified which pathways these genes are involved in and putative relations with PARP1 through g:Profiler. Then, we studied mutation pattern and their relation to cancer by interrogating COSMIC and DisGeNET database; finally, we evaluated expression and alteration in several cancers with cBioPortal, and the interaction network with GeneMANIA. We identified 12 genes belonging to PARP1-related pathways. We decided to further validate RIT1, INCENP and PSTA1 in MCF7 breast cancer cells. We found that RIT1 and INCENP affected PARylation and PARP1 protein level more significantly in PARP1 inhibited cells. Furthermore, downregulation of RIT1, INCENP and PSAT1 affected olaparib sensitivity of MCF7 cells. Our study identified candidate genes that could have an effect on PARP inhibition therapy. Moreover, we also confirm that yeast-based screenings could be very helpful to identify novel potential therapy factors."	"Noonan Syndrome in South Africa: Clinical and Molecular Profiles. Noonan Syndrome (NS) is a common autosomal dominant multisystem disorder, caused by mutations in more than 10 genes in the Ras/MAPK signaling pathway. Differential mutation frequencies are observed across populations. Clinical expressions of NS are highly variable and include short stature, distinctive craniofacial dysmorphism, cardiovascular abnormalities, and developmental delay. Little is known about phenotypic specificities and molecular characteristics of NS in Africa. The present study has investigated patients with NS in Cape Town (South Africa). Clinical features were carefully documented in a total of 26 patients. Targeted Next-Generation Sequencing (NGS) was performed on 16 unrelated probands, using a multigene panel comprising 14 genes: PTPN11, SOS1, RIT1, A2ML1, BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NRAS, RAF1, SHOC2, and SPRED1. The median age at diagnosis was 4.5 years (range: 1 month-51 years). Individuals of mixed-race ancestry were most represented (53.8%), followed by black Africans (30.8%). Our cohort revealed a lower frequency of pulmonary valve stenosis (34.6%) and a less severe developmental milestones phenotype. Molecular analysis found variants predicted to be pathogenic in 5 / 16 cases (31.2%). Among these mutations, two were previously reported: MAP2K1-c.389A&gt;G (p.Tyr130Cys) and PTPN11 - c.1510A&gt;G (p.Met504Val); three are novel: CBL-c.2520T&gt;G (p.Cys840Trp), PTPN11- c.1496C&gt;T (p.Ser499Phe), and MAP2K1- c.200A&gt;C (p.Asp67Ala). Molecular dynamic simulations indicated that novel variants identified impact the stability and flexibility of their corresponding proteins. Genotype-phenotype correlations showed that clinical features of NS were more typical in patients with variants in MAP2K1. This first application of targeted NGS for the molecular diagnosis of NS in South Africans suggests that, while there is no major phenotypic difference compared to other populations, the distribution of genetic variants in NS in South Africans may be different."	"A novel RIT1 mutation causes deterioration of Noonan syndrome-associated cardiac hypertrophy. NA"	"New Noonan syndrome model mice with RIT1 mutation exhibit cardiac hypertrophy and susceptibility to β-adrenergic stimulation-induced cardiac fibrosis. Noonan syndrome (NS) is a genetic disorder characterized by short stature, a distinctive facial appearance, and heart defects. We recently discovered a novel NS gene, RIT1, which is a member of the RAS subfamily of small GTPases. NS patients with RIT1 mutations have a high incidence of hypertrophic cardiomyopathy and edematous phenotype, but the specific role of RIT1 remains unclear. To investigate how germline RIT1 mutations cause NS, we generated knock-in mice that carried a NS-associated Rit1 A57G mutation (Rit1<sup>A57G/+</sup>). We investigated the phenotypes of Rit1<sup>A57G/+</sup> mice in fetal and adult stages as well as the effects of isoproterenol on cardiac function in Rit1<sup>A57G/+</sup> mice. Rit1<sup>A57G/+</sup> embryos exhibited decreased viability, edema, subcutaneous hemorrhage and AKT activation. Surviving Rit1<sup>A57G/+</sup> mice had a short stature, craniofacial abnormalities and splenomegaly. Cardiac hypertrophy and cardiac fibrosis with increased expression of S100A4, vimentin and periostin were observed in Rit1<sup>A57G/+</sup> mice compared to Rit1<sup>+/+</sup> mice. Upon isoproterenol stimulation, cardiac fibrosis was drastically increased in Rit1<sup>A57G/+</sup> mice. Phosphorylated (at Thr308) AKT levels were also elevated in isoproterenol-treated Rit1<sup>A57G/+</sup> hearts. The A57G mutation in Rit1 causes cardiac hypertrophy, fibrosis and other NS-associated features. Biochemical analysis indicates that the AKT signaling pathway might be related to downstream signaling in the RIT1 A57G mutant at a developmental stage and under β-adrenergic stimulation in the heart. FUND: The Grants-in-Aid were provided by the Practical Research Project for Rare/Intractable Diseases from the Japan Agency for Medical Research and Development, the Japan Society for the Promotion of Science KAKENHI Grant."	"RIT1 oncoproteins escape LZTR1-mediated proteolysis. RIT1 oncoproteins have emerged as an etiologic factor in Noonan syndrome and cancer. Despite the resemblance of RIT1 to other members of the Ras small guanosine triphosphatases (GTPases), mutations affecting RIT1 are not found in the classic hotspots but rather in a region near the switch II domain of the protein. We used an isogenic germline knock-in mouse model to study the effects of RIT1 mutation at the organismal level, which resulted in a phenotype resembling Noonan syndrome. By mass spectrometry, we detected a RIT1 interactor, leucine zipper-like transcription regulator 1 (LZTR1), that acts as an adaptor for protein degradation. Pathogenic mutations affecting either RIT1 or LZTR1 resulted in incomplete degradation of RIT1. This led to RIT1 accumulation and dysregulated growth factor signaling responses. Our results highlight a mechanism of pathogenesis that relies on impaired protein degradation of the Ras GTPase RIT1."	"The spectrum of genetic variants and phenotypic features of Southeast Asian patients with Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant disorder that belongs to a group of developmental disorders called RASopathies with overlapping features and multiple causative genes. The aim of the study was to identify mutations underlying this disorder in patients from Southeast Asia and characterize their clinical presentations. Patients were identified from the hospital's Genetics clinics after assessment by attending clinical geneticists. A targeted gene panel was used for next-generation sequencing on genomic DNA extracted from the blood samples of 17 patients. Heterozygous missense variants were identified in 13 patients: eight were in PTPN11, three in SOS1, and one each in RIT1 and KRAS. All are known variants that have been reported in patients with NS. Of the 13 patients with identified variants, 10 had short stature, the most common feature for NS. Four of the eight patients with PTPN11 variants had atrial septal defect. Only two had pulmonary stenosis which is reported to be common for PTPN11 mutation carriers. Another two had hypertrophic cardiomyopathy, a feature which is negatively associated with PTPN11 mutations. Our study provides the mutation and phenotypic spectrum of NS from a new population group. The molecular testing yield of 76% is similar to other studies and shows that the targeted panel approach is useful for identifying genetic mutations in NS which has multiple causative genes. The molecular basis for the phenotypes of the remaining patients remains unknown and would need to be uncovered via sequencing of additional genes or other investigative methods."	"Clinical and mutation profile of pediatric patients with RASopathy-associated hypertrophic cardiomyopathy: results from a Chinese cohort. The RASopathies are a class of developmental disorders caused by germline mutations in the RAS-mitogen-activated protein kinase (MAPK) pathway. Hypertrophic cardiomyopathy (HCM) has been frequently described in children with RASopathy, but only a minority of patients have received formal genotyping. The purpose of this study was to evaluate the genetic basis and clinical outcome of pediatric patients with RASopathy-associated HCM. We retrospectively reviewed the mutation spectrum and clinical outcome of all the patients with RASopathy derived from 168 pediatric HCM cases referred to our institution between January 2012 and July 2018. A heterozygous missense mutation in one of known RASopathy genes was identified in 46 unrelated children with HCM. Mutations in the PTPN11 gene were the most prevalent (19/46); this was followed by mutations in RAF1 (11/46), KRAS (5/46), RIT1 (4/46), BRAF (3/46), SOS1 (2/46), HRAS (1/46), and SHOC2 (1/46). Moreover, two compound heterozygous missense mutations in the LZTR1 gene were identified in one patient with the Noonan syndrome phenotype and HCM. The median age at the diagnosis of HCM was 3.0 months (range 0 months to 8.1 years). Twenty-one of the patients had significant left ventricular outflow tract obstruction and 32 had concomitant congenital heart disease. Three patients with a mutation in exon 13 of the PTPN11 gene died of cardiac failure at the ages of 3.0, 3.5, and 6.0 months. The remaining 44 patients were alive after an average follow-up time of 3.9 years (0.5 to 17.1 years, median 2.9 years) from the initial diagnosis of HCM, including 5 patients with spontaneous regression of their cardiac hypertrophy. RASopathy-associated HCM is a heterogeneous genetic condition characterized by early-onset cardiac hypertrophy and a high prevalence of co-existing congenital heart disease, which is most frequently related to specific mutations in the PTPN11 gene. Rapidly progressive HCM, resulting in an early death, is uncommon in RASopathy patients except those with specific mutations in exon 13 of the PTPN11 gene."	"Cancer Stem Cell based molecular predictors of tumor recurrence in Oral squamous cell carcinoma. This study aimed to identify the cancer stem cell specific biomarkers that can be effective candidate prognosticators of oral squamous cell carcinoma. Microarray-based meta-analysis derived transcriptional profile of head and neck cancers was compared with the Cancer Stem Cell database to arrive at a subset of markers. This subset was further co-related with clinico-pathological parameters, recurrence and survival of oral cancer patients (n = 313) in The Cancer Genome Atlas database and in oral cancer (n = 28) patients. Meta-analysis in combination with database comparison identified a panel of 221 genes specific to head and neck cancers. Correlation of expression levels of these markers in the oral cancer cohort of The Cancer Genome Atlas (n = 313) with treatment outcome identified 54 genes (p &lt; 0.05 or fold change &gt;2) associated with disease recurrence, 8 genes (NQO1, UBE2C, EDNRB, FKBP4, STAT3, HOXA1, RIT1, AURKA) being significant with high fold change. Assessment of the efficacy of the subset (n = 54) as survival predictors identified an additional 4 genes (CDK1, GINS2, PHF5 A, ERBB2) that co-related with poor disease-free survival (p &lt; 0.05). CDK1 showed a significant association with the clinical stage, margin status and with advanced pathological parameters. Initial patient validation indicated that CDK1 and NQO1 significantly co-related with the poor disease-free and overall survival (p &lt; 0.05). This panel of oral cancer specific, cancer stem cell associated markers identified in this study, a subset of which was validated, will be of clinical benefit subject to large scale validation studies."	"Genomic sequencing and editing revealed the GRM8 signaling pathway as potential therapeutic targets of squamous cell lung cancer. The study sought to explore novel genetic aberration driving squamous cell lung carcinoma (LUSC). The whole exome (WES), whole genome (WGS) and target region (TS) sequencings and CRISPR-Cas9 genome editing techniques were integrated to explore and validate novel targeting candidates from LUSC primary tumors and corresponding patient-derived xenografts (PDXs). Seven genes (FGFR2, GRM1,PIK3CG, PIK3CA,ZFHX4, CSMD3, GRM8) with high frequencies of both single nucleotide variants (SNVs) and copy number variants (CNVs), and two genes (CLDN1 and RIT1) only with CNVs were identified by bioinformatics analysis. The functions of these candidates were validated through CRISPR-Cas9 system in primary PDX cells. Furthermore, we focused on the genetic and functional analysis of Metabotropic glutamate receptor 8 (GRM8), whose transcriptional activation was elucidated to promote the survival of LUSC tumor cell through inhibiting cAMP pathway and activating MAPK pathway. The SNV identified in GRM8, A112G, activated downstream signaling pathway and induced cell proliferation, which could be reversed by cAMP stimulator and MEK inhibitor. In conclusion, the components of GRM8 signaling pathway could serve as potential targets of squamous cell lung cancer carrying GRM8 activating variants."	"RIT1 suppresses esophageal squamous cell carcinoma growth and metastasis and predicts good prognosis. Ras-like without CAAX1 (RIT1) protein is a member of Ras family, which plays critical roles in signaling pathways and cellular process regulation. However, the role of RIT1 in esophageal squamous cell carcinoma (ESCC) is unclear. In this study, we found that the expression of RIT1 is downregulated in ESCC compared to corresponding non-tumor tissues. The low-level expression of RIT1 was correlated with poorer prognosis. Then we showed that RIT1 inhibited proliferation, invasion, and migration of ESCC cells, and silencing RIT1 by shRNA promoted tumorigenicity and metastasis in nude mice. We further demonstrated that RIT1 inhibited the malignant behaviors of ESCC through inhibiting the PI3K/AKT and MAPK pathway and epithelial-mesenchymal transition in ESCC cells. Our study also revealed that RIT1 increased drug sensitivity to cisplatin (CDDP), and this function could be carried out through downregulating stemness of ESCC. In conclusion, our study indicates for the first time that RIT1 displays tumor-suppressing functions in ESCC, and these functions were carried out by inhibiting MAPK and PI3K/AKT signaling pathway, inhibiting EMT, and downregulating cancer stemness of ESCC cells."	"[Clinical and genetic analysis of Verheij syndrome caused by PUF60 de novo mutation in a Chinese boy and literature review]. Objective: To investigate the clinical and genetic characteristics of a Chinese boy with Verheij syndrome and review the literature. Methods: The clinical and genetic data of a Chinese boy with Verheij syndrome, who was admitted to the Department of Pediatrics, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology in May 2017 were analyzed. Original papers on Verheij syndrome published up to January 2018 were retrieved at PubMed, Human Gene Mutation Database (HGMD), Online Mendelian Inheritance in Man(OMIM), CNKI and WanFang databases by using the key words &quot;Verheij syndrome&quot; and &quot;PUF60&quot; . Results: The male patient (at the age of 14 years and 3 months) visited us because of growth retardation for 13 years. Atrial septal defect was repaired at the age 3. Congenital amblyopia and hyperopia were diagnosed at the age 4. On physical examination, serious growth retardation and delayed psychomotor development was noted. His height was 142.5 cm (-3.26 SDS). He had poor academic performance at school. Facial features included: webbed neck, hypertelorism, down-slanting palpebral fissures, long philtrum, thin upper lip, and high palate. Palmar crease was found in the right hand. His bone age was 10 years. Growth hormone stimulation test indicated partial growth hormone deficiency (growth hormone (GH) peak 6.63 μg/L). The level of insulin like growth factor 1 (IGF1) and insulin like growth factor binding protein 3 (IGFBP3) was lower than normal, 73.20 μg/L and 2 500 μg/L respectively. Abdominal ultrasound showed that the volumes of bilateral kidneys were small. The size of the left and right kidney was 8.5 cm × 3.3 cm and 8.4 cm × 4.3 cm respectively. Karyotype was normal (46, XY). MRI of pituitary showed partial empty sella turcica. Ten genes associated with Noonan syndrome (PTPN11, SOS1, RASA2, KRAS, RAF1, NRAS, SHOC2, BRAF, RIT1, A2ML1) were analyzed and no genetic mutations were found. Whole exome-sequencing analysis identified a de novo heterozygous frame shift mutation of PUF60 gene (c.931_934del, P.P.T 311Qfs*47). According to ACMG guidelines in 2015, the mutation is pathogenic and has not been reported in the above databases. Conclusions: This is the first case report of Verheij syndrome caused by mutation of PUF60 gene in Chinese population. It is difficult to discriminate Verheij syndrome from Noonan syndrome, both have clinical manifestations such as severe growth retardation, psychomotor retardation, and congenital heart disease. In addition to Noonan syndrome, PUF60 genetic analysis was recommended for avoiding missed diagnosis with such clinical manifestations of patients. 目的: 总结Verheij综合征的临床及遗传学分析特点。 方法: 对2017年5月华中科技大学同济医学院附属同济医院儿科收治的1例Verheij综合征患儿的临床资料及基因检测结果进行总结分析,并以&quot;Verheij syndrome&quot;PUF60&quot;和&quot;Verheij综合征&quot;PUF60基因&quot;为检索词,分别检索2018年1月前的PubMed、人类基因组突变数据库(HGMD)、在线人类孟德尔遗传数据库(OMIM)、中国知网数据库(CNKI)和万方数据库,对Verheij综合征病例进行文献复习。 结果: 患儿男,14岁3月龄,因&quot;生长落后13年&quot;就诊。出生体重2.9 kg,3岁时在外院行&quot;房间隔缺损修补术&quot;,4岁时发现&quot;先天性弱视及远视&quot;。身高142.5 cm,标准差积分-3.26。精神运动发育迟缓,学习成绩不佳。颈蹼,眼距宽、双侧外眼角下斜,人中长,腭弓高,后发际低;右手通贯掌。骨龄落后于实际年龄;垂体内分泌功能检测结果提示部分性生长激素(GH)缺乏(GH峰值6.63 μg/L),血胰岛素样生长因子1(IGF1)(73.20 μg/L)及胰岛素样生长因子结合蛋白3(IGFBP3)(2 500 μg/L)低于正常;肾脏B超左肾8.5 cm×3.3 cm,右肾8.4 cm×4.3 cm;染色体核型46,XY;垂体磁共振成像提示垂体高度约4 mm,存在部分空蝶鞍。内分泌基因Panel(与Noonan综合征相关的10个基因)分析,均未发现基因变异或缺失。全外显子基因检测发现患儿存在PUF60基因杂合变异(c.931_934del,p. p.T311Qfs*47)。患儿父母该位点均无变异。经Sanger测序进行验证及父母来源分析,提示为新发突变。根据2015年美国医学遗传学与基因组学学会指南,该移码突变为致病突变,且在上述数据库中尚未见报道。 结论: 首次报道中国人群PUF60基因变异导致的Verheij综合征。患儿有严重的生长发育落后、精神运动发育迟缓、特殊面部特征、先天性心脏病、肾脏发育不良等,临床与Noonan综合征难以鉴别。对具有上述临床表现的患儿除注意Noonan综合征相关基因检测外,还应注意PUF60基因分析,以免漏诊。."	"Cardiovascular disease in Noonan syndrome. To provide information on the scope of cardiac disease in Noonan syndrome. Noonan syndrome is a common autosomal dominant RASopathy disorder characterized by clinical findings of facial dysmorphism, congenital heart disease, and short stature. The degree of genetic heterogeneity has recently become evident in that Noonan syndrome is now known to be caused by mutations in a large variety of genes which produce dysregulation of the RAS-MAPK (mitogen-activated protein kinase) signaling pathway. The scope of cardiac disease in Noonan syndrome is quite variable depending on the gene mutation, with some mutations usually associated with a high incidence of congenital heart defects (PTPN11, KRAS, and others) while those with predominantly hypertrophic cardiomyopathy (HCM) have higher risk and morbidity profiles (RAF1, RIT1, and those associated with multiple lentigines). Cardiac disease in Noonan syndrome varies according to the type of gene mutation. The most common forms of cardiac disease include pulmonary stenosis, HCM, and atrial septal defect. HCM in general is associated with increased risk, mortality, and morbidity. New concepts for potential treatments are discussed."	"Small GTPase RIT1 in Mouse Retina; Cellular and Functional Analysis. Ras-like without CAAX 1 (RIT1/Rit) is a member of the Ras subfamily of small GTP-binding proteins with documented roles in regulating neuronal function, including contributions to neurotrophin signaling, neuronal survival, and neurogenesis. The aim of the study was to (1) examine the expression of RIT1 protein in mouse retina and retinal cell types and (2) determine whether RIT1 contributes to retinal ganglion cell (RGC) survival and synaptic stability following excitotoxic stress. Gene expression and immunohistochemical analysis were used to examine RIT1 expression in the mouse retina. Primary RGC and Müller glia cultures were used to validate novel RIT1 lentiviral RNAi silencing reagents, and to demonstrate that RIT1 loss does not alter RGC morphology. Finally, in vitro glutamate exposure identified a role for RIT1 in the adaptation of RGCs to excitotoxic stress. Gene expression analysis and immunohistochemical studies in whole eyes and primary cell culture demonstrate RIT1 expression throughout the retina, including Müller glia and RGCs. While genetic RIT1 knockout (RIT1-KO) does not affect gross retinal anatomy, including the thickness of constituent retinal layers or RGC cell numbers, RNAi-mediated RIT1 silencing results in increased RGC death and synaptic loss following exposure to excitotoxic stress. RIT1 is widely expressed in the murine retina, including both Müller glia and RGCs. While genetic deletion of RIT1 does not result in gross retinal abnormalities, these studies identify a novel role for RIT1 in the adaptation of RGC to excitotoxic stress, with RIT1 promoting both neuronal survival and the retention of PSD-95<sup>+</sup> synapses."	"RIT1 controls actin dynamics via complex formation with RAC1/CDC42 and PAK1. RIT1 belongs to the RAS family of small GTPases. Germline and somatic RIT1 mutations have been identified in Noonan syndrome (NS) and cancer, respectively. By using heterologous expression systems and purified recombinant proteins, we identified the p21-activated kinase 1 (PAK1) as novel direct effector of RIT1. We found RIT1 also to directly interact with the RHO GTPases CDC42 and RAC1, both of which are crucial regulators of actin dynamics upstream of PAK1. These interactions are independent of the guanine nucleotide bound to RIT1. Disease-causing RIT1 mutations enhance protein-protein interaction between RIT1 and PAK1, CDC42 or RAC1 and uncouple complex formation from serum and growth factors. We show that the RIT1-PAK1 complex regulates cytoskeletal rearrangements as expression of wild-type RIT1 and its mutant forms resulted in dissolution of stress fibers and reduction of mature paxillin-containing focal adhesions in COS7 cells. This effect was prevented by co-expression of RIT1 with dominant-negative CDC42 or RAC1 and kinase-dead PAK1. By using a transwell migration assay, we show that RIT1 wildtype and the disease-associated variants enhance cell motility. Our work demonstrates a new function for RIT1 in controlling actin dynamics via acting in a signaling module containing PAK1 and RAC1/CDC42, and highlights defects in cell adhesion and migration as possible disease mechanism underlying NS."	"Resistance Mechanisms to Targeted Therapies in ROS1<sup>+</sup> and ALK<sup>+</sup> Non-small Cell Lung Cancer. Purpose: Despite initial benefit from tyrosine kinase inhibitors (TKIs), patients with advanced non-small cell lung cancer (NSCLC) harboring ALK (ALK<sup>+</sup>) and ROS1 (ROS1<sup>+</sup>) gene fusions ultimately progress. Here, we report on the potential resistance mechanisms in a series of patients with ALK<sup>+</sup> and ROS1<sup>+</sup> NSCLC progressing on different types and/or lines of ROS1/ALK-targeted therapy.Experimental Design: We used a combination of next-generation sequencing (NGS), multiplex mutation assay, direct DNA sequencing, RT-PCR, and FISH to identify fusion variants/partners and copy-number gain (CNG), kinase domain mutations (KDM), and copy-number variations (CNVs) in other cancer-related genes. We performed testing on 12 ROS1<sup>+</sup> and 43 ALK<sup>+</sup> patients.Results: One of 12 ROS1<sup>+</sup> (8%) and 15 of 43 (35%) ALK  <sup>+</sup>  patients harbored KDM. In the ROS1<sup>+</sup> cohort, we identified KIT and β-catenin mutations and HER2-mediated bypass signaling as non-ROS1-dominant resistance mechanisms. In the ALK<sup>+</sup> cohort, we identified a novel NRG1 gene fusion, a RET fusion, 2 EGFR, and 3 KRAS mutations, as well as mutations in IDH1, RIT1, NOTCH, and NF1 In addition, we identified CNV in multiple proto-oncogenes genes including PDGFRA, KIT, KDR, GNAS, K/HRAS, RET, NTRK1, MAP2K1, and others.Conclusions: We identified a putative TKI resistance mechanism in six of 12 (50%) ROS1  <sup>+</sup>  patients and 37 of 43 (86%) ALK<sup>+</sup> patients. Our data suggest that a focus on KDMs will miss most resistance mechanisms; broader gene testing strategies and functional validation is warranted to devise new therapeutic strategies for drug resistance. Clin Cancer Res; 24(14); 3334-47. ©2018 AACR."	"A de novo 1q22q23.1 Interstitial Microdeletion in a Girl with Intellectual Disability and Multiple Congenital Anomalies Including Congenital Heart Defect. Many studies have shown that molecular karyotyping is an effective diagnostic tool in individuals with developmental delay/intellectual disability. We report on a de novo interstitial 1q22q23.1 microdeletion, 1.6 Mb in size, detected in a patient with short stature, microcephaly, hypoplastic corpus callosum, cleft palate, minor facial anomalies, congenital heart defect, camptodactyly of the 4-5th fingers, and intellectual disability. Chromosomal microarray analysis revealed a 1.6-Mb deletion in the 1q22q23.1 region, arr[GRCh37] 1q22q23.1(155630752_157193893)×1. Real-time PCR analysis confirmed its de novo origin. The deleted region encompasses 50 protein-coding genes, including the morbid genes APOA1BP, ARHGEF2, LAMTOR2, LMNA, NTRK1, PRCC, RIT1, SEMA4A, and YY1AP1. Although the unique phenotype observed in our patient can arise from the haploinsufficiency of the dosage-sensitive LMNA gene, the dosage imbalance of other genes implicated in the rearrangement could also contribute to the phenotype. Further studies are required for the delineation of the phenotype associated with this rare chromosomal alteration and elucidation of the critical genes for manifestation of the specific clinical features."	"Integrating Functional Analysis in the Next-Generation Sequencing Diagnostic Pipeline of RASopathies. RASopathies are a group of heterogeneous conditions caused by germline mutations in RAS/MAPK signalling pathway genes. With next-generation sequencing (NGS), sequencing capacity is no longer a limitation to molecular diagnosis. Instead, the rising number of variants of unknown significance (VUSs) poses challenges to clinical interpretation and genetic counselling. We investigated the potential of an integrated pipeline combining NGS and the functional assessment of variants for the diagnosis of RASopathies. We included 63 Chinese patients with RASopathies that had previously tested negative for PTPN11 and HRAS mutations. In these patients, we performed a genetic analysis of genes associated with RASopathies using a multigene NGS panel and Sanger sequencing. For the VUSs, we evaluated evidence from genetic, bioinformatic and functional data. Twenty disease-causing mutations were identified in the 63 patients, providing a primary diagnostic yield of 31.7%. Four VUSs were identified in five patients. The functional assessment supported the pathogenicity of the RAF1 and RIT1 VUSs, while the significance of two VUSs in A2ML1 remained unclear. In summary, functional analysis improved the diagnostic yield from 31.7% to 36.5%. Although technically demanding and time-consuming, a functional genetic diagnostic analysis can ease the clinical translation of these findings to aid bedside interpretation."	"Exome Pool-Seq in neurodevelopmental disorders. High throughput sequencing has greatly advanced disease gene identification, especially in heterogeneous entities. Despite falling costs this is still an expensive and laborious technique, particularly when studying large cohorts. To address this problem we applied Exome Pool-Seq as an economic and fast screening technology in neurodevelopmental disorders (NDDs). Sequencing of 96 individuals can be performed in eight pools of 12 samples on less than one Illumina sequencer lane. In a pilot study with 96 cases we identified 27 variants, likely or possibly affecting function. Twenty five of these were identified in 923 established NDD genes (based on SysID database, status November 2016) (ACTB, AHDC1, ANKRD11, ATP6V1B2, ATRX, CASK, CHD8, GNAS, IFIH1, KCNQ2, KMT2A, KRAS, MAOA, MED12, MED13L, RIT1, SETD5, SIN3A, TCF4, TRAPPC11, TUBA1A, WAC, ZBTB18, ZMYND11), two in 543 (SysID) candidate genes (ZNF292, BPTF), and additionally a de novo loss-of-function variant in LRRC7, not previously implicated in NDDs. Most of them were confirmed to be de novo, but we also identified X-linked or autosomal-dominantly or autosomal-recessively inherited variants. With a detection rate of 28%, Exome Pool-Seq achieves comparable results to individual exome analyses but reduces costs by &gt;85%. Compared with other large scale approaches using Molecular Inversion Probes (MIP) or gene panels, it allows flexible re-analysis of data. Exome Pool-Seq is thus well suited for large-scale, cost-efficient and flexible screening in characterized but heterogeneous entities like NDDs."	"[Gene mutation and clinical phenotype analysis of patients with Noonan syndrome and hypertrophic cardiomyopathy]. Objective: To analyze the gene mutations and clinical features of patients with Noonan syndrome and hypertrophic cardiomyopathy. Method: Determined the mutation domain in five cases diagnosed with Noonan syndrome and hypertrophic cardiomyopathy and identified the relationship between the mutant domain and hypertrophic cardiomyopathy by searching relevant articles in pubmed database. Result: Three mutant genes (PTPN11 gene in chromosome 12, RIT1 gene in chromosome 1 and RAF1 gene in chromosome 3) in five cases all had been reported to be related to hypertrophic cardiomyopathy. The reported hypertrophic cardiomyopathy relevant genes MYPN, MYH6 and MYBP3 had also been found in case 1 and 2. Patients with same gene mutation had different clinical manifestations. Both case 4 and 5 had RAF1 mutation (c.770C&gt;T). However, case 4 had special face, low IQ, mild pulmonary artery stenosis, and only mild ventricular hypertrophy. Conclusion: Noonan syndrome is a genetic heterogeneity disease. Our study identified specific gene mutations that could result in Noonan syndrome with hypertrophic cardiomyopathy through molecular biology methods. The results emphasize the importance of gene detection in the management of Noonan syndrome. 目的: 分析Noonan综合征合并肥厚型心肌病患儿的基因突变与临床表型。 方法: 以北京安贞医院小儿心脏中心收治的5例确诊Noonan综合征合并肥厚型心肌病患儿为研究对象,进行基因突变检测,确定突变位点及结构域,分析突变基因与肥厚型心肌病临床表型的关系。 结果: 5例患儿的3个基因突变位点(12号染色体PTPN11基因,1号染色体RIT1基因及3号染色体RAF1基因)与肥厚型心肌病相关。2例患儿基因检测发现与肥厚型心肌病相关的已知基因突变MYPN、MYH6及MYBPC3。2例患儿基因突变均为RAF1,c.770C&gt;T,但临床表现不同,其中1例患儿除有特殊面容及智商较低外,肺动脉瓣狭窄极轻,心室肌肥厚亦不严重。 结论: Noonan综合征表现明显的遗传异质性,同一基因位点突变,临床表现多样。PTPN11、RAF1及RIT1基因位于特定结构域的突变位点与伴肥厚型心肌病的Noonan综合征密切相关。."	"IGF-1 mediated Neurogenesis Involves a Novel RIT1/Akt/Sox2 Cascade. Insulin-like growth factor 1 (IGF-1) is known to have diverse effects on brain structure and function, including the promotion of stem cell proliferation and neurogenesis in the adult dentate gyrus. However, the intracellular pathways downstream of the IGF-1 receptor that contribute to these diverse physiological actions remain relatively uncharacterized. Here, we demonstrate that the Ras-related GTPase, RIT1, plays a critical role in IGF-1-dependent neurogenesis. Studies in hippocampal neuronal precursor cells (HNPCs) demonstrate that IGF-1 stimulates a RIT1-dependent increase in Sox2 levels, resulting in pro-neural gene expression and increased cellular proliferation. In this novel cascade, RIT1 stimulates Akt-dependent phosphorylation of Sox2 at T118, leading to its stabilization and transcriptional activation. When compared to wild-type HNPCs, RIT1 <sup>-/-</sup> HNPCs show deficient IGF-1-dependent Akt signaling and neuronal differentiation, and accordingly, Sox2-dependent hippocampal neurogenesis is significantly blunted following IGF-1 infusion in knockout (RIT1 <sup>-/-</sup> ) mice. Consistent with a role for RIT1 function in the modulation of activity-dependent plasticity, exercise-mediated potentiation of hippocampal neurogenesis is also diminished in RIT1 <sup>-/-</sup> mice. Taken together, these data identify the previously uncharacterized IGF1-RIT1-Akt-Sox2 signaling pathway as a key component of neurogenic niche sensing, contributing to the regulation of neural stem cell homeostasis."	"Guanine nucleotide exchange factor Epac2-dependent activation of the GTP-binding protein Rap2A mediates cAMP-dependent growth arrest in neuroendocrine cells. First messenger-dependent activation of MAP kinases in neuronal and endocrine cells is critical for cell differentiation and function and requires guanine nucleotide exchange factor (GEF)-mediated activation of downstream Ras family small GTPases, which ultimately lead to ERK, JNK, and p38 phosphorylation. Because there are numerous GEFs and also a host of Ras family small GTPases, it is important to know which specific GEF-small GTPase dyad functions in a given cellular process. Here we investigated the upstream activators and downstream effectors of signaling via the GEF Epac2 in the neuroendocrine NS-1 cell line. Three cAMP sensors, Epac2, PKA, and neuritogenic cAMP sensor-Rapgef2, mediate distinct cellular outputs: p38-dependent growth arrest, cAMP response element-binding protein-dependent cell survival, and ERK-dependent neuritogenesis, respectively, in these cells. Previously, we found that cAMP-induced growth arrest of PC12 and NS-1 cells requires Epac2-dependent activation of p38 MAP kinase, which posed the important question of how Epac2 engages p38 without simultaneously activating other MAP kinases in neuronal and endocrine cells. We now show that the small GTP-binding protein Rap2A is the obligate effector for, and GEF substrate of, Epac2 in mediating growth arrest through p38 activation in NS-1 cells. This new pathway is distinctly parcellated from the G protein-coupled receptor → Gs → adenylate cyclase → cAMP → PKA → cAMP response element-binding protein pathway mediating cell survival and the G protein-coupled receptor → Gs → adenylate cyclase → cAMP → neuritogenic cAMP sensor-Rapgef2 → B-Raf → MEK → ERK pathway mediating neuritogenesis in NS-1 cells."	"Response to: Milosavljevic et al. &quot;Two cases of RIT1 associated Noonan syndrome: Further delineation of the clinical phenotype and review of the literature&quot;. NA"	"Microdeletion of chromosome 1q21.3 in fraternal twins is associated with mental retardation, microcephaly, and epilepsy. Reported here are twins, both of whom have a 1q21.3 microdeletion and who exhibit key features common to previously reported cases such as microcephaly and developmental delay. However, some clinical findings and deleted genes differed from those in previously reported cases. The karyotype was normal 46, XX for both of the twins. Array comparative genomic hybridization (CGH) identified a 2.6 Mb deletion on chromosome 1q21.3 (chr1: 153,514,121-156,171,335 bp) in case 1 and a 1.6 Mb deletion on chromosome 1q21.3 (chr1: 154,748,365-156,358,923 bp) in case 2. The deleted region includes DPM3, MUC1, GBA, PKLR, RIT1, and LAMTOR2 in both siblings. To the extent known, this is the second report of a 1q21.3 microdeletion in a family with mental retardation, developmental delay, seizures, and some dysmorphic features, thus expanding the phenotypic spectrum."	"Expanding the cardiac spectrum of Noonan syndrome with RIT1 variant: Left main coronary artery atresia causing sudden death. Noonan syndrome is a well-known genetic condition associating congenital heart defects, short stature, and distinctive facial features. Pulmonary valve stenosis and hypertrophic cardiomyopathy are the most frequent cardiac abnormalities, the latter being associated with a higher mortality. Here we report for the first time, a case of congenital left main coronary artery atresia in a Noonan syndrome associated with RIT1 variant, leading to unrescued sudden death. This case-report supports the already-suspected severity of the RIT1-related Noonan syndrome compared to average Noonan syndrome, and should encourage clinicians to be very cautious with these patients."	"RIT1 GTPase Regulates Sox2 Transcriptional Activity and Hippocampal Neurogenesis. Adult neurogenesis, the process of generating mature neurons from neuronal progenitor cells, makes critical contributions to neural circuitry and brain function in both healthy and disease states. Neurogenesis is a highly regulated process in which diverse environmental and physiological stimuli are relayed to resident neural stem cell populations to control the transcription of genes involved in self-renewal and differentiation. Understanding the molecular mechanisms governing neurogenesis is necessary for the development of translational strategies to harness this process for neuronal repair. Here we report that the Ras-related GTPase RIT1 serves to control the sequential proliferation and differentiation of adult hippocampal neural progenitor cells, with in vivo expression of active RIT1 driving robust adult neurogenesis. Gene expression profiling analysis demonstrates increased expression of a specific set of transcription factors known to govern adult neurogenesis in response to active RIT1 expression in the hippocampus, including sex-determining region Y-related HMG box 2 (Sox2), a well established regulator of stem cell self-renewal and neurogenesis. In adult hippocampal neuronal precursor cells, RIT1 controls an Akt-dependent signaling cascade, resulting in the stabilization and transcriptional activation of phosphorylated Sox2. This study supports a role for RIT1 in relaying niche-derived signals to neural/stem progenitor cells to control transcription of genes involved in self-renewal and differentiation."	"Expansion of the RASopathies. The Ras/mitogen activated protein kinase (MAPK) pathway is essential in the regulation of cell cycle, differentiation, growth, cell senescence and apoptosis, all of which are critical to normal development. A class of neurodevelopmental disorders, RASopathies, is caused by germline mutations in genes of the Ras/MAPK pathway. Through the use of whole exome sequencing and targeted sequencing of selected genes in cohorts of panel-negative RASopathy patients, several new genes have been identified. These include: RIT1, SOS2, RASA2, RRAS and SYNGAP1, that likely represent new, albeit rare, causative RASopathy genes. In addition, A2ML1, LZTR1, MYST4, SPRY1 and MAP3K8 may represent new rare genes for RASopathies, but, additional functional studies regarding the mutations are warranted. In addition, recent reports have demonstrated that chromosomal copy number variation in regions encompassing Ras/MAPK pathway genes may be a novel pathogenetic mechanism expanding the RASopathies."	"Noonan syndrome-causing genes: Molecular update and an assessment of the mutation rate. Noonan syndrome is a common autosomal dominant disorder characterized by short stature, congenital heart disease and facial dysmorphia with an incidence of 1/1000 to 2500 live births. Up to now, several genes have been proven to be involved in the disturbance of the transduction signal through the RAS-MAP Kinase pathway and the manifestation of Noonan syndrome. The first gene described was PTPN11, followed by SOS1, RAF1, KRAS, BRAF, NRAS, MAP2K1, and RIT1, and recently SOS2, LZTR1, and A2ML1, among others. Progressively, the physiopathology and molecular etiology of most signs of Noonan syndrome have been demonstrated, and inheritance patterns as well as genetic counseling have been established. In this review, we summarize the data concerning clinical features frequently observed in Noonan syndrome, and then, we describe the molecular etiology as well as the physiopathology of most Noonan syndrome-causing genes. In the second part of this review, we assess the mutational rate of Noonan syndrome-causing genes reported up to now in most screening studies. This review should give clinicians as well as geneticists a full view of the molecular aspects of Noonan syndrome and the authentic prevalence of the mutational events of its causing-genes. It will also facilitate laying the groundwork for future molecular diagnosis research, and the development of novel treatment strategies."	"Altered mRNA Splicing in SMN-Depleted Motor Neuron-Like Cells. Spinal muscular atrophy (SMA) is an intractable neurodegenerative disease afflicting 1 in 6-10,000 live births. One of the key functions of the SMN protein is regulation of spliceosome assembly. Reduced levels of the SMN protein that are observed in SMA have been shown to result in aberrant mRNA splicing. SMN-dependent mis-spliced transcripts in motor neurons may cause stresses that are particularly harmful and may serve as potential targets for the treatment of motor neuron disease or as biomarkers in the SMA patient population. We performed deep RNA sequencing using motor neuron-like NSC-34 cells to screen for SMN-dependent mRNA processing changes that occur following acute depletion of SMN. We identified SMN-dependent splicing changes, including an intron retention event that results in the production of a truncated Rit1 transcript. This intron-retained transcript is stable and is mis-spliced in spinal cord from symptomatic SMA mice. Constitutively active Rit1 ameliorated the neurite outgrowth defect in SMN depleted NSC-34 cells, while expression of the truncated protein product of the mis-spliced Rit1 transcript inhibited neurite extension. These results reveal new insights into the biological consequence of SMN-dependent splicing in motor neuron-like cells."	"Remediation of cadmium toxicity in field peas (Pisum sativum L.) through exogenous silicon. Cadmium (Cd) is an important phytotoxic element causing health hazards. This work investigates whether and how silicon (Si) influences the alleviation of Cd toxicity in field peas at biochemical and molecular level. The addition of Si in Cd-stressed plants noticeably increased growth and development as well as total protein and membrane stability of Cd-stressed plants, suggesting that Si does have critical roles in Cd detoxification in peas. Furthermore, Si supplementation in Cd-stressed plants showed simultaneous significant increase and decrease of Cd and Fe in roots and shoots, respectively, compared with Cd-stressed plants. At molecular level, GSH1 (phytochelatin precursor) and MTA (metallothionein) transcripts predominantly expressed in roots and strongly induced due to Si supplementation in Cd-stressed plants compared with Cd-free conditions, suggesting that these chelating agents may bind to Cd leading to vacuolar sequestration in roots. Furthermore, pea Fe transporter (RIT1) showed downregulation in shoots when plants were treated with Si along with Cd compared with Cd-treated conditions. It is consistent with the physiological observations and supports the conclusion that alleviation of Cd toxicity in pea plants might be associated with Cd sequestration in roots and reduced Cd translocation in shoots through the regulation of Fe transport. Furthermore, increased CAT, POD, SOD and GR activity along with elevated S-metabolites (cysteine, methionine, glutathione) implies the active involvement of ROS scavenging and plays, at least in part, to the Si-mediated alleviation of Cd toxicity in pea. The study provides first mechanistic evidence on the beneficial effect of Si on Cd toxicity in pea plants."	"[RIT1: a novel gene associated with Noonan syndrome]. Noonan syndrome is the most frequent of the congenital group of malformation syndromes caused by germline mutations that encode components of the RAS/MAPK pathway, termed RASopathies, one of the most frequent congenital genetic disorders in the clinical practice. Recently RIT1 mutations have been reported in patients with Noonan syndrome. A 7 years-old girl with a clinical diagnosis of Noonan syndrome, and with a hypertrophic cardiomyopathy included in her clinical manifestations, where a de novo heterozygous, probably pathogenic, novel mutation in RIT1, c.295T&gt;C (p.Phe99Leu), has been identified. RIT1 shares homology with other RAS proteins and the expression of mutant alleles demonstrates a gain-of-function effect supporting a causative role in Noonan syndrome pathogenesis. Data suggest that the frequency of RIT1 mutations can be estimated as 3-5% in Noonan syndrome patients. These cases compared with Noonan patients harboring mutations in other genes are characterized by high frequency of prenatal abnormalities and hypertrophic cardiomyopathy, and lower frequencies of short stature and pectus abnormalities. We emphasize the importance of the novel identified genes in order to be included in the diagnostic panels. RIT1: un nuevo gen causal del sindrome de Noonan. Introduccion. El sindrome de Noonan es el mas frecuente del grupo de los sindromes malformativos congenitos originados por mutaciones germinales en genes de la via RAS/MAPK, denominados genericamente RAS-opatias, uno de los grupos mas comunes de alteraciones geneticas congenitas en la practica clinica. Recientemente se han descrito mutaciones en el gen RIT1 en pacientes con sindrome de Noonan. Caso clinico. Nina de 7 anos con diagnostico clinico de sindrome de Noonan, que entre sus manifestaciones clinicas incluye miocardiopatia hipertrofica, en la que se ha identificado una mutacion de novo en heterocigosis, en RIT1, c.295T&gt;C (p.Phe99Leu), no descrita previamente, probablemente causal. Conclusiones. RIT1 comparte homologia con otras proteinas RAS y la expresion de alelos mutantes origina un efecto de ganancia de funcion que apoya su papel causal en el sindrome de Noonan. Podemos estimar actualmente que es responsable de un 3-5% de los casos del sindrome. Estos casos con sindrome de Noonan, respecto a los que presentan mutaciones en otros genes, se caracterizan por una mayor frecuencia de alteraciones prenatales, alta frecuencia de miocardiopatia hipertrofica y menor frecuencia de talla baja y deformidad toracica. Destaca la importancia de incorporar los nuevos genes identificados en los paneles diagnosticos."	"Congenital heart defects in Noonan syndrome and RIT1 mutation. NA"	"Biochemical Classification of Disease-associated Mutants of RAS-like Protein Expressed in Many Tissues (RIT1). RAS-like protein expressed in many tissues 1 (RIT1) is a disease-associated RAS subfamily small guanosine triphosphatase (GTPase). Recent studies revealed that germ-line and somatic RIT1 mutations can cause Noonan syndrome (NS), and drive proliferation of lung adenocarcinomas, respectively, akin to RAS mutations in these diseases. However, the locations of these RIT1 mutations differ significantly from those found in RAS, and do not affect the three mutational &quot;hot spots&quot; of RAS. Moreover, few studies have characterized the GTPase cycle of RIT1 and its disease-associated mutants. Here we developed a real-time NMR-based GTPase assay for RIT1 and investigated the effect of disease-associated mutations on GTPase cycle. RIT1 exhibits an intrinsic GTP hydrolysis rate similar to that of H-RAS, but its intrinsic nucleotide exchange rate is ∼4-fold faster, likely as a result of divergent residues near the nucleotide binding site. All of the disease-associated mutations investigated increased the GTP-loaded, activated state of RIT1 in vitro, but they could be classified into two groups with different intrinsic GTPase properties. The S35T, A57G, and Y89H mutants exhibited more rapid nucleotide exchange, whereas F82V and T83P impaired GTP hydrolysis. A RAS-binding domain pulldown assay indicated that RIT1 A57G and Y89H were highly activated in HEK293T cells, whereas T83P and F82V exhibited more modest activation. All five mutations are associated with NS, whereas two (A57G and F82V) have also been identified in urinary tract cancers and myeloid malignancies. Characterization of the effects on the GTPase cycle of RIT1 disease-associated mutations should enable better understanding of their role in disease processes."	"Two cases of RIT1 associated Noonan syndrome: Further delineation of the clinical phenotype and review of the literature. Mutations in RIT1, involved in the RAS-MAPK pathway, have recently been identified as a cause for Noonan syndrome. We present two patients with Noonan syndrome caused by a RIT1 mutation with novel phenotypic manifestations, severe bilateral lower limb lymphedema starting during puberty, and fetal hydrops resulting in intrauterine fetal death, respectively. Including our patients, a total of 52 patients have been reported with Noonan syndrome caused by a RIT1 mutation. Our report contributes to the delineation of the phenotype associated with RIT1 mutations and underlines that lymphatic involvement is part of this spectrum. In addition, we provide an overview of the currently described Noonan syndrome patients with RIT1 mutations in literature. © 2016 Wiley Periodicals, Inc."	"Genotype and phenotype in patients with Noonan syndrome and a RIT1 mutation. Noonan syndrome (NS) is an autosomal-dominant disorder characterized by craniofacial dysmorphism, growth retardation, cardiac abnormalities, and learning difficulties. It belongs to the RASopathies, which are caused by germ-line mutations in genes encoding components of the RAS mitogen-activated protein kinase (MAPK) pathway. RIT1 was recently reported as a disease gene for NS, but the number of published cases is still limited. We sequenced RIT1 in 310 mutation-negative individuals with a suspected RASopathy and prospectively in individuals who underwent genetic testing for NS. Using a standardized form, we recorded clinical features of all RIT1 mutation-positive patients. Clinical and genotype data from 36 individuals with RIT1 mutation reported previously were reviewed. Eleven different RIT1 missense mutations, three of which were novel, were identified in 33 subjects from 28 families; codons 57, 82, and 95 represent mutation hotspots. In relation to NS of other genetic etiologies, prenatal abnormalities, cardiovascular disease, and lymphatic abnormalities were common in individuals with RIT1 mutation, whereas short stature, intellectual problems, pectus anomalies, and ectodermal findings were less frequent. RIT1 is one of the major genes for NS. The RIT1-associated phenotype differs gradually from other NS subtypes, with a high prevalence of cardiovascular manifestations, especially hypertrophic cardiomyopathy, and lymphatic problems.Genet Med 18 12, 1226-1234."	"Anti-leukaemic effects induced by APR-246 are dependent on induction of oxidative stress and the NFE2L2/HMOX1 axis that can be targeted by PI3K and mTOR inhibitors in acute myeloid leukaemia cells. The small molecule APR-246 (PRIMA-1(MET) ) is a novel drug that restores the activity of mutated and unfolded TP53 protein. However, the mechanisms of action and potential off-target effects are not fully understood. Gene expression profiling in TP53 mutant KMB3 acute myeloid leukaemia (AML) cells showed that genes which protected cells from oxidative stress to be the most up-regulated. APR-246 exposure also induced reactive oxygen species (ROS) formation and depleted glutathione in AML cells. The genes most up-regulated by APR-246, confirmed by quantitative real time polymerase chain reaction, were heme oxygenase-1 (HMOX1, also termed HO-1), SLC7A11 and RIT1. Up-regulation of HMOX1, a key regulator of cellular response to ROS, was independent of TP53 mutational status. NFE2L2 (also termed Nrf2), a master regulator of HMOX1 expression, showed transcriptional up-regulation and nuclear translocation by APR-246. Down-regulation of NFE2L2 by siRNA in AML cells significantly increased the antitumoural effects of APR-246. The PI3K inhibitor wortmannin and the mTOR inhibitor rapamycin inhibited APR-246-induced nuclear translocation of NFE2L2 and counteracted the protective cellular responses to APR-246, resulting in synergistic cell killing together with APR-246. In conclusion, ROS induction is important for antileukaemic activities of APR-246 and inhibiting the protective response of the Nrf-2/HMOX1 axis using PI3K inhibitors, enhances the antileukaemic effects."	"Mutations in RIT1 cause Noonan syndrome with possible juvenile myelomonocytic leukemia but are not involved in acute lymphoblastic leukemia. Noonan syndrome is a heterogeneous autosomal dominant disorder caused by mutations in at least eight genes involved in the RAS/MAPK signaling pathway. Recently, RIT1 (Ras-like without CAAX 1) has been shown to be involved in the pathogenesis of some patients. We report a series of 44 patients from 30 pedigrees (including nine multiplex families) with mutations in RIT1. These patients display a typical Noonan gestalt and facial phenotype. Among the probands, 8.7% showed postnatal growth retardation, 90% had congenital heart defects, 36% had hypertrophic cardiomyopathy (a lower incidence compared with previous report), 50% displayed speech delay and 52% had learning difficulties, but only 22% required special education. None had major skin anomalies. One child died perinatally of juvenile myelomonocytic leukemia. Compared with the canonical Noonan phenotype linked to PTPN11 mutations, patients with RIT1 mutations appear to be less severely growth retarded and more frequently affected by cardiomyopathy. Based on our experience, we estimate that RIT1 could be the cause of 5% of Noonan syndrome patients. Because mutations found constitutionally in Noonan syndrome are also found in several tumors in adulthood, we evaluated the potential contribution of RIT1 to leukemogenesis in Noonan syndrome. We screened 192 pediatric cases of acute lymphoblastic leukemias (96 B-ALL and 96 T-ALL) and 110 cases of juvenile myelomonocytic leukemias (JMML), but detected no variation in these tumoral samples, suggesting that Noonan patients with germline RIT1 mutations are not at high risk to developing JMML or ALL, and that RIT1 has at most a marginal role in these sporadic malignancies."	"Spectrum of mutations and genotype-phenotype analysis in Noonan syndrome patients with RIT1 mutations. RASopathies are autosomal dominant disorders caused by mutations in more than 10 known genes that regulate the RAS/MAPK pathway. Noonan syndrome (NS) is a RASopathy characterized by a distinctive facial appearance, musculoskeletal abnormalities, and congenital heart defects. We have recently identified mutations in RIT1 in patients with NS. To delineate the clinical manifestations in RIT1 mutation-positive patients, we further performed a RIT1 analysis in RASopathy patients and identified 7 RIT1 mutations, including two novel mutations, p.A77S and p.A77T, in 14 of 186 patients. Perinatal abnormalities, including nuchal translucency, fetal hydrops, pleural effusion, or chylothorax and congenital heart defects, are observed in all RIT1 mutation-positive patients. Luciferase assays in NIH 3T3 cells demonstrated that the newly identified RIT1 mutants, including p.A77S and p.A77T, and the previously identified p.F82V, p.T83P, p.Y89H, and p.M90I, enhanced Elk1 transactivation. Genotype-phenotype correlation analyses of previously reported NS patients harboring RIT1, PTPN11, SOS1, RAF1, and KRAS revealed that hypertrophic cardiomyopathy (56 %) was more frequent in patients harboring a RIT1 mutation than in patients harboring PTPN11 (9 %) and SOS1 mutations (10 %). The rates of hypertrophic cardiomyopathy were similar between patients harboring RIT1 mutations and patients harboring RAF1 mutations (75 %). Short stature (52 %) was less prevalent in patients harboring RIT1 mutations than in patients harboring PTPN11 (71 %) and RAF1 (83 %) mutations. These results delineate the clinical manifestations of RIT1 mutation-positive NS patients: high frequencies of hypertrophic cardiomyopathy, atrial septal defects, and pulmonary stenosis; and lower frequencies of ptosis and short stature."	"Elevated expression of RIT1 correlates with poor prognosis in endometrial cancer. RIT1, (Ras-like without CAAX1), the founding member of a novel branch of the Ras subfamily, mediates a wide variety of cellular functions, including cell proliferation, survival, and differentiation, and it may play crucial oncogenic role in human cancer. The purpose of the current study was to characterize the expression pattern of RIT1 and assess the clinical significance of RIT1 expression in endometrial cancer patients. The mRNA and protein expression of RIT1 was significantly overexpressed in 7 endometrial cancer cell lines by qPCR and Western blot, respectively. In addition, RIT1 mRNA expression was elevated in 36 freshly frozen endometrial cancer tissues compared to 21 non-cancerous endometrial tissue samples. Similar results were observed by analyzing GEO datasets. Immunohistochemistry was used to examine the protein expression of RIT1 in two tissue microarrays containing 257 cases of tumor and 31 non-tumor tissues, which showed that elevated expression of RIT1 was significantly correlated with pathological type, clinical stage, grade and vascular invasion. Importantly, Kaplan-Meier survival analysis indicated that RIT1 expression was associated with overall survival of endometrial cancer patients. Multivariate Cox regression analysis revealed that RIT1 expression was one of the independent prognostic factors for endometrial cancer patients. Furthermore, RIT1 combined with other clinicopathological risk factors was a more significant model in ROC curve comparison. In conclusion, elevated expression of RIT1 may contribute to the progression of endometrial cancer and thus may serve as a novel prognostic marker and a promising molecular target for the treatment of endometrial cancer. "	"New Mutations Associated with Rasopathies in a Central European Population and Genotype-Phenotype Correlations. We performed the genetic analysis of Rasopathy syndromes in patients from Central European by direct sequencing followed by next generation sequencing of genes associated with Rasopathies. All 51 patients harboured the typical features of Rasopathy syndromes. Thirty-five mutations were identified in the examined patients (22 in PTPN11, two in SOS1, one in RIT1, one in SHOC2, two in HRAS, three in BRAF, two in MAP2K1 and two in the NF1 gene). Two of them (p.Gly392Glu in the BRAF gene and p.Gln164Lys in the MAP2K1 gene) were novel with a potentially pathogenic effect on the structure of these proteins. Statistically significant differences in the presence of pulmonary stenosis (63.64% vs. 23.81%, P = 0.013897) and cryptorchidism (76.47% vs. 30%, P = 0.040224) were identified as the result of comparison of the prevalence of phenotypic features in patients with the phenotype of Noonan syndrome and mutation in the PTPN11 gene, with the prevalence of the same features in patients without PTPN11 mutation. Cryptorchidism as a statistically significant feature in our patients with PTPN11 mutation was not reported as significant in other European countries (Germany, Italy and Greece). The majority of mutations were clustered in exons 3 (45.45%), 8 (22.73%), and 13 (22.73%) of the PTPN11 gene. "	"A novel heterozygous RIT1 mutation in a patient with Noonan syndrome, leukopenia, and transient myeloproliferation-a review of the literature. Noonan syndrome (NS) is a genetic condition presenting with typical facies, cardiac defects, short stature, variable developmental deficit, cryptorchidism, skeletal, and other abnormalities. Germline mutations in genes involved in the RAS/MAPK signaling have been discovered to underlie NS. Recently, missense mutations in RIT1 have been reported as causative for individuals with clinical signs of NS. We report on a 2.5-year-old boy with NS phenotype with a novel heterozygous change in the RIT1 gene. The patient was born prematurely from pregnancy monitored for polyhydramnios. At 7 months of age, non-immune neutropenia and splenomegaly have been observed. During the severe pneumonia at 10 months, significant progression of hepatosplenomegaly, leukopenia with monocytosis (15-29 %), and thrombocytopenia occurred. Bone marrow evaluation showed myeloid hyperplasia and monocytosis, suggestive of myeloproliferative syndrome. Clinical phenotype (facial dysmorphism, soft hair, short neck, broad chest, widely spaced nipples, mild pectus carinatum, deep palmar creases, unilateral cryptorchidism), and moderate pulmonary valve stenosis with mild psychomotor delay were indicative of NS. DNA analysis identified a de novo heterozygous variant c.69A &gt;T, p.(Lys23Asn) in exon 2 of the RIT1 gene, presumed to be causative. We present a patient with a clinical suspicion of NS carrying a novel substitution in RIT1 and hematologic findings not being observed in RIT1 positive patients to date. Thus, the case broadens variability of hematologic symptoms in RIT1 positive NS individuals. • Noonan syndrome is a common genetically heterogeneous disorder of autosomal dominant inheritance characterized by craniofacial dysmorphism, short stature, congenital heart defects, variable cognitive deficit, and other anomalies. What is new: • We report on a 2.5-year-old male patient with clinical signs of NS and hematologic abnormalities, in whom a novel heterozygous substitution in RIT1 with probable pathogenicity was detected."	"Recent advances in RASopathies. RASopathies or RAS/mitogen-activated protein kinase (MAPK) syndromes are a group of phenotypically overlapping syndromes caused by germline mutations that encode components of the RAS/MAPK signaling pathway. These disorders include neurofibromatosis type I, Legius syndrome, Noonan syndrome, Noonan syndrome with multiple lentigines (formerly called LEOPARD syndrome), Costello syndrome, cardiofaciocutaneous (CFC) syndrome, Noonan-like syndrome, hereditary gingival fibromatosis and capillary malformation-arteriovenous malformation. Recently, novel gene variants, including RIT1, RRAS, RASA2, A2ML1, SOS2 and LZTR1, have been shown to be associated with RASopathies, further expanding the disease entity. Although further analysis will be needed, these findings will help to better elucidate an understanding of the pathogenesis of these disorders and will aid in the development of potential therapeutic approaches. In this review, we summarize the novel genes that have been reported to be associated with RASopathies and highlight the cardiovascular abnormalities that may arise in affected individuals. "	"Profiling of Oncogenic Driver Events in Lung Adenocarcinoma Revealed MET Mutation as Independent Prognostic Factor. Oncogenic driver mutations activating receptor tyrosine kinase pathways are promising predictive markers for targeted treatment. We investigated the mutation profile of an updated driver events list on receptor tyrosine kinase/RAS/PI3K axis and the clinicopathologic implications in a cohort of never-smoker predominated Chinese lung adenocarcinoma. We tested 154 lung adenocarcinomas and adenosquamous carcinomas for EGFR, KRAS, HER2, BRAF, PIK3CA, MET, NRAS, MAP2K1, and RIT1 mutations by polymerase chain reaction-direct sequencing. MET amplification and ALK and ROS1 translocations were assessed by fluorescent in situ hybridizations. MET and thyroid transcription factor-1 protein expressions were investigated by immunohistochemistry. Seventy percent of lung adenocarcinomas carried actionable driver events. Alterations on EGFR (43%), KRAS (11.4%), ALK (6%), and MET (5.4%) were frequently found. ROS1 translocation and mutations involving BRAF, HER2, NRAS, and PIK3CA were also detected. No mutation was observed in RIT1 and MAP2K1. Patients with EGFR mutations had a favorable prognosis, whereas those with MET mutations had poorer overall survival. Multivariate analysis further demonstrated that MET mutation was an independent prognostic factor. Although MET protein expression was detected in 65% of lung adenocarcinoma, only 10% of the MET-immunohistochemistry positive tumors harbor MET DNA alterations that drove protein overexpression. Appropriate predictive biomarker is essential for selecting patients who might benefit from specific targeted therapy. Actionable driver events can be detected in two thirds of lung adenocarcinoma. MET DNA alterations define a subset of patients with aggressive diseases that might potentially benefit from anti-MET targeted therapy. High negative predictive values of thyroid transcription factor-1 and MET expression suggest potential roles as surrogate markers for EGFR and/or MET mutations."	"Integrated analysis of whole-exome sequencing and transcriptome profiling in males with autism spectrum disorders. Autism spectrum disorders (ASD) are a group of neurodevelopmental disorders with high heritability. Recent findings support a highly heterogeneous and complex genetic etiology including rare de novo and inherited mutations or chromosomal rearrangements as well as double or multiple hits. We performed whole-exome sequencing (WES) and blood cell transcriptome by RNAseq in a subset of male patients with idiopathic ASD (n = 36) in order to identify causative genes, transcriptomic alterations, and susceptibility variants. We detected likely monogenic causes in seven cases: five de novo (SCN2A, MED13L, KCNV1, CUL3, and PTEN) and two inherited X-linked variants (MAOA and CDKL5). Transcriptomic analyses allowed the identification of intronic causative mutations missed by the usual filtering of WES and revealed functional consequences of some rare mutations. These included aberrant transcripts (PTEN, POLR3C), deregulated expression in 1.7% of mutated genes (that is, SEMA6B, MECP2, ANK3, CREBBP), allele-specific expression (FUS, MTOR, TAF1C), and non-sense-mediated decay (RIT1, ALG9). The analysis of rare inherited variants showed enrichment in relevant pathways such as the PI3K-Akt signaling and the axon guidance. Integrative analysis of WES and blood RNAseq data has proven to be an efficient strategy to identify likely monogenic forms of ASD (19% in our cohort), as well as additional rare inherited mutations that can contribute to ASD risk in a multifactorial manner. Blood transcriptomic data, besides validating 88% of expressed variants, allowed the identification of missed intronic mutations and revealed functional correlations of genetic variants, including changes in splicing, expression levels, and allelic expression."	"Mutations in RIT1 cause Noonan syndrome - additional functional evidence and expanding the clinical phenotype. RASopathies are a clinically heterogeneous group of conditions caused by mutations in 1 of 16 proteins in the RAS-mitogen activated protein kinase (RAS-MAPK) pathway. Recently, mutations in RIT1 were identified as a novel cause for Noonan syndrome. Here we provide additional functional evidence for a causal role of RIT1 mutations and expand the associated phenotypic spectrum. We identified two de novo missense variants p.Met90Ile and p.Ala57Gly. Both variants resulted in increased MEK-ERK signaling compared to wild-type, underscoring gain-of-function as the primary functional mechanism. Introduction of p.Met90Ile and p.Ala57Gly into zebrafish embryos reproduced not only aspects of the human phenotype but also revealed abnormalities of eye development, emphasizing the importance of RIT1 for spatial and temporal organization of the growing organism. In addition, we observed severe lymphedema of the lower extremity and genitalia in one patient. We provide additional evidence for a causal relationship between pathogenic mutations in RIT1, increased RAS-MAPK/MEK-ERK signaling and the clinical phenotype. The mutant RIT1 protein may possess reduced GTPase activity or a diminished ability to interact with cellular GTPase activating proteins; however the precise mechanism remains unknown. The phenotypic spectrum is likely to expand and includes lymphedema of the lower extremities in addition to nuchal hygroma. "	"mTORC2 is required for rit-mediated oxidative stress resistance. Rit, a member of the Ras family of GTPases, has been shown to promote cell survival in response to oxidative stress, in part by directing an evolutionarily conserved p38 MAPK-Akt survival cascade. Aberrant Rit signaling has recently been implicated as a driver mutation in human cancer, adding importance to the characterization of critical Rit effector pathways. However, the mechanism by which Rit-p38 signaling regulated Akt activity was unknown. Here, we identify mTORC2 as a critical downstream mediator of Rit-dependent survival signaling in response to reactive oxygen species (ROS) stress. Rit interacts with Sin1 (MAPKAP1), and Rit loss compromises ROS-dependent mTORC2 complex activation, blunting mTORC2-mediated phosphorylation of Akt kinase. Taken together, our findings demonstrate that the p38/mTORC2/Akt signaling cascade mediates Rit-dependent oxidative stress survival. Inhibition of this previously unrecognized cascade should be explored as a potential therapy of Rit-dependent malignancies. "	"Clinical and Molecular Findings of Tunisian Patients with RASopathies. Noonan syndrome (NS) and related disorders, which are now summarized under the term RASopathies, are caused by germline mutations in genes encoding protein components of the Ras/mitogen-activated protein kinase pathway. In this study, we evaluated the clinical and molecular spectrum of 21 Tunisian patients, recruited by a cardiology unit, for whom RASopathy diagnosis was suspected by clinical geneticists. Overall, 19 patients had a clinical diagnosis of NS and 2 were classified as having Cardiofaciocutaneous (CFC) syndrome. In 52% (n = 11) of patients, a RASopathy has been molecularly confirmed. Mutations in PTPN11 and SOS1 genes were found in patients with diagnosis of NS and BRAF gene mutations in patients with CFC syndrome. As reported from other cohorts, mutations in exons 3 and 8 of the PTPN11 gene predominated in Tunisian NS patients. A very uncommon PTPN11 mutation c.5C&gt;T (p.T2I), the functional consequences of which have so far remained unclear, was identified in one patient. As biased by the mode of recruitment, all patients included in this study had a congenital heart defect, with pulmonary valve stenosis being the most frequent one. Short stature and developmental abnormalities were present in mutation-positive cases. This is the first molecular study in patients from southern Tunisia with RASopathy diagnosis. "	"Further evidence of the importance of RIT1 in Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant disorder consisting of short stature, short and/or webbed neck, distinctive facial features, cardiac abnormalities, cryptorchidism, and coagulation defects. NS exhibits genetic heterogeneity, associated with mutated genes that participate in RAS-mitogen-activated protein kinase signal transduction. Recently, a new gene (RIT1) was discovered as the causative gene in 17 of 180 Japanese individuals who were negative for the previously known genes for NS and were studied using exome sequencing (four patients), followed by Sanger sequencing (13 patients). The present study used the same technique in 70 Brazilian patients with NS and identified six with RIT1 missense mutations. Thus, we confirm that RIT1 is responsible for approximately 10% of the patients negative for mutations in the previously known genes. The phenotype includes a high frequency of high birth weight, relative macrocephaly, left ventricular hypertrophy, and ectodermal findings, such as curly hair, hyperpigmentation, and wrinkled palms and soles. Short stature and pectus deformity were less frequent. The majority of patients with a RIT1 mutation did not show apparent intellectual disability. Because of the relatively high frequency of mutations in RIT1 among patients with NS and its occurrence in different populations, we suggest that it should be added to the list of genes included in panels for the molecular diagnosis of NS through targeted next-generation sequencing."	"Comprehensive molecular profiling of lung adenocarcinoma. Adenocarcinoma of the lung is the leading cause of cancer death worldwide. Here we report molecular profiling of 230 resected lung adenocarcinomas using messenger RNA, microRNA and DNA sequencing integrated with copy number, methylation and proteomic analyses. High rates of somatic mutation were seen (mean 8.9 mutations per megabase). Eighteen genes were statistically significantly mutated, including RIT1 activating mutations and newly described loss-of-function MGA mutations which are mutually exclusive with focal MYC amplification. EGFR mutations were more frequent in female patients, whereas mutations in RBM10 were more common in males. Aberrations in NF1, MET, ERBB2 and RIT1 occurred in 13% of cases and were enriched in samples otherwise lacking an activated oncogene, suggesting a driver role for these events in certain tumours. DNA and mRNA sequence from the same tumour highlighted splicing alterations driven by somatic genomic changes, including exon 14 skipping in MET mRNA in 4% of cases. MAPK and PI(3)K pathway activity, when measured at the protein level, was explained by known mutations in only a fraction of cases, suggesting additional, unexplained mechanisms of pathway activation. These data establish a foundation for classification and further investigations of lung adenocarcinoma molecular pathogenesis. "	"Next-generation sequencing identifies rare variants associated with Noonan syndrome. Noonan syndrome (NS) is a relatively common genetic disorder, characterized by typical facies, short stature, developmental delay, and cardiac abnormalities. Known causative genes account for 70-80% of clinically diagnosed NS patients, but the genetic basis for the remaining 20-30% of cases is unknown. We performed next-generation sequencing on germ-line DNA from 27 NS patients lacking a mutation in the known NS genes. We identified gain-of-function alleles in Ras-like without CAAX 1 (RIT1) and mitogen-activated protein kinase kinase 1 (MAP2K1) and previously unseen loss-of-function variants in RAS p21 protein activator 2 (RASA2) that are likely to cause NS in these patients. Expression of the mutant RASA2, MAP2K1, or RIT1 alleles in heterologous cells increased RAS-ERK pathway activation, supporting a causative role in NS pathogenesis. Two patients had more than one disease-associated variant. Moreover, the diagnosis of an individual initially thought to have NS was revised to neurofibromatosis type 1 based on an NF1 nonsense mutation detected in this patient. Another patient harbored a missense mutation in NF1 that resulted in decreased protein stability and impaired ability to suppress RAS-ERK activation; however, this patient continues to exhibit a NS-like phenotype. In addition, a nonsense mutation in RPS6KA3 was found in one patient initially diagnosed with NS whose diagnosis was later revised to Coffin-Lowry syndrome. Finally, we identified other potential candidates for new NS genes, as well as potential carrier alleles for unrelated syndromes. Taken together, our data suggest that next-generation sequencing can provide a useful adjunct to RASopathy diagnosis and emphasize that the standard clinical categories for RASopathies might not be adequate to describe all patients. "	"Contribution of RIT1 mutations to the pathogenesis of Noonan syndrome: four new cases and further evidence of heterogeneity. NA"	"Comprehensive massive parallel DNA sequencing strategy for the genetic diagnosis of the neuro-cardio-facio-cutaneous syndromes. Variants in 11 genes of the RAS/MAPK signaling pathway have been causally linked to the neuro-cardio-facio-cutaneous syndromes group (NCFCS). Recently, A2ML1 and RIT1 were also associated with these syndromes. Because of the genetic and clinical heterogeneity of NCFCS, it is challenging to define strategies for their molecular diagnosis. The aim of this study was to develop and validate a massive parallel sequencing (MPS)-based strategy for the molecular diagnosis of NCFCS. A multiplex PCR-based strategy for the enrichment of the 13 genes and a variant prioritization pipeline was established. Two sets of genomic DNA samples were studied using the Ion PGM System: (1) training set (n =15) to optimize the strategy and (2) validation set (n = 20) to validate and evaluate the power of the new methodology. Sanger sequencing was performed to confirm all variants and low covered regions. All variants identified by Sanger sequencing were detected with our MPS approach. The methodology resulted in an experimental approach with a specificity of 99.0% and a maximum analytical sensitivity of ≥ 98.2% with a confidence of 99%. Importantly, two patients (out of 20) harbored described disease-causing variants in genes that are not routinely tested (RIT1 and SHOC2). The addition of less frequently altered genes increased in ≈ 10% the diagnostic yield of the strategy currently used. The presented workflow provides a comprehensive genetic screening strategy for patients with NCFCS in a fast and cost-efficient manner. This approach demonstrates the potential of a combined MPS-Sanger sequencing-based strategy as an effective diagnostic tool for heterogeneous diseases."	"Oncogenic RIT1 mutations in lung adenocarcinoma. Lung adenocarcinoma is comprised of distinct mutational subtypes characterized by mutually exclusive oncogenic mutations in RTK/RAS pathway members KRAS, EGFR, BRAF and ERBB2, and translocations involving ALK, RET and ROS1. Identification of these oncogenic events has transformed the treatment of lung adenocarcinoma via application of therapies targeted toward specific genetic lesions in stratified patient populations. However, such mutations have been reported in only ∼55% of lung adenocarcinoma cases in the United States, suggesting other mechanisms of malignancy are involved in the remaining cases. Here we report somatic mutations in the small GTPase gene RIT1 in ∼2% of lung adenocarcinoma cases that cluster in a hotspot near the switch II domain of the protein. RIT1 switch II domain mutations are mutually exclusive with all other known lung adenocarcinoma driver mutations. Ectopic expression of mutated RIT1 induces cellular transformation in vitro and in vivo, which can be reversed by combined PI3K and MEK inhibition. These data identify RIT1 as a driver oncogene in a specific subset of lung adenocarcinomas and suggest PI3K and MEK inhibition as a potential therapeutic strategy in RIT1-mutated tumors. "	"Gain-of-function mutations in RIT1 cause Noonan syndrome, a RAS/MAPK pathway syndrome. RAS GTPases mediate a wide variety of cellular functions, including cell proliferation, survival, and differentiation. Recent studies have revealed that germline mutations and mosaicism for classical RAS mutations, including those in HRAS, KRAS, and NRAS, cause a wide spectrum of genetic disorders. These include Noonan syndrome and related disorders (RAS/mitogen-activated protein kinase [RAS/MAPK] pathway syndromes, or RASopathies), nevus sebaceous, and Schimmelpenning syndrome. In the present study, we identified a total of nine missense, nonsynonymous mutations in RIT1, encoding a member of the RAS subfamily, in 17 of 180 individuals (9%) with Noonan syndrome or a related condition but with no detectable mutations in known Noonan-related genes. Clinical manifestations in the RIT1-mutation-positive individuals are consistent with those of Noonan syndrome, which is characterized by distinctive facial features, short stature, and congenital heart defects. Seventy percent of mutation-positive individuals presented with hypertrophic cardiomyopathy; this frequency is high relative to the overall 20% incidence in individuals with Noonan syndrome. Luciferase assays in NIH 3T3 cells showed that five RIT1 alterations identified in children with Noonan syndrome enhanced ELK1 transactivation. The introduction of mRNAs of mutant RIT1 into 1-cell-stage zebrafish embryos was found to result in a significant increase of embryos with craniofacial abnormalities, incomplete looping, a hypoplastic chamber in the heart, and an elongated yolk sac. These results demonstrate that gain-of-function mutations in RIT1 cause Noonan syndrome and show a similar biological effect to mutations in other RASopathy-related genes. "	"Rit subfamily small GTPases: regulators in neuronal differentiation and survival. Ras family small GTPases serve as binary molecular switches to regulate a broad array of cellular signaling cascades, playing essential roles in a vast range of normal physiological processes, with dysregulation of numerous Ras-superfamily G-protein-dependent regulatory cascades underlying the development of human disease. However, the physiological function for many &quot;orphan&quot; Ras-related GTPases remain poorly characterized, including members of the Rit subfamily GTPases. Rit is the founding member of a novel branch of the Ras subfamily, sharing close homology with the neuronally expressed Rin and Drosophila Ric GTPases. Here, we highlight recent studies using transgenic and knockout animal models which have begun to elucidate the physiological roles for the Rit subfamily, including emerging roles in the regulation of neuronal morphology and cellular survival signaling, and discuss new genetic data implicating Rit and Rin signaling in disorders such as cancer, Parkinson's disease, autism, and schizophrenia. "	"Novel recurrent mutations in the RAS-like GTP-binding gene RIT1 in myeloid malignancies. NA"	"Rit GTPase regulates a p38 MAPK-dependent neuronal survival pathway. Rit, along with Rin and Drosophila Ric, comprises the Rit subfamily of Ras-related small GTPases. Although the cellular functions of many Ras family GTPases are well established, the physiological significance of Rit remains poorly understood. Loss of Rit sensitizes multiple mammalian cell lines and mouse embryonic fibroblasts (MEFs) derived from Rit(-/-) mice to oxidative stress-mediated apoptosis. However, whether Rit-mediated pro-survival signaling extends to other cell types, particularly neurons, is presently unknown. Here, to examine these issues we generated a transgenic mouse overexpressing constitutively active Rit (Rit(Q79L)) exclusively in neurons, under control of the Synapsin I promoter. Active Rit-expressing hippocampal neurons display a dramatic increase in oxidative stress resistance. Moreover, pharmacological inhibitor studies demonstrate that p38 MAPK, rather than a MEK/ERK signaling cascade, is required for Rit-mediated protection. Together, the present studies identify a critical role for the Rit-p38 MAPK signaling cascade in promoting hippocampal neuron survival following oxidative stress."	"Rit-mediated stress resistance involves a p38-mitogen- and stress-activated protein kinase 1 (MSK1)-dependent cAMP response element-binding protein (CREB) activation cascade. The cAMP response element (CRE)-binding protein (CREB) is a key regulatory factor of gene transcription, and plays an essential role in development of the central nervous system and for neuroprotection. Multiple signaling pathways have been shown to contribute to the regulation of CREB-dependent transcription, including both ERK and p38 mitogen-activated protein (MAP) kinases cascades. Recent studies have identified the Ras-related small G-protein, Rit, as a central regulator of a p38-MK2-HSP27 signaling cascade that functions as a critical survival mechanism for cells adapting to stress. Here, we examine the contribution of Rit-p38 signaling to the control of stress-dependent gene transcription. Using a pheochromocytoma cell model, we find that a novel Rit-p38-MSK1/2 pathway plays a critical role in stress-mediated CREB activation. RNAi-mediated Rit silencing, or inhibition of p38 or MSK1/2 kinases, was found to disrupt stress-mediated CREB-dependent transcription, resulting in increased cell death. Furthermore, ectopic expression of active Rit stimulates CREB-Ser133 phosphorylation, induces expression of the anti-apoptotic Bcl-2 and Bcl(XL) proteins, and promotes cell survival. These data indicate that the Rit-p38-MSK1/2 signaling pathway may have an important role in the stress-dependent regulation of CREB-dependent gene expression."	"Rit GTPase signaling promotes immature hippocampal neuronal survival. The molecular mechanisms governing the spontaneous recovery seen following brain injury remain elusive, but recent studies indicate that injury-induced stimulation of hippocampal neurogenesis contributes to the repair process. The therapeutic potential of endogenous neurogenesis is tempered by the demonstration that traumatic brain injury (TBI) results in the selective death of adult-born immature neurons, compromising the cell population poised to compensate for trauma-induced neuronal loss. Here, we identify the Ras-related GTPase, Rit, as a critical player in the survival of immature hippocampal neurons following brain injury. While Rit knock-out (Rit(-/-)) did not alter hippocampal development, hippocampal neural cultures derived from Rit(-/-) mice display increased cell death and blunted MAPK cascade activation in response to oxidative stress, without affecting BDNF-dependent signaling. When compared with wild-type hippocampal cultures, Rit loss rendered immature (Dcx(+)) neurons susceptible to oxidative damage, without altering the survival of neural progenitor (Nestin(+)) cells. Oxidative stress is a major contributor to neuronal cell death following brain injury. Consistent with the enhanced vulnerability of cultured Rit(-/-) immature neurons, Rit(-/-) mice exhibited a significantly greater loss of adult-born immature neurons within the dentate gyrus after TBI. In addition, post-TBI neuronal remodeling was blunted. Together, these data identify a new and unexpected role for Rit in injury-induced neurogenesis, functioning as a selective survival mechanism for immature hippocampal neurons within the subgranular zone of the dentate gyrus following TBI."	"Natural variation for Fe-efficiency is associated with upregulation of Strategy I mechanisms and enhanced citrate and ethylene synthesis in Pisum sativum L. Iron (Fe)-deficiency is a common abiotic stress in Pisum sativum L. grown in many parts of the world. The aim of the study was to investigate variation in tolerance to Fe deficiency in two pea genotypes, Santi (Fe-efficient) and Parafield (Fe-inefficient). Fe deficiency caused greater declines in chlorophyll score, leaf Fe concentration and root-shoot development in Parafield compared to Santi, suggesting greater Fe-efficiency in Santi. Fe chelate reductase activity and ethylene production were increased in the roots of Santi and to a lesser extent in Parafield under Fe deficiency, while proton extrusion was only occurred in Santi. Moreover, expression of the Fe chelate reductase gene, FRO1, and Fe transporter, RIT1 were upregulated in Fe-deficient roots of Santi. Expression of HA1 (proton extrusion) was also significantly higher in Santi when compared to Parafield grown in Fe-deficient conditions. Furthermore, the application of the ethylene biosynthesis inhibitor, 1-aminoisobutyric acid reduced the Fe chelate reductase activity, supporting a direct role for ethylene in its induction. A significant increase in root citrate was only observed in Santi under Fe deficiency indicating a role for citrate in the Fe-efficiency mechanism. Taken together, our physiological and molecular data indicate that genotypic variation in tolerance to Fe deficiency in Santi and Parafield plants is a result of variation in a number of Strategy I mechanisms and also suggest a direct role for ethylene in Fe reductase activity. The pea cultivar, Santi provides a new source of Fe-efficiency that can be exploited to breed more Fe-efficient peas."	"Identification and modeling of a phosphatase-like domain in a tRNA 2'-O-ribosyl phosphate transferase Rit1p. Cytoplasmic initiator tRNAs from plants and fungi are excluded from participating in translational elongation by the presence of a unique 2'-phosphoribosyl modification of purine 64, introduced posttranscriptionally by the enzyme Rit1p. Members of the Rit1p family show no obvious similarity to other proteins or domains, there is no structural information available to guide experimental analyses, and the mechanism of action of this enzyme remains a mystery. Using protein fold recognition, we identified a phosphatase-like domain in the C-terminal part of Rit1p. A comparative model of the C-terminal domain was constructed and used to predict the function of conserved residues and to propose the mechanism of action of Rit1p. The model will facilitate experimental analyses of Rit1p and its interactions with the initiator tRNA substrate."	"An evolutionarily conserved Rit GTPase-p38 MAPK signaling pathway mediates oxidative stress resistance. Ras-related small GTP-binding proteins control a wide range of cellular processes by regulating a variety of effector pathways, including prominent roles in the control of mitogen-activated protein kinase (MAPK) cascades. Although the regulatory role(s) for many Ras family GTPases are well established, the physiological function for the Rit/Rin subfamily has been lacking. Here, using both knockout mice and Drosophila models, we demonstrate an evolutionarily conserved role for Rit subfamily GTPases (mammalian Rit and Rin, and the Drosophila RIC homologue) in governing survival in response to oxidative stress. Primary embryonic fibroblasts derived from Rit knockout mice display increased apoptosis and selective disruption of MAPK signaling following reactive oxygen species (ROS) exposure but not in response to endoplasmic reticulum stress or DNA damage. These deficits include a reduction in ROS-mediated stimulation of a p38-MK2-HSP27 signaling cascade that controls Akt activation, directing Bad phosphorylation to promote cell survival. Furthermore, D-RIC null flies display increased susceptibility to environmental stresses and reduced stress-dependent p38 signaling, extending the Rit-p38 survival pathway to Drosophila. Together, our studies establish the Rit GTPases as critical regulators of an evolutionarily conserved, p38 MAPK-dependent signaling cascade that functions as an important survival mechanism for cells in response to oxidative stress."	"Iwr1 protein is important for preinitiation complex formation by all three nuclear RNA polymerases in Saccharomyces cerevisiae. Iwr1, a protein conserved throughout eukaryotes, was originally identified by its physical interaction with RNA polymerase (Pol) II. Here, we identify Iwr1 in a genetic screen designed to uncover proteins involved in Pol III transcription in S. cerevisiae. Iwr1 is important for Pol III transcription, because an iwr1 mutant strain shows reduced association of TBP and Pol III at Pol III promoters, a decreased rate of Pol III transcription, and lower steady-state levels of Pol III transcripts. Interestingly, an iwr1 mutant strain also displays reduced association of TBP to Pol I-transcribed genes and of both TBP and Pol II to Pol II-transcribed promoters. Despite this, rRNA and mRNA levels are virtually unaffected, suggesting a post-transcriptional mechanism compensating for the occupancy defect. Thus, Iwr1 plays an important role in preinitiation complex formation by all three nuclear RNA polymerases."	"A rit GTPase-p38 mitogen-activated protein kinase survival pathway confers resistance to cellular stress. Cells mobilize diverse signaling cascades to protect against stress-mediated injury. Ras family GTPases play a pivotal role in cell fate determination, serving as molecular switches to control the integration of multiple signaling pathways. p38 mitogen-activated protein kinase (MAPK) signaling serves as a critical fulcrum in this process, regulating networks that stimulate cellular apoptosis but also have the capacity to promote cell survival. However, relatively little is known concerning this functional dichotomy, particularly the regulation of p38-dependent survival pathways. Here, we demonstrate that the Rit GTPase promotes cell survival by directing an unexpected p38 MAPK-dependent AKT survival pathway. Following stress exposure, Rit small hairpin RNA interference (shRNAi)-treated cells display increased apoptosis and selective disruption of p38 MAPK signaling, while expression of constitutively activated Rit promotes p38-AKT-dependent cell survival. Rit, but not Ras or Rap GTPases, can associate with, and is critical for, stress-mediated activation of the scaffolded p38-MK2-HSP27-AKT prosurvival signaling complex. Together, our studies establish Rit as a central regulator of a p38 MAPK-dependent signaling cascade that functions as a critical cellular survival mechanism in response to stress."	"Rit contributes to neurite outgrowth triggered by the alpha subunit of Go. Heterotrimeric GTP-binding protein transduce signals initiated by a variety of hormones and neurotransmitters. Go, a member of the Go/Gi family, is the most abundant heterotrimeric GTP-binding protein in nervous tissues and has been implicated in neuronal differentiation. The mechanism by which Go modulates neuronal differentiation has not been, however, fully elucidated. Here, we identified small GTPase Rit as an interacting partner of the alpha-subunit of Go (Goalpha). The biochemical characterizations of Goalpha::Rit interaction revealed that Rit is a candidate downstream effector for Goalpha. Furthermore, dominant negative Rit inhibited Goalpha-induced neurite outgrowth and Erk phosphorylation in Neuro2a cells. These results suggest that Rit may be involved in the signaling pathway for Goalpha-mediated neuronal differentiation."	"Immune transcriptome alterations in the temporal cortex of subjects with autism. Autism is a severe disorder that involves both genetic and environmental factors. Expression profiling of the superior temporal gyrus of six autistic subjects and matched controls revealed increased transcript levels of many immune system-related genes. We also noticed changes in transcripts related to cell communication, differentiation, cell cycle regulation and chaperone systems. Critical expression changes were confirmed by qPCR (BCL6, CHI3L1, CYR61, IFI16, IFITM3, MAP2K3, PTDSR, RFX4, SPP1, RELN, NOTCH2, RIT1, SFN, GADD45B, HSPA6, HSPB8 and SERPINH1). Overall, these expression patterns appear to be more associated with the late recovery phase of autoimmune brain disorders, than with the innate immune response characteristic of neurodegenerative diseases. Moreover, a variance-based analysis revealed much greater transcript variability in brains from autistic subjects compared to the control group, suggesting that these genes may represent autism susceptibility genes and should be assessed in follow-up genetic studies."	"cDNA cloning, sequence identification and tissue expression distribution of three novel porcine genes: UCHL3, RIT1 and CCND3. The complete CDS sequences of three porcine genes: UCHL3, RIT1 and CCND3 were amplified using RT-PCR based on the sequence information of the mouse or other mammals and referenced highly homologous pig ESTs. Sequence analysis of these three genes revealed that the porcine UCHL3 gene encodes a protein of 230 amino acids and has high homology with the ubiquitin carboxyl-terminal hydrolase isozyme L3 (UCHL3) of four species-bovine (97%), human (96%), mouse (95%) and rat (94%). The porcine RIT1 gene encodes a protein of 219 amino acids and has high homology with the GTP-binding protein Rit1 (RIT1) of two species-human (97%), mouse (97%). The porcine CCND3 gene encodes a protein of 292 amino acids and has high homology with the G1/S-specific cyclin-D3 (CCND3) of four species-bovine (98%), human (97%), mouse (93%) and rat (92%). The phylogenetic tree analysis revealed that the swine UCHL3 has a closer genetic relationship with the UCHL3 of bovine, and the swine RIT1 has closer genetic relationships with the RIT1 of human, but the swine CCND3 has a closer genetic relationship with the CCND3 of bovine. The RT-PCR gene expression analysis indicated that the swine UCHL3, RIT1 and CCND3 genes were differentially expressed in tissues including small intestine, large intestine, liver, muscle, fat, lung, spleen and kidney. Our experiment established the primary foundation for further research on these three swine genes."	"Lack of Bcl11b tumor suppressor results in vulnerability to DNA replication stress and damages. Bcl11b/Rit1 is involved in T-cell development and undergoes chromosomal rearrangements in human T-cell leukemias. Thymocytes of Bcl11b(-/-) newborn mice exhibit apoptosis at a certain developmental stage when thymocytes re-enter into the cell-cycle. Here, we show that Bcl11b-knockdown T-cell lines, when exposed to growth stimuli, exhibited apoptosis at the S phase with concomitant decreases in a cell-cycle inhibitor, p27 and an antiapoptotic protein, Bcl-xL, owing to transcriptional repression. This repression was a likely consequence of the impairment of Sirt1, a nicotinamide adenine dinucleotide-dependent deacetylase associating with Bcl11b. Activation of the apoptotic process cleaved the mediator protein, Claspin, and inhibited phosphorylation of cell-cycle checkpoint kinase 1 (Chk1) that plays a central role in sensing and responding to incomplete replication. Bcl11b(-/-) thymocytes also failed to phosphorylate Chk1 when UV irradiated. These results implicate Bcl11b in the remedy for DNA replication stress and maintenance of genomic integrity."	"Radiation carcinogenesis in mouse thymic lymphomas. Ionizing radiation is a well-known carcinogen for various human tissues and a complete carcinogen that is able to initiate and promote neoplastic progression. Studies of radiation-induced mouse thymic lymphomas, one of the classic models in radiation carcinogenesis, demonstrated that even the unirradiated thymus is capable of developing into full malignancy when transplanted into the kidney capsule or subcutaneous tissue of irradiated mice. This suggests that radiation targets tissues other than thymocytes to allow expansion of cells with tumorigenic potential in the thymus. The idea is regarded as the 'indirect mechanism' for tumor development. This paper reviews the indirect mechanism and genes affecting the development of thymic lymphomas that we have analyzed. One is the Bcl11b/Rit1 tumor suppressor gene and the other is Mtf-1 gene affecting tumor susceptibility."	"Analysis of Rit signaling and biological activity. Rit (Ras-like expressed in many tissues) is the founding member of a novel subgroup within the larger Ras superfamily of small GTP-binding proteins. Although Rit shares more than 50% amino acid identity with Ras, it contains a unique effector domain in common with the closely related Rin and Drosophila Ric proteins and lacks the C-terminal lipidation motifs critical for the membrane association and biological activity of many Ras proteins. Interestingly, whereas Rit has only modest transforming ability when assayed in NIH 3T3 cells, Rit exhibits neuronal differentiation activities comparable to those of oncogenic mutants of Ras when assayed in PC12 and other neuronal cell lines. This cell-type specificity is explained in part by the ability of Rit to selectively activate the neuronal Raf isoform, B-Raf. Importantly, Rit seems to play a critical role in neurotrophin-mediated MAP kinase signaling, because Rit gene silencing significantly alters NGF-dependent MAP kinase signaling and neuronal differentiation. In this chapter, we discuss the reagents and methods used to characterize Rit-mediated signaling to MAP kinase-signaling pathways to determine the extracellular stimuli that regulate Rit activation and to characterize Rit-induced neuronal differentiation."	"Small GTPase proteins Rin and Rit Bind to PAR6 GTP-dependently and regulate cell transformation. The novel small GTPases Rin and Rit are close relatives of Ras, and recent studies show that they play a role in mediating neuronal differentiation. However, the direct effectors of Rin and Rit have yet to be fully characterized. Here we showed that Rin and Rit directly bind to the PDZ domain of PAR6, a cell polarity-regulating protein, in a GTP-dependent manner both in vivo and in vitro. Moreover, Rin and Rit can form a ternary complex consisting of PAR6 and Rac/Cdc42, members of the Rho family of small GTPases modulating cell growth and polarity. This ternary complex synergistically potentiates cell transformation in NIH3T3 cells, and the interaction between Rin/Rit and the PDZ domain of PAR6 is important for this effect. These results suggest that the Rin/Rit-PAR6-Rac/Cdc42 ternary complex may work physiologically in the cells, such as in tumorigenesis."	"Neuronal subtype-specific genes that control corticospinal motor neuron development in vivo. Within the vertebrate nervous system, the presence of many different lineages of neurons and glia complicates the molecular characterization of single neuronal populations. In order to elucidate molecular mechanisms underlying the specification and development of corticospinal motor neurons (CSMN), we purified CSMN at distinct stages of development in vivo and compared their gene expression to two other pure populations of cortical projection neurons: callosal projection neurons and corticotectal projection neurons. We found genes that are potentially instructive for CSMN development, as well as genes that are excluded from CSMN and are restricted to other populations of neurons, even within the same cortical layer. Loss-of-function experiments in null mutant mice for Ctip2 (also known as Bcl11b), one of the newly characterized genes, demonstrate that it plays a critical role in the development of CSMN axonal projections to the spinal cord in vivo, confirming that we identified central genetic determinants of the CSMN population."	"Rit contributes to nerve growth factor-induced neuronal differentiation via activation of B-Raf-extracellular signal-regulated kinase and p38 mitogen-activated protein kinase cascades. Rit is one of the original members of a novel Ras GTPase subfamily that uses distinct effector pathways to transform NIH 3T3 cells and induce pheochromocytoma cell (PC6) differentiation. In this study, we find that stimulation of PC6 cells by growth factors, including nerve growth factor (NGF), results in rapid and prolonged Rit activation. Ectopic expression of active Rit promotes PC6 neurite outgrowth that is morphologically distinct from that promoted by oncogenic Ras (evidenced by increased neurite branching) and stimulates activation of both the extracellular signal-regulated kinase (ERK) and p38 mitogen-activated protein (MAP) kinase signaling pathways. Furthermore, Rit-induced differentiation is dependent upon both MAP kinase cascades, since MEK inhibition blocked Rit-induced neurite outgrowth, while p38 blockade inhibited neurite elongation and branching but not neurite initiation. Surprisingly, while Rit was unable to stimulate ERK activity in NIH 3T3 cells, it potently activated ERK in PC6 cells. This cell type specificity is explained by the finding that Rit was unable to activate C-Raf, while it bound and stimulated the neuronal Raf isoform, B-Raf. Importantly, selective down-regulation of Rit gene expression in PC6 cells significantly altered NGF-dependent MAP kinase cascade responses, inhibiting both p38 and ERK kinase activation. Moreover, the ability of NGF to promote neuronal differentiation was attenuated by Rit knockdown. Thus, Rit is implicated in a novel pathway of neuronal development and regeneration by coupling specific trophic factor signals to sustained activation of the B-Raf/ERK and p38 MAP kinase cascades."	"Various types of rearrangements target TLX3 locus in T-cell acute lymphoblastic leukemia. Most chromosomal translocations observed in T-cell acute lymphoblastic leukemia (T-ALL) often produce transcriptional activation of transcription factor oncogenes. Ectopic expression of the TLX3 (also known as HOX11L2) gene has been shown to be associated with a cryptic t(5;14)(q35;q32) translocation specific for a subtype of T-ALL. Here we report several examples of variant and alternative translocations resulting in expression of TLX3 in T-ALL, and we describe three of these translocations in detail. In particular, the CDK6 gene was rearranged in two t(5;7)(q35;q21) translocations. In two additional instances, fusion of the BCL11B (also known as CTIP2) and RANBP17/TLX3 loci were shown to result from subtle genomic insertion/deletion within these loci. This study further underscores that TLX3 expression in T-ALL is strongly associated with the presence of genomic rearrangements."	"A novel t(6;14)(q25-q27;q32) in acute myelocytic leukemia involves the BCL11B gene. Cytogenetic studies in a patient with acute myelocytic leukemia (AML) revealed as the sole karyotypic alteration a half-cryptic rearrangement, identified with 48-color combined binary ratio-labeled fluorescence in situ hybridization (pq-COBRA-FISH) as a reciprocal t(6;14)(q?;q?). The breakpoints were later assigned on the basis of G-banding to t(6;14)(q25-q26;q32). FISH experiments using genomic probes showed that the breakpoint on 14q32.2 was within bacterial artificial chromosome RP11-782I5 and revealed BCL11B as the only candidate gene in the region. BCL11B is a homolog to BCL11A (2p13), a highly conserved gene implicated in mouse and human leukemias. To our knowledge, this is the first report implicating BCL11B in hematological malignancies. Because of lack of material, the translocation partner remains unknown."	"[Mutation and amplification of RIT1 gene in hepatocellular carcinoma]. To explore the mutation and amplification of RIT1 gene and their correlation with carcinogenesis of hepatocellular carcinoma (HCC). The polymerase chain reactioindirect sequencing method was used for detecting the mutations in the sequence of all 6 exons in the RIT1 gene of 50 HCC tissues and paratumor tissues. And the amplification of RIT1 gene was examined by fluorescence quantitative polymerase chain reaction method. A nucleotide 241 G --&gt; C substitution in exon 5 of RIT1 gene was detected in one patient's HCC tissue, but not in paratumor tissue; this 241 G --&gt; C substitution leads to Glu81Gln amino acid alteration in the conservative domain binding GTP. A nucleotide G --&gt; C substitution in 5'-UTR (-21 bp from initial codon) was detected in all of the 50 HCC tissues and paratumor tissues, and 2- to 297-fold amplification of RIT1 gene was detected in 11 of 43 qualified cases, the amplification frequency being 25.6%. Gene amplification is one of the main activating ways of RIT1 gene in HCC, and its amplification might be correlated with HCC carcinogenesis, while point mutation might be not."	"Involvement of V(D)J recombinase in the generation of intragenic deletions in the Rit1/Bcl11b tumor suppressor gene in gamma-ray-induced thymic lymphomas and in normal thymus of the mouse. Mouse thymic lymphomas induced by gamma-irradiation exhibited homozygous deletions of the Rit1/Bcl11b tumor suppressor gene on chromosome 12 at high frequencies. Internal deletions of one allele were frequently accompanied by loss of the other allele. In order to elucidate the mechanism of these internal deletions, the sites of breakage and rejoining were examined by PCR mapping and sequencing. The 5' site of the deletions clustered within an approximately 5 kb region of intron 1 and the 3' site was confined to a site in intron 3. These sites contained P and/or N nucleotides and cryptic sequences recognizable by the RAG1/2 recombinase in the vicinity. This suggests that the Rit1 intragenic deletions were generated by endogenous illegitimate V(D)J recombinase activity and such aberrant recombination was also detected by nested PCR of DNA from the thymus of unirradiated mice but not of RAG2-deficient mice. A rough estimate indicated that there reside as many as 10(3)-10(4) thymocytes having Rit1 deletions, assuming the presence of 10(8) thymocytes in the thymus of unirradiated mice. Moreover, the recombination frequency was not affected by gamma-irradiation. These results show no effect of radiation on Rit1 mutations and suggest an indirect mechanism for its role in lymphomagenesis."	"Plant and bacterial symbiotic mutants define three transcriptionally distinct stages in the development of the Medicago truncatula/Sinorhizobium meliloti symbiosis. In the Medicago truncatula/Sinorhizobium meliloti symbiosis, the plant undergoes a series of developmental changes simultaneously, creating a root nodule and allowing bacterial entry and differentiation. Our studies of plant genes reveal novel transcriptional regulation during the establishment of the symbiosis and identify molecular markers that distinguish classes of plant and bacterial symbiotic mutants. We have identified three symbiotically regulated plant genes encoding a beta,1-3 endoglucanase (MtBGLU1), a lectin (MtLEC4), and a cysteine-containing protein (MtN31). MtBGLU1 is down-regulated in the plant 24 h after exposure to the bacterial signal, Nod factor. The non-nodulating plant mutant dmi1 is defective in the ability to down-regulate MtBGLU1. MtLEC4 and MtN31 are induced 1 and 2 weeks after bacterial inoculation, respectively. We examined the regulation of these two genes and three previously identified genes (MtCAM1, ENOD2, and MtLB1) in plant symbiotic mutants and wild-type plants inoculated with bacterial symbiotic mutants. Plant (bit1, rit1, and Mtsym1) and bacterial (exoA and exoH) mutants with defects in the initial stages of invasion are unable to induce MtLEC4, MtN31, MtCAM1, ENOD2, and MtLB1. Bacterial mutants (fixJ and nifD) and a subset of plant mutants (dnf2, dnf3, dnf4, dnf6, and dnf7) defective for nitrogen fixation induce the above genes. The bacA bacterial mutant, which senesces upon deposition into plant cells, and two plant mutants with defects in nitrogen fixation (dnf1 and dnf5) induce MtLEC4 and ENOD2 but not MtN31, MtCAM1, or MtLB1. These data suggest the presence of at least three transcriptionally distinct developmental stages during invasion of M. truncatula by S. meliloti."	"Two distinct methods analyzing chromatin structure using centrifugation and antibodies to modified histone H3: both provide similar chromatin states of the Rit1/Bcl11b gene. Chromatin state of a 2-Mb region harboring Rit1/Bcl11b on mouse chromosome 12 was examined using two distinct methods. One is ChIP assay examining the degree of enrichment with histone H3 methylated at lysine 9 (H3-mLys9) in chromatin and the other is H/E (heterochromatin/euchromatin) assay that measures a chromatin condensation state by using centrifugation. The ChIP assay showed that a 50-kb interval covering the gene and an upstream region constituted chromatin enriched with unmethylated H3-mLys9 in cells expressing Rit1 compared to cells not expressing Rit1. In contrast, regions other than the 50-kb interval did not show much difference in the enrichment between the two different types of cells. On the other hand, H/E assay of two expressing and two non-expressing tissues provided compatible fractionation patterns, suggesting that the chromatin condensation state detected by H/E assay is correlated with the chromatin state controlled by histone H3 tail modification linked to gene expression. These results indicate that the centrifugation-based H/E assay should provide a new approach to the regulation of chromatin structure with respect to its condensation state, complementing ChIP assays."	"Kinetic properties of a micronutrient transporter from Pisum sativum indicate a primary function in Fe uptake from the soil. Fe uptake in dicotyledonous plants is mediated by a root plasma membrane-bound ferric reductase that reduces extracellular Fe(III)-chelates, releasing Fe(2+) ions, which are then absorbed via a metal ion transporter. We previously showed that Fe deficiency induces an increased capacity to absorb Fe and other micronutrient and heavy metals such as Zn(2+) and Cd(2+) into pea ( Pisum sativum L.) roots [Cohen et al. (1998) Plant Physiol 116:1063-1072). To investigate the molecular basis for this phenomenon, an Fe-regulated transporter that is a homologue of the Arabidopsis IRT1 micronutrient transporter was isolated from pea seedlings. This cDNA clone, designated RIT1 for root iron transporter, encodes a 348 amino acid polypeptide with eight putative membrane-spanning domains that is induced under Fe deficiency and can functionally complement yeast mutants defective in high- and low-affinity Fe transport. Chelate buffer techniques were used to control Fe(2+) in the uptake solution at nanomolar activities representative of those found in the rhizosphere, and radiotracer methodologies were employed to show that RIT1 is a very high-affinity (59)Fe(2+) uptake system ( K(m) =54-93 nM). Additionally, radiotracer ((65)Zn, (109)Cd) flux techniques were used to show that RIT can also mediate a lower affinity Zn and Cd influx ( K(m) of 4 and 100 microM, for Zn(2+) and Cd(2+), respectively). These findings suggest that, in typical agricultural soils, RIT1 functions primarily as a high-affinity Fe(2+) transporter that mediates root Fe acquisition. This is consistent with recent findings with Arabidopsis IRT1 knockout mutants that strongly suggest that this transporter plays a key role in root Fe uptake and nutrition. However, the ability of RIT1 to facilitate Zn and Cd uptake when these metals are present at elevated concentrations suggests that RIT1 may be one pathway for the entry of toxic metals into the food chain. Furthermore, the finding that plant Fe deficiency status may promote heavy metal uptake via increased expression of this transporter could have implications both for human nutrition and also for phytoremediation, the use of terrestrial plants to sequester toxic metals from contaminated soil."	"[Amplification of RIT1 in hepatocellular carcinoma and its clinical significance]. Previous study has demonstrated that high frequent gain of 1q was detected in hepatocellular carcinoma (HCC), 1q21-22 was identified as the minimum overlapping amplified region and might contain the candidate oncogenes involved in HCC. RIT1 gene is located in 1q21.3 region and is a member of Ras subfamily. RIT1 protein is similar to Ras protein in molecular structure and functions. It was speculated that RIT1 gene might be a candidate oncogene in HCC. So, the amplification of RIT1 gene was examined in HCC and was linked with the clinical indicators in this study to explore the possible functions of RIT1 gene in HCC development and progression. The fluorescence quantitative polymerase chain reaction(FQ-PCR) method was established successfully. The number of RIT1 gene DNA copies was examined in the tumor tissues and its paratumor tissues from 43 patients with HCC by PE ABI 7000 Sequence Detector. The ratio of the number of RIT1 gene DNA copies between the tumor tissue and its paratumor tissue represented the extent of amplification of RIT1 gene DNA. RIT1 gene DNA was amplified in 11 cases (25.6%)among 43 patients. The mean survival time (15 months) of the RIT1 gene-amplification group is significantly shorter than that (34 months) of the non-amplification group (P = 0.0009); furthermore, the pathological grade and the extent of liver cirrhosis were significantly different between the RIT1 gene-amplification group and the non-amplification group (P&lt; 0.01). The amplification of RIT1 gene might be one of the activation ways in HCC and might play an important role in HCC development and progression."	"Bcl11: sibling rivalry in lymphoid development. NA"	"Bcl11b is required for differentiation and survival of alphabeta T lymphocytes. The gene Bcl11b, which encodes zinc finger proteins, and its paralog, Bcl11a, are associated with immune-system malignancies. We have generated Bcl11b-deficient mice that show a block at the CD4-CD8- double-negative stage of thymocyte development without any impairment in cells of B- or gammadelta T cell lineages. The Bcl11b-/- thymocytes showed unsuccessful recombination of V(beta) to D(beta) and lacked the pre-T cell receptor (TCR) complex on the cell surface, owing to the absence of Tcrb mRNA expression. In addition, we saw profound apoptosis in the thymus of neonatal Bcl11b-/- mice. These results suggest that Bcl11b is a key regulator of both differentiation and survival during thymocyte development."	"Rit promotes MEK-independent neurite branching in human neuroblastoma cells. Rit, by sequence homology, is a member of the Ras subfamily of small guanine triphosphatases (GTPases). In PC6 cells, Rit signals through pathways both common to and different from those activated by Ras to promote cell survival and neurite outgrowth. However, the specific morphological changes induced by Rit in human cells are not known. Here, we show in a human neuronal model that Rit increases neurite outgrowth and branching through MEK-dependent and MEK-independent signaling mechanisms, respectively. Adenoviral expression of wild-type or constitutively active Rit increased neurite initiation, elongation and branching on endogenous matrix or a purified laminin-1 substratum of SH-SY5Y cells as assessed using image analysis. This outgrowth was morphologically distinct from that promoted by constitutively active Ras or Raf (evidenced by increased branching and elongation). Constitutively active Rit increased phosphorylation of ERK 1/2, but not Akt, and the MEK inhibitor PD 098059 blocked constitutively active Rit-induced neurite initiation but not elongation or branching. These results suggest that Rit plays a key role in human neuronal development and regeneration through activating both known and as yet undefined signaling pathways."	"Homozygous deletions and point mutations of the Rit1/Bcl11b gene in gamma-ray induced mouse thymic lymphomas. Allelic loss (LOH) mapping and sequence analysis were conducted for gamma-ray induced mouse thymic lymphomas and a novel tumor suppressor gene, Rit1/Bcl11b, on chromosome 12 was isolated. Bi-allelic changes were found in 17 of the 66 p53-proficient lymphomas with Rit1 LOH but in only 2 of the 54 p53-deficient lymphomas. This suggests an association between the presence of functional p53 and inactivation of the Rit1 gene in the lymphoma development. Introduction of Rit1 into HeLa cells lacking Rit1 expression suppressed cell growth. These results indicate that loss-of-function mutations of Rit1 contribute to mouse lymphomagenesis and possibly to human cancer development."	"Potent transforming activity of the small GTP-binding protein Rit in NIH 3T3 cells: evidence for a role of a p38gamma-dependent signaling pathway. A novel branch of the Ras family, Rit, was recently identified. Rit exhibits a distinct C-terminus and effector domain, and does not activate mitogen-activated protein kinase (MAPK) but can cooperate with Raf to transform fibroblasts. Here, we found that when overexpressed, activated mutants of Rit transform NIH 3T3 cells efficiently, and stimulate p38gamma but not MAPK, p38alpha, p38gamma, p38delta, or ERK5. Furthermore, we provide evidence that p38gamma activation is required for the ability of Rit to stimulate gene expression and cellular transformation. These findings suggest that this unique GTPase stimulates proliferative pathways distinct from those regulated by other Ras family members."	"Rit, a non-lipid-modified Ras-related protein, transforms NIH3T3 cells without activating the ERK, JNK, p38 MAPK or PI3K/Akt pathways. The biological functions of Rit (Ras-like protein in tissues) and Rin (Ras-like protein in neurons), members of a novel branch of Ras-related GTP-binding proteins that are approximately 50% identical to Ras, have not been characterized. Therefore, we assessed their activity in growth control, transformation and signaling. NIH cells stably expressing a constitutively activated mutant of Rit [Rit(79L)] (analogous to the oncogenic mutant H-Ras(61L)) demonstrated strong growth transformation, proliferating rapidly in low serum and forming colonies in soft agar and tumors in nude mice. Although Rit(79L) alone did not promote morphologically transformed foci, it cooperated with both Raf and Rho A to form Rac/Rho-like foci. Rin [Rin(78L)] cooperated only with Raf. Rit(79L) but not Rin(78L) stimulated transcription from luciferase reporter constructs regulated by SRF, NF-kappaB, Elk-1 and Jun. However, neither activated ERK, JNK or p38, or PI3-K/Akt kinases in immune complex kinase assays. Interestingly, although Rit lacks any known recognition signal for C-terminal lipidation, Rit-transformed cell growth and survival in low serum is dependent on a farnesylated protein, as treatment with farnesyltransferase inhibitors caused apoptosis. Rin cooperated with Raf in focus assays but did not otherwise function in these assays, perhaps due to a lack of appropriate effector pathways in NIH3T3 fibroblasts for this neural-specific Ras family member. In summary, although Rit shares most core effector domain residues with Ras, our results suggest that Rit uses novel effector pathways to regulate proliferation and transformation."	"A novel RalGEF-like protein, RGL3, as a candidate effector for rit and Ras. The small GTPase Rit is a close relative of Ras, and constitutively active Rit can induce oncogenic transformation. Although the effector loops of Rit and Ras are highly related, Rit fails to interact with the majority of the known Ras candidate effector proteins, suggesting that novel cellular targets may be responsible for Rit transforming activity. To gain insight into the cellular function of Rit, we searched for Rit-binding proteins by yeast two-hybrid screening. We identified the C-terminal Rit/Ras interaction domain of a protein we have designated RGL3 (Ral GEF-like 3) that shares 35% sequence identity with the known Ral guanine nucleotide exchange factors (RalGEFs). RGL3, through a C-terminal 99-amino acid domain, interacted in a GTP- and effector loop-dependent manner with Rit and Ras. Importantly, RGL3 exhibited guanine nucleotide exchange activity toward the small GTPase Ral that was stimulated in vivo by the expression of either activated Rit or Ras. These data suggest that RGL3 functions as an exchange factor for Ral and may serve as a downstream effector for both Rit and Ras."	"The Ras branch of small GTPases: Ras family members don't fall far from the tree. The Ras branch of the Ras superfamily consists of small GTPases most closely related to Ras and include the R-Ras, Rap, Ral, Rheb, Rin and Rit proteins. Although our understanding of Ras signaling and biology is now considerable, recent observations suggest that Ras function is more complex than previously believed. First, the three Ras proteins may not be functionally identical. Second, Ras function involves functional cross-talk with their close relatives."	"Biochemical characterization of the Ras-related GTPases Rit and Rin. We report the biochemical characterization of Rit and Rin, two members of the Ras superfamily identified by expression cloning. Recombinant Rit and Rin bind GTP and exhibit intrinsic GTPase activity. Conversion of Gln to Leu at position 79 (for Rit) or 78 (for Rin) (equivalent to position 61 in Ras) resulted in a complete loss of GTPase activity. Surprisingly, significant differences were found when the guanine nucleotide dissociation constants of Rit and Rin were compared with the majority of Ras-related GTPases. Both proteins display higher k(off) values for GTP than GDP in the presence of 10 mM Mg(2+). These GTP dissociation rates are 5- to 10-fold faster than most Ras-like GTPases. Despite these unique biochemical properties, our data support the notion that both Rit and Rin function as nucleotide-dependent molecular switches. To begin to address whether these proteins act as regulators of distinct signaling pathways, we examined their interaction with a series of known Ras-binding proteins by yeast two-hybrid analysis. Although Rit, Rin, and Ras have highly related effector domain sequences, Rit and Rin were found to interact with the known Ras binding proteins RalGDS, Rlf, and AF-6/Canoe but not with the Raf kinases, RIN1, or the p110 subunit of phosphatidylinositol 3-kinase. These interactions were GTP and effector domain dependent and suggest that RalGDS, Rlf, and AF-6 are Rit and Rin effectors. Their biochemical properties and interaction with a subset of known Ras effector proteins suggest that Rit and Rin may play important roles in the regulation of signaling pathways and cellular processes distinct from those controlled by Ras."	"Genetic interactions between a null allele of the RIT1 gene encoding an initiator tRNA-specific modification enzyme and genes encoding translation factors in Saccharomyces cerevisiae. The Saccharomyces cerevisiae gene RIT1 encodes a phospho-ribosyl transferase that exclusively modifies the initiator tRNA (tRNAMet(i)) by the addition of a 2'-O-ribosyl phosphate group to Adenosine 64. As a result, tRNAMet(i) is prevented from participating in the elongation steps of protein synthesis. We previously showed that the modification is not essential for the function of tRNAMet(i) in the initiation of translation, since rit1 null strains are viable and show no obvious growth defects. Here, we demonstrate that yeast strains in which a rit1 null allele is combined with mutations in any of the genes for the three subunits of eukaryotic initiation factor-2 (eIF-2), or with disruption alleles of two of the four initiator methionine tRNA (IMT) genes, show synergistic growth defects. A multicopy plasmid carrying an IMT gene can alleviate these defects. On the other hand, introduction of a high-copy-number plasmid carrying the TEF2 gene, which encodes the eukaryotic elongation factor 1alpha (eEF-1alpha), into rit1 null strains with two intact IMT genes had the opposite effect, indicating that increased levels of eEF-1alpha are deleterious to these strains, presumably due to sequestration of the unmodified met-tRNAMet(i) for elongation. Thus, under conditions in which the components of the ternary met-tRNAMet(i):GTP:eIF-2 complex become limiting or are functionally impaired, the presence of the 2'-O-ribosyl phosphate modification in tRNAMet(i) is important for the provision of adequate amounts of tRNAMet(i) for formation of this ternary complex."	"Rin, a neuron-specific and calmodulin-binding small G-protein, and Rit define a novel subfamily of ras proteins. cDNAs encoding two novel 25 kDa Ras-like proteins, Rit and Rin, were isolated from mouse retina using a degenerate PCR-based cloning strategy. Using the expressed sequence tag database, human orthologs were also obtained and sequenced. The protein sequences of Rit and Rin, which are 64% identical, are more similar to each other than to any known Ras protein. Their closest homologs in the databases are Mucor racemosus Ras2 and Ras3, to which they show approximately 48% identity. Rit and Rin both bind GTP in vitro. An unusual feature of their structure is that they lack a known recognition signal for C-terminal lipidation, a modification that is generally necessary for plasma membrane association among the Ras subfamily of proteins. Nonetheless, transiently expressed Rit and Rin are plasma membrane-localized. Both proteins contain a C-terminal cluster of basic amino acids, which could provide a mechanism for membrane association. Deletion analysis suggested that this region is important for Rit membrane binding but is not necessary for Rin. Rit, like most Ras-related proteins, is ubiquitously expressed. Rin, however, is unusual in that it is expressed only in neurons. In addition, Rin binds calmodulin through a C-terminal binding motif. These results suggest that Rit and Rin define a novel subfamily of Ras-related proteins, perhaps using a new mechanism of membrane association, and that Rin may be involved in calcium-mediated signaling within neurons."	"Rit1, a tRNA backbone-modifying enzyme that mediates initiator and elongator tRNA discrimination. Using a genetic screen in yeast aimed at identifying cellular factors involved in initiator and elongator methionine tRNA discrimination in the translational process, we have identified a mutation that abolish the requirement for elongator methionine tRNA. The gene affected, which we call the ribosylation of the initiator tRNA gene or RIT1, encodes a 2'-O-ribosyl phosphate transferase. This enzyme modifies exclusively the initiator tRNA in position 64 using 5'-phosphoribosyl-1'-pyrophosphate as the modification donor. As the initiator tRNA participates both in the initiation and elongation of translation in a rit1 strain, we conclude that the 2'-O-ribosyl phosphate modification discriminates the initiator tRNAs from the elongator tRNAs during protein synthesis. The modification enzyme was shown to recognize the stem-loop IV region that is unique in eukaryotic cytoplasmic initiator tRNAs."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"RRAS2"	"Noonan syndrome"	"RAS/MAPK Pathway Driver Alterations Are Significantly Associated with Oncogenic KIT Mutations in Germ-cell Tumors. To report the mutational profile and clinical outcomes of a cohort of patients with KIT-mutant germ-cell tumors (GCTs). Retrospective cohort study of all patients with KIT-mutant GCTs sequenced at Memorial Sloan Kettering between March 2014 and March 2020. Tumors were assessed with MSK-IMPACT, a DNA next-generation sequencing assay for targeted sequencing of up to 468 key cancer genes. Among 568 patients with GCTs, 8.1% had somatic KIT mutations, including 28 seminomas and 18 mixed/NSGCTs. Exons 17 (67.3%), 11 (22.4%), and 13 (6.1%) were most commonly affected. KIT-mutant cases were enriched for oncogenic RAS/MAPK pathway alterations compared to KIT-wildtype cases (34.8% vs. 19.2%, p = 0.02). Among KIT-mutant cases, concurrent mutations were noted in KRAS (21.7%), RRAS2 (11.8%), CBL (6.5%), NRAS (4.3%), MAP2K1 (2.2%), and RAC1 (2.2%). Mutations in KRAS, RRAS2, and NRAS were mutually exclusive. In all, 73.9% of patients developed metastases and 95.7% received chemotherapy. No patients received KIT-directed TKIs. Classification as a NSGCT rather than a SGCT was associated with an increased risk of death (HR 9.1, 95% CI 1.1-78.4, p = 0.04) while the presence of a concurrent RAS/MAPK pathway alteration was not (HR 0.8, 95% CI 0.1-4.3, p = 0.76). Mitogenic driver alterations can co-occur with activating KIT mutations, which may explain the lack of efficacy of TKIs in prior trials. Novel KIT-directed TKIs that target exon 17 mutations may benefit chemotherapy-refractory patients with KIT-mutant GCTs without RAS/MAPK alterations. Dual MEK/KIT inhibitor therapy in KIT-mutant GCTs with concurrent RAS/MAPK alterations could also be a plausible therapeutic strategy."	"Trans-endocytosis of intact IL-15Rα-IL-15 complex from presenting cells into NK cells favors signaling for proliferation. Interleukin 15 (IL-15) is an essential cytokine for the survival and proliferation of natural killer (NK) cells. IL-15 activates signaling by the β and common γ (γc) chain heterodimer of the IL-2 receptor through trans-presentation by cells expressing IL-15 bound to the α chain of the IL-15 receptor (IL-15Rα). We show here that membrane-associated IL-15Rα-IL-15 complexes are transferred from presenting cells to NK cells through trans-endocytosis and contribute to the phosphorylation of ribosomal protein S6 and NK cell proliferation. NK cell interaction with soluble or surface-bound IL-15Rα-IL-15 complex resulted in Stat5 phosphorylation and NK cell survival at a concentration or density of the complex much lower than required to stimulate S6 phosphorylation. Despite this efficient response, Stat5 phosphorylation was reduced after inhibition of metalloprotease-induced IL-15Rα-IL-15 shedding from trans-presenting cells, whereas S6 phosphorylation was unaffected. Conversely, inhibition of trans-endocytosis by silencing of the small GTPase TC21 or expression of a dominant-negative TC21 reduced S6 phosphorylation but not Stat5 phosphorylation. Thus, trans-endocytosis of membrane-associated IL-15Rα-IL-15 provides a mode of regulating NK cells that is not afforded to IL-2 and is distinct from activation by soluble IL-15. These results may explain the strict IL-15 dependence of NK cells and illustrate how the cellular compartment in which receptor-ligand interaction occurs can influence functional outcome."	"Long non-coding RNA HCP5 serves as a ceRNA sponging miR-17-5p and miR-27a/b to regulate the pathogenesis of childhood obesity via the MAPK signaling pathway. Background This study aimed to investigate the completing endogenous RNA (ceRNA) network involved in childhood obesity. Methods The microarray dataset GSE9624 was downloaded from the Gene Expression Omnibus (GEO) database. Differentially expressed long non-coding RNAs (lncRNAs) (DELs) and messenger RNAs (DEMs) were isolated between the childhood obesity and non-obesity tissue samples. Then, Gene Ontology (GO) functional and the Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analyses of isolated DEMs were performed. DELs and DEMs targeted miRNAs were predicted to construct a ceRNA regulatory network. Finally, critical lncRNAs were validated in another dataset. Results A total of 1257 differentially expressed RNAs were screened, including 28 lncRNAs and 1229 mRNAs. In addition, these RNAs were mainly involved in defense response, cell cycle, mitogen-activated protein kinase (MAPK) signaling pathway, apoptosis, etc. Three lncRNAs (human leukocyte antigen complex 5 [HCP5], long intergenic non-protein coding RNA 839 [LINC00839] and receptor activity modifying protein 2 [RAMP2-AS1]) and two related miRNAs (hsa-miR-17-5p and hsa-miR-27a/b-3p) were identified as key RNAs in childhood obesity. Specifically, lncRNA HCP5 interacted with miR-17-5p and miR-27a/b to regulate nemo-like kinase (NLK) and Ras-related protein 2 (RRAS2) via the MAPK signaling pathway. Finally, four genes (RRAS2, NLK, bcl2/adenovirus E1B protein-interacting protein 3 [BNIP3] and phorbol-12-myristate-13-acetate-induced protein 1 [PMAIP1]) targeted by miRNAs were predicted as critical genes and might be novel diagnostic biomarkers of childhood obesity. Conclusions lncRNA HCP5 could serve as a ceRNA sponging miR-17-5p and miR-27a/b to regulate the pathogenesis of childhood obesity via NLK and RRAS2 in the MAPK signaling pathway."	"RRAS2 knockdown suppresses osteosarcoma progression by inactivating the MEK/ERK signaling pathway. Aberrant function of RRAS2 drives malignant transformation in a various of cancers. However, little information exists on the function of RRAS2 in tumorigenesis of osteosarcoma. In this study, we investigated the effect of RRAS2 on osteosarcoma progression and its underlying mechanism. The gene expression level and prognostic power of RRAS2 in osteosarcoma were first investigated using the data from the Gene Expression Omnibus database. Then RNA interference was performed to silence the expression of RRAS2 in osteosarcoma cells. Quantitative real-time-PCR and western blot were used to examine the gene and protein expressions of RRAS2 in osteosarcoma cells. In-vitro cancer proliferation and migration were determined by 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolum bromide solution and wound-healing assays, respectively. We found that RRAS2 was significantly upregulated in osteosarcoma cells and high expression of RRAS2 was associated with a poor prognosis for patients with osteosarcoma. RNA interference decreased the gene and protein expression of RRAS2, reduced in-vitro the proliferation and migration of osteosarcoma cells, and suppressed the activation of the MEK/ERK signaling pathway. RRAS2 as an adverse prognostic factor promoted cell proliferation and migration by activating the MEK/ERK signaling pathway, and may provide new therapeutic value for osteosarcoma."	"RRAS2 shapes the TCR repertoire by setting the threshold for negative selection. Signal strength controls the outcome of αβ T cell selection in the thymus, resulting in death if the affinity of the rearranged TCR is below the threshold for positive selection, or if the affinity of the TCR is above the threshold for negative selection. Here we show that deletion of the GTPase RRAS2 results in exacerbated negative selection and above-normal expression of positive selection markers. Furthermore, Rras2<sup>-/-</sup> mice are resistant to autoimmunity both in a model of inflammatory bowel disease (IBD) and in a model of myelin oligodendrocyte glycoprotein (MOG)-induced experimental autoimmune encephalomyelitis (EAE). We show that MOG-specific T cells in Rras2<sup>-/-</sup> mice have reduced affinity for MOG/I-A<sup>b</sup> tetramers, suggesting that enhanced negative selection leads to selection of TCRs with lower affinity for the self-MOG peptide. An analysis of the TCR repertoire shows alterations that mostly affect the TCRα variable (TRAV) locus with specific VJ combinations and CDR3α sequences that are absent in Rras2<sup>-/-</sup> mice, suggesting their involvement in autoimmunity."	"Protective Effects of Salidroside against Carbon Tetrachloride (CCl4)-Induced Liver Injury by Initiating Mitochondria to Resist Oxidative Stress in Mice. The antioxidant effect of salidroside has been proven, but its role in liver injury is poorly understood. In this study, we aimed to evaluate the protective effects and mechanism of salidroside on liver injury induced by carbon tetrachloride (CCl4) in vivo. Mice were pretreated with salidroside (60 mg/kg, intraperitoneally injected, i.p.) once per day for 14 consecutive days and then administered with CCl4 (15.95 g/kg, i.p.) for 24 h to produce a liver injury model. Salidroside attenuated hepatic transaminase elevation in serum and ameliorated liver steatosis and necrosis, thereby suggesting its protective effect on the liver. Salidroside antagonized CCl4-induced toxicity by equilibrating antioxidation system, thereby inhibiting reactive oxygen species accumulation, and restoring mitochondrial structure and function. Salidroside exerts antioxidant and liver-protective effects by selectively inhibiting the activation of genes, including growth arrest and DNA -damage-inducible 45 α (Gadd45a), mitogen-activated protein kinase 7 (Mapk7), and related RAS viral oncogene homolog 2 (Rras2), which induce oxidative stress in the mitogen-activated protein kinase pathway. These results revealed that salidroside can protect the liver from CCl4-induced injury by resisting oxidative stress and protecting mitochondrial function."	"Signaling pathway network alterations in human ovarian cancers identified with quantitative mitochondrial proteomics. Molecular network changes are the hallmark of the pathogenesis of ovarian cancers (OCs). Network-based biomarkers benefit for the effective treatment of OC. This study sought to identify key pathway-network alterations and network-based biomarkers for clarification of molecular mechanisms and treatment of OCs. Ingenuity Pathway Analysis (IPA) platform was used to mine signaling pathway networks with 1198 human tissue mitochondrial differentially expressed proteins (mtDEPs) and compared those pathway network changes between OCs and controls. The mtDEPs in important cancer-related pathway systems were further validated with qRT-PCR and Western blot in OC cell models. Moreover, integrative analysis of mtDEPs and Cancer Genome Atlas (TCGA) data from 419 patients was used to identify hub molecules with molecular complex detection method. Hub molecule-based survival analysis and multiple multivariate regression analysis were used to identify survival-related hub molecules and hub molecule signature model. Pathway network analysis revealed 25 statistically significant networks, 192 canonical pathways, and 5 significant molecular/cellular function models. A total of 52 canonical pathways were activated or inhibited in cancer pathogenesis, including antigen presentation, mitochondrial dysfunction, GP6 signaling, EIF2 signaling, and glutathione-mediated detoxification. Of them, mtDEPs (TPM1, CALR, GSTP1, LYN, AKAP12, and CPT2) in those canonical pathway and molecular/cellular models were validated in OC cell models at the mRNA and protein levels. Moreover, 102 hub molecules were identified, and they were regulated by post-translational modifications and functioned in multiple biological processes. Of them, 62 hub molecules were individually significantly related to OC survival risk. Furthermore, multivariate regression analysis of 102 hub molecules identified significant seven hub molecule signature models (HIST1H2BK, ALB, RRAS2, HIBCH, EIF3E, RPS20, and RPL23A) to assess OC survival risks. These findings provided the overall signaling pathway network profiling of human OCs; offered scientific data to discover pathway network-based cancer biomarkers for diagnosis, prognosis, and treatment of OCs; and clarify accurate molecular mechanisms and therapeutic targets. These findings benefit for the discovery of effective and reliable biomarkers based on pathway networks for OC predictive and personalized medicine."	"Germline-Activating RRAS2 Mutations Cause Noonan Syndrome. Noonan syndrome (NS) is characterized by distinctive craniofacial appearance, short stature, and congenital heart disease. Approximately 80% of individuals with NS harbor mutations in genes whose products are involved in the RAS/mitogen-activating protein kinase (MAPK) pathway. However, the underlying genetic causes in nearly 20% of individuals with NS phenotype remain unexplained. Here, we report four de novo RRAS2 variants in three individuals with NS. RRAS2 is a member of the RAS subfamily and is ubiquitously expressed. Three variants, c.70_78dup (p.Gly24_Gly26dup), c.216A&gt;T (p.Gln72His), and c.215A&gt;T (p.Gln72Leu), have been found in cancers; our functional analyses showed that these three changes induced elevated association of RAF1 and that they activated ERK1/2 and ELK1. Notably, prominent activation of ERK1/2 and ELK1 by p.Gln72Leu associates with the severe phenotype of the individual harboring this change. To examine variant pathogenicity in vivo, we generated zebrafish models. Larvae overexpressing c.70_78dup (p.Gly24_Gly26dup) or c.216A&gt;T (p.Gln72His) variants, but not wild-type RRAS2 RNAs, showed craniofacial defects and macrocephaly. The same dose injection of mRNA encoding c.215A&gt;T (p.Gln72Leu) caused severe developmental impairments and low dose overexpression of this variant induced craniofacial defects. In contrast, the RRAS2 c.224T&gt;G (p.Phe75Cys) change, located on the same allele with p.Gln72His in an individual with NS, resulted in no aberrant in vitro or in vivo phenotypes by itself. Together, our findings suggest that activating RRAS2 mutations can cause NS and expand the involvement of RRAS2 proto-oncogene to rare germline disorders."	"Activating Mutations of RRAS2 Are a Rare Cause of Noonan Syndrome. Aberrant signaling through pathways controlling cell response to extracellular stimuli constitutes a central theme in disorders affecting development. Signaling through RAS and the MAPK cascade controls a variety of cell decisions in response to cytokines, hormones, and growth factors, and its upregulation causes Noonan syndrome (NS), a developmental disorder whose major features include a distinctive facies, a wide spectrum of cardiac defects, short stature, variable cognitive impairment, and predisposition to malignancies. NS is genetically heterogeneous, and mutations in more than ten genes have been reported to underlie this disorder. Despite the large number of genes implicated, about 10%-20% of affected individuals with a clinical diagnosis of NS do not have mutations in known RASopathy-associated genes, indicating that additional unidentified genes contribute to the disease, when mutated. By using a mixed strategy of functional candidacy and exome sequencing, we identify RRAS2 as a gene implicated in NS in six unrelated subjects/families. We show that the NS-causing RRAS2 variants affect highly conserved residues localized around the nucleotide binding pocket of the GTPase and are predicted to variably affect diverse aspects of RRAS2 biochemical behavior, including nucleotide binding, GTP hydrolysis, and interaction with effectors. Additionally, all pathogenic variants increase activation of the MAPK cascade and variably impact cell morphology and cytoskeletal rearrangement. Finally, we provide a characterization of the clinical phenotype associated with RRAS2 mutations."	"The genetic landscape of gliomas arising after therapeutic radiation. Radiotherapy improves survival for common childhood cancers such as medulloblastoma, leukemia, and germ cell tumors. Unfortunately, long-term survivors suffer sequelae that can include secondary neoplasia. Gliomas are common secondary neoplasms after cranial or craniospinal radiation, most often manifesting as high-grade astrocytomas with poor clinical outcomes. Here, we performed genetic profiling on a cohort of 12 gliomas arising after therapeutic radiation to determine their molecular pathogenesis and assess for differences in genomic signature compared to their spontaneous counterparts. We identified a high frequency of TP53 mutations, CDK4 amplification or CDKN2A homozygous deletion, and amplifications or rearrangements involving receptor tyrosine kinase and Ras-Raf-MAP kinase pathway genes including PDGFRA, MET, BRAF, and RRAS2. Notably, all tumors lacked alterations in IDH1, IDH2, H3F3A, HIST1H3B, HIST1H3C, TERT (including promoter region), and PTEN, which genetically define the major subtypes of diffuse gliomas in children and adults. All gliomas in this cohort had very low somatic mutation burden (less than three somatic single nucleotide variants or small indels per Mb). The ten high-grade gliomas demonstrated markedly aneuploid genomes, with significantly increased quantity of intrachromosomal copy number breakpoints and focal amplifications/homozygous deletions compared to spontaneous high-grade gliomas, likely as a result of DNA double-strand breaks induced by gamma radiation. Together, these findings demonstrate a distinct molecular pathogenesis of secondary gliomas arising after radiation therapy and identify a genomic signature that may aid in differentiating these tumors from their spontaneous counterparts."	"Genetic modifiers of the BRD4-NUT dependency of NUT midline carcinoma uncovers a synergism between BETis and CDK4/6is. Bromodomain and extraterminal (BET) domain inhibitors (BETis) show efficacy on NUT midline carcinoma (NMC). However, not all NMC patients respond, and responders eventually develop resistance and relapse. Using CRISPR and ORF expression screens, we systematically examined the ability of cancer drivers to mediate resistance of NMC to BETis and uncovered six general classes/pathways mediating resistance. Among these, we showed that RRAS2 attenuated the effect of JQ1 in part by sustaining ERK pathway function during BRD4 inhibition. Furthermore, overexpression of Kruppel-like factor 4 (KLF4), mediated BETi resistance in NMC cells through restoration of the E2F and MYC gene expression program. Finally, we found that expression of cyclin D1 or an oncogenic cyclin D3 mutant or RB1 loss protected NMC cells from BETi-induced cell cycle arrest. Consistent with these findings, cyclin-dependent kinase 4/6 (CDK4/6) inhibitors showed synergistic effects with BETis on NMC in vitro as well as in vivo, thereby establishing a potential two-drug therapy for NMC."	"TC21/RRas2 regulates glycoprotein VI-FcRγ-mediated platelet activation and thrombus stability. Essentials RAS proteins are expressed in platelets but their functions are largely uncharacterized. TC21/RRas2 is required for glycoprotein VI-induced platelet responses and for thrombus stability in vivo. TC21 regulates platelet aggregation by control of αIIb β3 integrin activation, via crosstalk with Rap1b. This is the first indication of functional importance of a proto-oncogenic RAS protein in platelets. Background Many RAS family small GTPases are expressed in platelets, including RAC, RHOA, RAP, and HRAS/NRAS/RRAS1, but most of their signaling and cellular functions remain poorly understood. Like RRAS1, TC21/RRAS2 reverses HRAS-induced suppression of integrin activation in CHO cells. However, a role for TC21 in platelets has not been explored. Objectives To determine TC21 expression in platelets, TC21 activation in response to platelet agonists, and roles of TC21 in platelet function in in vitro and in vivo thrombosis. Results We demonstrate that TC21 is expressed in human and murine platelets, and is activated in response to agonists for the glycoprotein (GP) VI-FcRγ immunoreceptor tyrosine-based activation motif (ITAM)-containing collagen receptor, in an Src-dependent manner. GPVI-induced platelet aggregation, integrin αIIb β3 activation, and α-granule and dense granule secretion, as well as phosphorylation of Syk, phospholipase Cγ2, AKT, and extracellular signal-regulated kinase, were inhibited in TC21-deficient platelets ex vivo. In contrast, these responses were normal in TC21-deficient platelets following stimulation with P2Y, protease-activated receptor 4 and C-type lectin receptor 2 receptor agonists, indicating that the function of TC21 in platelets is GPVI-FcRγ-ITAM-specific. TC21 was required for GPVI-induced activation of Rap1b. TC21-deficient mice did not show a significant delay in injury-induced thrombosis as compared with wild-type controls; however, thrombi were unstable. Hemostatic responses showed similar effects. Conclusions TC21 is essential for GPVI-FcRγ-mediated platelet activation and for thrombus stability in vivo via control of Rap1b and integrins."	"R-Ras2 is required for germinal center formation to aid B cells during energetically demanding processes. Upon antigen recognition within peripheral lymphoid organs, B cells interact with T cells and other immune cells to transiently form morphological structures called germinal centers (GCs), which are required for B cell clonal expansion, immunoglobulin class switching, and affinity maturation. This process, known as the GC response, is an energetically demanding process that requires the metabolic reprogramming of B cells. We showed that the Ras-related guanosine triphosphate hydrolase (GTPase) R-Ras2 (also known as TC21) plays an essential, nonredundant, and B cell-intrinsic role in the GC response. Both the conversion of B cells into GC B cells and their expansion were impaired in mice lacking R-Ras2, but not in those lacking a highly related R-Ras subfamily member or both the classic H-Ras and N-Ras GTPases. In the absence of R-Ras2, activated B cells did not exhibit increased oxidative phosphorylation or aerobic glycolysis. We showed that R-Ras2 was an effector of both the B cell receptor (BCR) and CD40 and that, in its absence, B cells exhibited impaired activation of the PI3K-Akt-mTORC1 pathway, reduced mitochondrial DNA replication, and decreased expression of genes involved in glucose metabolism. Because most human B cell lymphomas originate from GC B cells or B cells that have undergone the GC response, our data suggest that R-Ras2 may also regulate metabolism in B cell malignancies."	"R-Ras1 and R-Ras2 Are Essential for Oligodendrocyte Differentiation and Survival for Correct Myelination in the Central Nervous System. Rapid and effective neural transmission of information requires correct axonal myelination. Modifications in myelination alter axonal capacity to transmit electric impulses and enable pathological conditions. In the CNS, oligodendrocytes (OLs) myelinate axons, a complex process involving various cellular interactions. However, we know little about the mechanisms that orchestrate correct myelination. Here, we demonstrate that OLs express R-Ras1 and R-Ras2. Using female and male mutant mice to delete these proteins, we found that activation of the PI3K/Akt and Erk1/2-MAPK pathways was weaker in mice lacking one or both of these GTPases, suggesting that both proteins coordinate the activity of these two pathways. Loss of R-Ras1 and/or R-Ras2 diminishes the number of OLs in major myelinated CNS tracts and increases the proportion of immature OLs. In R-Ras1<sup>-/-</sup> and R-Ras2<sup>-/-</sup>-null mice, OLs show aberrant morphologies and fail to differentiate correctly into myelin-forming phenotypes. The smaller OL population and abnormal OL maturation induce severe hypomyelination, with shorter nodes of Ranvier in R-Ras1<sup>-/-</sup> and/or R-Ras2<sup>-/-</sup> mice. These defects explain the slower conduction velocity of myelinated axons that we observed in the absence of R-Ras1 and R-Ras2. Together, these results suggest that R-Ras1 and R-Ras2 are upstream elements that regulate the survival and differentiation of progenitors into OLs through the PI3K/Akt and Erk1/2-MAPK pathways for proper myelination.SIGNIFICANCE STATEMENT In this study, we show that R-Ras1 and R-Ras2 play essential roles in regulating myelination in vivo and control fundamental aspects of oligodendrocyte (OL) survival and differentiation through synergistic activation of PI3K/Akt and Erk1/2-MAPK signaling. Mice lacking R-Ras1 and/or R-Ras2 show a diminished OL population with a higher proportion of immature OLs, explaining the observed hypomyelination in main CNS tracts. In vivo electrophysiology recordings demonstrate a slower conduction velocity of nerve impulses in the absence of R-Ras1 and R-Ras2. Therefore, R-Ras1 and R-Ras2 are essential for proper axonal myelination and accurate neural transmission."	"Interaction between STAT3 and GLI1/tGLI1 oncogenic transcription factors promotes the aggressiveness of triple-negative breast cancers and HER2-enriched breast cancer. Signal transducer and activator of transcription 3 (STAT3), glioma oncogene homolog 1 (GLI1), and truncated GLI1 (tGLI1) are oncogenic transcription factors playing important roles in breast cancer. tGLI1 is a gain-of-function GLI1 isoform. Whether STAT3 physically and/or functionally interacts with GLI1/tGLI1 has not been explored. To address this knowledge gap, we analyzed 47 node-positive breast cancer specimens using immunohistochemical staining and found that phosphorylated-STAT3 (Y705), GLI1, and tGLI1 are co-overexpressed in the majority of triple-negative breast carcinomas (64%) and HER2-enriched (68%) breast carcinomas, and in lymph node metastases (65%). Using gene set enrichment analysis, we analyzed 710 breast tumors and found that STAT3 activation and GLI1/tGLI1 activation signatures are co-enriched in triple-negative subtypes of breast cancers and HER2-enriched subtypes of breast cancers, but not in luminal subtypes of breast cancers. Patients with high levels of STAT3 and GLI1/tGLI1 co-activation in their breast tumors had worse metastasis-free survival compared to those with low levels. Since these proteins co-overexpress in breast tumors, we examined whether they form complexes and observed that STAT3 interacted with both GLI1 and tGLI1. We further found that the STAT3-GLI1 and STAT3-tGLI1 complexes bind to both consensus GLI1-binding and STAT3-binding sites using chromatin immunoprecipitation (ChIP) assay, and that the co-overexpression markedly activated a promoter controlled by GLI1-binding sites. To identify genes that can be directly co-activated by STAT3 and GLI1/tGLI1, we analyzed three ChIP-seq datasets and identified 34 potential target genes. Following validations using reverse transcription polymerase chain reaction and survival analysis, we identified three genes as novel transcriptional targets of STAT3 and GLI1/tGLI1, R-Ras2, Cep70, and UPF3A. Finally, we observed that co-overexpression of STAT3 with GLI1/tGLI1 promoted the ability of breast cancer cells to form mammospheres and that STAT3 only cooperates with tGLI1 in immortalized mammary epithelial cells. In summary, our study identified novel physical and functional cooperation between two families of oncogenic transcription factors, and the interaction contributes to aggressiveness of breast cancer cells and poor prognosis of triple-negative breast cancers and HER2-enriched breast cancers."	"3' UTR lengthening as a novel mechanism in regulating cellular senescence. Cellular senescence has been viewed as a tumor suppression mechanism and also as a contributor to individual aging. Widespread shortening of 3' untranslated regions (3' UTRs) in messenger RNAs (mRNAs) by alternative polyadenylation (APA) has recently been discovered in cancer cells. However, the role of APA in the process of cellular senescence remains elusive. Here, we found that hundreds of genes in senescent cells tended to use distal poly(A) (pA) sites, leading to a global lengthening of 3' UTRs and reduced gene expression. Genes that harbor longer 3' UTRs in senescent cells were enriched in senescence-related pathways. Rras2, a member of the Ras superfamily that participates in multiple signal transduction pathways, preferred longer 3' UTR usage and exhibited decreased expression in senescent cells. Depletion of Rras2 promoted senescence, while rescue of Rras2 reversed senescence-associated phenotypes. Mechanistically, splicing factor TRA2B bound to a core &quot;AGAA&quot; motif located in the alternative 3' UTR of Rras2, thereby reducing the RRAS2 protein level and causing senescence. Both proximal and distal poly(A) signals showed strong sequence conservation, highlighting the vital role of APA regulation during evolution. Our results revealed APA as a novel mechanism in regulating cellular senescence."	"Prognostic alternative mRNA splicing signature in non-small cell lung cancer. Alternative splicing provides a major mechanism to generate protein diversity. Increasing evidence suggests a link of dysregulation of splicing associated with cancer. Genome-wide alternative splicing profiling in lung cancer remains largely unstudied. We generated alternative splicing profiles in 491 lung adenocarcinoma (LUAD) and 471 lung squamous cell carcinoma (LUSC) patients in TCGA using RNA-seq data, prognostic models and splicing networks were built by integrated bioinformatics analysis. A total of 3691 and 2403 alternative splicing events were significantly associated with patient survival in LUAD and LUSC, respectively, including EGFR, CD44, PIK3C3, RRAS2, MAPKAP1 and FGFR2. The area under the curve of the receiver-operator characteristic curve for prognostic predictor in NSCLC was 0.817 at 2000 days of overall survival which were also over 0.8 in LUAD and LUSC, separately. Interestingly, splicing correlation networks uncovered opposite roles of splicing factors in LUAD and LUSC. We created prognostic predictors based on alternative splicing events with high performances for risk stratification in NSCLC patients and uncovered interesting splicing networks in LUAD and LUSC which could be underlying mechanisms."	"The RAS-Effector Interface: Isoform-Specific Differences in the Effector Binding Regions. RAS effectors specifically interact with the GTP-bound form of RAS in response to extracellular signals and link them to downstream signaling pathways. The molecular nature of effector interaction by RAS is well-studied but yet still incompletely understood in a comprehensive and systematic way. Here, structure-function relationships in the interaction between different RAS proteins and various effectors were investigated in detail by combining our in vitro data with in silico data. Equilibrium dissociation constants were determined for the binding of HRAS, KRAS, NRAS, RRAS1 and RRAS2 to both the RAS binding (RB) domain of CRAF and PI3Kα, and the RAS association (RA) domain of RASSF5, RALGDS and PLCε, respectively, using fluorescence polarization. An interaction matrix, constructed on the basis of available crystal structures, allowed identification of hotspots as critical determinants for RAS-effector interaction. New insights provided by this study are the dissection of the identified hotspots in five distinct regions (R1 to R5) in spite of high sequence variability not only between, but also within, RB/RA domain-containing effectors proteins. Finally, we propose that intermolecular β-sheet interaction in R1 is a central recognition region while R3 may determine specific contacts of RAS versus RRAS isoforms with effectors."	"ERK1/2-induced phosphorylation of R-Ras GTPases stimulates their oncogenic potential. The Ras-related (R-Ras) isoforms TC21, R-Ras and M-Ras are members of the Ras superfamily of small GTPases. R-Ras family proteins are frequently overexpressed in human cancers, and expression of activated mutants of these GTPases is sufficient to induce cell transformation. Unlike Ras, few activating mutations of R-Ras proteins have been reported in human cancer, and very little is known about the regulation of their activity. In this study, we report that TC21 and R-Ras are phosphorylated on a conserved serine, Ser186 and Ser201, respectively, in intact cells. This residue is located in the C-terminal hypervariable region of the proteins and is not conserved in M-Ras. We show that the MAP kinases ERK1/2 phosphorylate TC21 and R-Ras on this C-terminal serine residue both in vitro and in vivo. Phosphorylation of R-Ras proteins does not affect their subcellular localization or stability but rather stimulates their activation. Phosphorylation-defective mutants of R-Ras and TC21 are compromised in their ability to promote cancer cell adhesion and migration/invasion, respectively. Importantly, we show that phosphorylation of TC21 and R-Ras potentiates their tumorigenic activity in immunodeficient mice. Our results identify a novel regulatory mechanism of the small GTPases TC21 and R-Ras that controls their oncogenic potential."	"Transcriptomic effects of adenosine 2A receptor deletion in healthy and endotoxemic murine myocardium. Influences of adenosine 2A receptor (A2AR) activity on the cardiac transcriptome and genesis of endotoxemic myocarditis are unclear. We applied transcriptomic profiling (39 K Affymetrix arrays) to identify A2AR-sensitive molecules, revealed by receptor knockout (KO), in healthy and endotoxemic hearts. Baseline cardiac function was unaltered and only 37 A2AR-sensitive genes modified by A2AR KO (≥1.2-fold change, &lt;5 % FDR); the five most induced are Mtr, Ppbp, Chac1, Ctsk and Cnpy2 and the five most repressed are Hp, Yipf4, Acta1, Cidec and Map3k2. Few canonical paths were impacted, with altered Gnb1, Prkar2b, Pde3b and Map3k2 (among others) implicating modified G protein/cAMP/PKA and cGMP/NOS signalling. Lipopolysaccharide (LPS; 20 mg/kg) challenge for 24 h modified &gt;4100 transcripts in wild-type (WT) myocardium (≥1.5-fold change, FDR &lt; 1 %); the most induced are Lcn2 (+590); Saa3 (+516); Serpina3n (+122); Cxcl9 (+101) and Cxcl1 (+89) and the most repressed are Car3 (-38); Adipoq (-17); Atgrl1/Aplnr (-14); H19 (-11) and Itga8 (-8). Canonical responses centred on inflammation, immunity, cell death and remodelling, with pronounced amplification of toll-like receptor (TLR) and underlying JAK-STAT, NFκB and MAPK pathways, and a 'cardio-depressant' profile encompassing suppressed ß-adrenergic, PKA and Ca<sup>2+</sup> signalling, electromechanical and mitochondrial function (and major shifts in transcripts impacting function/injury including Lcn2, S100a8/S100a9, Icam1/Vcam and Nox2 induction, and Adipoq, Igf1 and Aplnr repression). Endotoxemic responses were selectively modified by A2AR KO, supporting inflammatory suppression via A2AR sensitive shifts in regulators of NFκB and JAK-STAT signalling (IκBζ, IκBα, STAT1, CDKN1a and RRAS2) without impacting the cardio-depressant gene profile. Data indicate A2ARs exert minor effects in un-stressed myocardium and selectively suppress NFκB and JAK-STAT signalling and cardiac injury without influencing cardiac depression in endotoxemia."	"CNS germinomas are characterized by global demethylation, chromosomal instability and mutational activation of the Kit-, Ras/Raf/Erk- and Akt-pathways. CNS germinomas represent a unique germ cell tumor entity characterized by undifferentiated tumor cells and a high response rate to current treatment protocols. Limited information is available on their underlying genomic, epigenetic and biological alterations. We performed a genome-wide analysis of genomic copy number alterations in 49 CNS germinomas by molecular inversion profiling. In addition, CpG dinucleotide methylation was studied by immunohistochemistry for methylated cytosine residues. Mutational analysis was performed by resequencing of candidate genes including KIT and RAS family members. Ras/Erk and Akt pathway activation was analyzed by immunostaining with antibodies against phospho-Erk, phosho-Akt, phospho-mTOR and phospho-S6. All germinomas coexpressed Oct4 and Kit but showed an extensive global DNA demethylation compared to other tumors and normal tissues. Molecular inversion profiling showed predominant genomic instability in all tumors with a high frequency of regional gains and losses including high level gene amplifications. Activating mutations of KIT exons 11, 13, and 17 as well as a case with genomic KIT amplification and activating mutations or amplifications of RAS gene family members including KRAS, NRAS and RRAS2 indicated mutational activation of crucial signaling pathways. Co-activation of Ras/Erk and Akt pathways was present in 83% of germinomas. These data suggest that CNS germinoma cells display a demethylated nuclear DNA similar to primordial germ cells in early development. This finding has a striking coincidence with extensive genomic instability. In addition, mutational activation of Kit-, Ras/Raf/Erk- and Akt- pathways indicate the biological importance of these pathways and their components as potential targets for therapy."	"Germline RRAS2 mutations are not associated with Noonan syndrome. NA"	"Identifying recurrent mutations in cancer reveals widespread lineage diversity and mutational specificity. Mutational hotspots indicate selective pressure across a population of tumor samples, but their prevalence within and across cancer types is incompletely characterized. An approach to detect significantly mutated residues, rather than methods that identify recurrently mutated genes, may uncover new biologically and therapeutically relevant driver mutations. Here, we developed a statistical algorithm to identify recurrently mutated residues in tumor samples. We applied the algorithm to 11,119 human tumors, spanning 41 cancer types, and identified 470 somatic substitution hotspots in 275 genes. We find that half of all human tumors possess one or more mutational hotspots with widespread lineage-, position- and mutant allele-specific differences, many of which are likely functional. In total, 243 hotspots were novel and appeared to affect a broad spectrum of molecular function, including hotspots at paralogous residues of Ras-related small GTPases RAC1 and RRAS2. Redefining hotspots at mutant amino acid resolution will help elucidate the allele-specific differences in their function and could have important therapeutic implications. "	"Genomic landscape of carcinogen-induced and genetically induced mouse skin squamous cell carcinoma. Mouse models of cancers are routinely used to study cancer biology. However, it remains unclear whether carcinogenesis in mice is driven by the same spectrum of genomic alterations found in humans. Here we conducted a comprehensive genomic analysis of 9,10-dimethyl-1,2-benzanthracene (DMBA)-induced skin cancer, the most commonly used skin cancer model, which appears as benign papillomas that progress into squamous cell carcinomas (SCCs). We also studied genetically induced SCCs that expressed G12D mutant Kras (Kras G12D) but were deficient for p53. Using whole-exome sequencing, we uncovered a characteristic mutational signature of DMBA-induced SCCs. We found that the vast majority of DMBA-induced SCCs presented recurrent mutations in Hras, Kras or Rras2 and mutations in several additional putative oncogenes and tumor-suppressor genes. Similar genes were recurrently mutated in mouse and human SCCs that were from different organs or had been exposed to different carcinogens. Invasive SCCs, but not papillomas, presented substantial chromosomal aberrations, especially in DMBA-induced and genetically induced Trp53-mutated SCCs. Metastasis occurred through sequential spreading, with relatively few additional genetic events. This study provides a framework for future functional cancer genomic studies in mice. "	"microRNA regulatory mechanism by which PLLA aligned nanofibers influence PC12 cell differentiation. Aligned nanofibers (AFs) are regarded as promising biomaterials in nerve tissue engineering. However, a full understanding of the biocompatibility of AFs at the molecular level is still challenging. Therefore, the present study focused on identifying the microRNA (miRNA)-mediated regulatory mechanism by which poly-L-lactic acid (PLLA) AFs influence PC12 cell differentiation. Firstly, the effects of PLLA random nanofibers (RFs)/AFs and PLLA films (control) on the biological responses of PC12 cells that are associated with neuronal differentiation were examined. Then, SOLiD sequencing and cDNA microarray were employed to profile the expressions of miRNAs and mRNAs. The target genes of the misregulated miRNAs were predicted and compared with the mRNA profile data. Functions of the matched target genes (the intersection between the predicted target genes and the experimentally-determined, misregulated genes) were analyzed. The results revealed that neurites spread in various directions in control and RF groups. In the AF group, most neurites extended in parallel with each other. The glucose consumption and lactic acid production in the RF and AF groups were higher than those in the control group. Compared with the control group, 42 and 94 miRNAs were significantly dysregulated in the RF and AF groups, respectively. By comparing the predicted target genes with the mRNA profile data, five and 87 matched target genes were found in the RF and AF groups, respectively. Three of the matched target genes in the AF group were found to be associated with neuronal differentiation, whereas none had this association in the RF group. The PLLA AFs induced the dysregulation of miRNAs that regulate many biological functions, including axonal guidance, lipid metabolism and long-term potentiation. In particular, two miRNA-matched target gene-biological function modules associated with neuronal differentiation were identified as follows: (1) miR-23b, miR-18a, miR-107 and miR-103 regulate the Rras2 and Nf1 gene and thereby, affect cytoskeleton regulation and MAPK pathway; (2) miR-92a, miR-339-5p, miR-25, miR-125a-5p, miR-351 and miR-19b co-regulate the Pafah1b1 gene, affecting PC12 cell migration and differentiation. This work demonstrates a bioinformatic approach to accomplish miRNA-mRNA profile integrative analysis and provides more insights for understanding the regulatory mechanism of miRNA in AFs affecting neuronal differentiation. These findings will be greatly beneficial for the application and design of AFs in nerve tissue engineering."	"Contribution of the R-Ras2 GTP-binding protein to primary breast tumorigenesis and late-stage metastatic disease. R-Ras2 is a transforming GTPase that shares downstream effectors with Ras subfamily proteins. However, little information exists about the function of this protein in tumorigenesis and its signalling overlap with classical Ras GTPases. Here we show, by combining loss- and gain-of-function studies in breast cancer cells, mammary epithelial cells and mouse models, that endogenous R-Ras2 has a role in both primary breast tumorigenesis and the late metastatic steps of cancer cells in the lung parenchyma. R-Ras2 drives tumorigenesis in a phosphatidylinostiol-3 kinase (PI3K)-dependent and signalling autonomous manner. By contrast, its prometastatic role requires other priming oncogenic signals and the engagement of several downstream elements. R-Ras2 function is required even in cancer cells exhibiting constitutive activation of classical Ras proteins, indicating that these GTPases are not functionally redundant. Our results also suggest that application of long-term R-Ras2 therapies will result in the development of compensatory mechanisms in breast tumours. "	"UVA and UVB irradiation differentially regulate microRNA expression in human primary keratinocytes. MicroRNA (miRNA)-mediated regulation of the cellular transcriptome is an important epigenetic mechanism for fine-tuning regulatory pathways. These include processes related to skin cancer development, progression and metastasis. However, little is known about the role of microRNA as an intermediary in the carcinogenic processes following exposure to UV-radiation. We now show that UV irradiation of human primary keratinocytes modulates the expression of several cellular miRNAs. A common set of miRNAs was influenced by exposure to both UVA and UVB. However, each wavelength band also activated a distinct subset of miRNAs. Common sets of UVA- and UVB-regulated miRNAs harbor the regulatory elements GLYCA-nTRE, GATA-1-undefined-site-13 or Hox-2.3-undefined-site-2 in their promoters. In silico analysis indicates that the differentially expressed miRNAs responding to UV have potential functions in the cellular pathways of cell growth and proliferation. Interestingly, the expression of miR-23b, which is a differentiation marker of human keratinocytes, is remarkably up-regulated after UVA irradiation. Studying the interaction between miR-23b and its putative skin-relevant targets using a Luciferase reporter assay revealed that RRAS2 (related RAS viral oncogene homolog 2), which is strongly expressed in highly aggressive malignant skin cancer, to be a direct target of miR-23b. This study demonstrates for the first time a differential miRNA response to UVA and UVB in human primary keratinocytes. This suggests that selective regulation of signaling pathways occurs in response to different UV energies. This may shed new light on miRNA-regulated carcinogenic processes involved in UV-induced skin carcinogenesis. "	"R-RAS2 overexpression in tumors of the human central nervous system. Malignant tumors of the central nervous system (CNS) are the 10th most frequent cause of cancer mortality. Despite the strong malignancy of some such tumors, oncogenic mutations are rarely found in classic members of the RAS family of small GTPases. This raises the question as to whether other RAS family members may be affected in CNS tumors, excessively activating RAS pathways. The RAS-related subfamily of GTPases is that which is most closely related to classical Ras and it currently contains 3 members: RRAS, RRAS2 and RRAS3. While R-RAS and R-RAS2 are expressed ubiquitously, R-RAS3 expression is restricted to the CNS. Significantly, both wild type and mutated RRAS2 (also known as TC21) are overexpressed in human carcinomas of the oral cavity, esophagus, stomach, skin and breast, as well as in lymphomas. Hence, we analyzed the expression of R-RAS2 mRNA and protein in a wide variety of human CNS tumors and we found the R-RAS2 protein to be overexpressed in all of the 90 CNS cancer samples studied, including glioblastomas, astrocytomas and oligodendrogliomas. However, R-Ras2 was more strongly expressed in low grade (World Health Organization grades I-II) rather than high grade (grades III-IV) tumors, suggesting that R-RAS2 is overexpressed in the early stages of malignancy. Indeed, R-RAS2 overexpression was evident in pre-malignant hyperplasias, both at the mRNA and protein levels. Nevertheless, such dramatic changes in expression were not evident for the other two subfamily members, which implies that RRAS2 is the main factor triggering neural transformation."	"siRNA-mediated downregulation of TC21 sensitizes esophageal cancer cells to cisplatin. To determine the functional significance of TC21 in esophageal squamous cell carcinoma (ESCC). TC21 siRNA transfection was carried out using Hyperfectamine to knock down TC21, and transcripts were analyzed by reverse transcription-polymerase chain reaction and protein by Western blotting. We demonstrated the effect of TC21 downregulation of cell signaling in esophageal cancer cells by assessing the phosphorylation status of its downstream targets, phosphoinositide 3-kinase (PI3K), phosphatase and tensin homolog (PTEN), protein kinase B (pAkt), nuclear factor-κB (NF-κB) and cyclinD1 using specific antibodies. Cell survival analysis after cisplatin treatment was carried out by cell viability assay and cell cycle analysis using flow cytometry. TC21 knockdown in human ESCC cell line TE13 cells, showed only a marginal increase (14.2%) in cell death compared with control cells. The expressions of the signaling proteins PI3K and pAkt, transcription factor NF-κB, and cell cycle protein cyclin D1 were markedly decreased in response to TC21 downregulation, whereas the level of pPTEN, an antagonist of PI3K, was increased. In addition, we evaluated the potential of TC21 as a putative target for sensitizing ESCC cells to the chemotherapeutic agent cisplatin. Increased cell death (38.4%) was observed in cells treated with cisplatin after TC21 knockdown compared with cells which were treated with cisplatin alone (20% cell death). Results suggest that TC21 mediates its effects via the PI3K-Akt pathway, NF-κB and cyclin D1, and enhances chemoresistance in esophageal cancer cells."	"RRas2, RhoG and T-cell phagocytosis. Activating mutations and overexpression of classical Ras subfamily members (K-Ras, N-Ras and H-Ras) have been widely investigated as key events in the development of human cancers. The role in cancer of its closest relatives, the Ras-related (RRas) subfamily members, has been less studied despite the fact that one of its members (TC21 or RRas2) is strongly transforming in vitro. Nevertheless, and in spite the paucity of publications, several studies have shown that wild type TC21 is overexpressed in different types of carcinomas and lymphomas. If the study of RRas members in cancer is still in its infancy, their role in physiological functions is even behind. For instance, T and B cell immunologists still use the vague term &quot;Ras activation&quot; without indication of what Ras family molecule is indeed intervening. In this view, we discuss the participation of TC21 in the specific process of T cell antigen receptor internalization from the immunological synapse and acquisition of membrane fragments from the antigen presenting cells by phagocytosis."	"The Ras-like protein R-Ras2/TC21 is important for proper mammary gland development. R-Ras2/TC21 is a GTPase with high sequence and signaling similarity with Ras subfamily members. Although it has been extensively studied using overexpression studies in cell lines, its physiological role remains poorly characterized. Here we used RRas2-knockout mice expressing β-galactosidase under the regulation of the endogenous RRas2 promoter to investigate the function of this GTPase in vivo. Despite its expression in tissues critical for organismal viability, RRas2(-/-) mice show no major alterations in viability, growth rates, cardiovascular parameters, or fertility. By contrast, they display a marked and specific defect in the development of the mammary gland during puberty. In the absence of R-Ras2/TC21, this gland forms reduced numbers of terminal end buds (TEBs) and ductal branches, leading to a temporal delay in the extension and arborization of the gland tree in mammary fat pads. This phenotype is linked to cell-autonomous proliferative defects of epithelial cells present in TEBs. These cells also show reduced Erk activation but wild type-like levels of phosphorylated Akt. Using compound RRas2-, HRas-, and NRas-knockout mice, we demonstrate that these GTPases act in a nonsynergistic and nonadditive manner during this morphogenic process."	"T cell receptor internalization from the immunological synapse is mediated by TC21 and RhoG GTPase-dependent phagocytosis. The immunological synapse (IS) serves a dual role for sustained T cell receptor (TCR) signaling and for TCR downregulation. TC21 (Rras2) is a RRas subfamily GTPase that constitutively associates with the TCR and is implicated in tonic TCR signaling by activating phosphatidylinositol 3-kinase. In this study, we demonstrate that TC21 both cotranslocates with the TCR to the IS and is necessary for TCR internalization from the IS through a mechanism dependent on RhoG, a small GTPase previously associated with phagocytosis. Indeed, we found that the TCR triggers T cells to phagocytose 1-6 μm beads through a TC21- and RhoG-dependent pathway. We further show that TC21 and RhoG are necessary for the TCR-promoted uptake of major histocompatibility complex (MHC) from antigen-presenting cells. Therefore, TC21 and RhoG dependence underlie the existence of a common phagocytic mechanism that drives TCR internalization from the IS together with its peptide-MHC ligand."	"β-Thalassemia trait association with autoimmune diseases: β-globin locus proximity to the immunity genes or role of hemorphins? Thalassemia major continues to be a significant health problem for Mediterranean, Afro-Arabic countries, India and South Easth Asia. It was generally assumed that the β-thalassemia heterozygotes do not bear significant medical risks except a mild microcytic anemia. Nonetheless, increasing number of reports associate β-thalassemia trait with autoimmune conditions, nephritis, diabetes, arthritis, fibromyalgia and asthma. Available sparse data indicate reduced incidence of systemic lupus erythematosus (SLE) in β-thalassemia heterozygotes; yet, if two conditions coexist, the SLE manifestations occur much severer. These associations make sense when considering that the hemoglobin β-chain locus at 11p15.5 resides in close proximity to eight genes with profound roles in immune regulation: STIM1, CD151, TC21/RRAS2, SIGIRR/TOLL/IL1R8, pp52/LSP1 (lymphocyte specific protein), TRIM21, toll interacting protein (TOLLIP) and SLEN3. β-Thalassemia trait accompaniment to autoimmune disease may be the result of haplotypal associations between the close proximity genes. An alternative explanation to thalassemia heterozygosity: autoimmune disease association may be the changed concentrations of hemorphins. Hemorphins are endogenous opioid peptides derived via proteolytical cleavage of hemoglobin. They are shown to bind diverse opioid receptors and act anti-inflammatory. Their reduced expression in thalassemia heterozygosity may explain a proinflammatory stage and autoimmunity vulnerability."	"Greater expression of TC21/R-ras2 in highly aggressive malignant skin cancer. TC21 plays an important role in highly aggressive tumor formation, and it was overexpressed in several human cancers, including breast cancer, oral squamous cell carcinoma (SCC), and esophageal SCC. In light of this, we explored the expression of TC21 in overall skin cancers in order to evaluate the relationship between TC21 and malignant skin tumors. We examined six normal skin tissues and 18 malignant skin tumor tissues, including six malignant melanomas (MM), six SCCs, and six basal cell carcinomas (BCCs) using western blotting for the expression of TC21. In another set, 16 specimens of MM, 16 SCC, and 16 BCC were analyzed for the expression of TC21 using immunohistochemical staining. To evaluate the amount of expression of TC21, the Raytest TINA software was used for western blotting and a histochemical score (HSCORE) was used for immunohistochemical evaluation. The western blotting and immunohistochemistry showed that TC21 was expressed in all malignant skin tumors and not in normal skin tissues. The relative protein expression was an average of 0.004 in normal skin, 1.042 in MM, 0.621 in SCC, and 0.485 in BCC. In immunohistochemistry, HSCORE for normal skin was an average of 0.05, MM was 2.42, SCC was 2.11, and BCC was 1.22. This article is the first study demonstrating expression of TC21 in human skin malignant tumors and suggests that TC21 is more expressed in highly aggressive skin tumors."	"Genome-wide functional screen identifies a compendium of genes affecting sensitivity to tamoxifen. Therapies that target estrogen signaling have made a very considerable contribution to reducing mortality from breast cancer. However, resistance to tamoxifen remains a major clinical problem. Here we have used a genome-wide functional profiling approach to identify multiple genes that confer resistance or sensitivity to tamoxifen. Combining whole-genome shRNA screening with massively parallel sequencing, we have profiled the impact of more than 56,670 RNA interference reagents targeting 16,487 genes on the cellular response to tamoxifen. This screen, along with subsequent validation experiments, identifies a compendium of genes whose silencing causes tamoxifen resistance (including BAP1, CLPP, GPRC5D, NAE1, NF1, NIPBL, NSD1, RAD21, RARG, SMC3, and UBA3) and also a set of genes whose silencing causes sensitivity to this endocrine agent (C10orf72, C15orf55/NUT, EDF1, ING5, KRAS, NOC3L, PPP1R15B, RRAS2, TMPRSS2, and TPM4). Multiple individual genes, including NF1, a regulator of RAS signaling, also correlate with clinical outcome after tamoxifen treatment."	"SNPs in axon guidance pathway genes and susceptibility for Parkinson's disease in the Korean population. Single-nucleotide polymorphisms (SNPs) in genes of the axon guidance pathway have been reported to be a possible susceptibility factor for Parkinson's disease (PD). This study investigated whether the genetic variability in the axon guidance pathway is a susceptibility factor in PD patients in the Korean population. A total of 373 patients and 384 healthy subjects were included. A set of 22 SNPs was analyzed, and the risk of PD was evaluated using odds ratios in an unconditional and conditional logistic regression models of age- and gender-matched subsets. A multidimensionality reduction (MDR) analysis was performed to explore potential gene-gene interactions. SNPs in the DCC, CHP, RRAS2 and EPHB1 genes of the axon guidance pathway showed significant associations with PD. The DCC rs17468382 and EPHB1 rs2030737 SNPs may be associated with increased PD risk, and the CHP rs6492998 and RRAS2 rs2970332 SNPs may be associated with reduced PD risk. However, no significant interactions for PD risk were found in the MDR analysis and logistic regression analysis using SNP interaction terms. This study supports that only four of the selected 22 SNPs are regulating factors associated with PD in the Korean population. However, no interactions were found among the SNPs, suggesting that the effect for the pathway as a whole is not greater than that for single genes in the Korean population. Further investigations involving populations of various ethnicities and other genetic markers and models are warranted."	"TC21 promotes cell motility and metastasis by regulating the expression of E-cadherin and N-cadherin in hepatocellular carcinoma. Hepatocellular carcinoma (HCC) is an aggressive type of cancer, and it may be at an advanced stage when it is detected. It has been shown that TC21, a member of the Ras superfamily, is associated with the proliferation, migration and transformation of tumor cells. Previous studies have shown that TC21 is overexpressed in breast, esophageal and oral carcinomas, and that it is closely associated with the early stages of tumorigenesis. In this study, we demonstrate that TC21 overexpression promotes the motility of HCC cells in vitro and intrahepatic metastasis in vivo. Furthermore, experiments examining the effects of both the ectopic expression of TC21 and siRNA treatment in HCC cells showed that TC21 alters the expression of the adhesive molecules E-cadherin and N-cadherin. Our data suggest that TC21 is associated with tumor progression and poor prognosis in HCC."	"Clinical significance of TC21 overexpression in oral cancer. In search of novel molecular markers for oral cancer, we reported increased levels of TC21/R-Ras2 transcripts in oral squamous cell carcinoma by differential display. The aim of this study was to determine the clinical significance of TC21 in oral cancer. Immunohistochemical analysis of TC21 protein expression was carried out in 120 leukoplakias, 83 OSCCs and 30 non-malignant tissues, confirmed by immunoblotting, and correlated with clinicopathological parameters as well as disease prognosis. Co-immunoprecipitation assays were carried out to identify the interaction partners of TC21 protein in oral cancer cells and tissues. TC21 nuclear expression increased from normal oral tissues to leukoplakia and frank malignancy (P &lt; 0.001). TC21 overexpression was observed in 74.2% leukoplakia with no dysplasia, 75.9% dysplasias and 79.5% OSCCs in comparison with normal oral tissues. Receiver operating characteristic analysis showed that the area-under-the curve values were 0.895, 0.885, and 0.919, while the positive predictive values were 95.8%, 95.6%, and 97.1%, for nuclear immunostaining for normal versus leukoplakia with no dysplasia, leukoplakic lesions with dysplasia, and OSCCs, respectively. Immunoblotting confirmed overexpression of TC21 in oral lesions. Using co-immunoprecipitation assays, we showed interactions of TC21 with Erk2, PI3-K, 14-3-3zeta and 14-3-3sigma proteins in oral cancer cells. Our findings suggested that alteration in TC21 expression is an early event in oral cancer and correlates with poor prognosis of OSCCs. TC21 interactions with Erk2, PI3-K, 14-3-3zeta and 14-3-3sigma proteins in oral cancer cells and tissues suggests the involvement of TC21 in signaling pathways in oral cancer."	"Structural and spatial determinants regulating TC21 activation by RasGRF family nucleotide exchange factors. RasGRF family guanine nucleotide exchange factors (GEFs) promote guanosine diphosphate (GDP)/guanosine triphosphate (GTP) exchange on several Ras GTPases, including H-Ras and TC21. Although the mechanisms controlling RasGRF function as an H-Ras exchange factor are relatively well characterized, little is known about how TC21 activation is regulated. Here, we have studied the structural and spatial requirements involved in RasGRF 1/2 exchange activity on TC21. We show that RasGRF GEFs can activate TC21 in all of its sublocalizations except at the Golgi complex. We also demonstrate that TC21 susceptibility to activation by RasGRF GEFs depends on its posttranslational modifications: farnesylated TC21 can be activated by both RasGRF1 and RasGRF2, whereas geranylgeranylated TC21 is unresponsive to RasGRF2. Importantly, we show that RasGRF GEFs ability to catalyze exchange on farnesylated TC21 resides in its pleckstrin homology 1 domain, by a mechanism independent of localization and of its ability to associate to membranes. Finally, our data indicate that Cdc42-GDP can inhibit TC21 activation by RasGRF GEFs, demonstrating that Cdc42 negatively affects the functions of RasGRF GEFs irrespective of the GTPase being targeted."	"Essential function for the GTPase TC21 in homeostatic antigen receptor signaling. T cell antigen receptors (TCRs) and B cell antigen receptors (BCRs) transmit low-grade signals necessary for the survival and maintenance of mature cell pools. We show here that TC21, a small GTPase encoded by Rras2, interacted constitutively with both kinds of receptors. Expression of a dominant negative TC21 mutant in T cells produced a rapid decrease in cell viability, and Rras2(-/-) mice were lymphopenic, possibly as a result of diminished homeostatic proliferation and impaired T cell and B cell survival. In contrast, TC21 was overexpressed in several human lymphoid malignancies. Finally, the p110delta catalytic subunit of phosphatidylinositol-3-OH kinase (PI(3)K) was recruited to the TCR and BCR in a TC21-dependent way. Consequently, we propose TC21 directly links antigen receptors to PI(3)K-mediated survival pathways."	"Different atrophy-hypertrophy transcription pathways in muscles affected by severe and mild spinal muscular atrophy. Spinal muscular atrophy (SMA) is a neurodegenerative disorder associated with mutations of the survival motor neuron gene SMN and is characterized by muscle weakness and atrophy caused by degeneration of spinal motor neurons. SMN has a role in neurons but its deficiency may have a direct effect on muscle tissue. We applied microarray and quantitative real-time PCR to study at transcriptional level the effects of a defective SMN gene in skeletal muscles affected by the two forms of SMA: the most severe type I and the mild type III. The two forms of SMA generated distinct expression signatures: the SMA III muscle transcriptome is close to that found under normal conditions, whereas in SMA I there is strong alteration of gene expression. Genes implicated in signal transduction were up-regulated in SMA III whereas those of energy metabolism and muscle contraction were consistently down-regulated in SMA I. The expression pattern of gene networks involved in atrophy signaling was completed by qRT-PCR, showing that specific pathways are involved, namely IGF/PI3K/Akt, TNF-alpha/p38 MAPK and Ras/ERK pathways. Our study suggests a different picture of atrophy pathways in each of the two forms of SMA. In particular, p38 may be the regulator of protein synthesis in SMA I. The SMA III profile appears as the result of the concurrent presence of atrophic and hypertrophic fibers. This more favorable condition might be due to the over-expression of MTOR that, given its role in the activation of protein synthesis, could lead to compensatory hypertrophy in SMA III muscle fibers."	"A polymorphism in the TC21 promoter associates with an unfavorable tamoxifen treatment outcome in breast cancer. Tamoxifen therapy is a standard in the treatment of estrogen receptor (ER)-positive breast cancer; however, its efficacy varies widely among patients. In addition to interpatient differences in the tamoxifen-metabolizing capacity, there is growing evidence that crosstalk between ER and growth factor signaling contributes to tamoxifen resistance. We focused on TC21, a member of the Ras superfamily, to investigate the influence of the TC21 -582C&gt;T promoter polymorphism on TC21 expression and treatment outcome. Immunohistochemical analyses of breast tumors revealed a higher TC21 expression in ER-negative compared with ER-positive tumors. Expression in ER-positive tumors was higher in carriers of the T allele in an allele dose-dependent manner. Quantitative real-time PCR analyses showed that TC21 mRNA expression is decreased after transfection of ERalpha in ER-negative breast cancer cells MDA-MB-231, UACC893, and BT-20. In MCF7 ER-positive cells, TC21 expression decreased with 17beta-estradiol treatment and increased after treatment with tamoxifen metabolites, 4-OH-tamoxifen, or endoxifen. In patients treated with adjuvant mono tamoxifen, high cytoplasmic TC21 tumor expression or the carriership of the -582T allele conferred increased recurrence rates [n=45: hazard ratio (HR), 3.06; 95% confidence interval (95% CI), 1.16-8.05; n=206: HR, 1.79; 95% CI, 1.08-3.00, respectively]. A combined analysis with the data of the known tamoxifen predictor CYP2D6 showed an improvement of outcome prediction compared with CYP2D6 or TC21 genotype status alone (per mutated gene HR, 2.35; 95% CI, 1.34-4.14). Our functional and patient-based results suggest that the TC21 -582C&gt;T polymorphism improves prediction of tamoxifen treatment outcome in breast cancer."	"Egr1 regulates the coordinated expression of numerous EGF receptor target genes as identified by ChIP-on-chip. UV irradiation activates the epidermal growth factor receptor, induces Egr1 expression and promotes apoptosis in a variety of cell types. We examined the hypothesis that Egr1 regulates genes that mediate this process by use of a chip-on-chip protocol in human tumorigenic prostate M12 cells. UV irradiation led to significant binding of 288 gene promoters by Egr1. A major functional subgroup consisted of apoptosis related genes. The largest subgroup of 24 genes belongs to the epidermal growth factor receptor-signal transduction pathway. Egr1 promoter binding had a significant impact on gene expression of target genes. Conventional chromatin immunoprecipitation and quantitative real time PCR were used to validate promoter binding and expression changes. Small interfering RNA experiments were used to demonstrate the specific role of Egr1 in gene regulation. UV stimulation promotes growth arrest and apoptosis of M12 cells and our data clearly show that a downstream target of the epidermal growth factor receptor, namely Egr1, mediates this apoptotic response. Our study also identified numerous previously unknown targets of Egr1. These include FasL, MAX and RRAS2, which may play a role in the apoptotic response/growth arrest. Our results indicate that M12 cells undergo Egr1-dependent apoptotic response upon UV stimulation and led to the identification of downstream targets of Egr1, which mediate epidermal growth factor receptor function."	"Signaling pathways regulating TC21-induced tumorigenesis. TC21(R-Ras2), a Ras-related GTPase with transforming potential similar to H-, K- and N-Ras, is implicated in the pathogenesis of human cancers. Transforming growth factor beta (TGF-beta), a cytokine that plays a significant role in modulating tumorigenesis, normally prevents uncontrolled cell proliferation but paradoxically induces proliferation in H-Ras-transformed cancer cells. Although TC21 activates some pathways that mediate cellular transformation by the classical Ras proteins, the mechanisms through which TC21 induces tumor formation and how TGF-beta regulates TC21 transformed cells is not known. To better understand the role of TC21 in cancer progression, we overexpressed an activated G23V mutant of TC21 in a nontumorigenic murine mammary epithelial (EpH4) cell line. Mutant TC21-expressing cells were significantly more oncogenic than cells expressing activated G12V H-Ras both in vivo and in vitro. TC21-induced transformation and proliferation required activation of p38 MAPK, mTOR (the mammalian target of rapamycin), and phosphoinositide 3-kinase but not Akt/PKB. Transformation by TC21 rendered EpH4 cells insensitive to the growth inhibitory effects of TGF-beta, and the soft agar growth of these cells was increased upon TGF-beta stimulation. Despite losing responsiveness to TGF-beta-mediated growth inhibition, both Smad-dependent and independent pathways remained intact in TC21-transformed cells. Thus, overexpression of active TC21 in EpH4 cells induces tumorigenicity through the phosphoinositide 3-kinase, p38 MAPK, and mTOR pathways, and these cells lose their sensitivity to the normal growth inhibitory role of TGF-beta."	"Basic transcription factor 3 (BTF3) regulates transcription of tumor-associated genes in pancreatic cancer cells. Basic transcription factor 3 (BTF3) acts as a transcription factor and modulator of apoptosis, and is differentially expressed in colorectal cancer and glioblastomas. In the present study, the expression of BTF3, as well as its role in apoptosis and gene transcription, was analyzed in pancreatic ductal adenocarcinoma (PDAC). QRT-PCR, immunohistochemistry, immunoblotting, and immunofluorescence analyses were carried out to investigate BTF3 mRNA/protein expression and localization. BTF3 silencing in pancreatic cancer cells was performed using specific siRNA molecules. Functional analyses were carried out using cell growth assays, apoptosis assays, and DNA array analysis. BTF3 and BTF3a exhibited 1.3-fold and 4.6-fold increased median mRNA levels in PDAC tissues, compared to normal pancreatic tissues. BTF3 localized mainly in the cytoplasm and nuclei of tubular complexes and pancreatic cancer cells. Pancreatic cancer cell lines expressed the mRNA and protein of BTF3a (27 kDa) and BTF3b (22 kDa) isoforms. BTF3 silencing using specific siRNA molecules did not influence apoptosis induced by chemotherapy or radiotherapy. In contrast, BTF3 silencing resulted in down-regulation of several cancer-associated genes, including EPHB2, ABL2, HPSE2 and ATM, and up-regulation of KRAG, RRAS2, NFkappa-B, MRVI1, MADCAM1 and others. In conclusion, BTF3 is overexpressed in PDAC, where it acts as a transcriptional regulator rather than a direct modulator of apoptosis."	"[Molecular cloning and characterization of a RRas homologue gene from Trichomonas vaginalis]. To clone and characterize a RRas-like gene from Trichomonas vaginalis for studying cellular signal transduction pathways in the organism. A cDNA clone, which showed homology with RRas proteins of human being, was isolated and sequenced from a cDNA expression library of T. vaginalis. The genomic DNA corresponding to the cDNA sequence was amplified using PCR technique and sequenced. Sequence analysis was performed using BLASTP, RPS-BLAST and Clustal W programs. Phylogenetic tree was constructed and bootstrapped with 1050 replicates using the software MEGA3. The cDNA sequence showed a length of 705 bp with an open reading frame of 615 bp. The deduced amino acid sequence from the open reading frame possesses 205 residuals. Sequencing of the PCR product of genomic DNA revealed that the genomic DNA sequence encompassing the putative 5'-ATG and 3'-stop codons was identical to the cDNA sequence. Sequence analysis demonstrated that this gene was most homologous to the RRas members of Homo sapiens and Mus musculus (both having 51% identity and 70% similarity), and the amino acid sequence contains highly conserved GTP-binding domains and a fully conserved effector domain of human RRas member. Phylogenetic analysis showed that TvRRas clustered with RAS oncoprotein branch and RRAS branch of human. The encoding protein probably belongs to a RRas family of T. vaginalis."	"H-Ras, R-Ras, and TC21 differentially regulate ureteric bud cell branching morphogenesis. The collecting system of the kidney, derived from the ureteric bud (UB), undergoes repetitive bifid branching events during early development followed by a phase of tubular growth and elongation. Although members of the Ras GTPase family control cell growth, differentiation, proliferation, and migration, their role in development of the collecting system of the kidney is unexplored. In this study, we demonstrate that members of the R-Ras family of proteins, R-Ras and TC21, are expressed in the murine collecting system at E13.5, whereas H-Ras is only detected at day E17.5. Using murine UB cells expressing activated H-Ras, R-Ras, and TC21, we demonstrate that R-Ras-expressing cells show increased branching morphogenesis and cell growth, TC21-expressing cells branch excessively but lose their ability to migrate, whereas H-Ras-expressing cells migrated the most and formed long unbranched tubules. These differences in branching morphogenesis are mediated by differential regulation/activation of the Rho family of GTPases and mitogen-activated protein kinases. Because most branching of the UB occurs early in development, it is conceivable that R-Ras and TC-21 play a role in facilitating branching and growth in early UB development, whereas H-Ras might favor cell migration and elongation of tubules, events that occur later in development."	"TC21/R-Ras2 upregulation in esophageal tumorigenesis: potential diagnostic implications. Early detection of esophageal cancer is hampered by paucity of molecular markers for diagnosis of this aggressive gastrointestinal malignancy in early stages. We recently identified TC21/R-Ras2, a small GTP-binding protein (SMG) in esophageal squamous cell carcinomas (ESCCs) by differential display. This study was designed to test the hypothesis that differential expression of TC21 in normal, dysplastic and malignant esophageal tissues may be of clinical relevance in esophageal tumorigenesis. Immunohistochemical analysis of TC21 was carried out in 83 ESCCs, 37 dysplasias and 29 matched histologically normal esophageal tissues and correlated with clinicopathological parameters. The cellular localization of TC21 was determined by confocal microscopy. Expression of TC21 protein was observed in 60/83 (73%) ESCCs predominantly localized in tumor nuclei. Intriguingly, intense TC21 immunoreactivity was observed in all endoscopic biopsies with histological evidence of dysplasia (16 cases) as well as in dysplastic areas distant to ESCCs (21 cases), while matched distant histologically normal epithelia did not show detectable TC21 expression. Immunoblotting and semi-quantitative RT-PCR confirmed TC21 expression in dysplastias and ESCCs. Confocal microscopy showed nuclear as well as cytoplasmic TC21 expression in ESCCs and TE13 cells. To our knowledge, this is the first report demonstrating differential expression of TC21 in normal, dysplastic and ESCC tissues, suggesting that TC21 expression is associated with early stages of esophageal tumorigenesis. Nuclear localization of TC21 makes it the third of over 100 small SMGs identified to be localized in the nucleus."	"Identification of differentially expressed genes in oral squamous cell carcinoma. Rapid advances in multimodality therapy have not significantly improved the overall 5-yr survival of oral cancer patients in the past two decades, thereby underscoring the need for molecular therapeutics. The development of new treatment strategies for more effective management of oral cancer requires identification of novel biological targets. Therefore, the aim of this study was to identify novel genes associated with oral tumorigenesis by comparing gene expression profile of oral squamous cell carcinomas (OSCCs) and matched nonmalignant oral epithelial tissues with differential display. Of the 180 differentially expressed cDNAs isolated, reamplified, and cloned into pGEMT-Easy Vector, 26 cDNAs were confirmed to be upregulated in OSCCs by reverse Northern blot analysis. The differentially expressed genes included components of immune system, signaling pathways, angiogenesis, cell structure, proliferation, apoptosis, cell-adhesion, and cellular metabolism. Reverse transcription (RT)-polymerase chain reaction (PCR) analysis of 15 OSCCs and matched nonmalignant oral tissues provided the first evidence that 14-3-3-zeta, melanoma metastasizing clone D (MEMD), KIAA0471, sperm protein 17 (SP17), TC21, and anti-TNF alpha antibody are upregulated in OSCCs. Immunohistochemical analysis confirmed overexpression of 14-3-3-zeta and TC21 protein, a member of the Ras family, in OSCCs as compared to histologically normal oral tissues validating the differential display analysis. Identification of six novel differentially expressed genes in oral tumors adds to the repertoire of genes associated with oral carcinogenesis and provides candidate potential biological targets for diagnosis and/or therapy. Further characterization of the 14 unknown differentially expressed cDNAs identified in this study may provide significant clues for understanding the molecular mechanisms underlying oral tumorigenesis."	"Role of TC21/R-Ras2 in enhanced migration of neurofibromin-deficient Schwann cells. The neurofibromatosis type 1 tumor suppressor protein neurofibromin, is a GTPase activating protein for H-, N-, K-, R-Ras and TC21/R-Ras2 proteins. We demonstrate that Schwann cells derived from Nf1-null mice have enhanced chemokinetic and chemotactic migration in comparison to wild-type controls. Surprisingly, this migratory phenotype is not inhibited by a farnesyltransferase inhibitor or dominant-negative (dn) (N17)H-Ras (which inhibits H-, N-, and K-Ras activation). We postulated that increased activity of R-Ras and/or TC21/R-Ras2, due to loss of Nf1, contributes to increased migration. Mouse Schwann cells (MSCs) express R-Ras and TC21/R-Ras2 and their specific guanine exchange factors, C3G and AND-34. Infection of Nf1-null MSCs with a dn(43N)R-Ras adenovirus (to inhibit both R-Ras and TC21/R-Ras2 activation) decreases migration by approximately 50%. Conversely, expression of activated (72L)TC21/R-Ras2, but not activated (38V)R-Ras, increases migration, suggesting a role of TC21/R-Ras2 activation in the migration of neurofibromin-deficient Schwann cells. TC21/R-Ras2 preferentially couples to the phosphatidylinositol 3-kinase (PI3-kinase) and MAP kinase pathways. Treatment with a PI3-kinase or MAP kinase inhibitor reduces Nf1-null Schwann cell migration, implicating these TC21 effectors in Schwann cell migration. These data reveal a key role for neurofibromin regulation of TC21/R-Ras2 in Schwann cells, a cell type critical to NF1 tumor pathogenesis."	"Genome-based identification of cancer genes by proviral tagging in mouse retrovirus-induced T-cell lymphomas. The identification of tumor-inducing genes is a driving force for elucidating the molecular mechanisms underlying cancer. Many retroviruses induce tumors by insertion of viral DNA adjacent to cellular oncogenes, resulting in altered expression and/or structure of the encoded proteins. The availability of the mouse genome sequence now allows analysis of retroviral common integration sites in murine tumors to be used as a genetic screen for identification of large numbers of candidate cancer genes. By positioning the sequences of inverse PCR-amplified, virus-host junction fragments within the mouse genome, 19 target genes were identified in T-cell lymphomas induced by the retrovirus SL3-3. The candidate cancer genes included transcription factors (Fos, Gfi1, Lef1, Myb, Myc, Runx3, and Sox3), all three D cyclins, Ras signaling pathway components (Rras2/TC21 and Rasgrp1), and Cmkbr7/CCR7. The most frequent target was Rras2. Insertions as far as 57 kb away from the transcribed portion were associated with substantially increased transcription of Rras2, and no coding sequence mutations, including those typically involved in Ras activation, were detected. These studies demonstrate the power of genome-based analysis of retroviral insertion sites for cancer gene discovery, identify several new genes worth examining for a role in human cancer, and implicate the pathways in which those genes act in lymphomagenesis. They also provide strong genetic evidence that overexpression of unmutated Rras2 contributes to tumorigenesis, thus suggesting that it may also do so if it is inappropriately expressed in human tumors."	"TC21 mediates transformation and cell survival via activation of phosphatidylinositol 3-kinase/Akt and NF-kappaB signaling pathway. The signaling pathways of TC21-mediated transformation and cell survival are not well-established. In this study, we have investigated the role of PI3-K/Akt signaling pathway in oncogenic-TC21-mediated transformation and cell survival. We found that oncogenic-TC21 stimulated the PI3-K activity. This was associated with the activation of Akt, a key component of PI3-K signaling pathway. We also found that TC21 interacted and formed complex with PI3-K. Mutations in the GTP-binding region of TC21, which enhanced GTP-binding potential of this protein, also stimulated its association with PI3-K, suggesting that PI3-K may preferentially interact with the GTP-bound form. Suppression of PI3-K and Akt by specific inhibitors LY294002 and Wortmannin reversed TC21-induced transformation. Likewise, inhibition of PI3-K activity by the PI3-K phosphotase PTEN reduced TC21-mediated focus formation in NIH3T3 cells. Investigation of TC21's effect on cell survival revealed that mutant-TC21 expressing cells were more resistant to etoposide- and cisplatin-induced cell death, and this was associated with the activation of anti-apoptotic protein NF-kappaB, a downstream target of Akt. Treatment of PI3-K inhibitor LY294002 significantly suppressed TC21-mediated NF-kappaB activation. In conclusion, we have identified PI3-K as an effector of TC21 and demonstrated that the PI3-K/Akt signaling pathway plays important roles in TC21-mediated transformation and cell survival."	"Involvement of phosphatidylinositol 3-kinase, but not RalGDS, in TC21/R-Ras2-mediated transformation. Oncogenic Ras and activated forms of the Ras-related protein TC21/R-Ras2 share similar abilities to alter cell proliferation. However, in contrast to Ras, we found previously that TC21 fails to activate the Raf-1 serine/threonine kinase. Thus, TC21 must utilize non-Raf effectors to regulate cell function. In this study, we determined that TC21 interacts strongly with some (RalGDS, RGL, RGL2/Rlf, AF6, and the phosphatidylinositol 3-kinase (PI3K) catalytic subunit p110delta), and weakly with other Ras small middle dotGTP-binding proteins. In addition, library screening identified novel TC21-interacting proteins. We also determined that TC21, similar to Ras, mediates activation of phospholipase Cepsilon. We then examined if RalGDS, a RalA guanine nucleotide exchange factor, or PI3K are effectors for TC21-mediated signaling and cell proliferation in murine fibroblasts. We found that overexpression of full-length RalGDS reduced the focus forming activity of activated TC21. Furthermore, expression of activated Ras, but not TC21, enhanced GTP loading on RalA. In fact, TC21 attenuated insulin-stimulated RalA small middle dotGTP formation. In contrast, like Ras, expression of activated TC21 resulted in membrane translocation and an increase in the PI3K-dependent phosphorylation of Akt, and inhibition of PI3K activity interfered with TC21 focus formation. Finally, unlike Ras, TC21 did not activate the Rac small GTPase, indicating that Ras may not activate Rac by PI3K. Taken together, these results suggest that PI3K, but not RalGDS, is an important mediator of cell proliferation by TC21."	"Analyses of TC21/R-Ras2 signaling and biological activity. NA"	"Activation of the Ral and phosphatidylinositol 3' kinase signaling pathways by the ras-related protein TC21. TC21 is a member of the Ras superfamily of small GTP-binding proteins that, like Ras, has been implicated in the regulation of growth-stimulating pathways. We have previously identified the Raf/mitogen-activated protein kinase pathway as a direct TC21 effector pathway required for TC21-induced transformation (M. Rosário, H. F. Paterson, and C. J. Marshall, EMBO J. 18:1270-1279, 1999). In this study we have identified two further effector pathways for TC21, which contribute to TC21-stimulated transformation: the phosphatidylinositol 3' kinase (PI-3K) and Ral signaling pathways. Expression of constitutively active TC21 leads to the activation of Ral A and the PI-3K-dependent activation of Akt/protein kinase B. Strong activation of the PI-3K/Akt pathway is seen even with very low levels of TC21 expression, suggesting that TC21 may be a key small GTPase-regulator of PI-3K. TC21-induced alterations in cellular morphology in NIH 3T3 and PC12 cells are also PI-3K dependent. On the other hand, activation of the Ral pathway by TC21 is required for TC21-stimulated DNA synthesis but not transformed morphology. We show that inhibition of Ral signaling blocks DNA synthesis in human tumor cell lines containing activating mutations in TC21, demonstrating for the first time that this pathway is required for the proliferation of human tumor cells. Finally, we provide mechanisms for the activation of these pathways, namely, the direct in vivo interaction of TC21 with guanine nucleotide exchange factors for Ral, resulting in their translocation to the plasma membrane, and the direct interaction of TC21 with PI-3K. In both cases, the effector domain region of TC21 is required since point mutations in this region can interfere with activation of downstream signaling."	"Regulatory proteins of R-Ras, TC21/R-Ras2, and M-Ras/R-Ras3. We studied the regulation of three closely related members of Ras family G proteins, R-Ras, TC21 (also known as R-Ras2), and M-Ras (R-Ras3). Guanine nucleotide exchange of R-Ras and TC21 was promoted by RasGRF, C3G, CalDAG-GEFI, CalDAG-GEFII (RasGRP), and CalDAG-GEFIII both in 293T cells and in vitro. By contrast, guanine nucleotide exchange of M-Ras was promoted by the guanine nucleotide exchange factors (GEFs) for the classical Ras (Ha-, K-, and N-), including mSos, RasGRF, CalDAG-GEFII, and CalDAG-GEFIII. GTPase-activating proteins (GAPs) for Ras, Gap1(m), p120 GAP, and NF-1 stimulated all of the R-Ras, TC21, and M-Ras proteins, whereas R-Ras GAP stimulated R-Ras and TC21 but not M-Ras. We did not find any remarkable difference in the subcellular localization of R-Ras, TC21, or M-Ras when these were expressed with a green fluorescent protein tag in 293T cells and MDCK cells. In conclusion, TC21 and R-Ras were regulated by the same GEFs and GAPs, whereas M-Ras was regulated as the classical Ras."	"TC21 and Ras share indistinguishable transforming and differentiating activities. Constitutively activated mutants of the Ras-related protein TC21/R-Ras2 cause tumorigenic transformation of NIH3T3 cells. However, unlike Ras, TC21 fails to bind to and activate the Raf-1 serine-threonine kinase. Thus, whereas Ras transformation is critically dependent on Raf-1 TC21 activity is promoted by activation of Raf-independent signaling pathways. In the present study, we have further compared the functions of Ras and TC21. First we determined the basis for the inability of TC21 to activate Raf-1. Whereas Ras can interact with the two distinct Ras-binding sequences in NH2-terminus of Raf-1, designated RBS1 and Raf-Cys, TC21 could only bind Raf-Cys. Thus, the inability of TC21 to bind to RBS1 may prevent it from promoting the translocation of Raf-1 to the plasma membrane. Second, we found that TC21 is an activator of the JNK and p38, but not ERK, mitogen-activated protein kinase cascades and that TC21 transforming activity was dependent on Rac function. Thus, like Ras, TC21 may activate a Rac/JNK pathway. Third, we determined if TC21 could cause the same biological consequences as Ras in three distinct cell types. Like Ras, activated TC21 caused transformation of RIE-1 rat intestinal epithelial cells and terminal differentiation of PC12 pheochromocytoma cells. Finally, activated TC21 blocked serum starvation-induced differentiation of C2 myoblasts, whereas dominant negative TC21 greatly accelerated this differentiation process. Therefore, TC21 and Ras share indistinguishable biological activities in all cell types that we have evaluated. These results support the importance of Raf-independent pathways in mediating the actions of Ras and TC21."	"Activation of the Raf/MAP kinase cascade by the Ras-related protein TC21 is required for the TC21-mediated transformation of NIH 3T3 cells. TC21 is a member of the Ras superfamily of small GTP-binding proteins and, like Ras, has been implicated in the regulation of growth-stimulating pathways. Point mutations introduced into TC21 based on equivalent H-Ras oncogenic mutations are transforming in cultured cells, and oncogenic mutations in TC21 have been isolated from several human tumours. The mechanism of TC21 signalling in transformation is poorly understood. While activation of the serine/threonine kinases Raf-1 and B-Raf has been implicated in signalling pathways leading to transformation by H-Ras, it has been argued that TC21 does not activate Raf-1 or B-Raf. Since the Raf-signalling pathway is important in transformation by other Ras proteins, we assessed whether the Raf pathway is important to transformation by TC21. Raf-1 and B-Raf are constitutively active in TC21-transformed cells and the ERK/MAPK cascade is required for the maintenance of the transformed state. We demonstrate that oncogenic V23 TC21, like Ras, interacts with Raf-1 and B-Raf (but not with A-Raf), resulting in the translocation of the Raf proteins to the plasma membrane and in their activation. Furthermore, using point mutations in the effector loop of TC21, we show that the interaction of TC21 with Raf-1 is crucial for transformation."	"Ras-related TC21 is activated by mutation in a breast cancer cell line, but infrequently in breast carcinomas in vivo. Activating ras mutations are found in many types of human tumour. Mutations in Harvey (H-), Kirsten (K-) and neuronal (N-) ras are, however, rarely found in breast carcinomas. TC21 is a ras family member that shares close homology to H-, K- and N-ras, and activating mutations have been found in ovarian carcinoma and leiomyosarcoma cell lines. We have examined panels of cDNAs from breast, ovarian and cervical cell lines, and primary and metastatic breast tumours for mutations in TC21 using a single-strand conformational polymorphism (SSCP)-based assay. One breast cancer cell line, CAL51, exhibited an altered SSCP pattern, compared with normal tissue, which was due to an A-T base change in codon 72, causing a predicted Gln-Leu activating mutation. Of nine primary and 15 metastatic breast tumour cDNAs analysed, none exhibited an altered pattern by SSCP. The apparently wild-type pattern by SSCP analysis was confirmed by sequence analysis of some of the cDNAs assayed. Thus, we conclude that mutations in TC21 are uncommon in breast carcinomas."	"Ras-like GTPases. NA"	"TC21 causes transformation by Raf-independent signaling pathways. Although the Ras-related protein TC21/R-Ras2 has only 55% amino acid identity with Ras proteins, mutated forms of TC21 exhibit the same potent transforming activity as constitutively activated forms of Ras. Therefore, like Ras, TC21 may activate signaling pathways that control normal cell growth and differentiation. To address this possibility, we determined if regulators and effectors of Ras are also important for controlling TC21 activity. First, we determined that Ras guanine nucleotide exchange factors (SOS1 and RasGRF/CDC25) synergistically enhanced wild-type TC21 activity in vivo and that Ras GTPase-activating proteins (GAPs; p120-GAP and NF1-GAP) stimulated wild-type TC21 GTP hydrolysis in vitro. Thus, extracellular signals that activate Ras via SOS1 activation may cause coordinate activation of Ras and TC21. Second, we determined if Raf kinases were effectors for TC21 transformation. Unexpectedly, yeast two-hybrid binding analyses showed that although both Ras and TC21 could interact with the isolated Ras-binding domain of Raf-1, only Ras interacted with full-length Raf-1, A-Raf, or B-Raf. Consistent with this observation, we found that Ras- but not TC21-transformed NIH 3T3 cells possessed constitutively elevated Raf-1 and B-Raf kinase activity. Thus, Raf kinases are effectors for Ras, but not TC21, signaling and transformation. We conclude that common upstream signals cause activation of Ras and TC21, but activated TC21 controls cell growth via distinct Raf-independent downstream signaling pathways."	"The TC21 oncoprotein interacts with the Ral guanosine nucleotide dissociation factor. TC21 is a highly oncogenic member of the Ras superfamily of small GTP binding proteins. We have used the yeast two hybrid system to identify proteins that interact with an oncogenic form of the TC21 protein. cDNA clones encoding the carboxy-terminal region of the RalGDS protein were isolated from human B-cell and HeLa cDNA libraries. RalGDS is an exchange factor that stimulates GDP dissociation from Ral, another member of the Ras superfamily of proteins. The interaction between RalGDS to TC21 is direct and appears to be mediated by the effector domain of TC21 and the carboxy-terminal region of RalGDS. Moreover, RalGDS only binds to TC21 in its active, GTP-loaded configuration. These results suggest that RalGDS might be an effector molecule for TC21 and may participate in cross-talking between Ral and TC21 signalling pathways."	"Overexpression of the Ras-related TC21/R-Ras2 protein may contribute to the development of human breast cancers. Although experimental studies suggest that aberrant Ras function can promote the malignant progression of human breast epithelial cells, the occurrence of mutated ras genes in breast tumors is infrequent. One possible explanation for this apparent paradox is that aberrant function of the Ras-related protein TC21/R-Ras2, which causes malignant transformation of NIH 3T3 cells via upregulation of the Ras signal transduction pathway, may contribute to breast tumor development in the absence of Ras mutations. To address this possibility, we utilized two complementary approaches. First, we determined that aberrant TC21 function caused transformation of the MCF-10A human breast epithelial cell line. TC21-transformed MCF-10A cells exhibited altered cellular morphology associated with a disruption of cell-cell adherens junctions, formed colonies in soft agar, and showed enhanced motility in vitro. These alterations were similar to, but more dramatic than, those observed with oncogenic Ras-transformed MCF-10A cells. Furthermore, overexpression of normal TC21, but not Ras, also caused transformation of these cells. Second, we observed that TC21 protein expression was greatly elevated in 7 of 9 breast tumor lines when compared to untransformed MCF-10A cells. Taken together, these results support the possibility that overexpression of TC21 may contribute to aberrant growth properties of breast carcinoma cells."	"A novel insertional mutation in the TC21 gene activates its transforming activity in a human leiomyosarcoma cell line. TC21 is the fourth member of the ras gene family to exhibit oncogenic activation in human tumor cells. To assess the prevalence of activated TC21 oncogenes in human tumors, we have developed sensitive single-strand conformational polymorphism (SSCP) conditions and immunological reagents for the detection of both single base alterations and/or overt overexpression in a wide spectrum of human tumor cell lines and surgical samples. In an initial examination of 33 human tumor specimens, we observed a novel nine basepair three amino acids insertion at TC21 codon 24 in one human uterine leiomyosarcoma cell line, SK-UT-1. This mutant allele when transfected into NIH3T3 cells, displayed high transforming activity comparable to that of the Leu72 oncogenic mutant identified by expression cDNA cloning from a human ovarian carcinoma cell line. Comparing the level of GTP-binding by the mutant and normal TC21 products revealed that this novel lesion increases the GTP-bound form of the TC21 molecule. These findings imply that the mechanism by which mutations activate the oncogenic properties of this ras-related molecule is analogous to that of previously known ras family members."	"Farnesyltransferase inhibitors are inhibitors of Ras but not R-Ras2/TC21, transformation. Recent results from several laboratories including ours strongly suggest that farnesyltransferase (FT) inhibitors belonging to distinct chemical classes block growth of oncogenic Ras transformed cells at concentrations that do not affect the growth and viability of normal cells. This is despite blocking the farnesylation and thus the membrane association of Ras in both cell types. This is a paradox given the requirement for Ras function in normal cell growth. Recent evidence that R-Ras2/TC21 utilizes components of Ras signal transduction pathways to trigger cellular transformation (Graham et al., MCB 14, 4108-4115, 1994) prompted us to consider the possibility that R-Ras2/TC21 is involved in some aspects of the growth regulation of normal cells. If so, R-Ras2/TC21 may be compensating for Ras function in untransformed cells treated with FT inhibitors. In this study, we demonstrated that a cell active bisubstrate analog FT inhibitor, BMS-186511, completely blocked the function of oncogenic Ras, but did not affect the function of oncogenic R-Ras2/TC21, as determined by several criteria including inhibition of anchorage dependent and independent growth, reversal of transformed morphology and restoration of actin cytoskeleton. While it is known that TC21 protein becomes prenylated, it is not known whether it is farnesylated or geranylgeranylated. Our in vitro prenylation experiments indicate that R-Ras2/TC21 protein serves as a good substrate for FT as well as geranylgeranyltransferase I (GGTI) and thus provide the apparent molecular basis for these differences. Overall, these results, coupled with the ubiquitous expression of R-Ras2/TC21 in many cells including untransformed NIH3T3 cells, are consistent with the possibility that R-Ras2/TC21 may be one of the factors that render normal cells insensitive to the growth inhibitory action of FT inhibitors."	"Oncogenic activation of human R-ras by point mutations analogous to those of prototype H-ras oncogenes. R-ras, K-rev-1/rap and TC21, are more closely related to prototype H-ras than any other known members of the ras superfamily. We recently isolated a mutationally activated TC21 oncogene from a human ovarian carcinoma cell line. Based upon these observations, we sought to re-examine the transforming potential of R-ras, which was reported earlier to lack transforming capacity. Mutations were introduced into the R-ras gene at codons 38 or 87, analogous to positions 12 and 61, respectively, responsible for H-ras oncogene activation. While both mutations resulted in acquisition of R-ras transforming capacity for NIH3T3 cells the position 61 was shown to be more active. Transfectants expressing either R-ras mutant formed colonies in soft agar and were tumorigenic in vivo. As has been reported for H-ras, R-ras cooperated with c-raf-1 in inducing transformation of NIH3T3 cells. These results imply interactions in R-ras and c-raf-1 signaling pathways. We observed R-ras transcripts of 4.6 and 1.2 kb ubiquitously expressed in each of a variety of tissues examined. All these findings raise the possibility that R-ras, like prototype ras genes, may be mutationally activated as an oncogene in some human malignancies."	"A human oncogene of the RAS superfamily unmasked by expression cDNA cloning. As an approach to identify human oncogenes, we generated an expression cDNA library from an ovarian carcinoma line. A potent transforming gene was detected by transfection analysis and identified as TC21, a recently cloned member of the RAS gene superfamily. A single point mutation substituting glutamine for leucine at position 72 was shown to be responsible for activation of transforming properties. While the cDNA clone possessed high transforming activity, the ovarian tumor genomic DNA, which contained the mutated TC21 allele, failed to induce transformed foci. Thus, expression cDNA cloning made it possible to identify and isolate a human oncogene that has evaded detection by conventional approaches."	"Aberrant function of the Ras-related protein TC21/R-Ras2 triggers malignant transformation. Although the human Ras proteins are members of a large superfamily of Ras-related proteins, to date, only the proteins encoded by the three mammalian ras genes have been found to possess oncogenic potential. Among the known Ras-related proteins, TC21/R-Ras2 exhibits the most significant amino acid identity (55%) to Ras proteins. We have generated mutant forms of TC21 that possess amino acid substitutions analogous to those that activate Ras oncogenic potential [designated TC21(22V) and TC21(71L)] and compared the biological properties of TC21 with those of Ras proteins in NIH 3T3 and Rat-1 transformation assays. Whereas wild-type TC21 did not show any transforming potential in vitro, both TC21(22V) and TC21(71L) displayed surprisingly potent transforming activities that were comparable to the strong transforming activity of oncogenic Ras proteins. Like Ras-transformed cells, NIH 3T3 cells expressing mutant TC21 proteins formed foci of morphologically transformed cells in monolayer cultures, proliferated in low serum, formed colonies in soft agar, and developed progressive tumors in nude mice. Thus, TC21 is the first Ras-related protein to exhibit potent transforming activity equivalent to that of Ras. Furthermore, mutant TC21 proteins also stimulated constitutive activation of mitogen-activated protein kinases as well as transcriptional activation from Ras-responsive promoter elements (Ets/AP-1 and NF-kappa B). We conclude that aberrant TC21 function may trigger cellular transformation via a signal transduction pathway similar to that of oncogenic Ras and suggest that deregulated TC21 activity may contribute significantly to human oncogenesis."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SOS1"	"Noonan syndrome"	"SOS1 interacts with Grb2 through regions that induce closed nSH3 conformations. Grb2 is an adaptor protein connecting the epidermal growth factor receptor and the downstream Son of sevenless 1 (SOS1), a Ras-specific guanine nucleotide exchange factor (RasGEF), which exchanges GDP by GTP. Grb2 contains three SH domains: N-terminal SH3 (nSH3), SH2, and C-terminal SH3 (cSH3). The C-terminal proline-rich (PR) domain of SOS1 regulates nSH3 open/closed conformations. Earlier, several nSH3 binding motifs were identified in the PR domain. More recently, we characterized by nuclear magnetic resonance and replica exchange simulations possible cSH3 binding regions. Among them, we discovered a cSH3-specific binding region. However, how PR binding at these sites regulates the nSH3/cSH3 conformation has been unclear. Here, we explore the nSH3/cSH3 interaction with linked and truncated PR segments using molecular dynamics simulations. Our 248 μs simulations include 620 distinct trajectories, each 400 ns. We construct the effective free energy landscape to validate the nSH3/cSH3 binding sites. The nSH3/cSH3-SOS1 peptide complex models indicate that strong peptide binders attract the flexible nSH3 n-Src loop, inducing a closed conformation of nSH3; by contrast, the cSH3 conformation remains unchanged. Inhibitors that disrupt the Ras-SOS1 interaction have been designed; the conformational details uncovered here may assist in the design of polypeptides inhibiting Grb2-SOS1 interaction, thus SOS1 recruitment to the membrane where Ras resides."	"Improving crop salt tolerance using transgenic approaches: an update and physiological analysis. Salinisation of land is likely to increase due to climate change with impact on agricultural production. Since most species used as crops are sensitive to salinity, improvement of salt tolerance is needed to maintain global food production. This review summarises successes and failures of transgenic approaches in improving salt tolerance in crop species. A conceptual model of coordinated physiological mechanisms in roots and shoots required for salt tolerance is presented. Transgenic plants overexpressing genes of key proteins contributing to Na<sup>+</sup> 'exclusion' (PM-ATPases with SOS1 antiporter, and HKT1 transporter) and Na<sup>+</sup> compartmentation in vacuoles (V-H<sup>+</sup> ATPase and V-H<sup>+</sup> PPase with NHX antiporter), as well as two proteins potentially involved in alleviating water deficit during salt stress (aquaporins and dehydrins), were evaluated. Of the 51 transformations with gene(s) involved in Na<sup>+</sup> 'exclusion' or Na<sup>+</sup> vacuolar compartmentation that contained quantitative data on growth and include a non-saline control, 48 showed improvements in salt tolerance (less impact on plant mass) of transgenic plants, but with only two tested in field conditions. Of these 51 transformations, 26 involved crop species. Tissue ion concentrations were altered, but not always in the same way. Although glasshouse data are promising, field studies are required to assess crop salinity tolerance. This article is protected by copyright. All rights reserved."	"Biochemical and molecular characterisations of salt tolerance components in rice varieties tolerant and sensitive to NaCl: the relevance of Na+ exclusion in salt tolerance in the species. Soil salinisation is a major abiotic stress in agriculture, and is especially a concern for rice production because among cereal crops, rice is the most salt-sensitive. However, the production of rice must be increased substantially by the year 2050 to meet the demand of the ever growing population. Hence, understanding the biochemical events determining salt tolerance in rice is highly desirable so that the trait can be introduced in cultivars of interest through biotechnological intervention. In this context, an initial study on NaCl response in four Indica rice varieties showed a lower uptake of Na+ in the salt-tolerant Nona Bokra and Pokkali than in the salt-sensitive IR64 and IR29, indicating Na+ exclusion as a primary requirement of salt tolerance in the species. This was also supported by the following features in the salt-tolerant, but not in the -sensitive varieties: (1) highly significant NaCl-induced increase in the activity of PM-H+ATPase, (2) a high constitutive level and NaCl-induced threonine phosphorylation of PM-H+ATPase, necessary to promote its activity, (3) a high constitutive expression of 14-3-3 protein that makes PM-H+ATPase active by binding with the phosphorylated threonine at the C-terminal end, (4) a high constitutive and NaCl-induced expression of SOS1 in roots, and (5) significant NaCl-induced expression of OsCIPK 24, a SOS2 that phosphorylates SOS1. The vacuolar sequestration of Na+ in seedlings was not reflected from the expression pattern of NHX1/NHX1 in response to NaCl. NaCl-induced downregulation of expression of HKTs in roots of Nona Bokra, but upregulation in Pokkali also indicates that their role in salt tolerance in rice could be cultivar specific. The study indicates that consideration of increasing exclusion of Na+ by enhancing the efficiency of SOS1/PM-H+ATPase Na+ exclusion module could be an important aspect in attempting to increase salt tolerance in the rice varieties or cultivars of interest."	"KRAS: From undruggable to a druggable Cancer Target. RAS is the most frequently mutated oncogene in human cancers, with mutations in about 30% of all cancers. RAS exists in three different isoforms (K-RAS, H-RAS and N-RAS) with high sequence homology. K-RAS is the most commonly mutated RAS isoform. The Ras protein is a membrane bound protein with inherent GTPase activity and is activated by numerous extracellular stimuli, cycling between an inactive (GDP-bound) and active (GTP-bound) form. When bound to GTP, it is switched &quot;on&quot; and activates intracellular signaling pathways, critical for cell proliferation and angiogenesis. Mutated RAS is constitutively activated and persistently turned &quot;on&quot; thereby enhancing downstream signaling and leading to tumorigenesis. Various attempts to inhibit Kras in the past were unsuccessful. Recently, several small molecules (AMG510, MRTX849, JNJ-74699157, and LY3499446) have been developed to specifically target K-RAS G12C. Additionally, various other approaches including, SHP2, SOS1 and eIF4 inhibition, have been utilized to abrogate tumor growth in K-RAS mutant cells, resulting in a renewed interest in this pathway. In this review article, we provide an overview on the role of K-RAS in tumorigenesis, past approaches to inhibiting Kras, and current and future prospects for targeting Kras."	"Discovery of Sulfonamide-Derived Agonists of SOS1-Mediated Nucleotide Exchange on RAS Using Fragment-Based Methods. The nucleotide exchange factor Son of Sevenless (SOS) catalyzes the activation of RAS by converting it from its inactive GDP-bound state to its active GTP-bound state. Recently, we have reported the discovery of small molecule allosteric activators of SOS1 that can increase the amount of RAS-GTP in cells. The compounds can inhibit ERK phosphorylation at higher concentrations by engaging a feedback mechanism. To further study this process, we sought different chemical matter from an NMR-based fragment screen using selective methyl labeling. To aid this process, several Ile methyl groups located in different binding sites of the protein were assigned and used to categorize the NMR hits into different classes. Hit to lead optimization using an iterative structure-based design paradigm resulted in compounds with improvements in binding affinity. These improved molecules of a different chemical class increase SOS1cat-mediated nucleotide exchange on RAS and display cellular action consistent with our prior results."	"Non-invasive prenatal sequencing for multiple Mendelian monogenic disorders among fetuses with skeletal dysplasia or increased nuchal translucency. To evaluate the performance of non-invasive prenatal sequencing for multiple Mendelian monogenic disorders (NIPS-M) among fetuses with skeletal abnormalities or increased nuchal translucency (NT). Pregnancies with fetal skeletal abnormalities or increased NT (≥3.0 mm) observed by ultrasonography were recruited between October 2017 and March 2019. Parental blood from 13 couples were collected for NIPS-M testing reported. All the NIPS-M results were followed up by invasive diagnostic testing or neonatal examination. Among the 13 cases, 8 (61.5%) yielded positive results for pathogenic variants in the FGFR3, COL1A1, RAF1, PTPN11 and SOS1 genes by NIPS-M. One case was excluded for further analysis due to insufficient fetal DNA (&lt;4.5%). De novo mutations were reported in six of the eight positive cases (75%). The other two were inconclusive as the pathogenic variants were detected in both plasma and genomic DNA of the mothers. The sensitivity of NIPS-M was 100%. Our pilot study demonstrates that NIPS-M is an accurate approach for detection of multiple monogenic disorders among fetuses with skeletal abnormalities or increased NT. It serves as an alternative and highly sensitive method to provide valuable molecular information for these groups of women who are reluctant to undergo invasive procedure. This article is protected by copyright. All rights reserved."	"A mitochondria-targeted coenzyme Q peptoid induces superoxide dismutase and alleviates salinity stress in plant cells. Salinity is a serious challenge to global agriculture and threatens human food security. Plant cells can respond to salt stress either by activation of adaptive responses, or by programmed cell death. The mechanisms deciding the respective response are far from understood, but seem to depend on the degree, to which mitochondria can maintain oxidative homeostasis. Using plant PeptoQ, a Trojan Peptoid, as vehicle, it is possible to transport a coenzyme Q10 (CoQ10) derivative into plant mitochondria. We show that salinity stress in tobacco BY-2 cells (Nicotiana tabacum L. cv Bright Yellow-2) can be mitigated by pretreatment with plant PeptoQ with respect to numerous aspects including proliferation, expansion, redox homeostasis, and programmed cell death. We tested the salinity response for transcripts from nine salt-stress related-genes representing different adaptive responses. While most did not show any significant response, the salt response of the transcription factor NtNAC, probably involved in mitochondrial retrograde signaling, was significantly modulated by the plant PeptoQ. Most strikingly, transcripts for the mitochondrial, Mn-dependent Superoxide Dismutase were rapidly and drastically upregulated in presence of the peptoid, and this response was disappearing in presence of salt. The same pattern, albeit at lower amplitude, was seen for the sodium exporter SOS1. The findings are discussed by a model, where plant PeptoQ modulates retrograde signalling to the nucleus leading to a strong expression of mitochondrial SOD, what renders mitochondria more resilient to perturbations of oxidative balance, such that cells escape salt induced cell death and remain viable."	"Phosphoproteomic quantitation and causal analysis reveal pathways in GPVI/ITAM-mediated platelet activation programs. Platelets engage cues of pending vascular injury through coordinated adhesion, secretion and aggregation responses. These rapid, progressive changes in platelet form and function are orchestrated downstream of specific receptors on the platelet cell surface, and through intracellular signaling mechanisms that remain systematically undefined. This study brings together cell physiological and phosphoproteomics methods incorporating peptide tandem mass tag (TMT) labeling, sample multiplexing, synchronous precursor selection (SPS) and triple stage tandem mass spectrometry (MS3) to profile signaling mechanisms downstream of the immunotyrosine activation motif (ITAM) platelet collagen receptor GPVI. Altogether, &gt;3,000 significant (FDR&lt;0.05) phosphorylation events on &gt;1,300 proteins were detected in initial and progressing conditions of GPVI-mediated platelet activation. With literature-guided causal inference tools, &gt;300 site-specific signaling relations were mapped from phosphoproteomics data among key and emerging GPVI effectors (i.e., FcRg, Syk, PLCg2, PKCd, DAPP1). Through signaling validation studies and functional screening, other less-characterized targets were also considered within the context of GPVI/ITAM pathways, including Ras/MAPK axis proteins (i.e., KSR1, SOS1, STAT1, Hsp27). Networks highly regulated in GPVI/ITAM signaling out of context of curated knowledge were also illuminated, including a system of &gt;40 Rab GTPases and associated regulatory proteins - where TAK1-mediated Rab7 S72 phosphorylation associated with endolysosomal maturation and GPVI-mediated platelet function. In addition to serving as a model for generating and testing hypotheses from omics datasets, this study puts forth a means to identify hemostatic effectors, biomarkers and therapeutic targets relevant to thrombosis, vascular inflammation and other platelet-associated disease states."	"Natural variations in SlSOS1 contribute to the loss of salt tolerance during tomato domestication. Soil salinity is a major constraint on crop cultivability and productivity worldwide (Shabala 2013). The ion toxicity caused by high salinity is alleviated by the adjustment of cellular Na<sup>+</sup> and K<sup>+</sup> homeostasis through the functions of ion transporters such as SOS1 (Salt Overly Sensitive 1) and HKT1 (High-Affinity Potassium Transporter 1). SOS1 is a plasma membrane Na<sup>+</sup> /H<sup>+</sup> antiporter mediating Na<sup>+</sup> extrusion in root epidermal cells to reduce Na<sup>+</sup> accumulation in plants and in the parenchyma cells of root and shoot xylems to promote Na<sup>+</sup> translocation from root to shoot, whereas the Na<sup>+</sup> transporter HKT1 mediates retrieval of Na<sup>+</sup> from the xylem and may contribute to Na<sup>+</sup> recirculation from shoot to root (Zhu 2016). Natural variations in HKT1 have been implicated in salt tolerance in several plant species (An et al. 2017). However, the role of natural variations in SOS1 in adaptation to salt stress have not been reported."	"Early effects of salt stress on the physiological and oxidative status of the halophyte Lobularia maritima. Soil salinity is an abiotic stress that reduces agricultural productivity. For decades, halophytes have been studied to elucidate the physiological and biochemical processes involved in alleviating cellular ionic imbalance and conferring salt tolerance. Recently, several interesting genes with proven influence on salt tolerance were isolated from the Mediterranean halophyte Lobularia maritima (L.) Desv. A better understanding of salt response in this species is needed to exploit its potential as a source of stress-related genes. We report the characterisation of L. maritima's response to increasing NaCl concentrations (100-400 mM) at the physiological, biochemical and molecular levels. L. maritima growth was unaffected by salinity up to 100 mM NaCl and it was able to survive at 400 mM NaCl without exhibiting visual symptoms of damage. Lobularia maritima showed a Na+ and K+ accumulation pattern typical of a salt-includer halophyte, with higher contents of Na+ in the leaves and K+ in the roots of salt-treated plants. The expression profiles of NHX1, SOS1, HKT1, KT1 and VHA-E1 in salt-treated plants matched this Na+ and K+ accumulation pattern, suggesting an important role for these transporters in the regulation of ion homeostasis in leaves and roots of L. maritima. A concomitant stimulation in phenolic biosynthesis and antioxidant enzyme activity was observed under moderate salinity, suggesting a potential link between the production of polyphenolic antioxidants and protection against salt stress in L. maritima. Our findings indicate that the halophyte L. maritima can rapidly develop physiological and antioxidant mechanisms to adapt to salt and manage oxidative stress."	"Long non-coding RNA LINC01268 promotes cell growth and inhibits cell apoptosis by modulating miR-217/SOS1 axis in acute myeloid leukemia. The aim of this study was to evaluate the pathogenic role of newly identified long non-coding (lnc)-RNA LINCO1268 in acute myeloid leukemia (AML), and investigate its therapeutic potential. The expression level of LINC01268 in AML was measured by quantitative PCR (qPCR). The viability, cell cycle progression, and apoptosis of AML cells were measured by CCK-8 assay and flow cytometry, respectively. The interaction between LINC01268 and miR-217 were predicted by the miRDB website, and then verified by luciferase reporter assay and RNA immunoprecipitation (RIP) assay. The relationship between miR-217 and SOS1 was predicted by TargetScan website, and verified by luciferase reporter assay. LINC01268 was significantly upregulated by 1.6 fold in bone marrow samples of AML patients, which was associated with poor prognosis. LINC01268 was also significantly upregulated in AML cells. LINC01268 knockdown inhibited viability and cell cycle progression but promoted apoptosis of AML cells. Furthermore, LINC01268 functioned as a ceRNA via competitively binding to miR-217, and SOS1 was identified as a target of miR-217. Moreover, LINC01268 positively regulated SOS1 expression to promote AML cell viability and cell cycle progression but inhibited apoptosis via sponging miR-217. LINC01268 promoted cell growth and inhibited cell apoptosis through modulating miR-217/SOS1 axis in AML. This study offers a novel molecular mechanism for a better understanding of the pathology of AML. LINC01268 could be considered as a potential biomarker for the therapy and diagnosis of AML."	"SOS1 Gain of Function Variants in Dilated Cardiomyopathy. Background - Dilated cardiomyopathy (DCM) is a genetically heterogeneous cardiac disease characterized by progressive ventricular enlargement and reduced systolic function. Here, we report genetic and functional analyses implicating the RAS signaling protein, SOS1, in DCM pathogenesis. Methods - Exome sequencing was performed on 412 probands and family members from our DCM cohort, identifying several SOS1 variants with potential disease involvement. As several lines of evidence have implicated dysregulated RAS signaling in the pathogenesis of DCM, we assessed functional impact of each variant on activation of ERK, AKT, and JNK pathways. Relative expression levels were determined by western blot in HEK293T cells transfected with variant or wild-type human SOS1 expression constructs. Results - A rare SOS1 variant [c.571G&gt;A, p.(Glu191Lys)] was found to segregate alongside an A-band Titin (TTN) truncating variant in a pedigree with aggressive, early onset DCM. Reduced disease severity in the absence of the SOS1 variant suggested its potential involvement as a genetic risk factor for DCM in this family. Exome sequencing identified five additional SOS1 variants with potential disease involvement in four other families [c.1820T&gt;C, p.(Ile607Thr); c.2156G&gt;C, p.(Gly719Ala); c.2230A&gt;G, p.(Arg744Gly); c.2728G&gt;C, p.(Asp910His); c.3601C&gt;T, p.(Arg1201Trp)]. Impacted amino acids occupied a number of functional domains relevant to SOS1 activity, including the N-terminal histone fold (HF), as well as the C-terminal RAS-exchange motif (REM), CDC25, and proline-rich (PR) tail domains. Increased pERK expression relative to wild-type levels was seen for all six SOS1 variants, paralleling known disease-relevant SOS1 signaling profiles. Conclusions - These data support gain of function variation in SOS1 as a contributing factor to isolated DCM."	"Anti-parasite drug ivermectin can suppress ovarian cancer by regulating lncRNA-EIF4A3-mRNA axes. Ivermectin, as an old anti-parasite drug, can suppress almost completely the growth of various human cancers, including ovarian cancer (OC). However, its anticancer mechanism remained to be further studied at the molecular levels. Ivermectin-related molecule-panel changes will serve a useful tool for its personalized drug therapy and prognostic assessment in OCs. To explore the functional significance of ivermectin-mediated lncRNA-EIF4A3-mRNA axes in OCs and ivermectin-related molecule-panel for its personalized drug therapy monitoring. Based on our previous study, a total of 16 lncRNA expression patterns were analyzed using qRT-PCR before and after ivermectin-treated different OC cell lines (TOV-21G and A2780). Stable isotope labeling with amino acids in cell culture (SILAC)-based quantitative proteomics was used to analyze the protein expressions of EIF4A3 and EIF4A3-binding mRNAs in ovarian cancer cells treated with and without ivermectin. A total of 411 OC patients from the Cancer Genome Atlas (TCGA) database with the selected lncRNA expressions and the corresponding clinical data were included. Lasso regression was constructed to examine the relationship between lncRNA signature and OC survival risk. The overall survival analysis between high-risk and low-risk groups used the Kaplan-Meier method. Heatmap showed the correlation between risk groups and clinical characteristics. The univariate and multivariate models were established with Cox regression. SILAC-based quantitative proteomics found the protein expression levels of EIF4A3 and 116 EIF4A3-binding mRNAs were inhibited by ivermectin in OC cells. Among the analyzed 16 lncRNAs (HCG15, KIF9-AS1, PDCD4-AS1, ZNF674-AS1, ZNRF3-AS1, SOS1-IT1, LINC00565, SNHG3, PLCH1-AS1, WWTR1-AS1, LINC00517, AL109767.1, STARD13-IT1, LBX2-AS1, LEMD1-AS1, and HOXC-AS3), only 7 lncRNAs (HCG15, KIF9-AS1, PDCD4-AS1, ZNF674-AS1, ZNRF3-AS1, SOS1-IT1, and LINC00565) were obtained for further lasso regression when combined with the results of drug testing and overall survival analysis. Lasso regression identified the prognostic model of ivermectin-related three-lncRNA signature (ZNRF3-AS1, SOS1-IT1, and LINC00565). The high-risk and low-risk groups based on the prognostic model were significantly related to overall survival and clinicopathologic characteristics (survival status, lymphatic invasion, cancer status, and clinical stage) in OC patients and remained independent risk factors according to multivariate COX analysis (p &lt; 0.05). Those findings provided the potential targeted lncRNA-EIF4A3-mRNA pathways of ivermectin in OC, and constructed the effective prognostic model, which benefits discovery of novel mechanism of ivermectin to suppress ovarian cancer cells, and the ivermectin-related molecule-panel changes benefit for its personalized drug therapy and prognostic assessment towards its predictive, preventive, and personalized medicine (PPPM) in OCs."	"Digenic inheritance of subclinical variants in Noonan Syndrome patients: an alternative pathogenic model? Noonan syndrome (NS) is an autosomal-dominant disorder with variable expressivity and locus heterogeneity. Despite several RAS pathway genes were implicated in NS, 20-30% of patients remain without molecular diagnosis, suggesting the involvement of further genes or multiple mechanisms. Eight patients out of 60, negative for conventional NS mutation analysis, with heterogeneous NS phenotype were investigated by means of target resequencing of 26 RAS/MAPK pathway genes. A trio was further characterized by means of whole-exome sequencing. Protein modeling and in silico prediction of protein stability allowed to identify possible pathogenic RAS pathway variants in four NS patients. A new c.355T&gt;C variant in LZTR1 was found in patient 43. Two patients co-inherited variants in LRP1 and LZTR1 (patient 53), or LRP1 and SOS1 genes (patient 67). The forth patient (56) carried a compound heterozygote of RASAL3 gene variants and also an A2ML1 variant. While these subclinical variants are singularly present in healthy parents, they co-segregate in patients, suggesting their addictive effect and supporting a digenic inheritance, as alternative model to a more common monogenic transmission. The ERK1/2 and SAPK/JNK activation state, assessed on immortalized lymphocytes from patients 53 and 67 showed highest phosphorylation levels compared to their asymptomatic parents. These findings together with the lack of their co-occurrence in the 1000Genomes database strengthen the hypothesis of digenic inheritance in a subset of NS patients. This study suggests caution in the exclusion of subclinical variants that might play a pathogenic role providing new insights for alternative hereditary mechanisms."	"Crystal structure of the SH3 domain of growth factor receptor-bound protein 2. This study presents the crystal structure of the N-terminal SH3 (SH3N) domain of growth factor receptor-bound protein 2 (Grb2) at 2.5 Å resolution. Grb2 is a small (215-amino-acid) adaptor protein that is widely expressed and involved in signal transduction/cell communication. The crystal structure of full-length Grb2 has previously been reported (PDB entry 1gri). The structure of the isolated SH3N domain is consistent with the full-length structure. The structure of the isolated SH3N domain was solved at a higher resolution (2.5 Å compared with 3.1 Å for the previously deposited structure) and made it possible to resolve some of the loops that were missing in the full-length structure. In addition, interactions between the carboxy-terminal region of the SH3N domain and the Sos1-binding sites were observed in the structure of the isolated domain. Analysis of these interactions provided new information about the ligand-binding properties of the SH3N domain of Grb2."	"Guizhi Fuling Decoction inhibiting the PI3K and MAPK pathways in breast cancer cells revealed by HTS<sup>2</sup> technology and systems pharmacology. As one of the classical traditional Chinese medicine (TCM) prescriptions in treating gynecological tumors, Guizhi Fuling Decoction (GFD) has been used to treat breast cancer (BRCA). Nonetheless, the potential molecular mechanism remains unclear so far. Therefore, systems pharmacology was used in combination with high throughput sequencing-based high throughput screening (HTS<sup>2</sup>) assay and bioinformatic technologies in this study to investigate the molecular mechanisms of GFD in treating BRCA. By computationally analyzing 76 active ingredients in GFD, 38 potential therapeutic targets were predicted and significantly enriched in the &quot;pathways in cancer&quot;. Meanwhile, experimental analysis was carried out to examine changes in the expression levels of 308 genes involved in the &quot;pathways in cancer&quot; in BRCA cells treated by five herbs of GFD utilizing HTS<sup>2</sup> platform, and 5 key therapeutic targets, including HRAS, EGFR, PTK2, SOS1, and ITGB1, were identified. The binding mode of active compounds to these five targets was analyzed by molecular docking and molecular dynamics simulation. It was found after integrating the computational and experimental data that, GFD possessed the anti-proliferation, pro-apoptosis, and anti-angiogenesis activities mainly through regulating the PI3K and the MAPK signaling pathways to inhibit BRCA. Besides, consistent with the TCM theory about the synergy of Cinnamomi Ramulus (Guizhi) by Cortex Moutan (Mudanpi) in GFD, both of these two herbs acted on the same targets and pathways. Taken together, the combined application of computational systems pharmacology techniques and experimental HTS<sup>2</sup> platform provides a practical research strategy to investigate the functional and biological mechanisms of the complicated TCM prescriptions."	"ESCRT-I Component VPS23A Sustains Salt Tolerance by Strengthening the SOS Module in Arabidopsis. The Salt-Overly-Sensitive (SOS) signaling module, comprising the sodium-transport protein SOS1 and the regulatory proteins SOS2 and SOS3, is well known as the central salt excretion system, which helps protect plants against salt stress. Here we report that VPS23A, a component of the ESCRT (endosomal sorting complex required for transport), plays an essential role in the function of the SOS module in conferring plant salt tolerance. VPS23A enhances the interaction of SOS2 and SOS3. In the presence of salt stress, VPS23A positively regulates the redistribution of SOS2 to the plasma membrane, which then activates the antiporter activity of SOS1 to reduce Na<sup>+</sup> accumulation in plant cells. Genetic evidence demonstrated that plant salt tolerance achieved by the overexpression of SOS2 and SOS3 dependeds on VPS23A. Taken together, our results revealed that VPS23A is a crucial regulator of the SOS module and affects the localization of SOS2 to the cell membrane. Moreover, the strong salt tolerance of Arabidopsis seedlings conferred by the engineered membrane-bound SOS2 revealed the significance of SOS2 sorting to the cell membrane in achieving its function, providing a potential strategy for crop salt tolerance engineering."	"Isolation and characterization of Salt Overly Sensitive family genes in spinach. The Salt Overly Sensitive (SOS) pathway regulates intracellular sodium ion homeostasis as a salt-stress response in plants. This pathway involves three main genes designated as SOS1, SOS2 and SOS3, which are members of the Na<sup>+</sup> /H<sup>+</sup> exchanger (NHX), CBL-interacting protein kinase (CIPK) and Calcineurin B-like (CBL) gene families, respectively. To identify and characterize SOS genes in spinach (Spinacia oleracea), a species of the Amaranthaceae family, we conducted genome-wide identification and phylogenetic analyses of NHX, CIPK and CBL genes from four Amaranthaceae species, Arabidopsis and rice. Most Amaranthaceae genes exhibited orthologous relationships with Arabidopsis and/or rice, except a clade of Vac-type Amaranthaceae NHX genes. Phylogenetic analyses also revealed gene gain/loss events in Amaranthaceae species and the intron-less to intron-rich evolution of CIPK genes. A bacterial protein-rooted CIPK tree allowed naming most of the phylogenetic clades based on their evolutionary history. Single S. oleracea (So) SOS1, SOS2 and SOS3 proteins were identified. Direct protein-protein interaction was observed between SoSOS2 and SoSOS3 but not between SoSOS2 and SoSOS1 based on yeast two-hybrid assay. This may suggest distinct modes of action of spinach SOS proteins compared to Arabidopsis SOS proteins. Unlike SoSOS1 and SoSOS2, which were expressed at similar or higher levels in leaves than roots, SoSOS3 expression was significantly higher in roots than leaves, suggesting its greater importance in roots. The expression of SoSOS3 was upregulated in both roots and leaves under salinity compared to the control; however, SoSOS1 was only upregulated in roots. Thus, this study demonstrated the conservation of SOS pathway genes in spinach and also highlighted the complexity of SOS signaling in Amaranthaceae species."	"miR-429-CRKL axis regulates clear cell renal cell carcinoma malignant progression through SOS1/MEK/ERK/MMP2/MMP9 pathway. The pathogenesis and tumorigenesis of clear cell renal cell carcinoma (ccRCC) remain unclear. The deregulations of miR-429, a member of miR-200 family, and v-crk sarcoma virus CT10 oncogene homologue (avian)-like (CRKL), an adaptor protein of CRK family, are involved in the development, metastasis and prognosis of various cancers. Current study aimed to demonstrate the differential expressions of miR-429 and CRKL with their correlationship and molecular regulation mechanism in ccRCC malignancy. miR-429 and CRKL separately showed suppressing and promoting effects in ccRCC. Lower miR-429 expression and higher CRKL expression were negatively correlated in surgical cancerous tissues by promoting the advance of ccRCC. By binding to the 3'-UTR of CRKL, miR-429 reversely regulated CRKL for its functionalities in ccRCC cells. CRKL knockdown and overexpression separately decreased and increased the in vitro migration and invasion of 786-O cells, which were consistent with the influences of miR-429 overexpression and knockdown on 786-O through respectively downregulating and upregulating CRKL via SOS1/MEK/ERK/MMP2/MMP9 pathway. The enhancements of CRKL expression, migration and invasion abilities and SOS1/MEK/ ERK/MMP2/MMP9 activation induced by TGF-β stimulation in 786-O cells could be antagonized by miR-429 overexpression. Exogenous re-expression of CRKL abrogated miR-429 suppression on the migration and invasion of 786-O cells. Collectively, miR-429 deficiency negatively correlated with CRKL overexpression promoted the aggressiveness of cancer cells and advanced the clinical progression of ccRCC patients. miR-429-CRKL axial regulation provides new clues to the fundamental research, diagnosis and treatment of ccRCC."	"Nonsyndromic hereditary gingival fibromatosis: Characterization of a family and review of genetic etiology. Our aim is to describe a family with a nonsyndromic form of hereditary gingival fibromatosis (HGF) and discuss genetic characteristics of this rare disease by reviewing reported cases. A mother and three descendants were diagnosed with HGF. There was marked variable expressivity: from severe generalized gingival overgrowth in a 16-year-old boy (the proband) to minimal manifestations in the mother. The proband was submitted to gingivectomy and gingivoplasty. In younger siblings, the disease remained stable for 5 years, suggesting that clinical surveillance is a good option. The diagnosis was supported by histopathological examination. Analysis of this family and literature-reported cases supports that HGF most frequently shows an autosomal dominant inheritance with high penetrance and variable expressivity. Neomutations and gonadal mosaicism do not seem to be a rare event. Although five loci have been mapped by linkage analysis, only two genes, SOS1 and REST, were identified in four families."	"14-3-3 Proteins and Other Candidates form Protein-Protein Interactions with the Cytosolic C-terminal End of SOS1 Affecting Its Transport Activity. The plasma membrane transporter SOS1 (SALT-OVERLY SENSITIVE1) is vital for plant survival under salt stress. SOS1 activity is tightly regulated, but little is known about the underlying mechanism. SOS1 contains a cytosolic, autoinhibitory C-terminal tail (abbreviated as SOS1 C-term), which is targeted by the protein kinase SOS2 to trigger its transport activity. Here, to identify additional binding proteins that regulate SOS1 activity, we synthesized the SOS1 C-term domain and used it as bait to probe Arabidopsis thaliana cell extracts. Several 14-3-3 proteins, which function in plant salt tolerance, specifically bound to and interacted with the SOS1 C-term. Compared to wild-type plants, when exposed to salt stress, Arabidopsis plants overexpressing SOS1 C-term showed improved salt tolerance, significantly reduced Na<sup>+</sup> accumulation in leaves, reduced induction of the salt-responsive gene WRKY25, decreased soluble sugar, starch, and proline levels, less impaired inflorescence formation and increased biomass. It appears that overexpressing SOS1 C-term leads to the sequestration of inhibitory 14-3-3 proteins, allowing SOS1 to be more readily activated and leading to increased salt tolerance. We propose that the SOS1 C-term binds to previously unknown proteins such as 14-3-3 isoforms, thereby regulating salt tolerance. This finding uncovers another regulatory layer of the plant salt tolerance program."	"Young children with Noonan syndrome: evaluation of feeding problems. Noonan syndrome (NS) is a common genetic syndrome with a high variety in phenotype. Even though genetic testing is possible, NS is still a clinical diagnosis. Feeding problems are often present in infancy. We investigated the feeding status of 108 patients with clinically and genetically confirmed NS. Only patients with a documented feeding status before the age of 6 were included. A distinction was made between patients with early onset feeding problems (&lt; 1 year) and children with late onset feeding problems (&gt; 1 year). Seventy-one of 108 patients had feeding problems, of which 40 patients required tube feeding. Children with a genetic mutation other than PTPN11 and SOS1 had significantly more feeding problems in the first year. Fifty-two of all 108 patients experienced early onset feeding problems, of which 33 required tube feeding. A strong decrease in prevalence of feeding problems was found after the first year of life. Fifteen children developed feeding problems later in life, of which 7 required tube feeding.Conclusion: Feeding problems occur frequently in children with NS, especially in children with NS based on genetic mutations other than PTPN11 and SOS1. Feeding problems develop most often in infancy and decrease with age.What is Known:• Young children with Noonan syndrome may have transient feeding problems.• Most of them will need tube feeding.What is New:• This is the first study of feeding problems in patients with clinically and genetically proven Noonan syndrome.• Feeding problems most often develop in infancy and resolve between the age of 1 and 2."	"Down-regulated gene expression spectrum and immune responses changed during the disease progression in COVID-19 patients. WHO characterizes novel coronavirus disease (COVID-19) caused by severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) as a pandemic. Here, we investigated the clinical, cytokine levels, T cell proportion and related gene expression occurring in COVID-19 patients on admission and after intial treatment. 11 patients diagnosed as COVID-19 with similar initial treatment regimen were enrolled in the hospital. Plasma cytokines, CyTOF and microfluidic qPCR for gene expression were conducted. 5 mild and 6 severe patients were included. Cough and fever were the top symptoms in the 11 COVID-2019 cases. The elder age, more neutrophils numbers and higher C-reactive protein level were found in severe cases. IL-10 level was significantly varied with disease progression and treatment. The decreased T cell proportions were observed in COVID-19 patients especially in severe cases, and all elevated to normal in mild patiens after initial treatment but only CD4+T cells return to normal in severe cases. The number of DEGs increased with the disease progress, and decreased after initial treatment. All down-regulated DEGs in severe cases mainly involved in Th17 cell differentiation, cytokine-mediated signaling pathway and T cell activation. After initial treatmen in severe cases, MAP2K7 and SOS1 were upregulated relative to that on admission. Our findings show a decreased T cell proportion with down-regulated gene expression related to T cell activation and differentiation were occurred in COVID-19 severe patients, which may help to provide effective treatment strategies for COVID-19 ."	"Emerging crosstalk between two signaling pathways coordinates K+ and Na+ homeostasis in the halophyte Hordeum brevisubulatum. K+/Na+ homeostasis is the primary core response for plant to tolerate salinity. Halophytes have evolved novel regulatory mechanisms to maintain a suitable K+/Na+ ratio during long-term adaptation. The wild halophyte Hordeum brevisubulatum can adopt efficient strategies to achieve synergistic levels of K+ and Na+ under high salt stress. However, little is known about its molecular mechanism. Our previous study indicated that HbCIPK2 contributed to prevention of Na+ accumulation and K+ reduction. Here, we further identified the HbCIPK2-interacting proteins including upstream Ca2+ sensors, HbCBL1, HbCBL4, and HbCBL10, and downstream phosphorylated targets, the voltage-gated K+ channel HbVGKC1 and SOS1-like transporter HbSOS1L. HbCBL1 combined with HbCIPK2 could activate HbVGKC1 to absorb K+, while the HbCBL4/10-HbCIPK2 complex modulated HbSOS1L to exclude Na+. This discovery suggested that crosstalk between the sodium response and the potassium uptake signaling pathways indeed exists for HbCIPK2 as the signal hub, and paved the way for understanding the novel mechanism of K+/Na+ homeostasis which has evolved in the halophytic grass."	"Gene expression studies of Saccharum spontaneum, a wild relative of sugarcane in response to salinity stress. The study is aimed to assess the morphological, physiological, and molecular responses of seven Saccharum spontaneum clones for salinity stress. These clones (IND-07-1462, IND-07-1465, IND-07-1470, IND-07-1471, IND 16-1761, IND 16-1762, and IND 16-1763) were subjected to salinity stress at two different concentrations of electrical conductivity 6 and 8 ds/m after 60 days of planting. All seven genotypes showed a decrease in relative water content and nitrate reductase activity with an increase in severity of salt stress. The effect was more pronounced in IND-07-1471, while IND-16-1762 exhibited only a minimum drop. Similarly we observed an increase in proline content and lipid peroxidation activity for the genotype IND-07-1471, while IND-16-1762 showed minimum increase. Molecular profiling of genes/transcription factors like salt overly sensitive, responsive to abscissic acid, dirigent, myeloblastosis, ethylene responsive factor associated with salinity stress tolerance showed 19-, 18-, 17-, 10-, and 9-fold increased expression at 8 ds/m of salinity stress, respectively, in IND-16-1762 showed. Based on the evidences obtained from expression profiling, we have cloned the conserved regions of RAB and SOS1 genes. The domain of SOS and RAB was identified as a regulatory subunit of cAMP-dependent protein kinases which is involved in a signaling pathway."	"N-3-oxo-hexanoyl-homoserine lactone, a bacterial quorum sensing signal, enhances salt tolerance in Arabidopsis and wheat. N-acyl-homoserine lactones (AHLs) are the quorum sensing (QS) signal molecules to coordinate the collective behavior in a population in Gram-negative bacteria. Recent evidences demonstrate their roles in plant growth and defense responses. In present study, we show that the treatment of plant roots with N-3-oxo-hexanoyl-homoserine lactone (3OC6-HSL), one molecule of AHLs family, resulted in enhanced salt tolerance in Arabidopsis and wheat. We found that the growth inhibition phenotype including root length, shoot length and fresh weight were significantly improved by 3OC6-HSL under salt stress condition. The physiological and biochemical analysis revealed that the contents of chlorophyll and proline were increased and the contents of MDA and Na<sup>+</sup> and Na<sup>+</sup>/K<sup>+</sup> ratios were decreased after 3OC6-HSL treatment in Arabidopsis and wheat under salt stress condition. Molecular analysis showed that 3OC6-HSL significantly upregulated the expression of salt-responsive genes including ABA-dependent osmotic stress responsive genes COR15a, RD22, ADH and P5CS1, ABA-independent gene ERD1, and ion-homeostasis regulation genes SOS1, SOS2 and SOS3 in Arabidopsis under salt stress condition. These results indicated that 3OC6-HSL enhanced plant salt tolerance and ABA-dependent and ABA-independent signal pathways and SOS signaling might be involved in the induction of salt resistance by 3OC6-HSL in plants. Our data provide a new insight into the plant-microbe inter-communication."	"Salinity Stress-Mediated Suppression of Expression of Salt Overly Sensitive Signaling Pathway Genes Suggests Negative Regulation by AtbZIP62 Transcription Factor in Arabidopsisthaliana. Salt stress is one of the most serious threats in plants, reducing crop yield and production. The salt overly sensitive (SOS) pathway in plants is a salt-responsive pathway that acts as a janitor of the cell to sweep out Na<sup>+</sup> ions. Transcription factors (TFs) are key regulators of expression and/or repression of genes. The basic leucine zipper (bZIP) TF is a large family of TFs regulating various cellular processes in plants. In the current study, we investigated the role of the Arabidopsis thalianabZIP62 TF in the regulation of SOS signaling pathway by measuring the transcript accumulation of its key genes such as SOS1, 2, and 3, in both wild-type (WT) and atbzip62 knock-out (KO) mutants under salinity stress. We further observed the activation of enzymatic and non-enzymatic antioxidant systems in the wild-type, atbzip62, atcat2 (lacking catalase activity), and atnced3 (lacking 9-cis-epoxycarotenoid dioxygenase involved in the ABA pathway) KO mutants. Our findings revealed that atbzip62 plants exhibited an enhanced salt-sensitive phenotypic response similar to atnced3 and atcat2 compared to WT, 10 days after 150 mM NaCl treatment. Interestingly, the transcriptional levels of SOS1, SOS2, and SOS3 increased significantly over time in the atbzip62 upon NaCl application, while they were downregulated in the wild type. We also measured chlorophyll a and b, pheophytin a and b, total pheophytin, and total carotenoids. We observed that the atbzip62 exhibited an increase in chlorophyll and total carotenoid contents, as well as proline contents, while it exhibited a non-significant increase in catalase activity. Our results suggest that AtbZIP62 negatively regulates the transcriptional events of SOS pathway genes, AtbZIP18 and AtbZIP69 while modulating the antioxidant response to salt tolerance in Arabidopsis."	"[Clinical practice guidelines for Noonan syndrome]. Noonan syndrome is a common genetic disease characterized by peculiar face, short stature, congenital heart disease and thoracic deformity. The pathogenesis of Noonan syndrome is mainly related to abnormal Ras-MAPK signal pathway which involves more than 16 genes including (PTPN11, SOS1, RAF1)] and KRAS. At present, there is a lack of experience in the diagnosis and treatment of Noonan syndrome in China. This guideline has summarized the clinical manifestation, pathogenesis, diagnostic criteria and treatment for Noonan syndrome, with an aim to improve the diagnostic level and clinical management of patients with this syndrome."	"Calcium-Regulated Phosphorylation Systems Controlling Uptake and Balance of Plant Nutrients. Essential elements taken up from the soil and distributed throughout the whole plant play diverse roles in different tissues. Cations and anions contribute to maintenance of intracellular osmolarity and the formation of membrane potential, while nitrate, ammonium, and sulfate are incorporated into amino acids and other organic compounds. In contrast to these ion species, calcium concentrations are usually kept low in the cytosol and calcium displays unique behavior as a cytosolic signaling molecule. Various environmental stresses stimulate increases in the cytosolic calcium concentration, leading to activation of calcium-regulated protein kinases and downstream signaling pathways. In this review, we summarize the stress responsive regulation of nutrient uptake and balancing by two types of calcium-regulated phosphorylation systems: CPK and CBL-CIPK. CPK is a family of protein kinases activated by calcium. CBL is a group of calcium sensor proteins that interact with CIPK kinases, which phosphorylate their downstream targets. In Arabidopsis, quite a few ion transport systems are regulated by CPKs or CBL-CIPK complexes, including channels/transporters that mediate transport of potassium (KAT1, KAT2, GORK, AKT1, AKT2, HAK5, SPIK), sodium (SOS1), ammonium (AMT1;1, AMT1;2), nitrate and chloride (SLAC1, SLAH2, SLAH3, NRT1.1, NRT2.4, NRT2.5), and proton (AHA2, V-ATPase). CPKs and CBL-CIPKs also play a role in C/N nutrient response and in acquisition of magnesium and iron. This functional regulation by calcium-dependent phosphorylation systems ensures the growth of plants and enables them to acquire tolerance against various environmental stresses. Calcium serves as the key factor for the regulation of membrane transport systems."	"A novel SOS1-ALK fusion variant in a patient with metastatic lung adenocarcinoma and a remarkable response to crizotinib. Transforming anaplastic lymphoma kinase (ALK) gene rearrangements are well known as a unique subset of non-small cell lung cancer (NSCLC) with mutations other than EGFR. Currently, crizotinib is the standard first-line treatment for ALK-positive NSCLC. With advances in detection methods, more and more uncommon ALK fusion partners have been identified. Herein we present a novel SOS1-ALK fusion and the efficacy of crizotinib in an advanced NSCLC patient harboring this type of fusion. A 52-year-old Chinese man had left upper lobe primary NSCLC and synchronous multiple lung metastases (cT2N3M1, stage IV). The ultrasound-guided fine-needle aspiration cytology of palpable left supraclavicular lymph nodes and the results of immunohistochemistry staining supported the diagnosis of metastatic lung adenocarcinoma. Using a next-generation sequencing assay (NGS), we showed that the tumor had a SOS1-ALK fusion which the breakpoints was (S2, A20) rather than other actionable mutations. Therefore, the patient received first-line crizotinib and experienced a remarkable tumor response and has tolerated crizotinib well until this writing. Considering this rare SOS1-ALK fusion and remarkable response to an ALK-inhibitor, it is important to be aware of the presence of SOS1-ALK fusions in patients with advanced NSCLC to better guide targeted therapy. Precision methods, such as NGS for oncogenic alteration detection, should also be encouraged in clinical practice."	"Resistance to allosteric SHP2 inhibition in FGFR-driven cancers through rapid feedback activation of FGFR. SHP2 mediates RAS activation downstream of multiple receptor tyrosine kinases (RTKs) and cancer cell lines dependent on RTKs are in general dependent on SHP2. Profiling of the allosteric SHP2 inhibitor SHP099 across cancer cell lines harboring various RTK dependencies reveals that FGFR-dependent cells are often insensitive to SHP099 when compared to EGFR-dependent cells. We find that FGFR-driven cells depend on SHP2 but exhibit resistance to SHP2 inhibitors in vitro and in vivo. Treatment of such models with SHP2 inhibitors results in an initial decrease in phosphorylated ERK1/2 (p-ERK) levels, however p-ERK levels rapidly rebound within two hours. This p-ERK rebound is blocked by FGFR inhibitors or high doses of SHP2 inhibitors. Mechanistically, compared with EGFR-driven cells, FGFR-driven cells tend to express high levels of RTK negative regulators such as the SPRY family proteins, which are rapidly downregulated upon ERK inhibition. Moreover, over-expression of SPRY4 in FGFR-driven cells prevents MAPK pathway reactivation and sensitizes them to SHP2 inhibitors. We also identified two novel combination approaches to enhance the efficacy of SHP2 inhibitors, either with a distinct site 2 allosteric SHP2 inhibitor or with a RAS-SOS1 interaction inhibitor. Our findings suggest the rapid FGFR feedback activation following initial pathway inhibition by SHP2 inhibitors may promote the open conformation of SHP2 and lead to resistance to SHP2 inhibitors. These findings may assist to refine patient selection and predict resistance mechanisms in the clinical development of SHP2 inhibitors and to suggest strategies for discovering SHP2 inhibitors that are more effective against upstream feedback activation."	"Noonan syndrome with multiple Giant cell lesions, management and treatment with surgery and interferon alpha-2a therapy: Case report. We report the case of a 14-year-old girl that was referred to the maxillo facial surgery unit at age 11 years because she exhibited swelling in the right side of her maxilla and right mandible. After a conservative surgery, she started with interferon alpha-2a to avoid recurrence. She has remained in treatment with successful results during her follow up. Considerable reduction of both maxilla and mandible lesions and bone fill have been documented. In addition, her clinical history and phenotype were suggestive of Noonan syndrome. She has short stature, broad and short neck; hypertelorism (increased distance between the eyes); downslanting palpebral fissures; sparse eyebrows and eyelashes; posteriorly rotated ears with fleshy lobes; follicular keratosis over the face, and developmental delay. Her karyotype was 46, XX. Molecular analysis of RAS/MAPK pathway genes showed a SOS1 amino acid substitution of arginine to lysine at position 552 (p.R552K). This case presents the infrequent condition of Noonan syndrome with multiple giant cell lesions (NS/MGCL) that would be the first patient as far as we know treated with surgery and interferon alpha-2a for her giant cell lesions."	"EPS8L3 promotes hepatocellular carcinoma proliferation and metastasis by modulating EGFR dimerization and internalization. As a member of epidermal growth factor receptor (EGFR) kinase substrate 8 (EPS8) family, the role of EPS8 like 3 protein (EPS8L3) has not been well studied in malignancies. However, EPS8 has been reported to be associated with prognosis and functions in several kinds of cancers. Hence, whether EPS8L3 plays similar roles in the tumorigenesis of human cancers, especially in hepatocellular carcinoma (HCC), is still needed to be further explored. In this study, we revealed that EPS8L3 was overexpressed in HCC tissues compared with adjacent non-tumor tissues, and was associated with a poor clinical prognosis. Both in vitro and in vivo experiments showed that EPS8L3 could promote the proliferative ability by downregulating p21/p27 expression, and promote the migratory and invasive abilities by upregulating matrix metalloproteinase-2 expression. Furthermore, we demonstrated that EPS8L3 could affect the activation of the EGFR-ERK pathway by modulating EGFR dimerization and internalization, which may not depend on the formation of EPS8L3-SOS1-ABI1 complex. Taken together, our study showed that EPS8L3 plays a pivotal role in the tumorigenesis and progression of HCC, and it might be a potential therapeutic target for HCC."	"Ubiquitin-specific peptide 22 acts as an oncogene in gastric cancer in a son of sevenless 1-dependent manner. Aberrant expression of ubiquitin-specific peptide 22 (USP22) has been detected in various cancers. This study aimed to investigate the role of USP22 and the underlying mechanism in human gastric cancer. The expression pattern of USP22 in human gastric cancer was detected in a tissue microarray containing 88 pairs of gastric cancer tissue and adjacent normal tissue samples from patients with primary gastric cancer using immunohistochemical staining. The correlation of USP22 expression with clinical characteristics of patients, as well as their prognostic values in the overall survival of patients, were evaluated. USP22-overexpressing SGC7901 and USP22-silencing AGS cells were used to explore the role of USP22 in gastric cancer cell behavior in vitro and in vivo. Chromatin immunoprecipitation was performed to identify differentially expressed genes induced by USP22 overexpression. Western blot analysis was conducted to detect the activation of RAS/ERK and PI3K/AKT signaling in USP22-overexpressing SGC7901 cells and xenograft tumor tissues. Knockdown of RAS activator son of sevenless 1 (SOS1) was performed to investigate the role of SOS1 in USP22-regulated gastric cancer cell behavior and RAS signaling both in vitro and in vivo. USP22 protein expression was significantly increased in human gastric cancer tissues, compared with adjacent normal tissues, and was positively correlated with local tumor stage. Gain- and loss-of-function assays showed that USP22 promoted gastric cancer cell growth and cell cycle transition while suppressing apoptosis in vitro. Consistent results were observed in a xenograft mouse model. Chromatin immunoprecipitation revealed that the overexpression of USP22 induced the upregulation of RAS activator son of sevenless 1 (SOS1) in SGC7901 cells. Western blot analysis showed that USP22 overexpression also induced activation of the RAS/ERK and PI3K/AKT pathways in SGC7901 cells and xenograft tumor tissues. Furthermore, SOS1 silencing could reverse the effects of USP22 on gastric cancer cell behavior and RAS signaling both in vitro and in vivo. Our results suggest that USP22 acts as an oncogene in gastric cancer in a SOS1-dependent manner, identifying the USP22/SOS1/RAS axis as a potential therapeutic target in gastric cancer."	"The sweet sorghum SbWRKY50 is negatively involved in salt response by regulating ion homeostasis. The WRKY transcription factor family is involved in responding to biotic and abiotic stresses. Its members contain a typical WRKY domain and can regulate plant physiological responses by binding to W-boxes in the promoter regions of downstream target genes. We identified the sweet sorghum SbWRKY50 (Sb09g005700) gene, which encodes a typical class II of the WRKY family protein that localizes to the nucleus and has transcriptional activation activity. The expression of SbWRKY50 in sweet sorghum was reduced by salt stress, and its ectopic expression reduced the salt tolerance of Arabidopsis thaliana plants. Compared with the wild type, the germination rate, root length, biomass and potassium ion content of SbWRKY50 over-expression plants decreased significantly under salt-stress conditions, while the hydrogen peroxide, superoxide anion and sodium ion contents increased. Real-time PCR results showed that the expression levels of AtSOS1, AtHKT1 and genes related to osmotic and oxidative stresses in over-expression strains decreased under salt-stress conditions. Luciferase complementation imaging and yeast one-hybrid assays confirmed that SbWRKY50 could directly bind to the upstream promoter of the SOS1 gene in A. thaliana. However, in sweet sorghum, SbWRKY50 could directly bind to the upstream promoters of SOS1 and HKT1. These results suggest that the new WRKY transcription factor SbWRKY50 participates in plant salt response by controlling ion homeostasis. However, the regulatory mechanisms are different in sweet sorghum and Arabidopsis, which may explain their different salt tolerance levels. The data provide information that can be applied to genetically modifying salt tolerance in different crop varieties."	"Differential expression of genes associated with T lymphocytes function in septic patients with hypoxemia challenge. This study aimed to assess gene expression alterations related to T lymphocytes function and explore their potential association with hypoxemia among septic patients. This is a retrospective cohort clinical study with laboratory investigations. We studied patients enrolled in sepsis biological specimen bank from Department of Critical Care Medicine, Zhongda Hospital, fulfilling consensus criteria for sepsis without any documented immune comorbidity admitted in ICU within 48 h after onset with whole blood samples drawn within 24 h of admission. Whole genome expression by microarray assay (Human LncRNA Microarray V4.0) was compared in hypoxemia cohort versus without. Differentially expressed (DE) genes with &gt;1 log2[fold change (FC)] and false discovery rate (FDR) &lt;0.20 that enriched in T cell related biological process entered the adjusted analysis to identify the candidate genes. The correlation analysis within candidate genes or with clinical parameters were performed. We assessed candidate expression ex vivo in co-culture system with RAW246.7 cells and validated genes identified in prior studies of sepsis-ARDS/hypoxemia within our present study. Septic patients (n=9) with hypoxemic phenotype held higher illness severity, serum lactate and creatine, and incidence of lymphopenia compared with non-hypoxemic group (n=6). Several gene signatures related to apoptosis, inhibitory receptors, T cell immunoreceptor, transcriptions factors, toll-like receptors and cytokine and effector molecules were upregulated in hypoxemic group. Candidate genes were identified after adjustment for age, sex and presence of lymphopenia with significantly negative correlations with partial pressure of O2 in an arterial blood (PaO2) and fraction of inspiration O2 (FiO2) ratio, among which NLRP3, SOS1, ELF1 and STAT3 held an increasing expression in ex vivo validation while the others, PSMA5, CLEC4D, CD300A, PRKD2 and PSMA2 showed the opposite alteration from those in vivo. Higher illness severity and incidence of lymphopenia was observed following hypoxemia in sepsis and T cell-related gene signatures were associated with hypoxemia during sepsis."	"Genetic Examination for Fetuses with Increased Fetal Nuchal Translucency by Genomic Technology. This study aims to investigate the value of chromosomal microarray analysis (CMA) and whole exome sequencing (WES) in fetuses with increased nuchal translucency (defined as NT above the 95th centile for the crown-rump length). A total of 374 singleton pregnancies with gestational ages ranging from 11 to 13 + 6 weeks were investigated. Ultrasound displayed increased NT and no detectable structural malformations in these fetuses. Pregnancies were divided into 4 groups according to the NT values: 95th centile-3.4 mm (114 cases); 3.5-4.4 mm (150 cases); 4.5-5.4 mm (55 cases); and ≥5.5 mm (55 cases). The possible chromosomal anomalies were all analyzed by CMA first. Furthermore, 24 cases with increased NT but negative CMA results were investigated by WES, and the outcomes were followed up. Among all the 374 cases, causative genetic defects were detected in 100/374 (26.7%) of the cases along with 9 variants of unknown significance (VOUS) by CMA. CMA testing yielded 30 pathogenic variants (30/55), accounting for a detection rate of 54.5%, and 1 VOUS in the group of NT ≥5.5 mm, indicating the highest detection rate in the 4 groups. The 24 cases of the CMA negative sub-cohort with WES analysis further yielded 2 VOUS and 3 likely pathogenic variants, including 2 dominant de novo mutations in SOS1 and ECE1 and 1 recessive inherited compound heterozygous mutation in PIGN, which are associated with cardiac defects. All 3 cases opted for termination of pregnancy (TOP). In addition, 2 cases with increased NT were negative by both CMA and WES analysis, and fetal demise occurred. In conclusion, for the investigation of fetuses with increased NT exome sequencing is suggested to be considered in cases with negative CMA findings. However, appropriate genetic counseling should be given to optimizing its utilization in prenatal diagnosis."	"Cardiofaciocutaneous Syndrome Phenotype in a Case with de novo KRAS Pathogenic Variant. Cardiofaciocutaneous (CFC) syndrome is one of the developmental disorders caused by a dysregulation of the Ras/mitogen-activated protein kinase (MAPK) pathway. RASopathies share overlapping clinical features, making the diagnosis challenging, especially in the newborn period. The majority of CFC syndrome cases arise by a mutation in the BRAF, MAP2K1, MAP2K2, or (rarely) KRAS genes. Germline KRAS mutations are identified in a minority of CFC and Noonan syndrome cases. Here, we describe a patient with a KRAS mutation presenting with a CFC syndrome phenotype. The female patient was referred for genetic testing because of congenital exophthalmos. Her facial appearance is distinctive with a coarse face, exophthalmos, ptosis, downslanting palpebral fissures, hypertelorism, deep philtrum, downturned corners of the mouth, and a short neck. She suffered from feeding difficulties, poor weight gain, and developmental delay. The sequencing of the genes involved in the MAPK pathway (PTPN11, SOS1, RAF1, KRAS, NRAS, MAP2K1, SHOC2, CBL, and SPRED1) identified a heterozygous de novo NM_004985.4:c.173C&gt;T (p.Thr58Ile) in the KRAS gene. Germline KRAS mutations have been identified in approximately 2% of the reported NS cases and less than 5% of the reported CFC syndrome cases. Because CFC and Noonan syndrome share clinical overlapping features, the phenotype caused by KRAS mutations is often difficult to assign to one of the 2 entities. The mutation that we detected in our patient was previously reported in a patient with an Noonan syndrome phenotype. However, our patient predominantly exhibits CFC clinical features. In our case, coarse facial appearance and severe developmental delay help discriminate CFC from Noonan syndrome. Thus, patient follow-up, especially for delayed motor milestones suspected from RASopathies, is important for the discrimination of overlapping conditions as in the abovementioned syndromes."	"Plant-Growth Promoting Bacillus oryzicola YC7007 Modulates Stress-Response Gene Expression and Provides Protection From Salt Stress. High salt stress caused by ionic and osmotic stressors eventually results in the suppression of plant growth and a reduction in crop productivity. In our previous reports, we isolated the endophytic bacterium Bacillus oryzicola YC7007 from the rhizosphere of rice (Oryza sativa L.), which promoted plant growth and development and suppressed bacterial disease in rice by inducing systemic resistance and antibiotic production. In this study, Arabidopsis thaliana seedlings under salt stress that were bacterized with YC7007 displayed an increase in the number of lateral roots and greater fresh weight relative to that of the control seedlings. The chlorophyll content of the bacterized seedlings was increased when compared with that of untreated seedlings. The accumulation of salt-induced malondialdehyde and Na<sup>+</sup> in seedlings was inhibited by their co-cultivation with YC7007. The expression of stress-related genes in the shoots and roots of seedlings was induced by YC7007 inoculation under salt stress conditions. Interestingly, YC7007-mediated salt tolerance requires SOS1, a plasma membrane-localized Na<sup>+</sup>/H<sup>+</sup> antiporter, given that plant growth in sos2-1 and sos3-1 mutants was promoted under salt-stress conditions, whereas that of sos1-1 mutants was not. In addition, inoculation with YC7007 in upland-crops, such as radish and cabbage, increased the number of lateral roots and the fresh weight of seedlings under salt-stress conditions. Our results suggest that B. oryzicola YC7007 enhanced plant tolerance to salt stress via the SOS1-dependent salt signaling pathway, resulting in the normal growth of salt-stressed plants."	"Mapping proteome-wide targets of protein kinases in plant stress responses. Protein kinases are major regulatory components in almost all cellular processes in eukaryotic cells. By adding phosphate groups, protein kinases regulate the activity, localization, protein-protein interactions, and other features of their target proteins. It is known that protein kinases are central components in plant responses to environmental stresses such as drought, high salinity, cold, and pathogen attack. However, only a few targets of these protein kinases have been identified. Moreover, how these protein kinases regulate downstream biological processes and mediate stress responses is still largely unknown. In this study, we introduce a strategy based on isotope-labeled in vitro phosphorylation reactions using in vivo phosphorylated peptides as substrate pools and apply this strategy to identify putative substrates of nine protein kinases that function in plant abiotic and biotic stress responses. As a result, we identified more than 5,000 putative target sites of osmotic stress-activated SnRK2.4 and SnRK2.6, abscisic acid-activated protein kinases SnRK2.6 and casein kinase 1-like 2 (CKL2), elicitor-activated protein kinase CDPK11 and MPK6, cold-activated protein kinase MPK6, H2O2-activated protein kinase OXI1 and MPK6, and salt-induced protein kinase SOS1 and MPK6, as well as the low-potassium-activated protein kinase CIPK23. These results provide comprehensive information on the role of these protein kinases in the control of cellular activities and could be a valuable resource for further studies on the mechanisms underlying plant responses to environmental stresses."	"High-Affinity Interactions of the nSH3/cSH3 Domains of Grb2 with the C-Terminal Proline-Rich Domain of SOS1. Grb2 is an adaptor protein that recruits Ras-specific guanine nucleotide exchange factor, Son of Sevenless 1 (SOS1), to the plasma membrane. SOS1 exchanges GDP by GTP, activating Ras. Grb2 consists of an SH2 domain flanked by N- and C-terminal SH3 domains (nSH3/cSH3). Grb2 nSH3/cSH3 domains have strong binding affinity for the SOS1 proline-rich (PR) domain that mediates the Grb2-SOS1 interaction. The nSH3/cSH3 domains have distinct preferred binding motifs: PxxPxR for nSH3 and PxxxRxxKP for cSH3 (x represents any natural amino acid). Several nSH3-binding motifs have been identified in the SOS1 PR domain but none specific for cSH3 binding. Even though both nSH3 and cSH3 exhibit the strongest binding to the SOS1 peptide PVPPPVPPRRRP, this mutually exclusive binding combined with other potential nSH3/cSH3 binding regions in SOS1 makes understanding the Grb2-SOS1 interaction challenging. To identify the SOS1-cSH3 binding sites, we selected seven potential binding segments in SOS1. The synthesized peptides were tested for their binding to nSH3/cSH3. Our NMR data reveal that the PKLPPKTYKREH peptide has strong binding affinity for cSH3, but very weak for nSH3. The binding specificity suggests that the most likely Grb2-SOS1 binding mode is through nSH3-PVPPPVPPRRRP and cSH3-PKLPPKTYKREH interactions, which is supported by replica-exchange simulations for the Grb2-SOS1 complex models. We propose that nSH3/cSH3 binding peptides, which effectively interrupt Grb2-SOS1 association, can serve as tumor suppressors. The Grb2-SOS1 mechanism outlined here offers new venues for future therapeutic strategies for upstream mutations in cancer, such as in EGFR."	"Natural variation of an EF-hand Ca<sup>2+</sup>-binding-protein coding gene confers saline-alkaline tolerance in maize. Sodium (Na<sup>+</sup>) toxicity is one of the major damages imposed on crops by saline-alkaline stress. Here we show that natural maize inbred lines display substantial variations in shoot Na<sup>+</sup> contents and saline-alkaline (NaHCO3) tolerance, and reveal that ZmNSA1 (Na<sup>+</sup> Content under Saline-Alkaline Condition) confers shoot Na<sup>+</sup> variations under NaHCO3 condition by a genome-wide association study. Lacking of ZmNSA1 promotes shoot Na<sup>+</sup> homeostasis by increasing root Na<sup>+</sup> efflux. A naturally occurred 4-bp deletion decreases the translation efficiency of ZmNSA1 mRNA, thus promotes Na<sup>+</sup> homeostasis. We further show that, under saline-alkaline condition, Ca<sup>2+</sup> binds to the EF-hand domain of ZmNSA1 then triggers its degradation via 26S proteasome, which in turn increases the transcripts levels of PM-H<sup>+</sup>-ATPases (MHA2 and MHA4), and consequently enhances SOS1 Na<sup>+</sup>/H<sup>+</sup> antiporter-mediated root Na<sup>+</sup> efflux. Our studies reveal the mechanism of Ca<sup>2+</sup>-triggered saline-alkaline tolerance and provide an important gene target for breeding saline-alkaline tolerant maize varieties."	"A network analysis revealed the essential and common downstream proteins related to inguinal hernia. Although more than 1 in 4 men develop symptomatic inguinal hernia during their lifetime, the molecular mechanism behind inguinal hernia remains unknown. Here, we explored the protein-protein interaction network built on known inguinal hernia-causative genes to identify essential and common downstream proteins for inguinal hernia formation. We discovered that PIK3R1, PTPN11, TGFBR1, CDC42, SOS1, and KRAS were the most essential inguinal hernia-causative proteins and UBC, GRB2, CTNNB1, HSP90AA1, CBL, PLCG1, and CRK were listed as the most commonly-involved downstream proteins. In addition, the transmembrane receptor protein tyrosine kinase signaling pathway was the most frequently found inguinal hernia-related pathway. Our in silico approach was able to uncover a novel molecular mechanism underlying inguinal hernia formation by identifying inguinal hernia-related essential proteins and potential common downstream proteins of inguinal hernia-causative proteins."	"The plasma-membrane polyamine transporter PUT3 is regulated by the Na<sup>+</sup> /H<sup>+</sup> antiporter SOS1 and protein kinase SOS2. In Arabidopsis, the plasma membrane transporter PUT3 is important to maintain the cellular homeostasis of polyamines and plays a role in stabilizing mRNAs of some heat-inducible genes. The plasma membrane Na<sup>+</sup> /H<sup>+</sup> transporter SOS1 and the protein kinase SOS2 are two salt-tolerance determinants crucial for maintaining intracellular Na<sup>+</sup> and K<sup>+</sup> homeostasis. Here, we report that PUT3 genetically and physically interacts with SOS1 and SOS2, and these interactions modulate PUT3 transport activity. Overexpression of PUT3 (PUT3OE) results in hypersensitivity of the transgenic plants to polyamine and paraquat. The hypersensitivity of PUT3OE is inhibited by the sos1 and sos2 mutations, which indicates that SOS1 and SOS2 are required for PUT3 transport activity. A protein interaction assay revealed that PUT3 physically interacts with SOS1 and SOS2 in yeast and plant cells. SOS2 phosphorylates PUT3 both in vitro and in vivo. SOS1 and SOS2 synergistically activate the polyamine transport activity of PUT3, and PUT3 also modulates SOS1 activity by activating SOS2 in yeast cells. Overall, our findings suggest that both plasma-membrane proteins PUT3 and SOS1 could form a complex with the protein kinase SOS2 in response to stress conditions and modulate the transport activity of each other through protein interactions and phosphorylation."	"Molecular Dynamics model of peptide-protein conjugation: case study of covalent complex between Sos1 peptide and N-terminal SH3 domain from Grb2. We have investigated covalent conjugation of VPPPVPPRRRX' peptide (where X' denotes N<sup>ε</sup>-chloroacetyl lysine) to N-terminal SH3 domain from adapter protein Grb2. Our experimental results confirmed that the peptide first binds to the SH3 domain noncovalently before establishing a covalent linkage through reaction of X' with the target cysteine residue C32. We have also confirmed that this reaction involves a thiolate-anion form of C32 and follows the SN2 mechanism. For this system, we have developed a new MD-based protocol to model the formation of covalent conjugate. The simulation starts with the known coordinates of the noncovalent complex. When two reactive groups come into contact during the course of the simulation, the reaction is initiated. The reaction is modeled via gradual interpolation between the two sets of force field parameters that are representative of the noncovalent and covalent complexes. The simulation proceeds smoothly, with no appreciable perturbations to temperature, pressure or volume, and results in a high-quality MD model of the covalent complex. The validity of this model is confirmed using the experimental chemical shift data. The new MD-based approach offers a valuable tool to explore the mechanics of protein-peptide conjugation and build accurate models of covalent complexes."	"Transcriptome Changes Induced by Different Potassium Levels in Banana Roots. Potassium plays an important role in enhancing plant resistance to biological and abiotic stresses and improving fruit quality. To study the effect of potassium nutrient levels on banana root growth and its regulation mechanism, four potassium concentrations were designed to treat banana roots from no potassium to high potassium. The results indicated that K2 (3 mmol/L K2SO4) treatment was a relatively normal potassium concentration for the growth of banana root, and too high or too low potassium concentration was not conducive to the growth of banana root. By comparing the transcriptome data in each treatment in pairs, 4454 differentially expressed genes were obtained. There were obvious differences in gene function enrichment in root systems treated with different concentrations of potassium. Six significant expression profiles (profile 0, 1, 2, 7, 9 and 13) were identified by STEM analysis. The hub genes were FKF1, HsP70-1, NRT1/PTR5, CRY1, and ZIP11 in the profile 0; CYP51 in profile 1; SOS1 in profile 7; THA, LKR/SDH, MCC, C4H, CHI, F3'H, 2 PR1s, BSP, TLP, ICS, RO, chitinase and peroxidase in profile 9. Our results provide a comprehensive and systematic analysis of the gene regulation network in banana roots under different potassium stress."	"The protein kinase complex CBL10-CIPK8-SOS1 functions in Arabidopsis to regulate salt tolerance. Salt tolerance in plants is mediated by Na+ extrusion from the cytosol by the plasma membrane Na+/H+ antiporter SOS1. This is activated in Arabidopsis root by the protein kinase complex SOS2-SOS3 and in Arabidopsis shoot by the protein kinase complex CBL10-SOS2, with SOS2 as a key node in the two pathways. The sos1 mutant is more sensitive than the sos2 mutant, suggesting that other partners may positively regulate SOS1 activity. Arabidopsis has 26 CIPK family proteins of which CIPK8 is the closest homolog to SOS2. It is hypothesized that CIPK8 can activate Na+ extrusion by SOS1 similarly to SOS2. The plasma membrane Na+/H+ exchange activity of transgenic yeast co-expressing CBL10, CIPK8, and SOS1 was higher than that of untransformed and SOS1 transgenic yeast, resulting in a lower Na+ accumulation and a better growth phenotype under salinity. However, CIPK8 could not interact with SOS3, and the co-expression of SOS3, CIPK8, and SOS1 in yeast did not confer a significant salt tolerance phenotype relative to SOS1 transgenic yeast. Interestingly, cipk8 displayed a slower Na+ efflux, a higher Na+ level, and a more sensitive phenotype than wild-type Arabidopsis, but grew better than sos2 under salinity stress. As expected, sos2cipk8 exhibited a more severe salt damage phenotype relative to cipk8 or sos2. Overexpression of CIPK8 in both cipk8 and sos2cipk8 attenuated the salt sensitivity phenotype. These results suggest that CIPK8-mediated activation of SOS1 is CBL10-dependent and SOS3-independent, indicating that CIPK8 and SOS2 activity in shoots is sufficient for regulating Arabidopsis salt tolerance."	"A high-grade glioma with SOS1 amplification. The molecular alterations underlying progression of low-grade glial/glioneuronal tumors remain to be elucidated. We present a case of a 56-year-old male with an enhancing left temporal lobe tumor. Histology revealed a high-grade glioma adjacent to a low-grade glioneuronal component with abundant Rosenthal fibers, focal eosinophilic granular bodies, and CD34-positive neurons. The tumor was negative for IDH1 (R132H), BRAF-V600E, and the KIAA1549-BRAF fusion. Comparative genomic hybridization detected a large amplification (&gt; 15 copies) of the Son of Sevenless 1 (SOS1) gene, a component of the MAPK pathway. Although activating mutations in the MAPK pathway occur frequently in gliomas and glioneuronal tumors, SOS1 gene amplification has not been reported previously. This case indicates another potential mechanism for MAPK activation in glial tumors."	"Elucidation of protein interactions necessary for the maintenance of the BCR-ABL signaling complex. Many patients with chronic myeloid leukemia in deep remission experience return of clinical disease after withdrawal of tyrosine kinase inhibitors (TKIs). This suggests signaling of inactive BCR-ABL, which allows the survival of cancer cells, and relapse. We show that TKI treatment inhibits catalytic activity of BCR-ABL, but does not dissolve BCR-ABL core signaling complex, consisting of CRKL, SHC1, GRB2, SOS1, cCBL, p85a-PI3K, STS1 and SHIP2. Peptide microarray and co-immunoprecipitation results demonstrate that CRKL binds to proline-rich regions located in C-terminal, intrinsically disordered region of BCR-ABL, that SHC1 requires pleckstrin homology, src homology and tyrosine kinase domains of BCR-ABL for binding, and that BCR-ABL sequence motif located in disordered region around phosphorylated tyrosine 177 mediates binding of three core complex members, i.e., GRB2, SOS1, and cCBL. Further, SHIP2 binds to the src homology and tyrosine kinase domains of BCR-ABL and its inositol phosphatase activity contributes to BCR-ABL-mediated phosphorylation of SHC1. Together, this study characterizes protein-protein interactions within the BCR-ABL core complex and determines the contribution of particular BCR-ABL domains to downstream signaling. Understanding the structure and dynamics of BCR-ABL interactome is critical for the development of drugs targeting integrity of the BCR-ABL core complex."	"miR-152-3p Sensitizes Glioblastoma Cells Towards Cisplatin Via Regulation Of SOS1. Accumulating evidences suggest that microRNAs (miRNAs) play key roles in mediating glioblastoma progression. Decreased expression of miR-152-3p was reported in several cancer types including glioblastoma. The sensitivity of glioblastoma cells to cisplatin was assessed by the cell counting kit-8 assay and flow cytometry analysis. The expression of miR-152-3p was determined by RT-qPCR method. Bioinformatic analysis, dual luciferase reporter assay and Western blot were used to explore the target gene of miR-152-3p. The association between miR-152-3p and SOS1 was confirmed in glioblastoma tissues by Pearson correlation analysis. In the current study, we discovered that overexpression of miR-152-3p increased cisplatin sensitivity while inhibition of miR-152-3p decreased cisplatin sensitivity in glioblastoma cells (T98G and U87). In addition, miR-152-3p augmented cell apoptosis induced by cisplatin treatment. It was further predicted and validated that SOS1, a protein involved in regulating chemotherapy sensitivity, was a direct target gene of miR-152-3p. SOS1 was proven to suppress the cytotoxic effect of cisplatin in glioblastoma. Transfection of recombinant SOS1 could effectively reverse the increased cisplatin sensitivity induced by miR-152-3p overexpression in T98G. Furthermore, overexpression of SOS1 reduced the percentage of apoptotic cells increased by miR-152-3p mimic in the presence of cisplatin in T98G. More importantly, a significant negative correlation between miR-152-3p levels and SOS1 levels was observed in glioblastoma tissues collected from 40 patients. Our study identified miR-152-3p as a chemotherapy sensitizer in glioblastoma."	"Overexpression of CmSOS1 confers waterlogging tolerance in Chrysanthemum. The Na<sup>+</sup> /H<sup>+</sup> antiporter SOS1 enhances the salinity tolerance of a number of plant species, but its involvement in the response to hypoxia is less well known. We presented chrysanthemum homologs CmSOS1 and CmRCD1 coordinately mediate waterlogging tolerance by maintaining membrane integrity and minimizing the level of reactive oxygen species."	"The RAS-PI3K-AKT-NF-κB pathway transcriptionally regulates the expression of BCL2 family and IAP family genes and inhibits apoptosis in fibrous epulis. Epulis has a tumor-like appearance but is considered to be a massive reactive lesion rather than a true neoplasia. Limited information about the pathogenesis of epulis is available. The purpose of our study was to identify potential signaling pathways in fibrous epulis through transcriptome profiling. Differentially expressed genes (DEGs) between fibrous epulis lesions and normal gingival tissues were detected using RNA sequencing (RNAseq). The expression levels of eighteen genes were validated using quantitative real-time PCR (qRT-PCR). RNAseq identified 533 upregulated genes and 732 downregulated genes. The top 10 upregulated genes were IL11, OSM, MMP3, KRT75, MMP1, IL6, IL1B, IL24, SP7, and ADGRG3. The top 10 downregulated genes were BCHE, TYR, DCT, KRT222, RP11-507K12.1, COL6A5, PMP2, GFRA1, SCN7A, and CDH19. KEGG pathway analysis further indicated that the DEGs were enriched in &quot;Pathways in cancer&quot; and the &quot;Ras signaling pathway&quot;. quantitative real-time PCR verified that the expression levels of SOS1, HRAS, PIK3CA, AKT3, IKBKA, IKBKB, NFKB1, BCL2, BCL2L1, XIAP, BIRC2, and BIRC3 were increased significantly. The current transcriptomic profiling study reveals that in fibrous epulis, RAS-PI3K-AKT-NF-κB pathway transcriptionally regulates the expression of BCL2 family and IAP family genes, leading to increased proliferation and apoptosis inhibition."	"Isolation and identification of salt-tolerant plant-growth-promoting rhizobacteria and their application for rice cultivation under salt stress. Growth and productivity of rice are negatively affected by soil salinity. However, some salt-tolerant rhizosphere-inhabiting bacteria can improve salt resistance of plants, thereby augmenting plant growth and production. Here, we isolated a total of 53 plant-growth-promoting rhizobacteria (PGPR) from saline and non-saline areas in Bangladesh where electrical conductivity was measured as &gt;7.45 and &lt;1.80 dS/m, respectively. Bacteria isolated from saline areas were able to grow in a salt concentration of up to 2.60 mol/L, contrary to the isolates collected from non-saline areas that did not survive beyond 854 mmol/L. Among the salt-tolerant isolates, Bacillus aryabhattai, Achromobacter denitrificans, and Ochrobactrum intermedium, identified by comparing respective sequences of 16S rRNA using the NCBI GenBank, exhibited a higher amount of atmospheric nitrogen fixation, phosphate solubilization, and indoleacetic acid production at 200 mmol/L salt stress. Salt-tolerant isolates exhibited greater resistance to heavy metals and antibiotics, which could be due to the production of an exopolysaccharide layer outside the cell surface. Oryza sativa L. fertilized with B. aryabhattai MS3 and grown under 200 mmol/L salt stress was found to be favoured by enhanced expression of a set of at least four salt-responsive plant genes: BZ8, SOS1, GIG, and NHX1. Fertilization of rice with osmoprotectant-producing PGPR, therefore, could be a climate-change-preparedness strategy for coastal agriculture."	"Identification of Gene Mutations in Primary Pediatric Cardiomyopathy by Whole Exome Sequencing. Pediatric primary cardiomyopathy is rare but serious, having high mortality; hypertrophic and dilated types are the most common. Its etiology has been mainly considered idiopathic; however, next generation sequencing techniques have revealed nearly half of idiopathic pediatric cases arose from specific genetic mutations. Therefore, our study aimed to identify the genetic causes of primary idiopathic cardiomyopathy. Newborns to 15-year old patients with this condition were recruited between March 2016 and May 2017 at Thammasat University Hospital. Complete patient history and physical examination data were collected by a geneticist with cardiac examinations and echocardiograms by pediatric cardiologists. Whole exome sequencing was performed for all. Of the 12 patients enrolled, 5 cases were dilated type and 7 hypertrophic. Two with dilated type were excluded during follow-up as cause was determined (hypocalcemia and pacemaker induced). A list of 118 genes for cardiomyopathy was analyzed in the remaining 10 cases. Pathogenic and likely pathogenic mutations were identified in 5 patients: HRAS, PTPN11, SOS1, FLNC and TXNRD2; half our patients were not actually idiopathic. Despite its high cost, genetic testing is useful for determining familial risk as well as predicting patient cardiomyopathy progress."	"Genome-wide identification and gene expression analysis of SOS family genes in tuber mustard (Brassica juncea var. tumida). The Salt Overly Sensitive (SOS) pathway in Arabidopsis thaliana plays important roles in maintaining appropriate ion homeostasis in the cytoplasm and regulating plant tolerance to salinity. However, little is known about the details regarding SOS family genes in the tuber mustard crop (Brassica juncea var. tumida). Here, 12 BjSOS family genes were identified in the B. juncea var. tumida genome including two homologous genes of SOS1, one and three homologs of SOS2 and SOS3, two homologs of SOS4, two homologs of SOS5 and two homologs of SOS6, respectively. The results of conserved motif analysis showed that these SOS homologs contained similar protein structures. By analyzing the cis-elements in the promoters of those BjSOS genes, several hormone- and stress-related cis-elements were found. The results of gene expression analysis showed that the homologous genes were induced by abiotic stress and pathogen. These findings indicate that BjSOS genes play crucial roles in the plant response to biotic and abiotic stresses. This study provides valuable information for further investigations of BjSOS genes in tuber mustard."	"Selective apoptosis-inducing activity of synthetic hydrocarbon-stapled SOS1 helix with d-amino acids in H358 cancer cells expressing KRAS<sup>G12C</sup>. Lung cancer is one of the most malignant tumors with the highest morbidity and mortality. Most of them are non-small cell lung cancer (NSCLC). KRAS<sup>G12C</sup> gene mutation is an important driving factor for NSCLC. However, the development of high-affinity inhibitors targeting KRAS<sup>G12C</sup> mutants remains a daunting challenge. Here, we report the design and development of a series of hydrocarbon-stapled peptides containing d-amino acids to mimic the alpha helix of SOS1. D-hydrocarbon-stapled peptides maintain good alpha helix structure and bind to KRAS<sup>G12C</sup> with high affinity. Subsequent anti-proliferation experiments indicated that D-hydrocarbon-stapled peptide 5 inhibited the proliferation of NSCLC H358 cells carrying KRAS<sup>G12C</sup>. However, it showed no significant anti-proliferative effect on KRAS<sup>G12S</sup>-positive A549 cells, suggesting that peptide 5 selectively inhibits KRAS<sup>G12C</sup>-driven tumor cells. D-hydrocarbon-stapled peptide 5 could also cause the cell cycle of H358 cells to arrest in the G2/M phase and induce apoptosis. No significant cell arrest and apoptosis were observed in A549 cells treated by peptide 5. In summary, the introduction of d-amino acids could improve the affinity and cell selectivity of hydrocarbon peptides. We hope that peptides containing D-form amino acids can provide strategies for further optimization of the KRAS<sup>G12C</sup>/SOS1 inhibitor."	"A Glycine max sodium/hydrogen exchanger enhances salt tolerance through maintaining higher Na<sup>+</sup> efflux rate and K<sup>+</sup>/Na<sup>+</sup> ratio in Arabidopsis. Soybean (Glycine max (L.)) is one the most important oil-yielding cash crops. However, the soybean production has been seriously restricted by salinization. It is therefore crucial to identify salt tolerance-related genes and reveal molecular mechanisms underlying salt tolerance in soybean crops. A better understanding of how plants resist salt stress provides insights in improving existing soybean varieties as well as cultivating novel salt tolerant varieties. In this study, the biological function of GmNHX1, a NHX-like gene, and the molecular basis underlying GmNHX1-mediated salt stress resistance have been revealed. We found that the transcription level of GmNHX1 was up-regulated under salt stress condition in soybean, reaching its peak at 24 h after salt treatment. By employing the virus-induced gene silencing technique (VIGS), we also found that soybean plants became more susceptible to salt stress after silencing GmNHX1 than wild-type and more silenced plants wilted than wild-type under salt treatment. Furthermore, Arabidopsis thaliana expressing GmNHX1 grew taller and generated more rosette leaves under salt stress condition compared to wild-type. Exogenous expression of GmNHX1 resulted in an increase of Na<sup>+</sup> transportation to leaves along with a reduction of Na<sup>+</sup> absorption in roots, and the consequent maintenance of a high K<sup>+</sup>/Na<sup>+</sup> ratio under salt stress condition. GmNHX1-GFP-transformed onion bulb endothelium cells showed fluorescent pattern in which GFP fluorescence signals enriched in vacuolar membranes. Using the non-invasive micro-test technique (NMT), we found that the Na<sup>+</sup> efflux rate of both wild-type and transformed plants after salt treatment were significantly higher than that of before salt treatment. Additionally, the Na<sup>+</sup> efflux rate of transformed plants after salt treatment were significantly higher than that of wild-type. Meanwhile, the transcription levels of three osmotic stress-related genes, SKOR, SOS1 and AKT1 were all up-regulated in GmNHX1-expressing plants under salt stress condition. Vacuolar membrane-localized GmNHX1 enhances plant salt tolerance through maintaining a high K<sup>+</sup>/Na<sup>+</sup> ratio along with inducing the expression of SKOR, SOS1 and AKT1. Our findings provide molecular insights on the roles of GmNHX1 and similar sodium/hydrogen exchangers in regulating salt tolerance."	"Expression and detergent free purification and reconstitution of the plant plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter SOS1 overexpressed in Pichia pastoris. The plant plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter SOS1 (Salt Overlay Sensitive 1) of Arabidopsis thaliana is the major transporter extruding Na<sup>+</sup> out of cells in exchange for an intracellular H<sup>+</sup>. The sodium extrusion process maintains a low intracellular Na<sup>+</sup> concentration and thereby facilitates salt tolerance. A. thaliana SOS1 consists of 1146 amino acids, with the first 450 in a N-terminal membrane transport domain and the balance forming a cytosolic regulatory domain. For studies on characterization of the protein, two different constructs of SOS1 comprising of the residues 28 to 460 and 28 to 990 were cloned and overexpressed in methylotropic yeast strain of Pichia pastoris with a C-terminal histidine tag using the expression vector pPICZA. Styrene malic acid copolymers (SMA) were used as a cost-effective alternative to detergent for solubilization and isolation of this membrane protein. Immobilized Ni<sup>2+</sup>-ion affinity chromatography was used to purify the expressed protein resulting in a yield of ~0.6-2 mg of SOS1 per liter of Pichia pastoris culture. The SMA purified protein containing amino acids 28 to 990 was directly reconstituted into liposomes for determination of Na<sup>+</sup> transport activity and was functionally active. However, similar reconstitution with amino acids 28-460 did not yield a functional protein. Other results have shown that the truncated SOS1 protein at amino acid 481 is active, which infers the presence of an element between residues 461-481 which is necessary for SOS1 activity. This region contains several conserved segments that may be important in SOS1 structure and function."	"Copy Number Variation in Tumor Cells and Extracellular DNA in Patients with Lung Adenocarcinoma. Copy number variation of some gene loci in lung tumor cells extracted by laser capture microdissection and in cell-free DNA in the plasma of patients with lung cancer was analyzed for identification of potential molecular markers. Tissue specimens fixed in formalin and embedded in paraffin blocks (FFPE-blocks) from 90 patients and extracellular DNA from plasma samples of 70 patients and 30 donors were used. Copy number variation was assayed for 30 genes (BAX, BCL2, C-FLAR, P53, MDM2, CASP9, CASP3, CASP8, SOX2, OCT4, PIK3, MKI67, HV2, HIF1A1, XRCC1, MMP1, TERT, CTNNB1, KRAS, EGFR, GRB2, SOS1, MAPK1, STAT1, BRAF, FTO, and mir3678) and reference loci (ACTB, B2M, and GAPDH) by the real-time quantitative PCR. Changed copy numbers were detected for genes responsible for apoptosis regulation (BAX, P53, and CASP3), proliferation (SOX2), DNA reparation (XRCC1), oxidative phosphorylation (HV2), EGFR signaling pathway (GRB2, SOS1, MAPK1, STAT1, and BRAF), and for mir3678 gene in lung tumor cells and extracellular DNA."	"PKCε-dependent H-Ras activation encompasses the recruitment of the RasGEF SOS1 and of the RasGAP neurofibromin in the lipid rafts of embryonic neurons. The spatial organization of plasma membrane proteins is a key factor in the generation of distinct signal outputs, especially for PKC/Ras/ERK signalling. Regulation of activation of the membrane-bound Ras, critical for neuronal differentiation and highly specialized functions, is controlled by exchanges in nucleotides catalyzed by nucleotide exchange factors (GEFs) for GTP loading and Ras activation, and by Ras GTPase Activated Proteins (RasGAPs) that lead to activation of the intrinsic GTPase activity of Ras and thus its inactivation. PKCs are potent Ras activators yet the mechanistic details of these interactions, or the involvement of specific PKC isoforms are now beginning to be addressed. Even less known is the topology where RasGAPs terminate Ras activation. Towards this aim, we isolated lipid rafts from chick embryo neural tissue and primary neuronal cultures when PKCε is the prominent isoform and in combination with in vitro kinase assays, we now show that, in response the PKCε-specific activating peptide ψεRACK, an activated PKCε is recruited to lipid rafts; similar mobility was established when PKCε was physiologically activated with the Cannabinoid receptor 1 (CB1) agonist methanandamide. Activation of H-Ras for both agents was then established for the first time using in vivo RasGAP activity assays, which showed similar temporal profiles of activation and lateral mobility. Moreover, we found that the GEF SOS1, and the major neuronal RasGAP neurofibromin, a specific PKCε substrate, were both transiently significantly enriched in the rafts. Finally, our in silico analysis revealed a highly probable, conserved palmitoylation site adjacent to a CARC motif on neurofibromin, both of which are included only in the RasGAP related domain type I (GRDI) with the known high H-RasGAP activity. Taken together, these results suggest that PKCε activation regulates the spatial plasma membrane enrichments of both SOS1 and neurofibromin, thus controlling the output of activated H-Ras available for downstream signalling in neurons."	"A Comprehensive Biophysical Model of Ion and Water Transport in Plant Roots. II. Clarifying the Roles of SOS1 in the Salt-Stress Response in Arabidopsis. SOS1 transporters play an essential role in plant salt tolerance. Although SOS1 is known to encode a plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter, the transport mechanisms by which these transporters contribute to salt tolerance at the level of the whole root are unclear. Gene expression and flux measurements have provided conflicting evidence for the location of SOS1 transporter activity, making it difficult to determine their function. Whether SOS1 transporters load or unload Na<sup>+</sup> from the root xylem transpiration stream is also disputed. To address these areas of contention, we applied a mathematical model to answer the question: what is the function of SOS1 transporters in salt-stressed Arabidopsis roots? We used our biophysical model of ion and water transport in a salt-stressed root to simulate a wide range of SOS1 transporter locations in a model Arabidopsis root, providing a level of detail that cannot currently be achieved by experimentation. We compared our simulations with available experimental data to find reasonable parameters for the model and to determine likely locations of SOS1 transporter activity. We found that SOS1 transporters are likely to be operating in at least one tissue of the outer mature root, in the mature stele, and in the epidermis of the root apex. SOS1 transporter activity in the mature outer root cells is essential to maintain low cytosolic Na<sup>+</sup> levels in the root and also restricts the uptake of Na<sup>+</sup> to the shoot. SOS1 transporters in the stele actively load Na<sup>+</sup> into the xylem transpiration stream, enhancing the transport of Na<sup>+</sup> and water to the shoot. SOS1 transporters acting in the apex restrict cytosolic Na<sup>+</sup> concentrations in the apex but are unable to maintain low cytosolic Na<sup>+</sup> levels in the mature root. Our findings suggest that targeted, tissue-specific overexpression or knockout of SOS1 may lead to greater salt tolerance than has been achieved with constitutive gene changes. Tissue-specific changes to the expression of SOS1 could be used to identify the appropriate balance between limiting Na<sup>+</sup> uptake to the shoot while maintaining water uptake, potentially leading to enhancements in salt tolerance."	"Clinical and molecular characterization of children with Noonan syndrome and other RASopathies in Argentina. RASopathies are a set of syndromes with phenotypic overlapping features caused by gene mutations involved in the RAS/MAPK pathway. They are autosomal dominantly inherited and share common clinical characteristics, including short stature, craniofacial dysmorphisms, congenital heart disease, ectodermal manifestations, and a higher risk for cancer. A molecular diagnosis is a key factor. To identify PTPN11, SOS1, RAF1, BRAF, and HRAS mutations and compare the main clinical characteristics of patients with molecular confirmation. Population and methods. Children with a clinical diagnosis of RASopathy assessed between August 2013 and February 2017. Mutations were identified in 71 % (87/122) of patients. The molecular test confirmed diagnosis in 73 % of patients with Noonan syndrome. The most prevalent mutation was c.922A&gt;G (p.Asn308Asp) in the PTPN11 gene. A previously undescribed variant in RAF1 was detected: c.1467G&gt;C (p.Leu489Phe). Cardiofaciocutaneous syndrome was confirmed in 67 % of cases with BRAF mutations. Costello syndrome and Noonan syndrome with multiple lentigines were confirmed in all cases. The confirmation of clinical diagnosis allowed for a more accurate differential diagnosis. The prevalence of PTPN11 (58 %), SOS1 (10 %), and RAF1 mutations (5 %) in children with Noonan syndrome, of PTPN11 mutations (100 %) in those with Noonan syndrome with multiple lentigines, of BRAF mutations (67 %) in those with cardiofaciocutaneous syndrome, and of HRAS mutations (100 %) in those with Costello syndrome was determined. Introducción. Las RASopatías son un conjunto de síndromes fenotípicamente superpuestos causados por mutaciones en genes implicados en la vía RAS/MAPK. La herencia es autosómica dominante, presentan características clínicas comunes, como baja talla, dismorfias craneofaciales, cardiopatía congénita, manifestaciones ectodérmicas y mayor riesgo de cáncer. El diagnóstico molecular es clave. Objetivo. Identificar mutaciones en los genes PTPN11, SOS1, RAF1, BRAF y HRAS, y comparar las principales características clínicas en pacientes con confirmación molecular. Población y métodos. Se estudiaron niños con diagnóstico clínico de RASopatía evaluados entre agosto de 2013 y febrero de 2017. Resultados. Se identificaron mutaciones en el 71 % (87/122) de los pacientes. El estudio molecular confirmó el diagnóstico en el 73 % de los pacientes con síndrome de Noonan. La mutación más prevalente fue c.922A&gt;G (p.Asn308Asp) en el gen PTPN11. Se detectó una variante no descrita en RAF1, c.1467G&gt;C (p.Leu489Phe). Se confirmó el síndrome cardiofaciocutáneo en el 67 % de los casos con mutaciones en el gen BRAF. El síndrome de Costello y el síndrome de Noonan con múltiples lentigos se confirmaron en todos los casos. Conclusión. La confirmación del diagnóstico clínico permitió un diagnóstico diferencial más preciso. Se determinó la prevalencia de las mutaciones en PTPN11 (el 58 %), SOS1 (el 10 %) y RAF1 (el 5 %) en niños con síndrome de Noonan, en PTPN11 (el 100 %) en el síndrome de Noonan con múltiples lentigos, en BRAF (el 67 %) en el síndrome cardiofaciocutáneo y en HRAS (el 100 %) en el síndrome de Costello."	"Physiological and Transcriptomic Analysis Reveals Distorted Ion Homeostasis and Responses in the Freshwater Plant Spirodela polyrhiza L. under Salt Stress. Duckweeds are a family of freshwater angiosperms with morphology reduced to fronds and propagation by vegetative budding. Unlike other angiosperm plants such as Arabidopsis and rice that have physical barriers between their photosynthetic organs and soils, the photosynthetic organs of duckweeds face directly to their nutrient suppliers (waters), therefore, their responses to salinity may be distinct. In this research, we found that the duckweed Spirodela polyrhiza L. accumulated high content of sodium and reduced potassium and calcium contents in large amounts under salt stress. Fresh weight, Rubisco and AGPase activities, and starch content were significantly decreaseded in the first day but recovered gradually in the following days and accumulated more starch than control from Day 3 to Day 5 when treated with 100 mM and 150 mM NaCl. A total of 2156 differentially expressed genes were identified. Overall, the genes related to ethylene metabolism, major CHO degradation, lipid degradation, N-metabolism, secondary metabolism of flavonoids, and abiotic stress were significantly increased, while those involved in cell cycle and organization, cell wall, mitochondrial electron transport of ATP synthesis, light reaction of photosynthesis, auxin metabolism, and tetrapyrrole synthesis were greatly inhibited. Moreover, salt stress also significantly influenced the expression of transcription factors that are mainly involved in abiotic stress and cell differentiation. However, most of the osmosensing calcium antiporters (OSCA) and the potassium inward channels were downregulated, Na<sup>+</sup>/H<sup>+</sup> antiporters (SOS1 and NHX) and a Na<sup>+</sup>/Ca<sup>2+</sup> exchanger were slightly upregulated, but most of them did not respond significantly to salt stress. These results indicated that the ion homeostasis was strongly disturbed. Finally, the shared and distinct regulatory networks of salt stress responses between duckweeds and other plants were intensively discussed. Taken together, these findings provide novel insights into the underlying mechanisms of salt stress response in duckweeds, and can be served as a useful foundation for salt tolerance improvement of duckweeds for the application in salinity conditions."	"LZTR1: Genotype Expansion in Noonan Syndrome. LZTR1 participates in RAS protein degradation, hence limiting the RAS/MAPK cascade. Pathogenic mutations in LZTR1 (MIM:600574) have been described in a few patients with Noonan syndrome (NS). Three patients with LZTR1 mutations of different genetic transmission and NS phenotype are herein characterized. Case 1 is a 5-year-old boy with NS phenotype. Sanger sequencing of PTPN11 and SOS1 identified no mutations. Whole exome sequencing (WES) detected a heterozygous missense mutation in LZTR1:c.742G&gt;A (p.Gly248Arg) (exon 8, Kelch 4 functional domain). Bioinformatic algorithms predict a deleterious effect of this variant, previously described to cause NS. Case 2 is a 4-year-old boy with NS phenotype. Direct sequencing of 8 genes associated with NS identified no mutations. WES localized a homozygous missense mutation in LZTR1:c.2074T&gt;C (p.Phe692Leu, exon 18). This mutation has not been reported before and is predicted to have a deleterious effect on the protein. Case 3 is an 8-year-old boy who shares NS phenotype with his mother. A multigene panel for RASopathies showed a heterozygous missense variant in LZTR1:c.730T&gt;C (p.Ser244Pro) (exon 8; Kelch 4 functional domain) that was maternally inherited. This variant has not been previously described; however, in silico predictors classify it as deleterious. Familial segregation suggests its pathogenicity. The molecular approach for syndromic phenotypes associated with various genes should involve complete/updated panels or WES rather than gene-by-gene sequencing. RASopathy genetic panels should incorporate LZTR1. Patients with pathogenic mutations in LZTR1 exhibit a characteristic NS gestalt but variable cardiac, height, and neurodevelopment expressions, with recessive inheritance possibly associating with a more severe phenotype."	"Inhibitory short peptides targeting EPS8/ABI1/SOS1 tri-complex suppress invasion and metastasis of ovarian cancer cells. We aimed to develop inhibitory short peptides that can prevent protein interactions of SOS1/EPS8/ABI1 tri-complex, a key component essential for ovarian cancer metastasis. Plasmids containing various regions of HA-tagged ABI1 were co-transfected into ovarian cancer cells with Flag-tagged SOS1 or Myc-tagged EPS8. Co-immunoprecipitation and GST-pulldown assay were used to identify the regions of ABI1 responsible for SOS1 and EPS8 binding. Inhibitory short peptides of these binding regions were synthesized and modified with HIV-TAT sequence. The blocking effects of the peptides on ABI1-SOS1 or ABI1-EPS8 interactions in vitro and in vivo were determined by GST-pulldown assay. The capability of these short peptides in inhibiting invasion and metastasis of ovarian cancer cell was tested by Matrigel invasion assay and peritoneal metastatic colonization assay. The formation of endogenous SOS1/EPS8/ABI1 tri-complex was detected in the event of LPA-induced ovarian cancer cell invasion. In the tri-complex, ABI1 acted as a scaffold protein holding together SOS1 and EPS8. The SH3 and poly-proline+PxxDY regions of ABI1 were responsible for SOS1 and EPS8 binding, respectively. Inhibitory short peptides p + p-8 (ppppppppvdyedee) and SH3-3 (ekvvaiydytkdkddelsfmegaii) could block ABI1-SOS1 and ABI1-EPS8 interaction in vitro. TAT-p + p-8 peptide could disrupt ABI1-EPS8 interaction and suppress the invasion and metastasis of ovarian cancer cells in vivo. TAT-p + p-8 peptide could efficiently disrupt the ABI1-EPS8 interaction, tri-complex formation, and block the invasion and metastasis of ovarian cancer cells."	"Phosphatidic acid promotes the activation and plasma membrane localization of MKK7 and MKK9 in response to salt stress. Phosphatidic acid (PA) is a lipid secondary messenger involved in intracellular signaling in eukaryotes. It has been confirmed that PA mediates salt stress signaling by promoting activation of Mitogen-activated Protein Kinase 6 (MPK6) which phosphorylates Na<sup>+</sup>/H<sup>+</sup> antiporter SOS1. However, the MPK6-upstream kinases and their relationship to PA remain unclear. Here, we found that, among the six tested Arabidopsis Mitogen-activated Protein Kinase Kinases (MKKs), PA specifically bound to MKK7 and MKK9 which phosphorylate MPK6, and promoted the activation of MKK7/MKK9. Based on phenotypic and physiological analyses, we found that MKK7 and MKK9 positively regulate Arabidopsis salt tolerance and are functionally redundant. NaCl treatment can induce significant increase in MKK7/MKK9 activities, and this depends, in part, on the Phospholipase Dα1 (PLDα1). MKK7 and MKK9 also mediate the NaCl-induced activation of MPK6. Furthermore, PA or NaCl treatment could induce translocation of MKK7/MKK9 to the plasma membrane, whereas this translocation disappeared in pldα1. These results indicate that PA binds to MKK7 and MKK9, increases their kinase activity and plasma membrane localization during Arabidopsis response to salt stress. Together with the PA-MPK6-SOS1 pathway identified previously, this mechanism may maximize the signal transduction efficiency, providing novel insights into the link between lipid signaling and MAPK cascade."	"GABA operates upstream of H+-ATPase and improves salinity tolerance in Arabidopsis by enabling cytosolic K+ retention and Na+ exclusion. The non-protein amino acid γ-aminobutyric acid (GABA) rapidly accumulates in plant tissues in response to salinity. However, the physiological rationale for this elevation remains elusive. This study compared electrophysiological and whole-plant responses of salt-treated Arabidopsis mutants pop2-5 and gad1,2, which have different abilities to accumulate GABA. The pop2-5 mutant, which was able to overaccumulate GABA in its roots, showed a salt-tolerant phenotype. On the contrary, the gad1,2 mutant, lacking the ability to convert glutamate to GABA, showed oversensitivity to salinity. The greater salinity tolerance of the pop2-5 line was explained by: (i) the role of GABA in stress-induced activation of H+-ATPase, thus leading to better membrane potential maintenance and reduced stress-induced K+ leak from roots; (ii) reduced rates of net Na+ uptake; (iii) higher expression of SOS1 and NHX1 genes in the leaves, which contributed to reducing Na+ concentration in the cytoplasm by excluding Na+ to apoplast and sequestering Na+ in the vacuoles; (iv) a lower rate of H2O2 production and reduced reactive oxygen species-inducible K+ efflux from root epidermis; and (v) better K+ retention in the shoot associated with the lower expression level of GORK channels in plant leaves."	"Ionic selectivity and coordinated transport of Na<sup>+</sup> and K<sup>+</sup> in flag leaves render differential salt tolerance in rice at the reproductive stage. The present study shows that salt tolerance in the reproductive stage of rice is primarily governed by the selective Na<sup>+</sup> and K<sup>+</sup> transport from the root to upper plant parts. Ionic discrimination at the flag leaf, governed by differential expression of Na<sup>+</sup>- and K<sup>+</sup>-specific transporters/ion pumps, is associated with reduced spikelet sterility and reproductive stage salt tolerance. Reproductive stage salt tolerance is crucial in rice to guarantee yield under saline condition. In the present study, differential ionic selectivity and the coordinated transport (from root to flag leaf) of Na<sup>+</sup> and K<sup>+</sup> were investigated to assess their impact on reproductive stage salt tolerance. Four rice genotypes having differential salt sensitivity were subjected to reproductive stage salinity stress in pots. The selective Na<sup>+</sup> and K<sup>+</sup> transport from the root to upper plant parts was observed in tolerant genotypes. We noticed that prolonged salt exposure did not alter flag leaf greenness even up to 6 weeks; however, it had a detrimental effect on panicle development especially in the salt-susceptible genotype Sabita. But more precise chlorophyll fluorescence imaging analysis revealed salinity-induced damages in Sabita. The salt-tolerant genotype Pokkali (AC41585), a potential Na<sup>+</sup> excluder, managed to sequester higher Na<sup>+</sup> load in the roots with little upward transport as evident from greater expression of HKT1 and HKT2 transporters. In contrast, the moderately salt-tolerant Lunidhan was less selective in Na<sup>+</sup> transport, but possessed a higher capacity to Na<sup>+</sup> sequestration in leaves. Higher K<sup>+</sup> uptake and tissue-specific redistribution mediated by HAK and AKT transporters showed robust control in selective K<sup>+</sup> movement from the root to flag leaf and developing panicles. On the contrary, expressions of Na<sup>+</sup>-specific transporters in developing panicles were either down-regulated or unaffected in tolerant and moderately tolerant genotypes. Yet, in the panicles of the susceptible genotype Sabita, some of the Na<sup>+</sup>-specific transporter genes (SOS1, HKT1;5, HKT2;4) were upregulated. Apart from the ionic regulation strategy, cellular energy balance mediated by different plasma-membrane and tonoplastic H<sup>+</sup>-pumps were also associated with the reproductive stage salt tolerance in rice."	"SOS1 mutations in Noonan syndrome: Cardiomyopathies and not only congenital heart defects! Report of six patients including two novel variants and literature review. Noonan syndrome (NS) is caused by mutations in more than 10 genes, mainly PTPN11, SOS1, RAF1, and RIT1. Congenital heart defects and cardiomyopathy (CMP) are associated with significant morbidity and mortality in NS. Although hypertrophic CMP has &quot;classically&quot; been reported in association to RAF1, RIT1, and PTPN11 variants, SOS1 appears to be poorly related to CMP. Patients with NS attending our Center from January 2013 to June 2018 were eligible for inclusion if they carried SOS1 variants and presented with-or developed-CMP. Literature review describing the co-existence of SOS1 mutation and CMP was also performed. We identified six patients with SOS1 variants and CMP (male to female ratio 2:1) including two novel variants. CMP spectrum encompassed: (a) dilated CMP, (b) nonobstructive hypertrophic CMPs, and (c) obstructive hypertrophic CMPs. Survival is 100%. Literature review included 16 SOS1 mutated in CMP. CMP, mainly hypertrophic, has been often reported in association to RAF1, RIT1, and PTPN11 variants. Differently from previous reports, due to the frequent association of SOS1 variants and CMP in our single center experience, we suggest potential underestimated proportion of SOS1 in pediatric CMPs."	"Structural basis of the atypical activation mechanism of KRAS<sup>V14I</sup>. RAS regulation and signaling are largely accomplished by direct protein-protein interactions, making RAS protein dynamics a critical determinant of RAS function. Here, we report a crystal structure of GDP-bound KRAS<sup>V14I</sup>, a mutated KRAS variant associated with the developmental RASopathy disorder Noonan syndrome (NS), at 1.5-1.6 Å resolution. The structure is notable for revealing a marked extension of switch 1 away from the G-domain and nucleotide-binding site of the KRAS protein. We found that this extension is associated with a loss of the magnesium ion and a tilt in the position of the guanine base because of the additional carbon introduced by the isoleucine substitution. Hydrogen-deuterium exchange MS analysis confirmed that this conformation occurs in solution, but also disclosed a difference in kinetics when compared with KRAS<sup>A146T</sup>, another RAS mutant that displays a nearly identical conformation in previously reported crystal structures. This conformational change contributed to a high rate of guanine nucleotide-exchange factor (GEF)-dependent and -independent nucleotide exchange and to an increase in affinity for SOS Ras/Rac GEF 1 (SOS1), which appears to be the major mode of activation for this RAS variant. These results highlight a mechanistic connection between KRAS<sup>A146T</sup> and KRAS<sup>V14I</sup> that may have implications for the regulation of these variants and for the development of therapeutic strategies to manage KRAS variant-associated disorders."	"Alternative ZAP70-p38 signals prime a classical p38 pathway through LAT and SOS to support regulatory T cell differentiation. T cell receptor (TCR) stimulation activates diverse kinase pathways, which include the mitogen-activated protein kinases (MAPKs) ERK and p38, the phosphoinositide 3-kinases (PI3Ks), and the kinase mTOR. Although TCR stimulation activates the p38 pathway through a &quot;classical&quot; MAPK cascade that is mediated by the adaptor protein LAT, it also stimulates an &quot;alternative&quot; pathway in which p38 is activated by the kinase ZAP70. Here, we used dual-parameter, phosphoflow cytometry and in silico computation to investigate how both classical and alternative p38 pathways contribute to T cell activation. We found that basal ZAP70 activation in resting T cell lines reduced the threshold (&quot;primed&quot;) TCR-stimulated activation of the classical p38 pathway. Classical p38 signals were reduced after T cell-specific deletion of the guanine nucleotide exchange factors Sos1 and Sos2, which are essential LAT signalosome components. As a consequence of Sos1/2 deficiency, production of the cytokine IL-2 was impaired, differentiation into regulatory T cells was reduced, and the autoimmune disease EAE was exacerbated in mice. These data suggest that the classical and alternative p38 activation pathways exist to generate immune balance."	"Antifibrotic Potential of MiR-335-3p in Hereditary Gingival Fibromatosis. Hereditary gingival fibromatosis (HGF) is a highly genetically heterogeneous disease, and current therapeutic method is limited to surgical resection with a high recurrence rate. MicroRNAs (miRNAs) are able to fine-tune large-scale target genes. Here we established a simple but effective computational strategy based on available miRNA target prediction algorithms to pinpoint the most potent miRNA that could negatively regulate a group of functional genes. Based on this rationale, miR-335-3p was top ranked by putatively targeting 85 verified profibrotic genes and 79 upregulated genes in HGF patients. Experimentally, downregulation of miR-355-3p was demonstrated in HGF-derived gingival fibroblasts as well as in transforming growth factor β-stimulated normal human gingival fibroblasts (NHGFs) compared to normal control. Ectopic miR-335-3p attenuated, whereas knockdown of miR-335-3p promoted, the fibrogenic activity of human gingival fibroblasts. Mechanically, miR-335-3p directly targeted SOS1, SMAD2/3, and CTNNB1 by canonical and noncanonical base paring. In particular, different portfolios of fibrotic markers were suppressed by silencing SOS1, SMAD2/3, or CTNNB1, respectively. Thus, our study first proposes a novel miRNA screening approach targeting a functionally related gene set and identifies miR-335-3p as a novel target for HGF treatment. Mechanically, miR-335-3p suppresses the fibrogenic activity of human gingival fibroblasts by repressing multiple core molecules in profibrotic networks. Our strategy provides a new paradigm in the treatment for HGF as well as other diseases."	"Nilotinib interferes with cell cycle, ABC transporters and JAK-STAT signaling pathway in CD34+/lin- cells of patients with chronic phase chronic myeloid leukemia after 12 months of treatment. Chronic myeloid leukemia (CML) is characterized by the constitutive tyrosine kinase activity of the oncoprotein BCR-ABL1 in myeloid progenitor cells that activates multiple signal transduction pathways leading to the leukemic phenotype. The tyrosine-kinase inhibitor (TKI) nilotinib inhibits the tyrosine kinase activity of BCR-ABL1 in CML patients. Despite the success of nilotinib treatment in patients with chronic-phase (CP) CML, a population of Philadelphia-positive (Ph+) quiescent stem cells escapes the drug activity and can lead to drug resistance. The molecular mechanism by which these quiescent cells remain insensitive is poorly understood. The aim of this study was to compare the gene expression profiling (GEP) of bone marrow (BM) CD34+/lin- cells from CP-CML patients at diagnosis and after 12 months of nilotinib treatment by microarray, in order to identify gene expression changes and the dysregulation of pathways due to nilotinib action. We selected BM CD34+/lin- cells from 78 CP-CML patients at diagnosis and after 12 months of first-line nilotinib therapy and microarray analysis was performed. GEP bioinformatic analyses identified 2,959 differently expressed probes and functional clustering determined some significantly enriched pathways between diagnosis and 12 months of nilotinib treatment. Among these pathways, we observed the under expression of 26 genes encoding proteins belonging to the cell cycle after 12 months of nilotinib treatment which led to the up-regulation of chromosome replication, cell proliferation, DNA replication, and DNA damage checkpoint at diagnosis. We demonstrated the under expression of the ATP-binding cassette (ABC) transporters ABCC4, ABCC5, and ABCD3 encoding proteins which pumped drugs out of the cells after 12 months of nilotinib. Moreover, GEP data demonstrated the deregulation of genes involved in the JAK-STAT signaling pathway. The down-regulation of JAK2, IL7, STAM, PIK3CA, PTPN11, RAF1, and SOS1 key genes after 12 months of nilotinib could demonstrate the up-regulation of cell cycle, proliferation and differentiation via MAPK and PI3K-AKT signaling pathways at diagnosis."	"Genotype-phenotype correlation analysis in Japanese patients with Noonan syndrome. Noonan syndrome (NS) is a heterogeneous disorder with multiple congenital malformations. Recent advances in molecular and genetic approaches have identified a number of responsible genes for NS, most of which are components of the RAS/MAPK signaling pathway, and genotype-phenotype correlation analyses have been extensively performed; however, analysis of Japanese NS patients is limited. Here, we evaluated clinical characteristics in genetically diagnosed NS patients and their relationships to genotypes. A total of 48 clinically diagnosed NS were included, and responsible mutations were identified in 39 patients (81.3%) with PTPN11 mutations being the most prevalent followed by SOS1 mutations. Cardiac anomalies including pulmonary stenosis and hypertrophic cardiomyopathy were most prevalent (87.2%), and the prevalence of hypertrophic cardiomyopathy was greater in patients without PTPN11 mutations than in those with PTPN11 mutations. Short stature was the second-most prevalent (69.2%) characteristic, and present height SD score was significantly associated with height SD score at 1 year old. Patients with SOS1 mutations had greater present height SD score and better growth during infancy. These findings suggest the presence of a genotype-phenotype correlation in Japanese patients with NS, which enables us to use genetic information to predict the clinical course and may allow for genotype-based medical interventions."	"Molecular mechanisms linking peri-implantitis and type 2 diabetes mellitus revealed by transcriptomic analysis. To explore molecular mechanisms that link peri-implantitis and type 2 diabetes mellitus (T2DM) by bioinformatic analysis of publicly available experimental transcriptomic data. Gene expression data from peri-implantitis were downloaded from the Gene Expression Omnibus database, integrated and differentially expressed genes (DEGs) in peri-implantitis were identified. Next, experimentally validated and computationally predicted genes related to T2DM were downloaded from the DisGeNET database. Protein-protein interaction network (PPI) pairs of DEGs related to peri-implantitis and T2DM related genes were constructed, &quot;hub&quot; genes and overlapping DEG were determined. Functional enrichment analysis was used to identify significant shared biological processes and signaling pathways. The PPI networks were subjected to cluster and specific class analysis for identifying &quot;leader&quot; genes. Module network analysis of the merged PPI network identified common or cross-talk genes connecting the two networks. A total of 92 DEGs overlapped between peri-implantitis and T2DM datasets. Three hub genes (IL-6, NFKB1, and PIK3CG) had the highest degree in PPI networks of both peri-implantitis and T2DM. Three leader genes (PSMD10, SOS1, WASF3), eight cross-talk genes (PSMD10, PSMD6, EIF2S1, GSTP1, DNAJC3, SEC61A1, MAPT, and NME1), and one signaling pathway (IL-17 signaling) emerged as peri-implantitis and T2DM linkage mechanisms. Exploration of available transcriptomic datasets revealed IL-6, NFKB1, and PIK3CG expression along with the IL-17 signaling pathway as top candidate molecular linkage mechanisms between peri-implantitis and T2DM."	"A composition-dependent molecular clutch between T cell signaling condensates and actin. During T cell activation, biomolecular condensates form at the immunological synapse (IS) through multivalency-driven phase separation of LAT, Grb2, Sos1, SLP-76, Nck, and WASP. These condensates move radially at the IS, traversing successive radially-oriented and concentric actin networks. To understand this movement, we biochemically reconstituted LAT condensates with actomyosin filaments. We found that basic regions of Nck and N-WASP/WASP promote association and co-movement of LAT condensates with actin, indicating conversion of weak individual affinities to high collective affinity upon phase separation. Condensates lacking these components were propelled differently, without strong actin adhesion. In cells, LAT condensates lost Nck as radial actin transitioned to the concentric network, and engineered condensates constitutively binding actin moved aberrantly. Our data show that Nck and WASP form a clutch between LAT condensates and actin in vitro and suggest that compositional changes may enable condensate movement by distinct actin networks in different regions of the IS."	"Neurodevelopmental Aspects of RASopathies. RAS gene mutations are frequently found in one third of human cancers. Affecting approximately 1 in 1,000 newborns, germline and somatic gain-of-function mutations in the components of RAS/mitogen-activated protein kinase (RAS/MAPK) pathway has been shown to cause developmental disorders, known as RASopathies. Since RAS-MAPK pathway plays essential roles in proliferation, differentiation and migration involving developmental processes, individuals with RASopathies show abnormalities in various organ systems including central nervous system. The frequently seen neurological defects are developmental delay, macrocephaly, seizures, neurocognitive deficits, and structural malformations. Some of the defects stemmed from dysregulation of molecular and cellular processes affecting early neurodevelopmental processes. In this review, we will discuss the implications of RAS-MAPK pathway components in neurodevelopmental processes and pathogenesis of RASopathies."	"Molecular and phenotypic spectrum of Noonan syndrome in Chinese patients. Noonan syndrome (NS) is a common autosomal dominant/recessive disorder. No large-scale study has been conducted on NS in China, which is the most populous country in the world. Next-generation sequencing (NGS) was used to identify pathogenic variants in patients that exhibited NS-related phenotypes. We assessed the facial features and clinical manifestations of patients with pathogenic or likely pathogenic variants in the RAS-MAPK signaling pathway. Gene-related Chinese NS facial features were described using artificial intelligence (AI).NGS identified pathogenic variants in 103 Chinese patients in eight NS-related genes: PTPN11 (48.5%), SOS1 (12.6%), SHOC2 (11.7%), KRAS (9.71%), RAF1 (7.77%), RIT1 (6.8%), CBL (0.97%), NRAS (0.97%), and LZTR1 (0.97%). Gene-related facial representations showed that each gene was associated with different facial details. Eight novel pathogenic variants were detected and clinical features because of specific genetic variants were reported, including hearing loss, cancer risk due to a PTPN11 pathogenic variant, and ubiquitous abnormal intracranial structure due to SHOC2 pathogenic variants. NGS facilitates the diagnosis of NS, especially for patients with mild/moderate and atypical symptoms. Our study describes the genotypic and phenotypic spectra of NS in China, providing new insights into distinctive clinical features due to specific pathogenic variants."	"H2S Alleviates Salinity Stress in Cucumber by Maintaining the Na<sup>+</sup>/K<sup>+</sup> Balance and Regulating H2S Metabolism and Oxidative Stress Response. Salinity stress from soil or irrigation water can significantly limit the growth and development of plants. Emerging evidence suggests that hydrogen sulfide (H2S), as a versatile signal molecule, can ameliorate salt stress-induced adverse effects. However, the possible physiological mechanism underlying H2S-alleviated salt stress in cucumber remains unclear. Here, a pot experiment was conducted with an aim to examine the possible mechanism of H2S in enhancement of cucumber salt stress tolerance. The results showed that H2S ameliorated salt-induced growth inhibition and alleviated the reduction in photosynthetic attributes, chlorophyll fluorescence and stomatal parameters. Meanwhile H2S increased the endogenous H2S level concomitant with increased activities of D/L-cysteine desulfhydrase and β-cyanoalanine synthase and decreased activities of O-acetyl-L-serine(thiol)lyase under excess NaCl. Notably, H2S maintained Na<sup>+</sup> and K<sup>+</sup> homeostasis via regulation of the expression of PM H<sup>+</sup>-ATPase, SOS1 and SKOR at the transcriptional level under excess NaCl. Moreover, H2S alleviated salt-induced oxidative stress as indicated by lowered lipid peroxidation and reactive oxygen species accumulation through an enhanced antioxidant system. Altogether, these results demonstrated that application of H2S could protect cucumber seedlings against salinity stress, likely by keeping the Na<sup>+</sup>/K<sup>+</sup> balance, controlling the endogenous H2S level by regulating the H2S synthetic and decomposition enzymes, and preventing oxidative stress by enhancing the antioxidant system under salinity stress."	"Time-Series Chlorophyll Fluorescence Imaging Reveals Dynamic Photosynthetic Fingerprints of sos Mutants to Drought Stress. Resistance to drought stress is one of the most favorable traits in breeding programs yet drought stress is one of the most poorly addressed biological processes for both phenomics and genetics. In this study, we investigated the potential of using a time-series chlorophyll fluorescence (ChlF) analysis to dissect the ChlF fingerprints of salt overly sensitive (SOS) mutants under drought stress. Principle component analysis (PCA) was used to identify a shifting pattern of different genotypes including sos mutants and wild type (WT) Col-0. A time-series deep-learning algorithm, sparse auto encoders (SAEs) neural network, was applied to extract time-series ChlF features which were used in four classification models including linear discriminant analysis (LDA), k-nearest neighbor classifier (KNN), Gaussian naive Bayes (NB) and support vector machine (SVM). The results showed that the discrimination accuracy of sos mutants SOS1-1, SOS2-3, and wild type Col-0 reached 95% with LDA classification model. Sequential forward selection (SFS) algorithm was used to obtain ChlF fingerprints of the shifting pattern, which could address the response of sos mutants and Col-0 to drought stress over time. Parameters including QY, NPQ and Fm, etc. were significantly different between sos mutants and WT. This research proved the potential of ChlF imaging for gene function analysis and the study of drought stress using ChlF in a time-series manner."	"The Recretohalophyte Tamarix TrSOS1 Gene Confers Enhanced Salt Tolerance to Transgenic Hairy Root Composite Cotton Seedlings Exhibiting Virus-Induced Gene Silencing of GhSOS1. The salt overly sensitive 1 (SOS1) gene encodes the plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter, SOS1, that is mainly responsible for extruding Na<sup>+</sup> from the cytoplasm and reducing the Na<sup>+</sup> content in plants under salt stress and is considered a vital determinant in conferring salt tolerance to the plant. However, studies on the salt tolerance function of the TrSOS1 gene of recretohalophytes, such as Tamarix, are limited. In this work, the effects of salt stress on cotton seedlings transformed with tobacco-rattle-virus-based virus-induced gene silencing (VIGS) of the endogenous GhSOS1 gene, or Agrobacterium rhizogenes strain K599-mediated TrSOS1-transgenic hairy root composite cotton plants exhibiting VIGS of GhSOS1 were first investigated. Then, with Arabidopsis thaliana AtSOS1 as a reference, differences in the complementation effect of TrSOS1 or GhSOS1 in a yeast mutant were compared under salt treatment. Results showed that compared to empty-vector-transformed plants, GhSOS1-VIGS-transformed cotton plants were more sensitive to salt stress and had reduced growth, insufficient root vigor, and increased Na<sup>+</sup> content and Na<sup>+</sup>/K<sup>+</sup> ratio in roots, stems, and leaves. Overexpression of TrSOS1 enhanced the salt tolerance of hairy root composite cotton seedlings exhibiting GhSOS1-VIGS by maintaining higher root vigor and leaf relative water content (RWC), and lower Na<sup>+</sup> content and Na<sup>+</sup>/K<sup>+</sup> ratio in roots, stems, and leaves. Transformations of TrSOS1, GhSOS1, or AtSOS1 into yeast NHA1 (Na<sup>+</sup>/H<sup>+</sup> antiporter 1) mutant reduced cellular Na<sup>+</sup> content and Na<sup>+</sup>/K<sup>+</sup> ratio, increased K<sup>+</sup> level under salt stress, and had good growth complementation in saline conditions. In particular, the ability of TrSOS1 or GhSOS1 to complement the yeast mutant was better than that of AtSOS1. This may indicate that TrSOS1 is an effective substitute and confers enhanced salt tolerance to transgenic hairy root composite cotton seedlings, and even the SOS1 gene from salt-tolerant Tamarix or cotton may have higher efficiency than salt-sensitive Arabidopsis in regulating Na<sup>+</sup> efflux, maintaining Na<sup>+</sup> and K<sup>+</sup> homeostasis, and therefore contributing to stronger salt tolerance."	"AtSIZ1 improves salt tolerance by maintaining ionic homeostasis and osmotic balance in Arabidopsis. C2H2-type zinc finger proteins play important roles in plant growth, development, and abiotic stress tolerance. Here, we explored the role of the C2H2-type zinc finger protein SALT INDUCED ZINC FINGER PROTEIN1 (AtSIZ1; At3G25910) in Arabidopsis thaliana under salt stress. AtSIZ1 expression was induced by salt treatment. During the germination stage, the germination rate, germination energy, germination index, cotyledon growth rate, and root length were significantly higher in AtSIZ1 overexpression lines than in the wild type under various stress treatments, whereas these indices were significantly reduced in AtSIZ1 loss-of-function mutants. At the mature seedling stage, the overexpression lines maintained higher levels of K<sup>+</sup>, proline, and soluble sugar, lower levels of Na<sup>+</sup> and MDA, and lower Na<sup>+</sup>/K<sup>+</sup> ratios than the wild type. Stress-related marker genes such as SOS1, AtP5CS1, AtGSTU5, COR15A, RD29A, and RD29B were expressed at higher levels in the overexpression lines than the wild type and loss-of-function mutants under salt treatment. These results indicate that AtSIZ1 improves salt tolerance in Arabidopsis by helping plants maintain ionic homeostasis and osmotic balance."	"Overexpression of Triticum durum TdAnn12 gene confers stress tolerance through scavenging reactive oxygen species in transgenic tobacco. Plant annexins are proteins with multiple functions and roles in plant development and responses to abiotic stresses. We report here the functional analysis of the TdAnn12 annexin protein isolated from Triticum durum Desf. We have previously shown that TdAnn12 expression is highly induced by different abiotic stresses. In the present study, to investigate the physiological and biochemical stress-induced responses, we overexpressed TdAnn12 in tobacco. We demonstrate that transgenic tobacco plants expressing TdAnn12 exhibited enhanced tolerance to salt, osmotic stress and H2O2 at the seedling stage. Under greenhouse conditions, these plants showed tolerance to drought and salt stresses. Moreover, scavenging reactive oxygen species (ROS), higher chlorophyll content, lower lipid peroxidation levels and increased antioxidant activities (peroxidase, catalase and superoxide dismutase) were observed. Finally, accumulation of TdAnn12 in tobacco positively affects the regulation of some stress-related genes (MnSOD, APX1, CAT1, P5CS, NHX1, SOS1 and DREB1A). TdAnn12 interacts directly or indirectly with stress-related genes that could stimulate an adaptive potential to gain tolerance which is not present in non-transgenic (NT) plants. Our results clearly show that overexpression of TdAnn12 in transgenic tobacco improves stress tolerance through the removal of ROS."	"Cytotoxic Mechanism for Silver Nanoparticles Based High-Content Cellomics and Transcriptome Sequencing. The aim of this study was to investigate the toxic mechanism for differently sized silver nanoparticles (SNPs) on human dermal fibroblasts (HDFs), by combining high content cellomics and transcriptome sequencing. First, the influences of five SNPs (SNP-5, SNP-20, SNP-50, SNP-100, and SNP-200) on O<sup>-</sup>₂, focal adhesion, cytoskeleton and ATP content in HDFs were studied with high content screening and colorimetric method, and the role to cytotoxicity was analysed. Transcriptome sequencing technique was then to filter differentially expressed genes induced by SNPs after 4 h treatment. Key pathways in SNP-induced cytotoxicity were also screened via biological pathway analysis. Furthermore, key genes in HDFs after SNP-induced cytotoxicity were determined through matching analysis with previously obtained important microRNAs and their expression levels were verified with qRT-PCR. Cytological experiments showed that the SNP-5 had the strongest effects on O<sup>-</sup>₂, focal adhesion, cytoskeleton and ATP content, while SNP-20 had the smallest effects. Transcriptome sequencing results showed that 3848, 4213, 2999, 3251 and 5104 genes were found to be differentially expressed in HDFs after treatment with five SNPs. Biological pathway analysis for 1643 uniformly differentially expressed genes revealed that MAPK signaling pathway was the key pathway in SNP-induced cytotoxicity. Two key genes, SOS1 and CDC25B, which are involved in MAPK signaling pathway were finally identified through matching analysis with important microRNAs and verification. In conclusion, the cytotoxic mechanism for SNPs induced cytotoxicity in HDFs involved SNPs down-regulated expression of SOS1 and CDC25B through miR-424-5p in the key MAPK signaling pathway, through blocking of cell cycle, promotion of apoptosis, ultimately leading to cytotoxicity."	"Piriformospora indica confers salinity tolerance on tomato (Lycopersicon esculentum Mill.) through amelioration of nutrient accumulation, K<sup>+</sup>/Na<sup>+</sup> homeostasis and water status. Piriformospora indica confers salt tolerance in tomato seedlings by increasing the uptake of nutrients such as N, P and Ca, improving K<sup>+</sup>/Na<sup>+</sup> homoeostasis by regulating the expression of NHXs, SOS1 and CNGC15 genes, maintaining water status by regulating the expression of aquaporins. Piriformospora indica, an endophytic basidiomycete, has been shown to increase the growth and improve the plants tolerance to stressful conditions, especially salinity, by establishing the arbuscular mycorrhiza-like symbiotic relationship in various plant hosts. In the present research, the effect of NaCl treatment (150 mM) and P. indica inoculation on growth, accumulation of nutrients, the transcription level of genes involved in ionic homeostasis (NHXs, SOS1 and CNGC15) and regulating water status (PIP1;2, PIP2;4, TIP1;1 and TIP2;2) in roots and leaves of tomato seedlings were investigated. The P. indica improved the uptake of N, P, Ca and K, and reduced Na accumulation, and had no significant effect on Cl accumulation in roots and leaves. The endophytic fungus also increased in K<sup>+</sup>/Na<sup>+</sup> ratio in roots and leaves of tomato by regulating the expression of NHX isoforms and upregulating SOS1 and CNGC15 expression. Salinity stress increased the transcription of PIP2;4 gene and reduced the transcription of PIP1;2, TIP1;1 and TIP2;2 genes compared to the control treatment. However, P. indica inoculation upregulated the expression of PIP1;2 and PIP2;4 genes versus non-inoculated plants but did not have a significant effect on TIP1;1 and TIP2;2 expression. These results conclude that the positive effects of P. indica on nutrients accumulation, ionic homeostasis and water status lead to the increased salinity tolerance and the improved plant growth under NaCl treatment."	"A novel model of controlling PD-L1 expression in ALK<sup>+</sup> anaplastic large cell lymphoma revealed by CRISPR screening. The success of programmed cell death protein 1 (PD-1)/PD-L1-based immunotherapy highlights the critical role played by PD-L1 in cancer progression and reveals an urgent need to develop new approaches to attenuate PD-L1 function by gaining insight into how its expression is controlled. Anaplastic lymphoma kinase (ALK)-positive anaplastic large-cell lymphoma (ALK<sup>+</sup> ALCL) expresses a high level of PD-L1 as a result of the constitutive activation of multiple oncogenic signaling pathways downstream of ALK activity, making it an excellent model in which to define the signaling processes responsible for PD-L1 upregulation in tumor cells. Here, using clustered regularly interspaced short palindromic repeats (CRISPR)/Cas9 library screening, we sought a comprehensive understanding of the molecular effectors required for PD-L1 regulation in ALK<sup>+</sup> ALCL. Indeed, we determined that PD-L1 induction is dependent on the nucleophosmin-ALK oncoprotein activation of STAT3, as well as a signalosome containing GRB2/SOS1, which activates the MEK-ERK and PI3K-AKT signaling pathways. These signaling networks, through STAT3 and the GRB2/SOS1, ultimately induce PD-L1 expression through the action of transcription factors IRF4 and BATF3 on the enhancer region of the PD-L1 gene. IRF4 and BATF3 are essential for PD-L1 upregulation, and IRF4 expression is correlated with PD-L1 levels in primary ALK<sup>+</sup> ALCL tissues. Targeting this oncogenic signaling pathway in ALK<sup>+</sup> ALCL largely inhibited the ability of PD-L1-mediated tumor immune escape when cocultured with PD-1-positive T cells and natural killer cells. Thus, our identification of this previously unrecognized regulatory hub not only accelerates our understanding of the molecular circuitry that drives tumor immune escape but also provides novel opportunities to improve immunotherapeutic intervention strategies."	"Nitrate reductase-dependent nitric oxide is crucial for multi-walled carbon nanotube-induced plant tolerance against salinity. Although there have been some studies on the plant-carbonaceous nanomaterials (CNMs) interactions, related conclusions were controversial. Here, we report that multi-walled carbon nanotubes (MWCNTs) can enter into rapeseed (Brassica napus L.) seedling root, and transport to stem. Further results showed that salinity-inhibited rapeseed seedling growth was obviously alleviated by MWCNTs. Meanwhile, NaCl-induced nitrate reductase (NR)-dependent NO production was significantly intensified by MWCNTs. The redox and ion imbalance was reestablished as well, confirmed by the reduction in reactive oxygen species (ROS) overproduction, the decrease in thiobarbituric acid reactive substance production, and the lower Na+/K+ ratio. These beneficial effects could be explained by the changes in related antioxidant defense genes, sodium hydrogen exchanger 1 (NHX1), salt overly sensitive 1 (SOS1), and K+transporter 1 (KT1) transcripts. The above responses were separately abolished after the removal of endogenous NO with its scavengers or the addition of the NR inhibitor. Genetic evidence revealed that the NaCl-triggered NO level in wild-type seedling roots was partly abolished in either the nitric reductase mutant (nia1/2) or noa1 mutant (exhibiting indirectly a reduced endogenous NO level). Treatment with MWCNTs could totally rescue the impaired NO production in the noa1 mutant rather than the nia1/2 mutant, suggesting that NR-dependent NO acts as a downstream signaling molecule in MWCNT signaling. This point was verified by phenotypic analyses, histochemical staining, and ion analysis. qPCR analysis further demonstrated that MWCNTs stimulated antioxidant genes and ion balance-related genes through NR-mediated NO. The above molecular and genetic evidence indicated that NR-dependent NO acts downstream of MWCNTs in salinity tolerance, which requires the reestablishment of redox and ion homeostasis."	"Endocrine Complications of Noonan Syndrome beyond Short Stature. Noonan syndrome (NS) is a diagnosis that is made clinically based on features including typical facies, congenital heart defects, short stature and developmental delay. Approximately 50% of the patients have identified mutations in the PTPN11 gene, and a smaller percentage of mutations have been reported in other genes such as SOS1, RAF1 and RIT1 Despite normal birth length, patients typically reach adult height below normal. Other than growth, endocrine complications of NS are not as commonly reported. These include possible pathology in thyroid function, pubertal development and bone metabolism. Some investigators have looked to see if genetic mutations in these patients could pose a risk for future endocrinopathies. This chapter reviews reports on endocrine dysfunction other than growth in patients with NS. The information is meant to enhance awareness in those providers who care for these patients to the possibility of other existing endocrinopathies. Most importantly, it supports and highlights the endocrinologist's role in the care of patients with NS."	"Calcineurin B-Like Proteins CBL4 and CBL10 Mediate Two Independent Salt Tolerance Pathways in Arabidopsis. In Arabidopsis, the salt overly sensitive (SOS) pathway, consisting of calcineurin B-like protein 4 (CBL4/SOS3), CBL-interacting protein kinase 24 (CIPK24/SOS2) and SOS1, has been well defined as a crucial mechanism to control cellular ion homoeostasis by extruding Na<sup>+</sup> to the extracellular space, thus conferring salt tolerance in plants. CBL10 also plays a critical role in salt tolerance possibly by the activation of Na<sup>+</sup> compartmentation into the vacuole. However, the functional relationship of the SOS and CBL10-regulated processes remains unclear. Here, we analyzed the genetic interaction between CBL4 and CBL10 and found that the cbl4 cbl10 double mutant was dramatically more sensitive to salt as compared to the cbl4 and cbl10 single mutants, suggesting that CBL4 and CBL10 each directs a different salt-tolerance pathway. Furthermore, the cbl4 cbl10 and cipk24 cbl10 double mutants were more sensitive than the cipk24 single mutant, suggesting that CBL10 directs a process involving CIPK24 and other partners different from the SOS pathway. Although the cbl4 cbl10, cipk24 cbl10, and sos1 cbl10 double mutants showed comparable salt-sensitive phenotype to sos1 at the whole plant level, they all accumulated much lower Na<sup>+</sup> as compared to sos1 under high salt conditions, suggesting that CBL10 regulates additional unknown transport processes that play distinct roles from the SOS1 in Na<sup>+</sup> homeostasis."	"CRISPR-Cas9 directed genome engineering for enhancing salt stress tolerance in rice. Crop productivity in rice is harshly limited due to high concentration of salt in the soil. To understand the intricacies of the mechanism it is important to unravel the key pathways operating inside the plant cell. Emerging state-of-the art technologies have provided the tools to discover the key components inside the plant cell for salt tolerance. Among the molecular entities, transcription factors and/or other important components of sensing and signaling cascades have been the attractive targets and the role of NHX and SOS1 transporters amply described. Not only marker assisted programs but also transgenic approaches by using reverse genetic strategies (knockout or knockdown) or overexpression have been extensively used to engineer rice crop. CRISPR/Cas is an attractive paradigm and provides the feasibility for manipulating several genes simultaneously. Here, in this review we highlight some of the molecular entities that could be potentially targeted for generating rice amenable to sustain growth under high salinity conditions by employing CRISPR/Cas. We also try to address key questions for rice salt stress tolerance other than what is already known."	"Noonan Syndrome in South Africa: Clinical and Molecular Profiles. Noonan Syndrome (NS) is a common autosomal dominant multisystem disorder, caused by mutations in more than 10 genes in the Ras/MAPK signaling pathway. Differential mutation frequencies are observed across populations. Clinical expressions of NS are highly variable and include short stature, distinctive craniofacial dysmorphism, cardiovascular abnormalities, and developmental delay. Little is known about phenotypic specificities and molecular characteristics of NS in Africa. The present study has investigated patients with NS in Cape Town (South Africa). Clinical features were carefully documented in a total of 26 patients. Targeted Next-Generation Sequencing (NGS) was performed on 16 unrelated probands, using a multigene panel comprising 14 genes: PTPN11, SOS1, RIT1, A2ML1, BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NRAS, RAF1, SHOC2, and SPRED1. The median age at diagnosis was 4.5 years (range: 1 month-51 years). Individuals of mixed-race ancestry were most represented (53.8%), followed by black Africans (30.8%). Our cohort revealed a lower frequency of pulmonary valve stenosis (34.6%) and a less severe developmental milestones phenotype. Molecular analysis found variants predicted to be pathogenic in 5 / 16 cases (31.2%). Among these mutations, two were previously reported: MAP2K1-c.389A&gt;G (p.Tyr130Cys) and PTPN11 - c.1510A&gt;G (p.Met504Val); three are novel: CBL-c.2520T&gt;G (p.Cys840Trp), PTPN11- c.1496C&gt;T (p.Ser499Phe), and MAP2K1- c.200A&gt;C (p.Asp67Ala). Molecular dynamic simulations indicated that novel variants identified impact the stability and flexibility of their corresponding proteins. Genotype-phenotype correlations showed that clinical features of NS were more typical in patients with variants in MAP2K1. This first application of targeted NGS for the molecular diagnosis of NS in South Africans suggests that, while there is no major phenotypic difference compared to other populations, the distribution of genetic variants in NS in South Africans may be different."	"Minimal inflammatory foci of unknown etiology may be a tentative sign of early stage inherited cardiomyopathy. Although relatively uncommon, pathologists may encounter minimal inflammatory foci in the absence of typical structural heart disease; however, the clinicopathological significance of minimal inflammatory foci, including correlation with sudden unexpected death, is unexplored. From 1072 serial autopsy subjects, cases with unexplained minimal inflammatory foci, the extent of which was under 1% of the whole examined ventricle, were extracted to exclude cases with borderline/focal myocarditis resulting from local, systemic infection, or autoimmune mechanisms. Immunohistochemistry and genetic analysis targeting viral genomes and heart disease-related genes using next generation sequencing were performed. We detected 10 cases with unexplained minimal inflammatory foci (five males, five females, aged 15-68 years). The cause and/or manner of death were sudden unexpected death (6 cases, 60%), sudden unexpected death with epilepsy (1 case, 10%), drowning in a hot bath (1 case, 10%), and suicide (2 cases, 20%). In none of these cases was pathogen-derived DNA or RNA detected. In 8 of the 10 cases (80%), 17 possible pathogenic genetic variants causative for arrhythmogenic right ventricular cardiomyopathy or dilated cardiomyopathy; DSP was the most frequently involved gene (three cases with two different variants), followed by LAMA4 and MYBPC3 (two cases, two variants for each gene), LDB3 (two cases, one variant), and the remaining 10 variants occurred in seven cases (DSC2, RYR2, SOS1, SCN5A, SGCD, LPL, PKP2, MYH11, GATA6, and DSG2). All mutations were missense mutations. DSP_Lys1581Glu and DSC2_p.Thr275Met were classified according to American College of Medical Genetics and Genomics consensus statement guidelines as pathogenic or likely pathogenic for arrhythmogenic cardiomyopathy in three patients (30%). The remaining 15 variants were classified as potentially pathogenic variants. Unexplained minimal inflammatory foci may be an early sign of inherited cardiomyopathy, and such cases might already have arrhythmogenic potential that can lead to sudden unexpected death. Detection of minimal inflammatory foci by careful pathological examination may indicate the value of conducting comprehensive genetic analysis, even if significant structural abnormalities are not evident."	"Functional Analysis of Conserved Transmembrane Charged Residues and a Yeast Specific Extracellular Loop of the Plasma Membrane Na<sup>+</sup>/H<sup>+</sup> Antiporter of Schizosaccharomyces pombe. The Na<sup>+</sup>/H<sup>+</sup> exchanger of the plasma membrane of S. pombe (SpNHE1) removes excess intracellular sodium in exchange for an extracellular proton. We examined the functional role of acidic amino acids of a yeast specific periplasmic extracellular loop 6 (EL6) and of Glu<sup>74</sup> and Arg<sup>77</sup> of transmembrane segment 3. Glu<sup>74</sup> and Arg<sup>77</sup> are conserved in yeast species while Glu<sup>74</sup> is conserved throughout various phyla. The mutation E74A caused a minor effect, while mutation R77A had a larger effect on the ability of SpNHE1 to confer salt tolerance. Mutation of both residues to Ala or Glu also eliminated the ability to confer salt tolerance. Arg<sup>341</sup> and Arg<sup>342</sup> were also necessary for SpNHE1 transport in S. pombe. Deletion of 3 out of 4 acidic residues (Asp<sup>389</sup>, Glu<sup>390</sup>, Glu<sup>392</sup>, Glu<sup>397</sup>) of EL6 did not greatly affect SpNHE1 function while deletion of all did. Replacement of EL6 with a segment from the plant Na<sup>+</sup>/H<sup>+</sup> exchanger SOS1 also did not affect function. We suggest that EL6 forms part of a cation coordination sphere, attracting cations for transport but that the region is not highly specific for the location of acidic charges. Overall, we identified a number of polar amino acids important in SpNHE1 function."	"A Critical Role of Sodium Flux via the Plasma Membrane Na<sup>+</sup>/H<sup>+</sup> Exchanger SOS1 in the Salt Tolerance of Rice. Rice (Oryza sativa) stands among the world's most important crop species. Rice is salt sensitive, and the undue accumulation of sodium ions (Na<sup>+</sup>) in shoots has the strongest negative correlation with rice productivity under long-term salinity. The plasma membrane Na<sup>+</sup>/H<sup>+</sup> exchanger protein Salt Overly Sensitive 1 (SOS1) is the sole Na<sup>+</sup> efflux transporter that has been genetically characterized to date. Here, the importance of SOS1-facilitated Na<sup>+</sup> flux in the salt tolerance of rice was analyzed in a reverse-genetics approach. A sos1 loss-of-function mutant displayed exceptional salt sensitivity that was correlated with excessive Na<sup>+</sup> intake and impaired Na<sup>+</sup> loading into the xylem, thus indicating that SOS1 controls net root Na<sup>+</sup> uptake and long-distance Na<sup>+</sup> transport to shoots. The acute Na<sup>+</sup> sensitivity of sos1 plants at low NaCl concentrations allowed analysis of the transcriptional response to sodicity stress without effects of the osmotic stress intrinsic to high-salinity treatments. In contrast with that in the wild type, sos1 mutant roots displayed preferential down-regulation of stress-related genes in response to salt treatment, despite the greater intensity of stress experienced by the mutant. These results suggest there is impaired stress detection or an inability to mount a comprehensive response to salinity in sos1 In summary, the plasma membrane Na<sup>+</sup>/H<sup>+</sup> exchanger SOS1 plays a major role in the salt tolerance of rice by controlling Na<sup>+</sup> homeostasis and possibly contributing to the sensing of sodicity stress."	"Salt-Enhanced Reproductive Development of Suaeda salsa L. Coincided With Ion Transporter Gene Upregulation in Flowers and Increased Pollen K<sup>+</sup> Content. Halophytes are adapted to saline environments and demonstrate optimal reproductive growth under high salinity. To gain insight into the salt tolerance mechanism and effects of salinity in the halophyte Suaeda salsa, the number of flowers and seeds, seed size, anther development, ion content, and flower transcript profiles, as well as the relative expression levels of genes involved in ion transport, were analyzed in S. salsa plants treated with 0 or 200 mM NaCl. The seed size, flower number, seed number per leaf axil, and anther fertility were all significantly increased by 200 mM NaCl treatment. The Na<sup>+</sup> and Cl<sup>-</sup> contents in the leaves, stems, and pollen of NaCl-treated plants were all markedly higher, and the K<sup>+</sup> content in the leaves and stems was significantly lower, than those in untreated control plants. By contrast, the K<sup>+</sup> content in pollen grains did not decrease, but rather increased, upon NaCl treatment. Genes related to Na<sup>+</sup>, K<sup>+</sup> and, Cl<sup>-</sup> transport, such as SOS1, KEA, AKT1, NHX1, and CHX, showed increased expression in the flowers of NaCl-treated plants. These results suggest that ionic homeostasis in reproductive organs, especially in pollen grains under salt-treated conditions, involves increased expression of ion transport-related genes."	"Overexpression of Cotton a DTX/MATE Gene Enhances Drought, Salt, and Cold Stress Tolerance in Transgenic Arabidopsis. Abiotic stresses have negative effects on plants growth and development. Plants, being sessile, have developed specific adaptive strategies that allow them to rapidly detect and respond to abiotic stress factors. The detoxification efflux carriers (DTX)/multidrug and toxic compound extrusion (MATE) transporters are of significance in the translocation of abscisic acid (ABA), a phytohormone with profound role in plants under various abiotic stress conditions. The ABA signaling cascades are the core regulators of abiotic stress responses in plants, triggering major changes in gene expression and adaptive physiological responses. We therefore carried out genome-wide analysis of the DTX/MATE gene family, transformed a DTX/MATE gene in Arabidopsis and carried out functional analysis under drought, salt, and cold stress conditions. We identified 128, 70, and 72 DTX/MATE genes in Gossypium hirsutum, Gossypium arboreum, and Gossypium raimondii, respectively. The proteins encoded by the DTX/MATE genes showed varied physiochemical properties but they all were hydrophobic. The Gh_D06G0281 (DTX/MATE) over-expressing Arabidopsis lines were highly tolerant under drought, salt, and cold stress with high production of antioxidant enzymes and significantly reduced levels of oxidants. Lipid peroxidation, as measured by the level of malondialdehyde concentrations was relatively low in transgenic lines compared to wild types, an indication of reduced oxidative stress levels in the transgenic plants. Based on physiological measurements, the transgenic plants exhibited significantly higher relative leaf water content, reduced excised leaf water loss and a significant reduction in ion leakage as a measure of the cell membrane stability compared to the wild types. Abiotic stress responsive genes, ABF4, CBL1, SOS1, and RD29B were highly expressed in the transgenic lines compared to the non-transformed wild type plants. The protein encoded by the Gh_D06G0281 (DTX/MATE) gene was predicted to be located within the plasma membrane. Since signals from extracellular stimuli are transmitted through the plasma membrane most of which are conducted by plasma membrane proteins it is possible the Gh_D06G0281 (DTX/MATE) gene product could be important for this process."	"Transcriptome analysis revealed that aflatoxin M1 could cause cell cycle arrest in differentiated Caco-2 cells. Being a hydroxylated metabolite of aflatoxin B1 (AFB1) and the most threatening aspect of AFB1 contamination, aflatoxin M1 (AFM1) can lead to hepatotoxicity and hepato-carcinogenicity, and possess intestinal cytotoxicity. However, little is known about the potential mechanisms of the extrahepatic effect. The aim of this study was to investigate intestinal dysfunction induced by AFM1 via transcriptome analysis. Gene expression profiling was analyzed to comparatively characterize the differentially expressed genes (DEGs) after differentiated Caco-2 cells were exposed to different concentrations of AFM1 for 48 h. A total of 165 DEGs were significantly clustered into two down-regulated patterns. Protein-protein interaction (PPI) network analysis based on Search Tool for Retrieval of Interacting Genes (STRING)suggested that 23 key enzymes mainly participated in the regulation of the cell cycle. Q-PCR analysis was performed to validate that key 12 genes (BUB1, BUB1B, MAD2L1, CCNA2, RB1, CDK1, ANAPC4, ATM, KITLG, PRKAA2, SIRT1, and SOS1) were involved. This study firstly revealed that the toxicity of AFM1 to intestinal functions may be partly due to the occurrence of cell cycle arrest, which is linked to changes in CDK1, SOS1/Akt, and AMPK signaling molecules."	"Anti-cancer Effects of a Chemically Modified miR-143 on Bladder Cancer by Either Systemic or Intravesical Treatment. We developed a novel chemically modified miR-143 (miR-143#12), and with it we investigated the contribution of miR-143 to the pathogenesis of bladder cancer (BC), in which miR-143 is extremely downregulated. Since miR-143 silenced K-RAS and RAS effector-signaling molecules Erk and Akt, we performed the ectopic expression of miR-143 in human BC 253J-BV cells, and we examined the growth inhibition and the mechanism of it in vitro and in orthotopic model mice. As a result, miR-143#12 induced a marked growth inhibition with apoptosis through impairing RAS-signaling networks, including SOS1, which exchanges guanosine diphosphate (GDP)/RAS for active guanosine triphosphate (GTP)/RAS. In the in vivo study, miR-143#12 exhibited a marked anti-tumor activity by either systemic or intravesical administration with polyionic copolymer (PIC) as the carrier, compared with the activity obtained by use of lipofection. These findings raised the possibility that the chemically modified miR-143#12 would be a candidate of microRNA (miRNA) medicine for BC delivered by intravesical infusion."	"Hydrogen peroxide as a mediator of 5-aminolevulinic acid-induced Na<sup>+</sup> retention in roots for improving salt tolerance of strawberries. To explore the mechanisms of 5-aminolevulinic acid (ALA)-improved plant salt tolerance, strawberries (Fragaria × ananassa Duch. cv. 'Benihoppe') were treated with 10 mg l<sup>-1</sup> ALA under 100 mmol l<sup>-1</sup> NaCl stress. We found that the amount of Na<sup>+</sup> increased in the roots but decreased in the leaves. Laser scanning confocal microscopy (LSCM) observations showed that ALA-induced roots had more Na<sup>+</sup> accumulation than NaCl alone. Measurement of the xylem sap revealed that ALA repressed Na<sup>+</sup> concentrations to a large extent. The electron microprobe X-ray assay also confirmed ALA-induced Na<sup>+</sup> retention in roots. qRT-PCR showed that ALA upregulated the gene expressions of SOS1 (encoding a plasma membrane Na<sup>+</sup> /H<sup>+</sup> antiporter), NHX1 (encoding a vacuolar Na<sup>+</sup> /H<sup>+</sup> antiporter) and HKT1 (encoding a protein of high-affinity K<sup>+</sup> uptake), which are associated with Na<sup>+</sup> exclusion in the roots, Na<sup>+</sup> sequestration in vacuoles and Na<sup>+</sup> unloading from the xylem vessels to the parenchyma cells, respectively. Furthermore, we found that ALA treatment reduced the H2 O2 content in the leaves but increased it in the roots. The exogenous H2 O2 promoted plant growth, increased root Na<sup>+</sup> retention and stimulated the gene expressions of NHX1, SOS1 and HKT1. Diphenyleneiodonium (DPI), an inhibitor of H2 O2 generation, suppressed the effects of ALA or H2 O2 on Na<sup>+</sup> retention, gene expressions and salt tolerance. Therefore, we propose that ALA induces H2 O2 accumulation in roots, which mediates Na<sup>+</sup> transporter gene expression and more Na<sup>+</sup> retention in roots, thereby improving plant salt tolerance."	"The Effect of AtHKT1;1 or AtSOS1 Mutation on the Expressions of Na⁺ or K⁺ Transporter Genes and Ion Homeostasis in Arabidopsis thaliana under Salt Stress. HKT1 and SOS1 are two key Na⁺ transporters that modulate salt tolerance in plants. Although much is known about the respective functions of HKT1 and SOS1 under salt conditions, few studies have examined the effects of HKT1 and SOS1 mutations on the expression of other important Na⁺ and K⁺ transporter genes. This study investigated the physiological parameters and expression profiles of AtHKT1;1, AtSOS1, AtHAK5, AtAKT1, AtSKOR, AtNHX1, and AtAVP1 in wild-type (WT) and athkt1;1 and atsos1 mutants of Arabidopsis thaliana under 25 mM NaCl. We found that AtSOS1 mutation induced a significant decrease in transcripts of AtHKT1;1 (by 56⁻62% at 6⁻24 h), AtSKOR (by 36⁻78% at 6⁻24 h), and AtAKT1 (by 31⁻53% at 6⁻24 h) in the roots compared with WT. This led to an increase in Na⁺ accumulation in the roots, a decrease in K⁺ uptake and transportation, and finally resulted in suppression of plant growth. AtHKT1;1 loss induced a 39⁻76% (6⁻24 h) decrease and a 27⁻32% (6⁻24 h) increase in transcripts of AtSKOR and AtHAK5, respectively, in the roots compared with WT. At the same time, 25 mM NaCl decreased the net selective transport capacity for K⁺ over Na⁺ by 92% in the athkt1;1 roots compared with the WT roots. Consequently, Na⁺ was loaded into the xylem and delivered to the shoots, whereas K⁺ transport was restricted. The results indicate that AtHKT1;1 and AtSOS1 not only mediate Na⁺ transport but also control ion uptake and the spatial distribution of Na⁺ and K⁺ by cooperatively regulating the expression levels of relevant Na⁺ and K⁺ transporter genes, ultimately regulating plant growth under salt stress."	"Differential response of Indian mustard (Brassica juncea L., Czern and Coss) under salinity: photosynthetic traits and gene expression. To explore the effect of salt stress on photosynthetic traits and gene expression in Indian mustard, four genotypes CS 54 (national check for salinity), CS 52-SPS-1-2012 (salt tolerant mutant), CS 614-4-1-4-100-13 (salt sensitive mutant) and Pusa bold (high yielding variety) were evaluated under irrigation water salinity (ECiw 12, and 15 dS m<sup>-1</sup>). Results suggest genotype CS 52-SPS-1-2012 followed by CS 54 performed better under imposed salt stress due to differential regulation of Na<sup>+</sup> accumulation in the roots and main stem, restriction of Na<sup>+</sup> influx from root to shoot, maintaining higher net photosynthetic traits under saline stress compared to CS 614-4-1-4-100-13 and Pusa bold. Further, overexpression of antiporters (SOS1, SOS2, SOS3, ENH1 and NHX1) and antioxidant (APX1, APX4, DHAR1 and MDHAR) genes in salt tolerant genotypes CS 52-SPS-1-2012 and CS 54 demonstrated their significant role in imparting salt tolerance in Indian mustard."	"The spectrum of genetic variants and phenotypic features of Southeast Asian patients with Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant disorder that belongs to a group of developmental disorders called RASopathies with overlapping features and multiple causative genes. The aim of the study was to identify mutations underlying this disorder in patients from Southeast Asia and characterize their clinical presentations. Patients were identified from the hospital's Genetics clinics after assessment by attending clinical geneticists. A targeted gene panel was used for next-generation sequencing on genomic DNA extracted from the blood samples of 17 patients. Heterozygous missense variants were identified in 13 patients: eight were in PTPN11, three in SOS1, and one each in RIT1 and KRAS. All are known variants that have been reported in patients with NS. Of the 13 patients with identified variants, 10 had short stature, the most common feature for NS. Four of the eight patients with PTPN11 variants had atrial septal defect. Only two had pulmonary stenosis which is reported to be common for PTPN11 mutation carriers. Another two had hypertrophic cardiomyopathy, a feature which is negatively associated with PTPN11 mutations. Our study provides the mutation and phenotypic spectrum of NS from a new population group. The molecular testing yield of 76% is similar to other studies and shows that the targeted panel approach is useful for identifying genetic mutations in NS which has multiple causative genes. The molecular basis for the phenotypes of the remaining patients remains unknown and would need to be uncovered via sequencing of additional genes or other investigative methods."	"Populus euphratica JRL Mediates ABA Response, Ionic and ROS Homeostasis in Arabidopsis under Salt Stress. Sodium chloride (NaCl) induced expression of a jacalin-related mannose-binding lectin (JRL) gene in leaves, roots, and callus cultures of Populus euphratica (salt-resistant poplar). To explore the mechanism of the PeJRL in salinity tolerance, the full length of PeJRL was cloned from P. euphratica and was transformed into Arabidopsis. PeJRL was localized to the cytoplasm in mesophyll cells. Overexpression of PeJRL in Arabidopsis significantly improved the salt tolerance of transgenic plants, in terms of seed germination, root growth, and electrolyte leakage during seedling establishment. Under NaCl stress, transgenic plants retained K⁺ and limited the accumulation of Na⁺. PeJRL-transgenic lines increased Na⁺ extrusion, which was associated with the upward regulation of SOS1, AHA1, and AHA2 genes encoding plasma membrane Na⁺/proton (H⁺) antiporter and H⁺-pumps. The activated H⁺-ATPases in PeJRL-overexpressed plants restricted the channel-mediated loss of K⁺ that was activated by NaCl-induced depolarization. Under salt stress, PeJRL⁻transgenic Arabidopsis maintained reactive oxygen species (ROS) homeostasis by activating the antioxidant enzymes and reducing the production of O₂<sup>-</sup> through downregulation of NADPH oxidases. Of note, the PeJRL-transgenic Arabidopsis repressed abscisic acid (ABA) biosynthesis, thus reducing the ABA-elicited ROS production and the oxidative damage during the period of salt stress. A schematic model was proposed to show the mediation of PeJRL on ABA response, and ionic and ROS homeostasis under NaCl stress."	"Co-expression of SpSOS1 and SpAHA1 in transgenic Arabidopsis plants improves salinity tolerance. Na<sup>+</sup> extrusion from cells is important for plant growth in high saline environments. SOS1 (salt overly sensitive 1), an Na<sup>+</sup>/H<sup>+</sup> antiporter located in the plasma membrane (PM), functions in toxic Na<sup>+</sup> extrusion from cells using energy from an electrochemical proton gradient produced by a PM-localized H<sup>+</sup>-ATPase (AHA). Therefore, SOS1 and AHA are involved in plant adaption to salt stress. In this study, the genes encoding SOS1 and AHA from the halophyte Sesuvium portulacastrum (SpSOS1 and SpAHA1, respectively) were introduced together or singly into Arabidopsis plants. The results indicated that either SpSOS1 or SpAHA1 conferred salt tolerance to transgenic plants and, as expected, Arabidopsis plants expressing both SpSOS1 and SpAHA1 grew better under salt stress than plants expressing only SpSOS1 or SpAHA1. In response to NaCl treatment, Na<sup>+</sup> and H<sup>+</sup> in the roots of plants transformed with SpSOS1 or SpAHA1 effluxed faster than wild-type (WT) plant roots. Furthermore, roots co-expressing SpSOS1 and SpAHA1 had higher Na<sup>+</sup> and H<sup>+</sup> efflux rates than single SpSOS1/SpAHA1-expressing transgenic plants, resulting in the former amassing less Na<sup>+</sup> than the latter. As seen from comparative analyses of plants exposed to salinity stress, the malondialdehyde (MDA) content was lowest in the co-transgenic SpSOS1 and SpAHA1 plants, but the K<sup>+</sup> level was the highest. These results suggest SpSOS1 and SpAHA1 coordinate to alleviate salt toxicity by increasing the efficiency of Na<sup>+</sup> extrusion to maintain K<sup>+</sup> homeostasis and protect the PM from oxidative damage induced by salt stress."	"Comprehensive Investigation of miRNome Identifies Novel Candidate miRNA-mRNA Interactions Implicated in T-Cell Acute Lymphoblastic Leukemia. T-cell acute lymphoblastic leukemia (T-ALL) is an aggressive malignancy originating from T-cell precursors. The genetic landscape of T-ALL has been largely characterized by next-generation sequencing. Yet, the transcriptome of miRNAs (miRNome) of T-ALL has been less extensively studied. Using small RNA sequencing, we characterized the miRNome of 34 pediatric T-ALL samples, including the expression of isomiRs and the identification of candidate novel miRNAs (not previously annotated in miRBase). For the first time, we show that immunophenotypic subtypes of T-ALL present different miRNA expression profiles. To extend miRNome characteristics in T-ALL (to 82 T-ALL cases), we combined our small RNA-seq results with data available in Gene Expression Omnibus. We report on miRNAs most abundantly expressed in pediatric T-ALL and miRNAs differentially expressed in T-ALL versus normal mature T-lymphocytes and thymocytes, representing candidate oncogenic and tumor suppressor miRNAs. Using eight target prediction algorithms and pathway enrichment analysis, we identified differentially expressed miRNAs and their predicted targets implicated in processes (defined in Gene Ontology and Kyoto Encyclopedia of Genes and Genomes) of potential importance in pathogenesis of T-ALL, including interleukin-6-mediated signaling, mTOR signaling, and regulation of apoptosis. We finally focused on hsa-mir-106a-363 cluster and functionally validated direct interactions of hsa-miR-20b-5p and hsa-miR-363-3p with 3' untranslated regions of their predicted targets (PTEN, SOS1, LATS2), overrepresented in regulation of apoptosis. hsa-mir-106a-363 is a paralogue of prototypic oncogenic hsa-mir-17-92 cluster with yet unestablished role in the pathogenesis of T-ALL. Our study provides a firm basis and data resource for functional analyses on the role of miRNA-mRNA interactions in T-ALL."	"Prevalence of pathogenic and likely pathogenic variants in the RASopathy genes in patients who have had panel testing for cardiomyopathy. RASopathies are a group of developmental disorders caused by pathogenic variants in the RAS-MAPK pathway. Cardiomyopathy is a major feature of this group of disorders, specifically hypertrophic cardiomyopathy (HCM). HCM can be the first presenting feature in individuals with RASopathies. We conducted a retrospective study of all individuals who have had a cardiomyopathy gene panel ordered through our institution to determine the prevalence of pathogenic or likely pathogenic variants in RAS pathway genes in individuals with cardiomyopathy. We evaluated variants in the following genes: BRAF, CBL, HRAS, KRAS, MAP2K1, MAP2K2, NF1, NRAS, PTPN11, RAF1, SHOC2, and SOS1. We reviewed 74 cases with cardiomyopathy, including 32 with HCM, 24 with dilated cardiomyopathy (DCM), nine with both left ventricular noncompaction (LVNC) and DCM, four with LVNC only, two with arrhythmogenic right ventricular cardiomyopathy (ARVC) and three with unspecified cardiomyopathy. We identified four patients (5.41%) with pathogenic or likely pathogenic variants in HRAS, PTPN11 and RAF1 (two individuals). Indication for testing for all four individuals was HCM. The prevalence of pathogenic or likely pathogenic variants in RASopathy genes in our HCM patient cohort is 12.5% (4/32). We conclude that the RASopathy genes should be included on multi-gene panels for cardiomyopathy to increase diagnostic yield for individuals with HCM."	"High Prevalence of Growth Plate Gene Variants in Children With Familial Short Stature Treated With GH. Familial short stature (FSS) is a term describing a growth disorder that is vertically transmitted. Milder forms may result from the combined effect of multiple genes; more severe short stature is suggestive of a monogenic condition. The etiology of most FSS cases has not been thoroughly elucidated to date. To identify the genetic etiology of severe FSS in children treated with GH because of the diagnosis of small for gestational age or GH deficiency (SGA/GHD). Of 736 children treated with GH because of GHD/SGA, 33 with severe FSS (life-minimum height -2.5 SD or less in both the patient and shorter parent) were included in the study. The genetic etiology was known in 5 of 33 children prior to the study [ACAN (in 2], NF1, PTPN11, and SOS1). In the remaining 28 of 33, whole-exome sequencing was performed. The results were evaluated using American College of Medical Genetics and Genomics standards and guidelines. In 30 of 33 children (90%), we found at least one variant with potential clinical significance in genes known to affect growth. A genetic cause was elucidated in 17 of 33 (52%). Of these children, variants in growth plate-related genes were found in 9 of 17 [COL2A1, COL11A1, and ACAN (all in 2), FLNB, FGFR3, and IGF1R], and IGF-associated proteins were affected in 2 of 17 (IGFALS and HMGA2). In the remaining 6 of 17, the discovered genetic mechanisms were miscellaneous (TRHR, MBTPS2, GHSR, NF1, PTPN11, and SOS1). Single-gene variants are frequent among families with severe FSS, with variants affecting the growth plate being the most prevalent."	"Comparative transcriptome analysis reveals K<sup>+</sup> transporter gene contributing to salt tolerance in eggplant. Soil salinization is one of the most crucial abiotic stresses that limit the growth and production of eggplant. The existing researches in eggplant were mostly focused on salt-induced morphological, biochemical and physiological changes, with only limited works centered on salt-response genes in eggplant at the transcriptomic level. Our preliminary work found that Zhusiqie (No.118) is salt-tolerant and Hongqie (No.30) is salt-sensitive. Consequently, they were re-named as ST118 and SS30, respectively. ST118 showed less damaged on growth and higher K<sup>+</sup>/Na<sup>+</sup> ratios in leaves than SS30. Comparative-transcriptome analysis was used as a powerful approach to understand the salt-response mechanisms in the leaves and roots of SS30 and ST118. And it revealed that genotype-specific and organ-specific manners exist in eggplant in response to salt stress. Strikingly, the genotype-specific differentially expressed genes (DEGs) in ST118 were considered crucial to its higher salt-tolerance, because the expression patterns of common DEGs in the leaves/roots of the two eggplant genotypes were almost the same. Among them, some transcription factors have been reported to be in response to elevated external salinity, including the members of C2C2-CO-like, WRKY, MYB and NAC family. In addition, the AKT1, KAT1 and SOS1 were up-regulated only in the leaves of ST118. Furthermore, the complementation assays demonstrated that the salt-tolerances of both yeast and Arabidopsis akt1 mutants were enhanced by heterologous expression of SmAKT1. The comparative-transcriptome analysis indicated that the salt-tolerance can be increased by higher transcript level of some genotype-specific genes. This work revealed that eggplants seem to be more inclined to absorb K<sup>+</sup> rather than to exclude Na<sup>+</sup> under salt stress conditions because seven K<sup>+</sup> transporters were significantly up-regulated, while only one Na<sup>+</sup> transporter was similarly regulated. Finally, the complementation assays of SmAKT1, which is genotype-specific up-regulated in ST118, suggest that the other TFs and K<sup>+</sup> transport genes were worthy of future investigation for their functions in salinity tolerance."	"Small Molecule SOS1 Agonists Modulate MAPK and PI3K Signaling via Independent Cellular Responses. Activating mutations in RAS can lead to oncogenesis by enhancing downstream signaling, such as through the MAPK and PI3K pathways. Therefore, therapeutically targeting RAS may perturb multiple signaling pathways simultaneously. One method for modulating RAS signaling is to target the activity of the guanine nucleotide exchange factor SOS1. Our laboratory has discovered compounds that bind to SOS1 and activate RAS. Interestingly, these SOS1 agonist compounds elicit biphasic modulation of ERK phosphorylation and simultaneous inhibition of AKT phosphorylation levels. Here, we utilized multiple chemically distinct compounds to elucidate whether these effects on MAPK and PI3K signaling by SOS1 agonists were mechanistically linked. In addition, we used CRISPR/Cas9 gene-editing to generate clonally derived SOS1 knockout cells and identified a potent SOS1 agonist that rapidly elicited on-target molecular effects at substantially lower concentrations than those causing off-target effects. Our findings will allow us to further define the on-target utility of SOS1 agonists."	"Clinical and mutation profile of pediatric patients with RASopathy-associated hypertrophic cardiomyopathy: results from a Chinese cohort. The RASopathies are a class of developmental disorders caused by germline mutations in the RAS-mitogen-activated protein kinase (MAPK) pathway. Hypertrophic cardiomyopathy (HCM) has been frequently described in children with RASopathy, but only a minority of patients have received formal genotyping. The purpose of this study was to evaluate the genetic basis and clinical outcome of pediatric patients with RASopathy-associated HCM. We retrospectively reviewed the mutation spectrum and clinical outcome of all the patients with RASopathy derived from 168 pediatric HCM cases referred to our institution between January 2012 and July 2018. A heterozygous missense mutation in one of known RASopathy genes was identified in 46 unrelated children with HCM. Mutations in the PTPN11 gene were the most prevalent (19/46); this was followed by mutations in RAF1 (11/46), KRAS (5/46), RIT1 (4/46), BRAF (3/46), SOS1 (2/46), HRAS (1/46), and SHOC2 (1/46). Moreover, two compound heterozygous missense mutations in the LZTR1 gene were identified in one patient with the Noonan syndrome phenotype and HCM. The median age at the diagnosis of HCM was 3.0 months (range 0 months to 8.1 years). Twenty-one of the patients had significant left ventricular outflow tract obstruction and 32 had concomitant congenital heart disease. Three patients with a mutation in exon 13 of the PTPN11 gene died of cardiac failure at the ages of 3.0, 3.5, and 6.0 months. The remaining 44 patients were alive after an average follow-up time of 3.9 years (0.5 to 17.1 years, median 2.9 years) from the initial diagnosis of HCM, including 5 patients with spontaneous regression of their cardiac hypertrophy. RASopathy-associated HCM is a heterogeneous genetic condition characterized by early-onset cardiac hypertrophy and a high prevalence of co-existing congenital heart disease, which is most frequently related to specific mutations in the PTPN11 gene. Rapidly progressive HCM, resulting in an early death, is uncommon in RASopathy patients except those with specific mutations in exon 13 of the PTPN11 gene."	"Frontline Science: TNF-α and GM-CSF1 priming augments the role of SOS1/2 in driving activation of Ras, PI3K-γ, and neutrophil proinflammatory responses. Circulating neutrophils are, by necessity, quiescent and relatively unresponsive to acute stimuli. In regions of inflammation, mediators can prime neutrophils to react to acute stimuli with stronger proinflammatory, pathogen-killing responses. In neutrophils G protein-coupled receptor (GPCR)-driven proinflammatory responses, such as reactive oxygen species (ROS) formation and accumulation of the key intracellular messenger phosphatidylinositol (3,4,5)-trisphosphate (PIP3 ), are highly dependent on PI3K-γ, a Ras-GTP, and Gβγ coincidence detector. In unprimed cells, the major GPCR-triggered activator of Ras is the Ras guanine nucleotide exchange factor (GEF), Ras guanine nucleotide releasing protein 4 (RasGRP4). Although priming is known to increase GPCR-PIP3 signaling, the mechanisms underlying this augmentation remain unclear. We used genetically modified mice to address the role of the 2 RasGEFs, RasGRP4 and son of sevenless (SOS)1/2, in neutrophil priming. We found that following GM-CSF/TNFα priming, RasGRP4 had only a minor role in the enhanced responses. In contrast, SOS1/2 acquired a substantial role in ROS formation, PIP3 accumulation, and ERK activation in primed cells. These results suggest that SOS1/2 signaling plays a key role in determining the responsiveness of neutrophils in regions of inflammation."	"Enhanced expression of son of sevenless homolog 1 is predictive of poor prognosis in uveal malignant melanoma patients. The work outlined herein investigated the prognosis value and the potential role son of sevenless homolog 1 (SOS1) played in uveal melanoma (UM). We analyzed the mRNA expression level of SOS1 in primary UM cells based on the GSE44295 dataset obtained from the Gene Expression Omnibus (GEO, http://www.ncbi.nlm.nih.gov/geo/ ) database. The correlation between SOS1 expression and clinical characteristics were analyzed by Chi-squared (χ<sup>2</sup>) test. Then we used SOS1 siRNA to downregulate SOS1 expression in M23 cells. The effect of knockdown SOS1 on cell proliferation was studied using the Cell-Counting Kit-8 and colony formation assays. The influence of silencing SOS1 on cell motility was explored using wound-healing assays and transwell assays. In addition, the relationship between SOS1 and the MAPK signaling pathway was analyzed by western blot. Our results demonstrated that the mRNA expression level of SOS1 was markedly upregulated in UM cells (p &lt; 0.001) and correlated with poor prognosis in UM patients (p = 0.015). Moreover, SOS1 mRNA expression level was found to be positively associated with histological-type (p = 0.043) and death (p = 0.012). Knockdown of SOS1 caused an inhibition on M23 cell proliferation, migration, and invasion. Moreover, the phosphorylation levels of MEK and ERK were reduced in UM cells after downregulating SOS1 expression (p &lt; 0.010). Our data demonstrated that SOS1 might play a facilitating role in M23 cell growth and motility by regulating the MAPK signaling pathway. Furthermore, the data suggested that SOS1 may serve as an UM predictor of prognosis as well as a therapeutic target."	"Expression of maize calcium-dependent protein kinase (ZmCPK11) improves salt tolerance in transgenic Arabidopsis plants by regulating sodium and potassium homeostasis and stabilizing photosystem II. In plants, CALCIUM-DEPENDENT PROTEIN KINASES (CDPKs/CPKs) are involved in calcium signaling in response to endogenous and environmental stimuli. Here, we report that ZmCPK11, one of maize CDPKs, participates in salt stress response and tolerance. Salt stress induced expression and upregulated the activity of ZmCPK11 in maize roots and leaves. Activation of ZmCPK11 upon salt stress was also observed in roots and leaves of transgenic Arabidopsis plants expressing ZmCPK11. The transgenic plants showed a long-root phenotype under control conditions and a short-root phenotype under NaCl, abscisic acid (ABA) or jasmonic acid (JA) treatment. Analysis of ABA and JA content in roots indicated that ZmCPK11 can mediate root growth by regulating the levels of these phytohormones. Moreover, 4-week-old transgenic plants were more tolerant to salinity than the wild-type plants. Their leaves were less chlorotic and showed weaker symptoms of senescence accompanied by higher chlorophyll content and higher quantum efficiency of photosystem II. The expression of Na<sup>+</sup> /K<sup>+</sup> transporters (HKT1, SOS1 and NHX1) and transcription factors (CBF1, CBF2, CBF3, ZAT6 and ZAT10) with known links to salinity tolerance was upregulated in roots of the transgenic plants upon salt stress. Furthermore, the transgenic plants accumulated less Na<sup>+</sup> in roots and leaves under salinity, and showed a higher K<sup>+</sup> /Na<sup>+</sup> ratio in leaves. These results show that the improved salt tolerance in ZmCPK11-transgenic plants could be due to an upregulation of genes involved in the maintenance of intracellular Na<sup>+</sup> and K<sup>+</sup> homeostasis and a protection of photosystem II against damage."	"Discovery of potent SOS1 inhibitors that block RAS activation via disruption of the RAS-SOS1 interaction. Since the late 1980s, mutations in the RAS genes have been recognized as major oncogenes with a high occurrence rate in human cancers. Such mutations reduce the ability of the small GTPase RAS to hydrolyze GTP, keeping this molecular switch in a constitutively active GTP-bound form that drives, unchecked, oncogenic downstream signaling. One strategy to reduce the levels of active RAS is to target guanine nucleotide exchange factors, which allow RAS to cycle from the inactive GDP-bound state to the active GTP-bound form. Here, we describe the identification of potent and cell-active small-molecule inhibitors which efficiently disrupt the interaction between KRAS and its exchange factor SOS1, a mode of action confirmed by a series of biophysical techniques. The binding sites, mode of action, and selectivity were elucidated using crystal structures of KRAS<sup>G12C</sup>-SOS1, SOS1, and SOS2. By preventing formation of the KRAS-SOS1 complex, these inhibitors block reloading of KRAS with GTP, leading to antiproliferative activity. The final compound 23 (BAY-293) selectively inhibits the KRAS-SOS1 interaction with an IC50 of 21 nM and is a valuable chemical probe for future investigations."	"Fucoidan⁻Fucoxanthin Ameliorated Cardiac Function via IRS1/GRB2/ SOS1, GSK3β/CREB Pathways and Metabolic Pathways in Senescent Mice. The effects of low molecular weight fucoidan (LMWF) in combination with high-stability fucoxanthin (HSFUCO) on cardiac function and the metabolic pathways of aging mice (Mus musculus) were investigated. We demonstrated that LMWF and HSFUCO could improve cardiac function in aging mice. Aging mice were treated with LMWF and HSFUCO, either on their own or in combination, on 28 consecutive days. Electrocardiography and whole-cell patch-clamp were used to measure QT interval and action potential duration (APD) of the subjects. Cardiac tissue morphology, reactive oxygen species, and Western blot were also applied. Ultra-high-performance liquid chromatography⁻quadrupole time-of-flight (UPLC-QTOF) mass spectrometry was used for investigating metabolic alterations. The use of LMWF and HSFUCO resulted in improvements in both ventricular rhythms (QT and APD). Treatment with fucoidan and fucoxanthin reduced the expression levels of SOS1 and GRB2 while increasing GSK3β, CREB and IRS1 proteins expression in the aging process. Three main metabolic pathways, namely the TCA cycle, glycolysis, and steroid hormone biosynthesis, were highly enriched in the pathway enrichment analysis. When taken together, the LMWF and HSFUCO treatment improved both the ventricular rhythm and the muscular function of aging subjects by interfering with the metabolism and gene function."	"Identification and Characterization of Oncogenic SOS1 Mutations in Lung Adenocarcinoma. Lung adenocarcinomas are characterized by mutations in the receptor tyrosine kinase (RTK)/Ras/Raf pathway, with up to 75% of cases containing mutations in known driver genes. However, the driver alterations in the remaining cases are yet to be determined. Recent exome sequencing analysis has identified SOS1, encoding a guanine nucleotide exchange factor, as significantly mutated in lung adenocarcinomas lacking canonical oncogenic RTK/Ras/Raf pathway mutations. Here, we demonstrate that ectopic expression of lung adenocarcinoma-derived mutants of SOS1 induces anchorage-independent cell growth in vitro and tumor formation in vivo. Biochemical experiments suggest that these mutations lead to overactivation of the Ras pathway, which can be suppressed by mutations that disrupt either the Ras-GEF or putative Rac-GEF activity of SOS1. Transcriptional profiling reveals that the expression of mutant SOS1 leads to the upregulation of MYC target genes and genes associated with Ras transformation. Furthermore, we demonstrate that an AML cancer cell line harboring a lung adenocarcinoma-associated mutant SOS1 is dependent on SOS1 for survival and is also sensitive to MEK inhibition. Our work provides experimental evidence for the role of SOS1 as an oncogene and suggests a possible therapeutic strategy to target SOS1-mutated cancers. IMPLICATIONS: This study demonstrates that SOS1 mutations found in lung adenocarcinoma are oncogenic and that MEK inhibition may be a therapeutic avenue for the treatment of SOS1-mutant cancers."	"The Circulating Transcriptome as a Source of Biomarkers for Melanoma. The circulating transcriptome is a valuable source of cancer biomarkers, which, with the exception of microRNAs (miRNAs), remains relatively unexplored. To elucidate which RNAs are present in plasma from melanoma patients and which could be used to distinguish cancer patients from healthy individuals, we used next generation sequencing (NGS), and validation was carried out by qPCR and/or ddPCR. We identified 442 different microRNAs in samples, eleven of which were differentially expressed (p &lt; 0.05). Levels of miR-134-5p and miR-320a-3p were significantly down-regulated (p &lt; 0.001) in melanoma samples (n = 96) compared to healthy controls (n = 28). Differentially expressed protein-encoding mRNA 5'-fragments were enriched for the angiopoietin, p21-activated kinase (PAK), and EIF2 pathways. Levels of ATM1, AMFR, SOS1, and CD109 gene fragments were up-regulated (p &lt; 0.001) in melanoma samples (n = 144) compared to healthy controls (n = 41) (AUC = 0.825). Over 40% of mapped reads were YRNAs, a class of non-coding RNAs that to date has been little explored. Expression levels of RNY3P1, RNY4P1, and RNY4P25 were significantly higher in patients with stage 0 disease than either healthy controls or more advanced stage disease (p &lt; 0.001). In conclusion, we have identified a number of novel RNA biomarkers, which, most importantly, we validated in multi-center retrospective and prospective cohorts, suggesting potential diagnostic use of these RNA species."	"The CSN3 subunit of the COP9 signalosome interacts with the HD region of Sos1 regulating stability of this GEF protein. Sos1 is an universal, widely expressed Ras guanine nucleotide-exchange factor (RasGEF) in eukaryotic cells. Its N-terminal HD motif is known to be involved in allosteric regulation of Sos1 GEF activity through intramolecular interaction with the neighboring PH domain. Here, we searched for other cellular proteins also able to interact productively with the Sos1 HD domain. Using a yeast two-hybrid system, we identified the interaction between the Sos1 HD region and CSN3, the third component of the COP9 signalosome, a conserved, multi-subunit protein complex that functions in the ubiquitin-proteasome pathway to control degradation of many cellular proteins. The interaction of CSN3 with the HD of Sos1 was confirmed in vitro by GST pull-down assays using truncated mutants and reproduced in vivo by co-immunoprecipitation with the endogenous, full-length cellular Sos1 protein. In vitro kinase assays showed that PKD, a COP9 signalosome-associated-kinase, is able to phosphorylate Sos1. The intracellular levels of Sos1 protein were clearly diminished following CSN3 or PKD knockdown. A sizable fraction of the endogenous Sos1 protein was found ubiquitinated in different mammalian cell types. A significant reduction of RasGTP formation upon growth factor stimulation was also observed in CSN3-silenced as compared with control cells. Our data suggest that the interaction of Sos1 with the COP9 signalosome and PKD plays a significant role in maintenance of cellular Sos1 protein stability and homeostasis under physiological conditions and raises the possibility of considering the CSN/PKD complex as a potential target for design of novel therapeutic drugs."	"Genome wide identification of the trihelix transcription factors and overexpression of Gh_A05G2067 (GT-2), a novel gene contributing to increased drought and salt stresses tolerance in cotton. We identified 102, 51 and 51 proteins encoded by the trihelix genes in Gossypium hirsutum, Gossypium arboreum and Gossypium raimondii, respectively. RNA sequence data and real-time quantitative polymerase chain reaction analysis showed that Gh_A05G2067 (GT-2) was highly upregulated under drought and salt stress conditions. Transient expression of GT-2-green fluorescent protein fusion protein in protoplast showed that GT-2 was localized in the nucleus. The overexpression of GT-2 conferred an enhanced drought tolerance to cotton, with lower malondialdehyde, hydrogen peroxide contents and higher reactive oxygen scavenging enzyme activities. Moreover, chlorophyll content, relative leaf water content (RLWC), excised leaf water loss (ELWL) and cell membrane stability (CMS) were relatively stable in the GT-2-overexpressed lines compared to wild-type (WT). Similarly, stress-responsive genes RD29A, SOS1, ABF4 and CBL1 were highly upregulated in the GT-2-overexpressed lines but were significantly downregulated in WT. In addition, the GT-2-silenced cotton plants exhibited a high level of oxidation injury, due to high levels of oxidant enzymes, in addition to negative effects on CMS, ELWL, RLWC and chlorophyll content. These results mark the foundation for future exploration of the trihelix genes in cotton, with an aim of developing more resilient, versatile and highly tolerant cotton genotypes."	"Bisphenol A induces human uterine leiomyoma cell proliferation through membrane-associated ERα36 via nongenomic signaling pathways. The role of ERα36 in regulating BPA's effects and its potential as a risk factor for human uterine fibroids were evaluated. BPA at low concentrations (10<sup>-6</sup> μM - 10 μM) increased proliferation by facilitating progression of hormonally regulated, immortalized human uterine leiomyoma (ht-UtLM; fibroid) cells from G0-G1 into S phase of the cell cycle; whereas, higher concentrations (100 μM-200 μM) decreased growth. BPA upregulated ERα36 gene and protein expression, and induced increased SOS1 and Grb2 protein expression, both of which are mediators of the MAPKp44/42/ERK1/2 pathway. EGFR (pEGFR), Ras, and MAPKp44/42 were phosphorylated with concurrent Src activation in ht-UtLM cells within 10 min of BPA exposure. BPA enhanced colocalization of phosphorylated Src (pSrc) to ERα36 and coimmunoprecipitation of pSrc with pEGFR. Silencing ERα36 with siERα36 abolished the above effects. BPA induced proliferation in ht-UtLM cells through membrane-associated ERα36 with activation of Src, EGFR, Ras, and MAPK nongenomic signaling pathways."	"Epstein-Barr virus microRNAs regulate B cell receptor signal transduction and lytic reactivation. MicroRNAs (miRNAs) are post-transcriptional regulatory RNAs that can modulate cell signaling and play key roles in cell state transitions. Epstein-Barr virus (EBV) expresses &gt;40 viral miRNAs that manipulate both viral and cellular gene expression patterns and contribute to reprogramming of the host environment during infection. Here, we identified a subset of EBV miRNAs that desensitize cells to B cell receptor (BCR) stimuli, and attenuate the downstream activation of NF-kappaB or AP1-dependent transcription. Bioinformatics and pathway analysis of Ago PAR-CLIP datasets identified multiple EBV miRNA targets related to BCR signal transduction, including GRB2, SOS1, MALT1, RAC1, and INPP5D, which we validated in reporter assays. BCR signaling is critical for B cell activation, proliferation, and differentiation, and for EBV, is linked to reactivation. In functional assays, we demonstrate that EBV miR-BHRF1-2-5p contributes to the growth of latently infected B cells through GRB2 regulation. We further determined that activities of EBV miR-BHRF1-2-5p, EBV miR-BART2-5p, and a cellular miRNA, miR-17-5p, directly regulate virus reactivation triggered by BCR engagement. Our findings provide mechanistic insight into some of the key miRNA interactions impacting the proliferation of latently infected B cells and importantly, governing the latent to lytic switch."	"A cation diffusion facilitator, GmCDF1, negatively regulates salt tolerance in soybean. Salt stress is one of the major abiotic factors that affect the metabolism, growth and development of plants, and soybean [Glycine max (L.) Merr.] germination is sensitive to salt stress. Thus, to ensure the successful establishment and productivity of soybeans in saline soil, the genetic mechanisms of salt tolerance at the soybean germination stage need to be explored. In this study, a population of 184 recombinant inbred lines (RILs) was utilized to map quantitative trait loci (QTLs) related to salt tolerance. A major QTL related to salt tolerance at the soybean germination stage named qST-8 was closely linked with the marker Sat_162 and detected on chromosome 8. Interestingly, a genome-wide association study (GWAS) identified several single nucleotide polymorphisms (SNPs) significantly associated with salt tolerance in the same genetic region on chromosome 8. Resequencing, bioinformatics and gene expression analyses were implemented to identify the candidate gene Glyma.08g102000, which belongs to the cation diffusion facilitator (CDF) family and was named GmCDF1. Overexpression and RNA interference of GmCDF1 in soybean hairy roots resulted in increased sensitivity and tolerance to salt stress, respectively. This report provides the first demonstration that GmCDF1 negatively regulates salt tolerance by maintaining K+-Na+ homeostasis in soybean. In addition, GmCDF1 affected the expression of two ion homeostasis-associated genes, salt overly sensitive 1 (GmSOS1) and Na+/H+ exchanger 1 (GmNHX1), in transgenic hairy roots. Moreover, a haplotype analysis detected ten haplotypes of GmCDF1 in 31 soybean genotypes. A candidate-gene association analysis showed that two SNPs in GmCDF1 were significantly associated with salt tolerance and that Hap1 was more sensitive to salt stress than Hap2. The results demonstrated that the expression level of GmCDF1 was negatively correlated with salt tolerance in the 31 soybean accessions (r = -0.56, P &lt; 0.01). Taken together, these results not only indicate that GmCDF1 plays a negative role in soybean salt tolerance but also help elucidate the molecular mechanisms of salt tolerance and accelerate the breeding of salt-tolerant soybean."	"Marker-free transgenic rice plant overexpressing pea LecRLK imparts salinity tolerance by inhibiting sodium accumulation. PsLecRLK overexpression in rice provides tolerance against salinity stress and cause upregulation of SOS1 pathway genes, which are responsible for extrusion of excess Na+ ion under stress condition. Soil salinity is one of the most devastating factors threatening cultivable land. Rice is a major staple crop and immensely affected by soil salinity. The small genome size of rice relative to wheat and barley, together with its salt sensitivity, makes it an ideal candidate for studies on salt stress response caused by a particular gene. Under stress conditions crosstalk between organelles and cell to cell response is imperative. LecRLK is an important family, which plays a key role under stress conditions and regulates the physiology of the plant. Here we have functionally validated the PsLecRLK gene in rice for salinity stress tolerance and hypothesized the model for its working. Salt stress sensitive rice variety IR64 was used for developing marker-free transgenic with modified binary vector pCAMBIA1300 overexpressing PsLecRLK gene. Comparison of transgenic and wild-type (WT) plants showed better physiological and biochemical results in transgenic lines with a low level of ROS, MDA and ion accumulation and a higher level of proline, relative water content, root/shoot ration, enzymatic activities of ROS scavengers and upregulation of stress-responsive genes. Based on the relative expression of stress-responsive genes and ionic content, the working model highlights the role of PsLecRLK in the extrusion of Na<sup>+</sup> ion from the cell. This extrusion of Na<sup>+</sup> ion is facilitated by higher expression of SOS1 (Na<sup>+</sup>/K<sup>+</sup> channel) in transgenic plants as compared to WT plants. Altered expression of stress-responsive genes and change in biochemical and physiological properties of the cell suggests an extensive reprogramming of the stress-responsive metabolic pathways by PsLecRLK under stress condition, which could be responsible for the salt tolerance capability."	"Na<sup>+</sup>/K<sup>+</sup> Balance and Transport Regulatory Mechanisms in Weedy and Cultivated Rice (Oryza sativa L.) Under Salt Stress. Salinization is a primary abiotic stress constraining global plant growth and production. Weedy rice, though highly homologous to cultivated rice, is more salt tolerant during seed germination and seedling growth; we hypothesize that this is owing to ionic homeostasis and changes in the expression of genes encoding ion transport regulators. The four different genotypes of weedy (JYGY-1 and JYFN-4) and cultivated (Nipponbare and 9311) rice have different salt-tolerance during seed germination and seedling vegetative growth under salt stress. In this study, Na<sup>+</sup> and Ca<sup>2+</sup>content increased in weedy and cultivated rice genotypes under salt stress while K<sup>+</sup> and Mg<sup>2+</sup>decreased; however, JYGY-1 had the lowest Na<sup>+</sup>/K<sup>+</sup> ratio of assessed genotypes. Genes in the high-affinity K<sup>+</sup> transporter (HKT) and tonoplast sodium-hydrogen exchanger (NHX) families, and salt overly sensitive 1 (OsSOS1) have more than 98% homology in amino acid sequences between weedy and cultivated rice genotypes. Under salt stress, the HKT family members were differentially expressed in the roots and shoots of four different genotypes. However, the NHX family transcripts were markedly up-regulated in all genotypes, but there are significant differences between different genotypes. OsSOS1 was significantly up-regulated in roots, especially in JYGY-1genotype. The results showed that different genotypes had different germination and nutrient survival under salt stress, which was related to the difference of ion content and the difference of a series of ion transport gene expression. At the same time this study will provide new insight into the similarities and differences in ion homeostasis and gene regulatory mechanisms between weedy and cultivated rice under salt stress, which can aid in novel rice breeding and growth strategies."	"Citron kinase (CIT-K) promotes aggressiveness and tumorigenesis of breast cancer cells in vitro and in vivo: preliminary study of the underlying mechanism. Citron kinase (CIT-K), as a key Rho effector, functions to maintain proper structure of the midbody during cell mitosis. This study assessed CIT-K expression and its role in breast cancer cells. Paraffin-embedded breast cancer and para-tumor tissues from 43 invasive breast cancer patients and 33 normal mammary glands were collected for immunohistochemistry. CIT-K expression knockdown was achieved using lentivirus carrying CIT-K shRNA in a wide range of breast cancer cell lines. Cells were then subjected to Western blot, qRT-PCR, cell proliferation, colony formation, transwell, and flow cytometric assays. The tumorigenicity of CIT-K knocked-down breast cancer cells was assessed using the nude mouse xenograft assay. Microarray analysis was performed to elucidate the underlying gene regulation after CIT-K silencing. CIT-K protein was overexpressed in breast cancer tissues, which is associated with advanced tumor stage, HER-2 expression and Ki-67 expression, whereas knockdown of CIT-K expression reduced breast cancer cell proliferation and colony formation, but promoted tumor cell apoptosis and cell-cycle arrest. Knockdown of CIT-K expression also inhibited breast cancer cell migration and invasion capacity. Moreover, CIT-K knockdown suppressed the tumorigenicity of breast cancer cells in nude mice. Molecularly, the expression of a variety of signaling genes, such as cyclin D1, EGFR, JAK1, TGF-α, PTK2, RAF1, RALB, SOS1, mTOR, and PTGS2, were altered after CIT-K knockdown. This study demonstrated that CIT-K is associated with aggressive breast cancer behavior and targeting CIT-K may be a novel strategy for the future control of breast cancer."	"Pathogenic gene screening in 91 Chinese patients with short stature of unknown etiology with a targeted next-generation sequencing panel. Dwarfism is a common severe growth disorder, but the etiology is unclear in the majority of cases. Recombinant human growth hormone may be a treatment option, but it has limited efficacy. The currently known laboratory assays do not meet the precision requirements for clinical diagnosis. Here, we have constructed a targeted next-generation sequencing (NGS) panel of selected genes that are suspected to be associated with dwarfism for genetic screening. Genetic screening of 91 children with short stature of unknown etiology was performed with the help of the NGS panel. All the coding regions and exon-intron boundaries of 166 genes were included in the panel. To clarify the pathogenicity of these mutations, their clinical data were reviewed and analyzed. The assay identified p.A72G, p.I282V, and p.P491S variants of the PTPN11 gene and a p.I437T variant of the SOS1 gene in 4 cases with Noonan syndrome. A frameshift mutation (p.D2407fs) of the ACAN gene was identified in a case of idiopathic short stature with moderately advanced bone age. A p.R904C variant of the COL2A1 gene was found in a patient, who was accordingly diagnosed with Stickler syndrome. Severe short stature without limb deformity was associated with a p.G11A variant of HOXD13. In addition, we evaluated evidence that a p.D401N variant of the COMP gene may cause multiple epiphyseal dysplasia. Our findings suggest that syndromes, particularly Noonan syndrome, may be overlooked due to atypical clinical features. This gene panel has been verified to be effective for the rapid screening of genetic etiologies associated with short stature and for guiding precision medicine-based clinical management."	"Mutual inhibitions between epidermal growth factor receptor signaling and miR-124a control pancreatic progenitor proliferation. Pancreatic stem/progenitor cells convert from a proliferative to a differentiated fate passing through proliferation cease to a resting state. However, the molecular mechanisms of cell cycle arrest are poorly understood. In this study, we demonstrated that the microRNA-124a (miR-124a) inhibited the proliferation of pancreatic progenitor cells both in vitro and ex vivo and promoted a quiescent state. The miR-124a directly targeted SOS Ras/Rac guanine nucleotide exchange factor 1 (SOS1), IQ motif-containing GTPase-activating protein 1 (IQGAP1), signal transducer and activator of transcription 3 (STAT3), and cyclin D2 (CCND2), thereby inactivating epidermal growth factor receptor (EGFR) downstream signaling pathways including mitogen-activated protein kinase/extracellular signal-regulated kinase (MEK/ERK), phosphatidylinositol 3-kinase-protein kinase B (PI3K/AKT) and Janus kinase (JAK)/STAT3. miR-124a blocked cell proliferation mainly through targeting STAT3 to inhibit PI3K/AKT and JAK/STAT3 signaling. Moreover, miR-124a expression was negatively regulated by EGFR downstream PI3K/AKT signaling. These results indicated that miR-124a and EGFR signaling mutually interact to form a regulating circuit that determines the proliferation of pancreatic progenitor cells."	"Comparison of effectiveness of growth hormone therapy according to disease-causing genes in children with Noonan syndrome. To analyze the growth response to growth hormone (GH) therapy in prepubertal patients with Noonan syndrome (NS) harboring different genetic mutations. Twenty-three patients with prepubertal NS treated at Pusan National University Children's Hospital between March 2009 and July 2017 were enrolled. According to the disease-causing genes identified, the patients with NS were divided into 4 groups. Three groups were positive for mutations of the PTPN11, RAF1, and SOS1 genes. The five genes undetected (FGU) group was negative for PTPN11, RAF1, SOS1, KRAS, and BRAF gene mutations. The influence of genotype was retrospectively analyzed by comparing the growth parameters after GH therapy. The mean chronological age at the start of GH treatment was 5.85±2.67 years. At the beginning of the GH treatment, the height standard deviation score (SDS), growth velocity (GV), and lower levels of insulin-like growth factor-1 (IGF)-1 levels were not statistically different among the groups. All the 23 NS patients had significantly increased height SDS and serum IGF-1 level during the 3 years of treatment. GV was highest during the first year of treatment. During the 3 years of GH therapy, the PTPN11, RAF1, and SOS1 groups showed less improvement in height SDS, IGF-1 SDS, and GV, and less increase in bone age-to-chronological age ratio than the FGU group. The 3-year GH therapy in the 23 prepubertal patients with NS was effective in improving height SDS, GV, and serum IGF-1 levels. The FGU group showed a better response to recombinant human GH therapy than the PTPN11, RAF1, and SOS1 groups."	"Runs of homozygosity associate with decreased risks of lung cancer in never-smoking East Asian females. Although genome-wide association studies (GWASs) have identified some risk single-nucleotide polymorphisms in East Asian never-smoking females, the unexplained missing heritability is still required to be investigated. Runs of homozygosity (ROHs) are thought to be a type of genetic variation acting on human complex traits and diseases. We detected ROHs in 8,881 East Asian never-smoking women. The summed ROHs were used to fit a logistic regression model which noteworthily revealed a significant association between ROHs and the decreased risk of lung cancer (P &lt; 0.05). We identified 4 common ROHs regions located at 2p22.1, which were significantly associated with decreased risk of lung cancer (P = 2.00 × 10<sup>-4</sup> - 1.35 × 10<sup>-4</sup>). Functional annotation was conducted to investigate the regulatory function of ROHs. The common ROHs were overlapped with potential regulatory elements, such as active epigenome elements and chromatin states in lung-derived cell lines. SOS1 and ARHGEF33 were significantly up-regulated as the putative target genes of the identified ROHs in lung cancer samples according to the analysis of differently expressed genes. Our results suggest that ROHs could act as recessive contributing factors and regulatory elements to influence the risk of lung cancer in never-smoking East Asian females."	"Exogenous myo-inositol alleviates salinity-induced stress in Malus hupehensis Rehd. Myo-inositol mediates various physiological processes and stress responses. Here, we investigated its role in Malus hupehensis Rehd. plants when grown hydroponically under saline conditions. Salt-stressed plants showed reduced growth and marked declines in photosynthetic activity and chlorophyll concentrations. However, pretreatment with 50 μM myo-inositol significantly alleviated those inhibitions and enabled plants to maintain their photosynthetic capacity. In addition to changing stomatal behavior, exogenous myo-inositol inhibited ROS accumulation and Na<sup>+</sup> uptake. In contrast, activities of antioxidant systems were enhanced, and expression was elevated for genes involved in Na<sup>+</sup> uptake (e.g., HKT1, NHX1, SOS1, and SOS2). This exogenous application also provoked the accumulation of sugars or sugar alcohols, which partially contributed to the maintenance of osmotic balance, and the scavenging of ROS, either directly or indirectly. In summary, myo-inositol appears to alleviate the salt-induced inhibition of physiological processes for M. hupehensis, not only by supporting the plant's antioxidant defense system but also by mediating Na<sup>+</sup> and K<sup>+</sup> homeostasis and the osmotic balance."	"[Research progress on pathophysiological function of SOS1 protein]. Son of sevenless homolog 1 (SOS1) protein is a ubiquitously expressed adapter. As a key protein in intracellular signaling, SOS1 plays an important role in many signal transduction pathways, such as Ras and Rac signaling pathways. The abnormal expression or mutation of SOS1 is closely related to clinical diseases. In this article, we review research progress on SOS1 functions and its roles in physiology and pathophysiology."	"Unique dependence on Sos1 in Kras<sup> G12D </sup> -induced leukemogenesis. We and others have previously shown that Kras<sup> G12D </sup> is a much more potent oncogene than oncogenic Nras in hematological malignancies. We attributed the strong leukemogenic activity of Kras<sup>G12D</sup> at least partially to its unique capability to hyperactivate wild-type (WT) Nras and Hras. Here, we report that Sos1, a guanine nucleotide exchange factor, is required to mediate this process. Sos1 is overexpressed in Kras<sup> G12D/+ </sup> cells, but not in Nras<sup> Q61R/+ </sup> and Nras<sup>G12D/+</sup> cells. Kras<sup>G12D</sup> proteins form a complex with Sos1 in vivo. Sos1 deficiency attenuates hyperactivation of WT Nras, Hras, and the downstream ERK signaling in Kras<sup>G12D/+</sup> cells. Thus, Sos1 deletion ameliorates oncogenic Kras-induced myeloproliferative neoplasm (MPN) phenotypes and prolongs the survival of Kras<sup>G12D/+</sup> mice. In contrast, Sos1 is dispensable for hyperactivated granulocyte-macrophage colony-stimulating factor signaling in Nras<sup> Q61R/+ </sup> cells, and Sos1<sup> -/- </sup> does not affect MPN phenotypes in Nras<sup> Q61R/+ </sup> mice. Moreover, the survival of Kras<sup> G12D/+ </sup>; Sos1<sup> -/- </sup> recipients is comparable to that of Kras<sup> G12D/+ </sup> recipients treated with combined MEK and JAK inhibitors. Our study suggests that targeting Sos1-oncogenic Kras interaction may improve the survival of cancer patients with KRAS mutations."	"Selfish mutations dysregulating RAS-MAPK signaling are pervasive in aged human testes. Mosaic mutations present in the germline have important implications for reproductive risk and disease transmission. We previously demonstrated a phenomenon occurring in the male germline, whereby specific mutations arising spontaneously in stem cells (spermatogonia) lead to clonal expansion, resulting in elevated mutation levels in sperm over time. This process, termed &quot;selfish spermatogonial selection,&quot; explains the high spontaneous birth prevalence and strong paternal age-effect of disorders such as achondroplasia and Apert, Noonan and Costello syndromes, with direct experimental evidence currently available for specific positions of six genes (FGFR2, FGFR3, RET, PTPN11, HRAS, and KRAS). We present a discovery screen to identify novel mutations and genes showing evidence of positive selection in the male germline, by performing massively parallel simplex PCR using RainDance technology to interrogate mutational hotspots in 67 genes (51.5 kb in total) in 276 biopsies of testes from five men (median age, 83 yr). Following ultradeep sequencing (about 16,000×), development of a low-frequency variant prioritization strategy, and targeted validation, we identified 61 distinct variants present at frequencies as low as 0.06%, including 54 variants not previously directly associated with selfish selection. The majority (80%) of variants identified have previously been implicated in developmental disorders and/or oncogenesis and include mutations in six newly associated genes (BRAF, CBL, MAP2K1, MAP2K2, RAF1, and SOS1), all of which encode components of the RAS-MAPK pathway and activate signaling. Our findings extend the link between mutations dysregulating the RAS-MAPK pathway and selfish selection, and show that the aging male germline is a repository for such deleterious mutations."	"Noonan syndrome males display Sertoli cell-specific primary testicular insufficiency. Context Abnormalities in the hypothalamo-pituitary-gonadal axis have long been reported in Noonan syndrome (NS) males with only few data available in prepubertal children. Objective The aim of this study was to describe the gonadal function of NS males from childhood to adulthood. Design It is a retrospective chart review. Patients and methods A total of 37 males with a genetically confirmed diagnosis of NS were included. Clinical and genetic features, as well as serum hormone levels (LH, FSH, testosterone, anti-Müllerian hormone (AMH), and inhibin B) were analysed. Results Of the 37 patients, 16 (43%) children had entered puberty at a median age of 13.5 years (range: 11.4-15.0 years); age at pubertal onset was negatively correlated with BMI SDS (r = -0.541; P = 0.022). In pubertal boys, testosterone levels were normal suggesting a normal Leydig cell function. In contrast, NS patients had significant lower levels of AMH (mean SDS: -0.6 ± 1.1; P = 0.003) and inhibin B (mean SDS: -1.1 ± 1.2; P &lt; 0.001) compared with the general population, suggesting a Sertoli cell dysfunction. Lower AMH and inhibin B levels were found in NS-PTPN11 patients, whereas these markers did not differ from healthy children in SOS1 patients. No difference was found between cryptorchid and non-cryptorchid patients for AMH and inhibin B levels (P = 0.43 and 0.62 respectively). Four NS-PTPN11 patients had a severe primary hypogonadism with azoospermia/cryptozoospermia. Conclusions NS males display Sertoli cell-specific primary testicular insufficiency, whereas Leydig cell function seems to be unaffected."	"KRAS and EGFR Amplifications Mediate Resistance to Rociletinib and Osimertinib in Acquired Afatinib-Resistant NSCLC Harboring Exon 19 Deletion/T790M in EGFR. The critical T790M mutation in EGFR, which mediates resistance to first- and second-generation EGFR tyrosine kinase inhibitors (TKI; gefitinib, erlotinib, and afatinib), has facilitated the development of third-generation mutation-selective EGFR TKIs (rociletinib and osimertinib). We previously reported heterogeneous afatinib-resistant mechanisms, including emergence of T790M-EGFR, and responses to third-generation EGFR TKIs. Here, we used afatinib-resistant lung adenocarcinoma cells [AfaR (formerly AFR3) cells], carrying exon 19 deletion/T790M in EGFR To identify the novel resistance mechanisms in post-afatinib treatment, RocR1/RocR2 and OsiR1/OsiR2 cells were established using increasing concentrations of rociletinib and osimertinib, respectively. Attenuation of exon 19 deletion and T790M was confirmed in both rociletinib-resistant cells; in addition, EGFR and KRAS amplification was observed in RocR1 and RocR2, respectively. Significant KRAS amplification was observed in the osimertinib-resistant cell lines, indicating a linear and reversible increase with increased osimertinib concentrations in OsiR1 and OsiR2 cells. OsiR1 cells maintained osimertinib resistance with KRAS amplification after osimertinib withdrawal for 2 months. OsiR2 cells exhibited KRAS attenuation, and osimertinib sensitivity was entirely recovered. Phospho-EGFR (Y1068) and growth factor receptor-bound protein 2 (GRB2)/son of sevenless homolog 1 (SOS1) complex was found to mediate osimertinib resistance in OsiR1 cells with sustained KRAS activation. After 2 months of osimertinib withdrawal, this complex was dissociated, and the EGFR signal, but not the GRB2/SOS1 signal, was activated. Concomitant inhibition of MAPK kinase and EGFR could overcome osimertinib resistance. Thus, we identified a heterogeneous acquired resistance mechanism for third-generation EGFR TKIs, providing insights into the development of novel treatment strategies."	"Full-length transcriptome sequences of ephemeral plant Arabidopsis pumila provides insight into gene expression dynamics during continuous salt stress. Arabidopsis pumila is native to the desert region of northwest China and it is extraordinarily well adapted to the local semi-desert saline soil, thus providing a candidate plant system for environmental adaptation and salt-tolerance gene mining. However, understanding of the salt-adaptation mechanism of this species is limited because of genomic sequences scarcity. In the present study, the transcriptome profiles of A. pumila leaf tissues treated with 250 mM NaCl for 0, 0.5, 3, 6, 12, 24 and 48 h were analyzed using a combination of second-generation sequencing (SGS) and third-generation single-molecule real-time (SMRT) sequencing. Correction of SMRT long reads by SGS short reads resulted in 59,328 transcripts. We found 8075 differentially expressed genes (DEGs) between salt-stressed tissues and controls, of which 483 were transcription factors and 1157 were transport proteins. Most DEGs were activated within 6 h of salt stress and their expression stabilized after 48 h; the number of DEGs was greatest within 12 h of salt stress. Gene annotation and functional analyses revealed that expression of genes associated with the osmotic and ionic phases rapidly and coordinately changed during the continuous salt stress in this species, and salt stress-related categories were highly enriched among these DEGs, including oxidation-reduction, transmembrane transport, transcription factor activity and ion channel activity. Orphan, MYB, HB, bHLH, C3H, PHD, bZIP, ARF and NAC TFs were most enriched in DEGs; ABCB1, CLC-A, CPK30, KEA2, KUP9, NHX1, SOS1, VHA-A and VP1 TPs were extensively up-regulated in salt-stressed samples, suggesting that they play important roles in slat tolerance. Importantly, further experimental studies identified a mitogen-activated protein kinase (MAPK) gene MAPKKK18 as continuously up-regulated throughout salt stress, suggesting its crucial role in salt tolerance. The expression patterns of the salt-responsive 24 genes resulted from quantitative real-time PCR were basically consistent with their transcript abundance changes identified by RNA-Seq. The full-length transcripts generated in this study provide a more accurate depiction of gene transcription of A. pumila. We identified potential genes involved in salt tolerance of A. pumila. These data present a genetic resource and facilitate better understanding of salt-adaptation mechanism for ephemeral plants."	"Discovery of Quinazolines That Activate SOS1-Mediated Nucleotide Exchange on RAS. Proteins in the RAS family are important regulators of cellular signaling and, when mutated, can drive cancer pathogenesis. Despite considerable effort over the last 30 years, RAS proteins have proven to be recalcitrant therapeutic targets. One approach for modulating RAS signaling is to target proteins that interact with RAS, such as the guanine nucleotide exchange factor (GEF) son of sevenless homologue 1 (SOS1). Here, we report hit-to-lead studies on quinazoline-containing compounds that bind to SOS1 and activate nucleotide exchange on RAS. Using structure-based design, we refined the substituents attached to the quinazoline nucleus and built in additional interactions not present in the initial HTS hit. Optimized compounds activate nucleotide exchange at single-digit micromolar concentrations in vitro. In HeLa cells, these quinazolines increase the levels of RAS-GTP and cause signaling changes in the mitogen-activated protein kinase/extracellular regulated kinase (MAPK/ERK) pathway."	"MicroRNA 628 suppresses migration and invasion of breast cancer stem cells through targeting SOS1. The purpose of this study is to evaluate the effects of miR-628 on migration and invasion of breast cancer stem cells (CSCs), which are essential for tumor recurrence and metastasis. Quantitative reverse transcription-polymerase chain reaction was used to determine the expression of microRNAs and mRNAs. A subpopulation of CD44<sup>+</sup>/CD24<sup>-</sup> breast CSCs were sorted by flow cytometry. Transwell assays were used to evaluate cell migration and invasion. Luciferase reporter assays were performed to verify whether miR-628 targeted SOS Ras/Rac guanine nucleotide exchange factor 1 (SOS1). pcDNA3.1(+)-SOS1 was constructed for overexpressing SOS1 after transfection. Compared with primary breast cancer cells, bone metastatic breast cancer cells showed significant downregulation of miR-628. The CD44<sup>+</sup>/CD24<sup>-</sup> breast CSC subpopulations in MDA-MB-231 and MCF-7 cell lines were analyzed and sorted. Transfection with an miR-628 mimic significantly suppressed the migration and invasion of these breast CSCs by targeting SOS1, which plays an essential role in epithelial-to-mesenchymal transition. Overexpression of SOS1 rescued miR-628-mediated migration and invasion by upregulating Snail and vimentin, and downregulating E-cadherin. miR-628 suppressed migration and invasion of breast CSCs of MDA-MB-231 and MCF-7 cells by directly targeting SOS1. Enhancement of miR-628 expression might be an effective strategy for managing breast cancer metastasis."	"Protein X-ray crystallography of the 14-3-3ζ/SOS1 complex. Activation of Ras-MAPK signaling regulates essential cellular functions; its aberration leads to irregular cell proliferation and differentiation (i.e. pancreatic cancer). Previously, it was revealed that the formation of the complex of the 14-3-3 protein and the Son of sevenless homolog 1 (SOS1) - one of the main actors of the Ras-MAPK cascade -, would represent a key-process to downstream the deviant Ra-MAPK signaling. In this data article we attempt to shed some light on the 3D structure, providing useful details about the crystallization process of the 14-3-3ζ dimer in complex with the 13-mer SOS1pS<sup>1161</sup>. The crystal structure is deposited at the Protein Data Bank with identifier 6F08. This Data in Brief article refers to &quot;Structural characterization of 14-3-3ζ in complex with the human Son of sevenless homolog 1 (SOS1) (2018).&quot;"	"Draft genome sequence of first monocot-halophytic species Oryza coarctata reveals stress-specific genes. Oryza coarctata (KKLL; 2n = 4x = 48, 665 Mb) also known as Porteresia coarctata is an extreme halophyte species of genus Oryza. Using Illumina and Nanopore reads, we achieved the assembled genome size of 569.9 Mb, accounting 85.69% of the estimated genome size with N50 of 1.85 Mb and 19.89% repetitive region. We also found 230,968 simple sequence repeats (SSRs) and 5,512 non-coding RNAs (ncRNAs). The functional annotation of predicted 33,627 protein-coding genes and 4,916 transcription factors revealed that high salinity adaptation of this species is due to the exclusive or excessive presence of stress-specific genes as compared to rice. We have identified 8 homologs to salt-tolerant SOS1 genes, one of the three main components of salt overly sensitive (SOS) signal pathway. On the other hand, the phylogenetic analysis of the assembled chloroplast (134.75 kb) and mitochondrial genome (491.06 kb) favours the conservative nature of these organelle genomes within Oryza taxon."	"Discovery and Structure-Based Optimization of Benzimidazole-Derived Activators of SOS1-Mediated Nucleotide Exchange on RAS. Son of sevenless homologue 1 (SOS1) is a guanine nucleotide exchange factor that catalyzes the exchange of GDP for GTP on RAS. In its active form, GTP-bound RAS is responsible for numerous critical cellular processes. Aberrant RAS activity is involved in ∼30% of all human cancers; hence, SOS1 is an attractive therapeutic target for its role in modulating RAS activation. Here, we describe a new series of benzimidazole-derived SOS1 agonists. Using structure-guided design, we discovered small molecules that increase nucleotide exchange on RAS in vitro at submicromolar concentrations, bind to SOS1 with low double-digit nanomolar affinity, rapidly enhance cellular RAS-GTP levels, and invoke biphasic signaling changes in phosphorylation of ERK 1/2. These compounds represent the most potent series of SOS1 agonists reported to date."	"Oncogenic RAS isoforms show a hierarchical requirement for the guanine nucleotide exchange factor SOS2 to mediate cell transformation. About a third of tumors have activating mutations in HRAS, NRAS, or KRAS, genes encoding guanosine triphosphatases (GTPases) of the RAS family. In these tumors, wild-type RAS cooperates with mutant RAS to promote downstream effector activation and cell proliferation and transformation, suggesting that upstream activators of wild-type RAS are important modulators of mutant RAS-driven oncogenesis. The guanine nucleotide exchange factor (GEF) SOS1 mediates KRAS-driven proliferation, but little is understood about the role of SOS2. We found that RAS family members have a hierarchical requirement for the expression and activity of SOS2 to drive cellular transformation. In mouse embryonic fibroblasts (MEFs), SOS2 critically mediated mutant KRAS-driven, but not HRAS-driven, transformation. Sos2 deletion reduced epidermal growth factor (EGF)-dependent activation of wild-type HRAS and phosphorylation of the kinase AKT in cells expressing mutant RAS isoforms. Assays using pharmacological inhibitors revealed a hierarchical requirement for signaling by phosphoinositide 3-kinase (PI3K) in promoting RAS-driven cellular transformation that mirrored the requirement for SOS2. KRAS-driven transformation required the GEF activity of SOS2 and was restored in Sos2<sup> -/- </sup> MEFs by expression of constitutively activated PI3K. Finally, CRISPR/Cas9-mediated deletion of SOS2 reduced EGF-stimulated AKT phosphorylation and synergized with MEK inhibition to revert the transformed phenotype of human KRAS mutant pancreatic and lung tumor cells. These results indicate that SOS2-dependent PI3K signaling mediates mutant KRAS-driven transformation, revealing therapeutic targets in KRAS-driven cancers. Our data also reveal the importance of three-dimensional culture systems in investigating the mediators of mutant KRAS."	"The γ-Aminobutyric Acid (GABA) Alleviates Salt Stress Damage during Seeds Germination of White Clover Associated with Na⁺/K⁺ Transportation, Dehydrins Accumulation, and Stress-Related Genes Expression in White Clover. The objective of this study was to determine the effect of soaking with γ-aminobutyric acid (GABA) on white clover (Trifolium repens cv. Haifa) seed germination under salt stress induced by 100 mM NaCl. Seeds soaking with GABA (1 μM) significantly alleviated salt-induced decreases in endogenous GABA content, germination percentage, germination vigor, germination index, shoot and root length, fresh and dry weight, and root activity of seedling during seven days of germination. Exogenous application of GABA accelerated starch catabolism via the activation of amylase and also significantly reduced water-soluble carbohydrate, free amino acid, and free proline content in seedlings under salt stress. In addition, improved antioxidant enzyme activities (SOD, GPOX, CAT, APX, DHAR, GR and MDHR) and gene transcript levels (Cu/ZnSOD, FeSOD, MnSOD, CAT, GPOX, APX, MDHR, GPX and GST) was induced by seeds soaking with GABA, followed by decreases in O₂<sup>∙-</sup>, H₂O₂, and MDA accumulation during germination under salt stress. Seeds soaking with GABA could also significantly improve Na⁺/K⁺ content and transcript levels of genes encoding Na⁺/K⁺ transportation (HKT1, HKT8, HAL2, H⁺-ATPase and SOS1) in seedlings of white clover. Moreover, exogenous GABA significantly induced the accumulation of dehydrins and expression of genes encoding dehydrins (SK2, Y2K, Y2SK, and dehydrin b) in seedlings under salt stress. These results indicate that GABA mitigates the salt damage during seeds germination through enhancing starch catabolism and the utilization of sugar and amino acids for the maintenance of growth, improving the antioxidant defense for the alleviation of oxidative damage, increasing Na⁺/K⁺ transportation for the osmotic adjustment, and promoting dehydrins accumulation for antioxidant and osmotic adjustment under salt stress."	"PM2.5 induced cardiac hypertrophy via CREB/GSK3b/SOS1 pathway and metabolomics alterations. The particle matter with diameter less 2.5μm (PM2.5) easier to adsorb toxic substance, and interfere with pulmonary gas exchange. In this study, cardioprotective effects of low molecular weight (LMW) fucoidan in cardiac hypertrophy subjects induced by PM2.5 exposure was conducted by measuring QT interval, Blood pressure, cardiac structure, metabolites and proteins expression in different organs. After PM2.5 exposure, increase in blood pressure, abnormal cardiac function (Prolongation of Action Potential Duration and QT Interval), and structral remodeling (cardiac hypertrophy and fibrosis) were recorded. Fucoidan supplement in consecutive 28 days can reduce the damage to myocardial injury caused by PM2.5. Clearance effect of fucoidan in serum, heart, kidney, lung and liver was found due to organic and inorganic compounds reduced SOS1, CREB, GSK3b, and GRB2 protein level were changed under PM2.5 exposure. Whereas, only CREB level was reduced after fucoidan treatment. Metabolic alteration was also determined that PM2.5 severely damage cardiac tissue and compromise its function. After treatment with fucoidan, the cardiac function was significantly recovered. Our finding demonstrated that LMW could enhance the cardiac status of mice with PM2.5 exposures by rescued QT interval prolongation, action potential and cardiac hypertrophy, and cardiac fibrosis decline."	"MicroRNA-4728 mediated regulation of MAPK oncogenic signaling in papillary thyroid carcinoma. Papillary thyroid carcinoma (PTC) is the most common type of thyroid cancer that accounts for 85% of thyroid cancers. MicroRNAs (miRNAs) have been reported to play important roles in the biological processes in cancer. In this study, we analyzed the biological role of miR-4728 in human PTC process in human PTC cell lines in vitro. MiRNA-4728 was observed to down-regulated in human PTC tissues and PTC cell lines. Additionally, miR-4728 inhibited PTC cell proliferation. Further study demonstrated SOS1 was repressed by miR-4728 and overexpression of miR-4728 down-regulated both the mRNA and protein levels of SOS1. Moreover, miR-4728 overexpression also decreased the MAPK signaling activity. These observations suggested that miR-4728 could inhibit the process of human PTC through regulating MAPK signaling pathway. And, appropriate regulation of miR-4728 might be vital to improve human PTC treatment."	"Adaptor Protein p66Shc: A Link Between Cytosolic and Mitochondrial Dysfunction in the Development of Diabetic Retinopathy. Diabetes increases oxidative stress in the retina and dysfunctions their mitochondria, accelerating capillary cell apoptosis. A 66 kDa adaptor protein, p66Shc, is considered as a sensor of oxidative stress-induced apoptosis. In the pathogenesis of diabetic retinopathy, a progressive disease, reactive oxygen species (ROS) production by activation of a small molecular weight G-protein (Ras-related C3 botulinum toxin substrate 1 [Rac1])-Nox2 signaling precedes mitochondrial damage. Rac1 activation is facilitated by guanine exchange factors (GEFs), and p66Shc increases Rac1-specific GEF activity of Son of Sevenless 1 (Sos1). p66Shc also possesses oxidoreductase activity and can directly stimulate mitochondrial ROS generation. Our aim was to investigate the role of p66Shc in the development of diabetic retinopathy and mechanism of its transcription. High glucose increased p66Shc expression in human retinal endothelial cells, and elevated acetylated histone 3 lysine 9 (H3K9) levels and transcriptional factor p53 binding at its promoter. Glucose also augmented interactions between Rac1 and Sos1 and activated Rac1-Nox2. Phosphorylation of p66Shc was increased, allowing it to interact with peptidyl prolyl isomerase to facilitate its localization inside the mitochondria, culminating in mitochondrial damage. P66shc-small interfering RNA (siRNA) inhibited glucose-induced Rac1 activation and mitochondrial damage. Similar results are observed in retinal microvessels from diabetic rats. This is the first report identifying the role of p66Shc in the development of diabetic retinopathy and implicating increased histone acetylation in its transcriptional regulation. Thus, p66Shc has dual role in the development of diabetic retinopathy; its regulation in the early stages of the disease should impede Rac1-ROS production and, in the later stages, prevent mitochondrial damage and initiation of a futile cycle of free radicals."	"RAS nucleotide cycling underlies the SHP2 phosphatase dependence of mutant BRAF-, NF1- and RAS-driven cancers. Oncogenic alterations in the RAS/RAF/MEK/ERK pathway drive the growth of a wide spectrum of cancers. While BRAF and MEK inhibitors are efficacious against BRAF<sup>V600E</sup>-driven cancers, effective targeted therapies are lacking for most cancers driven by other pathway alterations, including non-V600E oncogenic BRAF, RAS GTPase-activating protein (GAP) NF1 (neurofibromin 1) loss and oncogenic KRAS. Here, we show that targeting the SHP2 phosphatase (encoded by PTPN11) with RMC-4550, a small-molecule allosteric inhibitor, is effective in human cancer models bearing RAS-GTP-dependent oncogenic BRAF (for example, class 3 BRAF mutants), NF1 loss or nucleotide-cycling oncogenic RAS (for example, KRAS<sup>G12C</sup>). SHP2 inhibitor treatment decreases oncogenic RAS/RAF/MEK/ERK signalling and cancer growth by disrupting SOS1-mediated RAS-GTP loading. Our findings illuminate a critical function for SHP2 in promoting oncogenic RAS/MAPK pathway activation in cancers with RAS-GTP-dependent oncogenic BRAF, NF1 loss and nucleotide-cycling oncogenic KRAS. SHP2 inhibition is a promising molecular therapeutic strategy for patients with cancers bearing these oncogenic drivers."	"Allosteric KRas4B Can Modulate SOS1 Fast and Slow Ras Activation Cycles. Membrane-anchored Ras family proteins are activated by guanine nucleotide exchange factors such as SOS1. The CDC25 domain of SOS1 catalyzes GDP-to-GTP exchange, thereby activating Ras. Here, we aim to decipher the activation mechanism of KRas4B, a significantly mutated oncogene. We perform large-scale molecular dynamics simulations on 12 SOS1 systems, scrutinizing each step in two possible KRas4B activation cycles, fast and slow. To activate KRas4B at the CDC25 catalytic site, the allosteric site in the Ras exchanger motif (REM) domain of SOS1 needs to recruit a (nucleotide-bound) KRas4B molecule. Our simulations indicate that KRas4B-GTP interacts with the REM allosteric site more strongly than with the CDC25 catalytic site, consistent with its allosteric role in the GDP-to-GTP exchange. In the fast cycle, the allosteric KRas4B-GTP induces conformational change at the catalytic site. The conformational change facilitates loading KRas4B-GDP at the catalytic site and opening the KRas4B nucleotide-binding site for GDP release and GTP binding. GTP binding reduces the affinity of KRas4B-GTP to the CDC25 catalytic site, resulting in its release. By contrast, in the slow cycle, KRas4B-GDP binds at the allosteric REM site. The limited, altered conformational change that it induces prevents the exact alignments of switch I and II of KRas4B. The increasing binding strength at both binding sites due to interactions of regions other than switch I and II retards GDP release from the catalytic KRas4B, thus KRas4B activation. The accelerated activation cycle supports a positive feedback loop with allosteric signals communicating between the two Ras molecules and is the predominant, native function of SOS. SOS1 activation details may help drug discovery to inhibit Ras activation."	"[Clinical and genetic analysis of Verheij syndrome caused by PUF60 de novo mutation in a Chinese boy and literature review]. Objective: To investigate the clinical and genetic characteristics of a Chinese boy with Verheij syndrome and review the literature. Methods: The clinical and genetic data of a Chinese boy with Verheij syndrome, who was admitted to the Department of Pediatrics, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology in May 2017 were analyzed. Original papers on Verheij syndrome published up to January 2018 were retrieved at PubMed, Human Gene Mutation Database (HGMD), Online Mendelian Inheritance in Man(OMIM), CNKI and WanFang databases by using the key words &quot;Verheij syndrome&quot; and &quot;PUF60&quot; . Results: The male patient (at the age of 14 years and 3 months) visited us because of growth retardation for 13 years. Atrial septal defect was repaired at the age 3. Congenital amblyopia and hyperopia were diagnosed at the age 4. On physical examination, serious growth retardation and delayed psychomotor development was noted. His height was 142.5 cm (-3.26 SDS). He had poor academic performance at school. Facial features included: webbed neck, hypertelorism, down-slanting palpebral fissures, long philtrum, thin upper lip, and high palate. Palmar crease was found in the right hand. His bone age was 10 years. Growth hormone stimulation test indicated partial growth hormone deficiency (growth hormone (GH) peak 6.63 μg/L). The level of insulin like growth factor 1 (IGF1) and insulin like growth factor binding protein 3 (IGFBP3) was lower than normal, 73.20 μg/L and 2 500 μg/L respectively. Abdominal ultrasound showed that the volumes of bilateral kidneys were small. The size of the left and right kidney was 8.5 cm × 3.3 cm and 8.4 cm × 4.3 cm respectively. Karyotype was normal (46, XY). MRI of pituitary showed partial empty sella turcica. Ten genes associated with Noonan syndrome (PTPN11, SOS1, RASA2, KRAS, RAF1, NRAS, SHOC2, BRAF, RIT1, A2ML1) were analyzed and no genetic mutations were found. Whole exome-sequencing analysis identified a de novo heterozygous frame shift mutation of PUF60 gene (c.931_934del, P.P.T 311Qfs*47). According to ACMG guidelines in 2015, the mutation is pathogenic and has not been reported in the above databases. Conclusions: This is the first case report of Verheij syndrome caused by mutation of PUF60 gene in Chinese population. It is difficult to discriminate Verheij syndrome from Noonan syndrome, both have clinical manifestations such as severe growth retardation, psychomotor retardation, and congenital heart disease. In addition to Noonan syndrome, PUF60 genetic analysis was recommended for avoiding missed diagnosis with such clinical manifestations of patients. 目的: 总结Verheij综合征的临床及遗传学分析特点。 方法: 对2017年5月华中科技大学同济医学院附属同济医院儿科收治的1例Verheij综合征患儿的临床资料及基因检测结果进行总结分析,并以&quot;Verheij syndrome&quot;PUF60&quot;和&quot;Verheij综合征&quot;PUF60基因&quot;为检索词,分别检索2018年1月前的PubMed、人类基因组突变数据库(HGMD)、在线人类孟德尔遗传数据库(OMIM)、中国知网数据库(CNKI)和万方数据库,对Verheij综合征病例进行文献复习。 结果: 患儿男,14岁3月龄,因&quot;生长落后13年&quot;就诊。出生体重2.9 kg,3岁时在外院行&quot;房间隔缺损修补术&quot;,4岁时发现&quot;先天性弱视及远视&quot;。身高142.5 cm,标准差积分-3.26。精神运动发育迟缓,学习成绩不佳。颈蹼,眼距宽、双侧外眼角下斜,人中长,腭弓高,后发际低;右手通贯掌。骨龄落后于实际年龄;垂体内分泌功能检测结果提示部分性生长激素(GH)缺乏(GH峰值6.63 μg/L),血胰岛素样生长因子1(IGF1)(73.20 μg/L)及胰岛素样生长因子结合蛋白3(IGFBP3)(2 500 μg/L)低于正常;肾脏B超左肾8.5 cm×3.3 cm,右肾8.4 cm×4.3 cm;染色体核型46,XY;垂体磁共振成像提示垂体高度约4 mm,存在部分空蝶鞍。内分泌基因Panel(与Noonan综合征相关的10个基因)分析,均未发现基因变异或缺失。全外显子基因检测发现患儿存在PUF60基因杂合变异(c.931_934del,p. p.T311Qfs*47)。患儿父母该位点均无变异。经Sanger测序进行验证及父母来源分析,提示为新发突变。根据2015年美国医学遗传学与基因组学学会指南,该移码突变为致病突变,且在上述数据库中尚未见报道。 结论: 首次报道中国人群PUF60基因变异导致的Verheij综合征。患儿有严重的生长发育落后、精神运动发育迟缓、特殊面部特征、先天性心脏病、肾脏发育不良等,临床与Noonan综合征难以鉴别。对具有上述临床表现的患儿除注意Noonan综合征相关基因检测外,还应注意PUF60基因分析,以免漏诊。."	"INDETERMINATE SPIKELET1 Recruits Histone Deacetylase and a Transcriptional Repression Complex to Regulate Rice Salt Tolerance. Perception and transduction of salt stress signals are critical for plant survival, growth, and propagation. Thus, identification of components of the salt stress-signaling pathway is important for rice (Oryza sativa) molecular breeding of salt stress resistance. Here, we report the identification of an apetala2/ethylene response factor transcription factor INDETERMINATE SPIKELET1 (IDS1) and its roles in the regulation of rice salt tolerance. By genetic screening and phenotype analysis, we demonstrated that IDS1 conferred transcriptional repression activity and acted as a negative regulator of salt tolerance in rice. To identify potential downstream target genes regulated by IDS1, we conducted chromatin immunoprecipitation (ChIP) sequencing and ChIP-quantitative PCR assays and found that IDS1 may directly associate with the GCC-box-containing motifs in the promoter regions of abiotic stress-responsive genes, including LEA1 (LATE EMBRYOGENESIS ABUNDANT PROTEIN1) and SOS1 (SALT OVERLY SENSITIVE1), which are key genes regulating rice salt tolerance. IDS1 physically interacted with the transcriptional corepressor topless-related 1 and the histone deacetylase HDA1, contributing to the repression of LEA1 and SOS1 expression. Analyses of histone H3 acetylation status and RNA polymerase II occupation on the promoters of LEA1 and SOS1 further defined the molecular foundation of the transcriptional repression activity of IDS1. Our findings illustrate an epigenetic mechanism by which IDS1 modulates salt stress signaling as well as salt tolerance in rice."	"Noonan syndrome: lessons learned from genetically modified mouse models. Noonan syndrome is a RASopathy that results from activating mutations in different members of the RAS/MAPK signaling pathway. At least eleven members of this pathway have been found mutated, PTPN11 being the most frequently mutated gene affecting about 50% of the patients, followed by SOS1 (10%), RAF1 (10%) and KRAS (5%). Recently, even more infrequent mutations have been newly identified by next generation sequencing. This spectrum of mutations leads to a broad variety of clinical symptoms such as cardiopathies, short stature, facial dysmorphia and neurocognitive impairment. The genetic variability of this syndrome makes it difficult to establish a genotype-phenotype correlation, which will greatly help in the clinical management of the patients. Areas covered: Studies performed with different genetically engineered mouse models (GEMMs) developed up to date. Expert commentary: GEMMs have helped us understand the role of some genes and the effect of the different mutations in the development of the syndrome. However, few models have been developed and more characterization of the existing ones should be performed to learn about the impact of the different modifiers in the phenotypes, the potential cancer risk in patients, as well as preventative and therapeutic strategies."	"Nonreentrant atrial tachycardia occurs independently of hypertrophic cardiomyopathy in RASopathy patients. Multifocal atrial tachycardia (MAT) has a well-known association with Costello syndrome, but is rarely described with related RAS/MAPK pathway disorders (RASopathies). We report 11 patients with RASopathies (Costello, Noonan, and Noonan syndrome with multiple lentigines [formerly LEOPARD syndrome]) and nonreentrant atrial tachycardias (MAT and ectopic atrial tachycardia) demonstrating overlap in cardiac arrhythmia phenotype. Similar overlap is seen in RASopathies with respect to skeletal, musculoskeletal and cutaneous abnormalities, dysmorphic facial features, and neurodevelopmental deficits. Nonreentrant atrial tachycardias may cause cardiac compromise if sinus rhythm is not restored expeditiously. Typical first-line supraventricular tachycardia anti-arrhythmics (propranolol and digoxin) were generally not effective in restoring or maintaining sinus rhythm in this cohort, while flecainide or amiodarone alone or in concert with propranolol were effective anti-arrhythmic agents for acute and chronic use. Atrial tachycardia resolved in all patients. However, a 4-month-old boy from the cohort was found asystolic (with concurrent cellulitis) and a second patient underwent cardiac transplant for heart failure complicated by recalcitrant atrial arrhythmia. While propranolol alone frequently failed to convert or maintain sinus rhythm, fleccainide or amiodarone, occasionally in combination with propranolol, was effective for RASopathy patient treatment for nonreentrant atrial arrhythmia. Our analysis shows that RASopathy patients may have nonreentrant atrial tachycardia with and without associated cardiac hypertrophy. While nonreentrant arrhythmia has been traditionally associated with Costello syndrome, this work provides an expanded view of RASopathy cardiac arrhythmia phenotype as we demonstrate mutant proteins throughout this signaling pathway can also give rise to ectopic and/or MAT."	"Toward Unravelling the Genetic Determinism of the Acquisition of Salt and Osmotic Stress Tolerance Through In Vitro Selection in Medicago truncatula. Changes in global climate and the nonstop increase in demographic pressure have provoked a stronger demand for agronomic resources at a time where land suitable for agriculture is becoming a rare commodity. They have also generated a number of abiotic stresses which exacerbate effects of diseases and pests and result in physiological and metabolic disorders that ultimately impact on yield when and where it is most needed. Therefore, a major scientific and agronomic challenge today is that of understanding and countering the impact of stress on yield. In this respect, in vitro biotechnology would be an efficient and feasible breeding alternative, particularly now that the genetic and genomic tools needed to unravel the mechanisms underlying the acquisition of tolerance to stress have become available. Legumes in general play a central role in a sustainable agriculture due to their capacity to symbiotically fix the atmospheric nitrogen, thereby reducing the need for fertilizers. They also produce grains that are rich in protein and thus are important as food and feed. However, they also suffer from abiotic stresses in general and osmotic stress and salinity in particular. This chapter provides a detailed overview of the methods employed for in vitro selection in the model legume Medicago truncatula for the generation of novel germplasm capable of resisting NaCl- and PEG-induced osmotic stress. We also address the understanding of the genetic determinism in the acquisition of stress resistance, which differs between NaCl and PEG. Thus, the expression of genes linked to growth (WEE1), in vitro embryogenesis (SERK), salt tolerance (SOS1) proline synthesis (P5CS), and ploidy level and cell cycle (CCS52 and WEE1) was upregulated under NaCl stress, while under PEG treatment the expression of MtWEE1 and MtCCS52 was significantly increased, but no significant differences were observed in the expression of genes MtSERK1 and MtP5CS, and MtSOS1 was downregulated. A number of morphological and physiological traits relevant to the acquisition of stress resistance were also assessed, and methods used to do so are also detailed."	"A genome-wide analysis of colorectal cancer in a child with Noonan syndrome. Noonan syndrome (NS) is a developmental syndrome caused by germline mutations in the Ras signaling pathway. No association has been shown between NS and pediatric colorectal cancer (CRC). We report the case of CRC in a pediatric patient with NS. The patient underwent whole genome sequencing. A germline SOS1 mutation c.1310T&gt;C (p. Ile437Thr) confirmed NS diagnosis. No known hereditary cancer syndromes were identified. Tumor analysis revealed two mutations: a TP53 missense mutation c.481G&gt;A (p. Ala161Tyr) and NCOR1 nonsense mutation c.6052C&gt;T (p. Arg2018*). This report highlights the complexity of Ras signaling and the interplay between developmental syndromes and cancer."	"Ocular findings in Noonan syndrome: a retrospective cohort study of 105 patients. The aim of this retrospective study is to describe ocular findings in a large Noonan syndrome cohort and to detect associations between ocular features and genetic mutations that were not found in earlier studies. We collected ophthalmological and genetic data of 105 patients (median age, 12 years; range, 0-60 years) clinically diagnosed as Noonan syndrome. The ocular findings were linked to the genotypes. All patients with Noonan syndrome showed multiple abnormalities in the categories of vision and refraction, external ocular features, ocular alignment and motility, anterior ocular segment, and posterior ocular segment. In total, 50 patients have NS due to a mutation in PTPN11. Permanent visual impairment (bilateral best-corrected visual acuity &lt; 0.3) was found in 7 patients, including patients with a mutation in RAF1, SHOC2, and KRAS. Keratoconus was found in 2 PTPN11 positive patients, and prominent corneal nerves were observed in a patient with a SOS1 mutation. This study shows an overview of ocular abnormalities in Noonan syndrome, including permanent visual impairment caused by binocular optic nerve abnormalities and nystagmus. Delay in ophthalmological diagnosis is still present, also in patients with visual impairment. All Noonan syndrome patients should have a complete ophthalmological examination at the time of diagnosis. What is Known: • Although we discover more pathogenic mutations in patients with Noonan syndrome, Noonan syndrome still is a clinical diagnosis • Ocular features of Noonan syndrome are characterized by developmental anomalies of the eyelids and associated with other ocular abnormalities in childhood (including refractive errors, strabismus and amblyopia). What is New: • There seems to be a delay in the ophthalmological diagnosis and awareness of the broad variety ofophthalmological features including refractive errors and visual impairment in Noonan syndrome is needed. All children should have a full ophthalmological examination at the time of diagnosis. • Permanent visual impairment (best-corrected visual acuity &lt; 0.3) is found in patients with mutations in RAF1, SHOC2, and KRAS and the cause is probably a developmental disorder of the optic nerves."	"Analysis of Gene Expression Variance in Schizophrenia Using Structural Equation Modeling. Schizophrenia (SCZ) is a psychiatric disorder of unknown etiology. There is evidence suggesting that aberrations in neurodevelopment are a significant attribute of schizophrenia pathogenesis and progression. To identify biologically relevant molecular abnormalities affecting neurodevelopment in SCZ we used cultured neural progenitor cells derived from olfactory neuroepithelium (CNON cells). Here, we tested the hypothesis that variance in gene expression differs between individuals from SCZ and control groups. In CNON cells, variance in gene expression was significantly higher in SCZ samples in comparison with control samples. Variance in gene expression was enriched in five molecular pathways: serine biosynthesis, PI3K-Akt, MAPK, neurotrophin and focal adhesion. More than 14% of variance in disease status was explained within the logistic regression model (C-value = 0.70) by predictors accounting for gene expression in 69 genes from these five pathways. Structural equation modeling (SEM) was applied to explore how the structure of these five pathways was altered between SCZ patients and controls. Four out of five pathways showed differences in the estimated relationships among genes: between KRAS and NF1, and KRAS and SOS1 in the MAPK pathway; between PSPH and SHMT2 in serine biosynthesis; between AKT3 and TSC2 in the PI3K-Akt signaling pathway; and between CRK and RAPGEF1 in the focal adhesion pathway. Our analysis provides evidence that variance in gene expression is an important characteristic of SCZ, and SEM is a promising method for uncovering altered relationships between specific genes thus suggesting affected gene regulation associated with the disease. We identified altered gene-gene interactions in pathways enriched for genes with increased variance in expression in SCZ. These pathways and loci were previously implicated in SCZ, providing further support for the hypothesis that gene expression variance plays important role in the etiology of SCZ."	"Influence of intergenotypic competition on multigenerational persistence of abiotic stress resistance transgenes in populations of Arabidopsis thaliana. Reducing crop losses due to abiotic stresses is a major target of agricultural biotechnology that will increase with climate change and global population growth. Concerns, however, have been raised about potential ecological impacts if transgenes become established in wild populations and cause increased competitiveness of weedy or invasive species. Potential risks will be a function of transgene movement, population sizes, and fitness effects on the recipient population. While key components influencing gene flow have been extensively investigated, there have been few studies on factors subsequent to transgene movement that can influence persistence and competitiveness. Here, we performed multiyear, multigenerational, assessment to examine fitness effects and persistence of three mechanistically different abiotic stress tolerance genes: C-repeat binding factor 3/drought responsive element binding factor 1a (CBF3/DREB1a); Salt overly sensitive 1 (SOS1); and Mannose-6-phosphate reductase (M6PR). Transgenic Arabidopsis thaliana overexpressing these genes were grown in pure populations and in competition with wild-type (WT) parents for six generations spanning a range of field environment conditions. Growth, development, biomass, seed production, and transgene frequency were measured at each generation. Seed planted for each generation was obtained from the previous generation as would occur during establishment of a new genotype in the environment. The three transgenes exhibited different fitness effects and followed different establishment trajectories. In comparison with pure populations, CBF3 lines exhibited reduced dry weight, seed yield, and viable seed yield, relative to WT background. In contrast, overexpression of SOS1 and M6PR did not significantly impact productivity measures in pure populations. In competition with WT, negative fitness effects were magnified. Transgene frequencies were significantly reduced for CBF3 and SOS1 while frequencies of M6PR appeared to be subject to genetic drift. These studies demonstrate the importance of fitness effects and intergenotype competition in influencing persistence of transgenes conferring complex traits."	"A Sodium Transporter HvHKT1;1 Confers Salt Tolerance in Barley via Regulating Tissue and Cell Ion Homeostasis. Our previous studies showed that high salt tolerance in Tibetan wild barley accessions was associated with HvHKT1;1, a member of the high-affinity potassium transporter family. However, molecular mechanisms of HvHKT1;1 for salt tolerance and its roles in K+/Na+ homeostasis remain to be elucidated. Functional characterization of HvHKT1;1 was conducted in the present study. NaCl-induced transcripts of HvHKT1;1 were significantly higher in the roots of Tibetan wild barley XZ16 relative to other genotypes, being closely associated with its higher biomass and lower tissue Na+ content under salt stress. Heterologous expression of HvHKT1;1 in Saccharomyces cerevisiae (yeast) and Xenopus laevis oocytes showed that HvHKT1;1 had higher selectivity for Na+ over K+ and other monovalent cations. HvHKT1;1 was found to be localized at the cell plasma membrane of root stele and epidermis. Knock-down of HvHKT1;1 in barley led to higher Na+ accumulation in both roots and leaves, while overexpression of HvHKT1;1 in salt-sensitive Arabidopsis hkt1-4 and sos1-12 loss-of-function lines resulted in significantly less shoot and root Na+ accumulation. Additionally, microelectrode ion flux measurements and root elongation assay revealed that the transgenic Arabidopsis plants exhibited a remarkable capacity for regulation of Na+, K+, Ca2+ and H+ homeostasis under salt stress. These results indicate that HvHKT1;1 is critical in radial root Na+ transport, which eventually reduces shoot Na+ accumulation. Additionally, HvHKT1;1 may be indirectly involved in retention of K+ and Ca2+ in root cells, which also improves plant salt tolerance."	"AR negative triple negative or &quot;quadruple negative&quot; breast cancers in African American women have an enriched basal and immune signature. There is increasing evidence that Androgen Receptor (AR) expression has prognostic usefulness in Triple negative breast cancer (TNBC), where tumors that lack AR expression are considered &quot;Quadruple negative&quot; Breast Cancers (&quot;QNBC&quot;). However, a comprehensive analysis of AR expression within all breast cancer subtypes or stratified by race has not been reported. We assessed AR mRNA expression in 925 tumors from The Cancer Genome Atlas (TCGA), and 136 tumors in 2 confirmation sets. AR protein expression was determined by immunohistochemistry in 197 tumors from a multi-institutional cohort, for a total of 1258 patients analyzed. Cox hazard ratios were used to determine correlations to PAM50 breast cancer subtypes, and TNBC subtypes. Overall, AR-negative patients are diagnosed at a younger age compared to AR-positive patients, with the average age of AA AR-negative patients being, 49. AA breast tumors express AR at lower rates compared to Whites, independent of ER and PR expression (p&lt;0.0001). AR-negative patients have a (66.60; 95% CI, 32-146) odds ratio of being basal-like compared to other PAM50 subtypes, and this is associated with an increased time to progression and decreased overall survival. AA &quot;QNBC&quot; patients predominately demonstrated BL1, BL2 and IM subtypes, with differential expression of E2F1, NFKBIL2, CCL2, TGFB3, CEBPB, PDK1, IL12RB2, IL2RA, and SOS1 genes compared to white patients. Immune checkpoint inhibitors PD-1, PD-L1, and CTLA-4 were significantly upregulated in both overall &quot;QNBC&quot; and AA &quot;QNBC&quot; patients as well. Thus, AR could be used as a prognostic marker for breast cancer, particularly in AA &quot;QNBC&quot; patients."	"Comparative assessment of gene-specific variant distribution in prenatal and postnatal cohorts tested for Noonan syndrome and related conditions. To compare the pattern of gene-specific involvement and the spectrum of variants observed in prenatal and postnatal (mean ± SD, 8.9 ± 9.4 years) cohorts tested for Noonan syndrome and related conditions. Outcomes of sequencing panel testing were compared between prenatal (n = 845) and postnatal (n = 409) cohorts. PTPN11 and SOS1 harbored the majority of observed variants in both prenatal and postnatal cohorts, and BRAF, HRAS, KRAS, MAP2K1, MAP2K2, RAF1, and SHOC2 had similarities in their pattern of involvement in both cohorts. PTPN11 was the largest contributor of pathogenic variants and had the lowest frequency of variants of uncertain significance (VUS). SOS1 had the highest VUS frequency in both cohorts. The overall VUS frequency was twice as high in prenatal specimens (58.1 vs. 29.3%). PTPN11 and SOS1 had a 1.5-fold higher VUS frequency in the prenatal cohort (10.7 vs. 7.4% and 95 vs. 61.1%, respectively). The diagnostic yield was 3.7% for prenatal samples, with a higher yield of 12.3% in fetuses with cystic hygroma as a sole finding, and 21.3% for postnatal. Comparison of prenatal versus postnatal specimens demonstrates that the pattern of specific gene involvement is similar, whereas the classification spectrum of observed variants differs considerably."	"Isolation and Semi Quantitative PCR of Na<sup>+</sup>/H<sup>+</sup> Antiporter (SOS1 and NHX) Genes under Salinity Stress in Kochia scoparia. Kochia scoparia is a dicotyledonous annual herb and belongs to the Amaranthaceae family. Genetic diversity and resistance to drought stress of this plant has made it widely scattered in different regions which contains highly genetic diversity and great potential as fodder and can grow on salty, drought affected areas. Since the soil salinity has become widely spread, environmental concern has sparked so many debates. An important limiting factor in agricultural production worldwide is the sensitivity of most of the crop to salinity caused by high concentration of salts soil. Plants use three different strategies to prevent and adapt to high Na<sup>+</sup> concentrations. Antiporters are important category of genes that play a pivotal role in ion homeostasis in plants. Na<sup>+</sup>/H<sup>+</sup> antiporters (NHX1 and SOS1) are located in tonoplasts and reduce cytosolic Na<sup>+</sup> concentration by pumping in the vacuole whereas SOS1 is localized at the plasma membrane and extrudes Na<sup>+</sup> in apoplasts. Coding sequence of plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter (SOS1) and vacuole membrane Na<sup>+</sup>/H<sup>+</sup> antiporter (NHX) in Kochia scoparia were isolated using conserved sequences of SOS1 and NHX. Also, expression profile under salinity stress was studied in this study. The amino acid sequences (aa) of the isolated region of K.SSOS1 and K.SNHX showed the maximum identity up to 84% and 90% to its orthologous in salicornia brachiate and suede maritime, respectively. The results of semi-quantitative RT-PCR revealed that salinization has affected positively on SOS1 transcription level. The expression of K.SSOS1 and K.SNHX in leaves and roots of Kochia scoparia were progressively increased under all salinity levels compared to control. The results suggest that K.SSOS1 and K.SNHX play an essential role in salt tolerance of K.scoparia and they can be useful to improve salt tolerance in other crops."	"Discovery of Aminopiperidine Indoles That Activate the Guanine Nucleotide Exchange Factor SOS1 and Modulate RAS Signaling. Deregulated RAS activity, often the result of mutation, is implicated in approximately 30% of all human cancers. Despite this statistic, no clinically successful treatment for RAS-driven tumors has yet been developed. One approach for modulating RAS activity is to target and affect the activity of proteins that interact with RAS, such as the guanine nucleotide exchange factor (GEF) son of sevenless homologue 1 (SOS1). Here, we report on structure-activity relationships (SAR) in an indole series of compounds. Using structure-based design, we systematically explored substitution patterns on the indole nucleus, the pendant amino acid moiety, and the linker unit that connects these two fragments. Best-in-class compounds activate the nucleotide exchange process at submicromolar concentrations in vitro, increase levels of active RAS-GTP in HeLa cells, and elicit signaling changes in the mitogen-activated protein kinase-extracellular regulated kinase (MAPK-ERK) pathway, resulting in a decrease in pERK1/2<sup>T202/Y204</sup> protein levels at higher compound concentrations."	"The in vitro functional analysis of single-nucleotide polymorphisms associated with growth hormone (GH) response in children with GH deficiency. Response to recombinant human growth hormone (r-hGH) in the first year of therapy has been associated with single-nucleotide polymorphisms (SNPs) in children with GH deficiency (GHD). Associated SNPs were screened for regulatory function using a combination of in silico techniques. Four SNPs in regulatory sequences were selected for the analysis of in vitro transcriptional activity (TA). There was an additive effect of the alleles in the four genes associated with good growth response. For rs3110697 within IGFBP3, rs1045992 in CYP19A1 and rs2888586 in SOS1, the variant associated with better growth response showed higher TA with r-hGH treatment. For rs1024531 in GRB10, a negative regulator of IGF-I signalling and growth, the variant associated with better growth response had a significantly lower TA on r-hGH stimulation. These results indicate that specific SNP variants have effects on TA that provide a rationale for their clinical impact on growth response to r-hGH therapy."	"Differential Role of the RasGEFs Sos1 and Sos2 in Mouse Skin Homeostasis and Carcinogenesis. Using Sos1 knockout (Sos1-KO), Sos2-KO, and Sos1/2 double-knockout (Sos1/2-DKO) mice, we assessed the functional role of Sos1 and Sos2 in skin homeostasis under physiological and/or pathological conditions. Sos1 depletion resulted in significant alterations of skin homeostasis, including reduced keratinocyte proliferation, altered hair follicle and blood vessel integrity in dermis, and reduced adipose tissue in hypodermis. These defects worsened significantly when both Sos1 and Sos2 were absent. Simultaneous Sos1/2 disruption led to severe impairment of the ability to repair skin wounds, as well as to almost complete ablation of the neutrophil-mediated inflammatory response in the injury site. Furthermore, Sos1 disruption delayed the onset of tumor initiation, decreased tumor growth, and prevented malignant progression of papillomas in a DMBA (7,12-dimethylbenz[α]anthracene)/TPA (12-O-tetradecanoylphorbol-13-acetate)-induced skin carcinogenesis model. Finally, Sos1 depletion in preexisting chemically induced papillomas resulted also in decreased tumor growth, probably linked to significantly reduced underlying keratinocyte proliferation. Our data unveil novel, distinctive mechanistic roles of Sos 1 and Sos2 in physiological control of skin homeostasis and wound repair, as well as in pathological development of chemically induced skin tumors. These observations underscore the essential role of Sos proteins in cellular proliferation and migration and support the consideration of these RasGEFs as potential biomarkers/therapy targets in Ras-driven epidermal tumors."	"Targeting wild-type KRAS-amplified gastroesophageal cancer through combined MEK and SHP2 inhibition. The role of KRAS, when activated through canonical mutations, has been well established in cancer<sup>1</sup>. Here we explore a secondary means of KRAS activation in cancer: focal high-level amplification of the KRAS gene in the absence of coding mutations. These amplifications occur most commonly in esophageal, gastric and ovarian adenocarcinomas<sup>2-4</sup>. KRAS-amplified gastric cancer models show marked overexpression of the KRAS protein and are insensitive to MAPK blockade owing to their capacity to adaptively respond by rapidly increasing KRAS-GTP levels. Here we demonstrate that inhibition of the guanine-exchange factors SOS1 and SOS2 or the protein tyrosine phosphatase SHP2 can attenuate this adaptive process and that targeting these factors, both genetically and pharmacologically, can enhance the sensitivity of KRAS-amplified models to MEK inhibition in both in vitro and in vivo settings. These data demonstrate the relevance of copy-number amplification as a mechanism of KRAS activation, and uncover the therapeutic potential for targeting of these tumors through combined SHP2 and MEK inhibition."	"Cellular mechanisms to survive salt in the halophyte Cakile maritima. We recently identified two behaviours in cultured cells of the salt accumulating halophyte Cakile maritima: one related to a sustained depolarization due to Na<sup>+</sup> influx through the non-selective cation channels leading to programmed cell death of these cells, a second one related to a transient depolarization allowing cells to survive (Ben Hamed-Laouti, 2016). In this study, we considered at the cellular level mechanisms that could participate to the exclusion of Na<sup>+</sup> out of the cell and thus participate in the regulation of the internal contents of Na<sup>+</sup> and cell survival. Upon addition of NaCl in the culture medium of suspension cells of C. maritima, we observed a rapid influx of Na<sup>+</sup> followed by an efflux dependent of the activity of plasma membrane H<sup>+</sup>-ATPases, in accordance with the functioning of a Na<sup>+</sup>/H<sup>+</sup> antiporter and the ability of some cells to repolarize. The Na<sup>+</sup> efflux was shown to be dependent on Na<sup>+</sup>-dependent on Ca<sup>2+</sup> influx like the SOS1 Na<sup>+</sup>/H<sup>+</sup> antiporter. We further could observe in response to salt addition, an early production of singlet oxygen (<sup>1</sup>O2) probably due to peroxidase activities. This early <sup>1</sup>O2 production seemed to be a prerequisite to the Na<sup>+</sup> efflux. Our findings suggest that in addition to the pathway leading to PCD (Ben Hamed-Laouti, 2016), a second pathway comprising an SOS-like system could participate to the survival of a part of the C. maritima cultured cells challenged by salt stress."	"Study of Ras/MAPK pathway gene variants in Chilean patients with Cryptorchidism. Cryptorchidism is one of the most common congenital disorders in boys, and several genetic, hormonal, and environmental factors have been proposed as possible causes for this genitourinary defect. Genetic factors have been intensively searched, but relatively few pathogenic variants have been described. Cryptorchidism is a frequent finding in patients with RASopathies, a group of syndrome caused by mutations in genes of the Ras/MAPK pathway. Our aim was to determine whether patients with isolated cryptorchidism (IC) exhibit Ras/MAPK pathway gene variants associated with RASopathies. Two hundred thirty-nine patients with IC were recruited after orchidopexy. Determination of Ras/MAPK pathway gene variants was performed by high-resolution melting (HRM) analysis followed by sequencing. Restriction or allele-specific amplification assay was applied to (i) variant confirmation; (ii) search in healthy controls; and (iii) segregation analysis. Controls correspond to 100 healthy Chilean adults without a history of cryptorchidism. Molecular analysis showed one synonymous substitution (BRAF_p.Q456Q) in two patients and four missense substitutions (SOS1_ p.R497Q, BRAF_ p.F595L, NRAS_ p.T50I, and MAP2K2_ p.Y134C) in five patients. Our results suggest that some patients with isolated cryptorchidism, but with no evidence of dysmorphic features suggestive of RASopathies, may harbor Ras/MAPK pathway gene alterations."	"Differential expression of salt-responsive genes to salinity stress in salt-tolerant and salt-sensitive rice (Oryza sativa L.) at seedling stage. The understanding of physio-biochemical and molecular attributes along with morphological traits contributing to the salinity tolerance is important for developing salt-tolerant rice (Oryza sativa L.) varieties. To explore these facts, rice genotypes CSR10 and MI48 with contrasting salt tolerance were characterized under salt stress (control, 75 and 150 mM NaCl) conditions. CSR10 expressed higher rate of physio-biochemical parameters, maintained lower Na/K ratio in shoots, and restricted Na translocation from roots to shoots than MI48. The higher expression of genes related to the osmotic module (DREB2A and LEA3) and ionic module (HKT2;1 and SOS1) in roots of CSR10 suppresses the stress, enhances electrolyte leakage, promotes the higher compatible solute accumulation, and maintains cellular ionic homeostasis leading to better salt stress tolerance than MI48. This study further adds on the importance of these genes in salt tolerance by comparing their behaviour in contrasting rice genotypes and utilizing specific marker to identify salinity-tolerant accessions/donors among germplasm; overexpression of these genes which accelerate the selection procedure precisely has been shown."	"Functional characterization of the NhaA Na<sup>+</sup>/H<sup>+</sup> antiporter from the green picoalga Ostreococcus tauri. Transmembrane ion transport is a critical process in the cellular response to salt stress. Among the known functional membrane transporters that are involved in the salt stress response, Na<sup>+</sup>/H<sup>+</sup> antiporters have been extensively studied. These ubiquitous membrane proteins are crucial for salt tolerance and are associated with the regulation of internal pH, cell volume, morphogenesis, and vesicular trafficking. Molecular and functional analyses of Na<sup>+</sup>/H<sup>+</sup> antiporters have been characterized among taxa but little is known about algal Na<sup>+</sup>/H<sup>+</sup> antiporters. Here, we analyzed putative Na<sup>+</sup>/H<sup>+</sup> antiporters from the complete genome sequence of the marine picoalga Ostreococcus tauri. At least 10 putative Na<sup>+</sup>/H<sup>+</sup> antiporters belonging to the SOS1, NHX, and KEA/Kef families were found. Surprisingly, a bacterial type NhaA sequence (OtNhaA) was also found. Topological modeling of OtNhaA predicted 12 possible transmembrane segments with a long N-terminus. The full-length (FL_OtNhaA) and N-terminal truncated (ΔN112_OtNhaA) versions of OtNhaA were constructed, expressed in the salt-sensitive mutant Escherichia coli TO114, and functionally characterized. Complementation analysis revealed that FL_OtNhaA- and ΔN112_OtNhaA-expressing cells exhibited increased tolerance to high NaCl concentrations up to 700 mM. Antiporter activity assays showed that both FL_OtNhaA and ΔN112_OtNhaA proteins predominantly exhibited Na<sup>+</sup>/H<sup>+</sup> and Ca<sup>2+</sup>/H<sup>+</sup> antiporter activities at alkaline pH conditions. Intriguingly, the ΔN112_OtNhaA exhibited higher Na<sup>+</sup>/H<sup>+</sup> and Ca<sup>2+</sup>/H<sup>+</sup> antiporter activities compared to FL_OtNhaA. Kinetic analysis revealed that FL_OtNhaA has a high affinity for Na<sup>+</sup> and Ca<sup>2+</sup> ions with a Km of 1.1 ± 0.23 mM for Na<sup>+</sup> (at pH 8.5) and a Km of 0.3 ± 0.07 mM for Ca<sup>2+</sup> (at pH 8.5). Since NhaA has shown striking diversity among taxa, our results provide insight into the functional properties of the algal NhaA Na<sup>+</sup>/H<sup>+</sup> antiporter. These results will contribute to the understanding of Na<sup>+</sup>/H<sup>+</sup> antiporters that have various implications in all kingdoms of life."	"NGS testing for cardiomyopathy: Utility of adding RASopathy-associated genes. RASopathies include a group of syndromes caused by pathogenic germline variants in RAS-MAPK pathway genes and typically present with facial dysmorphology, cardiovascular disease, and musculoskeletal anomalies. Recently, variants in RASopathy-associated genes have been reported in individuals with apparently nonsyndromic cardiomyopathy, suggesting that subtle features may be overlooked. To determine the utility and burden of adding RASopathy-associated genes to cardiomyopathy panels, we tested 11 RASopathy-associated genes by next-generation sequencing (NGS), including NGS-based copy number variant assessment, in 1,111 individuals referred for genetic testing for hypertrophic cardiomyopathy (HCM) or dilated cardiomyopathy (DCM). Disease-causing variants were identified in 0.6% (four of 692) of individuals with HCM, including three missense variants in the PTPN11, SOS1, and BRAF genes. Overall, 36 variants of uncertain significance (VUSs) were identified, averaging ∼3VUSs/100 cases. This study demonstrates that adding a subset of the RASopathy-associated genes to cardiomyopathy panels will increase clinical diagnoses without significantly increasing the number of VUSs/case."	"Inflammatory genes are novel prognostic biomarkers for colorectal cancer. Inflammatory genes serve a crucial role in the pathogenesis of inflammation‑associated tumors. However, as recent studies have mainly focused on the effects of single inflammatory genes on colorectal cancer (CRC), but not on the global interactions between genes, the underlying mechanisms between inflammatory genes and CRC remain unclear. In the current study, two inflammation‑associated networks were constructed based on inflammatory genes, differentially expressed genes (DEGs) in CRC vs. normal samples, and protein‑protein interactions (PPIs). These networks included an inflammation‑related neighbor network (IRNN) and an inflammation‑related DEG network (IRDN). Notably, the results indicated that the inflammatory genes served as important CRC‑associated genes in the IRNN. Certain inflammatory genes were more likely to be network hubs and exhibited higher betweenness centralities, indicating that these inflammatory hub genes had central roles in the communication between genes in the IRNN. By contrast, in the IRDN, functional enrichment analysis revealed that genes were enriched in numerous cancer‑associated functions and pathways. Subsequently, 14 genes in a module were identified in the IRDN as the potential biomarkers associated with disease‑free survival (DFS) in CRC patients in the GSE24550 dataset, the prognosis of which was further validated using three independent datasets (GSE24549, GSE34551 and GSE103479). All 14 genes (including BCAR1, CRK, FYN, GRB2, LCP2, PIK3R1, PLCG1, PTK2, PTPN11, PTPN6, SHC1, SOS1, SRC and SYK) in this module were inflammatory genes, emphasizing the critical role of inflammation in CRC. In conclusion, these findings based on integrated inflammation‑associated networks provided a novel insight that may help elucidate the inflammation‑mediated mechanisms involved in CRC."	"RUNX1 positively regulates the ErbB2/HER2 signaling pathway through modulating SOS1 expression in gastric cancer cells. The dual function of runt-related transcriptional factor 1 (RUNX1) as an oncogene or oncosuppressor has been extensively studied in various malignancies, yet its role in gastric cancer remains elusive. Up-regulation of the ErbB2/HER2 signaling pathway is frequently-encountered in gastric cancer and contributes to the maintenance of these cancer cells. This signaling cascade is partly mediated by son of sevenless homolog (SOS) family, which function as adaptor proteins in the RTK cascades. Herein we report that RUNX1 regulates the ErbB2/HER2 signaling pathway in gastric cancer cells through transactivating SOS1 expression, rendering itself an ideal target in anti-tumor strategy toward this cancer. Mechanistically, RUNX1 interacts with the RUNX1 binding DNA sequence located in SOS1 promoter and positively regulates it. Knockdown of RUNX1 led to the decreased expression of SOS1 as well as dephosphorylation of ErbB2/HER2, subsequently suppressed the proliferation of gastric cancer cells. We also found that our novel RUNX inhibitor (Chb-M') consistently led to the deactivation of the ErbB2/HER2 signaling pathway and was effective against several gastric cancer cell lines. Taken together, our work identified a novel interaction of RUNX1 and the ErbB2/HER2 signaling pathway in gastric cancer, which can potentially be exploited in the management of this malignancy."	"Patellin1 Negatively Modulates Salt Tolerance by Regulating PM Na+/H+ Antiport Activity and Cellular Redox Homeostasis in Arabidopsis. Soil salinity significantly represses plant development and growth. Mechanisms involved sodium (Na+) extrusion and compartmentation, intracellular membrane trafficking as well as redox homeostasis regulation play important roles in plant salt tolerance. In this study, we report that Patellin1 (PATL1), a membrane trafficking-related protein, modulates salt tolerance in Arabidopsis. The T-DNA insertion mutant of PATL1 (patl1) with an elevated PATL1 transcription level displays a salt-sensitive phenotype. PATL1 partially associates with the plasma membrane (PM) and endosomal system, and might participate in regulating membrane trafficking. Interestingly, PATL1 interacts with SOS1, a PM Na+/H+ antiporter in the Salt-Overly-Sensitive (SOS) pathway, and the PM Na+/H+ antiport activity is lower in patl1 than in Col-0. Furthermore, the reactive oxygen species (ROS) content is higher in patl1 and the redox signaling of antioxidants is partially disrupted in patl1 under salt stress conditions. Artificial elimination of ROS could partially rescue the salt-sensitive phenotype of patl1. Taken together, our results indicate that PATL1 participates in plant salt tolerance by regulating Na+ transport at least in part via SOS1, and by modulating cellular redox homeostasis during salt stress."	"Temporal and spatial changes in ion homeostasis, antioxidant defense and accumulation of flavonoids and glycolipid in a halophyte Sesuvium portulacastrum (L.) L. Salinity is an important environmental constraint limiting plant productivity. Understanding adaptive responses of halophytes to high saline environments may offer clues to manage and improve salt stress in crop plants. We have studied physiological, biochemical and metabolic changes in a perennial, fast growing halophyte, Sesuvium portulacastrum under 0 mM (control), 150 mM (low salt, LS) and 500 mM (high salt, HS) NaCl treatments. The changes in growth, relative water content, cation, osmolyte accumulation, H2O2 and antioxidant enzyme activity (SOD, CAT and APX) were observed under different treatment conditions. A positive correlation was revealed for sodium ion accumulation with malondialdehyde (r2 = 0.77), proline (r2 = 0.88) and chlorophyll content (r2 = 0.82) under salt treatment while a negative correlation was observed with relative tissue water content (r2 = -0.73). The roots and leaves showed contrasting accumulation of potassium and sodium ions under LS treatment. Temporal and spatial study of sodium and potassium ion content indicated differential accumulation pattern in roots and leaves, and, high potassium levels in root. Higher H2O2 content was recorded in roots than leaves and the antioxidant enzyme activities also showed significant induction under salt treatment conditions. Gene expression profiling of sodium transporters, Sodium proton exchanger (NHX3), Vacuolar ATPase (vATPase) and Salt overly sensitive1 (SOS1) showed up regulation under salt stress after 6-24 hr of NaCl treatment. Metabolite changes in the salt stressed leaves showed increased accumulation of flavonoids (3,5-dihydroxy-6,4'-dimethoxy-flavone-7-O-[α-L-rhamnopyranosyl-(1→6)-β-D-glucopyranoside], and3,5-dihydroxy-6,3',4'-trimethoxy-flavone-7-O-[α-L-rhamnopyranosyl-(1→6)-β-D-glucopyranoside] in both LS and HS treatments, while a glycolipid, 1-O-linolenyl-2-O-(palmitoyl)-3-O-galactopyranosyl glycerol, accumulated more in LS over HS treatments and control. The results suggest that differential spatial and temporal cation levels in roots and leaves, and accumulation of flavanoid and glycolipid could be responsible for salt adaptation of S. portulacastrum."	"Clinical utility of exome sequencing in individuals with large homozygous regions detected by chromosomal microarray analysis. Chromosomal microarray analysis (CMA) is recommended as the first-tier clinical diagnostic test for individuals with developmental disabilities. In addition to detecting copy number variations, CMA platforms with single nucleotide polymorphism probes can detect large homozygous regions within the genome, which represent potential risk for recessively inherited disorders. To determine the frequency in which pathogenic or likely pathogenic variants can be detected in these regions of homozygosity, we performed whole exome sequencing (WES) in 53 individuals where homozygosity was detected by CMA. These patients were referred to our clinical laboratory for a variety of neurodevelopmental conditions including autism spectrum disorder, developmental delay, epilepsy, intellectual disability and microcephaly. In 11.3% (6/53) of cases, the analysis of homozygous variants revealed pathogenic or likely pathogenic variants in GJB2, TPP1, SLC25A15, TYR, PCCB, and NDUFV2 which are implicated in a variety of diseases. The evaluation of heterozygous variants with autosomal dominant inheritance, compound heterozygotes and variants with X-linked inheritance revealed pathogenic or likely pathogenic variants in PNPLA4, CADM1, HBB, SOS1, SFTPC, OTC and ASMT in 15.1% (8/53) of cases. Two of these patients harbored both homozygous and heterozygous variants relevant to their phenotypes (TPP1 and OTC; GJB2 and ASMT). Our study highlights the clinical utility of WES in individuals whose CMA uncovers homozygosity. Importantly, we show that when the phenotype is complex and homozygosity levels are high, WES can identify a significant number of relevant variants that explain neurodevelopmental phenotypes, and these mutations may lie outside of the regions of homozygosity, suggesting that the appropriate follow up test is WES rather than targeted sequencing."	"Impairment of K-Ras signaling networks and increased efficacy of epidermal growth factor receptor inhibitors by a novel synthetic miR-143. Despite considerable research on K-Ras inhibitors, none had been established until now. We synthesized nuclease-resistant synthetic miR-143 (miR-143#12), which strongly silenced K-Ras, its effector signal molecules AKT and ERK, and the K-Ras activator Sos1. We examined the anti-proliferative effect of miR-143#12 and the mechanism in human colon cancer DLD-1 cell (G13D) and other cell types harboring K-Ras mutations. Cell growth was markedly suppressed in a concentration-dependent manner by miR-143#12 (IC50 : 1.32 nmol L<sup>-1</sup> ) with a decrease in the K-Ras mRNA level. Interestingly, this mRNA level was also downregulated by either a PI3K/AKT or MEK inhibitor, which indicates a positive circuit of K-Ras mRNA expression. MiR-143#12 silenced cytoplasmic K-Ras mRNA expression and impaired the positive circuit by directly targeting AKT and ERK mRNA. Combination treatment with miR-143#12 and a low-dose EGFR inhibitor induced a synergistic inhibition of growth with a marked inactivation of both PI3K/AKT and MAPK/ERK signaling pathways. However, silencing K-Ras by siR-KRas instead of miR-143#12 did not induce this synergism through the combined treatment with the EGFR inhibitor. Thus, miR-143#12 perturbed the K-Ras expression system and K-Ras activation by silencing Sos1 and, resultantly, restored the efficacy of the EGFR inhibitors. The in vivo results also supported those of the in vitro experiments. The extremely potent miR-143#12 enabled us to understand K-Ras signaling networks and shut them down by combination treatment with this miRNA and EGFR inhibitor in K-Ras-driven colon cancer cell lines."	"Mechanisms of Sodium Transport in Plants-Progresses and Challenges. Understanding the mechanisms of sodium (Na⁺) influx, effective compartmentalization, and efflux in higher plants is crucial to manipulate Na⁺ accumulation and assure the maintenance of low Na⁺ concentration in the cytosol and, hence, plant tolerance to salt stress. Na⁺ influx across the plasma membrane in the roots occur mainly via nonselective cation channels (NSCCs). Na⁺ is compartmentalized into vacuoles by Na⁺/H⁺ exchangers (NHXs). Na⁺ efflux from the plant roots is mediated by the activity of Na⁺/H⁺ antiporters catalyzed by the salt overly sensitive 1 (SOS1) protein. In animals, ouabain (OU)-sensitive Na⁺, K⁺-ATPase (a P-type ATPase) mediates sodium efflux. The evolution of P-type ATPases in higher plants does not exclude the possibility of sodium efflux mechanisms similar to the Na⁺, K⁺-ATPase-dependent mechanisms characteristic of animal cells. Using novel fluorescence imaging and spectrofluorometric methodologies, an OU-sensitive sodium efflux system has recently been reported to be physiologically active in roots. This review summarizes and analyzes the current knowledge on Na⁺ influx, compartmentalization, and efflux in higher plants in response to salt stress."	"A Salt Overly Sensitive Pathway Member from Brassica juncea BjSOS3 Can Functionally Complement ΔAtsos3 in Arabidopsis. Salt Overly Sensitive (SOS) pathway is a well-known pathway in arabidopsis, essential for maintenance of ion homeostasis and thus conferring salt stress tolerance. In arabidopsis, the Ca2+ activated SOS3 interacts with SOS2 which further activates SOS1, a Na+/H+ antiporter, responsible for removing toxic sodium ions from the cells. In the present study, we have shown that these three components of SOS pathway, BjSOS1, BjSOS2 and BjSOS3 genes exhibit differential expression pattern in response to salinity and ABA stress in contrasting cultivars of Brassica. It is also noticed that constitutive expression of all the three SOS genes is higher in the tolerant cultivar B. juncea as compared to the sensitive B. nigra. In silico interaction of BjSOS2 and BjSOS3 has been reported recently and here we demonstrate in vivo interaction of these two proteins in onion epidermal peel cells. Further, overexpression of BjSOS3 in corresponding arabidopsis mutant ΔAtsos3 was able to rescue the mutant phenotype and exhibit higher tolerance towards salinity stress at the seedling stage. Taken together, these findings demonstrate that the B. juncea SOS3 (BjSOS3) protein is a functional ortholog of its arabidopsis counterpart and thus show a strong functional conservation of SOS pathway responsible for salt stress signalling between arabidopsis and Brassica species."	"High-throughput screening identifies small molecules that bind to the RAS:SOS:RAS complex and perturb RAS signaling. K-RAS is mutated in approximately 30% of human cancers, resulting in increased RAS signaling and tumor growth. Thus, RAS is a highly validated therapeutic target, especially in tumors of the pancreas, lung and colon. Although directly targeting RAS has proven to be challenging, it may be possible to target other proteins involved in RAS signaling, such as the guanine nucleotide exchange factor Son of Sevenless (SOS). We have previously reported on the discovery of small molecules that bind to SOS1, activate SOS-mediated nucleotide exchange on RAS, and paradoxically inhibit ERK phosphorylation (Burns et al., PNAS, 2014). Here, we describe the discovery of additional, structurally diverse small molecules that also bind to SOS1 in the same pocket and elicit similar biological effects. We tested &gt;160,000 compounds in a fluorescence-based assay to assess their effects on SOS-mediated nucleotide exchange. X-Ray structures revealed that these small molecules bind to the CDC25 domain of SOS1. Compounds that elicited high levels of nucleotide exchange activity in vitro increased RAS-GTP levels in cells, and inhibited phospho ERK levels at higher treatment concentrations. The identification of structurally diverse SOS1 binding ligands may assist in the discovery of new molecules designed to target RAS-driven tumors."	"Small Molecule-Mediated Activation of RAS Elicits Biphasic Modulation of Phospho-ERK Levels that Are Regulated through Negative Feedback on SOS1. Oncogenic mutation of RAS results in aberrant cellular signaling and is responsible for more than 30% of all human tumors. Therefore, pharmacologic modulation of RAS has attracted great interest as a therapeutic strategy. Our laboratory has recently discovered small molecules that activate Son of Sevenless (SOS)-catalyzed nucleotide exchange on RAS and inhibit downstream signaling. Here, we describe how pharmacologically targeting SOS1 induced biphasic modulation of RAS-GTP and ERK phosphorylation levels, which we observed in a variety of cell lines expressing different RAS-mutant isoforms. We show that compound treatment caused an increase in phosphorylation at ERK consensus motifs on SOS1 that was not observed with the expression of a non-phosphorylatable S1178A SOS1 mutant or after pretreatment with an ERK inhibitor. Phosphorylation at S1178 on SOS1 is known to inhibit the association between SOS1 and GRB2 and disrupt SOS1 membrane localization. Consistent with this, we show that wild-type SOS1 and GRB2 dissociated in a time-dependent fashion in response to compound treatment, and conversely, this interaction was enhanced with the expression of an S1178A SOS1 mutant. Furthermore, in cells expressing either S1178A SOS1 or a constitutively membrane-bound CAAX box tagged SOS1 mutant, we observed elevated RAS-GTP levels over time in response to compound, as compared with the biphasic changes in RAS-GTP exhibited in cells expressing wild-type SOS1. These results suggest that small molecule targeting of SOS1 can elicit a biphasic modulation of RAS-GTP and phospho-ERK levels through negative feedback on SOS1 that regulates the interaction between SOS1 and GRB2. Mol Cancer Ther; 17(5); 1051-60. ©2018 AACR."	"Glutamate Receptor Homolog3.4 is Involved in Regulation of Seed Germination Under Salt Stress in Arabidopsis. Seed germination is sensitive to salt stress. ABA and Ca2+ are involved in the regulation of seed germination under salt stress. Ca2+ influx mediated by glutamate receptors (GLRs) plays important roles in many physiological processes in plants. Here, we investigated the correlation of GLRs, Ca2+ and ABA during seed germination in response to salt stress by using Arabidopsis thaliana wild-type and T-DNA insertion knockout mutants of glutamate receptor homolog3.4. We demonstrated that atglr3.4-1 and atglr3.4-2 mutants were more sensitive to NaCl during seed germination and post-germination growth than wild-type plants. Treatments of wild-type seedlings with NaCl evoked a marked elevation in cytosolic Ca2+ activity ([Ca2+]cyt), and the elevation was inhibited by antagonists of GLRs, while the NaCl-induced elevation in [Ca2+]cyt was impaired in atglr3.4-1 and atglr3.4-2 mutants. Moreover, the mutants exhibited a lower expression of SOS3, SOS2 and SOS1, and greater accumulation of Na+ than wild-type seeds in the presence of NaCl. Mutation of AtGLR3.4 rendered the mutants more sensitive to ABA, while overexpression of AtGLR3.4 made the transgenic lines more tolerant to ABA in terms of seed germination. However, there was no difference in ABA content between atglr3.4 mutants and wild-type seeds, accompanied by lower expression of ABI3 and ABI4 in atglr3.4 mutants when challenged with NaCl. These results demonstrate that AtGLR3.4-mediated Ca2+ influx may be involved in the regulation of seed germination under salt stress by modulating Na+ accumulation through the SOS pathway."	"Structural characterization of 14-3-3ζ in complex with the human Son of sevenless homolog 1 (SOS1). The deviant Ras activation machinery is found in approximately 30% of all human cancers. SOS1 is an important protagonist of this pathway that plays a key-role in aberrant cell proliferation and differentiation. Interaction of SOS1 with 14-3-3 proteins modulates SOS1 activity in Ras-MAPK signaling. In the present study, we analyze the 14-3-3/SOS1 protein-protein interaction (PPI) by different biochemical assays and report the high resolution crystal structure of a 13-mer motif of SOS1 bound to 14-3-3ζ. These structural and functional insights are important for the evaluation of this PPI interface for small-molecule stabilization as a new starting point for modulating the Ras-Raf-MAPK pathway."	"Integrating Functional Analysis in the Next-Generation Sequencing Diagnostic Pipeline of RASopathies. RASopathies are a group of heterogeneous conditions caused by germline mutations in RAS/MAPK signalling pathway genes. With next-generation sequencing (NGS), sequencing capacity is no longer a limitation to molecular diagnosis. Instead, the rising number of variants of unknown significance (VUSs) poses challenges to clinical interpretation and genetic counselling. We investigated the potential of an integrated pipeline combining NGS and the functional assessment of variants for the diagnosis of RASopathies. We included 63 Chinese patients with RASopathies that had previously tested negative for PTPN11 and HRAS mutations. In these patients, we performed a genetic analysis of genes associated with RASopathies using a multigene NGS panel and Sanger sequencing. For the VUSs, we evaluated evidence from genetic, bioinformatic and functional data. Twenty disease-causing mutations were identified in the 63 patients, providing a primary diagnostic yield of 31.7%. Four VUSs were identified in five patients. The functional assessment supported the pathogenicity of the RAF1 and RIT1 VUSs, while the significance of two VUSs in A2ML1 remained unclear. In summary, functional analysis improved the diagnostic yield from 31.7% to 36.5%. Although technically demanding and time-consuming, a functional genetic diagnostic analysis can ease the clinical translation of these findings to aid bedside interpretation."	"Expression pattern of salt tolerance-related genes in Aegilops cylindrica. Aegilops cylindrica, a salt-tolerant gene pool of wheat, is a useful plant model for understanding mechanism of salt tolerance. A salt-tolerant USL26 and a salt-sensitive K44 genotypes of A. cylindrica, originating from Uremia Salt Lake shores in Northwest Iran and a non-saline Kurdestan province in West Iran, respectively, were identified based on screening evaluation and used for this work. The objective of the current study was to investigate the expression patterns of four genes related to ion homeostasis in this species. Under treatment of 400 mM NaCl, USL26 showed significantly higher root and shoot dry matter levels and K<sup>+</sup> concentrations, together with lower Na<sup>+</sup> concentrations than K44 genotype. A. cylindrica HKT1;5 (AecHKT1;5), SOS1 (AecSOS1), NHX1 (AecNHX1) and VP1 (AecVP1) were partially sequenced to design each gene specific primer. Quantitative real-time PCR showed a differential expression pattern of these genes between the two genotypes and between the root and shoot tissues. Expressions of AecHKT1;5 and AecSOS1 was greater in the roots than in the shoots of USL26 while AecNHX1 and AecVP1 were equally expressed in both tissues of USL26 and K44. The higher transcripts of AecHKT1;5 in the roots versus the shoots could explain both the lower Na<sup>+</sup> in the shoots and the much lower Na<sup>+</sup> and higher K<sup>+</sup> concentrations in the roots/shoots of USL26 compared to K44. Therefore, the involvement of AecHKT1;5 in shoot-to-root handover of Na<sup>+</sup> in possible combination with the exclusion of excessive Na<sup>+</sup> from the root in the salt-tolerant genotype are suggested."	"Footprints of divergent evolution in two Na+/H+ type antiporter gene families (NHX and SOS1) in the genus Populus. Populus, a deciduous tree species of major economic and ecological value, grows across the range in which trees are distributed in the Northern Hemisphere. Patterns of DNA variation are often used to identify the evolutionary forces shaping the genotypes of distinctive species lineages. Sodium/hydrogen (Na+/H+) antiporter genes have been shown to play a central role in plant salt tolerance. Here, we analyzed DNA nucleotide polymorphisms in the Na+/H+ antiporter (NHX and SOS1) gene families across 30 different Populus species using several methods of phylogenetic analysis and functional verification. NHX and SOS1 gene families in the genus Populus have expanded from the state in their common ancestors by duplication events, and their distinct lineages have been retained. Signals of positive selection at certain amino acid sites in different members of the Na/H antiporter gene families show that the dynamics that drive the evolution of each gene vary. SOS1 has undergone duplication in Populus euphratica and been subjected to adaptive evolution in section Turanga; the paralog of PeSOS1 (PeSOS1.2) can complement the Escherichia coli mutant EP432; and the expression pattern of PeSOS1.2 is different from that of PeSOS1, a fact which may have been beneficial for P. euphratica, conferring a fitness advantage in saline habitats. The divergent evolution of the individual members of the NHX and SOS1 gene families is likely to have been influenced by the varied ecological and environmental niches occupied by the different poplar species, giving rise to evolutionary footprints that reflect the specific functions and subcellular localizations of the proteins encoded by these genes."	"Molecular interaction of 1-aminocyclopropane-1-carboxylate deaminase (ACCD)-producing endophytic Streptomyces sp. GMKU 336 towards salt-stress resistance of Oryza sativa L. cv. KDML105. 1-aminocyclopropane-1-carboxylate deaminase (ACCD)-producing endophytic Streptomyces sp. GMKU 336 and its ACCD-deficient mutant were inoculated into Thai jasmine rice Khao Dok Mali 105 cultivar (Oryza sativa L. cv. KDML105) under salt stress (150 mM NaCl) conditions. The results clearly indicated that Streptomyces sp. GMKU 336 significantly increased plant growth, chlorophyll, proline, K<sup>+</sup>, Ca<sup>+</sup>, and water contents; but decreased ethylene, reactive oxygen species (ROS), Na<sup>+</sup>, and Na<sup>+</sup>/K<sup>+</sup> ratio when compared to plants not inoculated and those inoculated with the ACCD-deficient mutant. Expression profiles of stress responsive genes in rice in association with strain GMKU 336 were correlated to plant physiological characteristics. Genes involved in the ethylene pathway, ACO1 and EREBP1, were significantly down-regulated; while acdS encoding ACCD in Streptomyces sp. GMKU 336 was up-regulated in vivo. Furthermore, genes involved in osmotic balance (BADH1), Na<sup>+</sup> transporters (NHX1 and SOS1), calmodulin (Cam1-1), and antioxidant enzymes (CuZn-SOD1 and CATb) were up-regulated; whereas, a gene implicated in a signaling cascade, MAPK5, was down-regulated. This work demonstrates the first time that ACCD-producing Streptomyces sp. GMKU 336 enhances growth of rice and increases salt tolerance by reduction of ethylene via the action of ACCD and further assists plants to scavenge ROS, balance ion content and osmotic pressure."	"Salt tolerance of two perennial grass Brachypodium sylvaticum accessions. We studied the salt stress tolerance of two accessions isolated from different areas of the world (Norway and Tunisia) and characterized the mechanism(s) regulating salt stress in Brachypodium sylvaticum Osl1 and Ain1. Perennial grasses are widely grown in different parts of the world as an important feedstock for renewable energy. Their perennial nature that reduces management practices and use of energy and agrochemicals give these biomass crops advantages when dealing with modern agriculture challenges such as soil erosion, increase in salinized marginal lands and the runoff of nutrients. Brachypodium sylvaticum is a perennial grass that was recently suggested as a suitable model for the study of biomass plant production and renewable energy. However, its plasticity to abiotic stress is not yet clear. We studied the salt stress tolerance of two accessions isolated from different areas of the world and characterized the mechanism(s) regulating salt stress in B. sylvaticum Osl1, originated from Oslo, Norway and Ain1, originated from Ain-Durham, Tunisia. Osl1 limited sodium transport from root to shoot, maintaining a better K/Na homeostasis and preventing toxicity damage in the shoot. This was accompanied by higher expression of HKT8 and SOS1 transporters in Osl1 as compared to Ain1. In addition, Osl1 salt tolerance was accompanied by higher abundance of the vacuolar proton pump pyrophosphatase and Na<sup>+</sup>/H<sup>+</sup> antiporters (NHXs) leading to a better vacuolar pH homeostasis, efficient compartmentation of Na<sup>+</sup> in the root vacuoles and salt tolerance. Although preliminary, our results further support previous results highlighting the role of Na<sup>+</sup> transport systems in plant salt tolerance. The identification of salt tolerant and sensitive B. sylvaticum accessions can provide an experimental system for the study of the mechanisms and regulatory networks associated with stress tolerance in perennials grass."	"The protective value of miR-204-5p for prognosis and its potential gene network in various malignancies: a comprehensive exploration based on RNA-seq high-throughput data and bioinformatics. The prognostic role of miR-204-5p (previous ID: miR-204) is varied and inconclusive in diverse types of malignant neoplasm. Therefore, the purposes of the study comprehensively explore the overall prognostic role of miR-204-5p based on high-throughput microRNA sequencing data, and to investigate the potential role of miR-204-5p via bioinformatics approaches. The data of microRNA sequencing and survival were downloaded from The Cancer Genome Atlas (TCGA), and the prognostic value of miR-204-5p was analyzed by using Kaplan-Meier and univariate cox regressions. Then a meta-analysis was conducted with all TCGA data and relevant studies collected from literature. Pooled hazard ratios (HRs) with 95% confidence intervals (CIs) were calculated. The prospective molecular mechanism of miR-204-5p was also assessed at a functional level with Gene Ontology (GO), Kyoto Encyclopedia of Genes and Genomes (KEGG), and protein-to-protein interactions (PPI) network. From TCGA data, the prognostic value of miR-204-5p obviously varied among 20 types of cancers. The pooled HR was 0.928 (95% CI: 0.774-1.113, P = 0.386, 6203 cases of malignancies). For the meta-analysis based on 15 studies from literature, the pooled HR was 0.420 (95% CI: 0.306-0.576, P &lt; 0.001, 1783 cases of malignancies) for overall survival (OS). Furthermore, the combined HR from both TCGA and literature was 0.708 (95% CI: 0.600-0.834, P &lt; 0.001, 7986 cases of malignancies). Subgroup analyses revealed that miR-204-5p could act as a prognostic marker in cancers of respiratory system and digestive system. Functional analysis was conducted on genes predicted as targets (n = 2057) after the overlay genes from six out of twelve software were extracted. Two significant KEGG pathways were enriched (hsa04360: Axon guidance and hsa04722: Neurotrophin signaling pathway). PPI network revealed some hub genes/proteins (CDC42, SOS1, PIK3R1, MAPK1, PLCG1, ESR1, MAPK11, and AR). The current study demonstrates that over-expression of miR-204-5p could be a protective factor for a certain group of cancers. Clinically, the low miR-204-5p level could gain a predictive value for a poor survival in cancers of respiratory system and digestive system. The detailed molecular mechanisms of miR-204-5p remain to be verified."	"Identification of the AQP members involved in abiotic stress responses from Arabidopsis. Aquaporins (AQPs) constitute a highly diverse family of water channel proteins that play crucial biological functions in plant growth and development and stress physiology. In Arabidopsis, 35 AQPs are classified into four subfamilies (PIPs, TIPs, NIPs and SIPs). However, knowledge about the roles of different subfamily AQPs remains limited. Here, we explored the chromosomal location, gene structure and expression patterns of all AQPs in different tissues or under different abiotic stresses based on available microarray data. Tissue expression analysis showed that different AQPs had various expression patterns in tissues (root, leaf, flower and seed). Expression profiles under stress conditions revealed that most AQPs were responsive to osmotic, salt and drought stresses. Phenotypic and physiological identification showed that Tip2;2 loss-of-function mutant exhibited less sensitive to abiotic stresses (mannitol, NaCl and PEG) compared with wild-type, as evident by analysis of germination rate, root growth, survival rate, ion leakage, malondialdehyde (MDA) and proline contents. Mutant of TIP2;2 modulated the transcript levels of SOS1, SOS2, SOS3, DREB1A, DREB2A and P5CS1, under abiotic stress conditions. This study provides a basis for further functional identification of stress-related candidate AQPs in Arabidopsis."	"Exogenous allantoin increases Arabidopsis seedlings tolerance to NaCl stress and regulates expression of oxidative stress response genes. Allantoin is a nitrogenous compound derived from purine catabolism that contributes to nitrogen recycling in plants. Accumulation of allantoin in plant tissues and a potential role in protection of plants from abiotic stress conditions has been identified. The present work shows that application of exogenous allantoin increased stress tolerance of Arabidopsis seedlings when germinated on, or subjected to the media containing NaCl. Allantoin-induced tolerance to NaCl stress was associated with decreased production of superoxide and hydrogen peroxide in seedlings. To understand the molecular mechanism, the effect of exogenous allantoin treatment on expression of several stress-related genes was investigated. Exogenous allantoin altered the expression of several antioxidant encoding genes and upregulated the expression of two genes involved in oxidative stress tolerance, SOS1 and RCD1, in the presence or absence of NaCl. Allantoin increased the NaCl tolerance of abscisic acid insensitive mutants, suggesting that it can function independently of abscisic acid signaling. These results provide additional evidence for the role of allantoin in enhancing plants tolerance to oxidative stress."	"SOS1 gene polymorphisms are associated with gestational diabetes mellitus in a Chinese population: Results from a nested case-control study in Taiyuan, China. Gestational diabetes mellitus is a growing public health concern due to its large disease burden; however, the underlying pathophysiology remains unclear. Therefore, we examined the relationship between 107 single-nucleotide polymorphisms in insulin signalling pathway genes and gestational diabetes mellitus risk using a nested case-control study. The SOS1 rs7598922 GA and AA genotype were statistically significantly associated with reduced gestational diabetes mellitus risk ( ptrend = 0.0006) compared with GG genotype. At the gene level, SOS1 was statistically significantly associated with gestational diabetes mellitus risk after adjusting for multiple comparisons. Moreover, AGGA and GGGG haplotypes in SOS1 gene were associated with reduced risk of gestational diabetes mellitus. Our study provides evidence for an association between the SOS1 gene and risk of gestational diabetes mellitus; however, its role in the pathogenesis of gestational diabetes mellitus will need to be verified by further studies."	"FOXI2: a possible gene contributing to ectodermal dysplasia. Cardio-facio-cutaneous syndrome (CFC), Noonan syndrome (NS), and Costello syndrome are a group of diseases that belong to the RASopathies. The syndromes share clinical features making diagnosis a challenge. To investigate the phenotype and genotype of a 10-year-old Iraqi girl with overlapping features of CFC, NS, and Costello syndromes, with additional features of ectodermal dysplasia. DNA was examined by exome sequencing and protein expression by immunohistochemistry. Exome sequencing identified a mutation in the SOS1 gene and a de novo deletion in the FOXI2 gene which was neither present in the international databases, nor in 400 chromosomes from the same population. Based on immunohistochemical staining, FOXI2 was identified in the basal cell layer of the skin and overlapped with the expression of P63, a major player in ectodermal dysplasia. We therefore suggest screening for FOXI2 mutation in the setting of ectodermal features that are not associated with genes known to contribute to ectodermal dysplasia."	"Root respiratory burst oxidase homologue-dependent H2O2 production confers salt tolerance on a grafted cucumber by controlling Na+ exclusion and stomatal closure. Plant salt tolerance can be improved by grafting onto salt-tolerant rootstocks. However, the underlying signaling mechanisms behind this phenomenon remain largely unknown. To address this issue, we used a range of physiological and molecular techniques to study responses of self-grafted and pumpkin-grafted cucumber plants exposed to 75 mM NaCl stress. Pumpkin grafting significantly increased the salt tolerance of cucumber plants, as revealed by higher plant dry weight, chlorophyll content and photochemical efficiency (Fv/Fm), and lower leaf Na+ content. Salinity stress resulted in a sharp increase in H2O2 production, reaching a peak 3 h after salt treatment in the pumpkin-grafted cucumber. This enhancement was accompanied by elevated relative expression of respiratory burst oxidase homologue (RBOH) genes RbohD and RbohF and a higher NADPH oxidase activity. However, this increase was much delayed in the self-grafted plants, and the difference between the two grafting combinations disappeared after 24 h. The decreased leaf Na+ content of pumpkin-grafted plants was achieved by higher Na+ exclusion in roots, which was driven by the Na+/H+ antiporter energized by the plasma membrane H+-ATPase, as evidenced by the higher plasma membrane H+-ATPase activity and higher transcript levels for PMA and SOS1. In addition, early stomatal closure was also observed in the pumpkin-grafted cucumber plants, reducing water loss and maintaining the plant's hydration status. When pumpkin-grafted plants were pretreated with an NADPH oxidase inhibitor, diphenylene iodonium (DPI), the H2O2 level decreased significantly, to the level found in self-grafted plants, resulting in the loss of the salt tolerance. Inhibition of the NADPH oxidase-mediated H2O2 signaling in the root also abolished a rapid stomatal closure in the pumpkin-grafted plants. We concluded that the pumpkin-grafted cucumber plants increase their salt tolerance via a mechanism involving the root-sourced respiratory burst oxidase homologue-dependent H2O2 production, which enhances Na+ exclusion from the root and promotes an early stomatal closure."	"PDGFR-modulated miR-23b cluster and miR-125a-5p suppress lung tumorigenesis by targeting multiple components of KRAS and NF-kB pathways. In NSCLC alterations in PDGF receptors are markers of worst prognosis and efficient targeting of these receptors is yet to be achieved. In this study, we explored PDGFR-regulated microRNAs demonstrating that miR-23b cluster and miR-125a-5p are downregulated by increased expression of PDGFR-α or PDGFR-β in NSCLC cells. Mechanistically, the expression of these microRNAs is positively regulated by p53 and negatively modulated by NF-kB p65. Forced expression of miR-23b cluster or miR-125a-5p enhanced drug sensitivity and suppressed invasiveness of NSCLC cells by silencing several genes involved in oncogenic KRAS and NF-kB pathways, including SOS1, GRB2, IQGAP1, RALA, RAF-1, IKKβ, AKT2, ERK2 and KRAS itself. Of note, an inverse correlation between miR-23b cluster, miR-125a-5p and respective target genes was also found in vivo in a large dataset of lung adenocarcinoma samples. Furthermore, in vivo delivery of miR-23b cluster or miR-125a-5p significantly repressed tumour growth in a highly aggressive NSCLC circulating tumour cell (CTC) patient derived explant (CDX) mouse model. In conclusion, our finding sheds light on the PDGFR signaling and endorses the possibility to employ miR-23b cluster and miR-125a-5p as therapeutic tools to silence simultaneously a range of redundant pathways and main effectors of tumorigenesis in NSCLC."	"Salt stress-induced FERROCHELATASE 1 improves resistance to salt stress by limiting sodium accumulation in Arabidopsis thaliana. Ferrochelatase-1 as a terminal enzyme of heme biosynthesis regulates many essential metabolic and physiological processes. Whether FC1 is involved in plant response to salt stress has not been described. This study shows that Arabidopsis overexpressing AtFC1 displays resistance to high salinity, whereas a T-DNA insertion knock-down mutant fc1 was more sensitive to salt stress than wild-type plants. AtFC1 conferred plant salt resistance by reducing Na<sup>+</sup> concentration, enhancing K<sup>+</sup> accumulation and preventing lysis of the cell membrane. Such observations were associated with the upregulation of SOS1, which encodes a plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter. AtFC1 overexpression led to a reduced expression of several well known salt stress-responsive genes such as NHX1 and AVP1, suggesting that AtFC1-regulated low concentration of Na<sup>+</sup> in plants might not be through the mechanism for Na<sup>+</sup> sequestration. To investigate the mechanism leading to the role of AtFC1 in mediating salt stress response in plants, a transcriptome of fc1 mutant plants under salt stress was profiled. Our data show that mutation of AtFC1 led to 490 specific genes up-regulated and 380 specific genes down-regulated in fc1 mutants under salt stress. Some of the genes are involved in salt-induced oxidative stress response, monovalent cation-proton (Na<sup>+</sup>/H<sup>+</sup>) exchange, and Na<sup>+</sup> detoxification."	"Cumulus cells surrounding oocytes with high developmental competence exhibit down-regulation of phosphoinositol 1,3 kinase/protein kinase B (PI3K/AKT) signalling genes involved in proliferation and survival. Is the phosphoinositol 1,3-kinase/protein kinase B (PI3K/AKT) pathway expression profile in cumulus cells (CCs) a potential marker of oocyte competence and predictive of pregnancy outcome? Eleven genes (AKT1, ARHGEF7, BCL2L1, CCND1, E2F1, HRAS, KCNH2, PIK3C2A, SHC1, SOS1 and SPP1) in the PI3K/AKT pathway were significantly down-regulated in CCs from oocytes that went on to produce a pregnancy compared to CCs associated with a negative outcome. The PI3K/AKT pathway plays a pivotal role in the interdependence and continuous feedback between the oocyte and CCs. The expression analysis of 92 transcripts in the PI3K/AKT pathway in CCs from patients with negative or positive pregnancy outcome, after single embryo transfer, was performed. Mouse CCs target gene expression was conducted to associate the expression profile of PI3K/AKT pathway to oocyte developmental profile. Fifty-five good prognosis IVF patients who had been referred to IVF or intracytoplasmic sperm injection treatment for male-factor infertility or tubal disease were enroled. CCs from single cumulus-oocyte complexes (COCs) from 16 patients who underwent a single embryo transfer were analyzed. Twenty-five CD-1 mice were used to assess gene expression in CCs associated with oocytes with different competence in relation to hCG priming. A total 220 human COCs were collected. The RNA extracted from CCs of 16 selected patients was used to analyze PI3K/AKT pathway gene expression employing a 96-well custom TaqMan Array. Expression data of CCs associated to positive IVF outcome were compared to data from negative outcome samples. Mice were sacrificed after 9, 12, 15, 21 and 24 h post-hCG administration to obtain CCs from MII oocytes with different developmental competence. Akt1, Bcl2l2 and Shc1 expression were tested in the collected mouse CCs. In addition, the expression of upstream regulator ESR1, the gene encoding for the oestrogen receptor ERβ, and the downstream effectors of the pathway FOXO1, FOXO3 and FOXO4 was evaluated in human and mouse samples. Transcripts involved in the PI3K Signaling Pathway were selectively modulated according to the IVF/ICSI outcome of the oocyte. Eleven transcripts in this pathway were significantly down-regulated in all samples of CCs from oocytes with positive when compared those with a negative outcome. These outcomes were confirmed in mouse CCs associated with oocytes at different maturation stages. Expression data revealed that the down-regulation of ESR1 could be related to oocyte competence and is likely to be the driver of expression changes highlighted in the PI3K/AKT pathway. Small sample size and retrospective design. The CCs expression profile of PI3K/AKT signaling genes, disclosed a specific CCs gene signature related to oocyte competence. It could be speculated that CCs associated with competent oocytes have completed their role in sustaining oocyte development and are influencing their fate in response to metabolic and hormonal changes by de-activating anti-apoptotic signals. Supported by Merck Serono an affiliate of Merck KGaA, Darmstadt, Germany (research grant for the laboratory session; Merck KGaA reviewed the manuscript for medical accuracy only before journal submission. The authors are fully responsible for the content of this manuscript, and the views and opinions described in the publication reflect solely those of the authors). The authors declare no conflict of interest."	"DNA-Methylation and Body Composition in Preschool Children: Epigenome-Wide-Analysis in the European Childhood Obesity Project (CHOP)-Study. Adiposity and obesity result from the interaction of genetic variation and environmental factors from very early in life, possibly mediated by epigenetic processes. Few Epigenome-Wide-Association-Studies have identified DNA-methylation (DNAm) signatures associated with BMI and body composition in children. Body composition by Bio-Impedance-Analysis and genome-wide DNAm in whole blood were assessed in 374 pre-school children from four European countries. Associations were tested by linear regression adjusted for sex, age, centre, education, 6 WBC-proportions according to Houseman and 30 principal components derived from control probes. Specific DNAm variants were identified to be associated with BMI (212), fat-mass (230), fat-free-mass (120), fat-mass-index (24) and fat-free-mass-index (15). Probes in genes SNED1(IRE-BP1), KLHL6, WDR51A(POC1A), CYTH4-ELFN2, CFLAR, PRDM14, SOS1, ZNF643(ZFP69B), ST6GAL1, C3orf70, CILP2, MLLT4 and ncRNA LOC101929268 remained significantly associated after Bonferroni-correction of P-values. We provide novel evidence linking DNAm with (i) altered lipid and glucose metabolism, (ii) diabetes and (iii) body size and composition in children. Both common and specific epigenetic signatures among measures were also revealed. The causal direction with phenotypic measures and stability of DNAm variants throughout the life course remains unclear and longitudinal analysis in other populations is required. These findings give support for potential epigenetic programming of body composition and obesity."	"Mutation-Specific Mechanisms of Hyperactivation of Noonan Syndrome SOS Molecules Detected with Single-molecule Imaging in Living Cells. Noonan syndrome (NS) is a congenital hereditary disorder associated with developmental and cardiac defects. Some patients with NS carry mutations in SOS, a guanine nucleotide exchange factor (GEF) for the small GTPase RAS. NS mutations have been identified not only in the GEF domain, but also in various domains of SOS, suggesting that multiple mechanisms disrupt SOS function. In this study, we examined three NS mutations in different domains of SOS to clarify the abnormality in its translocation to the plasma membrane, where SOS activates RAS. The association and dissociation kinetics between SOS tagged with a fluorescent protein and the living cell surface were observed in single molecules. All three mutants showed increased affinity for the plasma membrane, inducing excessive RAS signalling. However, the mechanisms by which their affinity was increased were specific to each mutant. Conformational disorder in the resting state, increased probability of a conformational change on the plasma membrane, and an increased association rate constant with the membrane receptor are the suggested mechanisms. These different properties cause the specific phenotypes of the mutants, which should be rescuable with different therapeutic strategies. Therefore, single-molecule kinetic analyses of living cells are useful for the pathological analysis of genetic diseases."	"Internal driving factors leading to extrahepatic manifestation of the hepatitis C virus infection. The hepatitis C virus (HCV) infection is associated with various extrahepatic manifestations, which are correlated with poor outcomes, and thus increase the morbidity and mortality of chronic hepatitis C (CHC). Therefore, understanding the internal linkages between systemic manifestations and HCV infection is helpful for treatment of CHC. Yet, the mechanism by which the virus evokes the systemic diseases remains to be elucidated. In the present study, using gene set enrichment analysis (GSEA) and signaling pathway impact analysis (SPIA), a comprehensive analysis of microarray data of mRNAs was conducted in HCV-infected and -uninfected Huh7.5 cells, and signaling pathways (which are significantly activated or inhibited) and certain molecules (which are commonly important in those signaling pathways) were selected. Forty signaling pathways were selected using GSEA, and eight signaling pathways were selected with SPIA. These pathways are associated with cancer, metabolism, environmental information processing and organismal systems, which provide important information for further clarifying the intrinsic associations between syndromes of HCV infection, of which seven pathways were not previously reported, including basal transcription factors, pathogenic Escherichia coli infection, shigellosis, gastric acid secretion, dorso-ventral axis formation, amoebiasis and cholinergic synapse. Ten genes, SOS1, RAF1, IFNA2, IFNG, MTHFR, IGF1, CALM3, UBE2B, TP53 and BMP7 whose expression may be the key internal driving molecules, were selected using the online tool Anni 2.1. Furthermore, the present study demonstrated the internal linkages between systemic manifestations and HCV infection, and presented the potential molecules that are key to those linkages."	"Psychopathological features in Noonan syndrome. Noonan syndrome (NS) is an autosomal dominant disorder characterized by short stature, skeletal and haematological/lymphatic defects, distinctive facies, cryptorchidism, and a wide spectrum of congenital heart defects. Recurrent features also include variable cognitive deficits and behavioural problems. Recent research has been focused on the assessment of prevalence, age of onset and characterization of psychiatric features in this disorder. Herein, we evaluated the prevalence of attention deficit and hyperactivity disorder (ADHD), anxiety and depressive symptoms and syndromes in a cohort of individuals with clinical and molecular diagnosis of NS. The Kiddie Schedule for Affective Disorders and Schizophrenia for School-Age Children Present and Lifetime version (K-SADS PL) has been used for the assessment of psychiatric disorders according to Diagnostic and Statistical Manual of Mental Disorders (DSM-IV). Multidimensional Anxiety Scale for Children (MASC) and the Children's Depression Inventory (CDI) have been assessed for the evaluation of anxiety and depressive symptoms and syndromes, whereas Conners Teacher and Parent Rating Scales-long version (CRS-R) have been used to evaluate ADHD. The study included 27 individuals (67% males) with an average age of 10.4 years (range 6-18 years) receiving molecular diagnosis of NS or a clinically related condition, evaluated and treated at the Neuropsychiatric Unit of Children's Hospital Bambino Gesù and at the Center for Rare Diseases of Fondazione Policlinico Universitario Agostino Gemelli, in Rome. Twenty individuals showed mutations in PTPN11, five in SOS1 and two in SHOC2. The mean IQ was 94 (Standard Deviation = 17, min = 56, max = 130). Seventy percent of the individuals (n = 19; 95% Confidence Interval = 52-85%) showed ADHD features, with six individuals reaching DSM-IV-TR criteria for ADHD disorder, and thirteen showing subsyndromal traits. Symptoms or syndrome of anxiety were present in 37% of the cohort (n = 10; 95% Confidence Interval = 19-56%), with two individuals showing anxiety disorder and eight cases exhibiting subsyndromal traits. Our results show individuals with NS do present a very high risk to develop psychiatric disorders or symptoms during paediatric age. Based on these findings, preschool assessment of inattentive, hyperactivity/impulsivity and anxiety/depressive symptoms is recommended in order to plan a personalized treatment for psychological/psychiatric issues in affected individuals. Dedicated prospective studies are required to confirm the present data and better characterize the psychopathological profile in NS."	"Fructose-1,6-bisphosphate couples glycolytic flux to activation of Ras. Yeast and cancer cells share the unusual characteristic of favoring fermentation of sugar over respiration. We now reveal an evolutionary conserved mechanism linking fermentation to activation of Ras, a major regulator of cell proliferation in yeast and mammalian cells, and prime proto-oncogene product. A yeast mutant (tps1∆) with overactive influx of glucose into glycolysis and hyperaccumulation of Fru1,6bisP, shows hyperactivation of Ras, which causes its glucose growth defect by triggering apoptosis. Fru1,6bisP is a potent activator of Ras in permeabilized yeast cells, likely acting through Cdc25. As in yeast, glucose triggers activation of Ras and its downstream targets MEK and ERK in mammalian cells. Biolayer interferometry measurements show that physiological concentrations of Fru1,6bisP stimulate dissociation of the pure Sos1/H-Ras complex. Thermal shift assay confirms direct binding to Sos1, the mammalian ortholog of Cdc25. Our results suggest that the Warburg effect creates a vicious cycle through Fru1,6bisP activation of Ras, by which enhanced fermentation stimulates oncogenic potency.Yeast and cancer cells both favor sugar fermentation in aerobic conditions. Here the authors describe a conserved mechanism from yeast to mammals where the glycolysis intermediate fructose-1,6-bisphosphate binds Cdc25/Sos1 and couples increased glycolytic flux to increased Ras proto-oncoprotein activity."	"High-throughput screening uncovers miRNAs enhancing glioblastoma cell susceptibility to tyrosine kinase inhibitors. Glioblastoma (GBM) is a deadly and therapy resistant malignant brain tumour, characterized by an aggressive and diffuse growth pattern, which prevents complete surgical resection. Despite advances in the identification of genomic and molecular alterations that fuel the tumour, average patient survival post-diagnosis remains very low (∼14.6-months). In addition to being highly heterogeneous, GBM tumour cells exhibit high adaptive capacity to targeted molecular therapies owing to an established network of signalling cascades with functional redundancy, which provides them with robust compensatory survival mechanisms. Here, we investigated whether a multimodal strategy combining multitargeted tyrosine kinase inhibitors (MTKIs) and microRNA (miRNA) modulation could overcome the signalling pathway redundancy in GBM and, hence, promote tumour cell death. By performing a high-throughput screening, we identified a myriad of miRNAs, including those belonging to the miR-302-3p/372-3p/373-3p/520-3p family, which coordinately act with the MTKI sunitinib to decrease GBM cell viability. Two members of this family, hsa-miRNA-302a-3p and hsa-miRNA-520 b, were found to modulate the expression of receptor tyrosine kinase mediators (including AKT1, PIK3CA and SOS1) in U87 and DBTRG human GBM cells. Importantly, administration of mimics of these miRNAs with sunitinib or axitinib resulted in decreased tumour cell proliferation and enhanced cell death, whereas no significant effect was observed when coupling miRNA modulation with temozolomide, the first-line drug for GBM therapy. Overall, our results provide evidence that combining the 'horizontal' inhibition of signalling pathways promoted by MTKIs with the 'vertical' inhibition of the downstream signalling cascade promoted by hsa-miR-302a-3p and hsa-miR-520 b constitutes a promising approach towards GBM treatment."	"Novel mutations and their genotype-phenotype correlations in patients with Noonan syndrome, using next-generation sequencing. Noonan Syndrome (NS) is an autosomal dominant disorder with many variable and heterogeneous conditions. The genetic basis for 20-30% of cases is still unknown. This study evaluates Iranian Noonan patients both clinically and genetically for the first time. Mutational analysis of PTPN11 gene was performed in 15 Iranian patients, using PCR and Sanger sequencing at phase one. Then, as phase two, Next Generation Sequencing (NGS) in the form of targeted resequencing was utilized for analysis of exons from other related genes. Homology modelling for the novel founded mutations was performed as well. The genotype, phenotype correlation was done according to the molecular findings and clinical features. Previously reported mutation (p.N308D) in some patients and a novel mutation (p.D155N) in one of the patients were identified in phase one. After applying NGS methods, known and new variants were found in four patients in other genes, including: CBL (p. V904I), KRAS (p. L53W), SOS1 (p. I1302V), and SOS1 (p. R552G). Structural studies of two deduced novel mutations in related genes revealed deficiencies in the mutated proteins. Following genotype, phenotype correlation, a new pattern of the presence of intellectual disability in two patients was registered. NS shows strong variable expressivity along the high genetic heterogeneity especially in distinct populations and ethnic groups. Also possibly unknown other causative genes may be exist. Obviously, more comprehensive and new technologies like NGS methods are the best choice for detection of molecular defects in patients for genotype, phenotype correlation and disease management."	"Identification of key genes associated with the effect of osmotic stimuli on intervertebral discs using microarray analysis. The present study aimed to explore the effect of osmotic stimuli on intervertebral discs (IVDs) using microarray analysis. Gene expression dataset GSE1648 was downloaded from the Gene Expression Omnibus database. There were 11 IVD cell samples in this dataset, which included 4 hyperosmotic stimuli samples, 3 hypoosmotic stimuli samples and 4 isosmotic stimuli samples. The differentially expressed genes (DEGs) in hyperosmotic or hypoosmotic IVD cells (designated DEGs-hyper or DEGs-hypo) were identified, compared with isosmotic cells, using the limma package of R software. The Database for Annotation, Visualization and Integrated Discovery was used to perform a Gene Ontology (GO) term enrichment analysis for the DEG sets. Protein-protein interaction (PPI) network and microRNA (miRNA) gene-regulatory network data for the DEG sets were obtained using the Human Protein Reference Database (HPRD) and the TargetScan database, respectively, and these networks were constructed and visualized using Cytoscape software. There was a total of 43 DEGs in DEGs-hyper and 9 in DEGs-hypo. Analysis of DEGs-hyper revealed that 41 GO terms were significantly enriched. In total, 376 pairs and 382 nodes were involved in the PPI network, and 1,314 miRNA-gene pairs and 422 nodes were contained in the miRNA-gene-regulated network. The results of the present study indicated that potential target genes (including NCOA3, SOS1, XPO1, ZBTB18, EFNB2 and SOBP) may be involved in the effect of osmotic stimuli on IVD, and the biological processes of apoptosis and cell death may be associated with the effect of high osmolality on IVD disease. The potential targets identified in the present study are more reliable than those identified by previous studies."	"Overexpression of MUC1 and Genomic Alterations in Its Network Associate with Prostate Cancer Progression. We investigate the association of MUC1 with castration-resistant prostate cancer (CRPC), bone metastasis, and PC recurrence. MUC1 expression was studied in patient-derived bone metastasis and CRPCs produced by prostate-specific PTEN<sup>-/-</sup> mice and LNCaP xenografts. Elevations in MUC1 expression occur in CRPC. Among nine patients with hormone-naïve bone metastasis, eight express MUC1 in 61% to 100% of PC cells. Utilizing cBioPortal PC genomic data, we organized a training (n=300), testing (n=185), and validation (n=194) cohort. Using the Cox model, a nine-gene signature was derived, including eight genes from a MUC1-related network (APC, CTNNB1/β-catenin, GALNT10, GRB2, LYN, SIGLEC1, SOS1, and ZAP70) and FAM84B. Genomic alterations in these genes reduce disease-free survival (DFS) in the training (P=.00161), testing (P=.00699), entire (training+testing, P=5.557e-5), and a validation cohort (P=3.326e-5). The signature independently predicts PC recurrence [hazard ratio (HR)=1.731; 95% confidence interval (CI): 1.104-2.712; P=.0167] after adjusting for known clinical factors and stratifies patients with high risk of PC recurrence using the median (HR 2.072; 95% CI: 1.245-3.450, P=.0051) and quartile 3 (HR 3.707, 95% CI: 1.949-7.052, P=6.51e-5) scores. Several novel β-catenin mutants are identified in PCs leading to a rapid onset of death and recurrence. Genomic alterations in APC and CTNNB1/β-catenin reduce DFS in two independent PC cohorts (n=485, P=.0369; n=84, P=.0437). The nine-gene signature also associates with reductions in overall survival (P=.0458) and DFS (P=.0163) in melanoma patients (n=367). MUC1 upregulation is associated with CRPC and bone metastasis. A nine-gene signature derived from a MUC1 network predicts PC recurrence."	"MiR-148a impairs Ras/ERK signaling in B lymphocytes by targeting SOS proteins. Although microRNAs have been recognized as central cellular regulators, there is an evident lack of knowledge about their targets. Here, we analyzed potential target genes for miR-148a functioning in Ras signaling in B cells, including SOS1 and SOS2. A dual-luciferase reporter assay showed significantly decreased luciferase activity upon ectopic overexpression of miR-148a in HEK-293T cells that were co-transfected with the 3'UTR of either SOS1 or SOS2. Each of the 3'UTRs of SOS1 and SOS2 contained two binding sites for miR-148a both of which were necessary for the decreased luciferase activity. MiR-148a overexpression in HEK-293T lead to significantly reduced levels of both endogenous SOS1 and SOS2 proteins. Likewise, reduced levels of SOS proteins were found in two B cell lines that were transfected with miR-148a. The level of ERK1/2 phosphorylation as one of the most relevant downstream members of the Ras/ERK signaling pathway was also reduced in cells with miR-148a overexpression. The data show that miR-148a impairs the Ras/ERK signaling pathway via SOS1 and SOS2 proteins in B cells."	"Differential functions of WAVE regulatory complex subunits in the regulation of actin-driven processes. The WAVE regulatory complex (WRC) links upstream Rho-family GTPase signaling to the activation of the ARP2/3 complex in different organisms. WRC-induced and ARP2/3 complex-mediated actin nucleation beneath the plasma membrane is critical for actin assembly in the leading edge to drive efficient cell migration. The WRC is a stable heteropentamer composed of SCAR/WAVE, Abi, Nap, Pir and the small polypeptide Brk1/Hspc300. Functional interference with individual subunits of the complex frequently results in diminished amounts of the remaining polypeptides of the WRC complex, implying the complex to act as molecular entity. However, Abi was also found to associate with mammalian N-WASP, formins, Eps8/SOS1 or VASP, indicating additional functions of individual WRC subunits in eukaryotic cells. To address this issue systematically, we inactivated all WRC subunits, either alone or in combination with VASP in Dictyostelium cells and quantified the protein content of the remaining subunits in respective WRC knockouts. The individual mutants displayed highly differential phenotypes concerning various parameters, including cell morphology, motility, cytokinesis or multicellular development, corroborating the view of additional roles for individual subunits, beyond their established function in WRC-mediated Arp2/3 complex activation. Finally, our data uncover the interaction of the actin polymerase VASP with WRC-embedded Abi to mediate VASP accumulation in cell protrusions, driving efficient cell migration."	"Variable phenotypic expression in a large Noonan syndrome family segregating a novel SOS1 mutation. Noonan syndrome (NS) is an autosomal dominant multisystem condition with a variable phenotype. The most characteristic features are short stature, congenital heart defects, and recognizable facial features. Mutations in SOS1 are found in 10-20% of patients with NS. Different genotype-phenotype studies mention correlations between SOS1 mutations and some features, such as ectodermal abnormalities and specific facial features. We present a large NS family with a novel pathogenic mutation; SOS1 c.3134C&gt;G, p.Pro1045Arg. Ten family members with NS are included with genetically confirmed mutation and clinical evaluation. The phenotype shows a broad spectrum from only few suggestive features for NS in the older generation to typical features in the youngest generation. We report on a novel pathogenic mutation in the SOS1 gene and a large clinical spectrum in a NS family with ten genetically confirmed affected individuals."	"Salt stress reveals differential physiological, biochemical and molecular responses in T. monococcum and T. durum wheat genotypes. Salt stress responses implicate a complex mechanism and differ from plant species to another. In this study, we analyzed the physiological, biochemical and molecular responses to salt stress of the diploid wheat (T. monococcum) and compared to the tetraploid wheat (T. durum). Our results showed that the diploid wheat cultivar (cv. Turkey) is relatively tolerant to different salt stress conditions than the tetraploid wheat cultivar (cv. Om Rabia3). This tolerance was manifested by significant germination, plant growth and uptake of water generating cell turgor and development. Moreover, total chlorophyll content was higher in the diploid wheat than that in the tetraploid wheat. The Na<sup>+</sup> content in leaf blade of the cv. Om Rabia3 was significantly higher than that of the cv. Turkey, suggesting that the diploid cultivar accumulates less toxic sodium in the photosynthetic tissues. This mechanism could be explained by the recirculation of the toxic ions Na<sup>+</sup> into the xylem sap by SOS1 protein, which coordinates with HKT-like proteins to reduce the accumulation of Na<sup>+</sup> ions in leaf blade. Interestingly, the expression of the three genes SOS1, HKT and NHX was enhanced under salinity especially in leaf blade of the cv. Turkey. Moreover, this wheat cultivar induced the antioxidative enzymes CAT and SOD activity more efficiently than the other cultivar."	"Relative contribution of Na<sup>+</sup>/K<sup>+</sup> homeostasis, photochemical efficiency and antioxidant defense system to differential salt tolerance in cotton (Gossypium hirsutum L.) cultivars. In this study, the role of specific components of different coping strategies to salt load were identified. A pot experiment was conducted with four cotton (Gossypium hirsutum L.) cultivars (differing in salt-sensitivity) under salinity stress. Based on observed responses in growth performance and physiological characteristics, CZ91 was the most tolerant of the four cultivars, followed by cultivars CCRI44 and CCRI49, with Z571 being much more sensitive to salt stress. To perform this tolerant response, they implement different adaptative mechanisms to cope with salt-stress. The superior salt tolerance of CZ91 was conferred by at least three complementary physiological mechanisms: its ability to regulate K<sup>+</sup> and Na<sup>+</sup> transport more effectively, its higher photochemical efficiency and better antioxidant defense capacity. However, only one or a few specific components of these defense systems play crucial roles in moderately salt tolerant CCRI44 and CCRI49. Lower ROS load in CCRI44 may be attributed to simultaneous induction of antioxidant defenses by maintaining an unusually high level of SOD, and higher activities of CAT, APX, and POD during salt stress. CCRI49 could reduce the excess generation of ROS not only by maintaining a higher selective absorption of K<sup>+</sup> over Na<sup>+</sup> in roots across the membranes through SOS1, AKT1, and HAK5, but also by displaying higher excess-energy dissipation (e.g., higher ETR, PR and qN) during salt stress. Overall, our data provide a mechanistic explanation for differential salt stress tolerance among these cultivars and shed light on the different strategies employed by cotton cultivars to minimize the ill effects of stress."	"Arytenoid neuromas are a recognized feature of SOS1 mutations causing pure mucosal neuroma syndrome. NA"	"Salt-Sensitive Signaling Networks in the Mediation of K<sup>+</sup>/Na<sup>+</sup> Homeostasis Gene Expression in Glycyrrhiza uralensis Roots. We investigated the effects of salt-sensitive signaling molecules on ionic fluxes and gene expression related to K<sup>+</sup>/Na<sup>+</sup> homeostasis in a perennial herb, Glycyrrhiza uralensis, during short-term NaCl stress (100 mM, 24 h). Salt treatment caused more pronounced Na<sup>+</sup> accumulation in root cells than in leaf cells. Na<sup>+</sup> ions were mostly compartmentalized in vacuoles. Roots exposed to NaCl showed increased levels of extracellular ATP (eATP), cytosolic Ca<sup>2+</sup>, H2O2, and NO. Steady-state flux recordings revealed that these salt-sensitive signaling molecules enhanced NaCl-responsive Na<sup>+</sup> efflux, due to the activated Na<sup>+</sup>/H<sup>+</sup> antiport system in the plasma membrane (PM). Moreover, salt-elicited K<sup>+</sup> efflux, which was mediated by depolarization-activated cation channels, was reduced with the addition of Ca<sup>2+</sup>, H2O2, NO, and eATP. The salt-adaptive effects of these molecules (Na<sup>+</sup> extrusion and K<sup>+</sup> maintenance) were reduced by pharmacological agents, including LaCl3 (a PM Ca<sup>2+</sup> channel inhibitor), DMTU (a reactive oxygen species scavenger), cPTIO (an NO scavenger), or PPADS (an antagonist of animal PM purine P2 receptors). RT-qPCR data showed that the activation of the PM Na<sup>+</sup>/H<sup>+</sup> antiport system in salinized roots most likely resulted from the upregulation of two genes, GuSOS1 and GuAHA, which encoded the PM Na<sup>+</sup>/H<sup>+</sup> antiporter, salt overly sensitive 1 (SOS1), and H<sup>+</sup>-ATPase, respectively. Clear interactions occurred between these salt-sensitive agonists to accelerate transcription of salt-responsive signaling pathway genes in G. uralensis roots. For example, Ca<sup>2+</sup>, H2O2, NO, and eATP promoted transcription of GuSOS3 (salt overly sensitive 3) and/or GuCIPK (CBL-interacting protein kinase) to activate the predominant Ca<sup>2+</sup>-SOS signaling pathway in salinized liquorice roots. eATP, a novel player in the salt response of G. uralensis, increased the transcription of GuSOS3, GuCIPK, GuRbohD (respiratory burst oxidase homolog protein D), GuNIR (nitrate reductase), GuMAPK3, and GuMAPK6 (the mitogen-activated protein kinases 3 and 6). Moreover, GuMAPK3 and GuMAPK6 expression levels were enhanced by H2O2 in NaCl-stressed G. uralensis roots. Our results indicated that eATP triggered downstream components and interacted with Ca<sup>2+</sup>, H2O2, and NO signaling to maintain K<sup>+</sup>/Na<sup>+</sup> homeostasis. We propose that a multiple signaling network regulated K<sup>+</sup>/Na<sup>+</sup> homeostasis in NaCl-stressed G. uralensis roots."	"Phosphorylation of SOS1 on tyrosine 1196 promotes its RAC GEF activity and contributes to BCR-ABL leukemogenesis. Son of Sevenless 1 (SOS1) is a dual guanine nucleotide exchange factor (GEF) that activates the small GTPases RAC and RAS. Although the molecular mechanisms of RAS GEF catalysis have been unveiled, how SOS1 acquires RAC GEF activity and what is the physio-pathological relevance of this activity is much less understood. Here we show that SOS1 is tyrosine phosphorylated on Y1196 by ABL. Phosphorylation of Y1196 controls SOS1 inter-molecular interaction, is required to promote the exchange of nucleotides on RAC in vitro and for platelet-derived growth factor (PDGF) activation of RAC- and RAC-dependent actin remodeling and cell migration. SOS1 is also phosphorylated on Y1196 by BCR-ABL in chronic myelogenous leukemic cells. Importantly, in these cells, SOS1 is required for BCR-ABL-mediated activation of RAC, cell proliferation and transformation in vitro and in a xenograft mouse model. Finally, genetic removal of Sos1 in the bone marrow-derived cells (BMDCs) from Sos1<sup>fl/fl</sup> mice and infected with BCR-ABL causes a significant delay in the onset of leukemogenesis once BMDCs are injected into recipient, lethally irradiated mice. Thus, SOS1 is required for full transformation and critically contribute to the leukemogenic potential of BCR-ABL."	"A genome-wide transcriptome map of pistachio (Pistacia vera L.) provides novel insights into salinity-related genes and marker discovery. Pistachio (Pistacia vera L.) is one of the most important commercial nut crops worldwide. It is a salt-tolerant and long-lived tree, with the largest cultivation area in Iran. Climate change and subsequent increased soil salt content have adversely affected the pistachio yield in recent years. However, the lack of genomic/global transcriptomic sequences on P. vera impedes comprehensive researches at the molecular level. Hence, whole transcriptome sequencing is required to gain insight into functional genes and pathways in response to salt stress. RNA sequencing of a pooled sample representing 24 different tissues of two pistachio cultivars with contrasting salinity tolerance under control and salt treatment by Illumina Hiseq 2000 platform resulted in 368,953,262 clean 100 bp paired-ends reads (90 Gb). Following creating several assemblies and assessing their quality from multiple perspectives, we found that using the annotation-based metrics together with the length-based parameters allows an improved assessment of the transcriptome assembly quality, compared to the solely use of the length-based parameters. The generated assembly by Trinity was adopted for functional annotation and subsequent analyses. In total, 29,119 contigs annotated against all of five public databases, including NR, UniProt, TAIR10, KOG and InterProScan. Among 279 KEGG pathways supported by our assembly, we further examined the pathways involved in the plant hormone biosynthesis and signaling as well as those to be contributed to secondary metabolite biosynthesis due to their importance under salinity stress. In total, 11,337 SSRs were also identified, which the most abundant being dinucleotide repeats. Besides, 13,097 transcripts as candidate stress-responsive genes were identified. Expression of some of these genes experimentally validated through quantitative real-time PCR (qRT-PCR) that further confirmed the accuracy of the assembly. From this analysis, the contrasting expression pattern of NCED3 and SOS1 genes were observed between salt-sensitive and salt-tolerant cultivars. This study, as the first report on the whole transcriptome survey of P. vera, provides important resources and paves the way for functional and comparative genomic studies on this major tree to discover the salinity tolerance-related markers and stress response mechanisms for breeding of new pistachio cultivars with more salinity tolerance."	"Expression Profile of Genes Potentially Associated with Adequate Glycemic Control in Patients with Type 2 Diabetes Mellitus. Despite increasing research in type 2 diabetes mellitus (T2D), there are few studies showing the impact of the poor glycemic control on biological processes occurring in T2D. In order to identify potential genes related to poorly/well-controlled patients with T2D, our strategy of investigation included a primary screen by microarray (Human Genome U133) in a small group of individuals followed by an independent validation in a greater group using RT-qPCR. Ninety patients were divided as follows: poorly controlled T2D (G1), well-controlled T2D (G2), and normoglycemic individuals (G3). After using affy package in R, differentially expressed genes (DEGs) were prospected as candidate genes potentially relevant for the glycemic control in T2D patients. After validation by RT-qPCR, the obtained DEGs were as follows-G1 + G2 versus G3: HLA-DQA1, SOS1, and BRCA2; G2 versus G1: ENO2, VAMP2, CCND3, CEBPD, LGALS12, AGBL5, MAP2K5, and PPAP2B; G2 versus G3: HLA-DQB1, MCM4, and SEC13; and G1 versus G3: PPIC. This demonstrated a systemic exacerbation of the gene expression related to immune response in T2D patients. Moreover, genes related to lipid metabolisms and DNA replication/repair were influenced by the glycemic control. In conclusion, this study pointed out candidate genes potentially associated with adequate glycemic control in T2D patients, contributing to the knowledge of how the glycemic control could systemically influence gene expression."	"Genetic Polymorphisms as Predictive Markers of Response to Growth Hormone Therapy in Children with Growth Hormone Deficiency. Objective Growth hormone (GH) deficiency (GHD) is commonly treated with recombinant human GH (rhGH). Individual response to rhGH therapy varies widely and there is evidence that variations in growth-related genes, e. g. the GH receptor (GHR) gene, may impact treatment response. We aimed to identify genetic polymorphisms which could serve as predictive markers of response to rhGH therapy. Methods We conducted a genetic analysis of single nucleotide polymorphisms (SNPs) and the GHR exon 3 deletion in 101 paediatric GHD patients receiving rhGH. Patients were analysed for 13 known SNPs in 11 genes of the GH axis (SOS1, IGFR1, GAB1, LHX4, IGFBP3, GRB10, GHRHR, GHSR), growth plate (VDR, ESR1) and cell cycle (CDK4). Individual index of responsiveness (IoR) values were compared by genotype. We also analysed the potential association between the IoR and the GHR exon 3 deletion. IoRs were analysed by genotype by one-way analysis of variance and unpaired t-test. Results Variations in two SNPs, rs2888586 (SOS1) and rs2069502 (CDK4), and the GHR exon 3 deletion were significantly associated with response to rhGH treatment. Conclusions Genetic variations are potentially suitable as predictive markers of rhGH treatment response in GHD. Genetic analysis provides a starting point for individualised treatment of GHD. Zielsetzung Wachstumshormonmangel (growth hormone (GH) deficiency (GHD)) wird allgemein mit rekombinantem Wachstumshormon (recombinant human GH, rhGH) behandelt. Das individuelle Ansprechen auf die rhGH-Therapie variiert stark. Es gibt Hinweise darauf, dass Variationen in wachstumsrelevanten Genen, z. B. im Gen des GH-Rezeptors (GHR), das Therapieansprechen beeinflussen. Ziel dieser Studie war es, genetische Polymorphismen zu identifizieren, die als prädiktive Marker des Ansprechens auf eine rhGH-Therapie dienen könnten. Methoden Es wurden 101 Kinder mit rhGH-behandeltem GH-Mangel genetisch auf das Vorliegen von Einzelnukleotid-Polymorphismen (single nucleotide polymorphisms (SNPs)) und einer Deletion im Exon 3 des GHR-Gens untersucht. Gesucht wurde nach 13 bekannten SNPs in 11 Genen der GH-Achse (SOS1, IGFR1, GAB1, LHX4, IGFBP3, GRB10, GHRHR, GHSR), der Epiphysenfuge (VDR, ESR1) und des Zellzyklus (CDK4). Die Werte für den Index der individuellen Ansprechbarkeit (individual index of responsiveness (IoR)) wurden nach Genotyp miteinander verglichen. Untersucht wurde auch eine potenzielle Assoziation zwischen IoR und GHR-Exon-3-Deletion. Die statistische IoR-Auswertung nach Genotyp erfolgte mithilfe einfaktorieller Varianzanalysen und t-Tests. Ergebnisse Variationen in 2 SNPs, rs2888586 (SOS1) und rs2069502 (CDK4), sowie die GHR-exon-3 Deletion waren signifikant mit dem Ansprechen auf eine rhGH-Therapie assoziiert. Schlussfolgerungen Genetische Variationen eignen sich bei GH-Mangel potenziell als prädiktive Marker des Ansprechens auf eine rhGH-Therapie. Eine genetische Analyse eignet sich als Ausgangspunkt für die individualisierte Behandlung eines GH-Mangels."	"Putative role of glutamine in the activation of CBL/CIPK signalling pathways during salt stress in sorghum. The salt overly sensitive (SOS) pathway is the only mechanism known for Na<sup>+</sup> extrusion in plant cells. SOS pathway activation involves Ca<sup>2+</sup>-sensing proteins, such as calcineurin B-like (CBL) proteins, and CBL-interacting protein kinases (CIPKs). In this signalling mechanism, a transit increase in cytosolic Ca<sup>2+</sup> concentration triggered by Na<sup>+</sup> accumulation is perceived by CBL (also known as SOS3). Afterward, SOS3 physically interacts with a CIPK (also known as SOS2), forming the SOS2/SOS3 complex, which can regulate the number downstream targets, controlling ionic homeostasis. For instance, the SOS2/SOS3 complex phosphorylates and activates the SOS1 plasmalemma protein, which is a Na<sup>+</sup>/H<sup>+</sup> antiporter that extrudes Na<sup>+</sup> out of the cell. The CBL-CIPK networking system displays specificity, complexity and diversity, constituting a critical response against salt stress and other abiotic stresses. In a study reported in the journal Plant and Cell Physiology, we showed that NH4<sup>+</sup> induces the robust activation of transporters for Na<sup>+</sup> homeostasis in root cells, especially the SOS1 antiporter and plasma membrane H<sup>+</sup>-ATPase, differently than does NO3<sup>-</sup>. Despite some studies having shown that external NH4<sup>+</sup> ameliorates salt-induced effects on ionic homeostasis, there is no evidence that NH4<sup>+</sup> per se or some product of its assimilation is responsible for these responses. Here, we speculate about the signalling role behind glutamine in CBL-CIPK modulation, which could effectively activate the SOS pathway in NH4<sup>+</sup>-fed stressed plants."	"The Role of Na<sup>+</sup> and K<sup>+</sup> Transporters in Salt Stress Adaptation in Glycophytes. Ionic stress is one of the most important components of salinity and is brought about by excess Na<sup>+</sup> accumulation, especially in the aerial parts of plants. Since Na<sup>+</sup> interferes with K<sup>+</sup> homeostasis, and especially given its involvement in numerous metabolic processes, maintaining a balanced cytosolic Na<sup>+</sup>/K<sup>+</sup> ratio has become a key salinity tolerance mechanism. Achieving this homeostatic balance requires the activity of Na<sup>+</sup> and K<sup>+</sup> transporters and/or channels. The mechanism of Na<sup>+</sup> and K<sup>+</sup> uptake and translocation in glycophytes and halophytes is essentially the same, but glycophytes are more susceptible to ionic stress than halophytes. The transport mechanisms involve Na<sup>+</sup> and/or K<sup>+</sup> transporters and channels as well as non-selective cation channels. Thus, the question arises of whether the difference in salt tolerance between glycophytes and halophytes could be the result of differences in the proteins or in the expression of genes coding the transporters. The aim of this review is to seek answers to this question by examining the role of major Na<sup>+</sup> and K<sup>+</sup> transporters and channels in Na<sup>+</sup> and K<sup>+</sup> uptake, translocation and intracellular homeostasis in glycophytes. It turns out that these transporters and channels are equally important for the adaptation of glycophytes as they are for halophytes, but differential gene expression, structural differences in the proteins (single nucleotide substitutions, impacting affinity) and post-translational modifications (phosphorylation) account for the differences in their activity and hence the differences in tolerance between the two groups. Furthermore, lack of the ability to maintain stable plasma membrane (PM) potentials following Na<sup>+</sup>-induced depolarization is also crucial for salt stress tolerance. This stable membrane potential is sustained by the activity of Na<sup>+</sup>/H<sup>+</sup> antiporters such as SOS1 at the PM. Moreover, novel regulators of Na<sup>+</sup> and K<sup>+</sup> transport pathways including the Nax1 and Nax2 loci regulation of SOS1 expression and activity in the stele, and haem oxygenase involvement in stabilizing membrane potential by activating H<sup>+</sup>-ATPase activity, favorable for K<sup>+</sup> uptake through HAK/AKT1, have been shown and are discussed."	"Classifier of cross talk genes predicts the prognosis of hepatocellular carcinoma. The present study aimed to establish a prediction model for hepatocellular carcinoma (HCC) based on the cross talk genes from important biological pathways involved in HCC. Differentially expressed genes (DEGs) for HCC were identified from mRNA profiles of GSE36376, which were mapped to protein‑protein interaction (PPI) networks from BioGrid and the human protein reference database. Then critical genes based on the deviation score and the degree of node were selected from the novel PPI network. Cross talk genes were screened from the network established based on the associations of gene‑gene, gene‑pathway and pathway‑pathway. A classifier based on specific cross talk genes was constructed for prediction of HCC using the random forest algorithm. Finally, the diagnostic performance of this prediction model was verified by predicting survival time of patients with HCC from the genome cancer atlas (TCGA) and other independent gene expression omnibus (GEO) databases. From the novel PPI network, a total of 200 critical genes were screened out and they were significantly enriched in 23 pathways, which have been reported to be significantly associated with the development of HCC. Based on these identified pathways, cross talk genes were identified including AKT1, SOS1, EGF, MYC, IGF1, ERBB2, CDKN1B, SHC2, VEGFA and INS. The prediction model has a relative average classification accuracy of 0.94 for HCC, which has a stable predicting efficacy for survival time of HCC patients validated in the TCGA database and two other independent GEO datasets. In conclusion, a total of 39 cross talk genes in HCC were identified and a classifier based on the cross talk genes was constructed, which indicates a high prognosis prediction efficacy in several independent datasets. The results provide a novel perspective to develop a multiple gene diagnostic tool for HCC prognosis, which also provided potential biomarkers or therapeutic targets for HCC."	"Role of sodium ion transporters and osmotic adjustments in stress alleviation of Cynodon dactylon under NaCl treatment: a parallel investigation with rice. Comparative analyses of the responses to NaCl in Cynodon dactylon and a sensitive crop species like rice could effectively unravel the salt tolerance mechanism in the former. C. dactylon, a wild perennial chloridoid grass having a wide range of ecological distribution is generally adaptable to varying degrees of salinity stress. The role of salt exclusion mechanism present exclusively in the wild grass was one of the major factors contributing to its tolerance. Salt exclusion was found to be induced at 4 days when the plants were treated with a minimum conc. of 200 mM NaCl. The structural peculiarities of the salt exuding glands were elucidated by the SEM and TEM studies, which clearly revealed the presence of a bicellular salt gland actively functioning under NaCl stress to remove the excess amount of Na<sup>+</sup> ion from the mesophyll tissues. Moreover, the intracellular effect of NaCl on the photosynthetic apparatus was found to be lower in C. dactylon in comparison to rice; at the same time, the vacuolization process increased in the former. Accumulation of osmolytes like proline and glycine betaine also increased significantly in C. dactylon with a concurrent check on the H2O2 levels, electrolyte leakage and membrane lipid peroxidation. This accounted for the proper functioning of the Na<sup>+</sup> ion transporters in the salt glands and also in the vacuoles for the exudation and loading of excess salts, respectively, to maintain the osmotic balance of the protoplasm. In real-time PCR analyses, CdSOS1 expression was found to increase by 2.5- and 5-fold, respectively, and CdNHX expression increased by 1.5- and 2-fold, respectively, in plants subjected to 100 and 200 mM NaCl treatment for 72 h. Thus, the comparative analyses of the expression pattern of the plasma membrane and tonoplast Na<sup>+</sup> ion transporters, SOS1 and NHX in both the plants revealed the significant role of these two ion transporters in conferring salinity tolerance in Cynodon."	"REST Final-Exon-Truncating Mutations Cause Hereditary Gingival Fibromatosis. Hereditary gingival fibromatosis (HGF) is the most common genetic form of gingival fibromatosis that develops as a slowly progressive, benign, localized or generalized enlargement of keratinized gingiva. HGF is a genetically heterogeneous disorder and can be transmitted either as an autosomal-dominant or autosomal-recessive trait or appear sporadically. To date, four loci (2p22.1, 2p23.3-p22.3, 5q13-q22, and 11p15) have been mapped to autosomes and one gene (SOS1) has been associated with the HGF trait observed to segregate in a dominant inheritance pattern. Here we report 11 individuals with HGF from three unrelated families. Whole-exome sequencing (WES) revealed three different truncating mutations including two frameshifts and one nonsense variant in RE1-silencing transcription factor (REST) in the probands from all families and further genetic and genomic analyses confirmed the WES-identified findings. REST is a transcriptional repressor that is expressed throughout the body; it has different roles in different cellular contexts, such as oncogenic and tumor-suppressor functions and hematopoietic and cardiac differentiation. Here we show the consequences of germline final-exon-truncating mutations in REST for organismal development and the association with the HGF phenotype."	"Highly reproducible improved label-free quantitative analysis of cellular phosphoproteome by optimization of LC-MS/MS gradient and analytical column construction. Expanding the sequencing depth of the peptides with a statistically significant quantitative change derived from a biological stimulation is critical. Here we demonstrate that optimization of LC gradient and analytical column construction can reveal over 30,000 unique peptides and 23,000 phosphopeptides at high confidence. The quantitative reproducibility of different analytical workflows was evaluated by comparing the phosphoproteome of CD3/4 stimulated and unstimulated T-cells as a model system. A fritless, 50cm-long column packed with 1.9μm particles operated with a standard pressure HPLC significantly improved the sequencing depth 51% and decreased the selected ion chromatogram peak spreading. Most importantly, under the optimal workflow we observed an improvement of over 300% in detection of significantly changed phosphopeptides in the stimulated cells compared with the other workflows. The discovery power of the optimized column configuration was illustrated by identification of significantly altered phosphopeptides harboring novel sites from proteins previously established as important in T cell signaling including A-Raf, B-Raf, c-Myc, CARMA1, Fyn, ITK, LAT, NFAT1/2/3, PKCα, PLCγ1/2, RAF1, and SOS1. Taken together, our results reveal the analytical power of optimized chromatography using sub 2μm particles for the analysis of the T cell phosphoproteome to reveal a vast landscape of significantly altered phosphorylation changes in response to T cell receptor stimulation."	"Pro-migratory and TGF-β-activating functions of αvβ6 integrin in pancreatic cancer are differentially regulated via an Eps8-dependent GTPase switch. The integrin αvβ6 is up-regulated in numerous carcinomas, where expression commonly correlates with poor prognosis. αvβ6 promotes tumour invasion, partly through regulation of proteases and cell migration, and is also the principal mechanism by which epithelial cells activate TGF-β1; this latter function complicates therapeutic targeting of αvβ6, since TGF-β1 has both tumour-promoting and -suppressive effects. It is unclear how these different αvβ6 functions are linked; both require actin cytoskeletal reorganization, and it is suggested that tractive forces generated during cell migration activate TGF-β1 by exerting mechanical tension on the ECM-bound latent complex. We examined the functional relationship between cell invasion and TGF-β1 activation in pancreatic ductal adenocarcinoma (PDAC) cells, and confirmed that both processes are αvβ6-dependent. Surprisingly, we found that cellular functions could be biased towards either motility or TGF-β1 activation depending on the presence or absence of epidermal growth factor receptor pathway substrate 8 (Eps8), a regulator of actin remodelling, endocytosis, and GTPase activation. Similar to αvβ6, we found that Eps8 was up-regulated in &gt;70% of PDACs. In complex with Abi1/Sos1, Eps8 regulated αvβ6-dependent cell migration through activation of Rac1. Down-regulation of Eps8, Sos1 or Rac1 suppressed cell movement, while simultaneously increasing αvβ6-dependent TGF-β1 activation. This latter effect was modulated through increased cell tension, regulated by Rho activation. Thus, the Eps8/Abi1/Sos1 tricomplex acts as a key molecular switch altering the balance between Rac1 and Rho activation; its presence or absence in PDAC cells modulates αvβ6-dependent functions, resulting in a pro-migratory (Rac1-dependent) or a pro-TGF-β1 activation (Rho-dependent) functional phenotype, respectively. © 2017 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Identification and functional analysis of the risk microRNAs associated with cerebral low-grade glioma prognosis. Low-grade gliomas (LGGs) are associated with neurological disability. The present study used microRNA (miRNA) expression profiles to identify risk miRNAs for potential prognosis of cerebral LGGs. miRNA expression profiles and clinical data from 408 patients with cerebral LGGs were obtained from the Cancer Genome Atlas database. Risk miRNAs were identified by plotting Kaplan‑Meier curves and Cox proportional hazard regression analysis with the survival and KMsurv packages in R. A regulatory network of miRNA‑targets was constructed, followed by gene ontology (GO) function and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analysis using the Database for Annotation, Visualization and Integrated Discovery. A protein‑protein interaction (PPI) network of miRNA targets was built using Search Tool for the Retrieval of Interacting Genes software, and sub‑pathway identification was performed using the iSubpathwayMiner package in R. In total, 39 miRNAs had significant effect on survival curves. Following the Cox analysis and construction of miRNA‑targets regulatory network, hsa‑miRNA (miR)‑326 was identified to regulate 397 target genes. Additionally, targets of miR‑326 were primarily enriched in the GO terms of cell proliferation, epithelial growth factor receptor and nerve growth factor signaling pathways. Additionally, son of sevenless homolog 1 (SOS1), neuroblastoma RAS viral oncogene homolog (NRAS), vitamin D receptor (VDR) and mothers against decapentaplegic family member 3 (SMAD3) were most enriched in the PPI network. Targets of miR‑326 were primarily enriched in sub‑pathways including sphingolipid metabolism and arachidonic acid metabolism, in which sphingomyelin synthase 1 (SGMS1) and hematopoietic prostaglandin D synthase (HPGDS) were screened out. Hsa‑miR‑326 was identified as a risk miRNA for prognosis and may improve the outcome prediction of patients with cerebral LGG. This miRNA may regulate cancer cell proliferation by targeting SOS1, NRAS, VDR, SMAD3, SGMS1 and HPGDS."	"Diverse roles of guanine nucleotide exchange factors in regulating collective cell migration. Efficient collective migration depends on a balance between contractility and cytoskeletal rearrangements, adhesion, and mechanical cell-cell communication, all controlled by GTPases of the RHO family. By comprehensive screening of guanine nucleotide exchange factors (GEFs) in human bronchial epithelial cell monolayers, we identified GEFs that are required for collective migration at large, such as SOS1 and β-PIX, and RHOA GEFs that are implicated in intercellular communication. Down-regulation of the latter GEFs differentially enhanced front-to-back propagation of guidance cues through the monolayer and was mirrored by down-regulation of RHOA expression and myosin II activity. Phenotype-based clustering of knockdown behaviors identified RHOA-ARHGEF18 and ARHGEF3-ARHGEF28-ARHGEF11 clusters, indicating that the latter may signal through other RHO-family GTPases. Indeed, knockdown of RHOC produced an intermediate between the two phenotypes. We conclude that for effective collective migration, the RHOA-GEFs → RHOA/C → actomyosin pathways must be optimally tuned to compromise between generation of motility forces and restriction of intercellular communication."	"Multiple spinal nerve enlargement and SOS1 mutation: Further evidence of overlap between neurofibromatosis type 1 and Noonan phenotype. Neurofibromatosis type 1 (NF1) has long been considered a well-defined, recognizable monogenic disorder, with neurofibromas constituting a pathognomonic sign. This dogma has been challenged by recent descriptions of patients with enlarged nerves or paraspinal tumors, suggesting that neurogenic tumors and hypertrophic neuropathy may be a complication of Noonan syndrome with multiple lentigines (NSML) or RASopathy phenotype. We describe a 15-year-old boy, whose mother previously received clinical diagnosis of NF1 due to presence of bilateral cervical and lumbar spinal lesions resembling plexiform neurofibromas and features suggestive of NS. NF1 molecular analysis was negative in the mother. The boy presented with Noonan features, multiple lentigines and pectus excavatum. Next-generation sequencing analysis of all RASopathy genes identified p.Ser548Arg missense mutation in SOS1 in the boy, confirmed in his mother. Brain and spinal magnetic resonance imaging scans were negative in the boy. No heart involvement or deafness was observed in proband or mother. This is the first report of a SOS1 mutation associated with hypertrophic neuropathy resembling plexiform neurofibromas, a rare complication in Noonan phenotypes with mutations in RASopathy genes. Our results highlight the overlap between RASopathies, suggesting that NF1 diagnostic criteria need rethinking. Genetic analysis of RASopathy genes should be considered when diagnosis is uncertain."	"Mechanism of SOS PR-domain autoinhibition revealed by single-molecule assays on native protein from lysate. The guanine nucleotide exchange factor (GEF) Son of Sevenless (SOS) plays a critical role in signal transduction by activating Ras. Here we introduce a single-molecule assay in which individual SOS molecules are captured from raw cell lysate using Ras-functionalized supported membrane microarrays. This enables characterization of the full-length SOS protein, which has not previously been studied in reconstitution due to difficulties in purification. Our measurements on the full-length protein reveal a distinct role of the C-terminal proline-rich (PR) domain to obstruct the engagement of allosteric Ras independently of the well-known N-terminal domain autoinhibition. This inhibitory role of the PR domain limits Grb2-independent recruitment of SOS to the membrane through binding of Ras·GTP in the SOS allosteric binding site. More generally, this assay strategy enables characterization of the functional behaviour of GEFs with single-molecule precision but without the need for purification."	"SOS1, HKT1;5, and NHX1 Synergistically Modulate Na<sup>+</sup> Homeostasis in the Halophytic Grass Puccinellia tenuiflora. Puccinellia tenuiflora is a typical salt-excluding halophytic grass with excellent salt tolerance. Plasma membrane Na<sup>+</sup>/H<sup>+</sup> transporter SOS1, HKT-type protein and tonoplast Na<sup>+</sup>/H<sup>+</sup> antiporter NHX1 are key Na<sup>+</sup> transporters involved in plant salt tolerance. Based on our previous research, we had proposed a function model for these transporters in Na<sup>+</sup> homeostasis according to the expression of PtSOS1 and Na<sup>+</sup>, K<sup>+</sup> levels in P. tenuiflora responding to salt stress. Here, we analyzed the expression patterns of PtSOS1, PtHKT1;5, and PtNHX1 in P. tenuiflora under 25 and 150 mM NaCl to further validate this model by combining previous physiological characteristics. Results showed that the expressions of PtSOS1 and PtHKT1;5 in roots were significantly induced and peaked at 6 h under both 25 and 150 mM NaCl. Compared to the control, the expression of PtSOS1 significantly increased by 5.8-folds, while that of PtHKT1;5 increased only by 1.2-folds in roots under 25 mM NaCl; on the contrary, the expression of PtSOS1 increased by 1.4-folds, whereas that of PtHKT1;5 increased by 2.2-folds in roots under 150 mM NaCl. In addition, PtNHX1 was induced instantaneously under 25 mM NaCl, while its expression was much higher and more persistent in shoots under 150 mM NaCl. These results provide stronger evidences for the previous hypothesis and extend the model which highlights that SOS1, HKT1;5, and NHX1 synergistically regulate Na<sup>+</sup> homeostasis by controlling Na<sup>+</sup> transport systems at the whole-plant level under both lower and higher salt conditions. Under mild salinity, PtNHX1 in shoots compartmentalized Na<sup>+</sup> into vacuole slowly, and vacuole potential capacity for sequestering Na<sup>+</sup> would enhance Na<sup>+</sup> loading into the xylem of roots by PtSOS1 through feedback regulation; and consequently, Na<sup>+</sup> could be transported from roots to shoots by transpiration stream for osmotic adjustment. While under severe salinity, Na<sup>+</sup> was rapidly sequestrated into vacuoles of mesophyll cells by PtNHX1 and the vacuole capacity became saturated for sequestering more Na<sup>+</sup>, which in turn regulated long-distance Na<sup>+</sup> transport from roots to shoots. As a result, the expression of PtHKT1;5 was strongly induced so that the excessive Na<sup>+</sup> was unloaded from xylem into xylem parenchyma cells by PtHKT1;5."	"Lack of pathogenic mutations in SOS1 gene in phenytoin-induced gingival overgrowth patients. Gingival overgrowth is a side effect associated with some distinct classes of drugs, such as anticonvulsants, immunosuppressants, and calcium channel blockers. One of the main drugs associated with gingival overgrowth is the antiepileptic phenytoin, which affects gingival tissues by altering extracellular matrix metabolism. It has been shown that mutation of human SOS1 gene is responsible for a rare hereditary gingival fibromatosis type 1, a benign gingival overgrowth. The aim of the present study is to evaluate the possible contribution of SOS1 mutation to gingival overgrowth-related phenotype. We selected and screened for mutations a group of 24 epileptic patients who experienced significant gingival overgrowth following phenytoin therapy. Mutation scanning was carried out by denaturing high-performance liquid chromatography analysis of the entire coding region of the SOS1 gene. Novel identified variants were analyzed in-silico by using Alamut Visual mutation interpretation software, and comparison with normal control group was done. Mutation scanning of the entire coding sequence of SOS1 gene identified seven intronic variants and one new exonic substitution (c.138G&gt;A). The seven common intronic variants were not considered to be of pathogenic importance. The exonic substitution c.138G&gt;A was found to be absent in 100 ethnically matched normal control chromosomes, but was not expected to have functional significance based on prediction bioinformatics tools. This study represents the first mutation analysis of the SOS1 gene in phenytoin-induced gingival overgrowth epileptic patients. Present results suggest that obvious pathogenic mutations in the SOS1 gene do not represent a common mechanism underlying phenytoin-induced gingival overgrowth in epileptic patients; other mechanisms are likely to be involved in the pathogenesis of this drug-induced phenotype."	"Cadmium hampers salt tolerance of Sesuvium portulacastrum. It is well known that salinity reduces cadmium toxicity in halophytes. However, the possible interference of Cd with the mechanisms of salt tolerance is poorly explored. The aim of this study was to see whether Cd affects salt tolerance mechanisms in the halophyte Sesuvium portulacastrum. S. portulacastrum plants obtained from cuttings were grown in hydroponics for 3 weeks and then exposed to low (0.09 mM) or moderate (200 mM) NaCl concentrations, alone or in combination with 25 μM CdCl2. Microscopy observation revealed two strategies of salt tolerance: euhalophytism and secretion of salt by bladder cells. Cadmium exposure hardly influenced the total leaf Na<sup>+</sup> concentrations. However, Cd supply delayed the salt-induced upregulation of AHA1 (plasma membrane H<sup>+</sup>-ATPase 1) and SOS1 (plasma membrane Na<sup>+</sup> transporter &quot;Salt Overly Sensitive 1&quot;), genes that are essential for salt tolerance. Moreover, Cd induced the activation of BADH, coding for betaine aldehyde dehydrogenase, indicating enhanced osmotic stress due to Cd. Sodium-green fluorescence in protoplasts from plants grown with low or high NaCl, alone or in combination with Cd, revealed higher Na<sup>+</sup> concentrations in the cytoplasm of Cd-exposed plants. Taken together the results indicate interference of Cd with salt tolerance mechanisms in S. portulacastrum. This may have consequences for the efficient use of halophytes in phytoremediation of Cd-contaminated saline soils."	"Analysis of mutations in the SOS-1 gene in two Polish families with hereditary gingival fibromatosis. To establish whether two families from Malopolska and Mazovia provinces in Poland are affected by hereditary gingival fibromatosis type 1, caused by a single-cytosine insertion in exon 21 of the Son-of-Sevenless-1 gene. Six subjects with hereditary gingival fibromatosis and five healthy subjects were enrolled in the study. Gingival biopsies were collected during gingivectomy or tooth extraction and used for histopathological evaluation. Total RNA and genomic DNA were purified from cultured gingival fibroblasts followed by cDNA and genomic DNA sequencing and analysis. Hereditary gingival fibromatosis was confirmed by periodontal examination, X-ray, and laboratory tests. Histopathological evaluation showed hyperplastic epithelium, numerous collagen bundles, and abundant-to-moderate fibroblasts in subepithelial and connective tissue. Sequencing of exons 19-22 of the Son-of-Sevenless-1 gene did not reveal a single-cytosine insertion nor other mutations. Patients from two Polish families under study had not been affected by hereditary gingival fibromatosis type 1, caused by a single-cytosine insertion in exon 21 of the Son-of-Sevenless-1 gene. Further studies of the remaining regions of this gene as well as of other genes are needed to identify disease-related mutations in these patients. This will help to unravel the pathogenic mechanism of gingival overgrowth."	"The AtrbohF-dependent regulation of ROS signaling is required for melatonin-induced salinity tolerance in Arabidopsis. Although several literatures confirmed the beneficial roles of exogenous melatonin in the enhancement of salinity tolerance in plants, whether or how endogenous melatonin confers plant salinity tolerance is still elusive. In the report, we observed impaired melatonin level and salinity hypersensitivity in atsnat, the Arabidopsis melatonin synthesis mutant. Above hypersensitivity was rescued by melatonin or hydrogen peroxide. Meanwhile, melatonin-mediated salt tolerance in wild-type was abolished by an NADPH oxidase inhibitor, suggesting the possible role of NADPH oxidase-dependent reactive oxygen species (ROS). Genetic evidence further showed that the rapid stimulated RbohF transcripts and production of ROS elicited by melatonin in stressed wild-type plants were largely abolished by the mutation of AtrbohF. Meanwhile, salinity sensitivity of atrbohF mutant was not altered by melatonin, which was consistent with the higher Na<sup>+</sup> content and the resulting greater Na<sup>+</sup>/K<sup>+</sup> ratio, compared with those in wild-type plants. Further changes of SOS1, SOS2, and SOS3 transcripts suggested that the melatonin-triggered SOS-mediated Na<sup>+</sup> efflux might be mediated by AtrbohF-dependent ROS. The addition of melatonin could intensify the increased antioxidant defence in stressed wild-type but not in atrbohF mutant, both of which were confirmed by the histochemical staining for ROS production and lipid peroxidation during the later period of stress. Collectively, our genetic and molecular evidence revealed that the AtrbohF-dependent ROS signaling is required for melatonin-induced salinity tolerance via the reestablishment of ion and redox homeostasis."	"Determining the role of the underlying orbital-dependence of PBE0-DH and PBE-QIDH double-hybrid density functionals. We study the orbital-dependence of three (parameter-free) double-hybrid density functionals, namely the PBE0-DH, the PBE-QIDH models, and the SOS1-PBE-QIDH spin-opposite-scaled variant of the latter. To do it, we feed all their energy terms with different sets of orbitals obtained previously from self-consistent density functional theory calculations using several exchange-correlation functionals (e.g., PBE, PBE0, PBEH&amp;H), or directly with HF-PBE orbitals, to see their effect on selected datasets for atomization and reaction energies, the latter proned to marked self-interaction errors. We find that the PBE-QIDH double-hybrid model shows a great consistency, as the best results are always obtained for the set of orbitals corresponding to its hybrid scheme, which prompts us to recommend this model without any other fitting or reparameterization. © 2017 Wiley Periodicals, Inc."	"Unexpected Cartilage Phenotype in CD4-Cre-Conditional SOS-Deficient Mice. RAS signaling is central to many cellular processes and SOS proteins promote RAS activation. To investigate the role of SOS proteins in T cell biology, we crossed Sos1<sup>f/f</sup>Sos2<sup>-/-</sup> mice to CD4-Cre transgenic mice. We previously reported an effect of these mutations on T cell signaling and T cell migration. Unexpectedly, we observed nodules on the joints of greater than 90% of these mutant mice at 5 months of age, especially on the carpal joints. As the mice aged further, some also displayed joint stiffness, hind limb paralysis, and lameness. Histological analysis indicated that the abnormal growth in joints originated from dysplastic chondrocytes. Second harmonic generation imaging of the carpal nodules revealed that nodules were encased by rich collagen fibrous networks. Nodules formed in mice also deficient in RAG2, indicating that conventional T cells, which undergo rearrangement of the T cell antigen receptor, are not required for this phenotype. CD4-Cre expression in a subset of cells, either immune lineage cells (e.g., non-conventional T cells) or non-immune lineage cells (e.g., chondrocytes) likely mediates the dramatic phenotype observed in this study. Disruptions of genes in the RAS signaling pathway are especially likely to cause this phenotype. These results also serve as a cautionary tale to those intending to use CD4-Cre transgenic mice to specifically delete genes in conventional T cells."	"Nitrate-dependent shoot sodium accumulation and osmotic functions of sodium in Arabidopsis under saline conditions. Improving crop plants to be productive in saline soils or under irrigation with saline water would be an important technological advance in overcoming the food and freshwater crises that threaten the world population. However, even if the transformation of a glycophyte into a plant that thrives under seawater irrigation was biologically feasible, current knowledge about Na<sup>+</sup> effects would be insufficient to support this technical advance. Intriguingly, crucial details about Na<sup>+</sup> uptake and its function in the plant have not yet been well established. We here propose that under saline conditions two nitrate-dependent transport systems in series that take up and load Na<sup>+</sup> into the xylem constitute the major pathway for the accumulation of Na<sup>+</sup> in Arabidopsis shoots; this pathway can also function with chloride at high concentrations. In nrt1.1 nitrate transport mutants, plant Na<sup>+</sup> accumulation was partially defective, which suggests that NRT1.1 either partially mediates or modulates the nitrate-dependent Na<sup>+</sup> transport. Arabidopsis plants exposed to an osmotic potential of -1.0 MPa (400 mOsm) for 24 h showed high water loss and wilting in sorbitol or Na/MES, where Na<sup>+</sup> could not be accumulated. In contrast, in NaCl the plants that accumulated Na<sup>+</sup> lost a low amount of water, and only suffered transitory wilting. We discuss that in Arabidopsis plants exposed to high NaCl concentrations, root Na<sup>+</sup> uptake and tissue accumulation fulfil the primary function of osmotic adjustment, even if these processes lead to long-term toxicity."	"Amphiregulin impairs apoptosis-stimulating protein 2 of p53 overexpression-induced apoptosis in hepatoma cells. Overexpression of apoptosis-stimulating protein 2 of p53 (ASPP2) induces apoptotic cell death in hepatoma cells (e.g. HepG2 cells) by enhancing the transactivation activity of p53, but long-term ASPP2 overexpression fails to induce more apoptosis since activation of the epidermal growth factor/epidermal growth factor receptor/SOS1 pathway impairs the pro-apoptotic role of ASPP2. In this study, in recombinant adenovirus-ASPP2-infected HepG2 cells, ASPP2 overexpression induces amphiregulin expression in a p53-dependent manner. Although amphiregulin initially contributes to ASPP2-induced apoptosis, it eventually impairs the pro-apoptotic function of ASPP2 by activating the epidermal growth factor/epidermal growth factor receptor/SOS1 pathway, leading to apoptosis resistance. Moreover, blocking soluble amphiregulin with a neutralizing antibody also significantly increased apoptotic cell death of HepG2 cells due to treatment with methyl methanesulfonate, cisplatin, or a recombinant p53 adenovirus, suggesting that the function of amphiregulin involved in inhibiting apoptosis may be a common mechanism by which hepatoma cells escape from stimulus-induced apoptosis. Thus, our data elucidate an apoptosis-evasion mechanism in hepatocellular carcinoma and have potential implications for hepatocellular carcinoma therapy."	"Regulation of Na+ and K+ homeostasis in plants: towards improved salt stress tolerance in crop plants. Soil salinity is a major abiotic stress that results in considerable crop yield losses worldwide. However, some plant genotypes show a high tolerance to soil salinity, as they manage to maintain a high K+/Na+ ratio in the cytosol, in contrast to salt stress susceptible genotypes. Although, different plant genotypes show different salt tolerance mechanisms, they all rely on the regulation and function of K+ and Na+ transporters and H+ pumps, which generate the driving force for K+ and Na+ transport. In this review we will introduce salt stress responses in plants and summarize the current knowledge about the most important ion transporters that facilitate intra- and intercellular K+ and Na+ homeostasis in these organisms. We will describe and discuss the regulation and function of the H+-ATPases, H+-PPases, SOS1, HKTs, and NHXs, including the specific tissues where they work and their response to salt stress."	"Physiological and molecular insights into the high salinity tolerance of Pongamia pinnata (L.) pierre, a potential biofuel tree species. Soil salinity is gradually becoming a threat to the global economy by affecting agricultural productivity worldwide. Here, we analyze the salinity tolerance of Pongamia pinnata with an insight into the underlying physiological and molecular responses. Despite a reduction in net photosynthetic rate, P. pinnata efficiently maintained its leaf water potentials even at 500mM NaCl for 15days and displayed no visible stress symptoms. Na<sup>+</sup> localization analysis using CoroNa-Green AM revealed effective Na<sup>+</sup> sequestration in the roots when compared to leaves. Elemental analysis demonstrated that roots accumulated more of Na<sup>+</sup> while K<sup>+</sup> content was higher in leaves. At the molecular level, salt stress significantly induced the expression levels of salt overly sensitive1 (SOS1), SOS2, SOS3, high affinity K<sup>+</sup> transporter (HKT1), ABA biosynthetic and receptor genes (NCED and PYL4), guaiacol peroxidase (POD) exclusively in roots while tonoplast localized Na<sup>+</sup>/H<sup>+</sup> exchanger (NHX1) was significantly enhanced in leaves. Our results clearly demonstrate that leaves and roots of Pongamia exhibit differential responses under salt stress although roots are more efficient in sequestering the Na<sup>+</sup> ions. The present study provides crucial inputs for understanding salt tolerance in a tree species which can be further utilized for developing salt tolerance in higher plants."	"The Combination of Trichoderma harzianum and Chemical Fertilization Leads to the Deregulation of Phytohormone Networking, Preventing the Adaptive Responses of Tomato Plants to Salt Stress. Plants have evolved effective mechanisms to avoid or reduce the potential damage caused by abiotic stresses. In addition to biocontrol abilities, Trichoderma genus fungi promote growth and alleviate the adverse effects caused by saline stress in plants. Morphological, physiological, and molecular changes were analyzed in salt-stressed tomato plants grown under greenhouse conditions in order to investigate the effects of chemical and biological fertilizations. The application of Trichoderma harzianum T34 to tomato seeds had very positive effects on plant growth, independently of chemical fertilization. The application of salt stress significantly changed the parameters related to growth and gas-exchange rates in tomato plants subject to chemical fertilization. However, the gas-exchange parameters were not affected in unfertilized plants under the same moderate saline stress. The combined application of T34 and salt significantly reduced the fresh and dry weights of NPK-fertilized plants, while the opposite effects were detected when no chemical fertilization was applied. Decaying symptoms were observed in salt-stressed and chemically fertilized plants previously treated with T34. This damaged phenotype was linked to significantly higher intercellular CO2 and slight increases in stomatal conductance and transpiration, and to the deregulation of phytohormone networking in terms of significantly lower expression levels of the salt overlay sensitivity 1 (SOS1) gene, and the genes involved in signaling abscisic acid-, ethylene-, and salicylic acid-dependent pathways and ROS production, in comparison with those observed in salt-challenged NPK-fertilized plants."	"EIN3 and SOS2 synergistically modulate plant salt tolerance. Ethylene biosynthesis and the ethylene signaling pathway regulate plant salt tolerance by activating the expression of downstream target genes such as those related to ROS and Na<sup>+</sup>/K<sup>+</sup> homeostasis. The Salt Overly Sensitive (SOS) pathway regulates Na<sup>+</sup>/K<sup>+</sup> homeostasis in Arabidopsis under salt stress. However, the connection between these two pathways is unclear. Through genetic screening, we identified two sos2 alleles as salt sensitive mutants in the ein3-1 background. Neither Ethylene-Insensitive 2 (EIN2) nor EIN3 changed the expression patterns of SOS genes including SOS1, SOS2, SOS3 and SOS3-like Calcium Binding Protein 8 (SCaBP8), but SOS2 activated the expression of one target gene of EIN3, Ethylene and Salt-inducible ERF 1 (ESE1). Moreover, Ser/Thr protein kinase SOS2 phosphorylated EIN3 in vitro mainly at the S325 site and weakly at the S35, T42 and S606 sites. EIN3 S325A mutation reduced its transcriptional activating activity on ESE1 promoter:GUS in a transient GUS assay, and impaired its ability to rescue ein3-1 salt hypersensitivity. Furthermore, SOS2 activated salt-responsive ESE1 target gene expression under salt stress. Therefore, EIN3-SOS2 might link the ethylene signaling pathway and the SOS pathway in Arabidopsis salt responses."	"A genome-wide siRNA screen for regulators of tumor suppressor p53 activity in human non-small cell lung cancer cells identifies components of the RNA splicing machinery as targets for anticancer treatment. Reinstating wild-type tumor suppressor p53 activity could be a valuable option for the treatment of cancer. To contribute to development of new treatment options for non-small cell lung cancer (NSCLC), we performed genome-wide siRNA screens for determinants of p53 activity in NSCLC cells. We identified many genes not previously known to be involved in regulating p53 activity. Silencing p53 pathway inhibitor genes was associated with loss of cell viability. The largest functional gene cluster influencing p53 activity was mRNA splicing. Prominent p53 activation was observed upon silencing of specific spliceosome components, rather than by general inhibition of the spliceosome. Ten genes were validated as inhibitors of p53 activity in multiple NSCLC cell lines: genes encoding the Ras pathway activator SOS1, the zinc finger protein TSHZ3, the mitochondrial membrane protein COX16, and the spliceosome components SNRPD3, SF3A3, SF3B1, SF3B6, XAB2, CWC22, and HNRNPL. Silencing these genes generally increased p53 levels, with distinct effects on CDKN1A expression, induction of cell cycle arrest and cell death. Silencing spliceosome components was associated with alternative splicing of MDM4 mRNA, which could contribute to activation of p53. In addition, silencing splice factors was particularly effective in killing NSCLC cells, albeit in a p53-independent manner. Interestingly, silencing SNRPD3 and SF3A3 exerted much stronger cytotoxicity to NSCLC cells than to lung fibroblasts, suggesting that these genes could represent useful therapeutic targets."	"Partnering dispersion corrections with modern parameter-free double-hybrid density functionals. The PBE-QIDH and SOS1-PBE-QIDH double-hybrid density functionals are merged with a pair of dispersion corrections, namely the pairwise additive D3(BJ) and the non-local correlation functional VV10, leading to the corresponding dispersion-corrected models. The parameters adjusting each of the dispersion corrections to the functionals are obtained by fitting to well-established energy datasets (e.g. S130) used as a benchmark, giving rise to functionals spanning covalent and non-covalent binding forces. The application of the models to challenging systems out of the training set, like those comprising the L7 database of large supramolecular complexes, or the S66x8 dataset of stretched and elongated intermolecular distances, reveals the high accuracy of the coupling."	"Mesenchymal stromal cells (MSCs) induce ex vivo proliferation and erythroid commitment of cord blood haematopoietic stem cells (CB-CD34+ cells). A human bone marrow-derived mesenchymal stromal cell (MSCs) and cord blood-derived CD34+ stem cell co-culture system was set up in order to evaluate the proliferative and differentiative effects induced by MSCs on CD34+ stem cells, and the reciprocal influences on gene expression profiles. After 10 days of co-culture, non-adherent (SN-fraction) and adherent (AD-fraction) CD34+ stem cells were collected and analysed separately. In the presence of MSCs, a significant increase in CD34+ cell number was observed (fold increase = 14.68), mostly in the SN-fraction (fold increase = 13.20). This was combined with a significant increase in CD34+ cell differentiation towards the BFU-E colonies and with a decrease in the CFU-GM. These observations were confirmed by microarray analysis. Through gene set enrichment analysis (GSEA), we noted a significant enrichment in genes involved in heme metabolism (e.g. LAMP2, CLCN3, BMP2K), mitotic spindle formation and proliferation (e.g. PALLD, SOS1, CCNA1) and TGF-beta signalling (e.g. ID1) and a down-modulation of genes participating in myeloid and lymphoid differentiation (e.g. PCGF2) in the co-cultured CD34+ stem cells. On the other hand, a significant enrichment in genes involved in oxygen-level response (e.g. TNFAIP3, SLC2A3, KLF6) and angiogenesis (e.g. VEGFA, IGF1, ID1) was found in the co-cultured MSCs. Taken together, our results suggest that MSCs can exert a priming effect on CD34+ stem cells, regulating their proliferation and erythroid differentiation. In turn, CD34+ stem cells seem to be able to polarise the BM-niche towards the vascular compartment by modulating molecular pathways related to hypoxia and angiogenesis."	"Variable salinity responses of 12 alfalfa genotypes and comparative expression analyses of salt-response genes. Twelve alfalfa genotypes that were selected for biomass under salinity, differences in Na and Cl concentrations in shoots and K/Na ratio were evaluated in this long-term salinity experiment. The selected plants were cloned to reduce genetic variability within each genotype. Salt tolerance (ST) index of the genotypes ranged from 0.39 to 1. The most salt-tolerant genotypes SISA14-1 (G03) and AZ-90ST (G10), the top performers for biomass, exhibited the least effect on shoot number and height. SISA14-1 (G03) accumulated low Na and Cl under salinity. Most genotypes exhibited a net reduction in shoot Ca, Mg, P, Fe, and Cu, while Mn and Zn increased under salinity. Salinity reduced foliar area and stomatal conductance; while net photosynthetic rate and transpiration were not affected. Interestingly, salinity increased chlorophyll and antioxidant capacity in most genotypes; however neither parameter correlated well to ST index. Salt-tolerant genotypes showed upregulation of the SOS1, SOS2, SOS3, HKT1, AKT1, NHX1, P5CS1, HSP90.7, HSP81.2, HSP71.1, HSPC025, OTS1, SGF29 and SAL1 genes. Gene expression analyses allowed us to classify genotypes based on their ability to regulate different components of the salt tolerance mechanism. Pyramiding different components of the salt tolerance mechanism may lead to superior salt-tolerant alfalfa genotypes."	"Activation of MAPK/ERK signaling by Burkholderia pseudomallei cycle inhibiting factor (Cif). Cycle inhibiting factors (Cifs) are virulence proteins secreted by the type III secretion system of some Gram-negative pathogenic bacteria including Burkholderia pseudomallei. Cif is known to function to deamidate Nedd8, leading to inhibition of Cullin E3 ubiquitin ligases (CRL) and consequently induction of cell cycle arrest. Here we show that Cif can function as a potent activator of MAPK/ERK signaling without significant activation of other signaling pathways downstream of receptor tyrosine kinases. Importantly, we found that the ability of Cif to activate ERK is dependent on its deamidase activity, but independent of Cullin E3 ligase inhibition. This suggests that apart from Nedd8, other cellular targets of Cif-dependent deamidation exist. We provide evidence that the mechanism involved in Cif-mediated ERK activation is dependent on recruitment of the Grb2-SOS1 complex to the plasma membrane. Further investigation revealed that Cif appears to modify the phosphorylation status of SOS1 in a region containing the CDC25-H and proline-rich domains. It is known that prolonged Cullin E3 ligase inhibition leads to cellular apoptosis. Therefore, we hypothesize that ERK activation is an important mechanism to counter the pro-apoptotic effects of Cif. Indeed, we show that Cif dependent ERK activation promotes phosphorylation of the proapoptotic protein Bim, thereby potentially conferring a pro-survival signal. In summary, we identified a novel deamidation-dependent mechanism of action of the B. pseudomallei virulence factor Cif/CHBP to activate MAPK/ERK signaling. Our study demonstrates that bacterial proteins such as Cif can serve as useful molecular tools to uncover novel aspects of mammalian signaling pathways."	"Integrative Control Between Proton Pumps and SOS1 Antiporters in Roots is Crucial for Maintaining Low Na+ Accumulation and Salt Tolerance in Ammonium-Supplied Sorghum bicolor. An effective strategy for re-establishing K+ and Na+ homeostasis is a challenge for the improvement of plant performance in saline soil. Specifically, attempts to understand the mechanisms of Na+ extrusion from plant cells, the control of Na+ loading in the xylem and the partitioning of the accumulated Na+ between different plant organs are ongoing. Our goal was to provide insight into how an external nitrogen source affects Na+ accumulation in Sorghum bicolor under saline conditions. The NH4+ supply improved the salt tolerance of the plant by restricting Na+ accumulation and improving the K+/Na+ homeostasis in shoots, which was consistent with the high activity and expression of Na+/H+ antiporters and proton pumps in the plasma membrane and vacuoles in the roots, resulting in low Na+ loading in the xylem. Conversely, although NO3--grown plants had exclusion and sequestration mechanisms for Na+, these responses were not sufficient to reduce Na+ accumulation. In conclusion, NH4+ acts as an efficient signal to activate co-ordinately responses involved in the regulation of Na+ homeostasis in sorghum plants under salt stress, which leads to salt tolerance."	"Impact of salt stress, cell death, and autophagy on peroxisomes: quantitative and morphological analyses using small fluorescent probe N-BODIPY. Plant peroxisomes maintain a plethora of key life processes including fatty acid β-oxidation, photorespiration, synthesis of hormones, and homeostasis of reactive oxygen species (ROS). Abundance of peroxisomes in cells is dynamic; however mechanisms controlling peroxisome proliferation remain poorly understood because measuring peroxisome abundance is technically challenging. Counting peroxisomes in individual cells of complex organs by electron or fluorescence microscopy is expensive and time consuming. Here we present a simple technique for quantifying peroxisome abundance using the small probe Nitro-BODIPY, which in vivo fluoresces selectively inside peroxisomes. The physiological relevance of our technique was demonstrated using salinity as a known inducer of peroxisome proliferation. While significant peroxisome proliferation was observed in wild-type Arabidopsis leaves following 5-hour exposure to NaCl, no proliferation was detected in the salt-susceptible mutants fry1-6, sos1-14, and sos1-15. We also found that N-BODIPY detects aggregation of peroxisomes during final stages of programmed cell death and can be used as a marker of this stage. Furthermore, accumulation of peroxisomes in an autophagy-deficient Arabidopsis mutant atg5 correlated with N-BODIPY labeling. In conclusion, the technique reported here enables quantification of peroxisomes in plant material at various physiological settings. Its potential applications encompass identification of genes controlling peroxisome homeostasis and capturing stress-tolerant genotypes."	"A fully automated procedure for the parallel, multidimensional purification and nucleotide loading of the human GTPases KRas, Rac1 and RalB. Small GTPases regulate many key cellular processes and their role in human disease validates many proteins in this class as desirable targets for therapeutic intervention. Reliable recombinant production of GTPases, often in the active GTP loaded state, is a prerequisite for the prosecution of drug discovery efforts. The preparation of these active forms can be complex and often constricts the supply to the reagent intensive techniques used in structure base drug discovery. We have established a fully automated, multidimensional protein purification strategy for the parallel production of the catalytic G-domains of KRas, Rac1 and RalB GTPases in the active form. This method incorporates a four step chromatography purification with TEV protease-mediated affinity tag cleavage and a conditioning step that achieves the activation of the GTPase by exchanging GDP for the non-hydrolyzable GTP analogue GMPPnP. We also demonstrate that an automated method is efficient at loading of KRas with mantGDP for application in a SOS1 catalysed fluorescent nucleotide exchange assay. In comparison to more conventional manual workflows the automated method offers marked advantages in method run time and operator workload. This reduces the bottleneck in protein production while generating products that are highly purified and effectively loaded with nucleotide analogues."	"Macrophage-Derived mir-155-Containing Exosomes Suppress Fibroblast Proliferation and Promote Fibroblast Inflammation during Cardiac Injury. Inflammation plays an important role in cardiac injuries. Here, we examined the role of miRNA in regulating inflammation and cardiac injury during myocardial infarction. We showed that mir-155 expression was increased in the mouse heart after myocardial infarction. Upregulated mir-155 was primarily presented in macrophages and cardiac fibroblasts of injured hearts, while pri-mir-155 was only expressed in macrophages. mir-155 was also presented in exosomes derived from macrophages, and it can be transferred into cardiac fibroblasts by macrophage-derived exosomes. A mir-155 mimic or mir-155 containing exosomes inhibited cardiac fibroblast proliferation by downregulating Son of Sevenless 1 expression and promoted inflammation by decreasing Suppressor of Cytokine Signaling 1 expression. These effects were reversed by the addition of a mir-155 inhibitor. In vivo, mir-155-deficient mice showed a significant reduction of the incidence of cardiac rupture and an improved cardiac function compared with wild-type mice. Moreover, transfusion of wild-type macrophage exosomes to mir-155<sup>-/-</sup> mice exacerbated cardiac rupture. Finally, the mir-155-deficient mice exhibited elevated fibroblast proliferation and collagen production, along with reduced cardiac inflammation in injured heart. Taken together, our results demonstrate that activated macrophages secrete mir-155-enriched exosomes and identify macrophage-derived mir-155 as a paracrine regulator for fibroblast proliferation and inflammation; thus, a mir-155 inhibitor (i.e., mir-155 antagomir) has the potential to be a therapeutic agent for reducing acute myocardial-infarction-related adverse events."	"Targeted Covalent Inhibition of Grb2-Sos1 Interaction through Proximity-Induced Conjugation in Breast Cancer Cells. Targeted covalent inhibitors of protein-protein interactions differ from reversible inhibitors in that the former bind and covalently bond the target protein at a specific site of the target. The site specificity is the result of the proximity of two reactive groups at the bound state, for example, one mild electrophile in the inhibitor and a natural cysteine in the target close to the ligand binding site. Only a few pharmaceutically relevant proteins have this structural feature. Grb2, a key adaptor protein in maintaining the ERK activity via binding Sos1 to activated RTKs, is one: the N-terminal SH3 domain of Grb2 (Grb2<sup>N-SH3</sup>) carries a unique solvent-accessible cysteine Cys<sup>32</sup> close to its Sos1-binding site. Here we report the design of a peptide-based antagonist (a reactive peptide) that specifically binds to Grb2<sup>N-SH3</sup> and subsequently undergoes a nucleophilic reaction with Cys<sup>32</sup> to form a covalent bond thioether, to block Grb2-Sos1 interaction. Through rounds of optimization, we eventually obtained a dimeric reaction reactive peptide that can form a covalent adduct with endogenous Grb2 protein inside the cytosol of SK-BR-3 human breast cancer cells with pronounced inhibitory effect on cell mobility and viability. This work showcases a rational design of Grb2-targeted site-specific covalent inhibitor and its pronounced anticancer effect by targeting Grb2-Sos1 interaction."	"Analysis of gene expression in Ca<sup>2+</sup>-dependent activator protein for secretion 2 (Cadps2) knockout cerebellum using GeneChip and KEGG pathways. In the mouse cerebellum, Ca<sup>2+</sup>-dependent activator protein for secretion 2 (CADPS2, CAPS2) is involved in regulated secretion from dense-core vesicles (DCVs), which contain neuropeptides including brain-derived neurotrophic factor (BDNF) and neurotrophin-3 (NT-3). Capds2 knockout (KO) mice show impaired cerebellar development in addition to autistic-like behavioral phenotypes. To understand the molecular impact caused by loss of Capds2, we analyzed gene expression profiles in the Capds2 KO cerebellum using a GeneChip microarray and the KEGG Pathway database. Significant differential expression was observed in 1211 of 22,690 (5.34%) genes represented on the chip. The expression levels of exocytosis-related genes (Stx5a, Syt6), genes encoding secretory (Fgf2, Fgf4, Edn2) and synaptic proteins (Grin2b, Gabbr1), neurotrophin signaling-associated genes (Sos1, Shc1, Traf6, Psen2), and a gene for Rett syndrome (Mecp2) were significantly changed. Taken together, these results suggest that deregulated gene expression caused by loss of Capds2 may cause developmental deficits and/or pathological symptoms, resulting in autistic-like phenotypes."	"Deficiency of γδT cells protects against abdominal aortic aneurysms by regulating phosphoinositide 3-kinase/AKT signaling. It is known that T lymphocytes are activated in human abdominal aortic aneurysms (AAAs). γδT cells, as a subset of T cells, play a role in many inflammation-related diseases. However, whether γδT cells participate in the formation of AAA remains unknown. In this study, we explored the role of γδT cells in AAA lesions. Using the porcine pancreatic elastase-induced AAA model, we found that knock out of γδT cells significantly attenuated AAA formation. To elucidate how γδT cells contribute to AAA, microarray analysis was performed, which found that the phosphoinositide 3-kinase/AKT signaling pathway was activated in elastase-perfused γδT knockout (γδT KO) mice. By studying differentially expressed genes involved in phosphoinositide 3-kinase signaling, we found that proliferation-related genes (Sos1, Mtor, Myc) were upregulated whereas apoptosis-related genes (Pten, Bcl1, Bad) were downregulated in elastase-perfused γδT KO mice. Furthermore, histopathologic analysis showed increased PCNA<sup>+</sup> and decreased TUNEL<sup>+</sup> cells in elastase-perfused γδT KO mice compared with wild-type mice. In addition, inflammatory cytokines including interleukin-1β, Mcp-1, and tumor necrosis factor-α were downregulated in the aneurysm tissues of elastase-perfused γδT KO mice. These data reveal a pathogenic role of γδT cells in the experimental AAA model, likely through mechanisms regulating cell proliferation and mediating inflammatory response. Thus, targeting of γδT cells may offer a potential therapeutic method for aortic aneurysms."	"The durum wheat plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter SOS1 is involved in oxidative stress response. We have shown previously that the durum wheat TdSOS1 excludes Na<sup>+</sup> and Li<sup>+</sup> ions outside cells. Moreover, this protein is activated by Arabidopsis kinase SOS2 through phosphorylation. The elimination of both SOS2 phosphorylation sites and the auto-inhibitory domain produces a hyperactive TdSOS1∆972 form, which have a maximal activity independent from the regulatory SOS2/SOS3 complex. We demonstrated that the expression of TdSOS1 enhances salt tolerance of the transgenic Arabidopsis plants. In this study, we analyzed the response to H2O2-induced oxidative stress of the transgenic Arabidopsis expressing one of the two TdSOS1 forms. Firstly, we showed that the exogenous H2O2 treatment leads to an accumulation of SOS1 transcripts in leaves and roots of the durum wheat and also in the transgenic plants. These transgenic plants showed significant oxidative stress tolerance compared to control plants, especially the plants expressing the hyperactive form. This tolerance was manifested by high proline accumulation and low malonyldialdehyde (MDA), O2˙<sup>-</sup> and H2O2 contents. Furthermore, the activities of three essential ROS scavenging enzymes (SOD, CAT, and POD) were higher in the transgenic plants under oxidative stress, as compared to control plants. Taken together, these data suggested that TdSOS1 plays a crucial role in response to oxidative stress."	"Rare copy number variants in a population-based investigation of hypoplastic right heart syndrome. Hypoplastic right heart syndrome (HRHS) is a rare congenital defect characterized by underdevelopment of the right heart structures commonly accompanied by an atrial septal defect. Familial HRHS reports suggest genetic factor involvement. We examined the role of copy number variants (CNVs) in HRHS. We genotyped 32 HRHS cases identified from all New York State live births (1998-2005) using Illumina HumanOmni2.5 microarrays. CNVs were called with PennCNV and prioritized if they were ≥20 Kb, contained ≥10 SNPs and had minimal overlap with CNVs from in-house controls, the Database of Genomic Variants, HapMap3, and Childrens Hospital of Philadelphia database. We identified 28 CNVs in 17 cases; several encompassed genes important for right heart development. One case had a 2p16-2p23 duplication spanning LBH, a limb and heart development transcription factor. Lbh mis-expression results in right ventricular hypoplasia and pulmonary valve defects. This duplication also encompassed SOS1, a factor associated with pulmonary valve stenosis in Noonan syndrome. Sos1<sup>-/-</sup> mice display thin and poorly trabeculated ventricles. In another case, we identified a 1.5 Mb deletion associated with Williams-Beuren syndrome, a disorder that includes valvular malformations. A third case had a 24 Kb deletion upstream of the TGFβ ligand ITGB8. Embryos genetically null for Itgb8, and its intracellular interactant Band 4.1B, display lethal cardiac phenotypes. To our knowledge, this is the first study of CNVs in HRHS. We identified several rare CNVs that overlap genes related to right ventricular wall and valve development, suggesting that genetics plays a role in HRHS and providing clues for further investigation. Birth Defects Research 109:16-26, 2017. © 2016 Wiley Periodicals, Inc."	"Nat1 promotes translation of specific proteins that induce differentiation of mouse embryonic stem cells. Novel APOBEC1 target 1 (Nat1) (also known as &quot;p97,&quot; &quot;Dap5,&quot; and &quot;Eif4g2&quot;) is a ubiquitously expressed cytoplasmic protein that is homologous to the C-terminal two thirds of eukaryotic translation initiation factor 4G (Eif4g1). We previously showed that Nat1-null mouse embryonic stem cells (mES cells) are resistant to differentiation. In the current study, we found that NAT1 and eIF4G1 share many binding proteins, such as the eukaryotic translation initiation factors eIF3 and eIF4A and ribosomal proteins. However, NAT1 did not bind to eIF4E or poly(A)-binding proteins, which are critical for cap-dependent translation initiation. In contrast, compared with eIF4G1, NAT1 preferentially interacted with eIF2, fragile X mental retardation proteins (FMR), and related proteins and especially with members of the proline-rich and coiled-coil-containing protein 2 (PRRC2) family. We also found that Nat1-null mES cells possess a transcriptional profile similar, although not identical, to the ground state, which is established in wild-type mES cells when treated with inhibitors of the ERK and glycogen synthase kinase 3 (GSK3) signaling pathways. In Nat1-null mES cells, the ERK pathway is suppressed even without inhibitors. Ribosome profiling revealed that translation of mitogen-activated protein kinase kinase kinase 3 (Map3k3) and son of sevenless homolog 1 (Sos1) is suppressed in the absence of Nat1 Forced expression of Map3k3 induced differentiation of Nat1-null mES cells. These data collectively show that Nat1 is involved in the translation of proteins that are required for cell differentiation."	"SOS1, ARHGEF1, and DOCK2 rho-GEFs Mediate JAK-Dependent LFA-1 Activation by Chemokines. JAK-dependent activation of the rho module of integrin affinity triggering mediates chemokine-induced leukocyte adhesion. However, the signaling events linking JAKs to rho small GTPase activation by chemokines is still incompletely described. In this study, we show that son of sevenless 1 (SOS1), rho guanine nucleotide exchange factor (GEF)1 (ARHGEF1), and dedicator of cytokinesis (DOCK)2 GEFs mediate CXCL12-induced LFA-1 activation in human primary T lymphocytes. Downregulated expression of SOS1, ARHGEF1, and DOCK2 impairs LFA-1-mediated rapid T lymphocyte adhesion as well as underflow arrest on ICAM-1 induced by CXCL12. Moreover, LFA-1 affinity triggering by CXCL12 is impaired by SOS1, ARHGEF1, and DOCK2 downregulation. Notably, the three GEFs are all critically involved in chemokine-induced RhoA and Rac1 activation, thus suggesting the occurrence of a SOS1 specificity shift in the context of chemokine signaling. Accordingly, SOS1, ARHGEF1, and DOCK2 are tyrosine phosphorylated upon chemokine signaling with timing coherent with rapid LFA-1 affinity activation. Importantly, chemokine-induced tyrosine phosphorylation of these GEFs is fully mediated by JAK protein tyrosine kinases. Unexpectedly, and differently from VAV1, tyrosine phosphorylation of SOS1, ARHGEF1, and DOCK2 is completely inhibited by pertussis toxin pretreatment, thus suggesting different routes of rho-GEF triggering upon CXCR4 engagement. Taken together, these findings reveal a deeper level of complexity in the rho-signaling module, with at least four different rho-GEFs cooperating in the regulation of chemokine-induced integrin activation, possibly suggesting the emergence of stochastic concurrency in signaling mechanisms controlling leukocyte trafficking."	"Hyperactive mutant of a wheat plasma membrane Na<sup>+</sup>/H<sup>+</sup> antiporter improves the growth and salt tolerance of transgenic tobacco. Wheat SOS1 (TaSOS1) activity could be relieved upon deletion of the C-terminal 168 residues (the auto-inhibitory domain). This truncated form of wheat SOS1 (TaSOS1-974) was shown to increase compensation (compared to wild-type TaSOS1) for the salt sensitivity of a yeast mutant strain, AXT3K, via increased Na<sup>+</sup> transportation out of cells during salinity stress. Expression of the plasma membrane proteins TaSOS1-974 or TaSOS1 improved the growth of transgenic tobacco plants compared with wild-type plants under normal conditions. However, plants expressing TaSOS1-974 grew better than TaSOS1-transformed plants. Upon salinity stress, Na<sup>+</sup> efflux and K<sup>+</sup> influx rates in the roots of transgenic plants expressing TaSOS1-974 or TaSOS1 were greater than those of wild-type plants. Furthermore, compared to TaSOS1-transgenic plants, TaSOS1-974-expressing roots showed faster Na<sup>+</sup> efflux and K<sup>+</sup> influx, resulting in less Na<sup>+</sup> and more K<sup>+</sup> accumulation in TaSOS1-974-transgenic plants compared to TaSOS1-transgenic and wild-type plants. TaSOS1-974-expressing plants had the lowest MDA content and electrolyte leakage among all tested plants, indicating that TaSOS1-974 might protect the plasma membrane against oxidative damage generated by salt stress. Overall, TaSOS1-974 conferred higher salt tolerance in transgenic plants compared to TaSOS1. Consistent with this result, transgenic plants expressing TaSOS1-974 showed a better growth performance than TaSOS1-expressing and wild-type plants under saline conditions."	"Cold stress increases salt tolerance of the extremophytes Eutrema salsugineum (Thellungiella salsuginea) and Eutrema (Thellungiella) botschantzevii. A comparative study was performed to analyze the effect of cold acclimation on improving the resistance of Arabidopsis thaliana, Eutrema salsugineum and Eutrema botschantzevii plants to salt stress. Shoot FW, sodium and potassium accumulation, metabolite content, expression of proton pump genes VAB1, VAB2,VAB3, VP2, HA3 and genes encoding ion transporters SOS1, HKT1, NHX1, NHX2, NHX5 located in the plasma membrane or tonoplast were determined just after the cold treatment and the onset of the salt stress. In the same cold-acclimated E. botschantzevii plants, the Na<sup>+</sup> concentration after salt treatment was around 80% lower than in non-acclimated plants, whereas the K<sup>+</sup> concentration was higher. As a result of cold acclimation, the expression of, VAB3, NHX2, NHX5 genes and of SOS1, VP2, HA3 genes was strongly enhanced in E. botschantzevii and in E. salsugineum plants correspondently. None of the 10 genes analyzed showed any expression change in A. thaliana plants after cold acclimation. Altogether, the results indicate that cold-induced adaptation to subsequent salt stress exists in the extremophytes E. botschantzevii and to a lesser extend in E. salsugineum and is absent in Arabidopsis. This phenomenon may be attributed to the increased expression of ion transporter genes during cold acclimation in the Eutrema species."	"Endocytosis and Physiology: Insights from Disabled-2 Deficient Mice. Disabled-2 (Dab2) is a clathrin and cargo binding endocytic adaptor protein, and cell biology studies revealed that Dab2 plays a role in cellular trafficking of a number of transmembrane receptors and signaling proteins. A PTB/PID domain located in the N-terminus of Dab2 binds the NPXY motif(s) present at the cytoplasmic tails of certain transmembrane proteins/receptors. The membrane receptors reported to bind directly to Dab2 include LDL receptor and its family members LRP1 and LRP2 (megalin), growth factor receptors EGFR and FGFR, and the cell adhesion receptor beta1 integrin. Dab2 also serves as an adaptor in signaling pathways. Particularly, Dab2 facilitates the endocytosis of the Ras activating Grb2/Sos1 signaling complex, controls its disassembly, and thereby regulates the Ras/MAPK signaling pathway. Cellular analyses have suggested several diverse functions for the widely expressed proteins, and Dab2 is also considered a tumor suppressor, as loss or reduced expression is found in several cancer types. Dab2 null mutant mice were generated and investigated to determine if the findings from cellular studies might be important and relevant in intact animals. Dab2 conditional knockout mice mediated through a Sox2-Cre transgene have no obvious developmental defects and have a normal life span despite that the Dab2 protein is essentially absent in the mutant mice. The conditional knockout mice were grossly normal, though more recent investigation of the Dab2-deficient mice revealed several phenotypes, which can be accounted for by several previously suggested mechanisms. The studies of mutant mice established that Dab2 plays multiple physiological roles through its endocytic functions and modulation of signal pathways."	"Noonan syndrome-causing genes: Molecular update and an assessment of the mutation rate. Noonan syndrome is a common autosomal dominant disorder characterized by short stature, congenital heart disease and facial dysmorphia with an incidence of 1/1000 to 2500 live births. Up to now, several genes have been proven to be involved in the disturbance of the transduction signal through the RAS-MAP Kinase pathway and the manifestation of Noonan syndrome. The first gene described was PTPN11, followed by SOS1, RAF1, KRAS, BRAF, NRAS, MAP2K1, and RIT1, and recently SOS2, LZTR1, and A2ML1, among others. Progressively, the physiopathology and molecular etiology of most signs of Noonan syndrome have been demonstrated, and inheritance patterns as well as genetic counseling have been established. In this review, we summarize the data concerning clinical features frequently observed in Noonan syndrome, and then, we describe the molecular etiology as well as the physiopathology of most Noonan syndrome-causing genes. In the second part of this review, we assess the mutational rate of Noonan syndrome-causing genes reported up to now in most screening studies. This review should give clinicians as well as geneticists a full view of the molecular aspects of Noonan syndrome and the authentic prevalence of the mutational events of its causing-genes. It will also facilitate laying the groundwork for future molecular diagnosis research, and the development of novel treatment strategies."	"Inhibition of Ras/Raf/MEK/ERK Pathway Signaling by a Stress-Induced Phospho-Regulatory Circuit. Ras pathway signaling plays a critical role in cell growth control and is often upregulated in human cancer. The Raf kinases selectively interact with GTP-bound Ras and are important effectors of Ras signaling, functioning as the initiating kinases in the ERK cascade. Here, we identify a route for the phospho-inhibition of Ras/Raf/MEK/ERK pathway signaling that is mediated by the stress-activated JNK cascade. We find that key Ras pathway components, the RasGEF Sos1 and the Rafs, are phosphorylated on multiple S/TP sites in response to JNK activation and that the hyperphosphorylation of these sites renders the Rafs and Sos1 unresponsive to upstream signals. This phospho-regulatory circuit is engaged by cancer therapeutics, such as rigosertib and paclitaxel/Taxol, that activate JNK through mitotic and oxidative stress as well as by physiological regulators of the JNK cascade and may function as a signaling checkpoint to suppress the Ras pathway during conditions of cellular stress."	"[Expressions of Ras and Sos1 in epithelial ovarian cancer tissues and their clinical significance]. To detect the expressions of Ras and Sos1 proteins in human epithelial ovarian cancer (EOC) tissues and explore their correlation with the clinicopathological features of the patients. The expressions of Ras and Sos1 proteins were detected immunohistochemically in 62 EOC tissues, 5 borderline ovarian cancer tissues, 15 benign epithelial ovarian neoplasm tissues, and 18 normal ovarian tissues. The EOC tissues showed significantly higher expression levels of both Ras and Sos1 than the other tissues tested (P&lt;0.05). In EOC tissues, Ras and Sos1 proteins were expressed mostly on the cell membrane and in the cytoplasm. The expression level of Ras was correlated with pathological types of the tumor (P&lt;0.05) and was the highest in serous cystadenomcarcinoma; Sos1 expression did not show significant correlation with the clinicopathological indexes of the patients. High expressions of both Ras and Sos1 proteins were associated with shorter progression-free survival of the patients, but this association was not statistically significant. Ras and Sos1 protein may participate in in the occurrence and development of EOC. The tissue-specific variation of Ras expression can lend support to a specific diagnosis of ovarian serous adenocarcinoma. The association of Ras and Sos1 protein expression with the tumor-free survival time of the patients awaits further investigation with a larger sample size."	"Bufalin inhibits gefitinib resistant NCI-H460 human lung cancer cell migration and invasion in vitro. Bufalin, a component of Chan Su (frog), has been shown to have biological activities including anti-tumor effects. Gefitinib has been used as an anti-cancer drug in lung cancer patients; however, some patients eventually become gefitinib resistant. In this study, we investigated anti-metastasis effects of bufalin in gefitinib resistant NCI-H460 lung cancer cells. The effects of the bufalin in gefitinib resistant NCI-H460 lung cancer cells were investigated on cell viability using flow cytometry. The adhesion capacity, wound healing assay, invasion and migration assay, and Western blot analysis were used to understand the molecular mechanisms in this study RESULTS: Under sub-lethal concentrations (from 2.5 up to 10nM), bufalin significantly inhibits cell adhension, migration and invasion nature of gefitinib resistant H460 cells. Western blotting assay revealed that bufalin depressed some of the key metastasis-related proteins, such as SOS-1, MMP-2 and Rho A underwent significant reduction. Phosphorylated Focal adhesion kinase (p-FAK), phosphorylated extracellular signal-regulated kinase (p-ERK1/2), Ras and E-cadherin were significantly reduced at 48h treatment. However, phosphorylated p38 (p-p38), phosphorylated c-Jun NH2-terminal kinase (p-JNK1/2) and NF-κBp65 were increased. Based on these observations, we suggest that bufalin can be used in anti-metastasis of gefitinib resistant NCI-H460 lung cancer cells in the future."	"Identification of Potential Novel Biomarkers and Signaling Pathways Related to Otitis Media Induced by Diesel Exhaust Particles Using Transcriptomic Analysis in an In Vivo System. Air pollutants are associated with inflammatory diseases such as otitis media (OM). Significantly higher incidence rates of OM are reported in regions with air pollution. Diesel exhaust particles (DEPs) comprise a major class of contaminants among numerous air pollutants, and they are characterized by a carbonic mixture of polycyclic aromatic hydrocarbons (PAHs), nitro-PAHs, and small amounts of sulfate, nitrate, metals and other trace elements. DEP exposure is a risk factor for inflammatory diseases. Our previous study identified potential biomarkers using gene expression microarray and pathway analyses in an in vitro system. Although in vitro investigations have been conducted to elucidate plausible biomarkers and molecular mechanisms related to DEP exposure, in vivo studies are necessary to identify the exact biological relevance regarding the incidence of OM caused by DEP exposure. In this study, we identified potential molecular biomarkers and pathways triggered by DEP exposure in a rodent model. Transcriptomic analysis was employed to identify novel potential biomarkers in the middle ear of DEP-exposed mice. A total of 697 genes were differentially expressed in the DEP-exposed mice; 424 genes were upregulated and 273 downregulated. In addition, signaling pathways among the differentially expressed genes mediated by DEP exposure were predicted. Several key molecular biomarkers were identified including cholinergic receptor muscarinic 1 (CHRM1), erythropoietin (EPO), son of sevenless homolog 1 (SOS1), estrogen receptor 1 (ESR1), cluster of differentiation 4 (CD4) and interferon alpha-1 (IFNA1). Our results shed light on the related cell processes and gene signaling pathways affected by DEP exposure. The identified biomarkers might be potential candidates for determining early diagnoses and effective treatment strategies for DEP-mediated disorders."	"MiR-20b Displays Tumor-Suppressor Functions in Papillary Thyroid Carcinoma by Regulating the MAPK/ERK Signaling Pathway. MicroRNAs (miRNAs) are endogenous, small, non-coding RNAs that play important roles in multiple biological processes. MiR-20b has been reported to be dysregulated in papillary thyroid carcinoma (PTC). However, the functional roles are still largely unknown. This study aimed to investigate the biological functions and the underlying molecular mechanisms of miR-20b in PTC. The expression of miR-20b was assessed by quantitative reverse transcription polymerase chain reaction in 47 pairs of PTC and adjacent normal thyroid tissues. The association between miR-20b expression and clinicopathologic status of PTC patients was analyzed. MiR-20b was overexpressed in the PTC cell lines K1 and TPC-1, and the effects on cell viability, migration, and invasion were evaluated. The study further searched for targets of miR-20b, and identified the possible molecular mechanisms of miR-20b in PTC cells. Additionally, the effect of miR-20b on tumor growth in nude mice was assessed. It was found that miR-20b was markedly downregulated in PTC tissues compared with their adjacent normal thyroid tissues. The low-level expression of miR-20b was correlated with cervical lymph node metastasis and TNM staging. Upregulation of miR-20b inhibited cell viability, migration, and invasion in K1 and TPC-1 cells. Ectopic overexpression of miR-20b could suppress the mitogen-activated protein kinase/extracellular signal-regulated kinase (MAPK/ERK) signaling pathway through directly targeting son of sevenless homolog 1 (SOS1) and extracellular signal-regulated kinase 2 (ERK2). Furthermore, depletion of SOS1 or ERK2 by siRNAs has similar effects as miR-20b overexpression on cell viability and invasion, whereas rescued SOS1 or ERK2 expression partially reversed the inhibitory effects of miR-20b in TPC cell lines. In xenograft animal experiments, it was found that overexpressed miR-20b could suppress tumor growth of PTC cells. These results indicate for the first time that miR-20b displays tumor-suppressor functions in PTC. By targeting SOS1 and ERK2, miR-20b inhibits the activity of the MAPK/ERK signaling pathway. The findings suggest that miR-20b may play an important role in PTC initiation, progression, and metastasis, and may provide a potential therapeutic target for PTC."	"Overexpression of PP2A-C5 that encodes the catalytic subunit 5 of protein phosphatase 2A in Arabidopsis confers better root and shoot development under salt conditions. Protein phosphatase 2A (PP2A) is an enzyme consisting of three subunits: a scaffolding A subunit, a regulatory B subunit and a catalytic C subunit. PP2As were shown to play diverse roles in eukaryotes. In this study, the function of the Arabidopsis PP2A-C5 gene that encodes the catalytic subunit 5 of PP2A was studied using both loss-of-function and gain-of-function analyses. Loss-of-function mutant pp2a-c5-1 displayed more impaired growth during root and shoot development, whereas overexpression of PP2A-C5 conferred better root and shoot growth under different salt treatments, indicating that PP2A-C5 plays an important role in plant growth under salt conditions. Double knockout mutants of pp2a-c5-1 and salt overly sensitive (sos) mutants sos1-1, sos2-2 or sos3-1 showed additive sensitivity to NaCl, indicating that PP2A-C5 functions in a pathway different from the SOS signalling pathway. Using yeast two-hybrid analysis, four vacuolar membrane chloride channel (CLC) proteins, AtCLCa, AtCLCb, AtCLCc and AtCLCg, were found to interact with PP2A-C5. Moreover, overexpression of AtCLCc leads to increased salt tolerance and Cl<sup>-</sup> accumulation in transgenic Arabidopsis plants. These data indicate that PP2A-C5-mediated better growth under salt conditions might involve up-regulation of CLC activities on vacuolar membranes and that PP2A-C5 could be used for improving salt tolerance in crops."	"Disabled-2 Determines Commitment of a Pre-adipocyte Population in Juvenile Mice. Disabled-2 (Dab2) is a widely expressed clathrin binding endocytic adaptor protein and known for the endocytosis of the low-density lipoprotein (LDL) family receptors. Dab2 also modulates endosomal Ras/MAPK (Erk1/2) activity by regulating the disassembly of Grb2/Sos1 complexes associated with clathrin-coated vesicles. We found that the most prominent phenotype of Dab2 knockout mice was their striking lean body composition under a high fat and high caloric diet, although the weight of the mutant mice was indistinguishable from wild-type littermates on a regular chow. The remarkable difference in resistance to high caloric diet-induced weight gain of the dab2-deleted mice was presented only in juvenile but not in mature mice. Investigation using Dab2-deficient embryonic fibroblasts and mesenchymal stromal cells indicated that Dab2 promoted adipogenic differentiation by modulation of MAPK (Erk1/2) activity, which otherwise suppresses adipogenesis through the phosphorylation of PPARγ. The results suggest that Dab2 is required for the excessive calorie-induced differentiation of an adipocyte progenitor cell population that is present in juvenile but depleted in mature animals. The finding provides evidence for a limited pre-adipocyte population in juvenile mammals and the requirement of Dab2 in the regulation of Ras/MAPK signal in the commitment of the precursor cells to adipose tissues."	"Comprehensive transcriptome analysis identifies pathways with therapeutic potential in locally advanced cervical cancer. The objective of the present study was to provide genomic and transcriptomic information that may improve clinical outcomes for locally advanced cervical cancer (LACC) patients by searching for therapeutic targets or potential biomarkers through the analysis of significantly altered signaling pathways in LACC. Microarray-based transcriptome profiling of 89 tumor samples from women with LACC was performed. Through Kyoto Encyclopedia of Genes and Genomes (KEGG) analysis, significantly over-expressed genes in LACC were identified; these genes were validated by quantitative reverse transcription-polymerase chain reaction in an independent cohort, and the protein expression data were obtained from the Human Protein Atlas. A transcriptome analysis revealed 7530 significantly over-expressed genes in LACC samples. By KEGG analysis, we found 93 dysregulated signaling pathways, including the JAK-STAT, NOTCH and mTOR-autophagy pathways, which were significantly upregulated. We confirmed the overexpression of the relevant genes of each pathway, such as NOTCH1, JAK2, STAM1, SOS1, ADAM17, PSEN1, NCSTN, RPS6, STK11/LKB1 and MLTS8/GBL in LACC compared with normal cervical tissue epithelia. Through comprehensive genomic and transcriptomic analyses, this work provides information regarding signaling pathways with promising therapeutic targets, suggesting novel target therapies to be considered in future clinical trials for LACC patients."	"Childhood Rhabdomyosarcoma in Association With a RASopathy Clinical Phenotype and Mosaic Germline SOS1 Duplication. Childhood rhabdomyosarcoma (RMS) accounts for approximately 3.5% of cancer cases among children 0 to 14 years of age. Genetic conditions associated with high risk of childhood RMS include Li-Fraumeni syndrome, pleuropulmonary blastoma, Beckwith-Wiedemann syndrome, and some RASopathies, such as neurofibromatosis type 1, Costello syndrome (CS), and Noonan syndrome (NS). Here, we report the rare case of a 4-year-old girl with clinical features of NS who developed an embryonal RMS of the chest and needed emergent treatment. Molecular genetic testing identified a de novo, large, mosaic duplication of chromosome 2 encompassing the SOS1 gene, presumably caused by a mosaic, unbalanced translocation between chromosomes 2 and 17 found on routine cytogenetic analysis. Sequence analysis of all known genes causing Noonan spectrum disorders was negative. RMS has been reported in a few patients with NS, associated in very few with germline SOS1 mutations, but none with copy number abnormalities. This is the first report to our knowledge of early-onset RMS developing in a child with features of NS and a mosaic RAS pathway gene aberration, a large SOS1 duplication. We hypothesize that the inciting event for tumor development in this case is due to the germline mosaic duplication of SOS1, which was duplicated in all cells of the tumor, and the ultimate development of the tumor was further driven by multiple chromosomal aberrations in the tumor itself, all described as somatic events in isolated RMS tumors."	"Plant growth promoting rhizobacteria Dietzia natronolimnaea modulates the expression of stress responsive genes providing protection of wheat from salinity stress. Plant growth promoting rhizobacteria (PGPR) hold promising future for sustainable agriculture. Here, we demonstrate a carotenoid producing halotolerant PGPR Dietzia natronolimnaea STR1 protecting wheat plants from salt stress by modulating the transcriptional machinery responsible for salinity tolerance in plants. The expression studies confirmed the involvement of ABA-signalling cascade, as TaABARE and TaOPR1 were upregulated in PGPR inoculated plants leading to induction of TaMYB and TaWRKY expression followed by stimulation of expression of a plethora of stress related genes. Enhanced expression of TaST, a salt stress-induced gene, associated with promoting salinity tolerance was observed in PGPR inoculated plants in comparison to uninoculated control plants. Expression of SOS pathway related genes (SOS1 and SOS4) was modulated in PGPR-applied wheat shoots and root systems. Tissue-specific responses of ion transporters TaNHX1, TaHAK, and TaHKT1, were observed in PGPR-inoculated plants. The enhanced gene expression of various antioxidant enzymes such as APX, MnSOD, CAT, POD, GPX and GR and higher proline content in PGPR-inoculated wheat plants contributed to increased tolerance to salinity stress. Overall, these results indicate that halotolerant PGPR-mediated salinity tolerance is a complex phenomenon that involves modulation of ABA-signalling, SOS pathway, ion transporters and antioxidant machinery."	"Validating genetic markers of response to recombinant human growth hormone in children with growth hormone deficiency and Turner syndrome: the PREDICT validation study. Single-nucleotide polymorphisms (SNPs) associated with the response to recombinant human growth hormone (r-hGH) have previously been identified in growth hormone deficiency (GHD) and Turner syndrome (TS) children in the PREDICT long-term follow-up (LTFU) study (Nbib699855). Here, we describe the PREDICT validation (VAL) study (Nbib1419249), which aimed to confirm these genetic associations. Children with GHD (n = 293) or TS (n = 132) were recruited retrospectively from 29 sites in nine countries. All children had completed 1 year of r-hGH therapy. 48 SNPs previously identified as associated with first year growth response to r-hGH were genotyped. Regression analysis was used to assess the association between genotype and growth response using clinical/auxological variables as covariates. Further analysis was undertaken using random forest classification. The children were younger, and the growth response was higher in VAL study. Direct genotype analysis did not replicate what was found in the LTFU study. However, using exploratory regression models with covariates, a consistent relationship with growth response in both VAL and LTFU was shown for four genes - SOS1 and INPPL1 in GHD and ESR1 and PTPN1 in TS. The random forest analysis demonstrated that only clinical covariates were important in the prediction of growth response in mild GHD (&gt;4 to &lt;10 μg/L on GH stimulation test), however, in severe GHD (≤4 μg/L) several SNPs contributed (in IGF2, GRB10, FOS, IGFBP3 and GHRHR). The PREDICT validation study supports, in an independent cohort, the association of four of 48 genetic markers with growth response to r-hGH treatment in both pre-pubertal GHD and TS children after controlling for clinical/auxological covariates. However, the contribution of these SNPs in a prediction model of first-year response is not sufficient for routine clinical use."	"Rac1-mediated cytoskeleton rearrangements induced by intersectin-1s deficiency promotes lung cancer cell proliferation, migration and metastasis. The mechanisms involved in lung cancer (LC) progression are poorly understood making discovery of successful therapies difficult. Adaptor proteins play a crucial role in cancer as they link cell surface receptors to specific intracellular pathways. Intersectin-1s (ITSN-1s) is an important multidomain adaptor protein implicated in the pathophysiology of numerous pulmonary diseases. To date, the role of ITSN-1s in LC has not been studied. Human LC cells, human LC tissue and A549 LC cells stable transfected with myc-ITSN-1s construct (A549 + ITSN-1s) were used in correlation with biochemical, molecular biology and morphological studies. In addition scratch assay with time lapse microscopy and in vivo xenograft tumor and mouse metastasis assays were performed. ITSN-1s, a prevalent protein of lung tissue, is significantly downregulated in human LC cells and LC tissue. Restoring ITSN-1s protein level decreases LC cell proliferation and clonogenic potential. In vivo studies indicate that immunodeficient mice injected with A549 + ITSN-1s cells develop less and smaller metastatic tumors compared to mice injected with A549 cells. Our studies also show that restoring ITSN-1s protein level increases the interaction between Cbl E3 ubiquitin ligase and Eps8 resulting in enhanced ubiquitination of the Eps8 oncoprotein. Subsequently, downstream unproductive assembly of the Eps8-mSos1 complex leads to impaired activation of the small GTPase Rac1. Impaired Rac1 activation mediated by ITSN-1s reorganizes the cytoskeleton (increased thick actin bundles and focal adhesion (FA) complexes as well as collapse of the vimentin filament network) in favor of decreased LC cell migration and metastasis. ITSN-1s induced Eps8 ubiquitination and impaired Eps8-mSos1 complex formation, leading to impaired activation of Rac1, is a novel signaling mechanism crucial for abolishing the progression and metastatic potential of LC cells."	"Epithelial-mesenchymal transition of ovarian cancer cells is sustained by Rac1 through simultaneous activation of MEK1/2 and Src signaling pathways. Epithelial-mesenchymal transition (EMT) is regarded as a crucial contributing factor to cancer progression. Diverse factors have been identified as potent EMT inducers in ovarian cancer. However, molecular mechanism sustaining EMT of ovarian cancer cells remains elusive. Here we show that the presence of SOS1/EPS8/ABI1 complex is critical for sustained EMT traits of ovarian cancer cells. Consistent with the role of SOS1/EPS8/ABI1 complex as a Rac1-specific guanine nucleotide exchange factor, depleting Rac1 results in the loss of most of mesenchymal traits in mesenchymal-like ovarian cancer cells, whereas expressing constitutively active Rac1 leads to EMT in epithelial-like ovarian cancer cells. With the aid of clinically tested inhibitors targeting various EMT-associated signaling pathways, we show that only combined treatment of mitogen-activated extracellular signal-regulated kinase 1/2 (MEK1/2) and Src inhibitors can abolish constitutively active Rac1-led EMT and mesenchymal traits displayed by mesenchymal-like ovarian cancer cells. Further experiments also reveal that EMT can be induced in epithelial-like ovarian cancer cells by co-expressing constitutively active MEK1 and Src rather than either alone. As the activities of Erk and Src are higher in ovarian cancer cells with constitutively active Rac1, we conclude that Rac1 sustains ovarian cancer cell EMT through simultaneous activation of MEK1/2 and Src signaling pathways. Importantly, we demonstrate that combined use of MEK1/2 and Src inhibitors effectively suppresses development of intraperitoneal xenografts and prolongs the survival of ovarian cancer-bearing mice. This study suggests that cocktail of MEK1/2 and Src inhibitors represents an effective therapeutic strategy against ovarian cancer progression."	"p66<sup>Shc</sup> Couples Mechanical Signals to RhoA through Focal Adhesion Kinase-Dependent Recruitment of p115-RhoGEF and GEF-H1. Tissue cells respond to changes in tensional forces with proliferation or death through the control of RhoA. However, the response coupling mechanisms that link force with RhoA activation are poorly understood. We found that tension applied to fibronectin-coated microbeads caused recruitment of all three isoforms of the Shc adapter (p66<sup>Shc</sup>, p52<sup>Shc</sup>, and p46<sup>Shc</sup>) to adhesion complexes. The Shc PTB domain was necessary and sufficient for this recruitment, and screening studies revealed the direct interactions with the FERM domain of focal adhesion kinase (FAK) that were required for Shc translocation to adhesion complexes. The FAK/p66<sup>Shc</sup> complex specifically bound and activated the Rho guanyl exchange factors (GEFs) p115-RhoGEF and GEF-H1, leading to tension-induced RhoA activation. In contrast, the FAK/p52<sup>Shc</sup> complex bound SOS1 but not the Rho GEFs to mediate tension-induced Ras activation. Nuclear translocation and activation of the YAP/TAZ transcription factors on firm substrates required the FAK/p66<sup>Shc</sup>/Rho GEF complex, and both proliferation on firm substrates and anoikis in suspension required signaling through p66<sup>Shc</sup> and its associated Rho GEFs. These studies reveal the binary and exclusive assignment of p66<sup>Shc</sup> and p52<sup>Shc</sup> to tension-induced Rho or Ras signals, respectively, and suggest an integrated role for the two Shc isoforms in coordinating the cellular response to mechanical stimuli."	"Cardiac Manifestations and Associations with Gene Mutations in Patients Diagnosed with RASopathies. RASopathies are a group of syndromes caused by germline mutations of the RAS/MAPK pathway. They include Noonan syndrome, cardio-facio-cutaneous syndrome, Costello syndrome, and Noonan syndrome with multiple lentigines, which share many characteristic features including cardiac abnormalities. Here, we retrospectively reviewed the clinical manifestations and evaluated the genotype-phenotype associations with special focus on cardiac lesions of the patients with RASopathies. Cardiac symptoms were the most common initial presentation (27 %), except for admission to neonatal intensive care. Although there was a significant gap between the first visit to the hospital and the diagnosis of the genetic syndrome (19.9 ± 39.1 months), the age at the clinical diagnosis of the genetic syndrome was significantly lower in patients with CHD than in patients without CHD (47.26 ± 67.42 vs. 86.17 ± 85.66 months, p = 0.005). A wide spectrum of cardiac lesions was detected in 76.1 % (118/155) of included patients. The most common lesion was pulmonary stenosis, followed by atrial septal defect and hypertrophic cardiomyopathy (HCMP). About half of the pulmonary stenosis and HCMP patients progressed during the median follow-up period of 109.9 (range 9.7-315.4) months. Early rapid aggravation of cardiac lesions was linked to poor prognosis. MEK1, KRAS, and SOS1 mutations tend to be highly associated with pulmonary stenosis. Cardiologists may play important roles in early detection and diagnosis of RASopathies as well as associated CHDs. Due to the variety of clinical presentations and their progression of severity, proper management with regular long-term follow-up of these patients is essential."	"Ocular Manifestations of Noonan Syndrome: A Prospective Clinical and Genetic Study of 25 Patients. To determine the full spectrum of ocular manifestations in patients with Noonan syndrome (NS). Prospective cross-sectional clinical and genetic study in a tertiary referral center. Twenty-five patients with NS (mean age, 14 years; range, 8 months-25 years) clinically diagnosed by validated criteria. All patients were examined by the same team following a detailed study protocol. Genetic analyses were performed in 23 patients. Ocular abnormalities of vision and refraction, external ocular features, ocular position and motility, anterior segment, posterior segment, and intraocular pressure. Ocular features of vision and refraction were amblyopia (32%), myopia (40%), and astigmatism (52%). External ocular features were epicanthic folds (84%), hypertelorism (68%), ptosis (56%), high upper eyelid crease (64%), lower eyelid retraction (60%), abnormal upward slanting palpebral fissures (36%), downward slanting palpebral fissures (32%), and lagophthalmos (28%). Orthoptic abnormalities included strabismus (40%), abnormal stereopsis (44%), and limited ocular motility (40%). Anterior segment abnormalities included prominent corneal nerves (72%) and posterior embryotoxon (32%). Additional ocular features were found, including nonglaucomatous optic disc excavation (20%), relatively low (&lt;10 mmHg) intraocular pressure (22%), and optic nerve hypoplasia (4%). Mutations were established in 22 patients: 19 PTPN11 mutations (76%), 1 SOS1 mutation, 1 BRAF mutation, and 1 KRAS mutation. The patient with the highest number of prominent corneal nerves had an SOS1 mutation. The patient with the lowest visual acuity, associated with bilateral optic nerve hypoplasia, had a BRAF mutation. Patients with severe ptosis and nearly total absence of levator muscle function had PTPN11 mutations. All patients showed at least 3 ocular features (range, 3-13; mean, 7), including at least 1 external ocular feature in more than 95% of the patients. Noonan syndrome is a clinical diagnosis with multiple genetic bases associated with an extensive variety of congenital ocular abnormalities. Ocular features of NS are characterized by 1 or more developmental anomalies of the eyelids (involving the position, opening, and closure) associated with various other ocular abnormalities in childhood, including amblyopia, myopia, astigmatism, strabismus, limited ocular motility, prominent corneal nerves, and posterior embryotoxon."	"One-way membrane trafficking of SOS in receptor-triggered Ras activation. SOS is a key activator of the small GTPase Ras. In cells, SOS-Ras signaling is thought to be initiated predominantly by membrane recruitment of SOS via the adaptor Grb2 and balanced by rapidly reversible Grb2-SOS binding kinetics. However, SOS has multiple protein and lipid interactions that provide linkage to the membrane. In reconstituted-membrane experiments, these Grb2-independent interactions were sufficient to retain human SOS on the membrane for many minutes, during which a single SOS molecule could processively activate thousands of Ras molecules. These observations raised questions concerning how receptors maintain control of SOS in cells and how membrane-recruited SOS is ultimately released. We addressed these questions in quantitative assays of reconstituted SOS-deficient chicken B-cell signaling systems combined with single-molecule measurements in supported membranes. These studies revealed an essentially one-way trafficking process in which membrane-recruited SOS remains trapped on the membrane and continuously activates Ras until being actively removed via endocytosis."	"Comprehensive Analysis of the Transcriptional and Mutational Landscape of Follicular and Papillary Thyroid Cancers. Follicular thyroid carcinoma (FTC) and benign follicular adenoma (FA) are indistinguishable by preoperative diagnosis due to their similar histological features. Here we report the first RNA sequencing study of these tumors, with data for 30 minimally invasive FTCs (miFTCs) and 25 FAs. We also compared 77 classical papillary thyroid carcinomas (cPTCs) and 48 follicular variant of PTCs (FVPTCs) to observe the differences in their molecular properties. Mutations in H/K/NRAS, DICER1, EIF1AX, IDH1, PTEN, SOS1, and SPOP were identified in miFTC or FA. We identified a low frequency of fusion genes in miFTC (only one, PAX8-PPARG), but a high frequency of that in PTC (17.60%). The frequencies of BRAFV600E and H/K/NRAS mutations were substantially different in miFTC and cPTC, and those of FVPTC were intermediate between miFTC and cPTC. Gene expression analysis demonstrated three molecular subtypes regardless of their histological features, including Non-BRAF-Non-RAS (NBNR), as well as BRAF-like and RAS-like. The novel molecular subtype, NBNR, was associated with DICER1, EIF1AX, IDH1, PTEN, SOS1, SPOP, and PAX8-PPARG. The transcriptome of miFTC or encapsulated FVPTC was indistinguishable from that of FA, providing a molecular explanation for the similarly indolent behavior of these tumors. We identified upregulation of genes that are related to mitochondrial biogenesis including ESRRA and PPARGC1A in oncocytic follicular thyroid neoplasm. Arm-level copy number variations were correlated to histological and molecular characteristics. These results expanded the current molecular understanding of thyroid cancer and may lead to new diagnostic and therapeutic approaches to the disease."	"Haplotype distribution and association of candidate genes with salt tolerance in Indian wild rice germplasm. The association of natural genetic variations of salt-responsive candidate genes belonging to different gene families with salt-tolerance phenotype and their haplotype variation in different geographic regions. Soil salinity covers a large part of the arable land of the world and is a major factor for yield losses in salt-sensitive crops, such as rice. Different gene families that respond to salinity have been identified in rice, but limited success has been achieved in developing salt-tolerant cultivars. Therefore, 21 salt stress-responsive candidate genes belonging to different gene families were re-sequenced to analyse their genetic variation and association with salt tolerance. The average single nucleotide polymorphism (SNP) density was 16 SNPs per kbp amongst these genes. The identified nucleotide and haplotype diversity showed comparatively higher genetic variation in the transporter family genes. Linkage disequilibrium (LD) analysis showed significant associations of SNPs in BADH2, HsfC1B, MIPS1, MIPS2, MYB2, NHX1, NHX2, NHX3, P5CS1, P5CS2, PIP1, SIK1, SOS1, and SOS2 genes with the salt-tolerant phenotype. A combined analysis of SNPs in the 21 candidate genes and eight other HKT transporter genes produced two separate clusters of tolerant genotypes, carrying unique SNPs in the ion transporter and osmoticum-related genes. Haplotype network analysis showed all the major and few minor alleles distributed over distant geographic regions. Minor haplotypes may be recently evolved alleles which migrated to distant geographic regions and may represent recent expansion of Indian wild rice. The analysis of genetic variation in different gene families identified the relationship between adaptive variations and functional significance of the genes. Introgression of the identified alleles from wild relatives may enhance the salt tolerance and consequently rice production in the salinity-affected areas."	"The mystery of oncogenic KRAS: Lessons from studying its wild-type counter part. Using conditional knock-in mouse models, we and others have shown that despite the very high sequence identity between Nras and Kras proteins, oncogenic Kras displays a much stronger leukemogenic activity than oncogenic Nras in vivo. In this manuscript, we will summarize our recent work of characterizing wild-type Kras function in adult hematopoiesis and in oncogenic Kras-induced leukemogenesis. We attribute the strong leukemogenic activity of oncogenic Kras to 2 unique aspects of Kras signaling. First, Kras is required in mediating cell type- and cytokine-specific ERK1/2 signaling. Second, oncogenic Kras, but not oncogenic Nras, induces hyperactivation of wild-type Ras, which significantly enhances Ras signaling in vivo. We will also discuss a possible mechanism that mediates oncogenic Kras-evoked hyperactivation of wild-type Ras and a potential approach to down-regulate oncogenic Kras signaling."	"Dynamic studies of H-Ras•GTPγS interactions with nucleotide exchange factor Sos reveal a transient ternary complex formation in solution. The cycling between GDP- and GTP- bound forms of the Ras protein is partly regulated by the binding of Sos. The structural/dynamic behavior of the complex formed between activated Sos and Ras at the point of the functional cycle where the nucleotide exchange is completed has not been described to date. Here we show that solution NMR spectra of H-Ras∙GTPγS mixed with a functional fragment of Sos (Sos(Cat)) at a 2:1 ratio are consistent with the formation of a rather dynamic assembly. H-Ras∙GTPγS binding was in fast exchange on the NMR timescale and retained a significant degree of molecular tumbling independent of Sos(Cat), while Sos(Cat) also tumbled largely independently of H-Ras. Estimates of apparent molecular weight from both NMR data and SEC-MALS revealed that, at most, only one H-Ras∙GTPγS molecule appears stably bound to Sos. The weak transient interaction between Sos and the second H-Ras∙GTPγS may provide a necessary mechanism for complex dissociation upon the completion of the native GDP → GTP exchange reaction, but also explains measurable GTP → GTP exchange activity of Sos routinely observed in in vitro assays that use fluorescently-labelled analogs of GTP. Overall, the data presents the first dynamic snapshot of Ras functional cycle as controlled by Sos."	"Conservation of protein abundance patterns reveals the regulatory architecture of the EGFR-MAPK pathway. Various genetic mutations associated with cancer are known to alter cell signaling, but it is not clear whether they dysregulate signaling pathways by altering the abundance of pathway proteins. Using a combination of RNA sequencing and ultrasensitive targeted proteomics, we defined the primary components-16 core proteins and 10 feedback regulators-of the epidermal growth factor receptor (EGFR)-mitogen-activated protein kinase (MAPK) pathway in normal human mammary epithelial cells and then quantified their absolute abundance across a panel of normal and breast cancer cell lines as well as fibroblasts. We found that core pathway proteins were present at very similar concentrations across all cell types, with a variance similar to that of proteins previously shown to display conserved abundances across species. In contrast, EGFR and transcriptionally controlled feedback regulators were present at highly variable concentrations. The absolute abundance of most core proteins was between 50,000 and 70,000 copies per cell, but the adaptors SOS1, SOS2, and GAB1 were found at far lower amounts (2000 to 5000 copies per cell). MAPK signaling showed saturation in all cells between 3000 and 10,000 occupied EGFRs, consistent with the idea that adaptors limit signaling. Our results suggest that the relative stoichiometry of core MAPK pathway proteins is very similar across different cell types, with cell-specific differences mostly restricted to variable amounts of feedback regulators and receptors. The low abundance of adaptors relative to EGFR could be responsible for previous observations that only a fraction of total cell surface EGFR is capable of rapid endocytosis, high-affinity binding, and mitogenic signaling."	"Difference in root K+ retention ability and reduced sensitivity of K+-permeable channels to reactive oxygen species confer differential salt tolerance in three Brassica species. Brassica species are known to possess significant inter and intraspecies variability in salinity stress tolerance, but the cell-specific mechanisms conferring this difference remain elusive. In this work, the role and relative contribution of several key plasma membrane transporters to salinity stress tolerance were evaluated in three Brassica species (B. napus, B. juncea, and B. oleracea) using a range of electrophysiological assays. Initial root growth assay and viability staining revealed that B. napus was most tolerant amongst the three species, followed by B. juncea and B. oleracea At the mechanistic level, this difference was conferred by at least three complementary physiological mechanisms: (i) higher Na(+) extrusion ability from roots resulting from increased expression and activity of plasma membrane SOS1-like Na(+)/H(+) exchangers; (ii) better root K(+) retention ability resulting from stress-inducible activation of H(+)-ATPase and ability to maintain more negative membrane potential under saline conditions; and (iii) reduced sensitivity of B. napus root K(+)-permeable channels to reactive oxygen species (ROS). The last two mechanisms played the dominant role and conferred most of the differential salt sensitivity between species. Brassica napus plants were also more efficient in preventing the stress-induced increase in GORK transcript levels and up-regulation of expression of AKT1, HAK5, and HKT1 transporter genes. Taken together, our data provide the mechanistic explanation for differential salt stress sensitivity amongst these species and shed light on transcriptional and post-translational regulation of key ion transport systems involved in the maintenance of the root plasma membrane potential and cytosolic K/Na ratio as a key attribute for salt tolerance in Brassica species."	"Inherited Disease Genetics Improves the Identification of Cancer-Associated Genes. The identification of biologically significant variants in cancer genomes is critical to therapeutic discovery, but it is limited by the statistical power needed to discern driver from passenger. Independent biological data can be used to filter cancer exomes and increase statistical power. Large genetic databases for inherited diseases are uniquely suited to this task because they contain specific amino acid alterations with known pathogenicity and molecular mechanisms. However, no rigorous method to overlay this information onto the cancer exome exists. Here, we present a computational methodology that overlays any variant database onto the somatic mutations in all cancer exomes. We validate the computation experimentally and identify novel associations in a re-analysis of 7362 cancer exomes. This analysis identified activating SOS1 mutations associated with Noonan syndrome as significantly altered in melanoma and the first kinase-activating mutations in ACVR1 associated with adult tumors. Beyond a filter, significant variants found in both rare cancers and rare inherited diseases increase the unmet medical need for therapeutics that target these variants and may bootstrap drug discovery efforts in orphan indications."	"New Driver Mutations Detected in NSCLC. Researchers have identified additional driver mutations in non-small cell lung cancer that may guide the development of new targeted drugs and immunotherapy. The findings also highlight key differences between two major NSCLC subtypes that could inform future therapeutic strategies."	"4-Hydroxybutenolide impairs cell migration, and invasion of human oral cancer SCC-4 cells via the inhibition of NF-κB and MAPK signaling pathways. 4-Hydroxybutenolide (K87), a synthetic compound from furfuryl alcohol via photooxidation, was used to investigate whether it can inhibit mobility, migration and invasion of SCC-4 human oral cancer cells in vitro. Cell viability was measured by flow cytometric assay, the enzymatic activities of MMP-2/9 were assayed by gelatin zymography analysis, the protein levels were assayed by western blotting, confocal laser microscopy and EMSA assay, and the gene expression of MMP-2/-7, FAK and ROCK1 mRNA were assayed by PCR. K87 decreased the percentage of viable cells in dose-dependent manner. K87 suppressed cell mobility, migration and invasion of SCC-4 cells dose-dependently. K87 inhibited the enzymatic activities of MMP-2/9 of SCC-4 cells. Western blot analysis revealed that K87 decreased the protein levels in NF-κBp65, COX-2, ROCK1 and Rho A, MMP-1, -2,- 7, -9, VEGF, GRB2, SOS1, PI3K, PKC, PERK, p-PERK, FAK, MEKK3, MKK7, ERK1/2, JNK1/2, p-p38, p38, p-c-Jun, AKT, TIMP2, but increased the protein levels of iNOS, Ras, IRE-1α, p-c-JNK, p-AKT(308), p-AKT(473) and TIMP1. Results from PCR indicated that K87 inhibited the gene expression of MMP-2/-7, FAK and ROCK1 mRNA. Furthermore, confocal laser microscopy was used to confirm that K87 inhibited the translocation of RHOA and ROCK1 in SCC-4 cells. EMSA assay also show that K87 suppressed the nuclear activation of NF-κB and these effects are time-dependent. Western blotting assay indicated that expression of NF-κBp105, NF-κBp50 and NF-κBp65 proteins were decreased and these effects are time-dependent. Based on these observations, we suggest that K87 may be used as a potential agent for anticancer metastasis of human oral cancer in the future. "	"Targeted Sequencing and Meta-Analysis of Preterm Birth. Understanding the genetic contribution(s) to the risk of preterm birth may lead to the development of interventions for treatment, prediction and prevention. Twin studies suggest heritability of preterm birth is 36-40%. Large epidemiological analyses support a primary maternal origin for recurrence of preterm birth, with little effect of paternal or fetal genetic factors. We exploited an &quot;extreme phenotype&quot; of preterm birth to leverage the likelihood of genetic discovery. We compared variants identified by targeted sequencing of women with 2-3 generations of preterm birth with term controls without history of preterm birth. We used a meta-genomic, bi-clustering algorithm to identify gene sets coordinately associated with preterm birth. We identified 33 genes including 217 variants from 5 modules that were significantly different between cases and controls. The most frequently identified and connected genes in the exome library were IGF1, ATM and IQGAP2. Likewise, SOS1, RAF1 and AKT3 were most frequent in the haplotype library. Additionally, SERPINB8, AZU1 and WASF3 showed significant differences in abundance of variants in the univariate comparison of cases and controls. The biological processes impacted by these gene sets included: cell motility, migration and locomotion; response to glucocorticoid stimulus; signal transduction; metabolic regulation and control of apoptosis."	"Distinct patterns of somatic genome alterations in lung adenocarcinomas and squamous cell carcinomas. To compare lung adenocarcinoma (ADC) and lung squamous cell carcinoma (SqCC) and to identify new drivers of lung carcinogenesis, we examined the exome sequences and copy number profiles of 660 lung ADC and 484 lung SqCC tumor-normal pairs. Recurrent alterations in lung SqCCs were more similar to those of other squamous carcinomas than to alterations in lung ADCs. New significantly mutated genes included PPP3CA, DOT1L, and FTSJD1 in lung ADC, RASA1 in lung SqCC, and KLF5, EP300, and CREBBP in both tumor types. New amplification peaks encompassed MIR21 in lung ADC, MIR205 in lung SqCC, and MAPK1 in both. Lung ADCs lacking receptor tyrosine kinase-Ras-Raf pathway alterations had mutations in SOS1, VAV1, RASA1, and ARHGAP35. Regarding neoantigens, 47% of the lung ADC and 53% of the lung SqCC tumors had at least five predicted neoepitopes. Although targeted therapies for lung ADC and SqCC are largely distinct, immunotherapies may aid in treatment for both subtypes."	"Sos1 disruption impairs cellular proliferation and viability through an increase in mitochondrial oxidative stress in primary MEFs. Using a 4-hydroxytamoxifen (4OHT)-inducible, conditional Sos1-null mutation, we analyzed wild-type (WT), single Sos1-KO, Sos2-KO and double Sos1/2 KO primary mouse embryonic fibroblasts (MEF) with an aim at evaluating the functional specificity or redundancy of the Sos1 and Sos2 alleles at the cellular level. The 4OHT-induced Sos1-KO and Sos1/2-DKO MEFs exhibited distinct flat morphology, enlarged cell perimeter and altered cytoskeletal organization that were not observed in the WT and Sos2-KO counterparts. The Sos1-KO and Sos1/2-DKO MEFs also displayed significant accumulation, in comparison with WT and Sos2-KO MEFs, of cytoplasmic vesicular bodies identified as autophagosomes containing degraded mitochondria by means of electron microscopy and specific markers. Cellular proliferation and migration were impaired in Sos1-KO and Sos1/2-DKO MEFs in comparison with WT and Sos2-KO MEFs, whereas cell adhesion was only impaired upon depletion of both Sos isoforms. RasGTP formation was practically absent in Sos1/2-DKO MEFs as compared with the other genotypes and extracellular signal-regulated kinase phosphorylation showed only significant reduction after combined Sos1/2 depletion. Consistent with a mitophagic phenotype, in vivo labeling with specific fluorophores uncovered increased levels of oxidative stress (elevated intracellular reactive oxygen species and mitochondrial superoxide and loss of mitochondrial membrane potential) in the Sos1-KO and the Sos1/2-DKO cells as compared with Sos2-KO and WT MEFs. Interestingly, treatment of the MEF cultures with antioxidants corrected the altered phenotypes of Sos1-KO and Sos1/2-DKO MEFs by restoring their altered perimeter size and proliferative rate to levels similar to those of WT and Sos2-KO MEFs. Our data uncover a direct mechanistic link between Sos1 and control of intracellular oxidative stress, and demonstrate functional prevalence of Sos1 over Sos2 with regards to cellular proliferation and viability."	"Effect of osmopriming on germination and initial growth of Physalis angulata L. under salt stress and on expression of associated genes. This study aimed to evaluate the effects of priming on seed germination under salt stress and gene expression in seeds and seedlings of P. angulata L. After priming for 10 days, seed germination was tested in plastic trays containing 15 ml of water (0 dS m-1 - control) or 15 ml of NaCl solution (2, 4, 6, 8, 10, 12, 14 and 16 dS m-1). Fresh and dry weight of shoots and roots of seedlings were evaluated at 0, 2, 4, 6, 8 dS m-1. Total RNA was extracted from whole seeds and seedlings followed by RT-qPCR. The target genes selected for this study were: ascorbate peroxidase (APX), glutathione-S-transferase (GST), thioredoxin (TXN), high affinity potassium transporter protein 1 (HAK1) and salt overly sensitive 1 (SOS1). At an electroconductivity of 14 dS m-1 the primed seeds still germinated to 72%, in contrast with the non-primed seeds which did not germinate. The relative expression of APX was higher in primed seeds and this may have contributed to the maintenance of high germination in primed seeds at high salt concentrations. GST and TXN displayed increased transcript levels in shoots and roots of seedlings from primed seeds. Priming improved seed germination as well as salt tolerance and this is correlated with increased expression of APX in seeds and SOS1, GST and TXN in seedlings. "	"A MAPK-Driven Feedback Loop Suppresses Rac Activity to Promote RhoA-Driven Cancer Cell Invasion. Cell migration in 3D microenvironments is fundamental to development, homeostasis and the pathobiology of diseases such as cancer. Rab-coupling protein (RCP) dependent co-trafficking of α5β1 and EGFR1 promotes cancer cell invasion into fibronectin (FN) containing extracellular matrix (ECM), by potentiating EGFR1 signalling at the front of invasive cells. This promotes a switch in RhoGTPase signalling to inhibit Rac1 and activate a RhoA-ROCK-Formin homology domain-containing 3 (FHOD3) pathway and generate filopodial actin-spike protrusions which drive invasion. To further understand the signalling network that drives RCP-driven invasive migration, we generated a Boolean logical model based on existing network pathways/models, where each node can be interrogated by computational simulation. The model predicted an unanticipated feedback loop, whereby Raf/MEK/ERK signalling maintains suppression of Rac1 by inhibiting the Rac-activating Sos1-Eps8-Abi1 complex, allowing RhoA activity to predominate in invasive protrusions. MEK inhibition was sufficient to promote lamellipodia formation and oppose filopodial actin-spike formation, and led to activation of Rac and inactivation of RhoA at the leading edge of cells moving in 3D matrix. Furthermore, MEK inhibition abrogated RCP/α5β1/EGFR1-driven invasive migration. However, upon knockdown of Eps8 (to suppress the Sos1-Abi1-Eps8 complex), MEK inhibition had no effect on RhoGTPase activity and did not oppose invasive migration, suggesting that MEK-ERK signalling suppresses the Rac-activating Sos1-Abi1-Eps8 complex to maintain RhoA activity and promote filopodial actin-spike formation and invasive migration. Our study highlights the predictive potential of mathematical modelling approaches, and demonstrates that a simple intervention (MEK-inhibition) could be of therapeutic benefit in preventing invasive migration and metastasis."	"Variation in tissue Na(+) content and the activity of SOS1 genes among two species and two related genera of Chrysanthemum. Chrysanthemum, a leading ornamental species, does not tolerate salinity stress, although some of its related species do. The current level of understanding regarding the mechanisms underlying salinity tolerance in this botanical group is still limited. A comparison of the physiological responses to salinity stress was made between Chrysanthemum morifolium 'Jinba' and its more tolerant relatives Crossostephium chinense, Artemisia japonica and Chrysanthemum crassum. The stress induced a higher accumulation of Na(+) and more reduction of K(+) in C. morifolium than in C. chinense, C. crassum and A. japonica, which also showed higher K(+)/Na(+) ratio. Homologs of an Na(+)/H(+) antiporter (SOS1) were isolated from each species. The gene carried by the tolerant plants were more strongly induced by salt stress than those carried by the non-tolerant ones. When expressed heterologously, they also conferred a greater degree of tolerance to a yeast mutant lacking Na(+)-pumping ATPase and plasma membrane Na(+)/H(+) antiporter activity. The data suggested that the products of AjSOS1, CrcSOS1 and CcSOS1 functioned more effectively as Na (+) excluders than those of CmSOS1. Over expression of four SOS1s improves the salinity tolerance of transgenic plants and the overexpressing plants of SOS1s from salt tolerant plants were more tolerant than that from salt sensitive plants. In addition, the importance of certain AjSOS1 residues for effective ion transport activity and salinity tolerance was established by site-directed mutagenesis and heterologous expression in yeast. AjSOS1, CrcSOS1 and CcSOS1 have potential as transgenes for enhancing salinity tolerance. Some of the mutations identified here may offer opportunities to better understand the mechanistic basis of salinity tolerance in the chrysanthemum complex."	"Direct inhibition of oncogenic KRAS by Bacillus pumilus ribonuclease (binase). RAS proteins function as molecular switches that transmit signals from cell surface receptors into specific cellular responses via activation of defined signaling pathways (Fang, 2015). Aberrant constitutive RAS activation occurs with high incidence in different types of cancer (Bos, 1989). Thus, inhibition of RAS-mediated signaling is extremely important for therapeutic approaches against cancer. Here we showed that the ribonuclease (RNase) binase, directly interacts with endogenous KRAS. Further, molecular structure models suggested an inhibitory nature of binase-RAS interaction involving regions of RAS that are important for different aspects of its function. Consistent with these models, phosphorylation analysis of effectors of RAS-mediated signaling revealed that binase inhibits the MAPK/ERK signaling pathway. Interestingly, RAS activation assays using a non-hydrolysable GTP analog (GTPγS) demonstrated that binase interferes with the exchange of GDP by GTP. Furthermore, we showed that binase reduced the interaction of RAS with the guanine nucleotide exchange factor (GEF), SOS1. Our data support a model in which binase-KRAS interaction interferes with the function of GEFs and stabilizes the inactive GDP-bound conformation of RAS thereby inhibiting MAPK/ERK signaling. This model plausibly explains the previously reported, antitumor-effect of binase specific towards RAS-transformed cells and suggests the development of anticancer therapies based on this ribonuclease. "	"Identification of biomarkers and pathway-related modules involved in ovarian cancer based on topological centralities. The present study was designed to explore the significant biomarkers and pathway-related modules for predicting the effects of eribulin relative to paclitaxel in ovarian cancer. The gene expression data E-GEOD-50831 were downloaded from the European Bioinformatics Institute (EBI) database. Differentially expressed genes (DEGs) were screened. Subsequently, differential coexpression network was constructed. Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis and pathway-related modules mining were conducted. Topological centralities (degree, betweenness, closeness and stress) analyses for coexpression network and pathway-related modules were performed to explore hub genes and the most significant pathways. Then, we verified our findings in an independent sample set via RT-PCR and Western blotting. Centralities results of ESCO1, CDC27and MCM4 ranked the top five. Moreover, among the top 10% hub genes, CDC27, MCM4 and SOS1 were pathway-enriched genes in two networks. A total of 5 and 6 pathway-related modules were obtained under two drugs treatment. Based analyses of degree, betweenness and other centralities, DNA replication pathway-related module was the most significant under paclitaxel treatment, while cell cycle pathway-related module was the most significant under eribulin treatment. RT-PCR and Western blotting results were consistent with the bioinformatics results. The expression level of MCM4 was remarkably decreased under eribulin treatment relative to paclitaxel. The inhibition of ovarian cancer growth by paclitaxel and eribulin might be connected with downregulation of cell cycle and DNA replication pathway. Moreover, MCM4 signature might be a potential biomarker to predict the effect of eribulin in ovarian cancer."	"Measurement of Differential Na(+) Efflux from Apical and Bulk Root Zones of Intact Barley and Arabidopsis Plants. Rapid sodium cycling across the plasma membrane of root cells is widely thought to be associated with Na(+) toxicity in plants. However, the efflux component of this cycling is not well understood. Efflux of Na(+) from root cells is believed to be mediated by Salt Overly-Sensitive-1, although expression of this Na(+)/H(+) antiporter has been localized to the vascular tissue and root meristem. Here, we used a chambered cuvette system in which the distal root of intact salinized barley and Arabidopsis thaliana plants (wild-type and sos1) were isolated from the bulk of the root by a silicone-acrylic barrier, so that we could compare patterns of (24)Na(+) efflux in these two regions of root. In barley, steady-state release of (24)Na(+) was about four times higher from the distal root than from the bulk roots. In the distal root, (24)Na(+) release was pronouncedly decreased by elevated pH (9.2), while the bulk-root release was not significantly affected. In A. thaliana, tracer efflux was about three times higher from the wild-type distal root than from the wild-type bulk root and also three to four times higher than both distal- and bulk-root fluxes of Atsos1 mutants. Elevated pH also greatly reduced the efflux from wild-type roots. These findings support a significant role of SOS1-mediated Na(+) efflux in the distal root, but not in the bulk root. "	"Expression and characterization of the SOS1 Arabidopsis salt tolerance protein. SOS1 is the plasma membrane Na(+)/H(+) antiporter of Arabidopsis thaliana. It is responsible for the removal of intracellular sodium in exchange for an extracellular proton. SOS1 is composed of 1146 amino acids. Approximately 450 make the membrane domain, while the protein contains and a very large regulatory cytosolic domain of about 696 amino acids. Schizosaccharomyces pombe contains the salt tolerance Na(+)/H(+) antiporter proteins sod2. We examined the ability of SOS1 to rescue salt tolerance in S. pombe with a knockout of the sod2 gene (sod2::ura4). In addition, we characterized the importance of the regulatory tail of SOS1, in expression of the protein in S. pombe. We expressed full-length SOS1 and SOS1 shortened at the C-terminus and ending at amino acids 766 (medium) and 481 (short). The short version of SOS1 conveyed salt tolerance to sod2::ura4 yeast and Western blotting revealed that the protein was present. The protein was also targeted to the plasma membrane. The medium and full-length SOS1 protein were partially degraded and were not as well expressed as the short version of SOS1. The SOS1 short protein was also able to reduce Na(+) content in S. pombe. The full-length SOS1 dimerized and depended on the presence of the cytosolic tail. An analysis of SOS1 predicted a topology of 13 transmembrane segments, distinct from E. coli NhaA but similar to the Na(+)/H(+) exchangers Methanocaldococcus jannaschii NhaP1 and Thermus thermophile NapA. "	"Co-overexpressing a Plasma Membrane and a Vacuolar Membrane Sodium/Proton Antiporter Significantly Improves Salt Tolerance in Transgenic Arabidopsis Plants. The Arabidopsis gene AtNHX1 encodes a vacuolar membrane-bound sodium/proton (Na(+)/H(+)) antiporter that transports Na(+) into the vacuole and exports H(+) into the cytoplasm. The Arabidopsis gene SOS1 encodes a plasma membrane-bound Na(+)/H(+) antiporter that exports Na(+) to the extracellular space and imports H(+) into the plant cell. Plants rely on these enzymes either to keep Na(+) out of the cell or to sequester Na(+) into vacuoles to avoid the toxic level of Na(+) in the cytoplasm. Overexpression of AtNHX1 or SOS1 could improve salt tolerance in transgenic plants, but the improved salt tolerance is limited. NaCl at concentration &gt;200 mM would kill AtNHX1-overexpressing or SOS1-overexpressing plants. Here it is shown that co-overexpressing AtNHX1 and SOS1 could further improve salt tolerance in transgenic Arabidopsis plants, making transgenic Arabidopsis able to tolerate up to 250 mM NaCl treatment. Furthermore, co-overexpression of AtNHX1 and SOS1 could significantly reduce yield loss caused by the combined stresses of heat and salt, confirming the hypothesis that stacked overexpression of two genes could substantially improve tolerance against multiple stresses. This research serves as a proof of concept for improving salt tolerance in other plants including crops. "	"Arabidopsis CALCINEURIN B-LIKE10 Functions Independently of the SOS Pathway during Reproductive Development in Saline Conditions. The accumulation of sodium in soil (saline conditions) negatively affects plant growth and development. The Salt Overly Sensitive (SOS) pathway in Arabidopsis (Arabidopsis thaliana) functions to remove sodium from the cytosol during vegetative development preventing its accumulation to toxic levels. In this pathway, the SOS3 and CALCINEURIN B-LIKE10 (CBL10) calcium sensors interact with the SOS2 protein kinase to activate sodium/proton exchange at the plasma membrane (SOS1) or vacuolar membrane. To determine if the same pathway functions during reproductive development in response to salt, fertility was analyzed in wild type and the SOS pathway mutants grown in saline conditions. In response to salt, CBL10 functions early in reproductive development before fertilization, while SOS1 functions mostly after fertilization when seed development begins. Neither SOS2 nor SOS3 function in reproductive development in response to salt. Loss of CBL10 function resulted in reduced anther dehiscence, shortened stamen filaments, and aborted pollen development. In addition, cbl10 mutant pistils could not sustain the growth of wild-type pollen tubes. These results suggest that CBL10 is critical for reproductive development in the presence of salt and that it functions in different pathways during vegetative and reproductive development."	"Cognitive profile of a child with SOS1 mutation in Noonan syndrome. NA"	"Retrospective study of prenatal ultrasound findings in newborns with a Noonan spectrum disorder. Noonan spectrum disorders (NSDs) occur in 1:1000-2500 live births. Currently, there are no guidelines for prenatal molecular genetic testing for NSDs. Recent studies recommend prenatal testing for NSDs when ultrasonography detects two or more associated abnormalities. A stronger association between ultrasound findings and NSDs would enable more informed prenatal genetic testing. A total of 212 newborns (0-12 weeks) with prenatal ultrasound findings and a clinical suspicion of a NSD were referred for molecular genetic testing. Of these, 159/212 newborns tested had a single ultrasound abnormality and 53/212 newborns had two or more. Testing was performed by either a microarray-based resequencing assay or next generation sequencing of RAS/MAPK pathway genes associated with NSDs. Prenatal ultrasound findings in positive and negative cases were compared. A disease-causing variant was identified in 21.7% (46/212) of newborns tested. Of these positive cases, 67.4% (31/46) had only one ultrasound abnormality reported. The rate of detecting a disease-causing variant in cases with one ultrasound finding was 19.5% (31/159), which was not significantly different (p-value = 0.36) than that in cases with two or more ultrasound findings (28.3%; 15/53). Prenatal molecular testing for NSDs should be considered even in the presence of a single associated abnormal ultrasound finding. © 2016 John Wiley &amp; Sons, Ltd."	"Overexpression of NaKR3 enhances salt tolerance in Arabidopsis. Salinity is a major abiotic stress in agriculture. Here, we report that SODIUM POTASSIUM ROOT DEFECTIVE3 (NaKR3), which encodes a heavy metal-associated domain protein, is involved in salt tolerance in Arabidopsis. The results of quantitative reverse transcription-polymerase chain reaction analysis revealed that NaKR3 was induced by high salinity and osmotic stresses, but not by Cu(2+) stress. Transient expression of NaKR3-GFP in Arabidopsis protoplasts showed that the NaKR3 protein was localized in the cytosol. Transgenic Arabidopsis plants constitutively expressing NaKR3 under the control of the cauliflower mosaic virus 35S promoter exhibited increased tolerance to salt treatment. Furthermore, overexpression of NaKR3 increased the expression of SOS1 and SOS3, but decreased the accumulation of salt-induced proline. Taken together, our results indicate that NaKR3 is involved in the salt stress response in Arabidopsis. "	"Growth patterns of patients with Noonan syndrome: correlation with age and genotype. Growth patterns of patients with Noonan syndrome (NS) were established before the involved genes were identified. The goal of this study was to compare growth parameters according to genotype in patients with NS. The study population included 420 patients (176 females and 244 males) harboring mutations in the PTPN11, SOS1, RAF1, or KRAS genes. NS-associated PTPN11 mutations (NS-PTPN11) and NS with multiple lentigines-associated PTPN11 mutations (NSML-PTPN11) were distinguished. Birth measures and height and body mass index (BMI) measures at 2, 5, 10 years, and adulthood were compared with the general population and between genotypes. Patients with NS were shorter at birth (mean birth length standard deviation score (SDS): -1.0 ± 1.4; P &lt; 0.001) and throughout childhood than the healthy population, with height SDS being -2.1 ± 1.3 at 2 years, and -2.1 ± 1.2 at 5 and 10 years and adulthood (P &lt; 0.001). At birth, patients with NS-PTPN11 were significantly shorter and thinner than patients with NSML-PTPN11, SOS1, or KRAS. Growth retardation was significantly less severe and less frequent at 2 years in patients with NSML-PTPN11 and SOS1 than in patients with NS-PTPN11 (P &lt; 0.001 and P = 0.002 respectively). Patients with NS had lower BMI at 10 years (P &lt; 0.001). No difference between genotypes was demonstrated. Determining the growth patterns of patients with NS according to genotype should better inform clinicians about the natural course of growth in NS so that they can optimize the follow-up and management of these patients."	"Physiological and molecular mechanisms mediating xylem Na<sup>+</sup> loading in barley in the context of salinity stress tolerance. Time-dependent kinetics of xylem Na<sup>+</sup> loading was investigated using a large number of barley genotypes contrasting in their salinity tolerance. Salt-sensitive varieties were less efficient in controlling xylem Na<sup>+</sup> loading and showed a gradual increase in the xylem Na<sup>+</sup> content over the time. To understand underlying ionic and molecular mechanisms, net fluxes of Ca<sup>2+</sup> , K<sup>+</sup> and Na<sup>+</sup> were measured from the xylem parenchyma tissue in response to H2 O2 and ABA; both of them associated with salinity stress signalling. Our results indicate that NADPH oxidase-mediated apoplastic H2 O2 production acts upstream of the xylem Na<sup>+</sup> loading and is causally related to ROS-inducible Ca<sup>2+</sup> uptake systems in the root stelar tissue. It was also found that ABA regulates (directly or indirectly) the process of Na<sup>+</sup> retrieval from the xylem and the significant reduction of Na<sup>+</sup> and K<sup>+</sup> fluxes induced by bumetanide are indicative of a major role of chloride cation co-transporter (CCC) on xylem ion loading. Transcript levels of HvHKT1;5_like and HvSOS1_like genes in the root stele were observed to decrease after salt stress, while there was an increase in HvSKOR_like gene, indicating that these ion transporters are involved in primary Na<sup>+</sup> /K<sup>+</sup> movement into/out of xylem."	"H2O2 and ABA signaling are responsible for the increased Na+ efflux and water uptake in Gossypium hirsutum L. roots in the non-saline side under non-uniform root zone salinity. Non-uniform root salinity increases the Na(+)efflux, water use, and growth of the root in non-saline side, which may be regulated by some form of signaling induced by the high-salinity side. However, the signaling and its specific function have remained unknown. Using a split-root system to simulate a non-uniform root zone salinity in Gossypium hirsutum L., we showed that the up-regulated expression of sodium efflux-related genes (SOS1, SOS2, PMA1, and PMA2) and water uptake-related genes (PIP1 and PIP2) was possibly involved in the elevated Na(+) efflux and water use in the the roots in the non-saline side. The increased level of indole acetic acid (IAA) in the non-saline side was the likely cause of the increased root growth. Also, the abscisic acid (ABA) and H2O2 contents in roots in the non-saline side increased, possibly due to the increased expression of their key biosynthesis genes, NCED and RBOHC, and the decreased expression of ABA catabolic CYP707A genes. Exogenous ABA added to the non-saline side induced H2O2 generation by up-regulating the RBOHC gene, but this was decreased by exogenous fluridone. Exogenous H2O2 added to the non-saline side reduced the ABA content by down-regulating NCED genes, which can be induced by diphenylene iodonium (DPI) treatment in the non-saline side, suggesting a feedback mechanism between ABA and H2O2.Both exogenous ABA and H2O2 enhanced the expression of SOS1, PIP1;7 ,PIP2;2, and PIP2;10 genes, but these were down-regulated by fluridone and DPI, suggesting that H2O2 and ABA are important signals for increasing root Na(+) efflux and water uptake in the roots in the non-saline side."	"Acute lymphoblastic leukemia in the context of RASopathies. Noonan syndrome is associated with a range of malignancies including acute lymphoblastic leukemia (ALL). However, little information is available regarding the frequency, natural history, characteristics and prognosis of ALL in Noonan syndrome or RASopathies in general. Cross-referencing data from a large prospective cohort of 1176 patients having a molecularly confirmed RASopathy with data from the French childhood cancer registry allowed us to identify ALL in 6 (0.5%) patients including 4/778 (0.5%) with a germline PTPN11 mutation and 2/94 (2.1%) with a germline SOS1 mutation. None of the patients of our series with CFC syndrome (with germline BRAF or MAP2K1/MAP2K2 mutation - n = 121) or Costello syndrome (with HRAS mutation - n = 35) had an ALL. A total of 19 Noonan-ALL were gathered by adding our patients to those of the International Berlin-Munster-Frankfurt (I-BFM) study group and previously reported patients. Strikingly, all Noonan-associated ALL were B-cell precursor ALL, and high hyperdiploidy with more than 50 chromosomes was found in the leukemia cells of 13/17 (76%) patients with available genetics data. Our data suggest that children with Noonan syndrome are at higher risk to develop ALL. Like what is observed for somatic PTPN11 mutations, NS is preferentially associated with the development of hyperdiploid ALL that will usually respond well to chemotherapy. However, Noonan syndrome patients seem to have a propensity to develop post therapy myelodysplasia that can eventually be fatal. Hence, one should be particularly cautious when treating these patients."	"Salt acclimation processes in wheat. Young wheat plants (Triticum aestivum L. cv. Mv Béres) were exposed to 0 or 25 mM NaCl for 11 days (salt acclimation). Thereafter the plants were irrigated with 500 mM NaCl for 5 days (salt stress). Irrigating the plants with a low concentration of NaCl successfully led to a reduction in chlorotic symptoms and in the impairment of the photosynthetic processes when the plants were exposed to subsequent high-dose salt treatment. After exposure to a high concentration of NaCl there was no difference in leaf Na content between the salt-acclimated and non-acclimated plants, indicating that salt acclimation did not significantly modify Na transport to the shoots. While the polyamine level was lower in salt-treated plants than in the control, salt acclimation led to increased osmotic potential in the leaves. Similarly, the activities of certain antioxidant enzymes, namely glutathione reductase, catalase and ascorbate peroxidase, were significantly higher in salt-acclimated plants. The results also suggest that while SOS1, SOS2 or NHX2 do not play a decisive role in the salt acclimation processes in young wheat plants; another stress-related gene, WALI6, may contribute to the success of the salt acclimation processes. The present study suggested that the responses of wheat plants to acclimation with low level of salt and to treatment with high doses of salt may be fundamentally different. "	"Spectrum of mutations and genotype-phenotype analysis in Noonan syndrome patients with RIT1 mutations. RASopathies are autosomal dominant disorders caused by mutations in more than 10 known genes that regulate the RAS/MAPK pathway. Noonan syndrome (NS) is a RASopathy characterized by a distinctive facial appearance, musculoskeletal abnormalities, and congenital heart defects. We have recently identified mutations in RIT1 in patients with NS. To delineate the clinical manifestations in RIT1 mutation-positive patients, we further performed a RIT1 analysis in RASopathy patients and identified 7 RIT1 mutations, including two novel mutations, p.A77S and p.A77T, in 14 of 186 patients. Perinatal abnormalities, including nuchal translucency, fetal hydrops, pleural effusion, or chylothorax and congenital heart defects, are observed in all RIT1 mutation-positive patients. Luciferase assays in NIH 3T3 cells demonstrated that the newly identified RIT1 mutants, including p.A77S and p.A77T, and the previously identified p.F82V, p.T83P, p.Y89H, and p.M90I, enhanced Elk1 transactivation. Genotype-phenotype correlation analyses of previously reported NS patients harboring RIT1, PTPN11, SOS1, RAF1, and KRAS revealed that hypertrophic cardiomyopathy (56 %) was more frequent in patients harboring a RIT1 mutation than in patients harboring PTPN11 (9 %) and SOS1 mutations (10 %). The rates of hypertrophic cardiomyopathy were similar between patients harboring RIT1 mutations and patients harboring RAF1 mutations (75 %). Short stature (52 %) was less prevalent in patients harboring RIT1 mutations than in patients harboring PTPN11 (71 %) and RAF1 (83 %) mutations. These results delineate the clinical manifestations of RIT1 mutation-positive NS patients: high frequencies of hypertrophic cardiomyopathy, atrial septal defects, and pulmonary stenosis; and lower frequencies of ptosis and short stature."	"SOS1 frameshift mutations cause pure mucosal neuroma syndrome, a clinical phenotype distinct from multiple endocrine neoplasia type 2B. Mucosal neuromas, thickened corneal nerves and marfanoid body habitus are characteristic phenotypic features of multiple endocrine neoplasia type 2B (MEN2B) and often provide an early clue to the diagnosis of the syndrome. Rarely, patients present with typical physical features of MEN2B but without associated endocrinopathies (medullary thyroid carcinoma or pheochromocytoma) or a RET gene mutation; this clinical presentation is thought to represent a distinct condition termed 'pure mucosal neuroma syndrome'. Exome sequencing was performed in two unrelated probands with mucosal neuromas, thickened corneal nerves and marfanoid body habitus, but no MEN2B-associated endocrinopathy or RET gene mutation. Sanger sequencing was performed to confirm mutations detected by exome sequencing and to test in family members and 3 additional unrelated index patients with mucosal neuromas or thickened corneal nerves. A heterozygous SOS1 gene frameshift mutation (c.3266dup or c.3248dup) was identified in each proband. Sanger sequencing showed that proband 1 inherited the c.3266dup mutation from his affected mother, while the c.3248dup mutation had arisen de novo in proband 2. Sanger sequencing also identified one further novel SOS1 mutation (c.3254dup) in one of the 3 additional index patients. Our results demonstrate the existence of pure mucosal neuroma syndrome as a clinical entity distinct from MEN2B that can now be diagnosed by genetic testing."	"Coronary artery ectasia in Noonan syndrome: Report of an individual with SOS1 mutation and literature review. Noonan syndrome (NS) is the second most frequent hereditary syndrome with cardiac involvement. Pulmonary valve stenosis and hypertrophic cardiomyopathy are the most prevalent cardiovascular abnormalities. We report on a 14-year-old girl with NS due to SOS1 mutation with pulmonary stenosis and idiopathic coronary ectasia. To the best of our knowledge, this is the first report describing coronary ectasia in a patient with NS secondary to a SOS1 mutation. We include a literature review of this rare association."	"Ky-2, a Histone Deacetylase Inhibitor, Enhances High-Salinity Stress Tolerance in Arabidopsis thaliana. Adaptation to environmental stress requires genome-wide changes in gene expression. Histone modifications are involved in gene regulation, but the role of histone modifications under environmental stress is not well understood. To reveal the relationship between histone modification and environmental stress, we assessed the effects of inhibitors of histone modification enzymes during salinity stress. Treatment with Ky-2, a histone deacetylase inhibitor, enhanced high-salinity stress tolerance in Arabidopsis. We confirmed that Ky-2 possessed inhibition activity towards histone deacetylases by immunoblot analysis. To investigate how Ky-2 improved salt stress tolerance, we performed transcriptome and metabolome analysis. These data showed that the expression of salt-responsive genes and salt stress-related metabolites were increased by Ky-2 treatment under salinity stress. A mutant deficient in AtSOS1(Arabidopis thaliana SALT OVERLY SENSITIVE 1), which encodes an Na(+)/H(+)antiporter and was among the up-regulated genes, lost the salinity stress tolerance conferred by Ky-2. We confirmed that acetylation of histone H4 at AtSOS1 was increased by Ky-2 treatment. Moreover, Ky-2 treatment decreased the intracellular Na(+)accumulation under salinity stress, suggesting that enhancement of SOS1-dependent Na(+)efflux contributes to increased high-salinity stress tolerance caused by Ky-2 treatment."	"New Mutations Associated with Rasopathies in a Central European Population and Genotype-Phenotype Correlations. We performed the genetic analysis of Rasopathy syndromes in patients from Central European by direct sequencing followed by next generation sequencing of genes associated with Rasopathies. All 51 patients harboured the typical features of Rasopathy syndromes. Thirty-five mutations were identified in the examined patients (22 in PTPN11, two in SOS1, one in RIT1, one in SHOC2, two in HRAS, three in BRAF, two in MAP2K1 and two in the NF1 gene). Two of them (p.Gly392Glu in the BRAF gene and p.Gln164Lys in the MAP2K1 gene) were novel with a potentially pathogenic effect on the structure of these proteins. Statistically significant differences in the presence of pulmonary stenosis (63.64% vs. 23.81%, P = 0.013897) and cryptorchidism (76.47% vs. 30%, P = 0.040224) were identified as the result of comparison of the prevalence of phenotypic features in patients with the phenotype of Noonan syndrome and mutation in the PTPN11 gene, with the prevalence of the same features in patients without PTPN11 mutation. Cryptorchidism as a statistically significant feature in our patients with PTPN11 mutation was not reported as significant in other European countries (Germany, Italy and Greece). The majority of mutations were clustered in exons 3 (45.45%), 8 (22.73%), and 13 (22.73%) of the PTPN11 gene. "	"Nax loci affect SOS1-like Na+/H+ exchanger expression and activity in wheat. Salinity stress tolerance in durum wheat is strongly associated with a plant's ability to control Na(+) delivery to the shoot. Two loci, termed Nax1 and Nax2, were recently identified as being critical for this process and the sodium transporters HKT1;4 and HKT1;5 were identified as the respective candidate genes. These transporters retrieve Na(+) from the xylem, thus limiting the rates of Na(+) transport from the root to the shoot. In this work, we show that the Nax loci also affect activity and expression levels of the SOS1-like Na(+)/H(+) exchanger in both root cortical and stelar tissues. Net Na(+) efflux measured in isolated steles from salt-treated plants, using the non-invasive ion flux measuring MIFE technique, decreased in the sequence: Tamaroi (parental line)&gt;Nax1=Nax2&gt;Nax1:Nax2 lines. This efflux was sensitive to amiloride (a known inhibitor of the Na(+)/H(+) exchanger) and was mirrored by net H(+) flux changes. TdSOS1 relative transcript levels were 6-10-fold lower in Nax lines compared with Tamaroi. Thus, it appears that Nax loci confer two highly complementary mechanisms, both of which contribute towards reducing the xylem Na(+) content. One enhances the retrieval of Na(+) back into the root stele via HKT1;4 or HKT1;5, whilst the other reduces the rate of Na(+) loading into the xylem via SOS1. It is suggested that such duality plays an important adaptive role with greater versatility for responding to a changing environment and controlling Na(+) delivery to the shoot. "	"Salinity tolerance in plants. Quantitative approach to ion transport starting from halophytes and stepping to genetic and protein engineering for manipulating ion fluxes. Ion transport is the fundamental factor determining salinity tolerance in plants. The Review starts from differences in ion transport between salt tolerant halophytes and salt-sensitive plants with an emphasis on transport of potassium and sodium via plasma membranes. The comparison provides introductory information for increasing salinity tolerance. Effects of salt stress on ion transport properties of membranes show huge opportunities for manipulating ion fluxes. Further steps require knowledge about mechanisms of ion transport and individual genes of ion transport proteins. Initially, the Review describes methods to measure ion fluxes, the independent set of techniques ensures robust and reliable basement for quantitative approach. The Review briefly summarizes current data concerning Na(+) and K(+) concentrations in cells, refers to primary thermodynamics of ion transport and gives special attention to individual ion channels and transporters. Simplified scheme of a plant cell with known transport systems at the plasma membrane and tonoplast helps to imagine the complexity of ion transport and allows choosing specific transporters for modulating ion transport. The complexity is enhanced by the influence of cell size and cell wall on ion transport. Special attention is given to ion transporters and to potassium and sodium transport by HKT, HAK, NHX, and SOS1 proteins. Comparison between non-selective cation channels and ion transporters reveals potential importance of ion transporters and the balance between the two pathways of ion transport. Further on the Review describes in detail several successful attempts to overexpress or knockout ion transporters for changing salinity tolerance. Future perspectives are questioned with more attention given to promising candidate ion channels and transporters for altered expression. Potential direction of increasing salinity tolerance by modifying ion channels and transporters using single point mutations is discussed and questioned. An alternative approach from synthetic biology is to create new regulation networks using novel transport proteins with desired properties for transforming agricultural crops. The approach had not been widely used earlier; it leads also to theoretical and pure scientific aspects of protein chemistry, structure-function relations of membrane proteins, systems biology and physiology of stress and ion homeostasis. Summarizing, several potential ways are aimed at required increase in salinity tolerance of plants of interest. "	"Impairment of PI3K/AKT and WNT/β-catenin pathways in bone marrow mesenchymal stem cells isolated from patients with myelodysplastic syndromes. Bone marrow mesenchymal stem cells (BM-MSCs) exhibit multiple abnormalities in myelodysplastic syndromes (MDS), including impaired proliferative and clonogenic capacity, altered morphology, increased senescence, impaired immunoregulatory properties, and reduced hematopoietic support capacity. Common signaling pathways, such as PI3K/AKT and WNT/β-catenin, regulate multiple MSC properties, including proliferation, differentiation, and cell-cell interaction. Here, with polymerase chain reaction arrays, we investigated the expression of 84 genes belonging to the PI3K/AKT signaling pathways in BM-MSCs isolated from patients with MDS, acute myeloid leukemia, and therapy-related myeloid neoplasms, using as a control BM-MSCs isolated from patients with untreated early-stage lymphomas without BM involvement. Statistically significant downregulation of GSK3β, SOS1, RASA1, and MTCP1 gene expression was observed in BM-MSCs isolated from patients with de novo MDS, as compared with controls. Moreover, expression of the GSK3β protein was reduced in MDS-derived MSCs, and was associated with concomitant reduction of phosphorylation at Ser-9. The role of GSK3β in the downstream WNT/β-catenin signaling pathway was assessed. We investigated β-catenin protein levels and expression of 84 genes belonging to the WNT target gene pathway using PCR arrays in MDS BM-MSCs, as compared with control BM-MSCs. GSK3β impairment translated into decreased β-catenin protein levels and downregulation of several WNT/β-catenin target genes (SOX9, EGR1, WISP1). These findings suggest that deregulation of genes involved in the PI3K/AKT and WNT signaling pathways may contribute to the phenotypical abnormalities of MDS BM-MSCs. "	"Sleeping Beauty transposon screen identifies signaling modules that cooperate with STAT5 activation to induce B-cell acute lymphoblastic leukemia. Signal transducer and activator of transcription 5 (STAT5) activation occurs frequently in human progenitor B-cell acute lymphoblastic leukemia (B-ALL). To identify gene alterations that cooperate with STAT5 activation to initiate leukemia, we crossed mice expressing a constitutively active form of STAT5 (Stat5b-CA) with mice in which a mutagenic Sleeping Beauty transposon (T2/Onc) was mobilized only in B cells. Stat5b-CA mice typically do not develop B-ALL (&lt;2% penetrance); in contrast, 89% of Stat5b-CA mice in which the T2/Onc transposon had been mobilized died of B-ALL by 3 months of age. High-throughput sequencing approaches were used to identify genes frequently targeted by the T2/Onc transposon; these included Sos1 (74%), Kdm2a (35%), Jak1 (26%), Bmi1 (19%), Prdm14 or Ncoa2 (13%), Cdkn2a (10%), Ikzf1 (8%), Caap1 (6%) and Klf3 (6%). Collectively, these mutations target three major cellular processes: (i) the Janus kinase/STAT5 pathway (ii) progenitor B-cell differentiation and (iii) the CDKN2A tumor-suppressor pathway. Transposon insertions typically resulted in altered expression of these genes, as well as downstream pathways including STAT5, extracellular signal-regulated kinase (Erk) and p38. Importantly, expression of Sos1 and Kdm2a, and activation of p38, correlated with survival, further underscoring the role these genes and associated pathways have in B-ALL."	"Mutation in NRAS in familial Noonan syndrome--case report and review of the literature. Noonan syndrome (NS), a heterogeneous developmental disorder associated with variable clinical expression including short stature, congenital heart defect, unusual pectus deformity and typical facial features, is caused by activating mutations in genes involved in the RAS-MAPK signaling pathway. Here, we present a clinical and molecular characterization of a small family with Noonan syndrome. Comprehensive mutation analysis of NF1, PTPN11, SOS1, CBL, BRAF, RAF1, SHOC2, MAP2K2, MAP2K1, SPRED1, NRAS, HRAS and KRAS was performed using targeted next-generation sequencing. The result revealed a recurrent mutation in NRAS, c.179G &gt; A (p.G60E), in the index patient. This mutation was inherited from the index patient's father, who also showed signs of NS. We describe clinical features in this family and review the literature for genotype-phenotype correlations for NS patients with mutations in NRAS. Neither of affected individuals in this family presented with juvenile myelomonocytic leukemia (JMML), which together with previously published results suggest that the risk for NS individuals with a germline NRAS mutation developing JMML is not different from the proportion seen in other NS cases. Interestingly, 50% of NS individuals with an NRAS mutation (including our family) present with lentigines and/or Café-au-lait spots. This demonstrates a predisposition to hyperpigmented lesions in NRAS-positive NS individuals. In addition, the affected father in our family presented with a hearing deficit since birth, which together with lentigines are two characteristics of NS with multiple lentigines (previously LEOPARD syndrome), supporting the difficulties in diagnosing individuals with RASopathies correctly. The clinical and genetic heterogeneity observed in RASopathies is a challenge for genetic testing. However, next-generation sequencing technology, which allows screening of a large number of genes simultaneously, will facilitate an early and accurate diagnosis of patients with RASopathies."	"Sos1 Regulates Macrophage Podosome Assembly and Macrophage Invasive Capacity. Podosomes are protrusive structures implicated in macrophage extracellular matrix degradation and three-dimensional migration through cell barriers and the interstitium. Podosome formation and assembly are regulated by cytoskeleton remodeling requiring cytoplasmic tyrosine kinases of the Src and the Abl families. Considering that Abl has been reported to phosphorylate the guanine nucleotide exchange factor Sos1, eliciting its Rac-guanine nucleotide exchange factor activity, and Rac regulates podosome formation in myeloid cells and invadopodia formation in cancer cells, we addressed whether Sos1 is implicated in podosome formation and function in macrophages. We found that ectopically expressed Abl or the Src kinase Fgr phosphorylate Sos1, and the Src kinases Hck and Fgr are required for Abl and Sos1 phosphorylation and Abl/Sos1 interaction in macrophages. Sos1 localizes to podosomes in both murine and human macrophages, and its silencing by small interfering RNA results in disassembly of murine macrophage podosomes and a marked reduction of GTP loading on Rac. Matrix degradative capacity, three-dimensional migration through Matrigel, and transmigration through an endothelial cell monolayer of Sos1-silenced macrophages were inhibited. In addition, Sos1- or Abl-silenced macrophages, or macrophages treated with the selective Abl inhibitor imatinib mesylate had a reduced capability to migrate into breast tumor spheroids, the majority of cells remaining at the margin and the outer layers of the spheroid itself. Because of the established role of Src and Abl kinases to regulate also invadopodia formation in cancer cells, our findings suggest that targeting the Src/Abl/Sos1/Rac pathway may represent a double-edged sword to control both cancer-invasive capacities and cancer-related inflammation. "	"Crosstalk Between MAPK/ERK and PI3K/AKT Signal Pathways During Brain Ischemia/Reperfusion. The epidermal growth factor receptor (EGFR) is linked to the phosphatidylinositol 3-kinase (PI3K)/protein kinase B (AKT) and Raf/mitogen-activated protein kinase (MAPK)/extracellular signal-regulated kinase (ERK1/2) signaling pathways. During brain ischemia/reperfusion, EGFR could be transactivated, which stimulates these intracellular signaling cascades that either protect cells or potentiate cell injury. In the present study, we investigated the activation of EGFR, PI3K/AKT, and Raf/MAPK/ERK1/2 during ischemia or reperfusion of the brain using the middle cerebral artery occlusion model. We found that EGFR was phosphorylated and transactivated during both ischemia and reperfusion periods. During ischemia, the activity of PI3K/AKT pathway was significantly increased, as judged from the strong phosphorylation of AKT; this activation was suppressed by the inhibitors of EGFR and Zn-dependent metalloproteinase. Ischemia, however, did not induce ERK1/2 phosphorylation, which was dependent on reperfusion. Coimmunoprecipitation of Son of sevenless 1 (SOS1) with EGFR showed increased association between the receptor and SOS1 in ischemia, indicating the inhibitory node downstream of SOS1. The inhibitory phosphorylation site of Raf-1 at Ser259, but not its stimulatory phosphorylation site at Ser338, was phosphorylated during ischemia. Furthermore, ischemia prompted the interaction between Raf-1 and AKT, while both the inhibitors of PI3K and AKT not only abolished AKT phosphorylation but also restored ERK1/2 phosphorylation. All these findings suggest that Raf/MAPK/ERK1/2 signal pathway is inhibited by AKT via direct phosphorylation and inhibition at Raf-1 node during ischemia. During reperfusion, we observed a significant increase of ERK1/2 phosphorylation but no change in AKT phosphorylation. Inhibitors of reactive oxygen species and phosphatase and tensin homolog restored AKT phosphorylation but abolished ERK1/2 phosphorylation, suggesting that the reactive oxygen species-dependent increase in phosphatase and tensin homolog activity in reperfusion period relieves ERK1/2 from inhibition of AKT. "	"Suppression of the migration and invasion is mediated by triptolide in B16F10 mouse melanoma cells through the NF-kappaB-dependent pathway. Melanoma cancer is one of the major causes of death in humans worldwide. Triptolide is one of the active components of Tripterygium wilfordii Hook F, and has biological activities including induced cell cycle arrest and induction of apoptosis but its antimetastatic effects on murine melanoma cells have not yet been elucidated. Herein, we investigated the effect of triptolide on the inhibition of migration and invasion and possible associated signal pathways in B16F10 murine melanoma cancer cells. Wound healing assay and Matrigel Cell Migration Assay and Invasion System demonstrated that triptolide marked inhibiting the migration and invasion of B16F10 cells. Gelatin zymography assay demonstrated that triptolide significantly inhibited the activities of matrix metalloproteinases-2 (MMP-2). Western blotting showed that triptolide markedly reduced CXCR4, SOS1, GRB2, p-ERK, FAK, p-AKT, Rho A, p-JNK, NF-κB, MMP-9, and MMP-2 but increased PI3K and p-p38 and COX2 after compared to the untreated (control) cells. Real time PCR indicated that triptolide inhibited the gene expression of MMP-2, FAK, ROCK-1, and NF-κB but did not significantly affect TIMP-1 and -2 gene expression in B16F10 cells in vitro. EMSA assay also showed that triptolide inhibited NF-κB DNA binding in a dose-dependent manner. Confocal laser microscopy examination also confirmed that triptolide inhibited the expression of NF-κB in B16F10 cells. Taken together, we suggest that triptolide inhibited B16F10 cell migration and invasion via the inhibition of NF-κB expression then led to suppress MMP-2 and -9 expressions. © 2015 Wiley Periodicals, Inc. Environ Toxicol 31: 1974-1984, 2016."	"PEITC inhibits human brain glioblastoma GBM 8401 cell migration and invasion through the inhibition of uPA, Rho A, and Ras with inhibition of MMP-2, -7 and -9 gene expression. Glioblastoma is the most aggressive primary brain malignancy, and the efficacy of multimodality treatments remains unsatisfactory. Phenethyl isothiocyanate (PEITC), one member of the isothiocyanate family, was found to inhibit the migration and invasion of many types of human cancer cells. In our previous study, PEITC induced the apoptosis of human brain glioblastoma GBM 8401 cells through the extrinsic and intrinsic signaling pathways. In the present study, we first investigated the effects of PEITC on the migration and invasion of GBM 8401 cells. PEITC decreased the migration of GBM 8401 cells in a dose-dependent manner as determined from scratch wound healing and Transwell migration assays. The percentage of inhibition ranged from 46.89 to 15.75%, and from 27.80 to 7.31% after a 48-h treatment of PEITC as determined from the Transwell migration assay and invasion assay, respectively. The western blot analysis indicated that PEITC decreased the levels of proteins associated with migration and invasion, Ras, uPA, RhoA, GRB2, p-p38, p-JNK, p-ERK, p65, SOS1, MMP-2, MMP-9 and MMP-13, in a dose-dependent manner. Real-time PCR analyses revealed that PEITC reduced the mRNA levels of MMP-2, MMP-7, MMP-9 and RhoA in a dose- and time-dependent manner. PEITC exhibited potent anticancer activities through the inhibition of migration and invasion in the GBM 8401 cells. Our findings elucidate the possible molecular mechanisms and signaling pathways of the anti-metastatic effects of PEITC on human brain glioblastoma cells, and PEITC may be considered as a therapeutic agent. "	"Salt intolerance in Arabidopsis: shoot and root sodium toxicity, and inhibition by sodium-plus-potassium overaccumulation. Arabidopsis plants in NaCl suffering half growth inhibition do not suffer osmotic stress and seldom shoot Na (+) toxicity; overaccumulation of Na (+) plus K (+) might trigger the inhibition. It is widely assumed that salinity inhibits plant growth by osmotic stress and shoot Na(+) toxicity. This study aims to examine the growth inhibition of Arabidopsis thaliana by NaCl concentrations that allow the completion of the life cycle. Unaffected Col-0 wild-type plants were used to define nontoxic Na(+) contents; Na(+) toxicities in shoots and roots were analyzed in hkt1 and sos1 mutants, respectively. The growth inhibition of Col-0 plants at 40 mM Na(+) was mild and equivalent to that produced by 8 and 4 mM Na(+) in hkt1 and sos1 plants, respectively. Therefore, these mutants allowed to study the toxicity of Na(+) in the absence of an osmotic challenge. Col-0 and Ts-1 accessions showed very different Na(+) contents but similar growth inhibitions; Ts-1 plants showed very high leaf Na(+) contents but no symptoms of Na(+) toxicity. Ak-1, C24, and Fei-0 plants were highly affected by NaCl showing evident symptoms of shoot Na(+) toxicity. Increasing K(+) in isotonic NaCl/KCl combinations dramatically decreased the Na(+) content in all Arabidopsis accessions and eliminated the signs of Na(+) toxicity in most of them but did not relieve growth inhibition. This suggested that the dominant inhibition in these conditions was either osmotic or of an ionic nature unspecific for Na(+) or K(+). Col-0 and Ts-1 plants growing in sorbitol showed a clear osmotic stress characterized by a notable decrease of their water content, but this response did not occur in NaCl. Overaccumulation of Na(+) plus K(+) might trigger growth reduction in NaCl-treated plants."	"SpAHA1 and SpSOS1 Coordinate in Transgenic Yeast to Improve Salt Tolerance. In plant cells, the plasma membrane Na+/H+ antiporter SOS1 (salt overly sensitive 1) mediates Na+ extrusion using the proton gradient generated by plasma membrane H+-ATPases, and these two proteins are key plant halotolerance factors. In the present study, two genes from Sesuvium portulacastrum, encoding plasma membrane Na+/H+ antiporter (SpSOS1) and H+-ATPase (SpAHA1), were cloned. Localization of each protein was studied in tobacco cells, and their functions were analyzed in yeast cells. Both SpSOS1 and SpAHA1 are plasma membrane-bound proteins. Real-time polymerase chain reaction (PCR) analyses showed that SpSOS1 and SpAHA1 were induced by salinity, and their expression patterns in roots under salinity were similar. Compared with untransformed yeast cells, SpSOS1 increased the salt tolerance of transgenic yeast by decreasing the Na+ content. The Na+/H+ exchange activity at plasma membrane vesicles was higher in SpSOS1-transgenic yeast than in the untransformed strain. No change was observed in the salt tolerance of yeast cells expressing SpAHA1 alone; however, in yeast transformed with both SpSOS1 and SpAHA1, SpAHA1 generated an increased proton gradient that stimulated the Na+/H+ exchange activity of SpSOS1. In this scenario, more Na+ ions were transported out of cells, and the yeast cells co-expressing SpSOS1 and SpAHA1 grew better than the cells transformed with only SpSOS1 or SpAHA1. These findings demonstrate that the plasma membrane Na+/H+ antiporter SpSOS1 and H+-ATPase SpAHA1 can function in coordination. These results provide a reference for developing more salt-tolerant crops via co-transformation with the plasma membrane Na+/H+ antiporter and H+-ATPase. "	"Growth Factor FGF2 Cooperates with Interleukin-17 to Repair Intestinal Epithelial Damage. The intestinal epithelial barrier plays a critical role in the mucosal immunity. However, it remains largely unknown how the epithelial barrier is maintained after damage. Here we show that growth factor FGF2 synergized with interleukin-17 (IL-17) to induce genes for repairing of damaged epithelium. FGF2 or IL-17 deficiency resulted in impaired epithelial proliferation, increased pro-inflammatory microbiota outgrowth, and consequently worse pathology in a DSS-induced colitis model. The dysregulated microbiota in the model induced transforming growth factor beta 1 (TGFβ1) expression, which in turn induced FGF2 expression mainly in regulatory T cells. Act1, an essential adaptor in IL-17 signaling, suppressed FGF2-induced ERK activation through binding to adaptor molecule GRB2 to interfere with its association with guanine nucleotide exchange factor SOS1. Act1 preferentially bound to IL-17 receptor complex, releasing its suppressive effect on FGF2 signaling. Thus, microbiota-driven FGF2 and IL-17 cooperate to repair the damaged intestinal epithelium through Act1-mediated direct signaling cross-talk. "	"Sodium efflux in plant roots: what do we really know? The efflux of sodium (Na(+)) ions across the plasma membrane of plant root cells into the external medium is surprisingly poorly understood. Nevertheless, Na(+) efflux is widely regarded as a major mechanism by which plants restrain the rise of Na(+) concentrations in the cytosolic compartments of root cells and, thus, achieve a degree of tolerance to saline environments. In this review, several key ideas and bodies of evidence concerning root Na(+) efflux are summarized with a critical eye. Findings from decades past are brought to bear on current thinking, and pivotal studies are discussed, both &quot;purely physiological&quot;, and also with regard to the SOS1 protein, the only major Na(+) efflux transporter that has, to date, been genetically characterized. We find that the current model of rapid transmembrane sodium cycling (RTSC), across the plasma membrane of root cells, is not adequately supported by evidence from the majority of efflux studies. An alternative hypothesis cannot be ruled out, that most Na(+) tracer efflux from the root in the salinity range does not proceed across the plasma membrane, but through the apoplast. Support for this idea comes from studies showing that Na(+) efflux, when measured with tracers, is rarely affected by the presence of inhibitors or the ionic composition in saline rooting media. We conclude that the actual efflux of Na(+) across the plasma membrane of root cells may be much more modest than what is often reported in studies using tracers, and may predominantly occur in the root tips, where SOS1 expression has been localized. "	"Unexpected insights for anti-EGFR cancer therapy. NA"	"Co-occurrence of hypertrophic cardiomyopathy and myeloproliferative disorder in a neonate with Noonan syndrome carrying Thr73Ile mutation in PTPN11. Most cases of Noonan syndrome (NS) result from mutations in one of the RAS-MAPK signaling genes, including PTPN11, SOS1, KRAS, NRAS, RAF1, BRAF, SHOC2, MEK1 (MAP2K1), and CBL. Cardiovascular diseases of varying severity, such as pulmonary stenosis and hypertrophic cardiomyopathy (HCM), are common in NS patients. RAF1 mutations are most frequent in NS with HCM, while PTPN11 mutations are also well known. Thr73Ile is a gain-of-function mutation of PTPN11, which has been highly associated with juvenile myelomonocytic leukemia and NS/myeloproliferative disease (MPD), but has not previously been reported in HCM. Here, we report a Japanese female infant with NS carrying the PTPN11 T73I mutation with NS/MPD, complete atrio-ventricular septal defect, and rapidly progressive HCM. No other HCM-related mutations were detected in PTPN11, RAF1, KRAS, BRAF, and SHOC2. This patient provides additional information regarding the genotype-phenotype correlation for PTPN11 T73I mutation in NS."	"Severe developmental delay and complete agenesis of corpus callosum in a Noonan syndrome patient with SOS1 mutation. NA"	"Increasing cyclic electron flow is related to Na+ sequestration into vacuoles for salt tolerance in soybean. In land plants, the NAD(P)H dehydrogenase (NDH) complex reduces plastoquinones and drives cyclic electron flow (CEF) around PSI. It also produces extra ATP for photosynthesis and improves plant fitness under conditions of abiotic environmental stress. To elucidate the role of CEF in salt tolerance of the photosynthetic apparatus, Na(+) concentration, chlorophyll fluorescence, and expression of NDH B and H subunits, as well as of genes related to cellular and vacuolar Na(+) transport, were monitored. The salt-tolerant Glycine max (soybean) variety S111-9 exhibited much higher CEF activity and ATP accumulation in light than did the salt-sensitive variety Melrose, but similar leaf Na(+) concentrations under salt stress. In S111-9 plants, ndhB and ndhH were highly up-regulated under salt stress and their corresponding proteins were maintained at high levels or increased significantly. Under salt stress, S111-9 plants accumulated Na(+) in the vacuole, but Melrose plants accumulated Na(+) in the chloroplast. Compared with Melrose, S111-9 plants also showed higher expression of some genes associated with Na(+) transport into the vacuole and/or cell, such as genes encoding components of the CBL10 (calcineurin B-like protein 10)-CIPK24 (CBL-interacting protein kinase 24)-NHX (Na(+)/H(+) antiporter) and CBL4 (calcineurin B-like protein 4)-CIPK24-SOS1 (salt overly sensitive 1) complexes. Based on the findings, it is proposed that enhanced NDH-dependent CEF supplies extra ATP used to sequester Na(+) in the vacuole. This reveals an important mechanism for salt tolerance in soybean and provides new insights into plant resistance to salt stress. "	"Interaction of a novel fluorescent GTP analogue with the small G-protein K-Ras. A novel fluorescent guanosine 5'-triphosphate (GTP) analogue, 2'(3')-O-{6-(N-(7-nitrobenz-2-oxa-l,3-diazol-4-yl)amino) hexanoic}-GTP (NBD-GTP), was synthesized and utilized to monitor the effect of mutations in the functional region of mouse K-Ras. The effects of the G12S, A59T and G12S/A59T mutations on GTPase activity, nucleotide exchange rates were compared with normal Ras. Mutation at A59T resulted in reduction of the GTPase activity by 0.6-fold and enhancement of the nucleotide exchange rate by 2-fold compared with normal Ras. On the other hand, mutation at G12S only slightly affected the nucleotide exchange rate and did not affect the GTPase activity. We also used NBD-GTP to study the effect of these mutations on the interaction between Ras and SOS1, a guanine nucleotide exchange factor. The mutation at A59T abolished the interaction with SOS1. The results suggest that the fluorescent GTP analogue, NBD-GTP, is applicable to the kinetic studies for small G-proteins. "	"Activating Mutations Affecting the Dbl Homology Domain of SOS2 Cause Noonan Syndrome. The RASopathies constitute a family of autosomal-dominant disorders whose major features include facial dysmorphism, cardiac defects, reduced postnatal growth, variable cognitive deficits, ectodermal and skeletal anomalies, and susceptibility to certain malignancies. Noonan syndrome (NS), the commonest RASopathy, is genetically heterogeneous and caused by functional dysregulation of signal transducers and regulatory proteins with roles in the RAS/extracellular signal-regulated kinase (ERK) signal transduction pathway. Mutations in known disease genes account for approximately 80% of affected individuals. Here, we report that missense mutations altering Son of Sevenless, Drosophila, homolog 2 (SOS2), which encodes a RAS guanine nucleotide exchange factor, occur in a small percentage of subjects with NS. Four missense mutations were identified in five unrelated sporadic cases and families transmitting NS. Disease-causing mutations affected three conserved residues located in the Dbl homology (DH) domain, of which two are directly involved in the intramolecular binding network maintaining SOS2 in its autoinhibited conformation. All mutations were found to promote enhanced signaling from RAS to ERK. Similar to NS-causing SOS1 mutations, the phenotype associated with SOS2 defects is characterized by normal development and growth, as well as marked ectodermal involvement. Unlike SOS1 mutations, however, those in SOS2 are restricted to the DH domain. "	"Regions outside of conserved PxxPxR motifs drive the high affinity interaction of GRB2 with SH3 domain ligands. SH3 domains are evolutionarily conserved protein interaction domains that control nearly all cellular processes in eukaryotes. The current model is that most SH3 domains bind discreet PxxPxR motifs with weak affinity and relatively low selectivity. However, the interactions of full-length SH3 domain-containing proteins with ligands are highly specific and have much stronger affinity. This suggests that regions outside of PxxPxR motifs drive these interactions. In this study, we observed that PxxPxR motifs were required for the binding of the adaptor protein GRB2 to short peptides from its ligand SOS1. Surprisingly, PxxPxR motifs from the proline rich region of SOS1 or CBL were neither necessary nor sufficient for the in vitro or in vivo interaction with full-length GRB2. Together, our findings show that regions outside of the consensus PxxPxR sites drive the high affinity association of GRB2 with SH3 domain ligands, suggesting that the binding mechanism for this and other SH3 domain interactions may be more complex than originally thought. "	"Genome-wide association study of corticobasal degeneration identifies risk variants shared with progressive supranuclear palsy. Corticobasal degeneration (CBD) is a neurodegenerative disorder affecting movement and cognition, definitively diagnosed only at autopsy. Here, we conduct a genome-wide association study (GWAS) in CBD cases (n=152) and 3,311 controls, and 67 CBD cases and 439 controls in a replication stage. Associations with meta-analysis were 17q21 at MAPT (P=1.42 × 10(-12)), 8p12 at lnc-KIF13B-1, a long non-coding RNA (rs643472; P=3.41 × 10(-8)), and 2p22 at SOS1 (rs963731; P=1.76 × 10(-7)). Testing for association of CBD with top progressive supranuclear palsy (PSP) GWAS single-nucleotide polymorphisms (SNPs) identified associations at MOBP (3p22; rs1768208; P=2.07 × 10(-7)) and MAPT H1c (17q21; rs242557; P=7.91 × 10(-6)). We previously reported SNP/transcript level associations with rs8070723/MAPT, rs242557/MAPT, and rs1768208/MOBP and herein identified association with rs963731/SOS1. We identify new CBD susceptibility loci and show that CBD and PSP share a genetic risk factor other than MAPT at 3p22 MOBP (myelin-associated oligodendrocyte basic protein). "	"Arabidopsis AINTEGUMENTA mediates salt tolerance by trans-repressing SCABP8. The Arabidopsis AINTEGUMENTA (ANT) gene, which encodes an APETALA2 (AP2)-like transcription factor, controls plant organ cell number and organ size throughout shoot development. ANT is thus a key factor in the development of plant shoots. Here, we have found that ANT plays an essential role in conferring salt tolerance in Arabidopsis. ant-knockout mutants presented a salt-tolerant phenotype, whereas transgenic plants expressing ANT under the 35S promoter (35S:ANT) exhibited more sensitive phenotypes under high salt stress. Further analysis indicated that ANT functions mainly in the shoot response to salt toxicity. Target gene analysis revealed that ANT bound to the promoter of SOS3-LIKE CALCIUM BINDING PROTEIN 8 (SCABP8), which encodes a putative Ca(2+) sensor, thereby inhibiting expression of SCABP8 (also known as CBL10). It has been reported that the salt sensitivity of scabp8 is more prominent in shoot tissues. Genetic experiments indicated that the mutation of SCABP8 suppresses the ant-knockout salt-tolerant phenotype, implying that ANT functions as a negative transcriptional regulator of SCABP8 upon salt stress. Taken together, the above results reveal that ANT is a novel regulator of salt stress and that ANT binds to the SCABP8 promoter, mediating salt tolerance."	"RasGRP1 opposes proliferative EGFR-SOS1-Ras signals and restricts intestinal epithelial cell growth. The character of EGFR signals can influence cell fate but mechanistic insights into intestinal EGFR-Ras signalling are limited. Here we show that two distinct Ras nucleotide exchange factors, RasGRP1 and SOS1, lie downstream of EGFR but act in functional opposition. RasGRP1 is expressed in intestinal crypts where it restricts epithelial growth. High RasGRP1 expression in colorectal cancer (CRC) patient samples correlates with a better clinical outcome. Biochemically, we find that RasGRP1 creates a negative feedback loop that limits proliferative EGFR-SOS1-Ras signals in CRC cells. Genetic Rasgrp1 depletion from mice with either an activating mutation in KRas or with aberrant Wnt signalling due to a mutation in Apc resulted in both cases in exacerbated Ras-ERK signalling and cell proliferation. The unexpected opposing cell biological effects of EGFR-RasGRP1 and EGFR-SOS1 signals in the same cell shed light on the intricacy of EGFR-Ras signalling in normal epithelium and carcinoma. "	"Ion homeostasis in a salt-secreting halophytic grass. Salinity adversely affects plant growth and development, and disturbs intracellular ion homeostasis, resulting in cellular toxicity. Plants that tolerate salinity, halophytes, do so by manifesting numerous physiological and biochemical processes in coordination to alleviate cellular ionic imbalance. The present study was undertaken to analyse the salt tolerance mechanism in Aeluropus lagopoides (L.) trin. Ex Thw. (Poaceae) at both physiological and molecular levels. Plants secreted salt from glands, which eventually produced pristine salt crystals on leaves and leaf sheaths. The rate of salt secretion increased with increasing salt concentration in the growth medium. Osmotic adjustment was mainly achieved by inorganic osmolytes (Na(+)) and at 100 mM NaCl no change was observed in organic osmolytes in comparison to control plants. At 300 mM NaCl and with 150 mM NaCl + 150 mM KCl, the concentration of proline, soluble sugars and amino acids was significantly increased. Transcript profiling of transporter genes revealed differential spatial and temporal expressions in both shoot and root tissues in a manner synchronized towards maintaining ion homeostasis. In shoots, AlHKT2;1 transcript up-regulation was observed at 12 and 24 h in all the treatments, whereas in roots, maximum induction was observed at 48 h with K(+) starvation. The HAK transcript was relatively abundant in shoot tissue with all the treatments. The plasma membrane Na(+)/H(+) antiporter, SOS1, and tonoplast Na(+)/H(+) antiporter, NHX1, were found to be significantly up-regulated in shoot tissue. Our data demonstrate that AlHKT2;1, HAK, SOS1, NHX1 and V-ATPase genes play a pivotal role in regulating the ion homeostasis in A. lagopoides. "	"Nuclear EGFR impairs ASPP2-p53 complex-induced apoptosis by inducing SOS1 expression in hepatocellular carcinoma. ASPP2 can bind to p53 and enhance the apoptotic capabilities of p53 by guiding it to the promoters of pro-apoptotic genes. Here, ASPP2 overexpression for 24 hours transiently induced apoptosis in hepatoma cells by enhancing the transactivation of p53 on pro-apoptotic gene promoters. However, long-term ASPP2 overexpression (more than 48 hours) failed to induce apoptosis because p53 was released from the pro-apoptotic gene promoters. In non-apoptotic cells, nuclear EGFR induced SOS1 expression by directly binding to the SOS1 promoter. SOS1 activated the HRAS/PI3K/AKT pathway and resulted in nuclear translocation of p-AKT and Bcl-2. The interaction between p-AKT and ASPP2 facilitates Bcl-2 binding to p53, which releases p53 from the pro-apoptotic gene promoters. The in vivo assay demonstrated that EGFR/SOS1-promoted growth of nuclear p-AKT+, Bcl-2+ cells results in the resistance of hepatoma cells to ASPP2-p53 complex-induced apoptosis and that blocking nuclear translocation of EGFR dramatically improves and enhances the pro-apoptotic function of ASPP2. Finally, the activation of the HRAS/PI3K/AKT pathway by EGFR-induced SOS1 also inhibits cisplatin-induced apoptosis, suggesting a common apoptosis-evasion mechanism in hepatoma cells. Because evasion of apoptosis contributes to treatment resistance in hepatoma, our results also support further investigation of combined therapeutic blockade of EGFR and SOS1."	"Absence of both Sos-1 and Sos-2 in peripheral CD4(+) T cells leads to PI3K pathway activation and defects in migration. Sos-1 and Sos-2 are ubiquitously expressed Ras-guanine exchange factors involved in Erk-MAP kinase pathway activation. Using mice lacking genes encoding Sos-1 and Sos-2, we evaluated the role of these proteins in peripheral T-cell signaling and function. Our results confirmed that TCR-mediated Erk activation in peripheral CD4(+) T cells does not depend on Sos-1 and Sos-2, although IL-2-mediated Erk activation does. Unexpectedly, however, we show an increase in AKT phosphorylation in Sos-1/2dKO CD4(+) T cells upon TCR and IL-2 stimulation. Activation of AKT was likely a consequence of increased recruitment of PI3K to Grb2 upon TCR and/or IL-2 stimulation in Sos-1/2dKO CD4(+) T cells. The increased activity of the PI3K/AKT pathway led to downregulation of the surface receptor CD62L in Sos-1/2dKO T cells and a subsequent impairment in T-cell migration."	"De Novo Assembly and Characterization of Stress Transcriptome in a Salinity-Tolerant Variety CS52 of Brassica juncea. Oilseed mustard, Brassica juncea, exhibits high levels of genetic variability for salinity tolerance. To obtain the global view of transcriptome and investigate the molecular basis of salinity tolerance in a salt-tolerant variety CS52 of B. juncea, we performed transcriptome sequencing of control and salt-stressed seedlings. De novo assembly of 184 million high-quality paired-end reads yielded 42,327 unique transcripts longer than 300 bp with RPKM ≥1. When compared with non-redundant proteins, we could annotate 67% unigenes obtained in our study. Based on the mapping to expressed sequence tags (ESTs), 52.6% unigenes are novel compared to EST data available for B. juncea and constituent genomes. Differential expression analysis revealed altered expression of 1469 unigenes in response to salinity stress. Of these, 587, mainly associated with ROS detoxification, sulfur assimilation and calcium signaling pathways, are up regulated. Notable of these is RSA1 (SHORT ROOT IN SALT MEDIUM 1) INTERACTING TRANSCRIPTION FACTOR 1 (RITF1) homolog up regulated by &gt;100 folds in response to stress. RITF1, encoding a bHLH transcription factor, is a positive regulator of SOS1 and several key genes involved in scavenging of salt stress-induced reactive oxygen species (ROS). Further, we performed comparative expression profiling of key genes implicated in ion homeostasis and sequestration (SOS1, SOS2, SOS3, ENH1, NHX1), calcium sensing pathway (RITF1) and ROS detoxification in contrasting cultivars for salinity tolerance, B. juncea and B. nigra. The results revealed higher transcript accumulation of most of these genes in B. juncea var. CS52 compared to salt-sensitive cultivar even under normal growth conditions. Together, these findings reveal key pathways and signaling components that contribute to salinity tolerance in B. juncea var. CS52. "	"Cooperation of distinct Rac-dependent pathways to stabilise E-cadherin adhesion. The precise mechanisms via which Rac1 is activated by cadherin junctions are not fully known. In keratinocytes Rac1 activation by cadherin junctions requires EGFR signalling, but how EGFR does so is unclear. To address which activator could mediate E-cadherin signalling to Rac1, we investigated EGFR and two Rac1 GEFs, SOS1 and DOCK180. EGFR RNAi prevented junction-induced Rac1 activation and led to fragmented localization of E-cadherin at cadherin contacts. In contrast, depletion of another EGFR family member, ErbB3, did not interfere with either process. DOCK180 RNAi, but not SOS1, prevented E-cadherin-induced Rac1 activation. However, in a strong divergence from EGFR RNAi phenotype, DOCK180 depletion did not perturb actin recruitment or cadherin localisation at junctions. Rather, reduced DOCK180 levels impaired the resistance to mechanical stress of pre-formed cell aggregates. Thus, within the same cell type, EGFR and DOCK180 regulate Rac1 activation by newly-formed contacts, but control separate cellular events that cooperate to stabilise junctions. "	"CYCLIN-DEPENDENT KINASE G2 regulates salinity stress response and salt mediated flowering in Arabidopsis thaliana. Cyclin-dependent protein kinases are involved in many crucial cellular processes and aspects of plant growth and development, but their precise roles in abiotic stress responses are largely unknown. Here, Arabidopsis thaliana CYCLIN-DEPENDENT KINASE G2 (CDKG2) was shown to act as a negative regulator of the salinity stress response, as well as being involved in the control of flowering time. GUS expression experiments based on a pCDKG2::GUS transgene suggested that CDKG2 was expressed throughout plant development, with especially high expression levels recorded in the seed and in the flower. The loss-of-function of CDKG2 led to an increased tolerance of salinity stress and the up-regulation of the known stress-responsive genes SOS1, SOS2, SOS3, NHX3, RD29B, ABI2, ABI3, MYB15 and P5CS1. Flowering was accelerated in the cdkg2 mutants via the repression of FLC and the consequent up-regulation of FT, SOC1, AP1 and LFY. Transgenic lines constitutively expressing CDKG2 showed greater sensitivity to salinity stress and were delayed in flowering. Furthermore, the CDKG2 genotype affected the response of flowering time to salinity stress. Our data connect CDKG2 to undescribed functions related to salt stress tolerance and flowering time through the regulation of specific target genes. "	"Differentially expressed genes in metastatic advanced Egyptian bladder cancer. Bladder cancer is one of the most common cancers worldwide. Gene expression profiling using microarray technologies improves the understanding of cancer biology. The aim of this study was to determine the gene expression profile in Egyptian bladder cancer patients. Samples from 29 human bladder cancers and adjacent non-neoplastic tissues were analyzed by cDNA microarray, with hierarchical clustering and multidimensional analysis. Five hundred and sixteen genes were differentially expressed of which SOS1, HDAC2, PLXNC1, GTSE1, ULK2, IRS2, ABCA12, TOP3A, HES1, and SRP68 genes were involved in 33 different pathways. The most frequently detected genes were: SOS1 in 20 different pathways; HDAC2 in 5 different pathways; IRS2 in 3 different pathways. There were 388 down-regulated genes. PLCB2 was involved in 11 different pathways, MDM2 in 9 pathways, FZD4 in 5 pathways, p15 and FGF12 in 4 pathways, POLE2 in 3 pathways, and MCM4 and POLR2E in 2 pathways. Thirty genes showed significant differences between transitional cell cancer (TCC) and squamous cell cancer (SCC) samples. Unsupervised cluster analysis of DNA microarray data revealed a clear distinction between low and high grade tumors. In addition 26 genes showed significant differences between low and high tumor stages, including fragile histidine triad, Ras and sialyltransferase 8 (alpha) and 16 showed significant differences between low and high tumor grades, like methionine adenosyl transferase II, beta. The present study identified some genes, that can be used as molecular biomarkers or target genes in Egyptian bladder cancer patients."	"Chenopodium polyploidy inferences from Salt Overly Sensitive 1 (SOS1) data. Single-copy nuclear loci can provide powerful insights into polyploid evolution. Chenopodium (Amaranthaceae) is a globally distributed genus composed of approximately 50-75 species. The genus includes several polyploid species, some of which are considered noxious agricultural weeds, and a few are domesticated crops. Very little research has addressed their evolutionary origin to date. We construct a phylogeny for Chenopodium based on two introns of the single-copy nuclear locus Salt Overly Sensitive 1 (SOS1) to clarify the relationships among the genomes of the allotetraploid and allohexaploid species, and to help identify their genome donors. Diploid species were sequenced directly, whereas homeologous sequences of polyploid genomes were first separated by plasmid-mediated cloning. Data were evaluated in maximum likelihood and Bayesian phylogenetic analyses. Homeologous sequences of polyploid species were found in four clades, which we designate as A-D. Two distinct polyploid lineages were identified: one composed of American tetraploid species with A and B class homeologs and a second composed of Eastern Hemisphere hexaploid species with B, C, and D class homeologs. We infer that the two polyploid lineages arose independently and that each lineage may have originated only once. The American diploid, C. standleyanum, was identified as the closest living diploid relative of the A genome donor for American tetraploids, including domesticated C. quinoa, and is of potential importance for quinoa breeding. The east Asian diploid species, C. bryoniifolium, groups with American diploid species, which suggests a transoceanic dispersal."	"External ear anomalies and hearing impairment in Noonan Syndrome. This is the first cohort in which hearing impairment and external ear anomalies in Noonan Syndrome are described extensively. Retrospective analysis of the otorhinolaryngological and clinical genetic data from 97 Noonan Syndrome (NS) patients. Forty-four NS patients were seen by an otorhinolaryngologist for the analysis of hearing impairment. In our cohort 80 of the 97 patients were genetically tested. In 71 of these mutations were found: in 48 patients a mutation in PTPN11, in 10 patients in SOS1, in 5 patients in SHOC2, in 5 patients in RAF1, in 1 patient in MAP2K2, in 1 patient in KRAS and in 1 patient in A2ML1. External ear anomalies were reported in 75 NS patients (77%). In 69 patients the ears were low-set, 28 patients had posteriorly rotated ears, 14 patients showed protruding ears and 18 had thickened helices. Hearing impairment was detected in 34 NS patients. Nine patients had sensorineural hearing impairment, two a permanent conductive hearing impairment, two other patients had mixed hearing impairment and 20 patients had conductive hearing impairment in the past, caused by otitis media with effusion. Their temporary conductive hearing impairment resolved between the ages of 2 and 18 years. Sensorineural hearing impairment varied between mild high-frequency hearing impairment and profound (uni- and bilateral) hearing impairment and was progressive in three patients. Four NS patients received cochlear implants for their severe sensorineural hearing impairment. The cohort is small for genotype-phenotype correlations, but sensorineural hearing impairment, especially the bilateral severe hearing impairment, was only seen in patients with a PTPN11 mutation. NS is characterized by dysmorphic external ear anomalies and both sensorineural and conductive hearing impairment. Audiological examinations are recommended in all patients with Noonan Syndrome."	"Combined rational design and a high throughput screening platform for identifying chemical inhibitors of a Ras-activating enzyme. The Ras family small GTPases regulate multiple cellular processes, including cell growth, survival, movement, and gene expression, and are intimately involved in cancer pathogenesis. Activation of these small GTPases is catalyzed by a special class of enzymes, termed guanine nucleotide exchange factors (GEFs). Herein, we developed a small molecule screening platform for identifying lead hits targeting a Ras GEF enzyme, SOS1. We employed an ensemble structure-based virtual screening approach in combination with a multiple tier high throughput experimental screen utilizing two complementary fluorescent guanine nucleotide exchange assays to identify small molecule inhibitors of GEF catalytic activity toward Ras. From a library of 350,000 compounds, we selected a set of 418 candidate compounds predicted to disrupt the GEF-Ras interaction, of which dual wavelength GDP dissociation and GTP-loading experimental screening identified two chemically distinct small molecule inhibitors. Subsequent biochemical validations indicate that they are capable of dose-dependently inhibiting GEF catalytic activity, binding to SOS1 with micromolar affinity, and disrupting GEF-Ras interaction. Mutagenesis studies in conjunction with structure-activity relationship studies mapped both compounds to different sites in the catalytic pocket, and both inhibited Ras signaling in cells. The unique screening platform established here for targeting Ras GEF enzymes could be broadly useful for identifying lead inhibitors for a variety of small GTPase-activating GEF reactions. "	"Adipokine pathways are altered in hippocampus of an experimental mouse model of Alzheimer's disease. A growing body of evidence suggests that β-amyloid peptides (Aβ) are unlikely to be the only factor involved in Alzheimer's disease (AD) aetiology. In fact, a strong correlation has been established between AD patients and patients with type 2 diabetes and/or cholesterol metabolism alterations. In addition, a link between adipose tissue metabolism, leptin signalling in particular, and AD has also been demonstrated. In the present study we analyzed the expression of molecules related to metabolism, with the main focus on leptin and prolactin signalling pathways in an APPswe/PS1dE9 (APP/PS1) transgenic mice model, at 3 and 6 months of age, compared to wild-type controls. We have chosen to study 3 months-old APP/PS1 animals at an age when neither the cognitive deficits nor significant Aβ plaques in the brain are present, and to compare them to the 6 months-old mice, which exhibit elevated levels of Aβ in the hippocampus and memory loss. A significant reduction in both mRNA and protein levels of the prolactin receptor (PRL-R) was detected in the hippocampi of 3 months old APP/PS1 mice, with a decrease in the levels of the leptin receptor (OB-R) first becoming evident at 6 months of age. We proceeded to study the expression of the intracellular signalling molecules downstream of these receptors, including stat (1-5), sos1, kras and socs (1-3). Our data suggest a downregulation in some of these molecules such as stat-5b and socs (1-3), in 3 months-old APP/PS1 brains. Likewise, at the same age, we detected a significant reduction in mRNA levels of lrp1 and cyp46a1, both of which are involved in cholesterol homeostasis. Taken together, these results demonstrate a significative impairment in adipokine receptors signalling and cholesterol regulation pathways in the hippocampus of APP/PS1 mice at an early age, prior to the Aβ plaque formation. "	"Constitutive high-level SOS1 expression and absence of HKT1;1 expression in the salt-accumulating halophyte Salicornia dolichostachya. We investigated the effects of salinity on ion accumulation and expression of candidate salt tolerance genes in the highly tolerant salt accumulating halophyte Salicornia dolichostachya and the taxonomically related glycophytic Spinacia oleracea. S. dolichostachya, in comparison with S. oleracea, constitutively expressed SOS1 at a high level, but did not detectably express HKT1;1. These findings suggest that the constitutive high level of shoot salt accumulation in S. dolichostachya is accomplished through enhancement of SOS1-mediated Na(+) xylem loading, in combination with complete suppression of HKT1;1-mediated Na(+) retrieval from the xylem. Our findings demonstrate the importance of gene expression comparisons between highly tolerant halophytes and taxonomically related glycophytes to improve the understanding of mechanisms of Na(+) movement and salt tolerance in plants. "	"Rare variants in SOS2 and LZTR1 are associated with Noonan syndrome. Noonan syndrome is an autosomal dominant, multisystemic disorder caused by dysregulation of the RAS/mitogen activated protein kinase (MAPK) pathway. Heterozygous, pathogenic variants in 11 known genes account for approximately 80% of cases. The identification of novel genes associated with Noonan syndrome has become increasingly challenging, since they might be responsible for very small fractions of the cases. A cohort of 50 Brazilian probands negative for pathogenic variants in the known genes associated with Noonan syndrome was tested through whole-exome sequencing along with the relatives in the familial cases. Families from the USA and Poland with mutations in the newly identified genes were included subsequently. We identified rare, segregating or de novo missense variants in SOS2 and LZTR1 in 4% and 8%, respectively, of the 50 Brazilian probands. SOS2 and LZTR1 variants were also found to segregate in one American and one Polish family. Notably, SOS2 variants were identified in patients with marked ectodermal involvement, similar to patients with SOS1 mutations. We identified two novel genes, SOS2 and LZTR1, associated with Noonan syndrome, thereby expanding the molecular spectrum of RASopathies. Mutations in these genes are responsible for approximately 3% of all patients with Noonan syndrome. While SOS2 is a natural candidate, because of its homology with SOS1, the functional role of LZTR1 in the RAS/MAPK pathway is not known, and it could not have been identified without the large pedigrees. Additional functional studies are needed to elucidate the role of LZTR1 in RAS/MAPK signalling and in the pathogenesis of Noonan syndrome."	"Analysis of microRNA expression in canine mammary cancer stem-like cells indicates epigenetic regulation of transforming growth factor-beta signaling. Cancer stem cells (CSCs) display both unique self-renewal ability as well as the ability to differentiate into many kinds of cancer cells. They are supposed to be responsible for cancer initiation, recurrence and drug resistance. Despite the fact that a variety of methods are currently employed in order to target CSCs, little is known about the regulation of their phenotype and biology by miRNAs. The aim of our study was to assess miRNA expression in canine mammary cancer stem-like cells (expressing stem cell antigen 1, Sca-1; CD44 and EpCAM) sorted from canine mammary tumour cell lines (CMT-U27, CMT-309 and P114). In order to prove their stem-like phenotype, we conducted a colony formation assay that confirmed their ability to form colonies from a single cell. Profiles of miRNA expression were investigated using Agilent custom-designed microarrays. The results were further validated by real-time rt-PCR analysis of expression of randomly selected miRNAs. Target genes were indicated and analysed using Kioto Encyclopedia of Genes and Genomes (KEGG) and BioCarta databases. The results revealed 24 down-regulated and nine up-regulated miRNAs in cancer stem-like cells compared to differentiated tumour cells. According to KEGG and BioCarta databases, target genes (n=240) of significantly down-regulated miRNAs were involved in transforming growth factor-beta signaling, mitogen-activated protein kinases (MAPK) signaling pathway, anaplastic lymphoma receptor tyrosine kinase (ALK) and peroxisome proliferator-activated receptor gamma, coactivator 1 alpha (PGC1A) pathways. The analysis of single-gene overlapping with different pathways showed that the most important genes were: TGFBR1, TGFBR2, SOS1, CHUK, PDGFRA, SMAD2, MEF2A, MEF2C and MEF2D. All of them are involved in tumor necrosis factor-beta signaling and may indicate its important role in cancer stem cell biology. Increased expression of TGFBR2, SMAD2, MEF2A and MEF2D in canine mammary cancer stem-like cells was further confirmed by real-time-qPCR. The results of our study point at epigenetic differences between cancer stem-like cells and differentiated tumour cells, which may be important not only for veterinary medicine but also for comparative oncology. "	"Differential allelic expression of SOS1 and hyperexpression of the activating SOS1 c.755C variant in a Noonan syndrome family. Noonan syndrome (NS) is a genetic condition characterized by congenital heart defects, short stature and characteristic facial features. We here present the case of a girl with moderate learning disabilities, delayed language development, craniofacial features and skin anomalies reminiscent of NS. After a mutation screening of the known NS genes PTPN11, SOS1, RAF1, KRAS, GRB2, BRAF and SHOC2 we found the heterozygous c.755T&gt;C variant in SOS1 causing the p.I252T amino-acid substitution, which was considered possibly pathogenetic by bioinformatic predictions. The same variant was present in the proband's mother, displaying some NS features, and maternal grandfather showing no NS traits, but also by a healthy subject in 1000 genomes project database without phenotype informations. The functional analysis revealed that SOS1 c.755C activated the RAS-ERK intracellular pathway, whereas no effects on RAC-JNK cascade have been detected. After a comparison between the sequence of SOS1 cDNA from peripheral blood and SOS1 genomic DNA, we showed for the first time a differential allelic expression of the SOS1 gene in healthy individuals, thus occurring as a physiologic condition. Interestingly, we found that the mutated allele C was 50% more expressed than the wild-type allele T in all familial carriers. The comparable amount of SOS1 mRNA between mutated individuals and the controls indicates that the variant does not affect SOS1 expression. The present study provides a first evidence of allelic imbalance of SOS1 and pinpoints this condition as a possible mechanism underlying a different penetrance of some SOS1-mutated alleles in unrelated carriers. "	"Small molecule binding sites on the Ras:SOS complex can be exploited for inhibition of Ras activation. Constitutively active mutant KRas displays a reduced rate of GTP hydrolysis via both intrinsic and GTPase-activating protein-catalyzed mechanisms, resulting in the perpetual activation of Ras pathways. We describe a fragment screening campaign using X-ray crystallography that led to the discovery of three fragment binding sites on the Ras:SOS complex. The identification of tool compounds binding at each of these sites allowed exploration of two new approaches to Ras pathway inhibition by stabilizing or covalently modifying the Ras:SOS complex to prevent the reloading of Ras with GTP. Initially, we identified ligands that bound reversibly to the Ras:SOS complex in two distinct sites, but these compounds were not sufficiently potent inhibitors to validate our stabilization hypothesis. We conclude by demonstrating that covalent modification of Cys118 on Ras leads to a novel mechanism of inhibition of the SOS-mediated interaction between Ras and Raf and is effective at inhibiting the exchange of labeled GDP in both mutant (G12C and G12V) and wild type Ras. "	"Molecular cloning and characterization of salt overly sensitive gene promoter from Brassica juncea (BjSOS2). Salt Overly Sensitive (SOS) pathway comprising SOS1, SOS2 and SOS3 genes has been recognized as the key mechanism controlling ion homeostasis under salinity stress. SOS2 component of this pathway encodes a serine/threonine protein kinase that together with SOS3 activates downstream Na(+)/H(+) antiporter SOS1, reestablishing cellular ion homeostasis under salinity stress. In the present study, we have found that the transcript levels of BjSOS2 are induced in response to various abiotic stresses. We have isolated a 713 bp promoter region of SOS2 gene from Brassica juncea to study the regulation of BjSOS2 under various abiotic stress conditions and further, to examine utility of the cloned upstream region in genetic engineering experiments. For this purpose, 713 bp BjSOS2 promoter:β-glucuronidase (GUS) fusion construct, along with its two subsequent 5' deletion derivatives, D1 (443 bp) and D2 (209 bp), were stably transformed into B. juncea. Functional analysis of transgenic lines revealed significant increase in promoter activity under salinity, desiccation as well as abscisic acid (ABA) treatment which was consistent with increased transcript levels of GUS gene. BjSOS2 promoter possesses strong multi-stress inducible nature, suggesting its involvement in various aspects of stress signaling. Considering the fact that the simultaneous presence of multiple abiotic stress conditions under field conditions is a challenging threat to crop productivity, future studies may utilize the BjSOS2 promoter to drive stress-inducible expression of genes involved in imparting tolerance to multiple stresses. "	"Direct inhibition of oncogenic KRAS by hydrocarbon-stapled SOS1 helices. Activating mutations in the Kirsten rat sarcoma viral oncogene homolog (KRAS) underlie the pathogenesis and chemoresistance of ∼ 30% of all human tumors, yet the development of high-affinity inhibitors that target the broad range of KRAS mutants remains a formidable challenge. Here, we report the development and validation of stabilized alpha helices of son of sevenless 1 (SAH-SOS1) as prototype therapeutics that directly inhibit wild-type and mutant forms of KRAS. SAH-SOS1 peptides bound in a sequence-specific manner to KRAS and its mutants, and dose-responsively blocked nucleotide association. Importantly, this functional binding activity correlated with SAH-SOS1 cytotoxicity in cancer cells expressing wild-type or mutant forms of KRAS. The mechanism of action of SAH-SOS1 peptides was demonstrated by sequence-specific down-regulation of the ERK-MAP kinase phosphosignaling cascade in KRAS-driven cancer cells and in a Drosophila melanogaster model of Ras85D(V12) activation. These studies provide evidence for the potential utility of SAH-SOS1 peptides in neutralizing oncogenic KRAS in human cancer."	"Testing measurement invariance of the GHQ-28 in stroke patients. In order to combine self-reported measures data from multiple studies to conduct an integrated data analysis, the construct measured must have the same meaning across the studies. This study investigated the measurement invariance of the General Health questionnaire (GHQ-28) in two stroke studies before combining the data for an integrative data analysis. The study used data from the Stroke Outcomes Study 1 (SOS1, n = 448) and second Stroke Outcomes Study (SOS2, n = 585). The initial analysis was a confirmatory factor analysis (CFA) for each study separately to confirm the four-factor structure of GHQ-28 questionnaire. Multi-group confirmatory factor analysis (MG-CFA) was used to assess the measurement invariance of the GHQ-28 questionnaire in the two stroke cohorts. Measurement invariance at configural invariance (same items associated with same factor across groups); factor loading invariance (equal factor loadings across groups) and scalar invariance (equal intercepts across groups) was examined. CFA supported all three invariances measured. Results showed that the GHQ-28 questionnaire has comparable measurement properties in the SOS1 and SOS2 stroke studies. Strong measurement invariance was established, and based on the results from this study, integrative data analysis of GHQ-28 scores from the two stroke studies is merited."	"MEK/ERK signaling pathway is required for enterovirus 71 replication in immature dendritic cells. The mitogen-activated protein kinase kinase/extracellular-signal-regulated kinase (MEK/ERK) signaling pathway is involved in viral life cycle. However, the effect of MEK/ERK pathway in enterovirus 71(EV71)-infected immature dendritic cells (iDCs) is still unclear. Human peripheral blood mononuclear cells (PBMCs) were isolated and induced to generate iDCs. Unifected iDCs and EV71-infected iDCs with a multiplicity of infection (MOI = 5) were analyzed by flow cytometry. Differential gene expressions of MEK/ERK signaling pathway molecules in EV71-infected iDCs were performed by PCR arrays. The phosphorylation of MEK/ERK pathway molecules in EV71-infected iDCs preincubated without or with U0126 (20 μM) at indicated times was detected by Western blot. The concentrations of IL-1α, IL-2, IL-6, IL-12, TNF-α, IFN-α1, IFN-β and IFN-γ in culture supernatant were analyzed by the luminex fluorescent technique. When iDCs were infected with EV71 for 24 h, the percentage of CD80, CD83, CD86 and HLA-DR expressed on iDCs significantly increased. PCR arrays showed that gene expressions of molecules in MEK/ERK signaling pathway were remarkably upregulated in EV71-infected iDCs. EV71 infection activated both MEK1/2 and ERK1/2, which phosphorylated their downstream transcription factor c-Fos, c-Jun, c-myc and Elk1. Importantly, the treatment of U0126 significantly inhibited MEK/ERK signaling pathway molecules and severely impaired virus replication., Additionally, EV71 infection promoted the expression of son of sevenless (SOS1) and increased the secretion of IL-1α, IL-2, IL-6, IL-12, TNF-α,IFN-β and IFN-γ. Furthermore,the release of IL-1α, IL-2,IL-6 and TNF-α could be effectively suppressed by inhibitor U0126. Our data suggest that the MEK/ERK signaling pathway plays an important role in EV71-infected iDCs and these molecules may be potential targets for the development of new anti-EV71 drugs."	"Mechanisms underlying turgor regulation in the estuarine alga Vaucheria erythrospora (Xanthophyceae) exposed to hyperosmotic shock. Aquatic organisms are often exposed to dramatic changes in salinity in the environment. Despite decades of research, many questions related to molecular and physiological mechanisms mediating sensing and adaptation to salinity stress remain unanswered. Here, responses of Vaucheria erythrospora, a turgor-regulating xanthophycean alga from an estuarine habitat, have been investigated. The role of ion uptake in turgor regulation was studied using a single cell pressure probe, microelectrode ion flux estimation (MIFE) technique and membrane potential (Em ) measurements. Turgor recovery was inhibited by Gd(3+) , tetraethylammonium chloride (TEA), verapamil and orthovanadate. A NaCl-induced shock rapidly depolarized the plasma membrane while an isotonic sorbitol treatment hyperpolarized it. Turgor recovery was critically dependent on the presence of Na(+) but not K(+) and Cl(-) in the incubation media. Na(+) uptake was strongly decreased by amiloride and changes in net Na(+) and H(+) fluxes were oppositely directed. This suggests active uptake of Na(+) in V. erythrospora mediated by an antiport Na(+) /H(+) system, functioning in the direction opposite to that of the SOS1 exchanger in higher plants. The alga also retains K(+) efficiently when exposed to high NaCl concentrations. Overall, this study provides insights into mechanisms enabling V. erythrospora to regulate turgor via ion movements during hyperosmotic stress. "	"New avenue to inhibit Ras signaling. Inhibition of Ras-stimulating enzymes is a possible avenue to treat Ras-driven diseases. In this issue of Chemistry &amp; Biology, Evelyn and coworkers report an inhibitor for one such enzyme, Sos1, capable of impairing wild-type Ras signaling in cells. "	"miR-146a and miR-370 coordinate enterovirus 71-induced cell apoptosis through targeting SOS1 and GADD45β. Enterovirus 71 (EV71) is an emerging life-threatening pathogen particularly in the Asia-Pacific region. The major pathogenic feature in EV71-infected cells is apoptosis. However, which molecular mechanism mainly contributes to EV71-induced apoptosis is not investigated thoroughly. MicroRNAs (MiRNAs), the newly discovered molecules, govern a wide range of biological functions through post-transcriptional regulation including viral pathogenesis. Whether miRNAs and messenger RNAs (mRNAs) coordinate to trigger host cell apoptosis in EV71 infection was investigated in this study. We conducted an apoptosis-oriented approach using both mRNA and miRNA profiling and bioinformatic analysis. We identified two major apoptosis-associated signalling pathways, Bcl2 antagonist of cell death (BAD) phosphorylation and p53-dependent apoptosis pathways, in which Son of sevenless homolog 1 (SOS1) and Growth arrest and DNA damage-inducible protein 45β (GADD45β) were predicted as targets of miR-146a and miR-370 respectively. Luciferase reporter assays and Western blots demonstrated the negative regulation between miR-146a and SOS1 and between miR-370 and GADD45β. Silencing of miR-146a restored SOS1 expression and partially attenuated EV71 infection-induced apoptosis. Conversely, ectopic expression of miR-370 decreased virus infection-induced GADD45β expression and also diminished apoptosis. Finally, the transfection of antagomiR-146a and miR-370 contributed to attenuating EV71 infection-induced apoptosis. Herein we clearly demonstrate that EV71-induced cell apoptosis is partly governed by altered miRNAs. "	"Genome-wide expression analysis of hereditary hyperplastic gingivitis in silver foxes (Vulpes vulpes) using canine microarrays. Hereditary hyperplastic gingivitis (HHG) is an autosomal recessive condition found predominantly in farmed silver foxes, first documented in Europe in the 1940s. Hereditary gingival fibromatosis (HGF) is an analogous condition occurring in humans. HGF has a heterogeneous aetiology with emphasis placed on the autosomal dominant forms of inheritance for which there are three known loci: HGF1, HGF2, and HGF3. Among these, only one causative mutation has been determined, in the Son of sevenless homolog 1 (SOS1) gene. The goal of this study was to explore potential molecular or cellular mechanisms underlying HHG by analysis of global gene expression patterns from Affymetrix Canine 2.0 microarrays cross-referenced against candidate genes within the human loci. We conclude that the SOS1 gene involved in HGF1 is not significantly up-regulated in HHG. However, the structurally and functionally similar SOS2 gene is up-regulated in affected foxes, and we propose this as a candidate gene for HHG. At HGF2 we identify RASA1 (rat sarcoma viral p21 protein activator 1) as a candidate gene for HHG, as it is up-regulated in affected foxes and is involved in MAPK signalling. From comparison to the genes within the HGF3 locus, we find evidence for a role of androgens in HHG phenotype severity by differential up-regulation of SRD5A2 in HHG-affected foxes. We hypothesize that the putative mutation occurs upstream of RAS in the extracellular signal-regulated kinase component of MAPK signalling. "	"Rational design of small molecule inhibitors targeting the Ras GEF, SOS1. Ras GTPases regulate intracellular signaling involved in cell proliferation. Elevated Ras signaling activity has been associated with human cancers. Ras activation is catalyzed by guanine nucleotide exchange factors (GEFs), of which SOS1 is a major member that transduces receptor tyrosine kinase signaling to Ras. We have developed a rational approach coupling virtual screening with experimental screening in identifying small-molecule inhibitors targeting the catalytic site of SOS1 and SOS1-regulated Ras activity. A lead inhibitor, NSC-658497, was found to bind to SOS1, competitively suppress SOS1-Ras interaction, and dose-dependently inhibit SOS1 GEF activity. Mutagenesis and structure-activity relationship studies map the NSC-658497 site of action to the SOS1 catalytic site, and define the chemical moieties in the inhibitor essential for the activity. NSC-658497 showed dose-dependent efficacy in inhibiting Ras, downstream signaling activities, and associated cell proliferation. These studies establish a proof of principle for rational design of small-molecule inhibitors targeting Ras GEF enzymatic activity. "	"SOS1 and Ras regulate epithelial tight junction formation in the human airway through EMP1. The human airway is lined with respiratory epithelial cells, which create a critical barrier through the formation of apical tight junctions. To investigate the molecular mechanisms underlying this process, an RNAi screen for guanine nucleotide exchange factors (GEFs) was performed in human bronchial epithelial cells (16HBE). We report that SOS1, acting through the Ras/MEK/ERK pathway, is essential for tight junction formation. Global microarray analysis identifies epithelial membrane protein 1 (EMP1), an integral tetraspan membrane protein, as a major transcriptional target. EMP1 is indispensable for tight junction formation and function in 16HBE cells and in a human airway basal progenitor-like cell line (BCi-NS1.1). Furthermore, EMP1 is significantly downregulated in human lung cancers. Together, these data identify important roles for SOS1/Ras and EMP1 in tight junction assembly during airway morphogenesis. "	"Sequence analysis of the Ras-MAPK pathway genes SOS1, EGFR &amp; GRB2 in silver foxes (Vulpes vulpes): candidate genes for hereditary hyperplastic gingivitis. Hereditary hyperplastic gingivitis (HHG) is an autosomal recessive disease that presents with progressive gingival proliferation in farmed silver foxes. Hereditary gingival fibromatosis (HGF) is an analogous condition in humans that is genetically heterogeneous with several known autosomal dominant loci. For one locus the causative mutation is in the Son of sevenless homologue 1 (SOS1) gene. For the remaining loci, the molecular mechanisms are unknown but Ras pathway involvement is suspected. Here we compare sequences for the SOS1 gene, and two adjacent genes in the Ras pathway, growth receptor bound protein 2 (GRB2) and epidermal growth factor receptor (EGFR), between HHG-affected and unaffected foxes. We conclude that the known HGF causative mutation does not cause HHG in foxes, nor do the coding regions or intron-exon boundaries of these three genes contain any candidate mutations for fox gum disease. Patterns of molecular evolution among foxes and other mammals reflect high conservation and strong functional constraints for SOS1 and GRB2 but reveal a lineage-specific pattern of variability in EGFR consistent with mutational rate differences, relaxed functional constraints, and possibly positive selection. "	"[Mutagenic effect of advanced paternal age in neurocardiofaciocutaneous syndrome]. Increased frequency of chromosomal aberration in children of mothers aged 35 years and older is very well known and since 1973 it is an indication to investigate the foetal karyotype in cells obtained by invasive method (amniocentesis), because the genetic risk of severe affection is higher than the risk of necessary invasive method. Mutagenic effect of advanced paternal age is known only among geneticists (1-4). The reason is not only low absolute risk of new mutation but particularly a high number of involved genes and last not least the limited spectrum of autosomal dominant disorders without abiotrofic character. Therefore the preventive methods for elimination of this risk are very limited. Only a few of them could be recognized prenatally by noninvasive methods of prenatal diagnostics. Genealogical, anamnestic and clinical data of 83 patients were studied with clinical suspection on neurocardiofaciocutaneous syndrome (NCFCs) (5-7). The diagnosis has not been confirmed in 29 patients, no mutation was detected in 8 investigated genes (PTPN11, SOS1, HRAS, BRAF, RAF1, MEK1, KRAS, NRAS). In 54 patients with autosomal dominant inherited Noonan syndrome, Costello syndrome and cardiofaciocutaneous syndrome the diagnosis was confirmed on DNA level and the biological fitness was estimated for each disorder. Paternal age at conception was compared in the group of patients with familial and sporadic occurrence of Noonan and NCFC syndromes. The clinical prognosis of this disorder is represented by biological fitness of patients. Coefficient of selection is 0,6 in Noonan and LEOPARD syndromes (29 from 48). All 6 patients with Costello and cardiofaciocutaneous syndromes developed due to a new mutation. Paternal age at birth was studied in 83 children patients with autosomal dominant Neurocardiofaciocutaneous syndrome (Noonan, LEOPARD, Costello, CFC) with a high population incidence and decreased biological fitness. Due to severe congenital heart defects, failure to thrive in infancy, increased risk for malignancy and further health problems the clinical prognosis of patients in the past was not good. Therefore high mutation rate is expected until now. Identification of genes responsible for manifestation of this disorder, enables to confirm the diagnosis and to recognize inherited and de novo mutations. Genealogy and DNA analysis of PTPN11, SOS1, HRAS, BRAF, RAF1, MEK1, KRAS and NRAS were obtained in cohort of 54 patients with NCFC syndromes and their parents. There were 48 patients with Noonan and LEOPARD syndromes, in 29 cases due to mutation de novo, 19 patients inherited the mutation from one of parents. All 6 patients with Costello syndrome and CFC syndrome were affected due to new mutation. DNA analysis revealed 32 mutations in PTPN11 gene, mutation in SOS1 gene was found in 10 patients, RAF1 mutation was present in 3 patients; mutation in MEK1, KRAS and NRAS genes was present in one patient each. In Costello syndrome and CFC syndrome mutations in HRAS (4 patients) and BRAF (2 patients) genes were detected. Genealogic data allow analysing parental age in the group of patients with new mutation and inherited mutation. Paternal age at conception of patients with Noonan syndrome due to new mutation was significantly increased in comparison to the group of fathers of Noonan patients with inherited mutation - 38,4 years and 29,6 years, resp., range 28 to 55 years and 25 to 35 years, resp. Maternal age was slightly increased too, -30,9 and 27,7, resp. and range 24 to 42 years and 21 to 36 years, resp. but not significantly. The results support the mutagenic effect of paternal age, espec. autosomal dominant mutations."	"Role of glycine in improving the ionic and ROS homeostasis during NaCl stress in wheat. Nine-day-old wheat seedlings were treated with NaCl at 75, 150, and 225 mM for 15 days in the absence or presence of 5 mM glycine. NaCl particularly at 150 and 225 mM led to significant reductions in fresh and dry weights, chlorophylls, carotenoids, Ca(2+), K(+), and K(+)/Na(+) ratio. Contrarily, there were significant accumulations in Na(+), malondialdehyde (MDA), H2O2, soluble sugars, and proline concomitant with inhibitions in enzymatic and non-enzymatic antioxidants and in Rubisco. In the meantime, the transcript level of alternative oxidase (AOX) was highly upregulated by NaCl; the upregulation was greatest with the lowest concentration. However, the transcript level of H(+)/Na(+) antiporter exchanger (NHX1) was decreased by 75 and 150 mM NaCl but increased by 225 mM. Similarly, the transcript level of salt overly sensitive 1 (SOS1) was upregulated by only 225 mM. Nonetheless, the application of glycine mostly overcame the varied impacts of NaCl on growth, MDA, H2O2, pigments, metabolites, and elements. Moreover, glycine elevated enzymatic and non-enzymatic antioxidants to reach most likely the levels of the respective control. On the contrary, much induction was detected in Rubisco. The transcript levels of AOX, NHX1, and SOS1 were further upregulated; the upregulation of AOX was most pronounced with the highest NaCl concentration in the presence of glycine and only with 75 and 150 mM NaCl for NHX1 and SOS1. The increase in antioxidants concomitant with the decrease in MDA and H2O2 reveals that ROS scavenging system became more efficient in NaCl-treated wheat following glycine application, concluding that glycine could ameliorate wheat tolerance to salinity. Moreover, lowering Na(+) by glycine and mitigation of the decreased K(+)/Na(+) ratio synchronous with recovery in growth reduction and stimulation of AOX, NHX1 and SOS1 may emphasize the role of glycine in stimulating gene expression for raising wheat tolerance to NaCl. "	"Clinical and Molecular Findings of Tunisian Patients with RASopathies. Noonan syndrome (NS) and related disorders, which are now summarized under the term RASopathies, are caused by germline mutations in genes encoding protein components of the Ras/mitogen-activated protein kinase pathway. In this study, we evaluated the clinical and molecular spectrum of 21 Tunisian patients, recruited by a cardiology unit, for whom RASopathy diagnosis was suspected by clinical geneticists. Overall, 19 patients had a clinical diagnosis of NS and 2 were classified as having Cardiofaciocutaneous (CFC) syndrome. In 52% (n = 11) of patients, a RASopathy has been molecularly confirmed. Mutations in PTPN11 and SOS1 genes were found in patients with diagnosis of NS and BRAF gene mutations in patients with CFC syndrome. As reported from other cohorts, mutations in exons 3 and 8 of the PTPN11 gene predominated in Tunisian NS patients. A very uncommon PTPN11 mutation c.5C&gt;T (p.T2I), the functional consequences of which have so far remained unclear, was identified in one patient. As biased by the mode of recruitment, all patients included in this study had a congenital heart defect, with pulmonary valve stenosis being the most frequent one. Short stature and developmental abnormalities were present in mutation-positive cases. This is the first molecular study in patients from southern Tunisia with RASopathy diagnosis. "	"Species- and genome-wide dissection of the shoot ionome in Brassica napus and its relationship to seedling development. Knowing the genetic basis of the plant ionome is essential for understanding the control of nutrient transport and accumulation. The aim of this research was to (i) study mineral nutrient concentrations in a large and diverse set of Brassica napus, (ii) describe the relationships between the shoot ionome and seedling development, and (iii) identify genetic regions associated with variation of the shoot ionome. The plant material under study was a germplasm set consisting of 509 inbred lines that was genotyped by a 6K single nucleotide polymorphism (SNP) array and phenotyped by analyzing the concentrations of eleven mineral nutrients in the shoots of 30 days old seedlings. Among mineral concentrations, positive correlations were found, whereas mineral concentrations were mainly negatively correlated with seedling development traits from earlier studies. In a genome-wide association mapping approach, altogether 29 significantly associated loci were identified across seven traits after correcting for multiple testing. The associations included a locus with effects on the concentrations of Cu, Mn, and Zn on chromosome C3, and a genetic region with multiple associations for Na concentration on chromosome A9. This region was situated within an association hotspot close to SOS1, a key gene for Na tolerance in plants. "	"Deguelin inhibits the migration and invasion of U-2 OS human osteosarcoma cells via the inhibition of matrix metalloproteinase-2/-9 in vitro. Osteosarcoma is the most common malignant primary bone tumor in children and young adults and lung metastasis is the main cause of death in those patients. Deguelin, a naturally occurring rotenoid, is known to be an Akt inhibitor and to exhibit cytotoxic effects, including antiproliferative and anticarcinogenic activities, in several cancers. In the present study, we determined if deguelin would inhibit migration and invasion in U-2 OS human osteosarcoma cells. Deguelin significantly inhibited migration and invasion of U-2 OS human osteosarcoma cells which was associated with a reduction of activities of matrix metalloproteinases-2 (MMP-2) and matrix metalloproteinases-9 (MMP-9). Furthermore, results from western blotting indicated that deguelin decreased the cell proliferation and cell growth-associated protein levels, such as SOS1, PKC, Ras, PI3K, p-AKT(Ser473), IRE-1α, MEKK3, iNOS, COX2, p-ERK1/2, p-JNK1/2, p-p38; the cell motility and focal adhesion-associated protein levels, such as Rho A, FAK, ROCK-1; the invasion-associated protein levels, such as TIMP1, uPA, MMP-2. MMP-9, MMP-13, MMP-1 and VEGF in U-2 OS cells. Confocal microscopy revealed that deguelin reduced NF-κB p65, Rho A and ROCK-1 protein levels in cytosol. MMP-7, MMP-9 and Rho A mRNA levels were suppressed by deguelin. These in vitro results provide evidence that deguelin may have potential as a novel anti-cancer agent for the treatment of osteosarcoma and provides the rationale for in vivo studies in animal models. "	"Quantitative gene expression analysis of some sodium ion transporters under salinity stress in Aeluropus littoralis. Plant sodium transporters activity is one of the most important salt tolerance mechanisms to keep normal status of cytosolic sodium content. In the present study, expression pattern of genes encoding Na(+)/H(+) antiporters in the plasma membrane (SOS1 gene), vacuolar membrane (NHX1 gene) and H(+)-ATPase pump (VHA gene) in Aeluropus littoralis under different treatments of NaCl was measured by the semi-quantitative RT-PCR method. Our results indicated that root and shoot sodium contents were increased along with increasing salinity pressure. In response to 200 and 400 mM NaCl, mRNA level of SOS1 and NHX1 was increased in the shoot and root tissues, while VHA transcripts were increased only under 400 mM of NaCl. Transcripts of VHA-c and NHX1 in root were higher than shoot in all treatments. In general, our results indicated that transcriptional level of SOS1, and NHX1 genes induced in parallel with VHA expression may be involved in controlling cytosolic Na(+) concentration in A. littoralis. "	"Role of electrostatic interactions in binding of peptides and intrinsically disordered proteins to their folded targets. 1. NMR and MD characterization of the complex between the c-Crk N-SH3 domain and the peptide Sos. Intrinsically disordered proteins (IDPs) often rely on electrostatic interactions to bind their structured targets. To obtain insight into the mechanism of formation of the electrostatic encounter complex, we investigated the binding of the peptide Sos (PPPVPPRRRR), which serves as a minimal model for an IDP, to the c-Crk N-terminal SH3 domain. Initially, we measured ¹⁵N relaxation rates at two magnetic field strengths and determined the binding shifts for the complex of Sos with wild-type SH3. We have also recorded a 3 μs molecular dynamics (MD) trajectory of this complex using the Amber ff99SB*-ILDN force field. The comparison of the experimental and simulated data shows that MD simulation consistently overestimates the strength of salt bridge interactions at the binding interface. The series of simulations using other advanced force fields also failed to produce any satisfactory results. To address this issue, we have devised an empirical correction to the Amber ff99SB*-ILDN force field whereby the Lennard-Jones equilibrium distance for the nitrogen-oxygen pair across the Arg-to-Asp and Arg-to-Glu salt bridges has been increased by 3%. Implementing this correction resulted in a good agreement between the simulations and the experiment. Adjusting the strength of salt bridge interactions removed a certain amount of strain contained in the original MD model, thus improving the binding of the hydrophobic N-terminal portion of the peptide. The arginine-rich C-terminal portion of the peptide, freed from the effect of the overstabilized salt bridges, was found to interconvert more rapidly between its multiple conformational states. The modified MD protocol has also been successfully used to simulate the entire binding process. In doing so, the peptide was initially placed high above the protein surface. It then arrived at the correct bound pose within ∼2 Å of the crystallographic coordinates. This simulation allowed us to analyze the details of the dynamic binding intermediate, i.e., the electrostatic encounter complex. However, an experimental characterization of this transient, weakly populated state remains out of reach. To overcome this problem, we designed the double mutant of c-Crk N-SH3 in which mutations Y186L and W169F abrogate tight Sos binding and shift the equilibrium toward the intermediate state resembling the electrostatic encounter complex. The results of the combined NMR and MD study of this engineered system will be reported in the next part of this paper."	"[Cardiofaciocutaneous syndrome, a Noonan syndrome related disorder: clinical and molecular findings in 11 patients]. To describe 11 patients with cardiofaciocutaneous syndrome (CFC) and compare them with 130 patients with other RAS-MAPK syndromes (111 Noonan syndrome patients [NS] and 19 patients with LEOPARD syndrome). Clinical data from patients submitted for genetic analysis were collected. Bidirectional sequencing analysis of PTPN11, SOS1, RAF1, BRAF, and MAP2K1 focused on exons carrying recurrent mutations, and of all KRAS exons were performed. Six different mutations in BRAF were identified in 9 patients, as well as 2 MAP2K1 mutations. Short stature, developmental delay, language difficulties and ectodermal anomalies were more frequent in CFC patients when compared with other neuro-cardio-faciocutaneous syndromes (P&lt;.05). In at least 2 cases molecular testing helped reconsider the diagnosis. CFC patients showed a rather severe phenotype but at least one patient with BRAF mutation showed no developmental delay, which illustrates the variability of the phenotypic spectrum caused by BRAF mutations. Molecular genetic testing is a valuable tool for differential diagnosis of CFC and NS related disorders."	"Molecular cloning and bioinformatics analysis of a new plasma membrane Na⁺/H⁺ antiporter gene from the halophyte Kosteletzkya virginica. A new plasma membrane Na(+)/H(+) antiporter gene (named as KvSOS1) was cloned from the halophyte Kosteletzkya virginica by reverse-transcription-polymerase chain reaction (RT-PCR) and rapid amplification of cDNA ends (RACE) technology, which is a homologue of SOS1 (salt overly sensitive 1). The full-length cDNA is 3850 bp and contains an open reading frame (ORF) encoding a protein of 1147 amino acids with a molecular weight of 127.56 kDa and a theoretical pI of 6.18. Bioinformatics analysis indicated that the deduced protein appears to be a transmembrane protein with 12 transmembrane domains at the N-terminal region and a long hydrophilic tail in cytoplasm at its C-terminal region and shares 72-82% identity at the peptide level with other plant plasma membrane Na(+)/H(+) antiporters."	"Comparative functional analysis of two wheat Na(+)/H (+) antiporter SOS1 promoters in Arabidopsis thaliana under various stress conditions. The bread wheat TaSOS1 has been previously shown to be induced by salt stress treatment. To further investigate the regulation of the TaSOS1 gene, the two genomic fragments Pr SOS1-AB and Pr SOS1-D have been isolated and sequenced. Pr SOS1-AB and Pr SOS1-D are the promoter regions of SOS1 alleles, which are localised on genomes A and/or B, and on genome D, respectively. Sequence analysis of these two promoters revealed the presence of cis-regulatory elements which could be required for abiotic stress and abscisic acid (ABA) responsiveness. Histochemical assays of stably transformed Arabidopsis T3 plants showed that Pr SOS1-AB and Pr SOS1-D are active in this heterologous system, and their activities were almost the same at early developmental stages (4-, 8- and 12-day-old transgenic Arabidopsis seedlings). Nevertheless, β-glucuronidase (GUS) activity was detected only in plants carrying the Pr SOS1-AB -gusA construct grown for 20 or 30 days. Furthermore, in these plants, the application of abiotic stress produced an accumulation in gusA transcripts. Taken together, these results show that, in this heterologous dicot system and under normal growth conditions, Pr SOS1-AB and Pr SOS1-D are age-dependent and organ-specific promoters. However, in the presence of different stress conditions, the activities of these two promoters became different and only Pr SOS1-AB is an abiotic stress-inducible promoter at different developmental stages. Thus, Pr SOS1-AB can be used for the development of abiotic stress-tolerant transgenic plants. "	"The CCCH zinc finger protein gene AtZFP1 improves salt resistance in Arabidopsis thaliana. The CCCH type zinc finger proteins are a super family involved in many aspects of plant growth and development. In this study, we investigated the response of one CCCH type zinc finger protein AtZFP1 (At2g25900) to salt stress in Arabidopsis. The expression of AtZFP1 was upregulated by salt stress. Compared to transgenic strains, the germination rate, emerging rate of cotyledons and root length of wild plants were significantly lower under NaCl treatments, while the inhibitory effect was significantly severe in T-DNA insertion mutant strains. At germination stage, it was mainly osmotic stress when treated with NaCl. Relative to wild plants, overexpression strains maintained a higher K(+), K(+)/Na(+), chlorophyll and proline content, and lower Na(+) and MDA content. Quantitative real-time PCR analysis revealed that the expression of stress related marker genes KIN1, RD29B and RD22 increased more significantly in transgenic strains by salt stress. Overexpression of AtZFP1 also enhanced oxidative and osmotic stress tolerance which was determined by measuring the expression of a set of antioxidant genes, osmotic stress genes and ion transport protein genes such as SOS1, AtP5CS1 and AtGSTU5. Overall, our results suggest that overexpression of AtZFP1 enhanced salt tolerance by maintaining ionic balance and limiting oxidative and osmotic stress."	"Unilateral giant cell lesion of the jaw in Noonan syndrome. Noonan syndrome (NS) is an etiologically heterogeneous disorder caused by mutations in the RAS-MAPK signaling pathway. Noonan-Like/Multiple Giant Cell Lesion (NL/MGCL) syndrome is initially described as the occurrence of multiple gnathic giant cell lesions in patients with phenotypic features of NS. Nowadays, NS/MGCL syndrome is considered a variant of the NS spectrum rather than a distinct entity. We report the case of a 14-year-old female patient carrying a SOS1 mutation with a unilateral giant cell lesion of the right mandible. Cross-sectional imaging such as CT and MRI are not specific for the diagnosis of oral giant cell lesions. Nonetheless, intralesional scattered foci of low SI on T2-WI, corresponding to hemosiderin deposits due to hemorrhage, can help the radiologist in narrowing down the differential diagnosis of gnathic lesions in patients with NS."	"EGF receptor uses SOS1 to drive constitutive activation of NFκB in cancer cells. Activation of nuclear factor κB (NFκB) is a central event in the responses of normal cells to inflammatory signals, and the abnormal constitutive activation of NFκB is important for the survival of most cancer cells. In nonmalignant human cells, EGF stimulates robust activation of NFκB. The kinase activity of the EGF receptor (EGFR) is required, because the potent and specific inhibitor erlotinib blocks the response. Down-regulating EGFR expression or inhibiting EGFR with erlotinib impairs constitutive NFκB activation in several different types of cancer cells and, conversely, increased activation of NFκB leads to erlotinib resistance in these cells. We conclude that EGF is an important mediator of NFκB activation in cancer cells. To explore the mechanism, we selected an erlotinib-resistant cell line in which the guanine nucleotide exchange factor Son of Sevenless 1 (SOS1), well known to be important for EGF-dependent signaling to MAP kinases, is overexpressed. Increased expression of SOS1 increases NFκB activation in several different types of cancer cells, and ablation of SOS1 inhibits EGF-induced NFκB activation in these cells, indicating that SOS1 is a functional component of the pathway connecting EGFR to NFκB activation. Importantly, the guanine nucleotide exchange activity of SOS1 is not required for NFκB activation. "	"Non-syndromic hereditary gingival fibromatosis in three Chinese families is not due to SOS1 gene mutations. Non-syndromic hereditary gingival fibromatosis (HGF) is a rare condition, characterized by a progressive gingival hyperplasia that occurs as an isolated disease. Hitherto, only one insertion (g.126,142-126,143insC) in son-of-sevenless-1 (SOS1) gene has been associated with non-syndromic HGF in a Brazilian family. The aim of the present study was to determine if SOS1 is the causative gene of non-syndromic HGF in the Chinese population. Peripheral blood samples were collected from six affected and seven unaffected individuals from three Chinese families with history of non-syndromic HGF. Genomic DNA was extracted and SOS1 gene exons were sequenced. Neither g.126,142-126,143insC nor any other novel mutation was detected in SOS1 gene. Our results suggest that the SOS1 may not be the gene responsible for HGF in these three Chinese families and, therefore, it is possible that other genes are involved in the manifestation of HGF in these Chinese HGF families. "	"Mutant huntingtin replaces Gab1 and interacts with C-terminal SH3 domain of growth factor receptor binding protein 2 (Grb2). Huntington's disease (HD) is caused due to expansion of CAG repeats in the gene huntingtin (Htt). Adaptor protein Grb2, involved in Ras-MAP kinase pathway, is a known interactor of Htt. Mutant Htt-Grb2 interaction reduces Ras-MAPK signaling in HD models. In normal cells Grb2 forms Grb2-Sos1-Gab1 complex through its N-SH3 and C-SH3 domains respectively, essential for sustained activation of Ras. We found that C-SH3 of Grb2 mediates the interaction with mutant Htt and this interaction being stronger could replace Gab1, with mutant Htt becoming the preferred partner. This would have immense effect on downstream signaling events. "	"[Expression profiling of metastasis-related microRNAs in early esophageal squamous cell carcinoma]. To study the difference of microRNA (miRNA) expression between two groups of early stage (pT1N0) esophageal squamous cell carcinoma (ESCC) patients who had different outcome and the prognostic significance of different miRNA in metastatic of early ESCC, and to identify useful prognostic markers in the selection of appropriate treatment for early ESCC patients. TaqMan human miRNA arrays and bioinformatics were used to detect and analyze the expression profiles of miRNAs in the two groups, and RT-PCR was used to verify the differences in miRNA expression. The miRNA arrays revealed a total of 41 markedly changed miRNAs in the survival group compared with the death group. Bioinformatics analysis, prediction and significant function analyses of targeted genes and pathway analysis identified that miR-27a, miR-143 and miR-886-5p levels were increased or decreased by seven-folds or more. The enriched target genes were GRB2, SOS1, MAPK1, EGFR, CBL, SPRY2, RPS6KA5, IGF1R, NGFR, MAPK14 and CREB1. These genes were significantly related to the following signaling pathways, i.e.Sprouty regulation of tyrosine kinase signals pathway, Erk1/Erk2 Mapk signaling pathway and transcription factor CREB and its extracellular signals. miR-27a, miR-886-5p, and miR-143 may be potential prognostic markers of metastasis for early ESCC. The detection of these miRNAs plays a directive role for the treatment options of early ESCC. The regulation of targeted genes and mechanism remain to be further studied."	"A putative soybean GmsSOS1 confers enhanced salt tolerance to transgenic Arabidopsis sos1-1 mutant. The cDNA of GmsSOS1, a putative plasma membrane Na(+)/H(+) antiporter gene isolated from Glycine max, Glycine soja, and their hybrid, was constructed into plant expression vector pCAMBIA 1300 and then transformed with Agrobacterium tumefaciens under the control of CaMV 35S promoter to Arabidopsis thaliana wild-type (WT) and mutant (atsos1-1) plants. By hygromycin resistance detection and PCR analysis, transgenic plants (WT35S:GmsSOS1 and atsos1-1 35S:GmsSOS1) were obtained. Seed germination, seedling growth, and Na(+) contents in roots and shoots were analytically compared among WT, atsos1-1 mutant, and their transgenic lines under salt stress. The results showed that when GmsSOS1 was integrated into the genome of A. thaliana, the inhibitions of salt stress on seed germination and seedling growth were all significantly improved, and enhanced salt tolerance was displayed, which may be attributed to the decrease of Na(+) absorption in roots and transportation in shoots of the transgenic lines, especially for that of atsos1-1 mutant. "	"Mixture modelling analysis of one-month disability after stroke: stroke outcomes study (SOS1). Understanding the heterogeneity in disability after stroke is important to guide treatment and rehabilitation planning. We explored mixture modelling analysis to identify subgroups of stroke disability and factors associated with disability subgroups. Analyses were performed using secondary data from a cohort of 448 stroke patients who participated in a 2-year study of stroke outcomes. Mixture modelling approach was used to determine subgroups of early disability following stroke based on the Barthel Index, General Health Questionnaire (GHQ-28), Frenchay Activities Index and the Nottingham Extended Activities of Daily Living Scale. Five distinct disability groups were identified. Nineteen (4.2%) patients were classified as having very severe disability, 58 (12.9%) severe disability, 133 (29.7%) moderate disability, 198 (44.2%) mild disability and 40 (8.9%) a mood disorder. Compared to the mild group, patients in the &quot;very severe&quot; group were more likely to be elderly and to have had a previous stroke, and less likely to live alone and had a greater risk of mortality 2 years after stroke. Patients in the mood disorder group showed greater dependency in activities of daily living were younger compared to the other groups and had a greater risk of having mood symptoms 2 years after stroke. Mixture modelling of 1-month disability after stroke using a broad range of outcome measures has identified clinically meaningful groups relating to long-term outcomes."	"Gallic acid inhibits migration and invasion of SCC-4 human oral cancer cells through actions of NF-κB, Ras and matrix metalloproteinase-2 and -9. Oral cancer is one of the major causes of mortality in humans and squamous cell carcinoma is the most common type of oral cancer. Gallic acid (GA) is a natural product that induces cell death through cell cycle arrest and induction of apoptosis. There is no available information on whether GA affects cell migration and invasion of human oral cancer cells. We determined if GA inhibited migration and invasion of SCC-4 (human squamous cell carcinoma) human oral cancer cells. GA significantly inhibited migration and invasion of SCC-4 cells based on results from the wound healing assay and Matrigel Cell Migration Assay and Invasion System. We also showed that GA significantly inhibited matrix metalloproteinase (MMP)-2 and MMP-9 activity. GA reduced protein levels of FAK, MEKK3, p-PERK, p-p38, p-JNK1/2, p-ERK1/2, SOS1, RhoA, Ras, PKC, p-AKT(Thr308), PI3K, NF-κB p65, MMP-2 and MMP-9 in SCC-4 cells. Translocation of NF-κB and RhoA from the cytosol to the nucleus was reduced by GA in SCC-4 cells. In summary, GA inhibits migration and invasion of SCC-4 cells by inhibiting NF-κB expression causing suppression of MMP-2 and MMP-9 activity. GA may have potential as a therapeutic agent for the treatment of oral cancer."	"Rasfonin, a novel 2-pyrone derivative, induces ras-mutated Panc-1 pancreatic tumor cell death in nude mice. Rasfonin is a novel 2-pyrone derivative reported to induce apoptosis in ras-dependent cells. In this study, its effects on ras-mutated pancreatic cancer cells were investigated in vitro and in vivo. Two human pancreatic cancer cell lines Panc-1 (mutated K-ras) and BxPC-3 (wild-type K-ras) were selected to test the effects of rasfonin on cell proliferation, clone formation, migration and invasion in vitro. Immunoblotting was used to detect the expressions of EGFR-Ras-Raf-MEK-ERK signaling pathway proteins. Ras activity was measured using a pull-down ELISA kit and guanine exchange factor (GEF)/GTPase-activating proteins (GAP) activity was measured by [(3)H]-GDP radiometric ligand binding. For an in vivo study, CD1 nude mice bearing Panc-1 cells were treated with rasfonin or Salirasib (FTS). We found that rasfonin suppressed proliferation more strongly in Panc-1 cells (IC50=5.5 μM) than BxPC-3 cells (IC50=10 μM) in vitro. Clone formation, migration and invasion by Panc-1 cells were also reduced by rasfonin. Rasfonin had little effect on the farnesylation of Ras, but it strongly downregulated Ras activity and consequently phosphorylation of c-Raf/MEK/ERK. Further experiments indicated that rasfonin reduced Son of sevenless (Sos1) expression but did not alter GEF and GAP activities. The in vivo experiments also revealed that rasfonin (30 mg/kg) delayed the growth of xenograft tumors originating from Panc-1 cells. Tumor weight was ultimately decreased after 20 days of treatment of rasfonin. Rasfonin is a robust inhibitor of pancreatic cancers with the K-ras mutation. The reduction of Sos1 expression and the consequently depressed Ras-MAPK activity could be important in its anticancer activity."	"Distinct roles for SOS1 in the convergent evolution of salt tolerance in Eutrema salsugineum and Schrenkiella parvula. Eutrema salsugineum and Schrenkiella parvula are salt-tolerant relatives of the salt-sensitive species Arabidopsis thaliana. An important component of salt tolerance is the regulation of Na(+) ion homeostasis, which occurs in part through proteins encoded by the Cation/Proton Antiporter-1 (CPA1) gene family. We used a combination of evolutionary and functional analyses to examine the role of CPA1 genes in the salt tolerance of E. salsugineum and Sc. parvula, and found evidence that changes in CPA1-mediated Na(+) extrusion may contribute to the salt tolerance of both species. Specifically, we found that a member of the CPA1 family, the Na(+)/H(+) antiporter gene Salt Overly Sensitive 1 (SOS1), evolved under positive selection in E. salsugineum. In the absence of activation by the SOS2 kinase/SOS3 calcium-binding protein complex, SOS1 from E. salsugineum (EsSOS1) confers greater salt tolerance than SOS1 from Sc. parvula (SpSOS1) and Ar. thaliana (AtSOS1) when expressed in a salt-sensitive strain of Saccharomyces cerevisiae. A single amino acid change in the putative autoinhibitory domain is required but not sufficient for the enhanced salt tolerance conferred by EsSOS1. When activated by SOS2 and SOS3, both EsSOS1 and SpSOS1 confer greater salt tolerance than AtSOS1. Enhanced SOS1-mediated Na(+) extrusion therefore appears to contribute to the salt tolerance of both E. salsugineum and Sc. parvula, although through apparently different mechanisms. "	"SUMOylation of Grb2 enhances the ERK activity by increasing its binding with Sos1. Grb2 (Growth factor receptor-bound protein 2) is a key adaptor protein in maintaining the ERK activity via linking Sos1 (Son of sevenless homolog 1) or other proteins to activated RTKs, such as EGFR. Currently, little knowledge is available concerning the post-translational modification (PTM) of Grb2 except for its phosphorylation. Since emerging evidences have highlighted the importance of SUMOylation (Small ubiquitin-related modifier), a reversible PTM, in modulating protein functions, we wondered if Grb2 could be SUMOylated and thereby influences its functions especially involved in the Ras/MEK/ERK pathway. SUMOylation of Grb2 was analyzed with the in vivo SUMOylation assay using the Ni2+-NTA affinity pulldown and the in vitro E.coli-based SUMOylation assay. To test the ERK activity and cell transformation, the murine fibroblast cell line NIH/3T3 and the murine colon cancer cell line CMT-93 were used for the experiments including Grb2 knockdown, ectopic re-expression, cell transformation and migration. Immunoprecipitation (IP) was employed for seeking proteins that interact with SUMO modified Grb2. Xenograft tumor model in mice was conducted to verify that Grb2 SUMOylation regulated tumorigenesis in vivo. Grb2 can be SUMOylated by SUMO1 at lysine 56 (K56), which is located in the linker region between the N-terminal SH3 domain and the SH2 domain. Knockdown of Grb2 reduced the ERK activity and suppressed cell motility and tumorigenesis in vitro and in vivo, which were all rescued by stable ectopic re-expression of wild-type Grb2 but not the mutant Grb2K56R. Furthermore, Grb2 SUMOylation at K56 increased the formation of Grb2-Sos1 complex, which sequentially leads to the activation of Ras/MEK/MAPK pathway. Our results provide evidences that Grb2 is SUMOylated in vivo and this modification enhances ERK activities via increasing the formation of Grb2-Sos1 complex, and may consequently promote cell motility, transformation and tumorigenesis."	"Functional analyses of a putative plasma membrane Na+/H+ antiporter gene isolated from salt tolerant Helianthus tuberosus. Jerusalem artichokes (Helianthus tuberosus L.) can tolerate relatively higher salinity, drought and heat stress. In this paper, we report the cloning of a Salt Overly Sensitive 1 (SOS1) gene encoding a plasma membrane Na(+)/H(+) antiporter from a highly salt-tolerant genotype of H. tuberosus, NY1, named HtSOS1 and characterization of its function in yeast and rice. The amino acid sequence of HtSOS1 showed 83.4% identity with the previously isolated SOS1 gene from the Chrysanthemum crassum. The mRNA level in the leaves of H. tuberosus was significantly up-regulated by presence of high concentrations of NaCl. Localization analysis using rice protoplast expression showed that the protein encoded by HtSOS1 was located in the plasma membrane. HtSOS1 partially suppressed the salt sensitive phenotypes of a salt sensitive yeast strain. In comparison with wild type (Oryza sativa L., ssp. Japonica. cv. Nipponbare), the transgenic rice expressed with HtSOS1 could exclude more Na(+) and accumulate more K(+). Expression of HtSOS1 decreased Na(+) content much larger in the shoot than in the roots, resulting in more water content in the transgenic rice than WT. These data suggested that HtSOS1 may be useful in transgenic approaches to improving the salinity tolerance of glycophyte."	"The over-expression of Chrysanthemum crassum CcSOS1 improves the salinity tolerance of chrysanthemum. Soil salinity represents a major constraint on plant growth. Here, we report that the over-expression of the Chrysanthemum crassum plasma membrane Na(+)/H(+) antiporter gene CcSOS1, driven by the CaMV 35S promoter, improved the salinity tolerance of chrysanthemum 'Jinba'. In salinity-stressed transgenic plants, both the proportion of the leaf area suffering damage and the electrical conductivity of the leaf were lower in the transgenic lines than in salinity-stressed wild type plants. After a 6 day exposure to 200 mM NaCl, the leaf content of both chlorophyll (a+b) and proline was higher in the transgenic than in the wild type plants. The activity of both superoxide dismutase and peroxidase was higher in the transgenic than in the wild type plants throughout the period of NaCl stress. The transgenic plants had a stronger control over the ingress of Na(+) into the plant, particularly with respect to the youngest leaves, and so maintained a more favorable K(+)/Na(+) ratio. The result suggests that a possible strategy for improving the salinity tolerance of chrysanthemum could target the restriction of Na(+) accumulation. This study is the first to report the transgenic expression of a Na(+) efflux carrier in chrysanthemum."	"Approach for targeting Ras with small molecules that activate SOS-mediated nucleotide exchange. Aberrant activation of the small GTPase Ras by oncogenic mutation or constitutively active upstream receptor tyrosine kinases results in the deregulation of cellular signals governing growth and survival in ∼30% of all human cancers. However, the discovery of potent inhibitors of Ras has been difficult to achieve. Here, we report the identification of small molecules that bind to a unique pocket on the Ras:Son of Sevenless (SOS):Ras complex, increase the rate of SOS-catalyzed nucleotide exchange in vitro, and modulate Ras signaling pathways in cells. X-ray crystallography of Ras:SOS:Ras in complex with these molecules reveals that the compounds bind in a hydrophobic pocket in the CDC25 domain of SOS adjacent to the Switch II region of Ras. The structure-activity relationships exhibited by these compounds can be rationalized on the basis of multiple X-ray cocrystal structures. Mutational analyses confirmed the functional relevance of this binding site and showed it to be essential for compound activity. These molecules increase Ras-GTP levels and disrupt MAPK and PI3K signaling in cells at low micromolar concentrations. These small molecules represent tools to study the acute activation of Ras and highlight a pocket on SOS that may be exploited to modulate Ras signaling. "	"BDNF mimetic compound LM22A-4 regulates cementoblast differentiation via the TrkB-ERK/Akt signaling cascade. Brain-derived neurotrophic factor (BDNF) activates its receptor TrkB, and promotes neuronal survival, differentiation, and synaptic functions. Furthermore, we have revealed that BDNF can also regulate cementoblast differentiation and cellular survival via TrkB-ERK/Akt signaling cascade, which, in turn, results in the induction of periodontal tissue regeneration. Recently, using in silico screening with a BDNF loop-domain pharmacophore, a small molecule BDNF mimetic, called LM22A-4 that can facilitate TrkB signaling in hippocampal neurons to prevent cell death, was identified. Therefore, this study aimed to investigate the effect of LM22A-4 on cementoblast differentiation and its molecular mechanism. LM22A-4 and BDNF stimulation was found to enhance OPN, ALPase, and OC mRNA expression in immortalized human cementoblast-like (HCEM) cells, indicating cementoblast differentiation. In addition, similar to this result, both LM22A-4 and BDNF treatment facilitated TrkB phosphorylation and TrkB binding to adaptor proteins, such as Shc, GRB2, and SOS1, indicating TrkB activation. Importantly, the downstream target ERK and Akt was also phosphorylated by LM22A-4 and BDNF stimulation. Moreover, BDNF mimetic stimulation transactivated ERK from the cytoplasm into the nuclei in HCEM cells. It is noteworthy that a tyrosine kinase receptor inhibitor, K252a, an MEK-ERK inhibitor (U0126), and a PI3Kinase-Akt inhibitor (LY294002) remarkably attenuated TrkB, ERK, and Akt phosphorylation as well as increase of OPN mRNA expression in the HCEM cells, respectively. These findings suggest that the small molecule BDNF mimetic LM22A-4 regulates cementoblast differentiation via the TrkB-ERK/Akt signaling cascade. Therefore, this small compound may lead to the development of a novel therapeutic approach for periodontal tissue regeneration. "	"CIIA negatively regulates the Ras-Erk1/2 signaling pathway through inhibiting the Ras-specific GEF activity of SOS1. Son of sevenless 1 (SOS1) is a Ras-specific guanine-nucleotide-exchange factor (GEF) that mediates intracellular signaling processes induced by receptor tyrosine kinases. In this study, we show that CIIA (also known as VPS28) physically associates with SOS1 and thereby inhibits the GEF activity of SOS1 on Ras, which prevents the epidermal growth factor (EGF)-induced activation of the Ras-Erk1/2 pathway. Furthermore, CIIA inhibited cyclin D1 expression, as well as DNA, synthesis in response to EGF. Intriguingly, CIIA failed to inhibit the Ras-specific GEF activity of Noonan-syndrome-associated SOS1 mutants (M269R, R552G, W729L and E846K). Taken together, our results suggest that CIIA functions as a negative modulator of the SOS1-Ras signaling events initiated by peptide growth factors including EGF."	"A calcium-independent activation of the Arabidopsis SOS2-like protein kinase24 by its interacting SOS3-like calcium binding protein1. The salt stress-induced SALT-OVERLY-SENSITIVE (SOS) pathway in Arabidopsis (Arabidopsis thaliana) involves the perception of a calcium signal by the SOS3 and SOS3-like CALCIUM-BINDING PROTEIN8 (SCaBP8) calcium sensors, which then interact with and activate the SOS2 protein kinase, forming a complex at the plasma membrane that activates the SOS1 Na⁺/H⁺ exchanger. It has recently been reported that phosphorylation of SCaBP proteins by SOS2-like protein kinases (PKSs) stabilizes the interaction between the two proteins as part of a regulatory mechanism that was thought to be common to all SCaBP and PKS proteins. Here, we report the calcium-independent activation of PKS24 by SCaBP1 and show that activation is dependent on interaction of PKS24 with the C-terminal tail of SCaBP1. However, unlike what has been found for other PKS-SCaBP pairs, multiple amino acids in SCaBP1 are phosphorylated by PKS24, and this phosphorylation is dependent on the interaction of the proteins through the PKS24 FISL motif and on the efficient activation of PKS24 by the C-terminal tail of SCaBP1. In addition, we show that Thr-211 and Thr-212, which are not common phosphorylation sites in the conserved PFPF motif found in most SCaBP proteins, are important for this activation. Finally, we also found that SCaBP1-regulated PKS24 kinase activity is important for inactivating the Arabidopsis plasma membrane proton-translocating adenosine triphosphatase. Together, these results suggest the existence of a novel SCaBP-PKS regulatory mechanism in plants."	"Crude extract of Rheum palmatum L inhibits migration and invasion of LS1034 human colon cancer cells acts through the inhibition of matrix metalloproteinase-2/-9 by MAPK signaling. Crude extract of Rheum palmatum L. (CERP) has been used to treat different diseases in the Chinese population for decades. In this study, we investigated the anti-metastasis effects of CERP on LS1034 human colorectal cancer cells in vitro and examined potential mechanisms of its effects. CERP significantly inhibited cell migration and invasion of LS1034 cells. We also found that CERP inhibited protein levels of matrix metalloproteinases-2 (MMP-2) and matrix metalloproteinases-9 (MMP-9), and cytosolic NF-kB p65, RHO A, ROCK 1. Furthermore, we found CERP inhibited protein levels of GRB2, SOS1, MKK7, FAK, Rho A, ROCK 1, VEGF, PKC, AKT, phosphor-AKT (Thr308), Cyclin D, iNOS, COX2, NF-kB p65, p-ERK1/2, p-JNK1/2, p-p38, p-c-jun, MMP-2, MMP-9, MMP-1, MMP-7, MMP-10, UPA and increased the protein level of Ras in LS1034 cells. In conclusion, our results suggest that CERP may be used as a novel anti-metastasis agent for the treatment of human colon cancer cells."	"Sos1 regulates sustained TCR-mediated Erk activation. The duration and/or the magnitude of Ras-Erk activation are known to be crucial for cell-fate decisions. In T cells, sustained Erk activation correlates with differentiation/proliferation, whereas transient Erk activation parallels with unresponsiveness/apoptosis. The mechanism by which Son of sevenless (Sos) proteins and Ras guanyl-releasing protein 1 (RasGRP1) contribute to dynamics of Erk activation in mature T cells is not yet known. Here, we have assessed this issue using stimuli inducing either transient or sustained TCR signaling and RNA interference mediated suppression of Sos1, Sos2, and RasGRP1 expression in primary human T cells. We found that transient Erk activation depends on RasGRP1 but not on Sos. Conversely, sustained Erk signaling and T-cell activation depend on both Sos1 and RasGRP1. In summary, our data show for the first time that the two guanine nucleotide exchange factors expressed in T cells are differentially involved in the regulation of the duration of Erk phosphorylation and T-cell activation. "	"Genome wide expression analysis suggests perturbation of vascular homeostasis during high altitude pulmonary edema. High altitude pulmonary edema (HAPE) is a life-threatening form of non-cardiogenic edema which occurs in unacclimatized but otherwise normal individuals within two to four days after rapid ascent to altitude beyond 3000 m. The precise pathoetiology and inciting mechanisms regulating HAPE remain unclear. We performed global gene expression profiling in individuals with established HAPE compared to acclimatized individuals. Our data suggests concurrent modulation of multiple pathways which regulate vascular homeostasis and consequently lung fluid dynamics. These pathways included those which regulate vasoconstriction through smooth muscle contraction, cellular actin cytoskeleton rearrangements and endothelial permeability/dysfunction. Some notable genes within these pathways included MYLK; rho family members ARGEF11, ARHGAP24; cell adhesion molecules such as CLDN6, CLDN23, PXN and VCAM1 besides other signaling intermediates. Further, several important regulators of systemic/pulmonary hypertension including ADRA1D, ECE1, and EDNRA were upregulated in HAPE. We also observed significant upregulation of genes involved in paracrine signaling through chemokines and lymphocyte activation pathways during HAPE represented by transcripts of TNF, JAK2, MAP2K2, MAP2K7, MAPK10, PLCB1, ARAF, SOS1, PAK3 and RELA amongst others. Perturbation of such pathways can potentially skew vascular homeostatic equilibrium towards altered vascular permeability. Additionally, differential regulation of hypoxia-sensing, hypoxia-response and OXPHOS pathway genes in individuals with HAPE were also observed. Our data reveals specific components of the complex molecular circuitry underlying HAPE. We show concurrent perturbation of multiple pathways regulating vascular homeostasis and suggest multi-genic nature of regulation of HAPE."	"[Cloning and functional analysis of Phyllostachys edulis MYB transcription factor PeMYB2]. MYB-type transcription factor is one of the largest families in plants, which plays important roles in accepting stress signals from environment and regulating the expression of stress-tolerant genes. In this paper, using homologous cloning and RACE technology, a MYB-type transcription factor, designated PeMYB2, was cloned from Phyllostachys edulis. The results of bioinformatics showed that PeMYB2 is a typical R2R3-MYB. It contained two tandem repeats in its N-terminus, and a membrane protein DUF3651 in its C-terminus. In addition, phylogenetic analysis indicated that PeMYB2 shared the highest homology with 85.98% to OsMYB18 protein from Oryza sativa spp. Japonica. In addition, a yeast one-hybrid assay showed that PeMYB2 could activate the expression of downstream genes. After PeMYB2 was transformed into Arabidopsis thaliana, seven PeMYB2 transgenic Arabidopsis lines were obtained. Phenotypic analysis of the transgenic and wild-type Arabidopsis showed that over-expression of PeMYB2 caused delayed flower or dwarfism in transgenic Arabidopsis. Under the abiotic stress conditions, such as salt and cold stresses, the over-expression of PeMYB2 in Arabidopsis had higher survival rate than the wild-type Arabidopsis. Expression analysis of saline stress response marker genes in the transgenic and wild-type plants under the salt stress condition showed that PeMYB2 regulated the expression of NXH1, SOS1, RD29A, and COR15A. As the result, PeMYB2 might play an important role in various responses to abiotic stresses in P. edulis."	"Diagnosis of Noonan syndrome and related disorders using target next generation sequencing. Noonan syndrome is an autosomal dominant developmental disorder with a high phenotypic variability, which shares clinical features with other rare conditions, including LEOPARD syndrome, cardiofaciocutaneous syndrome, Noonan-like syndrome with loose anagen hair, and Costello syndrome. This group of related disorders, so-called RASopathies, is caused by germline mutations in distinct genes encoding for components of the RAS-MAPK signalling pathway. Due to high number of genes associated with these disorders, standard diagnostic testing requires expensive and time consuming approaches using Sanger sequencing. In this study we show how targeted Next Generation Sequencing (NGS) technique can enable accurate, faster and cost-effective diagnosis of RASopathies. In this study we used a validation set of 10 patients (6 positive controls previously characterized by Sanger-sequencing and 4 negative controls) to assess the analytical sensitivity and specificity of the targeted NGS. As second step, a training set of 80 enrolled patients with a clinical suspect of RASopathies has been tested. Targeted NGS has been successfully applied over 92% of the regions of interest, including exons for the following genes: PTPN11, SOS1, RAF1, BRAF, HRAS, KRAS, NRAS, SHOC, MAP2K1, MAP2K2, CBL. All expected variants in patients belonging to the validation set have been identified by targeted NGS providing a detection rate of 100%. Furthermore, all the newly detected mutations in patients from the training set have been confirmed by Sanger sequencing. Absence of any false negative event has been excluded by testing some of the negative patients, randomly selected, with Sanger sequencing. Here we show how molecular testing of RASopathies by targeted NGS could allow an early and accurate diagnosis for all enrolled patients, enabling a prompt diagnosis especially for those patients with mild, non-specific or atypical features, in whom the detection of the causative mutation usually requires prolonged diagnostic timings when using standard routine. This approach strongly improved genetic counselling and clinical management."	"Role of SNTA1 in Rac1 activation, modulation of ROS generation, and migratory potential of human breast cancer cells. Alpha-1-syntrophin (SNTA1) has been implicated in the activation of Rac1. However, the underlying mechanism has not yet been explored. Here, we show that a novel complex, involving SNTA1, P66shc, and Grb2 proteins, is involved in Rac1 activation. Co-immunoprecipitation assays were used to show the complex formation, while siRNAs and shRNAs were used to downregulate expression of these proteins. Various Rac1 activation assays and functional assays, such as migration assays, in vitro wound healing assays, cell proliferation assays, and ROS generation assays, were also performed. The results showed a significant increase in activation of Rac1 when SNTA1 and P66shc were overexpressed, whereas depletion of SNTA1 and P66shc expression effectively reduced the levels of active Rac1. The results indicated a significant displacement of Sos1 protein from Grb2 when SNTA1 and P66shc are overexpressed in breast cancer cell lines, resulting in Sos1 predominantly forming a complex with Eps8 and E3b1. In addition, the SNTA1/P66shc-mediated Rac1 activation resulted in an increase in reactive oxygen species (ROS) production and migratory potential in human breast cancer cells. Together, our results present a possible mechanism of Rac1 activation involving SNTA1 and emphasise its role in ROS generation, cell migration, and acquisition of malignancy."	"Expression profiling and functional characterization of a CBL-interacting protein kinase gene from Populus euphratica. This is the first report on the function of a member of the CIPK family in Populus euphratica. The Ca(2+)-dependent salt overly sensitive (SOS) pathway has been shown to play an essential role in maintaining ion homeostasis and conferring salt tolerance. One component of the SOS pathway, SOS1, was identified in the salt-resistant tree P. euphratica. In this study, we identified and functionally characterized another component of the SOS pathway in this tree called PeSOS2 or PeCIPK26. On the basis of protein sequence similarity and complementation studies in Arabidopsis, PeCIPK26 was concluded to be the functional homolog of Arabidopsis AtSOS2. Yeast two-hybrid assays revealed that PeCIPK26 can interact with four calcineurin B-like (CBL) genes, i.e., PeCBL1, PeCBL4/PeSOS3, PeCBL9 and PeCBL10. Autophosphorylation assays showed that PeCIPK26 is an active protein kinase. Expression profile analysis demonstrated that PeCIPK26 is expressed in root, stem and leaf, and throughout the cell including cell membrane, cytoplasm and nucleus; in addition, it can be induced under salt-stress treatment. Functions of PeCIPK26 in salt tolerance were evaluated by gene overexpression in Arabidopsis cipk24 mutants. The better salt tolerance of transgenic plants relative to mutants was shown by their higher germination rate, lower Na(+) accumulation and higher capacity to discharge Na(+) when grown with NaCl. These results suggest the involvement of PeCIPK26 in the salt-stress response of P. euphratica."	"Identifying beneficial qualities of Trichoderma parareesei for plants. Trichoderma parareesei and Trichoderma reesei (teleomorph Hypocrea jecorina) produce cellulases and xylanases of industrial interest. Here, the anamorphic strain T6 (formerly T. reesei) has been identified as T. parareesei, showing biocontrol potential against fungal and oomycete phytopathogens and enhanced hyphal growth in the presence of tomato exudates or plant cell wall polymers in in vitro assays. A Trichoderma microarray was used to examine the transcriptomic changes in T6 at 20 h of interaction with tomato plants. Out of a total 34,138 Trichoderma probe sets deposited on the microarray, 250 showed a significant change of at least 2-fold in expression in the presence of tomato plants, with most of them being downregulated. T. parareesei T6 exerted beneficial effects on tomato plants in terms of seedling lateral root development, and in adult plants it improved defense against Botrytis cinerea and growth promotion under salt stress. Time course expression patterns (0 to 6 days) observed for defense-related genes suggest that T6 was able to prime defense responses in the tomato plants against biotic and abiotic stresses. Such responses undulated, with a maximum upregulation of the jasmonic acid (JA)/ethylene (ET)-related LOX1 and EIN2 genes and the salt tolerance SOS1 gene at 24 h and that of the salicylic acid (SA)-related PR-1 gene at 48 h after T6 inoculation. Our study demonstrates that the T. parareesei T6-tomato interaction is beneficial to both partners. "	"Novel association of neurofibromatosis type 1-causing mutations in families with neurofibromatosis-Noonan syndrome. Neurofibromatosis-Noonan syndrome (NFNS) is a rare condition with clinical features of both neurofibromatosis type 1 (NF1) and Noonan syndrome (NS). All three syndromes belong to the RASopathies, which are caused by dysregulation of the RAS-MAPK pathway. The major gene involved in NFNS is NF1, but co-occurring NF1 and PTPN11 mutations in NFNS have been reported. Knowledge about possible involvement of additional RASopathy-associated genes in NFNS is, however, very limited. We present a comprehensive clinical and molecular analysis of eight affected individuals from three unrelated families displaying features of NF1 and NFNS. The genetic etiology of the clinical phenotypes was investigated by mutation analysis, including NF1, PTPN11, SOS1, KRAS, NRAS, BRAF, RAF1, SHOC2, SPRED1, MAP2K1, MAP2K2, and CBL. All three families harbored a heterozygous NF1 variant, where the first family had a missense variant, c.5425C&gt;T;p.R1809C, the second family a recurrent 4bp-deletion, c.6789_6792delTTAC;p.Y2264Tfs*6, and the third family a splice-site variant, c.2991-1G&gt;A, resulting in skipping of exon 18 and an in-frame deletion of 41 amino acids. These NF1 variants have all previously been reported in NF1 patients. Surprisingly, both c.6789_6792delTTAC and c.2991-1G&gt;A are frequently associated with NF1, but association to NFNS has, to our knowledge, not previously been reported. Our results support the notion that NFNS represents a variant of NF1, genetically distinct from NS, and is caused by mutations in NF1, some of which also cause classical NF1. Due to phenotypic overlap between NFNS and NS, we propose screening for NF1 mutations in NS patients, preferentially when café-au-lait spots are present."	"Kindlin-2 regulates renal tubular cell plasticity by activation of Ras and its downstream signaling. Kindlin-2 is an adaptor protein that contributes to renal tubulointerstitial fibrosis (TIF). Epithelial-to-mesenchymal transition (EMT) in tubular epithelial cells was regarded as one of the key events in TIF. To determine whether kindlin-2 is involved in the EMT process, we investigated its regulation of EMT in human kidney tubular epithelial cells (TECs) and explored the underlying mechanism. In this study, we found that overexpression of kindlin-2 suppressed epithelial marker E-cadherin and increased the expression of fibronectin and the myofibroblast marker α-smooth muscle actin (SMA). Kindlin-2 significantly activated ERK1/2 and Akt, and inhibition of ERK1/2 or Akt reversed kindlin-2-induced EMT in human kidney TECs. Mechanistically, kindlin-2 interacted with Ras and son of sevenless (Sos)-1. Furthermore, overexpression of kindlin-2 increased Ras activation through recruiting Sos-1. Treatment with a Ras inhibitor markedly repressed kindlin-2-induced ERK1/2 and Akt activation, leading to restraint of EMT. We further demonstrated that knockdown of kindlin-2 inhibited EGF-induced Ras-Sos-1 interaction, resulting in reduction of Ras activation and suppression of EMT stimulated by EGF. Importantly, we found that depletion of kindlin-2 significantly inhibited activation of ERK1/2 and Akt signaling in mice with unilateral ureteral obstruction. We conclude that kindlin-2, through activating Ras and the downstream ERK1/2 and Akt signaling pathways, plays an important role in regulating renal tubular EMT and could be a potential therapeutic target for the treatment of fibrotic kidney diseases. "	"Heterologous expression of the wheat aquaporin gene TaTIP2;2 compromises the abiotic stress tolerance of Arabidopsis thaliana. Aquaporins are channel proteins which transport water across cell membranes. We show that the bread wheat aquaporin gene TaTIP2;2 maps to the long arm of chromosome 7b and that its product localizes to the endomembrane system. The gene is expressed constitutively in both the root and the leaf, and is down-regulated by salinity and drought stress. Salinity stress induced an increased level of C-methylation within the CNG trinucleotides in the TaTIP2;2 promoter region. The heterologous expression of TaTIP2;2 in Arabidopsis thaliana compromised its drought and salinity tolerance, suggesting that TaTIP2;2 may be a negative regulator of abiotic stress. The proline content of transgenic A. thaliana plants fell, consistent with the down-regulation of P5CS1, while the expression of SOS1, SOS2, SOS3, CBF3 and DREB2A, which are all stress tolerance-related genes acting in an ABA-independent fashion, was also down-regulated. The supply of exogenous ABA had little effect either on TaTIP2;2 expression in wheat or on the phenotype of transgenic A. thaliana. The expression level of the ABA signalling genes ABI1, ABI2 and ABF3 remained unaltered in the transgenic A. thaliana plants. Thus TaTIP2;2 probably regulates the response to stress via an ABA-independent pathway(s). "	"The ability of Sos1 to oligomerize the adaptor protein LAT is separable from its guanine nucleotide exchange activity in vivo. The activation of the small guanosine triphosphatase Ras by the guanine nucleotide exchange factor (GEF) Sos1 (Son of Sevenless 1) is a central feature of many receptor-stimulated signaling pathways. In developing T cells (thymocytes), Sos1-dependent activation of extracellular signal-regulated kinase (ERK) is required to stimulate cellular proliferation and differentiation. We showed that in addition to its GEF activity, Sos1 acted as a scaffold to nucleate oligomerization of the T cell adaptor protein LAT (linker for activation of T cells) in vivo. The scaffold function of Sos1 depended on its ability to bind to the adaptor protein Grb2. Furthermore, the GEF activity of Sos1 and the Sos1-dependent oligomerization of LAT were separable functions in vivo. Whereas the GEF activity of Sos1 was required for optimal ERK phosphorylation in response to T cell receptor (TCR) stimulation, the Sos1-dependent oligomerization of LAT was required for maximal TCR-dependent phosphorylation and activation of phospholipase C-γ1 and Ca(2+) signaling. Finally, both of these Sos1 functions were required for early thymocyte proliferation. Whereas transgenic restoration of either the GEF activity or the LAT oligomerization functions of Sos1 alone failed to rescue thymocyte development in Sos1-deficient mice, simultaneous reconstitution of these two signals in the same cell restored normal T cell development. This ability of Sos1 to act both as a RasGEF and as a scaffold to nucleate Grb2-dependent adaptor oligomerization may also occur in other Grb2-dependent pathways, such as those activated by growth factor receptors. "	"Targeting protein-protein interaction by small molecules. Protein-protein interactions (PPIs) are critical regulatory events in physiology and pathology, and they represent an important target space for pharmacological intervention. However, targeting PPIs with small molecules is challenging owing to the large surface area involved in protein-protein binding and the lack of obvious small-molecule-binding pockets at many protein-protein interfaces. Nonetheless, successful examples of small-molecule modulators of PPIs have been growing in recent years. This article reviews some of the recent advances in the discovery of small-molecule regulators of PPIs that involve key oncogenic proteins. Our discussion focuses on the three key modes of action for these small-molecule modulators: orthosteric inhibition, allosteric regulation, and interfacial binding/stabilization. Understanding the opportunities and challenges of these diverse mechanisms will help guide future efforts in developing small-molecule modulators against PPIs."	"A constitutively active form of a durum wheat Na⁺/H⁺ antiporter SOS1 confers high salt tolerance to transgenic Arabidopsis. The SOS signaling pathway has emerged as a key mechanism in preserving the homeostasis of Na⁺ and K⁺ under saline conditions. We have recently identified and functionally characterized, by complementation studies in yeast, the gene encoding the durum wheat plasma membrane Na⁺/H⁺ antiporter (TdSOS1). To extend these functional studies to the whole plant level, we complemented Arabidopsis sos1-1 mutant with wild-type TdSOS1 or with the hyperactive form TdSOS1∆972 and compared them to the Arabidopsis AtSOS1 protein. The Arabidopsis sos1-1 mutant is hypersensitive to both Na⁺ and Li⁺ ions. Compared with sos1-1 mutant transformed with the empty binary vector, seeds from TdSOS1 or TdSOS1∆972 transgenic plants had better germination under salt stress and more robust seedling growth in agar plates as well as in nutritive solution containing Na⁺ or Li⁺ salts. The root elongation of TdSOS1∆972 transgenic lines was higher than that of Arabidopsis sos1-1 mutant transformed with TdSOS1 or with the endogenous AtSOS1 gene. Under salt stress, TdSOS1∆972 transgenic lines showed greater water retention capacity and retained low Na⁺ and high K⁺ in their shoots and roots. Our data showed that the hyperactive form TdSOS1∆972 conferred a significant ionic stress tolerance to Arabidopsis plants and suggest that selection of hyperactive alleles of the SOS1 transport protein may pave the way for obtaining salt-tolerant crops."	"Sodium transport system in plant cells. Since sodium, Na, is a non-essential element for the plant growth, the molecular mechanism of Na(+) transport system in plants has remained elusive for the last two decades. The accumulation of Na(+) in soil through irrigation for sustainable agricultural crop production, particularly in arid land, and by changes in environmental and climate conditions leads to the buildup of toxic level of salts in the soil. Since the latter half of the twentieth century, extensive molecular research has identified several classes of Na(+) transporters that play major roles in the alleviation of ionic stress by excluding toxic Na(+) from the cytosol or preventing Na(+) transport to the photosynthetic organs, and also in osmotic stress by modulating intra/extracellular osmotic balance. In this review, we summarize the current knowledge of three major Na(+) transporters, namely NHX, SOS1, and HKT transporters, including recently revealed characteristics of these transporters. "	"Two wheat glutathione peroxidase genes whose products are located in chloroplasts improve salt and H2O2 tolerances in Arabidopsis. Oxidative stress caused by accumulation of reactive oxygen species (ROS) is capable of damaging effects on numerous cellular components. Glutathione peroxidases (GPXs, EC 1.11.1.9) are key enzymes of the antioxidant network in plants. In this study, W69 and W106, two putative GPX genes, were obtained by de novo transcriptome sequencing of salt-treated wheat (Triticum aestivum) seedlings. The purified His-tag fusion proteins of W69 and W106 reduced H2O2 and t-butyl hydroperoxide (t-BHP) using glutathione (GSH) or thioredoxin (Trx) as an electron donor in vitro, showing their peroxidase activity toward H2O2 and toxic organic hydroperoxide. GFP fluorescence assays revealed that W69 and W106 are localized in chloroplasts. Quantitative real-time PCR (Q-RT-PCR) analysis showed that two GPXs were differentially responsive to salt, drought, H2O2, or ABA. Isolation of the W69 and W106 promoters revealed some cis-acting elements responding to abiotic stresses. Overexpression of W69 and W106 conferred strong tolerance to salt, H2O2, and ABA treatment in Arabidopsis. Moreover, the expression levels of key regulator genes (SOS1, RbohD and ABI1/ABI2) involved in salt, H2O2 and ABA signaling were altered in the transgenic plants. These findings suggest that W69 and W106 not only act as scavengers of H2O2 in controlling abiotic stress responses, but also play important roles in salt and ABA signaling. "	"A novel noncanonical signaling pathway for the μ-opioid receptor. The µ-opioid receptor (OPRM1) signals as a classic G protein-coupled receptor by activating heterotrimeric Gi/Go proteins resulting in adenylyl cyclase (AC) inhibition. Such AC inhibition is desensitized after prolonged agonist treatment. However, after receptor desensitization, the intracellular cAMP level remains regulated by OPRM1, as demonstrated by the intracellular cAMP level increase or AC superactivation upon removal of an agonist or addition of an antagonist. We now demonstrate that such intracellular cAMP regulation is mediated by a novel noncanonical signaling pathway resulting from OPRM1 being converted to a receptor tyrosine kinase (RTK)-like entity. This noncanonical OPRM1 signaling is initiated by the receptor recruiting and activating Src kinase within the receptor complex, leading to phosphorylation of the OPRM1 Tyr(336) residue. Phospho-Tyr(336) serves as the docking site for growth factor receptor-bound protein/son of sevenless, leading to the recruitment and activation of the Ras/Raf-1 and subsequent phosphorylation and activation of AC5/6 by Raf-1. Such sequence of events was established by the absence of Ras/Raf1 recruitment and activation by the OPRM1-Y336F mutant, by the presence of Src kinase inhibitor 4-amino-5-(4-chlorophenyl)-7-(t-butyl)pyrazolo[3,4-d]pyrimidine (PP2) or the absence of Src activity, by the presence of specific Raf-1 inhibitor GW5074 (5-iodo-3-[(3,5-dibromo-4-hydroxyphenyl) methylene]-2-indolinone) or the absence of Raf-1, or by the dominant negative RasN17 mutant. Src together with Ras activates Raf1 which was established by the inability of the Raf1-Tyr(340/341) mutant to activate AC. Hence, the phosphorylation of OPRM1 at Tyr(336) by Src serves as the trigger for the conversion of a classic Gi/Go-coupled receptor into an RTK-like entity, resulting in a noncanonical pathway even after the original Gi/Go signals are blunted. "	"Functional redundancy of Sos1 and Sos2 for lymphopoiesis and organismal homeostasis and survival. Sos1 and Sos2 are ubiquitously expressed, universal Ras guanine nucleotide exchange factors (Ras-GEFs) acting in multiple signal transduction pathways activated by upstream cellular kinases. The embryonic lethality of Sos1 null mutants has hampered ascertaining the specific in vivo contributions of Sos1 and Sos2 to processes controlling adult organism survival or development of hematopoietic and nonhematopoietic organs, tissues, and cell lineages. Here, we generated a tamoxifen-inducible Sos1-null mouse strain allowing analysis of the combined disruption of Sos1 and Sos2 (Sos1/2) during adulthood. Sos1/2 double-knockout (DKO) animals died precipitously, whereas individual Sos1 and Sos2 knockout (KO) mice were perfectly viable. A reduced percentage of total bone marrow precursors occurred in single-KO animals, but a dramatic depletion of B-cell progenitors was specifically detected in Sos1/2 DKO mice. We also confirmed a dominant role of Sos1 over Sos2 in early thymocyte maturation, with almost complete thymus disappearance and dramatically higher reduction of absolute thymocyte counts in Sos1/2 DKO animals. Absolute counts of mature B and T cells in spleen and peripheral blood were unchanged in single-KO mutants, while significantly reduced in Sos1/2 DKO mice. Our data demonstrate functional redundancy between Sos1 and Sos2 for homeostasis and survival of the full organism and for development and maturation of T and B lymphocytes. "	"Pulmonary interstitial glycogenosis in a patient ultimately diagnosed with Noonan syndrome. We describe an infant prenatally diagnosed with hydrops fetalis ultimately found to have Noonan syndrome (NS). Prior to genetic confirmation of diagnosis, lung biopsy was performed which revealed widespread pulmonary interstitial glycogenosis (PIG), abnormal alveolarization, and mild inflammation. Although genetic alterations have been identified in NS, the mutations are heterogeneous and the diagnosis remains one of clinical suspicion. The combination of PIG and NS has not yet been documented in the literature. While the underlying pathophysiologic mechanism of PIG is unclear, we suggest that the mitogen-activated protein kinase signal transduction pathway members (PTPN11, KRAS, SOS1, RAF1, SHOC2, NRAS) involved in cellular growth factor signaling, which are affected in NS, can provide clues. In addition, this case demonstrates that empiric corticosteroids can be considered in complicated cases since biopsy did reveal an inflammatory component, not typically noted in PIG."	"Tegumentary manifestations of Noonan and Noonan-related syndromes. Noonan and Noonan-related syndromes are common autosomal dominant disorders with neuro-cardio-facial-cutaneous and developmental involvement. The objective of this article is to describe the most relevant tegumentary findings in a cohort of 41 patients with Noonan or Noonan-related syndromes and to detail certain aspects of the molecular mechanisms underlying ectodermal involvement. A standard questionnaire was administered. A focused physical examination and a systematic review of clinical records was performed on all patients to verify the presence of tegumentary alterations. The molecular analysis of this cohort included sequencing of the following genes in all patients: PTPN1, SOS1, RAF1, KRAS, SHOC2 and BRAF. The most frequent tegumentary alterations were xeroderma (46%), photosensitivity (29%), excessive hair loss (24%), recurrent oral ulcers (22%), curly hair (20%), nevi (17%), markedly increased palmar and plantar creases (12%), follicular hyperkeratosis (12%), palmoplantar hyperkeratosis (10%), café-au-lait spots (10%) and sparse eyebrows (7%). Patients with mutations in PTPN11 had lower frequencies of palmar and plantar creases and palmar/plantar hyperkeratosis compared with the other patients. We observed that patients with mutations in genes directly involved in cell proliferation kinase cascades (SOS1, BRAF, KRAS and RAF1) had a higher frequency of hyperkeratotic lesions compared with patients with mutations in genes that have a more complex interaction with and modulation of cell proliferation kinase cascades (PTPN11)."	"Co-expression of the Arabidopsis SOS genes enhances salt tolerance in transgenic tall fescue (Festuca arundinacea Schreb.). Crop productivity is greatly affected by soil salinity; therefore, improvement in salinity tolerance of crops is a major goal in salt-tolerant breeding. The Salt Overly Sensitive (SOS) signal-transduction pathway plays a key role in ion homeostasis and salt tolerance in plants. Here, we report that overexpression of Arabidopsis thaliana SOS1+SOS2+SOS3 genes enhanced salt tolerance in tall fescue. The transgenic plants displayed superior growth and accumulated less Na+ and more K+ in roots after 350 mM NaCl treatment. Moreover, Na+ enflux, K+ influx, and Ca2+ influx were higher in the transgenic plants than in the wild-type plants. The activities of the enzyme superoxide dismutase, peroxidase, catalase, and proline content in the transgenic plants were significantly increased; however, the malondialdehyde content decreased in transgenic plants compared to the controls. These results suggested that co-expression of A. thaliana SOS1+SOS2+SOS3 genes enhanced the salt tolerance in transgenic tall fescue."	"A nuclear calcium-sensing pathway is critical for gene regulation and salt stress tolerance in Arabidopsis. Salt stress is an important environmental factor that significantly limits crop productivity worldwide. Studies on responses of plants to salt stress in recent years have identified novel signaling pathways and have been at the forefront of plant stress biology and plant biology in general. Thus far, research on salt stress in plants has been focused on cytoplasmic signaling pathways. In this study, we discovered a nuclear calcium-sensing and signaling pathway that is critical for salt stress tolerance in the reference plant Arabidopsis. Through a forward genetic screen, we found a nuclear-localized calcium-binding protein, RSA1 (SHORT ROOT IN SALT MEDIUM 1), which is required for salt tolerance, and identified its interacting partner, RITF1, a bHLH transcription factor. We show that RSA1 and RITF1 regulate the transcription of several genes involved in the detoxification of reactive oxygen species generated by salt stress and that they also regulate the SOS1 gene that encodes a plasma membrane Na(+)/H(+) antiporter essential for salt tolerance. Together, our results suggest the existence of a novel nuclear calcium-sensing and -signaling pathway that is important for gene regulation and salt stress tolerance. "	"Characterization of the EGFR interactome reveals associated protein complex networks and intracellular receptor dynamics. Growth factor receptor mediated signaling is meanwhile recognized as a complex signaling network, which is initiated by recruiting specific patterns of adaptor proteins to the intracellular domain of epidermal growth factor receptor (EGFR). Approaches to globally identify EGFR-binding proteins are required to elucidate this network. We affinity-purified EGFR with its interacting proteins by coprecipitation from lysates of A431 cells. A total of 183 proteins were repeatedly detected in high-resolution MS measurements. For 15 of these, direct interactions with EGFR were listed in the iRefIndex interaction database, including Grb2, shc-1, SOS1 and 2, STAT 1 and 3, AP2, UBS3B, and ERRFI. The newly developed Cytoscape plugin ModuleGraph allowed retrieving and visualizing 93 well-described protein complexes that contained at least one of the proteins found to interact with EGFR in our experiments. Abundances of 14 proteins were modulated more than twofold upon EGFR activation whereof clathrin-associated adaptor complex AP-2 showed 4.6-fold enrichment. These proteins were further annotated with different cellular compartments. Finally, interactions of AP-2 proteins and the newly discovered interaction of CIP2A could be verified. In conclusion, a powerful technique is presented that allowed identification and quantitative assessment of the EGFR interactome to provide further insight into EGFR signaling. "	"The crude extract of Corni Fructus inhibits the migration and invasion of U-2 OS human osteosarcoma cells through the inhibition of matrix metalloproteinase-2/-9 by MAPK signaling. Osteosarcoma is the most common primary malignancy of the bone cancers. In the Chinese population, the crude extract of Corni Fructus (CECF) has been used as Traditional Chinese medicine to treat several different diseases for hundreds of years. In the present study, effects of CECF on inhibition of migration and invasion in U-2 OS human osteosarcoma cells were examined. CECF significantly inhibited migration and invasion of U-2 OS human osteosarcoma cells. We also found that CECF inhibited activities of matrix metalloproteinases-2 (MMP-2) and matrix metalloproteinases-9 (MMP-9). CECF decreased protein levels of FAK, PKC, SOS1, MKK7, MEKK3, GRB2, NF-κB p65, COX-2, HIF-1α, PI3K, Rho A, ROCK-1, IRE-1α, p-JNK1/2, p-ERK1/2, p-p38, Ras, p-PERK, MMP-2, MMP-9, and VEGF in U-2 OS cells. Results of this study indicate that CECF may have potential as a novel anticancer agent for the treatment of osteosarcoma by inhibiting migration and invasion of cancer cells."	"Expanding the SHOC2 mutation associated phenotype of Noonan syndrome with loose anagen hair: structural brain anomalies and myelofibrosis. Noonan syndrome is a heterogenous rasopathy typically presenting with short stature, characteristic facial features, cardiac abnormalities including pulmonic valve stenosis, ASD and hypertrophic cardiomyopathy (HCM), cryptorchidism, ectodermal abnormalities, and learning differences. The phenotype is variable, and limited genotype phenotype correlation exists with SOS1 mutations often associated with normal cognition and stature, RAF1 mutations entailing a high HCM risk, and certain PTPN11 mutations predisposing to juvenile myelomonocytic leukemia. The recently identified SHOC2 mutation (p.Ser2Gly) causes Noonan syndrome with loose anagen hair. We report five patients with this mutation. All had skin hyperpigmentation, sparse light colored hair, increased fine wrinkles, ligamentous laxity, developmental delay, and 4/4 had a structural cardiac anomaly. Hypotonia and macrocephaly occurred in 4/5 (80%); 3/5 (60%) had polyhydramnios, increased birth weight or required use of a feeding tube. Distinctive brain abnormalities included relative megalencephaly and enlarged subarachnoid spaces suggestive of benign external hydrocephalus, and a relatively small posterior fossa as indicated by a vertical tentorium. The combination of a large brain with a small posterior fossa likely resulted in the high rate of cerebellar tonsillar ectopia (3/4; 75%). Periventricular nodular heterotopia was seen in one patient with a thick and dysplastic corpus callosum. We report on the first hematologic neoplasm, myelofibrosis, in a 2-year-old patient with SHOC2 mutation. Myelofibrosis is exceedingly rare in children and young adults. The absence of a somatic JAK2 mutation, seen in the majority of patients with myelofibrosis, is noteworthy as it suggests that germline or somatic SHOC2 mutations are causally involved in myelofibrosis."	"Learning and memory in children with Noonan syndrome. Genetic syndromes resulting from molecular alterations of the RAS-MAPK signaling cascade have become the focus of heightened interest among behavioral scientists due to discoveries that proteins within this pathway play an important role in memory formation and consolidation. Individuals with Noonan syndrome (NS), caused by germline mutations in the RAS-MAPK pathway, exhibit wide variability in cognitive and memory skills. The current study aimed to characterize memory deficits that occur in some affected individuals as a key step toward understanding the neurocognitive effects of dysregulated Ras signaling. Learning and memory skills were assessed among 29 children and adolescents with NS using the Wide Range Assessment of Memory and Learning, Second Edition. Performance across subdomains (verbal memory, visual memory and working memory) was compared, as well as the effect of response type (free recall vs. recognition). For immediate memory, children with NS performed significantly better on verbal memory tasks than on visual memory or working memory tasks. For delayed memory, verbal free recall tasks that depend heavily on prefrontal-hippocampal networks were more challenging than recognition tasks that rely on more distributed temporal cortical regions. Additionally, verbal information presented in context was more easily retained than that presented in a rote format. The current study contributes to our knowledge of the effects of dysregulated RAS-MAPK signaling on the brain and behavior. Continued research on neurocognitive skills in NS has the potential to generate a novel conceptualization of how learning disabilities can arise from altered molecular processes within a specific biological pathway."	"Noonan syndrome: comparing mutation-positive with mutation-negative dutch patients. Noonan syndrome (NS) is an autosomal dominant disorder characterized by facial dysmorphisms, short stature and congenital heart defects. The disorder is genetically heterogeneous and shows clinical overlap with other RASopathies. These syndromes are caused by mutations in a variety of genes leading to dysregulation of the RAS-MAPK pathway: PTPN11, KRAS, SOS1, RAF1, CBL, SHOC2, NRAS, BRAF, MAP2K1, MAP2K2, HRAS, NF1 and SPRED1. In this study, we conduct a genotype-phenotype analysis of 33 patients with a clinical diagnosis of NS without a PTPN11 mutation. Mutation analysis of the genes involved in RASopathies was performed, except for NF1 and SPRED1. In 14 (42%) NS patients, a mutation was found, 7 (21%) had a mutation in SOS1, 3 (9%) in RAF1 and 1 (3%) in KRAS, MAP2K2, BRAF and SHOC2 each. The phenotype of these mutation-positive cases corresponded to that described in the literature. In the cases with a BRAF and MAP2K2 mutation, the diagnosis cardio-facio-cutaneous syndrome was made. The patient with the SHOC2 mutation had features compatible with 'Noonan-like syndrome with loose anagen hair'. Three major clinical features of NS - a typical face, short stature and a pulmonary valve stenosis - were less frequently present in the group without a mutation. Missense mutations in genes encoding proteins of the RAS-MAPK pathway cause NS. The 3 major clinical features of NS were less frequently present in the mutation-negative patients, which stresses the importance of the syndrome-specific symptoms of the face, heart and short stature in NS. However, all mutation-negative cases met the NS criteria, indicating that the involvement of novel genes is to be expected. "	"Different evolutionary histories of two cation/proton exchanger gene families in plants. Gene duplication events have been proposed to be involved in the adaptation of plants to stress conditions; precisely how is unclear. To address this question, we studied the evolution of two families of antiporters. Cation/proton exchangers are important for normal cell function and in plants, Na+,K+/H+ antiporters have also been implicated in salt tolerance. Two well-known plant cation/proton antiporters are NHX1 and SOS1, which perform Na+ and K+ compartmentalization into the vacuole and Na+ efflux from the cell, respectively. However, our knowledge about the evolution of NHX and SOS1 stress responsive gene families is still limited. In this study we performed a comprehensive molecular evolutionary analysis of the NHX and SOS1 families. Using available sequences from a total of 33 plant species, we estimated gene family phylogenies and gene duplication histories, as well as examined heterogeneous selection pressure on amino acid sites. Our results show that, while the NHX family expanded and specialized, the SOS1 family remained a low copy gene family that appears to have undergone neofunctionalization during its evolutionary history. Additionally, we found that both families are under purifying selection although SOS1 is less constrained. We propose that the different evolution histories are related with the proteins' function and localization, and that the NHX and SOS1 families are examples of two different evolutionary paths through which duplication events may result in adaptive evolution of stress tolerance."	"MiR-124 inhibits the growth of glioblastoma through the downregulation of SOS1. Glioblastoma multiforme (GBM) is a lethal brain tumor in adults. Despite advances in treatments, such as surgery, radiotherapy and chemotherapy, high‑grade glioma remains fatal. The molecular and cellular mechanisms for GBM are not entirely clear and further studies are required to elucidate these. MicroRNAs (miRNAs) are small, non‑coding, endogenous RNAs that are involved in cell differentiation and proliferation, and have been suggested to play a role in a variety of types of cancer. In this study, we investigated the role of miR-124 in the inhibition of proliferation of GBM cells. The downregulation of miR-124 in human GBM tumor cell lines was detected using quantitative RT-PCR. To assess the function of miR-124, we constructed stable cell lines, U87-124 and U373-124, which overexpressed miR-124 using lentiviral vectors. Overexpression of miR-124 inhibited the proliferation of GBM cancer cells in vitro. Using integrated bioinformatics analysis, SOS1 was found to be a direct target for miR-124, which is frequently upregulated in gliomas. Dual‑luciferase reporter assays confirmed that the SOS1 mRNA 3'‑untranslated regions (UTR) was directly targeted by miR-124 and that the mutated 3'UTR was not affected. This was revealed to be mechanistically associated with the induction of SOS/Ras/Raf/ERK and the suppression of ERK activity, which was achieved by silencing SOS1. This study therefore indicates an important role for miR-124 in the regulation of growth in the molecular etiology of GBM, and offers a potential strategy for the use of miR-124 in cancer treatment."	"Loss of the R2R3 MYB, AtMyb73, causes hyper-induction of the SOS1 and SOS3 genes in response to high salinity in Arabidopsis. Environmental stressors, including high salt, drought, and low or high temperatures, are often associated with significant losses in agricultural productivity. Plants have evolved a diverse array of signaling pathways to modulate their development in response to various environmental challenges. Here, we report the characterization of a member of the R2R3-MYB transcription factor family, AtMyb73. The expression of AtMyb73 was up-regulated by salt stress but not by other stresses. The maximum level of AtMyb73 expression occurred at 6h of 300mM NaCl treatment. Under salt stress, atmyb73 ko mutant plants exhibited higher survival rates compare to wild type (Col-0) plants. Using quantitative reverse transcription-polymerase chain reaction (qRT-PCR) analysis, we determined that the accumulation of salt overly sensitive (SOS) transcripts, SOS1 and SOS3, was higher in atmyb73 ko and atmyb73 eko plants than in wild type plants in response to 300mM NaCl treatment. These results indicate that AtMyb73 is a negative regulator of SOS induction in response to salt stress in Arabidopsis thaliana. "	"The roles of miR-146a in the differentiation of Jurkat T-lymphoblasts. T-cell acute lymphoblastic leukemia (T-ALL) is caused by a defect in T-cell maturation to the mature T cell. T-ALL is a poor prognostic hematopoietic malignancy. In order to establish a successful therapeutic treatment plan, it is essential to understand the biology of T-cell development and molecules that contribute to this process. This study uses Jurkat T cells, as a well-established model for in vitro study of T-ALL to investigate the role of the microRNA (miRNA), miR-146a, on gene expressions involved in T-cell differentiation. The permanent over-expression of miR-146a was established using a lentivector that expressed GFP hsa-mir-146a miRNA. We used quantitative real-time polymerase chain reaction and flow cytometry for T-cell differentiation to monitor induction of the differentiation process by assessing changes in expression of some distinct transcription factors and cell surface markers. Ectopic expression of miR-146a resulted in significant up-regulation of PU.1, c-Fos, CCAAT/enhancer-binding protein alpha (C/EBPα) and GATA3, and slight up-regulation of Foxp3 and Runx1. There was a significant, moderate down-regulation in the expressions of Notch1, LIM-domain only (Lmo2), son of sevenless 1 (SOS1), Ikaros, and signal transducer and activator of transcription 3 (STAT3). Our results indicated that ectopic expression of miR-146a could not independently induce differentiation in lymphoblastic cells. However, the expression of multiple genes involved in T-cell differentiation and T-cell CD markers were found to be affected. These results have suggested a potential tumor suppressive, immunomodulatory and cell activator role for miR146-a."	"Are RASopathies new monogenic predisposing conditions to the development of systemic lupus erythematosus? Case report and systematic review of the literature. RASopathies (Noonan syndrome (NS) and Noonan-related syndromes) are neurodevelopmental syndromes resulting from germline mutations in genes that participate in the rat sarcoma/mitogen-activated protein kinases (RAS/MAPK) pathway (PTPN11, SOS1, RAF, KRAS or NRAS, and SHOC2). Some monogenic conditions are associated with the development of systemic lupus erythematosus (SLE), and a few reports described the association of SLE with NS. We aim to search for a relationship between RASopathy and the development of SLE. We reported for the first time a case of 13-year-old boy with NS with loose anagen hair (NSLAH) resulting from mutation in SHOC2 who developed an autoimmune disorder that fulfilled four American College of Rheumatology (ACR) criteria for the classification of SLE (polyarthritis, pericarditis, antinuclear antibodies, and anti-DNA antibodies). The case report then prompted a literature review by a systematic search for English and French articles on the subjects of RASopathies and SLE that had English abstracts in PubMed from 1966 to 2012. We identified seven additional patients with RASopathy and SLE. The male-to-female ratio was 1:1 and age at onset of SLE ranged from 5 to 32 years. The most common features were polyarthritis (7/8 patients), autoimmune cytopenia (4/8 patients), and pericarditis (4/8 patients) while only one patient presented with skin involvement. The association of two rare diseases in eight patients suggests that RASopathies may be associated with the development of SLE, which is characterized by a higher male-to-female ratio, a lower rate of skin involvement, and a higher rate of pericarditis than &quot;classic&quot; SLE."	"Ethnic specificity of lupus-associated loci identified in a genome-wide association study in Korean women. To identify novel genetic candidates for systemic lupus erythematosus (SLE) in the Korean population, and to validate the risk loci for SLE identified in previous genome-wide association studies (GWAS). We performed a GWAS in 400 Korean female SLE patients and 445 controls. Selected single-nucleotide polymorphisms (SNP) were then replicated in an independent cohort of 385 SLE patients and 583 controls (replication cohort 1), and in a further 811 SLE patients and 1502 controls (replication cohort 2). In the GWAS phase, rs9275428 located near HLA-DQB1 showed the strongest association with SLE (OR 0.50, false discovery rate (FDR) p=3.07×10(-6)). Although no loci reached genome-wide significance outside major histocompatibility complex (MHC), C8orf13-BLK, STAT4, CSMD1, DIAPH3, GLDC and TNFSF4 showed FDR p &lt; 0.05. Our results suggest that STAT4, BLK, IRF5, PTTG1-miR-146a, UBE2L3 and TNFAIP3 are shared susceptibility loci among Caucasians and Asians, while ETS1, IKZF1, SLC15A4 are likely to be Asian-specific loci. In a combined analysis of 1596 SLE patients and 2540 controls for selected 22 candidate SNP, STAT4 and BLK as positive controls showed a strong association with SLE (FDR p=9.85×10(-13) and 2.28×10(-8), respectively). Of these, 16 candidates (PEX5L, TRAJ50, MYO18B, SOS1, ARHGAP26, SMURF1, CADPS, HAND1, FAM78B, DIAPH3, TBL1XR1, CSMD1, ZBTB20, C3orf21, HIPK1 and AP001042.1) showed only nominal significance (7.05×10(-4)≤FDR p≤4.38×10(-2)). There are similarities and differences in genetic susceptibility for SLE between Caucasian and Asian ethnic groups. Although 16 putative novel loci for SLE have been suggested in the Korean population, further research on a larger sample is required to discriminate truth from error."	"Genome-wide analysis of murine bone marrow‑derived very small embryonic-like stem cells reveals that mitogenic growth factor signaling pathways play a crucial role in the quiescence and ageing of these cells. It has been postulated that the most primitive population of stem cells, Oct4(+)Sca-1(+)Lin(-)CD45(-) very small embryonic-like stem cells (VSELs), differentiate into tissue-committed stem cells in adult mice. However, Oct4(+) VSELs remain quiescent in adult tissues and do not form teratomas. In thi study, we report the characteristics of the VSEL transcriptome by gene set enrichment analysis employing a microarray database established from 20 murine bone marrow-derived, FACS-sorted VSELs in comparison with hematopoietic stem cells and embryonic stem cells. In the Oct4(+) VSELs, we observed the upregulation of tissue-specific gene sets and a gene set encoding the complement-coagulation cascade. By contrast, in the VSELs, we observed the downregulation of genes involved in the UV radiation response, mRNA processing and mitogenic growth factor signaling [e.g., insulin-like growth factor‑1 (IGF-1) and neurotrophic tyrosine kinase receptor A (TRKA), as well as the ERK and PI3K pathways]. Employing leading-edge subset analysis and real-time PCR assays, we observed that several genes, such as growth factor receptor-bound protein 2 (Grb2), son of sevenless homolog 1 (Sos1), SHC (Src homology 2 domain containing) transforming protein 1 (Shc1), mitogen-activated protein kinase kinase 1 (Map2k1), v-akt murine thymoma viral oncogene homolog 3 (Akt3), Elk1, ribosomal protein S6 kinase, 90 kDa, polypeptide 3 (Rps6kA3), glycogen synthase kinase 3β (Gsk3β) and casein kinase 2, alpha 1 polypeptide (Csnk2A1), which are involved in mitogenic growth factor signaling pathways, were commonly downregulated in the VSELs. Notably, this repression was reversed in the VSELs co-cultured over a C2C12 supportive cell-line, whereby they are induced to form VSEL-derived spheres (VSEL-DSs); thus, they are enriched, forming more differentiated stem cells. Therefore, we suggest that the repression of mitogenic growth factor signaling (e.g., through the IGF-1 receptor) may prevent uncontrolled Oct4(+) VSEL proliferation and teratoma formation. Thus, restoring the responsiveness to mitogenic growth factors may be a crucial step in employing these cells in regenerative medicine."	"Ulerythema ophryogenes, a rarely reported cutaneous manifestation of noonan syndrome: case report and review of the literature. Ulerythema ophryogenes (also known as keratosis pilaris atrophicans faciei) is a rarely reported cutaneous manifestation of Noonan syndrome. Recognizing ulerythema ophryogenes as a cutaneous association in Noonan syndrome may aid in the diagnosis of this relatively common genetic condition. We present a case of a patient with Noonan syndrome and ulerythema ophryogenes associated with a SOS1 mutation and review the literature on this association. To the best of our knowledge, this is the second case of Noonan syndrome proven to be due to an SOS1 mutation in which ulerythema ophryogenes was clinically recognized and specifically diagnosed. The presence of ulerythema ophryogenes in a patient with Noonan syndrome increases the likelihood of a SOS1 mutation. Further reports by dermatologists and medical geneticists documenting ulerythema ophryogenes and not just descriptions of sparse or absent eyebrows will help support this genotype-phenotype correlation."	"Arabidopsis sos1 mutant in a salt-tolerant accession revealed an importance of salt acclimation ability in plant salt tolerance. An analysis of the salinity tolerance of 354 Arabidopsis thaliana accessions showed that some accessions were more tolerant to salt shock than the reference accession, Col-0, when transferred from 0 to 225 mM NaCl. In addition, several accessions, including Zu-0, showed marked acquired salt tolerance after exposure to moderate salt stress. It is likely therefore that Arabidopsis plants have at least two types of tolerance, salt shock tolerance and acquired salt tolerance. To evaluate a role of well-known salt shock tolerant gene SOS1 in acquired salt tolerance, we isolated a sos1 mutant from ion-beam-mutagenized Zu-0 seedlings. The mutant showed severe growth inhibition under salt shock stress owing to a single base deletion in the SOS1 gene and was even more salt sensitive than Col-0. Nevertheless, it was able to survive after acclimation on 100 mM NaCl for 7 d followed by 750 mM sorbitol for 20 d, whereas Col-0 became chlorotic under the same conditions. We propose that genes for salt acclimation ability are different from genes for salt shock tolerance and play an important role in the acquisition of salt or osmotic tolerance. "	"A role for GIGANTEA: keeping the balance between flowering and salinity stress tolerance. The initiation of flowering in Arabidopsis is retarded or abolished by environmental stresses. Focusing on salt stress, we provide a molecular explanation for this well-known fact. A protein complex consisting of GI, a clock component important for flowering and SOS2, a kinase activating the [Na(+)] antiporter SOS1, exists under no stress conditions. GI prevents SOS2 from activating SOS1. In the presence of NaCl, the SOS2/GI complex disintegrates and GI is degraded. SO2, together with the Ca (2+)-activated sensor of sodium ions, SOS3, activates SOS1. In gi mutants, SOS1 is constitutively activated and gi plants are more highly salt tolerant than wild type Arabidopsis. The model shows GI as a transitory regulator of SOS pathway activity whose presence or amount connects flowering to environmental conditions. "	"Quercetin inhibits migration and invasion of SAS human oral cancer cells through inhibition of NF-κB and matrix metalloproteinase-2/-9 signaling pathways. Quercetin, a principal flavanoid compound in onions, has been shown to possess a wide spectrum of pharmacological properties, including anticancer activities. Our earlier study showed that quercetin induced cytotoxic effects on SAS human oral cancer cells. In this study, we found that quercetin significantly reduced wound closure of SAS cells in culture plates after 12- and 24-h treatments. Results indicated that quercetin inhibited the expression and activity of matrix metalloproteinase (MMP)-2 and MMP-9, as measured by western blotting and gelatin zymography. The results from western blotting also showed that quercetin reduced the protein levels of MMP-2, -7, -9 and -10, vascular endothelial growth factor (VEGF), nuclear factor kappa-light-chain-enhancer of activated B cells (NF-κB) p65, inductible nitric oxide synthase (iNOS), cyclooxygenase-2 (COX-2), urokinase-type plasminogen activator (uPA), phosphatidylinositide-3 kinases (PI3K), nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor, alpha (IKBα), IKB-α/β, phosphorylated nuclear factor of kappa light polypeptide gene enhancer in B-cells inhibitor kinase, alpha/beta (p-IKKα/β), focal adhesion kinase (FAK), son of sevenless homolog-1 (SOS1), growth factor receptor-bound protein-2 (GRB2), mitogen-activated protein kinase kinase kinase-3 (MEKK3), MEKK7, extracellular-signal-regulated kinase 1/2 (ERK1/2), p-ERK1/2, c-Jun N-terminal kinase 1/2 (JNK1/2), p38, p-p38, Jun proto-oncogene (c-JUN) and p-c-JUN but it did not affect Ras homolog gene family, member A (RhoA), Protein kinase C (PKC) and rat sarcoma viral oncogene homolog (RAS) in SAS cells. Confocal laser microscopy also showed that quercetin promoted the expressions of RhoA and Rho-associated, coiled-coil containing protein kinase-1 (ROCK1), but inhibited the expression of NF-κB p65 in SAS cells. It is concluded from these data that inhibition of migration and invasion of SAS cells by quercetin is associated with the down-regulation of PKC and RhoA by blocking MAPK and PI3K/AKT signaling pathways and NF-κB and uPA, resulting in inhibition of MMP-2 and MMP-9 signaling."	"[Correlation of Eps8 with proliferation, metastasis and prognosis of malignant tumors]. Epidermal growth factor receptor pathway substrate 8 (Eps8) is one of crucial kinase substrates for the epidermal growth factor receptors. Eps8 is related to mitosis and differentiation of normal cells. In recent years, it has been demonstrated that Eps8 involves in proliferation, metastasis and prognosis of many malignant tumors. Experiments have shown that Eps8 involves in Ras-Rac pathway of EGFR signaling by forming Eps8-Abi1-Sos1 tri-complex or participates in endocytosis mediated by rab5. Furthermore, Eps8 has also been found to regulate cell cycle. In conclusion, it may become a monitor and a new target for the treatment of malignant tumors. This review briefly introduces molecular structure and physiological function of Eps8, focusing on its function and molecular mechanism in proliferation, metastasis and prognosis of malignant tumors."	"Activation of extracellular signal-regulated kinase but not of p38 mitogen-activated protein kinase pathways in lymphocytes requires allosteric activation of SOS. Thymocytes convert graded T cell receptor (TCR) signals into positive selection or deletion, and activation of extracellular signal-related kinase (ERK), p38, and Jun N-terminal protein kinase (JNK) mitogen-activated protein kinases (MAPKs) has been postulated to play a discriminatory role. Two families of Ras guanine nucleotide exchange factors (RasGEFs), SOS and RasGRP, activate Ras and the downstream RAF-MEK-ERK pathway. The pathways leading to lymphocyte p38 and JNK activation are less well defined. We previously described how RasGRP alone induces analog Ras-ERK activation while SOS and RasGRP cooperate to establish bimodal ERK activation. Here we employed computational modeling and biochemical experiments with model cell lines and thymocytes to show that TCR-induced ERK activation grows exponentially in thymocytes and that a W729E allosteric pocket mutant, SOS1, can only reconstitute analog ERK signaling. In agreement with RasGRP allosterically priming SOS, exponential ERK activation is severely decreased by pharmacological or genetic perturbation of the phospholipase Cγ (PLCγ)-diacylglycerol-RasGRP1 pathway. In contrast, p38 activation is not sharply thresholded and requires high-level TCR signal input. Rac and p38 activation depends on SOS1 expression but not allosteric activation. Based on computational predictions and experiments exploring whether SOS functions as a RacGEF or adaptor in Rac-p38 activation, we established that the presence of SOS1, but not its enzymatic activity, is critical for p38 activation."	"Physiological and molecular mechanisms of plant salt tolerance. Salt tolerance is an important economic trait for crops growing in both irrigated fields and marginal lands. The plant kingdom contains plant species that possess highly distinctive capacities for salt tolerance as a result of evolutionary adaptation to their environments. Yet, the cellular mechanisms contributing to salt tolerance seem to be conserved to some extent in plants although some highly salt-tolerant plants have unique structures that can actively excrete salts. In this review, we begin by summarizing the research in Arabidopsis with a focus on the findings of three membrane transporters that are important for salt tolerance: SOS1, AtHKT1, and AtNHX1. We then review the recent studies in salt tolerance in crops and halophytes. Molecular and physiological mechanisms of salt tolerance in plants revealed by the studies in the model plant, crops, and halophytes are emphasized. Utilization of the Na(+) transporters to improve salt tolerance in plants is also summarized. Perspectives are provided at the end of this review."	"Structural landscape of the proline-rich domain of Sos1 nucleotide exchange factor. Despite its key role in mediating a plethora of cellular signaling cascades pertinent to health and disease, little is known about the structural landscape of the proline-rich (PR) domain of Sos1 guanine nucleotide exchange factor. Herein, using a battery of biophysical tools, we provide evidence that the PR domain of Sos1 is structurally disordered and adopts an extended random coil-like conformation in solution. Of particular interest is the observation that while chemical denaturation of PR domain results in the formation of a significant amount of polyproline II (PPII) helices, it has little or negligible effect on its overall size as measured by its hydrodynamic radius. Our data also show that the PR domain displays a highly dynamic conformational basin in agreement with the knowledge that the intrinsically unstructured proteins rapidly interconvert between an ensemble of conformations. Collectively, our study provides new insights into the conformational equilibrium of a key signaling molecule with important consequences on its physiological function."	"A novel SOS1 mutation in Costello/CFC syndrome affects signaling in both RAS and PI3K pathways. Pathological upregulation of the RAS/MAPK pathway causes Costello, Noonan and cardio-facio-cutaneous (CFC) syndrome; however, little is known about PI3K/AKT signal transduction in these syndromes. Previously, we found a novel mutation of the SOS1 gene (T158A) in a patient with Costello/CFC overlapping phenotype. The aim of this study was to investigate how this mutation affects RAS/MAPK as well as PI3K/AKT pathway signal transduction. Wild-type and mutant (T158A) Son of Sevenless 1 (SOS1) were transfected into 293T cells. The levels of phospho- and total ERK1/2, AKT, p70S6K and pS6 were examined under epidermal growth factor (EGF) stimulation. After EGF stimulation, the ratio of phospho-ERK1/2 to total ERK1/2 was highest at 5 min in mutant (T158A) SOS1 cells, and at 15 min in wild-type SOS1 cells. Phospho-AKT was less abundant at 60 min in mutant than in wild-type SOS1 cells. Phosphorylation at various sites in p70S6K differed between wild-type and mutant cells. Eighteen hours after activation by EGF, the ratio of phospho-ERK1/2 to total ERK1/2 remained significantly higher in mutant than in wild-type SOS1 cells, but that of phospho-AKT to total AKT was unchanged. T158A is located in the histone-like domain, which may have a role in auto-inhibition of RAS exchanger activity of SOS1. T158A may disrupt auto-inhibition and enhance RAS signaling. T158A also affects PI3K/AKT signaling, probably via negative feedback via phospho-p70S6K. The SOS1 T158A mutation altered the phosphorylation of gene products involved in both RAS/MAPK and PI3K/AKT pathways."	"Crude extract of Euphorbia formosana inhibits the migration and invasion of DU145 human prostate cancer cells: The role of matrix metalloproteinase-2/9 inhibition via the MAPK signaling pathway. Prostate cancer is a common worldwide health problem in males with a poor prognosis due in part to tumor invasion and migration. The crude extract of Euphorbia formosana (CEEF) has been used for the treatment of numerous diseases, however, its effects on the migration and invasion of prostate cancer cells have yet to be examined. In the present study, we investigated the effects of CEEF on the migration and invasion of DU145 human prostate cancer cells in vitro. The wound healing assay and the Matrigel-uncoated migration assay were used to examine the migration of cancer cells. Western blotting was used to examine the levels of proteins associated with migration and invasion, and gelatin zymography was used to examine the secretion levels of matrix metalloproteinases-2 and -9 (MMP‑2/9) from DU145 cells following exposure to CEEF. The results indicated that CEEF suppressed the migration and invasion of DU145 prostate cancer cells and that these effects are exerted in a concentration- and time-dependent manner. CEEF inhibited the ERK1/2, p38, JNK, SOS1, PKC, PI3K and MMP-2/9 protein expression in DU145 cells. The results demonstrated that CEEF suppressed the migration and invasion of DU145 cells through inhibition of the mitogen-activated protein kinase (MAPK) signaling pathway resulting in the inhibition of MMP-2/9 in DU145 human prostate cancer cells."	"Ras and extracellular signal-regulated kinase signaling in thymocytes and T cells. Extracellular signal-regulated kinase (ERK) activation is important for both thymocyte development and T cell function. Classically, signal transduction from the T cell antigen receptor (TCR) to ERK is thought to be regulated by signaling from Ras guanine nucleotide exchange factors (GEFs), through the small G protein Ras, to the three-tiered Raf-MAPK/ERK kinase (MEK)-ERK kinase cascade. Developing and mature T cells express four members of two RasGEF families, RasGRP1, RasGRP4, son of sevenless 1 (Sos1), and Sos2, and several models describing combined signaling from these RasGEFs have been proposed. However, recent studies suggest that existing models need revision to include both distinct and overlapping roles of multiple RasGEFs during thymocyte development and novel, Ras-independent signals to ERK that have been identified in peripheral T cells."	"NMR-based functional profiling of RASopathies and oncogenic RAS mutations. Defects in the RAS small G protein or its associated network of regulatory proteins that disrupt GTPase cycling are a major cause of cancer and developmental RASopathy disorders. Lack of robust functional assays has been a major hurdle in RAS pathway-targeted drug development. We used NMR to obtain detailed mechanistic data on RAS cycling defects conferred by oncogenic mutations, or full-length RASopathy-derived regulatory proteins. By monitoring the conformation of wild-type and oncogenic RAS in real-time, we show that opposing properties integrate with regulators to hyperactivate oncogenic RAS mutants. Q61L and G13D exhibited rapid nucleotide exchange and an unexpected susceptibility to GAP-mediated hydrolysis, in direct contrast with G12V, indicating different approaches must be taken to inhibit these oncoproteins. An NMR methodology was established to directly monitor RAS cycling by intact, multidomain proteins encoded by RASopathy genes in mammalian cell extracts. By measuring GAP activity from tumor cells, we demonstrate how loss of neurofibromatosis type 1 (NF1) increases RAS-GTP levels in NF1-derived cells. We further applied this methodology to profile Noonan Syndrome (NS)-derived SOS1 mutants. Combining NMR with cell-based assays allowed us to differentiate defects in catalysis, allosteric regulation, and membrane targeting of individual mutants, while revealing a membrane-dependent compensatory effect that attenuates dramatic increases in RAS activation shown by Y337C, L550P, and I252T. Our NMR method presents a precise and robust measure of RAS activity, providing mechanistic insights that facilitate discovery of therapeutics targeted against the RAS signaling network."	"Interaction domains of Sos1/Grb2 are finely tuned for cooperative control of embryonic stem cell fate. Metazoan evolution involves increasing protein domain complexity, but how this relates to control of biological decisions remains uncertain. The Ras guanine nucleotide exchange factor (RasGEF) Sos1 and its adaptor Grb2 are multidomain proteins that couple fibroblast growth factor (FGF) signaling to activation of the Ras-Erk pathway during mammalian development and drive embryonic stem cells toward the primitive endoderm (PrE) lineage. We show that the ability of Sos1/Grb2 to appropriately regulate pluripotency and differentiation factors and to initiate PrE development requires collective binding of multiple Sos1/Grb2 domains to their protein and phospholipid ligands. This provides a cooperative system that only allows lineage commitment when all ligand-binding domains are occupied. Furthermore, our results indicate that the interaction domains of Sos1 and Grb2 have evolved so as to bind ligands not with maximal strength but with specificities and affinities that maintain cooperativity. This optimized system ensures that PrE lineage commitment occurs in a timely and selective manner during embryogenesis."	"[RAS/MAPK signal transduction pathway and its role in the pathogenesis of Noonan syndrome]. Noonan syndrome (NS) is one of the most frequent dysmorphic syndromes in children with a frequency of 1/1000-1/2500 of newborns. Noonan syndrome is a multi-organ disease with a broad spectrum of clinical symptoms. The most characteristic features of NS are: craniofacial dysmorphy, short stature, cardiovascular defects, bone and skeletal defects and delayed puberty (cryptorchidism in males). Noonan syndrome has a genetic background and is inherited in autosomal dominant manner. The recent studies have shown that it is due to the presence of mutation in one of the genes encoding proteins of RAS/MAPK signalling pathway responsible for cell proliferation and differentiation. Till now, NS causing mutations were identified in PTPN11, SOS1, RAF1, KRAS, BRAF, SHOC2 and NRAS genes, and this may partially explain the broad phenotypic spectrum observed in patients. Noonan syndrome is one of the RAS-opathies, therefore the molecular analysis of RAS/ MAPK genes might be a very useful tool in clinical differentiation of the disease."	"The Salt Overly Sensitive (SOS) pathway: established and emerging roles. Soil salinity is a growing problem around the world with special relevance in farmlands. The ability to sense and respond to environmental stimuli is among the most fundamental processes that enable plants to survive. At the cellular level, the Salt Overly Sensitive (SOS) signaling pathway that comprises SOS3, SOS2, and SOS1 has been proposed to mediate cellular signaling under salt stress, to maintain ion homeostasis. Less well known is how cellularly heterogenous organs couple the salt signals to homeostasis maintenance of different types of cells and to appropriate growth of the entire organ and plant. Recent evidence strongly indicates that different regulatory mechanisms are adopted by roots and shoots in response to salt stress. Several reports have stated that, in roots, the SOS proteins may have novel roles in addition to their functions in sodium homeostasis. SOS3 plays a critical role in plastic development of lateral roots through modulation of auxin gradients and maxima in roots under mild salt conditions. The SOS proteins also play a role in the dynamics of cytoskeleton under stress. These results imply a high complexity of the regulatory networks involved in plant response to salinity. This review focuses on the emerging complexity of the SOS signaling and SOS protein functions, and highlights recent understanding on how the SOS proteins contribute to different responses to salt stress besides ion homeostasis."	"Allostery mediates ligand binding to Grb2 adaptor in a mutually exclusive manner. Allostery plays a key role in dictating the stoichiometry and thermodynamics of multi-protein complexes driving a plethora of cellular processes central to health and disease. Herein, using various biophysical tools, we demonstrate that although Sos1 nucleotide exchange factor and Gab1 docking protein recognize two non-overlapping sites within the Grb2 adaptor, allostery promotes the formation of two distinct pools of Grb2-Sos1 and Grb2-Gab1 binary signaling complexes in concert in lieu of a composite Sos1-Grb2-Gab1 ternary complex. Of particular interest is the observation that the binding of Sos1 to the nSH3 domain within Grb2 sterically blocks the binding of Gab1 to the cSH3 domain and vice versa in a mutually exclusive manner. Importantly, the formation of both the Grb2-Sos1 and Grb2-Gab1 binary complexes is governed by a stoichiometry of 2:1, whereby the respective SH3 domains within Grb2 homodimer bind to Sos1 and Gab1 via multivalent interactions. Collectively, our study sheds new light on the role of allostery in mediating cellular signaling machinery."	"IL-7- and IL-15-mediated TCR sensitization enables T cell responses to self-antigens. Regulation of the ERK pathway is intimately involved in determining whether TCR stimulation is productive or induces anergy. T cells from patients with rheumatoid arthritis (RA) have increased ERK responsiveness, which may be relevant for disease pathogenesis. Inflammatory cytokines such as TNF-α did not reproduce the TCR hypersensitivity typical for RA in T cells from healthy individuals. In contrast, priming with the homeostatic cytokines (HCs) IL-7 and IL-15 amplified ERK phosphorylation to TCR stimulation 2- to 3-fold. The underlying mechanism involved a priming of the SOS-dependent amplification loop of RAS activation. The sensitization of the TCR signaling pathway has downstream consequences, such as increased proliferation and preferential Th1 differentiation. Importantly, priming with IL-7 or IL-15 enabled T cell responses to autoantigens associated with RA. Production of HCs is induced in lymphopenic conditions, which have been shown to predispose for autoimmunity and which appear to be present in the preclinical stages of RA. We propose that HCs, possibly induced by lymphopenia, decrease the signaling threshold for TCR activation and are thereby partly responsible for autoimmunity in RA."	"Release of SOS2 kinase from sequestration with GIGANTEA determines salt tolerance in Arabidopsis. Environmental challenges to plants typically entail retardation of vegetative growth and delay or cessation of flowering. Here we report a link between the flowering time regulator, GIGANTEA (GI), and adaptation to salt stress that is mechanistically based on GI degradation under saline conditions, thus retarding flowering. GI, a switch in photoperiodicity and circadian clock control, and the SNF1-related protein kinase SOS2 functionally interact. In the absence of stress, the GI:SOS2 complex prevents SOS2-based activation of SOS1, the major plant Na(+)/H(+)-antiporter mediating adaptation to salinity. GI overexpressing, rapidly flowering, plants show enhanced salt sensitivity, whereas gi mutants exhibit enhanced salt tolerance and delayed flowering. Salt-induced degradation of GI confers salt tolerance by the release of the SOS2 kinase. The GI-SOS2 interaction introduces a higher order regulatory circuit that can explain in molecular terms, the long observed connection between floral transition and adaptive environmental stress tolerance in Arabidopsis."	"Haem oxygenase modifies salinity tolerance in Arabidopsis by controlling K⁺ retention via regulation of the plasma membrane H⁺-ATPase and by altering SOS1 transcript levels in roots. Reactive oxygen species (ROS) production is a common denominator in a variety of biotic and abiotic stresses, including salinity. In recent years, haem oxygenase (HO; EC 1.14.99.3) has been described as an important component of the antioxidant defence system in both mammalian and plant systems. Moreover, a recent report on Arabidopsis demonstrated that HO overexpression resulted in an enhanced salinity tolerance in this species. However, physiological mechanisms and downstream targets responsible for the observed salinity tolerance in these HO mutants remain elusive. To address this gap, ion transport characteristics (K(+) and H(+) fluxes and membrane potentials) and gene expression profiles in the roots of Arabidopsis thaliana HO-overexpressing (35S:HY1-1/2/3/4) and loss-of-function (hy-100, ho2, ho3, and ho4) mutants were compared during salinity stress. Upon acute salt stress, HO-overexpressing mutants retained more K(+) (less efflux), and exhibited better membrane potential regulation (maintained more negative potential) and higher H(+) efflux activity in root epidermis, compared with loss-of-function mutants. Pharmacological experiments suggested that high activity of the plasma membrane H(+)-ATPase in HO overexpressor mutants provided the proton-motive force required for membrane potential maintenance and, hence, better K(+) retention. The gene expression analysis after 12h and 24h of salt stress revealed high expression levels of H(+)-ATPases (AHA1/2/3) and Na(+)/H(+) antiporter [salt overly sensitive1 (SOS1)] transcripts in the plasma membrane of HO overexpressors. It is concluded that HO modifies salinity tolerance in Arabidopsis by controlling K(+) retention via regulation of the plasma membrane H(+)-ATPase and by altering SOS1 transcript levels in roots."	"NMR study to identify a ligand-binding pocket in Ras. Despite decades of intense drug discovery efforts, to date no small molecules have been described that directly bind to Ras protein and effectively antagonize its function. In order to identify and characterize small-molecule binders to KRas, we carried out a fragment-based lead discovery effort. A ligand-detected primary nuclear magnetic resonance (NMR) screen identified 266 fragments from a library of 3285 diverse compounds. Protein-detected NMR using isotopically labeled KRas protein was applied for hit validation and binding site characterization. An area on the KRas surface emerged as a consensus site of fragment binding. X-ray crystallography studies on a subset of the hits elucidated atomic details of the ligand-protein interactions, and revealed that the consensus site comprises a shallow hydrophobic pocket. Comparison among the crystal structures indicated that the ligand-binding pocket is flexible and can be expanded upon ligand binding. The identified ligand-binding pocket is proximal to the protein-protein interface and therefore has the potential to mediate functional effects. Indeed, some ligands inhibited SOS1-dependent nucleotide exchange, although with weak potency. Several Ras ligands have been published in literature, the majority of which were discovered using NMR-based methods. Mapping of the ligand-binding sites revealed five areas on Ras with a high propensity for ligand binding and the potential of modulating Ras activity. "	"Ras/MAPK syndromes and childhood hemato-oncological diseases. Noonan syndrome (NS) is an autosomal-dominant disease characterized by distinctive facial features, webbed neck, cardiac anomalies, short stature and cryptorchidism. NS exhibits phenotypic overlap with Costello syndrome and cardio-facio-cutaneous (CFC) syndrome. Germline mutations of genes encoding proteins in the RAS/mitogen-activated protein kinase (MAPK) pathway cause NS and related disorders. Germline mutations in PTPN11, KRAS, SOS1, RAF1, and NRAS have been identified in 60-80 % of NS patients. Germline mutations in HRAS have been identified in patients with Costello syndrome and mutations in KRAS, BRAF, and MAP2K1/2 (MEK1/2) have been identified in patients with CFC syndrome. Recently, mutations in SHOC2 and CBL have been identified in patients with Noonan-like syndrome. It has been suggested that these syndromes be comprehensively termed RAS/MAPK syndromes, or RASopathies. Molecular analysis is beneficial for the confirmation of clinical diagnoses and follow-up with patients using a tumor-screening protocol, as patients with NS and related disorders have an increased risk of developing tumors. In this review, we summarize the genetic mutations, clinical manifestations, associations with malignant tumors, and possible therapeutic approaches for these disorders."	"Severe hypertrophic cardiomyopathy in Noonan syndrome-consider sequencing genes encoding sarcomeric proteins. NA"	"Hypertrophic cardiomyopathy: how far should we go with genetic testing? NA"	"A phospholipase C-γ1-independent, RasGRP1-ERK-dependent pathway drives lymphoproliferative disease in linker for activation of T cells-Y136F mutant mice. Mice expressing a germline mutation in the phospholipase C-γ1-binding site of linker for activation of T cells (LAT) show progressive lymphoproliferation and ultimately die at 4-6 mo age. The hyperactivated T cells in these mice show defective TCR-induced calcium flux but enhanced Ras/ERK activation, which is critical for disease progression. Despite the loss of LAT-dependent phospholipase C-γ1 binding and activation, genetic analysis revealed RasGRP1, and not Sos1 or Sos2, to be the major Ras guanine exchange factor responsible for ERK activation and the lymphoproliferative phenotype in these mice. Analysis of isolated CD4(+) T cells from LAT-Y136F mice showed altered proximal TCR-dependent kinase signaling, which activated a Zap70- and LAT-independent pathway. Moreover, LAT-Y136F T cells showed ERK activation that was dependent on Lck and/or Fyn, protein kinase C-θ, and RasGRP1. These data demonstrate a novel route to Ras activation in vivo in a pathological setting."	"Selective transport capacity for K<sup>+</sup> over Na<sup>+</sup> is linked to the expression levels of PtSOS1 in halophyte Puccinellia tenuiflora. The plasma membrane Na+/H+ antiporter (SOS1) was shown to be a Na+ efflux protein and also involved in K+ uptake and transport. PtSOS1 was characterised from Puccinellia tenuiflora (Griseb.) Scribn. et Merr., a monocotyledonous halophyte that has a high selectivity for K+ over Na+ by roots under salt stress. To assess the contribution of PtSOS1 to the selectivity for K+ over Na+, the expression levels of PtSOS1 and Na+, K+ accumulations in P. tenuiflora exposed to different concentrations of NaCl, KCl or NaCl plus KCl were analysed. Results showed that the expression levels of PtSOS1 in roots increased significantly with the increase of external NaCl (25-150mM), accompanied by an increase of selective transport (ST) capacity for K+ over Na+ by roots. Transcription levels of PtSOS1 in roots and ST values increased under 0.1-1mM KCl, then declined sharply under 5-10mM KCl. Under 150mM NaCl, PtSOS1 expression levels in roots and ST values at 0.1mM KCl was significantly lower than that at 5mM KCl with the prolonging of treatment time. A significant positive correlation was found between root PtSOS1 expression levels and ST values under various concentrations of NaCl, KCl or 150mM NaCl plus 0.1 or 5mM KCl treatments. Therefore, it is proposed that PtSOS1 is the major component of selective transport capacity for K+ over Na+ and hence, salt tolerance of P. tenuiflora. Finally, we hypothesise a function model of SOS1 in regulating K+ and Na+ transport system in the membrane of xylem parenchyma cells by sustaining the membrane integrity; it also appears that this model could reasonably explain the phenomenon of Na+ retrieval from the xylem when plants are exposed to severe salt stress."	"H(2) enhances arabidopsis salt tolerance by manipulating ZAT10/12-mediated antioxidant defence and controlling sodium exclusion. The metabolism of hydrogen gas (H(2)) in bacteria and algae has been extensively studied for the interesting of developing H(2)-based fuel. Recently, H(2) is recognized as a therapeutic antioxidant and activates several signalling pathways in clinical trials. However, underlying physiological roles and mechanisms of H(2) in plants as well as its signalling cascade remain unknown. In this report, histochemical, molecular, immunological and genetic approaches were applied to characterize the participation of H(2) in enhancing Arabidopsis salt tolerance. An increase of endogenous H(2) release was observed 6 hr after exposure to 150 mM NaCl. Arabidopsis pretreated with 50% H(2)-saturated liquid medium, mimicking the induction of endogenous H(2) release when subsequently exposed to NaCl, effectively decreased salinity-induced growth inhibition. Further results showed that H(2) pretreatment modulated genes/proteins of zinc-finger transcription factor ZAT10/12 and related antioxidant defence enzymes, thus significantly counteracting the NaCl-induced reactive oxygen species (ROS) overproduction and lipid peroxidation. Additionally, H(2) pretreatment maintained ion homeostasis by regulating the antiporters and H(+) pump responsible for Na(+) exclusion (in particular) and compartmentation. Genetic evidence suggested that SOS1 and cAPX1 might be the target genes of H(2) signalling. Overall, our findings indicate that H(2) acts as a novel and cytoprotective regulator in coupling ZAT10/12-mediated antioxidant defence and maintenance of ion homeostasis in the improvement of Arabidopsis salt tolerance."	"Medical complications, clinical findings, and educational outcomes in adults with Noonan syndrome. Noonan syndrome (NS) is a heterogeneous developmental disorder caused by missense mutations in genes involved in the Ras/MAPK signaling pathway, a major mediator of early and late developmental processes. The diagnosis of NS is made on clinical grounds with molecular confirmation of a mutation found in 63% of cases. Key clinical features include short stature, cardiac defects, developmental delay, lymphatic dysplasias, bleeding tendency, and a constellation of distinctive facial features and physical exam findings. The prevalence of medical issues or the development of new ones in adults with NS is not well-studied. This cross-sectional study reports on the prevalence of clinical conditions and their ages of onset in a cohort of 35 adolescents and adults with NS aged 16-68 years old (mean age 28 years). In this cohort, 34 of 35 subjects (97%) had had full PTPN11 sequencing; 37% were PTPN11 positive, 23% were SOS1 positive, and 3% were BRAF positive. Mean adult height in both men and women was at the 3rd-10th centile. The most prevalent clinical findings in this cohort included pulmonary valve stenosis (71%), easy bruising (63%), GERD (60%), constipation (51%), scoliosis (54%), chronic joint pain (54%), lymphedema (49%), depression (49%), anxiety (49%), Chiari malformation (20%), and osteopenia/osteoporosis (14%). In summary, adults with NS are affected by multi-organ morbidity and require special medical management aimed towards the most prevalent and serious known medical complications. Larger studies characterizing the clinical conditions found in NS adults are needed to provide potential genotype-phenotype correlations that may aid in clinical management."	"Endogenous cGMP-dependent protein kinase reverses EGF-induced MAPK/ERK signal transduction through phosphorylation of VASP at Ser239. In our previous study, we demonstrated that type II cGMP-dependent protein kinase (PKG II) was expressed at lower levels in different human cancer cell lines and that exogenous PKG II inhibited epidermal growth factor (EGF)-induced MAPK/ERK signaling. In order to investigate its functions further in this signaling pathway, it is necessary to elucidate whether endogenous PKG has the same effect or not. This study aimed to investigate the possible inhibitory effect of endogenous PKG activity on EGF-induced MAPK/ERK signal transduction in human lung cancer cells and its mechanism. Human small cell lung carcinoma cells (SCLCs) were treated with the PKG-selective cGMP analog 8-pCPT-cGMP to activate endogenous PKG, EGF and cGMP followed by EGF, respectively. The results showed that increased endogenous PKG activity inhibited the EGF-induced phosphorylation of the epidermal growth factor receptor (EGFR) and the binding between Sos1 and Grb2. In addition, EGF-triggered Ras activation was reversed by increased endogenous PKG activity. While the EGF-induced phosphorylation of MEK and ERK were inhibited by increased endogenous PKG activity, there was a significant increase of phosphorylated vasodilator-stimulated phosphoprotein (p-VASP) at Ser239. Furthermore, we investigated whether endogenous PKG exerted its effects on EGF-induced MAPK/ERK signaling through phosphorylation of VASP at Ser239. Downregulation of the levels of p-VASP Ser239 by point mutation blocked the effects of endogenous PKG on EGF-induced MAPK/ERK signal transduction. The data shown here suggest that endogenous PKG reverses the EGF-induced MAPK/ERK signaling pathway by phosphorylating VASP at Ser239."	"The SbSOS1 gene from the extreme halophyte Salicornia brachiata enhances Na(+) loading in xylem and confers salt tolerance in transgenic tobacco. Soil salinity adversely affects plant growth and development and disturbs intracellular ion homeostasis resulting cellular toxicity. The Salt Overly Sensitive 1 (SOS1) gene encodes a plasma membrane Na(+)/H(+) antiporter that plays an important role in imparting salt stress tolerance to plants. Here, we report the cloning and characterisation of the SbSOS1 gene from Salicornia brachiata, an extreme halophyte. The SbSOS1 gene is 3774 bp long and encodes a protein of 1159 amino acids. SbSOS1 exhibited a greater level of constitutive expression in roots than in shoots and was further increased by salt stress. Overexpressing the S. brachiata SbSOS1 gene in tobacco conferred high salt tolerance, promoted seed germination and increased root length, shoot length, leaf area, fresh weight, dry weight, relative water content (RWC), chlorophyll, K(+)/Na(+) ratio, membrane stability index, soluble sugar, proline and amino acid content relative to wild type (WT) plants. Transgenic plants exhibited reductions in electrolyte leakage, reactive oxygen species (ROS) and MDA content in response to salt stress, which probably occurred because of reduced cytosolic Na(+) content and oxidative damage. At higher salt stress, transgenic tobacco plants exhibited reduced Na(+) content in root and leaf and higher concentrations in stem and xylem sap relative to WT, which suggests a role of SbSOS1 in Na(+) loading to xylem from root and leaf tissues. Transgenic lines also showed increased K(+) and Ca(2+) content in root tissue compared to WT, which reflect that SbSOS1 indirectly affects the other transporters activity. Overexpression of SbSOS1 in tobacco conferred a high degree of salt tolerance, enhanced plant growth and altered physiological and biochemical parameters in response to salt stress. In addition to Na(+) efflux outside the plasma membrane, SbSOS1 also helps to maintain variable Na(+) content in different organs and also affect the other transporters activity indirectly. These results broaden the role of SbSOS1 in planta and suggest that this gene could be used to develop salt-tolerant transgenic crops."	"Interplay between menin and K-Ras in regulating lung adenocarcinoma. MEN1, which encodes the nuclear protein menin, acts as a tumor suppressor in lung cancer and is often inactivated in human primary lung adenocarcinoma. Here, we show that the inactivation of MEN1 is associated with increased DNA methylation at the MEN1 promoter by K-Ras. On one hand, the activated K-Ras up-regulates the expression of DNA methyltransferases and enhances the binding of DNA methyltransferase 1 to the MEN1 promoter, leading to increased DNA methylation at the MEN1 gene in lung cancer cells; on the other hand, menin reduces the level of active Ras-GTP at least partly by preventing GRB2 and SOS1 from binding to Ras, without affecting the expression of GRB2 and SOS1. In human lung adenocarcinoma samples, we further demonstrate that reduced menin expression is associated with the enhanced expression of Ras (p &lt; 0.05). Finally, excision of the Men1 gene markedly accelerates the K-Ras(G12D)-induced tumor formation in the Men1(f/f);K-Ras(G12D/+);Cre ER mouse model. Together, these findings uncover a previously unknown link between activated K-Ras and menin, an important interplay governing tumor activation and suppression in the development of lung cancer."	"Structural insights on the plant salt-overly-sensitive 1 (SOS1) Na(+)/H(+) antiporter. The Arabidopsisthaliana Na(+)/H(+) antiporter salt-overly-sensitive 1 (SOS1) is essential to maintain low intracellular levels of toxic Na(+) under salt stress. Available data show that the plant SOS2 protein kinase and its interacting activator, the SOS3 calcium-binding protein, function together in decoding calcium signals elicited by salt stress and regulating the phosphorylation state and the activity of SOS1. Molecular genetic studies have shown that the activation implies a domain reorganization of the antiporter cytosolic moiety, indicating that there is a clear relationship between function and molecular structure of the antiporter. To provide information on this issue, we have carried out in vivo and in vitro studies on the oligomerization state of SOS1. In addition, we have performed electron microscopy and single-particle reconstruction of negatively stained full-length and active SOS1. Our studies show that the protein is a homodimer that contains a membrane domain similar to that found in other antiporters of the family and an elongated, large, and structured cytosolic domain. Both the transmembrane (TM) and cytosolic moieties contribute to the dimerization of the antiporter. The close contacts between the TM and the cytosolic domains provide a link between regulation and transport activity of the antiporter."	"Patterns of scAAV vector insertion associated with oncogenic events in a mouse model for genotoxicity. Recombinant adeno-associated virus (rAAV) vectors have gained an extensive record of safety and efficacy in animal models of human disease. Infrequent reports of genotoxicity have been limited to specific vectors associated with excess hepatocellular carcinomas (HCC) in mice. In order to understand potential mechanisms of genotoxicity, and identify patterns of insertion that could promote tumor formation, we compared a self-complementary AAV (scAAV) vector designed to promote insertional activation (scAAV-CBA-null) to a conventional scAAV-CMV-GFP vector. HCC-prone C3H/HeJ mice and severe combined immunodeficiency (SCID) mice were infected with vector plus secondary treatments including partial hepatectomy (HPX) and camptothecin (CPT) to determine the effects of cell cycling and DNA damage on tumor incidence. Infection with either vector led to a significant increase in HCC incidence in male C3H/HeJ mice. Partial HPX after infection reduced HCC incidence in the cytomegalovirus-green fluorescent protein (CMV-GFP)-infected mice, but not in the cognate chicken β-actin (CBA)-null infected group. Tumors from CBA-null infected, hepatectomized mice were more likely to contain significant levels of vector DNA than tumors from the corresponding CMV-GFP-infected group. Most CBA-null vector insertions recovered from tumors were associated with known proto-oncogenes or tumor suppressors. Specific patterns of insertion suggested read-through transcription, enhancer effects, and disruption of tumor suppressors as likely mechanisms for genotoxicity."	"Bleeding diathesis in Noonan syndrome: is acquired von Willebrand syndrome the clue? Noonan syndrome (NS) is characterized by dysmorphic facies, short stature and congenital heart defects. Various haemostatic disorders have been described in NS patients, but not all were related to bleeding, which itself is present in up to 65%. Several subgroups of NS - especially those with PTPN11 mutation - are associated with pulmonary stenosis. As it is known that some heart defects are prone to a shear stress related destruction of the von Willebrand factor as an important haemostatic component, we aimed to find out, whether the pulmonary stenosis could be responsible for such a mechanism in NS patients. We investigated the haemostatic system in 15 children with genetically proven NS (14 with PTPN11, one with SOS1 mutation). Platelet count, basic coagulation parameters, fibrinogen and antithrombin were normal in all patients, none had a relevant reduction of coagulation factor activities. Five patients had pulmonary valve stenosis with systolic gradients&gt;60 mmHg. In three of them a deficiency of the high molecular weight multimers and a pathologic collagen-binding capacity were detected, suggesting acquired von Willebrand syndrome. Nine of our patients indicated a relevant bleeding diathesis and complained of easy bruising, three reported spontaneous gum bleeding. the destruction of the von Willebrand factor could explain the bleeding in some of the NS patients with pulmonary valve stenosis. Our finding is of clinical relevance since most of these patients require either interventional cardiac catheterization or open heart surgery which may be complicated by the haemorrhagic tendency."	"Growth standards of patients with Noonan and Noonan-like syndromes with mutations in the RAS/MAPK pathway. Noonan syndrome (NS) and Noonan-like syndromes (NLS) are autosomal dominant disorders caused by heterozygous mutations in genes of the RAS/MAPK pathway. The aim of the study was to construct specific growth charts for patients with NS and NLS. Anthropometric measurements (mean of 4.3 measurements per patient) were obtained in a mixed cross-sectional and longitudinal mode from 127 NS and 10 NLS patients with mutations identified in PTPN11 (n = 90), SOS1 (n = 14), RAF1 (n = 10), KRAS (n = 8), BRAF (n = 11), and SHOC2 (n = 4) genes. Height, weight, and body mass index (BMI) references were constructed using the lambda, mu, sigma (LMS) method. Patients had birth weight and length within normal ranges for gestational age although a higher preterm frequency (16%) was observed. Mean final heights were 157.4 cm [-2.4 standard deviation score (SDS)] and 148.4 cm (-2.2 SDS) for adult males and females, respectively. BMI SDS was lower when compared to Brazilian standards (BMI SDS of -0.9 and -0.5 SDS for males and females, respectively). Patients harboring mutations in RAF1 and SHOC2 gene were shorter than other genotypes, whereas patients with SOS1 and BRAF mutations had more preserved postnatal growth. In addition, patients with RAF1 and BRAF had the highest BMI whereas patients with SHOC2 and KRAS mutations had the lowest BMI. The present study established the first height, weight, and BMI reference curves for NS and NLS patients, based only on patients with a proven molecular cause. These charts can be useful for the clinical follow-up of patients with NS and NLS."	"Constitutional NRAS mutations are rare among patients with Noonan syndrome or juvenile myelomonocytic leukemia. Recently, germline mutations of NRAS have been shown to be associated with Noonan syndrome (NS), a relatively common developmental disorder characterized by short stature, congenital heart disease, and distinctive facial features. We report on the mutational analysis of NRAS in a cohort of 125 French patients with NS and no known mutation for PTPN11, KRAS, SOS1, MEK1, MEK2, RAF1, BRAF, and SHOC2. The c.179G&gt;A (p.G60E) mutation was identified in two patients with typical NS, confirming that NRAS germline mutations are a rare cause of this syndrome. We also screened our cohort of 95 patients with juvenile myelomonocytic leukemia (JMML). Among 17 patients with NRAS-mutated JMML, none had clinical features suggestive of NS. None of the 11 JMML patients for which germline DNA was available had a constitutional NRAS mutation."	"Nras overexpression results in granulocytosis, T-cell expansion and early lethality in mice. NRAS is a proto-oncogene involved in numerous myeloid malignancies. Here, we report on a mouse line bearing a single retroviral long terminal repeat inserted into Nras. This genetic modification resulted in an increased level of wild type Nras mRNA giving the possibility of studying the function and activation of wild type NRAS. Flow cytometry was used to show a variable but significant increase of immature myeloid cells in spleen and thymus, and of T-cells in the spleen. At an age of one week, homozygous mice began to retard compared to their wild type and heterozygous littermates. Two weeks after birth, animals started to progressively lose weight and die before weaning. Heterozygous mice showed a moderate increase of T-cells and granulocytes but survived to adulthood and were fertile. In homozygous and heterozygous mice Gfi1 and Gcsf mRNA levels were upregulated, possibly explaining the increment in immature myeloid cells detected in these mice. The short latency period indicates that Nras overexpression alone is sufficient to cause dose-dependent granulocytosis and T-cell expansion."	"NRAS Mutations in Noonan Syndrome. Noonan syndrome is a genetically heterogeneous disorder caused by mutations in PTPN11, SOS1, RAF1 and less frequently in KRAS, NRAS or SHOC2. Here, we performed mutation analysis of NRAS and SHOC2 in 115 PTPN11, SOS1, RAF1, and KRAS mutation-negative individuals. No SHOC2 mutations were found, but we identified 3 NRAS mutations in 3 probands. One NRAS mutation was novel. The phenotype associated with germline NRAS mutations is variable. Our results confirm that a small proportion of Noonan syndrome patients carry germline NRAS mutations."	"Linkage analysis confirms heterogeneity of hereditary gingival fibromatosis. Hereditary Gingival Fibromatosis (HGF) is a rare benign fibrous lesion of the gingival tissues presumably caused by single gene defects. The aim of this study was to identify the genetic defect leading to HGF in an extended pedigree. We report the clinical features and genetic analysis of a family affected by HGF. A total of 17 subjects were assessed clinically and had blood samples taken for DNA extraction. Multipoint parametric linkage analysis was performed to identify the possible chromosomal location responsible for HGF in this family. Presence of severe HGF associated with tooth impaction was confirmed for seven members of this three-generation family. Linkage analysis revealed that loci on chromosomes 7, 10, 13, 15, 16, 17, 19 and 20 were linked to this trait. Previously found mutations in the SOS1 and GINGF loci were therefore excluded by this analysis. This study brings further evidence for genetic heterogeneity of HGF and points towards the existence of different, not-yet-identified genes linked to this condition."	"Case report: Noonan syndrome with multiple giant cell lesions and review of the literature. Noonan syndrome with multiple giant cell lesions (NS/MGCL) was recently shown to be a phenotypic variation within the syndromes of the Ras/MAPK pathway and not an independent entity as previously thought. Here we report on a 13-year-old boy with a typical phenotype of NS including atrial septal defect, pulmonic stenosis, short stature, and combined pectus carinatum/excavatum, pronounced MGCL of both jaws, and a de novo mutation in PTPN11, c.236A&gt;G (which predicts p.Q79R). Mutations in PTPN11 are the most frequent cause of NS and p.Q79R is a recurrent mutation in exon 3. Including this patient, 24 patients with molecularly confirmed NS, LEOPARD, or CFC/MGCL syndrome have been reported to date, of these 21 patients have PTPN11, SOS1, or RAF1 mutations and three have BRAF or MAP2K1 mutations, confirming that MGCL is a rare complication of the deregulated RAS/MAPK pathway. In all patients, the lesions of the mandible and to a lesser extent of the maxilla were first noted between ages 2 and 19 years (median 11 years), and were combined with enlargement of the jaws in 11/24 patients (46%). In this case and, with one exception (mutation not reported), all previous cases the NS/MGCL was caused by known mutations in the PTPN11, SOS1, RAF1, BRAF1, and MAP2K1 genes that were previously reported with RASopathies without MGCL."	"RSK phosphorylates SOS1 creating 14-3-3-docking sites and negatively regulating MAPK activation. The extent and duration of MAPK (mitogen-activated protein kinase) signalling govern a diversity of normal and aberrant cellular outcomes. Genetic and pharmacological disruption of the MAPK-activated kinase RSK (ribosomal S6 kinase) leads to elevated MAPK activity indicative of a RSK-dependent negative feedback loop. Using biochemical, pharmacological and quantitative MS approaches we show that RSK phosphorylates the Ras activator SOS1 (Son of Sevenless homologue 1) in cultured cells on two C-terminal residues, Ser(1134) and Ser(1161). Furthermore, we find that RSK-dependent SOS1 phosphorylation creates 14-3-3-binding sites. We show that mutating Ser(1134) and Ser(1161) disrupts 14-3-3 binding and modestly increases and extends MAPK activation. Together these data suggest that one mechanism whereby RSK negatively regulates MAPK activation is via site-specific SOS1 phosphorylation."	"Atrioventricular canal defect in patients with RASopathies. Congenital heart defects affect 60-85% of patients with RASopathies. We analysed the clinical and molecular characteristics of atrioventricular canal defect in patients with mutations affecting genes coding for proteins with role in the RAS/MAPK pathway. Between 2002 and 2011, 101 patients with cardiac defect and a molecularly confirmed RASopathy were collected. Congenital heart defects within the spectrum of complete or partial (including cleft mitral valve) atrioventricular canal defect were diagnosed in 8/101 (8%) patients, including seven with a PTPN11 gene mutation, and one single subject with a RAF1 gene mutation. The only recurrent mutation was the missense PTPN11 c.124 A&gt;G change (T42A) in PTPN11. Partial atrioventricular canal defect was found in six cases, complete in one, cleft mitral valve in one. In four subjects the defect was associated with other cardiac defects, including subvalvular aortic stenosis, mitral valve anomaly, pulmonary valve stenosis and hypertrophic cardiomyopathy. Maternal segregation of PTPN11 and RAF1 gene mutations occurred in two and one patients, respectively. Congenital heart defects in the affected relatives were discordant in the families with PTPN11 mutations, and concordant in that with RAF1 mutation. In conclusion, our data confirm previous reports indicating that atrioventricular canal defect represents a relatively common feature in Noonan syndrome. Among RASopathies, atrioventricular canal defect was observed to occur with higher prevalence among subjects with PTPN11 mutations, even though this association was not significant possibly because of low statistical power. Familial segregation of atrioventricular canal defect should be considered in the genetic counselling of families with RASopathies."	"Response to growth hormone therapy in children with Noonan syndrome: correlation with or without PTPN11 gene mutation. The objective of this study was to evaluate the efficacy of recombinant human growth hormone (rhGH) therapy and the influence of genotype on the response to rhGH therapy in children with Noonan syndrome (NS). 14 male and 4 female subjects with NS with short stature, whose height was &lt; 3rd percentile, were included. The rhGH was subcutaneously administered at a dose of 66 μg/kg/day. Mutations in the PTPN11 gene were identified in 10 subjects (55.6%). Mutations in the SOS1 (2 children, 11.1%), MEK1 (1 child, 5.6%) and KRAS (1 child, 5.6%) genes were also found. Height SDS increased from –2.8 ± 0.9 at the start of rhGH therapy to –2.0 ± 0.9 12 months later (p &lt; 0.001). Height velocity increased from 5.0 ± 0.9 cm/year in the year before treatment to 8.9 ± 1.6 during treatment (p &lt; 0.001). Changes in height SDS, height velocity, and serum IGF-1 level did not differ significantly between those children with or without PTPN11 mutations. The rhGH therapy significantly improved the growth velocity and increased the serum IGF-1 level. Longterm correlation between genotype and rhGH therapy responsiveness needs to be addressed in a large population."	"DOK3 negatively regulates LPS responses and endotoxin tolerance. Innate immune activation via Toll-like receptors (TLRs), although critical for host defense against infection, must be regulated to prevent sustained cell activation that can lead to cell death. Cells repeatedly stimulated with lipopolysaccharide (LPS) develop endotoxin tolerance making the cells hypo-responsive to additional TLR stimulation. We show here that DOK3 is a negative regulator of TLR signaling by limiting LPS-induced ERK activation and cytokine responses in macrophages. LPS induces ubiquitin-mediated degradation of DOK3 leading to SOS1 degradation and inhibition of ERK activation. DOK3 mice are hypersensitive to sublethal doses of LPS and have altered cytokine responses in vivo. During endotoxin tolerance, DOK3 expression remains stable, and it negatively regulates the expression of SHIP1, IRAK-M, SOCS1, and SOS1. As such, DOK3-deficient macrophages are more sensitive to LPS-induced tolerance becoming tolerant at lower levels of LPS than wild type cells. Taken together, the absence of DOK3 increases LPS signaling, contributing to LPS-induced tolerance. Thus, DOK3 plays a role in TLR signaling during both naïve and endotoxin-induced tolerant conditions."	"The F-BAR protein NOSTRIN participates in FGF signal transduction and vascular development. F-BAR proteins are multivalent adaptors that link plasma membrane and cytoskeleton and coordinate cellular processes such as membrane protrusion and migration. Yet, little is known about the function of F-BAR proteins in vivo. Here we report, that the F-BAR protein NOSTRIN is necessary for proper vascular development in zebrafish and postnatal retinal angiogenesis in mice. The loss of NOSTRIN impacts on the migration of endothelial tip cells and leads to a reduction of tip cell filopodia number and length. NOSTRIN forms a complex with the GTPase Rac1 and its exchange factor Sos1 and overexpression of NOSTRIN in cells induces Rac1 activation. Furthermore, NOSTRIN is required for fibroblast growth factor 2 dependent activation of Rac1 in primary endothelial cells and the angiogenic response to fibroblast growth factor 2 in the in vivo matrigel plug assay. We propose a novel regulatory circuit, in which NOSTRIN assembles a signalling complex containing FGFR1, Rac1 and Sos1 thereby facilitating the activation of Rac1 in endothelial cells during developmental angiogenesis."	"Activation of Ras-dependent signaling pathways by G(14) -coupled receptors requires the adaptor protein TPR1. Many G(q) -coupled receptors mediate mitogenic signals by stimulating extracellular signal-regulated protein kinases (ERKs) that are typically regulated by the small GTPase Ras. Recent studies have revealed that members of the Gα(q) family may possess the ability to activate Ras/ERK by interacting with the adaptor protein tetratricopeptide repeat 1 (TPR1). Within the Gα(q) family, the highly promiscuous Gα(14) can relay signals from numerous receptors. Here, we examined if Gα(14) interacts with TPR1 to stimulate Ras signaling pathways. Expression of the constitutively active Gα(14) QL mutant in HEK293 cells led to the formation of GTP-bound Ras as well as increased phosphorylations of downstream signaling molecules including ERK and IκB kinase. Stimulation of endogenous G(14) -coupled somatostatin type 2 and α(2) -adrenergic receptors produced similar responses in human hepatocellular HepG2 carcinoma cells. Co-immunoprecipitation assays using HEK293 cells demonstrated a stronger association of TPR1 for Gα(14) QL than Gα(14) , suggesting that TPR1 preferentially binds to the GTP-bound form of Gα(14) . Activated Gα(14) also interacted with the Ras guanine nucleotide exchange factors SOS1 and SOS2. Expression of a dominant negative mutant of TPR1 or siRNA-mediated knockdown of TPR1 effectively abolished the ability of Gα(14) to induce Ras signaling in native HepG2 or transfected HEK293 cells. Although expression of the dominant negative mutant of TPR1 suppressed Gα(14) QL-induced phosphorylations of ERK and IκB kinase, it did not affect Gα(14) QL-induced stimulation of phospholipase Cβ or c-Jun N-terminal kinase. Our results suggest that TPR1 is required for Gα(14) to stimulate Ras-dependent signaling pathways, but not for the propagation of signals along Ras-independent pathways."	"Conserved and diversified gene families of monovalent cation/h(+) antiporters from algae to flowering plants. All organisms have evolved strategies to regulate ion and pH homeostasis in response to developmental and environmental cues. One strategy is mediated by monovalent cation-proton antiporters (CPA) that are classified in two superfamilies. Many CPA1 genes from bacteria, fungi, metazoa, and plants have been functionally characterized; though roles of plant CPA2 genes encoding K(+)-efflux antiporter (KEA) and cation/H(+) exchanger (CHX) families are largely unknown. Phylogenetic analysis showed that three clades of the CPA1 Na(+)-H(+) exchanger (NHX) family have been conserved from single-celled algae to Arabidopsis. These are (i) plasma membrane-bound SOS1/AtNHX7 that share ancestry with prokaryote NhaP, (ii) endosomal AtNHX5/6 that is part of the eukaryote Intracellular-NHE clade, and (iii) a vacuolar NHX clade (AtNHX1-4) specific to plants. Early diversification of KEA genes possibly from an ancestral cyanobacterium gene is suggested by three types seen in all plants. Intriguingly, CHX genes diversified from three to four members in one subclade of early land plants to 28 genes in eight subclades of Arabidopsis. Homologs from Spirogyra or Physcomitrella share high similarity with AtCHX20, suggesting that guard cell-specific AtCHX20 and its closest relatives are founders of the family, and pollen-expressed CHX genes appeared later in monocots and early eudicots. AtCHX proteins mediate K(+) transport and pH homeostasis, and have been localized to intracellular and plasma membrane. Thus KEA genes are conserved from green algae to angiosperms, and their presence in red algae and secondary endosymbionts suggest a role in plastids. In contrast, AtNHX1-4 subtype evolved in plant cells to handle ion homeostasis of vacuoles. The great diversity of CHX genes in land plants compared to metazoa, fungi, or algae would imply a significant role of ion and pH homeostasis at dynamic endomembranes in the vegetative and reproductive success of flowering plants."	"Prevalence of sequence variants in the RAS-mitogen activated protein kinase signaling pathway in pre-adolescent children with hypertrophic cardiomyopathy. Most cases of apparently idiopathic hypertrophic cardiomyopathy (HCM) in children are caused by mutations in cardiac sarcomere protein genes. HCM also commonly occurs as an associated feature in some patients with disorders caused by mutations in genes encoding components of the RAS-mitogen activated protein kinase (MAPK) signaling pathway. Although diagnosis of these disorders is based on typical phenotypic features, the dysmorphic manifestations can be subtle and therefore overlooked. The aim of this study was to determine the prevalence of mutations in RAS-MAPK genes in preadolescent children with idiopathic HCM. Seventy-eight patients diagnosed with apparently nonsyndromic HCM aged ≤13 years underwent clinical and genetic evaluation. The entire protein coding sequence of 9 genes implicated in Noonan syndrome and related conditions (PTPN11, SOS1, HRAS, KRAS, NRAS, BRAF, RAF1, MAP2K1, and MAP2K2), together with CBL (exons 8 and 9) and SHOC2 (4A&gt;G), were screened for mutations. Five probands (6.4%) carried novel sequence variants in SOS1 (2 individuals), BRAF, MAP2K1, and MAP2K2. Structural and molecular data suggest that these variants may have functional significance. Nine cardiac sarcomere protein genes were screened also; 2 individuals also had mutations in MYBPC. This study reports novel and potentially pathogenic sequence variants in genes of the RAS-MAPK pathway, suggesting that genetic lesions promoting signaling dysregulation through RAS contribute to disease pathogenesis or progression in children with HCM."	"Amplification of CRKL induces transformation and epidermal growth factor receptor inhibitor resistance in human non-small cell lung cancers. We previously identified a region of recurrent amplification on chromosome 22q11.21 in a subset of primary lung adenocarcinomas. Here we show that CRKL, encoding for an adaptor protein, is amplified and overexpressed in non-small cell lung cancer (NSCLC) cells that harbor 22q11.21 amplifications. Overexpression of CRKL in immortalized human airway epithelial cells promoted anchorage-independent growth and tumorigenicity. Oncogenic CRKL activates the SOS1-RAS-RAF-ERK and SRC-C3G-RAP1 pathways. Suppression of CRKL in NSCLC cells that harbor CRKL amplifications induced cell death. Overexpression of CRKL in epidermal growth factor receptor (EGFR)-mutant cells induces resistance to gefitinib by activating extracellular signal-regulated kinase and AKT signaling. We identified CRKL amplification in an EGFR inhibitor-treated lung adenocarcinoma that was not present before treatment. These observations demonstrate that CRKL overexpression induces cell transformation, credential CRKL as a therapeutic target for a subset of NSCLC that harbor CRKL amplifications, and implicate CRKL as an additional mechanism of resistance to EGFR-directed therapy. These studies credential CRKL as an oncogene in a subset of NSCLC. Overexpression of CRKL induces cell transformation and resistance to epidermal growth factor receptor inhibitor treatment and suggest that therapeutic interventions targeting CRKL may confer a clinical benefit in a defined subset of NSCLCs."	"Deconstructing Ras signaling in the thymus. Thymocytes must transit at least two distinct developmental checkpoints, governed by signals that emanate from either the pre-T cell receptor (pre-TCR) or the TCR to the small G protein Ras before emerging as functional T lymphocytes. Recent studies have shown a role for the Ras guanine exchange factor (RasGEF) Sos1 at the pre-TCR checkpoint. At the second checkpoint, the quality of signaling through the TCR is interrogated to ensure the production of an appropriate T cell repertoire. Although RasGRP1 is the only confirmed RasGEF required at the TCR checkpoint, current models suggest that the intensity and character of Ras activation, facilitated by both Sos and RasGRP1, will govern the boundary between survival (positive selection) and death (negative selection) at this stage. Using mouse models, we have assessed the independent and combined roles for the RasGEFs Sos1, Sos2, and RasGRP1 during thymocyte development. Although Sos1 was the dominant RasGEF at the pre-TCR checkpoint, combined Sos1/RasGRP1 deletion was required to effectively block development at this stage. Conversely, while RasGRP1 deletion efficiently blocked positive selection, combined RasGRP1/Sos1 deletion was required to block negative selection. This functional redundancy in RasGEFs during negative selection may act as a failsafe mechanism ensuring appropriate central tolerance."	"A rasopathy phenotype with severe congenital hypertrophic obstructive cardiomyopathy associated with a PTPN11 mutation and a novel variant in SOS1. The RAS-MAPK pathway is critical for human growth and development. Abnormalities at different steps of this signaling cascade result in neuro-cardio-facial-cutaneous syndromes, or the RASopathies, a group of disorders with overlapping yet distinct phenotypes. RASopathy patients have variable degrees of intellectual disability, poor growth, relative macrocephaly, ectodermal abnormalities, dysmorphic features, and increased risk for certain malignancies. Congenital heart disease, particularly hypertrophic cardiomyopathy (HCM) and pulmonic stenosis, are prominent features in these disorders. Significant locus heterogeneity exists for many of the RASopathies. Traditionally, these diseases were thought to be inherited in an autosomal dominant manner. However, recently patients with defects in two components of this pathway and overlapping features of various forms of Noonan syndrome and neurofibromatosis 1 and have been reported. Here we present a patient with severe, progressive neonatal HCM, elevated urinary catecholamine metabolites, and dysmorphic features in whom we identified a known LEOPARD syndrome-associated PTPN11 mutation (c.1403 C &gt; T; p.T468M) and a novel, potentially pathogenic missense SOS1 variant (c.1018 C &gt; T; p.P340S) replacing a rigid nonpolar imino acid with a polar amino acid at a highly conserved position. We describe detailed clinical manifestations, cardiac histopathology, and the molecular genetic findings. Oligogenic models of inheritance with potential synergistic effects should be considered in the RASopathies."	"Decreased bone mineralization in children with Noonan syndrome: another consequence of dysregulated RAS MAPKinase pathway? Noonan syndrome (NS) is a disorder of RAS- mitogen activated protein kinase (MAPK) pathway with clinical features of skeletal dysplasia. This pathway is essential for regulation of cell differentiation and growth including bone homeostasis. Currently, limited information exists regarding bone mineralization in NS. Using dual-energy X-ray absorptiometry (DXA), bone mineralization was evaluated in 12 subjects (mean age 8.7 years) with clinical features of NS. All subjects underwent genetic testing which showed mutations in PTPN11 gene (N=8) and SOS1 gene (N=1). In a subgroup of subjects with low bone mass, indices of calcium-phosphate metabolism and bone turnover were obtained. 50% of subjects had low bone mass as measured by DXA. Z-scores for bone mineral content (BMC) were calculated based on age, gender, height, and ethnicity. Mean BMC z-score was marginally decreased at -0.89 {95% CI -2.01 to 0.23; p=0.1}. Mean total body bone mineral density (BMD) z-score was significantly reduced at -1.87 {95% CI -2.73 to -1.0; p=0.001}. Mean height percentile was close to - 2 SD for this cohort, thus total body BMD z-scores were recalculated, adjusting for height age. Adjusted mean total body BMD z-score was less reduced but still significant at -0.82 {95% CI -1.39 to -0.25; p=0.009}. Biochemical evaluation for bone turnover was unremarkable except serum IGF-I and IGF-BP3 levels which were low-normal for age. Children with NS have a significantly lower total body BMD compared to age, gender, ethnicity and height matched controls. In addition, total BMC appears to trend lower in children with NS compared to controls. We conclude that the metabolic bone disease present resulted from a subtle variation in the interplay of osteoclast and osteoblast activity, without clear abnormalities being defined in the metabolism of either. Clinical significance of this finding needs to be validated by larger longitudinal studies. Also, histomorphometric analysis of bone tissue from NS patients and mouse model of NS may further elucidate the relationship between the RAS-MAPK pathway and skeletal homeostasis."	"Optimisation of Downscaled Tandem Affinity Purifications to Identify Core Protein Complexes. In this study we show that via stable, retroviral-expression of tagged EGFR del (L747-S752 deletion mutant) in the PC9 lung cancer cell line and stable doxycycline-inducible expression of tagged Grb2 using a Flp-mediated recombination HEK293 cell system, the SH-TAP can be downscaled to 5 to 12.5 mg total protein input (equivalent to 0.5 - 1 × 15 cm culture plate or 4 - 8 × 10<sup>6</sup> cells). The major constituents of the EGFR del complex (USB3B, GRB2, ERRFI, HSP7C, GRP78, HSP71) and the Grb2 complex (ARHG5, SOS1, ARG35, CBL, CBLB, PTPRA, SOS2, DYN2, WIPF2, IRS4) were identified. Adjustment of the quantity of digested protein injected into the mass spectrometer reveals that optimisation is required as high quantities of material led to a decrease in protein sequence coverage and the loss of some interacting proteins. This investigation should aid other researchers in performing tandem affinity purifications in general, and in particular, from low quantities of input material."	"Hereditary gingival hyperplasia associated with amelogenesis imperfecta: a case report. Hereditary gingival fibromatosis (HGF) and amelogenesis imperfecta (AI) are two rare oral conditions with genetic etiologies. The case of a 17-year-old boy affected by HGF, AI, anterior open bite, and pyramidal impaction of the maxillary molars is reported. Internal bevel gingivectomies were carried out to reduce gingival overgrowth. Clinical examination of the family revealed the presence of HGF and AI in his 12-year-old sister (both in milder forms) and of HGF in his older half brother. Genetic sequencing analyses were performed to detect any of the known mutations leading to HGF and AI. Histologic analysis revealed the presence of fibroepithelial hyperplasia, consistent with a diagnosis of GF. Sequencing genetic analysis failed to identify any of the common mutations leading to HGF (SOS-1) or AI (enamelin and amelogenin genes). This phenotype, similar to what has been described in other families, may represent a new syndrome caused by an as-yet unknown genotype."	"Mammary cancer promotion by ovarian hormones involves IGFR/AKT/mTOR signaling. In a previous study, we observed that N-methyl-N-nitrosourea (MNU)-induced mammary lesions are promoted to overt mammary cancers by exogenous administration of estradiol (E) and progesterone (P). The purpose of the present study was to identify the early molecular events occurring during the hormonal promotion of mammary carcinogenesis and persistent activation of molecular pathways responsible for tumor growth. Seven-week-old female Copenhagen (COP) rats, which are resistant to MNU-induced mammary carcinogenesis, were intraperitoneally administered a single dose of MNU (50 mg/kg body weight). Six weeks after carcinogen administration, the rats were treated with E+P, killed at 15th week and 43rd week to obtain mammary lesions and tumor tissues and the molecular analysis were performed. Quantitative RT-PCR experiments showed increased mRNA expression of Igfr, Grb2, Sos1, and Shc1 in mammary lesions and tumors. Immunoblot data also showed increased protein levels of IGFR, GRB2 and SHC1 in mammary lesions and tumors, which is in correlation with their respective RT-PCR data. Activation of AKT and ERK1/2 were up regulated in E+P treated mammary lesions and tumors. Molecular analysis of mTOR pathway proteins revealed increased phosphorylation of p70S6K and 4EBP1 in the hormone treated tumors indicating the activation of mTOR signaling. E+P treatment reduced the protein expression of BAX and increased BCL2 expression along with down regulation of active caspase 3 and 8. Together, these data demonstrate that ovarian hormones promote the lesions to mammary tumors by enhancing IGFR and Akt/mTOR signaling along with inhibition of apoptotic stimuli."	"Alterations in RAS-MAPK genes in 200 Spanish patients with Noonan and other neuro-cardio-facio-cutaneous syndromes. Genotype and cardiopathy. Molecular characterization of congenital heart diseases now includes the not infrequent dysmorphic Noonan syndrome. A study of 6 genes of the RAS-MAPK pathway in Spanish patients is presented: the impact of heart disease, clinical expressivity, and diagnostic yield are investigated. The study included 643 patients (and 182 family members) diagnosed by dysmorphologists, cardiologists, and pediatric endocrinologists from 74 tertiary hospitals. Bidirectional sequencing analysis of PTPN11, SOS1, RAF1, BRAF, KRAS and HRAS focused on exons carrying recurrent mutations accounting for 80% to 95% of previously described mutations. Mutations were detected in 230 patients (91 women and 139 men) in 200 (31%) families (172 PTPN11+, 14 SOS1+, 9 RAF1+, 5 BRAF+). There was specific reference to the heart defect suffered in 156 index cases: 103 patients had shown pulmonary stenosis, 12 pulmonary stenosis with hyperthrophic cardiomyopathy, 18 hypertrophic cardiomiopathy, and 14 other cardiopathies; heart disease was absent in 9 index cases. Heart disease had not been documented in 23 of 30 family members with positive genotype and compatible clinical signs. Diagnostic yield was higher (P=.016) for samples from some centers (53%; 14/32) and even from certain professionals (64%; 9/14; P=.019). Characterization rate was 18% in patients for whom clinical data were not available. Genotyping led to a more precise diagnosis in 26 patients. Most patients (94%) with a positive genotype had known congenital heart disease, 79% pulmonary stenosis and 12% hyperthrophic cardiomyopathy. Cardiopathy had not been documented in 76% of family members carrying the mutation. Molecular study is a useful tool in these syndromes but a more rigorous clinical diagnosis should be intended as well."	"Type II cGMP-dependent protein kinase inhibits EGF-induced MAPK/JNK signal transduction in breast cancer cells. Our previous research data showed that type II cGMP-dependent protein kinase (PKGII) inhibited EGF-induced MAPK/ERK-mediated signal transduction through blocking the phosphorylation of EGFR caused by EGF. Since EGFR also mediates other MAPK-mediated signal transduction pathways, this study was designed to investigate whether PKGII inhibits EGF-induced MAPK/c-Jun N-terminal kinase (JNK) signal transduction. MCF-7 human breast cancer cells were infected with adenoviral constructs encoding the cDNA of PKGII (pAd-PKGII) to increase the expression of PKGII and treated with 8-pCPT-cGMP to activate the enzyme. Western blotting was applied to detect the phosphorylation/activation of EGFR, JNK, MKK7 and c-Jun. The Pull-down method was used to detect the activation of Ras protein. Co-IP was used to analyze the binding between Grb2 and Sos1. TUNEL staining was used to detect the apoptosis of MCF-7 cells. The results showed that EGF treatment increased the phosphorylation of EGFR, the binding between Grb2 and Sos1, the activation of Ras, and the phosphorylation/activation of MKK7, JNK and c-Jun, but decreased the apoptosis of the cells. Increase of PKGII activity through infection with pAd-PKGII and stimulation with 8-pCPT-cGMP efficiently reversed the above changes caused by EGF. The results suggest that PKGII also inhibits EGF-induced MAPK/JNK-mediated signal transduction and further confirmed that PKGII can block the activation of EGFR."	"Clinical and molecular analysis of RASopathies in a group of Turkish patients. The 'RASopathies' are a group of disorders sharing many clinical features and a common pathophysiology. In this study, we aimed to clinically evaluate a group of Turkish patients and elucidate the underlying genetic etiology. Thirty-one patients with a clinical diagnosis of one of the RASopathy syndromes were included in the study. Of these, 26 (83.8%) had a clinical diagnosis of Noonan syndrome, whereas 5 had a clinical diagnosis of either Costello, LEOPARD or cardio-facio-cutaneous syndromes. Twenty of 31 (64.5%) patients were found to be mutation positive. Mutations in PTPN11, SOS1 and SHOC2 genes were detected in patients with Noonan syndrome (57.6%). Mutations in MEK1, PTPN11, BRAF and HRAS genes were detected in the remaining. Pulmonary stenosis was the most common (61.5%) cardiac anomaly. Among Noonan syndrome patients with a confirmed mutation, mild intellectual disability tended to be more common in patients with PTPN11 mutation than in those with SOS1 mutation. Hematologic evaluation revealed coagulation defects in three Noonan syndrome patients with a mutation. This is currently the largest clinical and molecular study in Turkish RASopathy patients. Our findings indicate that molecular epidemiology and genotype-phenotype correlations in RASopathies are relatively independent from the ethnic population background."	"Isolation and characterisation of Chrysanthemum crassum SOS1, encoding a putative plasma membrane Na(+) /H(+) antiporter. A full-length cDNA homologue of SOS1 (salt overly sensitive 1) was isolated from the salinity-tolerant species Chrysanthemum crassum and found to encode a Na(+) /H(+) antiporter, using degenerate PCR and RACE-PCR. The 3752-bp sequence comprised a 3438 bp open reading frame, encoding a 127-kDa protein with 12 transmembrane domains within its N terminal portion, and a hydrophilic cytoplasmic tail in its C-terminal portion. CcSOS1 appears to be a plasma membrane protein, and shares ∼62% identity at the peptide level with its Arabidopsis thaliana homologue. Expression of CcSOS1 in the roots of C. crassum was sensitive to salinity stress, while in the leaves CcSOS1 was down-regulated in the presence of abscisic acid. CcSOS1 transcript abundance was reduced in both roots and leaves of plants exposed to low temperature, while it was increased in leaves (but not in roots) after drought stress. CcSOS1 expression was not regulated in the presence of CaCl2 . A heterologous complementation assay in yeast suggested that CcSOS1 directs Na(+) efflux, mimicking the function of the endogenous NHA1 protein. Thus CcSOS1 appears to encode a salinity-inducible plasma membrane Na(+) /H(+) antiporter. This gene may be useful in transgenic approaches to improving the salinity tolerance of related ornamental species. "	"Modeling and simulation of aggregation of membrane protein LAT with molecular variability in the number of binding sites for cytosolic Grb2-SOS1-Grb2. The linker for activation of T cells (LAT), the linker for activation of B cells (LAB), and the linker for activation of X cells (LAX) form a family of transmembrane adaptor proteins widely expressed in lymphocytes. These scaffolding proteins have multiple binding motifs that, when phosphorylated, bind the SH2 domain of the cytosolic adaptor Grb2. Thus, the valence of LAT, LAB and LAX for Grb2 is variable, depending on the strength of receptor activation that initiates phosphorylation. During signaling, the LAT population will exhibit a time-varying distribution of Grb2 valences from zero to three. In the cytosol, Grb2 forms 1:1 and 2:1 complexes with the guanine nucleotide exchange factor SOS1. The 2:1 complex can bridge two LAT molecules when each Grb2, through their SH2 domains, binds to a phosphorylated site on a separate LAT. In T cells and mast cells, after receptor engagement, receptor phosphoyrlation is rapidly followed by LAT phosphorylation and aggregation. In mast cells, aggregates containing more than one hundred LAT molecules have been detected. Previously we considered a homogeneous population of trivalent LAT molecules and showed that for a range of Grb2, SOS1 and LAT concentrations, an equilibrium theory for LAT aggregation predicts the formation of a gel-like phase comprising a very large aggregate (superaggregate). We now extend this theory to investigate the effects of a distribution of Grb2 valence in the LAT population on the formation of LAT aggregates and superaggregate and use stochastic simulations to calculate the fraction of the total LAT population in the superaggregate."	"Multivalent binding and facilitated diffusion account for the formation of the Grb2-Sos1 signaling complex in a cooperative manner. Despite its key role in driving cellular growth and proliferation through receptor tyrosine kinase (RTK) signaling, the Grb2-Sos1 macromolecular interaction remains poorly understood in mechanistic terms. Herein, using an array of biophysical methods, we provide evidence that although the Grb2 adaptor can potentially bind to all four PXψPXR motifs (designated herein S1-S4) located within the Sos1 guanine nucleotide exchange factor, the formation of the Grb2-Sos1 signaling complex occurs with a 2:1 stoichiometry. Strikingly, such bivalent binding appears to be driven by the association of the Grb2 homodimer to only two of four potential PXψPXR motifs within Sos1 at any one time. Of particular interest is the observation that of a possible six pairwise combinations in which S1-S4 motifs may act in concert for the docking of the Grb2 homodimer through bivalent binding, only S1 and S3, S1 and S4, S2 and S4, and S3 and S4 do so, while pairwise combinations of sites S1 and S2 and sites S2 and S3 appear to afford only monovalent binding. This salient observation implicates the role of local physical constraints in fine-tuning the conformational heterogeneity of the Grb2-Sos1 signaling complex. Importantly, the presence of multiple binding sites within Sos1 appears to provide a physical route for Grb2 to hop in a flip-flop manner from one site to the next through facilitated diffusion, and such rapid exchange forms the basis of positive cooperativity driving the bivalent binding of Grb2 to Sos1 with high affinity. Collectively, our study sheds new light on the assembly of a key macromolecular signaling complex central to cellular machinery in health and disease."	"Transcriptional hallmarks of Noonan syndrome and Noonan-like syndrome with loose anagen hair. Noonan syndrome (NS) is among the most common nonchromosomal disorders affecting development and growth. NS is genetically heterogeneous, being caused by germline mutations affecting various genes implicated in the RAS signaling network. This network transduces extracellular signals into intracellular biochemical and transcriptional responses controlling cell proliferation, differentiation, metabolism, and senescence. To explore the transcriptional consequences of NS-causing mutations, we performed global mRNA expression profiling on peripheral blood mononuclear cells obtained from 23 NS patients carrying heterozygous mutations in PTPN11 or SOS1. Gene expression profiling was also resolved in five subjects with Noonan-like syndrome with loose anagen hair (NS/LAH), a condition clinically related to NS and caused by an invariant mutation in SHOC2. Robust transcriptional signatures were found to specifically discriminate each of the three mutation groups from 21 age- and sex-matched controls. Despite the only partial overlap in terms of gene composition, the three signatures showed a notable concordance in terms of biological processes and regulatory circuits affected. These data establish expression profiling of peripheral blood mononuclear cells as a powerful tool to appreciate differential perturbations driven by germline mutations of transducers involved in RAS signaling and to dissect molecular mechanisms underlying NS and other RASopathies."	"SOS1 over-expression in genital skin fibroblasts from hirsute women: a putative role of the SOS1/RAS pathway in the pathogenesis of hirsutism. Hirsutism is the development of androgen-dependent terminal body hair in women in places in which terminal hair are normally not found. It is often associated with hyperandrogenemia and/or polycystic ovary syndrome (PCOS), but the existence of uncommom hirsutism forms that are not related to altered androgen plasma levels lead also to the definition of - idiopathic hirsutism. Although the pathophysiology of hirsutism has been linked to increasing 5-alpha reductase (SRD5A) activity and to an alteration of the androgen receptor (AR) transcriptional machinery, many aspects remain unclear. In particular, the relationships between androgens and local factors are poorly understood. In the present paper, we selected for a genital skin biopsy, 8 women affected with severe hirsutism (Ferriman-Gallway score greater than 25) but with normal plasma androgen levels, with the exception of slightly higher serum 3alpha-diol-glucuronide levels, and 6 healthy controls and analyzed their androgen- and insulin-specific transcriptional profile using a specific custom low density microarray (AndroChip 2, GPL9164). We identified the over-expression of the Son of Sevenless-1 (SOS1) gene in all of the hirsute skin fibroblast primary cell cultures compared to control healthy women. Since SOS1 is a guanine nucleotide exchange factor that couples receptor tyrosine kinases to the RAS signaling pathway that controls cell proliferation and differentiation, we further analyzed SOS1 expression, protein level and RAS signaling activation pathway in an in vitro model (NHDF, normal human dermal fibroblast cell line). NHDF treated for 24 h with different concentrations of DHT and T showed an increase in SOS1 levels (both mRNA and protein) and also an activation of the RAS pathway. Our in vivo and in vitro data represent a novel preliminary observation that factors activating SOS1 could act as local proliferative modulators linked to the androgen pathway in the pilosebaceous unit. SOS1 over-expression may play a role in the regulation of the RAS/mitogen-activated protein kinase pathway in the skin, in the hair follicle proliferation and cell cycle, suggesting new perspectives in understanding the pathogenesis of idiopathic hirsutism."	"Ion Transporters and Abiotic Stress Tolerance in Plants. Adaptation of plants to salt stress requires cellular ion homeostasis involving net intracellular Na(+) and Cl(-) uptake and subsequent vacuolar compartmentalization without toxic ion accumulation in the cytosol. Sodium ions can enter the cell through several low- and high-affinity K(+) carriers. Some members of the HKT family function as sodium transporter and contribute to Na(+) removal from the ascending xylem sap and recirculation from the leaves to the roots via the phloem vasculature. Na(+) sequestration into the vacuole depends on expression and activity of Na(+)/H(+) antiporter that is driven by electrochemical gradient of protons generated by the vacuolar H(+)-ATPase and the H(+)-pyrophosphatase. Sodium extrusion at the root-soil interface is presumed to be of critical importance for the salt tolerance. Thus, a very rapid efflux of Na(+) from roots must occur to control net rates of influx. The Na(+)/H(+) antiporter SOS1 localized to the plasma membrane is the only Na(+) efflux protein from plants characterized so far. In this paper, we analyze available data related to ion transporters and plant abiotic stress responses in order to enhance our understanding about how salinity and other abiotic stresses affect the most fundamental processes of cellular function which have a substantial impact on plant growth development. "	"Arabidopsis sodium dependent and independent phenotypes triggered by H⁺-PPase up-regulation are SOS1 dependent. Coordinate regulation of transporters at both the plasma membrane and vacuole contribute to plant cell's ability to adapt to a changing environment and play a key role in the maintenance of the chemiosmotic circuits required for cellular growth. The plasma membrane (PM) Na⁺/H⁺ antiporter (SOS1) is involved in salt tolerance, presumably in sodium extrusion; the vacuolar type I H⁺-PPase AVP1 is involved in vacuolar sodium sequestration, but its overexpression has also been shown to alter the abundance and activity of the PM H⁺-ATPase. Here we investigate the relationship between these transporters utilizing loss-of-function mutants of SOS1 (sos1) and increased expression of AVP1 (AVP1OX). Heightened expression of AVP1 enhances pyrophosphate-dependent proton pump activity, salt tolerance, ion vacuolar sequestration, K⁺ uptake capacity, root hair development, osmotic responses, and PM ATPase hydrolytic and proton pumping activities. In sos1 lines overexpressing AVP1, these phenotypes are negatively affected demonstrating that sos1 is epistatic to AVP1. Enhanced AVP1 protein levels require SOS1 and this regulation appears to be post-translational."	"RASopathies: Clinical Diagnosis in the First Year of Life. Diagnosis within Noonan syndrome and related disorders (RASopathies) still presents a challenge during the first months of life, since most clinical features used to differentiate these conditions become manifest later in childhood. Here, we retrospectively reviewed the clinical records referred to the first year of life of 57 subjects with molecularly confirmed diagnosis of RASopathy, to define the early clinical features characterizing these disorders and improve our knowledge on natural history. Mildly or markedly expressed facial features were invariably present. Congenital heart defects were the clinical issue leading to medical attention in patients with Noonan syndrome and LEOPARD syndrome. Feeding difficulties and developmental motor delay represented the most recurrent features occurring in subjects with cardiofaciocutaneous syndrome and Costello syndrome. Thin hair was prevalent among SHOC2 and BRAF mutation-positive infants. Café-au-lait spots were found in patients with LS and PTPN11 mutations, while keratosis pilaris was more common in individuals with SOS1, SHOC2 and BRAF mutations. In conclusion, some characteristics can be used as hints for suspecting a RASopathy during the first months of life, and individual RASopathies may be suspected by analysis of specific clinical signs. In the first year of life, these include congenital heart defects, severity of feeding difficulties and delay of developmental milestones, hair and skin anomalies, which may help to distinguish different entities, for their subsequent molecular confirmation and appropriate clinical management."	"Laminin-α1 LG4-5 domain binding to dystroglycan mediates muscle cell survival, growth, and the AP-1 and NF-κB transcription factors but also has adverse effects. In our previous studies, we showed laminin binds α-dystroglycan in the dystrophin glycoprotein complex and initiates cell signaling pathways. Here, differentiated C2C12 myocytes serve as a model of skeletal muscle. C2C12 cells have a biphasic response to the laminin-α(1) laminin globular (LG) 4-5 domains (1E3) dependent on the concentration used; at low concentrations of 1E3 (&lt;1 μg/ml), myoblast proliferation is increased while higher concentrations (&gt;1 μg/ml) cause apoptosis in myoblasts and differentiated myotubes. This alters the activation of the transcription factors activator protein-1 (AP-1) and NF-κB via laminin-dystrophin glycoprotein complex (DGC)-src-grb2-sos1-Rac1-Pak1-c-jun N-terminal kinase (JNK)p46 and laminin-DGC-Gβγ-phosphatidylinositol 3-kinase (PI3K)-Akt pathways, respectively. A specific antibody against Ser(63) phosphorylated c-jun completely blocks or supershifts the AP-1-DNA binding resulting from laminin binding but only partially blocks or supershifts the AP-1-DNA binding resulting from 1E3. This suggests that AP-1 contains phosphorylated c-jun in the presence of hololaminin but contains a different composition in the presence of 1E3. Nuclear NF-κB was only upregulated by a low concentration of 1E3 and is then diminished by a higher concentration; it also has a biphasic response. Nuclear localization of NF-κB is affected by PI3K/Akt signaling, and DGC associated PI3K activity also shows a biphasic response to 1E3. Furthermore, our data suggest that activation of c-jun N-terminal kinase participates in the cell survival pathway and suggest that NF-κB is involved in both survival and cell death. A model is presented which incorporates these observations."	"Short stature and its treatment in Turner and Noonan syndromes. We review recent developments in the approach to the treatment of short stature in patients with Turner and Noonan syndromes. Turner syndrome and Noonan syndrome are clinically defined conditions associated with short stature. The Food and Drug Administration (FDA) approved treatment with recombinant human growth hormone (hGH) for patients with Turner syndrome in 1996 and for those with Noonan syndrome in 2007. Studies have shown that early appropriate use of hGH increases adult height in individuals with Turner syndrome. The combination of hGH and low-dose estrogen may also improve growth and adult height as well as possibly provide neurocognitive and behavioral benefits. Noonan syndrome is a genetically heterogeneous condition. In patients with Noonan syndrome phenotype, investigators have identified disease-associated genes (PTPN11, SOS1, RAF1, KRAS, and others). Treatment with hGH has been documented to result in short-term increases in growth velocity as well as modest gains in adult height. Our understanding and management of short stature in children with Turner syndrome and Noonan syndrome has greatly advanced over the years. Recent developments with focus on these two common syndromes will be reviewed."	"Differential expression of salt overly sensitive pathway genes determines salinity stress tolerance in Brassica genotypes. The objective of the present study was to examine the role of SOS pathway in salinity stress tolerance in Brassica spp. An experiment was conducted in pot culture with 4 Brassica genotypes, i.e., CS 52 and CS 54, Varuna and T 9 subjected to two levels of salinity treatments along with a control, viz., 1.65 (S(0)), 4.50 (S(1)) and 6.76 (S(2)) dS m(-1). Salinity treatment significantly decreased relative water content (RWC), membrane stability index (MSI) and chlorophyll (Chl) content in leaves and potassium (K) content in leaf, stem and root of all the genotypes. The decline in RWC, MSI, Chl and K content was significantly less in CS 52 and CS 54 as compared to Varuna and T 9. In contrast, the sodium (Na) content increased under salinity stress in all the plant parts in all the genotypes, however, the increase was less in CS 52 and CS 54, which also showed higher K/Na ratio, and thus more favourable cellular environment. Gene expression studies revealed the existence of a more efficient salt overly sensitive pathway composed of SOS1, SOS2, SOS3 and vacuolar Na(+)/H(+) antiporter in CS 52 and CS 54 compared to Varuna and T 9. Sequence analyses of partial cDNAs showed the conserved nature of these genes, and their intra and intergenic relatedness. It is thus concluded that existence of an efficient SOS pathway, resulting in higher K/Na ratio, could be one of the major factor determining salinity stress tolerance of Brassica juncea genotypes CS 52 and CS 54."	"New insights into the role of spermine in Arabidopsis thaliana under long-term salt stress. Polyamines (putrescine, spermidine and spermine) are traditionally implicated in the response of plants to environmental cues. Free spermine accumulation has been suggested as a particular feature of long-term salt stress, and in the model plant Arabidopsis thaliana the spermine synthase gene (AtSPMS) has been reported as inducible by abscisic acid (ABA) and acute salt stress treatments. With the aim to unravel the physiological role of free spermine during salinity, we analyzed polyamine metabolism in A. thaliana salt-hypersensitive sos mutants (salt overlay sensitive; sos1-1, sos2-1 and sos3-1), and studied the salt stress tolerance of the mutants in spermine and thermospermine synthesis (acl5-1, spms-1 and acl5-1/spms-1). Results presented here indicate that induction in polyamine metabolism is a SOS-independent response to salinity and is globally over-induced in a sensitive background. In addition, under long-term salinity, the mutants in the synthesis of spermine and thermospermine (acl5-1, spms-1 and double acl5-1/spms-1) accumulated more Na(+) and performed worst than WT in survival experiments. Therefore, support is given to a role for these higher polyamines in salt tolerance mechanisms."	"SOS1 gene overexpression increased salt tolerance in transgenic tobacco by maintaining a higher K(+)/Na(+) ratio. Crop productivity is greatly affected by soil salinity, so improvement in salinity tolerance of crops is a major objective of many studies. We overexpressed the Arabidopsis thaliana SOS1 gene, which encodes a plasma membrane Na(+)/H(+) antiporter, in tobacco (Nicotiana tabacum cv. Xanthi-nc). Compared with nontransgenic plants, seeds from transgenic tobacco had better germination under 120 mM (mmol L(-1)) NaCl stress; chlorophyll loss in the transgenic seedlings treated with 360 mM NaCl was less; transgenic tobacco showed superior growth after irrigation with NaCl solutions; and transgenic seedlings with 150 mM NaCl stress accumulated less Na(+) and more K(+). In addition, roots of SOS1-overexpressing seedlings lost less K(+) instantaneously in response to 50 mM NaCl than control plants. These results showed that the A. thaliana SOS1 gene potentially can improve the salt tolerance of other plant species."	"Comparison of salt stress resistance genes in transgenic Arabidopsis thaliana indicates that extent of transcriptomic change may not predict secondary phenotypic or fitness effects. Engineered abiotic stress resistance is an important target for increasing agricultural productivity. There are concerns, however, regarding possible ecological impacts of transgenic crops. In contrast to the first wave of transgenic crops, many abiotic stress resistance genes can initiate complex downstream changes. Transcriptome profiling has been suggested as a comprehensive non-targeted approach to examine the secondary effects. We compared phenotypic and transcriptomic effects of constitutive expression of genes intended to confer salt stress tolerance by three different mechanisms: a transcription factor, CBF3/DREB1a; a metabolic gene, M6PR, for mannitol biosynthesis; and the Na⁺/H⁺ antiporter, SOS1. Transgenic CBF3, M6PR and SOS1 Arabidopsis thaliana were grown together in the growth chamber, greenhouse and field. In the absence of salt, M6PR and SOS1 lines performed comparably with wild type; CBF3 lines exhibited dwarfing as reported previously. All three transgenes conferred fitness advantage when subjected to 100 mm NaCl in the growth chamber. CBF3 and M6PR affected transcription of numerous abiotic stress-related genes as measured by Affymetrix microarray analysis. M6PR additionally modified expression of biotic stress and oxidative stress genes. Transcriptional effects of SOS1 in the absence of salt were smaller and primarily limited to redox-related genes. The extent of transcriptome change, however, did not correlate with the effects on growth and reproduction. Thus, the magnitude of global transcriptome differences may not predict phenotypic differences upon which environment and selection act to influence fitness. These observations have implications for interpretation of transcriptome analyses in the context of risk assessment and emphasize the importance of evaluation within a phenotypic context."	"CIIA functions as a molecular switch for the Rac1-specific GEF activity of SOS1. Son of sevenless 1 (SOS1) is a dual guanine nucleotide exchange factor (GEF) that activates the guanosine triphosphatases Rac1 and Ras, which mediate signaling initiated by peptide growth factors. In this paper, we show that CIIA is a new binding partner of SOS1. CIIA promoted the SOS1-Rac1 interaction and inhibited the SOS1-Ras interaction. Furthermore, CIIA promoted the formation of an SOS1-EPS8 complex and SOS1-mediated Rac1 activation, whereas it inhibited SOS1-mediated activation of Ras. Transforming growth factor β (TGF-β) up-regulated the expression of CIIA and thereby promoted the association between CIIA and SOS1 in A549 human lung adenocarcinoma cells. Depletion of CIIA in these cells by ribonucleic acid interference inhibited the TGF-β-induced interaction between SOS1 and EPS8, activation of Rac1, and cell migration. Together, these results suggest that CIIA mediates the TGF-β-induced activation of SOS1-Rac1 signaling and cell migration in A549 cells. They further show that CIIA functions as a molecular switch for the GEF activity of SOS1, directing this activity toward Rac1."	"Quantifying intramolecular binding in multivalent interactions: a structure-based synergistic study on Grb2-Sos1 complex. Numerous signaling proteins use multivalent binding to increase the specificity and affinity of their interactions within the cell. Enhancement arises because the effective binding constant for multivalent binding is larger than the binding constants for each individual interaction. We seek to gain both qualitative and quantitative understanding of the multivalent interactions of an adaptor protein, growth factor receptor bound protein-2 (Grb2), containing two SH3 domains interacting with the nucleotide exchange factor son-of-sevenless 1 (Sos1) containing multiple polyproline motifs separated by flexible unstructured regions. Grb2 mediates the recruitment of Sos1 from the cytosol to the plasma membrane where it activates Ras by inducing the exchange of GDP for GTP. First, using a combination of evolutionary information and binding energy calculations, we predict an additional polyproline motif in Sos1 that binds to the SH3 domains of Grb2. This gives rise to a total of five polyproline motifs in Sos1 that are capable of binding to the two SH3 domains of Grb2. Then, using a hybrid method combining molecular dynamics simulations and polymer models, we estimate the enhancement in local concentration of a polyproline motif on Sos1 near an unbound SH3 domain of Grb2 when its other SH3 domain is bound to a different polyproline motif on Sos1. We show that the local concentration of the Sos1 motifs that a Grb2 SH3 domain experiences is approximately 1000 times greater than the cellular concentration of Sos1. Finally, we calculate the intramolecular equilibrium constants for the crosslinking of Grb2 on Sos1 and use thermodynamic modeling to calculate the stoichiometry. With these equilibrium constants, we are able to predict the distribution of complexes that form at physiological concentrations. We believe this is the first systematic analysis that combines sequence, structure, and thermodynamic analyses to determine the stoichiometry of the complexes that are dominant in the cellular environment."	"Type II cGMP-dependent protein kinase inhibits EGF-triggered signal transduction of the MAPK/ERK-mediated pathway in gastric cancer cells. Our previous study found that Type II cGMP-dependent protein kinase (PKG II) is expressed at lower levels in human gastric cancer tissues and cell lines and increasing the expression and activity of PKG II inhibited the proliferation of cancer cell line BGC-823. However, the mechanism through which PKG II inhibits proliferation of gastric cancer cells is still not clear. Herein, we show that PKG II can inhibit EGF-induced MAPK signal transduction. In the gastric cancer cell line BGC-823, the expression and activity of PKG II were increased by infecting the cells with adenoviral construct encoding PKG II cDNA and treating the cells with the cGMP analogue 8-pCPT-cGMP. We found that PKG II inhibited the EGF-induced dual phosphorylation of ERK, a key component of the MAPK signal transduction pathway. Upstream of ERK, PKG II inhibited the phosphorylation of MEK1/2, the phosphorylation/activation of Raf-1, the activation of Ras, and the binding between adaptor protein Grb2 and GTP exchange factor Sos1 induced by EGF. Of note, PKG II inhibited the tyrosine phosphorylation of EGFR induced by EGF. Downstream of ERK, the EGF-induced nuclear translocation of phospho-ERK was also inhibited by PKG II. The results suggest that PKG II inhibits the proliferation of gastric cancer cells through blocking EGF-triggered MAPK signal transduction and the key blocking point is the tyrosine phosphorylation of the EGF receptor."	"Bufalin-inhibited migration and invasion in human osteosarcoma U-2 OS cells is carried out by suppression of the matrix metalloproteinase-2, ERK, and JNK signaling pathways. Bufalin has been shown to exhibit multiple pharmacological activities, including induction of apoptosis in many types of cancer cell lines. Osteosarcoma is a type of cancer which is difficult to treat and the purpose of this study was to investigate the effects of bufalin on the migration and invasion of human osteosarcoma U-2 OS cells. The wound healing assay and Boyden chamber transwell assay were used for examining the migration of U-2 OS cells. Western blotting and gelatin zymography assays were used for theexpression and activities of metalloproteinase (MMP)-2, MMP-7 or MMP-9 levels. Western blotting analysis also was used for measuring the levels of growth factor receptor-bound protein 2 (GRB2), son of sevenless homolog 1 (SOS1), c-Jun N-terminal kinases 1/2 (JNK1/2), extracellular signal-regulated kinase 1/2 (ERK1/2), and p38 in bufalin-treated U-2 OS cells. Bufalin inhibited the cell migration and invasion of U-2 OS cells in vitro. Moreover, bufalin reduced MMP-2 and MMP-9 enzyme activities of U-2 OS cells. Bufalin also suppressed the protein level of MMP-2 and reduced the levels of mitogen-activated protein kinases (MAPKs) such as JNK1/2 and ERK1/2 signals in U-2 OS cells. Our results suggest that signaling pathways for bufalin-inhibited migration and invasion of U-2 OS cells might be mediated through blocking MAPK signaling and resulting in the inhibition of MMP-2. Bufalin could be a useful agent to develop as a novel antitumor agent by virtue of its ability to inhibit tumor cell migration and invasion."	"Integrating transcriptomics and metabonomics to unravel modes-of-action of 2,3,7,8-tetrachlorodibenzo-p-dioxin (TCDD) in HepG2 cells. The integration of different 'omics' technologies has already been shown in several in vivo studies to offer a complementary insight into cellular responses to toxic challenges. Being interested in developing in vitro cellular models as alternative to animal-based toxicity assays, we hypothesize that combining transcriptomics and metabonomics data improves the understanding of molecular mechanisms underlying the effects caused by a toxic compound also in vitro in human cells. To test this hypothesis, and with the focus on non-genotoxic carcinogenesis as an endpoint of toxicity, in the present study, the human hepatocarcinoma cell line HepG2 was exposed to the well-known environmental carcinogen 2,3,7,8-tetrachlorodibenzo-p-dioxin (TCDD). Transcriptomics as well as metabonomics analyses demonstrated changes in TCDD-exposed HepG2 in common metabolic processes, e.g. amino acid metabolism, of which some of the changes only being confirmed if both 'omics' were integrated. In particular, this integrated analysis identified unique pathway maps involved in receptor-mediated mechanisms, such as the G-protein coupled receptor protein (GPCR) signaling pathway maps, in which the significantly up-regulated gene son of sevenless 1 (SOS1) seems to play an important role. SOS1 is an activator of several members of the RAS superfamily, a group of small GTPases known for their role in carcinogenesis. The results presented here were not only comparable with other in vitro studies but also with in vivo studies. Moreover, new insights on the molecular responses caused by TCDD exposure were gained by the cross-omics analysis."	NA
+"ETHE1"	"Leigh syndrome"	"Identification of a novel homozygous nonsense variant in a Chinese patient with ethylmalonic encephalopathy and a genotype-phenotype spectrum review. Ethylmalonic encephalopathy (EE) is a rare and devastating neurodegenerative disease caused by mutations in the ETHE1 gene. It is characterized by early-onset encephalopathy, chronic diarrhea, petechiae, orthostatic acrocyanosis, and high levels of methylsuccinic, lactic, and ethylmalonic acids in body fluids. In this study, we report a patient with EE, who was identified through newborn screening, and the diagnosis was confirmed by targeted next-generation sequencing (NGS). The patient displayed recurrent petechiae, intermittent jaundice, protracted diarrhea, and extensive developmental regression. Genetic testing identified a homozygous nonsense variant, c.295C &gt; T (p. Q99*), in the ETHE1 gene. A review of all known ETHE1 variants observed in other EE patients was conducted. This revealed the current difficulties in EE diagnosis. Besides, it also showed that patients with truncated variants of ETHE1 might exhibit pathological symptoms earlier and present more severe manifestations. Finally, a novel nonsense variant was identified, which supported and expanded our current knowledge of the variant spectrum for ETHE1. This novel variant also deepened our understanding of the genotype-phenotype associations that occur in EE patients."	"Novel Compound Heterozygous Variants of ETHE1 Causing Ethylmalonic Encephalopathy in a Chinese Patient: A Case Report. Ethylmalonic encephalopathy (EE) is a very rare autosomal recessive metabolic disorder that primarily affects children. Less than one hundred EE patients have been diagnosed worldwide. The clinical manifestations include chronic diarrhea, petechiae, orthostatic acrocyanosis, psychomotor delay and regression, seizures, and hypotonia. The ETHE1 gene has been shown to be associated with EE, and genetic sequencing provides concrete evidence for diagnosis. To date, only 37 variants of ETHE1 have been reported as disease-causing in EE patients. We identified two novel ETHE1 variants, i.e., c.595+1G&gt;T at the canonical splice site and the missense variant c.586G&gt;C (p. D196H), in a 3-year-old Chinese boy with EE. The patient had mild symptoms with only chronic diarrhea. The typical symptoms, including spontaneous petechiae, acrocyanosis, and hypotonia, were all absent. Herein, we report on the clinical, biochemical, and genetic findings of our patient and review the phenotypes and genotypes of all patients with EE caused by ETHE1 variants with available information. This study supports the early assessment and diagnosis of EE."	"Role of 3-Mercaptopyruvate Sulfurtransferase in the Regulation of Proliferation, Migration, and Bioenergetics in Murine Colon Cancer Cells. 3-mercaptopyruvate sulfurtransferase (3-MST) has emerged as one of the significant sources of biologically active sulfur species in various mammalian cells. The current study was designed to investigate the functional role of 3-MST's catalytic activity in the murine colon cancer cell line CT26. The novel pharmacological 3-MST inhibitor HMPSNE was used to assess cancer cell proliferation, migration and bioenergetics in vitro. Methods included measurements of cell viability (MTT and LDH assays), cell proliferation and in vitro wound healing (IncuCyte) and cellular bioenergetics (Seahorse extracellular flux analysis). 3-MST expression was detected by Western blotting; H2S production was measured by the fluorescent dye AzMC. The results show that CT26 cells express 3-MST protein and mRNA, as well as several enzymes involved in H2S degradation (TST, ETHE1). Pharmacological inhibition of 3-MST concentration-dependently suppressed H2S production and, at 100 and 300 µM, attenuated CT26 proliferation and migration. HMPSNE exerted a bell-shaped effect on several cellular bioenergetic parameters related to oxidative phosphorylation, while other bioenergetic parameters were either unaffected or inhibited at the highest concentration of the inhibitor tested (300 µM). In contrast to 3-MST, the expression of CBS (another H2S producing enzyme which has been previously implicated in the regulation of various biological parameters in other tumor cells) was not detectable in CT26 cells and pharmacological inhibition of CBS exerted no significant effects on CT26 proliferation or bioenergetics. In summary, 3-MST catalytic activity significantly contributes to the regulation of cellular proliferation, migration and bioenergetics in CT26 murine colon cancer cells. The current studies identify 3-MST as the principal source of biologically active H2S in this cell line."	"Child Neurology: Ethylmalonic encephalopathy. NA"	"ETHE1 and MOCS1 deficiencies: Disruption of mitochondrial bioenergetics, dynamics, redox homeostasis and endoplasmic reticulum-mitochondria crosstalk in patient fibroblasts. Ethylmalonic encephalopathy protein 1 (ETHE1) and molybdenum cofactor (MoCo) deficiencies are hereditary disorders that affect the catabolism of sulfur-containing amino acids. ETHE1 deficiency is caused by mutations in the ETHE1 gene, while MoCo deficiency is due to mutations in one of three genes involved in MoCo biosynthesis (MOCS1, MOCS2 and GPHN). Patients with both disorders exhibit abnormalities of the mitochondrial respiratory chain, among other biochemical findings. However, the pathophysiology of the defects has not been elucidated. To characterize cellular derangements, mitochondrial bioenergetics, dynamics, endoplasmic reticulum (ER)-mitochondria communication, superoxide production and apoptosis were evaluated in fibroblasts from four patients with ETHE1 deficiency and one with MOCS1 deficiency. The effect of JP4-039, a promising mitochondrial-targeted antioxidant, was also tested on cells. Our data show that mitochondrial respiration was decreased in all patient cell lines. ATP depletion and increased mitochondrial mass was identified in the same cells, while variable alterations in mitochondrial fusion and fission were seen. High superoxide levels were found in all cells and were decreased by treatment with JP4-039, while the respiratory chain activity was increased by this antioxidant in cells in which it was impaired. The content of VDAC1 and IP3R, proteins involved in ER-mitochondria communication, was decreased, while DDIT3, a marker of ER stress, and apoptosis were increased in all cell lines. These data demonstrate that previously unrecognized broad disturbances of cellular function are involved in the pathophysiology of ETHE1 and MOCS1 deficiencies, and that reduction of mitochondrial superoxide by JP4-039 is a promising strategy for adjuvant therapy of these disorders."	"ETHE1 overexpression promotes SIRT1 and PGC1α mediated aerobic glycolysis, oxidative phosphorylation, mitochondrial biogenesis and colorectal cancer. Ethylmalonic Encephalopathy Protein 1 (ETHE1) is a sulfur dioxygenase that regulates cellular H2S levels. We previously demonstrated a significant increase of ETHE1 expression in &quot;single-hit&quot; colon epithelial cells from crypts of patients with Familial Adenomatous Polyposis (FAP). Here, we report elevated levels of ETHE1 expression and increased mitochondrial density occurring in-situ in phenotypically normal FAP colorectal mucosa. We also found that constitutive expression of ETHE1 increased aerobic glycolysis (&quot;Warburg effect&quot;), oxidative phosphorylation, and mitochondrial biogenesis in colorectal cancer (CRC) cell lines, thereby depleting H2S which relieved the inhibition of phosphodiesterase (PDE), and increased adenosine monophosphate (AMP) levels. This led to activation of the energy sensing AMP-activated protein kinase (AMPKp), Sirtuin1 (SIRT1) and peroxisome proliferator-activated receptor γ coactivator 1α (PGC1α), a master regulator of mitochondrial biogenesis. By contrast, shRNA silencing of ETHE1 reduced PDE activity, AMPKp/SIRT1/PGC1α levels and mitochondrial biogenesis. Constitutive expression of ETHE1 accelerated both CRC cell xenograft and orthotopic patient derived xenograft CRC cell growth in vivo. Overall, our data nominate elevated ETHE1 expression levels as a novel biomarker and potential therapeutic target for the prevention of CRC tumorigenesis."	"Improved clinical outcome following liver transplant in patients with ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is a rapidly progressive autosomal recessive mitochondrial disease caused by biallelic pathogenic variants in the ETHE1 gene that encodes the mitochondrial sulfur dioxygenase. It is characterized by neurodevelopmental delay and regression, pyramidal and extrapyramidal signs, recurrent petechiae, chronic diarrhea, and orthostatic acrocyanosis. Laboratory findings include elevated serum levels of lactate and C4-C5 acylcarnitines, and elevated urinary excretion of ethylmalonic acid and C4-C6 acylglycines, notably isobutyrylglycine and 2-methylbutyrylglycine. These findings are attributed to deficiency of the mitochondrial sulfur dioxygenase resulting in toxic accumulation of hydrogen sulfide metabolites in vascular endothelium and mucosal cells of the large intestine. Medical management has thus far been directed toward decreasing the accumulation of hydrogen sulfide metabolites using a combination of metronidazole and N-acetylcysteine. More recently, orthotopic liver transplant (OLT) has been reported as a new therapeutic option for EE. Here, we report two additional cases of EE who achieved psychomotor developmental improvement after 7- and 22-months following OLT. The second case serves as the longest developmental outcome follow-up reported, thus far, following OLT for EE. This report provides additional evidence to validate OLT as a promising therapeutic approach for what was considered to be a fatal disease."	"Evidence that thiol group modification and reactive oxygen species are involved in hydrogen sulfide-induced mitochondrial permeability transition pore opening in rat cerebellum. We report here the effects of hydrogen sulfide (sulfide), that accumulates in ETHE1 deficiency, in rat cerebellum. Sulfide impaired electron transfer and oxidative phosphorylation. Sulfide also induced mitochondrial swelling, and decreased ΔΨm and calcium retention capacity in cerebellum mitochondria, which were prevented by cyclosporine A (CsA) plus ADP, and ruthenium red, suggesting mitochondrial permeability transition (mPT) induction. Melatonin (MEL) and N-ethylmaleimide also prevented sulfide-induced alterations. Prevention of sulfide-induced decrease of ΔΨm and viability by CsA and MEL was further verified in cerebellum neurons. The data suggest that sulfide induces mPT pore opening via thiol modification and ROS generation."	"Deficiency of the mitochondrial sulfide regulator ETHE1 disturbs cell growth, glutathione level and causes proteome alterations outside mitochondria. The mitochondrial enzyme ETHE1 is a persulfide dioxygenase essential for cellular sulfide detoxification, and its deficiency causes the severe and complex inherited metabolic disorder ethylmalonic encephalopathy (EE). In spite of well-described clinical symptoms of the disease, detailed cellular and molecular characterization is still ambiguous. Cellular redox regulation has been described to be influenced in ETHE1 deficient cells, and to clarify this further we applied image cytometry and detected decreased levels of reduced glutathione (GSH) in cultivated EE patient fibroblast cells. Cell growth initiation of the EE patient cells was impaired, whereas cell cycle regulation was not. Furthermore, Seahorse metabolic analyzes revealed decreased extracellular acidification, i. e. decreased lactate formation from glycolysis, in the EE patient cells. TMT-based large-scale proteomics was subsequently performed to broadly elucidate cellular consequences of the ETHE1 deficiency. More than 130 proteins were differentially regulated, of which the majority were non-mitochondrial. The proteomics data revealed a link between ETHE1-deficiency and down-regulation of several ribosomal proteins and LIM domain proteins important for cellular maintenance, and up-regulation of cell surface glycoproteins. Furthermore, several proteins of endoplasmic reticulum (ER) were perturbed including proteins influencing disulfide bond formation (e.g. protein disulfide isomerases and peroxiredoxin 4) and calcium-regulated proteins. The results indicate that decreased level of reduced GSH and alterations in proteins of ribosomes, ER and of cell adhesion lie behind the disrupted cell growth of the EE patient cells."	"Spectroscopic and Electronic Structure Study of ETHE1: Elucidating the Factors Influencing Sulfur Oxidation and Oxygenation in Mononuclear Nonheme Iron Enzymes. ETHE1 is a member of a growing subclass of nonheme Fe enzymes that catalyzes transformations of sulfur-containing substrates without a cofactor. ETHE1 dioxygenates glutathione persulfide (GSSH) to glutathione (GSH) and sulfite in a reaction which is similar to that of cysteine dioxygenase (CDO), but with monodentate (vs bidentate) substrate coordination and a 2-His/1-Asp (vs 3-His) ligand set. In this study, we demonstrate that GSS<sup>-</sup> binds directly to the iron active site, causing coordination unsaturation to prime the site for O2 activation. Nitrosyl complexes without and with GSSH were generated and spectroscopically characterized as unreactive analogues for the invoked ferric superoxide intermediate. New spectral features from persulfide binding to the Fe<sup>III</sup> include the appearance of a low-energy Fe<sup>III</sup> ligand field transition, an energy shift of a NO<sup>-</sup> to Fe<sup>III</sup> CT transition, and two new GSS<sup>-</sup> to Fe<sup>III</sup> CT transitions. Time-dependent density functional theory calculations were used to simulate the experimental spectra to determine the persulfide orientation. Correlation of these spectral features with those of monodentate cysteine binding in isopenicillin N synthase (IPNS) shows that the persulfide is a poorer donor but still results in an equivalent frontier molecular orbital for reactivity. The ETHE1 persulfide dioxygenation reaction coordinate was calculated, and while the initial steps are similar to the reaction coordinate of CDO, an additional hydrolysis step is required in ETHE1 to break the S-S bond. Unlike ETHE1 and CDO, which both oxygenate sulfur, IPNS oxidizes sulfur through an initial H atom abstraction. Thus, factors that determine oxygenase vs oxidase reactivity were evaluated. In general, sulfur oxygenation is thermodynamically favored and has a lower barrier for reactivity. However, in IPNS, second-sphere residues in the active site pocket constrain the substrate, raising the barrier for sulfur oxygenation relative to oxidation via H atom abstraction."	"Acute and Chronic Management in an Atypical Case of Ethylmalonic Encephalopathy. Ethylmalonic encephalopathy (EE) is caused by mutations in the ETHE1 gene. ETHE1 is vital for the catabolism of hydrogen sulfide (H2S). Patients with pathogenic mutations in ETHE1 have markedly increased thiosulfate, which is a reliable index of H2S levels. Accumulation of H2S is thought to cause the characteristic metabolic derangement found in EE. Recently introduced treatment strategies in EE, such as combined use of metronidazole (MNZ) and N-acetylcysteine (NAC), are aimed at lowering chronic H2S load. Experience with treatment strategies directed against acute episodes of metabolic decompensation (e.g., hemodialysis) is limited. Here we present an unusually mild, molecularly confirmed, case of EE in a 19-year-old male on chronic treatment with MNZ and NAC. During an acute episode of metabolic decompensation, we employed continuous renal replacement therapy (CRRT) to regain metabolic control. On continuous treatment with NAC and MNZ during the months preceding the acute event, plasma thiosulfate levels ranged from 1.6 to 4 μg/mL (reference range up to 2 μg/mL) and had a mean value of 2.5 μg/mL. During the acute decompensation, thiosulfate levels were 6.7 μg/mL, with hyperlactatemia and perturbed organic acid, acylglycine, and acylcarnitine profiles. CRRT decreased thiosulfate within 24 h to 1.4 μg/mL. Following discontinuation of CRRT, mean thiosulfate levels were 3.2 μg/mL (range, 2.4-3.7 μg/mL) accompanied by clinical improvement with metabolic stabilization of blood gas, acylcarnitine, organic acid, and acylglycine profiles. In conclusion, CRRT may help to regain metabolic control in patients with EE who have an acute metabolic decompensation on chronic treatment with NAC and MNZ."	"[Clinical and genetic analysis of a case with atypical ethyl malonate encephalopathy]. To delineate the clinical and genetic characteristics of a girl featuring motor retardation, language retardation and regression, and light persisting diarrhea. The patient was clinically examined and tested by tandem mass spectrometry and next generation sequencing. The proband could not stand and walk alone, and had light persisting diarrhea. She manifested language development retardation and regression. Laboratory tests were all normal, but the screening of metabolic disorders for urine and blood showed deficiency of short chain coenzyme A dehydrogenase due to elevated ethylmalonic acid and butyryl carnitine. By next generation sequencing, two compound heterozygous mutations of the ETHE1 gene, c.2T&gt;A and c.488G&gt;A, were discovered in the proband, which were respectively inherited from her father and mother. Bioinformatics analysis predicted both mutations to be pathogenic. The patient was diagnosed with ethylmalonic encephalopathy. Vitamin B1, B2, Coenzyme Q10, and L-carnitine were prescribed. The patient deteriorated and required liver transplantation at 4-year-1-month. Based on the clinical and genetic analysis, the proband was diagnosed with ethylmalonic encephalopathy caused by ETHE1 gene mutation. Next generation sequencing has provided a powerful tool for the diagnosis of such disorders."	"The Role of Persulfide Metabolism During Arabidopsis Seed Development Under Light and Dark Conditions. The sulfur dioxygenase ETHE1 oxidizes persulfides in the mitochondrial matrix and is involved in the degradation of L-cysteine and hydrogen sulfide. ETHE1 has an essential but as yet undefined function in early embryo development of Arabidopsis thaliana. In leaves, ETHE1 is strongly induced by extended darkness and participates in the use of amino acids as alternative respiratory substrates during carbohydrate starvation. Thus, we tested the effect of darkness on seed development in an ETHE1 deficient mutant in comparison to the wild type. Since ETHE1 knock-out is embryo lethal, the knock-down line ethe1-1 with about 1% residual sulfur dioxygenase activity was used for this study. We performed phenotypic analysis, metabolite profiling and comparative proteomics in order to investigate the general effect of extended darkness on seed metabolism and further define the specific function of the mitochondrial sulfur dioxygenase ETHE1 in seeds. Shading of the siliques had no morphological effect on embryogenesis in wild type plants. However, the developmental delay that was already visible in ethe1-1 seeds under control conditions was further enhanced in the darkness. Dark conditions strongly affected seed quality parameters of both wild type and mutant plants. The effect of ETHE1 knock-down on amino acid profiles was clearly different from that found in leaves indicating that in seeds persulfide oxidation interacts with alanine and glycine rather than branched-chain amino acid metabolism. Sulfur dioxygenase deficiency led to defects in endosperm development possibly due to alterations in the cellularization process. In addition, we provide evidence for a potential role of persulfide metabolism in abscisic acid (ABA) signal transduction in seeds. We conclude that the knock-down of ETHE1 causes metabolic re-arrangements in seeds that differ from those in leaves. Putative mechanisms that cause the aberrant endosperm and embryo development are discussed."	"Persulfide Dioxygenase From Acidithiobacillus caldus: Variable Roles of Cysteine Residues and Hydrogen Bond Networks of the Active Site. Persulfide dioxygenases (PDOs) are abundant in Bacteria and also crucial for H2S detoxification in mitochondria. One of the two pdo-genes of the acidophilic bacterium Acidithiobacillus caldus was expressed in Escherichia coli. The protein (AcPDO) had 0.77 ± 0.1 Fe/subunit and an average specific sulfite formation activity of 111.5 U/mg protein (Vmax) at 40°C and pH 7.5 with sulfur and GSH following Michaelis-Menten kinetics. KM for GSH and Kcat were 0.5 mM and 181 s<sup>-1</sup>, respectively. Glutathione persulfide (GSSH) as substrate gave a sigmoidal curve with a Vmax of 122.3 U/mg protein, a Kcat of 198 s<sup>-1</sup> and a Hill coefficient of 2.3 ± 0.22 suggesting positive cooperativity. Gel permeation chromatography and non-denaturing gels showed mostly tetramers. The temperature optimum was 40-45°C, the melting point 63 ± 1.3°C in thermal unfolding experiments, whereas low activity was measurable up to 95°C. Site-directed mutagenesis showed that residues located in the predicted GSH/GSSH binding site and in the central hydrogen bond networks including the iron ligands are essential for activity. Among these, the R139A, D141A, and H171A variants were inactive concomitant to a decrease of their melting points by 3-8 K. Other variants were inactivated without significant melting point change. Two out of five cysteines are likewise essential, both of which lie presumably in close proximity at the surface of the protein (C87 and C224). MalPEG labeling experiments suggests that they form a disulfide bridge. The reducing agent Tris(2-carboxyethyl)phosphine was inhibitory besides N-ethylmaleimide and iodoacetamide suggesting an involvement of cysteines and the disulfide in catalysis and/or protein stabilization. Mass spectrometry revealed modification of C87, C137, and C224 by 305 mass units equivalent to GSH after incubation with GSSH and with GSH in case of the C87A and C224A variants. The results of this study suggest that disulfide formation between the two essential surface-exposed cysteines and Cys-S-glutathionylation serve as a protective mechanism against uncontrolled thiol oxidation and the associated loss of enzyme activity."	"Evidence that Thiosulfate Inhibits Creatine Kinase Activity in Rat Striatum via Thiol Group Oxidation. Sulfite oxidase, molybdenum cofactor, and ETHE1 deficiencies are autosomal recessive disorders that affect the metabolism of sulfur-containing amino acids. Patients with these disorders present severe neurological dysfunction and basal ganglia abnormalities, accompanied by high levels of thiosulfate in biological fluids and tissues. Aiming to better elucidate the pathophysiology of basal ganglia damage in these disorders, we evaluated the in vivo effects of thiosulfate administration on bioenergetics, oxidative stress, and neural damage in rat striatum. The in vitro effect of thiosulfate on creatine kinase (CK) activity was also studied. In vivo findings showed that thiosulfate administration decreased the activities of CK and citrate synthase, and increased the activity of catalase 30 min after administration. Activities of other antioxidant enzymes, citric acid cycle, and respiratory chain complex enzymes, as well as glutathione concentrations and markers of neural damage, were not altered by thiosulfate 30 min or 7 days after its administration. Thiosulfate also decreased the activity of CK in vitro in striatum of rats, which was prevented by the thiol reducing agents dithiothreitol (DTT), the antioxidants glutathione (GSH), melatonin, trolox (hydrosoluble analogue of vitamin E), and lipoic acid. DTT and GSH further prevented thiosulfate-induced decrease of the activity of a purified CK in a medium devoid of biological samples. These data suggest that thiosulfate inhibits CK activity by altering critical sulfhydryl groups of this enzyme. It may be also presumed that bioenergetics impairment and ROS generation induced by thiosulfate are mechanisms underlying the neuropathophysiology of disorders in which this metabolite accumulates."	"Mechanism-based inhibition of human persulfide dioxygenase by γ-glutamyl-homocysteinyl-glycine. Hydrogen sulfide (H2S) is a signaling molecule with many beneficial effects. However, its cellular concentration is strictly regulated to avoid toxicity. Persulfide dioxygenase (PDO or ETHE1) is a mononuclear non-heme iron-containing protein in the sulfide oxidation pathway catalyzing the conversion of GSH persulfide (GSSH) to sulfite and GSH. PDO mutations result in the autosomal-recessive disorder ethylmalonic encephalopathy (EE). Here, we developed γ-glutamyl-homocysteinyl-glycine (GHcySH), in which the cysteinyl moiety in GSH is substituted with homocysteine, as a mechanism-based PDO inhibitor. Human PDO used GHcySH as an alternative substrate and converted it to GHcy-SO2H, mimicking GS-SO2H, the putative oxygenated intermediate formed with the natural substrate. Because GHcy-SO2H contains a C-S bond rather than an S-S bond in GS-SO2H, it failed to undergo the final hydrolysis step in the catalytic cycle, leading to PDO inhibition. We also characterized the biochemical penalties incurred by the L55P, T136A, C161Y, and R163W mutations reported in EE patients. The variants displayed lower iron content (1.4-11-fold) and lower thermal stability (1.2-1.7-fold) than WT PDO. They also exhibited varying degrees of catalytic impairment; the kcat/Km values for R163W, L55P, and C161Y PDOs were 18-, 42-, and 65-fold lower, respectively, and the T136A variant was most affected, with a 200-fold lower kcat/Km Like WT enzyme, these variants were inhibited by GHcySH. This study provides the first characterization of an intermediate in the PDO-catalyzed reaction and reports on deficits associated with EE-linked mutations that are distal from the active site."	"Identification of pathways and genes associated with synovitis in osteoarthritis using bioinformatics analyses. Synovitis in osteoarthritis (OA) is a very common condition. However, its underlying mechanism is still not well understood. This study aimed to explore the molecular mechanisms of synovitis in OA. The gene expression profile GSE82107 (downloaded from the Gene Expression Omnibus database) included 10 synovial tissues of the OA patients and 7 synovial tissues of healthy people. Subsequently, differentially expressed gene (DEG) analysis, GO (gene ontology) enrichment analysis, pathway analysis, pathway network analysis, and gene signal network analysis were performed using Gene-Cloud of Biotechnology Information (GCBI). A total of 1,941 DEGs consisting of 1,471 upregulated genes and 470 downregulated genes were determined. Genes such as PSMG3, LRP12 MIA-RAB4B, ETHE1, SFXN1, DAZAP1, RABEP2, and C9orf16 were significantly regulated in synovitis of OA. In particular, the MAPK signalling pathway, apoptosis, and pathways in cancer played the most important roles in the pathway network. The relationships between these pathways were also analysed. Genes such as NRAS, SPHK2, FOS, CXCR4, PLD1, GNAI2, and PLA2G4F were strongly implicated in synovitis of OA. In summary, this study indicated that several molecular mechanisms were implicated in the development and progression of synovitis in OA, thus improving our understanding of OA and offering molecular targets for future therapeutic advances."	"Further dissection of QTLs for salt-induced stroke and identification of candidate genes in the stroke-prone spontaneously hypertensive rat. We previously revealed that two major quantitative trait loci (QTLs) for stroke latency of the stroke-prone spontaneously hypertensive rat (SHRSP) under salt-loading were located on chromosome (Chr) 1 and 18. Here, we attempted further dissection of the stroke-QTLs using multiple congenic strains between SHRSP and a stroke-resistant hypertensive rat (SHR). Cox hazard model among subcongenic strains harboring a chromosomal fragment of Chr-1 QTL region showed that the most promising region was a 2.1 Mbp fragment between D1Rat177 and D1Rat97. The QTL region on Chr 18 could not be narrowed down by the analysis, which may be due to multiple QTLs in this region. Nonsynonymous sequence variations were found in four genes (Cblc, Cxcl17, Cic, and Ceacam 19) on the 2.1 Mbp fragment of Chr-1 QTL by whole-genome sequence analysis of SHRSP/Izm and SHR/Izm. Significant changes in protein structure were predicted in CBL-C and CXCL17 using I-TASSER. Comprehensive gene expression analysis in the kidney with a cDNA microarray identified three candidate genes (LOC102548695 (Zinc finger protein 45-like, Zfp45L), Ethe1, and Cxcl17). In conclusion, we successfully narrowed down the QTL region on Chr 1, and identified six candidate genes in this region."	"Response to medical and a novel dietary treatment in newborn screen identified patients with ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is a devastating neurodegenerative disease caused by mutations in the ETHE1 gene critical for hydrogen sulfide (H2S) detoxification. Patients present in infancy with hypotonia, developmental delay, diarrhea, orthostatic acrocyanosis and petechiae. Biochemical findings include elevated C4, C5 acylcarnitines and lactic and ethylmalonic acid (EMA) in body fluids. Current treatment modalities include metronidazole and N-acetylcysteine (NAC) to lower the production and promote detoxification of toxic H2S. Patients are typically identified after the onset of clinical symptoms and there is limited information about long term response to treatment. We report the findings of two unrelated patients with EE, identified through newborn screening, who were managed with conventional treatment (NAC, metronidazole alternated with neomycin) and in patient 2, a novel dietary treatment restricting sulfur containing amino acids. Pathogenic mutations were confirmed in the ETHE1 gene (homozygous splice site mutation in patient 1, c.505 + 1G &gt; A; compound heterozygous mutations in patient 2, c.131_132delAG + c.566delG). Both patients were started on metronidazole and NAC by 10 weeks of age and treated for 23 months. Patient 1 did not accept the metabolic formula due to palatability and parental refusal for gastrostomy tube placement. She demonstrated improved biomarkers (EMA, lactic acid and thiosulfate) and an attenuated clinical course. Patient 2 was started on a low methionine and cysteine diet at 8 months of age utilizing SOD Anamix® Early Years, (Nutricia). Baseline EMA levels were (642 mg/g Cr; n = 2) and decreased with medical treatment by 38% to a mean of 399 (n = 4, SD = 71, p 0.0013). With dietary treatment EMA levels were further reduced by 42% to a mean of 233 (n = 8, SD = 52, p 0.0030). Lactic acid, thiosulfates and clinical outcomes were also improved. Our long-term follow-up confirms previous reports of clinical improvement with NAC and metronidazole treatment. Additionally, our studies suggest that a diet restricted in sulfur-containing amino acids results in further improvement in clinical outcomes and biochemical markers."	"hsa-miR-29c-3p regulates biological function of colorectal cancer by targeting SPARC. Colorectal cancer (CRC) is the most common type of behavioral cancers, miRNAs play a critical role in cancer development and progression. In the present study, we downloaded the original data from Gene Expression Omnibus (GEO) and conduct data analysis. has-mir-29c-3p mimic, inhibitor, negative control or si-SPARC (secreted protein acidic, rich in cysteine) were transfected into HCT116 cells, respectively. Quantitative real time PCR (qRT-PCR) was used to measure has-mir-29c-3p and SPARC mRNA expressions, western blot was used to detect ACAA1 (acetyl-CoA acyltransferase 1), ACOX1 (acyl-CoA oxidase 1), COL1A1(collagen, type I, alpha-1), COL1A2 (collagen, type I, alpha-2), COL4A1 (collagen, type IV, alpha-1), COL5A2 (collagen, type V, alpha-2), COL12A1 (collagen, type XII, alpha-1), CPT2 (carnitine palmitoyltransferase 2), ETHE1 (persulfide dioxygenase), HMGCS2 (3-hydroxy-3-methylglutaryl-CoA synthase 2), SPARC, SQRDL (sulfide quinone oxidoreductase), and TST (thiosulfate sulfurtransferase) protein expression. CCK-8 and wound healing assay were employed to verify cell proliferation and migration. The luciferase reporter assay data made sure the target correlation of has-mir-29c-3p and SPARC. Firstly, we found that the expression of has-mir-29c-3p was lower in CRC tissues than in their paired corresponding non-cancerous tissues and there was significant inversed correlation between has-mir-29c-3p and SPARC. Overexpression of has-mir-29c-3p reduced cell proliferation and migration. SPARC was identified as a direct target of has-mir-29c-3p, whose silencing reduced cell proliferation and migration. These data showed that has-mir-29c-3p regulates CRC cell functions through regulating SPARC expression. Taken together, has-mir-29c-3p may function as an oncogenic miRNA targeting SPARC, targeted modulation of has-mir-29c-3p expression may became a potential strategy for the treatment."	"Ethylmalonic Aciduria in an Infant with Neurological and Skin Presentation. NA"	"Identification of Serological Biomarkers for Early Diagnosis of Lung Cancer Using a Protein Array-Based Approach. Lung cancer (LC) remains the leading cause of mortality from malignant tumors worldwide. Currently, a lack of serological biomarkers for early LC diagnosis is a major roadblock for early intervention and prevention of LC. To undertake this challenge, we employed a two-phase strategy to discover and validate a biomarker panel using a protein array-based approach. In Phase I, we obtained serological autoimmune profiles of 80 LC patients and 20 healthy subjects on HuProt arrays, and identified 170 candidate proteins significantly associated with LC. In Phase II, we constructed a LC focused array with the 170 proteins, and profiled a large cohort, comprised of 352 LC patients, 93 healthy individuals, and 101 patients with lung benign lesions (LBL). The comparison of autoimmune profiles between the early stage LC and the combined group of healthy and LBL allowed us to identify and validate a biomarker panel of p53, HRas, and ETHE1 for diagnosis of early stage LC with 50% sensitivity at &gt;90% specificity. Finally, the performance of this biomarker panel was confirmed in ELISA tests. In summary, this study represents one of the most comprehensive proteome-wide surveys with one of the largest (i.e. 1,101 unique samples) and most diverse (i.e. nine disease groups) cohorts, resulting in a biomarker panel with good performance."	"Neurological and Vascular Manifestations of Ethylmalonic Encephalopathy. Objective Ethylmalonic encephalopathy (EE) is a severe mitochondrial disease of early infancy clinically characterized by a combination of developmental delay, progressive pyramidal signs, and vascular lesions including petechial purpura, orthostatic acrocyanosis, and chronic hemorrhagic diarrhea. Biochemical hallmarks of the disease are persistently high level of lactate, and C4-C5-acylcarnitines in blood, markedly elevated urinary excretion of methylsuccinic and ethylmalonic (EMA) acids. Here we report two patients with EE as a 16-months-old male infant and a 2-yr-old boy referred to Pediatric Neurology Clinic in Children's Medical Center, Tehran-Iran that in one patient genetic analysis revealed a homozygous mutation of the ETHE1 gene in favor of ethylmalonic acidemia."	"Altered expression of the Olr59, Ethe1, and Slc10a2 genes in the liver of F344 rats by neonatal thyroid hormone disruption. Many concerns have been expressed regarding the possible adverse effects of thyroid hormone-disrupting chemicals in the environment. The disruption of thyroid hormones in the neonatal period may lead to permanent effects on thyroid hormone homeostasis as well as related developmental disorders, as thyroid hormones are essential for regulating the growth and differentiation of many tissues. To understand the long-term alteration in gene expressions by neonatal administration of thyroid hormone-like chemicals in general, we identified genes whose expression was altered in the liver, an important component of the thyroid hormone axis, by neonatal exposure to triiodothyronine (T3). T3 was administered to male F344 rats on postnatal days 1, 3, and 5 (week 0). At 8 weeks of age, cDNA microarray analysis was used to identify hepatic genes whose expression was altered by neonatal exposure to T3. Among the up-regulated genes that were identified, the expression of Olr59, Ethe1, and Slc10a2 increased specifically in rats neonatally exposed to T3. Interestingly, altered hepatic expression of these genes indeed increased when a hydroxylated polybrominated diphenyl ether (PBDE), OH-BDE42, which is capable of binding to the TR, was given neonatally. Our data demonstrated that neonatal exposure to thyroid hormones could affect the long-term expression of the genes, which could be useful markers for neonatal effects by thyroid hormone-disrupting chemicals. Copyright © 2017 John Wiley &amp; Sons, Ltd."	"Differential protein expression in metallothionein protection from depleted uranium-induced nephrotoxicity. The purpose of this study was to investigate the underlying mechanism of metallothionein (MT) protection from depleted uranium (DU) using a proteomics approach to search for a DU toxicity-differential protein. MT-/- and MT+/+ mice were administrated with a single dose of DU (10 mg/kg, i.p.) or equal volume of saline. After 4 days, protein changes in kidney tissues were evaluated using a proteomics approach. A total of 13 differentially expressed proteins were identified using two-dimensional electrophoresis and matrix-assisted laser desorption/ionization time-of-flight mass spectrometry. The validating results showed that the expression of aminoacylase-3 (ACY-3) and the mitochondrial ethylmalonic encephalopathy 1 (ETHE1) decreased significantly after DU exposure; in addition, the reduction in MT-/- mice was more significant than that in MT+/+ mice. The results also showed that exogenous ETHE1 or ACY-3 could increase the survival rate of human embryonic kidney 293 (HEK293) cells after DU exposure. A specific siRNA of ETHE1 significantly increased cell apoptosis rates after DU exposure, whereas exogenous ETHE1 significantly decreased cell apoptosis rates. In summary, ACY-3 and ETHE1 might involve in protection roles of MT. ETHE1 could be a new sensitive molecular target of DU-induced cell apoptosis."	"H2S biosynthesis and catabolism: new insights from molecular studies. Hydrogen sulfide (H2S) has profound biological effects within living organisms and is now increasingly being considered alongside other gaseous signalling molecules, such as nitric oxide (NO) and carbon monoxide (CO). Conventional use of pharmacological and molecular approaches has spawned a rapidly growing research field that has identified H2S as playing a functional role in cell-signalling and post-translational modifications. Recently, a number of laboratories have reported the use of siRNA methodologies and genetic mouse models to mimic the loss of function of genes involved in the biosynthesis and degradation of H2S within tissues. Studies utilising these systems are revealing new insights into the biology of H2S within the cardiovascular system, inflammatory disease, and in cell signalling. In light of this work, the current review will describe recent advances in H2S research made possible by the use of molecular approaches and genetic mouse models with perturbed capacities to generate or detoxify physiological levels of H2S gas within tissues."	"Successful treatment of a patient with ethylmalonic encephalopathy by intravenous N-acetylcysteine. Ethylmalonic encephalopathy (EE) is an autosomal recessive devastating metabolic disorder affecting the brain, gastrointestinal tract, peripheral vessels and rarely the other vascular organs. We report a 10-month-old girl who presented as a meningococcemia clinic but later diagnosed ethylmalonic encephalopathy. Molecular analyses revealed a homozygous c.554 T &gt; G; p. L185R mutation in ETHE1 gene. She was only partially benefited from riboflavine, coenzyme Q10, metronidazole, N-acetylcysteine and symptomatic treatment and discharged from hospital with the sequela of oxygene dependance and developmental delay. We observed N-acetylcysteine 100 mg/kg/day intravenous infusion theraphy may be the most important drug especially in comatous EE patients."	"Protein polysulfidation-dependent persulfide dioxygenase activity of ethylmalonic encephalopathy protein 1. Reactive persulfide species such as glutathione persulfide (GSSH) are highly abundant biomolecules. Persulfide dioxygenase (also called ethylmalonic encephalopathy protein 1, ETHE1) reportedly metabolizes GSSH to GSH with simultaneous oxygen consumption. How ETHE1 activity is regulated is still unclear, however. In this study, we describe the possible role of protein polysulfidation in the catalytic activity of ETHE1. We first found that ETHE1 catalyzed the persulfide dioxygenase reaction mostly for glutathione polysulfides, GS-(S)n-H, as well as for GSSH, but not for other endogenous persulfides such as cysteine and homocysteine persulfides/polysulfides. We then developed a novel method to detect protein polysulfidation and named it the polyethylene glycol-conjugated maleimide-labeling gel shift assay (PMSA). PMSA analysis indicated that most cysteine residues in ETHE1 were polysulfidated. Site-directed mutagenesis of cysteine residues in ETHE1 combined with liquid chromatography tandem mass spectrometry for polysulfidation determination surprisingly indicated that the Cys247 residue was important for polysulfidation of other Cys residues and that the C247S mutant possessed no persulfide dioxygenase activity. These results suggested that ETHE1 is a major enzyme regulating endogenous GSSH/GS-(S)n-H and that its activity is controlled by polysulfidation of the Cys247 residue."	"Ethylmalonic Encephalopathy in an Indian Boy. Ethylmalonic encephalopathy is a rare inborn error of metabolism characterized by neurodevelopmental delay / regression, recurrent petechiae, orthostatic acrocyanosis, and chronic diarrhea. 4-year-old boy with developmental regression, chronic diarrhea, petechial spots and acrocyanosis. MRI brain showed T2W/FLAIR hyperintensities in bilateral caudate and putamen. Abnormal acyl-carnitine profile and metabolites on urinary GC-MS analysis suggested the diagnosis. Sequencing of ETHE1 gene revealed mutations: c.488G&gt;A and c.375+5G&gt;T (novel). EE is clinically-recognizable disorder with typical clinical features."	"Dealing with the sulfur part of cysteine: four enzymatic steps degrade l-cysteine to pyruvate and thiosulfate in Arabidopsis mitochondria. Amino acid catabolism is essential for adjusting pool sizes of free amino acids and takes part in energy production as well as nutrient remobilization. The carbon skeletons are generally converted to precursors or intermediates of the tricarboxylic acid cycle. In the case of cysteine, the reduced sulfur derived from the thiol group also has to be oxidized in order to prevent accumulation to toxic concentrations. Here we present a mitochondrial sulfur catabolic pathway catalyzing the complete oxidation of l-cysteine to pyruvate and thiosulfate. After transamination to 3-mercaptopyruvate, the sulfhydryl group from l-cysteine is transferred to glutathione by sulfurtransferase 1 and oxidized to sulfite by the sulfur dioxygenase ETHE1. Sulfite is then converted to thiosulfate by addition of a second persulfide group by sulfurtransferase 1. This pathway is most relevant during early embryo development and for vegetative growth under light-limiting conditions. Characterization of a double mutant produced from Arabidopsis thaliana T-DNA insertion lines for ETHE1 and sulfurtransferase 1 revealed that an intermediate of the ETHE1 dependent pathway, most likely a persulfide, interferes with amino acid catabolism and induces early senescence. "	"Untargeted Metabolomics Analysis Reveals a Link between ETHE1-Mediated Disruptive Redox State and Altered Metabolic Regulation. Defects in the gene encoding the persulfide dioxygenase ETHE1 are known to cause the severe inherited metabolic disorder ethylmalonic encephalopathy (EE). In spite of known clinical characteristics, the molecular mechanisms underlying the ETHE1 deficiency are still obscure. Herein, to further analyze the molecular phenotype of the disease, we applied an untargeted metabolomics approach on cultivated fibroblasts of EE patients for pinpointing alterations in metabolite levels. Metabolites, as direct signatures of biochemical functions, can decipher biochemical pathways involved in the cellular phenotype of patient cells. Using liquid chromatography-mass spectrometry-based untargeted metabolomics, we identified 18 metabolites that have altered levels in fibroblasts from EE patients. Our data demonstrate disrupted redox state in EE patient cells, which is reflected by significantly decreased level of reduced glutathione. Furthermore, the down-regulation of several intermediate metabolites such as the redox cofactors NAD(+) and NADH as well as Krebs cycle intermediates revealed clear alteration in metabolic regulation. Pantothenic acid and several amino acids exhibited decreased levels, whereas the β-citrylglutamate with a putative role in brain development had an increased level in the EE patient cells. These observations indicate the severe impact of ETHE1 deficiency on cellular physiology and redox state, meanwhile suggesting targets for experimental studies on novel treatment options for the devastating metabolic disorder."	"Liver transplant in ethylmalonic encephalopathy: a new treatment for an otherwise fatal disease. Ethylmalonic encephalopathy is a fatal, rapidly progressive mitochondrial disorder caused by ETHE1 mutations, whose peculiar clinical and biochemical features are due to the toxic accumulation of hydrogen sulphide and of its metabolites, including thiosulphate. In mice with ethylmalonic encephalopathy, liver-targeted adeno-associated virus-mediated ETHE1 gene transfer dramatically improved both clinical course and metabolic abnormalities. Reasoning that the same achievement could be accomplished by liver transplantation, we performed living donor-liver transplantation in an infant with ethylmalonic encephalopathy. Unlike the invariably progressive deterioration of the disease, 8 months after liver transplantation, we observed striking neurological improvement with remarkable achievements in psychomotor development, along with dramatic reversion of biochemical abnormalities. These results clearly indicate that liver transplantation is a viable therapeutic option for ETHE1 disease."	"Mitochondrial Proteome Changes Correlating with β-Amyloid Accumulation. Alzheimer's disease (AD) is a multifactorial disease of wide clinical heterogenity. Overproduction of amyloid precursor protein (APP) and accumulation of β-amyloid (Aβ) and tau proteins are important hallmarks of AD. The identification of early pathomechanisms of AD is critically important for discovery of early diagnosis markers. Decreased brain metabolism is one of the earliest clinical symptoms of AD that indicate mitochondrial dysfunction in the brain. We performed the first comprehensive study integrating synaptic and non-synaptic mitochondrial proteome analysis (two-dimensional differential gel electrophoresis (2D-DIGE) and mass spectrometry) in correlation with Aβ progression in APP/PS1 mice (3, 6, and 9 months of age). We identified changes of 60 mitochondrial proteins that reflect the progressive effect of APP overproduction and Aβ accumulation on mitochondrial processes. Most of the significantly affected proteins play role in the mitochondrial electron transport chain, citric acid cycle, oxidative stress, or apoptosis. Altered expression levels of Htra2 and Ethe1, which showed parallel changes in different age groups, were confirmed also by Western blot. The common regulator bioinformatical analysis suggests the regulatory role of tumor necrosis factor (TNF) in Aβ-mediated mitochondrial protein changes. Our results are in accordance with the previous postmortem human brain proteomic studies in AD in the case of many proteins. Our results could open a new path of research aiming early mitochondrial molecular mechanisms of Aβ accumulation as a prodromal stage of human AD."	"Quantitative proteomics suggests metabolic reprogramming during ETHE1 deficiency. Deficiency of mitochondrial sulfur dioxygenase (ETHE1) causes the severe metabolic disorder ethylmalonic encephalopathy, which is characterized by early-onset encephalopathy and defective cytochrome C oxidase because of hydrogen sulfide accumulation. Although the severe systemic consequences of the disorder are becoming clear, the molecular effects are not well defined. Therefore, for further elucidating the effects of ETHE1-deficiency, we performed a large scale quantitative proteomics study on liver tissue from ETHE1-deficient mice. Our results demonstrated a clear link between ETHE1-deficiency and redox active proteins, as reflected by downregulation of several proteins related to oxidation-reduction, such as different dehydrogenases and cytochrome P450 (CYP450) members. Furthermore, the protein data indicated impact of the ETHE1-deficiency on metabolic reprogramming through upregulation of glycolytic enzymes and by altering several heterogeneous ribonucleoproteins, indicating novel link between ETHE1 and gene expression regulation. We also found increase in total protein acetylation level, pointing out the link between ETHE1 and acetylation, which is likely controlled by both redox state and cellular metabolites. These findings are relevant for understanding the complexity of the disease and may shed light on important functions influenced by ETHE1 deficiency and by the concomitant increase in the gaseous mediator hydrogen sulfide. All MS data have been deposited in the ProteomeXchange with the dataset identifiers PXD002741 (http://proteomecentral.proteomexchange.org/dataset/PXD002741) and PXD002742 (http://proteomecentral.proteomexchange.org/dataset/PXD002741). "	"The Chemical Biology of Human Metallo-β-Lactamase Fold Proteins. The αββα metallo β-lactamase (MBL) fold (MBLf) was first observed in bacterial enzymes that catalyze the hydrolysis of almost all β-lactam antibiotics, but is now known to be widely distributed. The MBL core protein fold is present in human enzymes with diverse biological roles, including cell detoxification pathways and enabling resistance to clinically important anticancer medicines. Human (h)MBLf enzymes can bind metals, including zinc and iron ions, and catalyze a range of chemically interesting reactions, including both redox (e.g., ETHE1) and hydrolytic processes (e.g., Glyoxalase II, SNM1 nucleases, and CPSF73). With a view to promoting basic research on MBLf enzymes and their medicinal targeting, here we summarize current knowledge of the mechanisms and roles of these important molecules."	"Mitochondrial diseases caused by toxic compound accumulation: from etiopathology to therapeutic approaches. Mitochondrial disorders are a group of highly invalidating human conditions for which effective treatment is currently unavailable and characterized by faulty energy supply due to defective oxidative phosphorylation (OXPHOS). Given the complexity of mitochondrial genetics and biochemistry, mitochondrial inherited diseases may present with a vast range of symptoms, organ involvement, severity, age of onset, and outcome. Despite the wide spectrum of clinical signs and biochemical underpinnings of this group of dis-orders, some common traits can be identified, based on both pathogenic mechanisms and potential therapeutic approaches. Here, we will review two peculiar mitochondrial disorders, ethylmalonic encephalopathy (EE) and mitochondrial neurogastrointestinal encephalomyopathy (MNGIE), caused by mutations in the ETHE1 and TYMP nuclear genes, respectively. ETHE1 encodes for a mitochondrial enzyme involved in sulfide detoxification and TYMP for a cytosolic enzyme involved in the thymidine/deoxyuridine catabolic pathway. We will discuss these two clinical entities as a paradigm of mitochondrial diseases caused by the accumulation of compounds normally present in traces, which exerts a toxic and inhibitory effect on the OXPHOS system. "	"Severe early onset ethylmalonic encephalopathy with West syndrome. Ethylmalonic encephalopathy (EE) is a rare autosomal recessive disorder characterized by early onset encephalopathy, chronic diarrhoea, petechiae, orthostatic acrocyanosis and defective cytochrome c oxidase (COX) in muscle and brain. High levels of lactic, ethylmalonic and methylsuccinic acids are detected in body fluids. EE is caused by mutations in ETHE1 gene, a mitochondrial sulfur dioxygenase. Neurologic signs and symptoms include progressively delayed development, hypotonia, seizures, and abnormal movements. We report on the clinical, electroencephalographic and MRI findings of a baby with a severe early onset encephalopathy associated with novel ETHE1 gene mutation. This is the first case described in literature with an early pure epileptic onset, presenting with West syndrome. "	"Staphylococcus aureus CstB Is a Novel Multidomain Persulfide Dioxygenase-Sulfurtransferase Involved in Hydrogen Sulfide Detoxification. Hydrogen sulfide (H2S) is both a lethal gas and an emerging gasotransmitter in humans, suggesting that the cellular H2S level must be tightly regulated. CstB is encoded by the cst operon of the major human pathogen Staphylococcus aureus and is under the transcriptional control of the persulfide sensor CstR and H2S. Here, we show that CstB is a multifunctional Fe(II)-containing persulfide dioxygenase (PDO), analogous to the vertebrate protein ETHE1 (ethylmalonic encephalopathy protein 1). Chromosomal deletion of ethe1 is fatal in vertebrates. In the presence of molecular oxygen (O2), hETHE1 oxidizes glutathione persulfide (GSSH) to generate sulfite and reduced glutathione. In contrast, CstB oxidizes major cellular low molecular weight (LMW) persulfide substrates from S. aureus, coenzyme A persulfide (CoASSH) and bacillithiol persulfide (BSSH), directly to generate thiosulfate (TS) and reduced thiols, thereby avoiding the cellular toxicity of sulfite. Both Cys201 in the N-terminal PDO domain (CstB(PDO)) and Cys408 in the C-terminal rhodanese domain (CstB(Rhod)) strongly enhance the TS generating activity of CstB. CstB also possesses persulfide transferase (PT; reverse rhodanese) activity, which generates TS when provided with LMW persulfides and sulfite, as well as conventional thiosulfate transferase (TST; rhodanese) activity; both of these activities require Cys408. CstB protects S. aureus against H2S toxicity, with the C201S and C408S cstB genes being unable to rescue a NaHS-induced ΔcstB growth phenotype. Induction of the cst operon by NaHS reveals that functional CstB impacts cellular TS concentrations. These data collectively suggest that CstB may have evolved to facilitate the clearance of LMW persulfides that occur upon elevation of the level of cellular H2S and hence may have an impact on bacterial viability under H2S misregulation, in concert with the other enzymes encoded by the cst operon. "	"Characterizations of Two Bacterial Persulfide Dioxygenases of the Metallo-β-lactamase Superfamily. Persulfide dioxygenases (PDOs), also known as sulfur dioxygenases (SDOs), oxidize glutathione persulfide (GSSH) to sulfite and GSH. PDOs belong to the metallo-β-lactamase superfamily and play critical roles in animals, plants, and microorganisms, including sulfide detoxification. The structures of two PDOs from human and Arabidopsis thaliana have been reported; however, little is known about the substrate binding and catalytic mechanism. The crystal structures of two bacterial PDOs from Pseudomonas putida and Myxococcus xanthus were determined at 1.5- and 2.5-Å resolution, respectively. The structures of both PDOs were homodimers, and their metal centers and β-lactamase folds were superimposable with those of related enzymes, especially the glyoxalases II. The PDOs share similar Fe(II) coordination and a secondary coordination sphere-based hydrogen bond network that is absent in glyoxalases II, in which the corresponding residues are involved instead in coordinating a second metal ion. The crystal structure of the complex between the Pseudomonas PDO and GSH also reveals the similarity of substrate binding between it and glyoxalases II. Further analysis implicates an identical mode of substrate binding by known PDOs. Thus, the data not only reveal the differences in metal binding and coordination between the dioxygenases and the hydrolytic enzymes in the metallo-β-lactamase superfamily, but also provide detailed information on substrate binding by PDOs. "	"Importance of acrocyanosis in delayed walking. We present a four-year-old wth ethylmalonic encephalopathy who presented with delayed walking. She had bilateral hyperintense lesions in the basal ganglia. Molecular analysis revealed a homozygous c.3G&gt;T mutation in the ETHE1 gene. She did not have typical findings of the disease including recurrent petechia, chronic diarrhea and acrocyanosis was very subtle and orthostatic. She benefited from riboflavine and Q10 treatments. We suggest that acrocyanosis should be questioned and examined in patients with motor delay. "	"Sulfide detoxification in plant mitochondria. In contrast to animals, which release the signal molecule sulfide in small amounts from cysteine and its derivates, phototrophic eukaryotes generate sulfide as an essential intermediate of the sulfur assimilation pathway. Additionally, iron-sulfur cluster turnover and cyanide detoxification might contribute to the release of sulfide in mitochondria. However, sulfide is a potent inhibitor of cytochrome c oxidase in mitochondria. Thus, efficient sulfide detoxification mechanisms are required in mitochondria to ensure adequate energy production and consequently survival of the plant cell. Two enzymes have been recently described to catalyze sulfide detoxification in mitochondria of Arabidopsis thaliana, O-acetylserine(thiol)lyase C (OAS-TL C), and the sulfur dioxygenase (SDO) ethylmalonic encephalopathy protein 1 (ETHE1). Biochemical characterization of sulfide producing and consuming enzymes in mitochondria of plants is fundamental to understand the regulatory network that enables mitochondrial sulfide homeostasis under nonstressed and stressed conditions. In this chapter, we provide established protocols to determine the activity of the sulfide releasing enzyme β-cyanoalanine synthase as well as sulfide-consuming enzymes OAS-TL and SDO. Additionally, we describe a reliable and efficient method to purify OAS-TL proteins from plant material. "	"Crystal structure of human persulfide dioxygenase: structural basis of ethylmalonic encephalopathy. The ethylmalonic encephalopathy protein 1 (ETHE1) catalyses the oxygen-dependent oxidation of glutathione persulfide (GSSH) to give persulfite and glutathione. Mutations to the hETHE1 gene compromise sulfide metabolism leading to the genetic disease ethylmalonic encephalopathy. hETHE1 is a mono-iron binding member of the metallo-β-lactamase (MBL) fold superfamily. We report crystallographic analysis of hETHE1 in complex with iron to 2.6 Å resolution. hETHE1 contains an αββα MBL-fold, which supports metal-binding by the side chains of an aspartate and two histidine residues; three water molecules complete octahedral coordination of the iron. The iron binding hETHE1 enzyme is related to the 'classical' di-zinc binding MBL hydrolases involved in antibiotic resistance, but has distinctive features. The histidine and aspartate residues involved in iron-binding in ETHE1, occupy similar positions to those observed across both the zinc 1 and zinc 2 binding sites in classical MBLs. The active site of hETHE1 is very similar to an ETHE1-like enzyme from Arabidopsis thaliana (60% sequence identity). A channel leading to the active site is sufficiently large to accommodate a GSSH substrate. Some of the observed hETHE1 clinical mutations cluster in the active site region. The structure will serve as a basis for detailed functional and mechanistic studies on ETHE1 and will be useful in the development of selective MBL inhibitors. "	"Stress response of OsETHE1 is altered in response to light and dark conditions. ETHYLMALONIC ENCEPHALOPATHY PROTEIN1 (ETHE1), encoding sulfur dioxygenase activity is believed to be an important candidate in sulfur metabolism, where it is involved in amino acid catabolism during carbohydrate starvation and embryo development as seen in Arabidopsis thaliana. OsETHE1, an ETHE1-encoding gene from rice, is in fact induced in response to abiotic stresses, condition which affects nutritional status of the plant, reflecting the need for nutrient remobilization. Sulfur reduction and assimilation are believed to be light-dependent processes and so the genes involved in sulfur oxidation must also be investigated for light-dependent regulatory effects. To this end, we show that the stress response of OsETHE1 is dependent on light and that darkness largely suppresses the stress response of this gene. However, the observed regulatory effect is intricate, varying according to the stress imposed; thereby suggesting the involvement of various aspects of signaling in this process. "	"Ethylmalonic encephalopathy ETHE1 R163W/R163Q mutations alter protein stability and redox properties of the iron centre. ETHE1 is an iron-containing protein from the metallo β-lactamase family involved in the mitochondrial sulfide oxidation pathway. Mutations in ETHE1 causing loss of function result in sulfide toxicity and in the rare fatal disease Ethylmalonic Encephalopathy (EE). Frequently mutations resulting in depletion of ETHE1 in patient cells are due to severe structural and folding defects. However, some ETHE1 mutations yield nearly normal protein levels and in these cases disease mechanism was suspected to lie in compromised catalytic activity. To address this issue and to elicit how ETHE1 dysfunction results in EE, we have investigated two such pathological mutations, ETHE1-p.Arg163Gln and p.Arg163Trp. In addition, we report a number of benchmark properties of wild type human ETHE1, including for the first time the redox properties of the mononuclear iron centre. We show that loss of function in these variants results from a combination of decreased protein stability and activity. Although structural assessment revealed that the protein fold is not perturbed by mutations, both variants have decreased thermal stabilities and higher proteolytic susceptibilities. ETHE1 wild type and variants bind 1 ± 0.2 mol iron/protein and no zinc; however, the variants exhibited only ≈ 10% of wild-type catalytically activity. Analysis of the redox properties of ETHE1 mononuclear iron centre revealed that the variants have lowered reduction potentials with respect to that of the wild type. This illustrates how point mutation-induced loss of function may arise via very discrete subtle conformational effects on the protein fold and active site chemistry, without extensive disruption of the protein structure or protein-cofactor association."	"A conserved mitochondrial ATP-binding cassette transporter exports glutathione polysulfide for cytosolic metal cofactor assembly. An ATP-binding cassette transporter located in the inner mitochondrial membrane is involved in iron-sulfur cluster and molybdenum cofactor assembly in the cytosol, but the transported substrate is unknown. ATM3 (ABCB25) from Arabidopsis thaliana and its functional orthologue Atm1 from Saccharomyces cerevisiae were expressed in Lactococcus lactis and studied in inside-out membrane vesicles and in purified form. Both proteins selectively transported glutathione disulfide (GSSG) but not reduced glutathione in agreement with a 3-fold stimulation of ATPase activity by GSSG. By contrast, Fe(2+) alone or in combination with glutathione did not stimulate ATPase activity. Arabidopsis atm3 mutants were hypersensitive to an inhibitor of glutathione biosynthesis and accumulated GSSG in the mitochondria. The growth phenotype of atm3-1 was strongly enhanced by depletion of the mitochondrion-localized, GSH-dependent persulfide oxygenase ETHE1, suggesting that the physiological substrate of ATM3 contains persulfide in addition to glutathione. Consistent with this idea, a transportomics approach using mass spectrometry showed that glutathione trisulfide (GS-S-SG) was transported by Atm1. We propose that mitochondria export glutathione polysulfide, containing glutathione and persulfide, for iron-sulfur cluster assembly in the cytosol. "	"Identification and characterization of an ETHE1-like sulfur dioxygenase in extremely acidophilic Acidithiobacillus spp. Elemental sulfur (S(0)) oxidation in Acidithiobacillus spp. is an important process in metal sulfide bioleaching. However, the gene that encodes the sulfur dioxygenase (SDO) for S(0) oxidation has remained unclarified in Acidithiobacillus spp. By BLASTP with the eukaryotic mitochondrial sulfur dioxygenases (ETHE1s), the putative sdo genes (AFE_0269 and ACAL_0790) were recovered from the genomes of Acidithiobacillus ferrooxidans ATCC 23270 and Acidithiobacillus caldus MTH-04. The purified recombinant proteins of AFE_0269 and ACAL_0790 exhibited remarkable SDO activity at optimal mildly alkaline pH by using the GSH-dependent in vitro assay. Then, a sdo knockout mutant and a sdo overexpression strain of A. ferrooxidans ATCC 23270 were constructed and characterized. By overexpressing sdo in A. ferrooxidans ATCC 23270, a significantly increased transcriptional level of sdo (91-fold) and a 2.5-fold increase in SDO activity were observed when S(0) was used as sole energy source. The sdo knockout mutant of A. ferrooxidans displayed a slightly reduced growth capacity in S(0)-medium compared with the wild type but still maintained high S(0)-oxidizing activity, suggesting that there is at least one other S(0)-oxidizing enzyme besides SDO in A. ferrooxidans ATCC 23270 cells. In addition, no obvious changes in transcriptional levels of selected genes related to sulfur oxidation was observed in response to the sdo overexpression or knockout in A. ferrooxidans when cultivated in S(0)-medium. All the results might suggest that SDO is involved in sulfide detoxification rather than bioenergetic S(0) oxidation in chemolithotrophic bacteria."	"The mitochondrial sulfur dioxygenase ETHYLMALONIC ENCEPHALOPATHY PROTEIN1 is required for amino acid catabolism during carbohydrate starvation and embryo development in Arabidopsis. The sulfur dioxygenase ETHYLMALONIC ENCEPHALOPATHY PROTEIN1 (ETHE1) catalyzes the oxidation of persulfides in the mitochondrial matrix and is essential for early embryo development in Arabidopsis (Arabidopsis thaliana). We investigated the biochemical and physiological functions of ETHE1 in plant metabolism using recombinant Arabidopsis ETHE1 and three transfer DNA insertion lines with 50% to 99% decreased sulfur dioxygenase activity. Our results identified a new mitochondrial pathway catalyzing the detoxification of reduced sulfur species derived from cysteine catabolism by oxidation to thiosulfate. Knockdown of the sulfur dioxygenase impaired embryo development and produced phenotypes of starvation-induced chlorosis during short-day growth conditions and extended darkness, indicating that ETHE1 has a key function in situations of high protein turnover, such as seed production and the use of amino acids as alternative respiratory substrates during carbohydrate starvation. The amino acid profile of mutant plants was similar to that caused by defects in the electron-transfer flavoprotein/electron-transfer flavoprotein:ubiquinone oxidoreductase complex and associated dehydrogenases. Thus, in addition to sulfur amino acid catabolism, ETHE1 also affects the oxidation of branched-chain amino acids and lysine. "	"Expression of abiotic stress inducible ETHE1-like protein from rice is higher in roots and is regulated by calcium. ETHYLMALONIC ENCEPHALOPATHY PROTEIN 1 (ETHE1) encodes sulfur dioxygenase (SDO) activity regulating sulfide levels in living organisms. It is an essential gene and mutations in ETHE1 leads to ethylmalonic encephalopathy (EE) in humans and embryo lethality in Arabidopsis. At present, very little is known regarding the role of ETHE1 beyond the context of EE and almost nothing is known about factors affecting its regulation in plant systems. In this study, we have identified, cloned and characterized OsETHE1, a gene encoding ETHE1-like protein from Oryza sativa. ETHE1 proteins in general are most similar to glyoxalase II (GLYII) and hence OsETHE1 has been earlier annotated as OsGLYII1, a putative GLYII gene. Here we show that OsETHE1 lacks GLYII activity and is instead an ETHE1 homolog being localized in mitochondria like its human and Arabidopsis counterparts. We have isolated and analyzed 1618 bp OsETHE1 promoter (pOsETHE1) to examine the factors affecting OsETHE1 expression. For this, transcriptional promoter pOsETHE1: 5-bromo-5-chloro-3-indolyl-β-D-glucuronide (GUS) fusion construct was made and stably transformed into rice. GUS expression pattern of transgenic pOsETHE1:GUS plants reveal a high root-specific expression of OsETHE1. The pOsETHE1 activity was stimulated by Ca(II) and required light for induction. Moreover, pOsETHE1 activity was induced under various abiotic stresses such as heat, salinity and oxidative stress, suggesting a potential role of OsETHE1 in stress response. "	"Distribution, diversity, and activities of sulfur dioxygenases in heterotrophic bacteria. Sulfur oxidation by chemolithotrophic bacteria is well known; however, sulfur oxidation by heterotrophic bacteria is often ignored. Sulfur dioxygenases (SDOs) (EC 1.13.11.18) were originally found in the cell extracts of some chemolithotrophic bacteria as glutathione (GSH)-dependent sulfur dioxygenases. GSH spontaneously reacts with elemental sulfur to generate glutathione persulfide (GSSH), and SDOs oxidize GSSH to sulfite and GSH. However, SDOs have not been characterized for bacteria, including chemolithotrophs. The gene coding for human SDO (human ETHE1 [hETHE1]) in mitochondria was discovered because its mutations lead to a hereditary human disease, ethylmalonic encephalopathy. Using sequence analysis and activity assays, we discovered three subgroups of bacterial SDOs in the proteobacteria and cyanobacteria. Ten selected SDO genes were cloned and expressed in Escherichia coli, and the recombinant proteins were purified. The SDOs used Fe(2+) for catalysis and displayed considerable variations in specific activities. The wide distribution of SDO genes reveals the likely source of the hETHE1 gene and highlights the potential of sulfur oxidation by heterotrophic bacteria. "	"S-sulfhydration/desulfhydration and S-nitrosylation/denitrosylation: a common paradigm for gasotransmitter signaling by H2S and NO. Sulfhydryl groups on protein Cys residues undergo an array of oxidative reactions and modifications, giving rise to a virtual redox zip code with physiological and pathophysiological relevance for modulation of protein structure and functions. While over two decades of studies have established NO-dependent S-nitrosylation as ubiquitous and fundamental for the regulation of diverse protein activities, proteomic methods for studying H2S-dependent S-sulfhydration have only recently been described and now suggest that this is also an abundant modification with potential for global physiological importance. Notably, protein S-sulfhydration and S-nitrosylation bear striking similarities in terms of their chemical and biological determinants, as well as reversal of these modifications via group-transfer to glutathione, followed by the removal from glutathione by enzymes that have apparently evolved to selectively catalyze denitrosylation and desulfhydration. Here we review determinants of protein and low-molecular-weight thiol S-sulfhydration/desulfhydration, similarities with S-nitrosylation/denitrosylation, and methods that are being employed to investigate and quantify these gasotransmitter-mediated cell signaling systems. "	"Proteome adaptations in Ethe1-deficient mice indicate a role in lipid catabolism and cytoskeleton organization via post-translational protein modifications. Hydrogen sulfide is a physiologically relevant signalling molecule. However, circulating levels of this highly biologically active substance have to be maintained within tightly controlled limits in order to avoid toxic side effects. In patients suffering from EE (ethylmalonic encephalopathy), a block in sulfide oxidation at the level of the SDO (sulfur dioxygenase) ETHE1 leads to severe dysfunctions in microcirculation and cellular energy metabolism. We used an Ethe1-deficient mouse model to investigate the effect of increased sulfide and persulfide concentrations on liver, kidney, muscle and brain proteomes. Major disturbances in post-translational protein modifications indicate that the mitochondrial sulfide oxidation pathway could have a crucial function during sulfide signalling most probably via the regulation of cysteine S-modifications. Our results confirm the involvement of sulfide in redox regulation and cytoskeleton dynamics. In addition, they suggest that sulfide signalling specifically regulates mitochondrial catabolism of FAs (fatty acids) and BCAAs (branched-chain amino acids). These findings are particularly relevant in the context of EE since they may explain major symptoms of the disease. "	"Enzymology of H2S biogenesis, decay and signaling. Hydrogen sulfide (H2S), produced by the desulfuration of cysteine or homocysteine, functions as a signaling molecule in an array of physiological processes including regulation of vascular tone, the cellular stress response, apoptosis, and inflammation. The low steady-state levels of H2S in mammalian cells have been recently shown to reflect a balance between its synthesis and its clearance. The subversion of enzymes in the cytoplasmic trans-sulfuration pathway for producing H2S from cysteine and/or homocysteine versus producing cysteine from homocysteine, presents an interesting regulatory problem. It is not known under what conditions the enzymes operate in the canonical trans-sulfuration pathway and how their specificity is switched to catalyze the alternative H2S-producing reactions. Similarly, it is not known if and whether the mitochondrial enzymes, which oxidize sulfide and persulfide (or sulfane sulfur), are regulated to increase or decrease H2S or sulfane-sulfur pools. In this review, we focus on the enzymology of H2S homeostasis and discuss H2S-based signaling via persulfidation and thionitrous acid."	"Characterization of patient mutations in human persulfide dioxygenase (ETHE1) involved in H2S catabolism. Hydrogen sulfide (H(2)S) is a recently described endogenously produced gaseous signaling molecule that influences various cellular processes in the central nervous system, cardiovascular system, and gastrointestinal tract. The biogenesis of H(2)S involves the cytoplasmic transsulfuration enzymes, cystathionine β-synthase and γ-cystathionase, whereas its catabolism occurs in the mitochondrion and couples to the energy-yielding electron transfer chain. Low steady-state levels of H(2)S appear to be controlled primarily by efficient oxygen-dependent catabolism via sulfide quinone oxidoreductase, persulfide dioxygenase (ETHE1), rhodanese, and sulfite oxidase. Mutations in the persulfide dioxgenase, i.e. ETHE1, result in ethylmalonic encephalopathy, an inborn error of metabolism. In this study, we report the biochemical characterization and kinetic properties of human persulfide dioxygenase and describe the biochemical penalties associated with two patient mutations, T152I and D196N. Steady-state kinetic analysis reveals that the T152I mutation results in a 3-fold lower activity, which is correlated with a 3-fold lower iron content compared with the wild-type enzyme. The D196N mutation results in a 2-fold higher K(m) for the substrate, glutathione persulfide."	"Effective AAV-mediated gene therapy in a mouse model of ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is an invariably fatal disease, characterized by the accumulation of hydrogen sulfide (H(2)S), a highly toxic compound. ETHE1, encoding sulfur dioxygenase (SDO), which takes part in the mitochondrial pathway that converts sulfide into harmless sulfate, is mutated in EE. The main source of H(2)S is the anaerobic bacterial flora of the colon, although in trace amount it is also produced by tissues, where it acts as a 'gasotransmitter'. Here, we show that AAV2/8-mediated, ETHE1-gene transfer to the liver of a genetically, metabolically and clinically faithful EE mouse model resulted in full restoration of SDO activity, correction of plasma thiosulfate, a biomarker reflecting the accumulation of H(2)S, and spectacular clinical improvement. Most of treated animals were alive and well &gt;6-8 months after birth, whereas untreated individuals live 26 ± 7 days. Our results provide proof of concept on the efficacy and safety of AAV2/8-mediated livergene therapy for EE, and alike conditions caused by the accumulation of harmful compounds in body fluids and tissues, which can directly be transferred to the clinic."	"An infant with ethylmalonic encephalopathy masquerading as a hematologic disorder. A 4-month-old male infant was brought to the emergency department because of striking petechial skin lesions and acrocyanosis. Routine hematology revealed leukocytosis and thrombocytosis and the infant was admitted for further investigations. Laboratory findings showed no evidence of infection, and a bone marrow aspirate demonstrated a normal number of immature cells of all lineages. Coagulation and routine biochemistry analyses were within the normal range. Three months later, the infant developed signs and symptoms of encephalopathy with episodes of hypotonia and an altered state of consciousness. A brain magnetic resonance imaging suggested the possibility of an inborn error of metabolism. The urinary organic acid and acylcarnitine profile indicated ethylmalonic encephalopathy. Mutation analysis of the ethylmalonic encephalopathy 1 (ETHE1) gene confirmed the diagnosis of ethylmalonic encephalopathy at the molecular level."	"Arabidopsis ETHE1 encodes a sulfur dioxygenase that is essential for embryo and endosperm development. Mutations in human (Homo sapiens) ETHYLMALONIC ENCEPHALOPATHY PROTEIN1 (ETHE1) result in the complex metabolic disease ethylmalonic encephalopathy, which is characterized in part by brain lesions, lactic acidemia, excretion of ethylmalonic acid, and ultimately death. ETHE1-like genes are found in a wide range of organisms; however, the biochemical and physiological role(s) of ETHE1 have not been examined outside the context of ethylmalonic encephalopathy. In this study we characterized Arabidopsis (Arabidopsis thaliana) ETHE1 and determined the effect of an ETHE1 loss-of-function mutation to investigate the role(s) of ETHE1 in plants. Arabidopsis ETHE1 is localized in the mitochondrion and exhibits sulfur dioxygenase activity. Seeds homozygous for a DNA insertion in ETHE1 exhibit alterations in endosperm development that are accompanied by a delay in embryo development followed by embryo arrest by early heart stage. Strong ETHE1 labeling was observed in the peripheral and chalazal endosperm of wild-type seeds prior to cellularization. Therefore, ETHE1 appears to play an essential role in regulating sulfide levels in seeds."	"Ethylmalonic encephalopathy associated with crescentic glomerulonephritis. Ethylmalonic encephalopathy (EE) is a rare autosomal recessive disorder caused by mutations in the ETHE1 gene and characterized by chronic diarrhea, encephalopathy, relapsing petechiae and acrocyanosis. Nephrotic syndrome has been described in an infant with EE but the renal histology findings were not described in previous reports. We report a Palestinian girl with EE who presented with chronic diarrhea, encephalopathy, petechial rash and acrocyanosis. Subsequently, she developed progressive deterioration of renal function caused by rapidly progressive glomerulonephritis resulting in death within few days. This is, to our knowledge, the first reported occurrence of rapidly progressive glomerulonephritis in a child with ethylmalonic encephalopathy. Its presence is a serious complication associated with poor prognosis and may be explained by the diffuse vascular damage."	"Mitochondrial proteomics--a tool for the study of metabolic disorders. Mitochondria are important for a number of life and death processes, such as energy production, creation of reactive oxygen species, and elicitation of stress responses. These responses range from induction of protein quality control and antioxidant systems to mitochondria elimination and cell death. Mitochondrial dysfunctions are involved in pathologies associated with many diseases, for example metabolic disorders, diabetes, cancers, cardiovascular and neurodegenerative diseases as well as obesity and aging. Mitochondrial proteomics can be a powerful tool in the study of these diseases, especially since it can cover mitochondrial proteins from several metabolic pathways, such as the citric acid cycle, fatty acid oxidation, and respiratory chain, as well as protein networks involved in stress responses. The mitochondrial proteome can consist of more than 1,000 different proteins. However, it is difficult to define the precise number, since mitochondria are dynamic and difficult to purify, and because an unknown number of proteins possess dual or multiple localization, depending on cell type and physiological conditions. This review describes several quantitative studies of proteins from mitochondria isolated by centrifugation, separated by various methods (e.g., electrophoresis and nanoLC), and analyzed by advanced mass spectrometry. We illustrate the methods by showing that multiple pathways and networks are affected in cells from patients carrying gene variations affecting a mitochondrial protein. The study of cultured skin fibroblasts from patients with ethylmalonic aciduria associated with variations in the genes coding for short-chain acyl-CoA dehydrogenase (SCAD) or ETHE1 are two of the examples. The possibility of obtaining mitochondrial proteomics data from whole cell proteomics studies is also exemplified by the involvement of liver mitochondria in metabolic syndrome."	"High turnover rates for hydrogen sulfide allow for rapid regulation of its tissue concentrations. Hydrogen sulfide (H(2)S) is a signaling molecule, which influences many physiological processes. While H(2)S is produced and degraded in many cell types, the kinetics of its turnover in different tissues has not been reported. In this study, we have assessed the rates of H(2)S production in murine liver, kidney, and brain homogenates at pH 7.4, 37°C, and at physiologically relevant cysteine concentrations. We have also studied the kinetics of H(2)S clearance by liver, kidney, and brain homogenates under aerobic and anaerobic conditions. We find that the rate of H(2)S production by these tissue homogenates is considerably higher than background rates observed in the absence of exogenous substrates. An exponential decay of H(2)S with time is observed and, as expected, is significantly faster under aerobic conditions. The half-life for H(2)S under aerobic conditions is 2.0, 2.8, and 10.0 min with liver, kidney, and brain homogenate, respectively. Western-blot analysis of the sulfur dioxygenase, ETHE1, involved in H(2)S catabolism, demonstrates higher steady-state protein levels in liver and kidney versus brain. By combining experimental and simulation approaches, we demonstrate high rates of tissue H(2)S turnover and provide estimates of steady-state H(2)S levels. Our study reveals that tissues maintain a high metabolic flux of sulfur through H(2)S, providing a rationale for how H(2)S levels can be rapidly regulated."	"Morphologic evidence of diffuse vascular damage in human and in the experimental model of ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is a rare autosomal recessive disorder characterized by early onset encephalopathy, chronic diarrhoea, petechiae, orthostatic acrocyanosis and defective cytochrome c oxidase (COX) in muscle and brain. High levels of lactic, ethylmalonic and methylsuccinic acids are detected in body fluids. EE is caused by mutations in ETHE1, a mitochondrial sulphur dioxygenase. By studying a suitable mouse model, we found that loss of ETHE1 leads to accumulation of sulphide, which is a poison for COX and other enzymatic activities thus accounting for the main features of EE. We report here the first autopsy case of a child with a genetically confirmed diagnosis of EE, and compare the histological, histochemical and immunohistochemical findings with those of the constitutive Ethe1 (-/-) mice. In addition to COX depleted cells, widespread endothelial lesions of arterioles and capillaries of the brain and gastrointestinal tract were the pathologic hallmarks in both organisms. Our findings of diffuse vascular damage of target critical organs are in keeping with the hypothesis that the pathologic effects of ETHE1 deficiency may stem from high levels of circulating hydrogen sulphide rather than the inability of specific organs to detoxify its endogenous production."	"Sulphide quinone reductase contributes to hydrogen sulphide metabolism in murine peripheral tissues but not in the CNS. Hydrogen sulphide (H(2) S) is gaining acceptance as a gaseous signal molecule. However, mechanisms regarding signal termination are not understood. We used stigmatellin and antimycin A, inhibitors of sulphide quinone reductase (SQR), to test the hypothesis that the catabolism of H(2) S involves SQR. H(2) S production and consumption were determined in living and intact mouse brain, liver and colonic muscularis externa using gas chromatography and HPLC. Expressions of SQR, ethylmalonic encephalopathy 1 (Ethe1) and thiosulphate transferase (TST; rhodanese) were determined by RT-PCR and immunohistochemistry. In the colonic muscularis externa, H(2) (35) S was catabolized to [(35) S]-thiosulphate and [(35) S]-sulphate, and stigmatellin reduced both the consumption of H(2) (35) S and formation of [(35) S]-thiosulphate. Stigmatellin also enhanced H(2) S release by the colonic muscularis externa. In the brain, catabolism of H(2) (35) S to [(35) S]-thiosulphate and [(35) S]-sulphate, which was stigmatellin-insensitive, partially accounted for H(2) (35) S consumption, while the remainder was captured as unidentified (35) S that was probably bound to proteins. Levels of mRNA encoding SQR were higher in the colonic muscularis externa and the liver than in the brain. These data support the concept that termination of endogenous H(2) S signalling in the colonic muscularis externa occurs via catabolism to thiosulphate and sulphate partially via a mechanism involving SQR. In the brain, it appears that H(2) S signal termination occurs partially through protein sequestration and partially through catabolism not involving SQR. As H(2) S has beneficial effects in animal models of human disease, we suggest that selective inhibition of SQR is an attractive target for pharmaceutical development."	"Plant pathogenic bacteria utilize biofilm growth-associated repressor (BigR), a novel winged-helix redox switch, to control hydrogen sulfide detoxification under hypoxia. Winged-helix transcriptional factors play important roles in the control of gene expression in many organisms. In the plant pathogens Xylella fastidiosa and Agrobacterium tumefaciens, the winged-helix protein BigR, a member of the ArsR/SmtB family of metal sensors, regulates transcription of the bigR operon involved in bacterial biofilm growth. Previous studies showed that BigR represses transcription of its own operon through the occupation of the RNA polymerase-binding site; however, the signals that modulate its activity and the biological function of its operon are still poorly understood. Here we show that although BigR is a homodimer similar to metal sensors, it functions as a novel redox switch that derepresses transcription upon oxidation. Crystal structures of reduced and oxidized BigR reveal that formation of a disulfide bridge involving two critical cysteines induces conformational changes in the dimer that remarkably alter the topography of the winged-helix DNA-binding interface, precluding DNA binding. This structural mechanism of DNA association-dissociation is novel among winged-helix factors. Moreover, we demonstrate that the bigR operon is required for hydrogen sulfide detoxification through the action of a sulfur dioxygenase (Blh) and sulfite exporter. As hydrogen sulfide strongly inhibits cytochrome c oxidase, it must be eliminated to allow aerobic growth under low oxygen tension, an environmental condition found in bacterial biofilms, xylem vessels, and root tissues. Accordingly, we show that the bigR operon is critical to sustain bacterial growth under hypoxia. These results suggest that BigR integrates the transcriptional regulation of a sulfur oxidation pathway to an oxidative signal through a thiol-based redox switch."	"Molecular pathways differentiate hepatitis C virus (HCV) recurrence from acute cellular rejection in HCV liver recipients. Acute cellular rejection (ACR) and hepatitis C virus (HCV) recurrence (HCVrec) are common complications after liver transplantation (LT) in HCV patients, who share common clinical and histological features, making a differential diagnosis difficult. Fifty-three liver allograft samples from unique HCV LT recipients were studied using microarrays, including a training set (n = 32) and a validation set (n = 19). Two no-HCV-ACR samples from LT recipients were also included. Probe set intensity values were obtained using the robust multiarray average method (RMA) method. Analysis of variance identified statistically differentially expressed genes (P ≤ 0.005). The limma package was used to fit the mixed-effects models using a restricted maximum likelihood procedure. The last absolute shrinkage and selection operator (LASSO) model was fit with HCVrec versus ACR as the dependent variable predicted. N-fold cross-validation was performed to provide an unbiased estimate of generalization error. A total of 179 probe sets were differentially expressed among groups, with 71 exclusive genes between HCVrec and HCV-ACR. No differences were found within ACR group (HCV-ACR vs. no-HCV-ACR). Supervised clustering analysis displayed two clearly independent groups, and no-HCV-ACR clustered within HCV-ACR. HCVrec-related genes were associated with a cytotoxic T-cell profile, and HCV-ACR-related genes were associated with the inflammatory response. The best-fitting LASSO model classifier accuracy, including 15 genes, has an accuracy of 100% in the training set. N-fold cross-validation accuracy was 78.1%, and sensitivity, specificity and positive and negative predictive values were 50.0%, 90.9%, 71.4% and 80.0%, respectively. Arginase type II (ARG2), ethylmalonic encephalopathy 1 (ETHE1), transmembrane protein 176A (TMEM176A) and TMEM176B genes were significantly confirmed in the validation set. A molecular signature capable of distinguishing HCVrec and ACR in HCV LT recipients was identified and validated."	"Novel ETHE1 mutation in a carrier couple having prior offspring affected with ethylmalonic encephalopathy: Genetic analysis, clinical management and reproductive outcome. Ethylmalonic encephalopathy (EE) is an autosomally recessive inherited disorder with a relentlessly progressive decline in neurological function, usually fatal by the age of ten. It is characterised by generalised hypotonia, psychomotor regression, spastic tetraparesis, dystonia, seizures and, eventually, global neurological failure. Approximately 50 reports have been published worldwide describing this devastating disease, most involving patients of Mediterranean or Arab origin. The fundamental defect in EE likely involves the impairment of a mitochondrial sulphur dioxygenase coded by the ETHE1 gene responsible for the catabolism of sulphide, which subsequently accumulates to toxic levels. A diagnosis of EE should initiate careful genetic evaluation and counselling, particularly if the parents intend to have additional offspring. The present report describes the diagnosis of EE in a reproductive endocrinology context, where both members of a non-consanguineous couple were confirmed to be carriers of an identical A↷G mutation. This previously unknown mutation at nucleotide position c.494 resulted in an amino acid substitution, p.Asp165Gly. Although consideration was given to in vitro fertilisation, embryo biopsy and single gene pre-implantation genetic diagnosis, the couple decided to first utilise a less aggressive therapeutic approach with donor sperm insemination. Pregnancy with a low risk of EE was indeed achieved; however, the infant was affected with a different anomaly (hypoplastic left heart). As this case demonstrates, prior to the initiation of fertility therapy, genetic analysis may be used to provide a confirmatory diagnosis when EE is suspected."	"Proteomics reveals that redox regulation is disrupted in patients with ethylmalonic encephalopathy. Deficiency of the sulfide metabolizing protein ETHE1 is the cause of ethylmalonic encephalopathy (EE), an inherited and severe metabolic disorder. To study the molecular effects of EE, we performed a proteomics study on mitochondria from cultured patient fibroblast cells. Samples from six patients were analyzed and revealed seven differentially regulated proteins compared with healthy controls. Two proteins involved in pathways of detoxification and oxidative/reductive stress were underrepresented in EE patient samples: mitochondrial superoxide dismutase (SOD2) and aldehyde dehydrogenase X (ALDH1B). Sulfide:quinone oxidoreductase (SQRDL), which takes part in the same sulfide pathway as ETHE1, was also underrepresented in EE patients. The other differentially regulated proteins were apoptosis inducing factor (AIFM1), lactate dehydrogenase (LDHB), chloride intracellular channel (CLIC4) and dimethylarginine dimethylaminohydrolase 1 (DDAH1). These proteins have been reported to be involved in encephalopathy, energy metabolism, ion transport, and nitric oxide regulation, respectively. Interestingly, oxidoreductase activity was overrepresented among the regulated proteins indicating that redox perturbation plays an important role in the molecular mechanism of EE. This observation may explain the wide range of symptoms associated with the disease, and highlights the potency of the novel gaseous mediator sulfide."	"Proteome changes in platelets activated by arachidonic acid, collagen, and thrombin. Platelets are small anucleated blood particles that play a key role in the control of bleeding. Platelets need to be activated to perform their functions and participate in hemostasis. The process of activation is accompanied by vast protein reorganization and posttranslational modifications. The goal of this study was to identify changes in proteins in platelets activated by different agonists. Platelets were activated by three different agonists - arachidonic acid, collagen, and thrombin. 2D SDS-PAGE (pI 4-7) was used to separate platelet proteins. Proteomes of activated and resting platelets were compared with each other by Progenesis SameSpots statistical software; and proteins were identified by nanoLC-MS/MS. 190 spots were found to be significantly different. Of these, 180 spots were successfully identified and correspond to 144 different proteins. Five proteins were found that had not previously been identified in platelets: protein CDV3 homolog, protein ETHE1, protein LZIC, FGFR1 oncogene partner 2, and guanine nucleotide-binding protein subunit beta-5. Using spot expression profile analysis, we found two proteins (WD repeat-containing protein 1 and mitochondrial glycerol-3-phosphate dehydrogenase) that may be part of thrombin specific activation or signal transduction pathway(s). Our results, characterizing the differences within proteins in both activated (by various agonists) and resting platelets, can thus contribute to the basic knowledge of platelets and to the understanding of the function and development of new antiplatelet drugs."	"Multiple sources of metabolic disturbance in ETHE1-related ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is a rare metabolic disorder caused by dysfunction of ETHE1, a mitochondrial dioxygenase involved in hydrogen sulfide (H2S) detoxification. Patients present in infancy with psychomotor retardation, chronic diarrhea, orthostatic acrocyanosis and relapsing petechiae. High levels of lactic acid, ethymalonic acid (EMA) and methylsuccinic acid (MSA) are detected in body fluids. Several pathways may contribute to the pathophysiology, including isoleucine, methionine and fatty acid metabolism. We report on a 15-month-old male presenting with typical EE associated with a homozygous ETHE1 mutation. We investigated oral isoleucine (150 mg/kg), methionine (100 mg/kg), fatty acid loading tests and isoleucine-restricted diet (200 mg/day) for any effects on several metabolic parameters. Before loading tests or specific dietary interventions, EMA, C4-C5 acylcarnitines and most acylglycines were elevated, indicating functional deficiency of short chain acyl-CoA (SCAD) as well as all branched acyl-CoA dehydrogenases. Excretion of EMA and n-butyrylglycine increased following each of the loads, and isoleucine led to increased levels of derivative metabolites. An isoleucine-restricted diet for 8 days corrected some of the abnormalities but led to no obvious clinical improvement and only partial effects on EMA. A principal component analysis supports the inference that these dietary conditions have consistent effects on the global metabolic profile. Our results suggest that multiple pathways modulate EMA levels in EE. They might all interact with H2S toxicity. Prolonged dietary interventions involving the restriction for branched aminoacids, fatty acids and methionine could be discussed as auxiliary therapeutical strategies in EE."	"Chronic exposure to sulfide causes accelerated degradation of cytochrome c oxidase in ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is an autosomal recessive, invariably fatal disorder associated with mutations in ETHE1, a gene encoding a mitochondrial sulfur dioxygenase (SDO). The main consequence of the absence of Ethe1-SDO is the accumulation of sulfide (H(2)S) in critical tissues, including colonic mucosa, liver, muscle, and brain. To make progress in the elucidation of the biochemical mechanisms leading to cytochrome c oxidase (COX) deficiency, we (i) generated tissue-specific conditional Ethe1 knockout mice to clarify the different contributions of endogenous and exogenous H(2)S production, and (ii) studied the development of H(2)S-driven COX deficiency in Ethe1(-/-) mouse tissues and human cells. Ethe1(-/-) conditional animals displayed COX deficiency limited to the specific targeted tissue. The accumulation of H(2)S over time causes progressive COX deficiency in animal tissues and human cells, which is associated with reduced amount of COX holoenzyme, and of several COX subunits, including mitochondrially encoded cytochrome c oxidase 1 (MTCO1), MTCO2, COX4, and COX5A. This reduction is not paralleled by consistent downregulation in expression of the corresponding mRNAs. Tissue-specific ablation of Ethe1 causes COX deficiency in targeted organs, suggesting that failure in neutralizing endogenous, tissue-specific production of H(2)S is sufficient to cause the biochemical defect but neither to determine a clinical impact nor to induce the biomarker profile typical of EE. The mechanism by which H(2)S causes COX deficiency consists of rapid heme a inhibition and accelerated long-term degradation of COX subunits. However, the pleiotropic devastating effects of H(2)S accumulation in EE cannot be fully explained by the sole defect of COX in critical tissues, but are likely consequent to several toxic actions on a number of enzymatic activities in different tissues, including endothelial lining of the small vessels, leading to multiorgan failure."	"Combined treatment with oral metronidazole and N-acetylcysteine is effective in ethylmalonic encephalopathy. Ethylmalonic encephalopathy is caused by mutations in ETHE1, a mitochondrial matrix sulfur dioxygenase, leading to failure to detoxify sulfide, a product of intestinal anaerobes and, in trace amounts, tissues. Metronidazole, a bactericide, or N-acetylcysteine, a precursor of sulfide-buffering glutathione, substantially prolonged the lifespan of Ethe1-deficient mice, with the combined treatment being additive. The same dual treatment caused marked clinical improvement in five affected children, with hardly any adverse or side effects."	"Ethylmalonic encephalopathy: application of improved biochemical and molecular diagnostic approaches. Ethylmalonic encephalopathy (EE, OMIM # 602473) is an autosomal recessive metabolic disorder of infancy affecting the brain, the gastrointestinal tract and peripheral vessels. It is caused by a defect in the ETHE1 gene product, which was recently shown to be part of a metabolic pathway devoted to sulphide detoxification. We report the application of improved biochemical and molecular approaches to the diagnosis of three cases of EE from two unrelated Cypriot families. The children presented all the typical biochemical hallmarks of the disease including elevated lactate and butyrylcarnitine in blood and elevated urinary excretion of ethylmalonic acid, 2-methylsuccinate, isobutyrylglycine and isovalerylglycine. We also detected an elevated level of thiosulphate in urine, which we propose as an additional biochemical marker of the disease. The proband of the first family was shown to be a compound heterozygote for a missense mutation in exon 5, L185R, and a deletion of exon 4. The deletion was identified using quantitative real-time polymerase chain reaction (qRT-PCR). Using the same technique, the proband of the second family was found to be homozygous for the exon 4 deletion. A prenatal diagnosis was performed for the second family using qRT-PCR, thus establishing the usefulness of RT-PCR in prenatal diagnosis."	"Lipogenesis is decreased by grape seed proanthocyanidins according to liver proteomics of rats fed a high fat diet. Bioactive proanthocyanidins have been reported to have several beneficial effects on health in relation to metabolic syndrome, type 2 diabetes, and cardiovascular disease. We studied the effect of grape seed proanthocyanidin extract (GSPE) in rats fed a high fat diet (HFD). This is the first study of the effects of flavonoids on the liver proteome of rats suffering from metabolic syndrome. Three groups of rats were fed over a period of 13 weeks either a chow diet (control), an HFD, or a high fat diet supplemented for the last 10 days with GSPE (HFD + GSPE). The liver proteome was fractionated, using a Triton X-114-based two-phase separation, into soluble and membrane protein fractions so that total proteome coverage was considerably improved. The data from isobaric tag for relative and absolute quantitation (iTRAQ)-based nano-LC-MS/MS analysis revealed 90 proteins with a significant (p &lt; 0.05) minimal expression difference of 20% due to metabolic syndrome (HFD versus control) and 75 proteins due to GSPE treatment (HFD + GSPE versus HFD). The same animals have previously been studied (Quesada, H., del Bas, J. M., Pajuelo, D., Díaz, S., Fernandez-Larrea, J., Pinent, M., Arola, L., Salvadó, M. J., and Bladé, C. (2009) Grape seed proanthocyanidins correct dyslipidemia associated with a high-fat diet in rats and repress genes controlling lipogenesis and VLDL assembling in liver. Int. J. Obes. 33, 1007-1012), and GSPE was shown to correct dyslipidemia observed in HFD-fed rats probably through the repression of hepatic lipogenesis. Our data corroborate those findings with an extensive list of proteins describing the induction of hepatic glycogenesis, glycolysis, and fatty acid and triglyceride synthesis in HFD, whereas the opposite pattern was observed to a large extent in GSPE-treated animals. GSPE was shown to have a wider effect than previously thought, and putative targets of GSPE involved in the reversal of the symptoms of metabolic syndrome were revealed. Some of these novel candidate proteins such as GFPT1, CD36, PLAA (phospholipase A(2)-activating protein), METTL7B, SLC30A1, several G signaling proteins, and the sulfide-metabolizing ETHE1 and SQRDL (sulfide-quinone reductase-like) might be considered as drug targets for the treatment of metabolic syndrome."	"Protein expression analysis of inflammation-related colon carcinogenesis. Chronic inflammation is a risk factor for colorectal cancer (CRC) development. The aim of this study was to determine the differences in protein expression between CRC and the surrounding nontumorous colonic tissues in the mice that received azoxymethane (AOM) and dextran sodium sulfate (DSS) using a proteomic analysis. Male ICR mice were given a single intraperitoneal injection of AOM (10 mg/kg body weight), followed by 2% (w/v) DSS in their drinking water for seven days, starting one week after the AOM injection. Colonic adenocarcinoma developed after 20 weeks and a proteomics analysis based on two-dimensional gel electrophoresis and ultraflex TOF/TOF mass spectrometry was conducted in the cancerous and nontumorous tissue specimens. The proteomic analysis revealed 21 differentially expressed proteins in the cancerous tissues in comparison to the nontumorous tissues. There were five markedly increased proteins (beta-tropomyosin, tropomyosin 1 alpha isoform b, S100 calcium binding protein A9, and an unknown protein) and 16 markedly decreased proteins (Car1 proteins, selenium-binding protein 1, HMG-CoA synthase, thioredoxin 1, 1 Cys peroxiredoxin protein 2, Fcgbp protein, Cytochrome c oxidase, subunit Va, ETHE1 protein, and 7 unknown proteins). There were 21 differentially expressed proteins in the cancerous tissues of the mice that received AOM and DSS. Their functions include metabolism, the antioxidant system, oxidative stress, mucin production, and inflammation. These findings may provide new insights into the mechanisms of inflammation-related colon carcinogenesis and the establishment of novel therapies and preventative strategies to treat carcinogenesis in the inflamed colon."	"Clinical heterogeneity in ethylmalonic encephalopathy. Ethylmalonic encephalopathy is a recently described inborn error of metabolism characterized clinically by developmental delay and regression, recurrent petechiae, orthostatic acrocyanosis, and chronic diarrhea. We describe monochorionic twins presenting with hypotonia in infancy and diagnosed with ethylmalonic encephalopathy on the basis of biochemical findings. They are compound heterozygote for missense mutations in ETHE1. Magnetic resonance imaging changes affecting the white matter, corpus callosum, and basal ganglia were seen in both patients. At 10 years of age, they have severe axial hypotonia but never displayed petechiae, orthostatic acrocyanosis, or chronic diarrhea. Their clinical courses differ markedly; one had an episode of coma when she was 3 years old and now has spastic quadraparesis and cannot speak. The other can freely use her upper extremities, her pyramidal syndrome being mostly limited to the lower extremities, and can speak 2 languages. These patients illustrate the clinical heterogeneity of ethylmalonic encephalopathy, even in monochorionic twins."	"Loss of ETHE1, a mitochondrial dioxygenase, causes fatal sulfide toxicity in ethylmalonic encephalopathy. Ethylmalonic encephalopathy is an autosomal recessive, invariably fatal disorder characterized by early-onset encephalopathy, microangiopathy, chronic diarrhea, defective cytochrome c oxidase (COX) in muscle and brain, high concentrations of C4 and C5 acylcarnitines in blood and high excretion of ethylmalonic acid in urine. ETHE1, a gene encoding a beta-lactamase-like, iron-coordinating metalloprotein, is mutated in ethylmalonic encephalopathy. In bacteria, ETHE1-like sequences are in the same operon of, or fused with, orthologs of TST, the gene encoding rhodanese, a sulfurtransferase. In eukaryotes, both ETHE1 and rhodanese are located within the mitochondrial matrix. We created a Ethe1(-/-) mouse that showed the cardinal features of ethylmalonic encephalopathy. We found that thiosulfate was excreted in massive amounts in urine of both Ethe1(-/-) mice and humans with ethylmalonic encephalopathy. High thiosulfate and sulfide concentrations were present in Ethe1(-/-) mouse tissues. Sulfide is a powerful inhibitor of COX and short-chain fatty acid oxidation, with vasoactive and vasotoxic effects that explain the microangiopathy in ethylmalonic encephalopathy patients. Sulfide is detoxified by a mitochondrial pathway that includes a sulfur dioxygenase. Sulfur dioxygenase activity was absent in Ethe1(-/-) mice, whereas it was markedly increased by ETHE1 overexpression in HeLa cells and Escherichia coli. Therefore, ETHE1 is a mitochondrial sulfur dioxygenase involved in catabolism of sulfide that accumulates to toxic levels in ethylmalonic encephalopathy."	"Ethylmalonic encephalopathy. Another patient from Kuwait. We report a Kuwaiti girl with ethylmalonic encephalopathy. She presented at the age of 4 months with chronic mucoid diarrhea and delayed psychomotor development, and at 6 months she developed myoclonic epilepsy. She was found to have central hypotonia with pyramidal tract signs, acrocyanosis, and petechiae. Plasma lactate level was elevated. Blood spot and urine for organic acids results were consistent with the diagnosis of ethylmalonic encephalopathy. Cerebral MRI showed basal ganglia and white matter changes. Gene mutation study revealed homozygous deletion of exon 4 of the ETHE1 gene. The patient died at 14 months after extensive bronchopneumonia. Our objective is to alert physicians to the existence of such a devastating disease in our community and their role in the early diagnosis in the index patient for proper genetic counseling."	"Spectroscopic studies on Arabidopsis ETHE1, a glyoxalase II-like protein. ETHE1 (ethylmalonic encephalopathy protein 1) is a beta-lactamase fold-containing protein that is essential for the survival of a range of organisms. In spite of the apparent importance of this enzyme, very little is known about its function or biochemical properties. In this study Arabidopsis ETHE1 was over-expressed and purified and shown to bind tightly to 1.2+/-0.2 equivalents of iron. (1)H NMR and EPR studies demonstrate that the predominant oxidation state of Fe in ETHE1 is Fe(II), and NMR studies confirm that two histidines are bound to Fe(II). EPR studies show that there is no antiferromagnetically coupled Fe(III)Fe(II) center in ETHE1. Gel filtration studies reveal that ETHE1 is a dimer in solution, which is consistent with previous crystallographic studies. Although very similar in terms of amino acid sequence to glyoxalase II, ETHE1 exhibits no thioester hydrolase activity, and activity screening assays reveal that ETHE1 exhibits low level esterase activity. Taken together, ETHE1 is a novel, mononuclear Fe(II)-containing member of the beta-lactamase fold superfamily."	"Identification of new mutations in the ETHE1 gene in a cohort of 14 patients presenting with ethylmalonic encephalopathy. Ethylmalonic encephalopathy (EE) is a rare autosomal recessive metabolic disorder characterised by progressive encephalopathy, recurrent petechiae, acrocyanosis and chronic diarrhoea, with a fatal outcome in early in life. 14 patients with EE were investigated for mutations in the ETHE1 gene. Of the 14 patients, 5 were found to carry novel mutations. This work expands our knowledge of the causative mutations of EE."	"Molecular correlates for maximal oxygen uptake and type 1 fibers. Maximal oxygen uptake (Vo(2max)) and the amount of type 1 fibers are interrelated, but the underlying unifying molecular mechanisms are poorly understood. To explore these mechanisms, we related gene expression profiles in skeletal muscle biopsies of 43 age-matched men from published datasets with Vo(2max) and the amount of type 1 fibers and replicated some of the findings in muscle biopsies from 154 young and elderly individuals using real-time PCR. We identified 66 probe sets (genes or expressed sequence tags) positively and 83 probe sets inversely correlated with Vo(2max) and 171 probe sets positively and 217 probe sets inversely correlated with percentage of type 1 fibers in human skeletal muscle. Genes involved in oxidative phosphorylation (OXPHOS) showed high expression in individuals with high Vo(2max), whereas the opposite was not the case in individuals with low Vo(2max). Instead, genes such as AHNAK and BCL6 were associated with low Vo(2max). Also, expression of the OXPHOS genes NDUFB5 and ATP5C1 increased with exercise training and decreased with aging. In contrast, expression of AHNAK in skeletal muscle decreased with exercise training and increased with aging. Eleven genes (NDUFB4, COX5A, UQCRB, ATP5C1, ATP5G3, ETHE1, FABP3, ISCA1, MYST4, C9orf3, and PKIA) were positively correlated with both Vo(2max) and the percentage of type 1 fibers. Vo(2max) closely reflects expression of OXPHOS genes, particularly that of NDUFB5 and ATP5C1, in skeletal muscle, suggesting good muscle fitness. In contrast, a high expression of AHNAK was associated with a low Vo(2max) and poor muscle fitness."	"Ethylmalonic encephalopathy: clinical and biochemical observations. Ethylmalonic encephalopathy (EE) is a rare, recently defined inborn error of metabolism which affects the brain, gastrointestinal system and peripheral blood vessels and is characterized by a unique constellation of clinical and biochemical features. A 7-month-old male, who presented with psychomotor retardation, chronic diarrhea and relapsing petechiae is described with the objective of highlighting the biochemical and neuroradiological features of this disorder as well as the effect of high-dose riboflavin therapy. Urinary organic acid analysis revealed markedly increased excretion of ethylmalonic acid, isobutyrylglycine, 2-methylbutyrylglycine and isovalerylglycine. Acylcarnitine analysis in dried blood spots showed increased butyrylcarnitine. Short-chain acyl-CoA dehydrogenase (SCAD) activity in muscle was normal as were mitochondrial OXPHOS enzyme activities in cultured skin fibroblasts. In skeletal muscle the catalytic activity of complex II was decreased. Brain MRI revealed bilateral and symmetrical atrophy in the fronto-temporal areas, massive enlargement of the subarachnoid spaces and hyperdensities on T (2) sequences of the basal ganglia. Mutation analysis of the ETHE1 gene demonstrated homozygosity for the Arg163Gly mutation, confirming the diagnosis of EE at a molecular level. On repeat MRI, a significant deterioration was seen, correlating well with the clinical deterioration of the patient."	"Lessons to learn from rare inborn errors of metabolism. NA"	"Enhanced deacetylation of p53 by the anti-apoptotic protein HSCO in association with histone deacetylase 1. HSCO (hepatoma subtracted-cDNA library clone one, also called ETHE1) was originally identified by its frequent overexpression in hepatocellular carcinomas. HSCO inhibits function of NF-kappaB by binding to RelA and accelerating its export from the nucleus. We show here that HSCO exhibits anti-apoptotic activity in cells exposed to DNA-damaging agents by suppressing transcriptional activity of p53. Induction of pro-apoptotic genes, Noxa, Perp, PIG3, and Bax were suppressed in cells over-expressing HSCO. By increasing ubiquitylation and degradation of p53, HSCO reduces p53 protein levels. HSCO specifically associates with histone deacetylase 1 (HDAC1) independently of Mdm2 and facilitates deacetylation of p53 at Lys-373/382 by HDAC1. The metallo-beta-lactamase family consensus sequence in HSCO is important for its effect on p53 deacetylation. Co-immunoprecipitation and immunofluorescence studies suggested that HSCO, HDAC1, and p53 form a complex in the nucleus. Thus, HSCO is a cofactor that increases the deacetylase activity of HDAC1 toward p53, leading to suppression of apoptosis. Treatment of hepatocellular carcinomas that retain wild-type p53 and overexpress HSCO with anti-HSCO agents might re-establish the p53 response and revert chemoresistance."	"Structure of an ETHE1-like protein from Arabidopsis thaliana. The protein product of gene At1g53580 from Arabidopsis thaliana possesses 54% sequence identity to a human enzyme that has been implicated in the rare disorder ethylmalonic encephalopathy. The structure of the At1g53580 protein has been solved to a nominal resolution of 1.48 Angstrom. This structure reveals tertiary structure differences between the ETHE1-like enzyme and glyoxalase II enzymes that are likely to account for differences in reaction chemistry and multimeric state between the two types of enzymes. In addition, the Arabidopsis ETHE1 protein is used as a model to explain the significance of several mutations in the human enzyme that have been observed in patients with ethylmalonic encephalopathy."	"Persistent increase of plasma butyryl/isobutyrylcarnitine concentrations as marker of SCAD defect and ethylmalonic encephalopathy. High concentrations of butyryl/isobutyrylcarnitine (C(4)-carnitine) in plasma with increase of ethylmalonic acid (EMA) in urine point to different genetic entities, and further investigations are required to differentiate the possible underlying defect. Here we report three unrelated cases, two neurologically affected and one asymptomatic, with this abnormal metabolite pattern due either to mutations in the ETHE1 gene or to a short-chain acyl-CoA dehydrogenase (SCAD) defect."	"A case of ethylmalonic encephalopathy with atypical clinical and biochemical presentation. A child is reported presenting with a clinical picture suggestive of genetic connective tissue disorders (vascular fragility, articular hyperlaxity, delayed motor development, and normal cognitive development), an absence of pathological ethylmalonic acid excretion during inter-critical phases and a homozygous R163W mutation in the ETHE1 gene. This case suggests that ethylmalonic aciduria is not a constant biochemical marker of ethylmalonic encephalopathy and that its normal excretion outside of metabolic decompensation episodes does not exclude this metabolic disease."	"Ethylmalonic encephalopathy-report of two cases. Ethylmalonic encephalopathy is a rare metabolic disease presenting in infancy with developmental delay, acrocyanosis, petechiae, chronic diarrhea and early death. The biochemical characteristics of this autosomal recessive disease are urinary organic acid abnormalities. Recently it has been found to be caused by mutations in the ETHE1 gene, located on Ch19q13. Only about 30 patients have been reported, and we describe two additional cases. The first patient showed a typical clinical picture and biochemical abnormalities, with additional atypical clinical features. Neuroimaging studies showed extensive changes. A new homozygous mutation in exon 3 of the ETHE1 gene was found. The second patient was not investigated genetically; however besides the typical clinical picture and biochemical profile he was found to have cytochrome C oxidase deficiency."	"ETHE1 mutations are specific to ethylmalonic encephalopathy. Mutations in ETHE1, a gene located at chromosome 19q13, have recently been identified in patients affected by ethylmalonic encephalopathy (EE). EE is a devastating infantile metabolic disorder, characterised by widespread lesions in the brain, hyperlactic acidaemia, petechiae, orthostatic acrocyanosis, and high levels of ethylmalonic acid in body fluids. To investigate to what extent ETHE1 is responsible for EE, we analysed this gene in 29 patients with typical EE and in 11 patients presenting with early onset progressive encephalopathy with ethylmalonic aciduria (non-EE EMA). Frameshift, stop, splice site, and missense mutations of ETHE1 were detected in all the typical EE patients analysed. Western blot analysis of the ETHE1 protein indicated that some of the missense mutations are associated with the presence of the protein, suggesting that the corresponding wild type amino acid residues have a catalytic function. No ETHE1 mutations were identified in non-EE EMA patients. Experiments based on two dimensional blue native electrophoresis indicated that ETHE1 protein works as a supramolecular, presumably homodimeric, complex, and a three dimensional model of the protein suggests that it is likely to be a mitochondrial matrix thioesterase acting on a still unknown substrate. Finally, the 625G--&gt;A single nucleotide polymorphism in the gene encoding the short chain acyl-coenzyme A dehydrogenase (SCAD) was previously proposed as a co-factor in the aetiology of EE and other EMA syndromes. SNP analysis in our patients ruled out a pathogenic role of SCAD variants in EE, but did show a highly significant prevalence of the 625A alleles in non-EE EMA patients."	"Ethylmalonic encephalopathy is caused by mutations in ETHE1, a gene encoding a mitochondrial matrix protein. Ethylmalonic encephalopathy (EE) is a devastating infantile metabolic disorder affecting the brain, gastrointestinal tract, and peripheral vessels. High levels of ethylmalonic acid are detected in the body fluids, and cytochrome c oxidase activity is decreased in skeletal muscle. By use of a combination of homozygosity mapping, integration of physical and functional genomic data sets, and mutational screening, we identified GenBank D83198 as the gene responsible for EE. We also demonstrated that the D83198 protein product is targeted to mitochondria and internalized into the matrix after energy-dependent cleavage of a short leader peptide. The gene had previously been known as &quot;HSCO&quot; (for hepatoma subtracted clone one). However, given its role in EE, the name of the gene has been changed to &quot;ETHE1.&quot; The severe consequences of its malfunctioning indicate an important role of the ETHE1 gene product in mitochondrial homeostasis and energy metabolism."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"LRPPRC"	"Leigh syndrome"	"Overexpression of PGC-1α influences the mitochondrial unfolded protein response (mtUPR) induced by MPP<sup>+</sup> in human SH-SY5Y neuroblastoma cells. Parkinson's disease (PD) is a common dyskinesia disease, the mitochondrial unfolded protein response (mtUPR) may be directly or indirectly involved in the occurrence and development of PD, although the exact mechanism is unclear. We established a dopaminergic neuronal-like cell model of PD, by overexpression of PGC-1α to detect evaluate the expression of proteases and molecular chaperones of involved in the mtUPR, as well as the expression of PGC-1α and LRPPRC, illustrated the distribution of LRPPRC. Remarkably, the mtUPR activation reached maximal at 24 h after MPP<sup>+</sup> treatment in SH-SY5Y cells, which the protein and transcription levels of the proteases and molecular chaperones reached maximal. The proteases and molecular chaperones were significantly increased when overexpressed PGC-1α, which indicated that PGC-1α overexpression activated the mtUPR, and PGC-1α had a protective effect on SH-SY5Y cells. The expression levels of PGC-1α and LRPPRC were significantly improved in the PGC-1α overexpression groups. LRPPRC was markedly reduced in the nucleus, suggesting that PGC-1α overexpression may play a protective role to the mitochondria through LRPPRC. Our finding indicates that overexpression of PGC-1α may activate mtUPR, reducing the oxidative stress injury induced by MPP<sup>+</sup> through LRPPRC signaling, thus maintain mitochondrial homeostasis."	"Alzheimer's and Parkinson's brain tissues have reduced expression of genes for mtDNA OXPHOS Proteins, mitobiogenesis regulator PGC-1α protein and mtRNA stabilizing protein LRPPRC (LRP130). We used RNA sequencing (RNA-seq) to quantitate gene expression in total RNA extracts of vulnerable brain tissues from Alzheimer's disease (AD, frontal cortical ribbon) and Parkinson's disease (PD, ventral midbrain) subjects and phenotypically negative control subjects. Paired-end sequencing files were processed with HISAT2 aligner/Cufflinks quantitation against the hg38 human genome. We observed a significant decrease in gene expression of all mtDNA OXPHOS genes in AD and PD tissues. Gene expression of the master mitochondrial biogenesis regulator PGC-1α (PPARGC1A) was significantly reduced in AD; expression of genes for mitochondrial transcription factors A (TFAM) and B1/B2 (TFB1M/TFB2M) were not significantly changed in AD and PD tissues. 2-way ANOVAs showed significant reduction in AD brain Complex I subunits' expressions and nearly significant reductions in PD brain. We found a significant reduction in both AD and PD brain samples of expression of genes for leucine-rich pentatricopeptide repeat containing (LRPPRC, a.k.a. LRP130), a known mtRNA-stabilizing protein. Our findings suggest that AD and PD brain tissues have a reduction in mitochondrial ATP production derived from a reduction of mitobiogenesis and mtRNA stability. If true, increased brain expression of PGC-1α and/or LRPPRC may improve bioenergetics of AD and PD and alter the course of neurodegeneration in both conditions. (201 words)."	"Regulation of mRNA export through API5 and nuclear FGF2 interaction. API5 (APoptosis Inhibitor 5) and nuclear FGF2 (Fibroblast Growth Factor 2) are upregulated in various human cancers and are correlated with poor prognosis. Although their physical interaction has been identified, the function related to the resulting complex is unknown. Here, we determined the crystal structure of the API5-FGF2 complex and identified critical residues driving the protein interaction. These findings provided a structural basis for the nuclear localization of the FGF2 isoform lacking a canonical nuclear localization signal and identified a cryptic nuclear localization sequence in FGF2. The interaction between API5 and FGF2 was important for mRNA nuclear export through both the TREX and eIF4E/LRPPRC mRNA export complexes, thus regulating the export of bulk mRNA and specific mRNAs containing eIF4E sensitivity elements, such as c-MYC and cyclin D1. These data show the newly identified molecular function of API5 and nuclear FGF2, and provide a clue to understanding the dynamic regulation of mRNA export."	"Messenger RNA delivery to mitoribosomes - hints from a bacterial toxin. In mammalian mitochondria, messenger RNA is processed and matured from large primary transcripts in structures known as RNA granules. The identity of the factors and process transferring the matured mRNA to the mitoribosome for translation is unclear. Nascent mature transcripts are believed to associate initially with the small mitoribosomal subunit prior to recruitment of the large subunit to form the translationally active monosome. When the small subunit fails to assemble, however, the stability of mt-mRNA is only marginally affected, and under these conditions, the LRPPRC/SLIRP RNA-binding complex has been implicated in maintaining mt-mRNA stability. Here, we exploit the activity of a bacterial ribotoxin, VapC20, to show that in the absence of the large mitoribosomal subunit, mt-mRNA species are selectively lost. Further, if the small subunit is also depleted, the mt-mRNA levels are recovered. As a consequence of these data, we suggest a natural pathway for loading processed mt-mRNA onto the mitoribosome."	"Correction: Mitochondrial and nuclear genomic responses to loss of LRPPRC expression. NA"	"LRPPRC sustains Yap-P27-mediated cell ploidy and P62-HDAC6-mediated autophagy maturation and suppresses genome instability and hepatocellular carcinomas. Mutants in the gene encoding mitochondrion-associated protein LRPPRC were found to be associated with French Canadian Type Leigh syndrome, a human disorder characterized with neurodegeneration and cytochrome c oxidase deficiency. LRPPRC interacts with one of microtubule-associated protein family MAP1S that promotes autophagy initiation and maturation to suppress genomic instability and tumorigenesis. Previously, although various studies have attributed LRPPRC nuclear acid-associated functions, we characterized that LRPPRC acted as an inhibitor of autophagy in human cancer cells. Here we show that liver-specific deletion of LRPPRC causes liver-specific increases of YAP and P27 and decreases of P62, leading to an increase of cell polyploidy and an impairment of autophagy maturation. The blockade of autophagy maturation and promotion of polyploidy caused by LRPPRC depletion synergistically enhances diethylnitrosamine-induced DNA damage, genome instability, and further tumorigenesis so that LRPPRC knockout mice develop more and larger hepatocellular carcinomas and survive a shorter lifespan. Therefore, LRPPRC suppresses genome instability and hepatocellular carcinomas and promotes survivals in mice by sustaining Yap-P27-mediated cell ploidy and P62-HDAC6-controlled autophagy maturation."	"Fiber-specific and whole-muscle LRP130 expression in rested, exercised, and fasted human skeletal muscle. Leucine-rich pentatricopeptide repeat motif-containing protein (LRP130) is implicated in the control of mitochondrial gene expression and oxidative phosphorylation in the liver, partly due to its interaction with peroxisome proliferator-activated receptor gamma co-activator 1-alpha (PGC-1α). To investigate LRP130's role in healthy human skeletal muscle, we examined LRP130's fiber-type distribution and subcellular localization (n = 6), as well as LRP130's relationship with PGC-1α protein and citrate synthase (CS) maximal activity (n = 33) in vastus lateralis samples obtained from young males. The impact of an acute bout of exercise (endurance [END] and sprint interval training [SIT]) and fasting (8 h) on LRP130 and PGC-1α expression was also determined (n = 10). LRP130 protein content paralleled fiber-specific succinate dehydrogenase activity (I &gt; IIA) and strongly correlated with the mitochondrially localized protein apoptosis-inducing factor in type I (r = 0.75) and type IIA (r = 0.85) fibers. Whole-muscle LRP130 protein content was positively related to PGC-1α protein (r = 0.49, p &lt; 0.01) and CS maximal activity (r = 0.42, p &lt; 0.01). LRP130 mRNA expression was unaltered (p &gt; 0.05) following exercise, despite ~ 6.6- and ~ 3.8-fold increases (p &lt; 0.01) in PGC-1α mRNA expression after END and SIT, respectively. Although unchanged at the group level (p &gt; 0.05), moderate-to-strong positive correlations were apparent between individual changes in LRP130 and PGC-1α expression at the mRNA (r = 0.63, p &lt; 0.05) and protein (r = 0.59, p = 0.07) level in response to fasting. Our findings support a potential role for LRP130 in the maintenance of basal mitochondrial phenotype in human skeletal muscle. LRP130's importance for mitochondrial remodeling in exercised and fasted human skeletal muscle requires further investigation."	"Identification of ALDH6A1 as a Potential Molecular Signature in Hepatocellular Carcinoma via Quantitative Profiling of the Mitochondrial Proteome. Various liver diseases, including hepatocellular carcinoma (HCC), have been linked to mitochondrial dysfunction, reduction of reactive oxygen species (ROS), and elevation of nitric oxide (NO). In this study, we subjected the human liver mitochondrial proteome to extensive quantitative proteomic profiling analysis and molecular characterization to identify potential signatures indicative of cancer cell growth and progression. Sequential proteomic analysis identified 2452 mitochondrial proteins, of which 1464 and 2010 were classified as nontumor and tumor (HCC) mitochondrial proteins, respectively, with 1022 overlaps. Further metabolic mapping of the HCC mitochondrial proteins narrowed our biological characterization to four proteins, namely, ALDH4A1, LRPPRC, ATP5C1, and ALDH6A1. The latter protein, a mitochondrial methylmalonate semialdehyde dehydrogenase (ALDH6A1), was most strongly suppressed in HCC tumor regions (∼10-fold decrease) in contrast to LRPPRC (∼6-fold increase) and was predicted to be present in plasma. Accordingly, we selected ALDH6A1 for functional analysis and engineered Hep3B cells to overexpress this protein, called ALDH6A1-O/E cells. Since ALDH6A1 is predicted to be involved in mitochondrial respiration, we assessed changes in the levels of NO and ROS in the overexpressed cell lines. Surprisingly, in ALDH6A1-O/E cells, NO was decreased nearly 50% but ROS was increased at a similar level, while the former was restored by treatment with S-nitroso-N-acetyl-penicillamine. The lactate levels were also decreased relative to control cells. Propidium iodide and Rhodamine-123 staining suggested that the decrease in NO and increase in ROS in ALDH6A1-O/E cells could be caused by depolarization of the mitochondrial membrane potential (ΔΨ). Taken together, our results suggest that hepatic neoplastic transformation appears to suppress the expression of ALDH6A1, which is accompanied by a respective increase and decrease in NO and ROS in cancer cells. Given the close link between ALDH6A1 suppression and abnormal cancer cell growth, this protein may serve as a potential molecular signature or biomarker of hepatocarcinogenesis and treatment responses."	"A mosquito salivary protein promotes flavivirus transmission by activation of autophagy. Transmission from an infected mosquito to a host is an essential process in the life cycle of mosquito-borne flaviviruses. Numerous studies have demonstrated that mosquito saliva facilitates viral transmission. Here we find that a saliva-specific protein, named Aedes aegypti venom allergen-1 (AaVA-1), promotes dengue and Zika virus transmission by activating autophagy in host immune cells of the monocyte lineage. The AG6 mice (ifnar1<sup>-/-</sup>ifngr1<sup>-/-</sup>) bitten by the virus-infected AaVA-1-deficient mosquitoes present a lower viremia and prolonged survival. AaVA-1 intracellularly interacts with a dominant negative binder of Beclin-1, known as leucine-rich pentatricopeptide repeat-containing protein (LRPPRC), and releases Beclin-1 from LRPPRC-mediated sequestration, thereby enabling the initialization of downstream autophagic signaling. A deficiency in Beclin-1 reduces viral infection in mice and abolishes AaVA-1-mediated enhancement of ZIKV transmission by mosquitoes. Our study provides a mechanistic insight into saliva-aided viral transmission and could offer a potential prophylactic target for reducing flavivirus transmission."	"Mitochondrial Damage Mediated by miR-1 Overexpression in Cancer Stem Cells. It is well known that cells rely on mitochondrial respiration for survival. However, the effect of microRNAs (miRNAs) on mitochondria of cells has not been extensively explored. Our results indicated that the overexpression of a miRNA (miR-1) could destroy mitochondria of cancer stem cells. miR-1 was downregulated in melanoma stem cells (MSCs) and breast cancer stem cells (BCSCs) compared with cancer non-stem cells. However, the upregulation of miR-1 in cancer non-stem cells did not induce mitochondrial damage. miR-1 overexpression caused mitochondrial damage of cancer stem cells by directly targeting the 3' UTRs of MINOS1 (mitochondrial inner membrane organizing system 1) and GPD2 (glycerol-3-phosphate dehydrogenase 2) genes and interacting with LRPPRC (leucine-rich pentatricopeptide-repeat containing) protein, a protein localized in mitochondria. MINOS1, GPD2, and LRPPRC in mitochondria were required for mitochondrial inner membrane. The results of in vitro and in vivo assays demonstrated that miR-1 overexpression induced mitophagy of cancer stem cells. Therefore, our study contributed novel insights into the mechanism of miRNA-mediated regulation of mitochondria morphology of cancer stem cells."	"Proteasome-Independent Protein Knockdown by Small-Molecule Inhibitor for the Undruggable Lung Adenocarcinoma. Therapeutic target identification and corresponding drug development is a demanding task for the treatment of lung adenocarcinoma, especially the most malignant proximal-proliferative subtype without druggable protein kinase mutations. Using a cell-SELEX-generated aptamer, we discovered a new tumor driver protein, leucine-rich pentatricopeptide repeat-containing protein (LRPPRC), which is specifically overexpressed in the most lethal subtype of lung adenocarcinoma. Targeted LRPPRC protein knockdown is a promising therapeutic strategy for the undruggable LUAD (lung adenocarcinoma). Nevertheless, LRPPRC is mainly located in mitochondria and degraded by protease. Current protein knockdown approaches, such as proteolysis-targeting chimeras (PROTACs), have limitations in their applications to the proteins degraded through proteasome-independent ways. Here, we designed an aptamer-assisted high-throughput method to screen small molecules that could bind to LRPPRC directly, disrupt the interaction of LRPPRC with its stabilizing chaperon protein, and lead to LRPPRC degradation by mitochondrial protease. The screened compound, gossypolacetic acid (GAA), is an old medicine that can accomplish the new function for targeted LRPPRC knockdown. It showed significant antitumor effects even with the LRPPRC-positive patient-derived tumor xenograft (PDX) model. This work not only extended the application of aptamers to screen small-molecule inhibitors for the undruggable lung cancers, but more importantly provided a new strategy to develop protein knockdown methods beyond the proteasome system."	"Mitochondrial Dysfunction in Primary Ovarian Insufficiency. Primary ovarian insufficiency (POI) is defined by the loss or dysfunction of ovarian follicles associated with amenorrhea before the age of 40. Symptoms include hot flashes, sleep disturbances, and depression, as well as reduced fertility and increased long-term risk of cardiovascular disease. POI occurs in ∼1% to 2% of women, although the etiology of most cases remains unexplained. Approximately 10% to 20% of POI cases are due to mutations in a single gene or a chromosomal abnormality, which has provided considerable molecular insight into the biological underpinnings of POI. Many of the genes for which mutations have been associated with POI, either isolated or syndromic cases, function within mitochondria, including MRPS22, POLG, TWNK, LARS2, HARS2, AARS2, CLPP, and LRPPRC. Collectively, these genes play roles in mitochondrial DNA replication, gene expression, and protein synthesis and degradation. Although mutations in these genes clearly implicate mitochondrial dysfunction in rare cases of POI, data are scant as to whether these genes in particular, and mitochondrial dysfunction in general, contribute to most POI cases that lack a known etiology. Further studies are needed to better elucidate the contribution of mitochondria to POI and determine whether there is a common molecular defect in mitochondrial function that distinguishes mitochondria-related genes that when mutated cause POI vs those that do not. Nonetheless, the clear implication of mitochondrial dysfunction in POI suggests that manipulation of mitochondrial function represents an important therapeutic target for the treatment or prevention of POI."	"Defects of mitochondrial RNA turnover lead to the accumulation of double-stranded RNA in vivo. The RNA helicase SUV3 and the polynucleotide phosphorylase PNPase are involved in the degradation of mitochondrial mRNAs but their roles in vivo are not fully understood. Additionally, upstream processes, such as transcript maturation, have been linked to some of these factors, suggesting either dual roles or tightly interconnected mechanisms of mitochondrial RNA metabolism. To get a better understanding of the turn-over of mitochondrial RNAs in vivo, we manipulated the mitochondrial mRNA degrading complex in Drosophila melanogaster models and studied the molecular consequences. Additionally, we investigated if and how these factors interact with the mitochondrial poly(A) polymerase, MTPAP, as well as with the mitochondrial mRNA stabilising factor, LRPPRC. Our results demonstrate a tight interdependency of mitochondrial mRNA stability, polyadenylation and the removal of antisense RNA. Furthermore, disruption of degradation, as well as polyadenylation, leads to the accumulation of double-stranded RNAs, and their escape out into the cytoplasm is associated with an altered immune-response in flies. Together our results suggest a highly organised and inter-dependable regulation of mitochondrial RNA metabolism with far reaching consequences on cellular physiology."	"Lipidomics unveils lipid dyshomeostasis and low circulating plasmalogens as biomarkers in a monogenic mitochondrial disorder. Mitochondrial dysfunction characterizes many rare and common age-associated diseases. The biochemical consequences, underlying clinical manifestations, and potential therapeutic targets, remain to be better understood. We tested the hypothesis that lipid dyshomeostasis in mitochondrial disorders goes beyond mitochondrial fatty acid β-oxidation, particularly in liver. This was achieved using comprehensive untargeted and targeted lipidomics in a case-control cohort of patients with Leigh syndrome French-Canadian variant (LSFC), a mitochondrial disease caused by mutations in LRPPRC, and in mice harboring liver-specific inactivation of Lrpprc (H-Lrpprc-/-). We discovered a plasma lipid signature discriminating LSFC patients from controls encompassing lower levels of plasmalogens and conjugated bile acids, which suggest perturbations in peroxisomal lipid metabolism. This premise was reinforced in H-Lrpprc-/- mice, which compared with littermates recapitulated a similar, albeit stronger peroxisomal metabolic signature in plasma and liver including elevated levels of very-long-chain acylcarnitines. These mice also presented higher transcript levels for hepatic markers of peroxisome proliferation in addition to lipid remodeling reminiscent of nonalcoholic fatty liver diseases. Our study underscores the value of lipidomics to unveil unexpected mechanisms underlying lipid dyshomeostasis ensuing from mitochondrial dysfunction herein implying peroxisomes and liver, which likely contribute to the pathophysiology of LSFC, but also other rare and common mitochondrial diseases."	"Alternative splicing regulates stochastic NLRP3 activity. Leucine-rich repeat (LRR) domains are evolutionarily conserved in proteins that function in development and immunity. Here we report strict exonic modularity of LRR domains of several human gene families, which is a precondition for alternative splicing (AS). We provide evidence for AS of LRR domain within several Nod-like receptors, most prominently the inflammasome sensor NLRP3. Human NLRP3, but not mouse NLRP3, is expressed as two major isoforms, the full-length variant and a variant lacking exon 5. Moreover, NLRP3 AS is stochastically regulated, with NLRP3 ∆ exon 5 lacking the interaction surface for NEK7 and hence loss of activity. Our data thus reveals unexpected regulatory roles of AS through differential utilization of LRRs modules in vertebrate innate immunity."	"Mitochondrial respiratory chain complex IV deficiency presenting as neonatal respiratory distress syndrome. A term girl infant delivered following foetal distress presented with early respiratory distress syndrome and lactic acidaemia. She subsequently underwent detailed investigation for primary lactic acidaemia and was identified as homozygous for the c.515A&gt;G,p.(Tyr172Cys) missense variant in the LRPPRC gene. Variants in this gene are known to cause French-Canadian type Leigh syndrome. Both parents were confirmed to be heterozygous for this mutation. This is the first case report of mitochondrial respiratory chain complex IV deficiency presenting as foetal distress and neonatal respiratory distress syndrome."	"[Knock-down of leucine-rich pentatricopeptide repeat containing(LRPPRC) promotes apoptosis of hormone resistant prostate cancer cells]. Objective To investigate the effects of leucine-rich pentatricopeptide repeat containing (LRPPRC) on proliferation and apoptosis in hormone resistant prostate cancer cells. Methods LRPPRC and androgen receptor (AR) expressions in DU145 and LNCaP cells were detected by Western blot analysis. The siRNA targeting LRPPRC gene was transiently transfected into DU145 cells. LRPPRC expression was detected by reverse transcription PCR and Western blot analysis. The cell survival rate was analyzed by MTT assay. ATP was measured by luciferin-luciferase assay. The cell apoptosis was investigated by flow cytometry and Hoechst 33258 staining. Caspase-3, Bcl2 and BAX protein expressions were detected by Western blot analysis. Results DU145 and LNCaP cells highly expressed LRPPRC. LNCaP cells highly expressed AR, while no expression of AR was observed in DU145 cells. Down-regulation of LRPPRC decreased cell survival rate and ATP level, increased apoptosis rate and caspase-3 activation, and decreased Bcl2 expression in DU145 cells. Conclusion Knock-down of LRPPRC promotes apoptosis of hormone resistant prostate cancer cells."	"LRPPRC: A Multifunctional Protein Involved in Energy Metabolism and Human Disease. The pentatricopeptide repeat (PPR) family plays a major role in RNA stability, regulation, processing, splicing, translation, and editing. Leucine-rich PPR-motif-containing protein (LRPPRC), a member of the PPR family, is a known gene mutation that causes Leigh syndrome French-Canadian. Recently, growing evidence has pointed out that LRPPRC dysregulation is related to various diseases ranging from tumors to viral infections. This review presents available published data on the LRPPRC protein function and its role in tumors and other diseases. As a multi-functional protein, LRPPRC regulates a myriad of biological processes, including energy metabolism and maturation and the export of nuclear mRNA. Overexpression of LRPPRC has been observed in various human tumors and is associated with poor prognosis. Downregulation of LRPPRC inhibits growth and invasion, induces apoptosis, and overcomes drug resistance in tumor cells. In addition, LRPPRC plays a potential role in Parkinson's disease, neurofibromatosis 1, viral infections, and venous thromboembolism. Further investigating these new functions of LRPPRC should provide novel opportunities for a better understanding of its pathological role in diseases from tumors to viral infections and as a potential biomarker and molecular target for disease treatment."	"Looking beyond PGC-1α: emerging regulators of exercise-induced skeletal muscle mitochondrial biogenesis and their activation by dietary compounds. Despite its widespread acceptance as the &quot;master regulator&quot; of mitochondrial biogenesis (i.e., the expansion of the mitochondrial reticulum), peroxisome proliferator-activated receptor (PPAR) gamma coactivator-1 alpha (PGC-1α) appears to be dispensable for the training-induced augmentation of skeletal muscle mitochondrial content and respiratory function. In fact, a number of regulatory proteins have emerged as important players in skeletal muscle mitochondrial biogenesis and many of these proteins share key attributes with PGC-1α. In an effort to move past the simplistic notion of a &quot;master regulator&quot; of mitochondrial biogenesis, we highlight the regulatory mechanisms by which nuclear factor erythroid 2-related factor 2 (Nrf2), estrogen-related receptor gamma (ERRγ), PPARβ, and leucine-rich pentatricopeptide repeat-containing protein (LRP130) may contribute to the control of skeletal muscle mitochondrial biogenesis. We also present evidence supporting/refuting the ability of sulforaphane, quercetin, and epicatechin to promote skeletal muscle mitochondrial biogenesis and their potential to augment mitochondrial training adaptations. Targeted activation of specific pathways by these compounds may allow for greater mechanistic insight into the molecular pathways controlling mitochondrial biogenesis in human skeletal muscle. Dietary activation of mitochondrial biogenesis may also be useful in clinical populations with basal reductions in mitochondrial protein content, enzyme activities, and/or respiratory function as well as individuals who exhibit a blunted skeletal muscle responsiveness to contractile activity. Novelty The existence of redundant pathways leading to mitochondrial biogenesis refutes the simplistic notion of a &quot;master regulator&quot; of mitochondrial biogenesis. Dietary activation of specific pathways may provide greater mechanistic insight into the exercise-induced mitochondrial biogenesis in human skeletal muscle."	"lncRNA ZEB1-AS1 Mediates Oxidative Low-Density Lipoprotein-Mediated Endothelial Cells Injury by Post-transcriptional Stabilization of NOD2. Oxidized-low density lipoprotein (ox-LDL) can induce injury of endothelial cells, causing atherosclerosis, which is an important initial event in several cardiovascular diseases. Long non-coding RNAs (lncRNAs) have emerged as regulators of diverse biological processes, but their specific biological functions and biochemical mechanisms in ox-LDL-induced endothelial cell injury have not been well investigated. Here, we describe the initial functional analysis of a poorly characterized human lncRNA ZEB1 antisense 1 (ZEB1-AS1). We found that ox-LDL treatment could induce a decreased cell viability and an increased cell apoptosis in endothelial cells, and knockdown of ZEB1-AS1 significantly reversed this effect. Mechanistically, ox-LDL treatment could sequester p53 from binding to ZEB1-AS1 promoter region, causing transcriptional activation and upregulation of ZEB1-AS1. Moreover, enhanced ZEB1-AS1 could upregulate Nucleotide-Binding Oligomerization Domain 2 (NOD2) expression through recruiting leucine-rich pentatricopeptide repeat motif-containing protein (LRPPRC) to stabilize NOD2 mRNA. Experimental data showed that knockdown of NOD2 or LRPPRC dramatically abrogated the functional role of ZEB1-AS1 in ox-LDL-induced endothelial cell injury. In summary, we demonstrated that lncRNA ZEB1-AS1 regulates the ox-LDL-induced endothelial cell injury via an LRPPRC-dependent mRNA stabilization mechanism. Therefore, ZEB1-AS1 may serve as a multi-potency target to overcome endothelial cell injury, atherosclerosis and other cardiovascular diseases."	"mTORC1 is required for expression of LRPPRC and cytochrome-c oxidase but not HIF-1α in Leigh syndrome French Canadian type patient fibroblasts. Leigh syndrome French Canadian type (LSFC) is a mitochondrial disease caused by mutations in the leucine-rich pentatricopeptide repeat-containing (LRPPRC) gene leading to a reduction of cytochrome-c oxidase (COX) expression reaching 50% in skin fibroblasts. We have shown that under basal conditions, LSFC and control cells display similar ATP levels. We hypothesized that this occurs through upregulation of mechanistic target of rapamycin (mTOR)-mediated metabolic reprogramming. Our results showed that compared with controls, LSFC cells exhibited an upregulation of the mTOR complex 1 (mTORC1)/p70 ribosomal S6 kinase pathway and higher levels of hypoxia-inducible factor 1α (HIF-1α) and its downstream target pyruvate dehydrogenase kinase 1 (PDHK1), a regulator of mitochondrial pyruvate dehydrogenase 1 (PDH1). Consistent with these signaling alterations, LSFC cells displayed a 40-61% increase in [U-<sup>13</sup>C6]glucose contribution to pyruvate, lactate, and alanine formation, as well as higher levels of the phosphorylated and inactive form of PDH1-α. Interestingly, inhibition of mTOR with rapamycin did not alter HIF-1α or PDHK1 protein levels in LSFC fibroblasts. However, this treatment increased PDH1-α phosphorylation in control and LSFC cells and reduced ATP levels in control cells. Rapamycin also decreased LRPPRC expression by 41 and 11% in LSFC and control cells, respectively, and selectively reduced COX subunit IV expression in LSFC fibroblasts. Taken together, our data demonstrate the importance of mTORC1, independent of the HIF-1α/PDHK1 axis, in maintaining LRPPRC and COX expression in LSFC cells."	"Correction: The viral restriction factor Tetherin prevents leucine-rich pentatricopeptide repeat-containing protein (LRPPRC) from association with Beclin 1 and B-cell CLL/lymphoma 2 (Bcl-2) and enhances autophagy and mitophagy. NA"	"DANCR Promotes Metastasis and Proliferation in Bladder Cancer Cells by Enhancing IL-11-STAT3 Signaling and CCND1 Expression. The prognosis for patients with bladder cancer (BCa) with lymph node (LN) metastasis is poor, and it is not improved by current treatments. Long noncoding RNAs (lncRNAs) are involved in the pathology of various tumors, including BCa. However, the role of Differentiation antagonizing non-protein coding RNA (DANCR) in BCa LN metastasis remains unclear. In this study, we discover that DANCR was significantly upregulated in BCa tissues and cases with LN metastasis. DANCR expression was positively correlated with LN metastasis status, tumor stage, histological grade, and poor patient prognosis. Functional assays demonstrated that DANCR promoted BCa cell migration, invasion, and proliferation in vitro and enhanced tumor LN metastasis and growth in vivo. Mechanistic investigations revealed that DANCR activated IL-11-STAT3 signaling and increased cyclin D1 and PLAU expression via guiding leucine-rich pentatricopeptide repeat containing (LRPPRC) to stabilize mRNA. Moreover, oncogenesis facilitated by DANCR was attenuated by anti-IL-11 antibody or a STAT3 inhibitor (BP-1-102). In conclusion, our findings indicate that DANCR induces BCa LN metastasis and proliferation via an LRPPRC-mediated mRNA stabilization mechanism. DANCR may serve as a multi-potency target for clinical intervention in LN-metastatic BCa."	"Ophthalmic manifestations in patients with Leigh syndrome, French Canadian type. Leigh syndrome, French Canadian type is a rare neurodegenerative disease. To our knowledge, there have been no studies based on ocular findings published for this disease. The purpose of this study is to describe ophthalmic findings in these patients. Six patients genetically identified as having the syndrome were included in this study. Four patients had an ophthalmic examination with an ophthalmologist including evaluation of visual acuity, extraocular motility and lid position, orthoptic workup, evaluation of stereopsis, refraction, evaluation of pupils, color vision, slit-lamp biomicroscopy, measurement of intraocular pressure, and fundoscopy. Two patients had a chart review. Visual acuity ranged from 0.00 logmar to 1.55 logmar. Extraocular motility abnormalities and ptosis were noted in half of the patients. Strabismus was present in the entire cohort, and stereopsis was absent in half of these patients. Amblyopia was noted in 83% of individuals and suppression in 33%. Only one patient had nystagmus. Refraction varied throughout patients. It included severe hyperopia, myopia, astigmatism, and significant anisometropia. Pupils, anterior segment, fundus, and color vision were normal in all patients. Intraocular pressure was slightly elevated in one patient. Patients with Leigh syndrome, French Canadian type display a variety of ophthalmic findings, and screening at a young age is recommended."	"Polymerase-1 pathway activation in acute multiple sclerosis relapse. Increased expression of RNA polymerase 1 (POL1) molecular pathway was reported to be associated with increased disease activity in patients with multiple sclerosis (MS). However, the operating molecular mechanisms that characterize the pattern of acute MS relapse activity has not been thoroughly studied. To assess POL1 pathway expression during acute MS relapse. We studied POL1 pathway associated biomarkers during the first acute optic neuritis attack of MS, and in relapsing-remitting MS patients treated with disease-modifying drugs (DMDs) experiencing an acute MS relapse or a radiological relapse using gene expression microarrays and quantitative RT-PCR. In MS patients (N = 6) during the first acute optic neuritis attack POL1 pathway activation was evident by over-expression of POL1 related network including transcription factor UBTF and downstream components of Assembly of RNA POL1 complex (p=1.92E-03). POL1 related biomarkers RRN3, POLR1D and LRPPRC were over-expressed x1.6 (p = .002), ×1.7 (p = .01) and x2.0 (p = .001) times higher respectively, in MS patients (N = 30) during acute clinical relapse as compared with remission. Similarly, in MS patients (N = 21) that presented with a radiological relapse, we observed significant activation of POL1 related biomarkers including RRN3 (p = .01), POLR1D (p = .002), POLR1E (p = .0001) and LRPPRC (p = .006), as compared with remission, as well as overexpression of a large group of genes encoding ribosomal proteins like RPS6KA3 (p = 7.2E-6), RRP8 (p = .0002) and RPCS9 (p = .0008). Our findings demonstrated increased POL1 pathway activity in acute MS relapse and suggest that targeted inactivation of POL1 pathway represent a novel strategy for a better treatment of acute MS relapse."	"Tissue-specific expression and post-transcriptional regulation of the ATPase inhibitory factor 1 (IF1) in human and mouse tissues. The ATPase inhibitory factor 1 (IF1) is an intrinsically disordered protein that regulates the activity of the mitochondrial ATP synthase. Phosphorylation of S39 in IF1 prevents it from binding to the enzyme and thus abolishes its inhibitory activity. Dysregulation of IF1 is linked to different human diseases, providing a relevant biomarker of cancer progression. However, the tissue content of IF1 relative to the abundance of the ATP synthase is unknown. In this study, we characterized the tissue-specific expression of IF1 in human and mouse tissues and quantitated the content of IF1 and of ATP synthase. We found relevant differences in IF1 expression between human and mouse tissues and found that in high-energy-demanding tissues, the molar content of IF1 exceeds that of the ATP synthase. In these tissues, a fraction of IF1 is bound to the enzyme, and the other fraction is phosphorylated and hence is unable to bind the enzyme. Post-transcriptional control accounts for most of the regulated expression of IF1, especially in mouse heart, where IF1 mRNA translation is repressed by the leucine-rich pentatricopeptide repeat containing protein. Overall, these findings enlighten the cellular biology of IF1 and pave the way to development of additional models that address its role in pathophysiology.-Esparza-Moltó, P. B., Nuevo-Tapioles, C., Chamorro, M., Nájera, L., Torresano, L., Santacatterina, F., Cuezva, J. M. Tissue-specific expression and post-transcriptional regulation of the ATPase inhibitory factor 1 (IF1) in human and mouse tissues."	"Negative Regulation of Mitochondrial Antiviral Signaling Protein-Mediated Antiviral Signaling by the Mitochondrial Protein LRPPRC During Hepatitis C Virus Infection. Hepatitis C virus (HCV) is highly efficient in establishing a chronic infection, having evolved multiple strategies to suppress the host antiviral responses. The HCV nonstructural 5A (NS5A) protein, in addition to its role in viral replication and assembly, has long been known to hamper the interferon (IFN) response. However, the mechanism of this inhibitory activity of NS5A remains partly characterized. In a functional proteomic screening carried out in HCV replicon cells, we identified the mitochondrial protein LRPPRC as an NS5A binding factor. Notably, we found that downregulation of LRPPRC expression results in a significant inhibition of HCV infection, which is associated with an increased activation of the IFN response. Moreover, we showed that LRPPRC acts as a negative regulator of the mitochondrial-mediated antiviral immunity, by interacting with mitochondrial antiviral signaling protein (MAVS) and inhibiting its association with TRAF3 and TRAF6. Finally, we demonstrated that NS5A is able to interfere with MAVS activity in a LRPPRC-dependent manner. Conclusion: Overall, our results indicate that NS5A contributes to the inhibition of innate immune pathways during HCV infection by exploiting the ability of LRPPRC to inhibit MAVS-regulated antiviral signaling."	"Genetic association of the cytochrome c oxidase-related genes with Alzheimer's disease in Han Chinese. Alzheimer's disease (AD) is the most common cause of dementia. Mitochondrial dysfunction has been widely reported in AD due to its important role in cellular metabolism and energy production. Complex IV (cytochrome c oxidase, COX) of mitochondrial electron transport chain, is particularly vulnerable in AD. Defects of COX in AD have been well documented, but there is little evidence to support the genetic association of the COX-related genes with AD. In this study, we investigated the genetic association between 17 nuclear-encoded COX-related genes and AD in 1572 Han Chinese. The whole exons of these genes were also screened in 107 unrelated AD patients with a high probability of hereditarily transmitted AD. Variants in COX6B1, NDUFA4, SURF1, and COX10 were identified to be associated with AD. An integrative analysis with data of eQTL, expression and pathology revealed that most of the COX-related genes were significantly downregulated in AD patients and mouse models, and the AD-associated variants in COX6B1, SURF1, and COX10 were linked to altered mRNA levels in brain tissues. Furthermore, mRNA levels of Ndufa4, Cox5a, Cox10, Cox6b2, Cox7a2, and Lrpprc were significantly correlated with Aβ plaque burden in hippocampus of AD mice. Convergent functional genomics analysis revealed strong supportive evidence for the roles of COX6B1, COX10, NDUFA4, and SURF1 in AD. As the result of our comprehensive analysis of the COX-related genes at the genetic, expression, and pathology levels, we have been able to provide a systematic view for understanding the relationships of the COX-related genes in the pathology of AD."	"A novel histochemistry assay to assess and quantify focal cytochrome c oxidase deficiency. Defects in the respiratory chain, interfering with energy production in the cell, are major underlying causes of mitochondrial diseases. In spite of this, the surprising variety of clinical symptoms, disparity between ages of onset, as well as the involvement of mitochondrial impairment in ageing and age-related diseases continue to challenge our understanding of the pathogenic processes. This complexity can be in part attributed to the unique metabolic needs of organs or of various cell types. In this view, it remains essential to investigate mitochondrial dysfunction at the cellular level. For this purpose, we developed a novel enzyme histochemical method that enables precise quantification in fresh-frozen tissues using competing redox reactions which ultimately lead to the reduction of tetrazolium salts and formazan deposition in cytochrome c oxidase-deficient mitochondria. We demonstrate that the loss of oxidative activity is detected at very low levels - this achievement is unequalled by previous techniques and opens up new opportunities for the study of early disease processes or comparative investigations. Moreover, human biopsy samples of mitochondrial disease patients of diverse genotypic origins were used and the successful detection of COX-deficient cells suggests a broad application for this new method. Lastly, the assay can be adapted to a wide range of tissues in the mouse and extends to other animal models, which we show here with the fruit fly, Drosophila melanogaster. Overall, the new assay provides the means to quantify and map, on a cell-by-cell basis, the full extent of COX deficiency in tissues, thereby expending new possibilities for future investigation. © 2018 The Authors. The Journal of Pathology published by John Wiley &amp; Sons Ltd on behalf of Pathological Society of Great Britain and Ireland."	"Human Papillomavirus E6 interaction with cellular PDZ domain proteins modulates YAP nuclear localization. HPV E6 oncoproteins associate with cellular PDZ proteins. In addition to previously identified cellular PDZ proteins, we found association of the HPV16 E6 PBM with the Dystrophin Glycoprotein Complex, LRCC1, and SLC9A3R2. HPV18 E6 had additional associations when lysates from adenomatous cell lines were used including LRPPRC, RLGAPB, EIF3A, SMC2 and 3, AMOT, AMOTL1, and ARHGEF1; some of these cellular PDZ proteins are implicated in the regulation of the YAP1 transcriptional co-activator. In keratinocytes, nuclear translocation of YAP1 was promoted by the complete HPV-16 genome, or by expression of the individual E6 or E7 oncoproteins; the activity of E6 required an intact PBM at the carboxy-terminus. This work demonstrates that E6 association with cellular PDZ proteins promotes the nuclear localization of YAP1. The ability of E6 to promote the nuclear transport of YAP1 thus identifies an E6 activity that could contribute to the transformation of cells by E6."	"Large-scale GWAS identifies multiple loci for hand grip strength providing biological insights into muscular fitness. Hand grip strength is a widely used proxy of muscular fitness, a marker of frailty, and predictor of a range of morbidities and all-cause mortality. To investigate the genetic determinants of variation in grip strength, we perform a large-scale genetic discovery analysis in a combined sample of 195,180 individuals and identify 16 loci associated with grip strength (P&lt;5 × 10<sup>-8</sup>) in combined analyses. A number of these loci contain genes implicated in structure and function of skeletal muscle fibres (ACTG1), neuronal maintenance and signal transduction (PEX14, TGFA, SYT1), or monogenic syndromes with involvement of psychomotor impairment (PEX14, LRPPRC and KANSL1). Mendelian randomization analyses are consistent with a causal effect of higher genetically predicted grip strength on lower fracture risk. In conclusion, our findings provide new biological insight into the mechanistic underpinnings of grip strength and the causal role of muscular strength in age-related morbidities and mortality."	"Novel LRPPRC Mutation in a Boy With Mild Leigh Syndrome, French-Canadian Type Outside of Québec. Leigh syndrome, French-Canadian type is unique to patients from a genetic isolate in the Saguenay-Lac-Saint-Jean region of Québec. It has also been recently described in 10 patients with LRPPRC mutation outside of Québec. It is an autosomal recessive genetic disorder with fatal metabolic crisis and severe neurological morbidity in infancy caused by LRPPRC mutation. The authors report a boy with a novel LRPPRC compound heterozygous missense mutations c.3130C&gt;T, c.3430C&gt;T, and c.4078G&gt;A found on whole-exome sequencing which correlated with isolated cytochrome c-oxidase deficiency found in skeletal muscle. LRPPRC mutation is a rare cause of cytochrome c-oxidase-deficient form of Leigh syndrome outside of Québec. Our patient broadens the spectrum of phenotypes of Leigh syndrome, French-Canadian type. LRPPRC mutation should be considered in children with early childhood neurodegenerative disorder, even in the absence of metabolic crisis. Early evaluation with whole-exome sequencing is useful for early diagnosis and for genetic counseling."	"LRPPRC-mediated folding of the mitochondrial transcriptome. The expression of the compact mammalian mitochondrial genome requires transcription, RNA processing, translation and RNA decay, much like the more complex chromosomal systems, and here we use it as a model system to understand the fundamental aspects of gene expression. Here we combine RNase footprinting with PAR-CLIP at unprecedented depth to reveal the importance of RNA-protein interactions in dictating RNA folding within the mitochondrial transcriptome. We show that LRPPRC, in complex with its protein partner SLIRP, binds throughout the mitochondrial transcriptome, with a preference for mRNAs, and its loss affects the entire secondary structure and stability of the transcriptome. We demonstrate that the LRPPRC-SLIRP complex is a global RNA chaperone that stabilizes RNA structures to expose the required sites for translation, stabilization, and polyadenylation. Our findings reveal a general mechanism where extensive RNA-protein interactions ensure that RNA is accessible for its biological functions."	"RNA Chemical Proteomics Reveals the N<sup>6</sup>-Methyladenosine (m<sup>6</sup>A)-Regulated Protein-RNA Interactome. Epitranscriptomic RNA modifications can regulate mRNA function; however, there is a major gap in our understanding of the biochemical mechanisms mediating their effects. Here, we develop a chemical proteomics approach relying upon photo-cross-linking with synthetic diazirine-containing RNA probes and quantitative proteomics to profile RNA-protein interactions regulated by N<sup>6</sup>-methyladenosine (m<sup>6</sup>A), the most abundant internal modification in eukaryotic RNA. In addition to identifying YTH domain-containing proteins and ALKBH5, known interactors of this modification, we find that FMR1 and LRPPRC, two proteins associated with human disease, &quot;read&quot; this modification. Surprisingly, we also find that m<sup>6</sup>A disrupts RNA binding by the stress granule proteins G3BP1/2, USP10, CAPRIN1, and RBM42. Our work provides a general strategy for interrogating the interactome of RNA modifications and reveals the biochemical mechanisms underlying m<sup>6</sup>A function in the cell."	"Whole exome sequencing in thrombophilic pedigrees to identify genetic risk factors for venous thromboembolism. Family studies have shown a strong heritability component for venous thromboembolism (VTE), but established genetic risk factors are present in only half of VTE patients. To identify genetic risk factors in two large families with unexplained hereditary VTE. We performed whole exome sequencing in 10 affected relatives of two unrelated families with an unexplained tendency for VTE. We prioritized variants shared by all affected relatives from both families, and evaluated these in the remaining affected and unaffected individuals. We prioritized variants based on 3 different filter strategies: variants within candidate genes, rare variants across the exome, and SNPs present in patients with familial VTE and with low frequency in the general population. We used whole exome sequencing data available from 96 unrelated VTE cases with a positive family history of VTE from an affected sib study (the GIFT study) to identify additional carriers and compared the risk-allele frequencies with the general population. Variants found in only one individual were also retained for further analysis. Finally, we assessed the association of these variants with VTE in a population-based case-control study (the MEGA study) with 4,291 cases and 4,866 controls. Six variants remained as putative disease-risk candidates. These variants are located in 6 genes spread among 3 different loci: 2p21 (PLEKHH2 NM_172069:c.3105T&gt;C, LRPPRC rs372371276, SRBD1 rs34959371), 5q35.2 (UNC5A NM_133369.2:c.1869+23C&gt;A), and 17q25.1 (GPRC5C rs142232982, RAB37 rs556450784). In GIFT, additional carriers were identified only for the variants located in the 2p21 locus. In MEGA, additional carriers for several of these variants were identified in both cases and controls, without a difference in prevalence; no carrier of the UNC5A variant was present. Despite sequencing of several individuals from two thrombophilic families resulting in 6 candidate variants, we were unable to confirm their relevance as novel thrombophilic defects."	"Experimental Autoimmune Encephalomyelitis Ameliorated by Passive Transfer of Polymerase 1-Silenced MOG35-55 Lymphatic Node Cells: Verification of a Novel Therapeutic Approach in Multiple Sclerosis. In the current study, we present an innovative concept based on the knowledge that enhancing naturally occurring biological mechanisms is effective in preventing neuronal damage and maintaining low disease activity in about 15% of multiple sclerosis (MS) patients presenting the benign type of MS. Recently, we have demonstrated that low disease activity in benign MS is associated with suppression of RNA polymerase 1 (POL1) pathway; therefore, targeting POL1 transcription machinery as a strategy for suppressing active forms of MS is suggested. To further establish our approach, we aimed to suppress POL1 pathway by silencing of the POL1-related RRN3, POLR1D and LRPPRC genes in specific MOG35-55-activated lymphocytes and assess their capacity to induce experimental autoimmune encephalomyelitis (EAE) by passive transfer. We have demonstrated that silencing of specific POL1 pathway-related genes significantly decreased viability and increased the proportion of CD4<sup>+</sup>/AnnexinV<sup>+</sup>/PI<sup>+</sup> apoptotic cells in MOG35-55-primed lymphocytes. POL1-gene silencing significantly decreased the proportion of CD4<sup>+</sup>IL17<sup>+</sup> and increased proportion of CD4<sup>+</sup>IL10<sup>+</sup> and CD4<sup>+</sup>TNFa<sup>+</sup> lymphocytes that occurred simultaneously with over-presentation of Treg CD4<sup>+</sup>CD25<sup>+</sup>FoxP3<sup>+</sup> cells. Passive transfer of MOG35-55-primed lymphocytes after POL1-gene silencing suppressed EAE development in mice as demonstrated by delayed onset and peak of disease accompanied by significantly lower maximal and cumulative EAE scores. Our study supports a basis for direct targeting of POL1 transcription pathway as a strategy for selective induction of apoptosis and suppression of inflammation in EAE and consequently paves the way for innovative and targeted MS therapeutic strategy that is based on naturally existing biological mechanism."	"Immunohistochemical expression analysis of leucine-rich PPR-motif-containing protein (LRPPRC), a candidate colorectal cancer biomarker identified by shotgun proteomics using iTRAQ. Colorectal cancer (CRC) is the fourth most frequent cause of cancer deaths in the world. Novel biomarkers for the diagnosis, prognosis, and treatment of CRC are required to improve the clinical strategy. We applied shotgun proteomics using isobaric tags for relative and absolute quantitation (iTRAQ) to identify novel biomarkers of CRC, and then we detected leucine-rich PPR-motif-containing protein (LRPPRC) expression in 83 normal colorectal tissues and 133 CRC tissues by immunohistochemistry. A total of 570 proteins were identified using iTRAQ. We validated the expression of LRPPRC protein by immunohistochemical analysis of the 77 proteins that showed expression changes in the cancer tissues &gt;1.5-fold the levels in the normal tissues. The expression levels of LRPPRC were significantly higher in CRC tissues than those in normal colorectal tissues, and the expression levels were related with tumor differentiation and especially high in moderately differentiated CRC tissues. We identified a novel, differentially expressed protein, LRPPRC, which has the potential to serve as a molecular target for diagnosis and/or prognosis of CRC."	"Loss of hepatic LRPPRC alters mitochondrial bioenergetics, regulation of permeability transition and trans-membrane ROS diffusion. The French-Canadian variant of Leigh Syndrome (LSFC) is an autosomal recessive oxidative phosphorylation (OXPHOS) disorder caused by a mutation in LRPPRC, coding for a protein involved in the stability of mitochondrially-encoded mRNAs. Low levels of LRPPRC are present in all patient tissues, but result in a disproportionately severe OXPHOS defect in the brain and liver, leading to unpredictable subacute metabolic crises. To investigate the impact of the OXPHOS defect in the liver, we analyzed the mitochondrial phenotype in mice harboring an hepatocyte-specific inactivation of Lrpprc. Loss of LRPPRC in the liver caused a generalized growth delay, and typical histological features of mitochondrial hepatopathy. At the molecular level, LRPPRC deficiency caused destabilization of polyadenylated mitochondrial mRNAs, altered mitochondrial ultrastructure, and a severe complex IV (CIV) and ATP synthase (CV) assembly defect. The impact of LRPPRC deficiency was not limited to OXPHOS, but also included impairment of long-chain fatty acid oxidation, a striking dysregulation of the mitochondrial permeability transition pore, and an unsuspected alteration of trans-membrane H2O2 diffusion, which was traced to the ATP synthase assembly defect, and to changes in the lipid composition of mitochondrial membranes. This study underscores the value of mitochondria phenotyping to uncover complex and unexpected mechanisms contributing to the pathophysiology of mitochondrial disorders."	"Mitochondrial retrograde signaling connects respiratory capacity to thermogenic gene expression. Mitochondrial respiration plays a crucial role in determining the metabolic state of brown adipose tissue (BAT), due to its direct roles in thermogenesis, as well as through additional mechanisms. Here, we show that respiration-dependent retrograde signaling from mitochondria to nucleus contributes to genetic and metabolic reprogramming of BAT. In mouse BAT, ablation of LRPPRC (LRP130), a potent regulator of mitochondrial transcription and respiratory capacity, triggers down-regulation of thermogenic genes, promoting a storage phenotype in BAT. This retrograde regulation functions by inhibiting the recruitment of PPARγ to the regulatory elements of thermogenic genes. Reducing cytosolic Ca<sup>2+</sup> reverses the attenuation of thermogenic genes in brown adipocytes with impaired respiratory capacity, while induction of cytosolic Ca<sup>2+</sup> is sufficient to attenuate thermogenic gene expression, indicating that cytosolic Ca<sup>2+</sup> mediates mitochondria-nucleus crosstalk. Our findings suggest respiratory capacity governs thermogenic gene expression and BAT function via mitochondria-nucleus communication, which in turn leads to either a thermogenic or storage mode."	"An unexpected role for the transcriptional coactivator isoform NT-PGC-1α in the regulation of mitochondrial respiration in brown adipocytes. Brown adipose tissue dissipates energy as heat, a process that relies on a high abundance of mitochondria and high levels of electron transport chain (ETC) complexes within these mitochondria. Two regulators of mitochondrial respiration and heat production in brown adipocytes are the transcriptional coactivator PGC-1α and its splicing isoform NT-PGC-1α, which control mitochondrial gene expression in the nucleus. Surprisingly, we found that, in brown adipocytes, some NT-PGC-1α localizes to mitochondria, whereas PGC-1α resides in the nucleus. Here we sought to investigate the role of NT-PGC-1α in brown adipocyte mitochondria. Immunocytochemistry, immunotransmission electron microscopy, and biochemical analyses indicated that NT-PGC-1α was located in the mitochondrial matrix in brown adipocytes. NT-PGC-1α was specifically enriched at the D-loop region of the mtDNA, which contains the promoters for several essential ETC complex genes, and was associated with LRP130, an activator of mitochondrial transcription. Selective expression of NT-PGC-1α and PGC-1α in PGC-1α<sup>-/-</sup> brown adipocytes similarly induced expression of nuclear DNA-encoded mitochondrial ETC genes, including the key mitochondrial transcription factor A (TFAM). Despite having comparable levels of TFAM expression, PGC-1α<sup>-/-</sup> brown adipocytes expressing NT-PGC-1α had higher expression of mtDNA-encoded ETC genes than PGC-1α<sup>-/-</sup> brown adipocytes expressing PGC-1α, suggesting a direct effect of NT-PGC-1α on mtDNA transcription. Moreover, this increase in mtDNA-encoded ETC gene expression was associated with enhanced respiration in NT-PGC-1α-expressing PGC-1α<sup>-/-</sup> brown adipocytes. Our findings reveal a previously unappreciated and isoform-specific role for NT-PGC-1α in the regulation of mitochondrial transcription in brown adipocytes and provide new insight into the transcriptional control of mitochondrial respiration."	"A biochemical framework for eIF4E-dependent mRNA export and nuclear recycling of the export machinery. The eukaryotic translation initiation factor eIF4E acts in the nuclear export and translation of a subset of mRNAs. Both of these functions contribute to its oncogenic potential. While the biochemical mechanisms that underlie translation are relatively well understood, the molecular basis for eIF4E's role in mRNA export remains largely unexplored. To date, over 3000 transcripts, many encoding oncoproteins, were identified as potential nuclear eIF4E export targets. These target RNAs typically contain a ∼50-nucleotide eIF4E sensitivity element (4ESE) in the 3' UTR and a 7-methylguanosine cap on the 5' end. While eIF4E associates with the cap, an unknown factor recognizes the 4ESE element. We previously identified cofactors that functionally interacted with eIF4E in mammalian cell nuclei including the leucine-rich pentatricopeptide repeat protein LRPPRC and the export receptor CRM1/XPO1. LRPPRC simultaneously interacts with both eIF4E bound to the 5' mRNA cap and the 4ESE element in the 3' UTR. In this way, LRPPRC serves as a specificity factor to recruit 4ESE-containing RNAs within the nucleus. Further, we show that CRM1 directly binds LRPPRC likely acting as the export receptor for the LRPPRC-eIF4E-4ESE RNA complex. We also found that Importin 8, the nuclear importer for cap-free eIF4E, imports RNA-free LRPPRC, potentially providing both coordinated nuclear recycling of the export machinery and an important surveillance mechanism to prevent futile export cycles. Our studies provide the first biochemical framework for the eIF4E-dependent mRNA export pathway."	"Gene promoter-associated CpG island hypermethylation in squamous cell carcinoma of the tongue. The present study was undertaken to explore and validate novel hypermethylated DNA regions in squamous cell carcinoma of the tongue (SCCT). Genome-wide methylation changes were identified by differential methylation hybridization (DMH) microarray and validated by bisulfite genome sequencing (BGS). The results were compared against datasets from The Cancer Genome Atlas head and neck squamous cell carcinoma (TCGA-HNSCC), Gene Expression Omnibus (GSE26549), and ArrayExpress (E-MTAB-1328). DMH identified 116 hypomethylated and 241 hypermethylated regions. Of the latter, 24 were localized to promoter or 5'-UTR regions. By BGS, promoter sequences of DAPK1, LRPPRC, RAB6C, and ZNF471 were significantly hypermethylated in tumors when compared with matched normal tissues (P &lt; 0.0001). A TCGA-HNSCC dataset (516 cases of cancer and 50 normal tissue samples) further confirmed hypermethylation of DAPK1, RAB6C, and ZNF471. Sensitivity and specificity of methylation markers for a diagnosis of cancer were in the range of 70-100% in our study and from TCGA-HNSCC datasets, with an area under curve (AUC) of 0.83 and above. Kaplan-Meier survival analysis of TCGA-HNSCC expression data revealed that patients with low expressions of DAPK1, RAB6C, and ZNF471 showed poorer survival than patients with high expression (P = 0.02). Human papillomavirus (HPV) was found in 55% of cases, HPV16 being the predominant genotype. DAPK1 immunohistochemical staining was lower in SCCT than in normal buccal epithelial cells. This is the first study to report hypermethylation of LRPPRC, RAB6C, and ZNF471 in SCCT and its diagnostic and prognostic potentials in a specific head and neck squamous cell carcinoma."	"Genome-wide association study for conformation traits in three Danish pig breeds. Selection for sound conformation has been widely used as a primary approach to reduce lameness and leg weakness in pigs. Identification of genomic regions that affect conformation traits would help to improve selection accuracy for these lowly to moderately heritable traits. Our objective was to identify genetic factors that underlie leg and back conformation traits in three Danish pig breeds by performing a genome-wide association study followed by meta-analyses. Data on four conformation traits (front leg, back, hind leg and overall conformation) for three Danish pig breeds (23,898 Landrace, 24,130 Yorkshire and 16,524 Duroc pigs) were used for association analyses. Estimated effects of single nucleotide polymorphisms (SNPs) from single-trait association analyses were combined in two meta-analyses: (1) a within-breed meta-analysis for multiple traits to examine if there are pleiotropic genetic variants within a breed; and (2) an across-breed meta-analysis for a single trait to examine if the same quantitative trait loci (QTL) segregate across breeds. SNP annotation was implemented through Sus scrofa Build 10.2 on Ensembl to search for candidate genes. Among the 14, 12 and 13 QTL that were detected in the single-trait association analyses for the three breeds, the most significant SNPs explained 2, 2.3 and 11.4% of genetic variance for back quality in Landrace, overall conformation in Yorkshire and back quality in Duroc, respectively. Several candidate genes for these QTL were also identified, i.e. LRPPRC, WRAP73, VRTN and PPARD likely control conformation traits through the regulation of bone and muscle development, and IGF2BP2, GH1, CCND2 and MSH2 can have an influence through growth-related processes. Meta-analyses not only confirmed many significant SNPs from single-trait analyses with higher significance levels, but also detected several additional associated SNPs and suggested QTL with possible pleiotropic effects. Our results imply that conformation traits are complex and may be partly controlled by genes that are involved in bone and skeleton development, muscle and fat metabolism, and growth processes. A reliable list of QTL and candidate genes was provided that can be used in fine-mapping and marker assisted selection to improve conformation traits in pigs."	"Mitochondrial nucleic acid binding proteins associated with diseases. Mammalian mitochondrial DNA (mtDNA) exists in structures called nucleoids, which correspond to the configuration of nuclear DNA. Mitochondrial transcription factor A (TFAM), first cloned as an mtDNA transcription factor, is critical for packaging and maintaining mtDNA. To investigate functional aspects of TFAM, we identified many RNA-binding proteins as candidate TFAM interactors, including ERAL1 and p32. In this review, we first describe the functions of TFAM, replication proteins such as polymerase gamma and Twinkle, and mitochondrial RNA binding proteins. We describe the role of mitochondrial nucleic acid binding proteins within the mitochondrial matrix and two oxidative phosphorylation-related proteins within the mitochondrial intermembrane space. We then discuss how mitochondrial dysfunction is related to several diseases, including mitochondrial respiratory disease, Miller syndrome and cancer. We also describe p32 knockout mice, which are embryonic lethal and exhibit respiratory chain defects. Miller syndrome is a recessive disorder characterized by postaxial acrofacial dysostosis and caused by a mutation in DHODH. Finally, we explain that p32 and mitochondrial creatine kinase may be novel markers for the progression of prostate cancer."	"Proteomic profiling of lung adenocarcinoma indicates heightened DNA repair, antioxidant mechanisms and identifies LASP1 as a potential negative predictor of survival. Lung cancer is the leading cause of cancer mortality in the United States. Non-small cell lung cancer accounts for 85% of all lung cancers for which adenocarcinoma is the most common histological type. Management of lung cancer is hindered by high false-positive rates due to difficulty resolving between benign and malignant tumors. Better molecular analysis comparing malignant and non-malignant tissues will provide important evidence of the underlying biology contributing to tumorigenesis. We utilized a proteomics approach to analyze 38 malignant and non-malignant paired tissue samples obtained from current or former smokers with early stage (Stage IA/IB) lung adenocarcinoma. Statistical mixed effects modeling and orthogonal partial least squares discriminant analysis were used to identify key cancer-associated perturbations in the adenocarcinoma proteome. Identified proteins were subsequently assessed against clinicopathological variables. Top cancer-associated protein alterations were characterized by: (1) elevations in APEX1, HYOU1 and PDIA4, indicative of increased DNA repair machinery and heightened anti-oxidant defense mechanisms; (2) increased LRPPRC, STOML2, COPG1 and EPRS, suggesting altered tumor metabolism and inflammation; (3) reductions in SPTB, SPTA1 and ANK1 implying dysregulation of membrane integrity; and (4) decreased SLCA41 suggesting altered pH regulation. Increased protein levels of HYOU1, EPRS and LASP1 in NSCLC adenocarcinoma was independently validated by tissue microarray immunohistochemistry. Immunohistochemistry for HYOU1 and EPRS indicated AUCs of 0.952 and 0.841, respectively, for classifying tissue as malignant. Increased LASP1 correlated with poor overall survival (HR 3.66 per unit increase; CI 1.37-9.78; p = 0.01). These results reveal distinct proteomic changes associated with early stage lung adenocarcinoma that may be useful prognostic indicators and therapeutic targets."	"Parkinson's disease-related gene variants influence pre-mRNA splicing processes. We have analyzed the impact of Parkinson's disease (PD)-related genetic variants on splicing using dedicated minigene assays. Out of 14 putative splicing variants in 5 genes (PINK1, [PTEN induced kinase 1]; LRPPRC, [leucine-rich pentatricopeptide repeat containing protein]; TFAM, [mitochondrial transcription factor A]; PARK2, [parkin RBR E3 ubiquitin protein ligase]; and HSPA9, [heat shock protein family A (Hsp70) member 9]), 4 LRPPRC variants, (IVS32-3C&gt;T, IVS35+14C&gt;T, IVS35+15C&gt;T, and IVS9+30A&gt;G) influenced, pre-messenger RNA splicing by modulating the inclusion of the respective exons. In addition, 1-Methyl-4-phenylpyridinium ion-induced splicing changes of endogenous LRPPRC messenger RNA, reproduced the effect of the LRPPRC IVS35+14C&gt;T mutation. Using silencing and overexpression methods, we show that LRPPRC exon 33 splicing is negatively regulated by heterogeneous nuclear ribonucleoprotein A1 both in a minigene and endogenous context. Furthermore, exon 33 exclusion due to PD-associated mutation IVS32-3C&gt;T or heterogeneous nuclear ribonucleoprotein A1 overexpression and exon 35 exclusion due to IVS35+14C&gt;T can be rescued by co-expression of modified U1 small nuclear RNAs, providing a potentially useful therapeutic strategy. Our results indicate for the first time that LRPPRC intronic variants can affect normal splicing of this gene and may influence disease risk in PD and related disorders."	"Elevated levels of autophagy-related marker ULK1 and mitochondrion-associated autophagy inhibitor LRPPRC are associated with biochemical progression and overall survival after androgen deprivation therapy in patients with metastatic prostate cancer. To evaluate the expression levels and prognostic significance of autophagy-related markers, UNC-51-like kinase1 (ULK1), Beclin1, microtubule-associated protein light chain 3 (LC3), autophagy-related gene 5 (ATG5) and mitochondrion-associated autophagy inhibitor, LRPPRC, in patients with metastatic prostate cancer (PCa) after androgen deprivation therapy (ADT). Expressions of ULK1, Beclin1, LC3, ATG5 and LRPPRC were assessed by immunohistochemical examination in 198 patients with metastatic PCa who were receiving ADT (goserelin and bicalutamide). High expression levels of LRPPRC and ULK1were significantly associated with Gleason score, serum prostate-specific antigen (PSA) levels, PSA levels after ADT and number of metastatic sites. High expression of ULK1 in patients with concomitant high expression of LRPPRC was significantly associated with multiple metastases, shorter biochemical progression (BCP)-free survival and shorter overall survival (OS). ULK1 expression, LRPPRC expression, Gleason score, PSA levels after ADT and number of metastatic sites were independently associated with shorter BCP-free survival and OS on multivariate analysis. Furthermore, two-year BCP rate of patients with ≥3 risk factors was found to be significantly higher as compared with that of patients with ≤1 and 2 risk factors. Three-year OS rate in patients with ≥3 risk factors was significantly lower than that of those with ≤1 and 2 risk factors. High expression of ULK1 concomitant with high expression of LRPPRC may serve as useful markers for shorter BCP-free survival and OS in patients with metastatic PCa after ADT."	"The effect of acute and chronic sprint-interval training on LRP130, SIRT3, and PGC-1α expression in human skeletal muscle. This study examined changes in LRP130 gene and protein expression in response to an acute bout of sprint-interval training (SIT) and 6 weeks of SIT in human skeletal muscle. In addition, we investigated the relationships between changes in LRP130, SIRT3, and PGC-1α gene or protein expression. Fourteen recreationally active men (age: 22.0 ± 2.4 years) performed a single bout of SIT (eight, 20-sec intervals at ~170% of VO2peak work rate, separated by 10 sec of rest). Muscle biopsies were obtained at rest (PRE) and 3 h post-exercise. The same participants then underwent a 6 week SIT program with biopsies after 2 (MID) and 6 (POST) weeks of training. In response to an acute bout of SIT, PGC-1α mRNA expression increased (284%, P &lt; 0.001); however, LRP130 and SIRT3 remained unchanged. VO2peak and fiber-specific SDH activity increased in response to training (P &lt; 0.01). LRP130, SIRT3, and PGC-1α protein expression were also unaltered following 2 and 6 weeks of SIT There were no significant correlations between LRP130, SIRT3, or PGC-1α mRNA expression in response to acute SIT However, changes in protein expression of LRP130, SIRT3, and PGC-1α were positively correlated at several time points with large effect sizes, which suggest that the regulation of these proteins may be coordinated in human skeletal muscle. Future studies should investigate other exercise protocols known to increase PGC-1α and SIRT3 protein, like longer duration steady-state exercise, to identify if LRP130 expression can be altered in response to exercise."	"Increased Hepatic Fatty Acids Uptake and Oxidation by LRPPRC-Driven Oxidative Phosphorylation Reduces Blood Lipid Levels. Hyperlipidemia is one of the major risk factors of atherosclerosis and other cardiovascular diseases. This study aimed to investigate the impact of leucine rich pentatricopeptide repeat containing protein (LRPPRC)-driven hepatic oxidative phoshorylation on blood lipid levels. The hepatic LRPPRC level was modulated by liver-specific transgenic or adeno-associated virus 8 carried shRNA targeting Lrpprc (aav-shLrpprc). Mice were fed with a high fat diet to induce obesity. Gene expression was analyzed by quantitative real-time PCR and / or western blot. The hepatic ATP level, hepatic and serum lipids contents, and mitochondria oxidative phosphorylation (OxPhos) complex activities were measured using specific assay kits. The uptake and oxidation of fatty acid by hepatocytes were assessed using (14)C-palmitate. LRPPRC regulated the expression of genes encoded by mitochondrial genome but not those by nuclear genome involved in mitochondria biogenesis, OxPhos, and lipid metabolism. Increased OxPhos in liver mediated by LRPPRC resulted in the increase of hepatic ATP level. Lrpprc promoted palmitate uptake and oxidation by hypatocytes. The hepatic and serum triglyceride and total cholesterol levels were inversely associated with the hepatic LRPPRC level. These data demonstrated that LRPPRC-driven hepatic OxPhos could promote fatty acids uptake and oxidation by hepatocytes and reduce both hepatic and circulating triglyceride and cholesterol levels. "	"Translation efficiency of mRNAs is increased by antisense oligonucleotides targeting upstream open reading frames. Increasing the levels of therapeutic proteins in vivo remains challenging. Antisense oligonucleotides (ASOs) are often used to downregulate gene expression or to modify RNA splicing, but antisense technology has not previously been used to directly increase the production of selected proteins. Here we used a class of modified ASOs that bind to mRNA sequences in upstream open reading frames (uORFs) to specifically increase the amounts of protein translated from a downstream primary ORF (pORF). Using ASO treatment, we increased the amount of proteins expressed from four genes by 30-150% in a dose-dependent manner in both human and mouse cells. Notably, systemic treatment of mice with ASO resulted in an ∼80% protein increase of LRPPRC. The ASO-mediated increase in protein expression was sequence-specific, occurred at the level of translation and was dependent on helicase activity. We also found that the type of RNA modification and the position of modified nucleotides in ASOs affected translation of a pORF. ASOs are a useful class of therapeutic agents with broad utility."	"SLIRP stabilizes LRPPRC via an RRM-PPR protein interface. LRPPRC is a protein that has attracted interest both for its role in post-transcriptional regulation of mitochondrial gene expression and more recently because numerous mutated variants have been characterized as causing severe infantile mitochondrial neurodegeneration. LRPPRC belongs to the pentatricopeptide repeat (PPR) protein family, originally defined by their RNA binding capacity, and forms a complex with SLIRP that harbours an RNA recognition motif (RRM) domain. We show here that LRPPRC displays a broad and strong RNA binding capacity in vitro in contrast to SLIRP that associates only weakly with RNA. The LRPPRC-SLIRP complex comprises a hetero-dimer via interactions by polar amino acids in the single RRM domain of SLIRP and three neighbouring PPR motifs in the second quarter of LRPPRC, which critically contribute to the LRPPRC-SLIRP binding interface to enhance its stability. Unexpectedly, specific amino acids at this interface are located within the PPRs of LRPPRC at positions predicted to interact with RNA and within the RNP1 motif of SLIRP's RRM domain. Our findings thus unexpectedly establish that despite the prediction that these residues in LRPPRC and SLIRP should bind RNA, they are instead used to facilitate protein-protein interactions, enabling the formation of a stable complex between these two proteins."	"Re: Autophagy Defects Suggested by Low Levels of Autophagy Activator MAP1S and High Levels of Autophagy Inhibitor LRPPRC Predict Poor Prognosis of Prostate Cancer Patients. NA"	"Mitochondrial Proteomics Approach Reveals Voltage-Dependent Anion Channel 1 (VDAC1) as a Potential Biomarker of Gastric Cancer. Gastric cancer (GC) remains the second leading cause of cancer-related deaths in the world. Successful early cancer detection is hampered by lack of highly sensitive and specific biomarkers. Mitochondrial dysfunction contributes to an aggressive carcinogenic phenotype of many cancers. We hypothesized that changes in the mitochondrial proteome are required to support development of GC. TMT method followed by mass spectrometry analysis was utilized to quantify alterations in protein abundance in mitochondria enriched between noncancer and gastric cancer tissues. Of a total data set that included 738 identified proteins, about 40.1% were found to be mitochondrial and associated proteins. Among them, 234 proteins were at least 1.5-fold up- or down-regulated in the gastric cancer compared with the adherent normal tissues. A number of markers (e.g. HSP70, HSP60, HSP90, leucine-rich pentatricopeptide repeat containing (LRPPRC), SOD2 and cathepsin B) were previously reported as biomarkers of GC. Additionally, several potential biomarkers participated in mitochondrial oxidative phosphorylation and active fatty acid oxidation were firstly identified differentially expressed in GC samples. Our findings also suggest that VDAC1 may be a novel biomarker for GC. The results show that subcellular proteomics of tumor tissue is feasible and a promising avenue for exploring oncogenesis."	"A Metabolic Signature of Mitochondrial Dysfunction Revealed through a Monogenic Form of Leigh Syndrome A decline in mitochondrial respiration represents the root cause of a large number of inborn errors of metabolism. It is also associated with common age-associated diseases and the aging process. To gain insight into the systemic, biochemical consequences of respiratory chain dysfunction, we performed a case-control, prospective metabolic profiling study in a genetically homogenous cohort of patients with Leigh syndrome French Canadian variant, a mitochondrial respiratory chain disease due to loss-of-function mutations in LRPPRC. We discovered 45 plasma and urinary analytes discriminating patients from controls, including classic markers of mitochondrial metabolic dysfunction (lactate and acylcarnitines), as well as unexpected markers of cardiometabolic risk (insulin and adiponectin), amino acid catabolism linked to NADH status (α-hydroxybutyrate), and NAD(+) biosynthesis (kynurenine and 3-hydroxyanthranilic acid). Our study identifies systemic, metabolic pathway derangements that can lie downstream of primary mitochondrial lesions, with implications for understanding how the organelle contributes to rare and common diseases."	"LRPPRC mutations cause early-onset multisystem mitochondrial disease outside of the French-Canadian population. Mitochondrial Complex IV [cytochrome c oxidase (COX)] deficiency is one of the most common respiratory chain defects in humans. The clinical phenotypes associated with COX deficiency include liver disease, cardiomyopathy and Leigh syndrome, a neurodegenerative disorder characterized by bilateral high signal lesions in the brainstem and basal ganglia. COX deficiency can result from mutations affecting many different mitochondrial proteins. The French-Canadian variant of COX-deficient Leigh syndrome is unique to the Saguenay-Lac-Saint-Jean region of Québec and is caused by a founder mutation in the LRPPRC gene. This encodes the leucine-rich pentatricopeptide repeat domain protein (LRPPRC), which is involved in post-transcriptional regulation of mitochondrial gene expression. Here, we present the clinical and molecular characterization of novel, recessive LRPPRC gene mutations, identified using whole exome and candidate gene sequencing. The 10 patients come from seven unrelated families of UK-Caucasian, UK-Pakistani, UK-Indian, Turkish and Iraqi origin. They resemble the French-Canadian Leigh syndrome patients in having intermittent severe lactic acidosis and early-onset neurodevelopmental problems with episodes of deterioration. In addition, many of our patients have had neonatal cardiomyopathy or congenital malformations, most commonly affecting the heart and the brain. All patients who were tested had isolated COX deficiency in skeletal muscle. Functional characterization of patients' fibroblasts and skeletal muscle homogenates showed decreased levels of mutant LRPPRC protein and impaired Complex IV enzyme activity, associated with abnormal COX assembly and reduced steady-state levels of numerous oxidative phosphorylation subunits. We also identified a Complex I assembly defect in skeletal muscle, indicating different roles for LRPPRC in post-transcriptional regulation of mitochondrial mRNAs between tissues. Patient fibroblasts showed decreased steady-state levels of mitochondrial mRNAs, although the length of poly(A) tails of mitochondrial transcripts were unaffected. Our study identifies LRPPRC as an important disease-causing gene in an early-onset, multisystem and neurological mitochondrial disease, which should be considered as a cause of COX deficiency even in patients originating outside of the French-Canadian population."	"The loss of LRPPRC function induces the mitochondrial unfolded protein response. The inactivation of the LRPPRC gene, which has previously been associated with the neurodegenerative French Canadian Leigh Syndrome, results in a decrease in the production of mitochondria-encoded subunits of complex IV, thereby causing a reduction in complex IV activity. Previously we have shown that reducing complex IV activity triggers a compensatory and conserved mitochondrial hyperfusion response. We now demonstrate that LRPPRC knock-down in mammalian cells leads to an imbalance between mitochondria-encoded and nuclear-encoded subunits of complex IV and that this imbalance triggers the mitochondrial unfolded protein response (UPR(mt)). The inactivation of the LRPPRC-like gene mma-1 in C. elegans also induces UPR(mt), which demonstrates that this response is conserved. Furthermore, we provide evidence that mitochondrial hyperfusion and UPR(mt) are coordinated but mediated by genetically distinct pathways. We propose that in the context of LRPPRC mma-1 knock-down, mitochondrial hyperfusion helps to transiently maintain mitochondrial ATP production while UPR(mt) participates in the restoration of mitochondrial proteostasis. Mitochondrial proteostasis is not only critical in pathophysiology but also during aging, as proteotoxic stress has been shown to increase with age. Therefore, we speculate that the coordination of these two mitochondrial stress responses plays a more global role in mitochondrial proteostasis. "	"SLIRP Regulates the Rate of Mitochondrial Protein Synthesis and Protects LRPPRC from Degradation. We have studied the in vivo role of SLIRP in regulation of mitochondrial DNA (mtDNA) gene expression and show here that it stabilizes its interacting partner protein LRPPRC by protecting it from degradation. Although SLIRP is completely dependent on LRPPRC for its stability, reduced levels of LRPPRC persist in the absence of SLIRP in vivo. Surprisingly, Slirp knockout mice are apparently healthy and only display a minor weight loss, despite a 50-70% reduction in the steady-state levels of mtDNA-encoded mRNAs. In contrast to LRPPRC, SLIRP is dispensable for polyadenylation of mtDNA-encoded mRNAs. Instead, deep RNA sequencing (RNAseq) of mitochondrial ribosomal fractions and additional molecular analyses show that SLIRP is required for proper association of mRNAs to the mitochondrial ribosome and efficient translation. Our findings thus establish distinct functions for SLIRP and LRPPRC within the LRPPRC-SLIRP complex, with a novel role for SLIRP in mitochondrial translation. Very surprisingly, our results also demonstrate that mammalian mitochondria have a great excess of transcripts under basal physiological conditions in vivo. "	"Impaired Mitochondrial Energy Production Causes Light-Induced Photoreceptor Degeneration Independent of Oxidative Stress. Two insults often underlie a variety of eye diseases including glaucoma, optic atrophy, and retinal degeneration--defects in mitochondrial function and aberrant Rhodopsin trafficking. Although mitochondrial defects are often associated with oxidative stress, they have not been linked to Rhodopsin trafficking. In an unbiased forward genetic screen designed to isolate mutations that cause photoreceptor degeneration, we identified mutations in a nuclear-encoded mitochondrial gene, ppr, a homolog of human LRPPRC. We found that ppr is required for protection against light-induced degeneration. Its function is essential to maintain membrane depolarization of the photoreceptors upon repetitive light exposure, and an impaired phototransduction cascade in ppr mutants results in excessive Rhodopsin1 endocytosis. Moreover, loss of ppr results in a reduction in mitochondrial RNAs, reduced electron transport chain activity, and reduced ATP levels. Oxidative stress, however, is not induced. We propose that the reduced ATP level in ppr mutants underlies the phototransduction defect, leading to increased Rhodopsin1 endocytosis during light exposure, causing photoreceptor degeneration independent of oxidative stress. This hypothesis is bolstered by characterization of two other genes isolated in the screen, pyruvate dehydrogenase and citrate synthase. Their loss also causes a light-induced degeneration, excessive Rhodopsin1 endocytosis and reduced ATP without concurrent oxidative stress, unlike many other mutations in mitochondrial genes that are associated with elevated oxidative stress and light-independent photoreceptor demise."	"Quantitative interaction proteomics of neurodegenerative disease proteins. Several proteins have been linked to neurodegenerative disorders (NDDs), but their molecular function is not completely understood. Here, we used quantitative interaction proteomics to identify binding partners of Amyloid beta precursor protein (APP) and Presenilin-1 (PSEN1) for Alzheimer's disease (AD), Huntingtin (HTT) for Huntington's disease, Parkin (PARK2) for Parkinson's disease, and Ataxin-1 (ATXN1) for spinocerebellar ataxia type 1. Our network reveals common signatures of protein degradation and misfolding and recapitulates known biology. Toxicity modifier screens and comparison to genome-wide association studies show that interaction partners are significantly linked to disease phenotypes in vivo. Direct comparison of wild-type proteins and disease-associated variants identified binders involved in pathogenesis, highlighting the value of differential interactome mapping. Finally, we show that the mitochondrial protein LRPPRC interacts preferentially with an early-onset AD variant of APP. This interaction appears to induce mitochondrial dysfunction, which is an early phenotype of AD."	"OXPHOS-Mediated Induction of NAD+ Promotes Complete Oxidation of Fatty Acids and Interdicts Non-Alcoholic Fatty Liver Disease. OXPHOS is believed to play an important role in non-alcoholic fatty liver disease (NAFLD), however, precise mechanisms whereby OXPHOS influences lipid homeostasis are incompletely understood. We previously reported that ectopic expression of LRPPRC, a protein that increases cristae density and OXPHOS, promoted fatty acid oxidation in cultured primary hepatocytes. To determine the biological significance of that observation and define underlying mechanisms, we have ectopically expressed LRPPRC in mouse liver in the setting of NAFLD. Interestingly, ectopic expression of LRPPRC in mouse liver completely interdicted NAFLD, including inflammation. Consistent with mitigation of NAFLD, two markers of hepatic insulin resistance--ROS and PKCε activity--were both modestly reduced. As reported by others, improvement of NAFLD was associated with improved whole-body insulin sensitivity. Regarding hepatic lipid homeostasis, the ratio of NAD+ to NADH was dramatically increased in mouse liver replete with LRPPRC. Pharmacological activators and inhibitors of the cellular respiration respectively increased and decreased the [NAD+]/[NADH] ratio, indicating respiration-mediated control of the [NAD+]/[NADH] ratio. Supporting a prominent role for NAD+, increasing the concentration of NAD+ stimulated complete oxidation of fatty acids. Importantly, NAD+ rescued impaired fatty acid oxidation in hepatocytes deficient for either OXPHOS or SIRT3. These data are consistent with a model whereby augmented hepatic OXPHOS increases NAD+, which in turn promotes complete oxidation of fatty acids and protects against NAFLD."	"Mitochondrial vulnerability and increased susceptibility to nutrient-induced cytotoxicity in fibroblasts from leigh syndrome French canadian patients. Mutations in LRPPRC are responsible for the French Canadian variant of Leigh Syndrome (LSFC), a severe disorder characterized biochemically by a tissue-specific deficiency of cytochrome c oxidase (COX) and clinically by the occurrence of severe and deadly acidotic crises. Factors that precipitate these crises remain unclear. To better understand the physiopathology and identify potential treatments, we performed a comprehensive analysis of mitochondrial function in LSFC and control fibroblasts. Furthermore, we have used this cell-based model to screen for conditions that promote premature cell death in LSFC cells and test the protective effect of ten interventions targeting well-defined aspects of mitochondrial function. We show that, despite maintaining normal ATP levels, LSFC fibroblasts present several mitochondrial functional abnormalities under normal baseline conditions, which likely impair their capacity to respond to stress. This includes mitochondrial network fragmentation, impaired oxidative phosphorylation capacity, lower membrane potential, increased sensitivity to Ca2+-induced permeability transition, but no changes in reactive oxygen species production. We also show that LSFC fibroblasts display enhanced susceptibility to cell death when exposed to palmitate, an effect that is potentiated by high lactate, while high glucose or acidosis alone or in combination were neutral. Furthermore, we demonstrate that compounds that are known to promote flux through the electron transport chain independent of phosphorylation (methylene blue, dinitrophenol), or modulate fatty acid (L-carnitine) or Krebs cycle metabolism (propionate) are protective, while antioxidants (idebenone, N-acetyl cysteine, resveratrol) exacerbate palmitate plus lactate-induced cell death. Collectively, beyond highlighting multiple alterations in mitochondrial function and increased susceptibility to nutrient-induced cytotoxicity in LSFC fibroblasts, these results raise questions about the nature of the diets, particularly excess fat intake, as well as on the use of antioxidants in patients with LSFC and, possibly, other COX defects. "	"The viral restriction factor tetherin prevents leucine-rich pentatricopeptide repeat-containing protein (LRPPRC) from association with beclin 1 and B-cell CLL/lymphoma 2 (Bcl-2) and enhances autophagy and mitophagy. Tetherin has been characterized as a key factor that restricts viral particles such as HIV and hepatitis C virus on plasma membranes, acts as a ligand of the immunoglobulin-like transcript 7 (ILT7) receptor in tumor cells, and suppresses antiviral innate immune responses mediated by human plasmacytoid dendritic cells. However, the normal cellular function of Tetherin without viral infection is unknown. Here we show that Tetherin not only serves as a substrate of autophagy but itself regulates the initiation of autophagy. Tetherin interacts with the autophagy/mitophagy suppressor LRPPRC and prevents LRPPRC from forming a ternary complex with Beclin 1 and Bcl-2 so that Beclin 1 is released to bind with PI3KCIII (class III PI3K) to activate the initiation of autophagy. Suppression of Tetherin leads to impairment of autophagy, whereas overexpression of Tetherin causes activation of autophagy. Under mitophagic stress, Tetherin is concentrated on mitochondria engulfed in autophagosomes. Tetherin plays a general role in the degradation of autophagosomes containing not only the symbiotic mitochondria but also, possibly, the infected virus. Therefore, Tetherin may enhance autophagy and mitophagy to suppress tumorigenesis, enhance innate immune responses, or prevent T cell apoptosis or pyroptosis. "	"The respiratory chain supercomplex organization is independent of COX7a2l isoforms. The organization of individual respiratory chain complexes into supercomplexes or respirasomes has attracted great interest because of the implications for cellular energy conversion. Recently, it was reported that commonly used mouse strains harbor a short COX7a2l (SCAFI) gene isoform that supposedly precludes the formation of complex IV-containing supercomplexes. This claim potentially has serious implications for numerous mouse studies addressing important topics in metabolism, including adaptation to space flights. Using several complementary experimental approaches, we show that mice with the short COX7a2l isoform have normal biogenesis and steady-state levels of complex IV-containing supercomplexes and consequently have normal respiratory chain function. Furthermore, we use a mouse knockout of Lrpprc and show that loss of complex IV compromises respirasome formation. We conclude that the presence of the short COX7a2l isoform in the commonly used C57BL/6 mouse strains does not prevent their use in metabolism research."	"Drosophila melanogaster LRPPRC2 is involved in coordination of mitochondrial translation. Members of the pentatricopeptide repeat domain (PPR) protein family bind RNA and are important for post-transcriptional control of organelle gene expression in unicellular eukaryotes, metazoans and plants. They also have a role in human pathology, as mutations in the leucine-rich PPR-containing (LRPPRC) gene cause severe neurodegeneration. We have previously shown that the mammalian LRPPRC protein and its Drosophila melanogaster homolog DmLRPPRC1 (also known as bicoid stability factor) are necessary for mitochondrial translation by controlling stability and polyadenylation of mRNAs. We here report characterization of DmLRPPRC2, a second fruit fly homolog of LRPPRC, and show that it has a predominant mitochondrial localization and interacts with a stem-loop interacting RNA binding protein (DmSLIRP2). Ubiquitous downregulation of DmLrpprc2 expression causes respiratory chain dysfunction, developmental delay and shortened lifespan. Unexpectedly, decreased DmLRPPRC2 expression does not globally affect steady-state levels or polyadenylation of mitochondrial transcripts. However, some mitochondrial transcripts abnormally associate with the mitochondrial ribosomes and some products are dramatically overproduced and other ones decreased, which, in turn, results in severe deficiency of respiratory chain complexes. The function of DmLRPPRC2 thus seems to be to ensure that mitochondrial transcripts are presented to the mitochondrial ribosomes in an orderly fashion to avoid poorly coordinated translation. "	"Downregulation of LRPPRC induces apoptosis in prostate cancer cells through the mitochondria-mediated pathway. Leucine-rich pentatricopeptide repeat motif-containing protein (LRPPRC) is a multifunctional protein involved in the mitochondrial gene expression and function, cell cycle progression, and tumorigenesis. However, the functional role of LRPPRC in prostate cancer (PCa) has not yet been elucidated. In this study, two PCa cell lines were examined to determine the effects of LRPPRC on cell proliferation, invasion, and apoptosis in vitro. Our results showed that the expression levels of LRPPRC were significantly decreased in the two PCa cell lines after transfection with small interfering RNA (siRNA)-LRPPRC. Knockdown of LRPPRC by siRNA significantly inhibited the invasion and promoted the apoptosis of PCa cells. In addition, downregulation of LRPPRC expression resulted in the reduced expression of Bcl-2, upregulation of Bax, and cleaved caspase-9 and caspase-3. Taken together, these results show that the downregulation of LRPRPC expression induces apoptosis through the mitochondria-mediated pathway in PCa cells. These experimental data seem to suggest that LRPPRC plays a critical role in the development of PCa, and its inhibition could present a potential molecular approach for the treatment of PCa."	"Tissue-specific responses to the LRPPRC founder mutation in French Canadian Leigh Syndrome. French Canadian Leigh Syndrome (LSFC) is an early-onset, progressive neurodegenerative disorder with a distinct pattern of tissue involvement. Most cases are caused by a founder missense mutation in LRPPRC. LRPPRC forms a ribonucleoprotein complex with SLIRP, another RNA-binding protein, and this stabilizes polyadenylated mitochondrial mRNAs. LSFC fibroblasts have reduced levels of LRPPRC and a specific complex IV assembly defect; however, further depletion of mutant LRPPRC results in a complete failure to assemble a functional oxidative phosphorylation system, suggesting that LRPPRC levels determine the nature of the biochemical phenotype. We tested this hypothesis in cultured muscle cells and tissues from LSFC patients. LRPPRC levels were reduced in LSFC muscle cells, resulting in combined complex I and IV deficiencies. A similar combined deficiency was observed in skeletal muscle. Complex IV was only moderately reduced in LSFC heart, but was almost undetectable in liver. Both of these tissues showed elevated levels of complexes I and III. Despite the marked biochemical differences, the steady-state levels of LRPPRC and mitochondrial mRNAs were extremely low, LRPPRC was largely detergent-insoluble, and SLIRP was undetectable in all LSFC tissues. The level of the LRPPRC/SLIRP complex appeared much reduced in control tissues by the first dimension blue-native polyacrylamide gel electrophoresis (BN-PAGE) analysis compared with fibroblasts, and even by second dimension analysis it was virtually undetectable in control heart. These results point to tissue-specific pathways for the post-transcriptional handling of mitochondrial mRNAs and suggest that the biochemical defects in LSFC reflect the differential ability of tissues to adapt to the mutation. "	"ABCB1 regulation through LRPPRC is influenced by the methylation status of the GC -100 box in its promoter. One of the potential mechanisms of imatinib mesylate (IM) resistance in chronic myeloid leukemia (CML) is increased level of P-glycoprotein (Pgp). Pgp is an efflux pump capable of activating the multidrug resistance (MDR) phenotype. The gene encoding Pgp (ABCB1) has several binding sites in its promoter region, along with CpG islands and GC boxes, involved in its epigenetic control. In previous work, we performed a proteomic study to identify proteins involved in IM cross-resistance in acute leukemia. Among these proteins, we identified LRPPRC as a potential regulator of ABCB1 transcription via an invMED1 binding site in ABCB1. Interestingly, this invMED1 binding site overlaps with the GC -100 box. In this work, we investigated the potential role of LRPPRC in the regulation of ABCB1 transcriptional activity in CML resistance. In addition, we evaluated the potential connection between this regulation and the methylation status of the ABCB1 promoter in its GC -100 box. Our results show that LRPPRC binds prominently to the ABCB1 promoter in Lucena cells, an IM-resistant cell line. Luciferase assays showed that ABCB1 transcription is positively regulated by LRPPRC upon its knockdown. Pyrosequencing analysis showed that the ABCB1 promoter is differentially methylated at its GC -100 box in K562 cells compared with Lucena cells, and in CML patients with different response to IM. Chromatin immunoprecipitation and Pgp expression after DNA demethylation treatment showed that LRPPRC binding is affected by the methylation status of ABCB1 GC -100 box. Taken together, our findings indicate that LRPPRC is a transcription factor related to ABCB1 expression and highlight the importance of epigenetic regulation in CML resistance. "	"Autophagy defects suggested by low levels of autophagy activator MAP1S and high levels of autophagy inhibitor LRPPRC predict poor prognosis of prostate cancer patients. MAP1S (originally named C19ORF5) is a widely distributed homolog of neuronal-specific MAP1A and MAP1B, and bridges autophagic components with microtubules and mitochondria to affect autophagosomal biogenesis and degradation. Mitochondrion-associated protein LRPPRC functions as an inhibitor for autophagy initiation to protect mitochondria from autophagy degradation. MAP1S and LRPPRC interact with each other and may collaboratively regulate autophagy although the underlying mechanism is yet unknown. Previously, we have reported that LRPPRC levels serve as a prognosis marker of patients with prostate adenocarcinomas (PCA), and that patients with high LRPPRC levels survive a shorter period after surgery than those with low levels of LRPPRC. MAP1S levels are elevated in diethylnitrosamine-induced hepatocelular carcinomas in wildtype mice and the exposed MAP1S-deficient mice develop more malignant hepatocellular carcinomas. We performed immunochemical analysis to evaluate the co-relationship among the levels of MAP1S, LRPPRC, P62, and γ-H2AX. Samples were collected from wildtype and prostate-specific PTEN-deficient mice, 111 patients with PCA who had been followed up for 10 years and 38 patients with benign prostate hyperplasia enrolled in hospitals in Guangzhou, China. The levels of MAP1S were generally elevated so the MAP1S-mediated autophagy was activated in PCA developed in either PTEN-deficient mice or patients than their respective benign tumors. The MAP1S levels among patients with PCA vary dramatically, and patients with low MAP1S levels survive a shorter period than those with high MAP1S levels. Levels of MAP1S in collaboration with levels of LRPPRC can serve as markers for prognosis of prostate cancer patients."	"A human mitochondrial poly(A) polymerase mutation reveals the complexities of post-transcriptional mitochondrial gene expression. The p.N478D missense mutation in human mitochondrial poly(A) polymerase (mtPAP) has previously been implicated in a form of spastic ataxia with optic atrophy. In this study, we have investigated fibroblast cell lines established from family members. The homozygous mutation resulted in the loss of polyadenylation of all mitochondrial transcripts assessed; however, oligoadenylation was retained. Interestingly, this had differential effects on transcript stability that were dependent on the particular species of transcript. These changes were accompanied by a severe loss of oxidative phosphorylation complexes I and IV, and perturbation of de novo mitochondrial protein synthesis. Decreases in transcript polyadenylation and in respiratory chain complexes were effectively rescued by overexpression of wild-type mtPAP. Both mutated and wild-type mtPAP localized to the mitochondrial RNA-processing granules thereby eliminating mislocalization as a cause of defective polyadenylation. In vitro polyadenylation assays revealed severely compromised activity by the mutated protein, which generated only short oligo(A) extensions on RNA substrates, irrespective of RNA secondary structure. The addition of LRPPRC/SLIRP, a mitochondrial RNA-binding complex, enhanced activity of the wild-type mtPAP resulting in increased overall tail length. The LRPPRC/SLIRP effect although present was less marked with mutated mtPAP, independent of RNA secondary structure. We conclude that (i) the polymerase activity of mtPAP can be modulated by the presence of LRPPRC/SLIRP, (ii) N478D mtPAP mutation decreases polymerase activity and (iii) the alteration in poly(A) length is sufficient to cause dysregulation of post-transcriptional expression and the pathogenic lack of respiratory chain complexes. "	"Functional genomic analysis of human mitochondrial RNA processing. Both strands of human mtDNA are transcribed in continuous, multigenic units that are cleaved into the mature rRNAs, tRNAs, and mRNAs required for respiratory chain biogenesis. We sought to systematically identify nuclear-encoded proteins that contribute to processing of mtRNAs within the organelle. First, we devised and validated a multiplex MitoString assay that quantitates 27 mature and precursor mtDNA transcripts. Second, we applied MitoString profiling to evaluate the impact of silencing each of 107 mitochondrial-localized, predicted RNA-binding proteins. With the resulting data set, we rediscovered the roles of recently identified RNA-processing enzymes, detected unanticipated roles of known disease genes in RNA processing, and identified new regulatory factors. We demonstrate that one such factor, FASTKD4, modulates the half-lives of a subset of mt-mRNAs and associates with mtRNAs in vivo. MitoString profiling may be useful for diagnosing and deciphering the pathogenesis of mtDNA disorders. "	"Autophagy inhibitor LRPPRC suppresses mitophagy through interaction with mitophagy initiator Parkin. Autophagy plays an important role in tumorigenesis. Mitochondrion-associated protein LRPPRC interacts with MAP1S that interacts with LC3 and bridges autophagy components with microtubules and mitochondria to affect autophagy flux. Dysfunction of LRPPRC and MAP1S is associated with poor survival of ovarian cancer patients. Furthermore, elevated levels of LRPPRC predict shorter overall survival in patients with prostate adenocarcinomas or gastric cancer. To understand the role of LRPPRC in tumor development, previously we reported that LRPPRC forms a ternary complex with Beclin 1 and Bcl-2 to inhibit autophagy. Here we further show that LRPPRC maintains the stability of Parkin that mono-ubiquitinates Bcl-2 to increase Bcl-2 stability to inhibit autophagy. Under mitophagy stress, Parkin translocates to mitochondria to cause rupture of outer mitochondrial membrane and bind with exposed LRPPRC. Consequently, LRPPRC and Parkin help mitochondria being engulfed in autophagosomes to be degraded. In cells under long-term mitophagy stress, both LRPPRC and Parkin become depleted coincident with disappearance of mitochondria and final autophagy inactivation due to depletion of ATG5-ATG12 conjugates. LRPPRC functions as a checkpoint protein that prevents mitochondria from autophagy degradation and impact tumorigenesis. "	"The impact of mitochondrial DNA and nuclear genes related to mitochondrial functioning on the risk of Parkinson's disease. Mitochondrial dysfunction and oxidative stress are the major factors implicated in Parkinson's disease (PD) pathogenesis. The maintenance of healthy mitochondria is a very complex process coordinated bi-genomically. Here, we review association studies on mitochondrial haplogroups and subhaplogroups, discussing the underlying molecular mechanisms. We also focus on variation in the nuclear genes (NDUFV2, PGC-1alpha, HSPA9, LRPPRC, MTIF3, POLG1, and TFAM encoding NADH dehydrogenase (ubiquinone) flavoprotein 2, peroxisome proliferator-activated receptor gamma coactivator 1-alpha, mortalin, leucine-rich pentatricopeptide repeat containing protein, translation initiation factor 3, mitochondrial DNA polymerase gamma, and mitochondrial transcription factor A, respectively) primarily linked to regulation of mitochondrial functioning that recently have been associated with PD risk. Possible interactions between mitochondrial and nuclear genetic variants and related proteins are discussed. "	"Nutrient sensing by the mitochondrial transcription machinery dictates oxidative phosphorylation. Sirtuin 3 (SIRT3), an important regulator of energy metabolism and lipid oxidation, is induced in fasted liver mitochondria and implicated in metabolic syndrome. In fasted liver, SIRT3-mediated increases in substrate flux depend on oxidative phosphorylation (OXPHOS), but precisely how OXPHOS meets the challenge of increased substrate oxidation in fasted liver remains unclear. Here, we show that liver mitochondria in fasting mice adapt to the demand of increased substrate oxidation by increasing their OXPHOS efficiency. In response to cAMP signaling, SIRT3 deacetylated and activated leucine-rich protein 130 (LRP130; official symbol, LRPPRC), promoting a mitochondrial transcriptional program that enhanced hepatic OXPHOS. Using mass spectrometry, we identified SIRT3-regulated lysine residues in LRP130 that generated a lysine-to-arginine (KR) mutant of LRP130 that mimics deacetylated protein. Compared with wild-type LRP130 protein, expression of the KR mutant increased mitochondrial transcription and OXPHOS in vitro. Indeed, even when SIRT3 activity was abolished, activation of mitochondrial transcription and OXPHOS by the KR mutant remained robust, further highlighting the contribution of LRP130 deacetylation to increased OXPHOS in fasted liver. These data establish a link between nutrient sensing and mitochondrial transcription that regulates OXPHOS in fasted liver and may explain how fasted liver adapts to increased substrate oxidation. "	"Loss of LRPPRC causes ATP synthase deficiency. Defects of the oxidative phosphorylation system, in particular of cytochrome-c oxidase (COX, respiratory chain complex IV), are common causes of Leigh syndrome (LS), which is a rare neurodegenerative disorder with severe progressive neurological symptoms that usually present during infancy or early childhood. The COX-deficient form of LS is commonly caused by mutations in genes encoding COX assembly factors, e.g. SURF1, SCO1, SCO2 or COX10. However, other mutations affecting genes that encode proteins not directly involved in COX assembly can also cause LS. The leucine-rich pentatricopeptide repeat containing protein (LRPPRC) regulates mRNA stability, polyadenylation and coordinates mitochondrial translation. In humans, mutations in Lrpprc cause the French Canadian type of LS. Despite the finding that LRPPRC deficiency affects the stability of most mitochondrial mRNAs, its pathophysiological effect has mainly been attributed to COX deficiency. Surprisingly, we show here that the impaired mitochondrial respiration and reduced ATP production observed in Lrpprc conditional knockout mouse hearts is caused by an ATP synthase deficiency. Furthermore, the appearance of inactive subassembled ATP synthase complexes causes hyperpolarization and increases mitochondrial reactive oxygen species production. Our findings shed important new light on the bioenergetic consequences of the loss of LRPPRC in cardiac mitochondria. "	"Elevated levels of mitochondrion-associated autophagy inhibitor LRPPRC are associated with poor prognosis in patients with prostate cancer. Autophagy has recently been found to play important roles in tumorigenesis and leucine-rich pentatricopeptide repeat motif-containing protein (LRPPRC) has been identified as an inhibitor that suppresses autophagy and mitophagy and maintains mitochondrial activity. The authors hypothesized that LRPPRC levels can be used as a biomarker for the diagnosis and prognosis of prostate cancer. Immunochemistry analysis was performed to evaluate the levels of LRPPRC in 112 samples collected from patients with prostate adenocarcinoma (PCa) and 38 samples from patients with benign prostatic hyperplasia (BPH) who were enrolled in hospitals in Guangzhou City, China and were followed for 10 years. Significantly higher levels of LRPPRC were found in PCa samples compared with BPH samples. Greater than 75% of patients with PCa demonstrated high levels of LRPPRC whereas only 10% of patients with BPH were found to have similar levels of LRPPRC. The levels of LRPPRC were found to be positively correlated with tumor grade, metastasis, and serum prostate-specific antigen level, but were negatively correlated with hormone therapy sensitivity after 2 years of surgery and overall survival. The association between high levels of LRPPRC and late-stage PCa or hormone therapy insensitivity was confirmed in tissue samples collected from prostate-specific phosphatase and tensin homolog (PTEN)(-/-) mice or hormone-dependent and hormone-independent PCa cell lines. LRPPRC levels may be used as an independent biomarker for patients with PCa at a late stage with poor prognosis."	"The significance of LRPPRC overexpression in gastric cancer. LRPPRC is a multifunctional protein involved in mitochondrial gene expression and function, cell cycle progression, and tumorigenesis. We analyzed LRPPRC gene expression in 253 paired cases of gastric cancer and noncancerous regions and six gastric cancer cell lines to demonstrate the importance of LRPPRC expression for the prediction of prognosis of gastric cancer. Our results showed that LRPPRC expression in gastric cancer tissues is significantly higher than that in paired control tissue (P &lt; 0.001). Patients with higher LRPPRC expression showed a poorer overall survival rate than those with lower LRPPRC expression (P &lt; 0.001). Multivariate analysis demonstrated that lymph node metastasis (N), distant metastasis (M), TNM stage, and LRPPRC expression were independent prognostic factors for gastric cancer (P = 0.004, 0.002, 0.017, 0.004 respectively).Moreover, Western blotting showed that LRPPRC expression was increased in SGC7901, BGC823, MKN45, and XGC9811cells. The in vitro proliferation assay showed that LRPPRC expression is inversely associated with gastric cancer cells growth. Our results indicated that LRPPRC could be used as a predictive marker for patient prognosis of gastric cancer and may be a novel therapeutic target for gastric cancer in future. "	"Autophagy and apoptosis dysfunction in neurodegenerative disorders. Autophagy and apoptosis are basic physiologic processes contributing to the maintenance of cellular homeostasis. Autophagy encompasses pathways that target long-lived cytosolic proteins and damaged organelles. It involves a sequential set of events including double membrane formation, elongation, vesicle maturation and finally delivery of the targeted materials to the lysosome. Apoptotic cell death is best described through its morphology. It is characterized by cell rounding, membrane blebbing, cytoskeletal collapse, cytoplasmic condensation, and fragmentation, nuclear pyknosis, chromatin condensation/fragmentation, and formation of membrane-enveloped apoptotic bodies, that are rapidly phagocytosed by macrophages or neighboring cells. Neurodegenerative disorders are becoming increasingly prevalent, especially in the Western societies, with larger percentage of members living to an older age. They have to be seen not only as a health problem, but since they are care-intensive, they also carry a significant economic burden. Deregulation of autophagy plays a pivotal role in the etiology and/or progress of many of these diseases. Herein, we briefly review the latest findings that indicate the involvement of autophagy in neurodegenerative diseases. We provide a brief introduction to autophagy and apoptosis pathways focusing on the role of mitochondria and lysosomes. We then briefly highlight pathophysiology of common neurodegenerative disorders like Alzheimer's diseases, Parkinson's disease, Huntington's disease and Amyotrophic lateral sclerosis. Then, we describe functions of autophagy and apoptosis in brain homeostasis, especially in the context of the aforementioned disorders. Finally, we discuss different ways that autophagy and apoptosis modulation may be employed for therapeutic intervention during the maintenance of neurodegenerative disorders. "	"Polymerase I pathway inhibitor ameliorates experimental autoimmune encephalomyelitis. Applying high throughput gene expression microarrays we identified that the suppression of polymerase 1 (POL1) pathway is associated with benign course of multiple sclerosis (MS). This finding supports the rationale for direct targeting of the POL1 transcription machinery as an innovative strategy to suppress MS. To evaluate the effects of a specific polymerase I inhibitor (POL1-I) on experimental autoimmune encephalomyelitis (EAE), we immunized female C57BL/6J mice (8 weeks) with MOG35-55/CFA. A new POL1-I was administered at a daily dose of 12.5mg/kg body weight by oral gavage either from the day of immunization until disease onset (EAE score 1.0, immunization model), at disease onset (EAE score=1.0) for the following 14 days (treatment model), or by alternate daily dose of 25.0mg/kg body weight, by oral gavage from the day of immunization for the following 25 days (combined model). POL1-I remarkably suppressed EAE in the immunization model; while in the Vehicle group the onset of EAE occurred on day 10.0±0.4 with maximal clinical score of 3.2±0.2, in the POL1-I treated mice onset was significantly delayed and occurred on day 16.9±1.1 (p=0.001), and maximal disease score 2.0±0.1 was reduced (p=0.004). In the treatment model POL1-I treatment significantly reduced disease activity; maximal score was 2.0±0.5 while in the Vehicle group it reached a mean maximal score of 3.9±0.1, (p=0.0008). In the combined model, POL1-I treatment completely inhibited disease activity. The effect of POL1-I treatment was modulated through decreased expression of POL1 pathway key-related genes LRPPRC, pre-RNA, POLR1D and RRN3 together with activation of P53 dependent apoptosis of CD4+ splenocytes. Our findings demonstrate that POL1 pathway inhibition delayed and suppressed the development of EAE and ameliorated the disease in mice with persistent clinical signs."	"Analysis of 953 human proteins from a mitochondrial HEK293 fraction by complexome profiling. Complexome profiling is a novel technique which uses shotgun proteomics to establish protein migration profiles from fractionated blue native electrophoresis gels. Here we present a dataset of blue native electrophoresis migration profiles for 953 proteins by complexome profiling. By analysis of mitochondrial ribosomal complexes we demonstrate its potential to verify putative protein-protein interactions identified by affinity purification-mass spectrometry studies. Protein complexes were extracted in their native state from a HEK293 mitochondrial fraction and separated by blue native gel electrophoresis. Gel lanes were cut into gel slices of even size and analyzed by shotgun proteomics. Subsequently, the acquired protein migration profiles were analyzed for co-migration via hierarchical cluster analysis. This dataset holds great promise as a comprehensive resource for de novo identification of protein-protein interactions or to underpin and prioritize candidate protein interactions from other studies. To demonstrate the potential use of our dataset we focussed on the mitochondrial translation machinery. Our results show that mitoribosomal complexes can be analyzed by blue native gel electrophoresis, as at least four distinct complexes. Analysis of these complexes confirmed that 24 proteins that had previously been reported to co-purify with mitoribosomes indeed co-migrated with subunits of the mitochondrial ribosome. Co-migration of several proteins involved in biogenesis of inner mitochondrial membrane complexes together with mitoribosomal complexes suggested the possibility of co-translational assembly in human cells. Our data also highlighted a putative ribonucleotide complex that potentially contains MRPL10, MRPL12 and MRPL53 together with LRPPRC and SLIRP."	"Impaired complex IV activity in response to loss of LRPPRC function can be compensated by mitochondrial hyperfusion. Mitochondrial morphology changes in response to various stimuli but the significance of this is unclear. In a screen for mutants with abnormal mitochondrial morphology, we identified MMA-1, the Caenorhabditis elegans homolog of the French Canadian Leigh Syndrome protein LRPPRC (leucine-rich pentatricopeptide repeat containing). We demonstrate that reducing mma-1 or LRPPRC function causes mitochondrial hyperfusion. Reducing mma-1/LRPPRC function also decreases the activity of complex IV of the electron transport chain, however without affecting cellular ATP levels. Preventing mitochondrial hyperfusion in mma-1 animals causes larval arrest and embryonic lethality. Furthermore, prolonged LRPPRC knock-down in mammalian cells leads to mitochondrial fragmentation and decreased levels of ATP. These findings indicate that in a mma-1/LRPPRC-deficient background, hyperfusion allows mitochondria to maintain their functions despite a reduction in complex IV activity. Our data reveal an evolutionary conserved mechanism that is triggered by reduced complex IV function and that induces mitochondrial hyperfusion to transiently compensate for a drop in the activity of the electron transport chain. "	"SURF1 deficiency: a multi-centre natural history study. SURF1 deficiency, a monogenic mitochondrial disorder, is the most frequent cause of cytochrome c oxidase (COX) deficient Leigh syndrome (LS). We report the first natural history study of SURF1 deficiency. We conducted a multi-centre case notes review of 44 SURF1-deficient patients from ten different UK centres and two Australian centres. Survival data for LRPPRC-deficient LS and nuclear-encoded complex I-deficient LS patients were obtained from previous publications. The survival of SURF1-deficient patients was compared with these two groups using Kaplan-Meier survival analysis and logrank test. The majority of patients (32/44, 73%) presented in infancy (median 9.5 months). Frequent symptoms were poor weight gain (95%, median age 10 months), hypotonia (93%, median age 14 months), poor feeding/vomiting (89%, median age 10 months), developmental delay (88%, median age 14 months), developmental regression (71%, median age 19 months), movement disorder (52%, median age 24 months), oculomotor involvement (52%, median age 29 months) and central respiratory failure (78%, median age 31 months). Hypertrichosis (41%), optic atrophy (23%), encephalopathy (20%), seizures (14%) and cardiomyopathy (2%) were observed less frequently. SURF1-deficient patients have a homogeneous clinical and biochemical phenotype. Early recognition is essential to expedite diagnosis and enable prenatal diagnosis."	"Integrated pathways of parkin control over mitochondrial maintenance - relevance to Parkinson's disease pathogenesis. Mitochondrial dysfunction and oxidative stress are considered among the main molecular mechanisms implicated in Parkinson's disease (PD) pathogenesis. Here, we focus on the deficiency of PARK2 and its product parkin, which is relevant to both familial and sporadic PD pathogenesis. Parkin emerges as an important regulator of processes that maintain mitochondrial quality. We focus on the parkin-dependent aspects of mitochondrial biogenesis, including mtDNA replication, transcription, mitophagy, mitochondrial fusion, fission, and transport. We discuss possible underlying molecular mechanisms, exerted by parkin in cooperation with other mitochondrial maintenance factors such as TFAM, PGC-1alpha, mortalin, HSP70/HSC70 and LRPPRC, all of them implicated in PD pathogenesis. We review numerous models of lipopolysaccharide toxicity that demonstrate how mitochondrial biogenesis and mitophagy are induced simultaneously to cope with mitochondrial dysfunction. The spatial and temporal interdependence of mitochondrial quality pathways underscores the importance of an integrative approach for future studies. "	"Mitochondrion-associated protein LRPPRC suppresses the initiation of basal levels of autophagy via enhancing Bcl-2 stability. The mitochondrion-associated protein LRPPRC (leucine-rich pentatricopeptide repeat-containing) interacts with one of the microtubule-associated protein family members MAP1S (microtubule-associated protein 1 small form), originally named C19ORF5 (chromosome 19 open reading frame 5), to form a complex. MAP1S interacts with LC3 (light chain 3), the mammalian homologue of yeast autophagy marker ATG8 and one of the most important autophagy markers in mammalian cells, and helps the attachment of autophagosomes with microtubules for trafficking and recruitment of substrate mitochondria into autophagosomes for degradation. MAP1S activates autophagosomal biogenesis and degradation to remove misfolded/aggregated proteins and dysfunctional organelles such as mitochondria and suppress oxidative stress-induced genomic instability and tumorigenesis. Previously, various studies have attributed LRPPRC nucleic acid-associated functions. Instead, in the present study, we show that LRPPRC associates with mitochondria, interacts with Beclin 1 and Bcl-2 and forms a ternary complex to maintain the stability of Bcl-2. Suppression of LRPPRC leads to reduction in mitochondrial potential and reduction in Bcl-2. Lower levels of Bcl-2 lead to release of more Beclin 1 to form the Beclin 1-PI3KCIII (class III phosphoinositide 3-kinase) complex to activate autophagy and accelerate the turnover of dysfunctional mitochondria through the PI3K (phosphoinositide 3-kinase)/Akt/mTOR (mammalian target of rapamycin) pathway. The activation of autophagy induced by LRPPRC suppression occurs upstream of the ATG5-ATG12 conjugate-mediated conversion of LC3-I into LC3-II and has been confirmed in multiple mammalian cell lines with multiple autophagy markers including the size of GFP-LC3 punctate foci, the intensity of LC3-II and p62 protein and the size of the vacuolar structure. The activated autophagy enhances the removal of mitochondria through lysosomes. LRPPRC therefore acts to suppress the initiation of basal levels of autophagy to clean up dysfunctional mitochondria and other cellular debris during the normal cell cycle. "	"Human pentatricopeptide proteins: only a few and what do they do? Pentatricopeptide repeat (PPR) proteins constitute a large family of RNA-binding proteins that contain a canonical 35 residue repeat motif. Originally identified in Arabidopsis thaliana, family members are found in protists, fungi, and metazoan but are by far most abundant in plant organelles. Seven examples have been identified in human mitochondria and roles have been tentatively ascribed to each. In this review, we briefly outline each of these PPR proteins and discuss the role each is believed to play in facilitating mitochondrial gene expression. "	"The leucine-rich pentatricopeptide repeat-containing protein (LRPPRC) does not activate transcription in mammalian mitochondria. Regulation of mtDNA expression is critical for controlling oxidative phosphorylation capacity and has been reported to occur at several different levels in mammalian mitochondria. LRPPRC (leucine-rich pentatricopeptide repeat-containing protein) has a key role in this regulation and acts at the post-transcriptional level to stabilize mitochondrial mRNAs, to promote mitochondrial mRNA polyadenylation, and to coordinate mitochondrial translation. However, recent studies have suggested that LRPPRC may have an additional intramitochondrial role by directly interacting with the mitochondrial RNA polymerase POLRMT to stimulate mtDNA transcription. In this study, we have further examined the intramitochondrial roles for LRPPRC by creating bacterial artificial chromosome transgenic mice with moderately increased LRPPRC expression and heterozygous Lrpprc knock-out mice with moderately decreased LRPPRC expression. Variation of LRPPRC levels in mice in vivo, occurring within a predicted normal physiological range, strongly affected the levels of an unprocessed mitochondrial precursor transcript (ND5-cytochrome b) but had no effect on steady-state levels of mitochondrial transcripts or de novo transcription of mtDNA. We further assessed the role of LRPPRC in mitochondrial transcription by performing size exclusion chromatography and immunoprecipitation experiments in human cell lines and mice, but we found no interaction between LRPPRC and POLRMT. Furthermore, addition of purified LRPPRC to a recombinant human in vitro transcription system did not activate mtDNA transcription. On the basis of these data, we conclude that LRPPRC does not directly regulate mtDNA transcription but rather acts as a post-transcriptional regulator of mammalian mtDNA expression."	"A novel neurofibromin (NF1) interaction with the leucine-rich pentatricopeptide repeat motif-containing protein links neurofibromatosis type 1 and the French Canadian variant of Leigh's syndrome in a common molecular complex. Loss-of-function mutations and deletions in the neurofibromin tumor suppressor gene (NF1) cause neurofibromatosis type 1 (NF-1), the most common inherited syndrome of the nervous system in humans, with a birth incidence of 1:3,000. The most visible features of NF-1 are the neoplastic manifestations caused by the loss of Ras-GTPase-activating protein (Ras-GAP) activity mediated through the GAP-related domain (GRD) of neurofibromin (NF1), the protein encoded by NF1. However, the syndrome is also characterized by cognitive dysfunction and a number of developmental abnormalities. The molecular etiology of many of these nonneoplastic phenotypes remains unknown. Here we show that the tubulin-binding domain (TBD) of NF1 is a binding partner of the leucine-rich pentatricopeptide repeat motif-containing (LRPPRC) protein. These two proteins complex with Kinesin 5B, hnRNP A2, Staufen1, and Myelin Basic Protein (MBP) mRNA, likely in RNA granules. This interaction is of interest in that it links NF-1 with Leigh's syndrome, French Canadian variant (LSFC), an autosomal recessive neurodegenerative disorder that arises from mutations in the LRPPRC gene. Our findings provide clues to how loss or mutation of NF1 and LRPPRC may contribute to the manifestations of NF-1 and LSFC."	"Rescue of PINK1 protein null-specific mitochondrial complex IV deficits by ginsenoside Re activation of nitric oxide signaling. PINK1, linked to familial Parkinson's disease, is known to affect mitochondrial function. Here we identified a novel regulatory role of PINK1 in the maintenance of complex IV activity and characterized a novel mechanism by which NO signaling restored complex IV deficiency in PINK1 null dopaminergic neuronal cells. In PINK1 null cells, levels of specific chaperones, including Hsp60, leucine-rich pentatricopeptide repeat-containing (LRPPRC), and Hsp90, were severely decreased. LRPPRC and Hsp90 were found to act upstream of Hsp60 to regulate complex IV activity. Specifically, knockdown of Hsp60 resulted in a decrease in complex IV activity, whereas antagonistic inhibition of Hsp90 by 17-(allylamino) geldanamycin decreased both Hsp60 and complex IV activity. In contrast, overexpression of the PINK1-interacting factor LRPPRC augmented complex IV activity by up-regulating Hsp60. A similar recovery of complex IV activity was also induced by coexpression of Hsp90 and Hsp60. Drug screening identified ginsenoside Re as a compound capable of reversing the deficit in complex IV activity in PINK1 null cells through specific increases of LRPPRC, Hsp90, and Hsp60 levels. The pharmacological effects of ginsenoside Re could be reversed by treatment of the pan-NOS inhibitor L-NG-Nitroarginine Methyl Ester (L-NAME) and could also be reproduced by low-level NO treatment. These results suggest that PINK1 regulates complex IV activity via interactions with upstream regulators of Hsp60, such as LRPPRC and Hsp90. Furthermore, they demonstrate that treatment with ginsenoside Re enhances functioning of the defective PINK1-Hsp90/LRPPRC-Hsp60-complex IV signaling axis in PINK1 null neurons by restoring NO levels, providing potential for new therapeutics targeting mitochondrial dysfunction in Parkinson's disease."	"Muscleblind, BSF and TBPH are mislocalized in the muscle sarcomere of a Drosophila myotonic dystrophy model. Myotonic dystrophy type 1 (DM1) is a genetic disease caused by the pathological expansion of a CTG trinucleotide repeat in the 3' UTR of the DMPK gene. In the DMPK transcripts, the CUG expansions sequester RNA-binding proteins into nuclear foci, including transcription factors and alternative splicing regulators such as MBNL1. MBNL1 sequestration has been associated with key features of DM1. However, the basis behind a number of molecular and histological alterations in DM1 remain unclear. To help identify new pathogenic components of the disease, we carried out a genetic screen using a Drosophila model of DM1 that expresses 480 interrupted CTG repeats, i(CTG)480, and a collection of 1215 transgenic RNA interference (RNAi) fly lines. Of the 34 modifiers identified, two RNA-binding proteins, TBPH (homolog of human TAR DNA-binding protein 43 or TDP-43) and BSF (Bicoid stability factor; homolog of human LRPPRC), were of particular interest. These factors modified i(CTG)480 phenotypes in the fly eye and wing, and TBPH silencing also suppressed CTG-induced defects in the flight muscles. In Drosophila flight muscle, TBPH, BSF and the fly ortholog of MBNL1, Muscleblind (Mbl), were detected in sarcomeric bands. Expression of i(CTG)480 resulted in changes in the sarcomeric patterns of these proteins, which could be restored by coexpression with human MBNL1. Epistasis studies showed that Mbl silencing was sufficient to induce a subcellular redistribution of TBPH and BSF proteins in the muscle, which mimicked the effect of i(CTG)480 expression. These results provide the first description of TBPH and BSF as targets of Mbl-mediated CTG toxicity, and they suggest an important role of these proteins in DM1 muscle pathology."	"Brain region-specific altered expression and association of mitochondria-related genes in autism.  <AbstractText Label=\"BACKGROUND\" NlmCategory=\"BACKGROUND\">Mitochondrial dysfunction (MtD) has been observed in approximately five percent of children with autism spectrum disorders (ASD). MtD could impair highly energy-dependent processes such as neurodevelopment, thereby contributing to autism. Most of the previous studies of MtD in autism have been restricted to the biomarkers of energy metabolism, while most of the genetic studies have been based on mutations in the mitochondrial DNA (mtDNA). Despite the mtDNA, most of the proteins essential for mitochondrial replication and function are encoded by the genomic DNA; so far, there have been very few studies of those genes. Therefore, we carried out a detailed study involving gene expression and genetic association studies of genes related to diverse mitochondrial functions. For gene expression analysis, postmortem brain tissues (anterior cingulate gyrus (ACG), motor cortex (MC) and thalamus (THL)) from autism patients (n=8) and controls (n=10) were obtained from the Autism Tissue Program (Princeton, NJ, USA). Quantitative real-time PCR arrays were used to quantify the expression of 84 genes related to diverse functions of mitochondria, including biogenesis, transport, translocation and apoptosis. We used the delta delta Ct (∆∆Ct) method for quantification of gene expression. DNA samples from 841 Caucasian and 188 Japanese families were used in the association study of genes selected from the gene expression analysis. FBAT was used to examine genetic association with autism. Several genes showed brain region-specific expression alterations in autism patients compared to controls. Metaxin 2 (MTX2), neurofilament, light polypeptide (NEFL) and solute carrier family 25, member 27 (SLC25A27) showed consistently reduced expression in the ACG, MC and THL of autism patients. NEFL (P = 0.038; Z-score 2.066) and SLC25A27 (P = 0.046; Z-score 1.990) showed genetic association with autism in Caucasian and Japanese samples, respectively. The expression of DNAJC19, DNM1L, LRPPRC, SLC25A12, SLC25A14, SLC25A24 and TOMM20 were reduced in at least two of the brain regions of autism patients. Our study, though preliminary, brings to light some new genes associated with MtD in autism. If MtD is detected in early stages, treatment strategies aimed at reducing its impact may be adopted."	"Suppressed RNA-polymerase 1 pathway is associated with benign multiple sclerosis. Benign multiple sclerosis (BMS) occurs in about 15% of patients with relapsing-remitting multiple sclerosis (RRMS) that over time do not develop significant neurological disability. The molecular events associated with BMS are not clearly understood. This study sought to underlie the biological mechanisms associated with BMS. Blood samples obtained from a cohort of 31 patients with BMS and 36 patients with RRMS were applied for gene expression microarray analysis using HG-U133A-2 array (Affymetrix). Data were analyzed by Partek and pathway reconstruction was performed by Ingenuity for the most informative genes (MIGs). We identified a differing gene expression signature of 406 MIGs between BMS patients, mean±SE age 44.5±1.5 years, 24 females, 7 males, EDSS 1.9±0.2, disease duration 17.0±1.3 years, and RRMS patients, age 40.3±1.8 years, 24 females, 12 males, EDSS 3.5±0.2, disease duration 10.9±1.4 years. The signature was enriched by genes related RNA polymerase I (POL-1) transcription, general inflammatory response and activation of cell death. The most significant under-expressed pathway operating in BMS was the POL-1 pathway (p = 4.0*10(-5)) known while suppressed to activate P53 dependent apoptosis and to suppress NFκB induced inflammation. In accordance, of the 30 P53 target genes presented within the BMS signature, 19 had expression direction consistent with P53 activation. The transcripts within the pathway include POL-1 transcription factor 3 (RRN3, p = 4.8*10(-5)), POL-1 polypeptide D (POLR1D, p = 2.2*10(-4)), leucine-rich PPR-motif containing protein (LRPPRC p = 2.3*10(-5)), followed by suppression of the downstream family of ribosomal genes like RPL3, 6,13,22 and RPS6. In accordance POL-1 transcript and release factor PTRF that terminates POL-1 transcription, was over-expressed (p = 4.4*10(-3)). Verification of POL-1 pathway key genes was confirmed by qRT-PCR, and RRN3 silencing resulted in significant increase in the apoptosis level of PBMC sub-populations in RRMS patients. Our findings demonstrate that suppression of POL-1 pathway induce the low disease activity of BMS."	"Knockdown of the cellular protein LRPPRC attenuates HIV-1 infection. HIV-1 exploits numerous host cellular pathways for productive infection. To identify novel factors involved in HIV-1 replication, HIV-1 integrase and matrix protein complexes were captured at 4 hours post infection for proteomic analysis using an affinity purification system. Leucine-rich PPR-motif containing (LRPPRC) protein, a cellular protein involved in mitochondrial function, cell metabolism, and cell-cycle progression was identified as one of the candidate HIV-1 factors. Co-immunoprecipitation RT-PCR experiments confirmed that LRPPRC associated with HIV-1 nucleic acids during the early steps of virus infection. To establish if LRPPRC was critical for HIV-1 infection, three independent LRPPRC knockdown cell lines were constructed (2.7, 3.6, and 4.1). Subcellular fractionation of these cell lines revealed differential knockdown of LRPPRC in subcellular compartments. LRPPRC was knocked down in the insoluble/cytoskeletal fractions of all three cell lines, but the 3.6 and 4.1 cells also showed a reduction in nuclear LRPPRC. Additionally, several cellular factors were downregulated and/or disrupted by loss of LRPPRC. HIV-1 infection was reduced in all three cell lines, but virus production and RNA encapsidation were unaffected, suggesting that LRPPRC was critical for the afferent stage of virus replication. Two of the three cell lines (3.6, 4.1) were refractory for murine leukemia virus infection, a virus dependent on cellular proliferation for productive infection. Consistent with this, these two cell lines exhibited reduced cellular growth with no loss of cellular viability or change in cell cycle phenotype. The early steps of virus infection were also differentially affected among the cell lines. A reduced level of preintegration complex formation was observed in all three cell lines, but viral DNA nuclear import was reduced only in the 3.6 and 4.1 cells. Combined, these data identify LRPPRC as a HIV-1 factor that is involved in HIV-1 replication through more than one mechanism."	"P-glycoprotein (ABCB1) inhibited network of mitochondrion transport along microtubule and BMP signal-induced cell shape in chimpanzee left cerebrum by systems-theoretical analysis. We constructed the significant low-expression P-glycoprotein (ABCB1) inhibited transport and signal network in chimpanzee compared with high-expression (fold change ≥2) the human left cerebrum in GEO data set, by using integration of gene regulatory activated and inhibited network inference method with gene ontology (GO) analysis. Our result showed that ABCB1 transport and signal upstream network RAB2A inhibited ABCB1, and downstream ABCB1-inhibited SMAD1_2, NCK2, SLC25A46, GDF10, RASGRP1, EGFR, LRPPRC, RASSF2, RASA4, CA2, CBLB, UBR5, SLC25A16, ITGB3BP, DDIT4, PDPN, RAB2A in chimpanzee left cerebrum. We obtained that the different biological processes of ABCB1 inhibited transport and signal network repressed carbon dioxide transport, ER to Golgi vesicle-mediated transport, folic acid transport, mitochondrion transport along microtubule, water transport, BMP signaling pathway, Ras protein signal transduction, transforming growth factor beta receptor signaling pathway in chimpanzee compared with the inhibited network of the human left cerebrum, as a result of inducing inhibition of mitochondrion transport along microtubule and BMP signal-induced cell shape in chimpanzee left cerebrum. Our hypothesis was verified by the same and different biological processes of ABCB1 inhibited transport and signal network of chimpanzee compared with the corresponding activated network of chimpanzee and the human left cerebrum, respectively."	"LRPPRC/SLIRP suppresses PNPase-mediated mRNA decay and promotes polyadenylation in human mitochondria. In human mitochondria, 10 mRNAs species are generated from a long polycistronic precursor that is transcribed from the heavy chain of mitochondrial DNA, in theory yielding equal copy numbers of mRNA molecules. However, the steady-state levels of these mRNAs differ substantially. Through absolute quantification of mRNAs in HeLa cells, we show that the copy numbers of all mitochondrial mRNA species range from 6000 to 51,000 molecules per cell, indicating that mitochondria actively regulate mRNA metabolism. In addition, the copy numbers of mitochondrial mRNAs correlated with their cellular half-life. Previously, mRNAs with longer half-lives were shown to be stabilized by the LRPPRC/SLIRP complex, which we find that cotranscriptionally binds to coding sequences of mRNAs. We observed that the LRPPRC/SLIRP complex suppressed 3' exonucleolytic mRNA degradation mediated by PNPase and SUV3. Moreover, LRPPRC promoted the polyadenylation of mRNAs mediated by mitochondrial poly(A) polymerase (MTPAP) in vitro. These findings provide a framework for understanding the molecular mechanism of mRNA metabolism in human mitochondria."	"A comparative proteomic study identified LRPPRC and MCM7 as putative actors in imatinib mesylate cross-resistance in Lucena cell line. Although chronic myeloid leukemia (CML) treatment has improved since the introduction of imatinib mesylate (IM), cases of resistance have been reported. This resistance has been associated with the emergence of multidrug resistance (MDR) phenotype, as a BCR-ABL independent mechanism. The classic pathway studied in MDR promotion is ATP-binding cassette (ABC) family transporters expression, but other mechanisms that drive drug resistance are largely unknown. To better understand IM therapy relapse due to the rise of MDR, we compared the proteomic profiles of K562 and Lucena (K562/VCR) cells. The use of 2-DE coupled with a MS approach resulted in the identification of 36 differentially expressed proteins. Differential mRNA levels of leucine-rich PPR motif-containing (LRPPRC) protein, minichromosome maintenance complex component 7 (MCM7) and ATP-binding cassette sub-family B (MDR/TAP) member 1 (ABCB1) were capable of defining samples from CML patients as responsive or resistant to therapy. Through the data presented in this work, we show the relevance of MDR to IM therapy. In addition, our proteomic approach identified candidate actors involved in resistance, which could lead to additional information on BCR-ABL-independent molecular mechanisms."	"Role of leucine-rich pentatricopeptide repeat motif-containing protein (LRPPRC) for anti-apoptosis and tumourigenesis in cancers. Due to accelerated energy consumption, enhanced function of mitochondria in tumour cells compared to normal cells is prerequisite for tumour development. Leucine-rich pentatricopeptide repeat motif-containing protein (LRPPRC) regulates the expression of all mitochondrial DNA-encoded mRNAs, thus plays an important role in the mitochondrial function. LRPPRC is abundantly expressed in the side population of lung adenocarcinoma cell lines, where cancer stem cells are enriched. However, the role of LRPPRC in tumour development remained to be clarified in detail. Here, the expression of LRPPRC was examined in various types of tumours, such as lung adenocarcinoma, oesophageal squamous cell carcinoma, stomach, colon, mammary and endometrial adenocarcinoma, and lymphoma. Immunohistochemistry revealed that all kinds of examined tumours abundantly expressed LRPPRC. In contrast, surrounding non-neoplastic cells hardly expressed LRPPRC. The knocked-down expression of LRPPRC in lung adenocarcinoma cells did not affect amount of side population and activity of aldehyde dehydrogenase 1, known to be highly expressed in cancer stem cells of the lung. However, the knocked-down expression of LRPPRC reduced the abilities for anti-apoptosis, invasion and in vitro colony formation in lung adenocarcinoma, as well as Hodgkin lymphoma cells. Double staining of LRPPRC with active caspase-3 in clinical samples of lung adenocarcinoma revealed that apoptotic cells were hardly observed in LRPPRC-expressing tumours. These findings indicate that LRPPRC played an important role in tumourigenesis through the resistance to apoptosis and high invasive activity."	"Low-concentration methylene blue maintains energy production and strongly improves survival of Leigh syndrome French Canadian skin fibroblasts. Leigh syndrome French Canadian (LSFC) is a recessive disease caused by mutations in the LRPPRC gene (leucine-rich pentatricopeptide repeat containing protein). These mutations induce a cytochrome c oxidase (COX) deficiency resulting in episodes of acute acidotic crisis that will often lead to death. There is no effective treatment. Methylene blue (MB) is a redox dye that increases COX content and activity in vitro and in vivo suggesting that MB could prevent and treat LSFC. In this study, the protective effect of low-concentration MB was tested on two LSFC cell lines, including LSFC-F1, homozygous for the mutation A354V, and LSFC-F2 a compound heterozygous for the mutations A354V and C12775STOP. MB effect on metabolic activity was assessed on both LSFC cells in stable and acidotic conditions. For LSFC-F1, results showed that metabolic activity drastically decline after 96 hours in both conditions but not LSFC-F2 and normal cells. MB completely prevents the decrease of metabolic activity in LSFC-F1. Intracellular ATP content was also measured in both culture media. After 96 hours in acidotic medium, ATP content was almost completely depleted for both LSFC cells. Interestingly, MB completely restores ATP content in LSFC-F1 and LSFC-F2 cells. Finally, MB strongly improves the survival of both LSFC cells."	"LRPPRC is necessary for polyadenylation and coordination of translation of mitochondrial mRNAs. Regulation of mtDNA expression is critical for maintaining cellular energy homeostasis and may, in principle, occur at many different levels. The leucine-rich pentatricopeptide repeat containing (LRPPRC) protein regulates mitochondrial mRNA stability and an amino-acid substitution of this protein causes the French-Canadian type of Leigh syndrome (LSFC), a neurodegenerative disorder characterized by complex IV deficiency. We have generated conditional Lrpprc knockout mice and show here that the gene is essential for embryonic development. Tissue-specific disruption of Lrpprc in heart causes mitochondrial cardiomyopathy with drastic reduction in steady-state levels of most mitochondrial mRNAs. LRPPRC forms an RNA-dependent protein complex that is necessary for maintaining a pool of non-translated mRNAs in mammalian mitochondria. Loss of LRPPRC does not only decrease mRNA stability, but also leads to loss of mRNA polyadenylation and the appearance of aberrant mitochondrial translation. The translation pattern without the presence of LRPPRC is misregulated with excessive translation of some transcripts and no translation of others. Our findings point to the existence of an elaborate machinery that regulates mammalian mtDNA expression at the post-transcriptional level."	"LRP130 protein remodels mitochondria and stimulates fatty acid oxidation. Impaired oxidative phosphorylation (OXPHOS) is implicated in several metabolic disorders. Even though mitochondrial DNA encodes several subunits critical for OXPHOS, the metabolic consequence of activating mitochondrial transcription remains unclear. We show here that LRP130, a protein involved in Leigh syndrome, increases hepatic β-fatty acid oxidation. Using convergent genetic and biochemical approaches, we demonstrate LRP130 complexes with the mitochondrial RNA polymerase to activate mitochondrial transcription. Activation of mitochondrial transcription is associated with increased OXPHOS activity, increased supercomplexes, and denser cristae, independent of mitochondrial biogenesis. Consistent with increased oxidative phosphorylation, ATP levels are increased in both cells and mouse liver, whereas coupled respiration is increased in cells. We propose activation of mitochondrial transcription remodels mitochondria and enhances oxidative metabolism."	"LRPPRC mutation suppresses cytochrome oxidase activity by altering mitochondrial RNA transcript stability in a mouse model. LRPPRC (leucine-rich pentatricopeptide repeat-containing) has been shown to be essential for the maturation of COX (cytochrome c oxidase), possibly by stabilizing RNA transcripts of COXI, COXII and COXIII genes encoded in mtDNA (mitochondrial DNA). We established a mouse 'gene-trap' model using ES cells (embryonic stem cells) in which the C-terminus of LRPPRC has been replaced with a β-geo construct. Mice homozygous for this modification were found to be subject to embryonic lethality, with death before 12.5 dpc (days post-coitum). Biochemical analysis of MEFs (mouse embryonic fibroblasts) isolated from homozygous mutants showed a major decrease in COX activity, with slight reductions in other respiratory chain complexes with mtDNA encoded components. Constructs of LRPPRC containing different numbers of PPRs (pentatricopeptide repeats) were expressed as recombinant proteins and tested for their ability to bind to the COXI mRNA transcript. Full binding required the first 19 PPR motifs. A specific segment of COXI mRNA was identified as the binding target for LRPPRC, encoded by mouse mtDNA nucleotides 5961-6020. These data strongly suggest that LRPPRC is involved in the maturation of COX, and is involved in stabilizing of mitochondrial mRNAs encoding COX transcripts."	"A genome wide study in fission yeast reveals nine PPR proteins that regulate mitochondrial gene expression. Pentatricopeptide repeat (PPR) proteins are particularly numerous in plant mitochondria and chloroplasts, where they are involved in different steps of RNA metabolism, probably due to the repeated 35 amino acid PPR motifs that are thought to mediate interactions with RNA. In non-photosynthetic eukaryotes only a handful of PPR proteins exist, for example the human LRPPRC, which is involved in a mitochondrial disease. We have conducted a systematic study of the PPR proteins in the fission yeast Schizosaccharomyces pombe and identified, in addition to the mitochondrial RNA polymerase, eight proteins all of which localized to the mitochondria, and showed some association with the membrane. The absence of all but one of these PPR proteins leads to a respiratory deficiency and modified patterns of steady state mt-mRNAs or newly synthesized mitochondrial proteins. Some cause a general defect, whereas others affect specific mitochondrial RNAs, either coding or non-coding: cox1, cox2, cox3, 15S rRNA, atp9 or atp6, sometimes leading to secondary defects. Interestingly, the two possible homologs of LRPPRC, ppr4 and ppr5, play opposite roles in the expression of the cox1 mt-mRNA, ppr4 being the first mRNA-specific translational activator identified in S. pombe, whereas ppr5 appears to be a general negative regulator of mitochondrial translation."	"PINK1-Interacting Proteins: Proteomic Analysis of Overexpressed PINK1. Recent publications suggest that the Parkinson's disease- (PD-) related PINK1/Parkin pathway promotes elimination of dysfunctional mitochondria by autophagy. We used tandem affinity purification (TAP), SDS-PAGE, and mass spectrometry as a first step towards identification of possible substrates for PINK1. The cellular abundance of selected identified interactors was investigated by Western blotting. Furthermore, one candidate gene was sequenced in 46 patients with atypical PD. In addition to two known binding partners (HSP90, CDC37), 12 proteins were identified using the TAP assay; four of which are mitochondrially localized (GRP75, HSP60, LRPPRC, and TUFM). Western blot analysis showed no differences in cellular abundance of these proteins comparing PINK1 mutant and control fibroblasts. When sequencing LRPPRC, four exonic synonymous changes and 20 polymorphisms in noncoding regions were detected. Our study provides a list of putative PINK1 binding partners, confirming previously described interactions, but also introducing novel mitochondrial proteins as potential components of the PINK1/Parkin mitophagy pathway."	"LRPPRC mutations cause a phenotypically distinct form of Leigh syndrome with cytochrome c oxidase deficiency. The natural history of all known patients with French-Canadian Leigh disease (Saguenay-Lac-St-Jean cytochrome c oxidase deficiency, MIM220111, SLSJ-COX), the largest known cohort of patients with a genetically homogeneous, nuclear encoded congenital lactic acidosis, was studied. 55 of 56 patients were homozygous for the A354V mutation in LRPPRC. One was a genetic compound (A354V/C1277Xdel8). Clinical features included developmental delay, failure to thrive, characteristic facial appearance and, in 90% of patients, acute crises that have not previously been detailed, either metabolic (fulminant lactic acidosis) and/or neurological (Leigh syndrome and/or stroke-like episodes). Survival ranged from 5 days to &gt;30 years. 46/56 patients (82%) died, at a median age of 1.6 years. Of 73 crises, 38 (52%) were fatal. The immediate causes of death were multiple organ failure and/or Leigh disease. Major predictors of mortality during crises (p&lt;0.005) were hyperglycaemia, hepatic cytolysis, and altered consciousness at admission. Compared to a group of SURF1-deficient Leigh syndrome patients assembled from the literature, SLSJ-COX is distinct by the occurrence of metabolic crises, leading to earlier and higher mortality (p=0.001). SLSJ-COX is clinically distinct, with acute fatal acidotic crises on a backdrop of chronic moderate developmental delay and hyperlactataemia. Leigh syndrome is common. Stroke-like episodes can occur. The Leigh syndrome of SLSJ-COX differs from that of SURF1-related COX deficiency. SLSJ-COX has a different spectrum of associated abnormalities, acidotic crises being particularly suggestive of LRPPRC related Leigh syndrome. Even among A354V homozygotes, pronounced differences in survival and severity occur, showing that other genetic and/or environmental factors can influence outcome."	"Microtubule-associated protein 1S (MAP1S) bridges autophagic components with microtubules and mitochondria to affect autophagosomal biogenesis and degradation. The ubiquitously distributed MAP1S is a homologue of the exclusively neuronal distributed microtubule-associated protein 1A and 1B (MAP1A/B). They give rise to multiple isoforms through similar post-translational modification. Isoforms of MAP1S have been implicated in microtubule dynamics and mitotic abnormalities and mitotic cell death. Here we show that ablation of the Map1s gene in mice caused reduction in the B-cell CLL/lymphoma 2 or xL (Bcl-2/xL) and cyclin-dependent kinase inhibitor 1B (P27) protein levels, accumulation of defective mitochondria, and severe defects in response to nutritive stress, suggesting defects in autophagosomal biogenesis and clearance. Furthermore, MAP1S isoforms interacted with the autophagosome-associated light chain 3 of MAP1A/B (LC3), a homologue of yeast autophagy-related gene 8 (ATG8), and recruited it to stable microtubules in a MAP1S and LC3 isoform-dependent mode. In addition, MAP1S interacted with mitochondrion-associated leucine-rich PPR-motif containing protein (LRPPRC) that interacts with the mitophagy initiator and Parkinson disease-related protein Parkin. The three-way interactions of MAP1S isoforms with LC3 and microtubules as well as the interaction of MAP1S with LRPPRC suggest that MAP1S isoforms may play positive roles in integration of autophagic components with microtubules and mitochondria in both autophagosomal biogenesis and degradation. For the first time, our results clarify roles of MAP1S in bridging microtubules and mitochondria with autophagic and mitophagic initiation, maturation, trafficking, and lysosomal clearance. Defects in the MAP1S-regulated autophagy may impact heart disease, cancers, neurodegenerative diseases, and a wide range of other diseases."	"Leucine-rich protein 130 contributes to apoptosis resistance of human hepatocarcinoma cells. LRP130 is a ubiquitous protein involved in cellular homeostasis, microtubule alteration, and transactivation of a few multidrug resistance genes. Its role in resistance to apoptosis in HepG2 and HUH7 hepatocarcinoma cells was investigated. Using shRNA-producing lentiviruses to down-regulate the LRP130 gene, we showed that i) LRP130 did not affect the capacity of hepatocarcinoma cells to extrude drugs since LRP130 down-regulation was insufficient to significantly reduce P-glycoprotein production in these cells, and ii) the expression of 11 apoptosis-related genes measured by PCR-array was significantly reduced. Interestingly, six of these genes encode extrinsic pathway proapoptotic proteins whose expression was higher in LRP130-non producing than in LRP130-producing HepG2 cells. Fluorescence microscopy confirmed this new anti-apoptotic role of LRP130, which is strengthened by a significantly reduced cytochrome c oxidase activity in LRP130-down-regulated hepatocarcinoma cells."	"Leucine-rich pentatricopeptide-repeat containing protein regulates mitochondrial transcription. Mitochondrial function depends upon the coordinated expression of the mitochondrial and nuclear genomes. Although the basal factors that carry out the process of mitochondrial transcription are known, the regulation of this process is incompletely understood. To further our understanding of mitochondrial gene regulation, we identified proteins that bound to the previously described point of termination for the major mRNA-coding transcript H2. One was the leucine-rich pentatricopeptide-repeat containing protein (LRPPRC), which has been linked to the French-Canadian variant of Leigh syndrome. Cells with reduced expression of LRPPRC had a reduction in oxygen consumption. The expression of mitochondrial mRNA and tRNA was dependent upon LRPPRC levels, but reductions in LRPPRC did not affect the expression of mitochondrial rRNA. Reduction of LRPPRC levels interfered with mitochondrial transcription in vitro but did not affect the stability of mitochondrial mRNAs or alter the expression of nuclear genes responsible for mitochondrial transcription in vivo. These findings demonstrate the control of mitochondrial mRNA synthesis by a protein that has an established role in regulating nuclear transcription and a link to mitochondrial disease."	"LRPPRC is a mitochondrial matrix protein that is conserved in metazoans. LRPPRC (also called LRP130) is an RNA-binding pentatricopeptide repeat protein. LRPPRC has been recognized as a mitochondrial protein, but has also been shown to regulate nuclear gene transcription and to bind specific RNA molecules in both the nucleus and the cytoplasm. We here present a bioinformatic analysis of the LRPPRC primary sequence, which reveals that orthologs to the LRPPRC gene are restricted to metazoan cells and that all of the corresponding proteins contain mitochondrial targeting signals. To address the subcellular localization further, we have carefully analyzed LRPPRC in mammalian cells and identified a single isoform that is exclusively localized to mitochondria. The LRPPRC protein is imported to the mitochondrial matrix and its mitochondrial targeting sequence is cleaved upon entry."	"Mitochondrial and nuclear genomic responses to loss of LRPPRC expression. Rapid advances in genotyping and sequencing technology have dramatically accelerated the discovery of genes underlying human disease. Elucidating the function of such genes and understanding their role in pathogenesis, however, remain challenging. Here, we introduce a genomic strategy to characterize such genes functionally, and we apply it to LRPPRC, a poorly studied gene that is mutated in Leigh syndrome, French-Canadian type (LSFC). We utilize RNA interference to engineer an allelic series of cellular models in which LRPPRC has been stably silenced to different levels of knockdown efficiency. We then combine genome-wide expression profiling with gene set enrichment analysis to identify cellular responses that correlate with the loss of LRPPRC. Using this strategy, we discovered a specific role for LRPPRC in the expression of all mitochondrial DNA-encoded mRNAs, but not the rRNAs, providing mechanistic insights into the enzymatic defects observed in the disease. Our analysis shows that nuclear genes encoding mitochondrial proteins are not collectively affected by the loss of LRPPRC. We do observe altered expression of genes related to hexose metabolism, prostaglandin synthesis, and glycosphingolipid biology that may either play an adaptive role in cell survival or contribute to pathogenesis. The combination of genetic perturbation, genomic profiling, and pathway analysis represents a generic strategy for understanding disease pathogenesis."	"LRPPRC and SLIRP interact in a ribonucleoprotein complex that regulates posttranscriptional gene expression in mitochondria. Mutations in LRPPRC are responsible for the French Canadian variant of Leigh syndrome (LSFC), a neurodegenerative disorder caused by a tissue-specific deficiency in cytochrome c oxidase (COX). To investigate the pathogenic mechanism of disease, we studied LRPPRC function in LSFC and control fibroblasts. The level of mutated LRPPRC is reduced in LSFC cells, and this results in decreased steady-state levels of most mitochondrial mRNAs, but not rRNAs or tRNAs, a phenotype that can be reproduced by siRNA-mediated knockdown of LRPPRC in control cells. Processing of the primary transcripts appears normal. The resultant defect in mitochondrial protein synthesis in LSFC cells disproportionately affects the COX subunits, leading to an isolated COX assembly defect. Further knockdown of LRPPRC produces a generalized assembly defect in all oxidative phosphorylation complexes containing mtDNA-encoded subunits, due to a severe decrease in all mitochondrial mRNAs. LRPPRC exists in a high-molecular-weight complex, and it coimmunoprecipitates with SLIRP, a stem-loop RNA-binding protein. Although this interaction does not depend on mitochondrial mRNA, both proteins show reduced stability in its absence. These results implicate LRPPRC in posttranscriptional mitochondrial gene expression as part of a ribonucleoprotein complex that regulates the stability and handling of mature mRNAs."	"Can blood components with age-related changes influence the ageing of endothelial cells? Research on vascular endothelial cell ageing helps elucidate the pathogenesis of diseases associated with cell ageing. To investigate endothelial senescence, we used 2-DE coupled with MS to perform a proteomic analysis of: (i) peripheral blood mononuclear cells (PBMCs) from donors in their 20 s ('young') or 60 s ('old') and (ii) human dermal microvascular endothelial cells (HDMECs) treated with sera from young and old donors. Identified proteins could be classified into several functional categories: (i) cytoskeletal regulators: CapG and cofilin 1; (ii) stress response and signal pathway proteins: TXNDC5 and RSU-1; and (iii) apoptosis proteins: Annexin V. We confirmed by Western blot a decrease of RSU-1, CapG and TXNDC5 in PBMCs from old donors. RSU-1, which regulates signal transduction of the downstream Ras, showed decreased mRNA and protein levels in PBMCs from old donors and decreased mRNA levels in HDMECs treated with sera from old donors. In addition, Ras protein levels were increased in PBMCs from old donors. These data indicate that reduced RSU-1 might induce Ras expression, which subsequently could provoke Ras-induced senescence. In conclusion, our data suggest that blood components that exhibit age-related changes, such as alterations in cytoskeletal regulators and stress proteins, may be associated with endothelial cell ageing."	"Dual function microtubule- and mitochondria-associated proteins mediate mitotic cell death. Survival and evolution of aneuploid cells after an asymmetric segregation of chromosomes at mitosis may be the common initiating event and underlying cause of the genetic diversity and adaptability of cancers. We hypothesize that mechanisms exist to detect impending aneuploidy and prevent it before completion of an aberrant mitosis. The distribution of isoforms of C19ORF5, an interactive partner with mitochondria-associated LRPPRC and tumor suppressor RASSF1A, state of spindle microtubules and mitochondrial aggregation was analyzed in synchronized mitotic cells and cells stalled in mitosis after treatment with paclitaxel. C19ORF5 distributed broadly across the mitotic spindle and reversibly accumulated during reversible mitotic arrest. Prolonged stabilization of microtubules caused an accumulation of a C19ORF5 product with dual MAP and MtAP properties that caused irreversible aggregation of mitochondria and death of mitotic cells. Dual function microtubule-associated (MAP) and mitochondria-associated (MtAP) proteins generated by prolonged mitotic arrest trigger mitochondrial-induced mitotic cell death. This is a potential mechanism to prevent minimal survivable aneuploidy resulting from an aberrant cell division and cancers in general at their earliest common origin."	"Proteomic analysis of increased Parkin expression and its interactants provides evidence for a role in modulation of mitochondrial function. Parkin is an ubiquitin-protein ligase (E3), mutations of which cause juvenile onset - autosomal recessive Parkinson's disease, and result in reduced enzymic activity. In contrast, increased levels are protective against mitochondrial dysfunction and neurodegeneration, the mechanism of which is largely unknown. In this study, 2-DE and MS proteomic techniques were utilised to investigate the effects of increased Parkin levels on protein expression in whole cell lysates using in an inducible Parkin expression system in HEK293 cells, and also to isolate potential interactants of Parkin using tandem affinity purification and MS. Nine proteins were significantly differentially expressed (+/-2-fold change; p&lt;0.05) using 2-DE analysis. MS revealed the identity of these proteins to be ACAT2, HNRNPK, HSPD1, PGK1, PRDX6, VCL, VIM, TPI1, and IMPDH2. The first seven of these were reduced in expression. Western blot analysis confirmed the reduction in one of these proteins (HNRNPK), and that its levels were dependent on 26S proteasomal activity. Tandem affinity purification/MS revealed 14 potential interactants of Parkin; CKB, DBT, HSPD1, HSPA9, LRPPRC, NDUFS2, PRDX6, SLC25A5, TPI1, UCHL1, UQCRC1, VCL, YWHAZ, YWHAE. Nine of these are directly involved in mitochondrial energy metabolism and glycolysis; four were also identified in the 2-DE study (HSP60, PRDX6, TPI1, and VCL). This study provides further evidence for a role for Parkin in regulating mitochondrial activity within cells."	"Molecular dissection of the eukaryotic initiation factor 4E (eIF4E) export-competent RNP. The eukaryotic translation initiation factor 4E (eIF4E) controls gene expression through its effects on mRNA export and cap-dependent translation, both of which contribute to its oncogenic potential. In contrast to its translation function, the mRNA export function of eIF4E is poorly understood. Using an RNP isolation/mass spectrometry approach, we identified candidate cofactors of eIF4E mRNA export including LRPPRC. This protein associates with mRNAs containing the eIF4E-sensitivity element (4E-SE), and its overexpression alters the nuclear export of several eIF4E-sensitive mRNAs. LRPPRC-mediated alteration of eIF4E's mRNA export function requires the integrity of its eIF4E-binding site and it coincides with the subcellular re-distribution of eIF4E. The eIF4E export RNP is distinct in composition from the bulk mRNA export pathway, in that eIF4E- and eIF4E-sensitive mRNAs do not associate with general mRNA export factors such as TAP/NXF1 or REF/Aly. Our data indicate that mRNA export pathways have evolved for specific mRNAs enabling the differential regulation of biochemical pathways by modulating the expression of groups of genes at the level of their export."	"PPR (pentatricopeptide repeat) proteins in mammals: important aids to mitochondrial gene expression. Genes encoding PPR (pentatricopeptide repeat)-containing proteins constitute one of the largest gene families in plants. The majority of these proteins are predicted to target organelles and to bind to RNA. Strikingly, there is a dearth of these proteins in mammals, although genomic searches reveal six candidates, all of which are also predicted to target the mitochondrion. Two of these proteins, POLRMT (the mitochondrial RNA polymerase) and MRPS27, a mitoribosomal protein, are involved in transcription and translation respectively. PTCD1 (pentatricopeptide repeat domain protein 1) and PTCD3 are predicted to be involved in the assembly of respiratory chain complexes, whereas mutations in one other protein, LRPPRC (leucine-rich pentatricopeptide repeat cassette), have been shown to cause defects in the levels of cytochrome c oxidase, the terminal member of the respiratory chain. In this issue of the Biochemical Journal, Xu et al. turn their attention to the remaining candidate, PTCD2. Depletion in a mouse model led to deficiencies of the third complex of the respiratory chain that caused profound ultrastructural changes in the heart. The exact molecular function of PTCD2 remains unclear, but depletion leads to an apparent lack of processing of the mitochondrial transcript encoding apocytochrome b, a critical member of complex III. These data are consistent with PTCD2 playing an important role in the post-transcriptional expression of the mitochondrial genome."	"Modulation of PGC-1 coactivator pathways in brown fat differentiation through LRP130. The PGC-1 coactivators are important regulators of oxidative metabolism. We previously demonstrated that LRP130 is a binding partner of PGC-1alpha, required for hepatic gluconeogenesis. LRP130 is the gene mutated in Leigh syndrome French Canadian variant, a rare neurodegenerative disease. The importance of LRP130 in other, non-hepatocyte biology remains obscure. To better understand PGC-1 coactivator function in brown fat development, we explored the metabolic role of LRP130 in brown adipocyte differentiation. We show that LRP130 is preferentially enriched in brown fat compared with white, and induced in a PGC-1-dependent manner during differentiation. Despite intact PGC-1 coactivator expression, brown fat cells deficient for LRP130 exhibit attenuated expression of several genes characteristic of brown fat, including uncoupling protein 1. Oxygen consumption studies support a specific defect in proton leak due to attenuated uncoupling protein 1 expression. Notably, brown fat cell development common to both PGC-1 coactivators is governed by LRP130. Conversely, the cAMP response controlled by PGC-1alpha is not regulated by LRP130. These data implicate LRP130 in brown fat cell development and differentiation."	"UXT (Ubiquitously Expressed Transcript) causes mitochondrial aggregation. Mitochondria are the bioenergetic and metabolic centers in eukaryotic cells and play a central role in apoptosis. Mitochondrial distribution is controlled by the microtubular cytoskeleton. The perinuclear aggregation of mitochondria is one of the characteristics associated with some types of cell death. Control of mitochondrial aggregation particularly related to cell death events is poorly understood. Previously, we identified ubiquitously expressed transcript (UXT) as a potential component of mitochondrial associated LRPPRC, a multidomain organizer that potentially integrates mitochondria and the microtubular cytoskeleton with chromosome remodeling. Here we show that when overexpressed in mammalian cells, green fluorescent protein-tagged UXT (GFP-UXT) exhibits four types of distribution patterns that are proportional to the protein level, and increase with time. UXT initially was dispersed in the extranuclear cytosol, then appeared in punctate cytosolic dots, then an intense perinuclear aggregation that eventually invaded and disrupted the nucleus. The punctate cytosolic aggregates of GFP-UXT coincided with aggregates of mitochondria and LRPPRC. We conclude that increasing concentrations of UXT contributes to progressive aggregation of mitochondria and cell death potentially through association of UXT with LRPPRC."	"Defects in energy homeostasis in Leigh syndrome French Canadian variant through PGC-1alpha/LRP130 complex. Leigh syndrome French Canadian variant (LSFC) is an autosomal recessive neurodegenerative disorder due to mutation in the LRP130 (leucine-rich protein 130 kDa) gene. Unlike classic Leigh syndrome, the French Canadian variant spares the heart, skeletal muscle, and kidneys, but severely affects the liver. The precise role of LRP130 in cytochrome c oxidase deficiency and hepatic lactic acidosis that accompanies this disorder is unknown. We show here that LRP130 is a component of the PGC-1alpha (peroxisome proliferator-activated receptor coactivator 1-alpha) transcriptional coactivator holocomplex and regulates expression of PEPCK (phosphoenolpyruvate carboxykinase), G6P (glucose-6-phosphatase), and certain mitochondrial genes through PGC-1alpha. Reduction of LRP130 in fasted mice via adenoviral RNA interference (RNAi) vector blocks the induction of PEPCK and G6P, and blunts hepatic glucose output. LRP130 is also necessary for PGC-1alpha-dependent transcription of several mitochondrial genes in vivo. These data link LRP130 and PGC-1alpha to defective hepatic energy homeostasis in LSFC, and reveal a novel regulatory mechanism of glucose homeostasis."	"Mitochondrial-related gene expression changes are sensitive to agonal-pH state: implications for brain disorders. Mitochondrial defects in gene expression have been implicated in the pathophysiology of bipolar disorder and schizophrenia. We have now contrasted control brains with low pH versus high pH and showed that 28% of genes in mitochondrial-related pathways meet criteria for differential expression. A majority of genes in the mitochondrial, chaperone and proteasome pathways of nuclear DNA-encoded gene expression were decreased with decreased brain pH, whereas a majority of genes in the apoptotic and reactive oxygen stress pathways showed an increased gene expression with a decreased brain pH. There was a significant increase in mitochondrial DNA copy number and mitochondrial DNA gene expression with increased agonal duration. To minimize effects of agonal-pH state on mood disorder comparisons, two classic approaches were used, removing all subjects with low pH and agonal factors from analysis, or grouping low and high pH as a separate variable. Three groups of potential candidate genes emerged that may be mood disorder related: (a) genes that showed no sensitivity to pH but were differentially expressed in bipolar disorder or major depressive disorder; (b) genes that were altered by agonal-pH in one direction but altered in mood disorder in the opposite direction to agonal-pH and (c) genes with agonal-pH sensitivity that displayed the same direction of changes in mood disorder. Genes from these categories such as NR4A1 and HSPA2 were confirmed with Q-PCR. The interpretation of postmortem brain studies involving broad mitochondrial gene expression and related pathway alterations must be monitored against the strong effect of agonal-pH state. Genes with the least sensitivity to agonal-pH could present a starting point for candidate gene search in neuropsychiatric disorders."	"Identification of novel targets of MYC whose transcription requires the essential MbII domain. The MYC oncoprotein is among the most potent regulators of cell cycle progression and malignant transformation in human cells. Current models suggest that much of MYC's role in these processes is related to its ability to regulate the transcription of downstream target genes that encode the ultimate effector proteins. In addition to its carboxy-terminal DNA binding and dimerization domains, an enigmatic motif in the amino terminus termed MbII is required for all of MYC's biological activities. In spite of historical observations demonstrating the absolute requirement for MbII in these biological functions, clues implicating this domain in target gene transcription have only recently appeared. Based on this emerging link between MbII and transcriptional activation, we hypothesized that the identification of individual MYC targets whose transactivation requires MbII would help define the essential downstream effectors of MYC in transformation and cell cycle progression. In hopes of directly identifying new MbII-dependent MYC target genes, an expression profiling screen was conducted. This screen resulted in our identification of ten novel downstream targets of MYC. As a proof of principle, we recently demonstrated using RNAi-mediated depletion that one of these targets, the metastasis regulator MTA1, is absolutely required for MYC mediated transformation. Here we report the identity of these previously uncharacterized MYC targets and discuss their potential roles in MYC function. In addition, we attempt to reconcile the historical and contemporary evidence linking MbII to transcriptional activation."	"Putative tumor suppressor RASSF1 interactive protein and cell death inducer C19ORF5 is a DNA binding protein. C19ORF5 is a homologue of microtubule-associated protein MAP1B that interacts with natural paclitaxel-like microtubule stabilizer and candidate tumor suppressor RASSF1A. Although normally distributed throughout the cytosol, C19ORF5 specifically associates with microtubules stabilized by paclitaxel or RASSF1A. At sufficiently high concentrations, C19ORF5 causes mitochondrial aggregation and genome destruction (MAGD). The accumulation on hyperstabilized microtubules coupled to MAGD has been proposed to mediate tumor suppression by the taxoid drug family and RASSF1A. Here, we show that the C-terminus of C19ORF5 (C19ORF5C) interacts with mitochondria-associated DNA binding protein, LRPPRC, in liver cells. Like LRPPRC, C19ORF5 also binds DNA with an affinity and specificity sufficient to be of utility in DNA affinity chromatography to purify homogeneous recombinant C19ORF5C from bacterial extracts. Homogeneous C19ORF5 exhibited no intrinsic DNase activity. Deletion mutagenesis indicated that C19ORF5 selectively binds double stranded DNA through its microtubule binding domain. These results suggest C19ORF5 as a DNA binding protein similar to microtubule-associated proteins tau and MAP2."	"Isolation of an mRNA binding protein homologue that is expressed in nociceptors. The peripheral detection of painful stimuli requires the activation of small-diameter primary afferent neurons known as nociceptors. We have exploited two features of nociceptor biology, expression of the high affinity receptor for nerve growth factor (TrkA) and sensitivity to capsaicin, to isolate novel proteins using a differential display cloning scheme. A resulting approximately 4.3-kb cDNA was isolated and sequence analysis inferred a approximately 157-kDa protein containing a signal/mitochondrial targeting peptide sequence. Due to its molecular weight and significant amino acid identity with 'human leucine-rich protein 130'[leucine-rich pentatricopeptide motif containing (LRPPRC)], we termed the cDNA candidate leucine-rich protein 157 (rLRP157). Western blot analysis of HEK293 cells over-expressing the candidate cDNA showed a single protein product of similar size to that found in rat dorsal root ganglion as well as in other neuronal tissues and cell lines. Although expressed in a wide variety of tissues, in situ hybridization and immunohistochemistry in dorsal root ganglion revealed that rLRP157 expression was restricted to the small-diameter neurons. Sequence identity with previously characterized mRNA binding proteins and its subcellular localization in sensory neurons suggest that rLRP157 is associated with mitochondrial function. Moreover, the genetic basis of French-Canadian Leigh syndrome, which confers a loss of mitochondrial cytochrome c oxidase and is characterized by neurodegeneration, was recently mapped to a mutation in the LRPPRC gene. Taken together with its expression in small-diameter sensory neurons, we hypothesize that rLRP157, the rat orthologue of the human LRPPRC, may play a role in the modulation of peripheral pain transduction and serve as a novel marker for nociceptor subtypes."	"New invMED1 element cis-activates human multidrug-related MDR1 and MVP genes, involving the LRP130 protein. The MDR1 gene is a key component of the cytotoxic defense network and its overexpression results in the multidrug resistance (MDR) phenotype. However, the molecular mechanisms that regulate the MDR1 gene and coordinate multiple MDR-related genes expression are poorly understood. In a previous study, we identified a new 12 bp cis-activating region in the 5'-flanking region of the human MDR1 gene, which we called inverted MED1. In the present study, we characterized the precise binding element, which we named invMED1, and revealed the presence of the LRP130 protein as the nuclear factor. Its binding intensity increases with the endogenous MDR1 geneexpression and with the MDR level of CEM leukemia cells. Interestingly, the LRP130 level did not vary with the chemoresistance level. We observed the involvement of LRP130 in the transcriptional activity of the MDR1 gene promoter, and moreover, in that of the MDR-related, invMED1-containing, MVP gene promoter. We used siRNAs and transcriptional decoys in two unrelated human cancer cell lines to show the role of the invMED1/LRP130 couple in both MDR1 and MVP endogenous genes activities. We showed that invMED1 was localized in the -105/-100 and -148/-143 regions of the MDR1 and MVP gene promoters, respectively. In addition, since the invMED1 sequence is primarily located in the -160/-100 bp region of mammalian MDR-related genes, our results present the invMED1/LRP130 couple as a potential central regulator of the transcription of these genes."	"The role of the LRPPRC (leucine-rich pentatricopeptide repeat cassette) gene in cytochrome oxidase assembly: mutation causes lowered levels of COX (cytochrome c oxidase) I and COX III mRNA. Leigh syndrome French Canadian (LSFC) is a variant of cytochrome oxidase deficiency found in Québec and caused by mutations in the LRPPRC (leucine-rich pentatricopeptide repeat cassette) gene. Northern blots showed that the LRPPRC mRNA levels seen in skeletal muscle&gt;heart&gt;placenta&gt;kidney&gt;liver&gt;lung=brain were proportionally almost opposite in strength to the severity of the enzymic cytochrome oxidase defect. The levels of COX (cytochrome c oxidase) I and COX III mRNA visible on Northern blots were reduced in LSFC patients due to the common (A354V, Ala354--&gt;Val) founder mutation. The amount of LRPPRC protein found in both fibroblast and liver mitochondria from LSFC patients was consistently reduced to &lt;30% of control levels. Import of [(35)S]methionine LRPPRC into rat liver mitochondria was slower for the mutant (A354V) protein. A titre of LRPPRC protein was also found in nuclear fractions that could not be easily accounted for by mitochondrial contamination. [35S]Methionine labelling of mitochondrial translation products showed that the translation of COX I, and perhaps COX III, was specifically reduced in the presence of the mutation. These results suggest that the gene product of LRPPRC, like PET 309p, has a role in the translation or stability of the mRNA for mitochondrially encoded COX subunits. A more diffuse distribution of LRPPRC in LSFC cells compared with controls was evident when viewed by immunofluorescence microscopy, with less LRPPRC present in peripheral mitochondria."	"LRP130, a single-stranded DNA/RNA-binding protein, localizes at the outer nuclear and endoplasmic reticulum membrane, and interacts with mRNA in vivo. LRP130 (also known as a LRPPRC) is an RNA and single-stranded DNA-binding protein, and recently identified as a candidate gene responsible for the Leigh syndrome, a French-Canadian type cytochrome c oxidase deficiency. However, the biological function of LRP130 still remains largely unresolved. In the present study, we found that the C-terminal half of the mouse LRP130 located within a 120 amino acid sequence (a.a. 845-964) binds to synthetic RNA homopolymers, poly(G), poly(U), and poly(C), as well as r(CUGCC)(6). Assessment of the subcellular localization indicated both nuclear/endoplasmic reticulum (ER) and mitochondrial fractions to be positive. To further analyze the subcellular localization of LRP130, a nuclear/ER fraction was fractionated into the nucleoplasm (NP) and nuclear envelope (NE)/ER, and the latter was further separated into outer nuclear membrane (ONM)/ER and inner nuclear membrane (INM) by treatment with Triton X-100. LRP130 was detectable in all three fractions, and the distribution pattern was in good accordance with that known for ONM/ER proteins. Interestingly, immunostaining of HeLa cells demonstrated nuclear rim staining of LRP130, specifically at the outside of the NE and also at ER, and association of LRP130 with poly(A)(+) RNA was restricted only to the ONM/ER fraction. Overexpression of full-length mouse LRP130 fused with EGFP resulted in nuclear accumulation of poly(A)(+) RNA in HeLa cells. Taking all these results together, it is suggested that LRP130, a novel type of RNA-binding protein, associates with mRNA/mRNP complexes at the outside of NE and ER, and plays a role in control of mRNA metabolisms."	"LRP130, a pentatricopeptide motif protein with a noncanonical RNA-binding domain, is bound in vivo to mitochondrial and nuclear RNAs. LRP130 (also known as LRPPRC) is an RNA-binding protein that is a constituent of postsplicing nuclear RNP complexes associated with mature mRNA. It belongs to a growing family of pentatricopeptide repeat (PPR) motif-containing proteins, several of which have been implicated in organellar RNA metabolism. We show here that only a fraction of LRP130 proteins are in nuclei and are directly bound in vivo to at least some of the same RNA molecules as the nucleocytoplasmic shuttle protein hnRNP A1. The majority of LRP130 proteins are located within mitochondria, where they are directly bound to polyadenylated RNAs in vivo. In vitro, LRP130 binds preferentially to polypyrimidines. This RNA-binding activity maps to a domain in its C-terminal region that does not contain any previously described RNA-binding motifs and that contains only 2 of the 11 predicted PPR motifs. Therefore, LRP130 is a novel type of RNA-binding protein that associates with both nuclear and mitochondrial mRNAs and as such is a potential candidate for coordinating nuclear and mitochondrial gene expression. These findings provide the first identification of a mammalian protein directly bound to mitochondrial RNA in vivo and provide a possible molecular explanation for the recently described association of mutations in LRP130 with cytochrome c oxidase deficiency in humans."	"Novel complex integrating mitochondria and the microtubular cytoskeleton with chromosome remodeling and tumor suppressor RASSF1 deduced by in silico homology analysis, interaction cloning in yeast, and colocalization in cultured cells. Availability of the complete sequence of the human genome and sequence homology analysis has accelerated new protein discovery and clues to protein function. Protein-protein interaction cloning suggests multisubunit complexes and pathways. Here, we combine these molecular approaches with cultured cell colocalization analysis to suggest a novel complex and a pathway that integrate the mitochondrial location and the microtubular cytoskeleton with chromosome remodeling, apoptosis, and tumor suppression based on a novel leucine-rich pentatricopeptide repeat-motif-containing protein (LRPPRC) that copurified with the fibroblast growth factor receptor complex. One round of interaction cloning and sequence homology analysis defined a primary LRPPRC complex with novel subunits cat eye syndrome chromosome region candidate 2 (CECR2), ubiquitously expressed transcript (UXT), and chromosome 19 open reading frames 5 (C19ORF5) but still of unknown function. Immuno, deoxyribonucleic acid (DNA), and green fluorescent protein (GFP) tag colocalization analyses revealed that LRPPRC appears in both cytosol and nuclei of cultured cells, colocalizes with mitochondria and beta-tubulin rather than with alpha-actin in the cytosol of interphase cells, and exhibits phase-dependent organization around separating chromosomes in mitotic cells. GFP-tagged CECR2B was strictly nuclear and colocalized with condensed DNA in apoptotic cells. GFP-tagged UXT and GFP-tagged C19ORF5 appeared in both cytosol and nuclei and colocalized with LRPPRC and beta-tubulin. Cells exhibiting nuclear C19ORF5 were apoptotic. Screening for interactive substrates with the primary LRPPRC substrates in the human liver complementary DNA library revealed that CECR2B interacted with chromatin-associated TFIID-associated protein TAFII30 and ribonucleic acid splicing factor SRP40, UXT bridged to CBP/p300-binding factor CITED2 and kinetochore-associated factor BUB3, and C19ORF5 complexed with mitochondria-associated NADH dehydrogenase I and cytochrome c oxidase I. C19ORF5 also interacted with RASSF1, providing a bridge to apoptosis and tumor suppression."	"Identification of a gene causing human cytochrome c oxidase deficiency by integrative genomics. Identifying the genes responsible for human diseases requires combining information about gene position with clues about biological function. The recent availability of whole-genome data sets of RNA and protein expression provides powerful new sources of functional insight. Here we illustrate how such data sets can expedite disease-gene discovery, by using them to identify the gene causing Leigh syndrome, French-Canadian type (LSFC, Online Mendelian Inheritance in Man no. 220111), a human cytochrome c oxidase deficiency that maps to chromosome 2p16-21. Using four public RNA expression data sets, we assigned to all human genes a &quot;score&quot; reflecting their similarity in RNA-expression profiles to known mitochondrial genes. Using a large survey of organellar proteomics, we similarly classified human genes according to the likelihood of their protein product being associated with the mitochondrion. By intersecting this information with the relevant genomic region, we identified a single clear candidate gene, LRPPRC. Resequencing identified two mutations on two independent haplotypes, providing definitive genetic proof that LRPPRC indeed causes LSFC. LRPPRC encodes an mRNA-binding protein likely involved with mtDNA transcript processing, suggesting an additional mechanism of mitochondrial pathophysiology. Similar strategies to integrate diverse genomic information can be applied likewise to other disease pathways and will become increasingly powerful with the growing wealth of diverse, functional genomics data."	"LRP130, a protein containing nine pentatricopeptide repeat motifs, interacts with a single-stranded cytosine-rich sequence of mouse hypervariable minisatellite Pc-1. Recently, we have identified and purified minisatellite DNA binding proteins (MNBPs) that bind to the mouse hypervariable minisatellite Pc-1, from NIH3T3 cells. This study describes the isolation and characterization of a mouse leucine-rich protein (mLRP130) as one of the MNBPs that binds to the C-rich strand of Pc-1. The mLRP130 cDNA was demonstrated to encode a polypeptide of 1306 amino-acid residues with a deduced molecular mass of 137 kDa, and the mLRP130 mRNA is detected in various organs, including heart, brain, liver, skeletal muscle, kidneys and testes. The mLRP130 protein has nine copies of pentatricopeptide repeat (PPR) motifs that are considered to serve as protein-protein interactions. Two forms of the mLRP130 protein were detected in NIH3T3 cells with an approximate molecular mass of 140 kDa (mLRP130) and 100 kDa (mLRP130der), and were detected mainly in nuclear and cytoplasmic fractions, respectively. Immunofluorescence microscopic analysis demonstrated dominant localization of mLRP130 at the perinuclear region, and also in the nucleus and cytoplasm with dot- or squiggle-like staining. The immunoprecipitated mLRP130 bound to the single-stranded d(CTGCC)8, but not to its complementary G-rich strand of d(GGCAG)8 or double-stranded form. Possible biological roles of mLRP130 are discussed in association with the stability of minisatellite DNA sequences."	"Sequence analysis of LRPPRC and its SEC1 domain interaction partners suggests roles in cytoskeletal organization, vesicular trafficking, nucleocytosolic shuttling, and chromosome activity. LRPPRC (originally called LRP130) is an intracellular, 130-kD, leucine-rich protein that copurifies with the fibroblast growth factor receptor from liver cell extracts and has been detected in diverse multiprotein complexes from the cell membrane, cytoskeleton, and nucleus. Here we report results of a sequence homology analysis of LRPPRC and its SEC1 domain interactive partners. We found that 23 copies of tandem repeats that are similar to pentatricopeptide, tetratricopeptide, and huntingtin-elongation A subunit-TOR repeats characterize the LRPPRC sequence. The amino terminus exhibits multiple copies of leucine-rich nuclear transport signals followed by ENTH, DUF28, and SEC1 homology domains. We used the SEC1 domain to trap interactive partners expressed from a human liver cDNA library. Interactive C19ORF5 (XP_038600) exhibited a strong homology to microtubule-associated proteins and a potential arginine-rich mRNA binding motif. UXT (XP_033860) exhibited alpha-helical properties homologous to the actin-associated spectrin repeat and L/I heptad repeats in mobile transcription factors. C6ORF34 (XP_004305) was homologous to the non-DNA-binding carboxy terminus of the Escherichia coli Rob transcription factor. CECR2 (AAK15343) exhibited a transcription factor AT-hook motif next to two bromodomains and a homology to guanylatebinding protein-1. Together these features suggest a regulatory role of LRPPRC and its SEC1 domain-interactive partners in integration of cytoskeletal networks with vesicular trafficking, nucleocytosolic shuttling, transcription, chromosome remodeling, and cytokinesis."	"lrp130 gene assigned to chromosome 2. NA"	"Molecular cloning and expression of the gene for a major leucine-rich protein from human hepatoblastoma cells (HepG2). The human hepatoblastoma cell line, HepG2, exhibits an array of stable properties in culture that have made it a popular cell culture model for studies on regulation of liver-specific gene expression and properties of hepatoma cells. In contrast to other hepatoma cell lines, HepG2 cells overexpress a characteristic detergent-extractable, wheat germ lectin-binding protein with apparent molecular mass of 130 kDa. Using an antibody to screen a phage expression library of HepG2 complementary DNA (cDNA), we identified and cloned a 4734 base pair cDNA which codes for a 130-kDa leucine-rich protein (lrp 130) when expressed in transfected cells. The deduced sequence of lrp130 exhibits sequences weakly homologous to the consensus sequence for the ATP binding site in ATP-dependent kinases and the protein kinase C phosphorylation site of the epidermal growth factor receptor. Consistent with the higher levels of expression of lrp130 antigen, Northern hybridization analysis indicated that HepG2 cells express high levels of the major 4.8 kilobase lrp130 mRNA relative to other hepatoma cells. Although currently of unknown function, lrp130 may be of utility as a marker for liver cell lineages represented by the HepG2 cell line."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NDUFS1"	"Leigh syndrome"	"NDUFS4 deletion triggers loss of NDUFA12 in Ndufs4<sup>-/-</sup> mice and Leigh syndrome patients: A stabilizing role for NDUFAF2. Mutations in NDUFS4, which encodes an accessory subunit of mitochondrial oxidative phosphorylation (OXPHOS) complex I (CI), induce Leigh syndrome (LS). LS is a poorly understood pediatric disorder featuring brain-specific anomalies and early death. To study the LS pathomechanism, we here compared OXPHOS proteomes between various Ndufs4<sup>-/-</sup> mouse tissues. Ndufs4<sup>-/-</sup> animals displayed significantly lower CI subunit levels in brain/diaphragm relative to other tissues (liver/heart/kidney/skeletal muscle), whereas other OXPHOS subunit levels were not reduced. Absence of NDUFS4 induced near complete absence of the NDUFA12 accessory subunit, a 50% reduction in other CI subunit levels, and an increase in specific CI assembly factors. Among the latter, NDUFAF2 was most highly increased. Regarding NDUFS4, NDUFA12 and NDUFAF2, identical results were obtained in Ndufs4<sup>-/-</sup> mouse embryonic fibroblasts (MEFs) and NDUFS4-mutated LS patient cells. Ndufs4<sup>-/-</sup> MEFs contained active CI in situ but blue-native-PAGE highlighted that NDUFAF2 attached to an inactive CI subcomplex (CI-830) and inactive assemblies of higher MW. In NDUFA12-mutated LS patient cells, NDUFA12 absence did not reduce NDUFS4 levels but triggered NDUFAF2 association to active CI. BN-PAGE revealed no such association in LS patient fibroblasts with mutations in other CI subunit-encoding genes where NDUFAF2 was attached to CI-830 (NDUFS1, NDUFV1 mutation) or not detected (NDUFS7 mutation). Supported by enzymological and CI in silico structural analysis, we conclude that absence of NDUFS4 induces near complete absence of NDUFA12 but not vice versa, and that NDUFAF2 stabilizes active CI in Ndufs4<sup>-/-</sup> mice and LS patient cells, perhaps in concert with mitochondrial inner membrane lipids."	"12 days of in vivo caloric reduction can improve important parameters of aging in humans. Caloric reduction (CR) is considered as the most reasonable intervention to delay aging and age-related diseases. Numerous studies in various model organisms provide the main basis for this hypothesis. Human studies exist, but they differ widely in study design, characteristics of test persons and study outcome. In this study we investigated CR in humans on a molecular level to gain a better understanding in these processes. For that purpose, we analyzed human peripheral blood mononuclear cells of healthy people fasting according to F.X. Mayr. In a previous study our group could show a significantly improved DNA repair capacity after fasting. Here we were able to confirm these findings despite a slightly modified fasting therapy. Furthermore, the function of the mitochondrial respiratory chain and the mRNA levels of the mitochondria-associated genes SIRT3 and NDUFS1 were significantly affected by CR. However, these changes were only detectable in people who exhibited no improvement in DNA repair capacity. In contrast to that we could not observe any changes in ROS levels, mitochondrial DNA copy number and non-mitochondrial respiration. Altogether our results reveal that CR in form of F. X. Mayr therapy is able to positively influence several cellular parameters and especially mitochondrial function."	"Akap1 deficiency exacerbates diabetic cardiomyopathy in mice by NDUFS1-mediated mitochondrial dysfunction and apoptosis. Diabetic cardiomyopathy, characterised by increased oxidative damage and mitochondrial dysfunction, contributes to the increased risk of heart failure in individuals with diabetes. Considering that A-kinase anchoring protein 121 (AKAP1) is localised in the mitochondrial outer membrane and plays key roles in the regulation of mitochondrial function, this study aimed to investigate the role of AKAP1 in diabetic cardiomyopathy and explore its underlying mechanisms. Loss- and gain-of-function approaches were used to investigate the role of AKAP1 in diabetic cardiomyopathy. Streptozotocin (STZ) was injected into Akap1-knockout (Akap1-KO) mice and their wild-type (WT) littermates to induce diabetes. In addition, primary neonatal cardiomyocytes treated with high glucose were used as a cell model of diabetes. Cardiac function was assessed with echocardiography. Akap1 overexpression was conducted by injecting adeno-associated virus 9 carrying Akap1 (AAV9-Akap1). LC-MS/MS analysis and functional experiments were used to explore underlying molecular mechanisms. AKAP1 was downregulated in the hearts of STZ-induced diabetic mouse models. Akap1-KO significantly aggravated cardiac dysfunction in the STZ-treated diabetic mice when compared with WT diabetic littermates, as evidenced by the left ventricular ejection fraction (LVEF; STZ-treated WT mice [WT/STZ] vs STZ-treated Akap1-KO mice [KO/STZ], 51.6% vs 41.6%). Mechanistically, Akap1 deficiency impaired mitochondrial respiratory function characterised by reduced ATP production. Additionally, Akap1 deficiency increased cardiomyocyte apoptosis via enhanced mitochondrial reactive oxygen species (ROS) production. Furthermore, immunoprecipitation and mass spectrometry analysis indicated that AKAP1 interacted with the NADH-ubiquinone oxidoreductase 75 kDa subunit (NDUFS1). Specifically, Akap1 deficiency inhibited complex I activity by preventing translocation of NDUFS1 from the cytosol to mitochondria. Akap1 deficiency was also related to decreased ATP production and enhanced mitochondrial ROS-related apoptosis. In contrast, restoration of AKAP1 expression in the hearts of STZ-treated diabetic mice promoted translocation of NDUFS1 to mitochondria and alleviated diabetic cardiomyopathy in the LVEF (WT/STZ injected with adeno-associated virus carrying gfp [AAV9-gfp] vs WT/STZ AAV9-Akap1, 52.4% vs 59.6%; KO/STZ AAV9-gfp vs KO/STZ AAV9-Akap1, 42.2% vs 57.6%). Our study provides the first evidence that Akap1 deficiency exacerbates diabetic cardiomyopathy by impeding mitochondrial translocation of NDUFS1 to induce mitochondrial dysfunction and cardiomyocyte apoptosis. Our findings suggest that Akap1 upregulation has therapeutic potential for myocardial injury in individuals with diabetes."	"Genetic heterogeneity in Leigh syndrome: Highlighting treatable and novel genetic causes. Leigh syndrome (LS), the most common childhood mitochondrial disorder, has characteristic clinical and neuroradiologic features. Mutations in more than 75 genes have been identified in both the mitochondrial and nuclear genome, implicating a high degree of genetic heterogeneity in LS. To profile these genetic signatures and understand the pathophysiology of LS, we recruited 64 patients from 62 families who were clinically diagnosed with LS at Seoul National University Children's Hospital. Mitochondrial genetic analysis followed by whole-exome sequencing was performed on 61 patients. Pathogenic variants in mitochondrial DNA were identified in 18 families and nuclear DNA mutations in 22. The following 17 genes analyzed in 40 families were found to have genetic complexity: MTATP6, MTND1, MTND3, MTND5, MTND6, MTTK, NDUFS1, NDUFV1, NDUFAF6, SURF1, SLC19A3, ECHS1, PNPT1, IARS2, NARS2, VPS13D, and NAXE. Two treatable cases had biotin-thiamine responsive basal ganglia disease, and another three were identified as having defects in the newly recognized genes (VPS13D or NAXE). Variants in the nuclear genes that encoded mitochondrial aminoacyl tRNA synthetases were present in 27.3% of cases. Our findings expand the genetic and clinical spectrum of LS, showing genetic heterogeneity and highlighting treatable cases and those with novel genetic causes."	"Chronic heart failure with diabetes mellitus is characterized by a severe skeletal muscle pathology. Patients with coexistent chronic heart failure (CHF) and diabetes mellitus (DM) demonstrate greater exercise limitation and worse prognosis compared with CHF patients without DM, even when corrected for cardiac dysfunction. Understanding the origins of symptoms in this subgroup may facilitate development of targeted treatments. We therefore characterized the skeletal muscle phenotype and its relationship to exercise limitation in patients with diabetic heart failure (D-HF). In one of the largest muscle sampling studies in a CHF population, pectoralis major biopsies were taken from age-matched controls (n = 25), DM (n = 10), CHF (n = 52), and D-HF (n = 28) patients. In situ mitochondrial function and reactive oxygen species, fibre morphology, capillarity, and gene expression analyses were performed and correlated to whole-body exercise capacity. Mitochondrial respiration, content, coupling efficiency, and intrinsic function were lower in D-HF patients compared with other groups (P &lt; 0.05). A unique mitochondrial complex I dysfunction was present in D-HF patients only (P &lt; 0.05), which strongly correlated to exercise capacity (R<sup>2</sup> = 0.64; P &lt; 0.001). Mitochondrial impairments in D-HF corresponded to higher levels of mitochondrial reactive oxygen species (P &lt; 0.05) and lower gene expression of anti-oxidative enzyme superoxide dismutase 2 (P &lt; 0.05) and complex I subunit NDUFS1 (P &lt; 0.05). D-HF was also associated with severe fibre atrophy (P &lt; 0.05) and reduced local fibre capillarity (P &lt; 0.05). Patients with D-HF develop a specific skeletal muscle pathology, characterized by mitochondrial impairments, fibre atrophy, and derangements in the capillary network that are linked to exercise intolerance. These novel preliminary data support skeletal muscle as a potential therapeutic target for treating patients with D-HF."	"Human muscle pathology is associated with altered phosphoprotein profile of mitochondrial proteins in the skeletal muscle. Analysis of human muscle diseases highlights the role of mitochondrial dysfunction in the skeletal muscle. Our previous work revealed that diverse upstream events correlated with altered mitochondrial proteome in human muscle biopsies. However, several proteins showed relatively unchanged expression suggesting that post-translational modifications, mainly protein phosphorylation could influence their activity and regulate mitochondrial processes. We conducted mitochondrial phosphoprotein profiling, by proteomics approach, of healthy human skeletal muscle (n = 10) and three muscle diseases (n = 10 each): Dysferlinopathy, Polymyositis and Distal Myopathy with Rimmed Vacuoles. Healthy human muscle mitochondrial proteins displayed 253 phosphorylation sites (phosphosites), which contributed to metabolic and redox processes and mitochondrial organization etc. Electron transport chain complexes accounted for 84 phosphosites. Muscle pathologies displayed 33 hyperphosphorylated and 14 hypophorphorylated sites with only 5 common proteins, indicating varied phosphorylation profile across muscle pathologies. Molecular modelling revealed altered local structure in the phosphorylated sites of Voltage-Dependent Anion Channel 1 and complex V subunit ATP5B1. Molecular dynamics simulations in complex I subunits NDUFV1, NDUFS1 and NDUFV2 revealed that phosphorylation induced structural alterations thereby influencing electron transfer and potentially altering enzyme activity. We propose that altered phosphorylation at specific sites could regulate mitochondrial protein function in the skeletal muscle during physiological and pathological processes."	"Effect of Antioxidant Supplementation on the Sperm Proteome of Idiopathic Infertile Men. Antioxidant supplementation in idiopathic male infertility has a beneficial effect on semen parameters. However, the molecular mechanism behind this effect has not been reported. The objective of this study was to evaluate the sperm proteome of idiopathic infertile men pre- and post-antioxidant supplementation. Idiopathic infertile men were provided with oral antioxidant supplementation once daily for a period of 6 months. Of the 379 differentially expressed proteins (DEPs) between pre- and post-antioxidant treatment patients, the majority of the proteins (n = 274) were overexpressed following antioxidant treatment. Bioinformatic analysis revealed the activation of oxidative phosphorylation pathway and upregulation of key proteins involved in spermatogenesis, sperm maturation, binding of sperm, fertilization and normal reproductive function. In addition, the transcriptional factors associated with antioxidant defense system (PPARGC1A) and free radical scavenging (NFE2L2) were predicted to be functionally activated post-treatment. Key DEPs, namely, NDUFS1, CCT3, PRKARA1 and SPA17 validated by Western blot showed significant overexpression post-treatment. Our novel proteomic findings suggest that antioxidant supplementation in idiopathic infertile men improves sperm function at the molecular level by modulating proteins involved in CREM signaling, mitochondrial function and protein oxidation. Further, activation of TRiC complex helped in nuclear compaction, maintenance of telomere length, flagella function, and expression of zona pellucida receptors for sperm-oocyte interaction."	"Mutations in NDUFS1 Cause Metabolic Reprogramming and Disruption of the Electron Transfer. Complex I (CI) is the first enzyme of the mitochondrial respiratory chain and couples the electron transfer with proton pumping. Mutations in genes encoding CI subunits can frequently cause inborn metabolic errors. We applied proteome and metabolome profiling of patient-derived cells harboring pathogenic mutations in two distinct CI genes to elucidate underlying pathomechanisms on the molecular level. Our results indicated that the electron transfer within CI was interrupted in both patients by different mechanisms. We showed that the biallelic mutations in NDUFS1 led to a decreased stability of the entire N-module of CI and disrupted the electron transfer between two iron-sulfur clusters. Strikingly interesting and in contrast to the proteome, metabolome profiling illustrated that the pattern of dysregulated metabolites was almost identical in both patients, such as the inhibitory feedback on the TCA cycle and altered glutathione levels, indicative for reactive oxygen species (ROS) stress. Our findings deciphered pathological mechanisms of CI deficiency to better understand inborn metabolic errors."	"Gene-based genome-wide association studies and meta-analyses of conotruncal heart defects. Conotruncal heart defects (CTDs) are among the most common and severe groups of congenital heart defects. Despite evidence of an inherited genetic contribution to CTDs, little is known about the specific genes that contribute to the development of CTDs. We performed gene-based genome-wide analyses using microarray-genotyped and imputed common and rare variants data from two large studies of CTDs in the United States. We performed two case-parent trio analyses (N = 640 and 317 trios), using an extension of the family-based multi-marker association test, and two case-control analyses (N = 482 and 406 patients and comparable numbers of controls), using a sequence kernel association test. We also undertook two meta-analyses to combine the results from the analyses that used the same approach (i.e. family-based or case-control). To our knowledge, these analyses are the first reported gene-based, genome-wide association studies of CTDs. Based on our findings, we propose eight CTD candidate genes (ARF5, EIF4E, KPNA1, MAP4K3, MBNL1, NCAPG, NDFUS1 and PSMG3). Four of these genes (ARF5, KPNA1, NDUFS1 and PSMG3) have not been previously associated with normal or abnormal heart development. In addition, our analyses provide additional evidence that genes involved in chromatin-modification and in ribonucleic acid splicing are associated with congenital heart defects."	"Complex I and MDM2: hit me baby one more time. MDM2 (mouse double minute 2) functions as both a tumor suppressor and oncogene, yet little is known if MDM2 regulates cancer cell biology by altering cellular metabolism. We recently found that MDM2 binds NDUFS1 (NADH:ubiquinone oxidoreductase 75 kDa Fe-S protein 1), a key protein involved in Complex I assembly, function, and efficiency. The MDM2⋅NDUFS1 interaction promotes reactive oxygen species production, DNA damage, and apoptosis."	"Ndufs2, a Core Subunit of Mitochondrial Complex I, Is Essential for Acute Oxygen-Sensing and Hypoxic Pulmonary Vasoconstriction. Hypoxic pulmonary vasoconstriction (HPV) optimizes systemic oxygen delivery by matching ventilation to perfusion. HPV is intrinsic to pulmonary artery smooth muscle cells (PASMCs). Hypoxia dilates systemic arteries, including renal arteries. Hypoxia is sensed by changes in mitochondrial-derived reactive oxygen species, notably hydrogen peroxide (H2O2) ([H2O2]mito). Decreases in [H2O2]mito elevate pulmonary vascular tone by increasing intracellular calcium ([Ca<sup>2+</sup>]i) through reduction-oxidation regulation of ion channels. Although HPV is mimicked by the Complex I inhibitor, rotenone, the molecular identity of the O2 sensor is unknown. To determine the role of Ndufs2 (NADH [nicotinamide adenine dinucleotide] dehydrogenase [ubiquinone] iron-sulfur protein 2), Complex I's rotenone binding site, in pulmonary vascular oxygen-sensing. Mitochondria-conditioned media from pulmonary and renal mitochondria isolated from normoxic and chronically hypoxic rats were infused into an isolated lung bioassay. Mitochondria-conditioned media from normoxic lungs contained more H2O2 than mitochondria-conditioned media from chronic hypoxic lungs or kidneys and uniquely attenuated HPV via a catalase-dependent mechanism. In PASMC, acute hypoxia decreased H2O2 within 112±7 seconds, followed, within 205±34 seconds, by increased intracellular calcium concentration, [Ca<sup>2+</sup>]i. Hypoxia had no effects on [Ca<sup>2+</sup>]i in renal artery SMC. Hypoxia decreases both cytosolic and mitochondrial H2O2 in PASMC while increasing cytosolic H2O2 in renal artery SMC. Ndufs2 expression was greater in PASMC versus renal artery SMC. Lung Ndufs2 cysteine residues became reduced during acute hypoxia and both hypoxia and reducing agents caused functional inhibition of Complex I. In PASMC, siNdufs2 (cells/tissue treated with Ndufs2 siRNA) decreased normoxic H2O2, prevented hypoxic increases in [Ca<sup>2+</sup>]i, and mimicked aspects of chronic hypoxia, including decreasing Complex I activity, elevating the nicotinamide adenine dinucleotide (NADH/NAD<sup>+</sup>) ratio and decreasing expression of the O2-sensitive ion channel, Kv1.5. Knocking down another Fe-S center within Complex I (Ndufs1, NADH [nicotinamide adenine dinucleotide] dehydrogenase [ubiquinone] iron-sulfur protein 1) or other mitochondrial subunits proposed as putative oxygen sensors (Complex III's Rieske Fe-S center and COX4i2 [cytochrome c oxidase subunit 4 isoform 2] in Complex IV) had no effect on hypoxic increases in [Ca<sup>2+</sup>]i. In vivo, siNdufs2 significantly decreased hypoxia- and rotenone-induced constriction while enhancing phenylephrine-induced constriction. Ndufs2 is essential for oxygen-sensing and HPV."	"MDM2 Integrates Cellular Respiration and Apoptotic Signaling through NDUFS1 and the Mitochondrial Network. Signaling diversity and subsequent complexity in higher eukaryotes is partially explained by one gene encoding a polypeptide with multiple biochemical functions in different cellular contexts. For example, mouse double minute 2 (MDM2) is functionally characterized as both an oncogene and a tumor suppressor, yet this dual classification confounds the cell biology and clinical literatures. Identified via complementary biochemical, organellar, and cellular approaches, we report that MDM2 negatively regulates NADH:ubiquinone oxidoreductase 75 kDa Fe-S protein 1 (NDUFS1), leading to decreased mitochondrial respiration, marked oxidative stress, and commitment to the mitochondrial pathway of apoptosis. MDM2 directly binds and sequesters NDUFS1, preventing its mitochondrial localization and ultimately causing complex I and supercomplex destabilization and inefficiency of oxidative phosphorylation. The MDM2 amino-terminal region is sufficient to bind NDUFS1, alter supercomplex assembly, and induce apoptosis. Finally, this pathway is independent of p53, and several mitochondrial phenotypes are observed in Drosophila and murine models expressing transgenic Mdm2."	"Genotypic Spectrum and Natural History of Cavitating Leukoencephalopathies in Childhood. We aimed to delineate the pattern of natural course, neuroimaging features, and the genotypic spectrum of cavitating leukoencephalopathies. Children (age of onset ≤16 years) who met the criteria for cavitating leukoencephalopathies from January 2009 to October 2018 were identified. Whole-exome sequencing and prospective follow-up study of the natural history and brain magnetic resonance imaging (MRI) were performed. Thirty-seven children were clinically diagnosed with cavitating leukoencephalopathies. Pathogenic or likely pathogenic mutations in eight genes were identified in 31 individuals (83.78%): IBA57 (17/37), NDUFS1 (5/37), NDUFV1 (2/37), NDUFV2 (3/37), NDUFAF5 (1/37), LYRM7 (1/37), NDUFB8 (1/37), and GLRX5 (1/37). All genes were engaged in mitochondrial function. IBA57 was identified in half of children. Mutations in NDUFV2, NDUFAF5, NDUFB8, or GLRX5 were first found to be related to cavitating leukoencephalopathies. Follow-up with a median of 23.5 months (four to 107 months) was available. The median age at disease onset was 11 months. All cases presented acute or subacute onset, and the initial presentation was rapid motor regression in 35 cases. Thirty-five children (35/37) exhibited a stabilized or improved pattern. Cavities and high-intensity diffusion-weighted imaging signals were the common MRI features during the acute stage. Although clinically stable, 21 children had reserved high diffusion-weighted imaging signals for a long time. Patients with different gene mutations show different MRI patterns. The study expands the number of genes involved in cavitating leukoencephalopathies to 22. IBA57 is the most common candidate gene. Most cases showed a stabilized or improved pattern after an acute or subacute onset, which is different from most other inherited metabolic diseases or leukodystrophies. More cases and a longer follow-up period are needed."	"Altered Molecular Pathways in the Proteome of Cryopreserved Sperm in Testicular Cancer Patients before Treatment. Testicular cancer (TC) represents the most common cancer affecting men within the reproductive age and is often accompanied by major disturbances in semen parameters. Cryopreservation is recommended in these patients before initiating cancer treatment. Currently, there are no studies reporting the molecular mechanisms associated with altered semen quality in these men. The main objective of this study was to compare the sperm proteome of normozoospermic (motility &gt;40%) and asthenozoospermic (motility &lt;40%) TC patients with normozoospermic infertile men without cancer (control group). Pooled sperm samples from normozoospermic (n = 20), asthenozoospermic (n = 11) TC, and a control group (n = 9) were used for quantitative global proteomic profiling using liquid chromatography-tandem mass spectrometry. A total of 1085, 846, and 982 proteins were identified in normozoospermic TC, asthenozoospermic TC, and control groups, respectively. Functional analysis revealed mitochondrial dysfunction and altered cellular pathways in both normozoospermic and asthenozoospermic TC patients. Comparison of pathway analysis showed no significant difference in fertility-associated proteins/mechanism between the normozoospermic TC patients and infertile men. Western blot analysis revealed under-expression of NDUFS1 associated with mitochondrial dysfunction and overexpression of CD63 involved in sperm maturation in both normozoospermic and asthenozoospermic TC patients. Our proteomic results confirm that defective cellular pathways are associated with reproductive functions in both normozoospermic and asthenozoospermic TC patients before the start of cancer treatment."	"New Insights on the Mechanisms Affecting Fertility in Men with Non-Seminoma Testicular Cancer before Cancer Therapy. Patients with non-seminoma testicular cancer (NSTC) cancer can be subfertile or infertile, and present reduced sperm quality, but the underlying mechanisms are unknown. The aim of this study was to compare the sperm proteome of patients with NSTC, who cryopreserved their sperm before starting cancer treatment, with that from healthy fertile men. Semen volume, sperm motility and sperm concentration were evaluated before the cryopreservation of samples from patients with NSTC (n=15) and the control group (n=15). Sperm proteomic analysis was performed by liquid chromatography-tandem mass spectrometry and the differentially expressed proteins (DEPs) between the two groups were identified using bioinformatic tools. A total of 189 DEPs was identified in the dataset, from which five DEPs related to sperm function and fertilization were selected for validation by Western blot. We were able to validate the underexpression of the mitochondrial complex subunits NADH:Ubiquinone Oxidoreductase Core Subunit S1 (NDUFS1) and ubiquinol-cytochrome C reductase core protein 2 (UQCRC2), as well as the underexpression of the testis-specific sodium/potassium-transporting ATPase subunit alpha-4 (ATP1A4) in the NSTC group. Our results indicate that sperm mitochondrial dysfunction may explain the observed decrease in sperm concentration, total sperm count and total motile count in NSTC patients. The identified DEPs may serve as potential biomarkers for the pathophysiology of subfertility/infertility in patients with NSTC. Our study also associates the reduced fertilizing ability of NSTC patients with the dysregulation of important sperm molecular mechanisms."	"Silurana Chromosomal Evolution: A New Piece to the Puzzle. The African clawed frogs of the subgenus Silurana comprise both diploid and tetraploid species. The root of the polyploidization event leading to the extant Xenopus calcaratus, X. mellotropicalis, and X. epitropicalis is not fully understood so far. In X. mellotropicalis, we previously proposed 2 evolutionary scenarios encompassing complete (scenario A) or incomplete (scenario B) translocation of a heterochromatic block from chromosome 9 to 2 in a diploid ancestor. To resolve this puzzle, we performed FISH coupled with tyramide signal amplification (FISH-TSA) using 5 X. tropicalis and X. mellotropicalis single copy gene probes (gyg2, cept1, fn1, ndufs1, and sf3b1) reflecting borders of the heterochromatic blocks in X. tropicalis chromosome 9 (XTR 9) and X. mellotropicalis chromosome 9b (XME 9b) and XME 2a. cDNA sequencing recognized both homoeologous genes in X. mellotropicalis. Comparison of gene physical mapping between X. tropicalis and X. mellotropicalis clearly confirmed complete rather than incomplete translocation t(9;2) of the heterochromatic block in the diploid predecessor and thus favored scenario A regarding the formation of an ancestral allotetraploid karyotype."	"MDM2 and mitochondrial function: One complex intersection. Decades of research reveal that MDM2 participates in cellular processes ranging from macro-molecular metabolism to cancer signaling mechanisms. Two recent studies uncovered a new role for MDM2 in mitochondrial bioenergetics. Through the negative regulation of NDUFS1 (NADH:ubiquinone oxidoreductase 75 kDa Fe-S protein 1) and MT-ND6 (NADH dehydrogenase 6), MDM2 decreases the function and efficiency of Complex I (CI). These observations propose several important questions: (1) Where does MDM2 affect CI activity? (2) What are the cellular consequences of MDM2-mediated regulation of CI? (3) What are the physiological implications of these interactions? Here, we will address these questions and position these observations within the MDM2 literature."	"Cyclic stretch increases mitochondrial biogenesis in a cardiac cell line. Unlike stable and immobile cell line conditions, animal hearts contract and relax to pump blood throughout the body. Mitochondria play an essential role by producing biological energy molecules to maintain heart function. In this study, we assessed the effect of heart mimetic cyclic stretch on mitochondria in a cardiac cell line. To mimic the geometric and biomechanical conditions surrounding cells in vivo, cyclic stretching was performed on HL-1 murine cardiomyocytes seeded onto an elastic micropatterned substrate (10% elongation, 0.5 Hz, 4 h/day). Cell viability, semi-quantitative Q-PCR, and western blot analyses were performed in non-stimulated control and cyclic stretch stimulated HL-1 cell lines. Cyclic stretch significantly increased the expression of mitochondria biogenesis-related genes (TUFM, TFAM, ERRα, and PGC1-α) and mitochondria oxidative phosphorylation-related genes (PHB1 and CYTB). Western blot analysis confirmed that cyclic stretch increased protein levels of mitochondria biogenesis-related proteins (TFAM, and ERRα) and oxidative phosphorylation-related proteins (NDUFS1, UQCRC, and PHB1). Consequently, cyclic stretch increased mitochondrial mass and ATP production in treated cells. Our results suggest that cyclic stretch transcriptionally enhanced mitochondria biogenesis and oxidative phosphorylation without detrimental effects in a cultured cardiac cell line."	"Integrated Analysis and Identification of Novel Biomarkers in Parkinson's Disease. Parkinson's disease (PD) is a quite common neurodegenerative disorder with a prevalence of approximately 1:800-1,000 in subjects over 60 years old. The aim of our study was to determine the candidate target genes in PD through meta-analysis of multiple gene expression arrays datasets and to further combine mRNA and miRNA expression analyses to identify more convincing biological targets and their regulatory factors. Six included datasets were obtained from the Gene Expression Omnibus database by systematical search, including five mRNA datasets (150 substantia nigra samples in total) and one miRNA dataset containing 32 peripheral blood samples. A chip meta-analysis of five microarray data was conducted by using the metaDE package and 94 differentially expressed (DE) mRNAs were comprehensively obtained. And 19 deregulated DE miRNAs were obtained through the analysis of one miRNAs dataset by Qlucore Omics Explorer software. An interaction network formed by DE mRNAs, DE miRNAs, and important pathways was discovered after we analyzed the functional enrichment, protein-protein interactions, and miRNA targetome prediction analysis. In conclusion, this study suggested that five significantly downregulated mRNAs (MAPK8, CDC42, NDUFS1, COX4I1, and SDHC) and three significantly downregulated miRNAs (miR-126-5p, miR-19-3p, and miR-29a-3p) were potentially useful diagnostic markers in clinic, and lipid metabolism (especially non-alcoholic fatty liver disease pathway) and mitochondrial dysregulation may be the keys to biochemically detectable molecular defects. However, the role of these new biomarkers and molecular mechanisms in PD requires further experiments in vivo and in vitro and further clinical evidence."	"An NIR-Fluorophore-Based Therapeutic Endoplasmic Reticulum Stress Inducer. The endoplasmic reticulum (ER) stress signaling or unfolded protein response (UPR) is a common feature of many human diseases, including cancer. Excessive activation of ER stress directly induces cell death, holding a new promising strategy for the therapeutic intervention of cancer. Current ER-stress-inducing agents mainly target UPR components or proteasomes, which exert limited treatment efficacy and undesired side effects due to unselective ER stress and poor tumor-specific distribution. In this study, a unique near-infrared (NIR) fluorophore, IR-34, is synthesized and identified to selectively and efficiently trigger tumoricidal ER stress by targeting the mitochondrial protein NDUFS1. IR-34 is demonstrated to specifically accumulate in living cancer cells for tumor NIR imaging and drastically inhibit tumor growth and recurrence without causing apparent toxicity. Thus, this multifunctional NIR fluorophore may represent a novel theranostic agent for tumor imaging-guided treatment and also strengthens the idea that mitochondria could be a useful target for therapeutic ER stress in cancer cells."	"mRNA-binding protein tristetraprolin is essential for cardiac response to iron deficiency by regulating mitochondrial function. Cells respond to iron deficiency by activating iron-regulatory proteins to increase cellular iron uptake and availability. However, it is not clear how cells adapt to conditions when cellular iron uptake does not fully match iron demand. Here, we show that the mRNA-binding protein tristetraprolin (TTP) is induced by iron deficiency and degrades mRNAs of mitochondrial Fe/S-cluster-containing proteins, specifically Ndufs1 in complex I and Uqcrfs1 in complex III, to match the decrease in Fe/S-cluster availability. In the absence of TTP, Uqcrfs1 levels are not decreased in iron deficiency, resulting in nonfunctional complex III, electron leakage, and oxidative damage. Mice with deletion of Ttp display cardiac dysfunction with iron deficiency, demonstrating that TTP is necessary for maintaining cardiac function in the setting of low cellular iron. Altogether, our results describe a pathway that is activated in iron deficiency to regulate mitochondrial function to match the availability of Fe/S clusters."	"Mapping the protein phosphorylation sites in human mitochondrial complex I (NADH: Ubiquinone oxidoreductase): A bioinformatics study with implications for brain aging and neurodegeneration. In eukaryotes, mitochondrial complex I (NADH: ubiquinone oxidoreductase; CI) is central to oxidative phosphorylation (OXPHOS). Mammalian CI is a 45 subunit complex that forms supercomplexes with other OXPHOS complexes. Since CI defects are associated with aging and neurodegeneration, it is pertinent to understand its structure-function relationship. Although genetic mutations could lower CI activity causing mitochondrial dysfunction in several pathologies, post-translational modifications (PTMs) have emerged as a key mechanism contributing to altered CI activity. Among non-oxidative PTMs, protein phosphorylation is the most intricate regulatory mechanism controlling CI structure and function during normal physiology, aging and neurodegeneration. To comprehend this, we carried out a comprehensive bioinformatics analysis of protein phosphorylation of human CI subunits using software-based prediction of phosphorylation (phospho) sites and associated kinases. Phosphorylation was higher among core subunits and active domains of the complex. Among the subunits, NDUFS1 displayed significantly higher number as well as percent phospho sites compared to others. Analysis of the subunits containing iron-sulfur (Fe-S) cluster, NADH and FMN binding sites and quinone binding sites indicated the presence of phospho sites in close proximity to the binding sites of these cofactors with potential functional implications. Phosphoproteomics experiment in rat and human muscle mitochondria identified specific phospho sites in CI subunits, thereby validating the bioinformatic analysis. Molecular modeling of CI subunits indicated structural implications following phosphorylation. We surmise that protein phosphorylation, a transient and regulatory event could influence the structure-function relationship of CI thereby impinging on bioenergetics and ultimately contributing to aging and neurodegeneration."	"Orbital rhabdomyosarcoma in a child with Leigh syndrome. We present the case of a 6-year old girl with Leigh syndrome and an orbital rhabdomyosarcoma and describe her clinical course and our multidisciplinary approach to treatment. To our knowledge, this is the first report of rhabdomyosarcoma in a patient with Leigh syndrome."	"Severe riboflavin deficiency induces alterations in the hepatic proteome of starter Pekin ducks. Suboptimal vitamin B2 status is encountered globally. Riboflavin deficiency depresses growth and results in a fatty liver. The underlying mechanisms remain to be established and an overview of molecular alterations is lacking. We investigated hepatic proteome changes induced by riboflavin deficiency to explain its effects on growth and hepatic lipid metabolism. In all, 360 1-d-old Pekin ducks were divided into three groups of 120 birds each, with twelve replicates and ten birds per replicate. For 21 d, the ducks were fed ad libitum a control diet (CAL), a riboflavin-deficient diet (RD) or were pair-fed with the control diet to the mean daily intake of the RD group (CPF). When comparing RD with CAL and CPF, growth depression, liver enlargement, liver lipid accumulation and enhanced liver SFA (C6 : 0, C12 : 0, C16 : 0, C18 : 0) were observed. In RD, thirty-two proteins were enhanced and thirty-one diminished (&gt;1·5-fold) compared with CAL and CPF. Selected proteins were confirmed by Western blotting. The diminished proteins are mainly involved in fatty acid β-oxidation and the mitochondrial electron transport chain (ETC), whereas the enhanced proteins are mainly involved in TAG and cholesterol biosynthesis. RD causes liver lipid accumulation and growth depression probably by impairing fatty acid β-oxidation and ETC. These findings contribute to our understanding of the mechanisms of liver lipid metabolic disorders due to RD."	"Structural and pharmacological basis for the induction of mitochondrial biogenesis by formoterol but not clenbuterol. Mitochondrial dysfunction is associated with numerous acute and chronic degenerative diseases. The beta-2 adrenergic receptor (β2AR) agonist formoterol induces mitochondrial biogenesis (MB), but other β2AR agonists, such as clenbuterol, do not. We sought to identify the MB signaling pathway of formoterol and the differences in signaling between these two ligands that result in the differential induction of MB. While formoterol and clenbuterol increased cAMP, only formoterol increased the phosphorylation of Akt and its downstream target eNOS. The increase in Akt phosphorylation was Gβγ- and PI3K-dependent, and the increase in eNOS phosphorylation was Gβγ- and Akt-dependent. Only formoterol increased cGMP. Formoterol induced MB as measured by increases in uncoupled cellular respiration and PGC-1α and NDUFS1 mRNA expression and was blocked by inhibitors of Gβγ, Akt, NOS, and soluble guanylate cyclase. To identify distinct receptor-ligand interactions leading to these differences in signaling, we docked formoterol and clenbuterol to six structures of the β2AR. Compared to clenbuterol, the methoxyphenyl group of formoterol interacted more frequently with V114 and F193, while its formamide group interacted more frequently with C191. These data indicate that the unique structural features of formoterol allow it to interact with the β2AR to activate the Gβγ-Akt-eNOS-sGC pathway to induce MB."	"Gene expression study of mitochondrial complex I in schizophrenia and paranoid personality disorder. The aetiology and molecular mechanisms of schizophrenia (SCZ) and paranoid personality disorder (PPD) are not yet clarified. The present study aimed to assess the role of mitochondrial complex I and cell bioenergetic pathways in the aetiology and characteristics of SCZ and PPD. mRNA levels of all genomic and mitochondrial genes which encode mitochondrial complex I subunits (44 genes) were assessed in blood in 634 SCZ, 340 PPD patients and 528 non-psychiatric subjects using quantitative real-time PCR, and associated comprehensive psychiatric, neurological and biochemical assessments. Significant expression changes of 18 genes in SCZ patients and 11 genes in PPD patients were detected in mitochondrial complex I. Most of these genes were novel candidate genes for SCZ and PPD. Several correlations between mRNA levels and severity of symptoms, drug response, deficits in attention, working memory, executive functions and brain activities were found. Deregulations of both core and supernumerary subunits of complex I are involved in the aetiology of SCZ and PPD. These deregulations have effects on brain activity as well as disorder characteristics."	"[Progressive cavitating leukoencephalopathy: four cases and literatures review]. Objective: To analyze the clinical and genetic features of progressive cavitating leukoencephalopathy (PCL). Method: The data of clinical and genetic features of 4 PCL patients diagnosed by Beijing Children's Hospital between January 2015 and January 2016 were analyzed. The cases with complete clinical data retrieved on literature search at China National Knowledge Infrastructure, Wanfang Data Knowledge Service Platform and PubMed (up to August 2016) by using search terms of&quot;NDUFV1&quot; ,&quot;NDUFS1&quot; , or&quot;leukoencephalopathy&quot; , were summarized. Result: There were three females and one male, two of which were compatriots. The age of onset ranged from 6 months to 15 months. All four children's first symptoms were motor development regression, and the developmental milestones were almost normal before the onset. Of the 4 patients, 3 had cognitive impairment, 1 had seizures, 4 had dystonia and pyramidal impairment, 2 had emaciation, and 1 had nystagmus. The lactate concentrations of 4 patients were normal in blood. One patient had lactaciduria in the urinary organic acid analysis. Cranial magnetic resonance imaging (MRI) of all patients showed leukoencephalopathy, involved in the corpus callosum, and three patients accompanied by cystic lesions. Follow up for 2-13 years showed that the physical and language development were improved. Genetic analysis revealed that mutations in NDUFS1 were found in three patients and NDUFV1 mutation was found in one patient. All six mutations (p.Arg377Cys and p. Arg377His in NDUFV1; p. Arg482Glyfs(*)5, p.Thr368Pro, p.Tyr454X and p. Asp565Gly in NDUFS1) are novel. Five English case reports including 10 PCL patients were collected. Together with this group of 4 cases, a total of 14 cases were involved. All 14 children patients had motor development regression, 11 cases had cognitive impairment and dystonia, 6 cases had pyramidal impairment, 5 cases had irritability, 4 cases had epilepsy and nystagmus, 3 cases had strabismus and swallowing difficulty. Cranial MRI showed patchy leukoencephalopathy with cavities, involved in the corpus callosum. Follow up for 19 months-15 years that the neurology development were improved slowly in all patients. Conclusion: NDUFS1 and NDUFV1 gene mutation screening should be performed firstly in patients with PCL clinical and imaging feature. 目的: 总结进行性空泡脑白质病(PCL)患儿的临床及遗传学特点。 方法: 对首都医科大学附属北京儿童医院神经内科2015至2016年临床诊断的4例PCL患儿的病例资料进行总结,并通过关键词&quot;脑白质病&quot;NDUFV1&quot;或&quot;NDUFS1&quot;leukoencephalopathy&quot;对中文期刊全文数据库、万方数据知识服务平台、生物医学文献数据库(Pubmed)建库至2016年8月的文献进行检索,选取临床资料完整的病例分析总结。 结果: 本组4例患儿中女3例、男1例,其中2例为同胞姐弟,起病年龄6月龄至1岁3月龄,4例均以运动倒退为首发症状,起病前发育里程碑大致正常,3例合并认知损害,1例合并癫痫,4例均存在肌张力不全合并锥体束损害,2例体形消瘦,1例有眼球震颤。4例血乳酸均正常,1例尿有机酸分析为乳酸尿。头颅磁共振成像(MRI)均提示双侧大脑半球白质广泛对称性异常信号,累及胼胝体,合并空泡样变。随访至2~13岁,运动、语言发育均较前进步。遗传学分析提示3例为NDUFS1基因变异,1例NDUFV1基因变异,共6种基因变异(NDUFV1基因的p.Arg377Cys, p.Arg377His, NDUFS1基因的p.Arg482Glyfs(*)5,p.Thr368Pro,p.Tyr454X和p.Asp565Gly),均为未报道新变异。文献检索共收集5篇英文文献,报道10例患儿,加上本组共14例患儿。14例患儿均以运动倒退为首发症状,认知损害及肌张力障碍各11例,锥体束征阳性6例,烦躁哭闹5例,癫痫、眼球震颤各4例,斜视、吞咽困难各3例。头颅MRI均表现为弥漫性脑白质异常信号,伴空泡样变,胼胝体受累,随访至1岁7月龄~15岁,患儿神经系统功能均有缓慢进步。 结论: PCL是一种罕见的遗传代谢性疾病,对有PCL临床及影像学特点的病例,可首先进行NDUFS1及NDUFV1基因变异筛查。."	"[Clinical and genetic characteristics of children with Leigh syndrome]. Objective: To investigate the clinically and genetic characteristics of children with Leigh syndrome. Method: Patients with clinically diagnosed Leigh syndrome(LS)in the department of Neurology, Beijing Children's Hospital from January 2013 to February 2016 underwent the mitochondrial DNA (mtDNA) and nuclear DNA (nDNA) detecting with next generation sequencing (NGS) technology. The clinical data of gene confirmed cases were retrospectively collected and analyzed. The differences in the onset age, clinical manifestations, lactic acid level and MRI results between the mtDNA variation and nDNA variation were compared and analyzed.t test, Chi-square test and Fisher's exact test were used for statistical analysis. Result: Thirty-five cases were diagnosed by gene detection, including 20 males and 15 females. The median onset age was 1 year (ranging from the neonatal period to 4.4 years old). The age of onset within 2 years accounted for 74%(26 cases). The onset age of initial symptoms, including developmental delay, developmental regression, and seizures, were 6 (4, 12) months, 12 (8, 14) months, and 6 (1, 23) months respectively. The onset age of ptosis, extrapyramidal symptoms and ataxia were 26 (18, 44) months, 28 (23, 40) months and 28 (19, 35) months, respectively. There were significant differences in the onset age between the three groups (H=21.919, P=0.01). Within the 35 cases, 29 were manifested with developmental delay (83%), 26 with dystonia (74%), 18 with growth retardation, 15 with myasthenia, 13 with developmental regression, 11 with dysphagia, 10 with feeding difficulties, 4 with skeletal dysplasia, and 2 with digestive tract symptoms; nystagmus and respiratory abnormalities were observed in 9 cases respectively; extrapyramidal symptoms, peripheral nerve injury, ptosis, seizures were observed in 8 cases respectively; and ataxia, ophthalmoplegia and hypertrichiasis were found in 5 cases respectively.The blood lactic acid was measured in 32 LS patients, within which 23 cases (72%) had increased results; 8 out of 11 cases who underwent were cerebrospinal fluid lactic acid test had increased results. The results of neuroimaging revealed that all the patients were involved in the brainstem and (or) basal ganglia, of whom 27 (77%) had brainstem involvement, 24 (69%) had basal ganglia involvement. Thirteen out of 14 patients who had medulla oblongata involvement had nDNA variation; while 7 out of 8 patients with cerebellar involvement had nDNA variation. Genetic etiology was confirmed in all patients, among whom there were 17 cases (49%) with mtDNA mutation, including 8993T&gt;C/G (n=5), 14487T&gt;C (n=4), 13513G&gt;A (n=2), 9176T&gt;C, 10158T&gt;C, 3697G&gt;A, 10191T&gt;C, 14459A&gt;G and 11777C&gt;A (n=1) respectively. Remaining 18 cases(51%) had nDNA mutation, including SURF1 gene(n=10), PDHA1 gene(n=3) and one case each of NDUFV1, NDUFAF6, NDUFAF5, NDUFS1 and COQ7 genes. In this study, 27 types of mutations were founded, 15 of which had not been previously reported. Respiratory chain gene mutations have been found in 31 cases(89%); 3 cases had PDHc gene mutations, and 1 case had other mutation. Conclusion: LS usually occurs in infants. The most common primary symptoms are age-dependent abnormal movements, ocular symptoms, and seizures. Respiratory chain defects is the most common causes of LS.SURF1 is the most common variation, followed by 8993T&gt;C/G, 14487 T&gt;C and 13513G&gt;A mutation. 目的:了解儿童Leigh综合征(LS)临床和遗传学特征。 方法:对2013至2016年在北京儿童医院神经内科临床诊断LS的患儿,应用靶向基因捕获二代测序(NGS)技术对线粒体基因(mtDNA)组和LS相关的核基因(nDNA)进行测序,对基因确诊病例的临床资料进行回顾性总结。采用t检验、方差分析以及Fisher确切概率检验,对mtDNA和nDNA变异两组发病年龄、临床表现、乳酸和头颅磁共振成像(MRI)进行比较。 结果:经基因确诊LS 35例,其中男20例、女15例。起病年龄为新生儿~4.4岁,中位起病年龄1岁。2岁之内发病26例(74%)。首发症状包括发育落后、发育倒退和抽搐发作,其发生年龄分别为6(4,12),12(8,14)和6(1,23)月龄;眼睑下垂、椎体外系症状和共济失调发病年龄分别为26(18,44),28(23,40)和28(19,35)月龄。各首发症状发病年龄差异有统计学意义(H=21.919,P=0.01)。35例中临床表现发育落后29例(83%),肌张力异常26例(74%),生长落后18例,肌无力15例,发育倒退13例,吞咽困难11例,喂养困难10例,眼球震颤及呼吸异常各9例,锥体外系表现、周围神经损害、眼睑下垂、抽搐各8例,共济失调、眼外肌麻痹和多毛各5例,骨骼发育异常4例,消化道症状2例。32例LS患儿行血乳酸测定,23例(72%)升高,11例行脑脊液乳酸测定,8例升高。头颅磁共振成像(MRI)均累及脑干和(或)基底节区,其中27例(77%)脑干受累,24例(69%)基底节区受累,14例累及延髓,13例为nDNA变异;8例累及小脑,7例为nDNA变异。35例基因变异中mtDNA变异17例(49%),分别为8993 T&gt;C/G 5例、14487T&gt;C 4例、13513 G&gt;A 2例,9176 T&gt;C、10158 T&gt;C、3697 G&gt;A、10191T&gt;C、14459A&gt;G,11777C&gt;A各1例;nDNA变异18例(51%),其中SURF1基因10例、PDHA1基因3例、NDUFV1、NDUFAF6、NDUFAF5、NDUFS1和COQ7基因各1例。共发现27种变异类型,15种为新发。涉及呼吸链酶复合物基因变异31例(89%),丙酮酸脱氢酶复合物(PDHc)变异3例,其他1例。 结论: LS为婴幼儿好发,首发症状主要表现为运动异常、眼部症状和癫痫发作,具有年龄依赖性;呼吸链酶复合物基因变异是LS最常见原因,其中以SURF1最多,其次为8993 T&gt;C/G、14487 T&gt;C与13513 G&gt;A。."	"Systematic Expression Analysis of Mitochondrial Complex I Identifies NDUFS1 as a Biomarker in Clear-Cell Renal-Cell Carcinoma. Mitochondrial dysfunction is common in cancer, and the mitochondrial electron transport chain is often affected in carcinogenesis. So far, little is known about the expression of the mitochondrial complex I (NADH:ubiquinone oxidoreductase) subunits in clear-cell renal-cell carcinoma (ccRCC). An expression profile of the mitochondrial complex I subunits was determined using the NextBio database. Subsequently, the expression of selected subunits was experimentally validated on mRNA (quantitative real-time polymerase chain reaction) and protein (Western blot analysis, immunohistochemistry) level. We observed that 7 subunits of the complex I were down-regulated in at least 3 microarray studies. Deregulated mRNA expression was confirmed for NDUFA3, NDUFA, NDUFB1, NDUFB9, NDUFS1, NDUFS8, and NDUFV1. Low NDUFS1 mRNA expression was a significant and independent adverse predictor of a shorter overall survival in our mRNA cohort and the ccRCC cohort of The Cancer Genome Atlas project. NDUFS1 expression was furthermore analyzed on the protein level, and a distinct down-regulation was observed in ccRCC as well as in the chromophobe and the sarcomatoid subtype compared to normal renal tissue. Expression alterations occur in only a few subunits of the mitochondrial complex I subunits in ccRCC, and altered mRNA and protein expression levels of NDUFS1 may be useful to distinguish between renal-cell carcinoma and normal renal tissue."	"Transcriptional profiles of type 2 diabetes in human skeletal muscle reveal insulin resistance, metabolic defects, apoptosis, and molecular signatures of immune activation in response to infections. Skeletal muscle insulin resistance is considered to be the primary defect involved in type 2 diabetes mellitus (T2DM). Despite transcriptome studies in limited T2DM human subjects suggesting an association of T2DM with impaired oxidative phosphorylation in muscle, its molecular pathogenesis remains largely unknown. To identify dysregulated genes and gene networks that are associated with T2DM in human skeletal muscle, we examined expression patterns of 56,318 transcribed genes on 92 T2DM cases and 184 gender-, age- and race-matched non-diabetic controls from the Genotype-Tissue Expression (GTEx) database. RNA-Sequencing data suggest that diabetic skeletal muscle is characterized by decreased expression of genes that are related to insulin resistance (IRS2, MTOR, SLC2A4, and PPARA), carbohydrate, energy, and amino acid metabolism pathways (NDUFS1, NDUFA10, NDUFB4, NDUFB5, NDUFA5, NDUFB10, SDHB, SDHC, ATP5H, ATP5A, and ATP5J). Up-regulated genes in T2DM are mainly enriched in apoptosis pathways (TP53, GADD45A, TNFRSF10B, TP53AIP1, and PMAIP1), and notably include immune-related pathways suggestive of a response to various infectious diseases (C2, CFB, C4A, C4B, C1S, C1R, C3, HLA-DRA, HLA-DMA, HLA-DOA, and HLA-DPB1). These results confirm the essential regulation of impaired insulin signaling and oxidative phosphorylation in the muscle of T2DM patients, and provide novel molecular insights into the pathophysiological mechanisms of T2DM."	"Complex I assembly into supercomplexes determines differential mitochondrial ROS production in neurons and astrocytes. Neurons depend on oxidative phosphorylation for energy generation, whereas astrocytes do not, a distinctive feature that is essential for neurotransmission and neuronal survival. However, any link between these metabolic differences and the structural organization of the mitochondrial respiratory chain is unknown. Here, we investigated this issue and found that, in neurons, mitochondrial complex I is predominantly assembled into supercomplexes, whereas in astrocytes the abundance of free complex I is higher. The presence of free complex I in astrocytes correlates with the severalfold higher reactive oxygen species (ROS) production by astrocytes compared with neurons. Using a complexomics approach, we found that the complex I subunit NDUFS1 was more abundant in neurons than in astrocytes. Interestingly, NDUFS1 knockdown in neurons decreased the association of complex I into supercomplexes, leading to impaired oxygen consumption and increased mitochondrial ROS. Conversely, overexpression of NDUFS1 in astrocytes promoted complex I incorporation into supercomplexes, decreasing ROS. Thus, complex I assembly into supercomplexes regulates ROS production and may contribute to the bioenergetic differences between neurons and astrocytes."	"The opposite prognostic effect of NDUFS1 and NDUFS8 in lung cancer reflects the oncojanus role of mitochondrial complex I. A recent surge of research on complex I mitochondrial DNA indicates that complex I disassembly regulated by mutation threshold plays a critical role in tumor progression. However, nuclear DNA (nDNA)-encoded core subunits are still a neglected area for cancer investigation. In this study, respective prognostic contributions of 7 nDNA-encoded core subunits were analyzed by immunohistochemical staining and RNA expression data extracted from public resources. The results showed that NDUFS1 and NDUFS8 had the most significant prognostic power in NSCLC patients among all 7 nDNA-encoded core subunits. Patients with low NDUFS1 or high NDUFS8 IHC and RNA expression levels had poor overall survival. Because of the significant correlation between expressions of 7 nDNA-encoded core subunits, multivariate analysis was performed and identified NDUFS1 and NDUFS8 IHC and RNA expression levels retained their leading prognostic roles. By combining NDFUS1 and NDUFS8 as a panel, the most unfavorable prognostic group had a 14-fold increased risk of poor prognosis than the most favorable prognostic group. In conclusion, the opposite prognostic effect of nDNA-encoded core subunits suggests the oncojanus role of nuclear genes regulating complex I dysfunction. The panel with NDUFS1 and NDUFS8 reflecting tumor metabolism status is a novel prognostic predictor for lung cancer."	"Neuroprotective effects of pyrroloquinoline quinone against rotenone injury in primary cultured midbrain neurons and in a rat model of Parkinson's disease. Mitochondrial dysfunction and oxidative stress have been implicated in the pathogenesis of Parkinson's disease (PD). Pyrroloquinoline quinone (PQQ), a redox cofactor in the mitochondrial respiratory chain, has been reported to protect SH-SY5Y cells from cytotoxicity induced by rotenone, a mitochondrial complex I inhibitor. In this study, we aimed to investigate the neuroprotective effects of PQQ against rotenone injury in primary cultured midbrain neurons and in a rat model of Parkinson's disease. Pre-treatment with PQQ prevented cultured midbrain neurons from rotenone-induced apoptosis, restored mitochondrial membrane potential, inhibited intracellular reactive oxygen species (ROS) production, and affected microtubule depolymerization. On the other hand, intraperitoneal administration of PQQ exerted protective effects on rats that had received rotenone injection into the medial forebrain bundle through decreasing the apomorphine-evoked rotation, inhibiting neuronal loss and TH down-regulation in SNc, increasing the antioxidative ability, and regulating intracellular expressions of Ndufs1 and Ndufs 4. Silencing of Ndufs1 or Ndufs4 in cultured SH-SY5Y cells or midbrain neurons reduced the neuroprotective effects of PQQ. Overall, our results suggest that PQQ neuroprotection may be mediated by the inhibition of mitochondrial dysfunction and oxidative stress as well as by the gene modulation of Ndufs1 and Ndufs4."	"The Effect on Cognition of Mitochondrial Respiratory System Proteins in Peripheral Blood Mononuclear Cells in the Course of Lung Cancer. Peripheral blood mononuclear cells (PBMC) represent an easily available population of cells for the studies on remote effects of lung cancer. NADH dehydrogenase (ubiquinone) Fe-S protein-1 (Ndufs1), a marker of mitochondrial complex I, and mitochondrially encoded cytochrome c oxidase 1 (MTCO1), a marker of complex IV, may participate in cognitive decline during the course of lung cancer. In this study, Ndufs1 and MTCO1 expression in PBMC was evaluated by means of ELISA in 80 lung cancer patients. Mini-Mental State Examination (MMSE) were conducted Trail Making Tests (TMT-A and TMT-B) at baseline and after the 6 months' follow-up. Autoantibodies were identified by means of indirect immunofluorescence and line blot. We found that enhanced levels of Ndufs1 in PBMC were related to impaired cognitive performance; TMT-A of 13.6 ± 3.1 s and TMT-B of 162.5 ± 46.4 s compared with 8.6 ± 4.5 s (p = 0.003) and 124.8 ± 51.8 s (p &lt; 0.05), respectively, in the case of low Ndufs-1 levels. The Ndufs1 expression at baseline was associated with MMSE - τb (Kendall's tau-b) = -0.31; p = 0.024; TMT-A - τb = 0.30; p = 0.001), and TMT-B - τb = 0.199; p = 0.012) after the 6 months' follow-up. Higher MTCO1 expression was accompanied by worse TMT-A results than in case of inhibited MTCO1; 11.1 ± 5.8 s vs. 8.5 ± 4.1 s; respectively; p = 0.048. MTCO1 expression was correlated with TMT-A results (τb = 0.17; p = 0.034) at baseline. We conclude that stimulation of PBMC mitochondrial function in lung cancer patients is associated with cognitive impairment. Mitochondrial dysfunction in PBMC may reflect cytotoxicity responsible for neurological deficits."	"Tetra-O-Methyl Nordihydroguaiaretic Acid Broadly Suppresses Cancer Metabolism and Synergistically Induces Strong Anticancer Activity in Combination with Etoposide, Rapamycin and UCN-01. The ability of Tetra-O-methyl nordihydroguaiaretic acid (M4N) to induce rapid cell death in combination with Etoposide, Rapamycin, or UCN-01 was examined in LNCaP cells, both in cell culture and animal experiments. Mice treated with M4N drug combinations with either Etoposide or Rapamycin showed no evidence of tumor and had a 100% survival rate 100 days after tumor implantation. By comparison all other vehicles or single drug treated mice failed to survive longer than 30 days after implantation. This synergistic improvement of anticancer effect was also confirmed in more than 20 cancer cell lines. In LNCaP cells, M4N was found to reduce cellular ATP content, and suppress NDUFS1 expression while inducing hyperpolarization of mitochondrial membrane potential. M4N-treated cells lacked autophagy with reduced expression of BNIP3 and ATG5. To understand the mechanisms of this anticancer activity of M4N, the effect of this drug on three cancer cell lines (LNCaP, AsPC-1, and L428 cells) was further examined via transcriptome and metabolomics analyses. Metabolomic results showed that there were reductions of 26 metabolites essential for energy generation and/or production of cellular components in common with these three cell lines following 8 hours of M4N treatment. Deep RNA sequencing analysis demonstrated that there were sixteen genes whose expressions were found to be modulated following 6 hours of M4N treatment similarly in these three cell lines. Six out of these 16 genes were functionally related to the 26 metabolites described above. One of these up-regulated genes encodes for CHAC1, a key enzyme affecting the stress pathways through its degradation of glutathione. In fact M4N was found to suppress glutathione content and induce reactive oxygen species production. The data overall indicate that M4N has profound specific negative impacts on a wide range of cancer metabolisms supporting the use of M4N combination for cancer treatments. "	"The inflammatory cytokine TWEAK decreases PGC-1α expression and mitochondrial function in acute kidney injury. Studies of mitochondria-targeted nephroprotective agents suggest a key role of mitochondrial injury in AKI. Here we tested whether an improved perception of factors responsible for mitochondrial biogenesis may provide clues to novel therapeutic approaches to AKI. TWEAK is an inflammatory cytokine which is upregulated in AKI. Transcriptomic analysis of TWEAK-stimulated cultured murine tubular epithelial cells and folic acid-induced AKI in mice identified downregulation of peroxisome proliferator- activated receptor-γ coactivador-1α (PGC-1α) and its target genes (mitochondrial proteins Ndufs1, Sdha, and Tfam) as a shared feature. Neutralizing anti-TWEAK antibodies prevented the decrease in kidney PGC-1α and its targets during AKI. TWEAK stimulation decreased kidney PGC-1α expression in healthy mice and decreased expression of PGC-1α and its targets as well as mitochondrial membrane potential in cultured tubular cells. Adenoviral-mediated PGC-1α overexpression prevented TWEAK-induced downregulation of PGC-1α-dependent genes and the decrease in mitochondrial membrane potential. TWEAK promoted histone H3 deacetylation at the murine PGC-1α promoter. TWEAK-induced downregulation of PGC-1α was prevented by histone deacetylase or NF-κB inhibitors. Thus, TWEAK decreases PGC-1α and target gene expression in tubular cells in vivo and in vitro. Approaches that preserve mitochondrial function during kidney injury may be therapeutic for AKI."	"Pyrroloquinoline quinone-conferred neuroprotection in rotenone models of Parkinson's disease. Pyrroloquinoline quinone (PQQ), a redox cofactor in the mitochondrial respiratory chain, has proven to protect neurons against glutamate-induced damage both in vitro and in vivo. This study was aimed to investigate the possible neuroprotective effects of PQQ in rotenone-induced Parkinson's disease (PD) model. Pre-treatment with PQQ prevented cultured SH-SY5Y cells from rotenone-induced apoptosis, accompanied by modulation of apoptosis-related proteins (Bcl-2, Bax and Smac), restoration of the mitochondrial membrane potential, inhibition of intracellular reactive oxygen species (ROS) production, suppression of tyrosine residues nitration, and dopamine redistribution. PQQ also exerted protective effects in an in vivo PD model, which was created by rotenone injection into the medial forebrain bundle of rats. Co-injection with PQQ and rotenone improved the apomorphine-evoked rotation, decreased neuronal loss, increased the ROS-scavenging ability, regulated intracellular expressions of mitochondrial complex subunits (Ndufs1-4), tyrosine hydroxylase, and vesicular monoamine transporter 2. Taken together, our results collectively suggest that PQQ confers neuroprotection in rotenone-induced PD model probably through complex and multifaceted mechanisms, at least involving oxidative stress, mitochondrial integrity, and dopamine functions."	"Caenorhabditis elegans expressing the Saccharomyces cerevisiae NADH alternative dehydrogenase Ndi1p, as a tool to identify new genes involved in complex I related diseases. Isolated complex I deficiencies are one of the most commonly observed biochemical features in patients suffering from mitochondrial disorders. In the majority of these clinical cases the molecular bases of the diseases remain unknown suggesting the involvement of unidentified factors that are critical for complex I function. The Saccharomyces cerevisiae NDI1 gene, encoding the mitochondrial internal NADH dehydrogenase was previously shown to complement a complex I deficient strain in Caenorhabditis elegans with notable improvements in reproduction and whole organism respiration. These features indicate that Ndi1p can functionally integrate the respiratory chain, allowing complex I deficiency complementation. Taking into account the Ndi1p ability to bypass complex I, we evaluate the possibility to extend the range of defects/mutations causing complex I deficiencies that can be alleviated by NDI1 expression. We report here that NDI1 expressing animals unexpectedly exhibit a slightly shortened lifespan, a reduction in the progeny, and a depletion of the mitochondrial genome. However, Ndi1p is expressed and targeted to the mitochondria as a functional protein that confers rotenone resistance to those animals without affecting their respiration rate and ATP content. We show that the severe embryonic lethality level caused by the RNAi knockdowns of complex I structural subunit encoding genes (e.g., NDUFV1, NDUFS1, NDUFS6, NDUFS8, or GRIM-19 human orthologs) in wild type animals is significantly reduced in the Ndi1p expressing worm. All together these results open up the perspective to identify new genes involved in complex I function, assembly, or regulation by screening an RNAi library of genes leading to embryonic lethality that should be rescued by NDI1 expression. "	"Mitochondrial complex I and III mRNA levels in bipolar disorder. Studies that have focused on the mitochondrial electron transport chain indicate that bipolar disorder (BD) is associated with pathology in mitochondrial function. These pathological processes occur in the brain circuits that regulate affective functions, emotions, and motor behaviors. The present study aimed to determine the relationship between mitochondrial complex dysfunction and BD. The BD group included 32 male patients diagnosed with first-episode manic BD. The control group included 35 sociodemographically matched healthy males. Messenger ribonucleic acid (mRNA) was isolated from peripheral blood samples obtained from the patients and control group, and the mRNA levels of the NDUFV1, NDUFV2, and NDUFS1 genes of mitochondrial complex I and the UQCR10 gene of mitochondrial complex III were investigated. Significant differences were identified in complex I gene mRNA levels between the BD group (n = 32) and the control group (n = 35) for the following genes: NDUFV1 (P = 0.01), NDUFV2 (P &lt; 0.01), and NDUFS1 (P = 0.02). The UQCR10 gene (complex III) mRNA level did not differ between the groups (P = 0.1). The mRNA levels of the four genes studied were lower at the 3-month follow-up; however, these differences were not significant (P &gt; 0.05). All of the BD patients were in manic episodes; thus, we were unable to separately compare these levels with those during depressive and euthymic episodes. The mRNA levels of all of the genes representing the subunits of mitochondrial complex I (NDUFV1, NDUFV2, and NDUFS1) were significantly higher in the present study's BD patients during manic episodes than in the controls. With the data obtained from further research, biomarkers that could be used for the diagnosis and follow-up of neuropsychiatric disorders may be discovered."	"Do nuclear-encoded core subunits of mitochondrial complex I confer genetic susceptibility to schizophrenia in Han Chinese populations? Schizophrenia is one of the most prevalent psychiatric disorders with complex genetic etiology. Accumulating evidence suggests that energy metabolism and oxidative stress play important roles in the pathophysiology of schizophrenia. Dysfunction of mitochondrial respiratory chain and altered expression of complex I subunits were frequently reported in schizophrenia. To investigate whether nuclear-encoded core subunit genes of mitochondrial complex I are associated with schizophrenia, we performed a genetic association study in Han Chinese. In total, 46 tag single nucleotide polymorphisms (SNPs) from 7 nuclear-encoded core genes of mitochondrial complex I were genotyped in 918 schizophrenia patients and 1042 healthy controls. We also analyzed these SNPs in a large sample mainly composed of Europeans through using the available GWAS datasets from the Psychiatric Genomics Consortium (PGC). No significant associations were detected between these SNPs and schizophrenia in Han Chinese and the PGC data set. However, we observed nominal significant associations of 2 SNPs in the NDUFS1 gene and 4 SNPs in the NDUFS2 gene with early onset schizophrenia (EOS), but none of these associations survived the Bonferroni correction. Taken together, our results suggested that common SNPs in the nuclear-encoded core subunit genes of mitochondrial complex I may not confer genetic susceptibility to schizophrenia. "	"Leigh syndrome: neuropathology and pathogenesis. Leigh syndrome (LS) is the most common pediatric presentation of a defined mitochondrial disease. This progressive encephalopathy is characterized pathologically by the development of bilateral symmetrical lesions in the brainstem and basal ganglia that show gliosis, vacuolation, capillary proliferation, relative neuronal preservation, and by hyperlacticacidemia in the blood and/or cerebrospinal fluid. Understanding the molecular mechanisms underlying this unique pathology has been challenging, particularly in view of the heterogeneous and not yet fully determined genetic basis of LS. Moreover, animal models that mimic features of LS have only been created relatively recently. Here, we review the pathology of LS and consider what might be the molecular mechanisms underlying its pathogenesis. Data from a wide range of sources, including patient samples, animal models, and studies of hypoxic-ischemic encephalopathy (a condition that shares features with LS), were used to provide insight into the pathogenic mechanisms that may drive lesion development. Based on current data, we suggest that severe ATP depletion, gliosis, hyperlacticacidemia, reactive oxygen species, and potentially excitotoxicity cumulatively contribute to the neuropathogenesis of LS. An intimate understanding of the molecular mechanisms causing LS is required to accelerate the development of LS treatments. "	"Pharmacological NAD-Boosting Strategies Improve Mitochondrial Homeostasis in Human Complex I-Mutant Fibroblasts. Mitochondrial disorders are devastating genetic diseases for which efficacious therapies are still an unmet need. Recent studies report that increased availability of intracellular NAD obtained by inhibition of the NAD-consuming enzyme poly(ADP-ribose) polymerase (PARP)-1 or supplementation with the NAD-precursor nicotinamide riboside (NR) ameliorates energetic derangement and symptoms in mouse models of mitochondrial disorders. Whether these pharmacological approaches also improve bioenergetics of human cells harboring mitochondrial defects is unknown. It is also unclear whether the same signaling cascade is prompted by PARP-1 inhibitors and NR supplementation to improve mitochondrial homeostasis. Here, we show that human fibroblasts mutant for the NADH dehydrogenase (ubiquinone) Fe-S protein 1 (NDUFS1) subunit of respiratory complex I have similar ATP, NAD, and mitochondrial content compared with control cells, but show reduced mitochondrial membrane potential. Interestingly, mutant cells also show increased transcript levels of mitochondrial DNA but not nuclear DNA respiratory complex subunits, suggesting activation of a compensatory response. At variance with prior work in mice, however, NR supplementation, but not PARP-1 inhibition, increased intracellular NAD content in NDUFS1 mutant human fibroblasts. Conversely, PARP-1 inhibitors, but not NR supplementation, increased transcription of mitochondrial transcription factor A and mitochondrial DNA-encoded respiratory complexes constitutively induced in mutant cells. Still, both NR and PARP-1 inhibitors restored mitochondrial membrane potential and increased organelle content as well as oxidative activity of NDUFS1-deficient fibroblasts. Overall, data provide the first evidence that in human cells harboring a mitochondrial respiratory defect exposure to NR or PARP-1, inhibitors activate different signaling pathways that are not invariantly prompted by NAD increases, but equally able to improve energetic derangement. "	"Mitochondrial complex I and III gene mRNA levels in schizophrenia, and their relationship with clinical features. The etiology of schizophrenia is not precisely known; however, mitochondrial function and cerebral energy metabolism abnormalities were determined to be possible factors associated with the etiology of schizophrenia. Impaired mitochondrial function negatively affects neuronal plasticity, and can cause cognitive deficits and behavioral abnormalities observed during the clinical course of schizophrenia. The present study aimed to investigate the relationship between the clinical features of schizophrenia, and mitochondrial complex activation, based on measurement of mRNA levels in the NDUFV1, NDUFV2, NDUFS1, and UQCR10 genes involved in the peripheral mitochondrial complex. The study included 138 schizophrenia patients and 42 healthy controls. The schizophrenia group was divided into a chronic schizophrenia subgroup (n = 84) and a first-episode schizophrenia subgroup (n = 54). The symptoms profile and severity of disorder were evaluated using the Scale for the Assessment of Negative Symptoms (SANS), Scale for the Assessment of Positive Symptoms (SAPS), and Brief Psychiatric Rating Scale (BPRS). The level of mRNA expression of NDUFV1, NDUFV2, and NDUFS1 was significantly higher in the schizophrenia group than in the control group. The mRNA level of NDUFV2 was positively correlated with BPRS and SAPS scores in the first-episode schizophrenia subgroup. The findings showed that there was a positive correlation between gene mRNA levels and psychotic symptomatology, especially positive symptoms. Our results suggest that mRNA levels of the NDUFV1, NUDFV2, and NDUFS1 genes of complex I of the mitochondrial electron transport chain might become a possible peripheral marker for the diagnosis of schizophrenia."	"Broad phenotypic variability in patients with complex I deficiency due to mutations in NDUFS1 and NDUFV1. We report clinical, metabolic, genetic and neuroradiological findings in five patients from three different families with isolated complex I deficiency. Genetic analysis revealed mutations in NDUFS1 in three patients and in NDUFV1 in two patients. Four of the mutations are novel and affect amino acid residues that either are invariant among species or conserved in their properties. The presented clinical courses are characterized by leukoencephalopathy or early death and expand the already heterogeneous phenotypic spectrum. A literature review was performed, showing that patients with mutations in NDUFS1 in general have a worse prognosis than patients with mutations in NDUFV1. "	"Proteome alterations in cortex of mice exposed to fluoride and lead. Both fluoride and lead can cross the blood-brain barrier and produce toxic effects on the central neural system, resulting in low learning and memory abilities, especially in children. In order to identify the proteomic pattern in the cortex of young animals, from the beginning of fertilization to the age of postnatal day 56, pregnant female mice and pups were administrated with 150 mg sodium fluoride/L and/or 300 mg lead acetate/L in their drinking water. Two-dimensional electrophoresis (2-DE) combined with mass spectrometry (MS) was applied to identify differently expressed protein spots. Results showed that there were eight proteins in the cortex that significantly changed, whose biological functions were involved in (1) energy metabolism (Ndufs1, Atp5h, Atp6v1b2), (2) cytoskeleton (Spna2, Tuba1a, Tubb2a), (3) glycation repair (Hdhd2), and (4) cell stress response (Hspa8). Based on the previous and current studies, ATPase, Spna2, and Hspa8 were shared by fluoride and lead both as common target molecules."	"Granzyme B-induced mitochondrial ROS are required for apoptosis. Caspases and the cytotoxic lymphocyte protease granzyme B (GB) induce reactive oxygen species (ROS) formation, loss of transmembrane potential and mitochondrial outer membrane permeabilization (MOMP). Whether ROS are required for GB-mediated apoptosis and how GB induces ROS is unclear. Here, we found that GB induces cell death in an ROS-dependent manner, independently of caspases and MOMP. GB triggers ROS increase in target cell by directly attacking the mitochondria to cleave NDUFV1, NDUFS1 and NDUFS2 subunits of the NADH: ubiquinone oxidoreductase complex I inside mitochondria. This leads to mitocentric ROS production, loss of complex I and III activity, disorganization of the respiratory chain, impaired mitochondrial respiration and loss of the mitochondrial cristae junctions. Furthermore, we have also found that GB-induced mitocentric ROS are necessary for optimal apoptogenic factor release, rapid DNA fragmentation and lysosomal rupture. Interestingly, scavenging the ROS delays and reduces many of the features of GB-induced death. Consequently, GB-induced ROS significantly promote apoptosis. "	"Genetic variant in NDUFS1 gene is associated with schizophrenia and negative symptoms in Han Chinese. Abnormalities in mitochondrial complex I, which is responsible for controlling mitochondrial function, have been implicated in a variety of diseases associated with mitochondrial dysfunction, potentially including schizophrenia. The NADH dehydrogenase Fe-S protein 1 (NDUFS1) is the largest subunit of complex I. To explore whether the encoding NDUFS1 gene confers susceptibility to schizophrenia or is associated with the severity of typical symptoms of schizophrenia, we recruited 519 stable schizophrenia patients receiving clozapine treatment and 594 healthy controls for genotyping to investigate the association of four selected tagging single-nucleotide polymorphisms (SNPs) of NDUFS1 and both schizophrenia risk and symptom severity. The severity of psychotic symptoms was evaluated using the Positive and Negative Syndrome Scale and then tested for association with the four SNPs. The SNP rs1044120 showed significant association with schizophrenia (adjusted P=0.032). The frequency of the G allele of rs1044120 was significantly higher in patients than among the healthy controls (adjusted P=0.008). Stratification by sex revealed a significant association between the rs1044120 polymorphism and schizophrenia among males (adjusted P=0.036 and 0.008 in genotypic and allelic comparisons, respectively). We also observed a significant difference in the negative symptom scores among the three genotypes among these males (adjusted P=0.036). Post hoc comparisons showed that rs1044120 G/G carriers had higher negative symptom scores than those with G/T and T/T carriers (raw P=0.035 and 0.005, respectively). Our findings suggest that NDUFS1 may confer susceptibility to schizophrenia in male subjects, acting as a causative factor for the severity of negative symptoms in schizophrenia. "	"Identification of differentially methylated genes in the malignant transformation of ovarian endometriosis. Key roles for epigenetic mechanisms in tumorigenesis are well accepted, while the relationship between gene methylation and malignant transformation of ovarian endometriosis (EMS) was seldom reported. In this study, we aimed to screen for aberrantly methylated genes associated with the malignant transformation of ovarian EMS and to preliminarily verify the reliability of screened results by detecting the methylation status and protein expression of the candidate gene in a larger scale of formaldehyde-fixed and paraffin-embedded (FFPE) samples. Methylated CpG island amplification coupled with representational difference analysis (MCA-RDA) was performed on 3 couples of endometriosis-associated ovarian carcinoma (EAOC) fresh samples to identify differentially methylated candidate genes related to malignant transformation of ovarian EMS; Methylation-specific PCR (MSP) and immunohistochemistry were performed in 30 EAOC samples to detected the methylation status and protein expression of RASSF2 gene to verify the reliability of MCA-RDA results. Nine differentially methylated genes were obtained by MCA-RDA as candidate genes for malignant transformation of EMS; Methylation frequency of RASSF2 in the neoplastic tissues of EAOC group was higher than that in the ectopic endometria (p &lt; 0.05). While protein expression of RASSF2 in the neoplastic tissues was lower than that in the ectopic endometria of the EAOC group (p &lt; 0.05) Absence of protein expression of RASSF2 was significantly correlated with the promoter methylation of the gene (p &lt; 0.05). RASSF2, RUNX3, GSTZ1, CYP2A, GBGT1, NDUFS1, SPOCK2, ADAM22, and TRIM36 were candidate genes for malignant transformation of ovarian EMS and epigenetic inactivation of RASSF2 by promoter hypermethylation is an early event in malignant transformation of ovarian EMS. The screen results were reliable and worthy of further study."	"A homozygous mutation in the NDUFS1 gene presents with a mild cavitating leukoencephalopathy. We report a case of mild cavitating leukoencephalopathy associated with a homozygous c.755A &gt; G (p.Asp252Gly) NDUFS1 mutation in a 7-year old boy. Biochemical analysis confirmed an isolated reduction in complex I activity. Magnetic resonance imaging of the brain showed a diffuse cystic leukoencephalopathy with the involvement of the corpus callosum and sparing of the gray matter. The clinical course was marked by an acute presentation of neurological deficits at 24 months followed by recurrent episodes of mild neurological deterioration, subsequent remissions, and prolonged periods of stability. This is one of the mildest known clinical presentations of complex I deficiency secondary to mutations in NDUFS1, expanding the clinical spectrum and natural history of this disorder. Consideration of clinical variability needs to be taken into account in patient management and family counseling."	"The arginine methyltransferase NDUFAF7 is essential for complex I assembly and early vertebrate embryogenesis. Complex I of the mitochondrial respiratory chain is a large multisubunit enzyme that assembles from nuclear and mtDNA-encoded components. Several complex I assembly factors have been identified, but their precise functions are not well understood. Here, we have investigated the function of one of these, NDUFAF7, a soluble matrix protein comprised of a DUF185 domain that harbors a methyltransferase motif. Knockdown of NDUFAF7 by siRNA in human fibroblasts produced a specific complex I assembly defect, as did morpholino-mediated knockdown of the zebrafish ortholog. Germline disruption of the murine ortholog was an early embryonic lethal. The complex I assembly defect was characterized by rapid, AFG3L2-dependent, turnover of newly synthesized ND1, the subunit that seeds the assembly pathway, and by decreased steady-state levels of several other structural subunits including NDUFS2, NDUFS1 and NDUFA9. Expression of an NDUFAF7 mutant (G124V), predicted to disrupt methyltransferase activity, impaired complex I assembly, suggesting an assembly factor or structural subunit as a substrate for methylation. To identify the NDUFAF7 substrate, we used an anti-ND1 antibody to immunoprecipitate complex I and its associated assembly factors, followed by mass spectrometry to detect posttranslational protein modifications. Analysis of an NDUFAF7 methyltransferase mutant showed a 10-fold reduction in an NDUFS2 peptide containing dimethylated Arg85, but a 5-fold reduction in three other NDUFS2 peptides. These results show that NDUFAF7 functions to methylate NDUFS2 after it assembles into a complex I, stabilizing an early intermediate in the assembly pathway, and that this function is essential for normal vertebrate development. "	"Effect of testosterone on markers of mitochondrial oxidative phosphorylation and lipid metabolism in muscle of aging men with subnormal bioavailable testosterone. Recent studies have indicated that serum testosterone in aging men is associated with insulin sensitivity and expression of genes involved in oxidative phosphorylation (OxPhos), and that testosterone treatment increases lipid oxidation. Herein, we investigated the effect of testosterone therapy on regulators of mitochondrial biogenesis and markers of OxPhos and lipid metabolism in the skeletal muscle of aging men with subnormal bioavailable testosterone levels. Skeletal muscle biopsies were obtained before and after treatment with either testosterone gel (n=12) or placebo (n=13) for 6 months. Insulin sensitivity and substrate oxidation were assessed by euglycemic-hyperinsulinemic clamp and indirect calorimetry. Muscle mRNA levels and protein abundance and phosphorylation of enzymes involved in mitochondrial biogenesis, OxPhos, and lipid metabolism were examined by quantitative real-time PCR and western blotting. Despite an increase in lipid oxidation (P&lt;0.05), testosterone therapy had no effect on insulin sensitivity or mRNA levels of genes involved in mitochondrial biogenesis (PPARGC1A, PRKAA2, and PRKAG3), OxPhos (NDUFS1, ETFA, SDHA, UQCRC1, and COX5B), or lipid metabolism (ACADVL, CD36, CPT1B, HADH, and PDK4). Consistently, protein abundance of OxPhos subunits encoded by both nuclear (SDHA and UQCRC1) and mitochondrial DNA (ND6) and protein abundance and phosphorylation of AMP-activated protein kinase and p38 MAPK were unaffected by testosterone therapy. The beneficial effect of testosterone treatment on lipid oxidation is not explained by increased abundance or phosphorylation-dependent activity of enzymes known to regulate mitochondrial biogenesis or markers of OxPhos and lipid metabolism in the skeletal muscle of aging men with subnormal bioavailable testosterone levels."	"Involvement of ERK1/2 pathway in neuroprotective effects of pyrroloquinoline quinine against rotenone-induced SH-SY5Y cell injury. Pyrroloquinoline quinone (PQQ), a redox cofactor in the mitochondrial respiratory chain, has been shown to protect neurons against glutamate-induced damage both in vitro and in vivo. In this study, specific inhibitors to each of the mitochondrial complexes were used to find out which reactive oxygen species (ROS)-generating sites could be affected by PQQ. Then we established an in vitro model of Parkinson's disease (PD) by exposing cultured SH-SY5Y dopaminergic cells to rotenone, a complex I inhibitor. The neuroprotective effects of PQQ were observed by pretreatment of SH-SY5Y cells with PQQ before rotenone injury, and the possible involvement of certain signaling pathways were investigated. PQQ pretreatment prevented SH-SY5Y cells from rotenone-induced apoptosis in a concentration-dependent manner. PQQ neuroprotection was associated with inhibition of intracellular ROS production, modulation of the expression of apoptosis-related Bcl-2 and Bax, and regulation of the level of superoxide dismutase, glutathione, and malondialdehyde. Meanwhile, PQQ up-regulated the gene expression of Ndufs 1, 2, and 4 (complex I subunits), and increased mitochondrial viability and mitochondrial DNA content. Furthermore, PQQ pretreatment activated ERK1/2 phosphorylation in rotenone-injured SH-SY5Y cells, while ERK1/2 inhibition suppressed PQQ neuroprotection. All the results suggested that PQQ could protect SH-SY5Y cells against rotenone injury by reducing ROS production and maintaining mitochondrial functions through activation of ERK1/2 pathway."	"Contribution of genetic polymorphisms on functional status at very old age: a gene-based analysis of 38 genes (311 SNPs) in the oxidative stress pathway. Preservation of functional ability is a well-recognized marker of longevity. At a molecular level, a major determinant of the physiological decline occurring with aging is the imbalance between production and accumulation of oxidative damage to macromolecules, together with a decreased efficiency of stress response to avoid or repair such damage. In this paper we investigated the association of 38 genes (311 SNPs) belonging to the pro-antioxidant pathways with physical and cognitive performances, by analyzing single SNP and gene-based associations with Hand Grip strength (HG), Activities of Daily Living (ADL), Walking Speed (WS), Mini Mental State Examination (MMSE) and Composite Cognitive Score (CCS) in a Cohort of 1089 Danish nonagenarians. Moreover, for each gene analyzed in the pro-antioxidant pathway, we tested the influence on longitudinal survival. In the whole sample, nominal associations were found for TXNRD1 variability with ADL and WS, NDUFS1 and UCP3 with HG and WS, GCLC and UCP2 with WS (p&lt;0.05). Stronger associations although not holding the multiple comparison correction, were observed between MMSE and NDUFV1, MT1A and GSTP1 variability (p&lt;0.009). Moreover, we found that association between genetic variability in the pro-antioxidant pathway and functional status at old age is influenced by sex. In particular, most significant associations were observed in nonagenarian females, between HG scores and GLRX and UCP3 variability, between ADL levels and TXNRD1, MMSE and MT1A genetic variability. In males, a borderline statistically significant association with ADL level was found for UQCRFS1 gene. Nominally significant associations in relation to survival were found in the female sample only with SOD2, NDUFS1, UCP3 and TXNRD1 variability, the latter two confirming previous observations reported in the same cohort. Overall, our work supports the evidence that genes belonging to the pro-anti-oxidant pathway are able to modulate physical and cognitive performance after the ninth decade of life, finally influencing extreme survival. "	"A hypothesis-driven association study of 28 nuclear-encoded mitochondrial genes with antipsychotic-induced weight gain in schizophrenia. Mitochondria are the main source of energy for neurons and have a role in many vital neuronal functions. Mitochondrial dysfunction has been described in schizophrenia, and antipsychotics such as clozapine and olanzapine have been associated with differences in gene expression in mitochondria. We investigated the hypothesis that nuclear-encoded mitochondrial genes, particularly those involved in oxidative phosphorylation or involved in oxidative stress, mitochondrial biogenesis, inflammation, and apoptosis, would be associated with antipsychotic-induced weight gain (AIWG). In total, we selected 28 genes and analyzed 60 SNPs (50 are functional), in 283 schizophrenia subjects, treated with atypical medications for up to 14 weeks. Association between AIWG (as measured by the % of weight gain from baseline) and SNP genotypes were tested using linear regression with treatment duration, baseline body weight, and medication type as covariates. We observed a significant association between rs6435326 in the NDUFS1 gene and AIWG in the subset of European patients (N=150, Pcorrected=0.02). The haplotype carrying the risk alleles of rs6435326 and two other SNPs (rs1053517 and rs1801318) in NDUFS1 was also nominally associated with percentage of weight gain (T-C-G vs A-T-A, P=0.005). In addition, stepwise linear regression was performed to select important variables predictive of the outcome, and a gene-gene interaction analysis was carried out. We observed a significant interaction between the TT risk genotype of rs6435326 in NDUFS1 and AG genotype of rs3762883 in COX18 (Pcorrected=0.001). A permutation-based test of all 60 SNPs jointly showed significant association with weight gain (P=0.02). Finally, our replication study of rs6435326, rs1053517 and rs1801318 in NDUFS1 using samples from the Clinical Antipsychotic Trials of Intervention Effectiveness (CATIE) showed that rs1801318 was significantly associated with AIWG (N=200, Pcorrected=0.04), and the three SNPs were collectively associated with AIWG (P=0.04). In conclusion, our findings suggest an association between NDUFS1 and AIWG in schizophrenia subjects. To the best of our knowledge, this is the first study to explore genetic variation in the mitochondrial genes in the context of AIWG. "	"Chromosomal microarray analysis of consecutive individuals with autism spectrum disorders or learning disability presenting for genetic services. Chromosomal microarray analysis is now commonly used in clinical practice to identify copy number variants (CNVs) in the human genome. We report our experience with the use of the 105 K and 180K oligonucleotide microarrays in 215 consecutive patients referred with either autism or autism spectrum disorders (ASD) or developmental delay/learning disability for genetic services at the University of Kansas Medical Center during the past 4 years (2009-2012). Of the 215 patients [140 males and 75 females (male/female ratio=1.87); 65 with ASD and 150 with learning disability], abnormal microarray results were seen in 45 individuals (21%) with a total of 49 CNVs. Of these findings, 32 represented a known diagnostic CNV contributing to the clinical presentation and 17 represented non-diagnostic CNVs (variants of unknown significance). Thirteen patients with ASD had a total of 14 CNVs, 6 CNVs recognized as diagnostic and 8 as non-diagnostic. The most common chromosome involved in the ASD group was chromosome 15. For those with a learning disability, 32 patients had a total of 35 CNVs. Twenty-six of the 35 CNVs were classified as a known diagnostic CNV, usually a deletion (n=20). Nine CNVs were classified as an unknown non-diagnostic CNV, usually a duplication (n=8). For the learning disability subgroup, chromosomes 2 and 22 were most involved. Thirteen out of 65 patients (20%) with ASD had a CNV compared with 32 out of 150 patients (21%) with a learning disability. The frequency of chromosomal microarray abnormalities compared by subject group or gender was not statistically different. A higher percentage of individuals with a learning disability had clinical findings of seizures, dysmorphic features and microcephaly, but not statistically significant. While both groups contained more males than females, a significantly higher percentage of males were present in the ASD group."	"Teaching NeuroImages: rapidly progressive leukoencephalopathy in mitochondrial complex I deficiency. NA"	"TNFα-induced lysosomal membrane permeability is downstream of MOMP and triggered by caspase-mediated NDUFS1 cleavage and ROS formation. When NF-κB activation or protein synthesis is inhibited, tumor necrosis factor alpha (TNFα) can induce apoptosis through Bax- and Bak-mediated mitochondrial outer membrane permeabilization (MOMP) leading to caspase-3 activation. Additionally, previous studies have implicated lysosomal membrane permeability (LMP) and formation of reactive oxygen species (ROS) as early steps of TNFα-induced apoptosis. However, how these two events connect to MOMP and caspase-3 activation has been largely debated. Here, we present the novel finding that LMP induced by the addition of TNFα plus cycloheximide (CHX), the release of lysosomal cathepsins and ROS formation do not occur upstream but downstream of MOMP and require the caspase-3-mediated cleavage of the p75 NDUFS1 subunit of respiratory complex I. Both a caspase non-cleavable p75 mutant and the mitochondrially localized antioxidant MitoQ prevent LMP mediated by TNFα plus CHX and partially interfere with apoptosis induction. Moreover, LMP is completely blocked in cells deficient in both Bax and Bak, Apaf-1, caspase-9 or both caspase-3 and -7. Thus, after MOMP, active caspase-3 exerts a feedback action on complex I to produce ROS. ROS then provoke LMP, cathepsin release and further caspase activation to amplify TNFα apoptosis signaling. "	"Pemphigus vulgaris autoantibody profiling by proteomic technique. Pemphigus vulgaris (PV) is a mucocutaneous blistering disease characterized by IgG autoantibodies against the stratified squamous epithelium. Current understanding of PV pathophysiology does not explain the mechanism of acantholysis in patients lacking desmoglein antibodies, which justifies a search for novel targets of pemphigus autoimmunity. We tested 264 pemphigus and 138 normal control sera on the multiplexed protein array platform containing 701 human genes encompassing many known keratinocyte cell-surface molecules and members of protein families targeted by organ-non-specific PV antibodies. The top 10 antigens recognized by the majority of test patients' sera were proteins encoded by the DSC1, DSC3, ATP2C1, PKP3, CHRM3, COL21A1, ANXA8L1, CD88 and CHRNE genes. The most common combinations of target antigens included at least one of the adhesion molecules DSC1, DSC3 or PKP3 and/or the acetylcholine receptor CHRM3 or CHRNE with or without the MHC class II antigen DRA. To identify the PV antibodies most specific to the disease process, we sorted the data based on the ratio of patient to control frequencies of antigen recognition. The frequency of antigen recognition by patients that exceeded that of control by 10 and more times were the molecules encoded by the CD33, GP1BA, CHRND, SLC36A4, CD1B, CD32, CDH8, CDH9, PMP22 and HLA-E genes as well as mitochondrial proteins encoded by the NDUFS1, CYB5B, SOD2, PDHA1 and FH genes. The highest specificity to PV showed combinations of autoantibodies to the calcium pump encoded by ATP2C1 with C5a receptor plus DSC1 or DSC3 or HLA-DRA. The results identified new targets of pemphigus autoimmunity. Novel autoantibody signatures may help explain individual variations in disease severity and treatment response, and serve as sensitive and specific biomarkers for new diagnostic assays in PV patients."	"Spatial distribution of cellular function: the partitioning of proteins between mitochondria and the nucleus in MCF7 breast cancer cells. Concurrent proteomics analysis of the nuclei and mitochondria of MCF7 breast cancer cells identified 985 proteins (40% of all detected proteins) present in both organelles. Numerous proteins from all five complexes involved in oxidative phosphorylation (e.g., NDUFA5, NDUFB10, NDUFS1, NDUF2, SDHA, UQRB, UQRC2, UQCRH, COX5A, COX5B, MT-CO2, ATP5A1, ATP5B, ATP5H, etc.), from the TCA-cycle (DLST, IDH2, IDH3A, OGDH, SUCLAG2, etc.), and from glycolysis (ALDOA, ENO1, FBP1, GPI, PGK1, TALDO1, etc.) were distributed to both the nucleus and mitochondria. In contrast, proteins involved in nuclear/mitochondrial RNA processing/translation and Ras/Rab signaling showed different partitioning patterns. The identity of the OxPhos, TCA-cycle, and glycolysis proteins distributed to both the nucleus and mitochondria provides evidence for spatio-functional integration of these processes over the two different subcellular organelles. We suggest that there are unrecognized aspects of functional coordination between the nucleus and mitochondria, that integration of core functional processes via wide subcellular distribution of constituent proteins is a common characteristic of cells, and that subcellular spatial integration of function may be a vital aspect of cancer."	"Subunit-specific incorporation efficiency and kinetics in mitochondrial complex I homeostasis. Studies employing native PAGE suggest that most nDNA-encoded CI subunits form subassemblies before assembling into holo-CI. In addition, in vitro evidence suggests that some subunits can directly exchange in holo-CI. Presently, data on the kinetics of these two incorporation modes for individual CI subunits during CI maintenance are sparse. Here, we used inducible HEK293 cell lines stably expressing AcGFP1-tagged CI subunits and quantified the amount of tagged subunit in mitoplasts and holo-CI by non-native and native PAGE, respectively, to determine their CI incorporation efficiency. Analysis of time courses of induction revealed three subunit-specific patterns. A first pattern, represented by NDUFS1, showed overlapping time courses, indicating that imported subunits predominantly incorporate into holo-CI. A second pattern, represented by NDUFV1, consisted of parallel time courses, which were, however, not quantitatively overlapping, suggesting that imported subunits incorporate at similar rates into holo-CI and CI assembly intermediates. The third pattern, represented by NDUFS3 and NDUFA2, revealed a delayed incorporation into holo-CI, suggesting their prior appearance in CI assembly intermediates and/or as free monomers. Our analysis showed the same maximum incorporation into holo-CI for NDUFV1, NDUFV2, NDUFS1, NDUFS3, NDUFS4, NDUFA2, and NDUFA12 with nearly complete loss of endogenous subunit at 24 h of induction, indicative of an equimolar stoichiometry and unexpectedly rapid turnover. In conclusion, the results presented demonstrate that newly formed nDNA-encoded CI subunits rapidly incorporate into holo-CI in a subunit-specific manner."	"Transient elevation of synaptosomal mitoenergetic proteins and Hsp70 early in a rat model of chronic cerebrovascular hypoperfusion. Chronic cerebral hypoperfusion (CCH) might account for the cognitive deficits associated with vascular cognitive impairment, but the mechanisms of hypoperfusion insulting to the cognition remain obscure. In the present study, Wistar rats underwent permanent occlusion of bilateral common carotid arteries to induce CCH. 2D-DIGE combined with MALDI-TOF MS was applied to determine the proteins that were differentially expressed in synaptosomes of prefrontal cortex and hippocampus. ATPsynβ, NDUFS1, UQCRC1 and Hsp70 were elevated both in synaptosomes of cortex and hippocampus at week 2 after operation, but subsided to baseline at week 4 except ATPsynβ which was still upregulated in synaptosomes of hippocampus at week 4. IDH3A and PDC-E2 were increased, respectively, in synaptosomes of prefrontal cortex and hippocampus at week 2, and showed no difference when compared to control at week 4. Malate dehydrogenase showed no difference in synaptosomes of prefrontal cortex and hippocampus at week 2, but showed an elevation in synaptosomes of prefrontal cortex at week 4. Our results imply that metabolic reserve and anti-oxidative stress might transiently exist in the early stage of CCH, which probably help cognitive save."	"Dysfunction of mitochondrial respiratory chain complex I in neurological disorders: genetics and pathogenetic mechanisms. This chapter covers genetic and biochemical aspects of mitochondrial bioenergetics dysfunction in neurological disorders associated with complex I defects. Complex I formation and functionality in mammalian cells depends on coordinated expression of nuclear and mitochondrial genes, post-translational subunit modifications, mitochondrial import/maturation of nuclear encoded subunits, subunits interaction and stepwise assembly, and on proteolytic processing. Examples of complex I dysfunction are herein presented: homozygous mutations in the nuclear NDUFS1 and NDUFS4 genes for structural components of complex I; an autosomic recessive form of encephalopathy associated with enhanced proteolytic degradation of complex I; familial cases of Parkinson associated to mutations in the PINK1 and Parkin genes, in particular, homoplasmic mutations in the ND5 and ND6 mitochondrial genes of the complex I, coexistent with mutation in the PINK1 gene. This knowledge, besides clarifying molecular aspects of the pathogenesis of hereditary diseases, can also provide hints for understanding the involvement of complex I in neurological disorders, as well as for developing therapeutical strategies."	"Mitochondrial complex I deficiency of nuclear origin I. Structural genes. Complex I (or NADH-ubiquinone oxidoreductase), is by far the largest respiratory chain complex with 38 subunits nuclearly encoded and 7 subunits encoded by the mitochondrial genome. Its deficiency is the most frequently encountered in mitochondrial disorders. Here, we summarize recent data obtained on architecture of complex I, and review the pathogenic mutations identified to date in nuclear structural complex I genes. The structural NDUFS1, NDUFS2, NDUFV1, and NDUFS4 genes are mutational hot spot genes for isolated complex I deficiency. The majority of the pathogenic mutations are private and the genotype-phenotype correlation is inconsistent in the rare recurrent mutations."	"Engrailed protects mouse midbrain dopaminergic neurons against mitochondrial complex I insults. Mice heterozygous for the homeobox gene Engrailed-1 (En1) display progressive loss of mesencephalic dopaminergic (mDA) neurons. We report that exogenous Engrailed-1 and Engrailed-2 (collectively Engrailed) protect mDA neurons from 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine (MPTP), a mitochondrial complex I toxin used to model Parkinson's disease in animals. Engrailed enhances the translation of nuclearly encoded mRNAs for two key complex I subunits, Ndufs1 and Ndufs3, and increases complex I activity. Accordingly, in vivo protection against MPTP by Engrailed is antagonized by Ndufs1 small interfering RNA. An association between Engrailed and complex I is further confirmed by the reduced expression of Ndufs1 and Ndufs3 in the substantia nigra pars compacta of En1 heterozygous mice. Engrailed also confers in vivo protection against 6-hydroxydopamine and α-synuclein-A30P. Finally, the unilateral infusion of Engrailed into the midbrain increases striatal dopamine content, resulting in contralateral amphetamine-induced turning. Therefore, Engrailed is both a survival factor for adult mDA neurons and a regulator of their physiological activity."	"Caloric restriction primes mitochondria for ischemic stress by deacetylating specific mitochondrial proteins of the electron transport chain. Caloric restriction (CR) confers cardioprotection against ischemia/reperfusion injury. However, the exact mechanism(s) underlying CR-induced cardioprotection remain(s) unknown. Recent evidence indicates that Sirtuins, NAD(+)-dependent deacetylases, regulate various favorable aspects of the CR response. Thus, we hypothesized that deacetylation of specific mitochondrial proteins during CR preserves mitochondrial function and attenuates production of reactive oxygen species during ischemia/reperfusion. The objectives of the present study were (1) to investigate the effect of CR on mitochondrial function and mitochondrial proteome and (2) to investigate what molecular mechanisms mediate CR-induced cardioprotection. Male 26-week-old Fischer344 rats were randomly divided into ad libitum-fed and CR (40% reduction) groups for 6 months. No change was observed in basal mitochondrial function, but CR preserved postischemic mitochondrial respiration and attenuated postischemic mitochondrial H(2)O(2) production. CR decreased the level of acetylated mitochondrial proteins that were associated with enhanced Sirtuin activity in the mitochondrial fraction. We confirmed a significant decrease in the acetylated forms of NDUFS1 and cytochrome bc1 complex Rieske subunit in the CR heart. Low-dose resveratrol treatment mimicked the effect of CR on deacetylating them and attenuated reactive oxygen species production during anoxia/reoxygenation in cultured cardiomyocytes without changing the expression levels of manganese superoxide dismutase. Treatment with nicotinamide completely abrogated the effect of low-dose resveratrol. These results strongly suggest that CR primes mitochondria for stress resistance by deacetylating specific mitochondrial proteins of the electron transport chain. Targeted deacetylation of NDUFS1 and/or Rieske subunit might have potential as a novel therapeutic approach for cardioprotection against ischemia/reperfusion."	"Genomic instability of gold nanoparticle treated human lung fibroblast cells. Gold nanoparticles (AuNPs) are one of the most versatile and widely researched materials for novel biomedical applications. However, the current knowledge in their toxicological profile is still incomplete and many on-going investigations aim to understand the potential adverse effects in human body. Here, we employed two dimensional gel electrophoresis to perform a comparative proteomic analysis of AuNP treated MRC-5 lung fibroblast cells. In our findings, we identified 16 proteins that were differentially expressed in MRC-5 lung fibroblasts following exposure to AuNPs. Their expression levels were also verified by western blotting and real time RT-PCR analysis. Of interest was the difference in the oxidative stress related proteins (NADH ubiquinone oxidoreductase (NDUFS1), protein disulfide isomerase associate 3 (PDIA3), heterogeneous nuclear ribonucleus protein C1/C2 (hnRNP C1/C2) and thioredoxin-like protein 1 (TXNL1)) as well as proteins associated with cell cycle regulation, cytoskeleton and DNA repair (heterogeneous nuclear ribonucleus protein C1/C2 (hnRNP C1/C2) and Secernin-1 (SCN1)). This finding is consistent with the genotoxicity observed in the AuNP treated lung fibroblasts. These results suggest that AuNP treatment can induce oxidative stress-mediated genomic instability."	"Cellular rescue-assay aids verification of causative DNA-variants in mitochondrial complex I deficiency. Mitochondrial complex I deficiency is a frequent biochemical condition, causing about one third of respiratory chain disorders. Partly due to the large number of genes necessary for its assembly and function only a small proportion of complex I deficiencies are yet confirmed at the molecular genetic level. Now, next generation sequencing approaches are applied to close the gap between biochemical definition and molecular diagnosis. Nevertheless such approaches result in a long list of novel rare single nucleotide variants. Identifying the causative mutations still remains challenging. Here we describe the identification and functional confirmation of novel NDUFS1 mutations using a cellular rescue-assay. Patient-derived complex I-defective fibroblast cell lines were transduced with wild type and mutant NDUFS1-cDNA and subsequently analyzed on the functional and protein level. We established the pathogenic nature of identified rare variants in four out of five disease alleles. This approach is a valuable add-on in disease genetics and it allows the analysis of the functional consequences of genetic variants in metabolic disorders."	"Progressive cavitating leukoencephalopathy associated with respiratory chain complex I deficiency and a novel mutation in NDUFS1. We present clinical, neuroimaging, and molecular data on the identification of a new homozygous c.1783A&gt;G (p.Thr595Ala) mutation in NDUFS1 in two inbred siblings with isolated complex I deficiency associated to a progressive cavitating leukoencephalopathy, a clinical and neuroradiological entity originally related to unknown defects of the mitochondrial energy metabolism. In both sibs, the muscle biopsy showed severe reduction of complex I enzyme activity, which was not obvious in fibroblasts. We also observed complex I dysfunction in a Neurospora crassa model of the disease, obtained by insertional mutagenesis, and in patient fibroblasts grown in galactose. Altogether, these results indicate that the NDUFS1 mutation is responsible for the disease and complex I deficiency. Clinical presentation of complex I defect is heterogeneous and includes an ample array of clinical phenotypes. Expanding the number of allelic variants in NDUFS1, our findings also contribute to a better understanding on the function of complex I."	"Differential proteomics leads to identification of domain-specific epididymal sperm proteins. The alteration in the protein signatures of the testicular sperm during its epididymal sojourn makes it functionally competent for successful fertilization. The present study was undertaken to identify the proteins acquired on its 2 domains, that is, the head and the flagellum, during the epididymal transit using a differential proteomics approach. Testicular sperm proteome was compared with cauda epididymal sperm proteome in rat. The protein spots exclusively present in the cauda epididymal sperm proteome were searched in the cauda sperm head proteome and the cauda sperm flagella proteome, and a total of 335 spots were found by alignment and auto-matching of the gels, of which 140 could be identified by mass spectrometry. Database search revealed that of these 9 proteins were novels. Gene Ontology annotation revealed that the identified proteins were distributed across different cellular components and were primarily involved in metabolic processes. The study also provides information on the localization of these proteins on the sperm domains, which indirectly gives a clue about its putative function. Validation of 3 proteins, namely MMSDH, NDUFS1, and UQCRC2, using antibodies very elegantly demonstrates that the strategy has been very effective. This comprehensive data of domain-specific epididymal sperm proteins will be useful in development of newer targets for posttesticular contraception and diagnostic markers for infertility."	"The p.M292T NDUFS2 mutation causes complex I-deficient Leigh syndrome in multiple families. Isolated complex I deficiency is the most frequently observed oxidative phosphorylation defect in children with mitochondrial disease, leading to a diverse range of clinical presentations, including Leigh syndrome. For most patients the genetic cause of the biochemical defect remains unknown due to incomplete understanding of the complex I assembly process. Nonetheless, a plethora of pathogenic mutations have been described to date in the seven mitochondrial-encoded subunits of complex I as well as in 12 of the nuclear-encoded subunits and in six assembly factors. Whilst several mitochondrial DNA mutations are recurrent, the majority of these mutations are reported in single families. We have sequenced core structural and functional nuclear-encoded subunits of complex I in a cohort of 34 paediatric patients with isolated complex I deficiency, identifying pathogenic mutations in 6 patients. These included a novel homozygous NDUFS1 mutation in an Asian child with Leigh syndrome, a previously identified NDUFS8 mutation (c.236C&gt;T, p.P79L) in a second Asian child with Leigh-like syndrome and six novel, compound heterozygous NDUFS2 mutations in four white Caucasian patients with Leigh or Leigh-like syndrome. Three of these children harboured an identical NDUFS2 mutation (c.875T&gt;C, p.M292T), which was also identified in conjunction with a novel NDUFS2 splice site mutation (c.866+4A&gt;G) in a fourth Caucasian child who presented to a different diagnostic centre, with microsatellite and single nucleotide polymorphism analyses indicating that this was due to an ancient common founder event. Our results confirm that NDUFS2 is a mutational hotspot in Caucasian children with isolated complex I deficiency and recommend the routine diagnostic investigation of this gene in patients with Leigh or Leigh-like phenotypes."	"Leukoencephalopathy with vanishing white matter caused by compound heterozygous mutations in mitochondrial complex I NDUFS1 subunit. NA"	"A DIGE proteomic analysis for high-intensity exercise-trained rat skeletal muscle. Exercise training induces various adaptations in skeletal muscles. However, the mechanisms remain unclear. In this study, we conducted 2D-DIGE proteomic analysis, which has not yet been used for elucidating adaptations of skeletal muscle after high-intensity exercise training (HIT). For 5 days, rats performed HIT, which consisted of 14 20-s swimming exercise bouts carrying a weight (14% of the body weight), and 10-s pause between bouts. The 2D-DIGE analysis was conducted on epitrochlearis muscles excised 18 h after the final training exercise. Proteomic profiling revealed that out of 800 detected and matched spots, 13 proteins exhibited changed expression by HIT compared with sedentary rats. All proteins were identified by MALDI-TOF/MS. Furthermore, using western immunoblot analyses, significantly changed expressions of NDUFS1 and parvalbumin (PV) were validated in relation to HIT. In conclusion, the proteomic 2D-DIGE analysis following HIT-identified expressions of NDUFS1 and PV, previously unknown to have functions related to exercise-training adaptations."	"A viral vaccine encoding prostate-specific antigen induces antigen spreading to a common set of self-proteins in prostate cancer patients. We previously reported a randomized phase II clinical trial combining a poxvirus-based vaccine encoding prostate-specific antigen (PSA) with radiotherapy in patients with localized prostate cancer. Here, we investigate whether vaccination against PSA induced immune responses to additional tumor-associated antigens and how this influenced clinical outcome. Pretreatment and posttreatment serum samples from patients treated with vaccine + external beam radiation therapy (EBRT) versus EBRT alone were evaluated by Western blot and serologic screening of a prostate cancer cDNA expression library (SEREX) to assess the development of treatment-associated autoantibody responses. Western blotting revealed treatment-associated autoantibody responses in 15 of 33 (45.5%) patients treated with vaccine + EBRT versus 1 of 8 (12.5%) treated with EBRT alone. SEREX screening identified 18 antigens, which were assembled on an antigen array with 16 previously identified antigens. Antigen array screening revealed that 7 of 33 patients (21.2%) treated with vaccine + EBRT showed a vaccine-associated autoantibody response to four ubiquitously expressed self-antigens: DIRC2, NDUFS1, MRFAP1, and MATN2. These responses were not seen in patients treated with EBRT alone, or other control groups. Patients with autoantibody responses to this panel of antigens had a trend toward decreased biochemical-free survival. Vaccine + EBRT induced antigen spreading in a large proportion of patients. A subset of patients developed autoantibodies to a panel of four self-antigens and showed a trend toward inferior outcomes. Thus, cancer vaccines directed against tumor-specific antigens can trigger autoantibody responses to self-proteins, which may influence the efficacy of vaccination."	"Proteome changes of lungs artificially infected with H-PRRSV and N-PRRSV by two-dimensional fluorescence difference gel electrophoresis. Porcine reproductive and respiratory syndrome with PRRS virus (PRRSV) infection, which causes significant economic losses annually, is one of the most economically important diseases affecting swine industry worldwide. In 2006 and 2007, a large-scale outbreak of highly pathogenic porcine reproductive and respiratory syndrome (PRRS) happened in China and Vietnam. However little data is available on global host response to PRRSV infection at the protein level, and similar approaches looking at mRNA is problematic since mRNA levels do not necessarily predict protein levels. In order to improve the knowledge of host response and viral pathogenesis of highly virulent Chinese-type PRRSV (H-PRRSV) and Non-high-pathogenic North American-type PRRSV strains (N-PRRSV), we analyzed the protein expression changes of H-PRRSV and N-PRRSV infected lungs compared with those of uninfected negative control, and identified a series of proteins related to host response and viral pathogenesis. According to differential proteomes of porcine lungs infected with H-PRRSV, N-PRRSV and uninfected negative control at different time points using two-dimensional fluorescence difference gel electrophoresis (2D-DIGE) and mass spectrometry identification, 45 differentially expressed proteins (DEPs) were identified. These proteins were mostly related to cytoskeleton, stress response and oxidation reduction or metabolism. In the protein interaction network constructed based on DEPs from lungs infected with H-PRRSV, HSPA8, ARHGAP29 and NDUFS1 belonged to the most central proteins, whereas DDAH2, HSPB1 and FLNA corresponded to the most central proteins in those of N-PRRSV infected. Our study is the first attempt to provide the complex picture of pulmonary protein expression during H-PRRSV and N-PRRSV infection under the in vivo environment using 2D-DIGE technology and bioinformatics tools, provides large scale valuable information for better understanding host proteins-virus interactions of these two PRRSV strains."	"Novel mutations in the NDUFS1 gene cause low residual activities in human complex I deficiencies. Mitochondrial complex I deficiency is the most frequently encountered defect of the oxidative phosphorylation system. To identify the genetic cause of the complex I deficiency, we screened the gene encoding the NDUFS1 subunit. We report 3 patients with low residual complex I activity expressed in cultured fibroblasts, which displayed novel mutations in the NDUFS1 gene. One mutation introduces a premature stop codon, 3 mutations cause a substitution of amino acids and another mutation a deletion of one amino acid. The fibroblasts of the patients display a decreased amount and activity of complex I. In addition, a disturbed assembly pattern was observed. These results suggest that NDUFS1 is a prime candidate to screen for disease-causing mutations in patients with a very low residual complex I activity in cultured fibroblasts."	"Differential effects of wild-type and A53T mutant isoform of alpha-synuclein on the mitochondrial proteome of differentiated SH-SY5Y cells. Increased levels of wild-type (WT) alpha-synuclein (alpha-syn) and mutant A53T alpha-syn are associated with Parkinson's disease (PD), a disease linked to abnormal mitochondrial function. This study compared mitochondria prepared from differentiated SH-SY5Y cells overexpressing WT or A53T alpha-syn with control cells, using 2-D difference in-gel electrophoresis. Statistical analysis was carried out primarily using ANOVA (p &lt; 0.01; Host:WT:A53T) and subsequently using independent t tests (host vs WT, host vs A53T). Of the protein spots found to be differentially expressed (n = 71; p &lt; 0.01, &gt;1.8/&lt;-1.8 fold change), 63 proteins were identified by LC-MS/MS, with the majority (77%) significantly altered in WT samples only. Twenty-three proteins known to be integral components of the mitochondria were abnormally expressed including those with roles in ATP synthesis, oxidoreduction, motor activity, carbohydrate metabolism, protein transcription, and protein folding. Thirteen forms of cytoskeletal proteins were also found to be overexpressed in the mitochondrial preparations from WT alpha-syn cells, suggesting an increased interaction of mitochondria with the cytoskeletal network. Altered levels of four mitochondrial proteins (HSPA9 (mortalin), NDUFS1, DLAT, ATP5A1) were confirmed using Western blot analysis. Furthermore, a significant reduction in OXPHOS 1 activity was observed in the WT alpha-syn cells, suggesting that there are functional consequences of the observed altered protein expression changes in the mitochondria."	"Human ind1, an iron-sulfur cluster assembly factor for respiratory complex I. Respiratory complex I (NADH:ubiquinone oxidoreductase) is a large mitochondrial inner membrane enzyme consisting of 45 subunits and 8 iron-sulfur (Fe/S) clusters. While complex I dysfunction is the most common reason for mitochondrial diseases, the assembly of complex I and its Fe/S cofactors remains elusive. Here, we identify the human mitochondrial P-loop NTPase, designated huInd1, that is critically required for the assembly of complex I. huInd1 can bind an Fe/S cluster via a conserved CXXC motif in a labile fashion. Knockdown of huInd1 in HeLa cells by RNA interference technology led to strong decreases in complex I protein and activity levels, remodeling of respiratory supercomplexes, and alteration of mitochondrial morphology. In addition, huInd1 depletion resulted in massive decreases in several subunits (NDUFS1, NDUFV1, NDUFS3, and NDUFA13) of the peripheral arm of complex I, with the concomitant appearance of a 450-kDa subcomplex representing part of the membrane arm. By a novel radiolabeling technique, the amount of iron associated with complex I was also shown to reflect the dependence of this enzyme on huInd1 for assembly. Together, these data identify huInd1 as a new assembly factor for human respiratory complex I with a possible role in the delivery of one or more Fe/S clusters to complex I subunits."	"Pathogenetic mechanisms in hereditary dysfunctions of complex I of the respiratory chain in neurological diseases. This paper covers genetic and biochemical aspects of mitochondrial bioenergetics dysfunction in hereditary neurological disorders associated with complex I defects. Three types of hereditary complex I dysfunction are dealt with: (i) homozygous mutations in the nuclear genes NDUFS1 and NDUFS4 of complex I, associated with mitochondrial encephalopathy; (ii) a recessive hereditary epileptic neurological disorder associated with enhanced proteolytic degradation of complex I; (iii) homoplasmic mutations in the ND5 and ND6 mitochondrial genes of the complex, coexistent with mutation in the nuclear PINK1 gene in familial Parkinsonism. The genetic and biochemical data examined highlight different mechanisms by which mitochondrial bioenergetics is altered in these hereditary defects of complex I. This knowledge, besides clarifying molecular aspects of the pathogenesis of hereditary diseases, can also provide hints for understanding the involvement of complex I in sporadic neurological disorders and aging, as well as for developing therapeutical strategies."	"Rapid screening for nuclear genes mutations in isolated respiratory chain complex I defects. Complex I or reduced nicotinamide adenine dinucleotide (NADH): ubiquinone oxydoreductase deficiency is the most common cause of respiratory chain defects. Molecular bases of complex I deficiencies are rarely identified because of the dual genetic origin of this multi-enzymatic complex (nuclear DNA and mitochondrial DNA) and the lack of phenotype-genotype correlation. We used a rapid method to screen patients with isolated complex I deficiencies for nuclear genes mutations by Surveyor nuclease digestion of cDNAs. Eight complex I nuclear genes, among the most frequently mutated (NDUFS1, NDUFS2, NDUFS3, NDUFS4, NDUFS7, NDUFS8, NDUFV1 and NDUFV2), were studied in 22 cDNA fragments spanning their coding sequences in 8 patients with a biochemically proved complex I deficiency. Single nucleotide polymorphisms and missense mutations were detected in 18.7% of the cDNA fragments by Surveyor nuclease treatment. Molecular defects were detected in 3 patients. Surveyor nuclease screening is a reliable method for genotyping nuclear complex I deficiencies, easy to interpret, and limits the number of sequence reactions. Its use will enhance the possibility of prenatal diagnosis and help us for a better understanding of complex I molecular defects."	"Mitigation of NADH: ubiquinone oxidoreductase deficiency by chronic Trolox treatment. Deficiency of mitochondrial NADH:ubiquinone oxidoreductase (complex I), is associated with a variety of clinical phenotypes such as Leigh syndrome, encephalomyopathy and cardiomyopathy. Circumstantial evidence suggests that increased reactive oxygen species (ROS) levels contribute to the pathogenesis of these disorders. Here we assessed the effect of the water-soluble vitamin E derivative Trolox on ROS levels, and the amount and activity of complex I in fibroblasts of six children with isolated complex I deficiency caused by a mutation in the NDUFS1, NDUFS2, NDUFS7, NDUFS8 or NDUFV1 gene. Patient cells displayed increased ROS levels and a variable decrease in complex I activity and amount. For control cells, the ratio between activity and amount was 1 whereas for the patients this ratio was below 1, indicating a defect in intrinsic catalytic activity of complex I in the latter cells. Trolox treatment dramatically reduced ROS levels in both control and patient cells, which was paralleled by a substantial increase in the amount of complex I. Although the ratio between the increase in activity and amount of complex I was exactly proportional in control cells it varied between 0.1 and 0.8 for the patients. Our findings suggest that the expression of complex I is regulated by ROS. Furthermore, they provide evidence that both the amount and intrinsic activity of complex I are decreased in inherited complex I deficiency. The finding that Trolox treatment increased the amount of complex I might aid the future development of antioxidant treatment strategies for patients. However, such treatment may only be beneficial to patients with a relatively small reduction in intrinsic catalytic defect of the complex."	"Clinical complete long-term remission of a patient with metastatic malignant melanoma under therapy with indisulam (E7070). The objective of this study is to report on long-term survival of a patient with metastatic melanoma treated with indisulam showing a distinct genetic pattern of repression of subsets of genes involved in mitochondrial energy metabolism. Gene expression profiling was performed with oligonucleotide microarray analysis. A 45-year-old patient with metastatic malignant melanoma was treated in third-line with indisulam (goal, E7070), a new chloroindolyl-sulphonamide cell-cycle inhibitor. The patient was treated weekly with a dose of 40 mg/m within a phase I study. On the basis of an amendment, the dose was escalated to 320 mg/m at maximum and de-escalated to 160 mg/m for long-term application in this individual patient. At the start of treatment the tumour burden consisted of two-in-transit-metastases, two further skin lesions, two cervical lymph nodes and four pulmonary metastases. Under a 2.5-year treatment with indisulam the tumour shrunk markedly although the objective response only reached stable disease. Lymph node biopsy revealed absence of vital melanoma cells. Therapy was stopped upon request of the patient. The gene expression profile indicated a profound transcriptional repression of subsets of genes involved in mitochondrial energy metabolism; namely NDUFB8, NDUFS1, NDUFV1, ACADVL and Homo sapiens clone 24408. The survival of this patient with metastatic melanoma lasted now 9 years, the progression-free interval 105 months. It can be assumed that this treatment effect is attributed to the down-regulating effect of indisulam on metabolic genes involved in energy production. Thus, knowledge on individual's tumour gene regulation may predict sensitivity and resistance to antitumoural agents."	"Sp1 expression is disrupted in schizophrenia; a possible mechanism for the abnormal expression of mitochondrial complex I genes, NDUFV1 and NDUFV2. The prevailing hypothesis regards schizophrenia as a polygenic disease, in which multiple genes combine with each other and with environmental stimuli to produce the variance of its clinical symptoms. We investigated whether the ubiquitous transcription factor Sp1 is abnormally expressed in schizophrenia, and consequently can affect the expression of genes implicated in this disorder. mRNA of Sp1 and of mitochondrial complex I subunits (NDUFV1, NDUFV2) was analyzed in three postmortem brain regions obtained from the Stanley Foundation Brain Collection, and in lymphocytes of schizophrenic patients and controls. Sp1 role in the transcription of these genes was studied as well. Sp1 was abnormally expressed in schizophrenia in both brain and periphery. Its mRNA alteration pattern paralleled that of NDUFV1 and NDUFV2, decreasing in the prefrontal cortex and the striatum, while increasing in the parieto-occipital cortex and in lymphocytes of schizophrenic patients as compared with controls. Moreover, a high and significant correlation between these genes existed in normal subjects, but was distorted in patients. Sp1 role in the regulation of complex I subunits, was demonstrated by the ability of the Sp1/DNA binding inhibitor, mithramycin, to inhibit the transcription of NDUFV1 and NDUFV2, in neuroblastoma cells. In addition, Sp1 activated NDUFV2 promoter by binding to its three GC-boxes. Both activation and binding were inhibited by mithramycin. These findings suggest that abnormality in Sp1, which can be the main activator/repressor or act in combination with additional transcription factors and is subjected to environmental stimuli, can contribute to the polygenic and clinically heterogeneous nature of schizophrenia."	"Analysis of the assembly profiles for mitochondrial- and nuclear-DNA-encoded subunits into complex I. Complex I of the respiratory chain is composed of at least 45 subunits that assemble together at the mitochondrial inner membrane. Defects in human complex I result in energy generation disorders and are also implicated in Parkinson's disease and altered apoptotic signaling. The assembly of this complex is poorly understood and is complicated by its large size and its regulation by two genomes, with seven subunits encoded by mitochondrial DNA (mtDNA) and the remainder encoded by nuclear genes. Here we analyzed the assembly of a number of mtDNA- and nuclear-gene-encoded subunits into complex I. We found that mtDNA-encoded subunits first assemble into intermediate complexes and require significant chase times for their integration into the holoenzyme. In contrast, a set of newly imported nuclear-gene-encoded subunits integrate with preexisting complex I subunits to form intermediates and/or the fully assembly holoenzyme. One of the intermediate complexes represents a subassembly associated with the chaperone B17.2L. By using isolated patient mitochondria, we show that this subassembly is a productive intermediate in complex I assembly since import of the missing subunit restores complex I assembly. Our studies point to a mechanism of complex I biogenesis involving two complementary processes, (i) synthesis of mtDNA-encoded subunits to seed de novo assembly and (ii) exchange of preexisting subunits with newly imported ones to maintain complex I homeostasis. Subunit exchange may also act as an efficient mechanism to prevent the accumulation of oxidatively damaged subunits that would otherwise be detrimental to mitochondrial oxidative phosphorylation and have the potential to cause disease."	"Mutations in structural genes of complex I associated with neurological diseases. This paper summarizes observations on the genetic and biochemical basis of hereditary defects of complex I (NADH-ubiquinone oxidoreductase) of the respiratory chain in human neurological patients. Two different types of functional defects of the complex are described. In one type mutations in the NDUFS1 and NDUFS4 nuclear structural genes of the complex were identified in two unrelated families. Both NDUFS1 and NDUFS4 neurological disorders were transmitted by autosomic recessive inheritance. The two mutations resulted in different impact on cellular metabolism. The NDUFS4 mutation, giving a more severe, fatal pathological pattern, resulted in a defective assembly of the complex and complete suppression of the enzymatic activity. The NDUFS1 mutation, with less severe progressive pathology, caused only partial inhibition of the complex but enhanced production of oxygen free radicals. In the second type of deficiencies extensive mutational analysis did not reveal pathogenic mutations in complex I genes but a decline in the level and activity of complex I, III, and IV were found, apparently associated with alteration in the cardiolipin membrane distribution."	"Dysfunctions of cellular oxidative metabolism in patients with mutations in the NDUFS1 and NDUFS4 genes of complex I. The pathogenic mechanism of a G44A nonsense mutation in the NDUFS4 gene and a C1564A mutation in the NDUFS1 gene of respiratory chain complex I was investigated in fibroblasts from human patients. As previously observed the NDUFS4 mutation prevented complete assembly of the complex and caused full suppression of the activity. The mutation (Q522K replacement) in NDUFS1 gene, coding for the 75-kDa Fe-S subunit of the complex, was associated with (a) reduced level of the mature complex, (b) marked, albeit not complete, inhibition of the activity, (c) accumulation of H(2)O(2) and O(2)(.-) in mitochondria, (d) decreased cellular content of glutathione, (e) enhanced expression and activity of glutathione peroxidase, and (f) decrease of the mitochondrial potential and enhanced mitochondrial susceptibility to reactive oxygen species (ROS) damage. No ROS increase was observed in the NDUFS4 mutation. Exposure of the NDUFS1 mutant fibroblasts to dibutyryl-cAMP stimulated the residual NADH-ubiquinone oxidoreductase activity, induced disappearance of ROS, and restored the mitochondrial potential. These are relevant observations for a possible therapeutical strategy in NDUFS1 mutant patients."	"Sequence analysis of nuclear genes encoding functionally important complex I subunits in children with encephalomyopathy. Complex I has a vital role in the energy production of the cell, and the clinical spectrum of complex I deficiency varies from severe lactic acidosis in infants to muscle weakness in adults. It has been estimated that the cause of complex I deficiency, especially in children, is often a mutation in the nuclear-encoded genes and, more rarely, in the genes encoded by mitochondrial DNA. We sequenced nine complex I subunit coding genes, NDUFAB1, NDUFS1, NDUFS2, NDUFS3, NDUFS4, NDUFS7, NDUFS8, NDUFV1 and NDUFV2, in 13 children with defined complex I deficiency. Two novel substitutions were found: a synonymous replacement 201A&gt;T in NDUFV2 and a non-synonymous base exchange 52C&gt;T in NDUFS8. The 52C&gt;T substitution produced the replacement Arg18Cys in the leading peptide of the TYKY subunit. This novel missense mutation was found as a heterozygote in one patient and her mother, but not among 202 healthy controls nor among 107 children with undefined encephalomyopathy. Bioinformatic analyses suggested that Arg18Cys could lead to marked changes in the physicochemical properties of the mitochondrial-targeting peptide of TYKY, but we could not see changes in the assembly or activity of complex I or in the transcription of NDUFS8 in the fibroblasts of our patient. We suggest that Arg18Cys in the leading peptide of the TYKY subunit is not solely pathogenic, and that other genetic factors contribute to the disease-causing potential of this mutation."	"A high-fat diet coordinately downregulates genes required for mitochondrial oxidative phosphorylation in skeletal muscle. Obesity and type 2 diabetes have been associated with a high-fat diet (HFD) and reduced mitochondrial mass and function. We hypothesized a HFD may affect expression of genes involved in mitochondrial function and biogenesis. To test this hypothesis, we fed 10 insulin-sensitive males an isoenergetic HFD for 3 days with muscle biopsies before and after intervention. Oligonucleotide microarray analysis revealed 297 genes were differentially regulated by the HFD (Bonferonni adjusted P &lt; 0.001). Six genes involved in oxidative phosphorylation (OXPHOS) decreased. Four were members of mitochondrial complex I: NDUFB3, NDUFB5, NDUFS1, and NDUFV1; one was SDHB in complex II and a mitochondrial carrier protein SLC25A12. Peroxisome proliferator-activated receptor gamma coactivator-1 (PGC1) alpha and PGC1beta mRNA were decreased by -20%, P &lt; 0.01, and -25%, P &lt; 0.01, respectively. In a separate experiment, we fed C57Bl/6J mice a HFD for 3 weeks and found that the same OXPHOS and PGC1 mRNAs were downregulated by approximately 90%, cytochrome C and PGC1alpha protein by approximately 40%. Combined, these results suggest a mechanism whereby HFD downregulates genes necessary for OXPHOS and mitochondrial biogenesis. These changes mimic those observed in diabetes and insulin resistance and, if sustained, may result in mitochondrial dysfunction in the prediabetic/insulin-resistant state."	"Unusual features of mitochondrial degeneration in skeletal muscle of patients with nuclear complex I mutation. NA"	"Leigh syndrome associated with mitochondrial complex I deficiency due to a novel mutation in the NDUFS1 gene. Mutations in the nuclear-encoded subunits of complex I of the mitochondrial respiratory chain are a recognized cause of Leigh syndrome (LS). Recently, 6 mutations in the NDUFS1 gene were identified in 3 families. To describe a Spanish family with LS, complex I deficiency in muscle, and a novel mutation in the NDUFS1 gene. Using molecular genetic approaches, we identified the underlying molecular defect in a patient with LS with a complex I defect. The proband was a child who displayed the clinical features of LS. Muscle biochemistry results showed a complex I defect of the mitochondrial respiratory chain. Sequencing analysis of the mitochondrial DNA-encoded ND genes, the nuclear DNA-encoded NDUFV1, NDUFS1, NDUFS2, NDUFS4, NDUFS6, NDUFS7, NDUFS8, and NDUFAB1 genes, and the complex I assembly factor CIA30 gene revealed a novel homozygous L231V mutation (c.691C--&gt;G) in the NDUFS1 gene. The parents were heterozygous carriers of the L231V mutation. Identifying nuclear mutations as a cause of respiratory chain disorders will enhance the possibility of prenatal diagnosis and help us understand how molecular defects can lead to complex I deficiency."	"Clinical and molecular findings in children with complex I deficiency. Isolated complex I deficiency, the most frequent OXPHOS disorder in infants and children, is genetically heterogeneous. Mutations have been found in seven mitochondrial DNA (mtDNA) and eight nuclear DNA encoded subunits, respectively, but in most of the cases the genetic basis of the biochemical defect is unknown. We analyzed the entire mtDNA and 11 nuclear encoded complex I subunits in 23 isolated complex I-deficient children, classified into five clinical groups: Leigh syndrome, progressive leukoencephalopathy, neonatal cardiomyopathy, severe infantile lactic acidosis, and a miscellaneous group of unspecified encephalomyopathies. A genetic definition was reached in eight patients (35%). Mutations in mtDNA were found in six out of eight children with Leigh syndrome, indicating a prevalent association between this phenotype and abnormalities in ND genes. In two patients with leukoencephalopathy, homozygous mutations were detected in two different nuclear-encoded complex I genes, including a novel transition in NDUFS1 subunit. In addition to these, a child affected by mitochondrial encephalomyopathy had heterozygous mutations in NDUFA8 and NDUFS2 genes, while another child with neonatal cardiomyopathy had a complex rearrangement in a single NDUFS7 allele. The latter cases suggest the possibility of unconventional patterns of inheritance in complex I defects."	"Oxidative modification of mitochondrial respiratory complexes in response to the stress of Trypanosoma cruzi infection. Previously, we have shown deficiencies in the activities of the mitochondrial respiratory complexes and reduced mitochondrial ATP generation capacity in chagasic hearts infected by Trypanosoma cruzi. In this study, we determined whether the oxidative stress that occurs in response to T. cruzi infection contributes to the catalytic impairment of respiratory complexes and to subsequent mitochondrial dysfunction in murine myocardium. Our data show that oxidative injuries, as determined by the levels of lipid peroxides and protein carbonyls, are incurred in cardiac mitochondria as early as 3 days postinfection and persist throughout the infection and disease. The individual components of the respiratory complexes were separated by two-dimensional, blue-native gel electrophoresis, and carbonyl adducts were detected by Western blotting. We observed substantial carbonylation of the specific subunits of mitochondrial respiratory complexes in infected murine hearts. Of note is the oxidative modification of NDUFS1, NDUFS2, and NDUFV1, which form the catalytic core of the CI complex; UQCRC1, UQCRC2, and UQCRQ, the subunits of the core subcomplex, and UQCRH and CYC1, which form the cyt c(1) subcomplex of CIII; and a gamma chain that is essential for ATP synthesis by CV complex. The extent of oxidative modifications of the subunits correlated with the catalytic defects of the respiratory complexes in the infected myocardium. Taken together, our data demonstrate that respiratory complexes are oxidatively damaged in response to the stress of T. cruzi infection. These data also suggest involvement of the specific susceptibility of the protein subunits, and not generalized mitochondrial oxidative damage in respiratory chain impairment of chagasic hearts."	"Disruption of mitochondrial function during apoptosis is mediated by caspase cleavage of the p75 subunit of complex I of the electron transport chain. Mitochondrial outer membrane permeabilization and cytochrome c release promote caspase activation and execution of apoptosis through cleavage of specific caspase substrates in the cell. Among the first targets of activated caspases are the permeabilized mitochondria themselves, leading to disruption of electron transport, loss of mitochondrial transmembrane potential (DeltaPsim), decline in ATP levels, production of reactive oxygen species (ROS), and loss of mitochondrial structural integrity. Here, we identify NDUFS1, the 75 kDa subunit of respiratory complex I, as a critical caspase substrate in the mitochondria. Cells expressing a noncleavable mutant of p75 sustain DeltaPsim and ATP levels during apoptosis, and ROS production in response to apoptotic stimuli is dampened. While cytochrome c release and DNA fragmentation are unaffected by the noncleavable p75 mutant, mitochondrial morphology of dying cells is maintained, and loss of plasma membrane integrity is delayed. Therefore, caspase cleavage of NDUFS1 is required for several mitochondrial changes associated with apoptosis."	"Genotyping microsatellite DNA markers at putative disease loci in inbred/multiplex families with respiratory chain complex I deficiency allows rapid identification of a novel nonsense mutation (IVS1nt -1) in the NDUFS4 gene in Leigh syndrome. Complex I deficiency, the most common cause of mitochondrial disorders, accounts for a variety of clinical symptoms and its genetic heterogeneity makes identification of the disease genes particularly tedious. Indeed, most of the 43 complex I subunits are encoded by nuclear genes, only seven of them being mitochondrially encoded. In order to offer urgent prenatal diagnosis, we have studied an inbred/multiplex family with complex I deficiency by using microsatellite DNA markers flanking the putative disease loci. Microsatellite DNA markers have allowed us to exclude the NDUFS7, NDUFS8, NDUFV1 and NDUFS1 genes and to find homozygosity at the NDUFS4 locus. Direct sequencing has led to identification of a homozygous splice acceptor site mutation in intron 1 of the NDUFS4 gene (IVS1nt -1, G--&gt;A); this was not found in chorion villi of the ongoing pregnancy. We suggest that genotyping microsatellite DNA markers at putative disease loci in inbred/multiplex families helps to identify the disease-causing mutation. More generally, we suggest giving consideration to a more systematic microsatellite analysis of putative disease loci for identification of disease genes in inbred/multiplex families affected with genetically heterogeneous conditions."	"Large-scale deletion and point mutations of the nuclear NDUFV1 and NDUFS1 genes in mitochondrial complex I deficiency. Reduced nicotinamide adenine dinucleotide (NADH):ubiquinone oxidoreductase (complex I) is the largest complex of the mitochondrial respiratory chain and complex I deficiency accounts for approximately 30% cases of respiratory-chain deficiency in humans. Only seven mitochondrial DNA genes, but &gt;35 nuclear genes encode complex I subunits. In an attempt to elucidate the molecular bases of complex I deficiency, we studied the six most-conserved complex I nuclear genes (NDUFV1, NDUFS8, NDUFS7, NDUFS1, NDUFA8, and NDUFB6) in a series of 36 patients with isolated complex I deficiency by denaturing high-performance liquid chromatography and by direct sequencing of the corresponding cDNA from cultured skin fibroblasts. In 3/36 patients, we identified, for the first time, five point mutations (del222, D252G, M707V, R241W, and R557X) and one large-scale deletion in the NDUFS1 gene. In addition, we found six novel NDUFV1 mutations (Y204C, C206G, E214K, IVS 8+41, A432P, and del nt 989-990) in three other patients. The six unrelated patients presented with hypotonia, ataxia, psychomotor retardation, or Leigh syndrome. These results suggest that screening for complex I nuclear gene mutations is of particular interest in patients with complex I deficiency, even when normal respiratory-chain-enzyme activities in cultured fibroblasts are observed."	"Localization of the human 75-kDal Fe-S protein of NADH-coenzyme Q reductase gene (NDUFS1) to 2q33----q34. NA"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NDUFS4"	"Leigh syndrome"	"Genome Regulation and Gene Interaction Networks Inferred From Muscle Transcriptome Underlying Feed Efficiency in Pigs. Improvement of feed efficiency (FE) is key for Sustainability and cost reduction in pig production. Our aim was to characterize the muscle transcriptomic profiles in Danbred Duroc (Duroc; n = 13) and Danbred Landrace (Landrace; n = 28), in relation to FE for identifying potential biomarkers. RNA-seq data on the 41 pigs was analyzed employing differential gene expression methods, gene-gene interaction and network analysis, including pathway and functional analysis. We also compared the results with genome regulation in human exercise data, hypothesizing that increased FE mimics processes triggered in exercised muscle. In the differential expression analysis, 13 genes were differentially expressed, including: MRPS11, MTRF1, TRIM63, MGAT4A, KLH30. Based on a novel gene selection method, the divergent count, we performed pathway enrichment analysis. We found five significantly enriched pathways related to feed conversion ratio (FCR). These pathways were mainly related to mitochondria, and summarized in the mitochondrial translation elongation (MTR) pathway. In the gene interaction analysis, the most interesting genes included the mitochondrial genes: PPIF, MRPL35, NDUFS4 and the fat metabolism and obesity genes: AACS, SMPDL3B, CTNNBL1, NDUFS4, and LIMD2. In the network analysis, we identified two modules significantly correlated with FCR. Pathway enrichment of module genes identified MTR, electron transport chain and DNA repair as enriched pathways. The network analysis revealed the mitochondrial gene group NDUF as key network hub genes, showing their potential as biomarkers. Results show that genes related to human exercise were enriched in identified FCR related genes. We conclude that mitochondrial activity is a key driver for FCR in muscle tissue, and mitochondrial genes could be potential biomarkers for FCR in pigs."	"Chronic fluoxetine or ketamine treatment differentially affects brain energy homeostasis which is not exacerbated in mice with trait suboptimal mitochondrial function. Antidepressants have been shown to influence mitochondrial function directly, and suboptimal mitochondrial function (SMF) has been implicated in complex psychiatric disorders. In the current study, we used a mouse model for trait SMF to test the hypothesis that chronic fluoxetine treatment in mice subjected to chronic stress would negatively impact brain bioenergetics, a response that would be more pronounced in mice with trait SMF. In contrast, we hypothesized that chronic ketamine treatment would positively impact mitochondrial function in both WT and mice with SMF. We used an animal model for trait SMF, the Ndufs4<sup>GT/GT</sup> mice, which exhibit 25% lower mitochondrial complex I activity. In addition to antidepressant treatment, mice were subjected to chronic unpredictable stress (CUS). This paradigm is widely used to model complex behaviours expressed in various psychiatric disorders. We assayed several physiological indices as proxies for the impact of chronic stress and antidepressant treatment. Furthermore, we measured brain mitochondrial complex activities using clinically validated assays as well as established metabolic signatures using targeted metabolomics. As hypothesized, we found evidence that chronic fluoxetine treatment negatively impacted brain bioenergetics. This phenotype was, however, not further exacerbated in mice with trait SMF. Ketamine did not have a significant influence on brain mitochondrial function in either genotype. Here we report that trait SMF could be a moderator for an individual's response to antidepressant treatment. Based on these results, we propose that in individuals with SMF and comorbid psychopathology, fluoxetine should be avoided, whereas ketamine could be a safer choice of treatment."	"Glucose metabolism links astroglial mitochondria to cannabinoid effects. Astrocytes take up glucose from the bloodstream to provide energy to the brain, thereby allowing neuronal activity and behavioural responses<sup>1-5</sup>. By contrast, astrocytes are under neuronal control through specific neurotransmitter receptors<sup>5-7</sup>. However, whether the activation of astroglial receptors can directly regulate cellular glucose metabolism to eventually modulate behavioural responses is unclear. Here we show that activation of mouse astroglial type-1 cannabinoid receptors associated with mitochondrial membranes (mtCB1) hampers the metabolism of glucose and the production of lactate in the brain, resulting in altered neuronal functions and, in turn, impaired behavioural responses in social interaction assays. Specifically, activation of astroglial mtCB1 receptors reduces the phosphorylation of the mitochondrial complex I subunit NDUFS4, which decreases the stability and activity of complex I. This leads to a reduction in the generation of reactive oxygen species by astrocytes and affects the glycolytic production of lactate through the hypoxia-inducible factor 1 pathway, eventually resulting in neuronal redox stress and impairment of behavioural responses in social interaction assays. Genetic and pharmacological correction of each of these effects abolishes the effect of cannabinoid treatment on the observed behaviour. These findings suggest that mtCB1 receptor signalling can directly regulate astroglial glucose metabolism to fine-tune neuronal activity and behaviour in mice."	"Novel mitochondrial and cytosolic purification pipeline for compartment-specific metabolomics in mammalian disease model tissues. Mitochondria represent an important milieu for studying the pathogenesis of several major diseases. The need for organelle-level metabolic resolution exists, as mitochondrial/cytosolic metabolites are often diluted beyond detection limits in complex samples. Compartment-specific studies are still hindered by the lack of efficient, cost-effective fractioning methods-applicable to laboratories of all financial/analytical standing. We established a novel mitochondrial/cytosolic purification pipeline for complimentary GC-TOF-MS and <sup>1</sup>H-NMR metabolomics using robust, commercially available fractionation strategies. Magnetic based mitochondria isolation kits (MACS) were adapted for this purpose, accompanied by cytosolic filtering. Yield was assessed through the percentage recovery of citrate synthase (CS; a mitochondrial marker), purity by immunoblotting against compartment-specific proteins and integrity interrogated through the respiratory coupling ratio (RCR). The effects of the kit-based buffers on MS/NMR analyses of pure metabolite standards were evaluated. Finally, biological applicability to mammalian disease models was shown using Ndufs4 mouse brain tissue. With minor modifications, MACS produced around 60% more mitochondria compared to a differential centrifugation method. Less than 15% of lysosomal LAMP-2 protein was found in the MACS isolates, confirming relative purity-while RCR's above 6 indicate sufficient mitochondrial integrity. The filtering approach effectively depleted mitochondria from the cytosolic fraction, as indicated by negligible Hsp60 and CS levels. Our GC-MS pilot yielded 60-70 features per fraction, while NMR analyses could quantify 6-10 of the most abundant compounds in each fraction. This study provides a simple and flexible solution for mitochondrial and cytosolic metabolomics in animal model tissues, towards large-scale application of such methodologies in disease research."	"NAD+ Regeneration Rescues Lifespan, but Not Ataxia, in a Mouse Model of Brain Mitochondrial Complex I Dysfunction. Mitochondrial complex I regenerates NAD+ and proton pumps for TCA cycle function and ATP production, respectively. Mitochondrial complex I dysfunction has been implicated in many brain pathologies including Leigh syndrome and Parkinson's disease. We sought to determine whether NAD+ regeneration or proton pumping, i.e., bioenergetics, is the dominant function of mitochondrial complex I in protection from brain pathology. We generated a mouse that conditionally expresses the yeast NADH dehydrogenase (NDI1), a single enzyme that can replace the NAD+ regeneration capability of the 45-subunit mammalian mitochondrial complex I without proton pumping. NDI1 expression was sufficient to dramatically prolong lifespan without significantly improving motor function in a mouse model of Leigh syndrome driven by the loss of NDUFS4, a subunit of mitochondrial complex I. Therefore, mitochondrial complex I activity in the brain supports organismal survival through its NAD+ regeneration capacity, while optimal motor control requires the bioenergetic function of mitochondrial complex I."	"Impaired mitochondrial complex I function as a candidate driver in the biological stress response and a concomitant stress-induced brain metabolic reprogramming in male mice. Mitochondria play a critical role in bioenergetics, enabling stress adaptation, and therefore, are central in biological stress responses and stress-related complex psychopathologies. To investigate the effect of mitochondrial dysfunction on the stress response and the impact on various biological domains linked to the pathobiology of depression, a novel mouse model was created. These mice harbor a gene trap in the first intron of the Ndufs4 gene (Ndufs4<sup>GT/GT</sup> mice), encoding the NDUFS4 protein, a structural component of complex I (CI), the first enzyme of the mitochondrial electron transport chain. We performed a comprehensive behavioral screening with a broad range of behavioral, physiological, and endocrine markers, high-resolution ex vivo brain imaging, brain immunohistochemistry, and multi-platform targeted mass spectrometry-based metabolomics. Ndufs4<sup>GT/GT</sup> mice presented with a 25% reduction of CI activity in the hippocampus, resulting in a relatively mild phenotype of reduced body weight, increased physical activity, decreased neurogenesis and neuroinflammation compared to WT littermates. Brain metabolite profiling revealed characteristic biosignatures discriminating Ndufs4<sup>GT/GT</sup> from WT mice. Specifically, we observed a reversed TCA cycle flux and rewiring of amino acid metabolism in the prefrontal cortex. Next, exposing mice to chronic variable stress (a model for depression-like behavior), we found that Ndufs4<sup>GT/GT</sup> mice showed altered stress response and coping strategies with a robust stress-associated reprogramming of amino acid metabolism. Our data suggest that impaired mitochondrial CI function is a candidate driver for altered stress reactivity and stress-induced brain metabolic reprogramming. These changes result in unique phenomic and metabolomic signatures distinguishing groups based on their mitochondrial genotype."	"A Single Intravenous Injection of AAV-PHP.B-hNDUFS4 Ameliorates the Phenotype of Ndufs4<sup> -/- </sup> Mice. Leigh syndrome, or infantile necrotizing subacute encephalopathy (OMIM #256000), is one of the most common manifestations of mitochondrial dysfunction, due to mutations in more than 75 genes, with mutations in respiratory complex I subunits being the most common cause. In the present study, we used the recently described PHP.B serotype, characterized by efficient capacity to cross the blood-brain barrier, to express the hNDUFS4 gene in the Ndufs4<sup> -/- </sup> mouse model of Leigh disease. A single intravenous injection of PHP.B-hNDUFS4 in adult Ndufs4<sup> -/- </sup> mice led to a normalization of the body weight, marked amelioration of the rotarod performance, delayed onset of neurodegeneration, and prolongation of the lifespan up to 1 year of age. hNDUFS4 protein was expressed in virtually all brain regions, leading to a partial recovery of complex I activity. Our findings strongly support the feasibility and effectiveness of adeno-associated viral vector (AAV)-mediated gene therapy for mitochondrial disease, particularly with new serotypes showing increased permeability to the blood-brain barrier in order to achieve widespread expression in the central nervous system."	"Gene replacement therapy provides benefit in an adult mouse model of Leigh syndrome. Mutations in nuclear-encoded mitochondrial genes are responsible for a broad spectrum of disorders among which Leigh syndrome is the most common in infancy. No effective therapies are available for this severe disease mainly because of the limited capabilities of the standard adeno-associated viral (AAV) vectors to transduce both peripheral organs and the CNS when injected systemically in adults. Here, we used the brain-penetrating AAV-PHP.B vector to reinstate gene expression in the Ndufs4 knockout mouse model of Leigh syndrome. Intravenous delivery of an AAV.PHP.B-Ndufs4 vector in 1-month-old knockout mice restored mitochondrial complex I activity in several organs including the CNS. This gene replacement strategy extended lifespan, rescued metabolic parameters, provided behavioural improvement, and corrected the pathological phenotype in the brain, retina, and heart of Ndufs4 knockout mice. These results provide a robust proof that gene therapy strategies targeting multiple organs can rescue fatal neurometabolic disorders with CNS involvement."	"Mitochondrial energy metabolism is negatively regulated by cannabinoid receptor 1 in intact human epidermis. Epidermal energy metabolism is relevant to skin physiology, ageing and photodamage. While selected hormones stimulate epidermal keratinocyte mitochondrial activity, its negative regulation remains unknown. In several cell types, cannabinoid receptor 1 (CB1 ) is expressed both on the cell membrane (cmCB1 ) and on the mitochondrial outer membrane (mtCB1 ), where its stimulation directly suppresses mitochondrial functions. In the current pilot study, we investigated if CB1 is a negative regulator of human epidermal energy metabolism under physiological conditions. Using organ-cultured full-thickness human skin specimens of healthy individuals, we showed that antagonizing the homeostatic CB1 signalling by the administration of the CB1 inverse agonist AM251 increased respiratory chain complex I and II/IV activity. The effect was CB1 -dependent, since the CB1 -selective agonist arachidonyl-2'-chloroethylamide could prevent the effect. Moreover, the phenomenon was also reproduced by siRNA-mediated down-regulation of CB1 . As revealed by the unaltered expression of several relevant markers (TFAM, VDAC1, MTCO1 and NDUFS4), modulation of CB1 signalling had no effect on the epidermal mitochondrial mass. Next, by using immunoelectron microscopy, we found that human epidermal keratinocytes express both cmCB1 and mtCB1 . Finally, by using equipotent extracellularly restricted (hemopressin) as well as cell-permeable (AM251) inverse agonists, we found that mitochondrial activity is most likely exclusively regulated by mtCB1 . Thus, our data identify mtCB1 as a novel negative regulator of keratinocyte mitochondrial activity in intact human epidermis, and raise the question, whether topical therapeutic interventions capable of selectively activating mtCB1 can reduce excessive mitochondrial ROS production resulting from dysregulated mitochondrial activity during skin ageing or photodamage."	"Low abundance of NDUFV2 and NDUFS4 subunits of the hydrophilic complex I domain and VDAC1 predicts mammalian longevity. Mitochondrial reactive oxygen species (ROS) production, specifically at complex I (Cx I), has been widely suggested to be one of the determinants of species longevity. The present study follows a comparative approach to analyse complex I in heart tissue from 8 mammalian species with a longevity ranging from 3.5 to 46 years. Gene expression and protein content of selected Cx I subunits were analysed using droplet digital PCR (ddPCR) and western blot, respectively. Our results demonstrate: 1) the existence of species-specific differences in gene expression and protein content of Cx I in relation to longevity; 2) the achievement of a longevity phenotype is associated with low protein abundance of subunits NDUFV2 and NDUFS4 from the matrix hydrophilic domain of Cx I; and 3) long-lived mammals show also lower levels of VDAC (voltage-dependent anion channel) amount. These differences could be associated with the lower mitochondrial ROS production and slower aging rate of long-lived animals and, unexpectedly, with a low content of the mitochondrial permeability transition pore in these species."	"NDUFS4 deletion triggers loss of NDUFA12 in Ndufs4<sup>-/-</sup> mice and Leigh syndrome patients: A stabilizing role for NDUFAF2. Mutations in NDUFS4, which encodes an accessory subunit of mitochondrial oxidative phosphorylation (OXPHOS) complex I (CI), induce Leigh syndrome (LS). LS is a poorly understood pediatric disorder featuring brain-specific anomalies and early death. To study the LS pathomechanism, we here compared OXPHOS proteomes between various Ndufs4<sup>-/-</sup> mouse tissues. Ndufs4<sup>-/-</sup> animals displayed significantly lower CI subunit levels in brain/diaphragm relative to other tissues (liver/heart/kidney/skeletal muscle), whereas other OXPHOS subunit levels were not reduced. Absence of NDUFS4 induced near complete absence of the NDUFA12 accessory subunit, a 50% reduction in other CI subunit levels, and an increase in specific CI assembly factors. Among the latter, NDUFAF2 was most highly increased. Regarding NDUFS4, NDUFA12 and NDUFAF2, identical results were obtained in Ndufs4<sup>-/-</sup> mouse embryonic fibroblasts (MEFs) and NDUFS4-mutated LS patient cells. Ndufs4<sup>-/-</sup> MEFs contained active CI in situ but blue-native-PAGE highlighted that NDUFAF2 attached to an inactive CI subcomplex (CI-830) and inactive assemblies of higher MW. In NDUFA12-mutated LS patient cells, NDUFA12 absence did not reduce NDUFS4 levels but triggered NDUFAF2 association to active CI. BN-PAGE revealed no such association in LS patient fibroblasts with mutations in other CI subunit-encoding genes where NDUFAF2 was attached to CI-830 (NDUFS1, NDUFV1 mutation) or not detected (NDUFS7 mutation). Supported by enzymological and CI in silico structural analysis, we conclude that absence of NDUFS4 induces near complete absence of NDUFA12 but not vice versa, and that NDUFAF2 stabilizes active CI in Ndufs4<sup>-/-</sup> mice and LS patient cells, perhaps in concert with mitochondrial inner membrane lipids."	"Regional metabolic signatures in the Ndufs4(KO) mouse brain implicate defective glutamate/α-ketoglutarate metabolism in mitochondrial disease. Leigh Syndrome (LS) is a mitochondrial disorder defined by progressive focal neurodegenerative lesions in specific regions of the brain. Defects in NDUFS4, a subunit of complex I of the mitochondrial electron transport chain, cause LS in humans; the Ndufs4 knockout mouse (Ndufs4(KO)) closely resembles the human disease. Here, we probed brain region-specific molecular signatures in pre-symptomatic Ndufs4(KO) to identify factors which underlie focal neurodegeneration. Metabolomics revealed that free amino acid concentrations are broadly different by region, and glucose metabolites are increased in a manner dependent on both region and genotype. We then tested the impact of the mTOR inhibitor rapamycin, which dramatically attenuates LS in Ndufs4(KO), on region specific metabolism. Our data revealed that loss of Ndufs4 drives pathogenic changes to CNS glutamine/glutamate/α-ketoglutarate metabolism which are rescued by mTOR inhibition Finally, restriction of the Ndufs4 deletion to pre-synaptic glutamatergic neurons recapitulated the whole-body knockout. Together, our findings are consistent with mTOR inhibition alleviating disease by increasing availability of α-ketoglutarate, which is both an efficient mitochondrial complex I substrate in Ndufs4(KO) and an important metabolite related to neurotransmitter metabolism in glutamatergic neurons."	"Effects of clofibrate and KH176 on life span and motor function in mitochondrial complex I-deficient mice. Mitochondrial complex I (CI), the first multiprotein enzyme complex of the OXPHOS system, executes a major role in cellular ATP generation. Consequently, dysfunction of this complex has been linked to inherited metabolic disorders, including Leigh disease (LD), an often fatal disease in early life. Development of clinical effective treatments for LD remains challenging due to the complex pathophysiological nature. Treatment with the peroxisome proliferation-activated receptor (PPAR) agonist bezafibrate improved disease phenotype in several mitochondrial disease mouse models mediated via enhanced mitochondrial biogenesis and fatty acid β-oxidation. However, the therapeutic potential of this mixed PPAR (α, δ/β, γ) agonist is severely hampered by hepatotoxicity, which is possibly caused by activation of PPARγ. Here, we aimed to investigate the effects of the PPARα-specific fibrate clofibrate in mitochondrial CI-deficient (Ndufs4<sup>-/-</sup>) mice. Clofibrate increased lifespan and motor function of Ndufs4<sup>-/-</sup> mice, while only marginal hepatotoxic effects were observed. Due to the complex clinical and cellular phenotype of CI-deficiency, we also aimed to investigate the therapeutic potential of clofibrate combined with the redox modulator KH176. As described previously, single treatment with KH176 was beneficial, however, combining clofibrate with KH176 did not result in an additive effect on disease phenotype in Ndufs4<sup>-/-</sup> mice. Overall, both drugs have promising, but independent and nonadditive, properties for the pharmacological treatment of CI-deficiency-related mitochondrial diseases."	"Deficiencies in the Mitochondrial Electron Transport Chain Affect Redox Poise and Resistance Toward Colletotrichum higginsianum. To investigate if and how the integrity of the mitochondrial electron transport chain (mETC) influences susceptibility of Arabidopsis toward Colletotrichum higginsianum, we have selected previously characterized mutants with defects at different stages of the mETC, namely, the complex I mutant ndufs4, the complex II mutant sdh2-1, the complex III mutant ucr8-1, and a mutant of the uncoupling protein ucp1-2. Relative to wild type, the selected complex I, II, and III mutants showed decreased total respiration, increased alternative respiration, as well as increased redox charge of the NADP(H) pool and decreased redox charge of the NAD(H) pool in the dark. In the light, mETC mutants accumulated free amino acids, albeit to varying degrees. Glycine and serine, which are involved in carbon recycling from photorespiration, and N-rich amino acids were predominantly increased in mETC mutants compared to the wild type. Taking together the physiological phenotypes of all examined mutants, our results suggest a connection between the limitation in the re-oxidation of reducing equivalents in the mitochondrial matrix and the induction of nitrate assimilation into free amino acids in the cytosol, which seems to be engaged as an additional sink for reducing power. The sdh2-1 mutant was less susceptible to C. higginsianum and did not show hampered salicylic acid (SA) accumulation as previously reported for SDH1 knock-down plants. The ROS burst remained unaffected in sdh2-1, emonstrating that subunit SDH2 is not involved in the control of ROS production and SA signaling by complex II. Moreover, the ndufs4 mutant showed only 20% of C. higginsianum colonization compared to wild type, with the ROS burst and the production of callose papillae being significantly increased compared to wild type. This indicates that a restriction of respiratory metabolism can positively affect pre-penetration resistance of Arabidopsis. Taking metabolite profiling data from all investigated mETC mutants, a strong positive correlation of resistance toward C. higginsianum with NADPH pool size, pyruvate contents, and other metabolites associated with redox poise and energy charge was evident, which fosters the hypothesis that limitations in the mETC can support resistance at post-penetration stages by improving the availability of metabolic power."	"Arabidopsis thaliana alternative dehydrogenases: a potential therapy for mitochondrial complex I deficiency? Perspectives and pitfalls. Complex I (CI or NADH:ubiquinone oxidoreductase) deficiency is the most frequent cause of mitochondrial respiratory chain defect. Successful attempts to rescue CI function by introducing an exogenous NADH dehydrogenase, such as the NDI1 from Saccharomyces cerevisiae (ScNDI1), have been reported although with drawbacks related to competition with CI. In contrast to ScNDI1, which is permanently active in yeast naturally devoid of CI, plant alternative NADH dehydrogenases (NDH-2) support the oxidation of NADH only when the CI is metabolically inactive and conceivably when the concentration of matrix NADH exceeds a certain threshold. We therefore explored the feasibility of CI rescue by NDH-2 from Arabidopsis thaliana (At) in human CI defective fibroblasts. We showed that, other than ScNDI1, two different NDH-2 (AtNDA2 and AtNDB4) targeted to the mitochondria were able to rescue CI deficiency and decrease oxidative stress as indicated by a normalization of SOD activity in human CI-defective fibroblasts. We further demonstrated that when expressed in human control fibroblasts, AtNDA2 shows an affinity for NADH oxidation similar to that of CI, thus competing with CI for the oxidation of NADH as opposed to our initial hypothesis. This competition reduced the amount of ATP produced per oxygen atom reduced to water by half in control cells. In conclusion, despite their promising potential to rescue CI defects, due to a possible competition with remaining CI activity, plant NDH-2 should be regarded with caution as potential therapeutic tools for human mitochondrial diseases."	"Molecular determinants for the polarization of macrophage and osteoclast. Emerging evidence suggest that macrophage and osteoclast are two competing differentiation outcomes from myeloid progenitors. In this review, we summarize recent advances in the understanding of the molecular mechanisms controlling the polarization of macrophage and osteoclast. These include nuclear receptors/transcription factors such as peroxisome proliferator-activated receptor γ (PPARγ) and estrogen-related receptor α (ERRα), their transcription cofactor PPARγ coactivator 1-β (PGC-1β), metabolic factors such as mitochondrial complex I (CI) component NADH:ubiquinone oxidoreductase iron-sulfur protein 4 (Ndufs4), as well as transmembrane receptors such as very-low-density-lipoprotein receptor (VLDLR). These molecular rheostats promote osteoclast differentiation but suppress proinflammatory macrophage activation and inflammation, by acting lineage-intrinsically, systemically or cross generation. These findings provide new insights to the understanding of the interactions between innate immunity and bone remodeling, advancing the field of osteoimmunology."	"Defined neuronal populations drive fatal phenotype in a mouse model of Leigh syndrome. Mitochondrial deficits in energy production cause untreatable and fatal pathologies known as mitochondrial disease (MD). Central nervous system affectation is critical in Leigh Syndrome (LS), a common MD presentation, leading to motor and respiratory deficits, seizures and premature death. However, only specific neuronal populations are affected. Furthermore, their molecular identity and their contribution to the disease remains unknown. Here, using a mouse model of LS lacking the mitochondrial complex I subunit Ndufs4, we dissect the critical role of genetically-defined neuronal populations in LS progression. Ndufs4 inactivation in Vglut2-expressing glutamatergic neurons leads to decreased neuronal firing, brainstem inflammation, motor and respiratory deficits, and early death. In contrast, Ndufs4 deletion in GABAergic neurons causes basal ganglia inflammation without motor or respiratory involvement, but accompanied by hypothermia and severe epileptic seizures preceding death. These results provide novel insight in the cell type-specific contribution to the pathology, dissecting the underlying cellular mechanisms of MD."	"Leigh Syndrome Mouse Model Can Be Rescued by Interventions that Normalize Brain Hyperoxia, but Not HIF Activation. Leigh syndrome is a devastating mitochondrial disease for which there are no proven therapies. We previously showed that breathing chronic, continuous hypoxia can prevent and even reverse neurological disease in the Ndufs4 knockout (KO) mouse model of complex I (CI) deficiency and Leigh syndrome. Here, we show that genetic activation of the hypoxia-inducible factor transcriptional program via any of four different strategies is insufficient to rescue disease. Rather, we observe an age-dependent decline in whole-body oxygen consumption. These mice exhibit brain tissue hyperoxia, which is normalized by hypoxic breathing. Alternative experimental strategies to reduce oxygen delivery, including breathing carbon monoxide (600 ppm in air) or severe anemia, can reverse neurological disease. Therefore, unused oxygen is the most likely culprit in the pathology of this disease. While pharmacologic activation of the hypoxia response is unlikely to alleviate disease in vivo, interventions that safely normalize brain tissue hyperoxia may hold therapeutic potential."	"Mitochondrial ROS-induced lysosomal dysfunction impairs autophagic flux and contributes to M1 macrophage polarization in a diabetic condition. Macrophage polarization toward the M1 phenotype and its subsequent inflammatory response have been implicated in the progression of diabetic complications. Despite adverse consequences of autophagy impairment on macrophage inflammation, the regulation of macrophage autophagy under hyperglycemic conditions is incompletely understood. Here, we report that the autophagy-lysosome system and mitochondrial function are impaired in streptozotocin (STZ)-induced diabetic mice and high glucose (HG)-stimulated RAW 264.7 cells. Mitochondrial dysfunction promotes reactive oxygen species (ROS) production and blocks autophagic flux by impairing lysosome function in macrophages under hyperglycemic conditions. Conversely, inhibition of mitochondrial ROS by Mito-TEMPO prevents HG-induced M1 macrophage polarization, and its effect is offset by blocking autophagic flux. The role of mitochondrial ROS in lysosome dysfunction and M1 macrophage polarization is also demonstrated in mitochondrial complex I defective RAW 264.7 cells induced by silencing NADH:ubiquinone oxidoreductase subunit-S4 (Ndufs4). These findings prove that mitochondrial ROS plays a key role in promoting macrophage polarization to inflammatory phenotype by impairing autophagy-lysosome system, which might provide clue to a novel treatment for diabetic complications."	"Animal Model for Leigh Syndrome. Leigh syndrome (LS) is a common neurodegenerative disease affecting neonates with devastating sequences. One of the characteristic features for LS is the phenotypic polymorphism, which-in part-can be dedicated to variety of genetic causes. A strong correlation with mitochondrial dysfunction has been assumed as the main cause of LS. This was based on the fact that most genetic causes are related to mitochondrial complex I genome. The first animal LS model was designed based on NDUFS4 knockdown. Interestingly, however, this one or others could not recapitulate the whole spectrum of manifestations encountered in different cases of LS. We show in this chapter a new animal model for LS based on silencing of one gene that is reported previously in clinical cases, FOXRED1. The new model carries some differences from previous models in the fact that more histopathological degeneration in dopaminergic system is seen and more behavioral changes can be recognized. FOXRED1 is an interesting gene that is related to complex I assembly, hence, plays important role in different neurodegenerative disorders leading to different clinical manifestations."	"Photoreceptors in a mouse model of Leigh syndrome are capable of normal light-evoked signaling. Mitochondrial dysfunction is an important cause of heritable vision loss. Mutations affecting mitochondrial bioenergetics may lead to isolated vision loss or life-threatening systemic disease, depending on a mutation's severity. Primary optic nerve atrophy resulting from death of retinal ganglion cells is the most prominent ocular manifestation of mitochondrial disease. However, dysfunction of other retinal cell types has also been described, sometimes leading to a loss of photoreceptors and retinal pigment epithelium that manifests clinically as pigmentary retinopathy. A popular mouse model of mitochondrial disease that lacks NADH:ubiquinone oxidoreductase subunit S4 (NDUFS4), a subunit of mitochondrial complex I, phenocopies many traits of the human disease Leigh syndrome, including the development of optic atrophy. It has also been reported that ndufs4<sup>-/-</sup> mice display diminished light responses at the level of photoreceptors or bipolar cells. By conducting electroretinography (ERG) recordings in live ndufs4<sup>-/-</sup> mice, we now demonstrate that this defect occurs at the level of retinal photoreceptors. We found that this deficit does not arise from retinal developmental anomalies, photoreceptor degeneration, or impaired regeneration of visual pigment. Strikingly, the impairment of ndufs4<sup>-/-</sup> photoreceptor function was not observed in ex vivo ERG recordings from isolated retinas, indicating that photoreceptors with complex I deficiency are intrinsically capable of normal signaling. The difference in electrophysiological phenotypes in vivo and ex vivo suggests that the energy deprivation associated with severe mitochondrial impairment in the outer retina renders ndufs4<sup>-/-</sup> photoreceptors unable to maintain the homeostatic conditions required to operate at their normal capacity."	"BAP31 regulates mitochondrial function via interaction with Tom40 within ER-mitochondria contact sites. The endoplasmic reticulum (ER) is composed of large membrane-bound compartments, and its membrane subdomain appears to be in close contact with mitochondria via ER-mitochondria contact sites. Here, I demonstrate that the ER membrane protein, BAP31, acts as a key factor in mitochondrial homeostasis to stimulate the constitution of the mitochondrial complex I by forming an ER-mitochondria bridging protein complex. Within this complex, BAP31 interacts with mitochondria-localized proteins, including Tom40, to stimulate the translocation of NDUFS4, the component of complex I from the cytosol to the mitochondria. Disruption of the BAP31-Tom40 complex inhibits mitochondrial complex I activity and oxygen consumption by the decreased NDUFS4 localization to the mitochondria. Thus, the BAP31-Tom40 ER-mitochondria bridging complex mediates the regulation of mitochondrial function and plays a role as a previously unidentified stress sensor, representing a mechanism for the establishment of ER-mitochondria communication via contact sites between these organelles."	"Low VDAC1 Expression Is Associated with an Aggressive Phenotype and Reduced Overall Patient Survival in Cholangiocellular Carcinoma. Abstract: Cancer cells frequently exhibit dysfunctional oxidative phosphorylation (OXPHOS) and a concomitant increase in glycolytic flux. We investigated the expression of OXPHOS complex subunits and mitochondrial mass in 34 human cholangiocellular carcinomas (CCCs) and adjacent normal tissue by using tissue microarrays. In the tumor periphery, all OXPHOS complexes were reduced except complex I. In addition, significantly lower levels of complex IV were found at the tumor center (p &lt; 0.0001). Mitochondrial mass, as indicated by VDAC1 expression, was significantly increased in CCCs compared to corresponding normal tissue (p &lt; 0.0001). VDAC1 levels were inversely correlated with UICC (Union Internationale Contre le Cancer) cancer stage classification (p = 0.0065). Furthermore, significantly lower VDAC1 was present in patients with lymph node involvement (p = 0.02). Consistent with this, patients whose carcinomas expressed VDAC1 at low to moderate levels had significantly reduced survival compared to high expressors (p &lt; 0.05). Therefore, low mitochondrial mass is associated with more aggressive CCC. These metabolic features are indicative of a Warburg phenotype in CCCs. This metabolic signature has potential therapeutic implications because tumors with low mitochondrial function may be targeted by metabolic therapies such as a high-fat, low-carbohydrate ketogenic diet."	"Donation of mitochondria by iPSC-derived mesenchymal stem cells protects retinal ganglion cells against mitochondrial complex I defect-induced degeneration. Rationale: Retinal ganglion cell (RGC) degeneration is extremely hard to repair or regenerate and is often coupled with mitochondrial dysfunction. Mesenchymal stem cells (MSCs)-based treatment has been demonstrated beneficial for RGC against degeneration. However, underlying mechanisms of MSC-provided RGC protection are largely unknown other than neuroprotective paracrine actions. In this study, we sought to investigate whether mitochondrial donation from induced pluripotent stem cell-derived MSC (iPSC-MSCs) could preserve RGC survival and restore retinal function. Methods: iPSC-MSCs were injected into the vitreous cavity of one eye in NADH dehydrogenase (ubiquinone) Fe-S protein 4 (Ndufs4) knockout (KO) and wild type mice. Phosphate buffer saline (PBS) or rotenone treated iPSC-MSCs were injected as control groups. Retinal function was detected by flash electroretinogram (ERG). Whole-mount immunofluorescence (IF), morphometric analysis, confocal microscopy imaging, polymerase chain reaction (PCR) of the retinas were conducted to investigate mitochondrial transfer from human iPSC-MSCs to mouse retina. Quantitative mouse cytokine arrays were carried out to measure retinal inflammatory response under difference treatments. Results: RGC survival in the iPSC-MSC injected retina of Ndufs4 KO mice was significantly increased with improved retinal function. GFP labelled human mitochondria from iPSC-MSC were detected in the RGCs in the retina of Ndufs4 KO mice starting from 96 hours post injection. PCR result showed only human mitochondrial DNA without human nuclear DNA could be detected in the mouse retinas after iPSC-MSC treatment in Ndufs4 KO mice eye. Quantitative cytokine array analysis showed pro-inflammatory cytokines was also downregulated by this iPSC-MSC treatment. Conclusion: Intravitreal transplanted iPSC-MSCs can effectively donate functional mitochondria to RGCs and protect against mitochondrial damage-induced RGC loss."	"Age-dependent accumulation of oligomeric SNCA/α-synuclein from impaired degradation in mutant LRRK2 knockin mouse model of Parkinson disease: role for therapeutic activation of chaperone-mediated autophagy (CMA). Parkinson disease (PD) is an age-related neurodegenerative disorder associated with misfolded SNCA/α-synuclein accumulation in brain. Impaired catabolism of SNCA potentiates formation of its toxic oligomers. LRRK2 (leucine-rich repeat kinase-2) mutations predispose to familial and sporadic PD. Mutant LRRK2 perturbs chaperone-mediated-autophagy (CMA) to degrade SNCA. We showed greater age-dependent accumulation of oligomeric SNCA in striatum and cortex of aged LRRK2<sup>R1441G</sup> knockin (KI) mice, compared to age-matched wildtype (WT) by 53% and 31%, respectively. Lysosomal clustering and accumulation of CMA-specific LAMP2A and HSPA8/HSC70 proteins were observed in aged mutant striatum along with increased GAPDH (CMA substrate) by immunohistochemistry of dorsal striatum and flow cytometry of ventral midbrain cells. Using our new reporter protein clearance assay, mutant mouse embryonic fibroblasts (MEFs) expressing either SNCA or CMA recognition 'KFERQ'-like motif conjugated with photoactivated-PAmCherry showed slower cellular clearance compared to WT by 28% and 34%, respectively. However, such difference was not observed after the 'KFERQ'-motif was mutated. LRRK2 mutant MEFs exhibited lower lysosomal degradation than WT indicating lysosomal dysfunction. LAMP2A-knockdown reduced total lysosomal activity and clearance of 'KFERQ'-substrate in WT but not in mutant MEFs, indicating impaired CMA in the latter. A CMA-specific activator, AR7, induced neuronal LAMP2A transcription and lysosomal activity in MEFs. AR7 also attenuated the progressive accumulation of both intracellular and extracellular SNCA oligomers in prolonged cultures of mutant cortical neurons (DIV21), indicating that oligomer accumulation can be suppressed by CMA activation. Activation of autophagic pathways to reduce aged-related accumulation of pathogenic SNCA oligomers is a viable disease-modifying therapeutic strategy for PD.Abbreviations: 3-MA: 3-methyladenine; AR7: 7-chloro-3-(4-methylphenyl)-2H-1,4-benzoxazine; CMA: chaperone-mediated autophagy; CQ: chloroquine; CSF: cerebrospinal fluid; DDM: n-dodecyl β-D-maltoside; DIV: days in vitro; ELISA: enzyme-linked immunosorbent assay; FACS: fluorescence-activated cell sorting; GAPDH: glyceraldehyde-3-phosphate dehydrogenase; GWAS: genome-wide association studies; HSPA8/HSC70: heat shock protein 8; KFERQ: CMA recognition pentapeptide; KI: knockin; LAMP1: lysosomal-associated membrane protein 1; LAMP2A: lysosomal-associated membrane protein 2A; LDH: lactate dehydrogenase; LRRK2: leucine-rich repeat kinase 2; MEF: mouse embryonic fibroblast; NDUFS4: NADH:ubiquinone oxidoreductase core subunit S4; NE: novel epitope; PD: Parkinson disease; RARA/RARα: retinoic acid receptor, alpha; SNCA: synuclein, alpha; TUBB3/TUJ1: tubulin, beta 3 class III; WT: wild-type."	"miR-181a/b downregulation exerts a protective action on mitochondrial disease models. Mitochondrial diseases (MDs) are a heterogeneous group of devastating and often fatal disorders due to defective oxidative phosphorylation. Despite the recent advances in mitochondrial medicine, effective therapies are still not available for these conditions. Here, we demonstrate that the microRNAs miR-181a and miR-181b (miR-181a/b) regulate key genes involved in mitochondrial biogenesis and function and that downregulation of these miRNAs enhances mitochondrial turnover in the retina through the coordinated activation of mitochondrial biogenesis and mitophagy. We thus tested the effect of miR-181a/b inactivation in different animal models of MDs, such as microphthalmia with linear skin lesions and Leber's hereditary optic neuropathy. We found that miR-181a/b downregulation strongly protects retinal neurons from cell death and significantly ameliorates the disease phenotype in all tested models. Altogether, our results demonstrate that miR-181a/b regulate mitochondrial homeostasis and that these miRNAs may be effective gene-independent therapeutic targets for MDs characterized by neuronal degeneration."	"A Drosophila Mitochondrial Complex I Deficiency Phenotype Array. Mitochondrial diseases are a group of rare life-threatening diseases often caused by defects in the oxidative phosphorylation system. No effective treatment is available for these disorders. Therapeutic development is hampered by the high heterogeneity in genetic, biochemical, and clinical spectra of mitochondrial diseases and by limited preclinical resources to screen and identify effective treatment candidates. Alternative models of the pathology are essential to better understand mitochondrial diseases and to accelerate the development of new therapeutics. The fruit fly Drosophila melanogaster is a cost- and time-efficient model that can recapitulate a wide range of phenotypes observed in patients suffering from mitochondrial disorders. We targeted three important subunits of complex I of the mitochondrial oxidative phosphorylation system with the flexible UAS-Gal4 system and RNA interference (RNAi): NDUFS4 (ND-18), NDUFS7 (ND-20), and NDUFV1 (ND-51). Using two ubiquitous driver lines at two temperatures, we established a collection of phenotypes relevant to complex I deficiencies. Our data offer models and phenotypes with different levels of severity that can be used for future therapeutic screenings. These include qualitative phenotypes that are amenable to high-throughput drug screening and quantitative phenotypes that require more resources but are likely to have increased potential and sensitivity to show modulation by drug treatment."	"Early-age Ndufs4 knockout mice are an inappropriate animal model of Leigh syndrome. NA"	"Early detection of elevated lactate levels in a mitochondrial disease model using chemical exchange saturation transfer (CEST) and magnetic resonance spectroscopy (MRS) with 7T MR imaging. NA"	"Mitochondrial respiratory chain deficiency inhibits lysosomal hydrolysis. Mitochondria are key organelles for cellular metabolism, and regulate several processes including cell death and macroautophagy/autophagy. Here, we show that mitochondrial respiratory chain (RC) deficiency deactivates AMP-activated protein kinase (AMPK, a key regulator of energy homeostasis) signaling in tissue and in cultured cells. The deactivation of AMPK in RC-deficiency is due to increased expression of the AMPK-inhibiting protein FLCN (folliculin). AMPK is found to be necessary for basal lysosomal function, and AMPK deactivation in RC-deficiency inhibits lysosomal function by decreasing the activity of the lysosomal Ca<sup>2+</sup> channel MCOLN1 (mucolipin 1). MCOLN1 is regulated by phosphoinositide kinase PIKFYVE and its product PtdIns(3,5)P2, which is also decreased in RC-deficiency. Notably, reactivation of AMPK, in a PIKFYVE-dependent manner, or of MCOLN1 in RC-deficient cells, restores lysosomal hydrolytic capacity. Building on these data and the literature, we propose that downregulation of the AMPK-PIKFYVE-PtdIns(3,5)P2-MCOLN1 pathway causes lysosomal Ca<sup>2+</sup> accumulation and impaired lysosomal catabolism. Besides unveiling a novel role of AMPK in lysosomal function, this study points to the mechanism that links mitochondrial malfunction to impaired lysosomal catabolism, underscoring the importance of AMPK and the complexity of organelle cross-talk in the regulation of cellular homeostasis. Abbreviation: ΔΨm: mitochondrial transmembrane potential; AMP: adenosine monophosphate; AMPK: AMP-activated protein kinase; ATG5: autophagy related 5; ATP: adenosine triphosphate; ATP6V0A1: ATPase, H+ transporting, lysosomal, V0 subbunit A1; ATP6V1A: ATPase, H+ transporting, lysosomal, V0 subbunit A; BSA: bovine serum albumin; CCCP: carbonyl cyanide-m-chlorophenylhydrazone; CREB1: cAMP response element binding protein 1; CTSD: cathepsin D; CTSF: cathepsin F; DMEM: Dulbecco's modified Eagle's medium; DMSO: dimethyl sulfoxide; EBSS: Earl's balanced salt solution; ER: endoplasmic reticulum; FBS: fetal bovine serum; FCCP: carbonyl cyanide-p-trifluoromethoxyphenolhydrazone; GFP: green fluorescent protein; GPN: glycyl-L-phenylalanine 2-naphthylamide; LAMP1: lysosomal associated membrane protein 1; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; MCOLN1/TRPML1: mucolipin 1; MEF: mouse embryonic fibroblast; MITF: melanocyte inducing transcription factor; ML1N*2-GFP: probe used to detect PtdIns(3,5)P2 based on the transmembrane domain of MCOLN1; MTORC1: mechanistic target of rapamycin kinase complex 1; NDUFS4: NADH:ubiquinone oxidoreductase subunit S4; OCR: oxygen consumption rate; PBS: phosphate-buffered saline; pcDNA: plasmid cytomegalovirus promoter DNA; PCR: polymerase chain reaction; PtdIns3P: phosphatidylinositol-3-phosphate; PtdIns(3,5)P2: phosphatidylinositol-3,5-bisphosphate; PIKFYVE: phosphoinositide kinase, FYVE-type zinc finger containing; P/S: penicillin-streptomycin; PVDF: polyvinylidene fluoride; qPCR: quantitative real time polymerase chain reaction; RFP: red fluorescent protein; RNA: ribonucleic acid; SDS-PAGE: sodium dodecyl sulfate polyacrylamide gel electrophoresis; shRNA: short hairpin RNA; siRNA: small interfering RNA; TFEB: transcription factor EB; TFE3: transcription factor binding to IGHM enhancer 3; TMRM: tetramethylrhodamine, methyl ester, perchlorate; ULK1: unc-51 like autophagy activating kinase 1; ULK2: unc-51 like autophagy activating kinase 2; UQCRC1: ubiquinol-cytochrome c reductase core protein 1; v-ATPase: vacuolar-type H+-translocating ATPase; WT: wild-type."	"Miniaturized <sup>1</sup>H-NMR method for analyzing limited-quantity samples applied to a mouse model of Leigh disease. The analysis of limited-quantity samples remains a challenge associated with mouse models, especially for multi-platform metabolomics studies. Although inherently insensitive, the highly specific characteristics of nuclear magnetic resonance (NMR) spectroscopy make it an advantageous platform for global metabolite profiling, particularly in mitochondrial disease research. Show method equivalency between a well-established standard operating protocol (SOP) and our novel miniaturized <sup>1</sup>H-NMR method. The miniaturized method was performed in a 2 mm NMR tube on a standard 500 MHz NMR spectrometer with a 5 mm triple-resonance inverse TXI probe at room temperature. Firstly, using synthetic urine spiked with low (50 µM), medium (250 µM) and high (500 µM) levels (n = 10) of nine standards, both the SOP and miniaturized method were shown to have acceptable precision (CV &lt; 15%), relative accuracy (80-120%), and linearity (R<sup>2</sup> &gt; 0.95), except for taurine. Furthermore, statistical equivalence was shown using the two one-sided test. Secondly, pooled mouse quadriceps muscle extract was used to further confirm method equivalence (n = 3), as well as explore the analytical dynamics of this novel approach by analyzing more-concentrated versions of samples (up to 10× concentration) to expand identification of metabolites qualitatively, with quantitative linearity. Lastly, we demonstrate the new technique's application in a pilot metabolomics study using minute soleus muscle tissue from a mouse model of Leigh syndrome using Ndufs4 KO mice. We demonstrate method equivalency, supporting our novel miniaturized <sup>1</sup>H-NMR method as a financially feasible alternative to cryoprobe technology-for limited-quantity biological samples in metabolomics studies that requires a volume one-tenth of the SOP."	"Targeting NAD<sup>+</sup> Metabolism as Interventions for Mitochondrial Disease. Leigh syndrome is a mitochondrial disease characterized by neurological disorders, metabolic abnormality and premature death. There is no cure for Leigh syndrome; therefore, new therapeutic targets are urgently needed. In Ndufs4-KO mice, a mouse model of Leigh syndrome, we found that Complex I deficiency led to declines in NAD<sup>+</sup> levels and NAD<sup>+</sup> redox imbalance. We tested the hypothesis that elevation of NAD<sup>+</sup> levels would benefit Ndufs4-KO mice. Administration of NAD<sup>+</sup> precursor, nicotinamide mononucleotide (NMN) extended lifespan of Ndufs4-KO mice and attenuated lactic acidosis. NMN increased lifespan by normalizing NAD<sup>+</sup> redox imbalance and lowering HIF1a accumulation in Ndufs4-KO skeletal muscle without affecting the brain. NMN up-regulated alpha-ketoglutarate (KG) levels in Ndufs4-KO muscle, a metabolite essential for HIF1a degradation. To test whether supplementation of KG can treat Ndufs4-KO mice, a cell-permeable KG, dimethyl ketoglutarate (DMKG) was administered. DMKG extended lifespan of Ndufs4-KO mice and delayed onset of neurological phenotype. This study identified therapeutic mechanisms that can be targeted pharmacologically to treat Leigh syndrome."	"Sex-specific regulation of cardiac microRNAs targeting mitochondrial proteins in pressure overload. Maladaptive remodeling in pressure overload (PO)-induced left ventricular hypertrophy (LVH) may lead to heart failure. Major sex differences have been reported in this process. The steroid hormone 17β-estradiol, along with its receptors ERα and ERβ, is thought to be crucial for sex differences and is expected to be protective, but this may not hold true for males. Increasing evidence demonstrates a major role for microRNAs (miRNAs) in PO-induced LVH. However, little is known about the effects of biological sex and ERβ on cardiac miRNA regulation and downstream mitochondrial targets. We aimed at the analysis of proteins involved in mitochondrial metabolism testing the hypothesis that they are the target of sex-specific miRNA regulation. We employed the transverse aortic constriction model in mice and assessed the levels of five mitochondrial proteins, i.e., Auh, Crat, Decr1, Hadha, and Ndufs4. We found a significant decrease of the mitochondrial proteins primarily in the male overloaded heart compared with the corresponding control group. Following computational analysis to identify miRNAs putatively targeting these proteins, our in vitro experiments employing miRNA mimics demonstrated the presence of functional target sites for miRNAs in the 3'-untranslated region of the messenger RNAs coding for these proteins. Next, we assessed the levels of the functionally validated miRNAs under PO and found that their expression was induced only in the male overloaded heart. In contrast, there was no significant effect on miRNA expression in male mice with deficient ERβ. We put forward that the male-specific induction of miRNAs and corresponding downregulation of downstream protein targets involved in mitochondrial metabolism may contribute to sex-specific remodeling in PO-induced LVH."	"Tumor cell oxidative metabolism as a barrier to PD-1 blockade immunotherapy in melanoma. The tumor microenvironment presents physical, immunologic, and metabolic barriers to durable immunotherapy responses. We have recently described roles for both T cell metabolic insufficiency as well as tumor hypoxia as inhibitory mechanisms that prevent T cell activity in murine tumors, but whether intratumoral T cell activity or response to immunotherapy varies between patients as a function of distinct metabolic profiles in tumor cells remains unclear. Here, we show that metabolic derangement can vary widely in both degree and type in patient-derived cell lines and in ex vivo analysis of patient samples, such that some cells demonstrate solely deregulated oxidative or glycolytic metabolism. Further, deregulated oxidative, but not glycolytic, metabolism was associated with increased generation of hypoxia upon implantation into immunodeficient animals. Generation of murine single-cell melanoma cell lines that lacked either oxidative or glycolytic metabolism showed that elevated tumor oxygen consumption was associated with increased T cell exhaustion and decreased immune activity. Moreover, melanoma lines lacking oxidative metabolism were solely responsive to anti-PD-1 therapy among those tested. Prospective analysis of patient sample immunotherapy revealed that oxidative, but not glycolytic, metabolism was associated with progression on PD-1 blockade. Our data highlight a role for oxygen as a crucial metabolite required for the tumor-infiltrating T cells to differentiate appropriately upon PD-1 blockade, and suggest that tumor oxidative metabolism may be a target to improve immunotherapeutic response."	"Mitochondrial Function in Astrocytes Is Essential for Normal Emergence from Anesthesia in Mice. In mice, restriction of loss of the mitochondrial complex I gene Ndufs4 to glutamatergic neurons confers a profound hypersensitivity to volatile anesthetics.Astrocytes are crucial to glutamatergic synapse functioning during excitatory transmission. In a tamoxifen-activated astrocyte-specific Ndufs4(KO) mouse, the induction EC50s for tail clamp in both isoflurane and halothane were similar between the control and astrocyte-specific Ndufs4(KO) mice at 3 weeks after 4-hydroxy tamoxifen injection. However, the emergent concentrations in both anesthetics for the astrocyte-specific Ndufs4(KO) mice were half that of the controls.Similarly, the induction EC50s for loss of righting reflex were similar between the control and astrocyte-specific Ndufs4(KO) mice; concentrations for regain of righting reflex in both anesthetics for the astrocyte-specific Ndufs4(KO) mice were much less than the control.Thus, mitochondrial complex I function within astrocytes is essential for normal emergence from anesthesia. In mice, restriction of loss of the mitochondrial complex I gene Ndufs4 to glutamatergic neurons confers a profound hypersensitivity to volatile anesthetics similar to that seen with global genetic knockout of Ndufs4. Astrocytes are crucial to glutamatergic synapse functioning during excitatory transmission. Therefore, the authors examined the role of astrocytes in the anesthetic hypersensitivity of Ndufs4(KO). A tamoxifen-activated astrocyte-specific Ndufs4(KO) mouse was constructed. The specificity of the astrocyte-specific inducible model was confirmed by using the green fluorescent protein reporter line Ai6. Approximately 120 astrocyte-specific knockout and control mice were used for the experiments. Mice were anesthetized with varying concentrations of isoflurane or halothane; loss of righting reflex and response to a tail clamp were determined and quantified as the induction and emergence EC50s. Because norepinephrine has been implicated in emergence from anesthesia and astrocytes respond to norepinephrine to release gliotransmitters, the authors measured norepinephrine levels in the brains of control and knockout Ndufs4 animals. The induction EC50s for tail clamp in both isoflurane and halothane were similar between the control and astrocyte-specific Ndufs4(KO) mice at 3 weeks after 4-hydroxy tamoxifen injection (induction concentration, EC50(ind)-isoflurane: control = 1.27 ± 0.12, astrocyte-specific knockout = 1.21 ± 0.18, P = 0.495; halothane: control = 1.28 ± 0.05, astrocyte-specific knockout = 1.20 ± 0.05, P = 0.017). However, the emergent concentrations in both anesthetics for the astrocyte-specific Ndufs4(KO) mice were less than the controls for tail clamp; (emergence concentration, EC50(em)-isoflurane: control = 1.18 ± 0.10, astrocyte-specific knockout = 0.67 ± 0.11, P &lt; 0.0001; halothane: control = 1.08 ± 0.09, astrocyte-specific knockout = 0.59 ± 0.12, P &lt; 0.0001). The induction EC50s for loss of righting reflex were also similar between the control and astrocyte-specific Ndufs4(KO) mice (EC50(ind)-isoflurane: control = 1.02 ± 0.10, astrocyte-specific knockout = 0.97 ± 0.06, P = 0.264; halothane: control = 1.03 ± 0.05, astrocyte-specific knockout = 0.99 ± 0.08, P = 0.207). The emergent concentrations for loss of righting reflex in both anesthetics for the astrocyte-specific Ndufs4(KO) mice were less than the control (EC50(em)-isoflurane: control = 1.0 ± 0.07, astrocyte-specific knockout = 0.62 ± 0.12, P &lt; 0.0001; halothane: control = 1.0 ± 0.04, astrocyte-specific KO = 0.64 ± 0.09, P &lt; 0.0001); N ≥ 6 for control and astrocyte-specific Ndufs4(KO) mice. For all tests, similar results were seen at 7 weeks after 4-hydroxy tamoxifen injection. The total norepinephrine content of the brain in global or astrocyte-specific Ndufs4(KO) mice was unchanged compared to control mice. The only phenotype of the astrocyte-specific Ndufs4(KO) mouse was a specific impairment in emergence from volatile anesthetic-induced general anesthesia. The authors conclude that normal mitochondrial function within astrocytes is essential for emergence from anesthesia."	"Wake Up, Neurons! Astrocytes Calling. NA"	"Detection of increased intracerebral lactate in a mouse model of Leigh syndrome using proton MR spectroscopy. To establish a brain proton magnetic resonance spectroscopy (<sup>1</sup>H MRS) experimental system using a mouse model of Leigh syndrome for monitoring intracerebral lactate levels as a biomarker of mitochondrial disease progression. Brain <sup>1</sup>H MRS was performed in the Ndufs4 homozygous knockout (KO) mice, a mouse model of Leigh syndrome, and control mice on a horizontal 7.0-T magnetic resonance imaging system at age 5-9 weeks. In a subset of KO mice, survival analysis was performed according to the median of the intracerebral lactate levels. In addition, in KO mice alive until 9 weeks of age, both <sup>1</sup>H MRS and T2-weighted imaging (T2WI) were longitudinally performed in the same individuals at 5, 7, and 9 weeks of age. Brain <sup>1</sup>H MRS demonstrated increased lactate levels in KO mice compared with control mice (6.4 ± 1.2 mM vs. 3.3 ± 0.8 mM, p &lt; 0.0001). The increased intracerebral lactate levels were already observed at 5 weeks of age, while no obvious abnormal findings were detected in T2WI. Notably, an increased lactate level of &gt;5.94 mM at week 5 was associated with a poor prognosis (median survival days: 24.5 vs. 42 days, log-rank p = 0.03). Longitudinal <sup>1</sup>H MRS experiments revealed temporal increase of intracerebral lactate levels, peaking at week 7 (mean change: 2.6 ± 0.7 mM, p = 0.001), followed by decrease at week 9 (mean change: -3.8 ± 2.5 mM, p = 0.03), along with further disease progression, with brain lesions being detected on T2WI. Using brain <sup>1</sup>H MRS, we demonstrated significant increase in intracerebral lactate levels in a mouse model of Leigh syndrome. Additionally, we demonstrated that intracerebral lactate is a useful biomarker of mitochondrial disease progression at stages preceding the development of brain lesions."	"Different Types Domains are Present in Complex I from Immature Seeds and of CA Adult Plants in Arabidopsis thaliana. Mitochondrial Nicotinamide adenine dinucleotide (NADH) dehydrogenase complex is the first complex of the mitochondrial electron transfer chain. In plants and in a variety of eukaryotes except Opisthokonta, complex I (CI) contains an extra spherical domain called carbonic anhydrase (CA) domain. This domain is thought to be composed of trimers of gamma type CA and CA-like subunits. In Arabidopsis, the CA gene family contains five members (CA1, CA2, CA3, CAL1 and CAL2). The CA domain appears to be crucial for CI assembly and is essential for normal embryogenesis. As CA and CA-like proteins are arranged in trimers to form the CA domain, it is possible for the complex to adopt different arrangements that might be tissue-specific or have specialized functions. In this work, we show that the proportion of specific CI changes in a tissue-specific manner. In immature seeds, CI assembly may be indistinctly dependent on CA1, CA2 or CA3. However, in adult plant tissues (or tissues derived from stem cells, as cell cultures), CA2-dependent CI is clearly the most abundant. This difference might account for specific physiological functions. We present evidence suggesting that CA3 does not interact with any other CA family member. As CA3 was found to interact with CI FRO1 (NDUFS4) subunit, which is located in the matrix arm, this suggests a role for CA3 in assembly and stability of CI."	"Impaired hypoxic pulmonary vasoconstriction in a mouse model of Leigh syndrome. Hypoxic pulmonary vasoconstriction (HPV) is a physiological vasomotor response that maintains systemic oxygenation by matching perfusion to ventilation during alveolar hypoxia. Although mitochondria appear to play an essential role in HPV, the impact of mitochondrial dysfunction on HPV remains incompletely defined. Mice lacking the mitochondrial complex I (CI) subunit Ndufs4 ( Ndufs4<sup>-/-</sup>) develop a fatal progressive encephalopathy and serve as a model for Leigh syndrome, the most common mitochondrial disease in children. Breathing normobaric 11% O2 prevents neurological disease and improves survival in Ndufs4<sup>-/-</sup> mice. In this study, we found that either genetic Ndufs4 deficiency or pharmacological inhibition of CI using piericidin A impaired the ability of left mainstem bronchus occlusion (LMBO) to induce HPV. In mice breathing air, the partial pressure of arterial oxygen during LMBO was lower in Ndufs4<sup>-/-</sup> and in piericidin A-treated Ndufs4<sup>+/+</sup> mice than in respective controls. Impairment of HPV in Ndufs4<sup>-/-</sup> mice was not a result of nonspecific dysfunction of the pulmonary vascular contractile apparatus or pulmonary inflammation. In Ndufs4-deficient mice, 3 wk of breathing 11% O2 restored HPV in response to LMBO. When compared with Ndufs4<sup>-/-</sup> mice breathing air, chronic hypoxia improved systemic oxygenation during LMBO. The results of this study show that, when breathing air, mice with a congenital Ndufs4 deficiency or chemically inhibited CI function have impaired HPV. Our study raises the possibility that patients with inborn errors of mitochondrial function may also have defects in HPV."	"Early detection of elevated lactate levels in a mitochondrial disease model using chemical exchange saturation transfer (CEST) and magnetic resonance spectroscopy (MRS) at 7T-MRI. This study aimed to use chemical exchange saturation transfer (CEST) and magnetic resonance spectroscopy (MRS) at 7T-MRI for early detection of intracerebral lactate in a mitochondrial disease model without brain lesions. We considered Ndufs4-knockout (KO) mice as Leigh syndrome models and wild-type (WT) mice as control mice. Brain MRI and <sup>1</sup>H-MRS were performed. T2WI data acquired with the Rapid Acquisition with Refocused Echoes (RARE) sequence were used for evaluation of brain lesions. CEST imaging of mice brains was performed using RARE with a magnetization transfer (MT) pulse. The MT ratio (MTR) asymmetry curves and five MTR asymmetry maps at 0.5, 1.0, 2.0, 3.0, and 3.5 ppm were calculated using these CEST images. Metabolite concentrations were measured by MRS. T2WI MRI revealed no obvious abnormal findings in KO and WT mice brains at 6 weeks of age. The MTR asymmetry maps at 0.5 ppm, 1.0 ppm, and 2.0 ppm of the KO mice were higher than those of the control mice. Brain <sup>1</sup>H MRS revealed a significant increase in lactate levels in all KO mice in comparison with those in the control mice. Additionally, creatine levels in the KO mice were slightly higher than those in the control mice. The levels of the other four metabolites-mIns, NAA + NAAG, GPC + PCh, and Glu + Gln-did not change significantly. We propose that CEST imaging can be used as a biomarker of intracerebral elevated lactate levels in mitochondrial disease."	"Metabolomics of Ndufs4<sup>-/-</sup> skeletal muscle: Adaptive mechanisms converge at the ubiquinone-cycle. Leigh syndrome is one of the most common childhood-onset neurometabolic disorders resulting from a primary oxidative phosphorylation dysfunction and affecting mostly brain tissues. Ndufs4<sup>-/-</sup> mice have been widely used to study the neurological responses in this syndrome, however the reason why these animals do not display strong muscle involvement remains elusive. We combined biochemical strategies and multi-platform metabolomics to gain insight into the metabolism of both glycolytic (white quadriceps) and oxidative (soleus) skeletal muscles from Ndufs4<sup>-/-</sup> mice. Enzyme assays confirmed severely reduced (80%) CI activity in both Ndufs4<sup>-/-</sup> muscle types, compared to WTs. No significant alterations were evident in other respiratory chain enzyme activities; however, Ndufs4<sup>-/-</sup> solei displayed moderate decreases in citrate synthase (12%) and CIII (18%) activities. Through hypothesis-generating metabolic profiling, we provide the first evidence of adaptive responses to CI dysfunction involving non-classical pathways fueling the ubiquinone (Q) cycle. We report a respective 48 and 34 discriminatory metabolites between Ndufs4<sup>-/-</sup> and WT white quadriceps and soleus muscles, among which the most prominent alterations indicate the involvement of the glycerol-3-phosphate shuttle, electron transfer flavoprotein system, CII, and proline cycle in fueling the Q cycle. By restoring the electron flux to CIII via the Q cycle, these adaptive mechanisms could maintain adequate oxidative ATP production, despite CI deficiency. Taken together, our results shed light on the underlying pathogenic mechanisms of CI dysfunction in skeletal muscle. Upon further investigation, these pathways could provide novel targets for therapeutic intervention in CI deficiency and potentially lead to the development of new treatment strategies."	"The Mitochondrial Isoform of FASTK Modulates Nonopsonic Phagocytosis of Bacteria by Macrophages via Regulation of Respiratory Complex I. Phagocytosis is a pivotal process by which innate immune cells eliminate bacteria. In this study, we explore novel regulatory mechanisms of phagocytosis driven by the mitochondria. Fas-activated serine/threonine kinase (FASTK) is an RNA-binding protein with two isoforms, one localized to the mitochondria (mitoFASTK) and the other isoform to cytosol and nucleus. The mitoFASTK isoform has been reported to be necessary for the biogenesis of the mitochondrial ND6 mRNA, which encodes an essential subunit of mitochondrial respiratory complex I (CI, NADH:ubiquinone oxidoreductase). This study investigates the role and the mechanisms of action of FASTK in phagocytosis. Macrophages from FASTK<sup>─/─</sup> mice exhibited a marked increase in nonopsonic phagocytosis of bacteria. As expected, CI activity was specifically reduced by almost 50% in those cells. To explore if decreased CI activity could underlie the phagocytic phenotype, we tested the effect of CI inhibition on phagocytosis. Indeed, treatment with CI inhibitor rotenone or short hairpin RNAs against two CI subunits (NDUFS3 and NDUFS4) resulted in a marked increase in nonopsonic phagocytosis of bacteria. Importantly, re-expression of mitoFASTK in FASTK-depleted macrophages was sufficient to rescue the phagocytic phenotype. In addition, we also report that the decrease in CI activity in FASTK<sup>─/─</sup> macrophages is associated with an increase in phosphorylation of the energy sensor AMP-activated protein kinase (AMPK) and that its inhibition using Compound C reverted the phagocytosis phenotype. Taken together, our results clearly demonstrate for the first time, to our knowledge, that mitoFASTK plays a negative regulatory role on nonopsonic phagocytosis of bacteria in macrophages through its action on CI activity."	"Heart specific knockout of Ndufs4 ameliorates ischemia reperfusion injury. Ischemic heart disease (IHD) is a leading cause of mortality. The most effective intervention for IHD is reperfusion, which ironically causes ischemia reperfusion (I/R) injury mainly due to oxidative stress-induced cardiomyocyte death. The exact mechanism and site of reactive oxygen species (ROS) generation during I/R injury remain elusive. We aim to test the hypothesis that Complex I-mediated forward and reverse electron flows are the major source of ROS in I/R injury of the heart. We used a genetic model of mitochondrial Complex I deficiency, in which a Complex I assembling subunit, Ndufs4 was knocked out in the heart (Ndufs4H-/-). The Langendorff perfused Ndufs4H-/- hearts exhibited significantly reduced infarct size (45.3 ± 5.5% in wild type vs 20.9 ± 8.1% in Ndufs4H-/-), recovered contractile function, and maintained mitochondrial membrane potential after no flow ischemia and subsequent reperfusion. In cultured adult cardiomyocytes from Ndufs4H-/- mice, I/R mimetic treatments caused minimal cell death. Reintroducing Ndufs4 in Ndufs4H-/- cardiomyocytes abolished the protection. Mitochondrial NADH declined much slower in Ndufs4H-/- cardiomyocytes during reperfusion suggesting decreased forward electron flow. Mitochondrial flashes, a marker for mitochondrial respiration, were inhibited in Ndufs4H-/- cardiomyocytes at baseline and during I/R, which was accompanied by preserved aconitase activity suggesting lack of oxidative damage. Finally, pharmacological blockade of forward and reverse electron flow at Complex I inhibited I/R-induced cell death. These results provide the first genetic evidence supporting the central role of mitochondrial Complex I in I/R injury of mouse heart. The study also suggests that both forward and reverse electron flows underlie oxidative cardiomyocyte death during reperfusion."	"Anesthetics Have Different Effects on the Electrocorticographic Spectra of Wild-type and Mitochondrial Mutant Mice. WHAT THIS ARTICLE TELLS US THAT IS NEW: BACKGROUND:: Knockout of the mitochondrial protein Ndufs4 (Ndufs4[KO]) in mice causes hypersensitivity to volatile anesthetics but resistance to ketamine. The authors hypothesized that electrocorticographic changes underlying the responses of Ndufs4(KO) to volatile anesthetics and to ketamine would be similar in mutant and control mice. Electrocorticographic recordings at equipotent volatile anesthetic concentrations were compared between genotypes. In separate studies, control and cell type-specific Ndufs4(KO) mice were anesthetized with intraperitoneal ketamine to determine their ED50s. Ndufs4 (KO) did not differ from controls in baseline electrocorticography (N = 5). Compared to baseline, controls exposed to isoflurane (EC50) lost power (expressed as mean baseline [µV/Hz]; mean isoflurane [µV/Hz]) in delta (2.45; 0.50), theta (1.41; 0.16), alpha (0.23; 0.05), beta (0.066; 0.016), and gamma (0.020; 0.005) frequency bands (N = 5). Compared to baseline, at their isoflurane EC50, Ndufs4(KO) maintained power in delta (1.08; 1.38), theta (0.36; 0.26), and alpha (0.09; 0.069) frequency bands but decreased in beta (0.041; 0.023) and gamma (0.020; 0.0068) frequency bands (N = 5). Similar results were seen for both genotypes in halothane. Vesicular glutamate transporter 2 (VGLUT2)-specific Ndufs4(KO) mice were markedly resistant to ketamine (ED50; 125 mg/kg) compared to control mice (ED50; 75 mg/kg; N = 6). At their respective ED95s for ketamine, mutant (N = 5) electrocorticography spectra showed a decrease in power in the beta (0.040; 0.020) and gamma (0.035; 0.015) frequency bands not seen in controls (N = 7). Significant differences exist between the electrocorticographies of mutant and control mice at equipotent doses for volatile anesthetics and ketamine. The energetic state specifically of excitatory neurons determines the behavioral response to ketamine."	"Nitrogen Source Dependent Changes in Central Sugar Metabolism Maintain Cell Wall Assembly in Mitochondrial Complex I-Defective frostbite1 and Secondarily Affect Programmed Cell Death. For optimal plant growth, carbon and nitrogen availability needs to be tightly coordinated. Mitochondrial perturbations related to a defect in complex I in the Arabidopsis thalianafrostbite1 (fro1) mutant, carrying a point mutation in the 8-kD Fe-S subunit of NDUFS4 protein, alter aspects of fundamental carbon metabolism, which is manifested as stunted growth. During nitrate nutrition, fro1 plants showed a dominant sugar flux toward nitrogen assimilation and energy production, whereas cellulose integration in the cell wall was restricted. However, when cultured on NH₄⁺ as the sole nitrogen source, which typically induces developmental disorders in plants (i.e., the ammonium toxicity syndrome), fro1 showed improved growth as compared to NO₃<sup>-</sup> nourishing. Higher energy availability in fro1 plants was correlated with restored cell wall assembly during NH₄⁺ growth. To determine the relationship between mitochondrial complex I disassembly and cell wall-related processes, aspects of cell wall integrity and sugar and reactive oxygen species signaling were analyzed in fro1 plants. The responses of fro1 plants to NH₄⁺ treatment were consistent with the inhibition of a form of programmed cell death. Resistance of fro1 plants to NH₄⁺ toxicity coincided with an absence of necrotic lesion in plant leaves."	"Polygenic risk score, genome-wide association, and gene set analyses of cognitive domain deficits in schizophrenia. This study assessed genetic contributions to six cognitive domains, identified by the MATRICS Cognitive Consensus Battery as relevant for schizophrenia, cognition-enhancing, clinical trials. Psychiatric Genomics Consortium Schizophrenia polygenic risk scores showed significant negative correlations with each cognitive domain. Genome-wide association analyses identified loci associated with attention/vigilance (rs830786 within HNF4G), verbal memory (rs67017972 near NDUFS4), and reasoning/problem solving (rs76872642 within HDAC9). Gene set analysis identified unique and shared genes across cognitive domains. These findings suggest involvement of common and unique mechanisms across cognitive domains and may contribute to the discovery of new therapeutic targets to treat cognitive deficits in schizophrenia."	"Mitochondrial OXPHOS influences immune cell fate: lessons from hematopoietic AIF-deficient and NDUFS4-deficient mouse models. NA"	"Isoflurane disrupts excitatory neurotransmitter dynamics via inhibition of mitochondrial complex I. The mechanisms of action of volatile anaesthetics are unclear. Volatile anaesthetics selectively inhibit complex I in the mitochondrial respiratory chain. Mice in which the mitochondrial complex I subunit NDUFS4 is knocked out [Ndufs4(KO)] either globally or in glutamatergic neurons are hypersensitive to volatile anaesthetics. The volatile anaesthetic isoflurane selectively decreases the frequency of spontaneous excitatory events in hippocampal slices from Ndufs4(KO) mice. Complex I inhibition by isoflurane was assessed with a Clark electrode. Synaptic function was measured by stimulating Schaffer collateral fibres and recording field potentials in the hippocampus CA1 region. Isoflurane specifically inhibits complex I dependent respiration at lower concentrations in mitochondria from Ndufs4(KO) than from wild-type mice. In hippocampal slices, after high frequency stimulation to increase energetic demand, short-term synaptic potentiation is less in KO compared with wild-type mice. After high frequency stimulation, both Ndufs4(KO) and wild-type hippocampal slices exhibit striking synaptic depression in isoflurane at twice the 50% effective concentrations (EC50). The pattern of synaptic depression by isoflurane indicates a failure in synaptic vesicle recycling. Application of a selective A1 adenosine receptor antagonist partially eliminates isoflurane-induced short-term depression in both wild-type and Ndufs4(KO) slices, implicating an additional mitochondria-dependent effect on exocytosis. When mitochondria are the sole energy source, isoflurane completely eliminates synaptic output in both mutant and wild-type mice at twice the (EC50) for anaesthesia. Volatile anaesthetics directly inhibit mitochondrial complex I as a primary target, limiting synaptic ATP production, and excitatory vesicle endocytosis and exocytosis."	"Feeding difficulties, a key feature of the Drosophila NDUFS4 mitochondrial disease model. Mitochondrial diseases are associated with a wide variety of clinical symptoms and variable degrees of severity. Patients with such diseases generally have a poor prognosis and often an early fatal disease outcome. With an incidence of 1 in 5000 live births and no curative treatments available, relevant animal models to evaluate new therapeutic regimes for mitochondrial diseases are urgently needed. By knocking down ND-18, the unique Drosophila ortholog of NDUFS4, an accessory subunit of the NADH:ubiquinone oxidoreductase (Complex I), we developed and characterized several dNDUFS4 models that recapitulate key features of mitochondrial disease. Like in humans, the dNDUFS4 KD flies display severe feeding difficulties, an aspect of mitochondrial disorders that has so far been largely ignored in animal models. The impact of this finding, and an approach to overcome it, will be discussed in the context of interpreting disease model characterization and intervention studies.This article has an associated First Person interview with the first author of the paper."	"Partial loss of complex I due to NDUFS4 deficiency augments myocardial reperfusion damage by increasing mitochondrial superoxide/hydrogen peroxide production. Recent work has found that complex I is the sole source of reactive oxygen species (ROS) during myocardial ischemia-reperfusion (IR) injury. However, it has also been reported that heart mitochondria can also generate ROS from other sources in the respiratory chain and Krebs cycle. This study examined the impact of partial complex I deficiency due to selective loss of the Ndufs4 gene on IR injury to heart tissue. Mice heterozygous for NDUFS4 (NDUFS4+/-) did not display any significant changes in overall body or organ weight when compared to wild-type (WT) littermates. There were no changes in superoxide (O2<sup>●-</sup>)/hydrogen peroxide (H2O2) release from cardiac or liver mitochondria isolated from NDUFS4 ± mice. Using selective ROS release inhibitors, we found that complex III is a major source of ROS in WT and NDUFS4 ± cardiac mitochondria respiring under state 4 conditions. Subjecting hearts from NDUFS4 ± mice to reperfusion injury revealed that the partial loss of complex I decreases contractile recovery and increases myocardial infarct size. These results correlated with a significant increase in O2<sup>●-</sup>/H2O2 release rates in mitochondria isolated from NDUFS4 ± hearts subjected to an IR challenge. Taken together, these results demonstrate that the partial absence of complex I sensitizes the myocardium towards IR injury and that the main source of ROS following reperfusion is complex III."	"Identification of potential target genes for ankylosing spondylitis treatment. This study aimed to identify the potential target genes for the treatment of ankylosing spondylitis (AS).Dataset GSE25101 was downloaded from Gene Expression Omnibus, including 16 AS and 16 normal control blood samples. Differentially expressed genes (DEGs) were identified using unmatched t-test in limma package with adjusted P &lt; .05. Gene ontology-biological process (GO-BP) and Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analyses were conducted using multifaceted analysis tool for human transcriptome. Protein-protein interaction (PPI) network was constructed using STRING and Cytoscape, and module analysis was performed using MCODE plug-in. Webgestal was utilized to predict transcriptional factor (TF)-microRNA-target network and Comparative Toxicogenomics Database (CTD) was applied to predict chemical-target network.A total of 334 DEGs were identified, including 136 upregulated genes and 198 downregulated genes. According to STRING, a PPI network was constructed and 1 significant clustered module was screen out with score = 6.33. MAPK7 (degree = 11) and NDUFS4 (degree = 10) were 2 important nodes in PPI network, and both of them were significantly enriched in cAMP mediated signaling pathway (P = 2.02E-02). MAPK7 could be regulated by NFY. Both MAPK7 and NDUFS4 were 2 potential targets for Indomethacin.MAPK7 and NDUFS4 played important roles in the pathogenesis of AS via cAMP mediated signaling pathway. Both of them could be targeted by Indomethacin."	"DJ-1 preserving mitochondrial complex I activity plays a critical role in resveratrol-mediated cardioprotection against hypoxia/reoxygenation-induced oxidative stress. Resveratrol has been demonstrated to have cardioprotective effects by attenuating ischemia/reperfusion (I/R)-induced oxidative stress injury, but its in-depth molecular mechanisms against I/R-induced oxidative stress is not fully elaborated. DJ-1 plays a role in maintenance of mitochondrial complex I activity and is closely associated with oxidative stress. Therefore, this study sought to determine the contribution of DJ-1-mediated maintenance of mitochondrial complex I activity to the anti-oxidative stress effect of Resveratrol in the H9c2 cardiomyocytes subjected to hypoxia/reoxygenation (H/R). The results showed that Resveratrol significantly attenuated the H/R-induced viability loss and lactate dehydrogenase leakage, accompanied by decreases in intracellular reactive oxygen species (ROS) and malondialdehyde contents and increases in the reduced glutathione/oxidized glutathione ratio. Furthermore, Resveratrol increased the expression and mitochondrial translocation of DJ-1 and promoted the direct binding of DJ-1 with complex I subunits ND1 and NDUFS4, which in turn improved mitochondrial complex I activity and inhibited mitochondria-derived ROS production after H/R. Intriguingly, the anti-oxidative stress effect of Resveratrol could be partially blocked by DJ-1 siRNA and Complex I inhibitor Rotenone, respectively. Conclusively, these results indicated that DJ-1 is necessary for Resveratrol-mediated cardioprotective effects against H/R-induced oxidative stress damage, at least in part, through preserving mitochondrial complex I activity, and subsequently decreasing mitochondrial ROS generation."	"Novel NDUFS4 gene mutation in an atypical late-onset mitochondrial form of multifocal dystonia. NA"	"Regional knockdown of NDUFS4 implicates a thalamocortical circuit mediating anesthetic sensitivity. Knockout of the mitochondrial complex I protein, NDUFS4, profoundly increases sensitivity of mice to volatile anesthetics. In mice carrying an Ndufs4lox/lox gene, adeno-associated virus expressing Cre recombinase was injected into regions of the brain postulated to affect sensitivity to volatile anesthetics. These injections generated otherwise phenotypically wild type mice with region-specific, postnatal inactivation of Ndufs4, minimizing developmental effects of gene loss. Sensitivities to the volatile anesthetics isoflurane and halothane were measured using loss of righting reflex (LORR) and movement in response to tail clamp (TC) as endpoints. Knockdown (KD) of Ndufs4 in the vestibular nucleus produced resistance to both anesthetics for movement in response to TC. Ndufs4 loss in the central and dorsal medial thalami and in the parietal association cortex increased anesthetic sensitivity to both TC and LORR. Knockdown of Ndufs4 only in the parietal association cortex produced striking hypersensitivity for both endpoints, and accounted for half the total change seen in the global KO (Ndufs4(KO)). Excitatory synaptic transmission in the parietal association cortex in slices from Ndufs4(KO) animals was hypersensitive to isoflurane compared to control slices. We identified a direct neural circuit between the parietal association cortex and the central thalamus, consistent with a model in which isoflurane sensitivity is mediated by a thalamic signal relayed through excitatory synapses to the parietal association cortex. We postulate that the thalamocortical circuit is crucial for maintenance of consciousness and is disrupted by the inhibitory effects of isoflurane/halothane on mitochondria."	"Rescue of cell death and inflammation of a mouse model of complex 1-mediated vision loss by repurposed drug molecules. Inherited mitochondrial optic neuropathies, such as Leber's hereditary optic neuropathy (LHON) and Autosomal dominant optic atrophy (ADOA) are caused by mutant mitochondrial proteins that lead to defects in mitochondrial complex 1-driven ATP synthesis, and cause specific retinal ganglion cell (RGC) loss. Complex 1 defects also occur in patients with primary open angle glaucoma (POAG), in which there is specific RGC loss. The treatment of mitochondrial optic neuropathy in the US is only supportive. The Ndufs4 knockout (Ndufs4 KO) mouse is a mitochondrial complex 1-deficient model that leads to RGC loss and rapid vision loss and allows for streamlined testing of potential therapeutics. Preceding RGC loss in the Ndufs4 KO is the loss of starburst amacrine cells, which may be an important target in the mechanism of complex 1-deficient vision loss. Papaverine and zolpidem were recently shown to be protective of bioenergetic loss in cell models of optic neuropathy. Treatment of Ndufs4 KO mice with papaverine, zolpidem, and rapamycin-suppressed inflammation, prevented cell death, and protected from vision loss. Thus, in the Ndufs4 KO mouse model of mitochondrial optic neuropathy, papaverine and zolpidem provided significant protection from multiple pathophysiological features, and as approved drugs in wide human use could be considered for the novel indication of human optic neuropathy."	"Low-dose rapamycin extends lifespan in a mouse model of mtDNA depletion syndrome. Mitochondrial disorders affecting oxidative phosphorylation (OxPhos) are caused by mutations in both the nuclear and mitochondrial genomes. One promising candidate for treatment is the drug rapamycin, which has been shown to extend lifespan in multiple animal models, and which was previously shown to ameliorate mitochondrial disease in a knock-out mouse model lacking a nuclear-encoded gene specifying an OxPhos structural subunit (Ndufs4). In that model, relatively high-dose intraperitoneal rapamycin extended lifespan and improved markers of neurological disease, via an unknown mechanism. Here, we administered low-dose oral rapamycin to a knock-in (KI) mouse model of authentic mtDNA disease, specifically, progressive mtDNA depletion syndrome, resulting from a mutation in the mitochondrial nucleotide salvage enzyme thymidine kinase 2 (TK2). Importantly, low-dose oral rapamycin was sufficient to extend Tk2KI/KI mouse lifespan significantly, and did so in the absence of detectable improvements in mitochondrial dysfunction. We found no evidence that rapamycin increased survival by acting through canonical pathways, including mitochondrial autophagy. However, transcriptomics and metabolomics analyses uncovered systemic metabolic changes pointing to a potential 'rapamycin metabolic signature.' These changes also implied that rapamycin may have enabled the Tk2KI/KI mice to utilize alternative energy reserves, and possibly triggered indirect signaling events that modified mortality through developmental reprogramming. From a therapeutic standpoint, our results support the possibility that low-dose rapamycin, while not targeting the underlying mtDNA defect, could represent a crucial therapy for the treatment of mtDNA-driven, and some nuclear DNA-driven, mitochondrial diseases."	"Hepatic S6K1 Partially Regulates Lifespan of Mice with Mitochondrial Complex I Deficiency. The inactivation of ribosomal protein S6 kinase 1 (S6K1) recapitulates aspects of caloric restriction and mTORC1 inhibition to achieve prolonged longevity in invertebrate and mouse models. In addition to delaying normative aging, inhibition of mTORC1 extends the shortened lifespan of yeast, fly, and mouse models with severe mitochondrial disease. Here we tested whether disruption of S6K1 can recapitulate the beneficial effects of mTORC1 inhibition in the Ndufs4 knockout (NKO) mouse model of Leigh Syndrome caused by Complex I deficiency. These NKO mice develop profound neurodegeneration resulting in brain lesions and death around 50-60 days of age. Our results show that liver-specific, as well as whole body, S6K1 deletion modestly prolongs survival and delays onset of neurological symptoms in NKO mice. In contrast, we observed no survival benefit in NKO mice specifically disrupted for S6K1 in neurons or adipocytes. Body weight was reduced in WT mice upon disruption of S6K1 in adipocytes or whole body, but not altered when S6K1 was disrupted only in neurons or liver. Taken together, these data indicate that decreased S6K1 activity in liver is sufficient to delay the neurological and survival defects caused by deficiency of Complex I and suggest that mTOR signaling can modulate mitochondrial disease and metabolism via cell non-autonomous mechanisms."	"Therapeutic effects of the mitochondrial ROS-redox modulator KH176 in a mammalian model of Leigh Disease. Leigh Disease is a progressive neurometabolic disorder for which a clinical effective treatment is currently still lacking. Here, we report on the therapeutic efficacy of KH176, a new chemical entity derivative of Trolox, in Ndufs4 <sup>-/-</sup> mice, a mammalian model for Leigh Disease. Using in vivo brain diffusion tensor imaging, we show a loss of brain microstructural coherence in Ndufs4 <sup>-/-</sup> mice in the cerebral cortex, external capsule and cerebral peduncle. These findings are in line with the white matter diffusivity changes described in mitochondrial disease patients. Long-term KH176 treatment retained brain microstructural coherence in the external capsule in Ndufs4 <sup>-/-</sup> mice and normalized the increased lipid peroxidation in this area and the cerebral cortex. Furthermore, KH176 treatment was able to significantly improve rotarod and gait performance and reduced the degeneration of retinal ganglion cells in Ndufs4 <sup>-/-</sup> mice. These in vivo findings show that further development of KH176 as a potential treatment for mitochondrial disorders is worthwhile to pursue. Clinical trial studies to explore the potency, safety and efficacy of KH176 are ongoing."	"Loss of Mitochondrial Ndufs4 in Striatal Medium Spiny Neurons Mediates Progressive Motor Impairment in a Mouse Model of Leigh Syndrome. Inability of mitochondria to generate energy leads to severe and often fatal myoencephalopathies. Among these, Leigh syndrome (LS) is one of the most common childhood mitochondrial diseases; it is characterized by hypotonia, failure to thrive, respiratory insufficiency and progressive mental and motor dysfunction, leading to early death. Basal ganglia nuclei, including the striatum, are affected in LS patients. However, neither the identity of the affected cell types in the striatum nor their contribution to the disease has been established. Here, we used a mouse model of LS lacking Ndufs4, a mitochondrial complex I subunit, to confirm that loss of complex I, but not complex II, alters respiration in the striatum. To assess the role of striatal dysfunction in the pathology, we selectively inactivated Ndufs4 in the striatal medium spiny neurons (MSNs), which account for over 95% of striatal neurons. Our results show that lack of Ndufs4 in MSNs causes a non-fatal progressive motor impairment without affecting the cognitive function of mice. Furthermore, no inflammatory responses or neuronal loss were observed up to 6 months of age. Hence, complex I deficiency in MSNs contributes to the motor deficits observed in LS, but not to the neural degeneration, suggesting that other neuronal populations drive the plethora of clinical signs in LS."	"AAV9-based gene therapy partially ameliorates the clinical phenotype of a mouse model of Leigh syndrome. Leigh syndrome (LS) is the most common infantile mitochondrial encephalopathy. No treatment is currently available for this condition. Mice lacking Ndufs4, encoding NADH: ubiquinone oxidoreductase iron-sulfur protein 4 (NDUFS4) recapitulates the main findings of complex I (cI)-related LS, including severe multisystemic cI deficiency and progressive neurodegeneration. In order to develop a gene therapy approach for LS, we used here an AAV2/9 vector carrying the human NDUFS4 coding sequence (hNDUFS4). We administered AAV2/9-hNDUFS4 by intravenous (IV) and/or intracerebroventricular (ICV) routes to either newborn or young Ndufs4<sup>-/-</sup> mice. We found that IV administration alone was only able to correct the cI deficiency in peripheral organs, whereas ICV administration partially corrected the deficiency in the brain. However, both treatments failed to improve the clinical phenotype or to prolong the lifespan of Ndufs4<sup>-/-</sup> mice. In contrast, combined IV and ICV treatments resulted, along with increased cI activity, in the amelioration of the rotarod performance and in a significant prolongation of the lifespan. Our results indicate that extraneurological organs have an important role in LS pathogenesis and provide an insight into current limitations of adeno-associated virus (AAV)-mediated gene therapy in multisystem disorders. These findings warrant future investigations to develop new vectors able to efficiently target multiple organs."	"Modulation of oxidative phosphorylation and redox homeostasis in mitochondrial NDUFS4 deficiency via mesenchymal stem cells. Disorders of the oxidative phosphorylation (OXPHOS) system represent a large group among the inborn errors of metabolism. The most frequently observed biochemical defect is isolated deficiency of mitochondrial complex I (CI). No effective treatment strategies for CI deficiency are so far available. The purpose of this study was to investigate whether and how mesenchymal stem cells (MSCs) are able to modulate metabolic function in fibroblast cell models of CI deficiency. We used human and murine fibroblasts with a defect in the nuclear DNA encoded NDUFS4 subunit of CI. Fibroblasts were co-cultured with MSCs under different stress conditions and intercellular mitochondrial transfer was assessed by flow cytometry and fluorescence microscopy. Reactive oxygen species (ROS) levels were measured using MitoSOX-Red. Protein levels of CI were analysed by blue native polyacrylamide gel electrophoresis (BN-PAGE). Direct cellular interactions and mitochondrial transfer between MSCs and human as well as mouse fibroblast cell lines were demonstrated. Mitochondrial transfer was visible in 13.2% and 6% of fibroblasts (e.g. fibroblasts containing MSC mitochondria) for human and mouse cell lines, respectively. The transfer rate could be further stimulated via treatment of cells with TNF-α. MSCs effectively lowered cellular ROS production in NDUFS4-deficient fibroblast cell lines (either directly via co-culture or indirectly via incubation of cell lines with cell-free MSC supernatant). However, CI protein expression and activity were not rescued by MSC treatment. This study demonstrates the interplay between MSCs and fibroblast cell models of isolated CI deficiency including transfer of mitochondria as well as modulation of cellular ROS levels. Further exploration of these cellular interactions might help to develop MSC-based treatment strategies for human CI deficiency."	"Mitochondrial complex I deficiency leads to the retardation of early embryonic development in Ndufs4 knockout mice. The NDUFS4 gene encodes an 18-kD subunit of mitochondria complex I, and mutations in this gene lead to the development of a severe neurodegenerative disease called Leigh syndrome (LS) in humans. To investigate the disease phenotypes and molecular mechanisms of Leigh syndrome, the Ndufs4 knockout (KO) mouse has been widely used as a novel animal model. Because the homozygotes cannot survive beyond child-bearing age, whether Ndufs4 and mitochondrial complex I influence early embryonic development remains unknown. In our study, we attempted to investigate embryonic development in Ndufs4 KO mice, which can be regarded as a Leigh disease model and were created through the CRISPR (clustered regularly interspaced short palindromic repeat) and Cas9 (CRISPR associated)-mediated genome editing system. We first designed a single guide RNA (sgRNA) targeting exon 2 of Ndufs4 to delete the NDUFS4 protein in mouse embryos to mimic Leigh syndrome. Then, we described the phenotypes of our mouse model by forced swimming and the open-field test as well as by assessing other behavioral characteristics. Intracytoplasmic sperm injection (ICSI) was performed to obtain KO embryos to test the influence of NDUFS4 deletion on early embryonic development. In this study, we first generated Ndufs4 KO mice with physical and behavioral phenotypes similar to Leigh syndrome using the CRISPR/Cas9 system. The low developmental rate of KO embryos that were derived from knockout gametes indicated that the absence of NDUFS4 impaired the development of preimplantation embryos. In this paper, we first obtained Ndufs4 KO mice that could mimic Leigh syndrome using the CRISPR/Cas9 system. Then, we identified the role of NDUFS4 in early embryonic development, shedding light on its roles in the respiratory chain and fertility. Our model provides a useful tool with which to investigate the function of Ndufs4. Although the pathological mechanisms of the disease need to be discovered, it helps to understand the pathogenesis of NDUFS4 deficiency in mice and its effects on human diseases."	"Hypoxia treatment reverses neurodegenerative disease in a mouse model of Leigh syndrome. The most common pediatric mitochondrial disease is Leigh syndrome, an episodic, subacute neurodegeneration that can lead to death within the first few years of life, for which there are no proven general therapies. Mice lacking the complex I subunit, Ndufs4, develop a fatal progressive encephalopathy resembling Leigh syndrome and die at ≈60 d of age. We previously reported that continuously breathing normobaric 11% O2 from an early age prevents neurological disease and dramatically improves survival in these mice. Here, we report three advances. First, we report updated survival curves and organ pathology in Ndufs4 KO mice exposed to hypoxia or hyperoxia. Whereas normoxia-treated KO mice die from neurodegeneration at about 60 d, hypoxia-treated mice eventually die at about 270 d, likely from cardiac disease, and hyperoxia-treated mice die within days from acute pulmonary edema. Second, we report that more conservative hypoxia regimens, such as continuous normobaric 17% O2 or intermittent hypoxia, are ineffective in preventing neuropathology. Finally, we show that breathing normobaric 11% O2 in mice with late-stage encephalopathy reverses their established neurological disease, evidenced by improved behavior, circulating disease biomarkers, and survival rates. Importantly, the pathognomonic MRI brain lesions and neurohistopathologic findings are reversed after 4 wk of hypoxia. Upon return to normoxia, Ndufs4 KO mice die within days. Future work is required to determine if hypoxia can be used to prevent and reverse neurodegeneration in other animal models, and to determine if it can be provided in a safe and practical manner to allow in-hospital human therapeutic trials."	"Casticin impairs cell migration and invasion of mouse melanoma B16F10 cells via PI3K/AKT and NF-κB signaling pathways. Casticin, a polymethoxyflavone, is one of the major active components obtained from Fructus viticis, which have been shown to have anticancer activities including induce cell apoptosis in human cancer cells. The aim of this study was to investigate the molecular mechanisms by which casticin inhibits cell migration and invasion of mouse melanoma B16F10 cells. Cell viability was examined by MTT assay and the results indicated that casticin decreased the total percentages of viable cells in dose-dependent manners. Casticin affected cell migration and invasion in B16F10 cells were examined by wound healing mobility assay and Boyden chamber migration and invasion assay and results indicated that casticin inhibited cell migration and invasion in dose-dependent manners. Western blotting was used to examine the protein expression of B16F10 cells after exposed to casticin and the results showed that casticin decreased the expressions of MMP-9, MMP-2, MMP-1, FAK, 14-3-3, GRB2, Akt, NF-κB p65, SOS-1, p-EGFR, p-JNK 1/2, uPA, and Rho A in B16F10 cells. Furthermore, cDNA microarray assay was used to show that casticin affected associated gene expression of cell migration and invasion and the results indicated that casticin affected some of the gene expression such as increased SCN1B (cell adhesion molecule 1) and TIMP2 (TIMP metallopeptidase inhibitor 2) and decreased NDUFS4 (NADH dehydrogenase (ubiquinone) Fe-S protein4), VEGFA (vascular endothelial growth factor A), and DDIT3 (DNA-damage-inducible transcript 3) which associated cell migration and invasion in B16F10 cells. Based on those observations, we suggest that casticin could be used as a novel anticancer metastasis of melanoma cancer in the future."	"Next Generation Sequencing Mitochondrial DNA Analysis in Autism Spectrum Disorder. Autism is a complex genetic disorder where both de-novo and inherited genetics factors play a role. Next generation sequencing approaches have been extensively used to identify rare variants associated with autism. To date, all such studies were focused on nuclear genome; thereby leaving the role of mitochondrial DNA (mtDNA) variation in autism unexplored. Recently, analytical tools have been developed to evaluate mtDNA in whole-exome data. We have analyzed the mtDNA sequence derived from whole-exome sequencing in 10 multiplex families. In one of the families we have identified two variants of interest in MT-ND5 gene that were previously determined to impair mitochondrial function. In addition in a second family we have identified two VOIs; mtDNA variant in MT-ATP6 and nuclear DNA variant in NDUFS4, where both VOIs are within mitochondrial Respiratory Chain Complex. Our findings provide further support for the role of mitochondria in ASD and confirm that whole-exome sequencing allows for analysis of mtDNA, which sets a stage for further comprehensive genetic investigations of the role of mitochondria in autism. Autism Res 2017, 10: 1338-1343. © 2017 International Society for Autism Research, Wiley Periodicals, Inc."	"NDUFS4-related Leigh syndrome in Hutterites. NA"	"Response to correspondence of NDUFS4-related Leigh syndrome in Hutterites. NA"	"Conditional deletion of Ndufs4 in dopaminergic neurons promotes Parkinson's disease-like non-motor symptoms without loss of dopamine neurons. Reduction of mitochondrial complex I activity is one of the major hypotheses for dopaminergic neuron death in Parkinson's disease. However, reduction of complex I activity in all cells or selectively in dopaminergic neurons via conditional deletion of the Ndufs4 gene, a subunit of the mitochondrial complex I, does not cause dopaminergic neuron death or motor impairment. Here, we investigated the effect of reduced complex I activity on non-motor symptoms associated with Parkinson's disease using conditional knockout (cKO) mice in which Ndufs4 was selectively deleted in dopaminergic neurons (Ndufs4 cKO). This conditional deletion of Ndufs4, which reduces complex I activity in dopamine neurons, did not cause a significant loss of dopaminergic neurons in substantia nigra pars compacta (SNpc), and there was no loss of dopaminergic neurites in striatum or amygdala. However, Ndufs4 cKO mice had a reduced amount of dopamine in the brain compared to control mice. Furthermore, even though motor behavior were not affected, Ndufs4 cKO mice showed non-motor symptoms experienced by many Parkinson's disease patients including impaired cognitive function and increased anxiety-like behavior. These data suggest that mitochondrial complex I dysfunction in dopaminergic neurons promotes non-motor symptoms of Parkinson's disease and reduces dopamine content in the absence of dopamine neuron loss."	"Post onset, oral rapamycin treatment delays development of mitochondrial encephalopathy only at supramaximal doses. Mitochondrial encephalopathies are fatal, infantile neurodegenerative disorders caused by a deficit of mitochondrial functioning, for which there is urgent need to identify efficacious pharmacological treatments. Recent evidence shows that rapamycin administered both intraperitoneally or in the diet delays disease onset and enhances survival in the Ndufs4 null mouse model of mitochondrial encephalopathy. To delineate the clinical translatability of rapamycin in treatment of mitochondrial encephalopathy, we evaluated the drug's effects on disease evolution and mitochondrial parameters adopting treatment paradigms with fixed daily, oral doses starting at symptom onset in Ndufs4 knockout mice. Molecular mechanisms responsible for the pharmacodynamic effects of rapamycin were also evaluated. We found that rapamycin did not affect disease development at clinically-relevant doses (0.5 mg kg<sup>-1</sup>). Conversely, an oral dose previously adopted for intraperitoneal administration (8 mg kg<sup>-1</sup>) delayed development of neurological symptoms and increased median survival by 25%. Neurological improvement and lifespan were not further increased when the dose raised to 20 mg kg<sup>-1</sup>. Notably, rapamycin at 8 mg kg<sup>-1</sup> did not affect the reduced expression of respiratory complex subunits, as well as mitochondrial number and mtDNA content. This treatment regimen however significantly ameliorated architecture of mitochondria cristae in motor cortex and cerebellum. However, reduction of mTOR activity by rapamycin was not consistently found within the brain of knockout mice. Overall, data show the ability of rapamycin to improve ultrastructure of dysfunctional mitochondria and corroborate its therapeutic potential in mitochondrial disorders. The non-clinical standard doses required, however, raise concerns about its rapid and safe clinical transferability."	"Combined LRRK2 mutation, aging and chronic low dose oral rotenone as a model of Parkinson's disease. Aging, genetics and environmental toxicity are important etiological factors in Parkinson's disease (PD). However, its pathogenesis remains unclear. A major obstacle is the lack of an appropriate experimental model which incorporates genetic susceptibility, aging and prolonged environmental toxicity. Here, we explored the interplay amongst these factors using mutant LRRK2<sup>R1441G</sup> (leucine-rich-repeat-kinase-2) knockin mice. We found that mutant primary cortical and mesencephalic dopaminergic neurons were more susceptible to rotenone-induced ATP deficiency and cell death. Compared with wild-type controls, striatal synaptosomes isolated from young mutant mice exhibited significantly lower dopamine uptake after rotenone toxicity, due to reduced striatal synaptosomal mitochondria and synaptic vesicular proton pump protein (V-ATPase H) levels. Mutant mice developed greater locomotor deficits in open-field tests than wild-type mice following low oral rotenone doses given twice weekly over 50 weeks (half their lifespan). The increased locomotor deficit was associated with specific reduction in striatal mitochondrial Complex-I (NDUFS4) in rotenone-treated mutant but not in similarly treated wild-type mice. Our unique experimental model which incorporates genetic effect, natural aging and prolonged oral environmental toxicity administered to mutant knockin LRRK2 mice over half their life span, with observable and measurable phenotype, is invaluable in further studies of the pathogenic process and therapeutics of PD."	"Bipolar cell reduction precedes retinal ganglion neuron loss in a complex 1 knockout mouse model. Inherited mitochondrial complex 1 deficiency causes Leber's hereditary Optic Neuropathy (LHON) and retinal ganglion cell (RGC) degeneration, and optic neuropathies are common in many inherited mitochondrial diseases. How mitochondrial defects pathomechanistically trigger optic neuropathy remains unclear. We observe that complex 1-deficient Ndufs4-/- mice present with acute vision loss around p30, and this vision loss is coincident with an 'inflammatory wave'. In order to understand what causes the inflammatory wave we explored retinal pathology that occurs from p20-p30. The results indicated that in the period p20-p30 in Ndufs4-/- retinas, there is: significant reduction in bipolar cells, RGC dendritic atrophy, reduced PSD95, increased oxidative stress as manifested by increased 4HNE, HO1 and Cuzn-SOD, increased mitochondrial biogenesis and increased apoptosis. These precede the major induction of 'inflammatory wave' at p30 shown previously, but occur earlier than frank RGC loss at p42. In general, complex 1 deficiency in retina triggers oxidative stress and mitochondrial respiratory dysfunction that causes death of the most sensitive cells, including bipolar cells and their synaptic contacts and amacrine cells in the early period, 20-24days. The early death of these cells is the likely precursor to the sharp rise in inflammatory molecules that occurs at day 30 and coincides with vision loss, and greatly precedes the death of RGCs that occurs at p42. These data suggest that metabolic antioxidant support of the most sensitive cells in the retina, or anti-inflammatory suppression of the consequences of their death, are both rational strategies for mitochondrial blinding disease."	"Accessory subunit NUYM (NDUFS4) is required for stability of the electron input module and activity of mitochondrial complex I. Mitochondrial complex I is an intricate 1MDa membrane protein complex with a central role in aerobic energy metabolism. The minimal form of complex I consists of fourteen central subunits that are conserved from bacteria to man. In addition, eukaryotic complex I comprises some 30 accessory subunits of largely unknown function. The gene for the accessory NDUFS4 subunit of human complex I is a hot spot for fatal pathogenic mutations in humans. We have deleted the gene for the orthologous NUYM subunit in the aerobic yeast Yarrowia lipolytica, an established model system to study eukaryotic complex I and complex I linked diseases. We observed assembly of complex I which lacked only subunit NUYM and retained weak interaction with assembly factor N7BML (human NDUFAF2). Absence of NUYM caused distortion of iron sulfur clusters of the electron input domain leading to decreased complex I activity and increased release of reactive oxygen species. We conclude that NUYM has an important stabilizing function for the electron input module of complex I and is essential for proper complex I function."	"Photoperiod Affects the Phenotype of Mitochondrial Complex I Mutants. Plant mutants for genes encoding subunits of mitochondrial complex I (CI; NADH:ubiquinone oxidoreductase), the first enzyme of the respiratory chain, display various phenotypes depending on growth conditions. Here, we examined the impact of photoperiod, a major environmental factor controlling plant development, on two Arabidopsis (Arabidopsis thaliana) CI mutants: a new insertion mutant interrupted in both ndufs8.1 and ndufs8.2 genes encoding the NDUFS8 subunit and the previously characterized ndufs4 CI mutant. In the long day (LD) condition, both ndufs8.1 and ndufs8.2 single mutants were indistinguishable from Columbia-0 at phenotypic and biochemical levels, whereas the ndufs8.1 ndufs8.2 double mutant was devoid of detectable holo-CI assembly/activity, showed higher alternative oxidase content/activity, and displayed a growth retardation phenotype similar to that of the ndufs4 mutant. Although growth was more affected in ndufs4 than in ndufs8.1 ndufs8.2 under the short day (SD) condition, both mutants displayed a similar impairment of growth acceleration after transfer to LD compared with the wild type. Untargeted and targeted metabolomics showed that overall metabolism was less responsive to the SD-to-LD transition in mutants than in the wild type. The typical LD acclimation of carbon and nitrogen assimilation as well as redox-related parameters was not observed in ndufs8.1 ndufs8 Similarly, NAD(H) content, which was higher in the SD condition in both mutants than in Columbia-0, did not adjust under LD We propose that altered redox homeostasis and NAD(H) content/redox state control the phenotype of CI mutants and photoperiod acclimation in Arabidopsis."	"Widespread brain transcriptome alterations underlie the neuroprotective actions of dietary saffron. Dietary saffron has shown promise as a neuroprotective intervention in clinical trials of retinal degeneration and dementia and in animal models of multiple CNS disorders, including Parkinson's disease. This therapeutic potential makes it important to define the relationship between dose and protection and the mechanisms involved. To explore these two issues, mice were pre-conditioned by providing an aqueous extract of saffron (0.01% w/v) as their drinking water for 2, 5 or 10 days before administration of the parkinsonian neurotoxin MPTP (50 mg/kg). Five days of saffron pre-conditioning provided the greatest benefit against MPTP-induced neuropathology, significantly mitigating both loss of functional dopaminergic cells in the substantia nigra pars compacta (p &lt; 0.01) and abnormal neuronal activity in the caudate-putamen complex (p &lt; 0.0001). RNA microarray analysis of the brain transcriptome of mice pre-conditioned with saffron for 5 days revealed differential expression of 424 genes. Bioinformatics analysis identified enrichment of molecular pathways (e.g. adherens junction, TNFR1 and Fas signaling) and expression changes in candidate genes (Cyr61, Gpx8, Ndufs4, and Nos1ap) with known neuroprotective actions. The apparent biphasic nature of the dose-response relationship between saffron and measures of neuroprotection, together with the stress-inducible nature of many of the up-regulated genes and pathways, lend credence to the idea that saffron, like various other phytochemicals, is a hormetic stimulus, with functions beyond its strong antioxidant capacity. These findings provide impetus for a more comprehensive evaluation of saffron as a neuroprotective intervention."	"A novel NDUFS4 frameshift mutation causes Leigh disease in the Hutterite population. Leigh disease is a progressive, infantile-onset, neurodegenerative disorder characterized by feeding difficulties, failure to thrive, hypotonia, seizures, and central respiratory compromise. Metabolic and neuroimaging investigations typically identify abnormalities consistent with a disorder of mitochondrial energy metabolism. Mutations in more than 35 genes affecting the mitochondrial respiratory chain encoded from both the nuclear and mitochondrial genomes have been associated with Leigh disease. The clinical presentations of five individuals of Hutterite descent with Leigh disease are described herein. An identity-by-descent mapping and candidate gene approach was used to identify a novel homozygous c.393dupA frameshift mutation in the NADH dehydrogenase (ubiquinone) Fe-S protein 4 (NDUFS4) gene. The carrier frequency of this mutation was estimated in &gt;1,300 Hutterite individuals to be 1 in 27. © 2017 Wiley Periodicals, Inc."	"Glutamatergic Neurotransmission Links Sensitivity to Volatile Anesthetics with Mitochondrial Function. An enigma of modern medicine has persisted for over 150 years. The mechanisms by which volatile anesthetics (VAs) produce their effects (loss of consciousness, analgesia, amnesia, and immobility) remain an unsolved mystery. Many attractive putative molecular targets have failed to produce a significant effect when genetically tested in whole-animal models [1-3]. However, mitochondrial defects increase VA sensitivity in diverse organisms from nematodes to humans [4-6]. Ndufs4 knockout (KO) mice lack a subunit of mitochondrial complex I and are strikingly hypersensitive to VAs yet resistant to the intravenous anesthetic ketamine [7]. The change in VA sensitivity is the largest reported for a mammal. Limiting NDUFS4 loss to a subset of glutamatergic neurons recapitulates the VA hypersensitivity of Ndufs4(KO) mice, while loss in GABAergic or cholinergic neurons does not. Baseline electrophysiologic function of CA1 pyramidal neurons does not differ between Ndufs4(KO) and control mice. Isoflurane concentrations that anesthetize only Ndufs4(KO) mice (0.6%) decreased the frequency of spontaneous excitatory postsynaptic currents (sEPSCs) only in Ndufs4(KO) CA1 neurons, while concentrations effective in control mice (1.2%) decreased sEPSC frequencies in both control and Ndufs4(KO) CA1 pyramidal cells. Spontaneous inhibitory postsynaptic currents (sIPSCs) were not differentially affected between genotypes. The effects of isoflurane were similar on evoked field excitatory postsynaptic potentials (fEPSPs) and paired pulse facilitation (PPF) in KO and control hippocampal slices. We propose that CA1 presynaptic excitatory neurotransmission is hypersensitive to isoflurane in Ndufs4(KO) mice due to the inhibition of pre-existing reduced complex I function, reaching a critical reduction that can no longer meet metabolic demands."	"Neuroprotective effects of pyrroloquinoline quinone against rotenone injury in primary cultured midbrain neurons and in a rat model of Parkinson's disease. Mitochondrial dysfunction and oxidative stress have been implicated in the pathogenesis of Parkinson's disease (PD). Pyrroloquinoline quinone (PQQ), a redox cofactor in the mitochondrial respiratory chain, has been reported to protect SH-SY5Y cells from cytotoxicity induced by rotenone, a mitochondrial complex I inhibitor. In this study, we aimed to investigate the neuroprotective effects of PQQ against rotenone injury in primary cultured midbrain neurons and in a rat model of Parkinson's disease. Pre-treatment with PQQ prevented cultured midbrain neurons from rotenone-induced apoptosis, restored mitochondrial membrane potential, inhibited intracellular reactive oxygen species (ROS) production, and affected microtubule depolymerization. On the other hand, intraperitoneal administration of PQQ exerted protective effects on rats that had received rotenone injection into the medial forebrain bundle through decreasing the apomorphine-evoked rotation, inhibiting neuronal loss and TH down-regulation in SNc, increasing the antioxidative ability, and regulating intracellular expressions of Ndufs1 and Ndufs 4. Silencing of Ndufs1 or Ndufs4 in cultured SH-SY5Y cells or midbrain neurons reduced the neuroprotective effects of PQQ. Overall, our results suggest that PQQ neuroprotection may be mediated by the inhibition of mitochondrial dysfunction and oxidative stress as well as by the gene modulation of Ndufs1 and Ndufs4."	"Ndufs4 related Leigh syndrome: A case report and review of the literature. The genetic causes of Leigh syndrome are heterogeneous, with a poor correlation between the phenotype and genotype. Here, we present a patient with an NDUFS4 mutation to expand the clinical and biochemical spectrum of the disease. A combined defect in the CoQ, PDH and RCC activities in our patient was due to an inappropriate assembly of the RCC complex I (CI), which was confirmed using Blue-Native polyacrylamide gel electrophoresis (BN-PAGE) analysis. Targeted exome sequencing analysis allowed for the genetic diagnosis of this patient. We reviewed 198 patients with 24 different genetic defects causing RCC I deficiency and compared them to 22 NDUFS4 patients. We concluded that NDUFS4-related Leigh syndrome is invariably linked to an early onset severe phenotype that results in early death. Some data, including the clinical phenotype, neuroimaging and biochemical findings, can guide the genetic study in patients with RCC I deficiency. "	"Simultaneous Analysis of Major Coenzymes of Cellular Redox Reactions and Energy Using ex Vivo (1)H NMR Spectroscopy. Coenzymes of cellular redox reactions and cellular energy mediate biochemical reactions fundamental to the functioning of all living cells. Despite their immense interest, no simple method exists to gain insights into their cellular concentrations in a single step. We show that a simple (1)H NMR experiment can simultaneously measure oxidized and reduced forms of nicotinamide adenine dinucleotide (NAD(+) and NADH), oxidized and reduced forms of nicotinamide adenine dinucleotide phosphate (NADP(+) and NADPH), and adenosine triphosphate (ATP) and its precursors, adenosine diphosphate (ADP) and adenosine monophosphate (AMP), using mouse heart, kidney, brain, liver, and skeletal muscle tissue extracts as examples. Combining 1D/2D NMR experiments, chemical shift libraries, and authentic compound data, reliable peak identities for these coenzymes have been established. To assess this methodology, cardiac NADH and NAD(+) ratios/pool sizes were measured using mouse models with a cardiac-specific knockout of the mitochondrial Complex I Ndufs4 gene (cKO) and cardiac-specific overexpression of nicotinamide phosphoribosyltransferase (cNAMPT) as examples. Sensitivity of NAD(+) and NADH to cKO or cNAMPT was observed, as anticipated. Time-dependent investigations showed that the levels of NADH and NADPH diminish by up to ∼50% within 24 h; concomitantly, NAD(+) and NADP(+) increase proportionately; however, degassing the sample and flushing the sample tubes with helium gas halted such changes. The analysis protocol along with the annotated characteristic fingerprints for each coenzyme is provided for easy identification and absolute quantification using a single internal reference for routine use. The ability to visualize the ubiquitous coenzymes fundamental to cellular functions, simultaneously and reliably, offers a new avenue to interrogate the mechanistic details of cellular function in health and disease."	"Hypoxia as a therapy for mitochondrial disease. Defects in the mitochondrial respiratory chain (RC) underlie a spectrum of human conditions, ranging from devastating inborn errors of metabolism to aging. We performed a genome-wide Cas9-mediated screen to identify factors that are protective during RC inhibition. Our results highlight the hypoxia response, an endogenous program evolved to adapt to limited oxygen availability. Genetic or small-molecule activation of the hypoxia response is protective against mitochondrial toxicity in cultured cells and zebrafish models. Chronic hypoxia leads to a marked improvement in survival, body weight, body temperature, behavior, neuropathology, and disease biomarkers in a genetic mouse model of Leigh syndrome, the most common pediatric manifestation of mitochondrial disease. Further preclinical studies are required to assess whether hypoxic exposure can be developed into a safe and effective treatment for human diseases associated with mitochondrial dysfunction. "	"First Identification of the Toxicity of Microcystins on Pancreatic Islet Function in Humans and the Involved Potential Biomarkers. Microcystins (MCs) produced by cyanobacteria have been recognized as a major public health threat. However, the toxicity of MCs to humans is still largely unknown. In this study, we examined the changes in pancreatic islet function in fishers exposed to ambient levels of MCs at Lake Taihu and, using a mouse model, explored the molecular mechanisms involved in toxicity. MCs content in the serum of fishers tested positive, with a range from 0.10 to 0.64 μg/L. Both lower blood insulin levels (2.26 ± 0.96 μIU/mL) and impaired fasting glucose were found in participants from the Meiliang Bay area in Lake Taihu, where MC-LR levels were substantially greater than the MC threshold established by WHO for drinking water. Animal experiments showed that glucose level increased by 27.9% in mice exposed to 5 μg/kg bw and decreased by 41.5% in mice exposed to 20 μg/kg bw. Blood insulin levels declined by 21.9% and 56.2% in mice exposed to 5 and 20 μg/kg bw MC-LR, respectively, which was consistent with the results observed in fishers. Furthermore, the diabetes gene pdx1 and several other proteins (such as Ppp3ca, Ide, Marcks, Pgk1, Suclg1, Ndufs4) involved in insulin secretion were identified for the first time in mice following MC-LR exposure; these biomarkers were considered responsible for MC-LR induced islet dysfunction. This study suggests that subchronic exposure to environmental levels of MCs may increase the risk of the occurrence of diabetes in humans. "	"Region-Specific Defects of Respiratory Capacities in the Ndufs4(KO) Mouse Brain. Lack of NDUFS4, a subunit of mitochondrial complex I (NADH:ubiquinone oxidoreductase), causes Leigh syndrome (LS), a progressive encephalomyopathy. Knocking out Ndufs4, either systemically or in brain only, elicits LS in mice. In patients as well as in KO mice distinct regions of the brain degenerate while surrounding tissue survives despite systemic complex I dysfunction. For the understanding of disease etiology and ultimately for the development of rationale treatments for LS, it appears important to uncover the mechanisms that govern focal neurodegeneration. Here we used the Ndufs4(KO) mouse to investigate whether regional and temporal differences in respiratory capacity of the brain could be correlated with neurodegeneration. In the KO the respiratory capacity of synaptosomes from the degeneration prone regions olfactory bulb, brainstem and cerebellum was significantly decreased. The difference was measurable even before the onset of neurological symptoms. Furthermore, neither compensating nor exacerbating changes in glycolytic capacity of the synaptosomes were found. By contrast, the KO retained near normal levels of synaptosomal respiration in the degeneration-resistant/resilient &quot;rest&quot; of the brain. We also investigated non-synaptic mitochondria. The KO expectedly had diminished capacity for oxidative phosphorylation (state 3 respiration) with complex I dependent substrate combinations pyruvate/malate and glutamate/malate but surprisingly had normal activity with α-ketoglutarate/malate. No correlation between oxidative phosphorylation (pyruvate/malate driven state 3 respiration) and neurodegeneration was found: Notably, state 3 remained constant in the KO while in controls it tended to increase with time leading to significant differences between the genotypes in older mice in both vulnerable and resilient brain regions. Neither regional ROS damage, measured as HNE-modified protein, nor regional complex I stability, assessed by blue native gels, could explain regional neurodegeneration. Our data suggests that locally insufficient respiration capacity of the nerve terminals may drive focal neurodegeneration."	"Constitutive Reprogramming of Fibroblast Mitochondrial Metabolism in Pulmonary Hypertension. Remodeling of the distal pulmonary artery wall is a characteristic feature of pulmonary hypertension (PH). In hypoxic PH, the most substantial pathologic changes occur in the adventitia. Here, there is marked fibroblast proliferation and profound macrophage accumulation. These PH fibroblasts (PH-Fibs) maintain a hyperproliferative, apoptotic-resistant, and proinflammatory phenotype in ex vivo culture. Considering that a similar phenotype is observed in cancer cells, where it has been associated, at least in part, with specific alterations in mitochondrial metabolism, we sought to define the state of mitochondrial metabolism in PH-Fibs. In PH-Fibs, pyruvate dehydrogenase was markedly inhibited, resulting in metabolism of pyruvate to lactate, thus consistent with a Warburg-like phenotype. In addition, mitochondrial bioenergetics were suppressed and mitochondrial fragmentation was increased in PH-Fibs. Most importantly, complex I activity was substantially decreased, which was associated with down-regulation of the accessory subunit nicotinamide adenine dinucleotide reduced dehydrogenase (ubiquinone) Fe-S protein 4 (NDUFS4). Owing to less-efficient ATP synthesis, mitochondria were hyperpolarized and mitochondrial superoxide production was increased. This pro-oxidative status was further augmented by simultaneous induction of cytosolic nicotinamide adenine dinucleotide phosphate reduced oxidase 4. Although acute and chronic exposure to hypoxia of adventitial fibroblasts from healthy control vessels induced increased glycolysis, it did not induce complex I deficiency as observed in PH-Fibs. This suggests that hypoxia alone is insufficient to induce NDUFS4 down-regulation and constitutive abnormalities in complex I. In conclusion, our study provides evidence that, in the pathogenesis of vascular remodeling in PH, alterations in fibroblast mitochondrial metabolism drive distinct changes in cellular behavior, which potentially occur independently of hypoxia."	"Deletion of the Complex I Subunit NDUFS4 Adversely Modulates Cellular Differentiation. The vast majority of cellular ATP is produced by the oxidative phosphorylation (OXPHOS) system, which comprises the four complexes of the electron transfer chain plus the ATP synthase. Complex I is the largest of the OXPHOS complexes, and mutation of the genes encoding either the subunits or assembly factors of Complex I can result in Complex I deficiency, which is the most common OXPHOS disorder. Mutations in the Complex I gene NDUFS4 lead to Leigh syndrome, which is the most frequent presentation of Complex I deficiency in children presenting with progressive encephalopathy shortly after birth. Symptoms include motor and intellectual retardation, often accompanied by dystonia, ataxia, and growth retardation, and most patients die by 3 years of age. To understand the origins of this disease, we have generated a series of mouse embryonic stem cell lines from blastocysts that were wild type, heterozygous, and homozygous for the deletion of the Ndufs4 gene. We have demonstrated their pluripotency and potential to differentiate into all cell types of the body. Although the loss of Ndufs4 did not affect the stability of the mitochondrial and nuclear genomes, there were significant differences in patterns of chromosomal gene expression following both spontaneous differentiation and directed neural differentiation into astrocytes. The defect also affected the potential of the cells to generate beating embryoid bodies. These outcomes demonstrate that defects associated with Complex I deficiency affect early gene expression patterns, which escalate during early and later stages of differentiation and are mediated by the defect and not other chromosomal or mitochondrial DNA defects. "	"Succination is Increased on Select Proteins in the Brainstem of the NADH dehydrogenase (ubiquinone) Fe-S protein 4 (Ndufs4) Knockout Mouse, a Model of Leigh Syndrome. Elevated fumarate concentrations as a result of Krebs cycle inhibition lead to increases in protein succination, an irreversible post-translational modification that occurs when fumarate reacts with cysteine residues to generate S-(2-succino)cysteine (2SC). Metabolic events that reduce NADH re-oxidation can block Krebs cycle activity; therefore we hypothesized that oxidative phosphorylation deficiencies, such as those observed in some mitochondrial diseases, would also lead to increased protein succination. Using the Ndufs4 knockout (Ndufs4 KO) mouse, a model of Leigh syndrome, we demonstrate for the first time that protein succination is increased in the brainstem (BS), particularly in the vestibular nucleus. Importantly, the brainstem is the most affected region exhibiting neurodegeneration and astrocyte and microglial proliferation, and these mice typically die of respiratory failure attributed to vestibular nucleus pathology. In contrast, no increases in protein succination were observed in the skeletal muscle, corresponding with the lack of muscle pathology observed in this model. 2D SDS-PAGE followed by immunoblotting for succinated proteins and MS/MS analysis of BS proteins allowed us to identify the voltage-dependent anion channels 1 and 2 as specific targets of succination in the Ndufs4 knockout. Using targeted mass spectrometry, Cys(77) and Cys(48) were identified as endogenous sites of succination in voltage-dependent anion channels 2. Given the important role of voltage-dependent anion channels isoforms in the exchange of ADP/ATP between the cytosol and the mitochondria, and the already decreased capacity for ATP synthesis in the Ndufs4 KO mice, we propose that the increased protein succination observed in the BS of these animals would further decrease the already compromised mitochondrial function. These data suggest that fumarate is a novel biochemical link that may contribute to the progression of the neuropathology in this mitochondrial disease model. "	"Gait analysis in a mouse model resembling Leigh disease. Leigh disease (LD) is one of the clinical phenotypes of mitochondrial OXPHOS disorders and also known as sub-acute necrotizing encephalomyelopathy. The disease has an incidence of 1 in 77,000 live births. Symptoms typically begin early in life and prognosis for LD patients is poor. Currently, no clinically effective treatments are available. Suitable animal and cellular models are necessary for the understanding of the neuropathology and the development of successful new therapeutic strategies. In this study we used the Ndufs4 knockout (Ndufs4(-/-)) mouse, a model of mitochondrial complex I deficiency. Ndusf4(-/-) mice exhibit progressive neurodegeneration, which closely resemble the human LD phenotype. When dissecting behavioral abnormalities in animal models it is of great importance to apply translational tools that are clinically relevant. To distinguish gait abnormalities in patients, simple walking tests can be assessed, but in animals this is not easy. This study is the first to demonstrate automated CatWalk gait analysis in the Ndufs4(-/-) mouse model. Marked differences were noted between Ndufs4(-/-) and control mice in dynamic, static, coordination and support parameters. Variation of walking speed was significantly increased in Ndufs4(-/-) mice, suggesting hampered and uncoordinated gait. Furthermore, decreased regularity index, increased base of support and changes in support were noted in the Ndufs4(-/-) mice. Here, we report the ability of the CatWalk system to sensitively assess gait abnormalities in Ndufs4(-/-) mice. This objective gait analysis can be of great value for intervention and drug efficacy studies in animal models for mitochondrial disease. "	"Increased mitochondrial ATP production capacity in brain of healthy mice and a mouse model of isolated complex I deficiency after isoflurane anesthesia. We reported before that the minimal alveolar concentration (MAC) of isoflurane is decreased in complex I-deficient mice lacking the NDUFS4 subunit of the respiratory chain (RC) (1.55 and 0.81% at postnatal (PN) 22-25 days and 1.68 and 0.65% at PN 31-34 days for wildtype (WT) and CI-deficient KO, respectively). A more severe respiratory depression was caused by 1.0 MAC isoflurane in KO mice (respiratory rate values of 86 and 45 at PN 22-25 days and 69 and 29 at PN 31-34 days for anesthetized WT and KO, respectively). Here, we address the idea that isoflurane anesthesia causes a much larger decrease in brain mitochondrial ATP production in KO mice thus explaining their increased sensitivity to this anesthetic. Brains from WT and KO mice of the above study were removed immediately after MAC determination at PN 31-34 days and a mitochondria-enriched fraction was prepared. Aliquots were used for measurement of maximal ATP production in the presence of pyruvate, malate, ADP and creatine and, after freeze-thawing, the maximal activity of the individual RC complexes in the presence of complex-specific substrates. CI activity was dramatically decreased in KO, whereas ATP production was decreased by only 26% (p &lt; 0.05). The activities of CII, CIII, and CIV were the same for WT and KO. Isoflurane anesthesia decreased the activity of CI by 30% (p &lt; 0.001) in WT. In sharp contrast, it increased the activity of CII by 37% (p &lt; 0.001) and 50% (p &lt; 0.001) and that of CIII by 37% (p &lt; 0.001) and 40% (p &lt; 0.001) in WT and KO, respectively, whereas it tended to increase that of CIV in both WT and KO. Isoflurane anesthesia increased ATP production by 52 and 69% in WT (p &lt; 0.05) and KO (p &lt; 0.01), respectively. Together these findings indicate that isoflurane anesthesia interferes positively rather than negatively with the ability of CI-deficient mice brain mitochondria to convert their main substrate pyruvate into ATP."	"Mitochondrial flash as a novel biomarker of mitochondrial respiration in the heart. Mitochondrial respiration through electron transport chain (ETC) activity generates ATP and reactive oxygen species in eukaryotic cells. The modulation of mitochondrial respiration in vivo or under physiological conditions remains elusive largely due to the lack of appropriate approach to monitor ETC activity in a real-time manner. Here, we show that ETC-coupled mitochondrial flash is a novel biomarker for monitoring mitochondrial respiration under pathophysiological conditions in cultured adult cardiac myocyte and perfused beating heart. Through real-time confocal imaging, we follow the frequency of a transient bursting fluorescent signal, named mitochondrial flash, from individual mitochondria within intact cells expressing a mitochondrial matrix-targeted probe, mt-cpYFP (mitochondrial-circularly permuted yellow fluorescent protein). This mt-cpYFP recorded mitochondrial flash has been shown to be composed of a major superoxide signal with a minor alkalization signal within the mitochondrial matrix. Through manipulating physiological substrates for mitochondrial respiration, we find a close coupling between flash frequency and the ETC electron flow, as measured by oxygen consumption rate in cardiac myocyte. Stimulating electron flow under physiological conditions increases flash frequency. On the other hand, partially block or slowdown electron flow by inhibiting the F0F1 ATPase, which represents a pathological condition, transiently increases then decreases flash frequency. Limiting electron entrance at complex I by knocking out Ndufs4, an assembling subunit of complex I, suppresses mitochondrial flash activity. These results suggest that mitochondrial electron flow can be monitored by real-time imaging of mitochondrial flash. The mitochondrial flash frequency could be used as a novel biomarker for mitochondrial respiration under physiological and pathological conditions. "	"Dose-dependent effects of mTOR inhibition on weight and mitochondrial disease in mice. Rapamycin extends lifespan and attenuates age-related pathologies in mice when administered through diet at 14 parts per million (PPM). Recently, we reported that daily intraperitoneal injection of rapamycin at 8 mg/kg attenuates mitochondrial disease symptoms and progression in the Ndufs4 knockout mouse model of Leigh Syndrome. Although rapamycin is a widely used pharmaceutical agent dosage has not been rigorously examined and no dose-response profile has been established. Given these observations we sought to determine if increased doses of oral rapamycin would result in more robust impact on mTOR driven parameters. To test this hypothesis, we compared the effects of dietary rapamycin at doses ranging from 14 to 378 PPM on developmental weight in control and Ndufs4 knockout mice and on health and survival in the Ndufs4 knockout model. High dose rapamycin was well tolerated, dramatically reduced weight gain during development, and overcame gender differences. The highest oral dose, approximately 27-times the dose shown to extend murine lifespan, increased survival in Ndufs4 knockout mice similarly to daily rapamycin injection without observable adverse effects. These findings have broad implications for the effective use of rapamycin in murine studies and for the translational potential of rapamycin in the treatment of mitochondrial disease. This data, further supported by a comparison of available literature, suggests that 14 PPM dietary rapamycin is a sub-optimal dose for targeting mTOR systemically in mice. Our findings suggest that the role of mTOR in mammalian biology may be broadly underestimated when determined through treatment with rapamycin at commonly used doses. "	"Complete Mitochondrial Complex I Deficiency Induces an Up-Regulation of Respiratory Fluxes That Is Abolished by Traces of Functional Complex I. Complex I (NADH:ubiquinone oxidoreductase) is central to cellular NAD(+) recycling and accounts for approximately 40% of mitochondrial ATP production. To understand how complex I function impacts respiration and plant development, we isolated Arabidopsis (Arabidopsis thaliana) lines that lack complex I activity due to the absence of the catalytic subunit NDUFV1 (for NADH:ubiquinone oxidoreductase flavoprotein1) and compared these plants with ndufs4 (for NADH:ubiquinone oxidoreductase Fe-S protein4) mutants possessing trace amounts of complex I. Unlike ndufs4 plants, ndufv1 lines were largely unable to establish seedlings in the absence of externally supplied sucrose. Measurements of mitochondrial respiration and ATP synthesis revealed that compared with ndufv1, the complex I amounts retained by ndufs4 did not increase mitochondrial respiration and oxidative phosphorylation capacities. No major differences were seen in the mitochondrial proteomes, cellular metabolomes, or transcriptomes between ndufv1 and ndufs4. The analysis of fluxes through the respiratory pathway revealed that in ndufv1, fluxes through glycolysis and the tricarboxylic acid cycle were dramatically increased compared with ndufs4, which showed near wild-type-like fluxes. This indicates that the strong growth defects seen for plants lacking complex I originate from a switch in the metabolic mode of mitochondria and an up-regulation of respiratory fluxes. Partial reversion of these phenotypes when traces of active complex I are present suggests that complex I is essential for plant development and likely acts as a negative regulator of respiratory fluxes. "	"Identification of collaborative activities with oxidative phosphorylation in bipolar disorder. Bipolar disorder (BD) is a psychiatric disease considered to polygenic with multiple factors in genetics, each of which is not dominant but collaborative during pathogenic progression. We describe a method that estimates the collaborative contribution to the disease between a certain well-studied pathway and the other candidate pathway using Gene Set Enrichment Analysis (GSEA). We describe a modified GSEA (improved derivation) to identify genes that are significantly and differentially expressed between disease and non-disease states and that are consistently co-expressed with a target pathway which is deeply related to disease etiology. The modified GSEA uses available gene expression data to identify molecular mechanism (ubiquitin-proteasome and inflammatory response) associated with the disease. We believe that this approach could reveal hidden relations between a certain well-studied pathway and the other candidate pathway known in literature. ATP5I - ATP synthase H+ transporting mitochondrial F0 complex subunit E, ATP5J - ATP synthase H+ transporting mitochondrial F0 complex subunit F6, BAD - Bcl-2-associated death promoter, BAX - Bcl-2-associated x protein, Bcl-2 - B-cell lymphoma 2, BDNF - brain derived neurotrophic factor, COX5B - Cytochrome c oxidase subunit Vb, COX7A2 - cytochrome c oxidase subunit VIIa polypeptide 2, DLK - dual leucine zipper-bearing kinase, GABA - Gamma aminobutyric acid, IL-8 - Interleukin 8, NDUFA1 - NADH dehydrogenase 1 alpha subcomplex 1, NDUFB2 - NADH dehydrogenase1 beta subcomplex 2, NDUFS4 - NADH dehydrogenase Fe-S protein 4, NGF - nerve growth factor, PPP2R5C - protein phosphatase 2 regulatory subunit B gamma, PSMA3 - proteasome subunit alpha type 3, PSMA7 - proteasome subunit alpha type 7, PSMB1 - proteasome subunit beta type 1, PSMB6 - proteasome subunit beta type 6, PSMB7 - proteasome subunit beta type 7, PSMC2 - proteasome 26S subunit ATPase 2, PSMC5 - proteasome 26S subunit ATPase 5, SLC6A4 - solute carrier family 6 member 4, TNFa - tumor necrosis factor a, UBE2A - ubiquitinconjugating enzyme E2A, UCRC - ubiquinol-cytochrome c reductase complex, UFC1 - ubiquitin-fold modifier conjugating enzyme 1, UQCRQ - ubiquinol-cytochrome c reductase complex III subunit VII, USP14 - ubiquitin specific protease 14."	"Genetic reduction of mitochondrial complex I function does not lead to loss of dopamine neurons in vivo. Inhibition of mitochondrial complex I activity is hypothesized to be one of the major mechanisms responsible for dopaminergic neuron death in Parkinson's disease. However, loss of complex I activity by systemic deletion of the Ndufs4 gene, one of the subunits comprising complex I, does not cause dopaminergic neuron death in culture. Here, we generated mice with conditional Ndufs4 knockout in dopaminergic neurons (Ndufs4 conditional knockout mice [cKO]) to examine the effect of complex I inhibition on dopaminergic neuron function and survival during aging and on 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine (MPTP) treatment in vivo. Ndufs4 cKO mice did not show enhanced dopaminergic neuron loss in the substantia nigra pars compacta or dopamine-dependent motor deficits over the 24-month life span. These mice were just as susceptible to MPTP as control mice. However, compared with control mice, Ndufs4 cKO mice exhibited an age-dependent reduction of dopamine in the striatum and increased α-synuclein phosphorylation in dopaminergic neurons of the substantia nigra pars compacta. We also used an inducible Ndufs4 knockout mouse strain (Ndufs4 inducible knockout) in which Ndufs4 is conditionally deleted in all cells in adult to examine the effect of adult onset, complex I inhibition on MPTP sensitivity of dopaminergic neurons. The Ndufs4 inducible knockout mice exhibited similar sensitivity to MPTP as control littermates. These data suggest that mitochondrial complex I inhibition in dopaminergic neurons does contribute to dopamine loss and the development of α-synuclein pathology. However, it is not sufficient to cause cell-autonomous dopaminergic neuron death during the normal life span of mice. Furthermore, mitochondrial complex I inhibition does not underlie MPTP toxicity in vivo in either cell autonomous or nonautonomous manner. These results provide strong evidence that inhibition of mitochondrial complex I activity is not sufficient to cause dopaminergic neuron death during aging nor does it contribute to dopamine neuron toxicity in the MPTP model of Parkinson's disease. These findings suggest the existence of alternative mechanisms of dopaminergic neuron death independent of mitochondrial complex I inhibition."	"Opa1 overexpression ameliorates the phenotype of two mitochondrial disease mouse models. Increased levels of the mitochondria-shaping protein Opa1 improve respiratory chain efficiency and protect from tissue damage, suggesting that it could be an attractive target to counteract mitochondrial dysfunction. Here we show that Opa1 overexpression ameliorates two mouse models of defective mitochondrial bioenergetics. The offspring from crosses of a constitutive knockout for the structural complex I component Ndufs4 (Ndufs4(-/-)), and of a muscle-specific conditional knockout for the complex IV assembly factor Cox15 (Cox15(sm/sm)), with Opa1 transgenic (Opa1(tg)) mice showed improved motor skills and respiratory chain activities compared to the naive, non-Opa1-overexpressing, models. While the amelioration was modest in Ndufs4(-/-)::Opa1(tg) mice, correction of cristae ultrastructure and mitochondrial respiration, improvement of motor performance and prolongation of lifespan were remarkable in Cox15(sm/sm)::Opa1(tg) mice. Mechanistically, respiratory chain supercomplexes were increased in Cox15(sm/sm)::Opa1(tg) mice, and residual monomeric complex IV was stabilized. In conclusion, cristae shape amelioration by controlled Opa1 overexpression improves two mouse models of mitochondrial disease. "	"MicroRNAs Regulate Cellular ATP Levels by Targeting Mitochondrial Energy Metabolism Genes during C2C12 Myoblast Differentiation. In our previous study, we identified an miRNA regulatory network involved in energy metabolism in porcine muscle. To better understand the involvement of miRNAs in cellular ATP production and energy metabolism, here we used C2C12 myoblasts, in which ATP levels increase during differentiation, to identify miRNAs modulating these processes. ATP level, miRNA and mRNA microarray expression profiles during C2C12 differentiation into myotubes were assessed. The results suggest 14 miRNAs (miR-423-3p, miR-17, miR-130b, miR-301a/b, miR-345, miR-15a, miR-16a, miR-128, miR-615, miR-1968, miR-1a/b, and miR-194) as cellular ATP regulators targeting genes involved in mitochondrial energy metabolism (Cox4i2, Cox6a2, Ndufb7, Ndufs4, Ndufs5, and Ndufv1) during C2C12 differentiation. Among these, miR-423-3p showed a high inverse correlation with increasing ATP levels. Besides having implications in promoting cell growth and cell cycle progression, its function in cellular ATP regulation is yet unknown. Therefore, miR-423-3p was selected and validated for the function together with its potential target, Cox6a2. Overexpression of miR-423-3p in C2C12 myogenic differentiation lead to decreased cellular ATP level and decreased expression of Cox6a2 compared to the negative control. These results suggest miR-423-3p as a novel regulator of ATP/energy metabolism by targeting Cox6a2. "	"[Coexpression of genes located in the 111.35-116.16 Mb of chromosome 13 in mice with different predisposition to catalepsy]. Catalepsy is a pathologic behavior which is usually associated with a dysfunction of striatal pallidal pathway and which can be caused by different mechanisms. It was showned previously that hereditary catalepsy is linked with the distal 111.35-116.16 Mb of chromosome 13. We investigated the level of mRNA of 42 genes located in this fragment in two brain regions which are concerned with catalepsy-striatum and substantia nigra in catalepsy-resistant AKR mice strain, in cataleptic CBA mice strain and in congenic cataleptic AKR.CBA-D13Mit76 (D13) mice strain which were created by transferring of this fragment from CBA in AKR genome. We showed congenic D13 mice vary from AKR in level of mRNA of 2 genes (Ndufs4 and Ppap2a genes) in striatum and 10 genes (Esm1, Fst, Gm10735, Gm15322, Gm15323, Gm15324, Gm15325, Il6st, II31ra, Itga1) in sibstantia nigra. The level of mRNA of Mcidas gene is reduced in both brain regions in D13 compared to AKR. Gene expression of Hspb3 n Mocs2, which codes heat shock protein and, molybdenum cofactor synthesis, respectively, in substantia nigra is reduced in cataleptic CBA and D13 mice compared to catalepsy-resistant AKR mice. These genes can be considered as the most likely genes candidate of catalepsy. The revealed genes coexpression shows that there is a difficult genes network, which regulates hereditary catalepsy."	"Skeletal muscle mitochondria of NDUFS4-/- mice display normal maximal pyruvate oxidation and ATP production. Mitochondrial ATP production is mediated by the oxidative phosphorylation (OXPHOS) system, which consists of four multi-subunit complexes (CI-CIV) and the FoF1-ATP synthase (CV). Mitochondrial disorders including Leigh Syndrome often involve CI dysfunction, the pathophysiological consequences of which still remain incompletely understood. Here we combined experimental and computational strategies to gain mechanistic insight into the energy metabolism of isolated skeletal muscle mitochondria from 5-week-old wild-type (WT) and CI-deficient NDUFS4-/- (KO) mice. Enzyme activity measurements in KO mitochondria revealed a reduction of 79% in maximal CI activity (Vmax), which was paralleled by 45-72% increase in Vmax of CII, CIII, CIV and citrate synthase. Mathematical modeling of mitochondrial metabolism predicted that these Vmax changes do not affect the maximal rates of pyruvate (PYR) oxidation and ATP production in KO mitochondria. This prediction was empirically confirmed by flux measurements. In silico analysis further predicted that CI deficiency altered the concentration of intermediate metabolites, modestly increased mitochondrial NADH/NAD+ ratio and stimulated the lower half of the TCA cycle, including CII. Several of the predicted changes were previously observed in experimental models of CI-deficiency. Interestingly, model predictions further suggested that CI deficiency only has major metabolic consequences when its activity decreases below 90% of normal levels, compatible with a biochemical threshold effect. Taken together, our results suggest that mouse skeletal muscle mitochondria possess a substantial CI overcapacity, which minimizes the effects of CI dysfunction on mitochondrial metabolism in this otherwise early fatal mouse model."	"Mitochondrial complex I deficiency leads to inflammation and retinal ganglion cell death in the Ndufs4 mouse. Mitochondrial complex I (NADH dehydrogenase) is a major contributor to neuronal energetics, and mutations in complex I lead to vision loss. Functional, neuroanatomical and transcriptional consequences of complex I deficiency were investigated in retinas of the Ndufs4 knockout mouse. Whole-eye ERGs and multielectrode arrays confirmed a major retinal ganglion cell functional loss at P32, and retinal ganglion cell loss at P42. RNAseq demonstrated a mild and then sharp increase in innate immune and inflammatory retinal transcripts at P22 and P33, respectively, which were confirmed with QRT-PCR. Intraperitoneal injection of the inflammogen lipopolysaccharide further reduced retinal ganglion cell function in Ndufs4 KO, supporting the connection between inflammatory activation and functional loss. Complex I deficiency in the retina clearly caused innate immune and inflammatory markers to increase coincident with loss of vision, and RGC functional loss. How complex I incites inflammation and functional loss is not clear, but could be the result of misfolded complex I generating a 'non-self' response, and induction of innate immune response transcripts was observed before functional loss at P22, including β-2 microglobulin and Cx3cr1, and during vision loss at P31 (B2m, Tlr 2, 3, 4, C1qa, Cx3cr1 and Fas). These data support the hypothesis that mitochondrial complex I dysfunction in the retina triggers an innate immune and inflammatory response that results in loss of retinal ganglion cell function and death, as in Leber's hereditary Optic Neuropathy and suggests novel therapeutic routes to counter mitochondrial defects that contribute to vision loss. "	"Glial lipid droplets and ROS induced by mitochondrial defects promote neurodegeneration. Reactive oxygen species (ROS) and mitochondrial defects in neurons are implicated in neurodegenerative disease. Here, we find that a key consequence of ROS and neuronal mitochondrial dysfunction is the accumulation of lipid droplets (LD) in glia. In Drosophila, ROS triggers c-Jun-N-terminal Kinase (JNK) and Sterol Regulatory Element Binding Protein (SREBP) activity in neurons leading to LD accumulation in glia prior to or at the onset of neurodegeneration. The accumulated lipids are peroxidated in the presence of ROS. Reducing LD accumulation in glia and lipid peroxidation via targeted lipase overexpression and/or lowering ROS significantly delays the onset of neurodegeneration. Furthermore, a similar pathway leads to glial LD accumulation in Ndufs4 mutant mice with neuronal mitochondrial defects, suggesting that LD accumulation following mitochondrial dysfunction is an evolutionarily conserved phenomenon, and represents an early, transient indicator and promoter of neurodegenerative disease. "	"Translational Medicine. A target for pharmacological intervention in an untreatable human disease. NA"	"Mitochondrial complex I defects increase ubiquitin in substantia nigra. Parkinson׳s disease (PD) is the second most common neurodegenerative disorder in the developed world, and is characterized by the loss of dopaminergic (DA) neurons in the substantia nigra (SN) of midbrain. Mitochondrial complex I dysfunction has been implicated in PD pathophysiology, yet the molecular mechanism by which complex I defects may cause DA neurodegeneration remain unclear. Using Ndufs4 mouse model of mitochondrial complex I deficiency, we observed a remarkable ubiquitin protein increase in SN of Ndufs4-/- (KO) mice. By contrast, neurofilaments were significantly decreased in SN of KO mice. Furthermore, mass spectrometry and co-immunoprecipitation (Co-IP) analysis indicated an increase in ubiquitinated neurofilaments in midbrain of KO mice, whereas 20S proteasome activities were decreased, which could potentially explain the buildup of ubiquitin protein. Collectively, these data suggest that mitochondrial complex I defects cause proteasome inhibition, a consequent increase in ubiquitinated neurofilaments and other proteins, and decrease the expression of neurofilaments that could be relevant to the mechanism of DA neuronal death in PD. "	"Intramitochondrial adenylyl cyclase controls the turnover of nuclear-encoded subunits and activity of mammalian complex I of the respiratory chain. In mammalian cells the nuclear-encoded subunits of complex I are imported into mitochondria, where they are assembled with mt-DNA encoded subunits in the complex, or exchanged with pre-existing copies in the complex. The present work shows that in fibroblast cultures inhibition by KH7 of cAMP production in the mitochondrial matrix by soluble adenylyl cyclase (sAC) results in decreased amounts of free non-incorporated nuclear-encoded NDUFS4, NDUFV2 and NDUFA9 subunits of the catalytic moiety and inhibition of the activity of complex I. Addition of permeant 8-Br-cAMP prevents this effect of KH7. KH7 inhibits accumulation in isolated rat-liver mitochondria and incorporation in complex I of &quot;in vitro&quot; produced, radiolabeled NDUFS4 and NDUFV2 subunits. 8-Br-cAMP prevents also this effect of KH7. Use of protease inhibitors shows that intramitochondrial cAMP exerts this positive effect on complex I by preventing digestion of nuclear-encoded subunits by mitochondrial protease(s), whose activity is promoted by KH7 and H89, an inhibitor of PKA. "	"Neuronal and astrocyte dysfunction diverges from embryonic fibroblasts in the Ndufs4fky/fky mouse. Mitochondrial dysfunction causes a range of early-onset neurological diseases and contributes to neurodegenerative conditions. The mechanisms of neurological damage however are poorly understood, as accessing relevant tissue from patients is difficult, and appropriate models are limited. Hence, we assessed mitochondrial function in neurologically relevant primary cell lines from a CI (complex I) deficient Ndufs4 KO (knockout) mouse (Ndufs4fky/fky) modelling aspects of the mitochondrial disease LS (Leigh syndrome), as well as MEFs (mouse embryonic fibroblasts). Although CI structure and function were compromised in all Ndufs4fky/fky cell types, the mitochondrial membrane potential was selectively impaired in the MEFs, correlating with decreased CI-dependent ATP synthesis. In addition, increased ROS (reactive oxygen species) generation and altered sensitivity to cell death were only observed in Ndufs4fky/fky primary MEFs. In contrast, Ndufs4fky/fky primary isocortical neurons and primary isocortical astrocytes displayed only impaired ATP generation without mitochondrial membrane potential changes. Therefore the neurological dysfunction in the Ndufs4fky/fky mouse may partly originate from a more severe ATP depletion in neurons and astrocytes, even at the expense of maintaining the mitochondrial membrane potential. This may provide protection from cell death, but would ultimately compromise cell functionality in neurons and astrocytes. Furthermore, RET (reverse electron transfer) from complex II to CI appears more prominent in neurons than MEFs or astrocytes, and is attenuated in Ndufs4fky/fky cells. "	"Maneb-induced dopaminergic neuronal death is not affected by loss of mitochondrial complex I activity: results from primary mesencephalic dopaminergic neurons cultured from individual Ndufs4+/+ and Ndufs4-/- mouse embryos. Primary cultures from embryonic mouse ventral mesencephalon are widely used for investigating the mechanisms of dopaminergic neuronal death in Parkinson's disease models. Specifically, single mouse or embryo cultures from littermates can be very useful for comparative studies involving transgenic mice when the neuron cultures are to be prepared before genotyping. However, preparing single mouse embryo culture is technically challenging because of the small number of cells present in the mesencephalon of each embryo (150 000-300 000), of which only 0.5-5% are tyrosine hydroxylase-positive, dopaminergic neurons. In this study, we optimized the procedure for preparing primary mesencephalic neuron cultures from individual mouse embryos. Mesencephalic neurons were dissociated delicately, plated on Aclar film coverslips, and incubated in DMEM supplemented with fetal bovine serum for 5 days and then N2 supplement was added for 1 day, which resulted in the best survival of dopaminergic neurons from each embryo. Using this optimized method, we prepared mesencephalic neuron cultures from single Ndufs4 or Ndufs4 embryos and investigated the role of mitochondrial complex I in maneb-induced dopamine neuron death. Our results suggest that maneb toxicity to dopamine neurons is not affected by the loss of mitochondrial complex I activity in Ndufs4 cultures. "	"For macrophages, Ndufs is enough. Proinflammatory macrophage activation is coupled to a metabolic switch toward glycolysis. In Cell Metabolism, Jin et al. (2014) show that this process is negatively regulated by mitochondrial electron transport chain complex I through both cell intrinsic and extrinsic pathways. "	"Mitochondrial complex I activity suppresses inflammation and enhances bone resorption by shifting macrophage-osteoclast polarization. Mitochondrial complex I (CI) deficiency is associated with multiple neurological and metabolic disorders. However, its effect on innate immunity and bone remodeling is unclear. Using deletion of the essential CI subunit Ndufs4 as a model for mitochondrial dysfunction, we report that mitochondria suppress macrophage activation and inflammation while promoting osteoclast differentiation and bone resorption via both cell-autonomous and systemic regulation. Global Ndufs4 deletion causes systemic inflammation and osteopetrosis. Hematopoietic Ndufs4 deletion causes an intrinsic lineage shift from osteoclast to macrophage. Liver Ndufs4 deletion causes a metabolic shift from fatty acid oxidation to glycolysis, accumulating fatty acids and lactate (FA/LAC) in the circulation. FA/LAC further activates Ndufs4(-/-) macrophages via reactive oxygen species induction and diminishes osteoclast lineage commitment in Ndufs4(-/-) progenitors; both inflammation and osteopetrosis in Ndufs4(-/-) mice are attenuated by TLR4/2 deletion. Together, these findings reveal mitochondrial CI as a critical rheostat of innate immunity and skeletal homeostasis. "	"PARP inhibition delays progression of mitochondrial encephalopathy in mice. Mitochondrial disorders are deadly childhood diseases for which therapeutic remedies are an unmet need. Given that genetic suppression of the nuclear enzyme poly (adenine diphosphate-ribose) polymerase(PARP)-1 improves mitochondrial functioning, we investigated whether pharmacological inhibition of the enzyme affords protection in a mouse model of a mitochondrial disorder. We used mice lacking the Ndufs4 subunit of the respiratory complex I (Ndufs4 knockout [ KO] mice); these mice undergo progressive encephalopathy and die around postnatal day 50. Mice were treated daily with the potent PARP inhibitor N-(6-oxo-5,6-dihydrophenanthridin-2-yl)-(N,N-dimethylamino)acetamide hydrochloride (PJ34); neurological parameters, PARP activity, and mitochondrial homeostasis were evaluated. We found that mice receiving N-(6-oxo-5,6-dihydrophenanthridin-2-yl)-(N,N-dimethylamino)acetamide hydrochloride from postnatal day 30 to postnatal day 50 show reduced neurological impairment, and increased exploratory activity and motor skills compared with vehicle-treated animals. However, drug treatment did not delay or reduce death. We found no evidence of increased PARP activity within the brain of KO mice compared with heterozygous, healthy controls. Conversely, a 10-day treatment with the PARP inhibitor significantly reduced basal poly(ADP-ribosyl)ation in different organs of the KO mice, including brain, skeletal muscle, liver, pancreas, and spleen. In keeping with the epigenetic role of PARP-1, its inhibition correlated with increased expression of mitochondrial respiratory complex subunits and organelle number. Remarkably, pharmacological targeting of PARP reduced astrogliosis in olfactory bulb and motor cortex, but did not affect neuronal loss of KO mice. In light of the advanced clinical development of PARP inhibitors, these data emphasize their relevance to treatment of mitochondrial respiratory defects. "	"Involvement of ERK1/2 pathway in neuroprotective effects of pyrroloquinoline quinine against rotenone-induced SH-SY5Y cell injury. Pyrroloquinoline quinone (PQQ), a redox cofactor in the mitochondrial respiratory chain, has been shown to protect neurons against glutamate-induced damage both in vitro and in vivo. In this study, specific inhibitors to each of the mitochondrial complexes were used to find out which reactive oxygen species (ROS)-generating sites could be affected by PQQ. Then we established an in vitro model of Parkinson's disease (PD) by exposing cultured SH-SY5Y dopaminergic cells to rotenone, a complex I inhibitor. The neuroprotective effects of PQQ were observed by pretreatment of SH-SY5Y cells with PQQ before rotenone injury, and the possible involvement of certain signaling pathways were investigated. PQQ pretreatment prevented SH-SY5Y cells from rotenone-induced apoptosis in a concentration-dependent manner. PQQ neuroprotection was associated with inhibition of intracellular ROS production, modulation of the expression of apoptosis-related Bcl-2 and Bax, and regulation of the level of superoxide dismutase, glutathione, and malondialdehyde. Meanwhile, PQQ up-regulated the gene expression of Ndufs 1, 2, and 4 (complex I subunits), and increased mitochondrial viability and mitochondrial DNA content. Furthermore, PQQ pretreatment activated ERK1/2 phosphorylation in rotenone-injured SH-SY5Y cells, while ERK1/2 inhibition suppressed PQQ neuroprotection. All the results suggested that PQQ could protect SH-SY5Y cells against rotenone injury by reducing ROS production and maintaining mitochondrial functions through activation of ERK1/2 pathway."	"Complex I deficiency due to selective loss of Ndufs4 in the mouse heart results in severe hypertrophic cardiomyopathy. Mitochondrial complex I, the primary entry point for electrons into the mitochondrial respiratory chain, is both critical for aerobic respiration and a major source of reactive oxygen species. In the heart, chronic dysfunction driving cardiomyopathy is frequently associated with decreased complex I activity, from both genetic and environmental causes. To examine the functional relationship between complex I disruption and cardiac dysfunction we used an established mouse model of mild and chronic complex I inhibition through heart-specific Ndufs4 gene ablation. Heart-specific Ndufs4-null mice had a decrease of ∼ 50% in complex I activity within the heart, and developed severe hypertrophic cardiomyopathy as assessed by magnetic resonance imaging. The decrease in complex I activity, and associated cardiac dysfunction, occurred absent an increase in mitochondrial hydrogen peroxide levels in vivo, accumulation of markers of oxidative damage, induction of apoptosis, or tissue fibrosis. Taken together, these results indicate that diminished complex I activity in the heart alone is sufficient to drive hypertrophic cardiomyopathy independently of alterations in levels of mitochondrial hydrogen peroxide or oxidative damage."	"Isoflurane anesthetic hypersensitivity and progressive respiratory depression in a mouse model with isolated mitochondrial complex I deficiency. Children with mitochondrial disorders are frequently anesthetized for a wide range of operations. These disorders may interfere with the response to surgery and anesthesia. We examined anesthetic sensitivity to and respiratory effects of isoflurane in the Ndufs4 knockout (KO) mouse model. These mice exhibit an isolated mitochondrial complex I (CI) deficiency of the respiratory chain, and they also display clinical signs and symptoms resembling those of patients with mitochondrial CI disease. We investigated seven Ndufs4(-/-) knockout (KO), five Ndufs4(+/-) heterozygous (HZ) and five Ndufs4(+/+) wild type (WT) mice between 22 and 25 days and again between 31 and 34 days post-natal. Animals were placed inside an airtight box, breathing spontaneously while isoflurane was administered in increasing concentrations. Minimum alveolar concentration (MAC) was determined with the bracketing study design, using the response to electrical stimulation to the hind paw. MAC for isoflurane was significantly lower in KO mice than in HZ and WT mice: 0.81% ± 0.01 vs 1.55 ± 0.05% and 1.55 ± 0.13%, respectively, at 22-25 days, and 0.65 ± 0.05%, 1.65 ± 0.08% and 1.68 ± 0.08% at 31-34 days. The KO mice showed severe respiratory depression at lower isoflurane concentrations than the WT and HZ mice. We observed an increased isoflurane anesthetic sensitivity and severe respiratory depression in the KO mice. The respiratory depression during anesthesia was strongly progressive with age. Since the pathophysiological consequences from complex I deficiency are mainly reflected in the central nervous system and our mouse model involves progressive encephalopathy, further investigation of isoflurane effects on brain mitochondrial function is warranted."	"Alterations of oxidative phosphorylation complexes in astrocytomas. The shift in cellular energy production from oxidative phosphorylation (OXPHOS) to glycolysis, even under aerobic conditions, called the Warburg effect, is a feature of most solid tumors. The activity levels of OXPHOS complexes and citrate synthase were determined in astrocytomas. A gradual decrease of citrate synthase and OXPHOS complexes was observed depending on tumor grade. In low-grade astrocytomas (WHO grade II), enzyme activities of citrate synthase, complex I, and complex V were comparable to those of normal brain tissue. A trend to reduced activities was observed for complexes II-IV. In glioblastoma (WHO grade IV), activities of citrate synthase and complexes I-IV were decreased by 56-92% as compared with normal brain. Immunohistochemical staining for porin revealed that the tumorpil of low-grade astrocytomas displays characteristics of the mitochondria-rich neuropil of normal brain tissue. In high-grade tumors (WHO grades III and IV), the tumorpil was characterized by severe morphologic alterations as well as loss of &quot;pilem&quot; structures. Specific alterations of OXPHOS complexes were observed in all astrocytic tumors by immunohistochemical analysis: 80% of astrocytomas exhibited severe deficiency of complex IV; complex I showed a gradual reduction in amount with increasing tumor grade, whereas complex II showed reduced levels only in high-grade (WHO grade IV) tumors (9/12); complexes III and V did not show significant alterations compared with normal brain tissue. OXPHOS defects were present not only in the cell bodies of tumor cells but also in the pilem structures, indicating that the ramifications/protuberances (tumorpil) in general originate from tumor cells."	"Identification of a deletion in the NDUFS4 gene using array-comparative genomic hybridization in a patient with suspected mitochondrial respiratory disease. We evaluated a patient, born after a normal 38-week pregnancy, with psychomotor retardation, poor coordination of ocular movements, recurrent vomiting and severe lactic acidosis. The patient was admitted to hospital at 2 months of age because of a mitochondrial-like syndrome and died at the age of 4.5 months. Array-comparative genomic hybridization (a-CGH) analysis revealed a homozygous deletion in 5q11.2 involving NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18 kDa (NADH-coenzyme Q reductase; NDUFS4). Both parents were heterozygous for the mutation. The array revealed a deletion of ~32kb that includes exon 2 of NDUFS4 subsequently confirmed by real time-PCR and multiplex PCR. NDUFS4 was previously correlated to Leigh syndrome since mutations in this gene block the assembly of complex I. This result demonstrates the relevance of a-CGH screening in patients affected by metabolic disorders of unknown etiology."	"mTOR inhibition alleviates mitochondrial disease in a mouse model of Leigh syndrome. Mitochondrial dysfunction contributes to numerous health problems, including neurological and muscular degeneration, cardiomyopathies, cancer, diabetes, and pathologies of aging. Severe mitochondrial defects can result in childhood disorders such as Leigh syndrome, for which there are no effective therapies. We found that rapamycin, a specific inhibitor of the mechanistic target of rapamycin (mTOR) signaling pathway, robustly enhances survival and attenuates disease progression in a mouse model of Leigh syndrome. Administration of rapamycin to these mice, which are deficient in the mitochondrial respiratory chain subunit Ndufs4 [NADH dehydrogenase (ubiquinone) Fe-S protein 4], delays onset of neurological symptoms, reduces neuroinflammation, and prevents brain lesions. Although the precise mechanism of rescue remains to be determined, rapamycin induces a metabolic shift toward amino acid catabolism and away from glycolysis, alleviating the buildup of glycolytic intermediates. This therapeutic strategy may prove relevant for a broad range of mitochondrial diseases. "	"Functional characterization of the c.462delA mutation in the NDUFS4 subunit gene of mitochondrial complex I. NA"	"Mitochondrial complex I deficiency increases protein acetylation and accelerates heart failure. Mitochondrial respiratory dysfunction is linked to the pathogenesis of multiple diseases, including heart failure, but the specific mechanisms for this link remain largely elusive. We modeled the impairment of mitochondrial respiration by the inactivation of the Ndufs4 gene, a protein critical for complex I assembly, in the mouse heart (cKO). Although complex I-supported respiration decreased by &gt;40%, the cKO mice maintained normal cardiac function in vivo and high-energy phosphate content in isolated perfused hearts. However, the cKO mice developed accelerated heart failure after pressure overload or repeated pregnancy. Decreased NAD(+)/NADH ratio by complex I deficiency inhibited Sirt3 activity, leading to an increase in protein acetylation and sensitization of the permeability transition in mitochondria (mPTP). NAD(+) precursor supplementation to cKO mice partially normalized the NAD(+)/NADH ratio, protein acetylation, and mPTP sensitivity. These findings describe a mechanism connecting mitochondrial dysfunction to the susceptibility to diseases and propose a potential therapeutic target."	"Isoniazid-induced cell death is precipitated by underlying mitochondrial complex I dysfunction in mouse hepatocytes. Isoniazid (INH) is an antituberculosis drug that has been associated with idiosyncratic liver injury in susceptible patients. The underlying mechanisms are still unclear, but there is growing evidence that INH and/or its major metabolite, hydrazine, may interfere with mitochondrial function. However, hepatic mitochondria have a large reserve capacity, and minor disruption of energy homeostasis does not necessarily induce cell death. We explored whether pharmacologic or genetic impairment of mitochondrial complex I may amplify mitochondrial dysfunction and precipitate INH-induced hepatocellular injury. We found that INH (≤ 3000 μM) did not induce cell injury in cultured mouse hepatocytes, although it decreased hepatocellular respiration and ATP levels in a concentration-dependent fashion. However, coexposure of hepatocytes to INH and nontoxic concentrations of the complex I inhibitors rotenone (3 μM) or piericidin A (30 nM) resulted in massive ATP depletion and cell death. Although both rotenone and piericidin A increased MitoSox-reactive fluorescence, Mito-TEMPO or N-acetylcysteine did not attenuate the extent of cytotoxicity. However, preincubation of cells with the acylamidase inhibitor bis-p-nitrophenol phosphate provided protection from hepatocyte injury induced by rotenone/INH (but not rotenone/hydrazine), suggesting that hydrazine was the cell-damaging species. Indeed, we found that hydrazine directly inhibited the activity of solubilized complex II. Hepatocytes isolated from mutant Ndufs4(+/-) mice, although featuring moderately lower protein expression levels of this complex I subunit in liver mitochondria, exhibited unchanged hepatic complex I activity and were therefore not sensitized to INH. These data indicate that underlying inhibition of complex I, which alone is not acutely toxic, can trigger INH-induced hepatocellular injury."	"Novel insights into the role of Neurospora crassa NDUFAF2, an evolutionarily conserved mitochondrial complex I assembly factor. Complex I deficiency is commonly associated with mitochondrial oxidative phosphorylation diseases. Mutations in nuclear genes encoding structural subunits or assembly factors of complex I have been increasingly identified as the cause of the diseases. One such factor, NDUFAF2, is a paralog of the NDUFA12 structural subunit of the enzyme, but the mechanism by which it exerts its function remains unknown. Herein, we demonstrate that the Neurospora crassa NDUFAF2 homologue, the 13.4 L protein, is a late assembly factor that associates with complex I assembly intermediates containing the membrane arm and the connecting part but lacking the N module of the enzyme. Furthermore, we provide evidence that dissociation of the assembly factor is dependent on the incorporation of the putative regulatory module composed of the subunits of 13.4 (NDUFA12), 18.4 (NDUFS6), and 21 (NDUFS4) kDa. Our results demonstrate that the 13.4 L protein is a complex I assembly factor functionally conserved from fungi to mammals."	"Variable association of reactive intermediate genes with systemic lupus erythematosus in populations with different African ancestry. Little is known about the genetic etiology of systemic lupus erythematosus (SLE) in individuals of African ancestry, despite its higher prevalence and greater disease severity. Overproduction of nitric oxide (NO) and reactive oxygen species are implicated in the pathogenesis and severity of SLE, making NO synthases and other reactive intermediate-related genes biological candidates for disease susceptibility. We analyzed variation in reactive intermediate genes for association with SLE in 2 populations with African ancestry. A total of 244 single-nucleotide polymorphisms (SNP) from 53 regions were analyzed in non-Gullah African Americans (AA; 1432 cases and 1687 controls) and the genetically more homogeneous Gullah of the Sea Islands of South Carolina (133 cases and 112 controls). Single-marker, haplotype, and 2-locus interaction tests were computed for these populations. The glutathione reductase gene GSR (rs2253409; p = 0.0014, OR 1.26, 95% CI 1.09-1.44) was the most significant single SNP association in AA. In the Gullah, the NADH dehydrogenase NDUFS4 (rs381575; p = 0.0065, OR 2.10, 95% CI 1.23-3.59) and NO synthase gene NOS1 (rs561712; p = 0.0072, OR 0.62, 95% CI 0.44-0.88) were most strongly associated with SLE. When both populations were analyzed together, GSR remained the most significant effect (rs2253409; p = 0.00072, OR 1.26, 95% CI 1.10-1.44). Haplotype and 2-locus interaction analyses also uncovered different loci in each population. These results suggest distinct patterns of association with SLE in African-derived populations; specific loci may be more strongly associated within select population groups."	"Cellular and animal models for mitochondrial complex I deficiency: a focus on the NDUFS4 subunit. To allow the rational design of effective treatment strategies for human mitochondrial disorders, a proper understanding of their biochemical and pathophysiological aspects is required. The development and evaluation of these strategies require suitable model systems. In humans, inherited complex I (CI) deficiency is one of the most common deficiencies of the mitochondrial oxidative phosphorylation system. During the last decade, various cellular and animal models of CI deficiency have been presented involving mutations and/or deletion of the Ndufs4 gene, which encodes the NDUFS4 subunit of CI. In this review, we discuss these models and their validity for studying human CI deficiency."	"Epigallocatechin-3-gallate prevents oxidative phosphorylation deficit and promotes mitochondrial biogenesis in human cells from subjects with Down's syndrome. A critical role for mitochondrial dysfunction has been proposed in the pathogenesis of Down's syndrome (DS), a human multifactorial disorder caused by trisomy of chromosome 21, associated with mental retardation and early neurodegeneration. Previous studies from our group demonstrated in DS cells a decreased capacity of the mitochondrial ATP production system and overproduction of reactive oxygen species (ROS) in mitochondria. In this study we have tested the potential of epigallocatechin-3-gallate (EGCG) - a natural polyphenol component of green tea - to counteract the mitochondrial energy deficit found in DS cells. We found that EGCG, incubated with cultured lymphoblasts and fibroblasts from DS subjects, rescued mitochondrial complex I and ATP synthase catalytic activities, restored oxidative phosphorylation efficiency and counteracted oxidative stress. These effects were associated with EGCG-induced promotion of PKA activity, related to increased cellular levels of cAMP and PKA-dependent phosphorylation of the NDUFS4 subunit of complex I. In addition, EGCG strongly promoted mitochondrial biogenesis in DS cells, as associated with increase in Sirt1-dependent PGC-1α deacetylation, NRF-1 and T-FAM protein levels and mitochondrial DNA content. In conclusion, this study shows that EGCG is a promoting effector of oxidative phosphorylation and mitochondrial biogenesis in DS cells, acting through modulation of the cAMP/PKA- and sirtuin-dependent pathways. EGCG treatment promises thus to be a therapeutic approach to counteract mitochondrial energy deficit and oxidative stress in DS."	"Primary fibroblasts of NDUFS4(-/-) mice display increased ROS levels and aberrant mitochondrial morphology. The human NDUFS4 gene encodes an accessory subunit of the first mitochondrial oxidative phosphorylation complex (CI) and, when mutated, is associated with progressive neurological disorders. Here we analyzed primary muscle and skin fibroblasts from NDUFS4(-/-) mice with respect to reactive oxygen species (ROS) levels and mitochondrial morphology. NDUFS4(-/-) fibroblasts displayed an inactive CI subcomplex on native gels but proliferated normally and showed no obvious signs of apoptosis. Oxidation of the ROS sensor hydroethidium was increased and mitochondria were less branched and/or shorter in NDUFS4(-/-) fibroblasts. We discuss the relevance of these findings with respect to previous results and therapy development. "	"Molecular characterization and expression analysis of NDUFS4 gene in m. longissimus dorsi of Laiwu pig (Sus scrofa). To study the molecular basis of intramuscular fat (IMF) deposition, suppression subtractive hybridization was used to investigate the differences in gene expression between m. longissimus dorsi (LD) of high IMF Laiwu pig group and low IMF Laiwu pig group. From two specific subtractive cDNA libraries, the expression-upregulated clone HL-27 was selected by reverse Northern high-density blot, and then identified to be pig mitochondrial NADH dehydrogenase (ubiquinone) Fe-S protein 4 (NDUFS4). Pig NDUFS4 full-length cDNA was cloned by RACE, and contains a 528 bp-open reading frame (ORF) encoding 175 amino acid residues. The derived amino acid sequence of NDUFS4 is well conserved compared with NDUFS4 of various species with higher degree of sequence similarity with other mammalian (86.3-92.6 %) than amphibian, aves, and fishes (70.2-81.1 %), and contains one N-linked glycosylation site, one O-linked glycosylation site, seven Ser phosphorylation sites and five Thr phosphorylation sites. A-G mutation was found at nt 122 site of ORF between Laiwu pig and Large White, which results in the K-R mutation at 41 site of protein sequence. Real-time PCR analysis indicated that the level of NDUFS4 mRNA expression was higher in high IMF Laiwu pig group than in low IMF Laiwu pig group, and in Laiwu pig than in Large White. The tissue expression of the pig NDUFS4 gene showed a tissue-specific pattern: highly expressed in LD muscle, spleen and kidney, but hardly expressed in lung, stomach and large intestine. The possible role of NDUFS4 and its relation to IMF deposition are discussed."	"Subunit-specific incorporation efficiency and kinetics in mitochondrial complex I homeostasis. Studies employing native PAGE suggest that most nDNA-encoded CI subunits form subassemblies before assembling into holo-CI. In addition, in vitro evidence suggests that some subunits can directly exchange in holo-CI. Presently, data on the kinetics of these two incorporation modes for individual CI subunits during CI maintenance are sparse. Here, we used inducible HEK293 cell lines stably expressing AcGFP1-tagged CI subunits and quantified the amount of tagged subunit in mitoplasts and holo-CI by non-native and native PAGE, respectively, to determine their CI incorporation efficiency. Analysis of time courses of induction revealed three subunit-specific patterns. A first pattern, represented by NDUFS1, showed overlapping time courses, indicating that imported subunits predominantly incorporate into holo-CI. A second pattern, represented by NDUFV1, consisted of parallel time courses, which were, however, not quantitatively overlapping, suggesting that imported subunits incorporate at similar rates into holo-CI and CI assembly intermediates. The third pattern, represented by NDUFS3 and NDUFA2, revealed a delayed incorporation into holo-CI, suggesting their prior appearance in CI assembly intermediates and/or as free monomers. Our analysis showed the same maximum incorporation into holo-CI for NDUFV1, NDUFV2, NDUFS1, NDUFS3, NDUFS4, NDUFA2, and NDUFA12 with nearly complete loss of endogenous subunit at 24 h of induction, indicative of an equimolar stoichiometry and unexpectedly rapid turnover. In conclusion, the results presented demonstrate that newly formed nDNA-encoded CI subunits rapidly incorporate into holo-CI in a subunit-specific manner."	"Altered anesthetic sensitivity of mice lacking Ndufs4, a subunit of mitochondrial complex I. Anesthetics are in routine use, yet the mechanisms underlying their function are incompletely understood. Studies in vitro demonstrate that both GABA(A) and NMDA receptors are modulated by anesthetics, but whole animal models have not supported the role of these receptors as sole effectors of general anesthesia. Findings in C. elegans and in children reveal that defects in mitochondrial complex I can cause hypersensitivity to volatile anesthetics. Here, we tested a knockout (KO) mouse with reduced complex I function due to inactivation of the Ndufs4 gene, which encodes one of the subunits of complex I. We tested these KO mice with two volatile and two non-volatile anesthetics. KO and wild-type (WT) mice were anesthetized with isoflurane, halothane, propofol or ketamine at post-natal (PN) days 23 to 27, and tested for loss of response to tail clamp (isoflurane and halothane) or loss of righting reflex (propofol and ketamine). KO mice were 2.5 - to 3-fold more sensitive to isoflurane and halothane than WT mice. KO mice were 2-fold more sensitive to propofol but resistant to ketamine. These changes in anesthetic sensitivity are the largest recorded in a mammal."	"Fatal breathing dysfunction in a mouse model of Leigh syndrome. Leigh syndrome (LS) is a subacute necrotizing encephalomyelopathy with gliosis in several brain regions that usually results in infantile death. Loss of murine Ndufs4, which encodes NADH dehydrogenase (ubiquinone) iron-sulfur protein 4, results in compromised activity of mitochondrial complex I as well as progressive neurodegenerative and behavioral changes that resemble LS. Here, we report the development of breathing abnormalities in a murine model of LS. Magnetic resonance imaging revealed hyperintense bilateral lesions in the dorsal brain stem vestibular nucleus (VN) and cerebellum of severely affected mice. The mutant mice manifested a progressive increase in apnea and had aberrant responses to hypoxia. Electrophysiological recordings within the ventral brain stem pre-Bötzinger respiratory complex were also abnormal. Selective inactivation of Ndufs4 in the VN, one of the principle sites of gliosis, also led to breathing abnormalities and premature death. Conversely, Ndufs4 restoration in the VN corrected breathing deficits and prolonged the life span of knockout mice. These data demonstrate that mitochondrial dysfunction within the VN results in aberrant regulation of respiration and contributes to the lethality of Ndufs4-knockout mice."	"Proteomic and metabolomic analyses of mitochondrial complex I-deficient mouse model generated by spontaneous B2 short interspersed nuclear element (SINE) insertion into NADH dehydrogenase (ubiquinone) Fe-S protein 4 (Ndufs4) gene. Eukaryotic cells generate energy in the form of ATP, through a network of mitochondrial complexes and electron carriers known as the oxidative phosphorylation system. In mammals, mitochondrial complex I (CI) is the largest component of this system, comprising 45 different subunits encoded by mitochondrial and nuclear DNA. Humans diagnosed with mutations in the gene NDUFS4, encoding a nuclear DNA-encoded subunit of CI (NADH dehydrogenase ubiquinone Fe-S protein 4), typically suffer from Leigh syndrome, a neurodegenerative disease with onset in infancy or early childhood. Mitochondria from NDUFS4 patients usually lack detectable NDUFS4 protein and show a CI stability/assembly defect. Here, we describe a recessive mouse phenotype caused by the insertion of a transposable element into Ndufs4, identified by a novel combined linkage and expression analysis. Designated Ndufs4(fky), the mutation leads to aberrant transcript splicing and absence of NDUFS4 protein in all tissues tested of homozygous mice. Physical and behavioral symptoms displayed by Ndufs4(fky/fky) mice include temporary fur loss, growth retardation, unsteady gait, and abnormal body posture when suspended by the tail. Analysis of CI in Ndufs4(fky/fky) mice using blue native PAGE revealed the presence of a faster migrating crippled complex. This crippled CI was shown to lack subunits of the &quot;N assembly module&quot;, which contains the NADH binding site, but contained two assembly factors not present in intact CI. Metabolomic analysis of the blood by tandem mass spectrometry showed increased hydroxyacylcarnitine species, implying that the CI defect leads to an imbalanced NADH/NAD(+) ratio that inhibits mitochondrial fatty acid β-oxidation."	"Hydrogen peroxide induces adaptive response and differential gene expression in human embryo lung fibroblast cells. Hydrogen peroxide (H2 O2 ), a substance involved in cellular oxidative stress, has been observed to induce an adaptive response, which is characterized by a protection against the toxic effect of H2 O2 at higher concentrations. However, the molecular mechanism for the adaptive response remains unclear. In particular, the existing reports on H2 O2 -induced adaptive response are limited to animal cells and human tumor cells, and relatively normal human cells have never been observed for an adaptive response to H2 O2 . In this study, a human embryo lung fibroblast (MRC-5) cell line was used to model an adaptive response to H2 O2 , and the relevant differential gene expressions by using fluoro mRNA differential display RT-PCR. The results showed significant suppression of cytotoxicity of H2 O2 (1100 μM, 1 h) after pretreatment of the cells with H2 O2 at lower concentrations (0.088-8.8 μM, 24 h), as indicated by cell survival, lactate dehydrogenase release, and the rate of apoptotic cells. Totally 60 mRNA components were differentially expressed compared to untreated cells, and five of them (sizing 400-600 bp) which demonstrated the greatest increase in expression were cloned and sequenced. They showed identity with known genes, such as BCL-2, eIF3S5, NDUFS4, and RPS10. Real time RT-PCR analysis of the five genes displayed a pattern of differential expression consistent with that by the last method. These five genes may be involved in the induction of adaptive response by H2 O2 in human cells, at least in this particular cell type."	"Metabolic consequences of NDUFS4 gene deletion in immortalized mouse embryonic fibroblasts. Human mitochondrial complex I (CI) deficiency is associated with progressive neurological disorders. To better understand the CI pathomechanism, we here studied how deletion of the CI gene NDUFS4 affects cell metabolism. To this end we compared immortalized mouse embryonic fibroblasts (MEFs) derived from wildtype (wt) and whole-body NDUFS4 knockout (KO) mice. Mitochondria from KO cells lacked the NDUFS4 protein and mitoplasts displayed virtually no CI activity, moderately reduced CII, CIII and CIV activities and normal citrate synthase and CV (F(o)F(1)-ATPase) activity. Native electrophoresis of KO cell mitochondrial fractions revealed two distinct CI subcomplexes of ~830kDa (enzymatically inactive) and ~200kDa (active). The level of fully-assembled CII-CV was not affected by NDUFS4 gene deletion. KO cells exhibited a moderately reduced maximal and routine O(2) consumption, which was fully inhibited by acute application of the CI inhibitor rotenone. The aberrant CI assembly and reduced O(2) consumption in KO cells were fully normalized by NDUFS4 gene complementation. Cellular [NAD(+)]/[NADH] ratio, lactate production and mitochondrial tetramethyl rhodamine methyl ester (TMRM) accumulation were slightly increased in KO cells. In contrast, NDUFS4 gene deletion did not detectably alter [NADP(+)]/[NADPH] ratio, cellular glucose consumption, the protein levels of hexokinases (I and II) and phosphorylated pyruvate dehydrogenase (P-PDH), total cellular adenosine triphosphate (ATP) level, free cytosolic [ATP], cell growth rate, and reactive oxygen species (ROS) levels. We conclude that the NDUFS4 subunit is of key importance in CI stabilization and that, due to the metabolic properties of the immortalized MEFs, NDUFS4 gene deletion has only modest effects at the live cell level. This article is part of a special issue entitled: 17th European Bioenergetics Conference (EBEC 2012)."	"Dysfunction of mitochondrial respiratory chain complex I in neurological disorders: genetics and pathogenetic mechanisms. This chapter covers genetic and biochemical aspects of mitochondrial bioenergetics dysfunction in neurological disorders associated with complex I defects. Complex I formation and functionality in mammalian cells depends on coordinated expression of nuclear and mitochondrial genes, post-translational subunit modifications, mitochondrial import/maturation of nuclear encoded subunits, subunits interaction and stepwise assembly, and on proteolytic processing. Examples of complex I dysfunction are herein presented: homozygous mutations in the nuclear NDUFS1 and NDUFS4 genes for structural components of complex I; an autosomic recessive form of encephalopathy associated with enhanced proteolytic degradation of complex I; familial cases of Parkinson associated to mutations in the PINK1 and Parkin genes, in particular, homoplasmic mutations in the ND5 and ND6 mitochondrial genes of the complex I, coexistent with mutation in the PINK1 gene. This knowledge, besides clarifying molecular aspects of the pathogenesis of hereditary diseases, can also provide hints for understanding the involvement of complex I in neurological disorders, as well as for developing therapeutical strategies."	"A constant and similar assembly defect of mitochondrial respiratory chain complex I allows rapid identification of NDUFS4 mutations in patients with Leigh syndrome. Isolated complex I deficiency is a frequent cause of respiratory chain defects in childhood. In this study, we report our systematic approach with blue native PAGE (BN-PAGE) to study mitochondrial respiratory chain assembly in skin fibroblasts from patients with Leigh syndrome and CI deficiency. We describe five new NDUFS4 patients with a similar and constant abnormal BN-PAGE profile and present a meta-analysis of the literature. All NDUFS4 mutations that have been tested with BN-PAGE result in a constant and similar abnormal assembly profile with a complete loss of the fully assembled complex I usually due to a truncated protein and the loss of its canonical cAMP dependent protein kinase phosphorylation consensus site. We also report the association of abnormal brain MRI images with this characteristic BN-PAGE profile as the hallmarks of NDUFS4 mutations and the first founder NDUFS4 mutations in the North-African population."	"Activation of the cAMP cascade in human fibroblast cultures rescues the activity of oxidatively damaged complex I. A study of the relationship between cAMP/PKA-dependent phosphorylation and oxidative damage of subunits of complex I of the mitochondrial respiratory chain is presented. It is shown that, in fibroblast cultures, PKA-mediated phosphorylation of the NDUFS4 subunit of complex I rescues the activity of the oxidatively damaged complex. Evidence is presented showing that this effect is mediated by phosphorylation-dependent exchange of carbonylated NDUFS4 subunit in the assembled complex with the de novo synthesized subunit. These results indicate a potential use for β-adrenoceptor agonists in preventing/reversing the detrimental effects of oxidative stress in the mitochondrial respiratory system."	"Mitochondrial complex I deficiency of nuclear origin I. Structural genes. Complex I (or NADH-ubiquinone oxidoreductase), is by far the largest respiratory chain complex with 38 subunits nuclearly encoded and 7 subunits encoded by the mitochondrial genome. Its deficiency is the most frequently encountered in mitochondrial disorders. Here, we summarize recent data obtained on architecture of complex I, and review the pathogenic mutations identified to date in nuclear structural complex I genes. The structural NDUFS1, NDUFS2, NDUFV1, and NDUFS4 genes are mutational hot spot genes for isolated complex I deficiency. The majority of the pathogenic mutations are private and the genotype-phenotype correlation is inconsistent in the rare recurrent mutations."	"Altered dopamine metabolism and increased vulnerability to MPTP in mice with partial deficiency of mitochondrial complex I in dopamine neurons. A variety of observations support the hypothesis that deficiency of complex I [reduced nicotinamide-adenine dinucleotide (NADH):ubiquinone oxidoreductase] of the mitochondrial respiratory chain plays a role in the pathophysiology of Parkinson's disease (PD). However, recent data from a study using mice with knockout of the complex I subunit NADH:ubiquinone oxidoreductase iron-sulfur protein 4 (Ndufs4) has challenged this concept as these mice show degeneration of non-dopamine neurons. In addition, primary dopamine (DA) neurons derived from such mice, reported to lack complex I activity, remain sensitive to toxins believed to act through inhibition of complex I. We tissue-specifically disrupted the Ndufs4 gene in mouse heart and found an apparent severe deficiency of complex I activity in disrupted mitochondria, whereas oxidation of substrates that result in entry of electrons at the level of complex I was only mildly reduced in intact isolated heart mitochondria. Further analyses of detergent-solubilized mitochondria showed the mutant complex I to be unstable but capable of forming supercomplexes with complex I enzyme activity. The loss of Ndufs4 thus causes only a mild complex I deficiency in vivo. We proceeded to disrupt Ndufs4 in midbrain DA neurons and found no overt neurodegeneration, no loss of striatal innervation and no symptoms of Parkinsonism in tissue-specific knockout animals. However, DA homeostasis was abnormal with impaired DA release and increased levels of DA metabolites. Furthermore, Ndufs4 DA neuron knockouts were more vulnerable to the neurotoxin 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine. Taken together, these findings lend in vivo support to the hypothesis that complex I deficiency can contribute to the pathophysiology of PD."	"Mitochondrial complex III stabilizes complex I in the absence of NDUFS4 to provide partial activity. Mitochondrial complex I (CI) is a multi-subunit enzyme that forms the major entry point of nicotinamide adenine dinucleotide (NADH) electrons into the respiratory chain. Mutations in the NDUFS4 gene, encoding an accessory subunit of this complex, cause a Leigh-like phenotype in humans. To study the nature and penetrance of the CI defect in different tissues, we investigated the role of NDUFS4 in mice with fatal mitochondrial encephalomyopathy, caused by a systemic inactivation of the Ndufs4 gene. We report that the absence of NDUFS4 in different mouse tissues results in decreased activity and stability of CI. This CI instability leads to an increased disconnection of electron influx of the NADH dehydrogenase module from the holo-complex. However, the formation of respiratory supercomplexes still allows formation of active CI in these Ndufs4 knock-out mice. These results reveal the importance of these supramolecular interactions not only for stabilization but also for the assembly of CI, which becomes especially relevant in pathological conditions."	"Respiratory chain complex I, a main regulatory target of the cAMP/PKA pathway is defective in different human diseases. In mammals, complex I (NADH-ubiquinone oxidoreductase) of the mitochondrial respiratory chain has 31 supernumerary subunits in addition to the 14 conserved from prokaryotes to humans. Multiplicity of structural protein components, as well as of biogenesis factors, makes complex I a sensible pace-maker of mitochondrial respiration. The work reviewed here shows that the cAMP/PKA pathway regulates the biogenesis, assembly and catalytic activity of complex I and mitochondrial oxygen superoxide production. The structural, functional and regulatory complexity of complex I, renders it particularly vulnerable to genetic and sporadic pathological factors. Complex I dysfunction has, indeed, been found, to be associated with several human diseases. Knowledge of the pathogenetic mechanisms of these diseases can help to develop new therapeutic strategies."	"Loss of mitochondrial complex I activity potentiates dopamine neuron death induced by microtubule dysfunction in a Parkinson's disease model. Mitochondrial complex I dysfunction is regarded as underlying dopamine neuron death in Parkinson's disease models. However, inactivation of the Ndufs4 gene, which compromises complex I activity, does not affect the survival of dopamine neurons in culture or in the substantia nigra pars compacta of 5-wk-old mice. Treatment with piericidin A, a complex I inhibitor, does not induce selective dopamine neuron death in either Ndufs4(+/+) or Ndufs4(-/-) mesencephalic cultures. In contrast, rotenone, another complex I inhibitor, causes selective toxicity to dopamine neurons, and Ndufs4 inactivation potentiates this toxicity. We identify microtubule depolymerization and the accumulation of cytosolic dopamine and reactive oxygen species as alternative mechanisms underlying rotenone-induced dopamine neuron death. Enhanced rotenone toxicity to dopamine neurons from Ndufs4 knockout mice may involve enhanced dopamine synthesis caused by the accumulation of nicotinamide adenine dinucleotide reduced. Our results suggest that the combination of disrupting microtubule dynamics and inhibiting complex I, either by mutations or exposure to toxicants, may be a risk factor for Parkinson's disease."	"Transcriptional profile analysis of RPGRORF15 frameshift mutation identifies novel genes associated with retinal degeneration. To identify genes and molecular mechanisms associated with photoreceptor degeneration in a canine model of XLRP caused by an RPGR exon ORF15 microdeletion. Methods. Expression profiles of mutant and normal retinas were compared by using canine retinal custom cDNA microarrays. qRT-PCR, Western blot analysis, and immunohistochemistry (IHC) were applied to selected genes, to confirm and expand the microarray results. At 7 and 16 weeks, respectively, 56 and 18 transcripts were downregulated in the mutant retinas, but none were differentially expressed (DE) at both ages, suggesting the involvement of temporally distinct pathways. Downregulated genes included the known retina-relevant genes PAX6, CHML, and RDH11 at 7 weeks and CRX and SAG at 16 weeks. Genes directly or indirectly active in apoptotic processes were altered at 7 weeks (CAMK2G, NTRK2, PRKCB, RALA, RBBP6, RNF41, SMYD3, SPP1, and TUBB2C) and 16 weeks (SLC25A5 and NKAP). Furthermore, the DE genes at 7 weeks (ELOVL6, GLOD4, NDUFS4, and REEP1) and 16 weeks (SLC25A5 and TARS2) are related to mitochondrial functions. qRT-PCR of 18 genes confirmed the microarray results and showed DE of additional genes not on the array. Only GFAP was DE at 3 weeks of age. Western blot and IHC analyses also confirmed the high reliability of the transcriptomic data. Several DE genes were identified in mutant retinas. At 7 weeks, a combination of nonclassic anti- and proapoptosis genes appear to be involved in photoreceptor degeneration, whereas at both 7 and 16 weeks, the expression of mitochondria-related genes indicates that they may play a relevant role in the disease process."	"Complex I deficiency due to loss of Ndufs4 in the brain results in progressive encephalopathy resembling Leigh syndrome. To explore the lethal, ataxic phenotype of complex I deficiency in Ndufs4 knockout (KO) mice, we inactivated Ndufs4 selectively in neurons and glia (NesKO mice). NesKO mice manifested the same symptoms as KO mice including retarded growth, loss of motor ability, breathing abnormalities, and death by approximately 7 wk. Progressive neuronal deterioration and gliosis in specific brain areas corresponded to behavioral changes as the disease advanced, with early involvement of the olfactory bulb, cerebellum, and vestibular nuclei. Neurons, particularly in these brain regions, had aberrant mitochondrial morphology. Activation of caspase 8, but not caspase 9, in affected brain regions implicate the initiation of the extrinsic apoptotic pathway. Limited caspase 3 activation and the predominance of ultrastructural features of necrotic cell death suggest a switch from apoptosis to necrosis in affected neurons. These data suggest that dysfunctional complex I in specific brain regions results in progressive glial activation that promotes neuronal death that ultimately results in mortality."	"Phosphorylation pattern of the NDUFS4 subunit of complex I of the mammalian respiratory chain. The NDUFS4 subunit of complex I of the mammalian respiratory chain has a fully conserved carboxy-terminus with a canonical RVSTK phosphorylation site. Immunochemical analysis with specific antibodies shows that the serine in this site of the protein is natively present in complex I in both the phosphorylated and non-phosphorylated state. Two-dimensional IEF/SDS-PAGE electrophoresis, (32)P labelling and immunodetection show that &quot;in vitro&quot; PKA phosphorylates the serine in the C-terminus of the NDUFS4 subunit in isolated bovine complex I. (32)P labelling and TLC phosphoaminoacid mapping show that PKA phosphorylates serine and threonine residues in the purified heterologous human NDUFS4 protein."	"cAMP-dependent protein kinase regulates post-translational processing and expression of complex I subunits in mammalian cells. Work is presented on the role of cAMP-dependent protein phosphorylation in post-translational processing and biosynthesis of complex I subunits in mammalian cell cultures. PKA-mediated phosphorylation of the NDUFS4 subunit of complex I promotes in cell cultures in vivo import/maturation in mitochondria of the precursor of this protein. The import promotion appears to be associated with the observed cAMP-dependent stimulation of the catalytic activity of complex I. These effects of PKA are counteracted by activation of protein phosphatase(s). PKA and the transcription factor CREB play a critical role in the biosynthesis of complex I subunits. CREB phosphorylation, by PKA and/or CaMKs, activates at nuclear and mitochondrial level a transcriptional regulatory cascade which promotes the concerted expression of nuclear and mitochondrial encoded subunits of complex I and other respiratory chain proteins."	"Remodeled respiration in ndufs4 with low phosphorylation efficiency suppresses Arabidopsis germination and growth and alters control of metabolism at night. Respiratory oxidative phosphorylation is a cornerstone of cellular metabolism in aerobic multicellular organisms. The efficiency of this process is generally assumed to be maximized, but the presence of dynamically regulated nonphosphorylating bypasses implies that plants can alter phosphorylation efficiency and can benefit from lowered energy generation during respiration under certain conditions. We characterized an Arabidopsis (Arabidopsis thaliana) mutant, ndufs4 (for NADH dehydrogenase [ubiquinone] fragment S subunit 4), lacking complex I of the respiratory chain, which has constitutively lowered phosphorylation efficiency. Through analysis of the changes to mitochondrial function as well as whole cell transcripts and metabolites, we provide insights into how cellular metabolism flexibly adapts to reduced phosphorylation efficiency and why this state may benefit the plant by providing moderate stress tolerance. We show that removal of the single protein subunit NDUFS4 prevents assembly of complex I and removes its function from mitochondria without pleiotropic effects on other respiratory components. However, the lack of complex I promotes broad changes in the nuclear transcriptome governing growth and photosynthetic function. We observed increases in organic acid and amino acid pools in the mutant, especially at night, concomitant with alteration of the adenylate content. While germination is delayed, this can be rescued by application of gibberellic acid, and root growth assays of seedlings show enhanced tolerance to cold, mild salt, and osmotic stress. We discuss these observations in the light of recent data on the knockout of nonphosphorylating respiratory bypass enzymes that show opposite changes in metabolites and stress sensitivity. Our data suggest that the absence of complex I alters the adenylate control of cellular metabolism."	"NDUFS4: creation of a mouse model mimicking a Complex I disorder. The Complex I NADH dehydrogenase-ubiquinone-FeS 4 (NDUFS4) subunit gene is involved in proper Complex I function such that the loss of NDUFS4 decreases Complex I activity resulting in mitochondrial disease. Therefore, a mouse model harboring a point mutation in the NDUFS4 gene was created. An embryonic lethal phenotype was observed in homozygous (NDUFS4(-/-)) mutant fetuses. Mitochondrial function was impaired in heterozygous animals based on oxygen consumption, and Complex I activity in NDUFS4 mouse mitochondria. Decreased Complex I activity with unaltered Complex II activity, along with an accumulation of lactate, were consistent with Complex I disorders in this mouse model."	"NDUFS4 mutations cause Leigh syndrome with predominant brainstem involvement. Complex I deficiency is a frequent cause of Leigh syndrome. We describe a non-consanguineous Ashkenazi-Sephardic Jewish patient with Leigh syndrome due to complex I deficiency. The clinical and neuroradiological presentation showed predominant brainstem involvement. Blue native polyacrylamide gel electrophoresis analysis revealed an impaired assembly of complex I. The patient was found to be compound heterozygous of two mutations in the NDUFS4 gene: p.Asp119His (a novel mutation) and p.Lys154fs (recently described in an Ashkenazi Jewish family). These findings support the suggestion that the p.Lys154fs mutation in NDUFS4 should be evaluated in Ashkenazi Jewish patients presenting with early onset Leigh syndrome even before enzymatic studies. Our results further demonstrated that NDUFS4 presents a hotspot of mutations in the genetic apparatus of oxidative phosphorylation and the correct assembly of the subunit it encodes is essential for completion of the assembly of complex I."	"Pathogenetic mechanisms in hereditary dysfunctions of complex I of the respiratory chain in neurological diseases. This paper covers genetic and biochemical aspects of mitochondrial bioenergetics dysfunction in hereditary neurological disorders associated with complex I defects. Three types of hereditary complex I dysfunction are dealt with: (i) homozygous mutations in the nuclear genes NDUFS1 and NDUFS4 of complex I, associated with mitochondrial encephalopathy; (ii) a recessive hereditary epileptic neurological disorder associated with enhanced proteolytic degradation of complex I; (iii) homoplasmic mutations in the ND5 and ND6 mitochondrial genes of the complex, coexistent with mutation in the nuclear PINK1 gene in familial Parkinsonism. The genetic and biochemical data examined highlight different mechanisms by which mitochondrial bioenergetics is altered in these hereditary defects of complex I. This knowledge, besides clarifying molecular aspects of the pathogenesis of hereditary diseases, can also provide hints for understanding the involvement of complex I in sporadic neurological disorders and aging, as well as for developing therapeutical strategies."	"Rapid screening for nuclear genes mutations in isolated respiratory chain complex I defects. Complex I or reduced nicotinamide adenine dinucleotide (NADH): ubiquinone oxydoreductase deficiency is the most common cause of respiratory chain defects. Molecular bases of complex I deficiencies are rarely identified because of the dual genetic origin of this multi-enzymatic complex (nuclear DNA and mitochondrial DNA) and the lack of phenotype-genotype correlation. We used a rapid method to screen patients with isolated complex I deficiencies for nuclear genes mutations by Surveyor nuclease digestion of cDNAs. Eight complex I nuclear genes, among the most frequently mutated (NDUFS1, NDUFS2, NDUFS3, NDUFS4, NDUFS7, NDUFS8, NDUFV1 and NDUFV2), were studied in 22 cDNA fragments spanning their coding sequences in 8 patients with a biochemically proved complex I deficiency. Single nucleotide polymorphisms and missense mutations were detected in 18.7% of the cDNA fragments by Surveyor nuclease treatment. Molecular defects were detected in 3 patients. Surveyor nuclease screening is a reliable method for genotyping nuclear complex I deficiencies, easy to interpret, and limits the number of sequence reactions. Its use will enhance the possibility of prenatal diagnosis and help us for a better understanding of complex I molecular defects."	"A novel mutation in NDUFS4 causes Leigh syndrome in an Ashkenazi Jewish family. Leigh syndrome is a neurodegenerative disorder of infancy or childhood generally due to mutations in nuclear or mitochondrial genes involved in mitochondrial energy metabolism. We performed linkage analysis in an Ashkenazi Jewish (AJ) family without consanguinity with three affected children. Linkage to microsatellite markers D5S1969 and D5S407 led to evaluation of the complex I gene NDUFS4, in which we identified a novel homozygous c.462delA mutation that disrupts the reading frame. The resulting protein lacks a cAMP-dependent protein kinase phosphorylation site required for activation of mitochondrial respiratory chain complex I. In a random sample of 5000 healthy AJ individuals, the carrier frequency of the NDUFS4 mutation c.462delA was 1 in 1000, suggesting that it should be considered in all AJ patients with Leigh syndrome."	"Mouse models of oxidative phosphorylation dysfunction and disease. Oxidative phosphorylation (OXPHOS) deficiency results in a number of human diseases, affecting at least one in 5000 of the general population. Altering the function of genes by mutations are central to our understanding their function. Prior to the development of gene targeting, this approach was limited to rare spontaneous mutations that resulted in a phenotype. Since its discovery, targeted mutagenesis of the mouse germline has proved to be a powerful approach to understand the in vivo function of genes. Gene targeting has yielded remarkable understanding of the role of several gene products in the OXPHOS system. We provide a &quot;tool box&quot; of mouse models with OXPHOS defects that could be used to answer diverse scientific questions."	"Mitochondrial complex I inhibition is not required for dopaminergic neuron death induced by rotenone, MPP+, or paraquat. Inhibition of mitochondrial complex I is one of the leading hypotheses for dopaminergic neuron death associated with Parkinson's disease (PD). To test this hypothesis genetically, we used a mouse strain lacking functional Ndufs4, a gene encoding a subunit required for complete assembly and function of complex I. Deletion of the Ndufs4 gene abolished complex I activity in midbrain mesencephalic neurons cultured from embryonic day (E) 14 mice, but did not affect the survival of dopaminergic neurons in culture. Although dopaminergic neurons were more sensitive than other neurons in these cultures to cell death induced by rotenone, MPP(+), or paraquat treatments, the absence of complex I activity did not protect the dopaminergic neurons, as would be expected if these compounds act by inhibiting complex 1. In fact, the dopaminergic neurons were more sensitive to rotenone. These data suggest that dopaminergic neuron death induced by treatment with rotenone, MPP(+), or paraquat is independent of complex I inhibition."	"The regulation of PTC containing transcripts of the human NDUFS4 gene of complex I of respiratory chain and the impact of pathological mutations. The regulation of alternative transcripts of the NDUFS4 gene of complex I of the respiratory chain has been studied in human cell lines. One of the alternative transcripts (SV1) is subjected to the NMD degradation pathway which involves the hUPF1 and hUPF2 factors. Another transcript (SV3) appears to be controlled in the nuclear fraction and to be enhanced when hUPF1 is depleted, but unaffected by translation inhibitors or when hUPF2 expression is down-regulated. A pathological homozygous nonsense mutation in exon 1, found in a patient affected by mitochondrial disorder, inactivated in the patient's fibroblasts NMD degradation of SV1 and enhanced the nuclear production of SV3. In another patient with a homozygous splice acceptor site mutation in intron 1, SV3, which was the only transcript of NDUFS4 gene to be produced, accumulated in fibroblasts."	"Mammalian complex I: a regulable and vulnerable pacemaker in mitochondrial respiratory function. In this paper the regulatory features of complex I of mammalian and human mitochondria are reviewed. In a variety of mitotic cell-line cultures, activation in vivo of the cAMP cascade, or direct addition of cAMP, promotes the NADH-ubiquinone oxidoreductase activity of complex I and lower the cellular level of ROS. These effects of cAMP are found to be associated with PKA-mediated serine phosphorylation in the conserved C-terminus of the subunit of complex I encoded by the nuclear gene NDUFS4. PKA mediated phosphorylation of this Ser in the C-terminus of the protein promotes its mitochondrial import and maturation. Mass-spectrometry analysis of the phosphorylation pattern of complex I subunits is also reviewed."	"Mice with mitochondrial complex I deficiency develop a fatal encephalomyopathy. To study effects of mitochondrial complex I (CI, NADH:ubiquinone oxidoreductase) deficiency, we inactivated the Ndufs4 gene, which encodes an 18 kDa subunit of the 45-protein CI complex. Although small, Ndufs4 knockout (KO) mice appeared healthy until approximately 5 weeks of age, when ataxic signs began, progressing to death at approximately 7 weeks. KO mice manifested encephalomyopathy including a retarded growth rate, lethargy, loss of motor skill, blindness, and elevated serum lactate. CI activity in submitochondrial particles from KO mice was undetectable by spectrophotometric assays. However, CI-driven oxygen consumption by intact tissue was about half that of controls. Native gel electrophoresis revealed reduced levels of intact CI. These data suggest that CI fails to assemble properly or is unstable without NDUFS4. KO muscle has normal morphology but low NADH dehydrogenase activity and subsarcolemmal aggregates of mitochondria. Nonetheless, total oxygen consumption and muscle ATP and phosphocreatine concentrations measured in vivo were within normal parameters."	"cAMP-dependent protein kinase regulates the mitochondrial import of the nuclear encoded NDUFS4 subunit of complex I. The subunits of complex I encoded by the mammalian nuclear genes NDUFS4 (AQDQ protein) and NDUFB11 (ESSS protein) contain serine/threonine consensus phosphorylation sequences (CPS) in their presequence, the first also in the C-terminus. We have studied the impact of PKA mediated phosphorylation on the mitochondrial import of in vitro and in vivo synthesized NDUFS4 protein. The intramitochondrial accumulation of the mature form of in vitro synthesized NDUFS4 protein, but not that of ESSS protein, was promoted by PKA and depressed by alkaline phosphatase (AP). In HeLa cells, control or transfected with the NDUFS4 cDNA construct, the mitochondrial level of mature NDUFS4 protein was promoted by 8-Br-cAMP and depressed by H89. Ser173Ala mutagenesis in the C-terminus CPS abolished the appearance in mitochondria of the mature form of NDUFS4 protein. The promoting effect of PKA on the mitochondrial accumulation of mature NDUFS4 protein appears to be due to inhibition of its retrograde diffusion into the cytosol."	"[Differential gene expressions in cells with low-dose hydrogen peroxide-induced adaptive response: a study with FDDRT-PCR]. To identify differentially expressed genes in human embryo lung fibroblasts MRC-5 with adaptive response induced by low concentration of hydrogen peroxide (H(2)O(2)) using fluorescent differential display-RT-PCR (FDDRT-PCR). The dose-effect pattern of H2O2 toxicity was determined using MTT assay, and the dose of 0.088, 0.88, 8.8, 88 micro;mol/L was defined as the low concentration, and 1100 micromol/L as the high concentration. Adaptive response model was established in MRC-5 cells verified using LDH release and cell apoptosis analyses. Differentially expressed genes in the cells with exposure to different doses of H(2)O(2) were detected by FDDRT-PCR, and some of the differentially displayed genes were determined using real-time quantitative PCR. Cells challenged with high-concentration H(2)O(2) for 1 h after H(2)O(2) pretreatment at low concentrations for 24 h resulted in lessened toxic effect in comparison with direct high-concentration H(2)O(2) exposure. The adaptive response of the cells was most obvious with H(2)O(2) pretreatment at 0.88 micromol/L. Altogether 60 differentially expressed genes were detected with FDDRT-PCR in different treatment groups, and 5 of them were identified and verified, including 1 unknown gene and 4 known genes (bcl-2, EIF3S5, NDUFS4 and RPS10). According to the results of FDDRT-PCR, the genes bcl-2, EIF3S5, NDUFS4 and RPS10 can be involved in H(2)O(2)-induced adaptive response of the MRC-5 cells."	"Analysis of the assembly profiles for mitochondrial- and nuclear-DNA-encoded subunits into complex I. Complex I of the respiratory chain is composed of at least 45 subunits that assemble together at the mitochondrial inner membrane. Defects in human complex I result in energy generation disorders and are also implicated in Parkinson's disease and altered apoptotic signaling. The assembly of this complex is poorly understood and is complicated by its large size and its regulation by two genomes, with seven subunits encoded by mitochondrial DNA (mtDNA) and the remainder encoded by nuclear genes. Here we analyzed the assembly of a number of mtDNA- and nuclear-gene-encoded subunits into complex I. We found that mtDNA-encoded subunits first assemble into intermediate complexes and require significant chase times for their integration into the holoenzyme. In contrast, a set of newly imported nuclear-gene-encoded subunits integrate with preexisting complex I subunits to form intermediates and/or the fully assembly holoenzyme. One of the intermediate complexes represents a subassembly associated with the chaperone B17.2L. By using isolated patient mitochondria, we show that this subassembly is a productive intermediate in complex I assembly since import of the missing subunit restores complex I assembly. Our studies point to a mechanism of complex I biogenesis involving two complementary processes, (i) synthesis of mtDNA-encoded subunits to seed de novo assembly and (ii) exchange of preexisting subunits with newly imported ones to maintain complex I homeostasis. Subunit exchange may also act as an efficient mechanism to prevent the accumulation of oxidatively damaged subunits that would otherwise be detrimental to mitochondrial oxidative phosphorylation and have the potential to cause disease."	"Investigation of the complex I assembly chaperones B17.2L and NDUFAF1 in a cohort of CI deficient patients. Dysfunction of complex I (NADH:ubiquinone oxidoreductase; CI), the largest enzyme of the oxidative phosphorylation (OXPHOS) system, often results in severe neuromuscular disorders and early childhood death. Mutations in its seven mitochondrial and 38 nuclear DNA-encoded structural components can only partly explain these deficiencies. Recently, CI assembly chaperones NDUFAF1 and B17.2L were linked to CI deficiency, but it is still unclear by which mechanism. To better understand their requirement during assembly we have studied their presence in CI subcomplexes in a cohort of CI deficient patients using one- and two-dimensional blue-native PAGE. This analysis revealed distinct differences between their associations to subcomplexes in different patients. B17.2L occurred in a 830 kDa subcomplex specifically in patients with mutations in subunits NDUFV1 and NDUFS4. Contrasting with this seemingly specific requirement, the previously described NDUFAF1 association to 500-850 kDa intermediates did not appear to be related to the nature and severity of the CI assembly defect. Surprisingly, even in the absence of assembly intermediates in a patient harboring a mutation in translation elongation factor G1 (EFG1), NDUFAF1 remained associated to the 500-850 kDa subcomplexes. These findings illustrate the difference in mechanism between B17.2L and NDUFAF1 and suggest that the involvement of NDUFAF1 in the assembly process could be indirect rather than direct via the binding to assembly intermediates."	"Mutations in structural genes of complex I associated with neurological diseases. This paper summarizes observations on the genetic and biochemical basis of hereditary defects of complex I (NADH-ubiquinone oxidoreductase) of the respiratory chain in human neurological patients. Two different types of functional defects of the complex are described. In one type mutations in the NDUFS1 and NDUFS4 nuclear structural genes of the complex were identified in two unrelated families. Both NDUFS1 and NDUFS4 neurological disorders were transmitted by autosomic recessive inheritance. The two mutations resulted in different impact on cellular metabolism. The NDUFS4 mutation, giving a more severe, fatal pathological pattern, resulted in a defective assembly of the complex and complete suppression of the enzymatic activity. The NDUFS1 mutation, with less severe progressive pathology, caused only partial inhibition of the complex but enhanced production of oxygen free radicals. In the second type of deficiencies extensive mutational analysis did not reveal pathogenic mutations in complex I genes but a decline in the level and activity of complex I, III, and IV were found, apparently associated with alteration in the cardiolipin membrane distribution."	"cAMP controls oxygen metabolism in mammalian cells. The impact of cAMP on ROS-balance in human and mammalian cell cultures was studied. cAMP reduced accumulation of ROS induced by serum-limitation, under conditions in which there was no significant change in the activity of scavenger systems. This effect was associated with cAMP-dependent activation of the NADH-ubiquinone oxidoreductase activity of complex I. In fibroblasts from a patient a genetic defect in the 75 kDa FeS-protein subunit of complex I resulted in inhibition of the activity of the complex and enhanced ROS production, which were reversed by cAMP. A missense genetic defect in the NDUFS4 subunit, putative substrate of PKA, suppressed, on the other hand, the activity of the complex and prevented ROS production."	"Dysfunctions of cellular oxidative metabolism in patients with mutations in the NDUFS1 and NDUFS4 genes of complex I. The pathogenic mechanism of a G44A nonsense mutation in the NDUFS4 gene and a C1564A mutation in the NDUFS1 gene of respiratory chain complex I was investigated in fibroblasts from human patients. As previously observed the NDUFS4 mutation prevented complete assembly of the complex and caused full suppression of the activity. The mutation (Q522K replacement) in NDUFS1 gene, coding for the 75-kDa Fe-S subunit of the complex, was associated with (a) reduced level of the mature complex, (b) marked, albeit not complete, inhibition of the activity, (c) accumulation of H(2)O(2) and O(2)(.-) in mitochondria, (d) decreased cellular content of glutathione, (e) enhanced expression and activity of glutathione peroxidase, and (f) decrease of the mitochondrial potential and enhanced mitochondrial susceptibility to reactive oxygen species (ROS) damage. No ROS increase was observed in the NDUFS4 mutation. Exposure of the NDUFS1 mutant fibroblasts to dibutyryl-cAMP stimulated the residual NADH-ubiquinone oxidoreductase activity, induced disappearance of ROS, and restored the mitochondrial potential. These are relevant observations for a possible therapeutical strategy in NDUFS1 mutant patients."	"Sequence analysis of nuclear genes encoding functionally important complex I subunits in children with encephalomyopathy. Complex I has a vital role in the energy production of the cell, and the clinical spectrum of complex I deficiency varies from severe lactic acidosis in infants to muscle weakness in adults. It has been estimated that the cause of complex I deficiency, especially in children, is often a mutation in the nuclear-encoded genes and, more rarely, in the genes encoded by mitochondrial DNA. We sequenced nine complex I subunit coding genes, NDUFAB1, NDUFS1, NDUFS2, NDUFS3, NDUFS4, NDUFS7, NDUFS8, NDUFV1 and NDUFV2, in 13 children with defined complex I deficiency. Two novel substitutions were found: a synonymous replacement 201A&gt;T in NDUFV2 and a non-synonymous base exchange 52C&gt;T in NDUFS8. The 52C&gt;T substitution produced the replacement Arg18Cys in the leading peptide of the TYKY subunit. This novel missense mutation was found as a heterozygote in one patient and her mother, but not among 202 healthy controls nor among 107 children with undefined encephalomyopathy. Bioinformatic analyses suggested that Arg18Cys could lead to marked changes in the physicochemical properties of the mitochondrial-targeting peptide of TYKY, but we could not see changes in the assembly or activity of complex I or in the transcription of NDUFS8 in the fibroblasts of our patient. We suggest that Arg18Cys in the leading peptide of the TYKY subunit is not solely pathogenic, and that other genetic factors contribute to the disease-causing potential of this mutation."	"The human complex I NDUFS4 subunit: from gene structure to function and pathology. Complex I is the first and largest enzyme of the oxidative phosphorylation system. It consists of at least 43 subunits. Recent studies have shown that the NDUFS4 subunit of complex I contributes to the activation of the complex through cAMP dependent phosphorylation of a conserved site (RVS) located at the C-terminal region of this protein. This report focuses on the NDUFS4 subunit. Summarized is the current knowledge of this subunit, from gene structure to function and pathology."	"Mutations in the NDUFS4 gene of mitochondrial complex I alter stability of the splice variants. The effect on the stability of alternative transcripts of different mutations of the NDUFS4 gene in patients with Leigh syndrome with complex I deficiency is presented. Normally, two NDUFS4 splice variants are degraded by nonsense mediated mRNA decay (NMD) while a third form does not trigger NMD degradation. In a patient with a premature termination codon in exon 1, all the three splice variants are up-regulated. The present is the first case of a nonsense mutation leading to the abrogation of NMD, which can represent an additional event to be considered in the evaluation of clinically relevant mutations."	"Leigh syndrome associated with mitochondrial complex I deficiency due to a novel mutation in the NDUFS1 gene. Mutations in the nuclear-encoded subunits of complex I of the mitochondrial respiratory chain are a recognized cause of Leigh syndrome (LS). Recently, 6 mutations in the NDUFS1 gene were identified in 3 families. To describe a Spanish family with LS, complex I deficiency in muscle, and a novel mutation in the NDUFS1 gene. Using molecular genetic approaches, we identified the underlying molecular defect in a patient with LS with a complex I defect. The proband was a child who displayed the clinical features of LS. Muscle biochemistry results showed a complex I defect of the mitochondrial respiratory chain. Sequencing analysis of the mitochondrial DNA-encoded ND genes, the nuclear DNA-encoded NDUFV1, NDUFS1, NDUFS2, NDUFS4, NDUFS6, NDUFS7, NDUFS8, and NDUFAB1 genes, and the complex I assembly factor CIA30 gene revealed a novel homozygous L231V mutation (c.691C--&gt;G) in the NDUFS1 gene. The parents were heterozygous carriers of the L231V mutation. Identifying nuclear mutations as a cause of respiratory chain disorders will enhance the possibility of prenatal diagnosis and help us understand how molecular defects can lead to complex I deficiency."	"Respiratory complex I in brain development and genetic disease. A study is presented on the expression and activity of complex I, as well as of other complexes of the respiratory chain, in the course of brain development and inherited encephalopathies. Investigations on mouse hippocampal cells show that differentiation of these cells both in vivo and in cell cultures is associated with the expression of a functional complex I, whose activity markedly increases with respect to that of complexes III and IV. Data are presented on genetic defects of complex I in six children with inborn encephalopathy associated with isolated deficiency of the complex. Mutations have been identified in nuclear and mitochondrial genes coding for subunits of the complex. Different mutations were found in the nuclear NDUFS4 gene coding for the 18 kD (IP, AQDQ) subunit of complex I. All the NDUFS4 mutations resulted in impairment of the assembly of a functional complex. The observations presented provide evidence showing a critical role of complex I in differentiation and functional activity of brain cells."	"Clinical heterogeneity in patients with mutations in the NDUFS4 gene of mitochondrial complex I. A comparison of the clinical presentation, disease course and results of laboratory and imaging studies of all patients so far published with a NDUFS4 mutation are presented. This reveals marked clinical heterogeneity, even in patients with the same genotype."	"Differences in assembly or stability of complex I and other mitochondrial OXPHOS complexes in inherited complex I deficiency. NADH-ubiquinone oxidoreductase (complex I) deficiency is amongst the most encountered defects of the mitochondrial oxidative phosphorylation (OXPHOS) system and is associated with a wide variety of clinical signs and symptoms. Mutations in complex I nuclear structural genes are the most common cause of isolated complex I enzyme deficiencies. The cell biological consequences of such mutations are poorly understood. In this paper we have used blue native electrophoresis in order to study how different nuclear mutations affect the integrity of mitochondrial OXPHOS complexes in fibroblasts from 15 complex I-deficient patients. Our results show an important decrease in the levels of intact complex I in patients harboring mutations in nuclear-encoded complex I subunits, indicating that complex I assembly and/or stability is compromised. Different patterns of low molecular weight subcomplexes are present in these patients, suggesting that the formation of the peripheral arm is affected at an early assembly stage. Mutations in complex I genes can also affect the stability of other mitochondrial complexes, with a specific decrease of fully-assembled complex III in patients with mutations in NDUFS2 and NDUFS4. We have extended this analysis to patients with an isolated complex I deficiency in which no mutations in structural subunits have been found. In this group, we can discriminate between complex I assembly and catalytic defects attending to the fact whether there is a correlation between assembly/activity levels or not. This will help us to point more selectively to candidate genes for pathogenic mutations that could lead to an isolated complex I defect."	"Pathological mutations of the human NDUFS4 gene of the 18-kDa (AQDQ) subunit of complex I affect the expression of the protein and the assembly and function of the complex. Presented is a study of the impact on the structure and function of human complex I of three different homozygous mutations in the NDUFS4 gene coding for the 18-kDa subunit of respiratory complex I, inherited by autosomal recessive mode in three children affected by a fatal neurological Leigh-like syndrome. The mutations consisted, respectively, of a AAGTC duplication at position 466-470 of the coding sequence, a single base deletion at position 289/290, and a G44A nonsense mutation in the first exon of the gene. All three mutations were found to be associated with a defect of the assembly of a functional complex in the inner mitochondrial membrane. In all the mutations, in addition to destruction of the carboxyl-terminal segment of the 18-kDa subunit, the amino-terminal segment of the protein was also missing. In the mutation that was expected to produce a truncated subunit, the disappearance of the protein was associated with an almost complete disappearance of the NDUFS4 transcript. These observations show the essential role of the NDUFS4 gene in the structure and function of complex I and give insight into the pathogenic mechanism of NDUFS4 gene mutations in a severe defect of complex I."	"Genotyping microsatellite DNA markers at putative disease loci in inbred/multiplex families with respiratory chain complex I deficiency allows rapid identification of a novel nonsense mutation (IVS1nt -1) in the NDUFS4 gene in Leigh syndrome. Complex I deficiency, the most common cause of mitochondrial disorders, accounts for a variety of clinical symptoms and its genetic heterogeneity makes identification of the disease genes particularly tedious. Indeed, most of the 43 complex I subunits are encoded by nuclear genes, only seven of them being mitochondrially encoded. In order to offer urgent prenatal diagnosis, we have studied an inbred/multiplex family with complex I deficiency by using microsatellite DNA markers flanking the putative disease loci. Microsatellite DNA markers have allowed us to exclude the NDUFS7, NDUFS8, NDUFV1 and NDUFS1 genes and to find homozygosity at the NDUFS4 locus. Direct sequencing has led to identification of a homozygous splice acceptor site mutation in intron 1 of the NDUFS4 gene (IVS1nt -1, G--&gt;A); this was not found in chorion villi of the ongoing pregnancy. We suggest that genotyping microsatellite DNA markers at putative disease loci in inbred/multiplex families helps to identify the disease-causing mutation. More generally, we suggest giving consideration to a more systematic microsatellite analysis of putative disease loci for identification of disease genes in inbred/multiplex families affected with genetically heterogeneous conditions."	"Complex I and the cAMP cascade in human physiopathology. A cAMP-dependent protein kinase (PKA) is localized in mammalian mitochondria with the catalytic site at the matrix side of the membrane where it phosphorylates a number of proteins. One of these is the 18 kDa(IP) subunit of the mammalian complex I of the respiratory chain, encoded by the nuclear NDUFS4 gene. Mitochondria have a Ca(2+)-inhibited phosphatase, which dephosphorylates the 18 kDa phosphoprotein of complex I. In fibroblast and myoblast cultures cAMP-dependent phosphorylation of the 18 kDa protein is associated with stimulation of complex I and overall respiratory activity with NAD-linked substrates. Mutations in the human NDUFS4 gene have been found, which in the homozygous state are associated with deficiency of complex I and fatal neurological syndrome."	"The NDUFS4 nuclear gene of complex I of mitochondria and the cAMP cascade. Results of studies on the role of the 18 kDa (IP) polypeptide subunit of complex I, encoded by the nuclear NDUFS4 gene, in isolated bovine heart mitochondria and human and murine cell cultures are presented.The mammalian 18 kDa subunit has in the carboxy-terminal sequence a conserved consensus site (RVS), which in isolated mitochondria is phosphorylated by cAMP-dependent protein kinase (PKA). The catalytic and regulatory subunits of PKA have been directly immunodetected in the inner membrane/matrix fraction of mammalian mitochondria. In the mitochondrial inner membrane a PP2Cgamma-type phosphatase has also been immunodetected, which dephosphorylates the 18 kDa subunit, phosphorylated by PKA. This phosphatase is Mg(2+)-dependent and inhibited by Ca(2+). In human and murine fibroblast and myoblast cultures &quot;in vivo&quot;, elevation of intracellular cAMP level promotes phosphorylation of the 18 kDa subunit and stimulates the activity of complex I and NAD-linked mitochondrial respiration. Four families have been found with different mutations in the cDNA of the NDUFS4 gene. These mutations, transmitted by autosomal recessive inheritance, were associated in homozygous children with fatal neurological syndrome. All these mutations destroyed the phosphorylation consensus site in the C terminus of the 18 kDa subunit, abolished cAMP activation of complex I and impaired its normal assembly."	"[Complex I deficiency due to mutations in nuclear-encoded subunit genes]. NA"	"Mutations in human nuclear genes encoding for subunits of mitochondrial respiratory complex I: the NDUFS4 gene. Among the mitochondrial disorders, complex I deficiencies are encountered frequently. Although some complex I deficiencies have been associated with mitochondrial DNA mutations, in the majority of the complex I-deficient patients mutations of nuclear genes are expected. This review attempts to summarize genetic defects affecting nuclear encoded subunits of complex I reported to date focusing on those found in the NDUFS4 gene. NDUFS4 product is 18 kDa protein which appears to have a dual role in complex I, at least: cAMP-dependent phosphorylation activates the complex; non-sense mutation of NDUFS4 prevents normal assembly of a functional complex in the inner mitochondrial membrane."	"Control of oxygen free radical formation from mitochondrial complex I: roles for protein kinase A and pyruvate dehydrogenase kinase. Human NADH CoQ oxidoreductase is composed of a total of 43 subunits and has been demonstrated to be a major site for the production of superoxide by mitochondria. Incubation of rat heart mitochondria with ATP resulted in the phosphorylation of two mitochondrial membrane proteins, one with a M(r) of 6 kDa consistent with the NDUFA1 (MWFE), and one at 18kDa consistent with either NDUFS4 (AQDQ) or NDUFB7 (B18). Phosphorylation of both subunits was enhanced by cAMP derivatives and protein kinase A (PKA) and was inhibited by PKA inhibitors (PKAi). When mitochondrial membranes were incubated with pyruvate dehydrogenase kinase, phosphorylation of an 18kDa protein but not a 6kDa protein was observed. NADH cytochrome c reductase activity was decreased and superoxide production rates with NADH as substrate were increased. On the other hand, with protein kinase A-driven phosphorylation, NADH cytochrome c reductase was increased and superoxide production decreased. Overall there was a 4-fold variation in electron transport rates observable at the extremes of these phosphorylation events. This suggests that electron flow through complex I and the production of oxygen free radicals can be regulated by phosphorylation events. In light of these observations we discuss a potential model for the dual regulation of complex I and the production of oxygen free radicals by both PKA and PDH kinase."	"The NADH: ubiquinone oxidoreductase (complex I) of the mammalian respiratory chain and the cAMP cascade. Recent work has revealed cAMP-dependent phosphorylation of the 18-kDa IP subunit of the mammalian complex I of the respiratory chain, encoded by the nuclear NDUFS4 gene (chromosome 5). Phosphorylation of this protein has been shown to take place in fibroblast cultures in vivo, as well as in isolated mitochondria, which in addition to the cytosol also contain, in the inner-membrane matrix fraction, a cAMP-dependent protein kinase. Mitochondria appear to have a Ca2+-inhibited phosphatase, which dephosphorylates the 18-kDa phosphoprotein. In fibroblast and myoblast cultures cAMP-dependent phosphorylation of the 18-kDa protein is associated with potent stimulation of complex I and overall respiratory activity with NAD-linked substrates. Mutations in the human NDUFS4 gene have been found, which in the homozygous state are associated with deficiency of complex I and fatal neurological syndrome. In one case consisting of a 5 bp duplication, which destroyed the phosphorylation site, cAMP-dependent activation of complex I was abolished in the patient's fibroblast cultures. In another case consisting of a nonsense mutation, leading to termination of the protein after only 14 residues of the putative mitochondria targeting peptide, a defect in the assembly of complex I was found in fibroblast cultures."	"Serine (threonine) phosphatase(s) acting on cAMP-dependent phosphoproteins in mammalian mitochondria. Immunochemical and functional evidence showing the existence in the inner membrane and matrix fraction of mammalian mitochondria of serine/threonine phosphatases acting on cAMP-dependent phosphoproteins is presented. Mg(2+)-dependent Ca(2+)-inhibitable PP2C phosphatase, associated to the inner membrane, dephosphorylates the 18 kDa (NDUFS4 gene) of complex I."	"Cyclic adenosine monophosphate-dependent phosphorylation of mammalian mitochondrial proteins: enzyme and substrate characterization and functional role. A study is presented on cyclic adenosine monophosphate- (cAMP-) dependent phosphorylation of mammalian mitochondrial proteins. Immunodetection with specific antibodies reveals the presence of the catalytic and the regulatory subunits of cAMP-dependent protein kinase (PKA) in the inner membrane and matrix of bovine heart mitochondria. The mitochondrial cAMP-dependent protein kinase phosphorylates mitochondrial proteins of 29, 18, and 6.5 kDa. With added histone as substrate, PKA exhibits affinities for ATP and cAMP and pH optimum comparable to those of the cytosolic PKA. Among the mitochondrial proteins phosphorylated by PKA, one is the nuclear-encoded (NDUFS4 gene) 18 kDa subunit of complex I, which has phosphorylation consensus sites in the C terminus and in the presequence. cAMP promotes phosphorylation of the 18 kDa subunit of complex I in myoblasts in culture and in their isolated mitoplast fraction. In both cases cAMP-dependent phosphorylation of the 18 kDa subunit of complex I is accompanied by enhancement of the activity of the complex. These results, and the finding of mutations in the NDUFS4 gene in patients with complex I deficiency, provide evidence showing that cAMP-dependent phosphorylation of the 18 kDa subunit of complex I plays a major role in the control of the mitochondrial respiratory activity."	"A nonsense mutation in the NDUFS4 gene encoding the 18 kDa (AQDQ) subunit of complex I abolishes assembly and activity of the complex in a patient with Leigh-like syndrome. Sequence analysis of mitochondrial and nuclear candidate genes of complex I in children with deficiency of this complex and exhibiting Leigh-like syndrome has revealed, in one of them, a novel mutation in the NDUFS4 gene encoding the 18 kDa subunit. Phosphorylation of this subunit by cAMP-dependent protein kinase has previously been found to activate the complex. The present mutation consists of a homozygous G--&gt;A transition at nucleotide position +44 of the coding sequence of the gene, resulting in the change of a tryptophan codon to a stop codon. Such mutation causes premature termination of the protein after only 14 amino acids of the putative mitochondrial targeting peptide. Fibroblast cultures from the patient exhibited severe reduction of the rotenone-sensitive NADH--&gt;UQ oxidoreductase activity of complex I, which was insensitive to cAMP stimulation. Two-dimensional electrophoresis showed the absence of detectable normally assembled complex I in the inner mitochondrial membrane. These findings show that the expression of the NDUFS4 gene is essential for the assembly of a functional complex I."	"Mutation in the NDUFS4 gene of complex I abolishes cAMP-dependent activation of the complex in a child with fatal neurological syndrome. Evidence is presented showing that in a patient with fatal neurological syndrome, the homozygous 5 bp duplication in the cDNA of the NDUFS4 18 kDa subunit of complex I abolishes cAMP-dependent phosphorylation of this protein and activation of the complex. These findings show for the first time that human complex I is regulated via phosphorylation of the subunit encoded by the NDUFS4 gene."	"Human complex I defects can be resolved by monoclonal antibody analysis into distinct subunit assembly patterns. Complex I defects are one of the most frequent causes of mitochondrial respiratory chain disorders. Therefore, it is important to find new approaches for detecting and characterizing Complex I deficiencies. In this paper, we introduce a new set of monoclonal antibodies that react with 39-, 30-, 20-, 18-, 15-, and 8-kDa subunits of Complex I. These antibodies are shown to aid in diagnosis of Complex I deficiencies and add understanding to the genotype-phenotype relationships of different mutations. A total of 11 different patients were examined. Four patients had undefined Complex I defects, whereas the other patients had defects in NDUFV1, NDUFS2 (two patients), NDUFS4 (two patients), NDUFS7, and NDUFS8. We show here that Western blotting with these antibodies, particularly when used in conjunction with sucrose gradient studies and enzymatic activity measurements, helps distinguish catalytic versus assembly defects and further distinguishes between mutations in different subunits. Furthermore, different mutations in the same gene are shown to give very similar subunit profiles, and we show that one of the patients is a good candidate for having a defect in a Complex I assembly factor."	"Combined enzymatic complex I and III deficiency associated with mutations in the nuclear encoded NDUFS4 gene. Combined OXPHOS-system enzyme deficiencies are observed in approximately 25% of all OXPHOS-system disturbances. Of these, combined complex I and III deficiency is relatively scarce. So far, only mtDNA and thymidine phosphorylase (TP) mutations have been associated with combined OXPHOS-system disturbances. In this report we show, for the first time, that a nuclear gene mutation in a structural, nuclear encoded complex I gene is associated with combined complex I and III deficiency. After our initial report we describe mutations in the NDUFS4 gene of complex I in two additional patients. The first mutation is a deletion of G at position 289 or 290. Amino acid 96 changes from a tryptophan to a stop codon. The mutation was found homozygous in the patient; both parents are heterozygous for the mutation. The second mutation is a transition from C to T at cDNA position 316. Codon is changed from CGA (arginine) to TGA (stop). The patient is homozygous for the mutation; both parents are heterozygous. Both mutations in the NDUFS4 gene led to a premature stop in Leigh-like patients with an early lethal phenotype. We hypothesise that the structural integrity of the OXPHOS system, in mammal supermolecular structures, may be responsible for the observed biochemical features."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NDUFV1"	"Leigh syndrome"	"Perm1 regulates cardiac energetics as a downstream target of the histone methyltransferase Smyd1. The transcriptional regulatory machinery in mitochondrial bioenergetics is complex and is still not completely understood. We previously demonstrated that the histone methyltransferase Smyd1 regulates mitochondrial energetics. Here, we identified Perm1 (PPARGC-1 and ESRR-induced regulator, muscle specific 1) as a downstream target of Smyd1 through RNA-seq. Chromatin immunoprecipitation assay showed that Smyd1 directly interacts with the promoter of Perm1 in the mouse heart, and this interaction was significantly reduced in mouse hearts failing due to pressure overload for 4 weeks, where Perm1 was downregulated (24.4 ± 5.9% of sham, p&lt;0.05). Similarly, the Perm1 protein level was significantly decreased in patients with advanced heart failure (55.2 ± 13.1% of donors, p&lt;0.05). Phenylephrine (PE)-induced hypertrophic stress in cardiomyocytes also led to downregulation of Perm1 (55.7 ± 5.7% of control, p&lt;0.05), and adenovirus-mediated overexpression of Perm1 rescued PE-induced downregulation of estrogen-related receptor alpha (ERRα), a key transcriptional regulator of mitochondrial energetics, and its target gene, Ndufv1 (Complex I). Pathway enrichment analysis of cardiomyocytes in which Perm1 was knocked-down by siRNA (siPerm1), revealed that the most downregulated pathway was metabolism. Cell stress tests using the Seahorse XF analyzer showed that basal respiration and ATP production were significantly reduced in siPerm1 cardiomyocytes (40.7% and 23.6% of scrambled-siRNA, respectively, both p&lt;0.05). Luciferase reporter gene assay further revealed that Perm1 dose-dependently increased the promoter activity of the ERRα gene and known target of ERRα, Ndufv1 (Complex I). Overall, our study demonstrates that Perm1 is an essential regulator of cardiac energetics through ERRα, as part of the Smyd1 regulatory network."	"Targeting Human Lung Adenocarcinoma with a Suppressor of Mitochondrial Superoxide Production.  Aims:  REDOX signaling from reactive oxygen species (ROS) generated by the mitochondria (mitochondrial reactive oxygen species [mtROS]) has been implicated in cancer growth and survival. Here, we investigated the effect of 5-(4-methoxyphenyl)-3H-1,2-dithiole-3-thione (AOL), a recently characterized member of the new class of mtROS suppressors (S1QELs), on human lung adenocarcinoma proteome reprogramming, bioenergetics, and growth.  Results:  AOL reduced steady-state cellular ROS levels in human lung cancer cells without altering the catalytic activity of complex I. AOL treatment induced dose-dependent inhibition of lung cancer cell proliferation and triggered a reduction in tumor growth in vivo. Molecular investigations demonstrated that AOL reprogrammed the proteome of human lung cancer cells. In particular, AOL suppressed the determinants of the Warburg effect and increased the expression of the complex I subunit NDUFV1 which was also identified as AOL binding site using molecular modeling computer simulations. Comparison of the molecular changes induced by AOL and MitoTEMPO, an mtROS scavenger that is not an S1QEL, identified a core component of 217 proteins commonly altered by the two treatments, as well as drug-specific targets.  Innovation:  This study provides proof-of-concept data on the anticancer effect of AOL on mouse orthotopic human lung tumors. A unique dataset on proteomic reprogramming by AOL and MitoTEMPO is also provided. Lastly, our study revealed the repression of NDUFV1 by S1QEL AOL.  Conclusion:  Our findings demonstrate the preclinical anticancer properties of S1QEL AOL and delineate its mode of action on REDOX and cancer signaling."	"Clinical and molecular characterization of pediatric mitochondrial disorders in south of China. Mitochondrial disorders (MDs) are genetic ailments affecting all age groups. Epidemiological data and frequencies of gene mutations in pediatric patients in China are scarce. This retrospective study assessed 101 patients with suspected MDs treated at the Neurology Department of Children's Hospital, Fudan University, in 2011-2017. Mitochondrial (mtDNA) and nuclear (nDNA) samples were assessed by long-range polymerase chain reaction (PCR)-based whole mtDNA sequencing and whole exome sequencing (WES) for identifying pathogenic mutations. Muscle samples underwent various staining protocols and immunofluorescence for detecting selected proteins. Seventeen mutations in the MT-TL1, MT-COX2, MT-ND4, MT, tRNA TRNE, MT-TN, MT-TK, MT-ATP6, MT-ND6, MT-ND3 and MT-CO3 genes were identified in 39 patients, of which m.3243A &gt; G, m.3303C &gt; T, m.8993T &gt; C/G, m.9176T &gt; C, and m.10191T &gt; C were most common. Mitochondrial myopathy and MELAS were most common for m.3243A &gt; G mutation. Four novel mutations were detected, including m.9478insT, m.5666T &gt; C, m.8265T &gt; C, and m.8380-13600 deletion mutations related to Leigh syndrome, mitochondrial myopathy and KSS, respectively. Thirty-three mutations in the TK2, POLG, IBA57, HADHB, FBXL4, ALDH5A1, FOXRED1, TPK1, NDUFAF5, NDUFAF7, NDUFV1, CARS2, PDHA1, and HIBCH genes were identified in 19 patients, including 23 currently unknown. Higher rates of TK2, POLG, IBA57, and HADHB mutations were found in nDNA-mutated MD compared with the remaining individuals. Besides, IBA57 c.286T &gt; C (p.Y96H), TK2 c.497A &gt; T (p.D166V) founder mutations critically contributed to MDs. Comprehensive genomic analysis plays a critical role in pediatric MD diagnosis. These data summarize the relative frequencies of different gene mutations in a large Chinese population, and identified 23 novel MD-associated nDNA and 4 novel mtDNA mutations."	"NDUFS4 deletion triggers loss of NDUFA12 in Ndufs4<sup>-/-</sup> mice and Leigh syndrome patients: A stabilizing role for NDUFAF2. Mutations in NDUFS4, which encodes an accessory subunit of mitochondrial oxidative phosphorylation (OXPHOS) complex I (CI), induce Leigh syndrome (LS). LS is a poorly understood pediatric disorder featuring brain-specific anomalies and early death. To study the LS pathomechanism, we here compared OXPHOS proteomes between various Ndufs4<sup>-/-</sup> mouse tissues. Ndufs4<sup>-/-</sup> animals displayed significantly lower CI subunit levels in brain/diaphragm relative to other tissues (liver/heart/kidney/skeletal muscle), whereas other OXPHOS subunit levels were not reduced. Absence of NDUFS4 induced near complete absence of the NDUFA12 accessory subunit, a 50% reduction in other CI subunit levels, and an increase in specific CI assembly factors. Among the latter, NDUFAF2 was most highly increased. Regarding NDUFS4, NDUFA12 and NDUFAF2, identical results were obtained in Ndufs4<sup>-/-</sup> mouse embryonic fibroblasts (MEFs) and NDUFS4-mutated LS patient cells. Ndufs4<sup>-/-</sup> MEFs contained active CI in situ but blue-native-PAGE highlighted that NDUFAF2 attached to an inactive CI subcomplex (CI-830) and inactive assemblies of higher MW. In NDUFA12-mutated LS patient cells, NDUFA12 absence did not reduce NDUFS4 levels but triggered NDUFAF2 association to active CI. BN-PAGE revealed no such association in LS patient fibroblasts with mutations in other CI subunit-encoding genes where NDUFAF2 was attached to CI-830 (NDUFS1, NDUFV1 mutation) or not detected (NDUFS7 mutation). Supported by enzymological and CI in silico structural analysis, we conclude that absence of NDUFS4 induces near complete absence of NDUFA12 but not vice versa, and that NDUFAF2 stabilizes active CI in Ndufs4<sup>-/-</sup> mice and LS patient cells, perhaps in concert with mitochondrial inner membrane lipids."	"Genetic heterogeneity in Leigh syndrome: Highlighting treatable and novel genetic causes. Leigh syndrome (LS), the most common childhood mitochondrial disorder, has characteristic clinical and neuroradiologic features. Mutations in more than 75 genes have been identified in both the mitochondrial and nuclear genome, implicating a high degree of genetic heterogeneity in LS. To profile these genetic signatures and understand the pathophysiology of LS, we recruited 64 patients from 62 families who were clinically diagnosed with LS at Seoul National University Children's Hospital. Mitochondrial genetic analysis followed by whole-exome sequencing was performed on 61 patients. Pathogenic variants in mitochondrial DNA were identified in 18 families and nuclear DNA mutations in 22. The following 17 genes analyzed in 40 families were found to have genetic complexity: MTATP6, MTND1, MTND3, MTND5, MTND6, MTTK, NDUFS1, NDUFV1, NDUFAF6, SURF1, SLC19A3, ECHS1, PNPT1, IARS2, NARS2, VPS13D, and NAXE. Two treatable cases had biotin-thiamine responsive basal ganglia disease, and another three were identified as having defects in the newly recognized genes (VPS13D or NAXE). Variants in the nuclear genes that encoded mitochondrial aminoacyl tRNA synthetases were present in 27.3% of cases. Our findings expand the genetic and clinical spectrum of LS, showing genetic heterogeneity and highlighting treatable cases and those with novel genetic causes."	"Solvent-Induced Protein Precipitation for Drug Target Discovery on the Proteomic Scale. High-throughput drug discovery is highly dependent on the targets available to accelerate the process of candidates screening. Traditional chemical proteomics approaches for the screening of drug targets usually require the immobilization/modification of the drug molecules to pull down the interacting proteins. Recently, energetics-based proteomics methods provide an alternative way to study drug-protein interaction by using complex cell lysate directly without any modification of the drugs. In this study, we developed a novel energetics-based proteomics strategy, the solvent-induced protein precipitation (SIP) approach, to profile the interaction of drugs with their target proteins by using quantitative proteomics. The method is easy to use for any laboratory with the common chemical reagents of acetone, ethanol, and acetic acid. The SIP approach was able to identify the well-known protein targets of methotrexate, SNS-032, and a pan-kinase inhibitor of staurosporine in cell lysate. We further applied this approach to discover the off-targets of geldanamycin. Three known protein targets of the HSP90 family were successfully identified, and several potential off-targets including NADH dehydrogenase subunits NDUFV1 and NDUFAB1 were identified for the first time, and the NDUFV1 was validated by using Western blotting. In addition, this approach was capable of evaluating the affinity of the drug-target interaction. The data collectively proved that our approach provides a powerful platform for drug target discovery."	"Bilateral Calcification of Basal Ganglia in a Patient with Duplication of Both 11q13.1q22.1 and 4q35.2 with New Phenotypic Features. We report on a female patient who presented with severe intellectual disability and autistic behavior, dysmorphic features, orodental anomalies, and bilateral calcification of basal ganglia. Using a high-density oligonucleotide microarray, we have identified a de novo duplication of 11q13.1q22.1 involving the dosage sensitive genes FGF3 and FGF4, genes related to autosomal dominant disorders KMT5B, GAL, SPTBN2, and LRP5, susceptibility loci SCZD2, SLEH1, and SHANK2, mitochondrial genes NDUFV1, NDUFS8, and TMEM126B, and many loss of function genes, including PHOX2A, CLPB, MED17, B3GNT1, LIPT2, and CLPB. However, the duplication did not involve Ribonuclease H2, subunit C (RNASEH2C) which is considered to be located in the critical region for Aicardi-Goutières syndrome. In combination with the duplication at 11q13.1, a 1.849-Mb heterozygous duplication at 4q35.2 was also identified. Although this duplicated region does not contain causative genes related to brain calcification, the duplication at 4q35 was reported previously in a patient with basal ganglia calcification, coats' like retinopathy, and glomerulosclerosis. Our patient's presentation and genomic findings indicate that duplication of 4q35.2 could be a novel genetic cause of calcification of basal ganglia. Our report also underscores the clinical significance of rearrangements in 11q13.1q22.1 in the pathogenesis of basal ganglia calcification."	"Human muscle pathology is associated with altered phosphoprotein profile of mitochondrial proteins in the skeletal muscle. Analysis of human muscle diseases highlights the role of mitochondrial dysfunction in the skeletal muscle. Our previous work revealed that diverse upstream events correlated with altered mitochondrial proteome in human muscle biopsies. However, several proteins showed relatively unchanged expression suggesting that post-translational modifications, mainly protein phosphorylation could influence their activity and regulate mitochondrial processes. We conducted mitochondrial phosphoprotein profiling, by proteomics approach, of healthy human skeletal muscle (n = 10) and three muscle diseases (n = 10 each): Dysferlinopathy, Polymyositis and Distal Myopathy with Rimmed Vacuoles. Healthy human muscle mitochondrial proteins displayed 253 phosphorylation sites (phosphosites), which contributed to metabolic and redox processes and mitochondrial organization etc. Electron transport chain complexes accounted for 84 phosphosites. Muscle pathologies displayed 33 hyperphosphorylated and 14 hypophorphorylated sites with only 5 common proteins, indicating varied phosphorylation profile across muscle pathologies. Molecular modelling revealed altered local structure in the phosphorylated sites of Voltage-Dependent Anion Channel 1 and complex V subunit ATP5B1. Molecular dynamics simulations in complex I subunits NDUFV1, NDUFS1 and NDUFV2 revealed that phosphorylation induced structural alterations thereby influencing electron transfer and potentially altering enzyme activity. We propose that altered phosphorylation at specific sites could regulate mitochondrial protein function in the skeletal muscle during physiological and pathological processes."	"Phenotype of NDUFV1-related Disease. NA"	"Tissue Proteome Signatures Associated with Five Grades of Prostate Cancer and Benign Prostatic Hyperplasia. The histology-based Gleason score (GS) of prostate cancer (PCa) tissue biopsy is the most accurate predictor of disease aggressiveness and an important measure to guide treatment strategies and patient management. The variability associated with PCa tumor sampling and the subjective determination of the GS are challenges that limit accurate diagnostication and prognostication. Thus, novel molecular signatures are needed to distinguish between indolent and aggressive forms of PCa for better patient management and outcomes. Herein, label-free LC-MS/MS proteomics is used to profile the proteome of 50 PCa tissues spanning five grade groups (n = 10 per group) relative to tissues from individuals with benign prostatic hyperplasia (BPH). Over 2000 proteins are identified albeit at different levels between and within the patient groups, revealing biological processes associated with specific grades. A panel of 11 prostate-derived proteins including IGKV3D-20, RNASET2, TACC2, ANXA7, LMOD1, PRCP, GYG1, NDUFV1, H1FX, APOBEC3C, and CTSZ display the potential to stratify patients from low and high PCa grade groups. Parallel reaction monitoring of the same sample cohort validate the differential expression of LMOD1, GYG1, IGKV3D-20, and RNASET2. The four proteins associated with low and high PCa grades reported here warrant further exploration as candidate biomarkers for PCa aggressiveness."	"Identification of Temporal Characteristic Networks of Peripheral Blood Changes in Alzheimer's Disease Based on Weighted Gene Co-expression Network Analysis. Alzheimer's disease (AD) is a progressive neurodegenerative disease. The study of blood-based biomarkers has lasted for a long time in AD, because it supports the concept that peripheral changes are involved in AD pathology. But it is still unclear how peripheral blood is involved in the temporal characteristic molecular mechanisms of AD from aging to mild cognitive impairment (MCI) and which cells are responsible for the molecular mechanisms. The main purpose of our study is to gain a systematic and comprehensive understanding of temporal characteristic networks of peripheral blood in AD using whole blood samples with 329 case-control samples, including 104 normal elderly control subjects (CTL), 80 MCI who are susceptible to AD, and 145 AD, by the weighted gene co-expression network analysis (WGCNA). The module-trait relationships were constructed and module preservation was validated with independent datasets GSE63061, GSE97760, GSE18309, GSE29378, GSE28146, and GSE29652. Our results indicate that the down-regulated protein modification and ubiquitin degradation systems, and the up-regulated insulin resistance both play a major role in MCI, while the up-regulated inflammatory cascade dominates in AD, which is mainly mediated by monocytes, macrophages. Although there is mixed activation of M1 and M2 macrophages in all stages of AD, the immune neutral state or M2 polarization may predominate in MCI, and M1 polarization may predominate in AD. Moreover, we found that TRPV2, NDUFV1, ATF4, HSPA8, STAT3 and LUC7L3 may mediate the pathological changes in MCI, while SIRPA, LAMP-2, NDUFB5, HSPA8, STAT3 and FPR2 may mediate the conversion from MCI-AD or the pathological changes in AD, which provide a basis for the treatment based on the peripheral blood system. In addition, we also found that the combined diagnosis based on a panel of genes from the red, blue, and brown modules have a moderate diagnostic effect on distinguishing MCI and AD from CTL, suggesting that those panels of genes may be used for detection of MCI and prediction of this conversion from MCI to AD. Our research emphasizes that pathological changes, based on temporal characteristics of peripheral blood, provide a theoretical basis for targeted peripheral treatment based on appropriate times and identified several diagnostic markers."	"A Drosophila Mitochondrial Complex I Deficiency Phenotype Array. Mitochondrial diseases are a group of rare life-threatening diseases often caused by defects in the oxidative phosphorylation system. No effective treatment is available for these disorders. Therapeutic development is hampered by the high heterogeneity in genetic, biochemical, and clinical spectra of mitochondrial diseases and by limited preclinical resources to screen and identify effective treatment candidates. Alternative models of the pathology are essential to better understand mitochondrial diseases and to accelerate the development of new therapeutics. The fruit fly Drosophila melanogaster is a cost- and time-efficient model that can recapitulate a wide range of phenotypes observed in patients suffering from mitochondrial disorders. We targeted three important subunits of complex I of the mitochondrial oxidative phosphorylation system with the flexible UAS-Gal4 system and RNA interference (RNAi): NDUFS4 (ND-18), NDUFS7 (ND-20), and NDUFV1 (ND-51). Using two ubiquitous driver lines at two temperatures, we established a collection of phenotypes relevant to complex I deficiencies. Our data offer models and phenotypes with different levels of severity that can be used for future therapeutic screenings. These include qualitative phenotypes that are amenable to high-throughput drug screening and quantitative phenotypes that require more resources but are likely to have increased potential and sensitivity to show modulation by drug treatment."	"Teaching NeuroImages: MRI findings in an infant with cavitating leukoencephalopathy. NA"	"Genotypic Spectrum and Natural History of Cavitating Leukoencephalopathies in Childhood. We aimed to delineate the pattern of natural course, neuroimaging features, and the genotypic spectrum of cavitating leukoencephalopathies. Children (age of onset ≤16 years) who met the criteria for cavitating leukoencephalopathies from January 2009 to October 2018 were identified. Whole-exome sequencing and prospective follow-up study of the natural history and brain magnetic resonance imaging (MRI) were performed. Thirty-seven children were clinically diagnosed with cavitating leukoencephalopathies. Pathogenic or likely pathogenic mutations in eight genes were identified in 31 individuals (83.78%): IBA57 (17/37), NDUFS1 (5/37), NDUFV1 (2/37), NDUFV2 (3/37), NDUFAF5 (1/37), LYRM7 (1/37), NDUFB8 (1/37), and GLRX5 (1/37). All genes were engaged in mitochondrial function. IBA57 was identified in half of children. Mutations in NDUFV2, NDUFAF5, NDUFB8, or GLRX5 were first found to be related to cavitating leukoencephalopathies. Follow-up with a median of 23.5 months (four to 107 months) was available. The median age at disease onset was 11 months. All cases presented acute or subacute onset, and the initial presentation was rapid motor regression in 35 cases. Thirty-five children (35/37) exhibited a stabilized or improved pattern. Cavities and high-intensity diffusion-weighted imaging signals were the common MRI features during the acute stage. Although clinically stable, 21 children had reserved high diffusion-weighted imaging signals for a long time. Patients with different gene mutations show different MRI patterns. The study expands the number of genes involved in cavitating leukoencephalopathies to 22. IBA57 is the most common candidate gene. Most cases showed a stabilized or improved pattern after an acute or subacute onset, which is different from most other inherited metabolic diseases or leukodystrophies. More cases and a longer follow-up period are needed."	"Correlations between Histological and Array Comparative Genomic Hybridization Characterizations of Wilms Tumor. Wilms tumor, or nephroblastoma, is the most common pediatric renal malignancy. Its diagnosis is principally based on histology. Several genetic loci have been shown to be associated with Wilms tumor formation, including WT1, WT2, FWT1, FWT2, CTNNB1, WTX, and TP53. Other loci, such as 1p, 2q, 7p, 9q, 12q, 14q, 16q, 17p, and 22, have also been implicated in the etiology of Wilms tumor. The aim of this study is to elucidate the molecular pathogenesis of this tumor. In the present study, we analyzed the histological appearance and copy number aberrations using array comparative genomic hybridization of six Wilms tumors without somatic mutation in the WT1 gene. Many chromosomal aberrations on array comparative genomic hybridization analysis revealed that the genetics of Wilms tumors are extremely complex. Amplifications and deletions of large DNA fragments were observed in some samples. Amplifications of NDUFV1, ZIC2, SIX1, NR2F2, MIR1469, SOX9, JAG1, MIR6870, and GNAS were found in all six Wilms tumors. Moreover, amplifications of five genes were identified in the Wilms tumors of stromal type and amplifications of at least 10 genes were identified in the Wilms tumors of epithelial type. Our results indicated that amplifications of nine genes are the essential events in the tumorigenesis of Wilms tumor, which may inform its clinical and therapeutic management. In addition, mixed type Wilms tumor may be the heterogeneous group able to be classified using genetic results of epithelial and stromal components based on immunohistochemistry."	"Rescue from galactose-induced death of Leigh Syndrome patient cells by pyruvate and NAD<sup>.</sup> Cell models of mitochondrial complex I (CI) deficiency display activation of glycolysis to compensate for the loss in mitochondrial ATP production. This adaptation can mask other relevant deficiency-induced aberrations in cell physiology. Here we investigated the viability, mitochondrial morphofunction, ROS levels and ATP homeostasis of primary skin fibroblasts from Leigh Syndrome (LS) patients with isolated CI deficiency. These cell lines harbored mutations in nuclear DNA (nDNA)-encoded CI genes (NDUFS7, NDUFS8, NDUFV1) and, to prevent glycolysis upregulation, were cultured in a pyruvate-free medium in which glucose was replaced by galactose. Following optimization of the cell culture protocol, LS fibroblasts died in the galactose medium, whereas control cells did not. LS cell death was dose-dependently inhibited by pyruvate, malate, oxaloacetate, α-ketoglutarate, aspartate, and exogenous NAD<sup>+</sup> (eNAD), but not by lactate, succinate, α-ketobutyrate, and uridine. Pyruvate and eNAD increased the cellular NAD<sup>+</sup> content in galactose-treated LS cells to a different extent and co-incubation studies revealed that pyruvate-induced rescue was not primarily mediated by NAD<sup>+</sup>. Functionally, in LS cells glucose-by-galactose replacement increased mitochondrial fragmentation and mass, depolarized the mitochondrial membrane potential (Δψ), increased H2DCFDA-oxidizing ROS levels, increased mitochondrial ATP generation, and reduced the total cellular ATP content. These aberrations were differentially rescued by pyruvate and eNAD, supporting the conclusion that these compounds rescue galactose-induced LS cell death via different mechanisms. These findings establish a cell-based strategy for intervention testing and enhance our understanding of CI deficiency pathophysiology."	"Papaverine and its derivatives radiosensitize solid tumors by inhibiting mitochondrial metabolism. Tumor hypoxia reduces the effectiveness of radiation therapy by limiting the biologically effective dose. An acute increase in tumor oxygenation before radiation treatment should therefore significantly improve the tumor cell kill after radiation. Efforts to increase oxygen delivery to the tumor have not shown positive clinical results. Here we show that targeting mitochondrial respiration results in a significant reduction of the tumor cells' demand for oxygen, leading to increased tumor oxygenation and radiation response. We identified an activity of the FDA-approved drug papaverine as an inhibitor of mitochondrial complex I. We also provide genetic evidence that papaverine's complex I inhibition is directly responsible for increased oxygenation and enhanced radiation response. Furthermore, we describe derivatives of papaverine that have the potential to become clinical radiosensitizers with potentially fewer side effects. Importantly, this radiosensitizing strategy will not sensitize well-oxygenated normal tissue, thereby increasing the therapeutic index of radiotherapy."	"Cystic Leucoencephalopathy in NDUFV1 Mutation: Correspondence. NA"	"Late-Onset Leigh Syndrome due to NDUFV1 Mutation in a 10-Year-Old Boy Initially Presenting with Ataxia. Leigh syndrome (LS) is a progressive neurodegenerative disease caused by either mitochondrial or nuclear DNA mutations resulting in dysfunctional mitochondrial energy metabolism. The onset of clinical features is typically between 3 and 12 months of age; however, a later onset has been described in a few patients. Complex I deficiency is reported to be the most common cause of mitochondrial disorders. We described a patient with a late-onset LS, who presented with gait ataxia, caused by complex I deficiency (NDUFV1 gene)."	"Genetic diversity of NDUFV1-dependent mitochondrial complex I deficiency. Medical genomics research performed in diverse population facilitates a better understanding of the genetic basis of developmental disorders, with regional implications for community genetics. Autosomal recessive mitochondrial complex I deficiency (MCID) accounts for a constellation of clinical features, including encephalopathies, myopathies, and Leigh Syndrome. Using whole-exome sequencing, we identified biallelic missense variants in NDUFV1 that encodes the 51-kD subunit of complex I (NADH dehydrogenase) NDUFV1. Mapping the variants on published crystal structures of mitochondrial complex I demonstrate that the novel c.1118T &gt; C (p.(Phe373Ser)) variant is predicted to diminish the affinity of the active pocket of NDUFV1 for FMN that correlates to an early onset of debilitating MCID symptoms. The c.1156C &gt; T (p.(Arg386Cys)) variant is predicted to alter electron shuttling required for energy production and correlate to a disease onset in childhood. NDUFV1 c.1156C &gt; T (p.(Arg386Cys)) represents a founder variant in South Asian populations that have value in prioritizing this variant in a population-specific manner for genetic diagnostic evaluation. In conclusion, our results demonstrate the advantage of analyzing population-specific sequences to understand the disease pathophysiology and prevalence of inherited risk variants in the underrepresented populations."	"Cystic Leucoencephalopathy in NDUFV1 Mutation. Complex I deficiency is one of the most common mitochondrial respiratory chain defect. This deficiency of oxidative phosphorylation results from mutation in nuclear and mitochondrial DNA. Mutations in NDUFV1 (Flavin binding subunit of Respiratory complex 1) results in neurological manifestations including Leigh syndrome and leucoencephalopathy. The authors report a one-year-old boy with history of regression of motor milestones following a trivial fall from the bed. His magnetic resonance imaging revealed diffuse, cystic leucoencephalopathy involving corpus callosum and periventricular white matter. Clinical features and radiological findings may resemble those of vanishing white matter disease. Next generation sequencing revealed likely compound heterozygous missense pathogenic variant in exon 8 of NDUFV1 gene [c.1156C &gt; C/T (p.Arg386Cys)] and possibly novel splice site variation in intron 2 of NDUFV1 gene (c.155 + 1G &gt; G/A). NDUFV1 related leucoencephalopathy must be considered among those presenting with sudden onset of motor regression with neuroimaging correlate of diffuse cystic leucodystrophy."	"Proteomics Analysis Reveals Abnormal Electron Transport and Excessive Oxidative Stress Cause Mitochondrial Dysfunction in Placental Tissues of Early-Onset Preeclampsia. Early-onset preeclampsia (EOS-PE) refers to preeclampsia that occurred before 34 gestation weeks. This study is conducted to explore the relationship between mitochondrial dysfunction and the pathogenesis of EOS-PE using proteomic strategy. To identify altering expressed mitochondrial proteins between severe EOS-PE and healthy pregnancies, enrichment of mitochondria coupled with iTRAQ-based quantitative proteomic method is performed. Immunohistochemistry (IHC) and western blot are performed to detect the alteration of changing expression proteins, and confirmed the accuracy of proteomic results. A total of 1372 proteins were quantified and 132 altering expressed proteins were screened, including 86 downregulated expression proteins and 46 upregulated expression proteins (p &lt; 0.05). Bioinformatics analysis showed that differentially expressed proteins participated in numerous biological processes, including oxidation-reduction process, respiratory electron transport chain, and oxidative phosphorylation. Especially, mitochondria-related molecules, PRDX2, PARK7, BNIP3, BCL2, PDHA1, SUCLG1, ACADM, and NDUFV1, are involved in energy-production process in the matrix and membrane of mitochondria. Results of the experiment show that abnormal electron transport, excessive oxidative stress, and mitochondrion disassembly might be the main cause of mitochondrial dysfunction, and is related to the pathogenesis of EOS-PE."	"A Heterozygous NDUFV1 Variant Aggravates Mitochondrial Complex I Deficiency in a Family with a Homoplasmic ND1 Variant. We demonstrate that a heterozygous nuclear variant in the gene encoding mitochondrial complex I subunit NDUFV1 aggravates the cellular phenotype in the presence of a mitochondrial DNA variant in complex I subunit ND1. Our findings suggest that heterozygous variants could be more significant in inherited mitochondrial diseases than hitherto assumed."	"Mitochondrial leukoencephalopathies: A border zone between acquired and inherited white matter disorders in children? There is emerging evidence implicating mitochondrial dysfunction in the pathogenesis of acquired demyelinating disorders such as multiple sclerosis. On the other hand, some of the primary mitochondrial disorders such as mitochondrial leukoencephalopathies exhibit evidence of neuroinflammation on MRI. The inter-relationship between mitochondrial disorders and episodic CNS inflammation needs exploration because of the therapeutic implications. We sought to analyze the clinical course and MRI characteristics in a cohort of patients with mitochondrial leukoencephalopathy to determine features, if any, that mimic primary demyelinating disorders. Therapeutic implications of these findings are discussed. Detailed analysis of the clinical course, magnetic resonance imaging findings and therapeutic response was performed in 14 patients with mitochondrial leukoencephalopathy. The diagnosis was ascertained by clinical features, histopathology, respiratory chain enzyme assays and exome sequencing. Fourteen patients [Age at evaluation: 2-7 yrs, M: F-1:1] were included in the study. The genetic findings included variations in NDUFA1 (1); NDUFV1 (4); NDUFS2 (2); LYRM (2);MPV17(1); BOLA3(2); IBA57(2). Clinical Features which mimicked acquired demyelinating disorder included acute onset focal deficits associated with encephalopathy [10/14, 71%], febrile illness preceding the onset [7/14, 50%] unequivocal partial or complete steroid responsiveness [11/11], episodic/ relapsing remitting neurological dysfunction [10/14, 71%] and a subsequent stable rather than a progressive course [12/14, 85%]. MRI characteristics included confluent white matter lesions [14/14, 100%], diffusion restriction [11/14,78.5%], contrast enhancement [13/13,100%], spinal cord involvement [8/13,61.5%], lactate peak on MRS [13/13] and white matter cysts [13/14, 92.8%]. Clinical presentations of mitochondrial leukoencephalopathy often mimic an acquired demyelinating disorder. The therapeutic implications of these observations require further exploration."	"Evaluation of mitochondrial bioenergetics, dynamics, endoplasmic reticulum-mitochondria crosstalk, and reactive oxygen species in fibroblasts from patients with complex I deficiency. Mitochondrial complex I (CI) deficiency is the most frequent cause of oxidative phosphorylation (OXPHOS) disorders in humans. In order to benchmark the effects of CI deficiency on mitochondrial bioenergetics and dynamics, respiratory chain (RC) and endoplasmic reticulum (ER)-mitochondria communication, and superoxide production, fibroblasts from patients with mutations in the ND6, NDUFV1 or ACAD9 genes were analyzed. Fatty acid metabolism, basal and maximal respiration, mitochondrial membrane potential, and ATP levels were decreased. Changes in proteins involved in mitochondrial dynamics were detected in various combinations in each cell line, while variable changes in RC components were observed. ACAD9 deficient cells exhibited an increase in RC complex subunits and DDIT3, an ER stress marker. The level of proteins involved in ER-mitochondria communication was decreased in ND6 and ACAD9 deficient cells. |ΔΨ| and cell viability were further decreased in all cell lines. These findings suggest that disruption of mitochondrial bioenergetics and dynamics, ER-mitochondria crosstalk, and increased superoxide contribute to the pathophysiology in patients with ACAD9 deficiency. Furthermore, treatment of ACAD9 deficient cells with JP4-039, a novel mitochondria-targeted reactive oxygen species, electron and radical scavenger, decreased superoxide level and increased basal and maximal respiratory rate, identifying a potential therapeutic intervention opportunity in CI deficiency."	"Glucose metabolism during in vitro maturation of mouse oocytes: An study using RNA interference. In previous studies on glucose metabolism during in vitro maturation, intact cumulus-oocyte complexes (COCs) were treated with enzyme inhibitors/activators. Because inhibitors/activators may have non-specificity and/or toxicity, and culture of COCs cannot differentiate whether glucose metabolism of cumulus cells (CCs) or that of the oocyte supports oocyte maturation, results from the previous studies must be verified by silencing genes in either CCs or cumulus-denuded oocytes (DOs). In this study, RNAi was adopted to specify the effects of glucose metabolism in CCs or DOs on oocyte maturation. Although silencing either glyceraldehyde 3-phosphate dehydrogenase (GAPDH) or glucose-6-phosphate dehydrogenase (G6PD) genes in CCs significantly decreased competence of the cocultured DOs, silencing G6PD impaired competence to a greater extent. While silencing G6PD or GAPDH of CCs decreased glutathione and ATP contents of cocultured DOs to similar extents, silencing G6PD increased oxidative stress as well. Analysis on metabolite contents and oxidative stress index and culture of DOs in medium conditioned with gene-silenced CCs indicated that CCs supported oocyte maturation by releasing glucose metabolites. Silencing mitochondrial pyruvate carrier 1 or NADH dehydrogenase (ubiquintone) flavoprotein 1 of DOs significantly impaired their maturation. The results have unequivocally confirmed that CCs promote oocyte maturation by releasing glucose metabolites from both pentose phosphate pathway (PPP) and glycolysis. Pyruvate is transferred into DOs by mitochondrial pyruvate carrier (MPC) and utilized through mitochondrial electron transport to support maturation."	"Outcome of epilepsy in patients with mitochondrial disorders: Phenotype genotype and magnetic resonance imaging correlations. Studies exploring the outcome of epilepsy in patients with mitochondrial disorders are limited. This study examined the outcome of epilepsy in patients with mitochondrial disorders and its relation with the clinical phenotype, genotype and magnetic resonance imaging findings. The cohort was derived from the database of 67 patients with definite genetic diagnosis of mitochondrial disorders evaluated over a period of 11years (2006-2016). Among this, 27 had epilepsy and were included in final analysis. Data were analyzed with special reference to clinical phenotypes, genotypes, epilepsy characteristics, EEG findings, anti epileptic drugs used, therapeutic response, and magnetic resonance imaging findings. Patients were divided into three groups according to the seizure frequency at the time of last follow up: Group I- Seizure free; Group II- Infrequent seizures; Group III- uncontrolled seizures. For each group the clinical phenotype, genotype, magnetic resonance imaging and duration of epilepsy were compared. The phenotypes &amp; genotypes included Mitochondrial Encephalopathy Lactic Acidosis and Stroke like episodes (MELAS) &amp; m.3243A&gt;G mutation (n = 10), Myoclonic Epilepsy Ragged Red Fiber syndrome (MERRF) &amp; m.8344A&gt;G mutation (n = 4), Chronic Progressive External Ophthalmoplegia plus &amp;POLG1 mutation (CPEO, n = 6), episodic neuroregression due to nuclear mutations (n = 6; NDUFV1 (n = 3), NDUFA1, NDUFS2, MPV17-1 one each), and one patient with infantile basal ganglia stroke syndrome, mineralizing angiopathy &amp;MT-ND5 mutations. Seven patients (25.9%) were seizure free; seven had infrequent seizures (25.9%), while thirteen (48.1%) had frequent uncontrolled seizures. Majority of the subjects in seizure free group had episodic neuroregression &amp; leukoencephalopathy due to nuclear mutations (85.7%). Patients in group II with infrequent seizures had CPEO, POLG1 mutation and a normal MRI (71%) while 62% of the subjects in group III had MELAS, m.3243A&gt;G mutation and stroke like lesions on MRI. A fair correlation exists between the outcome of epilepsy, clinical phenotypes, genotypes and magnetic resonance imaging findings in patients with mitochondrial disorders. The recognition of these patterns is important clinically because of the therapeutic and prognostic implications."	"Long intergenic non-coding RNA GALMD3 in chicken Marek's disease. Long intergenic non-coding RNAs (lincRNAs) are transcribed from non-coding DNA sequences. Studies have revealed that aberrant expressions of lincRNAs are associated with various types of cancers and neurological disorders. Marek's disease (MD) is a highly contagious T-cell lymphoid neoplasia of chicken induced by Marek's disease virus (MDV). In this study, we first identified and validated linc-GALMD3 highly expressed in MDV-infected CD4+ T cells by RNA-Seq and qRT-PCR. By RNA-Seq analysis in MDCC-MSB1 cells after loss of function of linc-GALMD3 by shRNA, we found that linc-GALMD3 could positively cis-regulate its downstream gga-miR-223 gene expression. In contrast, it could trans-regulate the 748 differentially expressed genes (FDR &lt; 0.01) that were mainly enriched into mitochondrial structure and cell cycle processes using GO analysis. Of these, the most significantly expressed gene EPYC might cause iris lesion in MD. The other eight genes, NDUFA4, NDUFB6, NDUFV1, NDUFS8, SDHB, UQCRC1, UQCRC2, and COX7A2, actively participated in oxidative phosphorylation in mitochondrial dysfunction and cell death. Most importantly, we found that the MDV replication was repressed when linc-GALMD3 was knocked down in CEF cells. Our results suggested that linc-GALMD3 might be a critical regulator in chicken MD and could be used as a candidate-promising mark for MD prevention, diagnosis, and treatment."	"Extracellular reactive oxygen species are generated by a plasma membrane oxidative phosphorylation system. Although the oxidative phosphorylation (OXPHOS) system has been found in mitochondria and the plasma membrane of various mammalian cell lines, understanding the physiological functions of the plasma membrane OXPHOS system is challenging. Here, we demonstrated that OXPHOS I, II, III, IV and V subunits were expressed in the plasma membrane of HepG2 cells and primary mouse hepatocytes, as determined by non-permeabilized immunofluorescence, total internal reflection fluorescence (TIRF) microscopy, cell surface-biotin labeling and plasma membrane and lipid raft isolation. Next, we demonstrated that NADH administration generated extracellular superoxide and improved insulin signaling in HepG2 cells and primary mouse hepatocytes. The NADH-dependent generation of extracellular superoxide was prevented by knockdown of NDUFV-1, the first subunit of OXPHOS I receiving electrons from NADH and the NADH-improved insulin signaling was abolished by extracellular catalase. Thus, we conclude that the OXPHOS system in the plasma membrane may be required for the generation of extracellular ROS and the regulation of insulin signaling."	"Chronic Oxidative Stress, Mitochondrial Dysfunction, Nrf2 Activation and Inflammation in the Hippocampus Accompany Heightened Systemic Inflammation and Oxidative Stress in an Animal Model of Gulf War Illness. Memory and mood dysfunction are the key symptoms of Gulf war illness (GWI), a lingering multi-symptom ailment afflicting &gt;200,000 veterans who served in the Persian Gulf War-1. Research probing the source of the disease has demonstrated that concomitant exposures to anti-nerve gas agent pyridostigmine bromide (PB), pesticides, and war-related stress are among the chief causes of GWI. Indeed, exposures to GWI-related chemicals (GWIR-Cs) and mild stress in animal models cause memory and mood impairments alongside reduced neurogenesis and chronic low-level inflammation in the hippocampus. In the current study, we examined whether exposure to GWIR-Cs and stress causes chronic changes in the expression of genes related to increased oxidative stress, mitochondrial dysfunction, and inflammation in the hippocampus. We also investigated whether GWI is linked with chronically increased activation of Nrf2 (a master regulator of antioxidant response) in the hippocampus, and inflammation and enhanced oxidative stress at the systemic level. Adult male rats were exposed daily to low-doses of PB and pesticides (DEET and permethrin), in combination with 5 min of restraint stress for 4 weeks. Analysis of the hippocampus performed 6 months after the exposure revealed increased expression of many genes related to oxidative stress response and/or antioxidant activity (Hmox1, Sepp1, and Srxn1), reactive oxygen species metabolism (Fmo2, Sod2, and Ucp2) and oxygen transport (Ift172 and Slc38a1). Furthermore, multiple genes relevant to mitochondrial respiration (Atp6a1, Cox6a1, Cox7a2L, Ndufs7, Ndufv1, Lhpp, Slc25a10, and Ucp1) and neuroinflammation (Nfkb1, Bcl6, Csf2, IL6, Mapk1, Mapk3, Ngf, N-pac, and Prkaca) were up-regulated, alongside 73-88% reduction in the expression of anti-inflammatory genes IL4 and IL10, and nuclear translocation and increased expression of Nrf2 protein. These hippocampal changes were associated with elevated levels of pro-inflammatory cytokines and chemokines (Tnfa, IL1b, IL1a, Tgfb, and Fgf2) and lipid peroxidation byproduct malondialdehyde in the serum, suggesting the presence of an incessant systemic inflammation and elevated oxidative stress. These results imply that chronic oxidative stress, inflammation, and mitochondrial dysfunction in the hippocampus, and heightened systemic inflammation and oxidative stress likely underlie the persistent memory and mood dysfunction observed in GWI."	"The clinical and genetic characteristics in children with mitochondrial disease in China. Mitochondrial disease was a clinically and genetically heterogeneous group of diseases, thus the diagnosis was very difficult to clinicians. Our objective was to analyze clinical and genetic characteristics of children with mitochondrial disease in China. We tested 141 candidate patients who have been suspected of mitochondrial disorders by using targeted next-generation sequencing (NGS), and summarized the clinical and genetic data of gene confirmed cases from Neurology Department, Beijing Children's Hospital, Capital Medical University from October 2012 to January 2015. In our study, 40 cases of gene confirmed mitochondrial disease including eight kinds of mitochondrial disease, among which Leigh syndrome was identified to be the most common type, followed by mitochondrial encephalomyopathy, lactic acidosis, and stroke-like episodes (MELAS). The age-of-onset varies among mitochondrial disease, but early onset was common. All of 40 cases were gene confirmed, among which 25 cases (62.5%) with mitochondrial DNA (mtDNA) mutation, and 15 cases (37.5%) with nuclear DNA (nDNA) mutation. M.3243A&gt;G (n=7) accounts for a large proportion of mtDNA mutation. The nDNA mutations include SURF1 (n=7), PDHA1 (n=2), and NDUFV1, NDUFAF6, SUCLA2, SUCLG1, RRM2B, and C12orf65, respectively."	"[Progressive cavitating leukoencephalopathy: four cases and literatures review]. Objective: To analyze the clinical and genetic features of progressive cavitating leukoencephalopathy (PCL). Method: The data of clinical and genetic features of 4 PCL patients diagnosed by Beijing Children's Hospital between January 2015 and January 2016 were analyzed. The cases with complete clinical data retrieved on literature search at China National Knowledge Infrastructure, Wanfang Data Knowledge Service Platform and PubMed (up to August 2016) by using search terms of&quot;NDUFV1&quot; ,&quot;NDUFS1&quot; , or&quot;leukoencephalopathy&quot; , were summarized. Result: There were three females and one male, two of which were compatriots. The age of onset ranged from 6 months to 15 months. All four children's first symptoms were motor development regression, and the developmental milestones were almost normal before the onset. Of the 4 patients, 3 had cognitive impairment, 1 had seizures, 4 had dystonia and pyramidal impairment, 2 had emaciation, and 1 had nystagmus. The lactate concentrations of 4 patients were normal in blood. One patient had lactaciduria in the urinary organic acid analysis. Cranial magnetic resonance imaging (MRI) of all patients showed leukoencephalopathy, involved in the corpus callosum, and three patients accompanied by cystic lesions. Follow up for 2-13 years showed that the physical and language development were improved. Genetic analysis revealed that mutations in NDUFS1 were found in three patients and NDUFV1 mutation was found in one patient. All six mutations (p.Arg377Cys and p. Arg377His in NDUFV1; p. Arg482Glyfs(*)5, p.Thr368Pro, p.Tyr454X and p. Asp565Gly in NDUFS1) are novel. Five English case reports including 10 PCL patients were collected. Together with this group of 4 cases, a total of 14 cases were involved. All 14 children patients had motor development regression, 11 cases had cognitive impairment and dystonia, 6 cases had pyramidal impairment, 5 cases had irritability, 4 cases had epilepsy and nystagmus, 3 cases had strabismus and swallowing difficulty. Cranial MRI showed patchy leukoencephalopathy with cavities, involved in the corpus callosum. Follow up for 19 months-15 years that the neurology development were improved slowly in all patients. Conclusion: NDUFS1 and NDUFV1 gene mutation screening should be performed firstly in patients with PCL clinical and imaging feature. 目的: 总结进行性空泡脑白质病(PCL)患儿的临床及遗传学特点。 方法: 对首都医科大学附属北京儿童医院神经内科2015至2016年临床诊断的4例PCL患儿的病例资料进行总结,并通过关键词&quot;脑白质病&quot;NDUFV1&quot;或&quot;NDUFS1&quot;leukoencephalopathy&quot;对中文期刊全文数据库、万方数据知识服务平台、生物医学文献数据库(Pubmed)建库至2016年8月的文献进行检索,选取临床资料完整的病例分析总结。 结果: 本组4例患儿中女3例、男1例,其中2例为同胞姐弟,起病年龄6月龄至1岁3月龄,4例均以运动倒退为首发症状,起病前发育里程碑大致正常,3例合并认知损害,1例合并癫痫,4例均存在肌张力不全合并锥体束损害,2例体形消瘦,1例有眼球震颤。4例血乳酸均正常,1例尿有机酸分析为乳酸尿。头颅磁共振成像(MRI)均提示双侧大脑半球白质广泛对称性异常信号,累及胼胝体,合并空泡样变。随访至2~13岁,运动、语言发育均较前进步。遗传学分析提示3例为NDUFS1基因变异,1例NDUFV1基因变异,共6种基因变异(NDUFV1基因的p.Arg377Cys, p.Arg377His, NDUFS1基因的p.Arg482Glyfs(*)5,p.Thr368Pro,p.Tyr454X和p.Asp565Gly),均为未报道新变异。文献检索共收集5篇英文文献,报道10例患儿,加上本组共14例患儿。14例患儿均以运动倒退为首发症状,认知损害及肌张力障碍各11例,锥体束征阳性6例,烦躁哭闹5例,癫痫、眼球震颤各4例,斜视、吞咽困难各3例。头颅MRI均表现为弥漫性脑白质异常信号,伴空泡样变,胼胝体受累,随访至1岁7月龄~15岁,患儿神经系统功能均有缓慢进步。 结论: PCL是一种罕见的遗传代谢性疾病,对有PCL临床及影像学特点的病例,可首先进行NDUFS1及NDUFV1基因变异筛查。."	"[Clinical and genetic characteristics of children with Leigh syndrome]. Objective: To investigate the clinically and genetic characteristics of children with Leigh syndrome. Method: Patients with clinically diagnosed Leigh syndrome(LS)in the department of Neurology, Beijing Children's Hospital from January 2013 to February 2016 underwent the mitochondrial DNA (mtDNA) and nuclear DNA (nDNA) detecting with next generation sequencing (NGS) technology. The clinical data of gene confirmed cases were retrospectively collected and analyzed. The differences in the onset age, clinical manifestations, lactic acid level and MRI results between the mtDNA variation and nDNA variation were compared and analyzed.t test, Chi-square test and Fisher's exact test were used for statistical analysis. Result: Thirty-five cases were diagnosed by gene detection, including 20 males and 15 females. The median onset age was 1 year (ranging from the neonatal period to 4.4 years old). The age of onset within 2 years accounted for 74%(26 cases). The onset age of initial symptoms, including developmental delay, developmental regression, and seizures, were 6 (4, 12) months, 12 (8, 14) months, and 6 (1, 23) months respectively. The onset age of ptosis, extrapyramidal symptoms and ataxia were 26 (18, 44) months, 28 (23, 40) months and 28 (19, 35) months, respectively. There were significant differences in the onset age between the three groups (H=21.919, P=0.01). Within the 35 cases, 29 were manifested with developmental delay (83%), 26 with dystonia (74%), 18 with growth retardation, 15 with myasthenia, 13 with developmental regression, 11 with dysphagia, 10 with feeding difficulties, 4 with skeletal dysplasia, and 2 with digestive tract symptoms; nystagmus and respiratory abnormalities were observed in 9 cases respectively; extrapyramidal symptoms, peripheral nerve injury, ptosis, seizures were observed in 8 cases respectively; and ataxia, ophthalmoplegia and hypertrichiasis were found in 5 cases respectively.The blood lactic acid was measured in 32 LS patients, within which 23 cases (72%) had increased results; 8 out of 11 cases who underwent were cerebrospinal fluid lactic acid test had increased results. The results of neuroimaging revealed that all the patients were involved in the brainstem and (or) basal ganglia, of whom 27 (77%) had brainstem involvement, 24 (69%) had basal ganglia involvement. Thirteen out of 14 patients who had medulla oblongata involvement had nDNA variation; while 7 out of 8 patients with cerebellar involvement had nDNA variation. Genetic etiology was confirmed in all patients, among whom there were 17 cases (49%) with mtDNA mutation, including 8993T&gt;C/G (n=5), 14487T&gt;C (n=4), 13513G&gt;A (n=2), 9176T&gt;C, 10158T&gt;C, 3697G&gt;A, 10191T&gt;C, 14459A&gt;G and 11777C&gt;A (n=1) respectively. Remaining 18 cases(51%) had nDNA mutation, including SURF1 gene(n=10), PDHA1 gene(n=3) and one case each of NDUFV1, NDUFAF6, NDUFAF5, NDUFS1 and COQ7 genes. In this study, 27 types of mutations were founded, 15 of which had not been previously reported. Respiratory chain gene mutations have been found in 31 cases(89%); 3 cases had PDHc gene mutations, and 1 case had other mutation. Conclusion: LS usually occurs in infants. The most common primary symptoms are age-dependent abnormal movements, ocular symptoms, and seizures. Respiratory chain defects is the most common causes of LS.SURF1 is the most common variation, followed by 8993T&gt;C/G, 14487 T&gt;C and 13513G&gt;A mutation. 目的:了解儿童Leigh综合征(LS)临床和遗传学特征。 方法:对2013至2016年在北京儿童医院神经内科临床诊断LS的患儿,应用靶向基因捕获二代测序(NGS)技术对线粒体基因(mtDNA)组和LS相关的核基因(nDNA)进行测序,对基因确诊病例的临床资料进行回顾性总结。采用t检验、方差分析以及Fisher确切概率检验,对mtDNA和nDNA变异两组发病年龄、临床表现、乳酸和头颅磁共振成像(MRI)进行比较。 结果:经基因确诊LS 35例,其中男20例、女15例。起病年龄为新生儿~4.4岁,中位起病年龄1岁。2岁之内发病26例(74%)。首发症状包括发育落后、发育倒退和抽搐发作,其发生年龄分别为6(4,12),12(8,14)和6(1,23)月龄;眼睑下垂、椎体外系症状和共济失调发病年龄分别为26(18,44),28(23,40)和28(19,35)月龄。各首发症状发病年龄差异有统计学意义(H=21.919,P=0.01)。35例中临床表现发育落后29例(83%),肌张力异常26例(74%),生长落后18例,肌无力15例,发育倒退13例,吞咽困难11例,喂养困难10例,眼球震颤及呼吸异常各9例,锥体外系表现、周围神经损害、眼睑下垂、抽搐各8例,共济失调、眼外肌麻痹和多毛各5例,骨骼发育异常4例,消化道症状2例。32例LS患儿行血乳酸测定,23例(72%)升高,11例行脑脊液乳酸测定,8例升高。头颅磁共振成像(MRI)均累及脑干和(或)基底节区,其中27例(77%)脑干受累,24例(69%)基底节区受累,14例累及延髓,13例为nDNA变异;8例累及小脑,7例为nDNA变异。35例基因变异中mtDNA变异17例(49%),分别为8993 T&gt;C/G 5例、14487T&gt;C 4例、13513 G&gt;A 2例,9176 T&gt;C、10158 T&gt;C、3697 G&gt;A、10191T&gt;C、14459A&gt;G,11777C&gt;A各1例;nDNA变异18例(51%),其中SURF1基因10例、PDHA1基因3例、NDUFV1、NDUFAF6、NDUFAF5、NDUFS1和COQ7基因各1例。共发现27种变异类型,15种为新发。涉及呼吸链酶复合物基因变异31例(89%),丙酮酸脱氢酶复合物(PDHc)变异3例,其他1例。 结论: LS为婴幼儿好发,首发症状主要表现为运动异常、眼部症状和癫痫发作,具有年龄依赖性;呼吸链酶复合物基因变异是LS最常见原因,其中以SURF1最多,其次为8993 T&gt;C/G、14487 T&gt;C与13513 G&gt;A。."	"Maternal nutrition modulates fetal development by inducing placental efficiency changes in gilts. Intra-uterine growth restriction (IUGR) and fetal overgrowth increase risks to postnatal health. Maternal nutrition is the major intrauterine environmental factor that alters fetal weight. However, the mechanisms underlying the effects of maternal nutrition on fetal development are not entirely clear. We developed a pig model, and using isobaric tags for relative and absolute quantification (iTRAQ), we investigated alterations in the placental proteome of gilts on a normal-energy-intake (Con) and high-energy-intake (HE) diet. In the Con group, heavy and light fetuses were found at the tubal and cervical ends of the uterus respectively at 90 d of gestation. Moreover, the heavy fetuses had a higher glucose concentration than the light fetuses. However, a higher uniformity was noted in the HE group. Placental promoters between these two positions indicated that 78 and 50 differentially expressed proteins were detected in the Con and HE groups respectively. In the Con group, these proteins were involved in lipid metabolism (HADHA, AACS, CAD), nutrient transport (GLUT, SLC27A1), and energy metabolism (NDUFV1, NDUFV2, ATP5C1). However, in the HE group they mainly participated in transcriptional and translational regulation, and intracellular vesicular transport. Our findings revealed that maternal nutrition may alter birth weight mainly through the modulation of placental lipid and energy metabolism, which also provides a possible mechanism to explain the higher uniformity of fetal weight in gilts fed a HE diet."	"Horizontal transfer of whole mitochondria restores tumorigenic potential in mitochondrial DNA-deficient cancer cells. Recently, we showed that generation of tumours in syngeneic mice by cells devoid of mitochondrial (mt) DNA (ρ<sup>0</sup> cells) is linked to the acquisition of the host mtDNA. However, the mechanism of mtDNA movement between cells remains unresolved. To determine whether the transfer of mtDNA involves whole mitochondria, we injected B16ρ<sup>0</sup> mouse melanoma cells into syngeneic C57BL/6N <sup>su9-DsRed2</sup>  mice that express red fluorescent protein in their mitochondria. We document that mtDNA is acquired by transfer of whole mitochondria from the host animal, leading to normalisation of mitochondrial respiration. Additionally, knockdown of key mitochondrial complex I (NDUFV1) and complex II (SDHC) subunits by shRNA in B16ρ<sup>0</sup> cells abolished or significantly retarded their ability to form tumours. Collectively, these results show that intact mitochondria with their mtDNA payload are transferred in the developing tumour, and provide functional evidence for an essential role of oxidative phosphorylation in cancer."	"Systematic Expression Analysis of Mitochondrial Complex I Identifies NDUFS1 as a Biomarker in Clear-Cell Renal-Cell Carcinoma. Mitochondrial dysfunction is common in cancer, and the mitochondrial electron transport chain is often affected in carcinogenesis. So far, little is known about the expression of the mitochondrial complex I (NADH:ubiquinone oxidoreductase) subunits in clear-cell renal-cell carcinoma (ccRCC). An expression profile of the mitochondrial complex I subunits was determined using the NextBio database. Subsequently, the expression of selected subunits was experimentally validated on mRNA (quantitative real-time polymerase chain reaction) and protein (Western blot analysis, immunohistochemistry) level. We observed that 7 subunits of the complex I were down-regulated in at least 3 microarray studies. Deregulated mRNA expression was confirmed for NDUFA3, NDUFA, NDUFB1, NDUFB9, NDUFS1, NDUFS8, and NDUFV1. Low NDUFS1 mRNA expression was a significant and independent adverse predictor of a shorter overall survival in our mRNA cohort and the ccRCC cohort of The Cancer Genome Atlas project. NDUFS1 expression was furthermore analyzed on the protein level, and a distinct down-regulation was observed in ccRCC as well as in the chromophobe and the sarcomatoid subtype compared to normal renal tissue. Expression alterations occur in only a few subunits of the mitochondrial complex I subunits in ccRCC, and altered mRNA and protein expression levels of NDUFS1 may be useful to distinguish between renal-cell carcinoma and normal renal tissue."	"Integrated Left Ventricular Global Transcriptome and Proteome Profiling in Human End-Stage Dilated Cardiomyopathy. The disease pathways leading to idiopathic dilated cardiomyopathy (DCM) are still elusive. The present study investigated integrated global transcriptional and translational changes in human DCM for disease biomarker discovery. We used identical myocardial tissues from five DCM hearts compared to five non-failing (NF) donor hearts for both transcriptome profiling using the ABI high-density oligonucleotide microarrays and proteome expression with One-Dimensional Nano Acquity liquid chromatography coupled with tandem mass spectrometry on the Synapt G2 system. We identified 1262 differentially expressed genes (DEGs) and 269 proteins (DEPs) between DCM cases and healthy controls. Among the most significantly upregulated (&gt;5-fold) proteins were GRK5, APOA2, IGHG3, ANXA6, HSP90AA1, and ATP5C1 (p&lt; 0.01). On the other hand, the most significantly downregulated proteins were GSTM5, COX17, CAV1 and ANXA3. At least ten entities were concomitantly upregulated on the two analysis platforms: GOT1, ALDH4A1, PDHB, BDH1, SLC2A11, HSP90AA1, HSP90AB1, H2AFV, HSPA5 and NDUFV1. Gene ontology analyses of DEGs and DEPs revealed significant overlap with enrichment of genes/proteins related to metabolic process, biosynthetic process, cellular component organization, oxidative phosphorylation, alterations in glycolysis and ATP synthesis, Alzheimer's disease, chemokine-mediated inflammation and cytokine signalling pathways. The concomitant use of transcriptome and proteome expression to evaluate global changes in DCM has led to the identification of sixteen commonly altered entities as well as novel genes, proteins and pathways whose cardiac functions have yet to be deciphered. This data should contribute towards better management of the disease."	"Whole Exome Sequencing Identifies the Genetic Basis of Late-Onset Leigh Syndrome in a Patient with MRI but Little Biochemical Evidence of a Mitochondrial Disorder. Leigh syndrome is a subacute necrotising encephalomyopathy proven by post-mortem analysis of brain tissue showing spongiform lesions with vacuolation of the neuropil followed by demyelination, gliosis and capillary proliferation caused by mutations in one of over 75 different genes, including nuclear- and mitochondrial-encoded genes, most of which are associated with mitochondrial respiratory chain function. In this study, we report a patient with suspected Leigh syndrome presenting with seizures, ptosis, scoliosis, dystonia, symmetrical putaminal abnormalities and a lactate peak on brain MRS, but showing normal MRC enzymology in muscle and liver, thereby complicating the diagnosis. Whole exome sequencing uncovered compound heterozygous mutations in NADH dehydrogenase (ubiquinone) flavoprotein 1 gene (NDUFV1), c.1162+4A&gt;C (NM_007103.3), resulting in skipping of exon 8, and c.640G&gt;A, causing the amino acid substitution p.Glu214Lys, both of which have previously been reported in a patient with complex I deficiency. Patient fibroblasts showed a significant reduction in NDUFV1 protein expression, decreased complex CI and complex IV assembly and consequential reductions in the enzymatic activities of both complexes by 38% and 67%, respectively. The pathogenic effect of these variations was further confirmed by immunoblot analysis of subunits for MRC enzyme complexes in patient muscle, liver and fibroblast where we observed 90%, 60% and 95% reduction in complex CI, respectively. Together these studies highlight the importance of a comprehensive, multipronged approach to the laboratory evaluation of patients with suspected Leigh syndrome."	"New perspective in diagnostics of mitochondrial disorders: two years' experience with whole-exome sequencing at a national paediatric centre. Whole-exome sequencing (WES) has led to an exponential increase in identification of causative variants in mitochondrial disorders (MD). We performed WES in 113 MD suspected patients from Polish paediatric reference centre, in whom routine testing failed to identify a molecular defect. WES was performed using TruSeqExome enrichment, followed by variant prioritization, validation by Sanger sequencing, and segregation with the disease phenotype in the family. Likely causative mutations were identified in 67 (59.3 %) patients; these included variants in mtDNA (6 patients) and nDNA: X-linked (9 patients), autosomal dominant (5 patients), and autosomal recessive (47 patients, 11 homozygotes). Novel variants accounted for 50.5 % (50/99) of all detected changes. In 47 patients, changes in 31 MD-related genes (ACAD9, ADCK3, AIFM1, CLPB, COX10, DLD, EARS2, FBXL4, MTATP6, MTFMT, MTND1, MTND3, MTND5, NAXE, NDUFS6, NDUFS7, NDUFV1, OPA1, PARS2, PC, PDHA1, POLG, RARS2, RRM2B, SCO2, SERAC1, SLC19A3, SLC25A12, TAZ, TMEM126B, VARS2) were identified. The ACAD9, CLPB, FBXL4, PDHA1 genes recurred more than twice suggesting higher general/ethnic prevalence. In 19 cases, variants in 18 non-MD related genes (ADAR, CACNA1A, CDKL5, CLN3, CPS1, DMD, DYSF, GBE1, GFAP, HSD17B4, MECP2, MYBPC3, PEX5, PGAP2, PIGN, PRF1, SBDS, SCN2A) were found. The percentage of positive WES results rose gradually with increasing probability of MD according to the Mitochondrial Disease Criteria (MDC) scale (from 36 to 90 % for low and high probability, respectively). The percentage of detected MD-related genes compared with non MD-related genes also grew with the increasing MD likelihood (from 20 to 97 %). Molecular diagnosis was established in 30/47 (63.8 %) neonates and in 17/28 (60.7 %) patients with basal ganglia involvement. Mutations in CLPB, SERAC1, TAZ genes were identified in neonates with 3-methylglutaconic aciduria (3-MGA) as a discriminative feature. New MD-related candidate gene (NDUFB8) is under verification. We suggest WES rather than targeted NGS as the method of choice in diagnostics of MD in children, including neonates with 3-MGA aciduria, who died without determination of disease cause and with limited availability of laboratory data. There is a strong correlation between the degree of MD diagnosis by WES and MD likelihood expressed by the MDC scale."	"Mapping of protein-protein interaction network of Alexander disease. Alexander disease (ALXD) is slowly progressive neurodegenerative disorder which affects white matter of the central nervous system. The main cause of disorder is mutation in GFAP gene and mutation in some other genes were also reported. This study was aimed at getting a better insight into ALXD pathogenesis and identifying the important functional and highly interconnected nodes in human protein interaction network, identifying the important sub-networks in the system could be helpful in understanding the underlying molecular mechanism. The topological analysis of human protein interaction network strategy to identify highly interconnected sub-network modules from which six proteins are found i.e. GFAP, PLEC, CRYAB, NDUFV1, CASP3 and MAPK14 plays important role in disease. Further, the enrichment analysis of interaction network identifies crucial pathways in which most of the diseased proteins overlaps. Through system biology approach, the undirected human protein interaction network of ALXD is buildup with the help of Cytoscape tool and its various plugins helps to investigate network further. The systematic approach suggests the finding of previously known proteins, GFAP, PLEC, CRYAB, NDUFV1, CASP3 and MAPK14 can be used as a drug targets and potential treatment discovered also enrichment analysis will provide guidance for the future study on Alexander disease. "	"Ischemic postconditioning influences electron transport chain protein turnover in Langendorff-perfused rat hearts. Ischemia postconditioning (IPo) is a promising strategy in reducing myocardial ischemia reperfusion (I/R) injury (MIRI), but its specific molecular mechanism is incompletely understood. Langendorff-perfused isolated rat hearts were subjected to global I/R and received IPo in the absence or presence of the mitochondrial ATP-sensitive potassium channel (mitoKATP) blocker 5-hydroxydecanoate (5-HD). Myocardial mitochondria were extracted and mitochondrial comparative proteomics was analyzed. IPo significantly reduces post-ischemic myocardial infarction and improved cardiac function in I/R rat hearts, while 5-HD basically cancelled IPo's myocardial protective effect. Joint application of two-dimensional polyacrylamide gel electrophoresis (2DE) and MALDI-TOF MS identified eight differentially expressed proteins between groups. Expression of cardiac succinate dehydrogenase (ubiquinone) flavoprotein subunit (SDHA) increased more than two-fold after I/R, while IPo led to overexpression of dihydrolipoyl dehydrogenase (DLD), NADH dehydrogenase (ubiquinone) flavoprotein 1 and isoform CRA_b (NDUFV1). When the mitoKATP was blocked, MICOS complex subunit Mic60 (IMMT) and Stress-70 protein (Grp75) were over expressed, while DLDH, ATPase subunit A (ATPA) and rCG44606 were decreased. Seven of the differential proteins belong to electron transport chain (ETC) or metabolism regulating proteins, and five of them were induced by closing mitoKATP in I/R hearts. We thus conclude that IPo's myocardial protective effect relies on energy homeostasis regulation. DLD, SDHA, NDUFV1, Grp75, ATPA and rCG44606 may contribute to IPo's cardial protective effect. "	"[Diagnosis of mitochondrial disorders in children with next generation sequencing]. To explore the application value of next generation sequencing (NGS) in the diagnosis of mitochondrial disorders. According to mitochondrial disease criteria, genomic DNA was extracted using standard procedure from peripheral venous blood of patients with suspected mitochondrial disease collected from neurological department of Beijing Children's Hospital Affiliated to Capital Medical University between October 2012 and February 2014. Targeted NGS to capture and sequence the entire mtDNA and exons of the 1 000 nuclear genes related to mitochondrial structure and function. Clinical data were collected from patients diagnosed at a molecular level, then clinical features and the relationship between genotype and phenotype were analyzed. Mutation was detected in 21 of 70 patients with suspected mitochondrial disease, in whom 10 harbored mtDNA mutation, while 11 nuclear DNA (nDNA) mutation. In 21 patients, 1 was diagnosed congenital myasthenic syndrome with episodic apnea due to CHAT gene p.I187T homozygous mutation, and 20 were diagnosed mitochondrial disease, in which 10 were Leigh syndrome, 4 were mitochondrial encephalomyopathy with lactic acidosis and stroke like episodes syndrome, 3 were Leber hereditary optic neuropathy (LHON) and LHON plus, 2 were mitochondrial DNA depletion syndrome and 1 was unknown. All the mtDNA mutations were point mutations, which contained A3243G, G3460A, G11778A, T14484C, T14502C and T14487C. Ten mitochondrial disease patients harbored homozygous or compound heterozygous mutations in 5 genes previously shown to cause disease: SURF1, PDHA1, NDUFV1, SUCLA2 and SUCLG1, which had 14 mutations, and 7 of the 14 mutations have not been reported. NGS has a certain application value in the diagnosis of mitochondrial diseases, especially in Leigh syndrome atypical mitochondrial syndrome and rare mitochondrial disorders."	"Differentially expressed genes and microRNAs in bladder carcinoma cell line 5637 and T24 detected by RNA sequencing. Bladder carcinoma is a common malignancy with complicated treatment methods due to its heterogeneity. In this study, we focused on two bladder carcinoma cell lines, 5637 and T24, to compare their differences from the transcriptome level. RNA sequencing was used to generate the transcriptome data of the two cell line and the control cell line SV-HUC-1. Differentially expressed genes (DEGs) and differentially expressed microRNAs (miRNAs) of cell line 5637 and T24 were screened. Their annotation and analyses were conducted using gene ontology (GO) and Kyoto encyclopedia of genes and genomes (KEGG) to predict their possible functions and pathways involved. Number of DEGs specific in cell line 5637, specific in cell line T24 and in both the cell lines was 880, 1512 and 1412, respectively. Number of differentially expressed miRNAs of the three categories was 7, 20 and 18, respectively. These DEGs and miRNAs participated in different biological processes and pathways, among which some were further verified by qRT-PCR. Interferon-stimulated genes (ISGs), including STAT1, TMEM173 and OAS3, were down-regulated in cell line 5637 compared to SV-HUC-1. NDOR1 and NDUFV1, genes related to mitochondrial metabolism, were up-regulated in cell line T24. miR-4257, miR-6733 and gene WNT9A and WNT10A were down-regulated in both the cell lines. Thus cell line 5637 might have lower chemotherapy resistance while T24 might exhibit abnormal mitochondrial metabolism. These results uncovered major differences between cell line 5637 and T24, which indicated the two cell lines, should be selectively used in bladder carcinoma research. "	"Characterization of clinically identified mutations in NDUFV1, the flavin-binding subunit of respiratory complex I, using a yeast model system. Dysfunctions in mitochondrial complex I (NADH:ubiquinone oxidoreductase) are both genetically and clinically highly diverse and a major cause of human mitochondrial diseases. The genetic determinants of individual clinical cases are increasingly being described, but how these genetic defects affect complex I on the molecular and cellular level, and have different clinical consequences in different individuals, is little understood. Furthermore, without molecular-level information innocent genetic variants may be misassigned as pathogenic. Here, we have used a yeast model system (Yarrowia lipolytica) to study the molecular consequences of 16 single amino acid substitutions, classified as pathogenic, in the NDUFV1 subunit of complex I. NDUFV1 binds the flavin cofactor that oxidizes NADH and is the site of complex I-mediated reactive oxygen species production. Seven mutations caused loss of complex I expression, suggesting they are detrimental but precluding further study. In two variants complex I was fully assembled but did not contain any flavin, and four mutations led to functionally compromised enzymes. Our study provides a molecular rationale for assignment of all these variants as pathogenic. However, three variants provided complex I that was functionally equivalent to the wild-type enzyme, challenging their assignment as pathogenic. By combining structural, bioinformatic and functional data, a simple scoring system for the initial evaluation of future NDUFV1 variants is proposed. Overall, our results broaden understanding of how mutations in this centrally important core subunit of complex I affect its function and provide a basis for understanding the role of NDUFV1 mutations in mitochondrial dysfunction. "	"Complete Mitochondrial Complex I Deficiency Induces an Up-Regulation of Respiratory Fluxes That Is Abolished by Traces of Functional Complex I. Complex I (NADH:ubiquinone oxidoreductase) is central to cellular NAD(+) recycling and accounts for approximately 40% of mitochondrial ATP production. To understand how complex I function impacts respiration and plant development, we isolated Arabidopsis (Arabidopsis thaliana) lines that lack complex I activity due to the absence of the catalytic subunit NDUFV1 (for NADH:ubiquinone oxidoreductase flavoprotein1) and compared these plants with ndufs4 (for NADH:ubiquinone oxidoreductase Fe-S protein4) mutants possessing trace amounts of complex I. Unlike ndufs4 plants, ndufv1 lines were largely unable to establish seedlings in the absence of externally supplied sucrose. Measurements of mitochondrial respiration and ATP synthesis revealed that compared with ndufv1, the complex I amounts retained by ndufs4 did not increase mitochondrial respiration and oxidative phosphorylation capacities. No major differences were seen in the mitochondrial proteomes, cellular metabolomes, or transcriptomes between ndufv1 and ndufs4. The analysis of fluxes through the respiratory pathway revealed that in ndufv1, fluxes through glycolysis and the tricarboxylic acid cycle were dramatically increased compared with ndufs4, which showed near wild-type-like fluxes. This indicates that the strong growth defects seen for plants lacking complex I originate from a switch in the metabolic mode of mitochondria and an up-regulation of respiratory fluxes. Partial reversion of these phenotypes when traces of active complex I are present suggests that complex I is essential for plant development and likely acts as a negative regulator of respiratory fluxes. "	"Potential hippocampal genes and pathways involved in Alzheimer's disease: a bioinformatic analysis. Alzheimer's disease (AD) is a neurodegenerative disor-der and the most common cause of dementia in elderly people. Nu-merous studies have focused on the dysregulated genes in AD, but the pathogenesis is still unknown. In this study, we explored critical hippocampal genes and pathways that might potentially be involved in the pathogenesis of AD. Four transcriptome datasets for the hip-pocampus of patients with AD were downloaded from ArrayExpress, and the gene signature was identified by integrated analysis of mul-tiple transcriptomes using novel genome-wide relative significance and genome-wide global significance models. A protein-protein interaction network was constructed, and five clusters were selected. The biologi-cal functions and pathways were identified by Gene Ontology and Kyo-to Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analysis. A total of 6994 genes were screened, and the top 300 genes were subjected to further analysis. Four significant KEGG pathways were identified, including oxidative phosphorylation and Parkinson's disease, Huntington's disease, and Alzheimer's disease pathways. The hub network of cluster 1 with the highest average rank value was de-fined. The genes (NDUFB3, NDUFA9, NDUFV1, NDUFV2, NDUFS3, NDUFA10, COX7B, and UQCR1) were considered critical with high degree in cluster 1 as well as being shared by the four significant path-ways. The oxidative phosphorylation process was also involved in the other three pathways and is considered to be relevant to energy-related AD pathology in the hippocampus. This research provides a perspec-tive from which to explore critical genes and pathways for potential AD therapies. "	"Caenorhabditis elegans expressing the Saccharomyces cerevisiae NADH alternative dehydrogenase Ndi1p, as a tool to identify new genes involved in complex I related diseases. Isolated complex I deficiencies are one of the most commonly observed biochemical features in patients suffering from mitochondrial disorders. In the majority of these clinical cases the molecular bases of the diseases remain unknown suggesting the involvement of unidentified factors that are critical for complex I function. The Saccharomyces cerevisiae NDI1 gene, encoding the mitochondrial internal NADH dehydrogenase was previously shown to complement a complex I deficient strain in Caenorhabditis elegans with notable improvements in reproduction and whole organism respiration. These features indicate that Ndi1p can functionally integrate the respiratory chain, allowing complex I deficiency complementation. Taking into account the Ndi1p ability to bypass complex I, we evaluate the possibility to extend the range of defects/mutations causing complex I deficiencies that can be alleviated by NDI1 expression. We report here that NDI1 expressing animals unexpectedly exhibit a slightly shortened lifespan, a reduction in the progeny, and a depletion of the mitochondrial genome. However, Ndi1p is expressed and targeted to the mitochondria as a functional protein that confers rotenone resistance to those animals without affecting their respiration rate and ATP content. We show that the severe embryonic lethality level caused by the RNAi knockdowns of complex I structural subunit encoding genes (e.g., NDUFV1, NDUFS1, NDUFS6, NDUFS8, or GRIM-19 human orthologs) in wild type animals is significantly reduced in the Ndi1p expressing worm. All together these results open up the perspective to identify new genes involved in complex I function, assembly, or regulation by screening an RNAi library of genes leading to embryonic lethality that should be rescued by NDI1 expression. "	"Mitochondrial complex I and III mRNA levels in bipolar disorder. Studies that have focused on the mitochondrial electron transport chain indicate that bipolar disorder (BD) is associated with pathology in mitochondrial function. These pathological processes occur in the brain circuits that regulate affective functions, emotions, and motor behaviors. The present study aimed to determine the relationship between mitochondrial complex dysfunction and BD. The BD group included 32 male patients diagnosed with first-episode manic BD. The control group included 35 sociodemographically matched healthy males. Messenger ribonucleic acid (mRNA) was isolated from peripheral blood samples obtained from the patients and control group, and the mRNA levels of the NDUFV1, NDUFV2, and NDUFS1 genes of mitochondrial complex I and the UQCR10 gene of mitochondrial complex III were investigated. Significant differences were identified in complex I gene mRNA levels between the BD group (n = 32) and the control group (n = 35) for the following genes: NDUFV1 (P = 0.01), NDUFV2 (P &lt; 0.01), and NDUFS1 (P = 0.02). The UQCR10 gene (complex III) mRNA level did not differ between the groups (P = 0.1). The mRNA levels of the four genes studied were lower at the 3-month follow-up; however, these differences were not significant (P &gt; 0.05). All of the BD patients were in manic episodes; thus, we were unable to separately compare these levels with those during depressive and euthymic episodes. The mRNA levels of all of the genes representing the subunits of mitochondrial complex I (NDUFV1, NDUFV2, and NDUFS1) were significantly higher in the present study's BD patients during manic episodes than in the controls. With the data obtained from further research, biomarkers that could be used for the diagnosis and follow-up of neuropsychiatric disorders may be discovered."	"MicroRNAs Regulate Cellular ATP Levels by Targeting Mitochondrial Energy Metabolism Genes during C2C12 Myoblast Differentiation. In our previous study, we identified an miRNA regulatory network involved in energy metabolism in porcine muscle. To better understand the involvement of miRNAs in cellular ATP production and energy metabolism, here we used C2C12 myoblasts, in which ATP levels increase during differentiation, to identify miRNAs modulating these processes. ATP level, miRNA and mRNA microarray expression profiles during C2C12 differentiation into myotubes were assessed. The results suggest 14 miRNAs (miR-423-3p, miR-17, miR-130b, miR-301a/b, miR-345, miR-15a, miR-16a, miR-128, miR-615, miR-1968, miR-1a/b, and miR-194) as cellular ATP regulators targeting genes involved in mitochondrial energy metabolism (Cox4i2, Cox6a2, Ndufb7, Ndufs4, Ndufs5, and Ndufv1) during C2C12 differentiation. Among these, miR-423-3p showed a high inverse correlation with increasing ATP levels. Besides having implications in promoting cell growth and cell cycle progression, its function in cellular ATP regulation is yet unknown. Therefore, miR-423-3p was selected and validated for the function together with its potential target, Cox6a2. Overexpression of miR-423-3p in C2C12 myogenic differentiation lead to decreased cellular ATP level and decreased expression of Cox6a2 compared to the negative control. These results suggest miR-423-3p as a novel regulator of ATP/energy metabolism by targeting Cox6a2. "	"Leigh syndrome: neuropathology and pathogenesis. Leigh syndrome (LS) is the most common pediatric presentation of a defined mitochondrial disease. This progressive encephalopathy is characterized pathologically by the development of bilateral symmetrical lesions in the brainstem and basal ganglia that show gliosis, vacuolation, capillary proliferation, relative neuronal preservation, and by hyperlacticacidemia in the blood and/or cerebrospinal fluid. Understanding the molecular mechanisms underlying this unique pathology has been challenging, particularly in view of the heterogeneous and not yet fully determined genetic basis of LS. Moreover, animal models that mimic features of LS have only been created relatively recently. Here, we review the pathology of LS and consider what might be the molecular mechanisms underlying its pathogenesis. Data from a wide range of sources, including patient samples, animal models, and studies of hypoxic-ischemic encephalopathy (a condition that shares features with LS), were used to provide insight into the pathogenic mechanisms that may drive lesion development. Based on current data, we suggest that severe ATP depletion, gliosis, hyperlacticacidemia, reactive oxygen species, and potentially excitotoxicity cumulatively contribute to the neuropathogenesis of LS. An intimate understanding of the molecular mechanisms causing LS is required to accelerate the development of LS treatments. "	"Mitochondrial complex I and III gene mRNA levels in schizophrenia, and their relationship with clinical features. The etiology of schizophrenia is not precisely known; however, mitochondrial function and cerebral energy metabolism abnormalities were determined to be possible factors associated with the etiology of schizophrenia. Impaired mitochondrial function negatively affects neuronal plasticity, and can cause cognitive deficits and behavioral abnormalities observed during the clinical course of schizophrenia. The present study aimed to investigate the relationship between the clinical features of schizophrenia, and mitochondrial complex activation, based on measurement of mRNA levels in the NDUFV1, NDUFV2, NDUFS1, and UQCR10 genes involved in the peripheral mitochondrial complex. The study included 138 schizophrenia patients and 42 healthy controls. The schizophrenia group was divided into a chronic schizophrenia subgroup (n = 84) and a first-episode schizophrenia subgroup (n = 54). The symptoms profile and severity of disorder were evaluated using the Scale for the Assessment of Negative Symptoms (SANS), Scale for the Assessment of Positive Symptoms (SAPS), and Brief Psychiatric Rating Scale (BPRS). The level of mRNA expression of NDUFV1, NDUFV2, and NDUFS1 was significantly higher in the schizophrenia group than in the control group. The mRNA level of NDUFV2 was positively correlated with BPRS and SAPS scores in the first-episode schizophrenia subgroup. The findings showed that there was a positive correlation between gene mRNA levels and psychotic symptomatology, especially positive symptoms. Our results suggest that mRNA levels of the NDUFV1, NUDFV2, and NDUFS1 genes of complex I of the mitochondrial electron transport chain might become a possible peripheral marker for the diagnosis of schizophrenia."	"Broad phenotypic variability in patients with complex I deficiency due to mutations in NDUFS1 and NDUFV1. We report clinical, metabolic, genetic and neuroradiological findings in five patients from three different families with isolated complex I deficiency. Genetic analysis revealed mutations in NDUFS1 in three patients and in NDUFV1 in two patients. Four of the mutations are novel and affect amino acid residues that either are invariant among species or conserved in their properties. The presented clinical courses are characterized by leukoencephalopathy or early death and expand the already heterogeneous phenotypic spectrum. A literature review was performed, showing that patients with mutations in NDUFS1 in general have a worse prognosis than patients with mutations in NDUFV1. "	"Using extended pedigrees to identify novel autism spectrum disorder (ASD) candidate genes. Copy number variation has emerged as an important cause of phenotypic variation, particularly in relation to some complex disorders. Autism spectrum disorder (ASD) is one such disorder, in which evidence is emerging for an etiological role for some rare penetrant de novo and rare inherited copy number variants (CNVs). De novo variation, however, does not always explain the familial nature of ASD, leaving a gap in our knowledge concerning the heritable genetic causes of this disorder. Extended pedigrees, in which several members have ASD, provide an opportunity to investigate inherited genetic risk factors. In this current study, we recruited 19 extended ASD pedigrees, and, using the Illumina HumanOmni2.5 BeadChip, conducted genome-wide CNV interrogation. We found no definitive evidence of an etiological role for segregating CNVs in these pedigrees, and no evidence that linkage signals in these pedigrees are explained by segregating CNVs. However, a small number of putative de novo variants were transmitted from BAP parents to their ASD offspring, and evidence emerged for a rare duplication CNV at 11p13.3 harboring two putative 'developmental/neuropsychiatric' susceptibility gene(s), GSTP1 and NDUFV1. "	"Granzyme B-induced mitochondrial ROS are required for apoptosis. Caspases and the cytotoxic lymphocyte protease granzyme B (GB) induce reactive oxygen species (ROS) formation, loss of transmembrane potential and mitochondrial outer membrane permeabilization (MOMP). Whether ROS are required for GB-mediated apoptosis and how GB induces ROS is unclear. Here, we found that GB induces cell death in an ROS-dependent manner, independently of caspases and MOMP. GB triggers ROS increase in target cell by directly attacking the mitochondria to cleave NDUFV1, NDUFS1 and NDUFS2 subunits of the NADH: ubiquinone oxidoreductase complex I inside mitochondria. This leads to mitocentric ROS production, loss of complex I and III activity, disorganization of the respiratory chain, impaired mitochondrial respiration and loss of the mitochondrial cristae junctions. Furthermore, we have also found that GB-induced mitocentric ROS are necessary for optimal apoptogenic factor release, rapid DNA fragmentation and lysosomal rupture. Interestingly, scavenging the ROS delays and reduces many of the features of GB-induced death. Consequently, GB-induced ROS significantly promote apoptosis. "	"Mitochondrial complex I deficiency enhances skeletal myogenesis but impairs insulin signaling through SIRT1 inactivation. To address whether mitochondrial biogenesis is essential for skeletal myogenesis, C2C12 myogenesis was investigated after knockdown of NADH dehydrogenase (ubiquintone) flavoprotein 1 (NDUFV1), which is an oxidative phosphorylation complex I subunit that is the first subunit to accept electrons from NADH. The NDUFVI knockdown enhanced C2C12 myogenesis by decreasing the NAD(+)/NADH ratio and subsequently inactivating SIRT1 and SIRT1 activators (pyruvate, SRT1720, and resveratrol) abolished the NDUFV1 knockdown-induced myogenesis enhancement. However, the insulin-elicited activation of insulin receptor β (IRβ) and insulin receptor substrate-1 (IRS-1) was reduced with elevated levels of protein-tyrosine phosphatase 1B after NDUFV1 knockdown in C2C12 myotubes. The NDUFV1 knockdown-induced blockage of insulin signaling was released by protein-tyrosine phosphatase 1B knockdown in C2C12 myotubes, and we found that NDUFV1 or SIRT1 knockdown did not affect mitochondria biogenesis during C2C12 myogenesis. Based on these data, we can conclude that complex I dysfunction-induced SIRT1 inactivation leads to myogenesis enhancement but blocks insulin signaling without affecting mitochondria biogenesis. "	"Mitochondrial proteome remodeling in ischemic heart failure. Mitochondrial dysfunction is an important part of the decline in cardiac function in heart failure. We hypothesized for hypothesized that there would be specific abnormalities in mitochondrial function and proteome with the progression of ischemic heart failure (HF). We used a high left anterior descending artery (LAD) ligation in 3-4month old male rats to generate HF. Rats were studied 9weeks post-ligation. Electron microscopy of left ventricle samples showed mitochondrial changes including decreased size, increased number, abnormal distribution, and cristae loss. Mitochondria in ischemic HF exhibited decreased total ATP, impaired mitochondrial respiration, as well as reduced complex I activity. Analysis of LV mitochondrial proteins by mass spectrometry was performed, and 31 differentially expressed proteins (p&lt;0.05) of more than 500 total proteins were identified. Of these proteins, 15 were up-regulated and 16 were down-regulated in the failing heart. A set of complex I proteins was significantly decreased, consistent with the impairment of complex I activity. There were distinct changes in mitochondrial function and proteome in ischemic HF. Although there were similarities, the distinction between the reported proteomic changed with TAC pressure overload induced HF and ischemic HF in the current study suggested different pathological mechanisms. Specific changes in mitochondrial protein expression, which correlate with changes in mitochondrial function, have been identified in ischemic HF for the first time."	"Contribution of genetic polymorphisms on functional status at very old age: a gene-based analysis of 38 genes (311 SNPs) in the oxidative stress pathway. Preservation of functional ability is a well-recognized marker of longevity. At a molecular level, a major determinant of the physiological decline occurring with aging is the imbalance between production and accumulation of oxidative damage to macromolecules, together with a decreased efficiency of stress response to avoid or repair such damage. In this paper we investigated the association of 38 genes (311 SNPs) belonging to the pro-antioxidant pathways with physical and cognitive performances, by analyzing single SNP and gene-based associations with Hand Grip strength (HG), Activities of Daily Living (ADL), Walking Speed (WS), Mini Mental State Examination (MMSE) and Composite Cognitive Score (CCS) in a Cohort of 1089 Danish nonagenarians. Moreover, for each gene analyzed in the pro-antioxidant pathway, we tested the influence on longitudinal survival. In the whole sample, nominal associations were found for TXNRD1 variability with ADL and WS, NDUFS1 and UCP3 with HG and WS, GCLC and UCP2 with WS (p&lt;0.05). Stronger associations although not holding the multiple comparison correction, were observed between MMSE and NDUFV1, MT1A and GSTP1 variability (p&lt;0.009). Moreover, we found that association between genetic variability in the pro-antioxidant pathway and functional status at old age is influenced by sex. In particular, most significant associations were observed in nonagenarian females, between HG scores and GLRX and UCP3 variability, between ADL levels and TXNRD1, MMSE and MT1A genetic variability. In males, a borderline statistically significant association with ADL level was found for UQCRFS1 gene. Nominally significant associations in relation to survival were found in the female sample only with SOD2, NDUFS1, UCP3 and TXNRD1 variability, the latter two confirming previous observations reported in the same cohort. Overall, our work supports the evidence that genes belonging to the pro-anti-oxidant pathway are able to modulate physical and cognitive performance after the ninth decade of life, finally influencing extreme survival. "	"[Experimental analysis of human specific protein coding open reading frame c11orf72]. Gene c11orf72 (also known as FLJ90834) included in human gene reference list was previously predicted on the basis oftranscriptome analysis. We show that c11orf72 predicted protein coding open reading frame is specific for human genome and that it is absent from DNAs of other investigated primate species (chimpanzee, macaque). For the first time, we systematically analyzed c11orf72 expression in five normal and two cancerous human tissues (testicles, heart, brain, lung, bladder, bladder tumor and testicular tumor) and found no transcriptional activity there. Promoter of c11orf72, located close to promoter of a housekeeping gene NDUFV1, has shown high methylation level, whereas NDUFV1 promoter was almost free from methylation. The protein product for cllorf72 was analyzed using heterologous expression in human cell lines NT2/D1 (Tera2) and HepG2, in N- and C-terminal fusion constructs with the fluorescent protein TurboGFP. C11orf72 protein showed no cytotoxic or promitotic activity and was distributed diffusely through the cell. Our data confirm the possibility of gain of new protein-coding genes during human evolution due to simple accumulation of point mutations. However, we found no evidence for the functional significance of gene c11orf72."	"Diagnosis of mitochondrial disorders by concomitant next-generation sequencing of the exome and mitochondrial genome. Mitochondrial diseases are notoriously difficult to diagnose due to extreme locus and allelic heterogeneity, with both nuclear and mitochondrial genomes potentially liable. Using exome sequencing we demonstrate the ability to rapidly and cost effectively evaluate both the nuclear and mitochondrial genomes to obtain a molecular diagnosis for four patients with three distinct mitochondrial disorders. One patient was found to have Leigh syndrome due to a mutation in MT-ATP6, two affected siblings were discovered to be compound heterozygous for mutations in the NDUFV1 gene, which causes mitochondrial complex I deficiency, and one patient was found to have coenzyme Q10 deficiency due to compound heterozygous mutations in COQ2. In all cases conventional diagnostic testing failed to identify a molecular diagnosis. We suggest that additional studies should be conducted to evaluate exome sequencing as a primary diagnostic test for mitochondrial diseases, including those due to mtDNA mutations. "	"Targeted exome sequencing of suspected mitochondrial disorders. To evaluate the utility of targeted exome sequencing for the molecular diagnosis of mitochondrial disorders, which exhibit marked phenotypic and genetic heterogeneity. We considered a diverse set of 102 patients with suspected mitochondrial disorders based on clinical, biochemical, and/or molecular findings, and whose disease ranged from mild to severe, with varying age at onset. We sequenced the mitochondrial genome (mtDNA) and the exons of 1,598 nuclear-encoded genes implicated in mitochondrial biology, mitochondrial disease, or monogenic disorders with phenotypic overlap. We prioritized variants likely to underlie disease and established molecular diagnoses in accordance with current clinical genetic guidelines. Targeted exome sequencing yielded molecular diagnoses in established disease loci in 22% of cases, including 17 of 18 (94%) with prior molecular diagnoses and 5 of 84 (6%) without. The 5 new diagnoses implicated 2 genes associated with canonical mitochondrial disorders (NDUFV1, POLG2), and 3 genes known to underlie other neurologic disorders (DPYD, KARS, WFS1), underscoring the phenotypic and biochemical overlap with other inborn errors. We prioritized variants in an additional 26 patients, including recessive, X-linked, and mtDNA variants that were enriched 2-fold over background and await further support of pathogenicity. In one case, we modeled patient mutations in yeast to provide evidence that recessive mutations in ATP5A1 can underlie combined respiratory chain deficiency. The results demonstrate that targeted exome sequencing is an effective alternative to the sequential testing of mtDNA and individual nuclear genes as part of the investigation of mitochondrial disease. Our study underscores the ongoing challenge of variant interpretation in the clinical setting."	"A novel familial case of diffuse leukodystrophy related to NDUFV1 compound heterozygous mutations. NDUFV1 mutations have been related to encephalopathic phenotypes due to mitochondrial energy metabolism disturbances. In this study, we report two siblings affected by a diffuse leukodystrophy, who carry the NDUFV1 c.1156C&gt;T (p.Arg386Cys) missense mutation and a novel 42-bp deletion. Bioinformatic and molecular analysis indicated that this deletion lead to the synthesis of mRNA molecules carrying a premature stop codon, which might be degraded by the nonsense-mediated decay system. Our results add information on the molecular basis and the phenotypic features of mitochondrial disease caused by NDUFV1 mutations. "	"Homozygous missense mutation of NDUFV1 as the cause of infantile bilateral striatal necrosis. NA"	"Leigh syndrome associated with mitochondrial complex I deficiency due to novel mutations In NDUFV1 and NDUFS2. Leigh syndrome (LS) is a progressive neurodegenerative disease caused by either mitochondrial or nuclear DNA mutations resulting in dysfunctional mitochondrial energy metabolism. Mutations in genes encoding for subunits of the respiratory chain or assembly factors of respiratory chain complexes are often documented in LS cases. Nicotinamide adenine dinucleotide (NADH):ubiquinone oxidoreductase (complex I) enzyme deficiencies account for a significant proportion of mitochondrial disorders, including LS. In an attempt to expand the repertoire of known mutations accounting for LS, we describe the clinical, radiological, biochemical and molecular data of six patients with LS found to have novel mutations in two complex I subunits (NDUFV1 and NDUFS2). Two siblings were homozygous for the previously undescribed R386C mutation in NDUFV1, one patient was a compound heterozygote for the R386C mutation in NDUFV1 and a frameshift mutation in the same gene, one patient was a compound heterozygote for the R88G and R199P mutations in NDUFV1, and two siblings were compound heterozygotes for an undescribed E104A mutation in NDUFS2. After the novel mutations were identified, we employed prediction models using protein conservation analysis (SIFT, PolyPhen and UCSC genome browser) to determine pathogenicity. The R386C, R88G, R199P, and E104A mutations were found to be likely pathogenic, and thus presumably account for the LS phenotype. This case series broadens our understanding of the etiology of LS by identifying new molecular defects that can result in complex I deficiency and may assist in targeted diagnostics and/or prenatal diagnosis of LS in the future."	"Expression profiles of mitochondrial genes in the frontal cortex and the caudate nucleus of developing humans and mice selectively bred for high and low fear. A growing body of evidence suggests that mitochondrial function may be important in brain development and psychiatric disorders. However, detailed expression profiles of those genes in human brain development and fear-related behavior remain unclear. Using microarray data available from the public domain and the Gene Ontology analysis, we identified the genes and the functional categories associated with chronological age in the prefrontal cortex (PFC) and the caudate nucleus (CN) of psychiatrically normal humans ranging in age from birth to 50 years. Among those, we found that a substantial number of genes in the PFC (115) and the CN (117) are associated with the GO term: mitochondrion (FDR qv &lt;0.05). A greater number of the genes in the PFC (91%) than the genes in the CN (62%) showed a linear increase in expression during postnatal development. Using quantitative PCR, we validated the developmental expression pattern of four genes including monoamine oxidase B (MAOB), NADH dehydrogenase flavoprotein (NDUFV1), mitochondrial uncoupling protein 5 (SLC25A14) and tubulin beta-3 chain (TUBB3). In mice, overall developmental expression pattern of MAOB, SLC25A14 and TUBB3 in the PFC were comparable to the pattern observed in humans (p&lt;0.05). However, mice selectively bred for high fear did not exhibit normal developmental changes of MAOB and TUBB3. These findings suggest that the genes associated with mitochondrial function in the PFC play a significant role in brain development and fear-related behavior."	"Subunit-specific incorporation efficiency and kinetics in mitochondrial complex I homeostasis. Studies employing native PAGE suggest that most nDNA-encoded CI subunits form subassemblies before assembling into holo-CI. In addition, in vitro evidence suggests that some subunits can directly exchange in holo-CI. Presently, data on the kinetics of these two incorporation modes for individual CI subunits during CI maintenance are sparse. Here, we used inducible HEK293 cell lines stably expressing AcGFP1-tagged CI subunits and quantified the amount of tagged subunit in mitoplasts and holo-CI by non-native and native PAGE, respectively, to determine their CI incorporation efficiency. Analysis of time courses of induction revealed three subunit-specific patterns. A first pattern, represented by NDUFS1, showed overlapping time courses, indicating that imported subunits predominantly incorporate into holo-CI. A second pattern, represented by NDUFV1, consisted of parallel time courses, which were, however, not quantitatively overlapping, suggesting that imported subunits incorporate at similar rates into holo-CI and CI assembly intermediates. The third pattern, represented by NDUFS3 and NDUFA2, revealed a delayed incorporation into holo-CI, suggesting their prior appearance in CI assembly intermediates and/or as free monomers. Our analysis showed the same maximum incorporation into holo-CI for NDUFV1, NDUFV2, NDUFS1, NDUFS3, NDUFS4, NDUFA2, and NDUFA12 with nearly complete loss of endogenous subunit at 24 h of induction, indicative of an equimolar stoichiometry and unexpectedly rapid turnover. In conclusion, the results presented demonstrate that newly formed nDNA-encoded CI subunits rapidly incorporate into holo-CI in a subunit-specific manner."	"Mitochondrial complex I deficiency of nuclear origin I. Structural genes. Complex I (or NADH-ubiquinone oxidoreductase), is by far the largest respiratory chain complex with 38 subunits nuclearly encoded and 7 subunits encoded by the mitochondrial genome. Its deficiency is the most frequently encountered in mitochondrial disorders. Here, we summarize recent data obtained on architecture of complex I, and review the pathogenic mutations identified to date in nuclear structural complex I genes. The structural NDUFS1, NDUFS2, NDUFV1, and NDUFS4 genes are mutational hot spot genes for isolated complex I deficiency. The majority of the pathogenic mutations are private and the genotype-phenotype correlation is inconsistent in the rare recurrent mutations."	"Defective mitochondrial translation differently affects the live cell dynamics of complex I subunits. Complex I (CI) of the oxidative phosphorylation system is assembled from 45 subunits encoded by both the mitochondrial and nuclear DNA. Defective mitochondrial translation is a major cause of mitochondrial disorders and proper understanding of its mechanisms and consequences is fundamental to rational treatment design. Here, we used a live cell approach to assess its consequences on CI assembly. The approach consisted of fluorescence recovery after photobleaching (FRAP) imaging of the effect of mitochondrial translation inhibition by chloramphenicol (CAP) on the dynamics of AcGFP1-tagged CI subunits NDUFV1, NDUFS3, NDUFA2 and NDUFB6 and assembly factor NDUFAF4. CAP increased the mobile fraction of the subunits, but not NDUFAF4, and decreased the amount of CI, demonstrating that CI is relatively immobile and does not associate with NDUFAF4. CAP increased the recovery kinetics of NDUFV1-AcGFP1 to the same value as obtained with AcGFP1 alone, indicative of the removal of unbound NDUFV1 from the mitochondrial matrix. Conversely, CAP decreased the mobility of NDUFS3-AcGFP1 and, to a lesser extent, NDUFB6-AcGFP1, suggestive of their enrichment in less mobile subassemblies. Little, if any, change in mobility of NDUFA2-AcGFP1 could be detected, suggesting that the dynamics of this accessory subunit of the matrix arm remains unaltered. Finally, CAP increased the mobility of NDUFAF4-AcGFP1, indicative of interaction with a more mobile membrane-bound subassembly. Our results show that the protein interactions of CI subunits and assembly factors are differently altered when mitochondrial translation is defective."	"A novel NDUFV1 gene mutation in complex I deficiency in consanguineous siblings with brainstem lesions and Leigh syndrome. Although deficiency of complex I of the mitochondrial respiratory chain is a frequent cause of encephalopathy in children, only a few mutations have been reported in each of its subunits. In the absence of families large enough for conclusive segregation analysis and of robust functional testing, it is difficult to unequivocally show the causality of the observed mutations and to delineate genotype-phenotype correlations, making additional observations necessary. We observed two consanguineous siblings with an early-onset encephalopathy, medulla, brainstem and mesencephalon lesions on brain magnetic resonance imaging and death before 8 months of age, caused by a complex I deficiency. We used a homozygosity mapping approach and identified a missense mutation in the NDUFV1 gene. The mutation, p.Arg386His, affects a highly conserved residue, contiguous to a cysteine residue known to coordinate an Fe ion. This observation adds to our understanding of complex I deficiency disease. It validates the important role of Arg386 and therefore supports the current molecular model of iron-sulfur clusters in NDUFV1."	"A NADH dehydrogenase ubiquinone flavoprotein is decreased in patients with dilated cardiomyopathy. It is known that patients with myocarditis of unknown etiology and with dilated cardiomyopathy show a high incidence of serum autoantibodies (M7) directed against mitochondrial flavoproteins. The tissue concentration of mitochondrial flavoproteins in the myocardium obtained from patients with dilated cardiomyopathy (DCM) was examined to further investigate the immunopathological mechanism of cardiomyopathy. Myocardial tissue specimens were obtained from patients who underwent cardiac catheterization and a subendomyocardial biopsy for the diagnosis of cardiomyopathy. All samples were analyzed by Western blotting. NADH dehydrogenase ubiquinone flavoprotein (NDUFV1) production in the myocardium decreased significantly with DCM, in comparison to fumarate hydratase and flavoprotein SDHA. There was a significant negative-correlation between the left ventricular end-diastolic dimension and NDUFV1 production (R(2)=0.291, p value&lt;0.05). NDUFV1 may be involved in the pathogenesis of DCM. A defect of mitochondrial NDUFV1 may reduce complex I, which produces most of the superoxide, which is then scavenged by the mitochondrial enzyme Mn-superoxide dismutase to produce H(2)O(2). Exploring the nature of the candidate protein found in the myocardium in this study will provide further insight into the immunological mechanism of DCM."	"Novel strong tissue specific promoter for gene expression in human germ cells. Tissue specific promoters may be utilized for a variety of applications, including programmed gene expression in cell types, tissues and organs of interest, for developing different cell culture models or for use in gene therapy. We report a novel, tissue-specific promoter that was identified and engineered from the native upstream regulatory region of the human gene NDUFV1 containing an endogenous retroviral sequence. Among seven established human cell lines and five primary cultures, this modified NDUFV1 upstream sequence (mNUS) was active only in human undifferentiated germ-derived cells (lines Tera-1 and EP2102), where it demonstrated high promoter activity (approximately twice greater than that of the SV40 early promoter, and comparable to the routinely used cytomegaloviral promoter). To investigate the potential applicability of the mNUS promoter for biotechnological needs, a construct carrying a recombinant cytosine deaminase (RCD) suicide gene under the control of mNUS was tested in cell lines of different tissue origin. High cytotoxic effect of RCD with a cell-death rate approximately 60% was observed only in germ-derived cells (Tera-1), whereas no effect was seen in a somatic, kidney-derived control cell line (HEK293). In further experiments, we tested mNUS-driven expression of a hyperactive Sleeping Beauty transposase (SB100X). The mNUS-SB100X construct mediated stable transgene insertions exclusively in germ-derived cells, thereby providing further evidence of tissue-specificity of the mNUS promoter. We conclude that mNUS may be used as an efficient promoter for tissue-specific gene expression in human germ-derived cells in many applications. Our data also suggest that the 91 bp-long sequence located exactly upstream NDUFV1 transcriptional start site plays a crucial role in the activity of this gene promoter in vitro in the majority of tested cell types (10/12), and an important role--in the rest two cell lines."	"Mitochondrial bioenergetics and dynamics interplay in complex I-deficient fibroblasts. Complex I (CI) deficiency is the most frequent cause of OXPHOS disorders. Recent studies have shown increases in reactive oxygen species (ROS) production and mitochondrial network disturbances in patients' fibroblasts harbouring mutations in CI subunits. The present work evaluates the impact of mutations in the NDUFA1 and NDUFV1 genes of CI on mitochondrial bioenergetics and dynamics, in fibroblasts from patients suffering isolated CI deficiency. Decreased oxygen consumption rate and slow growth rate were found in patients with severe CI deficiency. Mitochondrial diameter was slightly increased in patients' cells cultured in galactose or treated with 2'-deoxyglucose without evidence of mitochondrial fragmentation. Expression levels of the main proteins involved in mitochondrial dynamics, OPA1, MFN2, and DRP1, were slightly augmented in all patients' cells lines. The study of mitochondrial dynamics showed delayed recovery of the mitochondrial network after treatment with the uncoupler carbonyl cyanide m-chlorophenyl hydrazone (cccp) in patients with severe CI deficiency. Intracellular ROS levels were not increased neither in glucose nor galactose medium in patients' fibroblasts. Our main finding was that severe CI deficiency in patients harbouring mutations in the NDUFA1 and NDUFV1 genes is linked to a delayed mitochondrial network recovery after cccp treatment. However, the CI deficiency is neither associated with massive mitochondrial fragmentation nor with increased ROS levels. The different genetic backgrounds of patients with OXPHOS disorders would explain, at least partially, differences in the pathophysiological manifestations of CI deficiency."	"Human ind1, an iron-sulfur cluster assembly factor for respiratory complex I. Respiratory complex I (NADH:ubiquinone oxidoreductase) is a large mitochondrial inner membrane enzyme consisting of 45 subunits and 8 iron-sulfur (Fe/S) clusters. While complex I dysfunction is the most common reason for mitochondrial diseases, the assembly of complex I and its Fe/S cofactors remains elusive. Here, we identify the human mitochondrial P-loop NTPase, designated huInd1, that is critically required for the assembly of complex I. huInd1 can bind an Fe/S cluster via a conserved CXXC motif in a labile fashion. Knockdown of huInd1 in HeLa cells by RNA interference technology led to strong decreases in complex I protein and activity levels, remodeling of respiratory supercomplexes, and alteration of mitochondrial morphology. In addition, huInd1 depletion resulted in massive decreases in several subunits (NDUFS1, NDUFV1, NDUFS3, and NDUFA13) of the peripheral arm of complex I, with the concomitant appearance of a 450-kDa subcomplex representing part of the membrane arm. By a novel radiolabeling technique, the amount of iron associated with complex I was also shown to reflect the dependence of this enzyme on huInd1 for assembly. Together, these data identify huInd1 as a new assembly factor for human respiratory complex I with a possible role in the delivery of one or more Fe/S clusters to complex I subunits."	"Rapid screening for nuclear genes mutations in isolated respiratory chain complex I defects. Complex I or reduced nicotinamide adenine dinucleotide (NADH): ubiquinone oxydoreductase deficiency is the most common cause of respiratory chain defects. Molecular bases of complex I deficiencies are rarely identified because of the dual genetic origin of this multi-enzymatic complex (nuclear DNA and mitochondrial DNA) and the lack of phenotype-genotype correlation. We used a rapid method to screen patients with isolated complex I deficiencies for nuclear genes mutations by Surveyor nuclease digestion of cDNAs. Eight complex I nuclear genes, among the most frequently mutated (NDUFS1, NDUFS2, NDUFS3, NDUFS4, NDUFS7, NDUFS8, NDUFV1 and NDUFV2), were studied in 22 cDNA fragments spanning their coding sequences in 8 patients with a biochemically proved complex I deficiency. Single nucleotide polymorphisms and missense mutations were detected in 18.7% of the cDNA fragments by Surveyor nuclease treatment. Molecular defects were detected in 3 patients. Surveyor nuclease screening is a reliable method for genotyping nuclear complex I deficiencies, easy to interpret, and limits the number of sequence reactions. Its use will enhance the possibility of prenatal diagnosis and help us for a better understanding of complex I molecular defects."	"Siblings with leukoencephalopathy. Two consanguineous siblings presented with developmental regression and emerging spasticity. Cranial magnetic resonance imaging in both showed diffuse leukoencephalopathy. Further investigation established the siblings as having complex 1 deficiency consequent to a novel homozygous mutation in NDUFV1, a nuclear-encoded subunit of complex 1. Diffuse leukoencephalopathy may be a presentation of complex 1 deficiency."	"MR spectroscopy and serial magnetic resonance imaging in a patient with mitochondrial cystic leukoencephalopathy due to complex I deficiency and NDUFV1 mutations and mild clinical course. We present clinical, magnetic resonance imaging and MR spectroscopic findings of a female patient, first admitted at the age of 9 months for regression of motor milestones and signs of mild spastic diplegia. Magnetic resonance imaging (MRI) demonstrated periventricular white matter abnormalities with sparing of the subcortical white matter. Subsequent MRIs, performed at the ages of 13 and 16 months, demonstrated progression of the white matter changes, progressive white matter rarefaction and cystic degeneration, and additional involvement of the corpus callosum; only the subcortical white matter remained spared. Proton MR spectroscopy revealed lactate elevation in the white matter. Blood lactate and lactate/pyruvate ratio were mildly elevated. Subsequent analysis of mitochondrial function in muscle tissue showed decreases in substrate oxidation and in ATP and CrP production rates. Complex I activity was seriously decreased, whereas mild decreases of complex II and IV activities were also noted. Analysis of the NDUFV1 gene revealed compound heterozygosity for two point mutations, each of them carried by one parent. The further clinical course of the patient was uphill; she slowly regained all previously lost motor milestones. In conclusion, diffuse white matter changes on MRI are compatible with mitochondrial encephalopathy and not necessarily associated with a severe clinical course."	"Neuroanatomical pattern of mitochondrial complex I pathology varies between schizophrenia, bipolar disorder and major depression. Mitochondrial dysfunction was reported in schizophrenia, bipolar disorderand major depression. The present study investigated whether mitochondrial complex I abnormalities show disease-specific characteristics. mRNA and protein levels of complex I subunits NDUFV1, NDUFV2 and NADUFS1, were assessed in striatal and lateral cerebellar hemisphere postmortem specimens and analyzed together with our previous data from prefrontal and parieto-occipital cortices specimens of patients with schizophrenia, bipolar disorder, major depression and healthy subjects. A disease-specific anatomical pattern in complex I subunits alterations was found. Schizophrenia-specific reductions were observed in the prefrontal cortex and in the striatum. The depressed group showed consistent reductions in all three subunits in the cerebellum. The bipolar group, however, showed increased expression in the parieto-occipital cortex, similar to those observed in schizophrenia, and reductions in the cerebellum, yet less consistent than the depressed group. These results suggest that the neuroanatomical pattern of complex I pathology parallels the diversity and similarities in clinical symptoms of these mental disorders."	"Subunits of mitochondrial complex I exist as part of matrix- and membrane-associated subcomplexes in living cells. Mitochondrial complex I (CI) is a large assembly of 45 different subunits, and defects in its biogenesis are the most frequent cause of mitochondrial disorders. In vitro evidence suggests a stepwise assembly process involving pre-assembled modules. However, whether these modules also exist in vivo is as yet unresolved. To answer this question, we here applied submitochondrial fluorescence recovery after photobleaching to HEK293 cells expressing 6 GFP-tagged subunits selected on the basis of current CI assembly models. We established that each subunit was partially present in a virtually immobile fraction, possibly representing the holo-enzyme. Four subunits (NDUFV1, NDUFV2, NDUFA2, and NDUFA12) were also present as highly mobile matrix-soluble monomers, whereas, in sharp contrast, the other two subunits (NDUFB6 and NDUFS3) were additionally present in a slowly mobile fraction. In the case of the integral membrane protein NDUFB6, this fraction most likely represented one or more membrane-bound subassemblies, whereas biochemical evidence suggested that for the NDUFS3 protein this fraction most probably corresponded to a matrix-soluble subassembly. Our results provide first time evidence for the existence of CI subassemblies in mitochondria of living cells."	"Mitigation of NADH: ubiquinone oxidoreductase deficiency by chronic Trolox treatment. Deficiency of mitochondrial NADH:ubiquinone oxidoreductase (complex I), is associated with a variety of clinical phenotypes such as Leigh syndrome, encephalomyopathy and cardiomyopathy. Circumstantial evidence suggests that increased reactive oxygen species (ROS) levels contribute to the pathogenesis of these disorders. Here we assessed the effect of the water-soluble vitamin E derivative Trolox on ROS levels, and the amount and activity of complex I in fibroblasts of six children with isolated complex I deficiency caused by a mutation in the NDUFS1, NDUFS2, NDUFS7, NDUFS8 or NDUFV1 gene. Patient cells displayed increased ROS levels and a variable decrease in complex I activity and amount. For control cells, the ratio between activity and amount was 1 whereas for the patients this ratio was below 1, indicating a defect in intrinsic catalytic activity of complex I in the latter cells. Trolox treatment dramatically reduced ROS levels in both control and patient cells, which was paralleled by a substantial increase in the amount of complex I. Although the ratio between the increase in activity and amount of complex I was exactly proportional in control cells it varied between 0.1 and 0.8 for the patients. Our findings suggest that the expression of complex I is regulated by ROS. Furthermore, they provide evidence that both the amount and intrinsic activity of complex I are decreased in inherited complex I deficiency. The finding that Trolox treatment increased the amount of complex I might aid the future development of antioxidant treatment strategies for patients. However, such treatment may only be beneficial to patients with a relatively small reduction in intrinsic catalytic defect of the complex."	"Clinical complete long-term remission of a patient with metastatic malignant melanoma under therapy with indisulam (E7070). The objective of this study is to report on long-term survival of a patient with metastatic melanoma treated with indisulam showing a distinct genetic pattern of repression of subsets of genes involved in mitochondrial energy metabolism. Gene expression profiling was performed with oligonucleotide microarray analysis. A 45-year-old patient with metastatic malignant melanoma was treated in third-line with indisulam (goal, E7070), a new chloroindolyl-sulphonamide cell-cycle inhibitor. The patient was treated weekly with a dose of 40 mg/m within a phase I study. On the basis of an amendment, the dose was escalated to 320 mg/m at maximum and de-escalated to 160 mg/m for long-term application in this individual patient. At the start of treatment the tumour burden consisted of two-in-transit-metastases, two further skin lesions, two cervical lymph nodes and four pulmonary metastases. Under a 2.5-year treatment with indisulam the tumour shrunk markedly although the objective response only reached stable disease. Lymph node biopsy revealed absence of vital melanoma cells. Therapy was stopped upon request of the patient. The gene expression profile indicated a profound transcriptional repression of subsets of genes involved in mitochondrial energy metabolism; namely NDUFB8, NDUFS1, NDUFV1, ACADVL and Homo sapiens clone 24408. The survival of this patient with metastatic melanoma lasted now 9 years, the progression-free interval 105 months. It can be assumed that this treatment effect is attributed to the down-regulating effect of indisulam on metabolic genes involved in energy production. Thus, knowledge on individual's tumour gene regulation may predict sensitivity and resistance to antitumoural agents."	"Sp1 expression is disrupted in schizophrenia; a possible mechanism for the abnormal expression of mitochondrial complex I genes, NDUFV1 and NDUFV2. The prevailing hypothesis regards schizophrenia as a polygenic disease, in which multiple genes combine with each other and with environmental stimuli to produce the variance of its clinical symptoms. We investigated whether the ubiquitous transcription factor Sp1 is abnormally expressed in schizophrenia, and consequently can affect the expression of genes implicated in this disorder. mRNA of Sp1 and of mitochondrial complex I subunits (NDUFV1, NDUFV2) was analyzed in three postmortem brain regions obtained from the Stanley Foundation Brain Collection, and in lymphocytes of schizophrenic patients and controls. Sp1 role in the transcription of these genes was studied as well. Sp1 was abnormally expressed in schizophrenia in both brain and periphery. Its mRNA alteration pattern paralleled that of NDUFV1 and NDUFV2, decreasing in the prefrontal cortex and the striatum, while increasing in the parieto-occipital cortex and in lymphocytes of schizophrenic patients as compared with controls. Moreover, a high and significant correlation between these genes existed in normal subjects, but was distorted in patients. Sp1 role in the regulation of complex I subunits, was demonstrated by the ability of the Sp1/DNA binding inhibitor, mithramycin, to inhibit the transcription of NDUFV1 and NDUFV2, in neuroblastoma cells. In addition, Sp1 activated NDUFV2 promoter by binding to its three GC-boxes. Both activation and binding were inhibited by mithramycin. These findings suggest that abnormality in Sp1, which can be the main activator/repressor or act in combination with additional transcription factors and is subjected to environmental stimuli, can contribute to the polygenic and clinically heterogeneous nature of schizophrenia."	"Analysis of the assembly profiles for mitochondrial- and nuclear-DNA-encoded subunits into complex I. Complex I of the respiratory chain is composed of at least 45 subunits that assemble together at the mitochondrial inner membrane. Defects in human complex I result in energy generation disorders and are also implicated in Parkinson's disease and altered apoptotic signaling. The assembly of this complex is poorly understood and is complicated by its large size and its regulation by two genomes, with seven subunits encoded by mitochondrial DNA (mtDNA) and the remainder encoded by nuclear genes. Here we analyzed the assembly of a number of mtDNA- and nuclear-gene-encoded subunits into complex I. We found that mtDNA-encoded subunits first assemble into intermediate complexes and require significant chase times for their integration into the holoenzyme. In contrast, a set of newly imported nuclear-gene-encoded subunits integrate with preexisting complex I subunits to form intermediates and/or the fully assembly holoenzyme. One of the intermediate complexes represents a subassembly associated with the chaperone B17.2L. By using isolated patient mitochondria, we show that this subassembly is a productive intermediate in complex I assembly since import of the missing subunit restores complex I assembly. Our studies point to a mechanism of complex I biogenesis involving two complementary processes, (i) synthesis of mtDNA-encoded subunits to seed de novo assembly and (ii) exchange of preexisting subunits with newly imported ones to maintain complex I homeostasis. Subunit exchange may also act as an efficient mechanism to prevent the accumulation of oxidatively damaged subunits that would otherwise be detrimental to mitochondrial oxidative phosphorylation and have the potential to cause disease."	"Investigation of the complex I assembly chaperones B17.2L and NDUFAF1 in a cohort of CI deficient patients. Dysfunction of complex I (NADH:ubiquinone oxidoreductase; CI), the largest enzyme of the oxidative phosphorylation (OXPHOS) system, often results in severe neuromuscular disorders and early childhood death. Mutations in its seven mitochondrial and 38 nuclear DNA-encoded structural components can only partly explain these deficiencies. Recently, CI assembly chaperones NDUFAF1 and B17.2L were linked to CI deficiency, but it is still unclear by which mechanism. To better understand their requirement during assembly we have studied their presence in CI subcomplexes in a cohort of CI deficient patients using one- and two-dimensional blue-native PAGE. This analysis revealed distinct differences between their associations to subcomplexes in different patients. B17.2L occurred in a 830 kDa subcomplex specifically in patients with mutations in subunits NDUFV1 and NDUFS4. Contrasting with this seemingly specific requirement, the previously described NDUFAF1 association to 500-850 kDa intermediates did not appear to be related to the nature and severity of the CI assembly defect. Surprisingly, even in the absence of assembly intermediates in a patient harboring a mutation in translation elongation factor G1 (EFG1), NDUFAF1 remained associated to the 500-850 kDa subcomplexes. These findings illustrate the difference in mechanism between B17.2L and NDUFAF1 and suggest that the involvement of NDUFAF1 in the assembly process could be indirect rather than direct via the binding to assembly intermediates."	"Early-onset ophthalmoplegia in Leigh-like syndrome due to NDUFV1 mutations. Mitochondrial disorders can be linked to mutations in both mitochondrial and nuclear deoxyribonucleic acid, corresponding to various clinical phenotypes. Mutations in nuclear genes, including NDUFV1, have been associated with severe encephalomyopathies in infants, but genotype-phenotype correlations have remained elusive. This report details the complete clinical, biochemical, and molecular data of a 7-year-old male who presented at the age of 7 months with progressive ophthalmoplegia and later developed cerebellar ataxia, spasticity, and dystonia. Complex I deficiency was demonstrated in muscle, and two pathogenic missense mutations were present in the NDUFV1 gene. Ketogenic diet has seemingly improved the oculomotor palsy but has been unable to correct other neurologic symptoms. Considering other cases from the literature, this report broadens our understanding of genotype-phenotype correlations for NDUFV1 mutations and illustrates a potential and partial efficacy of ketogenic diet in complex I deficient patients."	"Sequence analysis of nuclear genes encoding functionally important complex I subunits in children with encephalomyopathy. Complex I has a vital role in the energy production of the cell, and the clinical spectrum of complex I deficiency varies from severe lactic acidosis in infants to muscle weakness in adults. It has been estimated that the cause of complex I deficiency, especially in children, is often a mutation in the nuclear-encoded genes and, more rarely, in the genes encoded by mitochondrial DNA. We sequenced nine complex I subunit coding genes, NDUFAB1, NDUFS1, NDUFS2, NDUFS3, NDUFS4, NDUFS7, NDUFS8, NDUFV1 and NDUFV2, in 13 children with defined complex I deficiency. Two novel substitutions were found: a synonymous replacement 201A&gt;T in NDUFV2 and a non-synonymous base exchange 52C&gt;T in NDUFS8. The 52C&gt;T substitution produced the replacement Arg18Cys in the leading peptide of the TYKY subunit. This novel missense mutation was found as a heterozygote in one patient and her mother, but not among 202 healthy controls nor among 107 children with undefined encephalomyopathy. Bioinformatic analyses suggested that Arg18Cys could lead to marked changes in the physicochemical properties of the mitochondrial-targeting peptide of TYKY, but we could not see changes in the assembly or activity of complex I or in the transcription of NDUFS8 in the fibroblasts of our patient. We suggest that Arg18Cys in the leading peptide of the TYKY subunit is not solely pathogenic, and that other genetic factors contribute to the disease-causing potential of this mutation."	"A high-fat diet coordinately downregulates genes required for mitochondrial oxidative phosphorylation in skeletal muscle. Obesity and type 2 diabetes have been associated with a high-fat diet (HFD) and reduced mitochondrial mass and function. We hypothesized a HFD may affect expression of genes involved in mitochondrial function and biogenesis. To test this hypothesis, we fed 10 insulin-sensitive males an isoenergetic HFD for 3 days with muscle biopsies before and after intervention. Oligonucleotide microarray analysis revealed 297 genes were differentially regulated by the HFD (Bonferonni adjusted P &lt; 0.001). Six genes involved in oxidative phosphorylation (OXPHOS) decreased. Four were members of mitochondrial complex I: NDUFB3, NDUFB5, NDUFS1, and NDUFV1; one was SDHB in complex II and a mitochondrial carrier protein SLC25A12. Peroxisome proliferator-activated receptor gamma coactivator-1 (PGC1) alpha and PGC1beta mRNA were decreased by -20%, P &lt; 0.01, and -25%, P &lt; 0.01, respectively. In a separate experiment, we fed C57Bl/6J mice a HFD for 3 weeks and found that the same OXPHOS and PGC1 mRNAs were downregulated by approximately 90%, cytochrome C and PGC1alpha protein by approximately 40%. Combined, these results suggest a mechanism whereby HFD downregulates genes necessary for OXPHOS and mitochondrial biogenesis. These changes mimic those observed in diabetes and insulin resistance and, if sustained, may result in mitochondrial dysfunction in the prediabetic/insulin-resistant state."	"Leigh syndrome associated with mitochondrial complex I deficiency due to a novel mutation in the NDUFS1 gene. Mutations in the nuclear-encoded subunits of complex I of the mitochondrial respiratory chain are a recognized cause of Leigh syndrome (LS). Recently, 6 mutations in the NDUFS1 gene were identified in 3 families. To describe a Spanish family with LS, complex I deficiency in muscle, and a novel mutation in the NDUFS1 gene. Using molecular genetic approaches, we identified the underlying molecular defect in a patient with LS with a complex I defect. The proband was a child who displayed the clinical features of LS. Muscle biochemistry results showed a complex I defect of the mitochondrial respiratory chain. Sequencing analysis of the mitochondrial DNA-encoded ND genes, the nuclear DNA-encoded NDUFV1, NDUFS1, NDUFS2, NDUFS4, NDUFS6, NDUFS7, NDUFS8, and NDUFAB1 genes, and the complex I assembly factor CIA30 gene revealed a novel homozygous L231V mutation (c.691C--&gt;G) in the NDUFS1 gene. The parents were heterozygous carriers of the L231V mutation. Identifying nuclear mutations as a cause of respiratory chain disorders will enhance the possibility of prenatal diagnosis and help us understand how molecular defects can lead to complex I deficiency."	"Clinical and molecular findings in children with complex I deficiency. Isolated complex I deficiency, the most frequent OXPHOS disorder in infants and children, is genetically heterogeneous. Mutations have been found in seven mitochondrial DNA (mtDNA) and eight nuclear DNA encoded subunits, respectively, but in most of the cases the genetic basis of the biochemical defect is unknown. We analyzed the entire mtDNA and 11 nuclear encoded complex I subunits in 23 isolated complex I-deficient children, classified into five clinical groups: Leigh syndrome, progressive leukoencephalopathy, neonatal cardiomyopathy, severe infantile lactic acidosis, and a miscellaneous group of unspecified encephalomyopathies. A genetic definition was reached in eight patients (35%). Mutations in mtDNA were found in six out of eight children with Leigh syndrome, indicating a prevalent association between this phenotype and abnormalities in ND genes. In two patients with leukoencephalopathy, homozygous mutations were detected in two different nuclear-encoded complex I genes, including a novel transition in NDUFS1 subunit. In addition to these, a child affected by mitochondrial encephalomyopathy had heterozygous mutations in NDUFA8 and NDUFS2 genes, while another child with neonatal cardiomyopathy had a complex rearrangement in a single NDUFS7 allele. The latter cases suggest the possibility of unconventional patterns of inheritance in complex I defects."	"[The tissue-specific methylation of human-specific endogenous retroviral long terminal repeats]. A possible involvement of retroelements in the epigenetic regulation of human gene expression was considered by the example of methylation of long terminal repeats (LTRs) of the human endogenous retrovirus family K (HERV-K). The methylation status of six HERV-K LTRs was determined in various gene-enriched regions of the human genome. The methylation of four LTRs was shown to be tissue-specific. Our results correlated with published data on the tissue-specific changes in the expression level of human genes adjacent to the LTRs under study. The English version of the paper: Russian Journal of Bioorganic Chemistry, 2004, vol. 30, no. 5; see also http: // www.maik.ru."	"Oxidative modification of mitochondrial respiratory complexes in response to the stress of Trypanosoma cruzi infection. Previously, we have shown deficiencies in the activities of the mitochondrial respiratory complexes and reduced mitochondrial ATP generation capacity in chagasic hearts infected by Trypanosoma cruzi. In this study, we determined whether the oxidative stress that occurs in response to T. cruzi infection contributes to the catalytic impairment of respiratory complexes and to subsequent mitochondrial dysfunction in murine myocardium. Our data show that oxidative injuries, as determined by the levels of lipid peroxides and protein carbonyls, are incurred in cardiac mitochondria as early as 3 days postinfection and persist throughout the infection and disease. The individual components of the respiratory complexes were separated by two-dimensional, blue-native gel electrophoresis, and carbonyl adducts were detected by Western blotting. We observed substantial carbonylation of the specific subunits of mitochondrial respiratory complexes in infected murine hearts. Of note is the oxidative modification of NDUFS1, NDUFS2, and NDUFV1, which form the catalytic core of the CI complex; UQCRC1, UQCRC2, and UQCRQ, the subunits of the core subcomplex, and UQCRH and CYC1, which form the cyt c(1) subcomplex of CIII; and a gamma chain that is essential for ATP synthesis by CV complex. The extent of oxidative modifications of the subunits correlated with the catalytic defects of the respiratory complexes in the infected myocardium. Taken together, our data demonstrate that respiratory complexes are oxidatively damaged in response to the stress of T. cruzi infection. These data also suggest involvement of the specific susceptibility of the protein subunits, and not generalized mitochondrial oxidative damage in respiratory chain impairment of chagasic hearts."	"Mitochondrial complex I mutations in Caenorhabditis elegans produce cytochrome c oxidase deficiency, oxidative stress and vitamin-responsive lactic acidosis. Mitochondrial dysfunction, with an estimated incidence of 1 in 10 000 live births, is among the most common genetically determined conditions. Missense mutations in the human NDUFV1 gene, which encodes the 51 kDa active site subunit of the NADH-ubiquinone oxidoreductase or complex I, can lead to severe neurological disorders. Owing to the rare and often sporadic nature of mitochondrial disorders, the mechanisms of pathogenesis of most mutations remain poorly understood. We have generated transgenic strains of Caenorhabditis elegans that express disease-causing mutations in the nuo-1 gene, the C. elegans homolog of the NDUFV1 gene. The transgenic strains demonstrate hallmark features of complex I dysfunction such as lactic acidosis and decreased NADH-dependent mitochondrial respiration. They are also hypersensitive to exogenous oxidative stress, suggesting that cellular defense mechanisms against reactive oxygen species are already taxed by an endogenous stress. The lactic acidosis induced by the NDUFV1 mutations could be partially corrected with the vitamins riboflavin and thiamine or with sodium dichloroacetate, an activator of the pyruvate dehydrogenase complex, resulting in significant increases in animal fitness. Surprisingly, cytochrome c oxidase activity and protein levels were reduced, establishing a connection between complexes I and IV. Our results indicate that complex I mutations exert their pathogenic effects in multiple ways: by impeding the metabolism of NADH, by increasing the production of reactive oxygen species, and by interfering with the function or assembly of other mitochondrial respiratory chain components."	"Genotyping microsatellite DNA markers at putative disease loci in inbred/multiplex families with respiratory chain complex I deficiency allows rapid identification of a novel nonsense mutation (IVS1nt -1) in the NDUFS4 gene in Leigh syndrome. Complex I deficiency, the most common cause of mitochondrial disorders, accounts for a variety of clinical symptoms and its genetic heterogeneity makes identification of the disease genes particularly tedious. Indeed, most of the 43 complex I subunits are encoded by nuclear genes, only seven of them being mitochondrially encoded. In order to offer urgent prenatal diagnosis, we have studied an inbred/multiplex family with complex I deficiency by using microsatellite DNA markers flanking the putative disease loci. Microsatellite DNA markers have allowed us to exclude the NDUFS7, NDUFS8, NDUFV1 and NDUFS1 genes and to find homozygosity at the NDUFS4 locus. Direct sequencing has led to identification of a homozygous splice acceptor site mutation in intron 1 of the NDUFS4 gene (IVS1nt -1, G--&gt;A); this was not found in chorion villi of the ongoing pregnancy. We suggest that genotyping microsatellite DNA markers at putative disease loci in inbred/multiplex families helps to identify the disease-causing mutation. More generally, we suggest giving consideration to a more systematic microsatellite analysis of putative disease loci for identification of disease genes in inbred/multiplex families affected with genetically heterogeneous conditions."	"[Complex I deficiency due to mutations in nuclear-encoded subunit genes]. NA"	"New nuclear encoded mitochondrial mutation illustrates pitfalls in prenatal diagnosis by biochemical methods. NA"	"Prenatal diagnosis of respiratory chain deficiency by direct mutation screening. Respiratory chain deficiency (RCD) is responsible for a clinically heterogeneous group of early-onset untreatable disorders. Enzymological prenatal diagnosis (PD) can only be offered to a fraction of families. Moreover, due to the two-fold genetic origin of the respiratory chain (nuclear and mitochondrial DNA) and owing to the large number of nuclear genes involved in the respiratory chain assembly, maintenance and functioning, the identification of the disease causing gene in a given family remains challenging. Here, we report on PD of RCD by direct screening of NDUFV1, SDH-Fp, SCO1 and SURF1 mutations in five unrelated families with complex I, II and IV deficiency, respectively. The identification of the disease-causing gene in a given family with RCD is a major issue to provide both adequate genetic counselling and early, reliable PD."	"Large-scale deletion and point mutations of the nuclear NDUFV1 and NDUFS1 genes in mitochondrial complex I deficiency. Reduced nicotinamide adenine dinucleotide (NADH):ubiquinone oxidoreductase (complex I) is the largest complex of the mitochondrial respiratory chain and complex I deficiency accounts for approximately 30% cases of respiratory-chain deficiency in humans. Only seven mitochondrial DNA genes, but &gt;35 nuclear genes encode complex I subunits. In an attempt to elucidate the molecular bases of complex I deficiency, we studied the six most-conserved complex I nuclear genes (NDUFV1, NDUFS8, NDUFS7, NDUFS1, NDUFA8, and NDUFB6) in a series of 36 patients with isolated complex I deficiency by denaturing high-performance liquid chromatography and by direct sequencing of the corresponding cDNA from cultured skin fibroblasts. In 3/36 patients, we identified, for the first time, five point mutations (del222, D252G, M707V, R241W, and R557X) and one large-scale deletion in the NDUFS1 gene. In addition, we found six novel NDUFV1 mutations (Y204C, C206G, E214K, IVS 8+41, A432P, and del nt 989-990) in three other patients. The six unrelated patients presented with hypotonia, ataxia, psychomotor retardation, or Leigh syndrome. These results suggest that screening for complex I nuclear gene mutations is of particular interest in patients with complex I deficiency, even when normal respiratory-chain-enzyme activities in cultured fibroblasts are observed."	"Human complex I defects can be resolved by monoclonal antibody analysis into distinct subunit assembly patterns. Complex I defects are one of the most frequent causes of mitochondrial respiratory chain disorders. Therefore, it is important to find new approaches for detecting and characterizing Complex I deficiencies. In this paper, we introduce a new set of monoclonal antibodies that react with 39-, 30-, 20-, 18-, 15-, and 8-kDa subunits of Complex I. These antibodies are shown to aid in diagnosis of Complex I deficiencies and add understanding to the genotype-phenotype relationships of different mutations. A total of 11 different patients were examined. Four patients had undefined Complex I defects, whereas the other patients had defects in NDUFV1, NDUFS2 (two patients), NDUFS4 (two patients), NDUFS7, and NDUFS8. We show here that Western blotting with these antibodies, particularly when used in conjunction with sucrose gradient studies and enzymatic activity measurements, helps distinguish catalytic versus assembly defects and further distinguishes between mutations in different subunits. Furthermore, different mutations in the same gene are shown to give very similar subunit profiles, and we show that one of the patients is a good candidate for having a defect in a Complex I assembly factor."	"Mutant NDUFV1 subunit of mitochondrial complex I causes leukodystrophy and myoclonic epilepsy. NA"	"The structure of the human NDUFV1 gene encoding the 51-kDa subunit of mitochondrial complex I. The genomic organization of the human 51-kDa subunit gene (NDUFV1) on human Chromosome (Chr) 11q13 was determined. The NDUFV1 gene consists of 10 exons. Exon 1 encodes for the 20-amino-acids-long import sequence, and exon 1 through 10 codes for the 444-amino-acids-long mature protein. The protein sequence is highly conserved between human and bovine. Northern blotting analysis showed that the NDUFV1 gene expression varies widely among tissues and that in testis a unique mRNA species is present. In comparison with the other complex I flavoproteins, the expression of the 51-kDa gene in pancreatic tissue is high."	"Cloning of the human mitochondrial 51 kDa subunit (NDUFV1) reveals a 100% antisense homology of its 3'UTR with the 5'UTR of the gamma-interferon inducible protein (IP-30) precursor: is this a link between mitochondrial myopathy and inflammation? We report the cloning of the genomic and cDNA of the human 51 kDa subunit (NDUFV1) of mitochondrial complex I. The 6 kbp NDUFV1 gene is composed of 10 exons. All intron-exon boundaries comply to the consensus sequence for splice donor and acceptor sites. Within the 5' flanking region we identified a putative binding site for NRF-2, a GATA- and GC-box element. Canonical TATA- or CCAAT-boxes were absent, the transcriptional start site, however, lies within a CpG island, which is consistent with the &quot;housekeeping&quot; function of the gene. Within the coding sequence we detected consensus motifs for NADH, FMN, and iron-sulfur binding sites. The amino acid sequence homology between human and cow is 96.9%. Surprisingly we found a 48 bp long complete antisense homology between the 3'UTR of the NDUFV1-mRNA and the 5'UTR of the mRNA for the gamma-interferon inducible protein precursor (IP-30). This finding is intriguing since both genes lie on different chromosomes. The exact function of IP-30 is not yet known, but it may play a role in gamma-interferon mediated immune reactions. The NDUFV1-mRNA might act as an antisense suppresser, thus restraining translation of IP-30 in tissues with high energy demand. This finding could be a molecular link between complex I deficiency and inflammatory myopathy which have been repeatedly described to occur together."	"Chromosomal localization of the human gene encoding the 51-kDa subunit of mitochondrial complex I (NDUFV1) to 11q13. The 51-kDa flavoprotein subunit of mitochondrial NADH:ubiquinone oxidoreductase (Complex I) [NADH dehydrogenase (ubiquinone), flavoprotein 1 (51 kDa); EC 1.6.5.3] plays an important role in the formation of the NADH-binding site and is believed to be the principal site of entry for electrons donated by NADH into the respiratory chain. Human cDNA fragments of the 51-kDa protein were generated by polymerase chain reaction and used to localize the gene (NDUFV1) for this subunit to 11q13 by two separate techniques. This region of the human genome is strongly implicated in a number of different forms of cancer."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SCO2"	"Leigh syndrome"	"Genetic and environmental factors related to the development of myopic maculopathy in Spanish patients. High myopia and the subsequent degenerative changes of the retina, choroid, and sclera, known as myopic maculopathy (MM), are a serious visual problem in many Asian countries, and are beginning to be so in the south of Europe, especially in the Mediterranean. It is therefore necessary to carry out genetic and environmental studies to determine the possible causes of this disease. This study aims to verify if the genetic factors that have been most related to Asian populations are also associated in two Spanish cohorts. Eight SNPs from six genes (PAX6, SCO2, CCDC102B, BLID, chromosome 15q14, and COL8A1) along with demographic, ophthalmic and environmental factors were analysed in two cohorts from a total of 365 highly myopic subjects and 177 control subjects. The genetic analysis showed that COL8A1 SNP rs13095226 was associated with the development of choroidal neovascularization (CNV) and also seems to play an important role in the increase of axial length. The SNP rs634990 of chromosome 15q14 also showed a significant association with MM, although this was lost after the Bonferroni correction. Additional demographic and environmental factors, namely age, sex, smoking status, and pregnancy history, were also found to be associated with MM and CNV in this population."	"Cerebral oxygenation during pediatric congenital cardiac surgery and its association with outcome: a retrospective observational study. Non-invasive cerebral oxygen saturation (ScO2) monitoring is an established tool in the intraoperative phase of pediatric congenital cardiac surgery (CCS). This study investigated the association between ScO2 and postoperative outcome by investigating both baseline ScO2 values and intraoperative desaturations from baseline. All CCS procedures performed in the period 2010-2017 in our institution in which ScO2 was monitored were included in this historical cohort study. Baseline ScO2 was determined after tracheal intubation, before surgical incision. Subgroups were based on cardiac pathology and degree of intracardiac shunting. Poor outcome was defined based on length of stay (LOS) in the intensive care unit (ICU)/hospital, duration of mechanical ventilation (MV), and 30-day mortality. Intraoperatively, ScO2 total time below baseline (TBBL) and ScO2 time-weighted average (TWA) were calculated. Data from 565 patients were analyzed. Baseline ScO2 was significantly associated with LOS in ICU (odds ratio [OR] per percentage decrease in baseline ScO2, 0.95; 95% confidence interval [CI], 0.93 to 0.97; P &lt; 0.001), with LOS in hospital (OR, 0.93; 95% CI, 0.91 to 0.96; P &lt; 0.001), with MV duration (OR, 0.92; 95% CI, 0.90 to 0.95; P &lt; 0.001) and with 30-day mortality (OR, 0.94; 95% CI, 0.91 to 0.98; P = 0.007). Cerebral oxygen saturation TWA had no associations, while ScO2 TBBL had only a small association with LOS in ICU (OR, 1.02; 95% CI, 1.01 to 1.03; P &lt; 0.001), MV duration (OR,1.02; 95% CI, 1.01 to 1.03; P = 0.002), and LOS in hospital (OR, 1.02; 95% CI, 1.01 to 1.04; P &lt; 0.001). In pediatric patients undergoing cardiac surgery, low baseline ScO2 values measured after tracheal intubation were associated with several adverse postoperative outcomes. In contrast, the severity of actual intraoperative cerebral desaturation was not associated with postoperative outcomes. Baseline ScO2 measured after tracheal intubation may help identify patients at increased perioperative risk."	"Coffee grounds derived N enriched microporous activated carbons: Efficient adsorbent for post-combustion CO2 capture and conversion. N enriched microporous active carbons (CACs) were successfully obtained with coffee grounds as precursor and KOH as activator, which were used for the capture and conversion of CO2 from post-combustion. The influence of preparation parameters, such as the temperature of activation and KOH/carbon ratio on textural properties of CACs were studied. N2 adsorption-desorption, XRD, Raman, SEM and XPS were used for characterization of the CACs. The adsorption capacities of CO2 CACs-2-800 are 6.22 mmol·g<sup>-1</sup> (1 bar) and 2.37 mmol·g<sup>-1</sup> (0.15 bar) at 273 K. CACs-2-800 also have high selectivity of CO2/N2 (SCO2/N2 = 33) and good adsorption-desorption recycle stability. Furthermore, the CACs-2-800 showed high catalytic activity for the cycloaddition of CO2 to epichlorohydrin. The good CO2 adsorption capacity, selectivity and catalytic performance indicated that CACs-2-800 could be used for the capture and conversion of CO2 from post-combustion."	"Dynamics of cerebral oxygenation during rapid ventricular pacing and its impact on outcome in transfemoral transcatheter aortic valve implantation. Cerebral O2 saturation (ScO2 ) reflects cerebral perfusion and can be measured noninvasively by near-infrared spectroscopy (NIRS). In this pilot study, we describe the dynamics of ScO2 during TAVI in nonventilated patients and its impact on procedural outcome. We measured ScO2 of both frontal lobes continuously by NIRS in 50 consecutive analgo-sedated patients undergoing transfemoral TAVI (female 58%, mean age 80.8 years). Compared to baseline ScO2 dropped significantly during RVP (59.3% vs. 53.9%, p &lt; .01). Five minutes after RVP ScO2 values normalized (post RVP 62.6% vs. 53.9% during RVP, p &lt; .01; pre 61.6% vs. post RVP 62.6%, p = .53). Patients with an intraprocedural pathological ScO2 decline of &gt;20% (n = 13) had higher EuroSCORE II (3.42% vs. 5.7%, p = .020) and experienced more often delirium (24% vs. 62%, p = .015) and stroke (0% vs. 23%, p &lt; .01) after TAVI. Multivariable logistic regression revealed higher age and large ScO2 drops as independent risk factors for delirium. During RVP ScO2 significantly declined compared to baseline. A ScO2 decline of &gt;20% is associated with a higher incidence of delirium and stroke and a valid cut-off value to screen for these complications. NIRS measurement during TAVI procedure may be an easy to implement diagnostic tool to detect patients at high risks for cerebrovascular complications and delirium."	"The eternal battle to combat global warming: (thio)urea as a CO2 wet scrubbing agent. (Thio)Urea scaffolds are best known for their importance as intermediates in organic synthesis. In this work, a mechanistic study of the reaction between urea (U), (2-hydroxyethyl)urea (U-EtOH) and thiourea (tU)/NaH in DMSO with CO2 was carried out. While both U/tU reacted with CO2via a 1 : 2 mechanism through the formation of the keto (thio)carbamide-carboxylate adducts (k-U/tU-CO2- Na+), U-EtOH gave mixed CO2-adducts composed of organic carbonate and carbamide-carboxylate moieties (Na+-CO2-U-Et-OCO2- Na+). Moreover, we recorded for the first time, a new type of bond, namely sodium carbamimidothiocarbonate (e-tU-SCO2- Na+), upon bubbling CO2 in the DMSO solution of tU due to the persistence of the enol form (e-tU) and the better nucleophilicity of sulfur over nitrogen focal points. The reaction mechanisms were proven by 1D and 2D nuclear magnetic resonance (NMR) and ex situ attenuated total reflectance-Fourier transform infrared (ATR-FTIR) spectroscopies. The stability of these bonds was studied following the changes in 1H-NMR as a function of temperature, which indicated the reversibility of these reactions. Furthermore, the proposed mechanisms were explored theoretically via density functional theory (DFT) calculations by analyzing the energetics of the anticipated products."	"COA6 Facilitates Cytochrome c Oxidase Biogenesis as Thiol-reductase for Copper Metallochaperones in Mitochondria. The mitochondrial cytochrome c oxidase, the terminal enzyme of the respiratory chain, contains heme and copper centers for electron transfer. The conserved COX2 subunit contains the CuA site, a binuclear copper center. The copper chaperones SCO1, SCO2, and COA6, are required for CuA center formation. Loss of function of these chaperones and the concomitant cytochrome c oxidase deficiency cause severe human disorders. Here we analyzed the molecular function of COA6 and the consequences of COA6 deficiency for mitochondria. Our analyses show that loss of COA6 causes combined complex I and complex IV deficiency and impacts membrane potential-driven protein transport across the inner membrane. We demonstrate that COA6 acts as a thiol-reductase to reduce disulfide bridges of critical cysteine residues in SCO1 and SCO2. Cysteines within the CX3CXNH domain of SCO2 mediate its interaction with COA6 but are dispensable for SCO2-SCO1 interaction. Our analyses define COA6 as thiol-reductase, which is essential for CuA biogenesis."	"Prenatal diagnosis and molecular cytogenetic characterization of de novo distal 5p deletion and distal 22q duplication. We present prenatal diagnosis and molecular cytogenetic characterization of de novo distal 5p deletion and distal 22q duplication. A 34-year-old woman was underwent amniocentesis at 17 weeks of gestation because of advanced maternal age. Amniocentesis revealed a derivative chromosome 5 [der(5)] with an abnormal distal 5p segment of unknown origin. The parental karyotypes were normal. Array comparative genomic hybridization (aCGH) analysis was performed on the cultured amniocytes, and the result was arr 5p15.33p13.3 (22,149-29,760,922) × 1.0, arr 22q13.2q13.33 (42, 192, 065-51,178,264) × 3.0 [GRCh37 (hg19)] with a 29.739-Mb deletion of 5p15.33-p13.3 encompassing 55 [Online Mendelian Inheritance in Man (OMIM)] genes including TPPP, TERT, SRD5A1, SEMA5A and CTNND2, and an 8.986-Mb duplication of 22q13.2-q13.33 encompassing 82 OMIM genes including TRMU, SCO2, TYMP, CPT1B and SHANK3. The fetal karyotype was 46,XY,der(5)t(5; 22)(p13.3; q13.2)dn. The pregnancy was subsequently terminated, and a malformed fetus was delivered with facial dysmorphism. Postnatal polymorphic DNA marker analysis confirmed a maternal origin of the aberrant chromosome 5. aCGH and polymorphic DNA marker analyses can determine the nature and parental origin of the de novo chromosome aberration, and the information acquired is useful for genetic counseling."	"SLMP53-1 Inhibits Tumor Cell Growth through Regulation of Glucose Metabolism and Angiogenesis in a P53-Dependent Manner. The Warburg effect is an emerging hallmark of cancer, which has the tumor suppressor p53 as its major regulator. Herein, we unveiled that p53 activation by (S)-tryptophanol-derived oxazoloisoindolinone (SLMP53-1) mediated the reprograming of glucose metabolism in cancer cells and xenograft human tumor tissue, interfering with angiogenesis and migration. Particularly, we showed that SLMP53-1 regulated glycolysis by downregulating glucose transporter 1 (GLUT1), hexokinase-2 (HK2), and phosphofructokinase-2 isoform 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase-3 (PFKFB3) (key glycolytic enzymes), while upregulating the mitochondrial markers synthesis of cytochrome c oxidase 2 (SCO2), cytochrome c oxidase subunit 4 (COX4), and OXPHOS mitochondrial complexes. SLMP53-1 also downregulated the monocarboxylate transporter 4 (MCT4), causing the subsequent reduction of lactate export by cancer cells. Besides the acidification of the extracellular environment, SLMP53-1 further increased E-cadherin and reduced metalloproteinase-9 (MMP-9) expression levels in both cancer cells and xenograft human tumor tissue, which suggested the interference of SLMP53-1 in extracellular matrix remodeling and epithelial-to-mesenchymal transition. Consistently, SLMP53-1 depleted angiogenesis, decreasing endothelial cell tube formation and vascular endothelial growth factor (VEGF) expression levels. SLMP53-1 also exhibited synergistic growth inhibitory activity in combination with the metabolic modulator dichloroacetic acid. These data reinforce the promising application of the p53-activating agent SLMP53-1 in cancer therapy, by targeting p53-mediated pathways of growth and dissemination."	"Stable COX17 Downregulation Leads to Alterations in Mitochondrial Ultrastructure, Decreased Copper Content and Impaired Cytochrome c Oxidase Biogenesis in HEK293 Cells. Cox17 is an assembly factor that participates in early cytochrome c oxidase (COX, CcO) assembly stages. Cox17 shuttles copper ions from the cytosol to the mitochondria and, together with Sco1 and Sco2, provides copper ions to the Cox1 and Cox2 mitochondrially encoded subunits. In Saccharomyces cerevisiae, Cox17 also modulates mitochondrial membrane architecture due to the interaction of Cox17 with proteins of the MICOS complex (mitochondrial contact site and cristae organizing system). There is currently no data regarding the impact of long-term Cox17 deficiency in human cells. Here, we present construction and characterization of three stable COX17 shRNA-downregulated HEK293 cell lines that have less than 10 % of the residual Cox17 protein level. Cox17-depleted cell lines exhibited decreased intramitochondrial copper content, decreased CcO subunit levels (Cox1, Cox4 and Cox5a) and accumulation of CcO subcomplexes. Similarly to yeast cells, mitochondria in Cox17-downregulated HEK293 cell lines exhibited ultrastructural changes including cristae reduction and mitochondrial swelling. Characterization of the molecular pathogenesis of long-term Cox17 deficiency complements our knowledge of the mitochondrial copper metabolism and assembly of cytochrome c oxidase in human cells."	"COA6 Is Structurally Tuned to Function as a Thiol-Disulfide Oxidoreductase in Copper Delivery to Mitochondrial Cytochrome c Oxidase. In eukaryotes, cellular respiration is driven by mitochondrial cytochrome c oxidase (CcO), an enzyme complex that requires copper cofactors for its catalytic activity. Insertion of copper into its catalytically active subunits, including COX2, is a complex process that requires metallochaperones and redox proteins including SCO1, SCO2, and COA6, a recently discovered protein whose molecular function is unknown. To uncover the molecular mechanism by which COA6 and SCO proteins mediate copper delivery to COX2, we have solved the solution structure of COA6, which reveals a coiled-coil-helix-coiled-coil-helix domain typical of redox-active proteins found in the mitochondrial inter-membrane space. Accordingly, we demonstrate that COA6 can reduce the copper-coordinating disulfides of its client proteins, SCO1 and COX2, allowing for copper binding. Finally, our determination of the interaction surfaces and reduction potentials of COA6 and its client proteins provides a mechanism of how metallochaperone and disulfide reductase activities are coordinated to deliver copper to CcO."	"Cytochrome c oxidase deficiency caused by biallelic SCO2 mutations in two sibs with cerebellar ataxia and progressive peripheral axonal neuropathy. NA"	"Molecular Dynamics of Combustion Reactions in Supercritical Carbon Dioxide. 6. Computational Kinetics of Reactions between Hydrogen Atom and Oxygen Molecule H + O2 ⇌ HO + O and H + O2 ⇌ HO2. Reactions of the hydrogen atom and the oxygen molecule are among the most important ones in the hydrogen and hydrocarbon oxidation mechanisms, including combustion in a supercritical CO2 (sCO2) environment, known as oxy-combustion or the Allam cycle. Development of these energy technologies requires understanding of chemical kinetics of H + O2 ⇌ HO + O and H + O2 ⇌ HO2 in high pressures and concentrations of CO2. Here, we combine quantum treatment of the reaction system by the transition state theory with classical molecular dynamics simulation and the multistate empirical valence bonding method to treat environmental effects. Potential of mean force in the sCO2 solvent at various temperatures 1000-2000 K and pressures 100-400 atm was obtained. The reaction rate for H + O2 ⇌ HO + O was found to be pressure-independent and described by the extended Arrhenius equation 4.23 × 10<sup>-7</sup> T<sup>-0.73</sup> exp(-21 855.2 cal/mol/RT) cm<sup>3</sup>/molecule/s, while the reaction rate H + O2 ⇌ HO2 is pressure-dependent and can be expressed as 5.22 × 10<sup>-2</sup> T<sup>-2.86</sup> exp(-7247.4 cal/mol/RT) cm<sup>3</sup>/molecule/s at 300 atm."	"2-Chlorophenol degradation by catalytic wet air oxidation using copper supported on TiO2-CeO2-ZrO2. In this work, we describe the morphological, electronic and catalytic properties of support TiO2-CeO2-ZrO2, prepared by sol-gel method, which was impregnated with copper at 5 and 10% by weight, in order to obtain efficient catalysts in the catalytic wet air oxidation (CWAO) of 2-cp. The catalysts were characterized by X-ray diffraction (XRD), scanning electron microscope (SEM-EDS), UV-Vis diffuse reflectance spectroscopy (DRS) and nitrogen physisorption by the Brunauer-Emmett-Teller (BET) method. The activity of the materials used in this study revealed that without the presence of Cu, the SCO2 is low and with a content of 10% this metal shows the best catalytic behaviour; conversely, a reaction mechanism is proposed that describes the complete oxidation of 2-cp in this case."	"CO2 supplementation dissociates cerebral oxygenation and middle cerebral artery blood velocity during maximal cycling. This study evaluated whether the reduction of prefrontal cortex oxygenation (ScO2 ) during maximal exercise depends on the hyperventilation-induced hypocapnic attenuation of middle cerebral artery blood velocity (MCA Vmean ). Twelve endurance-trained males (age: 25 ± 3 years, height: 183 ± 8 cm, weight: 75 ± 9 kg; mean ± SD) performed in three separate laboratory visits, a maximal oxygen uptake (VO2 max) test, an isocapnic (end-tidal CO2 tension (PetCO2 ) clamped at 40 ± 1 mmHg), and an ambient air controlled-pace constant load high-intensity ergometer cycling to exhaustion, while MCA Vmean (transcranial Doppler ultrasound) and ScO2 (near-infrared spectroscopy) were determined. Duration of exercise (12 min 25 s ± 1 min 18 s) was matched by performing the isocapnic trial first. Pulmonary VO2 was 90 ± 6% versus 93 ± 5% of the maximal value (P = .012) and PetCO2 40 ± 1 versus 34 ± 4 mmHg (P &lt; .05) during the isocapnic and control trials, respectively. During the isocapnic trial MCA Vmean increased by 16 ± 13% until clamping was applied and continued to increase (by 14 ± 28%; P = .017) until the end of exercise, while there was no significant change during the control trial (P = .071). In contrast, ScO2 decreased similarly in both trials (-3.2 ± 5.1% and -4.1 ± 9.6%; P &lt; .001, isocapnic and control, respectively) at exhaustion. The reduction in prefrontal cortex oxygenation during maximal exercise does not depend solely on lowered cerebral blood flow as indicated by middle cerebral blood velocity."	"Expanding the Phenotypic and Genotypic Landscape of Nonsyndromic High Myopia: A Cross-Sectional Study in 731 Chinese Patients. High myopia (HM) is defined as a refractive error worse than -6.00 diopter (D). This study aims to update the phenotypic and genotypic landscape of nonsyndromic HM and to establish a biological link between the phenotypic traits and genetic deficiencies. A cross-sectional study involving 731 participants varying in refractive error, axial length (AL), age, myopic retinopathy, and visual impairment. The phenotypic traits were analyzed by four ophthalmologists while mutational screening was performed in eight autosomal causative genes. Finally, we assessed the clinical relevance of identified mutations under the guidance of the American College of Medical Genetics and Genomics. The relationship between refractive error and AL varied in four different age groups ranging from 3- to 85-years old. In adult groups older than 21 years, 1-mm increase in AL conferred 10.84% higher risk of pathologic retinopathy (Category ≥2) as well as 7.35% higher risk of low vision (best-corrected visual acuities &lt;0.3) with P values &lt; 0.001. The prevalence rates of pathologic retinopathy and low vision both showed a nonlinear positive correlation with age. Forty-five patients were confirmed to harbor pathogenic mutations, including 20 novel mutations. These mutations enriched the mutational pool of nonsyndromic HM to 1.5 times its previous size and enabled a statistically significant analysis of the genotype-phenotype correlation. Finally, SLC39A5, CCDC111, BSG, and P4HA2 were more relevant to eye elongation, while ZNF644, SCO2, and LEPREL1 appeared more relevant to refracting media. Our findings shed light on how multiple HM-related phenotypes are associated with each other and their link with gene variants."	"Reduced cerebrovascular and cardioventilatory responses to intermittent hypoxia in elderly. The impact of aging on cerebrovascular function and tissue oxygenation during graded hypoxemia is incompletely known. This study compared the age effect on these variables during cyclic hypoxemia-reoxygenation. Hypoxia-induced changes in arterial (SaO2) and cerebral tissue (ScO2) O2 saturation, middle cerebral arterial flow velocity (VMCA), estimated cerebral vascular conductance (CVC), heart rate (HR) and ventilation were compared between 12 elderly (71 ± 2 yr, 7 women) and 13 young (24 ± 3 yr, 5 women) adults during the first and fifth 5-min exposures to 10% O2. Although pre-hypoxia SaO2 did not differ between the groups, ScO2 was lower (P &lt; 0.05) in the elderly (68.4 ± 1.2%) than young (73.8 ± 0.9%) adults, commensurate with a lower resting VMCA (P &lt; 0.05). SaO2 fell less sharply (P &lt; 0.05) in the elderly subjects during the first and fifth hypoxia exposures. Moreover, the responses of ScO2, VMCA, CVC, HR and breathing frequency to hypoxia were attenuated in the elderly subjects. Systolic and diastolic arterial pressures fell by 2-6 mmHg during hypoxia in both young and elderly. Thus, hypoxemia developed more gradually in elderly than young adults during normobaric hypoxia, concordant with a reduced metabolic demand in the elderly. The elderly adults safely tolerated cyclic, moderate hypoxemia which lowered SaO2 by 20-25%, despite dampening of cerebrovascular and cardiac responses to hypoxemia."	"A novel array of double dielectric barrier discharge combined with TiCo catalyst to remove high-flow-rate toluene: Performance evaluation and mechanism analysis. A novel array double dielectric barrier discharge (ADDBD) combined with a TiO2/Al2O3-Co3O4/AC (TiCo) catalyst was applied to remove toluene. The effects of catalyst setting distance, catalyst combination mode, and process factors (including specific input energy, initial toluene concentration, and relative humidity) were investigated in terms of the toluene degradation efficiency (ηtoluene) and the selectivity of CO2 (SCO2). When the specific input energy was 65 J·L<sup>-1</sup>, the initial toluene concentration was 100 mg·m<sup>-3</sup>, and the relative humidity was 30%, the highest ηtoluene of 72% and SCO2 of 44% could be achieved with TiO2/Al2O3 10 cm and Co3O4/AC 20 cm downstream of the ADDBD. Based on the determination of active substances (e.g., O3, OH) and the catalyst activation mode, a synergistic effect of active substances and photon between the ADDBD and the TiCo catalyst was proposed for the removal of toluene. Finally, the biodegradability and toxicity of the outlet gas were evaluated, and the results showed that the outlet gas was more convenient for subsequent biopurification and less toxic to the surroundings after the treatment by the ADDBD combined with the TiCo catalyst."	"Associations between changes in precerebral blood flow and cerebral oximetry in the lower body negative pressure model of hypovolemia in healthy volunteers. Reductions in cerebral oxygen saturation (ScO2) measured by near infra-red spectroscopy have been found during compensated hypovolemia in the lower body negative pressure (LBNP)-model, which may reflect reduced cerebral blood flow. However, ScO2 may also be contaminated from extracranial (scalp) tissues, mainly supplied by the external carotid artery (ECA), and it is possible that a ScO2 reduction during hypovolemia is caused by reduced scalp, and not cerebral, blood flow. The aim of the present study was to explore the associations between blood flow in precerebral arteries and ScO2 during LBNP-induced hypovolemia. Twenty healthy volunteers were exposed to LBNP 20, 40, 60 and 80 mmHg. Blood flow in the internal carotid artery (ICA), ECA and vertebral artery (VA) was measured by Doppler ultrasound. Stroke volume for calculating cardiac output was measured by suprasternal Doppler. Associations of changes within subjects were examined using linear mixed-effects regression models. LBNP reduced cardiac output, ScO2 and ICA and ECA blood flow. Changes in flow in both ICA and ECA were associated with changes in ScO2 and cardiac output. Flow in the VA did not change during LBNP and changes in VA flow were not associated with changes in ScO2 or cardiac output. During experimental compensated hypovolemia in healthy, conscious subjects, a reduced ScO2 may thus reflect a reduction in both cerebral and extracranial blood flow."	"Comparison of the Phytochemical Composition of Serenoa repens Extracts by a Multiplexed Metabolomic Approach. Phytochemical extracts are highly complex chemical mixtures. In the context of an increasing demand for phytopharmaceuticals, assessment of the phytochemical equivalence of extraction procedures is of utmost importance. Compared to routine analytical methods, comprehensive metabolite profiling has pushed forward the concept of phytochemical equivalence. In this study, an untargeted metabolomic approach was used to cross-compare four marketed extracts from Serenoa repens obtained with three different extraction processes: ethanolic, hexanic and sCO2 (supercritical carbon dioxide). Our approach involved a biphasic extraction of native compounds followed by liquid chromatography coupled to a high-resolution mass spectrometry based metabolomic workflow. Our results showed significant differences in the contents of major and minor compounds according to the extraction solvent used. The analyses showed that ethanolic extracts were supplemented in phosphoglycerides and polyphenols, hexanic extracts had higher amounts of free fatty acids and minor compounds, and sCO2 samples contained more glycerides. The discriminant model in this study could predict the extraction solvent used in commercial samples and highlighted the specific biomarkers of each process. This metabolomic survey allowed the authors to assess the phytochemical content of extracts and finished products of S. repens and unequivocally established that sCO2, hexanic and ethanolic extracts are not chemically equivalent and are therefore unlikely to be pharmacologically equivalent."	"The response of a standardized fluid challenge during cardiac surgery on cerebral oxygen saturation measured with near-infrared spectroscopy. Near infrared spectroscopy (NIRS) has been used to evaluate regional cerebral tissue oxygen saturation (ScO2) during the last decades. Perioperative management algorithms advocate to maintain ScO2, by maintaining or increasing cardiac output (CO), e.g. with fluid infusion. We hypothesized that ScO2 would increase in responders to a standardized fluid challenge (FC) and that the relative changes in CO and ScO2 would correlate. This study is a retrospective substudy of the FLuid Responsiveness Prediction Using Extra Systoles (FLEX) trial. In the FLEX trial, patients were administered two standardized FCs (5 mL/kg ideal body weight each) during cardiac surgery. NIRS monitoring was used during the intraoperative period and CO was monitored continuously. Patients were considered responders if stroke volume increased more than 10% following FC. Datasets from 29 non-responders and 27 responders to FC were available for analysis. Relative changes of ScO2 did not change significantly in non-responders (mean difference - 0.3% ± 2.3%, p = 0.534) or in fluid responders (mean difference 1.6% ± 4.6%, p = 0.088). Relative changes in CO and ScO2 correlated significantly, p = 0.027. Increasing CO by fluid did not change cerebral oxygenation. Despite this, relative changes in CO correlated to relative changes in ScO2. However, the clinical impact of the present observations is unclear, and the results must be interpreted with caution.Trial registration:http://ClinicalTrial.gov identifier for main study (FLuid Responsiveness Prediction Using Extra Systoles-FLEX): NCT03002129."	"Molecular Dynamics of Combustion Reactions in Supercritical Carbon Dioxide. Part 5: Computational Study of Ethane Dissociation and Recombination Reactions C2H6 ⇌ CH3 + CH3. Fossil fuel oxy-combustion is an emerging technology where the habitual nitrogen diluent is replaced by high-pressure supercritical CO2 (sCO2), which increases the efficiency of energy conversion. In this study, the chemical kinetics of the combustion reaction C2H6 ⇌ CH3 + CH3 in the sCO2 environment is predicted at 30-1000 atm and 1000-2000 K. We adopt a multiscale approach, where the reactive complex is treated quantum mechanically in rigid rotor/harmonic oscillator approximation, while environment effects at different densities are taken into account by the potential of mean force, produced with classical molecular dynamics (MD). Here, we used boxed MD, where enhanced sampling of infrequent events of barrier crossing is accomplished without application of the bias potential. The multistate empirical valence bond model is applied to describe free radical formation accurately at the cost of the classical force field. Predicted rates at low densities agree well with the literature data. Rate constants at 300 atm are 2.41 × 10<sup>14</sup> T<sup>-0.20</sup> exp(-77.03 kcal/mol/ RT) 1/s for ethane dissociation and 8.44 × 10<sup>-19</sup> T<sup>1.42</sup> exp(19.89 kcal/mol/ RT) cm<sup>3</sup>/molecule/s for methyl-methyl recombination."	"Exome-based search for recurrent disease-causing alleles in Russian population. Exomes of 27 Russian subjects were analyzed for the presence of medically relevant alleles, such as protein-truncating variants (PTVs) in known recessive disease-associated genes and pathogenic missense mutations included in the ClinVar database. 36 variants (24 PTVs and 12 amino acid substitutions) were identified and then subjected to the analysis in 897 population controls. 9/36 mutations were novel, however only two of them (POLH c.490delG associated with xeroderma pigmentosum variant (XPV) and CATSPER1 c.859_860delCA responsible for spermatogenic failure) were shown to be recurrent. 27 out of 36 pathogenic alleles were already described in prior genetic studies; seven of them occurred only in the index cases, while 20 demonstrated evidence for persistence in Russian population. In particular, non-random occurrence was revealed for SERPINA1 c.1096G &gt; A (alpha-1 antitrypsin deficiency), C8B c.1282C &gt; T and c.1653G &gt; A (complement component 8B deficiency), ATP7B c.3207C &gt; A (Wilson disease), PROP1 c.301_302delAG (combined pituitary hormone deficiency), CYP21A2 c.844G &gt; T (non-classical form of adrenogenital syndrome), EYS c.1155T &gt; A (retinitis pigmentosa), HADHA c.1528G &gt; C (LCHAD deficiency), SCO2 c.418G &gt; A (cytochrome c oxidase deficiency), OTOA c.2359G &gt; T (sensorineural deafness), C2 c.839_866del (complement component 2 deficiency), ACADVL c.848T &gt; C (VLCAD deficiency), TGM5 c.337G &gt; T (acral peeling skin syndrome) and VWF c.2561 G &gt; A (von Willebrand disease, type 2N). These data deserve to be considered in future medical genetic activities."	"Antennal Morphology and Sexual Dimorphism of Antennal Sensilla in Callitettix versicolor (Fabricius) (Hemiptera: Cercopidae). The rice spittlebug Callitettix versicolor (Fabricius) is an important pest of rice and maize in South Asia and causes severe economic damage. To provide background information for chemical ecology studies, the fine morphology of antennae and the types and distribution of the sensilla on the male and female antennae of Callitettix versicolor (Fabricius) are investigated by means of scanning electron microscopy (SEM). Results show that the antenna is filiform and composed of three segments: a scape, a pedicel, and a flagellum. The female antennae are slightly shorter than the male antennae. In both sexes, four types and nine subtypes of sensilla were observed: sensilla basiconica (SB1, SB2), sensilla campaniformia (SCa1, SCa2 and SCa3), sensilla coeloconica (SCo1, SCo2 and SCo3) and sensilla trichodea (ST). In addition, sensilla coeloconica (SCo1) are observed on the membrane of the top of the pedicel in Cercopidae for the first time. Sexual dimorphism mainly occurs in variation in the number of sensilla coeloconica (SCo2, SCo3) on the bulb-shaped portion of the flagellum and in the shape of sensilla basiconica (SB2). There are significantly more sensilla coeloconica in males than in females. The external structure and distribution of these sensilla are compared to those of other cercopids and possible functions of the antennal sensilla are discussed."	"Evaluation of cerebral oxygen saturation during hypotensive anesthesia in functional endoscopic sinus surgery. Controlled hypotensive anesthesia in endoscopic sinus surgery would provide a clean surgical field. Cerebral oxygen saturation (ScO2) is important in endoscopic sinus surgery patients and it may be low during controlled hypotension. The aim of the present study was to assess ScO2 in these patients. In this observational study, 41 patients who underwent endoscopic sinus surgery with hypotensive anesthesia were enrolled for the study and all of the patients received the same anesthetic medication, nitroglycerin for controlled hypotension. Variables were measured prior to surgery, after induction of anesthesia, 5 min, and every 30 min after controlled hypotension. Near-infrared spectroscopy was used for ScO2 evaluation. Mean arterial blood pressure (MAP) was maintained at 55-60 mmHg in the surgical duration. We used t-test, Wilcoxon, and repeated measures analysis of variance (ANOVA). We examined the cross-correlation functions of the time series data between end-tidal carbon dioxide (ETCO2)/MAP and ScO2. The mean of intraoperative ScO2 was not significantly different from the baseline evaluation (P &gt; 0.05). ETCO2 was cross correlated with current ScO2 [r: 0.618, confidence interval (CI) 95%: 0.46-0.78]. We found moderate cross correlation between the MAP and current ScO2 (r: 0.728, CI 95%: 0.56-0.88). About 92% of the patients recovered within 30 min. Recovery time was associated with intraoperative MAP (P: 0.004, r: 0.438), intraoperative ETCO2 (P: 0.003, r: 0.450), and ScO2 (P: 0.026, r: 0.348). Based on our findings, the assessment of ScO2 and maintained MAP &gt;55 mmHg may provide safe conditions for endoscopic sinus surgery."	"Caloric Restriction Exacerbates Angiotensin II-Induced Abdominal Aortic Aneurysm in the Absence of p53. p53-dependent vascular smooth muscle cell senescence is a key pathological process of abdominal aortic aneurysm (AAA). Caloric restriction (CR) is a nonpharmacological intervention that prevents AAA formation. However, whether p53 is indispensable to the protective role of CR remains unknown. In this study, we investigated the necessity of p53 in the beneficial role of CR in AAA formation and the underlying mechanisms. We subjected p53<sup>+/+</sup> and p53<sup>-/</sup><sup>-</sup> mice to 12 weeks of CR and then examined the incidence of Ang II (angiotensin II)-induced AAA formation. We found that both CR and p53 knockout reduced Ang II-induced AAA formation; however, CR markedly increased the incidence of AAA formation and exacerbated aortic elastin degradation in p53<sup>-/-</sup> mice, accompanied by increased vascular senescence, reactive oxygen species generation, and reduced energy production. Analysis of mitochondrial respiratory activity revealed that dysfunctional complex IV accounts for the abnormal mitochondrial respiration in p53<sup>-/-</sup> vascular smooth muscle cells treated by CR serum. Mechanistically, ablation of p53 almost totally blocked the protective role of CR by inhibiting SCO2 (cytochrome C oxidase assembly protein 2)-dependent mitochondrial complex IV activity. Overexpression of SCO2 restored the beneficial effect of CR on antagonizing Ang II-induced expression of AAA-related molecules and reactive oxygen species generation in p53<sup>-/-</sup> vascular smooth muscle cells. Together, our findings demonstrate that the existence of p53 in vascular smooth muscle cells is critical to the protective role of CR in Ang II-induced AAA formation by maintaining an appropriate mitochondrial function."	"miR-125a is upregulated in cancer stem-like cells derived from TW01 and is responsible for maintaining stemness by inhibiting p53. microRNA (miR)-125a and miR-125b were demonstrated to translationally and transcriptionally inhibit the mRNA level of p53 following the induction of chemo-reagents in our previous report. As a small subpopulation of nasopharyngeal carcinoma (NPC), cancer stem-like cells (CSCs) function critically in multi-malignant behaviors, including tumorigenesis and metastasis; however, the expression pattern and regulatory role of miR-125a, miR-125b and p53 in CSCs derived from NPC remain unclear. In order to investigate the potential regulatory role of miR-125 on p53, firstly CSCs was isolated from TW01 by culturing in serum-free medium. The stemness of isolated CSCs was examined via self-renewal capacity and side population assays. Following this, the miR-125a, miR-125b and p53 mRNA levels were evaluated via reverse-transcription quantitative polymerase chain reaction. Following the transfections of wild-type p53 or p53 without DNA binding activity (p53-mutR<sup>248Q</sup>) into TW01 or CSCs, Chromatin Immunoprecipitation (ChIP), and cell cycle analyses using flow cytometry or Cell Counting Kit-8 assays were performed. Notably, it was determined that miR-125a was significantly upregulated in CSCs derived from TW01, but not miR-125b, and the mRNA and protein levels of p53 were downregulated. The transfection of p53 significantly decreased the cell viability and stopped cell cycle at the G0/G1 phases in TW01 and CSCs. The ChIP assay confirmed that the ectopic expression of wild-type p53 transcriptionally regulates its downstream gene, p21, but not B-cell lymphoma 2 nor Sco2. Taken together, the results of the present study indicated that p53 regulates CSCs via its DNA binding activity and potentially, in CSCs, miR-125a regulates the expression of p53, maintaining stemness."	"Mitochondrial Sco proteins are involved in oxidative stress defense. Members of the evolutionary conserved Sco protein family have been intensively studied regarding their role in the assembly of the mitochondrial cytochrome c oxidase. However, experimental and structural data, specifically the presence of a thioredoxin-like fold, suggest that Sco proteins may also play a role in redox homeostasis. In our study, we addressed this putative function of Sco proteins using Saccharomyces cerevisiae as a model system. Like many eukaryotes, this yeast possesses two SCO homologs (SCO1 and SCO2). Mutants bearing a deletion of either of the two genes are not affected in their growth under oxidative stress. However, the concomitant deletion of the SOD1 gene encoding the superoxide dismutase 1 resulted in a distinct phenotype: double deletion strains lacking SCO1 or SCO2 and SOD1 are highly sensitive to oxidative stress and show dramatically increased ROS levels. The respiratory competent double deletion strain Δsco2Δsod1 paved the way to investigate the putative antioxidant function of SCO homologs apart from their role in respiration by complementation analysis. Sco homologs from Drosophila, Arabidopsis, human and two other yeast species were integrated into the genome of the double deletion mutant and the transformants were analyzed for their growth under oxidative stress. Interestingly, all homologs except for Kluyveromyces lactis K07152 and Arabidopsis thaliana HCC1 were able to complement the phenotype, indicating their role in oxidative stress defense. We further applied this complementation-based system to investigate whether pathogenic point mutations affect the putative antioxidant role of hSco2. Surprisingly, all of the mutant alleles failed to restore the ROS-sensitivity of the Δsco2Δsod1 strain. In conclusion, our data not only provide clear evidence for the function of Sco proteins in oxidative stress defense but also offer a valuable tool to investigate this role for other homologous proteins."	"Cytotoxic phenanthroline derivatives alter metallostasis and redox homeostasis in neuroblastoma cells. Copper homeostasis is generally investigated focusing on a single component of the metallostasis network. Here we address several of the factors controlling the metallostasis for neuroblastoma cells (SH-SY5Y) upon treatment with 2,9-dimethyl-1,10-phenanthroline-5,6-dione (phendione) and 2,9-dimethyl-1,10-phenanthroline (cuproindione). These compounds bind and transport copper inside cells, exert their cytotoxic activity through the induction of oxidative stress, causing apoptosis and alteration of the cellular redox and copper homeostasis network. The intracellular pathway ensured by copper transporters (Ctr1, ATP7A), chaperones (CCS, ATOX, COX 17, Sco1, Sco2), small molecules (GSH) and transcription factors (p53) is scrutinised."	"Cotyledons contribute to plant growth and hybrid vigor in Arabidopsis. In hybrids of Arabidopsis, cotyledons influence the amount and proportion of hybrid vigor in total plant growth. We found Arabidopsis cotyledons are essential for plant growth and in some hybrids for hybrid vigor. In hybrids between C24 and Landsberg erecta (Ler), biomass vigor (heterosis) occurs in the first few days after sowing (DAS), with hybrid cotyledons being larger than those of their parents. C24xLer hybrids are ahead of their parents in activating photosynthesis and auxin pathway genes in cotyledons at 3-4 DAS. &quot;Earliness&quot; is also present in newly emerged C24xLer hybrid leaves. We showed cotyledon removal at 4 DAS caused significant biomass reduction in later growth in hybrids and parental lines. The biomass decrease caused by cotyledon removal can be partially rescued by exogenous sucrose or auxin with different genotypes responding to sucrose and/or auxin differently. Cotyledon removal has different effects on heterosis in different hybrids. After cotyledon removal, in C24xLer hybrids, both growth and heterosis were reduced in similar proportions, but the level of hybrid vigor was reduced as a proportion of growth in C24xColumbia (Col) and ColxLer hybrids. The removal of cotyledons at 4 DAS markedly decreased the level of growth and eliminated the heterotic phenotype of Wassilewskija (Ws)/Ler hybrids. In mutant Ws/Ler hybrids which had a reduced level of photosynthesis in the cotyledons, there was a reduction in plant growth and loss of heterosis. The variation in contribution of cotyledons to heterosis in different hybrids indicates there are multiple pathways to achieve heterotic phenotypes."	"A prospective observational study of the change in regional cerebral oxygen saturation during cesarean delivery in women receiving phenylephrine prophylaxis for spinal hypotension. Spinal hypotension causes decreased regional cerebral oxygen saturation (ScO2) in women undergoing cesarean delivery. In this study we aimed to measure the change in ScO2 using near infrared spectroscopy in women receiving a prophylactic phenylephrine infusion during cesarean delivery under spinal anesthesia. This was a prospective, observational cohort study. Fifty-three women had ScO2 measurements at the following time points: preoperatively, in the supine position with 30° of left lateral tilt; one and five minutes after spinal anesthesia; at the time of skin incision; immediately after delivery; one minute after commencing the oxytocin infusion; at completion of surgery, and one hour after surgery. Spinal anesthesia and a prophylactic phenylephrine infusion were administered according to a standard treatment protocol. Statistical analysis used the Wilcoxon Signed Rank test with Bonferroni's correction for multiple comparisons. Blood pressure was maintained within 20% of baseline throughout surgery. The baseline mean (range) ScO2 was 61.5% (54.0-66.3%). It decreased significantly at all subsequent measurement points. The maximum decrease was five minutes after spinal anesthesia. Thirty-four (64.2%) of the parturients exhibited ScO2 values &lt;20% of baseline, or a decrease to below an absolute value of 50%. There was no significant correlation between systolic blood pressure and mean ScO2. Spinal anesthesia with phenylephrine infusion during cesarean delivery is associated with a significant decrease in ScO2 levels, maximal five minutes later. Further studies are required to establish the clinical significance of this finding."	"Relapsing-Remitting Course of Cystic Leukoencephalopathy. NA"	"Ceramic-metal composites for heat exchangers in concentrated solar power plants. The efficiency of generating electricity from heat using concentrated solar power plants (which use mirrors or lenses to concentrate sunlight in order to drive heat engines, usually involving turbines) may be appreciably increased by operating with higher turbine inlet temperatures, but this would require improved heat exchanger materials. By operating turbines with inlet temperatures above 1,023 kelvin using closed-cycle high-pressure supercritical carbon dioxide (sCO2) recompression cycles, instead of using conventional (such as subcritical steam Rankine) cycles with inlet temperatures below 823 kelvin<sup>1-3</sup>, the relative heat-to-electricity conversion efficiency may be increased by more than 20 per cent. The resulting reduction in the cost of dispatchable electricity from concentrated solar power plants (coupled with thermal energy storage<sup>4-6</sup>) would be an important step towards direct competition with fossil-fuel-based plants and a large reduction in greenhouse gas emissions<sup>7</sup>. However, the inlet temperatures of closed-cycle high-pressure sCO2 turbine systems are limited<sup>8</sup> by the thermomechanical performance of the compact, metal-alloy-based, printed-circuit-type heat exchangers used to transfer heat to sCO2. Here we present a robust composite of ceramic (zirconium carbide, ZrC) and the refractory metal tungsten (W) for use in printed-circuit-type heat exchangers at temperatures above 1,023 kelvin<sup>9</sup>. This composite has attractive high-temperature thermal, mechanical and chemical properties and can be processed in a cost-effective manner. We fabricated ZrC/W-based heat exchanger plates with tunable channel patterns by the shape-and-size-preserving chemical conversion of porous tungsten carbide plates. The dense ZrC/W-based composites exhibited failure strengths of over 350 megapascals at 1,073 kelvin, and thermal conductivity values two to three times greater than those of iron- or nickel-based alloys at this temperature. Corrosion resistance to sCO2 at 1,023 kelvin and 20 megapascals was achieved<sup>10</sup> by bonding a copper layer to the composite surface and adding 50 parts per million carbon monoxide to sCO2. Techno-economic analyses indicate that ZrC/W-based heat exchangers can strongly outperform nickel-superalloy-based printed-circuit heat exchangers at lower cost."	"Synthesis and reactivity of a nickel(ii) thioperoxide complex: demonstration of sulfide-mediated N2O reduction. The thiohyponitrite ([SNNO]<sup>2-</sup>) complex, [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(κ<sup>2</sup>-SNNO)] (L <sup>tBu</sup> = {(2,6-<sup>i</sup>Pr2C6H3)NC( <sup> t </sup> Bu)}2CH), extrudes N2 under mild heating to yield [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(η<sup>2</sup>-SO)] (1), along with minor products [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(η<sup>2</sup>-OSSO)] (2) and [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(η<sup>2</sup>-S2)] (3). Subsequent reaction of 1 with carbon monoxide (CO) results in the formation of [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(η<sup>2</sup>-SCO)] (4), [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(S,O:κ<sup>2</sup>-SCO2)] (5), [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(κ<sup>2</sup>-CO3)] (6), carbonyl sulfide (COS) (7), and [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(S2CO)] (8). To rationalize the formation of these products we propose that 1 first reacts with CO to form [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(S)] (I) and CO2, via O-atom abstraction. Subsequently, complex I reacts with CO or CO2 to form 4 and 5, respectively. Similarly, the formation of complex 6 and COS can be rationalized by the reaction of 1 with CO2 to form a putative Ni(ii) monothiopercarbonate, [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(κ<sup>2</sup>-SOCO2)] (11). The Ni(ii) monothiopercarbonate subsequently transfers a S-atom to CO to form COS and [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(κ<sup>2</sup>-CO3)] (6). Finally, the formation of 8 can be rationalized by the reaction of COS with I. Critically, the observation of complexes 4 and 5 in the reaction mixture reveals the stepwise conversion of [K(18-crown-6)][L <sup>tBu</sup>Ni<sup>II</sup>(κ<sup>2</sup>-SNNO)] to 1 and then I, which represents the formal reduction of N2O by CO."	"Monitoring of Brain Oxygenation During and After Cardiopulmonary Resuscitation: A Prospective Porcine Study. This study aimed to evaluate the usefulness of near-infrared time-resolved spectroscopy (TRS) for the monitoring of post-resuscitation encephalopathy. Cardiac arrest (CA) was induced in pigs by electrical stimuli; then, return of spontaneous circulation (ROSC) was achieved by direct current. The changes in cerebral oxygenation were analyzed by two methods: (1) the time-independent calculation based on the modified Beer-Lambert law (MBL), and (2) the curve-fitting method based on the photon diffusion theory (DT). The changes in reduced scattering coefficient (μs') in DT were also calculated. Post-resuscitation encephalopathy was evaluated by MRI findings. During CA, cerebral oxygen saturation (ScO2) decreased to the lowest level, and then gradually increased during the chest compression period. When ROSC was achieved, ScO2 (DT) increased further, but ScO2 (MBL) decreased transiently. This strange phenomenon disappeared when the scalp was peeled off and the probes were directly fixed to the cranial bone. In some cases, a sustained decrease in μs' was observed several hours after ROSC and, in such cases, MRI Diffusion Enhancement Image (DWI) showed findings suggestive of post-resuscitation encephalopathy. In conclusion, simultaneous monitoring of cerebral oxygenation with MBL and DT may provide more information about the vascular response of different layers. Also, the monitoring of μs' may help us to recognize the occurrence of post-resuscitation encephalopathy in real time."	"Theoretical prediction of LiScO2 nanosheets as a cathode material for Li-O2 batteries. Our previous study (J. Mater. Chem. A, 2018, 6, 3171-3180) theoretically predicted that a scandium oxide (ScO2) monolayer can deliver high specific capacity and energy density as the active material of a lithium-ion (Li-ion) battery, but the voltage will drop below 0.5 V when ScO2 is lithiated to LiScO2 during the discharge process. The current study predicts that the discharge product LiScO2 in the Li-ion battery mode can potentially work as the host material of Li-O2 batteries. It is found that the adsorption of O2 on the LiScO2 substrate is energetically favored. The LiScO2 substrate can also provide strong affinities to molecular LiO2 and Li2O2 species. It is interesting to find that the presence of an O2 molecule can oxidize the pre-adsorbed Li2O2 molecule and result in two LiO2 molecules. Hence, the final discharge product of the Li-O2 battery using the LiScO2 cathode is expected to be a crystalline-like LiO2 layer. The discharge voltage related to forming a LiO2 layer on the LiScO2 substrate is 3.50 V vs. Li+/Li according to the present theoretical calculation."	"The classification of Charcot-Marie-Tooth diseases, a never-ending story: CMT4? NA"	"Reply: The classification of Charcot-Marie-Tooth diseases, a never-ending story: CMT4? NA"	"Elesclomol restores mitochondrial function in genetic models of copper deficiency. Copper is an essential cofactor of cytochrome c oxidase (CcO), the terminal enzyme of the mitochondrial respiratory chain. Inherited loss-of-function mutations in several genes encoding proteins required for copper delivery to CcO result in diminished CcO activity and severe pathologic conditions in affected infants. Copper supplementation restores CcO function in patient cells with mutations in two of these genes, COA6 and SCO2, suggesting a potential therapeutic approach. However, direct copper supplementation has not been therapeutically effective in human patients, underscoring the need to identify highly efficient copper transporting pharmacological agents. By using a candidate-based approach, we identified an investigational anticancer drug, elesclomol (ES), that rescues respiratory defects of COA6-deficient yeast cells by increasing mitochondrial copper content and restoring CcO activity. ES also rescues respiratory defects in other yeast mutants of copper metabolism, suggesting a broader applicability. Low nanomolar concentrations of ES reinstate copper-containing subunits of CcO in a zebrafish model of copper deficiency and in a series of copper-deficient mammalian cells, including those derived from a patient with SCO2 mutations. These findings reveal that ES can restore intracellular copper homeostasis by mimicking the function of missing transporters and chaperones of copper, and may have potential in treating human disorders of copper metabolism."	"MVO-10: A Gas-Phase Oxide Benchmark for Localization/Delocalization in Mixed-Valence Systems. Ten simple gas-phase, main-group as well as transition-metal, mixed-valence (MV) oxo complexes are suggested for the screening of electronic-structure methods for the computational study of localization vs delocalization of charge and spin density in MV systems, without the usual added complication of environmental effects. Benchmark coupled-cluster energies up to CCSDT(Q)/CBS (for Al2O4<sup>-</sup>, Si2O4<sup>+</sup>, Si2O4<sup>-</sup>, ScO2, TiO2<sup>+</sup>) and CCSD(T)/CBS (for Ti2O4<sup>-</sup>, Ti2O4<sup>-</sup>, V2O4<sup>+</sup>, Cr2O6<sup>-</sup>) quality are provided as a basis for screening a variety of density-functional methods, ranging from a generalized gradient approximation via global and range-separated to local hybrid functionals. Additionally, experimental evidence for a delocalized D2d structure of the somewhat larger V4O10<sup>-</sup> is used. None of the functionals is fully satisfactory when tasked with describing simultaneously the most extreme cases, the localized Al2O4<sup>-</sup> and the delocalized V4O10<sup>-</sup>. While relatively large exact-exchange admixtures are required for the former, and for related localized cases, lower ones are preferable for the latter, as well for other delocalized d<sup>1</sup>d<sup>0</sup> systems. The overall best combined performance is provided by a Lh-SVWN (g(r) = 0.670 τW/τ) local hybrid, the MN15 global hybrid, and the ωB97X-D range-separated hybrid. We also provide vibrational data for comparison with experiment."	"Genomics and Epigenomics of Congenital Heart Defects: Expert Review and Lessons Learned in Africa. Congenital heart defects (CHD) are structural malformations found at birth with a prevalence of 1%. The clinical trajectory of CHD is highly variable and thus in need of robust diagnostics and therapeutics. Major surgical interventions are often required for most CHDs. In Africa, despite advances in life sciences infrastructure and improving education of medical scholars, the limited clinical data suggest that CHD detection and correction are still not at par with the rest of the world. But the toll and genetics of CHDs in Africa has seldom been systematically investigated. We present an expert review on CHD with lessons learned on Africa. We found variable CHD phenotype prevalence in Africa across countries and populations. There are important gaps and paucity in genomic studies of CHD in African populations. Among the available genomic studies, the key findings in Africa were variants in GATA4 (P193H), MTHFR 677TT, and MTHFR 1298CC that were associated with atrial septal defect, ventricular septal defect (VSD), Tetralogy of Fallot (TOF), and patent ductus arteriosus phenotypes and 22q.11 deletion, which is associated with TOF. There were no data on epigenomic association of CHD in Africa, however, other studies have shown an altered expression of miR-421 and miR-1233-3p to be associated with TOF and hypermethylation of CpG islands in the promoter of SCO2 gene also been associated with TOF and VSD in children with non-syndromic CHD. These findings signal the urgent need to develop and implement genetic and genomic research on CHD to identify the hereditary and genome-environment interactions contributing to CHD. These projected studies would also offer comparisons on CHD pathophysiology between African and other populations worldwide. Genomic research on CHD in Africa should be developed in parallel with next generation technology policy research and responsible innovation frameworks that examine the social and political factors that shape the emergence and societal embedding of new technologies."	"Overexpression of the protein disulfide isomerase AtCYO1 in chloroplasts slows dark-induced senescence in Arabidopsis. Chlorophyll breakdown is the most obvious sign of leaf senescence. The chlorophyll catabolism pathway and the associated proteins/genes have been identified in considerable detail by genetic approaches combined with stay-green phenotyping. Arabidopsis CYO1 (AtCYO1), a protein disulfide reductase/isomerase localized in the thylakoid membrane, is hypothesized to assemble the photosystem by interacting with cysteine residues of the subunits. In this study, we report that ectopic overexpression of AtCYO1 in leaves induces a stay-green phenotype during darkness, where oxidative conditions favor catabolism. In AtCYO1ox leaves, Fv/Fm and both chlorophyll a and chlorophyll b content remained high during dark-induced senescence. The thylakoid ultrastructure was preserved for a longer time in AtCYO1ox leaves than in wild type leaves. AtCYO1ox leaves maintained thylakoid chlorophyll-binding proteins associated with both PSII (D1, D2, CP43, CP47, LHCB2, and Cyt f) and PSI (PSA-A/B), as well as stromal proteins (Rubisco and ferredoxin-NADP+ reductase). AtCYO1ox did not affect senescence-inducible gene expression for chlorophyll catabolism or accumulation of chlorophyll catabolites. Our results suggest that ectopic overexpression of AtCYO1 had a negative impact on the initiation of chlorophyll degradation and proteolysis within chloroplasts. Our findings cast new light on the redox regulation of protein disulfide bonds for the maintenance of functional chloroplasts."	"Limitations of Current Near-Infrared Spectroscopy Configuration in Detecting Focal Cerebral Ischemia During Cardiac Surgery: An Observational Case-Series Study. Cerebral oximetry using near-infrared spectroscopy (NIRS) allows for continuous monitoring of cerebral perfusion and immediate treatment of hemodynamic perturbations. In configurations used in current clinical practice, NIRS optodes are placed on the patient`s forehead and cerebral oxygen saturation (ScO2 ) is determined in bilateral frontal cortical samples. However, focal cerebral ischemic lesions outside of the NIRS field of view may remain undetected. The objective of this observational case-series study was to investigate ScO2 measurements in patients with acute iatrogenic stroke not located in the frontal cortical region. Adult patients undergoing cardiac surgery with cardiopulmonary bypass or interventional cardiology procedures and suffering stroke in the early postoperative period were identified from the Bernese Stroke Registry and analyzed for their intraoperative ScO2 values and brain imaging data. Main outcome measures were the ScO2 values, computed tomography and magnetic resonance imaging findings. In six patients, the infarct areas were localized in the vascular territories of the posterior and/or dorsal middle cerebral arteries. One patient had watershed stroke and another one excellent collaterals resulting in normal cerebral blood volume and only subtle decrease of cerebral blood flow in initially critically perfused watershed brain areas. Intraoperative ScO2 values were entirely unremarkable or nonindicative for brain damage. Our results indicate that uneventful intraoperative NIRS monitoring does not exclude severe cerebral ischemia due to the limited field of view of commercially available NIRS devices. False negative NIRS may occur as a consequence of stroke localized outside the frontal cortex."	"Preferential Adsorption of CO2 in an Ultramicroporous MOF with Cavities Lined by Basic Groups and Open-Metal Sites. Here, we present a new ultramicroporous Cu2 paddlewheel based MOF. This ultramicroporous MOF has most of the features such as porosity (BET surface area = 945 m<sup>2</sup>/g), CO2 capacity (3.5 mmol/g at ambient temperature and pressure), CO2/N2 selectivity (sCO2/N2 = 250), and fast CO2 diffusion kinetics ( Dc = 2.25 × 10<sup>-9</sup> m<sup>2</sup>/s), comparable to some of the other high-performing ultramicroporous MOFs, with strong binding sites. Typically, such MOFs exhibit strong CO2-framework interactions (evidenced from a heat of adsorption ≥ 38 kJ/mol). However, the MOF explained here, despite having channels lined by the amine and the open-metal sites, possesses only a moderate CO2-framework interaction (HOA = 26 kJ/mol). Using periodic DFT, we have probed this counterintuitive observation."	"Mechanism of matrix-bound phosphine production in response to atmospheric elevated CO2 in paddy soils. To explore the effect of elevated CO2 concentrations ([CO2]) on phosphine formation in paddy fields, the matrix-bound phosphine (MBP) content, different phosphorus fractions and various carbon forms in soil samples from rice cultivation under varying CO2 concentrations of 400 ppm, 550 ppm and 700 ppm by indoor simulation experiment were determined. This study showed that MBP concentration did not increase significantly with elevated [CO2] over four-week cultivation periods of rice seedlings, regardless of soil layers. MBP had a significant positive correlation with total phosphorus (TP) and inorganic phosphorus (IP), and multiple stepwise linear regression analysis further indicated that MBP preservation in neutral paddy soils with depths of 0-20 cm may have been due to conversion from FeP and CaP. Based on redundancy analysis and forward selection analysis, speculated that the formation of MBP in the neutral paddy soils as the response to atmospheric elevated [CO2] was due to two processes: (i) FeP transformation affected by the changes of soil respiration (SCO2) and TOC was the main precursor for the production of MBP; and (ii) CaP transformation resulting from variation in HCO3<sup>-</sup> was the secondary MBP source. The complex combination of these two processes is simultaneously controlled by SCO2. In a word, the soil environment in the condition of elevated [CO2] was in favor of MBP storage in neutral paddy soils. The results of our study imply that atmospheric CO2 participates in and has a certain impact on the global biogeochemical cycle of phosphorus."	"High expression of synthesis of cytochrome c oxidase 2 and TP53-induced glycolysis and apoptosis regulator can predict poor prognosis in human lung adenocarcinoma. Synthesis of cytochrome c oxidase 2 (SCO2) and TP53-induced glycolysis and apoptosis regulator (TIGAR) are 2 p53-mediated proteins that can play a regulatory role in cancer energy metabolism. However, no study has examined the association of SCO2 and TIGAR with the prognosis of patients with lung adenocarcinoma (AC). In our study, the expression of SCO2 and TIGAR proteins in lung AC was detected, and the potential relation to prognosis was evaluated, aiming to take a further view of lung AC progression. Quantum dots-based immunofluorescence histochemistry staining was performed to observe the expression of p53, SCO2, and TIGAR in 75 specimens of lung AC. Of these, 51 (68.0%) showed high expression of SCO2, and 59 (78.7%) showed high expression of TIGAR. High TIGAR expression was significantly associated with a history of smoking (P = .017) and being male (P = .006). The correlation between high SCO2 expression and age also was significant (P = .042). Moreover, high TIGAR expression was positively correlated with high SCO2 expression (P = .019; rs = 0.271). High expression of the SCO2 and TIGAR proteins predicted poorer survival and a higher mortality rate (P = .024 and .030, respectively). High expression of SCO2 and TIGAR proteins is significantly associated with lung AC progression, suggesting their potential use as prognostic markers and therapeutic targets."	"Changes in cerebrovascular reactivity in healthy adults after acute exposure to high altitude. To study changes in the cerebrovascular reactivity (CVR) at different altitude area in healthy adults. CVR was tested using transcranial Doppler combined with CO2 inhalation, near-infrared spectroscopy (NIRS) was used to detect the regional cerebral oxygen saturation (rScO2). Blood samples were collected, and the vasoactive substances in serum were detected using the enzyme-linked immunosorbent assay. In this study, 59 healthy adults were divided into 3 groups: low altitude group, medium altitude group and high altitude group. All the indicators in low altitude group were tested at 24h before departure and after arrival from Beijing (at an altitude of 44.4 m) to Xining (at a medium altitude of 2200 m). Then, after resting for 48h, all the indicators were tested at 24h and 48h after arrival from Xining (at a medium altitude of 2200 m) to Yushu Jiegu town (at a high altitude of 3700 m) together with those at the medium altitude. Intergroup comparisons were made for the subjects in the three altitudes. There was an increase in the CVR in low altitude group after acute exposure to high altitude, and the difference was significant (CVR: 1.94re was vs. 0.91±0.53, p&lt;0.001); the CVR index was increased, and the difference was significant [cerebrovascular reserve index (CVRI): 3.65he CVR vs. 1.37e CVR, p&lt;0.001]; the rScO2 level was decreased with the increase of altitude, and the difference was significant [(66.78±4.61)% vs. (70.29±4.52)%, p&lt;0.001]. The levels of vasoactive substances in low altitude group were decreased after acute exposure to high altitude compared with those before exposure: NO: [(79.14±9.54) μmol/L vs. (58.01±9.93) μmol/L, p&lt;0.001]; serum eNOS level was increased, and the difference was significant [(77.23±6.20) pg/ml vs. (65.07±9.82) pg/ml, p&lt;0.001]; EPO: [(84.68±13.16) pg/ml vs. (65.01±5.92) pg/ml, p&lt;0.001]; VEGF: [(71.91±11.62) pg/ml vs. (54.92±11.86) pg/ml, p&lt;0.001]; sFlt: [(384.18±42.73) pg/ml vs. (320.62±78.96) pg/ml, p&lt;0.001]. There was also an increase in CVR in medium altitude group after acute exposure to high altitude, and the difference was significant [CVR: 2.00±0.79 vs. 0.91±0.66, p&lt;0.001]; the difference of CVRI was significant [3.83±0.67 vs. 1.67±0.87, p&lt;0.001]; rScO2 was slightly decreased with the increase of altitude, and the difference was not statistically significant [(67.53±4.61) % vs. (69.63±5.59) %, p&lt;0.001]. Before exposure to high altitude area, the levels of NO, NOS, EPO, VEGF, and sFlt in low and medium altitude groups were higher than those in high altitude group. CVR level of subjects at different altitudes was negatively related to the ScO2 (r=-0.91) but positively related to NO and NOS levels (rs=0.89, r=0.75); CVR was moderately related to VEGF and EPO (rs=0.45, r=0.42). rScO2 was positively related to RBC, HB and VEGF levels (r=0.89, r=0.75, rs=0.86), but had a moderately negative correlation with NO and NOS levels (rs=-0.52, r=-0.57). After subjects at a low altitude are exposed to high altitude rapidly, CVR is increased, RBC and vasoactive substances in serum, such as NO, eNOS, and EPO, are dramatically increased, VEGF is increased first and then decreased, sFlt-1 level is increased gradually, and rScO2 level is gradually decreased with the increase of altitude, indicating the local brain anoxia of subjects at a high altitude."	"Manipulating the Structural and Electronic Properties of Epitaxial SrCoO2.5 Thin Films by Tuning the Epitaxial Strain. Structure determines material's functionality, and strain tunes the structure. Tuning the coherent epitaxial strain by varying the thickness of the films is a precise route to manipulate the functional properties in the low-dimensional oxide materials. Here, to explore the effects of the coherent epitaxial strain on the properties of SrCoO2.5 thin films, thickness-dependent evolutions of the structural properties and electronic structures were investigated by X-ray diffraction, Raman spectra, optical absorption spectra, scanning transmission electron microscopy (STEM), and first-principles calculations. By increasing the thickness of the SrCoO2.5 films, the c-axis lattice constant decreases, indicating the relaxation of the coherent epitaxial strain. The energy band gap increases and the Raman spectra undergo a substantial softening with the relaxation of the coherent epitaxial strain. From the STEM results, it can be concluded that the strain causes the variation of the oxygen content in the BM-SCO2.5 films, which results in the variation of band gaps with varying the strain. First-principles calculations show that strain-induced changes in bond lengths and angles of the octahedral CoO6 and tetrahedral CoO4 cannot explain the variation band gap. Our findings offer an alternative strategy to manipulate structural and electronic properties by tuning the coherent epitaxial strain in transition-metal oxide thin films."	"The influence of the carotid baroreflex on dynamic regulation of cerebral blood flow and cerebral tissue oxygenation in humans at rest and during exercise. This preliminary study tested the hypothesis that the carotid baroreflex (CBR) mediated sympathoexcitation regulates cerebral blood flow (CBF) at rest and during dynamic exercise. In seven healthy subjects (26 ± 1 years), oscillatory neck pressure (NP) stimuli of + 40 mmHg were applied to the carotid baroreceptors at a pre-determined frequency of 0.1 Hz at rest, low (10 ± 1W), and heavy (30 ± 3W) exercise workloads (WLs) without (control) and with α - 1 adrenoreceptor blockade (prazosin). Spectral power analysis of the mean arterial blood pressure (MAP), mean middle cerebral artery blood velocity (MCAV), and cerebral tissue oxygenation index (ScO2) in the low-frequency range (0.07-0.20 Hz) was estimated to examine NP stimuli responses. From rest to heavy exercise, WLs resulted in a greater than three-fold increase in MCAV power (42 ± 23.8-145.2 ± 78, p &lt; 0.01) and an almost three-fold increase in ScO2 power (0.51 ± 0.3-1.53 ± 0.8, p = 0.01), even though there were no changes in MAP power (from 24.5 ± 21 to 22.9 ± 11.9) with NP stimuli. With prazosin, the overall MAP (p = 0.0017), MCAV (p = 0.019), and ScO2 (p = 0.049) power was blunted regardless of the exercise conditions. Prazosin blockade resulted in increases in the Tf gain index between MAP and MCAV compared to the control (p = 0.03). CBR-mediated changes in sympathetic activity contribute to dynamic regulation of the cerebral vasculature and CBF at rest and during dynamic exercise in humans."	"Method comparison of two non-invasive dual-wavelength spectrophotometric retinal oximeters in healthy young subjects during normoxia. Spectrophotometric retinal oximetry is a non-invasive technology for measuring oxygen saturation in arterioles and venules (SaO2 , SvO2 ). We compared two commercially available systems: the Oxymap T1 (Oxymap ehf., Reykjavik, Iceland) and the Dynamic Vessel Analyzer (DVA, Imedos, Jena, Germany). Twenty healthy adults were included after giving informed consent. Two measurement cycles 30 min apart, including Oxymap T1, DVA, arterialized capillary blood draw of the earlobe (ScO2 ) and peripheral oxygen saturation using finger pulse oximetry (SpO2 ) were scheduled. SaO2 (p &gt; 0.0004) but not SvO2 (p &lt; 0.05) was statistically significantly different between the retinal oximeters used. Agreement between devices using repeated SO2 measurements resulted in a standard deviation (SD) of differences of 3.5% in retinal arterioles and 4.8% in venules. Bland-Altman plot using the mean of a participant's two measurements from each device showed an average mean difference of 4.4% (95% confidence limits of agreement: -8.6 to 17.4) and -3.3% (95% confidence limits of agreement: -28.8 to 22.2) for SaO2 and SvO2 , respectively. Comparison of mean SaO2 and SvO2 with mean ScO2 and SpO2 indicated that SO2 measurements were generally higher in ScO2 and SpO2 . This study shows very good repeatability for both devices, which is consistent with the literature. However, it does not show sufficient concordance between SaO2 measurements from both devices, indicating that patients should be followed by one device only. Differences in absorbance wavelengths used and image post-processing may explain the differences."	"The effects of systemic oxygenation on cerebral oxygen saturation and its relationship to mixed venous oxygen saturation: A prospective observational study comparison of the INVOS and ForeSight Elite cerebral oximeters. The present study aimed to test the hypothesis that cerebral oxygen saturation (ScO2) measurements with the INVOS-5100-C and the ForeSight-Elite cerebral oximeters vary in their correlation with mixed venous oxygen saturation (SvO2) upon changes in systemic oxygenation in extubated cardiac surgical patients. Additionally, we aimed to elucidate whether the ScO2 measurements of both devices can be used interchangeably to detect reduced SvO2. Forty-eight spontaneously breathing patients extubated after cardiac surgery were included in this prospective observational study. The patients were exposed to both high (10 oxygen L·min<sup>-1</sup> via face mask) and low (room air) inspiratory oxygen concentrations. Bi-hemispherical ScO2 was determined with the INVOS and ForeSight Elite cerebral oximeters. The SvO2 was measured with a pulmonary artery catheter. Significant changes in oxygen delivery, ScO2 (by both cerebral oximeters), and SvO2 were observed upon variation of oxygenation. The minimum mean (standard deviation) ScO2 (ScO2min) using the INVOS and ForeSight did not differ significantly during high oxygen delivery [63.1 (8.6) % vs 65.8 (4.7) %, respectively; P = 0.07], but during low oxygen delivery, the INVOS value was significantly lower than that of the ForeSight oximeter [56.7 (8.9) % vs 61.3 (4.4) %, respectively; P = 0.003]. Both devices differed in the correlation between ScO2min and SvO2 for the combined oxygenation data (0.59, INVOS vs 0.28, ForeSight; correlation difference, 0.31; Bonferroni-adjusted 95% confidence interval [CI], 0.08 to 0.54; P = 0.008). The receiver-operating curve analysis revealed an area under the curve of 0.83 (95% CI, 0.74 to 0.9; P = 0.005) for detecting an SvO2 below 50% by ScO2min with the INVOS and 0.51 (95% CI, 0.41 to 0.62; P = 0.92), respectively, with the ForeSight. These findings suggest that the cerebral oximeters tested react differently to variations in systemic oxygenation and in their relationship with SvO2 and thus give different information on cardiopulmonary function. These findings raise doubt about whether these devices should be used interchangeably."	"KRAB-type zinc-finger proteins PITA and PISA specifically regulate p53-dependent glycolysis and mitochondrial respiration. Few p53 regulators participate in selective control of p53-mediated cellular metabolism. How p53-mediated aerobic and glycolytic pathways are negatively regulated remains largely unclear. Here, we identified two KRAB-type zinc-finger proteins, PITA (p53 inhibitor of TIGAR activation) and PISA (p53 inhibitor of SCO2 activation), as selective regulators of p53 in metabolic control. PITA and PISA interact with p53 and specifically suppress transcription of the glycolysis regulator TIGAR and the oxidation phosphorylation regulator SCO2, respectively. Importantly, PITA transgenic mice exhibited increased 6-phosphofructokinase 1 (PFK1) activity and an elevated glycolytic rate, whereas PISA transgenic mice had decreased cytochrome c oxidase activity and reduced mitochondrial respiration. In response to glucose starvation, PITA dissociates from p53, resulting in activation of p53 and induction of TIGAR, which inhibited aerobic glycolysis. Prolonged starvation leads to PISA dissociation from p53 and induction of SCO2 and p53-promoted mitochondrial respiration. The dynamic regulation of PITA and PISA upon metabolic stress is dependent on ATM kinase-mediated phosphorylation of PITA and PISA. Furthermore, in human colorectal cancers, the elevated expression of PITA and PISA correlates with cancer progression. Depletion of PITA or PISA in colorectal cancer cells reduced the cell proliferation, migration and invasion. These results identify PITA and PISA as selective regulators of p53-mediated glycolysis and mitochondrial respiration and provide novel insights into the role of p53 network in cell metabolic control."	"Cerebral oximetry during preoperative resuscitation in elderly patients with hip fracture: a prospective observational study. This study explores the association between postadmission and intraoperative cerebral oxygenation (ScO2), reflecting systemic perfusion, and postoperative mortality and delirium. Forty elderly (age &gt; 65 years) patients with hip fractures were included in this prospective observational study. The ScO2 was determined using near-infrared spectroscopy at initial resuscitation after patients were admitted to the hospital and during surgery. Postoperative delirium was assessed up to seven days after surgery using the memorial delirium assessment scale and the confusion assessment method. Ten patients (25%) developed postoperative delirium within the first seven postoperative days. At initial resuscitation ScO2 was lower in patients that later developed delirium, but the difference was not significant (p = 0.331). Intraoperative ScO2 values remained similar in the two groups. Mortality regardless of cause was 10% (4 out of 40 patients) after 30 days. At initial resuscitation ScO2 was significant lower in the mortality group than in the surviving group (p = 0.042), and the ScO2 nadir values were also significant lower (p = 0.047). Low ScO2 during initial resuscitation (defined as ScO2 &lt; 55 for a minimum of two consecutive minutes) was also significantly associated with 30-day mortality (p = 0.015). There were no associations between low blood pressure and postoperative delirium or 30-day mortality. We found that low preoperative ScO2 was better associated with 30-day all-cause mortality in elderly patients undergoing surgery for hip fracture than blood pressure measurements. Future studies in preoperative resuscitation of hip fracture patients should focus on perfusion measures as opposed to conventional haemodynamic."	"COX16 promotes COX2 metallation and assembly during respiratory complex IV biogenesis. Cytochrome c oxidase of the mitochondrial oxidative phosphorylation system reduces molecular oxygen with redox equivalent-derived electrons. The conserved mitochondrial-encoded COX1- and COX2-subunits are the heme- and copper-center containing core subunits that catalyze water formation. COX1 and COX2 initially follow independent biogenesis pathways creating assembly modules with subunit-specific, chaperone-like assembly factors that assist in redox centers formation. Here, we find that COX16, a protein required for cytochrome c oxidase assembly, interacts specifically with newly synthesized COX2 and its copper center-forming metallochaperones SCO1, SCO2, and COA6. The recruitment of SCO1 to the COX2-module is COX16- dependent and patient-mimicking mutations in SCO1 affect interaction with COX16. These findings implicate COX16 in CuA-site formation. Surprisingly, COX16 is also found in COX1-containing assembly intermediates and COX2 recruitment to COX1. We conclude that COX16 participates in merging the COX1 and COX2 assembly lines."	"SCO2 mutations cause early-onset axonal Charcot-Marie-Tooth disease associated with cellular copper deficiency. Recessive mutations in the mitochondrial copper-binding protein SCO2, cytochrome c oxidase (COX) assembly protein, have been reported in several cases with fatal infantile cardioencephalomyopathy with COX deficiency. Significantly expanding the known phenotypic spectrum, we identified compound heterozygous variants in SCO2 in two unrelated patients with axonal polyneuropathy, also known as Charcot-Marie-Tooth disease type 4. Different from previously described cases, our patients developed predominantly motor neuropathy, they survived infancy, and they have not yet developed the cardiomyopathy that causes death in early infancy in reported patients. Both of our patients harbour missense mutations near the conserved copper-binding motif (CXXXC), including the common pathogenic variant E140K and a novel change D135G. In addition, each patient carries a second mutation located at the same loop region, resulting in compound heterozygote changes E140K/P169T and D135G/R171Q. Patient fibroblasts showed reduced levels of SCO2, decreased copper levels and COX deficiency. Given that another Charcot-Marie-Tooth disease gene, ATP7A, is a known copper transporter, our findings further underline the relevance of copper metabolism in Charcot-Marie-Tooth disease."	"A systematic review of p53 regulation of oxidative stress in skeletal muscle. p53 is a tumor suppressor protein involved in regulating a wide array of signaling pathways. The role of p53 in the cell is determined by the type of imposed oxidative stress, its intensity and duration. The last decade of research has unravelled a dual nature in the function of p53 in mediating the oxidative stress burden. However, this is dependent on the specific properties of the applied stress and thus requires further analysis. A systematic review was performed following an electronic search of Pubmed, Google Scholar, and ScienceDirect databases. Articles published in the English language between January 1, 1990 and March 1, 2017 were identified and isolated based on the analysis of p53 in skeletal muscle in both animal and cell culture models. Literature was categorized according to the modality of imposed oxidative stress including exercise, diet modification, exogenous oxidizing agents, tissue manipulation, irradiation, and hypoxia. With low to moderate levels of oxidative stress, p53 is involved in activating pathways that increase time for cell repair, such as cell cycle arrest and autophagy, to enhance cell survival. However, with greater levels of stress intensity and duration, such as with irradiation, hypoxia, and oxidizing agents, the role of p53 switches to facilitate increased cellular stress levels by initiating DNA fragmentation to induce apoptosis, thereby preventing aberrant cell proliferation. Current evidence confirms that p53 acts as a threshold regulator of cellular homeostasis. Therefore, within each modality, the intensity and duration are parameters of the oxidative stressor that must be analyzed to determine the role p53 plays in regulating signaling pathways to maintain cellular health and function in skeletal muscle. Acadl: acyl-CoA dehydrogenase, long chain; Acadm: acyl-CoA dehydrogenase, C-4 to C-12 straight chain; AIF: apoptosis-inducing factor; Akt: protein kinase B (PKB); AMPK: AMP-activated protein kinase; ATF-4: activating transcription factor 4; ATM: ATM serine/threonine kinase; Bax: BCL2 associated X, apoptosis regulator; Bcl-2: B cell Leukemia/Lymphoma 2 apoptosis regulator; Bhlhe40: basic helix-loop-helix family member e40; BH3: Borane; Bim: bcl-2 interacting mediator of cell death; Bok: Bcl-2 related ovarian killer; COX-IV: cytochrome c oxidase IV; cGMP: Cyclic guanosine monophosphate; c-myc: proto-oncogene protein; Cpt1b: carnitine palmitoyltransferase 1B; Dr5: death receptor 5; eNOS: endothelial nitric oxide synthase; ERK: extracellular regulated MAP kinase; Fas: Fas Cell surface death receptor; FDXR: Ferredoxin Reductase; FOXO3a: forkhead box O3; Gadd45a: growth arrest and DNA damage-inducible 45 alpha; GLS2: glutaminase 2; GLUT 1 and 4: glucose transporter 1(endothelial) and 4 (skeletal muscle); GSH: Glutathione; Hes1: hes family bHLH transcription factor 1; Hey1: hes related family bHLH transcription factor with YRPW motif 1; HIFI-α: hypoxia-inducible factor 1, α-subunit; HK2: Hexokinase 2; HSP70: Heat Shock Protein 70; H2O2: Hydrogen Peroxide; Id2: inhibitor of DNA-binding 2; IGF-1-BP3: Insulin-like growth factor binding protein 3; IL-1β: Interleukin 1 beta; iNOS: inducible nitric oxide synthase; IRS-1: Insulin receptor substrate 1; JNK: c-Jun N-terminal kinases; LY-83583: 6-anilino-5,8-quinolinedione; inhibitor of soluble guanylate cyclase and of cGMP production; Mdm 2/ 4: Mouse double minute 2 homolog (mouse) Mdm4 (humans); mtDNA: mitochondrial DNA; MURF1: Muscle RING-finger protein-1; MyoD: Myogenic differentiation 1; MyoG: myogenin; Nanog: Nanog homeobox; NF-kB: Nuclear factor-κB; NO: nitric oxide; NoxA: phorbol-12-myristate-13-acetate-induced protein 1 (Pmaip1); NRF-1: nuclear respiratory factor 1; Nrf2: Nuclear factor erythroid 2-related factor 2; P21: Cdkn1a cyclin-dependent kinase inhibitor 1A (P21); P38 MAPK: mitogen-activated protein kinases; p53R2: p53 inducible ribonucleotide reductase gene; P66Shc: src homology 2 domain-containing transforming protein C1; PERP: p53 apoptosis effector related to PMP-22; PGC-1α: Peroxisome proliferator-activated receptor gamma coactivator 1-alpha; PGM: phosphoglucomutase; PI3K: Phosphatidylinositol-4,5-bisphosphate 3-kinase; PKCβ: protein kinase c beta; PTEN: phosphatase and tensin homolog; PTIO: 2-phenyl-4, 4, 5, 5,-tetramethylimidazoline-1-oxyl 3-oxide (PTIO) has been used as a nitric oxide (NO) scavenger; Puma: The p53 upregulated modulator of apoptosis; PW1: paternally expressed 3 (Peg3); RNS: Reactive nitrogen species; SIRT1: sirtuin 1; SCO2: cytochrome c oxidase assembly protein; SOD2: superoxide dismutase 2; Tfam: transcription factor A mitochondrial; TIGAR: Trp53 induced glycolysis repulatory phosphatase; TNF-a: tumor necrosis factor a; TRAF2: TNF receptor associated factor 2; TRAIL: type II transmembrane protein."	"Supercritical Carbon Dioxide-Sterilized Bone Allograft in the Treatment of Tunnel Defects in 2-Stage Revision Anterior Cruciate Ligament Reconstruction: A Histologic Evaluation. To examine the histologic properties of supercritical carbon dioxide (sCO2)-sterilized bone allograft for tunnel grafting and determine in vivo graft quality, as well as graft incorporation and remodeling, in 2-stage revision anterior cruciate ligament (ACL) surgery. Histologic evaluation was performed in 12 subjects undergoing 2-stage revision ACL reconstruction. In the first stage, the femoral and tibial tunnels were debrided, tunnel dimensions were measured, and tunnels were grafted with sCO2-sterilized bone allograft. In the second stage, revision ACL reconstruction was performed and bone biopsy specimens were taken from the tibia. Tissue, bone, and graft volumes were measured, and histomorphometric analysis was performed. The mean time between the 2 stages was 8.8 months (range, 5.6-21.3 months). In the second stage, bone graft material was easily identified by its necrotic appearance comprising mature lamellar bone devoid of osteocyte nuclei within osteocyte lacunae. In all tissue samples, host-bone apposition of predominantly mature lamellar bone was noted on the surface of graft fragments in keeping with &quot;creeping substitution.&quot; In several regions in 3 cases, osteoblastic and osteoclastic activity was evident in keeping with ongoing creeping substitution and remodeling. The mean bone volume over tissue volume was 68% (range, 33%-92%), and the mean graft volume over bone volume was 41% (range, 19%-70%). The mean graft volume (8 cases) harvested at less than 7 months (44%; 95% confidence interval, 31.4%-56.8%) was not significantly different than the mean graft volume (4 cases) harvested at greater than 10 months (34%; 95% confidence interval, 14.3%-54.2%; P = .214). The sCO2-sterilized bone allograft showed graft incorporation and remodeling through creeping substitution. The initial bone apposition and graft fragment bridging appear to provide a strong environment for ACL graft fixation resulting in technically successful 2-stage revision ACL reconstruction."	"Evaluating interest in an influenza A(H5N1) vaccine among laboratory workers who work with highly-pathogenic avian influenza viruses in the United States. Highly pathogenic avian influenza A (HPAI) viruses found in poultry and wild birds occasionally infect humans and can cause serious disease. In 2014, the Advisory Committee on Immunization Practices (ACIP) reviewed data from one licensed ASO3-adjuvanted influenza A(H5N1) vaccine for consideration of use during inter-pandemic periods among persons with occupational exposure. To guide vaccine policy decisions, we conducted a survey of laboratory workers to assess demand for HPAI vaccination. We designed an anonymous web survey (EpiInfo 7.0) to collect information on demographics, type of work and time spent with HPAI viruses, and interest in HPAI vaccination. Eligible participants were identified from 42 entities registered with United States Department of Agriculture's Agricultural Select Agent program in 2016 and emailed electronic surveys. Personnel with Biosafety Level 3 enhanced (BSL-3E) laboratory access were surveyed. Descriptive analysis was performed. Overall, 131 responses were received from 33 principal investigators, 26 research scientists, 24 technicians, 15 postdoctoral fellows, 6 students, and 27 others. The estimated response rate was 15% among the laboratory personnel of responding principal investigators. One hundred respondents reported working in a BSL-3E area where HPAI experiments occurred with a mean time of 5.1-11.7 h per week. Overall, 49% were interested in receiving an A(H5N1) vaccine. By role, interest was highest among students (80%) and among those who spent &gt;50% of their time in a BSL-3E area (64%). Most (61%) of those who said they might be or were not interested in vaccine believed it would not provide additional protection to current safety practices. Half of responding laboratory workers was interested in receiving an influenza A(H5N1) vaccine. HPAI vaccination of laboratory workers at risk of occupational exposure could be used along with existing safety practices to protect this population."	"Investigating the cardiac pathology of SCO2-mediated hypertrophic cardiomyopathy using patients induced pluripotent stem cell-derived cardiomyocytes. Mutations in SCO2 are among the most common causes of COX deficiency, resulting in reduced mitochondrial oxidative ATP production capacity, often leading to hypertrophic cardiomyopathy (HCM). To date, none of the recent pertaining reports provide deep understanding of the SCO2 disease pathophysiology. To investigate the cardiac pathology of the disease, we were the first to generate induced pluripotent stem cell (iPSC)-derived cardiomyocytes (iPSC-CMs) from SCO2-mutated patients. For iPSC generation, we reprogrammed skin fibroblasts from two SCO2 patients and healthy controls. The first patient was a compound heterozygote to the common E140K mutation, and the second was homozygote for the less common G193S mutation. iPSC were differentiated into cardiomyocytes through embryoid body (EB) formation. To test the hypothesis that the SCO2 mutation is associated with mitochondrial abnormalities, and intracellular Ca<sup>2+</sup> -overload resulting in functional derangements and arrhythmias, we investigated in SCO2-mutated iPSC-CMs (compared to control cardiomyocytes): (i) the ultrastructural changes; (ii) the inotropic responsiveness to β-adrenergic stimulation, increased [Ca<sup>2+</sup> ]o and angiotensin-II (AT-II); and (iii) the Beat Rate Variability (BRV) characteristics. In support of the hypothesis, we found in the mutated iPSC-CMs major ultrastructural abnormalities and markedly attenuated response to the inotropic interventions and caffeine, as well as delayed afterdepolarizations (DADs) and increased BRV, suggesting impaired SR Ca<sup>2+</sup> handling due to attenuated SERCA activity caused by ATP shortage. Our novel results show that iPSC-CMs are useful for investigating the pathophysiological mechanisms underlying the SCO2 mutation syndrome."	"The mitochondrial TMEM177 associates with COX20 during COX2 biogenesis. The three mitochondrial-encoded proteins, COX1, COX2, and COX3, form the core of the cytochrome c oxidase. Upon synthesis, COX2 engages with COX20 in the inner mitochondrial membrane, a scaffold protein that recruits metallochaperones for copper delivery to the CuA-Site of COX2. Here we identified the human protein, TMEM177 as a constituent of the COX20 interaction network. Loss or increase in the amount of TMEM177 affects COX20 abundance leading to reduced or increased COX20 levels respectively. TMEM177 associates with newly synthesized COX2 and SCO2 in a COX20-dependent manner. Our data shows that by unbalancing the amount of TMEM177, newly synthesized COX2 accumulates in a COX20-associated state. We conclude that TMEM177 promotes assembly of COX2 at the level of CuA-site formation."	"Effects of Changes in Arterial Carbon Dioxide and Oxygen Partial Pressures on Cerebral Oximeter Performance. Cerebral oximetry (cerebral oxygen saturation; ScO2) is used to noninvasively monitor cerebral oxygenation. ScO2 readings are based on the fraction of reduced and oxidized hemoglobin as an indirect estimate of brain tissue oxygenation and assume a static ratio of arterial to venous intracranial blood. Conditions that alter cerebral blood flow, such as acute changes in PaCO2, may decrease accuracy. We assessed the performance of two commercial cerebral oximeters across a range of oxygen concentrations during normocapnia and hypocapnia. Casmed FORE-SIGHT Elite (CAS Medical Systems, Inc., USA) and Covidien INVOS 5100C (Covidien, USA) oximeter sensors were placed on 12 healthy volunteers. The fractional inspired oxygen tension was varied to achieve seven steady-state levels including hypoxic and hyperoxic PaO2 values. ScO2 and simultaneous arterial and jugular venous blood gas measurements were obtained with both normocapnia and hypocapnia. Oximeter bias was calculated as the difference between the ScO2 and reference saturation using manufacturer-specified weighting ratios from the arterial and venous samples. FORE-SIGHT Elite bias was greater during hypocapnia as compared with normocapnia (4 ± 9% vs. 0 ± 6%; P &lt; 0.001). The INVOS 5100C bias was also lower during normocapnia (5 ± 15% vs. 3 ± 12%; P = 0.01). Hypocapnia resulted in a significant decrease in mixed venous oxygen saturation and mixed venous oxygen tension, as well as increased oxygen extraction across fractional inspired oxygen tension levels (P &lt; 0.0001). Bias increased significantly with increasing oxygen extraction (P &lt; 0.0001). Changes in PaCO2 affect cerebral oximeter accuracy, and increased bias occurs with hypocapnia. Decreased accuracy may represent an incorrect assumption of a static arterial-venous blood fraction. Understanding cerebral oximetry limitations is especially important in patients at risk for hypoxia-induced brain injury, where PaCO2 may be purposefully altered."	"Cerebral Oximetry as an Auxiliary Diagnostic Tool in the Diagnosis of Brain Death. To investigate the efficacy of cerebral oximetry (CO) as an auxiliary diagnostic tool in brain death (BD). This observational case-control study was performed on patients with suspected BD. Patients with diagnosis of BD confirmed by the brain death committee were enrolled as the BD group and other patients as the non-BD group. CO monitoring was performed at least 6 h, and cerebral tissue oxygen saturation (ScO2) parameters were compared. Mean ScO2 level in the BD group was lower than non-brain-dead patients: mean difference for right lobe = 6.48 (95% confidence interval [CI] 0.08-12.88) and for left lobe = 6.09 (95% CI -0.22-12.41). Maximum ScO2 values in the BD group were significantly lower than the non-BD group: mean difference for right lobe = 8.20 (95% CI 1.64-14.77) and for left lobe = 9.54 (95% CI 3.06-16.03). The area under the curve for right lobe maximum ScO2 was 0.69 (95% CI 0.55-0.81) and for left lobe was 0.72 (95% CI 0.58-0.84). Maximum ScO2 in brain-dead patients at CO monitoring is significantly low. However, this cannot be used to differentiate brain-dead and non-brain-dead patients. CO monitoring is therefore not an appropriate auxiliary diagnostic tool for confirming BD."	"Tympanic membrane temperature decreases during head up tilt: relation to frontal lobe oxygenation and middle cerebral artery mean blood flow velocity. Changes in blood flow influence temperature of surrounding tissues. Since the internal carotid artery (ICA) and internal jugular vein (IJV) neighbor the tympanic membrane, changes in their blood flow most likely determine changes in tympanic membrane temperature (TMT). We sought to evaluate the relationship between changes during a head-up tilt (HUT) induced reduction in cerebral blood flow (CBF) and TMT. Ten male subjects (age 19-28 years) underwent 50° HUT until presyncope. A non-contact infrared sensor in the ear canal targeted the tympanic membrane. Changes in CBF were monitored by transcranial Doppler which determined the mean blood flow velocity in the middle cerebral artery (MCA Vmean) and by near infrared spectroscopy assessed frontal lobe oxygenation (ScO2), while skin blood flow (SkBF) was evaluated by laser Doppler flowmetry. During HUT, TMT decreased by 0.6 °C (median; range 0.2 to 1.6 °C) related to a decrease in MCA Vmean (51.0 ± 6.7 to 34.3 ± 5.8 cm/sec (mean ± SD); r = 0.518, p = .002) and ScO2 (78.6 ± 5.4% to 69.0 ± 5.7%; r = 0.352, p = .043), but not to SkBF (120 ± 78 to 69 ± 37 PU; r = 0.245, p = .142). During an orthostatic challenge TMT decreases and the decrease is related to a reduction in CBF as indicated by MCA Vmean and ScO2, but not to SkBF. We consider TMT holds potential for non-invasive assessment of changes in cerebral perfusion."	"Brain natriuretic peptide (BNP) may play a major role in risk stratification based on cerebral oxygen saturation by near-infrared spectroscopy in patients undergoing major cardiovascular surgery. A previous study reported that low baseline cerebral oxygen saturation (ScO2) (≤50%) measured with near-infrared spectroscopy was predictive of poor clinical outcomes after cardiac surgery. However, such findings have not been reconfirmed by others. We conducted the current study to evaluate whether the previous findings would be reproducible, and to explore mechanisms underlying the ScO2-based outcome prediction. We retrospectively investigated 573 consecutive patients, aged 20 to 91 (mean ± standard deviation, 67.1 ± 12.8) years, who underwent major cardiovascular surgery. Preanesthetic baseline ScO2, lowest intraoperative ScO2, various clinical variables, and hospital mortality were examined. Bivariate regression analyses revealed that baseline ScO2 correlated significantly with plasma brain natriuretic peptide concentration (BNP), hemoglobin concentration (Hgb), estimated glomerular filtration rate (eGFR), and left ventricular ejection fraction (LVEF) (p &lt; 0.0001 for each). Baseline ScO2 correlated with BNP in an exponential manner, and BNP was the most significant factor influencing ScO2. Logistic regression analyses revealed that baseline and lowest intraoperative ScO2 values, but not relative ScO2 decrements, were significantly associated with hospital mortality (p &lt; 0.05), independent of the EuroSCORE (p &lt; 0.01). Receiver operating curve analysis of ScO2 values and hospital mortality revealed an area under the curve (AUC) of 0.715 (p &lt; 0.01) and a cutoff value of ≤50.5% for the baseline and ScO2, and an AUC of 0.718 (p &lt; 0.05) and a cutoff value of ≤35% for the lowest intraoperative ScO2. Low baseline ScO2 (≤50%) was associated with increases in intubation time, intensive care unit stay, hospital stay, and hospital mortality. Baseline ScO2 was reflective of severity of systemic comorbidities and was predictive of clinical outcomes after major cardiovascular surgery. ScO2 correlated most significantly with BNP in an exponential manner, suggesting that BNP plays a major role in the ScO2-based outcome prediction."	"Cerebral oxygenation and regional cerebral perfusion responses with resistance breathing during central hypovolemia. Resistance breathing improves tolerance to central hypovolemia induced by lower body negative pressure (LBNP), but this is not related to protection of anterior cerebral blood flow [indexed by mean middle cerebral artery velocity (MCAv)]. We hypothesized that inspiratory resistance breathing improves tolerance to central hypovolemia by maintaining cerebral oxygenation (ScO2), and protecting cerebral blood flow in the posterior cerebral circulation [indexed by posterior cerebral artery velocity (PCAv)]. Eight subjects (4 male/4 female) completed two experimental sessions of a presyncopal-limited LBNP protocol (3 mmHg/min onset rate) with and without (Control) resistance breathing via an impedance threshold device (ITD). ScO2 (via near-infrared spectroscopy), MCAv and PCAv (both via transcranial Doppler ultrasound), and arterial pressure (via finger photoplethysmography) were measured continuously. Hemodynamic responses were analyzed between the Control and ITD condition at baseline (T1) and the time representing 10 s before presyncope in the Control condition (T2). While breathing on the ITD increased LBNP tolerance from 1,506 ± 75 s to 1,704 ± 88 s (P = 0.003), both mean MCAv and mean PCAv were similar between conditions at T2 (P ≥ 0.46), and decreased by the same magnitude with and without ITD breathing (P ≥ 0.53). ScO2 also decreased by ~9% with or without ITD breathing at T2 (P = 0.97), and there were also no differences in deoxygenated (dHb) or oxygenated hemoglobin (HbO2) between conditions at T2 (P ≥ 0.43). There was no evidence that protection of regional cerebral blood velocity (i.e., anterior or posterior cerebral circulation) nor cerebral oxygen extraction played a key role in the determination of tolerance to central hypovolemia with resistance breathing."	"Cerebral Oxygen Saturation in Children With Congenital Heart Disease and Chronic Hypoxemia. Increased hemoglobin (Hb) concentration accompanying hypoxemia is a compensatory response to maintain tissue oxygen delivery. Near infrared spectroscopy (NIRS) is used clinically to detect abnormalities in the balance of cerebral tissue oxygen delivery and consumption, including in children with congenital heart disease (CHD). Although NIRS-measured cerebral tissue O2 saturation (ScO2) correlates with arterial oxygen saturation (SaO2), jugular bulb O2 saturation (SjbO2), and Hb, little data exist on the interplay between these factors and cerebral O2 extraction (COE). This study investigated the associations of ScO2 and ΔSaO2-ScO2 with SaO2 and Hb and verified the normal range of ScO2 in children with CHD. Children undergoing cardiac catheterization for CHD were enrolled in a calibration and validation study of the FORE-SIGHT NIRS monitor. Two pairs of simultaneous arterial and jugular bulb samples were drawn for co-oximetry, calculation of a reference ScO2 (REF CX), and estimation of COE. Pearson correlation and linear regression were used to determine relationships between O2 saturation parameters and Hb. Data were also analyzed according to diagnostic group defined as acyanotic (SaO2 ≥ 90%) and cyanotic (SaO2 &lt; 90%). Of 65 children studied, acceptable jugular bulb samples (SjbO2 absolute difference between samples ≤10%) were obtained in 57 (88%). The ΔSaO2-SjbO2, ΔSaO2-ScO2, and ΔSaO2-REF CX were positively correlated with SaO2 and negatively correlated with Hb (all P &lt; .001). Although by diagnostic group ScO2 differed statistically (P = .002), values in the cyanotic patients were within the range considered normal (69% ± 6%). COE estimated by the difference between arterial and jugular bulb O2 content (ΔCaO2-CjbO2, mL O2/100 mL) was not different for cyanotic and acyanotic patients (P = .10), but estimates using ΔSaO2-SjbO2, ΔSaO2-ScO2, or ΔSaO2-ScO2/SaO2 were significantly different between the cyanotic and acyanotic children (P &lt; .001). Children with adequately compensated chronic hypoxemia appear to have ScO2 values within the normal range. The ΔSaO2-ScO2 is inversely related to Hb, with the implication that in the presence of reduced Hb, particularly if coupled with a decreased cardiac output, the ScO2 can fall to values associated with brain injury in laboratory studies."	"Emission and distribution of phosphine in paddy fields and its relationship with greenhouse gases. Phosphine (PH3), as a gaseous phosphide, plays an important role in the phosphorus cycle in ecosystems. In this study, the emission and distribution of phosphine, carbon dioxide (CO2) and methane (CH4) in paddy fields were investigated to speculate the future potential impacts of enhanced greenhouse effect on phosphorus cycle involved in phosphine by the method of Pearson correlation analysis and multiple linear regression analysis. During the whole period of rice growth, there was a significant positive correlation between CO2 emission flux and PH3 emission flux (r=0.592, p=0.026, n=14). Similarly, a significant positive correlation of emission flux was also observed between CH4 and PH3 (r=0.563, p=0.036, n=14). The linear regression relationship was determined as [PH3]flux=0.007[CO2]flux+0.063[CH4]flux-4.638. No significant differences were observed for all values of matrix-bound phosphine (MBP), soil carbon dioxide (SCO2), and soil methane (SCH4) in paddy soils. However, there was a significant positive correlation between MBP and SCO2 at heading, flowering and ripening stage. The correlation coefficients were 0.909, 0.890 and 0.827, respectively. In vertical distribution, MBP had the analogical variation trend with SCO2 and SCH4. Through Pearson correlation analysis and multiple stepwise linear regression analysis, pH, redox potential (Eh), total phosphorus (TP) and acid phosphatase (ACP) were identified as the principal factors affecting MBP levels, with correlative rankings of Eh&gt;pH&gt;TP&gt;ACP. The multiple stepwise regression model ([MBP]=0.456∗[ACP]+0.235∗[TP]-1.458∗[Eh]-36.547∗[pH]+352.298) was obtained. The findings in this study hold great reference values to the global biogeochemical cycling of phosphorus in the future."	"Quantum Chemical Study of Supercritical Carbon Dioxide Effects on Combustion Kinetics. In oxy-fuel combustion, the pure oxygen (O2), diluted with CO2 is used as oxidant instead air. Hence, the combustion products (CO2 and H2O) are free from pollution by nitrogen oxides. Moreover, high pressures result in the near-liquid density of CO2 at supercritical state (sCO2). Unfortunately, the effects of sCO2 on the combustion kinetics are far from being understood. To assist in this understanding, in this work we are using quantum chemistry methods. Here we investigate potential energy surfaces of important combustion reactions in the presence of the carbon dioxide molecule. All transition states and reactant and product complexes are reported for three reactions: H2CO + HO2 → HCO + H2O2 (R1), 2HO2 → H2O2 + O2 (R2), and CO + OH → CO2 + H (R3). In reaction R3, covalent binding of CO2 to the OH radical and then the CO molecule opens a new pathway, including hydrogen transfer from oxygen to carbon atoms followed by CH bond dissociation. Compared to the bimolecular OH + CO mechanism, this pathway reduces the activation barrier by 5 kcal/mol and is expected to accelerate the reaction. In the case of hydroperoxyl self-reaction 2HO2 → H2O2 + O2 the intermediates, containing covalent bonds to CO2 are found not to be competitive. However, the spectator CO2 molecule can stabilize the cyclic transition state and lower the barrier by 3 kcal/mol. Formation of covalent intermediates is also discovered in the H2CO + HO2 → HCO + H2O2 reaction, but these species lead to substantially higher activation barriers, which makes them unlikely to play a role in hydrogen transfer kinetics. The van der Waals complexation with carbon dioxide also stabilizes the transition state and reduces the reaction barrier. These results indicate that the CO2 environment is likely to have a catalytic effect on combustion reactions, which needs to be included in kinetic combustion mechanisms in supercritical CO2."	"Sco2 deficient mice develop increased adiposity and insulin resistance. Cytochrome c oxidase (COX) is an essential transmembrane protein complex (Complex IV) in the mitochondrial respiratory electron chain. Mutations in genes responsible for the assembly of COX are associated with Leigh syndrome, cardiomyopathy, spinal muscular atrophy and other fatal metabolic disorders in humans. Previous studies have shown that mice lacking the COX assembly protein Surf1 (Surf1<sup>-/-</sup> mice) paradoxically show a number of beneficial metabolic phenotypes including increased insulin sensitivity, upregulation of mitochondrial biogenesis, induction of stress response pathways and increased lifespan. To determine whether these effects are specific to the Surf1 mutation or a more general effect of reduced COX activity, we asked whether a different mutation causing reduced COX activity would have similar molecular and physiologic changes. Sco2 knock-in/knock-out (KI/KO) mice in which one allele of the Sco2 gene that encodes a copper chaperone required for COX activity is deleted and the second allele is mutated, have previously been shown to be viable despite a 30-60% reduction in COX activity. In contrast to the Surf1<sup>-/-</sup> mice, we show that Sco2 KI/KO mice have increased fat mass, associated with reduced β-oxidation and increased adipogenesis markers, reduced insulin receptor beta (IR-β levels in adipose tissue, reduced muscle glucose transporter 4 (Glut4) levels and a impaired response to the insulin tolerance test consistent with insulin resistance. COX activity and protein are reduced approximately 50% in adipose tissue from the Sco2 KI/KO mice. Consistent with the increase in adipose tissue mass, the Sco2 KI/KO mice also show increased hepatosteatosis, elevated serum and liver triglyceride and increased serum cholesterol levels compared to wild-type controls. In contrast to the Surf1<sup>-/-</sup> mice, which show increased mitochondrial number, upregulation of the mitochondrial unfolded protein response (UPR<sup>MT</sup>) pathway and no significant change in mitochondrial respiration in several tissues, Sco2 KI/KO mice do not upregulate the UPR<sup>MT</sup>, and tissue oxygen consumption and levels of several proteins involved in mitochondrial function are reduced in adipose tissue compared to wild type mice. Thus, the metabolic effects of the Sco2 and Surf1<sup>-/-</sup> mutations are opposite, despite comparable changes in COX activity, illuminating the complex impact of mitochondrial dysfunction on physiology and pointing to an important role for complex IV in regulating metabolism."	"Human mitochondrial cytochrome c oxidase assembly factor COX18 acts transiently as a membrane insertase within the subunit 2 maturation module. Defects in mitochondrial cytochrome c oxidase or respiratory chain complex IV (CIV) assembly are a frequent cause of human mitochondrial disorders. Specifically, mutations in four conserved assembly factors impinging the biogenesis of the mitochondrion-encoded catalytic core subunit 2 (COX2) result in myopathies. These factors afford stability of newly synthesized COX2 (the dystonia-ataxia syndrome protein COX20), a protein with two transmembrane domains, and maturation of its copper center, CuA (cardiomyopathy proteins SCO1, SCO2, and COA6). COX18 is an additional COX2 assembly factor that belongs to the Oxa1 family of membrane protein insertases. Here, we used a gene-editing approach to generate a human COX18 knock-out HEK293T cell line that displays isolated complete CIV deficiency. We demonstrate that COX20 stabilizes COX2 during insertion of its N-proximal transmembrane domain, and subsequently, COX18 transiently interacts with COX2 to promote translocation across the inner membrane of the COX2 C-tail that contains the apo-CuA site. The release of COX18 from this complex coincides with the binding of the SCO1-SCO2-COA6 copper metallation module to COX2-COX20 to finalize COX2 biogenesis. Therefore, COX18 is a new candidate when screening for mitochondrial disorders associated with isolated CIV deficiency."	"A mesenteric traction syndrome affects near-infrared spectroscopy evaluated cerebral oxygenation because skin blood flow increases. During abdominal surgery manipulation of internal organs may induce a &quot;mesenteric traction syndrome&quot; (MTS) including a triad of flushing, hypotension, and tachycardia that lasts for about 30 min. We evaluated whether MTS affects near-infrared spectroscopy (NIRS) assessed frontal lobe oxygenation (ScO2) by an increase in forehead skin blood flow (SkBF). The study intended to include 10 patients who developed MTS during pancreaticoduodenectomy and 22 patients were enrolled (age 61 ± 8 years; mean ± SD). NIRS determined ScO2, laser Doppler flowmetry determined SkBF, cardiac output (CO) was evaluated by pulse-contour analysis (Modelflow), and transcranial Doppler assessed middle cerebral artery mean flow velocity (MCA Vmean). MTS was identified by flushing within 60 min after start of surgery. MTS developed 20 min (12-24; median with range) after the start of surgery and heart rate (78 ± 16 vs. 68 ± 17 bpm; P = 0.0032), CO (6.2 ± 1.4 vs. 5.3 ± 1.1 L min<sup>-1</sup>; P = 0.0086), SkBF (98 ± 35 vs. 80 ± 23 PU; P = 0.0271), and ScO2 (71 ± 6 vs. 67 ± 8%; P &lt; 0.0001), but not MCA Vmean (32 ± 8 vs. 32 ± 7; P = 0.1881) were largest in the patients who developed MTS. In some patients undergoing abdominal surgery NIRS-determined ScO2 is at least temporarily affected by an increase in extra-cranial perfusion independent of cerebral blood flow as indicated by MCA Vmean. Thus, NIRS evaluation of ScO2 may overestimate cerebral oxygenation if patients flush during surgery."	"SNOWY COTYLEDON 2 Promotes Chloroplast Development and Has a Role in Leaf Variegation in Both Lotus japonicus and Arabidopsis thaliana. Plants contain various factors that transiently interact with subunits or intermediates of the thylakoid multiprotein complexes, promoting their stable association and integration. Hence, assembly factors are essential for chloroplast development and the transition from heterotrophic to phototrophic growth. Snowy cotyledon 2 (SCO2) is a DNAJ-like protein involved in thylakoid membrane biogenesis and interacts with the light-harvesting chlorophyll-binding protein LHCB1. In Arabidopsis thaliana, SCO2 function was previously reported to be restricted to cotyledons. Here we show that disruption of SCO2 in Lotus japonicus results not only in paler cotyledons but also in variegated true leaves. Furthermore, smaller and pale-green true leaves can also be observed in A. thaliana sco2 (atsco2) mutants under short-day conditions. In both species, SCO2 is required for proper accumulation of PSII-LHCII complexes. In contrast to other variegated mutants, inhibition of chloroplastic translation strongly affects L. japonicus sco2 mutant development and fails to suppress their variegated phenotype. Moreover, inactivation of the suppressor of variegation AtClpR1 in the atsco2 background results in an additive double-mutant phenotype with variegated true leaves. Taken together, our results indicate that SCO2 plays a distinct role in PSII assembly or repair and constitutes a novel factor involved in leaf variegation."	"Carbon monoxide reduces near-infrared spectroscopy determined 'total' hemoglobin: a human volunteer study. Carbon monoxide (CO) increases middle cerebral artery mean flow velocity (MCAVmean), but the effect of CO on the near-infrared spectroscopy (NIRS) determined cerebral oxygenation (ScO2) is not detailed. In our study, 11 non-smoking subjects breathed 100% O2 through a closed circuit. A CO2 scrubber with CO (1.5 mL kg<sup>-1</sup>) was added to the circuit. Two NIRS systems (NIRO-200NX and INVOS-5100) assessed ScO2 as the ratio of oxygenated to deoxygenated hemoglobin, while venous blood samples were analyzed for carboxyhemoglobin (COHb). After CO/O2 rebreathing COHb increased to 8.7% (IQR; 7.9-9.4; p = .004) vs. normoxia, but MCAVmean remained stable (55.6 cm s<sup>-1</sup>; 53.1-69.7) compared to inhalation of O2 (54.6 cm s<sup>-1</sup>; 48.4-62.9; p = .178) and normoxia (54.1 cm s<sup>-1</sup>; 44.5-66.9; p = .055). Also, INVOS-5100 determined ScO2 increased during CO/O2 (74.4 ± 7.5%) and O2 inhalation (73.1 ± 7.2%) compared to normoxia (68.9 ± 6.9%; p &lt; .001). In contrast, NIRO-200NX determined ScO2 remained unchanged during CO/O2 and O2 inhalations but oxygenated and deoxygenated hemoglobin decreased (by 19.7 μM (median; IQR 2.8-34.8; p = .016) and 37.3 μM (30.8-46.6; p = .004), respectively) during inhalation of CO/O2 compared to inhalation of O2. Therefore, NIRO-200NX determined 'total' hemoglobin (sum of O2Hb and HHb) decreased (by 62.1 μM; 44.5-78.2; p = .001). In conclusion, exposure to CO did not increase MCAVmean, and neither NIRO-200NX nor INVOS-5100 detected a change in ScO2 when CO was added to inhalation of oxygen. Unaffected ScO2 after exposure to CO reflected a similar decrease in oxygenated and deoxygenated hemoglobin suggesting that detection of exposure to CO by NIRS should focus on 'total' hemoglobin rather than on ScO2."	"Low energy costs of F1Fo ATP synthase reversal in colon carcinoma cells deficient in mitochondrial complex IV. Mitochondrial polarisation is paramount for a variety of cellular functions. Under ischemia, mitochondrial membrane potential (ΔΨm) and proton gradient (ΔpH) are maintained via a reversal of mitochondrial F1Fo ATP synthase (mATPase), which can rapidly deplete ATP and drive cells into energy crisis. We found that under normal conditions in cells with disassembled cytochrome c oxidase complex (COX-deficient HCT116), mATPase maintains ΔΨm at levels only 15-20% lower than in WT cells, and for this utilises relatively little ATP. For a small energy expenditure, mATPase enables mitochondrial ΔpH, protein import, Ca<sup>2+</sup> turnover, and supports free radical detoxication machinery enlarged to protect the cells from oxidative damage. Whereas in COX-deficient cells the main source of ATP is glycolysis, the ΔΨm is still maintained upon inhibition of the adenine nucleotide translocators with bongkrekic acid and carboxyatractyloside, indicating that the role of ANTs is redundant, and matrix substrate level phosphorylation alone or in cooperation with ATP-Mg/Pi carriers can continuously support the mATPase activity. Intriguingly, we found that mitochondrial complex III is active, and it contributes not only to free radical production, but also to ΔΨm maintenance and energy budget of COX-deficient cells. Overall, this study demonstrates that F1Fo ATP synthase can support general mitochondrial and cellular functions, working in extremely efficient 'energy saving' reverse mode and flexibly recruiting free radical detoxication and ATP producing / transporting pathways."	"Journal of clinical monitoring and computing 2016 end of year summary: monitoring cerebral oxygenation and autoregulation. In the perioperative and critical care setting, monitoring of cerebral oxygenation (ScO2) and cerebral autoregulation enjoy increasing popularity in recent years, particularly in patients undergoing cardiac surgery. Monitoring ScO2 is based on near infrared spectroscopy, and attempts to early detect cerebral hypoperfusion and thereby prevent cerebral dysfunction and postoperative neurologic complications. Autoregulation of cerebral blood flow provides a steady flow of blood towards the brain despite variations in mean arterial blood pressure (MAP) and cerebral perfusion pressure, and is effective in a MAP range between approximately 50-150 mmHg. This range of intact autoregulation may, however, vary considerably between individuals, and shifts to higher thresholds have been observed in elderly and hypertensive patients. As a consequence, intraoperative hypotension will be poorly tolerated, and might cause ischemic events and postoperative neurological complications. This article summarizes research investigating technologies for the assessment of ScO2 and cerebral autoregulation published in the Journal of Clinical Monitoring and Computing in 2016."	"Alternative treatments to improve the potential of rice husk as adsorbent for methylene blue. Alternative treatments, such as, NaOH, ultrasound assisted (UA) and supercritical CO2 (SCO2), were performed to improve the potential of rice husk as adsorbent to remove methylene blue (MB) from aqueous media. All the treatments improved the surface characteristics of rice husk, exposing its organic fraction and/or providing more adsorption sites. The Langmuir and Hill models were able to explain the MB adsorption for all adsorbents in all studied temperatures. The experimental and modeled parameters demonstrated that the MB adsorption was favored by the temperature increase and by the use of NaOH-rice husk. The maximum adsorption capacities for the MB solutions (ranging from 10 to 100 mg L<sup>-1</sup>), estimated from the Langmuir model at 328 K, were in the following order: NaOH rice-husk (65.0 mg g<sup>-1</sup>) &gt; UA-rice husk (58.7 mg g<sup>-1</sup>) &gt; SCO2-rice husk (56.4 mg g<sup>-1</sup>) &gt; raw rice husk (52.2 mg g<sup>-1</sup>). The adsorption was a spontaneous, favorable and endothermic process. In general, this work demonstrated that NaOH, UA and SCO2 treatments are alternatives to improve the potential of rice husk as adsorbent."	"Effects of different surfactant administrations on cerebral autoregulation in preterm infants with respiratory distress syndrome. To treat respiratory distress syndrome, surfactant is currently delivered via less invasive surfactant administration (LISA) or INtubation SURfactant Extubation (INSURE). The aim of this study was to compare the effect of the two delivery methods of surfactant on cerebral autoregulation. Near infrared spectroscopy monitoring was carried out to detect cerebral oxygen saturation (ScO2), and the mean arterial blood pressure (MABP) was simultaneously recorded. Of 44 preterm infants included, the surfactant was administrated to 22 via LISA and 22 via INSURE. The clinical characteristics, treatments and outcomes of the infants showed no significant differences between the two groups. The correlation coefficient of ScO2 and MABP (r ScO2-MABP) 5 min before administration was similar in the two groups. During surfactant administration, r ScO2-MABP increased in both groups (0.44±0.10 to 0.54±0.12 in LISA, 0.45±0.11 to 0.69±0.09 in INSURE). In the first and second 5 min after instillation, r ScO2-MABP was not significantly different from baseline in the LISA group, but increased in the first 5 min after instillation (0.59±0.13, P=0.000 compared with the baseline in the same group) and recovered in the second 5 min after instillation (0.48±0.10, P=0.321) in the INSURE group. There were significant differences in the change rates of r ScO2-MABP between the two groups during and after surfactant administration. Our results suggest that cerebral autoregulation may be affected transiently by surfactant administration. The effect duration of LISA is shorter than that of INSURE (&lt;5 min in LISA vs. 5-10 min in INSURE)."	"A retrospective review of birth outcomes at the Mother and Child Health Hospital in Lao People's Democratic Republic, 2004-2013. The Lao People's Democratic Republic (Lao PDR) is a lower-middle income country making steady progress improving maternal and child health outcomes. We sought to ascertain if there have been improvements in three specific birth outcomes (low birth weight, preterm birth and small for gestational age) over the last decade. We retrospectively reviewed birth records between 2004 and 2013 at the Mother and Child Health (MCH) hospital in Vientiane. We defined preterm birth as gestation &lt;37 weeks and low birth weight as &lt;2,500 g. We calculated small for gestational age (SGA). We describe birth outcomes over time and compare proportions using Chi square. Between 2004 and 2013, the annual average number of newborns delivered each year was 4,322 and the frequency of low birth weight ranged from 9.5 to 12%, preterm births from 6.3 to 10%, and infants born SGA from 25 to 35%. There were no improvements in these frequencies over time. Women &lt;18 years at delivery had a statistically significantly higher frequency of babies born with a low birth weight (15.3 vs. 10.8%, p &lt; 0.02) or preterm (16.4 vs. 7.8%, p &lt; 0.01) than those aged &gt;18. There was no difference in the frequency of babies born SGA by age (26.8% in women &lt;18 years vs. 29.7% in women &gt;18 years, p = 0.30). At the largest maternal and child hospital in Lao PDR, we found a high frequency of poor birth outcomes with no improvements over the last decade."	"Protein coingestion with alcohol following strenuous exercise attenuates alcohol-induced intramyocellular apoptosis and inhibition of autophagy. Alcohol ingestion decreases postexercise rates of muscle protein synthesis, but the mechanism(s) (e.g., increased protein breakdown) underlying this observation is unknown. Autophagy is an intracellular &quot;recycling&quot; system required for homeostatic substrate and organelle turnover; its dysregulation may provoke apoptosis and lead to muscle atrophy. We investigated the acute effects of alcohol ingestion on autophagic cell signaling responses to a bout of concurrent (combined resistance- and endurance-based) exercise. In a randomized crossover design, eight physically active males completed three experimental trials of concurrent exercise with either postexercise ingestion of alcohol and carbohydrate (12 ± 2 standard drinks; ALC-CHO), energy-matched alcohol and protein (ALC-PRO), or protein (PRO) only. Muscle biopsies were taken at rest and 2 and 8 h postexercise. Select autophagy-related gene (Atg) proteins decreased compared with rest with ALC-CHO (P &lt; 0.05) but not ALC-PRO. There were parallel increases (P &lt; 0.05) in p62 and PINK1 commensurate with a reduction in BNIP3 content, indicating a diminished capacity for mitochondria-specific autophagy (mitophagy) when alcohol and carbohydrate were coingested. DNA fragmentation increased in both alcohol conditions (P &lt; 0.05); however, nuclear AIF accumulation preceded this apoptotic response with ALC-CHO only (P &lt; 0.05). In contrast, increases in the nuclear content of p53, TFEB, and PGC-1α in ALC-PRO were accompanied by markers of mitochondrial biogenesis at the transcriptional (Tfam, SCO2, and NRF-1) and translational (COX-IV, ATPAF1, and VDAC1) level (P &lt; 0.05). We conclude that alcohol ingestion following exercise triggers apoptosis, whereas the anabolic properties of protein coingestion may stimulate mitochondrial biogenesis to protect cellular homeostasis."	"ADRB2 gly16gly Genotype, Cardiac Output, and Cerebral Oxygenation in Patients Undergoing Anesthesia for Abdominal Aortic Aneurysm Surgery. Gly16arg polymorphism of the adrenergic β2-receptor is associated with the elevated cardiac output (Q) in healthy gly16-homozygotic subjects. We questioned whether this polymorphism also affects Q and regional cerebral oxygen saturation (SCO2) during anesthesia in vascular surgical patients. One hundred sixty-eight patients (age 71 ± 6 years) admitted for elective surgery were included. Cardiovascular variables were determined before and during anesthesia by intravascular pulse contour analysis (Nexfin) and SCO2 by cerebral oximetry (INVOS 5100C). Genotyping was performed with the TaqMan assay. Before anesthesia, Q and SCO2 were 4.7 ± 1.2 L/min and 66% ± 8%, respectively, and linearly correlated (r = 0.35, P &lt; .0001). In patients with the gly16gly genotype baseline, Q was approximately 0.4 L/min greater than in arg16 carriers (CI95: 0.0-0.8, Pt test = .03), but during anesthesia, the difference was 0.3 L/min (Pmixed-model = .07). Post hoc analysis revealed the change in SCO2 from baseline to the induction of anesthesia to be on average 2% greater in gly16gly homozygotes than in arg16 patients when adjusted for the change in Q (P = .03; CI95: 0.2-4.0%). This study suggests that the β2-adrenoceptor gly16gly genotype is associated with the elevated resting Q. An interesting trend to greater frontal lobe oxygenation at induction of anesthesia in patients with gly16gly genotype was found, but because of insufficient sample size and lack of PCO2 control throughout the measurements, the presented data may only serve as the hypothesis generating for future studies. The confidence limits indicate that the magnitude of the effects may range from clinically insignificant to potentially important."	"Distinctive interrelation of p53 with SCO2, COX, and TIGAR in human gastric cancer. p53, widely known as a tumor-suppressing gene, has recently been reported to regulate glucose metabolism in human cancers through the synthesis of cytochrome c oxidase 2 (SCO2), cytochrome c oxidase complex (COX), and TP53-induced glycolysis and apoptosis regulator (TIGAR). In this study, we investigated the interrelations of the aforementioned proteins, particularly in human gastric cancer, with cancer progression, other clinicopathological parameters, and patient outcomes. One hundred and ten cases of primary gastric cancer occurring from June 2006 to June 2009 were investigated and classified into two groups according to the intensity of immunohistochemical staining for p53, SCO2, COX, and TIGAR. The clinicopathological data were organized and analyzed based on electronic medical records. In accordance with previous reports, the expression of p53 showed an inverse correlation with the expression of TIGAR (p=0.032) in gastric cancer cells. However, the expression of SCO2 and COX were not shown to be associated with the regulatory role of p53, unlike TIGAR expression. Nevertheless, a significantly high recurrence rate was found in a patient group with high COX expression (p=0.012). This study demonstrated that a high p53 expression could be associated with the promotion of glycolysis in gastric cancer via the modulation of TIGAR expression. In addition, a high COX expression appeared to be interrelated with poor prognosis of gastric cancer. However, further studies regarding the underlying molecular interactions are required to provide more evidence to propose a novel mechanism that explains our findings in gastric cancer."	"Comparative DNA methylation and gene expression analysis identifies novel genes for structural congenital heart diseases. For the majority of congenital heart diseases (CHDs), the full complexity of the causative molecular network, which is driven by genetic, epigenetic, and environmental factors, is yet to be elucidated. Epigenetic alterations are suggested to play a pivotal role in modulating the phenotypic expression of CHDs and their clinical course during life. Candidate approaches implied that DNA methylation might have a developmental role in CHD and contributes to the long-term progress of non-structural cardiac diseases. The aim of the present study is to define the postnatal epigenome of two common cardiac malformations, representing epigenetic memory, and adaption to hemodynamic alterations, which are jointly relevant for the disease course. We present the first analysis of genome-wide DNA methylation data obtained from myocardial biopsies of Tetralogy of Fallot (TOF) and ventricular septal defect patients. We defined stringent sets of differentially methylated regions between patients and controls, which are significantly enriched for genomic features like promoters, exons, and cardiac enhancers. For TOF, we linked DNA methylation with genome-wide expression data and found a significant overlap for hypermethylated promoters and down-regulated genes, and vice versa. We validated and replicated the methylation of selected CpGs and performed functional assays. We identified a hypermethylated novel developmental CpG island in the promoter of SCO2 and demonstrate its functional impact. Moreover, we discovered methylation changes co-localized with novel, differential splicing events among sarcomeric genes as well as transcription factor binding sites. Finally, we demonstrated the interaction of differentially methylated and expressed genes in TOF with mutated CHD genes in a molecular network. By interrogating DNA methylation and gene expression data, we identify two novel mechanism contributing to the phenotypic expression of CHDs: aberrant methylation of promoter CpG islands and methylation alterations leading to differential splicing."	"The African-specific S47 polymorphism of p53 alters chemosensitivity. The TP53 protein is known to affect the sensitivity of tumor cells to cell death by DNA damaging agents. We recently reported that human and mouse cells containing an African-specific coding region variant of p53, Pro47Ser (hereafter S47), are impaired in the transactivation of a small subset of p53 target genes including GLS2 and SCO2, and are markedly resistant to cisplatin. Further, mice containing this variant are markedly predisposed to cancer. Together these findings suggested that cancer-affected humans with the S47 variant might not be effectively treated with cisplatin. To more directly test this premise, we created transformed derivatives of mouse embryo fibroblasts (MEFs) containing wild type p53 (WT) and the S47 variant and analyzed them for chemosensitivity. We find that transformation with E1A and Ras actually reverses the chemosensitivity/transcriptional differences between WT p53 and S47. Specifically, E1A/Ras-transformed S47 cells show increased sensitivity to cisplatin and paclitaxel, and comparable transactivation of GLS2 and SCO2, compared to cells with WT p53. These data suggest that the functional differences between WT p53 and S47 in primary cells may not hold true for transformed cells. They also offer hope that cisplatin and paclitaxel may be effective chemotherapeutic drugs for S47 individuals with cancer."	"p53 and mitochondrial dysfunction: novel insight of neurodegenerative diseases. Mitochondria are organelles responsible for vital cell functions. p53 is a transcription factor that regulates the DNA stability and cell growth normality. Recent studies revealed that p53 can influence mitochondrial function changing from normal condition to abnormal condition under different stress levels. In normal state, p53 can maintain mitochondrial respiration through transactivation of SCO2. When stress stimuli presents, SCO2 overexpresses and leads to ROS generation. ROS promotes p53 inducing MALM (Mieap-induced accumulation of lysosome-like organelles within mitochondria) to repair dysfunctional mitochondria and MIV (Mieap-induced vacuole) to accomplish damaged mitochondria degradation. If stress or damage is irreversible, p53 will translocate to mitochondria, leading into apoptosis or necrosis. Neurodegenerative diseases including Parkinson's disease, Huntington's disease and Alzheimer's disease are still lack of clear explanations of mechanisms, but more studies have revealed the functional relationship between mitochondria and p53 towards the pathological development of these diseases. In this review, we discuss that p53 plays the vital role in the function of mitochondria in the aspect of pathological change metabolism. We also analyze these diseases with novel targeted treating molecules which are related to p53 and mitochondria, hoping to present novel therapies in future clinic."	"New perspective in diagnostics of mitochondrial disorders: two years' experience with whole-exome sequencing at a national paediatric centre. Whole-exome sequencing (WES) has led to an exponential increase in identification of causative variants in mitochondrial disorders (MD). We performed WES in 113 MD suspected patients from Polish paediatric reference centre, in whom routine testing failed to identify a molecular defect. WES was performed using TruSeqExome enrichment, followed by variant prioritization, validation by Sanger sequencing, and segregation with the disease phenotype in the family. Likely causative mutations were identified in 67 (59.3 %) patients; these included variants in mtDNA (6 patients) and nDNA: X-linked (9 patients), autosomal dominant (5 patients), and autosomal recessive (47 patients, 11 homozygotes). Novel variants accounted for 50.5 % (50/99) of all detected changes. In 47 patients, changes in 31 MD-related genes (ACAD9, ADCK3, AIFM1, CLPB, COX10, DLD, EARS2, FBXL4, MTATP6, MTFMT, MTND1, MTND3, MTND5, NAXE, NDUFS6, NDUFS7, NDUFV1, OPA1, PARS2, PC, PDHA1, POLG, RARS2, RRM2B, SCO2, SERAC1, SLC19A3, SLC25A12, TAZ, TMEM126B, VARS2) were identified. The ACAD9, CLPB, FBXL4, PDHA1 genes recurred more than twice suggesting higher general/ethnic prevalence. In 19 cases, variants in 18 non-MD related genes (ADAR, CACNA1A, CDKL5, CLN3, CPS1, DMD, DYSF, GBE1, GFAP, HSD17B4, MECP2, MYBPC3, PEX5, PGAP2, PIGN, PRF1, SBDS, SCN2A) were found. The percentage of positive WES results rose gradually with increasing probability of MD according to the Mitochondrial Disease Criteria (MDC) scale (from 36 to 90 % for low and high probability, respectively). The percentage of detected MD-related genes compared with non MD-related genes also grew with the increasing MD likelihood (from 20 to 97 %). Molecular diagnosis was established in 30/47 (63.8 %) neonates and in 17/28 (60.7 %) patients with basal ganglia involvement. Mutations in CLPB, SERAC1, TAZ genes were identified in neonates with 3-methylglutaconic aciduria (3-MGA) as a discriminative feature. New MD-related candidate gene (NDUFB8) is under verification. We suggest WES rather than targeted NGS as the method of choice in diagnostics of MD in children, including neonates with 3-MGA aciduria, who died without determination of disease cause and with limited availability of laboratory data. There is a strong correlation between the degree of MD diagnosis by WES and MD likelihood expressed by the MDC scale."	"Radon-induced alterations in p53-mediated energy metabolism of malignantly transformed human bronchial epithelial cells. Radon and its progeny were confirmed to be a category I carcinogenic agent. However, the molecular basis underlying carcinogenesis induced by radon has not been fully elucidated. Expression of p53, a key regulator in glycolysis, is known to be decreased in carcinogenesis. The aim of this investigation was to determine changes in energy metabolism mediated by p53-related metabolic pathway using radon-induced transformation of human bronchial epithelial (HBE) cells. HBE cells were exposed to radon for 20 min at a concentration of 20,000 Bq/m(3) and cultured for 3 d, and exposed again at the same concentration and duration. This was repeated 10 times with culture for 35 passages until malignant transformation occurred. During the culturing process, the levels of lactate and lactate dehydrogenase (LDH) and ratio of NAD(+)/NADH gradually increased between passages. Between passages 30 and 35, p53 target gene synthesis of cytochrome c oxidase 2 (SCO2), TP53-induced glycolysis, and apoptosis regulator (TIGAR) expression were significantly decreased. Data demonstrated that p53-associated metabolic pathways may be altered in radon-mediated malignant transformation."	"Emulsified isoflurane treatment inhibits the cell cycle and respiration of human bronchial epithelial 16HBE cells in a p53-independent manner. Emulsified isoflurane (EIso), as a result of its rapid anesthetic induction, recovery and convenience, is widely used as a novel intravenous general anesthetic. Treatment with EIso can reduce injuries caused by ischemia/reperfusion (I/R) to organs, including the heart, lung and liver, without knowing understanding the molecular mechanism. The present study hypothesized that treatment with EIso can affect the physiological processes of human lung bronchial epithelial cells (16HBE) prior to I/R. To test this hypothesis, the present study first constructed stable p53 knockdown and synthesis of cytochrome c oxidase (SCO)2 knockdown 16HBE cells. The above cells were subsequently treated with EIso at a concentration of 0.1 and 0.2% for 24 h. The relevant concentration of fat emulsion was used as a negative control. The expression levels of p53, p21, SCO1, SCO2 and Tp53‑induced glycolysis and apoptosis regulator (TIGAR) were detected by reverse transcription‑quantitative polymerase chain reaction and western blotting. Subsequently, the cell proliferation, respiration and glycolysis were investigated. The results revealed that EIso treatment significantly decreased the transcription of TIGAR, SCO1 and SCO2, and increased the transcription of p21, which are all p53 target genes, in a p53-independent manner. The cell cycle was inhibited by arresting cells at the G0/G1 phase. Respiration was reduced, which caused a decrease in oxygen consumption and the accumulation of lactate and reactive oxygen species. Taken together, EIso treatment inhibited the proliferation and respiration, and promoted glycolysis in 16HBE cells. This regulatory pathway may represent a protective mechanism of EIso treatment by inhibiting cell growth and decreasing the oxygen consumption from I/R. "	"Neurodevelopmental outcome in hypoplastic left heart syndrome: Impact of perioperative cerebral tissue oxygenation of the Norwood procedure. Patients with hypoplastic left heart syndrome are at risk for neurodevelopmental impairment. Hypoxic-ischemic brain injury during neonatal treatment might be a relevant cause. We evaluated the association between cerebral oxygenation in the perioperative course of the Norwood procedure and neurodevelopmental outcome. Cerebral tissue oxygen saturation (ScO2) was obtained by near-infrared spectroscopy for 24 hours before and 48 hours after surgery in 43 patients. Full-scale, verbal, and performance IQ scores were evaluated with the Wechsler Preschool and Primary Scale of Intelligence at a median of 4.5 years (range, 3.5-6.8 years). Cognitive functions were assessed with the German Kognitiver Entwicklungstest für das Kindergartenalter (KET-KID). Mean IQ scores and KET-KID percentile ranks were in the lower-normal range (full-scale IQ, 94 ± 11; verbal IQ, 97 ± 13; performance IQ, 93 ± 9; KET-KID global, 42 ± 27; verbal, 48 ± 29; nonverbal, 37 ± 23). Scores were below average (full scale IQ &lt;85 or KET-KID &lt;16th percentile) in 12 cases. Mean preoperative ScO2 was lower in patients scoring below average (56.8% ± 7.1% vs 61.7% ± 5.8%; P = .028) and was correlated with full-scale IQ (r = 0.495; P = .001), verbal IQ (r = 0.524; P = .001), and performance IQ (r = 0.386; P = .012) scores, and with global (r = 0.360; P = .018) and verbal (r = 0.395, P = .009) KET-KID scores. A relationship between IQ or KET-KID scores and postoperative ScO2 was not found. Gestational age, head circumference z-score, age at surgery, and postoperative length of stay were associated with IQ and KET-KID scores. Neurodevelopmental outcome was in the lower-normal range. Along with innate patient factors, preoperative cerebral tissue oxygenation is likely an important determinant of cognitive development."	"Association between SCO2 mutation and extreme myopia in Japanese patients. To investigate the role of SCO2 in extreme myopia of Japanese patients. In total, 101 Japanese patients with extreme myopia (axial length of ≥30 mm) OU at the Kyoto University Hospital were included in this study. Exon 2 of SCO2 was sequenced by conventional Sanger sequencing. The detected variants were assessed using in silico prediction programs: SIFT, PolyPhen-2 and MutationTaster. To determine the frequency of the mutations in normal subjects, we referred to the 1000 Genomes Project data and the Human Genetic Variation Database (HGVD) in the Human Genetic Variation Browser. The average age of the participants was 62.9 ± 12.7 years. There were 31 males (30.7 %) and 70 females. Axial lengths were 31.76 ± 1.17 mm OD and 31.40 ± 1.07 mm OS, and 176 eyes (87.6 %) out of 201 eyes had myopic maculopathy of grade 2 or more. Among the 101 extremely myopic patients, one mutation (c.290 C &gt; T;p.Ala97Val) in SCO2 was detected. This mutation was not found in the 1000 Genomes Project data or HGVD data. Variant type of the mutation was nonsynonymous. Although the SIFT prediction score was 0.350, the PolyPhen-2 probability was 0.846, thus predicting its pathogenicity to be possibly damaging. MutationTaster PhyloP was 1.268, suggesting that the mutation is conserved. We identified one novel possibility of an extreme myopia-causing mutation in SCO2. No other disease-causing mutation was found in 101 extremely myopic Japanese patients, suggesting that SCO2 plays a limited role in Japanese extreme myopia. Further investigation is required for better understanding of extreme myopia."	"An African-specific polymorphism in the TP53 gene impairs p53 tumor suppressor function in a mouse model. A nonsynonymous single-nucleotide polymorphism at codon 47 in TP53 exists in African-descent populations (P47S, rs1800371; referred to here as S47). Here we report that, in human cell lines and a mouse model, the S47 variant exhibits a modest decrease in apoptosis in response to most genotoxic stresses compared with wild-type p53 but exhibits a significant defect in cell death induced by cisplatin. We show that, compared with wild-type p53, S47 has nearly indistinguishable transcriptional function but shows impaired ability to transactivate a subset of p53 target genes, including two involved in metabolism:Gls2(glutaminase 2) and Sco2 We also show that human and mouse cells expressing the S47 variant are markedly resistant to cell death by agents that induce ferroptosis (iron-mediated nonapoptotic cell death). We show that mice expressing S47 in homozygous or heterozygous form are susceptible to spontaneous cancers of diverse histological types. Our data suggest that the S47 variant may contribute to increased cancer risk in individuals of African descent, and our findings highlight the need to assess the contribution of this variant to cancer risk in these populations. These data also confirm the potential relevance of metabolism and ferroptosis to tumor suppression by p53."	"Residual trapping of supercritical CO2 in oil-wet sandstone. Residual trapping, a key CO2 geo-storage mechanism during the first decades of a sequestration project, immobilizes micrometre sized CO2 bubbles in the pore network of the rock. This mechanism has been proven to work in clean sandstones and carbonates; however, this mechanism has not been proven for the economically most important storage sites into which CO2 will be initially injected at industrial scale, namely oil reservoirs. The key difference is that oil reservoirs are typically oil-wet or intermediate-wet, and it is clear that associated pore-scale capillary forces are different. And this difference in capillary forces clearly reduces the capillary trapping capacity (residual trapping) as we demonstrate here. For an oil-wet rock (water contact angle θ=130°) residual CO2 saturation SCO2,r (≈8%) was approximately halved when compared to a strongly water-wet rock (θ=0°; SCO2,r≈15%). Consequently, residual trapping is less efficient in oil-wet reservoirs. "	"Chemical Composition and Biological Activity of Extracts Obtained by Supercritical Extraction and Ethanolic Extraction of Brown, Green and Red Propolis Derived from Different Geographic Regions in Brazil. The variations in the chemical composition, and consequently, on the biological activity of the propolis, are associated with its type and geographic origin. Considering this fact, this study evaluated propolis extracts obtained by supercritical extraction (SCO2) and ethanolic extraction (EtOH), in eight samples of different types of propolis (red, green and brown), collected from different regions in Brazil. The content of phenolic compounds, flavonoids, in vitro antioxidant activity (DPPH and ABTS), Artepillin C, p-coumaric acid and antimicrobial activity against two bacteria were determined for all extracts. For the EtOH extracts, the anti-proliferative activity regarding the cell lines of B16F10, were also evaluated. Amongst the samples evaluated, the red propolis from the Brazilian Northeast (states of Sergipe and Alagoas) showed the higher biological potential, as well as the larger content of antioxidant compounds. The best results were shown for the extracts obtained through the conventional extraction method (EtOH). However, the highest concentrations of Artepillin C and p-coumaric acid were identified in the extracts from SCO2, indicating a higher selectivity for the extraction of these compounds. It was verified that the composition and biological activity of the Brazilian propolis vary significantly, depending on the type of sample and geographical area of collection. "	"Genetic alterations in fatty acid transport and metabolism genes are associated with metastatic progression and poor prognosis of human cancers. Reprogramming of cellular metabolism is a hallmark feature of cancer cells. While a distinct set of processes drive metastasis when compared to tumorigenesis, it is yet unclear if genetic alterations in metabolic pathways are associated with metastatic progression of human cancers. Here, we analyzed the mutation, copy number variation and gene expression patterns of a literature-derived model of metabolic genes associated with glycolysis (Warburg effect), fatty acid metabolism (lipogenesis, oxidation, lipolysis, esterification) and fatty acid uptake in &gt;9000 primary or metastatic tumor samples from the multi-cancer TCGA datasets. Our association analysis revealed a uniform pattern of Warburg effect mutations influencing prognosis across all tumor types, while copy number alterations in the electron transport chain gene SCO2, fatty acid uptake (CAV1, CD36) and lipogenesis (PPARA, PPARD, MLXIPL) genes were enriched in metastatic tumors. Using gene expression profiles, we established a gene-signature (CAV1, CD36, MLXIPL, CPT1C, CYP2E1) that strongly associated with epithelial-mesenchymal program across multiple cancers. Moreover, stratification of samples based on the copy number or expression profiles of the genes identified in our analysis revealed a significant effect on patient survival rates, thus confirming prominent roles of fatty acid uptake and metabolism in metastatic progression and poor prognosis of human cancers. "	"Upregulation of energy metabolism-related, p53-target TIGAR and SCO2 in HuH-7 cells with p53 mutation by geranylgeranoic acid treatment. Metabolic alternation in cancer cells is one of the most common characteristics that distinguish malignant cells from normal cells. Many studies have explained the Warburg hypothesis that cancer cells obtain more energy from aerobic glycolysis than mitochondrial respiration. Here, we show that a branched-chain C-20 polyunsaturated fatty acid, geranylgeranoic acid (GGA), induces upregulation of the cellular protein levels of TP53-induced glycolysis and apoptosis regulator (TIGAR) and synthesis of cytochrome c oxidase 2 (SCO2) in human hepatoma-derived HuH-7cells harboring the mutant TP53 gene, suggesting that GGA may shift an energetic state of the tumor cells from aerobic glycolysis to mitochondrial respiration. In addition, UPLC/TOF/MS-based metabolomics analysis supported the GGA-induced energetic shift, as it revealed that GGA induced a time-dependent increase in the cellular contents of fructose 6-phosphate and decrease of fructose 1,6-diphosphate. Furthermore, metabolomics analysis revealed that GGA rapidly induced spermine accumulation with slight decrease of spermidine. Taken together, the present study strongly suggests that GGA may shift HuH-7 cells from aerobic glycolysis to mitochondrial respiration through the immediate upregulation of TIGAR and SCO2 protein levels."	"SCO2 Mediates Oxidative Stress-Induced Glycolysis to Oxidative Phosphorylation Switch in Hematopoietic Stem Cells. Fanconi anemia (FA) is an inherited bone marrow (BM) failure syndrome, presumably resulting from defects in hematopoietic stem cells (HSCs). Normal HSCs depend more on glycolysis than on oxidative phosphorylation (OXPHOS) for energy production. Here, we show that FA HSCs are more sensitive to the respiration inhibitor NaN3 treatment than to glycolytic inhibitor 2-deoxy-d-glucose (2-DG), indicating more dependence on OXPHOS. FA HSCs undergo glycolysis-to-OXPHOS switch in response to oxidative stress through a p53-dependent mechanism. Metabolic stresses induce upregulation of p53 metabolic targets in FA HSCs. Inactivation of p53 in FA HSCs prevents glycolysis-to-OXPHOS switch. Furthermore, p53-deficient FA HSCs are more sensitive to 2-DG-mediated metabolic stress. Finally, oxidative stress-induced glycolysis-to-OXPHOS switch is mediated by synthesis of cytochrome c oxidase 2 (SCO2). These findings demonstrate p53-mediated OXPHOS function as a compensatory alteration in FA HSCs to ensure a functional but mildly impaired energy metabolism and suggest a cautious approach to manipulating p53 signaling in FA."	"The role of cerebral oxygenation and regional cerebral blood flow on tolerance to central hypovolemia. Tolerance to central hypovolemia is highly variable, and accumulating evidence suggests that protection of anterior cerebral blood flow (CBF) is not an underlying mechanism. We hypothesized that individuals with high tolerance to central hypovolemia would exhibit protection of cerebral oxygenation (ScO2), and prolonged preservation of CBF in the posterior vs. anterior cerebral circulation. Eighteen subjects (7 male/11 female) completed a presyncope-limited lower body negative pressure (LBNP) protocol (3 mmHg/min onset rate). ScO2 (via near-infrared spectroscopy), middle cerebral artery velocity (MCAv), posterior cerebral artery velocity (PCAv) (both via transcranial Doppler ultrasound), and arterial pressure (via finger photoplethysmography) were measured continuously. Subjects who completed ≥70 mmHg LBNP were classified as high tolerant (HT; n = 7) and low tolerant (LT; n = 11) if they completed ≤60 mmHg LBNP. The minimum difference in LBNP tolerance between groups was 193 s (LT = 1,243 ± 185 s vs. HT = 1,996 ± 212 s; P &lt; 0.001; Cohen's d = 3.8). Despite similar reductions in mean MCAv in both groups, ScO2 decreased in LT subjects from -15 mmHg LBNP (P = 0.002; Cohen's d=1.8), but was maintained at baseline values until -75 mmHg LBNP in HT subjects (P &lt; 0.001; Cohen's d = 2.2); ScO2 was lower at -30 and -45 mmHg LBNP in LT subjects (P ≤ 0.02; Cohen's d ≥ 1.1). Similarly, mean PCAv decreased below baseline from -30 mmHg LBNP in LT subjects (P = 0.004; Cohen's d = 1.0), but remained unchanged from baseline in HT subjects until -75 mmHg (P = 0.006; Cohen's d = 2.0); PCAv was lower at -30 and -45 mmHg LBNP in LT subjects (P ≤ 0.01; Cohen's d ≥ 0.94). Individuals with higher tolerance to central hypovolemia exhibit prolonged preservation of CBF in the posterior cerebral circulation and sustained cerebral tissue oxygenation, both associated with a delay in the onset of presyncope. "	"Noninvasive diagnostics of mitochondrial disorders in isolated lymphocytes with high resolution respirometry. Mitochondrial diseases belong to the most severe inherited metabolic disorders affecting pediatric population. Despite detailed knowledge of mtDNA mutations and progress in identification of affected nuclear genes, diagnostics of a substantial part of mitochondrial diseases relies on clinical symptoms and biochemical data from muscle biopsies and cultured fibroblasts. To investigate manifestation of oxidative phosphorylation defects in isolated lymphocytes, digitonin-permeabilized cells from 48 children were analyzed by high resolution respirometry, cytofluorometric detection of mitochondrial membrane potential and immunodetection of respiratory chain proteins with SDS and Blue Native electrophoreses. Evaluation of individual respiratory complex activities, ATP synthesis, kinetic parameters of mitochondrial respiratory chain and the content and subunit composition of respiratory chain complexes enabled detection of inborn defects of respiratory complexes I, IV and V within 2 days. Low respiration with NADH-dependent substrates and increased respiration with glycerol-3-phosphate revealed complex I defects; changes in p 50 for oxygen and elevated uncoupling control ratio pointed to complex IV deficiency due to SURF1 or SCO2 mutation; high oligomycin sensitivity of state 3-ADP respiration, upregulated mitochondrial membrane potential and low content of complex V were found in lymphocytes with ATP synthase deficiency due to TMEM70 mutations. Based on our results, we propose the best biochemical parameters predictive for defects of respiratory complexes I, IV and V manifesting in peripheral blood lymphocytes. The noninvasiveness, reliability and speed of an approach utilizing novel biochemical criteria demonstrate the high potential of isolated lymphocytes for diagnostics of oxidative phosphorylation disorders in pediatric patients."	"Mitochondrial disease genes COA6, COX6B and SCO2 have overlapping roles in COX2 biogenesis. Biogenesis of cytochrome c oxidase (CcO), the terminal enzyme of the mitochondrial respiratory chain, is a complex process facilitated by several assembly factors. Pathogenic mutations were recently reported in one such assembly factor, COA6, and our previous work linked Coa6 function to mitochondrial copper metabolism and expression of Cox2, a copper-containing subunit of CcO. However, the precise role of Coa6 in Cox2 biogenesis remained unknown. Here we show that yeast Coa6 is an orthologue of human COA6, and like Cox2, is regulated by copper availability, further implicating it in copper delivery to Cox2. In order to place Coa6 in the Cox2 copper delivery pathway, we performed a comprehensive genetic epistasis analysis in the yeast Saccharomyces cerevisiae and found that simultaneous deletion of Coa6 and Sco2, a mitochondrial copper metallochaperone, or Coa6 and Cox12/COX6B, a structural subunit of CcO, completely abrogates Cox2 biogenesis. Unlike Coa6 deficient cells, copper supplementation fails to rescue Cox2 levels of these double mutants. Overexpression of Cox12 or Sco proteins partially rescues the coa6Δ phenotype, suggesting their overlapping but non-redundant roles in copper delivery to Cox2. These genetic data are strongly corroborated by biochemical studies demonstrating physical interactions between Coa6, Cox2, Cox12 and Sco proteins. Furthermore, we show that patient mutations in Coa6 disrupt Coa6-Cox2 interaction, providing the biochemical basis for disease pathogenesis. Taken together, these results place COA6 in the copper delivery pathway to CcO and, surprisingly, link it to a previously unidentified function of CcO subunit Cox12 in Cox2 biogenesis. "	"The Use of Cerebral Oximetry in Acute Carbon Monoxide Intoxication: A Preliminary Study. The purpose of this study was to assess the clinical usefulness of near-infrared spectroscopy (cerebral oximetry) in patients presenting to the emergency department (ED) with carbon monoxide (CO) intoxication. Eighteen patients with a diagnosis of CO intoxication who presented to our ED during 2013 were included in this prospective study. All patients were treated and monitored according to the standard recommendations for CO intoxication. In addition, cerebral oxygen saturation (ScO2) was measured using near-infrared spectroscopy, also known as cerebral oximetry. Minimum and maximum ScO2 values from the right and left frontal region were recorded using cerebral oximetry from immediately after presentation to the ED until discharge. Patient blood carboxyhemoglobin (COHb) levels before and after oxygen treatment were compared with the cerebral oximetry measurements. At the time of admission, mean blood (COHb) values were 29.3% ± 6.7%, and ScO2 values were 59.0 ± 4.0 in the right frontal region and 60.9 ± 5.1 in the left. When blood COHb levels had returned to normal following oxygen therapy, ScO2 values were 75.9 ± 6.1 (65.5-90.5) in the right frontal region and 74.9 ± 7.8 (62.0-90.0) in the left. The differences in ScO2 values before and after oxygen therapy were statistically significant (P ≤ 0.005). Assessment of patients exposed to CO gas using cerebral oximetry can provide information about cerebral oxygen saturation. Blood COHb level measurement is still the best method for diagnosing CO intoxication; however, cerebral oximetry, a non-invasive technique, may be an effective method for assessing cerebral oxygen saturation. "	"Reproducibility of a continuous ramp lower body negative pressure protocol for simulating hemorrhage. Central hypovolemia elicited by application of lower body negative pressure (LBNP) has been used extensively to simulate hemorrhage in human subjects. Traditional LBNP protocols incorporate progressive steps in pressure held for specific time intervals. The aim of this study was to assess the reproducibility of applying continuous LBNP at a constant rate until presyncope to replicate actual bleeding. During two trials (≥4 weeks intervening), LBNP was applied at a rate of 3 mmHg/min in 18 healthy human subjects (12M; 6F) until the onset of presyncopal symptoms. Heart rate (HR), mean arterial pressure (MAP), stroke volume (SV), total peripheral resistance (TPR), mean middle and posterior cerebral artery velocities (MCAv, PCAv), and cerebral oxygen saturation (ScO2) were measured continuously. Time to presyncope (TTPS) and hemodynamic responses were compared between the two trials. TTPS (1649 ± 98 sec vs. 1690 ± 88 sec; P = 0.47 [t-test]; r = 0.77) and the subsequent magnitude of central hypovolemia (%Δ SV -54 ± 4% vs. -53 ± 4%; P = 0.55) were similar between trials. There were no statistically distinguishable differences at either baseline (P ≥ 0.17) or presyncope between trials for HR, MAP, TPR, mean MCAv, mean PCAv, or ScO2 (P ≥ 0.19). The rate of change from baseline to presyncope for all hemodynamic responses was also similar between trials (P ≥ 0.12). Continuous LBNP applied at a rate of 3 mmHg/min was reproducible in healthy human subjects, eliciting similar reductions in central blood volume and subsequent reflex hemodynamic responses. "	"Low-dimensional ScO2 with tunable electronic and magnetic properties: first-principles studies. Transition metal dichalcogenides (TMDs) have attracted extensive attention due to their appealing properties for device applications. In this work, we explored the structure stability, electronic structure and magnetism of low-dimensional scandium dioxides, ScO2, by using the first-principles calculations. The results demonstrate that bulk ScO2, monolayers and nanoribbons (NRs) are thermodynamically stable, implying a high possibility of fabricating ScO2 nanocrystals in experiments. Despite the metallic characteristics of bulk ScO2, low-dimensional ScO2 possesses various electronic behaviors that can be further modulated by crystal structure and dimensionality. The results also show that the ground states of ScO2 monolayers and NRs are ferromagnetic (FM) with about 1 μ B per ScO2 formula. Our studies expand a new realm in low-dimensional TMDs, with tunable electronic and magnetic properties. "	"Cerebral oxygen saturation after multiple perioperative influential factors predicts the occurrence of postoperative cognitive dysfunction. Postoperative cognitive dysfunction (POCD) is a frequent complication in elderly patients undergoing major non-cardiac surgery, but its etiology is still unclear. Cerebral oxygen saturation (ScO2) represents the balance of cerebral oxygen supply and demand. The aim of present study was to evaluate the relationship between perioperative ScO2 and POCD, and to verify the hypothesis that the value of ScO2 after multiple perioperative influential factors could predict POCD in elderly patients undergoing total knee arthroplasty (TKA). Seventy eight Patients aged more than 65 years undergoing elective TKA with intrathecal anesthesia were enrolled. Cognitive functions were assessed one day before and 6 days after surgery, and POCD were defined according to ISPOCD. Demographics were recorded. Perioperative ScO2, blood pressure (BP), blood gas analysis and other clinical data were monitored and recorded, then the decrease of ScO2, BP and PaO2 after influential factors were calculated. POCD occurred in 15 patients (19.2 %). BP decreased after anesthesia induction and tourniquet deflation, and PaO2 decreased after cement implantation was higher in POCD group. ScO2 of POCD group is significantly lower than non-POCD group (P &lt; 0.05), and the absolute value and percentage decrease of ScO2 became significant between two groups after multiple influential factors. ScO2 after all influential factors (anesthesia induction, cement implantation and tourniquet deflation) had the best predictive performance for POCD (AUC = 0.742), and the optimal threshold was 66.5 %. Perioperative ScO2 of patients with POCD is lower than patients without POCD. ScO2 after multiple perioperative influential factors could be an effective predictor for POCD, which reveal an important role of ScO2 decrease in the development of POCD and provide possible treatment target."	"Ultrasound tagged near infrared spectroscopy does not detect hyperventilation-induced reduction in cerebral blood flow. Continuous non-invasive monitoring of cerebral blood flow (CBF) may be important during anaesthesia and several options are available. We evaluated the CerOx monitor that employs ultrasound tagged near infrared spectroscopy to estimate changes in a CBF index (CFI). Seven healthy males (age 21-26 years) hyperventilated and were administered phenylephrine to increase mean arterial pressure by 20-30 mmHg. Frontal lobe tissue oxygenation (ScO2) and CFI were obtained using the CerOx and mean blood flow velocity in the middle cerebral artery (MCAv mean) was determined by transcranial Doppler. Blood flow in the internal and external carotid artery (ICAf and ECAf) was determined using duplex ultrasonography and forehead skin blood flow (SkBF) and oxygenation (S skin O2) by laser Doppler and white light spectroscopy. During hyperventilation MCAv mean and ICAf decreased by 44% (median; interquartile range 40-49; p = 0.016) and 46% (40-53; p = 0.03), respectively. Conversely, CFI increased by 9% (2-31; p = 0.016), while no significant change was observed in ScO2. SkBF increased by 19% (9-53; p = 0.016) and S skin O2 by 6% (1-7; p = 0.047), although ECAf was unchanged. Administration of phenylephrine was not associated with any changes in MCAv mean, ICAf, ECAf, ScO2, SkBF, S skin O2, or CFI. The CerOx was able to detect a stable CBF during administration of phenylephrine. However, during hyperventilation MCAv mean and ICAf decreased while CFI increased, likely due to an increase in superficial tissue oxygenation. Thus, CFI does not provide an unbiased evaluation of changes in CBF."	"Core domain mutant Y220C of p53 protein has a key role in copper homeostasis in case of free fatty acids overload. Nonalcoholic fatty liver disease (NAFLD) is a pathology that includes a wide variety of clinical conditions ranging from simple steatosis to end-stage liver diseases. Despite the huge amount of researches, the molecular basis of NAFLD are still not fully understood. Recently, it was suggested a role for p53 in NAFLD pathogenesis. Among its targets there is Synthesis of Cytochrome c Oxidase 2 (SCO2), a copper chaperone, involved in both aerobic respiration and metal cellular excretion. Copper seems to play a role in NAFLD. It was demonstrated a low hepatic copper content in NAFLD patients, which correlates with metabolic syndrome parameters. Copper homeostasis deregulation, in fact, seems to be related to lipid metabolism alteration and insulin resistance. Here we provide evidence on the role of p53 in the modulation of copper homeostasis, in an experimental model of NAFLD. We used two different hepatoma cell lines, HepG2 and Huh 7.5.1, characterized by the presence of wt p53 and its Y220C mutant, respectively, treated with a free fatty acids (FFAs) solution. Interestingly, p53 activation correlated with the intracellular copper level maintenance. We demonstrated that, in hepatoma cell lines, core domain mutant Y220C of p53 affects the modulation of SCO2 and Copper transporter 1 (CTR1), influencing, in this way, intracellular copper homeostasis in presence of FFAs accumulation, and that the 220 residue of the protein is crucial for such control. The role of p53 we highlighted may have deep implications in clinical conditions where copper homeostasis is deregulated. "	"No Evidence for Association of SCO2 Heterozygosity with High-Grade Myopia or Other Diseases with Possible Mitochondrial Dysfunction. SCO2 mutations cause recessively inherited cytochrome c oxidase deficiency. Recently Tran-Viet et al. proposed that heterozygosity for pathogenic SCO2 variants, including the common E140K variant, causes high-grade myopia. To investigate the association of SCO2 mutations with myopia, ophthalmic examinations were performed on 35 E140K carriers, one homozygous infant, and on a mouse model of Sco2 deficiency. Additionally, a screen for other putative effects of SCO2 heterozygosity was carried out by comparing the prevalence of the common E140K variant in a population of patients with undiagnosed diseases compatible with SCO2-related pathogenesis to that in a general population sample. High-grade myopia was not identified in any of the studied individuals. Of the carriers, 17 were emmetropic, and 18 possessed refractive errors. Additionally, no significant axial elongation indicative of high-grade myopia was found in mice carrying E129K (corresponding to E140K in humans) knock-in mutations. The prevalence of E140K carriers in the symptomatic cohort was evaluated as 1:103 (CI: 0.44-2.09) and did not differ significantly from the population prevalence (1:147, CI: 0.45-1.04).Our study demonstrates that heterozygosity for pathogenic SCO2 variants is not associated with high-grade myopia in either human patients or in mice. "	"Loop recognition and copper-mediated disulfide reduction underpin metal site assembly of CuA in human cytochrome oxidase. Maturation of cytochrome oxidases is a complex process requiring assembly of several subunits and adequate uptake of the metal cofactors. Two orthologous Sco proteins (Sco1 and Sco2) are essential for the correct assembly of the dicopper CuA site in the human oxidase, but their function is not fully understood. Here, we report an in vitro biochemical study that shows that Sco1 is a metallochaperone that selectively transfers Cu(I) ions based on loop recognition, whereas Sco2 is a copper-dependent thiol reductase of the cysteine ligands in the oxidase. Copper binding to Sco2 is essential to elicit its redox function and as a guardian of the reduced state of its own cysteine residues in the oxidizing environment of the mitochondrial intermembrane space (IMS). These results provide a detailed molecular mechanism for CuA assembly, suggesting that copper and redox homeostasis are intimately linked in the mitochondrion. "	"The oncoprotein HBXIP promotes glucose metabolism reprogramming via downregulating SCO2 and PDHA1 in breast cancer. The glucose metabolism reprogramming is a hallmark of cancer. The oncoprotein hepatitis B X-interacting protein (HBXIP) functions in the development of breast cancer. In this study, we supposed that HBXIP might be involved in the glucose metabolism reprogramming in breast cancer. We showed that HBXIP led to increases in generation of intracellular glucose and lactate, as well as decreases in generation of reactive oxygen species. Expression of synthesis of cytochrome c oxidase 2 (SCO2) and pyruvate dehydrogenase alpha 1 (PDHA1), two factors of metabolic switch from oxidative phosphorylation to aerobic glycolysis, was suppressed by HBXIP. In addition, miR-183/182 and miR-96 directly inhibited the expression of SCO2 and PDHA1 through targeting their mRNA coding sequences (CDSs), respectively. Interestingly, HBXIP elevated the miR-183/96/182 cluster expression through hypoxia-inducible factor 1α (HIF1α). The stability of HIF1α was enhanced by HBXIP through disassociating interaction of von Hippel-Lindau protein (pVHL) with HIF1α. Moreover, miR-183 increased the levels of HIF1α protein through directly targeting CDS of VHL mRNA, forming a feedback loop of HIF1α/miR-183/pVHL/HIF1α. In function, HBXIP-elevated miR-183/96/182 cluster enhanced the glucose metabolism reprogramming in vitro. HBXIP-triggered glucose metabolism reprogramming promoted the growth of breast cancer in vivo. Thus, we conclude that the oncoprotein HBXIP enhances glucose metabolism reprogramming through suppressing SCO2 and PDHA1 in breast cancer. "	"Role of cerebral oxygenation for prediction of hypotension after spinal anesthesia for caesarean section. To investigate the role of cerebral oxygen saturation (ScO2) for prediction of hypotension after spinal anesthesia for caesarean section. Forty-five parturients undergoing elective caesarean section under spinal anesthesia were selected. Blood pressure, heart rate and pulse oxygen saturation before and after anesthesia were recorded, and the association between changes in ScO2 before and after anesthesia with hypotension after spinal anesthesia was explored. Hypotension occurred in 32 parturients after spinal anesthesia. The decrease in ScO2 after spinal anesthesia in parturients with hypotension was larger than in parturients without hypotension (P &lt; 0.05). The duration from the intrathecal injection to 5 % decrease in ScO2 was shorter than that from the intrathecal injection to the occurrence of hypotension (P &lt; 0.05). The mean time from 5 % decrease in ScO2 to hypotension was 38 s. The area under the receiver operation characteristic curve was 0.83 for decrease in ScO2 for prediction of hypotension (P &lt; 0.05), and the optimal threshold value was 4.5 %. The sensitivity, specificity, positive predictive value and negative predictive value of 4.5 % decrease in ScO2 for prediction of hypotension were 0.75, 0.78, 0.92 and 0.47, respectively. The decrease in ScO2 after spinal anesthesia is associated with hypotension after spinal anesthesia for cesarean section, and may be a clinically useful predictor. "	"Near-infrared spectroscopy assessed cerebral oxygenation during open abdominal aortic aneurysm repair: relation to end-tidal CO2 tension. During open abdominal aortic aneurism (AAA) repair cerebral blood flow is challenged. Clamping of the aorta may lead to unintended hyperventilation as metabolism is reduced by perfusion of a smaller part of the body and reperfusion of the aorta releases vasodilatory substances including CO2. We intend to adjust ventilation according end-tidal CO2 tension (EtCO2) and here evaluated to what extent that strategy maintains frontal lobe oxygenation (ScO2) as determined by near infrared spectroscopy. For 44 patients [5 women, aged 70 (48-83) years] ScO2, mean arterial pressure (MAP), EtCO2, and ventilation were obtained retrospectively from the anesthetic charts. By clamping the aorta, ScO2 and EtCO2 were kept stable by reducing ventilation (median, -0.8 l min(-1); interquartile range, -1.1 to -0.4; P &lt; 0.001). During reperfusion of the aorta a reduction in MAP by 8 mmHg (-15 to -1; P &lt; 0.001) did not prevent an increase in ScO2 by 2 % (-1 to 4; P &lt; 0.001) as EtCO2 increased 0.5 kPa (0.1-1.0; P &lt; 0.001) despite an increase in ventilation by 1.8 l min(-1) (0.9-2.7; P &lt; 0.001). Changes in ScO2 related to those in EtCO2 (r = 0.41; P = 0.0001) and cerebral deoxygenation (-15 %) was noted in three patients while cerebral hyperoxygenation (+15 %) manifests in one patient. Thus changes in ScO2 were kept within acceptable limits (±15 %) in 91 % of the patients. For the majority of the patients undergoing AAA repair ScO2 was kept within reasonable limits by reducing ventilation by approximately 1 l min(-1) upon clamping of the aorta and increasing ventilation by approximately 2 l min(-1) when the lower body is reperfused. "	"Assessment of Cerebral Autoregulation Patterns with Near-infrared Spectroscopy during Pharmacological-induced Pressure Changes. Previous work has demonstrated paradoxical increases in cerebral oxygen saturation (ScO2) as blood pressure decreases and paradoxical decreases in ScO2 as blood pressure increases. It has been suggested that these paradoxical responses indicate a functional cerebral autoregulation mechanism. Accordingly, the authors hypothesized that if this suggestion is correct, paradoxical responses will occur exclusively in patients with intact cerebral autoregulation. Thirty-four patients undergoing elective cardiac surgery were included. Cerebral autoregulation was assessed with the near-infrared spectroscopy-derived cerebral oximetry index (COx), computed by calculating the Spearman correlation coefficient between mean arterial pressure and ScO2. COx less than 0.30 was previously defined as functional autoregulation. During cardiopulmonary bypass, 20% change in blood pressure was accomplished with the use of nitroprusside for decreasing pressure and phenylephrine for increasing pressure. Effects on COx were assessed. Data were analyzed using two-way ANOVA, Kruskal-Wallis test, and Wilcoxon and Mann-Whitney U test. Sixty-five percent of patients had a baseline COx less than 0.30, indicating functional baseline autoregulation. In 50% of these patients (n = 10), COx became highly negative after vasoactive drug administration (from -0.04 [-0.25 to 0.16] to -0.63 [-0.83 to -0.26] after administration of phenylephrine, and from -0.05 [-0.19 to 0.17] to -0.55 [-0.94 to -0.35] after administration of nitroprusside). A negative COx implies a decrease in ScO2 with increase in pressure and, conversely, an increase in ScO2 with decrease in pressure. In this study, paradoxical changes in ScO2 after pharmacological-induced pressure changes occurred exclusively in patients with intact cerebral autoregulation, corroborating the hypothesis that these paradoxical responses might be attributable to a functional cerebral autoregulation."	"Simultaneous measurement of cerebral hemoglobin oxygen saturation and blood volume in asphyxiated neonates by near-infrared time-resolved spectroscopy. Hypoxic-ischemic encephalopathy (HIE) usually results in a poor clinical outcome even when treated with hypothermic therapy (HT). Early postnatal changes in cerebral blood oxygenation and hemodynamics may be critical determinants of brain injury and the efficacy of HT. We measured cerebral hemoglobin oxygen saturation (ScO2) and cerebral blood volume (CBV) by near-infrared time-resolved spectroscopy (TRS) in HT-treated and non-HT-treated neonatal HIE patients to assess the influence of these parameters on clinical outcome. We retrospectively compared ScO2, CBV, and clinical outcomes of 11 neonates with HIE: 5 were treated by HT (HT-treated; 33.5°C±0.5°C for 72h starting approximately 6h after delivery) and 6 were not (non-HT-treated). Both CBV and ScO2 were measured by TRS at 6, 24, 48, and 72h after birth. Magnetic resonance imaging (MRI) was performed 1-2weeks after birth to assess brain injury. Five neonates had adverse outcomes (3 HT-treated, 2 non-HT-treated). Of these, 1 died within 3days of birth and 4 had abnormal MRI findings, including basal ganglia, white matter, and/or thalamic lesions. The other 6 neonates had normal MRI findings (favorable outcome). At 6h after birth, CBV was significantly higher in neonates with adverse outcomes compared with those with a favorable outcome. At 24h after birth, ScO2 was significantly higher in neonates with adverse outcomes. Furthermore, we found that combined CBV at 24h after birth plus ScO2 had the best predictive ability for neurological outcome: sensitivity, specificity, positive predictive value, and negative predictive value were all 100%. Early postnatal CBV and ScO2 elevations were predictive of a poor outcome in HIE. Therefore, measuring combined CBV plus ScO2 at 24h after birth can allow more precise prediction of neurological outcome. Control of postnatal CBV and ScO2 is critical for effective HIE treatment."	"Cooperation between COA6 and SCO2 in COX2 maturation during cytochrome c oxidase assembly links two mitochondrial cardiomyopathies. Three mitochondria-encoded subunits form the catalytic core of cytochrome c oxidase, the terminal enzyme of the respiratory chain. COX1 and COX2 contain heme and copper redox centers, which are integrated during assembly of the enzyme. Defects in this process lead to an enzyme deficiency and manifest as mitochondrial disorders in humans. Here we demonstrate that COA6 is specifically required for COX2 biogenesis. Absence of COA6 leads to fast turnover of newly synthesized COX2 and a concomitant reduction in cytochrome c oxidase levels. COA6 interacts transiently with the copper-containing catalytic domain of newly synthesized COX2. Interestingly, similar to the copper metallochaperone SCO2, loss of COA6 causes cardiomyopathy in humans. We show that COA6 and SCO2 interact and that corresponding pathogenic mutations in each protein affect complex formation. Our analyses define COA6 as a constituent of the mitochondrial copper relay system, linking defects in COX2 metallation to cardiac cytochrome c oxidase deficiency. "	"Surface modification of chitin using ultrasound-assisted and supercritical CO2 technologies for cobalt adsorption. Ultrasound-assisted (UA) and supercritical CO2 technologies (SCO2) were used to modify the chitin surface and, improve its adsorption characteristics regarding to cobalt. Chitin, before and after the treatments, was characterized by N2 adsorption isotherms (BET), infrared spectroscopy (FT-IR), X-ray diffraction (XRD) and scanning electron microscopy (SEM). Unmodified and surface modified chitins were used as adsorbents to remove cobalt from aqueous solutions. The adsorption study was performed by equilibrium isotherms and kinetic curves. The chitin particle characteristics, such as, surface area, pore volume and porosity were improved by the UA and SCO2 treatments. The crystallinity index decreased after the UA and SCO2 treatments, and also, intense surface modifications were observed. Langmuir and Freundlich models were adequate to represent the adsorption equilibrium. The maximum adsorption capacities were 50.03, 83.94 and 63.08 mg g(-1) for unmodified chitin, UA surface modified chitin and SCO2 surface modified chitin. The adsorption kinetic curves were well represented by the pseudo-second order model. UA and SCO2 technologies are alternatives to modify the chitin surface and improve its adsorption characteristics."	"Coupling between arterial pressure, cerebral blood velocity, and cerebral tissue oxygenation with spontaneous and forced oscillations. We tested the hypothesis that transmission of arterial pressure to brain tissue oxygenation is low under conditions of arterial pressure instability. Two experimental models of hemodynamic instability were used in healthy human volunteers; (1) oscillatory lower body negative pressure (OLBNP) (N = 8; 5 male, 3 female), and; (2) maximal LBNP to presyncope (N = 21; 13 male, 8 female). Mean arterial pressure (MAP), middle cerebral artery velocity (MCAv), and cerebral tissue oxygen saturation (ScO2) were measured non-invasively. For the OLBNP protocol, between 0 and -60 mmHg negative pressure was applied for 20 cycles at 0.05 Hz, then 20 cycles at 0.1 Hz. For the maximal LBNP protocol, progressive 5 min stages of chamber decompression were applied until the onset of presyncope. Spectral power of MAP, mean MCAv, and ScO2 were calculated within the VLF (0.04-0.07 Hz), and LF (0.07-0.2 Hz) ranges, and cross-spectral coherence was calculated for MAP-mean MCAv, MAP-ScO2, and mean MCAv-ScO2 at baseline, during each OLBNP protocol, and at the level prior to pre-syncope during maximal LBNP (sub-max). The key findings are (1) both 0.1 Hz OLBNP and sub-max LBNP elicited increases in LF power for MAP, mean MCAv, and ScO2 (p ≤ 0.08); (2) 0.05 Hz OLBNP increased VLF power in MAP and ScO2 only (p ≤ 0.06); (3) coherence between MAP-mean MCAv was consistently higher (≥0.71) compared with MAP-ScO2, and mean MCAv-ScO2 (≤0.43) during both OLBNP protocols, and sub-max LBNP (p ≤ 0.04). These data indicate high linearity between pressure and cerebral blood flow variations, but reduced linearity between cerebral tissue oxygenation and both arterial pressure and cerebral blood flow. Measuring arterial pressure variability may not always provide adequate information about the downstream effects on cerebral tissue oxygenation, the key end-point of interest for neuronal viability. "	"Cardiac deficiency of single cytochrome oxidase assembly factor scox induces p53-dependent apoptosis in a Drosophila cardiomyopathy model. The heart is a muscle with high energy demands. Hence, most patients with mitochondrial disease produced by defects in the oxidative phosphorylation (OXPHOS) system are susceptible to cardiac involvement. The presentation of mitochondrial cardiomyopathy includes hypertrophic, dilated and left ventricular noncompaction, but the molecular mechanisms involved in cardiac impairment are unknown. One of the most frequent OXPHOS defects in humans frequently associated with cardiomyopathy is cytochrome c oxidase (COX) deficiency caused by mutations in COX assembly factors such as Sco1 and Sco2. To investigate the molecular mechanisms that underlie the cardiomyopathy associated with Sco deficiency, we have heart specifically interfered scox expression, the single Drosophila Sco orthologue. Cardiac-specific knockdown of scox reduces fly lifespan, and it severely compromises heart function and structure, producing dilated cardiomyopathy. Cardiomyocytes with low levels of scox have a significant reduction in COX activity and they undergo a metabolic switch from OXPHOS to glycolysis, mimicking the clinical features found in patients harbouring Sco mutations. The major cardiac defects observed are produced by a significant increase in apoptosis, which is dp53-dependent. Genetic and molecular evidence strongly suggest that dp53 is directly involved in the development of the cardiomyopathy induced by scox deficiency. Remarkably, apoptosis is enhanced in the muscle and liver of Sco2 knock-out mice, clearly suggesting that cell death is a key feature of the COX deficiencies produced by mutations in Sco genes in humans. "	"Leigh disease due to SCO2 mutations revealed at extended autopsy. NA"	"Krüppel-like factor 6 regulates mitochondrial function in the kidney. Maintenance of mitochondrial structure and function is critical for preventing podocyte apoptosis and eventual glomerulosclerosis in the kidney; however, the transcription factors that regulate mitochondrial function in podocyte injury remain to be identified. Here, we identified Krüppel-like factor 6 (KLF6), a zinc finger domain transcription factor, as an essential regulator of mitochondrial function in podocyte apoptosis. We observed that podocyte-specific deletion of Klf6 increased the susceptibility of a resistant mouse strain to adriamycin-induced (ADR-induced) focal segmental glomerulosclerosis (FSGS). KLF6 expression was induced early in response to ADR in mice and cultured human podocytes, and prevented mitochondrial dysfunction and activation of intrinsic apoptotic pathways in these podocytes. Promoter analysis and chromatin immunoprecipitation studies revealed that putative KLF6 transcriptional binding sites are present in the promoter of the mitochondrial cytochrome c oxidase assembly gene (SCO2), which is critical for preventing cytochrome c release and activation of the intrinsic apoptotic pathway. Additionally, KLF6 expression was reduced in podocytes from HIV-1 transgenic mice as well as in renal biopsies from patients with HIV-associated nephropathy (HIVAN) and FSGS. Together, these findings indicate that KLF6-dependent regulation of the cytochrome c oxidase assembly gene is critical for maintaining mitochondrial function and preventing podocyte apoptosis. "	"Detection of mutations in LRPAP1, CTSH, LEPREL1, ZNF644, SLC39A5, and SCO2 in 298 families with early-onset high myopia by exome sequencing. To evaluate variants in the LRPAP1, CTSH, LEPREL1, ZNF644, SLC39A5, and SCO2 genes in 298 unrelated patients with early-onset high myopia (eoHM). Genomic DNA from 298 patients with eoHM was analyzed by whole exome sequencing. Variants in LRPAP1, CTSH, LEPREL1, ZNF644, SLC39A5, and SCO2 genes were selected and analyzed with bioinformatics. Potential candidate variants were confirmed by Sanger sequencing and then validated in available family members and 192 healthy controls. A total of nine variants predicted to affect the functional residues were detected. The LRPAP1 gene showed a homozygous frameshift mutation (c.199delC, p.Q67Sfs*8) in a consanguineous family. The ZNF644 gene showed five heterozygous missense mutations (c.1106A&gt;T, p.K369M; c.1648G&gt;A, p.A550T; c.2014A&gt;G, p.S672G; c.2048G&gt;C, p.R683T, and c.2551G&gt;C, p.D851H) in five families, but the c.1106A&gt;T, (p.K369M) and c.1648G&gt;A, (p.A550T) in ZNF644 did not co-segregated with high myopia in the families and should be excluded as causative mutations. The SLC39A5 gene showed a heterozygous missense variant (c.1238G&gt;C, p.G413A) in a sporadic individual. The SCO2 gene showed two heterozygous missense variants (c.334C&gt;T, p.R112W and c.358C&gt;T, p.R120W) in two families. None of the variants was detected in 192 healthy controls and all were predicted to be damaging by both Polyphen-2 and SIFT, except for the previously reported p.S672G mutation in ZNF644, which was predicted to be damaging by SIFT but benign by Polyphen-2. No homozygous or compound heterozygous variants were found in CTSH and LEPREL1. Our results provide additional evidence to support the idea that mutation in LRPAP1 is associated with high myopia. Further studies are expected to evaluate the pathogenicity of the variants in CTSH, LEPREL1, ZNF644, SLC39A5, and SCO2."	"Utility of near infrared light to determine tissue oxygenation during hepato-biliary surgery. Near-infrared spectrophotometry assesses cerebral oxygen saturation (ScO2) based on the absorption spectra of oxygenated and deoxygenated hemoglobin, and the translucency of biological tissue, in the near-infrared band. There is increasing evidence that optimising cerebral oxygenation, guided by ScO2, is associated with improved outcomes in a variety of high risk surgical settings. However, in patients with liver disease, bilirubin can potentially render cerebral oximetry inaccurate. As a result, measurement of cerebral oxygen saturation is rarely undertaken in patients undergoing hepatobiliary surgery. We prospectively measured baseline and intraoperative cerebral oxygen saturation in patients undergoing major pancreatic surgery. Indices including bilirubin, sodium, platelets and maximum amplitude on thromboelastography were associated with low baseline ScO2. However, those patients with low ScO2 (≤51%) maintained a similar trend in cerebral oximetry values both at induction and intraoperatively to those with a normal ScO2. We conclude that the pattern of cerebral oximetry is similar in patients undergoing major pancreatic surgery regardless of their underlying liver dysfunction. Therefore, cerebral oximetry may have a role in monitoring neurological function in this high risk group of patients."	"Two-week normobaric intermittent-hypoxic exposures stabilize cerebral perfusion during hypocapnia and hypercapnia. The effect of moderately extended, intermittent-hypoxia (IH) on cerebral perfusion during changes in CO2 was unknown. Thus, we assessed the changes in cerebral vascular conductance (CVC) and cerebral tissue oxygenation (ScO2) during experimental hypocapnia and hypercapnia following 14-day normobaric exposures to IH (10% O2). CVC was estimated from the ratio of mean middle cerebral arterial blood flow velocity (transcranial Doppler sonography) to mean arterial pressure (tonometry), and ScO2 in the prefrontal cortex was monitored by near-infrared spectroscopy. Changes in CVC and ScO2 during changes in partial pressure of end-tidal CO2 (PETCO2, mass spectrometry) induced by 30-s paced-hyperventilation (hypocapnia) and during 6-min CO2 rebreathing (hypercapnia) were compared before and after 14-day IH exposures in eight young nonsmokers. Repetitive IH exposures reduced the ratio of %ΔCVC/ΔPETCO2 during hypocapnia (1.00 ± 0.13 vs 1.94 ± 0.35 vs %/mmHg, P = 0.026) and the slope of ΔCVC/ΔPETCO2 during hypercapnia (1.79 ± 0.37 vs 2.97 ± 0.64 %/mmHg, P = 0.021), but had no significant effect on ΔScO2/ΔPETCO2. The ventilatory response to hypercapnia during CO2 rebreathing was significantly diminished following 14-day IH exposures (0.83 ± 0.07 vs 1.14 ± 0.09 L/min/mmHg, P = 0.009). We conclude that repetitive normobaric IH exposures significantly diminish variations of cerebral perfusion in response to hypercapnia and hypocapnia without compromising cerebral tissue oxygenation. This IH-induced blunting of cerebral vasoreactivity during CO2 variations helps buffer excessive oscillations of cerebral underperfusion and overperfusion while sustaining cerebral O2 homeostasis. "	"Ventilatory strategy during liver transplantation: implications for near-infrared spectroscopy-determined frontal lobe oxygenation. As measured by near infrared spectroscopy (NIRS), cerebral oxygenation (ScO2) may be reduced by hyperventilation in the anhepatic phase of liver transplantation surgery (LTx). Conversely, the brain may be subjected to hyperperfusion during reperfusion of the grafted liver. We investigated the relationship between ScO2 and end-tidal CO2 tension (EtCO2) during the various phases of LTx. In this retrospective study, 49 patients undergoing LTx were studied. Forehead ScO2, EtCO2, minute ventilation (VE), and hemodynamic variables were recorded from the beginning of surgery through to the anhepatic and reperfusion phases during LTx. In the anhepatic phase, ScO2 was reduced by 4.3% (95% confidence interval: 2.5-6.0%; P &lt; 0.0001), EtCO2 by 0.3 kPa (0.2-0.4 kPa; P &lt; 0.0001), and VE by 0.4 L/min (0.1-0.7 L/min; P = 0.0018). Conversely, during reperfusion of the donated liver, ScO2 increased by 5.5% (3.8-7.3%), EtCO2 by 0.7 kPa (0.5-0.8 kPa), and VE by 0.6 L/min (0.3-0.9 L/min; all P &lt; 0.0001). Changes in ScO2 were correlated to those in EtCO2 (Pearson r = 0.74; P &lt; 0.0001). During LTx, changes in ScO2 are closely correlated to those of EtCO2. Thus, this retrospective analysis suggests that attention to maintain a targeted EtCO2 would result in a more stable ScO2 during the operation."	"Case report: (Pre)syncopal symptoms associated with a negative internal jugular venous pressure. A siphon is suggested to support cerebral blood flow but appears not to be established because internal jugular venous (IJV) pressure is close to zero in upright humans. Thus, in eleven young healthy males, IJV pressure was 9 ± 1 mmHg (mean ± SE) when supine and fell to 3 ± 1 mmHg when seated, and middle cerebral artery mean blood velocity (MCA Vmean; P &lt; 0.007) and the near-infrared spectroscopy-determined frontal lobe oxygenation (ScO2; P = 0.028) also decreased. Another subject, however, developed (pre)syncopal symptoms while seated and his IJV pressure decreased to -17 mmHg. Furthermore, his MCA Vmean decreased and yet within the time of observation ScO2 was not necessarily affected. These findings support the hypothesis that a negative IJV pressure that is a prerequisite for creation of a siphon provokes venous collapse inside the dura, and thereby limits rather than supports CBF. "	"Vascular endothelial growth factor recovers suppressed cytochrome c oxidase activity by restoring copper availability in hypertrophic cardiomyocytes. Cardiomyocyte hypertrophy induced by phenylepherine (PE) is accompanied by depression of cytochrome c oxidase (COX) activity. Vascular endothelial growth factor (VEGF) recovers the suppressed COX activity and reverses cardiomyocyte hypertrophy. Because PE causes intracellular copper (Cu) depletion and COX activity is Cu-dependent, the present study was undertaken to test the hypothesis that VEGF recovers suppressed COX activity by restoring Cu availability. Primary cultures of neonatal rat cardiomyocytes were treated with PE at a final concentration of 100 µmol/L in cultures for 48 h to induce cell hypertrophy. The hypertrophic cardiomyocytes were exposed to VEGF at a final concentration of 20 ng/mL in cultures for 24 h. Atomic absorption spectrometry analysis revealed that VEGF restored PE-depleted Cu concentrations in hypertrophic cardiomyocytes along with the recovery of COX activity. Western blot analysis showed that protein contents of COX subunit COX-IV and Cu chaperones for COX (COX17, COX11, and SCO2) were decreased in response to PE treatment, and recovered after VEGF treatment. In addition, VEGF treatment suppressed PE-induced accumulation of reactive oxygen species (ROS) and the relevant elevation of homocysteine, which has been shown to form complexes with Cu to restrict Cu availability. This study thus demonstrates that VEGF recovers PE-suppressed COX activity by restoring Cu availability and VEGF suppression of ROS accumulation and homocysteine elevation would contribute to the increased Cu availability. "	"Analysis of reported SCO2 gene mutations affecting cytochrome c oxidase activity in various diseases. A large number of mutations have been reported in SCO2 (synthesis of cytochrome c oxidase) gene in association with COX deficiency reported in different diseases such as cardioencephalomyopathy, cardiomyopathy and Leigh syndrome. However, very few of these mutations have been functionally analyzed.SCO2 gene encodes for an essential assembly factor for the formation of cytochrome c oxidase (COX). It is a nuclear encoded protein that helps in transfer of copper ions to COX. This study is an attempt to understand the possible effect of these mutations on the structure and function of SCO2 protein, by using different in silico tools. As per Human Gene Mutation Database, total 11 non synonymous variations have been reported in SCO2 gene. Among these 11 variations, only E140K and R171W are functionally proven to cause COX deficiency. They have been used as controls in this study. The remaining variations were further analyzed using ClustalW, SIFT, PolyPhen-2, GOR4, MuPro and Panther softwares. As compared to the results of the controls, most of these variations were predicted to affect the structure of SCO2 protein and hence, may cause COX dysfunction. Thus, we hypothesize that these variations have the potential to result in a disease phenotype and should be investigated by subsequent functional analyses. This will help in an appropriate diagnosis and management of the wide spectrum of COX deficiency diseases. "	"Indoleamine 2,3-dioxygenase increases p53 levels in alloreactive human T cells, and both indoleamine 2,3-dioxygenase and p53 suppress glucose uptake, glycolysis and proliferation. Indoleamine 2,3-dioxygenase (IDO) suppresses adaptive immunity by inhibiting T-cell proliferation and altering glucose metabolism. The tumor suppressor p53 also alters these cellular processes with similar results. The effect of IDO on p53 and on glucose metabolism was evaluated in alloreactive T cells. Mixed-lymphocyte reactions (MLRs) were performed in the presence or not of the IDO inhibitor, 1-dl-methyl-tryptophan (1-MT) and/or the p53 inhibitor, pifithrin-α (PFT). Cell proliferation, glucose consumption and lactate production were assessed. 1-MT increased cell proliferation, glucose influx and lactate production, whereas PFT enhanced cell proliferation and glucose influx, leaving lactate production unaffected. In MLR-derived T cells, protein analysis revealed that IDO activated general control non-derepressible 2 kinase and induced p53, p-p53 (p53 phosphorylated at serine 15) and p21. In addition, both IDO and p53 decreased glucose transporter 1 and TP53-induced glycolysis and apoptosis regulator and increased synthesis of cytochrome c oxidase 2. IDO also reduced lactate dehydrogenase-A and glutaminase 2 levels, whereas p53 left them unaffected. Neither 1-MT nor PFT affected glucose-6-phosphate dehydrogenase. In conclusion, in alloreactive T cells, IDO increases p53 levels, and both IDO and p53 inhibit cell proliferation, glucose consumption and glycolysis. Lactate production and glutaminolysis are also suppressed by IDO, but not by p53. "	"Use of whole-exome sequencing to determine the genetic basis of multiple mitochondrial respiratory chain complex deficiencies. Mitochondrial disorders have emerged as a common cause of inherited disease, but their diagnosis remains challenging. Multiple respiratory chain complex defects are particularly difficult to diagnose at the molecular level because of the massive number of nuclear genes potentially involved in intramitochondrial protein synthesis, with many not yet linked to human disease. To determine the molecular basis of multiple respiratory chain complex deficiencies. We studied 53 patients referred to 2 national centers in the United Kingdom and Germany between 2005 and 2012. All had biochemical evidence of multiple respiratory chain complex defects but no primary pathogenic mitochondrial DNA mutation. Whole-exome sequencing was performed using 62-Mb exome enrichment, followed by variant prioritization using bioinformatic prediction tools, variant validation by Sanger sequencing, and segregation of the variant with the disease phenotype in the family. Presumptive causal variants were identified in 28 patients (53%; 95% CI, 39%-67%) and possible causal variants were identified in 4 (8%; 95% CI, 2%-18%). Together these accounted for 32 patients (60% 95% CI, 46%-74%) and involved 18 different genes. These included recurrent mutations in RMND1, AARS2, and MTO1, each on a haplotype background consistent with a shared founder allele, and potential novel mutations in 4 possible mitochondrial disease genes (VARS2, GARS, FLAD1, and PTCD1). Distinguishing clinical features included deafness and renal involvement associated with RMND1 and cardiomyopathy with AARS2 and MTO1. However, atypical clinical features were present in some patients, including normal liver function and Leigh syndrome (subacute necrotizing encephalomyelopathy) seen in association with TRMU mutations and no cardiomyopathy with founder SCO2 mutations. It was not possible to confidently identify the underlying genetic basis in 21 patients (40%; 95% CI, 26%-54%). Exome sequencing enhances the ability to identify potential nuclear gene mutations in patients with biochemically defined defects affecting multiple mitochondrial respiratory chain complexes. Additional study is required in independent patient populations to determine the utility of this approach in comparison with traditional diagnostic methods."	"Role of SCOX in determination of Drosophila melanogaster lifespan. In man, COX (cytochrome c oxidase) deficiency is reported to be related to mutation of the SCO2 (synthesis of cytochrome c oxidase 2) gene, which encodes one of the copper-donor chaperones involved in the assembly of mitochondrial cytochrome c oxidase. Such COX deficiency due to the genetic condition leads to heart disease and the Leigh syndrome and is frequently fatal in childhood. Synthesis of cytochrome c oxidase X (SCOX) is a Drosophila orthologue of human SCO2. Here, we generated SCOX-knockdown flies and the full length SCOX transgenic flies to investigate the in vivo roles of SCOX. Our results demonstrated knockdown of SCOX gene in all cells and tissues to be associated with lethality at larval or pupal stages and this correlated with a decrease in ATP level. In contrast, the full length SCOX transgenic flies showed a longer lifespan than wild type flies and control flies carrying Act5C-GAL4 alone and this correlated with an increase in ATP level. Finally, when cultured on paraquat-added medium, full length SCOX transgenic flies also exhibited an elongated lifespan. Therefore, we hypothesized that SCOX plays an important role in ATP production and consumption, which helps to prevent production of mitochondrial reactive oxygen species and/or impairment of mitochondrial activity under oxidative stress. "	"Cardiovascular consequence of reclining vs. sitting beach-chair body position for induction of anesthesia. The sitting beach-chair position is regularly used for shoulder surgery and anesthesia may be induced in that position. We tested the hypothesis that the cardiovascular challenge induced by induction of anesthesia is attenuated if the patient is placed in a reclining beach-chair position. Anesthesia was induced with propofol in the sitting beach-chair (n = 15) or with the beach-chair tilted backwards to a reclining beach-chair position (n = 15). The last group was stepwise tilted to the sitting beach-chair position prior to surgery. Hypotension was treated with ephedrine. Continuous hemodynamic variables were recorded by photoplethysmography and frontal cerebral oxygenation (ScO2) by near infrared spectroscopy. Significant differences were only observed immediately after the induction when patients induced in a reclining beach-chair position had higher mean arterial pressure (MAP) (35 ± 12 vs. 45 ± 15 % reduction from baseline, p = 0.04) and ScO2 (7 ± 6 vs. 1 ± 8% increase from baseline, p = 0.02) and received less ephedrine (mean: 4 vs. 13 mg, p = 0.048). The higher blood pressure and lower need of vasopressor following induction of anesthesia in the reclining compared to the sitting beach-chair position indicate more stable hemodynamics with the clinical implication that anesthesia should not be induced with the patient in the sitting position. "	"Role of notch signaling in the maintenance of human mesenchymal stem cells under hypoxic conditions. Human adipose tissue-derived multilineage progenitor cells (hADMPCs) are attractive for cell therapy and tissue engineering because of their multipotency and ease of isolation without serial ethical issues. However, their limited in vitro lifespan in culture systems hinders their therapeutic application. Some somatic stem cells, including hADMPCs, are known to be localized in hypoxic regions; thus, hypoxia may be beneficial for ex vivo culture of these stem cells. These cells exhibit a high level of glycolytic metabolism in the presence of high oxygen levels and further increase their glycolysis rate under hypoxia. However, the physiological role of glycolytic activation and its regulatory mechanisms are still incompletely understood. Here, we show that Notch signaling is required for glycolysis regulation under hypoxic conditions. Our results demonstrate that 5% O2 dramatically increased the glycolysis rate, improved the proliferation efficiency, prevented senescence, and maintained the multipotency of hADMPCs. Intriguingly, these effects were not mediated by hypoxia-inducible factor (HIF), but rather by the Notch signaling pathway. Five percent O2 significantly increased the level of activated Notch1 and expression of its downstream gene, HES1. Furthermore, 5% O2 markedly increased glucose consumption and lactate production of hADMPCs, which decreased back to normoxic levels on treatment with a γ-secretase inhibitor. We also found that HES1 was involved in induction of GLUT3, TPI, and PGK1 in addition to reduction of TIGAR and SCO2 expression. These results clearly suggest that Notch signaling regulates glycolysis under hypoxic conditions and, thus, likely affects the cell lifespan via glycolysis. "	"As a novel p53 direct target, bidirectional gene HspB2/αB-crystallin regulates the ROS level and Warburg effect. Many mammalian genes are composed of bidirectional gene pairs with the two genes separated by less than 1.0kb. The transcriptional regulation and function of these bidirectional genes remain largely unclear. Here, we report that bidirectional gene pair HspB2/αB-crystallin, both of which are members of the small heat shock protein gene family, is a novel direct target gene of p53. Two potential binding sites of p53 are present in the intergenic region of HspB2/αB-crystallin. p53 up-regulated the bidirectional promoter activities of HspB2/αB-crystallin. Actinomycin D (ActD), an activator of p53, induces the promoter and protein activities of HspB2/αB-crystallin. p53 binds to two p53 binding sites in the intergenic region of HspB2/αB-crystallin in vitro and in vivo. Moreover, the products of bidirectional gene pair HspB2/αB-crystallin regulate glucose metabolism, intracellular reactive oxygen species (ROS) level and the Warburg effect by affecting metabolic genes, including the synthesis of cytochrome c oxidase 2 (SCO2), hexokinase II (HK2), and TP53-induced glycolysis and apoptosis regulator (TIGAR). The ROS level and the Warburg effect are affected after the depletion of p53, HspB2 and αB-crystallin respectively. Finally, we show that both HspB2 and αB-crystallin are linked with human renal carcinogenesis. These findings provide novel insights into the role of p53 as a regulator of bidirectional gene pair HspB2/αB-crystallin-mediated ROS and the Warburg effect. "	"NAD(+)-dependent activation of Sirt1 corrects the phenotype in a mouse model of mitochondrial disease. Mitochondrial disorders are highly heterogeneous conditions characterized by defects of the mitochondrial respiratory chain. Pharmacological activation of mitochondrial biogenesis has been proposed as an effective means to correct the biochemical defects and ameliorate the clinical phenotype in these severely disabling, often fatal, disorders. Pathways related to mitochondrial biogenesis are targets of Sirtuin1, a NAD(+)-dependent protein deacetylase. As NAD(+) boosts the activity of Sirtuin1 and other sirtuins, intracellular levels of NAD(+) play a key role in the homeostatic control of mitochondrial function by the metabolic status of the cell. We show here that supplementation with nicotinamide riboside, a natural NAD(+) precursor, or reduction of NAD(+) consumption by inhibiting the poly(ADP-ribose) polymerases, leads to marked improvement of the respiratory chain defect and exercise intolerance of the Sco2 knockout/knockin mouse, a mitochondrial disease model characterized by impaired cytochrome c oxidase biogenesis. This strategy is potentially translatable into therapy of mitochondrial disorders in humans. "	"Imatinib inhibits the expression of SCO2 and FRATAXIN genes that encode mitochondrial proteins in human Bcr-Abl⁺ leukemia cells. Imatinib mesylate (IM/Gleevec®), a selective inhibitor of chimeric Bcr-Abl tyrosine kinase, was developed as a first line drug to treat CML and ALL Ph(+) patients. Earlier studies have shown that hemin counteracts the IM-induced cell killing in human K-562 CML cells. In this study, we investigated whether IM disrupts the heme-dependent Cytochrome c Oxidase (COX) Biosynthesis and Assembly Pathway (HDCBAP) in Bcr-Abl(+) and Bcr-Abl(-) cells by affecting the expression of key-genes. Cells were exposed to IM and evaluated at time intervals for cell growth, cell death, expression of various genes by RT-PCR analysis as well as Sco2 mature protein levels by western blot analysis and COX enzymatic activity. IM at 1 μM induced extensive cell growth inhibition and cell death as well as marked suppression of the expression of SCO2 and FRATAXIN (FXN) genes in human K-562 and KU-812 Bcr-Abl(+) CML cells. IM also reduced the protein level of mature Sco2 mitochondrial protein as well as COX activity in these cell lines. However, treatment of human MOLT-4 Bcr-Abl(-) cells with 1μM and even with higher concentrations (4×10(-5)M) of IM neither reduced the expression of SCO2 and FXN genes nor suppressed the protein level of mature Sco2 protein and COX activity. Our findings indicate that SCO2 and FXN genes, involved in HDCBAP, are repressed by IM in human Bcr-Abl(+) CML cells and may represent novel target sites in leukemia therapy."	"A decrease in spatially resolved near-infrared spectroscopy-determined frontal lobe tissue oxygenation by phenylephrine reflects reduced skin blood flow. Spatially resolved near-infrared spectroscopy-determined frontal lobe tissue oxygenation (ScO2) is reduced with administration of phenylephrine, while cerebral blood flow may remain unaffected. We hypothesized that extracranial vasoconstriction explains the effect of phenylephrine on ScO2. We measured ScO2 and internal and external carotid as well as vertebral artery blood flow in 7 volunteers (25 [SD 4] years) by duplex ultrasonography during IV infusion of phenylephrine, together with middle cerebral artery mean blood velocity, forehead skin blood flow, and mean arterial blood pressure. During phenylephrine infusion, mean arterial blood pressure increased, while ScO2 decreased by -19% ± 3% (mean ± SE; P = 0.0005). External carotid artery (-27.5% ± 3.0%) and skin blood flow (-25.4% ± 7.8%) decreased in response to phenylephrine administration, and there was a relationship between ScO2 and forehead skin blood flow (Pearson r = 0.55, P = 0.042, 95% confidence interval [CI], = 0.025-0.84; Spearman r = 0.81, P &lt; 0.001, 95% CI, 0.49-0.94) and external carotid artery conductance (Pearson r = 0.62, P = 0.019, 95% CI, 0.13 to 0.86; Spearman r = 0.64, P = 0.012, 95% CI, 0.17-0.88). These findings suggest that a phenylephrine-induced decrease in ScO2, as determined by INVOS-4100 near-infrared spectroscopy, reflects vasoconstriction in the extracranial vasculature rather than a decrease in cerebral oxygenation."	"Effect of phenylephrine vs. ephedrine on frontal lobe oxygenation during caesarean section with spinal anesthesia: an open label randomized controlled trial. During caesarean section spinal anesthesia may provoke maternal hypotension that we prevent by administration of phenylephrine and/or ephedrine. Phenylephrine is however reported to reduce the near infrared spectroscopy-determined frontal lobe oxygenation (ScO2) but whether that is the case for patients exposed to spinal anesthesia is not known. To evaluate the impact of phenylephrine vs. ephedrine on ScO2during caesarean section with spinal anesthesia in a single center, open-label parallel-group study with balanced randomization of 24 women (1:1). Secondary aims were to compare the effect of the two drugs on maternal hemodynamics and fetal heart rate. Ephedrine (0.8-3.3 mg/min) vs. phenylephrine infusion (0.02-0.07 mg/min). For the duration of surgery, administration of ephedrine maintained ScO2 (compared to baseline +2.1 ± 2.8%; mean ± SE, while phenylephrine reduced ScO2 (-8.6 ± 2.8%; p = 0.005) with a 10.7% difference in ScO2between groups (p = 0.0106). Also maternal heart rate was maintained with ephedrine (+3 ± 3 bpm) but decreased with phenylephrine (-11 ± 3 bpm); difference 14 bpm (p = 0.0053), but no significant difference in mean arterial pressure (p = 0.1904) or CO (p = 0.0683) was observed between groups. The two drugs also elicited an equal increase in fetal heart rate (by 19 ± 3 vs. 18 ± 3 bpm; p = 0.744). In the choice between phenylephrine and ephedrine for maintenance of blood pressure during caesarean section with spinal anesthesia, ephedrine maintains frontal lobe oxygenation and maternal heart rate with a similar increase in fetal heart rate as elicited by phenylephrine. Clinical trials NCT 01509521 and EudraCT 2001 006103 35."	"Human COX20 cooperates with SCO1 and SCO2 to mature COX2 and promote the assembly of cytochrome c oxidase. Cytochrome c oxidase (CIV) deficiency is one of the most common respiratory chain defects in patients presenting with mitochondrial encephalocardiomyopathies. CIV biogenesis is complicated by the dual genetic origin of its structural subunits, and assembly of a functional holoenzyme complex requires a large number of nucleus-encoded assembly factors. In general, the functions of these assembly factors remain poorly understood, and mechanistic investigations of human CIV biogenesis have been limited by the availability of model cell lines. Here, we have used small interference RNA and transcription activator-like effector nucleases (TALENs) technology to create knockdown and knockout human cell lines, respectively, to study the function of the CIV assembly factor COX20 (FAM36A). These cell lines exhibit a severe, isolated CIV deficiency due to instability of COX2, a mitochondrion-encoded CIV subunit. Mitochondria lacking COX20 accumulate CIV subassemblies containing COX1 and COX4, similar to those detected in fibroblasts from patients carrying mutations in the COX2 copper chaperones SCO1 and SCO2. These results imply that in the absence of COX20, COX2 is inefficiently incorporated into early CIV subassemblies. Immunoprecipitation assays using a stable COX20 knockout cell line expressing functional COX20-FLAG allowed us to identify an interaction between COX20 and newly synthesized COX2. Additionally, we show that SCO1 and SCO2 act on COX20-bound COX2. We propose that COX20 acts as a chaperone in the early steps of COX2 maturation, stabilizing the newly synthesized protein and presenting COX2 to its metallochaperone module, which in turn facilitates the incorporation of mature COX2 into the CIV assembly line. "	"Loss of LRPPRC causes ATP synthase deficiency. Defects of the oxidative phosphorylation system, in particular of cytochrome-c oxidase (COX, respiratory chain complex IV), are common causes of Leigh syndrome (LS), which is a rare neurodegenerative disorder with severe progressive neurological symptoms that usually present during infancy or early childhood. The COX-deficient form of LS is commonly caused by mutations in genes encoding COX assembly factors, e.g. SURF1, SCO1, SCO2 or COX10. However, other mutations affecting genes that encode proteins not directly involved in COX assembly can also cause LS. The leucine-rich pentatricopeptide repeat containing protein (LRPPRC) regulates mRNA stability, polyadenylation and coordinates mitochondrial translation. In humans, mutations in Lrpprc cause the French Canadian type of LS. Despite the finding that LRPPRC deficiency affects the stability of most mitochondrial mRNAs, its pathophysiological effect has mainly been attributed to COX deficiency. Surprisingly, we show here that the impaired mitochondrial respiration and reduced ATP production observed in Lrpprc conditional knockout mouse hearts is caused by an ATP synthase deficiency. Furthermore, the appearance of inactive subassembled ATP synthase complexes causes hyperpolarization and increases mitochondrial reactive oxygen species production. Our findings shed important new light on the bioenergetic consequences of the loss of LRPPRC in cardiac mitochondria. "	"Complete genome sequence of the kirromycin producer Streptomyces collinus Tü 365 consisting of a linear chromosome and two linear plasmids. Streptomyces collinus Tü 365 (DSMZ 40733), isolated from Kouroussa (Guinea), is the producer of the elfamycin family antibiotic kirromycin, which inhibits bacterial protein biosynthesis by interfering with elongation factor EF-Tu. Here, we report on the Streptomyces collinus Tü 365 complete genome sequence of the 8.27 MB chromosome and the two plasmids SCO1 and SCO2."	"Relationship between early changes in cerebral blood volume and electrocortical activity after hypoxic-ischemic insult in newborn piglets. Early changes in cerebral hemodynamics and depressed electrocortical activity have been reported after a hypoxic-ischemic (HI) insult. However, the relationship between these two parameters is unclear. This study aimed to examine the relationship between changes in cerebral blood volume (CBV) and cerebral Hb oxygen saturation (ScO2) after a HI insult and the low amplitude-integrated electroencephalography (aEEG) duration concomitantly observed. Sixteen newborn piglets obtained within 24h of birth were used (n=3 controls). Thirteen piglets were subjected to a HI insult of 20-min low-amplitude aEEG (&lt;5 μV, LAEEG), after which a low mean arterial blood pressure (&lt;70% of baseline) was maintained for 10 min. We measured changes in CBV and ScO2 using near-infrared time-resolved spectroscopy (TRS) and cerebral electrocortical activities using aEEG until 6h after the insult. A positive correlation was observed between the LAEEG duration and CBV increase, but not ScO2, after the insult. These results suggest that a larger increase in CBV reflected a more severe failure in cerebral circulation to maintain cell membrane action potentials, which induced a more extended recovery period of electrocortical activity after the insult. We conclude that an early increase in CBV and longer LAEEG indicate severe brain injury."	"Factors affecting the performance of 5 cerebral oximeters during hypoxia in healthy volunteers. Cerebral oximetry is a noninvasive optical technology that measures frontal cortex blood hemoglobin-oxygen saturation. Commercially available cerebral oximeters have not been evaluated independently. Unlike pulse oximeters, there are currently no Food and Drug Administration standards for performance or accuracy. We tested the hypothesis that cerebral oximeters accurately measure a fixed ratio of the oxygen saturation in cerebral mixed venous and arterial blood. We evaluated the performance of 5 commercially available cerebral oximeters: the EQUANOX® 7600 in 3- and 4-wavelength versions (Nonin Medical, Plymouth, MN), FORE-SIGHT® (Casmed, Branford, CT), INVOS® 5100C (Covidien, Boulder, CO), and the NIRO-200NX® (Hamamatsu Photonics, Hamamatsu City, Japan) during stable isocapnic hypoxia in volunteers. Twenty-three healthy adults (14 men, 9 women) had sensors placed on each side of the forehead. The subject's inspired oxygen (FIO2) was then changed to produce 6 steady-state arterial oxygen saturation (SaO2) levels between 100% and 70%, while end-tidal CO2 was maintained constant. At each plateau, simultaneous blood samples from the jugular bulb and radial artery were analyzed with a hemoximeter (OSM-3, Radiometer Medical A/S, Copenhagen, Denmark). Each cerebral oximeter's bias was calculated as the difference between the instrument's reading (cerebral saturation, ScO2) with the weighted saturation of venous and arterial blood (Sa/vO2), as specified by each manufacturer (INVOS: 25% arterial/75% venous; FORE-SIGHT, EQUANOX, and NIRO: 30% arterial/70% venous). Five hundred forty-two comparisons between paired blood samples and oximeter readings were analyzed. The pooled root mean square error was 8.06%, a value higher than for pulse oximeters, which is ±3% by Food and Drug Administration standards. The mean % bias ± SD (precision) and root mean square errors were: FORE-SIGHT 1.76 ± 3.92 and 4.28; INVOS 0.05 ± 9.72 and 9.69; NIRO-200NX -1.13 ± 9.64 and 9.68; EQUANOX-3 λ 2.48 ± 8.12 and 8.47; EQUANOX-4 λ 2.84 ± 6.27 and 6.86. The FORE-SIGHT, NIRO-200NX, and EQUANOX-3 λ had significantly more positive bias at lower SaO2. The amount of bias during hypoxia was reduced when the bias was calculated on the basis of difference between oximeter reading and the arterial and mixed venous saturation difference rather than the weighted average of blood saturation, indicating that differences in the ratio between arterial and venous blood volumes account for some of the positive bias at low saturation. Dark skin pigment tended to produce more negative bias in all instruments but bias was significantly larger than zero only for the FORE-SIGHT oximeter. Bias was significantly more negative in women for INVOS and EQUANOX devices but not for the FORE-SIGHT device. While responsive to desaturation, cerebral oximeters exhibited large variation in reading errors between subjects, with mean bias possibly related to variations in the ratio of arterial and venous blood in the sampling area of the brain. This ratio is probably not fixed, as assumed by the manufacturers, but dynamically changes with hypoxia. Better understanding these factors could improve the performance of cerebral oximeters and help establish saturation or blood flow thresholds for brain well-being."	"Large copy number variations in combination with point mutations in the TYMP and SCO2 genes found in two patients with mitochondrial disorders. Mitochondrial disorders are caused by defects in mitochondrial or nuclear DNA. Although the existence of large deletions in mitochondrial DNA (mtDNA) is well known, deletions affecting whole genes are not commonly described in patients with mitochondrial disorders. Based on the results of whole-genome analyses, copy number variations (CNVs) occur frequently in the human genome and may overlap with many genes associated with clinical phenotypes. We report the discovery of two large heterozygous CNVs on 22q13.33 in two patients with mitochondrial disorders. The first patient harboured a novel point mutation c.667G&gt;A (p.D223N) in the SCO2 gene in combination with a paternally inherited 87-kb deletion. As hypertrophic cardiomyopathy (HCMP) was not documented in the patient, this observation prompted us to compare his clinical features with all 44 reported SCO2 patients in the literature. Surprisingly, the review shows that HCMP was present in only about 50% of the SCO2 patients with non-neonatal onset. In the second patient, who had mitochondrial neurogastrointestinal encephalopathy (MNGIE), a maternally inherited 175-kb deletion and the paternally inherited point mutation c.261G&gt;T (p.E87D) in the TYMP gene were identified. "	"Homocysteine restricts copper availability leading to suppression of cytochrome C oxidase activity in phenylephrine-treated cardiomyocytes. Cardiomyocyte hypertrophy induced by phenylephrine (PE) is accompanied by suppression of cytochrome c oxidase (CCO) activity, and copper (Cu) supplementation restores CCO activity and reverses the hypertrophy. The present study was aimed to understand the mechanism of PE-induced decrease in CCO activity. Primary cultures of neonatal rat cardiomyocytes were treated with PE at a final concentration of l00 µM in cultures for 72 h to induce cell hypertrophy. The CCO activity was determined by enzymatic assay and changes in CCO subunit COX-IV as well as copper chaperones for CCO (COX17, SCO2, and COX11) were determined by Western blotting. PE treatment increased both intracellular and extracellular homocysteine concentrations and decreased intracellular Cu concentrations. Studies in vitro found that homocysteine and Cu form complexes. Inhibition of the intracellular homocysteine synthesis in the PE-treated cardiomyocytes prevented the increase in the extracellular homocysteine concentration, retained the intracellular Cu concentration, and preserved the CCO activity. PE treatment decreased protein concentrations of the COX-IV, and the Cu chaperones COX17, COX11, and SCO2. These PE effects were prevented by either inhibition of the intracellular homocysteine synthesis or Cu supplementation. Therefore, PE-induced elevation of homocysteine restricts Cu availability through its interaction with Cu and suppression of Cu chaperones, leading to the decrease in CCO enzyme activity. "	"Alpha particle-induced bystander effect is mediated by ROS via a p53-dependent SCO2 pathway in hepatoma cells. The radiation-induced bystander effect (RIBE) has important implications for the efficiency of radiotherapy but the underlying role of cellular metabolism is widely unknown. The roles of synthesis of cytochrome c oxidase 2 (SCO2), a key effector for respiratory chain, and related signaling factors in α-particle-induced bystander damage were currently investigated in a liver cell co-culture system. Human hepatoma cells of HepG2 with wild-type p53 (wtp53) and Hep3B (p53 null) were irradiated with 0.4 Gy of α-particles and co-cultured with non-irradiated normal liver cells HL-7702 for 6 h, then the incidence of micronucleus (MN) in the bystander HL-7702 cells was analyzed. The expressions of total P53, phospho-P53 (p-P53), SCO2, and reactive oxygen species (ROS) in the irradiated hepatoma cells were detected. In some experiments, the hepatoma cells were respectively treated with p53 siRNA, SCO2 siRNA, or dimethyl sulfoxide (DMSO) before irradiation. Bystander damage in HL-7702 cells was induced by α-irradiated HepG2 cells but not by α-irradiated Hep3B cells, and this bystander effect was diminished when the irradiated HepG2 cells were pretreated with p53 siRNA, SCO2 siRNA, or DMSO. Meanwhile, the expressions of p-P53 protein and SCO2 mRNA, the activity of SCO2 protein, and intracellular ROS were all increased in the irradiated HepG2 cells but not Hep3B cells and these expressions were eliminated by p53 siRNA treatment. Moreover, the radiation-enhanced expressions of SCO2 and ROS were inhibited by SCO2 siRNA. α-particle-induced bystander effect was regulated by p53 and its downstream SCO2 in the irradiated hepatoma cells, and ROS generation could be an early event for triggering this bystander response."	"The natural history of SCO2 deficiency in 36 Polish children confirmed the genotype-phenotype correlation. The aim of this study was to assess the natural history of the SCO2 deficiency in relation to the genotype in a cohort of 62 patients with SCO2 mutations (36 this study, 26 previous reports). A novel, milder phenotype (disease onset delayed until one year after birth, nonspecific encephalomyopathy, and 2-4 year survival period) associated with compound heterozygosity of the common p.E140K and a novel p.M177T mutations extends the range of symptoms of the SCO2 deficiency. The prevalence of SCO2 deficiency in Poland is relatively high. A search for SCO2 mutations in patients with histology resembling SMA appears to efficiently improve the detection rate."	"Mutations in SCO2 are associated with autosomal-dominant high-grade myopia. Myopia, or near-sightedness, is an ocular refractive error of unfocused image quality in front of the retinal plane. Individuals with high-grade myopia (dioptric power greater than -6.00) are predisposed to ocular morbidities such as glaucoma, retinal detachment, and myopic maculopathy. Nonsyndromic, high-grade myopia is highly heritable, and to date multiple gene loci have been reported. We performed exome sequencing in 4 individuals from an 11-member family of European descent from the United States. Affected individuals had a mean dioptric spherical equivalent of -22.00 sphere. A premature stop codon mutation c.157C&gt;T (p.Gln53*) cosegregating with disease was discovered within SCO2 that maps to chromosome 22q13.33. Subsequent analyses identified three additional mutations in three highly myopic unrelated individuals (c.341G&gt;A, c.418G&gt;A, and c.776C&gt;T). To determine differential gene expression in a developmental mouse model, we induced myopia by applying a -15.00D lens over one eye. Messenger RNA levels of SCO2 were significantly downregulated in myopic mouse retinae. Immunohistochemistry in mouse eyes confirmed SCO2 protein localization in retina, retinal pigment epithelium, and sclera. SCO2 encodes for a copper homeostasis protein influential in mitochondrial cytochrome c oxidase activity. Copper deficiencies have been linked with photoreceptor loss and myopia with increased scleral wall elasticity. Retinal thinning has been reported with an SC02 variant. Human mutation identification with support from an induced myopic animal provides biological insights of myopic development."	"Two p53-related metabolic regulators, TIGAR and SCO2, contribute to oroxylin A-mediated glucose metabolism in human hepatoma HepG2 cells. Metabolic alteration in cancer cells is one of the most conspicuous characteristics that distinguish cancer cells from normal cells. Many studies suggest that several underlying mechanisms lead to the Warburg effect (increased aerobic glycolysis) during cancer development. Here, we explored how oroxylin A affected the glycolytic metabolism in cancer cells and the underlying mechanism involved in this process. Our data revealed that both oroxylin A and adriamycin could inhibit lactate generation and glucose uptake in HepG2 cells at mild concentrations, without causing robust cell apoptosis. Oroxylin A has exerted little influence on the oxygen consumption, whereas adriamycin decreased oxygen consumption in a concentration-dependent manner. Moreover, oroxylin A could increase protein and mRNA expression of TP53-induced glycolysis and apoptosis regulator (TIGAR) and synthesis of cytochrome c oxidase 2 (SCO2), which are the key metabolic modulators regulated by p53. Meanwhile adriamycin could increase protein and mRNA expression of TIGAR and SCO2, but decrease that of phosphoglycerate mutase (PGM). Oroxylin A and adriamycin also modulated the stability and activity of p53 through inducing phosphorylation of p53 at Ser15 and suppressing the expression of MDM2. Furthermore, p53 siRNA and p53 inhibitor assay in wild-type p53 HepG2 cells both revealed the key role of p53 in oroxylin A and adriamycin-mediated glycolytic metabolism regulation. Transfecting wt p53 plasmid to p53-deficient H1299 cells could inverse some of the metabolic characteristics regulated by oroxylin A. This study revealed a new aspect of glucose metabolism regulation of oroxylin A, which may contribute to its new anticancer mechanism."	"Acetylation mediated by the p300/CBP-associated factor determines cellular energy metabolic pathways in cancer. Normal cells produce energy either through OXPHOS in the presence of oxygen or glycolysis in its absence. Cancer cells produce energy preferably through glycolysis even in the presence of oxygen, thereby, acquiring survival and proliferative advantages. Oncogenes and tumour suppressors control these metabolic pathways by regulating the expression of their target genes involved in these processes. During hypoxia, HIF-1 favours high glycolytic flux by upregulating glycolytic enzymes. Conversely, p53 inhibits glycolysis and increases OXPHOS expression through TIGAR and SCO2 gene expression, respectively. We hypothesise that the p300/CBP-associated factor (PCAF) as a common co-factor shared between p53 and HIF-1 plays an important role in the regulation of energy production by modulating SCO2 and TIGAR gene expression mediated by these two transcription factors. The possible involvement of HIF-1 in the regulation of SCO2 and TIGAR gene expression was investigated in cells with different p53 status in normoxia- and hypoxia-mimicking conditions. Putative hypoxia response elements (HREs) were identified in the regulatory region of SCO2 and TIGAR gene promoters. Chromatin immunoprecipitation experiments suggested that HIF-1 was recruited to the putative HREs present in the SCO2 and TIGAR promoters in a cell type-dependent manner. Transcriptional assays endorsed the notion that PCAF may be involved in the determination of the SCO2 and TIGAR cellular levels, thereby, regulating cellular energy metabolism, a view supported by assays measuring lactic acid production and oxygen consumption in cells ectopically expressing PCAF. The present study identified HIF-1 as a potential regulator of SCO2 and TIGAR gene expression. Furthermore, evidence to suggest that PCAF is involved in the regulation of cellular energy production pathways in hypoxia-mimicking conditions is presented. This effect of PCAF is exerted by orchestrating differential recruitment of HIF-1α and p53 to the promoter of TIGAR and/or SCO2 genes, thereby, tailoring physiological needs and environmental conditions to SCO2 and TIGAR gene expression."	"Mitochondrial cardioencephalomyopathy due to a novel SCO2 mutation in a Brazilian patient: case report and literature review. To review all patients with SCO2 mutations and to describe a Brazilian patient with cardioencephalomyopathy carrying compound heterozygous mutations in SCO2, one being the known pathogenic p.E140K mutation and the other a novel 12-base pair (bp) deletion at nucleotides 1519 through 1530 (c.1519_1530del). Case report and literature review. University hospital. Infant girl presenting with an encephalomyopathy, inspiratory stridor, ventilator failure, progressive hypotonia, and weakness, leading to death. Clinical features, neuroimaging findings, muscle biopsy with histochemical analysis, and genetic studies. This infant girl was the first child of healthy, nonconsanguineous parents. She developed progressive muscular hypotonia and ventilatory failure. At the end of the first month of life, she developed cardiomegaly and signs of cardiac failure. Routine blood tests showed lactic acidosis and mild elevation of the creatine kinase level. Brain magnetic resonance imaging showed increased T2 and fluid-attenuated inversion recovery signals in the putamen bilaterally. Nerve conduction studies showed severe axonal sensorimotor neuropathy. Muscle biopsy revealed a neurogenic pattern with mitochondrial proliferation and total absence of cytochrome- c oxidase histochemical stain. Sequencing of SCO2 showed that the patient had compound heterozygote SCO2 mutations: the previously described c.1541G&gt;A (p.E140K) mutation and a novel 12-bp deletion at nucleotides 1519 through 1530 (c.1519_1530del). The patient died at age 45 days. Our findings and the literature review indicate that it is important to consider the diagnosis of mitochondrial disease in newborns with hypotonia and cardiomyopathy. In our case, the accurate diagnosis of SCO2 mutations is particularly important for genetic counseling."	"Exome sequencing reveals SCO2 mutations in a family presented with fatal infantile hyperthermia. We applied whole-exome sequencing (WES) for identification of an underlying genetic cause of a disease in a family presented with fatal infantile hyperthermia. Analysis of WES results revealed novel, deleterious compound missense mutations, Val160Ala and Pro233Thr, in the synthesis of cytochrome C oxidase 2 gene (SCO2) encoding a mitochondrial protein, Sco2, which is important for cytochrome C oxidase (COX) synthesis. Autosomal recessive mutations in SCO2 are known to be associated with COX deficiency recognized as fatal infantile cardio-encephalomyopathy (604272, OMIM). The Val160Ala and Pro233Thr mutations occurred in the conserved thioredoxin domain of Sco2 and predicted to disrupt protein folding and interaction of Sco2 with other proteins. Our results show applicability of WES in identification of disease-causing mutations and in establishing molecular diagnosis of severe, infantile onset disorder with a challenging diagnosis."	"COX19 mediates the transduction of a mitochondrial redox signal from SCO1 that regulates ATP7A-mediated cellular copper efflux. SCO1 and SCO2 are metallochaperones whose principal function is to add two copper ions to the catalytic core of cytochrome c oxidase (COX). However, affected tissues of SCO1 and SCO2 patients exhibit a combined deficiency in COX activity and total copper content, suggesting additional roles for these proteins in the regulation of cellular copper homeostasis. Here we show that both the redox state of the copper-binding cysteines of SCO1 and the abundance of SCO2 correlate with cellular copper content and that these relationships are perturbed by mutations in SCO1 or SCO2, producing a state of apparent copper overload. The copper deficiency in SCO patient fibroblasts is rescued by knockdown of ATP7A, a trans-Golgi, copper-transporting ATPase that traffics to the plasma membrane during copper overload to promote efflux. To investigate how a signal from SCO1 could be relayed to ATP7A, we examined the abundance and subcellular distribution of several soluble COX assembly factors. We found that COX19 partitions between mitochondria and the cytosol in a copper-dependent manner and that its knockdown partially rescues the copper deficiency in patient cells. These results demonstrate that COX19 is necessary for the transduction of a SCO1-dependent mitochondrial redox signal that regulates ATP7A-mediated cellular copper efflux."	"SCO2 induces p53-mediated apoptosis by Thr845 phosphorylation of ASK-1 and dissociation of the ASK-1-Trx complex. p53 prevents cancer via cell cycle arrest, apoptosis, and the maintenance of genome stability. p53 also regulates energy-generating metabolic pathways such as oxidative phosphorylation (OXPHOS) and glycolysis via transcriptional regulation of SCO2 and TIGAR. SCO2, a cytochrome c oxidase assembly factor, is a metallochaperone which is involved in the biogenesis of cytochrome c oxidase subunit II. Here we have shown that SCO2 functions as an apoptotic protein in tumor xenografts, thus providing an alternative pathway for p53-mediated apoptosis. SCO2 increases the generation of reactive oxygen species (ROS) and induces dissociation of the protein complex between apoptosis signal-regulating kinase 1 (ASK-1) (mitogen-activated protein kinase kinase kinase [MAPKKK]) and its cellular inhibitor, the redox-active protein thioredoxin (Trx). Furthermore, SCO2 induces phosphorylation of ASK-1 at the Thr(845) residue, resulting in the activation of the ASK-1 kinase pathway. The phosphorylation of ASK-1 induces the activation of mitogen-activated protein kinase kinases 4 and 7 (MAP2K4/7) and MAP2K3/6, which switches the c-Jun N-terminal protein kinase (JNK)/p38-dependent apoptotic cascades in cancer cells. Exogenous addition of the SCO2 gene to hypoxic cancer cells and hypoxic tumors induces apoptosis and causes significant regression of tumor xenografts. We have thus discovered a novel apoptotic function of SCO2, which activates the ASK-1 kinase pathway in switching &quot;on&quot; an alternate mode of p53-mediated apoptosis. We propose that SCO2 might possess a novel tumor suppressor function via the ROS-ASK-1 kinase pathway and thus could be an important candidate for anticancer gene therapy."	"Oxidative folding in chloroplasts. Disulfide-bonded proteins in chloroplasts from green plants exist in the envelope and the thylakoid membrane, and in the stroma and the lumen. The formation of disulfide bonds in proteins is referred to as oxidative folding and is linked to the import and folding of chloroplast proteins as well as the assembly and repair of thylakoid complexes. It is also important in the redox regulation of enzymes and signal transfer. Green-plant chloroplasts contain enzymes that can form and isomerize disulfide bonds in proteins. In Arabidopsis thaliana, four proteins are identified that are relevant for the catalysis of disulfide bond formation in chloroplast proteins. The proteins' low quantum yield of Photosystem II 1 (LQY1, At1g75690) and snowy cotyledon 2 (SCO2, At3g19220) exhibits protein disulfide isomerase activity and is suggested to function in the assembly and repair of Photosystem II (PSII), and the biogenesis of thylakoids in cotyledons, respectively. The thylakoid-located Lumen thiol oxidoreductase 1 (LTO1, At4g35760) can catalyze the formation of the disulfide bond of the extrinsic PsbO protein of PSII. In addition, the stroma-located protein disulfide isomerase PDIL1-3 (At3g54960) may have a role in oxidative folding. Research on oxidative folding in chloroplasts plants is in an early stage and little is known about the mechanisms of disulfide bond formation in chloroplast proteins. The close link between the import and folding of chloroplast proteins suggests that Hsp93, a component of the inner envelope's import apparatus, may have co-chaperones that can catalyze disulfide bond formation in newly imported proteins."	"Clinical validity of cerebral oxygen saturation measured by time-resolved spectroscopy during carotid endarterectomy. Near-infrared spectroscopy has been used clinically to continuously and noninvasively monitor cerebral oxygen saturation (ScO2). However, there is no gold standard for measuring absolute values of ScO2. Although time-resolved spectroscopy (TRS) is one of the most reliable algorithms that reliably calculate absolute values of ScO2, there are very few clinical studies available. To evaluate the clinical relevance of ScO2 measurements using TRS, we compared ScO2 with jugular venous oxygen saturation (SjO2) during carotid endarterectomy. We also investigated factors associated with cerebral oxygen desaturation during clamping of the carotid artery. Sixty patients who underwent carotid endarterectomy were enrolled. ScO2 was measured by TRS-20 using TRS at 10 minutes before and after clamping of the carotid artery and 10 minutes after unclamping. SjO2 was measured simultaneously. The relationship between ScO2, SjO2, and estimated ScO2 (0.75×SjO2+0.25×SaO2) were examined by simple regression and the Bland-Altman analysis. Factors related to ScO2&lt;60% were investigated by logistic regression analysis. There was a significant correlation between ScO2 and SjO2 (r=0.49, P&lt;0.002). Bland-Altman analysis revealed narrow limits of agreement between ScO2 and SjO2 (bias, 9.2%; precision, 12.6%), as well as ScO2 and estimated ScO2 (bias, -1.3%; precision, 9.7%). Impaired cerebral hemodynamics (Powers stage 2 or Kuroda type 3) was significantly associated with ScO2&lt;60%. ScO2 measured by TRS and SjO2 showed narrow limits of agreement. Reduced ScO2 was significantly associated with impaired cerebral hemodynamics."	"Phelan-McDermid syndrome: clinical report of a 70-year-old woman. Phelan-McDermid or 22q13.3 deletion syndrome is characterized by global intellectual disability, childhood hypotonia, severely delayed or absent speech, features of autism spectrum disorder, without any major dysmorphisms or somatic anomalies. It is typically diagnosed before adolescence and data about adult patients are virtually absent. The expression of its phenotypical characteristics appears to be linearly related to the deletion size. Here, an intellectually disabled geriatric female patient is described with a long history of challenging behaviors in whom Phelan-McDermid syndrome was demonstrated. Detailed analysis of the patient's history and functioning resulted in a psychiatric diagnosis of atypical bipolar disorder and her behavior significantly improved upon maintenance treatment with a mood stabilizing agent. The present article confirms recent findings that atypical bipolar disorder may be part of the psychopathological phenotype of Phelan-McDermid syndrome, reason why careful etiological search is warranted, also in the geriatric population."	"The effect of blood transfusion on cerebral hemodynamics in preterm infants. Anemia of prematurity commonly occurs in infants with very low birth weight; blood transfusion is an important treatment. However, there is no clear evidence to support the criteria currently widely used, based on blood hemoglobin (bHb) and hematocrit indices. Previous studies showed that overtransfusion or a low threshold for transfusion could induce complications or neurologic sequelae, respectively. We hypothesized that a cerebral hemodynamic index may provide an appropriate criterion for determining the need for transfusion in anemic preterm infants. We used near-infrared time-resolved spectroscopy to measure cerebral hemoglobin oxygen saturation (ScO2 ) and cerebral blood volume (CBV) before and after transfusion in 19 infants (24 measurements) with anemia of prematurity. The median gestational age was 27 weeks 0 days, median birth weight was 751 g, and median postconceptual age at transfusion was 30 weeks 4 days. bHb levels before and after transfusion (mean ± SD) were 9.3 ± 1.4 and 13.7 ± 1.3 g/dL, respectively. After transfusion, CBV significantly decreased from 2.63 ± 0.60 to 2.13 ± 0.26 mL/100 g of brain, and ScO2 significantly increased from 72.8 ± 4.3% to 74.7 ± 4.2%. After transfusion, CBV changes were significantly greater with low compared to high pretransfusion Hb levels. This reflected the physiologic response to severe anemia in premature infants, which is to increase CBV and decrease ScO2 . Therefore, CBV and ScO2 may be useful markers for determining the need for transfusion in very-low-birth-weight infants."	"Loss of the respiratory enzyme citrate synthase directly links the Warburg effect to tumor malignancy. To investigate whether altered energy metabolism induces the Warburg effect and results in tumor malignancy, the respiratory enzyme citrate synthase (CS) was examined, silenced, and the effects analyzed. In human cervical carcinoma cells, RNAi-mediated CS knockdown induced morphological changes characteristic of the epithelial-mesenchymal transition (EMT). This switch accelerated cancer cell metastasis and proliferation in in vitro assays and in vivo tumor xenograft models. Notably, CS knockdown cells exhibited severe defects in respiratory activity and marked decreases in ATP production, but great increases in glycolytic metabolism. This malignant progression was due to activation of EMT-related regulators; altered energy metabolism resulted from deregulation of the p53/TIGAR and SCO2 pathways. This phenotypic change was completely reversed by p53 reactivation via treatment with proteasome inhibitor MG132 or co-knockdown of E3 ligase HDM2 and partially suppressed by ATP treatment. This study directly links the Warburg effect to tumor malignancy via induction of the EMT phenotype."	"A Diagnostic Algorithm for Mitochondrial Disorders in Estonian Children. Mitochondrial disorders are a heterogeneous group of disorders affecting energy production of the body. Different consensus diagnostic criteria for mitochondrial disorders in childhood are available - Wolfson, Nijmegen and modified Walker criteria. Due to the extreme complexity of mitochondrial disorders in children, we decided to develop a diagnostic algorithm, applicable in clinical practice in Estonia, in order to identify patients with mitochondrial disorders among pediatric neonatology and neurology patients. Additionally, it was aimed to evaluate the live-birth prevalence of mitochondrial disorders in childhood. During the study period (2003-2009), a total of 22 children were referred to a muscle biopsy in suspicion of mitochondrial disorder based on the preliminary biochemical, metabolic and instrumental investigations. Enzymatic and/or molecular analysis confirmed mitochondrial disease in 5 of them - an SCO2 gene (synthesis of cytochrome c oxidase, subunit 2) defect, 2 cases of pyruvate dehydrogenase complex deficiency and 2 cases of combined complex I and IV deficiency. The live-birth prevalence for mitochondrial defects observed in our cohort was 1/20,764 live births. Our epidemiological data correlate well with previously published epidemiology data on mitochondrial diseases in childhood from Sweden and Australia, but are lower than in Finland."	"Pifithrin-μ increases mitochondrial COX biogenesis and MnSOD activity in skeletal muscle of middle-aged mice. We investigated the biogenesis and mitochondrial antioxidant capacity of cytochrome c oxidase (COX) within the skeletal muscle under the treatments of p53 inhibitors (pifithrin, PFTα and PFTμ). Significantly, PFTμ increased mtDNA content and COX biogenesis. These changes coincided with increases in the activity and expression of manganese superoxide dismutase (MnSOD), the key antioxidant enzyme in mitochondria. Conversely, PFTα caused muscle loss, increased oxidative damage and decreased MnSOD activity in intermyofibrillar (IMF) mitochondria. Mechanically, PFTμ inhibited p53 translocation to mitochondria and thus increased its transcriptional activity for expression of synthesis of cytochrome c oxidase 2 (SCO2), an important assembly protein for COX. This study provides in vivo evidence that PFTμ, superior to PFTα, preserves muscle mass and increases mitochondrial antioxidant activity."	"Mitochondrial dysfunction in Pten haplo-insufficient mice with social deficits and repetitive behavior: interplay between Pten and p53. Etiology of aberrant social behavior consistently points to a strong polygenetic component involved in fundamental developmental pathways, with the potential of being enhanced by defects in bioenergetics. To this end, the occurrence of social deficits and mitochondrial outcomes were evaluated in conditional Pten (Phosphatase and tensin homolog) haplo-insufficient mice, in which only one allele was selectively knocked-out in neural tissues. Pten mutations have been linked to Alzheimer's disease and syndromic autism spectrum disorders, among others. By 4-6 weeks of age, Pten insufficiency resulted in the increase of several mitochondrial Complex activities (II-III, IV and V) not accompanied by increases in mitochondrial mass, consistent with an activation of the PI3K/Akt pathway, of which Pten is a negative modulator. At 8-13 weeks of age, Pten haplo-insufficient mice did not show significant behavioral abnormalities or changes in mitochondrial outcomes, but by 20-29 weeks, they displayed aberrant social behavior (social avoidance, failure to recognize familiar mouse, and repetitive self-grooming), macrocephaly, increased oxidative stress, decreased cytochrome c oxidase (CCO) activity (50%) and increased mtDNA deletions in cerebellum and hippocampus. Mitochondrial dysfunction was the result of a downregulation of p53-signaling pathway evaluated by lower protein expression of p21 (65% of controls) and the CCO chaperone SCO2 (47% of controls), two p53-downstream targets. This mechanism was confirmed in Pten-deficient striatal neurons and, HCT 116 cells with different p53 gene dosage. These results suggest a unique pathogenic mechanism of the Pten-p53 axis in mice with aberrant social behavior: loss of Pten (via p53) impairs mitochondrial function elicited by an early defective assembly of CCO and later enhanced by the accumulation of mtDNA deletions. Consistent with our results, (i) SCO2 deficiency and/or CCO activity defects have been reported in patients with learning disabilities including autism and (ii) mutated proteins in ASD have been found associated with p53-signaling pathways."	"Cutaneous vasoconstriction affects near-infrared spectroscopy determined cerebral oxygen saturation during administration of norepinephrine. Perioperative optimization of spatially resolved near-infrared spectroscopy determined cerebral frontal lobe oxygenation (scO2) may reduce postoperative morbidity. Norepinephrine is routinely administered to maintain cerebral perfusion pressure and, thereby, cerebral blood flow, but norepinephrine reduces the scO2. We hypothesized that norepinephrine-induced reduction in scO2 is influenced by cutaneous vasoconstriction. Fifteen healthy male subjects (25 ± 5 yr, mean ± SD) were studied during: hyperventilation (1.5 kPa end-tidal PcO2 reduction), whole-body heating, administration of norepinephrine (0.15 μg · kg · min; with and without end-tidal carbon dioxide correction), and hypoxia (FiO2: 0.12%). Arterial (saO2), skin, and internal jugular venous oxygen saturations (sjO2) were recorded, and the average cerebral capillary oxygen saturation (scapO2) was calculated. This study indicates that scO2 is influenced by skin oxygen saturation because whole-body heating increased scO2 by 3.6% (2.1-5.1%; 95% CI) and skin oxygen saturation by 3.1% (1.3-4.9%), whereas scapO2 remained unaffected. Conversely, hyperventilation decreased scO2 by 2.1% (0.4-3.7%) and scapO2 by 5.3% (3.8-6.9%), whereas skin oxygen saturation increased 1.8% (0.5-3.1%). In response to hypoxia, scO2 (10.2%; 6.6-13.7%), scapO2 (7.9%; 6.4-9.4%), and skin oxygen saturation (8.9%; 6.3-11.6%) all decreased. With administration of norepinephrine there was a 2.2% (1.0-4.3%) decrease in skin oxygen saturation and scO2 decreased 6.2% (4.2-8.0%), with scapO2 remaining unaffected. The results confirm that spatially resolved near-infrared spectroscopy detects cerebral deoxygenation with systemic hypoxic exposure and hyperventilation. However, a commonly used vasopressor norepinephrine disturbs skin oxygen saturation to an extent that influences scO2."	"High-resolution melting analysis of 15 genes in 60 patients with cytochrome-c oxidase deficiency. Cytochrome-c oxidase (COX) deficiency is one of the common childhood mitochondrial disorders. Mutations in genes for the assembly factors SURF1 and SCO2 are prevalent in children with COX deficiency in the Slavonic population. Molecular diagnosis is difficult because of the number of genes involved in COX biogenesis and assembly. The aim of this study was to screen for mutations in 15 nuclear genes that encode the 10 structural subunits, their isoforms and two assembly factors of COX in 60 unrelated Czech children with COX deficiency. Nine novel variants were identified in exons and adjacent intronic regions of COX4I2, COX6A1, COX6A2, COX7A1, COX7A2 and COX10 using high-resolution melting (HRM) analysis. Online bioinformatics servers were used to predict the importance of the newly identified amino-acid substitutions. The newly characterized variants updated the contemporary spectrum of known genetic sequence variations that are present in the Czech population, which will be important for further targeted mutation screening in Czech COX-deficient children. HRM and predictive bioinformatics methodologies are advantageous because they are low-cost screening tools that complement large-scale genomic studies and reduce the required time and effort."	"Copper and bezafibrate cooperate to rescue cytochrome c oxidase deficiency in cells of patients with SCO2 mutations. Mutations in SCO2 cause cytochrome c oxidase deficiency (COX) and a fatal infantile cardioencephalomyopathy. SCO2 encodes a protein involved in COX copper metabolism; supplementation with copper salts rescues the defect in patients' cells. Bezafibrate (BZF), an approved hypolipidemic agent, ameliorates the COX deficiency in mice with mutations in COX10, another COX-assembly gene. We have investigated the effect of BZF and copper in cells with SCO2 mutations using spectrophotometric methods to analyse respiratory chain activities and a luciferase assay to measure ATP production.. Individual mitochondrial enzymes displayed different responses to BZF. COX activity increased by about 40% above basal levels (both in controls and patients), with SCO2 cells reaching 75-80% COX activity compared to untreated controls. The increase in COX was paralleled by an increase in ATP production. The effect was dose-dependent: it was negligible with 100 μM BZF, and peaked at 400 μM BZF. Higher BZF concentrations were associated with a relative decline of COX activity, indicating that the therapeutic range of this drug is very narrow. Combined treatment with 100 μM CuCl2 and 200 μM BZF (which are only marginally effective when administered individually) achieved complete rescue of COX activity in SCO2 cells. These data are crucial to design therapeutic trials for this otherwise fatal disorder. The additive effect of copper and BZF will allow to employ lower doses of each drug and to reduce their potential toxic effects. The exact mechanism of action of BZF remains to be determined."	"Selective divalent copper chelation for the treatment of diabetes mellitus. Oxidative stress and mitochondrial dysfunction have been identified by many workers as key pathogenic mechanisms in ageing-related metabolic, cardiovascular and neurodegenerative diseases (for example diabetes mellitus, heart failure and Alzheimer's disease). However, although numerous molecular mechanisms have been advanced to account for these processes, their precise nature remains obscure. This author has previously suggested that, in such diseases, these two mechanisms are likely to occur as manifestations of a single underlying disturbance of copper regulation. Copper is an essential but highly-toxic trace metal that is closely regulated in biological systems. Several rare genetic disorders of copper homeostasis are known in humans: these primarily affect various proteins that mediate intracellular copper transport processes, and can lead either to tissue copper deficiency or overload states. These examples illustrate how impaired regulation of copper transport pathways can cause organ damage and provide important insights into the impact of defects in specific molecular processes, including those catalyzed by the copper-transporting ATPases, ATP7A (mutated in Menkes disease), ATP7B (Wilson's disease), and the copper chaperones such as those for cytochrome c oxidase, SCO1 and SCO2. In diabetes, impaired copper regulation manifests as elevations in urinary CuII excretion, systemic chelatable-CuII and full copper balance, in increased pro-oxidant stress and defective antioxidant defenses, and in progressive damage to the blood vessels, heart, kidneys, retina and nerves. Linkages between dysregulated copper and organ damage can be demonstrated by CuII-selective chelation, which simultaneously prevents/reverses both copper dysregulation and organ damage. Pathogenic structures in blood vessels that contribute to binding and localization of catalytically-active CuII probably include advanced glycation end products (AGEs), as well as atherosclerotic plaque: the latter probably undergoes AGE-modification itself. Defective copper regulation mediates organ damage through two general processes that occur simultaneously in the same individual: elevation of CuII-mediated pro-oxidant stress and impairment of copper-catalyzed antioxidant defence mechanisms. This author has proposed that diabetes-evoked copper dysregulation is an important new target for therapeutic intervention to prevent/reverse organ damage in diabetes, heart failure, and neurodegenerative diseases, and that triethylenetetramine (TETA) is the first in a new class of anti-diabetic molecules, which function by targetting these copper-mediated pathogenic mechanisms. TETA prevents tissue damage and causes organ regeneration by acting as a highly-selective CuII chelator which suppresses copper-mediated oxidative stress and restores anti-oxidant defenses. My group has employed TETA in a comprehensive programme of nonclinical studies and proof-of-principle clinical trials, thereby characterizing copper dysregulation in diabetes and identifying numerous linked cellular and molecular mechanisms though which TETA exerts its therapeutic actions. Many of the results obtained in nonclinical models with respect to the molecular mechanisms of diabetic organ damage have not yet been replicated in patients' tissues so their applicability to the human disease must be considered as inferential until the results of informative clinical studies become available. Based on evidence from the studies reviewed herein, trientine is now proceeding into the later stages of pharmaceutical development for the treatment of heart failure and other diabetic complications."	"Regulation of glucose metabolism by p53: emerging new roles for the tumor suppressor. p53 is well known as the &quot;guardian of the genome&quot; for differentiated and neoplastic cells. p53 induces cell-cycle arrest and cell death after DNA damage and thus contributes to the maintenance of genomic stability. In addition to this tumor suppressor function for pro-oncogenic cells, p53 also plays an important role as the central regulator of stress response by maintaining cellular homeostasis at the molecular and biochemical level. p53 regulates aerobic respiration at the glycolytic and oxidative phosphorylation (OXPHOS) steps via transcriptional regulation of its downstream genes TP53-induced glycolysis regulator (TIGAR) and synthesis of cytochrome c oxidase (SCO2). p53 negatively regulates glycolysis through activation of TIGAR (an inhibitor of the fructose-2,6-bisphosphate). On the contrary p53 positively regulates OXPHOS through upregulation of SCO2, a member of the COX-2 assembly involved in the electron-transport chain. It is interesting to notice that p53 antagonistically regulates the inter-dependent glycolytic and OXPHOS cycles. It is important to understand whether the p53-mediated transcriptional regulation of TIGAR and SCO2 is temporally segregated in cancer cells and what is the relation between these paradoxical regulations of glycolytic pathway with the tumor suppressor activity of p53. In this review we will elucidate the importance of p53-mediated regulation of glycolysis and OXPHOS and its relation with the tumor suppressor function of p53. Further since cellular metabolism shares great relation with the process of aging we will also try and establish the role of p53 in regulation of aging via its transcriptional control of cellular metabolism."	"Neonatal onset of mitochondrial disorders in 129 patients: clinical and laboratory characteristics and a new approach to diagnosis. Mitochondrial disorders (MD) may manifest in neonates, but early diagnosis is difficult. In this study, clinical and laboratory data were analyzed in 129 patients with neonatal onset of MD to identify any association between specific mitochondrial diseases and their symptoms with the aim of optimizing diagnosis. Retrospective clinical and laboratory data were evaluated in 461 patients (331 families) with confirmed MD. The neonatal onset of MD was reported in 28% of the patients. Prematurity, intrauterine growth retardation and hypotonia necessitating ventilatory support were present in one-third, cardiomyopathy in 40%, neonatal seizures in 16%, Leigh syndrome in 15%, and elevated lactate level in 87%. Hyperammonemia was observed in 22 out of 52 neonates. Complex I deficiency was identified in 15, complex III in one, complex IV in 23, complex V in 31, combined deficiency of several complexes in 53, and PDH complex deficiency was identified in six patients. Molecular diagnosis was confirmed in 49 cases, including a newborn with a 9134A&gt;G mutation in the MTATP6 gene, which has not been described previously. The most significant finding is the high incidence of neonatal cardiomyopathy and hyperammonemia. Based on our experience, we propose a diagnostic flowchart applicable to critically ill neonates suspicious for MD. This tool will allow for the use of direct molecular genetic analyses without the need for muscle biopsies in neonates with Alpers, Barth, MILS and Pearson syndromes, SCO1, SCO2, TMEM70, ATP5E, SUCLG1 gene mutations and PDH complex deficiency."	"Synthesis of cytochrome C oxidase 2: a p53-dependent metabolic regulator that promotes respiratory function and protects glioma and colon cancer cells from hypoxia-induced cell death. P53 has an important role in the processing of starvation signals. P53-dependent molecular mediators of the Warburg effect reduce glucose consumption and promote mitochondrial function. We therefore hypothesized that the retention of wild-type p53 characteristic of primary glioblastomas limits metabolic demands induced by deregulated signal transduction in the presence of hypoxia and nutrient depletion. Here we report that short hairpin RNA-mediated gene suppression of wild-type p53 or ectopic expression of mutant temperature-sensitive dominant-negative p53(V135A) increased glucose consumption and lactate production, decreased oxygen consumption and enhanced hypoxia-induced cell death in p53 wild-type human glioblastoma cells. Similarly, genetic knockout of p53 in HCT116 colon carcinoma cells resulted in reduced respiration and hypersensitivity towards hypoxia-induced cell death. Further, wild-type p53 gene silencing reduced the expression of synthesis of cytochrome c oxidase 2 (SCO2), an effector necessary for respiratory chain function. An SCO2 transgene reverted the metabolic phenotype and restored resistance towards hypoxia in p53-depleted and p53 mutant glioma cells in a rotenone-sensitive manner, demonstrating that this effect was dependent on intact oxidative phosphorylation. Supplementation with methyl-pyruvate, a mitochondrial substrate, rescued p53 wild-type but not p53 mutant cells from hypoxic cell death, demonstrating a p53-mediated selective aptitude to metabolize mitochondrial substrates. Further, SCO2 gene silencing in p53 wild-type glioma cells sensitized these cells towards hypoxia. Finally, lentiviral gene suppression of SCO2 significantly enhanced tumor necrosis in a subcutaneous HCT116 xenograft tumor model, compatible with impaired energy metabolism in these cells. These findings demonstrate that glioma and colon cancer cells with p53 wild-type status can skew the Warburg effect and thereby reduce their vulnerability towards tumor hypoxia in an SCO2-dependent manner. Targeting SCO2 may therefore represent a valuable strategy to enhance sensitivity towards hypoxia and may complement strategies targeting glucose metabolism."	"p53 promotes cardiac dysfunction in diabetic mellitus caused by excessive mitochondrial respiration-mediated reactive oxygen species generation and lipid accumulation. Diabetic cardiomyopathy is characterized by energetic dysregulation caused by glucotoxicity, lipotoxicity, and mitochondrial alterations. p53 and its downstream mitochondrial assembly protein, synthesis of cytochrome c oxidase 2 (SCO2), are important regulators of mitochondrial respiration, whereas the involvement in diabetic cardiomyopathy remains to be determined. The role of p53 and SCO2 in energy metabolism was examined in both type I (streptozotocin [STZ] administration) and type II diabetic (db/db) mice. Cardiac expressions of p53 and SCO2 in 4-week STZ diabetic mice were upregulated (185% and 152% versus controls, respectively, P&lt;0.01), with a marked decrease in cardiac performance. Mitochondrial oxygen consumption was increased (136% versus control, P&lt;0.01) in parallel with augmentation of mitochondrial cytochrome c oxidase (complex IV) activity. Reactive oxygen species (ROS)-damaged myocytes and lipid accumulation were increased in association with membrane-localization of fatty acid translocase protein FAT/CD36. Antioxidant tempol reduced the increased expressions of p53 and SCO2 in STZ-diabetic hearts and normalized alterations in mitochondrial oxygen consumption, lipid accumulation, and cardiac dysfunction. Similar results were observed in db/db mice, whereas in p53-deficient or SCO2-deficient diabetic mice, the cardiac and metabolic abnormalities were prevented. Overexpression of SCO2 in cardiac myocytes increased mitochondrial ROS and fatty acid accumulation, whereas knockdown of SCO2 ameliorated them. Myocardial p53/SCO2 signal is activated by diabetes-mediated ROS generation to increase mitochondrial oxygen consumption, resulting in excessive generation of mitochondria-derived ROS and lipid accumulation in association with cardiac dysfunction."	"The SCO2 protein disulphide isomerase is required for thylakoid biogenesis and interacts with LHCB1 chlorophyll a/b binding proteins which affects chlorophyll biosynthesis in Arabidopsis seedlings. The process of chloroplast biogenesis requires a multitude of pathways and processes to establish chloroplast function. In cotyledons of seedlings, chloroplasts develop either directly from proplastids (also named eoplasts) or, if germinated in the dark, via etioplasts, whereas in leaves chloroplasts derive from proplastids in the apical meristem and are then multiplied by division. The snowy cotyledon 2, sco2, mutations specifically disrupt chloroplast biogenesis in cotyledons. SCO2 encodes a chloroplast-localized protein disulphide isomerase, hypothesized to be involved in protein folding. Analysis of co-expressed genes with SCO2 revealed that genes with similar expression patterns encode chloroplast proteins involved in protein translation and in chlorophyll biosynthesis. Indeed, sco2-1 accumulates increased levels of the chlorophyll precursor, protochlorophyllide, in both dark grown cotyledons and leaves. Yeast two-hybrid analyses demonstrated that SCO2 directly interacts with the chlorophyll-binding LHCB1 proteins, being confirmed in planta using bimolecular fluorescence complementation (BIFC). Furthermore, ultrastructural analysis of sco2-1 chloroplasts revealed that formation and movement of transport vesicles from the inner envelope to the thylakoids is perturbed. SCO2 does not interact with the signal recognition particle proteins SRP54 and FtsY, which were shown to be involved in targeting of LHCB1 to the thylakoids. We hypothesize that SCO2 provides an alternative targeting pathway for light-harvesting chlorophyll binding (LHCB) proteins to the thylakoids via transport vesicles predominantly in cotyledons, with the signal recognition particle (SRP) pathway predominant in rosette leaves. Therefore, we propose that SCO2 is involved in the integration of LHCB1 proteins into the thylakoids that feeds back on the regulation of the tetrapyrrole biosynthetic pathway and nuclear gene expression."	"NF-κB controls energy homeostasis and metabolic adaptation by upregulating mitochondrial respiration. Cell proliferation is a metabolically demanding process. It requires active reprogramming of cellular bioenergetic pathways towards glucose metabolism to support anabolic growth. NF-κB/Rel transcription factors coordinate many of the signals that drive proliferation during immunity, inflammation and oncogenesis, but whether NF-κB regulates the metabolic reprogramming required for cell division during these processes is unknown. Here, we report that NF-κB organizes energy metabolism networks by controlling the balance between the utilization of glycolysis and mitochondrial respiration. NF-κB inhibition causes cellular reprogramming to aerobic glycolysis under basal conditions and induces necrosis on glucose starvation. The metabolic reorganization that results from NF-κB inhibition overcomes the requirement for tumour suppressor mutation in oncogenic transformation and impairs metabolic adaptation in cancer in vivo. This NF-κB-dependent metabolic pathway involves stimulation of oxidative phosphorylation through upregulation of mitochondrial synthesis of cytochrome c oxidase 2 (SCO2; ref. ). Our findings identify NF-κB as a physiological regulator of mitochondrial respiration and establish a role for NF-κB in metabolic adaptation in normal cells and cancer."	"Characterization of the peroxide sensitivity of COX-deficient yeast strains reveals unexpected relationships between COX assembly proteins. A number of distinct cuproproteins of the mitochondrial inner membrane are required for the assembly of cytochrome oxidase (COX), thought to function in a &quot;bucket brigade&quot; fashion to provide copper to the Cu(A) and Cu(B) sites. In yeast, the loss of two these proteins, Sco1p and Cox11p, leads to respiratory deficiency and a specific inability to survive exposure to hydrogen peroxide (H(2)O(2)). Using a quantitative assay, we have identified subtle differences in the peroxide-sensitive phenotypes between sco1 and cox11 mutant strains. Interestingly, the peroxide sensitivity of the sco1 null strain can be suppressed by overexpressing either SCO2 or COX11, although overexpression of neither SCO1 nor SCO2 can rescue the cox11 null strain. We also find that overexpression of either CTT1, encoding the cytosolic catalase T, or CTA1, encoding the mitochondrial matrix catalase, suppresses the peroxide sensitivity in both the sco1 and the cox11 null mutants. Direct measurement of peroxide metabolism shows that sco1 and cox11 null strains fail to degrade a significant amount of exogenously provided H(2)O(2). Taken together, our data demonstrate that although Cox11p and Sco1p play distinct roles in COX assembly, they seem to play overlapping or related roles in peroxide metabolism that require further investigation."	"Regulatory role of p53 in cancer metabolism via SCO2 and TIGAR in human breast cancer. Cancer cells show a higher rate of anaerobic respiration than normal cells. The exact mechanisms for this higher glycolysis rate in cancer cells remain to be elucidated. The results of recent studies have indicated that p53, the most commonly mutated tumor suppressor gene, may have important functions in the regulation of energy-generating metabolic pathways that switch from oxidative phosphorylation to glycolysis via the synthesis of cytochrome c oxidase 2 (SCO2), p53-transactivated TP53-induced glycolysis (TIGAR), and apoptosis regulator. We evaluated the expression of p53, SCO2, TIGAR, and COX in 113 cases of invasive breast cancer using immunohistochemistry. A high expression of p53, SCO2, TIGAR, and COX was noted in 27.5% (31 cases), 84.1% (95 cases), 74.3% (84 cases), and 73.4% (83 cases) of the breast tumors, respectively. A high p53 expression was significantly associated with low expression levels of SCO2 (P = .008), COX (P &lt; .0001), and TIGAR (P = .007). On the survival analysis, the low SCO2-expressing breast cancer patients showed a significantly poorer prognosis than that of the high SCO2-expressing breast cancer patients (P = .0078). These results suggest that p53 can modulate the metabolic pathways via the proteins SCO2 and TIGAR in human breast cancer."	"Functional role of two interhelical disulfide bonds in human Cox17 protein from a structural perspective. Human Cox17 is the mitochondrial copper chaperone responsible for supplying copper ions, through the assistance of Sco1, Sco2, and Cox11, to cytochrome c oxidase, the terminal enzyme of the mitochondrial energy-transducing respiratory chain. It consists of a coiled coil-helix-coiled coil-helix domain stabilized by two disulfide bonds and binds one copper(I) ion through a Cys-Cys motif. Here, the structures and the backbone mobilities of two Cox17 mutated forms with only one interhelical disulfide bond have been analyzed. It appears that the inner disulfide bond (formed by Cys-36 and Cys-45) stabilizes interhelical hydrophobic interactions, providing a structure with essentially the same structural dynamic properties of the mature Cox17 state. On the contrary, the external disulfide bond (formed by Cys-26 and Cys-55) generates a conformationally flexible α-helical protein, indicating that it is not able to stabilize interhelical packing contacts, but is important for structurally organizing the copper-binding site region."	"Physical exercise regulates p53 activity targeting SCO2 and increases mitochondrial COX biogenesis in cardiac muscle with age. The purpose of this study was to outline the timelines of mitochondrial function, oxidative stress and cytochrome c oxidase complex (COX) biogenesis in cardiac muscle with age, and to evaluate whether and how these age-related changes were attenuated by exercise. ICR/CD-1 mice were treated with pifithrin-μ (PFTμ), sacrificed and studied at different ages; ICR/CD-1 mice at younger or older ages were randomized to endurance treadmill running and sedentary conditions. The results showed that mRNA expression of p53 and its protein levels in mitochondria increased with age in cardiac muscle, accompanied by increased mitochondrial oxidative stress, reduced expression of COX subunits and assembly proteins, and decreased expression of most markers in mitochondrial biogenesis. Most of these age-related changes including p53 activity targeting cytochrome oxidase deficient homolog 2 (SCO2), p53 translocation to mitochondria and COX biogenesis were attenuated by exercise in older mice. PFTμ, an inhibitor blocking p53 translocation to mitochondria, increased COX biogenesis in older mice, but not in young mice. Our data suggest that physical exercise attenuates age-related changes in mitochondrial COX biogenesis and p53 activity targeting SCO2 and mitochondria, and thereby induces antisenescent and protective effects in cardiac muscle."	"In vivo correction of COX deficiency by activation of the AMPK/PGC-1α axis. Increased mitochondrial biogenesis by activation of PPAR- or AMPK/PGC-1α-dependent homeostatic pathways has been proposed as a treatment for mitochondrial disease. We tested this hypothesis on three recombinant mouse models characterized by defective cytochrome c-oxidase (COX) activity: a knockout (KO) mouse for Surf1, a knockout/knockin mouse for Sco2, and a muscle-restricted KO mouse for Cox15. First, we demonstrated that double-recombinant animals overexpressing PGC-1α in skeletal muscle on a Surf1 KO background showed robust induction of mitochondrial biogenesis and increase of mitochondrial respiratory chain activities, including COX. No such effect was obtained by treating both Surf1(-/-) and Cox15(-/-) mice with the pan-PPAR agonist bezafibrate, which instead showed adverse effects in either model. Contrariwise, treatment with the AMPK agonist AICAR led to partial correction of COX deficiency in all three models, and, importantly, significant motor improvement up to normal in the Sco2(KO/KI) mouse. These results open new perspectives for therapy of mitochondrial disease."	"A targetable fluorescent sensor reveals that copper-deficient SCO1 and SCO2 patient cells prioritize mitochondrial copper homeostasis. We present the design, synthesis, spectroscopy, and biological applications of Mitochondrial Coppersensor-1 (Mito-CS1), a new type of targetable fluorescent sensor for imaging exchangeable mitochondrial copper pools in living cells. Mito-CS1 is a bifunctional reporter that combines a Cu(+)-responsive fluorescent platform with a mitochondrial-targeting triphenylphosphonium moiety for localizing the probe to this organelle. Molecular imaging with Mito-CS1 establishes that this new chemical tool can detect changes in labile mitochondrial Cu(+) in a model HEK 293T cell line as well as in human fibroblasts. Moreover, we utilized Mito-CS1 in a combined imaging and biochemical study in fibroblasts derived from patients with mutations in the two synthesis of cytochrome c oxidase 1 and 2 proteins (SCO1 and SCO2), each of which is required for assembly and metalation of functionally active cytochrome c oxidase (COX). Interestingly, we observe that although defects in these mitochondrial metallochaperones lead to a global copper deficiency at the whole cell level, total copper and exchangeable mitochondrial Cu(+) pools in SCO1 and SCO2 patient fibroblasts are largely unaltered relative to wild-type controls. Our findings reveal that the cell maintains copper homeostasis in mitochondria even in situations of copper deficiency and mitochondrial metallochaperone malfunction, illustrating the importance of regulating copper stores in this energy-producing organelle."	"Exercise training attenuates oxidative stress and decreases p53 protein content in skeletal muscle of type 2 diabetic Goto-Kakizaki rats. Oxidative stress can impair mitochondrial function and fuel utilization and is closely linked with the development of insulin resistance in skeletal muscle in diabetes mellitus as well as fatty liver disease. In vitro data indicate that cellular levels of reactive oxygen species depend on the expression and activity of p53, which plays a key role in energy metabolism and as a crucial transcription factor for SCO cytochrome oxidase deficient homolog 2 (SCO2) and tumor p53-induced glycolysis and apoptosis regulator (TIGAR), which regulate mitochondrial respiration and glycolysis in cells. The aims of this study were: (1) to investigate whether exercise training could attenuate the development of oxidative stress in skeletal muscle in rats with diabetes mellitus (DM) and (2) to evaluate the potential role of p53 and its transcriptional targets in exercise-induced mitochondrial adaptation in skeletal muscle in rats with DM. Goto-Kakizaki (GK) rats, which develop type 2 DM (T2DM) early in life, were randomly divided into two groups: (1) subjected to regular exercise on a treadmill at 20m/min for 30-60min, 6 days per week for 8 weeks (GK exercising, n=7), and (2) rested controls (GK control, n=7). Exercise training increased serum adiponectin and decreased serum insulin and levels of glycosylated hemoglobin (P&lt;0.05). Skeletal muscle GSH content and GSH:GSSG ratio increased in GK exercising rats vs GK controls (P&lt;0.05). Skeletal muscle COX activity (P&lt;0.05), mtDNA markers (P&lt;0.01), and COXII protein levels (P&lt;0.05) increased in response to exercise training. Exercise training decreased p53 protein levels and TIGAR expression in skeletal muscle (P&lt;0.05), but SCO2 expression was unchanged. These data indicate that exercise training can attenuate oxidative stress and increase mitochondrial DNA content in skeletal muscle in rats with T2DM and that exercise-induced suppression of p53 and TIGAR expression may play a role in preventing oxidative stress in insulin resistance."	"Preoperative cerebral oxygen saturation and clinical outcomes in cardiac surgery. The current study was designed to determine the relation between preoperative cerebral oxygen saturation (Sco2), variables of cardiopulmonary function, mortality, and morbidity in a heterogeneous cohort of cardiac surgery patients. In this study, 1,178 consecutive patients scheduled for on-pump surgery were prospectively studied. Preoperative Sco2, demographics, N-terminal pro-B-type natriuretic peptide, high-sensitive troponin T, clinical outcomes, and 30-day and 1-yr mortality were recorded. Median additive EuroSCORE was 5 (range: 0-19). Thirty-day and 1-yr mortality and major morbidity (at least two major complications and/or a high-dependency unit stay of at least 10 days) were 3.5%, 7.7%, and 13.3%, respectively. Median minimal preoperative oxygen supplemented Sco2 (Sco2min-ox) was 64% (range: 15-92%). Sco2min-ox was correlated (all: P value &lt;0.0001) with N-terminal pro-B-type natriuretic peptide (ρ: -0.35), high-sensitive troponin T (ρ: -0.28), hematocrit (ρ: 0.34), glomerular filtration rate (ρ: 0.19), EuroSCORE (τ: 0.20), and left ventricular ejection fraction class (τ: 0.12). Thirty-day nonsurvivors had a lower Sco2min-ox than survivors (median 58% [95% CI, 50.7-62%] vs. 64% [95% CI, 64-65%]; P &lt; 0.0001). Receiver-operating curve analysis of Sco2min-ox and 30-day mortality revealed an area-under-the-curve of 0.71 (95% CI, 0.68-0.73%; P &lt; 0.0001) in the total cohort and an area-under-the-curve of 0.77 (95% CI, 0.69-0.86%; P &lt; 0.0001) in patients with a EuroSCORE more than 10. Logistic regression based on different EuroSCORE categories (0-2; 3-5, 6-10, &gt;10), Sco2min-ox, and duration of cardiopulmonary bypass showed that a Sco2min-ox equal or less than 50% is an independent risk factor for 30-day and 1-yr mortality. Preoperative Sco2 levels are reflective of the severity of cardiopulmonary dysfunction, associated with short- and long-term mortality and morbidity, and may add to preoperative risk stratification in patients undergoing cardiac surgery."	"p53 Protects lung cancer cells against metabolic stress. The preferential use of aerobic glycolysis for energy production by cancer cells, a phenomenon known as the 'Warburg effect', is well recognized and is being considered for therapeutic applications. However, whether inhibition of glycolysis will be effective in all types of cancer is unclear. The current study shows that a glycolytic inhibitor, 2-deoxy-D-glucose (2DG), exhibits the cytotoxic effect on non-small cell lung cancer in a p53-dependent manner. 2DG significantly inhibits ATP production in p53-deficient lung cancer cells (H358) but not in p53-wt cells (A549). In contrast to p53-wt cells, p53-defective cells are unable to compensate for their need of energy via oxidative phosphorylation (OXPHOS) when glycolysis is inhibited. In the presence of p53, increased ROS from OXPHOS increases the expression of p53 target genes known to modulate metabolism, including synthesis of cytochrome c oxidase 2 (SCO2) and TP53-induced glycolysis and apoptosis regulator (TIGAR). Importantly, 2DG selectively induces the expression of the antioxidant enzymes manganese superoxide dismutase (MnSOD) and glutathione peroxidase 1 (GPx1) in a p53-dependent manner. The results demonstrate that the killing of cancer cells by the inhibitor of glycolysis is more efficient in cancer cells without functional p53 and that p53 protects against metabolic stress by up-regulation of oxidative phosphorylation and modulation of antioxidants."	"Mitochondrial respiration protects against oxygen-associated DNA damage. Oxygen is not only required for oxidative phosphorylation but also serves as the essential substrate for the formation of reactive oxygen species (ROS), which is implicated in ageing and tumorigenesis. Although the mitochondrion is known for its bioenergetic function, the symbiotic theory originally proposed that it provided protection against the toxicity of increasing oxygen in the primordial atmosphere. Using human cells lacking Synthesis of Cytochrome c Oxidase 2 (SCO2-/-), we have tested the oxygen toxicity hypothesis. These cells are oxidative phosphorylation defective and glycolysis dependent; they exhibit increased viability under hypoxia and feature an inverted growth response to oxygen compared with wild-type cells. SCO2-/- cells have increased intracellular oxygen and nicotinamide adenine dinucleotide (NADH) levels, which result in increased ROS and oxidative DNA damage. Using this isogenic cell line, we have revealed the genotoxicity of ambient oxygen. Our study highlights the importance of mitochondrial respiration both for bioenergetic benefits and for maintaining genomic stability in an oxygen-rich environment."	"Unexpected vascular enrichment of SCO1 over SCO2 in mammalian tissues: implications for human mitochondrial disease. Mammalian SCO1 and SCO2 are evolutionarily-related copper-binding proteins that are required for the assembly of cytochrome c oxidase (COX), a mitochondrial respiratory chain complex, but the exact roles that they play in the assembly process are unclear. Mutations in both SCO1 and SCO2 are associated with distinct clinical phenotypes as well as tissue-specific COX deficiency, but the reason for such tissue specificity is unknown. We show in this study that although both genes are expressed ubiquitously in all mouse and human tissues examined, surprisingly, SCO1 localizes predominantly to blood vessels, whereas SCO2 is barely detectable in this tissue. To our knowledge, SCO1 is the first known example of a mitochondrial protein that is strongly expressed in the vasculature. We also show that the expression of SCO1, but not of SCO2, is very high in liver (the tissue most affected in SCO1-mutant patients), whereas the reverse holds true in muscle (the tissue most affected in SCO2-mutant patients). Our findings may help explain the differences in clinical presentations due to mutations in SCO1 and SCO2 and provide clues regarding the partially nonoverlapping functions of these two proteins."	"The role of p53 in cell metabolism. The p53 tumor suppressor gene has recently been shown to mediate metabolic changes in cells under physiological and pathological conditions. It has been revealed that p53 regulates energy metabolism, oxidative stress, and amino acid metabolism through balancing glycolysis and oxidative phosphorylation (OXPHOS) as well as the autophagy pathway. p53 is activated by metabolic stress through AMP-activated protein kinase (AMPK) and the mammalian target of rapamycin (mTOR) signaling pathways. p53 regulates OXPHOS through the transcriptional regulation of fructose-2,6-bisphosophatase, TP53-induced glycolysis regulator (TIGAR) and synthesis of cytochrome c oxidase (SCO2) subunit of complex IV of the electron transport chain. p53 also indirectly influences the energy metabolism through regulating glucose transporter (GLUT) expression, glutaminase 2 (GLS2) and fatty acid synthase (FAS). In addition, p53 regulates autophagy to provide cell metabolites for surviving through damage regulated autophagy modulator (DRAM1). Here we review the recent findings to elucidate the important role of p53 in cell metabolism."	"Reference values of capillary blood saturation in neonates and its difference from pulse oximetry. Haemoglobin saturation is an obligatory oxygen parameter in the assessment of neonatal oxygenation. Although, pulse oximetry is currently one of the major methods in the determination of haemoglobin saturation, capillary blood saturation is still present in the diagnostic process. As well known, haemoglobin saturation value of capillary blood is insufficiently accurate, but not as much as the difference in relation to the values determined by pulse oximetry. Until now published studies have reported that capillary samples are obtained according to a protocol by the principle of free blood outflow, which is practically almost unachievable in the neonate. Determination of the reference values of oxygen saturation (SCO2) and partial pressure (pcO2) of capillary blood by squeezing of the foot. The determination of difference between ScO2 and pulse oximetry (SpO2). In 134 term newborns, we determined SpO2. Subsequently, we measured the values of ScO2 and pcO2 from the same extremity. While withdrawing a capillary sample, we exerted multiple squeezing of the foot. The mean value of ScO2, pcO2, SpO2 and the difference between ScO2 and SpO2 were determined. Mean ScO2 value was 80.5 +/- 8.5%, pcO2 was 48.2 +/- 11.4 mm Hg and SpO2 was 98 +/- 1.9%. The difference between ScO2 and SpO2 values was 17.5 +/- 8.6% (t = 23.568; p = 0.000). There is a statistically highly significant difference between the values of ScO2 and SpO2. Having the knowledge of this difference can increase the accuracy of clinical evaluation and further diagnostics. Comparison in up-to-now conducted studies suggests that the squeezing of the foot for obtaining a capillary sample in relation to free blood outflow does not bear any significant influence on the resultant values of haemoglobin saturation."	"Genetic, functional and evolutionary characterization of scox, the Drosophila melanogaster ortholog of the human SCO1 gene. SCO proteins are copper-donor chaperones involved in the assembly of mitochondrial cytochrome c oxidase (COX). Mutations in the two human SCO-encoding genes, SCO1 and SCO2, produce tissue-specific COX deficiencies associated with distinct clinical phenotypes. Here, we report the identification and characterization of scox, the single Drosophila melanogaster SCO-encoding gene. Null mutations of the scox gene are associated with larval lethality, while mutations in its 5'UTR are associated with motor dysfunction and female sterile phenotypes. All mutant phenotypes may be rescued by a transgene encompassing wild-type scox. The analysis of the phenotypes associated with the D. melanogaster scox mutations shows that unimpaired COX assembly and activity is required for biological processes that specifically depend on an adequate energy supply. Finally, we identified the SCO1 orthologs in 39 eukaryotic species informative for a tentative reconstruction of the evolutionary history of the SCO function. Comparison of the exon/intron structure and other key features suggest that eukaryotic SCO genes descend from an intron-rich ancestral gene already present in the last common ancestor of lineages that diverged as early as metazoans and flowering plants."	"Phenylephrine decreases frontal lobe oxygenation at rest but not during moderately intense exercise. Whether sympathetic activity influences cerebral blood flow (CBF) and oxygenation remains controversial. The influence of sympathetic activity on CBF and oxygenation was evaluated by the effect of phenylephrine on middle cerebral artery (MCA) mean flow velocity (Vmean) and the near-infrared spectroscopy-derived frontal lobe oxygenation (ScO2) at rest and during exercise. At rest, nine healthy male subjects received bolus injections of phenylephrine (0.1, 0.25, and 0.4 mg), and changes in mean arterial pressure (MAP), MCA Vmean, internal jugular venous O2 saturation (SjvO2), ScO2), and arterial PCO2 (PaCO2) were measured and the cerebral metabolic rate for O2 (CMRO2) was calculated. In randomized order, a bolus of saline or 0.3 mg of phenylephrine was then injected during semisupine cycling, eliciting a low (approximately 110 beats/min) or a high (approximately 150 beats/min) heart rate. At rest, MAP and MCA Vmean increased approximately 20% (P&lt;0.001) and approximately 10% (P&lt;0.001 for 0.25 mg of phenylephrine and P&lt;0.05 for 0.4 mg of phenylephrine), respectively. ScO2 then decreased approximately 7% (P&lt;0.001). Phenylephrine had no effect on SjvO2, PaCO2, or CMRO2. MAP increased after the administration of phenylephrine during low-intensity exercise (approximately 15%), but this was attenuated (approximately 10%) during high-intensity exercise (P&lt;0.001). The reduction in ScO2 after administration of phenylephrine was attenuated during low-intensity exercise (-5%, P&lt;0.001) and abolished during high-intensity exercise (-3%, P=not significant), where PaCO2 decreased 7% (P&lt;0.05) and CMRO2 increased 17% (P&lt;0.05). These results suggest that the administration of phenylephrine reduced ScO2 but that the increased cerebral metabolism needed for moderately intense exercise eliminated that effect."	"Intracellular delivery of full length recombinant human mitochondrial L-Sco2 protein into the mitochondria of permanent cell lines and SCO2 deficient patient's primary cells. Mutations in human SCO2 gene, encoding the mitochondrial inner membrane Sco2 protein, have been found to be responsible for fatal infantile cardioencephalomyopathy and cytochrome c oxidase (COX) deficiency. One potentially fruitful therapeutic approach for this mitochondrial disorder should be considered the production of human recombinant full length L-Sco2 protein and its deliberate transduction into the mitochondria. Recombinant L-Sco2 protein, fused with TAT, a Protein Transduction Domain (PTD), was produced in bacteria and purified from inclusion bodies (IBs). Following solubilisation with l-arginine, this fusion L-Sco2 protein was transduced in cultured mammalian cells of different origin (U-87 MG, T24, K-562, and patient's primary fibroblasts) and assessed for stability, transduction into mitochondria, processing and impact on recovery of COX activity. Our results indicate that: a) l-Arg solution was effective in solubilising recombinant fusion L-Sco2 protein, derived from IBs; b) fusion L-Sco2 protein was delivered successfully via a time- and concentration-dependent process into the mitochondria of human U-87 MG and T24 cells; c) fusion L-Sco2 protein was also transduced in human K-562 cells, transiently depleted of SCO2 transcripts and thus COX deficient; transduction of this fusion protein led to partial recovery of COX activity in such cells; d) [(35)S]Methionine-labelled fusion L-Sco2 protein, produced in a cell free transcription/translation system and incubated with intact isolated mitochondria derived from K-562 cells, was efficiently processed to yield the corresponding mature Sco2 protein, thus justifying the potential of the transduced fusion L-Sco2 protein to successfully activate COX holoenzyme; and finally, e) recombinant fusion L-Sco2 protein was successfully transduced into the mitochondria of primary fibroblasts derived from SCO2/COX deficient patient and facilitated recovery of COX activity. These findings provide the rationale of delivering recombinant proteins via PTD technology as a model for therapeutic approach of mitochondrial disorders."	"A novel mutation in the SCO2 gene in a neonate with early-onset cardioencephalomyopathy. Mutations in the SCO2 gene [SCO cytochrome oxidase deficient homolog 2 (yeast)] causing cytochrome c oxidase deficiency have been reported in at least in 26 patients with fatal infantile cardioencephalomyopathy. Mutation 1541G &gt; A affecting protein stability is associated with the majority of cases, and the other 11 described mutations have more serious deleterious structural consequences for the protein product. Reported here is a novel case caused by compound heterozygosity of SCO2. The child presented at the age of 3 weeks with failure-to-thrive, muscular hypotonia, hypertrophic cardiomyopathy, and lactic acidemia. Leigh syndrome was diagnosed based on magnetic resonance imaging findings. Immunohistochemical and enzymatic investigations on muscle indicated totally absent cytochrome c oxidase activity. Both parents had mild mental retardation. Sequence analysis in the patient and in his parents revealed heterozygous mutation c.418G &gt; A in exon 2 inherited from the father and maternally inherited heterozygous insertion of 19bp at position 17 in the coding region of the SCO2 gene. Respiratory chain enzyme activity measurements indicated normal activity in both parents, although the mother's cytochrome c oxidase activity was lower. This gene may be involved in the etiology of the mother's mental retardation."	"Redox regulation of SCO protein function: controlling copper at a mitochondrial crossroad. Reversible changes in the redox state of cysteine residues represent an important mechanism with which to regulate protein function. In mitochondria, such redox reactions modulate the localization or activity of a group of proteins, most of which function in poorly defined pathways with essential roles in copper delivery to cytochrome c oxidase (COX) during holoenzyme biogenesis. To date, a total of 8 soluble (COX17, COX19, COX23, PET191, CMC1-4) and 3 integral membrane (COX11, SCO1, SCO2) accessory proteins with cysteine-containing domains that reside within the mitochondrial intermembrane space (IMS) have been identified in yeast, all of which have human orthologues. Compelling evidence from studies of COX17, SCO1, and SCO2 argues that regulation of the redox state of their cysteines is integral to their metallochaperone function. Redox also appears to be crucial to the regulation of a SCO-dependent, mitochondrial signaling pathway that modulates the rate of copper efflux from the cell. Here, I review our understanding of redox-dependent modulation of copper delivery to COX and IMS-localized copper-zinc superoxide dismutase (SOD1) during the maturation of each enzyme, and discuss how this in turn may serve to functionally couple mitochondrial copper handling pathways with those localized elsewhere in the cell to regulate cellular copper homeostasis."	"A homozygous mutation in the SCO2 gene causes a spinal muscular atrophy like presentation with stridor and respiratory insufficiency. Infants with deficiency of cytochrome c oxidase (COX) due to SCO2 mutations observed so far usually demonstrated early cardiomyopathy, encephalopathy and lactic acidosis. Milder spinal muscular atrophy-like (SMA-like) phenotype was also rarely reported. The aim is to present 18 Polish patients with SCO2 mutations. Molecular study revealed p.E140K mutation in all cases (on 32 alleles); p.Q53X mutation and novel p.M177T change were identified in single patients. In three families no second mutation was found. Thirteen p.E140K homozygotes presented in infancy with floppiness and remarkable stridor. Survival motor neuron (SMN) gene deletion was excluded. Mild to moderate lactic academia was found. Neurological involvement manifested as spasticity and psychomotor retardation. In some patients strabismus, ptosis and episodes of seizures were seen. During second half of the year chronic respiratory failure with artificial respiration dependency appeared in all homozygotes. Heart involvement was never present at the beginning. Rapidly progressive hypertrophic cardiomyopathy developed in several patients at the terminal stage. The stridor was constant and striking feature. Skeletal muscle biopsy was performed in 16 patients including 11 homozygotes. Four pathological patterns were discerned - from neurogenic muscle changes, including spinal muscular atrophy (SMA) to unspecific findings. Histochemical cytochrome c oxidase (COX) deficit was not a constant feature. Significant decrease in respiratory chain complex IV activity was detected in muscle homogenate by spectrophotometric method only in 7 out of 12 examined cases. 1/Mutations of SCO2 gene should be considered as a possible cause of neurogenic skeletal muscle features (including SMA-like) in infants with encephalomyopathy even in the absence of heart involvement and COX deficit; 2/Inspiratory stridor may be symptomatic of SCO2 gene mutation(s)."	"Haemodynamic effects during endoscopic vein harvest of the saphenous vein for off-pump coronary artery bypass grafting surgery. Endoscopic vein harvest (EVH) for coronary artery bypass grafting surgery is performed with carbon dioxide (CO2) insufflation for visualization and dissection. The insufflated CO2 is rapidly absorbed into the body and may influence haemodynamics. However, the haemodynamic changes during EVH have not been clearly defined. This study evaluated the haemodynamic effects during EVH of the saphenous vein for off-pump coronary artery bypass grafting surgery (OPCAB). After fixing the position for harvesting of the left internal mammary artery, EVH of the saphenous vein was performed at a maximum CO2 pressure of 12 mmHg and a flow of 3 l/min. The haemodynamic parameters were measured before and just after the end of endoscopic vein harvest. One hundred patients were studied. The end-tidal CO2 pressure (P(ET)CO2, 35.0 +/- 2.7 vs. 52.0 +/- 6.2 mmHg), partial pressure of arterial CO2 (PaCO2, 35.1 +/- 3.1 vs. 52.5 +/- 4.3 mmHg), mixed venous oxygen saturation (SvO2, 75.6 +/- 4.1 vs. 82.0 +/- 1.6%), cardiac index (2.7 +/- 0.6 vs. 3.3 +/- 0.6 l/min/m2), and cerebral oxygen saturation (ScO2, left: 63.5 +/- 7.9 vs. 73.3 +/- 8.4; right: 62.2 +/- 8.0 vs. 72.3 +/- 6.3%) differed significantly between before and after CO2 insufflation, whereas mean systemic blood pressure, mean pulmonary artery blood pressure, central venous pressure, heart rate, partial pressure of arterial oxygen, and peak inspiratory pressure did not differ significantly between before and after CO2 insufflation. EVH, at a maximum CO2 pressure of 12 mmHg and a flow of 3 l/min, of the saphenous vein for OPCAB was associated with hypercarbia and a tolerable range of hypercarbia (PaCO2 &lt; 60 mmHg) increased the cardiac index and ScO2 without any complications."	"Analysis of mouse models of cytochrome c oxidase deficiency owing to mutations in Sco2. Mutations in SCO2, a protein required for the proper assembly and functioning of cytochrome c oxidase (COX; complex IV of the mitochondrial respiratory chain), cause a fatal infantile cardioencephalomyopathy with COX deficiency. We have generated mice harboring a Sco2 knock-out (KO) allele and a Sco2 knock-in (KI) allele expressing an E--&gt;K mutation at position 129 (E129K), corresponding to the E140K mutation found in almost all human SCO2-mutated patients. Whereas homozygous KO mice were embryonic lethals, homozygous KI and compound heterozygous KI/KO mice were viable, but had muscle weakness; biochemically, they had respiratory chain deficiencies as well as complex IV assembly defects in multiple tissues. There was a concomitant reduction in mitochondrial copper content, but the total amount of copper in examined tissues was not reduced. These mouse models should be of use in further studies of Sco2 function, as well as in testing therapeutic approaches to treat the human disorder."	"[Should cerebral autoregulation be reassessed?]. Maintained cardiac output (CO) and cerebral oxygenation (ScO2) are of importance for a reduction in perioperative complications. Normovolaemia is defined as a central blood volume that does not limit CO for the supine patient and is maintained by individualized goal directed fluid therapy. Thereby, ScO2 is maintained even when the mean arterial pressure is &lt; 40 mm Hg. However, for some patients, ScO2 decreases with a small reduction in blood pressure and it is recommended that ScO2 be monitored."	"Frontal lobe oxygenation is maintained during hypotension following propofol-fentanyl anesthesia. Near-infrared spectroscopy (NIRS) assesses cerebral oxygen saturation (Sco2) as a balance between cerebral oxygen delivery and consumption. In 71 patients, we evaluated whether marked reduction in mean arterial pressure (MAP) during propofol-fentanyl anesthesia induction affects frontal lobe Sco2. The NIRS-determined arm muscle oxygenation (Smo2), heart rate (HR), and cardiac output (CO) were monitored, endtidal carbon dioxide tension was controlled at 3.5 to 4.5 kPa, and central blood volume was maintained. Before anesthesia, the median (range) MAP, HR, and CO were 93 mm Hg (61-126 mm Hg), 76 beats/min (50-96 beats/min), and 5.3 L/min (2.4-9.0 L/min), respectively, but immediately following intravenous administration of fentanyl and propofol, MAP decreased to 63 mm Hg (37-109 mm Hg), HR to 63 beats/min (40-103 beats/min), and CO to 4.1 L/min (7.9-70 L/min) (P &lt; .05). When blood pressure decreased, the median (range) NIRS-determined Smo2 also decreased (73% [54%-94%] to 71% [52%-87%]), whereas Sco2 increased from 67% (46%-93%) to 74% (48%-95%) (P &lt; .05), independent of age and gender. After anesthesia induction, variables recovered and remained at preanesthetic levels during surgery. The findings implicate that even an approximately 30% drop in MAP at the induction of anesthesia does not typically affect cerebral oxygenation."	"Polo-like kinases mediate cell survival in mitochondrial dysfunction. Cancer cells often display defects in mitochondrial respiration, thus the identification of pathways that promote cell survival under this metabolic state may have therapeutic implications. Here, we report that the targeted ablation of mitochondrial respiration markedly increases expression of Polo-like kinase 2 (PLK2) and that it is required for the in vitro growth of these nonrespiring cells. Furthermore, we identify PLK2 as a kinase that phosphorylates Ser-137 of PLK1, which is sufficient to mediate this survival signal. In vivo, knockdown of PLK2 in an isogenic human cell line with a modest defect in mitochondrial respiration eliminates xenograft formation, indicating that PLK2 activity is necessary for growth of cells with compromised respiration. Our findings delineate a mitochondrial dysfunction responsive cell cycle pathway critical for determining cancer cell outcome."	"The effect on cerebral tissue oxygenation index of changes in the concentrations of inspired oxygen and end-tidal carbon dioxide in healthy adult volunteers. A variety of near-infrared spectroscopy devices can be used to make noninvasive measurements of cerebral tissue oxygen saturation (ScO2). The ScO2 measured by the NIRO 300 spectrometer (Hamamatsu Photonics, Japan) is called the cerebral tissue oxygenation index (TOI) and is an assessment of the balance between cerebral oxygen delivery and utilization. We designed this study to investigate the effect of systemic and intracranial physiological changes on TOI. Fifteen healthy volunteers were studied during isocapneic hyperoxia and hypoxemia, and normoxic hypercapnea and hypocapnea. Absolute cerebral TOI and changes in oxy- and deoxyhemoglobin concentrations were measured using a NIRO 300 spectrometer. Changes in arterial oxygen saturation (SaO2), ETCO2, heart rate, mean arterial blood pressure (MBP), and middle cerebral artery blood flow velocity (Vmca) were also measured during these physiological challenges. Changes in cerebral blood volume (CBV) were subsequently calculated from changes in total cerebral hemoglobin concentration. Baseline TOI was 67.3% with an interquartile range (IQR) of 65.2%-71.9%. Hypoxemia was associated with a median decrease in TOI of 7.1% (IQR -9.1% to -5.4%) from baseline (P &lt; 0.0001) and hyperoxia with a median increase of 2.3% (IQR 2.0%-2.5%) (P &lt; 0.0001). Hypocapnea caused a reduction in TOI of 2.1% (IQR -3.3% to -1.3%) from baseline (P &lt; 0.0001) and hypercapnea an increase of 2.6% (IQR 1.4%-3.7%) (P &lt; 0.0001). Changes in SaO2 (P &lt; 0.0001), ETCO2 (P &lt; 0.0001), CBV (P = 0.0003), and MBP (P = 0.03) were significant variables affecting TOI. Changes in Vmca (P = 0.7) and heart rate (P = 0.2) were not significant factors. TOI is an easy-to-monitor variable that provides real-time, multisite, and noninvasive assessment of the balance between cerebral oxygen delivery and utilization. However, TOI is a complex variable that is affected by SaO2 and ETCO2, and, to a lesser extent, by MBP and CBV. Clinicians need to be aware of the systemic and cerebral physiological changes that can affect TOI to interpret changes in this variable during clinical monitoring."	"Novel insights into phenotype and mitochondrial proteome of yeast mutants lacking proteins Sco1p or Sco2p. The yeast Saccharomyces cerevisiae is a facultative anaerobe and its mitochondrial morphology is linked to its metabolic activity. The Sco proteins (Sco1p and Sco2p) were characterized as proteins required for copper delivery to cytochrome c oxidase. Our results indicated a higher fermentative capacity of the sco1-Delta mutant in comparison to the control and the sco2-Delta mutant strains. The mitochondrial proteome analysis showed that the sco1-Delta mutant down-regulated components of the respiratory chain, the TCA cycle and transport of metabolites across the mitochondrial membrane. This evidence suggests that the absence of Sco1p causes irreversible damage to the mitochondria."	"Mutation analysis of COX18 in 29 patients with isolated cytochrome c oxidase deficiency. Isolated cytochrome c oxidase (COX) deficiency (MIM#220110) is a relatively common biochemical finding in pediatric patients with mitochondrial disorder. It has been associated with different clinical phenotypes ranging from isolated myopathy to severe multisystem disorder. It is a genetically heterogeneous trait, and the most frequent genetic defects affect SURF1 and SCO2, two genes required for COX assembly. However, a significant proportion of patients lacks mutation in these genes and in other known genes that require COX biogenesis. COX18 is a novel COX assembly gene required for membrane insertion of the C-terminal portion of COX subunit II. We have studied 29 pediatric patients with isolated COX deficiency in the skeletal muscle associated with different clinical phenotypes. Mutations in SURF1, SCO2, SCO1, COX10, COX15 and in mitochondrial DNA, had been ruled out earlier. The COX18 gene was analyzed using a PCR-single-stranded conformation polymorphism (PCR-SSCP) protocol, and in 15 patients, the analysis was repeated by direct sequencing. No pathogenic mutations were detected in our cohort of patients indicating that COX18 mutations may be very rare or associated with other phenotypes than isolated COX deficiency in infancy."	"A novel homozygous SCO2 mutation, p.G193S, causing fatal infantile cardioencephalomyopathy. Cytochrome c oxidase (COX) deficiency is a frequent cause of mitochondrial disease in infants. Mutations in the COX assembly gene SCO2 cause fatal infantile cardioencephalomyopathy. All patients reported to date with SCO2 deficiency share a common p.E140K mutation in at least 1 allele. In order to further the understanding of the genotype-phenotype spectrum associated with fatal infantile cardioencephalomyopathy, we describe a novel homozygous SCO2 mutation p.G193S in a patient with fatal infantile cardioencephalomyopathy born to consanguineous parents of Indian ancestry."	"Remodelling of skeletal muscle cells in children with SCO2 gene mutation - ultrastructural study. Mitochondrial protein coded by the SCO2 gene is involved in the process of assembly of mitochondrial cytochrome c oxidase (COX). Progressive cardiomyopathy, neuropathy and lactic acidosis are presented by infants with SCO2 gene mutations. Only a dozen patients with this gene mutation have been reported in the literature. Muscle ultrastructure is mentioned only in a few case reports. The aim of this study was to search for typical ultrastructural features in 11 skeletal muscle specimens from Polish patients bearing SCO2 gene mutations. Ultrastructural analysis confirms domination of atrophic and degenerative changes, including atrophic muscle fibres of irregular shape with folding of basal lamina and numerous papillary projections containing altered mitochondria, glycogen granules and degenerated organelles. Advanced disorganization of myofibrils and abnormalities of mitochondria were often found. Myeloid structures, vacuoles, and lipid accumulation were seen only sporadically. Those findings may be attributed to neurogenic atrophy visible in light microscopy. Our observations confirm that mutations in the SCO2 gene are frequently associated with the neurogenic pattern of skeletal muscle involvement accompanied by mitochondrial abnormalities. SCO2 gene mutation should be included in differential diagnosis in children with such a pattern; however, lack of neurogenic changes does not exclude SCO2 gene mutation."	"Human SCO2 is required for the synthesis of CO II and as a thiol-disulphide oxidoreductase for SCO1. Human SCO1 and SCO2 code for essential metallochaperones with ill-defined functions in the biogenesis of the CuA site of cytochrome c oxidase subunit II (CO II). Here, we have used patient cell lines to investigate the specific roles of each SCO protein in this pathway. By pulse-labeling mitochondrial translation products, we demonstrate that the synthesis of CO II is reduced in SCO2, but not in SCO1, cells. Despite this biosynthetic defect, newly synthesized CO II is more stable in SCO2 cells than in control cells. RNAi-mediated knockdown of mutant SCO2 abolishes CO II labeling in the translation assay, whereas knockdown of mutant SCO1 does not affect CO II synthesis. These results indicate that SCO2 acts upstream of SCO1, and that it is indispensable for CO II synthesis. The subsequent maturation of CO II is contingent upon the formation of a complex that includes both SCO proteins, each with a functional CxxxC copper-coordinating motif. In control cells, the cysteines in this motif in SCO1 exist as a mixed population comprised of oxidized disulphides and reduced thiols; however, the relative ratio of oxidized to reduced cysteines in SCO1 is perturbed in cells from both SCO backgrounds. Overexpression of wild-type SCO2, or knockdown of mutant SCO2, in SCO2 cells alters the ratio of oxidized to reduced cysteines in SCO1, suggesting that SCO2 acts as a thiol-disulphide oxidoreductase to oxidize the copper-coordinating cysteines in SCO1 during CO II maturation. Based on these data we present a model in which each SCO protein fulfills distinct, stage-specific functions during CO II synthesis and CuA site maturation."	"Loss of function of Sco1 and its interaction with cytochrome c oxidase. Sco1 and Sco2 are mitochondrial copper-binding proteins involved in the biogenesis of the Cu(A) site in the cytochrome c oxidase (CcO) subunit Cox2 and in the maintenance of cellular copper homeostasis. Human Surf1 is a CcO assembly factor with an important but poorly characterized role in CcO biogenesis. Here, we analyzed the impact on CcO assembly and tissue copper levels of a G132S mutation in the juxtamembrane region of SCO1 metallochaperone associated with early onset hypertrophic cardiomyopathy, encephalopathy, hypotonia, and hepatopathy, assessed the total copper content of various SURF1 and SCO2-deficient tissues, and investigated the possible physical association between CcO and Sco1. The steady-state level of mutant Sco1 was severely decreased in the muscle mitochondria of the SCO1 patient, indicating compromised stability and thus loss of function of the protein. Unlike the wild-type variant, residual mutant Sco1 appeared to migrate exclusively in the monomeric form on blue native gels. Both the activity and content of CcO were reduced in the patient's muscle to approximately 10-20% of control values. SCO1-deficient mitochondria showed accumulation of two Cox2 subcomplexes, suggesting that Sco1 is very likely responsible for a different posttranslational aspect of Cox2 maturation than Sco2. Intriguingly, the various SURF1-deficient samples analyzed showed a tissue-specific copper deficiency similar to that of SCO-deficient samples, suggesting a role for Surf1 in copper homeostasis regulation. Finally, both blue native immunoblot analysis and coimmunoprecipitation revealed that a fraction of Sco1 physically associates with the CcO complex in human muscle mitochondria, suggesting a possible direct relationship between CcO and the regulation of cellular copper homeostasis."	"Off-flavors removal and storage improvement of mackerel viscera by supercritical carbon dioxide extraction. The oil in mackerel viscera was extracted by supercritical carbon dioxide (SCO2) at a semi-batch flow extraction process and the fatty acids composition in the oil was identified. Also the off-flavors removal in mackerel viscera and the storage improvement of the oils were carried out. As results obtained, by increasing pressure and temperature, quantity was increased. The maximum yield of oils obtained from mackerel viscera by SCO, extraction was 118 mgg(-1) (base on dry weight of freeze-dried raw anchovy) at 50 degrees C, 350 bar And the extracted oil contained high concentration of EPA and DHA. Also it was found that the autoxidation of the oils using SCO2 extraction occurred very slowly compared to the oils by organic solvent extraction. The off-flavors in the powder after SCO2 extraction were significantly removed. Especially complete removal of the trimethylamine which influences a negative compound to the products showed. Also other significant off-flavors such as aldehydes, sulfur-containing compounds, ketones, acids or alcohols were removed by the extraction."	"Protein properties of mackerel viscera extracted by supercritical carbon dioxide. The extraction of mackerel viscera using supercritical carbon dioxide (SCO2) was performed under the conditions of temperature range from 35 to 45 degrees C, and constant pressure 25 MPa. The digestive enzyme activities were determined in comparison of untreated and treated SCO2 and solvent treatment. Activities were maintained with high level compared to that of solvent extraction. Also from result of SDS-PAGE, the protein denaturation was minimized when using SCO2 extraction. The major amino acids in the mackerel viscera were determined as glutamic acid, aspartic acid, glycine, leucine, lysine and the free amino acids were taurine, L-alanine, L-leucine, 1-methyl-L-histamine, 3-methyl-L-histidine."	"[Convulsions in neonatal period and infancy with rare etiology (neurogenetic disease)]. Authors summarized the etiology of convulsions in neonatal period and infancy (hypoxia, intracranial hemorrhage, infections of central nervous system, metabolic background, chromosomal abnormalities, brain developmental abnormalities, benign neonatal convulsions, benign neonatal familial convulsions, drug withdrawal, inborn error of metabolism). They suggest screening examinations after convulsion, summarized the basic principle of tandem examination and review a proposal at suspicion of inborn error of enzyme defects (aminoacidemias, defects of fatty acid oxidation, organic acidemias). They present case history of two patients suffered in extraordinary inborn error of enzyme defect (SCO2 gene mutation, propionic acidemia). Diagnosis originated in Helm P61 Hospital (settlement Madarász Hospital) with a Hungarian and international cooperation."	"Relationship between cerebral oxygenation and phosphorylation potential during secondary energy failure in hypoxic-ischemic newborn piglets. The aim of this study was to evaluate the hypothesis that cerebral hemoglobin (Hb) oxygenation is related to phosphorylation potential during primary and secondary cerebral energy failure in newborn infants who have experienced birth asphyxia. We subjected newborn piglets to severe transient cerebral hypoxic-ischemia followed by resuscitation and examined cerebral energy metabolism by 31P-magnetic resonance spectroscopy and evaluated changes in cerebral Hb oxygen saturation (ScO2) using full-spectrum near-infrared spectroscopy before, during, and up to 54 h after the hypoxic-ischemic insult. ScO2 was significantly decreased during the hypoxic-ischemic insult compared with baseline values. During secondary energy failure, piglets were separated based on the relationship between the ratio of phosphocreatine to inorganic phosphate and ScO2; those with a negative correlation were less injured than those with a positive correlation. These results indicate that changes in ScO2 as measured by near-infrared spectroscopy are related to phosphorylation potential during secondary energy failure in asphyxiated infants."	"Phenotypic consequences of a novel SCO2 gene mutation. SCO2 is a cytochrome c oxidase (COX) assembly gene. Mutations in the SCO2 gene have been associated with fatal infantile cardioencephalomyopathy. We report on the phenotype of a novel SCO2 mutation in two siblings with fatal infantile cardioencephalomyopathy. The index patient died of heart failure at 25 days of age. Muscle biopsy was performed for histology and biochemical study of the oxidative phosphorylation system complexes. The entire coding region of the SCO2 gene was sequenced. Autopsy was performed on the index patient and on a female sibling delivered at 23 weeks of gestation following termination of pregnancy during which amniocentesis and genetic testing had been performed. Muscle biopsy and biochemical analysis of heart and skeletal muscle detected a severe isolated COX-IV deficiency. Pathologic findings in both patients confirmed hypertrophic cardiomyopathy. Sequencing of the SCO2 gene showed compound heterozygous mutation; the common E140K mutation and a novel W36X nonsense mutation. Newborns with a combination of hypotonia and cardiomyopathy should be evaluated for multiple congenital anomaly syndromes, inborn errors of metabolism and mitochondrial derangements, and may require extensive diagnostic testing. Mutations in the SCO2 gene are a cause of prenatal-onset hypertrophic cardiomyopathy."	"[Mitochondrial diseases in children including Leigh syndrome--biochemical and molecular background]. Mitochondrial diseases in children are more frequently caused by mutations in nuclear DNA then in mtDNA. Special clinical phenotypes are associated with the mutations in SURF1 gene, in SCO2 gene and with mtDNA depletion syndromes. Leigh syndrome is the most common clinical presentation of various mitochondrial disorders during childhood. Elevation of lactate in blood, cerebrospinal fluid and urine is a simple biochemical marker of mitochondrial disorders but its specificity and sensitivity are low. Biochemical investigation of muscle biopsy and search for mitochondrial mutations remain a gold standard in the diagnosis. The standarized diagnostic criteria to establish level of diagnostic certainty (possible, probable, definite) are proposed to be used in practice; these include clinical features, neuroimaging and muscle biopsy investigations. Further research directions to improve our understanding of mitochondrial pathologies in children are suggested."	"A combined ab initio and Franck-Condon factor simulation study on the photodetachment spectrum of ScO2(-). Restricted-spin coupled-cluster single-double plus perturbative triple excitation {RCCSD(T)} potential energy functions (PEFs) of the X(2)B2 state of ScO2 and the 1A1 state of ScO2(-) were computed, employing the augmented correlation-consistent polarized-weighted core-valence quadruple-zeta (aug-cc-pwCVQZ) basis set for Sc and augmented correlation-consistent polarized valence quadruple-zeta (aug-cc-pVQZ) basis set for O, and with the outer core Sc 3s(2)3p(6) electrons being explicitly correlated. Franck-Condon factors, which include allowance for Duschinsky rotation and anharmonicity, were calculated using the computed RCCSD(T) PEFs, and were used to simulate the first photodetachment band of ScO2(-). The simulated spectrum matches well with the corresponding experimental 355 nm photodetachment spectrum of Wu and Wang, J Phys Chem A 1998, 102, 9129, confirming the assignment of the photodetachment spectrum and the reliability of the RCCSD(T) PEFs used. Further calculations on low-lying electronic states of ScO2 gave adiabatic relative electronic energies (T(e)'s) of, and vertical excitation energies (T(v)'s) to, the 2A1, 2B1, and 2A2 states of ScO2 (from the X(2)B2 state of ScO2), as well as electron affinities (EAs) and vertical detachment energies (VDEs) to these neutral states from the 1A1 state of ScO2(-)."	"Amyotrophic lateral sclerosis with ragged-red fibers. Motor neuron diseases (amyotrophic lateral sclerosis [ALS] and spinal muscular atrophy [SMA]) have been rarely associated with mitochondrial respiratory chain defects. To describe a patient with typical ALS and the finding of ragged-red fibers in muscle biopsy specimens and to review the literature on respiratory chain defects in ALS and SMA. Case report and review of the literature. Collaboration between tertiary care academic hospitals. A 65-year-old man with typical ALS. The patient had 10% ragged-red fibers and 3% cytochrome-c oxidase-negative fibers in muscle biopsy specimens but no biochemical defects of respiratory chain enzymes or alterations of mitochondrial DNA (mtDNA). Amyotrophic lateral sclerosis with ragged-red fibers has been reported in 5 families and is associated with mtDNA mutations in some subjects. Spinal muscular atrophy without mutations in the survival motor neuron gene (SMN; OMIM 600354) has been associated with mtDNA depletion or with mutations in the cytochrome-c oxidase assembly gene (SCO2; OMIM 604377). Respiratory chain defects can mimic ALS or SMA and should be considered in the differential diagnosis."	"A family of cyanide-bridged molecular squares: structural and magnetic properties of [{MIICl2}2{CoII(triphos)(CN)2}2].xCH2Cl2, M = Mn, Fe, Co, Ni, Zn. The syntheses, structures, and magnetic properties of a series of tetranuclear cyanide-bridged compounds are reported. This family of molecular squares, [{M(II)Cl2}2{Co(II)(triphos)(CN)2}2] (M = Mn ([CoMn]), Fe ([CoFe]), Co ([CoCo]), Ni ([CoNi]), and Zn ([CoZn]), triphos = 1,1,1-tris(diphenylphosphinomethyl)ethane), has been synthesized by the reaction of Co(II)(triphos)(CN)2 and MCl2 (M = Mn, Co, Ni, Zn) or Fe4Cl8(THF)6 in a CH2Cl2/EtOH mixture. These complexes are isostructural and consist of two pentacoordinate Co(II) and two tetrahedral M(II) centers. The resulting molecular squares are characterized by antiferromagnetic coupling between metal centers that generally follows the spin-coupling model S total = SM(II)1 - SCo1 + SM(II)2 - SCo2. Magnetic parameters for all the complexes were measured using SQUID magnetometry. Additionally, [CoZn] and [CoMn] were studied by both conventional and high-frequency and high-field electron paramagnetic resonance."	"Structural analysis of tissues affected by cytochrome C oxidase deficiency due to mutations in the SCO2 gene. Structural and histochemical studies carried out in a series of seven cases (from five families) with isolated cytochrome c oxidase (COX) deficiency caused by mutations in the SCO2 gene (1, 2) disclosed changes concentrated in the nervous system, skeletal muscle and myocardium. In five patients homozygous for the E140K mutation, the phenotype was predominantly neuromuscular and the average life span ranged between 9 and 15 months. In two cases, the course was more rapid (death at 7 and 11 weeks of life) and featured marked cardiac hypertrophy (3- and 4-fold increase in heart weight). This predominantly cardiomyopathic phenotype was associated with compound heterozygosity (E140K with another nonsense mutation) in the SCO2 gene. Polioencephalopathy with neurodegeneration and neuronal drop out was present in all cases with evidence that retinal neurons might be seriously affected too. Involvement of spinal motoneurons together with cytochrome c oxidase deficiency in muscle represents a &quot;double hit&quot; for the skeletal muscle. The mitochondrial population was not found to be significantly increased or structurally altered, with the exception of two compound heterozygotes in which the cardiac mitochondria were increased in number and size. Our report extends knowledge of the pathology of COX deficiency caused by mutations in the SCO2 gene."	"Snowy cotyledon 2: the identification of a zinc finger domain protein essential for chloroplast development in cotyledons but not in true leaves. In cotyledons of etiolated seedlings light-dependent transformation of etioplasts to chloroplasts marks the transition from heterotrophic to autotrophic growth. Genetic factors required for this developmental step were identified by isolating mutants of Arabidopsis thaliana that were impaired in chloroplast development in cotyledons but not in true leaves. Several mutants with chlorophyll-deficient cotyledons were isolated and dubbed snowy cotyledon (sco). Here we describe the identification and detailed characterization of the snowy cotyledon 2 mutant. The mutated SCO2 gene was identified using a map-based cloning strategy. SCO2 was shown to encode a novel protein which contains a single DnaJ-like zinc finger domain. The SCO2 protein fused to GFP was shown to be present in chloroplasts. Inactivation of SCO2 has almost no detectable impact on the levels of transcripts encoding plastid-specific proteins but leads to a significant reduction of plastid protein levels. Even though transcripts of SCO2 have been found ubiquitously in green tissues as well as in roots phenotypic changes due to SCO2 inactivation are confined to cotyledons. The cotyledons in embryos of sco2 are unaffected in their chloroplast biogenesis. Upon precocious germination seedlings of sco2 and wild type are indistinguishable. The SCO2 mutation affects chloroplast biogenesis only at the end of dormancy during seed germination. The transition from heterotrophic to autotrophic growth is dramatically impaired in sco2 when seedlings were kept in the dark for more than 5 days prior to light exposure."	"A structural-dynamical characterization of human Cox17. Human Cox17 is a key mitochondrial copper chaperone responsible for supplying copper ions, through the assistance of Sco1, Sco2, and Cox11, to cytochrome c oxidase, the terminal enzyme of the mitochondrial energy transducing respiratory chain. A structural and dynamical characterization of human Cox17 in its various functional metallated and redox states is presented here. The NMR solution structure of the partially oxidized Cox17 (Cox17(2S-S)) consists of a coiled coil-helix-coiled coil-helix domain stabilized by two disulfide bonds involving Cys(25)-Cys(54) and Cys(35)-Cys(44), preceded by a flexible and completely unstructured N-terminal tail. In human Cu(I)Cox17(2S-S) the copper(I) ion is coordinated by the sulfurs of Cys(22) and Cys(23), and this is the first example of a Cys-Cys binding motif in copper proteins. Copper(I) binding as well as the formation of a third disulfide involving Cys(22) and Cys(23) cause structural and dynamical changes only restricted to the metal-binding region. Redox properties of the disulfides of human Cox17, here investigated, strongly support the current hypothesis that the unstructured fully reduced Cox17 protein is present in the cytoplasm and enters the intermembrane space (IMS) where is then oxidized by Mia40 to Cox17(2S-S), thus becoming partially structured and trapped into the IMS. Cox17(2S-S) is the functional species in the IMS, it can bind only one copper(I) ion and is then ready to enter the pathway of copper delivery to cytochrome c oxidase. The copper(I) form of Cox17(2S-S) has features specific for copper chaperones."	"A structural characterization of human SCO2. Human Sco2 is a mitochondrial membrane-bound protein involved in copper supply for the assembly of cytochrome c oxidase in eukaryotes. Its precise action is not yet understood. We report here a structural and dynamic characterization by NMR of the apo and copper(I) forms of the soluble fragment. The structural and metal binding features of human Cu(I)Sco2 are similar to the more often studied Sco1 homolog, although the dynamic properties and the conformational disorder are quite different when the apo forms and the copper(I)-loaded forms of the two proteins are compared separately. Such differences are accounted for in terms of the different physicochemical properties in strategic protein locations. The misfunction of the known pathogenic mutations is discussed on the basis of the obtained structure."	"Cerebral oxygen saturation does not normalize until after stage 2 single ventricle palliation. In an effort to optimize neurologic outcome, cerebral oxygen saturation (SCO2) is often measured intraoperatively and postoperatively. We hypothesized that SCO2 would be related to stage of palliation in children with single ventricle congenital heart disease. Cerebral oxygen saturation was continuously recorded intraoperatively in 34 infants and children undergoing palliative surgery on cardiopulmonary bypass for single ventricle congenital heart defects and in a control group of 12 neonates with ductus-dependent circulation undergoing complete repair. Saturations were correlated with the patient's stage and outcome. Baseline SCO2 was 61% in single ventricle neonates (group P1, n = 10), 55% in neonates undergoing repair (group R), 42% in infants undergoing stage 2 palliation (group P2, n = 6), and 70% in children undergoing Fontan (group P3, n = 14). Baseline was lowest (41%) in infants undergoing interstage operations (group I, n = 4). After bypass, there was a significant improvement in SCO2 to 53% in group P2 infants (p = 0.04); there were no significant changes in the other groups. By the end of the operation, there was a significant decrease in SCO2 to 48% in group P1 (p = 0.001), with other groups unchanged from baseline. There were five perioperative deaths. Cerebral oxygen saturation at the conclusion of surgery was lower in children who died (38% versus 61%, p = 0.01). In children with single ventricle physiology, SCO2 decreases after initial palliation, remains low before second-stage palliation, but is normal before and after the Fontan. This has implications for perioperative mortality, neurologic injury, and potentially for interim mortality. Low postoperative SCO2 predicts perioperative mortality."	"Copper deficiency. Reports of the neurologic findings in adults with acquired copper deficiency as well as the development of novel models for Menkes disease have permitted a greater understanding of the role of copper in the central nervous system. A role of mitochondrial copper homeostasis in cellular energy metabolism suggests roles for this metal in cellular differentiation and biochemical adaptation. Acquired copper deficiency in adults is reported with increasing frequency, often without any identifiable cause. Chemical genetic studies identified a zebrafish model of Menkes disease that can be used for high-throughput therapeutics and revealed a hierarchy of copper distribution during development. Studies in mice reveal that the copper transport protein Ctr1 is essential for intestinal copper absorption and suggest a unique role for copper in axonal extension, excitotoxic cell death and synaptic plasticity in the central nervous system. Lastly, recent biochemical studies indicate a central role for the mitochondrial matrix in cellular copper metabolism. The recent developments in our understanding of copper deficiency and copper homeostasis outlined in this review provide an exciting platform for future investigations intended to elucidate the role of copper in central nervous system development and disease."	"The scoop on Sco. In the January 3 issue of Cell Metabolism, report that the mitochondrial metallochaperones Sco1 and Sco2, essential for cytochrome c oxidase assembly, are also responsible for maintenance of cell copper homeostasis, thus showing a new function of mitochondria."	"The regulation of energy generating metabolic pathways by p53. The function of p53 as a tumor suppressor remains undisputed. p53 has a central role in cellular stress responses as well as affecting cancer development and progression. The word &quot;central&quot;, however, is becoming increasingly more of an understatement as the list of p53-regulated pathways and processes is ever expanding. Although much focus continues to center on p53-mediated signaling cascades that control cell growth arrest and/or apoptosis, recent work has begun to define a role for p53 in the regulation of metabolic pathways typically thought of as essential for maintaining life. With the first potential link between p53 and glycolysis reported nearly ten years ago, the topic has gained a renewed interest. Recent studies now demonstrate the ability of p53 to regulate the expression of several novel genes including PGM (phosphoglycerate mutase), TIGAR (TP53-induced glycolysis and apoptosis regulator) and, SCO2 (synthesis of cytochrome c oxidase 2), each intimately linked to the processes of glycolysis and oxidative phosphorylation. With this discovery, yet another novel means by which p53 carries out its tumor suppressor function is brought into light."	"The human cytochrome c oxidase assembly factors SCO1 and SCO2 have regulatory roles in the maintenance of cellular copper homeostasis. Human SCO1 and SCO2 are metallochaperones that are essential for the assembly of the catalytic core of cytochrome c oxidase (COX). Here we show that they have additional, unexpected roles in cellular copper homeostasis. Mutations in either SCO result in a cellular copper deficiency that is both tissue and allele specific. This phenotype can be dissociated from the defects in COX assembly and is suppressed by overexpression of SCO2, but not SCO1. Overexpression of a SCO1 mutant in control cells in which wild-type SCO1 levels were reduced by shRNA recapitulates the copper-deficiency phenotype in SCO1 patient cells. The copper-deficiency phenotype reflects not a change in high-affinity copper uptake but rather a proportional increase in copper efflux. These results suggest a mitochondrial pathway for the regulation of cellular copper content that involves signaling through SCO1 and SCO2, perhaps by their thiol redox or metal-binding state."	"Identification of a novel compound heterozygote SCO2 mutation in cytochrome c oxidase deficient fatal infantile cardioencephalomyopathy. Fatal infantile cardioencephalomyopathy (OMIM No. 604377) is a disorder of the mitochondrial respiratory chain and is characterised by neonatal progressive muscular hypotonia and cardiomyopathy because of severe Cytochrome c oxidase deficiency. Here we report a novel mutation in the Cytochrome c oxidase assembly gene SCO2 in an infant with fatal infantile cardioencephalomyopathy despite normal initial metabolic screening. In newborns with unexplained muscular hypotonia and cardiomyopathy genetic testing of mitochondrial respiratory chain disorders might be helpful to establish a final diagnosis and guide treatment decisions."	"The incidence of pneumonia in rural Thailand. Pneumonia continues to be a leading infectious disease killer, yet accurately measuring incidence remains a challenge. In 2002, Thailand began active, population-based surveillance for radiographically confirmed pneumonia in Sa Kaeo Province. Full-time surveillance officers conducted active case ascertainment at every hospital, and routine audits and a community cluster survey promoted complete and accurate reporting. A case of pneumonia was defined as acute infection with signs or symptoms of lower respiratory tract infection and evidence of new infiltrates. An independent panel of radiologists reviewed digital images of all radiographs. Between September 2002 and August 2003, 777 patients met the case definition. The measured minimum incidence was 177/100,000 but the estimated incidence was as high as 580/100,000 with full adjustment for incomplete chest radiography and access to health care. Seventy-two (9%) patients died and 28% were known to be HIV positive. Fifteen (2%) patients had pneumonia twice during the year. The average cost of hospitalization for an episode of pneumonia ranged from US$490.80 to $628.60. Pneumonia is a significant and costly public health problem in Thailand. This surveillance system allows precise assessment and monitoring of radiologically confirmed pneumonia and lays the groundwork for the introduction of new vaccines against pneumonia pathogens."	"Sequence analysis of the structural nuclear encoded subunits and assembly genes of cytochrome c oxidase in a cohort of 10 isolated complex IV-deficient patients revealed five mutations. The mitochondrial oxidative phosphorylation system is composed of five multiprotein complexes. The fourth complex of this system, cytochrome c oxidase (complex IV), consists of 13 subunits: 3 encoded by mitochondrial DNA and 10 encoded by the nuclear genome. Patients with an isolated complex IV deficiency frequently harbor mutations in nuclear genes encoding for proteins necessary for the assembly of the complex. Strikingly, until now, no mutations have been detected in the nuclear encoded structural subunits of complex IV in these patients. We report the results of a mutational analysis study in patients with isolated complex IV deficiency screened for mutations in all structural genes as well as assembly genes known to cause complex IV deficiency. Four patients carried mutations in the complex IV assembly gene SURF1. One patient harbored a mutation in the COX10 gene involved in heme A synthesis. Mutations in the 10 nuclear encoded structural genes were not present."	"Differential utilization of two ATP-generating pathways is regulated by p53. A fundamental property of cancer cells is the preferential utilization of glycolysis over aerobic respiration to produce ATP. Renewed interest in understanding the mechanism underlying this metabolic shift in energy production is broadening our understanding of the relationship between cancer and cellular metabolism. In a recent article, Matoba et al. report that the p53 tumor suppressor regulates the expression of SCO2, a protein that is required for the assembly of cytochrome c oxidase (COX), a multimeric protein complex required for oxidative phosphorylation. The implication of these findings is that aerobic respiration is compromised in cells that lack functional p53."	"p53 aerobics: the major tumor suppressor fuels your workout. In addition to its role as the central regulator of the cellular stress response, p53 can regulate aerobic respiration via the novel transcriptional target SCO2, a critical regulator of the cytochrome c oxidase complex (Matoba et al., 2006). Loss of p53 results in decreased oxygen consumption and aerobic respiration and promotes a switch to glycolysis, thereby reducing endurance during physical exercise."	"A hemizygous SCO2 mutation in an early onset rapidly progressive, fatal cardiomyopathy. Mutations in SCO2, a metallochaperone involved in mitochondrial copper delivery, are associated with early onset, fatal hypertrophic cardiomyopathy. All reported patients carry at least one copy of the common 1541G&gt;A (E140K) mutation. Whereas patients with one copy of the E140K allele, in combination with a more deleterious mutation, follow a severe clinical course, patients homozygous for the E140K mutation have a delayed onset of disease and a more prolonged survival. Here, we have investigated a patient who appeared homozygous for the common 1541G&gt;A mutation based on DNA sequencing and restriction enzyme analysis of a PCR product, yet presented with early onset, severe cardiomyopathy. Restriction enzyme analysis of parental DNA revealed that the mother was heterozygous for 1541G&gt;A, while the father was homozygous wild-type. The patient showed biparental inheritance for microsatellite markers spanning the length of chromosome 22, making isodisomy unlikely. Sequencing of several single nucleotide polymorphisms within the 5'-UTR, intron and single exon of the SCO2 gene was uninformative; however, a 16 bp deletion within the intron was present in the patient and the mother, but not the father. Restriction enzyme analysis confirmed that the mother was heterozygous and that the patient was hemizygous for the deletion. Southern blot, Northern blot, and FISH analyses were consistent with the de novo deletion of one allele of SCO2 in the patient. This is the first report of hemizygosity in a SCO2 patient. The patient phenotype underscores the strikingly similar clinical course in all patients with one copy of the E140K allele. Examination of both patient and parental genotypes by thorough molecular analyses can reveal information with important implications for genetic counseling."	"p53 regulates mitochondrial respiration. The energy that sustains cancer cells is derived preferentially from glycolysis. This metabolic change, the Warburg effect, was one of the first alterations in cancer cells recognized as conferring a survival advantage. Here, we show that p53, one of the most frequently mutated genes in cancers, modulates the balance between the utilization of respiratory and glycolytic pathways. We identify Synthesis of Cytochrome c Oxidase 2 (SCO2) as the downstream mediator of this effect in mice and human cancer cell lines. SCO2 is critical for regulating the cytochrome c oxidase (COX) complex, the major site of oxygen utilization in the eukaryotic cell. Disruption of the SCO2 gene in human cancer cells with wild-type p53 recapitulated the metabolic switch toward glycolysis that is exhibited by p53-deficient cells. That SCO2 couples p53 to mitochondrial respiration provides a possible explanation for the Warburg effect and offers new clues as to how p53 might affect aging and metabolism."	"Assessment of the relationship between cerebral and splanchnic oxygen saturations measured by near-infrared spectroscopy and direct measurements of systemic haemodynamic variables and oxygen transport after the Norwood procedure. To evaluate the clinical utility of near-infrared spectroscopic (NIRS) monitoring of cerebral (ScO2) and splanchnic (SsO2) oxygen saturations for estimation of systemic oxygen transport after the Norwood procedure. ScO2 and SsO2 were measured with NIRS cerebral and thoracolumbar probes (in humans). Respiratory mass spectrometry was used to measure systemic oxygen consumption (O2). Arterial (SaO2), superior vena caval (SvO2) and pulmonary venous oxygen saturations were measured at 2 to 4 h intervals to derive pulmonary (Qp) and systemic blood flow (Qs), systemic oxygen delivery (DO2) and oxygen extraction ratio (ERO2). Mixed linear regression was used to test correlations. A study of 7 pigs after cardiopulmonary bypass (study 1) was followed by a study of 11 children after the Norwood procedure (study 2). Study 1. ScO2 moderately correlated with SvO2, mean arterial pressure, Qs, DO2 and ERO2 (slope 0.30, 0.64. 2.30, 0.017 and -32.5, p &lt; 0.0001) but not with SaO2, arterial oxygen pressure (PaO2), haemoglobin and O2. Study 2. ScO2 correlated well with SvO2, SaO2, PaO2 and mean arterial pressure (slope 0.43, 0.61, 0.99 and 0.52, p &lt; 0.0001) but not with haemoglobin (slope 0.24, p &gt; 0.05). ScO2 correlated weakly with O2 (slope -0.07, p = 0.05) and moderately with Qs, DO2 and ERO2 (slope 3.2, 0.03, -33.2, p &lt; 0.0001). SsO2 showed similar but weaker correlations. ScO2 and SsO2 may reflect the influence of haemodynamic variables and oxygen transport after the Norwood procedure. However, the interpretation of NIRS data, in terms of both absolute values and trends, is difficult to rely on clinically."	"Cerebral oxygenation and cerebral oxygen extraction in the preterm infant: the impact of respiratory distress syndrome. Haemodynamic factors play an important role in the etiology of cerebral lesions in preterm infants. Respiratory distress syndrome (RDS), a common problem in preterms, is strongly related with low and fluctuating arterial blood pressure. This study investigated the relation between mean arterial blood pressure (MABP), fractional cerebral oxygen saturation (ScO2) and fractional (cerebral) tissue oxygen extraction (FTOE), a measure of oxygen utilisation of the brain, during the first 72 h of life. Thirty-eight infants (gestational age &lt; 32 week) were included, 18 with and 20 without RDS. Arterial oxygen saturation (SaO2), MABP and near infrared spectroscopy-determined ScO2 were continuously measured. FTOE was calculated as a ratio: (SaO2-ScO2)/SaO2. Gestational age and birth weight did not differ between groups, but assisted ventilation and use of inotropic drugs were more common in RDS infants (P&lt;0.01). MABP was lower in RDS patients (P&lt;0.05 from 12 up to 36 h after birth), but increased in both groups over time. ScO2 and FTOE were not different between groups over time, but in RDS infants ScO2 and FTOE had substantial larger variance (P&lt;0.05 at all time points except at 36-48 h for ScO2 and P&lt;0.05 at 12-18, 18-24, 36-48 and 48-60 h for FTOE). During the first 72 h of life, RDS infants showed more periods of positive correlation between MABP and ScO2 (P&lt;0.05 at 18-24, 24-36 36-48 48-60 h) and negative correlation between MABP and FTOE (P&lt;0.05 at 18-24, 36-48 h). Although we found that the patterns of cerebral oxygenation and extraction in RDS infants were not different as compared to infants without RDS, we suggest that the frequent periods with possible lack of cerebral autoregulation in RDS infants may make these infants more vulnerable to cerebral damage."	"Retrospective, multicentric study of 180 children with cytochrome C oxidase deficiency. A retrospective, multicenter study of 180 children with cytochrome c oxidase (COX) deficiency analyzed the clinical features, prognosis, and molecular bases of the COX deficiency. Clinical symptoms including failure to thrive, encephalopathy, hypotony, Leigh syndrome, cardiac involvement, and hepatopathy appeared in most patients early after birth or in early childhood. Two thirds of all children died. Biochemical examination revealed an isolated COX deficiency in 101 children and COX deficiency combined with disturbances of other respiratory chain complexes in 79 children. Blood and cerebrospinal fluid lactate increased in 85% and 81% of examined cases, respectively. Pathogenic mutations in mitochondrial or nuclear DNA were established in 75 patients. Mutations in surfeit locus protein 1 gene (SURF1) were found in 47 children with Leigh syndrome; 2bp deletion 845-846delCT was found in 89% of independent alleles. Mutations in a mitochondrial copper-binding protein (SCO2) gene were found in nine children with encephalomyopathy and/or cardiomyopathy; all of them were homozygotes or heterozygotes for 1541G&gt;A mutation. Different mitochondrial DNA (mtDNA) deletion or depletion were found in nine children, mtDNA mutation 3243A&gt;G in six, mtDNA mutation 8363G&gt;A in two children with Leigh syndrome and mtDNA mutations 8344A&gt;G, and 9205-9206delTA in one child each. COX deficiency represents a heterogeneous group of diseases with unfavorable prognosis. Marked prevalence of two nuclear DNA mutations (845-846delCT in the SURF1 gene and 1541G&gt;A in the SCO2 gene) associated with COX deficiency in a Slavonic population suggests the existence of regional differences in the genetic basis of COX deficiency."	"Developmental changes of optical properties in neonates determined by near-infrared time-resolved spectroscopy. Near-infrared spectroscopy has been used for measurement of changes in cerebral Hb concentrations in infants to study cerebral oxygenation and hemodynamics. In this study, measurements by time-resolved spectroscopy (TRS) were performed in 22 neonates to estimate the values of light absorption coefficient and reduced scattering coefficient (mu'(s)), cerebral Hb oxygen saturation (SCO2), cerebral blood volume (CBV), and differential pathlength factor (DPF), and the relationships between postconceptional age and mu'(s), SCO2, CBV, and DPF were investigated. A portable three-wavelength TRS system with a probe attached to the head of the neonate was used. The mean mu'(s) values at 761, 795, and 835 nm in neonates were estimated to be (mean +/- SD) 6.46 +/- 1.21, 5.90 +/- 1.15 and 6.40 +/- 1.16/cm, respectively. There was a significant positive relationship between postconceptional age and mu'(s) at those three wavelengths. The mean SCO2 value was calculated to be 70.0 +/- 4.6%, and postconceptional age and SCO2 showed a negative linear relationship. The mean value of CBV was 2.31 +/- 0.56 mL/100 g. There was a significant positive relationship between postconceptional age and CBV. The mean DPF values at 761, 795, and 835 nm were estimated to be 4.58 +/- 0.41, 4.64 +/- 0.46, and 4.31 +/- 0.42, respectively. There was no relationship between postconceptional age and DPF at those three wavelengths. The results demonstrated that our near-infrared TRS method can be used to monitor mu'(s), SCO2, CBV, and DPF in the neonatal brain at the bedside in an intensive care unit."	"Human Sco1 and Sco2 function as copper-binding proteins. The function of human Sco1 and Sco2 is shown to be dependent on copper ion binding. Expression of soluble domains of human Sco1 and Sco2 either in bacteria or the yeast cytoplasm resulted in the recovery of copper-containing proteins. The metallation of human Sco1, but not Sco2, when expressed in the yeast cytoplasm is dependent on the co-expression of human Cox17. Two conserved cysteines and a histidyl residue, known to be important for both copper binding and in vivo function in yeast Sco1, are also critical for in vivo function of human Sco1 and Sco2. Human and yeast Sco proteins can bind either a single Cu(I) or Cu(II) ion. The Cu(II) site yields S-Cu(II) charge transfer transitions that are not bleached by weak reductants or chelators. The Cu(I) site exhibits trigonal geometry, whereas the Cu(II) site resembles a type II Cu(II) site with a higher coordination number. To identify additional potential ligands for the Cu(II) site, a series of mutant proteins with substitutions in conserved residues in the vicinity of the Cu(I) site were examined. Mutation of several conserved carboxylates did not alter either in vivo function or the presence of the Cu(II) chromophore. In contrast, replacement of Asp238 in human or yeast Sco1 abrogated the Cu(II) visible transitions and in yeast Sco1 attenuated Cu(II), but not Cu(I), binding. Both the mutant yeast and human proteins were nonfunctional, suggesting the importance of this aspartate for normal function. Taken together, these data suggest that both Cu(I) and Cu(II) binding are critical for normal Sco function."	"Tissue-specific cytochrome c oxidase assembly defects due to mutations in SCO2 and SURF1. The biogenesis of eukaryotic COX (cytochrome c oxidase) requires several accessory proteins in addition to structural subunits and prosthetic groups. We have analysed the assembly state of COX and SCO2 protein levels in various tissues of six patients with mutations in SCO2 and SURF1. SCO2 is a copper-binding protein presumably involved in formation of the Cu(A) centre of the COX2 subunit. The function of SURF1 is unknown. Immunoblot analysis of native gels demonstrated that COX holoenzyme is reduced to 10-20% in skeletal muscle and brain of SCO2 and SURF1 patients and to 10-30% in heart of SCO2 patients, whereas liver of SCO2 patients' contained normal holoenzyme levels. The steady-state levels of mutant SCO2 protein ranged from 0 to 20% in different SCO2 patient tissues. In addition, eight distinct COX subcomplexes and unassembled subunits were found, some of them identical with known assembly intermediates of the human enzyme. Heart, brain and skeletal muscle of SCO2 patients contained accumulated levels of the COX1.COX4.COX5A subcomplex, three COX1-containing subcomplexes, a COX4.COX5A subcomplex and two subcomplexes composed of only COX4 or COX5A. The accumulation of COX1.COX4.COX5A subcomplex, along with the virtual absence of free COX2, suggests that the lack of the Cu(A) centre may result in decreased stability of COX2. The appearance of COX4.COX5A subcomplex indicates that association of these nucleus-encoded subunits probably precedes their addition to COX1 during the assembly process. Finally, the consequences of SCO2 and SURF1 mutations suggest the existence of tissue-specific functional differences of these proteins that may serve different tissue-specific requirements for the regulation of COX biogenesis."	"The significance of baseline cerebral oxygen saturation in children undergoing congenital heart surgery. Despite recent significant improvement in outcome, children undergoing surgery for correction of congenital heart defects have a persistent and troublesome mortality rate and incidence of neurologic complications. Recent data suggest that some congenital heart defects are associated with abnormal brain development and with low cerebral blood flow. We hypothesized that some children with congenital heart disease have an abnormally low baseline (preoperative) cerebral oxygen saturation (ScO2). ScO2 was continuously recorded intraoperatively in 143 infants and children (age &lt;18 years) undergoing repair of congenital heart defects on cardiopulmonary bypass. Baseline saturation was obtained prior to induction of anesthesia. Preoperative and postoperative saturations were correlated with the patient's physiology (cyanotic vs. acyanotic, presence of ventricular- or arterial-level left-to-right shunts) and outcome. Patient age ranged from 2 days to 17 years (median 8 months). Mean baseline ScO2 was 64%. Preoperative ScO2 was lower in infants with left to right shunt physiology (P &lt; .01), but not in cyanotic infants without left-to-right shunts. Perioperative death was associated with baseline saturation less than 50%. Baseline ScO2 is lower in patients with left-to-right shunt physiology. Postoperative saturation is lower in patients with left-to-right shunt physiology and in cyanotic patients. Low baseline ScO2 predicts perioperative mortality in children with congenital heart disease. Measurement of ScO2 preoperatively will provide additional information for parent counseling, and preoperative optimization of ScO2 may improve outcome."	"Mutations in cytochrome assembly and periplasmic redox pathways in Bordetella pertussis. Transposon mutagenesis of Bordetella pertussis was used to discover mutations in the cytochrome c biogenesis pathway called system II. Using a tetramethyl-p-phenylenediamine cytochrome c oxidase screen, 27 oxidase-negative mutants were isolated and characterized. Nine mutants were still able to synthesize c-type cytochromes and possessed insertions in the genes for cytochrome c oxidase subunits (ctaC, -D, and -E), heme a biosynthesis (ctaB), assembly of cytochrome c oxidase (sco2), or ferrochelatase (hemZ). Eighteen mutants were unable to synthesize all c-type cytochromes. Seven of these had transposons in dipZ (dsbD), encoding the transmembrane thioreduction protein, and all seven mutants were corrected for cytochrome c assembly by exogenous dithiothreitol, which was consistent with the cytochrome c cysteinyl residues of the CXXCH motif requiring periplasmic reduction. The remaining 11 insertions were located in the ccsBA operon, suggesting that with the appropriate thiol-reducing environment, the CcsB and CcsA proteins comprise the entire system II biosynthetic pathway. Antiserum to CcsB was used to show that CcsB is absent in ccsA mutants, providing evidence for a stable CcsA-CcsB complex. No mutations were found in the genes necessary for disulfide bond formation (dsbA or dsbB). To examine whether the periplasmic disulfide bond pathway is required for cytochrome c biogenesis in B. pertussis, a targeted knockout was made in dsbB. The DsbB- mutant makes holocytochromes c like the wild type does and secretes and assembles the active periplasmic alkaline phosphatase. A dipZ mutant is not corrected by a dsbB mutation. Alternative mechanisms to oxidize disulfides in B. pertussis are analyzed and discussed."	"Congenital cataract, muscular hypotonia, developmental delay and sensorineural hearing loss associated with a defect in copper metabolism. Deficiencies of different proteins involved in copper metabolism have been reported to cause human diseases. Well-known syndromes, for example, are Menkes and Wilson diseases. Here we report a patient presenting with congenital cataract, severe muscular hypotonia, developmental delay, sensorineural hearing loss and cytochrome-c oxidase deficiency with repeatedly low copper and ceruloplasmin levels. These findings were suggestive of a copper metabolism disorder. In support of this, the patient's fibroblasts showed an increased copper uptake with normal retention. Detailed follow-up examinations were performed. Immunoblotting for several proteins including ATP7A (MNK or Menkes protein), ATP7B (Wilson protein) and SOD1 showed normal results, implying a copper metabolism defect other than Wilson or Menkes disease. Sequence analysis of ATOX1 and genes coding for proteins that are known to play a role in the mitochondrial copper metabolism (COI-III, SCO1, SCO2, COX11, COX17, COX19) revealed no mutations. Additional disease genes that have been associated with cytochrome-c oxidase deficiency were negative for mutations as well. As beneficial effects of copper histidinate supplementation have been reported in selected disorders of copper metabolism presenting with low serum copper and ceruloplasmin levels, we initiated a copper histidinate supplementation. Remarkable improvement of clinical symptoms was observed, with complete restoration of cytochrome-c oxidase activity in skeletal muscle."	"Quantum chemical modeling of CO oxidation by the active site of molybdenum CO dehydrogenase. The catalytic mechanism of molybdenum containing CO dehydrogenase has been studied using hybrid DFT methods with quite large chemical models. The recent high-resolution X-ray structure, showing the surprising presence of copper linked to molybdenum, was used as a starting point. A pathway was initially found with a low barrier for C-O bond formation and CO2 release. However, this pathway did not include the formation of any S-CO2 species, which had been suggested by experiments with an n-butylisocyanide inhibitor. When these SCO2 structures were studied they were found to lead to deep minima, making CO2 release much more difficult. A large effort was spent, including investigations of other spin states, varying the number of protons and electrons, adding water, etc., until a plausible pathway for S-C bond cleavage was found. In this pathway a water molecule is inserted in between molybdenum and the SCO2 group. Full catalytic cycles, including electron and proton transfers, are constructed both with and without S-C bond formation. When these pathways are extended to two full catalytic cycles it can be understood why the formation of the S-C bond actually makes catalysis faster, even though the individual step of CO2 release becomes much more difficult. These results agree well with experimental findings."	"Multistate outbreak of Listeria monocytogenes infection linked to delicatessen turkey meat. Despite a decreasing incidence of listeriosis in the United States, molecular subtyping has increased the number of recognized outbreaks. In September 2000, the New York City Department of Health identified a cluster of infections caused by Listeria monocytogenes isolates with identical molecular subtypes by pulsed-field gel electrophoresis (PFGE) and ribotyping. To determine the magnitude of the outbreak and identify risk factors for infection, we notified state health departments and conducted a case-control study. A case was defined as a patient or mother-infant pair infected with Listeria monocytogenes whose isolate yielded the outbreak PFGE pattern. Controls were patients infected with Listeria monocytogenes whose isolate yielded a different PFGE pattern. Patients were asked about food and drink consumed during the 30 days before the onset of illness. Between May and December 2000, there were 30 clinical isolates of Listeria monocytogenes with identical PFGE patterns identified in 11 US states. Cases of infection caused by these isolates were associated with 4 deaths and 3 miscarriages. A case-control study implicated sliced processed turkey from a delicatessen (Mantel-Haenszel odds ratio, 8.0; 95% confidence interval, 1.2-43.3). A traceback investigation identified a single processing plant as the likely source of the outbreak, and the company voluntarily recalled 16 million pounds of processed meat. The same plant had been identified in a Listeria contamination event that had occurred more than a decade previously. Prevention of persistent L. monocytogenes contamination in food processing plants presents a critical challenge to food safety professionals."	"Ortholog search of proteins involved in copper delivery to cytochrome C oxidase and functional analysis of paralogs and gene neighbors by genomic context. Cytochrome c oxidase (COX) is a multi-subunit enzyme of the mitochondrial respiratory chain. Delivery of metal cofactors to COX is essential for assembly, which represents a long-standing puzzle. The proteins Cox17, Sco1/2, and Cox11 are necessary for copper insertion into CuA and CuB redox centers of COX in eukaryotes. A genome-wide search in all prokaryotic genomes combined with genomic context reveals that only Sco and Cox11 have orthologs in prokaryotes. However, while Cox11 function is confined to COX assembly, Sco acts as a multifunctional linker connecting a variety of biological processes. Multifunctionality is achieved by gene duplication and paralogs. Neighbor genes of Sco paralogs often encode cuproenzymes and cytochrome c domains and, in some cases, Sco is fused to cytochrome c. This led us to suggest that cytochrome c might be relevant to Sco function and the two proteins might jointly be involved in COX assembly. Sco is also related, in terms of gene neighborhood and phylogenetic occurrence, to a newly detected protein involved in copper trafficking in bacteria and archaea, but with no sequence similarity to the mitochondrial copper chaperone Cox17. By linking the assembly system to the copper uptake system, Sco allows COX to face alternative copper trafficking pathways."	"Crystal structure of human SCO1: implications for redox signaling by a mitochondrial cytochrome c oxidase &quot;assembly&quot; protein. Human SCO1 and SCO2 are copper-binding proteins involved in the assembly of mitochondrial cytochrome c oxidase (COX). We have determined the crystal structure of the conserved, intermembrane space core portion of apo-hSCO1 to 2.8 A. It is similar to redox active proteins, including thioredoxins (Trx) and peroxiredoxins (Prx), with putative copper-binding ligands located at the same positions as the conserved catalytic residues in Trx and Prx. SCO1 does not have disulfide isomerization or peroxidase activity, but both hSCO1 and a sco1 null in yeast show extreme sensitivity to hydrogen peroxide. Of the six missense mutations in SCO1 and SCO2 associated with fatal mitochondrial disorders, one lies in a highly conserved exposed surface away from the copper-binding region, suggesting that this region is involved in protein-protein interactions. These data suggests that SCO functions not as a COX copper chaperone, but rather as a mitochondrial redox signaling molecule."	"Clinical, biochemical and molecular analyses of six patients with isolated cytochrome c oxidase deficiency due to mutations in the SCO2 gene. Cytochrome c oxidase (COX) deficiency represents a heterogeneous group of disorders. Numerous proteins are required for efficient COX assembly and maintenance. In 26 children with isolated COX deficiency, we studied mutations in the SCO2 gene, which is involved in the copper transport into the inner mitochondrial membrane, and we analysed the clinical and biochemical consequences of SCO2 mutations. The activities of respiratory chain complexes were measured spectrophotometrically in isolated mitochondria and/or crude cell extracts in all available tissues. Two-dimensional polyacrylamide electrophoresis (2D-PAGE) was used to separate the complexes and their subunits. The mutations were detected by sequencing and RFLP analysis. Mutations in the SCO2 gene were found in six children. Early neonatal onset of hypertrophic cardiomyopathy and encephalopathy were observed in one boy with compound heterozygous mutations C1280T and G1541A. In all five children with homozygous mutation G1541A, progressive encephalopathy developed between 2 and 6 mo of age. Isolated COX deficiency was found in the skeletal muscle, heart, liver and brain but not in fibroblasts. 2D-PAGE in the skeletal muscle showed markedly decreased amounts of all COX subunits. Our results suggest that mutations in the SCO2 gene are not rare, at least in our population. Although clinical symptoms may rely on the type of SCO2 mutation, the prognosis is unfavourable in all patients."	"Defective assembly of the respiratory chain. A functional respiratory chain is dependent on protein components encoded by both mtDNA and nuclear DNA. Isolated cytochrome c oxidase (COX) deficiency is often caused by mutations in nuclear genes regulating the assembly of the 13 protein subunits of this complex. The accompanying paper by Zeman and co-workers reports that mutations in SCO2 are common in infantile COX deficiency and are associated with a very poor prognosis. Molecular diagnosis is often feasible in patients with COX deficiency and particular attention should be paid to mutations in COX assembly genes."	"Activated carbon and tungsten oxide supported on activated carbon catalysts for toluene catalytic combustion. We have used activated carbon (AC) prepared from almond shells as a support for tungsten oxide to develop a series of WOx/AC catalysts for the catalytic combustion of toluene. We conducted the reaction between 300 and 350 degrees C, using a flow of 500 ppm of toluene in air and space velocity (GHSV) in the range 4000-7000 h(-1). Results show that AC used as a support is an appropriate material for removing toluene from dilute streams. By decreasing the GHSV and increasing the reaction temperature AC becomes a specific catalyst for the total toluene oxidation (SCO2 = 100%), but in less favorable conditions CO appears as reaction product and toluene-derivative compounds are retained inside the pores. WOx/AC catalysts are more selective to CO2 than AC due to the strong acidity of this oxide; this behavior improves with increased metal loading and reaction temperature and contact time. The catalytic performance depends on the nonstoichiometric tungsten oxide obtained during the pretreatment. In comparison with other supports the WOx/AC catalysts present, at low reaction temperatures, higher activity and selectivity than WO, supported on SiO2, TiO2, Al2O3, or Y zeolite. This is due to the hydrophobic character of the AC surface which prevents the adsorption of water produced from toluene combustion thus avoiding the deactivation of the active centers. However, the use of WOx/AC system is always restricted by its gasification temperature (around 400 degrees C), which limits the ability to increase the conversion values by increasing reaction temperatures."	"Mutations in respiratory chain complexes and human diseases. Literary evidence for a link between mutations in genes encoding respiratory chain components and human disorders is reviewed with particular emphasis on defects in respiratory complexes III and IV and their assembly factors. To date, mutations in genes encoding cytochrome band QP-C structural subunits of cytochrome bc1 complex; the BCS1L assembly factor for the bc1 complex; structural subunits I-III of cytochrome c oxidase; as well as the SURF-1, COX10, SCO1, and SCO2 assembly factors for cytochrome c oxidase, have been reported. These mutations are responsible for different neuromuscular and non-neuromuscular human diseases."	"Cerebral saturations trend with mixed venous saturations in patients undergoing extracorporeal life support. Cerebral saturation (SCO2) monitors are noninvasive tools that continuously measure saturations in the cerebral cortex, a predominately venous bed. The purpose of this study was to see if a trend existed between measurements of SCO2 and mixed venous saturation values (SVO2) for patients on extracorporeal life support (ECLS). Six patients required ECLS for cardiac failure after congenital cardiac surgery, and one patient required ECLS for pulmonary failure. Patients were divided into two groups, those without systemic/pulmonary venous mixing (n = 3, Group I) and those with mixing due to an intraatrial shunt or left ventricular vent (n = 4, Group II). The age of patients was 0.4 +/- 0.5 years (mean +/- SD), weight was 5.2 +/- 2.3 kg, and time on ECLS was 8.3 +/- 4.8 days. No significant abnormalities were seen on head imaging. A total of 786 paired data points were collected. Mean values were different; however, there was a significant trend between SCO2 and SVO2 for the entire sample (R2 = 0.66, p &lt; 0.001). Cerebral saturation trends follow mixed venous trends and, therefore, may be helpful in combination with other physical and laboratory findings in the care of the critically ill child."	"Copper homoeostasis in Drosophila melanogaster S2 cells. Copper homoeostasis was investigated in the Drosophila melanogaster S2 cell line to develop an insect model for the study of copper regulation. Real-time PCR studies have demonstrated expression in S2 cells of putative orthologues of human Cu regulatory genes involved in the uptake, transport, sequestration and efflux of Cu. Drosophila orthologues of the mammalian Cu chaperones, ATOX1 (a human orthologue of yeast ATX1), CCS (copper chaperone for superoxide dismutase), COX17 (a human orthologue of yeast COX17), and SCO1 and SCO2, did not significantly respond transcriptionally to increased Cu levels, whereas MtnA, MtnB and MtnD (Drosophila orthologues of human metallothioneins) were up-regulated by Cu in a time- and dose-dependent manner. To examine the effect on Cu homoeostasis, expression of several key copper homoeostasis genes was suppressed using double-stranded RNA interference. Suppression of the MTF-1 (metal-regulatory transcription factor 1), reduced both basal and Cu-induced gene expressions of MtnA, MtnB and MtnD, significantly reducing the tolerance of these cells to increased Cu. Suppression of either Ctr1A (a Drosophila orthologue of yeast CTR1) or Ctr1B significantly reduced Cu uptake from media, demonstrating that both these proteins function to transport Cu into S2 cells. Significantly, Cu induced Ctr1B gene expression, and this could be prevented by suppressing MTF-1, suggesting that Ctr1B might be involved in Cu detoxification. Suppression of DmATP7, the putative homologue of human Cu transporter genes ATP7A and ATP7B, significantly increased Cu accumulation, demonstrating that DmATP7 is essential for efflux of excess Cu. This work is consistent with previous studies in mammalian cells, validating S2 cells as a model system for studying Cu transport and identifying novel Cu regulatory mechanisms."	"Human SCO1 and SCO2 have independent, cooperative functions in copper delivery to cytochrome c oxidase. Human SCO1 and SCO2 are paralogous genes that code for metallochaperone proteins with essential, but poorly understood, roles in copper delivery to cytochrome c oxidase (COX). Mutations in these genes produce tissue-specific COX deficiencies associated with distinct clinical phenotypes, although both are ubiquitously expressed. To investigate the molecular function of the SCO proteins, we characterized the mitochondrial copper delivery pathway in SCO1 and SCO2 patient backgrounds. Immunoblot analysis of patient cell lines showed reduced levels of the mutant proteins, resulting in a defect in COX assembly, and the appearance of a common assembly intermediate. Overexpression of the metallochaperone COX17 rescued the COX deficiency in SCO2 patient cells but not in SCO1 patient cells. Overexpression of either wild-type SCO protein in the reciprocal patient background resulted in a dominant-negative phenotype, suggesting a physical interaction between SCO1 and SCO2. Chimeric proteins, constructed from the C-terminal copper-binding and N-terminal matrix domains of the two SCO proteins failed to complement the COX deficiency in either patient background, but mapped the dominant-negative phenotype in the SCO2 background to the N-terminal domain of SCO1, the most divergent part of the two SCO proteins. Our results demonstrate that the human SCO proteins have non-overlapping, cooperative functions in mitochondrial copper delivery. Size exclusion chromatography suggests that both the proteins function as homodimers. We propose a model in which COX17 delivers copper to SCO2, which in turn transfers it directly to the CuA site at an early stage of COX assembly in a reaction that is facilitated by SCO1."	"Association of mutations in SCO2, a cytochrome c oxidase assembly gene, with early fetal lethality. SCO2 is a cytochrome c oxidase (COX) assembly gene that encodes a mitochondrial inner membrane protein that probably functions as a copper transporter. Mutations in SCO2 have been associated with severe COX deficiency and early-onset fatal infantile hypertrophic cardiomyopathy, encephalopathy, and neurogenic muscle atrophy. Fetal wastage has not been described in association with mutations of SCO2. To investigate a case of early spontaneous abortion in a family carrying mutations in SCO2. Case report. Patients Spontaneous abortion in the first trimester occurred in a woman whose first pregnancy had also resulted in a miscarriage in the first trimester and whose only child had died at 53 days of life from cardioencephalomyopathy. This child was a compound heterozygote for mutations in SCO2, and her parents were heterozygous for each mutation. Mutations in the abortus by sequencing the SCO2 gene and confirmation of the point mutations as determined by restriction fragment length polymorphism analysis. As in the previous affected child, we found a missense mutation (E140K) and a nonsense mutation (Q53X) in the abortus. The typical clinical presentation of SCO2 mutations is severe, rapidly progressive hypertrophic cardiomyopathy that presents in the neonatal period and is often associated with respiratory difficulties, metabolic acidosis, and hypotonia. The experience in this family suggests that mutations in SCO2 may also be associated with early spontaneous abortions and fetal wastage."	"Multidrug-resistant Salmonella Typhimurium infection from milk contaminated after pasteurization. An outbreak of multidrug-resistant Salmonella enterica serotype Typhimurium infections occurred in Pennsylvania and New Jersey. A case-control study implicated pasteurized milk from a dairy, and an inspection indicated the potential for contamination after pasteurization. Dairy cattle are the likely reservoir, and milk may be an important vehicle of Salmonella transmission to humans."	"Genetic defects of cytochrome c oxidase assembly. Cytochrome c oxidase (COX), the terminal enzyme of the mitochondrial respiratory chain, is one of the key functional and regulatory sites of the mammalian energy metabolism. Owing to the importance of the enzyme, pathogenetic mutations affecting COX frequently result in severe, often fatal metabolic disorders. No satisfactory therapy is currently available so that the treatment remains largely symptomatic and does not improve the course of the disease. While only few genetic defects of COX are caused by mutations in mitochondrial genome, during the last five years a large number of pathogenetic mutations in nuclear genes have been discovered. All these mutations are located in genes encoding COX-specific assembly proteins including SURF1, SCO1, SCO2, COX10, and COX15. Despite the identification of increasing number of mutations, their precise etiopathogenetic mechanisms, which are necessary for the development of future therapeutic protocols, still remain to be elucidated. This review summarizes recent developments, including our efforts in elucidation of the molecular basis of human mitochondrial diseases due to specific defects of COX with special focus on SURF1 assembly protein."	"Intracellular copper transport in mammals. Copper is an essential cofactor for approximately a dozen cuproenzymes in which copper is bound to specific amino acid residues in an active site. However, free cuprous ions react readily with hydrogen peroxide to yield the deleterious hydroxyl radical. Therefore, copper homeostasis is regulated very tightly, and unbound copper is extremely low in concentration. Copper imported by the plasma membrane transport protein Ctr1 rapidly binds to intracellular copper chaperone proteins. Atox1 delivers copper to the secretory pathway and docks with either copper-transporting ATPase ATP7B in the liver or ATP7A in other cells. ATP7B directs copper to plasma ceruloplasmin or to biliary excretion in concert with a newly discovered chaperone, Murr1, the protein missing in canine copper toxicosis. ATP7A directs copper within the transgolgi network to the proteins dopamine beta-monooxgenase, peptidylglycine alpha-amidating monooxygenase, lysyl oxidase, and tyrosinase, depending on the cell type. CCS is the copper chaperone for Cu,Zn-superoxide dismutase; it delivers copper in the cytoplasm and intermitochondrial space. Cox17 delivers copper to mitochondria to cytochrome c oxidase via the chaperones Cox11, Sco1, and Sco2. Other copper chaperones may exist and might include metallothionein and amyloid precursor protein (APP). Genetic and nutritional studies have illustrated the essential nature of these copper-binding proteins; alterations in their levels are associated with severe pathology."	"Novel SCO2 mutation (G1521A) presenting as a spinal muscular atrophy type I phenotype. Rare cases of suspected spinal muscular atrophy (SMA) have been found to have cytochrome c oxidase (COX) deficiency. To date, four cases with SMA features have been reported in children with mutations in the synthesis of cytochrome oxidase 2 (SCO2) gene. We report a male neonate who was born hypotonic, with persistent lactic acidosis, spontaneous activity with EMG testing, development of respiratory distress in the first few hours of life, and died at 30 days of age with progressive cardiomyopathy. Testing for survival motor neurone (smn) and NAIP deletions were negative and a skeletal muscle biopsy showed neurogenic features with severe reductions of COX enzymatic and histochemical staining intensity. Post-mortem muscle, heart, and liver biopsies showed severe, moderate, and mild reductions in COX activity, respectively, with parallel findings in the protein content for the mitochondrial DNA (COII) and nuclear DNA (COIV) encoded subunits. DNA sequencing of exon 2 of the SCO2 gene revealed compound heterozygosity with mutations at G1541A (common mutation, E140K) and also at a novel site in the copper binding region (G1521A in the current case (converting a highly conserved cysteine to tyrosine [corrected] (C133Y) [corrected]); mother heterozygous for G1521A; and father heterozygous for G1541A). This case provides strong support that SCO2 mutations can result in neonatal hypotonia with an SMA 1 phenotype. SCO2 mutations should be screened in suspected SMA cases with normal smn mutation analysis and any one of; cardiomyopathy, lactic acidosis, or COX deficiency in muscle."	"Human recombinant mutated forms of the mitochondrial COX assembly Sco2 protein differ from wild-type in physical state and copper binding capacity. The human Sco2 protein is a cytochrome c oxidase assembly protein that participates in mitochondrial copper pathway, acting downstream of Cox17 protein. In a previous work, we detected mutations in the human SCO2 gene in three unrelated infants with fatal cardioencephalomyopathy and COX deficiency. In this study, full-length processed recombinant wild-type and two mutated forms of hSco2p (w/t-rhSco2p, E140K-rhSco2p, and S225F-rhSco2p) were produced in bacteria as soluble recombinant peptides for the first time and evaluated for differences in their physical state and ability to bind copper. Our data indicate the following: (a) w/t-rhSco2p and S225F-rhSco2p were found to be in a monomeric form in contrast to E140K-rhSco2p that was in a major non-reducible dimer and a minor monomer form; (b) wild-type and mutated rhSco2p exhibited clear differences in their physical conformational state, as shown by circular dichroism and thermal denaturation analyses; (c) copper binding studies showed that E140K-rhSco2p bound markedly less copper while S225F-rhSco2p more than expected as compared to amount of the copper bound with w/t-rhSco2p. rhCox17p served as positive control experiment. These data indicate that S225F and E140K mutations found in the SCO2 gene derived from patients alter the physical conformational state of encoded hSco2p that may disturb the normal copper transport pathway in mitochondria. These findings are valuable for understanding the molecular basis of fatal cardioencephalomyopathy and COX deficiency and for designing appropriate pharmacological interventions."	"Reversion of hypertrophic cardiomyopathy in a patient with deficiency of the mitochondrial copper binding protein Sco2: is there a potential effect of copper? Mutations in Sco2, a protein involved in copper trafficking to the terminal enzyme of the respiratory chain, cytochrome c oxidase, results in infantile hypertrophic cardioencephalomyopathy. We have recently shown that copper-histidine (Cu-his) supplementation of Sco2-deficient myoblasts rescues COX activity in vitro. Here, we report a patient with SCO 2 mutations and with resolution of severe hypertrophic cardiomyopathy. Weighing up the evidence, the most likely explanation for the improved cardiac function in this patient was the subcutaneous application of Cu-his."	"New approaches to the treatment of mitochondrial disorders. Mitochondrial disorders are among the most common inherited metabolic diseases and the issue of treatment arises on a regular basis. There is no established treatment for mitochondrial disorders and current management is largely supportive, but recent advances in our understanding of the pathophysiology provide hope for novel treatments. Patients with mitochondrial myopathy due to mutations of mitochondrial DNA (mtDNA) may benefit from treatments that move normal mitochondrial genomes from the muscle satellite cells into skeletal muscle, but there are concerns about the long-term effects of this approach. A greater understanding of the pathophysiology of a number of nuclear genetic mitochondrial disorders suggests new avenues for treatment (such as copper-histidine in children with SCO2 gene mutations, and strategies modifying intra-mitochondrial nucleoside pools in the various disorders of mtDNA maintenance). A number of different strategies are also being explored at the molecular level, including the use of antigenomic molecules to mutated mtDNA and the allotropic expression of mutated mtDNA genes within the cell nucleus. Nuclear transfer techniques also provide hope for women at risk of transmitting pathogenic mtDNA mutations."	"Genotypes and clinical phenotypes in children with cytochrome-c oxidase deficiency. Cytochrome c oxidase (COX) deficiency has been associated with a wide spectrum of clinical features and may be caused by mutations in different genes of both the mitochondrial and the nuclear DNA. In an attempt to correlate the clinical phenotype with the genotype in 16 childhood cases, mtDNA was analysed for deletion, depletion, and mutations in the three genes encoding COX subunits and the 22 tRNA genes. Furthermore, nuclear DNA was analysed for mutations in the SURF1, SCO2, COX10, and COX17 genes and cases with mtDNA depletion were analysed for mutations in the TK2 gene. SURF1-mutations were identified in three out of four cases with Leigh syndrome while a mutation in the mitochondrial tRNA (trp) gene was identified in the fourth. One case with mtDNA depletion had mutations in the TK2 gene. In two cases with leukoencephalopathy, one case with encephalopathy, five cases with fatal infantile myopathy and cardiomyopathy, two cases with benign infantile myopathy, and one case with mtDNA depletion, no mutations were identified. We conclude that COX deficiency in childhood should be suspected in a wide range of clinical settings and although an increasing number of genetic defects have been identified, the underlying mutations remain unclear in the majority of the cases."	"Transmission of the severe acute respiratory syndrome on aircraft. The severe acute respiratory syndrome (SARS) spread rapidly around the world, largely because persons infected with the SARS-associated coronavirus (SARS-CoV) traveled on aircraft to distant cities. Although many infected persons traveled on commercial aircraft, the risk, if any, of in-flight transmission is unknown. We attempted to interview passengers and crew members at least 10 days after they had taken one of three flights that transported a patient or patients with SARS. All index patients met the criteria of the World Health Organization for a probable case of SARS, and index or secondary cases were confirmed to be positive for SARS-CoV on reverse-transcriptase polymerase chain reaction or serologic testing. After one flight carrying a symptomatic person and 119 other persons, laboratory-confirmed SARS developed in 16 persons, 2 others were given diagnoses of probable SARS, and 4 were reported to have SARS but could not be interviewed. Among the 22 persons with illness, the mean time from the flight to the onset of symptoms was four days (range, two to eight), and there were no recognized exposures to patients with SARS before or after the flight. Illness in passengers was related to the physical proximity to the index patient, with illness reported in 8 of the 23 persons who were seated in the three rows in front of the index patient, as compared with 10 of the 88 persons who were seated elsewhere (relative risk, 3.1; 95 percent confidence interval, 1.4 to 6.9). In contrast, another flight carrying four symptomatic persons resulted in transmission to at most one other person, and no illness was documented in passengers on the flight that carried a person who had presymptomatic SARS. Transmission of SARS may occur on an aircraft when infected persons fly during the symptomatic phase of illness. Measures to reduce the risk of transmission are warranted."	"Cox17 is functional when tethered to the mitochondrial inner membrane. Cox17 is an essential protein in the assembly of cytochrome c oxidase within the mitochondrion. Cox17 is implicated in providing copper ions for formation of CuA and CuB sites in the oxidase complex. To address whether Cox17 is functional in shuttling copper ions to the mitochondrion, Cox17 was tethered to the mitochondrial inner membrane by a fusion to the transmembrane domain of the inner membrane protein, Sco2. The copper-binding domain of Sco2 that projects into the inter-mitochondrial membrane space was replaced with Cox17. The Sco2/Cox17 fusion protein containing the mitochondrial import sequence and transmembrane segment of Sco2 is exclusively localized within the mitochondrion. The Sco2/Cox17 protein restores respiratory growth and normal cytochrome oxidase activity in cox17Delta cells. These studies suggest that the function of Cox17 is confined to the mitochondrial intermembrane space. Domain mapping of yeast Cox17 reveals that the carboxyl-terminal segment of the protein has a function within the intermembrane space that is independent of copper ion binding. The essential C-terminal function of Cox17 maps to a candidate amphipathic helix that is important for mitochondrial uptake and retention of the Cox17 protein. This motif can be spatially separated from the N-terminal copper-binding functional motif. Possible roles of the C-terminal motif are discussed."	"Solution structure of Sco1: a thioredoxin-like protein Involved in cytochrome c oxidase assembly. Sco1, a protein required for the proper assembly of cytochrome c oxidase, has a soluble domain anchored to the cytoplasmic membrane through a single transmembrane segment. The solution structure of the soluble part of apoSco1 from Bacillus subtilis has been solved by NMR and the internal mobility characterized. Its fold places Sco1 in a distinct subgroup of the functionally unrelated thioredoxin proteins. In vitro Sco1 binds copper(I) through a CXXXCP motif and possibly His 135 and copper(II) in two different species, thus suggesting that copper(II) is adventitious more than physiological. The Sco1 structure represents the first structure of this class of proteins, present in a variety of eukaryotic and bacterial organisms, and elucidates a link between copper trafficking proteins and thioredoxins. The availability of the structure has allowed us to model the homologs Sco1 and Sco2 from S. cerevisiae and to discuss the physiological role of the Sco family."	"Mutations in COX10 result in a defect in mitochondrial heme A biosynthesis and account for multiple, early-onset clinical phenotypes associated with isolated COX deficiency. Deficiencies in the activity of cytochrome c oxidase (COX) are an important cause of autosomal recessive respiratory chain disorders. Patients with isolated COX deficiency are clinically and genetically heterogeneous, and mutations in several different assembly factors have been found to cause specific clinical phenotypes. Two of the most common clinical presentations, Leigh Syndrome and hypertrophic cardiomyopathy, have so far only been associated with mutations in SURF1 or SCO2 and COX15, respectively. Here we show that expression of COX10 from a retroviral vector complements the COX deficiency in a patient with anemia and Leigh Syndrome, and in a patient with anemia, sensorineural deafness and fatal infantile hypertrophic cardiomyopathy. A partial rescue was also obtained following microcell-mediated transfer of mouse chromosomes into patient fibroblasts. COX10 functions in the first step of the mitochondrial heme A biosynthetic pathway, catalyzing the conversion of protoheme (heme B) to heme O via the farnesylation of a vinyl group at position C2. Heme A content was reduced in mitochondria from patient muscle and fibroblasts in proportion to the reduction in COX enzyme activity and the amount of fully assembled enzyme. Mutation analysis of COX10 identified four different missense alleles, predicting amino acid substitutions at evolutionarily conserved residues. A topological model places these residues in regions of the protein shown to have important catalytic functions by mutation analysis of a prokaryotic ortholog. Mutations in COX10 have previously been reported in a single family with tubulopathy and leukodystrophy. This study shows that mutations in this gene can cause nearly the full range of clinical phenotypes associated with early onset isolated COX deficiency."	"Mutation screening in patients with isolated cytochrome c oxidase deficiency. Cytochrome c oxidase (COX) deficiency has been associated with a variety of clinical conditions and can be due to mutations in nuclear or mitochondrial genes. Despite recent progress in our understanding of the molecular bases of COX deficiency, the genetic defect remains elusive in many cases. We performed mutation screening in 30 patients with biochemical evidence of isolated COX deficiency and heterogeneous clinical phenotypes. Sixteen patients had various forms of encephalomyopathy, and six of these had the neuroradiological features of Leigh syndrome. Four patients had encephalohepatopathy, six had hypertrophic cardiomyopathy, and four had other phenotypes. We studied the three mtDNA genes encoding COX subunits, the 22 mtDNA tRNA genes, and seven COX assembly genes: SCO1, SCO2, SURF1, COX10, COX11, COX15, and COX17. We report two novel pathogenic SURF1 mutations in a patient with Leigh syndrome and one novel SCO2 mutation in a patient with hypertrophic cardiomyopathy. These data show that heterogeneous clinical phenotypes are associated with COX deficiency, that mutations in mtDNA COX genes are rare, and that mutations in additional genes remain to be identified."	"Mutations in COX15 produce a defect in the mitochondrial heme biosynthetic pathway, causing early-onset fatal hypertrophic cardiomyopathy. Deficiencies in the activity of cytochrome c oxidase (COX), the terminal enzyme in the respiratory chain, are a frequent cause of autosomal recessive mitochondrial disease in infants. These patients are clinically and genetically heterogeneous, and all defects so far identified in this group have been found in genes coding for accessory proteins that play important roles in the assembly of the COX holoenzyme complex. Many patients, however, remain without a molecular diagnosis. We have used a panel of retroviral vectors expressing human COX assembly factors in these patients to identify the molecular basis for the COX deficiency by functional complementation. Here we show that overexpression of COX15, a protein involved in the synthesis of heme A, the heme prosthetic group for COX, can functionally complement the isolated COX deficiency in fibroblasts from a patient with fatal, infantile hypertrophic cardiomyopathy. Mutation analysis of COX15 in the patient identified a missense mutation (C700T) on one allele, changing a conserved arginine to tryptophan (R217W), and a splice-site mutation in intron 3 on the other allele (C447-3G), resulting in a deletion of exon 4. This splicing error introduces a frameshift and a premature stop codon, resulting in an unstable mRNA and, likely, a null allele. Mitochondrial heme A content was reduced in the patient's heart and fibroblast mitochondria, and levels of heme O were increased in the patient's heart. COX activity and the total amount of fully assembled enzyme were reduced by 50%-70% in patient fibroblasts. Expression of COX15 increased heme A content and rescued COX activity. These results suggest that reduced availability of heme A stalls the assembly of COX. This study establishes COX15 as an additional cause, along with SCO2, of fatal infantile, hypertrophic cardiomyopathy associated with isolated COX deficiency."	"Sigmoid colonic reflectance pulse oximetry and tonometry in a porcine experimental hypoperfusion shock model. The objective of the present study was to determine if colonic endoluminal mucosal oxygen saturation, as determined by reflectance pulse oximetry, is an appropriate method to monitor colonic ischemia produced by a gradual partial constriction of the aorta in a porcine experimental model. Piglets were anesthetized and mechanically ventilated. A Nellcor RS-10 reflectance pulse oximeter probe was attached to a Foley balloon catheter and passed transanally to record the oxygen saturation of the sigmoid colonic mucosa. For comparison, a tonometry catheter was introduced into the sigmoid colon. Hypoperfusion shock was induced by partial gradual constriction of the aorta. The same measurements but no intervention was performed in the control group. During one-third reduction of the aortic blood flow, the plethysmographic signal disappeared suddenly and the sigmoid colonic mucosa oxygen saturation (ScO2) measurements showed zero in seven out of the eight pigs. During two-thirds flow reduction, no plethysmographic signals were observed in any of the piglets. During the reperfusion period, ScO2 measurements with a good plethysmographic signal were obtained immediately after complete release of the aortic constriction in all pigs. Significantly decreased intramucosal pH and increased difference between the arterial and regional PCO2 (PCO2 gap) were observed during two-thirds blood flow reduction. In contrast to the results of previous investigations, the sigmoid colonic pulse oximetry was not useful because the method proved to be overly sensitive and non-linear in relation to regional blood flow."	"Defects in mitochondrial respiratory complexes III and IV, and human pathologies. Here, relationships between alterations in tissue-specific content, protein structure, activity, and/or assembly of respiratory complexes III and IV induced by mutations in corresponding genes and various human pathologies are reviewed. Cytochrome bc(1) complex and cytochrome c oxidase (COX) deficiencies have been detected in a heterogeneous group of neuromuscular and non-neuromuscular diseases in childhood and adulthood, presenting a number of clinical phenotypes of variable severity. Such disorders can be caused by mutations located either in mitochondrial genes or in nuclear genes encoding structural subunits of the complexes or corresponding assembly factors/chaperones. Of the defects in mitochondrial DNA genes, mutations in cytochrome b subunit of complex III, and in structural subunits I-III of COX have been described to date. As to defects in nuclear DNA genes, mutations in genes encoding the complexes assembly factors such as the BCS1L protein for complex III; and SURF-1, SCO1, SCO2, and COX10 for complex IV have been identified so far."	"Molecular characterization of Saccharomyces cerevisiae Sco2p reveals a high degree of redundancy with Sco1p. The Saccharomyces cerevisiae gene SCO1 has been shown to play an essential role in the transfer of copper to the Cu(A)-centre of the mitochondrial cytochrome c oxidase subunit Cox2p. By contrast, the function of Sco2p, the gene product of the highly homologous SCO2 gene, remains to be elucidated. Deletion of the SCO2 gene does not affect growth on a variety of carbon sources, including glycerol, lactate and ethanol. We report here, that Sco2p is anchored in the mitochondrial membrane by a single transmembrane segment and displays a similar tripartite structure as Sco1p. Most parts of Sco1p can be replaced by the homologous parts of Sco2p without loss of function. A short stretch of 13 amino acids, immediately adjacent to the transmembrane region, is crucial for Sco1p function and cannot be replaced by its Sco2p counterpart. We propose that this region is relevant for the correct spatial orientation of the C-terminal part of the protein. Immunoprecipitation and in vitro binding assays show that Sco2p interacts with the C-terminal portion of Cox2p. This interaction is neither dependent on bound copper ions nor on the presence of Sco1p. Furthermore we report on in vitro binding assays which show that Sco2p can form homomeric complexes, but also heteromeric complexes with Sco1p. Our data suggest that Sco2p is involved in the transfer of copper to Cox2p, but that this activity is insufficient for oxidative growth and not able to substitute for Sco1p activity."	"Cerebral oxygen saturation assessed by near-infrared spectroscopy during coronary artery bypass grafting and early postoperative cognitive function. Cerebral oxygen saturation (ScO2) can be assessed by near-infrared spectroscopy. We investigated the correlation between early postoperative cognitive performance and intraoperative ScO2 in a prospective observational setting. Forty-seven patients undergoing elective coronary artery bypass grafting with cardiopulmonary bypass underwent preoperative and postoperative neuropsychological evaluation. Patients were classified according to the presence or absence of postoperative cognitive dysfunction. Cognitive dysfunction was defined as an individual test score decrease of more than one standard deviation in two or more of the five tests. During operation ScO2 was continuously measured using an INVOS 4100 device. Cerebral oxygen saturation values were analyzed with reference to two cutoff points, which should reflect low cerebral oxygenation: an ScO2 less than 40% and a drop of more than 25% from individual baseline values. The duration and extent of ScO2 values below these two cutoff points was compared between the patients with and without cognitive dysfunction. Sixteen patients (34%) showed postoperative cognitive dysfunction. Cerebral oxygen saturation values less than 40% occurred in 17 patients for a mean (+/- standard error of the mean) of 17.2 +/- 6.5 minutes, whereas a decrease of more than 25% from baseline values occurred in 37 patients for 52.7 +/- 7.8 minutes. The duration and extent below the two cutoff ScO2 values was similar in patients with and without cognitive dysfunction. Intraoperative regional ScO2 as assessed by near-infrared spectroscopy with the INVOS 4100 device is not predictive for postoperative cognitive performance in patients undergoing coronary artery bypass grafting with cardiopulmonary bypass."	"Agreement of SpO2, SaO2 and ScO2 in anesthetized cynomolgus monkeys (Macaca fascicularis). To assess the agreement between three measurements of arterial oxygen saturation (SpO2, SaO2 and ScO2) in anesthetized cynomolgus monkeys. Prospective study. Eleven mature, male cynomolgus monkeys (Macaca fasicularis). Monkeys were anesthetized with intramuscular ketamine followed by intravenous propofol. The trachea of each was intubated and the lungs ventilated. Arterial oxygen saturation was measured with a Nonin 8500 V pulse oximeter, using a lingual clip on the cheek. Arterial blood samples were taken from an indwelling catheter. Inspired oxygen concentration was varied from 12 to 20%, and 88 paired arterial blood samples and saturation measurements were taken. Arterial oxygen saturation in the blood samples was measured using a cooximeter. The saturation was also calculated from the arterial oxygen tension using the Adair equation. The results were compared using Bland and Altman's method. The pulse oximeter readings were 2.7% higher than that of the cooximeter, with a limit of agreement of -3.9 to 9.3%. The pulse oximeter readings were 1.8% higher than the calculated saturation, with a limit of agreement of -6.5% to 10.1%. The cooximeter readings were 0.9% lower than the calculated saturation, with a limit of agreement of -5.6% to 3.8%. The agreement between SpO2 and other measurements of arterial oxygen saturation in this study is typical for this technique. The bias and limits of agreement are consistent with reports in other species. The Nonin 8500 V is a useful pulse oximeter for clinical use in primates."	"Cytochrome c oxidase deficiency due to a novel SCO2 mutation mimics Werdnig-Hoffmann disease. Mutations in the SCO2 gene have been associated with fatal cardioencephalomyopathy. To report a novel SCO2 mutation with prominent spinal cord involvement mimicking spinal muscular atrophy (Werdnig-Hoffmann disease). An infant girl presented at birth with generalized weakness, hypotonia, and lactic acidosis. At 1 month of age she developed hypertrophic cardiomyopathy and died of heart failure 1 month later. Neuroradiological studies were unremarkable. Muscle biopsy specimens showed groups of atrophic and hypertrophic fibers, but mutation screening of the SMN gene was negative. Histochemical and biochemical studies of respiratory chain complexes were performed, and the whole coding region of the SCO2 gene was sequenced. Findings from muscle histochemistry studies showed virtually undetectable cytochrome c oxidase activity, but normal succinate dehydrogenase reaction. Biochemical analysis in muscle confirmed a severe isolated cytochrome c oxidase deficiency. Pathologic findings of the brain were unremarkable, but the ventral horns of the spinal cord showed moderate-to-severe loss of motor neurons and astrocytosis. Sequencing of the SCO2 gene showed the common E140K mutation, and a novel 10 base-pair duplication of nucleotides 1302 to 1311, which disrupts the reading frame of the messenger RNA and gives rise to a truncated protein. The SCO2 mutations should be considered in the differential diagnosis of children with spinal muscular atrophy without mutations in the SMN gene."	"A waterborne outbreak of Escherichia coli O157:H7 infections and hemolytic uremic syndrome: implications for rural water systems. In the summer of 1998, a large outbreak of Escherichia coli O157:H7 infections occurred in Alpine, Wyoming. We identified 157 ill persons; stool from 71 (45%) yielded E. coli O157:H7. In two cohort studies, illness was significantly associated with drinking municipal water (town residents: adjusted odds ratio=10.1, 95% confidence intervals [CI]=1.8-56.4; visitors attending family reunion: relative risk=9.0, 95% CI=1.3-63.3). The unchlorinated water supply had microbiologic evidence of fecal organisms and the potential for chronic contamination with surface water. Among persons exposed to water, the attack rate was significantly lower in town residents than in visitors (23% vs. 50%, p&lt;0.01) and decreased with increasing age. The lower attack rate among exposed residents, especially adults, is consistent with the acquisition of partial immunity following long-term exposure. Serologic data, although limited, may support this finding. Contamination of small, unprotected water systems may be an increasing public health risk."	"Copper supplementation restores cytochrome c oxidase activity in cultured cells from patients with SCO2 mutations. Human SCO2 is a nuclear-encoded Cu-binding protein, presumed to be responsible for the insertion of Cu into the mitochondrial cytochrome c oxidase (COX) holoenzyme. Mutations in SCO2 are associated with cardioencephalomyopathy and COX deficiency. Studies in yeast and bacteria have shown that Cu supplementation can restore COX activity in cells harbouring mutations in genes involving Cu transport. Therefore we investigated whether Cu supplementation could restore COX activity in cultured cells from patients with SCO2 mutations. Our data demonstrate that the COX deficiency observed in fibroblasts, myoblasts and myotubes from patients with SCO2 mutations can be restored to almost normal levels by the addition of CuCl(2) to the growth medium."	"Near-infrared spectroscopy cerebral oxygen saturation thresholds for hypoxia-ischemia in piglets. Detection of cerebral hypoxia-ischemia remains problematic in neonates. Near-infrared spectroscopy, a noninvasive bedside technology has potential, although thresholds for cerebral hypoxia-ischemia have not been defined. This study determined hypoxic-ischemic thresholds for cerebral oxygen saturation (SCO2) in terms of EEG, brain ATP, and lactate concentrations, and compared these values with CBF and sagittal sinus oxygen saturation (SVO2). Sixty anesthetized piglets were equipped with near-infrared spectroscopy, EEG, laser-Doppler flowmetry, and a sagittal sinus catheter. After baseline, SCO2 levels of less than 20%, 20% to 29%, 30% to 39%, 40% to 49%, 50% to 59%, 60% to 79%, or 80% or greater were recorded for 30 minutes of normoxic normocapnia, hypercapnic hyperoxia, or bilateral carotid occlusion with or without arterial hypoxia. Brain ATP and lactate concentrations were measured biochemically. Logistic and linear regression determined the SCO2, CBF, and SVO2 thresholds for abnormal EEG, ATP, and lactate findings. Baseline SCO2 was 68 + 5%. The SCO2 thresholds for increased lactate, minor and major EEG change, and decreased ATP were 44 +/- 1%, 42 +/- 5%, 37 +/- 1%, and 33 +/- 1%. The SCO2 correlated linearly with SVO2 (r = 0.98) and CBF (r = 0.89), with corresponding SVO2 thresholds of 23%, 20%, 13%, and 8%, and CBF thresholds (% baseline) of 56%, 52%, 42%, and 36%. Thus, cerebral hypoxia-ischemia near-infrared spectroscopy thresholds for functional impairment are SCO2 33% to 44%, a range that is well below baseline SCO2 of 68%, suggesting a buffer between normal and dysfunction that also exists for CBF and SVO2."	"Cytochrome c oxidase deficiency due to mutations in SCO2, encoding a mitochondrial copper-binding protein, is rescued by copper in human myoblasts. Mutations in SCO2, a cytochrome c oxidase (COX) assembly gene, have been reported in nine infants with early onset fatal cardioencephalomyopathy and a severe COX deficiency in striated muscle. Studies on a yeast homolog have suggested that human Sco2 acts as a copper chaperone, transporting copper to the Cu(A) site on the Cox II subunit, but the mechanism of action remains unclear. To investigate the molecular basis of pathogenesis of Sco2 defects in humans we performed genetic and biochemical studies on tissues, myoblasts and fibroblasts from affected patients, as well as on a recombinant human C-terminal Sco2 segment (22 kDa), bearing the putative CxxxC metal-binding motif. Recombinant Sco2 was shown to bind copper with a 1:1 stoichiometry and to form homomeric complexes in vitro, independent of the metal-binding motif. Immunohistochemistry using antibodies directed against different COX subunits showed a marked tissue-specific decrease in the Cox II/III subunits that form part of the catalytic core, consistent with the differential tissue involvement, but a more uniform distribution of Cox Vab, a nuclear-encoded subunit. Sco2 was severely reduced in patient fibroblasts and myoblasts by immunoblot analysis. Patient fibroblasts showed increased (64)Cu uptake but normal retention values and, consistent with this, the copper concentration was four times higher in Sco2-deficient myoblasts than in controls. COX activity in patient myoblasts was completely rescued by transduction with a retroviral vector expressing the human SCO2 coding sequence, and more interestingly by addition of copper-histidine (300 microM) to the culture medium. Whether the latter is accomplished by the very low residual levels of Sco2 in the patient cells, direct addition of copper to the Cu(A) site, or by another copper-binding protein remains unknown. Whatever the mechanism, this result suggests a possible therapy for the early treatment of this fatal infantile disease."	"Homozygosity (E140K) in SCO2 causes delayed infantile onset of cardiomyopathy and neuropathy. To report three unrelated infants with a distinctive phenotype of Leigh-like syndrome, neurogenic muscular atrophy, and hypertrophic obstructive cardiomyopathy. The patients all had a homozygous missense mutation in SCO2. SCO2 encodes a mitochondrial inner membrane protein, thought to function as a copper transporter to cytochrome c oxidase (COX), the terminal enzyme of the respiratory chain. Mutations in SCO2 have been described in patients with severe COX deficiency and early onset fatal infantile hypertrophic cardioencephalomyopathy. All patients so far reported are compound heterozygotes for a missense mutation (E140K) near the predicted CxxxC metal binding motif; however, recent functional studies of the homologous mutation in yeast failed to demonstrate an effect on respiration. Here we present clinical, biochemical, morphologic, functional, MRI, and MRS data in two infants, and a short report in an additional patient, all carrying a homozygous G1541A transition (E140K). The disease onset and symptoms differed significantly from those in compound heterozygotes. MRI and muscle morphology demonstrated an age-dependent progression of disease with predominant involvement of white matter, late appearance of basal ganglia lesions, and neurogenic muscular atrophy in addition to the relatively late onset of hypertrophic cardiomyopathy. The copper uptake of cultured fibroblasts was significantly increased. The clinical spectrum of SCO2 deficiency includes the delayed development of hypertrophic obstructive cardiomyopathy and severe neurogenic muscular atrophy. There is increased copper uptake in patients' fibroblasts indicating that the G1541A mutation effects cellular copper metabolism."	"Cytochrome c oxidase deficiency. Cytochrome c oxidase (COX) is the terminal enzyme of the mitochondrial respiratory chain, catalyzing the transfer of electrons from reduced cytochrome c to molecular oxygen. It is composed of 13 structural subunits, three of which are encoded in mtDNA and form the catalytic core of the enzyme. In addition to these structural subunits, a large number of accessory factors are necessary for the assembly and maintenance of the active holoenzyme complex. Most isolated COX deficiencies are inherited as autosomal recessive disorders; mutations in the mtDNA-encoded COX subunit genes are relatively rare. These mutations are associated with a wide spectrum of clinical phenotypes ranging from isolated myopathy to multisystem disease, with onset from late childhood to adulthood. Autosomal recessive COX deficiencies generally have a very early age of onset and a fatal outcome. Several clinical presentations have been described including Leigh Syndrome, hypertrophic cardiomyopathy and myopathy, and fatal infantile lactic acidosis. Surprisingly, mutations in the nuclear-encoded structural COX subunits have not been found in association with any of these phenotypes. Mutations have, however, been identified in several COX assembly factors: SURF1 (Leigh Syndrome), SCO2 (hypertrophic cardiomyopathy), SCO1 (hepatic failure, ketoacidotic coma), and COX10 (encephalopathy, tubulopathy). As all of these assembly factors are ubiquitously expressed, the molecular basis for the different clinical presentations remains unexplained. Although the genetic defects in the majority of patients with COX deficiency are unknown, it is likely that most will be solved in the near future using functional complementation techniques."	"Cerebral oxygen saturation before congenital heart surgery. In congenital heart disease (CHD), neurologic abnormalities suggestive of hypoxia-ischemia are often apparent before cardiac surgery. To evaluate preoperative cerebral oxygenation, this study determined cerebral O2 saturation (ScO2) in CHD and healthy children. Ninety-one CHD and 19 healthy children aged less than 7 years were studied before surgical or radiologic procedures. Arterial saturation (SaO2) and ScO2 were measured by pulse-oximetry and near infrared cerebral oximetry. Cerebral O2 extraction (CEO2) was calculated (SaO2-ScO2). SaO2, ScO2, and CEO2 were compared among diagnoses. Multivariable regression was performed between ScO2 and clinical variables. In healthy subjects, ScO2 (68%+/-10%) and CEO2 (30%+/-11%) were similar to patients with ventricular septal defect, aortic coarctation, and single ventricle after Fontan operation. ScO2 was significantly decreased in patients with patent ductus arteriosus (53%+/-8%), tetralogy of Fallot (57%+/-12%), hypoplastic left heart syndrome (46%+/-8%), pulmonary atresia (38%+/-6%), and single ventricle after aortopulmonary shunt (50%+/-7%), or bidirectional Glenn operation (43%+/-6%). CEO2 was significantly different only in patent ductus arteriosus (46%+/-8%) and hypoplastic left heart syndrome (38%+/-12%). In multivariable regression, only SaO2 was related to ScO2 (R = 0.63, p &lt; 0.001). Cerebral oxygenation in CHD varies with anatomy and arterial saturation, and in some patients, it is very low compared with healthy subjects."	"A nosocomial outbreak of fluoroquinolone-resistant salmonella infection. Infection with fluoroquinolone-resistant strains of salmonella is rare, as is nosocomial salmonella infection. We describe the first recognized outbreak of fluoroquinolone-resistant salmonella infections in the United States, which occurred in two nursing homes and one hospital in Oregon. We interviewed medical staff and reviewed patients' charts and death certificates. In Nursing Home A we conducted a case-control study. Patients were defined as residents of the nursing home from whom fluoroquinolone-resistant Salmonella enterica serotype Schwarzengrund was isolated between February 1996 and December 1998. Controls were residents with similar medical conditions whose cultures did not yield salmonella. We compared isolates using pulsed-field gel electrophoresis and sequence analysis. We reviewed pharmacy records to compare the use of fluoroquinolone among several nursing homes. Eleven patients with fluoroquinolone-resistant salmonellosis were identified at two nursing homes. The index patient had been hospitalized in the Philippines and had probably acquired the infection there. Transmission was probably direct (from patient to patient) or through contact with contaminated surfaces. Treatment with fluoroquinolones during the six months before a culture was obtained was associated with a significant risk of salmonella infection (4 of 5 patients had taken fluoroquinolones, as compared with 2 of 13 controls; odds ratio, 22.0; 95 percent confidence interval, 1.06 to 1177). The patients were not significantly more likely than the controls to have taken other antibiotics. More fluoroquinolones were used at Nursing Home A than at similar nursing homes in Oregon. The isolates from the outbreak had similar patterns on pulsed-field gel electrophoresis and the same gyrA mutations. The isolates from the outbreak were also similar to the only previous isolate of fluoroquinolone-resistant salmonella in the United States, which came from a patient in New York who had been transferred from a hospital in the Philippines. We describe a prolonged nosocomial outbreak of infection with fluoroquinolone-resistant S. enterica serotype Schwarzengrund. More such outbreaks are likely in institutional settings, particularly those in which there is heavy use of antimicrobial agents."	"The changing epidemiology of salmonella: trends in serotypes isolated from humans in the United States, 1987-1997. Salmonellosis is a major cause of illness in the United States. To highlight recent trends, data for 1987-1997 from the National Salmonella Surveillance System were analyzed. A total of 441,863 Salmonella isolates were reported, with the highest age-specific rate among infants (159/100,000 infants at 2 months). Annual isolation rates decreased from 19 to 13/100,000 persons; however, trends varied by serotype. The isolation rate of Salmonella serotype Enteritidis increased until 1996, whereas declines were noted in Salmonella serotypes Hadar and Heidelberg. Overall, serotypes that increased in frequency were significantly more likely than those that decreased to be associated with reptiles (P=.008). Salmonella infections continue to be an important cause of illness, especially among infants. Recent declines in food-associated serotypes may reflect changes in the meat, poultry, and egg industries that preceded or anticipated the 1996 implementation of pathogen-reduction programs. Additional educational efforts are needed to control the emergence of reptile-associated salmonellosis."	"Mitochondrial cytopathies and neuromuscular disorders. In the last decade, mitochondrial diseases were shown not to be rare but to represent an important group of metabolic disorders. Defects are caused by mutations either located in nuclear genes or in mitochondrial genes. Nuclear gene defects are found in complex IV deficient and complex I deficient patients. Deficiencies of complex II are extremely rare. Different phenotypes are associated with complex IV deficiency, including a neonatal form, cardio-encephalomyopathy in young infants, Leigh syndrome, and pure myopathy. Mutations can be found in the complex IV assembly genes, such as the SURF-1 gene and the SCO2 gene. Different phenotypes are also found in complex I deficient patients and include a neonatal form, Leigh syndrome, pure myopathy, pure cardiomyopathy or multiple-system involvement. In some disorders, the mitochondrial DNA abnormalities are caused by a nuclear gene defect (Alpers-Huttenlocher syndrome, autosomal dominant multiple mitochondrial DNA deletion syndrome, and MNGIE syndrome). Since 1988, more then 70 different mutations were reported in the mitochondrial DNA. Some point mutations are associated with a specific phenotype, others have a wide range of clinical symptoms. We expect that many more mitochondrial DNA mutations will be identified in the future. The number of mutations in nuclear genes will also increase, especially since progress has been made in techniques used for identification of nuclear genes (microcell transfer)."	"An outbreak of Campylobacter jejuni infections associated with food handler contamination: the use of pulsed-field gel electrophoresis. In 1998, an outbreak of Campylobacter jejuni infections occurred in Kansas among persons attending a school luncheon; community cases were also reported. In a cohort study of luncheon attendees, 27 (17%) of 161 persons reported illness. Consuming gravy (relative risk [RR], 4.2; 95% confidence interval [CI], 1.5-11.7) or pineapple (RR, 2.4; 95% CI, 1.0-5.7) was associated with illness. Both foods were prepared in a kitchen that served 6 other schools where no illness was reported. A cafeteria worker at the luncheon had a diarrheal illness and was the likely source of the outbreak. The pulsed-field gel electrophoresis (PFGE) patterns of the isolates from the food handler and those of 8 lunch attendees were indistinguishable. Isolates from 4 community patients differed. This was the first use of PFGE in a Campylobacter outbreak in the United States; its use was critical in determining that community cases were not linked."	"Human cytochrome oxidase deficiency. The human cytochrome oxidase complex is a multisubunit assembly in the inner mitochondrial membrane responsible for the terminal event in electron transport in which molecular oxygen is reduced. Various phenotypic forms of cytochrome oxidase deficiency have been recognized, the major varieties involving degeneration of the brain stem and basal ganglia (Leigh syndrome) and lactic acidemia. Others include a fatal infantile form, a benign reversible form, and forms with cardiomyopathy. Early recognition of complementation groups within, for instance, the Leigh syndrome group has recently been followed up with a description of the gene defect for three of the nuclear-encoded forms of cytochrome c oxidase (COX) deficiency. The three genes indicted, SURF1 for Leigh syndrome, COX 10 for leukodystrophy and tubulopathy, and SCO2 for the cardiomyopathic form, all have a role in the assembly of the mature cytochrome oxidase complex. The description of these gene defects and the role these genes play are discussed in terms of what can be learned about COX assembly and about the etiology of the different phenotypic forms of the disease."	"Characterization of human SCO1 and COX17 genes in mitochondrial cytochrome-c-oxidase deficiency. At least three proteins, COX17p, SCO1p, and its homologue SCO2p are thought to be involved in mitochondrial copper transport to cytochrome-c-oxidase (COX), the terminal enzyme of the respiratory chain. Recently, we and others have shown that mutations in SCO2 are associated with a lethal infantile hypertrophic cardiomyopathy (HCMP) with COX-deficiency. The majority of patients with a similar phenotype were, however, negative for SCO2 mutations, suggesting the other genes as candidates for this disorder. Here we report on the genomic organization of SCO1 and COX17 on human chromosomes 17 and 3 respectively, and the complete sequence analysis of COX17 and SCO1 in 30 patients with COX deficiency. Using a panel of human:mouse-monochromosomal hybrids, the expression of COX17 was specifically restricted to chromosome 3, indicating that the previously reported sequence on chromosome 13 represents a pseudogene. DNA sequence analysis of SCO1 and COX17 in nine patients with severe COX deficiency and fatal HCMP, and in 21 patients with other COX deficiency disorders, did not reveal any pathogenic mutations or polymorphisms. We conclude that neither SCO1 nor COX17 are common causes of COX deficiency disorders."	"Arterial and venous contributions to near-infrared cerebral oximetry. Cerebral oximetry is a noninvasive bedside technology using near-infrared light to monitor cerebral oxygen saturation (Sco2) in an uncertain mixture of arteries, capillaries, and veins. The present study used frequency domain near-infrared spectroscopy to determine the ratio of arterial and venous blood monitored by cerebral oximetry during normoxia, hypoxia, and hypocapnia. Twenty anesthetized children aged &lt; 8 yr with congenital heart disease of varying arterial oxygen saturation (Sao2) were studied during cardiac catheterization. Sco2, Sao2, and jugular bulb oxygen saturation (Sjo2) were measured by frequency domain near-infrared spectroscopy and blood oximetry at normocapnia room air, normocapnia 100% inspired O2, and hypocapnia room air. Among subject conditions, Sao2 ranged from 68% to 100%, Sjo2 from 27% to 96%, and Sco2 from 29% to 92%. Sco2 was significantly related to Sao2 (y = 0. 85 x -17, r = 0.47), Sjo2 (y = 0.77 x +13, r = 0.70), and the combination (Sco2 = 0.46 Sao2 + 0.56 Sjo2 - 17, R = 0.71). The arterial and venous contribution to cerebral oximetry was 16 +/- 21% and 84 +/- 21%, respectively (where Sco2 = alpha Sao2 + beta Sjo2 with alpha and beta being arterial and venous contributions). The contribution was similar among conditions but differed significantly among subjects (range, approximately 40:60 to approximately 0:100, arterial:venous). Cerebral oximetry monitors an arterial/venous ratio of 16:84, similar in normoxia, hypoxia, and hypocapnia. Because of biologic variation in cerebral arterial/venous ratios, use of a fixed ratio is not a good method to validate the technology."	"Cytochrome c oxidase assembly factors with a thioredoxin fold are conserved among prokaryotes and eukaryotes. Cytochrome c oxidase (COX) is a multi-subunit terminal oxidase of the eukaryotic respiratory chain involved in the reduction of oxygen to water. Numerous lines of evidence suggest that the assembly of COX is a multi-step, assisted process that depends on several assembly factors with largely unknown functions. Sco1/2 proteins have been isolated as high-copy number suppressors of a deletion of copper chaperone Cox 17, implicating Sco1/2 in copper transport to COX subunits I or II. Here I report the similarity of Sco1/2 assembly factors to peroxiredoxins and thiol:disulfide oxidoreductases with a thioredoxin fold, suggesting that Sco-related proteins perform a catalytic rather than a copper transport function. Reported sequence similarities, together with the functional role of bacterial Sco-related proteins suggest that Sco-related proteins represent a new class of membrane-anchored thiol:disulfide oxidoreductases involved in COX maturation."	"Evaluation of the latency-associated nuclear antigen (ORF73) of Kaposi's sarcoma-associated herpesvirus by peptide mapping and bacterially expressed recombinant western blot assay. Kaposi's sarcoma (KS)-associated herpesvirus open-reading frame (ORF) 73 encodes a latency-associated nuclear antigen (LANA) that is the basis for several serologic assays. Immunoreactive epitopes were searched for by peptide mapping, and 171 cleavable, biotinylated 17-mer peptides offset by 5 residues were synthesized and screened with human serum samples by ELISA. The initial screen, which used highly reactive serum diluted 1:500, identified 38 immunoreactive peptides. These were subsequently tested on additional serum samples diluted 1:40. Thirteen peptides were more reactive with serum samples from patients with KS than with control serum samples. No single epitope was recognized by most KS patient serum samples. Combined use of these peptides did not increase test sensitivity to that of current indirect immunofluorescence assays for LANA (80%-90%). For comparison, full-length ORF73 was expressed in bacteria and analyzed by Western blot. The overall sensitivity was 67% (range, 100% among US patients with classic KS to 52% among Italian patients with classic KS). These studies suggest that LANA immunoreactivity may be due to variations in patient response or conformational epitopes."	"A human SCO2 mutation helps define the role of Sco1p in the cytochrome oxidase assembly pathway. Deficiencies in cytochrome oxidase, the terminal enzyme of the mitochondrial respiratory chain, are most often caused by an inability to complete assembly of the enzyme. Pathogenic mutations in SCO2, which encodes a cytochrome oxidase assembly factor, were recently described in several cases of fatal infantile cardioencephalomyopathy. To determine the molecular etiology of these disorders, we describe the generation and characterization of the parallel mutations in the homologous yeast SCO1 gene. We show that the E155K yeast sco1 mutant is respiration-competent, whereas the S240F mutant is not. Interestingly, the S240F mutation allows partial but incorrect assembly of cytochrome oxidase, as judged by an altered cytochrome aa(3) peak. Immunoblot analysis reveals a specific absence of subunit 2 from the cytochrome oxidase in this mutant. Taken together, our data suggest that Sco1p provides copper to the Cu(A) site on subunit 2 at a step occurring late in the assembly pathway. This is the first instance of a yeast cytochrome oxidase assembly mutant that is partially assembled. The S240F mutant also represents a powerful new tool with which to elucidate further steps in the cytochrome oxidase assembly pathway."	"Differential features of patients with mutations in two COX assembly genes, SURF-1 and SCO2. We screened 41 patients with undiagnosed encephalomyopathies and cytochrome c oxidase (COX) deficiency for mutations in two COX assembly genes, SURF-1 and SCO2; 6 patients had mutations in SURF-1 and 3 had mutations in SCO2. All of the mutations in SURF-1 were small-scale rearrangements (deletions/insertions); 3 patients were homozygotes and the other 3 were compound heterozygotes. All patients with SCO2 mutations were compound heterozygotes for nonsense or missense mutations. All of the patients with mutations in SURF-1 had Leigh syndrome, whereas the 3 patients with SCO2 mutations had a combination of encephalopathy and hypertrophic cardiomyopathy, and the neuropathology did not show the typical features of Leigh syndrome. In patients with SCO2 mutations, onset was earlier and the clinical course and progression to death more rapid than in patients with SURF-1 mutations. In addition, biochemical and morphological studies showed that the COX deficiency was more severe in patients with SCO2 mutations. Immunohistochemical studies suggested that SURF-1 mutations result in similarly reduced levels of mitochondrial-encoded and nuclear-encoded COX subunits, whereas SCO2 mutations affected mitochondrial-encoded subunits to a greater degree. We conclude that patients with mutations in SURF-1 and SCO2 genes have distinct phenotypes despite the common biochemical defect of COX activity."	"Mutations in SCO2 are associated with a distinct form of hypertrophic cardiomyopathy and cytochrome c oxidase deficiency. Mutations in SCO2, a cytochrome c oxidase (COX) assembly gene located on chromosome 22, have recently been reported in patients with fatal infantile cardio-encephalomyopathy and severe COX deficiency in heart and skeletal muscle. The Sco2 protein is thought to function as a copper chaperone. To investigate the extent to which mutations in SCO2 are responsible for this phenotype, a complete sequence analysis of the gene was performed on ten patients in nine families. Mutations in SCO2 were found in three patients in two unrelated families. We detected two missense mutations, one of which (G1541A) results in an E140K substitution adjacent to the highly conserved CxxxC metal-binding site. The other (C1634T) results in an R171W substitution more distant from the copper-binding site. A nonsense codon was found on one allele in two siblings presenting with a rapidly progressive fatal cardio-encephalomyopathy. Interestingly, all patients so far reported are compound heterozygotes for the G1541A mutation, suggesting that this is either an ancient allele or a mutational hotspot. The COX deficiency in patient fibroblasts (approximately 50%) did not result in a measurable decrease in the steady-state levels of COX complex polypeptide subunits and could be rescued by transferring chromosome 22, but not other chromosomes. These data indicate that mutations in SCO2 cause a fatal infantile mitochondrial disorder characterized by hypertrophic cardiomyopathy and encephalopathy, and point to the presence of one or more other genes, perhaps in the copper delivery pathway, in this clinical phenotype."	"Well-being and cerebral oxygen saturation during acute heart failure in humans. Cerebral symptoms and near-infrared spectrophotometry-determined cerebral oxygen saturation (ScO2) were followed in patients treated for normotensive acute congestive heart failure. The reproducibility and normal range for ScO2 were established from 39 resting subjects without cardio-respiratory disease: the ScO2 ranged from 55 to 78% with a coefficient of variation for triple determination of 6%. Patients rated cerebral symptoms on a scale with end-points of 0 (best) and 10 (worst). In eight patients with acute heart failure, arterial oxygen tension increased during decongestive treatment, from 9.1 (4.9-10) to 10.4 kPa (7.3-17); median with range, as did arterial oxygen saturation, from 94 (48-97) to 97% (87-99) (P&lt;0.02), whereas the mean arterial pressure, heart rate and arterial carbon dioxide tension remained unchanged. The cerebral symptom score improved from 8 (3-10) to 1 (1-9) and the ScO2 increased from 34 (20-58) to 50% (19-91) (P&lt;0.02). A ninth patient presented with a silent but massive myocardial infarction: she was cerebrally obtunded with a ScO2 of 18% and soon died. In patients with normotensive acute heart failure and cerebral symptoms, cerebral oxygen saturation is low, and during successful treatment ScO2 increases with the well-being of the patient."	"Neonatal cerebral oxygen regulation after hypothermic cardiopulmonary bypass and circulatory arrest. Despite technical advances, neurologic sequelae continue to occur in neonates after heart surgery using deep hypothermic cardiopulmonary bypass (dhCPB) and circulatory arrest (DHCA). This study sought to determine the cerebral microcirculatory responses to hypoxia, hypotension, hypocapnia, and hypercapnia after dhCPB and DHCA. Prospective laboratory animal trial. Research laboratory. Twenty-eight newborn pigs. Piglets were divided into control, dhCPB, and DHCA groups. The control group received surgery. The dhCPB group received surgery and deep hypothermic CPB for 40 mins. The DHCA group received surgery, deep hypothermic CPB for 40 mins, and circulatory arrest for 60 mins. Two hours after the intervention, cerebral microcirculatory responses were examined. Cerebral microcirculatory responses consisted of changes in cerebral oxygen saturation (Sco2) and pial arteriolar diameter measured by near- infrared spectroscopy and intravital microscopy, respectively. All groups experienced similar decreases in Sco2 and increases in pial arteriolar diameter in response to moderate and severe hypoxia (Pao2, 35 and 25 torr, respectively) and moderate and severe hypotension (mean pressure, 30 and 20 mm Hg, respectively). Sco2 and pial arteriolar diameter decreased to hypocapnia (Paco2, 25 torr) similarly in all groups. To hypercapnia (Paco2, 70 torr), Sco2 increased in the control group, did not change in the dhCPB group, and decreased in the DHCA group. Pial arteriolar diameter to hypercapnia increased in the control and the dhCPB groups but did not change in the DHCA group. Cerebral vascular and oxygenation responses to hypoxia, hypocapnia, and hypotension were preserved after dhCPB and 1 hr of DHCA. By comparison, cerebral vascular and oxygenation responses to hypercapnia were not; both vascular and oxygenation responses were altered after DHCA, but only the oxygenation response was altered after dhCPB. These data suggest a selective disturbance in the microcirculation and/or parenchymal oxygen metabolism after DHCA and dhCPB."	"Fatal infantile cardioencephalomyopathy with COX deficiency and mutations in SCO2, a COX assembly gene. Mammalian cytochrome c oxidase (COX) catalyses the transfer of reducing equivalents from cytochrome c to molecular oxygen and pumps protons across the inner mitochondrial membrane. Mitochondrial DNA (mtDNA) encodes three COX subunits (I-III) and nuclear DNA (nDNA) encodes ten. In addition, ancillary proteins are required for the correct assembly and function of COX (refs 2, 3, 4, 5, 6). Although pathogenic mutations in mtDNA-encoded COX subunits have been described, no mutations in the nDNA-encoded subunits have been uncovered in any mendelian-inherited COX deficiency disorder. In yeast, two related COX assembly genes, SCO1 and SCO2 (for synthesis of cytochrome c oxidase), enable subunits I and II to be incorporated into the holoprotein. Here we have identified mutations in the human homologue, SCO2, in three unrelated infants with a newly recognized fatal cardioencephalomyopathy and COX deficiency. Immunohistochemical studies implied that the enzymatic deficiency, which was most severe in cardiac and skeletal muscle, was due to the loss of mtDNA-encoded COX subunits. The clinical phenotype caused by mutations in human SCO2 differs from that caused by mutations in SURF1, the only other known COX assembly gene associated with a human disease, Leigh syndrome."	"Cerebral desaturation during exercise reversed by O2 supplementation. The combined effects of hyperventilation and arterial desaturation on cerebral oxygenation (ScO2) were determined using near-infrared spectroscopy. Eleven competitive oarsmen were evaluated during a 6-min maximal ergometer row. The study was randomized in a double-blind fashion with an inspired O2 fraction of 0.21 or 0.30 in a crossover design. During exercise with an inspired O2 fraction of 0.21, the arterial CO2 pressure (35 +/- 1 mmHg; mean +/- SE) and O2 pressure (77 +/- 2 mmHg) as well as the hemoglobin saturation (91.9 +/- 0.7%) were reduced (P &lt; 0.05). ScO2 was reduced from 80 +/- 2 to 63 +/- 2% (P &lt; 0.05), and the near-infrared spectroscopy-determined concentration changes in deoxy- (DeltaHb) and oxyhemoglobin (DeltaHbO2) of the vastus lateralis muscle increased 22 +/- 3 microM and decreased 14 +/- 3 microM, respectively (P &lt; 0.05). Increasing the inspired O2 fraction to 0.30 did not affect ventilation (174 +/- 4 l/min), but arterial CO2 pressure (37 +/- 2 mmHg), O2 pressure (165 +/- 5 mmHg), and hemoglobin O2 saturation (99 +/- 0.1%) increased (P &lt; 0. 05). ScO2 remained close to the resting level during exercise (79 +/- 2 vs. 81 +/- 2%), and although the muscle DeltaHb (18 +/- 2 microM) and DeltaHbO2 (-12 +/- 3 microM) were similar to those established without O2 supplementation, work capacity increased from 389 +/- 11 to 413 +/- 10 W (P &lt; 0.05). These results indicate that an elevated inspiratory O2 fraction increases exercise performance related to maintained cerebral oxygenation rather than to an effect on the working muscles."	"Near-infrared oximetry of the brain. Near-infrared (IR) light easily penetrates biological tissue, and the information offered by in vivo spectroscopy of cerebral oxygenation is detailed and comes with a high temporal resolution. Near-IR light spectroscopy (NIRS) reflects cerebral oxygenation during arterial hypotension, hypoxic hypoxaemia and hypo- and hypercapnia. As determined by dual-wavelength NIRS, the cerebral O2 saturation integrates the arterial O2 content and the cerebral perfusion, and as established for skeletal muscle, NIRS obtains information on tissue oxygenation and metabolism beyond that obtained by venous blood sampling. Caveats of cerebral NIRS include insufficient light shielding, optode displacement and a sample volume including muscle or the frontal sinus mucous membrane. The relative influence from the extracranial tissue is minimized by optode separation and correction for an extracranial sample volume, or both. The natural pigment melatonin and also water are of little influence to spectroscopic analysis of cerebral oxygenation, whereas bilirubin systematically lowers ScO2 and attenuates the detection of changes in cerebral oxygenation. By NIRS, reduction of cytochrome oxidase is demonstrated during hypoxic hypoxaemia and head-up tilt-induced arterial hypotension, but the changes are small. In the clinical setting, NIRS offers useful information in patients with both systemic and local cerebral circulatory impairment, for example, during cranial trauma, surgery on the cerebral arteries, orthostasis and acute heart failure. Whereas mapping of the brain circulation is needed for jugular venous sampling to reflect either global or local oxygenation, the determination of cerebral oxygenation by NIRS has the advantage of localized monitoring of the cerebral cortex."	"An assessment of contributions made by extracranial tissues during cerebral oximetry. This study was designed to determine the extent of contribution made by extracranial tissues to estimation of regional cerebrovascular saturation (ScO2) during cerebral oximetry. Thirty four patients undergoing carotid endarterectomy under regional anesthesia were studied. Bilateral ScO2 monitoring with two INVOS 3100 A cerebral oximeters was used. Effect of occlusion of external carotid artery (ECA) for five minutes on ScO2 readings followed by occlusion of internal and common carotid arteries was studied. ScO2 readings at 1 minute intervals were stored on computer disks for off-line analysis. Numerical data were subjected to a two way repeated measures analysis of variance to study the effect of side (ipsilateral or contralateral) and phase (pre clamp, ECA clamp, ICA clamp and post clamp) of operation. A value of p&lt;0.05 was considered significant. There was no significant change in ScO2 on the contralateral side. On the ipsilateral hemisphere ScO2 decreased from 67.4+/-8.5 to 65.6+/-8.3 with ECA occlusion and to 61.4+/-9.6 after ICA occlusion returning to 64.8+/-9.8 after all clamps were released. Decrease after ECA occlusion was not significant (p = 0.12) while that after ICA occlusion was significant when compared to pre clamp value (p&lt;0.001). After release of all clamps ipsilateral ScO2 returned toward baseline but remained significantly lower (p&lt;0.05) than pre clamp values. When readings from two hemispheres were compared, a significant difference (p&lt;0.001) was noted during ICA occlusion only. We conclude that the mathematical algorithm used for calculation of ScO2 by INVOS 3100 A cerebral oximeter measures predominantly the intracranial cerebrovascular saturation."	"Comparison of pH-stat and alpha-stat cardiopulmonary bypass on cerebral oxygenation and blood flow in relation to hypothermic circulatory arrest in piglets. Deep hypothermic circulatory arrest is used in neonatal cardiac surgery. Recent work has suggested improved neurologic recovery after deep hypothermic arrest with pH-stat cardiopulmonary bypass (CPB) compared with alpha-stat CPB. This study examined cortical oxygen saturation (ScO2), cortical blood flow (CBF), and cortical physiologic recovery in relation to deep hypothermic arrest with alpha-stat or pH-stat CPB. Sixteen piglets were cooled with pH-stat or alpha-stat CPB to 19 degrees C (cortex) and subjected to 60 min of circulatory arrest, followed by CPB reperfusion and rewarming and separation from CPB. Near infrared spectroscopy and laser Doppler flowmetry were used to monitor ScO2 and CBF. Cortical physiologic recovery was assessed 2 h after the piglets were separated from CPB by cortical adenosine triphosphate concentrations, cortical water content, CBF, and ScO2. During CPB cooling, ScO2 increased more with pH-stat than with alpha-stat bypass (123 +/- 33% vs. 80 +/- 25%); superficial and deep CBF were also greater with pH-stat than with alpha-stat bypass (22 +/- 25% vs. -56 +/- 22%, 3 +/- 19% vs. -29 +/- 28%). During arrest, ScO2 half-life was greater with pH-stat than with alpha-stat bypass (10 +/- 2 min vs. 7 +/- 2 min), and cortical oxygen consumption lasted longer with pH-stat than with alpha-stat bypass (36 +/- 8 min vs. 25 +/- 8 min). During CPB reperfusion, superficial and deep CBF were less with alpha-stat than with pH-stat bypass (-40 +/- 22% vs. 10 +/- 39%, -38 +/- 28% vs. 5 +/- 28%). After CPB, deep cortical adenosine triphosphate and CBF were less with alpha-stat than with pH-stat bypass (11 +/- 6 pmole/mg vs. 17 +/- 8 pmole/mg, -24 +/- 16% vs. 16 +/- 32%); cortical water content was greater with alpha-stat than with pH-stat bypass (superficial: 82.4 +/- 0.3% vs. 81.8 +/- 1%, deep: 79.1 +/- 2% vs. 78 +/- 1.6%). Cortical deoxygenation during hypothermic arrest was slower after pH-stat CPB. pH-stat bypass increased the prearrest ScO2 and arrest ScO2 half-life, to increase the cortical oxygen supply and slow cortical oxygen consumption. Improved cortical physiologic recovery after hypothermic arrest was suggested with pH-stat management."	"[Usefulness of pulse oximetry in respiratory diseases]. The aim of the present study was to verify the usefulness and the limits of the pulse oximeter (po) in the management of patients with pulmonary disease. To this end oxyhemoglobin saturation measured with the po (SpO2) in 81 outpatients (mean age 67.7 +/- 12.7 years) was compared to oxyhemoglobin saturation calculated from a Radiometer computerized system (ScO2) and measured with a Co-oximeter (SaO2), considered as a reference value. Both SpO2 values and ScO2 values were, in average, significantly higher than SaO2 values (p &lt; 0.001). In a multiple stepwise regression analysis, carboxyhemoglobin was the determinant of both SaO2-SpO2 and SaO2-ScO2 differences. The relationship between SpO2 values and the arterial gas data revealed that a wide range of PaO2 and PaCO2 values could be related to a narrow range of SpO2 values showing a clear variability of PaO2 and PaCO2 for the same value of SpO2. These findings seem to indicate that the po can be regarded as a simple, non-invasive, and non-expensive method to measure the oxyhemoglobin saturation with a sufficient reliability. The SpO2 values could be used in the management and follow-up of patients with hypoxemia, but SpO2 values could be misleading in presence of hypercapnia and/or hemoglobinopathies."	"Cerebral oximetry during circulatory arrest for aneurysm surgery. A patient underwent surgical clipping of a complex giant intracranial carotid aneurysm with the aid of extracorporeal circulation and complete hypothermic circulatory arrest. During the entire procedure, cerebrovascular oxygen saturation (ScO2) was spectroscopically measured. The patient experienced circulatory arrest for 34 min; for 15 of the 34 min ScO2 was &lt; 34% (minimum 32%). The patient tolerated the procedure without new neurological deficit, thus demonstrating that the previously suggested &quot;critical&quot; level of 35% ScO2 is not absolute."	"Cerebral oxygen saturation and blood flow during liver transplantation. After reperfusion of a liver graft, transcranial Doppler determined middle cerebral artery flow velocity, increases more than expected from the arterial carbon dioxide tension (PaCO2). We evaluated if this indication of cerebral hyperperfusion is reflected in the jugular oxygen saturation (SjO2) (n = 31) and oxygen saturation (ScO2) (near-infrared spectrophotometry, n = 22). From the dissection phase to the anhepatic phase SjO2 71.0% (range 62.3%-78.5%), ScO2 70% (range 65%-77%), and PaCO2 34.9 mm Hg (range 30.8-38.3) remained statistically unchanged. In contrast, during the early reperfusion phase, SjO2 increased to 77.0% (71.4%-83.0%) (P &lt; 0.01) and the ScO2 to 75% (68%-80%) (P &lt; 0.05) as PaCO2 increased to 37.5 mm Hg (34.8-41.9) (P &lt; 0.001). Notably, SjO2 also increased at reperfusion from 71.6% (66.5%-78.0% mm Hg) to 80.0% (76.8%-84.8%) in the four patients in whom PaCO2 decreased at reperfusion from 37.6 mm Hg (36.8-39.5) to 34.0 mm Hg (32.3-36.8). If the changes in SjO2 after reperfusion of the grafted liver should be explained as a reflection of changes in cerebral blood flow, in response to PaCO2, it would indicate a highly accentuated CO2 reactivity of 13%/mm Hg. The results support that cerebral blood flow and, in turn, oxygenation increase after reperfusion because the grafted liver liberates a vasodilating substance(s)."	"SCO1 and SCO2 act as high copy suppressors of a mitochondrial copper recruitment defect in Saccharomyces cerevisiae. C129/U1 is a respiratory defective mutant of Saccharomyces cerevisiae arrested in cytochrome oxidase assembly due to a mutation in COX17, a nuclear gene encoding a low molecular weight cytoplasmic protein proposed to function in mitochondrial copper recruitment. In the present study we show that the respiratory defect of C129/U1 is rescuable by two multicopy suppressors, SCO1 and SCO2. SCO1 was earlier reported to code for a mitochondrial inner membrane protein with an essential function in cytochrome oxidase assembly (Buchwald, P., Krummeck, G., and Rodel, G. (1991) Mol. Gen. Genet. 229, 413-420). SCO2 is a homologue of SCO1, whose product is also localized in the mitochondrial membrane but is not required for respiration. SCO1 also suppresses a cox17 null mutant, indicating that overexpression of Sco1p can compensate for the absence of Cox17p. In contrast, neither copper, COX17 on a multicopy plasmid, or a combination of the two is able to restore respiration in sco1 mutants. Rescue of cox17 mutants by Sco1p suggests that this mitochondrial protein plays a role either in mitochondrial copper transport or insertion of copper into the active site of cytochrome oxidase. Although SCO2 can also partially restore respiratory growth in the cox17 null mutant, rescue in this case requires addition of copper to the growth medium. SCO2 does not suppress a sco1 null mutant, although it is able to partially rescue a sco1 point mutant. We interpret the ability of SCO2 to restore respiration in cox17, but not in sco1 mutants, to indicate that Sco1p and Sco2p have overlapping but not identical functions."	"Hypertonic saline improves brain resuscitation in a pediatric model of head injury and hemorrhagic shock. Brain injury accompanied by hypovolemic shock is a frequent cause of death in multiply injured children. Hypertonic saline (HTS) has been shown to return hemodynamics to normal in adult models, without increasing intracranial pressure (ICP) as seen with crystalloids. To assess fluid resuscitation, the authors evaluated HTS versus lactated Ringer's solution (LR) with respect to hemodynamics and cerebrovascular hemoglobin oxygen saturation (Sco2) in anesthetized, head-injured, 1-month-old piglets. Group 1 (n = 6) was studied for 3.5 hours after a cryogenic brain injury and no shock. Groups 2 and 3 had cryogenic brain injury followed by hemorrhagic shock, in which mean arterial pressure (MAP) was reduced to 40 to 50 mm Hg and maintained for 30 minutes. Group 2 (n = 5) was then resuscitated with 1 mL of 7.5% HTS per 1 mL of blood loss. Group 3 (n = 6) was resuscitated with 3 mL of LR per 1 mL of blood loss. Sco2 was determined by near-infrared spectroscopy in the injured region of the brain. All data were analyzed using analysis of variance with repeated measures. MAP, ICP, temperature, serum sodium, and cardiac output (CO) were similar in all groups during baseline and between groups 2 and 3 during shock. After resuscitation, MAP, CO, and core temperature were similar in all three groups, and serum sodium was increased in the HTS group (by 29%). Sco2 increased transiently after cryogenic injury in all groups, then gradually decreased to below baseline. After shock, Sco2 decreased precipitously in group 2 and 3. After resuscitation, Sco2 was different in the two resuscitation groups, increasing in the HTS group, above baseline values, but remaining below baseline values in the LR group (P &lt; .002). ICP was lowered by HTS resuscitation and increased by LR resuscitation (P &lt; .002) In our model of head injury and shock, resuscitation with either HTS or LR restored MAP and CO to control levels. However, during shock, the injured brain was severely deoxygenated, and administration of HTS restored cerebral oxygenation whereas LR did not, reflecting improved cerebral resuscitation by HTS without elevating ICP. The data suggest that HTS is a better resuscitation fluid than LR in head-injured children with hemorrhagic shock."	"Cerebral oximetry in patients undergoing carotid endarterectomy under regional anesthesia. Near-infrared spectroscopy is a technique that can potentially monitor changes in cerebral oxygenation. There are at present limited clinical data regarding the value of this technology in relating neurological outcome to cerebrovascular hemoglobin oxygen saturation (ScO2). This investigation reports changes in ScO2 due to carotid cross-clamping during carotid endarterectomy in awake patients. ScO2 was monitored in 38 adult patients undergoing 41 carotid endarterectomies under regional anesthesia. Ipsilateral and contralateral hemispheres were monitored simultaneously during 36 operations, with ipsilateral monitoring alone in the remaining 5 operations. No significant difference was detected between ipsilateral and contralateral ScO2 during preclamp or postclamp periods. Carotid cross-clamping caused a statistically significant (P &lt; .01) decrease in the ipsilateral ScO2, which decreased from 71.8 +/- 6.91% to 65.8 +/- 8.2%, while the contralateral ScO2 remained stable at 70.5 +/- 7.5% and 70.3 +/- 7.9%. The change in ipsilateral ScO2 ranged from +2.6% to -28.6% of the preclamp value. The difference between ipsilateral and contralateral ScO2 during cross-clamping was statistically significant (P &lt; .001). The duration of cross-clamping was 39 +/- 11 minutes (range, 18 to 89 minutes). The decrease in ipsilateral ScO2 was highly variable from patient to patient and did not correlate with the duration of cross-clamping. These results suggest that carotid artery occlusion causes a statistically significant but variable decrease in ScO2 in the majority of patients. Data in this investigation provide a range of ScO2 values that was not associated with a clinically detectable neurological dysfunction."	"Brain and muscle oxygen saturation during head-up-tilt-induced central hypovolaemia in humans. Near-infrared spectrophotometry-determined cerebral (ScO2) and muscle oxygen saturations (SmO2) were followed in 15 volunteers during passive 50 degrees head-up-tilt-induced central hypovolaemia, and in nine volunteers during ventilatory manoeuvres affecting arterial carbon dioxide tension. During head-up tilt, mean arterial pressure [MAP, 88 (77-118) to 97 (80-136) mmHg, median and range] and heart rate [HR; 66 (49-77) to 87 (42-132) beats min-1 P &lt; 0.01] increased, but after 22 (1-45) min they declined [to 61 (40-91) mmHg and 69 (38-109) beats min-1, respectively, P = 0.001] and pre-syncopal symptoms developed. Central hypovolaemia was indicated by an increased thoracic electrical impedance, and a decreased cardiac output and central venous oxygen saturation. The arterial oxygen saturation, pulmonal oxygen uptake and skin temperatures remained constant. The ScO2 remained stable at 72 (62-77)% until the pre-syncopal incidence, when it decreased to 62 (31-73)% (P = 0.001), and tilt down made it increase to 75 (36-87)% (P &lt; 0.05) before the recovery value was established. In contrast, SmO2 decreased during tilting [75(70-87) to 65 (53-70)%], and recovered to 70 (53-83)%, P &lt; 0.01) during the hypotensive episode. The end-tidal CO2 tension decreased only during tilt-up. The ScO2 decreased, and SmO2 increased during hyperventilation, and ScO2 increased during breathing of 5% carbon dioxide. Rebreathing from a bag made SmO2 decrease and resulted in a biphasic ScO2 response: it first increased and subsequently decreased. Cardiovascular changes during tilt were not reflected in skin temperature. The ScO2 reflected the maintained autoregulation of cerebral blood flow until the perfusion pressure decreased markedly. In contrast, SmO2 mirrored muscle vasoconstriction early during tilt, and vasodilatation when pre-syncopal symptoms appeared."	"[Comparison of bench central and mixed pulmonary venous oxygen saturation in critically ill postsurgical patients]. To investigate if there were differences between bench central oxygen saturation (ScvO2) and mixed venous oxygen saturation (SvO2) in a group of acutely ill postsurgical patients. A prospective comparative study of two sampling sites. Postsurgical ICU at a University Hospital. 39 acutely ill postsurgical patients, requiring perioperative invasive hemodynamic monitoring, studied during their stay in a postsurgical ICU. Routine care for acutely ill postsurgical patients. Blood was simultaneously sampled, according to the clinical course, both from the distal and central port of a pulmonary artery catheter (n = 296 each). Oxygen saturation and blood gas analysis were immediately measured with a CO-oxymeter and a blood gas analyzer. We investigated the relationship and the agreement between the two measures. To assess if bench ScVO2 could give information on time related variations of bench SvO2 we evaluated the absolute sequential changes of the two measures during the period of observation, by analyzing the relationship and the agreement of their absolute changes (n = 1817). There was a significant difference between bench SvO2 and bench ScvO2 (71.8 +/- 8.2 vs 72.7 +/- 8.6% mean +/- SD, p &lt; 0.001). The relationship between the two measures showed a significant correlation (r = 0.90, p &lt; 0.001, and SEE 3.8%). The bias was -0.93 +/- 3.8%, and the limits of agreement were +6.6 and -8.5%. The changes in bench ScvO2 correlated with the respective changes in bench SvO2 (r = 0.86, p &lt; 0.001, and SEE 4.4%). The bias was 0.79 +/- 4.7% and the limits of agreement were +9.4 and -7.8%. SvO2 cannot be predicted well from bench ScvO2, nor changes in ScO2 can be predicted wel from changes in bench ScvO2. Therefore, in this category of patients, the clinical usefulness of monitoring bench ScvO2 is strongly limited and we must still rely on the SvO2."	"Cerebral oxygenation during pediatric cardiac surgery using deep hypothermic circulatory arrest. Deep hypothermic circulatory arrest is a widely used technique in pediatric cardiac surgery that carries a risk of neurologic injury. Previous work in neonates identified distinct changes in cerebral oxygenation during surgery. This study sought to determine whether the intraoperative changes in cerebral oxygenation vary between neonates, infants, and children and whether the oxygenation changes are associated with postoperative cerebral dysfunction. The study included eight neonates, ten infants, and eight children without preexisting neurologic disease. Cerebrovascular hemoglobin oxygen saturation (SCO2), an index of brain oxygenation, was monitored intraoperatively by near-infrared spectroscopy. Body temperature was reduced to 15 degrees C during cardiopulmonary bypass (CPB) before commencing circulatory arrest. Postoperative neurologic status was judged as normal or abnormal (seizures, stroke, coma). Relative to preoperative levels, the age groups experienced similar changes in SCO2 during surgery: SCO2 increased 30 +/- 4% during deep hypothermic CPB, it decreased 62 +/- 5% by the end of arrest, and it increased 20 +/- 5% during CPB recirculation (all P &lt; 0.001); after rewarming and removal of CPB, SCO2 returned to preoperative levels. During arrest, the half-life of SCO2 was 9 +/- 1 min in neonates, 6 +/- 1 min in infants, and 4 +/- 1 min in children (P &lt; 0.001). Postoperative neurologic status was abnormal in three (12%) patients. The SCO2 increase during deep hypothermic CPB was less in these patients than in the remaining study population (3 +/- 2% versus 33 +/- 4%, P &lt; 0.001). There were no other significant SCO2 differences between outcome groups. Brain oxygenation changed at distinct points during surgery in all ages, reflecting fundamental cerebral responses to hypothermic CPB, ischemia, and reperfusion. However, the changes in SCO2 half-life with age reflect developmental differences in the rate of cerebral oxygen utilization during arrest, consistent with experimental work in animals. Certain intraoperative cerebral oxygenation patterns may be associated with postoperative cerebral dysfunction and require further study."	"[Practical experience in monitoring the oxygen saturation of central venous blood in pediatric anesthesia-resuscitation]. Venous central oximetry (ScO2) in high-risk pediatric surgical patients (myopathies, congenital diaphragmatic hernia) is an useful guide to treatment. ScO2 was monitored in 15 patients (4 neonates) during and after thoracic interventions or interventions involving manipulation of the liver. Oximetrix ScO2 is not more invasive than a catheter of common stiffness, but the size 4F remains large for neonates. The physiological or pathological signification of its variation has to be deduced from clinical evaluation. Interpretation may be easier during anesthesia and in the absence of sepsis. ScO2 can be used either as a sensitive monitoring with usually an early response, to evaluate judicious treatment, or as an indirect way to evaluate cardiac output if the other factors of the Fick relation can be estimated or measured."	"Monitoring of central venous oxygen saturation versus mixed venous oxygen saturation in critically ill patients. Continuous monitoring of mixed venous (SvO2) and central venous (ScO2) oxygen saturation was compared in 7 critically-ill patients (Apache II score: 19 +/- 2.1) to determine whether or not information derived from ScO2 were reliable in clinical practice. Patients were catheterized with both a pulmonary artery (PA) and a central venous (CV) catheter, each of them mounted with fiberoptic sensors (Opticath PA Catheter P7110 and Opticath CV Catheter U440, Abbott). A total of 580 comparative measurements were obtained during periods without and with therapeutic interventions (drug-titration, bronchial suction, use of PEEP, changes in FiO2 ...). The systematic error between the 2 measurement techniques was 0.6% and 0.3% in periods with and without therapeutic interventions, respectively. The variability between the 2 techniques was 10% for both periods. Differences between the values were greater than or equal to 5% in 49% of values during periods of stability and in 50% of values during periods with therapeutic interventions. There were poor correlations between the values during periods without (r = 0.48) and with therapeutic interventions (r = 0.62). Better, but still less than ideal, correlations were obtained with changes in SvO2 and ScO2 during periods without (r = 0.70) and with therapeutic interventions (r = 0.77). Although there is a need to develop a simple technique to monitor mixed venous oxygen saturation, the present study indicates that ScO2 monitoring was not reliable in the study patients."	"Ventilatory responses to carbon dioxide in four ethnic groups in Cape Town. Ventilatory responses to carbon dioxide (Sco2) were measured in 80 healthy adult subjects from four ethnic groups living in Cape Town. The mean Sco2 was 1.77 +/- 0.14 l/min/mmHg in whites, 1.13 +/- 0.09 l/min/mmHg in mixed race people, 0.99 +/- 0.11 l/min/mmHg in Indians and 0.87 +/- 0.10 l/min/mmHg in blacks. The difference between whites and the other three ethnic groups was highly significant (P less than 0.0001), whereas the differences between blacks, mixed race subjects and Indians were not. However, correction of Sco2 for differences in lung size, i.e. Sco2/vital capacity, eliminated the differences between whites and the other groups."	"Accuracy of response of six pulse oximeters to profound hypoxia. Oxygen saturation, SpO2%, was recorded during rapidly induced 42.5 +/- 7.2-s plateaus of profound hypoxia at 40-70% saturation by 1 or 2 pulse oximeters from each of six manufacturers (NE = Nellcor N100, OH = Ohmeda 3700, NO = Novametrix 500 versions 2.2 and 3.3 (revised instrumentation), CR = Criticare CSI 501 + version .27 and version .28 in 501 &amp; 502 (revised instrumentation), PC = PhysioControl Lifestat 1600, and MQ = Marquest/Minolta PulseOx 7). Usually, one probe of each pair was mounted on the ear, the other on a finger. Semi-recumbent, healthy, normotensive, non-smoking caucasian or asian volunteers (age range 18-64 yr) performed the test six to seven times each. After insertion of a radial artery catheter, subjects hyperventilated 3% CO2, 0-5% O2, balance N2. Saturation ScO2, computed on-line from mass spectrometer end-tidal PO2 and PCO2, was used to manually adjust FIO2 breath by breath to obtain a rapid fall to a hypoxic plateau lasting 30-45s, followed by rapid resaturation. Arterial HbO2% (Radiometer OSM-3) sampled near the end of the plateau averaged 55.5 +/- 7.5%. ScO2% (from the mass spectrometer) and SaO2% (from pH and PO2, by Corning 178) differed from HbO2% by + 0.2 +/- 3.6% and 0.4 +/- 2.8%, respectively. The mean and SD errors of pulse oximeters (vs. HbO2%) were: (table; see text) The plateaus were always long enough to permit instruments to demonstrate a plateau with ear probes, but finger probes sometimes failed to provide plateaus in subjects with peripheral vasoconstriction. Nonetheless, SpO2 read significantly too low with finger probes at 55% mean SaO2.(ABSTRACT TRUNCATED AT 250 WORDS)"	"[Interrelation of respiratory variability and ventilatory sensitivity to a hypercapnic stimulus]. Breathing variability and ventilatory response to carbon dioxide (SCO2) were studied after premedication with moradol, in healthy subjects and those with acute pain syndrome. Inverse relationship between SCO2 and breathing variability was established. SCO2 was the highest in the group of patients with acute pain syndrome and the lowest in patients after premedication with moradol."	"Ventilatory responses to carbon dioxide in asthmatics with previous carbon dioxide retention during severe asthma. Ventilatory responses to carbon dioxide (Sco2) were measured in 15 asymptomatic asthmatic patients in whom CO2 retention had been documented during a previous attack of acute asthma. At the time when Sco2 was measured, the patients had normal or only mildly impaired ventilatory function (vital capacity (VC) 3,5 +/- 0,19 I, 98,7 +/- 4% of predicted (mean +/- SE); forced expiratory volume in 1 second (FEV1) 2,37 +/- 0,161, 83,8 +/- 5,2% of predicted; and FEV1/VC 68 +/- 2,5%). Fifteen control subjects without lung disease were also studied (VC 4,38 +/- 0,28 I, 103 +/- 2,6% of predicted; FEV1 3,76 +/- 0,23 I, 112 +/- 4,4% of predicted; FEV1/VC 86 +/- 7,8%). Sco2 in the patients (1,21 +/- 0,14 l/min/mmHg, range 0,62 - 2,81) was significantly different (P less than 0,001) from that in controls (2,13 +/- 0,17 l/min/mmHg, range 1,13 - 3,17). Sco2 in a subgroup of 5 patients with normal pulmonary function was also significantly different from that in controls. Correction for lung size (Sco2/VC) did not detract from the significance of the difference between patients and controls, suggesting that inherently low respiratory centre sensitivities to CO2 may have played a role in the development of hypercapnia during severe asthma in these patients."	"Mixed venous oxygenation, exercise, body posture, and v/q ratio in chronic obstructive pulmonary disease. Mixed venous oxygenation (partial pressure, PVO2; saturation, SVO2) and its impact on pulmonary function at rest in the supine position (SUP), at rest in the standing position (STAND), and during maximal treadmill exercise (Emax), were studied in 41 stable patients with chronic obstructive pulmonary disease, using arterial and right heart (Swan-Ganz) catheterization. The patients represented a broad spectrum of disease severity (VC, 3.1 +/- 0.9 L; FEF 25-75, 1.0 +/- 0.7 L). It was found that: (a) venous oxygenation was uniform among different patients in the supine position at rest (PVO2, 33.8 +/- 2.4 mmHg' SVO2, 76.2 +/- 3.6%), regardless of the heterogeneity in airway obstruction, as previously reported by others; (b) venous oxygenation was also uniform in STAND (PVO2, 29.5 +/- 2.5 mmHg; SVO2, 58 +/- 3.9%) and treadmill Emax (PVO2, 22.4 +/- 3.3 mmHg; SVO2, 34.4 +/- 6%), an observation not previously reported; (c) the orthostatic mixed venous desaturation at rest was pronounced, and was nearly as great as that from STAND to Emax; (d) the potential effect of mixed venous desaturation on alveolar O2 partial pressure (PAO2) and end-capillary O2 saturation (SCO2) was not obvious from SUP to STAND, and from STAND to Emax conditions, being masked by an appropriate increase in overall V/Q ratio; (e) because of constant SCO2 and low interindividual variations of SVO2, there was a high correlation of arterial saturation (SaO2) to venous admixture (Qva/Qt, sum of true shunt and shuntlike components) for each of the conditions studied. Hence, because of high correlation of the equations relating SaO2 to Qva/Qt (r greater than 0.9), these relationships might be used for noninvasive prediction of Qva/Qt from SaO2 in patients with COPD."	"Respiratory function during physical exercise in normal and obstructed noses. Four healthy adults with normal nose were asked to pedal an ergometer for 3 min or more at a load of 25, 50, and 75 W/min, respectively. The same procedure was repeated on the same subjects whose nostrils were plugged. Air-flow and pressure difference between the mesopharynx and the nares, FO2 and FCO2, percutaneous-PO2 and ScO2 were recorded on a polygraph. At the start of the exercise, respiration deepened. Nasal resistance (Rn) decreased within 30 s and kept low while the exercise lasted. TcPO2 initially increased slightly for 1 min, then decreased. ScO2 also showed the same pattern, but of very slight range. At the end of the exercise Rn returned to pre-exercise level after slight rebound increase. Recovery of tcPO2 delayed for 30 s and its rebound increase lasted for more than 5 min. In case of nasal obstruction, such sequential changes of these parameters were of the same pattern as those in normal noses but were more evident. The results demonstrated that in case of moderate or severe nasal obstruction the exercise created hypoventilation despite a marked increase in the breathing activity if nasal breathing was continued."	"Assessment of the central chemosensitivity in man under transient or progressive hypercapnia. In healthy man, the central chemosensitivity to CO2 was studied after depression of the arterial chemoreflex drive by inhalation of pure oxygen. The effectiveness of the functional decrease of arterial chemoreceptor function was assessed by the delayed hyperventilation which followed transient inhalation of hypercapnic gas mixtures for 3 or 5 breaths in hyperoxic conditions. In such a case the first significant increase in tidal volume (VT) occurred 13.9 +/- 3.2 (SE) sec later than the early change in this variable measured in normoxic conditions. The stimulus strength was estimated by the change in CO2 partial pressure in end-tidal alveolar gas (delta PETCO2). The central chemosensitivity (SCO2), defined as the ratio between change in ventilation (delta V) and delta PETCO2, was assessed either by transient inhalation of gas mixtures containing 5 to 8% CO2 in pure O2 (&quot;varying transients&quot;) or by progressive hypercapnia (rebreathing in pure O2). In both cases, the first significant change in ventilation was due to an increase in VT, but, for a given delta PETCO2, VT changes were higher during rebreathing than after transient hypercapnia; (2) The respiratory frequency (fR) was progressively enhanced during rebreathing (shortening of expiratory duration in all cases and of inspiratory time in some subjects) but the ventilatory rhythm diminished after transient stimulation as soon as delta PETCO2 reached one kPa, and this was due to an increase in inspiratory duration; (3) The associated changes in VT and fR during rebreathing could explain that SCO2 values given by this method were 5.2 times greater than after transient hypercapnia (&quot;varying tests&quot;). The differences are discussed in terms of, (1) isolated changes in arterial PCO2 or associated decrease in pH of the cerebrospinal fluid; (2) changes in brain blood flow, and (3) stimulation of lung stretch receptors by the important increase in VT during rebreathing."	"Regulation of blood pH in teleost fish. The nature of pH changes with temperature is similar in both air-breathing and water-breathing poikilotherms having a pH-temperature slope of -0.015 to 0.020 U/degrees C. The means by which this is accomplished are quite different in the two groups. The air-breather behaves in vivo as a Rosenthal, or constant CO2 content system, with PaCO2 increasing at higher temperatures. The increase in PaCO2 is brought about by a reduction in the ration VE/MCO2. The water-breather, on the other hand, does not change VG/MO2, so as not to sacrifice oxygen delivery, and consequently does not control PaCO2 by ventilation and perhaps does not control it at all. Instead, the ratio of CT/SCO2 is controlled by altering blood bicarbonate concentration. Since alteraction of Na+ and Cl- uptake rates affects blood pH, and alterations of blood pH affect uptake of Na+ and Cl- at the gills, the carrier-mediated Na+/H+(NH4+) and Cl-/HCO3-(OH-) mechanisms now known to occur in gills appear to be the primary pH-regulating mechanism in water-breathers. Our knowledge of the role of gut and kidney in pH regulation is incomplete, but on the basis of preliminary information the kidney does not appear to respond to acid challenge."	"Relationships between eupnoeic pattern of breathing and ventilatory control in man II. Early response to transient hypercapnia. The individual importance of peripheral chemosensitive afferents was studied using a transient hypercapnia (inhalation of a 5% or a 10% CO2 in air gas mixture respectively during 4 or 2 breaths) in human conscious subjects chosen for their different eupnoeic ventilatory patterns. Calculation of the speed of change in end-tidal CO2 pressure in tracheal gas (sPETCO2) and of the rate of change in tidal volume (sVI) gave assessment for quantifying the sensitivity of arterial chemoreceptors to hypercapnia (sCO2=SVI/SPETCO2). Our results showed that, independently of any outside influence of the eupnoeic ventilatory pattern on the components of the chemical stimulus, sVI and sCO2 were found to be much smaller in subjects whose pattern of breathing was slow (i.e. having a large tidal volume). The possible causes of the weak importance of peripheral chemosensitive afferents in such subjects were discussed."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SLC19A3"	"Leigh syndrome"	"Pitfalls of relying on genetic testing only to diagnose inherited metabolic disorders in non-western populations - 5 cases of pyruvate dehydrogenase deficiency from South Africa. Pyruvate dehydrogenase complex (PDHC) deficiencies are a group of mainly infantile onset disorders stemming from defects in pyruvate catabolism. They are characterised by severe lactic acidosis and progressive neurodegeneration.Although the PDHA1 gene is implicated in most cases of PDHC deficiency worldwide, no pathogenic variants have been reported in South African patients to date, despite availability of PDHA1 sequencing in the state diagnostic setting. DNA from five patients with low to absent PDHC activity in fibroblasts were subjected to PDHC deficiency gene panel analysis. Included in the panel were: PDHA1, PDHB, DLAT, DLD, PDHX, BOLA3, GLRX5, IBA57, LIAS, LIPT1, LIPT2, NFU1, PDP1, PDP2, SLC19A2, SLC19A3, SLC25A19, SLC25A26, TPK1 and FBXL4. No pathogenic variants were identified in 4 out of 5 cases investigated. A homozygous frame-shift mutation was detected in the BOLA3 gene in one patient, supporting a diagnosis of multiple mitochondrial dysfunction syndrome type 2. A single, novel, homozygous BOLA3 frame-shift mutation was detected in a black South African child with severe neurodegenerative disease and very low to absent PDHC enzyme activity. This finding of a homozygous mutation in a patient from a non-consanguineous background may indicate a need for further investigation in clinically similar cases as well as heterozygous carrier rates in unaffected individuals from the same ethnic background.The paucity of identifiable mutations in 4 out of 5 South African patients with confirmed PDHC deficiency highlights the dangers in relying on Western population based genetic panels for diagnosing rare metabolic disease in genetically understudied populations."	"Eleven novel mutations and clinical characteristics in seven Chinese patients with thiamine metabolism dysfunction syndrome. Thiamine metabolism dysfunction syndrome (THMD) comprises a group of clinically and genetically heterogeneous encephalopathies with autosomal recessive inheritance. Four genes, SLC19A3, SLC25A19, SLC19A2, and TPK1, are associated with this disorder. This study aimed to explore the clinical, biochemical and molecular characteristics of seven Chinese patients with THMD. Targeted next-generation sequencing of mitochondrial DNA and nuclear DNA was used to identify the causative mutations. The patients presented with subacute encephalopathy between the ages of 1-27 months. Brain magnetic resonance imaging (MRI) revealed abnormalities in the basal ganglia, indicating Leigh syndrome. Urine α-ketoglutarate in five patients was elevated. In four patients, five novel mutations (c.1276_1278delTAC, c.265A &gt; C, c.197T &gt; C, c.850T &gt; C, whole gene deletion) were found in SLC19A3, which is associated with THMD2. In two patients, four novel mutations (c.194C &gt; T, c.454C &gt; A, c.481G &gt; A, and c.550G &gt; C) were identified in SLC25A19, supporting a diagnosis of THMD4. In one patient, two novel mutations (c.395T &gt; C and c.614-1G &gt; A) were detected in TPK1, which is indicative of THMD5. The patients received thiamine, biotin, and symptomatic therapy, upon which six patients demonstrated clinical improvement. Our findings expanded the phenotypic and genotypic spectrum of THMD, with eleven novel mutations identified in seven Chinese patients. Early diagnosis and treatment have a significant impact on prognosis."	"Single gene, two diseases, and multiple clinical presentations: Biotin-thiamine-responsive basal ganglia disease. To present seven new genetically confirmed cases of biotin-thiamin-responsive basal ganglia disease (BTBGD) with different clinical and brain magnetic resonance imaging (MRI) characteristics. Genetic variants, clinical presentations, brain MRI findings, treatment response, and prognosis of seven selected patients with BTBGD, diagnosed with SLC19A3 mutations were described. Among seven patients diagnosed with BTBGD, two had early infantile form, four had classic childhood form, and one was asymptomatic. Four different homozygous variants were found in the SLC19A3. Two patients with early infantile form presented with encephalopathy, dystonia, and refractory seizure in the neonatal period and have different variants. Their MRI findings were similar and pathognomonic for the early infantile form. Three siblings had same variants: one presented seizure and encephalopathy at the age of 4 months, one presented seizure at 14 years, and another was asymptomatic at 20 years. Only one of them had normal MRI findings, and the others MRI findings were similar and suggestive of the classic form. Other two siblings; one of them presented with developmental delay, seizure, and dystonia at 18 months and the other presented with subacute encephalopathy and ataxia at 20 months. Their MRI findings were also similar and suggestive of the classic form. BTBGD may present with dissimilar clinical characteristics or remain asymptomatic for a long time period even in a family or patients with same variants. Brain MRI patterns may be important for the early diagnosis of BTBGD that would save children's lives."	"Obesity status modifies the association between rs7556897T&gt;C in the intergenic region SLC19A3-CCL20 and blood pressure in French children. Background Growing evidence reports an association between inflammatory markers, obesity and blood pressure (BP). Specifically, the intergenic single nucleotide polymorphism (SNP) rs7556897T &gt; C (MAF = 0.34) located between SLC19A3 and the CCL20 was shown to be associated with chronic inflammatory diseases. In addition, CCL20 expression was found increased in pancreatic islets of obese rodents and human pancreatic β cells under the influence of inflammation. In this study, we hypothesized that SNP rs7556897 could affect BP levels, thus providing a link between inflammation, BP and obesity. Methods BP was measured under supine position with a manual sphygmomanometer; values reported were the means of three readings. We analyzed rs7556897 in 577 normal weight and 689 obese French children. Using real-time polymerase chain reaction (PCR), we quantified CCL20 and SLC19A3 expression in adipose tissue and peripheral blood mononuclear cells (PBMCs) of normal weight and overweight children. Results The rs7556897C allele was negatively associated with diastolic BP in normal weight children (β = -0.012 ± 0.004, p = 0.006) but positively associated in obese children (β = 2.178 ± 0.71, p = 0.002). A significant interaction between rs7556897T &gt; C and the obesity status (obese or normal weight) was detected (β = 3.49, p = 9.79 × 10-5) for BP in a combined population analysis. CCL20 mRNA was only expressed in the adipose tissue of overweight children, and its expression levels were 10.7× higher in PBMCs of overweight children than normal weight children. Finally, CCL20 mRNA levels were positively associated with rs7556897T &gt; C in PBMCs of 58 normal weight children (β = 0.43, p = 0.002). SLC19A3 was not expressed in PBMCs, and in adipose tissue, it showed same levels of expression in normal weight and overweight children. The gene expression results may highlight a specific involvement of CCL20 via communicating obesity/inflammation pathways that regulate BP. Conclusions Childhood obesity reverses the effect of rs7556897T &gt; C on diastolic BP, possibly via the modulation of CCL20 expression levels."	"[Identification of two novel SLC19A3 variants in a Chinese patient with Biotin-thiamine responsive basal ganglia disease]. To explore the genetic basis for a neonate featuring global developmental delay. Clinical and laboratory tests were carried out for the patient. Peripheral venous blood samples were collected from the neonate and his parents for the extraction of DNA. Potential variant was detected by using targeted capture and next generation sequencing for a panel of genes associated with nervous system diseases. Suspected variant was validated by Sanger sequencing. The nine-month-old boy manifested global developmental delay and was unstable to sit alone and distinguish strangers from acquaintance. Genetic testing revealed two novel variants of the SLC19A3 gene in him, namely c.448G&gt;A and c.169C&gt;T. The amino acids encoded by the two codons are highly conservative, and both variants were predicted to be pathogenic by bioinformatic analysis. The compound heterozygous c.448G&gt;A and c.169C&gt;T variants probably underlay the onset of disease in the patient. Above finding also enriched the variant spectrum of SLC19A3 gene underlying Biotin-thiamine responsive basal ganglia disease."	"Genetic heterogeneity in Leigh syndrome: Highlighting treatable and novel genetic causes. Leigh syndrome (LS), the most common childhood mitochondrial disorder, has characteristic clinical and neuroradiologic features. Mutations in more than 75 genes have been identified in both the mitochondrial and nuclear genome, implicating a high degree of genetic heterogeneity in LS. To profile these genetic signatures and understand the pathophysiology of LS, we recruited 64 patients from 62 families who were clinically diagnosed with LS at Seoul National University Children's Hospital. Mitochondrial genetic analysis followed by whole-exome sequencing was performed on 61 patients. Pathogenic variants in mitochondrial DNA were identified in 18 families and nuclear DNA mutations in 22. The following 17 genes analyzed in 40 families were found to have genetic complexity: MTATP6, MTND1, MTND3, MTND5, MTND6, MTTK, NDUFS1, NDUFV1, NDUFAF6, SURF1, SLC19A3, ECHS1, PNPT1, IARS2, NARS2, VPS13D, and NAXE. Two treatable cases had biotin-thiamine responsive basal ganglia disease, and another three were identified as having defects in the newly recognized genes (VPS13D or NAXE). Variants in the nuclear genes that encoded mitochondrial aminoacyl tRNA synthetases were present in 27.3% of cases. Our findings expand the genetic and clinical spectrum of LS, showing genetic heterogeneity and highlighting treatable cases and those with novel genetic causes."	"Neonatal form of biotin-thiamine-responsive basal ganglia disease. Clues to diagnosis. Değerliyurt A, Gündüz M, Ceylaner S, Ünal Ö, Ünal S. Neonatal form of biotin-thiamine-responsive basal ganglia disease. Clues to diagnosis. Turk J Pediatr 2019; 61: 261-266. Biotin-thiamine-responsive basal ganglia disease is characterized by seizures, dystonia and encephalopathy attacks, with an acute-subacute onset in childhood. It causes cerebral damage especially with caudate head and putamen involvement and may lead to severe sequelae and even death if left untreated. We report a patient with the neonatal form of biotin-thiamine-responsive basal ganglia disease who presented with encephalopathy and lactic acidosis in the neonatal period together with the diagnostic magnetic resonance imaging (MRI) clues. MRI in the neonatal period revealed bilateral involvement of the putamen, thalamus, and perirolandic cortical regions. However, MRI obtained at 32 months revealed involvement of the caudate nuclei in addition to the putamen and thalami. The neuroimaging findings of our patient and relevant literature indicate that patients with biotin-thiamine-responsive basal ganglia disease who are symptomatic in the neonatal period have putamen, thalami, and perirolandic cortical involvement. However, these patients do not have caudate involvement, unlike the patients who present in childhood."	"Drug-nutrient interactions: discovering prescription drug inhibitors of the thiamine transporter ThTR-2 (SLC19A3). Transporter-mediated drug-nutrient interactions have the potential to cause serious adverse events. However, unlike drug-drug interactions, these drug-nutrient interactions receive little attention during drug development. The clinical importance of drug-nutrient interactions was highlighted when a phase III clinical trial was terminated due to severe adverse events resulting from potent inhibition of thiamine transporter 2 (ThTR-2; SLC19A3). In this study, we tested the hypothesis that therapeutic drugs inhibit the intestinal thiamine transporter ThTR-2, which may lead to thiamine deficiency. For this exploration, we took a multifaceted approach, starting with a high-throughput in vitro primary screen to identify inhibitors, building in silico models to characterize inhibitors, and leveraging real-world data from electronic health records to begin to understand the clinical relevance of these inhibitors. Our high-throughput screen of 1360 compounds, including many clinically used drugs, identified 146 potential inhibitors at 200 μM. Inhibition kinetics were determined for 28 drugs with half-maximal inhibitory concentration (IC50) values ranging from 1.03 μM to &gt;1 mM. Several oral drugs, including metformin, were predicted to have intestinal concentrations that may result in ThTR-2-mediated drug-nutrient interactions. Complementary analysis using electronic health records suggested that thiamine laboratory values are reduced in individuals receiving prescription drugs found to significantly inhibit ThTR-2, particularly in vulnerable populations (e.g., individuals with alcoholism). Our comprehensive analysis of prescription drugs suggests that several marketed drugs inhibit ThTR-2, which may contribute to thiamine deficiency, especially in at-risk populations."	"Thiamine transporter 2 is involved in high glucose-induced damage and altered thiamine availability in cell models of diabetic retinopathy. Thiamine prevents high glucose-induced damage in microvasculature, and progression of retinopathy and nephropathy in diabetic animals. Impaired thiamine availability causes renal damage in diabetic patients. Two single-nucleotide polymorphisms in SLC19A3 locus encoding for thiamine transporter 2 are associated with absent/minimal diabetic retinopathy and nephropathy despite long-term type 1 diabetes. We investigated the involvement of thiamine transporter 1 and thiamine transporter 2, and their transcription factor specificity protein 1, in high glucose-induced damage and altered thiamine availability in cells of the inner blood-retinal barrier. Human endothelial cells, pericytes and Müller cells were exposed to hyperglycaemic-like conditions and/or thiamine deficiency/over-supplementation in single/co-cultures. Expression and localization of thiamine transporter 1, thiamine transporter 2 and transcription factor specificity protein 1 were evaluated together with intracellular thiamine concentration, transketolase activity and permeability to thiamine. The effects of thiamine depletion on cell function (viability, apoptosis and migration) were also addressed. Thiamine transporter 2 and transcription factor specificity protein 1 expression were modulated by hyperglycaemic-like conditions. Transketolase activity, intracellular thiamine and permeability to thiamine were decreased in cells cultured in thiamine deficiency, and in pericytes in hyperglycaemic-like conditions. Thiamine depletion reduced cell viability and proliferation, while thiamine over-supplementation compensated for thiamine transporter 2 reduction by restoring thiamine uptake and transketolase activity. High glucose and reduced thiamine determine impairment in thiamine transport inside retinal cells and through the inner blood-retinal barrier. Thiamine transporter 2 modulation in our cell models suggests its major role in thiamine transport in retinal cells and its involvement in high glucose-induced damage and impaired thiamine availability."	"Targeted SLC19A3 gene sequencing of 3000 Saudi newborn: a pilot study toward newborn screening. Biotin-thiamine-responsive basal ganglia disease (BTBGD) is an autosomal recessive neurometabolic disorder mostly presented in children. The disorder is described as having subacute encephalopathy with confusion, dystonia, and dysarthria triggered by febrile illness that leads to neuroregression and death if untreated. Using biotin and thiamine at an early stage of the disease can lead to significant improvement. BTBGD is a treatable disease if diagnosed at an early age and has been frequently reported in Saudi population. Keeping this in mind, the current study screened 3000 Saudi newborns for the SLC19A3 gene mutations using target sequencing, aiming to determine the carrier frequency in Saudi Population and whether BTBGD is a good candidate to be included in the newborn-screened disorders. Using targeted gene sequencing, DNA from 3000 newborns Saudi was screened for the SLC19A3 gene mutations using standard methods. Screening of the SLC19A3 gene revealed a previously reported heterozygous missense mutation (c.1264A&gt;G (p.Thr422Ala) in six unrelated newborns. No probands having homozygous pathogenic mutations were found in the studied cohort. The variant has been frequently reported previously in homozygous state in Saudi population, making it a hot spot mutation. The current study showed that the carrier frequency of SLC19A3 gene mutation is 1 of 500 in Saudi newborns. For the first time in the literature, we determined the carrier frequency of SLC19A3 gene mutation in Saudi population. The estimated prevalence is too rare in Saudi population (at least one in million); therefore, the data are not in favor of including such very rare disorders in newborn screening program at population level. However, a larger cohort is needed for a more accurate estimate."	"Genetic defects of thiamine transport and metabolism: A review of clinical phenotypes, genetics, and functional studies. Thiamine is a crucial cofactor involved in the maintenance of carbohydrate metabolism and participates in multiple cellular metabolic processes within the cytosol, mitochondria, and peroxisomes. Currently, four genetic defects have been described causing impairment of thiamine transport and metabolism: SLC19A2 dysfunction leads to diabetes mellitus, megaloblastic anemia and sensory-neural hearing loss, whereas SLC19A3, SLC25A19, and TPK1-related disorders result in recurrent encephalopathy, basal ganglia necrosis, generalized dystonia, severe disability, and early death. In order to achieve early diagnosis and treatment, biomarkers play an important role. SLC19A3 patients present a profound decrease of free-thiamine in cerebrospinal fluid (CSF) and fibroblasts. TPK1 patients show decreased concentrations of thiamine pyrophosphate in blood and muscle. Thiamine supplementation has been shown to improve diabetes and anemia control in Rogers' syndrome patients due to SLC19A2 deficiency. In a significant number of patients with SLC19A3, thiamine improves clinical outcome and survival, and prevents further metabolic crisis. In SLC25A19 and TPK1 defects, thiamine has also led to clinical stabilization in single cases. Moreover, thiamine supplementation leads to normal concentrations of free-thiamine in the CSF of SLC19A3 patients. Herein, we present a literature review of the current knowledge of the disease including related clinical phenotypes, treatment approaches, update of pathogenic variants, as well as in vitro and in vivo functional models that provide pathogenic evidence and propose mechanisms for thiamine deficiency in humans."	"Biotin-Thiamine Responsive Encephalopathy: Report of an Egyptian Family with a Novel SLC19A3 Mutation and Review of the Literature. Biotin-thiamine responsive basal ganglia disease (BTRBGD) is an autosomal recessive neurometabolic disorder with poor genotype-phenotype correlation, caused by mutations in the SLC19A3 gene on chromosome 2q36.6. The disease is characterized by three stages: stage 1 is a sub-acute encephalopathy often triggered by febrile illness; stage 2 is an acute encephalopathy with seizures, loss of motor function, developmental regression, dystonia, external ophthalmoplegia, dysphagia, and dysarthria; stage 3 is represented by chronic or slowly progressive encephalopathy. Clinical and biochemical findings, as well as the magnetic resonance imaging (MRI) pattern, resemble those of Leigh's syndrome, so that BTRBGD can be misdiagnosed as a mitochondrial encephalopathy.Here we report the clinical and radiological phenotypes of two siblings diagnosed with BTRBGD in which a novel SLC19A3 mutation (NM_025243.3: c.548C &gt; T; p.Ala183Val) was found by whole exome sequencing (WES) of the family members."	"[Paroxysmal crying and motor regression for more than two months in an infant]. The patient was a male who was found to be abnormal at the age of 4.5 months. He presented with irritability, motor regression and opisthotonus. Brain MRI revealed bilateral abnormality in the lentiform nucleus, thalamus, deutocerebrum and cerebellar hemispheres. Novel compound heterozygous mutations of SLC19A3 gene, c.950G&gt;A(p.G317E) and c.962C&gt;T(p.A321V), were found in the patient. Further study showed that c.950G&gt;A was inherited from his father and c.962C&gt;T came from his mother. Using bioinformatics software analysis, both of the mutations were found to be harmful. His symptoms were improved remarkably after biotin, thiamine and &quot;cocktail&quot; therapy. One month later a brain MRI revealed that the lesions in basal ganglia and cerebellar hemispheres were improved. The patient was definitely diagnosed with biotin-thiamine responsive basal ganglia disease (BTBGD). BTBGD is a treatable autosomal recessive disease and early administration of biotin and thiamine may lead to clinical improvement."	"Effect of bacterial flagellin on thiamin uptake by human and mouse pancreatic acinar cells: inhibition mediated at the level of transcription of thiamin transporters 1 and 2. Thiamin (vitamin B1) is essential for normal cellular metabolism and function. Pancreatic acinar cells (PACs) obtain thiamin from the circulation via a specific carrier-mediated process that involves the plasma membrane thiamin transporters 1 and 2 (THTR-1 and THTR-2; products of SLC19A2 and SLC19A3 genes, respectively). There is nothing known about the effect of bacterial products/toxins on thiamin uptake by PACs. We addressed this issue in the present investigation by examining the effect of bacterial flagellin on physiological and molecular parameters of thiamin uptake by PACs. We used human primary PACs, mice in vivo, and cultured mouse-derived pancreatic acinar 266-6 cells in our investigation. The results showed that exposure of human primary PACs to flagellin led to a significant inhibition in thiamin uptake; this inhibition was associated with a significant decrease in expression of THTR-1 and -2 at the protein and mRNA levels. These findings were confirmed in mice in vivo as well as in cultured 266-6 cells. Subsequent studies showed that flagellin exposure markedly suppressed the activity of the SLC19A2 and SLC19A3 promoters and that this effect involved the Sp1 regulatory factor. Finally, knocking down Toll-like receptor 5 by use of gene-specific siRNA was found to lead to abrogation in the inhibitory effect of flagellin on PAC thiamin uptake. These results show, for the first time, that exposure of PACs to flagellin negatively impacts the physiological and molecular parameters of thiamin uptake and that this effect is mediated at the level of transcription of the SLC19A2 and SLC19A3 genes. NEW &amp; NOTEWORTHY The present study demonstrates, for the first time, that prolonged exposure of pancreatic acinar cells to flagellin inhibits uptake of vitamin B1, a micronutrient that is essential for energy metabolism and ATP production. This effect is mediated at the level of transcription of the SLC19A2 and SLC19A3 genes and involves the Sp1 transcription factor."	"Biotin-Thiamine-Responsive Basal Ganglia Disease-A Treatable Metabolic Disorder. NA"	"Are diagnostic magnetic resonance patterns life-saving in children with biotin-thiamine-responsive basal ganglia disease? Biotin-thiamine responsive basal ganglia disease (BTBGD) is an autosomal recessive disorder caused by mutations in the SLC19A3 gene and characterized by recurrent sub-acute episodes of encephalopathy that typically starts in early childhood. This study describes characteristic clinical and magnetic resonance imaging (MRI) findings of six cases of BTBGD diagnosed with newly identified mutations and genetically confirmed, with very early and different presentations compared to cases in the previous literature. Six patients referred from different centers with similar clinical findings were diagnosed with BTBGD with newly identified mutations in the SLC19A3 gene. Two novel mutations in the SLC19A3 gene were identified in two patients at whole exome sequencing analysis. The clinical characteristics, responses to treatment, and electroencephalography (EEG) and MRI findings of these patients were examined. The other four patients presented with similar clinical and cranial MRI findings. These patients were therefore started on high-dose biotin and thiamine therapy, and mutation analysis concerning the SLC19A3 gene was performed. Responses to treatment, clinical courses, EEG findings and follow-up MRI were recorded for all these patients. Age at onset of symptoms ranged from 1 to 3 months. The first symptoms were generally persistent crying and restlessness. Seizures occurred in five of the six patients. Cranial magnetic resonance imaging revealed involvement in the basal ganglia, brain stem, and the parietal and frontal regions in general. The first two patients were siblings, and both exhibited a novel mutation of the SLC19A3 gene. The third and fourth patients were also siblings and also exhibited a similar novel mutation of the SLC19A3 gene. The fifth and sixth patients were not related, and a newly identified mutation was detected in both these subjects. Three novel mutations were thus detected in six patients. BTBGD is a progressive disease that can lead to severe disability and death. Early diagnosis of treatable diseases such as BTBGD is important in order to prevent long-term complications and disability."	"[Defect of thiamine transport and activation and related disease]. Thiamine, also known as vitamin B1, is an important vitamin for the body. The activated form of thiamine pyrophosphate is involved in cell metabolism as an important co-enzyme. Defects of thiamine transport and activation may cause lack of thiamine and affection of cell metabolism, leading a variety of diseases. This review has summarized defects of thiamine transport and activation and related diseases."	"High predictive value of brain MRI imaging in primary mitochondrial respiratory chain deficiency. Because the mitochondrial respiratory chain (RC) is ubiquitous, its deficiency can theoretically give rise to any symptom in any organ or tissue at any age with any mode of inheritance, owing to the twofold genetic origin of respiratory enzyme machinery, that is, nuclear and mitochondrial. Not all respiratory enzyme deficiencies are primary and secondary or artefactual deficiency is frequently observed, leading to a number of misleading conclusions and inappropriate investigations in clinical practice. This study is aimed at investigating the potential role of brain MRI in distinguishing primary RC deficiency from phenocopies and other aetiologies. Starting from a large series of 189 patients (median age: 3.5 years (8 days-56 years), 58% males) showing signs of RC enzyme deficiency, for whom both brain MRIs and disease-causing mutations were available, we retrospectively studied the positive predictive value (PPV) and the positive likelihood ratio (LR+) of brain MRI imaging and its ability to discriminate between two groups: primary deficiency of the mitochondrial RC machinery and phenocopies. Detection of (1) brainstem hyperintensity with basal ganglia involvement (P≤0.001) and (2) lactate peak with either brainstem or basal ganglia hyperintensity was highly suggestive of primary RC deficiency (P≤0.01). Fourteen items had a PPV&gt;95% and LR+ was greater than 9 for seven signs. Biallelic SLC19A3 mutations represented the main differential diagnosis. Non-significant differences between the two groups were found for cortical/subcortical atrophy, leucoencephalopathy and involvement of caudate nuclei, spinothalamic tract and corpus callosum. Based on these results and owing to invasiveness of skeletal muscle biopsies and cost of high-throughput DNA sequencing, we suggest giving consideration to brain MRI imaging as a diagnostic marker and an informative investigation to be performed in patients showing signs of RC enzyme deficiency."	"SLC19A3 related disorder: Treatment implication and clinical outcome of 2 new patients. Encephalopathies with neostriatal involvement constitute a heterogeneous group of acquired and genetically inherited conditions that include Bilateral Striatal Necrosis (BSN) and other Striatal Lesions (SL) (Tonduti et al). We describe two new patients suffering from BSN due to biallelic SLC19A3 mutations. In the first patient vitamin supplementation was started early on, resulting in the remission of the clinical picture, and an almost complete normalization of the neuroradiological findings. In the second one treatment was started late, compliance was irregular and the resulting clinical outcome was poor. The clinical outcome of our two patients confirms and further stresses the importance of the early administration of vitamin supplementation in all patients presenting with neostriatal lesions, or clear bilateral striatal necrosis. Patient 2 didn't present any additional episode of acute decompensation after the age of 20 years despite having completely stopped treatment. This suggests the existence of an age dependency of thiamin requirement in humans."	"Case 38-2017. A 20-Year-Old Woman with Seizures and Progressive Dystonia. NA"	"Early Infantile Leigh-like SLC19A3 Gene Defects Have a Poor Prognosis: Report and Review. Solute carrier family 19 (thiamine transporter), member 3 (SCL19A3) gene defect produces an autosomal recessive neurodegenerative disorder associated with different phenotypes and acronyms. One of the common presentations is early infantile lethal Leigh-like syndrome. We report a case of early infantile Leigh-like SLC19A3 gene defects of patients who died at 4 months of age with no response to a high dose of biotin and thiamine. In addition, we report a novel mutation that was not reported previously. Finally, we review the literature regarding early infantile Leigh-like SLC19A3 gene defects and compare the literature with our patient."	"Biotin Thiamin Responsive Basal Ganglia Disease in Siblings. Biotin Thiamine responsive Basal Ganglia Disease (BTBGD) is a rare treatable autosomal recessive metabolic disorder caused by mutations in SLC19A3 gene. It usually presents with encephalopathy and dystonia; if not treated, can progress to quadriparesis and death. Two Indian siblings born to a consanguineous marriage presented with regression of milestones, epilepsy and dystonia. Neuroimaging showed signal changes in basal ganglia and thalami. Genetic testing showed a homozygous missense substitution p.Gly23Val (c.68G &gt; T) in exon 2 of the SLC19A3 gene. Thus to conclude, any child who presents with neuroregression, epilepsy and dystonia in the background of basal ganglia changes on neuroimaging, a possibility of biotin thiamine responsive basal ganglia disease should be considered."	"Role of thiamine in Huntington's disease pathogenesis: In vitro studies. Oxidative stress accompanies neurodegeneration and also causes abnormalities in thiaminedependent processes. These processes have been reported to be diminished in the brains of patients with several neurodegenerative diseases. The aim of this work was to conduct a comparative analysis of the impact of supplemented thiamine on the viability of human B lymphocytes with CAG abnormal expanded huntingtin gene (mHTT) (GM13509) and control, B lymphocytes without mHTT (GM14467) through the following studies: determination of the supplemented thiamine concentrations, which are effective for cell growth stimulation after incubation in thiamine deficit conditions; determination of cell capability to intake the exogenous thiamine; evaluation of exogenous thiamine influence on the profile of the genes related to thiamine and energy metabolism; determination of ATP synthesis and activities of thiamine-dependent enzymes, KGDHC and BCKDHC in the intact cells and upon the exogenous thiamine. The following methods were used: EZ4U test for cell growth analysis; HPLC for determination of thiamine intake and ATP synthesis, qRT-PCR for evaluation of the gene profiles and spectrophotometric method for KGDHC and BCKDHC activities determination. Maximal cell growth stimulation was observed at 2.5 mM in GM14467 up to 135% of the control culture and at 5.0 mM in GM13509 cells up to 165% of the control culture. Native levels of total ATP and KGDHC and BCKDHC activities in both cell types were comparable and did not changed upon thiamine deficit or supplementation. GM13509 cells showed more of an increase in growth stimulation upon thiamine supplementation than GM14467 cells and this effect was reflected in the increase of intracellular thiamine concentration. The above results and reported changes in expression of GAPDH, IDH1 and SLC19A3 genes observed upon thiamine deficit conditions suggest that intracellular thiamine status and energy metabolism can have a role in HD pathogenesis."	"SLC19A3 Gene Defects Sorting the Phenotype and Acronyms: Review. Thiamine metabolism dysfunction syndrome type 2 is also known by other terms including: &quot;SCL19A3 gene defect,&quot; &quot;biotin-responsive basal ganglia disease&quot; (BBGD), and &quot;biotin-thiamine-responsive basal ganglia disease&quot; (BTBGD). The worldwide incidence and prevalence of this disorder are unknown, but the syndrome has primarily been reported in Saudi Arabia (52% of reported cases). It is caused by a defect in thiamine transporter 2 (hTHTR2), which is encoded by the SLC19A3 gene. The clinical presentations of these syndromes are heterogeneous and are likely related to the age of onset. They can be classified into three major categories: classical childhood BBGD; early-infantile Leigh-like syndrome/atypical infantile spasms; and adult Wernicke's-like encephalopathy. These variable phenotypes have common features in that all are triggered by stressors, such as fever, trauma, or vaccinations. Affected brain areas include the basal ganglia, cerebral cortex, thalamus, and periaqueductal regions. Free thiamine is a potential biomarker for diagnosis and monitoring of treatment. Definitive diagnosis is usually made by molecular testing for the SLC19A3 gene defect, and treatment consists of thiamine alone or in combination with biotin for life. In this report, we review all reported cases of the SLC19A3 gene defect, discuss the history, epidemiology, metabolic pathways, clinical phenotypes, biochemical abnormalities, brain pathology, diagnosis, genetic issues, and treatment of this devastating disorder. Finally, we recommend instituting an international registry to further the basic scientific and clinical research to elucidate multiple unanswered questions about SLC19A3 gene syndromes."	"Divergence in Morris Water Maze-Based Cognitive Performance under Chronic Stress Is Associated with the Hippocampal Whole Transcriptomic Modification in Mice. Individual susceptibility determines the magnitude of stress effects on cognitive function. The hippocampus, a brain region of memory consolidation, is vulnerable to stressful environments, and the impact of stress on hippocampus may determine individual variability in cognitive performance. Therefore, the purpose of this study was to define the relationship between the divergence in spatial memory performance under chronically unpredictable stress and an associated transcriptomic alternation in hippocampus, the brain region of spatial memory consolidation. Multiple strains of BXD (B6 × D2) recombinant inbred mice went through a 4-week chronic variable stress (CVS) paradigm, and the Morris water maze (MWM) test was conducted during the last week of CVS to assess hippocampal-dependent spatial memory performance and grouped animals into low and high performing groups based on the cognitive performance. Using hippocampal whole transcriptome RNA-sequencing data, differential expression, PANTHER analysis, WGCNA, Ingenuity's upstream regulator analysis in the Ingenuity Pathway Analysis® and phenotype association analysis were conducted. Our data identified multiple genes and pathways that were significantly associated with chronic stress-associated cognitive modification and the divergence in hippocampal dependent memory performance under chronic stress. Biological pathways associated with memory performance following chronic stress included metabolism, neurotransmitter and receptor regulation, immune response and cellular process. The Ingenuity's upstream regulator analysis identified 247 upstream transcriptional regulators from 16 different molecule types. Transcripts predictive of cognitive performance under high stress included genes that are associated with a high occurrence of Alzheimer's and cognitive impairments (e.g., Ncl, Eno1, Scn9a, Slc19a3, Ncstn, Fos, Eif4h, Copa, etc.). Our results show that the variable effects of chronic stress on the hippocampal transcriptome are related to the ability to complete the MWM task and that the modulations of specific pathways are indicative of hippocampal dependent memory performance. Thus, the divergence in spatial memory performance following chronic stress is related to the unique pattern of gene expression within the hippocampus."	"Thiamine deficiency in childhood with attention to genetic causes: Survival and outcome predictors. Primary and secondary conditions leading to thiamine deficiency have overlapping features in children, presenting with acute episodes of encephalopathy, bilateral symmetric brain lesions, and high excretion of organic acids that are specific of thiamine-dependent mitochondrial enzymes, mainly lactate, alpha-ketoglutarate, and branched chain keto-acids. Undiagnosed and untreated thiamine deficiencies are often fatal or lead to severe sequelae. Herein, we describe the clinical and genetic characterization of 79 patients with inherited thiamine defects causing encephalopathy in childhood, identifying outcome predictors in patients with pathogenic SLC19A3 variants, the most common genetic etiology. We propose diagnostic criteria that will aid clinicians to establish a faster and accurate diagnosis so that early vitamin supplementation is considered. Ann Neurol 2017;82:317-330."	"Thiamine metabolism is critical for regulating correlated growth of dendrite arbors and neuronal somata. Thiamine is critical for cellular function, as its phosphorylated and active form, thiamine diphosphate (TDP), acts as coenzyme for three key enzymes in glucose metabolism. Mutations in thiamine transporter, TDP synthesizing enzyme or carrier, including solute carrier family 19 member 3 (SLC19A3), thiamine pyrophosphokinase (TPK1) and solute carrier family 25 member 19 (SLC25A19), have been associated with developmental neurological disorders, including microcephaly and Leigh syndrome. However, little is known about how thiamine metabolism regulates neuronal morphology at the cellular level. Here, using primary rat hippocampal neuronal cultures, we showed that reducing the expression of Tpk1, Slc25a19 or Slc19a3 in individual neurons significantly reduced dendrite complexity, as measured by total dendritic branch tip number (TDBTN) and total dendritic branch length (TDBL). The specificity of the RNAi effects were verified by overexpression of RNAi resistant human constructs. Importantly, changes in both TDBTN and TDBL tightly correlated with reduction in soma size, demonstrating coordinated regulation of soma and dendrite growth by thiamine. The requirement of thiamine metabolism for coordinated somata and dendrite growth is highly consistent with the microcephaly and neurodegenerative phenotypes observed in thiamine loss-of-function diseases."	"Compound heterozygous SLC19A3 mutations further refine the critical promoter region for biotin-thiamine-responsive basal ganglia disease. Mutations in the gene SLC19A3 result in thiamine metabolism dysfunction syndrome 2, also known as biotin-thiamine-responsive basal ganglia disease (BTBGD). This neurometabolic disease typically presents in early childhood with progressive neurodegeneration, including confusion, seizures, and dysphagia, advancing to coma and death. Treatment is possible via supplement of biotin and/or thiamine, with early treatment resulting in significant lifelong improvements. Here we report two siblings who received a refined diagnosis of BTBGD following whole-genome sequencing. Both children inherited compound heterozygous mutations from unaffected parents; a missense single-nucleotide variant (p.G23V) in the first transmembrane domain of the protein, and a 4808-bp deletion in exon 1 encompassing the 5' UTR and minimal promoter region. This deletion is the smallest promoter deletion reported to date, further defining the minimal promoter region of SLC19A3 Unfortunately, one of the siblings died prior to diagnosis, but the other is showing significant improvement after commencement of therapy. This case demonstrates the power of whole-genome sequencing for the identification of structural variants and subsequent diagnosis of rare neurodevelopmental disorders."	"Neuropathological characteristics of the brain in two patients with SLC19A3 mutations related to the biotin-thiamine-responsive basal ganglia disease. &lt;i&gt;Biotin-thiamine-responsive basal ganglia disease is a severe form of a rare neurogenetic disorder caused by pathogenic molecular variants in the thiamine transporter gene. Nowadays, a potentially effective treatment is known, therefore the early diagnosis is mandatory. The aim of the paper was to assess the contribution of neuropathological and magnetic resonance imaging (MRI) studies to a proper diagnosis. We present the brain study of two Polish patients with SLC19A3 mutations, including (1) an infant with an intriguing &quot;walnut&quot; appearance of the brain autopsied many years before the discovery of the SLC19A3 defect, and (2) a one-year-old patient with clinical features of Leigh syndrome. In patient 2, biotin/thiamine responsiveness was not tested at the time of diagnosis and causal treatment started with one-year delay. The central nervous system lesions found in the patients displayed almost clearly a specific pattern for SLC19A3 defect, as previously proposed in diagnostic criteria. Our study presents a detailed description of neuropathological and MRI findings of both patients. We confirm that the autopsy and/or MRI of the brain is sufficient to qualify a patient with an unknown neuropathological disorder directly for SLC19A3 mutations testing and a prompt trial of specific treatment. &lt;/i&gt;."	"High-dose thiamine prevents brain lesions and prolongs survival of Slc19a3-deficient mice. SLC19A3 deficiency, also called thiamine metabolism dysfunction syndrome-2 (THMD2; OMIM 607483), is an autosomal recessive neurodegenerative disorder caused by mutations in SLC19A3, the gene encoding thiamine transporter 2. To investigate the molecular mechanisms of neurodegeneration in SLC19A3 deficiency and whether administration of high-dose thiamine prevents neurodegeneration, we generated homozygous Slc19a3 E314Q knock-in (KI) mice harboring the mutation corresponding to the human SLC19A3 E320Q, which is associated with the severe form of THMD2. Homozygous KI mice and previously reported homozygous Slc19a3 knock-out (KO) mice fed a thiamine-restricted diet (thiamine: 0.60 mg/100 g food) died within 30 and 12 days, respectively, with dramatically decreased thiamine concentration in the blood and brain, acute neurodegeneration, and astrogliosis in the submedial nucleus of the thalamus and ventral anterior-lateral complex of the thalamus. These findings may bear some features of thiamine-deficient mice generated by pyrithiamine injection and a thiamine-deficient diet, suggesting that the primary cause of THMD2 could be thiamine pyrophosphate (TPP) deficiency. Next, we analyzed the therapeutic effects of high-dose thiamine treatment. When the diet was reverted to a conventional diet (thiamine: 1.71 mg/100 g food) after thiamine restriction, all homozygous KO mice died. In contrast, when the diet was changed to a high-thiamine diet (thiamine: 8.50 mg/100 g food) after thiamine restriction, more than half of homozygous KO mice survived, without progression of brain lesions. Unexpectedly, when the high-thiamine diet of recovered mice was reverted to a conventional diet, some homozygous KO mice died. These results showed that acute neurodegeneration caused by thiamine deficiency is preventable in most parts, and prompt high-dose thiamine administration is critical for the treatment of THMD2. However, reduction of thiamine should be performed carefully to prevent recurrence after recovery of the disease."	"Biotin-thiamine responsive basal ganglia disease: Identification of a pyruvate peak on brain spectroscopy, novel mutation in SLC19A3, and calculation of prevalence based on allele frequencies from aggregated next-generation sequencing data. Biotin-thiamine responsive basal ganglia disease is an inborn error of metabolism caused by mutations in SLC19A3, encoding a transporter of thiamine across the plasma membrane. We report a novel mutation identified in the homozygous state in a patient with typical brain MRI changes. In addition, this patient had markedly elevated CSF pyruvate, a low lactate-to-pyruvate molar ratio, and an abnormal pyruvate peak at 2.4 ppm on brain magnetic resonance spectroscopy. Using aggregated exome sequencing data, we calculate the carrier frequency of mutations in SLC19A3 as 1 in 232 individuals in the general population, for an estimated prevalence of the disease of approximately 1 in 215,000 individuals. The disease is thus more frequent than previously recognized, and the presence of a pyruvate peak on spectroscopy could serve as an important diagnostic clue."	"Treatable Inborn Errors of Metabolism Due to Membrane Vitamin Transporters Deficiency. B vitamins act as cofactors for strategic metabolic processes. The SLC19 gene family of solute carriers has a significant structural similarity, transporting substrates with different structure and ionic charge. Three proteins of this family are expressed ubiquitously and mediate the transport of 2 important water-soluble vitamins, folate, and thiamine. SLC19A1 transports folate and SLC19A2 and SLC19A3 transport thiamine. PCFT and FOLR1 ensure intestinal absorption and transport of folate through the blood-brain barrier and SLC19A25 transports thiamine into the mitochondria. Several damaging genetic defects in vitamin B transport and metabolism have been reported. The most relevant feature of thiamine and folate transport defects is that both of them are treatable disorders. In this article, we discuss the biology and transport of thiamine and folate, as well as the clinical phenotype of the genetic defects."	"Biotin-thiamine-responsive basal ganglia disease: catastrophic consequences of delay in diagnosis and treatment. Biotin-thiamine-responsive basal ganglia disease (BTBGD) is an autosomal recessive neurometabolic disorder caused by mutations in the SLC19A3 gene. The disease is characterized by subacute encephalopathy with confusion, dysphagia, dysarthria, and seizures. We diagnosed a family affected by BTBGD and studied them including prognosis of cases when diagnosed and treated early in the disease process. We also review the literature comprehensively and summarize all published data about this disorder. Since its first description, a total of 89 cases (46 females and 43 males) have been published in the literature. We studied six patients in this article in which three died before a diagnosis was established, one was diagnosed lately and is currently severely affected, and two were diagnosed early and are currently stable on treatment. The clinical phenotype of each family member was studied in details. In addition, a genetic testing was performed using whole exome sequencing and Sanger sequencing which demonstrated a previously reported homozygous mutation in exon 5 of the SLC19A3 gene c.1264A&gt;G (p.Thr422Ala). BTBGD is a treatable condition if recognized early and managed appropriately. The recognition of this disorder is important to avoid incorrect diagnosis and mismanagement. Children presenting with unexplained encephalopathy and MRI abnormalities including bilateral signal alteration of caudate nucleus and putamen should raise the suspicion for BTBGD and be started immediately on biotin and thiamine regimen since the prognosis of the disease is affected by the timing of treatment initiation. We present a large family affected with this disorder with severe interfamilial variability and different prognosis despite having the same mutation and same environment. A clear genotype-phenotype correlation and the clinical heterogeneity remain to be elucidated. Bad prognostic factors observed in our review include early onset of the disease, missed or delayed diagnosis, systemic involvements including respiratory failure and rhabdomyolysis, and severe neurological deficit or radiological changes at the time of diagnosis and treatment initiation. We observed during our literature review that all patients who presented since birth died despite aggressive treatment. This observation may illustrate that early presentation and disease process leads to a more catastrophic outcome."	"Role of HIF-1α in the hypoxia inducible expression of the thiamine transporter, SLC19A3. Ensuring continuous intracellular supply of thiamine is essential to maintain metabolism. Cellular homeostasis requires the function of the membrane bound thiamine transporters THTR1 and THTR2. In the absence of increased dietary intake of thiamine, varying intracellular levels to meet metabolic demands during pathophysiological stressors, such as hypoxia, requires adaptive regulatory mechanisms to increase thiamine transport capacity. Previous work has established the up-regulation of SLC19A3 (THTR2) gene expression and activity during hypoxic stress through the activity of the hypoxia inducible transcription factor 1 alpha (HIF-1α). However, it is unknown whether HIF-1α acts directly or indirectly to trans-activate expression of SLC19A3. This work utilized the breast cancer cell line BT-474 treated with 1% O2 or a hypoxia chemical mimetic deferoxamine to determine the minimal promoter region of SLC19A3 responsible for hypoxia responsiveness. In silico sequence analysis determined two contiguous hypoxia responsive elements in close proximity to the transcriptional start site of the SLC19A3 gene. Using a HIF-1α transcriptional factor ELISA assay, HIF-1α was capable of binding to a dsDNA construct of the SLC19A3 minimal promoter. Chromatin immunoprecipitation assay established that SP1 was bound to the SLC19A3 minimal promoter region under normoxic conditions. However, HIF-1α binding to the minimal promoter region occurred during hypoxic treatments, while no SP1 binding was observed under these conditions. This work demonstrates the direct binding and activation of SLC19A3 expression by HIF-1α during hypoxic stress, suggesting an important adaptive regulatory role for HIF-1α in maintaining thiamine homeostasis."	"Interaction of 2,4-Diaminopyrimidine-Containing Drugs Including Fedratinib and Trimethoprim with Thiamine Transporters. Inhibition of thiamine transporters has been proposed as a putative mechanism for the observation of Wernicke's encephalopathy and subsequent termination of clinical development of fedratinib, a Janus kinase inhibitor (JAKi). This study aimed to determine the potential for other JAKi to inhibit thiamine transport using human epithelial colorectal adenocarcinoma (Caco-2) and thiamine transporter (THTR) overexpressing cells and to better elucidate the structural basis for interacting with THTR. Only JAKi containing a 2,4-diaminopyrimidine were observed to inhibit thiamine transporters. Fedratinib inhibited thiamine uptake into Caco-2 cells (IC50 = 0.940 µM) and THTR-2 (IC50 = 1.36 µM) and, to a lesser extent, THTR-1 (IC50 = 7.10 µM) overexpressing cells. Two other JAKi containing this moiety, AZD1480 and cerdulatinib, were weaker inhibitors of the thiamine transporters. Other JAKi-including monoaminopyrimidines, such as momelotinib, and nonaminopyrimidines, such as filgotinib-did not have any inhibitory effects on thiamine transport. A pharmacophore model derived from the minimized structure of thiamine suggests that 2,4-diaminopyrimidine-containing compounds can adopt a conformation matching several key features of thiamine. Further studies with drugs containing a 2,4-diaminopyrimidine resulted in the discovery that the antibiotic trimethoprim also potently inhibits thiamine uptake mediated by THTR-1 (IC50 = 6.84 µM) and THTR-2 (IC50 = 5.56 µM). Fedratinib and trimethoprim were also found to be substrates for THTR, a finding with important implications for their disposition in the body. In summary, our results show that not all JAKi have the potential to inhibit thiamine transport and further establish the interaction of these transporters with xenobiotics."	"A case report of biotin-thiamine-responsive basal ganglia disease in a Saudi child: Is extended genetic family study recommended? Biotin-thiamine-responsive basal ganglia disease (BTRBGD) is a neurometabolic autosomal recessive (AR) disorder characterized by subacute encephalopathy with confusion, convulsions, dysarthria, and dystonia. The disease is completely reversible if treated early with biotin and thiamine, and can be fatal if left untreated.We herein present our experience with in an extended family study of an index case of BTRBGD aiming to support its AR mode of inheritance, diagnose asymptomatic and missed symptomatic cases, and provide family screening with proper genetic counseling. An index case of BTRBGD and his family underwent thorough clinical and radiological assessment along with genetic molecular testing. Two-and-half years old Saudi male child whose parents are consanguineous fulfilled the clinical and magnetic resonance imaging (MRI) criteria of BTRBGD. He was proved by molecular genetic testing to have homozygous mutation of c.1264A&gt;G (p.Thr422Ala) in the SLC19A3 gene of BTRBGD. Extended clinical, radiological, and genetic family study revealed 2 affected members: a neglected symptomatic cousin with subtle neurological affection and an asymptomatic brother carrying the disease mutation in homozygous status. Heterozygous pattern was detected in his parents, his grandma and grandpa, his aunt and her husband, 2 siblings, and 1 cousin while 1 sibling and 2 cousins were negative to this mutation.Treatment of the patient and his diseased cousin with biotin and thiamine was initiated with gradual improvement of symptoms within few days. Treatment of his asymptomatic brother was also initiated. BTRBGD requires high index of suspicion in any child presenting with unexplained subacute encephalopathy, abnormal movement, and characteristic MRI findings. Extended family study is crucial to diagnose asymptomatic diseased cases and those with subtle neurological symptoms."	"Teaching NeuroImages: An extremely rare cause of treatable acute encephalopathy. NA"	"Selective accumulation of biotin in arterial chemoreceptors: requirement for carotid body exocytotic dopamine secretion. Biotin, a vitamin whose main role is as a coenzyme for carboxylases, accumulates at unusually large amounts within cells of the carotid body (CB). In biotin-deficient rats biotin rapidly disappears from the blood; however, it remains at relatively high levels in CB glomus cells. The CB contains high levels of mRNA for SLC5a6, a biotin transporter, and SLC19a3, a thiamine transporter regulated by biotin. Animals with biotin deficiency exhibit pronounced metabolic lactic acidosis. Remarkably, glomus cells from these animals have normal electrical and neurochemical properties. However, they show a marked decrease in the size of quantal dopaminergic secretory events. Inhibitors of the vesicular monoamine transporter 2 (VMAT2) mimic the effect of biotin deficiency. In biotin-deficient animals, VMAT2 protein expression decreases in parallel with biotin depletion in CB cells. These data suggest that dopamine transport and/or storage in small secretory granules in glomus cells depend on biotin. Biotin is a water-soluble vitamin required for the function of carboxylases as well as for the regulation of gene expression. Here, we report that biotin accumulates in unusually large amounts in cells of arterial chemoreceptors, carotid body (CB) and adrenal medulla (AM). We show in a biotin-deficient rat model that the vitamin rapidly disappears from the blood and other tissues (including the AM), while remaining at relatively high levels in the CB. We have also observed that, in comparison with other peripheral neural tissues, CB cells contain high levels of SLC5a6, a biotin transporter, and SLC19a3, a thiamine transporter regulated by biotin. Biotin-deficient rats show a syndrome characterized by marked weight loss, metabolic lactic acidosis, aciduria and accelerated breathing with normal responsiveness to hypoxia. Remarkably, CB cells from biotin-deficient animals have normal electrophysiological and neurochemical (ATP levels and catecholamine synthesis) properties; however, they exhibit a marked decrease in the size of quantal catecholaminergic secretory events, which is not seen in AM cells. A similar differential secretory dysfunction is observed in CB cells treated with tetrabenazine, a selective inhibitor of the vesicular monoamine transporter 2 (VMAT2). VMAT2 is highly expressed in glomus cells (in comparison with VMAT1), and in biotin-deficient animals VMAT2 protein expression decreases in parallel with the decrease of biotin accumulated in CB cells. These data suggest that biotin has an essential role in the homeostasis of dopaminergic transmission modulating the transport and/or storage of transmitters within small secretory granules in glomus cells."	"New perspective in diagnostics of mitochondrial disorders: two years' experience with whole-exome sequencing at a national paediatric centre. Whole-exome sequencing (WES) has led to an exponential increase in identification of causative variants in mitochondrial disorders (MD). We performed WES in 113 MD suspected patients from Polish paediatric reference centre, in whom routine testing failed to identify a molecular defect. WES was performed using TruSeqExome enrichment, followed by variant prioritization, validation by Sanger sequencing, and segregation with the disease phenotype in the family. Likely causative mutations were identified in 67 (59.3 %) patients; these included variants in mtDNA (6 patients) and nDNA: X-linked (9 patients), autosomal dominant (5 patients), and autosomal recessive (47 patients, 11 homozygotes). Novel variants accounted for 50.5 % (50/99) of all detected changes. In 47 patients, changes in 31 MD-related genes (ACAD9, ADCK3, AIFM1, CLPB, COX10, DLD, EARS2, FBXL4, MTATP6, MTFMT, MTND1, MTND3, MTND5, NAXE, NDUFS6, NDUFS7, NDUFV1, OPA1, PARS2, PC, PDHA1, POLG, RARS2, RRM2B, SCO2, SERAC1, SLC19A3, SLC25A12, TAZ, TMEM126B, VARS2) were identified. The ACAD9, CLPB, FBXL4, PDHA1 genes recurred more than twice suggesting higher general/ethnic prevalence. In 19 cases, variants in 18 non-MD related genes (ADAR, CACNA1A, CDKL5, CLN3, CPS1, DMD, DYSF, GBE1, GFAP, HSD17B4, MECP2, MYBPC3, PEX5, PGAP2, PIGN, PRF1, SBDS, SCN2A) were found. The percentage of positive WES results rose gradually with increasing probability of MD according to the Mitochondrial Disease Criteria (MDC) scale (from 36 to 90 % for low and high probability, respectively). The percentage of detected MD-related genes compared with non MD-related genes also grew with the increasing MD likelihood (from 20 to 97 %). Molecular diagnosis was established in 30/47 (63.8 %) neonates and in 17/28 (60.7 %) patients with basal ganglia involvement. Mutations in CLPB, SERAC1, TAZ genes were identified in neonates with 3-methylglutaconic aciduria (3-MGA) as a discriminative feature. New MD-related candidate gene (NDUFB8) is under verification. We suggest WES rather than targeted NGS as the method of choice in diagnostics of MD in children, including neonates with 3-MGA aciduria, who died without determination of disease cause and with limited availability of laboratory data. There is a strong correlation between the degree of MD diagnosis by WES and MD likelihood expressed by the MDC scale."	"Dysfunctional protection against advanced glycation due to thiamine metabolism abnormalities in gestational diabetes. While the pathogenic role of dicarbonyl stress and accelerated formation of advanced glycation end products (AGEs) to glucose intolerance and to the development of diabetic complications is well established, little is known about these processes in gestational diabetes mellitus (GDM), a condition pathogenically quite similar to type 2 diabetes. The aims of the present study were (i) to determine plasma thiamine and erythrocyte thiamine diphosphate (TDP) and transketolase (TKT) activity in pregnant women with and without GDM, (ii) to assess relationships between thiamine metabolism parameters and selected clinical, biochemical and anthropometric characteristics and, finally, (iii) to analyse relationship between variability in the genes involved in the regulation of transmembrane thiamine transport (i.e. SLC19A2 and SLC19A3) and relevant parameters of thiamine metabolism. We found significantly lower plasma BMI adjusted thiamine in women with GDM (P = 0.002, Mann-Whitney) while levels of erythrocyte TDP (an active TKT cofactor) in mid-trimester were significantly higher in GDM compared to controls (P = 0.04, Mann-Whitney). However, mid-gestational TKT activity - reflecting pentose phosphate pathway activity - did not differ between the two groups (P &gt; 0.05, Mann-Whitney). Furthermore, we ascertained significant associations of postpartum TKT activity with SNPs SLC19A2 rs6656822 and SLC19A3 rs7567984 (P = 0.03 and P = 0.007, resp., Kruskal-Wallis). Our findings of increased thiamine delivery to the cells without concomitant increase of TKT activity in women with GDM therefore indicate possible pathogenic role of thiamine mishandling in GDM. Further studies are needed to determine its contribution to maternal and/or neonatal morbidity."	"Treatment of genetic defects of thiamine transport and metabolism. Thiamine is a key cofactor for energy metabolism in brain tissue. There are four major genetic defects (SLC19A2, SLC19A3, SLC25A19 and TPK1) involved in the metabolism and transport of thiamine through cellular and mitochondrial membranes. Neurological involvement predominates in three of them (SLC19A3, SCL25A19 and TPK1), whereas patients with SLC19A2 mutations mainly present extra-neurological features (e.g. diabetes mellitus, megaloblastic anaemia and sensori-neural hearing loss). These genetic defects may be amenable to therapeutic intervention with vitamins supplementation and hence, constitutes a main area of research. We conducted a literature review of all reported cases with these genetic defects, and focused our paper on treatment efficacy and safety, adverse effects, dosing and treatment monitoring. Expert commentary: Doses of thiamine vary according to the genetic defect: for SLC19A2, the usual dose is 25-200 mg/day (1-4 mg/kg per day), for SLC19A3, 10-40 mg/kg per day, and for TPK1, 30 mg/kg per day. Thiamine supplementation in SLC19A3-mutated patients restores CSF and intracellular thiamine levels, resulting in successful clinical benefits. In conclusion, evidence collected so far suggests that the administration of thiamine improves outcome in SLC19A-2, SLC19A3- and TPK1-mutated patients, so most efforts should be aimed at early diagnosis of these disorders."	"CDKN2B, SLC19A3 and DLEC1 promoter methylation alterations in the bone marrow of patients with acute myeloid leukemia during chemotherapy. Previous studies have demonstrated that promoter hypermethylation of tumor suppressor genes contributes to the occurrence and development of acute myeloid leukemia (AML). However, the association of DNA methylation with chemotherapeutic outcomes remains unknown. In the present study, 15 patients with AML were recruited, and the promoter methylation status of cyclin-dependent kinase inhibitor 2B (CDKN2B), solute carrier family 19 member 3 (SLC19A3) and deleted in lung and esophageal cancer 1 (DLEC1) genes was examined prior to and following various chemotherapeutic regimens in order to identify any alterations. The results suggested that chemotherapy-induced hypermethylation of CDKN2B and DLEC1 may be specific to males and females, respectively, and that there were no alterations in SLC19A3 methylation following chemotherapy. These results may provide an improved understanding of gene methylation to guide the development of an individualized chemotherapy for AML. Due to the complexity of AML and the wide range of treatment types, future studies with a larger sample size are required in order to verify the results of the present investigation."	"Teaching NeuroImages: Biotin-responsive basal ganglia disease. NA"	"Biotin and Thiamine Responsive Basal Ganglia Disease--A vital differential diagnosis in infants with severe encephalopathy. We report two siblings of Swedish origin with infantile Biotin and Thiamine Responsive Basal Ganglia Disease (BTRBG). Initial symptoms were in both cases lethargia, with reduced contact and poor feeding from the age of 5 weeks. Magnetic resonance imaging showed altered signal in the basal ganglia, along with grey and white matter abnormalities. The diagnosis BTRBG was not recognized in the first sibling who died at the age of 8 weeks. The second sibling was started on biotin and thiamine immediately upon development of symptoms, leading to clinical improvement and partial reversion of the magnetic resonance imaging findings. Genetic analysis of the SLC19A3 gene identified two mutations, c.74dupT and c.1403delA, carried in compound heterozygous form in both boys, each inherited from one parent. The first mutation has previously been described in children with BTRBG, and the second mutation is novel. Although the clinical picture in BTRGB is very severe it is also rather unspecific and the diagnosis may be missed. This report highlights the importance of considering biotin and thiamine treatment also in a European infant born to non-consanguineous parents, who presents with symptoms of acute/subacute encephalopathy."	"Teaching NeuroImages: MRI findings of biotin-responsive basal ganglia disease before and after treatment. NA"	"Novel SLC19A3 Promoter Deletion and Allelic Silencing in Biotin-Thiamine-Responsive Basal Ganglia Encephalopathy. Biotin-thiamine responsive basal ganglia disease is a severe, but potentially treatable disorder caused by mutations in the SLC19A3 gene. Although the disease is inherited in an autosomal recessive manner, patients with typical phenotypes carrying single heterozygous mutations have been reported. This makes the diagnosis uncertain and may delay treatment. In two siblings with early-onset encephalopathy dystonia and epilepsy, whole-exome sequencing revealed a novel single heterozygous SLC19A3 mutation (c.337T&gt;C). Although Sanger-sequencing and copy-number analysis revealed no other aberrations, RNA-sequencing in brain tissue suggested the second allele was silenced. Whole-genome sequencing resolved the genetic defect by revealing a novel 45,049 bp deletion in the 5'-UTR region of the gene abolishing the promoter. High dose thiamine and biotin therapy was started in the surviving sibling who remains stable. In another patient two novel compound heterozygous SLC19A3 mutations were found. He improved substantially on thiamine and biotin therapy. We show that large genomic deletions occur in the regulatory region of SLC19A3 and should be considered in genetic testing. Moreover, our study highlights the power of whole-genome sequencing as a diagnostic tool for rare genetic disorders across a wide spectrum of mutations including non-coding large genomic rearrangements."	"Association of EP2 receptor and SLC19A3 in regulating breast cancer metastasis. Breast cancer is the most common cancer in women worldwide. Triple-negative breast cancer patients have higher metastatic rate than patients with other breast cancer subtypes. Distant metastasis is one of the causes leading to the high mortality rates. Cyclooxygenase-2 (COX2) is associated with breast cancer metastasis and the downstream prostaglandin E2 (PGE2) exerted its effect through EP receptors (EP1-EP4). However, the exact molecular events of EP receptors in breast cancer metastasis remain undefined. Expressions of EP receptors were determined during cancer development in NOD-SCID mice inoculated with MB-231 and MB-231-EP2 clone. EP2 overexpressing stable clone was constructed to investigate the proliferation and invasion potentials in vivo and in vitro. Drug transporter array was used to identify EP2 receptor-associated drug transported genes in breast cancer metastasis. Localization of EP2 receptor in primary tissues and xenografts were examined by immunostaining. Stable EP2-expression cells formed larger tumors than parental cells in mice model and was highly expressed in both primary and metastatic tissues. Silencing of EP2 receptor by siRNA and antagonist (AH 6809) significantly decreased cell proliferation and invasion, concomitant with reduced MMP-2 and MMP-9 expressions. Results from array data showed that expression of SLC19A3 was markedly increased in EP2 siRNA transfected cells. Ectopic expression of SLC19A3 retarded cell proliferation, invasion and MMPs expressions. Notably, SLC19A3 had a lower expression in primary tissues and was negatively correlated with EP2 receptor expression. Our novel finding revealed that EP2 receptor regulated metastasis through downregulation of SLC19A3. Thus, targeting EP2-SLC19A3 signaling is a potential therapeutic therapy for treating metastatic breast cancer. "	"Variation in SLC19A3 and Protection From Microvascular Damage in Type 1 Diabetes. The risk of long-term diabetes complications is not fully explained by diabetes duration or long-term glycemic exposure, suggesting the involvement of genetic factors. Because thiamine regulates intracellular glucose metabolism and corrects for multiple damaging effects of high glucose, we hypothesized that variants in specific thiamine transporters are associated with risk of severe retinopathy and/or severe nephropathy because they modify an individual's ability to achieve sufficiently high intracellular thiamine levels. We tested 134 single nucleotide polymorphisms (SNPs) in two thiamine transporters (SLC19A2/3) and their transcription factors (SP1/2) for an association with severe retinopathy or nephropathy or their combination in the FinnDiane cohort. Subsequently, the results were examined for replication in the DCCT/EDIC and Wisconsin Epidemiologic Study of Diabetic Retinopathy (WESDR) cohorts. We found two SNPs in strong linkage disequilibrium in the SLC19A3 locus associated with a reduced rate of severe retinopathy and the combined phenotype of severe retinopathy and end-stage renal disease. The association for the combined phenotype reached genome-wide significance in a meta-analysis that included the WESDR cohort. These findings suggest that genetic variations in SLC19A3 play an important role in the pathogenesis of severe diabetic retinopathy and nephropathy and may explain why some individuals with type 1 diabetes are less prone than others to develop microvascular complications."	"Free-thiamine is a potential biomarker of thiamine transporter-2 deficiency: a treatable cause of Leigh syndrome. Thiamine transporter-2 deficiency is caused by mutations in the SLC19A3 gene. As opposed to other causes of Leigh syndrome, early administration of thiamine and biotin has a dramatic and immediate clinical effect. New biochemical markers are needed to aid in early diagnosis and timely therapeutic intervention. Thiamine derivatives were analysed by high performance liquid chromatography in 106 whole blood and 38 cerebrospinal fluid samples from paediatric controls, 16 cerebrospinal fluid samples from patients with Leigh syndrome, six of whom harboured mutations in the SLC19A3 gene, and 49 patients with other neurological disorders. Free-thiamine was remarkably reduced in the cerebrospinal fluid of five SLC19A3 patients before treatment. In contrast, free-thiamine was slightly decreased in 15.2% of patients with other neurological conditions, and above the reference range in one SLC19A3 patient on thiamine supplementation. We also observed a severe deficiency of free-thiamine and low levels of thiamine diphosphate in fibroblasts from SLC19A3 patients. Surprisingly, pyruvate dehydrogenase activity and mitochondrial substrate oxidation rates were within the control range. Thiamine derivatives normalized after the addition of thiamine to the culture medium. In conclusion, we found a profound deficiency of free-thiamine in the CSF and fibroblasts of patients with thiamine transporter-2 deficiency. Thiamine supplementation led to clinical improvement in patients early treated and restored thiamine values in fibroblasts and cerebrospinal fluid. "	"Chronic Nicotine Exposure In Vivo and In Vitro Inhibits Vitamin B1 (Thiamin) Uptake by Pancreatic Acinar Cells. Thiamin (vitamin B1), a member of the water-soluble family of vitamins, is essential for normal cellular functions; its deficiency results in oxidative stress and mitochondrial dysfunction. Pancreatic acinar cells (PAC) obtain thiamin from the circulation using a specific carrier-mediated process mediated by both thiamin transporters -1 and -2 (THTR-1 and THTR-2; encoded by the SLC19A2 and SLC19A3 genes, respectively). The aim of the current study was to examine the effect of chronic exposure of mouse PAC in vivo and human PAC in vitro to nicotine (a major component of cigarette smoke that has been implicated in pancreatic diseases) on thiamin uptake and to delineate the mechanism involved. The results showed that chronic exposure of mice to nicotine significantly inhibits thiamin uptake in murine PAC, and that this inhibition is associated with a marked decrease in expression of THTR-1 and THTR-2 at the protein, mRNA and hnRNAs level. Furthermore, expression of the important thiamin-metabolizing enzyme, thiamin pyrophosphokinase (TPKase), was significantly reduced in PAC of mice exposed to nicotine. Similarly, chronic exposure of cultured human PAC to nicotine (0.5 μM, 48 h) significantly inhibited thiamin uptake, which was also associated with a decrease in expression of THTR-1 and THTR-2 proteins and mRNAs. This study demonstrates that chronic exposure of PAC to nicotine impairs the physiology and the molecular biology of the thiamin uptake process. Furthermore, the study suggests that the effect is, in part, mediated through transcriptional mechanism(s) affecting the SLC19A2 and SLC19A3 genes. "	"Metformin Is a Substrate and Inhibitor of the Human Thiamine Transporter, THTR-2 (SLC19A3). The biguanide metformin is widely used as first-line therapy for the treatment of type 2 diabetes. Predominately a cation at physiological pH's, metformin is transported by membrane transporters, which play major roles in its absorption and disposition. Recently, our laboratory demonstrated that organic cation transporter 1, OCT1, the major hepatic uptake transporter for metformin, was also the primary hepatic uptake transporter for thiamine, vitamin B1. In this study, we tested the reverse, i.e., that metformin is a substrate of thiamine transporters (THTR-1, SLC19A2, and THTR-2, SLC19A3). Our study demonstrated that human THTR-2 (hTHTR-2), SLC19A3, which is highly expressed in the small intestine, but not hTHTR-1, transports metformin (Km = 1.15 ± 0.2 mM) and other cationic compounds (MPP(+) and famotidine). The uptake mechanism for hTHTR-2 was pH and electrochemical gradient sensitive. Furthermore, metformin as well as other drugs including phenformin, chloroquine, verapamil, famotidine, and amprolium inhibited hTHTR-2 mediated uptake of both thiamine and metformin. Species differences in the substrate specificity of THTR-2 between human and mouse orthologues were observed. Taken together, our data suggest that hTHTR-2 may play a role in the intestinal absorption and tissue distribution of metformin and other organic cations and that the transporter may be a target for drug-drug and drug-nutrient interactions. "	"Carrier Testing in Known Autosomal Recessive Intellectual Disability Genes in an Iranian Healthy Individual Using Exome Sequencing. Intellectual Disability (ID) is one of the most common disabling impairments worldwide. Autosomal recessive ID (ARID), a genetically heterogeneous disorder, is more common in countries such as Iran where the rate of consanguineous marriages is high. Considering the social-economic burden of ARID in our country, it is crucial to find out whether couples who are cousins are carriers for disease causing mutations, in order to prevent the birth of an affected child. Using exome sequencing, we screened known ARID genes in a normal individual to identify possible mutations in heterozygous form. We identified four protein coding alleles which possibly affect protein function, in different ID genes: PMM2, RBM28, SLC19A3, and VPS13B. These findings can be used to prevent the birth of children with ARID by checking the other partner for possible disease causing variants."	"Teaching NeuroImages: Subacute encephalopathy in a young woman with THTR2 gene mutation. NA"	"Family-based genome scan for age at onset of late-onset Alzheimer's disease in whole exome sequencing data. Alzheimer's disease (AD) is a common and complex neurodegenerative disease. Age at onset (AAO) of AD is an important component phenotype with a genetic basis, and identification of genes in which variation affects AAO would contribute to identification of factors that affect timing of onset. Increase in AAO through prevention or therapeutic measures would have enormous benefits by delaying AD and its associated morbidities. In this paper, we performed a family-based genome-wide association study for AAO of late-onset AD in whole exome sequence data generated in multigenerational families with multiple AD cases. We conducted single marker and gene-based burden tests for common and rare variants, respectively. We combined association analyses with variance component linkage analysis, and with reference to prior studies, in order to enhance evidence of the identified genes. For variants and genes implicated by the association study, we performed a gene-set enrichment analysis to identify potential novel pathways associated with AAO of AD. We found statistically significant association with AAO for three genes (WRN, NTN4 and LAMC3) with common associated variants, and for four genes (SLC8A3, SLC19A3, MADD and LRRK2) with multiple rare-associated variants that have a plausible biological function related to AD. The genes we have identified are in pathways that are strong candidates for involvement in the development of AD pathology and may lead to a better understanding of AD pathogenesis. "	"Treatment of biotin-responsive basal ganglia disease: Open comparative study between the combination of biotin plus thiamine versus thiamine alone. To compare the combination of biotin plus thiamine to thiamine alone in treating patients with biotin-responsive basal ganglia disease in an open-label prospective, comparative study. twenty patients with genetically proven biotin-responsive basal ganglia disease were enrolled, and received for at least 30 months a combination of biotin plus thiamine or thiamine alone. The outcome measures included duration of the crisis, number of recurrence/admissions, the last neurological examination, the severity of dystonia using the Burke-Fahn-Marsden Dystonia Rating Scale (BFMDRS), and the brain MRI findings during the crisis and after 30 months of follow-up. Ten children with a mean age of 6 years(1/2) were recruited in the biotin plus thiamine group (group 1) and ten children (6 females and 4 males) with a mean age of 6 years and 2 months were recruited in the thiamine group (group 2). After 2 years of follow-up treatment, 6 of 20 children achieved complete remission, 10 had minimal sequelae in the form of mild dystonia and dysarthria (improvement of the BFMDRS, mean: 80%), and 4 had severe neurologic sequelae. All these 4 patients had delayed diagnosis and management. Regarding outcome measures, both groups have a similar outcome regarding the number of recurrences, the neurologic sequelae (mean BFMDS score between the groups, p = 0.84), and the brain MRI findings. The only difference was the duration of the acute crisis: group 1 had faster recovery (2 days), versus 3 days in group 2 (p = 0.005). Our study suggests that over 30 months of treatment, the combination of biotin plus thiamine is not superior to thiamine alone in the treatment of biotin-responsive basal ganglia disease."	"Emerging aspects of treatment in mitochondrial disorders. Mitochondrial diseases are clinically, biochemically and genetically heterogeneous disorders of two genomes, for which effective curative therapies are currently lacking. With the exception of a few rare vitamin/cofactor responsive conditions (including ACAD9 deficiency, disorders of coenzyme Q(10) biosynthesis, and Leigh syndrome caused by mutations in the SLC19A3 transporter), the mainstay of treatment for the vast majority of patients involves supportive measures. The search for a cure for mitochondrial disease is the subject of intensive research efforts by many investigators across the globe, but the goal remains elusive. The clinical and genetic heterogeneity, multisystemic nature of many of these disorders, unpredictable natural course, relative inaccessibility of the mitochondrion and lack of validated, clinically meaningful outcome measures, have all presented great challenges to the design of rigorous clinical trials. This review discusses barriers to developing effective therapies for mitochondrial disease, models for evaluating the efficacy of novel treatments and summarises the most promising emerging therapies in six key areas: 1) antioxidant approaches; 2) stimulating mitochondrial biogenesis; 3) targeting mitochondrial membrane lipids, dynamics and mitophagy; 4) replacement therapy; 5) cell-based therapies; and 6) gene therapy approaches for both mtDNA and nuclear-encoded defects of mitochondrial metabolism."	"Biotin-responsive basal ganglia disease: a case diagnosed by whole exome sequencing. Using whole exome sequencing, we confirmed a diagnosis of biotin-responsive basal ganglia disease (BBGD) accompanied by possible Kawasaki Disease. BBGD is an autosomal-recessive disease arising from a mutation of the SLC19A3 gene encoding the human thiamine transporter 2 protein, and usually manifests as subacute to acute encephalopathy. In this case, compound heterozygous mutations of SLC19A3, including a de novo mutation in one allele, was the cause of disease. Although a large number of genetic neural diseases have no efficient therapy, there are several treatable genetic diseases, including BBGD. However, to achieve better outcome and accurate diagnosis, therapeutic analysis and examination for disease confirmation should be done simultaneously. We encountered a case of possible Kawasaki disease, which had progressed to BBGD caused by an extremely rare genetic condition. Although the prevalence of BBGD is low, early recognition of this disease is important because effective improvement can be achieved by early biotin and thiamine supplementation. "	"Wernicke encephalopathy in children and adolescents. Wernicke encephalopathy is caused by thiamine (vitamin B1) deficiency. It is generally considered to be a disease of adult alcoholics. However, it is known to occur in the pediatric population and in non-alcoholic conditions. We searched PubMed with the key words Wernicke, thiamine, pediatric, children and adolescents and selected publications that were deemed appropriate. The global prevalence rates of hunger, poverty and resultant nutrient deprivation have decreased in the 21st century. However, several scenarios which may predispose to Wernicke encephalopathy may be increasingly prevalent in children and adolescents such as malignancies, intensive care unit stays and surgical procedures for the treatment of obesity. Other predisposing conditions include magnesium deficiency and defects in the SLC19A3 gene causing thiamine transporter-2 deficiency. The classic triad consists of encephalopathy, oculomotor dysfunction and gait ataxia but is not seen in a majority of patients. Treatment should be instituted immediately when the diagnosis is suspected clinically without waiting for laboratory confirmation. Common magnetic resonance findings include symmetric T2 hyperintensities in dorsal medial thalamus, mammillary bodies, periaqueductal gray matter, and tectal plate. Wernicke encephalopathy is a medical emergency. Delay in its recognition and treatment may lead to significant morbidity, irreversible neurological damage or even death. This article aims to raise the awareness of this condition among pediatricians."	"Whole exome sequencing reveals compound heterozygous mutations in SLC19A3 causing biotin-thiamine responsive basal ganglia disease. Biotin-thiamine responsive basal ganglia disease (BTBGD) is a rare metabolic condition caused by mutations in the SLC19A3 gene. BTBGD presents with encephalopathy and significant disease progression when not treated with biotin and/or thiamine. We present a patient of Mexican and European ancestry diagnosed with BTBGD found to have compound heterozygous frameshift mutations, one novel. Our report adds to the genotype-phenotype correlation, highlighting the clinical importance of considering SLC19A3 gene defects as part of the differential diagnosis for Leigh syndrome."	"Thiamine Deficiency-Mediated Brain Mitochondrial Pathology in Alaskan Huskies with Mutation in SLC19A3.1. Alaskan Husky encephalopathy (AHE(1) ) is a fatal brain disease associated with a mutation in SLC19A3.1 (c.624insTTGC, c.625C&gt;A). This gene encodes for a thiamine transporter 2 with a predominately (CNS) central nervous system distribution. Considering that brain is particularly vulnerable to thiamine deficiency because of its reliance on thiamine pyrophosphate (TPP)-dependent metabolic pathways involved in energy metabolism and neurotransmitter synthesis, we characterized the impact of this mutation on thiamine status, brain bioenergetics and the contribution of oxidative stress to this phenotype. In silico modeling of the mutated transporter indicated a significant loss of alpha-helices resulting in a more open protein structure suggesting an impaired thiamine transport ability. The cerebral cortex and thalamus of affected dogs were severely deficient in TPP-dependent enzymes accompanied by decreases in mitochondrial mass and oxidative phosphorylation (OXPHOS) capacity, and increases in oxidative stress. These results along with the behavioral and pathological findings indicate that the phenotype associated with AHE is consistent with a brain-specific thiamine deficiency, leading to brain mitochondrial dysfunction and increased oxidative stress. While some of the biochemical deficits, neurobehavior and affected brain areas in AHE were shared by Wernicke's and Korsakoff's syndromes, several differences were noted likely arising from a tissue-specific vs. that from a whole-body thiamine deficiency. "	"The Janus kinase 2 inhibitor fedratinib inhibits thiamine uptake: a putative mechanism for the onset of Wernicke's encephalopathy. The clinical development of fedratinib, a Janus kinase (JAK2) inhibitor, was terminated after reports of Wernicke's encephalopathy in myelofibrosis patients. Since Wernicke's encephalopathy is induced by thiamine deficiency, investigations were conducted to probe possible mechanisms through which fedratinib may lead to a thiamine-deficient state. In vitro studies indicate that fedratinib potently inhibits the carrier-mediated uptake and transcellular flux of thiamine in Caco-2 cells, suggesting that oral absorption of dietary thiamine is significantly compromised by fedratinib dosing. Transport studies with recombinant human thiamine transporters identified the individual human thiamine transporter (hTHTR2) that is inhibited by fedratinib. Inhibition of thiamine uptake appears unique to fedratinib and is not shared by marketed JAK inhibitors, and this observation is consistent with the known structure-activity relationship for the binding of thiamine to its transporters. The results from these studies provide a molecular basis for the development of Wernicke's encephalopathy upon fedratinib treatment and highlight the need to evaluate interactions of investigational drugs with nutrient transporters in addition to classic xenobiotic transporters. "	"Thiamine transporter-2 deficiency: outcome and treatment monitoring. The clinical characteristics distinguishing treatable thiamine transporter-2 deficiency (ThTR2) due to SLC19A3 genetic defects from the other devastating causes of Leigh syndrome are sparse. We report the clinical follow-up after thiamine and biotin supplementation in four children with ThTR2 deficiency presenting with Leigh and biotin-thiamine-responsive basal ganglia disease phenotypes. We established whole-blood thiamine reference values in 106 non-neurological affected children and monitored thiamine levels in SLC19A3 patients after the initiation of treatment. We compared our results with those of 69 patients with ThTR2 deficiency after a review of the literature. At diagnosis, the patients were aged 1 month to 17 years, and all of them showed signs of acute encephalopathy, generalized dystonia, and brain lesions affecting the dorsal striatum and medial thalami. One patient died of septicemia, while the remaining patients evidenced clinical and radiological improvements shortly after the initiation of thiamine. Upon follow-up, the patients received a combination of thiamine (10-40 mg/kg/day) and biotin (1-2 mg/kg/day) and remained stable with residual dystonia and speech difficulties. After establishing reference values for the different age groups, whole-blood thiamine quantification was a useful method for treatment monitoring. ThTR2 deficiency is a reversible cause of acute dystonia and Leigh encephalopathy in the pediatric years. Brain lesions affecting the dorsal striatum and medial thalami may be useful in the differential diagnosis of other causes of Leigh syndrome. Further studies are needed to validate the therapeutic doses of thiamine and how to monitor them in these patients."	"Infantile Leigh-like syndrome caused by SLC19A3 mutations is a treatable disease. NA"	"Reply: Infantile Leigh-like syndrome caused by SLC19A3 mutations is a treatable disease. NA"	"Reply: Infantile Leigh-like syndrome caused by SLC19A3 mutations is a treatable disease. NA"	"HIF1-α-mediated gene expression induced by vitamin B1 deficiency. It is well established that thiamine deficiency results in an excess of metabolic intermediates such as lactate and pyruvate, which is likely due to insufficient levels of cofactor for the function of thiamine-dependent enzymes. When in excess, both pyruvate and lactate can increase the stabilization of the hypoxia-inducible factor 1-alpha (HIF-1α) transcription factor, resulting in the trans-activation of HIF-1α regulated genes independent of low oxygen, termed pseudo-hypoxia. Therefore, the resulting dysfunction in cellular metabolism and accumulation of pyruvate and lactate during thiamine deficiency may facilitate a pseudo-hypoxic state. In order to investigate the possibility of a transcriptional relationship between hypoxia and thiamine deficiency, we measured alterations in metabolic intermediates, HIF-1α stabilization, and gene expression. We found an increase in intracellular pyruvate and extracellular lactate levels after thiamine deficiency exposure to the neuroblastoma cell line SK-N-BE. Similar to cells exposed to hypoxia, there was a corresponding increase in HIF-1α stabilization and activation of target gene expression during thiamine deficiency, including glucose transporter-1 (GLUT1), vascular endothelial growth factor (VEGF), and aldolase A. Both hypoxia and thiamine deficiency exposure resulted in an increase in the expression of the thiamine transporter SLC19A3. These results indicate thiamine deficiency induces HIF-1α-mediated gene expression similar to that observed in hypoxic stress, and may provide evidence for a central transcriptional response associated with the clinical manifestations of thiamine deficiency. "	"Defects of thiamine transport and metabolism. Thiamine, in the form of thiamine pyrophosphate, is a cofactor for a number of enzymes which play important roles in energy metabolism. Although dietary thiamine deficiency states have long been recognised, it is only relatively recently that inherited defects in thiamine uptake, activation and the attachment of the active cofactor to target enzymes have been described, and the underlying genetic defects identified. Thiamine is transported into cells by two carriers, THTR1 and THTR2, and deficiency of these results in thiamine-responsive megaloblastic anaemia and biotin-responsive basal ganglia disease respectively. Defective synthesis of thiamine pyrophosphate has been found in a small number of patients with episodic ataxia, delayed development and dystonia, while impaired transport of thiamine pyrophosphate into the mitochondrion is associated with Amish lethal microcephaly in most cases. In addition to defects in thiamine uptake and metabolism, patients with pyruvate dehydrogenase deficiency and maple syrup urine disease have been described who have a significant clinical and/or biochemical response to thiamine supplementation. In these patients, an intrinsic structural defect in the target enzymes reduces binding of the cofactor and this can be overcome at high concentrations. In most cases, the clinical and biochemical abnormalities in these conditions are relatively non-specific, and the range of recognised presentations is increasing rapidly at present as new patients are identified, often by genome sequencing. These conditions highlight the value of a trial of thiamine supplementation in patients whose clinical presentation falls within the spectrum of documented cases. "	"Evidence for genetic susceptibility to the alcohol dependence syndrome from the thiamine transporter 2 gene solute carrier SLC19A3. NA"	"Analysis of thiamine transporter genes in sporadic beriberi. Thiamine or vitamin B1 deficiency diminishes thiamine-dependent enzymatic activity, alters mitochondrial function, impairs oxidative metabolism, and causes selective neuronal death. We analyzed for the first time, the role of all known mutations within three specific thiamine carrier genes, SLC19 A2, SLC19 A3, and SLC25 A19, in a patient with atrophic beriberi, a multiorgan nutritional disease caused by thiamine deficiency. A 44-year-old male alcoholic patient from Morocco developed massive bilateral leg edema, a subacute sensorimotor neuropathy, and incontinence. Despite normal vitamin B1 serum levels, his clinical picture was rapidly reverted by high-dose intramuscular thiamine treatment, suggesting a possible genetic resistance. We used polymerase chain reaction followed by amplicon sequencing to study all the known thiamine-related gene mutations identified within the Human Gene Mutation Database. Thirty-seven mutations were tested: 29 in SLC19 A2, 6 in SLC19 A3, and 2 in SLC25 A19. Mutational analyses showed a wild-type genotype for all sequences investigated. This is the first genetic study in beriberi disease. We did not detect any known mutation in any of the three genes in a sporadic dry beriberi patient. We cannot exclude a role for other known or unknown mutations, in the same genes or in other thiamine-associated genes, in the occurrence of this nutritional neuropathy."	"Mechanisms involved in the inhibitory effect of chronic alcohol exposure on pancreatic acinar thiamin uptake. Pancreatic acinar cells (PAC) obtain thiamin from the circulation via a carrier-mediated process that involves thiamin transporters 1 and 2 (THTR-1 and THTR-2; products of SLC19A2 and SLC19A3, respectively). Chronic alcohol exposure of PAC inhibits thiamin uptake, and, on the basis of in vitro studies, this inhibition appears to be transcriptionally mediated. The aim of this study was to confirm the involvement of a transcriptional mechanism in mediating the chronic alcohol effect in in vivo settings and to delineate the molecular mechanisms involved. Using transgenic mice carrying full-length SLC19A2 and SLC19A3 promoters, we found that chronic alcohol feeding led to a significant reduction in the activity of SLC19A2 and SLC19A3 promoters (as well as in thiamin uptake and expression of THTR-1 and -2). Similar findings were seen in 266-6 cells chronically exposed to alcohol in vitro. In the latter studies, the alcohol inhibitory effect was found to be mediated via the minimal SLC19A2 and SLC19A3 promoters and involved the cis-regulatory elements stimulating protein 1 (SP1)/gut-enriched Kruppel-like factor and SP1-GG-box and SP1/GC, respectively. Chronic alcohol exposure of PAC also led to a significant reduction in the expression of the SP1 transcription factor, which upon correction (via expression) led to the prevention of alcohol inhibitory effects on not only the activity of SLC19A2 and SLC19A3 promoters but also on the expression of THTR-1 and -2 mRNA and thiamin uptake. These results demonstrate that the inhibitory effect of chronic alcohol exposure on physiological/molecular parameters of thiamin uptake by PAC is mediated via specific cis-regulatory elements in SLC19A2 and SLC19A3 minimal promoters. "	"Stress-induced upregulation of SLC19A3 is impaired in biotin-thiamine-responsive basal ganglia disease. Biotin-thiamine-responsive basal ganglia disease (BTBGD) is a potentially treatable disorder caused by mutations in the SLC19A3 gene, encoding the human thiamine transporter 2. Manifestation of BTBGD as acute encephalopathy triggered by a febrile infection has been frequently reported, but the underlying mechanisms are not clear. We investigated a family with two brothers being compound heterozygous for the SLC19A3 mutations p.W94R and p.Q393*fs. Post-mortem analysis of the brain of one brother showed a mixture of acute, subacute and chronic changes with cystic and necrotic lesions and hemorrhage in the putamen, and hemorrhagic lesions in the caudate nucleus and cortical layers. SLC19A3 expression was substantially reduced in the cortex, basal ganglia and cerebellum compared with an age-matched control. Importantly, exposure of fibroblasts to stress factors such as acidosis or hypoxia markedly upregulated SLC19A3 in control cells, but failed to elevate SLC19A3 expression in the patient's fibroblasts. These results demonstrate ubiquitously reduced thiamine transporter function in the cerebral gray matter, and neuropathological alterations similar to Wernicke's disease in BTBGD. They also suggest that episodes of encephalopathy are caused by a substantially reduced capacity of mutant neuronal cells to increase SLC19A3 expression, necessary to adapt to stress conditions. "	"Association of TM4SF4 with the human thiamine transporter-2 in intestinal epithelial cells. The human thiamine transporter-2 (hTHTR-2) is involved in the intestinal absorption of thiamine. Recent studies with membrane transporters of other nutrients/substrates have shown that they have associated proteins that affect different aspects of their physiology and cell biology. Nothing is known about protein(s) that interact with hTHTR-2 in intestinal epithelial cells and influence its physiological function and/or its cell biology. The aim of this study was to identify protein partner(s) that interact with hTHTR-2 in human intestinal cells and determine the physiological/biological consequence of that interaction. The yeast split-ubiquitin two-hybrid approach was used to screen a human intestinal cDNA library. GST-pull-down and cellular co-localization approaches were used to confirm the interaction between hTHTR-2 and the associated protein(s). The effect of such an interaction on hTHTR-2 function was examined by (3)H-thiamine uptake assays. Our screening results identified the human TransMembrane 4 SuperFamily 4 (TM4SF4) as a potential interactor with hTHTR-2. This interaction was confirmed by an in vitro GST-pull-down assay, and by live-cell confocal imaging of HuTu-80 cells co-expressing hTHTR-2-GFP and mCherry-TM4SF4 (the latter displayed a significant overlap of these two proteins in intracellular vesicles and at the cell membrane). Co-expression of hTHTR-2 with TM4SF4 in HuTu-80 cells led to a significant induction in thiamine uptake. In contrast, silencing TM4SF4 with gene-specific siRNA led to a significant decrease in thiamine uptake. These results show for the first time that the accessory protein TM4SF4 interacts with hTHTR-2 and influences the physiological function of the thiamine transporter."	"Effect of the cigarette smoke component, 4-(methylnitrosamino)-1-(3-pyridyl)-1-butanone (NNK), on physiological and molecular parameters of thiamin uptake by pancreatic acinar cells. Thiamin is indispensable for the normal function of pancreatic acinar cells. These cells take up thiamin via specific carrier-mediated process that involves thiamin transporter-1 and -2 (THTR-1 and THTR-2; products of SLC19A2 and SLC19A3 genes, respectively). In this study we examined the effect of chronic exposure of pancreatic acinar cells in vitro (pancreatic acinar 266-6 cells) and in vivo (wild-type and transgenic mice carrying the SLC19A2 and SLC19A3 promoters) to the cigarette smoke component 4-(methylnitrosamino)-1-(3-pyridyl)-1-butanone (NNK) on physiological and molecular parameters of the thiamin uptake process. The results show that chronic exposure of 266-6 cells to NNK (3 µM, 24 h) leads to a significant inhibition in thiamin uptake. The inhibition was associated with a significant decrease in the level of expression of THTR-1 and -2 at the protein and mRNA levels as well as in the activity of SLC19A2 and SLC19A3 promoters. Similarly chronic exposure of mice to NNK (IP 10 mg/100 g body weight, three times/week for 2 weeks) leads to a significant inhibition in thiamin uptake by freshly isolated pancreatic acinar cells, as well as in the level of expression of THTR-1 and -2 protein and mRNA. Furthermore, activity of the SLC19A2 and SLC19A3 promoters expressed in transgenic mice were significantly suppressed by chronic exposure to NNK. The effect of NNK on the activity of the SLC19A2 and SLC19A3 promoters was not mediated via changes in their methylation profile, rather it appears to be exerted via an SP1/GG and SP1/GC cis-regulatory elements in these promoters, respectively. These results demonstrate, for the first time, that chronic exposure of pancreatic acinar cells to NNK negatively impacts the physiological and molecular parameters of thiamin uptake by pancreatic acinar cells and that this effect is exerted, at least in part, at the level of transcription of the SLC19A2 and SLC19A3 genes. "	"Biotin-responsive Basal Ganglia disease: a treatable differential diagnosis of leigh syndrome. Biotin-responsive basal ganglia disease (BBGD) is an autosomal recessive disorder, which is caused by mutations in the SLC19A3 gene. BBGD typically causes (sub)acute episodes with encephalopathy and subsequent neurological deterioration. If untreated, the clinical course may be fatal. Our report on a 6-year-old child with BBGD highlights that the disease is a crucial differential diagnosis of Leigh syndrome. Therefore, biotin and thiamine treatment is recommended for any patient with symmetrical basal ganglia lesions and neurological symptoms until BBGD is excluded. In addition, we exemplify that deformation-field-based morphometry of brain magnetic resonance images constitutes a novel quantitative tool, which might be very useful to monitor disease course and therapeutic effects in neurometabolic disorders. "	"Enterotoxigenic Escherichia coli infection and intestinal thiamin uptake: studies with intestinal epithelial Caco-2 monolayers. Infections with enteric pathogens like enterotoxigenic Escherichia coli (ETEC) is a major health issue worldwide and while diarrhea is the major problem, prolonged, severe, and dual infections with multiple pathogens may also compromise the nutritional status of the infected individuals. There is almost nothing currently known about the effect of ETEC infection on intestinal absorptions of water-soluble vitamins including thiamin. We examined the effect of ETEC infection on intestinal uptake of the thiamin using as a model the human-derived intestinal epithelial Caco-2 cells. The results showed that infecting confluent Caco-2 monolayers with live ETEC (but not with boiled/killed ETEC or nonpathogenic E. coli) or treatment with bacterial culture supernatant led to a significant inhibition in thiamin uptake. This inhibition appears to be caused by a heat-labile and -secreted ETEC component and is mediated via activation of the epithelial adenylate cyclase system. The inhibition in thiamin uptake by ETEC was associated with a significant reduction in expression of human thiamin transporter-1 and -2 (hTHTR1 and hTHTR2) at the protein and mRNA levels as well as in the activity of the SLC19A2 and SLC19A3 promoters. Dual infection of Caco-2 cells with ETEC and EPEC (enteropathogenic E. coli) led to compounded inhibition in intestinal thiamin uptake. These results show for the first time that infection of human intestinal epithelial cells with ETEC causes a significant inhibition in intestinal thiamin uptake. This inhibition is mediated by a secreted heat-labile toxin and is associated with a decrease in the expression of intestinal thiamin transporters. "	"Treatable Leigh-like encephalopathy presenting in adolescence. Wernicke's encephalopathy is a triad of ophthalmoplegia, ataxia and confusion seen in alcoholics with dietary vitamin B1 (thiamine) deficiency. A rare genetic defect of thiamine transporter-2 may lead to similar clinical features, biotin-thiamine responsive basal ganglia disease (BTBGD). A 15-year-old girl developed rapid onset ptosis and ophthalmoplegia evolving into a subacute encephalopathy. Neuroimaging demonstrated symmetrical basal ganglia and mid-brain lesions reminiscent of Leigh's subacute necrotising encephalomyelopathy. Oral biotin and thiamine were started, and symptoms improved dramatically the next day. The therapeutic response suggested SLC19A3, encoding thiamine transporter-2, as a strong candidate gene and Sanger sequencing revealed a novel homozygous c.517A&gt;G;p.Asn173Asp mutation, which segregated with disease within the family. BTBGD is a potentially treatable neurological disorder and should be considered in the differential diagnosis of Leigh syndrome and Wernicke's encephalopathy. Since delayed treatment results in permanent neurological dysfunction or death, prompt diagnosis and early initiation of biotin and thiamine therapy are essential. "	"Adaptive regulation of human intestinal thiamine uptake by extracellular substrate level: a role for THTR-2 transcriptional regulation. The intestinal thiamine uptake process is adaptively regulated by the level of vitamin in the diet, but the molecular mechanism involved is not fully understood. Here we used the human intestinal epithelial Caco-2 cells exposed to different levels of extracellular thiamine to delineate the molecular mechanism involved. Our results showed that maintaining Caco-2 cells in a thiamine-deficient medium resulted in a specific and significant increase of [3H]thiamine uptake compared with cell exposure to a high level of thiamine (1 mM). This adaptive regulation was also associated with a higher level of mRNA expression of thiamine transporter-2 (THTR-2), but not thiamine transporter-1 (THTR-1), in the deficient condition and a higher level of promoter activity of gene encoding THTR-2 (SLC19A3). Using 5'-truncated promoter-luciferase constructs, we identified the thiamine level-responsive region in the SLC19A3 promoter to be between -77 and -29 (using transcriptional start site as +1). By means of mutational analysis, a key role for a stimulating protein-1 (SP1)/guanosine cytidine box in mediating the effect of extracellular thiamine level on SLC19A3 promoter was established. Furthermore, extracellular level of thiamine was found to affect SP1 protein expression and binding pattern to the thiamine level-responsive region of SLC19A3 promoter in Caco-2 cells as shown by Western blotting and electrophoretic mobility shift assay analysis, respectively. These studies demonstrate that the human intestinal thiamine uptake is adaptively regulated by the extracellular substrate level via transcriptional regulation of the THTR-2 system, and report that SP1 transcriptional factor is involved in this regulation."	"Regulation of Cell Proliferation by the Guanosine-Adenosine Mechanism: Role of Adenosine Receptors. A recent study (American Journal of Physiology-Cell Physiology 304: C406-C421, 2013) suggests that extracellular guanosine increases extracellular adenosine by modifying the disposition of extracellular adenosine (&quot;guanosine-adenosine mechanism&quot;) and that the guanosine-adenosine mechanism is not mediated by classical adenosine transport systems (SLC28 and SLC29 families) nor by classical adenosine-metabolizing enzymes. The present investigation had two aims: 1) to test the hypothesis that the &quot;guanosine-adenosine mechanism&quot; affects cell proliferation; and 2) to determine whether the transporters SLC19A1, SLC19A2, SLC19A3 or SLC22A2 (known to carrier guanosine analogues) might be responsible for the guanosine-adenosine mechanism. In the absence of added adenosine, guanosine had little effect on the proliferation of coronary artery vascular smooth muscle cells (vascular conduit cells) or preglomerular vascular smooth muscle cells (vascular resistance cells). However, in the presence of added adenosine (3 or 10 μmol/L), guanosine (10 to 100 μmol/L) decreased proliferation of both cell types, thus resulting in a highly significant (p&lt;0.000001) interaction between guanosine and adenosine on cell proliferation. The guanosine-adenosine interaction on cell proliferation was abolished by 1,3-dipropyl-8-(p-sulfophenyl)xanthine (adenosine receptor antagonist). Guanosine (30 μmol/L) increased extracellular levels of adenosine when adenosine (3 μmol/L) was added to the medium. This effect was not reproduced by high concentrations of methotrexate (100 μmol/L), thiamine (1000 μmol/L), chloroquine (1000 μmol/L) or acyclovir (10,000 μmol/L), archetypal substrates for SLC19A1, SLC19A2, SLC19A3, and SLC22A2, respectively; and guanosine still increased adenosine levels in the presence of these compounds. The guanosine-adenosine mechanism affects cell proliferation and is not mediated by SLC19A1, SLC19A2, SLC19A3 or SLC22A2."	"Biotin-responsive basal ganglia disease should be renamed biotin-thiamine-responsive basal ganglia disease: a retrospective review of the clinical, radiological and molecular findings of 18 new cases. Biotin-responsive basal ganglia disease (BBGD) is an autosomal recessive neurometabolic disorder. It is characterized by sub acute encephalopathy with confusion, seizure, dysarthria and dystonia following a history of febrile illness. If left untreated with biotin, the disease can progress to severe quadriparesis and even death. A retrospective chart review of 18 patients with BBGD from two tertiary institutions describing their clinical, magnetic resonance imaging and molecular findings was conducted. Eighteen children from 13 families seen over a period of nine years (2003-2012) were included. (Age range: 14month to 23 years, M: F: 1:1). The clinical features included sub acute encephalopathy, ataxia (n= 18), seizures (n= 13) dystonia (n=12) ,dysarthria (n= 9), quadriparesis and hyperreflexia (n=9). Magnetic resonance imaging demonstrated abnormal signal intensity with swelling in the basal ganglia during acute crises (n= 13/13) and atrophy of the basal ganglia and necrosis during follow up (n= 13/13). One-third of the present patients showed the recurrence of acute crises while on biotin therapy alone, but after the addition of thiamine, crises did not recur. All of the patients have a homozygous missense mutation in exon 5 of the SLC19A3 gene. The frequency of acute crises, delay in diagnosis and initiation of treatment significantly influenced the outcome. On follow up, four patients died, two had spastic quadriplegia, six had normal outcome and the rest had speech and motor dysfunctions. Clinicians should suspect BBGD in any child presenting with sub acute encephalopathy, abnormal movement and MRI findings as described above. Both biotin and thiamine are essential for disease management. Since biotin alone could not prevent the recurrence of crises in some patients, a more appropriate term to describe the disease would be biotin-thiamine-responsive basal ganglia disease (BTBGD)."	"Up-regulation of vitamin B1 homeostasis genes in breast cancer. An increased carbon flux and exploitation of metabolic pathways for the rapid generation of biosynthetic precursors is a common phenotype observed in breast cancer. To support this metabolic phenotype, cancer cells adaptively regulate the expression of glycolytic enzymes and nutrient transporters. However, activity of several enzymes involved in glucose metabolism requires an adequate supply of cofactors. In particular, vitamin B1 (thiamine) is utilized as an essential cofactor for metabolic enzymes that intersect at critical junctions within the glycolytic network. Intracellular availability of thiamine is facilitated by the activity of thiamine transporters and thiamine pyrophosphokinase-1 (TPK-1). Therefore, the objective of this study was to establish if the cellular determinants regulating thiamine homeostasis differ between breast cancer and normal breast epithelia. Employing cDNA arrays of breast cancer and normal breast epithelial tissues, SLC19A2, SLC25A19 and TPK-1 were found to be significantly up-regulated. Similarly, up-regulation was also observed in breast cancer cell lines compared to human mammary epithelial cells. Thiamine transport assays and quantitation of intracellular thiamine and thiamine pyrophosphate established a significantly greater extent of thiamine transport and free thiamine levels in breast cancer cell lines compared to human mammary epithelial cells. Overall, these findings demonstrate an adaptive response by breast cancer cells to increase cellular availability of thiamine. "	"Reversible lactic acidosis in a newborn with thiamine transporter-2 deficiency. Thiamine transporter-2 deficiency is a recessive disease caused by mutations in the SLC19A3 gene. Patients manifest acute episodes of encephalopathy; symmetric lesions in the cortex, basal ganglia, thalami or periaqueductal gray matter, and a dramatic response to biotin or thiamine. We report a 30-day-old patient with mutations in the SLC19A3 gene who presented with acute encephalopathy and increased level of lactate in the blood (8.6 mmol/L) and cerebrospinal fluid (7.12 mmol/L), a high excretion of α-ketoglutarate in the urine, and increased concentrations of the branched-chain amino acids leucine and isoleucine in the plasma. MRI detected bilateral and symmetric cortico-subcortical lesions involving the perirolandic area, bilateral putamina, and medial thalami. Some lesions showed low apparent diffusion coefficient values suggesting an acute evolution; others had high values likely to be subacute or chronic, most likely related to the perinatal period. After treatment with thiamine and biotin, irritability and opisthotonus disappeared, and the patient recovered consciousness. Biochemical disturbances also disappeared within 48 hours. After discontinuing biotin, the patient remained stable for 6 months on thiamine supplementation (20 mg/kg/day). The examination revealed subtle signs of neurologic sequelae, and MRI showed necrotic changes and volume loss in some affected areas. Our observations suggest that patients with thiamine transporter 2 deficiency may be vulnerable to metabolic decompensation during the perinatal period, when energy demands are high. Thiamine defects should be excluded in newborns and infants with lactic acidosis because prognosis largely depends on the time from diagnosis to thiamine supplementation."	"Folate and thiamine transporters mediated by facilitative carriers (SLC19A1-3 and SLC46A1) and folate receptors. The reduced folate carrier (RFC, SLC19A1), thiamine transporter-1 (ThTr1, SLC19A2) and thiamine transporter-2 (ThTr2, SLC19A3) evolved from the same family of solute carriers. SLC19A1 transports folates but not thiamine. SLC19A2 and SLC19A3 transport thiamine but not folates. SLC19A1 and SLC19A2 deliver their substrates to systemic tissues; SLC19A3 mediates intestinal thiamine absorption. The proton-coupled folate transporter (PCFT, SLC46A1) is the mechanism by which folates are absorbed across the apical-brush-border membrane of the proximal small intestine. Two folate receptors (FOLR1 and FOLR2) mediate folate transport across epithelia by an endocytic process. Folate transporters are routes of delivery of drugs for the treatment of cancer and inflammatory diseases. There are autosomal recessive disorders associated with mutations in genes encoded for SLC46A1 (hereditary folate malabsorption), FOLR1 (cerebral folate deficiency), SLC19A2 (thiamine-responsive megaloblastic anemia), and SLC19A3 (biotin-responsive basal ganglia disease)."	"Exome sequencing reveals mutated SLC19A3 in patients with an early-infantile, lethal encephalopathy. To accomplish a diagnosis in patients with a rare unclassified disorder is difficult. In this study, we used magnetic resonance imaging pattern recognition analysis to identify patients with the same novel heritable disorder. Whole-exome sequencing was performed to discover the mutated gene. We identified seven patients sharing a previously undescribed magnetic resonance imaging pattern, characterized by initial swelling with T2 hyperintensity of the basal nuclei, thalami, cerebral white matter and cortex, pons and midbrain, followed by rarefaction or cystic degeneration of the white matter and, eventually, by progressive cerebral, cerebellar and brainstem atrophy. All patients developed a severe encephalopathy with rapid deterioration of neurological functions a few weeks after birth, followed by respiratory failure and death. Lactate was elevated in body fluids and on magnetic resonance spectroscopy in most patients. Whole-exome sequencing in a single patient revealed two predicted pathogenic, heterozygous missense mutations in the SLC19A3 gene, encoding the second thiamine transporter. Additional predicted pathogenic mutations and deletions were detected by Sanger sequencing in all six other patients. Pathology of brain tissue of two patients demonstrated severe cerebral atrophy and microscopic brain lesions similar to Leigh's syndrome. Although the localization of SLC19A3 expression in brain was similar in the two investigated patients compared to age-matched control subjects, the intensity of the immunoreactivity was increased. Previously published patients with SLC19A3 mutations have a milder clinical phenotype, no laboratory evidence of mitochondrial dysfunction and more limited lesions on magnetic resonance imaging. In some, cerebral atrophy has been reported. The identification of this new, severe, lethal phenotype characterized by subtotal brain degeneration broadens the phenotypic spectrum of SLC19A3 mutations. Recognition of the associated magnetic resonance imaging pattern allows a fast diagnosis in affected infants."	"Genome-wide association analysis identifies a mutation in the thiamine transporter 2 (SLC19A3) gene associated with Alaskan Husky encephalopathy. Alaskan Husky Encephalopathy (AHE) has been previously proposed as a mitochondrial encephalopathy based on neuropathological similarities with human Leigh Syndrome (LS). We studied 11 Alaskan Husky dogs with AHE, but found no abnormalities in respiratory chain enzyme activities in muscle and liver, or mutations in mitochondrial or nuclear genes that cause LS in people. A genome wide association study was performed using eight of the affected dogs and 20 related but unaffected control AHs using the Illumina canine HD array. SLC19A3 was identified as a positional candidate gene. This gene controls the uptake of thiamine in the CNS via expression of the thiamine transporter protein THTR2. Dogs have two copies of this gene located within the candidate interval (SLC19A3.2 - 43.36-43.38 Mb and SLC19A3.1 - 43.411-43.419 Mb) on chromosome 25. Expression analysis in a normal dog revealed that one of the paralogs, SLC19A3.1, was expressed in the brain and spinal cord while the other was not. Subsequent exon sequencing of SLC19A3.1 revealed a 4bp insertion and SNP in the second exon that is predicted to result in a functional protein truncation of 279 amino acids (c.624 insTTGC, c.625 C&gt;A). All dogs with AHE were homozygous for this mutation, 15/41 healthy AH control dogs were heterozygous carriers while 26/41 normal healthy AH dogs were wild type. Furthermore, this mutation was not detected in another 187 dogs of different breeds. These results suggest that this mutation in SLC19A3.1, encoding a thiamine transporter protein, plays a critical role in the pathogenesis of AHE."	"Exome sequencing reveals a novel Moroccan founder mutation in SLC19A3 as a new cause of early-childhood fatal Leigh syndrome. Leigh syndrome is an early onset, often fatal progressive neurodegenerative disorder caused by mutations in the mitochondrial or nuclear DNA. Until now, mutations in more than 35 genes have been reported to cause Leigh syndrome, indicating an extreme genetic heterogeneity for this disorder, but still only explaining part of the cases. The possibility of whole exome sequencing enables not only mutation detection in known candidate genes, but also the identification of new genes associated with Leigh syndrome in small families and isolated cases. Exome sequencing was combined with homozygosity mapping to identify the genetic defect in a Moroccan family with fatal Leigh syndrome in early childhood and specific magnetic resonance imaging abnormalities in the brain. We detected a homozygous nonsense mutation (c.20C&gt;A; p.Ser7Ter) in the thiamine transporter SLC19A3. In vivo overexpression of wild-type SLC19A3 showed an increased thiamine uptake, whereas overexpression of mutant SLC19A3 did not, confirming that the mutation results in an absent or non-functional protein. Seventeen additional patients with Leigh syndrome were screened for mutations in SLC19A3 using conventional Sanger sequencing. Two unrelated patients, both from Moroccan origin and one from consanguineous parents, were homozygous for the same p.Ser7Ter mutation. One of these patients showed the same MRI abnormalities as the patients from the first family. Strikingly, patients receiving thiamine had an improved life-expectancy. One patient in the third family deteriorated upon interruption of the thiamine treatment and recovered after reinitiating. Although unrelated, all patients came from the province Al Hoceima in Northern Morocco. Based on the recombination events the mutation was estimated to have occurred 1250-1750 years ago. Our data shows that SLC19A3 is a new candidate for mutation screening in patients with Leigh syndrome, who might benefit from high doses of thiamine and/or biotin. Especially, Moroccan patients with Leigh syndrome should be tested for the c.20C&gt;A founder mutation in SLC19A3."	"Glucose-induced down regulation of thiamine transporters in the kidney proximal tubular epithelium produces thiamine insufficiency in diabetes. Increased renal clearance of thiamine (vitamin B(1)) occurs in experimental and clinical diabetes producing thiamine insufficiency mediated by impaired tubular re-uptake and linked to the development of diabetic nephropathy. We studied the mechanism of impaired renal re-uptake of thiamine in diabetes. Expression of thiamine transporter proteins THTR-1 and THTR-2 in normal human kidney sections examined by immunohistochemistry showed intense polarised staining of the apical, luminal membranes in proximal tubules for THTR-1 and THTR-2 of the cortex and uniform, diffuse staining throughout cells of the collecting duct for THTR-1 and THTR-2 of the medulla. Human primary proximal tubule epithelial cells were incubated with low and high glucose concentration, 5 and 26 mmol/l, respectively. In high glucose concentration there was decreased expression of THTR-1 and THTR-2 (transporter mRNA: -76% and -53% respectively, p&lt;0.001; transporter protein -77% and -83% respectively, p&lt;0.05), concomitant with decreased expression of transcription factor specificity protein-1. High glucose concentration also produced a 37% decrease in apical to basolateral transport of thiamine transport across cell monolayers. Intensification of glycemic control corrected increased fractional excretion of thiamine in experimental diabetes. We conclude that glucose-induced decreased expression of thiamine transporters in the tubular epithelium may mediate renal mishandling of thiamine in diabetes. This is a novel mechanism of thiamine insufficiency linked to diabetic nephropathy."	"Biotin-responsive basal ganglia disease revisited: clinical, radiologic, and genetic findings. To investigate the clinical, genetic, and neuroradiologic data of biotin-responsive basal ganglia disease (BBGD) and clarify the disease spectrum. We first investigated all patients attending our Division of Pediatric Neurology with a genetically proven diagnosis of BBGD between 2009 and 2011. All patients underwent a detailed medical history and clinical examination, extensive laboratory investigations including genetic tests, and brain MRI. Finally, we conducted a systematic review of the literature. We enrolled 10 patients meeting the diagnostic criteria for BBGD, and analyzed the data on 14 patients from 4 previous reports. The BBGD occurred predominantly in preschool/school-aged patients in the Saudi population, but it was also observed in other ethnic groups. The typical clinical picture consisted of recurrent subacute encephalopathy leading to coma, seizures, and extrapyramidal manifestations. The brain MRI typically showed symmetric and bilateral lesions in the caudate nucleus and putamen, infra- and supratentorial brain cortex, and in the brainstem. Vasogenic edema characterized the acute crises as demonstrated by diffusion-weighted imaging/apparent diffusion coefficient MRI. Atrophy and gliosis in the affected regions were observed in patients with chronic disease. Early treatment with a combination of biotin and thiamine resulted in clinical and neuroradiologic improvement. Death and neurologic sequelae including dystonia, mental retardation, and epilepsy were observed in those who were not treated or were treated late. BBGD is an underdiagnosed pan-ethnic treatable condition. Clinicians caring for patients with unexplained encephalopathy and neuroimaging showing vasogenic edema in the bilateral putamen and caudate nuclei, infra- and supratentorial cortex, and brainstem should consider this disorder early in the hospital course because a therapeutic trial with biotin and thiamine can be lifesaving."	"Discovering thiamine transporters as targets of chloroquine using a novel functional genomics strategy. Chloroquine (CQ) and other quinoline-containing antimalarials are important drugs with many therapeutic benefits as well as adverse effects. However, the molecular targets underlying most such effects are largely unknown. By taking a novel functional genomics strategy, which employs a unique combination of genome-wide drug-gene synthetic lethality (DGSL), gene-gene synthetic lethality (GGSL), and dosage suppression (DS) screens in the model organism Saccharomyces cerevisiae and is thus termed SL/DS for simplicity, we found that CQ inhibits the thiamine transporters Thi7, Nrt1, and Thi72 in yeast. We first discovered a thi3Δ mutant as hypersensitive to CQ using a genome-wide DGSL analysis. Using genome-wide GGSL and DS screens, we then found that a thi7Δ mutation confers severe growth defect in the thi3Δ mutant and that THI7 overexpression suppresses CQ-hypersensitivity of this mutant. We subsequently showed that CQ inhibits the functions of Thi7 and its homologues Nrt1 and Thi72. In particular, the transporter activity of wild-type Thi7 but not a CQ-resistant mutant (Thi7(T287N)) was completely inhibited by the drug. Similar effects were also observed with other quinoline-containing antimalarials. In addition, CQ completely inhibited a human thiamine transporter (SLC19A3) expressed in yeast and significantly inhibited thiamine uptake in cultured human cell lines. Therefore, inhibition of thiamine uptake is a conserved mechanism of action of CQ. This study also demonstrated SL/DS as a uniquely effective methodology for discovering drug targets."	"Reversible generalized dystonia and encephalopathy from thiamine transporter 2 deficiency. Thiamine transporter-2 deficiency, a condition resulting from mutations in the SLC19A3 gene, has been described in patients with subacute dystonia and striatal necrosis. The condition responds extremely well to treatment with biotin and has thus been named biotin-responsive basal ganglia disease. Recently, this deficiency has also been related to Wernicke's-like encephalopathy and atypical infantile spasms, showing heterogeneous responses to biotin and/or thiamine. Two Spanish siblings with a biotin-responsive basal ganglia disease phenotype and mutations in SLC19A3 presented with acute episodes of generalized dystonia, rigidity, and symmetrical lesions involving the striatum, midline nuclei of the thalami, and the cortex of cerebral hemispheres as shown by magnetic resonance imaging. The clinical features resolved rapidly after thiamine administration. Despite the rarity of thiamine transporter-2 deficiency, it should be suspected in patients with acute dystonia and basal ganglia injury, as thiamine can halt disease evolution and prevent further episodes. © 2012 Movement Disorder Society."	"Different involvement of DNA methylation and histone deacetylation in the expression of solute-carrier transporters in 4 colon cancer cell lines. The purpose of this study on the involvement of epigenetic control of the expression of solute carrier (SLC) transporters by DNA methylation and histone deacetylation in 4 colon cancer cells is to find the epigenetic control mechanisms of drug transporters in colon cancers. Human colon cancer cell lines (HCT116, HT29, SW48, SW480) were treated with 5-aza-2'-deoxycytidine (DAC), as a DNA methyltransferase inhibitor, followed by trichostatin A (TSA), as a histone deacetylase inhibitor. The mRNA expression and DNA methylation of several SLC transporters were analyzed by real-time polymerase chain reaction (PCR) and methylation-specific PCR, respectively. Among 12 SLC transporters possessing cytosine-phosphate-guanine (CpG) islands, thiamine transporter 2 (THTR2) (SLC19A3) gene showed a correlation between its mRNA expression level and DNA methylation status. TSA treatment increased histone H3 acetylation of THTR2 promoter region in all 4 colon cancer cell lines examined. HCT116 and SW48 cells showed a lack of THTR2 mRNA expression and methylation of its promoter, and DAC treatment induced its re-expression. In addition, the co-treatment with DAC and TSA increased THTR2 mRNA expression more markedly than DAC treatment in HCT116 and SW48 cells. In HT29 and SW480 cells that showed little methylation of THTR2 promoter, TSA treatment induced THTR2 mRNA expression markedly, but DAC treatment did not. In the 4 colon cancer cells examined, THTR2 mRNA expression is down-regulated by DNA methylation and/or histone deacetylation."	"Relative contribution of THTR-1 and THTR-2 in thiamin uptake by pancreatic acinar cells: studies utilizing Slc19a2 and Slc19a3 knockout mouse models. Thiamin is essential for normal function of pancreatic acinar cells, and its deficiency leads to a reduction in pancreatic digestive enzymes. We have recently shown that thiamin uptake by rat pancreatic acinar cells is carrier-mediated and that both thiamin transporter (THTR)-1 and THTR-2 are expressed in these cells; little, however, is known about the relative contribution of these transporters toward total carrier-mediated thiamin uptake by these cells. We addressed this issue using a gene-specific silencing approach (siRNA) in mouse-derived pancreatic acinar 266-6 cells and Slc19a2 and Slc19a3 knockout mouse models. First we established that thiamin uptake by mouse pancreatic acinar cells is via a carrier-mediated process. We also established that these cells as well as native human pancreas express THTR-1 and THTR-2, with expression of the former (and activity of its promoter) being significantly higher than that of the latter. Using gene-specific siRNA against mouse THTR-1 and THTR-2, we observed a significant inhibition in carrier-mediated thiamin uptake by 266-6 cells in both cases. Similarly, thiamin uptake by freshly isolated primary pancreatic acinar cells of the Slc19a2 and Slc19a3 knockout mice was significantly lower than uptake by acinar cells of the respective littermates; the degree of inhibition observed in the former knockout model was greater than that of the latter. These findings demonstrate, for the first time, that both mTHTR-1 and mTHTR-2 are involved in carrier-mediated thiamin uptake by pancreatic acinar cells."	"Thiamin(e): the spark of life. One of the earliest vitamins to be discovered and synthesized, thiamin was originally spelled with an &quot;e&quot;. The terminal &quot;e&quot; was dropped when it was found that it was not an amine. It is still spelled with and without the &quot;e&quot; depending on the text. This chapter provides a brief historical review of the association of thiamin with the ancient scourge of beriberi. It emphasizes that beriberi is the model for high calorie malnutrition because of its occurrence in predominantly white rice consuming cultures. Some of the symptomatology of this ancient scourge is described, emphasizing the difference from that seen in starvation. High calorie malnutrition, due to excessive ingestion of simple carbohydrates, is widely encountered in the U.S.A. today. Thiamin deficiency is commonly associated with this, largely because of its cofactor status in the metabolism of glucose. The biochemistry of the three phosphorylated esters of thiamin and the transporters are discussed and the pathophysiology of thiamin deficiency reviewed. The role of thiamin, and particularly its synthetic derivatives as therapeutic agents, is not fully appreciated in Western civilization and a clinical section describes some of the unusual cases described in the scientific literature and some experienced by the author. The possible role of high calorie malnutrition and related thiamin deficiency in juvenile crime is hypothesized."	"Folate network genetic variation, plasma homocysteine, and global genomic methylation content: a genetic association study. Sequence variants in genes functioning in folate-mediated one-carbon metabolism are hypothesized to lead to changes in levels of homocysteine and DNA methylation, which, in turn, are associated with risk of cardiovascular disease. 330 SNPs in 52 genes were studied in relation to plasma homocysteine and global genomic DNA methylation. SNPs were selected based on functional effects and gene coverage, and assays were completed on the Illumina Goldengate platform. Age-, smoking-, and nutrient-adjusted genotype--phenotype associations were estimated in regression models. Using a nominal P ≤ 0.005 threshold for statistical significance, 20 SNPs were associated with plasma homocysteine, 8 with Alu methylation, and 1 with LINE-1 methylation. Using a more stringent false discovery rate threshold, SNPs in FTCD, SLC19A1, and SLC19A3 genes remained associated with plasma homocysteine. Gene by vitamin B-6 interactions were identified for both Alu and LINE-1 methylation, and epistatic interactions with the MTHFR rs1801133 SNP were identified for the plasma homocysteine phenotype. Pleiotropy involving the MTHFD1L and SARDH genes for both plasma homocysteine and Alu methylation phenotypes was identified. No single gene was associated with all three phenotypes, and the set of the most statistically significant SNPs predictive of homocysteine or Alu or LINE-1 methylation was unique to each phenotype. Genetic variation in folate-mediated one-carbon metabolism, other than the well-known effects of the MTHFR c.665C&gt;T (known as c.677 C&gt;T, rs1801133, p.Ala222Val), is predictive of cardiovascular disease biomarkers."	"[Familial Wernicke's-like encephalopathy]. Wernicke's encephalopathy is a syndrome characterized by ataxia, ophthalmoplegia, and confusion with thiamine deficiency. We reported on two Japanese brothers with a newly discovered recessively inherited syndrome similar to Wernicke's encephalopathy that developed in the second decade of life; this syndrome was manifested clinically as thiamine-responsive diplopia, ataxia and confusion without serum thiamine deficiency. The patients had complex partial seizure. The administration of high-dose thiamine improved these symptoms. MRI of the brain showed high-intensity signals in the bilateral medial thalamus and periaqueductal region on fluid-attenuated inversion recovery images; these signals were characteristic of findings in Wernicke's encephalopathy. There was no history of chronic alcoholism. The clinical and images features resembling Wernicke's encephalopathy in these patients suggested that the syndrome was caused by a genetic disorder of thiamine metabolism. Genomic analysis of SLC10A3 encoding human thiamine transporter 2 revealed that the patients were compound heterozygotes for the K44E and E320Q mutations. Gene-expression analyses of mammalian culture cells showed that intracellular thiamine uptake activities were decreased significantly. High expression of SLC19A3 RNA in the thalamus may explain the selective thalamic lesions on MRI. The identification of this syndrome proves insight into the thiamine metabolism associated with Wernicke's encephalopathy in humans."	"Thiamin uptake by pancreatic acinar cells: effect of chronic alcohol feeding/exposure. Thiamin is important for normal function of pancreatic acinar cells, but little is known about its mechanism of uptake and about the effect of chronic alcohol use on the process. We addressed these issues using freshly isolated rat primary and rat-derived cultured AR42J pancreatic acinar cells as models. Results showed thiamin uptake by both primary and cultured AR42J pancreatic acinar cells to be via a specific carrier-mediated mechanism and that both of the thiamin transporters 1 and 2 (THTR-1 and THTR-2) are expressed in these cells. Chronic alcohol feeding of rats was found to lead to a significant inhibition of carrier-mediated thiamin uptake by pancreatic acinar cells and was associated with a significant reduction in level of expression of THTR-1 and THTR-2 at the protein and mRNA levels. Chronic exposure (96 h) of AR42J cells to alcohol also led to a significant decreased carrier-mediated thiamin uptake, an effect that was associated with a significant decrease in the activity of the human SLC19A2 and SLC19A3 promoters expressed in these cells. We also examined the effect of chronic alcohol feeding of rats on level of expression of key thiamin metabolizing enzymes (thiamin phosphokinase and thiamin pyrophosphatase) as well as on level of expression of the mitochondrial thiamin pyrophosphate transporter of pancreatic acinar cells and observed a significant inhibition in all these parameters. These results demonstrate for the first time that thiamin uptake by pancreatic acinar cells is via a carrier-mediated process and that both the THTR-1 as well as THTR-2 are expressed in these cells. Also, chronic alcohol feeding/exposure inhibits thiamin uptake process and the inhibition is, at least in part, being exerted at the transcriptional level. Furthermore, chronic alcohol feeding also negatively impacts intracellular parameters of thiamin metabolism in pancreatic acinar cells."	"Quantitative analysis and diagnostic significance of methylated SLC19A3 DNA in the plasma of breast and gastric cancer patients. Previously, we have examined the methylation status of SLC19A3 (solute carrier family 19, member 3) promoter and found that SLC19A3 was epigenetically down-regulated in gastric cancer. Here, we aim to develop a new biomarker for cancer diagnosis using methylated SLC19A3 DNA in plasma. SLC19A3 gene expression was examined by RT-qPCR. Methylation status of SLC19A3 promoter was evaluated by methylation-specific qPCR. SLC19A3 expression was significantly down-regulated in 80% (12/15) of breast tumors (P&lt;0.005). Breast tumors had significant increase in methylation percentage when compared to adjacent non-tumor tissues (P&lt;0.005). A robust and simple methylation-sensitive restriction enzyme digestion and real-time quantitative PCR (MSRED-qPCR) was developed to quantify SLC19A3 DNA methylation in plasma. We validated this biomarker in an independent validation cohort of 165 case-control plasma including 60 breast cancer, 45 gastric cancer patients and 60 healthy subjects. Plasma SLC19A3 methylated DNA level was effective in differentiating both breast and gastric cancer from healthy subjects. We further validated this biomarker in another independent blinded cohort of 78 plasma including 38 breast cancer, 20 gastric cancer patients and 20 healthy subjects. The positive predictive values for breast and gastric cancer were 90% and 85%, respectively. The negative predictive value of this biomarker was 85%. Elevated level in plasma has been detected not only in advanced stages but also early stages of tumors. The positive predictive value for ductal carcinoma in situ (DCIS) cases was 100%. These results suggested that aberrant SLC19A3 promoter hypermethylation in plasma may be a novel biomarker for breast and gastric cancer diagnosis."	"A wide spectrum of clinical and brain MRI findings in patients with SLC19A3 mutations. SLC19A3 (solute carrier family 19, member 3) is a thiamin transporter with 12 transmembrane domains. Homozygous or compound heterozygous mutations in SLC19A3 cause two distinct clinical phenotypes, biotin-responsive basal ganglia disease and Wernicke's-like encephalopathy. Biotin and/or thiamin are effective therapies for both diseases. We conducted on the detailed clinical, brain MRI and molecular genetic analysis of four Japanese patients in a Japanese pedigree who presented with epileptic spasms in early infancy, severe psychomotor retardation, and characteristic brain MRI findings of progressive brain atrophy and bilateral thalami and basal ganglia lesions. Genome-wide linkage analysis revealed a disease locus at chromosome 2q35-37, which enabled identification of the causative mutation in the gene SLC19A3. A pathogenic homozygous mutation (c.958G &gt; C, [p.E320Q]) in SLC19A3 was identified in all four patients and their parents were heterozygous for the mutation. Administration of a high dose of biotin for one year improved neither the neurological symptoms nor the brain MRI findings in one patient. Our cases broaden the phenotypic spectrum of disorders associated with SLC19A3 mutations and highlight the potential benefit of biotin and/or thiamin treatments and the need to assess the clinical efficacy of these treatments."	"Can an enzyme cofactor be a factor in malignant progression? NA"	"Hypoxia induced upregulation and function of the thiamine transporter, SLC19A3 in a breast cancer cell line. Adaptive responses within hypoxic tumor microenvironments require the altered expression of Solute Carrier (SLC) transporters to maintain nutrient uptake in support of cellular metabolism and biosynthesis. Using a real time PCR array strategy to further characterize changes in transporter expression within a chronic hypoxia breast cancer cell line model (BT474), we have found a 31 fold increase in the expression of the thiamine transporter, SLC19A3. Thus, further investigations into the expression changes of the thiamine transporters, SLC19A2 and SLC19A3, and the role of hypoxia inducible factor-1 alpha (HIF-1α) regulating their expression were conducted. Chronic culturing of BT474 cells in 1% O2 up to 142 days consistently demonstrated a high level of SLC19A3 expression with a mean of approximately 40 fold with no change in SLC19A2. A corresponding 2 fold increase in thiamine uptake over 15 min was measured in chronic hypoxic BT474 cells compared to normoxia. Acute 1% O2 exposure of BT474 cells up to 72 h demonstrated a 7.5 fold increase in SLC19A3 expression. The chemical hypoxia mimetic deferoxamine, resulted in an approximately 70 fold increase in SLC19A3 expression. Stable shRNA knockdown of HIF-1α reduced hypoxia mediated SLC19A3 up-regulation by approximately 3 fold compared to scrambled construct. In conclusion, SLC19A3 transporter expression was observed to be up-regulated under acute, chronic and DFO induced hypoxia. The attenuated increase in SLC19A3 expression after HIF-1α knockdown suggests a role for HIF-1α mediated pathways regulating SLC19A3 gene expression."	"Unraveling the pathophysiology of alcohol-induced thiamin deficiency. NA"	"Chronic alcohol consumption and intestinal thiamin absorption: effects on physiological and molecular parameters of the uptake process. Thiamin is essential for normal cellular functions, and its deficiency leads to a variety of clinical abnormalities. Humans and other mammals obtain the vitamin via intestinal absorption. The intestine is exposed to two sources of thiamin, a dietary and a bacterial (i.e., normal microflora of the large intestine) source. Chronic alcohol consumption is associated with thiamin deficiency, which is caused (in part) by inhibition in intestinal thiamin absorption. However, little is known about the physiological and molecular aspects of the intestinal thiamin uptake process that are affected by chronic alcohol use. To address these issues, we used rats fed an alcohol-liquid diet and human intestinal epithelial HuTu-80 cells chronically exposed to ethanol as model systems. The results showed that chronic alcohol feeding to rats led to a significant inhibition in carrier-mediated thiamin transport across both the jejunal brush-border membrane and basolateral membrane domains. This was associated with a significant reduction in level of expression of thiamin transporter-1 (THTR-1), but not THTR-2, at the protein and mRNA levels. Level of expression of the heterogenous nuclear RNA of THTR-1 in the intestine of alcohol-fed rats was also decreased compared with their pair-fed controls. Chronic alcohol feeding also caused a significant inhibition in carrier-mediated thiamin uptake in rat colon. Studies with HuTu-80 cells chronically exposed to ethanol also showed a significant inhibition in carrier-mediated thiamin uptake. This inhibition was associated with a reduction in level of expression of human THTR-1 and THTR-2 at the protein, mRNA, and transcriptional (promoter activity) levels. These studies demonstrate that chronic alcohol feeding inhibits intestinal thiamin absorption via inhibition of the individual membrane transport event across the polarized absorptive epithelial cells. Furthermore, the inhibition is, at least in part, mediated via transcriptional mechanism(s)."	"Biotin-responsive basal ganglia disease in ethnic Europeans with novel SLC19A3 mutations. To report the first 2 European cases of biotin-responsive basal ganglia disease and novel SLC19A3 mutations. Case reports. University hospital. Patients A 33-year-old man and his 29-year-old sister, both of Portuguese ancestry, presented with recurrent episodes of encephalopathy. Between episodes patients exhibited generalized dystonia, epilepsy, and bilateral hyperintensities of the caudate and putamen. Clinical and radiologic findings. Administration of high doses of biotin or of a combination of biotin and thiamine during encephalopathies resulted in spectacular clinical and radiologic improvement in both patients. Sequencing of the SLC19A3 disclosed 2 novel mutations, both of which created premature stop codons in the protein sequence of hTHTR2. This study demonstrates that biotin-responsive basal ganglia disease is a panethnic condition. A therapeutic trial with high doses of biotin and thiamine seems mandatory in every unexplained encephalopathy with bilateral lesions of putamen and caudate nuclei."	"Impaired intestinal vitamin B1 (thiamin) uptake in thiamin transporter-2-deficient mice. Intestinal thiamin uptake process is vital for maintaining normal body homeostasis of the vitamin; in vitro studies suggest that both thiamin transporter-1 (THTR-1) and -2 (THTR-2) are involved. Mutations in THTR-1 cause thiamin-responsive megaloblastic anemia, a tissue-specific disease associated with diabetes mellitus, megaloblastic anemia, and sensorineural deafness. However, in patients with thiamin-responsive megaloblastic anemia, plasma thiamin levels are within normal range, indicating that THTR-2 (or another carrier) could provide sufficient intestinal thiamin absorption. We tested this possibility and examined the role of THTR-2 in uptake of thiamin in the intestine of mice. THTR-2-deficient mice were generated by SLC19A3 gene knockout and used to examine intestinal uptake of thiamin in vitro (isolated cells) and in vivo (intact intestinal loops). We also examined intestinal thiamin uptake in THTR-1-deficient mice. Intestine of THTR-2-deficient mice had reduced uptake of thiamin compared with those of wild-type littermate mice (P &lt; .01); this reduction was associated with a decrease (P &lt; .01) in blood thiamin levels in THTR-2-deficient mice. However, intestinal uptake of thiamin in THTR-1-deficient mice was not significantly different from that of wild-type littermate animals. Level of expression of THTR-1 was not altered in the intestine of THTR-2-deficient mice, but level of expression of THTR-2 was up-regulated in the intestine of THTR-1-deficient mice. THTR-2 is required for normal uptake of thiamin in the intestine and can fulfill normal levels of uptake in conditions associated with THTR-1 dysfunction."	"Sensitivity of breast cancer cell lines to recombinant thiaminase I. We have previously shown that the expression of the thiamine transporter THTR2 is decreased sevenfold in breast cancer, which may leave breast cancer cells vulnerable to acute thiamine starvation. This concept was supported by the observation that MDA231 breast cancer xenografts demonstrated growth inhibition in mice fed a thiamine-free diet. We purified recombinant Bacillus thiaminolyticus thiaminase I enzyme, which digests thiamine, to study acute thiamine starvation in breast cancer. Thiaminase I enzyme was cytotoxic in six breast cancer cell lines with IC(50)s ranging from 0.012 to 0.022 U/ml. The growth inhibitory effects of the combination of thiaminase I with either doxorubicin or paclitaxel were also examined. Over a wide range of drug concentrations, thiaminase 1 was consistently synergistic or additive with doxorubicin and paclitaxel in MCF-7, ZR75, HS578T and T47D cell lines, with most combinations having a calculated combination index (CI) of less than 0.8, indicating synergy. Although thiaminase I exposure did not stimulate the energy-sensing signaling kinases AKT, AMPK and GSK-3beta in MCF-7, ZR75, HS578T and T47D cell lines, thiaminase I exposure did stimulate expression of the ER stress response protein GRP78. In summary, thiaminase I is cytotoxic in breast cancer cell lines and triggers the unfolded protein response. These findings suggest that THTR2 down-regulation in breast tumors may present a nutritional vulnerability that could be exploited by thiaminase I enzyme therapy."	"Promoter hypermethylation mediates downregulation of thiamine receptor SLC19A3 in gastric cancer. As an important way to inactivate tumor suppressor genes (TSGs) during cancer development, promoter hypermethylation can be used to define novel TSGs and identify biomarkers for cancer diagnosis. SLC19A3 (solute carrier family 19, member 3) was found to be such a biomarker. SLC19A3 expression was downregulated in gastric cancer cell lines (71%, 5/7) and restored after pharmacological demethylation. Notably, hypermethylation of SLC19A3 promoter was detected in gastric cancer cell lines (57%, 4/7), primary gastric carcinoma tissues (51%, 52/101) and precancerous lesion (intestinal metaplasia) tissues (32%, 8/25). Exogenous SLC19A3 expression caused growth inhibition of gastric cancer cells. In summary, SLC19A3 was epigenetically downregulated in gastric cancer. Methylation of SLC19A3 promoter could be a novel biomarker for early gastric cancer development."	"Enteropathogenic Escherichia coli inhibits intestinal vitamin B1 (thiamin) uptake: studies with human-derived intestinal epithelial Caco-2 cells. Infection with the gram-negative enteropathogenic Escherichia coli (EPEC), a food-borne pathogen, represents a significant risk to human health. Whereas diarrhea is a major consequence of this infection, malnutrition also occurs especially in severe and prolonged cases, which may aggravate the health status of the infected hosts. Here we examined the effect of EPEC infection on the intestinal uptake of the water-soluble vitamin B1 (thiamin) using an established human intestinal epithelial Caco-2 cell model. The results showed that infecting Caco-2 cells with wild-type EPEC (but not with nonpathogenic E. coli, killed EPEC, or filtered supernatant) leads to a significant (P &lt; 0.01) inhibition in thiamin uptake. Kinetic parameters of both the nanomolar (mediated by THTR-2) and the micromolar (mediated by THTR-1) saturable thiamin uptake processes were affected by EPEC infection. Cell surface expression of hTHTR-1 and -2 proteins, (determined by the biotinylation method) showed a significantly (P &lt; 0.01) lower expression in EPEC-treated cells compared with controls. EPEC infection also affected the steady-state mRNA levels as well as promoter activity of the SLC19A2 and SLC19A3 genes. Infecting Caco-2 cells with EPEC mutants that harbor mutations in the escN gene (which encodes a putative ATPase for the EPEC type III secretion system, TTSS) or the espA, espB, or espD genes (which encode structural components of the TTSS) did not affect thiamin uptake. On the other hand, mutations in espF and espH genes (which encode effector proteins) exhibited partial inhibition in thiamin uptake. These results demonstrate for the first time that EPEC infection of human intestinal epithelial cells leads to inhibition in thiamin uptake via effects on physiological and molecular parameters of hTHTR-1 and -2. Furthermore, the inhibition appears to be dependent on a functional TTSS of EPEC."	"Pancreatic beta cells and islets take up thiamin by a regulated carrier-mediated process: studies using mice and human pancreatic preparations. Thiamin is essential for the normal function of the endocrine pancreas, but very little is known about uptake mechanism(s) and regulation by beta cells. We addressed these issues using mouse-derived pancreatic beta-TC-6 cells, and freshly isolated primary mouse and human pancreatic islets. Results showed that thiamin uptake by beta-TC-6 cells involves a pH (but not Na+)-dependent carrier-mediated process that is saturable at both the nanomolar (apparent K(m) = 37.17 +/- 9.9 nM) and micromolar (apparent K(m) = 3.26 +/- 0.86 microM) ranges, cis-inhibited by thiamin structural analogs, and trans-stimulated by unlabeled thiamin. Involvement of carrier-mediated process was also confirmed in primary mouse and human pancreatic islets. Both THTR-1 and THTR-2 were found to be expressed in these mouse and human pancreatic preparations. Maintaining beta-TC-6 cells in the presence of a high level of thiamin led to a significant (P &lt; 0.01) decrease in thiamin uptake, which was associated with a significant downregulation in level of expression of THTR-1 and THTR-2 at the protein and mRNA levels and a decrease in transcriptional (promoter) activity. Modulators of intracellular Ca2+/calmodulin- and protein-tyrosine kinase-mediated pathways also altered thiamin uptake. Finally, confocal imaging of live beta-TC-6 cells showed that clinical mutants of THTR-1 have mixed expression phenotypes and all led to impairment in thiamin uptake. These studies demonstrate for the first time that thiamin uptake by the endocrine pancreas is carrier mediated and is adaptively regulated by the prevailing vitamin level via transcriptional mechanisms. Furthermore, clinical mutants of THTR-1 impair thiamin uptake via different mechanisms."	"Mutations in a thiamine-transporter gene and Wernicke's-like encephalopathy. NA"	"Molecular genetics of alcohol-related brain damage. In the scientific literature it has been repeatedly hypothesized that there is a heritable susceptibility to thiamine deficiency comparable to other hereditary metabolic disorders. The aim of this paper is to review the most recent knowledge on the genetic susceptibility to the development of alcohol-related Wernicke-Korsakoff syndrome (WKS). A literature review was carried out looking at the molecular genetics studies performed in alcohol-dependent patients affected by WKS. A genetic component in the pathogenesis of WKS has been postulated since the late seventies. Since then, very few genetic studies have been carried out on candidate genes such as thiamine-dependent enzymes, alcohol-metabolizing enzymes and GABA receptors. The findings are controversial and not conclusive. Several authors reported the important role of the thiamine transporters in the pathogenesis of the thiamine deficiency disorders. Our findings on SLC19A2 and SLC19A3 suggest a potential role of these two genes in the pathophysiology of alcohol-related thiamine deficiency but further studies need to be carried out. The WKS may be a very complex, multifactorial disorder where the interaction of multiple genes and environment plays an important role in the pathogenesis. However, it is still plausible that megaphenic gene effects are responsible for WKS susceptibility and the thiamine transport genes are good candidates for having such a role. Further genetic studies are definitely needed to investigate the association with candidate genes or linkage with hot spot areas."	"Vitamin B1 (thiamine) uptake by human retinal pigment epithelial (ARPE-19) cells: mechanism and regulation. Retinal abnormality and visual disturbances occur in thiamine-responsive megaloblastic anaemia (TRMA), an autosomal recessive disorder caused by mutations in the human thiamine transporter-1 (hTHTR-1). Human retinal pigment epithelial cells play a pivotal role in supplying thiamine to the highly metabolically active retina but nothing is known about the mechanism, regulation or biological processes involved in thiamine transport in these cells. To address these issues, we used human-derived retinal pigment epithelial ARPE-19 cells to characterize the thiamine uptake process. Thiamine uptake is energy- and temperature-dependent, pH-sensitive, Na+-independent, saturable at both the nanomolar (apparent Km, 30 +/- 5 nM) and the micromolar (apparent Km, 1.72 +/- 0.3 microM) concentration ranges, specific for thiamine and sensitive to sulfhydryl group inhibition. The diuretic amiloride caused a concentration-dependent inhibition in thiamine uptake, whereas the anti-trypanosomal drug, melarsoprol, failed to affect the uptake process. Both hTHTR-1 and hTHTR-2 are expressed in ARPE-19 cells as well as in native human retinal tissue with expression of the former being significantly higher than that of the latter. Uptake of thiamine was adaptively regulated by extracellular substrate level via transcriptionally mediated mechanisms that involve both hTHTR-1 and hTHTR-2; it was also regulated by an intracellular Ca2+-calmodulin-mediated pathway. Confocal imaging of living ARPE-19 cells expressing TRMA-associated hTHTR-1 mutants (D93H, S143F and G172D) showed various expression phenotypes. These results demonstrate for the first time the existence of a specialized and regulated uptake process for thiamine in a cellular model of human retinal pigment epithelia that involves hTHTR-1 and hTHTR-2. Further, clinically relevant mutations in hTHTR-1 lead to impaired cell surface expression or function of the transporter in retinal epithelial ARPE-19 cells."	"Characteristics of thiamine uptake by the BeWo human trophoblast cell line. Little is known concerning the mechanisms responsible for the transplacental transfer of thiamine. So, the aim of this work was to characterize the placental uptake of thiamine from the maternal circulation, by determining the characteristics of 3H-thiamine uptake by a human trophoblast cell line (BeWo). Uptake of (3)H-thiamine (50-100 nM) by BeWo cells was: 1) temperature-dependent and energy-independent; 2) pH-dependent (uptake increased as the extracellular medium pH decreased); 3) Na(+)-dependent and Cl(-)-independent; 4) not inhibited by the thiamine structural analogs amprolium, oxythiamine and thiamine pyrophosphate; 5) inhibited by the unrelated organic cations guanidine, N-methylnicotinamide, tetraethylammonium, clonidine and cimetidine; 6) inhibited by the organic cation serotonin, and by two selective inhibitors of the serotonin plasmalemmal transporter (hSERT), fluoxetine and desipramine. We conclude that (3)H-thiamine uptake by BeWo cells seems to occur through a process distinct from thiamine transporter-1 (hThTr-1) and thiamine transporter-2 (hThTr-2). Rather, it seems to involve hSERT. Moreover, chronic (48 h) exposure of cells to caffeine (1 microM) stimulated and chronic exposure to xanthohumol and iso-xanthohumol (1 and 0.1 microM, respectively) inhibited (3)H-thiamine uptake, these effects being not mediated through modulation of the expression levels of either hThTr-1 or hSERT mRNA."	"Biotin-responsive basal ganglia disease-linked mutations inhibit thiamine transport via hTHTR2: biotin is not a substrate for hTHTR2. The water-soluble micronutrient thiamine is required for normal tissue growth and development in humans. Thiamine is accumulated into cells through the activity of two cell surface thiamine transporters (hTHTR1 and hTHTR2), which are differentially targeted in polarized tissues. Mutational dysfunction of hTHTR1 is associated with the clinical condition of thiamine-responsive megaloblastic anemia: the symptoms of which are alleviated by thiamine supplementation. Recently, two hTHTR2 mutants (G23V, T422A) have been discovered in clinical kindreds manifesting biotin-responsive basal ganglia disease (BBGD): the symptoms of which are alleviated by biotin administration. Why then does mutation of a specific thiamine transporter isoform precipitate a disorder correctable by exogenous biotin? To investigate the suggestion that hTHTR2 can physiologically function as a biotin transporter, we examined 1) the cell biological basis of hTHTR2 dysfunction associated with the G23V and T422A mutations and 2) the substrate specificity of hTHTR2 and these clinically relevant mutants. We show that the G23V and T422A mutants both abrogate thiamine transport activity rather than targeting of hTHTR2 to the cell surface. Furthermore, biotin accumulation was not detectable in cells overexpressing either the full length hTHTR2 or the clinically relevant hTHTR2 mutants, yet was demonstrable in the same assay using cells overexpressing the human sodium-dependent multivitamin transporter, a known biotin transporter. These results cast doubt on the most parsimonious explanation for the BBGD phenotype, namely that hTHTR2 is a physiological biotin transporter."	"Thiamin uptake by the human-derived renal epithelial (HEK-293) cells: cellular and molecular mechanisms. Thiamin (vitamin B(1)) is essential for normal cellular functions. The kidneys play a critical role in regulating body thiamin homeostasis, by salvaging the vitamin via reabsorption from the glomerular filtrate, but little is known about the mechanism(s) and regulation of thiamin transport in the human renal epithelia at cellular and molecular levels. Using the human-derived renal epithelial HEK-293 cells as a model, we have addressed these issues. Our results showed [(3)H]thiamin uptake to be 1) temperature and energy dependent but Na(+) independent, 2) pH dependent with higher uptake at alkaline/neutral buffer pH compared with acidic pH, 3) saturable as a function of concentration over the nanomolar (apparent K(m) = 70.0 +/- 18.4 nM) and micromolar (apparent K(m) = 2.66 +/- 0.18 microM) ranges, 4) cis-inhibited by unlabeled thiamin and its structural analogs but not by unrelated organic cations, 5) trans-stimulated by unlabeled thiamin, and 6) competitively inhibited by amiloride with an apparent K(i) of 0.6 mM. Using a gene-specific small-interference RNAs (siRNAs) approach, human thiamin transporters 1 and 2 (hTHTR-1 and hTHTR-2) were both found to be expressed and contributed toward total carrier-mediated thiamin uptake. Maintaining the cells in thiamin-deficient medium led to a significant (P &lt; 0.01) and specific upregulation in [(3)H]thiamin uptake, which was associated with an increase in hTHTR-1 and hTHTR-2 protein and mRNA levels as well as promoter activities. Uptake of thiamin by HEK-293 cells also appeared to be under the regulation of an intracellular Ca(2+)/calmodulin-mediated pathway. These studies demonstrate for the first time that thiamin uptake by HEK-293 cells is mediated via a specific pH-dependent process, which involves both the hTHTR-1 and hTHTR-2. In addition, the uptake process appears to be under the regulation of an intracellular Ca(2+)/CaM-mediated pathway and also adaptively upregulated in thiamin deficiency via transcriptional regulatory mechanism(s) that involves both the hTHTR-1 and hTHTR-2."	"Targeting and trafficking of the human thiamine transporter-2 in epithelial cells. Humans lack biochemical pathways for thiamine synthesis, so cellular requirements are met via specific carrier-mediated uptake pathways. Two proteins from the solute carrier SLC19A gene family have been identified as human thiamine transporters (hTHTRs), SLC19A1 (hTHTR1) and SLC19A2 (hTHTR2). Both of these transporters are co-expressed but are differentially targeted in polarized cell types that mediate vectorial thiamine transport (e.g. renal and intestinal epithelia). It is important to understand the domain structure of these proteins, namely which regions within the polypeptide sequence are important for physiological delivery to the cell surface, in order to understand the impact of clinically relevant mutations on thiamine transport. Here we have characterized the mechanisms regulating hTHTR2 distribution by using live cell imaging methods that resolve the targeting and trafficking dynamics of full-length hTHTR2, a series of hTHTR2 truncation mutants, as well as chimeras comprising the hTHTR1 and hTHTR2 sequence. We showed the following: (i) that the cytoplasmic COOH-tail of hTHTR2 is not essential for apical targeting in polarized cells; (ii) that delivery of hTHTR2 to the cell surface is critically dependent on the integrity of the transmembrane backbone of the polypeptide so that minimal truncations abrogate cell surface expression of hTHTR2; and (iii) video rate images of hTHTR2-containing intracellular vesicles displayed rapid bi-directional trafficking events to and from the cell surface impaired by microtubule-disrupting but not microfilament-disrupting agents as well as by overexpression of the dynactin subunit dynamitin (p50). Finally, we compared the behavior of hTHTR2 with that of hTHTR1 and the human reduced folate carrier (SLC19A1) to underscore commonalities in the cell surface targeting mechanisms of the entire SLC19A gene family."	"Developmental maturation of intestinal and renal thiamin uptake: studies in wild-type and transgenic mice carrying human THTR-1 and 2 promoters. Thiamin (B1) is an essential micronutrient for normal growth and development. Mammals obtain thiamin through intestinal absorption, while in the kidney thiamin is reabsorbed to prevent its loss in the urine, both processes are specialized, carrier-mediated and involve thiamin transporters-1 and 2 (THTR-1 and THTR-2, respectively; products of the SLC19A2 and SLC19A3 genes). Although thiamin appears to play an important role in neonatal growth, little is currently known about the possible regulation of intestinal and renal thiamin uptake during developmental maturation. We addressed these issues by examining intestinal and renal thiamin uptake and expression of THTR-1 and THTR-2 during early stages of life. We utilized wild-type mice (mice express orthologues of both thiamin transporters) and transgenic mice expressing human SLC19A2 or SLC19A3 promoter-reporter transgenes as a model system and examined carrier-mediated thiamin uptake, mTHTR-1 and 2 protein and mRNA levels and luciferase activity in suckling (13 days), weanling (25-27 days), and adult (60-65 days) mice. Carrier-mediated thiamin uptake by jejunal and renal brush border membrane vesicles (BBMV) both decreased with maturation (suckling&gt;weanling&gt;adult) and were associated with a reduction in mTHTR-1 and mTHTR-2 protein, mRNA levels, and the activity of human SLC19A2 and SLC19A3 promoter-reporter constructs in the intestines and kidneys of transgenic mice. These results are the first to demonstrate that intestinal and renal thiamin uptake are developmentally regulated during early stages of life, mediated through mTHTR-1 and mTHTR-2, and suggest the possible involvement of transcriptional regulatory mechanism(s) in this regulation."	"Thiamine-responsive congenital lactic acidosis: clinical and biochemical studies. We studied six infants with thiamine-responsive congenital lactic acidosis and normal pyruvate dehydrogenase complex activity in vitro, through clinical and biochemical analysis. In addition to elevated lactate and pyruvate levels, the data revealed increased urinary excretion of alpha-ketoglutarate, alpha-ketoadipate, and branched chain ketoacids, indicating functional impairment of thiamine-requiring enzymes, such as pyruvate dehydrogenase complex, alpha-ketoglutarate dehydrogenase complex, alpha-ketoadipate dehydrogenase, and branched chain amino acid dehydrogenase. The metabolism of thiamine has not been investigated in patients with thiamine-responsive congenital lactic acidosis. We evaluated two specific transport systems, THTR-1 (SLC19A2) and THTR-2 (SLC19A3), and a pyrophosphorylating enzyme of thiamine, thiamine pyrophosphokinase (hTPK 1), in addition to pyruvate dehydrogenase complex and alpha-ketoglutarate dehydrogenase complex activity; no abnormality was found. Although the clinical features of thiamine-responsive congenital lactic acidosis are heterogeneous and clinical responses to thiamine administration vary, we emphasize the importance of early diagnosis and initiation of thiamine therapy before the occurrence of permanent brain damage. Careful monitoring of lactate and pyruvate would be useful in determining thiamine dosage."	"Differentiation-dependent up-regulation of intestinal thiamin uptake: cellular and molecular mechanisms. Differentiation of intestinal epithelial cells is associated with up-and-down regulation of expression of a variety of genes including those involved in nutrient uptake. Nothing is known about possible differentiation-dependent regulation of the intestinal thiamin uptake process and the cellular and molecular mechanisms involved in such regulation. Using as models human-derived intestinal epithelial Caco-2 cells and crypt/villus epithelial cells isolated from wild-type and transgenic mice carrying promoters for human thiamin transporter-1 and -2 (hTHTR-1 and hTHTR-2), we addressed this issue. Our results showed that differentiation of Caco-2 cells is associated with a significant up-regulation in carrier-mediated thiamin uptake. Up-regulation was associated with a significant increase in the level of expression of hTHTR-1 and hTHTR-2 protein and mRNA as well as in activity of the corresponding transfected human thiamin transporter-1 (SLC19A2) and -2 (SLC19A3) promoters. Deletion analysis identified the differentiation-responsive region to be at position -356 to -275 bp for the SLC19A2 promoter and at position -77 to -13 bp for the SLC19A3 promoter. In addition, a critical and specific role in the differentiation-mediated effects for an NF1 binding site (-348 to -345 bp) in the SLC19A2 promoter and a SP1/GC-box binding site (-48 to -45 bp) in the SLC19A3 promoter were established using mutational analysis. The physiological relevance of in vitro findings with Caco-2 cells was confirmed in wild-type and transgenic mice by demonstrating that thiamin uptake and mRNA levels of the mouse THTR-1 and THTR-2, as well as activity of human SLC19A2 and SLC19A3 promoters expressed in transgenic mice, were all significantly higher in intestinal villus compared with crypt epithelial cells. These studies demonstrate for the first time that differentiation of intestinal epithelial cells is associated with an up-regulation in thiamin uptake process and that this up-regulation appears to be mediated via transcriptional regulatory mechanisms that involve the SLC19A2 and SLC19A3 genes."	"Biotin-responsive basal ganglia disease maps to 2q36.3 and is due to mutations in SLC19A3. Biotin-responsive basal ganglia disease (BBGD) is a recessive disorder with childhood onset that presents as a subacute encephalopathy, with confusion, dysarthria, and dysphagia, and that progresses to severe cogwheel rigidity, dystonia, quadriparesis, and eventual death, if left untreated. BBGD symptoms disappear within a few days with the administration of high doses of biotin (5-10 mg/kg/d). On brain magnetic resonance imaging examination, patients display central bilateral necrosis in the head of the caudate, with complete or partial involvement of the putamen. All patients diagnosed to date are of Saudi, Syrian, or Yemeni ancestry, and all have consanguineous parents. Using linkage analysis in four families, we mapped the genetic defect near marker D2S2158 in 2q36.3 (LOD=5.9; theta=0.0) to a minimum candidate region (approximately 2 Mb) between D2S2354 and D2S1256, on the basis of complete homozygosity. In this segment, each family displayed one of two different missense mutations that altered the coding sequence of SLC19A3, the gene for a transporter related to the reduced-folate (encoded by SLC19A1) and thiamin (encoded by SLC19A2) transporters."	"Adaptive regulation of intestinal thiamin uptake: molecular mechanism using wild-type and transgenic mice carrying hTHTR-1 and -2 promoters. Thiamin participates in metabolic pathways contributing to normal cellular functions, growth, and development. The molecular mechanism of the human intestinal thiamin absorption process involves the thiamin transporters-1 (hTHTR-1) and -2 (hTHTR-2), products of the SLC19A2 and SLC19A3 genes. Little is known about adaptive regulation of the intestinal thiamin uptake process or the molecular mechanism(s) involved during thiamin deficiency. In these studies, we addressed these issues using wild-type mice and transgenic animals carrying the promoters of the hTHTR-1 and -2. We show that, in thiamin deficiency, a significant and specific upregulation in intestinal carrier-mediated thiamin uptake occurs and that this increase is associated with an induction in protein and mRNA levels of mTHTR-2 but not mTHTR-1; in addition, an increase in the activity of the SLC19A3, but not the SLC19A2, promoter was observed in the intestine of transgenic mice. Similar findings were detected in the kidney; however, expression of both thiamin transporters and activity of both human promoters were upregulated in this organ in thiamin deficiency. We also examined the effect of thiamin deficiency on the level of expression of mTHTR-1 and mTHTR-2 messages and activity of the human promoters in the heart and brain of transgenic mice and found an increase in mTHTR-1 mRNA and a rise in activity of the SLC19A2 promoter in thiamin-deficient mice. These results show that the intestinal and renal thiamin uptake processes are adaptively upregulated during dietary thiamin deficiency, that expression of mTHTR-1 and mTHTR-2 is regulated in a tissue-specific manner, and that this upregulation is mediated via transcriptional regulatory mechanism(s)."	"Biotin deficiency reduces expression of SLC19A3, a potential biotin transporter, in leukocytes from human blood. In evaluating potential indicators of biotin status, we quantitated the expression of biotin-related genes in leukocytes from human blood of normal subjects before and after inducing marginal biotin deficiency. Biotin deficiency was induced experimentally by feeding an egg-white diet for 28 d. Gene expression was quantitated for the following biotin-related proteins: methylcrotonyl-CoA carboxylase chains A (MCCA) and B (MCCB); propionyl-CoA carboxylase chains A (PCCA) and B (PCCB); pyruvate carboxylase (PC); acetyl-CoA carboxylase isoforms A (ACCA) and B (ACCB); holocarboxylase synthetase (HCS); biotinidase; and 2 potential biotin transporters: sodium-dependent multivitamin transporter (SMVT) and solute carrier family 19 member 3 (SLC19A3). For 7 subjects who successfully completed the study, the abundance of the specific mRNAs was determined by quantitative real-time RT-PCR at d 0 and 28. At d 28, SLC19A3 expression had decreased to 33% of d 0 (P &lt; 0.02 by two-tailed, paired t test). Expression of MCCA, PCCA, PC, ACCA, ACCB, HCS, biotinidase, and SMVT decreased to approximately 80% of d 0 (P &lt; 0.05). Expression of the MCCB and PCCB chains that do not carry the biotin-binding motif did not change significantly; we speculate that expression of the biotin-binding chains of biotin-dependent carboxylases is more responsive to biotin status changes. These data provide evidence that expression of SLC19A3 is a relatively sensitive indicator of marginal biotin deficiency."	"Thiamine transporter gene expression and exogenous thiamine modulate the expression of genes involved in drug and prostaglandin metabolism in breast cancer cells. In previous studies, we have shown that RNA levels of the thiamine transporter THTR2 were down-regulated in breast cancer tumors in comparison with normal tissues and that THTR2-mediated increases in thiamine uptake activity contributed to increased apoptosis after exposure to ionizing radiation. To further understand the biological effects of the alteration of THTR2 expression, we conducted a DNA microarray study of gene expression in THTR2-transfected breast cancer cells and found that, in addition to increased expression of THTR2 attributable to the transgene, three other genes were up-regulated &gt;2.5-fold in the transfected cells: cytochrome P450 isoform CYP4B1, 15-hydroxyprostaglandin dehydrogenase (15-PGDH), and transcription factor CRIP1. In addition, two genes were confirmed to be down-regulated in THTR2-transfected cells: trefoil factor 1 (TFF1) and Rho-GDP dissociation inhibitor (RGDI). Up-regulation of 15-PGDH and CYP4B1 expression was observed in other breast cancer cell lines transfected with THTR2, and down-regulation was observed after suppression of THTR2 with siRNA vectors. To determine the role of exogenous thiamine in the expression of these genes, we analyzed THTR2-transfected breast cancer cells grown in thiamine-depleted medium by quantitative reverse transcription-PCR and showed that three of these five genes showed evidence of regulation by exogenous thiamine in a manner concordant with the effects of THTR2 overexpression. One of the genes up-regulated by THTR2 transfection was down-regulated by thiamine depletion (CYP4B1), and two genes with decreased expression in THTR2-transfected breast cancer cells were up-regulated by thiamine depletion (TFF1 and RGDI). In summary, these studies show unexpected relationships between thiamine metabolism and genes that may be involved in the oncogenesis of breast and lung cancer."	"Characterization of the 5'-regulatory region of the human thiamin transporter SLC19A3: in vitro and in vivo studies. Transcriptional regulation of expression of the human thiamin transporter-2 (the product of the SLC19A3 gene) is unknown. In this study, we cloned the 5'-regulatory region of the human SLC19A3 gene (2,016 bp), identified the minimal promoter region required for basal activity, demonstrated a critical role for specific cis-regulatory elements in determining the promoter activity, and confirmed activity and physiological relevance of the cloned SLC19A3 promoter in vivo. With the use of transiently transfected human intestinal epithelial Caco-2 cells and 5'-deletion analysis, the minimal promoter region required for basal activity of the SLC19A3 promoter was found to be encoded in a sequence between -77 and +59 by using the start of transcription initiation as position 1. This minimal region was found to contain a number of putative cis-regulatory elements, with a critical role for a stimulating protein-1 (SP1)/GC-box binding site (at position -48/-45 bp) established by means of mutational analysis. With the use of EMSA and supershift assays, the binding of SP1 and SP3 to the minimal promoter region was also demonstrated. In transiently transfected Drosophila SL2 cells, both SP1 and SP3 transactivated the SLC19A3 minimal promoter in a dose-dependent manner and in combination demonstrated an additive stimulatory effect. Functionality of the full-length SLC19A3 promoter was confirmed in vivo in transgenic mice expressing the promoter-luciferase reporter gene. These studies report the first characterization of the SLC19A3 promoter in vitro and in vivo and demonstrate the importance of an SP1 cis-regulatory element in regulating promoter activity of this important human gene."	"SLC19: the folate/thiamine transporter family. The SLC19 gene family of solute carriers is a family of three transporter proteins with significant structural similarity, transporting, however, substrates with different structure and ionic charge. The three members of this gene family are expressed ubiquitously and mediate the transport of two important water-soluble vitamins, folate and thiamine. The concentrative transport of substrates mediated by the members of this gene family is energized by transcellular H(+)/OH(-) gradient. SLC19A1 is expressed at highest levels in absorptive cells where it is located in a polarized manner either in the apical or basal membrane, depending on the cell type. It mediates the transport of reduced folate and its analogs, such as methotrexate, which are anionic at physiological pH. SLC19A2 is expressed ubiquitously and mediates the transport of thiamine, a cation at physiological pH. SLC19A3 is also widely expressed and is capable of transporting thiamine. This review summarizes the current knowledge on the structural, functional, molecular and physiological aspects of the SLC19 gene family."	"Expression and functional contribution of hTHTR-2 in thiamin absorption in human intestine. The aim of this study was to investigate expression and relative contribution of human thiamin transporter (hTHTR)-2 toward overall carrier-mediated thiamin uptake by human intestinal epithelial cells. Northern blot analysis showed that the message of the hTHTR-2 is expressed along the native human gastrointestinal tract with highest expression being in the proximal part of small intestine. hTHTR-2 protein was found, by Western blot analysis, to be expressed at the brush-border membrane (BBM), but not at the basolateral membrane, of native human enterocytes. This pattern of expression was confirmed in studies using a fusion protein of hTHTR-2 with the enhanced green fluorescent protein (hTHTR2-EGFP) expressed in living Caco-2 cells grown on filter. Pretreating Caco-2 cells (which also express the hTHTR-2 at RNA and protein levels) with hTHTR-2 gene-specific small interfering RNA (siRNA) led to a significant (P &lt; 0.01) and specific inhibition (48%) in carrier-mediated thiamin uptake. Similarly, pretreating Caco-2 cells with siRNA that specifically target hTHTR-1 (which is expressed in Caco-2 cells) also significantly (P &lt; 0.01) and specifically inhibited (by 56%) carrier-mediated thiamin uptake. When Caco-2 cells were pretreated with siRNAs against both hTHTR-2 and hTHTR-1 genes, an almost complete inhibition in carrier-mediated thiamin uptake was observed. These results show that the message of hTHTR-2 is expressed along the human gastrointestinal tract and that expression of its protein in intestinal epithelia is mainly localized to the apical BBM domain. In addition, results show that this transporter plays a significant role in carrier-mediated thiamin uptake in human intestine."	"Polarized expression of members of the solute carrier SLC19A gene family of water-soluble multivitamin transporters: implications for physiological function. Humans lack biochemical pathways for the synthesis of the micro-nutrients thiamine and folate. Cellular requirements are met through membrane transport activity, which is mediated by proteins of the SLC19A gene family. By using live-cell confocal imaging methods to resolve the localization of all SLC19A family members, we show that the two human thiamine transporters are differentially targeted in polarized cells, establishing a vectorial transport system. Such polarization decreases functional redundancy between transporter isoforms and allows for independent regulation of thiamine import and export pathways in cells."	"Male infertility and thiamine-dependent erythroid hypoplasia in mice lacking thiamine transporter Slc19a2. Thiamine-responsive megaloblastic anemia with diabetes and deafness (TRMA) is an autosomal recessive disease caused by mutations in the high-affinity thiamine transporter gene SLC19A2. To study the role of thiamine transport in the pathophysiology of TRMA syndrome and of each of the component disorders, we created a targeted disruption of the Slc19a2 gene in mice. Slc19a2 -/- mice are viable and females are fertile. Male -/- mice on a pure 129/Sv background are infertile with small testes (testis/body weight=0.13 +/- 0.04 knockout vs. 0.35 +/- 0.05 wild type, P&lt;0.000005). The lack of developing germ cells beyond primary spermatocytes suggests an arrest in spermatogenesis prior to meiosis II. Nuclear chromatin changes indicative of apoptosis are present. No mature sperm are found in the tubules or epididymis. This phenotype suggests a previously unknown role for thiamine transport in spermatogenesis and male fertility. Slc19a2 -/- mice on a pure 129/Sv background develop reticulocytopenia after two weeks on thiamine-depleted chow with a virtual absence of reticulocytes in the peripheral blood (0.12% knockout vs. 2.58% wild type, P=0.0079). Few erythroid precursors are found in the bone marrow. Contrary to human TRMA syndrome, we see no evidence of megaloblastosis or ringed sideroblasts in the bone marrow of Slc19a2 -/- mice in thiamine-replete or thiamine-deficient dietary states. Phenotypic differences between TRMA patients and Slc19a2 -/- mice might be explained by dissimilar tissue expression patterns of the transporter, as well as by differing metabolic needs and possible different species-specific contributions of the related thiamine transporter Slc19a3."	"Down-regulation of thiamine transporter THTR2 gene expression in breast cancer and its association with resistance to apoptosis. The recent molecular identification of two thiamine transporters, SLC19A2 (THTR1) and SLC19A3 (THTR2), has provided the opportunity to study thiamine transporter gene expression in human malignancies. We compared RNA levels of both THTR1 and THTR2 in a panel of human breast tumors and corresponding normal tissues. THTR2 RNA levels were down-regulated in breast cancer to 14% of the level found in corresponding normal tissues, while THTR1 levels were unchanged. Both thiamine transport genes were cloned and expressed in a breast cancer cell line to examine the impact of reconstituted thiamine transport gene expression on drug and radiation sensitivity and on resistance to apoptosis. THTR2-transfected breast cancer cells showed a 2.5-fold increase in specific THTR2 activity and a 3-fold increase in cytotoxicity against a bromoacetyl ester derivative of thiamine. Surprisingly, these cells also showed a 3-fold increase in sensitivity to doxorubicin and an increase in sensitivity to ionizing radiation, but no change in sensitivity to methotrexate or paclitaxel. TUNEL assays demonstrate an increase in apoptosis in THTR2-transfected cells exposed to doxorubicin and radiation, and Western blot analysis suggests that apoptosis associated with these cytotoxic stresses is mediated at least in part by a caspase-3-dependent pathway. Therefore, thiamine transporter THTR2 gene expression is down-regulated in breast cancer, which may contribute to resistance to apoptosis in these tumors."	"Specific association of thiamine-coated gadolinium nanoparticles with human breast cancer cells expressing thiamine transporters. Thiamine (vitamin B(1)) was investigated as a tumor-specific ligand for gadolinium nanoparticles. Solid nanoparticles containing gadolinium hexanedione (1.5 mg/mL) were engineered from oil-in-water microemulsion templates and coated with thiamine ligands. Thiamine ligands were synthesized by conjugating thiamine to either distearoylphosphatidylethanolamine (DSPE) or fluorescein via a poly(ethylene glycol) (PEG) spacer (Mw 3350). The efficiency of thiamine ligand attachment to nanoparticles was evaluated using gel permeation chromatography (GPC). Cell association studies were carried using a methotrexate-resistant breast cancer cell line, MTX(R)ZR75, transfected with thiamine transporter genes (THTR1 and THTR2). Thiamine-coated nanoparticle association with THTR1 and THTR2 cells was significantly greater than that with control breast cancer cells (MTX(R)ZR75 transfected with the empty expression vector pREP4) (p &lt; 0.01; t-test). The nanoparticle cell association was significantly dependent on the extent of thiamine ligand coating on nanoparticles, expression of thiamine transporters in cells, temperature of incubation, and the concentration of competitive inhibitor (free thiamine). Further studies are warranted to assess the potential of the engineered thiamine-coated gadolinium (Gd) nanoparticles in neutron capture therapy of tumors."	"Cellular and molecular aspects of thiamin uptake by human liver cells: studies with cultured HepG2 cells. The liver is an important site for thiamin metabolism, utilization, and storage. Little is known about the mechanism of thiamin uptake by the human liver. In this study, we examined cellular and molecular aspects of the human liver thiamin uptake process using the human-derived liver HepG2 cells as a model system. Our studies showed that the initial rate of thiamin uptake to be: (1) Na(+)-independent and occurs with no detectable metabolic alterations in the transported substrate, (2) highly pH-dependent with diminished uptake upon decreasing incubation buffer pH from 8.0 to 5.0, (3) higher following cell acidification compared to unacidified control cells, (4) saturable as a function of concentration with an apparent K(m) of 7.7+/-1.6 microM, (5) inhibited by the thiamin structural analogues oxythiamin and amprolium but not by the unrelated organic cations tetraethylammonium (TEA) and N-methylnicotinamide (NMN), and (6) inhibited in a concentration-dependent manner by the membrane transport inhibitor amiloride. Both of the recently cloned human thiamin transporters, i.e., SLC19A2 and SLC19A3, were found to be expressed in liver HepG2 cells with the former being the predominant form. High promoter activity of the predominant form, i.e., SLC19A2, was detected in HepG2 cells, and the minimal region of the SLC19A2 promoter required for its basal activity in these cells was found to be encoded in a sequence between -356 and -36 and has multiple putative cis-regulatory elements. Mutation of a number of these putative cis-elements diminished promoter activity of the SLC19A2 minimal region. These results show the involvement of a specialized carrier-mediated mechanism for thiamin uptake by human liver HepG2 cells. In addition, SLC19A2 was found to be the predominant thiamin uptake carrier expressed in these cells and its promoter displays a high level of activity in them."	"SLC19A3 encodes a second thiamine transporter ThTr2. Recently, a new family of facilitative carriers has been cloned consisting of the reduced folate (SLC19A1) and the thiamine (SLC19A2) transporters. Despite a high level of sequence identity and similarity there is essentially no functional overlap between these carriers. The former transports folates and the latter thiamine. In this paper we describe the function of SLC19A3, another member of this transporter family most recently cloned, after transient transfection of the cDNA into HeLa cells. Uptake of [3H]thiamine, but not of methotrexate nor folic acid, was enhanced in SLC19A3 transfectants relative to vector control. Similarly, in the transfectants thiamine transport increased with an increase in pH with peak activity at pH approximately 7.5. While [3H]thiamine uptake was markedly inhibited by nonlabeled thiamine it was not inhibited by several organic cations in 100-fold excess. Hence this carrier has a high degree of specificity for vitamin B1. The data indicate that SLC19A3 has the characteristics of SLC19A2 (ThTr1) and represents a second thiamine transporter (ThTr2) in this family of facilitative carriers."	"Identification and characterization of the human and mouse SLC19A3 gene: a novel member of the reduced folate family of micronutrient transporter genes. We report here the isolation, characterization, and chromosomal localization of the genes encoding the human and corresponding murine orthologue of solute carrier family 19A member 3 (SLC19A3). Human SLC19A3 encodes a 496-amino-acid residue protein with a predicted molecular weight of 56 kDa that shares sequence similarity to both SLC19A1 (reduced folate transporter (RFC-1)) and SLC19A2 (high affinity thiamine transporter (THTR-1)). Like the SLC19A1 and SLC19A2 proteins, SLC19A3 contains 12 putative transmembrane domains. The human SLC19A3 gene is widely expressed, with the most abundant expression observed in placenta, kidney, and liver, and has been mapped to chromosome 2q37. The murine SLC19A3 gene maps to central chromosome 1 in the region defined as a seizure susceptibility locus in the DBA/2J mouse strain. This article describes the identification of SLC19A3, a gene encoding a novel solute transporter, and establishes murine SLC19A3 as a candidate gene for seizures in the DBA/2J mouse."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SUCLA2"	"Leigh syndrome"	"Pharmacologically targetable vulnerability in prostate cancer carrying RB1-SUCLA2 deletion. RB1 gene is often homozygously deleted or mutated in prostate adenocarcinomas following acquirement of castration resistance and/or metastatic ability. We found that SUCLA2 gene is frequently involved in the deletion of the RB1 gene region in advanced prostate cancer. SUCLA2 constitutes the β-subunit of succinate CoA ligase heterodimer that reversibly converts succinyl CoA into succinate. We sought the possibility that deletion of SUCLA2 gives rise to a metabolic vulnerability that could be targeted therapeutically. We found a significant metabolic shift in SUCLA2-deleted prostate cancer cells, including lower mitochondrial respiratory activity. By screening a number of libraries for compounds that induce cell death selectively in SUCLA2-deficient prostate cancer cells, we identified thymoquinone (2-isopropyl-5-methylbenzo-1,4-quinone) and PMA (phorbol-12-myristate-13-acetate) from a natural compound library. These findings indicate that the metabolic vulnerability in SUCLA2-deficient prostate cancer cells is pharmacologically targetable."	"Genomic characterization and prognostication applied to a Brazilian cohort of patients with myelofibrosis. Genomic characterization of patients with myeloproliferative neoplasms (MPN) may lead to better diagnostic classification, prognostic assessment, and treatment decisions. These goals are particularly important in myelofibrosis (MF). We performed target Next Generation Sequencing for a panel of 255 genes and Chromosome Microarray Analysis (CMA) in 27 patients with MF. Patients were classified according to genomic findings and we compared the performance of a personalized prognostication system with IPSS, MIPSS70 and MIPSS70 + v2. Twenty-six patients presented mutations: 11.1% had single driver mutations in either JAK2, CALR or MPL; 85.2% had mutations in non-restricted genes (median: 2 per patient). CMA was abnormal in 91.7% of the 24 cases with available data. Copy-Number-Neutral Loss-of-Heterozygosity was the most common finding (66.7%). Del13q was the most frequent copy number variation, and we could define a 2.4 Mb minimally affected region encompassing RB1, SUCLA2 and CLLS2 loci. The largest genomic subgroup consisted of patients with mutations in genes involved with chromatin organization and splicing control (40.7%) and the personalized system showed better concordance and accuracy than the other prognostic systems. Comprehensive genomic characterization reveals the striking genetic complexity of MF and, when combined with clinical data, led, in our cohort, to better prognostication performance."	"[The phenotypes and genotypes in 314 patients with isolated methylmalonic acidemia]. Objectives: To summarize the clinical and genetic characteristics of the patients with isolated methylmalonic acidemia and investigate the strategies for the diagnosis, treatment and prevention. Methods: Three hundred and fourteen patients (180 males, 134 females) with isolated methylmalonic acidemia were ascertained from 26 provinces or cities across the mainland of China during January 1998 to March 2020. Genetic analysis was performed by Sanger sequencing, gene panel sequencing, whole exome sequencing, multiplex ligation-dependent probe amplification or quantitative PCR. According to the age of onset, the patients were divided to early-onset group (≤12 months of age) and the late-onset group (&gt;12 months of age). They were treated by cobalamin, L-carnitine and (or) special diet and symptomatic treatment. Statistical analysis was done using Chi-square test. Results: Fifty-eight of 314 (18.5%) patients were detected by Newborn screening using liquid chromatography tandem mass spectrometry. Five cases (1.6%) had a postmortem diagnosis. Two hundred and fifty-one patients (79.9%) were clinically diagnosed with an age of onset ranged from 3 hours after birth to 18 years. One hundred and fifty-nine patients (71.0%) belonged to early-onset groups, 65 patients (29.0%) belonged to the late-onset group. The most common symptoms were metabolic crises, psychomotor retardation, epilepsy, anemia and multiple organ damage. Metabolic acidosis and anemia were more common in early-onset patients than that in late-onset patients (20.8%(33/159) vs. 9.2% (6/65), 34.6% (55/159) vs. 16.9% (11/165), χ(2)=4.261, 6.930, P=0.039, 0.008). Genetic tests were performed for 236 patients (75.2%), 96.2%(227/236) had molecular confirmation. One hundred and twenty-seven variants were identified in seven genes (MMUT, MMAA, MMAB, MMADHC, SUCLG1, SUCLA2, and MCEE), of which 49 were novel. The mut type, caused by the deficiency of methylmalonyl-CoA mutase, was the most common (n=211, 93%) cause of this condition. c.729_730insTT, c.1106G&gt;A and c.914T&gt;C were the three most frequent mutations in MMUT gene. The frequency of c.914T&gt;C in early-onset patients was significantly higher than that in late-onset patients (8.3% (18/216) vs. 1.6% (1/64), χ(2)=3.859, P=0.037). Metabolic crisis was more frequent in mut type than the other types (72.6% (114/157) vs. 3/13, χ(2)=13.729, P=0.001),developmental delay and hypotonia were less frequent in mut type (38.2% (60/157) vs. 9/13, 25.5% (40/157) vs. 8/13, χ(2)=4.789, 7.705, P=0.030, 0.006). Of the 58 patients identified by newborn screening, 44 patients (75.9%) who were treated from asymptomatic phase developed normally whereas 14 patients (24.1%) who received treatment after developing symptoms exhibited varying degrees of psychomotor retardation. Conclusions: The characteristics of phenotypes and genotypes among Chinese patients with isolated methylmalonic acidemia were analyzed. Expanded the mutation spectrum of the associated genes. Because of the complex clinical manifestations and severe early onset of isolated methylmalonic acidemia, Newborn screening is crucial for early diagnosis and improvement of prognosis. MMUT gene is recommended for carrier screening as an effort to move the test earlier as a part of the primary prevention of birth defects. 目的: 总结单纯型甲基丙二酸血症的临床表型及分子遗传学特点,探讨诊断、治疗及预防对策。 方法: 回顾性收集我国26个省市1998年1月至2020年3月确诊的单纯型甲基丙二酸血症患儿314例(男180例、女134例),采用Sanger测序、靶向捕获二代测序或者全外显子测序分析、多重连接依赖探针扩增技术、定量PCR等技术进行基因诊断。根据发病年龄,分为早发型(发病年龄≤12月龄)和晚发型(发病年龄&gt;12月龄)。根据个体情况,给予钴胺素、左卡尼汀、特殊饮食及对症治疗。采用χ(2)检验进行组间比较。 结果: 314例单纯型甲基丙二酸血症患儿中58例(18.5%)通过液相串联质谱法新生儿筛查发现,5例(1.6%)为尸检确诊,251例(79.9%)患儿为发病后临床诊断。发病年龄为3小时龄~18岁,其中早发型159例(71.0%),晚发型65例(29.0%)。较常见的临床表现是代谢危象、智力运动落后、癫痫、贫血和多脏器损伤。早发型较晚发型患儿代谢性酸中毒及贫血常见[20.8%(33/159)比9.2%(6/65),34.6%(55/159)比16.9%(11/65),χ(2)=4.261、6.930,P=0.039、0.008]。236例(75.2%)接受了基因分析,227例(96.2%)获得了基因诊断,在7个基因(MMUT、MMAA、MMAB、MMADHC、SUCLG1、SUCLA2、MCEE)上共发现127个变异,其中49个为新变异。MMUT变异导致的甲基丙二酰辅酶A变位酶缺乏(mut型)211例(93.0%),常见的MMUT变异是c.729_730insTT、c.1106G&gt;A、c.914T&gt;C。c.914T&gt;C在早发型中发生的频率较晚发型高[8.3%(18/216)比1.6%(1/64),χ(2)=3.859,P=0.037]。mut型较其他类型患儿代谢危象常见[72.6%(114/157)比3/13,χ(2)=13.729,P=0.001]。发育落后、肌张力低下在mut型患儿中比其他类型患儿少见[38.2%(60/157)比9/13、25.5%(40/157)比8/13,χ(2)=4.789、7.705,P=0.030、0.006]。58例新生儿筛查发现的患儿中44例(75.9%)从无症状时开始治疗,发育正常;14例(24.1%)临床发病后才开始接受治疗,遗留有不同程度的智力、运动发育落后。 结论: 分析了我国单纯型甲基丙二酸血症患儿的临床表型与基因型特点及相关性,扩展了基因变异谱。鉴于单纯型甲基丙二酸血症有临床表现复杂及早发严重的倾向,新生儿筛查对于早期诊断、改善预后至关重要。建议将致病基因MMUT列入我国育龄夫妇孕前携带者筛查目录中,关口前移至出生缺陷一级预防。."	"Lower oxygen consumption and Complex I activity in mitochondria isolated from skeletal muscle of fetal sheep with intrauterine growth restriction. Fetal sheep with placental insufficiency-induced intrauterine growth restriction (IUGR) have lower hindlimb oxygen consumption rates (OCRs), indicating depressed mitochondrial oxidative phosphorylation capacity in their skeletal muscle. We hypothesized that OCRs are lower in skeletal muscle mitochondria from IUGR fetuses, due to reduced electron transport chain (ETC) activity and lower abundances of tricarboxylic acid (TCA) cycle enzymes. IUGR sheep fetuses (n = 12) were created with mid-gestation maternal hyperthermia and compared with control fetuses (n = 12). At 132 ± 1 days of gestation, biceps femoris muscles were collected, and the mitochondria were isolated. Mitochondria from IUGR muscle have 47% lower State 3 (Complex I-dependent) OCRs than controls, whereas State 4 (proton leak) OCRs were not different between groups. Furthermore, Complex I, but not Complex II or IV, enzymatic activity was lower in IUGR fetuses compared with controls. Proteomic analysis (n = 6/group) identified 160 differentially expressed proteins between groups, with 107 upregulated and 53 downregulated mitochondria proteins in IUGR fetuses compared with controls. Although no differences were identified in ETC subunit protein abundances, abundances of key TCA cycle enzymes [isocitrate dehydrogenase (NAD<sup>+</sup>) 3 noncatalytic subunit β (IDH3B), succinate-CoA ligase ADP-forming subunit-β (SUCLA2), and oxoglutarate dehydrogenase (OGDH)] were lower in IUGR mitochondria. IUGR mitochondria had a greater abundance of a hypoxia-inducible protein, NADH dehydrogenase 1α subcomplex 4-like 2, which is known to incorporate into Complex I and lower Complex I-mediated NADH oxidation. Our findings show that mitochondria from IUGR skeletal muscle adapt to hypoxemia and hypoglycemia by lowering Complex I activity and TCA cycle enzyme concentrations, which together, act to lower OCR and NADH production/oxidation in IUGR skeletal muscle."	"Identification of lipid raft glycoproteins obtained from boar spermatozoa. The surface of the spermatozoa is coated with glycoproteins the redistribution of which during in vitro capacitation plays a key role in the subsequent fertilization process. Lipid rafts are membrane microdomains involved in signal transduction through receptors and include or recruit specific types of proteins and glycoproteins. Few studies have focused on identifying glycoproteins resident in the lipid rafts of spermatozoa. Proteins associated with lipid rafts modify their localization during capacitation. The objective of the study was to identify the glycoproteins associated with lipid rafts of capacitated boar spermatozoa through a lectin-binding assay coupled to mass spectrometry approach. From the proteomic profiles generated by the raft proteins extractions, we observed that after capacitation the intensity of some bands increased while that of others decreased. To determine whether the proteins obtained from lipid rafts are glycosylated, lectin blot assays were performed. Protein bands with a good resolution and showing significant glycosylation modifications after capacitation were analyzed by mass spectrometry. The bands of interest had an apparent molecular weight of 64, 45, 36, 34, 24, 18 and 15 kDa. We sequenced the 7 bands and 20 known or potential glycoproteins were identified. According to us, for ten of them this is the first time that their association with sperm lipid rafts is described (ADAM5, SPMI, SPACA1, Seminal plasma protein pB1, PSP-I, MFGE8, tACE, PGK2, SUCLA2, MDH1). Moreover, LYDP4, SPAM-1, HSP60, ZPBP1, AK1 were previously reported in lipid rafts of mouse and human spermatozoa but not in boar spermatozoa. We also found and confirmed the presence of ACR, ACRBP, AWN, AQN3 and PRDX5 in lipid rafts of boar spermatozoa. This paper provides an overview of the glycosylation pattern in lipid rafts of boar spermatozoa before and after capacitation. Further glycomic analysis is needed to determine the type and the variation of glycan chains of the lipid rafts glycoproteins on the surface of spermatozoa during capacitation and acrosome reaction."	"Childhood acute lymphoblastic leukemia mercaptopurine intolerance is associated with NUDT15 variants. Mercaptopurine-induced neutropenia can interrupt chemotherapy and expose patients to infection during childhood acute lymphoblastic leukemia (ALL) treatment. Previously, six candidate gene variants associated with mercaptopurine intolerance were reported. Herein, we investigated the association between the mean tolerable dose of mercaptopurine and these genetic variants in Taiwanese patients. In total, 294 children with ALL were treated at the National Taiwan University Hospital from April 1997 to December 2017. Germline variants were analyzed for NUDT15, SUCLA2, TPMT, ITPA, PACSIN2, and MRP4. Mean daily tolerable doses of mercaptopurine in the continuation phase of treatment were correlated with these genetic variants. Mercaptopurine intolerance was significantly associated with polymorphisms in NUDT15 (P value &lt; 0.0001). Patients with SUCLA2 variants received lower mercaptopurine doses (P value = 0.0119). The mean mercaptopurine doses did not differ among patients with TPMT, ITPA, MRP4, and PACSIN2 polymorphisms (P value = 0.9461, 0.5818, and 0.7951, respectively). After multivariable linear regression analysis, only NUDT15 variants retained their clinically significant correlation with mercaptopurine intolerance (P value &lt; 0.0001). In this cohort, the major genetic determinant of mercaptopurine intolerance was NUDT15 in Taiwanese patients. NUDT15 causes mercaptopurine intolerance in children with ALL.The NUDT15 variant is a stronger predictor of mercaptopurine intolerance than TPMT in a Taiwanese cohort. This finding is similar with studies performed on Asian populations rather than Caucasians.Pre-emptive genotyping of the patients' NUDT15 before administering mercaptopurine may be more helpful than genotyping TPMT in Asians."	"Qishen granules exerts cardioprotective effects on rats with heart failure via regulating fatty acid and glucose metabolism. Qishen granules (QSG) has been applied to treat heart failure (HF) for decades. Our previous transcriptomics study has suggested that Qishen granules (QSG) could regulate the pathways of cardiac energy metabolism in HF, but the specific regulatory mechanism has not yet been clarified. This study was to investigate the potential mechanism of QSG in regulating myocardial fatty acid (FA) and glucose metabolism in a rat model of HF. The model of HF was induced by left anterior descending coronary artery ligation. Cardiac structure and function were assessed by cine magnetic resonance imaging (MRI) and echocardiography. Level of glucose metabolism was non-invasively evaluated by <sup>18</sup>F-fluorodeoxyglucose positron emission tomography/computed tomography (PET/CT). Blood lipid levels were determined by enzymatic analysis. The mitochondrial ultrastructure was observed with a transmission electron microscope. The critical proteins related to FA metabolism, glucose metabolism and mitochondrial function were measured by western blotting. The ANOVA followed by a Fisher's LSD test was used for within-group comparisons. QSG ameliorated cardiac functions and attenuated myocardial remodeling in HF model. The levels of serum TC, TG and LDL-C were significantly reduced by QSG. The proteins mediating FA uptake, transportation into mitochondria and β-oxidation (FAT/CD36, CPT1A, ACADL, ACADM, ACAA2 and SCP2) as well as the upstreaming transcriptional regulators of FA metabolism (PPARα, RXRα, RXRβ and RXRγ) were up-regulated by QSG. As to glucose metabolism, QSG inhibited glycolytic activity by decreasing LDHA, while stimulated glucose oxidation by decreasing PDK4. Furthermore, QSG could facilitate tricarboxylic acid cycle, promote the transportation of ATP from mitochondria to cytoplasm and restore the mitochondrial function by increasing SUCLA2, CKMT2 and PGC-1α and decreasing UCP2 simultaneously. QSG improved myocardial energy metabolism through increasing FA metabolism,inhibiting uncoupling of glycolysis from glucose oxidation."	"Genetic architecture related to contour feathers density in an F2 resource population via a genome-wide association study. The density of contour feathers is an important trait as it is closely related to heat dissipation in birds. Thus, identification of the major genes that control this trait will be useful to improve heat tolerance in chicken. So far, no GWAS study for the density of contour feathers in birds has been previously published; therefore, this study was aimed to identify genomic regions controlling the density of contour feathers. A total of 1252 hens were genotyped, using the 600 K Affymetrix Axiom Chicken Genotyping Array. The association analyses were performed using the GenABEL package in the R program. In brief, 146 significant SNP markers were mainly located on chromosome 1 and were identified to associate with the density of contour feathers in the current GWAS analysis. Moreover, we identified several within/nearby candidate genes (SUCLA2, DNAJC15, DHRS12, MLNR, and RB1) that are either directly or indirectly involved in the genetic control of the density of contour feathers in chicken. This study laid the foundation for studying the mechanism that underlies the density of chicken feathers. Furthermore, it is feasible to shear the back feathers of live chickens and measure the density of the feathers to improve heat tolerance in breeding practice."	"A study on a cohort of 301 Chinese patients with isolated methylmalonic acidemia. Methylmalonic acidemia (MMA) is the most common organic acidemia in China. This study aimed to characterise the genotypic and phenotypic variabilities, and the molecular epidemiology of Chinese patients with isolated MMA. Patients (n = 301) with isolated MMA were diagnosed by clinical examination, biochemical assays, and genetic analysis. Fifty-eight patients (19.3%) were detected by newborn screening and 243 patients (80.7%) were clinically diagnosed after onset. Clinical onset ranged from the age of 3 days to 23 years (mean age = 1.01 ± 0.15 years). Among 234 MMA patients whose detailed clinical data were available, 170 (72.6%) had early onset disease (before the age of 1 year), and 64 (27.4%) had late-onset disease. The 234 MMA patients manifested with neuropsychiatric impairment (65.4%), haematological abnormality (31.6%), renal damage (8.5%), and metabolic crises (67.1%). Haematological abnormality was significantly more common in early-onset patients than that in late-onset patients. The incidence of metabolic crises was significantly high (P &lt; 0.001) in patients with mut type than those with other types of isolated MMA. Variations (n = 122) were identified in MMUT, MMAA, MMAB, MMADHC, SUCLG1, and SUCLA2, of which 45 were novel. c.729_730insTT was the most frequent MMUT mutation, with a significantly higher frequency in our patients than that in 151 reported European patients. The frequency of c.914T&gt;C in MMUT in our cohort was also higher than that in 151 European patients. MMUT mutations c.729_730insTT and c.914T&gt;C are specific for the Chinese population. Our study expanded the spectrum of phenotypes and genotypes in isolated MMA."	"An integrated metabolomic and gene expression analysis identifies heat and calcium metabolic networks underlying postharvest sweet cherry fruit senescence. Ηeat and calcium treatments reprogram sweet cherry fruit metabolism during postharvest senescence as evidenced by changes in respiration, amino acid metabolism, sugars, and secondary metabolites shift. Heat and calcium treatments are used to improve postharvest fruit longevity; however, the exact mechanism remains poorly understood. To characterize the impact of these treatments on sweet cherries metabolism, 'Lapins' fruits were treated with heat or CaCl2 solutions and their combination and subsequently were exposed at room temperature, for up to 4 days, defined as senescence period. Single and combined heat and calcium treatments partially delayed fruit senescence, as evidenced by changes in fruit colour darkening, skin penetration force, and respiration activity. Calcium content was noticeably increased by heat in Ca-treated fruit. Several primary metabolites, including amino acids, organic acids, and alcohols, were decreased in response to both treatments, while many soluble sugars and secondary metabolites were increased within 1 day post-treatment. Changes of several metabolites in heat-treated fruits, especially esculetin, peonidin 3-O-glucoside and peonidin 3-O-galactoside, ribose, pyroglutamate, and isorhamnetin-3-O-rutinoside, were detected. The metabolome of fruit exposed to calcium also displayed substantial modulations, particularly in the levels of galactose, glycerate, aspartate, tryptophan, phospharate rutin, and peonidin 3-O-glucoside. The expression of several genes involved in TCA cycle (MDH1, IDH1, OGDH, SUCLA2, and SDH1-1), pectin degradation (ADPG1) as well as secondary (SK1, 4CL1, HCT, and BAN), amino acids (ALDH18A1, ALDH4A1, GS, GAD, GOT2, OPLAH, HSDH, and SDS), and sugar (PDHA1 and DLAT) metabolism were affected by both treatments. Pathway-specific analysis further revealed the regulation of fruit metabolic programming by heat and calcium. This work provides a comprehensive understanding of metabolic regulation in response to heat and calcium during fruit senescence."	"Proteome of cat semen obtained after urethral catheterization. The binding of seminal plasma (SP) proteins by spermatozoa plays an important role in the regulation of sperm epididymal maturation, motility gaining in female reproductive tracts and sperm-egg interaction. The aim of the study was to analyze the SP and sperm extracts proteome of cat (Felis catus) semen. The seminal plasma and spermatozoa were obtained by urethra catheterization from 10 male cats. Proteins were extracted using RIPA buffer and separated by electrophoresis (SDS-PAGE). The gels were analyzed using MultiAnalyst software. The proteins were subsequently analyzed using NanoUPLC-Q-TOF/MS. UniProt database-supported identification resulted in 106 proteins identified in the cat SP and 98 proteins in the extracts of spermatozoa. Based on a gene ontology analysis, dominant molecular functions of feline SP proteins were binding, catalytic, and antioxidant activity (56%, 33%, and 11% of cases, respectively). The molecular functions of sperm extracts proteins were mainly involved in catalytic activity (41%) and binding (23%). The proteins present in both, the SP and spermatozoa's extracts, were: serum albumin (ALB), semenogelin 2 (SEMG 2), clusterin (CLU), lactoferrin (LTF), prostatic acid phosphatase (ACPP), prolactin inducible protein (PIP), negative elongation factor E (NELF-E) and ectonucleotide pyrophosphatase (ENPP3). Protein-protein interactions analysis showed significant connection for 12 proteins in the cat semen. The seminal plasma proteins which, with high probability score, participate in important metabolic pathways are: glutathione peroxidases (GPx5 and 6), prostatic acid phosphatase (ACPP), β-hexosaminidase (HEXB), polymeric immunoglobulin receptor (pIgR) and serpin family F member 1 (SERPINF1). For sperm protein extracts it were: pyruvate dehydrogenase (PDHB), succinate-CoA-ligase (SUCLA2), malate dehydrogenase (MDH2), ATP synthase F1 subunit alpha (ATP5F1A) and tubulin beta (TUBB)."	"[Phenotype and genotype of twelve Chinese children with mitochondrial DNA depletion syndromes]. Objective: To explore the phenotype and genotype of mitochondrial DNA depletion syndromes (MDS) in Chinese children. Methods: The clinical and genetic data of 12 MDS patients (8 were boys and 4 were girls) diagnosed in the Department of Neurology in Beijing Children's Hospital, Capital Medical University from October 2010 to April 2018 were retrospectively collected and analyzed. Results: The developmental milestones were normal or mildly retardated before disease onset. The age of onset ranged from 0 to 2.9-year-old. Most cases developed postnatal or after infection. The most common initial symptoms were feeding difficulty, seizure, muscle weakness, psychomotor regression and hepatic dysfunction. At the last evaluation, all the patients had developmental retardation, failure to thrive, muscle weakness, and dysphagia. Other clinical features were weight loss (9 cases), hearing impairment (7 cases), ptosis (6 cases), seizure (5 cases), dyspnea (4 cases), visual impairment (1 case), hirsutism (1 case), lactic acidosis (7 cases), elevated hepatic enzymes (4 cases) and creatine kinase (2 cases), elevated protein in cerebrospinal fluid (3 cases), abnormalities on screening for inborn error of metabolism (10 cases) and brain magnetic resonance imaging (MRI) (10 cases), abnormal electromyogram (including neurogenic or myogenic injury) (5 cases). Five patients died of infection or multiple organ failure. A total of 18 novel mutations presented below were detected in these patients. Among the 6 cases of encephalomyopathy, there were 3 with SUCLG1 mutation (c. 916G&gt;T, c. 619T&gt;C, c. 980dupT were novel), 2 with SUCLA2 mutation (c. 851G&gt;A, c.971G&gt;A were novel), and one with RRM2B mutation (c.456-2A&gt;G, c.212T&gt;C were novel). All the cases of hepatic encephalopathy all had POLG mutations (c. 3151G&gt;A, c. 2294C&gt;T, c. 2858G&gt;C, c. 680G&gt;A and c. 150_158delGCAGCAGCA were novel). Two cases of infantile-onset spinocerebellar ataxia had TWNK mutations (c. 1163C&gt;T, c. 1319T&gt;C, c. 1388G&gt;A and c. 257_258delAG were novel). One case of myopathy had TK2 mutations (c.557C&gt;G and c.341A&gt;T were novel). Conclusions: The clinical and genetic features of MDS were heterogeneous. Eighteen novel mutations in six MDS related genes were reported, which expanded the genetic spectrum of MDS in Chinese children. 目的: 分析线粒体DNA耗竭综合征(MDS)患儿的临床表型及基因型特点。 方法: 回顾性总结分析2010年10月至2018年4月首都医科大学附属北京儿童医院神经内科确诊的12例MDS患儿(男8例,女4例)的临床表现及基因检查结果。 结果: 12例MDS患儿起病前发育正常或落后,起病年龄为0~2.9岁,多为生后发病或感染后起病,首发症状为喂养困难、抽搐、肌无力、发育倒退或肝功能损害,所有患儿均出现发育迟缓、喂养困难、肌无力、吞咽困难,部分患儿逐渐出现消瘦(9例)、听力损害(7例)、眼睑下垂(6例)、抽搐(5例)、呼吸困难(4例)、视力损害(1例)、多毛(1例)、血乳酸升高(7例)、肝酶升高(4例)、心肌酶升高(2例)、脑脊液蛋白升高(3例)、血尿代谢筛查异常(10例)、头颅磁共振成像异常(10例)、肌电图示神经源性或肌源性损害(5例)。至2018年4月末次随访5例患儿因感染、全身器官功能衰竭死亡。脑肌病型6例,SUCLG1基因变异3例(其中c.916G&gt;T,c.619T&gt;C和c.980dupT为新变异);SUCLA2基因变异2例(其中c.851G&gt;A,c.971G&gt;A为新变异);RRM2B基因变异1例(其中c.456-2A&gt;G,c.212T&gt;C为新变异)。肝性脑病型3例均为POLG基因变异(其中c.3151G&gt;A,c.2294C&gt;T,c.2858G&gt;C,c.680G&gt;A,c.150_158delGCAGCAGCA为新变异),婴儿起病的脊髓小脑共济失调型2例,均为TWNK基因变异(其中c.1163C&gt;T,c.1319T&gt;C,c.257_258delAG,c.1388G&gt;A为新变异),肌病型1例为TK2基因变异(其中c.557C&gt;G,c.341A&gt;T为新变异)。 结论: 儿童MDS临床表型及基因变异谱异质性强,本组共发现MDS 6种致病基因的18个新变异,丰富了中国儿童MDS的临床表型及基因型。."	"Mutated SUCLG1 causes mislocalization of SUCLG2 protein, morphological alterations of mitochondria and an early-onset severe neurometabolic disorder. Succinate-CoA ligase (SUCL) is a heterodimer consisting of an alpha subunit encoded by SUCLG1, and a beta subunit encoded by either SUCLA2 or SUCLG2 catalyzing an ATP- or GTP-forming reaction, respectively, in the mitochondrial matrix. The deficiency of this enzyme represents an encephalomyopathic form of mtDNA depletion syndromes. We describe the fatal clinical course of a female patient with a pathogenic mutation in SUCLG1 (c.626C &gt; A, p.Ala209Glu) heterozygous at the genomic DNA level, but homozygous at the transcriptional level. The patient exhibited early-onset neurometabolic abnormality culminating in severe brain atrophy and dystonia leading to death by the age of 3.5 years. Urine and plasma metabolite profiling was consistent with SUCL deficiency which was confirmed by enzyme analysis and lack of mitochondrial substrate-level phosphorylation (mSLP) in skin fibroblasts. Oxygen consumption- but not extracellular acidification rates were altered only when using glutamine as a substrate, and this was associated with mild mtDNA depletion and no changes in ETC activities. Immunoblot analysis revealed no detectable levels of SUCLG1, while SUCLA2 and SUCLG2 protein expressions were largely reduced. Confocal imaging of triple immunocytochemistry of skin fibroblasts showed that SUCLG2 co-localized only partially with the mitochondrial network which otherwise exhibited an increase in fragmentation compared to control cells. Our results outline the catastrophic consequences of the mutated SUCLG1 leading to strongly reduced SUCL activity, mSLP impairment, mislocalization of SUCLG2, morphological alterations in mitochondria and clinically to a severe neurometabolic disease, but in the absence of changes in mtDNA levels or respiratory complex activities."	"Genome-wide significant regions in 43 Utah high-risk families implicate multiple genes involved in risk for completed suicide. Suicide is the 10th leading cause of death in the United States. Although environment has undeniable impact, evidence suggests that genetic factors play a significant role in completed suicide. We linked a resource of ~ 4500 DNA samples from completed suicides obtained from the Utah Medical Examiner to genealogical records and medical records data available on over eight million individuals. This linking has resulted in the identification of high-risk extended families (7-9 generations) with significant familial risk of completed suicide. Familial aggregation across distant relatives minimizes effects of shared environment, provides more genetically homogeneous risk groups, and magnifies genetic risks through familial repetition. We analyzed Illumina PsychArray genotypes from suicide cases in 43 high-risk families, identifying 30 distinct shared genomic segments with genome-wide evidence (p = 2.02E-07-1.30E-18) of segregation with completed suicide. The 207 genes implicated by the shared regions provide a focused set of genes for further study; 18 have been previously associated with suicide risk. Although PsychArray variants do not represent exhaustive variation within the 207 genes, we investigated these for specific segregation within the high-risk families, and for association of variants with predicted functional impact in ~ 1300 additional Utah suicides unrelated to the discovery families. None of the limited PsychArray variants explained the high-risk family segregation; sequencing of these regions will be needed to discover segregating risk variants, which may be rarer or regulatory. However, additional association tests yielded four significant PsychArray variants (SP110, rs181058279; AGBL2, rs76215382; SUCLA2, rs121908538; APH1B, rs745918508), raising the likelihood that these genes confer risk of completed suicide."	"Stroke-like episodes in coenzyme-Q deficiency may respond to NO-precursors and non-mitochondrion-toxic antiepileptic drugs. NA"	"Improving the diagnosis of cobalamin and related defects by genomic analysis, plus functional and structural assessment of novel variants. Cellular cobalamin defects are a locus and allelic heterogeneous disorder. The gold standard for coming to genetic diagnoses of cobalamin defects has for some time been gene-by-gene Sanger sequencing of individual DNA fragments. Enzymatic and cellular methods are employed before such sequencing to help in the selection of the gene defects to be sought, but this is time-consuming and laborious. Furthermore some cases remain undiagnosed because no biochemical methods have been available to test for cobalamin absorption and transport defects. This paper reports the use of massive parallel sequencing of DNA (exome analysis) for the accurate and rapid genetic diagnosis of cobalamin-related defects in a cohort of affected patients. The method was first validated in an initial cohort with different cobalamin defects. Mendelian segregation, the frequency of mutations, and the comprehensive structural and functional analysis of gene variants, identified disease-causing mutations in 12 genes involved in the absorption and synthesis of active cofactors of vitamin B12 (22 cases), and in the non-cobalamin metabolism-related genes ACSF3 (in four biochemically misdiagnosed patients) and SUCLA2 (in one patient with an unusual presentation). We have identified thirteen new variants all classified as pathogenic according to the ACGM recommendation but four were classified as variant likely pathogenic in MUT and SUCLA2. Functional and structural analysis provided evidences to classify them as pathogenic variants. The present findings suggest that the technology used is sufficiently sensitive and specific, and the results it provides sufficiently reproducible, to recommend its use as a second-tier test after the biochemical detection of cobalamin disorder markers in the first days of life. However, for accurate diagnoses to be made, biochemical and functional tests that allow comprehensive clinical phenotyping are also needed."	"[Heterogeneous phenotypes, genotypes, treatment and prevention of 1 003 patients with methylmalonic acidemia in the mainland of China]. Objective: To analyz the current situation of the diagnosis, treatment and prevention of methylmalonic acidemia, the phenotypes, biochemical features and genotypes of the patients in the mainland of China, were investigated. Methods: Tottally 1 003 patients of methylmalonic acidemia from 26 provinces and municipalities of the mainland of China were enrolled. The clinical data, biochemical features and gene mutations were studied. Blood aminoacids and acylcarnitines, urine organic acids, and plasma total homocysteine were determined for the biochemical diagnosis. Gene analyses were performed for the genetic study of 661 patients. The patients were treated with individual intervention and long-term follow up. Prenatal diagnoses were carried out for 165 fetuses of the families. Results: Among 1 003 patients (580 boys and 423 girls), 296 cases (29.5%) had isolated methylmalonic acidemia; 707 cases (70.5%) had combined homocysteinemia; 59 patients (5.9%) were detected by newborn screening; 944 patients (94.1%) had the onset at the ages from several minutes after birth to 25 years and diagnosed at 3 days to 25 years of age. The main clinical presentations were psychomotor retardation and metabolic crisis. Multi-organ damage, including hematological abnormalities, pulmonary hypertension, kidney damage, were found. MMACHC, MUT, MMAA, MMAB, HCFC1, SUCLG1, SUCLA2 mutations were found in 631 patients (96.6%) out of 661 patients who accepted gene analysis. MMACHC mutations were detected in 460 patients (94.7%) out of 486 cases of methylmalonic acidemia combined with homocysteinemia. MUT mutations were found in 158 (90.3%) out of 169 cases of isolated methylmalonic acidemia. The development of 59 patients detected by newborn screening were normal; 918 cases (97.2%) were diagnosed after onset accepted the treatment. Forty-five of them completely recovered with normal development. Twenty-six patients (2.7%) died; 873 (92.5%) patients had mild to severe psychomotor retardation. Methylmalonic acidemia were found in 35 out of 165 fetuses by metabolites assay of amniotic fluid and amniocytes gene analysis. Conclusion: Combined methylmalonic acidemia and homocysteinemia is the common type of methylmalonic acidemia in the mainland of China. CblC defect due to MMACHC mutations is the most common type of methylmalonic acidemia combined with homocysteinemia. MUT gene mutations are frequent in the patients with isolated methylmalonic acidemia. Newborn screening is key for the early diagnosis and the better outcome. Combined diagnosis of biochemical assays and gene analysis are reliable for the prenatal diagnosis of methylmalonic acidemia. 目的: 分析中国甲基丙二酸血症患者的临床表型、生化表型、基因型以及防治情况。 方法: 多中心回顾性研究1998年1月—2017年12月来自我国26个省、市、自治区的1 003例甲基丙二酸血症患者的诊疗经过、生化及基因变异,生化诊断采用血氨基酸及酯酰肉碱谱、尿有机酸及血浆总同型半胱氨酸测定,661例患者接受了基因分析。确诊后进行个体化干预治疗,长期随访,对部分家系进行下一胎产前诊断。 结果: 1 003例甲基丙二酸血症患者中男580例,女423例,其中单纯型296例(29.5%),707例(70.5%)合并同型半胱氨酸血症。仅59例经新生儿筛查发现(5.9%),944例(94.1%)为临床诊断,于生后数分钟~25岁发病,首发的临床表现为神经精神损害:智力运动发育落后(725例,74.3%),286例(29.3%)合并癫痫,76例(7.8%)合并脑积水,部分患者合并血液、心血管、肾脏等多脏器损害。661例患者接受了基因分析,其中631例(96.6%)获得了基因诊断,发现了MUT、MMACHC、MMAA、MMAB、HCFC1、SUCLG1、SUCLA2共7种基因缺陷,获得基因诊断的169例单纯型甲基丙二酸血症患者中158例(90.3%)为MUT基因变异,获基因诊断的462例合并型甲基丙二酸血症患者中460例(94.7%)为MMACHC基因变异。新生儿筛查发现的59例患儿发育较好。经临床诊断的944患者中918例(97.2%)接受了治疗,45例(4.7%)获得康复,智力、运动发育正常,26例(2.7%)死亡,873例(92.5%)患儿遗留轻~极重度智力运动障碍。165例家系接受了下一胎产前诊断,经羊水代谢物及基因联合分析证实35例胎儿患病。 结论: 甲基丙二酸血症合并同型半胱氨酸血症是我国大陆甲基丙二酸血症的主要类型,MMACHC基因变异最常见。MUT基因变异是单纯型甲基丙二酸血症的主要病因。经新生儿筛查及早期治疗的患者生存质量显著改善。再生育指导、产前诊断是减少甲基丙二酸血症患者出生的关键措施。."	"Clinical, Molecular, and Computational Analysis in two cases with mitochondrial encephalomyopathy associated with SUCLG1 mutation in a consanguineous family. Deficiency of the mitochondrial enzyme succinyl COA ligase (SUCL) is associated with encephalomyopathic mtDNA depletion syndrome and methylmalonic aciduria. This disorder is caused by mutations in both SUCL subunits genes: SUCLG1 (α subnit) and SUCLA2 (β subnit). We report here, two Tunisian patients belonging to a consanguineous family with mitochondrial encephalomyopathy, hearing loss, lactic acidosis, hypotonia, psychomotor retardation and methylmalonic aciduria. Mutational analysis of SUCLG1 gene showed, for the first time, the presence of c.41T &gt; C in the exon 1 at homozygous state. In-silico analysis revealed that this mutation substitutes a conserved methionine residue to a threonine at position 14 (p.M14T) located at the SUCLG1 protein mitochondrial targeting sequence. Moreover, these analysis predicted that this mutation alter stability structure and mitochondrial translocation of the protein. In Addition, a decrease in mtDNA copy number was revealed by real time PCR in the peripheral blood leukocytes in the two patients compared with controls."	"Reference Intervals of Mitochondrial DNA Copy Number in Peripheral Blood for Chinese Minors and Adults. Mitochondrial DNA (mtDNA) content measured by different techniques cannot be compared between studies, and age- and tissue-related control values are hardly available. In the present study, we aimed to establish the normal reference range of mtDNA copy number in the Chinese population. Two healthy cohorts of 200 Chinese minors (0.1-18.0 years) and 200 adults (18.0-88.0 years) were recruited. Then, they were further categorized into eight age groups. The absolute mtDNA copy number per cell was measured by a quantitative real-time polymerase chain reaction. We subsequently used this range to evaluate mtDNA content in four patients (0.5-4.0 years) with molecularly proven mitochondrial depletion syndromes (MDSs) and 83 cases of mitochondrial disease patients harboring the m.3243A&gt;G mutation. The reference range of mtDNA copy number in peripheral blood was 175-602 copies/cell (mean: 325 copies/cell) in minors and 164-500 copies/cell (mean: 287 copies/cell) in adults. There was a decreasing trend in mtDNA copy number in blood with increasing age, especially in 0-2-year-old and &gt;50-year-old donors. The mean mtDNA copy number level among the mitochondrial disease patients with m.3243A&gt;G mutation was significantly higher than that of healthy controls. The mtDNA content of POLG, DGUOK, TK2, and SUCLA2 genes in blood samples from MDS patients was reduced to 25%, 38%, 32%, and 24%, respectively. We primarily establish the reference intervals of mtDNA copy number, which might contribute to the clinical diagnosis and monitoring of mitochondrial disease."	"Co-occurring Down syndrome and SUCLA2-related mitochondrial depletion syndrome. Mitochondrial DNA depletion syndrome 5 (MIM 612073) is a rare autosomal recessive disorder caused by homozygous or compound heterozygous pathogenic variants in the beta subunit of the succinate-CoA ligase gene located within the 13q14 band. We describe two siblings of Hispanic descent with SUCLA2-related mitochondrial depletion syndrome (encephalomyopathic form with methylmalonic aciduria); the older sibling is additionally affected with trisomy 21. SUCLA2 sequencing identified homozygous p.Arg284Cys pathogenic variants in both patients. This mutation has previously been identified in four individuals of Italian and Caucasian descent. The older sibling with concomitant disease has a more severe phenotype than what is typically described in patients with either SUCLA2-related mitochondrial depletion syndrome or Down syndrome alone. The younger sibling, who has a normal female chromosome complement, is significantly less affected compared to her brother. While the clinical and molecular findings have been reported in about 50 patients affected with a deficiency of succinate-CoA ligase caused by pathogenic variants in SUCLA2, this report describes the first known individual affected with both a mitochondrial depletion syndrome and trisomy 21."	"The clinical and genetic characteristics in children with mitochondrial disease in China. Mitochondrial disease was a clinically and genetically heterogeneous group of diseases, thus the diagnosis was very difficult to clinicians. Our objective was to analyze clinical and genetic characteristics of children with mitochondrial disease in China. We tested 141 candidate patients who have been suspected of mitochondrial disorders by using targeted next-generation sequencing (NGS), and summarized the clinical and genetic data of gene confirmed cases from Neurology Department, Beijing Children's Hospital, Capital Medical University from October 2012 to January 2015. In our study, 40 cases of gene confirmed mitochondrial disease including eight kinds of mitochondrial disease, among which Leigh syndrome was identified to be the most common type, followed by mitochondrial encephalomyopathy, lactic acidosis, and stroke-like episodes (MELAS). The age-of-onset varies among mitochondrial disease, but early onset was common. All of 40 cases were gene confirmed, among which 25 cases (62.5%) with mitochondrial DNA (mtDNA) mutation, and 15 cases (37.5%) with nuclear DNA (nDNA) mutation. M.3243A&gt;G (n=7) accounts for a large proportion of mtDNA mutation. The nDNA mutations include SURF1 (n=7), PDHA1 (n=2), and NDUFV1, NDUFAF6, SUCLA2, SUCLG1, RRM2B, and C12orf65, respectively."	"NF-κB controls four genes encoding core enzymes of tricarboxylic acid cycle. NF-κB may promote tumor progression by altering cell metabolism. Hence, finding its target genes that are involved in cell metabolism is helpful for understanding its role in tumor growth. Here we discovered four metabolism-related target genes of this transcription factor. By analyzing a chromatin immunoprecipitation followed by deep sequencing (ChIP-Seq) data that characterizing the global binding sites (BSs) of NF-κB RelA in the TNFα-stimulated HeLa cells, we found that four genes that encode core enzymes of the tricarboxylic acid (TCA) cycle, including IDH1, IDH3A, ACO2, and SUCLA2, were multiply bound by this transcription factor. The subsequent bioinformatic analysis revealed that the NF-κB BSs contained many canonical κB sequences and the NF-κB-like DNA-binding motifs. Detection of ChIPed DNA with polymerase chain reaction (ChIP-PCR) also indicated that the NF-κB BSs were bound by NF-κB in both TNFα-treated HeLa and HepG2 cells. The reporter construct showed that the NF-κB BSs could activate the luciferase expression in cells in a NF-κB-specific manner. The quantitative PCR and Western blot detections demonstrated that NF-κB could regulate the expressions of IDH1, IDH3A, and ACO2 genes at both mRNA and protein levels and that of SUCLA2 gene at mRNA level in the TNFα-treated HeLa and HepG2 cells. Based on these investigations we identified the four genes as new target genes of NF-κB. The finding provides new insights into the role of NF-κB in cellular energetic metabolism, which may be beneficial for understanding the metabolic physiology of tumor growth."	"Phenotypic heterogeneity of a compound heterozygous SUCLA2 mutation. NA"	"Mitochondrial DNA maintenance defects. The maintenance of mitochondrial DNA (mtDNA) depends on a number of nuclear gene-encoded proteins including a battery of enzymes forming the replisome needed to synthesize mtDNA. These enzymes need to be in balanced quantities to function properly that is in part achieved by exchanging intramitochondrial contents through mitochondrial fusion. In addition, mtDNA synthesis requires a balanced supply of nucleotides that is achieved by nucleotide recycling inside the mitochondria and import from the cytosol. Mitochondrial DNA maintenance defects (MDMDs) are a group of diseases caused by pathogenic variants in the nuclear genes involved in mtDNA maintenance resulting in impaired mtDNA synthesis leading to quantitative (mtDNA depletion) and qualitative (multiple mtDNA deletions) defects in mtDNA. Defective mtDNA leads to organ dysfunction due to insufficient mtDNA-encoded protein synthesis, resulting in an inadequate energy production to meet the needs of affected organs. MDMDs are inherited as autosomal recessive or dominant traits, and are associated with a broad phenotypic spectrum ranging from mild adult-onset ophthalmoplegia to severe infantile fatal hepatic failure. To date, pathogenic variants in 20 nuclear genes known to be crucial for mtDNA maintenance have been linked to MDMDs, including genes encoding enzymes of mtDNA replication machinery (POLG, POLG2, TWNK, TFAM, RNASEH1, MGME1, and DNA2), genes encoding proteins that function in maintaining a balanced mitochondrial nucleotide pool (TK2, DGUOK, SUCLG1, SUCLA2, ABAT, RRM2B, TYMP, SLC25A4, AGK, and MPV17), and genes encoding proteins involved in mitochondrial fusion (OPA1, MFN2, and FBXL4)."	"Mitochondrial encephalomyopathy and retinoblastoma explained by compound heterozygosity of SUCLA2 point mutation and 13q14 deletion. NA"	"Phenotypic heterogeneity of a compound heterozygous SUCLA2 mutation. NA"	"Succinyl-CoA synthetase (SUCLA2) deficiency in two siblings with impaired activity of other mitochondrial oxidative enzymes in skeletal muscle without mitochondrial DNA depletion. Mutations in SUCLA2 result in succinyl-CoA ligase (ATP-forming) or succinyl-CoA synthetase (ADP-forming) (A-SCS) deficiency, a mitochondrial tricarboxylic acid cycle disorder. The phenotype associated with this gene defect is largely encephalomyopathy. We describe two siblings compound heterozygous for SUCLA2 mutations, c.985A&gt;G (p.M329V) and c.920C&gt;T (p.A307V), with parents confirmed as carriers of each mutation. We developed a new LC-MS/MS based enzyme assay to demonstrate the decreased SCS activity in the siblings with this unique genotype. Both siblings shared bilateral progressive hearing loss, encephalopathy, global developmental delay, generalized myopathy, and dystonia with choreoathetosis. Prior to diagnosis and because of lactic acidosis and low activity of muscle pyruvate dehydrogenase complex (PDC), sibling 1 (S1) was placed on dichloroacetate, while sibling 2 (S2) was on a ketogenic diet. S1 developed severe cyclic vomiting refractory to therapy, while S2 developed Leigh syndrome, severe GI dysmotility, intermittent anemia, hypogammaglobulinemia and eventually succumbed to his disorder. The mitochondrial DNA contents in skeletal muscle (SM) were normal in both siblings. Pyruvate dehydrogenase complex, ketoglutarate dehydrogenase complex, and several mitochondrial electron transport chain (ETC) activities were low or at the low end of the reference range in frozen SM from S1 and/or S2. In contrast, activities of PDC, other mitochondrial enzymes of pyruvate metabolism, ETC and, integrated oxidative phosphorylation, in skin fibroblasts were not significantly impaired. Although we show that propionyl-CoA inhibits PDC, it does not appear to account for decreased PDC activity in SM. A better understanding of the mechanisms of phenotypic variability and the etiology for tissue-specific secondary deficiencies of mitochondrial enzymes of oxidative metabolism, and independently mitochondrial DNA depletion (common in other cases of A-SCS deficiency), is needed given the implications for control of lactic acidosis and possible clinical management."	"Mitochondrial purine and pyrimidine metabolism and beyond. Carefully balanced deoxynucleoside triphosphate (dNTP) pools are essential for both nuclear and mitochondrial genome replication and repair. Two synthetic pathways operate in cells to produce dNTPs, e.g., the de novo and the salvage pathways. The key regulatory enzymes for de novo synthesis are ribonucleotide reductase (RNR) and thymidylate synthase (TS), and this process is considered to be cytosolic. The salvage pathway operates both in the cytosol (TK1 and dCK) and the mitochondria (TK2 and dGK). Mitochondrial dNTP pools are separated from the cytosolic ones owing to the double membrane structure of the mitochondria, and are formed by the salvage enzymes TK2 and dGK together with NMPKs and NDPK in postmitotic tissues, while in proliferating cells the mitochondrial dNTPs are mainly imported from the cytosol produced by the cytosolic pathways. Imbalanced mitochondrial dNTP pools lead to mtDNA depletion and/or deletions resulting in serious mitochondrial diseases. The mtDNA depletion syndrome is caused by deficiencies not only in enzymes in dNTP synthesis (TK2, dGK, p53R2, and TP) and mtDNA replication (mtDNA polymerase and twinkle helicase), but also in enzymes in other metabolic pathways such as SUCLA2 and SUCLG1, ABAT and MPV17. Basic questions are why defects in these enzymes affect dNTP synthesis and how important is mitochondrial nucleotide synthesis in the whole cell/organism perspective? This review will focus on recent studies on purine and pyrimidine metabolism, which have revealed several important links that connect mitochondrial nucleotide metabolism with amino acids, glucose, and fatty acid metabolism."	"Knockdown of Sucla2 decreases the viability of mouse spermatocytes by inducing apoptosis through injury of the mitochondrial function of cells. Sucla2, a β subunit of succinyl coenzyme A synthase, is located in the mitochondrial matrix. Sucla2 catalyzes the reversible synthesis of succinate and adenosine triphosphate (ATP) in the tricarboxylic acid cycle. Sucla2 expression was found to be correlated with the capacitation of boar spermatozoa. We have previously reported that Sucla2 was decreased in the testes of rats with spermatogenesis failure after exposure to endocrine disruptor BDE47. Yet, the expression model of Sucla2 in spermatogenesis and the function of Sucla2 in spermatogenic cells are still unclear. Our objective was to explore the localization of Sucla2 during mouse spermatogenesis and its function in the mouse spermatocyte line (GC2). The localization of Sucla2 in the mouse testis was explored through immunohistochemistry (IHC). Sucla2 was knocked down in GC2 cells and its expression was detected by Western blot (WB) to verify the efficiency of the siRNA transfection. Mitochondrial membrane potential (MMP), apoptosis and ROS of GC2 were detected by flow cytometry. ATP production was measured by the luminometric method and the presence of Bcl2 of GC2 was detected by WB. Sucla2 is highly expressed in all germ cells but not in interstitial cells. Coarse Sucla2 signals are found in spermatocytes in stages VII–XII of mouse spermatogenesis. In GC2 cells, knockdown of Sucla2 decreased cell viability and MMP, induced apoptosis of GC2 cells, decreased ATP production, and Bcl2 expression, and increased ROS levels. Sucla2 is related to the developmental stages of mouse spermatogenesis. Knockdown of Sucla2 decreases the viability of mouse spermatocytes by inducing apoptosis via decreased mitochondrial function of the cells"	"A Novel SUCLA2 Mutation Presenting as a Complex Childhood Movement Disorder. SUCLA2 defects have been associated with mitochondrial DNA (mtDNA) depletion and the triad of hypotonia, dystonia/Leigh-like syndrome, and deafness. A 9-year-old Brazilian boy of consanguineous parents presented with psychomotor delay, deafness, myopathy, ataxia, and chorea. Despite the prominent movement disorder, brain magnetic resonance imaging (MRI) was normal while <sup>1</sup>H-magnetic resonance spectroscopy (MRS) showed lactate peaks in the cerebral cortex and lateral ventricles. Decreased biochemical activities of mitochondrial respiratory chain enzymes containing mtDNA-encoded subunits and mtDNA depletion were observed in muscle and fibroblasts. A novel homozygous mutation in SUCLA2, the first one in the ligase coenzyme A (CoA) domain of the protein, was identified. Escalating doses of CoQ10 up to 2000 mg daily were associated with improvement of muscle weakness and stabilization of the disease course. The findings indicate the importance of screening for mitochondrial dysfunction in patients with complex movement disorders without brain MRI lesions and further investigation for potential secondary CoQ10 deficiency in patients with SUCLA2 mutations."	"Two transgenic mouse models for β-subunit components of succinate-CoA ligase yielding pleiotropic metabolic alterations. Succinate-CoA ligase (SUCL) is a heterodimer enzyme composed of Suclg1 α-subunit and a substrate-specific Sucla2 or Suclg2 β-subunit yielding ATP or GTP, respectively. In humans, the deficiency of this enzyme leads to encephalomyopathy with or without methylmalonyl aciduria, in addition to resulting in mitochondrial DNA depletion. We generated mice lacking either one Sucla2 or Suclg2 allele. Sucla2 heterozygote mice exhibited tissue- and age-dependent decreases in Sucla2 expression associated with decreases in ATP-forming activity, but rebound increases in cardiac Suclg2 expression and GTP-forming activity. Bioenergetic parameters including substrate-level phosphorylation (SLP) were not different between wild-type and Sucla2 heterozygote mice unless a submaximal pharmacological inhibition of SUCL was concomitantly present. mtDNA contents were moderately decreased, but blood carnitine esters were significantly elevated. Suclg2 heterozygote mice exhibited decreases in Suclg2 expression but no rebound increases in Sucla2 expression or changes in bioenergetic parameters. Surprisingly, deletion of one Suclg2 allele in Sucla2 heterozygote mice still led to a rebound but protracted increase in Suclg2 expression, yielding double heterozygote mice with no alterations in GTP-forming activity or SLP, but more pronounced changes in mtDNA content and blood carnitine esters, and an increase in succinate dehydrogenase activity. We conclude that a partial reduction in Sucla2 elicits rebound increases in Suclg2 expression, which is sufficiently dominant to overcome even a concomitant deletion of one Suclg2 allele, pleiotropically affecting metabolic pathways associated with SUCL. These results as well as the availability of the transgenic mouse colonies will be of value in understanding SUCL deficiency."	"Expanding the phenotypic spectrum of Succinyl-CoA ligase deficiency through functional validation of a new SUCLG1 variant. Deficiency of the TCA cycle enzyme Succinyl-CoA Synthetase/Ligase (SCS), due to pathogenic variants in subunits encoded by SUCLG1 and SUCLA2, causes mitochondrial encephalomyopathy, methylmalonic acidemia, and mitochondrial DNA (mtDNA) depletion. In this study, we report an 11year old patient who presented with truncal ataxia, chorea, hypotonia, bilateral sensorineural hearing loss and preserved cognition. Whole exome sequencing identified a heterozygous known pathogenic variant and a heterozygous novel missense variant of uncertain clinical significance (VUS) in SUCLG1. To validate the suspected pathogenicity of the novel VUS, molecular and biochemical analyses were performed using primary skin fibroblasts from the patient. The patient's cells lack the SUCLG1 protein, with significantly reduced levels of SUCLA2 and SUCLG2 protein. This leads to essentially undetectable SCS enzyme activity, mtDNA depletion, and cellular respiration defects. These abnormal phenotypes are rescued upon ectopic expression of wild-type SUCLG1 in the patient's fibroblasts, thus functionally confirming the pathogenic nature of the SUCLG1 VUS identified in this patient and expanding the phenotypic spectrum for SUCLG1 deficiency."	"[Clinical and laboratory studies on four Chinese patients with succinate-CoA ligase deficiency noticed by mild methylmalonic aciduria]. To study the clinical and genetic features of the patients with secondary methylmalonic aciduria due to succinate-CoA ligase deficiency. From February 2011 to April 2014, 4 Chinese patients with succinate-CoA ligase deficiency and mild methylmalonic aciduria were enrolled in this study. The clinical course, biochemical features, brain MRI findings, and mutations were analyzed. Four patients presented with severe psychomotor retardation, hypotonia, seizures, feeding problems and failure to thrive from the age of one day to 6 months. Three of them had intractable epilepsies. One had hearing defect. Mild methylmalonic aciduria was detected by elevated urine methylmalonic acid and blood propionylcarnitine at the age of 6 months to 2 years and 8 months. Five mutations, c. 550G&gt;A, c. 751C&gt;T, c. 809A&gt;C, c. 961C&gt;G and c. 826-2A&gt;G in SUCLG1 of three patients were identified. On SUCLA2, one novel mutation, c. 970C&gt;T, was found in one patient. After treatment, the disease in all four patients was improved. Four Chinese patients with succinyl-CoA ligase deficiency caused by SUCLG1 and SUCLA2 mutations were noticed by mild methylmalonic aciduria and diagnosed using high-throughput genomic sequencing. Succinate-CoA ligase deficiency is a rare cause of methylmalonic aciduria. Biochemical and gene studies are necessary for the differential diagnoses."	"A Balanced Tissue Composition Reveals New Metabolic and Gene Expression Markers in Prostate Cancer. Molecular analysis of patient tissue samples is essential to characterize the in vivo variability in human cancers which are not accessible in cell-lines or animal models. This applies particularly to studies of tumor metabolism. The challenge is, however, the complex mixture of various tissue types within each sample, such as benign epithelium, stroma and cancer tissue, which can introduce systematic biases when cancers are compared to normal samples. In this study we apply a simple strategy to remove such biases using sample selections where the average content of stroma tissue is balanced between the sample groups. The strategy is applied to a prostate cancer patient cohort where data from MR spectroscopy and gene expression have been collected from and integrated on the exact same tissue samples. We reveal in vivo changes in cancer-relevant metabolic pathways which are otherwise hidden in the data due to tissue confounding. In particular, lowered levels of putrescine are connected to increased expression of SRM, reduced levels of citrate are attributed to upregulation of genes promoting fatty acid synthesis, and increased succinate levels coincide with reduced expression of SUCLA2 and SDHD. In addition, the strategy also highlights important metabolic differences between the stroma, epithelium and prostate cancer. These results show that important in vivo metabolic features of cancer can be revealed from patient data only if the heterogeneous tissue composition is properly accounted for in the analysis. "	"Novel mutation in SUCLA2 identified on sequencing analysis. Succinate-CoA ligase, ADP-forming, beta subunit (SUCLA2)-related mitochondrial DNA depletion syndrome is caused by mutations affecting the ADP-using isoform of the beta subunit in succinyl-CoA synthase, which is involved in the Krebs cycle. The SUCLA2 protein is found mostly in heart, skeletal muscle, and brain tissues. SUCLA2 mutations result in a mitochondrial disorder that manifests as deafness, lesions in the basal ganglia, and encephalomyopathy accompanied by dystonia. Such mutations are generally associated with mildly increased plasma methylmalonic acid, increased plasma lactate, elevated plasma carnitine esters, and the presence of methylmalonic acid in urine. In this case report, we describe a new mutation in a patient with a succinyl-CoA synthase deficiency caused by an SUCLA2 defect. "	"Influences of XDH genotype by gene-gene interactions with SUCLA2 for thiopurine-induced leukopenia in Korean patients with Crohn's disease. The impact of genetic variation in the thiopurine S-methyltransferase (TPMT) gene on thiopurine-induced leukopenia has been well demonstrated. Although xanthine dehydrogenase (XDH) is the second major contributor to azathioprine breakdown, polymorphisms in XDH have rarely been studied in IBD patients. We aim to access association between XDH variants and thiopurine-induced leukopenia by gene-gene interaction in a Crohn's disease (CD) population. A total of 964 CD patients treated with thiopurines were recruited from a tertiary referral center. The association between four XDH variants (p.Gly172Arg, p.Asn1109Thr, p.Arg149Cys, and p.Thr910Lys) and thiopurine-induced leukopenia was analyzed in cases with early leukopenia (n = 66), late leukopenia (n = 264), and in controls without leukopenia (n = 632). Three non-synonymous SNPs, which we previously reported association with thiopurine-induced leukopenia, NUDT15 (p.Arg139Cys), SUCLA2 (p.Ser199Thr), and TPMT *3C were selected for epistasis analysis with the XDH variants. There was no significant association for two variants of XDH and thiopurine-induced leukopenia. In the epistasis analysis, only XDH (p.Asn1109Thr) * SUCLA2 (p.Ser199Thr) showed a statistically significant association with early leukopenia [odds ratio (OR) = 0.16; p = 0.03]. After genotype stratification, a positive association on the background of SUCLA2 wild-type (199Ser) between the XDH (p.Asn1109Thr) and early leukopenia (OR = 4.39; p = 0.01) was detected. Genes associated with thiopurine-induced leukopenia can act in a complex interactive manner. Further studies are warranted to explore the mechanisms underlying the effects of the combination of XDH (p.Asn1109Thr) and SUCLA2 (199Ser) on thiopurine-induced leukopenia."	"[Diagnosis of mitochondrial disorders in children with next generation sequencing]. To explore the application value of next generation sequencing (NGS) in the diagnosis of mitochondrial disorders. According to mitochondrial disease criteria, genomic DNA was extracted using standard procedure from peripheral venous blood of patients with suspected mitochondrial disease collected from neurological department of Beijing Children's Hospital Affiliated to Capital Medical University between October 2012 and February 2014. Targeted NGS to capture and sequence the entire mtDNA and exons of the 1 000 nuclear genes related to mitochondrial structure and function. Clinical data were collected from patients diagnosed at a molecular level, then clinical features and the relationship between genotype and phenotype were analyzed. Mutation was detected in 21 of 70 patients with suspected mitochondrial disease, in whom 10 harbored mtDNA mutation, while 11 nuclear DNA (nDNA) mutation. In 21 patients, 1 was diagnosed congenital myasthenic syndrome with episodic apnea due to CHAT gene p.I187T homozygous mutation, and 20 were diagnosed mitochondrial disease, in which 10 were Leigh syndrome, 4 were mitochondrial encephalomyopathy with lactic acidosis and stroke like episodes syndrome, 3 were Leber hereditary optic neuropathy (LHON) and LHON plus, 2 were mitochondrial DNA depletion syndrome and 1 was unknown. All the mtDNA mutations were point mutations, which contained A3243G, G3460A, G11778A, T14484C, T14502C and T14487C. Ten mitochondrial disease patients harbored homozygous or compound heterozygous mutations in 5 genes previously shown to cause disease: SURF1, PDHA1, NDUFV1, SUCLA2 and SUCLG1, which had 14 mutations, and 7 of the 14 mutations have not been reported. NGS has a certain application value in the diagnosis of mitochondrial diseases, especially in Leigh syndrome atypical mitochondrial syndrome and rare mitochondrial disorders."	"Succinate-CoA ligase deficiency due to mutations in SUCLA2 and SUCLG1: phenotype and genotype correlations in 71 patients. The encephalomyopathic mtDNA depletion syndrome with methylmalonic aciduria is associated with deficiency of succinate-CoA ligase, caused by mutations in SUCLA2 or SUCLG1. We report here 25 new patients with succinate-CoA ligase deficiency, and review the clinical and molecular findings in these and 46 previously reported patients. Of the 71 patients, 50 had SUCLA2 mutations and 21 had SUCLG1 mutations. In the newly-reported 20 SUCLA2 patients we found 16 different mutations, of which nine were novel: two large gene deletions, a 1 bp duplication, two 1 bp deletions, a 3 bp insertion, a nonsense mutation and two missense mutations. In the newly-reported SUCLG1 patients, five missense mutations were identified, of which two were novel. The median onset of symptoms was two months for patients with SUCLA2 mutations and at birth for SUCLG1 patients. Median survival was 20 years for SUCLA2 and 20 months for SUCLG1. Notable clinical differences between the two groups were hepatopathy, found in 38% of SUCLG1 cases but not in SUCLA2 cases, and hypertrophic cardiomyopathy which was not reported in SUCLA2 patients, but documented in 14% of cases with SUCLG1 mutations. Long survival, to age 20 years or older, was reported in 12% of SUCLA2 and in 10% of SUCLG1 patients. The most frequent abnormality on neuroimaging was basal ganglia involvement, found in 69% of SUCLA2 and 80% of SUCLG1 patients. Analysis of respiratory chain enzyme activities in muscle generally showed a combined deficiency of complexes I and IV, but normal histological and biochemical findings in muscle did not preclude a diagnosis of succinate-CoA ligase deficiency. In five patients, the urinary excretion of methylmalonic acid was only marginally elevated, whereas elevated plasma methylmalonic acid was consistently found. To our knowledge, this is the largest study of patients with SUCLA2 and SUCLG1 deficiency. The most important findings were a significantly longer survival in patients with SUCLA2 mutations compared to SUCLG1 mutations and a trend towards longer survival in patients with missense mutations compared to loss-of-function mutations. Hypertrophic cardiomyopathy and liver involvement was exclusively found in patients with SUCLG1 mutations, whereas epilepsy was much more frequent in patients with SUCLA2 mutations compared to patients with SUCLG1 mutations. The mutation analysis revealed a number of novel mutations, including a homozygous deletion of the entire SUCLA2 gene, and we found evidence of two founder mutations in the Scandinavian population, in addition to the known SUCLA2 founder mutation in the Faroe Islands."	"SUCLA2 Deficiency: A Deafness-Dystonia Syndrome with Distinctive Metabolic Findings (Report of a New Patient and Review of the Literature). SUCLA2 encodes for a subunit of succinyl-coenzyme A synthase, the enzyme that reversibly synthesises succinyl-coenzyme A and ATP from succinate, coenzyme A and ADP in the Krebs cycle. Disruption of SUCLA2 function can lead to mitochondrial DNA depletion. Patients with a SUCLA2 mutation present with a rare but distinctive deafness-dystonia syndrome. Additionally, they exhibit elevated levels of the characteristic biochemical markers: methylmalonate, C4-dicarboxylic carnitine and lactate are increased in both plasma and urine. Thus far, eight different disease-causing SUCLA2 mutations, of which six missense mutations and two splice site mutations, have been described in the literature. Here, we present the first patient with an intragenic deletion in SUCLA2 and review the patients described in literature. "	"Genomic and Clinicopathologic Features of Primary Myelofibrosis With Isolated 13q Deletion. Primary myelofibrosis (PMF) is a rare myeloproliferative stem cell disorder. The genomic features in PMF are poorly understood. Characterization of genomic alternations in PMF helps to determine their association with clinicopathologic features for further therapeutic implications. In this retrospective study, we investigated genomic changes using array-based comparative genomic hybridization (aCGH) in 17 PMF patients with isolated del(13q) and confirmed our aCGH findings with quantitative polymerase chain reaction (PCR) assay. We also compared the clinicopathologic features of patients with del(13q) (n = 17) with those of patients with a normal karyotype (NK) (n = 26). Clinicopathologically, del(13q) PMF patients had significantly higher blast counts (P = .03) than did NK patients, who had significantly higher marrow cellularity (P = .02). The degree of bone marrow fibrosis of PMF-3 was higher in the del(13q) group than in the NK group. Splenomegaly was present significantly more often in the del(13q) PMF group than in the NK group (P = .03). Genomically, the Janus Kinase 2 V617F mutation was observed less often in del(13q) PMF patients (P = .07). The common deleted region in del(13q) was confined to 13q13-13q14.3 according to G-band karyotyping, demonstrating a minimal deleted region (MDR) of 15.323 Mb, identified using aCGH. The tumor suppressor genes, Retinoblastoma, Forkhead box protein O1, and Succinyl -CoA ligase [ADP-forming] subunit beta in the MDR were deleted, confirmed using real-time PCR to confirm our aCGH findings. Accurate molecular characterization of del(13q) in PMF using aCGH and quantitative PCR provided further insight to define the MDR and analyze the genomic changes in del(13q) PMF patients."	"Synaptic mitochondria: a brain mitochondria cluster with a specific proteome. The synapse is a particularly important compartment of neurons. To reveal its molecular characteristics we isolated whole brain synaptic (sMito) and non-synaptic mitochondria (nsMito) from the mouse brain with purity validated by electron microscopy and fluorescence activated cell analysis and sorting. Two-dimensional differential gel electrophoresis and mass spectrometry based proteomics revealed 22 proteins with significantly higher and 34 proteins with significantly lower levels in sMito compared to nsMito. Expression differences in some oxidative stress related proteins, such as superoxide dismutase [Mn] (Sod2) and complement component 1Q subcomponent-binding protein (C1qbp), as well as some tricarboxylic acid cycle proteins, including isocitrate dehydrogenase subunit alpha (Idh3a) and ATP-forming β subunit of succinyl-CoA ligase (SuclA2), were verified by Western blot, the latter two also by immunohistochemistry. The data suggest altered tricarboxylic acid metabolism in energy supply of synapse while the marked differences in Sod2 and C1qbp support high sensitivity of synapses to oxidative stress. Further functional clustering demonstrated that proteins with higher synaptic levels are involved in synaptic transmission, lactate and glutathione metabolism. In contrast, mitochondrial proteins associated with glucose, lipid, ketone metabolism, signal transduction, morphogenesis, protein synthesis and transcription were enriched in nsMito. Altogether, the results suggest a specifically tuned composition of synaptic mitochondria. Neurons communicate with each other through synapse, a compartment metabolically isolated from the cell body. Mitochondria are concentrated in presynaptic terminals by active transport to provide energy supply for information transfer. Mitochondrial composition in the synapse may be different than in the cell body as some examples have demonstrated altered mitochondrial composition with cell type and cellular function in the muscle, heart and liver. Therefore, we posed the question whether protein composition of synaptic mitochondria reflects its specific functions. The determined protein difference pattern was in accordance with known functional specialties of high demand synaptic mitochondria. The data also suggest specifically tuned metabolic fluxes for energy production by means of interaction with glial cells surrounding the synapse. These findings provide possible mechanisms for dynamically adapting synaptic mitochondrial output to actual demand. In turn, an increased vulnerability of synaptic mitochondria to oxidative stress is implied by the data. This is important from theoretical but potentially also from therapeutic aspects. Mitochondria are known to be affected in some neurodegenerative and psychiatric disorders, and proteins with elevated level in synaptic mitochondria, e.g. C1qbp represent targets for future drug development, by which synaptic and non-synaptic mitochondria can be differentially affected."	"[SUCLA2-related encephalomyopathic mitochondrial DNA depletion syndrome: a case report and review of literature]. To analyze the clinical characteristics of SUCLA2-related encephalomyopathic mitochondrial DNA depletion syndrome (MDS) in one patient, and review the latest clinical research reports. Clinical, laboratory and genetic data of one case of SUCLA2-related encephalomyopathic MDS diagnosed by department of Neurology, Beijing Children's Hospital in November, 2013 were reported, and through taking &quot;SUCLA2&quot; as key words to search at CNKI, Wanfang, PubMed and the Human Gene Mutation Database (HGMD) professional to date, the clinical characteristics of 24 reported cases of SUCLA2-related encephalomyopathic MDS in international literature in combination with our case were analyzed. (1) The patient was 5 years and 9 months old, born as a term small for gestational age infant whose birth weight was 2 400 g, and presented since birth with severe muscular hypotonia, feeding difficulties, failure to thrive, psychomotor retardation and hearing impairment. Until now, he still showed severe developmental retardation, together with muscular atrophy, thoracocyllosis and scoliosis, and facial features. The patient is the first born from consanguineous healthy parents, whose relationship is cousins. Laboratory tests showed urinary excretion of mild methylmalonic acid (MMA), elevated plasma lactate concentration, and increased C3-carnitine and C4-dicarboxylic-carnitine in plasma carnitine ester profiling. MRI showed brain atrophy-like and bilateral T2 hyperintensities in bilateral caudate nuclei and putamen. By Next-Generation Sequencing (NGS), we identified a novel homozygous missense mutation (c.970G &gt; A) in the SUCLA2 in a highly conserved amino acid residue. (2) The total number was only 25 with a male to female ratio of 14: 11, and age of onset of 23 was 0-4 months. The most common clinical features in patients with SUCLA2 mutation were permanent hypotonia, muscle atrophy, psychomotor retardation and scoliosis or kyphosis. Frequent signs included hearing impairment, hyperkinesia, dystonia or athetoid movements, feeding difficulties, growth retardation and ptosis or ophthalmoplegia. Epilepsy was occasionally observed. The combination of lactic acidemia, mild MMA-uria and increased C3-carnitine and C4-dicarboxylic-carnitine in plasma carnitine ester profiling were characteristic markers. MRI showed brain atrophy-like and bilateral basal ganglia involvement (mainly the putamen and caudate nuclei). Nineteen patients originated from Europe, with 13 of whom originated from Faroe Islands that carry a homozygous mutation (c.534+1G&gt;A) in SUCLA2. SUCLA2-related encephalomyopathic MDS is characterized by onset of severe hypotonia in early infancy, feeding difficulties, growth retardation, psychomotor retardation and hearing impairment. Metabolic findings usually include lactic acidemia, mild MMA-uria and increased C3-carnitine and C4-dicarboxylic-carnitine in plasma carnitine ester profiling. MRI showed brain atrophy-like and bilateral basal ganglia involvement (mainly the putamen and caudate nuclei). SUCLA2 pathogenic mutations would confirm the diagnosis."	"Localization of SUCLA2 and SUCLG2 subunits of succinyl CoA ligase within the cerebral cortex suggests the absence of matrix substrate-level phosphorylation in glial cells of the human brain. We have recently shown that the ATP-forming SUCLA2 subunit of succinyl-CoA ligase, an enzyme of the citric acid cycle, is exclusively expressed in neurons of the human cerebral cortex; GFAP- and S100-positive astroglial cells did not exhibit immunohistoreactivity or in situ hybridization reactivity for either SUCLA2 or the GTP-forming SUCLG2. However, Western blotting of post mortem samples revealed a minor SUCLG2 immunoreactivity. In the present work we sought to identify the cell type(s) harboring SUCLG2 in paraformaldehyde-fixed, free-floating surgical human cortical tissue samples. Specificity of SUCLG2 antiserum was supported by co-localization with mitotracker orange staining of paraformaldehyde-fixed human fibroblast cultures, delineating the mitochondrial network. In human cortical tissue samples, microglia and oligodendroglia were identified by antibodies directed against Iba1 and myelin basic protein, respectively. Double immunofluorescence for SUCLG2 and Iba1 or myelin basic protein exhibited no co-staining; instead, SUCLG2 appeared to outline the cerebral microvasculature. In accordance to our previous work there was no co-localization of SUCLA2 immunoreactivity with either Iba1 or myelin basic protein. We conclude that SUCLG2 exist only in cells forming the vasculature or its contents in the human brain. The absence of SUCLA2 and SUCLG2 in human glia is in compliance with the presence of alternative pathways occurring in these cells, namely the GABA shunt and ketone body metabolism which do not require succinyl CoA ligase activity, and glutamate dehydrogenase 1, an enzyme exhibiting exquisite sensitivity to inhibition by GTP. "	"A comprehensive proteomic approach to identifying capacitation related proteins in boar spermatozoa. Mammalian spermatozoa must undergo capacitation, before becoming competent for fertilization. Despite its importance, the fundamental molecular mechanisms of capacitation are poorly understood. Therefore, in this study, we applied a proteomic approach for identifying capacitation-related proteins in boar spermatozoa in order to elucidate the events more precisely. 2-DE gels were generated from spermatozoa samples in before- and after-capacitation. To validate the 2-DE results, Western blotting and immunocytochemistry were performed with 2 commercially available antibodies. Additionally, the protein-related signaling pathways among identified proteins were detected using Pathway Studio 9.0. We identified Ras-related protein Rab-2, Phospholipid hydroperoxide glutathione peroxidase (PHGPx) and Mitochondrial pyruvate dehydrogenase E1 component subunit beta (PDHB) that were enriched before-capacitation, and NADH dehydrogenase 1 beta subcomplex 6, Mitochondrial peroxiredoxin-5, (PRDX5), Apolipoprotein A-I (APOA1), Mitochondrial Succinyl-CoA ligase [ADP-forming] subunit beta (SUCLA2), Acrosin-binding protein, Ropporin-1A, and Spermadhesin AWN that were enriched after-capacitation (&gt;3-fold) by 2-DE and ESI-MS/MS. SUCLA2 and PDHB are involved in the tricarboxylic acid cycle, whereas PHGPx and PRDX5 are involved in glutathione metabolism. SUCLA2, APOA1 and PDHB mediate adipocytokine signaling and insulin action. The differentially expressed proteins following capacitation are putatively related to sperm functions, such as ROS and energy metabolism, motility, hyperactivation, the acrosome reaction, and sperm-egg interaction. The results from this study elucidate the proteins involved in capacitation, which may aid in the design of biomarkers that can be used to predict boar sperm quality."	"A SUCLG1 mutation in a patient with mitochondrial DNA depletion and congenital anomalies. Defects in two subunits of succinate-CoA ligase encoded by the genes SUCLG1 and SUCLA2 have been identified in mitochondrial DNA (mtDNA) depletion syndromes. Patients generally present with encephalomyopathy and mild methylmalonic acidemia (MMA), however mutations in SUCLG1 normally appear to result in a more severe clinical phenotype. In this report, we describe a patient with fatal infantile lactic acidosis and multiple congenital anomalies (MCAs) including renal and cardiac defects. Molecular studies showed a defective electron transport chain (ETC), mtDNA depletion, and a novel homozygous mutation in the SUCLG1 gene. Although our patient's clinical biochemical phenotype is consistent with a SUCLG1 mutation, it is unclear whether the MCAs observed in our patient are a result of the SUCLG1 mutation or alterations in a second gene. An increasing number of reports have described MCAs associated with mitochondrial disorders and SUCLG1 specifically. Additional studies such as whole exome sequencing will further define whether additional genes are responsible for the observed MCAs."	"Application and interpretation of genome-wide association (GWA) studies for informing pharmacogenomic research - examples from the field of age-related macular degeneration. Genome-wide association (GWA) studies apply broad DNA scans on hundreds-of-thousands of common sequence variants in thousands of people for the purpose of mapping trait- or disease-related loci. We provide examples of ligand- and target-based studies from the field of age-related macular degeneration (AMD) to demonstrate the value of the GWA approach in confirmatory and exploratory pharmacogenomics research. Complementing this genomic analysis, we used a simple biochemical retinal pigment epithelium (RPE) oxidative, apoptotic high throughput screening (HTS) assay to identify compounds. This ligand-to-targetto DNA sequence variant-to disease approach provided guidance on rational design of preclinical studies and identified associations between: 1) valproic acid and advanced AMD-associated genes with the capacity to alter GABA-succinate signaling (ALDH5A1, CACNA1C, SUCLA2, and GABBR2) and chromatin remodeling (HDAC9); and 2) Ropinirole and a geographic atrophy-associated gene (DRD3) with the capacity to alter systems involved in cAMP-PKA signaling. In both applications of our method, the breadth of GWA findings allowed efficient expansion of results to identify enriched pathways and additional ligands capable of targeting pathway constituents. A disease associated SNP-to gene-to target-to ligand approach provided guidance to inform preventive and therapeutic preclinical studies investigating roles of targets in: 1) PPAR-RXR transcription complex constituents for neovascular AMD; and 2) the stress activated MAPK signaling cascade constituents for advanced AMD. Our conclusion is that publically available data from GWA studies can be used successfully with open-access genomics, proteomics, structural chemistry, and pharmacogenomics databases in an efficient, rational approach to streamline the processes of planning and implementation for confirmatory and exploratory pre-clinical studies of preventive or therapeutic pharmacologic treatments for complex diseases. "	"Mitochondrial encephalomyopathy and retinoblastoma explained by compound heterozygosity of SUCLA2 point mutation and 13q14 deletion. Mutations in SUCLA2, encoding the ß-subunit of succinyl-CoA synthetase of Krebs cycle, are one cause of mitochondrial DNA depletion syndrome. Patients have been reported to have severe progressive childhood-onset encephalomyopathy, and methylmalonic aciduria, often leading to death in childhood. We studied two families, with children manifesting with slowly progressive mitochondrial encephalomyopathy, hearing impairment and transient methylmalonic aciduria, without mtDNA depletion. The other family also showed dominant inheritance of bilateral retinoblastoma, which coexisted with mitochondrial encephalomyopathy in one patient. We found a variant in SUCLA2 leading to Asp333Gly change, homozygous in one patient and compound heterozygous in one. The latter patient also carried a deletion of 13q14 of the other allele, discovered with molecular karyotyping. The deletion spanned both SUCLA2 and RB1 gene regions, leading to manifestation of both mitochondrial disease and retinoblastoma. We made a homology model for human succinyl-CoA synthetase and used it for structure-function analysis of all reported pathogenic mutations in SUCLA2. On the basis of our model, all previously described mutations were predicted to result in decreased amounts of incorrectly assembled protein or disruption of ADP phosphorylation, explaining the severe early lethal manifestations. However, the Asp333Gly change was predicted to reduce the activity of the otherwise functional enzyme. On the basis of our findings, SUCLA2 mutations should be analyzed in patients with slowly progressive encephalomyopathy, even in the absence of methylmalonic aciduria or mitochondrial DNA depletion. In addition, an encephalomyopathy in a patient with retinoblastoma suggests mutations affecting SUCLA2. "	"A novel SUCLA2 mutation in a Portuguese child associated with &quot;mild&quot; methylmalonic aciduria. Succinyl-coenzyme A synthase is a mitochondrial matrix enzyme that catalyzes the reversible synthesis of succinate and adenosine triphosphate (ATP) from succinyl-coenzyme A and adenosine diphosphate (ADP) in the tricarboxylic acid cycle. This enzyme is made up of α and β subunits encoded by SUCLG1 and SUCLA2, respectively. We present a child with severe muscular hypotonia, dystonia, failure to thrive, sensorineural deafness, and dysmorphism. Metabolic investigations disclosed hyperlactacidemia, moderate urinary excretion of methylmalonic acid, and elevated levels of C4-dicarboxylic carnitine in blood. We identified a novel homozygous p.M329V in SUCLA2. In cultured cells, the p.M329V resulted in a reduced amount of the SUCLA2 protein, impaired production of mitochondrial ATP, and enhanced production of reactive oxygen species, which was partially reduced by using 5-aminoimidazole-4-carboxamide ribonucleotide in the culture medium. Expanding the array of SUCLA2 mutations, we suggested that reactive oxygen species scavengers are likely to impact on disease prognosis. "	"Screen for abnormal mitochondrial phenotypes in mouse embryonic stem cells identifies a model for succinyl-CoA ligase deficiency and mtDNA depletion. Mutations in subunits of succinyl-CoA synthetase/ligase (SCS), a component of the citric acid cycle, are associated with mitochondrial encephalomyopathy, elevation of methylmalonic acid (MMA), and mitochondrial DNA (mtDNA) depletion. A FACS-based retroviral-mediated gene trap mutagenesis screen in mouse embryonic stem (ES) cells for abnormal mitochondrial phenotypes identified a gene trap allele of Sucla2 (Sucla2(SAβgeo)), which was used to generate transgenic mice. Sucla2 encodes the ADP-specific β-subunit isoform of SCS. Sucla2(SAβgeo) homozygotes exhibited recessive lethality, with most mutants dying late in gestation (e18.5). Mutant placenta and embryonic (e17.5) brain, heart and muscle showed varying degrees of mtDNA depletion (20-60%). However, there was no mtDNA depletion in mutant liver, where the gene is not normally expressed. Elevated levels of MMA were observed in embryonic brain. SCS-deficient mouse embryonic fibroblasts (MEFs) demonstrated a 50% reduction in mtDNA content compared with wild-type MEFs. The mtDNA depletion resulted in reduced steady state levels of mtDNA encoded proteins and multiple respiratory chain deficiencies. mtDNA content could be restored by reintroduction of Sucla2. This mouse model of SCS deficiency and mtDNA depletion promises to provide insights into the pathogenesis of mitochondrial diseases with mtDNA depletion and into the biology of mtDNA maintenance. In addition, this report demonstrates the power of a genetic screen that combines gene trap mutagenesis and FACS analysis in mouse ES cells to identify mitochondrial phenotypes and to develop animal models of mitochondrial dysfunction. "	"Measurement of succinyl-carnitine and methylmalonyl-carnitine on dried blood spot by liquid chromatography-tandem mass spectrometry. Methylmalonic aciduria (MMA) is one of the most frequent organic acidurias, a class of diseases caused by enzymatic defects mainly involved in the catabolism of branched-chain amino acids. Recently, mild MMA and C4-dicarboxylyl-carnitine (C4DC-C) accumulation have been reported in patients carrying mutation in genes encoding the α-subunit (SUCLG1) and the β-subunit (SUCLA2) of the ADP-forming succinyl-CoA synthetase (SCS). We developed a liquid chromatography-tandem mass spectrometry (LC-MS/MS) method to quantify in dried blood spot the two isobaric compounds of C4DC-C, succinyl-carnitine and methylmalonyl-carnitine, to allow the differential diagnosis between classical MMA and SCS-related defects. This method, with an easy liquid-phase extraction and derivatization procedure, has been validated to demonstrate the specificity, linearity, recovery, lowest limit of quantification (LLOQ), accuracy and precision for quantitative determination of blood succinyl-carnitine and methylmalonyl-carnitine. The assay was linear over a concentration range of 0.025-10 μmol/L and achieved the LLOQ of 0.025 μmol/L for both metabolites. The average slope, intercept, and coefficient of linear regression (r(2)) were respectively: 0.3389 (95% confidence interval 0.2888-0.3889), 0.0113 (95% confidence interval -0.0157 to 0.0384), 0.9995 (95% confidence interval 0.9990-1.0000) for succinyl-carnitine and 0.5699 (95% confidence interval 0.5263-0.6134), 0.0319 (95% confidence interval -0.0038 to 0.0677), 0.9997 (95% confidence interval 0.9995-1.0000) for methylmalonyl-carnitine. Within-day and between-day coefficients of variation (CV) were 1.94% and 3.19% for succinyl-carnitine and 3.21%, and 2.56 for methylmalonyl-carnitine. This method is accurate and provides a new tool to differentiate patients with classical methylmalonic acidemia from those with SCS-related defects."	"Exclusive neuronal expression of SUCLA2 in the human brain. SUCLA2 encodes the ATP-forming β subunit (A-SUCL-β) of succinyl-CoA ligase, an enzyme of the citric acid cycle. Mutations in SUCLA2 lead to a mitochondrial disorder manifesting as encephalomyopathy with dystonia, deafness and lesions in the basal ganglia. Despite the distinct brain pathology associated with SUCLA2 mutations, the precise localization of SUCLA2 protein has never been investigated. Here, we show that immunoreactivity of A-SUCL-β in surgical human cortical tissue samples was present exclusively in neurons, identified by their morphology and visualized by double labeling with a fluorescent Nissl dye. A-SUCL-β immunoreactivity co-localized &gt;99 % with that of the d subunit of the mitochondrial F0-F1 ATP synthase. Specificity of the anti-A-SUCL-β antiserum was verified by the absence of labeling in fibroblasts from a patient with a complete deletion of SUCLA2. A-SUCL-β immunoreactivity was absent in glial cells, identified by antibodies directed against the glial markers GFAP and S100. Furthermore, in situ hybridization histochemistry demonstrated that SUCLA2 mRNA was present in Nissl-labeled neurons but not glial cells labeled with S100. Immunoreactivity of the GTP-forming β subunit (G-SUCL-β) encoded by SUCLG2, or in situ hybridization histochemistry for SUCLG2 mRNA could not be demonstrated in either neurons or astrocytes. Western blotting of post mortem brain samples revealed minor G-SUCL-β immunoreactivity that was, however, not upregulated in samples obtained from diabetic versus non-diabetic patients, as has been described for murine brain. Our work establishes that SUCLA2 is expressed exclusively in neurons in the human cerebral cortex."	"The novel mutation p.Asp251Asn in the β-subunit of succinate-CoA ligase causes encephalomyopathy and elevated succinylcarnitine. SUCLA2 is one of several nuclear-encoded genes that can cause encephalomyopathy accompanied by mitochondrial DNA depletion. The disorder usually manifests in early childhood and leads to early death. The gene encodes one of the subunits of succinyl-CoA synthase, the enzyme that catalyzes the reversible conversion of substrates succinyl-CoA and ADP to products succinate and ATP in the tricarboxylic acid pathway. Thirty-two individuals harboring mutations in SUCLA2 have so far been reported, and five different mutations were observed among these individuals. Here we report identification of a novel mutation in SUCLA2 in two cousins affected with encephalomyopathy. The novel mutation causes p.Asp251Asn; the affected amino acid is likely positioned within the ATP-grasp domain of the encoded protein. As previously reported in other patients, we did not observe elevation of methylmalonic acid, the biochemical hallmark of patients with mutations in SUCLA2. We instead found elevated levels of succinylcarnitine. "	"Nuclear factors: roles related to mitochondrial deafness. Hearing loss (HL) is a common disorder with mitochondrial dysfunction as one of the major causes leading to deafness. Mitochondrial dysfunction may be caused by either mutations in nuclear genes leading to defective nuclear-encoded proteins or mutations in mitochondrial genes leading to defective mitochondrial-encoded products. The specific nuclear genes involved in HL can be classified into two categories depending on whether mitochondrial gene mutations co-exist (modifier genes) or not (deafness-causing genes). TFB1M, MTO1, GTPBP3, and TRMU are modifier genes. A mutation in any of these modifier genes may lead to a deafness phenotype when accompanied by the mitochondrial gene mutation. OPA1, TIMM8A, SMAC/DIABLO, MPV17, PDSS1, BCS1L, SUCLA2, C10ORF2, COX10, PLOG1and RRM2B are deafness-causing genes. A mutation in any of these deafness-causing genes will directly induce variable phenotypic HL."	"Mitochondrial DNA depletion syndromes: review and updates of genetic basis, manifestations, and therapeutic options. Mitochondrial DNA (mtDNA) depletion syndromes (MDS) are a genetically and clinically heterogeneous group of autosomal recessive disorders that are characterized by a severe reduction in mtDNA content leading to impaired energy production in affected tissues and organs. MDS are due to defects in mtDNA maintenance caused by mutations in nuclear genes that function in either mitochondrial nucleotide synthesis (TK2, SUCLA2, SUCLG1, RRM2B, DGUOK, and TYMP) or mtDNA replication (POLG and C10orf2). MDS are phenotypically heterogeneous and usually classified as myopathic, encephalomyopathic, hepatocerebral or neurogastrointestinal. Myopathic MDS, caused by mutations in TK2, usually present before the age of 2 years with hypotonia and muscle weakness. Encephalomyopathic MDS, caused by mutations in SUCLA2, SUCLG1, or RRM2B, typically present during infancy with hypotonia and pronounced neurological features. Hepatocerebral MDS, caused by mutations in DGUOK, MPV17, POLG, or C10orf2, commonly have an early-onset liver dysfunction and neurological involvement. Finally, TYMP mutations have been associated with mitochondrial neurogastrointestinal encephalopathy (MNGIE) disease that typically presents before the age of 20 years with progressive gastrointestinal dysmotility and peripheral neuropathy. Overall, MDS are severe disorders with poor prognosis in the majority of affected individuals. No efficacious therapy is available for any of these disorders. Affected individuals should have a comprehensive evaluation to assess the degree of involvement of different systems. Treatment is directed mainly toward providing symptomatic management. Nutritional modulation and cofactor supplementation may be beneficial. Liver transplantation remains controversial. Finally, stem cell transplantation in MNGIE disease shows promising results."	"A novel homozygous mutation in SUCLA2 gene identified by exome sequencing. Mitochondrial disorders with multiple mitochondrial respiratory chain (MRC) enzyme deficiency and depletion of mitochondrial DNA (mtDNA) are autosomal recessive conditions due to mutations in several nuclear genes necessary for proper mtDNA maintenance. In this report, we describe two Italian siblings presenting with encephalomyopathy and mtDNA depletion in muscle. By whole exome-sequencing and prioritization of candidate genes, we identified a novel homozygous missense mutation in the SUCLA2 gene in a highly conserved aminoacid residue. Although a recurrent mutation in the SUCLA2 gene is relatively frequent in the Faroe Islands, mutations in other populations are extremely rare. In contrast with what has been reported in other patients, methyl-malonic aciduria, a biomarker for this genetic defect, was absent in our proband and very mildly elevated in her affected sister. This report demonstrates that next-generation technologies, particularly exome-sequencing, are user friendly, powerful means for the identification of disease genes in genetically and clinically heterogeneous inherited conditions, such as mitochondrial disorders."	"Mitochondrial DNA depletion syndrome: new descriptions and the use of citrate synthase as a helpful tool to better characterise the patients. Mitochondrial DNA depletion syndrome (MDS) is a clinically heterogeneous group of mitochondrial disorders characterised by a quantitative reduction of the mitochondrial DNA copy number. Three main clinical forms of MDS: myopathic, encephalomyopathic and hepatocerebral have been defined, although patients may present with other MDS associated clinical symptoms and signs that cover a wide spectrum of onset age and disease. We studied 52 paediatric individuals suspected to have MDS. These patients have been divided into three different groups, and the appropriate MDS genes have been screened according to their clinical and biochemical phenotypes. Mutational study of DGUOK, MPV17, SUCLA2, SUCLG1 and POLG allowed us to identify 3 novel mutations (c.1048G&gt;A and c.1049G&gt;T in SUCLA2 and c.531+4A&gt;T in SUCLG1) and 7 already known mutations in 10 patients (8 families). Seventeen patients presented with mtDNA depletion in liver or muscle, but the cause of mtDNA depletion still remains unknown in 8 of them. When possible, we quantified mtDNA/nDNA and CS activity in the same tissue sample, providing an additional tool for the study of MDS. The ratio (mtDNA/nDNA)/CS has shed some light in the discrepant results between the mtDNA copy number and the enzymatic respiratory chain activities of some cases."	"X-linked sideroblastic anemia due to carboxyl-terminal ALAS2 mutations that cause loss of binding to the β-subunit of succinyl-CoA synthetase (SUCLA2). Mutations in the erythroid-specific aminolevulinic acid synthase gene (ALAS2) cause X-linked sideroblastic anemia (XLSA) by reducing mitochondrial enzymatic activity. Surprisingly, a patient with the classic XLSA phenotype had a novel exon 11 mutation encoding a recombinant enzyme (p.Met567Val) with normal activity, kinetics, and stability. Similarly, both an expressed adjacent XLSA mutation, p.Ser568Gly, and a mutation (p.Phe557Ter) lacking the 31 carboxyl-terminal residues also had normal or enhanced activity, kinetics, and stability. Because ALAS2 binds to the β subunit of succinyl-CoA synthetase (SUCLA2), the mutant proteins were tested for their ability to bind to this protein. Wild type ALAS2 bound strongly to a SUCLA2 affinity column, but the adjacent XLSA mutant enzymes and the truncated mutant did not bind. In contrast, vitamin B6-responsive XLSA mutations p.Arg452Cys and p.Arg452His, with normal in vitro enzyme activity and stability, did not interfere with binding to SUCLA2 but instead had loss of positive cooperativity for succinyl-CoA binding, an increased K(m) for succinyl-CoA, and reduced vitamin B6 affinity. Consistent with the association of SUCLA2 binding with in vivo ALAS2 activity, the p.Met567GlufsX2 mutant protein that causes X-linked protoporphyria bound strongly to SUCLA2, highlighting the probable role of an ALAS2-succinyl-CoA synthetase complex in the regulation of erythroid heme biosynthesis."	"Measurement of mitochondrial DNA copy number. Mitochondrial disorders are complex and heterogeneous diseases that may be caused by molecular defects in either the nuclear or mitochondrial genome. The biosynthesis and maintenance of the integrity of the mitochondrial genome is solely dependent on a number of nuclear proteins. Defects in these nuclear genes can lead to mitochondrial DNA (mtDNA) depletion (Spinazzola et al. Biosci Rep 27:39-51, 2007). The mitochondrial DNA (mtDNA) depletion syndromes (MDDSs) are autosomal recessive disorders characterized by a significant reduction in mtDNA content. These genes include POLG, DGUOK, TK2, TYMP, MPV17, SUCLA2, SUCLG1, RRM2B, and C10orf2, all nine genes have mutations reported to cause various forms of MDDSs. In this chapter, we outline the real-time quantitative polymerase chain reaction (qPCR) analysis of mtDNA content in muscle or liver tissues."	"Neonatal lactic acidosis with methylmalonic aciduria due to novel mutations in the SUCLG1 gene. Succinyl-coenzyme A ligase (SUCL) is a mitochondrial enzyme that catalyses the reversible conversion of succinyl-coenzyme A to succinate. SUCL consists of an α subunit, encoded by SUCLG1, and a β subunit, encoded by either SUCLA2 or SUCLG2. Recently, mutations in SUCLG1 or SUCLA2 have been identified in patients with infantile lactic acidosis showing elevated urinary excretion of methylmalonate, mitochondrial respiratory chain (MRC) deficiency, and mitochondrial DNA depletion. Case description of a Japanese female patient who manifested a neonatal-onset lactic acidosis with urinary excretion of methylmalonic acid. Enzymatic analyses (MRC enzyme assay and Western blotting) and direct sequencing analysis of SUCLA2 and SUCLG1 were performed. MRC enzyme assay and Western blotting showed that MRC complex I was deficient. SUCLG1 mutation analysis showed that the patient was a compound heterozygote for disease-causing mutations (p.M14T and p.S200F). For patients showing neonatal lactic acidosis and prolonged mild methylmalonic aciduria, MRC activities and mutations of SUCLG1 or SUCLA2 should be screened for."	"The interplay between SUCLA2, SUCLG2, and mitochondrial DNA depletion. SUCLA2-related mitochondrial DNA (mtDNA) depletion syndrome is a result of mutations in the β subunit of the ADP-dependent isoform of the Krebs cycle succinyl-CoA synthase (SCS). The mechanism of tissue specificity and mtDNA depletion is elusive but complementation by the GDP-dependent isoform encoded by SUCLG2, and the association with mitochondrial nucleoside diphosphate kinase (NDPK), is a plausible link. We have investigated this relationship by studying SUCLA2 deficient fibroblasts derived from patients and detected normal mtDNA content and normal NDPK activity. However, knockdown of SUCLG2 by shRNA in both patient and control fibroblasts resulted in a significant decrease in mtDNA amount, decreased NDPK and cytochrome c oxidase activities, and a marked growth impairment. This suggests that, SUCLG2, to a higher degree than SUCLA2, is crucial for mtDNA maintenance and that mitochondrial NDPK is involved. Although results pertain to a cell culture system, the findings might explain the pathomechanism and tissue specificity in mtDNA depletion caused by defective SUCLA2."	"Real-time quantitative PCR analysis of mitochondrial DNA content. Mitochondrial disorders are a group of complex and heterogeneous diseases that may be caused by molecular defects in the nuclear or mitochondrial genome. The biosynthesis and integrity of the small 16.6-kb mitochondrial genome require a group of nuclear encoded genes. The mitochondrial DNA (mtDNA) depletion syndromes (MDDSs) are autosomal recessive disorders caused by molecular defects in nuclear genes, and characterized by a reduction in mtDNA content. To date, mutations in at least nine genes (POLG, DGUOK, TK2, TYMP, MPV17, SUCLA2, SUCLG1, RRM2B, and C10orf2) have been reported to cause various forms of MDDSs. In the clinical setting, a simple method to determine mtDNA depletion would be useful prior to undertaking gene sequence analysis. This unit outlines the real-time quantitative polymerase chain reaction (qPCR) analysis of mtDNA content in tissues. MtDNA content varies among different tissues and at different ages in the same individual. Detailed protocols for the selection of nuclear genes for normalization, PCR set up, validation procedures, tissue and age matched controls, and sensitivity and specificity in various tissues, as well as interpretation of results are discussed."	"Fatal infantile lactic acidosis and a novel homozygous mutation in the SUCLG1 gene: a mitochondrial DNA depletion disorder. Mitochondrial DNA (mtDNA) depletion syndromes are autosomal recessive conditions in which the mtDNA copy number is greatly decreased in affected tissues. The encephalomyopathic group of these syndromes comprise mutations in SUCLA2 and SUCLG1 subunits [1]. In this report, we describe a patient with fatal infantile lactic acidosis associated with mutations in the SUCLG1 gene and mtDNA depletion. Histological and enzymatic abnormalities in skeletal muscle support the diagnosis of this recently described mitochondrial disorder. This case is unique in that prenatal imaging suggested the diagnosis and that the confirmatory molecular diagnosis was established at 2 weeks of age. We describe prenatal MRI and neonatal laboratory disturbances that can point the clinician toward consideration of this diagnosis when treating infantile lactic acidosis."	"The severity of phenotype linked to SUCLG1 mutations could be correlated with residual amount of SUCLG1 protein. Succinate-CoA ligase deficiency is responsible for encephalomyopathy with mitochondrial DNA depletion and mild methylmalonic aciduria. Mutations in SUCLA2, the gene encoding a β subunit of succinate-CoA ligase, have been reported in 17 patients until now. Mutations in SUCLG1, encoding the α subunit of the enzyme, have been described in two pedigrees only. In this study, two unrelated patients harbouring three novel pathogenic mutations in SUCLG1 were reported. The first patient had a severe disease at birth. He was compound heterozygous for a missense mutation (p.Pro170Arg) and a c.97+3G&gt;C mutation, which leads to the complete skipping of exon 1 in a minigene expression system. The involvement of SUCLG1 was confirmed by western blot analysis, which showed absence of SUCLG1 protein in fibroblasts. The second patient has a milder phenotype, similar to that of patients with SUCLA2 mutations, and is still alive at 12 years of age. Western blot analysis showed some residual SUCLG1 protein in patient's fibroblasts. Our results suggest that SUCLG1 mutations that lead to complete absence of SUCLG1 protein are responsible for a very severe disorder with antenatal manifestations, whereas a SUCLA2-like phenotype is found in patients with residual SUCLG1 protein. Furthermore, it is shown that in the absence of SUCLG1 protein, no SUCLA2 protein is found in fibroblasts by western blot analysis. This result is consistent with a degradation of SUCLA2 when its heterodimer partner, SUCLG1, is absent."	"The clinical diagnosis of POLG disease and other mitochondrial DNA depletion disorders. Disorders of oxidative phosphorylation and mitochondrial function can be caused from mutations involving both mitochondrial DNA (mtDNA) or mitochondrial-targeted nuclear DNA genes. Progressive depletion of mtDNA is one mechanism of mitochondrial dysfunction leading to human disease, which is the end result of loss of the sufficient mtDNA-encoded proteins for normal electron transport chain function. Mitochondrial DNA depletion is caused by germline deletions and duplications of segments within the mtDNA as well as germline mutations in the nuclear genes responsible for mtDNA duplication (the polymerase apparatus including POLG, POLG2 and PEO1) and mtDNA maintenance (those genes that regulate the deoxynucleotide triphosphate pools and other functions including TP1, TK2, DGUOK, SUCLA1, SUCLA2, ANT1, RRM2B and MPV17). This review will focus on the most common disorders that result from mutations with POLG, with some discussion of the other nuclear-encoded genes involved in mtDNA maintenance. Mutations in POLG can cause a wide range of disease, which vary in both age of onset and severity. These disorders comprise a continuous spectrum of overlapping symptoms and signs; and range from a rapidly fatal infantile cerebrohepatic disease to a progressive external ophthalmoplegia (PEO) that may not present until the sixth decade of life. Many of the disorders seem to have a more unique and restrictive clinical presentation, at least to date. Since the first disorders linked to mtDNA depletion were described in 2001, the nomenclature, methods of diagnosis, clinical evaluation and treatment of these disorders have been better defined. However, this remains a rapidly evolving field, with additional proteins and genes are being discovered as DNA testing becomes part of the standard of care in everyday medical practice."	"Quantitative evaluation of the mitochondrial DNA depletion syndrome. The mitochondrial DNA (mtDNA) depletion syndromes (MDDSs) are autosomal recessive disorders characterized by a reduction in cellular mtDNA content. Mutations in at least 9 genes [POLG, polymerase (DNA directed), gamma; DGUOK, deoxyguanosine kinase; TK2, thymidine kinase, mitochondrial; TYMP, thymidine phosphorylase; MPV17, MpV17 mitochondrial inner membrane protein; SUCLA2, succinate-CoA ligase, ADP-forming, beta subunit; SUCLG1, succinate-CoA ligase, alpha subunit; RRM2B, RRM2B, ribonucleotide reductase M2 B (TP53 inducible); and C10orf2, chromosome 10 open reading frame 2 (also known as TWINKLE)] have been reported to cause mtDNA depletion. In the clinical setting, a simple method to quantify mtDNA depletion would be useful before undertaking gene sequence analysis. Real-time quantitative PCR (qPCR) was used to measure the mtDNA content in blood, muscle, and liver samples and in skin fibroblast cultures from individuals suspected of mitochondrial disorders, with or without deleterious mutations in genes responsible for MDDS. The mtDNA content was quantified in 776 tissue samples (blood, n = 341; muscle, n = 325; liver, n = 63; skin fibroblasts, n = 47) from control individuals. mtDNA content increased with age in muscle tissue, decreased with age in blood samples, and appeared to be unaffected by age in liver samples. In 165 samples (blood, n = 122; muscle, n = 21; liver, n = 15; skin fibroblasts, n = 7) from patients with molecularly proven MDDSs, severe mtDNA depletion was detected in liver and muscle tissue with high specificity and sensitivity. Blood samples were specific but not sensitive for detecting mtDNA depletion, and skin fibroblasts were not valuable for evaluating mtDNA depletion. Mutations in the POLG, RRM2B, and MPV17 genes were prospectively identified in 1 blood, 1 liver, and 3 muscle samples. Muscle and liver tissues, but not blood or skin fibroblasts, are potentially useful for rapid screening for mtDNA depletion with real-time qPCR."	"Collated mutations in mitochondrial DNA (mtDNA) depletion syndrome (excluding the mitochondrial gamma polymerase, POLG1). These tables list both published and a number of unpublished mutations in genes associated with early onset defects in mitochondrial DNA (mtDNA) maintenance including C10orf2, SUCLG1, SUCLA2, TYMP, RRM2B, MPV17, DGUOK and TK2. The list should not be taken as evidence that any particular mutation is pathogenic. We have included genes known to cause mtDNA depletion, excluding POLG1, because of the existing database (http://tools.niehs.nih.gov/polg/). We have also excluded mutations in C10orf2 associated with dominant adult onset disorders."	"Mitochondrial neurogastrointestinal encephalopathy due to mutations in RRM2B. Mitochondrial neurogastrointestinal encephalopathy (MNGIE) is a progressive neurodegenerative disorder associated with thymidine phosphorylase deficiency resulting in high levels of plasma thymidine and a characteristic clinical phenotype. To investigate the molecular basis of MNGIE in a patient with a normal plasma thymidine level. Clinical, neurophysiological, and histopathological examinations as well as molecular and genetic analyses. Nerve and muscle center and genetic clinic. Patient A 42-year-old woman with clinical findings strongly suggestive for MNGIE. Clinical description of the disease and its novel genetic cause. Identification of mitochondrial DNA depletion in muscle samples (approximately 12% of the control mean content) prompted us to look for other causes of our patient's condition. Sequencing of genes associated with mitochondrial DNA depletion-POLG, PEO1, ANT1, SUCLG1, and SUCLA2-did not reveal deleterious mutations. Results of sequencing and array comparative genomic hybridization of the mitochondrial DNA for point mutations and deletions in blood and muscle were negative. Sequencing of RRM2B, a gene encoding cytosolic p53-inducible ribonucleoside reductase small subunit (RIR2B), revealed 2 pathogenic mutations, c.329G&gt;A (p.R110H) and c.362G&gt;A (p.R121H). These mutations are predicted to affect the docking interface of the RIR2B homodimer and likely result in impaired enzyme activity. This study expands the clinical spectrum of impaired RIR2B function, challenges the notion of locus homogeneity of MNGIE, and sheds light on the pathogenesis of conditions involved in the homeostasis of the mitochondrial nucleotide pool. Our findings suggest that patients with MNGIE who have normal thymidine levels should be tested for RRM2B mutations."	"Dystonia and deafness due to SUCLA2 defect; Clinical course and biochemical markers in 16 children. Patients with SUCLA2 gene defects characteristically develop the trias of early hypotonia, progressive dystonia and sensori-neural deafness. We describe the clinical course and biochemical phenotype in 16 children from the Faroe Islands with a homozygous SUCLA2 splice site mutation. Elevated urinary 3-hydroxyisovaleric acid is a novel biochemical feature in patients. Progressive hearing loss, in combination with a characteristic metabolite profile (increased lactate, methylmalonic acid, C4-dicarboxylic carnitine, 3-hydroxyisovaleric acid) should lead the clinician to the correct diagnosis even in patients with only intermittent lactic acidemia. Direct SUCLA2 sequence analysis is suggested instead of an invasive muscle biopsy to obtain the diagnosis. Nutritional intervention may be considered in SUCLA2 patients."	"A novel missense mutation in SUCLG1 associated with mitochondrial DNA depletion, encephalomyopathic form, with methylmalonic aciduria. Mitochondrial DNA depletion, encephalomyopathic form, with methylmalonic aciduria is associated with mutations in SUCLA2, the gene encoding a beta subunit of succinate-CoA ligase, where 17 patients have been reported. Mutations in SUCLG1, encoding the alpha subunit of the enzyme, have been reported in only one family, where a homozygous 2 bp deletion was associated with fatal infantile lactic acidosis. We here report a patient with a novel homozygous missense mutation in SUCLG1, whose phenotype is similar to that of patients with SUCLA2 mutations."	"Clinical and molecular features of mitochondrial DNA depletion syndromes. Mitochondrial DNA depletion syndromes (MDSs) form a group of autosomal recessive disorders characterized by profoundly decreased mitochondrial DNA copy numbers in affected tissues. Three main clinical presentations are known: myopathic, encephalomyopathic and hepatocerebral. The first is associated with mutations in thymidine kinase 2 (TK2) and p53-induced ribonucleotide reductase B subunit (RRM2B); the second with mutations in succinate synthase A (SUCLA2) and B (SUCLG1); the third with mutations in Twinkle (PEO1), pol-gammaA (POLG1), deoxyguanosine kinase (DGUOK) and MPV17 (MPV17). In this work, we review the MDS-associated phenotypes and present our own experience of 32 MDS patients, with the aim of defining the mutation frequency of the known genes, the clinical spectrum of the diseases, and the genotype-phenotype correlations. Five of our patients carried previously unreported mutations in one of the eight MDS genes."	"Biochemical and genetic analysis of 3-methylglutaconic aciduria type IV: a diagnostic strategy. The heterogeneous group of 3-methylglutaconic aciduria type IV consists of patients with various organ involvement and mostly progressive neurological impairment in combination with 3-methylglutaconic aciduria and biochemical features of dysfunctional oxidative phosphorylation. Here we describe the clinical and biochemical phenotype in 18 children and define 4 clinical subgroups (encephalomyopathic, hepatocerebral, cardiomyopathic, myopathic). In the encephalomyopathic group with neurodegenerative symptoms and respiratory chain complex I deficiency, two of the children, presenting with mild Methylmalonic aciduria, Leigh-like encephalomyopathy, dystonia and deafness, harboured SUCLA2 mutations. In children with a hepatocerebral phenotype most patients presented with complex I deficiency and mtDNA-depletion, three of which carried POLG1-mutations. In the cardiomyopathic subgroup most patients had complex V deficiency and an overlapping phenotype with that previously described in isolated complex V deficiency, in three patients a TMEM70 mutation was confirmed. In one male with a pure myopathic form and severe combined respiratory chain disorder, based on the pathogenomic histology of central core disease, RYR1 mutations were detected. In our patient group the presence of the biochemical marker 3-methylglutaconic acid was indicative for nuclear coded respiratory chain disorders. By delineating patient-groups we elucidated the genetic defect in 10 out of 18 children. Depending on the clinical and biochemical phenotype we suggest POLG1, SUCLA2, TMEM70 and RYR1 sequence analysis and mtDNA-depletion studies in children with 3-methylglutaconic aciduria type IV."	"Mitochondrial DNA depletion syndrome due to mutations in the RRM2B gene. Mitochondrial DNA depletion syndrome (MDS) is characterized by a reduction in mtDNA copy number and has been associated with mutations in eight nuclear genes, including enzymes involved in mitochondrial nucleotide metabolism (POLG, TK2, DGUOK, SUCLA2, SUCLG1, PEO1) and MPV17. Recently, mutations in the RRM2B gene, encoding the p53-controlled ribonucleotide reductase subunit, have been described in seven infants from four families, who presented with various combinations of hypotonia, tubulopathy, seizures, respiratory distress, diarrhea, and lactic acidosis. All children died before 4 months of age. We sequenced the RRM2B gene in three unrelated cases with unexplained severe mtDNA depletion. The first patient developed intractable diarrhea, profound weakness, respiratory distress, and died at 3 months. The other two unrelated patients had a much milder phenotype and are still alive at ages 27 and 36 months. All three patients had lactic acidosis and severe depletion of mtDNA in muscle. Muscle histochemistry showed RRF and COX deficiency. Sequencing the RRM2B gene revealed three missense mutations and two single nucleotide deletions in exons 6, 8, and 9, confirming that RRM2B mutations are important causes of MDS and that the clinical phenotype is heterogeneous and not invariably fatal in infancy."	"Disorders caused by deficiency of succinate-CoA ligase. Succinate-CoA ligase catalyses the reversible conversion of succinyl-CoA and ADP or GDP to succinate and ATP or GTP. It is a mitochondrial matrix enzyme and at least the ADP-forming enzyme is part of the Krebs cycle. The substrate specificity is determined by the beta subunit of succinate-CoA ligase, which is encoded by either SUCLA2 or SUCLG2. In patients with severe hypotonia, deafness and Leigh-like syndrome, mutations have been found in SUCLA2. Mutations have also been reported in SUCLG1, which encodes the alpha subunit found in both enzymes, in patients with severe infantile acidosis and lactic aciduria. Elevated methylmalonate and methylcitrate and severe mtDNA depletion were found in both disorders. The mtDNA depletion may be explained by the interaction of succinate-CoA ligase with nucleoside diphosphate kinase, which is involved in mitochondrial nucleotide metabolism."	"Inherited mitochondrial diseases of DNA replication. Mitochondrial genetic diseases can result from defects in mitochondrial DNA (mtDNA) in the form of deletions, point mutations, or depletion, which ultimately cause loss of oxidative phosphorylation. These mutations may be spontaneous, maternally inherited, or a result of inherited nuclear defects in genes that maintain mtDNA. This review focuses on our current understanding of nuclear gene mutations that produce mtDNA alterations and cause mitochondrial depletion syndrome (MDS), progressive external ophthalmoplegia (PEO), ataxia-neuropathy, or mitochondrial neurogastrointestinal encephalomyopathy (MNGIE). To date, all of these etiologic nuclear genes fall into one of two categories: genes whose products function directly at the mtDNA replication fork, such as POLG, POLG2, and TWINKLE, or genes whose products supply the mitochondria with deoxynucleotide triphosphate pools needed for DNA replication, such as TK2, DGUOK, TP, SUCLA2, ANT1, and possibly the newly identified MPV17."	"Infantile mitochondrial disorders. Mitochondrial disorders encompass any medical specialty and affect patients at any age. Likewise, the spectrum of clinical and genetic signatures of these disorders is ample, making a precise diagnosis difficult. We will report some of the major clinical phenotypes observed in infancy, their underlining molecular features, and will propose an approach to reach a more complete diagnosis."	"Mutation of RRM2B, encoding p53-controlled ribonucleotide reductase (p53R2), causes severe mitochondrial DNA depletion. Mitochondrial DNA (mtDNA) depletion syndrome (MDS; MIM 251880) is a prevalent cause of oxidative phosphorylation disorders characterized by a reduction in mtDNA copy number. The hitherto recognized disease mechanisms alter either mtDNA replication (POLG (ref. 1)) or the salvage pathway of mitochondrial deoxyribonucleosides 5'-triphosphates (dNTPs) for mtDNA synthesis (DGUOK (ref. 2), TK2 (ref. 3) and SUCLA2 (ref. 4)). A last gene, MPV17 (ref. 5), has no known function. Yet the majority of cases remain unexplained. Studying seven cases of profound mtDNA depletion (1-2% residual mtDNA in muscle) in four unrelated families, we have found nonsense, missense and splice-site mutations and in-frame deletions of the RRM2B gene, encoding the cytosolic p53-inducible ribonucleotide reductase small subunit. Accordingly, severe mtDNA depletion was found in various tissues of the Rrm2b-/- mouse. The mtDNA depletion triggered by p53R2 alterations in both human and mouse implies that p53R2 has a crucial role in dNTP supply for mtDNA synthesis."	"Mutations in SUCLA2: a tandem ride back to the Krebs cycle. NA"	"SUCLA2 mutations are associated with mild methylmalonic aciduria, Leigh-like encephalomyopathy, dystonia and deafness. One pedigree with four patients has been recently described with mitochondrial DNA depletion and mutation in SUCLA2 gene leading to succinyl-CoA synthase deficiency. Patients had a Leigh-like encephalomyopathy and deafness but besides the presence of lactic acidosis, the profile of urine organic acid was not reported. We have studied 14 patients with mild 'unlabelled' methylmalonic aciduria (MMA) from 11 families. Eight of the families are from the Faroe Islands, having a common ancestor, and three are from southern Italy. Since the reaction catalysed by succinyl-CoA synthase in the tricarboxylic acid (TCA) cycle represents a distal step of the methylmalonic acid pathway, we investigated the SUCLA2 gene as a candidate gene in our patients. Genetic analysis of the gene in the 14 patients confirmed the defect in all patients and led to the identification of three novel mutations (p.Gly118Arg; p.Arg284Cys; c.534 + 1G --&gt; A). The defect could be convincingly shown at the protein level and our data also confirm the previously described mitochondrial DNA depletion. Defects in SUCLA2 can be found at the metabolite level and are defined by mildly elevated methylmalonic acid and C4-dicarboxylic carnitine concentrations in body fluids in association with variable lactic acidosis. Clinically the diagnosis should be considered in patients with early/neonatal onset encephalomyopathy, dystonia, deafness and Leigh-like MRI abnormalities mainly affecting the putamen and the caudate nuclei. The frequency of the mutated allele in the Faroese population amounted to 2%, corresponding with an estimated homozygote frequency of 1 : 2500. Our data extend knowledge on the genetic defects causing MMA. Our patients present with an early infantile Leigh-like encephalomyopathy with deafness, and later on a progressive dystonia. Mild MMA, lactic acidosis and specific abnormalities in the carnitine ester profile are the biochemical hallmarks of the disease. In view of the frequency of the mutated allele on the Faroe Islands, measures become feasible to prevent the occurrence of the disease on the islands. We confirm and extend the findings on this inborn error of metabolism in the TCA cycle that must be carefully investigated by accurate metabolite analyses."	"Mitochondrial encephalomyopathy with elevated methylmalonic acid is caused by SUCLA2 mutations. We have identified 12 patients with autosomal recessive mitochondrial encephalomyopathy with elevated methylmalonic acid. The disorder has a high incidence of 1 in 1700 in the Faroe Islands due to a founder effect, and a carrier frequency of 1 in 33. The symptoms comprise hypotonia, muscle atrophy, hyperkinesia, severe hearing impairment and postnatal growth retardation. Neuroimaging showed demyelination and central and cortical atrophy, including atrophy of the basal ganglia, and some of the patients fulfilled the criteria for Leigh syndrome. Urine and plasma methylmalonic acid were elevated. Homozygosity mapping with the Affymetrix 10 K array revealed a homozygous region on chromosome 13q14 harbouring the SUCLA2 gene. Mutations in SUCLA2 were recently shown to cause a similar disorder in a small Israeli family. Mutation analysis identified a novel splice site mutation in SUCLA2, IVS4 + 1G --&gt; A, leading to skipping of exon 4. The SUCLA2 gene encodes the ATP-forming beta subunit of the Krebs cycle enzyme succinyl-CoA ligase. The hallmark of the condition, elevated methylmalonic acid, can be explained by an accumulation of the substrate of the enzyme, succinyl-CoA, which in turn leads to elevated methylmalonic acid, because the conversion of methylmalonyl-CoA to succinyl-CoA is inhibited."	"Depletion of mtDNA: syndromes and genes. Maintenance of mitochondrial DNA (mtDNA) requires the concerted activity of several nuclear-encoded factors that participate in its replication, being part of the mitochondrial replisome or ensuring the balanced supply of dNTPs to mitochondria. In the past decade, a growing number of syndromes associated with dysfunction due to tissue-specific depletion of mtDNA (MDS) have been reported. This article reviews the current knowledge of the genes responsible for these disorders, the impact of different mutations in the epidemiology of MDS and their role in the pathogenic mechanisms underlying the different clinical presentations."	"Clinical spectrum of mitochondrial DNA depletion due to mutations in the thymidine kinase 2 gene. Mitochondrial DNA depletion syndrome is an autosomal recessive disorder characterized by decreased mitochondrial DNA copy numbers in affected tissues. It has been linked to 4 genes involved in deoxyribonucleotide triphosphate metabolism: thymidine kinase 2 (TK2), deoxyguanosine kinase (DGUOK), polymerase gamma (POLG), and SUCLA2, the gene encoding the beta-subunit of the adenosine diphosphate-forming succinyl coenzyme A synthetase ligase. To highlight the variability in the clinical spectrum of TK2-related mitochondrial DNA depletion syndrome. Review of patients and the literature. Tertiary care university. Four patients with mitochondrial DNA depletion syndrome and mutations in the TK2 gene. Definition of clinical variability. Patient 1 had evidence of lower motoneuron disease and was initially diagnosed as having spinal muscular atrophy type 3. Patient 2, who is alive and ambulatory at age 9 years, presented at age 2 years with a slowly progressive mitochondrial myopathy. Patient 3 had a more severe myopathy, with onset in infancy and death at age 6 years of respiratory failure. Patient 4 had a rapidly progressive congenital myopathy with rigid spine syndrome and he died at age 19 months. The clinical spectrum of TK2 mutations is not limited to severe infantile myopathy with motor regression and early death but includes spinal muscular atrophy type 3-like presentation, rigid spine syndrome, and subacute myopathy without motor regression and with longer survival."	"Autosomal disorders of mitochondrial DNA maintenance. Mitochondrial DNA (mtDNA) is maternally inherited. After birth, secondary mtDNA defects can arise. MtDNA depletion is a reduction in the amount of mtDNA in particular tissues. Multiple deletions of mtDNA accumulate as somatic mutations in mainly postmitotic tissues. These disorders of mtDNA maintenance frequently show Mendelian inheritance. Positional cloning has identified several genes involved in the control of mtDNA stability. Recessive mutations in the genes ECGF1, dGK, TK2, SUCLA2 and POLG cause mtDNA depletion syndromes (MDS). Generally, MDS has infantile onset tissue specific features. Mutations in the genes ECGF1, ANT1, C10orf2 and POLG are associated with multiple mtDNA deletions. The nature of these mutations is dominant in ANT1, C10orf2 and POLG and recessive in ECGF1, C10orf2 and POLG. Mutations in these genes frequently cause progressive external ophthalmoplegia (PEO). However clinical heterogeneity results in different neurological syndromes with considerable overlap. The most common features are PEO, neuropathy, myopathy, ataxia, epilepsy and hepatopathy."	"Fatal neonatal-onset mitochondrial respiratory chain disease with T cell immunodeficiency. We present the clinical and laboratory features of a boy with a new syndrome of mitochondrial depletion syndrome and T cell immunodeficiency. The child suffered from severe recurrent infectious diseases, anemia, and thrombocytopenia. Clinically, he presented with severe psychomotor retardation, axial hypotonia, and a disturbed pain perception leading to debilitating biting of the thumb, lower lip, and tongue. Brain imaging showed hypoplasia of corpus callosum and an impaired myelinization of the temporo-occipital region with consecutive supratentorial hydrocephalus. Histologic examination of a skeletal muscle biopsy was normal. Biochemical investigation showed combined deficiency of respiratory chain complexes II+III and IV. MtDNA depletion was found by real-time PCR. No pathogenic mutations were identified in the TK2, SUCLA2, DGUOK, and ECGF1 genes. A heterozygous missense mutation was found in POLG1. The pathogenic relevance of this mutation is unclear. Interestingly, a lack of CD8(+) T lymphocytes as well as NK cells was also observed. The percentage of CD45RO-expressing cells was decreased in activated CD8(+) T lymphocytes. Activation of T lymphocytes via IL-2 was diminished. The occurrence of the immunologic deficiency in our patient with mtDNA depletion is a rare finding, implying that cells of the immune system might also be affected by mitochondrial disease."	"MPV17 encodes an inner mitochondrial membrane protein and is mutated in infantile hepatic mitochondrial DNA depletion. The mitochondrial (mt) DNA depletion syndromes (MDDS) are genetic disorders characterized by a severe, tissue-specific decrease of mtDNA copy number, leading to organ failure. There are two main clinical presentations: myopathic (OMIM 609560) and hepatocerebral (OMIM 251880). Known mutant genes, including TK2, SUCLA2, DGUOK and POLG, account for only a fraction of MDDS cases. We found a new locus for hepatocerebral MDDS on chromosome 2p21-23 and prioritized the genes on this locus using a new integrative genomics strategy. One of the top-scoring candidates was the human ortholog of the mouse kidney disease gene Mpv17. We found disease-segregating mutations in three families with hepatocerebral MDDS and demonstrated that, contrary to the alleged peroxisomal localization of the MPV17 gene product, MPV17 is a mitochondrial inner membrane protein, and its absence or malfunction causes oxidative phosphorylation (OXPHOS) failure and mtDNA depletion, not only in affected individuals but also in Mpv17-/- mice."	"Deficiency of the ADP-forming succinyl-CoA synthase activity is associated with encephalomyopathy and mitochondrial DNA depletion. The mitochondrial DNA (mtDNA) depletion syndrome is a quantitative defect of mtDNA resulting from dysfunction of one of several nuclear-encoded factors responsible for maintenance of mitochondrial deoxyribonucleoside triphosphate (dNTP) pools or replication of mtDNA. Markedly decreased succinyl-CoA synthetase activity due to a deleterious mutation in SUCLA2, the gene encoding the beta subunit of the ADP-forming succinyl-CoA synthetase ligase, was found in muscle mitochondria of patients with encephalomyopathy and mtDNA depletion. Succinyl-CoA synthetase is invariably in a complex with mitochondrial nucleotide diphosphate kinase; hence, we propose that a defect in the last step of mitochondrial dNTP salvage is a novel cause of the mtDNA depletion syndrome."	"Interaction between succinyl CoA synthetase and the heme-biosynthetic enzyme ALAS-E is disrupted in sideroblastic anemia. The first and the rate-limiting enzyme of heme biosynthesis is delta-aminolevulinate synthase (ALAS), which is localized in mitochondria. There are 2 tissue-specific isoforms of ALAS, erythroid-specific (ALAS-E) and nonspecific ALAS (ALAS-N). To identify possible mitochondrial factors that modulate ALAS-E function, we screened a human bone marrow cDNA library, using the mitochondrial form of human ALAS-E as a bait protein in the yeast 2-hybrid system. Our screening led to the isolation of the beta subunit of human ATP-specific succinyl CoA synthetase (SCS-betaA). Using transient expression and coimmunoprecipitation, we verified that mitochodrially expressed SCS-betaA associates specifically with ALAS-E and not with ALAS-N. Furthermore, the ALAS-E mutants R411C and M426V associated with SCS-betaA, but the D190V mutant did not. Because the D190V mutant was identified in a patient with pyridoxine-refractory X-linked sideroblastic anemia, our findings suggest that appropriate association of SCS-betaA and ALAS-E promotes efficient use of succinyl CoA by ALAS-E or helps translocate ALAS-E into mitochondria."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SURF1"	"Leigh syndrome"	"Novel p.P298L SURF1 mutation in thiamine deficient Leigh syndrome patients compromises cytochrome c oxidase activity. SURF1 is a nuclear gene and encodes for an important assembly factor for cytochrome c oxidase enzyme. A number of mutations in SURF1 gene render cytochrome c oxidase deficiency, a major causative factor for Leigh syndrome. We screened all the 9 exons and exon-intron boundaries of SURF1 gene in 165 Indian Leigh syndrome patients who were thiamine responsive too. Consequently, we identified several novel and reported nucleotide variations in this gene. The nucleotide changes were analysed by using different in-silico tools for predicting their pathogenicity. Based upon the predictions, we further validated the analyzed functional significance of p.N249D and p.P298L mutations in SURF1 protein using COS-7 cells. Though, both the mutations did not affect the localization of SURF1protein into the mitochondria. But, interestingly the novel mutation p.P298L was reported to significantly compromise the COX activity in these cells."	"Arabidopsis thaliana SURFEIT1-like genes link mitochondrial function to early plant development and hormonal growth responses. Mutations in SURFEIT1 (SURF1) genes affect cytochrome c oxidase (COX) levels in different prokaryotic and eukaryotic organisms. In this work, we report that Arabidopsis thaliana has two genes that potentially encode SURF1 proteins, as a result of a duplication that took place in Brassicaceae. Both genes encode mitochondrial proteins and mutation in AtSURF1a causes embryonic lethality. Mutation in AtSURF1b, instead, causes defects in hypocotyl elongation under growth-stimulating conditions, such as low light intensity, increased ambient temperature and incubation with glucose. Mutants in AtSURF1b show reduced expression of the auxin reporter DR5:GUS and increased levels of the gibberellin reporter GFP-RGA, suggesting that auxin and gibberellin homeostasis are affected. In agreement, growth defects caused by AtSURF1b mutation can be overcome by treatment with indole-3-acetic acid and gibberellin A3 , and also by increasing expression of the auxin biosynthesis gene YUC8 or the transcription factor PIF4, which shows lower abundance in AtSURF1b-deficient plants. Mutants in AtSURF1b display lower COX levels, higher alternative oxidase and superoxide levels, and increased expression of genes that respond to mitochondrial dysfunction. Decreased hypocotyl growth and DR5:GUS expression can be reversed by treatment with reduced glutathione, suggesting that redox changes, probably related to mitochondrial dysfunction, are responsible for the effect of AtSURF1b deficiency on hormone responses. The results indicate that changes in AtSURF1b affect mitochondrial function and the production of reactive oxygen species, which, in turn, impinges on a growth regulatory circuit that involves auxin, gibberellins and the transcription factor PIF4."	"Genetic heterogeneity in Leigh syndrome: Highlighting treatable and novel genetic causes. Leigh syndrome (LS), the most common childhood mitochondrial disorder, has characteristic clinical and neuroradiologic features. Mutations in more than 75 genes have been identified in both the mitochondrial and nuclear genome, implicating a high degree of genetic heterogeneity in LS. To profile these genetic signatures and understand the pathophysiology of LS, we recruited 64 patients from 62 families who were clinically diagnosed with LS at Seoul National University Children's Hospital. Mitochondrial genetic analysis followed by whole-exome sequencing was performed on 61 patients. Pathogenic variants in mitochondrial DNA were identified in 18 families and nuclear DNA mutations in 22. The following 17 genes analyzed in 40 families were found to have genetic complexity: MTATP6, MTND1, MTND3, MTND5, MTND6, MTTK, NDUFS1, NDUFV1, NDUFAF6, SURF1, SLC19A3, ECHS1, PNPT1, IARS2, NARS2, VPS13D, and NAXE. Two treatable cases had biotin-thiamine responsive basal ganglia disease, and another three were identified as having defects in the newly recognized genes (VPS13D or NAXE). Variants in the nuclear genes that encoded mitochondrial aminoacyl tRNA synthetases were present in 27.3% of cases. Our findings expand the genetic and clinical spectrum of LS, showing genetic heterogeneity and highlighting treatable cases and those with novel genetic causes."	"Mortality of Japanese patients with Leigh syndrome: Effects of age at onset and genetic diagnosis. Leigh syndrome is a major phenotype of mitochondrial diseases in children. With new therapeutic options being proposed, assessing the mortality and clinical condition of Leigh syndrome patients is crucial for evaluating therapeutics. As data are scarce in Japan, we analysed the mortality rate and clinical condition of Japanese Leigh syndrome patients that we diagnosed since 2007. Data from 166 Japanese patients diagnosed with Leigh syndrome from 2007 to 2017 were reviewed. Patients' present status, method of ventilation and feeding, and degree of disability as of April 2018 was analysed. Overall, 124 (74.7%) were living, 40 (24.1%) were deceased, and 2 (1.2%) were lost to follow-up. Median age of living patients was 8 years (1-39 years). Median length of disease course was 91 months for living patients and 23.5 months for deceased patients. Nearly 90% of deaths occurred by age 6. Mortality rate of patients with onset before 6 months of age was significantly higher than that of onset after 6 months. All patients with neonatal onset were either deceased or bedridden. MT-ATP6 deficiency caused by m.8993T&gt;G mutation and MT-ND5 deficiency induced a severe form of Leigh syndrome. Patients with NDUFAF6, ECHS1, and SURF1 deficiency had relatively mild symptoms and better survival. The impact of onset age on prognosis varied across the genetic diagnoses. The clinical condition of many patients was poor; however, few did not require mechanical ventilation or tube-feeding and were not physically dependent. Early disease onset and genetic diagnosis may have prognostic value."	"Dysregulation of the Mitochondrial Proteome Occurs in Mice Lacking Adiponectin Receptor 1. Decreased serum adiponectin levels in type 2 diabetes has been linked to the onset of mitochondrial dysfunction in diabetic complications by impairing AMPK-SIRT1-PGC-1α signaling via impaired adiponectin receptor 1 (AdipoR1) signaling. Here, we aimed to characterize the previously undefined role of disrupted AdipoR1 signaling on the mitochondrial protein composition of cardiac, renal, and hepatic tissues as three organs principally associated with diabetic complications. Comparative proteomics were performed in mitochondria isolated from the heart, kidneys and liver of Adipor1<sup>-/-</sup> mice. A total of 790, 1,573, and 1,833 proteins were identified in cardiac, renal and hepatic mitochondria, respectively. While 121, 98, and 78 proteins were differentially regulated in cardiac, renal, and hepatic tissue of Adipor1<sup>-/-</sup> mice, respectively; only 15 proteins were regulated in the same direction across all investigated tissues. Enrichment analysis of differentially expressed proteins revealed disproportionate representation of proteins involved in oxidative phosphorylation conserved across tissue types. Curated pathway analysis identified HNF4, NRF1, LONP, RICTOR, SURF1, insulin receptor, and PGC-1α as candidate upstream regulators. In high fat-fed non-transgenic mice with obesity and insulin resistance, AdipoR1 gene expression was markedly reduced in heart (-70%), kidney (-80%), and liver (-90%) (all P &lt; 0.05) as compared to low fat-fed mice. NRF1 was the only upstream regulator downregulated both in Adipor1<sup>-/-</sup> mice and in high fat-fed mice, suggesting common mechanisms of regulation. Thus, AdipoR1 signaling regulates mitochondrial protein composition across all investigated tissues in a functionally conserved, yet molecularly distinct, manner. The biological significance and potential implications of impaired AdipoR1 signaling are discussed."	"Uniparental isodisomy caused autosomal recessive diseases: NGS-based analysis allows the concurrent detection of homogenous variants and copy-neutral loss of heterozygosity. Uniparental disomy (UPD) leading to autosomal recessive (AR) diseases is rare. We found an unusual homozygous state in two nonconsanguineous families, and only one parent in each family was a heterozygote. Two patients with homozygosity for pathogenic variants were revealed by whole-exome sequencing (WES), further Sanger sequencing found that only one of the parents was a heterozygote. Initial genotype and copy number variations analysis from WES data of probands involving whole chromosomes 1 and 9 containing these two pathogenic variants were performed, genome-wide single-nucleotide polymorphism (SNP) array analysis was used to confirm these results. Whole-exome sequencing identified a homozygous c.3423_3424delTG mutation in AGL in patient 1 and a homozygous c.241-1G&gt;C mutation in SURF1 in patient 2. Further parental testing found that only the two patients' healthy fathers were heterozygous. WES-based copy number and genotype analysis found a copy-neutral loss of heterozygosity (LOH) of whole chromosome 1 in patient 1 and of whole chromosomes 9 and 10 in patient 2. Further genome-wide SNP array and family haplotype analyses confirmed whole paternal uniparental isodisomy (UPiD) 1 in patient 1 and paternal UPiD 9 and maternal UPiD 10 in patient 2. Therefore, UPiD caused AR monogenic glycogen storage disease type-III (GSDIII) in patient 1 and Leigh syndrome in patient 2 through non-Mendelian inheritance of two mutant copies of a gene from each patient's father. Our report highlights that a single NGS-based analysis could allow us to find homozygous sequence variants and copy-neutral LOH in such cases. Our report also describes the first case of GSDIII caused by UPiD 1 and Leigh syndrome caused by UPiD 9."	"Identification of Surf1 as an assembly factor of the cytochrome bc1-aa3 supercomplex of Actinobacteria. Respiration in aerobic Actinobacteria involves a cytochrome bc1-aa3 supercomplex with a diheme cytochrome c1, first isolated from Corynebacterium glutamicum. Synthesis of a functional cytochrome c oxidase requires incorporation of CuA, CuB, heme a, and heme a3. In contrast to eukaryotes and α-proteobacteria, this process is poorly understood in Actinobacteria. Here, we analyzed the role of a Surf1 homolog of C. glutamicum in the formation of a functional bc1-aa3 supercomplex. Deletion of the surf1 gene (cg2460) in C. glutamicum caused a growth defect and cytochrome spectra revealed reduced levels of cytochrome c and a and an increased level of cytochrome d. Membranes of the Δsurf1 strain had lost the ability to oxidize the artificial electron donor N,N,N',N'-tetramethyl-p-phenylenediamine, suggesting that Surf1 is essential for the formation of a functional cytochrome aa3 oxidase. In contrast to the wild type, a bc1-aa3 supercomplex could not be purified from solubilized membranes of the Δsurf1 mutant. A transcriptome comparison revealed that the genes of the SigC regulon including those for cytochrome bd oxidase were upregulated in the Δsurf1 strain as well as the copper deprivation-inducible gene ctiP. Complementation studies showed that the Surf1 homologs of Corynebacterium diphtheriae, Mycobacterium smegmatis and Mycobacterium tuberculosis could at least partially abolish the growth defect of the C. glutamicum Δsurf1 mutant, suggesting that Surf1 is a conserved assembly factor for actinobacterial cytochrome aa3 oxidase."	"Panel-Based Nuclear and Mitochondrial Next-Generation Sequencing Outcomes of an Ethnically Diverse Pediatric Patient Cohort with Mitochondrial Disease. Mitochondrial disease (MD) is a group of rare inherited disorders with clinical heterogeneous phenotypes. Recent advances in next-generation sequencing (NGS) allow for rapid genetic diagnostics in patients who experience MD, resulting in significant strides in determining its etiology. This, however, has not been the case in many patient populations. We report on a molecular diagnostic study using mitochondrial DNA and targeted nuclear DNA (nDNA) NGS of an extensive cohort of predominantly sub-Saharan African pediatric patients with clinical and biochemically defined MD. Patients in this novel cohort presented mostly with muscle involvement (73%). Of the original 212 patients, a muscle respiratory chain deficiency was identified in 127 cases. Genetic analyses were conducted for these 127 cases based on biochemical deficiencies, for both mitochondrial (n = 123) and nDNA using panel-based NGS (n = 86). As a pilot investigation, whole-exome sequencing was performed in a subset of African patients (n = 8). These analyses resulted in the identification of a previously reported pathogenic mitochondrial DNA variant and seven pathogenic or likely pathogenic nDNA variants (ETFDH, SURF1, COQ6, RYR1, STAC3, ALAS2, and TRIOBP), most of which were identified via whole-exome sequencing. This study contributes to knowledge of MD etiology in an understudied, ethnically diverse population; highlights inconsistencies in genotype-phenotype correlations; and proposes future directions for diagnostic approaches in such patient populations."	"Ras-ERK-ETS inhibition alleviates neuronal mitochondrial dysfunction by reprogramming mitochondrial retrograde signaling. Mitochondrial dysfunction activates the mitochondrial retrograde signaling pathway, resulting in large scale changes in gene expression. Mitochondrial retrograde signaling in neurons is poorly understood and whether retrograde signaling contributes to cellular dysfunction or is protective is unknown. We show that inhibition of Ras-ERK-ETS signaling partially reverses the retrograde transcriptional response to alleviate neuronal mitochondrial dysfunction. We have developed a novel genetic screen to identify genes that modify mitochondrial dysfunction in Drosophila. Knock-down of one of the genes identified in this screen, the Ras-ERK-ETS pathway transcription factor Aop, alleviates the damaging effects of mitochondrial dysfunction in the nervous system. Inhibition of Ras-ERK-ETS signaling also restores function in Drosophila models of human diseases associated with mitochondrial dysfunction. Importantly, Ras-ERK-ETS pathway inhibition partially reverses the mitochondrial retrograde transcriptional response. Therefore, mitochondrial retrograde signaling likely contributes to neuronal dysfunction through mis-regulation of gene expression."	"Genetic association of the cytochrome c oxidase-related genes with Alzheimer's disease in Han Chinese. Alzheimer's disease (AD) is the most common cause of dementia. Mitochondrial dysfunction has been widely reported in AD due to its important role in cellular metabolism and energy production. Complex IV (cytochrome c oxidase, COX) of mitochondrial electron transport chain, is particularly vulnerable in AD. Defects of COX in AD have been well documented, but there is little evidence to support the genetic association of the COX-related genes with AD. In this study, we investigated the genetic association between 17 nuclear-encoded COX-related genes and AD in 1572 Han Chinese. The whole exons of these genes were also screened in 107 unrelated AD patients with a high probability of hereditarily transmitted AD. Variants in COX6B1, NDUFA4, SURF1, and COX10 were identified to be associated with AD. An integrative analysis with data of eQTL, expression and pathology revealed that most of the COX-related genes were significantly downregulated in AD patients and mouse models, and the AD-associated variants in COX6B1, SURF1, and COX10 were linked to altered mRNA levels in brain tissues. Furthermore, mRNA levels of Ndufa4, Cox5a, Cox10, Cox6b2, Cox7a2, and Lrpprc were significantly correlated with Aβ plaque burden in hippocampus of AD mice. Convergent functional genomics analysis revealed strong supportive evidence for the roles of COX6B1, COX10, NDUFA4, and SURF1 in AD. As the result of our comprehensive analysis of the COX-related genes at the genetic, expression, and pathology levels, we have been able to provide a systematic view for understanding the relationships of the COX-related genes in the pathology of AD."	"SURF1 mutations in Chinese patients with Leigh syndrome: Novel mutations, mutation spectrum, and the functional consequences. SURF1 is an assembly factor of mitochondrial complex IV, and its mutations are the primary cause of Leigh syndrome in infants. To date, over 100 SURF1 mutations have been reported worldwide, but the spectrum of the SURF1 mutations in China remains unclear. Here, using next-generation sequencing targeting mitochondrial protein-coding sequences, we sequenced 178 patients suspected to have mitochondrial diseases. Fifteen SURF1 mutations were identified in 12 Leigh syndrome patients, of which three, c.465_466delAA, c.532A &gt; T, and c.826_827ins AGCATCTGCAGTACATCG, were newly described. The percentage of SURF1 frameshift mutations (6/28, 21.4%) we detected in Chinese population is higher than other studies (21/106, 19.8%) with different populations, however, the percentage of missense mutations is lower in this study than others (4/28, 14.3% VS. 25/106, 23.6%). Since complex IV can be detected in cells carrying missense mutations (3/8) but not in cells carrying null mutations (0/4) by using cell model-based complementation assay, our results indicate that SURF1 mutations may be associated with worse clinical outcome in Chinese patients than other populations. However, studies with larger sample size are needed to verify this conclusion. Additionally, we found that the frameshift mutations resulting in protein truncation closer to the C-terminus are not associated with better disease prognosis. Lastly, we found that determining the levels of complex IV assembly using cell models or lymphocyte analysis rather than invasive muscle and skin fibroblast biopsy, may help predict disease progression in Leigh syndrome patients."	"Mutations in SURF1 are important genetic causes of Leigh syndrome in Slovak patients. Leigh syndrome is a progressive early onset neurodegenerative disease typically presenting with psychomotor regression, signs of brainstem and/or basal ganglia disease, lactic acidosis, and characteristic magnetic resonance imaging findings. At molecular level, deficiency of respiratory complexes and/or pyruvate dehydrogenase complex is usually observed. Nuclear gene SURF1 encodes an assembly factor for cytochrome c-oxidase complex of the respiratory chain and autosomal recessive mutations in SURF1 are one of the most frequent causes of cytochrome c-oxidase-related Leigh syndrome cases. Here, we aimed to elucidate the genetic basis of Leigh syndrome in three Slovak families. Three probands presenting with Leigh syndrome were selected for DNA analysis. The first proband, presenting with atypical LS onset without abnormal basal ganglia magnetic resonance imaging findings, was analyzed with whole exome sequencing. In the two remaining probands, SURF1 was screened by Sanger sequencing. Four different heterozygous mutations were identified in SURF1: c.312_321delinsAT:p.(Pro104Profs*1), c.588+1G&gt;A, c.823_833+7del:p. (?) and c.845_846del:p.(Ser282Cysfs*9). All the mutations are predicted to have a loss-of-function effect. We identified disease-causing mutations in all three probands, which points to the important role of SURF1 gene in etiology of Leigh syndrome in Slovakia. Our data showed that patients with atypical Leigh syndrome phenotype without lesions in basal ganglia may benefit from the whole exome sequencing method. In the case of probands presenting the typical phenotype, Sanger sequencing of the SURF1 gene seems to be an effective method of DNA analysis."	"Lifelong reduction in complex IV induces tissue-specific metabolic effects but does not reduce lifespan or healthspan in mice. Loss of SURF1, a Complex IV assembly protein, was reported to increase lifespan in mice despite dramatically lower cytochrome oxidase (COX) activity. Consistent with this, our previous studies found advantageous changes in metabolism (reduced adiposity, increased insulin sensitivity, and mitochondrial biogenesis) in Surf1<sup>-/-</sup> mice. The lack of deleterious phenotypes in Surf1<sup>-/-</sup> mice is contrary to the hypothesis that mitochondrial dysfunction contributes to aging. We found only a modest (nonsignificant) extension of lifespan (7% median, 16% maximum) and no change in healthspan indices in Surf1<sup>-/-</sup> vs. Surf1<sup>+/+</sup> mice despite substantial decreases in COX activity (22%-87% across tissues). Dietary restriction (DR) increased median lifespan in both Surf1<sup>+/+</sup> and Surf1<sup>-/-</sup> mice (36% and 19%, respectively). We measured gene expression, metabolites, and targeted expression of key metabolic proteins in adipose tissue, liver, and brain in Surf1<sup>+/+</sup> and Surf1<sup>-/-</sup> mice. Gene expression was differentially regulated in a tissue-specific manner. Many proteins and metabolites are downregulated in Surf1<sup>-/-</sup> adipose tissue and reversed by DR, while in brain, most metabolites that changed were elevated in Surf1<sup>-/-</sup> mice. Finally, mitochondrial unfolded protein response (UPR<sup>mt</sup> )-associated proteins were not uniformly altered by age or genotype, suggesting the UPR<sup>mt</sup> is not a key player in aging or in response to reduced COX activity. While the changes in gene expression and metabolism may represent compensatory responses to mitochondrial stress, the important outcome of this study is that lifespan and healthspan are not compromised in Surf1<sup>-/-</sup> mice, suggesting that not all mitochondrial deficiencies are a critical determinant of lifespan."	"SURF1 knockout cloned pigs: Early onset of a severe lethal phenotype. Leigh syndrome (LS) associated with cytochrome c oxidase (COX) deficiency is an early onset, fatal mitochondrial encephalopathy, leading to multiple neurological failure and eventually death, usually in the first decade of life. Mutations in SURF1, a nuclear gene encoding a mitochondrial protein involved in COX assembly, are among the most common causes of LS. LS<sup>SURF1</sup> patients display severe, isolated COX deficiency in all tissues, including cultured fibroblasts and skeletal muscle. Recombinant, constitutive SURF1<sup>-/-</sup> mice show diffuse COX deficiency, but fail to recapitulate the severity of the human clinical phenotype. Pigs are an attractive alternative model for human diseases, because of their size, as well as metabolic, physiological and genetic similarity to humans. Here, we determined the complete sequence of the swine SURF1 gene, disrupted it in pig primary fibroblast cell lines using both TALENs and CRISPR/Cas9 genome editing systems, before finally generating SURF1<sup>-/-</sup> and SURF1<sup>-/+</sup> pigs by Somatic Cell Nuclear Transfer (SCNT). SURF1<sup>-/-</sup> pigs were characterized by failure to thrive, muscle weakness and highly reduced life span with elevated perinatal mortality, compared to heterozygous SURF1<sup>-/+</sup> and wild type littermates. Surprisingly, no obvious COX deficiency was detected in SURF1<sup>-/-</sup> tissues, although histochemical analysis revealed the presence of COX deficiency in jejunum villi and total mRNA sequencing (RNAseq) showed that several COX subunit-encoding genes were significantly down-regulated in SURF1<sup>-/-</sup> skeletal muscles. In addition, neuropathological findings, indicated a delay in central nervous system development of newborn SURF1<sup>-/-</sup> piglets. Our results suggest a broader role of sSURF1 in mitochondrial bioenergetics."	"Cytochrome C oxydase deficiency: SURF1 gene investigation in patients with Leigh syndrome. Leigh syndrome (LS) is a rare progressive neurodegenerative disorder occurring in infancy. The most common clinical signs reported in LS are growth retardation, optic atrophy, ataxia, psychomotor retardation, dystonia, hypotonia, seizures and respiratory disorders. The paper reported a manifestation of 3 Tunisian patients presented with LS syndrome. The aim of this study is the MT[HYPHEN]ATP6 and SURF1 gene screening in Tunisian patients affected with classical Leigh syndrome and the computational investigation of the effect of detected mutations on its structure and functions by clinical and bioinformatics analyses. After clinical investigations, three Tunisian patients were tested for mutations in both MT-ATP6 and SURF1 genes by direct sequencing followed by in silico analyses to predict the effects of sequence variation. The result of mutational analysis revealed the absence of mitochondrial mutations in MT-ATP6 gene and the presence of a known homozygous splice site mutation c.516-517delAG in sibling patients added to the presence of a novel double het mutations in LS patient (c.752-18 A &gt; C/c. c.751 + 16G &gt; A). In silico analyses of theses intronic variations showed that it could alters splicing processes as well as SURF1 protein translation. Leigh syndrome (LS) is a rare progressive neurodegenerative disorder occurring in infancy. The most common clinical signs reported in LS are growth retardation, optic atrophy, ataxia, psychomotor retardation, dystonia, hypotonia, seizures and respiratory disorders. The paper reported a manifestation of 3 Tunisian patients presented with LS syndrome. The aim of this study is MT-ATP6 and SURF1 genes screening in Tunisian patients affected with classical Leigh syndrome and the computational investigation of the effect of detected mutations on its structure and functions. After clinical investigations, three Tunisian patients were tested for mutations in both MT-ATP6 and SURF1 genes by direct sequencing followed by in silico analysis to predict the effects of sequence variation. The result of mutational analysis revealed the absence of mitochondrial mutations in MT-ATP6 gene and the presence of a known homozygous splice site mutation c.516-517delAG in sibling patients added to the presence of a novel double het mutations in LS patient (c.752-18 A&gt;C/ c.751+16G&gt;A). In silico analysis of theses intronic vaiations showed that it could alters splicing processes as well as SURF1 protein translation."	"The clinical and genetic characteristics in children with mitochondrial disease in China. Mitochondrial disease was a clinically and genetically heterogeneous group of diseases, thus the diagnosis was very difficult to clinicians. Our objective was to analyze clinical and genetic characteristics of children with mitochondrial disease in China. We tested 141 candidate patients who have been suspected of mitochondrial disorders by using targeted next-generation sequencing (NGS), and summarized the clinical and genetic data of gene confirmed cases from Neurology Department, Beijing Children's Hospital, Capital Medical University from October 2012 to January 2015. In our study, 40 cases of gene confirmed mitochondrial disease including eight kinds of mitochondrial disease, among which Leigh syndrome was identified to be the most common type, followed by mitochondrial encephalomyopathy, lactic acidosis, and stroke-like episodes (MELAS). The age-of-onset varies among mitochondrial disease, but early onset was common. All of 40 cases were gene confirmed, among which 25 cases (62.5%) with mitochondrial DNA (mtDNA) mutation, and 15 cases (37.5%) with nuclear DNA (nDNA) mutation. M.3243A&gt;G (n=7) accounts for a large proportion of mtDNA mutation. The nDNA mutations include SURF1 (n=7), PDHA1 (n=2), and NDUFV1, NDUFAF6, SUCLA2, SUCLG1, RRM2B, and C12orf65, respectively."	"Sco2 deficient mice develop increased adiposity and insulin resistance. Cytochrome c oxidase (COX) is an essential transmembrane protein complex (Complex IV) in the mitochondrial respiratory electron chain. Mutations in genes responsible for the assembly of COX are associated with Leigh syndrome, cardiomyopathy, spinal muscular atrophy and other fatal metabolic disorders in humans. Previous studies have shown that mice lacking the COX assembly protein Surf1 (Surf1<sup>-/-</sup> mice) paradoxically show a number of beneficial metabolic phenotypes including increased insulin sensitivity, upregulation of mitochondrial biogenesis, induction of stress response pathways and increased lifespan. To determine whether these effects are specific to the Surf1 mutation or a more general effect of reduced COX activity, we asked whether a different mutation causing reduced COX activity would have similar molecular and physiologic changes. Sco2 knock-in/knock-out (KI/KO) mice in which one allele of the Sco2 gene that encodes a copper chaperone required for COX activity is deleted and the second allele is mutated, have previously been shown to be viable despite a 30-60% reduction in COX activity. In contrast to the Surf1<sup>-/-</sup> mice, we show that Sco2 KI/KO mice have increased fat mass, associated with reduced β-oxidation and increased adipogenesis markers, reduced insulin receptor beta (IR-β levels in adipose tissue, reduced muscle glucose transporter 4 (Glut4) levels and a impaired response to the insulin tolerance test consistent with insulin resistance. COX activity and protein are reduced approximately 50% in adipose tissue from the Sco2 KI/KO mice. Consistent with the increase in adipose tissue mass, the Sco2 KI/KO mice also show increased hepatosteatosis, elevated serum and liver triglyceride and increased serum cholesterol levels compared to wild-type controls. In contrast to the Surf1<sup>-/-</sup> mice, which show increased mitochondrial number, upregulation of the mitochondrial unfolded protein response (UPR<sup>MT</sup>) pathway and no significant change in mitochondrial respiration in several tissues, Sco2 KI/KO mice do not upregulate the UPR<sup>MT</sup>, and tissue oxygen consumption and levels of several proteins involved in mitochondrial function are reduced in adipose tissue compared to wild type mice. Thus, the metabolic effects of the Sco2 and Surf1<sup>-/-</sup> mutations are opposite, despite comparable changes in COX activity, illuminating the complex impact of mitochondrial dysfunction on physiology and pointing to an important role for complex IV in regulating metabolism."	"[Clinical and genetic characteristics of children with Leigh syndrome]. Objective: To investigate the clinically and genetic characteristics of children with Leigh syndrome. Method: Patients with clinically diagnosed Leigh syndrome(LS)in the department of Neurology, Beijing Children's Hospital from January 2013 to February 2016 underwent the mitochondrial DNA (mtDNA) and nuclear DNA (nDNA) detecting with next generation sequencing (NGS) technology. The clinical data of gene confirmed cases were retrospectively collected and analyzed. The differences in the onset age, clinical manifestations, lactic acid level and MRI results between the mtDNA variation and nDNA variation were compared and analyzed.t test, Chi-square test and Fisher's exact test were used for statistical analysis. Result: Thirty-five cases were diagnosed by gene detection, including 20 males and 15 females. The median onset age was 1 year (ranging from the neonatal period to 4.4 years old). The age of onset within 2 years accounted for 74%(26 cases). The onset age of initial symptoms, including developmental delay, developmental regression, and seizures, were 6 (4, 12) months, 12 (8, 14) months, and 6 (1, 23) months respectively. The onset age of ptosis, extrapyramidal symptoms and ataxia were 26 (18, 44) months, 28 (23, 40) months and 28 (19, 35) months, respectively. There were significant differences in the onset age between the three groups (H=21.919, P=0.01). Within the 35 cases, 29 were manifested with developmental delay (83%), 26 with dystonia (74%), 18 with growth retardation, 15 with myasthenia, 13 with developmental regression, 11 with dysphagia, 10 with feeding difficulties, 4 with skeletal dysplasia, and 2 with digestive tract symptoms; nystagmus and respiratory abnormalities were observed in 9 cases respectively; extrapyramidal symptoms, peripheral nerve injury, ptosis, seizures were observed in 8 cases respectively; and ataxia, ophthalmoplegia and hypertrichiasis were found in 5 cases respectively.The blood lactic acid was measured in 32 LS patients, within which 23 cases (72%) had increased results; 8 out of 11 cases who underwent were cerebrospinal fluid lactic acid test had increased results. The results of neuroimaging revealed that all the patients were involved in the brainstem and (or) basal ganglia, of whom 27 (77%) had brainstem involvement, 24 (69%) had basal ganglia involvement. Thirteen out of 14 patients who had medulla oblongata involvement had nDNA variation; while 7 out of 8 patients with cerebellar involvement had nDNA variation. Genetic etiology was confirmed in all patients, among whom there were 17 cases (49%) with mtDNA mutation, including 8993T&gt;C/G (n=5), 14487T&gt;C (n=4), 13513G&gt;A (n=2), 9176T&gt;C, 10158T&gt;C, 3697G&gt;A, 10191T&gt;C, 14459A&gt;G and 11777C&gt;A (n=1) respectively. Remaining 18 cases(51%) had nDNA mutation, including SURF1 gene(n=10), PDHA1 gene(n=3) and one case each of NDUFV1, NDUFAF6, NDUFAF5, NDUFS1 and COQ7 genes. In this study, 27 types of mutations were founded, 15 of which had not been previously reported. Respiratory chain gene mutations have been found in 31 cases(89%); 3 cases had PDHc gene mutations, and 1 case had other mutation. Conclusion: LS usually occurs in infants. The most common primary symptoms are age-dependent abnormal movements, ocular symptoms, and seizures. Respiratory chain defects is the most common causes of LS.SURF1 is the most common variation, followed by 8993T&gt;C/G, 14487 T&gt;C and 13513G&gt;A mutation. 目的:了解儿童Leigh综合征(LS)临床和遗传学特征。 方法:对2013至2016年在北京儿童医院神经内科临床诊断LS的患儿,应用靶向基因捕获二代测序(NGS)技术对线粒体基因(mtDNA)组和LS相关的核基因(nDNA)进行测序,对基因确诊病例的临床资料进行回顾性总结。采用t检验、方差分析以及Fisher确切概率检验,对mtDNA和nDNA变异两组发病年龄、临床表现、乳酸和头颅磁共振成像(MRI)进行比较。 结果:经基因确诊LS 35例,其中男20例、女15例。起病年龄为新生儿~4.4岁,中位起病年龄1岁。2岁之内发病26例(74%)。首发症状包括发育落后、发育倒退和抽搐发作,其发生年龄分别为6(4,12),12(8,14)和6(1,23)月龄;眼睑下垂、椎体外系症状和共济失调发病年龄分别为26(18,44),28(23,40)和28(19,35)月龄。各首发症状发病年龄差异有统计学意义(H=21.919,P=0.01)。35例中临床表现发育落后29例(83%),肌张力异常26例(74%),生长落后18例,肌无力15例,发育倒退13例,吞咽困难11例,喂养困难10例,眼球震颤及呼吸异常各9例,锥体外系表现、周围神经损害、眼睑下垂、抽搐各8例,共济失调、眼外肌麻痹和多毛各5例,骨骼发育异常4例,消化道症状2例。32例LS患儿行血乳酸测定,23例(72%)升高,11例行脑脊液乳酸测定,8例升高。头颅磁共振成像(MRI)均累及脑干和(或)基底节区,其中27例(77%)脑干受累,24例(69%)基底节区受累,14例累及延髓,13例为nDNA变异;8例累及小脑,7例为nDNA变异。35例基因变异中mtDNA变异17例(49%),分别为8993 T&gt;C/G 5例、14487T&gt;C 4例、13513 G&gt;A 2例,9176 T&gt;C、10158 T&gt;C、3697 G&gt;A、10191T&gt;C、14459A&gt;G,11777C&gt;A各1例;nDNA变异18例(51%),其中SURF1基因10例、PDHA1基因3例、NDUFV1、NDUFAF6、NDUFAF5、NDUFS1和COQ7基因各1例。共发现27种变异类型,15种为新发。涉及呼吸链酶复合物基因变异31例(89%),丙酮酸脱氢酶复合物(PDHc)变异3例,其他1例。 结论: LS为婴幼儿好发,首发症状主要表现为运动异常、眼部症状和癫痫发作,具有年龄依赖性;呼吸链酶复合物基因变异是LS最常见原因,其中以SURF1最多,其次为8993 T&gt;C/G、14487 T&gt;C与13513 G&gt;A。."	"A CMC1-knockout reveals translation-independent control of human mitochondrial complex IV biogenesis. Defects in mitochondrial respiratory chain complex IV (CIV) frequently cause encephalocardiomyopathies. Human CIV assembly involves 14 subunits of dual genetic origin and multiple nucleus-encoded ancillary factors. Biogenesis of the mitochondrion-encoded copper/heme-containing COX1 subunit initiates the CIV assembly process. Here, we show that the intermembrane space twin CX9C protein CMC1 forms an early CIV assembly intermediate with COX1 and two assembly factors, the cardiomyopathy proteins COA3 and COX14. A TALEN-mediated CMC1 knockout HEK293T cell line displayed normal COX1 synthesis but decreased CIV activity owing to the instability of newly synthetized COX1. We demonstrate that CMC1 stabilizes a COX1-COA3-COX14 complex before the incorporation of COX4 and COX5a subunits. Additionally, we show that CMC1 acts independently of CIV assembly factors relevant to COX1 metallation (COX10, COX11, and SURF1) or late stability (MITRAC7). Furthermore, whereas human COX14 and COA3 have been proposed to affect COX1 mRNA translation, our data indicate that CMC1 regulates turnover of newly synthesized COX1 prior to and during COX1 maturation, without affecting the rate of COX1 synthesis."	"Mitochondrial oxidative phosphorylation disorders in children: Phenotypic, genotypic and biochemical correlations in 85 patients from South India. Mitochondrial oxidative phosphorylation (OXPHOS) disorders account for a variety of neuromuscular disorders in children. In this study mitochondrial respiratory chain enzymes were assayed in muscle tissue in a large cohort of children with varied neuromuscular presentations from June 2011 to December 2013. The biochemical enzyme deficiencies were correlated with the phenotypes, magnetic resonance imaging, histopathology and genetic findings to reach a final diagnosis. There were 85 children (mean age: 6.9±4.7years, M:F:2:1) with respiratory chain enzyme deficiency which included: isolated complex I (n=50, 60%), multiple complexes (n=24, 27%), complex IV (n=8, 9%) and complex III deficiencies (n=3, 4%). The most common neurological findings were ataxia (59%), hypotonia (59%) and involuntary movements (49%). A known mitochondrial syndrome was diagnosed in 27 (29%) and non-syndromic presentations in 57 (71%). Genetic analysis included complete sequencing of mitochondrial genome, SURF1, POLG1&amp;2. It revealed variations in mitochondrial DNA (n=8), SURF1 (n=5), and POLG1 (n=3). This study, the first of its kind from India, highlights the wide range of clinical and imaging phenotypes and genetic heterogeneity in children with mitochondrial oxidative phosphorylation disorders."	"Identification of a novel deletion in SURF1 gene: Heterogeneity in Leigh syndrome with COX deficiency. Leigh syndrome (LS) is a rare, progressive neurodegenerative mitochondrial disorder of infancy. It is a genetically heterogeneous disease. The mutations in SURF1 gene are the most frequently known cause. Here two cases of LS likely caused by SURF1 gene variants are reported: a 39-year-old male patient with a novel homozygous deletion (c.-11_13del), and a case of a 6-year-old boy with the same deletion and a nonsense mutation (c.868dupT), both in heterozygosity. Blue native PAGE showed absence of assembled complex IV. This is the first report of a variant that may abolish the SURF1 gene initiation codon in two LS patients."	"Neurophysiological profile of peripheral neuropathy associated with childhood mitochondrial disease. Peripheral nerve involvement is common in mitochondrial disease but often unrecognised due to the prominent central nervous system features. Identification of the underlying neuropathy may assist syndrome classification, targeted genetic testing and rehabilitative interventions. Clinical data and the results of nerve conduction studies were obtained retrospectively from the records of four tertiary children's hospital metabolic disease, neuromuscular or neurophysiology services. Nerve conductions studies were also performed prospectively on children attending a tertiary metabolic disease service. Results were classified and analysed according to the underlying genetic cause. Nerve conduction studies from 27 children with mitochondrial disease were included in the study (mitochondrial DNA (mtDNA) - 7, POLG - 7, SURF1 - 10, PDHc deficiency - 3). Four children with mtDNA mutations had a normal study while three had mild abnormalities in the form of an axonal sensorimotor neuropathy when not acutely unwell. One child with MELAS had a severe acute axonal motor neuropathy during an acute stroke-like episode that resolved over 12months. Five children with POLG mutations and disease onset beyond infancy had a sensory ataxic neuropathy with an onset in the second decade of life, while the two infants with POLG mutations had a demyelinating neuropathy. Seven of the 10 children with SURF1 mutations had a demyelinating neuropathy. All three children with PDHc deficiency had an axonal sensorimotor neuropathy. Unlike CMT, the neuropathy associated with mitochondrial disease was not length-dependent. This is the largest study to date of peripheral neuropathy in genetically- classified childhood mitochondrial disease. Characterising the underlying neuropathy may assist with the diagnosis of the mitochondrial syndrome and should be an integral part of the assessment of children with suspected mitochondrial disease."	"Data on cytochrome c oxidase assembly in mice and human fibroblasts or tissues induced by SURF1 defect. This paper describes data related to a research article entitled &quot;Tissue- and species-specific differences in cytochrome c oxidase assembly induced by SURF1 defects&quot; [1]. This paper includes data of the quantitative analysis of individual forms of respiratory chain complexes I, III and IV present in SURF1 knockout (SURF1 (-/-) ) and control (SURF1 (+/+) ) mouse fibroblasts and tissues and in fibroblasts of human control and patients with SURF1 gene mutation. Also it includes data demonstrating response of complex IV, cytochrome c oxidase (COX), to reversible inhibition of mitochondrial translation in SURF1 (-/-) mouse and SURF1 patient fibroblast cell lines. "	"Ablation of the mitochondrial complex IV assembly protein Surf1 leads to increased expression of the UPR(MT) and increased resistance to oxidative stress in primary cultures of fibroblasts. Mice deficient in the electron transport chain (ETC) complex IV assembly protein SURF1 have reduced assembly and activity of cytochrome c oxidase that is associated with an upregulation of components of the mitochondrial unfolded protein response (UPR(MT)) and increased mitochondrial number. We hypothesized that the upregulation of proteins associated with the UPR(MT) in response to reduced cytochrome c oxidase activity in Surf1(-/-) mice might contribute to increased stress resistance. To test this hypothesis we asked whether primary cultures of fibroblasts from Surf1(-/-) mice exhibit enhanced resistance to stressors compared to wild-type fibroblasts. Here we show that primary dermal fibroblasts isolated from Surf1(-/-) mice have increased expression of UPR(MT) components ClpP and Hsp60, and increased expression of Lon protease. Fibroblasts from Surf1(-/-) mice are significantly more resistant to cell death caused by oxidative stress induced by paraquat or tert-Butyl hydroperoxide compared to cells from wild-type mice. In contrast, Surf1(-/-) fibroblasts show no difference in sensitivity to hydrogen peroxide stress. The enhanced cell survival in response to paraquat or tert-Butyl hydroperoxide in Surf1(-/-) fibroblasts compared to wild-type fibroblasts is associated with induced expression of Lon, ClpP, and Hsp60, increased maximal respiration, and increased reserve capacity as measured using the Seahorse Extracellular Flux Analyzer. Overall these data support a protective role for the activation of the UPR(MT) in cell survival."	"&quot;Mitochondrial neuropathies&quot;: A survey from the large cohort of the Italian Network. Involvement of the peripheral nervous system in mitochondrial disorders has been previously reported. However, the prevalence of peripheral neuropathy in mitochondrial disorders is still unclear. Based on the large database of the &quot;Nation-wide Italian Collaborative Network of Mitochondrial Diseases&quot;, we reviewed the clinical data of 1200 patients, with special regard to peripheral neuropathy (mean age at onset 24.3 ± 20.1 years; age at last evaluation 39.8 ± 22.3 years; females 52.7%; childhood onset [before age 16 years] 43.1%). Peripheral neuropathy was present in 143/1156 patients (12.4%), being one of the ten most common signs and symptoms. POLG mutations cause a potentially painful, axonal/mixed, mainly sensory polyneuropathy; TYMP mutations lead to a demyelinating sensory-motor polyneuropathy; SURF1 mutations are associated with a demyelinating/mixed sensory-motor polyneuropathy. The only mtDNA mutation consistently associated with peripheral neuropathy (although less severely than in the above-considered nuclear genes) was the m.8993T &gt; G (or the rarer T &gt; C) changes, which lead to an axonal, mainly sensory polyneuropathy. In conclusion, peripheral neuropathy is one of the most common features of a mitochondrial disorder, and may negatively impact on the quality of life of these patients. Furthermore, the presence or absence of peripheral neuropathy, as well as its specific forms and the association with neuropathic pain (indicative of a POLG-associated disease) can guide the molecular analysis. "	"Tissue- and species-specific differences in cytochrome c oxidase assembly induced by SURF1 defects. Mitochondrial protein SURF1 is a specific assembly factor of cytochrome c oxidase (COX), but its function is poorly understood. SURF1 gene mutations cause a severe COX deficiency manifesting as the Leigh syndrome in humans, whereas in mice SURF1(-/-) knockout leads only to a mild COX defect. We used SURF1(-/-) mouse model for detailed analysis of disturbed COX assembly and COX ability to incorporate into respiratory supercomplexes (SCs) in different tissues and fibroblasts. Furthermore, we compared fibroblasts from SURF1(-/-) mouse and SURF1 patients to reveal interspecies differences in kinetics of COX biogenesis using 2D electrophoresis, immunodetection, arrest of mitochondrial proteosynthesis and pulse-chase metabolic labeling. The crucial differences observed are an accumulation of abundant COX1 assembly intermediates, low content of COX monomer and preferential recruitment of COX into I-III2-IVn SCs in SURF1 patient fibroblasts, whereas SURF1(-/-) mouse fibroblasts were characterized by low content of COX1 assembly intermediates and milder decrease in COX monomer, which appeared more stable. This pattern was even less pronounced in SURF1(-/-) mouse liver and brain. Both the control and SURF1(-/-) mice revealed only negligible formation of the I-III2-IVn SCs and marked tissue differences in the contents of COX dimer and III2-IV SCs, also less noticeable in liver and brain than in heart and muscle. Our studies support the view that COX assembly is much more dependent on SURF1 in humans than in mice. We also demonstrate markedly lower ability of mouse COX to form I-III2-IVn supercomplexes, pointing to tissue-specific and species-specific differences in COX biogenesis."	"Peripheral neuropathy in genetically characterized patients with mitochondrial disorders: A study from south India. There are relatively few studies, which focus on peripheral neuropathy in large cohorts of genetically characterized patients with mitochondrial disorders. This study sought to analyze the pattern of peripheral neuropathy in a cohort of patients with mitochondrial disorders. The study subjects were derived from a cohort of 52 patients with a genetic diagnosis of mitochondrial disorders seen over a period of 8 years (2006-2013). All patients underwent nerve conduction studies and those patients with abnormalities suggestive of peripheral neuropathy were included in the study. Their phenotypic features, genotype, pattern of peripheral neuropathy and nerve conduction abnormalities were analyzed retrospectively. The study cohort included 18 patients (age range: 18 months-50 years, M:F- 1.2:1).The genotype included mitochondrial DNA point mutations (n=11), SURF1 mutations (n=4) and POLG1(n=3). Axonal neuropathy was noted in 12 patients (sensori-motor:n=4; sensory:n=4; motor:n=4) and demyelinating neuropathy in 6. Phenotype-genotype correlations revealed predominant axonal neuropathy in mtDNA point mutations and demyelinating neuropathy in SURF1. Patients with POLG related disorders had both sensory ataxic neuropathy and axonal neuropathy. A careful analysis of the family history, clinical presentation, biochemical, histochemical and structural analysis may help to bring out the mitochondrial etiology in patients with peripheral neuropathy and may facilitate targeted gene testing. Presence of demyelinating neuropathy in Leigh's syndrome may suggest underlying SURF1 mutations. Sensory ataxic neuropathy with other mitochondrial signatures should raise the possibility of POLG related disorder."	"[Diagnosis of mitochondrial disorders in children with next generation sequencing]. To explore the application value of next generation sequencing (NGS) in the diagnosis of mitochondrial disorders. According to mitochondrial disease criteria, genomic DNA was extracted using standard procedure from peripheral venous blood of patients with suspected mitochondrial disease collected from neurological department of Beijing Children's Hospital Affiliated to Capital Medical University between October 2012 and February 2014. Targeted NGS to capture and sequence the entire mtDNA and exons of the 1 000 nuclear genes related to mitochondrial structure and function. Clinical data were collected from patients diagnosed at a molecular level, then clinical features and the relationship between genotype and phenotype were analyzed. Mutation was detected in 21 of 70 patients with suspected mitochondrial disease, in whom 10 harbored mtDNA mutation, while 11 nuclear DNA (nDNA) mutation. In 21 patients, 1 was diagnosed congenital myasthenic syndrome with episodic apnea due to CHAT gene p.I187T homozygous mutation, and 20 were diagnosed mitochondrial disease, in which 10 were Leigh syndrome, 4 were mitochondrial encephalomyopathy with lactic acidosis and stroke like episodes syndrome, 3 were Leber hereditary optic neuropathy (LHON) and LHON plus, 2 were mitochondrial DNA depletion syndrome and 1 was unknown. All the mtDNA mutations were point mutations, which contained A3243G, G3460A, G11778A, T14484C, T14502C and T14487C. Ten mitochondrial disease patients harbored homozygous or compound heterozygous mutations in 5 genes previously shown to cause disease: SURF1, PDHA1, NDUFV1, SUCLA2 and SUCLG1, which had 14 mutations, and 7 of the 14 mutations have not been reported. NGS has a certain application value in the diagnosis of mitochondrial diseases, especially in Leigh syndrome atypical mitochondrial syndrome and rare mitochondrial disorders."	"Loss of the smallest subunit of cytochrome c oxidase, COX8A, causes Leigh-like syndrome and epilepsy. Isolated cytochrome c oxidase (complex IV) deficiency is one of the most frequent respiratory chain defects in humans and is usually caused by mutations in proteins required for assembly of the complex. Mutations in nuclear-encoded structural subunits are very rare. In a patient with Leigh-like syndrome presenting with leukodystrophy and severe epilepsy, we identified a homozygous splice site mutation in COX8A, which codes for the ubiquitously expressed isoform of subunit VIII, the smallest nuclear-encoded subunit of complex IV. The mutation, affecting the last nucleotide of intron 1, leads to aberrant splicing, a frame-shift in the highly conserved exon 2, and decreased amount of the COX8A transcript. The loss of the wild-type COX8A protein severely impairs the stability of the entire cytochrome c oxidase enzyme complex and manifests in isolated complex IV deficiency in skeletal muscle and fibroblasts, similar to the frequent c.845_846delCT mutation in the assembly factor SURF1 gene. Stability and activity of complex IV could be rescued in the patient's fibroblasts by lentiviral expression of wild-type COX8A. Our findings demonstrate that COX8A is indispensable for function of human complex IV and its mutation causes human disease. "	"Noninvasive diagnostics of mitochondrial disorders in isolated lymphocytes with high resolution respirometry. Mitochondrial diseases belong to the most severe inherited metabolic disorders affecting pediatric population. Despite detailed knowledge of mtDNA mutations and progress in identification of affected nuclear genes, diagnostics of a substantial part of mitochondrial diseases relies on clinical symptoms and biochemical data from muscle biopsies and cultured fibroblasts. To investigate manifestation of oxidative phosphorylation defects in isolated lymphocytes, digitonin-permeabilized cells from 48 children were analyzed by high resolution respirometry, cytofluorometric detection of mitochondrial membrane potential and immunodetection of respiratory chain proteins with SDS and Blue Native electrophoreses. Evaluation of individual respiratory complex activities, ATP synthesis, kinetic parameters of mitochondrial respiratory chain and the content and subunit composition of respiratory chain complexes enabled detection of inborn defects of respiratory complexes I, IV and V within 2 days. Low respiration with NADH-dependent substrates and increased respiration with glycerol-3-phosphate revealed complex I defects; changes in p 50 for oxygen and elevated uncoupling control ratio pointed to complex IV deficiency due to SURF1 or SCO2 mutation; high oligomycin sensitivity of state 3-ADP respiration, upregulated mitochondrial membrane potential and low content of complex V were found in lymphocytes with ATP synthase deficiency due to TMEM70 mutations. Based on our results, we propose the best biochemical parameters predictive for defects of respiratory complexes I, IV and V manifesting in peripheral blood lymphocytes. The noninvasiveness, reliability and speed of an approach utilizing novel biochemical criteria demonstrate the high potential of isolated lymphocytes for diagnostics of oxidative phosphorylation disorders in pediatric patients."	"Exome Sequencing and Linkage Analysis Identified Novel Candidate Genes in Recessive Intellectual Disability Associated with Ataxia. Intellectual disability (ID) is a neuro-developmental disorder which causes considerable socio-economic problems. Some ID individuals are also affected by ataxia, and the condition includes different mutations affecting several genes. We used whole exome sequencing (WES) in combination with homozygosity mapping (HM) to identify the genetic defects in five consanguineous families among our cohort study, with two affected children with ID and ataxia as major clinical symptoms. We identified three novel candidate genes, RIPPLY1, MRPL10, SNX14, and a new mutation in known gene SURF1. All are autosomal genes, except RIPPLY1, which is located on the X chromosome. Two are housekeeping genes, implicated in transcription and translation regulation and intracellular trafficking, and two encode mitochondrial proteins. The pathogenesis of these variants was evaluated by mutation classification, bioinformatic methods, review of medical and biological relevance, co-segregation studies in the particular family, and a normal population study. Linkage analysis and exome sequencing of a small number of affected family members is a powerful new technique which can be used to decrease the number of candidate genes in heterogenic disorders such as ID, and may even identify the responsible gene(s)."	"Combined activation of the energy and cellular-defense pathways may explain the potent anti-senescence activity of methylene blue. Methylene blue (MB) delays cellular senescence, induces complex-IV, and activates Keap1/Nrf2; however, the molecular link of these effects to MB is unclear. Since MB is redox-active, we investigated its effect on the NAD/NADH ratio in IMR90 cells. The transient increase in NAD/NADH observed in MB-treated cells triggered an investigation of the energy regulator AMPK. MB induced AMPK phosphorylation in a transient pattern, which was followed by the induction of PGC1α and SURF1: both are inducers of mitochondrial and complex-IV biogenesis. Subsequently MB-treated cells exhibited &gt;100% increase in complex-IV activity and a 28% decline in cellular oxidants. The telomeres erosion rate was also significantly lower in MB-treated cells. A previous research suggested that the pattern of AMPK activation (i.e., chronic or transient) determines the AMPK effect on cell senescence. We identified that the anti-senescence activity of MB (transient activator) was 8-times higher than that of AICAR (chronic activator). Since MB lacked an effect on cell cycle, an MB-dependent change to cell cycle is unlikely to contribute to the anti-senescence activity. The current findings in conjunction with the activation of Keap1/Nrf2 suggest a synchronized activation of the energy and cellular defense pathways as a possible key factor in MB's potent anti-senescence activity. "	"Magnetic resonance imaging correlates of genetically characterized patients with mitochondrial disorders: A study from south India. Large studies analyzing magnetic resonance imaging correlates in different genotypes of mitochondrial disorders are far and few. This study sought to analyze the pattern of magnetic resonance imaging findings in a cohort of genetically characterized patients with mitochondrial disorders. The study cohort included 33 patients (age range 18 months-50 years, M:F - 0.9:1) with definite mitochondrial disorders seen over a period of 8 yrs. (2006-2013). Their MR imaging findings were analyzed retrospectively. The patients were classified into three groups according to the genotype, Mitochondrial point mutations and deletions (n=21), SURF1 mutations (n=7) and POLG1 (n=5). The major findings included cerebellar atrophy (51.4%), cerebral atrophy (24.2%), signal changes in basal ganglia (45.7%), brainstem (34.2%) &amp; white matter (18.1%) and stroke like lesions (25.7%). Spinal cord imaging showed signal changes in 4/6 patients. Analysis of the special sequences revealed, basal ganglia mineralization (7/22), lactate peak on magnetic resonance spectrometry (10/15), and diffusion restriction (6/22). Follow-up images in six patients showed that the findings are dynamic. Comparison of the magnetic resonance imaging findings in the three groups showed that cerebral atrophy and cerebellar atrophy, cortical signal changes and basal ganglia mineralization were seen mostly in patients with mitochondrial mutation. Brainstem signal changes with or without striatal lesions were characteristically noted in SURF1 group. There was no consistent imaging pattern in POLG1 group. Magnetic resonance imaging findings in mitochondrial disorders are heterogeneous. Definite differences were noted in the frequency of anatomical involvement in the three groups. Familiarity with the imaging findings in different genotypes of mitochondrial disorders along with careful analysis of the family history, clinical presentation, biochemical findings, histochemical and structural analysis will help the physician for targeted metabolic and genetic testing."	"Emerging functional cross-talk between the Keap1-Nrf2 system and mitochondria. Nuclear factor erythroid-derived 2-related factor 2 (Nrf2) was originally identified as a positive regulator of drug detoxifying enzyme gene expression during exposure to environmental electrophiles. Currently, Nrf2 is known to regulate the expression of hundreds of cytoprotective genes to counteract endogenously or exogenously generated oxidative stress. Furthermore, when activated in human tumors by somatic mutations, Nrf2 confers growth advantages and chemoresistance by regulating genes involved in various processes such as the pentose phosphate pathway and nucleotide synthesis in addition to antioxidant proteins. Interestingly, increasing evidence shows that Nrf2 is associated with mitochondrial biogenesis during environmental stresses in certain tissues such as the heart. Furthermore, SKN-1, a functional homolog of Nrf2 in C. elegans, is activated by mitochondrial reactive oxygen species and extends life span by promoting mitochondrial homeostasis (i.e., mitohormesis). Similarly, Nrf2 activation was recently observed in the heart of surfeit locus protein 1 (Surf1) -/- mice in which cellular respiration was decreased due to cytochrome c oxidase defects. In this review, we critically examine the relationship between Nrf2 and mitochondria and argue that the Nrf2 stress pathway intimately communicates with mitochondria to maintain cellular homeostasis during oxidative stress. "	"Non-invasive screening of cytochrome c oxidase deficiency in children using a dipstick immunocapture assay. Cytochrome c oxidase (CIV) deficiency is among the most common childhood mitochondrial disorders. The diagnosis of this deficiency is complex, and muscle biopsy is used as the gold standard of diagnosis. Our aim was to minimize the patient burden and to test the use of a dipstick immunocapture assay (DIA) to determine the amount of CIV in non-invasively obtained buccal epithelial cells. Buccal smears were obtained from five children with Leigh syndrome including three children exhibiting a previously confirmed CIV deficiency in muscle and fibroblasts and two children who were clinical suspects for CIV deficiency; the smear samples were analysed using CI and CIV human protein quantity dipstick assay kits. Samples from five children of similar age and five adults were used as controls. Analysis of the controls demonstrated that only samples of buccal cells that were frozen for a maximum of 4 h after collection provide accurate results. All three patients with confirmed CIV deficiency due to mutations in the SURF1 gene exhibited significantly lower amounts of CIV than the similarly aged controls; significantly lower amounts were also observed in two new patients, for whom later molecular analysis also confirmed pathologic mutations in the SURF1 gene. We conclude that DIA is a simple, fast and sensitive method for the determination of CIV in buccal cells and is suitable for the screening of CIV deficiency in non-invasively obtained material from children who are suspected of having mitochondrial disease. "	"Brain imaging and genetic risk in the pediatric population, part 1: inherited metabolic diseases. In this article, the genotype-MR phenotype correlation of the most common or clinically important inherited metabolic diseases (IMD) in the pediatric population is reviewed. A nonsystematic search of the PubMed/Medline database of relevant studies about &quot;genotype-phenotype correlation&quot; in IMD was performed. Some MR phenotypes related to specific gene mutations were found, such as bilateral hypertrophy of inferior olives in patients harboring POLG and SURF1 mutations, and central lesions in the cervical spinal cord in patients with nonketotic hyperglycinemia harboring GLRX5 gene mutation. "	"Effect of p53 on mitochondrial morphology, import, and assembly in skeletal muscle. The purpose of this study was to investigate whether p53 regulates mitochondrial function via changes in mitochondrial protein import, complex IV (COX) assembly, or the expression of key proteins involved in mitochondrial dynamics and degradation. Mitochondria from p53 KO mice displayed ultra-structural alterations and were more punctate in appearance. This was accompanied by protein-specific alterations in fission, fusion, and mitophagy-related proteins. However, matrix-destined protein import into subsarcolemmal or intermyofibrillar mitochondria was unaffected in the absence of p53, despite mitochondrial subfraction-specific reductions in Tom20, Tim23, mtHsp70, and mtHsp60 in the knockout (KO) mitochondria. Complex IV activity in isolated mitochondria was also unchanged in KO mice, but two-dimensional blue native-PAGE revealed a reduction in the assembly of complex IV within the IMF fractions from KO mice in tandem with lower levels of the assembly protein Surf1. This observed defect in complex IV assembly may facilitate the previously documented impairment in mitochondrial function in p53 KO mice. We suspect that these morphological and functional impairments in mitochondria drive a decreased reliance on mitochondrial respiration as a means of energy production in skeletal muscle in the absence of p53. "	"Ophthalmological manifestations in patients with Leigh syndrome. To describe the ophthalmological manifestations in patients with childhood onset Leigh syndrome (LS) and investigate the correlation between genotypes and phenotypes in patients with LS. Childhood onset LS was clinically and enzymatically confirmed in a total of 63 patients. Among them, 44 patients who underwent ophthalmologic consultation were included in this study. Patients with LS underwent genotyping for the whole genome of mitochondrial DNA and SURF1 mutations. The clinical demographic and ophthalmologic phenotypes were compared between the good prognosis group and the poor prognosis group. Strabismus (40.9%) was the most frequently observed ophthalmologic manifestation, followed by pigmentary retinopathy (22.5%), optic atrophy (22.5%), ptosis (15.9%), and nystagmus (13.6%). Thirteen patients were exotropes and five patients were esotropes. The mean exodeviation was 29.6±12.5 prism dioptres (PD) and the mean esodeviation was 24.0±8.9 PD. All patients with esotropia reported disease onset at &lt;1 year old. Among 26 patients older than 4 years, eight (30.8%) patients had better than 0.4 in the best eye was noted. Eyelid ptosis was a main presenting sign in four patients (9.1%). Among these patients, two patients had m.13513G&gt;A mutation in the MT-ND5 gene. Age at onset was 2.47±2.06 years in the good prognosis group and 0.92±0.98 years in the poor prognosis group (p=0.002). Serum lactate peak concentration was 3.23±1.36 mmol/L in the good prognosis group and 4.54±2.31 mmol/L in the poor prognosis group (p=0.051). LS is a group of mitochondrial disorders with variable ophthalmologic manifestations, the most frequent being strabismus in this study. Ptosis could be an initial sign in patients with LS and these patients can be easily misdiagnosed as having juvenile myasthenia gravis."	"Molecular diagnosis of infantile Neuro axonal Dystrophy by Next Generation Sequencing. Infantile Neuro axonal Dystrophy (INAD), is a rare inherited neurological disorder which affects nerve axons causing progressive loss of mental skills, muscular control and vision. The authors present a case of 5.8-y-old girl with INAD who was diagnosed after Next Generation Sequencing (NGS). She was born to a non-consanguineous couple and presented with hypotonia, developmental delay followed by neuroregression and nystagmus after 2 years of age. On examination, bilateral horizontal nystagmus and normal head circumference were noted. Brain MRI showed cerebellar atrophy and altered signal intensities in bilateral globus pallidi and thalami. Magnetic resonance spectroscopy (MRS) showed elevation of lactate. Metabolic testing with Tandem Mass Spectrometry (TMS) and Gas Chromatography Mass Spectrometry (GC-MS) were normal. Mitochondrial disorder was suspected in view of clinical presentation, increased lactate and neuro-imaging suggestive of Leigh syndrome. Mitochondrial Leigh mutations and SURF1 gene sequencing yielded normal results. Lack of a clear diagnosis led to performance of NGS using panel of about 514 genes. A homozygous novel mutation at position c.2277-1G&gt;C in PLA2G6 gene presumed to give rise to altered splicing, was detected, thus confirming the diagnosis of INAD. This report provides evidence of the usefulness of NGS technology as a quick and accurate diagnostic tool for an otherwise complicated genetic disease. To the authors knowledge, this is the first case report with mutations in PLA2G6 gene from India. "	"Leigh syndrome in Drosophila melanogaster: morphological and biochemical characterization of Surf1 post-transcriptional silencing. Leigh Syndrome (LS) is the most common early-onset, progressive mitochondrial encephalopathy usually leading to early death. The single most prevalent cause of LS is occurrence of mutations in the SURF1 gene, and LS(Surf1) patients show a ubiquitous and specific decrease in the activity of mitochondrial respiratory chain complex IV (cytochrome c oxidase, COX). SURF1 encodes an inner membrane mitochondrial protein involved in COX assembly. We established a Drosophila melanogaster model of LS based on the post-transcriptional silencing of CG9943, the Drosophila homolog of SURF1. Knockdown of Surf1 was induced ubiquitously in larvae and adults, which led to lethality; in the mesodermal derivatives, which led to pupal lethality; or in the central nervous system, which allowed survival. A biochemical characterization was carried out in knockdown individuals, which revealed that larvae unexpectedly displayed defects in all complexes of the mitochondrial respiratory chain and in the F-ATP synthase, while adults had a COX-selective impairment. Silencing of Surf1 expression in Drosophila S2R(+) cells led to selective loss of COX activity associated with decreased oxygen consumption and respiratory reserve. We conclude that Surf1 is essential for COX activity and mitochondrial function in D. melanogaster, thus providing a new tool that may help clarify the pathogenic mechanisms of LS. "	"Long survival in Leigh syndrome: new cases and review of literature. Leigh syndrome (MIM 25600), also known as infantile subacute necrotizing encephalomyelopathy, is a neurodegenerative disorder with characteristic bilateral symmetric lesions in basal ganglia and subcortical brain regions. It is commonly associated with systemic cytochrome c oxidase (COX) deficiency and mutations in the SURF1 gene (MIM 185620), encoding a putative assembly or maintenance factor of COX. The clinical course is dominated by neurodevelopmental regression, brain stem, and basal ganglia involvement (e.g., dystonia, apnea) with death often occurring before the age of 10 years. Herein, we present three sisters carrying a previously reported homozygous SURF1 mutation (c.868_869insT) that is predicted to result in a truncated protein with loss of function. Our patients show heterogeneous clinical findings with different distribution patterns of metabolic lesions in brain magnetic resonance imaging (MRI) as well as a Chiari malformation with hydrocephalus in one patient. However, all three siblings show an unusual long survival (12 years and&gt;16 years). COX activity was not detectable in one patient and strongly reduced in the other two. We discuss these findings with respect to a review of the literature. A total of 15 additional patients with survival&gt;14 years have been reported so far. Overall, no clear genotype-phenotype correlations are detectable among these patients."	"Complex IV-deficient Surf1(-/-) mice initiate mitochondrial stress responses. Mutations in SURF1 (surfeit locus protein 1) COX (cytochrome c oxidase) assembly protein are associated with Leigh's syndrome, a human mitochondrial disorder that manifests as severe mitochondrial phenotypes and early lethality. In contrast, mice lacking the SURF1 protein (Surf1-/-) are viable and were previously shown to have enhanced longevity and a greater than 50% reduction in COX activity. We measured mitochondrial function in heart and skeletal muscle, and despite the significant reduction in COX activity, we found little or no difference in ROS (reactive oxygen species) generation, membrane potential, ATP production or respiration in isolated mitochondria from Surf1-/- mice compared with wild-type. However, blood lactate levels were elevated and Surf1-/- mice had reduced running endurance, suggesting compromised mitochondrial energy metabolism in vivo. Decreased COX activity in Surf1-/- mice is associated with increased markers of mitochondrial biogenesis [PGC-1α (peroxisome-proliferator-activated receptor γ co-activator 1α) and VDAC (voltage-dependent anion channel)] in both heart and skeletal muscle. Although mitochondrial biogenesis is a common response in the two tissues, skeletal muscle has an up-regulation of the UPRMT (mitochondrial unfolded protein response) and heart exhibits induction of the Nrf2 (nuclear factor-erythroid 2-related factor 2) antioxidant response pathway. These data are the first to show induction of the UPRMT in a mammalian model of decreased COX activity. In addition, the results of the present study suggest that impaired mitochondrial function can lead to induction of mitochondrial stress pathways to confer protective effects on cellular homoeostasis. "	"A rapid screening with direct sequencing from blood samples for the diagnosis of Leigh syndrome. Large numbers of genes are responsible for Leigh syndrome (LS), making genetic confirmation of LS difficult. We screened our patients with LS using a limited set of 21 primers encompassing the frequently reported gene for the respiratory chain complexes I (ND1-ND6, and ND4L), IV(SURF1), and V(ATP6) and the pyruvate dehydrogenase E1α-subunit. Of 18 LS patients, we identified mutations in 11 patients, including 7 in mDNA (two with ATP6), 4 in nuclear (three with SURF1). Overall, we identified mutations in 61% of LS patients (11/18 individuals) in this cohort. Sanger sequencing with our limited set of primers allowed us a rapid genetic confirmation of more than half of the LS patients and it appears to be efficient as a primary genetic screening in this cohort."	"The SFT-1 and OXA-1 respiratory chain complex assembly factors influence lifespan by distinct mechanisms in C. elegans. C. elegans mitochondrial (Mit) mutants have disrupted mitochondrial electron transport chain function, yet, surprisingly, they are often long-lived, a property that has offered unique insights into the molecular mechanisms of aging. In this study, we examine the phenotypic consequences of reducing the expression of the respiratory chain complex assembly factors sft-1 (homologous to human SURF1) and oxa-1 (homologous to human OXA1) by RNA interference (RNAi). Mutations in human SURF1 are associated with Leigh syndrome, a neurodegenerative condition of the brain caused by cytochrome oxidase (COX) deficiency. Both SURF1 and OXA1 are integral proteins of the inner mitochondrial membrane, functioning in the COX assembly pathway. RNAi of both of these genes in C. elegans is associated with increased longevity, but the mechanism by which lifespan is extended is different in each case. sft-1(RNAi) animals display lifespan extension that is dependent on the daf-16 insulin-like signaling pathway, and associated with sensitivity to oxidative stress. oxa-1(RNAi) animals, in contrast, exhibit increased longevity that is at least partially independent of daf-16, and associated with a reduced developmental rate and increased resistance to oxidative stress. This study further delineates the consequences of mitochondrial dysfunction within a whole organism that will ultimately help provide new models for human mitochondrial-associated diseases. The difference in phenotype observed upon down-regulation of these two COX assembly factors, as well as phenotypic differences between these factors and other respiratory chain components analyzed thus far, illustrates the complex inter-relationships that exist among energy metabolism, reproduction and aging even in this simplest of metazoan model organisms."	"A founder mutation in PET100 causes isolated complex IV deficiency in Lebanese individuals with Leigh syndrome. Leigh syndrome (LS) is a severe neurodegenerative disorder with characteristic bilateral lesions, typically in the brainstem and basal ganglia. It usually presents in infancy and is genetically heterogeneous, but most individuals with mitochondrial complex IV (or cytochrome c oxidase) deficiency have mutations in the biogenesis factor SURF1. We studied eight complex IV-deficient LS individuals from six families of Lebanese origin. They differed from individuals with SURF1 mutations in having seizures as a prominent feature. Complementation analysis suggested they had mutation(s) in the same gene but targeted massively parallel sequencing (MPS) of 1,034 genes encoding known mitochondrial proteins failed to identify a likely candidate. Linkage and haplotype analyses mapped the location of the gene to chromosome 19 and targeted MPS of the linkage region identified a homozygous c.3G&gt;C (p.Met1?) mutation in C19orf79. Abolishing the initiation codon could potentially still allow initiation at a downstream methionine residue but we showed that this would not result in a functional protein. We confirmed that mutation of this gene was causative by lentiviral-mediated phenotypic correction. C19orf79 was recently renamed PET100 and predicted to encode a complex IV biogenesis factor. We showed that it is located in the mitochondrial inner membrane and forms a ∼300 kDa subcomplex with complex IV subunits. Previous proteomic analyses of mitochondria had overlooked PET100 because its small size was below the cutoff for annotating bona fide proteins. The mutation was estimated to have arisen at least 520 years ago, explaining how the families could have different religions and different geographic origins within Lebanon."	"Loss of LRPPRC causes ATP synthase deficiency. Defects of the oxidative phosphorylation system, in particular of cytochrome-c oxidase (COX, respiratory chain complex IV), are common causes of Leigh syndrome (LS), which is a rare neurodegenerative disorder with severe progressive neurological symptoms that usually present during infancy or early childhood. The COX-deficient form of LS is commonly caused by mutations in genes encoding COX assembly factors, e.g. SURF1, SCO1, SCO2 or COX10. However, other mutations affecting genes that encode proteins not directly involved in COX assembly can also cause LS. The leucine-rich pentatricopeptide repeat containing protein (LRPPRC) regulates mRNA stability, polyadenylation and coordinates mitochondrial translation. In humans, mutations in Lrpprc cause the French Canadian type of LS. Despite the finding that LRPPRC deficiency affects the stability of most mitochondrial mRNAs, its pathophysiological effect has mainly been attributed to COX deficiency. Surprisingly, we show here that the impaired mitochondrial respiration and reduced ATP production observed in Lrpprc conditional knockout mouse hearts is caused by an ATP synthase deficiency. Furthermore, the appearance of inactive subassembled ATP synthase complexes causes hyperpolarization and increases mitochondrial reactive oxygen species production. Our findings shed important new light on the bioenergetic consequences of the loss of LRPPRC in cardiac mitochondria. "	"Identification of a deletion in the NDUFS4 gene using array-comparative genomic hybridization in a patient with suspected mitochondrial respiratory disease. We evaluated a patient, born after a normal 38-week pregnancy, with psychomotor retardation, poor coordination of ocular movements, recurrent vomiting and severe lactic acidosis. The patient was admitted to hospital at 2 months of age because of a mitochondrial-like syndrome and died at the age of 4.5 months. Array-comparative genomic hybridization (a-CGH) analysis revealed a homozygous deletion in 5q11.2 involving NADH dehydrogenase (ubiquinone) Fe-S protein 4, 18 kDa (NADH-coenzyme Q reductase; NDUFS4). Both parents were heterozygous for the mutation. The array revealed a deletion of ~32kb that includes exon 2 of NDUFS4 subsequently confirmed by real time-PCR and multiplex PCR. NDUFS4 was previously correlated to Leigh syndrome since mutations in this gene block the assembly of complex I. This result demonstrates the relevance of a-CGH screening in patients affected by metabolic disorders of unknown etiology."	"Clinical and magnetic resonance imaging findings in patients with Leigh syndrome and SURF1 mutations. Mutation in the SURF1 is one of the most common nuclear mutations associated with Leigh syndrome and cytochrome c oxidase deficiency. This study aims to describe the phenotypic and imaging features in four patients with Leigh syndrome and novel SURF1 mutation. The study included four patients with Leigh syndrome and SURF1 mutations identified from a cohort of 25 children with Leigh syndrome seen over a period of six years (2006-2012). All the patients underwent a detailed neurological assessment, muscle biopsy, and sequencing of the complete mitochondrial genome and SURF1. Three patients had classical presentation of Leigh syndrome. The fourth patient had a later age of onset with ataxia as the presenting manifestation and a stable course. Hypertrichosis, facial dysmorphism and hypopigmentation were the additional phenotypic features noted. On magnetic resonance imaging all patients had brainstem and cerebellar involvement and two had basal ganglia involvement in addition. The bilateral symmetrical hypertrophic olivary degeneration in these patients was striking. The SURF1 analysis identified previously unreported mutations in all the patients. On follow-up three patients expired and one had a stable course. Patients with Leigh syndrome and SURF1 mutation often have skin and hair abnormalities. Bilateral symmetrical hypertrophic olivary degeneration was a consistent finding on magnetic resonance imaging in these patients."	"SURF1 deficiency causes demyelinating Charcot-Marie-Tooth disease. To investigate whether mutations in the SURF1 gene are a cause of Charcot-Marie-Tooth (CMT) disease. We describe 2 patients from a consanguineous family with demyelinating autosomal recessive CMT disease (CMT4) associated with the homozygous splice site mutation c.107-2A&gt;G in the SURF1 gene, encoding an assembly factor of the mitochondrial respiratory chain complex IV. This observation led us to hypothesize that mutations in SURF1 might be an unrecognized cause of CMT4, and we investigated SURF1 in a total of 40 unrelated patients with CMT4 after exclusion of mutations in known CMT4 genes. The functional impact of c.107-2A&gt;G on splicing, amount of SURF1 protein, and on complex IV activity and assembly was analyzed. Another patient with CMT4 was found to harbor 2 additional SURF1 mutations. All 3 patients with SURF1-associated CMT4 presented with severe childhood-onset neuropathy, motor nerve conduction velocities &lt;25 m/s, and lactic acidosis. Two patients had brain MRI abnormalities, including putaminal and periaqueductal lesions, and developed cerebellar ataxia years after polyneuropathy. The c.107-2A&gt;G mutation produced no normally spliced transcript, leading to SURF1 absence. However, complex IV remained partially functional in muscle and fibroblasts. We found SURF1 mutations in 5% of families (2/41) presenting with CMT4. SURF1 should be systematically screened in patients with childhood-onset severe demyelinating neuropathy and additional features such as lactic acidosis, brain MRI abnormalities, and cerebellar ataxia developing years after polyneuropathy."	"The heme a synthase Cox15 associates with cytochrome c oxidase assembly intermediates during Cox1 maturation. Cox1, the core subunit of the cytochrome c oxidase, receives two heme a cofactors during assembly of the 13-subunit enzyme complex. However, at which step of the assembly process and how heme is inserted into Cox1 have remained an enigma. Shy1, the yeast SURF1 homolog, has been implicated in heme transfer to Cox1, whereas the heme a synthase, Cox15, catalyzes the final step of heme a synthesis. Here we performed a comprehensive analysis of cytochrome c oxidase assembly intermediates containing Shy1. Our analyses suggest that Cox15 displays a role in cytochrome c oxidase assembly, which is independent of its functions as the heme a synthase. Cox15 forms protein complexes with Shy1 and also associates with Cox1-containing complexes independently of Shy1 function. These findings indicate that Shy1 does not serve as a mobile heme carrier between the heme a synthase and maturing Cox1 but rather cooperates with Cox15 for heme transfer and insertion in early assembly intermediates of cytochrome c oxidase. "	"Decreased in vitro mitochondrial function is associated with enhanced brain metabolism, blood flow, and memory in Surf1-deficient mice. Recent studies have challenged the prevailing view that reduced mitochondrial function and increased oxidative stress are correlated with reduced longevity. Mice carrying a homozygous knockout (KO) of the Surf1 gene showed a significant decrease in mitochondrial electron transport chain Complex IV activity, yet displayed increased lifespan and reduced brain damage after excitotoxic insults. In the present study, we examined brain metabolism, brain hemodynamics, and memory of Surf1 KO mice using in vitro measures of mitochondrial function, in vivo neuroimaging, and behavioral testing. We show that decreased respiration and increased generation of hydrogen peroxide in isolated Surf1 KO brain mitochondria are associated with increased brain glucose metabolism, cerebral blood flow, and lactate levels, and with enhanced memory in Surf1 KO mice. These metabolic and functional changes in Surf1 KO brains were accompanied by higher levels of hypoxia-inducible factor 1 alpha, and by increases in the activated form of cyclic AMP response element-binding factor, which is integral to memory formation. These findings suggest that Surf1 deficiency-induced metabolic alterations may have positive effects on brain function. Exploring the relationship between mitochondrial activity, oxidative stress, and brain function will enhance our understanding of cognitive aging and of age-related neurologic disorders. "	"SURF1 deficiency: a multi-centre natural history study. SURF1 deficiency, a monogenic mitochondrial disorder, is the most frequent cause of cytochrome c oxidase (COX) deficient Leigh syndrome (LS). We report the first natural history study of SURF1 deficiency. We conducted a multi-centre case notes review of 44 SURF1-deficient patients from ten different UK centres and two Australian centres. Survival data for LRPPRC-deficient LS and nuclear-encoded complex I-deficient LS patients were obtained from previous publications. The survival of SURF1-deficient patients was compared with these two groups using Kaplan-Meier survival analysis and logrank test. The majority of patients (32/44, 73%) presented in infancy (median 9.5 months). Frequent symptoms were poor weight gain (95%, median age 10 months), hypotonia (93%, median age 14 months), poor feeding/vomiting (89%, median age 10 months), developmental delay (88%, median age 14 months), developmental regression (71%, median age 19 months), movement disorder (52%, median age 24 months), oculomotor involvement (52%, median age 29 months) and central respiratory failure (78%, median age 31 months). Hypertrichosis (41%), optic atrophy (23%), encephalopathy (20%), seizures (14%) and cardiomyopathy (2%) were observed less frequently. SURF1-deficient patients have a homogeneous clinical and biochemical phenotype. Early recognition is essential to expedite diagnosis and enable prenatal diagnosis."	"Hypertrichosis in presymptomatic mitochondrial disease. Leigh syndrome is a neurometabolic disorder commonly associated with disturbed oxidative phosphorylation, which leads to bilateral symmetric necrotizing lesions in the central nervous system. Neurological symptoms may be accompanied by cutaneous abnormalities. Here, we present images of distinct hypertrichosis in an otherwise asymptomatic one-year-old patient with pathogenic SURF1 gene mutations. We conclude that, if Leigh syndrome is suspected, the presence of characteristic hypertrichosis should prompt SURF1 mutation analysis. "	"Improved insulin sensitivity associated with reduced mitochondrial complex IV assembly and activity. Mice lacking Surf1, a complex IV assembly protein, have ∼50-70% reduction in cytochrome c oxidase activity in all tissues yet a paradoxical increase in lifespan. Here we report that Surf1(-/-) mice have lower body (15%) and fat (20%) mass, in association with reduced lipid storage, smaller adipocytes, and elevated indicators of fatty acid oxidation in white adipose tissue (WAT) compared with control mice. The respiratory quotient in the Surf1(-/-) mice was significantly lower than in the control animals (0.83-0.93 vs. 0.90-0.98), consistent with enhanced fat utilization in Surf1(-/-) mice. Elevated fat utilization was associated with increased insulin sensitivity measured as insulin-stimulated glucose uptake, as well as an increase in insulin receptor levels (∼2-fold) and glucose transporter type 4 (GLUT4; ∼1.3-fold) levels in WAT in the Surf1(-/-) mice. The expression of peroxisome proliferator-activated receptor γ-coactivator 1-α (PGC-1α) mRNA and protein was up-regulated by 2.5- and 1.9-fold, respectively, in WAT from Surf1(-/-) mice, and the expression of PGC-1α target genes and markers of mitochondrial biogenesis was elevated. Together, these findings point to a novel and unexpected link between reduced mitochondrial complex IV activity, enhanced insulin sensitivity, and increased mitochondrial biogenesis that may contribute to the increased longevity in the Surf1(-/-) mice."	"A multi-center comparison of diagnostic methods for the biochemical evaluation of suspected mitochondrial disorders. A multicenter comparison of mitochondrial respiratory chain and complex V enzyme activity tests was performed. The average reproducibility of the enzyme assays is 16% in human muscle samples. In a blinded diagnostic accuracy test in patient fibroblasts and SURF1 knock-out mouse muscle, each lab made the correct diagnosis except for two complex I results. We recommend that enzyme activities be evaluated based on ratios, e.g. with complex IV or citrate synthase activity. In spite of large variations in observed enzyme activities, we show that inter-laboratory comparison of patient sample test results is possible by using normalization against a control sample."	"Effects of image charges, interfacial charge discreteness, and surface roughness on the zeta potential of spherical electric double layers. We investigate the effects of image charges, interfacial charge discreteness, and surface roughness on spherical electric double layer structures in electrolyte solutions with divalent counterions in the setting of the primitive model. By using Monte Carlo simulations and the image charge method, the zeta potential profile and the integrated charge distribution function are computed for varying surface charge strengths and salt concentrations. Systematic comparisons were carried out between three distinct models for interfacial charges: (1) SURF1 with uniform surface charges, (2) SURF2 with discrete point charges on the interface, and (3) SURF3 with discrete interfacial charges and finite excluded volume. By comparing the integrated charge distribution function and the zeta potential profile, we argue that the potential at the distance of one ion diameter from the macroion surface is a suitable location to define the zeta potential. In SURF2 model, we find that image charge effects strongly enhance charge inversion for monovalent interfacial charges, and strongly suppress charge inversion for multivalent interfacial charges. For SURF3, the image charge effect becomes much smaller. Finally, with image charges in action, we find that excluded volumes (in SURF3) suppress charge inversion for monovalent interfacial charges and enhance charge inversion for multivalent interfacial charges. Overall, our results demonstrate that all these aspects, i.e., image charges, interfacial charge discreteness, their excluding volumes, have significant impacts on zeta potentials of electric double layers."	"Hypertrophic olivary degeneration on magnetic resonance imaging in mitochondrial syndromes associated with POLG and SURF1 mutations. Hypertrophic olivary degeneration (HOD) is associated with lesions within the dento-rubro-olivary pathway or Guillain-Mollaret triangle and may be associated clinically with palatal tremor. Here we report HOD on brain magnetic resonance (MR) imaging in three patients with progressive mitochondrial syndromes in the absence of palatal tremor. Two of the patients were found to have identical compound heterozygous mutations in the POLG gene, encoding the catalytic subunit of the mitochondrial DNA polymerase-γ, but presented with different clinical phenotypes. The first patient displayed the clinical syndrome of sensory ataxia, neuropathy, dysarthria, and ophthalmoparesis (SANDO), while the second patient was affected by a neurological disorder consisting of an ophthalmoplegia, myopathy, and neuropathy. The third case was a child with Leigh syndrome due to SURF1 gene mutations, who presented with a generalized tremor. We discuss the brain MR imaging findings in these three cases along with a literature review on the MR features of previously reported cases of patients with POLG gene mutations and Leigh disease due to SURF1 gene mutations. Our findings suggest that the presence of HOD, in the appropriate clinical setting, should alert the clinician to the possibility of a mitochondrial disorder and the need to screen for mutations in POLG and SURF1 genes."	"High-resolution melting analysis of 15 genes in 60 patients with cytochrome-c oxidase deficiency. Cytochrome-c oxidase (COX) deficiency is one of the common childhood mitochondrial disorders. Mutations in genes for the assembly factors SURF1 and SCO2 are prevalent in children with COX deficiency in the Slavonic population. Molecular diagnosis is difficult because of the number of genes involved in COX biogenesis and assembly. The aim of this study was to screen for mutations in 15 nuclear genes that encode the 10 structural subunits, their isoforms and two assembly factors of COX in 60 unrelated Czech children with COX deficiency. Nine novel variants were identified in exons and adjacent intronic regions of COX4I2, COX6A1, COX6A2, COX7A1, COX7A2 and COX10 using high-resolution melting (HRM) analysis. Online bioinformatics servers were used to predict the importance of the newly identified amino-acid substitutions. The newly characterized variants updated the contemporary spectrum of known genetic sequence variations that are present in the Czech population, which will be important for further targeted mutation screening in Czech COX-deficient children. HRM and predictive bioinformatics methodologies are advantageous because they are low-cost screening tools that complement large-scale genomic studies and reduce the required time and effort."	"Next-generation sequencing for mitochondrial diseases: a wide diagnostic spectrum. The current diagnostic approach for mitochondrial disorders requires invasive procedures such as muscle biopsy and multiple biochemical testing but the results are often inconclusive. Clinical sequencing tests are available only for a limited number of genes. Recently, massively parallel sequencing has become a powerful tool for testing genetically heterogeneous conditions such as mitochondrial disorders. Targeted next-generation sequencing was performed on 26 patients with known or suspected mitochondrial disorders using in-solution capture for the exons of 908 known and candidate nuclear genes and an Illumina genome analyzer. None of the 18 patients with various abnormal respiratory chain complex (RCC) activities had molecular defects in either subunits or assembly factors of mitochondrial RCC enzymes except a reference control sample with known mutations in SURF1. Instead, several variants in known pathogenic genes including CPT2, POLG, PDSS1, UBE3A, SDHD, and a few potentially pathogenic variants in candidate genes such as MTO1 or SCL7A13 were identified. Sequencing only nuclear genes for RCC subunits and assembly factors may not provide the diagnostic answers for suspected patients with mitochondrial disorders. The present findings indicate that the diagnostic spectrum of mitochondrial disorders is much broader than previously thought, which could potentially lead to misdiagnosis and/or inappropriate treatment. Overall analytic sensitivity and precision appear acceptable for clinical testing. Despite the limitations in finding mutations in all patients, the present findings underscore the considerable clinical benefits of targeted next-generation sequencing and serve as a prototype for extending the clinical evaluation in this clinically heterogeneous patient group."	"SURF1-associated Leigh syndrome: a case series and novel mutations. Leigh syndrome (LS) is a mitochondrial disease that typically presents in infancy with subacute neurodegenerative encephalopathy. It is genetically heterogeneous, but mutations in the complex IV assembly genes, particularly SURF1, are an important cause. In this study, SURF1 gene was sequenced in 590 patients with clinical suspicion of LS, complex IV deficiency, or clinical features of mitochondrial disorders. We identified 21 patients with clinical features of LS who are either homozygous or compound heterozygous for SURF1 mutations. Twenty-two different mutations were identified, including 13 novel mutations. Of the 42 mutant alleles, 36 (86%) are null mutations (frameshift, splicing, or nonsense) and 6 (14%) are missense. We have also reviewed the previously reported SURF1 mutations and observed a clustering of mutation in exon 8 of SURF1, suggesting a vital function for this region. Although mutations in SURF1 have been mainly associated with typical LS, five of the patients in this report had an atypical course of LS. There is no definite genotype-phenotype correlation; however, frameshift mutations resulting in protein truncation closer to the C-terminus may carry a better prognosis."	"Adaptation of respiratory chain biogenesis to cytochrome c oxidase deficiency caused by SURF1 gene mutations. The loss of Surf1 protein leads to a severe COX deficiency manifested as a fatal neurodegenerative disorder, the Leigh syndrome (LS(COX)). Surf1 appears to be involved in the early step of COX assembly but its function remains unknown. The aim of the study was to find out how SURF1 gene mutations influence expression of OXPHOS and other pro-mitochondrial genes and to further characterize the altered COX assembly. Analysis of fibroblast cell lines from 9 patients with SURF1 mutations revealed a 70% decrease of the COX complex content to be associated with 32-54% upregulation of respiratory chain complexes I, III and V and accumulation of Cox5a subunit. Whole genome expression profiling showed a general decrease of transcriptional activity in LS(COX) cells and indicated that the adaptive changes in OXPHOS complexes are due to a posttranscriptional compensatory mechanism. Electrophoretic and WB analysis showed that in mitochondria of LS(COX) cells compared to controls, the assembled COX is present entirely in a supercomplex form, as I-III₂-IV supercomplex but not as larger supercomplexes. The lack of COX also caused an accumulation of I-III₂ supercomplex. The accumulated Cox5a was mainly present as a free subunit. We have found out that the major COX assembly subcomplexes accumulated due to SURF1 mutations range in size between approximately 85-140kDa. In addition to the originally proposed S2 intermediate they might also represent Cox1-containing complexes lacking other COX subunits. Unlike the assembled COX, subcomplexes are unable to associate with complexes I and III."	"Peripheral neuropathy associated with mitochondrial disease in children. Mitochondrial diseases in children are often associated with a peripheral neuropathy but the presence of the neuropathy is under-recognized because of the overwhelming involvement of the central nervous system (CNS). These mitochondrial neuropathies are heterogeneous in their clinical, neurophysiological, and histopathological characteristics. In this article, we provide a comprehensive review of childhood mitochondrial neuropathy. Early recognition of neuropathy may help with the identification of the mitochondrial syndrome. While it is not definite that the characteristics of the neuropathy would help in directing genetic testing without the requirement for invasive skin, muscle or liver biopsies, there appears to be some evidence for this hypothesis in Leigh syndrome, in which nuclear SURF1 mutations cause a demyelinating neuropathy and mitochondrial DNA MTATP6 mutations cause an axonal neuropathy. POLG1 mutations, especially when associated with late-onset phenotypes, appear to cause a predominantly sensory neuropathy with prominent ataxia. The identification of the peripheral neuropathy also helps to target genetic testing in the mitochondrial optic neuropathies. Although often subclinical, the peripheral neuropathy may occasionally be symptomatic and cause significant disability. Where it is symptomatic, recognition of the neuropathy will help the early institution of rehabilitative therapy. We therefore suggest that nerve conduction studies should be a part of the early evaluation of children with suspected mitochondrial disease."	"Two Japanese patients with Leigh syndrome caused by novel SURF1 mutations. We report two patients with Leigh syndrome that showed a combination of facial dysmorphism and MRI imaging indicating an SURF1 deficiency, which was confirmed by sequence analysis. Case 1 is a 3-year-old girl with failure to thrive and developmental delay. She presented with tachypnea at rest and displayed facial dysmorphism including frontal bossing, lateral displacement of inner canthi, esotropia, maxillary hypoplasia, slightly upturned nostril, and hypertrichosis dominant on the forehead and extremities. Case 2 is an 8-year-old boy with respiratory failure. He had been diagnosed as selective complex IV deficiency. Case 2 displayed facial dysmorphism and hypertrichosis. Since both patients displayed characteristic facial dysmorphism and MRI findings, we sequenced the SURF1 gene and identified two heterozygous mutations; c.49+1 G&gt;T and c.752_753del in Case 1, and homozygous c.743 C&gt;A in Case 2. For patients with Leigh syndrome showing these facial dysmorphism and hypertrichosis, sequence analysis of the SURF1 gene may be useful."	"Effect of bezafibrate treatment on late-onset mitochondrial myopathy in mice. Mitochondrial dysfunction is an important cause of metabolic disorders of children and adults, with no effective therapy options. Recently, induction of mitochondrial biogenesis, by transgenic overexpression of PGC1-alpha [peroxisome proliferator-activated receptor (PPAR)-gamma coactivator 1-alpha], was reported to delay progression of early-onset cytochrome-c-oxidase (COX) deficiency in skeletal muscle of two mouse models: a muscle-specific knock-out of COX10 (COX10-mKO) and a constitutive knock-out of Surf1 (Surf1-KO). A pan-PPAR agonist, bezafibrate, could similarly delay myopathy progression in COX10-mKOs, but not in SURF1-KOs. We asked whether bezafibrate affected disease progression in late-onset adult-type mitochondrial myopathy mice. These 'Deletor mice' express a dominant patient mutation in Twinkle-helicase, leading to accumulation of multiple mtDNA deletions and subsequent progressive respiratory chain (RC) deficiency with COX-negative muscle fibers at 12 months of age. The primary and secondary molecular findings in Deletor mice mimic closely those in patients with Twinkle myopathy. We applied 0.5% bezafibrate diet to Deletors for 22 weeks, starting at disease manifestation, mimicking patient treatment after diagnosis. Bezafibrate delayed significantly the accumulation of COX-negative fibers and multiple mtDNA deletions. However, mitochondrial biogenesis was not induced: mitochondrial DNA copy number, transcript and RC protein amounts decreased in both Deletors and wild-type mice. Furthermore, bezafibrate induced severe lipid oxidation effects, with hepatomegaly and loss of adipose tissue, the mechanism involving lipid mobilization by high hepatic expression of FGF21 cytokine. However, as bezafibrate has been tolerated well by humans, the beneficial muscle findings in Deletor mice support consideration of bezafibrate trials on adult patients with mitochondrial myopathy."	"Role of Surf1 in heme recruitment for bacterial COX biogenesis. Biogenesis of the mitochondrial cytochrome c oxidase (COX) is a highly complex process involving subunits encoded both in the nuclear and the organellar genome; in addition, a large number of assembly factors participate in this process. The soil bacterium Paracoccus denitrificans is an interesting alternative model for the study of COX biogenesis events because the number of chaperones involved is restricted to an essential set acting in the metal centre formation of oxidase, and the high degree of sequence homology suggests the same basic mechanisms during early COX assembly. Over the last years, studies on the P. denitrificans Surf1 protein shed some light on this important assembly factor as a heme a binding protein associated with Leigh syndrome in humans. Here, we summarise our current knowledge about Surf1 and its role in heme a incorporation events during bacterial COX biogenesis. This article is part of a Special Issue entitled: Biogenesis/Assembly of Respiratory Enzyme Complexes."	"In vivo correction of COX deficiency by activation of the AMPK/PGC-1α axis. Increased mitochondrial biogenesis by activation of PPAR- or AMPK/PGC-1α-dependent homeostatic pathways has been proposed as a treatment for mitochondrial disease. We tested this hypothesis on three recombinant mouse models characterized by defective cytochrome c-oxidase (COX) activity: a knockout (KO) mouse for Surf1, a knockout/knockin mouse for Sco2, and a muscle-restricted KO mouse for Cox15. First, we demonstrated that double-recombinant animals overexpressing PGC-1α in skeletal muscle on a Surf1 KO background showed robust induction of mitochondrial biogenesis and increase of mitochondrial respiratory chain activities, including COX. No such effect was obtained by treating both Surf1(-/-) and Cox15(-/-) mice with the pan-PPAR agonist bezafibrate, which instead showed adverse effects in either model. Contrariwise, treatment with the AMPK agonist AICAR led to partial correction of COX deficiency in all three models, and, importantly, significant motor improvement up to normal in the Sco2(KO/KI) mouse. These results open new perspectives for therapy of mitochondrial disease."	"Mimicking a SURF1 allele reveals uncoupling of cytochrome c oxidase assembly from translational regulation in yeast. Defects in mitochondrial energy metabolism lead to severe human disorders, mainly affecting tissues especially dependent on oxidative phosphorylation, such as muscle and brain. Leigh Syndrome describes a severe encephalomyopathy in infancy, frequently caused by mutations in SURF1. SURF1, termed Shy1 in Saccharomyces cerevisiae, is a conserved assembly factor for the terminal enzyme of the respiratory chain, cytochrome c oxidase. Although the molecular function of SURF1/Shy1 is still enigmatic, loss of function leads to cytochrome c oxidase deficiency and reduced expression of the central subunit Cox1 in yeast. Here, we provide insights into the molecular mechanisms leading to disease through missense mutations in codons of the most conserved amino acids in SURF1. Mutations affecting G(124) do not compromise import of the SURF1 precursor protein but lead to fast turnover of the mature protein within the mitochondria. Interestingly, an Y(274)D exchange neither affects stability nor localization of the protein. Instead, SURF1(Y274D) accumulates in a 200 kDa cytochrome c oxidase assembly intermediate. Using yeast as a model, we demonstrate that the corresponding Shy1(Y344D) is able to overcome the stage where cytochrome c oxidase assembly links to the feedback regulation of mitochondrial Cox1 expression. However, Shy1(Y344D) impairs the assembly at later steps, most apparent at low temperature and exhibits a dominant-negative phenotype upon overexpression. Thus, exchanging the conserved tyrosine (Y(344)) with aspartate in yeast uncouples translational regulation of Cox1 from cytochrome c oxidase assembly and provides evidence for the dual functionality of Shy1."	"Characterization of heme-binding properties of Paracoccus denitrificans Surf1 proteins. Biogenesis of cytochrome c oxidase (COX) is a highly complex process involving &gt;30 chaperones in eukaryotes; those required for the incorporation of the copper and heme cofactors are also conserved in bacteria. Surf1, associated with heme a insertion and with Leigh syndrome if defective in humans, is present as two homologs in the soil bacterium Paracoccus denitrificans, Surf1c and Surf1q. In an in vitro interaction assay, the heme a transfer from purified heme a synthase, CtaA, to Surf1c was followed, and both Surf proteins were tested for their heme a binding properties. Mutation of four strictly conserved amino acid residues within the transmembrane part of each Surf1 protein confirmed their requirement for heme binding. Interestingly the mutation of a tryptophan residue in transmembrane helix II (W200 in Surf1c and W209 in Surf1q) led to a drastic switch in the heme composition, with Surf1 now being populated mostly by heme o, the intermediate in the heme a biosynthetic pathway. This tryptophan residue discriminates between the two heme moieties, apparently coordinates the formyl group of heme a, and most likely presents the cofactor in a spatial orientation suitable for optimal transfer to its target site within subunit I of cytochrome c oxidase."	"LRPPRC mutations cause a phenotypically distinct form of Leigh syndrome with cytochrome c oxidase deficiency. The natural history of all known patients with French-Canadian Leigh disease (Saguenay-Lac-St-Jean cytochrome c oxidase deficiency, MIM220111, SLSJ-COX), the largest known cohort of patients with a genetically homogeneous, nuclear encoded congenital lactic acidosis, was studied. 55 of 56 patients were homozygous for the A354V mutation in LRPPRC. One was a genetic compound (A354V/C1277Xdel8). Clinical features included developmental delay, failure to thrive, characteristic facial appearance and, in 90% of patients, acute crises that have not previously been detailed, either metabolic (fulminant lactic acidosis) and/or neurological (Leigh syndrome and/or stroke-like episodes). Survival ranged from 5 days to &gt;30 years. 46/56 patients (82%) died, at a median age of 1.6 years. Of 73 crises, 38 (52%) were fatal. The immediate causes of death were multiple organ failure and/or Leigh disease. Major predictors of mortality during crises (p&lt;0.005) were hyperglycaemia, hepatic cytolysis, and altered consciousness at admission. Compared to a group of SURF1-deficient Leigh syndrome patients assembled from the literature, SLSJ-COX is distinct by the occurrence of metabolic crises, leading to earlier and higher mortality (p=0.001). SLSJ-COX is clinically distinct, with acute fatal acidotic crises on a backdrop of chronic moderate developmental delay and hyperlactataemia. Leigh syndrome is common. Stroke-like episodes can occur. The Leigh syndrome of SLSJ-COX differs from that of SURF1-related COX deficiency. SLSJ-COX has a different spectrum of associated abnormalities, acidotic crises being particularly suggestive of LRPPRC related Leigh syndrome. Even among A354V homozygotes, pronounced differences in survival and severity occur, showing that other genetic and/or environmental factors can influence outcome."	"Hypoxic and hypercapnic challenges unveil respiratory vulnerability of Surf1 knockout mice, an animal model of Leigh syndrome. Surf1 gene mutations were detected as a main cause for Leigh syndrome (LS), also known as infantile subacute necrotizing encephalomyelopathy. This syndrome which is commonly associated with systemic cytochrome c oxidase (COX) deficiency manifests in early childhood and has an invariable poor prognosis. Progressive disturbances of the respiratory function, for which both the metabolic condition and necrotizing brainstem lesions contribute, belong to the major symptoms of LS. A constitutive knockout (KO) mouse for Surf1 enables invasive investigations of distinct aspects of LS. In the present study the respiratory function was analyzed applying an arterially perfused brainstem preparation. Compared to wild type (WT) preparations Surf1 KO preparations had a higher baseline respiratory frequency and abnormal responses to hypoxia and hypercapnia that involved both respiratory frequency and motor nerve discharge pattern. These data suggest that COX deficiency impairs peripheral and/or central chemoreceptor function."	"Analysis of Leigh syndrome mutations in the yeast SURF1 homolog reveals a new member of the cytochrome oxidase assembly factor family. Three missense SURF1 mutations identified in patients with Leigh syndrome (LS) were evaluated in the yeast homolog Shy1 protein. Introduction of two of the Leigh mutations, F(249)T and Y(344)D, in Shy1 failed to significantly attenuate the function of Shy1 in cytochrome c oxidase (CcO) biogenesis as seen with the human mutations. In contrast, a G(137)E substitution in Shy1 results in a nonfunctional protein conferring a CcO deficiency. The G(137)E Shy1 mutant phenocopied shy1Delta cells in impaired Cox1 hemylation and low mitochondrial copper. A genetic screen for allele-specific suppressors of the G(137)E Shy1 mutant revealed Coa2, Cox10, and a novel factor designated Coa4. Coa2 and Cox10 are previously characterized CcO assembly factors. Coa4 is a twin CX(9)C motif mitochondrial protein localized in the intermembrane space and associated with the inner membrane. Cells lacking Coa4 are depressed in CcO activity but show no impairment in Cox1 maturation or formation of the Shy1-stabilized Cox1 assembly intermediate. To glean insights into the functional role of Coa4 in CcO biogenesis, an unbiased suppressor screen of coa4Delta cells was conducted. Respiratory function of coa4Delta cells was restored by the overexpression of CYC1 encoding cytochrome c. Cyc1 is known to be important at an ill-defined step in the assembly and/or stability of CcO. This new link to Coa4 may begin to further elucidate the role of Cyc1 in CcO biogenesis."	"A novel heme a insertion factor gene cotranscribes with the Thermus thermophilus cytochrome ba3 oxidase locus. Studying the biogenesis of the Thermus thermophilus cytochrome ba(3) oxidase, we analyze heme a cofactor insertion into this membrane protein complex. Only three proteins linked to oxidase maturation have been described for this extreme thermophile, and in particular, no evidence for a canonical Surf1 homologue, required for heme a insertion, is available from genome sequence data. Here, we characterize the product of an open reading frame, cbaX, in the operon encoding subunits of the ba(3)-type cytochrome c oxidase. CbaX shares no sequence identity with any known oxidase biogenesis factor, and CbaX homologues are found only in the Thermaceae group. In a series of cbaX deletion and complementation experiments, we demonstrate that the resulting ba(3) oxidase complexes, affinity purified via an internally inserted His tag located in subunit I, are severely affected in their enzymatic activities and heme compositions in both the low- and high-spin sites. Thus, CbaX displays typical features of a generic Surf1 factor essential for binding and positioning the heme a moiety for correct assembly into the protein scaffold of oxidase subunit I."	"[Syndrome Leigh caused by mutations in the SURF1 gene: clinical and molecular-genetic characteristics]. Syndrome Leigh (SL) or subacute necrotizing encephalomyelopathy - is a rare hereditary genetically heterogeneous disease from the group of mitochondrial encephalomyopathies. Twenty-seven children with SL were examined using clinical, laboratory (measuring lactate levels), MRI and molecular-genetic (polymerase chain reaction genotyping of 9 exons of the SURF1 gene) studies. The mean age of manifestation was 11,6 months. The main manifestations of SL were: delay of psychomotor development, diffuse muscle hypertonic, cerebellar syndrome, ophthalmoparesis, hypertrichosis. The disease had a progressive course with the loss of acquired skills. The blood lactate concentration was increased on average up to 3,1 mM/ml (from 1,9 to 5,1 mM/ml) compared to normal values (1,8 mM/ml). Brain MRI revealed the subcortical and cortical atrophy (80% of cases), symmetrical distinctly delineated hyperintense lesions on T2-weighted images (demyelization) in the basal ganglia and the brain stem (50%), as well as in the cerebellum (25%). Genotyping identified 7 different mutations. The most frequent (64,8%) was the deletion of 2 nucleotides (845delCT) in exon 8 that was in line with early data of Polish researchers thus indicating the Slavic origin of this mutation. Other mutations (574-575insCTGT, 311-321del10insAT and IVS8-1G&gt;) were also frequent in the Russian population."	"Leigh syndrome: MRI findings in two children. Leigh syndrome is a progressive neurodegenerative disorder of childhood. The symmetrical necrotic lesions in the basal ganglia and/or brainstem which appear as hyperintense lesions on T2-weighted MRI is characteristic and one of the essential diagnostic criteria. Recognising this MR imaging pattern in a child with neurological problems should prompt the clinician to investigate for Leigh syndrome. We present here two cases of Leigh syndrome due to different biochemical/genetic defects, and discuss the subtle differences in their MR neuroimaging features."	"Leigh's disease associated with a dorsal midbrain syndrome. Leigh's disease is a rare progressive neurodegenerative condition caused by a mitochondrial cytopathy. The authors present the case of a 9-year-old girl with dorsal midbrain syndrome causing convergence retraction nystagmus. Magnetic resonance imaging, skin biopsy, and genetic testing confirmed the cause to be Leigh's disease due to two SURF1 mutations. To the authors' knowledge, this is the first reported case of dorsal midbrain syndrome caused by a mitochondrial cytopathy."	"SURF1 missense mutations promote a mild Leigh phenotype. SURF1 gene mutations are the most common cause of Leigh syndrome (LS), a rare progressive neurodegenerative disorder of infancy, characterized by symmetric necrotizing lesions and hypervascularity in the brainstem and basal ganglia, leading to death before the age of 4 years. Most of the reported mutations create premature termination codons, whereas missense mutations are rare. The aim of the study was to characterize the natural history of LS patients carrying at least one missense mutation in the SURF1 gene. Nineteen such patients (8 own cases and 11 reported in the literature) were compared with a reference group of 20 own c.845_846delCT homozygous patients, and with other LS(SURF-) cases described in the literature. Disease onset in the studied group was delayed. Acute failure to thrive and hyperventilation episodes were rare, respiratory failure did not appear before the age of 4 years. Dystonia, motor regression and eye movement dissociation developed slowly. The number of patients who survived 7 years of life totaled 9 out of 15 (60%) in the 'missense group' and 1 out of 26 (4%) patients with mutations leading to truncated proteins. (i) The presence of a missense mutation in the SURF1 gene may correlate with a milder course and longer survival of Leigh patients, (ii) normal magnetic resonance imaging (MRI) findings, normal blood lactate value, and only mild decrease of cytochrome c oxidase (COX) activity are not sufficient reasons to forego SURF1 mutation analysis in differential diagnosis."	"Mitochondrial disorders of the nuclear genome. Mitochondrial myopathies are regulated by two genomes: the nuclear DNA, and the mitochondrial DNA. While, so far, most studies have dealt with mitochondrial myopathies due to deletions or point mutations in the mitochondrial DNA, a new field of investigation is that of syndromes due to mutations in the nuclear DNA. These latter disorders have mendelian inheritance. Three representative cases have been selected: one with COX deficiency and a Leigh syndrome due to a SURF1 gene mutation, one due to a defect of Coenzyme Q synthesis and one with dominant optic atrophy due to a mutation in the OPA1 gene. Future developments will show that many neurodegenerative disorders are due to mutations of nuclear genes controlling mitochondrial function, fusion and fission."	"Surf1, associated with Leigh syndrome in humans, is a heme-binding protein in bacterial oxidase biogenesis. Biogenesis of mitochondrial cytochrome c oxidase (COX) relies on a large number of assembly factors, among them the transmembrane protein Surf1. The loss of human Surf1 function is associated with Leigh syndrome, a fatal neurodegenerative disorder caused by severe COX deficiency. In the bacterium Paracoccus denitrificans, two homologous proteins, Surf1c and Surf1q, were identified, which we characterize in the present study. When coexpressed in Escherichia coli together with enzymes for heme a synthesis, the bacterial Surf1 proteins bind heme a in vivo. Using redox difference spectroscopy and isothermal titration calorimetry, the binding of the heme cofactor to purified apo-Surf1c and apo-Surf1q is quantified: Each of the Paracoccus proteins binds heme a in a 1:1 stoichiometry and with Kd values in the submicromolar range. In addition, we identify a conserved histidine as a residue crucial for heme binding. Contrary to most earlier concepts, these data support a direct role of Surf1 in heme a cofactor insertion into COX subunit I by providing a protein-bound heme a pool."	"Expression of the Ciona intestinalis alternative oxidase (AOX) in Drosophila complements defects in mitochondrial oxidative phosphorylation. Defects in mitochondrial OXPHOS are associated with diverse and mostly intractable human disorders. The single-subunit alternative oxidase (AOX) found in many eukaryotes, but not in arthropods or vertebrates, offers a potential bypass of the OXPHOS cytochrome chain under conditions of pathological OXPHOS inhibition. We have engineered Ciona intestinalis AOX for conditional expression in Drosophila melanogaster. Ubiquitous AOX expression produced no detrimental phenotype in wild-type flies. However, mitochondrial suspensions from AOX-expressing flies exhibited a significant cyanide-resistant substrate oxidation, and the flies were partially resistant to both cyanide and antimycin. AOX expression was able to complement the semilethality of partial knockdown of both cyclope (COXVIc) and the complex IV assembly factor Surf1. It also rescued the locomotor defect and excess mitochondrial ROS production of flies mutated in dj-1beta, a Drosophila homolog of the human Parkinson's disease gene DJ1. AOX appears to offer promise as a wide-spectrum therapeutic tool in OXPHOS disorders."	"Mutation analysis of COX18 in 29 patients with isolated cytochrome c oxidase deficiency. Isolated cytochrome c oxidase (COX) deficiency (MIM#220110) is a relatively common biochemical finding in pediatric patients with mitochondrial disorder. It has been associated with different clinical phenotypes ranging from isolated myopathy to severe multisystem disorder. It is a genetically heterogeneous trait, and the most frequent genetic defects affect SURF1 and SCO2, two genes required for COX assembly. However, a significant proportion of patients lacks mutation in these genes and in other known genes that require COX biogenesis. COX18 is a novel COX assembly gene required for membrane insertion of the C-terminal portion of COX subunit II. We have studied 29 pediatric patients with isolated COX deficiency in the skeletal muscle associated with different clinical phenotypes. Mutations in SURF1, SCO2, SCO1, COX10, COX15 and in mitochondrial DNA, had been ruled out earlier. The COX18 gene was analyzed using a PCR-single-stranded conformation polymorphism (PCR-SSCP) protocol, and in 15 patients, the analysis was repeated by direct sequencing. No pathogenic mutations were detected in our cohort of patients indicating that COX18 mutations may be very rare or associated with other phenotypes than isolated COX deficiency in infancy."	"Loss of function of Sco1 and its interaction with cytochrome c oxidase. Sco1 and Sco2 are mitochondrial copper-binding proteins involved in the biogenesis of the Cu(A) site in the cytochrome c oxidase (CcO) subunit Cox2 and in the maintenance of cellular copper homeostasis. Human Surf1 is a CcO assembly factor with an important but poorly characterized role in CcO biogenesis. Here, we analyzed the impact on CcO assembly and tissue copper levels of a G132S mutation in the juxtamembrane region of SCO1 metallochaperone associated with early onset hypertrophic cardiomyopathy, encephalopathy, hypotonia, and hepatopathy, assessed the total copper content of various SURF1 and SCO2-deficient tissues, and investigated the possible physical association between CcO and Sco1. The steady-state level of mutant Sco1 was severely decreased in the muscle mitochondria of the SCO1 patient, indicating compromised stability and thus loss of function of the protein. Unlike the wild-type variant, residual mutant Sco1 appeared to migrate exclusively in the monomeric form on blue native gels. Both the activity and content of CcO were reduced in the patient's muscle to approximately 10-20% of control values. SCO1-deficient mitochondria showed accumulation of two Cox2 subcomplexes, suggesting that Sco1 is very likely responsible for a different posttranslational aspect of Cox2 maturation than Sco2. Intriguingly, the various SURF1-deficient samples analyzed showed a tissue-specific copper deficiency similar to that of SCO-deficient samples, suggesting a role for Surf1 in copper homeostasis regulation. Finally, both blue native immunoblot analysis and coimmunoprecipitation revealed that a fraction of Sco1 physically associates with the CcO complex in human muscle mitochondria, suggesting a possible direct relationship between CcO and the regulation of cellular copper homeostasis."	"Heterogeneity of magnetic resonance imaging in Leigh syndrome with SURF1 gene 604G--&gt;C mutation. To identify the magnetic resonance (MR) features of a group of pediatric patients with Leigh syndrome (LS) caused by SURF1 gene 604G--&gt;C mutation. Eight cases with definite diagnosis of SURF1 gene 604G--&gt;C mutation in our hospital were reviewed. Most cases presented typical symptoms in their infancy or childhood, with psychomotor regression, hypotonia, or eye movement disturbances. They all underwent cranial MR examinations after the onset. Their brain images were reviewed by an experienced neuroradiologist to determine the abnormalities. The data of our group showed heterogeneous neuroradiological findings: involvement of the brain stem and subthalamic nuclei was found in only three cases; basal ganglia abnormalities were detected in two cases, whereas demyelination was demonstrated in four cases; and brain atrophy existed invariably in the group. The MR presentation in LS patients with SURF1 gene 604G--&gt;C mutation is variable. Maybe it is not appropriate to correlate a specific gene mutation with a homogenous radiological pattern."	"MtDNA mutations are a common cause of severe disease phenotypes in children with Leigh syndrome. Leigh syndrome is a common clinical manifestation in children with mitochondrial disease and other types of inborn errors of metabolism. We characterised clinical symptoms, prognosis, respiratory chain function and performed extensive genetic analysis of 25 Swedish children suffering from Leigh syndrome with the aim to obtain insights into the molecular pathophysiology and to provide a rationale for genetic counselling. We reviewed the clinical history of all patients and used muscle biopsies in order to perform molecular, biochemical and genetic investigations, including sequencing the entire mitochondrial DNA (mtDNA), the mitochondrial DNA polymerase (POLGA) gene and the surfeit locus protein 1 (SURF1) gene. Respiratory chain enzyme activity measurements identified five patients with isolated complex I deficiency and five with combined enzyme deficiencies. No patient presented with isolated complex IV deficiency. Seven patients had a decreased ATP production rate. Extensive sequence analysis identified eight patients with pathogenic mtDNA mutations and one patient with mutations in POLGA. Mutations of mtDNA are a common cause of LS and mtDNA analysis should always be included in the diagnosis of LS patients, whereas SURF1 mutations are not a common cause of LS in Sweden. Unexpectedly, age of onset, clinical symptoms and prognosis did not reveal any clear differences in LS patients with mtDNA or nuclear DNA mutations."	"[Mitochondrial diseases in children including Leigh syndrome--biochemical and molecular background]. Mitochondrial diseases in children are more frequently caused by mutations in nuclear DNA then in mtDNA. Special clinical phenotypes are associated with the mutations in SURF1 gene, in SCO2 gene and with mtDNA depletion syndromes. Leigh syndrome is the most common clinical presentation of various mitochondrial disorders during childhood. Elevation of lactate in blood, cerebrospinal fluid and urine is a simple biochemical marker of mitochondrial disorders but its specificity and sensitivity are low. Biochemical investigation of muscle biopsy and search for mitochondrial mutations remain a gold standard in the diagnosis. The standarized diagnostic criteria to establish level of diagnostic certainty (possible, probable, definite) are proposed to be used in practice; these include clinical features, neuroimaging and muscle biopsy investigations. Further research directions to improve our understanding of mitochondrial pathologies in children are suggested."	"Successful application of preimplantation genetic diagnosis for Leigh syndrome. To perform preimplantation genetic diagnosis (PGD) for a SURF1 gene mutation of the Leigh syndrome to transfer unaffected or carrier embryo/embryos. Case report. Clinical IVF laboratory. A couple carrying an nt769 G/A mutation that is associated with Leigh syndrome. Oocytes were fertilized by means of intracytoplasmic sperm injection. The resulting embryos were biopsied 3 days after fertilization. One blastomere was taken and whole-genome amplification was performed. Amplification of the mutation site was achieved by polymerase chain reaction (PCR) and restriction digestion was completed. Gel Imager was used to measure the digests of normal and mutant load. Embryo testing by means of PGD-PCR and pregnancy. Successful preimplantation genetic diagnosis for a SURF1 gene mutation and transfer of healthy or carrier embryos. Successful singleton pregnancy resulting in the delivery of healthy baby girl. We report the first case of successful PGD for Leigh syndrome resulting in delivery of a healthy newborn."	"High prevalence of SURF1 c.845_846delCT mutation in Polish Leigh patients. Leigh syndrome is a neuropathological disorder with typical morphological changes in brain, appearing regardless of diverse molecular background. One of the most common enzymatic defects in Leigh patients is cytochrome c oxidase deficiency associated with recessive mutations in the SURF1 gene. To assess the SURF1 mutation profile among Polish patients we studied 41 affected children from 34 unrelated families by PCR-SSCP and sequencing. Four novel mutations, c.39delG, c.752-1G&gt;C, c.800_801insT, c.821A&gt;G, and five described pathogenic changes, c.311_312insAT312_321del10, c.688C&gt;T, c.704T&gt;C, c.756_757delCA, c.845_846delCT, were identified in 85.3% of analysed probands. One mutation, c.845_846delCT, was identified in 77.6% of SURF1 alleles. Up to now, it has been reported only in 9% of alleles in other parts of the world. The deletion was used as LS(SURF1-) marker in population studies. Eight heterozygous carriers of the mutation were found in a cohort of 2890 samples. The estimated c.845_846delCT allele frequency is 1:357 (0.28+/-0.2%), and the lowest predicted LS(SURF1-) frequency in Poland 1:126,736.births. Relatively high frequency of LS(SURF1-) in Poland with remarkable c.845_846delCT mutation dominance allows one to start the differential diagnosis of LS in each patient of Polish (and probably Slavonic) origin from the direct search for c.845_846delCT SURF1 mutation."	"Two variants of the assembly factor Surf1 target specific terminal oxidases in Paracoccus denitrificans. Biogenesis of cytochrome c oxidase (COX) relies on a large number of assembly proteins, one of them being Surf1. In humans, the loss of Surf1 function is associated with Leigh syndrome, a fatal neurodegenerative disorder. In the soil bacterium Paracoccus denitrificans, homologous genes specifying Surf1 have been identified and located in two operons of terminal oxidases: surf1q is the last gene of the qox operon (coding for a ba(3)-type ubiquinol oxidase), and surf1c is found at the end of the cta operon (encoding subunits of the aa(3)-type cytochrome c oxidase). We introduced chromosomal single and double deletions for both surf1 genes, leading to significantly reduced oxidase activities in membrane. Our experiments on P. denitrificans surf1 single deletion strains show that both Surf1c and Surf1q are functional and act independently for the aa(3)-type cytochrome c oxidase and the ba(3)-type quinol oxidase, respectively. This is the first direct experimental evidence for the involvement of a Surf1 protein in the assembly of a quinol oxidase. Analyzing the heme content of purified cytochrome c oxidase, we conclude that Surf1, though not indispensable for oxidase assembly, is involved in an early step of cofactor insertion into subunit I."	"New findings in gene knockout, mutant and transgenic mice. During the past year, some novel genetic modifications were shown to alter the lifespan of mice, thus expanding the list of genes and physiological processes that influence mammalian aging. Considerable progress was also made in identifying putative mechanisms of extended longevity in previously described gene knockouts, mutants and transgenics. In addition, new leads concerning mechanisms of aging were derived from studies of gene knockout mice in which aging is accelerated. Among the important findings from the period July 2006 to July 2007: Core body temperature was shown to influence longevity in homeothermic animals; a Surf1 gene knockout extended lifespan in mice; separate studies using Little and Snell dwarf mice found stress resistance enhancements correlated with longevity gains; and mice heterozygous for deletion of insulin receptor substrate 2 (IRS-2) lived longer than normal animals, while animals with homozygous or heterozygous deletion of IRS-2 selectively in the brain exhibited comparable extension of lifespan and various symptoms of delayed aging."	"Transcriptional activators HAP/NF-Y rescue a cytochrome c oxidase defect in yeast and human cells. Cell survival and energy production requires a functional mitochondrial respiratory chain. Biogenesis of cytochrome c oxidase (COX), the last enzyme of the mitochondrial respiratory chain, is a very complicated process and requires the assistance of a large number of accessory factors. Defects in COX assembly alter cellular respiration and produce severe human encephalomyopathies. Mutations in SURF1, a COX assembly factor of exact unknown function, produce Leigh's syndrome (LS), the most frequent cause of COX deficiency in infants. In the yeast Saccharomyces cerevisiae, deletion of the SURF1 homologue SHY1 results in a similar COX deficiency. In order to identify genetic modifiers of the shy1 mutant phenotype, we have explored for genetic interactions involving SHY1. Here we report that overexpression of Hap4p, the catalytic subunit of the CCAAT binding transcriptional activator Hap2/3/4/5p complex, suppresses the respiratory defect of yeast shy1 mutants by increasing the expression of nuclear-encoded COX subunits that interact with the mitochondrially encoded Cox1p. Analogously, overexpression of the Hap complex human homologue NF-YA/B/C transcription complex in SURF1-deficient fibroblasts from an LS patient efficiently rescues their COX deficiency."	"Light and electron microscopy characteristics of the muscle of patients with SURF1 gene mutations associated with Leigh disease. Leigh syndrome (LS) is characterised by almost identical brain changes despite considerable causal heterogeneity. SURF1 gene mutations are among the most frequent causes of LS. Although deficiency of cytochrome c oxidase (COX) is a typical feature of the muscle in SURF1-deficient LS, other abnormalities have been rarely described. The aim of the present work is to assess the skeletal muscle morphology coexisting with SURF1 mutations from our own research and in the literature. Muscle samples from 21 patients who fulfilled the criteria of LS and SURF1 mutations (14 homozygotes and 7 heterozygotes of c.841delCT) were examined by light and electron microscopy. Diffuse decreased activity or total deficit of COX was revealed histochemically in all examined muscles. No ragged red fibres (RRFs) were seen. Lipid accumulation and fibre size variability were found in 14 and 9 specimens, respectively. Ultrastructural assessment showed several mitochondrial abnormalities, lipid deposits, myofibrillar disorganisation and other minor changes. In five cases no ultrastructural changes were found. Apart from slight correlation between lipid accumulation shown by histochemical and ultrastructural techniques, no other correlations were revealed between parameters investigated, especially between severity of morphological changes and the patient's age at the biopsy. Histological and histochemical features of muscle of genetically homogenous SURF1-deficient LS were reproducible in detection of COX deficit. Minor muscle changes were not commonly present. Also, ultrastructural abnormalities were not a consistent feature. It should be emphasised that SURF1-deficient muscle assessed in the light and electron microscopy panel may be interpreted as normal if COX staining is not employed."	"Shy1 couples Cox1 translational regulation to cytochrome c oxidase assembly. Cytochrome c oxidase (complex IV) of the respiratory chain is assembled from nuclear and mitochondrially-encoded subunits. Defects in the assembly process lead to severe human disorders such as Leigh syndrome. Shy1 is an assembly factor for complex IV in Saccharomyces cerevisiae and mutations of its human homolog, SURF1, are the most frequent cause for Leigh syndrome. We report that Shy1 promotes complex IV biogenesis through association with different protein modules; Shy1 interacts with Mss51 and Cox14, translational regulators of Cox1. Additionally, Shy1 associates with the subcomplexes of complex IV that are potential assembly intermediates. Formation of these subcomplexes depends on Coa1 (YIL157c), a novel assembly factor that cooperates with Shy1. Moreover, partially assembled forms of complex IV bound to Shy1 and Cox14 can associate with the bc1 complex to form transitional supercomplexes. We suggest that Shy1 links Cox1 translational regulation to complex IV assembly and supercomplex formation."	"Early developmental pathology due to cytochrome c oxidase deficiency is revealed by a new zebrafish model. Deficiency of cytochrome c oxidase (COX) is associated with significant pathology in humans. However, the consequences for organogenesis and early development are not well understood. We have investigated these issues using a zebrafish model. COX deficiency was induced using morpholinos to reduce expression of CoxVa, a structural subunit, and Surf1, an assembly factor, both of which impaired COX assembly. Reduction of COX activity to 50% resulted in developmental defects in endodermal tissue, cardiac function, and swimming behavior. Cellular investigations revealed different underlying mechanisms. Apoptosis was dramatically increased in the hindbrain and neural tube, and secondary motor neurons were absent or abnormal, explaining the motility defect. In contrast, the heart lacked apoptotic cells but showed increasingly poor performance over time, consistent with energy deficiency. The zebrafish model has revealed tissue-specific responses to COX deficiency and holds promise for discovery of new therapies to treat mitochondrial diseases in humans."	"Clinical and molecular survey in 124 Chinese patients with Leigh or Leigh-like syndrome. Leigh syndrome is the most common mitochondrial disorder in children characterized by necrotic lesions in the central nervous system. Both mitochondrial DNA (mtDNA) and nuclear DNA defects in the mitochondrial respiratory chain can lead to this disease. To characterize the clinical and genetic traits of Leigh or Leigh-like syndrome patients in China, 124 unrelated cases were collected between 1992 and 2005. Seventy-seven cases (62.1%) met the typical criteria of Leigh syndrome, including symmetrical bilateral abnormal signals in the basal ganglia, thalamus and brain stem, etc. Other cases (37.9%) belonged to Leigh-like syndrome with atypical clinical or radiological manifestations. Late-onset patients accounted for 20.2%, which is more than previously reported. Movement disorder was the most common symptoms in our patients. Thirty-two patients (25.8%) were confirmed to carry mutant genes. Among them, six cases (4.8%) have been demonstrated to have point mutations in mitochondrial DNA. Two separate patients were detected to have mutations on A8344G and A3243G. The T8993G point mutation was identified in one patient and T8993C in one other patient. SURF1 mutations associated with cytochrome-c oxidase deficiency were identified in 25 patients (20.2%). Four unreported variations have been identified in SURF1 gene from three patients. G604C was found in 22 patients. Only one patient had C214T mutation in the pyruvate dehydrogenase E1alpha subunit gene. In the remaining 92 patients (74.2%), a specific molecular dysfunction or underlying metabolic abnormality could not be identified."	"Differentially expressed genes and morphological changes during lengthened immobilization in rat soleus muscle. To examine the effect of lengthened immobilization on the expression of genes and concomitant morphological changes in soleus muscle, rat hindlimbs were immobilized at the ankle in full dorsiflexion by plaster cast. After removing the muscle (after 1 hr, 1, 4, and 7 days of immobilization), morphology and differential gene expression were analyzed through electron microscopy and differential display reverse transcription-polymerase chain reaction (DDRT-PCR), respectively. At the myotendinous junction (MTJ), a large cytoplasmic space appeared after 1 hr of immobilization and became enlarged over time, together with damaged Z lines. Interfibrillar space was detected after 1 day of immobilization, but diminished after 7 days. At the muscle belly, Z-line streaming and widening were observed following 1 hr of immobilization. Disorganization of myofilaments (misalignment of adjacent sarcomeres, distortion, or absence of Z lines) was detected after 4 days. Furthermore, mitochondrial swelling and cristae disruption were observed after 1 day of stretching. A set of 15 differentially expressed candidate genes was identified through DDRT-PCR. Of 11 known genes, seven (Atp5g3, TOM22, INrf2, Slc25a4, Hdac6, Tpm1, and Sv2b) were up and three (Podxl, Myh1, and Surf1) were down-regulated following immobilization. In the case of Acyp2, 1-day stretching-specific expression was observed. Atp5g3, Slc25a4, TOM22, and Surf1 are mitochondrial proteins related to energy metabolism, except TOM22, which has a chaperone-like activity located in the mitochondrial outer membrane. Together with these, INrf2, Hdac6, Podxl, and Acyp2 are related more or less to stress-induced apoptosis, indicating the responses to apoptotic changes in mitochondria caused by stretching. The expression of both Tpm1 and Myh1, fast twitch isoforms, suggests adaption to the immobilization. These results altogether indicate that lengthened immobilization regulates the expression of several stress/apoptosis-related and muscle-specific genes responsible for the slow-to-fast transition in soleus muscle despite profound muscle atrophy."	"Increased longevity and refractoriness to Ca(2+)-dependent neurodegeneration in Surf1 knockout mice. Leigh syndrome associated with cytochrome c oxidase (COX) deficiency is a mitochondrial disorder usually caused by mutations of SURF1, a gene encoding a putative COX assembly factor. We present here a Surf1-/- recombinant mouse obtained by inserting a loxP sequence in the open reading frame of the gene. The frequency of -/-, +/+ and +/- genotypes in newborn mice followed a mendelian distribution, indicating that the ablation of Surf1 is compatible with postnatal survival. The biochemical and assembly COX defect was present in Surf1(loxP)-/- mice, but milder than in humans. Surprisingly, not only these animals failed to show spontaneous neurodegeneration at any age, but they also displayed markedly prolonged lifespan, and complete protection from Ca(2+)-dependent neurotoxicity induced by kainic acid. Experiments on primary neuronal cultures showed markedly reduced rise of cytosolic and mitochondrial Ca(2+) in Surf1(loxP)-/- neurons, and reduced mortality, compared to controls. The mitochondrial membrane potential was unchanged in KO versus wild-type neurons, suggesting that the effects of the ablation of Surf1 on Ca(2+) homeostasis, and possibly on longevity, may be independent, at least in part, from those on COX assembly and mitochondrial bioenergetics."	"Sequence analysis of the structural nuclear encoded subunits and assembly genes of cytochrome c oxidase in a cohort of 10 isolated complex IV-deficient patients revealed five mutations. The mitochondrial oxidative phosphorylation system is composed of five multiprotein complexes. The fourth complex of this system, cytochrome c oxidase (complex IV), consists of 13 subunits: 3 encoded by mitochondrial DNA and 10 encoded by the nuclear genome. Patients with an isolated complex IV deficiency frequently harbor mutations in nuclear genes encoding for proteins necessary for the assembly of the complex. Strikingly, until now, no mutations have been detected in the nuclear encoded structural subunits of complex IV in these patients. We report the results of a mutational analysis study in patients with isolated complex IV deficiency screened for mutations in all structural genes as well as assembly genes known to cause complex IV deficiency. Four patients carried mutations in the complex IV assembly gene SURF1. One patient harbored a mutation in the COX10 gene involved in heme A synthesis. Mutations in the 10 nuclear encoded structural genes were not present."	"Maternal segmental disomy in Leigh syndrome with cytochrome c oxidase deficiency caused by homozygous SURF1 mutation. Cytochrome c oxidase deficiency (COX) is the most frequent cause of Leigh syndrome (LS), a mitochondrial subacute necrotizing encephalomyelopathy. Most of these LS (COX-) patients show mutations in SURF1 on chromosome 9 (9q34), which encodes a protein essential for the assembly of the COX complex. We describe a family whose first-born boy developed characteristic features of LS. Severe COX deficiency in muscle was caused by a novel homozygous nonsense mutation in SURF1. Segregation analysis of this mutation in the family was incompatible with autosomal recessive inheritance but consistent with a maternal disomy. Haplotype analysis of microsatellite markers confirmed isodisomy involving nearly the complete long arm of chromosome 9 (9q21-9tel). No additional physical abnormalities were present in the boy, suggesting that there are no imprinted genes on the long arm of chromosome 9 which are crucial for developmental processes. This case of segmental isodisomy illustrates that genotyping of parents is crucial for correct genetic counseling."	"The first patient diagnosed with cytochrome c oxidase deficient Leigh syndrome: progress report. Mutations in SURF1, an assembly gene for cytochrome c oxidase (COX), the fourth complex of the oxidative phosphorylation system, are most frequently encountered in patients with COX deficiency. We describe a patient with Leigh syndrome harbouring a mutation in SURF1 who was reported decades ago with a tissue-specific cytochrome c oxidase deficiency."	"Clinical and laboratory survey of 65 Chinese patients with Leigh syndrome. Leigh syndrome is an inherited neurodegenerative disease that emerges in infancy and childhood and presents with a clinically heterogeneous variety of neuromuscular and non-neuromuscular disorders. It can result from the inheritance of mutations in either nuclear or mitochondrial DNA. In the current study, we performed a retrospective study in 65 patients in order to investigate the clinical and genetic characteristics of Leigh syndrome in Chinese patients. Sixty-five unrelated cases (35 men and 30 women) who were hospitalized in the past 12 years were reviewed. Diagnosis was based on both the clinical presentation and the characteristic neuropathologic findings of bilateral symmetric necrotizing lesions in the basal ganglia and brain stem as detected using cranial computed tomography (CT) scan or magnetic resonance imaging (MRI). The differential diagnosis of organic acidurias and fatty acid beta-oxidation defects were performed. Specific point mutations and deletions in mitochondrial DNA (T8993G, T8993C, T9176C, A8344G, A3243G) were screened by PCR-restriction analysis and Southern blot. The SURF1 gene was sequenced. Skeletal muscle biopsies were performed in 17 (26.2%) of the patients. The diagnosis was confirmed by autopsy in 6 (9.2%) patients. The patients had various forms of metabolic encephalomyopathy. Fifty-nine (90.8%) of the patients had the typical neuroradiological features of Leigh syndrome, including symmetrical necrotizing lesions scattered within the basal ganglia, thalamus and brain stem. Twenty (30.8%) patients were confirmed by genetic, biochemical analysis and autopsy. Specific point mutations in mitochondrial DNA were found in 5 cases (7.7%). Of these, the A8344G mutation was detected in 2 patients. The T8993G, T8993C, and A3243G point mutations were identified in 3 other patients, respectively. SURF1 mutations associated with cytochrome c oxidase deficiency were identified in 8 (12.3%) families by DNA sequencing. A G604C mutation was identified in 6 (9.2%) patients. The genotypes of 52 patients remained unknown. Leigh syndrome presents as a diverse array of clinical features and can result from specific mutations in nuclear or mitochondrial DNA. In this study, SURF1 mutations associated with cytochrome c oxidase deficiency were identified in 8 (12.3%) out of 65 patients with Leigh syndrome. It indicates that SURF1 mutations might be a common cause of Leigh syndrome in China. The etiology of Leigh syndrome in Chinese patients represents a persistent challenge to clinicians."	"Retrospective, multicentric study of 180 children with cytochrome C oxidase deficiency. A retrospective, multicenter study of 180 children with cytochrome c oxidase (COX) deficiency analyzed the clinical features, prognosis, and molecular bases of the COX deficiency. Clinical symptoms including failure to thrive, encephalopathy, hypotony, Leigh syndrome, cardiac involvement, and hepatopathy appeared in most patients early after birth or in early childhood. Two thirds of all children died. Biochemical examination revealed an isolated COX deficiency in 101 children and COX deficiency combined with disturbances of other respiratory chain complexes in 79 children. Blood and cerebrospinal fluid lactate increased in 85% and 81% of examined cases, respectively. Pathogenic mutations in mitochondrial or nuclear DNA were established in 75 patients. Mutations in surfeit locus protein 1 gene (SURF1) were found in 47 children with Leigh syndrome; 2bp deletion 845-846delCT was found in 89% of independent alleles. Mutations in a mitochondrial copper-binding protein (SCO2) gene were found in nine children with encephalomyopathy and/or cardiomyopathy; all of them were homozygotes or heterozygotes for 1541G&gt;A mutation. Different mitochondrial DNA (mtDNA) deletion or depletion were found in nine children, mtDNA mutation 3243A&gt;G in six, mtDNA mutation 8363G&gt;A in two children with Leigh syndrome and mtDNA mutations 8344A&gt;G, and 9205-9206delTA in one child each. COX deficiency represents a heterogeneous group of diseases with unfavorable prognosis. Marked prevalence of two nuclear DNA mutations (845-846delCT in the SURF1 gene and 1541G&gt;A in the SCO2 gene) associated with COX deficiency in a Slavonic population suggests the existence of regional differences in the genetic basis of COX deficiency."	"Unusual clinical presentations in four cases of Leigh disease, cytochrome C oxidase deficiency, and SURF1 gene mutations. Mutations in the SURF1 gene are the most frequent causes of Leigh disease with cytochrome c oxidase deficiency. We describe four children with novel SURF1 mutations and unusual features: three had prominent renal symptoms and one had ragged red fibers in the muscle biopsy. We identified five pathogenic mutations in SURF1: two mutations were novel, an in-frame nonsense mutation (834G--&gt;A) and an out-of-frame duplication (820-824dupTACAT). Although renal manifestations have not been described in association with SURF1 mutations, they can be part of the clinical presentation. Likewise, mitochondrial proliferation in muscle (with ragged red fibers) is most unusual in Leigh disease but might be part of an emerging phenotype."	"Hypertrichosis in patients with SURF1 mutations. We present three patients with SURF1 mutations. In addition to Leigh syndrome all patients had hypertrichosis, a clinical sign that is not usually associated with Leigh syndrome. The hypertrichosis was not congenital and it was mainly distributed on the extremities and forehead. In addition to our three patients, we have identified five patients in the literature with hypertrichosis and Leigh syndrome due to SURF1 mutations. Since most patients had onset of hypertrichosis before the diagnosis of Leigh syndrome was made, we suggest that clinicians consider Leigh syndrome in patients with, for example, psychomotor retardation or other unspecific symptoms in combination with hypertrichosis."	"Post-transcriptional silencing and functional characterization of the Drosophila melanogaster homolog of human Surf1. Mutations in Surf1, a human gene involved in the assembly of cytochrome c oxidase (COX), cause Leigh syndrome, the most common infantile mitochondrial encephalopathy, characterized by a specific COX deficiency. We report the generation and characterization of functional knockdown (KD) lines for Surf1 in Drosophila. KD was produced by post-transcriptional silencing employing a transgene encoding a dsRNA fragment of the Drosophila homolog of human Surf1, activated by the UAS transcriptional activator. Two alternative drivers, Actin5C-GAL4 or elav-GAL4, were used to induce silencing ubiquitously or in the CNS, respectively. Actin5C-GAL4 KD produced 100% egg-to-adult lethality. Most individuals died as larvae, which were sluggish and small. The few larvae reaching the pupal stage died as early imagos. Electron microscopy of larval muscles showed severely altered mitochondria. elav-GAL4-driven KD individuals developed to adulthood, although cephalic sections revealed low COX-specific activity. Behavioral and electrophysiological abnormalities were detected, including reduced photoresponsiveness in KD larvae using either driver, reduced locomotor speed in Actin5C-GAL4 KD larvae, and impaired optomotor response as well as abnormal electroretinograms in elav-GAL4 KD flies. These results indicate important functions for SURF1 specifically related to COX activity and suggest a crucial role of mitochondrial energy pathways in organogenesis and CNS development and function."	"Pathogenicity of missense mutations in SURF1 deficiency inducing the Leigh syndrome. Importance in diagnosis. Leigh syndrome with cytochrome oxidase (COX) deficiency has been associated with SURF1 mutations. For patient diagnosis, distinction between neutral polymorphisms and pathogenic missense SURF1 mutations in Leigh syndrome is essential. We show that several missense SURF1 mutations did not allow a stable protein to be expressed. Absence of immunologically reactive SURF1 is, therefore, helpful to demonstrate their pathogenicity. In addition, we show that out of two previously described missense mutations housed by the same allele, only one, the T737 C was pathogenic. Indeed, transfection of T737 C mutated SURF1 in SURF1-deficient cells did not restore normal SURF1 stability and COX activity. On the contrary, the G604 C-mutated SURF1 did it and, hence, is a neutral variant."	"Tissue-specific cytochrome c oxidase assembly defects due to mutations in SCO2 and SURF1. The biogenesis of eukaryotic COX (cytochrome c oxidase) requires several accessory proteins in addition to structural subunits and prosthetic groups. We have analysed the assembly state of COX and SCO2 protein levels in various tissues of six patients with mutations in SCO2 and SURF1. SCO2 is a copper-binding protein presumably involved in formation of the Cu(A) centre of the COX2 subunit. The function of SURF1 is unknown. Immunoblot analysis of native gels demonstrated that COX holoenzyme is reduced to 10-20% in skeletal muscle and brain of SCO2 and SURF1 patients and to 10-30% in heart of SCO2 patients, whereas liver of SCO2 patients' contained normal holoenzyme levels. The steady-state levels of mutant SCO2 protein ranged from 0 to 20% in different SCO2 patient tissues. In addition, eight distinct COX subcomplexes and unassembled subunits were found, some of them identical with known assembly intermediates of the human enzyme. Heart, brain and skeletal muscle of SCO2 patients contained accumulated levels of the COX1.COX4.COX5A subcomplex, three COX1-containing subcomplexes, a COX4.COX5A subcomplex and two subcomplexes composed of only COX4 or COX5A. The accumulation of COX1.COX4.COX5A subcomplex, along with the virtual absence of free COX2, suggests that the lack of the Cu(A) centre may result in decreased stability of COX2. The appearance of COX4.COX5A subcomplex indicates that association of these nucleus-encoded subunits probably precedes their addition to COX1 during the assembly process. Finally, the consequences of SCO2 and SURF1 mutations suggest the existence of tissue-specific functional differences of these proteins that may serve different tissue-specific requirements for the regulation of COX biogenesis."	"[Cytochrome c oxydase-deficient Leigh syndrome with homozygous mutation in SURF1 gene]. Leigh syndrome is a heterogeneous disorder, usually due to a defect in oxidative metabolism. Mutations in SURF1 gene have been identified in patients with cytochrome c oxidase deficiency. We report a homozygous splice site deletion [516-2_516-1delAG] in a young girl presenting with cytochrome c oxidase-deficient Leigh syndrome. Identification of molecular defect is indispensable for genetic counselling and prenatal diagnosis."	"Novel mutations in COX15 in a long surviving Leigh syndrome patient with cytochrome c oxidase deficiency. Isolated cytochrome c oxidase (COX) deficiency is usually associated with mutations in several factors involved in the biogenesis of COX. We describe a patient with atypical, long surviving Leigh syndrome carrying two novel mutations in the COX15 gene, which encodes an enzyme involved in the biosynthesis of heme A. Only two COX15 mutated patients, one with severe neonatal cardiomyopathy, the other with rapidly fatal Leigh syndrome, have been described to date. In contrast, our patient had a slowly progressive course with no heart involvement. COX deficiency was mild in muscle and a normal amount of fully assembled COX was present in cultured fibroblasts. The clinical and biochemical phenotypes in COX15 defects are more heterogeneous than in other conditions associated with COX deficiency, such as mutations in SURF1."	"Serological identification of tumor antigens of esophageal squamous cell carcinoma. Autoantibodies are often detected in the patients with esophageal cancer. We applied serological analysis of recombinant cDNA expression libraries (SEREX) to a case of esophageal squamous cell carcinoma in order to identify tumor antigens. A cDNA library derived from an esophageal cancer cell line was bacterially expressed and screened for interaction with antibodies in five allogeneic sera of patients with esophageal squamous cell carcinoma. To examine the specific immunoreactivity of the antigens, sera from 16 more patients with esophageal squamous cell carcinoma, 16 patients with gastric cancer, 16 patients with colon cancer, 16 patients with breast cancer and 37 healthy volunteers were screened. We identified 11 independent cDNA clones that potentially encoded esophageal cancer tumor antigens. The identified cDNA clones were SURF1, HOOK2, CENP-F, ZIC2, hCLA-iso, Ki-1/57, enigma, HCA25a, SPK and two EST clones named LOC146223 and AGENCOURT_7565913. The sero-positive rates of antibodies against SURF1 (48%), LOC146223 (38%), HOOK2 (14%) and AGENCOURT_7565913 (14%) were significantly higher in esophageal cancer patients than in healthy controls. At least one of these antibodies was detected in 18 (86%) of 21 sera from esophageal cancer patients. A disease-specific humoral immune response against SURF1, LOC146223, HOOK2 or AGENCOURT_7565913 was observed in most patients with esophageal squamous cell carcinoma. Antibodies against these SEREX antigens may represent a pool of candidates for serum tumor markers of esophageal squamous cell carcinoma."	"Mss51p and Cox14p jointly regulate mitochondrial Cox1p expression in Saccharomyces cerevisiae. Mutations in SURF1, the human homologue of yeast SHY1, are responsible for Leigh's syndrome, a neuropathy associated with cytochrome oxidase (COX) deficiency. Previous studies of the yeast model of this disease showed that mutant forms of Mss51p, a translational activator of COX1 mRNA, partially rescue the COX deficiency of shy1 mutants by restoring normal synthesis of the mitochondrially encoded Cox1p subunit of COX. Here we present evidence showing that Cox1p synthesis is reduced in most COX mutants but is restored to that of wild type by the same mss51 mutation that suppresses shy1 mutants. An important exception is a null mutation in COX14, which by itself or in combination with other COX mutations does not affect Cox1p synthesis. Cox14p and Mss51p are shown to interact with newly synthesized Cox1p and with each other. We propose that the interaction of Mss51p and Cox14p with Cox1p to form a transient Cox14p-Cox1p-Mss51p complex functions to downregulate Cox1p synthesis. The release of Mss51p from the complex occurs at a downstream step in the assembly pathway, probably catalyzed by Shy1p."	"Decreased affinity for oxygen of cytochrome-c oxidase in Leigh syndrome caused by SURF1 mutations. Mutations in the gene SURF1 prevent synthesis of cytochrome-c oxidase (COX)-specific assembly protein and result in a fatal neurological disorder, Leigh syndrome. Because this severe COX deficiency presents with barely detectable changes of cellular respiratory rates under normoxic conditions, we analyzed the respiratory response to low oxygen in cultured fibroblasts harboring SURF1 mutations with high-resolution respirometry. The oxygen kinetics was quantified by the partial pressure of oxygen (PO2) at half-maximal respiration rate (P50) in intact coupled cells and in digitonin-permeabilized uncoupled cells. In both cases, the P50 in patients was elevated 2.1- and 3.3-fold, respectively, indicating decreased affinity of COX for oxygen. These results suggest that at physiologically low intracellular PO2, the depressed oxygen affinity may lead in vivo to limitations of respiration, resulting in impaired energy provision in Leigh syndrome patients."	"Novel SURF1 mutation in a child with subacute encephalopathy and without the radiological features of Leigh Syndrome. Mutations in SURF1, a gene involved in cytochrome-c oxidase (COX) assembly, cause COX deficiency and Leigh Syndrome (LS). Typical presentation is in the first year of life, with failure to thrive, psychomotor regression, ataxia, signs of brainstem dysfunction, and peripheral neuropathy. Progression is rapid and patients usually die of respiratory failure before 2 years of age. LS is characterized by symmetrical bilateral lesions in the brainstem and basal ganglia, revealed premortem as signal hyperintensities in T2-weighted MRI imaging. Here, we describe a 10-year-old boy with a novel mutation in SURF1 associated with an unusually mild clinical course. At 39 months, there were no MRI lesions, and a follow-up MRI at 8 years of age showed only brainstem and cerebellar involvement without lesions in the basal ganglia or subthalamic nuclei. These data confirm that the spectrum of MRI findings in LS is variable and that SURF1 mutations should be considered in patients with encephalomyopathy and COX deficiency even when early MRI findings are negative."	"Genetic defects of cytochrome c oxidase assembly. Cytochrome c oxidase (COX), the terminal enzyme of the mitochondrial respiratory chain, is one of the key functional and regulatory sites of the mammalian energy metabolism. Owing to the importance of the enzyme, pathogenetic mutations affecting COX frequently result in severe, often fatal metabolic disorders. No satisfactory therapy is currently available so that the treatment remains largely symptomatic and does not improve the course of the disease. While only few genetic defects of COX are caused by mutations in mitochondrial genome, during the last five years a large number of pathogenetic mutations in nuclear genes have been discovered. All these mutations are located in genes encoding COX-specific assembly proteins including SURF1, SCO1, SCO2, COX10, and COX15. Despite the identification of increasing number of mutations, their precise etiopathogenetic mechanisms, which are necessary for the development of future therapeutic protocols, still remain to be elucidated. This review summarizes recent developments, including our efforts in elucidation of the molecular basis of human mitochondrial diseases due to specific defects of COX with special focus on SURF1 assembly protein."	"Diagnostic difficulties with common SURF1 mutations in patients with cytochrome oxidase-deficient Leigh syndrome. In three unrelated patients with systemic cytochrome oxidase deficiency resulting from mutations in the SURF1 gene, the same mutation in the splice donor site of intron 3 was identified. All three patients were compound heterozygotes, two for the common insertion/deletion mutation in exon 4. In all three cases, complete definition of the causative mutations was only resolved by combined analysis of cDNA and genomic DNA. Several factors were identified that contributed to the diagnostic difficulties: preferential amplification of deleted cDNA, significant formation of heteroduplexes in cDNA PCR amplification and unequal representation of heterozygous peaks in genomic DNA sequences. These patients emphasize the need to perform mutation analysis on both cDNA and genomic DNA wherever possible."	"Genotypes and clinical phenotypes in children with cytochrome-c oxidase deficiency. Cytochrome c oxidase (COX) deficiency has been associated with a wide spectrum of clinical features and may be caused by mutations in different genes of both the mitochondrial and the nuclear DNA. In an attempt to correlate the clinical phenotype with the genotype in 16 childhood cases, mtDNA was analysed for deletion, depletion, and mutations in the three genes encoding COX subunits and the 22 tRNA genes. Furthermore, nuclear DNA was analysed for mutations in the SURF1, SCO2, COX10, and COX17 genes and cases with mtDNA depletion were analysed for mutations in the TK2 gene. SURF1-mutations were identified in three out of four cases with Leigh syndrome while a mutation in the mitochondrial tRNA (trp) gene was identified in the fourth. One case with mtDNA depletion had mutations in the TK2 gene. In two cases with leukoencephalopathy, one case with encephalopathy, five cases with fatal infantile myopathy and cardiomyopathy, two cases with benign infantile myopathy, and one case with mtDNA depletion, no mutations were identified. We conclude that COX deficiency in childhood should be suspected in a wide range of clinical settings and although an increasing number of genetic defects have been identified, the underlying mutations remain unclear in the majority of the cases."	"Cytochrome c oxidase subassemblies in fibroblast cultures from patients carrying mutations in COX10, SCO1, or SURF1. Cytochrome c oxidase contains two redox-active copper centers (Cu(A) and Cu(B)) and two redox-active heme A moieties. Assembly of the enzyme relies on several assembly factors in addition to the constituent subunits and prosthetic groups. We studied fibroblast cultures from patients carrying mutations in the assembly factors COX10, SCO1, or SURF1. COX10 is involved in heme A biosynthesis. SCO1 is required for formation of the Cu(A) center. The function of SURF1 is unknown. Immunoblot analysis of native gels demonstrated severely decreased levels of holoenzyme in the patient cultures compared with controls. In addition, the blots revealed the presence of five subassemblies: three subassemblies involving the core subunit MTCO1 but apparently no other subunits; a subassembly containing subunits MTCO1, COX4, and COX5A; and a subassembly containing at least subunits MTCO1, MTCO2, MTCO3, COX4, and COX5A. As some of the subassemblies correspond to known assembly intermediates of human cytochrome c oxidase, we think that these subassemblies are probably assembly intermediates that accumulate in patient cells. The MTCO1.COX4.COX5A subassembly was not detected in COX10-deficient cells, which suggests that heme A incorporation into MTCO1 occurs prior to association of MTCO1 with COX4 and COX5A. SCO1-deficient cells contained accumulated levels of the MTCO1.COX4.COX5A subassembly, suggesting that MTCO2 associates with the MTCO1.COX4.COX5A subassembly after the Cu(A) center of MTCO2 is formed. Assembly in SURF1-deficient cells appears to stall at the same stage as in SCO1-deficient cells, pointing to a role for SURF1 in promoting the association of MTCO2 with the MTCO1.COX4.COX5A subassembly."	"Mss51p promotes mitochondrial Cox1p synthesis and interacts with newly synthesized Cox1p. The post-transcriptional role of Mss51p in mitochondrial gene expression is of great interest since MSS51 mutations suppress the respiratory defect caused by shy1 mutations. SHY1 is a Saccharomyces cerevisiae homolog of human SURF1, which when mutated causes a cytochrome oxidase assembly defect. We found that MSS51 is required for expression of the mitochondrial reporter gene ARG8(m) when it is inserted at the COX1 locus, but not when it is at COX2 or COX3. Unlike the COX1 mRNA-specific translational activator PET309, MSS51 has at least two targets in COX1 mRNA. MSS51 acts in the untranslated regions of the COX1 mRNA, since it was required to synthesize Arg8p when ARG8(m) completely replaced the COX1 codons. MSS51 also acts on a target specified by the COX1 coding region, since it was required to translate either COX1 or COX1:: ARG8(m) coding sequences from an ectopic COX2 locus. Mss51p was found to interact physically with newly synthesized Cox1p, suggesting that it could coordinate Cox1p synthesis with insertion into the inner membrane or cytochrome oxidase assembly."	"SURF1 gene mutations in Polish patients with COX-deficient Leigh syndrome. One of the most frequent forms of Leigh syndrome (LS), a severe neurodegenerative, genetically heterogenous disease, is associated with cytochrome c oxidase (COX) deficiency. No mutations in any of the 13 polypeptide subunits of human COX have been detected in LS patients. Recently, SURF1, a positional candidate gene for LS has been identified on chromosome 9q34. We present the identification of SURF1 mutations in a randomly chosen group of Polish patients with a classical form of LS. Sequence analysis revealed the presence of a novel 704T--&gt;C transition (Met235Thr), and two recurrent dinucleotide deletions (758delCA, 845delCT), as well as one novel polymorphic 573C--&gt;G transversion (Thr191Thr). 845delCT was identified in 66% of all our patients in homozygous or heterozygous form. Our study confirms the recent observations that SURF1 is consistently involved in disorders of the mitochondrial respiratory chain in patients with typical Leigh syndrome."	"SURF1 gene mutations in three cases with Leigh syndrome and cytochrome c oxidase deficiency. Leigh syndrome (LS) is one of the most frequent forms of mitochondrial disease in infancy and childhood. Mutations in SURF1 have been shown to be an important cause of LS with cytochrome c oxidase (COX) deficiency. The authors have identified four pathogenic mutations including a novel, in-frame, 15-bp tandem duplication (806-820) in exon 8 and a novel 751+1G&gt;A splice site mutation in SURF1 in three cases of LS with COX deficiency."	"Functional alteration of cytochrome c oxidase by SURF1 mutations in Leigh syndrome. Subacute necrotising encephalomyopathy (Leigh syndrome) due to cytochrome c oxidase (COX) deficiency is often caused by mutations in the SURF1 gene, encoding the Surf1 protein essential for COX assembly. We have investigated five patients with different SURF1 mutations resulting in the absence of Surf1 protein. All of them presented with severe and generalised COX defect. Immunoelectrophoretic analysis of cultured fibroblasts revealed 85% decrease of the normal-size COX complexes and significant accumulation of incomplete COX assemblies of 90-120 kDa. Spectrophotometric assay of COX activity showed a 70-90% decrease in lauryl maltoside (LM)-solubilised fibroblasts. In contrast, oxygen consumption analysis in whole cells revealed only a 13-31% decrease of COX activity, which was completely inhibited by detergent in patient cells but not in controls. In patient fibroblasts ADP-stimulated respiration was 50% decreased and cytofluorometry showed a significant decrease of mitochondrial membrane potential DeltaPsi(m) in state 4, as well as a 2.4-fold higher sensitivity of DeltaPsi(m) to uncoupler. We conclude that the absence of the Surf1 protein leads to the formation of incomplete COX complexes, which in situ maintain rather high electron-transport activity, while their H(+)-pumping is impaired. Enzyme inactivation by the detergent in patient cells indicates instability of incomplete COX assemblies."	"Mutations in COX10 result in a defect in mitochondrial heme A biosynthesis and account for multiple, early-onset clinical phenotypes associated with isolated COX deficiency. Deficiencies in the activity of cytochrome c oxidase (COX) are an important cause of autosomal recessive respiratory chain disorders. Patients with isolated COX deficiency are clinically and genetically heterogeneous, and mutations in several different assembly factors have been found to cause specific clinical phenotypes. Two of the most common clinical presentations, Leigh Syndrome and hypertrophic cardiomyopathy, have so far only been associated with mutations in SURF1 or SCO2 and COX15, respectively. Here we show that expression of COX10 from a retroviral vector complements the COX deficiency in a patient with anemia and Leigh Syndrome, and in a patient with anemia, sensorineural deafness and fatal infantile hypertrophic cardiomyopathy. A partial rescue was also obtained following microcell-mediated transfer of mouse chromosomes into patient fibroblasts. COX10 functions in the first step of the mitochondrial heme A biosynthetic pathway, catalyzing the conversion of protoheme (heme B) to heme O via the farnesylation of a vinyl group at position C2. Heme A content was reduced in mitochondria from patient muscle and fibroblasts in proportion to the reduction in COX enzyme activity and the amount of fully assembled enzyme. Mutation analysis of COX10 identified four different missense alleles, predicting amino acid substitutions at evolutionarily conserved residues. A topological model places these residues in regions of the protein shown to have important catalytic functions by mutation analysis of a prokaryotic ortholog. Mutations in COX10 have previously been reported in a single family with tubulopathy and leukodystrophy. This study shows that mutations in this gene can cause nearly the full range of clinical phenotypes associated with early onset isolated COX deficiency."	"Leigh Syndrome with COX deficiency and SURF1 gene mutations: MR imaging findings. Mutations in the nuclear SURF1 gene are specifically associated with cytochrome c oxidase (COX)-deficient Leigh syndrome. MR imaging abnormalities in three children with this condition involved the subthalamic nuclei, medulla, inferior cerebellar peduncles, and substantia nigra in all cases. The dentate nuclei and central tegmental tracts were involved in two cases each (all instances), and the putamina, interpeduncular nucleus, and pallido-cortical-nigro-cortical tracts in one. MR imaging pattern recognition can suggest an underlying COX deficiency and should prompt investigators to search for SURF1 gene mutations."	"Leigh syndrome with cytochrome-c oxidase deficiency and a single T insertion nt 5537 in the mitochondrial tRNATrp gene. We report a nine-year-old boy with the features of Leigh syndrome (LS) and a severe cytochrome-c oxidase (COX) deficiency with a single thymidine insertion at nucleotide position 5537 (T 5537i) in the tRNA Trp gene of mitochondrial DNA. During infancy the boy was irritable and hypotonus was noticed. Early motor development was delayed, although mental development seemed normal until eight months of age. Early neurological signs were nystagmus, hypertonus and optic atrophy. Severe seizures and mental retardation developed subsequently. Major findings on neuroradiological investigation were from the brainstem, thalami and white matter compatible with LS. Spectrophotometric analysis of skeletal muscle mitochondria showed a profound COX deficiency and a marked complex I deficiency. Enzyme-histochemical analysis showed reduced COX activity in the majority of the muscle fibres. There were no ragged red fibres. The T 5537i mutation was found in a high proportion (&gt; 95 %) in blood, liver and muscle tissue of the patient and in blood of the patient's mother (81 %). This mutation has previously been described in one family in which one child had a very high proportion of the T 5537i mutation and clinical features of LS. We conclude that, although mtDNA mutations are considered to be rare in LS with COX deficiency, the T 5537i mutation should be screened for in cases of LS with COX deficiency when SURF1 gene mutations have been excluded, especially when complex I activity is also decreased."	"Constitutive knockout of Surf1 is associated with high embryonic lethality, mitochondrial disease and cytochrome c oxidase deficiency in mice. We report here the creation of a constitutive knockout mouse for SURF1, a gene encoding one of the assembly proteins involved in the formation of cytochrome c oxidase (COX). Loss-of-function mutations of SURF1 cause Leigh syndrome associated with an isolated and generalized COX deficiency in humans. The murine phenotype is characterized by the following hallmarks: (1) high post-implantation embryonic lethality, affecting approximately 90% of the Surf1(-/-) individuals; (2) early-onset mortality of post-natal individuals; (3) highly significant deficit in muscle strength and motor performance; (4) profound and isolated defect of COX activity in skeletal muscle and liver, and, to a lesser extent, heart and brain; (5) morphological abnormalities of skeletal muscle, characterized by reduced histochemical reaction to COX and mitochondrial proliferation; (6) no obvious abnormalities in brain morphology, reflecting the virtual absence of overt neurological symptoms. These results indicate a function for murine Surf1 protein (Surf1p) specifically related to COX and recapitulate, at least in part, the human phenotype. This is the first mammalian model for a nuclear disease gene of a human mitochondrial disorder. Our model constitutes a useful tool to investigate the function of Surf1p, help understand the pathogenesis of Surf1p deficiency in vivo, and evaluate the efficacy of treatment."	"Mutation screening in patients with isolated cytochrome c oxidase deficiency. Cytochrome c oxidase (COX) deficiency has been associated with a variety of clinical conditions and can be due to mutations in nuclear or mitochondrial genes. Despite recent progress in our understanding of the molecular bases of COX deficiency, the genetic defect remains elusive in many cases. We performed mutation screening in 30 patients with biochemical evidence of isolated COX deficiency and heterogeneous clinical phenotypes. Sixteen patients had various forms of encephalomyopathy, and six of these had the neuroradiological features of Leigh syndrome. Four patients had encephalohepatopathy, six had hypertrophic cardiomyopathy, and four had other phenotypes. We studied the three mtDNA genes encoding COX subunits, the 22 mtDNA tRNA genes, and seven COX assembly genes: SCO1, SCO2, SURF1, COX10, COX11, COX15, and COX17. We report two novel pathogenic SURF1 mutations in a patient with Leigh syndrome and one novel SCO2 mutation in a patient with hypertrophic cardiomyopathy. These data show that heterogeneous clinical phenotypes are associated with COX deficiency, that mutations in mtDNA COX genes are rare, and that mutations in additional genes remain to be identified."	"[A new missense mutation of 574C&gt;T in the SURF1 gene--biochemical and molecular genetic study in seven children with Leigh syndrome]. Leigh disease, subacute necrotizing encephalopathy, is a serious mitochondrial disorder of energy-providing metabolism. Clinical presentation usually starts in infancy as a progressive neurodegenerative disorder with retardation and regression of psychomotor development. The most common form of the disease is associated with deficiency of the cytochrome c oxidase (COX) due to SURF1 gene mutations. SURF1 encodes an inner mitochondrial membrane protein involved in the biogenesis and assembly of COX complex. The activities of mitochondrial respiratory chain complexes were determined spectrophotometrically in isolated lymphocytes, platelets, muscle mitochondria and cultured fibroblasts. Generalised decrease of COX activity was found in 7 children with typical symptoms of Leigh disease. Two-dimensional electrophoresis of mitochondrial proteins showed altered assembly pattern of COX. As demonstrated by Western blot analysis of mitochondria or mitoplasts with anti-hSurf1 antibodies (gift from Dr. E. A. Shoubridge), the Surf1 protein was absent in all 5 investigated patients. Molecular analyses in the 7 patients revealed the presence of mutations in the SURF1 gene--six patients harboured previously described SURF1 mutations, a new mutation 574C &gt; T was found in one patient. The co-operation among the patient's families, clinicians and specialised laboratories is essential for the diagnostic of mitochondrial disorders. The treatment of Leigh syndrome is only symptomatic and the prognosis of the disease is unfavourable. The diagnostics on biochemical and molecular level is necessary for genetic counselling and prenatal diagnosis in affected families."	"A novel mutation in the SURF1 gene in a child with Leigh disease, peripheral neuropathy, and cytochrome-c oxidase deficiency. We report a 16-month-old boy with psychomotor regression, muscle hypotonia, peripheral neuropathy, and lactic acidosis. Brain magnetic resonance imaging showed a bilateral abnormal signal in the substantia nigra and in the subthalamic nucleus, suggestive of Leigh disease. Histochemical analysis of skeletal muscle showed decreased cytochrome-c oxidase activity. Biochemical analysis of respiratory chain enzymes in muscle homogenate and in cultured fibroblasts showed isolated cytochrome-c oxidase deficiency. Western blot analysis in fibroblasts showed the absence of Surf1 protein. Genetic analysis of the SURF1 gene revealed that the patient was compound heterozygous for a previously reported mutation at the splice-junction site of intron 3 (240 + 1G &gt; T), and for a novel 4-bp deletion in exon 6 (531_534delAAAT). Our data further enlarge the spectrum of mutations in SURF1 gene in patients with Leigh disease and cytochrome-c oxidase deficiency, contributing to better characterization of the clinical and neuroradiologic features of this group of patients for genotype-phenotype correlations."	"[Cytochrome c oxidase deficiency--SURF1 mutations]. NA"	"Compulsory hyperventilation and hypocapnia of patients with Leigh syndrome associated with SURF1 gene mutations as a cause of low serum bicarbonates. Experimental data show that elevation of intracellular pH leads to severe lesions of brain cells. Acidification of intracellular fluid by accumulation of lactate may compensate the effect of respiratory alkalosis. Increased serum pH, and low PCO2, associated with hyperlactataemia (sometimes incorrectly called 'acidosis') have been reported in children with Leigh syndrome (LS). The aim of the study was to determine whether respiratory alkalosis is characteristic of patients with LS due to SURF1 mutations. All venous blood gas data (88 samples) of 18 spontaneously breathing LS patients with recently established SURF1 mutations, hospitalized during 1986-2000, were retrospectively reviewed. The data of an affected boy who survived on a respirator for more than 3 months (79 daily samples) were analysed separately. In spontaneously breathing patients, the data indicated that the patients had compensated or partially compensated respiratory alkalosis (pH 7.388+/-0.060, Pco2 29.2+/-5.7 mmHg, HCO3- 17.4+/-3.0 mmol/L, BE -6.7+/-3.2 mmol/L). Bicarbonate excretion was detected in urine of two examined LS cases in spite of decreased serum HCO3-. In the affected child maintained on a respirator, simple manipulation of the inspired CO2 tension to establish a normal pressure of 35-45 mmHg automatically caused an increase of serum HCO3- concentration to a normal value of 26.3+/-2.9 mmol/L (and BE to +2.2+/-3.1 mmol/L), in spite of cytochrome oxidase (COX) deficiency due to a confirmed SURF1 mutation. We suggest that respiratory alkalosis (hypocapnia) of Leigh syndrome patients with SURF1 mutations results from compulsory hyperventilation and speculate that hypocapnia may contribute to Leigh-like brain damage in the SURF1-deficient patients as well as in other patients presenting with Leigh-like syndrome. The supposition that accumulation of lactate may protect the brain of LS patients from alkalosis-related damage requires further study. Avoidance of any factors stimulating hyperventilation of LS patients and caution when attempting to correct low plasma bicarbonate are suggested."	"MRI in Leigh syndrome with SURF1 gene mutation. NA"	"Shy1p is necessary for full expression of mitochondrial COX1 in the yeast model of Leigh's syndrome. SHY1 codes for a mitochondrial protein required for full expression of cytochrome oxidase (COX) in Saccharomyces cerevisiae. Mutations in the homologous human gene (SURF1) have been reported to cause Leigh's syndrome, a neurological disease associated with COX deficiency. The function of Shy1p/Surf1p is poorly understood. Here we have characterized revertants of shy1 null mutants carrying extragenic nuclear suppressor mutations. The steady-state levels of COX in the revertants is increased by a factor of 4-5, accounting for their ability to respire and grow on non-fermentable carbon sources at nearly wild-type rates. The suppressor mutations are in MSS51, a gene previously implicated in processing and translation of the COX1 transcript for subunit 1 (Cox1) of COX. The function of Shy1p and the mechanism of suppression of shy1 mutants were examined by comparing the rates of synthesis and turnover of the mitochondrial translation products in wild-type, mutant and revertant cells. We propose that Shy1p promotes the formation of an assembly intermediate in which Cox1 is one of the partners."	"Cytochrome c oxidase deficiency. Cytochrome c oxidase (COX) is the terminal enzyme of the mitochondrial respiratory chain, catalyzing the transfer of electrons from reduced cytochrome c to molecular oxygen. It is composed of 13 structural subunits, three of which are encoded in mtDNA and form the catalytic core of the enzyme. In addition to these structural subunits, a large number of accessory factors are necessary for the assembly and maintenance of the active holoenzyme complex. Most isolated COX deficiencies are inherited as autosomal recessive disorders; mutations in the mtDNA-encoded COX subunit genes are relatively rare. These mutations are associated with a wide spectrum of clinical phenotypes ranging from isolated myopathy to multisystem disease, with onset from late childhood to adulthood. Autosomal recessive COX deficiencies generally have a very early age of onset and a fatal outcome. Several clinical presentations have been described including Leigh Syndrome, hypertrophic cardiomyopathy and myopathy, and fatal infantile lactic acidosis. Surprisingly, mutations in the nuclear-encoded structural COX subunits have not been found in association with any of these phenotypes. Mutations have, however, been identified in several COX assembly factors: SURF1 (Leigh Syndrome), SCO2 (hypertrophic cardiomyopathy), SCO1 (hepatic failure, ketoacidotic coma), and COX10 (encephalopathy, tubulopathy). As all of these assembly factors are ubiquitously expressed, the molecular basis for the different clinical presentations remains unexplained. Although the genetic defects in the majority of patients with COX deficiency are unknown, it is likely that most will be solved in the near future using functional complementation techniques."	"A novel mutation in SURF1 causes skipping of exon 8 in a patient with cytochrome c oxidase-deficient leigh syndrome and hypertrichosis. Leigh syndrome is a rare pediatric neurodegenerative disorder attributed to impaired mitochondrial energy metabolism. Mutations in SURF1 have been described in several patients with Leigh syndrome associated with cytochrome c oxidase deficiency. We report a new 18-bp deletion (821del18), spanning the splice donor junction of exon 8 of SURF1, in an infant presenting with cytochrome c oxidase-deficient Leigh syndrome and hypertrichosis. cDNA sequencing demonstrated that this deletion results in a messenger lacking exon 8. RT-PCR experiments suggested a rapid degradation of the aberrant mRNA species from the 5'-end."	"Prenatal diagnosis of respiratory chain deficiency by direct mutation screening. Respiratory chain deficiency (RCD) is responsible for a clinically heterogeneous group of early-onset untreatable disorders. Enzymological prenatal diagnosis (PD) can only be offered to a fraction of families. Moreover, due to the two-fold genetic origin of the respiratory chain (nuclear and mitochondrial DNA) and owing to the large number of nuclear genes involved in the respiratory chain assembly, maintenance and functioning, the identification of the disease causing gene in a given family remains challenging. Here, we report on PD of RCD by direct screening of NDUFV1, SDH-Fp, SCO1 and SURF1 mutations in five unrelated families with complex I, II and IV deficiency, respectively. The identification of the disease-causing gene in a given family with RCD is a major issue to provide both adequate genetic counselling and early, reliable PD."	"A SURF1 gene mutation presenting as isolated leukodystrophy. Mitochondrial respiratory chain defects are increasingly recognized in patients with leukodystrophy. We report the first case of leukodystrophy with systemic cytochrome oxidase deficiency caused by a loss of function mutation in the SURF1 gene in a 2-year-old girl presenting with failure to thrive, global neurodevelopmental regression, and lactic acidosis. Although all previously reported mutations in the SURF1 gene have been found in patients with cytochrome oxidase (COX)-deficient Leigh syndrome, the phenotype associated with SURF1 protein deficiency should be extended to include leukodystrophy."	"Shy1p occurs in a high molecular weight complex and is required for efficient assembly of cytochrome c oxidase in yeast. Surf1p is a protein involved in the assembly of mitochondrial respiratory chain complexes. However its exact role in this process remains to be elucidated. We studied SHY1, the yeast homologue of SURF1, with an aim to obtain a better understanding of the molecular pathogenesis of cytochrome c oxidase (COX) deficiency in SURF1 mutant cells from Leigh syndrome patients. Assembly of COX was analysed in a shy1 null mutant strain by two-dimensional polyacrylamide gel electrophoresis (2D-PAGE). Steady-state levels of the enzyme were found to be strongly reduced, the total amount of assembled complex being approximately 30% of control. The presence of a significant amount of holo-COX in the SHY1-disruptant strain suggests that Shy1p may either facilitate assembly of the enzyme, or increase its stability. However, our observations, based on 2D-PAGE analysis of mitochondria labelled in vitro, now provide the first direct evidence that COX assembly is impaired in a Deltashy1 strain. COX enzyme assembled in the absence of Shy1p appears to be structurally and enzymically normal. The in vitro labelling studies additionally indicate that mitochondrial translation is significantly increased in the shy1 null mutant strain, possibly reflecting a compensatory mechanism for reduced respiratory capacity. Protein interactions of both Shy1p and Surf1p are implied by their appearance in a high molecular weight complex of about 250 kDa, as shown by 2D-PAGE."	"Mutations in the SURF1 gene associated with Leigh syndrome and cytochrome C oxidase deficiency. Cytochrome c oxidase (COX) deficiency is one of the major causes of Leigh Syndrome (LS), a fatal encephalopathy of infancy or childhood, characterized by symmetrical lesions in the basal ganglia and brainstem. Mutations in the nuclear genes encoding COX subunits have not been found in patients with LS and COX deficiency, but mutations have been identified in SURF1. SURF1 encodes a factor involved in COX biogenesis. To date, 30 different mutations have been reported in 40 unrelated patients. We aim to provide an overview of all known mutations in SURF1, and to propose a common nomenclature. Twelve of the mutations were insertion/deletion mutations in exons 1, 4, 6, 8, and 9; 10 were missense/nonsense mutations in exons 2, 4, 5, 7, and 8; and eight were detected at splicing sites in introns 3 to 7. The most frequent mutation was 312_321del 311_312insAT which was found in 12 patients out of 40. Twenty mutations have been described only once. We also list all polymorphisms discovered to date."	"Mutations in SURF1 are not specifically associated with Leigh syndrome. NA"	"New splicing-site mutations in the SURF1 gene in Leigh syndrome patients. The gene SURF1 encodes a factor involved in the biogenesis of cytochrome c oxidase, the last complex in the respiratory chain. Mutations of the SURF1 gene result in Leigh syndrome and severe cytochrome c oxidase deficiency. Analysis of seven unrelated patients with cytochrome c oxidase deficiency and typical Leigh syndrome revealed different SURF1 mutations in four of them. Only these four cases had associated demyelinating neuropathy. Three mutations were novel splicing-site mutations that lead to the excision of exon 6. Two different novel heterozygous mutations were found at the same guanine residue at the donor splice site of intron 6; one was a deletion, whereas the other was a transition [588+1G&gt;A]. The third novel splicing-site mutation was a homozygous [516-2_516-1delAG] in intron 5. One patient only had a homozygous polymorphism in the middle of the intron 8 [835+25C&gt;T]. Western blot analysis showed that Surf1 protein was absent in all four patients harboring mutations. Our studies confirm that the SURF1 gene is an important nuclear gene involved in the cytochrome c oxidase deficiency. We also show that Surf1 protein is not implicated in the assembly of other respiratory chain complexes or the pyruvate dehydrogenase complex."	"The incidence of mitochondrial encephalomyopathies in childhood: clinical features and morphological, biochemical, and DNA abnormalities. In this study we present incidence, point prevalence, and mortality figures of mitochondrial encephalomyopathies in a population-based study of children from western Sweden. Through the screening of registers and review of medical records, we identified 32 patients under 16 years of age from the study population who were diagnosed between January 1, 1984, and December 31, 1998. The incidence of mitochondrial encephalomyopathies in preschool children (&lt;6 years of age) was 1 out of 11,000. The preschool incidence of Leigh's syndrome was 1 out of 32,000, and the preschool incidences of both Alper's syndrome and infantile mitochondrial myopathy with cytochrome C oxidase deficiency were 1 out of 51,000. The point prevalence January 1, 1999) of mitochondrial encephalomyopathies in children under 16 years of age was 1 out of 21,000. The median survival for patients with infantile onset was until 12 years of age. We identified 4 cases with mitochondrial DNA point mutations, 2 cases with mitochondrial DNA deletions, and 2 cases with nuclear mutations in the SURF1 gene. We conclude that mitochondrial encephalomyopathies are relatively common neurometabolic disorders in childhood."	"Human cytochrome oxidase deficiency. The human cytochrome oxidase complex is a multisubunit assembly in the inner mitochondrial membrane responsible for the terminal event in electron transport in which molecular oxygen is reduced. Various phenotypic forms of cytochrome oxidase deficiency have been recognized, the major varieties involving degeneration of the brain stem and basal ganglia (Leigh syndrome) and lactic acidemia. Others include a fatal infantile form, a benign reversible form, and forms with cardiomyopathy. Early recognition of complementation groups within, for instance, the Leigh syndrome group has recently been followed up with a description of the gene defect for three of the nuclear-encoded forms of cytochrome c oxidase (COX) deficiency. The three genes indicted, SURF1 for Leigh syndrome, COX 10 for leukodystrophy and tubulopathy, and SCO2 for the cardiomyopathic form, all have a role in the assembly of the mature cytochrome oxidase complex. The description of these gene defects and the role these genes play are discussed in terms of what can be learned about COX assembly and about the etiology of the different phenotypic forms of the disease."	"A novel SURF1 mutation results in Leigh syndrome with peripheral neuropathy caused by cytochrome c oxidase deficiency. We report on a 5-year-old boy with clinical and neuroradiological evidence of Leigh syndrome and peripheral neuropathy. Skeletal muscle biopsy showed decreased cytochrome c oxidase stain. Ultrastructurally, the nerve biopsy showed a defect of myelination. Biochemical analyses of muscle homogenate showed cytochrome c oxidase deficiency (15% residual activity). SURF1 gene analysis identified a novel homozygous nonsense mutation which predicts a truncated surf1 protein."	"The role of mitochondria in the pathogenesis of neurodegenerative diseases. A growing body of evidence indicates that mitochondrial dysfunction may play an important role in the pathogenesis of many neurodegenerative disorders. Because mitochondrial metabolism is not only the principal source of high energy intermediates, but also of free radicals, it has been suggested that inherited or acquired mitochondrial defects could be the cause of neuronal degeneration as a consequence of energy defects and oxidative damage. Mitochondrial respiratory chain dysfunction has been reported in association with primary mitochondrial DNA abnormalities, and also as a consequence of mutations in nuclear genes directly involved in mitochondrial functions, such as SURF1, frataxin, and paraplegin. Defects of oxidative phosphorylation and increased free radical production have also been observed in diseases that are not due to primary mitochondrial abnormalities. In these cases, the mitochondrial dysfunction is likely to be an epiphenomenon, which, nevertheless, could be of importance in precipitating a cascade of events leading to cell death. In either case, understanding the role of mitochondria in the pathogenesis of neurodegenerative diseases could be important for the development of therapeutic strategies in these disorders."	"Missense mutations in SURF1 associated with deficient cytochrome c oxidase assembly in Leigh syndrome patients. We have studied the fibroblasts of three patients suffering from Leigh syndrome associated with cytochrome c oxidase deficiency (LS-COX-). Their mitochondrial DNA was functional and all nuclear COX subunits had a normal sequence. The expression of transcripts encoding mitochondrial and nuclear COX subunits was normal or slightly increased. Similarly, the OXA1 transcript coding for a protein involved in COX assembly was increased. However, several COX-protein subunits were severely depressed, indicating deficient COX assembly. Surf1, a factor involved in COX biogenesis, was recently reported as mutated in LS-COX- patients, all mutations predicting a truncated protein. Sequence analysis of SURF1 gene in our three patients revealed seven heterozygous mutations, six of which were new : an insertion, a nonsense mutation, a splicing mutation of intron 7 in addition to three missense mutations. The mutation G385 A (Gly124--&gt;Glu) changes a Gly that is strictly conserved in Surfl homologs of 12 species. The substitution G618 C (Asp202--&gt;His), changing an Asp that is conserved only in mammals, appears to be a polymorphism. The mutation T751 C changes Ile246 to Thr, a position at which a hydrophobic amino acid is conserved in all eukaryotic and some bacterial species. Replacing Ile246 by Thr disrupts a predicted beta sheet structure present in all higher eukaryotes. COX activity could be restored in fibroblasts of the three patients by complementation with a retroviral vector containing normal SURF1 cDNA. These mutations identify domains essential to Surf1 protein structure and/or function."	"Two novel mutations of SURF1 in Leigh syndrome with cytochrome c oxidase deficiency. Cytochrome c oxidase (COX) deficiency is the most common cause of Leigh syndrome (LS). COX consists of ten nuclear-encoded and three mtDNA-encoded structural subunits. Although the nucleotide sequences of all 13 genes are known, no mutation was found in nuclear-encoded subunit genes of COX-deficiency patients. Zhu et al. (1998) and Tiranti et al. (1998) found nine mutations in the surfeit 1 (SURF1) gene in LS families with COX deficiency. The mouse surfeit gene cluster consists of six closely spaced housekeeping genes unrelated by sequence homology. Except for the Surf3 gene, the function is still not known. The juxtaposition of at least five of the surfeit genes is conserved between birds and mammals. We identified two novel mutations of SURF1 in a Japanese LS patient with COX deficiency using direct sequencing analysis. Firstly, a 2-bp deletion at nucleotide position 790 (790delAG) in exon 8 was found, which shifts the reading frame such that the mutant protein has a completely different amino acid sequence from codon 264 to the premature stop codon at 290. Secondly, we found a T-to-G transversion at nucleotide 820, resulting in the substitution of tyrosine by aspartic acid at codon 274 (Y274D). We also studied the parents' genes, and found that the Y274D mutation was in his father and the 790delAG mutation was in his mother heterozygously. Therefore, we concluded that the patient was a compound heterozygote with these mutations. These are the first pathogenetic SURF1 mutations identified in a Japanese family."	"Sequence conservation from human to prokaryotes of Surf1, a protein involved in cytochrome c oxidase assembly, deficient in Leigh syndrome. The human SURF1 gene encoding a protein involved in cytochrome c oxidase (COX) assembly, is mutated in most patients presenting Leigh syndrome associated with COX deficiency. Proteins homologous to the human Surf1 have been identified in nine eukaryotes and six prokaryotes using database alignment tools, structure prediction and/or cDNA sequencing. Their sequence comparison revealed a remarkable Surf1 conservation during evolution and put forward at least four highly conserved domains that should be essential for Surf1 function. In Paracoccus denitrificans, the Surf1 homologue is found in the quinol oxidase operon, suggesting that Surf1 is associated with a primitive quinol oxidase which belongs to the same superfamily as cytochrome oxidase."	"Expression and functional analysis of SURF1 in Leigh syndrome patients with cytochrome c oxidase deficiency. Leigh syndrome (LS) associated with cytochrome c oxidase (COX) deficiency is an autosomal recessive neurodegenerative disorder caused by mutations in SURF1. Although SURF1 is ubiquitously expressed, its expression is lower in brain than in other highly aerobic tissues. All reported SURF1 mutations are loss of function, predicting a truncated protein (hSurf1) product. Western blot analysis with anti-hSurf1 antibodies demonstrated a specific 30 kDa protein in control fibroblasts, but no protein in LS patient cells. Steady-state levels of both nuclear- and mitochondrial-encoded COX subunits were also markedly reduced in patient cells, consistent with a failure to assemble or maintain a normal amount of the enzyme complex. An epitope (FLAG)-tagged hSurf1 was targeted to mitochondria in COS7 cells and a mitochondrial import assay showed that the hSurf1 precursor protein (35 kDa) was imported and processed to its mature form (30 kDa) in a membrane potential-dependent fashion. The protein was resistant to alkaline carbonate extraction and susceptible to proteinase K digestion in mitoplasts. Mutant proteins in which the N-terminal transmembrane domain or central loop were deleted, or the C-terminal transmembrane domain disrupted, did not accumulate and could not rescue COX activity in patient cells. Co-expression of the N- and C-terminal transmembrane domains as independent entities also failed to rescue the enzyme deficiency. These data demonstrate that hSurf1 is an integral inner membrane protein with an essential role in the assembly or maintenance of the COX complex and that insertion of both transmembrane domains in the intact protein is necessary for function."	"Fatal infantile cardioencephalomyopathy with COX deficiency and mutations in SCO2, a COX assembly gene. Mammalian cytochrome c oxidase (COX) catalyses the transfer of reducing equivalents from cytochrome c to molecular oxygen and pumps protons across the inner mitochondrial membrane. Mitochondrial DNA (mtDNA) encodes three COX subunits (I-III) and nuclear DNA (nDNA) encodes ten. In addition, ancillary proteins are required for the correct assembly and function of COX (refs 2, 3, 4, 5, 6). Although pathogenic mutations in mtDNA-encoded COX subunits have been described, no mutations in the nDNA-encoded subunits have been uncovered in any mendelian-inherited COX deficiency disorder. In yeast, two related COX assembly genes, SCO1 and SCO2 (for synthesis of cytochrome c oxidase), enable subunits I and II to be incorporated into the holoprotein. Here we have identified mutations in the human homologue, SCO2, in three unrelated infants with a newly recognized fatal cardioencephalomyopathy and COX deficiency. Immunohistochemical studies implied that the enzymatic deficiency, which was most severe in cardiac and skeletal muscle, was due to the loss of mtDNA-encoded COX subunits. The clinical phenotype caused by mutations in human SCO2 differs from that caused by mutations in SURF1, the only other known COX assembly gene associated with a human disease, Leigh syndrome."	"Biochemical, genetic and immunoblot analyses of 17 patients with an isolated cytochrome c oxidase deficiency. Mitochondrial respiratory chain defects involving cytochrome c oxidase (COX) are found in a clinically heterogeneous group of diseases, yet the molecular basis of these disorders have been determined in only a limited number of cases. Here, we report the clinical, biochemical and molecular findings in 17 patients who all had isolated COX deficiency and expressed the defect in cultured skin fibroblasts. Immunoblot analysis of mitochondrial fractions with nine subunit specific monoclonal antibodies revealed that in most patients, including in a patient with a novel mutation in the SURF1 gene, steady-state levels of all investigated COX subunits were decreased. Distinct subunit expression patterns were found, however, in different patients. The severity of the enzymatic defect matched the decrease in immunoreactive material in these patients, suggesting that the remnant enzyme activity reflects the amount of remaining holo-enzyme. Four patients presented with a clear defect of COX activity but had near normal levels of COX subunits. An increased affinity for cytochrome c was observed in one of these patients. Our findings indicate a genetic heterogeneity of COX deficiencies and are suggestive of a prominent involvement of nuclear genes acting on the assembly and maintenance of cytochrome c oxidase."	"SURF1, encoding a factor involved in the biogenesis of cytochrome c oxidase, is mutated in Leigh syndrome. Leigh Syndrome (LS) is a severe neurological disorder characterized by bilaterally symmetrical necrotic lesions in subcortical brain regions that is commonly associated with systemic cytochrome c oxidase (COX) deficiency. COX deficiency is an autosomal recessive trait and most patients belong to a single genetic complementation group. DNA sequence analysis of the genes encoding the structural subunits of the COX complex has failed to identify a pathogenic mutation. Using microcell-mediated chromosome transfer, we mapped the gene defect in this disorder to chromosome 9q34 by complementation of the respiratory chain deficiency in patient fibroblasts. Analysis of a candidate gene (SURF1) of unknown function revealed several mutations, all of which predict a truncated protein. These data suggest a role for SURF1 in the biogenesis of the COX complex and define a new class of gene defects causing human neurodegenerative disease."	"The human Surfeit locus. The organization of the human Surfeit locus containing the six sequence-unrelated housekeeping genes Surf-1 to Surf-6 (HGMW-approved symbols SURF1-SURF6) has been determined. The human surfeit locus occupies about 60 kb of DNA, and the tightly clustered gene organization and the juxtaposition of the human genes are similar to the mouse and chicken surfeit loci with the 5' end of each gene associated with a CpG-rich island. Whereas in the mouse the Surf-2 and Surf-4 genes overlap at their 3' ends, the human Surf-2 and Surf-4 genes have been found to be separated by 302 bp due to a much shorter 3' untranslated region in the human Surf-2 gene. The distance between the 3' ends of the human Surf-1 and Surf-3 genes is 374 bp, and the distance between the 5' ends of the human Surf-3 and Surf-5 genes is only 112 bp. Unusually the human Surf-5 gene contains an intron in its 5' untranslated region not found in the mouse or rat Surf-5 genes. This additional intron is also found in the Surf-5 gene of both Old and New World monkeys, being generated before the divergence of human and prosimians but after the divergence of primates and rodents. A contig of 200 kb containing the human Surfeit locus has been constructed from overlapping cosmid, P1, and PAC clones. Approximately 40 kb proximal to the 3' end of the Surf-6 gene, the 5' region of the ABO glycosyltransferase gene has been detected. This allows us to determine the orientation of the Surfeit and ABO loci with respect to each other and to the telomere and centromere of human chromosome 9."	"Transcripts containing the sea urchin retroposon family 1 (SURF1) in embryos of the sea urchin Anthocidaris crassispina. We isolated two cDNAs, termed D7 and C2 in the present study, from a cDNA library of the 16-cell embryo of the sea urchin Anthocidaris crassispina. The nucleotide sequence was determined completely for D7, and partially for C2. D7 does not have any significant open reading frames. Both D7 and C2 contain a common sequence that is 62% homologous to the sea urchin retroposon family 1 (SURF1). The SURF1 is a short interspersed repetitive element identified from the sea urchin Strongylocentrotus purpuratus, and is reported to be transcribed by RNA polymerase III. The structural feature of D7 and C2, however, suggests that they may be transcribed by RNA polymerase II. RT-PCR analyses revealed that (1) both D7 and C2 transcripts exist as a maternal RNA in the egg, (2) they appear evenly distributed in the 16-cell embryo, and (3) C2 transcripts are present throughout the development up to the gastrula, while D7 transcripts decrease in amount after the early cleavage stage."	"Surf5: a gene in the tightly clustered mouse surfeit locus is highly conserved and transcribed divergently from the rpL7A (Surf3) gene. The four previously characterized genes (Surf1 to 4) of the mouse Surfeit locus do not share any sequence homology, and the transcription of each gene alternates with respect to its neighbor(s). Adjacent Surfeit genes are separated by very small distances, and two of the genes overlap at their 3' ends. In this work we have further defined the Surfeit gene cluster by the isolation of Surf5, a fifth gene of the locus, and determination of its relationship to the other Surfeit genes. Surft5 does not share any sequence homology with the four cloned Surfeit genes. The transcription of Surf5 is divergent with respect to its neighbor the Surf3 gene, and the 5' ends of Surf5 and Surf3 are separated by only 159 bp, suggesting the presence of a second bidirectional promoter in the locus. The 3' end of Surf5 maps only 68 bp away from the processed 3' end of a pseudogene. The human and partial chicken Surf5 coding regions show greater than 95% identity, and a Caenorhabditis elegans homologue shows 38% identity and 56% similarity with the mouse Surf5 amino acid sequence. The 3.5-kb transcript of Surf5 encodes a small hydrophilic protein of 140 amino acid residues, which differs from the ribosomal protein L7a encoded by the Surf3 gene or the integral membrane protein encoded by the Surf4 gene. Subcellular fractionation located the Surf5 protein to the soluble fraction of the cytoplasm. The surfeit locus appears to represent a novel type of gene cluster in which the genes are unrelated by sequence or function; however, their organization may play a role in their gene expression."	"The timing of expression of four actin genes and an RNA polymerase III-transcribed repeated sequence is correct in hybrid embryos of the sea urchin species Strongylocentrotus purpuratus and Lytechinus pictus. The accumulation of the mRNAs from four Strongylocentrotus purpuratus actin genes (the single muscle gene M, and three cytoskeletal genes CyI, CyIIIa, and CyIIIb) and of transcripts from an RNA polymerase III-transcribed repeated sequence family (SURF1) was followed throughout the early development of hybrid embryos of S. purpuratus and Lytechinus pictus. Each of the actin mRNAs appeared in hybrid embryos, constructed in either direction (Sp female X Lp male and Lp female X Sp male), at approximately the same time that they appear in normal S. purpuratus embryos. Transcripts of the repeated sequence family SURF1 also appeared at the correct time in the hybrid embryos, but were present at substantially reduced levels when contributed by the paternal genome (Lp female X Sp male). The accurate temporal expression of these genes indicates that both sets of hybrid embryos contain factors which regulate the timing of their transcription."	"Identification of a repeated sequence in the genome of the sea urchin which is transcribed by RNA polymerase III and contains the features of a retroposon. A repeated sequence element which is located about 200 nucleotides upstream from the protein-coding portion of the muscle actin gene (probably within a large 5' intron) in the genome of the sea urchin, Strongylocentrotus purpuratus has been characterized, and shown to contain the sequence features which indicate that it has been transposed by means of an RNA intermediate. This retroposon-like sequence, SURF1-1, is a member of a family which is dispersed and repeated about 800 times in the genome, referred to as SURF1 (sea urchin retroposon family 1). In vitro transcription of this sequence by RNA polymerase III defines a 300 nucleotide transcription unit which is bounded by a short direct repeated sequence. The 3' end of this unit contains a simple 21 nucleotide A+T-rich sequence characteristic of retroponons, and a consensus B box portion of an internal RNA polymerase III promotor is located 60 to 80 nucleotides downstream from the two sites of transcription initiation. This sequence also contains a 40 nucleotide region that is related to several tRNA sequences (containing the B box), and a 79 nucleotide sequence which is homologous to a repeated sequence previously shown to be present within the 3' untranslated portions of the Spec1 and Spec2 mRNAs of this species (1). Analysis of transcripts of this sequence family in RNA from several embryonic stages indicates that its expression is highest at 11 hours postfertilization (about 128 cells) and drops as development proceeds. Furthermore, most or all, transcription of this sequence family in nuclei isolated from 11 hour embryos is by RNA polymerase III, and is from the same strand which is transcribed in vitro."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TTC19"	"Leigh syndrome"	"PARL Protease: A Glimpse at Intramembrane Proteolysis in the Inner Mitochondrial Membrane. Intramembrane proteolysis, although once a controversial concept, is a widely studied field. Four classes of intramembrane proteases have been identified and are classified by their catalytic mechanism of peptide bond hydrolysis: metallo, glutamyl, aspartyl, and serine proteases. One of the most studied of these classes is the rhomboid superfamily of serine intramembrane proteases. Rhomboids consist of six or seven transmembrane segments that form a helical bundle within the membrane and are involved in a multitude of cellular processes. These proteases are characterized by a catalytic dyad composed of a serine and a histidine residue, which distinguishes them from classical serine proteases wherein a catalytic triad is utilized. Of all currently identified rhomboid proteases, one that is of great interest is the mammalian mitochondrial rhomboid protease PARL. Most well known for its processing of the kinase PINK1 and potential link to Parkinson's disease, PARL has been shown to cleave a variety of substrates within the cell including PGAM5, Smac, TTC19, and others. While recent proteomic studies have provided insight on new potential substrates of PARL, its regulation, activity, and role in maintaining mitochondrial homeostasis remain largely unknown."	"A Novel TTC19 Mutation in a Patient With Neurological, Psychological, and Gastrointestinal Impairment. Mitochondrial complex III deficiency nuclear type 2 is an autosomal-recessive disorder caused by mutations in TTC19 gene. TTC19 is involved in the preservation of mitochondrial complex III, which is responsible for transfer of electrons from reduced coenzyme Q to cytochrome C and thus, contributes to the formation of electrochemical potential and subsequent ATP generation. Mutations in TTC19 have been found to be associated with a wide range of neurological and psychological manifestations. Herein, we report on a 15-year-old boy born from first-degree cousin parents, who initially presented with psychiatric symptoms. He subsequently developed progressive ataxia, spastic paraparesis with involvement of caudate bodies and lentiform nuclei with cerebellar atrophy. Eventually, the patient developed gastrointestinal involvement. Using whole-exome sequencing (WES), we identified a novel homozygous frameshift mutation in the TTC19 gene in the patient (NM_017775.3, c.581delG: p.Arg194Asnfs<sup>*</sup>16). Advanced genetic sequencing technologies developed in recent years have not only facilitated identification of novel disease genes, but also allowed revelations about novel phenotypes associated with mutations in the genes already linked with other clinical features. Our findings expanded the clinical features of TTC19 mutation to potentially include gastrointestinal involvement. Further functional studies are needed to elucidate the underlying pathophysiological mechanisms."	"PARL deficiency in mouse causes Complex III defects, coenzyme Q depletion, and Leigh-like syndrome. The mitochondrial intramembrane rhomboid protease PARL has been implicated in diverse functions in vitro, but its physiological role in vivo remains unclear. Here we show that Parl ablation in mouse causes a necrotizing encephalomyelopathy similar to Leigh syndrome, a mitochondrial disease characterized by disrupted energy production. Mice with conditional PARL deficiency in the nervous system, but not in muscle, develop a similar phenotype as germline Parl KOs, demonstrating the vital role of PARL in neurological homeostasis. Genetic modification of two major PARL substrates, PINK1 and PGAM5, do not modify this severe neurological phenotype. Parl<sup>-/-</sup> brain mitochondria are affected by progressive ultrastructural changes and by defects in Complex III (CIII) activity, coenzyme Q (CoQ) biosynthesis, and mitochondrial calcium metabolism. PARL is necessary for the stable expression of TTC19, which is required for CIII activity, and of COQ4, which is essential in CoQ biosynthesis. Thus, PARL plays a previously overlooked constitutive role in the maintenance of the respiratory chain in the nervous system, and its deficiency causes progressive mitochondrial dysfunction and structural abnormalities leading to neuronal necrosis and Leigh-like syndrome."	"Novel Homozygous Variant in TTC19 Causing Mitochondrial Complex III Deficiency with Recurrent Stroke-Like Episodes: Expanding the Phenotype. A 7-year-old boy with family history of consanguinity presented with developmental delay and recurrent hemiplegia involving both sides of the body, with variable facial and ocular involvement. Brain MRI showed bilateral striatal necrosis with cystic degeneration and lactate peaks on spectroscopy. Biochemical testing demonstrated mildly elevated lactate and pyruvate. Whole-exome sequencing revealed a novel homozygous pathogenic frameshift mutation in gene TTC19, diagnostic of mitochondrial complex III deficiency."	"Mitochondrial complex III Rieske Fe-S protein processing and assembly. Regulation of the mitochondrial respiratory chain biogenesis is a matter of great interest because of its implications for mitochondrial disease. One of the mitochondrial disease genes recently discovered associated to encephalopathy and mitochondrial complex III (cIII) deficiency is TTC19. Our study of TTC19-deficient human and mouse models, has led us to propose a post-assembly quality control role or 'husbandry' function for this factor that is linked to Rieske Fe-S protein (UQCRFS1). UQCRFS1 is the last incorporated cIII subunit, and its presence is essential for enzymatic activity. During UQCRFS1 assembly, the precursor is cleaved and its N-terminal part remains bound to the complex, between the two core subunits (UQCRC1 and UQCRC2). In the absence of TTC19 there is a prominent accumulation of these UQCRFS1-derived N-terminal fragments that proved to be detrimental for cIII function. In this article we will discuss some ideas around the UQCRFS1 processing and assembly and its importance for the regulation of cIII activity and biogenesis."	"Combined Respiratory Chain Deficiency and UQCC2 Mutations in Neonatal Encephalomyopathy: Defective Supercomplex Assembly in Complex III Deficiencies. Vertebrate respiratory chain complex III consists of eleven subunits. Mutations in five subunits either mitochondrial (MT-CYB) or nuclear (CYC1, UQCRC2, UQCRB, and UQCRQ) encoded have been reported. Defects in five further factors for assembly (TTC19, UQCC2, and UQCC3) or iron-sulphur cluster loading (BCS1L and LYRM7) cause complex III deficiency. Here, we report a second patient with UQCC2 deficiency. This girl was born prematurely; pregnancy was complicated by intrauterine growth retardation and oligohydramnios. She presented with respiratory distress syndrome, developed epileptic seizures progressing to status epilepticus, and died at day 33. She had profound lactic acidosis and elevated urinary pyruvate. Exome sequencing revealed two homozygous missense variants in UQCC2, leading to a severe reduction of UQCC2 protein. Deficiency of complexes I and III was found enzymatically and on the protein level. A review of the literature on genetically distinct complex III defects revealed that, except TTC19 deficiency, the biochemical pattern was very often a combined respiratory chain deficiency. Besides complex III, typically, complex I was decreased, in some cases complex IV. In accordance with previous observations, the presence of assembled complex III is required for the stability or assembly of complexes I and IV, which might be related to respirasome/supercomplex formation."	"TTC19 Plays a Husbandry Role on UQCRFS1 Turnover in the Biogenesis of Mitochondrial Respiratory Complex III. Loss-of-function mutations in TTC19 (tetra-tricopeptide repeat domain 19) have been associated with severe neurological phenotypes and mitochondrial respiratory chain complex III deficiency. We previously demonstrated the mitochondrial localization of TTC19 and its link with complex III biogenesis. Here we provide detailed insight into the mechanistic role of TTC19, by investigating a Ttc19<sup>?/?</sup> mouse model that shows progressive neurological and metabolic decline, decreased complex III activity, and increased production of reactive oxygen species. By using both the Ttc19<sup>?/?</sup> mouse model and a range of human cell lines, we demonstrate that TTC19 binds to the fully assembled complex III dimer, i.e., after the incorporation of the iron-sulfur Rieske protein (UQCRFS1). The in situ maturation of UQCRFS1 produces N-terminal polypeptides, which remain bound to holocomplex III. We show that, in normal conditions, these UQCRFS1 fragments are rapidly removed, but when TTC19 is absent they accumulate within complex III, causing its structural and functional impairment."	"Both PIGA and PIGL mutations cause GPI-a deficient isolates in the Tk6 cell line. Molecular analysis of proaerolysin selected glycosylphosphatidylinositol anchor (GPI-a) deficient isolates in the TK6 cell line was performed. Initial studies found that the expected X-linked PIGA mutations were rare among the spontaneous isolates but did increase modestly after ethyl methane sulfate (EMS) treatment (but to only 50% of isolates). To determine the molecular bases of the remaining GPI-a deficient isolates, real-time analysis for all the 25 autosomal GPI-a pathway genes was performed on the isolates without PIGA mutations, determining that PIGL mRNA was absent for many. Further analysis determined these isolates had several different homozygous deletions of the 5' region of PIGL (17p12-p22) extending 5' (telomeric) through NCOR1 and some into the TTC19 gene (total deletion &gt;250,000 bp). It was determined that the TK6 parent had a hemizygous deletion in 17p12-p22 (275,712 bp) extending from PIGL intron 2 into TTC19 intron 7. Second hit deletions in the other allele in the GPI-a deficient isolates led to the detected homozygous deletions. Several of the deletion breakpoints including the original first hit deletion were sequenced. As strong support for TK6 having a deletion, a number of the isolates without PIGA mutations nor homozygous PIGL deletions had point mutations in the PIGL gene. These studies show that the GPI-a mutation studies using TK6 cell line could be a valuable assay detecting point and deletion mutations in two genes simultaneously."	"Phenotypic variation of TTC19-deficient mitochondrial complex III deficiency: a case report and literature review. Isolated mitochondrial respiratory chain complex III deficiency has been described in a heterogeneous group of clinical presentations in children and adults. It has been associated with mutations in MT-CYB, the only mitochondrial DNA encoded subunit, as well as in nine nuclear genes described thus far: BCS1L, TTC19, UQCRB, UQCRQ, UQCRC2, CYC1, UQCC2, LYRM7, and UQCC3. BCS1L, TTC19, UQCC2, LYRM7, and UQCC3 are complex III assembly factors. We report on an 8-year-old girl born to consanguineous Iraqi parents presenting with slowly progressive encephalomyopathy, severe failure to thrive, significant delays in verbal and communicative skills and bilateral retinal cherry red spots on fundoscopy. SNP array identified multiple regions of homozygosity involving 7.5% of the genome. Mutations in the TTC19 gene are known to cause complex III deficiency and TTC19 was located within the regions of homozygosity. Sequencing of TTC19 revealed a homozygous nonsense mutation at exon 6 (c.937C &gt; T; p.Q313X). We reviewed the phenotypes and genotypes of all 11 patients with TTC19 mutations leading to complex III deficiency (including our case). The consistent features noted are progressive neurodegeneration with Leigh-like brain MRI abnormalities. Significant variability was observed however with the age of symptom onset and rate of disease progression. The bilateral retinal cherry red spots and failure to thrive observed in our patient are unique features, which have not been described, in previously reported patients with TTC19 mutations. Interestingly, all reported TTC19 mutations are nonsense mutations. The severity of clinical manifestations however does not specifically correlate with the residual complex III enzyme activities."	"Mutations in TTC19: expanding the molecular, clinical and biochemical phenotype. TTC19 deficiency is a progressive neurodegenerative disease associated with isolated mitochondrial respiratory chain (MRC) complex III deficiency and loss-of-function mutations in the TT19 gene in the few patients reported so far. We performed exome sequencing and selective mutational analysis of TTC19, respectively, in patients from three unrelated families presenting with initially unspecific clinical signs of muscular hypotonia and global developmental delay followed by regression, ataxia, loss of speech, and rapid neurological deterioration. One patient showed severe lactic acidosis at the neonatal age and during intercurrent illness. We identified homozygous mutations in all three index cases, in two families novel missense mutations (c.544 T &gt; C/p.Leu185Pro; c.917 T &gt; C/p.Leu324Pro). The younger sister of the severely affected patient 3 showed only mild delay of motor skills and muscular hypotonia so far but is also homozygous for the same mutation. Notably, one patient revealed normal activities of MRC complex III in two independent muscle biopsies. Neuroimaging of the severely affected patients demonstrated lesions in putamen and caudate nuclei, cerebellar atrophy, and the unusual finding of hypertrophic olivary nuclei degeneration. Reviewing the literature revealed striking similarities regarding neuroimaging and clinical course in pediatric patients with TTC19 deficiency: patterns consistent with Leigh or Leigh-like syndrome were found in almost all, hypertrophic olivary nucleus degeneration in all patients reported so far. The clinical course in pediatric patients is characterized by an initially unspecific developmental delay, followed by regression, progressive signs and symptoms of cerebellar, basal ganglia and brainstem affection, especially loss of speech and ataxia. Subsequently, neurological deterioration leading to a vegetative state occurs. Our findings add to the phenotypic, genetic, and biochemical spectrum of TTC19 deficiency. However, TTC19 deficient patients do show characteristic clinical and neuroimaging features, which may facilitate diagnosis of this yet rare disorder. Normal MRC complex III activity does not exclude the diagnosis."	"Mitochondrial Complex III Deficiency Caused by TTC19 Defects: Report of a Novel Mutation and Review of Literature. We report about a patient with infantile-onset neurodegenerative disease associated with isolated mitochondrial respiratory chain complex III (cIII) deficiency. The boy, now 13 years old, presented with language regression and ataxia at 4 years of age and then showed a progressive course resulting in the loss of autonomous gait and speaking during the following 2 years. Brain MRI disclosed bilateral striatal necrosis. Sequencing of a panel containing nuclear genes associated with cIII deficiency revealed a previously undescribed homozygous rearrangement (c.782_786delinsGAAAAG) in TTC19 gene, which results in a frameshift with premature termination (p.Glu261Glyfs(*)8). TTC19 protein was absent in patient's fibroblasts. TTC19 encodes tetratricopeptide 19, a putative assembly factor for cIII. To date TTC19 mutations have been reported only in few cases, invariably associated with cIII deficiency, but presenting heterogeneous clinical phenotypes. We reviewed the genetic, biochemical, clinical and neuroradiological features of TTC19 mutant patients described to date. "	"A Japanese case of cerebellar ataxia, spastic paraparesis and deep sensory impairment associated with a novel homozygous TTC19 mutation. Mitochondrial complex III (CIII) deficiency comprises a group of complex and heterogeneous genetic disorders. TTC19 mutations constitute a rare cause of CIII deficiency and are associated with neurological disorders in childhood and adulthood. Herein, we describe a 27-year-old Japanese man with cerebellar ataxia, spastic paraparesis, loss of deep sensation, mild frontal lobe dysfunction and transient psychiatric symptoms. Brain magnetic resonance imaging showed cerebellar atrophy and bilateral high-intensity signals in the inferior olives and regions adjacent to periaqueductal gray matter, on T2-weighted images. On whole-exome sequencing, we detected a novel homozygous frameshift mutation c.157_158dup [p.Pro54Alafs*48] in TTC19. Mitochondrial enzyme assays confirmed mild impairment of CIII enzymatic activity in lymphoblasts, which was consistent with TTC19-related CIII deficiency. His symptoms and radiological findings demonstrated an early stage or mild form of this disease, and further clarify the characteristics of patients with rare TTC19 mutations. "	"A novel mutation in TTC19 associated with isolated complex III deficiency, cerebellar hypoplasia, and bilateral basal ganglia lesions. Isolated complex III (cIII) deficiency is a rare biochemical finding in mitochondrial disorders, mainly associated with mutations in mitochondrial DNA MTCYB gene, encoding cytochrome b, or in assembly factor genes (BCS1L, TTC19, UQCC2, and LYRM7), whereas mutations in nuclear genes encoding cIII structural subunits are extremely infrequent. We report here a patient, a 9 year old female born from first cousin related parents, with normal development till 18 months when she showed unsteady gait with frequent falling down, cognitive, and speech worsening. Her course deteriorated progressively. Brain MRI showed cerebellar vermis hypoplasia and bilateral lentiform nucleus high signal lesions. Now she is bed ridden with tetraparesis and severely impaired cognitive and language functions. Biochemical analysis revealed isolated cIII deficiency in muscle, and impaired respiration in fibroblasts. We identified a novel homozygous rearrangement in TTC19 (c.213_229dup), resulting in frameshift with creation of a premature termination codon (p.Gln77Argfs*30). Western blot analysis demonstrated the absence of TTC19 protein in patient's fibroblasts, while Blue-Native Gel Electrophoresis analysis revealed the presence of cIII-specific assembly intermediates. Mutations in TTC19 have been rarely associated with mitochondrial disease to date, being described in about ten patients with heterogeneous clinical presentations, ranging from early onset encephalomyopathy to adult forms with cerebellar ataxia. Contrariwise, the biochemical defect was a common hallmark in TTC19 mutant patients, confirming the importance of TTC19 in cIII assembly/stability. Therefore, we suggest extending the TTC19 mutational screening to all patients with cIII deficiency, independently from their phenotypes. "	"Exome sequencing reveals a novel TTC19 mutation in an autosomal recessive spinocerebellar ataxia patient. Spinocerebellar ataxias (SCAs) are heterogeneous diseases characterized by progressive cerebellar ataxia associated with dysarthria, oculomotor abnormalities, and mental impairment. To identify the causative gene, we performed exome sequencing on a Japanese patient clinically diagnosed with recessive SCA. The patient is a 37-year-old Japanese woman with consanguineous parents. The head magnetic resonance imaging (MRI) showed cerebellar atrophy and T1 low/T2 high intensity at the bilateral inferior olives. Single-nucleotide polymorphism (SNP) genotyping and next-generation sequencing were performed, and the variants obtained were filtered and prioritized. After these manipulations, we identified a homozygous nonsense mutation of the TTC19 gene (p.Q277*). TTC19 has been reported to be a causative gene of a neurodegenerative disease in Italian and Portuguese families and to be involved in the pathogenesis of mitochondrial respiratory chain complex III (cIII) deficiency. This report is the first description of a TTC19 mutation in an Asian population. Clinical symptoms and neuroimaging are consistent with previous reports. The head MRI already showed abnormal features four years before her blood lactate and pyruvate levels were elevated. We should consider the genetic analysis of TTC19 when we observe such characteristic MRI abnormalities. Genes associated with mitochondrial function cause many types of SCAs; the mutation we identified should help to elucidate the pathology of these disorders."	"Mutations in the Complex III Assembly Factor Tetratricopeptide 19 Gene TTC19 Are a Rare Cause of Leigh Syndrome. We report a patient with Leigh syndrome shown to have two previously undescribed truncating mutations in the TTC19 gene. Our patient is a 4-year-old boy with global developmental delay, language regression at 13 months, and brain MRI showing T2 high-signal lesions involving the putamen, caudate body, and the brainstem, which appear to be progressing. Molecular testing showed our patient is heterozygous for two previously undescribed mutations in the TTC19 gene, c.577G&gt;A (p.Trp186Stop) and c.964_967delGGCT (p.Gly322MetfsX8), both of which are predicted to cause loss of protein function due to either protein truncation or nonsense-mediated mRNA decay. TTC19 encodes tetratricopeptide 19 (TTC19) and is thought to be a complex III (CIII) assembly factor that is embedded on the inner mitochondrial membrane as part of two high-molecular-weight complexes, one of which coincides with CIII. The initial presentations of previously described patients with TTC19 mutations are heterogeneous and can be from childhood to adulthood. In summary, TTC19 mutations have been shown to affect CIII complex function, which results in a heterogeneous clinical phenotype including Leigh syndrome. "	"Novel TTC19 mutation in a family with severe psychiatric manifestations and complex III deficiency. Complex III of the mitochondrial respiratory chain (CIII) catalyzes transfer of electrons from reduced coenzyme Q to cytochrome c. Low biochemical activity of CIII is not a frequent etiology in disorders of oxidative metabolism and is genetically heterogeneous. Recently, mutations in the human tetratricopeptide 19 gene (TTC19) have been involved in the etiology of CIII deficiency through impaired assembly of the holocomplex. We investigated a consanguineous Portuguese family where four siblings had reduced enzymatic activity of CIII in muscle and harbored a novel homozygous mutation in TTC19. The clinical phenotype in the four sibs was consistent with severe olivo-ponto-cerebellar atrophy, although their age at onset differed slightly. Interestingly, three patients also presented progressive psychosis. The mutation resulted in almost complete absence of TTC19 protein, defective assembly of CIII in muscle, and enhanced production of reactive oxygen species in cultured skin fibroblasts. Our findings add to the array of mutations in TTC19, corroborate the notion of genotype/phenotype variability in mitochondrial encephalomyopathies even within a single family, and indicate that psychiatric manifestations are a further presentation of low CIII."	"Mitochondrial complex III deficiency caused by a homozygous UQCRC2 mutation presenting with neonatal-onset recurrent metabolic decompensation. Mitochondrial complex III (CIII) deficiency is a relatively rare disease with high clinical and genetic heterogeneity. CIII comprises 11 subunits encoded by one mitochondrial and 10 nuclear genes. Abnormalities of the nuclear genes such as BCS1L and TTC19 encoding mitochondrial assembly factors are well known, but an explanation of the majority of CIII deficiency remains elusive. Here, we report three patients from a consanguineous Mexican family presenting with neonatal onset of hypoglycemia, lactic acidosis, ketosis, and hyperammonemia. We found a homozygous missense mutation in UQCRC2 that encodes mitochondrial ubiquinol-cytochrome c reductase core protein II by whole-exome sequencing combined with linkage analysis. On the basis of structural modeling, the mutation (p.Arg183Trp) was predicted to destabilize the hydrophobic core at the subunit interface of the core protein II homodimer. In vitro studies using fibroblasts from the index patient clearly indicated CIII deficiency, as well as impaired assembly of the supercomplex formed from complexes I, III, and IV. This is the first described human disease caused by a core protein abnormality in mitochondrial CIII."	"Mutations in TTC19 cause mitochondrial complex III deficiency and neurological impairment in humans and flies. Although mutations in CYTB (cytochrome b) or BCS1L have been reported in isolated defects of mitochondrial respiratory chain complex III (cIII), most cIII-defective individuals remain genetically undefined. We identified a homozygous nonsense mutation in the gene encoding tetratricopeptide 19 (TTC19) in individuals from two families affected by progressive encephalopathy associated with profound cIII deficiency and accumulation of cIII-specific assembly intermediates. We later found a second homozygous nonsense mutation in a fourth affected individual. We demonstrated that TTC19 is embedded in the inner mitochondrial membrane as part of two high-molecular-weight complexes, one of which coincides with cIII. We then showed a physical interaction between TTC19 and cIII by coimmunoprecipitation. We also investigated a Drosophila melanogaster knockout model for TTC19 that showed low fertility, adult-onset locomotor impairment and bang sensitivity, associated with cIII deficiency. TTC19 is a putative cIII assembly factor whose disruption is associated with severe neurological abnormalities in humans and flies."	"PtdIns(3)P controls cytokinesis through KIF13A-mediated recruitment of FYVE-CENT to the midbody. Several subunits of the class III phosphatidylinositol-3-OH kinase (PI(3)K-III) complex are known as tumour suppressors. Here we uncover a function for this complex and its catalytic product phosphatidylinositol-3-phosphate (PtdIns(3)P) in cytokinesis. We show that PtdIns(3)P localizes to the midbody during cytokinesis and recruits a centrosomal protein, FYVE-CENT (ZFYVE26), and its binding partner TTC19, which in turn interacts with CHMP4B, an endosomal sorting complex required for transport (ESCRT)-III subunit implicated in the abscission step of cytokinesis. Translocation of FYVE-CENT and TTC19 from the centrosome to the midbody requires another FYVE-CENT-interacting protein, the microtubule motor KIF13A. Depletion of the VPS34 or Beclin 1 subunits of PI(3)K-III causes cytokinesis arrest and an increased number of binucleate and multinucleate cells, in a similar manner to the depletion of FYVE-CENT, KIF13A or TTC19. These results provide a mechanism for the translocation and docking of a cytokinesis regulatory machinery at the midbody."	"A reassessment of the role of breast tumor aromatization. While the role of estrogens in the maintenance of human breast carcinoma has been firmly established for many years, the sources of this estrogen remain unresolved. Input-output analysis of steroid uptake by breast carcinomas showed no specific uptake of estrogens from blood. Based on the detection of the necessary enzyme systems. Adams and Wong proposed that breast tumors could function as &quot;paraendocrine organs&quot; capable of producing sufficient estradiol (E2) to stimulate their own growth (Adams, J. B., and Wong, M. S. F. Lancet, 2: 1163, 1968). Using the reported values for the concentration of C19 steroid precursors and the rho TTC19-E2 values one can estimate that the contribution of in situ aromatization to the tumor estrogen pool is quite small."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PDHA1"	"Leigh syndrome"	"Pitfalls of relying on genetic testing only to diagnose inherited metabolic disorders in non-western populations - 5 cases of pyruvate dehydrogenase deficiency from South Africa. Pyruvate dehydrogenase complex (PDHC) deficiencies are a group of mainly infantile onset disorders stemming from defects in pyruvate catabolism. They are characterised by severe lactic acidosis and progressive neurodegeneration.Although the PDHA1 gene is implicated in most cases of PDHC deficiency worldwide, no pathogenic variants have been reported in South African patients to date, despite availability of PDHA1 sequencing in the state diagnostic setting. DNA from five patients with low to absent PDHC activity in fibroblasts were subjected to PDHC deficiency gene panel analysis. Included in the panel were: PDHA1, PDHB, DLAT, DLD, PDHX, BOLA3, GLRX5, IBA57, LIAS, LIPT1, LIPT2, NFU1, PDP1, PDP2, SLC19A2, SLC19A3, SLC25A19, SLC25A26, TPK1 and FBXL4. No pathogenic variants were identified in 4 out of 5 cases investigated. A homozygous frame-shift mutation was detected in the BOLA3 gene in one patient, supporting a diagnosis of multiple mitochondrial dysfunction syndrome type 2. A single, novel, homozygous BOLA3 frame-shift mutation was detected in a black South African child with severe neurodegenerative disease and very low to absent PDHC enzyme activity. This finding of a homozygous mutation in a patient from a non-consanguineous background may indicate a need for further investigation in clinically similar cases as well as heterozygous carrier rates in unaffected individuals from the same ethnic background.The paucity of identifiable mutations in 4 out of 5 South African patients with confirmed PDHC deficiency highlights the dangers in relying on Western population based genetic panels for diagnosing rare metabolic disease in genetically understudied populations."	"Identifying the novel key genes in renal cell carcinoma by bioinformatics analysis and cell experiments. Although major driver gene have been identified, the complex molecular heterogeneity of renal cell cancer (RCC) remains unclear. Therefore, more relevant genes need to be identified to explain the pathogenesis of renal cancer. Microarray datasets GSE781, GSE6344, GSE53000 and GSE68417 were downloaded from Gene Expression Omnibus (GEO) database. The differentially expressed genes (DEGs) were identified by employing GEO2R tool, and function enrichment analyses were performed by using DAVID. The protein-protein interaction network (PPI) was constructed and the module analysis was performed using STRING and Cytoscape. Survival analysis was performed using GEPIA. Differential expression was verified in Oncomine. Cell experiments (cell viability assays, transwell migration and invasion assays, wound healing assay, flow cytometry) were utilized to verify the roles of the hub genes on the proliferation of kidney cancer cells (A498 and OSRC-2 cell lines). A total of 215 DEGs were identified from four datasets. Six hub gene (SUCLG1, PCK2, GLDC, SLC12A1, ATP1A1, PDHA1) were identified and the overall survival time of patients with RCC were significantly shorter. The expression levels of these six genes were significantly decreased in six RCC cell lines(A498, OSRC-2, 786- O, Caki-1, ACHN, 769-P) compared to 293t cell line. The expression level of both mRNA and protein of these genes were downregulated in RCC samples compared to those in paracancerous normal tissues. Cell viability assays showed that overexpressions of SUCLG1, PCK2, GLDC significantly decreased proliferation of RCC. Transwell migration, invasion, wound healing assay showed overexpression of three genes(SUCLG1, PCK2, GLDC) significantly inhibited the migration, invasion of RCC. Flow cytometry analysis showed that overexpression of three genes(SUCLG1, PCK2, GLDC) induced G1/S/G2 phase arrest of RCC cells. Based on our current findings, it is concluded that SUCLG1, PCK2, GLDC may serve as a potential prognostic marker of RCC."	"[Analysis of PDHA1 gene variant in a patient with pyruvate dehydrogenase E1alpha deficiency and pyramidal tract involvement]. To explore the genetic basis for a patient with episodic ataxia and pyramidal tract signs. The patient was subjected to high-throughput sequencing, Sanger sequencing and analysis of dynamic variant site associated with spinocerebellar ataxias (SCA). The patient was an adolescent male presenting with episodic ataxia, bilateral knee hyper-reflexia and ankle clonus. By genetic testing, he was found to harbor a c.1159-1162dupAAGT variant of PDHA1 gene. The same variant was not found in his parents and elder sister. No abnormalities were found by SCA dynamic variant screening. The patient was diagnosed as pyruvate dehydrogenase E1alpha deficiency due to variant of the PDHA1 gene. The de novo c.1159-1162dupAAGT variant of the PDHA1 gene probably underlies the disease in the proband. Patients with pyruvate dehydrogenase E1alpha deficiency have complex phenotypes and very few have pyramidal tract involvement, which may be attributed to abnormal early neuronal development."	"Animal Models of Metabolic Epilepsy and Epilepsy Associated Metabolic Dysfunction: A Systematic Review. Epilepsy is a serious neurological disorder affecting around 70 million people globally and is characterized by spontaneous recurrent seizures. Recent evidence indicates that dysfunction in metabolic processes can lead to the alteration of neuronal and network excitability, thereby contributing to epileptogenesis. Developing a suitable animal model that can recapitulate all the clinical phenotypes of human metabolic epilepsy (ME) is crucial yet challenging. The specific environment of many symptoms as well as the primary state of the applicable neurobiology, genetics, and lack of valid biomarkers/diagnostic tests are the key factors that hinder the process of developing a suitable animal model. The present systematic review summarizes the current state of available animal models of metabolic dysfunction associated with epileptic disorders. A systematic search was performed by using the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) model. A range of electronic databases, including google scholar, Springer, PubMed, ScienceDirect, and Scopus, were scanned between January 2000 and April 2020. Based on the selection criteria, 23 eligible articles were chosen and are discussed in the current review. Critical analysis of the selected literature delineated several available approaches that have been modeled into metabolic epilepsy and pointed out several drawbacks associated with the currently available models. The result describes available models of metabolic dysfunction associated with epileptic disorder, such as mitochondrial respiration deficits, Lafora disease (LD) model-altered glycogen metabolism, causing epilepsy, glucose transporter 1 (GLUT1) deficiency, adiponectin responsive seizures, phospholipid dysfunction, glutaric aciduria, mitochondrial disorders, pyruvate dehydrogenase (PDH) α-subunit gene (PDHA1), pyridoxine dependent epilepsy (PDE), BCL2-associated agonist of cell death (BAD), Kcna1 knock out (KO), and long noncoding RNAs (lncRNA) cancer susceptibility candidate 2 (lncRNA CASC2). Finally, the review highlights certain focus areas that may increase the possibilities of developing more suitable animal models and underscores the importance of the rationalization of animal models and evaluation methods for studying ME. The review also suggests the pressing need of developing precise robust animal models and evaluation methods for investigating ME."	"Anti-PDHA1 antibody is detected in a subset of patients with schizophrenia. Autoantibodies have been implicated in schizophrenia aetiology. Here, novel autoantibodies were isolated from patients with schizophrenia. Autoantibody candidates were searched using two-dimensional gel electrophoresis and western blotting with rat brain proteins as antigens and two sera pools (25 schizophrenia patients versus 25 controls) as antibodies. Immunoreactive antigens were identified by mass spectrometry. Antibody prevalence were evaluated by western blotting using human recombinant proteins. Furthermore, brain magnetic resonance imaging data (regional brain volumes and diffusion tensor imaging measures) were compared. Two proteins of the mitochondrial respiration pathway were identified as candidate antigens. Three patients with schizophrenia, but no controls, expressed antibodies targeting one of the candidate antigens, i.e., pyruvate dehydrogenase E1 component subunit alpha, somatic form, mitochondrial (PDHA1, EC 1.2.4.1), which is related to mitochondrial energy production. Anti-PDHA1 antibody-positive patients (n = 3) had increased volumes in the left occipital fusiform gyrus compared to both controls (n = 23, p = 0.017) and antibody-negative patients (n = 16, p = 0.009), as well as in the left cuneus compared to antibody-negative patients (n = 16, p = 0.018). This is the first report of an anti-PDHA1 antibody in patients with schizophrenia. Compatible with recent findings of mitochondrial dysfunction in schizophrenia, this antibody may be involved in the pathogenesis of a specific subgroup of schizophrenia."	"Clinical and molecular characterization of pediatric mitochondrial disorders in south of China. Mitochondrial disorders (MDs) are genetic ailments affecting all age groups. Epidemiological data and frequencies of gene mutations in pediatric patients in China are scarce. This retrospective study assessed 101 patients with suspected MDs treated at the Neurology Department of Children's Hospital, Fudan University, in 2011-2017. Mitochondrial (mtDNA) and nuclear (nDNA) samples were assessed by long-range polymerase chain reaction (PCR)-based whole mtDNA sequencing and whole exome sequencing (WES) for identifying pathogenic mutations. Muscle samples underwent various staining protocols and immunofluorescence for detecting selected proteins. Seventeen mutations in the MT-TL1, MT-COX2, MT-ND4, MT, tRNA TRNE, MT-TN, MT-TK, MT-ATP6, MT-ND6, MT-ND3 and MT-CO3 genes were identified in 39 patients, of which m.3243A &gt; G, m.3303C &gt; T, m.8993T &gt; C/G, m.9176T &gt; C, and m.10191T &gt; C were most common. Mitochondrial myopathy and MELAS were most common for m.3243A &gt; G mutation. Four novel mutations were detected, including m.9478insT, m.5666T &gt; C, m.8265T &gt; C, and m.8380-13600 deletion mutations related to Leigh syndrome, mitochondrial myopathy and KSS, respectively. Thirty-three mutations in the TK2, POLG, IBA57, HADHB, FBXL4, ALDH5A1, FOXRED1, TPK1, NDUFAF5, NDUFAF7, NDUFV1, CARS2, PDHA1, and HIBCH genes were identified in 19 patients, including 23 currently unknown. Higher rates of TK2, POLG, IBA57, and HADHB mutations were found in nDNA-mutated MD compared with the remaining individuals. Besides, IBA57 c.286T &gt; C (p.Y96H), TK2 c.497A &gt; T (p.D166V) founder mutations critically contributed to MDs. Comprehensive genomic analysis plays a critical role in pediatric MD diagnosis. These data summarize the relative frequencies of different gene mutations in a large Chinese population, and identified 23 novel MD-associated nDNA and 4 novel mtDNA mutations."	"Mitochondrial diseases in North America: An analysis of the NAMDC Registry. To describe clinical, biochemical, and genetic features of participants with mitochondrial diseases (MtDs) enrolled in the North American Mitochondrial Disease Consortium (NAMDC) Registry. This cross-sectional, multicenter, retrospective database analysis evaluates the phenotypic and molecular characteristics of participants enrolled in the NAMDC Registry from September 2011 to December 2018. The NAMDC is a network of 17 centers with expertise in MtDs and includes both adult and pediatric specialists. One thousand four hundred ten of 1,553 participants had sufficient clinical data for analysis. For this study, we included only participants with molecular genetic diagnoses (n = 666). Age at onset ranged from infancy to adulthood. The most common diagnosis was multisystemic disorder (113 participants), and only a minority of participants were diagnosed with a classical mitochondrial syndrome. The most frequent classical syndromes were Leigh syndrome (97 individuals) and mitochondrial encephalomyopathy, lactic acidosis, and stroke-like episodes (71 individuals). Pathogenic variants in the mitochondrial DNA were more frequently observed (414 participants) than pathogenic nuclear gene variants (252 participants). Pathogenic variants in 65 nuclear genes were identified, with POLG1 and PDHA1 being the most commonly affected. Pathogenic variants in 38 genes were reported only in single participants. The NAMDC Registry data confirm the high variability of clinical, biochemical, and genetic features of participants with MtDs. This study serves as an important resource for future enhancement of MtD research and clinical care by providing the first comprehensive description of participant with MtD in North America."	"Conditional knockout of pyruvate dehydrogenase in mouse pancreatic β‑cells causes morphological and functional changes. Diabetes mellitus is a metabolic disorder predominantly caused by the dysfunction of pancreatic β‑cells. This dysfunction is partly caused by the dysregulation of pyruvate dehydrogenase (PDH), which acts as an important mediator of pyruvate oxidation after glycolysis and fuels the tricarboxylic acid cycle. Previous studies have reported decreased PDH expression in rodent models and humans with type 2 diabetes mellitus (T2DM), suggesting that PDH may play an important role in the development of T2DM. However, the mechanism by which PDH affects insulin secretion and β‑cell development is poorly understood. Using immunofluorescence staining, the present study found that the expression of pyruvate dehydrogenase E1‑α subunit (PDHA1; encoded by the PDHA1 gene) in the islets of type 2 diabetic mice (db/db mice) was lower than in wild‑type mice, which indicated the possible association between PDHA1and diabetes. To further understand this mechanism, an inducible, islet‑specific PDHA1 knockout mouse (βKO) model was established. The phenotype was authenticated, and the blood glucose levels and islet function between the βKO and control mice were compared. Though no changes were found in food intake, development status, fasting blood glucose or weight between the groups, the level of insulin secretion at 30 min after glucose injection in the βKO group was significantly lower compared with the control group. Furthermore, the performed of the βKO mice on the intraperitoneal glucose tolerance test was visibly impaired when compared with the control mice. Pancreatic tissues were collected for hematoxylin and eosin staining, immunohistochemical and confocal laser‑scanning microscopy analysis. Examination of the islets from the βKO mouse model indicated that abolishing the expression of PDH caused a compensatory islet enlargement and impaired insulin secretion."	"Pimozide Alleviates Hyperglycemia in Diet-Induced Obesity by Inhibiting Skeletal Muscle Ketone Oxidation. Perturbations in carbohydrate, lipid, and protein metabolism contribute to obesity-induced type 2 diabetes (T2D), though whether alterations in ketone body metabolism influence T2D pathology is unknown. We report here that activity of the rate-limiting enzyme for ketone body oxidation, succinyl-CoA:3-ketoacid-CoA transferase (SCOT/Oxct1), is increased in muscles of obese mice. We also found that the diphenylbutylpiperidine pimozide, which is approved to suppress tics in individuals with Tourette syndrome, is a SCOT antagonist. Pimozide treatment reversed obesity-induced hyperglycemia in mice, which was phenocopied in mice with muscle-specific Oxct1/SCOT deficiency. These actions were dependent on pyruvate dehydrogenase (PDH/Pdha1) activity, the rate-limiting enzyme of glucose oxidation, as pimozide failed to alleviate hyperglycemia in obese mice with a muscle-specific Pdha1/PDH deficiency. This work defines a fundamental contribution of enhanced ketone body oxidation to the pathology of obesity-induced T2D, while suggesting pharmacological SCOT inhibition as a new class of anti-diabetes therapy."	"Identification of Key Regulatory Genes and Pathways in Prefrontal Cortex of Alzheimer's Disease. Alzheimer's disease (AD) is a neurodegenerative disorder partly induced by dysregulation of different brain regions. Prefrontal cortex (PFC) dysregulation has been reported to associate with mental symptoms such as delusion, apathy, and depression in AD patients. However, the internal mechanisms have not yet been well-understood. This study aims to identify the potential therapeutic target genes and related pathways in PFC of AD. First, differential expression analyses were performed on transcriptome microarray of PFC between AD specimens and non-AD controls. Second, protein-protein interaction networks were constructed based on the identified differentially expressed genes to explore candidate therapeutic target genes. Finally, these candidate genes were validated through biological experiments. The enrichment analyses showed that the differentially expressed genes were significantly enriched in protein functions and pathways related to AD. Furthermore, the top ten hub genes in the protein-protein interaction network (ELAVL1, CUL3, MAPK6, FBXW11, YWHAE, YWHAZ, GRB2, CLTC, YWHAQ, and PDHA1) were proved to be directly or indirectly related to AD. Besides, six genes (PDHA1, CLTC, YWHAE, MAPK6, YWHAZ, and GRB2) of which were validated to significantly altered in AD mice by biological experiments. Importantly, the most significantly changed gene, PDHA1, was proposed for the first time that may be serve as a target gene in AD treatment. In summary, several genes and pathways that play critical roles in PFC of AD patients have been uncovered, which will provide novel insights on molecular targets for treatment and diagnostic biomarkers of AD."	"Nuclear accumulation of pyruvate dehydrogenase alpha 1 promotes histone acetylation and is essential for zygotic genome activation in porcine embryos. Porcine zygotic genome activation (ZGA) occurs along with global epigenetic remodeling at the 4-cell stage. These processes are regulated by histone acetylation, which requires acetyl-coenzyme A (CoA). Pyruvate dehydrogenase complex (PDC) is a crucial enzyme in glucose metabolism that converts pyruvate into acetyl-CoA. In mammalian cells, acetyl-CoA is produced by pyruvate dehydrogenase alpha 1 (PDHA1) translocated into the nucleus in special conditions. To determine whether zygotic PDHA1 plays a critical role in promoting histone acetylation during ZGA, a CRISPR/Cas9 genome editing system using multiple guide RNAs was employed to generate a PDHA1-targeted parthenogenetic embryo model. Results of immunofluorescent staining showed that the nuclear accumulation of PDHA1 during ZGA was significantly inhibited by PDHA1 targeting. Meanwhile, the 4-cell arrest rate significantly increased at 72 h after activation, indicating impeded embryonic development. In addition, nuclear histone acetylation significantly decreased when PDHA1 was targeted, and quantitative PCR showed that expression of several zygotic genes was significantly decreased in the PDHA1-targeting group compared to the control group. Overexpression of PDHA1 recovered the nuclear PDHA1, H3K9Ac and H3K27Ac and EIF1A expression levels. Moreover, the 5-to-8-cell-stage embryo development rate was only partially rescued. In conclusion, expression of zygotic origin PDHA1 contributes to porcine ZGA by maintaining histone acetylation in porcine embryos."	"Epigallocatechin-3-gallate downregulates PDHA1 interfering the metabolic pathways in human herpesvirus 8 harboring primary effusion lymphoma cells. Primary effusion lymphoma (PEL) is an aggressive neoplasm correlated with human herpesvirus 8 (HHV8). Metabolic reprogramming is a hallmark of cancers. The alterations in cellular metabolism are important to the survival of HHV8 latently infected cells. Pyruvate dehydrogenase (PDH) controls the flux of metabolites between glycolysis and the tricarboxylic acid cycle (TCA cycle) and is a key enzyme in cancer metabolic reprogramming. Glutaminolysis is required for the survival of PEL cells. Glutamate dehydrogenase 1 (GDH1) converts glutamate into α-ketoglutarate supplying the TCA cycle with intermediates to support anaplerosis. Previously we have observed that epigallocatechin-3-gallate (EGCG) can induce PEL cell death and N-acetyl cysteine (NAC) attenuates EGCG induced PEL cell death. In this study, results showed that EGCG upregulated the expression of glucose transporter GLUT3, and reduced the expression of pyruvate dehydrogenase E1-alpha (PDHA1), the major regulator of PDH, and GDH1. NAC could partially reverse the effects of EGCG in PEL cells. Overexpression of PDHA1 in PEL cells or supplement of α-ketoglutarate attenuated EGCG induced cell death. EGCG also reduced the levels of oncometabolite D-2-hydroxyglutarate (D2HG). These results suggest that EGCG may modulate the metabolism of PEL cells leading to cell death."	"PDHA1 Gene Knockout In Human Esophageal Squamous Cancer Cells Resulted In Greater Warburg Effect And Aggressive Features In Vitro And In Vivo. One of the remarkable metabolic characteristics of cancer cells is that they prefer glycolysis rather than oxidative phosphorylation (OXPHOS). Pyruvate dehydrogenase E1 alpha subunit (PDHA1) is an important prerequisite for OXPHOS. Our previous studies have shown that low level of PDHA1 protein expression in esophageal squamous cell cancer (ESCC) was correlated with poor prognosis. However, the effect of PDHA1 inhibition on metabolism and biological behavior of esophageal cancer cells remains unclear. In this study, a KYSE450 PDHA1 knockout (KO) cell line of esophageal cancer was established by CRISPR/Cas9 technology. Then, the glycose metabolism, cell proliferation and migration abilities, chemotherapeutic tolerance and angiogenesis of the PDHA1 KO cells were investigated in vitro and in vivo. In the PDHA1 KO cells, the glycolysis and the consumption of glucose and glutamine were significantly enhanced, while the OXPHOS was significantly suppressed, implying Warburg effect in the PDHA1 KO cells. Furthermore, it was also proved in vitro experiments that the PDHA1 KO cell obtained proliferation advantage, as well as significantly greater chemotherapy tolerance and migration ability. Xenograft experiments discovered not only larger tumors but also increased angiogenesis in the PDHA1 KO cell group. Inhibition of PDHA1 gene expression in human ESCC leads to metabolic reprogramming of Warburg effect and increased malignancies. Targeting ESCC metabolic reprogramming may become a potential therapeutic target."	"Hyperpolarized <sup>13</sup>C-pyruvate MRI detects real-time metabolic flux in prostate cancer metastases to bone and liver: a clinical feasibility study. Hyperpolarized (HP) <sup>13</sup>C-pyruvate MRI is a stable-isotope molecular imaging modality that provides real-time assessment of the rate of metabolism through glycolytic pathways in human prostate cancer. Heretofore this imaging modality has been successfully utilized in prostate cancer only in localized disease. This pilot clinical study investigated the feasibility and imaging performance of HP <sup>13</sup>C-pyruvate MR metabolic imaging in prostate cancer patients with metastases to the bone and/or viscera. Six patients who had metastatic castration-resistant prostate cancer were recruited. Carbon-13 MR examination were conducted on a clinical 3T MRI following injection of 250 mM hyperpolarized <sup>13</sup>C-pyruvate, where pyruvate-to-lactate conversion rate (kPL) was calculated. Paired metastatic tumor biopsy was performed with histopathological and RNA-seq analyses. We observed a high rate of glycolytic metabolism in prostate cancer metastases, with a mean kPL value of 0.020 ± 0.006 (s<sup>-1</sup>) and 0.026 ± 0.000 (s<sup>-1</sup>) in bone (N = 4) and liver (N = 2) metastases, respectively. Overall, high kPL showed concordance with biopsy-confirmed high-grade prostate cancer including neuroendocrine differentiation in one case. Interval decrease of kPL from 0.026 at baseline to 0.015 (s<sup>-1</sup>) was observed in a liver metastasis 2 months after the initiation of taxane plus platinum chemotherapy. RNA-seq found higher levels of the lactate dehydrogenase isoform A (Ldha,15.7 ± 0.7) expression relative to the dominant isoform of pyruvate dehydrogenase (Pdha1, 12.8 ± 0.9). HP <sup>13</sup>C-pyruvate MRI can detect real-time glycolytic metabolism within prostate cancer metastases, and can measure changes in quantitative kPL values following treatment response at early time points. This first feasibility study supports future clinical studies of HP <sup>13</sup>C-pyruvate MRI in the setting of advanced prostate cancer."	"Potential regulation by miRNAs on glucose metabolism in liver of common carp (Cyprinus carpio) at different temperatures. Water temperature can affect the metabolism of fish. Common carp (Cyprinus carpio) is a representative eurythermic fish that can survive at a wide range of ambient temperatures, allowing it to live in an extensive geographical range. The goal of this work was to study the glucose metabolism of common carp at different temperatures and determine the miRNAs involved in the regulation of glucose metabolism. We determined the indicators related to glucose metabolism after long-term temperature stress and constructed nine small RNA libraries of livers under different temperature stress (5 °C, 17 °C, and 30 °C, with three biological replicates for each temperature), and subjected these samples to high-throughput sequencing. A positive relationship was observed between weight gain rate (WGR) and temperature increase after 18 days of temperature stress. However, the glucose level in the plasma maintained a gentle decrease. Unexpectedly, liver lactic acid levels were elevated in HTG (high temperature group) and LTG (low temperature group). Six down-regulated miRNAs (miR-122, miR-30b, miR-15b-5p, miR-20a-5p, miR-1, and miR-7b) were identified as involved in the regulation of glycolysis. Twelve genes were predicted as targets of these miRNAs, and these genes are in pathways related to pyruvate metabolism, glycolysis/gluconeogenesis, and the citrate cycle (TCA cycle). The results allowed prediction of a potential regulatory network of miRNAs involved in the regulation of glycolysis. The target genes of six down-regulated miRNAs were up-regulated under temperature stress, including Aldolase C, fructose-bisphosphate, b (ALDOCB), multiple inositol-polyphosphate phosphatase 1 (MINPP1), phosphoenolpyruvate carboxykinase 1 (PCK1), pyruvate dehydrogenase E1 alpha 1 (PDHA1), aldehyde dehydrogenase 9 family member A1a (ALDH9A1A), Acetyl-coenzyme A synthetase (ACSS), lactate dehydrogenase b (LDH-b), and glyoxylate reductase/hydroxypyruvate reductase (GRHPR). Other key genes of glycolysis, glucose transporter 1 (GLUT-1), pyruvate kinase PKM (PKM), and mitochondrial pyruvate carrier (MPC) were significantly up-regulated in LTG and HTG. Overall, the results suggest that miRNAs maintain their energy requirements by regulating glycolysis and play an important role in the molecular response to cold and heat stress of common carp. These data provide the foundation for further studies of the role of miRNAs in environmental adaptation in fish."	"Differential phenotypic expression of a novel PDHA1 mutation in a female monozygotic twin pair. Pyruvate dehydrogenase complex (PDC) deficiency caused by mutations in the X-linked PDHA1 gene has a broad clinical presentation, and the pattern of X-chromosome inactivation has been proposed as a major factor contributing to its variable expressivity in heterozygous females. Here, we report the first set of monozygotic twin females with PDC deficiency, caused by a novel, de novo heterozygous missense mutation in exon 11 of PDHA1 (NM_000284.3: c.1100A&gt;T). Both twins presented in infancy with a similar clinical phenotype including developmental delay, episodes of hypotonia or encephalopathy, epilepsy, and slowly progressive motor impairment due to pyramidal, extrapyramidal, and cerebellar involvement. However, they exhibited clear differences in disease severity that correlated well with residual PDC activities (approximately 60% and 20% of mean control values, respectively) and levels of immunoreactive E1α subunit in cultured skin fibroblasts. To address whether the observed clinical and biochemical differences could be explained by the pattern of X-chromosome inactivation, we undertook an androgen receptor assay in peripheral blood. In the less severely affected twin, a significant bias in the relative activity of the two X chromosomes with a ratio of approximately 75:25 was detected, while the ratio was close to 50:50 in the other twin. Although it may be difficult to extrapolate these results to other tissues, our observation provides further support to the hypothesis that the pattern of X-chromosome inactivation may influence the phenotypic expression of the same mutation in heterozygous females and broadens the clinical and genetic spectrum of PDC deficiency."	"[Clinical and genetic characteristics of 62 children with mitochondrial epilepsy]. Objective: To summarize the clinical and genetic characteristics of children with mitochondrial epilepsy. Methods: Clinical data of 62 children who were clinically and genetically diagnosed with mitochondrial epilepsy by the Department of Neurology, Beijing Children's Hospital from October 2011 to December 2018 were analyzed retrospectively, and the control of epilepsy was followed up. T test or χ(2) test were used to analyze the related factors affecting the prognosis of epilepsy between the effective group and the ineffective group. Results: Of the 62 patients, 33 were male and 29 were female. The age of onset was 3.38 (0-12.00) years; for the type of seizures, 68% (42/62) of the patients had focal seizures, generalized or secondary generalized tonic-clonic seizures were seen in 32% (20/62), myoclonic seizures in 23% (14/62), spastic seizures in 7 cases, tonic seizures in 4 cases, absence seizure, atonic seizure and clonic seizure in 1 case each; 16 cases (26%) had status epilepticus, of whom 6 cases had epilepsia partialis continua; 52% (32/62) had 2 or more types of seizures. The clinical phenotypes were mitochondrial encephalopathy, lactic acidosis, and stroke-like episodes (MELAS) in 29 cases, Leigh syndrome (LS) in 11 cases, combined oxidative phosphorylation deficiency in 6 cases, myoclonus epilepsy with ragged-red fibers in 5 cases, Alpers syndrome in 4 cases, pontocerebellar hypoplasia type 6 and mitochondrial DNA depletion syndrome 9 in 2 cases each, mitochondrial complex Ⅰ deficiency nuclear type 20, progressive cavitating leukoencephalopathy, and biotinidase deficiency in 1 case each. Of the 62 cases, 40 cases (65%) had mitochondrial DNA (mtDNA) variations, of which 26 cases had m.3243A&gt;G variants, 6 cases had m.8344A&gt;G variants, and 3 cases had m.8993T&gt;G/C variants, m.3271T&gt;C, m.3481G&gt;A, m.3946G&gt;A, m.13094T&gt;C, m.14487T&gt;C variant was in 1 case each; nuclear DNA (nDNA) variations were identified in 22 cases (35%), of which 7 cases carrying variations in mitochondrial ammonia acyl tRNA synthetase coding gene, mutations in POLG and the gene encoding complex Ⅰ were in 4 cases each, variations in SUCLG1 and SDHA genes were in 2 cases each, and variations in PDHA1, BTD and TRIT1 genes were in 1 case each. Forty-three patients were followed up, and the follow-up time was 20 (3-84) months. According to the follow-up results, the anti-epilepsy treatment was effective in 19 cases (44%) and ineffective in other 24 cases (56%). The onset age of the effective group was 3.42 (0-11.50) years and that of the ineffective group was 0.92 (0-9.50) years. The onset duration of the effective group was 0 (0-7.00) years and that of the ineffective group was 0 (0-4.83) years. There was no significant difference between the effective group and the ineffective group (t=1.662, 0.860; P=0.104, 0.395). In the effective group and the ineffective group, 12 cases and 9 cases used less than 2 kinds of antiepileptic drugs, 7 cases and 15 cases used more than or equal to 2 kinds of antiepileptic drugs, 13 and 15 cases had first epilepsy, 6 and 9 cases had non-first epilepsy, 14 and 11 cases had mtDNA variation, 5 and 13 cases had nDNA variation, respectively. There was no significant difference between the two groups (χ(2)=2.794, 0.164, 3.380; P=0.095, 0.686, 0.066). Conclusions: The types of seizures with mitochondrial epilepsy in children varied, with focal motor seizures being the most common, followed by generalized or secondary generalized tonic-clonic seizures. Most children have more than two types of seizures. MELAS is the most common clinical phenotype, followed by LS; mtDNA variation is the dominant gene variation, of which m.3243A&gt;G variation is the most common hotspot variation, followed by gene variation encoding mitochondrial aminoacyl tRNA synthase. 目的: 总结儿童线粒体疾病相关癫痫的临床特点和遗传特征。 方法: 对2011年10月至2018年12月在北京儿童医院神经内科就诊,基因确诊的62例线粒体疾病相关癫痫患儿的临床资料进行回顾性总结,对癫痫控制情况进行随访,按治疗结果分为有效组和无效组,应用t检验或χ(2)检验进行组间比较。 结果: 62例中男33例、女29例,发病年龄为3.38(0~12.00)岁;癫痫发作类型以局灶性运动发作最多(68%,42例),其余依次为全面性或继发性全面性强直阵挛发作(32%,20例),肌阵挛发作(23%,14例),痉挛发作(7例),强直发作(4例),失神、失张力、阵挛发作各1例;癫痫持续状态16例(26%),其中持续性部分性癫痫6例;52%(32例)的患儿有2种或2种以上发作类型。线粒体脑肌病伴高乳酸血症和卒中样发作(MELAS)29例,Leigh综合征(LS)11例,联合氧化磷酸化缺乏症6例,肌阵挛癫痫伴破碎红纤维5例,Alpers综合征4例,脑桥小脑发育不良6型、线粒体缺失综合征9型各2例,ACAD9基因缺陷致线粒体复合物Ⅰ缺乏症、进行性空泡脑白质病、生物素酶缺乏症各1例。线粒体DNA(mtDNA)变异40例(65%),其中26例为m.3243A&gt;G变异,6例为m.8344A&gt;G变异,3例为m.8993T&gt;G/C变异,m.3271T&gt;C、m.3481G&gt;A、m.3946G&gt;A、m.13094T&gt;C、m.14487T&gt;C变异各1例;核DNA(nDNA)变异22例(35%),其中编码线粒体氨酰tRNA合成酶的基因7例,POLG基因和编码复合物Ⅰ的基因各4例,SUCLG1、SDHA基因各2例,PDHA1、BTD、TRIT1基因各1例。随访43例,随访时间为20(3~84)个月,其中癫痫治疗有效组19例(44%),无效组24例(56%)。癫痫治疗有效组与无效组起病年龄、发作时病程差异无统计学意义[3.42(0~11.50)岁比0.92(0~9.50)岁,0(0~7.00)年比0(0~4.83)年,t=1.662、0.860,P=0.104、0.395]。有效组与无效组使用抗癫痫药数量&lt;2种的例数分别为12例和9例,≥2种分别为7例和15例、癫痫首发例数分别为13例和15例、非首发分别为6例和9例、mtDNA变异例数分别为14例和11例,nDNA变异例数分别为5例和13例,差异均无统计学意义(χ(2)=2.794、0.164、3.380,P=0.095、0.686、0.066)。 结论: 儿童线粒体疾病相关癫痫发作类型多样,以局灶性运动发作最常见,其次为全面性或继发性全面性强直阵挛发作,多数患儿存在2种以上发作类型。MELAS是最常见的临床表型,其次为LS;基因变异以mtDNA变异为主,其中m.3243A&gt;G变异是最常见的热点变异,其次为编码线粒体氨酰tRNA合成酶的基因变异。."	"An integrated metabolomic and gene expression analysis identifies heat and calcium metabolic networks underlying postharvest sweet cherry fruit senescence. Ηeat and calcium treatments reprogram sweet cherry fruit metabolism during postharvest senescence as evidenced by changes in respiration, amino acid metabolism, sugars, and secondary metabolites shift. Heat and calcium treatments are used to improve postharvest fruit longevity; however, the exact mechanism remains poorly understood. To characterize the impact of these treatments on sweet cherries metabolism, 'Lapins' fruits were treated with heat or CaCl2 solutions and their combination and subsequently were exposed at room temperature, for up to 4 days, defined as senescence period. Single and combined heat and calcium treatments partially delayed fruit senescence, as evidenced by changes in fruit colour darkening, skin penetration force, and respiration activity. Calcium content was noticeably increased by heat in Ca-treated fruit. Several primary metabolites, including amino acids, organic acids, and alcohols, were decreased in response to both treatments, while many soluble sugars and secondary metabolites were increased within 1 day post-treatment. Changes of several metabolites in heat-treated fruits, especially esculetin, peonidin 3-O-glucoside and peonidin 3-O-galactoside, ribose, pyroglutamate, and isorhamnetin-3-O-rutinoside, were detected. The metabolome of fruit exposed to calcium also displayed substantial modulations, particularly in the levels of galactose, glycerate, aspartate, tryptophan, phospharate rutin, and peonidin 3-O-glucoside. The expression of several genes involved in TCA cycle (MDH1, IDH1, OGDH, SUCLA2, and SDH1-1), pectin degradation (ADPG1) as well as secondary (SK1, 4CL1, HCT, and BAN), amino acids (ALDH18A1, ALDH4A1, GS, GAD, GOT2, OPLAH, HSDH, and SDS), and sugar (PDHA1 and DLAT) metabolism were affected by both treatments. Pathway-specific analysis further revealed the regulation of fruit metabolic programming by heat and calcium. This work provides a comprehensive understanding of metabolic regulation in response to heat and calcium during fruit senescence."	"The role of glycolysis and mitochondrial respiration in the formation and functioning of endothelial tip cells during angiogenesis. During sprouting angiogenesis, an individual endothelial tip cell grows out from a pre-existing vascular network and guides following and proliferating stalk cells to form a new vessel. Metabolic pathways such as glycolysis and mitochondrial respiration as the major sources of adenosine 5'-triphosphate (ATP) for energy production are differentially activated in these types of endothelial cells (ECs) during angiogenesis. Therefore, we studied energy metabolism during angiogenesis in more detail in tip cell and non-tip cell human umbilical vein ECs. Small interfering RNA was used to inhibit transcription of glycolytic enzymes PFKFB3 or LDHA and mitochondrial enzyme PDHA1 to test whether inhibition of these specific pathways affects tip cell differentiation and sprouting angiogenesis in vitro and in vivo. We show that glycolysis is essential for tip cell differentiation, whereas both glycolysis and mitochondrial respiration occur during proliferation of non-tip cells and in sprouting angiogenesis in vitro and in vivo. Finally, we demonstrate that inhibition of mitochondrial respiration causes adaptation of EC metabolism by increasing glycolysis and vice versa. In conclusion, our studies show a complex but flexible role of the different metabolic pathways to produce ATP in the regulation of tip cell and non-tip cell differentiation and functioning during sprouting angiogenesis."	"Sirtuin 3-mediated pyruvate dehydrogenase activity determines brown adipocytes phenotype under high-salt conditions. Previous study indicated that Sirtuin 3 (SIRT3) is a central regulator of adaptive thermogenesis in brown adipose tissue (BAT). Here we investigate the role of SIRT3 in the modulation of cellular phenotype in BAT under high salt intake (HS). HS downregulated SIRT3 level in BAT, accompanied by decreased oxygen consumption rate, and caused a severe loss of BAT characteristics. Mechanically, SIRT3 interacted with pyruvate dehydrogenase E1α (PDHA1) and deacetylated Lys-83 both in vitro and in vivo under HS. In parallel, HS suppressed salt-induced kinase (Sik) 2 phosphorylation. Silencing Sik2 further diminished SIRT3 activity and enhanced acetylation of PDHA1 K83 level. Reconstruction of SIRT3 restored PDH activity and thermogenic markers expression in differentiated brown adipocytes from SIRT3 knockout (KO) mice. In addition, loss of SIRT3 induced selective remodelling of phospholipids and glycerolipids in BAT exposure to HS. These data indicate that SIRT3 is an essential enzymatic switch that controls brown adipose cell phenotype."	"Hexokinase II promotes the Warburg effect by phosphorylating alpha subunit of pyruvate dehydrogenase. Tumor cells rely heavily on glycolysis regardless of oxygen tension, a phenomenon called the Warburg effect. Hexokinase II (HKII) catalyzes the first irreversible step of glycolysis and is often overexpressed in tumor cells. Mitochondrial HKII couples glycolysis and oxidative phosphorylation while maintaining mitochondrial membrane integrity. In this study, we investigated the role of HKII in promoting the Warburg effect in cancer cells. HKII-mediated phosphorylation of the alpha subunit of pyruvate dehydrogenase (PDHA1) was tested in HEK293T cells and clear cell renal cell carcinoma (ccRCC) specimens using gene knockdown, western blotting, immunohistochemistry, and immunofluorescence. It was determined that HKII could not only transform glucose into glucose-6-phosphate, but also transfer the phosphate group of ATP onto PDHA1. In addition, it was found that HKII increased the phosphorylation of Ser293 on PDHA1, decreasing pyruvate dehydrogenase (PDH) complex activity and thus rerouting the metabolic pathway and promoting the Warburg effect. The overexpression of HKII correlated with the phosphorylation of PDHA1 and disease progression in ccRCC. The data presented here suggest that HKII is an important biomarker in the evaluation and treatment of cancer."	"Pyruvate Dehydrogenase Complex Deficiency: An Unusual Cause of Recurrent Lactic Acidosis in a Paediatric Critical Care Unit. Pyruvate dehydrogenase complex deficiency (PDCD) is a rare neurodegenerative disorder associated with abnormal mitochondrial metabolism. Structural brain abnormalities are common in PDCD. A case of a patient with PDCD with an unusual presentation is described. A 20-month-old boy with hypotonia and developmental delay, presented with hypoxia and respiratory distress due to bronchiolitis. During hospitalisation, he was prescribed PediaSure® feeds. Two days after starting these feeds, he developed respiratory arrest requiring intubation. His blood gas before arrest revealed lactate of 8.9 mmol/L despite normal haemodynamics. After stabilisation and a period of compulsory fasting, subsequent feeding with PediaSure® resulted in the recurrence of lactic acidosis. A metabolic workup revealed an elevated serum pyruvate level. Brain MRI was normal. Skeletal muscle biopsy confirmed PDCD. The most common cause of PDCD is a mutation in the X-linked PDHA1 gene. The severity of PDCD can range from neonatal death to more delayed onset of symptoms as in our index case. Normal brain MRI is reported in only 2% of patients with PDCD. There is no effective treatment for PDCD. In patients with proximal muscle weakness and feeding intolerance with glucose-containing feeds, the presence of lactic acidosis should raise the suspicion of PDCD irrespective of the patient's age and normal MRI."	"Determination of Pyruvate Metabolic Fates Modulates Head and Neck Tumorigenesis. Even with increasing evidence for roles of glycolytic enzymes in controlling cancerous characteristics, the best target of candidate metabolic enzymes for lessening malignancy remains under debate. Pyruvate is a main glycolytic metabolite that could be mainly converted into either lactate by Lactate Dehydrogenase A (LDHA) or acetyl-CoA by Pyruvate Dehydrogenase E1 component α subunit (PDHA1) catalytic complex. In tumor cells, accumulating lactate is produced whereas the conversion of pyruvate into mitochondrial acetyl-CoA is less active compared with their normal counterparts. This reciprocal molecular association makes pyruvate metabolism a potential choice of anti-cancer target. Cellular and molecular changes were herein assayed in Head and Neck Squamous Cell Carcinoma (HNSCC) cells in response to LDHA and PDHA1 loss in vitro, in vivo and in clinic. By using various human cancer databases and clinical samples, LDHA and PDHA1 levels exhibit reversed prognostic roles. In vitro analysis demonstrated that decreased cell growth and motility accompanied by an increased sensitivity to chemotherapeutic agents was found in cells with LDHA loss whereas PDHA1-silencing exhibited opposite phenotypes. At the molecular level, it was found that oncogenic Protein kinase B (PKB/Akt) and Extracellular signal-regulated kinase (ERK) singling pathways contribute to pyruvate metabolism mediated HNSCC cell growth. Furthermore, LDHA/PDHA1 changes in HNSCC cells resulted in a broad metabolic reprogramming while intracellular molecules including polyunsaturated fatty acids and nitrogen metabolism related metabolites underlie the malignant changes. Collectively, our findings reveal the significance of pyruvate metabolic fates in modulating HNSCC tumorigenesis and highlight the impact of metabolic plasticity in HNSCC cells."	"Shengui Sansheng San Ameliorates Cerebral Energy Deficiency via Citrate Cycle After Ischemic Stroke. Cerebral energy deficiency is a key pathophysiologic cascade that results in neuronal injury and necrosis after ischemic stroke. Shengui Sansheng San (SSS) has been used to treat stroke for more than 300 years. In present study, we investigated the therapeutic efficacy and mechanism of SSS extraction on cerebral energy deficiency post-stroke. In permanent middle cerebral artery occlusion (pMCAo) model of rats, it suggested that SSS extraction in dose-dependent manner improved neurological function, cerebral blood flow (CBF), <sup>18</sup>F-2-deoxy-glucose uptake and the density and diameter of alpha smooth muscle actin (α-SMA) positive vasculature in ipsilateral area, as well as decreased infarcted volume. Meanwhile, the metabolomics study in cerebrospinal fluid (CSF) was performed by using 5-(diisopropylamino)amylamine (DIAAA) derivatization-UHPLC-Q-TOF/MS approach. Eighty-eight endogenous metabolites were identified, and mainly involved in citrate cycle, fatty acid biosynthesis, aminoacyl-tRNA biosynthesis, amino acids metabolism and biosynthesis, etc. The remarkable increase of citrate in CSF after treatment with three dosages indicated that the therapeutic mechanism of SSS extraction might be related with citrate cycle. Simultaneously, it showed that high dosage group significantly increased peripheral blood glucose level, the expressions of glucose transporter (GLUT) 1, GLUT3, and monocarboxylic acid transporter 1 (MCT1), which contributed to the transportation of glucose and lactate. By the regulations of phosphorylated pyruvate dehydrogenase E1-alpha (p-PDHA1), acetyl CoA synthetase and citrate synthetase (CS), the levels of citrate and its upstream molecules (pyruvate and acetyl CoA) in peri-infarction zone further enhanced, which ultimately caused the massive yield of adenosine triphosphate (ATP). Our study first demonstrated that SSS extraction could ameliorate cerebral energy deficiency after ischemia by citrate cycle, which is characterized by the enhancements of glucose supply, transportation, utilization, and metabolism."	"SIRT3 elicited an anti-Warburg effect through HIF1α/PDK1/PDHA1 to inhibit cholangiocarcinoma tumorigenesis. Cholangiocarcinoma (CCA) is an extremely invasive malignancy with late diagnosis and unfavorable prognosis. Surgery and chemotherapy are still not effective in improving outcomes in CCA patients. It is crucial to explore a novel therapeutic target for treating CCA. An NAD-dependent deacetylase also known as Sirtuin-3 (SIRT3) has been shown to regulate cellular metabolism in various cancers dynamically. However, the biological function of SIRT3 in CCA remains unclear. In this study, bioinformatics analyses were performed to identify the differentially expressed genes and pathways enriched. CCA samples were collected for immunohistochemical analysis. Three human CCA cell lines (HuCCT1, RBE, and HCCC9810) were used to explore the molecular mechanism of SIRT3 regulation of metabolic reprogramming and malignant behavior in CCA. A CCA xenograft model was then established for further validation in vivo. The data showed that SIRT3 expression was decreased and glycolysis was enhanced in CCA. Similar metabolic reprogramming was also observed in SIRT3 knockout mice. Furthermore, we demonstrated that SIRT3 could play an anti-Warburg effect by inhibiting the hypoxia-inducible factor-1α (HIF1α)/pyruvate dehydrogenase kinase 1 (PDK1)/pyruvate dehydrogenase (PDHA1) pathway in CCA cells. CCA cell proliferation and apoptosis were regulated by SIRT3-mediated metabolic reprogramming. These findings were further confirmed in CCA clinical samples and the xenograft model. Collectively, this study suggests that in the inhibition of CCA progression, SIRT3 acts through an anti-Warburg effect on the downstream pathway HIF1α/PDK1/PDHA1."	"The genetic etiology in cerebral palsy mimics: The results from a Greek tertiary care center. Non-progressive genetic disorders may present with motor dysfunction resembling cerebral palsy (CP). Such patients are often characterized as CP mimics. The purpose of this work was to delineate the clinical manifestations and molecular findings of CP mimic patients, with the ultimate goal to offer specific disease-modifying therapy and genetic counseling. Retrospective study of 47 patients diagnosed with CP and no acquired etiology. Chart review of clinical, neuroradiological, biochemical and molecular data was performed. 31,91% of patients manifested with features resembling dyskinetic CP, 19,14% spastic CP, 10,63% ataxic CP and 38,30% mixed CP. In 23 patients molecular diagnosis was reached and included 5 hereditary spastic paraplegia genes (SPG) in spastic CP mimics; HPRT1, TH, QDPR, DDC in dystonic CP mimics; ADCY5 and NIKX2-1 in choreic CP mimics; CANA1A in ataxic CP mimics; and SPG, PDHA1, NIKX2-1, AT, SLC2A1 and SPR in mixed CP mimics. In 14 patients, the etiological diagnosis led to specific treatment. CP mimics show a number of features that differ from classic CP and can be used as diagnostic clues, including presence of mixed motor features, minor dysmorphic features, oculogyric movements, multiple features of autonomic dysfunction, and acquired microcephaly. A more stringent use of the concept of CP focused on acquired lesions during the perinatal and infancy periods, and excluding disorders that could be of genetic origin, could contribute to a purer use of the term. Identification of a specific genetic cause for CP mimics may in certain cases lead to etiologic treatment."	"The HGF-MET axis coordinates liver cancer metabolism and autophagy for chemotherapeutic resistance. Notwithstanding the numerous drugs available for liver cancer, emerging evidence suggests that chemotherapeutic resistance is a significant issue. HGF and its receptor MET play critical roles in liver carcinogenesis and metastasis, mainly dependent on the activity of receptor tyrosine kinase. However, for unknown reasons, all HGF-MET kinase activity-targeted drugs have failed or have been suspended in clinical trials thus far. Macroautophagy/autophagy is a protective 'self-eating' process for resisting metabolic stress by recycling obsolete components, whereas the impact of autophagy-mediated reprogrammed metabolism on therapeutic resistance is largely unclear, especially in liver cancer. In the present study, we first observed that HGF stimulus facilitated the Warburg effect and glutaminolysis to promote biogenesis in multiple liver cancer cells. We then identified the pyruvate dehydrogenase complex (PDHC) and GLS/GLS1 as crucial substrates of HGF-activated MET kinase; MET-mediated phosphorylation inhibits PDHC activity but activates GLS to promote cancer cell metabolism and biogenesis. We further found that the key residues of kinase activity in MET (Y1234/1235) also constitute a conserved LC3-interacting region motif (Y1234-Y1235-x-V1237). Therefore, on inhibiting HGF-mediated MET kinase activation, Y1234/1235-dephosphorylated MET induced autophagy to maintain biogenesis for cancer cell survival. Moreover, we verified that Y1234/1235-dephosphorylated MET correlated with autophagy in clinical liver cancer. Finally, a combination of MET inhibitor and autophagy suppressor significantly improved the therapeutic efficiency of liver cancer in vitro and in mice. Together, our findings reveal an HGF-MET axis-coordinated functional interaction between tyrosine kinase signaling and autophagy, and establish a MET-autophagy double-targeted strategy to overcome chemotherapeutic resistance in liver cancer. Abbreviations: ALDO: aldolase, fructose-bisphosphate; CQ: chloroquine; DLAT/PDCE2: dihydrolipoamide S-acetyltransferase; EMT: epithelial-mesenchymal transition; ENO: enolase; GAPDH: glyceraldehyde-3-phosphate dehydrogenase; GLS/GLS1: glutaminase; GLUL/GS: glutamine-ammonia ligase; GPI/PGI: glucose-6-phosphate isomerase; HCC: hepatocellular carcinoma; HGF: hepatocyte growth factor; HK: hexokinase; LDH: lactate dehydrogenase; LIHC: liver hepatocellular carcinoma; LIR: LC3-interacting region; PDH: pyruvate dehydrogenase; PDHA1: pyruvate dehydrogenase E1 alpha 1 subunit; PDHX: pyruvate dehydrogenase complex component X; PFK: phosphofructokinase; PK: pyruvate kinase; RTK: receptor tyrosine kinase; TCGA: The Cancer Genome Atlas."	"[Shenmai injection protects mitochondria from oxidative injury in myocardial cells and its mechanism]. To investigate the effect of Shenmai injection on myocardial cells with oxidative injury and the underlying mechanisms. Tert-butyl hydroperoxide (t-BHP) was used to induce the oxidative stress in H9c2 myocardial cells. The cell viability and ATP level were evaluated using MTT-colorimetric method and CellTiter-Glo luminescent cell viability assay. The oxygen respiration rate was examined by Clark oxygen electrode. Pyruvate and pyruvate dehydrogenase (PDH) levels were evaluated by ELISA kit. Western blot and quantitative real-time RT-PCR were employed to evaluate the expression of pyruvate dehydrogenase alpha 1(PDHA1) and pyruvate dehydrogenase kinase 1(PDK1). Shenmai injection significantly improved viability and respiration of H9c2 myocardial cells after t-BHP injury (P&lt;0.05 or P&lt;0.01). It increased ATP contents by consuming pyruvate and increasing PDH level (P&lt;0.05 or P&lt;0.01). Furthermore, Shenmai injection had the tendency to increase protein expression of PDHA1(P&lt;0.05) and decrease mRNA expression of PDK1 (P&gt;0.05). Shenmai injection protects mitochondria from oxidative stress by increasing PDH level, which indicates that it may improve energy metabolism of myocardial cells."	"Redundancy of human ATG4 protease isoforms in autophagy and LC3/GABARAP processing revealed in cells. Macroautophagy/autophagy is a cellular degradation pathway that delivers cytoplasmic material to lysosomes via double-membrane organelles called autophagosomes. Lipidation of ubiquitin-like LC3/GABARAP proteins on the autophagosome membrane is important for autophagy. The cysteine protease ATG4 executes 2 LC3/GABARAP processing events: priming of newly synthesized pro-LC3/GABARAP to enable subsequent lipidation, and delipidation/deconjugation of lipidated LC3/GABARAP (the exact purpose of which is unclear in mammals). Four ATG4 isoforms (ATG4A to ATG4D) exist in mammals; however, the functional redundancy of these proteins in cells is poorly understood. Here we show that human HAP1 and HeLa cells lacking ATG4B exhibit a severe but incomplete defect in LC3/GABARAP processing and autophagy. By further genetic depletion of ATG4 isoforms using CRISPR-Cas9 and siRNA we uncover that ATG4A, ATG4C and ATGD all contribute to residual priming activity, which is sufficient to enable lipidation of endogenous GABARAPL1 on autophagic structures. We also demonstrate that expressing high levels of pre-primed LC3B in ATG4-deficient cells can rescue a defect in autophagic degradation of the cargo receptor SQSTM1/p62, suggesting that delipidation by human ATG4 is not essential for autophagosome formation and fusion with lysosomes. Overall, our study provides a comprehensive characterization of ATG4 isoform function during autophagy in human cells. Abbreviations: Atg: autophagy-related; baf A1: bafilomycin A1; CASP3: caspase 3; CLEM: correlative light and electron microscopy; CMV: cytomegalovirus; CRISPR: clustered regularly interspaced short palindromic repeats; DKO: double knockout; EGFP: enhanced green fluorescent protein; GABARAP: GABA type A receptor-associated protein; GABARAPL1: GABA type A receptor-associated protein like 1; GABARAPL2: GABA type A receptor-associated protein like 2; GFP: green fluorescent protein; HB: homogenization buffer; KO: knockout; LAMP1: lysosomal associated membrane protein 1; LIR: LC3 interacting region; MAP1LC3/LC3: microtubule-associated protein 1 light chain 3; MFN2: mitofusin 2; N.A.: numerical aperture; NEM: N-ethylmaleimide; PDHA1: pyruvate dehydrogenase E1 alpha 1 subunit; PLD: phospholipase D; PE: phosphatidylethanolamine; RLUC: Renilla luciferase; SQSTM1: sequestosome 1; TEM: transmission electron microscopy; TKO: triple knockout; ULK1: unc-51 like autophagy activating kinase 1; VCL: vinculin; WT: wild-type."	"Low expression of PDHA1 predicts poor prognosis in gastric cancer. PDH E1 component subunit alpha (PDHA1) has been reported to be biologically significant in several human tumors. The aim of this study was to investigate the expression of PDHA1 in gastric cancer (GC) and its relationship with clinicopathological characteristics and prognosis. Oncomine analysis of neoplastic vs. normal tissue showed that the mRNA levels of PDHA1 were significantly underexpressed in different types of GC across three analyses. Underexpression of PDHA1 was found in intestinal-type GC (P = 0.009), diffuse-type GC (P = 0.036), and mixed-type GC (P = 0.025). Immunohistochemical staining of the 174 GC tissue microarray showed that PDHA1 staining is much stronger in normal mucosa than in GC samples (P = 0.040). Furthermore, PDHA1 expression levels were found to be significantly lower in 69.05% (87/126) of poorly differentiated GCs as compared to the well or moderately differentiated ones (P = 0.037). Intriguingly, PDHA1 expression was significantly correlated with depth of invasion (P &lt; 0.001), lymph node metastasis (P &lt; 0.001), TNM stage (P &lt; 0.001), and nerve invasion (P = 0.006). However, it was not correlated with gender, age, Lauren classification, and lymphovascular invasion (P &gt; 0.05 for all). Kaplan-Meier analysis revealed that low tumor expression of PDHA1 was significantly correlated with a poorer overall survival in patients with GC (5-year overall survival rates for patients with low vs high PDHA1 expression = 49.8% vs 72.7%, hazard ratio of death from GC = 2.594, 95% CI = 1.527 to 4.408, P &lt; 0.001). Multivariate analysis showed that PDHA1 (P = 0.025) was an independent predictor of overall survival. These findings are of potential clinical utility and merit further validation."	"Residual feed intake in beef cattle and its association with carcass traits, ruminal solid-fraction bacteria, and epithelium gene expression. Residual feed intake (RFI) describes an animal's feed efficiency independent of growth performance. The objective of this study was to determine differences in growth performance, carcass traits, major bacteria attached to ruminal solids-fraction, and ruminal epithelium gene expression between the most-efficient and the least-efficient beef cattle. One-hundred and forty-nine Red Angus cattle were allocated to three contemporary groups according to sex and herd origin. Animals were fed a finishing diet in confinement for 70 d to determine the RFI category for each. Within each group, the two most-efficient (n = 6; RFI coefficient = - 2.69 ± 0.58 kg dry matter intake (DMI)/d) and the two least-efficient animals (n = 6; RFI coefficient = 3.08 ± 0.55 kg DMI/d) were selected. Immediately after slaughter, ruminal solids-fraction and ruminal epithelium were collected for bacteria relative abundance and epithelial gene expression analyses, respectively, using real-time PCR. The most-efficient animals consumed less feed (P = 0.01; 5.03 kg less DMI/d) compared with the least-efficient animals. No differences (P &gt; 0.10) in initial body weight (BW), final BW, and average daily gain (ADG) were observed between the two RFI classes. There were no significant RFI × sex effects (P &gt; 0.10) on growth performance. Compared with the least-efficient group, hot carcass weight (HCW), ribeye area (REA), and kidney, pelvic, and heart fat (KPH) were greater (P ≤ 0.05) in the most-efficient cattle. No RFI × sex effect (P &gt; 0.10) for carcass traits was detected between RFI groups. Of the 10 bacterial species evaluated, the most-efficient compared with least efficient cattle had greater (P ≤ 0.05) relative abundance of Eubacterium ruminantium, Fibrobacter succinogenes, and Megasphaera elsdenii, and lower (P ≤ 0.05) Succinimonas amylolytica and total bacterial density. No RFI × sex effect on ruminal bacteria was detected between RFI groups. Of the 34 genes evaluated in ruminal epithelium, the most-efficient cattle had greater (P ≤ 0.05) abundance of genes involved in VFA absorption, metabolism, ketogenesis, and immune/inflammation-response. The RFI × sex interactions indicated that responses in gene expression between RFI groups were due to differences in sex. Steers in the most-efficient compared with least-efficient group had greater (P ≤ 0.05) expression of SLC9A1, HIF1A, and ACO2. The most-efficient compared with least-efficient heifers had greater (P ≤ 0.05) mRNA expression of BDH1 and lower expression (P ≤ 0.05) of SLC9A2 and PDHA1. The present study revealed that greater feed efficiency in beef cattle is associated with differences in bacterial species and transcriptional adaptations in the ruminal epithelium that might enhance nutrient delivery and utilization by tissues. The lack of RFI × sex interaction for growth performance and carcass traits indicates that sex may not play a major role in improving these phenotypes in superior RFI beef cattle. However, it is important to note that this result should not be considered a solid biomarker of efficient beef cattle prior to further examination due to the limited number of heifers compared with steers used in the study."	"Insulin induces phosphorylation of pyruvate dehydrogenase through RhoA activation pathway in HepG2 cells. Insulin is a critical signaling molecule in reducing blood glucose levels, and pyruvate dehydrogenase (PDH) is an essential enzyme in regulating glucose metabolism. However, the insulin effect on PDH function has not been well established. We observed that insulin attenuated the phosphorylation (p) of Ser264 (p-Ser264) in the PDH E1α subunit (PDHA1) in normal rat hepatocyte. In contrast, insulin induced an increase of p-Ser264 PDHA1 levels in hepatocellular carcinoma HepG2 and Huh7 cells. Insulin activated RhoA and Rho-dependent coiled coil kinase, an effector protein of active RhoA, which regulated p-Ser264 PDHA1 levels, along with both p-Ser9 and p-Tyr216 forms of glycogen synthase kinase-3β (GSK-3β) in HepG2 cells. Only p-Tyr216 GSK-3β, the active form was involved in an increase of p-Ser264 PDHA1. Akt was also engaged in p-Ser9 of GSK-3β, but neither in p-Tyr216 of GSK-3β nor p-Ser264 of PDHA1 upon insulin. Reconstituted dephospho-mimic forms PDHA1 S264A and GSK-3β Y216F impaired, but wild-types PDHA1 and GSK-3β and phospho-mimic forms PDHA1 S264D and GSK-3β Y216E increased cell proliferation upon insulin through expression of c-Myc and cyclin D1. Therefore, we propose that insulin-mediated p-PDHA1 is involved in the regulation of HepG2 cell proliferation through RhoA signaling pathway.-Islam, R., Kim, J.-G., Park, Y., Cho, J.-Y., Cap, K.-C., Kho, A.-R., Chung, W.-S., Suh, S.-W., Park, J.-B. Insulin induces phosphorylation of pyruvate dehydrogenase through RhoA activation pathway in HepG2 cells."	"miR‑21‑5p targets PDHA1 to regulate glycolysis and cancer progression in gastric cancer. Pyruvate dehydrogenase A1 (PDHA1) is a component of the pyruvate dehydrogenase enzyme complex, which links glycolysis and the tricarboxylic acid cycle, and is important for cancer metabolism shift. PDHA1 downregulation has been revealed in several types of cancer to enhance glycolysis. However, the role of PDHA1 in gastric cancer remains largely unknown. In the present study, we found that PDHA1 was significantly downregulated in gastric cancer, and associated with poor prognosis. PDHA1 downregulation promoted gastric cancer glycolysis and cancer progression. miR‑21‑5p directly targeted PDHA1 to suppress PDHA1 expression, and promote glycolysis as well as cell proliferation in gastric cancer. Moreover, miR‑21‑5p was significantly upregulated in gastric cancer and negatively associated with PDHA1 expression in gastric cancer samples. Our results indicated that miR‑21‑5p targeted PDHA1 to regulate a metabolic switch and cancer progression in gastric cancer, and reveal the potential role of the miR‑21‑5p/PDHA1 axis in gastric cancer treatment."	"Defining the contribution of skeletal muscle pyruvate dehydrogenase α1 to exercise performance and insulin action. The pyruvate dehydrogenase complex (PDC) converts pyruvate to acetyl-CoA and is an important control point for carbohydrate (CHO) oxidation. However, the importance of the PDC and CHO oxidation to muscle metabolism and exercise performance, particularly during prolonged or high-intensity exercise, has not been fully defined especially in mature skeletal muscle. To this end, we determined whether skeletal muscle-specific loss of pyruvate dehydrogenase alpha 1 ( Pdha1), which is a critical subunit of the PDC, impacts resting energy metabolism, exercise performance, or metabolic adaptation to high-fat diet (HFD) feeding. For this, we generated a tamoxifen (TMX)-inducible Pdha1 knockout (PDHmKO) mouse, in which PDC activity is temporally and specifically ablated in adult skeletal muscle. We assessed energy expenditure, ex vivo muscle contractile performance, and endurance exercise capacity in PDHmKO mice and wild-type (WT) littermates. Additionally, we studied glucose homeostasis and insulin sensitivity in muscle after 12 wk of HFD feeding. TMX administration largely ablated PDHα in skeletal muscle of adult PDHmKO mice but did not impact energy expenditure, muscle contractile function, or low-intensity exercise performance. Additionally, there were no differences in muscle insulin sensitivity or body composition in PDHmKO mice fed a control or HFD, as compared with WT mice. However, exercise capacity during high-intensity exercise was severely impaired in PDHmKO mice, in parallel with a large increase in plasma lactate concentration. In conclusion, although skeletal muscle PDC is not a major contributor to resting energy expenditure or long-duration, low-intensity exercise performance, it is necessary for optimal performance during high-intensity exercise."	"[Analysis of a female neonate with pyruvate dehydrogenase complex deficiency]. To analyze the clinical features and genetic basis of a female neonate with muscle weakness, abnormal brain magnetic resonance imaging and elevated blood lactate. The patient was subjected to clinical and laboratory examination. Next generation sequencing was carried out for the patient and her relatives. The proband was diagnosed as small for gestational age, with clinical features including muscle weakness, abnormal brain magnetic resonance imaging, increased blood lactate, and acidosis. By genetic testing, a de novo PDHA1 mutation c.1133G to A (p.R378H) was identified, which was known to be pathogenic. The patient was diagnosed with pyruvate dehydrogenase complex deficiency disease (PDCDD), for which vitamin B1, coenzyme Q10, and L-carnitine were prescribed, and a ketogenic diet was recommended. Follow-up at 4-month-7-day found that her blood lactic acid was reduced to normal but her muscle tone was still low. The proband was diagnosed as PDCDD caused by a PDHA1 missense mutation. NGS has provided a powerful tool for the diagnosis of such diseases."	"Thiamin-Responsive PDH Deficiency due to a PDHA1 Variant. NA"	"Dichloroacetic acid (DCA) synergizes with the SIRT2 inhibitor Sirtinol and AGK2 to enhance anti-tumor efficacy in non-small cell lung cancer. Combination chemotherapy is a potentially promising approach to enhance anticancer activity, overcome drug resistance, and improve disease-free and overall survival. The current study investigates the antitumor activity of sodium dichloroacetic acid (DCA) in combination with SIRT2 inhibitor Sirtinol and AGK2. We found that combining DCA with Sirtinol produced a synergistic therapeutic benefit in A549 and H1299 NSCLC cells in vitro and in a mouse A549 xenograft model. Synergistic potentiation of oxidative phosphorylation (OXPHOS) was observed, including decreased glucose consumption, decreased lactate production, increased OCR and increased ROS generation, possibly via co-targeting pyruvate dehydrogenase alpha 1(PDHA1). Mechanically, AGK2 and Sirtinol were found to increase the lysine-acetylation and decrease the serine-phosphorylation of PDHA1, which enabled the two inhibitors to synergize with DCA to further activate PDHA1. Besides, a AMPKα-ROS feed-forward loop was notably activated after the combined treatments compared with mono-therapy. Our results indicate that the combination of DCA and SIRT2 inhibitor may provide a promising therapeutic strategy to effectively kill cancer cells."	"Identification of immunogenic proteins and evaluation of recombinant PDHA1 and GAPDH as potential vaccine candidates against Streptococcus iniae infection in flounder (Paralichthys olivaceus). Streptococcus iniae is a major Gram-positive pathogen that causes invasive disease in fish worldwide. In this study, in order to identify immunogenic proteins for developing highly effective vaccine against S. iniae, whole-cell lysate proteins of S. iniae were analyzed by western blotting using flounder anti-S. iniae antibodies, and two positive protein bands of molecular weight 37 kDa and 40 kDa were screened, which were identified as pyruvate dehydrogenase E1 subunit alpha (PDHA1), BMP family ABC transporter substrate-binding protein (BMP) and L-lactate dehydrogenase (LDH), as well as ornithine carbamoyltransferase (OCT), lactate oxidas (LOx) and glyceraldehyde-3-phosphate dehydrogenase (GAPDH) by mass spectrometry. Subsequently, the six recombinant proteins were produced and used to immunize healthy flounder, and the relative percent survival (RPS) value was 72.73%, 27.27%, 36.36%, 9.09%, 36.36% and 63.64% respectively after intraperitoneal challenge with live S. iniae, revealing that rPDHA1 and rGAPDH produced higher relative percent survival than formalin-killed S. iniae (36.36%). To further investigate the protective efficacy of rPDHA1 and rGAPDH, the proliferation of surface membrane immunoglobulin-positive (sIg+) lymphocytes in peripheral blood leucocytes, the total serum IgM, specific IgM against S. iniae and RPS were detected. The results showed that rPDHA1, rGAPDH and formalin-killed S. iniae significantly induced the proliferation of sIg+ lymphocytes, the production of total serum IgM and specific IgM as compared with the control group, and rGAPDH and rPDHA1 provide higher RPS (62.5% and 75%, respectively) again. These results demonstrated that rPDHA1 and rGAPDH are promising vaccine candidates against S. iniae infection in flounder."	"Utilizing Optimized Tools to Investigate PTM Crosstalk: Identifying Potential PTM Crosstalk of Acetylated Mitochondrial Proteins. Post-translational modification (PTM) crosstalk is recognized as a major cell-regulatory mechanism, and studies of several proteins have validated the premise that PTMs work in concert. Previous work by our group investigated the potential PTM crosstalk on proteins in the EGFR-Ras-c-Fos axis by utilizing a comprehensive set of PTM reagents termed Signal-Seeker toolkits. In this study, these tools were used to investigate the potential PTM crosstalk that occurs in acetylated mitochondrial proteins in response to a mitochondrial stress-inducing agent hydrogen peroxide (H₂O₂). Mitochondrial protein acetylation has been shown to participate in PTM crosstalk as exemplified by the regulation of the pyruvate dehydrogenase complex via kinase, phosphatase, acetyltransferase, and deacetylase activities. Changes in the acetylated state of mitochondrial proteins were investigated, in response to H₂O₂, using a novel anti acetyl lysine (Ac-K) antibody. Signal-Seeker PTM detection tools were used to validate the acetylation state of ten mitochondrial targets, as well as their endogenous acetylation state in response to H₂O₂. Importantly, the endogenous acetylation, ubiquitination, SUMOylation 2/3, and tyrosine phosphorylation state of four target mitochondrial proteins were also investigated with the toolkit. Each of the four proteins had unique PTM profiles, but diverging acetylation and ubiquitin or SUMO 2/3 signals appeared to be a common theme. This proof-of-concept study identifies the Signal-Seeker toolkits as a useful tool to investigate potential PTM crosstalk."	"Genetic and clinical features of Chinese patients with mitochondrial ataxia identified by targeted next-generation sequencing. To characterize the mutations in mitochondrial DNA (mtDNA) and mitochondrion-related nuclear genes (nDNA), and clinical features in Chinese patients with mitochondrial ataxia. Targeted next-generation sequencing (NGS) technology was performed to screen the whole mtDNA sequence and nDNA genes in a cohort of 33 unrelated ataxia patients. A total of 5 pedigrees were finally genetically diagnosed as mitochondrial ataxia, with 3 pathogenic mutations (m.8344A&gt;G, m.9176T&gt;C, and m.9185T&gt;C), one likely pathogenic mutation (m.3995A&gt;G) in mtDNA, and one pathogenic mutation (c.1159_1162dupAAGT, p.Ser388Terfs) in PDHA1. The prevalence of mitochondrial ataxia in our patient cohort is 15.2%. In addition, all 4 patients with mtDNA mutations experienced symptoms of ataxia with age at onset ranging from 12 to 39 years (21 ± 12.2) and developed extrapyramidal symptoms during the disease course. One male patient with pyruvate dehydrogenase deficiency showed an acute intermittent ataxia phenotype. Our results implicate that mitochondrial ataxia might not be as rare in Chinese as previously assumed. This study firstly defines the mutations of mitochondrial ataxia in a Chinese population by targeted NGS, which broadens the clinical spectrum of mtDNA mutations and highlights the importance of screening mtDNA and nDNA mutations among undefined ataxia patients."	"PGC1α promotes cholangiocarcinoma metastasis by upregulating PDHA1 and MPC1 expression to reverse the Warburg effect. PGC1α acts as a central regulator of mitochondrial metabolism, whose role in cancer progression has been highlighted but remains largely undefined. Especially, it is completely unknown about the effect of PGC1α on cholangiocarcinoma (CCA). Here we showed that PGC1α overexpression had no impact on CCA growth despite the decreased expression of PGC1α in CCA compared with adjacent normal tissue. Instead, PGC1α overexpression-promoted CCA metastasis both in vitro and in vivo. Mechanistically, for the first time, we illuminated that PGC1α reversed the Warburg effect by upregulating the expression of pyruvate dehydrogenase E1 alpha 1 subunit and mitochondrial pyruvate carrier 1 to increase pyruvate flux into the mitochondria for oxidation, whereas simultaneously promoting mitochondrial biogenesis and fusion to mediate the metabolic switch to oxidative phosphorylation. On the one hand, enhanced mitochondrial oxidation metabolism correlated with elevated reactive oxygen species (ROS) production; on the other hand, increased PGC1α expression upregulated the expression levels of mRNA for several ROS-detoxifying enzymes. To this end, the ROS levels, which were elevated but below a critical threshold, did not inhibit CCA cells proliferation. And the moderately increased ROS facilitated metastatic dissemination of CCA cells, which can be abrogated by antioxidants. Our study suggests the potential utility of developing the PGC1α-targeted therapies or blocking PGC1α signaling axis for inhibiting CCA metastasis."	"Proteomics Analysis Reveals Abnormal Electron Transport and Excessive Oxidative Stress Cause Mitochondrial Dysfunction in Placental Tissues of Early-Onset Preeclampsia. Early-onset preeclampsia (EOS-PE) refers to preeclampsia that occurred before 34 gestation weeks. This study is conducted to explore the relationship between mitochondrial dysfunction and the pathogenesis of EOS-PE using proteomic strategy. To identify altering expressed mitochondrial proteins between severe EOS-PE and healthy pregnancies, enrichment of mitochondria coupled with iTRAQ-based quantitative proteomic method is performed. Immunohistochemistry (IHC) and western blot are performed to detect the alteration of changing expression proteins, and confirmed the accuracy of proteomic results. A total of 1372 proteins were quantified and 132 altering expressed proteins were screened, including 86 downregulated expression proteins and 46 upregulated expression proteins (p &lt; 0.05). Bioinformatics analysis showed that differentially expressed proteins participated in numerous biological processes, including oxidation-reduction process, respiratory electron transport chain, and oxidative phosphorylation. Especially, mitochondria-related molecules, PRDX2, PARK7, BNIP3, BCL2, PDHA1, SUCLG1, ACADM, and NDUFV1, are involved in energy-production process in the matrix and membrane of mitochondria. Results of the experiment show that abnormal electron transport, excessive oxidative stress, and mitochondrion disassembly might be the main cause of mitochondrial dysfunction, and is related to the pathogenesis of EOS-PE."	"Pyruvate dehydrogenase complex and lactate dehydrogenase are targets for therapy of acute liver failure. Acute liver failure is a rapidly progressive deterioration of hepatic function resulting in high mortality and morbidity. Metabolic enzymes can translocate to the nucleus to regulate histone acetylation and gene expression. Levels and activities of pyruvate dehydrogenase complex (PDHC) and lactate dehydrogenase (LDH) were evaluated in nuclear fractions of livers of mice exposed to various hepatotoxins including CD95-antibody, α-amanitin, and acetaminophen. Whole-genome gene expression profiling by RNA-seq was performed in livers of mice with acute liver failure and analyzed by gene ontology enrichment analysis. Cell viability was evaluated in cell lines knocked-down for PDHA1 or LDH-A and in cells incubated with the LDH inhibitor galloflavin after treatment with CD95-antibody. We evaluated whether the histone acetyltransferase inhibitor garcinol or galloflavin could reduce liver damage in mice with acute liver failure. Levels and activities of PDHC and LDH were increased in nuclear fractions of livers of mice with acute liver failure. The increase of nuclear PDHC and LDH was associated with increased concentrations of acetyl-CoA and lactate in nuclear fractions, and histone H3 hyper-acetylation. Gene expression in livers of mice with acute liver failure suggested that increased histone H3 acetylation induces the expression of genes related to damage response. Reduced histone acetylation by the histone acetyltransferase inhibitor garcinol decreased liver damage and improved survival in mice with acute liver failure. Knock-down of PDHC or LDH improved viability in cells exposed to a pro-apoptotic stimulus. Treatment with the LDH inhibitor galloflavin that was also found to inhibit PDHC, reduced hepatic necrosis, apoptosis, and expression of pro-inflammatory cytokines in mice with acute liver failure. Mice treated with galloflavin also showed a dose-response increase in survival. PDHC and LDH translocate to the nucleus, leading to increased nuclear concentrations of acetyl-CoA and lactate. This results in histone H3 hyper-acetylation and expression of damage response genes. Inhibition of PDHC and LDH reduces liver damage and improves survival in mice with acute liver failure. Thus, PDHC and LDH are targets for therapy of acute liver failure. Acute liver failure is a rapidly progressive deterioration of liver function resulting in high mortality. In experimental mouse models of acute liver failure, we found that two metabolic enzymes, namely pyruvate dehydrogenase complex and lactic dehydrogenase, translocate to the nucleus resulting in detrimental gene expression. Treatment with an inhibitor of these two enzymes was found to reduce liver damage and to improve survival."	"Cardiac-Specific Deletion of Pyruvate Dehydrogenase Impairs Glucose Oxidation Rates and Induces Diastolic Dysfunction. Obesity and type 2 diabetes (T2D) increase the risk for cardiomyopathy, which is the presence of ventricular dysfunction in the absence of underlying coronary artery disease and/or hypertension. As myocardial energy metabolism is altered during obesity/T2D (increased fatty acid oxidation and decreased glucose oxidation), we hypothesized that restricting myocardial glucose oxidation in lean mice devoid of the perturbed metabolic milieu observed in obesity/T2D would produce a cardiomyopathy phenotype, characterized via diastolic dysfunction. We tested our hypothesis via producing mice with a cardiac-specific gene knockout for pyruvate dehydrogenase (PDH, gene name Pdha1), the rate-limiting enzyme for glucose oxidation. Cardiac-specific Pdha1 deficient (Pdha1<sup>Cardiac-/-</sup>) mice were generated via crossing a tamoxifen-inducible Cre expressing mouse under the control of the alpha-myosin heavy chain (αMHC-MerCreMer) promoter with a floxed Pdha1 mouse. Energy metabolism and cardiac function were assessed via isolated working heart perfusions and ultrasound echocardiography, respectively. Tamoxifen administration produced an ~85% reduction in PDH protein expression in Pdha1<sup>Cardiac-/-</sup> mice versus their control littermates, which resulted in a marked reduction in myocardial glucose oxidation and a corresponding increase in palmitate oxidation. This myocardial metabolism profile did not impair systolic function in Pdha1<sup>Cardiac-/-</sup> mice, which had comparable left ventricular ejection fractions and fractional shortenings as their αMHC-MerCreMer control littermates, but did produce diastolic dysfunction as seen via the reduced mitral E/A ratio. Therefore, it does appear that forced restriction of glucose oxidation in the hearts of Pdha1<sup>Cardiac-/-</sup> mice is sufficient to produce a cardiomyopathy-like phenotype, independent of the perturbed metabolic milieu observed in obesity and/or T2D."	"Activation of Pyruvate Dehydrogenase by Sodium Dichloroacetate Shifts Metabolic Consumption from Amino Acids to Glucose in IPEC-J2 Cells and Intestinal Bacteria in Pigs. The extensive metabolism of amino acids (AA) as fuel is an important reason for the low use efficiency of protein in pigs. In this study, we investigated whether regulation of the pyruvate dehydrogenase kinase (PDK)/pyruvate dehydrogenase alpha 1 (PDHA1) pathway affected AA consumption by porcine intestinal epithelial (IPEC-J2) cells and intestinal bacteria in pigs. The effects of knockdown of PDHA1 and PDK1 with small interfering RNA (siRNA) on nutrient consumption by IPEC-J2 cells were evaluated. IPEC-J2 cells were then cultured with sodium dichloroacetate (DCA) to quantify AA and glucose consumption and nutrient oxidative metabolism. The results showed that knockdown of PDHA1 using siRNA decreased glucose consumption but increased total AA (TAA) and glutamate (Glu) consumption by IPEC-J2 cells ( P &lt; 0.05). Opposite effects were observed using siRNA targeting PDK1 ( P &lt; 0.05). Additionally, culturing IPEC-J2 cells in the presence of 5 mM DCA markedly increased the phosphorylation of PDHA1 and PDH phosphatase 1, but inhibited PDK1 phosphorylation ( P &lt; 0.05). DCA treatment also reduced TAA and Glu consumption and increased glucose depletion ( P &lt; 0.05). These results indicated that PDH was the regulatory target for shifting from AA metabolism to glucose metabolism and that culturing cells with DCA decreased the consumption of AAs by increasing the depletion of glucose through PDH activation."	"Folding and assembly defects of pyruvate dehydrogenase deficiency-related variants in the E1α subunit of the pyruvate dehydrogenase complex. The pyruvate dehydrogenase complex (PDC) bridges glycolysis and the citric acid cycle. In human, PDC deficiency leads to severe neurodevelopmental delay and progressive neurodegeneration. The majority of cases are caused by variants in the gene encoding the PDC subunit E1α. The molecular effects of the variants, however, remain poorly understood. Using yeast as a eukaryotic model system, we have studied the substitutions A189V, M230V, and R322C in yeast E1α (corresponding to the pathogenic variants A169V, M210V, and R302C in human E1α) and evaluated how substitutions of single amino acid residues within different functional E1α regions affect PDC structure and activity. The E1α A189V substitution located in the heterodimer interface showed a more compact conformation with significant underrepresentation of E1 in PDC and impaired overall PDC activity. The E1α M230V substitution located in the tetramer and heterodimer interface showed a relatively more open conformation and was particularly affected by low thiamin pyrophosphate concentrations. The E1α R322C substitution located in the phosphorylation loop of E1α resulted in PDC lacking E3 subunits and abolished overall functional activity. Furthermore, we show for the E1α variant A189V that variant E1α accumulates in the Hsp60 chaperonin, but can be released upon ATP supplementation. Our studies suggest that pathogenic E1α variants may be associated with structural changes of PDC and impaired folding of E1α."	"Overexpression of Pyruvate Dehydrogenase E1α Subunit Inhibits Warburg Effect and Induces Cell Apoptosis Through Mitochondria-Mediated Pathway in Hepatocellular Carcinoma. Most cancers rely disproportionately on glycolysis for energy even in the presence of an adequate oxygen supply, a condition known as &quot;aerobic glycolysis,&quot; or the &quot;Warburg effect.&quot; Pyruvate dehydrogenase E1α subunit (PDHA1) is one of the main factors for the metabolic switch from oxidative phosphorylation (OXPHOS) to aerobic glycolysis and has been suggested to be closely associated with tumorigenesis. Here we observed that the PDHA1 protein was reduced in hepatocellular carcinoma (HCC) specimens by immunohistochemistry and Western blot, which was significantly associated with poor overall survival. To further analyze the function of PDHA1 in cancer cells, PDHA1 was upregulated in the HCC cell lines SMMC-7721 and HepG2. The results demonstrated that overexpression of the PDHA1 gene inhibited aerobic glycolysis with lower lactate via increased PDH activity; meanwhile, mitochondrial OXPHOS was enhanced accompanied with higher ATP and lower glucose consumption. We also found that apoptosis was promoted and intrinsic pathway proteins were increased in PDHA1-overexpressing cells. Collectively, our data indicate that reduced PDHA1 protein expression is associated with the poor clinical outcome of HCC. Upregulated PDHA1 gene expression can inhibit the Warburg effect and enhance the mitochondria-mediated apoptosis pathway."	"Compartmentalized activities of the pyruvate dehydrogenase complex sustain lipogenesis in prostate cancer. The mechanisms by which mitochondrial metabolism supports cancer anabolism remain unclear. Here, we found that genetic and pharmacological inactivation of pyruvate dehydrogenase A1 (PDHA1), a subunit of the pyruvate dehydrogenase complex (PDC), inhibits prostate cancer development in mouse and human xenograft tumor models by affecting lipid biosynthesis. Mechanistically, we show that in prostate cancer, PDC localizes in both the mitochondria and the nucleus. Whereas nuclear PDC controls the expression of sterol regulatory element-binding transcription factor (SREBF)-target genes by mediating histone acetylation, mitochondrial PDC provides cytosolic citrate for lipid synthesis in a coordinated manner, thereby sustaining anabolism. Additionally, we found that PDHA1 and the PDC activator pyruvate dehydrogenase phosphatase 1 (PDP1) are frequently amplified and overexpressed at both the gene and protein levels in prostate tumors. Together, these findings demonstrate that both mitochondrial and nuclear PDC sustain prostate tumorigenesis by controlling lipid biosynthesis, thus suggesting this complex as a potential target for cancer therapy."	"Butyrate induces apoptosis by activating PDC and inhibiting complex I through SIRT3 inactivation. The underlying anticancer effects of butyrate, an end-product of the intestinal microbial fermentation of dietary fiber, remain elusive. Here, we report that butyrate promotes cancer cell apoptosis by acting as a SIRT3 inhibitor. Butyrate inhibits SIRT3 both in cultured cells and in vitro. Butyrate-induced PDHA1 hyperacetylation relieves the inhibitory phosphorylation of PDHA1 at serine 293, thereby activating an influx of glycolytic intermediates into the tricarboxylic acid (TCA) cycle and reversing the Warburg effect. Meanwhile, butyrate-induced hyperacetylation inactivates complex I of the electron transfer chain and prevents the utilization of TCA cycle intermediates. These metabolic stresses promote apoptosis in hyperglycolytic cancer cells, such as HCT116p53<sup> -/- </sup> cells. SIRT3 deacetylates both PDHA1 and complex I. Genetic ablation of Sirt3 in mouse hepatocytes abrogated the ability of butyrate to induce apoptosis. Our results identify a butyrate-mediated anti-tumor mechanism and indicate that the combined activation of PDC and inhibition of complex I is a novel tumor treatment strategy."	"Thiamine Responsive Pyruvate Dehydrogenase Complex Deficiency: A Potentially Treatable Cause of Leigh's Disease. Pyruvate dehydrogenase complex (PDHC) deficiency is a rare metabolic disorder that affects tissues with high energy demand such as the central nervous system. The clinico-radiological phenotype of Leigh's disease is one of its common presentations. We present a 9-month-old boy with rapidly progressive infantile Leigh's disease. PDHA1 gene sequencing revealed a pathological homozygous missense mutation c.131A&gt;G or p.H44R in exon 3 consistent with PDHC deficiency. H44R is among the five mutations (H44R, R88S, G89S, R263G, and V389fs) in E1α subunit that is thiamine-responsive. The child was initiated on thiamine, riboflavin, carnitine, coenzyme Q, and sodium benzoate supplementation. Mild recovery was noted at 6 months follow up as no further episodes of encephalopathy occurred. Thereafter, the child was treated with Ketogenic diet which resulted in increased levels of activity and alertness. Despite an improving course, the child had a sudden unexpected death at the age of 21 months."	"Post-translational regulation of metabolism in fumarate hydratase deficient cancer cells. Deregulated signal transduction and energy metabolism are hallmarks of cancer and both play a fundamental role in tumorigenesis. While it is increasingly recognised that signalling and metabolism are highly interconnected, the underpinning mechanisms of their co-regulation are still largely unknown. Here we designed and acquired proteomics, phosphoproteomics, and metabolomics experiments in fumarate hydratase (FH) deficient cells and developed a computational modelling approach to identify putative regulatory phosphorylation-sites of metabolic enzymes. We identified previously reported functionally relevant phosphosites and potentially novel regulatory residues in enzymes of the central carbon metabolism. In particular, we showed that pyruvate dehydrogenase (PDHA1) enzymatic activity is inhibited by increased phosphorylation in FH-deficient cells, restricting carbon entry from glucose to the tricarboxylic acid cycle. Moreover, we confirmed PDHA1 phosphorylation in human FH-deficient tumours. Our work provides a novel approach to investigate how post-translational modifications of enzymes regulate metabolism and could have important implications for understanding the metabolic transformation of FH-deficient cancers with potential clinical applications."	"Enzymatic testing sensitivity, variability and practical diagnostic algorithm for pyruvate dehydrogenase complex (PDC) deficiency. Pyruvate dehydrogenase complex (PDC) deficiency is a major cause of primary lactic acidemia in children. Prompt and correct diagnosis of PDC deficiency and differentiating between specific vs generalized, or secondary deficiencies has important implications for clinical management and therapeutic interventions. Both genetic and enzymatic testing approaches are being used in the diagnosis of PDC deficiency. However, the diagnostic efficacy of such testing approaches for individuals affected with PDC deficiency has not been systematically investigated in this disorder. We sought to evaluate the diagnostic sensitivity and variability of the various PDC enzyme assays in females and males at the Center for Inherited Disorders of Energy Metabolism (CIDEM). CIDEM data were filtered by lactic acidosis and functional PDC deficiency in at least one cell/tissue type (blood lymphocytes, cultured fibroblasts or skeletal muscle) identifying 186 subjects (51% male and 49% female), about half were genetically resolved with 78% of those determined to have a pathogenic PDHA1 mutation. Assaying PDC in cultured fibroblasts in cases where the underlying genetic etiology is PDHA1, was highly sensitive irrespective of gender; 97% (95% confidence interval [CI]: 90%-100%) and 91% (95% CI: 82%-100%) in females and males, respectively. In contrast to the fibroblast-based testing, the lymphocyte- and muscle-based testing were not sensitive (36% [95% CI: 11%-61%, p=0.0003] and 58% [95% CI: 30%-86%, p=0.014], respectively) for identifying known PDC deficient females with pathogenic PDHA1 mutations. In males with a known PDHA1 mutation, the sensitivity of the various cell/tissue assays (75% lymphocyte, 91% fibroblast and 88% muscle) were not statistically different, and the discordance frequency due to the specific cell/tissue used for assaying PDC was 0.15±0.11. Based on this data, a practical diagnostic algorithm is proposed accounting for current molecular approaches, enzyme testing sensitivity, and variability due to gender, cell/tissue type used for testing, and successive repeat testing."	"Proteomic alterations of fibroblasts induced by ovarian cancer cells reveal potential cancer targets. The common spread pattern of ovarian cancer is peritoneal implantation. The growth of the shed ovarian cancer cells in the peritoneal cavity is closely related to the tumor microenvironment. Cancer-associated fibroblasts are vital in the tumor microenvironment. It is not clearly defined that the protein expression alters during the activating process of fibroblasts. This study detected the protein alterations in fibroblasts induced by ovarian cancer cells and explored the potential biological relevance through two-dimensional gel electrophoresis and mass spectrometry. Our data showed that the level of CENPE, BAG2, SOD2, GDI2, CORO1C, CFL1, DSTN, CALD1, PHGDH, PDHA1, AKR1B1, TST and TBCA proteins were significantly up-regulated in the fibroblasts co-cultured with ovarian cancer cells, whereas HSPB1, P4HB and VIM were significantlydown-regulated. However, only BAG2, SOD2 and CORO1C proteins were confirmed to be significantly increased by western blot analysis. The differentially expressed proteins were mainly involved in metabolic processes, cellular component organization, responses to stimulus, multicellular organismal processes, localization, protein depolymerization, cellular senescence and the mitotic pathway. These data demonstrated that fibroblasts had an altered protein expression pattern after being induced by ovarian cancer cells, and participated in multiple cell processes resulting in tumor progression. The differentially expressed proteins should be considered as targets for cancer treatment."	"Identification of functional interactome of a key cell division regulatory protein CedA of E.coli. Cell division is compromised in DnaAcos mutant Escherichia coli cells that results in filamentous cell morphology. This is countered by over-expression of CedA protein that induces cytokinesis and thus, regular cell morphology is regained; however via an unknown mechanism. To understand the process systematically, exact role of CedA should be deciphered. Protein interactions are crucial for functional organization of a cell and their identification helps in revealing exact function(s) of a protein and its binding partners. Thus, this study was intended to identify CedA binding proteins (CBPs) to gain more clues of CedA function. We isolated CBPs by pull down assay using purified recombinant CedA and identified nine CBPs by mass spectrometric analysis (MALDI-TOF MS and LC-MS/MS), viz. PDHA1, RL2, DNAK, LPP, RPOB, G6PD, GLMS, RL3 and YBCJ. Based on CBPs identified, we hypothesize that CedA plays a crucial and multifaceted role in cell cycle regulation and specific pathways in which CedA participates may include transcription and energy metabolism. However, further validation through in-vitro and in-vivo experiments is necessary. In conclusion, identification of CBPs may help us in deciphering mechanism of CedA mediated cell division during chromosomal DNA over-replication."	"Acetyl-CoA production from pyruvate is not necessary for preservation of myelin. Oligodendrocytes and Schwann cells not only form myelin in the central and peripheral nervous system, but also provide metabolic and trophic support to the axons they ensheathe. Acetyl-CoA is potentially a key molecule in Schwann cells and oligodendrocytes because it is at the crossroads of cellular lipid biosynthesis and energy generation. The main route for acetyl-CoA production is the oxidation of pyruvate by the pyruvate dehydrogenase complex (PDC). PDC deficiency in humans results in neurodegeneration and developmental impairments in both white and gray matter structures. To address the importance of PDC in myelinating glia, we deleted Pdha1 gene specifically in oligodendrocytes and Schwann cells. Surprisingly, sciatic and optic nerve morphology and the motor performance of Pdha1<sup>f/Y;</sup> Cnp<sup>Cre/+</sup> mice are undistinguishable from those of controls at 1 month of age. In addition, myelin is stably maintained for at least 10 months. However, Pdha1<sup>f/Y;</sup> Cnp<sup>Cre/+</sup> mice showed reduced fiber density and signs of axonal degeneration in both sciatic and optic nerves from 6 months of age. In contrast, 10 month-old mice bearing a floxed Pdha1 gene with either P0-Cre (expressed only by Schwann cells) or NG2-Cre<sup>ER</sup> (expressed in oligodendrocyte precursor cells) do not show any sign of axonal pathology or alterations in myelin structure or thickness. This indicates that the axonopathy is specific to the Pdha1<sup>f/Y;</sup> Cnp<sup>Cre/+</sup> mice. Taken together, these results suggest that acetyl-CoA derived from pyruvate is not necessary for myelin maintenance and, thus, myelin-forming cells are not likely to contribute to the pathophysiology of PDC deficiency."	"The clinical and genetic characteristics in children with mitochondrial disease in China. Mitochondrial disease was a clinically and genetically heterogeneous group of diseases, thus the diagnosis was very difficult to clinicians. Our objective was to analyze clinical and genetic characteristics of children with mitochondrial disease in China. We tested 141 candidate patients who have been suspected of mitochondrial disorders by using targeted next-generation sequencing (NGS), and summarized the clinical and genetic data of gene confirmed cases from Neurology Department, Beijing Children's Hospital, Capital Medical University from October 2012 to January 2015. In our study, 40 cases of gene confirmed mitochondrial disease including eight kinds of mitochondrial disease, among which Leigh syndrome was identified to be the most common type, followed by mitochondrial encephalomyopathy, lactic acidosis, and stroke-like episodes (MELAS). The age-of-onset varies among mitochondrial disease, but early onset was common. All of 40 cases were gene confirmed, among which 25 cases (62.5%) with mitochondrial DNA (mtDNA) mutation, and 15 cases (37.5%) with nuclear DNA (nDNA) mutation. M.3243A&gt;G (n=7) accounts for a large proportion of mtDNA mutation. The nDNA mutations include SURF1 (n=7), PDHA1 (n=2), and NDUFV1, NDUFAF6, SUCLA2, SUCLG1, RRM2B, and C12orf65, respectively."	"Proteomic analysis reveals Xuesaitong injection attenuates myocardial ischemia/reperfusion injury by elevating pyruvate dehydrogenase-mediated aerobic metabolism. Xuesaitong injection (XST), which mainly consists of Panax notoginseng saponins, has been widely used for treating cardio-cerebral vascular diseases. However, the underlying mechanisms of XST associated with its cardioprotective effects are still unclear. To identify the potential target proteins of XST, two-dimensional gel electrophoresis (2-DE)-based proteomics was utilized to analyze the protein profile of myocardium in rats with myocardial ischemia/reperfusion (I/R) injury. The differentially expressed proteins were identified by matrix assisted laser desorption/ionization time-of-flight mass spectrometry. It is interesting that XST can alter the expression of 7 proteins, including pyruvate dehydrogenase E1 alpha (PDHA1), hydroxyacyl-coenzyme A dehydrogenase (HADHA), peroxiredoxin 3 (PRX3), gamma-enolase, acetyl-coenzyme A acyltransferase 2 (ACAA2), etc. Functional analysis revealed that those proteins were chiefly related to cardiac energy metabolism and oxidative stress. The cardioprotective effects of XST were further validated in H9c2 cardiac muscle cells with hypoxia/reoxygenation injury. We found that XST can promote the activity of PDH, an important enzyme related to the TCA cycle, as well as increase the intracellular content of acetyl-CoA and ATP. Moreover, XST also attenuated intracellular MDA release in H2O2-injured cardiac cells. This is the first study on the proteomic expression of XST-treated myocardium with I/R injury to reveal that the cardioprotective effects of XST may be attributed to the PDH-mediated restoration of aerobic glucose oxidation."	"Alteration of mitochondrial protein PDHA1 in Lewy body disease and PARK14. The histopathological hallmark of Parkinson's disease (PD) and dementia with Lewy bodies (DLB) is the occurrence of insoluble fibrillary aggregates known as Lewy bodies. Mitochondria play a vital role in energy production, and the pathogenesis of PD is associated with altered cellular metabolism due to mitochondrial dysfunction. The pyruvate dehydrogenase (PDH) complex provides a primary step in aerobic glucose metabolism by catalyzing the oxidative decarboxylation of pyruvate to acetyl CoA. Pyruvate dehydrogenase alpha 1 (PDHA1) forms the core structure of the PDH complex. Dysfunction of the PDH complex leads to energy production failure, resulting in various neurological disorders. However, no study has investigated the involvement of PDHA1 in the pathogenesis of PD. In the present study, we performed immunohistochemistry and immunoblotting to clarify the involvement of PDHA1 in idiopathic PD, DLB, PARK14-linked parkinsonism (PARK14; a familial form of PD), and multiple system atrophy, in comparison with normal controls. Here we report PDHA1 as a new component of brainstem-type Lewy bodies in idiopathic PD, DLB and PARK14, the level of PDHA1 protein being significantly decreased in the putamen and substantia nigra of patients with idiopathic PD. Our findings suggest that alteration of glucose metabolism through dysfunction of the PDH complex might occur in the pathogenesis of Lewy body disease and PARK14."	"Massive parallel sequencing identifies RAPSN and PDHA1 mutations causing fetal akinesia deformation sequence. Fetal akinesia deformation sequence (FADS) or arthrogryposis multiplex congenita (AMC) is characterized by clinical ambiguity and genetic heterogeneity, hampering genetic diagnosis via traditional sequencing methods. Next generation sequencing (NGS) of all known disease-causing genes offers an elegant solution to identify the genetic etiology of AMC/FADS in a diagnostic setting. An in-house developed disease-associated gene panel was conducted in two unrelated fetuses with FADS. First, a de novo analysis was performed on the entire disease-associated gene panel. If no pathogenic mutation was identified, analysis of variants retained in a specific subpanel with arthrogryposis/fetal akinesia-causing genes was performed. In the first family, FADS relates to a homozygous c.484G &gt; A (p.Glu162Lys) mutation in the gene RAPSN. The second case concerns a sporadic patient with brain anomalies and arthrogryposis due to a de novo hemizygous c.498C &gt; T splice-site mutation in the pyruvate dehydrogenase-alpha 1 (PDHA1) gene. NGS facilitated genetic diagnosis, and hence genetic counseling, for both families with AMC/FADS. Biallelic RAPSN mutations typically result in congenital myasthenia syndrome, or occasionally in FADS. This is the first report attributing the RAPSN mutation c.484G &gt; A, identified in a homozygous state in patient 1, to FADS. The second patient represents the first case of AMC due to a PDHA1 mutation, advocating that pyruvate dehydrogenase deficiency should be considered in the differential diagnosis of fetal akinesia. This study illustrates the relevance of a disease-associated-gene panel as a diagnostic tool in pregnancies complicated by this genetically heterogeneous condition."	"Common genetic etiology between &quot;multiple sclerosis-like&quot; single-gene disorders and familial multiple sclerosis. Several single-gene disorders with clinical and radiological characteristics similar to those observed in multiple sclerosis (MS) patients have been described. To evaluate whether this phenotypic overlap can be ascribed to a common genetic etiology, 28 genes known to present pathogenic mutations for 24 of these disorders were sequenced in 270 MS patients. All identified variants were genotyped in 2131 MS cases and 830 healthy controls, and those exclusively observed in patients were assessed for segregation within families. This analysis identified 9 rare variants in 6 genes segregating with disease in 13 families. Four different mutations were identified in CYP27A1, including a reported pathogenic mutation for cerebrotendinous xanthomatosis (p.R405W), which was observed in six patients from a multi-incident family, three diagnosed with MS, two with an undefined neurological disease and one seemingly healthy. A LYST p.V1678A and a PDHA1 p.K387Q mutation were both observed in five MS patients from three separate multi-incident families. In addition, CLCN2 p.V174G, GALC p.D162E and POLG p.R361G were each identified in two MS patients from one family. This study suggests a shared genetic etiology between MS and the characterized single-gene disorders, and highlights cholesterol metabolism and the synthesis of oxysterols as important biological mechanisms for familial MS."	"Elevated miR-130a/miR130b/miR-152 expression reduces intracellular ATP levels in the pancreatic beta cell. MicroRNAs have emerged as important players of gene regulation with significant impact in diverse disease processes. In type-2 diabetes, in which impaired insulin secretion is a major factor in disease progression, dysregulated microRNA expression in the insulin-secreting pancreatic beta cell has been widely-implicated. Here, we show that miR-130a-3p, miR-130b-3p, and miR-152-3p levels are elevated in the pancreatic islets of hyperglycaemic donors, corroborating previous findings about their upregulation in the islets of type-2 diabetes model Goto-Kakizaki rats. We demonstrated negative regulatory effects of the three microRNAs on pyruvate dehydrogenase E1 alpha (PDHA1) and on glucokinase (GCK) proteins, which are both involved in ATP production. Consequently, we found both proteins to be downregulated in the Goto-Kakizaki rat islets, while GCK mRNA expression showed reduced trend in the islets of type-2 diabetes donors. Overexpression of any of the three microRNAs in the insulin-secreting INS-1 832/13 cell line resulted in altered dynamics of intracellular ATP/ADP ratio ultimately perturbing fundamental ATP-requiring beta cell processes such as glucose-stimulated insulin secretion, insulin biosynthesis and processing. The data further strengthen the wide-ranging influence of microRNAs in pancreatic beta cell function, and hence their potential as therapeutic targets in type-2 diabetes."	"[Clinical and genetic characteristics of children with Leigh syndrome]. Objective: To investigate the clinically and genetic characteristics of children with Leigh syndrome. Method: Patients with clinically diagnosed Leigh syndrome(LS)in the department of Neurology, Beijing Children's Hospital from January 2013 to February 2016 underwent the mitochondrial DNA (mtDNA) and nuclear DNA (nDNA) detecting with next generation sequencing (NGS) technology. The clinical data of gene confirmed cases were retrospectively collected and analyzed. The differences in the onset age, clinical manifestations, lactic acid level and MRI results between the mtDNA variation and nDNA variation were compared and analyzed.t test, Chi-square test and Fisher's exact test were used for statistical analysis. Result: Thirty-five cases were diagnosed by gene detection, including 20 males and 15 females. The median onset age was 1 year (ranging from the neonatal period to 4.4 years old). The age of onset within 2 years accounted for 74%(26 cases). The onset age of initial symptoms, including developmental delay, developmental regression, and seizures, were 6 (4, 12) months, 12 (8, 14) months, and 6 (1, 23) months respectively. The onset age of ptosis, extrapyramidal symptoms and ataxia were 26 (18, 44) months, 28 (23, 40) months and 28 (19, 35) months, respectively. There were significant differences in the onset age between the three groups (H=21.919, P=0.01). Within the 35 cases, 29 were manifested with developmental delay (83%), 26 with dystonia (74%), 18 with growth retardation, 15 with myasthenia, 13 with developmental regression, 11 with dysphagia, 10 with feeding difficulties, 4 with skeletal dysplasia, and 2 with digestive tract symptoms; nystagmus and respiratory abnormalities were observed in 9 cases respectively; extrapyramidal symptoms, peripheral nerve injury, ptosis, seizures were observed in 8 cases respectively; and ataxia, ophthalmoplegia and hypertrichiasis were found in 5 cases respectively.The blood lactic acid was measured in 32 LS patients, within which 23 cases (72%) had increased results; 8 out of 11 cases who underwent were cerebrospinal fluid lactic acid test had increased results. The results of neuroimaging revealed that all the patients were involved in the brainstem and (or) basal ganglia, of whom 27 (77%) had brainstem involvement, 24 (69%) had basal ganglia involvement. Thirteen out of 14 patients who had medulla oblongata involvement had nDNA variation; while 7 out of 8 patients with cerebellar involvement had nDNA variation. Genetic etiology was confirmed in all patients, among whom there were 17 cases (49%) with mtDNA mutation, including 8993T&gt;C/G (n=5), 14487T&gt;C (n=4), 13513G&gt;A (n=2), 9176T&gt;C, 10158T&gt;C, 3697G&gt;A, 10191T&gt;C, 14459A&gt;G and 11777C&gt;A (n=1) respectively. Remaining 18 cases(51%) had nDNA mutation, including SURF1 gene(n=10), PDHA1 gene(n=3) and one case each of NDUFV1, NDUFAF6, NDUFAF5, NDUFS1 and COQ7 genes. In this study, 27 types of mutations were founded, 15 of which had not been previously reported. Respiratory chain gene mutations have been found in 31 cases(89%); 3 cases had PDHc gene mutations, and 1 case had other mutation. Conclusion: LS usually occurs in infants. The most common primary symptoms are age-dependent abnormal movements, ocular symptoms, and seizures. Respiratory chain defects is the most common causes of LS.SURF1 is the most common variation, followed by 8993T&gt;C/G, 14487 T&gt;C and 13513G&gt;A mutation. 目的:了解儿童Leigh综合征(LS)临床和遗传学特征。 方法:对2013至2016年在北京儿童医院神经内科临床诊断LS的患儿,应用靶向基因捕获二代测序(NGS)技术对线粒体基因(mtDNA)组和LS相关的核基因(nDNA)进行测序,对基因确诊病例的临床资料进行回顾性总结。采用t检验、方差分析以及Fisher确切概率检验,对mtDNA和nDNA变异两组发病年龄、临床表现、乳酸和头颅磁共振成像(MRI)进行比较。 结果:经基因确诊LS 35例,其中男20例、女15例。起病年龄为新生儿~4.4岁,中位起病年龄1岁。2岁之内发病26例(74%)。首发症状包括发育落后、发育倒退和抽搐发作,其发生年龄分别为6(4,12),12(8,14)和6(1,23)月龄;眼睑下垂、椎体外系症状和共济失调发病年龄分别为26(18,44),28(23,40)和28(19,35)月龄。各首发症状发病年龄差异有统计学意义(H=21.919,P=0.01)。35例中临床表现发育落后29例(83%),肌张力异常26例(74%),生长落后18例,肌无力15例,发育倒退13例,吞咽困难11例,喂养困难10例,眼球震颤及呼吸异常各9例,锥体外系表现、周围神经损害、眼睑下垂、抽搐各8例,共济失调、眼外肌麻痹和多毛各5例,骨骼发育异常4例,消化道症状2例。32例LS患儿行血乳酸测定,23例(72%)升高,11例行脑脊液乳酸测定,8例升高。头颅磁共振成像(MRI)均累及脑干和(或)基底节区,其中27例(77%)脑干受累,24例(69%)基底节区受累,14例累及延髓,13例为nDNA变异;8例累及小脑,7例为nDNA变异。35例基因变异中mtDNA变异17例(49%),分别为8993 T&gt;C/G 5例、14487T&gt;C 4例、13513 G&gt;A 2例,9176 T&gt;C、10158 T&gt;C、3697 G&gt;A、10191T&gt;C、14459A&gt;G,11777C&gt;A各1例;nDNA变异18例(51%),其中SURF1基因10例、PDHA1基因3例、NDUFV1、NDUFAF6、NDUFAF5、NDUFS1和COQ7基因各1例。共发现27种变异类型,15种为新发。涉及呼吸链酶复合物基因变异31例(89%),丙酮酸脱氢酶复合物(PDHc)变异3例,其他1例。 结论: LS为婴幼儿好发,首发症状主要表现为运动异常、眼部症状和癫痫发作,具有年龄依赖性;呼吸链酶复合物基因变异是LS最常见原因,其中以SURF1最多,其次为8993 T&gt;C/G、14487 T&gt;C与13513 G&gt;A。."	"Pyruvate dehydrogenase expression is negatively associated with cell stemness and worse clinical outcome in prostate cancers. Cells generate adenosine-5'-triphosphate (ATP), the major currency for energy-consuming reactions, through mitochondrial oxidative phosphorylation (OXPHOS) and glycolysis. One of the remarkable features of cancer cells is aerobic glycolysis, also known as the &quot;Warburg Effect&quot;, in which cancer cells rely preferentially on glycolysis instead of mitochondrial OXPHOS as the main energy source even in the presence of high oxygen tension. One of the main players in controlling OXPHOS is the mitochondrial gatekeeperpyruvate dehydrogenase complex (PDHc) and its major subunit is E1α (PDHA1). To further analyze the function of PDHA1 in cancer cells, it was knock out (KO) in the human prostate cancer cell line LnCap and a stable KO cell line was established. We demonstrated that PDHA1 gene KO significantly decreased mitochondrial OXPHOS and promoted anaerobic glycolysis, accompanied with higher stemness phenotype including resistance to chemotherapy, enhanced migration ability and increased expression of cancer stem cell markers. We also examined PDHA1 protein expression in prostate cancer tissues by immunohistochemistry and observed that reduced PDHA1 protein expression in clinical prostate carcinomas was significantly correlated with poor prognosis. Collectively, our results show that negative PDHA1 gene expressionis associated with significantly higher cell stemness in prostate cancer cells and reduced protein expression of this gene is associated with shorter clinical outcome in prostate cancers."	"Pyruvate dehydrogenase-E1α deficiency presenting as recurrent acute proximal muscle weakness of upper and lower extremities in an 8-year-old boy. The mitochondrial pyruvate dehydrogenase enzyme complex (PDHC) plays an important role in aerobic energy metabolism and acid-base equilibrium. PDHC contains of 5 enzymes, 3 catalytic (E1, E2, E3) and 2 regulatory, as well as 3 cofactors and an additional protein (E3-binding protein) encoded by nuclear genes. The clinical presentation of PDHC deficiency ranges from fatal neonatal lactic acidosis to chronic neurologic dysfunction without lactic acidosis. Paroxysmal neurologic problems such as intermittent ataxia, episodic weakness, exercise-induced dystonia and recurrent demyelination may also be seen although they are rare. Here, we present an 8-year-old boy complaining of acute proximal muscle weakness of upper and lower extremities with normal mental status. He had a history of Guillain-Barré-like syndrome at the age of 2 years. Electrophysiologic studies showed sensorial polyneuropathy findings in the first attack and sensorimotor axonal polyneuropathy findings in the last attack. The genetic analysis revealed a previously reported hemizygote novel mutation of the PDHA1 gene (p.A353T/c.1057G &gt; A), which encodes the E1α subunit of PDHC. Thiamine was ordered (15 mg/kg/day), dietary carbohydrates were restricted and clinical findings improved in a few weeks. This rare phenotype of PDHC deficiency is discussed."	"Cannabinoid CB1 Receptors Are Localized in Striated Muscle Mitochondria and Regulate Mitochondrial Respiration. The cannabinoid type 1 (CB1) receptor is widely distributed in the brain and peripheral organs where it regulates cellular functions and metabolism. In the brain, CB1 is mainly localized on presynaptic axon terminals but is also found on mitochondria (mtCB1), where it regulates cellular respiration and energy production. Likewise, CB1 is localized on muscle mitochondria, but very little is known about it. The aim of this study was to further investigate in detail the distribution and functional role of mtCB1 in three different striated muscles. Immunoelectron microscopy for CB1 was used in skeletal muscles (gastrocnemius and rectus abdominis) and myocardium from wild-type and CB 1  -KO mice. Functional assessments were performed in mitochondria purified from the heart of the mice and the mitochondrial oxygen consumption upon application of different acute delta-9-tetrahydrocannabinol (Δ<sup>9</sup>-THC) concentrations (100 nM or 200 nM) was monitored. About 26% of the mitochondrial profiles in gastrocnemius, 22% in the rectus abdominis and 17% in the myocardium expressed CB1. Furthermore, the proportion of mtCB1 versus total CB1 immunoparticles was about 60% in the gastrocnemius, 55% in the rectus abdominis and 78% in the myocardium. Importantly, the CB1 immunolabeling pattern disappeared in muscles of CB 1  -KO mice. Functionally, acute 100 nM or 200 nM THC treatment specifically decreased mitochondria coupled respiration between 12 and 15% in wild-type isolated mitochondria of myocardial muscles but no significant difference was noticed between THC treated and vehicle in mitochondria isolated from CB 1  -KO heart. Furthermore, gene expression of key enzymes involved in pyruvate synthesis, tricarboxylic acid (TCA) cycle and mitochondrial respiratory chain was evaluated in the striated muscle of CB 1  -WT and CB 1  -KO. CB 1  -KO showed an increase in the gene expression of Eno3, Pkm2, and Pdha1, suggesting an increased production of pyruvate. In contrast, no significant difference was observed in the Sdha and Cox4i1 expression, between CB 1  -WT and CB 1  -KO. In conclusion, CB1 receptors in skeletal and myocardial muscles are predominantly localized in mitochondria. The activation of mtCB1 receptors may participate in the mitochondrial regulation of the oxidative activity probably through the relevant enzymes implicated in the pyruvate metabolism, a main substrate for TCA activity."	"Decreased expression of pyruvate dehydrogenase A1 predicts an unfavorable prognosis in ovarian carcinoma. Pyruvate dehydrogenase A1 (PDHA1) serves as a gate-keeper enzyme link between glycolysis and the mitochondrial citric acid cycle. The inhibition of PDHA1 in cancer cells can result in an increased Warburg effect and a more aggressive phenotype in cancer cells. This study was conducted to investigate the expression of PDHA1 in ovarian cancer and the correlation between PDHA1 expression and the prognosis of patients. The PDHA1 protein expression in 3 ovarian cancer cell lines (OVCAR-3, SKOV-3 and ES-2) and 248 surgically removed ovarian carcinoma samples was immunocytochemically examined. Statistical analyses were performed to evaluate the correlations between PDHA1 expression and the clinicopathological characteristics of the patients as well as the predictive value of PDHA1. The results showed the presence of variable expression of PDHA1 in the three ovarian cancer cell lines. Of the 248 ovarian cancer tissue specimens, 45 cases (18.1%) were negative in tumor cells for PDHA1, 162 cases (65.3%) displayed a low expression level, and 41 cases (16.5%) had a relatively high PDHA1 staining. The expression of PDHA1 was associated with the histological subtype (P=0.004) and FIGO stage (P=0.002). The median OS time in the PDHA1 negative group, low expression group and high expression group were 0.939 years, 1.443 years and 9.900 years, respectively. The median PFS time in the above three groups were 0.287 years, 0.586 years and 9.900 years, respectively. Furthermore, the high expression of PDHA1 in ovarian carcinoma cells was significantly associated with better OS and PFS by statistical analyses. Multivariate analyses showed that PDHA1 expression was also an independent prognostic factor for higher OS in ovarian cancer patients (HR=0.705, 95% CI 0.541-0.918, P=0.01). Our study indicated that the decreased expression of PDHA1 might be an independent prognostic factor in unfavorable outcomes."	"Data supporting the co-expression of PDHA1 gene and of its paralogue PDHA2 in somatic cells of a family. This article presents a dataset proving the simultaneous presence of a 5'UTR-truncated PDHA1 mRNA and a full-length PDHA2 mRNA in the somatic cells of a PDC-deficient female patient and all members of her immediate family (parents and brother). We have designed a large set of primer pairs in order to perform detailed RT-PCR assays allowing the clear identification of both PDHA1 and PDHA2 mRNA species in somatic cells. In addition, two different experimental approaches were used to elucidate the copy number of PDHA1 gene in the patient and her mother. The interpretation and discussion of these data, along with further extensive experiments concerning the origin of this altered gene expression and its potential therapeutic consequences, can be found in &quot;Complex genetic findings in a female patient with pyruvate dehydrogenase complex deficiency: null mutations in the PDHX gene associated with unusual expression of the testis-specific PDHA2 gene in her somatic cells&quot; (A. Pinheiro, M.J. Silva, C. Florindo, et al., 2016) [1]. "	"Examination of the molecular control of ruminal epithelial function in response to dietary restriction and subsequent compensatory growth in cattle. The objective of this study was to investigate the effect of dietary restriction and subsequent compensatory growth on the relative expression of genes involved in volatile fatty acid transport, metabolism and cell proliferation in ruminal epithelial tissue of beef cattle. Sixty Holstein Friesian bulls (mean liveweight 370 ± 35 kg; mean age 479 ± 15 d) were assigned to one of two groups: (i) restricted feed allowance (RES; n = 30) for 125 d (Period 1) followed by ad libitum access to feed for 55 d (Period 2) or (ii) ad libitum access to feed throughout (ADLIB; n = 30). Target growth rate for RES was 0.6 kg/d during Period 1. At the end of each dietary period, 15 animals from each treatment group were slaughtered and ruminal epithelial tissue and liquid digesta harvested from the ventral sac of the rumen. Real-time qPCR was used to quantify mRNA transcripts of 26 genes associated with ruminal epithelial function. Volatile fatty acid analysis of rumen fluid from individual animals was conducted using gas chromatography. Diet × period interactions were evident for genes involved in ketogenesis (BDH2, P = 0.017), pyruvate metabolism (LDHa, P = 0.048; PDHA1, P = 0.015) and cellular transport and structure (DSG1, P = 0.019; CACT, P = 0.027). Ruminal concentrations of propionic acid (P = 0.018) and n-valeric acid (P = 0.029) were lower in RES animals, compared with ADLIB, throughout the experiment. There was also a strong tendency (P = 0.064) toward a diet × period interaction for n-butyric with higher concentrations in RES animals, compared with ADLIB, during Period 1. These data suggest that following nutrient restriction, the structural integrity of the rumen wall is compromised and there is upregulation of genes involved in the production of ketone bodies and breakdown of pyruvate for cellular energy. These results provide an insight into the potential molecular mechanisms regulating ruminal epithelial absorptive metabolism and growth following nutrient restriction and subsequent compensatory growth."	"Cardiac-Specific Deletion of the Pdha1 Gene Sensitizes Heart to Toxicological Actions of Ischemic Stress. NA"	"Suppression of fat deposition in broiler chickens by (-)-hydroxycitric acid supplementation: A proteomics perspective. (-)-Hydroxycitric acid (HCA) suppresses fatty acid synthesis in animals, but its biochemical mechanism in poultry is unclear. This study identified the key proteins associated with fat metabolism and elucidated the biochemical mechanism of (-)-HCA in broiler chickens. Four groups (n = 30 each) received a diet supplemented with 0, 1000, 2000 or 3000 mg/kg (-)-HCA for 4 weeks. Of the differentially expressed liver proteins, 40 and 26 were identified in the mitochondrial and cytoplasm respectively. Pyruvate dehydrogenase E1 components (PDHA1 and PDHB), dihydrolipoyl dehydrogenase (DLD), aconitase (ACO2), a-ketoglutarate dehydrogenase complex (DLST), enoyl-CoA hydratase (ECHS1) and phosphoglycerate kinase (PGK) were upregulated, while NADP-dependent malic enzyme (ME1) was downregulated. Biological network analysis showed that the identified proteins were involved in glycometabolism and lipid metabolism, whereas PDHA1, PDHB, ECHS1, and ME1 were identified in the canonical pathway by Ingenuity Pathway Analysis. The data indicated that (-)-HCA inhibited fatty acid synthesis by reducing the acetyl-CoA supply, via promotion of the tricarboxylic acid cycle (upregulation of PDHA1, PDHB, ACO2, and DLST expression) and inhibition of ME1 expression. Moreover, (-)-HCA promoted fatty acid beta-oxidation by upregulating ECHS1 expression. These results reflect a biochemically relevant mechanism of fat reduction by (-)-HCA in broiler chickens."	"PDHA1 gene knockout in prostate cancer cells results in metabolic reprogramming towards greater glutamine dependence. Alternative pathways of metabolism endowed cancer cells with metabolic stress. Inhibiting the related compensatory pathways might achieve synergistic anticancer results. This study demonstrated that pyruvate dehydrogenase E1α gene knockout (PDHA1 KO) resulted in alterations in tumor cell metabolism by rendering the cells with increased expression of glutaminase1 (GLS1) and glutamate dehydrogenase1 (GLUD1), leading to an increase in glutamine-dependent cell survival. Deprivation of glutamine induced cell growth inhibition, increased reactive oxygen species and decreased ATP production. Pharmacological blockade of the glutaminolysis pathway resulted in massive tumor cells apoptosis and dysfunction of ROS scavenge in the LNCaP PDHA1 KO cells. Further examination of the key glutaminolysis enzymes in human prostate cancer samples also revealed that higher levels of GLS1 and GLUD1 expression were significantly associated with aggressive clinicopathological features and poor clinical outcome. These insights supply evidence that glutaminolysis plays a compensatory role for cell survival upon alternative energy metabolism and targeting the glutamine anaplerosis of energy metabolism via GLS1 and GLUD1 in cancer cells may offer a potential novel therapeutic strategy."	"Pyruvate dehydrogenase alpha 1 as a target of omega-3 polyunsaturated fatty acids in human prostate cancer through a global phosphoproteomic analysis. Prostate cancer is one of the leading cancers in men. Taking dietary supplements, such as fish oil (FO), which is rich in n-3 polyunsaturated fatty acids (PUFAs), has been employed as a strategy to lower prostate cancer risk and control disease progression. In this study, we investigated the global phosphoproteomic changes induced by FO using a combination of phosphoprotein-enrichment strategy and high-resolution tandem mass spectrometry. We found that FO induces many more phosphorylation changes than oleic acid when they both are compared to control group. Quantitative comparison between untreated group and FO- or oleic acid-treated groups uncovered a number of important protein phosphorylation changes induced by n-3PUFAs. This phosphoproteomic discovery study and the follow-up Western Blot validation study elucidate that phosphorylation levels of the two regulatory serine residues in pyruvate dehydrogenase alpha 1 (PDHA1), serine-232 and serine-300, are significantly decreased upon FO treatment. As expected, increased pyruvate dehydrogenase activity was also observed. This study suggests that FO-induced phosphorylation changes in PDHA1 is more likely related to the glucose metabolism pathway, and n-3 PUFAs may have a role in controlling the balance between lipid and glucose oxidation."	"Complex genetic findings in a female patient with pyruvate dehydrogenase complex deficiency: Null mutations in the PDHX gene associated with unusual expression of the testis-specific PDHA2 gene in her somatic cells. Human pyruvate dehydrogenase complex (PDC) catalyzes a key step in the generation of cellular energy and is composed by three catalytic elements (E1, E2, E3), one structural subunit (E3-binding protein), and specific regulatory elements, phosphatases and kinases (PDKs, PDPs). The E1α subunit exists as two isoforms encoded by different genes: PDHA1 located on Xp22.1 and expressed in somatic tissues, and the intronless PDHA2 located on chromosome 4 and only detected in human spermatocytes and spermatids. We report on a young adult female patient who has PDC deficiency associated with a compound heterozygosity in PDHX encoding the E3-binding protein. Additionally, in the patient and in all members of her immediate family, a full-length testis-specific PDHA2 mRNA and a 5'UTR-truncated PDHA1 mRNA were detected in circulating lymphocytes and cultured fibroblasts, being both mRNAs translated into full-length PDHA2 and PDHA1 proteins, resulting in the co-existence of both PDHA isoforms in somatic cells. Moreover, we observed that DNA hypomethylation of a CpG island in the coding region of PDHA2 gene is associated with the somatic activation of this gene transcription in these individuals. This study represents the first natural model of the de-repression of the testis-specific PDHA2 gene in human somatic cells, and raises some questions related to the somatic activation of this gene as a potential therapeutic approach for most forms of PDC deficiency. "	"Beneficial effect of feeding a ketogenic diet to mothers on brain development in their progeny with a murine model of pyruvate dehydrogenase complex deficiency. Pyruvate dehydrogenase complex (PDC) deficiency is a major inborn error of oxidative metabolism of pyruvate in the mitochondria causing congenital lactic acidosis and primarily structural and functional abnormalities of the central nervous system. To provide an alternate source of acetyl-CoA derived from ketone bodies to the developing brain, a formula high in fat content is widely employed as a treatment. In the present study we investigated efficacy of a high-fat diet given to mothers during pregnancy and lactation on lessening of the impact of PDC deficiency on brain development in PDC-deficient female progeny. A murine model of systemic PDC deficiency by interrupting the X-linked Pdha1 gene was employed in this study. Maternal consumption of a high-fat diet during pregnancy and lactation had no effect on number of live-birth, body growth, tissue PDC activity levels, as well as the in vitro rates of glucose oxidation and fatty acid biosynthesis by the developing brain of PDC-deficient female offspring during the postnatal age 35 days, as compared to the PDC-deficient progeny born to dams on a chow diet. Interestingly, brain weight was normalized in PDC-deficient progeny of high fat-fed mothers with improvement in impairment in brain structure deficit whereas brain weight was significantly decreased and was associated with greater cerebral structural defects in progeny of chow-fed mothers as compared to control progeny of mothers fed either a chow or high fat diet. The findings provide for the first time experimental support for beneficial effects of a ketogenic diet during the prenatal and early postnatal periods on the brain development of PDC-deficient mammalian progeny."	"New perspective in diagnostics of mitochondrial disorders: two years' experience with whole-exome sequencing at a national paediatric centre. Whole-exome sequencing (WES) has led to an exponential increase in identification of causative variants in mitochondrial disorders (MD). We performed WES in 113 MD suspected patients from Polish paediatric reference centre, in whom routine testing failed to identify a molecular defect. WES was performed using TruSeqExome enrichment, followed by variant prioritization, validation by Sanger sequencing, and segregation with the disease phenotype in the family. Likely causative mutations were identified in 67 (59.3 %) patients; these included variants in mtDNA (6 patients) and nDNA: X-linked (9 patients), autosomal dominant (5 patients), and autosomal recessive (47 patients, 11 homozygotes). Novel variants accounted for 50.5 % (50/99) of all detected changes. In 47 patients, changes in 31 MD-related genes (ACAD9, ADCK3, AIFM1, CLPB, COX10, DLD, EARS2, FBXL4, MTATP6, MTFMT, MTND1, MTND3, MTND5, NAXE, NDUFS6, NDUFS7, NDUFV1, OPA1, PARS2, PC, PDHA1, POLG, RARS2, RRM2B, SCO2, SERAC1, SLC19A3, SLC25A12, TAZ, TMEM126B, VARS2) were identified. The ACAD9, CLPB, FBXL4, PDHA1 genes recurred more than twice suggesting higher general/ethnic prevalence. In 19 cases, variants in 18 non-MD related genes (ADAR, CACNA1A, CDKL5, CLN3, CPS1, DMD, DYSF, GBE1, GFAP, HSD17B4, MECP2, MYBPC3, PEX5, PGAP2, PIGN, PRF1, SBDS, SCN2A) were found. The percentage of positive WES results rose gradually with increasing probability of MD according to the Mitochondrial Disease Criteria (MDC) scale (from 36 to 90 % for low and high probability, respectively). The percentage of detected MD-related genes compared with non MD-related genes also grew with the increasing MD likelihood (from 20 to 97 %). Molecular diagnosis was established in 30/47 (63.8 %) neonates and in 17/28 (60.7 %) patients with basal ganglia involvement. Mutations in CLPB, SERAC1, TAZ genes were identified in neonates with 3-methylglutaconic aciduria (3-MGA) as a discriminative feature. New MD-related candidate gene (NDUFB8) is under verification. We suggest WES rather than targeted NGS as the method of choice in diagnostics of MD in children, including neonates with 3-MGA aciduria, who died without determination of disease cause and with limited availability of laboratory data. There is a strong correlation between the degree of MD diagnosis by WES and MD likelihood expressed by the MDC scale."	"Generation and Purification of Catalytically Active Recombinant Sirtuin5 (SIRT5) Protein. Sirtuin-family deacylases promote health and longevity in mammals. The sirtuin SIRT5 localizes predominantly to the mitochondrial matrix. SIRT5 preferentially removes negatively charged modifications from its target lysines: succinylation, malonylation, and glutarylation. It regulates protein substrates involved in glucose oxidation, ketone body formation, ammonia detoxification, fatty acid oxidation, and ROS management. Like other sirtuins, SIRT5 has recently been linked with neoplasia. Therefore, targeting SIRT5 pharmacologically could conceivably provide new avenues for treatment of metabolic disease and cancer, necessitating development of SIRT5-selective modulators. Here we describe the generation of SIRT5 bacterial expression plasmids, and their use to express and purify catalytically active and inactive forms of SIRT5 protein from E. coli. Additionally, we describe an approach to assay the catalytic activity of purified SIRT5, potentially useful for identification and validation of SIRT5-specific modulators."	"Role of Mitochondrial DNA Copy Number Alteration in Human Renal Cell Carcinoma. We investigated the role of mitochondrial DNA (mtDNA) copy number alteration in human renal cell carcinoma (RCC). The mtDNA copy numbers of paired cancer and non-cancer parts from five resected RCC kidneys after radical nephrectomy were determined by quantitative polymerase chain reaction (Q-PCR). An RCC cell line, 786-O, was infected by lentiviral particles to knock down mitochondrial transcriptional factor A (TFAM). Null target (NT) and TFAM-knockdown (TFAM-KD) represented the control and knockdown 786-O clones, respectively. Protein or mRNA expression levels of TFAM; mtDNA-encoded NADH dehydrogenase subunit 1 (ND1), ND6 and cytochrome c oxidase subunit 2 (COX-2); nuclear DNA (nDNA)-encoded succinate dehydrogenase subunit A (SDHA); v-akt murine thymoma viral oncogene homolog 1 gene (AKT)-encoded AKT and v-myc myelocytomatosis viral oncogene homolog gene (c-MYC)-encoded MYC; glycolytic enzymes including hexokinase II (HK-II), glucose 6-phosphate isomerase (GPI), phosphofructokinase (PFK), and lactate dehydrogenase subunit A (LDHA); and hypoxia-inducible factors the HIF-1α and HIF-2α, pyruvate dehydrogenase kinase 1 (PDK1), and pyruvate dehydrogenase E1 component α subunit (PDHA1) were analyzed by Western blot or Q-PCR. Bioenergetic parameters of cellular metabolism, basal mitochondrial oxygen consumption rate (mOCRB) and basal extracellular acidification rate (ECARB), were measured by a Seahorse XF(e)-24 analyzer. Cell invasiveness was evaluated by a trans-well migration assay and vimentin expression. Doxorubicin was used as a chemotherapeutic agent. The results showed a decrease of mtDNA copy numbers in resected RCC tissues (p = 0.043). The TFAM-KD clone expressed lower mtDNA copy number (p = 0.034), lower mRNA levels of TFAM (p = 0.008), ND1 (p = 0.007), and ND6 (p = 0.017), and lower protein levels of TFAM and COX-2 than did the NT clone. By contrast, the protein levels of HIF-2α, HK-II, PFK, LDHA, AKT, MYC and vimentin; trans-well migration activity (p = 0.007); and drug resistance to doxorubicin (p = 0.008) of the TFAM-KD clone were significantly higher than those of the NT clone. Bioenergetically, the TFAM-KD clone expressed lower mOCRB (p = 0.009) but higher ECARB (p = 0.037) than did the NT clone. We conclude that a reduction of mtDNA copy number and decrease of respiratory function of mitochondria in RCC might be compensated for by an increase of enzymes and factors that are involved in the upregulation of glycolysis to confer RCC more invasive and a drug-resistant phenotype in vitro. "	"Difficulties in recognition of pyruvate dehydrogenase complex deficiency on the basis of clinical and biochemical features. The role of next-generation sequencing. Pyruvate dehydrogenase complex (PDHc) defect is a well-known cause of mitochondrial disorders (MD) with at least six responsible genes (PDHA1, PDHB, DLAT, DLD, PDHX, PDP1). The aim of this work was to assess the diagnostic value of biochemical methods in recognition of PDHc defect in Polish patients with suspicion of MD. In the first step, Western blot of the E1α subunit was performed on 86 archive muscle bioptates with suspicion of MD. In the second step, Sanger PDHA1 sequencing was performed in 21 cases with low E1α expression. In the third step, 7 patients with negative results of PDHA1 sequencing were subjected to whole-exome sequencing (WES). This protocol revealed 4 patients with PDHA1 and one with DLD mutations. Four additional probands were diagnosed outside the protocol (WES or Sanger sequencing). The molecular characterization of PDHc defect was conducted in a total of 9 probands: 5 according to and 4 off the protocol. Additionally, two affected relatives were recognized by a family study. Altogether we identified seven different PDHA1 changes, including two novel variants [c.464T &gt; C (p.Met155Thr) and c.856_859dupACTT (p.Arg288Leufs*10)] and one DLD variant. The lactate response to glucose load in the PDHA1 subset was compared to a subset of non PDHc-related MD. Opposite responses were observed, with an increase of 23% and decrease of 27%, respectively. The results show that determining lactate response to glucose load and muscle E1α expression may contribute to distinguishing PDHc-related and other MD, however, WES is becoming the method of choice for MD diagnostics. "	"Short communication: Amino acid supplementation and stage of lactation alter apparent utilization of nutrients by blood neutrophils from lactating dairy cows in vitro. Glutamine is the preferred AA used by polymorphonuclear leukocytes (PMN) during the inflammatory response. However, the effect of other AA on bovine PMN response during inflammation and how this is altered by stage of lactation has not been fully elucidated. The objective of this study was to determine the effect of additional AA supplementation (pool of AA excluding Gln) on AA profiles, gene expression, and inflammatory function of PMN from dairy cows in early and mid lactation in vitro. We used 18 Holstein cows for this study. Polymorphonuclear leukocytes were isolated. Working solutions of AA (0 or 4 mM) and LPS (0 or 50μg/mL) were added to cell populations suspended in RPMI and incubated for 2h at 37°C. We used a subset of samples for gene and protein expression. Concentrations of AA in medium were determined using gas chromatography-mass spectrometry with norleucine as an internal standard. Apparent AA and glucose utilization were calculated by subtracting the concentration after from that of before incubation. Data were analyzed as a randomized block design. Challenge with LPS increased the expression of proinflammatory genes and AA supplementation decreased both the expression of some proinflammatory genes and the media concentrations of tumor necrosis factor-α. Neither stage of lactation, LPS challenge, nor AA supplementation altered the chemotactic or phagocytic abilities of PMN in vitro. Polymorphonuclear leukocytes supplemented with AA had greater concentrations and apparent utilization of most of the supplemented AA, whereas the unsupplemented group had greater apparent utilization of glucose. Alanine was not provided in the media but was present in spent media, and Ile, Gly, and Pro were greater in spent media than in media before incubation indicating synthesis of these AA. Regarding expression of genes involved in nutrient metabolism, the expression of G6PD, coding for the enzyme glucose 6-phosphate dehydrogenase, was increased and that of PDHA1, coding for the enzyme pyruvate dehydrogenase α 1, tended to increase with AA supplementation. Due to the lower concentration of tumor necrosis factor-α in media coupled with a downregulation of several proinflammatory genes, we concluded that AA, rather than Gln, alter the inflammatory response of bovine blood PMN. Independent from Gln, blood PMN from cows in early lactation may use certain AA as their primary carbon source for energy than cows in later lactation. Evaluating cows during the early postpartum period will provide additional information on the effect of stage of lactation and nutrient supplementation on PMN function. "	"Detection and Quantification of Mosaic Mutations in Disease Genes by Next-Generation Sequencing. The identification of mosaicism is important in establishing a disease diagnosis, assessing recurrence risk, and genetic counseling. Next-generation sequencing (NGS) with deep sequence coverage enhances sensitivity and allows for accurate quantification of the level of mosaicism. NGS identifies low-level mosaicism that would be undetectable by conventional Sanger sequencing. A customized DNA probe library was used for capturing targeted genes, followed by deep NGS analysis. The mean coverage depth per base was approximately 800×. The NGS sequence data were analyzed for single-nucleotide variants and copy number variations. Mosaic mutations in 10 cases/families were detected and confirmed by NGS analysis. Mosaicism was identified for autosomal dominant (JAG1, COL3A1), autosomal recessive (PYGM), and X-linked (PHKA2, PDHA1, OTC, and SLC6A8) disorders. The mosaicism was identified either in one or more tissues from the probands or in a parent of an affected child. When analyzing data from patients with unusual testing results or inheritance patterns, it is important to further evaluate the possibility of mosaicism. Deep NGS analysis not only provides insights into the spectrum of mosaic mutations but also underlines the importance of the detection of mosaicism as an integral part of clinical molecular diagnosis and genetic counseling."	"Missense variants in the middle domain of DNM1L in cases of infantile encephalopathy alter peroxisomes and mitochondria when assayed in Drosophila. Defects in organelle dynamics underlie a number of human degenerative disorders, and whole exome sequencing (WES) is a powerful tool for studying genetic changes that affect the cellular machinery. WES may uncover variants of unknown significance (VUS) that require functional validation. Previously, a pathogenic de novo variant in the middle domain of DNM1L (p.A395D) was identified in a single patient with a lethal defect of mitochondrial and peroxisomal fission. We identified two additional patients with infantile encephalopathy and partially overlapping clinical features, each with a novel VUS in the middle domain of DNM1L (p.G350R and p.E379K). To evaluate pathogenicity, we generated transgenic Drosophila expressing wild-type or variant DNM1L. We find that human wild-type DNM1L rescues the lethality as well as specific phenotypes associated with the loss of Drp1 in Drosophila. Neither the p.A395D variant nor the novel variant p.G350R rescue lethality or other phenotypes. Moreover, overexpression of p.A395D and p.G350R in Drosophila neurons, salivary gland and muscle strikingly altered peroxisomal and mitochondrial morphology. In contrast, the other novel variant (p.E379K) rescued lethality and did not affect organelle morphology, although it was associated with a subtle mitochondrial trafficking defect in an in vivo assay. Interestingly, the patient with the p.E379K variant also has a de novo VUS in pyruvate dehydrogenase 1 (PDHA1) affecting the same amino acid (G150) as another case of PDHA1 deficiency suggesting the PDHA1 variant may be pathogenic. In summary, detailed clinical evaluation and WES with functional studies in Drosophila can distinguish different functional consequences of newly-described DNM1L alleles."	"Adhesion phenotype manifests an altered metabolic profile favoring glycolysis. To determine whether metabolic markers are differentially expressed in normal and adhesion fibroblasts with and without hypoxia exposure. Prospective experimental study. University research laboratory. Fibroblasts established from normal peritoneum and adhesion tissues from the same patients. In vitro experiments on normal peritoneal and adhesion fibroblasts under normal and hypoxic (2% O2) conditions. Expression of metabolic markers, glyceraldehyde 3-phosphate dehydrogenase (GAPDH), glucose transporter 1 (GLUT1), hypoxia inducible factor (HIF)-1α, hexokinase 2 (HK2), lactose dehydrogenase A (LDHA), and pyruvate dehydrogenase alpha 1 (PDHA1) were measured using real-time reverse transcription polymerase chain reaction; adenosine triphosphate (ATP), HIF-1α, and lactate levels were assessed with ELISAs. Baseline mRNA levels of GAPDH and HIF-1α were increased, while GLUT1 and PDHA1 were decreased in adhesion as compared with in normal peritoneal fibroblasts. There was no change in baseline levels of HK2 or LDHA between the cell lines. Hypoxia increased protein levels of HIF-1α and mRNA levels of GAPDH, GLUT1, and HK2 and decreased levels of PDHA1 in both cell lines. Hypoxia increased LDHA mRNA levels in normal peritoneal fibroblasts. Baseline levels of lactate and ATP were lower in adhesion as compared with in normal peritoneal fibroblasts. In response to hypoxia, there was an increase in lactate in both cell lines and a decrease in ATP in normal fibroblasts. Adhesion fibroblasts manifested an altered metabolic profile, which favors the glycolytic pathway, and is further altered by hypoxia. Targeting these specific metabolic markers during surgery can be an important therapeutic intervention minimizing the development of postoperative adhesions."	"Cardiac-Specific Deletion of the Pdha1 Gene Sensitizes Heart to Toxicological Actions of Ischemic Stress. Pyruvate dehydrogenase (PDH) plays a key role in aerobic energy metabolism and occupies a central crossroad between glycolysis and the tricarboxylic acid cycle. We generated inducible cardiac-specific PDH E1α knockout (CreER(T2)-PDH(flox/flox)) mice that demonstrated a high mortality rate. It was hypothesized that PDH modulating cardiac glucose metabolism is crucial for heart functions under normal physiological and/or stress conditions. The myocardial infarction was conducted by a ligation of the left anterior descending coronary arteries. Cardiac PDH E1α deficiency caused large myocardial infarcts size and macrophage infiltration in the hearts (P &lt; .01 vs wild-type [WT]). Wheat germ agglutinin and Masson trichrome staining revealed significantly increased hypertrophy and fibrosis in PDH E1α-deficient hearts (P &lt; .05 vs WT). Measurements of heart substrate metabolism in an ex vivo working heart perfusion system demonstrated a significant impairment of glucose oxidation in PDH E1α-deficient hearts during ischemia/reperfusion (P &lt; .05 vs WT). Dichloroacetate, a PDH activator, increased glucose oxidation in WT hearts during ischemia/reperfusion and reduced myocardial infarct size in WT, but not in PDH E1α-deficient hearts. Immunoblotting results demonstrated that cardiac PDH E1α deficiency leads to an impaired ischemic AMP-activated protein kinase activation through Sestrin2-liver kinase B1 interaction which is responsible for an increased susceptibility of PDH E1α-deficient heart to ischemic insults. Thus, cardiac PDH E1α deficiency impairs ischemic AMP-activated protein kinase signaling and sensitizes hearts to the toxicological actions of ischemic stress."	"Phenotypic and Neuropathological Characterization of Fetal Pyruvate Dehydrogenase Deficiency. To distinguish pyruvate dehydrogenase deficiency (PDH) from other antenatal neurometabolic disorders thereby improving prenatal diagnosis, we describe imaging findings, clinical phenotype, and brain lesions in fetuses from 3 families with molecular characterization of this condition. Neuropathological analysis was performed in 4 autopsy cases from 3 unrelated families with subsequent biochemical and molecular confirmation of PDH complex deficiency. In 2 families there were mutations in the PDHA1 gene; in the third family there was a mutation in the PDHB gene. All fetuses displayed characteristic craniofacial dysmorphism of varying severity, absence of visceral lesions, and associated encephaloclastic and developmental supra- and infratentorial lesions. Neurodevelopmental abnormalities included microcephaly, migration abnormalities (pachygyria, polymicrogyria, periventricular nodular heterotopias), and cerebellar and brainstem hypoplasia with hypoplastic dentate nuclei and pyramidal tracts. Associated clastic lesions included asymmetric leukomalacia, reactive gliosis, large pseudocysts of germinolysis, and basal ganglia calcifications. The diagnosis of PDH deficiency should be suspected antenatally with the presence of clastic and neurodevelopmental lesions and a relatively characteristic craniofacial dysmorphism. Postmortem examination is essential for excluding other closely related entities, thereby allowing for biochemical and molecular confirmation. "	"Src drives the Warburg effect and therapy resistance by inactivating pyruvate dehydrogenase through tyrosine-289 phosphorylation. The Warburg effect, which reflects cancer cells' preference for aerobic glycolysis over glucose oxidation, contributes to tumor growth, progression and therapy resistance. The restraint on pyruvate flux into mitochondrial oxidative metabolism in cancer cells is in part attributed to the inhibition of pyruvate dehydrogenase (PDH) complex. Src is a prominent oncogenic non-receptor tyrosine kinase that promotes cancer cell proliferation, invasion, metastasis and resistance to conventional and targeted therapies. However, the potential role of Src in tumor metabolism remained unclear. Here we report that activation of Src attenuated PDH activity and generation of reactive oxygen species (ROS). Conversely, Src inhibitors activated PDH and increased cellular ROS levels. Src inactivated PDH through direct phosphorylation of tyrosine-289 of PDH E1α subunit (PDHA1). Indeed, Src was the main kinase responsible for PDHA1 tyrosine phosphorylation in cancer cells. Expression of a tyrosine-289 non-phosphorable PDHA1 mutant in Src-hyperactivated cancer cells restored PDH activity, increased mitochondrial respiration and oxidative stress, decreased experimental metastasis, and sensitized cancer cells to pro-oxidant treatment. The results suggest that Src contributes to the Warburg phenotype by inactivating PDH through tyrosine phosphorylation, and the metabolic effect of Src is essential for Src-driven malignancy and therapy resistance. Combination therapies consisting of both Src inhibitors and pro-oxidants may improve anticancer efficacy. "	"ChREBP Regulates Itself and Metabolic Genes Implicated in Lipid Accumulation in β-Cell Line. Carbohydrate response element binding protein (ChREBP) is an important transcription factor that regulates a variety of glucose-responsive genes in hepatocytes. To date, only two natural isoforms, Chrebpα and Chrebpβ, have been identified. Although ChREBP is known to be expressed in pancreatic β cells, most of the glucose-responsive genes have never been verified as ChREBP targets in this organ. We aimed to explore the impact of ChREBP expression on regulating genes linked to accumulation of lipid droplets, a typical feature of β-cell glucotoxicity. We assessed gene expression in 832/13 cells overexpressing constitutively active ChREBP (caChREBP), truncated ChREBP with nearly identical amino acid sequence to Chrebpβ, or dominant negative ChREBP (dnChREBP). Among multiple ChREBP-controlled genes, ChREBP was sufficient and necessary for regulation of Eno1, Pklr, Mdh1, Me1, Pdha1, Acly, Acaca, Fasn, Elovl6, Gpd1, Cpt1a, Rgs16, Mid1ip1,Txnip, and Chrebpβ. Expression of Chrebpα and Srebp1c were not changed by caChREBP or dnChREBP. We identified functional ChREBP binding sequences that were located on the promoters of Chrebpβ and Rgs16. We also showed that Rgs16 overexpression lead to increased considerable amounts of lipids in 832/13 cells. This phenotype was accompanied by reduction of Cpt1a expression and slight induction of Fasn and Pklr gene in these cells. In summary, we conclude that Chrebpβ modulates its own expression, not that of Chrebpα; it also regulates the expression of several metabolic genes in β-cells without affecting SREBP-1c dependent regulation. We also demonstrate that Rgs16 is one of the ChREBP-controlled genes that potentiate accumulation of lipid droplets in β-cells. "	"[Diagnosis of mitochondrial disorders in children with next generation sequencing]. To explore the application value of next generation sequencing (NGS) in the diagnosis of mitochondrial disorders. According to mitochondrial disease criteria, genomic DNA was extracted using standard procedure from peripheral venous blood of patients with suspected mitochondrial disease collected from neurological department of Beijing Children's Hospital Affiliated to Capital Medical University between October 2012 and February 2014. Targeted NGS to capture and sequence the entire mtDNA and exons of the 1 000 nuclear genes related to mitochondrial structure and function. Clinical data were collected from patients diagnosed at a molecular level, then clinical features and the relationship between genotype and phenotype were analyzed. Mutation was detected in 21 of 70 patients with suspected mitochondrial disease, in whom 10 harbored mtDNA mutation, while 11 nuclear DNA (nDNA) mutation. In 21 patients, 1 was diagnosed congenital myasthenic syndrome with episodic apnea due to CHAT gene p.I187T homozygous mutation, and 20 were diagnosed mitochondrial disease, in which 10 were Leigh syndrome, 4 were mitochondrial encephalomyopathy with lactic acidosis and stroke like episodes syndrome, 3 were Leber hereditary optic neuropathy (LHON) and LHON plus, 2 were mitochondrial DNA depletion syndrome and 1 was unknown. All the mtDNA mutations were point mutations, which contained A3243G, G3460A, G11778A, T14484C, T14502C and T14487C. Ten mitochondrial disease patients harbored homozygous or compound heterozygous mutations in 5 genes previously shown to cause disease: SURF1, PDHA1, NDUFV1, SUCLA2 and SUCLG1, which had 14 mutations, and 7 of the 14 mutations have not been reported. NGS has a certain application value in the diagnosis of mitochondrial diseases, especially in Leigh syndrome atypical mitochondrial syndrome and rare mitochondrial disorders."	"Global comparison of chromosome X genes of pulmonary telocytes with mesenchymal stem cells, fibroblasts, alveolar type II cells, airway epithelial cells, and lymphocytes. Telocytes (TCs) are suggested as a new type of interstitial cells with specific telopodes. Our previous study evidenced that TCs differed from fibroblasts and stem cells at the aspect of gene expression profiles. The present study aims to search the characters and patterns of chromosome X genes of TC-specific or TC-dominated gene profiles and fingerprints, investigate the network of principle genes, and explore potential functional association. We compared gene expression profiles in chromosome X of pulmonary TCs with mesenchymal stem cells (MSC), fibroblasts (Fb), alveolar type II cells (ATII), airway basal cells (ABC), proximal airway cells (PAC), CD8(+) T cells come from bronchial lymph nodes (T-BL), or CD8(+) T cells from lungs (T-L) by global analyses, and selected the genes which were consistently up or down regulated (&gt;1 fold) in TCs compared to other cells as TC-specific genes. The functional and characteristic networks were identified and compared by bioinformatics tools. We selected 31 chromosome X genes as the TC-specific or dominated genes, among which 8 up-regulated (Flna, Msn, Cfp, Col4a5, Mum1l1, Rnf128, Syn1, and Srpx2) and 23 down-regulated (Abcb7, Atf1, Ddx26b, Drp2, Fam122b, Gyk, Irak1, Lamp2, Mecp2, Ndufb11, Ogt, Pdha1, Pola1, Rab9, Rbmx2, Rhox9, Thoc2, Vbp1, Dkc1, Nkrf, Piga, Tmlhe and Tsr2), as compared with other cells. Our data suggested that gene expressions of chromosome X in TCs are different with those in other cells in the lung tissue. According to the selected TC-specific genes, we infer that pulmonary TCs function as modulators which may enhance cellular growth and migration, resist senescence, protect cells from external stress, regulate immune responses, participate in tissue remodeling and repair, regulate neural function, and promote vessel formation."	"Pyruvate dehydrogenase complex deficiency and its relationship with epilepsy frequency--An overview. The pyruvate dehydrogenase complex (PDHc) is a member of a family of multienzyme complexes that provides the link between glycolysis and the tricarboxylic acid (TCA) cycle by catalyzing the physiologically irreversible decarboxylation of various 2-oxoacid substrates to their corresponding acyl-CoA derivatives, NADH and CO2. PDHc deficiency is a metabolic disorder commonly associated with lactic acidosis, progressive neurological and neuromuscular degeneration that vary with age and gender. In this review, we aim to discuss the relationship between occurrence of epilepsy and PDHc deficiency associated with the pyruvate dehydrogenase complex (E1α subunit (PDHA1) and E1β subunit (PDHB)) and PDH phosphatase (PDP) deficiency. PDHc plays a crucial role in the aerobic carbohydrate metabolism and regulates the use of carbohydrate as the source of oxidative energy. In severe PDHc deficiency, the energy deficit impairs brain development in utero resulting in physiological and structural changes in the brain that contributes to the subsequent onset of epileptogenesis. Epileptogenesis in PDHc deficiency is linked to energy failure and abnormal neurotransmitter metabolism that progressively alters neuronal excitability. This metabolic blockage might be restricted via inclusion of ketogenic diet that is broken up by β-oxidation and directly converting it to acetyl-CoA, and thereby improving the patient's health condition. Genetic counseling is essential as PDHA1 deficiency is X-linked. The demonstration of the X-chromosome localization of PDHA1 resolved a number of questions concerning the variable phenotype displayed by patients with E1 deficiency. Most patients show a broad range of neurological abnormalities, with the severity showing some dependence on the nature of the mutation in the Elα gene, while PDHB and PDH phosphatase (PDP) deficiencies are of autosomal recessive inheritance. However, in females, the disorder is further complicated by the pattern of X-chromosome inactivation, i.e., unfavorable lyonization. Furthermore research should focus on epileptogenic animal models; this might pave a new way toward identification of the pathophysiology of this challenging disorder. "	"Detection of Selection Signatures on the X Chromosome in Three Sheep Breeds. Artificial selection has played a critical role in animal breeding. Detection of artificial selection footprints in genomic regions can provide insights for understanding the function of specific phenotypic traits and better guide animal breeding. To more fully understand the relationship between genomic composition and phenotypic diversity arising from breed development, a genome-wide scan was conducted using an OvineSNP50 BeadChip and integrated haplotype score and fixation index analyses to detect selection signatures on the X chromosome in three sheep breeds. We identified 49, 34, and 55 candidate selection regions with lengths of 27.49, 16.47, and 25.42 Mb in German Mutton, Dorper, and Sunit sheep, respectively. Bioinformatics analysis showed that some of the genes in these regions with selection signatures, such as BMP15, were relevant to reproduction. We also identified some selection regions harboring genes that had human orthologs, including BKT, CENPI, GUCY2F, MSN, PCDH11X, PLP1, VSIG4, PAK3, WAS, PCDH19, PDHA1, and SRPX2. The VSIG4 and PCDH11X genes are associated with the immune system and disease, PDHA1 is associated with biosynthetic related pathways, and PCDH19 is expressed in the nervous system and skin. These genes may be useful as candidate genes for molecular breeding."	"The oncoprotein HBXIP promotes glucose metabolism reprogramming via downregulating SCO2 and PDHA1 in breast cancer. The glucose metabolism reprogramming is a hallmark of cancer. The oncoprotein hepatitis B X-interacting protein (HBXIP) functions in the development of breast cancer. In this study, we supposed that HBXIP might be involved in the glucose metabolism reprogramming in breast cancer. We showed that HBXIP led to increases in generation of intracellular glucose and lactate, as well as decreases in generation of reactive oxygen species. Expression of synthesis of cytochrome c oxidase 2 (SCO2) and pyruvate dehydrogenase alpha 1 (PDHA1), two factors of metabolic switch from oxidative phosphorylation to aerobic glycolysis, was suppressed by HBXIP. In addition, miR-183/182 and miR-96 directly inhibited the expression of SCO2 and PDHA1 through targeting their mRNA coding sequences (CDSs), respectively. Interestingly, HBXIP elevated the miR-183/96/182 cluster expression through hypoxia-inducible factor 1α (HIF1α). The stability of HIF1α was enhanced by HBXIP through disassociating interaction of von Hippel-Lindau protein (pVHL) with HIF1α. Moreover, miR-183 increased the levels of HIF1α protein through directly targeting CDS of VHL mRNA, forming a feedback loop of HIF1α/miR-183/pVHL/HIF1α. In function, HBXIP-elevated miR-183/96/182 cluster enhanced the glucose metabolism reprogramming in vitro. HBXIP-triggered glucose metabolism reprogramming promoted the growth of breast cancer in vivo. Thus, we conclude that the oncoprotein HBXIP enhances glucose metabolism reprogramming through suppressing SCO2 and PDHA1 in breast cancer. "	"[Identification of a novel pathogenic mutation in PDHA1 gene for pyruvate dehydrogenase complex deficiency]. To study the molecular genetic mechanism and genetic diagnosis of pyruvate dehydrogenase complex deficiency (PHD), and to provide a basis for genetic counseling and prenatal genetic diagnosis of PHD. Polymerase chain reaction (PCR) was performed to amplify the 11 exons and exon junction of the PDHA1 gene from a child who was diagnosed with PHD based on clinical characteristics and laboratory examination results. The PCR products were sequenced to determine the mutation. An analysis of amino acid conservation and prediction of protein secondary and tertiary structure were performed using bioinformatic approaches to identify the pathogenicity of the novel mutation. One novel duplication mutation, c.1111_1158dup48bp, was found in the exon 11 of the PDHA1 gene of the patient. No c.1111_1158dup48bp mutation was detected in the sequencing results from 50 normal controls. The results of protein secondary and tertiary structure prediction showed that the novel mutation c.1111 _1158dup48bp led to the duplication of 16 amino acids residues, serine371 to phenylalanine386, which induced a substantial change in protein secondary and tertiary structure. The conformational change was not detected in the normal controls. The novel duplication mutation c.1111_1158dup48bp in the PDHA1 gene is not due to gene polymorphisms but a possible novel pathogenic mutation for PHD."	"Metabolic plasticity maintains proliferation in pyruvate dehydrogenase deficient cells. Pyruvate dehydrogenase (PDH) occupies a central node of intermediary metabolism, converting pyruvate to acetyl-CoA, thus committing carbon derived from glucose to an aerobic fate rather than an anaerobic one. Rapidly proliferating tissues, including human tumors, use PDH to generate energy and macromolecular precursors. However, evidence supports the benefits of constraining maximal PDH activity under certain contexts, including hypoxia and oncogene-induced cell growth. Although PDH is one of the most widely studied enzyme complexes in mammals, its requirement for cell growth is unknown. In this study, we directly addressed whether PDH is required for mammalian cells to proliferate. We genetically suppressed expression of the PDHA1 gene encoding an essential subunit of the PDH complex and characterized the effects on intermediary metabolism and cell proliferation using a combination of stable isotope tracing and growth assays. Surprisingly, rapidly dividing cells tolerated loss of PDH activity without major effects on proliferative rates in complete medium. PDH suppression increased reliance on extracellular lipids, and in some cell lines, reducing lipid availability uncovered a modest growth defect that could be completely reversed by providing exogenous-free fatty acids. PDH suppression also shifted the source of lipogenic acetyl-CoA from glucose to glutamine, and this compensatory pathway required a net reductive isocitrate dehydrogenase (IDH) flux to produce a source of glutamine-derived acetyl-CoA for fatty acids. By deleting the cytosolic isoform of IDH (IDH1), the enhanced contribution of glutamine to the lipogenic acetyl-CoA pool during PDHA1 suppression was eliminated, and growth was modestly suppressed. Although PDH suppression substantially alters central carbon metabolism, the data indicate that rapid cell proliferation occurs independently of PDH activity. Our findings reveal that this central enzyme is essentially dispensable for growth and proliferation of both primary cells and established cell lines. We also identify the compensatory mechanisms that are activated under PDH deficiency, namely scavenging of extracellular lipids and lipogenic acetyl-CoA production from reductive glutamine metabolism through IDH1."	"[Comparative analysis of the role of CD4(+) and CD8(+) T cells in severe asthma development]. The role of CD8^(+) T cells in asthma has not been fully discussed. The mechanisms of CD4^(+) and CD8^(+) cells in severe asthma (SA) development were compared. The microarray data (GSE31773) was downloaded from the Gene Expression Omnibus (GEO) database, including 20 samples of CD4^(+) and CD8^(+) T cells, which were collected from 8 health controls (HC), 4 non-severe asthma (NSA) and 8 SA patients. DEGs of CD4^(+) and CD8^(+) T cells in the HC vs. NSA and HC vs. SA groups were identified using the limma package in R. GO and pathway enrichment analysis of the common DEGs between the two groups were analyzed using DAVID. The interactive network of DEGs and significant modules were further explored. In CD4^(+) cells, there were 168 DEGs in HC vs. NSA group and 685 DEGs in HC vs. SA group, while for CD8^(+) T cells there were 719 DEGs in the HC vs. NSA groups and 1255 DEGs in the HC vs. SA groups. Besides, 80 common DEGs from CD4^(+) samples were enriched in the MAPKKK cascade and molecular metabolism, and 385 common DEGs of CD8^(+) T cells were significantly related with cell apoptosis and transformation. Moreover, two significant modules of DEGs in CD4^(+) were found to be involved with MPO and BPI. One module of CD8^(+) T cells containing PDHA1 and MRPL42 was identified to be related with glycolysis. In conclusion, MPO and BPI in CD4^(+), and PDHA1 and MRPL42 in CD8^(+) T cells might be used as specific biomarkers of SA progression. Therapy targeting the functions of CD4^(+) and CD8^(+) T cells may provide a novel perspective for SA treatment. "	"Effects of downregulating GLIS1 transcript on preimplantation development and gene expression of bovine embryos. Krüppel-like protein Gli-similar 1 (GLIS1) is known as a direct reprogramming factor for the generation of induced pluripotent stem cells. The objective of this study was to investigate the role of GLIS1 in the preimplantation development of bovine embryos. GLIS1 transcripts in in vitro-matured oocytes and 1-cell to 4-cell stage embryos were detected, but they were either absent or at trace levels at the 8-cell to blastocyst stages. We attempted GLIS1 downregulation of bovine early embryos by RNA interference and evaluated developmental competency and gene transcripts, which are involved in zygotic gene activation (ZGA) in GLIS1-downregulated embryos. Injection of specific siRNA resulted in a distinct decrease in GLIS1 transcript in bovine embryos at the 4-cell stage. Although the bovine embryos injected with GLIS1-siRNA could develop to the 16-cell stage, these embryos had difficulty in developing beyond the 32-cell stage. Gene transcripts of PDHA1 and HSPA8, which are transcribed after ZGA, showed lower level in GLIS1 downregulated embryos. It is possible that GLIS1-downregulated embryos fail to initiate ZGA. Our results indicated that GLIS1 is an important factor for the preimplantation development of bovine embryos. "	"Severe encephalopathy associated to pyruvate dehydrogenase mutations and unbalanced coenzyme Q10 content. Coenzyme Q10 (CoQ10) deficiency is associated to a variety of clinical phenotypes including neuromuscular and nephrotic disorders. We report two unrelated boys presenting encephalopathy, ataxia, and lactic acidosis, who died with necrotic lesions in different areas of brain. Levels of CoQ10 and complex II+III activity were increased in both skeletal muscle and fibroblasts, but it was a consequence of higher mitochondria mass measured as citrate synthase. In fibroblasts, oxygen consumption was also increased, whereas steady state ATP levels were decreased. Antioxidant enzymes such as NQO1 and MnSOD and mitochondrial marker VDAC were overexpressed. Mitochondria recycling markers Fis1 and mitofusin, and mtDNA regulatory Tfam were reduced. Exome sequencing showed mutations in PDHA1 in the first patient and in PDHB in the second. These genes encode subunits of pyruvate dehydrogenase complex (PDH) that could explain the compensatory increase of CoQ10 and a defect of mitochondrial homeostasis. These two cases describe, for the first time, a mitochondrial disease caused by PDH defects associated with unbalanced of both CoQ10 content and mitochondria homeostasis, which severely affects the brain. Both CoQ10 and mitochondria homeostasis appears as new markers for PDH associated mitochondrial disorders. "	"Pyruvate dehydrogenase deficiency presenting as isolated paroxysmal exercise induced dystonia successfully reversed with thiamine supplementation. Case report and mini-review. Pyruvate dehydrogenase (PDH) deficiency is a disorder of energy metabolism with variable clinical presentations, ranging from severe infantile lactic acidosis to milder chronic neurological disorders. The spectrum of clinical manifestations is continuously expanding. We report on a 19-year-old intelligent female with PDH deficiency caused by a Leu216Ser mutation in PDHA1. She presented with recurrent hemidystonic attacks, triggered by prolonged walking or running, as the unique clinical manifestation that manifested since childhood. Laboratory workup and neuroimages were initially normal but bilateral globus pallidum involvement appeared later on brain MRI. Dystonia completely remitted after high doses of thiamine, remaining free of symptoms after 3 years of follow up. We reviewed the literature for similar observations. Dystonia precipitated by exercise may be the only symptom of a PDH deficiency, and the hallmark of the disease as high serum lactate or bilateral striatal necrosis at neuroimaging may be absent. A high index of suspicion and follow up is necessary for diagnosis. The clinical presentation of this patient meets the criteria for a Paroxysmal Exercise induced Dystonia, leading us to add this entity as another potential etiology for this type of paroxysmal dyskinesia, which is besides a treatable condition that responds to thiamine supplementation."	"Differing roles of pyruvate dehydrogenase kinases during mouse oocyte maturation. Pyruvate dehydrogenase kinases (PDKs) modulate energy homeostasis in multiple tissues and cell types, under various nutrient conditions, through phosphorylation of the α subunit (PDHE1α, also known as PDHA1) of the pyruvate dehydrogenase (PDH) complex. However, the roles of PDKs in meiotic maturation are currently unknown. Here, by undertaking knockdown and overexpression analysis of PDK paralogs (PDK1-PDK4) in mouse oocytes, we established the site-specificity of PDKs towards the phosphorylation of three serine residues (Ser232, Ser293 and Ser300) on PDHE1α. We found that PDK3-mediated phosphorylation of Ser293-PDHE1α results in disruption of meiotic spindle morphology and chromosome alignment and decreased total ATP levels, probably through inhibition of PDH activity. Unexpectedly, we discovered that PDK1 and PDK2 promote meiotic maturation, as their knockdown disturbs the assembly of the meiotic apparatus, without significantly altering ATP content. Moreover, phosphorylation of Ser232-PDHE1α was demonstrated to mediate PDK1 and PDK2 action in meiotic maturation, possibly through a mechanism that is distinct from PDH inactivation. These findings reveal that there are divergent roles of PDKs during oocyte maturation and indicate a new mechanism controlling meiotic structure. "	"The RUNX2 Transcription Factor Negatively Regulates SIRT6 Expression to Alter Glucose Metabolism in Breast Cancer Cells. Activation of genes promoting aerobic glycolysis and suppression of mitochondrial oxidative phosphorylation is one of the hallmarks of cancer. The RUNX2 transcription factor mediates breast cancer (BC) metastasis to bone and is regulated by glucose availability. But, the mechanisms by which it regulates glucose metabolism and promotes an oncogenic phenotype are not known. RUNX2 expression in luminal BC cells correlated with lower estrogen receptor-α (ERα) levels, anchorage-independent growth, expression of glycolytic genes, increased glucose uptake, and sensitivity to glucose starvation, but not to inhibitors of oxidative phosphorylation. Conversely, RUNX2 knockdown in triple-negative BC cells inhibited mammosphere formation and glucose dependence. RUNX2 knockdown resulted in lower LDHA, HK2, and GLUT1 glycolytic gene expression, but upregulation of pyruvate dehydrogenase-A1 (PDHA1) mRNA and enzymatic activity, which was consistent with lower glycolytic potential. The NAD-dependent histone deacetylase, SIRT6, a known tumor suppressor, was a critical regulator of these RUNX2-mediated metabolic changes. RUNX2 expression resulted in elevated pAkt, HK2, and PDHK1 glycolytic protein levels that were reduced by ectopic expression of SIRT6. RUNX2 also repressed mitochondrial oxygen consumption rates (OCR), a measure of oxidative phosphorylation (respiration). Overexpression of SIRT6 increased respiration in RUNX2-positive cells, but knockdown of SIRT6 in cells expressing low RUNX2 decreased respiration. RUNX2 repressed SIRT6 expression at both the transcriptional and post-translational levels and endogenous SIRT6 expression was lower in malignant BC tissues or cell lines that expressed high levels of RUNX2. These results support a hypothesis whereby RUNX2-mediated repression of the SIRT6 tumor suppressor regulates metabolic pathways that promote BC progression."	"Cerebellar transcriptional alterations with Purkinje cell dysfunction and loss in mice lacking PGC-1α. Alterations in the expression and activity of the transcriptional coactivator peroxisome proliferator-activated receptor γ coactivator-1α (ppargc1a or PGC-1α) have been reported in multiple movement disorders, yet it is unclear how a lack of PGC-1α impacts transcription and function of the cerebellum, a region with high PGC-1α expression. We show here that mice lacking PGC-1α exhibit ataxia in addition to the previously described deficits in motor coordination. Using q-RT-PCR in cerebellar homogenates from PGC-1α(-/-) mice, we measured expression of 37 microarray-identified transcripts upregulated by PGC-1α in SH-SY5Y neuroblastoma cells with neuroanatomical overlap with PGC-1α or parvalbumin (PV), a calcium buffer highly expressed by Purkinje cells. We found significant reductions in transcripts with synaptic (complexin1, Cplx1; Pacsin2), structural (neurofilament heavy chain, Nefh), and metabolic (isocitrate dehydrogenase 3a, Idh3a; neutral cholesterol ester hydrolase 1, Nceh1; pyruvate dehydrogenase alpha 1, Pdha1; phytanoyl-CoA hydroxylase, Phyh; ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1, Uqcrfs1) functions. Using conditional deletion of PGC-1α in PV-positive neurons, we determined that 50% of PGC-1α expression and a reduction in a subset of these transcripts could be explained by its concentration in PV-positive neuronal populations in the cerbellum. To determine whether there were functional consequences associated with these changes, we conducted stereological counts and spike rate analysis in Purkinje cells, a cell type rich in PV, from PGC-1α(-/-) mice. We observed a significant loss of Purkinje cells by 6 weeks of age, and the remaining Purkinje cells exhibited a 50% reduction in spike rate. Together, these data highlight the complexity of PGC-1α's actions in the central nervous system and suggest that dysfunction in multiple cell types contribute to motor deficits in the context of PGC-1α deficiency. "	"[Clinical features of pyruvate dehydrogenase complex deficiency and gene testing in one case]. To analyze the clinical characteristics and genetype of one children who had been diagnosed with pyruvate dehydrogenase complex deficiency. Comprehensive analyses of this case were performed, including clinical symptoms, signs, biochemical examinations and therapeutic effects. The eleven exons and splicing areas of PDHA1 were amplified with genomic DNA from whole blood. And variations were investigated by sequencing the PCR product. The patient was diagnosed with pyruvate dehydrogenase complex deficiency by sequence analysis of PDHA1 gene. The patient was a 2 years and 4 monthes old boy. He presented with muscle hypotonia and weakness for one year, and experienced recurrent episodes of unstable head control, unable to sit by himself or stand without support, with persistently hyperlactacidemia. Metabolic testing revealed blood lactate 5.37 mmol/L, pyruvate 0.44 mmol/L, and lactate/pyruvate ratio was 12.23. MRI of the brain showed hyperintense signals on the T2 and T2 Flair weighted images in the basal ganglia bilaterally. Sequence analysis of PDHA1 gene showed a G&gt;A point mutation at nucleotide 778, resulting in a substitution of glutarnine for arginine at position 263 (R263Q). And the diagnosis of pyruvate dehydrogenase complex deficiency was identified. By giving the therapy with ketogenic diet, vitamin B(1), coenzyme Q(10) and L-carnitine , the boy was in a stable condition. The severity and the clinical phenotypes of pyruvate dehydrogenase complex deficiency varied. Sequence analysis of PDHA1 gene revealed a 788G&gt;A (R263Q) mutation. Patients who presented with unexplained muscle hypotonia, weakness and hyperlactacidemia could be diveded by gene analysis. And appropriate treatment can improve the quality of life."	"The spectrum of pyruvate oxidation defects in the diagnosis of mitochondrial disorders. Pyruvate oxidation defects (PODs) are among the most frequent causes of deficiencies in the mitochondrial energy metabolism and represent a substantial subset of classical mitochondrial diseases. PODs are not only caused by deficiency of subunits of the pyruvate dehydrogenase complex (PDHC) but also by various disorders recently described in the whole pyruvate oxidation route including cofactors, regulation of PDHC and the mitochondrial pyruvate carrier. Our own patients from 2000 to July 2014 and patients identified by a systematic survey of the literature from 1970 to July 2014 with a pyruvate oxidation disorder and a genetically proven defect were included in the study (n=628). Of these defects 74.2% (n=466) belong to PDHC subunits, 24.5% (n=154) to cofactors, 0.5% (n=3) to PDHC regulation and 0.8% (n=5) to mitochondrial pyruvate import. PODs are underestimated in the field of mitochondrial diseases because not all diagnostic centres include biochemical investigations of PDHC in their routine analysis. Cofactor and transport defects can be missed, if pyruvate oxidation is not measured in intact mitochondria routinely. Furthermore deficiency of the X-chromosomal PDHA1 can be biochemically missed depending on the X-inactivation pattern. This is reflected by an increasing number of patients diagnosed recently by genetic high throughput screening approaches. PDHC deficiency including regulation and import affect mainly the glucose dependent central and peripheral nervous system and skeletal muscle. PODs with combined enzyme defects affect also other organs like heart, lung and liver. The spectrum of clinical presentation of PODs is still expanding. PODs are a therapeutically interesting group of mitochondrial diseases since some can be bypassed by ketogenic diet or treated by cofactor supplementation. PDHC kinase inhibition, chaperone therapy and PGC1α stimulation is still a matter of further investigations. "	"Estrogen-related receptor-α coordinates transcriptional programs essential for exercise tolerance and muscle fitness. Muscle fitness is an important determinant of health and disease. However, the molecular mechanisms involved in the coordinate regulation of the metabolic and structural determinants of muscle endurance are still poorly characterized. Herein, we demonstrate that estrogen-related receptor α (ERRα, NR3B1) is essential for skeletal muscle fitness. Notably, we show that ERRα-null animals are hypoactive and that genetic or therapeutic disruption of ERRα in mice results in reduced exercise tolerance. Mice lacking ERRα also exhibited lactatemia at exhaustion. Gene expression profiling demonstrates that ERRα plays a key role in various metabolic processes important for muscle function including energy substrate transport and use (Ldhd, Slc16a1, Hk2, and Glul), the tricarboxylic acid cycle (Cycs, and Idh3g), and oxidative metabolism (Pdha1, and Uqcrq). Metabolomics studies revealed impairment in replenishment of several amino acids (eg, glutamine) during recovery to exercise. Moreover, loss of ERRα was found to alter the expression of genes involved in oxidative stress response (Hmox1), maintenance of muscle fiber integrity (Trim63, and Hspa1b), and muscle plasticity and neovascularization (Vegfa). Taken together, our study shows that ERRα plays a key role in directing transcriptional programs required for optimal mitochondrial oxidative potential and muscle fitness, suggesting that modulation of ERRα activity could be used to manage metabolic myopathies and/or promote the adaptive response to physical exercise. "	"Phenylbutyrate increases pyruvate dehydrogenase complex activity in cells harboring a variety of defects. Deficiency of pyruvate dehydrogenase complex (PDHC) is the most common genetic disorder leading to lactic acidosis. PDHC deficiency is genetically heterogenous and most patients have defects in the X-linked E1-α gene but defects in the other components of the complex encoded by PDHB, PDHX, DLAT, DLD genes or in the regulatory enzyme encoded by PDP1 have also been found. Phenylbutyrate enhances PDHC enzymatic activity in vitro and in vivo by increasing the proportion of unphosphorylated enzyme through inhibition of pyruvate dehydrogenase kinases and thus, has potential for therapy of patients with PDHC deficiency. In the present study, we investigated response to phenylbutyrate of multiple cell lines harboring all known gene defects resulting in PDHC deficiency. Fibroblasts of patients with PDHC deficiency were studied for their enzyme activity at baseline and following phenylbutyrate incubation. Drug responses were correlated with genotypes and protein levels by Western blotting. Large deletions affecting PDHA1 that result in lack of detectable protein were unresponsive to phenylbutyrate, whereas increased PDHC activity was detected in most fibroblasts harboring PDHA1 missense mutations. Mutations affecting the R349-α residue were directed to proteasome degradation and were consistently unresponsive to short-time drug incubation but longer incubation resulted in increased levels of enzyme activity and protein that may be due to an additional effect of phenylbutyrate as a molecular chaperone. PDHC enzyme activity was enhanced by phenylbutyrate in cells harboring missense mutations in PDHB, PDHX, DLAT, DLD, and PDP1 genes. In the prospect of a clinical trial, the results of this study may allow prediction of in vivo response in patients with PDHC deficiency harboring a wide spectrum of molecular defects."	"Somatic mosaicism for a novel PDHA1 mutation in a male with severe pyruvate dehydrogenase complex deficiency. Pyruvate dehydrogenase complex (PDC) deficiencies are mostly due to mutations in the X-linked PDHA1 gene. Males with hemizygous PDHA1 mutations are clinically more severely affected, while those with mosaic PDHA1 mutations may manifest milder phenotypes. We report a patient harboring a novel, mosaic missense PDHA1 mutation, c.523G &gt; A (p.A175T), with a severe clinical presentation of congenital microcephaly, significant brain abnormalities, persistent seizures, profound developmental delay, and failure to thrive. We review published cases of PDHA1 mosaicism."	"SIRT3 deacetylates and increases pyruvate dehydrogenase activity in cancer cells. Pyruvate dehydrogenase E1α (PDHA1) is the first component enzyme of the pyruvate dehydrogenase (PDH) complex that transforms pyruvate, via pyruvate decarboxylation, into acetyl-CoA that is subsequently used by both the citric acid cycle and oxidative phosphorylation to generate ATP. As such, PDH links glycolysis and oxidative phosphorylation in normal as well as cancer cells. Herein we report that SIRT3 interacts with PDHA1 and directs its enzymatic activity via changes in protein acetylation. SIRT3 deacetylates PDHA1 lysine 321 (K321), and a PDHA1 mutant mimicking a deacetylated lysine (PDHA1(K321R)) increases PDH activity, compared to the K321 acetylation mimic (PDHA1(K321Q)) or wild-type PDHA1. Finally, PDHA1(K321Q) exhibited a more transformed in vitro cellular phenotype compared to PDHA1(K321R). These results suggest that the acetylation of PDHA1 provides another layer of enzymatic regulation, in addition to phosphorylation, involving a reversible acetyllysine, suggesting that the acetylome, as well as the kinome, links glycolysis to respiration. "	"Tyr-301 phosphorylation inhibits pyruvate dehydrogenase by blocking substrate binding and promotes the Warburg effect. The mitochondrial pyruvate dehydrogenase complex (PDC) plays a crucial role in regulation of glucose homoeostasis in mammalian cells. PDC flux depends on catalytic activity of the most important enzyme component pyruvate dehydrogenase (PDH). PDH kinase inactivates PDC by phosphorylating PDH at specific serine residues, including Ser-293, whereas dephosphorylation of PDH by PDH phosphatase restores PDC activity. The current understanding suggests that Ser-293 phosphorylation of PDH impedes active site accessibility to its substrate pyruvate. Here, we report that phosphorylation of a tyrosine residue Tyr-301 also inhibits PDH α 1 (PDHA1) by blocking pyruvate binding through a novel mechanism in addition to Ser-293 phosphorylation. In addition, we found that multiple oncogenic tyrosine kinases directly phosphorylate PDHA1 at Tyr-301, and Tyr-301 phosphorylation of PDHA1 is common in EGF-stimulated cells as well as diverse human cancer cells and primary leukemia cells from human patients. Moreover, expression of a phosphorylation-deficient PDHA1 Y301F mutant in cancer cells resulted in increased oxidative phosphorylation, decreased cell proliferation under hypoxia, and reduced tumor growth in mice. Together, our findings suggest that phosphorylation at distinct serine and tyrosine residues inhibits PDHA1 through distinct mechanisms to impact active site accessibility, which act in concert to regulate PDC activity and promote the Warburg effect. "	"Tyr-94 phosphorylation inhibits pyruvate dehydrogenase phosphatase 1 and promotes tumor growth. Many cancer cells rely more on aerobic glycolysis (the Warburg effect) than mitochondrial oxidative phosphorylation and catabolize glucose at a high rate. Such a metabolic switch is suggested to be due in part to functional attenuation of mitochondria in cancer cells. However, how oncogenic signals attenuate mitochondrial function and promote the switch to glycolysis remains unclear. We previously reported that tyrosine phosphorylation activates and inhibits mitochondrial pyruvate dehydrogenase kinase (PDK) and phosphatase (PDP), respectively, leading to enhanced inhibitory serine phosphorylation of pyruvate dehydrogenase (PDH) and consequently inhibition of pyruvate dehydrogenase complex (PDC) in cancer cells. In particular, Tyr-381 phosphorylation of PDP1 dissociates deacetylase SIRT3 and recruits acetyltransferase ACAT1 to PDC, resulting in increased inhibitory lysine acetylation of PDHA1 and PDP1. Here we report that phosphorylation at another tyrosine residue, Tyr-94, inhibits PDP1 by reducing the binding ability of PDP1 to lipoic acid, which is covalently attached to the L2 domain of dihydrolipoyl acetyltransferase (E2) to recruit PDP1 to PDC. We found that multiple oncogenic tyrosine kinases directly phosphorylated PDP1 at Tyr-94, and Tyr-94 phosphorylation of PDP1 was common in diverse human cancer cells and primary leukemia cells from patients. Moreover, expression of a phosphorylation-deficient PDP1 Y94F mutant in cancer cells resulted in increased oxidative phosphorylation, decreased cell proliferation under hypoxia, and reduced tumor growth in mice. Together, our findings suggest that phosphorylation at different tyrosine residues inhibits PDP1 through independent mechanisms, which act in concert to regulate PDC activity and promote the Warburg effect. "	"Nanosilver incurs an adaptive shunt of energy metabolism mode to glycolysis in tumor and nontumor cells. Due to its significant antimicrobial properties, nanosilver (nAg) has been substantially used in a wide spectrum of areas. This has raised the concerns on the detrimental effects on environment and human health. Although numerous studies have documented nAg-mediated toxicity to cells or organisms, little attempt has been made to study the biological impacts of nAg on cells at nontoxic concentrations, namely, the distinct biological effects that can be separated from direct cytotoxicity. Here, we studied nAg-mediated effects on energy metabolism in cells under sublethal exposure. Treatment of nAg at nontoxic concentrations resulted in a decline of ATP synthesis and attenuation of respiratory chain function in nontumor HEK293T cells and tumor cells with differential respiration rate, including HepG2, HeLa, A498, and PC3 cells. Cellular energy homeostasis was switched from oxidative phosphorylation-based aerobic metabolism to anaerobic glycolysis, which is an adaption process to satisfy the energy demand for cell survival. Nanospheres with smaller size showed greater capability to alter cellular energy metabolism than those with larger size or nanoplates. Mechanistic investigation manifested that inhibition of PGC-1α by nAg was, at least partially, accountable for the transition from oxidative phosphorylation to glycolysis. Additionally, altered expression of a few energy metabolism-related genes (such as PFKFB3 and PDHA1) was also involved in the transition process. We further showed nAg-induced depolarization of mitochondrial membrane potential and reduction of respiratory chain complex activity. Together, our combined results uncovered the mechanisms by which nAg induced energy metabolism reprogramming in both tumor and nontumor cells under sublethal dosage. "	"Thiamine-Responsive and Non-responsive Patients with PDHC-E1 Deficiency: A Retrospective Assessment. Pyruvate dehydrogenase complex (PDHC) deficiency is a disorder of energy metabolism that leads to a range of clinical manifestations. We sought to characterise clinical manifestations and biochemical, neuroimaging and molecular findings in thiamine-responsive and nonresponsive PDHC-deficient patients and to identify potential pitfalls in the diagnosis of PDHC deficiency. We retrospectively reviewed all medical records of all PDHC-deficient patients (n = 19; all had PDHA1 gene mutations) and one patient with severe PDHC deficiency secondary to 3-hydroxyisobutyryl-CoA hydrolase deficiency managed at our centre between 1982 and 2012. Responsiveness to thiamine was based on clinical parameters. Seventeen patients received thiamine treatment: eight did not respond, four showed sustained response and the others responded temporarily/questionably. Sustained response was noted at thiamine doses &gt;400 mg/day. Age at presentation was 0-6 and 12-27 months in the nonresponsive (n = 8) and responsive (n = 4) patients, respectively. Corpus callosum abnormalities were noted in 4/8 nonresponsive patients. Basal ganglia involvement (consistent with Leigh disease) was found in four patients (including 2/4 thiamine-responsive patients). Diagnosis through mutation analysis was more sensitive and specific than through enzymatic analysis. We conclude that patients presenting at age &gt;12 months with relapsing ataxia and possibly Leigh syndrome are more likely to be thiamine responsive than those presenting with neonatal lactic acidosis and corpus callosum abnormalities. However, this distinction is equivocal and treatment with thiamine (&gt;400 mg/day) should be commenced on all patients suspected of having PDHC deficiency. Mutation analysis is the preferable first-line diagnostic test to avoid missing thiamine-responsive patients and misdiagnosing patients with secondary PDHC deficiency. Thiamine responsiveness is more likely in patients presenting at age &gt;12 months with relapsing ataxia and possibly Leigh syndrome than in those presenting with neonatal lactic acidosis and corpus callosum abnormalities. Thiamine doses &gt;400 mg/day are required for sustained response. Mutation analysis is more sensitive and specific than enzymatic analysis as a first-line diagnostic test."	"Tyr phosphorylation of PDP1 toggles recruitment between ACAT1 and SIRT3 to regulate the pyruvate dehydrogenase complex. Mitochondrial pyruvate dehydrogenase complex (PDC) is crucial for glucose homeostasis in mammalian cells. The current understanding of PDC regulation involves inhibitory serine phosphorylation of pyruvate dehydrogenase (PDH) by PDH kinase (PDK), whereas dephosphorylation of PDH by PDH phosphatase (PDP) activates PDC. Here, we report that lysine acetylation of PDHA1 and PDP1 is common in epidermal growth factor (EGF)-stimulated cells and diverse human cancer cells. K321 acetylation inhibits PDHA1 by recruiting PDK1, and K202 acetylation inhibits PDP1 by dissociating its substrate PDHA1, both of which are important in promoting glycolysis in cancer cells and consequent tumor growth. Moreover, we identified mitochondrial ACAT1 and SIRT3 as the upstream acetyltransferase and deacetylase, respectively, of PDHA1 and PDP1, while knockdown of ACAT1 attenuates tumor growth. Furthermore, Y381 phosphorylation of PDP1 dissociates SIRT3 and recruits ACAT1 to PDC. Together, hierarchical, distinct posttranslational modifications act in concert to control molecular composition of PDC and contribute to the Warburg effect."	"Increased 8-hydroxy-2'-deoxyguanosine in plasma and decreased mRNA expression of human 8-oxoguanine DNA glycosylase 1, anti-oxidant enzymes, mitochondrial biogenesis-related proteins and glycolytic enzymes in leucocytes in patients with systemic lupus erythematosus. We measured plasma levels of the oxidative DNA damage marker 8-hydroxy-2'-deoxyguanosine (8-OHdG) and leucocyte mRNA expression levels of the genes encoding the 8-OHdG repair enzyme human 8-oxoguanine DNA glycosylase 1 (hOGG1), the anti-oxidant enzymes copper/zinc superoxide dismutase (Cu/ZnSOD), manganese superoxide dismutase (MnSOD), catalase, glutathione peroxidase-1 (GPx-1), GPx-4, glutathione reductase (GR) and glutathione synthetase (GS), the mitochondrial biogenesis-related proteins mtDNA-encoded ND 1 polypeptide (ND1), ND6, ATPase 6, mitochondrial transcription factor A (Tfam), nuclear respiratory factor 1(NRF-1), pyruvate dehydrogenase E1 component alpha subunit (PDHA1), pyruvate dehydrogenase kinase isoenzyme 1 (PDK-1) and hypoxia inducible factor-1α (HIF-1α) and the glycolytic enzymes hexokinase-II (HK-II), glucose 6-phosphate isomerase (GPI), phosphofructokinase (PFK), glyceraldehyde 3-phosphate dehydrogenase (GAPDH) and lactate dehydrogenase A (LDHa). We analysed their relevance to oxidative damage in 85 systemic lupus erythematosus (SLE) patients, four complicated SLE patients undergoing rituximab treatment and 45 healthy individuals. SLE patients had higher plasma 8-OHdG levels (P &lt; 0·01) but lower leucocyte expression of the genes encoding hOGG1(P &lt; 0·01), anti-oxidant enzymes (P &lt; 0·05), mitochondrial biogenesis-related proteins (P &lt; 0·05) and glycolytic enzymes (P &lt; 0·05) than healthy individuals. The increase in plasma 8-OHdG was correlated positively with the elevation of leucocyte expression of the genes encoding hOGG1 (P &lt; 0·05), anti-oxidant enzymes (P &lt; 0·05), several mitochondrial biogenesis-related proteins (P &lt; 0·05) and glycolytic enzymes (P &lt; 0·05) in lupus patients. The patients, whose leucocyte mtDNA harboured D310 heteroplasmy, exhibited a positive correlation between the mtDNA copy number and expression of ND1, ND6 and ATPase 6 (P &lt; 0·05) and a negative correlation between mtDNA copy number and systemic lupus erythematosus disease activity index (SLEDAI) (P &lt; 0·05), as well as plasma 8-OHdG (P &lt; 0·05). In particular, four complicated SLE patients with increased expression of the genes encoding the anti-oxidant enzymes, GAPDH, Tfam and PDHA1, experienced better therapeutic outcomes after rituximab therapy. In conclusion, higher oxidative damage with suboptimal increases in DNA repair, anti-oxidant capacity, mitochondrial biogenesis and glucose metabolism may be implicated in SLE deterioration, and this impairment might be improved by targeted biological therapy. "	"Enhanced glucose metabolism is preserved in cultured primary myotubes from obese donors in response to exercise training. It was suggested that human cultured primary myotubes retain the metabolic characteristics of their donor in vitro. The aim of the present study was to investigate whether the metabolic responses to endurance training are also conserved in culture. Middle-aged obese subjects completed an 8-week supervised aerobic exercise training program in which vastus lateralis muscle biopsies were collected before and after training. Anthropometric and blood parameters, as well as aerobic capacity, were assessed before and after training. Muscle biopsies were either used for Western blot analysis or digested to harvest myogenic progenitors that were differentiated into myotubes. Glucose oxidation, palmitate oxidation, and glycogen synthesis assays were performed on myotubes before and after training. Gene expression was assessed by real-time quantitative PCR. Our data indicate that in parallel of in vivo improvement of whole-body aerobic capacity and glucose metabolism, biopsy-derived primary myotubes showed similar patterns in vitro. Indeed, glucose oxidation, glycogen synthesis, and inhibition of palmitate oxidation by glucose were enhanced in myotubes after training. This was associated with consistent changes in the expression of metabolism-linked genes such as GLUT1, PDK4, and PDHA1. Interestingly, no difference in myogenic differentiation capacity was observed before and after training. Aerobic exercise training is associated with metabolic adaptations in vivo that are preserved in human cultured primary myotubes. It can be hypothesized that skeletal muscle microenvironmental changes induced by endurance training lead to metabolic imprinting on myogenic progenitor cells."	"Cerebral Developmental Abnormalities in a Mouse with Systemic Pyruvate Dehydrogenase Deficiency. Pyruvate dehydrogenase (PDH) complex (PDC) deficiency is an inborn error of pyruvate metabolism causing a variety of neurologic manifestations. Systematic analyses of development of affected brain structures and the cellular processes responsible for their impairment have not been performed due to the lack of an animal model for PDC deficiency. In the present study we investigated a murine model of systemic PDC deficiency by interrupting the X-linked Pdha1 gene encoding the α subunit of PDH to study its role on brain development and behavioral studies. Male embryos died prenatally but heterozygous females were born. PDC activity was reduced in the brain and other tissues in female progeny compared to age-matched control females. Immunohistochemical analysis of several brain regions showed that approximately 40% of cells were PDH(-). The oxidation of glucose to CO2 and incorporation of glucose-carbon into fatty acids were reduced in brain slices from 15 day-old PDC-deficient females. Histological analyses showed alterations in several structures in white and gray matters in 35 day-old PDC-deficient females. Reduction in total cell number and reduced dendritic arbors in Purkinje neurons were observed in PDC-deficient females. Furthermore, cell proliferation, migration and differentiation into neurons by newly generated cells were reduced in the affected females during pre- and postnatal periods. PDC-deficient mice had normal locomotor activity in a novel environment but displayed decreased startle responses to loud noises and there was evidence of abnormal pre-pulse inhibition of the startle reflex. The results show that a reduction in glucose metabolism resulting in deficit in energy production and fatty acid biosynthesis impairs cellular differentiation and brain development in PDC-deficient mice."	"Antisense directed against PS-1 gene decreases brain oxidative markers in aged senescence accelerated mice (SAMP8) and reverses learning and memory impairment: a proteomics study. Amyloid β-peptide (Aβ) plays a central role in the pathophysiology of Alzheimer's disease (AD) through the induction of oxidative stress. This peptide is produced by proteolytic cleavage of amyloid precursor protein (APP) by the action of β- and γ-secretases. Previous studies demonstrated that reduction of Aβ, using an antisense oligonucleotide (AO) directed against the Aβ region of APP, reduced oxidative stress-mediated damage and prevented or reverted cognitive deficits in senescence-accelerated prone mice (SAMP8), a useful animal model for investigating the events related to Aβ pathology and possibly to the early phase of AD. In the current study, aged SAMP8 were treated by AO directed against PS-1, a component of the γ-secretase complex, and tested for learning and memory in T-maze foot shock avoidance and novel object recognition. Brain tissue was collected to identify the decrease of oxidative stress and to evaluate the proteins that are differently expressed and oxidized after the reduction in free radical levels induced by Aβ. We used both expression proteomics and redox proteomics approaches. In brain of AO-treated mice a decrease of oxidative stress markers was found, and the proteins identified by proteomics as expressed differently or nitrated are involved in processes known to be impaired in AD. Our results suggest that the treatment with AO directed against PS-1 in old SAMP8 mice reverses learning and memory deficits and reduces Aβ-mediated oxidative stress with restoration to the normal condition and identifies possible pharmacological targets to combat this devastating dementing disease. "	"Mild phenotype in a male with pyruvate dehydrogenase complex deficiency associated with novel hemizygous in-frame duplication of the E1α subunit gene (PDHA1). Pyruvate dehydrogenase complex (PDHC) deficiency is an inborn error of metabolism that occurs most commonly due to mutations in the X-linked E1α subunit gene (PDHA1). We report a novel duplication of PDHA1 associated with a mild phenotype in a 15-year-old boy who was diagnosed with PDHC deficiency at 4 years of age following a history of seizures and lactic acidosis. The novel c.1087_1119 mutation in exon 11 resulted in an in-frame duplication of 11 amino acids. Measurements of PDHC activity in cultured skin fibroblasts were low, corresponding to 18.6 and 11.6% of the mean with respect to prior controls, whereas the E1 PDH component was absent. He has borderline intellectual functioning and maintains normal lactate levels on a ketogenic diet in between relapses due to illness. Review of the literature reveals wide variation of clinical phenotype in patients with mutations of the E1α subunit gene (PDHA1). There appears to be a higher incidence of normal or borderline intellectual ability in individuals who have insertions or deletions that are in-frame versus those that are out-of-frame. Furthermore, there is no correlation between mean residual PDH activity and phenotype in these patients. "	"Pemphigus vulgaris autoantibody profiling by proteomic technique. Pemphigus vulgaris (PV) is a mucocutaneous blistering disease characterized by IgG autoantibodies against the stratified squamous epithelium. Current understanding of PV pathophysiology does not explain the mechanism of acantholysis in patients lacking desmoglein antibodies, which justifies a search for novel targets of pemphigus autoimmunity. We tested 264 pemphigus and 138 normal control sera on the multiplexed protein array platform containing 701 human genes encompassing many known keratinocyte cell-surface molecules and members of protein families targeted by organ-non-specific PV antibodies. The top 10 antigens recognized by the majority of test patients' sera were proteins encoded by the DSC1, DSC3, ATP2C1, PKP3, CHRM3, COL21A1, ANXA8L1, CD88 and CHRNE genes. The most common combinations of target antigens included at least one of the adhesion molecules DSC1, DSC3 or PKP3 and/or the acetylcholine receptor CHRM3 or CHRNE with or without the MHC class II antigen DRA. To identify the PV antibodies most specific to the disease process, we sorted the data based on the ratio of patient to control frequencies of antigen recognition. The frequency of antigen recognition by patients that exceeded that of control by 10 and more times were the molecules encoded by the CD33, GP1BA, CHRND, SLC36A4, CD1B, CD32, CDH8, CDH9, PMP22 and HLA-E genes as well as mitochondrial proteins encoded by the NDUFS1, CYB5B, SOD2, PDHA1 and FH genes. The highest specificity to PV showed combinations of autoantibodies to the calcium pump encoded by ATP2C1 with C5a receptor plus DSC1 or DSC3 or HLA-DRA. The results identified new targets of pemphigus autoimmunity. Novel autoantibody signatures may help explain individual variations in disease severity and treatment response, and serve as sensitive and specific biomarkers for new diagnostic assays in PV patients."	"Spectrum of neurological and survival outcomes in pyruvate dehydrogenase complex (PDC) deficiency: lack of correlation with genotype. Pyruvate dehydrogenase complex (PDC) deficiency is a relatively common mitochondrial disorder that primarily presents with neurological manifestations and lactic acidemia. We analyzed the clinical outcomes and neurological features of 59 consented symptomatic subjects (27 M, 32 F), who were confirmed to have PDC deficiency with defined mutations in one of the genes of PDC (PDHA1, n = 53; PDHB, n = 4; DLAT, n = 2), including 47 different mutations, of which 22 were novel, and for whom clinical records and/or structured interviews were obtained. 39% of these subjects (23/59) have died. Of these, 91% (21/23) died before age 4 years, 61% (14/23) before 1 year, and 43% (10/23) before 3 months. 56% of males died compared with 25% of females. Causes of death included severe lactic acidosis, respiratory failure, and infection. In subjects surviving past 6 months, a broad range of intellectual outcomes was observed. Of 42 subjects whose intellectual abilities were professionally evaluated, 19% had normal or borderline intellectual ability (CQ/IQ ≥ 70), 10% had mild intellectual disability (ID) (CQ/IQ 55-69), 17% had moderate ID (CQ/IQ 40-54), 24% had severe ID (CQ/IQ 25-39) and 33% had profound ID (CQ/IQ&lt;25). Assessment by parents was comparable. Of 10 subjects who reached age 12 years, 9 had had professional IQ assessments, and only 4 had IQs ≥ 70 (only 2 of these 4 had assessments after age 12 years). The average outcome for females was severe-to-profound ID, whereas that of males was mild-to-moderate ID. Of subjects for whom specific neurological data were available, the majority had hypotonia (89%), and hypertonia or mixed hyper-/hypotonia (49%) were common. Seizures (57%), microcephaly (49%), and structural brain abnormalities including ventriculomegaly (67%) and agenesis, dysgenesis, or hypoplasia of the corpus callosum (55%) were common. Leigh syndrome was found in only 35%. Structural brain abnormalities were more common in females, and Leigh syndrome was more common in males. In a subgroup of 16 ambulatory subjects &gt;3.5 years in whom balance was evaluated, ataxia was found in 13. Peripheral neuropathy was documented in 2 cases but not objectively evaluated in most subjects. Outcomes of this population with genetically confirmed PDC deficiency are heterogeneous and not distinctive. Correlations between specific genotypes and outcomes were not established. Although more females survive, related to the prevalence of X-linked PDHA1 mutations, symptomatic surviving females are generally more severely impaired cognitively and have a different pattern of neurological impairment compared to males. Neonatal or infant onset of symptoms was associated with poor outcomes. Males with PDHA1 mutations and low fibroblast PDC activity were less likely to survive beyond infancy. Recurrence rate in siblings of subjects with PDHA1 mutation was less than 5%. Paradoxically, in this retrospective review, potential factors considered possibly relevant to development, such as in vitro PDC activity, specific mutations, use of ketogenic diets, supplements, or medications, were generally not confirmed to be significantly correlated with objective outcomes of survival or neuro-cognitive function. Therefore, the basis of variability of these outcomes remains largely undetermined."	"Mapping an X-linked locus that influences heat-induced febrile seizures in mice. Febrile seizures (FS) are the most common seizure type in children between the age of 6 months and 5 years. Although FS are largely benign, recurrent FS are a major risk factor for developing temporal lobe epilepsy (TLE) later in life. The mechanisms underlying FS are largely unknown; however, family and twin studies indicate that FS susceptibility is under complex genetic control. We have recently developed a phenotypic screen to study the genetics of FS susceptibility in mice. Using this screen in a phenotype-driven genetic strategy we analyzed the C57BL/6J-Chr #(A)/NaJ chromosome substitution strain (CSS) panel. In each CSS line one chromosome of the A/J strain is substituted in a genetically homogeneous C57BL/6J background. The analysis of the CSS panel revealed that A/J chromosomes 1, 2, 6, 10, 13, and X carry at least one quantitative trait locus (QTL) for heat-induced FS susceptibility. The fact that many X-linked genes are highly expressed in the brain and have been implicated in human developmental disorders often presenting with seizures (like fragile X mental retardation) prompted us to map the chromosome X QTL. C57BL/6J mice were mated with C57BL/6J-Chr X(A) /NaJ (CSSX) to generate F(2)-generations-CXBL6 and BL6CX-originating from CSSX or C57BL/6J mothers, respectively. Heat-induced FS were elicited on postnatal day 14 by exposure to a controlled warm airstream of 50°C. The latency to heat-induced FS is our phenotype. This phenotype has previously been validated by video-electroencephalography (EEG) monitoring. After phenotyping and genotyping the F(2)-population, QTL analysis was performed using R/QTL software. QTL analysis revealed a significant peak with an LOD-score of 3.25. The 1-LOD confidence interval (149,886,866-158,836,462 bp) comprises 52 protein coding genes, of which 34 are known to be brain expressed. Two of these brain-expressed genes have previously been linked to X-linked epilepsies, namely Cdkl5 and Pdha1. Our results show that the mouse genetics of X-linked FS susceptibility is complex, and that our heat-induced FS-driven genetic approach is a powerful tool for use in unraveling the complexities of this trait in mice. Fine-mapping and functional studies will be required to further identify the X-linked FS susceptibility genes."	"Pyruvate dehydrogenase complex: mRNA and protein expression patterns of E1α subunit genes in human spermatogenesis. During spermatogenesis, germ cells undergo a complex process of cell differentiation and morphological restructuring, which depends on the coordinated expression of different genes. Some vital examples are those involved in cell energy metabolism, namely the genes encoding the E1α subunit of pyruvate dehydrogenase complex: the somatic PDHA1 (X-linked) and the testis-specific PDHA2 (autosomal). There are no data related to the study at the RNA and protein levels of PDHA genes during human spermatogenesis. The present study aimed to describe the mRNA and protein expression patterns of the human PDHA genes during spermatogenesis. Expression profiles of the PDHA1 and PDHA2 genes were characterized using different human tissues and cells. Diploid and haploid germ cells fractions were obtained from testis tissues. The mRNA profiles were analyzed by quantitative RT-PCR, whereas the protein profiles were evaluated by immunohistochemistry, western blotting and two-dimensional electrophoresis. Expression of the PDHA1 gene was found in all somatic cells, whereas expression of PDHA2 gene was restricted to germ cells. The switch from X-linked to autosomic gene expression occurred in spermatocytes. Data suggest the activation of PDHA2 gene expression is most probably a mechanism to ensure the continued expression of the protein, thus allowing germ cell viability and functionality."	"A 1.1 million base pair X-chromosomal deletion covering the PDHA1 and CDKL5 genes in a female patient with West syndrome and pyruvate oxidation deficiency. Mutations in the X-linked E1α subunit of the pyruvate dehydrogenase complex (PHDC) are the most frequent causes of PDHC deficiency. The clinical picture is heterogeneous depending on residual enzyme activity and X-inactivation. We report on a girl who presented at an age of 3 weeks with muscular hypotonia, vomiting, hyperlactatemia, microcephaly, enlarged ventricles, partial agenesis of the corpus callosum, and seizures. PDHA1 sequencing was normal in DNA from blood. In muscle, normal PDHC activity was measured while substrate oxidation rates revealed moderately diminished pyruvate oxidation. Quantitative PCR analysis revealed hemizygosity of the whole PDHA1 gene. Homozygosity mapping and determination of the breakpoint showed a 1.1 million base pair deletion on the X-chromosome including the CDKL5 and PDHA1 genes. The difficulty in the diagnosis of PDHC deficiency is evident: (1) enzyme activity can be normal depending on the X-inactivation; (2) large deletions can be missed by routine genetic analysis; and (3) only quantification of the PDHA1 gene content revealed the mutation in our patient. We recommend to revisit patients who are clinically suspicious for a mitochondrial disorder especially for hidden PDHA1 mutations, such as large deletions."	"Molecular characterization of 82 patients with pyruvate dehydrogenase complex deficiency. Structural implications of novel amino acid substitutions in E1 protein. Pyruvate dehydrogenase complex (PDHc) deficiencies are an important cause of primary lactic acidosis. Most cases result from mutations in the X-linked gene for the pyruvate dehydrogenase E1α subunit (PDHA1) while a few cases result from mutations in genes for E1β (PDHB), E2 (DLAT), E3 (DLD) and E3BP (PDHX) subunits or PDH-phosphatase (PDP1). To report molecular characterization of 82 PDHc-deficient patients and analyze structural effects of novel missense mutations in PDHA1. PDHA1 variations were investigated first, by exon sequencing using a long range PCR product, gene dosage assay and cDNA analysis. Mutation scanning in PDHX, PDHB, DLAT and DLD cDNAs was further performed in unsolved cases. Novel missense mutations in PDHA1 were located on the tridimensional model of human E1 protein to predict their possible functional consequences. PDHA1 mutations were found in 30 girls and 35 boys. Three large rearrangements, including two contiguous gene deletion syndrome were identified. Novel missense, frameshift and splicing mutations were also delineated and a nonsense mutation in a mosaic male. Mutations p.Glu75Ala, p.Arg88Ser, p.Arg119Trp, p.Gly144Asp, p.Pro217Arg, p.Arg235Gly, p.Tyr243Cys, p.Tyr243Ser, p.Arg245Gly, p.Pro250Leu, p.Gly278Arg, p.Met282Val, p.Gly298Glu in PDHA1 were predicted to impair active site channel conformation or subunit interactions. Six out of the seven patients with PDHB mutations displayed the recurrent p.Met101Val mutation; 9 patients harbored PDHX mutations and one patient DLD mutations. We provide an efficient stepwise strategy for mutation screening in PDHc genes and expand the growing list of PDHA1 mutations analyzed at the structural level."	"Pyruvate dehydrogenase deficiency and epilepsy. The pyruvate dehydrogenase complex (PDHc) is a mitochondrial matrix multienzyme complex that provides the link between glycolysis and the tricarboxylic acid (TCA) cycle by catalyzing the conversion of pyruvate into acetyl-CoA. PDHc deficiency is one of the commoner metabolic disorders of lactic acidosis presenting with neurological phenotypes that vary with age and gender. In this mini-review, we postulate mechanisms of epilepsy in the setting of PDHc deficiency using two illustrative cases (one with pyruvate dehydrogenase complex E1-alpha polypeptide (PDHA1) deficiency and the second one with pyruvate dehydrogenase complex E1-beta subunit (PDHB) deficiency (a rare subtype of PDHc deficiency)) and a selected review of published case series. PDHc plays a critical role in the pathway of carbohydrate metabolism and energy production. In severe deficiency states the resulting energy deficit impacts on brain development in utero resulting in structural brain anomalies and epilepsy. Milder deficiency states present with variable manifestations that include cognitive delay, ataxia, and seizures. Epileptogenesis in PDHc deficiency is linked to energy failure, development of structural brain anomalies and abnormal neurotransmitter metabolism. The use of the ketogenic diet bypasses the metabolic block, by providing a direct source of acetyl-CoA, leading to amelioration of some symptoms. Genetic counseling is essential as PDHA1 deficiency (commonest defect) is X-linked although females can be affected due to unfavorable lyonization, while PDHB and PDH phosphatase (PDP) deficiencies (much rarer defects) are of autosomal recessive inheritance. Research is in progress for looking into animal models to better understand pathogenesis and management of this challenging disorder."	"MRI features of 4 female patients with pyruvate dehydrogenase E1 alpha deficiency. Pyruvate dehydrogenase complex is a key intramitochondrial multienzyme complex required for the conversion of pyruvate to acetyl-CoA. Most patients with pyruvate dehydrogenase deficiency have a defect in the E1 alpha subunit, associated with mutations in the PDHA1 gene. In this report, we submit detailed magnetic resonance images in 4 affected female patients with PDHA1 mutations who had with severe cortical atrophy, dilated ventricles, and an incomplete corpus callosum. In one of these patients, the magnetic resonance imaging pattern prompted molecular diagnostic testing when enzymatic testing was normal. We underscore that this constellation of features, which may be misdiagnosed as periventricular leukomalacia, illustrates a pattern highly suggestive of a deficiency of pyruvate dehydrogenase E1 alpha in female patients and should trigger appropriate diagnostic investigations."	"Two patients with clinically distinct manifestation of pyruvate dehydrogenase deficiency due to mutations in PDHA1 gene. The most common cause of pyruvate dehydrogenase complex (PDHc) deficiency is the deficit of the E1α-subunit. The aim of this study was to describe distinct course of the disease in two boys with mutations in PDHA1 gene and illustrate the possible obstacles in measurement of PDHc activity. Clinical data and metabolic profiles were collected and evaluated. PDHc and E1α-subunit activities were measured using radiometric assay. Subunits of PDHc were detected by Western blot. PDHA1 gene was analysed by direct sequencing. In patient 1, the initial hypotonia with psychomotor retardation was observed since early infancy. The child gradually showed symptoms of spasticity and arrest of psychomotor development. In patient 2, the disease manifested by seizures and hyporeflexia in the toddler age. The diagnosis was confirmed at the age of seven years after attacks of dystonia and clinical manifestation of myopathy with normal mental development. Brain MRI of both patients revealed lesions typical of Leigh syndrome. Enzymatic analyses revealed PDHc deficiency in isolated lymphocytes in the first but not in the second patient. The direct measurement of PDH E1-subunit revealed deficiency in this individual. In patient 1, a novel hemizigous mutation c.857C&gt;T (Pro250Leu) was detected in the X-linked PDHA1 gene. Mutation c.367C&gt;T (Arg88Cys) was found in patient 2. We present first two patients with PDHc deficit due to mutations in PDHA1 gene in the Czech Republic. We document the broad variability of clinical symptoms of this disease. We proved that normal PDHc activity may not exclude the disease."	"Liver-specific pyruvate dehydrogenase complex deficiency upregulates lipogenesis in adipose tissue and improves peripheral insulin sensitivity. The pyruvate dehydrogenase complex (PDC) plays a critical role in lipid synthesis and glucose homeostasis in the fed and fasting states. The central role of the liver in the maintenance of glucose homeostasis has been established by studying changes in key enzymes (including PDC) and the carbon-flux via several pathways under different metabolic states. In the present study we have developed a murine model of liver-specific PDC deficiency using Cre-loxP technology to investigate its consequences on lipid and carbohydrate metabolism. There was no incorporation of glucose-carbon into fatty acids by liver in vitro from liver-specific Pdha1 knockout (L-PDHKO) male mice due to absence of hepatic PDC activity. Interestingly, there was a compensatory increase in lipogenic capacity in epididymal adipose tissue from L-PDHKO mice. Both fat and lean body mass were significantly reduced in L-PDHKO mice, which might be explained by an increase in total energy expenditure compared with wild-type littermate mice. Furthermore, both liver and peripheral insulin sensitivities measured during a hyperinsulinemic-euglycemic clamp were improved in L-PDHKO mice. The findings presented here demonstrate (i) the indispensable role of PDC for lipogenesis from glucose in liver and (ii) specific adaptations in lipid and glucose metabolism in the liver and adipose tissue to compensate for loss of PDC activity in liver only."	"An animal model of PDH deficiency using AAV8-siRNA vector-mediated knockdown of pyruvate dehydrogenase E1α. We evaluated the feasibility of self-complementary adeno-associated virus (scAAV) vector-mediated knockdown of the pyruvate dehydrogenase complex using small interfering RNAs directed against the E1α subunit gene (PDHA1). AAV serotype 8 was used to stereotaxically deliver scAAV8-si3-PDHA1-Enhanced Green Fluorescent Protein (knockdown) or scAAV8-EGFP (control) vectors into the right striatum and substantia nigra of rats. Rotational asymmetry was employed to quantify abnormal rotation following neurodegeneration in the nigrostriatal system. By 20weeks after surgery, the siRNA-injected rats exhibited higher contralateral rotation during the first 10min following amphetamine administration and lower 90-min total rotations (p≤0.05). Expression of PDC E1α, E1β and E2 subunits in striatum was decreased (p≤0.05) in the siRNA-injected striatum after 14weeks. By week 25, both PDC activity and expression of E1α were lower (p≤0.05) in siRNA-injected striata compared to controls. E1α expression was associated with PDC activity (R(2)=0.48; p=0.006) and modestly associated with counterclockwise rotation (R(2)=0.51;p=0.07). The use of tyrosine-mutant scAAV8 vectors resulted in ~17-fold increase in transduction efficiency of rat striatal neurons in vivo. We conclude that scAAV8-siRNA vector-mediated knockdown of PDC E1α in brain regions typically affected in humans with PDC deficiency results in a reproducible biochemical and clinical phenotype in rats that may be further enhanced with the use of tyrosine-mutant vectors."	"Dihydrolipoamide dehydrogenase (DLD) deficiency in a Spanish patient with myopathic presentation due to a new mutation in the interface domain. We present a 32-year-old patient who, from age 7 months, developed photophobia, left-eye ptosis and progressive muscular weakness. At age 7 years, she showed normal psychomotor development, bilateral ptosis and exercise-induced weakness with severe acidosis. Basal blood and urine lactate were normal, increasing dramatically after effort. PDHc deficiency was demonstrated in muscle and fibroblasts without detectable PDHA1 mutations. Ketogenic diet was ineffective, however thiamine gave good response although bilateral ptosis and weakness with acidosis on exercise persisted. Recently, DLD gene analysis revealed a homozygous missense mutation, c.1440 A&gt;G (p.I480M), in the interface domain. Both parents are heterozygous and DLD activity in the patient's fibroblasts is undetectable. The five patients that have been reported with DLD-interface mutations suffered fatal deteriorations. Our patient's disease is milder, only myopathic, more similar to that due to mutation p.G229C in the NAD(+)-binding domain. Two of the five patients presented mutations (p.D479V and p.R482G) very close to the present case (p.I480M). Despite differing degrees of clinical severity, all three had minimal clues to DLD deficiency, with occasional minor increases in α-ketoglutarate and branched-chain amino acids. In the two other patients, hypertrophic cardiomyopathy was a significant feature that has been attributed to moonlighting proteolytic activity of monomeric DLD, which can degrade other mitochondrial proteins, such as frataxin. Our patient does not have cardiomyopathy, suggesting that p.I480M may not affect the DLD ability to dimerize to the same extent as p.D479V and p.R482G. Our patient, with a novel mutation in the DLD interface and mild clinical symptoms, further broadens the spectrum of this enzyme defect."	"Deletion at chromosomal band Xp22.12-Xp22.13 involving PDHA1 in a patient with congenital lactic acidosis. We present a patient with congenital lactic acidosis, agenesis of the corpus callosum, and profound developmental delay. Assays of pyruvate dehydrogenase complex function were normal in lymphocytes, but decreased in fibroblasts. Sequencing of the PDHA1 gene did not reveal deleterious mutations, and BAC based microarray analysis did not reveal any chromosomal abnormality. However, gene dosage analysis with oligonucleotide-based chromosomal microarray revealed a deletion of Xp22.12-Xp22.13 involving complete deletion of PDHA1. This is the first report of a whole gene deletion of PDHA1 detected by oligonucleotide-based microarray."	"Somatic mosaicism for PDHA1 mutation in a male with pyruvate dehydrogenase complex deficiency. Pyruvate dehydrogenase complex deficiency is a clinically heterogeneous disorder. Most cases are due to mutations in an X-linked PDHA1 gene encoding the E1alpha subunit of the multienzyme complex. Females with mutations in the PDHA1 gene may be asymptomatic or have a milder phenotype as a result of skewed X-inactivation, while males are typically more severely affected. We report a case of PDHA1 mosaicism in a male patient who had a milder phenotype."	"Human testis-specific PDHA2 gene: methylation status of a CpG island in the open reading frame correlates with transcriptional activity. DNA methylation is an important epigenetic modification that has profound roles in gene expression and, in particular, is thought to be crucial for regulation of tissue-specific genes in animal cells. The pivotal E(1)alpha subunit of human pyruvate dehydrogenase complex, an essential and rate-limiting enzyme system in energy metabolism, is encoded by two distinct genes: PDHA1 gene, located on chromosome X is expressed in somatic tissues, whereas PDHA2 gene, located on chromosome 4, is exclusively expressed in spermatogenic cells. The objective of this study is to elucidate the role of DNA methylation as an epigenetic mechanism controlling the regulation of PDHA2 gene expression in human tissues, namely its repression in somatic tissues and its activation in testicular germ cells. Genomic DNA was isolated from human somatic tissues (circulating lymphocytes and gastric cells) and from testis, including isolated fractions of haploid and diploid germ cells. After primer design with appropriate software, it was performed the sodium bisulfite PCR sequencing of the PDHA2 promoter and coding regions. Total RNA of the same tissues was isolated, reverse transcribed and PDHA1and PDHA2 transcripts were amplified with specific primers and analysed by agarose gel electrophoresis. The analysis of the genomic sequence of the PDHA2 gene revealed the presence of 61 CpG sites whose distribution matches the criteria for the presence of two CpG islands. Sequence analysis of both CpG islands upon bisulfite treatment displayed several differences, either between islands or among tissues. In particular, the methylation pattern of one of the CpG islands revealed a perfect correlation with transcriptional activity of the PDHA2 gene either in testis or in somatic tissues. Surprisingly, it is the full demethylation of the CpG island located in the coding region that seems to play a crucial role upon PDHA2 gene transcription in testis."	"Mutational study in the PDHA1 gene of 40 patients suspected of pyruvate dehydrogenase complex deficiency. We screened for PDHA1 mutations in 40 patients with biochemically demonstrated PDHc deficiency or strong clinical suspicion, and found changes with probable pathological significance in 20. Five patients presented new mutations: p.A169V, c.932_938del, c.1143_1144 ins24, c.1146_1159dup and c.510-30G&gt; A, this latter is a new undescribed cause of exon 6 skipping. Another four mutations have been found, and previously reported, in our patients: p.H113D, p.P172L, p.Y243del and p.Y369Q. Eleven patients presented seven known mutations: p.R127Q, p.I166I, p.A198T, p.R263G, p.R302C, p.R378C and c.1142_1145dup. The latter three were found in more than one unrelated patient: p.R302C was detected in a heterozygous girl and a mosaic male, p.R378C in two males and finally, c.1142_1145dup in three females; only one in 20 mothers was found to be a carrier (p.R263G). Apart from those 20 patients, the only alteration detected in one girl with clear PDHc and PDH-E1 deficiency was the silent change c.396A&gt; C (p.R132R), and other eight PDHc deficient patients carry combinations of known infrequent polymorphisms that are overrepresented among our 20 unsolved patients. The importance of these changes on PDH activity is unclear. Investigations in the other PDHc genes are in course in order to elucidate the genetic defect in the unresolved patients."	"Pyruvate dehydrogenase complex deficiency: four neurological phenotypes with differing pathogenesis. To describe the phenotype and genotype of pyruvate dehydrogenase complex (PDHc) deficiency. Twenty-two participants with enzymologically and genetically confirmed PDHc deficiency were analysed for clinical and imaging features over a 15-year period. Four groups were identified: (1) those with neonatal encephalopathy with lactic acidosis (one male, four females; diagnosis at birth); (2) those with non-progressive infantile encephalopathy (three males, three females; age at diagnosis 2-9mo); (3) those with Leigh syndrome (eight males; age at diagnosis 1-13mo); and (4) those with relapsing ataxia (three males; 18-30mo). Seventeen mutations involved PDHA1 (a hotspot was identified in exons 6, 7, and 8 in seven males with Leigh syndrome or recurrent ataxia). Mutations in the PDHX gene (five cases) were correlated with non-progressive encephalopathy and long-term survival in four cases. Two types of neurological involvement were identified. Abnormal prenatal brain development resulted in severe non-progressive encephalopathy with callosal agenesis, gyration anomalies, microcephaly with intrauterine growth retardation, or dysmorphia in both males and females (12 cases). Acute energy failure in infant life produced basal ganglia lesions with paroxysmal dystonia, neuropathic ataxia due to axonal transport dysfunction, or epilepsy only in males (11 cases). The ketogenic diet improved only paroxysmal dysfunction, providing an additional argument in favour of paroxysmal energy failure."	"PDH E1β deficiency with novel mutations in two patients with Leigh syndrome. Most cases of pyruvate dehydrogenase complex (PDHc) deficiency are attributable to mutations in the PDHA1 gene which encodes the E(1)α subunit, with few cases of mutations in the genes for E(3), E3BP (E(3) binding protein), E(2) and E(1)-phosphatase being reported. Only seven patients with deficiency of the E(1)β subunit have been described, with mutations in the PDHB gene in six of them. Clinically they presented with a non-specific encephalomyopathy. We report two patients with new mutations in PDHB and Leigh syndrome. Patient 1 was a boy with neonatal onset of hyperlactataemia, corpus callosum hypoplasia and a convulsive encephalopathy. After neurological deterioration, he died at age 5 months. Autopsy revealed the characteristic features of Leigh syndrome. Patient 2, also a boy, presented a milder clinical course. First symptoms were noticed at age 16 months with muscular hypotonia, lactic acidosis and recurrent episodes of somnolence and transient tetraparesis. MRI revealed bilateral signal hyperintensities in the globus pallidus, midbrain and crura cerebri. PDHc and E(1) activities were deficient in fibroblasts in patient 1; in patient 2 PDHc deficiency was found in skeletal muscle. Mutations in PDHA1 were excluded. Sequencing of PDHB revealed a homozygous point mutation (c.302T&gt;C), causing a predicted amino acid change (p.M101T) in patient 1. Patient 2 is compound heterozygote for mutations c.301A&gt;G (p.M101V) and c.313G&gt;A (p.R105Q). All three mutations appear to destabilize the E(1) enzyme with a decrease of both E(1)α and E(1)β subunits in immunoblot analysis. To our knowledge, these patients with novel PDHB mutations are the first reported with Leigh syndrome."	"Next generation sequence analysis for mitochondrial disorders. Mitochondrial disorders can originate from mutations in one of many nuclear genes controlling the organelle function or in the mitochondrial genome (mitochondrial DNA (mtDNA)). The large numbers of potential culprit genes, together with the little guidance offered by most clinical phenotypes as to which gene may be causative, are a great challenge for the molecular diagnosis of these disorders. We developed a novel targeted resequencing assay for mitochondrial disorders relying on microarray-based hybrid capture coupled to next-generation sequencing. Specifically, we subjected the entire mtDNA genome and the exons and intron-exon boundary regions of 362 known or candidate causative nuclear genes to targeted capture and resequencing. We here provide proof-of-concept data by testing one HapMap DNA sample and two positive control samples. Over 94% of the targeted regions were captured and sequenced with appropriate coverage and quality, allowing reliable variant calling. Pathogenic mutations blindly tested in patients' samples were 100% concordant with previous Sanger sequencing results: a known mutation in Pyruvate dehydrogenase alpha 1 subunit (PDHA1), a novel splicing and a known coding mutation in Hydroxyacyl-CoA dehydrogenase alpha subunit (HADHA) were correctly identified. Of the additional variants recognized, 90 to 94% were present in dbSNP while 6 to 10% represented new alterations. The novel nonsynonymous variants were all in heterozygote state and mostly predicted to be benign. The depth of sequencing coverage of mtDNA was extremely high, suggesting that it may be feasible to detect pathogenic mtDNA mutations confounded by low level heteroplasmy. Only one sequencing lane of an eight lane flow cell was utilized for each sample, indicating that a cost-effective clinical test can be achieved. Our study indicates that the use of next generation sequencing technology holds great promise as a tool for screening mitochondrial disorders. The availability of a comprehensive molecular diagnostic tool will increase the capacity for early and rapid identification of mitochondrial disorders. In addition, the proposed approach has the potential to identify new mutations in candidate genes, expanding and redefining the spectrum of causative genes responsible for mitochondrial disorders."	"A cognitively normal PDH-deficient 18-year-old man carrying the R263G mutation in the PDHA1 gene. Pyruvate dehydrogenase (PDH) is a crucial multienzyme system linking glycolysis to the tricarboxylic acid cycle by catalysing the decarboxylation of pyruvate to acetyl-CoA. Deficiency in pyruvate dehydrogenase is most commonly secondary to mutations in the X-linked PDHA1 gene encoding the E1 alpha subunit. There is a wide range of clinical presentations from severe neonatal lactic acidosis to chronic encephalopathy (Leigh syndrome). In recent years, a small subset of patients was recognized with less severe involvement, presenting initially only with intermittent symptoms, mainly of ataxia. Most of these patients remain stable for a number of years before developing progressive neurological deterioration around puberty at the latest. There does not appear to be a reliable correlation between genotype, phenotype, or enzyme activity. This makes counselling in a clinical setting challenging. We report a case with a previously known common mutation in PDHA1 (R263G) with an excellent outcome at 18 years of age. Previous patients with this mutation have presented with mental retardation and/or Leigh syndrome, while our patient's clinical outcome is exceptional. He is cognitively normal and has normal brain MRI. His management includes a stringent carbohydrate-free diet, as well as supplementation with thiamine, carnitine and vitamin E. This case further broadens the clinical spectrum, including now an example of a cognitively normal adult with PDH deficiency."	"Four novel PDHA1 mutations in pyruvate dehydrogenase deficiency. The pyruvate dehydrogenase (PDH) complex is a mitochondrial multienzyme that catalyses the irreversible oxidative decarboxylation of pyruvate to acetyl-CoA. We report four novel PDHA1 mutations in patients with pyruvate dehydrogenase deficiency. Analysis of PDH activity showed decreased activity in fibroblasts from all four patients, around 16-52% of mean control, similar to what has been found in previous studies. Two of the mutations were missense mutations: c.616G&gt;A (p.Glu206Lys) and c.457A&gt;G (p.Met153Val), one was a 3 bp in-frame deletion: c.429_431delAGG (p.Gly143del), and one was a 65 bp duplication: c.900-6_958dup65. cDNA analysis of the 65 bp duplication showed a small amount of normal transcript in addition to the transcript corresponding to the duplication. The small amount of normal transcript likely explains the survival of the patient, who was a boy. The duplication and one of the missense mutations were associated with decreased amounts of E(1)α And E(1)β protein on western blot analysis, whereas the other two mutations were associated with normal amounts. This study adds four novel mutations to the around 90 reported mutations in PDHA1 (HGMD PDHA1 mutation database). The phenotypes of patients with PDH deficiency have been divided into three groups: a neonatal form with severe lactic acidosis, a form observed only in males and characterized by episodes of ataxia with relapses associated with hyperlactataemia, and an infantile form with hypotonia, lethargy, onset of seizures or dystonia, psychomotor retardation, in some cases Leigh-like lesions and mild to moderate hyperlactataemia. The four patients reported here all belong to the latter group, which is the largest."	"Somatic mosaicism for a PDHA1 mutation in a female with pyruvate dehydrogenase deficiency. Somatic mosaicism for a mutation in the X-linked PDHA1 gene was found in a girl who presented with manifestations of pyruvate dehydrogenase deficiency. Mutation in the PDHA1 gene was suggested by a mosaic pattern of E1alpha subunit immunostaining; however, initial screening of cDNA and the exons and intron-exon boundaries yielded only normal sequence, apart from a heterozygous 4 bp insertion in intron 10. This was considered to be a polymorphism as it is also present in her unaffected mother who has normal enzyme activity and uniform E1alpha immunostaining in fibroblasts. Detailed genetic analysis, which included isolation of cloned fibroblasts expressing the mutant X chromosome, resulted in the identification of a base substitution in the acceptor splice site of intron 9 which leads to activation of a cryptic upstream splice site. The proportion of cells expressing the mutation was then determined by direct analysis of the X-inactivation pattern. Genetic diagnosis in this unique case of PDHA1 somatic mosaicism was complicated by the absence of an abnormal transcript in primary fibroblasts, the presence of three different alleles and an X-inactivation pattern favouring expression of the normal, paternal, X chromosome. Although the mutation was only present in a proportion of cells, and only expressed in a subset of these due to random X-inactivation, the resulting enzyme defect was sufficient to be clinically apparent."	"Major depression in adolescent children consecutively diagnosed with mitochondrial disorder. A higher incidence of major depression has been described in adults with a primary oxidative phosphorylation disease. Intriguingly however, not all patients carrying the same mutation develop symptoms of major depression, pointing out the significance of the interplay of genetic and non-genetic factors in the etiology. In a series of paediatric patients evaluated for mitochondrial dysfunction, out of 35 children with a biochemically and genetically confirmed mitochondrial disorder, we identified five cases presenting with major depression prior to the diagnosis. The patients were diagnosed respectively with mutations in MTTK, MTND1, POLG1, PDHA1 and the common 4977 bp mtDNA deletion. Besides cerebral lactic acidemia protein and glucose concentrations, immunoglobins, anti-gangliosides and neurotransmitters were normal. No significant difference could be confirmed in the disease progression or the quality of life, compared to the other, genetically confirmed mitochondrial patients. In three out of our five patients a significant stress life event was confirmed. We propose the abnormal central nervous system energy metabolism as the underlying cause of the mood disorder in our paediatric patients. Exploring the genetic etiology in children with mitochondrial dysfunction and depression is essential both for safe medication and adequate counselling."	"Pyruvate dehydrogenase deficiency presenting as intermittent isolated acute ataxia. The aim of this study is to report and emphasize unusual presentations of pyruvate dehydrogenase (PDH) deficiency (OMIM 312170). PDH activity and PDHA1 gene were studied in two siblings presenting with intermittent ataxia in childhood. Similar presentations in reported PDH-deficient patients were searched for using the Medline database. Both patients had PDH deficiency caused by a new mutation (G585C) in the PDHA1 gene, which is predicted to replace a highly conserved glycine at codon 195 by alanine. Although this mutation lies within the thiamine pyrophosphate binding domain, there was no thiamine responsiveness IN VIVO. The patients presented recurrent episodes of acute isolated ataxia in infancy. Both had normal blood and CSF lactate levels. Although symptoms initially resolved between episodes during the first decade, both patients subsequently worsened and developed progressive and severe encephalopathy, leading to death in their twenties. The spectrum of intermittent presentations in PDH deficiency includes episodic ataxia, intermittent peripheral weakness, recurrent dystonia and extrapyramidal movement disorders. PDH deficiency should be considered in patients with unexplained intermittent and recurrent acute neurological symptoms. Long-term prognosis and outcome remain uncertain. PDH deficiency can occur even with normal CSF lactate concentration."	"Pyruvate dehydrogenase deficiency: identification of a novel mutation in the PDHA1 gene which responds to amino acid supplementation. The pyruvate dehydrogenase complex (PDHc) is an intramitochondrial multienzyme system, which plays a key role in aerobic glucose metabolism by catalysing the oxidative decarboxylation of pyruvate to acetyl-CoA. Genetic defects in the PDHc lead to lactic acidemia and neurological abnormalities. In the majority of the cases, the defect appears to reside in the E(1)alpha subunit, the first catalytic component of the complex. The report is on a 6-year-old Portuguese boy with mild neurological involvement and low PDHc activity with absence of E1alpha on immunoblotting analysis. Molecular studies showed a novel and &quot;de novo&quot; mutation in the PDHA1 gene, R253G. Treatment with arginine aspartate showed complete clinical and biochemical recovery. We hypothesise that arginine aspartate acts as a chemical or pharmacological chaperone, and suggest amino acid supplementation as a possible therapy in PDHA1 mutations with mild phenotypes. our results encourage the use of amino acid supplementation to overcome the metabolic/biochemical changes induced by PDHA1 gene specific mutations associated with mild PDHc phenotypes."	"A putative exonic splicing enhancer in exon 7 of the PDHA1 gene affects splicing of adjacent exons. A nonsense mutation (c.729C&gt;A, Y243X) in exon 7 of the PDHA1 gene in a patient with pyruvate dehydrogenase deficiency results in aberrant splicing of the primary transcript with production of stable mRNAs which lack either both exons 6 and 7 or exon 7 alone. Transfection and expression of genomic constructs covering exons 5 to 8 of the mutant PDHA1 gene reproduced this aberrant splicing in vitro. The same pattern of abnormal splicing was found when a silent mutation was introduced at the same position. Both the nonsense and silent mutations alter a strong consensus site for the binding of SRp40, suggesting that they may interfere with an exonic splicing enhancer in exon 7 of the gene. However, this appears to affect splicing of not only exon 7, but also the adjacent upstream exon. The splice acceptor site of intron 5 has weak homology to the consensus sequence and this may contribute to the combined splicing defect."	"A combined therapeutic approach for pyruvate dehydrogenase deficiency using self-complementary adeno-associated virus serotype-specific vectors and dichloroacetate. We determined the ability of self-complementary adeno-associated virus (scAAV) vectors to deliver and express the pyruvate dehydrogenase E1alpha subunit gene (PDHA1) in primary cultures of skin fibroblasts from 3 patients with defined mutations in PHDA1 and 3 healthy subjects. Cells were transduced with scAAV vectors containing the cytomegalovirus promoter-driven enhanced green fluorescent protein (EGFP) reporter gene at a vector:cell ratio of 200. Transgene expression was measured 72h later. The transduction efficiency of scAAV2 and scAAV6 vectors was 3- to 5-fold higher than that of the other serotypes, which were subsequently used to transduce fibroblasts with wild-type PDHA1 cDNA under the control of the chicken beta-action (CBA) promoter at a vector:cell ratio of 1000. Total PDH-specific activity and E1alpha protein expression were determined 10 days post-transduction. Both vectors increased E1alpha expression 40-60% in both control and patient cells, and increased PDH activity in two patient cell lines. We also used dichloroacetate (DCA) to maximally activate PDH through dephosphorylation of E1alpha. Exposure for 24h to 5mM DCA increased PDH activity in non-transduced control (mean 37% increase) and PDH deficient (mean 44% increase) cells. Exposure of transduced patient fibroblasts to DCA increased PDH activity up to 90% of the activity measured in untreated control cells. DCA also increased expression of E1alpha protein and, to variable extents, that of other components of the PDH complex in both non-transduced and transduced cells. These data suggest that a combined gene delivery and pharmacological approach may hold promise for the treatment of PDH deficiency."	"Neonatal pyruvate dehydrogenase deficiency due to a R302H mutation in the PDHA1 gene: MRI findings. Pyruvate dehydrogenase (PDH) deficiency is one of the most common causes of congenital lactic acidosis. Correlations between the genetic defect and neuroimaging findings are lacking. We present conventional and diffusion-weighted MRI findings in a 7-day-old male neonate with PDH deficiency due to a mosaicism for the R302H mutation in the PDHA1 gene. Corpus callosum dysgenesis, widespread increased diffusion in the white matter, and bilateral subependymal cysts were the main features. Although confirmation of PDH deficiency depends on specialized biochemical analyses, neonatal MRI plays a role in evaluating the pattern and extent of brain damage, and potentially in early diagnosis and clinical decision making."	"Mutations of the E1beta subunit gene (PDHB) in four families with pyruvate dehydrogenase deficiency. Pyruvate dehydrogenase complex (PDC) deficiencies are a major cause of primary lactic acidosis. Most cases result from mutations of the gene for the pyruvate dehydrogenase E1alpha subunit (PDHA1), with fewer cases resulting from mutations in genes for E3, E3-binding protein, E2, and the E1beta subunit (PDHB). We have found four cases of PDHB mutations among 83 analyzed cases of PDC deficiency. In this series, PDHB mutations were found to be about 10% as frequent as PDHA1 mutations. All cases were diagnosed by low PDC activity, with normal E2 and E3 activities. These included a 6.5-year-old male (consanguineous, homozygous R36C); a neonatal female who died soon after birth, (compound heterozygous C306R/D319V), a 26-year-old female (heterozygous I142M/W165S), and a 13month old female (consanguineous, homozygous Y132C) who is a sibling of a previously published case. Their ethnic background is diverse (Caucasian, Arab, and African American descent). All cases had lactic acidosis and developmental delay. Three cases had agenesis of the corpus callosum, seizures, and hypotonia; one died within the first year of life. These clinical findings are similar to those of PDHA1 deficiency, except that ataxia was more frequent in PDHA1 cases and consanguinity was found only in PDHB families. PDC activity in lymphocytes from six parents is normal, who all are heterozygous carriers for the respective mutations. Immunoreactivity of E1beta was markedly reduced in one case and showed a slightly larger form of E1beta in one case. Computer analysis predicts that: R36C affects the interaction of several amino acids resulting in conformational change, C306R affects interaction of the two beta subunits, D319 is in the interface of E1 and E2, I142M affects conformation around a K ion affecting stability of the beta subunit, W165S affects hydrophobic interaction between the beta subunits, and Y132C affects interaction between the beta subunits. All of these residues are conserved in E1beta across species, and Y132 is also conserved in other TPP-requiring enzymes. These observations support the conclusion that these are pathogenic mutations."	"Two silent substitutions in the PDHA1 gene cause exon 5 skipping by disruption of a putative exonic splicing enhancer. Synonymous mutations within exons may cause aberrant splicing by disrupting exonic splicing enhancer (ESE) motifs in the vicinity of non consensus splice sites. Mutational analysis of PDHA1 revealed only one silent single nucleotide substitution in exon 5 in two unrelated boys and a girl (c.483C&gt;T and c.498C&gt;T variants, respectively). For both patients, pyruvate dehydrogenase complex activity was low and the immunoreactive E1alpha protein was defective in cultured fibroblasts. One of the boys was a somatic mosaic for the c.483C&gt;T variant, as shown by the variable ratio of mutant to normal alleles in fibroblast, lymphocyte and single hair root DNA. Transcript analysis in fibroblasts from the three patients revealed the presence of both normal and truncated cDNAs, with the splicing out of exon 5 predicted to result in a frame shift and premature termination (p.Arg141AlafsX11). The treatment of fibroblasts with emetine before harvesting to prevent nonsense mRNA-mediated decay increased the amount of mutant mRNA. In silico analysis revealed that each variant disrupted a putative SRp55 binding site and that the intron 5 donor splice site (5'ss) contained a weak splicing signal. Transient transfection of COS-7 or Hela cells with hybrid minigene constructs containing wild-type or mutant PDHA1 exon 5, followed by RT-PCR demonstrated that each variant resulted in the incomplete inclusion of PDHA1 exon 5, and that this defect was corrected following the restoration of a perfect consensus sequence for the 5' splice site by site-directed mutagenesis. These two synonymous mutations expand the spectrum of rare PDHA1 splicing mutations, all of which are located in non canonical splice sites."	"Pyruvate dehydrogenase complex deficiency caused by ubiquitination and proteasome-mediated degradation of the E1 subunit. Congenital deficiencies of the human pyruvate dehydrogenase (PDH) complex are considered to be due to loss of function mutations in one of the component enzymes. Here we describe a case of PDH deficiency associated with the PDH E1beta subunit (PDHB) gene. The clinical phenotype of the patient was consistent with reported cases of PDH deficiency. Cultured skin fibroblasts demonstrated a 55% reduction in PDH activity and markedly decreased immunoreactivity for PDHB protein, compared with healthy controls. Surprisingly, nucleotide sequence analyses of cDNAs corresponding to the patient PDH E1alpha (PDHA1) and PDHB genes revealed no pathological mutations. Moreover, the relative expression level of PDHB mRNA and the rates of transcription and translation of the PDHB gene were normal. However, PDC activity could be restored in cells from this patient following treatment with MG132, a specific proteasome inhibitor, and normal levels of E1beta could be detected in MG132-treated cells. Similar results were obtained following treatment with Tyr-phostin 23 (Tyr23), a specific inhibitor of epidermal growth factor receptor-protein-tyrosine kinase (EGFR-PTK), which also restored E1beta protein levels to those in cells from healthy subjects or from patients with PDHA1 deficiency. The index patient's cells contained a high basal level of EGFR-PTK activity that correlated with the high level of ubiquitination of cellular proteins, although the total EGFR protein levels were similar to those in cells from Elalpha-deficient subjects and healthy subjects. These data indicate that PDH deficiency in our patient involves a post-translational modification in which EGFR-PTK-mediated tyrosine phosphorylation of the E1beta protein leads to enhanced ubiquitination followed by proteasome-mediated degradation. They also provide a novel mechanism accounting for congenital deficiency of the PDH complex and perhaps other inborn errors of metabolism."	"[Leigh syndrome due to pyruvate dehydrogenase E1 alpha subunit gene mutation: a complicated and difficult case study]. Leigh syndrome is a genetically heterogeneous disease caused by defects in enzymes involved in aerobic energy metabolism and the Krebs' cycle. Deficiency of pyruvate dehydrogenase complex E1 alpha subunit (PDHA1) is the common cause of Leigh syndrome. In this study, one Chinese case of PDHA1 deficiency was reported. The patient was a boy with normal mental development, retarded motor development, general weakness, hypotonia and areflexia. Muscle histopathological findings suggested axonal peripheral neuropathy. Brain magnetic resonance imaging at 5 years of age revealed bilateral putamina lesions and periventricular white matter demyelination, supporting the diagnosis of Leigh syndrome. A C214T mutation in exon 3 of the PDHA1 gene was detected. After the treatment of thiamin, coenzyme Q10, Lcarnitine and carbohydrates-restricted diet, his movement ability improved significantly. At present, the patient is 8 years old and has normal school life. PDHA1 deficiency is an X-linked inherited metabolic disease, which shares various clinical manifestations and leads to difficult diagnosis. This patient predominately presented with progressive weakness and was diagnosed by gene analysis."	"Down-regulation of expression of rat pyruvate dehydrogenase E1alpha gene by self-complementary adeno-associated virus-mediated small interfering RNA delivery. Mutations in the E1alpha subunit gene (PDHA1) of the pyruvate dehydrogenase complex (PDC) are common causes of congenital lactic acidosis. An animal model of E1alpha deficiency could provide insight into the pathological consequences of mutations and serve to test potential therapies. Small interfering RNAs (siRNAs) were designed to cleave the messenger RNA (mRNA) of the E1alpha subunit and were tested in vitro to assess the feasibility of producing a gene knockdown in rats. HEK 293 cells were co-transfected with a rat PDHA1 expression vector and eight naked siRNAs that specifically targeted rat E1alpha mRNA. Quantitative PCR (qPCR) analyses showed that four siRNAs reduced rat PDHA1 RNA levels up to 85% by 24h and up to 65% by 56h, compared to negative and positive controls. Since oligonucleotide-mediated siRNA delivery provided only transient suppression, we next selected two siRNA candidates and generated self-complementary, double-stranded adeno-associated virus (scAAV) vectors (serotypes 2 and 5) expressing a rat short hairpin siRNA expression cassette (scAAVsi-PDHA1). Rat lung fibroblast (RLF) cultures were infected with scAAVsi-PDHA1 vectors. The RLF PDHA1 mRNA level was reduced 53-80% 72h after infection and 54-70% 10 days after infection in RLF cultures. The expression of E1alpha and the specific activity of pyruvate dehydrogenase were also decreased at 10 days after infection in RLF cultures. Thus, scAAV siRNA-mediated knockdown of PDHA1 gene expression provides a strategy that may be applied to create a useful animal model of PDC deficiency."	"Oxidative metabolism of pyruvate is required for meiotic maturation of murine oocytes in vivo. The requirement for oxidative metabolism of pyruvate during oogenesis in vivo was evaluated by inactivating Pdha1, a gene encoding an enzymatic subunit of pyruvate dehydrogenase complex, in murine oocytes at the beginning of the follicular growth phase. Immunohistochemical analysis revealed that Pdha1(-) oocytes have dramatically reduced amounts of pyruvate dehydrogenase enzyme by the secondary follicle stage. Despite this reduction, these oocytes grow to normal size, are ovulated, and can be fertilized. Pdha1(-) oocytes are, however, impaired in their ability to support embryonic development, as demonstrated by the failure of fertilized oocytes to develop beyond the one-cell zygote stage in vivo. Immunocytochemical evaluation showed that almost all (98.4%) ovulated Pdha1(-) oocytes have not completed meiotic maturation and/or have gross abnormalities of the meiotic spindle and chromatin. Meiotic maturation is even more compromised when these oocytes are matured in vitro in the absence of cumulus cells or in the presence of the gap junction inhibitor 18-alpha glycyrrhetinic acid, indicating that cumulus cells can partially compensate for this enzymatic deficiency through a gap junction-mediated mechanism. Ovulated Pdha1(-) oocytes were also shown to have reduced levels of total ATP content and NAD(P)H autofluorescence relative to oocytes without this enzymatic deficiency. These studies demonstrate that oxidative metabolism of pyruvate is essential for proper completion of oogenesis, serving as a vital source of energy during meiotic maturation. At earlier stages of oogenesis this metabolic pathway may not be necessary due to metabolic compensation by the granulosa cells."	"A Korean female patient with thiamine-responsive pyruvate dehydrogenase complex deficiency due to a novel point mutation (Y161C)in the PDHA1 gene. Pyruvate dehydrogenase complex (PDHC) deficiency is mostly due to mutations in the X-linked E1alpha subunit gene (PDHA1). Some of the patients with PDHC deficiency showed clinical improvements with thiamine treatment. We report the results of biochemical and molecular analysis in a female patient with lactic acidemia. The PDHC activity was assayed at different concentrations of thiamine pyrophosphate (TPP). The PDHC activity showed null activity at low TPP concentration (1 x 10(-3) mM), but significantly increased at a high TPP concentration (1 mM). Sequencing analysis of PDHA1 gene of the patient revealed a substitution of cysteine for tyrosine at position 161 (Y161C). Thiamine treatment resulted in reduction of the patient's serum lactate concentration and dramatic clinical improvement. Biochemical, molecular, and clinical data suggest that this patient has a thiamine-responsive PDHC deficiency due to a novel mutation, Y161C. Therefore, to detect the thiamine responsiveness it is necessary to measure activities of PDHC not only at high but also at low concentration of TPP."	"Pyruvate dehydrogenase E3 binding protein (protein X) deficiency. Pyruvate dehydrogenase (PDH) deficiency is a major cause of neurological dysfunction and lactic acidosis in infancy and early childhood. The great majority of cases (&gt;80%) result from mutations in the X-linked gene for the E1alpha subunit of the complex (PDHA1). Mutations in the genes for the other subunits have all been described, but only dihydrolipoamide dehydrogenase (E3) and E3 binding protein (E3BP) defects contribute significantly to the total number of patients with PDH deficiency. Although previously considered rare, with only 13 reported cases, we have found that mutations in PDX1, the gene for the E3 binding protein, are in fact relatively common. Clinical, biochemical, and genetic features of six new patients (four males, two females; age range 15mo-6y) with mutations in this gene are compared with previously reported cases. All patients with E3BP deficiency identified to date have mutations which completely prevent synthesis of the protein product. However, they are generally less severely affected than patients with PDHA1 mutations, although there is considerable overlap in clinical and neuroradiological features."	"Females with PDHA1 gene mutations: a diagnostic challenge. Biochemical analysis was performed in muscle tissue and in fibroblasts of four unrelated females consecutively diagnosed with a 'de novo' point mutation in the PDHA1 gene. Pyruvate dehydrogenase E1 subunit deficiency was confirmed in the muscle sample of all patients, however, in three out of four cases the activity of the pyruvate dehydrogenase complex in fibroblasts showed a normal activity. A skewed inactivation was confirmed of the maternal X chromosome in fibroblasts in all children. Due to the possibility of a skewed X inactivation pattern enzyme measurements in fibroblasts are not always reliable for the diagnosis of a PDHc defect in females. Based on the overlapping features of PDHc deficiency with those of the disorders of the oxidative phosphorylation we suggest performing a fresh muscle biopsy for detailed biochemical analysis in females with a suspected pyruvate dehydrogenase deficiency, followed by molecular genetic analysis of the PDHA1 gene."	"Intermittent peripheral weakness as the presenting feature of pyruvate dehydrogenase deficiency. Two unrelated children presenting with episodic isolated peripheral weakness were found to have pyruvate dehydrogenase (PDH) deficiency (OMIM 312170) due to previously undescribed mutations (Pro250Thr, Arg88Cys) in the gene for the E1alpha subunit (PDHA1). Taken in context with the literature, these patients suggest that acute weakness initially resembling Guillain-Barré syndrome is a potentially reversible and probably underdiagnosed manifestation of PDH deficiency and that peripheral nerve function should be evaluated in PDH-deficient patients."	"Somatic mosaicism in a male with an exon skipping mutation in PDHA1 of the pyruvate dehydrogenase complex results in a milder phenotype. Pyruvate dehydrogenase complex (PDC) deficiency is commonly due to mutations of PDHA1 on the X chromosome. Milder phenotypic manifestations occur in heterozygous females than in hemizygous males with the same mutation, and females are more likely to survive with severe mutations. The boy described here had hypotonia, moderate developmental delay, tremors, normal growth and brain MRI, and normal to slightly elevated lactate. PDC activity was low in skin fibroblasts and skeletal muscle (27-37%) but normal in lymphocytes. PDHA1 cDNA from cultured fibroblasts revealed two populations, one normal, the other lacking exon 6 (c.511-603 del). Genomic DNA from fibroblasts contained both normal and mutant (g.592G--&gt;A) sequences within exon 6. Expression of minigene constructs containing exons 5, 6, and 7 with or without this mutation in 293T cells confirmed that the mutation alters splicing of exon 6. The mutant to wild-type DNA ratio varied substantially across tissues. Immunoblotting of fibroblast lysates detected only wild-type E1alpha protein. Immunocytochemistry of cultured skin fibroblasts showed a mosaic pattern with 60% of cells positive for E1alpha and 40% negative, consistent with PDC activity and DNA analysis. Karyotyping, FISH analyses, and genotyping revealed a 46XY male without chimerism. These data indicate somatic mosaicism for a mutation within exon 6 that causes exon skipping and production of a non-functional protein. The mutated 592G residue is conserved among all eukaryotes. Substituting A for G apparently alters normal splicing by creating a SRp40 exonic splice enhancer site. The milder phenotype in this male is accounted for by the mixture of normal cells and cells lacking E1alpha. Immunocytochemistry was a useful adjunct to molecular analysis for demonstrating mosaicism."	"A novel mutation in the dihydrolipoamide dehydrogenase E3 subunit gene (DLD) resulting in an atypical form of alpha-ketoglutarate dehydrogenase deficiency. The alpha-ketoglutarate dehydrogenase complex (KGDC) catalyses the decarboxylation of alpha-ketoglutarate into succinyl-coenzyme A in the Krebs cycle. This enzymatic complex is made up of three subunits (E1, encoded by PDHA1; E2, encoded by DLST; and E3, encoded by DLD). The E3 subunit is common to two other enzymatic complexes, namely pyruvate dehydrogenase complex (PDC) and branched-chain ketoacid dehydrogenase complex (BCKDC). KGDC deficiency is a rare autosomal recessive disorder, most often presenting with severe encephalopathy and hyperlactatemia with neonatal onset. We found a KGDC deficiency in cultured skin fibroblasts from three siblings born to consanguinous parents. E3 subunit activity was shown to be deficient (20% of control values), despite the absence of usual clinical clues to E3 deficiency, i.e. accumulation of pyruvate and branched-chain amino acids in plasma and branched-chain alpha-ketoacids in urine. RT-PCR of E3 mRNA from the three patients, followed by sequencing, revealed an homozygous c.1444A&gt;G substitution located in E3 exon 13, predictive of a p.R482G (or R447G in the processed gene product) substitution in a highly conserved domain of the protein. Only eleven E3 mutations have been reported so far. The only other case of E3 deficiency without clinical or biochemical evidences of PDC and BCKDC deficiencies has been ascribed to a c.1436A&gt;T (p.D479V; or D444V in the processed gene product) mutation, very close to the mutation reported herein. Since c.1444A&gt;G (p.R482G; or R447G in the processed gene product) and c.1436A&gt;T (p.D479V; or D444V in the processed gene product) lie within the interface domain of E3 with E2 (KGDC and BCKDC) or the E3-binding protein (PDC), our data suggest that interaction of E3 with these other subunits differs in some extent among KGDC, PDC, and BCKDC."	"Pyruvate dehydrogenase deficiency presenting as dystonia in childhood. Two individuals with pyruvate dehydrogenase (PDH) deficiency due to missense mutations in the gene for the E1alpha subunit (PDHA1) presented during childhood with dystonia. The first patient, a male, presented at age 4 years with dystonia affecting the lower limbs, which responded to treatment with combined carbidopa and levodopa. The second patient, a female, was first investigated at age 6 years because of a dystonic gait disorder. In both patients, the main clue to the biochemical diagnosis was a raised concentration of lactate in the cerebrospinal fluid. PDH activity was significantly reduced in cultured fibroblasts in both cases. Dystonia is a previously unrecognized major manifestation of PDH deficiency and is of particular interest as the mutations in the PDHA1 gene in these patients have both been identified previously in individuals with typical presentations of the condition."	"Deficiency of pyruvate dehydrogenase caused by novel and known mutations in the E1alpha subunit. Pyruvate dehydrogenase (PDH)-complex deficiency (OMIM 312170) is a clinically heterogeneous disorder, with phenotypes ranging from fatal lactic acidosis (LA) in the newborn to chronic neurological dysfunction. To date, over 80 different mutations have been identified in the PDHA1 gene in patients with PDH complex deficiency, which are thus thought to contribute to the PDH deficient phenotype. We have identified 14 additional patients with total PDH complex deficiency, all of whom were found to contain mutations within the PDHA1 gene (E(1)alpha subunit). The mutations include both missense mutations and duplications. Eight of these patients had novel mutations, and the remaining had mutations that have been identified previously in PDH complex deficient patients, with residual fibroblast activity ranging from 2.4 to 69% of control values. The nature of these mutations illustrates the variability in phenotype for a given gene defect, with intermittent ataxia being the mildest presentation, Leigh syndrome being the most common and severe neonatal LA the most severe."	"A pathogenic glutamate-to-aspartate substitution (D296E) in the pyruvate dehydrogenase E1 subunit gene PDHA1. In a patient with fatal neonatal lactic acidosis due to pyruvate dehydrogenase deficiency, the only potential mutation detected was c.888C&gt;G in PDHA1, the gene for the E1alpha subunit of the complex. This would result in a substitution of glutamate for aspartate (D296E). Pathogenicity of this minor alteration in amino acid sequence was demonstrated by expression studies. By comparing the mutant sequence with the known structures of the E1 components of pyruvate dehydrogenase and the closely related branched chain alpha-ketoacid dehydrogenase, an explanation for the profound consequences of the mutation can be proposed."	"Inactivation of the murine pyruvate dehydrogenase (Pdha1) gene and its effect on early embryonic development. A deficiency of pyruvate dehydrogenase complex (PDC) in humans results in lactic acidosis and neurological dysfunction that frequently results in death during infancy. Using gene targeting technology, a silent mutation was introduced into the murine X-linked Pdha1 gene that encodes the alpha subunit of the pyruvate dehydrogenase or E1 component of the complex. Two loxP sequences were introduced into intronic sequences flanking exon 8 to generate the Pdha1(flox8) allele. In vitro studies in embryonic stem cells demonstrated that deletion of exon 8 ablated PDC activity. Homozygous Pdha1(flox8) females were bred with male mice carrying a wild-type Pdha1 allele and a transgene that ubiquitously expresses the Cre recombinase to produce progeny with a deletion in exon 8, Pdha1(Deltaex8). The majority of progeny were found to be mosaic with the presence of both the flox and deleted alleles, and there were no apparent phenotypic effects associated with the null allele. The mosaic mice were interbred to increase the degree of mosaicism for the Pdha1(Deltaex8) allele in the subsequent generation, resulting in a significantly smaller litter size (54% reduction). Embryos carrying predominantly the Pdha1(Deltaex8) allele were found to be globally delayed in development by 9.5 days postcoitus, with resorption occurring over the following several days. These findings demonstrate an essential role for oxidative metabolism of glucose during the early postimplantation period of prenatal development."	"Human populations show reduced DNA sequence variation at the factor IX locus. Levels and patterns of human DNA sequence variation vary widely among loci. However, some of this variation may be due to the different populations used in different studies. So far, few studies of diverse human populations have compared different genetic loci for the same samples of populations and individuals. Here, we present new polymorphism data from intron 4 of the Factor IX gene (FIX) sequenced in diverse Old World populations. An explicit comparison is made with another X-linked gene, PDHA1, for which the sampling of individuals was very similar. Despite having a similar amount of divergence from chimpanzees, as do other nuclear genes, FIX has comparatively much less DNA sequence variation among humans. Nucleotide diversity at FIX is the lowest among the existing non-Y chromosome nuclear gene datasets and is less than 10% of the diversity found at PDHA1. Estimates of effective population size based on FIX are 8,558, about half of the value obtained for PDHA1, and the time to the most recent common ancestry among human FIX gene copies (282,000 years) is one of the most recent estimates reported for human genes. Analyses presented here suggest a history for the FIX region that includes recent positive directional selection, or background, selection. The general conclusion emerging is that very large variations can exist between the histories of similar genomic regions, even when sampling differences are minimized."	"Determination of X-chromosome inactivation status using X-linked expressed polymorphisms identified by database searching. The large number of redundant sequences available in nucleotide databases provides a resource for the identification of polymorphisms. Expressed polymorphisms in X-linked genes can be used to determine the inactivation status of the genes, and polymorphisms in genes that are subject to inactivation can then be used as tools to examine X-chromosome inactivation status in heterozygous females. In this study, we have identified six new X-linked single-nucleotide polymorphisms and determined the inactivation status of these genes by examination of expression patterns in female cells previously demonstrated to have skewed inactivation, as well as by analysis of somatic cell hybrids retaining the inactive human X chromosome. Expression was seen from both alleles in females heterozygous for the RPS4X gene, confirming the previously reported expression from the inactive X chromosome. Expression of only a single allele was seen in females heterozygous for polymorphisms in the BGN, TM4SF2, ATP6S1, VBP1, and PDHA1 genes, suggesting that these genes are subject to X-chromosome inactivation."	"Mutations in the X-linked pyruvate dehydrogenase (E1) alpha subunit gene (PDHA1) in patients with a pyruvate dehydrogenase complex deficiency. Defects in the pyruvate dehydrogenase (PDH) complex are an important cause of primary lactic acidosis, a frequent manifestation of metabolic disease in children. Clinical symptoms can vary considerably in patients with PDH complex deficiencies, and almost equal numbers of affected males and females have been identified, suggesting an autosomal recessive mode of inheritance of the disease. However, the great majority of PDH complex deficiencies result from mutations in the X-linked pyruvate dehydrogenase (E1) alpha subunit gene (PDHA1). The major factors that contribute to the clinical variation in E1alpha deficiency and its resemblance to a recessive disease are developmental lethality in some males with severe mutations and the pattern of X-inactivation in females. To date, 37 different missense/nonsense and 39 different insertion/deletion mutations have been identified in the E1alpha subunit gene of 130 patients (61 females and 69 males) from 123 unrelated families. Insertion/deletion mutations occur preferentially in exons 10 and 11, while missense/nonsense mutations are found in all exons. In males, the majority of missense/nonsense mutations are found in exons 3, 7, 8 and 11, and three recurrent mutations at codons R72, R263 and R378 account for half of these patients with missense/nonsense mutations (25 of 50). A significantly lower number of females is found with missense/nonsense mutations (25). However, 36 females out of 55 affected patients have insertion/deletion mutations. The total number of female and male patients is thus almost the same, although a difference in the distribution of the type of mutations is evident between both sexes. In many families, the parents of the affected patients were studied for the presence of the PDHA1 mutation. The mutation was never present in the somatic cells of the father; in 63 mothers studied, 16 were carriers (25%). In four families, the origin of the new mutation was determined to be twice paternal and twice maternal."	"Cloning and characterization of a 5.9 kb promoter region of the human pyruvate dehydrogenase alpha subunit gene. A human genomic clone containing a 5.9 kb promoter region of the human pyruvate dehydrogenase (E1) alpha subunit gene (PDHA1) was isolated from a human X-chromosome library. The nucleotide sequence showed two Alu repeats at the -2880 and -2200 bp regions. Comparison between the -1400 bp E1alpha promoter and the -1241 bp E1beta promoter revealed a 57% homology, with a high degree of homology at the putative protein binding regions in these two promoters. Computer-aided transcription factor binding consensus sequence analysis revealed the presence of PPAR, HOXD, MyoD and other tissue-specific transcription factor binding sites. Promoter function analysis using the chloramphenicol acetyltransferase reporter gene indicated that the -2.2 kb/-1.7 kb and -5.9 kb/-5.2 kb regions of the E1alpha promoter may possess negative regulatory elements which are likely to function in a tissue-specific manner."	"X chromosome evidence for ancient human histories. Diverse African and non-African samples of the X-linked PDHA1 (pyruvate dehydrogenase E1 alpha subunit) locus revealed a fixed DNA sequence difference between the two sample groups. The age of onset of population subdivision appears to be about 200 thousand years ago. This predates the earliest modern human fossils, suggesting the transformation to modern humans occurred in a subdivided population. The base of the PDHA1 gene tree is relatively ancient, with an estimated age of 1.86 million years, a late Pliocene time associated with early species of Homo. PDHA1 revealed very low variation among non-Africans, but in other respects the data are consistent with reports from other X-linked and autosomal haplotype data sets. Like these other genes, but in conflict with microsatellite and mitochondrial data, PDHA1 does not show evidence of human population expansion."	"Regulation of mammalian pyruvate dehydrogenase alpha subunit gene expression by glucose in HepG2 cells. We report the effect of glucose on the expression of the gene encoding the pyruvate dehydrogenase (E1) alpha subunit (E1alpha) in human hepatoma (HepG2) cells. Total pyruvate dehydrogenase complex activity as well as the levels of protein and mRNA of the E1alpha subunit were significantly increased in HepG2 cells cultured in medium containing 16.7 mM glucose compared with 1.0 mM glucose for a period of 4 weeks. The level of E1alpha mRNA was elevated approx. 2-fold in HepG2 cells cultured for 24 h in medium containing 16.7 mM glucose compared with 1 mM glucose. This effect was specific to glucose and independent of insulin. Nuclear run-on assays and promoter analysis indicate that the glucose-induced increases in the levels of E1alpha mRNA in HepG2 cells are due to increased transcription of the human E1alpha (PDHA1) gene. Mutational analysis of the E1alpha promoter region has identified two regions, from -78 to -73 bp (CCCCTG) and from -8 to -3 bp (GCGGTG), that are responsible for the effect of glucose on promoter activity; the former exhibits a larger effect. These two sequences represent new variations of the carbohydrate-response element that has been identified in other genes. The stimulation of E1alpha promoter activity by glucose was abolished by okadaic acid at 100 nM but not at 5 nM, suggesting that glucose-mediated regulation of pyruvate dehydrogenase complex E1alpha gene transcription involves a phosphorylation/dephosphorylation mechanism, possibly involving protein phosphatase-1."	"Mouse mutants carrying deletions that remove the genes mutated in Coffin-Lowry syndrome and lactic acidosis. The mouse X-linked mutants lined and stripey are associated with lethality of affected males in utero and a striping of the coat in carrier females. We demonstrate that the underlying mutations are nested deletions which lie in the Phex-Amelx chromosomal segment conserved between man and mouse. The lined deletion contains less than approximately 0.7 cM of genetic material and includes the growth factor-regulated protein kinase gene, Rsk2. Stripey carries a larger deletion which removes approximately 2.0 cM of genetic material, including Rsk2 and the pyruvate dehydrogenase E1alpha subunit gene, Pdha1 . Since Coffin-Lowry syndrome and neonatal lactic acidosis are associated with mutations in the human homologues of Rsk2 and Pdha1 respectively, lined and stripey provide models for gene deficiencies in these disorders."	"An integrated genetic and man-mouse comparative map of the DXHXS674-Pdha1 region of the mouse X chromosome. The genes for ocular albinisim type 1 (OA1) and the Xenopus laevis-like apical protein (APXL) map between amelogenin (AMELX) and the pseudoautosomal boundary in the distal region of the human X chromosome short arm. The mouse homologues, Oa1 and Apxl, have recently been shown to lie proximal to their expected locations on the mouse X chromosome, but their positions with respect to critical gene loci in the vicinity have not been defined. By analyzing recombination events from (Mus musculus x Mus spretus) x M. musculus backcrosses, we have constructed a detailed mouse genetic map that encompasses Oa1, five other genes, and 13 microsatellite loci. The order of genes and evolutionary breakpoints (EB) is defined as centromere-(EB)-(DXHXS674, DXHXS679)-Smcx-(EB)-Oa1-(EB)-Phex (3'--&gt;5')-Pdha1-telomere. Thus Oa1 lies in a region between two previously characterized conserved segments."	"Requirement for protein synthesis during embryonic genome activation in mice. Embryonic genome activation (EGA) occurs by the 2-cell stage in mouse embryos. To understand the molecular basis of EGA, it is important to determine whether EGA can be supported by maternally inherited factors or if it requires the synthesis of additional transcription factors. We used a quantitative reverse transcription-polymerase chain reaction (RT-PCR) method to test whether protein synthesis is required for the transcriptional activation of six housekeeping genes (U2afbp-rs, Hprt, Pdha1, Prps1, Odc, and Cox7c). Cycloheximide treatment reduced the expression of these mRNAs in 2-cell embryos to the same degree as alpha-amanitin treatment. Cycloheximide treatment did not reduce the expression of maternally inherited mRNAs, indicating that its effect is specific for transcription-dependent gene expression. These results contrast with earlier results reported for the Hsp70 gene. This difference may reflect differences in promoter requirements. We conclude that protein synthesis is required for the activation of most, if not all, housekeeping genes in the mouse embryo, and that the time of EGA may be controlled, in part, by the regulated recruitment of maternal mRNAs encoding key transcription factors."	"Nance-Horan syndrome: linkage analysis in 4 families refines localization in Xp22.31-p22.13 region. Nance-Horan syndrome (NHS) is an X-linked disease characterized by severe congenital cataract with microcornea, distinctive dental findings, evocative facial features and mental impairment in some cases. Previous linkage studies have placed the NHS gene in a large region from DXS143 (Xp22.31) to DXS451 (Xp22.13). To refine this localization further, we have performed linkage analysis in four families. As the maximum expected Lod score is reached in each family for several markers in the Xp22.31-p22.13 region and linkage to the rest of the X chromosome can be excluded, our study shows that NHS is a genetically homogeneous condition. An overall maximum two-point Lod score of 9.36 (theta = 0.00) is obtained with two closely linked markers taken together. DXS207 and DXS1053 in Xp22.2. Recombinant haplotypes indicate that the NHS gene lies between DXS85 and DXS1226. Multipoint analysis yield a maximum Lod score of 9.45 with the support interval spanning a 15-cM region that includes DXS16 and DXS1229/365. The deletion map of the Xp22.3-Xp21.3 region suggests that the phenotypic variability of NHS is not related to gross rearrangement of sequences of varying size but rather to allelic mutations in a single gene, presumably located proximal to DXS16 and distal to DXS1226. Comparison with the map position of the mouse Xcat mutation supports the location of the NHS gene between the GRPR and PDHA1 genes in Xp22.2."	"Mitochondrial and nuclear genes present conflicting portraits of human origins. Human mitochondrial DNA (mtDNA) sequences reveal an abundance of polymorphic sites in which the frequencies of the segregating bases are very different. A typical polymorphism involves one base at low frequency and the other base at high frequency. In contrast, nuclear gene data sets tend to show an excess of polymorphisms in which both segregating bases are at intermediate frequencies. A new statistical test of this difference finds significant differences between mtDNA and nuclear gene data sets reported in the literature. However, differences in the polymorphism patterns could be caused by different sample origins for the different data sets. To examine the mtDNA-nuclear difference more closely, DNA sequences were generated from a portion of the X-linked pyruvate dehydrogenase E1 alpha subunit (PDHA1) locus and from a portion of mitochondrial control region I (CRI) from each of eight individuals, four from sub-Saharan Africa. The two genes revealed a significant difference in the site frequency distribution of polymorphic sites. PDHA1 revealed an excess of intermediate-frequency polymorphisms, while CRI showed an excess of sites with the low-high frequency pattern. The discrepancy suggests that mitochondrial variation has been shaped by natural selection, and may not be ideal for some questions on human origins."	"Refined localization of the pyruvate dehydrogenase E1 alpha gene (PDHA1) by linkage analysis. Pyruvate dehydrogenase (PDH) E1 alpha is a key component in the PDH complex which catalyzes the oxidative decarboxylation of pyruvate to acetyl-CoA. Defects in the gene coding for PDH E1 alpha (PDHA1) are associated with a variety of clinical symptoms, often of a severe character. In the present study, the segregation of three polymorphic CA repeats located in PDHA1 was followed in the 40 CEPH reference pedigrees. Using these data, multipoint linkage analysis was carried out, refining the genetic location of PDHA1. The 16-point map presented locates PDHA1 in an approximately 3-cM interval between DXS999 and DXS365 with odds of more than 1000:1. From known physical localizations of the flanking marker loci, PDHA1 could be regionally assigned to Xp22.1-p22.2. The information provided should be of value in clinical settings."	"An Xp22.1-p22.2 YAC contig encompassing the disease loci for RS, KFSD, CLS, HYP and RP15: refined localization of RS. To facilitate the positional cloning of the genes involved in retinoschisis (RS), keratosis follicularis spinulosa decalvans (KFSD), Coffin-Lowry syndrome (CLS), X-linked hypophosphatemic rickets (XLH, locus name HYP) and X-linked dominant cone-rod degeneration (locus name RP15), we have extended the molecular map of the Xp22 region. Screening of several YAC libraries allowed us to identify 156 YACs, 52 of which localize between markers DXS414 (P90) and DXS451 (kQST80H1). Analysis of their marker content facilitated the construction of a YAC contig from the region spanning (in this order): DXS414 - DXS987 - DXS207 - DXS1053 - DXS197 - DXS 43 - DXS1195 - DXS418 - DXS999 - PDHA1 - DXS7161 - DXS443 - DXS 7592 - DXS1229 - DXS365 - DXS7101 - DXS7593 - DXS1052 - DXS274 - DXS989 - DXS451. The region between DXS414 and DXS451 covers about 4.5-5 Mb. Two additional markers (DXS7593 and DXS7592) were placed in the region, thereby increasing the genetic resolution. Using the deduced marker order, the analysis of key recombinants in families segregating RS allowed us to refine the critical region for RS to 0.6 Mb, between DXS418 and DXS7161."	"Construction of a YAC contig and an STS map spanning 3.6 megabase pairs in Xp22.1. We have constructed a 3.6 Mb sequence tagged sites (STS)-based yeast artificial chromosome (YAC) contig, consisting of 58 individual YAC clones, spanning the region PDHA1 and DXS451 on Xp22.1. In addition to establishing the order of PDHA1, ISPK-1, DXS2504, DXS1528 and the 13 known polymorphic loci as Xpter-PDHA1-DXS443-DXS3424-ISPK-1-DXS12 29-DXS2504-DXS1528-DXS365-DXS7101- DXS1683-DXS1052-DXS274-DXS92-DXS1226-DX S41-DXS989-DXS451-Xcen, we have also developed 35 novel STSs from YAC end clones. These results provide a high density of STS markers (approximately 1 per 70 kb). Furthermore, a detailed long-range restriction map of the contig has been constructed with rare-cutter enzymes and this has refined and verified the physical distances between markers inferred from YAC sizes and their STS content. The integration of the physical mapping data with previous genetic mapping data and the use of STSs and non-chimeric YAC clones reported here should facilitate the construction of a transcript map of this region and the positional cloning of disease genes in this portion of Xp22.1."	"An amino acid substitution in the pyruvate dehydrogenase E1 alpha gene, affecting mitochondrial import of the precursor protein. A mutation in the mitochondrial targeting sequence was characterized in a male patient with X chromosome-linked pyruvate dehydrogenase E1 alpha deficiency. The mutation was a base substitution of G by C at nucleotide 134 in the mitochondrial targeting sequence of the PDHA1 gene, resulting in an arginine-to-proline substitution at codon 10 (R10P). Pyruvate dehydrogenase activity in cultured skin fibroblasts was 28% of the control value, and immunoblot analysis revealed a decreased level of pyruvate dehydrogenase E1 alpha immunoreactivity. Chimeric constructs in which the normal and mutant pyruvate dehydrogenase E1 alpha targeting sequences were attached to the mitochondrial matrix protein ornithine transcarbamylase were synthesized in a cell free translation system, and mitochondrial import of normal and mutant proteins was compared in vitro. The results show that ornithine transcarbamylase targeted by the mutant pyruvate dehydrogenase E1 alpha sequence was translocated into the mitochondrial matrix at a reduced rate, suggesting that defective import is responsible for the reduced pyruvate dehydrogenase level in mitochondria. The mutation was also present in an affected brother and the mildly affected mother. The clinical presentations of this X chromosome-linked disorder in affected family members are discussed. To our knowledge, this is the first report of an amino acid substitution in a mitochondrial targeting sequence resulting in a human genetic disease."	"Exclusion of three candidate genes, Grpr, Cxn33, and Pdha1, for the X-linked cataract gene on the distal region of the mouse chromosome X. NA"	"Expression of X-linked genes in androgenetic, gynogenetic, and normal mouse preimplantation embryos. A quantitative RT-PCR approach has been used to examine the expression of a number of X-linked genes during preimplantation development of normal mouse embryos and in androgenetic and gynogenetic mouse embryos. The data reveal moderately reduced expression of the Prps1, Hprt, and Pdha1 mRNAs in androgenetic eight-cell and morula stage embryos, but not in androgenetic blastocysts. Pgk1 mRNA abundance was severely reduced in androgenones at the eight-cell and morula stages and remained reduced, but to a lesser degree, in androgenetic blastocysts. These data indicate that paternally inherited X chromosomes are at least partially repressed in androgenones, as they are in normal XX embryos, and that the degree of this repression is chromosome position-dependent or gene-dependent. Gynogenetic embryos expressed elevated amounts of some mRNAs at the morula and blastocyst stages, indicative of a delay in dosage compensation that may be chromosome position-dependent. The Xist RNA was expressed at a greater abundance in androgenones than in gynogenones at the eight-cell and morula stages, consistent with previous studies. Xist expression was observed in both androgenones and gynogenones at the blastocyst stage. We conclude that the developmental arrest in early androgenones may be, in part, due to reduced expression of essential X-linked genes, particularly those near the X inactivation center, whereas the developmental defects of gynogenones and parthenogenones, by contrast, may be partially due to overexpression of X-linked genes in extraembryonic tissues, possibly those farthest away from the X inactivation center."	"Construction of a high-resolution linkage map for Xp22.1-p22.2 and refinement of the genetic localization of the Coffin-Lowry syndrome gene. The genes responsible for two X-linked diseases, the Coffin-Lowry syndrome (CLS) and juvenile retinoschisis (RS), have been previously mapped, through linkage studies, to an 8-cM region, in Xp22.1-p22.2, flanked distally by two tightly linked markers, DXS207 and DXS43, and proximally by DXS274. In the present study, five Genethon markers have been assigned to the (DXS207, DXS43)-DXS274 interval using somatic cell hybrids and a meiotic breakpoint panel and ordered together with three markers previously mapped to this region. A genetic map, which includes 13 loci and spans a distance of approximately 13 cM, was derived from linkage analysis using the CEPH families. The most likely locus order and map distances (in centimorgans) are Xpter-DXS16-(3.4)-(DXS207, DXS43, DXS1053)-(2.0)-(DXS999, DXS257)-(1.7)-AFM291 wf5-(1.4) - DXS443 - (2.0) - (DXS1229, DXS365) - (2.1) - (DXS1052, DXS274, DXS41)-Xcen. Analysis of multiply informative crossovers established AFM291 wf5 and DXS1052 as new flanking markers for CLS, which significantly reduces the candidate region for this disease gene to a 4- to 5-cM interval. Three markers, DXS443, DXS1229, and DXS365, mapping within this interval showed complete cosegregation with the disease phenotype, giving a multipoint lod score of 14.2. The present map provides the framework for constructing a YAC contig for the CLS and RS region and should be useful for refining the localization of other disease genes mapping to this region. The panel of somatic cell hybrids characterized for the present study has also allowed us to refine the localization of five genes (CALB3, GRPR, PDHA1, GLRA2, and PHKA2) and two expressed sequence tags (DXS1118E and DXS1006E) previously assigned to the Xp22 region."	"A novel X gene with a widely transcribed Y-linked homologue escapes X-inactivation in mouse and human. A new gene, designated Smcx, was cloned from the mouse X chromosome by its homology to the Y located gene Smcy. Using direct in situ hybridisation Smcx was mapped to the distal end of the mouse X chromosome (XF2-XF4) and its human homologue, SMCX, was mapped to proximal Xp (Xp11.1-Xp11.2). Further meiotic mapping in the mouse placed Smcx in the Plp-Pdha1 interval. As Smcx/SMCX have widely expressed homologues on the Y chromosome, they appeared good candidates for genes that escape X-inactivation. In the human we show this to be the case as SMCX is expressed in hamster-human hybrids containing either an active or inactive human X chromosome. Two alleles of Smcx were found to be expressed in T(16;X)16H female mice despite the intact X chromosome being inactive in all cells. This indicates that Smcx is also not subject to X-inactivation and provides the first example of a gene that is expressed from inactive and active X chromosomes in the mouse."	"New insights into the man-mouse comparative map of the X chromosome. Two conserved loci, DXHX674h and DXHX679h, which map to Xp11.22-Xp11.21 on the human X chromosome short arm, have been positioned between the loci for proteolipid protein (Plp) and the E1a subunit of pyruvate dehydrogenase (Pdha1) in the distal region of the mouse X chromosome using Mus musculus x Mus spretus interspecific backcrosses. These data, together with previous comparative mapping studies on another conserved locus (DXF34) and the locus that encodes the erythroid transcription factor (GATA1), reveal that loci that map to the proximal region of the human X chromosome short arm lie in four different regions of the mouse X chromosome and that the human and mouse X chromosomes contain a minimum of eight conserved segments."	"A eutherian X-linked gene, PDHA1, is autosomal in marsupials: a model for the evolution of a second, testis-specific variant in eutherian mammals. We report the cloning and mapping of a gene (PDHA) for the pyruvate dehydrogenase E1 alpha subunit in marsupials. In situ hybridization and Southern blot analysis show that PDHA is autosomal in marsupials, mapping to chromosome 3q in Sminthopsis macroura and 5p in Macropus eugenii. Since these locations represent a region that was translocated to the p arm of the human X chromosome following marsupial/eutherian divergence, we suggest that the marsupial PDHA gene is homologous to PDHA1, the somatic eutherian isoform located on human Xp and mouse X. Only one copy of PDHA is found in marsupials, whereas a second, testis-specific, intronless form is observed in eutherian mammals. We also suggest that translocation of PDHA to the eutherian X chromosome, which is inactivated during spermatogenesis, led to the evolution of a second testis-specific locus by retroposition to an autosome."	"A novel mutation and a polymorphism in the X chromosome located pyruvate dehydrogenase E1 alpha gene (PDHA1). NA"	"A four-nucleotide insertion hotspot in the X chromosome located pyruvate dehydrogenase E1 alpha gene (PDHA1). NA"	"Novel sequences conserved on the human and mouse X chromosomes. We have cloned and mapped 28 single-copy probes from a pool of cosmids derived from the human X chromosome. Four of the probes detected strongly conserved sequences in murine DNA; all have been localized to the proximal region of the human X chromosome short arm. Comparative mapping of these sequences in the mouse genome demonstrates that, while X linkage is conserved, this region of the human X chromosome is not maintained as a contiguous segment on the mouse X chromosome. The mapping of one novel conserved sequence between Plp and Pdha1 on the mouse X chromosome defines a previously unknown region of homology. The mapping of another probe that detects a novel sequence family (DXF34) close to the X chromosome centromere in both species suggests that a block of pericentromeric material is conserved between the X chromosomes of man and mouse."	"The locus for pyruvate dehydrogenase E1 alpha subunit (Pdha1) lies between Plp and Amg on the mouse X chromosome. NA"	"Mapping of the glycine receptor alpha 2-subunit gene and the GABAA alpha 3-subunit gene on the mouse X chromosome. We have mapped the gene for the alpha 2-subunit of the inhibitory glycine receptor (Glra2) to the telomeric end of the mouse X chromosome by backcross analysis of a Mus musculus/Mus spretus interspecific cross. In addition, we have extended the mapping of the GABAA alpha 3-subunit receptor gene (Gabra3). A deduced gene order of cen-Cybb-Hprt-DXPas6-Gabra3-Rsvp-Gdx/Cf-8- Dmd-Pgk-1-DXPas2-Plp-DXPas1-Glra2-tel places Gabra3 proximal to the visual pigment gene Rsvp and Glra2 in the region of loci for hypophosphatemia (Hyp), steroid sulfatase (Sts), and the E1 alpha-subunit of pyruvate dehydrogenase (Pdha1). This establishes the XF region of the mouse X chromosome as homologous with the Xp22.1-p22.3 region of the human X chromosome and indicates the presence of an evolutionary breakpoint in the region of Xp21.3."	"A testis-specific form of the human pyruvate dehydrogenase E1 alpha subunit is coded for by an intronless gene on chromosome 4. The pyruvate dehydrogenase (PDH) complex converts pyruvate to acetyl CoA, an essential step in aerobic glucose metabolism. We have previously shown that the gene for the E1 alpha subunit of this complex, expressed in somatic tissues, is located on band p22.1 of the human X chromosome. This gene, PDHA1, contains 10 introns and spans approximately 17 kb. An autosomal locus, PDHA2, showing significant cross-hybridization with a PDH E1 alpha cDNA probe, was detected on chromosome 4, in the region q22-q23. We here report the isolation of human testis-specific PDH E1 alpha cDNA clones. The similarity with the X chromosome-linked cDNA coding sequence at the nucleotide level is 84%. Specific amplification using the polymerase chain reaction confirmed the presence of a testis-specific mRNA and indicated that postmeiotic spermatogenic cells express this subunit. In situ hybridization with a unique probe from the 3' untranslated region of the testis-specific cDNA showed that the gene for this form of PDH E1 alpha is localized on chromosome 4 in the region q22-q23. The autosomal human gene was isolated from a chromosome 4-specific genomic library. The transcribed region of this gene is identical to the testis-specific cDNA sequence. It completely lacks introns and possesses characteristics of a functional processed gene."	"Two unlinked genes for the pyruvate dehydrogenase complex in Aspergillus nidulans. The activity of the overall pyruvate dehydrogenase complex was found to be similar in extracts of Aspergillus nidulans after growth on either sucrose or acetate. Eight mutants lacking the activity of this complex were found among some 200 glycolytic mutants selected for their inability to grow on sucrose. The absence of pyruvate dehydrogenase complex activity was also confirmed for a mutant, g6 (pdhA1), isolated previously. Studies with the mutants supported the existence of two unlinked genes, pdhA and pdhB, controlling the function of the complex. In vivo and in vitro complementation between mutations at the two loci were shown by the ability of forced heterokaryons to grow on sucrose and by the restoration of overall pyruvate dehydrogenase complex activity in mixed cell-free extracts. The mutations were recessive to their wild-type alleles, and the pdhA and pdhB loci were assigned to linkage groups I and V, respectively."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ACTC1"	"hypertrophic cardiomyopathy"	"Penetrance of Hypertrophic Cardiomyopathy in Sarcomere Protein Mutation Carriers. Predictive genetic screening of relatives of patients with hypertrophic cardiomyopathy (HCM) caused by sarcomere protein (SP) gene mutations is current standard of care, but there are few data on long-term outcomes in mutation carriers without HCM. The aim of this study was to determine the incidence of new HCM diagnosis in SP mutation carriers. This was a retrospective analysis of adult and pediatric SP mutation carriers identified during family screening who did not fulfill diagnostic criteria for HCM at first evaluation. The authors evaluated 285 individuals from 156 families (median age 14.2 years [interquartile range: 6.8 to 31.6 years], 141 [49.5%] male individuals); 145 (50.9%) underwent cardiac magnetic resonance (CMR). Frequency of causal genes was as follows: MYBPC3 n = 123 (43.2%), MYH7 n = 69 (24.2%), TNNI3 n = 39 (13.7%), TNNT2 n = 34 (11.9%), TPM1 n = 9 (3.2%), MYL2 n = 6 (2.1%), ACTC1 n = 1 (0.4%), multiple mutations n = 4 (1.4%). Median follow-up was 8.0 years (interquartile range: 4.0 to 13.3 years) and 86 (30.2%) patients developed HCM; 16 of 50 (32.0%) fulfilled diagnostic criteria on CMR but not echocardiography. Estimated HCM penetrance at 15 years of follow-up was 46% (95% confidence interval [CI]: 38% to 54%). In a multivariable model adjusted for age and stratified for CMR, independent predictors of HCM development were male sex (hazard ratio [HR]: 2.91; 95% CI: 1.82 to 4.65) and abnormal electrocardiogram (ECG) (HR: 4.02; 95% CI: 2.51 to 6.44); TNNI3 variants had the lowest risk (HR: 0.19; 95% CI: 0.07 to 0.55, compared to MYBPC3). Following a first negative screening, approximately 50% of SP mutation carriers develop HCM over 15 years of follow-up. Male sex and an abnormal ECG are associated with a higher risk of developing HCM. Regular CMR should be considered in long-term screening."	"Transcriptomic Profile of Primary Culture of Skeletal Muscle Cells Isolated from Semitendinosus Muscle of Beef and Dairy Bulls. The aim of the study was to identify differences in the transcriptomic profiles of primary muscle cell cultures derived from the semitendinosus muscle of bulls of beef breeds (Limousin (LIM) and Hereford (HER)) and a dairy breed (Holstein-Friesian (HF)) (n = 4 for each breed). Finding a common expression pattern for proliferating cells may point to such an early orientation of the cattle beef phenotype at the transcriptome level of unfused myogenic cells. To check this hypothesis, microarray analyses were performed. The analysis revealed 825 upregulated and 1300 downregulated transcripts similar in both beef breeds (LIM and HER) and significantly different when compared with the dairy breed (HF) used as a reference. Ontological analyses showed that the largest group of genes were involved in muscle organ development. Muscle cells of beef breeds showed higher expression of genes involved in myogenesis (including erbb-3, myf5, myog, des, igf-1, tgfb2) and those encoding proteins comprising the contractile apparatus (acta1, actc1, myh3, myh11, myl1, myl2, myl4, tpm1, tnnt2, tnnc1). The obtained results confirmed our hypothesis that the expression profile of several groups of genes is common in beef breeds at the level of proliferating satellite cells but differs from that observed in typical dairy breeds."	"Identification of Potential Key Genes for Pathogenesis and Prognosis in Prostate Cancer by Integrated Analysis of Gene Expression Profiles and the Cancer Genome Atlas. Background: Prostate cancer (PCa)is a malignancy of the urinary system with a high incidence, which is the second most common male cancer in the world. There are still huge challenges in the treatment of prostate cancer. It is urgent to screen out potential key biomarkers for the pathogenesis and prognosis of PCa. Methods: Multiple gene differential expression profile datasets of PCa tissues and normal prostate tissues were integrated analysis by R software. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analysis of the overlapping Differentially Expressed Genes (DEG) were performed. The STRING online database was used in conjunction with Cytospace software for protein-protein interaction (PPI) network analysis to define hub genes. The relative mRNA expression of hub genes was detected in Gene Expression Profiling Interactive Analysis (GEPIA) database. A prognostic gene signature was identified by Univariate and multivariate Cox regression analysis. Results: Three hundred twelve up-regulated genes and 85 down-regulated genes were identified from three gene expression profiles (GSE69223, GSE3325, GSE55945) and The Cancer Genome Atlas Prostate Adenocarcinoma (TCGA-PRAD) dataset. Seven hub genes (FGF2, FLNA, FLNC, VCL, CAV1, ACTC1, and MYLK) further were detected, which related to the pathogenesis of PCa. Seven prognostic genes (BCO1, BAIAP2L2, C7, AP000844.2, ASB9, MKI67P1, and TMEM272) were screened to construct a prognostic gene signature, which shows good predictive power for survival by the ROC curve analysis. Conclusions: We identified a robust set of new potential key genes in PCa, which would provide reliable biomarkers for early diagnosis and prognosis and would promote molecular targeting therapy for PCa."	"Isogenic models of hypertrophic cardiomyopathy unveil differential phenotypes and mechanism-driven therapeutics. Hypertrophic cardiomyopathy (HCM) is a prevalent and complex cardiovascular condition. Despite being strongly associated with genetic alterations, wide variation of disease penetrance, expressivity and hallmarks of progression complicate treatment. We aimed to characterize different human isogenic cellular models of HCM bearing patient-relevant mutations to clarify genetic causation and disease mechanisms, hence facilitating the development of effective therapeutics. We directly compared the p.β-MHC-R453C and p.ACTC1-E99K HCM-associated mutations in human induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) and their healthy isogenic counterparts, generated using CRISPR/Cas9 genome editing technology. By harnessing several state-of-the-art HCM phenotyping techniques, these mutations were investigated to identify similarities and differences in disease progression and hypertrophic signaling pathways, towards establishing potential targets for pharmacological treatment. CRISPR/Cas9 knock-in of the genetically-encoded calcium indicator R-GECO1.0 to the AAVS1 locus into these disease models resulted in calcium reporter lines. Confocal line scan analysis identified calcium transient arrhythmias and intracellular calcium overload in both models. The use of optogenetics and 2D/3D contractility assays revealed opposing phenotypes in the two mutations. Gene expression analysis highlighted upregulation of CALM1, CASQ2 and CAMK2D, and downregulation of IRF8 in p.β-MHC-R453C mutants, whereas the opposite changes were detected in p.ACTC1-E99K mutants. Contrasting profiles of nuclear translocation of NFATc1 and MEF2 between the two HCM models suggest differential hypertrophic signaling pathway activation. Calcium transient abnormalities were rescued with combination of dantrolene and ranolazine, whilst mavacamten reduced the hyper-contractile phenotype of p.ACTC1-E99K hiPSC-CMs. Our data show that hypercontractility and molecular signaling within HCM are not uniform between different gene mutations, suggesting that a 'one-size fits all' treatment underestimates the complexity of the disease. Understanding where the similarities (arrhythmogenesis, bioenergetics) and differences (contractility, molecular profile) lie will allow development of therapeutics that are directed towards common mechanisms or tailored to each disease variant, hence providing effective patient-specific therapy."	"Comprehensive analysis reveals a six-gene signature and associated drugs in mimic inguinal hernia model. Inguinal hernia often occurs in elderly men, and more than one in five men will undergo inguinal hernia repair during their lifetime. Nevertheless, the underlying molecular mechanisms of the pathogenesis behind hernia formation is still unclear. The aims in this study are finding out the potential gene markers and available drugs. Firstly, we re-analyzed the GSE92748 datasets, including four high and four low expressions of humanized aromatase transgenic mice, which refers to mimic humanized hernia, to identify differentially expressed genes (DEGs) in Arom<sup>hum</sup>H group compared with Arom<sup>hum</sup>L group by the criteria: fold change ≥ 1.4 and adjust P value &lt; 0.05. Secondly, the gene ontology and signaling pathway enrichment analyses of these DEGs were performed through online databases. In addition to the protein and protein interaction networks among these DEGs were constructed and the significant gene modules were chosen for further gene-drug interaction analysis. Lastly, the existing drugs target to these module genes were screen to explore the therapeutic effect for treatment of hernia. We have identified 64 DEGs, which were associated with muscle system process, actomyosin structure organization etc. Moreover, the significant module genes in PPI networks were Cmya1, Casq2, Cmya5, Ttn, Csrp3 and Actc1, and one existing drug, DEXAMETHASONE, have targeted to Actc1 gene. In the paper, we identified 6 potential genes and one existing drug for inguinal hernia, which might be used as targets and drugs for the study of inguinal hernia."	"Use of a human embryonic stem cell model to discover GABRP, WFDC2, VTCN1 and ACTC1 as markers of early first trimester human trophoblast. Human placental development during early pregnancy is poorly understood. Many conceptuses are lost at this stage. It is thought that preeclampsia, intrauterine growth restriction and other placental syndromes that manifest later in pregnancy may originate early in placentation. Thus, there is a need for models of early human placental development. Treating human embryonic stem cells (hESCs) with BMP4 (bone morphogenic protein 4) plus A83-01 (ACTIVIN/NODAL signaling inhibitor) and PD173074 (fibroblast growth factor 2 or FGF2 signaling inhibitor) (BAP conditions) induces differentiation to the trophoblast lineage (hESCBAP), but it is not clear which stage of trophoblast differentiation these cells resemble. Here, comparison of the hESCBAP transcriptome to those of trophoblasts from human blastocysts, trophoblast stem cells and placentas collected in the first-third trimester of pregnancy by principal component analysis suggests that hESC after 8 days BAP treatment most resemble first trimester syncytiotrophoblasts. To further test this hypothesis, transcripts were identified that are expressed in hESCBAP but not in cultures of trophoblasts isolated from term placentas. Proteins encoded by four genes, GABRP (gamma-aminobutyric acid type A receptor subunit Pi), WFDC2 (WAP four-disulfide core domain 2), VTCN1 (V-set domain containing T-cell activation inhibitor 1) and ACTC1 (actin alpha cardiac muscle 1), immunolocalized to placentas at 4-9 weeks gestation, and their expression declined with gestational age (R2 = 0.61-0.83). None are present at term. Expression was largely localized to syncytiotrophoblast of both hESCBAP cells and placental material from early pregnancy. WFDC2, VTCN1 and ACTC1 have not previously been described in placenta. These results support the hypothesis that hESCBAP represent human trophoblast analogous to that of early first trimester and are a tool for discovery of factors important to this stage of placentation."	"Transcriptome for the breast muscle of Jinghai yellow chicken at early growth stages. The meat quality of yellow feathered broilers is better than the quality of its production. Growth traits are important in the broiler industry. The exploration of regulation mechanisms for the skeletal muscle would help to increase the growth performance of chickens. At present, some progress has been made by researchers, but the molecular mechanisms of the skeletal muscle still remain unclear and need to be improved. In this study, the breast muscles of fast- and slow-growing female Jinghai yellow chickens (F4F, F8F, F4S, F8S) and slow-growing male Jinghai yellow chickens (M4S, M8S) aged four and eight weeks were selected for transcriptome sequencing (RNA-seq). All analyses of differentially expressed genes (DEGs) and functional enrichment were performed. Finally, we selected nine DEGs to verify the accuracy of the sequencing by qPCR. The differential gene expression analysis resulted in 364, 219 and 111 DEGs (adjusted P-value ≤ 0.05) for the three comparison groups, F8FvsF4F, F8SvsF4S, and M8SvsM4S, respectively. Three common DEGs (ADAMTS20, ARHGAP19, and Novel00254) were found, and they were all highly expressed at four weeks of age. In addition, some other genes related to growth and development, such as ANXA1, COL1A1, MYH15, TGFB3 and ACTC1, were obtained. The most common DEGs (n = 58) were found between the two comparison groups F8FvsF4F and F8SvsF4S, and they might play important roles in the growth of female chickens. The Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway also showed some significant enrichment pathways, for instance, extracellular matrix (ECM)-receptor interaction, focal adhesion, cell cycle, and DNA replication. The two pathways that were significantly enriched in the F8FvsF4F group were all contained in that of F8SvsF4S. The same two pathways were ECM-receptor interaction and focal adhesion, and they had great influence on the growth of chickens. However, many differences existed between male and female chickens in regards to common DEGs and KEGG pathways. The results would help to reveal the regulation mechanism of the growth and development of chickens and serve as a guideline to propose an experimental design on gene function with the DEGs and pathways."	"Inhibition of myostatin prevents microgravity-induced loss of skeletal muscle mass and strength. The microgravity conditions of prolonged spaceflight are known to result in skeletal muscle atrophy that leads to diminished functional performance. To assess if inhibition of the growth factor myostatin has potential to reverse these effects, mice were treated with a myostatin antibody while housed on the International Space Station. Grip strength of ground control mice increased 3.1% compared to baseline values over the 6 weeks of the study, whereas grip strength measured for the first time in space showed flight animals to be -7.8% decreased in strength compared to baseline values. Control mice in space exhibited, compared to ground-based controls, a smaller increase in DEXA-measured muscle mass (+3.9% vs +5.6% respectively) although the difference was not significant. All individual flight limb muscles analyzed (except for the EDL) weighed significantly less than their ground counterparts at the study end (range -4.4% to -28.4%). Treatment with myostatin antibody YN41 was able to prevent many of these space-induced muscle changes. YN41 was able to block the reduction in muscle grip strength caused by spaceflight and was able to significantly increase the weight of all muscles of flight mice (apart from the EDL). Muscles of YN41-treated flight mice weighed as much as muscles from Ground IgG mice, with the exception of the soleus, demonstrating the ability to prevent spaceflight-induced atrophy. Muscle gene expression analysis demonstrated significant effects of microgravity and myostatin inhibition on many genes. Gamt and Actc1 gene expression was modulated by microgravity and YN41 in opposing directions. Myostatin inhibition did not overcome the significant reduction of microgravity on femoral BMD nor did it increase femoral or vertebral BMD in ground control mice. In summary, myostatin inhibition may be an effective countermeasure to detrimental consequences of skeletal muscle under microgravity conditions."	"To construct a ceRNA regulatory network as prognostic biomarkers for bladder cancer. Emerging evidence demonstrates that competing endogenous RNA (ceRNA) hypothesis has played a role in molecular biological mechanisms of cancer occurrence and development. But the effect of ceRNA network in bladder cancer (BC), especially lncRNA-miRNA-mRNA regulatory network of BC, was not completely expounded. By means of The Cancer Genome Atlas (TCGA) database, we compared the expression of RNA sequencing (RNA-Seq) data between 19 normal bladder tissue and 414 primary bladder tumours. Then, weighted gene co-expression network analysis (WGCNA) was conducted to analyse the correlation between two sets of genes with traits. Interactions between miRNAs, lncRNAs and target mRNAs were predicted by MiRcode, miRDB, starBase, miRTarBase and TargetScan. Next, by univariate Cox regression and LASSO regression analysis, the 86 mRNAs obtained by prediction were used to construct a prognostic model which contained 4 mRNAs (ACTC1 + FAM129A + OSBPL10 + EPHA2). Then, by the 4 mRNAs in the prognostic model, a ceRNA regulatory network with 48 lncRNAs, 14 miRNAs and 4 mRNAs was constructed. To sum up, the ceRNA network can further explore gene regulation and predict the prognosis of BC patients."	"Genome-wide association study for buffalo mammary gland morphology. This research communication describes a genome-wide association study for Italian buffalo mammary gland morphology. Three single nucleotide polymorphisms (AX-85117983, AX-8509475 and AX-85117518) were identified to be significantly associated with buffalo anterior teat length, posterior teat length and distance between anterior and posterior teat, respectively. Two significant signals for buffalo mammary gland morphology were observed in two genomic regions on the chromosome 10, and chromosome 20. One of the regions located on the chromosome 10 has the most likely candidate genes ACTC1 and GJD2, both of which have putative roles in the regulation of mammary gland development. This study provides new insights into the genetic variants of buffalo mammary gland morphology and may be beneficial for understanding of the genetic regulation of mammary growth."	"Identification of the Differentially Expressed Genes of Muscle Growth and Intramuscular Fat Metabolism in the Development Stage of Yellow Broilers. High-quality chicken meat is an important source of animal protein for humans. Gene expression profiles in breast muscle tissue were determined, aiming to explore the common regulatory genes relevant to muscle and intramuscular fat (IMF) during the developmental stage in chickens. Results show that breast muscle weight (BMW), breast meat percentage (BMP, %), and IMF (%) continuously increased with development. A total of 256 common differentially expressed genes (DEGs) during the developmental stage were screened. Among them, some genes related to muscle fiber hypertrophy were upregulated (e.g., CSRP3, LMOD2, MUSTN1, MYBPC1), but others (e.g., ACTC1, MYL1, MYL4) were downregulated from Week 3 to Week 18. During this period, expression of some DEGs related to the cells cycle (e.g., CCNB3, CCNE2, CDC20, MCM2) changed in a way that genetically suggests possible inhibitory regulation on cells number. In addition, DEGs associated with energy metabolism (e.g., ACOT9, CETP, LPIN1, DGAT2, RBP7, FBP1, PHKA1) were found to regulate IMF deposition. Our data identified and provide new insights into the common regulatory genes related to muscle growth, cell proliferation, and energy metabolism at the developmental stage in chickens."	"Reevaluating the Genetic Contribution of Monogenic Dilated Cardiomyopathy. Dilated cardiomyopathy (DCM) is genetically heterogeneous, with &gt;100 purported disease genes tested in clinical laboratories. However, many genes were originally identified based on candidate-gene studies that did not adequately account for background population variation. Here we define the frequency of rare variation in 2538 patients with DCM across protein-coding regions of 56 commonly tested genes and compare this to both 912 confirmed healthy controls and a reference population of 60 706 individuals to identify clinically interpretable genes robustly associated with dominant monogenic DCM. We used the TruSight Cardio sequencing panel to evaluate the burden of rare variants in 56 putative DCM genes in 1040 patients with DCM and 912 healthy volunteers processed with identical sequencing and bioinformatics pipelines. We further aggregated data from 1498 patients with DCM sequenced in diagnostic laboratories and the Exome Aggregation Consortium database for replication and meta-analysis. Truncating variants in TTN and DSP were associated with DCM in all comparisons. Variants in MYH7, LMNA, BAG3, TNNT2, TNNC1, PLN, ACTC1, NEXN, TPM1, and VCL were significantly enriched in specific patient subsets, with the last 2 genes potentially contributing primarily to early-onset forms of DCM. Overall, rare variants in these 12 genes potentially explained 17% of cases in the outpatient clinic cohort representing a broad range of adult patients with DCM and 26% of cases in the diagnostic referral cohort enriched in familial and early-onset DCM. Although the absence of a significant excess in other genes cannot preclude a limited role in disease, such genes have limited diagnostic value because novel variants will be uninterpretable and their diagnostic yield is minimal. In the largest sequenced DCM cohort yet described, we observe robust disease association with 12 genes, highlighting their importance in DCM and translating into high interpretability in diagnostic testing. The other genes analyzed here will need to be rigorously evaluated in ongoing curation efforts to determine their validity as Mendelian DCM genes but have limited value in diagnostic testing in DCM at present. This data will contribute to community gene curation efforts and will reduce erroneous and inconclusive findings in diagnostic testing."	"Influence of cytoskeleton organization on recombinant protein expression by CHO cells. In this study, we assessed the importance of cytoskeleton organization in the mammalian cells used to produce therapeutic proteins. Two cytoskeletal genes, Actin alpha cardiac muscle 1 (ACTC1) and a guanosine triphosphate GTPase-activating protein (TAGAP), were found to be upregulated in highly productive therapeutic protein-expressing Chinese hamster ovary (CHO) cells selected by the deprivation of vitamin B5. We report here that the overexpression of the ACTC1 protein was able to improve significantly recombinant therapeutic production, as well as to decrease the levels of toxic lactate metabolic by-products. ACTC1 overexpression was accompanied by altered as well as decreased polymerized actin, which was associated with high protein production by CHO cell cultured in suspension. We suggest that the depolymerization of actin and the possible modulation of integrin signaling, as well as changes in basal metabolism, may be driving the increase of protein secretion by CHO cells."	"Data on the role of cardiac α-actin (ACTC1) gene mutations on SRF-signaling. We recently reported a novel, heterozygous, and non-synonymous ACTC1 mutation (p.Gly247Asp or G247D) in a large, multi-generational family, causing atrial-septal defect followed by late-onset dilated cardiomyopathy (DCM). We also found that the G247D ACTC1 mutation negatively regulated serum response (SRF)-signaling thereby contributing to the late-onset DCM observed in human patients carrying this mutation (&quot;A cardiac α-actin (ACTC1) p. Gly247Asp mutation inhibits SRF-signaling in vitro in neonatal rat cardiomyocytes&quot; [1]). There are some ACTC1 mutations known to date, majority of which, though, have not been investigated for their functional consequence. We thus aimed at determining the functional impact of various ACTC1 gene mutations on SRF-signaling using SM22-response element driven firefly luciferase activity assays in C2C12 cells."	"Systematic Review of Genotype-Phenotype Correlations in Noncompaction Cardiomyopathy. Background A genetic cause can be identified in 30% of noncompaction cardiomyopathy patients (NCCM) with clinical features ranging from asymptomatic cardiomyopathy to heart failure with major adverse cardiac events (MACE). Methods and Results To investigate genotype-phenotype correlations, the genotypes and clinical features of genetic NCCM patients were collected from the literature. We compared age at diagnosis, cardiac features and risk for MACE according to mode of inheritance and molecular effects for defects in the most common sarcomere genes and NCCM subtypes. Geno- and phenotypes of 561 NCCM patients from 172 studies showed increased risk in children for congenital heart defects (P&lt;0.001) and MACE (P&lt;0.001). In adult NCCM patients the main causes were single missense mutations in sarcomere genes. Children more frequently had an X-linked or mitochondrial inherited defect (P=0.001) or chromosomal anomalies (P&lt;0.001). MYH7 was involved in 48% of the sarcomere gene mutations. MYH7 and ACTC1 mutations had lower risk for MACE than MYBPC3 and TTN (P=0.001). The NCCM/dilated cardiomyopathy cardiac phenotype was the most frequent subtype (56%; P=0.022) and was associated with an increased risk for MACE and high risk for left ventricular systolic dysfunction (&lt;0.001). In multivariate binary logistic regression analysis MYBPC3, TTN, arrhythmia -, non-sarcomere non-arrhythmia cardiomyopathy-and X-linked genes were genetic predictors for MACE. Conclusions Sarcomere gene mutations were the most common cause in adult patients with lower risk of MACE. Children had multi-systemic disorders with severe outcome, suggesting that the diagnostic and clinical approaches should be adjusted to age at presentation. The observed genotype-phenotype correlations endorsed that DNA diagnostics for NCCM is important for clinical management and counseling of patients."	"Proteomic analysis for identifying the differences in molecular profiling between fanconi anaemia and aplastic anaemia. Treatment and prognosis of Fanconi anaemia (FA) and acquired aplastic anaemia (AA) differ. However, delayed and inappropriate treatments are administered in FA due to its similarities to AA in presentation. The objective of the current study was to elucidate differences between the molecular mechanisms underlying FA and AA as well as to identify biomarkers and pathways associated with FA via bioinformatics analyses. Proteomic data were obtained from bone marrow samples of patients with FA and AA. Gene ontology analysis was performed using a Database for Annotation, Visualization and Integrated Discovery. KEGG pathway enrichment analyses were conducted using the ClueGO plug-in in Cytoscape. A DEP-associated protein-protein interaction (PPI) network was constructed using STRING and visualized in Cytoscape. A total of 114 DEPs, including 71 upregulated proteins and 43 downregulated proteins, were present in the FA samples, compared with those in the AA samples. Upregulated proteins were enriched in the nucleosome assembly, canonical glycolysis, glycolytic process, and the glycolysis/gluconeogenesis pathway, whereas downregulated proteins were enriched in relation to immune response, negative regulation of apoptosis, proteolysis and CoA biosynthesis. Eight hub proteins with a high degree of connectivity were obtained as follows: alpha-enolase (ENO1), HSP90AA1, phosphoglycerate kinase 1 (PGK1), HSP90AB1, ACTC1, ACTBL2, EEF1A1 and CFL1. Upregulation of ENO1 and CFL1 in patients with FA was confirmed through a WB experiment, and substantiated by the results of data analyses. Bioinformatics analyses are useful for identification of biomarkers and pathways associated with FA and AA. Some crucial DEPs, such as ENO1, PGK1, ACTC1, ACTBL2, EEF1A1 and CFL1, may play an important role in FA and show potential as serological markers for its early diagnosis."	"Quantitative Proteomic and Network Analysis of Differentially Expressed Proteins in PBMC of Friedreich's Ataxia (FRDA) Patients. Friedreich's ataxia (FRDA) is an autosomal recessive neurodegenerative disorder caused by an expanded (GAA) trinucleotide repeat in the FXN gene. The extended repeats expansion results in reduced transcription and, thereby, decreased expression of the mitochondrial protein, frataxin. Given the ongoing drug trials, identification of reliable and easily accessible biomarkers for monitoring disease progression and therapeutic intervention is a foremost requirement. In this study, comparative proteomic profiling of PBMC proteins from FRDA patients and age- and gender-matched healthy controls was done using 2D-Differential in-Gel Electrophoresis (2D-DIGE). Protein-protein interaction (PPI) was analyzed using BioGRID and STRING pathway analysis tools. Using biological variance analysis (BVA) and LC/MS, we found eight differentially expressed proteins with fold change ≥1.5; p ≤ 0.05. Based on their cellular function, the identified proteins showed a strong pathological role in neuroinflammation, cardiomyopathy, compromised glucose metabolism, and iron transport, which are the major clinical manifestations of FRDA. Protein-protein network analysis of differentially expressed proteins with frataxin further supports their involvement in the pathophysiology of FRDA. Considering their crucial role in the cardiac and neurological complications, respectively, the two down-regulated proteins, actin α cardiac muscle 1 (ACTC1) and pyruvate dehydrogenase E1 component subunit β (PDHE1), are suggested as potential prognostic markers for FRDA."	"Proteomic Analysis of Primary Colon Cancer and Synchronous Solitary Liver Metastasis. Colon cancer is prone to distant metastases to other sites and the risk of recurrence is relatively high. Therefore, the identification of liver metastasis-related factors is important for the diagnosis or treatment of colon cancer. The aim of this study was to identify the metastasis-related factors that are differentially expressed in synchronous solitary liver metastasis compared to primary colon cancer. Tissues of primary colon cancer and associated with liver metastases of five patients were used for mass spectrometry. Identified proteins were validated by western blotting. The in silico analysis was performed using the STRING database and GeneMANIA. We identified 58 differentially expressed proteins (DEPs), including 51 under-expressed and 7 over-expressed proteins among a total of 164 identified proteins. Major hubs of protein-protein networks were ACTC1, PRDX6, TPI1, and ALDH1A1. DEPs were located in the extracellular region and cytoplasm and were involved in the regulation of enzymatic activity. The metabolic process was significantly enriched in biological processes and an involvement in the KEGG pathway. These DEPs can potentially be used as biomarkers for the diagnosis of liver metastasis and they may provide a new strategy for developing anti-metastatic liver drugs in colon cancer patients."	"A cardiac α-actin (ACTC1) p. Gly247Asp mutation inhibits SRF-signaling in vitro in neonatal rat cardiomyocytes. We recently identified a novel, heterozygous, and non-synonymous ACTC1 mutation (p.Gly247Asp or G247D) in a large, multi-generational family, causing atrial-septal defect followed by late-onset dilated cardiomyopathy (DCM). Molecular dynamics studies revealed possible actin polymerization defects as G247D mutation resides at the juncture of side-chain interaction, which was indeed confirmed by in vitro actin polymerization assays. Since polymerization/de-polymerization is important for the activation of Rho-GTPase-mediated serum response factor (SRF)-signaling, we studied the effect of G247D mutation using luciferase assay. Overexpression of native human ACTC1 in neonatal rat cardiomyocytes (NRVCMs) strongly activated SRF-signaling both in C2C12 cells and NRVCMs, whereas, G247D mutation abolished this activation. Mechanistically, we found reduced GTP-bound Rho-GTPase and increased nuclear localization of globular actin in NRVCMs overexpressing mutant ACTC1 possibly causing inhibition of SRF-signaling activation. In conclusion, our data suggests that human G247D ACTC1 mutation negatively regulates SRF-signaling likely contributing to the late-onset DCM observed in mutation carrier patients."	"Cardiac α-Actin (ACTC1) Gene Mutation Causes Atrial-Septal Defects Associated With Late-Onset Dilated Cardiomyopathy. Familial atrial septal defect (ASD) has previously been attributed primarily to mutations in cardiac transcription factors. Here, we report a large, multi-generational family (78 members) with ASD combined with a late-onset dilated cardiomyopathy and further characterize the consequences of mutant α-actin. We combined a genome-wide linkage analysis with cell biology, microscopy, and molecular biology tools to characterize a novel ACTC1 (cardiac α-actin) mutation identified in association with ASD and late-onset dilated cardiomyopathy in a large, multi-generational family. Using a genome-wide linkage analysis, the ASD disease locus was mapped to chromosome 15q14 harboring the ACTC1 gene. In 15 affected family members, a heterozygous, nonsynonymous, and fully penetrant mutation (p. Gly247Asp) was identified in exon 5 of ACTC1 that was absent in all healthy family members (n=63). In silico tools predicted deleterious consequences of this variant that was found absent in control databases. Ultrastructural analysis of myocardial tissue of one of the mutation carriers showed sarcomeric disarray, myofibrillar degeneration, and increased apoptosis, while cardiac proteomics revealed a significant increase in extracellular matrix proteins. Consistently, structural defects and increased apoptosis were also observed in neonatal rat ventricular cardiomyocytes overexpressing the mutant, but not native human ACTC1. Molecular dynamics studies and additional mechanistic analyses in cardiomyocytes confirmed actin polymerization/turnover defects, thereby affecting contractility. A combined phenotype of ASD and late-onset heart failure was caused by a heterozygous, nonsynonymous ACTC1 mutation. Mechanistically, we found a shared molecular mechanism of defective actin signaling and polymerization in both cardiac development and contractile function. Detection of ACTC1 mutations in patients with ASD may thus have further clinical implications with regard to monitoring for (late-onset) dilated cardiomyopathy."	"Demographic model for inheritable cardiac disease. The cardiac muscle proteins, generating and regulating energy transduction during a heartbeat, assemble in the sarcomere into a cyclical machine repetitively translating actin relative to myosin filaments. Myosin is the motor transducing ATP free energy into actin movement against resisting force. Cardiac myosin binding protein C (mybpc3) regulates shortening velocity probably by transient N-terminus binding to actin while its C-terminus strongly binds the myosin filament. Inheritable heart disease associated mutants frequently modify these proteins involving them in disease mechanisms. Nonsynonymous single nucleotide polymorphisms (SNPs) cause single residue substitutions with independent characteristics (sequence location, residue substitution, human demographic, and allele frequency) hypothesized to decide dependent phenotype and pathogenicity characteristics in a feed-forward neural network model. Trial models train and validate on a dynamic worldwide SNP database for cardiac muscle proteins then predict phenotype and pathogenicity for any single residue substitution in myosin, mybpc3, or actin. A separate Bayesian model formulates conditional probabilities for phenotype or pathogenicity given independent SNP characteristics. Neural/Bayes forecasting tests SNP pathogenicity vs (in)dependent SNP characteristics to assess individualized disease risk and in particular to elucidate gender and human subpopulation bias in disease. Evident subpopulation bias in myosin SNP pathogenicities imply myosin normally engages multiple sarcomere proteins functionally. Consistent with this observation, mybpc3 forms a third actomyosin interaction competing with myosin essential light chain N-terminus suggesting a novel strain-dependent mechanism adapting myosin force-velocity to load dynamics. The working models, and the integral myosin/mybpc3 motor concept, portends the wider considerations involved in understanding heart disease as a systemic maladaptation."	"Functional study of 14-3-3 protein epsilon (YWHAE) in keratinocytes: microarray integrating bioinformatics approaches. Previously, we detected that 14-3-3 protein epsilon (YWHAE) was involved in the pathogenesis of atopic dermatitis (AD) and tyrosinase-mediated pigmentation. In this study, we aimed to identify critical factors associated with YWHAE in human keratinocytes using high-throughput screening (HTS) approaches to reveal its functions in skin. We overexpressed YWHAE in human HaCaT keratinocytes and then conducted serial HTS studies, including RNA sequencing integrated with antibody arrays and the implementation of bioinformatics algorithms. Cumulatively, these approaches identified several novel genes in keratinocytes associated with the function of YWHAE including KRT9, KRT1, KRT6C, BST2, CIB2, APH1B, ACTC1, IFI27, TUBA1A, CAPN6, UTY, MX2, and MAPK15, based on RNA sequencing data, and MAPK1, MMP2, TYK2, NOS3, and CASP3, based on antibody array data. In particular, CD37 is a unique gene that was detected and validated in all the methods applied in this study. By integrating the datasets obtained from these HTS studies and utilizing the strengths of each method, we obtained new insights into the functional role of YWHAE in skin keratinocytes. The approach used here could contribute to the clinical understanding of YWHAE-associated applications in the treatment of AD disease. AbbreviationsDAVIDthe database for annotation, visualization and integrated discoveryHTSHigh-throughput screeningKEGGKyoto Encyclopedia of Genes and GenomesPPIprotein-protein interactionsCommunicated by Ramaswamy H. Sarma."	"Molecular insight into taste and aroma of sliced dry-cured ham induced by protein degradation undergone high-pressure conditions. High pressure processing (HPP) is currently being developed to increase the shelf-life of sliced dry-cured ham in convenience package without detrimental effects on texture and sensorial characteristics. This study is focused on protein degradation under pressure conditions and its contribution to taste and aroma. Samples of sliced dry-cured ham undergone HPP (600 Pa, 0-35 °C) were analyzed from different approaches including proteomic and chemical analysis (amino acids and volatile compounds). Proteomic analysis revealed that high-pressure conditions caused a higher level of proteolysis, displaying that actin (ACTC1) was differentially degraded, unlike myosin. Furthermore, main Strecker metabolites-isoleucine and leucine-were more abundant at lower temperatures as opposed to 2-methyl butanal and 3-methyl butanal under HPP. Moreover, this study confirmed that HPP affected positively linear aldehydes (pentanal, hexanal, heptanal and nonanal) because of produce a decrease of them, which could improve flavor and taste of dry-cured ham."	"Genetic Variants Are Not Rare in ICD Candidates with Dilated Cardiomyopathy: Time for Next-Generation Sequencing? Sudden cardiac death (SCD) risk stratification in dilated cardiomyopathy (DCM) has been based on left ventricular ejection fraction (LVEF), even though SCD may occur with LVEF &gt; 35%. Family history of unexplained SCD, especially in the young, raises concern about potential inheritable risk factors. It remains largely unknown how genetic tests can be integrated into clinical practice, particularly in the selection of implantable cardioverter defibrillator (ICD) candidates. We aimed to assess the diagnostic yield of genetic testing in DCM patients with a class I recommendation for ICD implantation, based on current guidelines. We included ambulatory stable adult patients with idiopathic or familial DCM with previously implanted ICD. Molecular analysis included 15 genes (LMNA, MYH7, MYBPC3, TNNT2, ACTC1, TPM1, CSRP3, TCAP, SGCD, PLN, MYL2, MYL3, TNNI3, TAZ, and LDB3) using next-generation sequencing. We evaluated 21 patients, 12 (57%) males and 9 (43%) with familial DCM, including 3 (14%) with a family history of premature unexplained SCD. Mean age at DCM diagnosis was 40 ± 2 years, and mean age at ICD implantation was 50 ± 12 years. LVEF was 27 ± 9%, and LV end-diastolic diameter was 65 ± 7 mm. Genetic variants were found in six (29%) patients, occurring in 5 genes: TPM1, TNNT2, MYH7, PLN, and MYBPC3. The majority were classified as variants of uncertain significance. Family history of SCD was present in both patients with PLN variants. In patients with DCM and ICD, genetic variants could be identified in a significant proportion of patients in several genes, highlighting the potential role of genetics in DCM SCD risk stratification."	"Copy number variation detection in Chinese indigenous cattle by whole genome sequencing. Copy number variation (CNV) refers to a kind of structural variation, having functional and evolutionary effects on phenotypes. Thus far, further elucidation of the CNVs in different Chinese indigenous cattle breeds by whole genome sequencing have yet not been done. In this study, a comprehensive genomic analysis was performed on 75 cattle individuals including six Chinese indigenous cattle breeds and two non-native specialized beef cattle breeds. Based on the 11,486 CNVRs discovered, population analysis was performed, showed that all the cattle breeds clustered in to three clades, consistent with their lineages Bos taurus, Bos taurus × Bos indicus and Bos indicus. Importantly, a set of CNVRs related genes were found to be associated with the traits of interest, which include meat production or quality (CAST, ACTC1, etc.), adaption (BLA-DQB, EGLN2, etc.) and coat color (KIT, MITF, etc.). These results provide valuable full genome variation resources for Chinese bovine genome research and would be helpful for cattle breeding and selection programs in the future."	"Clinical and genetic insights into non-compaction: a meta-analysis and systematic review on 7598 individuals. Left ventricular non-compaction has been increasingly diagnosed in recent years. However, it is still debated whether non-compaction is a pathological condition or a physiological trait. In this meta-analysis and systematic review, we compare studies, which investigated these two different perspectives. Furthermore, we provide a comprehensive overview on the clinical outcome as well as genetic background of left ventricular non-compaction cardiomyopathy in adult patients. We retrieved PubMed/Medline literatures in English language from 2000 to 19/09/2018 on clinical outcome and genotype of patients with non-compaction. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Altogether, 35 studies with 2271 non-compaction patients were included in our meta-analysis. The mean age at diagnosis was the mid of their fifth decade. Two-thirds of patients were male. Congenital heart diseases including atrial or ventricular septum defect or Ebstein anomaly were reported in 7% of patients. Twenty-four percent presented with family history of cardiomyopathy. The mean frequency of neuromuscular diseases was 5%. Heart rhythm abnormalities were reported frequently: conduction disease in 26%, supraventricular tachycardia in 17%, and sustained or non-sustained ventricular tachycardia in 18% of patients. Three important outcome measures were reported including systemic thromboembolic events with a mean frequency of 9%, heart transplantation with 4%, and adequate ICD therapy with 15%. Nine studies investigated the genetics of non-compaction cardiomyopathy. The most frequently mutated gene was TTN with a pooled frequency of 11%. The average frequency of MYH7 mutations was 9%, for MYBPC3 mutations 5%, and for CASQ2 and LDB3 3% each. TPM1, MIB1, ACTC1, and LMNA mutations had an average frequency of 2% each. Mutations in PLN, HCN4, TAZ, DTNA, TNNT2, and RBM20 were reported with a frequency of 1% each. We also summarized the results of eight studies investigating the non-compaction in altogether 5327 athletes, pregnant women, patients with sickle cell disease, as well as individuals from population-based cohorts, in which the presence of left ventricular hypertrabeculation ranged from 1.3 to 37%. The summarized data indicate that non-compaction may lead to unfavorable outcome in different cardiomyopathy entities. The presence of key features in a multimodal diagnostic approach could distinguish between benign morphological trait and manifest cardiomyopathy."	"Analyses of MicroRNA and mRNA Expression Profiles Reveal the Crucial Interaction Networks and Pathways for Regulation of Chicken Breast Muscle Development. There is a lack of understanding surrounding the molecular mechanisms involved in the development of chicken skeletal muscle in the late postnatal stage, especially in the regulation of breast muscle development related genes, pathways, miRNAs and other factors. In this study, 12 cDNA libraries and 4 small RNA libraries were constructed from Gushi chicken breast muscle samples from 6, 14, 22, and 30 weeks. A total of 15,508 known transcripts, 25,718 novel transcripts, 388 known miRNAs and 31 novel miRNAs were identified by RNA-seq in breast muscle at the four developmental stages. Through correlation analysis of miRNA and mRNA expression profiles, it was found that 417, 370, 240, 1,418, 496, and 363 negatively correlated miRNA-mRNA pairs of W14 vs. W6, W22 vs. W6, W22 vs. W14, W30 vs. W6, W30 vs. W14, and W30 vs. W22 comparisons, respectively. Based on the annotation analysis of these miRNA-mRNA pairs, we constructed the miRNA-mRNA interaction network related to biological processes, such as muscle cell differentiation, striated muscle tissue development and skeletal muscle cell differentiation. The interaction networks for signaling pathways related to five KEGG pathways (the focal adhesion, ECM-receptor interaction, FoxO signaling, cell cycle, and p53 signaling pathways) and PPI networks were also constructed. We found that ANKRD1, EYA2, JSC, AGT, MYBPC3, MYH11, ACTC1, FHL2, RCAN1, FOS, EGR1, and FOXO3, PTEN, AKT1, GADD45, PLK1, CCNB2, CCNB3 and other genes were the key core nodes of these networks, most of which are targets of miRNAs. The FoxO signaling pathway was in the center of the five pathway-related networks. In the PPI network, there was a clear interaction among PLK1 and CDK1, CCNB2, CDK1, and GADD45B, and CDC45, ORC1 and MCM3 genes. These results increase the understanding for the molecular mechanisms of chicken breast muscle development, and also provide a basis for studying the interactions between genes and miRNAs, as well as the functions of the pathways involved in postnatal developmental regulation of chicken breast muscle."	"Placental epigenetics for evaluation of fetal congenital heart defects: Ventricular Septal Defect (VSD). Ventricular Septal Defect (VSD), the most common congenital heart defect, is characterized by a hole in the septum between the right and left ventricles. The pathogenesis of VSD is unknown in most clinical cases. There is a paucity of data relevant to epigenetic changes in VSD. The placenta is a fetal tissue crucial in cardiac development and a potentially useful surrogate for evaluating the development of heart tissue. To understand epigenetic mechanisms that may play a role in the development of VSD, genome-wide DNA methylation assay on placentas of 8 term subjects with isolated VSD and no known or suspected genetic syndromes and 10 unaffected controls was performed using the Illumina HumanMethylation450 BeadChip assay. We identified a total of 80 highly accurate potential CpGs in 80 genes for detection of VSD; area under the receiver operating characteristic curve (AUC ROC) 1.0 with significant 95% CI (FDR) p-values &lt; 0.05 for each individual locus. The biological processes and functions for many of these differentially methylated genes are previously known to be associated with heart development or disease, including cardiac ventricle development (HEY2, ISL1), heart looping (SRF), cardiac muscle cell differentiation (ACTC1, HEY2), cardiac septum development (ISL1), heart morphogenesis (SRF, HEY2, ISL1, HEYL), Notch signaling pathway (HEY2, HEYL), cardiac chamber development (ISL1), and cardiac muscle tissue development (ACTC1, ISL1). In addition, we identified 8 microRNAs that have the potential to be biomarkers for the detection of VSD including: miR-191, miR-548F1, miR-148A, miR-423, miR-92B, miR-611, miR-2110, and miR-548H4. To our knowledge this is the first report in which placental analysis has been used for determining the pathogenesis of and predicting VSD."	"Suppression of lymphocyte apoptosis in spleen by CXCL13 after porcine circovirus type 2 infection and regulatory mechanism of CXCL13 expression in pigs. Porcine circovirus-associated disease (PCVAD) is one of the most serious infectious diseases in pigs worldwide. The primary causative agent of PCVAD is porcine circovirus type 2 (PCV2), which can cause lymphoid depletion and immunosuppression in pigs. Our previous study demonstrated that Laiwu (LW) pigs, a Chinese indigenous pig breed, have stronger resistance to PCV2 infection than Yorkshire × Landrace (YL) pigs. In this study, we found that the YL pigs showed more severe lymphocyte apoptosis and higher viral load in the spleen tissue than LW pigs. To illustrate the differential gene expression between healthy and infected spleens, transcriptome profiling of spleen tissues from PCV2-infected and control YL pigs was compared by RNA sequencing. A total of 90 differentially expressed genes (DEGs) was identified, including CD207, RSAD2, OAS1, OAS2, MX2, ADRB3, CXCL13, CCR1, and ADRA2C, which were significantly enriched in gene ontology (GO) terms related to the defense response to virus and cell-cell signaling, and another nine DEGs, KLF11, HGF, PTGES3, MAP3K11, XDH, CYCS, ACTC1, HSPH1, and RYR2, which were enriched in GO terms related to regulation of cell proliferation or apoptosis. Among these DEGs, the CXCL13 gene, which can suppress lymphocyte apoptosis during PCV2 infection, was significantly down-regulated in response to PCV2 infection in YL but not in LW pigs. By analysis of the regulatory elements in the promoter and 3'-untranslated region (3'-UTR) of porcine CXCL13, we found that the single nucleotide polymorphism (SNP) -1014 G (LW) &gt; A (YL) and the Sus scrofa microRNA-296-5p (ssc-miR-296-5p) participated in regulating CXCL13 expression during the response to PCV2 infection."	"Targeted next-generation sequencing in Slovak cardiomyopathy patients. For the first time we used targeted next-generation sequencing to detect candidate pathogenic variants in Slovak cardiomyopathy patients. Targeted next-generation sequencing is considered to be the best practice in genetic diagnostics of cardiomyopathies. However, in Slovakia, with high cardiomyopathies prevalence of 1/440, the current diagnostic tests are still based on Sanger sequencing of a few genes. Consequently, little is known about the exact contribution of pathogenic variants in known cardiomyopathy genes in Slovak patients. We used a panel of 46 known cardiomyopathy-associated genes to detect genetic variants in 16 Slovak cardiomyopathy patients (6 dilated, 8 hypertrophic, 2 non-compaction subtypes). We identified candidate pathogenic variants in 11 of 16 patients (69 %). Genes with higher count of candidate pathogenic variants were MYBPC3, MYH and TTN, each with 3 different variants. Seven variants ACTC1 (c.329C&gt;T), ANKRD1 (c.683G&gt;T), MYH7 (c.1025C&gt;T), PKP2 (c.2003delA), TTN (c.51655C&gt;T, c.84841G&gt;T, c.101874_101881delAGAATTTG) have been detected for the first time and might represent Slovak-specific genetic cause. We have performed genetic testing of previously untested Slovak cardiomyopathy patients using next-generation sequencing cardiomyopathy gene panel. Given the high percentage of candidate pathogenic variants it should be recommended to implement this method into routine genetic diagnostic practice in Slovakia (Tab. 4, Ref. 39)."	"Evaluating the Clinical Validity of Hypertrophic Cardiomyopathy Genes. Genetic testing for families with hypertrophic cardiomyopathy (HCM) provides a significant opportunity to improve care. Recent trends to increase gene panel sizes often mean variants in genes with questionable association are reported to patients. Classification of HCM genes and variants is critical, as misclassification can lead to genetic misdiagnosis. We show the validity of previously reported HCM genes using an established method for evaluating gene-disease associations. A systematic approach was used to assess the validity of reported gene-disease associations, including associations with isolated HCM and syndromes including left ventricular hypertrophy. Genes were categorized as having definitive, strong, moderate, limited, or no evidence of disease causation. We also reviewed current variant classifications for HCM in ClinVar, a publicly available variant resource. Fifty-seven genes were selected for curation based on their frequent inclusion in HCM testing and prior association reports. Of 33 HCM genes, only 8 (24%) were categorized as definitive ( MYBPC3, MYH7, TNNT2, TNNI3, TPM1, ACTC1, MYL2, and MYL3); 3 had moderate evidence ( CSRP3, TNNC1, and JPH2; 33%); and 22 (66%) had limited (n=16) or no evidence (n=6). There were 12 of 24 syndromic genes definitively associated with isolated left ventricular hypertrophy. Of 4191 HCM variants in ClinVar, 31% were in genes with limited or no evidence of disease association. The majority of genes previously reported as causative of HCM and commonly included in diagnostic tests have limited or no evidence of disease association. Systematically curated HCM genes are essential to guide appropriate reporting of variants and ensure the best possible outcomes for HCM families."	"Binary Colloidal Crystals Drive Spheroid Formation and Accelerate Maturation of Human-Induced Pluripotent Stem Cell-Derived Cardiomyocytes. The development of human-induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) provides significant advances to cell therapy, disease modeling, and drug screening applications. However, the current differentiation protocol is inefficient in mimicking biophysical and biochemical characteristics of cardiac niche. Hence, immature cardiomyocytes are often generated. In this study, hiPSC-CMs were generated on a new family of substrates called monolayer binary colloidal crystals (BCCs). Four BCCs were fabricated with different sizes (2 or 5 or 0.4 or 0.2 μm) and materials [Si or polystyrene (PS) or poly(methyl methacrylate)] abbreviated as 2PS, 5PS, 2PM, and 5PM. BCCs have complex surface micro-/nanotopographies and heterogeneous chemistries which are important modulators in microenvironments in vitro. The results showed that hiPSCs formed adhered spheroids with strong pluripotent markers ( Oct4, Nanog, and Sox2) on PM surfaces compared to PS and flat surfaces. After 30-day differentiation, hiPSC-CMs on PM surfaces showed markedly improved myofibril ultrastructures, Ca<sup>2+</sup> handling, and electrophysiological properties, indicating that more mature hiPSC-CMs were generated. hiPSC-CMs generated on 5PM are more similar to adult heart tissue compared to other surfaces in terms of genes ( ACTC1, TNNT2, RYR2, SERCA2a, SCN5a, KCNJ2, CACNA1c, ITGB1, GJA1, MYH6, and MYH7) and protein (ssTnI and cTnI) expressions. We further demonstrated that 5PM surfaces facilitated cadherin switching (from E- to N-) during cardiac differentiation and mature N-cadherin expression, which were positively correlated with the cardiogensis markers ( GATA4, MEF2c, and NKX2.5). This study illuminated that a tailored surface nanotopography was beneficial in hiPSC culture and in situ cardiac differentiation. This one-step approach and BCCs can be a next-generation tool for hiPSC expansion and CM differentiation."	"Novel phenotype-genotype correlations of hypertrophic cardiomyopathy caused by mutation in α-actin and myosin-binding protein genes in three unrelated Chinese families. The correlations between genotype and phenotype in hypertrophic cardiomyopathy (HCM) have not been established. Mutation of α-actin gene (ACTC1) is a rare cause of HCM. This study aimed to explore novel genotype-phenotype correlations in HCM patients with the variants in ACTC1 and myosin-binding protein (MYBPC3) genes in three unrelated Chinese families. Clinical, electrocardiographic, and echocardiographic examinations were performed in three Han pedigrees. Exon and boarding intron analysis of 96 cardio-disease-related genes was performed using second-generation sequencing on three probands. The candidate variants were validated in 14 available family members and 300 unrelated healthy controls by bi-directional Sanger sequencing. The pathogenicity and conservation were calculated using MutationTaster, PolyPhen-2, SIFT, and Clustal X. Pathogenicity classification of the variants was based on American College of Medical Genetics and Genomics (ACMG) guidelines. Nine members fulfilled diagnostic criteria for HCM with clinical characteristics, electrocardiographic, and echocardiographic findings. Two candidate variants in ACTC1 p.Asp26Asn (ACTC1-D26N) and MYBPC3 p.Arg215Cys (MYBPC3-R215C) were identified in patients. Only ACTC1-D26N strongly co-segregated with the HCM phenotype. Seven patients who harbored variant ACTC-D26N only were diagnosed with non-obstructive HCM, and four of these patients exhibited a triphasic left ventricular (LV) filling pattern. Two patients carrying both ACTC1-D26N and MYBPC3-R215C variants showed a higher LV outflow tract pressure gradient. Bioinformatics analysis revealed that the two variants were deleterious and highly conserved across species. According to ACMG guidelines, ACTC1-D26N is classified as a likely pathogenic mutation. The second variation MYBPC3-R215C may function as a genetic modifier, which remains uncertain here. Novel p.(Asp26Asn) mutation of ACTC1 was associated with HCM phenotype, and the penetrance is extremely high (∼81.8%) in adults. The second variation, MYBPC3-R215C may function as a genetic modifier, which remains uncertain here."	"Isogenic Pairs of hiPSC-CMs with Hypertrophic Cardiomyopathy/LVNC-Associated ACTC1 E99K Mutation Unveil Differential Functional Deficits. Hypertrophic cardiomyopathy (HCM) is a primary disorder of contractility in heart muscle. To gain mechanistic insight and guide pharmacological rescue, this study models HCM using isogenic pairs of human induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) carrying the E99K-ACTC1 cardiac actin mutation. In both 3D engineered heart tissues and 2D monolayers, arrhythmogenesis was evident in all E99K-ACTC1 hiPSC-CMs. Aberrant phenotypes were most common in hiPSC-CMs produced from the heterozygote father. Unexpectedly, pathological phenotypes were less evident in E99K-expressing hiPSC-CMs from the two sons. Mechanistic insight from Ca<sup>2+</sup> handling expression studies prompted pharmacological rescue experiments, wherein dual dantroline/ranolazine treatment was most effective. Our data are consistent with E99K mutant protein being a central cause of HCM but the three-way interaction between the primary genetic lesion, background (epi)genetics, and donor patient age may influence the pathogenic phenotype. This illustrates the value of isogenic hiPSC-CMs in genotype-phenotype correlations."	"Genetic Basis of Severe Childhood-Onset Cardiomyopathies. Childhood cardiomyopathies are progressive and often lethal disorders, forming the most common cause of heart failure in children. Despite severe outcomes, their genetic background is still poorly characterized. The purpose of this study was to characterize the genetics of severe childhood cardiomyopathies in a countrywide cohort. The authors collected a countrywide cohort, KidCMP, of 66 severe childhood cardiomyopathies from the sole center in Finland performing cardiac transplantation. For genetic diagnosis, next-generation sequencing and subsequent validation using genetic, cell biology, and computational approaches were used. The KidCMP cohort presents remarkable early-onset and severe disorders: the median age of diagnosis was 0.33 years, and 17 patients underwent cardiac transplantation. The authors identified the pathogenic variants in 39% of patients: 46% de novo, 34% recessive, and 20% dominantly-inherited. The authors report NRAP underlying childhood dilated cardiomyopathy, as well as novel phenotypes for known heart disease genes. Some genetic diagnoses have immediate implications for treatment: CALM1 with life-threatening arrhythmias, and TAZ with good cardiac prognosis. The disease genes converge on metabolic causes (PRKAG2, MRPL44, AARS2, HADHB, DNAJC19, PPA2, TAZ, BAG3), MAPK pathways (HRAS, PTPN11, RAF1, TAB2), development (NEK8 and TBX20), calcium signaling (JPH2, CALM1, CACNA1C), and the sarcomeric contraction cycle (TNNC1, TNNI3, ACTC1, MYH7, NRAP). Childhood cardiomyopathies are typically caused by rare, family-specific mutations, most commonly de novo, indicating that next-generation sequencing of trios is the approach of choice in their diagnosis. Genetic diagnoses may suggest intervention strategies and predict prognosis, offering valuable tools for prioritization of patients for transplantation versus conservative treatment."	"Leptin impairs the therapeutic effect of ionizing radiation in oral squamous cell carcinoma cells. Leptin, an important hormone controlling energy homeostasis, has been linked to the pathogenesis of oral squamous cell carcinoma (OSCC). Evidence indicates that head and neck cancer patients undergoing radiotherapy show decreased leptin levels after radiotherapy treatment. Thus, we investigated, through phenotypic and molecular analyses, whether leptin can compromise the therapeutic effect of ionizing radiation and neoplastic behavior of OSCC cells. The human OSCC-derived cell lines SCC9 and SCC4 were treated with human recombinant leptin and exposed to 6 Gy of irradiation. We performed the in vitro assays of cell migration, death, proliferation, and colony-forming ability. The reactive oxygen species (ROS) levels and proteome analysis by mass spectrometry were also conducted. Leptin was able to increase cell proliferation, migration, and colony-forming ability, despite the suppressive effect induced by irradiation. Furthermore, the leptin promoted a significant reduction of ROS intracellular accumulation, and increased expression of the cancer-related proteins, as ACTC1, KRT6A, and EEF2 in irradiated OSCC cells. Our findings suggest that leptin impairs responsivity of OSCC cells to the ionizing radiation, reducing the suppressive effects of irradiation on the neoplastic phenotype, and increasing protein expression critical to carcinogenesis."	"Proteome and transcriptome profiling of equine myofibrillar myopathy identifies diminished peroxiredoxin 6 and altered cysteine metabolic pathways. Equine myofibrillar myopathy (MFM) causes exertional muscle pain and is characterized by myofibrillar disarray and ectopic desmin aggregates of unknown origin. To investigate the pathophysiology of MFM, we compared resting and 3 h postexercise transcriptomes of gluteal muscle and the resting skeletal muscle proteome of MFM and control Arabian horses with RNA sequencing and isobaric tags for relative and absolute quantitation analyses. Three hours after exercise, 191 genes were identified as differentially expressed (DE) in MFM vs. control muscle with &gt;1 log2 fold change (FC) in genes involved in sulfur compound/cysteine metabolism such as cystathionine-beta-synthase ( CBS, ↓4.51), a cysteine and neutral amino acid membrane transporter ( SLC7A10, ↓1.80 MFM), and a cationic transporter (SLC24A1, ↓1.11 MFM). In MFM vs. control at rest, 284 genes were DE with &gt;1 log2 FC in pathways for structure morphogenesis, fiber organization, tissue development, and cell differentiation including &gt; 1 log2 FC in cardiac alpha actin ( ACTC1 ↑2.5 MFM), cytoskeletal desmoplakin ( DSP ↑2.4 MFM), and basement membrane usherin ( USH2A ↓2.9 MFM). Proteome analysis revealed significantly lower antioxidant peroxiredoxin 6 content (PRDX6, ↓4.14 log2 FC MFM), higher fatty acid transport enzyme carnitine palmitoyl transferase (CPT1B, ↑3.49 MFM), and lower sarcomere protein tropomyosin (TPM2, ↓3.24 MFM) in MFM vs. control muscle at rest. We propose that in MFM horses, altered cysteine metabolism and a deficiency of cysteine-containing antioxidants combined with a high capacity to oxidize fatty acids and generate ROS during aerobic exercise causes chronic oxidation and aggregation of key proteins such as desmin."	"Sarcomere gene variants act as a genetic trigger underlying the development of left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a primary cardiomyopathy with heterogeneous genetic origins. The aim of this study was to elucidate the role of sarcomere gene variants in the pathogenesis and prognosis of LVNC. We screened 82 Japanese patients (0-35 years old), with a diagnosis of LVNC, for mutations in seven genes encoding sarcomere proteins, by direct DNA sequencing. We identified variants in a significant proportion of cases (27%), which were associated with poor prognosis (p = 0.012), particularly variants in TPM1, TNNC1, and ACTC1 (p = 0.012). To elucidate the pathological role, we developed and studied human-induced pluripotent stem cells (hiPSCs) from a patient carrying a TPM1 p.Arg178His mutation, who underwent heart transplantation. These cells displayed pathological changes, with mislocalization of tropomyosin 1, causing disruption of the sarcomere structure in cardiomyocytes, and impaired calcium handling. Microarray analysis indicated that the TPM1 mutation resulted in the down-regulation of the expression of numerous genes involved in heart development, and positive regulation of cellular process, especially the calcium signaling pathway. Sarcomere genes are implicated as genetic triggers in the development of LVNC, regulating the expression of numerous genes involved in heart development, or modifying the severity of disease."	"COPD is accompanied by co-ordinated transcriptional perturbation in the quadriceps affecting the mitochondria and extracellular matrix. Skeletal muscle dysfunction is a frequent extra-pulmonary manifestation of Chronic Obstructive Pulmonary Disease (COPD) with implications for both quality of life and survival. The underlying biology nevertheless remains poorly understood. We measured global gene transcription in the quadriceps using Affymetrix HuGene1.1ST arrays in an unselected cohort of 79 stable COPD patients in secondary care and 16 healthy age- and gender-matched controls. We detected 1,826 transcripts showing COPD-related variation. Eighteen exhibited ≥2fold changes (SLC22A3, FAM184B, CDKN1A, FST, LINC01405, MUSK, PANX1, ANKRD1, C12orf75, MYH1, POSTN, FRZB, TNC, ACTC1, LINC00310, MYH3, MYBPH and AREG). Thirty-one transcripts possessed previous reported evidence of involvement in COPD through genome-wide association, including FAM13A. Network analysis revealed a substructure comprising 6 modules of co-expressed genes. We identified modules with mitochondrial and extracellular matrix features, of which IDH2, a central component of the mitochondrial antioxidant pathway, and ABI3BP, a proposed switch between proliferation and differentiation, represent hubs respectively. COPD is accompanied by coordinated patterns of transcription in the quadriceps involving the mitochondria and extracellular matrix and including genes previously implicated in primary disease processes."	"Xenopus SOX5 enhances myogenic transcription indirectly through transrepression. In anamniotes, somite compartimentalization in the lateral somitic domain leads simultaneously to myotome and dermomyotome formation. In the myotome, Xenopus Sox5 is co-expressed with Myod1 in the course of myogenic differentiation. Here, we studied the function of Sox5 using a Myod1-induced myogenic transcription assay in pluripotent cells of animal caps. We found that Sox5 enhances myogenic transcription of muscle markers Des, Actc1, Ckm and MyhE3. The use of chimeric transactivating or transrepressive Sox5 proteins indicates that Sox5 acts as a transrepressor and indirectly stimulates myogenic transcription except for the slow muscle-specific genes Myh7L, Myh7S, Myl2 and Tnnc1. We showed that this role is shared by Sox6, which is structurally similar to Sox5, both belonging to the SoxD subfamily of transcription factors. Moreover, Sox5 can antagonize the inhibitory function of Meox2 on myogenic differentiation. Meox2 which is a dermomyotome marker, represses myogenic transcription in Myod-induced myogenic transcription assay and in Nodal5-induced mesoderm from animal cap assay. The inhibitory function of Meox2 and the pro-myogenic function of Sox5 were confirmed during Xenopus normal development by the use of translation-blocking oligomorpholinos and dexamethasone inducible chimeric Sox5 and Meox2 proteins. We have therefore identified a new function for SoxD proteins in muscle cells, which can indirectly enhance myogenic transcription through transrepression, in addition to the previously identified function as a direct repressor of slow muscle-specific genes."	"Actin, alpha, cardiac muscle 1 (ACTC1) knockdown inhibits the migration of glioblastoma cells in vitro. Recurrence is inevitable in glioblastomas (GBMs) and requires multifactorial processes. One of the factors that cause recurrence is the strong migratory capacity of GBM cells. We recently reported that actin, alpha, cardiac muscle 1 (ACTC1) could serve as a marker to detect GBM migration in clinical cases. This study aimed to clarify whether the knockdown of highly expressed ACTC1 can inhibit the migratory capacity of cells in the GBM cell line. ACTC1 expression was examined using immunocytochemistry and droplet digital polymerase chain reaction. The motility of GBM cells that were either treated with siRNA to knock down ACTC1 or untreated were investigated using a time-lapse study in vitro. The relatively high ACTC1 expression was confirmed in a GBM cell line, i.e., U87MG. The ACTC1 expression in U87MG cells was significantly inhibited by ACTC1-siRNA (p &lt; 0.05). A cell movement tracking assay using time-lapse imaging demonstrated the inhibition of U87MG cell migration by ACTC1 knockdown. The quantitative cell migration analysis demonstrated that the distance traversed during 72 h was 3607 ± 458 (median ± SD) μm by untreated U87MG cells and 3570 ± 748 μm by negative control siRNA-treated cells. However, the distance migrated by ACTC1-siRNA-treated cells during 72 h was significantly shorter (1265 ± 457 μm, p &lt; 0.01) than the controls. ACTC1 knockdown inhibits U87MG cell migration."	"Chimeric Adeno-Associated Virus-Mediated Cardiovascular Reprogramming for Ischemic Heart Disease. Here, we demonstrated chimeric adeno-associated virus (chimeric AAV), AAV-DJ-mediated cardiovascular reprogramming strategy to generate new cardiomyocytes and limit collagen deposition in cardiac fibroblasts by inducing synergism of chimeric AAV-expressing Gata4, Mef2c, Tbx5 (AAV-GMT)-mediated heart reprogramming and chimeric AAV-expressing thymosin β4 (AAV-Tβ4)-mediated heart regeneration. AAV-GMT promoted a gradual increase in expression of cardiac-specific genes, including Actc1, Gja1, Myh6, Ryr2, and cTnT, with a gradual decrease in expression of a fibrosis-specific gene, procollagen type I and here AAV-Tβ4 help to induce GMT expression, providing a chimeric AAV-mediated therapeutic cell reprogramming strategy for ischemic heart diseases."	"CD105<sup>+</sup> Porcine Endometrial Stromal Mesenchymal Stem Cells Possess Differentiation Potential Toward Cardiomyocyte-Like Cells and Insulin-Producing β Cell-Like Cells In Vitro. Porcine mesenchymal stem cells (MSCs) are similar to human MSCs, hence considered a valuable model for assessing potential for cell therapy. Porcine adipose-derived MSCs (AD-MSCs) and endometrial stromal MSCs (EMSCs) displayed fibroblast-like morphology and were positive for MSC markers CD73, CD90, and CD105 and negative for hematopoietic markers CD34 and CD45. The EMSCs had similar or slightly higher growth rate compared to AD-MSCs, and similar percentage of cells of both EMSCs and AD-MSCs were at G0/G1 and G2/M phases; however, EMSCs had significantly ( P &lt; .05) higher percentage of cells at S phase of cell cycle than AD-MSCs. Transdifferentiation ability to cardiomyocyte-like cells was confirmed in differentiated cells by the expression of lineage-specific marker genes such as DES, ACTA2, cTnT, and ACTC1 by real-time quantitative polymerase chain reaction (RT-qPCR). Furthermore, cardiomyocyte-specific protein markers cTnT and ACTC1 were expressed in completely differentiated cells. Endodermal differentiation capacity of EMSCs to pancreatic β cell-like cells was evident with the changes in morphology and the expression of β-cell-specific marker genes such as PDX1, GLUT2, SST, NKX6.1, PAX4, and NGN3 as analyzed by RT-qPCR. The differentiated cells secreted insulin and C-peptide upon glucose challenge and also they expressed insulin, PDX1, PAX4, NGN3, and GLUT2 at protein level as assessed by immunostaining confirming the successful differentiation to β cell-like cells. Porcine EMSCs possess all the characteristics of MSCs and are suitable model for studying molecular mechanisms of cellular differentiation."	"RNA-Seq Meta-analysis identifies genes in skeletal muscle associated with gain and intake across a multi-season study of crossbred beef steers. Feed intake and body weight gain are economically important inputs and outputs of beef production systems. The purpose of this study was to discover differentially expressed genes that will be robust for feed intake and gain across a large segment of the cattle industry. Transcriptomic studies often suffer from issues with reproducibility and cross-validation. One way to improve reproducibility is by integrating multiple datasets via meta-analysis. RNA sequencing (RNA-Seq) was performed on longissimus dorsi muscle from 80 steers (5 cohorts, each with 16 animals) selected from the outside fringe of a bivariate gain and feed intake distribution to understand the genes and pathways involved in feed efficiency. In each cohort, 16 steers were selected from one of four gain and feed intake phenotypes (n = 4 per phenotype) in a 2 × 2 factorial arrangement with gain and feed intake as main effect variables. Each cohort was analyzed as a single experiment using a generalized linear model and results from the 5 cohort analyses were combined in a meta-analysis to identify differentially expressed genes (DEG) across the cohorts. A total of 51 genes were differentially expressed for the main effect of gain, 109 genes for the intake main effect, and 11 genes for the gain x intake interaction (Pcorrected &lt; 0.05). A jackknife sensitivity analysis showed that, in general, the meta-analysis produced robust DEGs for the two main effects and their interaction. Pathways identified from over-represented genes included mitochondrial energy production and oxidative stress pathways for the main effect of gain due to DEG including GPD1, NDUFA6, UQCRQ, ACTC1, and MGST3. For intake, metabolic pathways including amino acid biosynthesis and degradation were identified, and for the interaction analysis the pathways identified included GADD45, pyridoxal 5'phosphate salvage, and caveolar mediated endocytosis signaling. Variation among DEG identified by cohort suggests that environment and breed may play large roles in the expression of genes associated with feed efficiency in the muscle of beef cattle. Meta-analyses of transcriptome data from groups of animals over multiple cohorts may be necessary to elucidate the genetics contributing these types of biological phenotypes."	"Impact of Ionizing Radiation on Electrophysiological Behavior of Human-induced Ipsc-derived Cardiomyocytes on Multielectrode Arrays. Cardiac arrhythmia presumably induced through cardiac fibrosis is a recurrent long-term consequence of exposure to ionizing radiation. However, there is also evidence that cardiac arrhythmia can occur in patients shortly after irradiation. In this study, the authors employed multielectrode arrays to investigate the short-term effects of x-ray radiation on the electrophysiological behavior of cardiomyocytes derived from human-induced pluripotent stem cells. These cardiomyocytes with spontaneous pacemaker activity were cultured on single-well multielectrode arrays. After exposure to 0, 0.5, 1, 2, 5, 10 Gy x-ray radiation, electrical activity was measured at time points ranging from 10 min to 96 h. RNA sequencing was employed to verify the expression of genes specifically involved in cardiomyocyte differentiation and function. A decrease in beating rate was observed after irradiation with 5 and 10 Gy starting 48 h after exposure. Cells exposed to higher doses of radiation were more prone to show changes in electrophysiological spatial distribution. No radiation-induced effects with respect to the corrected QT interval were detectable. Gene expression analysis showed up regulation of typical cardiac features like ACTC1 or HCN4. In this study, early dose-dependent changes in electrophysiological behavior were determined after x-ray irradiation. Results point towards a dose-dependent effect on pacemaker function of cardiomyocytes and indicate a possible connection between irradiation and short-term changes in electrophysiological cardiac function. Cardiomyocytes derived from human-induced pluripotent stem cells on multielectrode arrays represent a promising in vitro cardiac-modeling system for preclinical studies."	"Diagnostic Yield of Genetic Testing in Young Athletes With T-Wave Inversion. T-wave inversion (TWI) is common in patients with cardiomyopathy. However, up to 25% of athletes of African/Afro-Caribbean descent (black athletes) and 5% of white athletes also have TWI of unclear clinical significance despite comprehensive clinical evaluation and long-term follow-up. The aim of this study was to determine the diagnostic yield from genetic testing, beyond clinical evaluation, when investigating athletes with TWI. We investigated 50 consecutive asymptomatic black and 50 white athletes 14 to 35 years of age with TWI and a normal echocardiogram who were referred to a UK tertiary center for cardiomyopathy and sports cardiology. Subjects underwent exercise testing, 24-hour ambulatory ECG, signal-averaged ECG, cardiac magnetic resonance imaging, and a blood-based analysis of a comprehensive 311-gene panel for cardiomyopathies and ion channel disorders associated with TWI, including hypertrophic cardiomyopathy, arrhythmogenic right ventricular cardiomyopathy, dilated cardiomyopathy, left ventricular noncompaction, long-QT syndrome, and Brugada syndrome. In total, 21 athletes (21%) were diagnosed with cardiac disease on the basis of comprehensive clinical investigations. Of these, 8 (38.1%) were gene positive (myosin binding protein C[ MYBPC3], myosin heavy chain 7 [ MYH7], galactosidase alpha [ GLA], and actin alpha, cardiac muscle 1 [ ACTC1] genes) and 13 (61.9%) were gene negative. Of the remaining 79 athletes (79%), 2 (2.5%) were gene positive (transthyretin [ TTR] and sodium voltage-gated channel alpha subunit 5 [ SCN5A] genes) in the absence of a clinical phenotype. The prevalence of newly diagnosed cardiomyopathy was higher in white athletes compared with black athletes (30.0% versus 12%; P=0.027). Hypertrophic cardiomyopathy accounted for 90.5% of all clinical diagnoses. All black athletes and 93.3% of white athletes with a clinical diagnosis of cardiomyopathy or a genetic mutation capable of causing cardiomyopathy exhibited lateral TWI as opposed to isolated anterior or inferior TWI; the genetic yield of diagnoses from lateral TWI was 12.3%. Up to 10% of athletes with TWI revealed mutations capable of causing cardiac disease. Despite the substantial cost, the positive diagnostic yield from genetic testing was one half that from clinical evaluation (10% versus 21%) and contributed to additional diagnoses in only 2.5% of athletes with TWI in the absence of a clear clinical phenotype, making it of negligible use in routine clinical practice."	"Classifying Cardiac Actin Mutations Associated With Hypertrophic Cardiomyopathy. Mutations in the cardiac actin gene (ACTC1) are associated with the development of hypertrophic cardiomyopathy (HCM). To date, 12 different ACTC1 mutations have been discovered in patients with HCM. Given the high degree of sequence conservation of actin proteins and the range of protein-protein interactions actin participates in, mutations in cardiac actin leading to HCM are particularly interesting. Here, we suggest the classification of ACTC1 mutations based on the location of the resulting amino acid change in actin into three main groups: (1) those affecting only the binding site of the myosin molecular motor, termed M-class mutations, (2) those affecting only the binding site of the tropomyosin (Tm) regulatory protein, designated T-class mutations, and (3) those affecting both the myosin- and Tm-binding sites, called MT-class mutations. To understand the precise pathogenesis of cardiac actin mutations and develop treatments specific to the molecular cause of disease, we need to integrate rapidly growing structural information with studies of regulated actomyosin systems."	"Identification of sarcomeric variants in probands with a clinical diagnosis of arrhythmogenic right ventricular cardiomyopathy (ARVC). Arrhythmogenic right ventricular cardiomyopathy (ARVC) is an inherited cardiomyopathy characterized by ventricular arrhythmias and sudden death. Currently 60% of patients meeting Task Force Criteria (TFC) have an identifiable mutation in one of the desmosomal genes. As much overlap is described between other cardiomyopathies and ARVC, we examined the prevalence of rare, possibly pathogenic sarcomere variants in the ARVC population. One hundred and thirty-seven (137) individuals meeting 2010 TFC for a diagnosis of ARVC, negative for pathogenic desmosomal variants, TMEM43, SCN5A, and PLN were screened for variants in the sarcomere genes (ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNC1, TNNI3, TNNT2, and TPM1) through either clinical or research genetic testing. Six probands (6/137, 4%) were found to carry rare variants in the sarcomere genes. These variants have low prevalence in controls, are predicted damaging by Polyphen-2, and some of the variants are known pathogenic hypertrophic cardiomyopathy mutations. Sarcomere variant carriers had a phenotype that did not differ significantly from desmosomal mutation carriers. As most of these probands were the only affected individuals in their families, however, segregation data are noninformative. These data show variants in the sarcomere can be identified in individuals with an ARVC phenotype. Although rare and predicted damaging, proven functional and segregational evidence that these variants can cause ARVC is lacking. Therefore, caution is warranted in interpreting these variants when identified on large next-generation sequencing panels for cardiomyopathies."	"Cardiogenic effects of characterized Geum urbanum extracts on adipose-derived human mesenchymal stem cells. Stem cell therapy is considered as a promising treatment for cardiovascular diseases. Adipose-derived mesenchymal stem cells (ADMSCs) have the ability to undergo cardiomyogenesis. Medicinal plants are effective and safe candidates for cell differentiation. Therefore, the aim of our study was to investigate cardiogenic effects of characterized (HPLC-UV) extracts of Geum urbanum on ADMSCs of adipose tissue. The methanolic extracts of the root and aerial parts of G. urbanum were obtained and MTT assay was used for studying their cytotoxic effects. Then, cells were treated with 50 or 100 μg/mL of the extracts from root and aerial parts of G. urbanum. MTT assay showed that the extracts of G. urbanum did not have any toxic effects on ADMSCs. Immunostaining results showed increase in the expression of α-actinin and cardiac troponin I (cTnI), and quantitative real-time reverse-transcription PCR data confirmed the upregulation of ACTN, ACTC1, and TNNI3 genes in ADMSCs after treatment. According to HPLC fingerprinting, some cardiogenic effects of G. urbanum extracts are probably due to ellagic and gallic acid derivatives. Our findings indicated that G. urbanum extracts effectively upregulated some essential cardiogenic markers, which confirmed the therapeutic role of this plant as a traditional cardiac medicine."	"Cardiomyogenic differentiation of human adipose-derived mesenchymal stem cells transduced with Tbx20-encoding lentiviral vectors. Ischemic heart disease often results in myocardial infarction and is the leading cause of mortality and morbidity worldwide. Improvement in the function of infarcted myocardium is a main purpose of cardiac regenerative medicine. One possible way to reach this goal is via stem cell therapy. Mesenchymal stem cells (MSCs) are multipotent stromal cells that can differentiate into a variety of cell types but display limited cardiomyogenic differentiation potential. Members of the T-box family of transcription factors including Tbx20 play important roles in heart development and cardiomyocyte homeostasis. Therefore, in the current study, we investigated the potential of Tbx20 to enhance the cardiomyogenic differentiation of human adipose-derived MSCs (ADMSCs). Human ADMSCs were transduced with a bicistronic lentiviral vector encoding Tbx20 (murine) and the enhanced green fluorescent protein (eGFP) and analyzed 7 and 14 days post transduction. Transduction of human ADMSCs with this lentiviral vector increased the expression of the cardiomyogenic differentiation markers ACTN1, TNNI3, ACTC1, NKX2.5, TBX20 (human), and GATA4 as revealed by RT-qPCR. Consistently, immunocytological results showed elevated expression of α-actinin and cardiac troponin I in these cells in comparison to the cells transduced with control lentiviral particles coding for eGFP alone. Accordingly, forced expression of Tbx20 exerts cardiomyogenic effects on human ADMSCs by increasing the expression of cardiomyogenic differentiation markers at the RNA and protein level."	"Novel α-Actin Gene Mutation p.(Ala21Val) Causing Familial Hypertrophic Cardiomyopathy, Myocardial Noncompaction, and Transmural Crypts. Clinical-Pathologic Correlation. Mutations of α-actin gene (ACTC1) have been phenotypically related to various cardiac anomalies, including hypertrophic cardiomyopathy and dilated cardiomyopathy and left ventricular (LV) myocardial noncompaction. A novel ACTC mutation is reported as cosegregating for familial hypertrophic cardiomyopathy and LV myocardial noncompaction with transmural crypts. In an Italian family of 7 subjects, 4 aged 10 (II-1), 14 (II-2), 43 (I-4) and 46 years (I-5), presenting abnormal ECG changes, dyspnea and palpitation (II-2, I-4, and I-5), and recurrent cerebral ischemic attack (I-5), underwent 2-dimensional echo, cardiac magnetic resonance, Holter monitoring, and next-generation sequencing gene analysis. Patients II-2 and I-5 with ventricular tachycardia underwent a cardiac invasive study, including coronary with LV angiography and endomyocardial biopsy. In all the affected members, ECG showed right bundle branch block and left anterior hemiblock with age-related prolongation of QRS duration. Two-dimensional echo and cardiac magnetic resonance documented LV myocardial noncompaction in all and in I-4, I-5, and II-2 a progressive LV hypertrophy up to 22-mm maximal wall thickness. Coronary arteries were normal. LV angiography showed transmural crypts progressing to spongeous myocardial transformation with LV dilatation and dysfunction in the oldest subject. At histology and electron microscopy detachment of myocardiocytes were associated with cell and myofibrillar disarray and degradation of intercalated discs causing disanchorage of myofilaments to cell membrane. Next-generation sequencing showed in affected members an unreported p.(Ala21Val) mutation of ACTC. Novel p.(Ala21Val) mutation of ACTC1 causes myofibrillar and intercalated disc alteration leading to familial hypertrophic cardiomyopathy and LV myocardial noncompaction with transmural crypts."	"Simplified Footprint-Free Cas9/CRISPR Editing of Cardiac-Associated Genes in Human Pluripotent Stem Cells. Modeling disease with human pluripotent stem cells (hPSCs) is hindered because the impact on cell phenotype from genetic variability between individuals can be greater than from the pathogenic mutation. While &quot;footprint-free&quot; Cas9/CRISPR editing solves this issue, existing approaches are inefficient or lengthy. In this study, a simplified PiggyBac strategy shortened hPSC editing by 2 weeks and required one round of clonal expansion and genotyping rather than two, with similar efficiencies to the longer conventional process. Success was shown across four cardiac-associated loci (ADRB2, GRK5, RYR2, and ACTC1) by genomic cleavage and editing efficiencies of 8%-93% and 8%-67%, respectively, including mono- and/or biallelic events. Pluripotency was retained, as was differentiation into high-purity cardiomyocytes (CMs; 88%-99%). Using the GRK5 isogenic lines as an exemplar, chronic stimulation with the β-adrenoceptor agonist, isoprenaline, reduced beat rate in hPSC-CMs expressing GRK5-Q41 but not GRK5-L41; this was reversed by the β-blocker, propranolol. This shortened, footprint-free approach will be useful for mechanistic studies."	"Mesenchymal stem cells show functional defect and decreased anti-cancer effect after exposure to chemotherapeutic drugs. Mesenchymal stem cells (MSC) are used for several therapeutic applications to improve the functions of bone, cardiac, nervous tissue as well as to facilitate the repopulation of hematopoietic stem cells. MSC give rise to the non-hematopoietic stromal cells of the bone marrow and are important for the maintenance of normal hematopoiesis. Chemotherapeutic drugs used for treatment of leukemia extensively damage the stromal cells and alter their gene expression profiles. We determined the changes in adipogenic, osteogenic differentiation, phenotypic and gene expression in MSC during treatment with chemotherapeutic drugs cytarabine, daunorubicin and vincristine. We also tested anti-cancer effects of drug treated MSC on leukemia cells. Treatment with the chemotherapeutic drugs resulted in functional defects in MSC, leading to reduced proliferation, osteogenic and adipogenic differentiation. The drug treated MSC also showed decreased expression of cell surface receptors, and the changes in proliferation, phenotype and differentiation defect was partially reversible after withdrawing the drugs from the cells. The drug treated MSC showed increased expression of cytokines, IL6, FGF2 and TNFA but reduced levels of differentiation markers SOX9 and ACTC1. Drug treated MSC also contributed to reduced anti-cancer effects in leukemia cells. Chemotherapeutic drug treatment altered the phenotype, osteogenic and adipogenic differentiation potential of MSC and modified the gene expression profile of the cells to render them more chemoprotective of the leukemic cells. Thus, additional therapeutic efforts to target the stromal cell population will help in preventing chemoresistance, disease relapse in leukemia and to maintain a healthy bone marrow stroma."	"ACTB Loss-of-Function Mutations Result in a Pleiotropic Developmental Disorder. ACTB encodes β-actin, an abundant cytoskeletal housekeeping protein. In humans, postulated gain-of-function missense mutations cause Baraitser-Winter syndrome (BRWS), characterized by intellectual disability, cortical malformations, coloboma, sensorineural deafness, and typical facial features. To date, the consequences of loss-of-function ACTB mutations have not been proven conclusively. We describe heterozygous ACTB deletions and nonsense and frameshift mutations in 33 individuals with developmental delay, apparent intellectual disability, increased frequency of internal organ malformations (including those of the heart and the renal tract), growth retardation, and a recognizable facial gestalt (interrupted wavy eyebrows, dense eyelashes, wide nose, wide mouth, and a prominent chin) that is distinct from characteristics of individuals with BRWS. Strikingly, this spectrum overlaps with that of several chromatin-remodeling developmental disorders. In wild-type mouse embryos, β-actin expression was prominent in the kidney, heart, and brain. ACTB mRNA expression levels in lymphoblastic lines and fibroblasts derived from affected individuals were decreased in comparison to those in control cells. Fibroblasts derived from an affected individual and ACTB siRNA knockdown in wild-type fibroblasts showed altered cell shape and migration, consistent with known roles of cytoplasmic β-actin. We also demonstrate that ACTB haploinsufficiency leads to reduced cell proliferation, altered expression of cell-cycle genes, and decreased amounts of nuclear, but not cytoplasmic, β-actin. In conclusion, we show that heterozygous loss-of-function ACTB mutations cause a distinct pleiotropic malformation syndrome with intellectual disability. Our biological studies suggest that a critically reduced amount of this protein alters cell shape, migration, proliferation, and gene expression to the detriment of brain, heart, and kidney development."	"Variable cardiac α-actin (Actc1) expression in early adult skeletal muscle correlates with promoter methylation. Different genes encode the α-actin isoforms that are predominantly expressed in heart and skeletal muscle. Mutations in the skeletal muscle α-actin gene (ACTA1) cause muscle diseases that are mostly lethal in the early postnatal period. We previously demonstrated that the disease phenotype of ACTA1 mouse models could be rescued by transgenic over-expression of cardiac α-actin (ACTC1). ACTC1 is the predominant striated α-actin isoform in the heart but is also expressed in developing skeletal muscle. To develop a translatable therapy, we investigated the genetic regulation of Actc1 expression. Using strains from The Collaborative Cross (CC) genetic resource, we found that Actc1 varies in expression by up to 24-fold in skeletal muscle. We defined significant expression quantitative trait loci (eQTL) associated with early adult Actc1 expression in soleus and heart. eQTL in both heart and soleus mapped to the Actc1 locus and replicate an eQTL mapped for Actc1 in BXD heart and quadriceps. We built on this previous work by analysing genes within the eQTL peak regions to prioritise likely candidates for modifying Actc1 expression. Additionally we interrogated the CC founder haplotype contributions to enable prioritisation of genetic variants for functional analyses. Methylation around the Actc1 transcriptional start site in early adult skeletal muscle negatively correlated with Actc1 expression in a strain-dependent manner, while other marks of regulatory potential (histone modification and chromatin accessibility) were unaltered. This study provides novel insights into the complex genetic regulation of Actc1 expression in early adult skeletal muscles."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Actin alpha cardiac muscle 1 gene expression is upregulated in the skeletal muscle of men undergoing androgen deprivation therapy for prostate cancer. Androgen deprivation therapy (ADT) decreases muscle mass and function but no human studies have investigated the underlying genetic or cellular effects. We tested the hypothesis that ADT will lead to changes in skeletal muscle gene expression, which may explain the adverse muscle phenotype seen clinically. We conducted a prospective cohort study of 9 men with localised prostate cancer who underwent a vastus lateralis biopsy before and after 4 weeks of ADT. Next-generation RNA sequencing was performed and genes differentially expressed following ADT underwent gene ontology mining using Ingenuity Pathway Analysis. Differential expression of genes of interest was confirmed by quantitative PCR (Q-PCR) on gastrocnemius muscle of orchidectomised mice and sham controls (n=11/group). We found that in men, circulating total testosterone decreased from 16.5±4.3nmol/L at baseline to 0.4±0.15nmol/L post-ADT (p&lt;0.001). RNA sequencing identified 19 differentially expressed genes post-ADT (all p&lt;0.05 after adjusting for multiple testing). Gene ontology mining identified 8 genes to be of particular interest due to known roles in androgen-mediated signalling; ABCG1, ACTC1, ANKRD1, DMPK, THY1, DCLK1, CST3 were upregulated and SLC38A3 was downregulated post-ADT. Q-PCR in mouse gastrocnemius muscle confirmed that only one gene, Actc1 was concordantly upregulated (p&lt;0.01) in orchidectomised mice compared with controls. In conclusion, given that ACTC1 upregulation is associated with improved muscle function in certain myopathies, we hypothesise that upregulation of ACTC1 may represent a compensatory response to ADT-induced muscle loss. Further studies will be required to evaluate the role and function of ACTC1."	"Left Ventricular Noncompaction With Muscular Ventricular Septal Defect in Mother and Son. NA"	"Taxotere-induced elevated expression of IL8 in carcinoma-associated fibroblasts of breast invasive ductal cancer. Breast cancer is the most common malignant tumor in women worldwide, and accounts for an estimated 29% of new cases and 15% of cancer-associated mortalities each year. Invasive ductal carcinoma represents 70-80% of all breast cancer cases, which are responsible for the majority of breast cancer fatalities. Though great progress has been made in understanding the tumorigenesis and development of breast cancer, problems surrounding treatment persist. It was previously reported that carcinoma-associated fibroblasts (CAFs) may be closely associated with chemotherapy resistance. In the present study, primary-cultured CAFs from surgically resected breast invasive ductal cancer tissues were prepared and tested to clarify the change of gene expression profile following treatment with 20 ng/ml Taxotere<sup>®</sup> for 24 h through microarray analysis. In addition, quantitative polymerase chain reaction and western blotting were performed to compare the gene and protein expression of the candidate gene in CAFs prior to and following Taxotere treatment. Based on the obtained data, 35 differentially expressed genes were identified, including ACTA2, ACTC1, ACTG, ALDH1B1, AMY1A, C5orf13, CNN1, CXCR7, DDAH1, FGF1, PDLIM3, MAMLD1, MYH11, OXTR, PDLIM5, RARRES1, SERPINA3, TRIL, C14orf43, C1orf51, CXCL12, CXCL2, EGR2, EGR3, IER3, interleukin (IL)8, IRF1, JUNB, MMP1, NAV2, NFKBIA, NFKBIZ, TRIB1, WNT16 and ZC3H12A. It was observed that the expression of the candidate gene IL8 in the CAFs of breast invasive cancer following treatment with Taxotere was increased (P&lt;0.05). Overall, elevated expression of IL8 induced by Taxotere in CAFs potentially supports the association between IL8 and chemotherapy response."	"Screening of the Filamin C Gene in a Large Cohort of Hypertrophic Cardiomyopathy Patients. Recent exome sequencing studies identified filamin C (FLNC) as a candidate gene for hypertrophic cardiomyopathy (HCM). Our aim was to determine the rate of FLNC candidate variants in a large cohort of HCM patients who were also sequenced for the main sarcomere genes. A total of 448 HCM patients were next generation-sequenced (semiconductor chip technology) for the MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1, and FLNC genes. We also sequenced 450 healthy controls from the same population. Based on the reported population frequencies, bioinformatic criteria, and familial segregation, we identified 20 FLNC candidate variants (13 new; 1 nonsense; and 19 missense) in 22 patients. Compared with the patients, only 1 of the control's missense variants was nonreported (P=0.007; Fisher exact probability test). Based on the familial segregation and the reported functional studies, 6 of the candidate variants (in 7 patients) were finally classified as likely pathogenic, 10 as variants of uncertain significance, and 4 as likely benign. We provide a compelling evidence of the involvement of FLNC in the development of HCM. Most of the FLNC variants were associated with mild forms of HCM and a reduced penetrance, with few affected in the families to confirm the segregation. Our work, together with others who found FLNC variants among patients with dilated and restrictive cardiomyopathies, pointed to this gene as an important cause of structural cardiomyopathies."	"Congenital heart defect causing mutation in Nkx2.5 displays in vivo functional deficit. The Nkx2.5 gene encodes a transcription factor that plays a critical role in heart development. In humans, heterozygous mutations in NKX2.5 result in congenital heart defects (CHDs). However, the molecular mechanisms by which these mutations cause the disease remain unknown. NKX2.5-R142C is a mutation that was reported to be associated with atrial septal defect (ASD) and atrioventricular (AV) block in 13-patients from one family. The R142C mutation is located within both the DNA-binding domain and the nuclear localization sequence of NKX2.5 protein. The pathogenesis of CHDs in humans with R142C point mutation is not well understood. To examine the functional deficit associated with this mutation in vivo, we generated and characterized a knock-in mouse that harbours the human mutation R142C. Systematic structural and functional examination of the embryonic, newborn, and adult mice revealed that the homozygous embryos Nkx2.5<sup>R141C/R141C</sup> are developmentally arrested around E10.5 with delayed heart morphogenesis and downregulation of Nkx2.5 target genes, Anf, Mlc2v, Actc1 and Cx40. Histological examination of Nkx2.5<sup>R141C/+</sup> newborn hearts showed that 36% displayed ASD, with at least 80% 0f adult heterozygotes displaying a septal defect. Moreover, heterozygous Nkx2.5<sup>R141C/+</sup> newborn mice have downregulation of ion channel genes with 11/12 adult mice manifesting a prolonged PR interval that is indicative of 1st degree AV block. Collectively, the present study demonstrates that mice with the R141C point mutation in the Nkx2.5 allele phenocopies humans with the NKX2.5 R142C point mutation."	"Role of skeletal muscle in ear development. The current paper is a continuation of our work described in Rot and Kablar, 2010. Here, we show lists of 10 up- and 87 down-regulated genes obtained by a cDNA microarray analysis that compared developing Myf5-/-:Myod-/- (and Mrf4-/-) petrous part of the temporal bone, containing middle and inner ear, to the control, at embryonic day 18.5. Myf5-/-:Myod-/- fetuses entirely lack skeletal myoblasts and muscles. They are unable to move their head, which interferes with the perception of angular acceleration. Previously, we showed that the inner ear areas most affected in Myf5-/-:Myod-/- fetuses were the vestibular cristae ampullaris, sensitive to angular acceleration. Our finding that the type I hair cells were absent in the mutants' cristae was further used here to identify a profile of genes specific to the lacking cell type. Microarrays followed by a detailed consultation of web-accessible mouse databases allowed us to identify 6 candidate genes with a possible role in the development of the inner ear sensory organs: Actc1, Pgam2, Ldb3, Eno3, Hspb7 and Smpx. Additionally, we searched for human homologues of the candidate genes since a number of syndromes in humans have associated inner ear abnormalities. Mutations in one of our candidate genes, Smpx, have been reported as the cause of X-linked deafness in humans. Our current study suggests an epigenetic role that mechanical, and potentially other, stimuli originating from muscle, play in organogenesis, and offers an approach to finding novel genes responsible for altered inner ear phenotypes."	"Cardiomyogenic Differentiation of Human Dental Follicle-derived Stem Cells by Suberoylanilide Hydroxamic Acid and Their In Vivo Homing Property. The purpose of the present study was to investigate the in vitro cardiomyogenic differentiation potential of human dental follicle-derived stem cells (DFCs) under the influence of suberoylanilide hydroxamic acid (SAHA), a member of the histone deacetylase inhibitor family, and analyze the in vivo homing capacity of induced cardiomyocytes (iCMs) when transplanted systemically. DFCs from extracted wisdom teeth showed mesenchymal stem cell (MSC) characteristics such as plate adherent growing, expression of MSC markers (CD44, CD90, and CD105), and mesenchymal lineage-specific differentiation potential. Adding SAHA to the culture medium induced the successful in vitro differentiation of DFCs into cardiomyocytes. These iCMs expressed cardiomyogenic markers, including alpha-smooth muscle actin (α-SMA), cardiac muscle troponin T (TNNT2), Desmin, and cardiac muscle alpha actin (ACTC1), at both the mRNA and protein level. For the assessment of homing capacity, PKH26 labeled iCMs were intraperitoneally injected (1×10<sup>6</sup> cells in 100 µL of PBS) into the experimental mice, and the ratios of PKH26 positive cells to the total number of injected cells, in multiple organs were determined. The calculated homing ratios, 14 days after systemic cell transplantation, were 5.6 ± 1.0%, 3.6 ± 1.1%, and 11.6 ± 2.7% in heart, liver, and kidney respectively. There was no difference in the serum levels of interleukin-2 and interleukin-10 at 14 days after transplantation, between the experimental (iCM injected) and control (no injection or PBS injection) groups. These results demonstrate that DFCs can be an excellent source for cardiomyocyte differentiation and regeneration. Moreover, the iCMs can be delivered into heart muscle via systemic administration without eliciting inflammatory or immune response. This can serve as the pilot study for further investigations into the in vitro cardiomyogenic differentiation potential of DFCs under the influence of SAHA and the in vivo homing capacity of the iCMs into the heart muscle, when injected systemically."	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Functional Studies and In Silico Analyses to Evaluate Non-Coding Variants in Inherited Cardiomyopathies. Point mutations are the most common cause of inherited diseases. Bioinformatics tools can help to predict the pathogenicity of mutations found during genetic screening, but they may work less well in determining the effect of point mutations in non-coding regions. In silico analysis of intronic variants can reveal their impact on the splicing process, but the consequence of a given substitution is generally not predictable. The aim of this study was to functionally test five intronic variants (MYBPC3-c.506-2A&gt;C, MYBPC3-c.906-7G&gt;T, MYBPC3-c.2308+3G&gt;C, SCN5A-c.393-5C&gt;A, and ACTC1-c.617-7T&gt;C) found in five patients affected by inherited cardiomyopathies in the attempt to verify their pathogenic role. Analysis of the MYBPC3-c.506-2A&gt;C mutation in mRNA from the peripheral blood of one of the patients affected by hypertrophic cardiac myopathy revealed the loss of the canonical splice site and the use of an alternative splicing site, which caused the loss of the first seven nucleotides of exon 5 (MYBPC3-G169AfsX14). In the other four patients, we generated minigene constructs and transfected them in HEK-293 cells. This minigene approach showed that MYBPC3-c.2308+3G&gt;C and SCN5A-c.393-5C&gt;A altered pre-mRNA processing, thus resulting in the skipping of one exon. No alterations were found in either MYBPC3-c.906-7G&gt;T or ACTC1-c.617-7T&gt;C. In conclusion, functional in vitro analysis of the effects of potential splicing mutations can confirm or otherwise the putative pathogenicity of non-coding mutations, and thus help to guide the patient's clinical management and improve genetic counseling in affected families."	"Evidence for troponin C (TNNC1) as a gene for autosomal recessive restrictive cardiomyopathy with fatal outcome in infancy. Restrictive cardiomyopathy is a rare form of pediatric cardiac disease, for which the known genes include MYH7, TNNT2, TNNI3, ACTC1, and DES. We describe a pediatric proband with fatal restrictive cardiomyopathy associated with septal hypertrophy and compound heterozygosity for TNNC1 mutations (NM_003280: p.A8V [c.C23T] and p.D145E [c.C435A]). This association between restrictive cardiomyopathy and TNNC1 mutations was strengthened by prospective observations on the second pregnancy in the family which revealed, in the presence of the same TNNC1 genotype, prenatally diagnosed hypertrophic cardiomyopathy which evolved into restrictive cardiomyopathy, heart failure and death at the age of 9 months. Contrary to previous reports, family and population analyses showed that each of the TNNC1 variants was not pathogenic when present alone. Our results (i) confirm that genetic backgrounds of hypertrophic cardiomyopathy and restrictive cardiomyopathy overlap and (ii) indicate that TNNC1 is a likely novel gene for autosomal recessive restrictive cardiomyopathy. © 2016 Wiley Periodicals, Inc."	"Spectrum of Mutations in Hypertrophic Cardiomyopathy Genes Among Tunisian Patients. Hypertrophic cardiomyopathy (HCM) is a common cardiac genetic disorder associated with heart failure and sudden death. Mutations in the cardiac sarcomere genes are found in approximately half of HCM patients and are more common among cases with a family history of the disease. Data about the mutational spectrum of the sarcomeric genes in HCM patients from Northern Africa are limited. The population of Tunisia is particularly interesting due to its Berber genetic background. As founder mutations have been reported in other disorders. We performed semiconductor chip (Ion Torrent PGM) next generation sequencing of the nine main sarcomeric genes (MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1) as well as the recently identified as an HCM gene, FLNC, in 45 Tunisian HCM patients. We found sarcomere gene polymorphisms in 12 patients (27%), with MYBPC3 and MYH7 representing 83% (10/12) of the mutations. One patient was homozygous for a new MYL3 mutation and two were double MYBPC3 + MYH7 mutation carriers. Screening of the FLNC gene identified three new mutations, which points to FLNC mutations as an important cause of HCM among Tunisians. The mutational background of HCM in Tunisia is heterogeneous. Unlike other Mendelian disorders, there were no highly prevalent mutations that could explain most of the cases. Our study also suggested that FLNC mutations may play a role on the risk for HCM among Tunisians."	"Systematic selection of small molecules to promote differentiation of embryonic stem cells and experimental validation for generating cardiomyocytes. Small molecules are being increasingly used for inducing the targeted differentiation of stem cells to different cell types. However, until now no systematic method for selecting suitable small molecules for this purpose has been presented. In this work, we propose an integrated and general bioinformatics- and cheminformatics-based approach for selecting small molecules which direct cellular differentiation in the desired way. The approach was successfully experimentally validated for differentiating stem cells into cardiomyocytes. All predicted compounds enhanced expression of cardiac progenitor (Gata4, Nkx2-5 and Mef2c) and mature cardiac markers (Actc1, myh6) significantly during and post-cardiac progenitor formation. The best-performing compound, Famotidine, increased the percentage of Myh6-positive cells from 33 to 56%, and enhanced the expression of Nkx2.5 and Tnnt2 cardiac progenitor and cardiac markers in protein level. The approach employed in the study is applicable to all other stem cell differentiation settings where gene expression data are available. "	"Exome genotyping arrays to identify rare and low frequency variants associated with epithelial ovarian cancer risk. Rare and low frequency variants are not well covered in most germline genotyping arrays and are understudied in relation to epithelial ovarian cancer (EOC) risk. To address this gap, we used genotyping arrays targeting rarer protein-coding variation in 8,165 EOC cases and 11,619 controls from the international Ovarian Cancer Association Consortium (OCAC). Pooled association analyses were conducted at the variant and gene level for 98,543 variants directly genotyped through two exome genotyping projects. Only common variants that represent or are in strong linkage disequilibrium (LD) with previously-identified signals at established loci reached traditional thresholds for exome-wide significance (P &lt; 5.0 × 10 <sup>-</sup> <sup>7</sup>). One of the most significant signals (Pall histologies = 1.01 × 10 <sup>-</sup> <sup>13</sup>;Pserous = 3.54 × 10 <sup>-</sup> <sup>14</sup>) occurred at 3q25.31 for rs62273959, a missense variant mapping to the LEKR1 gene that is in LD (r<sup>2 </sup>=<sup> </sup>0.90) with a previously identified 'best hit' (rs7651446) mapping to an intron of TIPARP. Suggestive associations (5.0 × 10 <sup>-</sup> <sup>5 </sup>&gt;<sup> </sup>P≥5.0 ×10 <sup>-</sup> <sup>7</sup>) were detected for rare and low-frequency variants at 16 novel loci. Four rare missense variants were identified (ACTBL2 rs73757391 (5q11.2), BTD rs200337373 (3p25.1), KRT13 rs150321809 (17q21.2) and MC2R rs104894658 (18p11.21)), but only MC2R rs104894668 had a large effect size (OR = 9.66). Genes most strongly associated with EOC risk included ACTBL2 (PAML = 3.23 × 10 <sup>-</sup> <sup>5</sup>; PSKAT-o = 9.23 × 10 <sup>-</sup> <sup>4</sup>) and KRT13 (PAML = 1.67 × 10 <sup>-</sup> <sup>4</sup>; PSKAT-o = 1.07 × 10 <sup>-</sup> <sup>5</sup>), reaffirming variant-level analysis. In summary, this large study identified several rare and low-frequency variants and genes that may contribute to EOC susceptibility, albeit with possible small effects. Future studies that integrate epidemiology, sequencing, and functional assays are needed to further unravel the unexplained heritability and biology of this disease."	"Proteomic analysis of retinal proteins in rabbits following intravitreal PBS injection: analysis with tandem mass tag labeling coupled with LC-MS/MS. Intravitreal (IVT) injection has become one of the most commonly performed ophthalmologic procedures. We investigated the changes in retinal function and proteomics in rabbits receiving IVT injection of PBS to evaluate the safety of IVT injection. Twenty Chinchilla rabbits were subjected to IVT injection of 50 µL PBS in the right eyes. On days 0, 4, 7 and day 14, the retinas of the rabbits were isolated after routine ophthalmic and electroretinogram examinations. The protein expressions in the retinas were quantified using tandem mass tag (TMT)-labeling coupled with LC-MS/MS, and bioinformatic analysis of the differentially expressed proteins (DEPs) was performed based on KEGG database to identify significantly enriched pathways. Functional network of the significant DEPs was analyzed using STRING. No noticeable fundus or functional changes occurred in the rabbit eyes following IVT injection of PBS. A total of 6042 retinal proteins were identified in the retina following the injection, among which 49 proteins (0.81%) exhibited over 5.0-fold up-regulation or over 80% down- regulation relative to the control. Most of the distinctly up-regulated or down-regulated proteins were associated with the cytoskeleton. Significantly enriched pathways involved focal adhesion, tight junction, riboflavin metabolism, extracellular matrix-receptor interaction and regulation of actin cytoskeleton. Functional network analysis showed that ACTC1 and ISG15 played central roles in the protein interaction networks. IVT PBS injection in rabbits causes alterations in proteins associated with cell adhesion, morphology, migration, differentiation, signal transduction and riboflavin metabolism, but the alterations of the retinal proteins appear not sufficient to cause observable pathology of the retina."	"DNA Microarray Analysis in Screening Features of Genes Involved in Spinal Cord Injury. BACKGROUND Spinal cord injury (SCI) is the most critical complication of spinal injury. We aimed to identify differentially expressed genes (DEGs) and to find associated pathways that may function as targets for SCI prognosis and therapy. MATERIAL AND METHODS Seven gene microarray expression profiles, downloaded from the GEO database (ID: GSE33886), were used to screen the DEGs of leg tissue and to compare these between SCI patients and corresponding normal specimens. Then, GO enrichment analysis was performed on these selected DEGs. Afterwards, interactions among these DEGs were analyzed by String database and then a PPI network was constructed to obtain topology character and modules in the PPI network. Finally, roles of the critical proteins in the pathway were explained by comparing the enrichment results of the genes in sub-modules and all the DEGs. RESULTS A total of 113 DEGs were determined. We found that 21 up-regulated genes were enriched in 7 biological processes, while 9 down-regulated genes were significantly enriched in 4 KEGG pathways. The PPI network was constructed, including 40 interacting genes and 73 interactions. Three obvious function modules were identified by exploring the PPI network, and ACTC1 was identified as the critical protein in the 3 enriched signal pathways. However, no obvious difference was found in the signal pathway in which both the 11 genes in module 1 and all 113 DEGs participated. CONCLUSIONS Core proteins in the signal pathway associated with spinal cord injury may serve as potential prognostic and predictive markers for the diagnosis and treatment of spinal cord injury in clinical applications. "	"A gain-of-function ACTC1 3'UTR mutation that introduces a miR-139-5p target site may be associated with a dominant familial atrial septal defect. The ostium secundum atrial septal defect (ASDII) is the most common type of congenital heart disease and is characterized by a left to right shunting of oxygenated blood caused by incomplete closure of the septum secundum. We identified a familial form of isolated ASDII that affects four individuals in a family of five and shows autosomal dominant inheritance. By whole genome sequencing, we discovered a new mutation (c.*1784T &gt; C) in the 3'-untranslated region (3'UTR) of ACTC1, which encodes the predominant actin in the embryonic heart. Further analysis demonstrated that the c.*1784T &gt; C mutation results in a new target site for miRNA-139-5p, a microRNA that is involved in cell migration, invasion, and proliferation. Functional analysis demonstrated that the c.*1784T &gt; C mutation specifically downregulates gene expression in a luciferase assay. Additionally, miR-139-5p mimic causes further decrease, whereas miR-139-5p inhibitor can dramatically rescue the decline in gene expression caused by this mutation. These findings suggest that the familial ASDII may be a result of an ACTC1 3'UTR gain-of-function mutation caused by the introduction of a new miR-139-5p target site. Our results provide the first evidence of a pathogenic mutation in the ACTC1 3'UTR that may be associated with familial isolated ASDII."	"Prenatal diagnosis and molecular cytogenetic characterization of a de novo 4.858-Mb microdeletion in 15q14 associated with ACTC1 and MEIS2 haploinsufficiency and tetralogy of Fallot. To present prenatal diagnosis and molecular cytogenetic characterization of a de novo 15q14 microdeletion associated with tetralogy of Fallot (TOF). This was the first pregnancy of a 31-year-old primigravid woman. The pregnancy was uneventful until 23 weeks of gestation when TOF was first noted. The woman underwent amniocentesis at 23 weeks of gestation. Conventional cytogenetic analysis was performed using cultured amniocytes and parental bloods. Array comparative genomic hybridization (aCGH) was performed on uncultured amniocytes and parental bloods. Metaphase fluorescence in situ hybridization (FISH) was performed on cultured amniocytes. Quantitative fluorescent-polymerase chain reaction (QF-PCR) analysis was performed on placental tissue and parental bloods. Conventional cytogenetics on cultured amniocytes revealed a karyotype of 46,XY, aCGH on uncultured amniocytes revealed a de novo 4.858-Mb microdeletion in 15q14 encompassing ACTC1 and MEIS2, and metaphase FISH analysis on cultured amniocytes confirmed a 15q14 microdeletion. Postnatal phenotype included facial dysmorphism. QF-PCR assays detected a paternal origin of the 15q14 microdeletion in the fetus. Fetuses with 15q14 microdeletion may present TOF on the second-trimester ultrasound. aCGH and metaphase FISH are useful for rapid prenatal diagnosis of 15q14 microdeletion associated with TOF. A prenatal diagnosis of TOF should include a differential diagnosis of 15q14 microdeletion in addition to 22q11.2 deletion syndrome and other microdeletion syndromes."	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"ACTC1 as an invasion and prognosis marker in glioma. OBJECTIVE Glioma is a major class of brain tumors, and glioblastoma (GBM) is the most aggressive and malignant type. The nature of tumor invasion makes surgical removal difficult, which results in remote recurrence. The present study focused on glioma invasion and investigated the expression of actin, alpha cardiac muscle 1 (ACTC1), which is 1 of 6 actin families implicated in cell motility. METHODS mRNA expression of ACTC1 expression was analyzed using quantitative real-time polymerase chain reaction (qRT-PCR) in 47 formalin-fixed, paraffin-embedded glioma tissues that were graded according to WHO criteria: Grade I (n = 4); Grade II (n = 12); Grade III (n = 6); and Grade IV (n = 25). Survival was analyzed using the Kaplan-Meier method. The relationships between ACTC1 expression and clinical features such as radiological findings at the time of diagnosis and recurrence, patient age, Karnofsky Performance Scale status (KPS), and the MIB-1 index were evaluated. RESULTS The incidence of ACTC1 expression as a qualitative assessment gradually increased according to WHO grade. The hazard ratio for the median overall survival (mOS) of the patients with ACTC1-positive high-grade gliomas as compared with the ACTC1-negative group was 2.96 (95% CI, 1.03-8.56). The mOS was 6.28 years in the ACTC1-negative group and 1.26 years in the positive group (p = 0.037). In GBM patients, the hazard ratio for mOS in the ACTC1-positive GBMs as compared with the ACTC1-negative group was 2.86 (95% CI 0.97-8.45). mOS was 3.20 years for patients with ACTC1-negative GBMs and 1.08 years for patients with ACTC1-positive GBMs (p = 0.048). By the radiological findings, 42.9% of ACTC1-positive GBM patients demonstrated invasion toward the contralateral cerebral hemisphere at the time of diagnosis, although no invasion was observed in ACTC1-negative GBM patients (p = 0.013). The recurrence rate of GBM was 87.5% in the ACTC1-positive group; in contrast, none of the ACTC1-negative patients demonstrated distant recurrence (0.007). No remarkable relationship was demonstrated among ACTC1 expression and patient age, KPS, and the MIB-1 index. CONCLUSIONS ACTC1 may serve as a novel independent prognostic and invasion marker in GBM."	"Heterogeneous Differentiation of Human Mesenchymal Stem Cells in 3D Extracellular Matrix Composites. Extracellular matrix (ECM) proteins are structural elements of tissue and also potent signaling molecules. Previously, our laboratory showed that ECM of 2D coatings can trigger differentiation of bone marrow-derived mesenchymal stem cells (MSCs) into mesodermal lineages in an ECM-specific manner over 14 days, in some cases comparable to chemical induction. To test whether a similar effect was possible in a 3D, tissue-like environment, we designed a synthetic-natural biomaterial composite. The composite can present whole-molecule ECM proteins to cells, even those that do not spontaneously form hydrogels ex vivo, in 3D. To this end, we entrapped collagen type I, laminin-111, or fibronectin in ECM composites with MSCs and directly compared markers of mesodermal differentiation including cardiomyogenic (ACTC1), osteogenic (SPP1), adipogenic (PPARG), and chondrogenic (SOX9) in 2D versus 3D. We found the 3D condition largely mimicked the 2D condition such that the addition of type I collagen was the most potent inducer of differentiation to all lineages tested. One notable difference between 2D and 3D was pronounced adipogenic differentiation in 3D especially in the presence of exogenous collagen type I. In particular, PPARG gene expression was significantly increased ∼16-fold relative to chemical induction, in 3D and not in 2D. Unexpectedly, 3D engagement of ECM proteins also altered immunomodulatory function of MSCs in that expression of IL-6 gene was elevated relative to basal levels in 2D. In fact, levels of IL-6 gene expression in 3D composites containing exogenously supplied collagen type I or fibronectin were statistically similar to levels attained in 2D with tumor necrosis factor-α (TNF-α) stimulation and these levels were sustained over a 2-week period. Thus, this novel biomaterial platform allowed us to compare the biochemical impact of whole-molecule ECM proteins in 2D versus 3D indicating enhanced adipogenic differentiation and IL-6 expression of MSC in the 3D context. Exploiting the biochemical impact of ECM proteins on MSC differentiation and immunomodulation could augment the therapeutic utility of MSCs. "	"Electrical Stimulation Promotes Cardiac Differentiation of Human Induced Pluripotent Stem Cells. Background. Human induced pluripotent stem cells (iPSCs) are an attractive source of cardiomyocytes for cardiac repair and regeneration. In this study, we aim to determine whether acute electrical stimulation of human iPSCs can promote their differentiation to cardiomyocytes. Methods. Human iPSCs were differentiated to cardiac cells by forming embryoid bodies (EBs) for 5 days. EBs were then subjected to brief electrical stimulation and plated down for 14 days. Results. In iPS(Foreskin)-2 cell line, brief electrical stimulation at 65 mV/mm or 200 mV/mm for 5 min significantly increased the percentage of beating EBs present by day 14 after plating. Acute electrical stimulation also significantly increased the cardiac gene expression of ACTC1, TNNT2, MYH7, and MYL7. However, the cardiogenic effect of electrical stimulation was not reproducible in another iPS cell line, CERA007c6. Beating EBs from control and electrically stimulated groups expressed various cardiac-specific transcription factors and contractile muscle markers. Beating EBs were also shown to cycle calcium and were responsive to the chronotropic agents, isoproterenol and carbamylcholine, in a concentration-dependent manner. Conclusions. Our results demonstrate that brief electrical stimulation can promote cardiac differentiation of human iPS cells. The cardiogenic effect of brief electrical stimulation is dependent on the cell line used. "	"Genetic profile of hypertrophic cardiomyopathy in Tunisia: Is it different? We recently performed next generation sequencing (NGS) genetic screening in 11 consecutive and unrelated Tunisian HCM probands seen at Habib Thameur Hospital in Tunis in the first 6 months of 2014, as part of a cooperative study between our Institutions. The clinical diagnosis of HCM was made according to standard criteria. Using the Illumina platform, a panel of 12 genes was analyzed including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2 and MYL3), troponin-T (TNNT2), troponin-I (TNNI3), troponin-C (TNNC1), alpha-tropomyosin (TPM1), alpha-actin (ACTC1), alpha-actinin-2 (ACTN2) as well as alfa-galactosidase (GLA), 5'-AMP-activated protein (PKRAG2), transthyretin (TTR) and lysosomal-associated membrane protein-2 (LAMP2) for exclusion of phenocopies. Our preliminary data, despite limitations inherent to the small sample size, suggest that HCM in Tunisia may have a peculiar genetic background which privileges rare genes overs the classic HCM-associated MHY7 and MYBPC3 genes. "	"E101K and M123V alpha-cardiac actin gene mutations are not associated with cardiomyopathy in Iranian population. Cardiomyopathies are myocardial disorders in which the heart muscle is structurally and functionally abnormal. Several mutations in sarcomere protein coding genes are responsible for different types of cardiomyopathies. ACTC1 is one of the main sarcomere components in heart muscle. Two mutations of E101K and M123V in this gene are shown to be associated with cardiomyopathies. In this case and control study, a sample of contains 30 hypertrophic cardiomyopathy and 100 dilated cardiomyopathy patients, as well as 130 healthy individuals were screened for two mutations of E101K and M123V. The genotypes of samples were determined in whole blood genomic DNA by restriction fragment length polymorphism polymerase chain reaction (RFLP-PCR) and mismatched-PCR-RLFP techniques. All patients and healthy peoples had wild type genotype for both locations and even no heterozygous was detected. Despite previous reports, no association was observed between both mutations with cardiomyopathy. Our results indicated that two mutations of E101K and M123V of ACTC1 gene may are not associated with cardiomyopathy in Iranian population."	"Unique roles of Akt1 and Akt2 in IGF-IR mediated lung tumorigenesis. AKT is a serine-threonine kinase that becomes hyperactivated in a number of cancers including lung cancer. Based on AKT's association with malignancy, molecules targeting AKT have entered clinical trials for solid tumors including lung cancer. However, the AKT inhibitors being evaluated in clinical trials indiscriminately inhibit all three AKT isoforms (AKT1-3) and it remains unclear whether AKT isoforms have overlapping or divergent functions. Using a transgenic mouse model where IGF-IR overexpression drives lung tumorigenesis, we found that loss of Akt1 inhibited while loss of Akt2 enhanced lung tumor development. Lung tumors that developed in the absence of Akt2 were less likely to appear as discrete nodules and more frequently displayed a dispersed growth pattern. RNA sequencing revealed a number of genes differentially expressed in lung tumors lacking Akt2 and five of these genes, Actc1, Bpifa1, Mmp2, Ntrk2, and Scgb3a2 have been implicated in human lung cancer. Using 2 human lung cancer cell lines, we observed that a selective AKT1 inhibitor, A-674563, was a more potent regulator of cell survival than the pan-AKT inhibitor, MK-2206. This study suggests that compounds selectively targeting AKT1 may prove more effective than compounds that inhibit all three AKT isoforms at least in the treatment of lung adenocarcinoma. "	"Rapamycin reduces fibroblast proliferation without causing quiescence and induces STAT5A/B-mediated cytokine production. Rapamycin is a well-known inhibitor of the Target of Rapamycin (TOR) signaling cascade; however, the impact of this drug on global genome function and organization in normal primary cells is poorly understood. To explore this impact, we treated primary human foreskin fibroblasts with rapamycin and observed a decrease in cell proliferation without causing cell death. Upon rapamycin treatment chromosomes 18 and 10 were repositioned to a location similar to that of fibroblasts induced into quiescence by serum reduction. Although similar changes in positioning occurred, comparative transcriptome analyses demonstrated significant divergence in gene expression patterns between rapamycin-treated and quiescence-induced fibroblasts. Rapamycin treatment induced the upregulation of cytokine genes, including those from the Interleukin (IL)-6 signaling network, such as IL-8 and the Leukemia Inhibitory Factor (LIF), while quiescent fibroblasts demonstrated up-regulation of genes involved in the complement and coagulation cascade. In addition, genes significantly up-regulated by rapamycin treatment demonstrated increased promoter occupancy of the transcription factor Signal Transducer and Activator of Transcription 5A/B (STAT5A/B). In summary, we demonstrated that the treatment of fibroblasts with rapamycin decreased proliferation, caused chromosome territory repositioning and induced STAT5A/B-mediated changes in gene expression enriched for cytokines."	"Hybrid hydrogel-aligned carbon nanotube scaffolds to enhance cardiac differentiation of embryoid bodies. Carbon nanotubes (CNTs) were aligned in gelatin methacryloyl (GelMA) hydrogels using dielectrophoresis approach. Mouse embryoid bodies (EBs) were cultured in the microwells fabricated on the aligned CNT-hydrogel scaffolds. The GelMA-dielectrophoretically aligned CNT hydrogels enhanced the cardiac differentiation of the EBs compared with the pure GelMA and GelMA-random CNT hydrogels. This result was confirmed by Troponin-T immunostaining, the expression of cardiac genes (i.e., Tnnt2, Nkx2-5, and Actc1), and beating analysis of the EBs. The effect on EB properties was significantly enhanced by applying an electrical pulse stimulation (frequency, 1Hz; voltage, 3V; duration, 10ms) to the EBs for two continuous days. Taken together, the fabricated hybrid hydrogel-aligned CNT scaffolds with tunable mechanical and electrical characteristics offer an efficient and controllable platform for electrically induced differentiation and stimulation of stem cells for potential tissue regeneration and cell therapy applications. Dielectrophoresis approach was used to rapidly align carbon nanotubes (CNTs) in gelatin methacryloyl (GelMA) hydrogels resulting in hybrid GelMA-CNT hydrogels with tunable and anisotropic electrical and mechanical properties. The GelMA-aligned CNT hydrogels may be used to apply accurate and controllable electrical pulses to cell and tissue constructs and thereby regulating their behavior and function. In this work, it was demonstrated that the GelMA hydrogels containing the aligned CNTs had superior performance in cardiac differentiation of stem cells upon applying electrical stimulation in contrast with control gels. Due to broad use of electrical stimulation in tissue engineering and stem cell differentiation, it is envisioned that the GelMA-aligned CNT hydrogels would find wide applications in tissue regeneration and stem cell therapy."	"A novel ACTC1 mutation in a young boy with left ventricular noncompaction and arrhythmias. NA"	"Self-renewal of human embryonic stem cells on defined synthetic electrospun nanofibers. Human embryonic stem cells (hESCs) are conventionally expanded and maintained in vitro on biological substrates. Synthetic electrospun polymer nanofibers have the potential to act as non-biological substrates in the culture of hESCs. Three synthetic, FDA approved polymers: poly-ɛ-caprolactone (PCL), poly-L-lactic acid (PLLA) and poly lactic-co-glycolic acid (PLGA) were electrospun as nanofibers (random or aligned conformations) on glass coverslips and their supportive role in hESC culture examined. Clonogenicity experiments demonstrated that nanofibrous scaffolds (PCL aligned and random, PLLA aligned and PLGA aligned) supported hESC adhesion and expansion. A significantly greater number of colonies were observed on PCL-aligned nanofibrous scaffolds in comparison to PLLA-aligned and PLGA-aligned substrates (p &lt; 0.05). hESC colonies were significantly larger on PCL aligned nanofibrous substrates when compared to other polymer substrates (p &lt; 0.05-0.001), where fiber diameter played a pivotal role in support of hESC clonogenicity (on PCL). Retention of pluripotentiality was confirmed by expression of Alkaline phosphatase, OCT-3/4 and Nanog expression on PCL scaffolds and the expression of transcripts representative of mesoderm (ACTC1), ectoderm (SOX1) and endoderm (AFP) during subsequent spontaneous in vitro differentiation. These results demonstrate the potential of nanofibers as xeno-free scaffolds supportive of hESC adhesion, self-renewal and differentiation in in vitro culture conditions."	"Targeted next-generation sequencing of candidate genes reveals novel mutations in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a major cause of sudden cardiac death and heart failure, and it is characterized by genetic and clinical heterogeneity, even for some patients with a very poor clinical prognosis; in the majority of cases, DCM necessitates a heart transplant. Genetic mutations have long been considered to be associated with this disease. At present, mutations in over 50 genes related to DCM have been documented. This study was carried out to elucidate the characteristics of gene mutations in patients with DCM. The candidate genes that may cause DCM include MYBPC3, MYH6, MYH7, LMNA, TNNT2, TNNI3, MYPN, MYL3, TPM1, SCN5A, DES, ACTC1 and RBM20. Using next-generation sequencing (NGS) and subsequent mutation confirmation with traditional capillary Sanger sequencing analysis, possible causative non-synonymous mutations were identified in ~57% (12/21) of patients with DCM. As a result, 7 novel mutations (MYPN, p.E630K; TNNT2, p.G180A; MYH6, p.R1047C; TNNC1, p.D3V; DES, p.R386H; MYBPC3, p.C1124F; and MYL3, p.D126G), 3 variants of uncertain significance (RBM20, p.R1182H; MYH6, p.T1253M; and VCL, p.M209L), and 2 known mutations (MYH7, p.A26V and MYBPC3, p.R160W) were revealed to be associated with DCM. The mutations were most frequently found in the sarcomere (MYH6, MYBPC3, MYH7, TNNC1, TNNT2 and MYL3) and cytoskeletal (MYPN, DES and VCL) genes. As genetic testing is a useful tool in the clinical management of disease, testing for pathogenic mutations is beneficial to the treatment of patients with DCM and may assist in predicting disease risk for their family members before the onset of symptoms."	"A dilated cardiomyopathy mutation blunts adrenergic response and induces contractile dysfunction under chronic angiotensin II stress. We investigated cardiac contractility in the ACTC E361G transgenic mouse model of dilated cardiomyopathy (DCM). No differences in cardiac dimensions or systolic function were observed in young mice, whereas young adult mice exhibited only mild diastolic abnormalities. Dobutamine had an inotropic and lusitropic effect on the mouse heart. In papillary muscle at 37°C, dobutamine increased relaxation rates [∼50% increase of peak rate of force decline normalized to force (dF/dtmin/F), 25% reduction of time to 90% relaxation (t90) in nontransgenic (NTG) mice], but in the ACTC E361G mouse, dF/dtmin/F was increased 20-30%, and t90 was only reduced 10% at 10 Hz. Pressure-volume measurements showed increases in maximum rate of pressure decline and decreases in time constant of left ventricular pressure decay in the ACTC E361G mouse that were 25-30% of the changes in the NTG mouse, consistent with blunting of the lusitropic response. The inotropic effect of dobutamine was also blunted in ACTC E361G mice, and the dobutamine-stimulated increase in cardiac output (CO) was reduced from 2,100 to 900 μl/min. Mice were treated with high doses of ANG II for 4 wk. The chronic stress treatment evoked systolic dysfunction in ACTC E361G mice but not in NTG. There was a significant reduction in rates of pressure increase and decrease, as well as reduced end-systolic pressure and increased volume. Ejection fraction and CO were reduced in the ACTC E361G mouse, indicating DCM. In vitro DCM-causing mutations uncouple the relationship between Ca(2+) sensitivity and troponin I phosphorylation. We conclude that this leads to the observed, reduced response to β1 agonists and reduced cardiac reserve that predisposes the heart to DCM under conditions of chronic stress. "	"[MicroRNA-133a antagonizes phenylephrine-induced hypertrophy of neonatal rat cardiomyocytes in vitro]. To investigate the mechanism of miR-133a in reversing neonatal rat cardiomyocyte hypertrophy induced by phenylephrine. A miR-133a precursor cDNA was used to construct an adenovirus vector, which was transfected into 293 cells to harvest miR-133a-containing virus. Neonatal rat cardiac myocytes treated by phenylephrine were exposed to miR-133a adenovirus, and the changes in cell area was measured; the expression levels of miR-133a and Acta1, Actc1, Actb, Myh6, Myh7, and BNP mRNAs were detected by quantitative RT-PCR. Phenylephrine treatment increased the area of cardiomyocytes by more than 3 folds and significantly enhanced the expression levels of Acta1, Actc1, Actb, Myh6, Myh7 and BNP mRNAs. All these changes were obviously reverse by miR-133a treatment. miR-133a is an important regulator of phenylephrine-induced cardiomyocyte hypertrophy and negatively regulates this process."	"Congenital Nemaline Myopathy: The Value of Magnetic Resonance Imaging of Muscle. NA"	"Identification of Region-Specific Myocardial Gene Expression Patterns in a Chronic Swine Model of Repaired Tetralogy of Fallot. Surgical repair of Tetralogy of Fallot (TOF) is highly successful but may be complicated in adulthood by arrhythmias, sudden death, and right ventricular or biventricular dysfunction. To better understand the molecular and cellular mechanisms of these delayed cardiac events, a chronic animal model of postoperative TOF was studied using microarrays to perform cardiac transcriptomic studies. The experimental study included 12 piglets (7 rTOF and 5 controls) that underwent surgery at age 2 months and were further studied after 23 (+/- 1) weeks of postoperative recovery. Two distinct regions (endocardium and epicardium) from both ventricles were analyzed. Expression levels from each localization were compared in order to decipher mechanisms and signaling pathways leading to ventricular dysfunction and arrhythmias in surgically repaired TOF. Several genes were confirmed to participate in ventricular remodeling and cardiac failure and some new candidate genes were described. In particular, these data pointed out FRZB as a heart failure marker. Moreover, calcium handling and contractile function genes (SLN, ACTC1, PLCD4, PLCZ), potential arrhythmia-related genes (MYO5B, KCNA5), and cytoskeleton and cellular organization-related genes (XIRP2, COL8A1, KCNA6) were among the most deregulated genes in rTOF ventricles. To our knowledge, this is the first comprehensive report on global gene expression profiling in the heart of a long-term swine model of repaired TOF. "	"Non-compaction associated with an ACTC1 mutation. NA"	"Detection of selection signatures in dairy and beef cattle using high-density genomic information. Artificial selection for economically important traits in cattle is expected to have left distinctive selection signatures on the genome. Access to high-density genotypes facilitates the accurate identification of genomic regions that have undergone positive selection. These findings help to better elucidate the mechanisms of selection and to identify candidate genes of interest to breeding programs. Information on 705 243 autosomal single nucleotide polymorphisms (SNPs) in 3122 dairy and beef male animals from seven cattle breeds (Angus, Belgian Blue, Charolais, Hereford, Holstein-Friesian, Limousin and Simmental) were used to detect selection signatures by applying two complementary methods, integrated haplotype score (iHS) and global fixation index (FST). To control for false positive results, we used false discovery rate (FDR) adjustment to calculate adjusted iHS within each breed and the genome-wide significance level was about 0.003. Using the iHS method, 83, 92, 91, 101, 85, 101 and 86 significant genomic regions were detected for Angus, Belgian Blue, Charolais, Hereford, Holstein-Friesian, Limousin and Simmental cattle, respectively. None of these regions was common to all seven breeds. Using the FST approach, 704 individual SNPs were detected across breeds. Annotation of the regions of the genome that showed selection signatures revealed several interesting candidate genes i.e. DGAT1, ABCG2, MSTN, CAPN3, FABP3, CHCHD7, PLAG1, JAZF1, PRKG2, ACTC1, TBC1D1, GHR, BMP2, TSG1, LYN, KIT and MC1R that play a role in milk production, reproduction, body size, muscle formation or coat color. Fifty-seven common candidate genes were found by both the iHS and global FST methods across the seven breeds. Moreover, many novel genomic regions and genes were detected within the regions that showed selection signatures; for some candidate genes, signatures of positive selection exist in the human genome. Multilevel bioinformatic analyses of the detected candidate genes suggested that the PPAR pathway may have been subjected to positive selection. This study provides a high-resolution bovine genomic map of positive selection signatures that are either specific to one breed or common to a subset of the seven breeds analyzed. Our results will contribute to the detection of functional candidate genes that have undergone positive selection in future studies."	"A Novel Alpha Cardiac Actin (ACTC1) Mutation Mapping to a Domain in Close Contact with Myosin Heavy Chain Leads to a Variety of Congenital Heart Defects, Arrhythmia and Possibly Midline Defects. A Lebanese Maronite family presented with 13 relatives affected by various congenital heart defects (mainly atrial septal defects), conduction tissue anomalies and midline defects. No mutations were found in GATA4 and NKX2-5. A set of 399 poly(AC) markers was used to perform a linkage analysis which peaked at a 2.98 lod score on the long arm of chromosome 15. The haplotype analysis delineated a 7.7 meganucleotides genomic interval which included the alpha-cardiac actin gene (ACTC1) among 36 other protein coding genes. A heterozygous missense mutation was found (c.251T&gt;C, p.(Met84Thr)) in the ACTC1 gene which changed a methionine residue conserved up to yeast. This mutation was absent from 1000 genomes and exome variant server database but segregated perfectly in this family with the affection status. This mutation and 2 other ACTC1 mutations (p.(Glu101Lys) and p.(Met125Val)) which result also in congenital heart defects are located in a region in close apposition to a myosin heavy chain head region by contrast to 3 other alpha-cardiac actin mutations (p.(Ala297Ser),p.(Asp313His) and p.(Arg314His)) which result in diverse cardiomyopathies and are located in a totally different interaction surface. Alpha-cardiac actin mutations lead to congenital heart defects, cardiomyopathies and eventually midline defects. The consequence of an ACTC1 mutation may in part be dependent on the interaction surface between actin and myosin."	"Forward Programming of Cardiac Stem Cells by Homogeneous Transduction with MYOCD plus TBX5. Adult cardiac stem cells (CSCs) express many endogenous cardiogenic transcription factors including members of the Gata, Hand, Mef2, and T-box family. Unlike its DNA-binding targets, Myocardin (Myocd)-a co-activator not only for serum response factor, but also for Gata4 and Tbx5-is not expressed in CSCs. We hypothesised that its absence was a limiting factor for reprogramming. Here, we sought to investigate the susceptibility of adult mouse Sca1+ side population CSCs to reprogramming by supplementing the triad of GATA4, MEF2C, and TBX5 (GMT), and more specifically by testing the effect of the missing co-activator, Myocd. Exogenous factors were expressed via doxycycline-inducible lentiviral vectors in various combinations. High throughput quantitative RT-PCR was used to test expression of 29 cardiac lineage markers two weeks post-induction. GMT induced more than half the analysed cardiac transcripts. However, no protein was detected for the induced sarcomeric genes Actc1, Myh6, and Myl2. Adding MYOCD to GMT affected only slightly the breadth and level of gene induction, but, importantly, triggered expression of all three proteins examined (α-cardiac actin, atrial natriuretic peptide, sarcomeric myosin heavy chains). MYOCD + TBX was the most effective pairwise combination in this system. In clonal derivatives homogenously expressing MYOCD + TBX at high levels, 93% of cardiac transcripts were up-regulated and all five proteins tested were visualized. (1) GMT induced cardiac genes in CSCs, but not cardiac proteins under the conditions used. (2) Complementing GMT with MYOCD induced cardiac protein expression, indicating a more complete cardiac differentiation program. (3) Homogeneous transduction with MYOCD + TBX5 facilitated the identification of differentiating cells and the validation of this combinatorial reprogramming strategy. Together, these results highlight the pivotal importance of MYOCD in driving CSCs toward a cardiac muscle fate."	"Targeted next-generation sequencing (NGS) of nine candidate genes with custom AmpliSeq in patients and a cardiomyopathy risk group. Hypertrophic cardiomyopathy is a common genetic cardiac disease. Prevention and early diagnosis of this disease are very important. Because of the large number of causative genes and the high rate of mutations involved in the pathogenesis of this disease, traditional methods of early diagnosis are ineffective. We developed a custom AmpliSeq panel for NGS sequencing of the coding sequences of ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNI3, TNNT2, TPM1, and CASQ2. A genetic analysis of student cohorts (with and without cardiomyopathy risk in their medical histories) and patients with cardiomyopathies was performed. For the statistical and bioinformatics analysis, Polyphen2, SIFT, SnpSift and PLINK software were used. To select genetic markers in the patients with cardiomyopathy and in the students of the high risk group, four additive models were applied. Our AmpliSeq custom panel allowed us to efficiently explore targeted sequences. Based on the score analysis, we detected three substitutions in the MYBPC3 and CASQ2 genes and six combinations between loci in the MYBPC3, MYH7 and CASQ2 genes that were responsible for cardiomyopathy risk in our cohorts. We also detected substitutions in the TNNT2 gene that can be considered as protective against cardiomyopathy. We used NGS with AmpliSeq libraries and Ion PGM sequencing to develop improved predictive information for patients at risk of cardiomyopathy."	"Dextrocardia and symmetric hypertrophic cardiomyopathy with multiple mutations of genes encoding the sarcomere proteins. NA"	"Identification of regulators of the early stage of viral hemorrhagic septicemia virus infection during curcumin treatment. The effect of curcumin pretreatment (15-240 μM) in fathead minnow cells infected with viral hemorrhagic septicemia virus (VHSV) was evaluated. Cell viability, apoptosis and viral copy number were analyzed using Cell Counting Kit-8 assay, Annexin V staining, and reverse transcription-PCR, respectively. Pretreatment with 120 μM curcumin showed an increase in viability (&gt;90% of mock) of VHSV-infected cells and reduction in the copy number (0.2-log reduction in VHSV N gene expression), reactive oxygen species and apoptosis in the cells without cytotoxic effects. To understand the mechanisms underlaying the antiviral effects of curcumin pretreatment, a comparative proteomic analysis was performed in four samples (M, mock; C, curcumin-treated; V, VHSV-infected; and CV, curcumin-treated VHSV-infected) in triplicate. In total, 185 proteins were detected. The analysis showed that three proteins, including heat shock cognate 71 (HSC71), actin, alpha cardiac muscle (ACTC1) and elongation factor 1 (EEF1) were differentially expressed between V and CV samples. Network analysis performed by Ingenuity Pathways Analysis (IPA) showed that HSC71 was the primary protein interacting with fibronectin (FN) 1, actins (ACTB, ACTG, F-actin) and gelsolin (GSN) in both V and CV samples and thus is a strong target candidate for the protection from VHSV infection at the viral entry stage. Our proteomics data suggest that curcumin pretreatment inhibits entry of VHSV in cells by downregulating FN1 or upregulating F-actin. For both proteins, HSC71 acts as a binding protein that modulates their functions. Furthermore, consistent with the effect of a heat shock protein inhibitor (KNK437), curcumin downregulated HSC71 expression with increasing viability of VHSV-infected cells and inhibited VHSV replication, suggesting that the downregulation of HSC71 could be responsible for the antiviral activity of curcumin. In conclusion, this study indicates that the suppression of viral entry by rearrangement of the F-actin/G-actin ratio via downregulating HSC71 is a plausible mechanism by which curcumin pretreatment controls the early stages of VHSV infection."	"Congenital heart defects are rarely caused by mutations in cardiac and smooth muscle actin genes. Congenital heart defects (CHDs) often have genetic background due to missense mutations in cardiomyocyte-specific genes. For example, cardiac actin was shown to be involved in pathogenesis of cardiac septum defects and smooth muscle actin in pathogenesis of aortic aneurysm in combination with patent ductus arteriosus (PDA). In the present study, we further searched for mutations in human α-cardiac actin (ACTC1) and smooth muscle α-actin (ACTA2) genes as a possible cause of atrial septum defect type II (ASDII) and PDA. Total genomic DNA was extracted from peripheral blood of 86 individuals with ASDs and 100 individuals with PDA. Coding exons and flanking intron regions of ACTC1 (NM_005159.4) and ACTA2 (NM_001613) were amplified by PCR with specific primers designed according to the corresponding gene reference sequences. PCR fragments were directly sequenced and analyzed. Sequence analysis of ACTC1 and ACTA2 did not identify any nucleotide changes that altered the coding sense of the genes. In ACTC1 gene, we were able to detect one previously described nucleotide polymorphism (rs2307493) resulting in a synonymous substitution. The frequency of this SNP was similar in the study and control group, thus excluding it from the possible disease-associated variants. Our results confirmed that the mutations in ACTC1 gene are rare (at least &lt;1%) cause of ASDII. Mutations in ACTA2 gene were not detected in patients with PDA, thus being excluded from the list of frequent PDA-associated genetic defects."	"Peptide-enhanced mRNA transfection in cultured mouse cardiac fibroblasts and direct reprogramming towards cardiomyocyte-like cells. The treatment of myocardial infarction is a major challenge in medicine due to the inability of heart tissue to regenerate. Direct reprogramming of endogenous cardiac fibroblasts into functional cardiomyocytes via the delivery of transcription factor mRNAs has the potential to regenerate cardiac tissue and to treat heart failure. Even though mRNA delivery to cardiac fibroblasts has the therapeutic potential, mRNA transfection in cardiac fibroblasts has been challenging. Herein, we develop an efficient mRNA transfection in cultured mouse cardiac fibroblasts via a polyarginine-fused heart-targeting peptide and lipofectamine complex, termed C-Lipo and demonstrate the partial direct reprogramming of cardiac fibroblasts towards cardiomyocyte cells. C-Lipo enabled the mRNA-induced direct cardiac reprogramming due to its efficient transfection with low toxicity, which allowed for multiple transfections of Gata4, Mef2c, and Tbx5 (GMT) mRNAs for a period of 2 weeks. The induced cardiomyocyte-like cells had α-MHC promoter-driven GFP expression and striated cardiac muscle structure from α-actinin immunohistochemistry. GMT mRNA transfection of cultured mouse cardiac fibroblasts via C-Lipo significantly increased expression of the cardiomyocyte marker genes, Actc1, Actn2, Gja1, Hand2, and Tnnt2, after 2 weeks of transfection. Moreover, this study provides the first direct evidence that the stoichiometry of the GMT reprogramming factors influence the expression of cardiomyocyte marker genes. Our results demonstrate that mRNA delivery is a potential approach for cardiomyocyte generation. "	"Cardiac transcriptome and dilated cardiomyopathy genes in zebrafish. Genetic studies of cardiomyopathy and heart failure have limited throughput in mammalian models. Adult zebrafish have been recently pursued as a vertebrate model with higher throughput, but genetic conservation must be tested. We conducted transcriptome analysis of zebrafish heart and searched for fish homologues of 51 known human dilated cardiomyopathy-associated genes. We also identified genes with high cardiac expression and genes with differential expression between embryonic and adult stages. Among tested genes, 30 had a single zebrafish orthologue, 14 had 2 homologues, and 5 had ≥3 homologues. By analyzing the expression data on the basis of cardiac abundance and enrichment hypotheses, we identified a single zebrafish gene for 14 of 19 multiple-homologue genes and 2 zebrafish homologues of high priority for ACTC1. Of note, our data suggested vmhc and vmhcl as functional zebrafish orthologues for human genes MYH6 and MYH7, respectively, which are established molecular markers for cardiac remodeling. Most known genes for human dilated cardiomyopathy have a corresponding zebrafish orthologue, which supports the use of zebrafish as a conserved vertebrate model. Definition of the cardiac transcriptome and fetal gene program will facilitate systems biology studies of dilated cardiomyopathy in zebrafish."	"Whole-exome sequencing identify a new mutation of MYH7 in a Chinese family with left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a genetic cardiomyopathy results from the failure of myocardial development during embryogenesis. Previous reports show that defects in TAZ, SCN5A, TPM1, YWHAE, MYH7, ACTC1 and TNNT2 are associated with LVNC. Sequencing of individuals using family-based design is a powerful approach for hereditary disease. In this study, we used whole-exome sequencing to screen potentially novel causal mutations in a Chinese Han family with LVNC. DNA from 3 individuals belonging to the same family was extracted and sequenced based on standard whole-exome sequencing protocol. The exome sequence data was analyzed using BWA, PICARD and Genome Analysis Toolkit (GATK v2.8). Non-silent single nucleotide variants (SNVs) were further selected if they exist in both LVNC patients and not in the health control. A web-based software Snv Prioritization via the INtegration of Genomic data (SPRING), was used to prioritize the causal SNV by calculating a q-value which indicates the statistical significance that a variant is causative for a query disease. From the LVNC family in which the mother and son were affected, a novel single nucleotide variant c.C1492G in exon 15 of MYH7 was identified probably to be the causal SNV of the family with P-value of 3.45E-05 and q-value of 4.65E-03 by SPRING. The SNV was predicted as deleterious in SIFT, PolyPhe2 and MutatioTaster database. Another 12 SNVs were also identified with P-value less than 0.05 by SPRING. A novel genetic variant in the coding regions of MYH7 gene was identified in a Chinese LVNC-family. The results support the previous evidence that MYH7 is a pathogenic gene for LVNC."	"Thin-filament mutations, hypertrophic cardiomyopathy, and risk. NA"	"Clinical phenotype and outcome of hypertrophic cardiomyopathy associated with thin-filament gene mutations. Mild hypertrophy but increased arrhythmic risk characterizes the stereotypic phenotype proposed for hypertrophic cardiomyopathy (HCM) caused by thin-filament mutations. However, whether such clinical profile is different from more prevalent thick-filament-associated disease is unresolved. This study aimed to assess clinical features and outcomes in a large cohort of patients with HCM associated with thin-filament mutations compared with thick-filament HCM. Adult HCM patients (age &gt;18 years), 80 with thin-filament and 150 with thick-filament mutations, were followed for an average of 4.5 years. Compared with thick-filament HCM, patients with thin-filament mutations showed: 1) milder and atypically distributed left ventricular (LV) hypertrophy (maximal wall thickness 18 ± 5 mm vs. 24 ± 6 mm; p &lt; 0.001) and less prevalent outflow tract obstruction (19% vs. 34%; p = 0.015); 2) higher rate of progression to New York Heart Association functional class III or IV (15% vs. 5%; p = 0.013); 3) higher prevalence of systolic dysfunction or restrictive LV filling at last evaluation (20% vs. 9%; p = 0.038); 4) 2.4-fold increase in prevalence of triphasic LV filling pattern (26% vs. 11%; p = 0.002); and 5) similar rates of malignant ventricular arrhythmias and sudden cardiac death (p = 0.593). In adult HCM patients, thin-filament mutations are associated with increased likelihood of advanced LV dysfunction and heart failure compared with thick-filament disease, whereas arrhythmic risk in both subsets is comparable. Triphasic LV filling is particularly common in thin-filament HCM, reflecting profound diastolic dysfunction."	"The transcriptional signatures of cells from the human Peyronie's disease plaque and the ability of these cells to generate a plaque in a rat model suggest potential therapeutic targets. The success of medical therapies for Peyronie's disease (PD) has not been optimal, possibly because many of them went directly to clinical application without sufficient preclinical scientific research. Previous studies revealed cellular and molecular pathways involved in the formation of the PD plaque and in particular the role of the myofibroblast. The current work aimed to determine under normal and fibrotic conditions what differentiates PD cells from tunica albuginea (TA) and corpora cavernosa (CC) cells by defining their global transcriptional signatures and testing in vivo whether PD cells can generate a PD-like plaque. Human TA, PD, and CC cells were grown with transforming growth factor beta 1 (TGFβ1; TA+, PD+, CC+) or without it (TA-, PD-, CC-) and assayed by (i) immunofluorescence, Western blot and RT-PCR for myofibroblast, smooth muscle cell and stem cell markers; (ii) collagen content; and (iii) DNA microarray analysis. The ability of PD+ cells to induce a PD-like plaque in an immuno-suppressed rat model was assessed by Masson trichrome and Picrosirius Red stainings. Fibroproliferative features of PD cells and identification of related key genes as novel targets to reduce plaque size. Upon TGFβ1stimulation, collagen levels were increased by myofibroblasts in the PD+ but not in the CC+ cells. The transcriptional signature of the PD- cells identified fibroproliferative, myogenic (myofibroblasts), inflammatory, and collagen turnover genes that differentiate them from TA- or CC- cells and respond to TGFβ1 with a PD+ fibrotic phenotype, by upregulation of IGF-1, ACTG2, MYF5, ACTC1, PSTN, COL III, MMP3, and others. The PD+ cells injected into the TA of the rat induce a PD-like plaque. This suggests a novel combination therapy to eliminate a PD plaque by targeting the identified genes to (i) improve collagenase action by stimulating endogenous metalloproteinases specific to key collagen types and (ii) counteract fibromatosis by inhibiting myofibroblast generation, proliferation, and/or apoptosis."	"Genotype-Phenotype Correlations in Apical Variant Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy is underscored by profound phenotypic and genotypic heterogeneity. Echocardiographically, hypertrophic cardiomyopathy can be categorized into four morphological subtypes: reverse curve, sigmoidal, neutral contour, and apical variant. Previous studies indicate that reverse curve hypertrophic cardiomyopathy is the strongest predictor of a positive genetic test. Little is known about the spectrum and prevalence of mutations and genotype-phenotype correlations in apical hypertrophic cardiomyopathy. Between 1999 and 2007, 1053 patients with the diagnosis of hypertrophic cardiomyopathy (60% male, age at diagnosis 44.4 ± 19 years) underwent sarcomeric genetic testing. Blinded to the genetic test results, each echocardiogram was scored for septal morphology and phenotyping was performed using the patient's medical record. Subset analysis was performed to elucidate the genotype, phenotype, and outcome of apical hypertrophic cardiomyopathy. Overall, 71 patients (7%) had apical hypertrophic cardiomyopathy on echocardiography (63% male, mean age 47.8 ± 15 years, mean left ventricular wall thickness 19.8 ± 6 mm). Left ventricular outflow tract obstruction was uncommon (seven patients; 10%). Eighteen patients (25%) had a positive genetic test, with the majority of mutations found in MYBPC3 (six; 35%) and MYH7 (six; 35%). Follow-up was available on 68 patients (96%) with a median age of 57.3 years (range 19.3-82 years). Mean follow-up was 5.5 years (range 0.1-18.2 years). There was no statistical difference between the occurrence rates of adverse events between genotype-positive and genotype-negative groups. In this largest cohort of patients with genetic testing for hypertrophic cardiomyopathy, &lt;10% exhibited apical disease. This least common subtype was associated with a negative genetic test result 75% of the time. In contrast to prior publications suggesting a predilection for ACTC1/TPM1 mutations in patients with apical hypertrophic cardiomyopathy, the two most common genotypes (MYBPC3-HCM and MYH7-HCM) remained most common among patients who had a positive genetic test."	"Mutation analysis of the main hypertrophic cardiomyopathy genes using multiplex amplification and semiconductor next-generation sequencing. Mutations in at least 30 genes have been linked to hypertrophic cardiomyopathy (HCM). Due to the large size of the main HCM genes, Sanger sequencing is labor intensive and expensive. The purpose was to develop a next-generation sequencing (NGS) procedure for the main HCM genes. METHODS AND RESULTS: Multiplex amplification of the coding exons of MYH7,MYBPC3,TNNT2,TNNI3,ACTC1,TNNC1,MYL2,MYL3, and TPM1 was designated, followed by NGS with the Ion Torrent PGM (Life Technologies). A total of 8 pools containing DNA from HCM patients were sequenced in a 2-step approach. First, a total of 60 patients (validation cohort) underwent both PGM and Sanger sequencing for the 9 genes. No false-negative variants were found on NGS (100% sensitivity), and a specificity of 97% and 80% was achieved for single-nucleotide and insertion/deletion variants, respectively. Second, the PGM was used to search for mutations in a total of 76 cases not previously studied (discovery cohort). A total of 19 putative mutations were identified in the discovery pools, which were confirmed and assigned to specific patients on Sanger sequencing. An NGS procedure has been developed for the main sarcomeric genes that would facilitate the screening of large cohorts of patients. In addition, this procedure would facilitate the uncovering of rare gene variants on a population scale."	"Familial left ventricular noncompaction associated with a novel mutation in the alpha-cardiac actin gene. NA"	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"MicroRNA profiling as tool for in vitro developmental neurotoxicity testing: the case of sodium valproate. Studying chemical disturbances during neural differentiation of murine embryonic stem cells (mESCs) has been established as an alternative in vitro testing approach for the identification of developmental neurotoxicants. miRNAs represent a class of small non-coding RNA molecules involved in the regulation of neural development and ESC differentiation and specification. Thus, neural differentiation of mESCs in vitro allows investigating the role of miRNAs in chemical-mediated developmental toxicity. We analyzed changes in miRNome and transcriptome during neural differentiation of mESCs exposed to the developmental neurotoxicant sodium valproate (VPA). A total of 110 miRNAs and 377 mRNAs were identified differently expressed in neurally differentiating mESCs upon VPA treatment. Based on miRNA profiling we observed that VPA shifts the lineage specification from neural to myogenic differentiation (upregulation of muscle-abundant miRNAs, mir-206, mir-133a and mir-10a, and downregulation of neural-specific mir-124a, mir-128 and mir-137). These findings were confirmed on the mRNA level and via immunochemistry. Particularly, the expression of myogenic regulatory factors (MRFs) as well as muscle-specific genes (Actc1, calponin, myosin light chain, asporin, decorin) were found elevated, while genes involved in neurogenesis (e.g. Otx1, 2, and Zic3, 4, 5) were repressed. These results were specific for valproate treatment and--based on the following two observations--most likely due to the inhibition of histone deacetylase (HDAC) activity: (i) we did not observe any induction of muscle-specific miRNAs in neurally differentiating mESCs exposed to the unrelated developmental neurotoxicant sodium arsenite; and (ii) the expression of muscle-abundant mir-206 and mir-10a was similarly increased in cells exposed to the structurally different HDAC inhibitor trichostatin A (TSA). Based on our results we conclude that miRNA expression profiling is a suitable molecular endpoint for developmental neurotoxicity. The observed lineage shift into myogenesis, where miRNAs may play an important role, could be one of the developmental neurotoxic mechanisms of VPA."	"A low prevalence of sarcomeric gene variants in a Chinese cohort with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is genetically heterogeneous. It has been previously shown that LVNC is associated with defects in TAZ, DNTA, LDB3, YWHAE, MIB1, PRDM16, and sarcomeric genes. This study was aimed to investigate sarcomeric gene mutations in a Chinese population with LVNC. From 2004 to 2010, 57 unrelated Chinese patients with LVNC were recruited at Fuwai Hospital, Beijing, China. Detailed clinical evaluation was performed on the probands and available family members. DNA samples isolated from the peripheral blood of the index cases were screened for 10 sarcomeric genes, including MYH7, MYBPC3, MYL2, MYL3, MYH6, TNNC1, TNNT2, TNNI3, TPM1, and ACTC1. Seven heterozygous mutations (6 missense and 1 deletion) were identified in 7 (12 %) of the patients. These mutations were distributed among 4 genes, 4 in MYH7, and 1 each in ACTC1, TNNT2, and TPM1. Six of the mutations were novel and another one was reported previously. All mutations affected conserved amino acid residues and were predicted to alter the structure of the proteins by in silico analysis. No significant difference was observed between mutation-positive and mutation-negative patients with respect to clinical characteristics at baseline and mortality during follow-up. In conclusion, our study indicates that sarcomeric gene mutations are uncommon causes of LVNC in Chinese patients and genetic background of the disease may be divergent among the different races."	"Hypertrophic or non-compaction cardiomyopathy: a challenging diagnosis. We present a rare case of mutation in the cardiac alfa actine (ACTC) gene. This patient showed phenotypic features of both hypertrophic and non-compaction cardiomyopathy. These cases may represent a diagnostic challenge in daily clinical practice."	"Exome sequencing identifies a novel variant in ACTC1 associated with familial atrial septal defect. The genetics of congenital heart disease (CHD) remain incompletely understood. Exome sequencing has been successfully used to identify disease-causing mutations in familial disorders in which candidate gene analyses and linkage mapping have failed. We studied a large family characterized by autosomal dominant isolated secundum atrial septal defect (ASD) (MIM No. 612794). Candidate gene resequencing and linkage analysis were uninformative. Whole-exome sequencing of 2 affected family members identified 44 rare shared variants, including a nonsynonymous mutation (c.532A&gt;T, p.M178L, NM_005159.4) in alpha-cardiac actin (ACTC1). This mutation was absent from 1834 internal controls as well as from the 1000 Genomes and the Exome Sequencing Project (ESP) databases, but predictions regarding its effect on protein function were divergent. However, p.M178L was the only rare mutation segregating with disease in our family. Our results provide further evidence supporting a causative role for ACTC1 mutations in ASD. Massively parallel sequencing of the exome allows for the detection of novel rare variants causing CHD without the limitations of a candidate gene approach. When mutation prediction algorithms are not helpful, studies of familial disease can help distinguish rare pathologic mutations from benign variants. Consideration of the family history can lead to genetic insights into CHD."	"Sequencing: the next generation--what is the role of whole-exome sequencing in the diagnosis of familial cardiovascular diseases? NA"	"Dysbindin is a potent inducer of RhoA-SRF-mediated cardiomyocyte hypertrophy. Dysbindin is an established schizophrenia susceptibility gene thoroughly studied in the context of the brain. We have previously shown through a yeast two-hybrid screen that it is also a cardiac binding partner of the intercalated disc protein Myozap. Because Dysbindin is highly expressed in the heart, we aimed here at deciphering its cardiac function. Using a serum response factor (SRF) response element reporter-driven luciferase assay, we identified a robust activation of SRF signaling by Dysbindin overexpression that was associated with significant up-regulation of SRF gene targets, such as Acta1 and Actc1. Concurrently, we identified RhoA as a novel binding partner of Dysbindin. Further phenotypic and mechanistic characterization revealed that Dysbindin induced cardiac hypertrophy via RhoA-SRF and MEK1-ERK1 signaling pathways. In conclusion, we show a novel cardiac role of Dysbindin in the activation of RhoA-SRF and MEK1-ERK1 signaling pathways and in the induction of cardiac hypertrophy. Future in vivo studies should examine the significance of Dysbindin in cardiomyopathy."	"Polymorphism in the alpha cardiac muscle actin 1 gene is associated to susceptibility to chronic inflammatory cardiomyopathy. Chagas disease, caused by the protozoan Trypanosoma cruzi is endemic in Latin America, and may lead to a life-threatening inflammatory dilated, chronic Chagas cardiomyopathy (CCC). One third of T. cruzi-infected individuals progress to CCC while the others remain asymptomatic (ASY). A possible genetic component to disease progression was suggested by familial aggregation of cases and the association of markers of innate and adaptive immunity genes with CCC development. Since mutations in multiple sarcomeric genes, including alpha-cardiac actin (ACTC1) have been involved in hereditary dilated cardiomyopathy, we investigated the involvement of the ACTC1 gene in CCC pathogenesis. We conducted a proteomic and genetic study on a Brazilian study population. The genetic study was done on a main cohort including 118 seropositive asymptomatic subjects and 315 cases and the replication was done on 36 asymptomatic and 102 CCC cases. ACTC1 protein and mRNA levels were lower in myocardial tissue from patients with end-stage CCC than those found in hearts from organ donors. Genotyping a case-control cohort of CCC and ASY subjects for all informative single nucleotide polymorphism (SNP) in the ACTC1 gene identified rs640249 SNP, located at the 5' region, as associated to CCC. Associations are borderline after correction for multiple testing. Correlation and haplotype analysis led to the identification of a susceptibility haplotype. Functional assays have shown that the rs640249A/C polymorphism affects the binding of transcriptional factors in the promoter regions of the ACTC1 gene. Confirmation of the detected association on a larger independent replication cohort will be useful. Genetic variations at the ACTC1 gene may contribute to progression to chronic Chagas Cardiomyopathy among T. cruzi-infected patients, possibly by modulating transcription factor binding to ACTC1 promoter regions."	"Human C-kit+CD45- cardiac stem cells are heterogeneous and display both cardiac and endothelial commitment by single-cell qPCR analysis. C-kit expressing cardiac stem cells have been described as multipotent. We have previously identified human cardiac C-kit+CD45- cells, but only found evidence of endothelial commitment. A small cardiac committed subpopulation within the C-kit+CD45- population might however be present. To investigate this at single-cell level, right and left atrial biopsies were dissociated and analyzed by FACS. Only right atrial biopsies contained a clearly distinguishable C-kit+CD45- population, which was single-cell sorted for qPCR. A minor portion of the sorted cells (1.1%) expressed early cardiac gene NKX2.5 while most of the cells (81%) expressed late endothelial gene VWF. VWF- cells were analyzed for a wider panel of genes. One group of these cells expressed endothelial genes (FLK-1, CD31) while another group expressed late cardiac genes (TNNT2, ACTC1). In conclusion, human C-kit+CD45- cells were predominantly localized to the right atrium. While most of these cells expressed endothelial genes, a minor portion expressed cardiac genes. "	"Advancing functional engineered cardiac tissues toward a preclinical model of human myocardium. Cardiac experimental biology and translational research would benefit from an in vitro surrogate for human heart muscle. This study investigated structural and functional properties and interventional responses of human engineered cardiac tissues (hECTs) compared to human myocardium. Human embryonic stem cell-derived cardiomyocytes (hESC-CMs, &gt;90% troponin-positive) were mixed with collagen and cultured on force-sensing elastomer devices. hECTs resembled trabecular muscle and beat spontaneously (1.18 ± 0.48 Hz). Microstructural features and mRNA expression of cardiac-specific genes (α-MHC, SERCA2a, and ACTC1) were comparable to human myocardium. Optical mapping revealed cardiac refractoriness with loss of 1:1 capture above 3 Hz, and cycle length dependence of the action potential duration, recapitulating key features of cardiac electrophysiology. hECTs reconstituted the Frank-Starling mechanism, generating an average maximum twitch stress of 660 μN/mm(2) at Lmax, approaching values in newborn human myocardium. Dose-response curves followed exponential pharmacodynamics models for calcium chloride (EC50 1.8 mM) and verapamil (IC50 0.61 μM); isoproterenol elicited a positive chronotropic but negligible inotropic response, suggesting sarcoplasmic reticulum immaturity. hECTs were amenable to gene transfer, demonstrated by successful transduction with Ad.GFP. Such 3-D hECTs recapitulate an early developmental stage of human myocardium and promise to offer an alternative preclinical model for cardiology research."	"DNA microarray reveals different pathways responding to paclitaxel and docetaxel in non-small cell lung cancer cell line. The wide use of paclitaxel and docetaxel in NSCLC clinical treatment makes it necessary to find biomarkers for identifying patients who can benefit from paclitaxel or docetaxel. In present study, NCI-H460, a NSCLC cell line with different sensitivity to paclitaxel and docetaxel, was applied to DNA microarray expression profiling analysis at different time points of lower dose treatment with paclitaxel or docetaxel. And the complex signaling pathways regulating the drug response were identified, and several novel sensitivity-realted markers were biocomputated.The dynamic changes of responding genes showed that paclitaxel effect is acute but that of docetaxel is durable at least for 48 hours in NCI-H460 cells. Functional annotation of the genes with altered expression showed that genes/pathways responding to these two drugs were dramatically different. Gene expression changes induced by paclitaxel treatment were mainly enriched in actin cytoskeleton (ACTC1, MYL2 and MYH2), tyrosine-protein kinases (ERRB4, KIT and TIE1) and focal adhesion pathway (MYL2, IGF1 and FLT1), while the expression alterations responding to docetaxel were highly co-related to cell surface receptor linked signal transduction (SHH, DRD5 and ADM2), cytokine-cytokine receptor interaction (IL1A and IL6) and cell cycle regulation (CCNB1, CCNE2 and PCNA). Moreover, we also confirmed some different expression patterns with real time PCR. Our study will provide the potential biomarkers for paclitaxel and docetaxel-selection therapy in clinical application."	"Evaluating the association between pathological myopia and SNPs in RASGRF1. ACTC1 and GJD2 genes at chromosome 15q14 and 15q25 in a Chinese population. This study investigated the association of the 27 SNPs located in RASGRF1. GJD2, and ACTC1 genes with pathological myopia in a Chinese Han population. Myopia patients were stratified according to whether they did (n = 274) or did not (n = 131) have myopic macular degeneration (MMD). The SNPbrowser software was used to identify specific SNPs for analysis and minimal allele frequency of &gt;20%, and a pairwise r(2) &lt; 0.85 were genotyped using MALDI-TOF mass spectrometry. Before controlling for false discovery rate, the frequency of the rs1867315 C/C genotype compared with healthy controls was lower in the myopia group (p = 0.006) and in myopia patients without macular degeneration (p = 0.019). The frequency of the rs670957A/A genotype was also lower in patients without MMD compared with controls (p = 0.045). For rs2070664, the frequency of the A allele was higher in the patients with MMD compared to those without MMD (p = 0.032). After controlling for a false discovery rate of 5%, there was no significant difference in genotype and allele frequencies between these groups. In this study, there was no association of the analyzed SNPs located in RASGRF1. GJD2, and ACTC1 with pathological myopia, suggesting that SNPs included in our study have no or a limited role in causing pathologic myopia in this Chinese Han population."	"Functional analysis of a de novo ACTB mutation in a patient with atypical Baraitser-Winter syndrome. Exome sequence analysis can be instrumental in identifying the genetic etiology behind atypical disease. We report a patient presenting with microcephaly, dysmorphic features, and intellectual disability with a tentative diagnosis of Dubowitz syndrome. Exome analysis was performed on the patient and both parents. A de novo missense variant was identified in ACTB, c.349G&gt;A, p.E117K. Recent work in Baraitser-Winter syndrome has identified ACTB and ACTG1 mutations in a cohort of individuals, and we rediagnosed the patient with atypical Baraitser-Winter syndrome. We performed functional characterization of the variant actin and show that it alters cell adhesion and polymer formation supporting its role in disease. We present the clinical findings in the patient, comparison of this patient to other patients with ACTB/ACTG1 mutations, and results from actin functional studies that demonstrate novel functional attributes of this mutant protein. "	"[Molecular mechanism of cardiac differentiation in P19 embryonal carcinoma cells regulated by Foxa2]. To investigate the involvement of transcription factor Foxa2 in cardiac differentiation in P19 embryonal carcinoma cells and its molecular mechanism. P19 cells were induced to differentiate into cardiomyocytes by adding dimethyl sulfoxide (DMSO) into the culture medium of their embryoid bodies (EBs). The mRNA levels of pluripotency markers of embryonic pluripotent stem cells, cardiac differentiation related genes, and Foxa2 in the cell samples at different time points of cardiac differentiation were detected by reverse transcription PCR (RT-PCR). Differentiated and mature cardiomyocytes were identified by immunofluorescence. Eukaryotic expression plasmid pCMV-rFoxa2 (rat Foxa2) was transfected into P19 cells, and clonal populations of P19 cells that stably expressed green fluorescence protein (GFP)-rFoxa2 were isolated to enhance the expression levels of Foxa2 in P19 cells. The mRNA and protein levels of pluripotency markers and cardiac differentiation related genes in the above cell samples were detected by RT-PCR and Western blot. The mRNA levels of cardiac differentiation related genes in EBs differentiation system were also examined. P19 cells differentiated into cardiomyocytes in the presence of DMSO, accompanied by stimulated expression of Foxa2. Transfection of pCMV-rFoxa2 plasmids into P19 cells upregulated rFoxa2 expression transiently and activated the transcription of its downstream cardiac inducer Cerberus1 (Cer1). The expression of pluripotency marker Nanog was suppressed and the expression of cardiac inducer Sonic Hedgehog (Shh) was elevated in GFP-rFoxa2 P19 cells. The expression of Cer1 and cardiac muscle marker actin, alpha cardiac muscle 1 (Actc1) was upregulated in EBs of GFP-rFoxa2 P19 cells. Foxa2 participates in cardiac differentiation in P19 embryonal carcinoma cells. Foxa2 may inhibit Nanog expression and stimulate the expression of Cer1 and Shh directly during cardiac differentiation in P19 cells in the presence of DMSO."	"Polymorphism of ZBTB17 gene is associated with idiopathic dilated cardiomyopathy: a case control study in a Han Chinese population. Dilated cardiomyopathy (DCM) has been extensively investigated for many years, but its pathogenesis remains uncertain. The ACTC1 gene was the first sarcomeric gene whose mutation was shown to cause DCM; recent studies have indicated that the HSPB7 and ZBTB17 genes are also associated with DCM. To assess the potential role of these three genes in DCM, we examined 11 single nucleotide polymorphisms (SNPs) in the ZBTB17, HSPB7 and ACTC1 genes: namely, rs10927875 in ZBTB17; rs1739843, rs7523558, and rs6660685 in HSPB7; rs533021, rs589759, rs1370154, rs2070664, rs3759834, rs525720 and rs670957 in ACTC1. A total of 97 DCM patients and 189 controls were included in the study. All SNPs were genotyped by matrix-assisted laser desorption/ionization time-of-flight mass spectrometry (MALDI-TOF-MS). The genotype of SNP rs10927875 in ZBTB17 (OR=5.19, 95% CI =1.00 to 27.03, P=0.05) was associated with DCM in a Han Chinese population. There was no difference in genotype or allele frequencies in ACTC1 or HSPB7 between DCM patients and control subjects. The ZBTB17 polymorphism rs10927875 appears to play a role in the susceptibility of the Han Chinese population to DCM."	"Distinct patterns of histone modifications at cardiac-specific gene promoters between cardiac stem cells and mesenchymal stem cells. Mesenchymal stem cells (MSCs) and cardiac stem cells (CSCs) possess different potential to develop into cardiomyocytes. The mechanism underlying cardiomyogenic capacity of MSCs and CSCs remains elusive. It is well established that histone modifications correlate with gene expression and contribute to cell fate commitment. Here we hypothesize that specific histone modifications accompany cardiac-specific gene expression, thus determining the differentiation capacity of MSCs and CSCs toward heart cells. Our results indicate that, at the promoter regions of cardiac-specific genes (Myh6, Myl2, Actc1, Tnni3, and Tnnt2), the levels of histone acetylation of H3 (acH3) and H4 (acH4), as a mark indicative of gene activation, were higher in CSCs (Sca-1(+)CD29(+)) than MSCs. Additionally, lower binding levels of histone deacetylase (HDAC) 1 and HDAC2 at promoter regions of cardiac-specific genes were noticed in CSCs than MSCs. Treatment with trichostatin A, an HDAC inhibitor, upregulated cardiac-specific gene expression in MSCs. Suppression of HDAC1 or HDAC2 expression by small interfering RNAs led to increased cardiac gene expression and was accompanied by enhanced acH3 and acH4 levels at gene loci. We conclude that greater levels of histone acetylation at cardiac-specific gene loci in CSCs than MSCs reflect a stronger potential for CSCs to develop into cardiomyocytes. These lineage-differential histone modifications are likely due to less HDAC recruitment at cardiac-specific gene promoters in CSCs than MSCs."	"Functional vascular smooth muscle-like cells derived from adult mouse uterine mesothelial cells. In mammalian visceral organs, vascular smooth muscle cells (VSMCs) originate from an epithelial-to-mesenchymal transition (EMT) of embryonic mesothelial cells (MCs). The ability of adult MCs to recapitulate EMT and to acquire smooth muscle (SM) markers upon provasculogenic culture suggested they might retain embryonic vasculogenic differentiation potential. However, it remains unknown whether adult MCs-derived SM-like cells may acquire specific vascular SM lineage markers and the functionality of differentiated contractile VSMCs. Here, we describe how a gentle trypsinization of adult mouse uterine cords could selectively detach their outermost uterine mesothelial layer cells. As other MCs; uterine MCs (UtMCs) uniformly expressed the epithelial markers β-catenin, ZO-1, E-cadherin, CD54, CD29, and CK18. When cultured in a modified SM differentiation media (SMDM) UtMCs initiated a loss of epithelial characteristics and gained markers expression of EMT (Twist, Snail, and Slug), stem and progenitor (Nanog, Sox2, C-kit, Gata-4, Isl-1, and nestin), SM (α-SMA, calponin, caldesmon, SM22α, desmin, SM-MHC, and smoothelin-B) and cardiac (BMP2, BMP4, ACTC1, sACTN, cTnI, cTnT, ANF, Cx43, and MLC2a). UtMCs repeatedly subcultured in SMDM acquired differentiated VSM-like characteristics and expressed smoothelin-B in the typical stress-fiber pattern expression of contractile VSMCs. Relevantly, UtMCs-derived VSM-like cells could generate &quot;mechanical force&quot; to compact collagen lattices and displayed in diverse degree voltage (K(+)) and receptor (endothelin-1, oxytocin, norepinephrine, carbachol and vasopressin)-induced [Ca(2+)](i) rises and contraction. Thus, we show for the first time that UtMCs could recapitulate in vitro differentiative events of early cardiovascular differentiation and transdifferentiate in cells exhibiting molecular and functional characteristics of VSMCs."	"Myostatin genetic inactivation inhibits myogenesis by muscle-derived stem cells in vitro but not when implanted in the mdx mouse muscle. Stimulating the commitment of implanted dystrophin+ muscle-derived stem cells (MDSCs) into myogenic, as opposed to lipofibrogenic lineages, is a promising therapeutic strategy for Duchenne muscular dystrophy (DMD). To examine whether counteracting myostatin, a negative regulator of muscle mass and a pro-lipofibrotic factor, would help this process, we compared the in vitro myogenic and fibrogenic capacity of MDSCs from wild-type (WT) and myostatin knockout (Mst KO) mice under various modulators, the expression of key stem cell and myogenic genes, and the capacity of these MDSCs to repair the injured gastrocnemius in aged dystrophic mdx mice with exacerbated lipofibrosis. Surprisingly, the potent in vitro myotube formation by WT MDSCs was refractory to modulators of myostatin expression or activity, and the Mst KO MDSCs failed to form myotubes under various conditions, despite both MDSC expressing Oct 4 and various stem cell genes and differentiating into nonmyogenic lineages. The genetic inactivation of myostatin in MDSCs was associated with silencing of critical genes for early myogenesis (Actc1, Acta1, and MyoD). WT MDSCs implanted into the injured gastrocnemius of aged mdx mice significantly improved myofiber repair and reduced fat deposition and, to a lesser extent, fibrosis. In contrast to their in vitro behavior, Mst KO MDSCs in vivo also significantly improved myofiber repair, but had few effects on lipofibrotic degeneration. Although WT MDSCs are very myogenic in culture and stimulate muscle repair after injury in the aged mdx mouse, myostatin genetic inactivation blocks myotube formation in vitro, but the myogenic capacity is recovered in vivo under the influence of the myostatin+ host-tissue environment, presumably by reactivation of key genes originally silenced in the Mst KO MDSCs."	"Functional characterization of the human α-cardiac actin mutations Y166C and M305L involved in hypertrophic cardiomyopathy. Inherited cardiomyopathies are caused by point mutations in sarcomeric gene products, including α-cardiac muscle actin (ACTC1). We examined the biochemical and cell biological properties of the α-cardiac actin mutations Y166C and M305L identified in hypertrophic cardiomyopathy (HCM). Untagged wild-type (WT) cardiac actin, and the Y166C and M305L mutants were expressed by the baculovirus/Sf9-cell system and affinity purified by immobilized gelsolin G4-6. Their correct folding was verified by a number of assays. The mutant actins also displayed a disturbed intrinsic ATPase activity and an altered polymerization behavior in the presence of tropomyosin, gelsolin, and Arp2/3 complex. Both mutants stimulated the cardiac β-myosin ATPase to only 50 % of WT cardiac F-actin. Copolymers of WT and increasing amounts of the mutant actins led to a reduced stimulation of the myosin ATPase. Transfection of established cell lines revealed incorporation of EGFP- and hemagglutinin (HA)-tagged WT and both mutant actins into cytoplasmic stress fibers. Adenoviral vectors of HA-tagged WT and Y166C actin were successfully used to infect adult and neonatal rat cardiomyocytes (NRCs). The expressed HA-tagged actins were incorporated into the minus-ends of NRC thin filaments, demonstrating the ability to form hybrid thin filaments with endogenous actin. In NRCs, the Y166C mutant led after 72 h to a shortening of the sarcomere length when compared to NRCs infected with WT actin. Thus our data demonstrate that a mutant actin can be integrated into cardiomyocyte thin filaments and by its reduced mode of myosin interaction might be the basis for the initiation of HCM."	"Shortening and intracellular Ca2+ in ventricular myocytes and expression of genes encoding cardiac muscle proteins in early onset type 2 diabetic Goto-Kakizaki rats. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus. Cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. Contractile dysfunction, associated with disturbances in excitation-contraction coupling, has been widely demonstrated in the diabetic heart. The aim of this study was to investigate the pattern of cardiac muscle genes that are involved in the process of excitation-contraction coupling in the hearts of early onset (8-10 weeks of age) type 2 diabetic Goto-Kakizaki (GK) rats. Gene expression was assessed in ventricular muscle with real-time RT-PCR; shortening and intracellular Ca(2+) were measured in ventricular myocytes with video edge detection and fluorescence photometry, respectively. The general characteristics of the GK rats included elevated fasting and non-fasting blood glucose and blood glucose at 120 min following a glucose challenge. Expression of genes encoding cardiac muscle proteins (Myh6/7, Mybpc3, Myl1/3, Actc1, Tnni3, Tnn2, Tpm1/2/4 and Dbi) and intercellular proteins (Gja1/4/5/7, Dsp and Cav1/3) were unaltered in GK ventricle compared with control ventricle. The expression of genes encoding some membrane pumps and exchange proteins was unaltered (Atp1a1/2, Atp1b1 and Slc8a1), whilst others were either upregulated (Atp1a3, relative expression 2.61 ± 0.69 versus 0.84 ± 0.23) or downregulated (Slc9a1, 0.62 ± 0.07 versus 1.08 ± 0.08) in GK ventricle compared with control ventricle. The expression of genes encoding some calcium (Cacna1c/1g, Cacna2d1/2d2 and Cacnb1/b2), sodium (Scn5a) and potassium channels (Kcna3/5, Kcnj3/5/8/11/12, Kchip2, Kcnab1, Kcnb1, Kcnd1/2/3, Kcne1/4, Kcnq1, Kcng2, Kcnh2, Kcnk3 and Kcnn2) were unaltered, whilst others were either upregulated (Cacna1h, 0.95 ± 0.16 versus 0.47 ± 0.09; Scn1b, 1.84 ± 0.16 versus 1.11 ± 0.11; and Hcn2, 1.55 ± 0.15 versus 1.03 ± 0.08) or downregulated (Hcn4, 0.16 ± 0.03 versus 0.37 ± 0.08; Kcna2, 0.35 ± 0.03 versus 0.80 ± 0.11; Kcna4, 0.79 ± 0.25 versus 1.90 ± 0.26; and Kcnj2, 0.52 ± 0.07 versus 0.78 ± 0.08) in GK ventricle compared with control ventricle. The amplitude of ventricular myocyte shortening and the intracellular Ca(2+) transient were unaltered; however, the time-to-peak shortening was prolonged and time-to-half decay of the Ca(2+) transient was shortened in GK myocytes compared with control myocytes. The results of this study demonstrate changes in expression of genes encoding various excitation-contraction coupling proteins that are associated with disturbances in myocyte shortening and intracellular Ca(2+) transport."	"Genetic testing of candidate genes in arrhythmogenic right ventricular cardiomyopathy/dysplasia. Arrhythmogenic right ventricular cardiomyopathy/dysplasia (ARVC/D) is a rare cardiac genetic disease characterized by the presence of structural alterations in the right ventricle which may cause ventricular arrhythmias and may induce sudden cardiac death. ARVC/D has been associated with mutations in genes encoding myocyte adhesion proteins. However, only 30%-50% of patients have mutations in these genes. Genetic testing is useful in obtaining a diagnosis, particularly in individuals who do not completely fulfill clinical criteria, thereby also enabling the undertaking of preventive strategies in family members. The main goal of this study was to identify mutations in candidate genes associated with intercalate disks that could be potentially involved in ARVC/D pathogenesis. We analyze a cohort of 14 Spanish unrelated patients clinically diagnosed with ARVC/D without any genetic alteration in all previously known responsible genes. Thus, a genetic screening has been performed in 7 additional potential candidate genes (ACTC1 -actin alpha cardiac muscle 1-, CDHN -cadherin 2 type 1 or N-cadherin-, CTNNA1 -catenin alpha 1-, Cx43 or GJA1 -gap junction protein alpha 1-, MVCL -Metavinculin-, MYL2 -myosin light chain 2- and MYL3 -myosin light chain 3-) by direct sequencing analysis. Our genetic analysis did not identify any disease-causing mutation. Thirty single nucleotides polymorphisms were found, six of them novel. In conclusion, our ARVC/D Spanish cohort has not shown any mutations in the analyzed candidate genes despite their involvement in formation and maintenance of the intercalated disk."	"Cardiac alpha-myosin (MYH6) is the predominant sarcomeric disease gene for familial atrial septal defects. Secundum-type atrial septal defects (ASDII) account for approximately 10% of all congenital heart defects (CHD) and are associated with a familial risk. Mutations in transcription factors represent a genetic source for ASDII. Yet, little is known about the role of mutations in sarcomeric genes in ASDII etiology. To assess the role of sarcomeric genes in patients with inherited ASDII, we analyzed 13 sarcomeric genes (MYH7, MYBPC3, TNNT2, TCAP, TNNI3, MYH6, TPM1, MYL2, CSRP3, ACTC1, MYL3, TNNC1, and TTN kinase region) in 31 patients with familial ASDII using array-based resequencing. Genotyping of family relatives and control subjects as well as structural and homology analyses were used to evaluate the pathogenic impact of novel non-synonymous gene variants. Three novel missense mutations were found in the MYH6 gene encoding alpha-myosin heavy chain (R17H, C539R, and K543R). These mutations co-segregated with CHD in the families and were absent in 370 control alleles. Interestingly, all three MYH6 mutations are located in a highly conserved region of the alpha-myosin motor domain, which is involved in myosin-actin interaction. In addition, the cardiomyopathy related MYH6-A1004S and the MYBPC3-A833T mutations were also found in one and two unrelated subjects with ASDII, respectively. No mutations were found in the 11 other sarcomeric genes analyzed. The study indicates that sarcomeric gene mutations may represent a so far underestimated genetic source for familial recurrence of ASDII. In particular, perturbations in the MYH6 head domain seem to play a major role in the genetic origin of familial ASDII."	"Prevalence and distribution of sarcomeric gene mutations in Japanese patients with familial hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), which is inherited as an autosomal dominant trait, is the most prevalent hereditary cardiac disease. Although there are several reports on the systematic screening of mutations in the disease-causing genes in European and American populations, only limited information is available for Asian populations, including Japanese. Genetic screening of disease-associated mutations in 8 genes for sarcomeric proteins, MYH7, MYBPC3, MYL2, MYL3, TNNT2, TNNI3, TPM1, and ACTC, was performed by direct sequencing in 112 unrelated Japanese proband patients with familial HCM; 37 different mutations, including 13 novel ones in 5 genes, MYH7, MYBPC3, TNNT2, TNNI3, and TPM1, were identified in 49 (43.8%) patients. Among them, 3 carried compound heterozygous mutations in MYBPC3 or TNNT2. The frequency of patients carrying the MYBPC3, MYH7, and TNNT2 mutations were 19.6%, 10.7%, and 8.9%, respectively, and the most frequently affected genes in the northeastern and southwestern parts of Japan were MYBPC3 and MYH7, respectively. Several mutations were found in multiple unrelated proband patients, for which the geographic distribution suggested founder effects of the mutations. This study demonstrated the frequency and distribution of mutations in a large cohort of familial HCM in Japan."	"Application of site and haplotype-frequency based approaches for detecting selection signatures in cattle. 'Selection signatures' delimit regions of the genome that are, or have been, functionally important and have therefore been under either natural or artificial selection. In this study, two different and complementary methods--integrated Haplotype Homozygosity Score (|iHS|) and population differentiation index (FST)--were applied to identify traces of decades of intensive artificial selection for traits of economic importance in modern cattle. We scanned the genome of a diverse set of dairy and beef breeds from Germany, Canada and Australia genotyped with a 50 K SNP panel. Across breeds, a total of 109 extreme |iHS| values exceeded the empirical threshold level of 5% with 19, 27, 9, 10 and 17 outliers in Holstein, Brown Swiss, Australian Angus, Hereford and Simmental, respectively. Annotating the regions harboring clustered |iHS| signals revealed a panel of interesting candidate genes like SPATA17, MGAT1, PGRMC2 and ACTC1, COL23A1, MATN2, respectively, in the context of reproduction and muscle formation. In a further step, a new Bayesian FST-based approach was applied with a set of geographically separated populations including Holstein, Brown Swiss, Simmental, North American Angus and Piedmontese for detecting differentiated loci. In total, 127 regions exceeding the 2.5 per cent threshold of the empirical posterior distribution were identified as extremely differentiated. In a substantial number (56 out of 127 cases) the extreme FST values were found to be positioned in poor gene content regions which deviated significantly (p &lt; 0.05) from the expectation assuming a random distribution. However, significant FST values were found in regions of some relevant genes such as SMCP and FGF1. Overall, 236 regions putatively subject to recent positive selection in the cattle genome were detected. Both |iHS| and FST suggested selection in the vicinity of the Sialic acid binding Ig-like lectin 5 gene on BTA18. This region was recently reported to be a major QTL with strong effects on productive life and fertility traits in Holstein cattle. We conclude that high-resolution genome scans of selection signatures can be used to identify genomic regions contributing to within- and inter-breed phenotypic variation."	"Identification of common differentially expressed genes in urinary bladder cancer. Current diagnosis and treatment of urinary bladder cancer (BC) has shown great progress with the utilization of microarrays. Our goal was to identify common differentially expressed (DE) genes among clinically relevant subclasses of BC using microarrays. BC samples and controls, both experimental and publicly available datasets, were analyzed by whole genome microarrays. We grouped the samples according to their histology and defined the DE genes in each sample individually, as well as in each tumor group. A dual analysis strategy was followed. First, experimental samples were analyzed and conclusions were formulated; and second, experimental sets were combined with publicly available microarray datasets and were further analyzed in search of common DE genes. The experimental dataset identified 831 genes that were DE in all tumor samples, simultaneously. Moreover, 33 genes were up-regulated and 85 genes were down-regulated in all 10 BC samples compared to the 5 normal tissues, simultaneously. Hierarchical clustering partitioned tumor groups in accordance to their histology. K-means clustering of all genes and all samples, as well as clustering of tumor groups, presented 49 clusters. K-means clustering of common DE genes in all samples revealed 24 clusters. Genes manifested various differential patterns of expression, based on PCA. YY1 and NFκB were among the most common transcription factors that regulated the expression of the identified DE genes. Chromosome 1 contained 32 DE genes, followed by chromosomes 2 and 11, which contained 25 and 23 DE genes, respectively. Chromosome 21 had the least number of DE genes. GO analysis revealed the prevalence of transport and binding genes in the common down-regulated DE genes; the prevalence of RNA metabolism and processing genes in the up-regulated DE genes; as well as the prevalence of genes responsible for cell communication and signal transduction in the DE genes that were down-regulated in T1-Grade III tumors and up-regulated in T2/T3-Grade III tumors. Combination of samples from all microarray platforms revealed 17 common DE genes, (BMP4, CRYGD, DBH, GJB1, KRT83, MPZ, NHLH1, TACR3, ACTC1, MFAP4, SPARCL1, TAGLN, TPM2, CDC20, LHCGR, TM9SF1 and HCCS) 4 of which participate in numerous pathways. The identification of the common DE genes among BC samples of different histology can provide further insight into the discovery of new putative markers."	"Rapid detection of genetic variants in hypertrophic cardiomyopathy by custom DNA resequencing array in clinical practice. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiac disease (1/500) and the most common cause of sudden cardiac death in young people. Pathogenic mutation detection of HCM is having a growing impact on the medical management of patients and their families. However, the remarkable genetic and allelic heterogeneity makes molecular analysis by conventional methods very time-consuming, expensive and difficult to realise in a routine diagnostic molecular laboratory. The authors used their custom DNA resequencing array which interrogates all possible single-nucleotide variants on both strands of all exons (n=160), splice sites and 5'-untranslated region of 12 HCM genes (27 000 nucleotides). The results for 122 unrelated patients with HCM are presented. Thirty-three known or novel potentially pathogenic heterozygous single-nucleotide variants were identified in 38 patients (31%) in genes MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3 and ACTC1. Although next-generation sequencing will replace all large-scale sequencing platforms for inherited cardiac disorders in the near future, this HCM resequencing array is currently the most rapid, cost-effective and reasonably efficient technology for first-tier mutation screening of HCM in clinical practice. Because of its design, the array is also an appropriate tool for initial screening of other inherited forms of cardiomyopathy."	"Changing pattern of gene expression is associated with ventricular myocyte dysfunction and altered mechanisms of Ca2+ signalling in young type 2 Zucker diabetic fatty rat heart. The association between type 2 diabetes and obesity is very strong, and cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. The aim of this study was to investigate early changes in the pattern of genes encoding cardiac muscle regulatory proteins and associated changes in ventricular myocyte contraction and Ca(2+) transport in young (9- to 13-week-old) type 2 Zucker diabetic fatty (ZDF) rats. The amplitude of myocyte shortening was unaltered; however, time-to-peak shortening and time to half-relaxation of shortening were prolonged in ZDF myocytes (163 ± 5 and 127 ± 7 ms, respectively) compared with age-matched control rats (136 ± 5 and 103 ± 4 ms, respectively). The amplitude of the Ca(2+) transient was unaltered; however, time-to-peak Ca(2+) transient was prolonged in ZDF myocytes (66.9 ± 2.6 ms) compared with control myocytes (57.6 ± 2.3 ms). The L-type Ca(2+) current was reduced, and inactivation was prolonged over a range of test potentials in ZDF myocytes. At 0 mV, the density of L-type Ca(2+) current was 1.19 ± 0.28 pA pF(-1) in ZDF myocytes compared with 2.42 ± 0.40 pA pF(-1) in control myocytes. Sarcoplasmic reticulum Ca(2+) content, release and uptake and myofilament sensitivity to Ca(2+) were unaltered in ZDF myocytes compared with control myocytes. Expression of genes encoding various L-type Ca(2+) channel proteins (Cacna1c, Cacna1g, Cacna1h and Cacna2d1) and cardiac muscle proteins (Myh7) were upregulated, and genes encoding intracellular Ca(2+) transport regulatory proteins (Atp2a2 and Calm1) and some cardiac muscle proteins (Myh6, Myl2, Actc1, Tnni3, Tnn2, and Tnnc1) were downregulated in ZDF heart compared with control heart. A change in the expression of genes encoding myosin heavy chain and L-type Ca(2+) channel proteins might partly underlie alterations in the time course of contraction and Ca(2+) transients in ventricular myocytes from ZDF rats."	"Epidemiology, genetics and treatments for myopia. Myopia is a significant public health problem and its prevalence is increasing over time and genetic factors in disease development are important. The prevalence and incidence of myopia within sampled population often varies with age, country, sex, race, ethnicity, occupation, environment, and other factors. Myopia growth is under a combination of genes and their products in time and space to complete the coordination role of the guidance. Myopia-related genes include about 70 genetic loci to which primary myopias have been mapped, although the number is constantly increasing and depends to some extent on definition. Of these, several are associated with additional abnormalities, mostly as part of developmental syndromes. These tend to result from mutations in genes encoding transcriptional activators, and most of these have been identified by sequencing candidate genes in patients with developmental anomalies. Currently, COL1A1 (collagen alpha-1 chain of type I), COL2A1 (collagen alpha-1 chain of type II), ACTC1 (actin, alpha, cardiac muscle 1), PAX6 (paired box gene 6) and NIPBL (nipped-B homolog), and so on have been mapped. Myopia is most commonly treated with spectacles or glasses. The most common surgical procedure performed to correct myopia is laser in situ keratomileusis (LASIK). This review of the recent advances on epidemiology, genetic locations and treatments of myopia are summarized."	"Reduced ACTC1 expression might play a role in the onset of congenital heart disease by inducing cardiomyocyte apoptosis. The Cardiac α actin 1 gene (ACTC1) has been related to familial atrial septal defects. This study was set to explore a potential role of this gene in the formation of sporadic congenital heart disease (CHD). Assessment of cardiac tissue samples from 33 patients with sporadic CHD (gestational age (GA) 18 weeks-49 months) with real-time RT-PCR, Western blotting and immunohistochemistry has revealed a markedly decreased ACTC1 expression in the majority of samples (78.8%) compared with autopsied normal heart tissue from aged-matched subjects (GA 17 weeks-36 months). Also, as shown by terminal deoxynucleotidyl transferase-mediated dUTP nick end-labeling (TUNEL) assay, the proportion of apoptotic cardiomyocytes in samples featuring down-regulated ACTC1 expression (Group 1) was significantly greater than those with normal expression (Group 2) and the controls (P&lt;0.01). The proportion of apoptotic cells strongly correlated with the expression of ACTC1 (r=-0.918, P&lt;0.01). A study of 2 essential genes involved in apoptosis, Caspase-3 and Bcl-2, confirmed that the former has significantly increased expression, whilst the latter has decreased expression in Group 1 than in the other groups (P&lt;0.01). Transfection of a small interfering RNA targeting, Actc1 (Actc1-siRNA), to a cardiomyocyte cell line, H9C2, also detected more apoptotic cells. Reduced ACTC1 expression might play a role in the onset of CHD through induction of cardiomyocyte apoptosis."	"Excessive apoptosis as a downstream molecular event during the development of congenital heart diseases. NA"	"A genome-wide association study identifies a susceptibility locus for refractive errors and myopia at 15q14. Refractive errors are the most common ocular disorders worldwide and may lead to blindness. Although this trait is highly heritable, identification of susceptibility genes has been challenging. We conducted a genome-wide association study for refractive error in 5,328 individuals from a Dutch population-based study with replication in four independent cohorts (combined 10,280 individuals in the replication stage). We identified a significant association at chromosome 15q14 (rs634990, P = 2.21 × 10⁻¹⁴). The odds ratio of myopia compared to hyperopia for the minor allele (minor allele frequency = 0.47) was 1.41 (95% CI 1.16-1.70) for individuals heterozygous for the allele and 1.83 (95% CI 1.42-2.36) for individuals homozygous for the allele. The associated locus is near two genes that are expressed in the retina, GJD2 and ACTC1, and appears to harbor regulatory elements which may influence transcription of these genes. Our data suggest that common variants at 15q14 influence susceptibility for refractive errors in the general population."	"Investigation of a transgenic mouse model of familial dilated cardiomyopathy. We have investigated a transgenic mouse model of inherited dilated cardiomyopathy that stably expresses the ACTC E361G mutation at around 50% of total actin in the heart. F-actin isolated from ACTC E361G mouse hearts was incorporated into thin filaments with native human tropomyosin and troponin and compared with NTG mouse actin by in vitro motility assay. There was no significant difference in sliding speed, fraction of filaments motile or Ca(2+)-sensitivity (ratio EC(50) E361G/NTG=0.95+/-0.08). The Ca(2+)-sensitivity of force in skinned trabeculae from ACTC E361G mice was slightly higher than NTG (EC(50) E361G/NTG=0.78+/-0.04). The molecular phenotype was revealed when troponin was dephosphorylated; Ca(2+)-sensitivity of E361G-containing thin filaments was now lower than NTG (EC(50) E361G(dPTn)/NTG(dPTn)=2.15+/-0.09). We demonstrated that this was due to uncoupling of Ca(2+)-sensitivity from troponin I phosphorylation by comparing Ca(2+)-sensitivity of phosphorylated and dephosphorylated thin filaments. For NTG actin-containing thin filaments EC(50) native/dPTn=3.0+/-0.3 but for E361G-containing thin filaments EC(50) native/dPTn=1.04+/-0.07.We studied contractility in isolated myocytes and found no significant differences under basal conditions. We measured cardiac performance by cine-MRI, echocardiography and with a conductance catheter over a period of 4 to 18 months and found minimal systematic differences between NTG and ACTC E361G mice under basal conditions. However, the increase in septal thickening, ejection fraction, heart rate and cardiac output following dobutamine treatment was significantly less in ACTC E361G mice compared with NTG. We propose that the ACTC E361G mutation uncouples myofilament Ca(2+)-sensitivity from Troponin I phosphorylation and blunts the response to adrenergic stimulation, leading to a reduced cardiac reserve with consequent contractile dysfunction under stress, leading to dilated cardiomyopathy."	"Discovering disease-specific biomarker genes for cancer diagnosis and prognosis. The large amounts of microarray data provide us a great opportunity to identify gene expression profiles (GEPs) in different tissues or disease states. Disease-specific biomarker genes likely share GEPs that are distinct in disease samples as compared with normal samples. The similarity of the GEPs may be evaluated by Pearson Correlation Coefficient (PCC) and the distinctness of GEPs may be assessed by Kolmogorov-Smirnov distance (KSD). In this study, we used the PCC and KSD metrics for GEPs to identify disease-specific (cancer-specific) biomarkers. We first analyzed and compared GEPs using microarray datasets for smoking and lung cancer. We found that the number of genes with highly different GEPs between comparing groups in smoking dataset was much larger than that in lung cancer dataset; this observation was further verified when we compared GEPs in smoking dataset with prostate cancer datasets. Moreover, our Gene Ontology analysis revealed that the top ranked biomarker candidate genes for prostate cancer were highly enriched in molecular function categories such as 'cytoskeletal protein binding' and biological process categories such as 'muscle contraction'. Finally, we used two genes, ACTC1 (encoding an actin subunit) and HPN (encoding hepsin), to demonstrate the feasibility of diagnosing and monitoring prostate cancer using the expression intensity histograms of marker genes. In summary, our results suggested that this approach might prove promising and powerful for diagnosing and monitoring the patients who come to the clinic for screening or evaluation of a disease state including cancer."	"Novel mutations in beta-myosin heavy chain, actin and troponin-I genes associated with dilated cardiomyopathy in Indian population. NA"	"Hyperbaric oxygen induces a cytoprotective and angiogenic response in human microvascular endothelial cells. A genome-wide microarray analysis of gene expression was carried out on human microvascular endothelial cells (HMEC-1) exposed to hyperbaric oxygen treatment (HBOT) under conditions that approximated clinical settings. Highly up-regulated genes included immediate early transcription factors (FOS, FOSB, and JUNB) and metallothioneins. Six molecular chaperones were also up-regulated immediately following HBOT, and all of these have been implicated in protein damage control. Pathway analysis programs identified the Nrf-2-mediated oxidative stress response as one of the primary responders to HBOT. Several of the microarray changes in the Nrf2 pathway and a molecular chaperone were validated using quantitative PCR. For all of the genes tested (Nrf2, HMOX1, HSPA1A, M1A, ACTC1, and FOS), HBOT elicited large responses, whereas changes were minimal following treatment with 100% O(2) in the absence of elevated pressure. The increased expression of immediate early and cytoprotective genes corresponded with an HBOT-induced increase in cell proliferation and oxidative stress resistance. In addition, HBOT treatment enhanced endothelial tube formation on Matrigel plates, with particularly dramatic effects observed following two daily HBO treatments. Understanding how HBOT influences gene expression changes in endothelial cells may be beneficial for improving current HBOT-based wound-healing protocols. These data also point to other potential HBOT applications where stimulating protection and repair of the endothelium would be beneficial, such as patient preconditioning prior to major surgery."	"The influence of rat mesenchymal stem cell CD44 surface markers on cell growth, fibronectin expression, and cardiomyogenic differentiation on silk fibroin - Hyaluronic acid cardiac patches. Since MSCs contain an abundant of CD44 surface markers, it is of interesting to investigate whether CD44 on rat MSC (rMSCs) influenced cell growth, fibronectin expression and cardiomyogenic differentiation on new SF/HA cardiac patches. For this investigation, we examined the influences of rMSCs with or without a CD44-blockage treatment on the aforementioned issues after they were cultivated, and further induced by 5-aza on SF and SF/HA patches. The results showed that the relative growth rates of rMSCs cultured on cultural wells, SF/HA patches without or with a CD44-blockage treatment were 100%, 208.9+/-7.1 (%) or 48.4+/-6.0 (%) (n=3, for all), respectively, after five days of cultivations. Moreover, rMSCs cultivated on SF/HA patches highly promoted fibronectin expressions (e.g., 1.8x10(5)/cell, in fluorescent intensity) while cells with a CD44-blockage treatment markedly diminished the expressions (e.g., 1.1x10(4)/cell, in fluorescent intensity) on same patches. For investigating possible influences of CD44 surface markers of rMSCs on their cardiomyogenic differentiation, the expressions of specific cardiac genes of cells were examined by using real-time PCR analysis. The results indicated that 5-aza inducing rMSCs significantly promoted the expressions of Gata4, Nkx2.5, Tnnt2 and Actc1 genes (all, P&lt;0.01 or better, n=3) on SF/HA patches compared with those expressions on SF patches and for cells with a CD44-blockage treatment on SF/HA patches. Furthermore, the intensity of the expressions of cardiotin and connexin 43 of 5-aza inducing rMSCs were markedly higher than those of cells with a CD44-blockage treatment after they were cultured on SF/HA patches. Through this study, we reported that CD44 surface markers of rMSCs highly influenced the proliferations, fibronectin expressions and cardiomyogenic differentiation of rMSCs cultivated on cardiac SF/HA patches."	"Human actin mutations associated with hypertrophic and dilated cardiomyopathies demonstrate distinct thin filament regulatory properties in vitro. Two cardiomyopathic mutations were expressed in human cardiac actin, using a Baculovirus/insect cell system; E99K is associated with hypertrophic cardiomyopathy whereas R312H is associated with dilated cardiomyopathy. The hypothesis that the divergent phenotypes of these two cardiomyopathies are associated with fundamental differences in the molecular mechanics and thin filament regulation of the underlying actin mutation was tested using the in vitro motility and laser trap assays. In the presence of troponin (Tn) and tropomyosin (Tm), beta-cardiac myosin moved both E99K and R312H thin filaments at significantly (p&lt;0.05) slower velocities than wild type (WT) at maximal Ca(++). At submaximal Ca(++), R312H thin filaments demonstrated significantly increased Ca(++) sensitivity (pCa(50)) when compared to WT. Velocity as a function of ATP concentration revealed similar ATP binding rates but slowed ADP release rates for the two actin mutants compared to WT. Single molecule laser trap experiments performed using both unregulated (i.e. actin) and regulated thin filaments in the absence of Ca(++) revealed that neither actin mutation significantly affected the myosin's unitary step size (d) or duration of strong actin binding (t(on)) at 20 microM ATP. However, the frequency of individual strong-binding events in the presence of Tn and Tm, was significantly lower for E99K than WT at comparable myosin surface concentrations. The cooperativity of a second myosin head binding to the thin filament was also impaired by E99K. In conclusion, E99K inhibits the activation of the thin filament by myosin strong-binding whereas R312H demonstrates enhanced calcium activation."	"Sarcomere mutations in cardiogenesis and ventricular noncompaction. Ventricular noncompaction is a form of cardiomyopathy where increased trabeculation is present frequently affecting the left ventricle and resembling an embryonic state of heart development. Clinically, left ventricular noncompaction may manifest as congestive heart failure, arrhythmias, and/or thromboembolic events. There are multiple genes linked to noncompaction, but recently, sarcomere gene mutations were found in both familial and sporadic cases of noncompaction. The association of noncompaction with sarcomere mutations supports the classification of ventricular noncompaction as cardiomyopathy and raises interesting questions regarding the continuum of hypertrophic cardiomyopathy, dilated cardiomyopathy, and noncompaction. The mutational spectrum of sarcomere genes in these disorders highlights the importance of the MYH7 gene encoding beta-myosin heavy chain and ACTC1 encoding the cardiac actin gene. Intriguingly, these mutations also share a low but definitive incidence of congenital heart malformations including septal defects. These human genetic findings support that normal myocardial and sarcomere function are required for proper compaction and septation and that these mutations also portend a high risk of developing heart failure in later life."	"The cardiomyogenic differentiation of rat mesenchymal stem cells on silk fibroin-polysaccharide cardiac patches in vitro. Polysaccharides and proteins profoundly impact the development and growth of tissues in the natural extra-cellular matrix (ECM). To mimic a natural ECM, polysaccharides were incorporated to/or co-sprayed with silk fibroin (SF) to produce SF/chitosan (CS) or SF/CS-hyaluronic acid (SF/CS-HA) microparticles that were further processed by mechanical pressing and genipin cross-linking to produce hybrid cardiac patches. The ATR-FTIR spectra confirm the co-existence of CS or CS-HA and SF in microparticles and patches. For evaluating the cellular responses of rMSCs to the SF/CS and SF/CS-HA cardiac patches, the growth of rMSCs and cardiomyogenic differentiation of 5-aza inducing rMSCs cultured on patches was examined. First, the isolated rMSCs were identified with various positive and negative surface markers such as CD 44 and CD 31 by a flow cytometric technique, respectively. For examining the growth of rMSCs on the patches, MTT viability assay was performed, and the results demonstrated that the growth of rMSCs on SF and SF-hybrid patches significantly exceeded (P&lt;0.001) that on culture wells after seven days of cultivation. Additionally, the relative growth rates of rMSCs on SF/CS and SF/CS-HA hybrid patches were significantly better (P&lt;0.01) than that on SF patches that were also observed by using vimentin stain to the cells. For instance, the relative cell growth rates (%) in cell culture wells, SF, SF/CS and SF/CS-HA patches were 100%, 282.9+/-6.5%, 337.0+/-8.0% and 332.6+/-6.6% (n=6, for all), respectively. For investigating the effects of the hybrid patches on cardiomyogenic differentiation of 5-aza inducing rMSCs, the expressions of specific cardiac genes of cells such as Gata4 and Nkx2.5 were examined by real-time quantitative polymerase chain reaction (real-time PCR) analysis. The results of cardiomyogenic differentiation of induced rMSCs on SF/CS and SF/CS-HA hybrid patches significantly improved the expressions of cardiac genes of Gata4, Nkx2.5, Tnnt2 and Actc1 genes (all, P&lt;0.01 or better, n=3) than those on SF patches and culture wells. Interestingly, the results of cardiac gene expressions of the cells on the SF/CS-HA hybrid patches were the most pronounced in promoting cardiomyogenic differentiations in this investigation. Furthermore, immunofluorescence staining of cardiac proteins such as cardiotin and connexin 43 for induced rMSCs cultured on SF/CS and SF/CS-HA hybrid patches were much pronounced compared with SF patches, indicating the improvements of cardiomyogenic differentiation on the hybrid patches. The results of this study demonstrate that the SF/CS and SF/CS-HA hybrid patches may be promising biomaterials for regenerating infarcted cardiac tissues."	"Diagnostic yield, interpretation, and clinical utility of mutation screening of sarcomere encoding genes in Danish hypertrophic cardiomyopathy patients and relatives. The American Heart Association (AHA) recommends family screening for hypertrophic cardiomyopathy (HCM). We assessed the outcome of family screening combining clinical evaluation and screening for sarcomere gene mutations in a cohort of 90 Danish HCM patients and their close relatives, in all 451 persons. Index patients were screened for mutations in all coding regions of 10 sarcomere genes (MYH7, MYL3, MYBPC3, TNNI3, TNNT2, TPM1, ACTC, CSRP3, TCAP, and TNNC1) and five exons of TTN. Relatives were screened for presence of minor or major diagnostic criteria for HCM and tracking of DNA variants was performed. In total, 297 adult relatives (&gt;18 years) (51.2%) fulfilled one or more criteria for HCM. A total of 38 HCM-causing mutations were detected in 32 index patients. Six patients carried two disease-associated mutations. Twenty-two mutations have only been identified in the present cohort. The genetic diagnostic yield was almost twice as high in familial HCM (53%) vs. HCM of sporadic or unclear inheritance (19%). The yield was highest in families with an additional history of HCM-related clinical events. In relatives, 29.9% of mutation carriers did not fulfil any clinical diagnostic criterion, and in 37.5% of relatives without a mutation, one or more criteria was fulfilled. A total of 60% of family members had no mutation and could be reassured and further follow-up ceased. Genetic diagnosis may be established in approximately 40% of families with the highest yield in familial HCM with clinical events. Mutation-screening was superior to clinical investigation in identification of individuals not at increased risk, where follow-up is redundant, but should be offered in all families with relatives at risk for developing HCM."	"Mutations in sarcomere protein genes in left ventricular noncompaction. Left ventricular noncompaction constitutes a primary cardiomyopathy characterized by a severely thickened, 2-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses. The genetic basis of this cardiomyopathy is still largely unresolved. We speculated that mutations in sarcomere protein genes known to cause hypertrophic cardiomyopathy and dilated cardiomyopathy may be associated with left ventricular noncompaction. Mutational analysis in a cohort of 63 unrelated adult probands with left ventricular noncompaction and no other congenital heart anomalies was performed by denaturing high-performance liquid chromatography analysis and direct DNA sequencing of 6 genes encoding sarcomere proteins. Heterozygous mutations were identified in 11 of 63 samples in genes encoding beta-myosin heavy chain (MYH7), alpha-cardiac actin (ACTC), and cardiac troponin T (TNNT2). Nine distinct mutations, 7 of them in MYH7, 1 in ACTC, and 1 in TNNT2, were found. Clinical evaluations demonstrated familial disease in 6 of 11 probands with sarcomere gene mutations. MYH7 mutations segregated with the disease in 4 autosomal dominant LVNC kindreds. Six of the MYH7 mutations were novel, and 1 encodes a splice-site mutation, a relatively unique finding for MYH7 mutations. Modified residues in beta-myosin heavy chain were located mainly within the ATP binding site. We conclude that left ventricular noncompaction is within the diverse spectrum of cardiac morphologies triggered by sarcomere protein gene defects. Our findings support the hypothesis that there is a shared molecular etiology of different cardiomyopathic phenotypes."	"Idiopathic restrictive cardiomyopathy in children is caused by mutations in cardiac sarcomere protein genes. Restrictive cardiomyopathy (RCM) is rare in childhood, but has a grave prognosis. The cause of disease in most cases is unknown. To determine the prevalence of sarcomere protein gene mutations in children with idiopathic RCM. Twelve patients (9 female, mean age 5.1 years) with idiopathic RCM referred between 1991 and August 2006 underwent detailed clinical and genetic evaluation. Nine had received cardiac transplants at the time of the study. The entire coding sequences of the genes encoding eight cardiac sarcomere proteins and desmin were screened for mutations. Familial evaluation was performed on first-degree relatives. Four patients (33%) had a family history of cardiomyopathy: RCM (n = 2); dilated cardiomyopathy (n = 1) and left ventricular non-compaction (n = 1). Sarcomere protein gene mutations were identified in four patients (33%): 2 in the cardiac troponin I gene (TNNI3) and 1 each in the troponin T (TNNT2) and alpha-cardiac actin (ACTC) genes. Two were de novo mutations and 3 were new mutations. All mutations occurred in functionally important and conserved regions of the genes. Sarcomere protein gene mutations are an important cause of idiopathic RCM in childhood. We describe the first mutation in ACTC in familial RCM. The identification of RCM in a child should prompt consideration of sarcomere protein disease as a possible cause and warrants clinical evaluation of the family."	"Alpha-cardiac actin mutations produce atrial septal defects. Atrial septal defect (ASD) is one of the most frequent congenital heart defects (CHDs) with a variable phenotypic effect depending on the size of the septal shunt. We identified two pedigrees comprising 20 members segregating isolated autosomal dominant secundum ASD. By genetic mapping, we identified the gene-encoding alpha-cardiac actin (ACTC1), which is essential for cardiac contraction, as the likely candidate. A mutation screen of the coding regions of ACTC1 revealed a founder mutation predicting an M123V substitution in affected individuals of both pedigrees. Functional analysis of ACTC1 with an M123V substitution shows a reduced affinity for myosin, but with retained actomyosin motor properties. We also screened 408 sporadic patients with CHDs and identified a case with ASD and a 17-bp deletion in ACTC1 predicting a non-functional protein. Morpholino (MO) knockdown of ACTC1 in chick embryos produces delayed looping and reduced atrial septa, supporting a developmental role for this protein. The combined results indicate, for the first time, that ACTC1 mutations or reduced ACTC1 levels may lead to ASD without signs of cardiomyopathy."	"Myozenin 2 is a novel gene for human hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic disorder caused by mutations in sarcomeric proteins (excluding phenocopy). The causal genes in approximately one-third of the cases remain unknown. We identified a family comprised of 6 clinically affected members. The phenotype was characterized by early onset of symptoms, pronounced cardiac hypertrophy, and cardiac arrhythmias. We excluded MYH7, MYBPC3, TNNT2, and ACTC1 as the causal gene either by direct sequencing or by haplotype analysis. To map the putative candidate sarcomeric gene, we perforbold locus-specific haplotyping to detect cosegregation of the locus haplotype with the phenotype, followed by mutation screening. We genotyped 5 short-tandem-repeat markers that spanned a 4.4-centimorgan region on 4q26-q27 locus and encompassed myozenin 2 (MYOZ2), a Z-disk protein. The maximum logarithm of odds score was 2.03 (P=0.005). All affected members shared a common haplotype, implicating MYOZ2 as the causal gene. To detect the causal mutation, we sequenced all exons and exon-intron boundaries of MYOZ2 in 10 family members and identified a T--&gt;C missense mutation corresponding to S48P substitution, which cosegregated with inheritance of HCM (N=6). It was absent in 4 clinically normal family members and in 658 additional normal individuals. To determine frequency of the MYOZ2 mutations in HCM, we sequenced MYOZ2 in 516 HCM probands and detected another missense mutation (I246M). It was absent in 2 normal family members and 517 controls. Both mutations affect highly conserved amino acids. We conclude MYOZ2 is a novel causal gene for human HCM."	"Identification of direct serum-response factor gene targets during Me2SO-induced P19 cardiac cell differentiation. Serum-response factor (SRF) is an obligatory transcription factor, required for the formation of vertebrate mesoderm leading to the origin of the cardiovascular system. Protein A-TEV-tagged chromatin immunoprecipitation technology was used to collect direct SRF-bound gene targets from pluripotent P19 cells, induced by Me2SO treatment into an enriched cardiac cell population. From 242 sequenced DNA fragments, we identified 188 genomic DNA fragments as potential direct SRF targets that contain CArG boxes and CArG-like boxes. Of the 92 contiguous genes that were identified, a subgroup of 43 SRF targets was then further validated by co-transfection assays with SRF. Expression patterns of representative candidate genes were compared with the LacZ reporter expression activity of the endogenous SRF gene. According to the Unigene data base, 84% of the SRF target candidates were expressed, at least, in the heart. In SRF null embryonic stem cells, 81% of these SRF target candidates were greatly affected by the absence of SRF. Among these SRF-regulated genes, Raf1, Map4k4, and Bicc1 have essential roles in mesoderm formation. The 12 regulated SRF target genes, Mapk10 (JNK3), Txnl2, Azi2, Tera, Sema3a, Lrp4, Actc1, Myl3, Hspg2, Pgm2, Hif3a, and Asb5, have been implicated in cardiovascular formation, and the Ski and Hes6 genes have roles in muscle differentiation. SRF target genes related to cell mitosis and cycle, E2f5, Npm1, Cenpb, Rbbp6, and Scyl1, expressed in the heart tissue were differentially regulated in SRF null ES cells."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYH7"	"hypertrophic cardiomyopathy"	"Penetrance of Hypertrophic Cardiomyopathy in Sarcomere Protein Mutation Carriers. Predictive genetic screening of relatives of patients with hypertrophic cardiomyopathy (HCM) caused by sarcomere protein (SP) gene mutations is current standard of care, but there are few data on long-term outcomes in mutation carriers without HCM. The aim of this study was to determine the incidence of new HCM diagnosis in SP mutation carriers. This was a retrospective analysis of adult and pediatric SP mutation carriers identified during family screening who did not fulfill diagnostic criteria for HCM at first evaluation. The authors evaluated 285 individuals from 156 families (median age 14.2 years [interquartile range: 6.8 to 31.6 years], 141 [49.5%] male individuals); 145 (50.9%) underwent cardiac magnetic resonance (CMR). Frequency of causal genes was as follows: MYBPC3 n = 123 (43.2%), MYH7 n = 69 (24.2%), TNNI3 n = 39 (13.7%), TNNT2 n = 34 (11.9%), TPM1 n = 9 (3.2%), MYL2 n = 6 (2.1%), ACTC1 n = 1 (0.4%), multiple mutations n = 4 (1.4%). Median follow-up was 8.0 years (interquartile range: 4.0 to 13.3 years) and 86 (30.2%) patients developed HCM; 16 of 50 (32.0%) fulfilled diagnostic criteria on CMR but not echocardiography. Estimated HCM penetrance at 15 years of follow-up was 46% (95% confidence interval [CI]: 38% to 54%). In a multivariable model adjusted for age and stratified for CMR, independent predictors of HCM development were male sex (hazard ratio [HR]: 2.91; 95% CI: 1.82 to 4.65) and abnormal electrocardiogram (ECG) (HR: 4.02; 95% CI: 2.51 to 6.44); TNNI3 variants had the lowest risk (HR: 0.19; 95% CI: 0.07 to 0.55, compared to MYBPC3). Following a first negative screening, approximately 50% of SP mutation carriers develop HCM over 15 years of follow-up. Male sex and an abnormal ECG are associated with a higher risk of developing HCM. Regular CMR should be considered in long-term screening."	"Gene expression profiling of hypertrophic cardiomyocytes identifies new players in pathological remodeling. Pathological cardiac remodeling is characterized by cardiomyocyte hypertrophy and fibroblast activation, which can ultimately lead to maladaptive hypertrophy and heart failure (HF). Genome-wide expression analysis on heart tissue has been instrumental for the identification of molecular mechanisms at play. However, these data were based on signals derived from all cardiac cell types. Here we aimed for a more detailed view on molecular changes driving maladaptive cardiomyocyte hypertrophy to aid in the development of therapies to reverse pathological remodeling. Utilizing cardiomyocyte-specific reporter mice exposed to pressure overload by transverse aortic banding and cardiomyocyte isolation by flow cytometry, we obtained gene expression profiles of hypertrophic cardiomyocytes in the more immediate phase after stress, and cardiomyocytes showing pathological hypertrophy. We identified subsets of genes differentially regulated and specific for either stage. Among the genes specifically upregulated in the cardiomyocytes during the maladaptive phase we found known stress markers, such as Nppb and Myh7, but additionally identified a set of genes with unknown roles in pathological hypertrophy, including the platelet isoform of phosphofructokinase (PFKP). Norepinephrine-angiotensin II treatment of cultured human cardiomyocytes induced secretion of NT pro-BNP and recapitulated the upregulation of these genes, indicating conservation of the upregulation in failing cardiomyocytes. Moreover, several genes induced during pathological hypertrophy were also found to be increased in human heart failure, with their expression positively correlating to the known stress markers NPPB and MYH7. Mechanistically, suppression of Pfkp in primary cardiomyocytes attenuated stress-induced gene expression and hypertrophy, indicating that Pfkp is an important novel player in pathological remodeling of cardiomyocytes. Using cardiomyocyte-specific transcriptomic analysis we identified novel genes induced during pathological hypertrophy that are relevant for human HF, and we show that PFKP is a conserved failure-induced gene that can modulate the cardiomyocyte stress response. Maladaptive cardiac remodeling is a consequence of pathological hypertrophy which includes cardiomyocytes changes and a decline in contractility. Our cardiomyocyte-specific gene expression studies revealed a gene program specific for pathological hypertrophy that is conserved in diseased mouse and human cardiomyocytes. We identified PFKP as a novel gene actively involved in cardiomyocyte remodeling, indicating PFKP as a potential therapeutic target to block the progression of heart failure."	"Disclosure of secondary findings in exome sequencing of 2480 Japanese cancer patients. High-throughput sequencing has greatly contributed to precision medicine. However, challenges remain in reporting secondary findings (SFs) of germline pathogenic variants and managing the affected patients. The aim of this study was to examine the incidence of SFs in Japanese cancer patients using whole exome sequencing (WES) and to understand patient preferences regarding SF disclosure. WES was conducted for 2480 cancer patients. Genomic data were screened and classified for variants of 59 genes listed by the American College of Medical Genetics and Genomics SF v2.0 and for an additional 13 hereditary cancer-related genes. Majority of the participants (68.9%; 1709/2480) opted for disclosure of their SFs. Thirty-two pathogenic or likely pathogenic variants, including BRCA1 (7 patients), BRCA2 (4), CHEK2 (4), PTEN (3), MLH1 (3), SDHB (2), MSH6 (1), NF1 (1), EXT2 (1), NF1 (1), NTRK1 (1), MYH7 (3), MYL2 (1), TNNT2 (1), LDLR (2), FBN1 (1), and KCNH2 (1) were recognized in 36 patients (1.5%). Twenty-eight (77.8%) patients underwent genetic counseling and received their SF results. Eighteen (64.3%) patients underwent clinical management for SFs. Genetic validation tests were administered significantly more frequently to patients with than without a SF-related personal history (P = 0.025). This was a first attempt at a large-scale systematic exome analysis in Japan; nevertheless, many cancer patients opted for disclosure of SFs and accepted or considered clinical management."	"Ca<sup>2+</sup>-Dependent NOX5 (NADPH Oxidase 5) Exaggerates Cardiac Hypertrophy Through Reactive Oxygen Species Production. NOX5 (NADPH oxidase 5) is a homolog of the gp91<sup>phox</sup> subunit of the phagocyte NOX, which generates reactive oxygen species. NOX5 is involved in sperm motility and vascular contraction and has been implicated in diabetic nephropathy, atherosclerosis, and stroke. The function of NOX5 in the cardiac hypertrophy is unknown. Because NOX5 is a Ca<sup>2+</sup>-sensitive, procontractile NOX isoform, we questioned whether it plays a role in cardiac hypertrophy. Studies were performed in (1) cardiac tissue from patients undergoing heart transplant for cardiomyopathy and heart failure, (2) NOX5-expressing rat cardiomyocytes, and (3) mice expressing human NOX5 in a cardiomyocyte-specific manner. Cardiac hypertrophy was induced in mice by transverse aorta coarctation and Ang II (angiotensin II) infusion. NOX5 expression was increased in human failing hearts. Rat cardiomyocytes infected with adenoviral vector encoding human NOX5 cDNA exhibited elevated reactive oxygen species levels with significant enlargement and associated increased expression of ANP (atrial natriuretic peptides) and β-MHC (β-myosin heavy chain) and prohypertrophic genes (Nppa, Nppb, and Myh7) under Ang II stimulation. These effects were reduced by N-acetylcysteine and diltiazem. Pressure overload and Ang II infusion induced left ventricular hypertrophy, interstitial fibrosis, and contractile dysfunction, responses that were exaggerated in cardiac-specific NOX5 trangenic mice. These phenomena were associated with increased reactive oxygen species levels and activation of redox-sensitive MAPK (mitogen-activated protein kinase). N-acetylcysteine treatment reduced cardiac oxidative stress and attenuated cardiac hypertrophy in NOX5 trangenic. Our study defines Ca<sup>2+</sup>-regulated NOX5 as an important NOX isoform involved in oxidative stress- and MAPK-mediated cardiac hypertrophy and contractile dysfunction."	"Stochastic allelic expression as trigger for contractile imbalance in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), the most common inherited cardiac disease, is caused by several mostly heterozygous mutations in sarcomeric genes. Hallmarks of HCM are cardiomyocyte and myofibrillar disarray and hypertrophy and fibrosis of the septum and the left ventricle. To date, a pathomechanism common to all mutations remains elusive. We have proposed that contractile imbalance, an unequal force generation of neighboring cardiomyocytes, may contribute to development of HCM hallmarks. At the same calcium concentration, we found substantial differences in force generation between individual cardiomyocytes from HCM patients with mutations in β-MyHC (β-myosin heavy chain). Variability among cardiomyocytes was significantly larger in HCM patients as compared with donor controls. We assume that this heterogeneity in force generation among cardiomyocytes may lead to myocardial disarray and trigger hypertrophy and fibrosis. We provided evidence that burst-like transcription of the MYH7-gene, encoding for β-MyHC, is associated with unequal fractions of mutant per wild-type mRNA from cell to cell (cell-to-cell allelic imbalance). This will presumably lead to unequal fractions of mutant per wild-type protein from cell to cell which may underlie contractile imbalance. In this review, we discuss molecular mechanisms of burst-like transcription with regard to contractile imbalance and disease development in HCM."	"Contractility of Induced Pluripotent Stem Cell-Cardiomyocytes With an MYH6 Head Domain Variant Associated With Hypoplastic Left Heart Syndrome. Hypoplastic left heart syndrome (HLHS) is a clinically and anatomically severe form of congenital heart disease; however, its etiology remains largely unknown. We previously demonstrated that genetic variants in the MYH6 gene are significantly associated with HLHS. Additionally, induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) from an HLHS-affected family trio (affected parent, unaffected parent, affected proband) carrying an MYH6-R443P head domain variant demonstrated dysmorphic sarcomere structure and increased compensatory MYH7 expression. Analysis of iPSC-CMs derived from the HLHS trio revealed that only beta myosin heavy chain expression was observed in CMs carrying the MYH6-R443P variant after differentiation day 15 (D15). Functional assessments performed between D20-D23 revealed that MYH6-R443P variant CMs contracted more slowly (40 ± 2 vs. 47 ± 2 contractions/min, P &lt; 0.05), shortened less (5.6 ± 0.5 vs. 8.1 ± 0.7% of cell length, P &lt; 0.05), and exhibited slower shortening rates (19.9 ± 1.7 vs. 28.1 ± 2.5 μm/s, P &lt; 0.05) and relaxation rates (11.0 ± 0.9 vs. 19.7 ± 2.0 μm/s, P &lt; 0.05). Treatment with isoproterenol had no effect on iPSC-CM mechanics. Using CRISPR/Cas9 gene editing technology, introduction of the R443P variant into the unaffected parent's iPSCs recapitulated the phenotype of the proband's iPSC-CMs, and conversely, correction of the R443P variant in the proband's iPSCs rescued the cardiomyogenic differentiation, sarcomere organization, slower contraction (P &lt; 0.05) and decreased velocity phenotypes (P &lt; 0.0001). This is the first report to identify that cardiac tissues from HLHS patients with MYH6 variants can exhibit sarcomere disorganization in atrial but not ventricular tissues. This new discovery was not unexpected, since MYH6 is expressed predominantly in the postnatal atria in humans. These findings demonstrate the feasibility of employing patient-derived iPSC-CMs, in combination with patient cardiac tissues, to gain mechanistic insight into how genetic variants can lead to HLHS. Results from this study suggest that decreased contractility of CMs due to sarcomere disorganization in the atria may effect hemodynamic changes preventing development of a normal left ventricle."	"Left Bundle Pacing for Left Bundle Branch Block and Intermittent Third-Degree Atrioventricular Block in a MYH7 Mutation-Related Hypertrophic Cardiomyopathy With Restrictive Phenotype in a Child. Hypertrophic cardiomyopathy (HCM) is a group of myocardial diseases defined by cardiac hypertrophy which cannot be explained by secondary causes with a non-dilated left ventricle and preserved or increased ejection fraction. Sometimes it can be combined with restrictive cardiomyopathy. Here we describe a very rare case of a 12-year-old girl with non-obstructive hypertrophic cardiomyopathy accompanied by restrictive phenotype, complete left bundle branch block and intermittent third-degree atrioventricular block, who presented with recurrent syncope. Her father was also found to have hypertrophic cardiomyopathy and treated with implantable cardioverter defibrillator for ventricular tachycardia. Her younger brother is currently asymptomatic but echocardiogram showed hypertrophic cardiomyopathy. Genetic analysis identified a heterozygous missense mutation (c.2155C&gt;T, p.R719W) of MYH7 in the proband girl, her father and her brother. The girl was treated with left bundle pacing and recovered well. The case we present further demonstrates the feasibility of left bundle pacing in children."	"Laing early-onset distal myopathy with subsarcolemmal hyaline bodies caused by a novel variant in the MYH7 gene. Myopathies caused by MYH7 gene mutations are clinically and pathologically heterogeneous and, until recently, difficult to diagnose. The availability of NGS panels for hereditary neuromuscular diseases changed our insight regarding their frequency and allowed a better perception of the different phenotypes and morphological abnormalities associated. We present a male Portuguese patient with the classical phenotype of Laing early-onset distal myopathy (MPD1) beginning at 6 years of age, very slowly progressive, and with a mild to moderate impact on daily life by the age of 56. Muscle biopsy showed a myopathic pattern with hyaline bodies and cores. The NGS panel for structural myopathies identified a novel missense heterozygous variant, c.T4652C (p.Leu1551Pro), in the exon 34 of the MYH7 gene."	"Prevalence of sudden arrhythmic death syndrome-related genetic mutations in an Asian cohort of whole genome sequence. Recently, the spectrum of background mutation in the genes implicated in sudden arrhythmic death syndrome (SADS), has been elucidated in the Caucasian populations. However, this information is largely unknown in the Asian populations. We assessed the background rare variants (minor allele frequency &lt; 0.01) of major SADS genes in whole genome sequence data of 1514 healthy Taiwanese subjects from the Taiwan Biobank. We found up to 45% of healthy subjects have a rare variant in at least one of the major SADS genes. Around 3.44% of healthy subjects had multiple mutations in one or multiple genes. The background mutation rates in long QT syndrome, catecholaminergic polymorphic ventricular tachycardia, and arrhythmogenic right ventricular cardiomyopathy genes were similar, but those in Brugada syndrome (BrS) (SCN5A) and hypertrophic cardiomyopathy (HCM) genes (MYBPC3, MYH7, and TNNT2) were higher, compared to those reported in the Caucasian populations. Furthermore, the rate of incidental pathogenic variant was highest in MYBPC3 gene. Finally, the number of variant was proportional to the exon length of the gene (R2 = 0.486, P = 0.0056) but not related to its functional or evolutionary importance (degree of evolutionary conservation) (R2 = 0.0008, P = 0.9218), suggesting that the mutation was random. The ratio of variant number over exon nucleotide length was highest in MYBPC3, MYH7, and TNNT2 genes. Unique features of background SADS gene mutation in the Asian populations include higher prevalence of incidental variant in HCM, BrS, and long QT 3 (SCN5A) genes. HCM genes have the highest variant number per exon length."	"Silencing of MYH7 ameliorates disease phenotypes in human iPSC-cardiomyocytes. Allele-specific RNA silencing has been shown to be an effective therapeutic treatment in a number of diseases, including neurodegenerative disorders. Studies of allele-specific silencing in hypertrophic cardiomyopathy (HCM) to date have focused on mouse models of disease. We here examine allele-specific silencing in a human-cell model of HCM. We investigate two methods of silencing, short hairpin RNA (shRNA) and antisense oligonucleotide (ASO) silencing, using a human induced pluripotent stem cell-derived cardiomyocyte (hiPSC-CM) model. We used cellular micropatterning devices with traction force microscopy and automated video analysis to examine each strategy's effects on contractile defects underlying disease. We find that shRNA silencing ameliorates contractile phenotypes of disease, reducing disease-associated increases in cardiomyocyte velocity, force, and power. We find that ASO silencing, while better able to target and knockdown a specific disease-associated allele, showed more modest improvements in contractile phenotypes. These findings are the first exploration of allele-specific silencing in a human HCM model and provide a foundation for further exploration of silencing as a therapeutic treatment for MYH7-mutation-associated cardiomyopathy."	"Identification of a novel titin-cap/telethonin mutation in a Portuguese family with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetically and phenotypically heterogeneous disease; there is still a large proportion of patients with no identified disease-causing mutation. Although the majority of mutations are found in the MYH7 and MYBPC3 genes, mutations in Z-disk-associated proteins have also been linked to HCM. We assessed a small family with HCM based on family history, physical examination, 12-lead ECG, echocardiogram and magnetic resonance imaging. After exclusion of mutations in eleven HCM disease genes, we performed direct sequencing of the TCAP gene encoding the Z-disk protein titin-cap (also known as telethonin). We present a novel TCAP mutation in a small family affected by HCM. The identified p.C57W mutation showed a very low population frequency, as well as high conservation across species. All of the bioinformatic prediction tools used considered this mutation to be damaging/deleterious. Family members were screened for this new mutation and a co-segregation pattern was detected. Both affected members of this family presented with late-onset HCM, moderate asymmetric left ventricular hypertrophy, atrial fibrillation and heart failure with preserved ejection fraction and low risk of sudden cardiac death. We present evidence supporting the classification of the TCAP p.C57W mutation, encoding the Z-disk protein titin-cap/telethonin as a new likely pathogenic variant of hypertrophic cardiomyopathy, with a specific phenotype in the family under analysis."	"Pax7 as molecular switch regulating early and advanced stages of myogenic mouse ESC differentiation in teratomas. Pluripotent stem cells present the ability to self-renew and undergo differentiation into any cell type building an organism. Importantly, a lot of evidence on embryonic stem cell (ESC) differentiation comes from in vitro studies. However, ESCs cultured in vitro do not necessarily behave as cells differentiating in vivo. For this reason, we used teratomas to study early and advanced stages of in vivo ESC myogenic differentiation and the role of Pax7 in this process. Pax7 transcription factor plays a crucial role in the formation and differentiation of skeletal muscle precursor cells during embryonic development. It controls the expression of other myogenic regulators and also acts as an anti-apoptotic factor. It is also involved in the formation and maintenance of satellite cell population. In vivo approach we used involved generation and analysis of pluripotent stem cell-derived teratomas. Such model allows to analyze early and also terminal stages of tissue differentiation, for example, terminal stages of myogenesis, including the formation of innervated and vascularized mature myofibers. We determined how the lack of Pax7 function affects the generation of different myofiber types. In Pax7-/- teratomas, the skeletal muscle tissue occupied significantly smaller area, as compared to Pax7+/+ ones. The proportion of myofibers expressing Myh3 and Myh2b did not differ between Pax7+/+ and Pax7-/- teratomas. However, the area of Myh7 and Myh2a myofibers was significantly lower in Pax7-/- ones. Molecular characteristic of skeletal muscles revealed that the levels of mRNAs coding Myh isoforms were significantly lower in Pax7-/- teratomas. The level of mRNAs encoding Pax3 was significantly higher, while the expression of Nfix, Eno3, Mck, Mef2a, and Itga7 was significantly lower in Pax7-/- teratomas, as compared to Pax7+/+ ones. We proved that the number of satellite cells in Pax7-/- teratomas was significantly reduced. Finally, analysis of neuromuscular junction localization in samples prepared with the iDISCO method confirmed that the organization of neuromuscular junctions in Pax7-/- teratomas was impaired. Pax7-/- ESCs differentiate in vivo to embryonic myoblasts more readily than Pax7+/+ cells. In the absence of functional Pax7, initiation of myogenic differentiation is facilitated, and as a result, the expression of mesoderm embryonic myoblast markers is upregulated. However, in the absence of functional Pax7 neuromuscular junctions, formation is abnormal, what results in lower differentiation potential of Pax7-/- ESCs during advanced stages of myogenesis."	"Radiomic Analysis of Native T1 Mapping Images Discriminates Between MYH7 and MYBPC3-Related Hypertrophic Cardiomyopathy. The phenotype via conventional cardiac MRI analysis of MYH7 (β-myosin heavy chain)- and MYBPC3 (β-myosin-binding protein C)-associated hypertrophic cardiomyopathy (HCM) groups is similar. Few studies exist on the genotypic-phenotypic association as assessed by machine learning in HCM patients. To explore the phenotypic differences based on radiomics analysis of T1 mapping images between MYH7 and MYBPC3-associated HCM subgroups. Prospective observational study. In all, 102 HCM patients with pathogenic, or likely pathogenic mutation, in MYH7 (n = 68) or MYBPC3 (n = 34) genes. Cardiac MRI was performed at 3.0T with balanced steady-state free precession (bSSFP), phase-sensitive inversion recovery (PSIR) late gadolinium enhancement (LGE), and modified Look-Locker inversion recovery (MOLLI) T1 mapping sequences. All patients underwent next-generation sequencing and Sanger genetic sequencing. Left ventricular native T1 and LGE were analyzed. One hundred and fifty-seven radiomic features were extracted and modeled using a support vector machine (SVM) combined with principal component analysis (PCA). Each subgroup was randomly split 4:1 (feature selection / test validation). Mann-Whitney U-tests and Student's t-tests were performed to assess differences between subgroups. A receiver operating characteristic (ROC) curve was used to assess the model's ability to stratify patients based on radiomic features. There were no significant differences between MYH7- and MYBPC3-associated HCM subgroups based on traditional native T1 values (global, basal, and middle short-axis slice native T1 ; P = 0.760, 0.914, and 0.178, respectively). However, the SVM model combined with PCA achieved an accuracy and area under the curve (AUC) of 92.0% and 0.968 (95% confidence interval [CI]: 0.968-0.971), respectively. For the test validation dataset, the accuracy and AUC were 85.5% and 0.886 (95% CI: 0.881-0.901), respectively. Radiomic analysis of native T1 mapping images may be able to discriminate between MYH7- and MYBPC3-associated HCM patients, exceeding the performance of conventional native T1 values. 3 TECHNICAL EFFICACY STAGE: 2."	"Myosin heavy chain isoforms in the myocardium of the atrioventricular junction of Scyliorhinus canicula (Chondrichthyes, Carcharhiniformes). The atrioventricular junction of the fish heart, namely the segment interposed between the single atrium and the single ventricle, has been studied anatomically and histologically in several chondrichthyan and teleost species. Nonetheless, knowledge about myosin heavy chain (MyHC) in the atrioventricular myocardium remains scarce. The present report is the first one to provide data on the MyHC isoform distribution in the myocardium of the atrioventricular junction in chondrichthyans, specifically in the lesser spotted dogfish, Scyliorhinus canicula, a shark species whose heart reflects the primitive cardiac anatomical design in gnathostomes. Hearts from five dogfish were examined using histochemical and immunohistochemical techniques. The anti-MyHC A4.1025 antibody was used to detect differences in the occurrence of MyHC isoforms in the dogfish, as the fast-twitch isoforms MYH2 and MYH6 have a higher affinity for this antibody than the slow-twitch isoforms MYH7 and MYH7B. The histochemical findings show that myocardium of the atrioventricular junction connects the trabeculated myocardium of the atrium with the trabeculated layer of the ventricular myocardium. The immunohistochemical results indicate that the distribution of MyHC isoforms in the atrioventricular junction is not homogeneous. The atrial portion of the atrioventricular myocardium shows a positive reactivity against the A4.1025 antibody similar to that of the atrial myocardium. In contrast, the ventricular portion of the atrioventricular junction is not labelled, as is the case with the ventricular myocardium. This dual condition suggests that the myocardium of the atrioventricular junction has two contraction patterns: the myocardium of the atrial portion contracts in line with the atrial myocardium, whereas that of the ventricular portion follows the contraction pattern of the ventricular myocardium. Thus, the transition of the contraction wave from the atrium to the ventricle may be established in the atrioventricular segment because of its heterogeneous MyHC isoform distribution. The findings support the hypothesis that a distinct MyHC isoform distribution in the atrioventricular myocardium enables a synchronous contraction of inflow and outflow cardiac segments in vertebrates lacking a specialized cardiac conduction system."	"Cardiomyocyte Proteome Remodeling due to Isoproterenol-Induced Cardiac Hypertrophy during the Compensated Phase. Although the pathophysiological response of cardiac tissue to pro-hypertrophic stimulus is well characterized, a comprehensive characterization of the molecular events underlying the pathological hypertrophy in cardiomyocytes during the early compensated cardiac hypertrophy is currently lacking. A quantitative label-free proteomic analysis of cardiomyocytes isolated was conducted from mice treated subcutaneously with isoproterenol (ISO) during 7 days in comparison with cardiomyocytes from control animals (CT). Canonical pathway analysis of dysregulated proteins indicated that ISO-hypertrophy drives the activation of actin cytoskeleton and integrin-linked kinase (ILK) signaling, and inhibition of the sirtuin signaling. Alteration in cardiac contractile function and calcium signaling are predicted as downstream effects of ISO-hypertrophy probably due to the upregulation of key elements such as myosin-7 (MYH7). Confocal microscopy corroborated that indeed ISO-treatment led to increased abundance of MYH7. Potential early markers for cardiac hypertrophy as APBB1, GOLGA4, HOOK1, KATNA1, KIFBP, MAN2B2, and SLC16A1 are also reported. The data consist in a complete molecular mapping of ISO-induced compensated cardiac hypertrophy model at cardiomyocyte level. Marker candidates reported may assist early diagnosis of cardiac hypertrophy and ultimately heart failure."	"Genotype-Related Clinical Characteristics and Myocardial Fibrosis and their Association with Prognosis in Hypertrophic Cardiomyopathy. The spectrum of genetic variants and their clinical significance of Hypertrophic cardiomyopathy (HCM) have been poorly studied in Asian patients. The objectives of this study were to assess the spectrum of genetic variants and genotype-phenotype relationships within a Korean HCM population. Eighty-nine consecutive unrelated HCM patients were included. All patients underwent genotypic analysis for 23 HCM-associated genes. Clinical parameters including echocardiographic and cardiac magnetic resonance (CMR) parameters were evaluated. A composite of major adverse cardiac and cerebrovascular events was assessed. Genetic variants were detected in 55 of 89 subjects. Pathogenic variants or likely pathogenic variants were identified in 27 of HCM patients in MYBPC3, TNNI3, MYH7, and MYL7. Variants of uncertain significance were identified in 28 patients. There were significant differences in the presence of non-sustained ventricular tachycardia (p = 0.030) and myocardial fibrosis on CMR (p = 0.029) in the detected compared to the not-detected groups. Event-free survival was superior in the not-detected group (p = 0.006). Genetic variants in patients with HCM are relatively common and are associated with adverse clinical events and myocardial fibrosis on CMR. Genotypic analysis may add important information to clinical variables in the assessment of long-term risk for HCM patients."	"Risk Stratification in Hypertrophic Cardiomyopathy. Insights from Genetic Analysis and Cardiopulmonary Exercise Testing. The role of genetic testing over the clinical and functional variables, including data from the cardiopulmonary exercise test (CPET), in the hypertrophic cardiomyopathy (HCM) risk stratification remains unclear. A retrospective genotype-phenotype correlation was performed to analyze possible differences between patients with and without likely pathogenic/pathogenic (LP/P) variants. A total of 371 HCM patients were screened at least for the main sarcomeric genes MYBPC3 (myosin binding protein C), MYH7 (β-myosin heavy chain), TNNI3 (cardiac troponin I) and TNNT2 (cardiac troponin T): 203 patients had at least an LP/P variant, 23 patients had a unique variant of uncertain significance (VUS) and 145 did not show any LP/P variant or VUS. During a median 5.4 years follow-up, 51 and 14 patients developed heart failure (HF) and sudden cardiac death (SCD) or SCD-equivalents events, respectively. The LP/P variant was associated with a more aggressive HCM phenotype. However, left atrial diameter (LAd), circulatory power (peak oxygen uptake*peak systolic blood pressure, CP%) and ventilatory efficiency (C-index = 0.839) were the only independent predictors of HF whereas only LAd and CP% were predictors of the SCD end-point (C-index = 0.738). The present study reaffirms the pivotal role of the clinical variables and, particularly of those CPET-derived, in the HCM risk stratification."	"Myopathies with finger flexor weakness: Not only inclusion-body myositis. Muscle disorders are characterized by differential involvement of various muscle groups. Among these, weakness predominantly affecting finger flexors is an uncommon pattern, most frequently found in sporadic inclusion-body myositis. This finding is particularly significant when the full range of histopathological findings of inclusion-body myositis is not found on muscle biopsy. Prominent finger flexor weakness, however, is also observed in other myopathies. It occurs commonly in myotonic dystrophy types 1 and 2. In addition, individual reports and small case series have documented finger flexor weakness in sarcoid and amyloid myopathy, and in inherited myopathies caused by ACTA1, CRYAB, DMD, DYSF, FLNC, GAA, GNE, HNRNPDL, LAMA2, MYH7, and VCP mutations. Therefore, the finding of finger flexor weakness requires consideration of clinical, myopathological, genetic, electrodiagnostic, and sometimes muscle imaging findings to establish a diagnosis."	"JMJD1A Represses the Development of Cardiomyocyte Hypertrophy by Regulating the Expression of Catalase. The histone demethylase JMJD family is involved in various physiological and pathological functions. However, the roles of JMJD1A in the cardiovascular system remain unknown. Here, we studied the function of JMJD1A in cardiac hypertrophy. The mRNA and protein levels of JMJD1A were significantly downregulated in the hearts of human patients with hypertrophic cardiomyopathy and the hearts of C57BL/6 mice underwent cardiac hypertrophy induced by transverse aortic constriction (TAC) surgery or isoproterenol (ISO) infusion. In neonatal rat cardiomyocytes (NRCMs), siRNA-mediated JMJD1A knockdown facilitated ISO or angiotensin II-induced increase in cardiomyocyte size, protein synthesis, and expression of hypertrophic fetal genes, including atrial natriuretic peptide (Anp), brain natriuretic peptide (Bnp), and Myh7. By contrast, overexpression of JMJD1A with adenovirus repressed the development of ISO-induced cardiomyocyte hypertrophy. We observed that JMJD1A reduced the production of total cellular and mitochondrial levels of reactive oxygen species (ROS), which was critically involved in the effects of JMJD1A because either N-acetylcysteine or MitoTEMPO treatment blocked the effects of JMJD1A deficiency on cardiomyocyte hypertrophy. Mechanism study demonstrated that JMJD1A promoted the expression and activity of Catalase under basal condition or oxidative stress. siRNA-mediated loss of Catalase blocked the protection of JMJD1A overexpression against ISO-induced cardiomyocyte hypertrophy. These findings demonstrated that JMJD1A loss promoted cardiomyocyte hypertrophy in a Catalase and ROS-dependent manner."	"Longitudinal metabolic profiling of cardiomyocytes derived from human-induced pluripotent stem cells. Human-induced pluripotent stem cells (h-iPSCs) are a unique in vitro model for cardiovascular research. To realize the potential applications of h-iPSCs-derived cardiomyocytes (CMs) for drug testing or regenerative medicine and disease modeling, characterization of the metabolic features is critical. Here, we show the transcriptional profile during stages of cardiomyogenesis of h-iPSCs-derived CMs. CM differentiation was not only characterized by the expression of mature structural components (MLC2v, MYH7) but also accompanied by a significant increase in mature metabolic gene expression and activity. Our data revealed a distinct substrate switch from glucose to fatty acids utilization for ATP production. Basal respiration and respiratory capacity in 9 days h-iPSCs-derived CMs were glycolysis-dependent with a shift towards a more oxidative metabolic phenotype at 14 and 28 day old CMs. Furthermore, mitochondrial analysis characterized the early and mature forms of mitochondria during cardiomyogenesis. These results suggest that changes in cellular metabolic phenotype are accompanied by increased O2 consumption and ATP synthesis to fulfill the metabolic needs of mature CMs activity. To further determine functionality, the physiological response of h-iPSCs-derived CMs to β-adrenergic stimulation was tested. These data provide a unique in vitro human heart model for the understanding of CM physiology and metabolic function which may provide useful insight into metabolic diseases as well as novel therapeutic options."	"Generation of two clonal iPSC lines, ICGi019-A and ICGi019-B, by reprogramming peripheral blood mononuclear cells of a patient suffering from hypertrophic cardiomyopathy and carrying a heterozygous p.M659I mutation in MYH7. Hypertrophic cardiomyopathy (HCM) is one of the most frequent cardiovascular diseases but no methods to prevent its progression have been developed. Cardiomyocytes derived from patient-specific induced pluripotent stem cells can become a platform to study pathogenesis of the disease and to search for more effective therapy methods. We generated two iPSC lines from peripheral blood mononuclear cells of an HCM patient with heterozygous p.M659I mutation in MYH7 using episomal vectors. The iPSC lines expressed pluripotency markers, demonstrated ability to spontaneously differentiate into derivatives of three germ layers, and retained the mutation."	"[Overlapping Phenotype: Left Ventricular non-Compaction and Hypertrophic Cardiomyopathy]. Aim To study the clinical course of the mixed phenotype (hypertrophic cardiomyopathy, HCMP, and left ventricular noncompaction, LVNC); to determine its genetic causes; and to evaluate incidence of cardiovascular complications (CVC) during the follow-up period.Material and methods In screening of 286 patients with HCMP, 8 of them (2.8 %; median age, 41.5 years; 4 men and 4 women) from unrelated families were found to have the mixed phenotype (combination of HCMP and LVNC). For their 10 first-degree relatives, the most frequent phenotype was HCMP without LVNC; however, both isolated LVNC and the mixed phenotype were also observed. Criteria for HCMP and LVNC were confirmed by echocardiography and cardiac magnetic resonance imaging Genotyping was performed by high-throughput sequencing NGT using the TruSight Cardio Sequencing Panel kit.Results Probands with the HCMP+LVNC combination compared to first-degree relatives with isolated HCMP and LVNC were characterized by more pronounced left ventricular dysfunction (ejection fraction, 43.57±7.6 and 53.64±6.51 %, respectively; p&amp;lt;0.001), a higher risk of CVC, and a higher incidence of ventricular tachyarrhythmias (7.9 and 2.2 %, respectively; p&amp;lt;0.01). 11 mutations in 5 genes were found in 8 patients with the mixed phenotype. 72.7 % of mutations were in the MYH7 and MYBPC3 genes that encode the heavy chain of β-myosin and myosin-binding protein C, respectively; however, in some cases, replacements in other genes (DTNA, TGFB2) were also found.Conclusion The mixed phenotype (HCMP and LVNC) is associated with more severe clinical course of the disease and unfavorable CVC."	"Differential contributions of sarcomere and mitochondria-related multigene variants to the endophenotype of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a multigenic disease that occurs due to various genetic modifiers. We investigated phenotype-based clinical and genetic characteristics of HCM patients using comprehensive genetic tests and rare variant association analysis. A comprehensive HCM-specific panel, consisting of 82 nuclear DNAs (nDNAs: 33 sarcomere-associated genes, 5 phenocopy genes, and 44 nuclear genes linked to mitochondrial cardiomyopathy) and 37 mitochondrial DNAs (mtDNAs), was analyzed. Rare variant analysis was performed to determine the association of specific genes with different phenotypes. Among the 212 patients, pathogenic variants in sarcomere-associated genes were more prevalent in non-apical HCM (41.4%, 46/111; P = 0.001) than apical HCM (20.8%, 21/101). Apical HCM exhibits mild phenotypes than non-apical HCM, and it showed fewer numbers of sarcomere mutations than non-apical HCM. Interestingly, inverted mutation frequency of TNNI3 (35%) and MYH7 (9%) was observed in apical HCM. In a rare variant analysis, MT-RNR2 positively correlated with apical HCM (OR: 1.37, P = 0.025). And, MYBPC3 (sarcomere gene) negatively contributed to apical HCM (OR: 0.54, P = 0.027). On the other hand, both pathogenic mutation (P &lt; 0.05) and rare variants in sarcomere-associated genes (OR: 2.78-3.47, P &lt; 0.05) were related to diastolic dysfunction and left atrium remodeling, which correlated with poor prognosis in HCM patients. Our results provide a clue towards explaining the difference between the prevalence and phenotype of apical HCM in Asian populations, and a foundation for genetics-based approaches that may enable individualized risk stratification for HCM patients."	"FBXW7 promotes pathological cardiac hypertrophy by targeting EZH2-SIX1 signaling. F-box and WD repeat domain-containing 7 (FBXW7) is an E3-ubiquitin ligase, which serves as one of the components of the SKP1, CUL1, and F-box protein type ubiquitin ligase (SCF) complex. Previous studies reveal that FBXW7 participates in cancer, inflammation and Parkinson's disease. FBXW7 also contributes to angiogenesis of endothelial cells. However, the function of FBXW7 in cardiac homeostasis remains to elucidate. Here we identified the critical role of FBXW7 during cardiac hypertrophy in humans and rodents. Quantitative real-time PCR (qRT-PCR) and Western blot revealed that the mRNA and protein levels of FBXW7 were upregulated significantly in hypertrophic hearts in human and mouse as well as Angiotensin II (Ang II)-induced hypertrophic neonatal rat cardiomyocytes (NRCM). Gain-of-function (adenovirus) and loss-of-function (siRNA) experiments provided evidence that FBXW7 promoted Ang II-induced cardiomyocyte hypertrophy as demonstrated by the increase in the size of cardiomyocytes and overexpression of hypertrophic fetal genes myosin heavy chain 7 (Myh7) natriuretic peptide a (Nppa), brain natriuretic peptide (Nppb). Further mechanism study revealed that FBXW7 promoted the expression of sine oculis homeobox homolog 1 (SIX1) in cardiomyocytes, which relied on regulation of the stability of the histone methyltransferase EZH2 (Enhancer of zeste homolog 2). Previous work revealed the pro-hypertrophic role of the EZH2-SIX1 axis in rodents. Indeed, our genetic and pharmacological evidence showed that the EZH2-SIX1 signaling was critically involved in FBXW7 functions in Ang II-induced cardiomyocyte hypertrophy. Therefore, we identified FBWX7 as an important regulator of cardiac hypertrophy via modulating the EZH2-SIX1 axis."	"[The role of three-dimensional speckle tracking imaging derived parameters on predicting outcome of hypertrophic cardiomyopathy patients with MYH7 mutations]. Objective: To evaluate the cardiac functional changes in hypertrophic cardiomyopathy(HCM) patients with β-myosin heavy chain gene (MYH7) mutations by three-dimensional (3D) speckle tracking imaging(3D-STI) and conventional echocardiography modalities, and then to explore the potential predictors of adverse cardiovascular events in these patients. Methods: A consecutive series of 192 HCM patients admitted in our center from October 2014 to October 2016 were genetically screened to identify MYH7 mutations in this retrospective study. A total of 43 HCM patients with MYH7 mutations were enrolled. The patients were divided into events group(n=13) and no event group(n=30) according to the presence or absence of adverse cardiovascular events(primary and secondary endpoints). All patients were followed up to January 2019 after comprehensive evaluation of 3D-STI, two-dimensional and Doppler echocardiography. The adverse cardiovascular events were recorded. Results: The median follow up time was 1 012 (812, 1 330) days. During follow-up, 13 patients (30.2%) reached endpoints: 6 cases of the primary endpoints(2 cases of sudden cardiac death(SCD), 3 cases of survival after defibrillation, and 1 case of appropriate implantable cardioverter-defibrillator(ICD) discharge); 7 cases of the second endpoints(5 cases of heart failure hospitalization, 1 case of syncope and cardioversion due to supraventricular tachycardia, and 1 case of end-stage HCM). Patients with adverse cardiovascular events had higher prevalence of syncope and risk of SCD, enlarged left atrial volume index(LAVI) and reduced 3D left ventricular global longitudinal train (3D-GLS), as compared to those without adverse events(all P&lt;0.05). The multivariate Cox regression analysis showed that reduced 3D-GLS(HR=0.814, 95%CI 0.663-0.999, P=0.049) was an independent predictor for adverse cardiovascular events. The cutoff value of 3D-GLS≤13.67% was linked with significantly increased risk of adverse cardiovascular events in this patient cohort(AUC=0.753, 95%CI 0.558-0.948, sensitivity 86%, specificity 69%, P&lt;0.05). The Kaplan-Meier analysis indicated that the patients with the 3D-GLS≤ 13.67% faced higher risk of death than those with 3D-GLS&gt;13.67%. Conclusion: 3D-GLS is useful on predicting adverse cardiovascular events in HCM patients with MYH7 mutations. 目的: 采用三维斑点追踪(3D-STI)技术联合二维和多普勒超声对携带β-肌球蛋白重链基因(MYH7)基因突变的肥厚型心肌病(HCM)患者心功能特征进行全面评估,以期找到可预测此类患者不良心血管事件的超声指标。 方法: 该研究为回顾性研究。连续入选2014年10月至2016年10月在西京医院肥厚型心肌病诊治中心就诊的携带MYH7基因突变的成人HCM患者43例,根据有无终点事件发生分为2组,即终点事件组(n=13)和无终点事件组(n=30)。收集入选患者的一般临床资料、超声心动图检测结果及随访结果,记录终点事件的发生情况。终点事件:一级终点事件包括心脏性猝死(SCD),心脏骤停抢救存活或植入埋藏式心脏除颤器(ICD)适当放电;二级终点事件包括急性心梗,因心力衰竭住院,血栓栓塞,室上性心律失常致血流动力学不稳定,终末期HCM。 结果: 43例患者均完成随访,随访时间1 012(812,1 330)d。13例(30.2%)患者发生终点事件,其中6例(14.0%)发生一级终点事件(SCD 2例、心脏骤停抢救存活3例、ICD适当放电1例),7例(16.3%)发生二级终点事件(因心力衰竭住院5例、室上性心动过速致晕厥复律1例、终末期HCM 1例)。与无终点事件组比较,终点事件组患者5年SCD风险评分较高(P&lt;0.05),发生晕厥的患者比例较高(P&lt;0.05),左心房容积指数(LAVI)较大(P&lt;0.05),左心室三维整体纵向应变(GLS)绝对值较低(P&lt;0.05)。校正年龄、性别后多因素Cox回归分析结果显示,GLS是携带MYH7基因突变的HCM患者发生不良心血管事件的独立预测因素(HR=0.814,95%CI 0.663~0.999,P=0.049)。受试者工作特征(ROC)绝对值曲线评估结果显示,GLS绝对值≤13.67%的患者更易发生不良心血管事件(AUC=0.753,95%CI 0.558~0.948,P&lt;0.05),敏感度为86%,特异度为69%。Kaplan-Meier生存曲线结果进一步显示,GLS绝对值≤13.67%的HCM患者无终点事件生存率明显低于GLS绝对值&gt;13.67%的患者(P&lt;0.05)。 结论: 3D-STI指标GLS可作为携带MYH7基因突变的HCM患者不良心血管事件的预测指标。."	"Sex-specific cardiac remodeling in early and advanced stages of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most frequent genetic cardiac disease with a prevalence of 1:500 to 1:200. While most patients show obstructive HCM and a relatively stable clinical phenotype (stage II), a small group of patients progresses to end-stage HCM (stage IV) within a relatively brief period. Previous research has shown sex-differences in stage II HCM with more diastolic dysfunction in female than in male patients. Moreover, female patients more often show progression to heart failure. Here we investigated if differences in functional and structural properties of the heart may underlie sex-differences in disease progression from stage II to stage IV HCM. Cardiac tissue from stage II and IV patients was obtained during myectomy (n = 54) and heart transplantation (n = 10), respectively. Isometric force was measured in membrane-permeabilized cardiomyocytes to define active and passive myofilament force development. Titin isoform composition was assessed using gel electrophoresis, and the amount of fibrosis and capillary density were determined with histology. In accordance with disease stage-dependent adverse cardiac remodeling end-stage patients showed a thinner interventricular septal wall and larger left ventricular and atrial diameters compared to stage II patients. Cardiomyocyte contractile properties and fibrosis were comparable between stage II and IV, while capillary density was significantly lower in stage IV compared to stage II. Women showed more adverse cellular remodeling compared to men at stage II, evident from more compliant titin, more fibrosis and lower capillary density. However, the disease stage-dependent reduction in capillary density was largest in men. In conclusion, the more severe cellular remodeling in female compared to male stage II patients suggests a more advanced disease stage at the time of myectomy in women. Changes in cardiomyocyte contractile properties do not explain the progression of stage II to stage IV, while reduced capillary density may underlie disease progression to end-stage heart failure."	"Genetic variants of uncertain significance: How to match scientific rigour and standard of proof in sudden cardiac death? In many SCD cases, in particular in pediatric age, autopsy can be completely negative and then a post-mortem genetic testing (molecular autopsy) is indicated. In NGS era finding new/rare variants is extremely frequent and, when only variants of unknown significance are found, molecular autopsy fails to find a cause of death. We describe the emblematic case of the sudden death of a 7-year-old girl. We performed a full-body micro-CT analysis, an accurate autopsy, a serum tryptase test and toxicological tests. Since the only macroscopic abnormality we found was a myocardial bridging (length: 1,1 cm, thickness: 0,5 cm) of the left anterior descending coronary artery, a molecular autopsy has been performed. NGS analysis on victim DNA detected rare variants in DPP6, MYH7, SCN2B and NOTCH1 and segregation analysis was then achieved. On the basis of ACMG/AMP (clinical) guidelines, all the found variants were classified as of unknown significance. In other words, both the macroscopic and genetic anomalies we found were of uncertain significance and then the autopsy failed to find the cause of the death. Our case raises three main discussion points: (a) economical, ethical and legal limitations of genetic investigation; (b) risk that genetic testing does not succeed in finding a certain cause of the death; (c) absence of specific guidelines to face the problem of VUS in forensic cases."	"Genetic Dissection of Hypertrophic Cardiomyopathy with Myocardial RNA-Seq. Hypertrophic cardiomyopathy (HCM) is an inherited disorder of the myocardium, and pathogenic mutations in the sarcomere genes myosin heavy chain 7 (MYH7) and myosin-binding protein C (MYBPC3) explain 60%-70% of observed clinical cases. The heterogeneity of phenotypes observed in HCM patients, however, suggests that novel causative genes or genetic modifiers likely exist. Here, we systemically evaluated RNA-seq data from 28 HCM patients and nine healthy controls with pathogenic variant identification, differential expression analysis, and gene co-expression and protein-protein interaction network analyses. We identified 43 potential pathogenic variants in 19 genes in 24 HCM patients. Genes with more than one variant included the following: MYBPC3, TTN, MYH7, PSEN2, and LDB3. A total of 2538 protein-coding genes, six microRNAs (miRNAs), and 1617 long noncoding RNAs (lncRNAs) were identified differentially expressed between the groups, including several well-characterized cardiomyopathy-related genes (ANKRD1, FHL2, TGFB3, miR-30d, and miR-154). Gene enrichment analysis revealed that those genes are significantly involved in heart development and physiology. Furthermore, we highlighted four subnetworks: mtDNA-subnetwork, DSP-subnetwork, MYH7-subnetwork, and MYBPC3-subnetwork, which could play significant roles in the progression of HCM. Our findings further illustrate that HCM is a complex disease, which results from mutations in multiple protein-coding genes, modulation by non-coding RNAs and perturbations in gene networks."	"A rare case of familial restrictive cardiomyopathy, with mutations in MYH7 and ABCC9 genes. Restrictive cardiomyopathy is the least common type of cardiomyopathy, being defined by diastolic dysfunction and often unimpaired systolic function. Restrictive cardiomyopathies can be classified as familial or non-familial. Patients with familial restrictive cardiomyopathy can develop signs and symptoms of this condition anytime from childhood to adulthood. The evolution of the disease is towards signs and symptoms of pulmonary and systemic congestion and, without treatment, there is a five-year mortality rate of approximately 30% in these patients. We discuss the case of a 43-year-old patient diagnosed with familial restrictive cardiomyopathy with positive genetic tests for mutations of MYH7 gene and ABCC9 gene, who was first hospitalized in 2011 for palpitations. The echocardiography performed in evolution showed a continuous alteration of right ventricle function, without important differences of left ventricular function. She developed heart failure symptoms six years after diagnosis and she had seven hospitalizations in the past two years, currently with an increasing need of diuretics and persistent hepatic dysfunction. Cardiac transplantation or left ventricular assist device therapy should be considered in patients with severe heart failure symptoms and no longer effective treatment. However, elevated pulmonary vascular resistance excludes the patient from cardiac transplantation."	"Advanced Single-Cell Mapping Reveals that in hESC Cardiomyocytes Contraction Kinetics and Action Potential Are Independent of Myosin Isoform. Human pluripotent stem cell-derived cardiomyocytes (hPSC-CMs) represent an attractive model to investigate CM function and disease mechanisms. One characteristic marker of ventricular specificity of human CMs is expression of the ventricular, slow β-myosin heavy chain (MyHC), as opposed to the atrial, fast α-MyHC. The main aim of this study was to investigate at the single-cell level whether contraction kinetics and electrical activity of hESC-CMs are influenced by the relative expression of α-MyHC versus β-MyHC. For effective assignment of functional parameters to the expression of both MyHC isoforms at protein and mRNA levels in the very same hESC-CMs, we developed a single-cell mapping technique. Surprisingly, α- versus β-MyHC was not related to specific contractile or electrophysiological properties of the same cells. The multiparametric cell-by-cell analysis suggests that in hESC-CMs the expression of genes associated with electrical activity, contraction, calcium handling, and MyHCs is independently regulated."	"Cautionary note on the use of Caenorhabditis elegans to study muscle phenotypes caused by mutations in the human MYH7 gene. Mutations in the human MYH7 gene, encoding a slow skeletal muscle/β-cardiac myosin heavy chain, cause different types of myopathies. The nematode model Caenorhabditis elegans has frequently been employed to study the molecular and physiological consequences of MYH7 mutations in muscle function by introducing mutations into the unc-54 gene, the worm MYH7 ortholog. We report here that the C. elegans model is not appropriate for such studies if they involve expression of the UNC-54 protein (wild-type or fused to green fluorescent protein) above endogenous levels."	"Familial evaluation reveals a distinct genetic cause in a large Spanish family with neurofibromatosis 1 and hypertrophic cardiomyopathy. Neurofibromatosis 1 (NF1) is an autosomal dominant disorder characterized by café-au-lait spots, intertriginous freckling, and multiple neurofibromas. Classically, it has been described that hypertrophic cardiomyopathy (HCM) may be a cardiovascular manifestation of neurofibromatosis 1, although the relationship between these two entities has not been fully established. We report a large Spanish family carrying a pathogenic truncating variant in NF1 (p.Arg2258Ter) causing neurofibromatosis 1, and a pathogenic missense variant in MYH7 (p. Arg453Cys), causing hypertrophic cardiomyopathy independently. A complete penetrance was observed in both genetic diseases, reinforcing the notion of deleterious effects of both rare variants. According to our report, hypertrophic cardiomyopathy in patients with NF1 should not be considered as part of the clinical spectrum in all cases. A careful and comprehensive assessment, including family evaluation and genetic testing for HCM should be considered as part of the diagnostic work-up in individuals presenting with both phenotypes."	"Comprehensive histological investigation of age-related changes in dermal extracellular matrix and muscle fibers in the upper lip vermilion. Few histological studies have directly examined age-related changes within the lips, although non-invasive investigations of such changes are increasing. Therefore, this study aimed to provide histological and molecular data on age-dependent alterations in the vermilion. Upper vermilion specimens from 15 female Caucasian cadavers (age range, 27-78 years) were investigated histologically or immunohistochemically. Histologically, age-dependent decreases in areas occupied by hyaluronan and collagenous fibres in the dermis of upper vermilion were demonstrated. Elastic fibre content varied widely between individuals. The area occupied by muscle fibres in the orbicularis oris muscle region within the vermilion also correlated negatively with age. Immunohistochemically, signals of four proteins were attenuated in vermilion from older individuals compared with young individuals: procollagen type I, hyaluronan synthase (HAS)1, myosin heavy chain (MYH)2 (a component of fast-twitch oxidative muscle fibres) and MYH7 (a component of slow-twitch muscle fibres). In contrast, signals of cell migration inducing hyaluronidase 1 (CEMIP) were intensified in vermilion from older individuals. No marked differences between young and older individuals were seen in procollagen type III, HAS2, HAS3, hyaluronidase (HYAL)1, HYAL2, MYH1 or MYH4. Age-dependent decreases of hyaluronan in the dermis of vermilion were prominent, possibly due to both the decrease in synthesis (HAS1) and the increase in degradation (CEMIP). Furthermore, age-dependent decreases in collagenous fibres and two types of muscle fibre in the vermilion were also identified histologically. Type I collagen, MYH2 and MYH7 appear to represent the molecules responsible for these respective decrements. Peu d'études histologiques ont examiné directement les changements liés à l'âge sur les lèvres, bien que les enquêtes non invasives de ces changements soient en augmentation. Par conséquent, cette étude visait à fournir des données histologiques et moléculaires sur les altérations liées à l'âge dans le vermillon. MÉTHODES: Des échantillons de vermillon supérieur provenant de 15 cadavres de femme Caucasiens (tranche d'âge, 27-78 ans) ont été étudiés histologiquement ou immuno-histochimiquement. RÉSULTATS: Histologiquement, des diminutions dépendant de l'âge dans les zones occupées par l'hyaluronane et les fibres de collagène dans le derme du vermillon supérieur ont été démontrées. La teneur en fibres élastiques variait considérablement entre les individus. La zone occupée par les fibres musculaires dans la région du muscle orbiculaire oris au sein du vermillon était également corrélée négativement avec l'âge. Immuno-histochimiquement, les signaux de quatre protéines ont été atténués dans vermillon des individus plus âgés que les jeunes: le procollagène type I, l'hyaluronane synthase (HAS) 1, la chaîne lourde de la myosine (MYH) 2 (un composant des fibres musculaires oxydatives à contraction rapide) et MYH7 (un composant des fibres musculaires à contraction lente). En revanche, les signaux du &quot;cell migration inducing hyaluronidase 1 (CEMIP)&quot; ont été intensifiés dans le vermillon des individus plus âgés. Aucune différence marquée entre les individus jeunes et âgés n'a été observée dans le procollagène type III, HAS2, HAS3, hyaluronidase (HYAL) 1, HYAL2, MYH1 et MYH4. Les diminutions dépendantes de l'âge du hyaluronane dans le derme du vermillon étaient importantes, probablement en raison à la fois de la diminution de la synthèse (HAS1) et de l'augmentation de la dégradation (CEMIP). En outre, les diminutions dépendantes de l'âge des fibres de collagène et de deux les types de fibres musculaires dans le vermillon ont également été identifiés histologiquement. Le collagène de type I, MYH2 et MYH7 semblent respectivement représenter les molécules responsables de ces diminutions."	"Wolff-Parkinson-White syndrome: De novo variants and evidence for mutational burden in genes associated with atrial fibrillation. Wolff-Parkinson-White (WPW) syndrome is a relatively common arrhythmia affecting ~1-3/1,000 individuals. Mutations in PRKAG2 have been described in rare patients in association with cardiomyopathy. However, the genetic basis of WPW in individuals with a structurally normal heart remains poorly understood. Sudden death due to atrial fibrillation (AF) can also occur in these individuals. Several studies have indicated that despite ablation of an accessory pathway, the risk of AF remains high in patients compared to general population. We applied exome sequencing in 305 subjects, including 65 trios, 80 singletons, and 6 multiple affected families. We used de novo analysis, candidate gene approach, and burden testing to explore the genetic contributions to WPW. A heterozygous deleterious variant in PRKAG2 was identified in one subject, accounting for 0.6% (1/151) of the genetic basis of WPW in this study. Another individual with WPW and left ventricular hypertrophy carried a known pathogenic variant in MYH7. We found rare de novo variants in genes associated with arrhythmia and cardiomyopathy (ANK2, NEBL, PITX2, and PRDM16) in this cohort. There was an increased burden of rare deleterious variants (MAF ≤ 0.005) with CADD score ≥ 25 in genes linked to AF in cases compared to controls (P = .0023). Our findings show an increased burden of rare deleterious variants in genes linked to AF in WPW syndrome, suggesting that genetic factors that determine the development of accessory pathways may be linked to an increased susceptibility of atrial muscle to AF in a subset of patients."	"Maternal and fetal thyroid dysfunction following porcine reproductive and respiratory syndrome virus2 infection. To better understand the host response to porcine reproductive and respiratory virus-2 (PRRSV2) we evaluated circulating thyroid hormone and associated gene expression in a late gestation challenge model. Pregnant gilts were inoculated at gestation day 85 and fetal samples collected at either 12 or 21 days post-infection (dpi). A subset of fetuses was selected for analysis based on viability and viral load categorized as either uninfected-viable (UNIF), high viral load viable (HV-VIA) or high viral load meconium stained (HV-MEC) and were compared with gestational age matched controls (CON). In dams, circulating levels of total T3 and T4 decreased in the acute period following infection and rebounded by 21 dpi. A similar effect was observed in fetuses, but was largely restricted to HV-VIA and HV-MEC, with minimal decrease noted in UNIF relative to CON at 21 dpi. Gene expression in fetal heart at 12 dpi showed significant decompensatory transcription of thyroid hormone transporters (SLC16A2) and deiodinases (DIO2, DIO3), which was not observed in brain. Correspondingly, genes associated with cell cycle progression (CDK1,2,4) were downregulated in only the heart of highly infected fetuses, while expression of their inhibitor (CDKN1A) was upregulated in both tissues. Finally, expression of genes associated with cardiac stress including CAMKD and AGT were upregulated in the hearts of highly infected fetuses, and a shift in expression of MYH6 to MYH7 was observed in HV-MEC fetuses specifically. Collectively, the results suggest PRRSV2 infection causes a hypothyroid state that disproportionally impacts the fetal heart over the brain."	"Genetics of feline hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by an abnormal increase in myocardial mass that affects cardiac structure and function. HCM is the most common inherited cardiovascular disease in humans (0.2%) and the most common cardiovascular disease in cats (14.7%). Feline HCM phenotype is very similar to the phenotype found in humans, but the time frame for the development of the disease is significantly shorter. Similar therapeutic agents are used in its treatment and it has the same complications, such as heart failure, thromboembolism and sudden cardiac death. In contrast to humans, in whom thousands of genetic variants have been identified, genetic studies in cats have been limited to fragment analysis of two sarcomeric genes identifying two variants in MYBPC3 and one in MYH7. Two of these variants have also been associated with human disease. The high prevalence of the reported variants in non-affected cats hinders the assumption of their pathogenicity in heterozygotes. An in-depth review of the literature about genetic studies on feline HCM in comparison with the same disease in humans is presented here. The close similarity in the phenotype and genotype between cats and humans makes the cat an excellent model for the pathophysiological study of the disease and future therapeutic agents."	"Left Ventricular Noncompaction and Congenital Heart Disease Increases the Risk of Congestive Heart Failure. Left ventricular noncompaction (LVNC) is a hereditary cardiomyopathy that is associated with high morbidity and mortality rates. Recently, LVNC was classified into several phenotypes including congenital heart disease (CHD). However, although LVNC and CHD are frequently observed, the role and clinical significance of genetics in these cardiomyopathies has not been fully evaluated. Therefore, we aimed to evaluate the impact on the perioperative outcomes of children with concomitant LVNC and CHD using next-generation sequencing (NGS). From May 2000 to August 2018, 53 Japanese probands with LVNC (25 males and 28 females) were enrolled and we screened 182 cardiomyopathy-associated genes in these patients using NGS. The age at diagnosis of the enrolled patients ranged from 0 to 14 years (median: 0.3 months). A total of 23 patients (43.4%) were diagnosed with heart failure, 14 with heart murmur (26.4%), and 6 with cyanosis (11.3%). During the observation period, 31 patients (58.5%) experienced heart failure and 13 (24.5%) developed arrhythmias such as ventricular tachycardia, supraventricular tachycardia, and atrioventricular block. Moreover, 29 patients (54.7%) had ventricular septal defects (VSDs), 17 (32.1%) had atrial septal defects, 10 had patent ductus arteriosus (PDA), and 7 (13.2%) had Ebstein's anomaly and double outlet right ventricle. Among the included patients, 30 underwent surgery, 19 underwent biventricular repair, and 2 underwent pulmonary artery banding, bilateral pulmonary artery banding, and PDA ligation. Overall, 30 genetic variants were identified in 28 patients with LVNC and CHD. Eight variants were detected in MYH7 and two in TPM1. Echocardiography showed lower ejection fractions and more thickened trabeculations in the left ventricle in patients with LVNC and CHD than in age-matched patients with VSDs. During follow-up, 4 patients died and the condition of 8 worsened postoperatively. The multivariable proportional hazards model showed that heart failure, LV ejection fraction of &lt; 24%, LV end-diastolic diameter z-score of &gt; 8.56, and noncompacted-to-compacted ratio of the left ventricular apex of &gt; 8.33 at the last visit were risk factors for survival. LVNC and CHD are frequently associated with genetic abnormalities. Knowledge of the association between CHD and LVNC is important for the awareness of clinical implications during the preoperative and postoperative periods to identify the populations who are at an increased risk of additional morbidity."	"Fetal Dilated Cardiomyopathy Associated With Variants of Uncertain Significance in MYH7 and DSG2 Genes: A Case Report and Review of the Literature. Fetal dilated cardiomyopathy (DCM) is an uncommon prenatal diagnosis associated with significant morbidity and mortality. This report describes a patient with a diagnosis of fetal DCM at 31<sup>0</sup> weeks gestation, several weeks after a maternal flu-like illness. Spontaneous improvement was noted on serial echocardiograms. Maternal Coxsackievirus B titers were significantly elevated at 1:80, although post-natal cord blood test results were negative. Genetic panel testing for DCM demonstrated two heterozygous variants of uncertain significance in the MYH7 and DSG2 genes. Although an early post-natal echocardiogram demonstrated a normal left ventricular ejection fraction, right ventricular dysfunction was noted with subsequent cardiac decompensation requiring temporary inotropic support. An echocardiogram at the age of 2 years confirmed normal biventricular function. The finding of fetal DCM should trigger a broad evaluation. In the setting of limited fetal cardiac reserve, the significant hemodynamic changes that occur post-natally may trigger additional decompensation. Clinicians should be aware of the prognostic value of right ventricular function, as measured by fractional area change, in addition to the limitations of serologic and genetic testing."	"Variant Interpretation for Dilated Cardiomyopathy: Refinement of the American College of Medical Genetics and Genomics/ClinGen Guidelines for the DCM Precision Medicine Study. The hypothesis of the Dilated Cardiomyopathy Precision Medicine Study is that most dilated cardiomyopathy has a genetic basis. The study returns results to probands and, when indicated, to relatives. While both the American College of Medical Genetics and Genomics/Association for Molecular Pathology and ClinGen's MYH7-cardiomyopathy specifications provide relevant guidance for variant interpretation, further gene- and disease-specific considerations were required for dilated cardiomyopathy. To this end, we tailored the ClinGen MYH7-cardiomyopathy variant interpretation framework; the specifications implemented for the study are presented here. Modifications were created and approved by an external Variant Adjudication Oversight Committee. After a pilot using 81 probands, further adjustments were made, resulting in 27 criteria (9 modifications of the ClinGen MYH7 framework and reintroduction of 2 American College of Medical Genetics and Genomics/Association of Molecular Pathology criteria that were deemed not applicable by the ClinGen MYH7 working group). These criteria were applied to 2059 variants in a test set of 97 probands. Variants were classified as benign (n=1702), likely benign (n=33), uncertain significance (n=71), likely pathogenic (likely pathogenic; n=12), and pathogenic (P; n=3). Only 2/15 likely pathogenic/P variants were identified in Non-Hispanic African ancestry probands. We tailored the ClinGen MYH7 criteria for our study. Our preliminary data show that 15/97 (15.5%) probands have likely pathogenic/P variants, most of which were identified in probands of Non-Hispanic European ancestry. We anticipate continued evolution of our approach, one that will be informed by new insights on variant interpretation and a greater understanding of the genetic architecture of dilated cardiomyopathy. URL: https://www.clinicaltrials.gov; Unique identifier: NCT03037632."	"Antigen-Based Nano-Immunotherapy Controls Parasite Persistence, Inflammatory and Oxidative Stress, and Cardiac Fibrosis, the Hallmarks of Chronic Chagas Cardiomyopathy, in A Mouse Model of Trypanosoma cruzi Infection. Chagas cardiomyopathy is caused by Trypanosoma cruzi (Tc). We identified two candidate antigens (TcG2 and TcG4) that elicit antibodies and T cell responses in naturally infected diverse hosts. In this study, we cloned TcG2 and TcG4 in a nanovector and evaluated whether nano-immunotherapy (referred as nano2/4) offers resistance to chronic Chagas disease. For this, C57BL/6 mice were infected with Tc and given nano2/4 at 21 and 42 days post-infection (pi). Non-infected, infected, and infected mice treated with pcDNA3.1 expression plasmid encoding TcG2/TcG4 (referred as p2/4) were used as controls. All mice responded to Tc infection with expansion and functional activation of splenic lymphocytes. Flow cytometry showed that frequency of splenic, poly-functional CD4<sup>+</sup> and CD8<sup>+</sup> T cells expressing interferon-γ, perforin, and granzyme B were increased by immunotherapy (Tc.nano2/4 &gt; Tc.p2/4) and associated with 88%-99.7% decline in cardiac and skeletal (SK) tissue levels of parasite burden (Tc.nano2/4 &gt; Tc.p2/4) in Chagas mice. Subsequently, Tc.nano2/4 mice exhibited a significant decline in peripheral and tissues levels of oxidative stress (e.g., 4-hydroxynonenal, protein carbonyls) and inflammatory infiltrate that otherwise were pronounced in Chagas mice. Further, nano2/4 therapy was effective in controlling the tissue infiltration of pro-fibrotic macrophages and established a balanced environment controlling the expression of collagens, metalloproteinases, and other markers of cardiomyopathy and improving the expression of Myh7 (encodes β myosin heavy chain) and Gsk3b (encodes glycogen synthase kinase 3) required for maintaining cardiac contractility in Chagas heart. We conclude that nano2/4 enhances the systemic T cell immunity that improves the host's ability to control chronic parasite persistence and Chagas cardiomyopathy."	"Chiral toxicity of muscone to embryonic zebrafish heart. Musk compounds are often used as to treat heart-related diseases and are widely used in Asia. Muscone is one of the most important physiologically active compounds of natural musk. Muscone is a chiral compound and can be further classified into S-muscone and R-muscone and both are present in synthetic musk. While these two chiral isomers have significant differences in odor properties, their difference in toxicity is still unknown. This study used zebrafish as an animal model to compare cardiac toxicities of S-muscone and R-muscone. Results showed that both compounds were acutely toxic to zebrafish embryos causing mortality, decreased hatching rate, pericardial edema, and decreased heart beat rate. These toxicities were modulated through increased Myh6 and Myh7 mRNA expression, and decreased thyroid genes (Trh, Thrβ, and Dio3) expression. R-muscone caused higher toxicity than S-muscone at the same concentration. For safety, the chiral isomer composition of synthetic muscone should be carefully regulated in the future."	"Allele-Selective Knockdown of MYH7 Using Antisense Oligonucleotides. Hundreds of dominant-negative myosin mutations have been identified that lead to hypertrophic cardiomyopathy, and the biomechanical link between mutation and disease is heterogeneous across this patient population. To increase the therapeutic feasibility of treating this diverse genetic population, we investigated the ability of locked nucleic acid (LNA)-modified antisense oligonucleotides (ASOs) to selectively knock down mutant myosin transcripts by targeting single-nucleotide polymorphisms (SNPs) that were found to be common in the myosin heavy chain 7 (MYH7) gene. We identified three SNPs in MYH7 and designed ASO libraries to selectively target either the reference or alternate MYH7 sequence. We identified ASOs that selectively knocked down either the reference or alternate allele at all three SNP regions. We also show allele-selective knockdown in a mouse model that was humanized on one allele. These results suggest that SNP-targeting ASOs are a promising therapeutic modality for treating cardiac pathology."	"Effect of gasotransmitters treatment on expression of hypertension, vascular and cardiac remodeling and hypertensive nephropathy genes in left ventricular hypertrophy. Cardiac and renal dysfunction are often co-morbid pathologies leading to worsening prognosis resulting in difficulty in therapy of left ventricular hypertrophy (LVH). The aim of the current study was to determine the changes in expression of human ortholog genes of hypertension, vascular and cardiac remodeling and hypertensive nephropathy phenotypes under normal, disease and upon treatment with gasotransmitter including H2S (hydrogen sulphide), NO (nitric oxide) and combined (H2S + NO). A total of 72 Wistar Kyoto rats (with equivalent male and female animals) were recruited in the present study where LVH rat models were treated with H2S and NO individually as well as with both combined. Cardiac and renal physical indices were recorded and relative gene expression were quantified. Both cardiac and renal physical indices were significantly modified with individual as well as combined H2S + NO treatment in control and LVH rats. Expression analysis revealed, hypertension, vascular remodeling genes ACE, TNFα and IGF1, mRNAs to be significantly higher (P ≤ 0.05) in the myocardia and renal tissues of LVH rats, while individual and combined H2S + NO treatment resulted in lowering the gene expression to normal/near to normal levels. The cardiac remodeling genes MYH7, TGFβ, SMAD4 and BRG1 expression were significantly up-regulated (P ≤ 0.05) in the myocardia of LVH where the combined H2S + NO treatment resulted in normal/near to normal expression more effectively as compared to individual treatments. In addition individual as well as combined H2S and NO treatment significantly decreased PKD1 expression in renal tissue, which was up-regulated in LVH rats (P ≤ 0.05). The reduction in hemodynamic parameters and cardiac indices as well as alteration in gene expression on treatment of LVH rat model indicates important therapeutic potential of combined treatment with H2S + NO gasotransmitters in hypertension and cardiac hypertrophy when present as co-morbidity with renal complications."	"Label free shotgun proteomics for the identification of protein biomarkers for beef tenderness in muscle and plasma of heifers. Meat quality prediction is a priority for the beef industry. Label free shotgun proteomics was performed on Longissimus muscle and plasma from 20 crossbred Charolais x Aubrac beef heifers, classified as subgroups of 5 extreme tender and 5 extreme tough meat according to sensory evaluation, Warner Bratzler shear force, and a synthetic tenderness index. This technique identified 268 proteins in muscle and 136 in plasma. Among them, 71 muscle proteins and 21 plasma proteins discriminated tender and tough groups. These proteins were analyzed to select the most correlated and explicative ones which were used in a linear regression on the 20 heifers. The results validated in heifers 33 muscle proteins previously identified as related with tenderness, and revealed 38 new candidates. Twelve are localized in shear force or tenderness score QTL. Among them ACTN2, ADSSL1, GOT1, HPX, OGDH, OGN, TNNC1 and VCL are proposed as robust candidates with 3 other proteins known to be related with tenderness (MYBPH, CAPZB, MYH1). Examination of the plasma proteome showed 8 putative biomarkers (MYH7, CFH, ENO3, PLA2G2D5, FHL1, GAPDH, MASP2 and SERPINF2). Three of them (MYH7, ENO3 and FHL1) were identified as discriminative of tenderness both in Longissimus muscle and in plasma. SIGNIFICANCE: The label free proteomic approach used in this study allowed to complete the atlas of biomarkers for tenderness of the Longissimus muscle. This innovative proteomic approach applied on plasma samples allowed to identify circulating candidate biomarkers for beef tenderness. This low-invasive approach constitutes an interesting alternative to evaluate early the &quot;beef meat potential&quot; of living animals in farm or of the carcass in slaughterhouses."	"Altered miRNA and mRNA Expression in Sika Deer Skeletal Muscle with Age. Studies of the gene and miRNA expression profiles associated with the postnatal late growth, development, and aging of skeletal muscle are lacking in sika deer. To understand the molecular mechanisms of the growth and development of sika deer skeletal muscle, we used de novo RNA sequencing (RNA-seq) and microRNA sequencing (miRNA-seq) analyses to determine the differentially expressed (DE) unigenes and miRNAs from skeletal muscle tissues at 1, 3, 5, and 10 years in sika deer. A total of 51,716 unigenes, 171 known miRNAs, and 60 novel miRNAs were identified based on four mRNA and small RNA libraries. A total of 2,044 unigenes and 11 miRNAs were differentially expressed between adolescence and juvenile sika deer, 1,946 unigenes and 4 miRNAs were differentially expressed between adult and adolescent sika deer, and 2,209 unigenes and 1 miRNAs were differentially expressed between aged and adult sika deer. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) analyses showed that DE unigenes and miRNA were mainly related to energy and substance metabolism, processes that are closely associate with the growth, development, and aging of skeletal muscle. We also constructed mRNA-mRNA and miRNA-mRNA interaction networks related to the growth, development, and aging of skeletal muscle. The results show that mRNA (Myh1, Myh2, Myh7, ACTN3, etc.) and miRNAs (miR-133a, miR-133c, miR-192, miR-151-3p, etc.) may play important roles in muscle growth and development, and mRNA (WWP1, DEK, UCP3, FUS, etc.) and miRNAs (miR-17-5p, miR-378b, miR-199a-5p, miR-7, etc.) may have key roles in muscle aging. In this study, we determined the dynamic miRNA and unigenes transcriptome in muscle tissue for the first time in sika deer. The age-dependent miRNAs and unigenes identified will offer insights into the molecular mechanism underlying muscle development, growth, and maintenance and will also provide valuable information for sika deer genetic breeding."	"Phenotypes of hypertrophic cardiomyopathy: genetics, clinics, and modular imaging. Hypertrophic cardiomyopathy (HCM) is the most common cardiovascular disease with genetic transmission, characterized by the hypertrophy of any segment of the left ventricle (LV), not totally explained by improper loading conditions, with LV systolic function preserved, increased, or reduced. The histopathological mechanism involved in HCM refers to the primary injury of the myocardium, as follows: disorganized array of myocytes, extracellular matrix modification, microvascular dysfunction, with subsequent appearance of myocardial fibrosis. Multiple sarcomere proteins mutations are responsible for HCM, but two of them are involved in 70% of the cases of HCM: β-myosin heavy chain (MYH7) and myosin-binding protein C (MYBPC3). The development of new genetic techniques involving genome editing is promising to discover a gene therapy for patients with HCM. Clinical presentation may differ from asymptomatic to sudden cardiac death (SCD), the last one targeting younger adults. In this case, the diagnosis and evaluation of SCD risk factors is extremely important. The common method of diagnosis is transthoracic echocardiography, but cardiac magnetic resonance (CMR) imaging represents &quot;gold standard&quot; in the evaluation of HCM patients. Treatment includes pharmacological therapy, surgery, alcohol ablation, and not least SCD prevention."	"Genetic screening for hypertrophic cardiomyopathy in large, asymptomatic military cohorts. Sudden cardiac death (SCD) is one of the leading causes of mortality in the U.S. military and competitive athletes. In this study, we simulate how genetic screening may be implemented in the military to prevent an SCD endpoint resulting from hypertrophic cardiomyopathy (HCM). We created a logistic regression model to predict variant pathogenicity in the most common HCM associated genes MYH7 and MYBPC3. Model predictions were used in conjunction with the gnomAD database to identify frequencies of pathogenic variants. Extrapolating these variants to a military population, lives saved and cost benefit analyses were conducted for screening for HCM related to pathogenic variants in MYH7 and MYBPC3. Genetic screening for HCM followed by echocardiography in individuals with pathogenic variants is predicted to save an average of 2.9 lives per accession cohort, based on historical cohort sizes, and result in a break-even cost of ~$7 per test. The false positives, defined as disqualified individuals for military service who do not have HCM, are predicted to be 0 individuals per accession cohort. This study suggests that the main barriers for the implementation of genetic screening for the U.S. military are the low detection rate and variant interpretation."	"Analysis of De Novo Mutations in Sporadic Cardiomyopathies Emphasizes Their Clinical Relevance and Points to Novel Candidate Genes. The vast majority of cardiomyopathies have an autosomal dominant inheritance; hence, genetic testing is typically offered to patients with a positive family history. A de novo mutation is a new germline mutation not inherited from either parent. The purpose of our study was to search for de novo mutations in patients with cardiomyopathy and no evidence of the disease in the family. Using next-generation sequencing, we analyzed cardiomyopathy genes in 12 probands. In 8 (66.7%), we found de novo variants in known cardiomyopathy genes (TTN, DSP, SCN5A, TNNC1, TPM1, CRYAB, MYH7). In the remaining probands, the analysis was extended to whole exome sequencing in a trio (proband and parents). We found de novo variants in genes that, so far, were not associated with any disease (TRIB3, SLC2A6), a possible disease-causing biallelic genotype (APOBEC gene family), and a de novo mosaic variant without strong evidence of pathogenicity (UNC45A). The high prevalence of de novo mutations emphasizes that genetic screening is also indicated in cases of sporadic cardiomyopathy. Moreover, we have identified novel cardiomyopathy candidate genes that are likely to affect immunological function and/or reaction to stress that could be especially relevant in patients with disease onset associated with infection/infestation."	"Genes frequently associated with sudden death in primary hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy is characterized by left ventricular hypertrophy without apparent cardiac justification. Sudden cardiac death may be the first manifestation of the disease. It occurs mainly in adulthood and can be seen in childhood and adolescence where genetic origin predominates. Primary HCM (&quot;familial&quot;) is inherited in an autosomal dominant pattern in the 25 subtypes informed in Online Mendelian Inheritance in Man. The proteins encoded by the mutated genes are part of the sarcomere in the cardiac cells, being the thick filament the most frequently affected, with the worst prognosis. In the present article, we describe the Mendelian inheritance of the disease and the two most associated genes with sudden death: MYBPC3 and MYH7. La miocardiopatía hipertrófica (MCH) es el aumento de grosor de la pared ventricular izquierda no relacionada con otras alteraciones cardíacas. Es una enfermedad que puede presentar como primera manifestación clínica la muerte súbita y de ahí su relevancia clínica. Aunque se presenta sobre todo en la edad adulta, puede aparecer durante la infancia y adolescencia, en las que predominan los casos de origen hereditario. La MCH primaria, de causa genética, muestra en particular un patrón de herencia autosómico dominante en los 25 subtipos reconocidos en OMIM (Online Mendelian Inheritance in Man). Las proteínas codificadas por los genes mutantes forman parte del sarcómero en células musculares cardíacas, y las variantes patogénicas de filamentos gruesos son las de mayor frecuencia y peor pronóstico. En este artículo se describen la herencia mendeliana de la enfermedad y la relación con muerte súbita de los genes más frecuentemente encontrados en ella: MYBPC3 y MYH7."	"Neuron-derived orphan receptor-1 modulates cardiac gene expression and exacerbates angiotensin II-induced cardiac hypertrophy. Hypertensive cardiac hypertrophy (HCH) is a common cause of heart failure (HF), a major public health problem worldwide. However, the molecular bases of HCH have not been completely elucidated. Neuron-derived orphan receptor-1 (NOR-1) is a nuclear receptor whose role in cardiac remodelling is poorly understood. The aim of the present study was to generate a transgenic mouse over-expressing NOR-1 in the heart (TgNOR-1) and assess the impact of this gain-of-function on HCH. The CAG promoter-driven transgenesis led to viable animals that over-expressed NOR-1 in the heart, mainly in cardiomyocytes and also in cardiofibroblasts. Cardiomyocytes from TgNOR-1 exhibited an enhanced cell surface area and myosin heavy chain 7 (Myh7)/Myh6 expression ratio, and increased cell shortening elicited by electric field stimulation. TgNOR-1 cardiofibroblasts expressed higher levels of myofibroblast markers than wild-type (WT) cells (α 1 skeletal muscle actin (Acta1), transgelin (Sm22α)) and were more prone to synthesise collagen and migrate. TgNOR-1 mice experienced an age-associated remodelling of the left ventricle (LV). Angiotensin II (AngII) induced the cardiac expression of NOR-1, and NOR-1 transgenesis exacerbated AngII-induced cardiac hypertrophy and fibrosis. This effect was associated with the up-regulation of hypertrophic (brain natriuretic peptide (Bnp), Acta1 and Myh7) and fibrotic markers (collagen type I α 1 chain (Col1a1), Pai-1 and lysyl oxidase-like 2 (Loxl2)). NOR-1 transgenesis up-regulated two key genes involved in cardiac hypertrophy (Myh7, encoding for β-myosin heavy chain (β-MHC)) and fibrosis (Loxl2, encoding for the extracellular matrix (ECM) modifying enzyme, Loxl2). Interestigly, in transient transfection assays, NOR-1 drove the transcription of Myh7 and Loxl2 promoters. Our findings suggest that NOR-1 is involved in the transcriptional programme leading to HCH."	"Reevaluating the Genetic Contribution of Monogenic Dilated Cardiomyopathy. Dilated cardiomyopathy (DCM) is genetically heterogeneous, with &gt;100 purported disease genes tested in clinical laboratories. However, many genes were originally identified based on candidate-gene studies that did not adequately account for background population variation. Here we define the frequency of rare variation in 2538 patients with DCM across protein-coding regions of 56 commonly tested genes and compare this to both 912 confirmed healthy controls and a reference population of 60 706 individuals to identify clinically interpretable genes robustly associated with dominant monogenic DCM. We used the TruSight Cardio sequencing panel to evaluate the burden of rare variants in 56 putative DCM genes in 1040 patients with DCM and 912 healthy volunteers processed with identical sequencing and bioinformatics pipelines. We further aggregated data from 1498 patients with DCM sequenced in diagnostic laboratories and the Exome Aggregation Consortium database for replication and meta-analysis. Truncating variants in TTN and DSP were associated with DCM in all comparisons. Variants in MYH7, LMNA, BAG3, TNNT2, TNNC1, PLN, ACTC1, NEXN, TPM1, and VCL were significantly enriched in specific patient subsets, with the last 2 genes potentially contributing primarily to early-onset forms of DCM. Overall, rare variants in these 12 genes potentially explained 17% of cases in the outpatient clinic cohort representing a broad range of adult patients with DCM and 26% of cases in the diagnostic referral cohort enriched in familial and early-onset DCM. Although the absence of a significant excess in other genes cannot preclude a limited role in disease, such genes have limited diagnostic value because novel variants will be uninterpretable and their diagnostic yield is minimal. In the largest sequenced DCM cohort yet described, we observe robust disease association with 12 genes, highlighting their importance in DCM and translating into high interpretability in diagnostic testing. The other genes analyzed here will need to be rigorously evaluated in ongoing curation efforts to determine their validity as Mendelian DCM genes but have limited value in diagnostic testing in DCM at present. This data will contribute to community gene curation efforts and will reduce erroneous and inconclusive findings in diagnostic testing."	"Potential digenic inheritance of familial hypertrophic cardiomyopathy identified by whole-exome sequencing. The aim of this study was to identify the genetic causes of patients with hypertrophic cardiomyopathy (HCM) within a family. Most of the previous studies found point mutations as the genetic causes for HCM, whole-gene deletion was rarely reported. Although, clinical genetic testing has been widely used for identifying variants in HCM patients, structural variations are understudied, partly owing to the inadequacy of the available methodology. In the present study, whole-exome sequencing (WES) and Sanger sequencing validation was used to identify the genetic causes in patients with familial HCM. A genomic deletion in Chromosome 19 containing the whole of troponin I3 gene (TNNI3), and the p.Ile736Thr variant in the myosin heavy chain 7 gene (MYH7) were identified in two patients with familial HCM by WES. The p.Ile736Thr variant is further validated by Sanger sequencing and is predicted as a pathogenic variant by in silico analysis. We added the notion that not only p.Ile736Thr variant of MYH7, but also TNNI3 deletion might potentially contribute to HCM pathogenesis. Our study also suggested WES was a powerful tool to identify the genetic variants causing HCM."	"Troponin destabilization impairs sarcomere-cytoskeleton interactions in iPSC-derived cardiomyocytes from dilated cardiomyopathy patients. The sarcomeric troponin-tropomyosin complex is a critical mediator of excitation-contraction coupling, sarcomeric stability and force generation. We previously reported that induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) from patients with a dilated cardiomyopathy (DCM) mutation, troponin T (TnT)-R173W, display sarcomere protein misalignment and impaired contractility. Yet it is not known how TnT mutation causes dysfunction of sarcomere microdomains and how these events contribute to misalignment of sarcomeric proteins in presence of DCM TnT-R173W. Using a human iPSC-CM model combined with CRISPR/Cas9-engineered isogenic controls, we uncovered that TnT-R173W destabilizes molecular interactions of troponin with tropomyosin, and limits binding of PKA to local sarcomere microdomains. This attenuates troponin phosphorylation and dysregulates local sarcomeric microdomains in DCM iPSC-CMs. Disrupted microdomain signaling impairs MYH7-mediated, AMPK-dependent sarcomere-cytoskeleton filament interactions and plasma membrane attachment. Small molecule-based activation of AMPK can restore TnT microdomain interactions, and partially recovers sarcomere protein misalignment as well as impaired contractility in DCM TnT-R173W iPSC-CMs. Our findings suggest a novel therapeutic direction targeting sarcomere- cytoskeleton interactions to induce sarcomere re-organization and contractile recovery in DCM."	"Generation of a hiPSC line ZZUNEUi007-A from a patient with hypertrophic cardiomyopathy caused by mutation in MYH7. Hypertrophic cardiomyopathy (HCM) is the most common monogenic cardiovascular disorder. In this study, we generated human induced pluripotent stem cells (iPSC) ZZUNEUi007-A from dermal fibroblasts of an HCM patient with the p. R663H (c. 1988 G &gt; A) mutation in MYH7. The generated hiPSC line had normal karyotype, showed robust expression of pluripotency markers and could differentiate into all three germ layers in vivo."	"Epidemiology and clinical characteristics of atrial fibrillation in patients with inherited heart diseases. The prevalence and clinical course of atrial fibrillation (AF) in hypertrophic cardiomyopathy (HCM) is well described, though less so for other inherited cardiomyopathies (familial dilated cardiomyopathy, arrhythmogenic right ventricular cardiomyopathy, left ventricular noncompaction); and inherited arrhythmia syndromes (long QT syndrome, Brugada syndrome or catecholaminergic polymorphic ventricular tachycardia [CPVT]). We examined the frequency, clinical characteristics and AF-related management and outcomes amongst this patient population. We retrospectively studied consecutive probands with inherited cardiomyopathy (n = 962) and inherited arrhythmia syndromes (n = 195) evaluated between 2002 and 2018. AF was observed in 5% to 31% of patients, with the highest frequency in HCM. Age of AF onset was 45.8 ± 21.9 years in the inherited arrhythmia syndromes compared with 53.3 ± 15.3 years in the inherited cardiomyopathies, with four CPVT patients developing AF at a median age of 20 years. Overall, 11% of patients with AF had a transient ischemic attack or stroke of which a total of 80% were anticoagulated; with 48% of events occurring at a CHA2 DS2 -VASc &lt; 2. Amongst sarcomere-positive HCM, AF was independently associated with age (odds ratio [OR], 1.05; 95% confidence interval [CI], 1.02-1.08; P = .0014), left atrial area (OR, 1.11; 95% CI, 1.05-1.17; P = .0005) and MYH7 variants (OR, 2.55; 95% CI, 1.16-5.61; P = .020). Up to one-third of inherited heart disease patients will develop AF. While common general population risk factors are key in patients with HCM, the genotype is independently associated with AF. Amongst inherited arrhythmia syndromes, AF is less common, though often occurs below the age of 50 years."	"Vezf1 regulates cardiac structure and contractile function. Vascular endothelial zinc finger 1 (Vezf1) is a transcription factor previously shown to regulate vasculogenesis and angiogenesis. We aimed to investigate the role of Vezf1 in the postnatal heart. The role of Vezf1 in regulating cardiac growth and contractile function was studied in zebrafish and in primary cardiomyocytes. We find that expression of Vezf1 is decreased in diseased human myocardium and mouse hearts. Our experimental data shows that knockdown of zebrafish Vezf1 reduces cardiac growth and results in impaired ventricular contractile response to β-adrenergic stimuli. However, Vezf1 knockdown is not associated with dysregulation of cardiomyocyte Ca<sup>2+</sup> transient kinetics. Gene ontology enrichment analysis indicates that Vezf1 regulates cardiac muscle contraction and dilated cardiomyopathy related genes and we identify cardiomyocyte Myh7/β-MHC as key target for Vezf1. We further identify a key role for an MCAT binding site in the Myh7 promoter regulating the response to Vezf1 knockdown and show that TEAD-1 is a binding partner of Vezf1. We demonstrate a role for Vezf1 in regulation of compensatory cardiac growth and cardiomyocyte contractile function, which may be relevant in human cardiac disease."	"Natriuretic peptide receptor C contributes to disproportionate right ventricular hypertrophy in a rodent model of obesity-induced heart failure with preserved ejection fraction with pulmonary hypertension. Heart failure with preserved ejection fraction (HFpEF) currently has no therapies that improve mortality. Right ventricular dysfunction and pulmonary hypertension are common in HFpEF, and thought to be driven by obesity and metabolic syndrome. Thus, we hypothesized that an animal model of obesity-induced HFpEF with pulmonary hypertension would provide insight into the pathogenesis of right ventricular failure in HFpEF. Two strains of mice, one susceptible (AKR) and one resistant (C3H) to obesity-induced HFpEF, were fed high fat (60% fat) or control diet for 0, 2, or 20 weeks and evaluated by cardiac catheterization and echocardiography for development of right ventricular dysfunction, pulmonary hypertension, and HFpEF. AKR, but not C3H, mice developed right ventricular dysfunction, pulmonary hypertension, and HFpEF. NPRC, which antagonizes beneficial natriuretic peptide signaling, was found in RNA sequencing to be the most differentially upregulated gene in the right ventricle, but not left ventricle or lung, of AKR mice that developed pulmonary hypertension and HFpEF. Overexpression of NPRC in H9C2 cells increased basal cell size and increased expression of hypertrophic genes, MYH7 and NPPA. In conclusion, we have shown that NPRC contributes to right ventricular modeling in obesity-induced pulmonary hypertension-HFpEF by increasing cardiomyocyte hypertrophy. NPRC may represent a promising therapeutic target for right ventricular dysfunction in pulmonary hypertension-HFpEF."	"Bioactive peptides attenuate cardiac hypertrophy and fibrosis in spontaneously hypertensive rat hearts. Alcalase potato protein hydrolysate (APPH), a nutraceutical food, might an have important role in anti-obesity activity. Recent studies from our lab indicated that APPH treatment had lipolysis stimulating activity and identified was an efficient anti-obesity diet ingredient. In this study we aim to investigate the beneficial effects of pure peptide amino acid sequences (DIKTNKPVIF (DI) and IF) from APPH supplement in the regulation of cardiac hypertrophy and fibrosis on spontaneously hypertensive rats (SHR). We examined hematoxylin and eosin staining, Masson's trichrome staining, echocardiographic parameters, serum parameters, hypertrophy, inflammation and fibrotic marker expression to demonstrate efficacy of bioactive peptides in a SHR model. There was a significant upregulation between SHR and bioactive peptides treated groups in left heart weight (LHW), LHW/WHW, LHW/Tibia, LVIDd, and LVd mass. In addition, the bioactive peptides repress the protein expression of hypertrophy markers (BNP, MYH7), inflammation (TLR-4, p-NFkB, TNF-α, IL-6), and fibrotic markers (uPA, MMP-2, TIMP1, CTGF). In summary, these results indicate that DI and IF bioactive peptides from APPH attenuate cardiac hypertrophy, inflammation and fibrosis in the SHR model."	"Whole Exome Sequencing Identified a 13 Base Pair MYH7 Deletion-mutation in a Patient with Restrictive Cardiomyopathy and Left Ventricle Hypertrophy. NA"	"Screening of MYH7 gene mutation sites in hypertrophic cardiomyopathy and its significance. There have been few reports of mutations in the beta-myosin heavy chain (MYH7) gene in hypertrophic cardiomyopathy (HCM), which is associated with sudden cardiac death caused by HCM. This study aimed to screen the mutation sites in the sarcomeric gene MYH7 in Chinese patients with HCM. We also planned to analyze the pathogenicity of the mutation site as well as its significance in clinical and forensic medicine. From January 2006 to June 2017, autopsy cases were collected from the Department of Pathology, the Affiliated Hospital of Qingdao University. The experiment was to detect MYH7 gene status in formalin-fixed paraffin-embedded tissues from 18 independent autopsy cases who suffered HCM related sudden death (fatal HCM) and 20 cases without cardiomyopathy. Common mutation exon fragments of MYH7 gene were amplified by polymerase chain reaction. The end-of-deoxygenation method and gene cloning method were further performed to analyze the mutation sites. Homologous comparison among mutant sites was conducted using BLAST online database. The 1336th nucleotide of MYH7 gene at exon 14 was converted from T to G in one HCM case, resulting in the conversion of threonine (Thr) at position 446 to proline (Pro). In another case, the 1402th nucleotide at exon 14 was converted from T to C, resulting in the conversion of phenylalanine (Phe) at position 468 to leucine (Leu). Homologous comparison results showed that the two amino acid residues of Thr446 and Phe468 are highly conserved among different species. Our results showed fatal HCM harbored mutations of Thr446Pro and Phe468Leu in the MYH7 gene. It is significant for clinical and forensic medicine to further explore the functions and detailed mechanisms of these mutations."	"Baseline Characteristics of the VANISH Cohort. The VANISH trial (Valsartan for Attenuating Disease Evolution in Early Sarcomeric Hypertrophic Cardiomyopathy) targeted young sarcomeric gene mutation carriers with early-stage hypertrophic cardiomyopathy (HCM) to test whether valsartan can modify disease progression. We describe the baseline characteristics of the VANISH cohort and compare to previous trials evaluating angiotensin receptor blockers. Applying a randomized, double-blinded, placebo-controlled design, 178 participants with nonobstructive HCM (age, 23.3±10.1 years; 61% men) were randomized in the primary cohort and 34 (age, 16.5±4.9 years; 50% men) in the exploratory cohort of sarcomeric mutation carriers without left ventricular hypertrophy. In the primary cohort, maximal left ventricular wall thickness was 17±4 mm for adults and Z score 7.0±4.5 for children. Nineteen percent had late gadolinium enhancement on cardiac magnetic resonance. Mean peak oxygen consumption was 33 mL/kg per minute, and 92% of participants were New York Heart Association functional class I. New York Heart Association class II was associated with older age, MYH7 variants, and more prominent imaging abnormalities. Six previous trials of angiotensin receptor blockers in HCM enrolled a median of 24 patients (range, 19-133) with mean age of 51.2 years; 42% of patients were in New York Heart Association class ≥II, and sarcomeric mutations were not required. The VANISH cohort is much larger, younger, less heterogeneous, and has less advanced disease than prior angiotensin receptor blocker trials in HCM. Participants had relatively normal functional capacity and mild HCM features. New York Heart Association functional class II symptoms were associated with older age, more prominent imaging abnormalities, and MYH7 variants, suggesting both phenotype and genotype contribute to disease manifestations. URL: https://www.clinicaltrials.gov. Unique identifier: NCT01912534."	"Cationic porphyrins as destabilizer of a G-quadruplex located at the promoter of human MYH7 β gene. G-quadruplex (GQ) architecture is adopted by guanine rich sequences, present throughout the eukaryotic genome including promoter locations and telomeric ends. The in vivo presence indicates their involvement and role in various biological processes. Various small ligands have been developed to interact and stabilize/destabilize G-quadruplex structures. Cationic porphyrins are among the most studied ligands, reported to bind and stabilize G-quadruplexes. Herein, we report the recognition and destabilization of a parallel G-quadruplex by porphyrins (TMPyP3 and TMPyP4). This G-quadruplex forming 23-nt G-rich sequence is in the promoter region of Human Myosin Heavy Chain β gene (MYH7β). Presence of various putative regulatory sequence elements (TATA Box, CCAAT, SP-1) located in the vicinity of this quadruplex motif, highlight its regulatory implications. Biophysical methods as Circular Dichroism Spectroscopy, UV-Absorption Spectroscopy, UV-Thermal Denaturation and Fluorescence Spectroscopy (steady as well as Time Resolved) have been used for studying the interaction and binding parameters. It is proposed that porphyrins have a destabilizing effect on the G-quadruplexes with parallel topology and a stronger binding specifically via intercalation mode is needed to cause destabilization. The study deals with better understanding and insights of DNA-Drug interactions in biological systems.Communicated by Ramaswamy H. Sarma."	"Adult human cardiac stem cell supplementation effectively increases contractile function and maturation in human engineered cardiac tissues. Delivery of stem cells to the failing heart is a promising therapeutic strategy. However, the improvement in cardiac function in animal studies has not fully translated to humans. To help bridge the gap between species, we investigated the effects of adult human cardiac stem cells (hCSCs) on contractile function of human engineered cardiac tissues (hECTs) as a species-specific model of the human myocardium. Human induced pluripotent stem cell-derived cardiomyoctes (hCMs) were mixed with Collagen/Matrigel to fabricate control hECTs, with an experimental group of hCSC-supplemented hECT fabricated using a 9:1 ratio of hCM to hCSC. Functional testing was performed starting on culture day 6, under spontaneous conditions and also during electrical pacing from 0.25 to 1.0 Hz, measurements repeated at days 8 and 10. hECTs were then frozen and processed for gene analysis using a Nanostring assay with a cardiac targeted custom panel. The hCSC-supplemented hECTs displayed a twofold higher developed force vs. hCM-only controls by day 6, with approximately threefold higher developed stress and maximum rates of contraction and relaxation during pacing at 0.75 Hz. The spontaneous beat rate characteristics were similar between groups, and hCSC supplementation did not adversely impact beat rate variability. The increased contractility persisted through days 8 and 10, albeit with some decrease in the magnitude of the difference of the force by day 10, but with developed stress still significantly higher in hCSC-supplemented hECT; these findings were confirmed with multiple hCSC and hCM cell lines. The force-frequency relationship, while negative for both, control (- 0.687 Hz<sup>- 1</sup>; p = 0.013 vs. zero) and hCSC-supplemented (- 0.233 Hz<sup>- 1</sup>;p = 0.067 vs. zero) hECTs, showed a significant rectification in the regression slope in hCSC-supplemented hECT (p = 0.011 vs. control). Targeted gene exploration (59 genes) identified a total of 14 differentially expressed genes, with increases in the ratios of MYH7/MHY6, MYL2/MYL7, and TNNI3/TNNI1 in hCSC-supplemented hECT versus controls. For the first time, hCSC supplementation was shown to significantly improve human cardiac tissue contractility in vitro, without evidence of proarrhythmic effects, and was associated with increased expression of markers of cardiac maturation. These findings provide new insights about adult cardiac stem cells as contributors to functional improvement of human myocardium."	"Identification of key pathways and genes in PTEN mutation prostate cancer by bioinformatics analysis. Prostate cancer (Pca) remains one of the leading adult malignancies. PTEN (Phosphatase and Tensin Homolog) mutant is the top common mutated genes in prostate cancer, which makes it a promising biomarker in future individualized treatment. We obtained gene expression data of prostate cancer from TCGA (The Cancer Genome Atlas) database for analysis. We analyzed the DEGs (differentially expressed genes), and used online tools or software to analyze Gene ontology (GO) and the Kyoto Encyclopedia of Genes and Genomes (KEGG), Gene set enrichment analysis (GSEA), Search Tool for the Retrieval of Interacting Genes/Proteins, and Molecular Complex Detection. Latest TCGA data showed PTEN mutation in about 22% patients. 1736 DEGs in total were identified. Results of gene functional enrichment analyses showed that muscle contraction, negative regulation of growth and multiple metabolic progression were significantly enriched. GNG13, ACTN2, POTEE, ACTA1, MYH6, MYH3, MYH7, MYL1, TNNC1 and TNNC2 were the top ten hub genes. Patients with PTEN mutation showed relatively decreased mRNA expression level of PTEN. Survival analysis indicated the risk of disease recurrence in patients with PTEN mutation. Our findings suggested that PTEN mutation in prostate cancer may induce changes in a variety of genes and pathways and affect disease progression, suggesting the significance of PTEN mutation in individualized treatment of prostate cancer."	"Hypertrophic cardiomyopathy MYH7 mutation R723G alters mRNA secondary structure. Point mutation R723G in the MYH7 gene causes hypertrophic cardiomyopathy (HCM). Heterozygous patients with this mutation exhibit a comparable allelic imbalance of the MYH7 gene. On average 67% of the total MYH7 mRNA are derived from the MYH7<sup>R723G</sup>-allele and 33% from the MYH7<sup>WT</sup> allele. Mechanisms underlying mRNA allelic imbalance are largely unknown. We suggest that a different mRNA lifetime of the alleles may cause the allelic drift in R723G patients. A potent regulator of mRNA lifetime is its secondary structure. To test for alterations in the MYH7<sup>R723G</sup> mRNA structure we used selective 2'-hydroxyl acylation analyzed by primer extension (SHAPE) analysis. We show significantly different SHAPE reactivity of wild-type and MYH7<sup>R723G</sup> RNA, which is in accordance with bioinformatically predicted structures. Thus, we provide the first experimental evidence for mRNA secondary structure alterations by the HCM point mutation. We assume that this may result in a prolonged lifetime of MYH7<sup>R723G</sup> mRNA in vivo and subsequently in the determined allelic imbalance."	"Comparative analysis of functional assay evidence use by ClinGen Variant Curation Expert Panels. The 2015 American College of Medical Genetics and Genomics (ACMG) and the Association for Molecular Pathology (AMP) guidelines for clinical sequence variant interpretation state that &quot;well-established&quot; functional studies can be used as evidence in variant classification. These guidelines articulated key attributes of functional data, including that assays should reflect the biological environment and be analytically sound; however, details of how to evaluate these attributes were left to expert judgment. The Clinical Genome Resource (ClinGen) designates Variant Curation Expert Panels (VCEPs) in specific disease areas to make gene-centric specifications to the ACMG/AMP guidelines, including more specific definitions of appropriate functional assays. We set out to evaluate the existing VCEP guidelines for functional assays. We evaluated the functional criteria (PS3/BS3) of six VCEPs (CDH1, Hearing Loss, Inherited Cardiomyopathy-MYH7, PAH, PTEN, RASopathy). We then established criteria for evaluating functional studies based on disease mechanism, general class of assay, and the characteristics of specific assay instances described in the primary literature. Using these criteria, we extensively curated assay instances cited by each VCEP in their pilot variant classification to analyze VCEP recommendations and their use in the interpretation of functional studies. Unsurprisingly, our analysis highlighted the breadth of VCEP-approved assays, reflecting the diversity of disease mechanisms among VCEPs. We also noted substantial variability between VCEPs in the method used to select these assays and in the approach used to specify strength modifications, as well as differences in suggested validation parameters. Importantly, we observed discrepancies between the parameters VCEPs specified as required for approved assay instances and the fulfillment of these requirements in the individual assays cited in pilot variant interpretation. Interpretation of the intricacies of functional assays often requires expert-level knowledge of the gene and disease, and current VCEP recommendations for functional assay evidence are a useful tool to improve the accessibility of functional data by providing a starting point for curators to identify approved functional assays and key metrics. However, our analysis suggests that further guidance is needed to standardize this process and ensure consistency in the application of functional evidence."	"Systematic Review of Genotype-Phenotype Correlations in Noncompaction Cardiomyopathy. Background A genetic cause can be identified in 30% of noncompaction cardiomyopathy patients (NCCM) with clinical features ranging from asymptomatic cardiomyopathy to heart failure with major adverse cardiac events (MACE). Methods and Results To investigate genotype-phenotype correlations, the genotypes and clinical features of genetic NCCM patients were collected from the literature. We compared age at diagnosis, cardiac features and risk for MACE according to mode of inheritance and molecular effects for defects in the most common sarcomere genes and NCCM subtypes. Geno- and phenotypes of 561 NCCM patients from 172 studies showed increased risk in children for congenital heart defects (P&lt;0.001) and MACE (P&lt;0.001). In adult NCCM patients the main causes were single missense mutations in sarcomere genes. Children more frequently had an X-linked or mitochondrial inherited defect (P=0.001) or chromosomal anomalies (P&lt;0.001). MYH7 was involved in 48% of the sarcomere gene mutations. MYH7 and ACTC1 mutations had lower risk for MACE than MYBPC3 and TTN (P=0.001). The NCCM/dilated cardiomyopathy cardiac phenotype was the most frequent subtype (56%; P=0.022) and was associated with an increased risk for MACE and high risk for left ventricular systolic dysfunction (&lt;0.001). In multivariate binary logistic regression analysis MYBPC3, TTN, arrhythmia -, non-sarcomere non-arrhythmia cardiomyopathy-and X-linked genes were genetic predictors for MACE. Conclusions Sarcomere gene mutations were the most common cause in adult patients with lower risk of MACE. Children had multi-systemic disorders with severe outcome, suggesting that the diagnostic and clinical approaches should be adjusted to age at presentation. The observed genotype-phenotype correlations endorsed that DNA diagnostics for NCCM is important for clinical management and counseling of patients."	"[A case of Japanese Laing type distal myopathy with a mutation in MYH7 gene]. A 67-year-old man developed weakness and atrophy of the anterior compartment of the lower leg at age 53 years, followed by weakness of proximal muscles of the upper limb. His father had difficulties in walking in his thirties and died of heart disease at age 45 years. He also had mild respiratory weakness without cardiac involvement. Muscle histology showed spheroid or cytoplasmic bodies-like inclusions with moth-eaten appearance and irregular intramyofibrillar network. Electron microscopy revealed abnormally thickened and disorganized Z lines (Z line streaming) between the surrounding myofibrils and electron-dense globular deposits. These pathological findings apparently suggested myofibrillar myopathy. However, genetic analysis revealed a mutation (c.5566G&gt;A, p.E1856K) in MYH7 gene, that is responsible for Laing-type distal myopathy (LDM). This mutation was previously reported in a study from Austria. This is the first report of LDM in the Japanese population ."	"Establishing a new human hypertrophic cardiomyopathy-specific model using human embryonic stem cells. Symptom of ventricular hypertrophy caused by cardiac troponin T (TNNT2) mutations is mild, while patients often showed high incidence of sudden cardiac death. The 92nd arginine to glutamine mutation (R92Q) of cTnT was one of the mutant hotspots in hypertrophic cardiomyopathy (HCM). However, there are no such human disease models yet. To solve this problem, we generated TNNT2 R92Q mutant hESC cell lines (heterozygote or homozygote) using TALEN mediated homologous recombination in this study. After directed cardiac differentiation, we found a relative larger cell size in both heterozygous and homozygous TNNT2 R92Q hESC-cardiomyocytes. Expression of atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and sarcoplasmic reticulum Ca<sup>2+</sup>-ATPase2a (SERCA2a) were downregulated, while myocyte specific enhancer factor 2c (MEF2c) and the ratio of beta myosin to alpha myosin heavy chain (MYH7/MYH6) were increased in heterozygous TNNT2 R92Q hESC-cardiomyocytes. TNNT2 R92Q mutant cardiomyocytes exhibited efficient responses to heart-related pharmaceutical agents. We also found TNNT2 R92Q heterozygous mutant cardiomyocytes showed increased calcium sensitivity and contractility. Further, engineered heart tissues (EHTs) prepared by combining rat decellularized heart extracellular matrices with heterozygous R92Q mutant cardiomyocytes showed similar drug responses as to HCM patients and increased sensitivity to caspofungin-induced cardiotoxicity. Using RNA-sequencing of TNNT2 R92Q heterozygous mutant cardiomyocytes, we found dysregulation of calcium might participated in the early development of hypertrophy. Our hESC-derived TNNT2 R92Q mutant cardiomyocytes and EHTs are good in vitro human disease models for future disease studies and drug screening."	"MYH7 Gene-Related Mutation p.V878L Identified in a Chinese Family with Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is one of the most common inherited cardiovascular diseases and possesses a high risk for sudden cardiac death. Although mutations in more than 20 genes have been reported to be associated with HCM thus far, the genetic backgrounds of most HCM patients are not fully understood. We performed a genetic analysis in a Chinese family that presented with HCM using next-generation sequencing (NGS). Clinical data, family histories, and blood samples were collected from the proband and family members. Five patients showed typical clinical symptoms of HCM. One subject was the victim of sudden cardiac death. By NGS, we determined that these subjects with HCM symptoms carried a missense heterozygous genetic mutation c.2632C&gt;A (p.V878L) in the myosin heavy chain 7 (MYH7) gene with an autosomal dominant pattern of inheritance. Individuals without this mutation showed no symptoms or cardiac structural abnormalities related to HCM. Bioinformatics evaluation predicted this mutant as &quot;damaging&quot; and &quot;disease causing&quot;. Additionally, sequence alignment showed that this mutant is located in an evolutionarily conserved region of MYH7 in multiple species. Our results describe a potentially pathogenic mutation associated with HCM, which may extend the spectrum of HCM phenotypes related to MYH7 gene mutations."	"Omecamtiv mecarbil lowers the contractile deficit in a mouse model of nebulin-based nemaline myopathy. Nemaline myopathy (NEM) is a congenital neuromuscular disorder primarily caused by nebulin gene (NEB) mutations. NEM is characterized by muscle weakness for which currently no treatments exist. In NEM patients a predominance of type I fibers has been found. Thus, therapeutic options targeting type I fibers could be highly beneficial for NEM patients. Because type I muscle fibers express the same myosin isoform as cardiac muscle (Myh7), the effect of omecamtiv mecarbil (OM), a small molecule activator of Myh7, was studied in a nebulin-based NEM mouse model (Neb cKO). Skinned single fibers were activated by exogenous calcium and force was measured at a wide range of calcium concentrations. Maximal specific force of type I fibers was much less in fibers from Neb cKO animals and calcium sensitivity of permeabilized single fibers was reduced (pCa50 6.12 ±0.08 (cKO) vs 6.36 ±0.08 (CON)). OM increased the calcium sensitivity of type I single muscle fibers. The greatest effect occurred in type I fibers from Neb cKO muscle where OM restored the calcium sensitivity to that of the control type I fibers. Forces at submaximal activation levels (pCa 6.0-6.5) were significantly increased in Neb cKO fibers (~50%) but remained below that of control fibers. OM also increased isometric force and power during isotonic shortening of intact whole soleus muscle of Neb cKO mice, with the largest effects at physiological stimulation frequencies. We conclude that OM has the potential to improve the quality of life of NEM patients by increasing the force of type I fibers at submaximal activation levels."	"Disrupted expression of genes essential for skeletal muscle fibre integrity and energy metabolism in Vitamin D deficient rats. Vitamin D, a secosteroid that regulates mineral homeostasis via its actions in intestine, bone, kidneys and parathyroid glands, has many other target tissues, including skeletal muscle. In the present study, we used rats to examine if diet-induced vitamin D deficiency or insufficiency altered protein synthesis in muscle via the mTOR pathway, and impaired skeletal muscle quality by changing expression of genes needed for its function. Vitamin D deficiency resulted in reduced levels of phosphorylated mTOR, and suppressed mTOR-dependent phosphorylation of 4E-BP1 and p70-S6K, implying a decrease in activity of the protein synthesis machinery. These changes were coupled with up regulation of genes that are negative regulators of muscle growth (Fbxo32 &amp; Trim63), leading to a net loss of skeletal muscle mass. Vitamin D deficiency or insufficiency also led to a decrease in expression of both myosin and actin-associated proteins (Myh1, Myh2, Myh7, Tnnc1&amp; Tnnt1), which are essential for generation of the mechanical force needed for muscle contraction. We also detected a decrease in expression of glycolytic and oxidative enzyme genes (Hk2, Pfkm, Cs, Pdk4 &amp; βHad) and transcriptional coactivator genes (Ppargc-1α &amp; Ppargc-1β) which indicate a low oxidative capacity of skeletal muscle in the vitamin D deficient state. Furthermore, decreased citrate synthase activity corroborates a decrease in mitochondrial density and aerobic capacity of the muscle. In conclusion, our study demonstrates that chronic vitamin D deficiency or insufficiency reduced the size of skeletal muscle fibres, altered their composition, and decreased their oxidative potential. Most of the changes observed were reversible, either partially or completely, by restoring vitamin D to the diet of the deficient rats."	"YQWY decoction reverses cardiac hypertrophy induced by TAC through inhibiting GATA4 phosphorylation and MAPKs. To investigate the effect of Yiqi Wenyang (YQWY) decoction on reversing cardiac hypertrophy induced by the transverse aortic constriction (TAC). Wistar rats aged 7-8 weeks were subjected to TAC surgery and then randomly divided into 4 groups (n = 5/group): Sham group, TAC group, low-dose group and high dose group. After 16-week intragastric administration of YQWY decoction, the effect of YQWY decoction on alleviating cardiomyocyte hypertrophy was examined by transthoracic echocardiography (TTE), hematoxylin/eosin (HE), wheat germ agglutinin (WGA) staining, enzyme linked immunosorbent assay (ELISA), Western blot (WB), immunohistochemistry (IHC) and immunofluorescence (IF), respectively. The results showed significant differences in left ventricle volume-diastole/systole (LV Vol d/s), N-terminal pro-B-type brain natriuretic peptide (NT-proBNP) (P &lt; 0.01), Ejection Fraction (EF), LV mass and fractional shortening (FS) (P &lt; 0.05) between YQWY-treated group and TAC group. HE and WGA staining showed that treatment with YQWY decoction dramatically prevented TAC-induced cardiomycyte hypertrophy. Moreover, the results of WB, IHC and IF indicated that administration of YQWY could suppress the expressions of cardiac hypertrophic markers, which included the atrial natriuretic peptide (ANP), BNP and myosin heavy chain 7 (MYH7) (P &lt; 0.05) and inhibit phosphorylation of GATA binding protein 4 (P-GATA4) (P &lt; 0.05), phosphorylation of extracellular signal-regulated kinase (P-ERK) (P &lt; 0.05), phosphorylation of P38 mitogen activated protein kinase (P-P38) (P &lt; 0.05) and phosphorylation of c-Jun N-terminal kinase (P-JNK) (P &lt; 0.05). Thus, we concluded that YQWY decoction suppressed cardiomyocyte hypertrophy and reversed the impaired heart function, and the curative effects of YQWY decoction were associated with the decreased phosphorylation of GATA4 and mitogen activated protein kinases (MAPKs), as well as the reduced expression of the downstream targets of GATA4, including ANP, BNP, and MYH7."	"Gene and protein expression of myosin heavy chain in Nellore cattle comparing growth or meat tenderness traits. The objective was to investigate gene and protein expression of myosin heavy chain (MyHC) in Nellore cattle slaughtered at different weights (BW) or degrees of meat tenderness. Ninety animals with initial BW 370 ± 37 kg, 24 months of age, were slaughtered after 95 days on feed. We evaluated shear force (SF), myofibrillar fragmentation index, ribeye area, backfat thickness, marbling, color, and cooking losses. Subsequently, 24 animals were selected and divided into four contrasting groups, in which light (BW = 504.58 ± 32.36 kg) versus heavy animals (BW = 604.83 ± 42.97 kg) and animals with tender (SF = 3.88 ± 0.57 kg) versus tough meat (SF = 7.95 ± 1.04 kg) were compared. The MYH7, MYH2 and MYH1 genes were analyzed by real-time PCR. The MyHC isoforms (MyHC-I, MyHC-IIa, and MyHC-IIx) were quantified by SDS-PAGE electrophoresis. We found lower expression of MYH2 and MYH1 genes in heavy compared to light animals and a higher amount of MyHC-I isoform in the tough meat group compared to the tender meat group. Protein expression of MyHC-IIa was higher in the tender meat group. A negative correlation was found of this protein and SF (tenderness), suggesting MyHC-IIa as a biomarker of meat quality."	"Effects of the loss of estrogen on the heart's hypertrophic response to chronic left ventricle volume overload in rats. Aortic valve regurgitation (AR) can result in heart failure from chronic overloading of the left ventricle (LV). Little is known of the role of estrogens in the LV responses to this condition. The aim of the study was to compare LV remodeling in female rats with severe AR in absence of estrogens by ovariectomy (Ovx). In a first study, we investigated over 6 months the development of hypertrophy in four groups of female Wistar rats: AR or sham-operated (sham) and Ovx or not. Ovx reduced normal heart growth. As expected, volume overload (VO) from AR resulted in significant LV dilation (42% and 32% increase LV end-diastolic diameter in intact and Ovx groups vs. their respective sham group; p &lt; 0.0001). LV weight was also significantly and similarly increased in both AR groups (non-Ovx and Ovx). Increase in stroke volume or cardiac output and loss of systolic function were similar between AR intact and AR Ovx groups compared to sham. We then investigated what were the effects of 17beta-estradiol (E2; 0.03 mg/kg/day) treatment on the parameters studied in Ovx rats. Ovx reduced uterus weight by 85% and E2 treatment restored up to 65% of the normal weight. E2 also helped normalize heart size to normal values. On the other hand, it did not influence the extent of the hypertrophic response to AR. In fact, E2 treatment further reduced LV hypertrophy in AR Ovx rats (41% over Sham Ovx + E2). Systolic and diastolic functions parameters in AR Ovx + E2 were similar to intact AR animals. Ovx in sham rats had a significant effect on the LV gene expression of several hypertrophy markers. Atrial natriuretic peptide (Nppa) gene expression was reduced by Ovx in sham-operated females whereas brain natriuretic peptide (Nppb) expression was increased. Alpha (Myh6) and beta (Myh7) myosin heavy chain genes were also significantly modulated by Ovx in sham females. In AR rats, LV expression of both Nppa and Nppb genes were increased as expected. Ovx further increased it of AR rats for Nppa and did the opposite for Nppb. Interestingly, AR in Ovx rats had only minimal effects on Myh6 and Myh7 genes whereas they were modulated as expected for intact AR animals. In summary, loss of estrogens by Ovx in AR rats was not accompanied by a worsening of hypertrophy or cardiac function. Normal cardiac growth was reduced by Ovx in sham females but not the hypertrophic response to AR. On the other hand, Ovx had important effects on LV gene expression both in sham and AR female rats."	"Distal myopathy induced arrhythmogenic right ventricular cardiomyopathy in a pedigree carrying novel DSG2 null variant. Arrhythmogenic right ventricular cardiomyopathy (ARVC) is a rare cardiac disease predominantly caused by variants in desmosome genes. Variants in human Desmoglein-2 (DSG2) gene can cause ARVC with incomplete penetrance. However, it remains unknown whether ARVC would penetrate by distal myopathy. We performed targeted next-generation sequencing using a cardiomyopathy/ionchannelopathy panel in a Chinese ARVC pedigree. Plasmids of DSG2 were constructed, and pathogenicity of the DSG2 variant was investigated by real-time PCR, western blots, Immunofluorescence, and electron microscope. We identified a novel nonsense variant in DSG2 (c.710T &gt; A, p.Leu237Ter) and a reported pathogenic missense variant of distal myopathy in MYH7 (c. 1322C &gt; T, p.Thr441Met) in the proband of an ARVC pedigree. The functional analyses suggested that the nonsense variant could affect the expression and cell location of DSG2, and the number and shape of desmosomes were affected as well, indicating that the variant was implicated in the pathogenesis of ARVC. We found only patients carrying the distal myopathy pathogenic variant would manifested early-onset severe ARVC phenotype, which suggested that MYH7-p.Thr441Met variant could induced the onset of ARVC in the DSG2-p.Leu237Ter variant carriers. Our study identified a novel null variant in DSG2 gene (c.710T &gt; A, p.Leu237Ter) in an ARVC pedigree with incomplete penetrance. Only patients who carried a distal myopathy associated variant in MYH7 (c. 1322C &gt; T, p.Thr441Met) would induce the onset of ARVC with early-onset and severe symptoms."	"Genetic analysis of monoallelic double MYH7 mutations responsible for familial hypertrophic cardiomyopathy. β‑myosin heavy chain (MHC) 7 (MYH7) is the dominant pathogenic gene that harbors mutations in 20‑30% of cases of familial hypertrophic cardiomyopathy (HCM). The aim of this study was to elucidate the distribution and type of genetic variations among Chinese HCM families. From 2013 to 2017, the clinical data of 387 HCM probands and their families were collected. Targeted exome‑sequencing technology was used in all probands, and the selected mutations were subsequently verified by Sanger sequencing in the probands, family members and 300 healthy ethnic‑matched volunteers. Three‑dimensional models were created using Swiss‑PdbViewer 4.1, and further genetic analyses were performed to determine sequence conservation and frequency of the mutations. Among the 5 probands with double MYH7 mutations, 4 carried compound heterozygous mutations, and 1 carried monoallelic double mutations (A934V and E1387K). Four family members of the proband with monoallelic double mutations had the same mutation as the proband. Echocardiography and 12‑lead electrocardiography revealed abnormalities in the proband and 3 of the 4 carriers. The probands with compound heterozygous mutation had a higher left ventricular mass as revealed by echocardiography and higher QRS, SV1 and RV5+SV1 amplitudes than those with monoallelic double mutations (P&lt;0.05). Simulation of the 3D structure of mutated proteins showed that the replacement of alanine by valine affected the flexibility of the MHC neck domain in case of the A934V mutation, whereas reactivity of the MHC rod domain was affected in the case of the E1387K mutation. In conclusion, we identified several novel HCM‑causing MYH7 mutations. More importantly, this is the first study to report a rare HCM family with monoallelic double mutations."	"Comparative molecular analysis of endurance exercise in vivo with electrically stimulated in vitro myotube contraction. Exercise has positive effects on health and improves a variety of disease conditions. An in vitro model of exercise has been developed to better understand its molecular mechanisms. While various conditions have been used to mimic in vivo exercise, no specific conditions have matched a specific type of in vivo exercise. Here, we screened various electrical pulse stimulation (EPS) conditions and compared the molecular events under each condition in myotube culture with that obtained under voluntary wheel running (VWR), a mild endurance exercise, in mice. Both EPS and VWR upregulated the mRNA levels of genes involved in the slow-type twitch (Myh7 and Myh2) and myogenesis (Myod and Myog) and increased the protein expression of peroxisome proliferator-activated receptor-γ coactivator-1α, which is involved in mitochondrial biogenesis. These changes were accompanied by activation of p38 and AMPK. However, neither condition induced the expression of muscle-specific E3 ligases such as MAFbx and MuRF1. Both EPS and VWR consistently induced antioxidant genes such as Sod3 and Gpx4 but did not cause similar changes in the expression levels of the calcium channel/pump-related genes Ryr and Serca. Furthermore, both EPS and VWR reduced glycogen levels but not lactate levels as assessed in post-EPS culture medium and post-VWR serum, respectively. Thus we identified an in vitro EPS condition that effectively mimics VWR in mice, which can facilitate further studies of the detailed molecular mechanisms of endurance exercise in the absence of interference from multiple tissues and organs.NEW &amp; NOTEWORTHY This study establishes an optimal condition for electrical pulse stimulation (EPS) in myotubes that shows a similar molecular signature as voluntary wheel running. The specific EPS condition 1) upregulates the mRNA of slow-twitch muscle components and myogenic transcription factors, 2) induces antioxidant genes without any muscle damage, and 3) promotes peroxisome proliferator-activated receptor-γ coactivator-1α and its upstream regulators involved in mitochondrial biogenesis."	"A functional regulatory variant of MYH3 influences muscle fiber-type composition and intramuscular fat content in pigs. Muscle development and lipid accumulation in muscle critically affect meat quality of livestock. However, the genetic factors underlying myofiber-type specification and intramuscular fat (IMF) accumulation remain to be elucidated. Using two independent intercrosses between Western commercial breeds and Korean native pigs (KNPs) and a joint linkage-linkage disequilibrium analysis, we identified a 488.1-kb region on porcine chromosome 12 that affects both reddish meat color (a*) and IMF. In this critical region, only the MYH3 gene, encoding myosin heavy chain 3, was found to be preferentially overexpressed in the skeletal muscle of KNPs. Subsequently, MYH3-transgenic mice demonstrated that this gene controls both myofiber-type specification and adipogenesis in skeletal muscle. We discovered a structural variant in the promotor/regulatory region of MYH3 for which Q allele carriers exhibited significantly higher values of a* and IMF than q allele carriers. Furthermore, chromatin immunoprecipitation and cotransfection assays showed that the structural variant in the 5'-flanking region of MYH3 abrogated the binding of the myogenic regulatory factors (MYF5, MYOD, MYOG, and MRF4). The allele distribution of MYH3 among pig populations worldwide indicated that the MYH3 Q allele is of Asian origin and likely predates domestication. In conclusion, we identified a functional regulatory sequence variant in porcine MYH3 that provides novel insights into the genetic basis of the regulation of myofiber type ratios and associated changes in IMF in pigs. The MYH3 variant can play an important role in improving pork quality in current breeding programs."	"Carvacrol Attenuates Diabetic Cardiomyopathy by Modulating the PI3K/AKT/GLUT4 Pathway in Diabetic Mice. Background: Diabetic cardiomyopathy (DCM), a common complication of diabetes mellitus, eventually leads to heart failure. Carvacrol is a food additive with diverse bioactivities. We aimed to study the protective effects and mechanisms of carvacrol in DCM. Methods: We used a streptozotocin-induced and db/db mouse model of types 1 and 2 diabetes mellitus (T1DM and T2DM), respectively. Both study groups received daily intraperitoneal injections of carvacrol for 6 weeks. Cardiac remodeling was evaluated by histological analysis. We determined gene expression of cardiac remodeling markers (Nppa and Myh7) by quantitative real-time PCR and cardiac function by echocardiography. Changes of PI3K/AKT signaling were determined with Western blotting. GLUT4 translocation was evaluated by Western blotting and immunofluorescence staining. Results: Compared with control mice, both T1DM and T2DM mice showed cardiac remodeling and left ventricular dysfunction. Carvacrol significantly reduced blood glucose levels and suppressed cardiac remodeling in mice with T1DM and T2DM. At the end of the treatment period, both T1DM and T2DM mice showed lesser cardiac hypertrophy, Nppa and Myh7 mRNA expressions, and cardiac fibrosis, compared to mice administered only the vehicle. Moreover, carvacrol significantly restored PI3K/AKT signaling, which was impaired in mice with T1DM and T2DM. Carvacrol increased levels of phosphorylated PI3K, PDK1, AKT, and AS160 and inhibited PTEN phosphorylation in mice with T1DM and T2DM. Carvacrol treatment promoted GLUT4 membrane translocation in mice with T1DM and T2DM. Metformin was used as the positive drug control in T2DM mice, and carvacrol showed comparable effects to that of metformin on cardiac remodeling and modulation of signaling pathways. Conclusion: Carvacrol protected against DCM in mice with T1DM and T2DM by restoring PI3K/AKT signaling-mediated GLUT4 membrane translocation and is a potential treatment of DCM."	"Targeted panel sequencing in pediatric primary cardiomyopathy supports a critical role of TNNI3. The underlying genetic mechanisms and early pathological events of children with primary cardiomyopathy (CMP) are insufficiently characterized. In this study, we aimed to characterize the mutational spectrum of primary CMP in a large cohort of patients ≤18 years referred to a tertiary center. Eighty unrelated index patients with pediatric primary CMP underwent genetic testing with a panel-based next-generation sequencing approach of 89 genes. At least one pathogenic or probably pathogenic variant was identified in 30/80 (38%) index patients. In all CMP subgroups, patients carried most frequently variants of interest in sarcomere genes suggesting them as a major contributor in pediatric primary CMP. In MYH7, MYBPC3, and TNNI3, we identified 18 pathogenic/probably pathogenic variants (MYH7 n = 7, MYBPC3 n = 6, TNNI3 n = 5, including one homozygous (TNNI3 c.24+2T&gt;A) truncating variant. Protein and transcript level analysis on heart biopsies from individuals with homozygous mutation of TNNI3 revealed that the TNNI3 protein is absent and associated with upregulation of the fetal isoform TNNI1. The present study further supports the clinical importance of sarcomeric mutation-not only in adult-but also in pediatric primary CMP. TNNI3 is the third most important disease gene in this cohort and complete loss of TNNI3 leads to severe pediatric CMP."	"[Effect of electroacupuncture on degradation of myosin heavy chain of gastrocnemius muscle in diabetes rats]. To explore the effect of electroacupuncture(EA)on the expression of muscle-specific ring finger protein 1(MuRF1/Trim63),F-box only protein 32(Fbxo32),myosin heavy chain-IIa(Myh2),myosin heavy chain-IIb(Myh4)and myosin heavy chain-I(Myh7)in diabetes rats. Thirty-six male Wistar rats were equally randomized into control, model and EA groups. The diabetes model was established by intraperitoneal injection of 0.1% Streptozocin (STZ) solution (50 mg/kg). After that, EA (2 Hz, 1 mA) was applied to bilateral &quot;Zusanli&quot; (ST36), &quot;Yinlingquan&quot; (SP9) and &quot;Shenshu&quot; (BL23) for 10 min, once a day, 6 times a week for 2 weeks. The fasting blood glucose (FBG) and fasting serum insulin (FINS) contents were assayed by using ELISA, and the homeostasis model assessment of insulin resistance (HOMA-IR) was calculated. The body weight, and wet weight of bilateral gastrocnemius muscles were measured. The cross-sectional area (CSA) of the gastrocnemius muscle was measured after H.E. stai-ning. The expression of MuRF1, Fbxo32, Myh2, Myh4 and Myh7 mRNAs in the gastrocnemius tissue was tested using quantitative real time-PCR. Compared with the control group, the FBG and HOMA-IR were significantly higher (P&lt;0.05), and the FINS, body weight were significantly lower (P&lt;0.05) after intravenous injection of STZ for 1, 2, 3, 4, 5 weeks respectively. Following EA treatment and compared with the model group, the FBG and HOMA-IR were significantly down-regulated (P&lt;0.05), and the FINS and body weight were considerably increased (P&lt;0.05). Following modeling and compared with the control group, the wet weight of gastrocnemius muscle, CSA, and expression levels of Myh2, Myh4 and Myh7 mRNAs were obviously decreased, and the expression of MuRF1 and Fbxo32 mRNA was obviously increased in the model group (P&lt;0.05). After EA treatment, the gastrocnemius muscle wet weight, CSA, expression levels of Myh2, Myh4 and Myh7 mRNA were significantly up-regulated (P&lt;0.05), and the expression levels of MuRF1 and Fbxo32 mRNA were markedly down-regulated in comparison with those of the model group (P&lt;0.05). EA treatment can delay the atrophy of gastrocnemius muscle (skeletal muscle) in diabetes rats possibly by improving the degradation of myosin heavy chain via regulating the expression of muscular MuRF1, Fbxo32, Myh2, Myh4 and Myh7 mRNAs."	"Clinical and ECG variables to predict the outcome of genetic testing in hypertrophic cardiomyopathy. Knowledge on the influence of specific genotypes on the phenotypic expression of hypertrophic cardiomyopathy (HCM) is emerging. The objective of this study was to evaluate the genotype-phenotype relation in HCM patients and to construct a score to predict the genetic yield based to improve counseling. Unrelated HCM patients who underwent genetic testing were included in the analysis. Multivariate logistic regression was performed to identify variables that predict a positive genetic test. A weighted score was constructed based on the odds ratios. In total, 378 HCM patients were included of whom 141 carried a mutation (global yield 37%), 181 were mutation negative and 56 only carried a variant of unknown significance. We identified age at diagnosis &lt;45 years, familial HCM, familial sudden death, arrhythmic syncope, maximal wall thickness ≥20 mm, asymmetrical hypertrophy and the absence of negative T waves in the lateral ECG leads as significant predictors of a positive genetic test. When we included these values in a risk score we found very high correlation between the score and the observed genetic yield (Pearson r = 0.98). MYBPC3 mutation carriers more frequently suffered sudden cardiac death compared to troponin complex mutations carriers (p = 0.01) and a similar trend was observed compared to MYH7 mutation carriers (p = 0.08) and mutation negative patients (p = 0.11). To conclude, a simple score system based on clinical variables can predict the genetic yield in HCM index patients, aiding in counseling HCM patients. MYBPC3 mutation carriers had a worse outcome regarding sudden cardiac death."	"Gestational Exposure to Bisphenol A and Bisphenol S Leads to Fetal Skeletal Muscle Hypertrophy Independent of Sex. Gestational exposure to bisphenol A (BPA) can lead to offspring insulin resistance. However, despite the role that the skeletal muscle plays in glucose homeostasis, it remains unknown whether gestational exposure to BPA, or its analog bisphenol S (BPS), impairs skeletal muscle development. We hypothesized that gestational exposure to BPA or BPS will impair fetal muscle development and lead to muscle-specific insulin resistance. To test this, pregnant sheep (n = 7-8/group) were exposed to BPA or BPS from gestational day (GD) 30 to 100. At GD120, fetal skeletal muscle was harvested to evaluate fiber size, fiber type, and gene and protein expression related to myogenesis, fiber size, fiber type, and inflammation. Fetal primary myoblasts were isolated to evaluate proliferation and differentiation. In fetal skeletal muscle, myofibers were larger in BPA and BPS groups in both females and males. BPA females had higher MYH1 (reflective of type-IIX fast glycolytic fibers), whereas BPS females had higher MYH2 and MYH7, and higher myogenic regulatory factors (Myf5, MyoG, MyoD, and MRF4) mRNA expression. No differences were observed in males. Myoblast proliferation was not altered in gestationally BPA- or BPS-exposed myoblasts, but upon differentiation, area and diameter of myotubes were larger independent of sex. Females had larger myofibers and myotubes than males in all treatment groups. In conclusion, gestational exposure to BPA or BPS does not result in insulin resistance in fetal myoblasts but leads to fetal fiber hypertrophy in skeletal muscle independent of sex and alters fiber type distribution in a sex-specific manner."	"Isorhynchophylline enhances Nrf2 and inhibits MAPK pathway in cardiac hypertrophy. Isorhynchophylline (IRN) is one of the major tetracyclic oxindole alkaloids found in Uncaria rhynchophylla. Studies have found that IRN has diverse biological activities including antioxidant, anti-apoptosis, and neuroprotection. However, little is known about the effect of IRN on the development of cardiac hypertrophy. In this study, we investigated the change of the cell surface area and nascent protein synthesis of cultured H9c2 cardiomyocytes on exposure to phenylephrine (PE) plus IRN, and thus confirmed that IRN ameliorated cardiomyocyte hypertrophy induced by PE in vitro. Meanwhile, it turns out that IRN is also effective in neonatal rat ventricular myocytes (NRVMs) stimulated with angiotensin II (AngII). We also showed that IRN prevented cardiac dysfunction in mice with pressure overload due to transverse aortic constriction (TAC) and attenuated cardiac hypertrophy and fibrosis. IRN treatment improved the cardiac function assessed by echocardiographic parameters fractional shortening (FS) as well as suppressed the cardiac hypertrophy phenotypes, such as the increasing of ventricular mass/body weight and myocyte cross-sectional area. RT-PCR analysis showed that IRN treatment also alleviated the expression of fetal genes of ANP, BNP, Myh7, and the correlated fibrosis genes including TGF-β1, collagen I, collagen III, and CTGF in vivo. Meanwhile, IRN had anti-oxidative effects on cardiac remodeling with suppressed 4-HNE and MDA. Western blot analysis showed that the Nrf2 nuclear translocation and MAPK pathway were involved in the potential mechanisms of IRN on cardiac hypertrophy inhibition. The results of our study provide further evidence that IRN is a promising drug for the treatment of cardiac hypertrophy."	"Multi-Staged Regulation of Lipid Signaling Mediators during Myogenesis by COX-1/2 Pathways. Cyclooxygenases (COXs), including COX-1 and -2, are enzymes essential for lipid mediator (LMs) syntheses from arachidonic acid (AA), such as prostaglandins (PGs). Furthermore, COXs could interplay with other enzymes such as lipoxygenases (LOXs) and cytochrome P450s (CYPs) to regulate the signaling of LMs. In this study, to comprehensively analyze the function of COX-1 and -2 in regulating the signaling of bioactive LMs in skeletal muscle, mouse primary myoblasts and C2C12 cells were transfected with specific COX-1 and -2 siRNAs, followed by targeted lipidomic analysis and customized quantitative PCR gene array analysis. Knocking down COXs, particularly COX-1, significantly reduced the release of PGs from muscle cells, especially PGE2 and PGF2α, as well as oleoylethanolamide (OEA) and arachidonoylethanolamine (AEA). Moreover, COXs could interplay with LOXs to regulate the signaling of hydroxyeicosatetraenoic acids (HETEs). The changes in LMs are associated with the expression of genes, such as Itrp1 (calcium signaling) and Myh7 (myogenic differentiation), in skeletal muscle. In conclusion, both COX-1 and -2 contribute to LMs production during myogenesis in vitro, and COXs could interact with LOXs during this process. These interactions and the fine-tuning of the levels of these LMs are most likely important for skeletal muscle myogenesis, and potentially, muscle repair and regeneration."	"Extracellular Matrix From Hypertrophic Myocardium Provokes Impaired Twitch Dynamics in Healthy Cardiomyocytes. Hypertrophic cardiomyopathy (HCM) is often caused by single sarcomeric gene mutations that affect muscle contraction. Pharmacological correction of mutation effects prevents but does not reverse disease in mouse models. Suspecting that diseased extracellular matrix is to blame, we obtained myocardium from a miniature swine model of HCM, decellularized thin slices of the tissue, and re-seeded them with healthy human induced pluripotent stem cell-derived cardiomyocytes. Compared with cardiomyocytes grown on healthy extracellular matrix, those grown on the diseased matrix exhibited prolonged contractions and poor relaxation. This outcome suggests that extracellular matrix abnormalities must be addressed in therapies targeting established HCM."	"Effect of landiolol on sex-related transcriptomic changes in the myocardium during sepsis. The aims of this study are to better understand phenotypic differences between male and female rats during sepsis, to characterise the contribution of the beta1-adrenergic blocker landiolol to septic cardiomyopathy and to determine why landiolol induces divergent effects in males and females. The myocardial transcriptional profiles in male and female Wistar rats were assessed after the induction of sepsis by cecal ligation and puncture and addition of landiolol. Our results showed major differences in the biological processes activated during sepsis in male and female rats. In particular, a significant decrease in processes related to cell organisation, contractile function, ionic transport and phosphoinositide-3-kinase/AKT (PI3K/AKT) signalling was observed only in males. The transcript of ATPase sarcoplasmic/endoplasmic reticulum Ca<sup>2+</sup> transporting 3 (SERCA3) was sex-differently regulated. In males, landiolol reversed several signalling pathways dysregulated during sepsis. The expression level of genes encoding tubulin alpha 8 (TUBA8) and myosin heavy chain 7B (MYH7) contractile proteins, phosphatase 2 catalytic subunit alpha (PPP2CA), G protein-coupled receptor kinase 5 (GRK5) and A-kinase anchoring protein 6 (AKAP6) returned to their basal levels. In contrast, in females, landiolol had limited effects. In males, landiolol reversed the expression of many genes that were deregulated in sepsis. Conversely, sepsis-induced deregulation of gene expression was less pronounced in females than in males, and was maintained in the landiolol-treated females. These findings highlight important sex-related differences and confirm previous observations on the important benefit of landiolol intake on cardiac function in male rats."	"Sex differences in the response to angiotensin II receptor blockade in a rat model of eccentric cardiac hypertrophy. Background. Men and women differ in their susceptibility to cardiovascular disease, though the underlying mechanism has remained elusive. Heart disease symptoms, evolution and response to treatment are often sex-specific. This has been studied in animal models of hypertension or myocardial infarction in the past but has received less attention in the context of heart valve regurgitation. The aim of the study was to evaluate the development of cardiac hypertrophy (CH) in response to left ventricle (LV) volume overload (VO) caused by chronic aortic valve regurgitation (AR) in male and female rats treated or not with angiotensin II receptor blocker (ARB), valsartan. We studied eight groups of Wistar rats: male or female, AR or sham-operated (sham) and treated or not with valsartan (30 mg/kg/day) for 9 weeks starting one week before AR surgical induction. Results. As expected, VO from AR resulted for both male and female rats in significant LV dilation (39% vs. 40% end-diastolic LV diameter increase, respectively; p &lt; 0.0001) and CH (53% vs. 64% heart weight increase, respectively; p &lt; 0.0001) compared to sham. Sex differences were observed in LV wall thickening in response to VO. In untreated AR males, relative LV wall thickness (a ratio of wall thickness to end-diastolic diameter) was reduced compared to sham, whereas this ratio in females remained unchanged. ARB treatment did not prevent LV dilation in both male and female animals but reversed LV wall thickening in females. Systolic and diastolic functions in AR animals were altered similarly for both sexes. ARB treatment did not improve systolic function but helped normalizing diastolic parameters such as left atrial mass and E wave slope in female AR rats. Increased LV gene expression of Anp and Bnp was normalized by ARB treatment in AR females but not in males. Other hypertrophy gene markers (Fos, Trpc6, Klf15, Myh6 and Myh7) were not modulated by ARB treatment. The same was true for genes related to LV extracellular matrix remodeling (Col1a1, Col3a1, Fn1, Mmp2, Timp1 and Lox). In summary, ARB treatment of rats with severe AR blocked the female-specific hypertrophic response characterized by LV chamber wall thickening. LV dilation, on the other hand, was not significantly decreased by ARB treatment. This also indicates that activation of the angiotensin II receptor is probably more involved in the early steps of LV remodeling caused by AR in females than in males."	"Could two-dimensional radial strain be considered as a novel tool to identify pre-clinical hypertrophic cardiomyopathy mutation carriers? Treatment of overt form of hypertrophic cardiomyopathy (HCM) is often unsuccessful. Efforts are focused on a possible early identification in order to prevent or delaying the development of hypertrophy. Our aim was to find an echocardiographic marker able to distinguish mutation carriers without left ventricular hypertrophy (LVH) from healthy subjects. We evaluated 28 patients, members of eight families. Three types of mutation were recognized: MYBPC3 (five families), MYH7 (two families) and TNNT2 (one family). According to genetic (G) and phenotypic (Ph) features, patients were divided in three groups: Group A (10 patients), mutation carriers with LVH (G+/Ph+); Group B (9 patients), mutation carriers without LVH (G+/Ph-); Group C (9 patients), healthy subjects (G-/Ph-). Echocardiography examination was performed acquiring standard 2D, DTI and 2D-strain imaging. Global longitudinal strain (GLS) and global radial strain (GRS) at basal and mid-level were measured. GRS was significantly different between group B and C at basal level (32.18% ± 9.6 vs. 44.59% ± 12.67 respectively; p-value &lt; 0.0001). In basal posterior and basal inferior segments this difference was particularly evident. ROC curves showed for both the involved segments good AUCs (0.931 and 0.861 for basal posterior and inferior GRS respectively) with the best predictive cut-off for basal posterior GRS at 43.65%, while it was 38.4% for basal inferior GRS. Conversely, GLS values were similar in the three group. 2D longitudinal strain is a valid technique to study HCM. Radial strain and particularly basal posterior and inferior segmental reduction could be able to identify mutation carriers in a pre-clinical phase of disease."	"Congenital myopathies in the adult neuromuscular clinic: Diagnostic challenges and pitfalls. To investigate the spectrum of undiagnosed congenital myopathies (CMs) in adults presenting to our neuromuscular clinic and to identify the pitfalls responsible for diagnostic delays. We conducted a retrospective review of patients diagnosed with CM in adulthood in our neuromuscular clinic between 2008 and 2018. Patients with an established diagnosis of CM before age 18 years were excluded. We identified 26 patients with adult-onset CM and 18 patients with pediatric-onset CM who were only diagnosed in adulthood. Among patients with adult onset, the median age at onset was 47 years, and the causative genes were RYR1 (11 families), MYH7 (3 families) and ACTA1 (2 families), and SELENON, MYH2, DNM2, and CACNA1S (1 family each). Of 33 patients who underwent muscle biopsy, only 18 demonstrated histologic abnormalities characteristic of CM. Before their diagnosis of CM, 23 patients had received other diagnoses, most commonly non-neurologic disorders. The main causes of diagnostic delays were mildness of the symptoms delaying neurologic evaluation and attribution of the symptoms to coexisting comorbidities, particularly among pediatric-onset patients. CMs in adulthood represent a diagnostic challenge, as they may lack the clinical and myopathologic features classically associated with CM. Our findings underscore the need for a revision of the terminology and current classification of these disorders."	"Presence of Hypertrophic Cardiomyopathy Related Gene Mutations and Clinical Manifestations in Vietnamese Patients With Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is associated primarily with pathogenic mutations in sarcomeric genes. The aim of this study was to identify the prevalence and distribution of disease-causing mutations in HCM-associated genes and the genotype-phenotype relationship in Vietnamese patients with HCM.Methods and Results:Genetic testing was performed by next-generation sequencing in 104 unrelated probands for 23 HCM-related genes and in 57 family members for the mutation(s) detected. Clinical manifestations were recorded for genotype-phenotype correlation analysis. Mutation detection rate was 43.4%. Mutations inMYBPC3accounted for 38.6%, followed byTPM1(20.5%),MYH7(18.2%),TNNT2(9.1%),TNNI3(4.5%) andMYL2(2.3%). A mutation inGLAassociated with Fabry disease was found in 1 patient. A mutation inTPM1(c.842T&gt;C, p.Met281Thr) was identified in 8 unrelated probands (18.2%) and 8 family members from 5 probands. Genotype-positive status related toMYH7,TPM1, andTNNT2mutations was associated with severe clinical manifestations.MYH7-positive patients displayed worse prognosis compared withMYBPC3-positive patients. Interestingly,TPM1c.842T&gt;C mutation was associated with high penetrance and severe HCM phenotype. We report for the first time the prevalence of HCM-related gene variants in Vietnamese patients with HCM.MYH7,TPM1, andTNNT2mutations were associated with unfavorable prognosis."	"A novel de novo mutation in MYH7 gene in a patient with early onset muscular weakness and severe kyphoscoliosis: A case report. Various phenotypes have been identified for MYH7 gene mutation-related myopathy. Here, we describe a patient with severe muscular weakness and skeletal deformity with de novo heterozygous MYH7 gene mutation. A 33-year-old woman presented with early onset of muscular weakness, with delayed motor development during infancy. At age 8 years, she was unable to walk, with signs of skeletal deformity, including the progression of kyphoscoliosis. At age 31 years, she developed dyspnea. She diagnosed with esophageal hiatal hernia with abdominal CT. In electromyography, short duration, small amplitude motor unit action potential (MUAP), and early recruitment patterns were observed in the involved proximal muscles, suggesting myopathy. Muscle histopathology showed fiber-type disproportion. Next-generation sequencing study revealed a heterozygous in-frame deletion variation in the exon 14 of the MYH7 gene (c.1498_1500del/p.Glu500del), which is a novel variation confirmed by conventional Sanger sequencing. Compared with the parental test, this variant was concluded as de novo. She received laparoscopic hiatal hernia repair and Nissen fundoplication for esophageal hiatal hernia. After surgery, her postural dyspnea improved. As there is no fundamental treatment for MYH7-related myopathies, she continued conservative treatment for her symptoms. Here, we presented a rare case of de novo mutation of the myosin head domain in the MYH7 gene. This report broadens both the phenotypic and genotypic spectra of MYH7-related myopathies."	"Comparative study of calcium and calcium-related enzymes with differentiation markers in different ages and muscle types in mdx mice. Sarcolemma instability and increased calcium influx in muscle fibers are characteristics of the Duchenne muscular dystrophy. Excessive calcium activates calcium-dependent enzymes, such as calpains (CAPN) and matrix metalloproteases (MMP). Here, we analyzed calcium deposits, the activity of CAPN and MMP and the expression of Myh, SERCA and myogenic regulatory factors in different skeletal muscles during myonecrosis (4-weeks) and regeneration (12-weeks) phases of the mdx muscular pathology. Alizarin red staining was used to assess calcium deposits, casein and gelatin zymography were performed to evaluate CAPN and MMP activity, and qPCR was used to evaluate the expression of Myh, Capn, Atp2a1 and Atp2a2, Myod1 and Myog. We observed the following characteristics in mdx muscles: (i) calcium deposits almost exclusively in mdx muscles, (ii) lower CAPN1 activity in mdx muscles, (iii) higher CAPN2 activity in mdx muscles (only at 12 wks), (iv) autolyzed CAPN activity exclusively in mdx muscles, (v) lower expression of Capn1 and higher expression of Capn2 in mdx muscles; (vi) lower expression of Atp2a1 and Atp2a2 in mdx muscles, (vii) higher MMP (pre pro MMP2, pro MMP2, MMP2 and MMP9) activity in mdx muscles, (viii) MMP2 activity exclusively in mdx muscles at 12 wks, (ix) MMP9 activity exclusively in mdx muscles, (x) higher expression of Myog in mdx muscles at 12 wks, and (xi) lower expression of Myh (Myh7, Myh2, Myh1, Myh4) in mdx muscles, particularly Myh7 and Myh2. The collection of our results provides valuable information for a better characterization of mdx pathology phenotype."	"Pegfilgrastim and linagliptin potentiate chemoattraction of Ccr2 and Cd44 stem cells accompanied by alterations of cardiac Hgf, Igf-1 and Mcp-1 in daunorubicin cardiomyopathy. Daunorubicin (DAU) downregulates cytokines promoting stem cell migration and homing into the heart, reducing cardiac regeneration after anticancer chemotherapy. Pegfilgrastim (PFIL) protects from DAU-induced neutropenia but its cardioprotective potential remains unclear. We tested whether pegfilgrastim and a dipeptidyl peptidase-4 inhibitor linagliptin, potential enhancers of stem cells migration and homing, would improve DAU-cardiomyopathy. DAU (7.5 mg/kg, i.v.) was administered to male Wistar rats to induce cardiotoxicity. Pegfilgrastim (100 µg/kg, s.c.) was administered 24h after DAU, and linagliptin was administered orally for 8 weeks (5 mg/kg/day, LINA). Cardiac damage markers (Nppa, Myh6, Myh7, Gp91phox), cytokines (Sdf-1alpha, Mcp-1, Vegf, Hgf, Igf-1), stem cell markers (Cxcr4, Ccr2, Cd34, Cd133, Cd44, Cd105) were determined by qRT-PCR. Decreased Myh6, elevated Myh7 Nppa, and Gp91phox were not ameliorated by PFIL + LINA. Downregulated expressions of cytokines (Vegf, Sdf-1alpha) and stem cells markers (Cxcr4, Cd34, Cd133, and Cd105) remained decreased after PFIL + LINA. DAU-induced upregulation of Mcp-1, Ccr2 and Cd44 was further potentiated by PFIL + LINA. PFIL + LINA normalised expression of Hgf and Igf-1. Although PFIL + LINA failed in universal potentiation of stem cells migration and homing, the expression of stem cell markers Ccr2 and Cd44 in the heart potentially increased through the preservation of Hgf, Igf-1 and upregulation of Mcp-1."	"Cardiotoxicity induced by 2,3,7,8-tetrachlorodibenzo-p-dioxin exposure through lactation in mice. Dioxins are a group of structurally related chemicals that persist in the environment. Exposure to 2,3,7,8-tetrachlorodibenzo-p-dioxin (TCDD), the most toxic congener, is a suspected risk factor for cardiac diseases in humans. TCDD induces signs of cardiotoxicity in various animals. Mouse models of TCDD exposure suggest cardiotoxicity phenotypes develop differently depending on the timing and time-course of exposure. In order to clarify and characterize the TCDD-induced cardiotoxicity in the developing period, we utilized mouse pups exposed to TCDD. One day after delivery, groups of nursing C57BL/6J dams were orally administered TCDD at a dose of 0 (Control), 20 (TCDD-20), or 80 μg/kg (TCDD-80) body weight (BW). On postnatal days (PNDs) 7 and 21, pups' hearts were examined by histological and gene expression analyses. The TCDD-80 group was found to have a left ventricular remodeling on PND 7, and to develop heart hypertrophy on PND 21. It was accompanied by fibrosis and increased expression of associated genes, such as those for atrial natriuretic peptide (ANP), β-myosin heavy chain (β-MHC), and endothelin-1 (ET-1). These results revealed that TCDD directly induces cardiotoxicity in the postnatal period represented by progressive hypertrophy in which ANP, β-MHC, and ET-1 have potentials to mediate the cardiac hypertrophy and heart failure."	"Modelling diastolic dysfunction in induced pluripotent stem cell-derived cardiomyocytes from hypertrophic cardiomyopathy patients. Diastolic dysfunction (DD) is common among hypertrophic cardiomyopathy (HCM) patients, causing major morbidity and mortality. However, its cellular mechanisms are not fully understood, and presently there is no effective treatment. Patient-specific induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) hold great potential for investigating the mechanisms underlying DD in HCM and as a platform for drug discovery. In the present study, beating iPSC-CMs were generated from healthy controls and HCM patients with DD. Micropatterned iPSC-CMs from HCM patients showed impaired diastolic function, as evidenced by prolonged relaxation time, decreased relaxation rate, and shortened diastolic sarcomere length. Ratiometric Ca2+ imaging indicated elevated diastolic [Ca2+]i and abnormal Ca2+ handling in HCM iPSC-CMs, which were exacerbated by β-adrenergic challenge. Combining Ca2+ imaging and traction force microscopy, we observed enhanced myofilament Ca2+ sensitivity (measured as dF/Δ[Ca2+]i) in HCM iPSC-CMs. These results were confirmed with genome-edited isogenic iPSC lines that carry HCM mutations, indicating that cytosolic diastolic Ca2+ overload, slowed [Ca2+]i recycling, and increased myofilament Ca2+ sensitivity, collectively impairing the relaxation of HCM iPSC-CMs. Treatment with partial blockade of Ca2+ or late Na+ current reset diastolic Ca2+ homeostasis, restored diastolic function, and improved long-term survival, suggesting that disturbed Ca2+ signalling is an important cellular pathological mechanism of DD. Further investigation showed increased expression of L-type Ca2+channel (LTCC) and transient receptor potential cation channels (TRPC) in HCM iPSC-CMs compared with control iPSC-CMs, which likely contributed to diastolic [Ca2+]i overload. In summary, this study recapitulated DD in HCM at the single-cell level, and revealed novel cellular mechanisms and potential therapeutic targets of DD using iPSC-CMs."	"β-Cardiac myosin hypertrophic cardiomyopathy mutations release sequestered heads and increase enzymatic activity. Hypertrophic cardiomyopathy (HCM) affects 1 in 500 people and leads to hyper-contractility of the heart. Nearly 40 percent of HCM-causing mutations are found in human β-cardiac myosin. Previous studies looking at the effect of HCM mutations on the force, velocity and ATPase activity of the catalytic domain of human β-cardiac myosin have not shown clear trends leading to hypercontractility at the molecular scale. Here we present functional data showing that four separate HCM mutations located at the myosin head-tail (R249Q, H251N) and head-head (D382Y, R719W) interfaces of a folded-back sequestered state referred to as the interacting heads motif (IHM) lead to a significant increase in the number of heads functionally accessible for interaction with actin. These results provide evidence that HCM mutations can modulate myosin activity by disrupting intramolecular interactions within the proposed sequestered state, which could lead to hypercontractility at the molecular level."	"Insights into hypoxic adaptation in Tibetan chicken embryos from comparative proteomics. Tibetan chicken, an indigenous breed, is highly adapted to the extreme environment of the Qinghai-Tibet Plateau. It serves as a model organism to identify genetic differences between hypoxia-adapted and lowland breeds. However, the mechanisms underlying hypoxia adaptation are yet unclear. This study aimed to identify differently abundant proteins (DAPs) and elucidate the mechanisms involved in hypoxic adaptation in the Tibetan chicken. In this study, we obtained proteome data for the embryonic heart tissues of Tibetan and Chahua chickens incubated under hypoxia (TCH and CHH) and normoxia (TCN and CHN) using isobaric tags for relative and absolute quantitation (iTRAQ) technology. We identified 4210 proteins from 53,352 unique peptides in the heart tissue of chicken embryos. Pairwise TCH vs. CHH, TCH vs. TCN, CHH vs. CHN, and TCN vs. CHN comparisons revealed 118, 176, 103, and 162 differently abundant proteins, respectively. Several key proteins (EGLN1, MAP2K2, MYLK, QARS, NOTCH2, and MYH7) and pathways (glutathione metabolism, PPAR signaling pathway, and vascular smooth muscle contraction) were identified and considered important candidates for high-altitude adaptation in Tibetan chicken. This study provides novel insights into the chicken embryonic heart tissue and furthers the current understanding of the mechanisms of survival among animals in high-altitude environments."	"Defining genotype-phenotype relationships in patients with hypertrophic cardiomyopathy using cardiovascular magnetic resonance imaging. HCM is the most common inherited cardiomyopathy. Historically, there has been poor correlation between genotype and phenotype. However, CMR has the potential to more accurately assess disease phenotype. We characterized phenotype with CMR in a cohort of patients with confirmed HCM and high prevalence of genetic testing. Patients with a diagnosis of HCM, who had undergone contrast-enhanced CMR were identified. Left ventricular mass index (LVMI) and volumes were measured from steady-state free precession sequences. Late gadolinium enhancement (LGE) was quantified using the full width, half maximum method. All patients were prospectively followed for the development of septal reduction therapy, arrhythmia or death. We included 273 patients, mean age 51.2 ± 15.5, 62.9% male. Of those patients 202 (74.0%) underwent genetic testing with 90 pathogenic, likely pathogenic, or rare variants and 13 variants of uncertain significance identified. Median follow-up was 1138 days. Mean LVMI was 82.7 ± 30.6 and 145 patients had late gadolinium enhancement (LGE). Patients with beta-myosin heavy chain (MYH7) mutations had higher LV ejection fraction (68.8 vs 59.1, p&lt;0.001) than those with cardiac myosin binding protein C (MYBPC3) mutations. Patients with MYBPC3 mutations were more likely to have LVEF &lt; 55% (29.7% vs 4.9%, p = 0.005) or receive a defibrillator than those with MYH7 mutations (54.1% vs 26.8%, p = 0.020). We found that patients with MYBPC3 mutations were more likely to have impaired ventricular function and may be more prone to arrhythmic events. Larger studies using CMR phenotyping may be capable of identifying additional characteristics associated with less frequent genetic causes of HCM."	"Differential expression of myosin heavy chain isoforms in cardiac segments of gnathostome vertebrates and its evolutionary implications. Immunohistochemical studies of hearts from the lesser spotted dogfish, Scyliorhinus canicula (Chondrichthyes) revealed that the pan-myosin heavy chain (pan-MyHC) antibody MF20 homogeneously labels all the myocardium, while the pan-MyHC antibody A4.1025 labels the myocardium of the inflow (sinus venosus and atrium) but not the outflow (ventricle and conus arteriosus) cardiac segments, as opposed to other vertebrates. We hypothesized that the conventional pattern of cardiac MyHC isoform distribution present in most vertebrates, i.e. MYH6 in the inflow and MYH7 in the outflow segments, has evolved from a primitive pattern that persists in Chondrichthyes. In order to test this hypothesis, we conducted protein detection techniques to identify the MyHC isoforms expressed in adult dogfish cardiac segments and to assess the pan-MyHC antibodies reactivity against the cardiac segments of representative species from different vertebrate groups. Western and slot blot results confirmed the specificity of MF20 and A4.1025 for MyHC in dogfish and their differential reactivity against distinct myocardial segments. HPLC-ESI-MS/MS and ESI-Quadrupole-Orbitrap revealed abundance of MYH6 and MYH2 in the inflow and of MYH7 and MYH7B in the outflow segments. Immunoprecipitation showed higher affinity of A4.1025 for MYH2 and MYH6 than for MYH7 and almost no affinity for MYH7B. Immunohistochemistry showed that A4.1025 signals are restricted to the inflow myocardial segments of elasmobranchs, homogeneous in all myocardial segments of teleosts and acipenseriforms, and low in the ventricle of polypteriforms. The cardiac inflow and outflow segments of the dogfish show predominance of fast- and slow-twitch MyHC isoforms respectively, what can be considered a synapomorphy of gnathostomes. The myocardium of the dogfish contains two isomyosins (MYH2 and MYH7B) not expressed in the adult heart of other vertebrates. We propose that these isomyosins lost their function in cardiac contraction during the evolution of gnathostomes, the later acquiring a regulatory role in myogenesis through its intronic miRNA. Loss of MYH2 and MYH7B expression in the heart possibly occurred before the origin of Osteichthyes, being the latter reacquired in polypteriforms. We raise the hypothesis that the slow tonic MYH7B facilitates the peristaltic contraction of the conus arteriosus of fish with a primitive cardiac anatomical design and of the vertebrate embryo."	"Genetic Variants Are Not Rare in ICD Candidates with Dilated Cardiomyopathy: Time for Next-Generation Sequencing? Sudden cardiac death (SCD) risk stratification in dilated cardiomyopathy (DCM) has been based on left ventricular ejection fraction (LVEF), even though SCD may occur with LVEF &gt; 35%. Family history of unexplained SCD, especially in the young, raises concern about potential inheritable risk factors. It remains largely unknown how genetic tests can be integrated into clinical practice, particularly in the selection of implantable cardioverter defibrillator (ICD) candidates. We aimed to assess the diagnostic yield of genetic testing in DCM patients with a class I recommendation for ICD implantation, based on current guidelines. We included ambulatory stable adult patients with idiopathic or familial DCM with previously implanted ICD. Molecular analysis included 15 genes (LMNA, MYH7, MYBPC3, TNNT2, ACTC1, TPM1, CSRP3, TCAP, SGCD, PLN, MYL2, MYL3, TNNI3, TAZ, and LDB3) using next-generation sequencing. We evaluated 21 patients, 12 (57%) males and 9 (43%) with familial DCM, including 3 (14%) with a family history of premature unexplained SCD. Mean age at DCM diagnosis was 40 ± 2 years, and mean age at ICD implantation was 50 ± 12 years. LVEF was 27 ± 9%, and LV end-diastolic diameter was 65 ± 7 mm. Genetic variants were found in six (29%) patients, occurring in 5 genes: TPM1, TNNT2, MYH7, PLN, and MYBPC3. The majority were classified as variants of uncertain significance. Family history of SCD was present in both patients with PLN variants. In patients with DCM and ICD, genetic variants could be identified in a significant proportion of patients in several genes, highlighting the potential role of genetics in DCM SCD risk stratification."	"Family screening for hypertrophic cardiomyopathy: Is it time to change practice guidelines? Current guidelines recommend initiating family screening for hypertrophic cardiomyopathy (HCM) after age 10 or 12 years unless early screening criteria are met. The aim was to evaluate if current screening guidelines miss early onset disease. Children who underwent family screening for HCM before age 18 years were analysed. Major cardiac events (MaCEs) were defined as death, sudden cardiac death (SCD), or need for major cardiac interventions (myectomy, implantable cardioverter-defibrillator insertion, transplantation). Of 524 children screened, 331 were under 10 years of age, 9.9% had echocardiographic evidence of HCM, and 1.1% were symptomatic at first screening. The median (interquartile range) age at HCM onset was 8.9 (4.7-13.4) years, and at MaCE was 10.9 (8.5-14.3) years with a median time to MaCE from HCM onset of 1.5 (0.5-4.1) years. About 52.5% phenotype-positive children and 41% with MaCEs were &lt;10 years old. Only 69% children with early HCM met early screening criteria. Cox regression identified male gender, family history of SCD, and pathogenic variants in MYH7/MYBPC3 as a predictor of early onset HCM and MaCEs. A third of children not eligible for early screening by current guidelines had phenotype-positive HCM. MYH7 and MYBC3 mutation-positive patients were at highest risk for developing early HCM and experiencing an event or requiring a major intervention. Our findings suggest that younger family members should be considered for early clinical and genetic screening to identify the subset in need of closer monitoring and interventions."	"A feline orthologue of the human MYH7 c.5647G&gt;A (p.(Glu1883Lys)) variant causes hypertrophic cardiomyopathy in a Domestic Shorthair cat. Hypertrophic cardiomyopathy (HCM) is the most common inherited human heart disease. The same disease has a high prevalence in cats, where it is also suspected to be inherited. More than 1500 variants in MYBPC3, MYH7 and other sarcomeric genes are associated with human HCM, while in cats, only two causative variants in MYBPC3 are currently known. Here, we describe an adult Domestic Shorthair cat with arterial thromboembolism and heart failure that was diagnosed with HCM on necropsy. Sequencing of the coding regions of MYBPC3 and MYH7 revealed 21 variants, of which the MYH7 c.5647G&gt;A (p.(Glu1883Lys)) variant was further analysed, because its orthologous variant had already been reported in a human patient with HCM, but with limited causal evidence. This variant affects the highly conserved assembly competence domain, is predicted in silico to be damaging and was found only once in population databases. Recently, functional studies have confirmed its predicted damaging effect and a paralogous variant in MYH6 has been associated with cardiac disease in humans as well. This report of an orthologous variant in a cat with HCM and its absence in 200 additional cats provides further evidence for its disease-causing nature. As the first report of feline HCM caused by a variant in MYH7, this study also emphasises this gene as a candidate gene for future studies in cats and highlights the similarity between human and feline HCM."	"Oligogenic inheritance of a human heart disease involving a genetic modifier. Complex genetic mechanisms are thought to underlie many human diseases, yet experimental proof of this model has been elusive. Here, we show that a human cardiac anomaly can be caused by a combination of rare, inherited heterozygous mutations. Whole-exome sequencing of a nuclear family revealed that three offspring with childhood-onset cardiomyopathy had inherited three missense single-nucleotide variants in the MKL2, MYH7, and NKX2-5 genes. The MYH7 and MKL2 variants were inherited from the affected, asymptomatic father and the rare NKX2-5 variant (minor allele frequency, 0.0012) from the unaffected mother. We used CRISPR-Cas9 to generate mice encoding the orthologous variants and found that compound heterozygosity for all three variants recapitulated the human disease phenotype. Analysis of murine hearts and human induced pluripotent stem cell-derived cardiomyocytes provided histologic and molecular evidence for the NKX2-5 variant's contribution as a genetic modifier."	"FHL3 negatively regulates the differentiation of skeletal muscle satellite cells in chicken. As a member of four and a half LIM domain proteins, FHL3 gene-encoded protein (FHL3) plays an important role in skeletal muscle development and contraction. In this study, we determined the potential role of FHL3 in the proliferation and differentiation of primary satellite cells in chicken. RT-qPCR results showed that FHL3 mRNA was highly expressed in skeletal muscle in 12 chicken tissues. Four cell proliferation assays (CCK8 assay; EDU staining assay; flow cytometric detection of cell cycle assay; and detection of cell proliferation marker genes Ki67 and N-Ras assay) revealed that FHL3 knockdown had no effect on the proliferation rate of chicken satellite cells. FHL3 knockdown promoted the differentiation of satellite cells into myotubes, as evidenced by increased fusion index, number of nuclei per myotube, Myog, Myh7, Myf5, and Mrf4 mRNA expressions, and myog and myosin heavy chain protein expressions of myogenic markers (P &lt; 0.05). These results showed that the FHL3 was a negative regulator of the differentiation and fusion of chicken satellite cells into myotubes. However, FHL3 expression was increased during the differentiation of chicken satellite cells into myotubes. The study suggested that FHL3 might have different functions in chicken myotubes compared with that in chicken satellite cells."	"Recessive MYH7-related myopathy in two families. Myopathies due to recessive MYH7 mutations are exceedingly rare, reported in only two families to date. We describe three patients from two families (from Australia and the UK) with a myopathy caused by recessive mutations in MYH7. The Australian family was homozygous for a c.5134C &gt; T, p.Arg1712Trp mutation, whilst the UK patient was compound heterozygous for a truncating (c.4699C &gt; T; p.Gln1567*) and a missense variant (c.4664A &gt; G; p.Glu1555Gly). All three patients shared key clinical features, including infancy/childhood onset, pronounced axial/proximal weakness, spinal rigidity, severe scoliosis, and normal cardiac function. There was progressive respiratory impairment necessitating non-invasive ventilation despite preserved ambulation, a combination of features often seen in SEPN1- or NEB-related myopathies. On biopsy, the Australian proband showed classical myosin storage myopathy features, while the UK patient showed multi-minicore like areas. To establish pathogenicity of the Arg1712Trp mutation, we expressed mutant MYH7 protein in COS-7 cells, observing abnormal mutant myosin aggregation compared to wild-type. We describe skinned myofiber studies of patient muscle and hypertrophy of type II myofibers, which may be a compensatory mechanism. In summary, we have expanded the phenotype of ultra-rare recessive MYH7 disease, and provide novel insights into associated changes in muscle physiology."	"Good Intentions Gone Bad. NA"	"Tamarixetin protects against cardiac hypertrophy via inhibiting NFAT and AKT pathway. Cardiac hypertrophy is a compensatory response in reaction to mechanical load that reduces wall stress by increasing wall thickness. Chronic hypertrophic remodeling involves cardiac dysfunction that will lead to heart failure and ultimately death. Studies have been carried out on cardiac hypertrophy for years, whereas the mechanisms have not been well defined. Tamarixetin (TAM), a natural flavonoid derivative of quercetin, have been demonstrated possessing anti-oxidative and anti-inflammatory effects on multiple diseases. However, little is known about the function of TAM on the development of cardiac hypertrophy. Here, we found TAM could alleviate pressure-overload-induced cardiac hypertrophy in transverse aortic constriction (TAC) mouse model, assessed by ventricular weight/body weight, lung weight/body weight, echocardiographic parameters, as well as myocyte cross-sectional area and the expression of ANP, BNP and Myh7. In vitro, TAM showed a dose dependent inhibitory effect on phenylephrine-induced hypertrophy in H9c2 cardiomyocytes. Furthermore, TAM reversed cardiac remodeling of stress overloaded heart by suppressing apoptosis and the expression of fibrotic-related genes, reduced oxidative stress and ROS production both in vivo and in vitro. In addition, TAM could negatively modulate TAC-induced nuclear translocation of NFAT and the activation of PI3K/AKT signaling pathways. Therefore, these data indicate for the first time that TAM has a protective effect on experimental cardiac hypertrophy and might be a novel candidate for the treatment of cardiac hypertrophy in clinic."	"[Aconitine ameliorates cardiomyocyte hypertrophy induced by angiotensin Ⅱ]. This paper was aimed to investigate the inhibitory effect of aconitine(AC) on angiotensin Ⅱ(Ang Ⅱ)-induced H9 c2 cell hypertrophy and explore its mechanism of action. The model of hypertrophy was induced by Ang Ⅱ(1×10-6 mol·L-1),and cardiomyocytes were incubated with different concentrations of AC. Western blot was used to quantify the protein expression levels of atrial natriuretic peptide(ANP),brain natriuretic peptide(BNP),β-myosin heavy chain(β-MHC),and α-smooth muscle actin(α-SMA). Real-time quantitative PCR(qRT-PCR) was used to quantify the mRNA expression levels of cardiac hypertrophic markers ANP,BNP and β-MHC. In addition,the fluorescence intensity of the F-actin marker,an important component of myofibrils,was detected by using laser confocal microscope. AC could significantly reverse the increase of total protein content in H9 c2 cells induced by Ang Ⅱ; qRT-PCR results showed that AC could significantly inhibit the ANP,BNP and β-MHC mRNA up-regulation induced by AngⅡ. Western blot results showed that AC could significantly inhibit the ANP,BNP and β-MHC protein up-regulation induced by AngⅡ. In addition,F-actin expression induced by Ang Ⅱ could be inhibited by AC,and multiple indicators of cardiomyocyte hypertrophy induced by Ang Ⅱ could be down-regulated,indicating that AC may inhibit cardiac hypertrophy by inhibiting the expression of hypertrophic factors,providing new clues for exploring the cardiovascular protection of AC."	"A novel missense mutation in the MYH7 gene causes an uncharacteristic phenotype of myosin storage myopathy: a case report. Few manuscripts have reported phenotypes of skeletal muscle myopathies caused by mutations in the head region of slow/cardiac beta-myosin heavy chain (MyHCI). Among the patients, some of them showed the phenotype of skeletal muscle weakness with the obvious clinical features of cardiomyopathy while others showed pure skeletal muscle weakness with no symptoms of cardiac involvement. Genotype-phenotype relationship regarding the effect of a mutation on MyHCI is complex. Questions regarding why some mutations cause cardiomyopathy or skeletal muscle disorders alone or a combination of both still need to be answered. More findings in genetic variation are needed to extend knowledge of mutations in the MYH7 gene linked to skeletal muscle disorders. Here we present a female adult patient with a phenotype of childhood onset of muscular disorders and predominant involvement of thigh muscles with biopsy showing intrasarcoplasmic inclusion bodies. Whole exome sequencing showed that variant c.1370 T &gt; G (p.Ile457Arg) in the MYH7 gene is a missense mutation possibly linked to the clinical findings. Our patient likely shows an uncharacteristic myosin storage myopathy associated with respiratory and cardiac involvement linked to a missense mutation in the head of MyHCI. Given this mutation is located within the motor domain of MyHCI, this might affect the regulation of myosin mechano-chemical activity during the contractile cycle. Consequently, this potentially damaging effect can be easily amplified within the network of ~ 300-myosin molecules forming the thick filament and therefore become cumulatively deleterious, affecting, in turn, the overall organization and performance of sarcomere."	"OBG-like ATPase 1 inhibition attenuates angiotensin II-induced hypertrophic response in human ventricular myocytes via GSK-3beta/beta-catenin signalling. Obg-like ATPase 1 (OLA1) that possesses both GTP and ATP hydrolyzing activities has been shown to be involved in translational regulation of cancer cell growth and survival. Also, GSK3β signalling has been implicated in cardiac development and disease. However, the role of OLA1 in pathological cardiac hypertrophy is unknown. We sought to understand the mechanism by which OLA1 regulates GSK3β-β-Catenin signalling and its functional significance in angiotensin-II (ANG II)-induced cardiac hypertrophic response. OLA1 function and its endogenous interaction with GSK3β/β-catenin signalling in cultured human ventricular cardiomyocytes (AC16 cells) and mouse hearts (in vivo) was evaluated with/without ANG II-stimulated hypertrophic response. ANG II administration in mice increases myocardial OLA1 protein expression with a corresponding increase in GSK3β phosphorylation and decrease in β-Catenin phosphorylation. Cultured cardiomyocytes treated with ANG II show endogenous interaction between OLA1 and GSK3β, nuclear accumulation of β-Catenin and significant increase in cell size and expression of hypertrophic marker genes such as atrial natriuretic factor (ANF; NPPA) and β-myosin heavy chain (MYH7). Intriguingly, OLA1 inhibition attenuates the above hypertrophic response in cardiomyocytes. Taken together, our data suggest that OLA1 plays a detrimental role in hypertrophic response via GSK3β/β-catenin signalling. Translation strategies to target OLA1 might potentially limit the underlying molecular derangements leading to left ventricular dysfunction in patients with maladaptive cardiac hypertrophy."	"Adopting High-Resolution Allele Frequencies Substantially Expedites Variant Interpretation in Genetic Diagnostic Laboratories. A cohort of 1242 individuals tested in a clinical diagnostic laboratory was used to test whether the filtering allele frequencies (FAFs)-based framework, recently recommended for MHY7-associated cardiomyopathy, is extendable to 45 cardiomyopathy genes. Statistical analysis revealed a threshold of 0.00164% for the extreme outlier allele frequencies (AFs), based on the Genome Aggregation Database (exome fraction) total AFs of 138 unique pathogenic and likely pathogenic variants; 135 of them (97.8%) had AFs of &lt;0.004%, the recommended threshold to apply moderate pathogenicity evidence for MYH7-associated cardiomyopathy. Of the 460 cases reported with only variant(s) of unknown clinical significance (VUCSs), 97 (21%) solely had VUCSs with FAFs &gt;0.03%, frequencies above which were estimated herein as strong evidence against pathogenicity. Interestingly, 74.5% (172/231) of the unique VUCSs with FAFs &gt;0.03% had Genome Aggregation Database maximum allele frequencies across all populations AFs &gt;0.1%, deemed herein as stand-alone evidence against pathogenicity. Accordingly, using an FAF threshold of &gt;0.1%, compared with AF &gt;1%, led us to issue considerably more (25.9% versus 41.3%) negative patient reports. Also, 82.7% (N = 629) of the unique classified benign or likely benign variants with AFs &lt;1% had FAFs &gt;0.1%, reinforcing the use of this filtering strategy. Together, these data demonstrate that implementing FAF thresholds may considerably decrease the amount of variant interpretations and significantly reduce the cost of genetic testing for clinical genetic laboratories, without compromising the accuracy of genetic diagnostic services."	"Apela Promotes Cardiomyocyte Differentiation from Transgenic Human Embryonic Stem Cell Lines. Although embryonic stem (ES) cells (ESCs) may be a promising donor source for the repair of infarcted or ischemic heart tissues, their successful application in regenerative medicine has been hampered by difficulties in enriching, identifying, and selecting cardiomyocytes from the differentiating cells. We established transgenic human ES cell lines by transcriptional control of the α-cardiac myosin heavy chain (α-MHC) promoter driving green fluorescent protein (GFP) expression. Differentiated GFP-expressing cells display the characteristics of cardiomyocytes (CMs). Apela, a recently identified short peptide, up-regulated the expression of the cardiac-restricted transcription factors Tbx5 and GATA4 as well as differentiated the cardiomyocyte markers α-MHC and β-MHC. Flow cytometric analysis showed that apela increased the percentage of GFP-expressing cells in the beating foci of the embryoid bodies. The percentage of cardiac troponin T (TNT)-positive cells and the protein expression of TNT were increased in the ES cell-derived CMs with apela treatment. Functionally, the contractile frequency of the ES-derived CMs responded appropriately to the vasoactive drugs isoprenaline and carbachol. Our work presented a protocol for specially labelling and enriching CMs by combining transgenic human ES cell lines and exogenous growth factor treatment."	"Plantamajoside attenuates isoproterenol-induced cardiac hypertrophy associated with the HDAC2 and AKT/ GSK-3β signaling pathway. As a compensatory response to cardiac overload, cardiac hypertrophy is closely associated with the occurrence and development of a variety of cardiovascular diseases, in which histone deacetylase 2 (HDAC2) has been reported to play an important role. Plantamajoside (PMS) is an active component extracted from Herba Plantaginis, which is a traditional Chinese medicine, and many biological activities of PMS have been reported. Here, we investigated the effects and mechanism of PMS on isoproterenol (ISO)-induced cardiac hypertrophy. ISO at 10 μmol/L was used in vitro to induce H9c2 cardiomyocyte hypertrophy. Cell viability and cell surface area were determined by MTT assay and immunocytochemistry, respectively. Furthermore, an in vivo, cardiac hypertrophy model was established by subcutaneous injection of ISO. Pathological alterations and fibrosis in the myocardium were studied by H&amp;E and Masson's trichrome staining, respectively. Myocardial injury-related genes and proteins were detected by real-time PCR and western blotting. HDAC2 and its downstream proteins, AKT and GSK3β, were analyzed by western blotting. Our results showed that, in vitro, PMS inhibited the ISO-induced increase in H9c2 cell surface area and the mRNA expression of ANP, BNP and Myh7. In vivo, PMS improved the ISO-induced decrease in cardiac function, inhibited the increase in cardiac anatomical parameters and alleviated the histopathological changes in cardiac tissues. Moreover, PMS inhibited the mRNA and protein expression of ANP, BNP, Myh7, COL1 and COL3. Furthermore, PMS suppressed the activity of HDAC2 and down-regulated the expression of the downstream proteins p-AKT and p-GSK3β both in vitro and in vivo. Overall, our results indicated that PMS exerts significant cardioprotective effects against ISO-induced cardiac hypertrophy, and this protective effect may be mediated by inhibition of the HDAC2 and AKT/GSK-3β signaling pathway."	"MYH7 mutation identified by next-generation sequencing in three infant siblings with bi-ventricular noncompaction presenting with restrictive hemodynamics: A report of three siblings with a severe phenotype and poor prognosis. Noncompaction of the ventricular myocardium (NVM) is a genetically heterogeneous cardiomyopathy. Various mutations associated with NVM have been identified in several genes. NVM patients usually present with complications of dilated cardiomyopathy. We identified a missense mutation, c.5740G&gt;A, p.Glu1914Lys of MYH7, by targeted next-generation sequencing in three infant siblings with isolated bi-ventricular noncompaction who presented with restrictive hemodynamics and severe clinical courses. This mutation appears to be associated with a severe phenotype and poor prognosis. Early heart transplantation should be considered in similar cases. &lt;Learning objective: No clear noncompaction of the ventricular myocardium genotype-phenotype correlations have been found to predict the clinical course. This report describes a MYH7 mutation in three infant siblings with isolated bi-ventricular noncompaction who presented with restrictive hemodynamics and severe clinical courses. Early heart transplantation should be considered in cases with a similar genotype and/or phenotype.&gt;."	"Clinical and genetic insights into non-compaction: a meta-analysis and systematic review on 7598 individuals. Left ventricular non-compaction has been increasingly diagnosed in recent years. However, it is still debated whether non-compaction is a pathological condition or a physiological trait. In this meta-analysis and systematic review, we compare studies, which investigated these two different perspectives. Furthermore, we provide a comprehensive overview on the clinical outcome as well as genetic background of left ventricular non-compaction cardiomyopathy in adult patients. We retrieved PubMed/Medline literatures in English language from 2000 to 19/09/2018 on clinical outcome and genotype of patients with non-compaction. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Altogether, 35 studies with 2271 non-compaction patients were included in our meta-analysis. The mean age at diagnosis was the mid of their fifth decade. Two-thirds of patients were male. Congenital heart diseases including atrial or ventricular septum defect or Ebstein anomaly were reported in 7% of patients. Twenty-four percent presented with family history of cardiomyopathy. The mean frequency of neuromuscular diseases was 5%. Heart rhythm abnormalities were reported frequently: conduction disease in 26%, supraventricular tachycardia in 17%, and sustained or non-sustained ventricular tachycardia in 18% of patients. Three important outcome measures were reported including systemic thromboembolic events with a mean frequency of 9%, heart transplantation with 4%, and adequate ICD therapy with 15%. Nine studies investigated the genetics of non-compaction cardiomyopathy. The most frequently mutated gene was TTN with a pooled frequency of 11%. The average frequency of MYH7 mutations was 9%, for MYBPC3 mutations 5%, and for CASQ2 and LDB3 3% each. TPM1, MIB1, ACTC1, and LMNA mutations had an average frequency of 2% each. Mutations in PLN, HCN4, TAZ, DTNA, TNNT2, and RBM20 were reported with a frequency of 1% each. We also summarized the results of eight studies investigating the non-compaction in altogether 5327 athletes, pregnant women, patients with sickle cell disease, as well as individuals from population-based cohorts, in which the presence of left ventricular hypertrabeculation ranged from 1.3 to 37%. The summarized data indicate that non-compaction may lead to unfavorable outcome in different cardiomyopathy entities. The presence of key features in a multimodal diagnostic approach could distinguish between benign morphological trait and manifest cardiomyopathy."	"Advances in the Genetic Basis and Pathogenesis of Sarcomere Cardiomyopathies. Hypertrophic cardiomyopathy (HCM) and dilated cardiomyopathy (DCM) are common heart muscle disorders that are caused by pathogenic variants in sarcomere protein genes. HCM is characterized by unexplained cardiac hypertrophy (increased chamber wall thickness) that is accompanied by enhanced cardiac contractility and impaired relaxation. DCM is defined as increased ventricular chamber volume with contractile impairment. In this review, we discuss recent analyses that provide new insights into the molecular mechanisms that cause these conditions. HCM studies have uncovered the critical importance of conformational changes that occur during relaxation and enable energy conservation, which are frequently disturbed by HCM mutations. DCM studies have demonstrated the considerable prevalence of truncating variants in titin and have discerned that these variants reduce contractile function by impairing sarcomerogenesis. These new pathophysiologic mechanisms open exciting opportunities to identify new pharmacological targets and develop future cardioprotective strategies."	"Clinicopathological and Genetic Profiles of Cases with Myocytes Disarray-Investigation for Establishing the Autopsy Diagnostic Criteria for Hypertrophic Cardiomyopathy. Myocyte disarray of &gt;10% in the heart is broadly accepted as a diagnostic pitfall for hypertrophic cardiomyopathy (HCM) at postmortem. The present study aims to propose an additional diagnostic criterion of HCM. Heart specimens from 1387 serial forensic autopsy cases were examined. Cases with myocyte disarray were extracted and applied to morphometric analysis to determine the amount of myocyte disarray. Comprehensive genetic analysis by using next-generation sequencing was subsequently applied for cases with myocyte disarray. Fifteen cases with myocyte disarray were extracted as candidate cases (1.1%, 11 men and 4 women, aged 48⁻94 years). In terms of the cause of death, only 2 cases were cardiac or possible cardiac death, and the other was non-cardiac death. Six cases showed myocyte disarray of &gt;10% and 3 cases showed myocyte disarray of 5% to 10%. The other 6 cases showed myocyte disarray of &lt;5%. Nine rare variants in 5 HCM-related genes (MYBPC3, MYH7, MYH6, PRKAG2, and CAV3) were found in 8 of 9 cases with myocyte disarray of &gt;5%. The remaining 1 and 6 cases with myocyte disarray of &lt;5% did not have any such variant. Myocyte disarray of &gt;5% with rare variants in related genes might be an appropriate postmortem diagnostic criterion for HCM, in addition to myocyte disarray of 10%."	"Cardiac Phenotypes, Genetics, and Risks in Familial Noncompaction Cardiomyopathy. There is overlap in genetic causes and cardiac features in noncompaction cardiomyopathy (NCCM), hypertrophic cardiomyopathy (HCM), and dilated cardiomyopathy (DCM). The goal of this study was to predict phenotype and outcome in relatives according to the clinical features and genotype of NCCM index cases. Retrospective DNA and cardiac screening of relatives of 113 families from 143 index patients were used to classify NCCM cases according to the cardiac phenotype. These cases were classified as isolated NCCM, NCCM with left ventricular (LV) dilation (DCM), and NCCM with LV hypertrophy (HCM). In 58 (51%) families, screening identified 73 relatives with NCCM and 34 with DCM or HCM without NCCM. The yield of family screening was higher in families with a mutation (p &lt; 0.001). Fifty-four families had a mutation. Nonpenetrance was observed in 37% of the relatives with a mutation. Index cases were more often symptomatic than affected relatives (p &lt; 0.001). NCCM with DCM (53%) was associated with LV systolic dysfunction (p &lt; 0.001), increased risk for major adverse cardiac events, mutations in the tail of MYH7 (p &lt; 0.001), and DCM without NCCM in relatives (p &lt; 0.001). Isolated NCCM (43%) was associated with a milder course, mutations in the head of MYH7, asymptomatic NCCM (42%) (p = 0.018), and isolated NCCM in relatives (p = 0.004). NCCM with HCM (4%) was associated with MYBPC3 and HCM without NCCM in relatives (p &lt; 0.001). The phenotype of relatives may be predicted according to the NCCM phenotype and the mutation of index patients. NCCM phenotypes were related to outcome. In this way, clinical and genetic features of index patients may help prediction of outcome in relatives."	"FNDC5 attenuates obesity-induced cardiac hypertrophy by inactivating JAK2/STAT3-associated inflammation and oxidative stress. Chronic low-grade inflammation and oxidative stress play important roles in the development of obesity-induced cardiac hypertrophy. Here, we investigated the role of Fibronectin type III domain containing 5 (FNDC5) in cardiac inflammation and oxidative stress in obesity-induced cardiac hypertrophy. Male wild-type and FNDC5<sup>-/-</sup> mice were fed normal chow or high fat diet (HFD) for 20 weeks to induce obesity, and primary cardiomyocytes and H9c2 cells treated with palmitate (PA) were used as in vitro model. The therapeutic effects of lentiviral vector-mediated FNDC5 overexpression were also examined in HFD-induced cardiac hypertrophy. High fat diet manifested significant increases in body weight and cardiac hypertrophy marker genes expression, while FNDC5 deficiency aggravated cardiac hypertrophy evidenced by increased Nppa, Nppb and Myh7 mRNA level and cardiomyocytes area, in association with enhanced cardiac inflammatory cytokines expression, oxidative stress level and JAK2/STAT3 activation in HFD-fed mice. FNDC5 deficiency in primary cardiomyocytes or FNDC5 knockdown in H9c2 cells enhanced PA-induced inflammatory responses and NOX4 expression. Exogenous FNDC5 pretreatment attenuated PA-induced cardiomyocytes hypertrophy, inflammatory cytokines up-regulation and oxidative stress in primary cardiomyocytes and H9c2 cells. FNDC5 overexpression attenuated cardiac hypertrophy as well as cardiac inflammation and oxidative stress in HFD-fed mice. FNDC5 attenuates obesity-induced cardiac hypertrophy by inactivating JAK2/STAT3 associated-cardiac inflammation and oxidative stress. The cardio-protective role of FNDC5 shed light on future therapeutic interventions in obesity and related cardiovascular complications."	"Biallelic mutation in MYH7 and MYBPC3 leads to severe cardiomyopathy with left ventricular noncompaction phenotype. Dominant mutations in the MYH7 and MYBPC3 genes are common causes of inherited cardiomyopathies, which often demonstrate variable phenotypic expression and incomplete penetrance across family members. Biallelic inheritance is rare but allows gaining insights into the genetic mode of action of single variants. Here, we present three cases carrying a loss-of-function (LoF) variant in a compound heterozygous state with a missense variant in either MYH7 or MYBPC3 leading to severe cardiomyopathy with left ventricular noncompaction. Most likely, MYH7 haploinsufficiency due to one LoF allele results in a clinical phenotype only in compound heterozygous form with a missense variant. In contrast, haploinsufficiency in MYBPC3 results in a severe early-onset ventricular noncompaction phenotype requiring heart transplantation when combined with a de novo missense variant on the second allele. In addition, the missense variant may lead to an unstable protein, as overall only 20% of the MYBPC3 protein remain detectable in affected cardiac tissue compared to control tissue. In conclusion, in patients with early disease onset and atypical clinical course, biallelic inheritance or more complex variants including copy number variations and de novo mutations should be considered. In addition, the pathogenic consequence of variants may differ in heterozygous versus compound heterozygous state."	"Flexi-Myo Panel Strategy: Genomic Diagnoses of Myopathies and Muscular Dystrophies by Next-Generation Sequencing.  Aims:  Muscle disorders are clinically and genetically heterogeneous. Investigations, including plasma creatine kinase, electromyography, and nerve conduction velocity studies are often nonspecific, whereas muscle biopsy might be limited by sampling bias and variable histopathology. Next-generation sequencing is now generally considered an important diagnostic tool for muscle disorders, with decreased costs and improved diagnostic yield. Inclusion of a large number of genes in the analysis might, however, generate a large number of ambiguous results and create unnecessary confusion for clinicians and patients.  Methods:  An ethnic Chinese patient presented at age 10 with tip-toe walking. Upon examination the patient had a waddling gait, a tight Achilles tendon with pes cavus. A muscle biopsy showed the presence of minicores with disruption of the myofibrillary network and Z-bands. Sequencing was performed using the Flexi-Myo panel, which provides coverage for 85 myopathic genes. Reporting of sequencing results was decided by the responsible chemical pathologists based on the available clinical and genetic information.  Results:  A previously identified heterozygous in-frame deletion was detected in MYH7, which confirmed the diagnosis of Laing myopathy. No variants of uncertain significance required reporting.  Conclusion:  We describe the effectiveness of our Flexi-Myo panel approach for the diagnosis of muscle disorders, which confirmed diagnosis of Laing myopathy in what had been a clinically ambiguous presentation. This approach enables efficient genomic testing for muscle diseases in adults and children with satisfactory diagnostic yield and sufficient sensitivity, whereas avoiding the reporting of ambiguous results. Similar strategies might also be implemented for other groups of disorders."	"A novel MYH7 mutation resulting in Laing distal myopathy in a Chinese family. NA"	"Congenital myopathies are mainly associated with a mild cardiac phenotype. To evaluate the prevalence of cardiac involvement in patients with congenital myopathies and the association to specific genotypes. We evaluated patients with physical examination, electrocardiogram, echocardiography, and 48-h Holter monitoring. Follow-up was performed for major events. We included 130 patients, 55 men (42%), with a mean age of 34 ± 17 years. A genetic diagnosis was established in 97 patients (75%). Right bundle branch block was observed in three patients: 2/34 patients with a ryanodine receptor 1 (RYR1) and 1/6 with a tropomyosin two gene (TPM2) gene mutation. Echocardiography showed left-ventricular hypertrophy in five patients: 2/17 and 3/34 patients with a Dynamin 2 (DNM2) and a RYR1 mutation, respectively. One patient with a myosin heavy-chain (MYH7) mutation had dilated cardiomyopathy and heart failure. On Holter monitoring, frequent ventricular premature contractions were observed in one patient with a DNM2 mutation. Two patients with a TPM2 and a RYR1 mutation, respectively, had a single short run of non-sustained ventricular tachycardia. Atrioventricular nodal re-entry tachycardia was observed in a 20-year-old man with an actin 1 gene mutation. During follow-up (median 8.4 years), four patients died, all of non-cardiac causes. Congenital myopathies are generally associated with a mild cardiac phenotype. Our findings substantiate the literature and indicate that, except for patients with specific genotypes, such as MYH7 and TTN mutations, repeated cardiac assessments can be minimized, given a normal initial cardiac screening at time of diagnosis."	"Elucidation of mechanism for host response to VHSV infection at varying temperatures in vitro and in vivo through proteomic analysis. Seasonal temperature has a major influence on the infectivity of pathogens and the host immune system. Viral hemorrhagic septicemia virus (VHSV) is one such pathogen that only causes the mortality of fish at low temperatures. This study aims to discover the host defense mechanism and pathway for resistance to VHSV at higher temperatures. We first observed the VHSV infection patterns at low and higher temperatures in fathead minnow (FHM) cells (20 °C and 28 °C) and zebrafish (15 °C and 25 °C). In comparison to the 20 °C infection, FHM cells infected at 28 °C showed decreased apoptosis, increased cell viability, and reduced VHSV N gene expression. In zebrafish, infection at 25 °C caused no mortality and significantly reduced the N gene copy number in comparison to infection at 15 °C. To explore the antiviral infection mechanisms induced by high temperature in vitro and in vivo, the changes in the proteomic profile were measured through UPLC-MS<sup>E</sup> analysis. ACADL, PTPN6, TLR1, F7, A2M, and GLI2 were selected as high temperature-specific biomarkers in the FHM cell proteome; and MYH9, HPX, ANTXR1, APOA1, HBZ, and MYH7 were selected in zebrafish. Increased immune response, anticoagulation effects, and the formation of lymphocytes from hematopoietic stem cells were analyzed as functions that were commonly induced by high temperature in vitro and in vivo. Among these biomarkers, GLI2 was predicted as an upstream regulator. When treated with GANT58, a GLI-specific inhibitor, cell viability was further reduced due to GLI2 inhibition during VHSV infection at varying temperatures in FHM cells, and the mortality in zebrafish was induced earlier at the low temperature. Overall, this study discovered a new mechanism for VHSV infection in vitro and in vivo that is regulated by GLI2 protein."	"Common pathogenic mechanism in patients with dropped head syndrome caused by different mutations in the MYH7 gene. Mutations in the MYH7 gene are the source of an allelic series of diseases, including various cardiomyopathies and skeletal myopathies that usually manifest in adulthood. We observed a 1.5 y.o. male patient with congenital weaknesses of the axial muscles, &quot;dropped head&quot; syndrome, and dilated cardiomyopathy. The clinical evaluation included medical history, an echocardiogram, electromyography, and a histopathological study. The genetic evaluation included whole exome sequencing. Muscle biopsy samples from the proband were used for mRNA extraction. We revealed a novel genetic variant c.5655 + 5G &gt; C in the MYH7 gene. The analysis of the cDNA showed an in-frame skipping of exon 38 (p.1854_1885del). This variant and two previously published mutations (c.5655G &gt; A and c.5655 + 1G &gt; A), also presumably leading to exon 38 skipping, were studied by expression analysis in the HEK293T cell line transfected with 4 plasmids containing the MYH7 minigene (wt, c.5655G &gt; C, c.5655 + 1G &gt; A and c.5655 + 5G &gt; A). A quantitative difference in expression was shown for cell lines with each of the three mutant plasmids. All mutation carriers had a similar phenotype and included congenital axial myopathy and variable cardiac involvement. Prominent dropped head syndrome was mentioned in all patients. Early-onset axial myopathy with a dropped head syndrome is a distinct clinical entity within MYH7-related disorders. We suggest that mutations in the MYH7 gene affecting the C-terminal domain of beta-myosin heavy chain should also be considered as a possible cause in cases of early-onset myopathy with &quot;dropped head&quot; syndrome."	"Genetic basis and outcome in a nationwide study of Finnish patients with hypertrophic cardiomyopathy. Nationwide large-scale genetic and outcome studies in cohorts with hypertrophic cardiomyopathy (HCM) have not been previously published. We sequenced 59 cardiomyopathy-associated genes in 382 unrelated Finnish patients with HCM and found 24 pathogenic or likely pathogenic mutations in six genes in 38.2% of patients. Most mutations were located in sarcomere genes (MYBPC3, MYH7, TPM1, and MYL2). Previously reported mutations by our study group (MYBPC3-Gln1061Ter, MYH7-Arg1053Gln, and TPM1-Asp175Asn) and a fourth major mutation MYH7-Val606Met accounted for 28.0% of cases. Mutations in GLA and PRKAG2 were found in three patients. Furthermore, we found 49 variants of unknown significance in 31 genes in 20.4% of cases. During a 6.7 ± 4.2 year follow-up, annual all-cause mortality in 482 index patients and their relatives with HCM was higher than that in the matched Finnish population (1.70 vs. 0.87%; P &lt; 0.001). Sudden cardiac deaths were rare (n = 8). Systolic heart failure (hazard ratio 17.256, 95% confidence interval 3.266-91.170, P = 0.001) and maximal left ventricular wall thickness (hazard ratio 1.223, 95% confidence interval 1.098-1.363, P &lt; 0.001) were independent predictors of HCM-related mortality and life-threatening cardiac events. The patients with a pathogenic or likely pathogenic mutation underwent an implantable cardioverter defibrillator implantation more often than patients without a pathogenic or likely pathogenic mutation (12.9 vs. 3.5%, P &lt; 0.001), but there was no difference in all-cause or HCM-related mortality between the two groups. Mortality due to HCM during 10 year follow-up among the 5.2 million population of Finland was studied from death certificates of the National Registry, showing 269 HCM-related deaths, of which 32% were sudden. We identified pathogenic and likely pathogenic mutations in 38% of Finnish patients with HCM. Four major sarcomere mutations accounted for 28% of HCM cases, whereas HCM-related mutations in non-sarcomeric genes were rare. Mortality in patients with HCM exceeded that of the general population. Finally, among 5.2 million Finns, there were at least 27 HCM-related deaths annually."	"[Effect of electroacupuncture on amyotrophia and expression of myogenic differentiation-related genes of gastrocnemius in rats with chronic constriction injury of sciatic nerve]. To explore the effect of electroacupuncture(EA) on amyotrophia and expression of paired box7(Pax7), myogenic differentiation antigen-1 (Myod1), myogenin (Myog), myosin heavy chain- Ⅱa (Myh2), myosin heavy chain-Ⅱx (Myh1) and myosin heavy chain-Ⅰ (Myh7) of denervated gastrocnemius in rats with chronic constriction injury (CCI) of the right sciatic nerve, so as to explore its mechanisms underlying postponing development of amyotrophia. Sixty-six SD adult male rats were randomly divided into sham operation (sham) group (n=24), model group (n=24) and EA group (n=18). The denervated muscle (gastrocnemius) atrophy model was established by CCI of the right sciatic nerve. EA (2 Hz,1.0 mA) was applied to the right &quot;Zusanli&quot;(ST36) and &quot;Huantiao&quot;(GB30) for 10 min, once a day, six times a week and for 1, 2 and 4 weeks, respectively. After complete dissection of bilateral gastrocnemius muscles, their wet weight levels were measured and the ratio of wet weight (=that of the operation side/that of the non-operation side) was calculated, and the cross-sectional area (CSA) and diameter of the gastronemius were detected after fixation in 4% paraformaldehyde, sectioning, and H.E. staining. The expression levels of Pax7, Myod1, Myog, Myh2, Myh1 and Myh7 mRNAs in the gastrocnemius tissue after 3 weeks of modeling were detected with quantitative real time-PCR (qPCR). After 1 week of modeling, the ratios of wet weight of gastrocnemius and the CSA and fiber diameter at the 2<sup>nd</sup>, 3<sup>rd</sup> and 5<sup>th</sup> week were significantly smaller in the model group than in the sham group (P&lt;0.05). The expression levels of Myod1 and Myog mRNAs were significantly up-regulated (P&lt;0.01), and those of Myh2, Myh1 and Myh7 considerably down-regulated in the model group compared with the sham group (P&lt;0.05, P&lt;0.01). No significant changes were found in the expression levels of Pax7 mRNA after modeling and EA intervention (P&gt;0.05).Following EA intervention, the CSA and diameterof the gastronemius were obviously increased (P&lt;0.05), and the expression levels of Myod1, Myog and Myh7 further markedly or remarkably up-regulated in comparison with the model group (P&lt;0.05, P&lt;0.01). No significant changes were found in the ratio of wet weight of gastrocnemius at the 3 time-points, and the expression levels of Myh2 mRNA and Myh1 mRNA in the EA group relevant to the model group after 3 weeks of modeling (P&gt;0.05). EA treatment may delay gastrocnemius atrophy in CCI rats, which is possibly associated with its effects in up-regulating the expression of Myod1, Myog and Myh7 mRNAs to control the differentiation of the satellite cells and the muscle fiber type transformation."	"Extra energy for hearts with a genetic defect: ENERGY trial. Previous studies have shown that hypertrophic cardiomyopathy mutation carriers have a decreased myocardial energy efficiency, which is thought to play a key role in the pathomechanism of hypertrophic cardiomyopathy (HCM). The ENERGY trial aims to determine whether metabolic drugs correct decreased myocardial energy efficiency in HCM mutation carriers at an early disease stage. 40 genotype-positive, phenotype-negative MYH7 mutation carriers will be treated for two months with trimetazidine or placebo in a double-blind randomised study design. Directly before and after treatment, study subjects will undergo an [<sup>11</sup>C]-acetate positron emission tomography/computed tomography (PET/CT) and cardiac magnetic resonance (CMR) scan to measure myocardial energy efficiency. Myocardial efficiency will be calculated as the amount of oxygen the heart consumes to perform work. The ENERGY trial will be the first proof of concept study to determine whether metabolic drugs are a potential preventive therapy for HCM. Given that trimetazidine is already being used in clinical practice, there is large potential to swiftly implement this drug in HCM therapy."	"Role of Akirin1 in the regulation of skeletal muscle fiber-type switch. Akirin1 is a highly conserved ubiquitously expressed nuclear protein. Owing to its strong nuclear localization signal and protein-protein interaction properties, Akirin1 has been speculated to regulate transcription of target genes as a cofactor. Previous studies have reported Akirin1 as a downstream target of myostatin, a potent negative regulator of myogenesis. Mice lacking myostatin displayed enhanced Akirin1 gene expression. Further, in vitro evidence has shown Akirin1 overexpression leads to hypertrophy in C2 C 12 myotubes. In this study, we used Akirin1 knockout mice as a model system to further elucidate the function of Akirin1 in fully differentiated skeletal muscle. Akirin1 knockout mice did not show any obvious phenotypic difference when compared with wild type. However, promoter-reporter assay suggested that Akirin1 regulated the transcription of muscle-specific RING finger 1 (MuRF-1), an important E3 ubiquitin ligase in skeletal muscle. Furthermore, ablation of Akirin1 resulted in increased type IIa and decreased type I muscle fibers, which was further supported by an increase in Myh2 and decrease in Myh7 gene expression. Also, histochemical studies for succinate dehydrogenase activity revealed a less oxidative muscle in the absence of Akirin1. Together, our study suggests a novel role of Akirin1 in maintaining the muscle fiber type and regulation of the metabolic activity of the skeletal muscle."	"Different Clinical Presentation and Tissue Characterization in a Monozygotic Twin Pair with MYH7 Mutation-Related Hypertrophic Cardiomyopathy. This case report demonstrates a pair of monozygotic twins with hypertrophic cardiomyopathy (HCM) carrying the same pathogenic mutation of MYH7 (p.G768R; c.2302G&gt;A), detected by whole exome and Sanger genetic sequencing methods. On multi-modality imaging, they were reported to have similar, but not identical, morphologic expression. Particularly, the clinical presentation and tissue characteristics were not the same. Late gadolinium enhancement (LGE) and T1 mapping of cardiac magnetic resonance showed different extents of myocardial fibrotic characteristics in the twins (twin A: 16.3% LGE and 32.6% extracellular volume [ECV] of the whole left ventricle; twin B: 5.4% LGE and 28.1% ECV of the whole left ventricle). This extraordinary case of HCM provides evidence on the complex pathophysiological mechanisms of HCM and suggests the likely impact of epigenetics and environmental factors on HCM phenotype."	"Atrophy, oxidative switching and ultrastructural defects in skeletal muscle of the ataxia telangiectasia mouse model. Ataxia telangiectasia is a rare, multi system disease caused by ATM kinase deficiency. Atm-knockout mice recapitulate premature aging, immunodeficiency, cancer predisposition, growth retardation and motor defects, but not cerebellar neurodegeneration and ataxia. We explored whether Atm loss is responsible for skeletal muscle defects by investigating myofiber morphology, oxidative/glycolytic activity, myocyte ultrastructural architecture and neuromuscular junctions. Atm-knockout mice showed reduced muscle and fiber size. Atrophy, protein synthesis impairment and a switch from glycolytic to oxidative fibers were detected, along with an increase of in expression of slow and fast myosin types (Myh7, and Myh2 and Myh4, respectively) in tibialis anterior and solei muscles isolated from Atm-knockout mice. Transmission electron microscopy of tibialis anterior revealed misalignments of Z-lines and sarcomeres and mitochondria abnormalities that were associated with an increase in reactive oxygen species. Moreover, neuromuscular junctions appeared larger and more complex than those in Atm wild-type mice, but with preserved presynaptic terminals. In conclusion, we report for the first time that Atm-knockout mice have clear morphological skeletal muscle defects that will be relevant for the investigation of the oxidative stress response, motor alteration and the interplay with peripheral nervous system in ataxia telangiectasia."	"Altered force generation and cell-to-cell contractile imbalance in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is mainly caused by mutations in sarcomeric proteins. Thirty to forty percent of identified mutations are found in the ventricular myosin heavy chain (β-MyHC). A common mechanism explaining how numerous mutations in several different proteins induce a similar HCM-phenotype is unclear. It was proposed that HCM-mutations cause hypercontractility, which for some mutations is thought to result from mutation-induced unlocking of myosin heads from a so-called super-relaxed state (SRX). The SRX was suggested to be related to the &quot;interacting head motif,&quot; i.e., pairs of myosin heads folded back onto their S2-region. Here, we address these structural states of myosin in context of earlier work on weak binding cross-bridges. However, not all HCM-mutations cause hypercontractility and/or are involved in the interacting head motif. But most likely, all mutations alter the force generating mechanism, yet in different ways, possibly including inhibition of SRX. Such functional-hyper- and hypocontractile-changes are the basis of our previously proposed concept stating that contractile imbalance due to unequal fractions of mutated and wildtype protein among individual cardiomyocytes over time will induce cardiomyocyte disarray and fibrosis, hallmarks of HCM. Studying β-MyHC-mutations, we found substantial contractile variability from cardiomyocyte to cardiomyocyte within a patient's myocardium, much higher than in controls. This was paralleled by a similarly variable fraction of mutant MYH7-mRNA (cell-to-cell allelic imbalance), due to random, burst-like transcription, independent for mutant and wildtype MYH7-alleles. Evidence suggests that HCM-mutations in other sarcomeric proteins follow the same disease mechanism."	"Transcriptional cofactor Vgll2 is required for functional adaptations of skeletal muscle induced by chronic overload. Skeletal muscle is composed of heterogeneous populations of myofibers classified as slow- and fast-twitch fibers. Myofiber size and composition are drastically changed in response to physiological demands. We previously showed that transcriptional cofactor vestigial-like (Vgll) 2 is a pivotal regulator of slow muscle gene programming under sedentary conditions. However, whether Vgll2 is required for skeletal muscle adaptations after chronic overload is unclear. Therefore, we investigated the role of Vgll2 in chronic overload-inducing skeletal muscle adaptations using synergist ablation (SA) on plantaris. We found that Vgll2 is an essential regulator of the switch towards a slow-contractile phenotype and oxidative metabolism during chronic overload. Mice lacking Vgll2 exhibited limited fiber type transition and downregulation of genes related to lactate metabolism and their regulator peroxisome proliferator-activated receptor gamma coactivator 1α1, after SA, was augmented in Vgll2-deficient mice compared with in wild-type mice. Mechanistically, increased muscle usage elevated Vgll2 levels and promoted the interaction between Vgll2 and its transcription partners such as TEA domain1 (TEAD1), MEF2c, and NFATc1. Calcium ionophore treatment promoted nuclear translocation of Vgll2 and increased TEAD-dependent MYH7 promotor activity in a Vgll2-dependent manner. Taken together, these data demonstrate that Vgll2 plays an important role for functional adaptation of skeletal muscle to chronic overload."	"GDF11 Attenuated ANG II-Induced Hypertrophic Cardiomyopathy and Expression of ANP, BNP and Beta-MHC Through Down- Regulating CCL11 in Mice. Growth differentiation factor 11 (GDF11) decreases with age, and increased C-C motif chemokine 11 (CCL11) is involved in aging. However, the effects of GDF11 on Angiotensin II (ANG II)-induced hypertrophic cardiomyopathy and expression of markers for volume overload and hypertrophy such as ANP, BNP and beta-MHC, as well as the relationship between GDF11 and CCL11 in hypertrophic cardiomyopathy are unclear. Therefore, the current study aimed to examine the effects of GDF11 on ANG II-induced hypertrophic cardiomyopathy and expression of ANP, BNP and beta-MHC in mice, and explore possible molecular mechanisms. Vectors were constructed and viruses were packaged. Mouse cardiomyocytes were treated with ANG II for 24 h. Meanwhile, mouse cardiomyocytes were divided into 4 groups: (1) control; (2) ANG II; (3) ANG II+GDF11; and (4) ANG II+CCL11. Furthermore, mouse cardiomyocytes were treated with GDF11 and CCL11 proteins for 48 h, respectively. The thickness of IVS and LVPS during systole and diastole were measured by cardiac ultrasound in the mouse model of hypertrophic cardiomyopathy. The relative expression of ANP, BNP, beta-MHC, CCL11 and GDF11 in cardiomyocytes or heart tissue of mice was detected by qPCR or Western blot. 3'- UTR luciferase reporter assay was utilized to examine the relationship between GDF11 and the expression of CCL11. The expression of ANP, BNP, and beta-MHC in mouse cardiomyocytes was significantly increased after the cells were treated with 800 nM ANG II, which was utilized in the following cell experiments. After ANG II treatment, 0.2 ng/ml GDF11 group displayed the highest inhibition of expression of ANP, BNP and beta-MHC in mouse cardiomyocytes, whereas 50 ng/ml CCL11 group displayed the highest stimulation of the expression. GDF11 at 10 ng/ml significantly decreased the expression of CCL11 in mouse cardiomyocytes as compared to the control group. Mice treated with ANG II had increased thickness of IVS and LVPS during both systole and diastole, which was significantly attenuated by GDF11 overexpression. GDF11 overexpression attenuated the increase in expression of ANP, BNP and beta-MHC in the mice model of hypertrophic cardiomyopathy. The relative serum concentration of GDF11 was markedly decreased, and CCL11 was dramatically increased in mice with hypertrophic cardiomyopathy. GDF11 overexpression restored the serum concentration of GDF11 and CCL11 in the mice model of hypertrophic cardiomyopathy. In addition, GDF11 interference group had markedly increased expression of CCL11, whereas GDF11 overexpression group had significantly decreased expression of CCL11 in luciferase reporter assay. GDF11 attenuated ANG II-induced hypertrophic cardiomyopathy and expression of ANP, BNP and beta-MHC through down-regulating CCL11 in mice."	"Evidence for skeletal muscle fiber type-specific expressions of mechanosensors. Mechanosensors govern muscle tissue integrity and constitute a subcellular structure known as costameres. Costameres physically link the muscle extracellular matrix to contractile and signaling 'hubs' inside muscle fibers mainly via integrins and are localized beneath sarcolemmas of muscle fibers. Costameres are the main mechanosensors converting mechanical cues into biological events. However, the fiber type-specific costamere architecture in muscles is unexplored. We hypothesized that fiber types differ in the expression of genes coding for costamere components. By coupling laser microdissection to a multiplex tandem qPCR approach, we demonstrate that type 1 and type 2 fibers indeed show substantial differences in their mechanosensor complexes. We confirmed these data by fiber type population-specific protein analysis and confocal microscopy-based localization studies. We further show that knockdown of the costamere gene integrin-linked kinase (Ilk) in muscle precursor cells results in significantly increased slow-myosin-coding Myh7 gene, while the fast-myosin-coding genes Myh1, Myh2, and Myh4 are downregulated. In parallel, protein synthesis-enhancing signaling molecules (p-mTOR<sup>Ser2448</sup>, p &lt; 0.05; p-P70S6K<sup>Thr389</sup>, tendency with p &lt; 0.1) were reduced upon Ilk knockdown. However, overexpression of slow type-inducing NFATc1 in muscle precursor cells did not change Ilk or other costamere gene expressions. In addition, we demonstrate fiber type-specific costamere gene regulation upon mechanical loading and unloading conditions. Our data imply that costamere genes, such as Ilk, are involved in the control of muscle fiber characteristics. Further, they identify costameres as muscle fiber type-specific loading management 'hubs' and may explain adaptation differences of muscle fiber types to mechanical (un)loading."	"Early dysregulation of cardiac-specific microRNA-208a is linked to maladaptive cardiac remodelling in diabetic myocardium. The diabetic heart undergoes remodelling contributing to an increased incidence of heart failure in individuals with diabetes at a later stage. The molecular regulators that drive this process in the diabetic heart are still unknown. Real-time (RT) PCR analysis was performed to determine the expression of cardiac specific microRNA-208a in right atrial appendage (RAA) and left ventricular (LV) biopsy tissues collected from diabetic and non-diabetic patients undergoing coronary artery bypass graft surgery. To determine the time-dependent changes, cardiac tissue were collected from type 2 diabetic mice at different age groups. A western blotting analysis was conducted to determine the expression of contractile proteins α- and β-myosin heavy chain (MHC) and thyroid hormone receptor-α (TR-α), the negative regulator of β-MHC. To determine the beneficial effects of therapeutic modulation of miR-208a, high glucose treated adult mouse HL-1 cardiomyocytes were transfected with anti-miR-208a. RT-PCR analysis showed marked upregulation of miR-208a from early stages of diabetes in type 2 diabetic mouse heart, which was associated with a marked increase in the expression of pro-hypertrophic β-MHC and downregulation of TR-α. Interestingly, upregulation of miR-208a preceded the switch of α-/β-MHC isoforms and the development of diastolic and systolic dysfunction. We also observed significant upregulation of miR-208a and modulation of miR-208a associated proteins in the type 2 human diabetic heart. Therapeutic inhibition of miR-208a activity in high glucose treated HL-1 cardiomyocytes prevented the activation of β-MHC and hence the hypertrophic response. Our results provide the first evidence that early modulation of miR-208a in the diabetic heart induces alterations in the downstream signaling pathway leading to cardiac remodelling and that therapeutic inhibition of miR-208a may be beneficial in preventing diabetes-induced adverse remodelling of the heart."	"Targeted next-generation sequencing in Slovak cardiomyopathy patients. For the first time we used targeted next-generation sequencing to detect candidate pathogenic variants in Slovak cardiomyopathy patients. Targeted next-generation sequencing is considered to be the best practice in genetic diagnostics of cardiomyopathies. However, in Slovakia, with high cardiomyopathies prevalence of 1/440, the current diagnostic tests are still based on Sanger sequencing of a few genes. Consequently, little is known about the exact contribution of pathogenic variants in known cardiomyopathy genes in Slovak patients. We used a panel of 46 known cardiomyopathy-associated genes to detect genetic variants in 16 Slovak cardiomyopathy patients (6 dilated, 8 hypertrophic, 2 non-compaction subtypes). We identified candidate pathogenic variants in 11 of 16 patients (69 %). Genes with higher count of candidate pathogenic variants were MYBPC3, MYH and TTN, each with 3 different variants. Seven variants ACTC1 (c.329C&gt;T), ANKRD1 (c.683G&gt;T), MYH7 (c.1025C&gt;T), PKP2 (c.2003delA), TTN (c.51655C&gt;T, c.84841G&gt;T, c.101874_101881delAGAATTTG) have been detected for the first time and might represent Slovak-specific genetic cause. We have performed genetic testing of previously untested Slovak cardiomyopathy patients using next-generation sequencing cardiomyopathy gene panel. Given the high percentage of candidate pathogenic variants it should be recommended to implement this method into routine genetic diagnostic practice in Slovakia (Tab. 4, Ref. 39)."	"Evaluating the Clinical Validity of Hypertrophic Cardiomyopathy Genes. Genetic testing for families with hypertrophic cardiomyopathy (HCM) provides a significant opportunity to improve care. Recent trends to increase gene panel sizes often mean variants in genes with questionable association are reported to patients. Classification of HCM genes and variants is critical, as misclassification can lead to genetic misdiagnosis. We show the validity of previously reported HCM genes using an established method for evaluating gene-disease associations. A systematic approach was used to assess the validity of reported gene-disease associations, including associations with isolated HCM and syndromes including left ventricular hypertrophy. Genes were categorized as having definitive, strong, moderate, limited, or no evidence of disease causation. We also reviewed current variant classifications for HCM in ClinVar, a publicly available variant resource. Fifty-seven genes were selected for curation based on their frequent inclusion in HCM testing and prior association reports. Of 33 HCM genes, only 8 (24%) were categorized as definitive ( MYBPC3, MYH7, TNNT2, TNNI3, TPM1, ACTC1, MYL2, and MYL3); 3 had moderate evidence ( CSRP3, TNNC1, and JPH2; 33%); and 22 (66%) had limited (n=16) or no evidence (n=6). There were 12 of 24 syndromic genes definitively associated with isolated left ventricular hypertrophy. Of 4191 HCM variants in ClinVar, 31% were in genes with limited or no evidence of disease association. The majority of genes previously reported as causative of HCM and commonly included in diagnostic tests have limited or no evidence of disease association. Systematically curated HCM genes are essential to guide appropriate reporting of variants and ensure the best possible outcomes for HCM families."	"Digenic Inheritance of LAMA4 and MYH7 Mutations in Patient with Infantile Dilated Cardiomyopathy. Background and objectives: Dilated cardiomyopathy (DCM) is a rare cardiac disease characterised by left ventricular enlargement, reduced left ventricular contractility, and impaired systolic function. Childhood DCM is clinically and genetically heterogenous and associated with mutations in over 100 genes. The aim of this study was to identify novel variations associated with infantile DCM. Materials and Methods: Targeted next generation sequencing (NGS) of 181 cardiomyopathy-related genes was performed in three unrelated consanguineous families from Saudi Arabia. Variants were confirmed and their frequency established in 50 known DCM cases and 80 clinically annotated healthy controls. Results: The three index cases presented between 7 and 10 months of age with severe DCM. In Family A, there was digenic inheritance of two heterozygous variants: a novel variant in LAMA4 (c.3925G &gt; A, p.Asp1309Asn) and a known DCM mutation in MYH7 (c.2770G &gt; A; p.Glu924Lys). The LAMA4 p.Asp1309Asn variant was predicted to be likely pathogenic according to international guidelines. The other two families had no identifiable potentially deleterious variants. Conclusions: Inheritance of two genetic variants may have a synergistic or dose effect to cause severe DCM. We report of a novel p.Asp1309Asn variation associated with DCM. Targeted NGS is useful in the molecular diagnosis of DCM and to guide whole-family management and counselling."	"Prenatal exposure to testosterone induces cardiac hypertrophy in adult female rats through enhanced Pkcδ expression in cardiac myocytes. High circulating androgen in women with polycystic ovary syndrome (PCOS) may increase the risk of cardiovascular disease in offspring. The aim of the present study is to investigate whether maternal androgen excess in the rat PCOS model would lead to cardiac hypertrophy in offspring. Maternal testosterone propionate (maternal-TP)-treated adult female offspring displayed cardiac hypertrophy associated with local high cardiac dihydrotestosterone (DHT). The molecular markers of cardiac hypertrophy along with androgen receptor (AR) and PKCδ, were increased in the Maternal-TP group. Treatment of primary neonatal rat ventricular cardiomyocytes (NRCMs) and H9c2 cells with DHT significantly increased cell size and upregulated PKCδ expression, which could be attenuated by AR antagonist. Treatment with phorbol 12-myristate 13-acetate (PMA), a PKC activator, significantly increased cell size and upregulated myh7 level. Rottlerin, that may inhibit PKCδ, significantly reduced the hypertrophic effect of DHT and PMA on NRCMs and H9c2 cells. Chromatin immunoprecipitation revealed that AR could bind to Pkcδ promoter. Our results indicate that prenatal exposure to testosterone may induce cardiac hypertrophy in adult female rats through enhanced Pkcδ expression in cardiac myocytes."	"Modeling Human Dilated Cardiomyopathy Using Humans. NA"	"Novel Adult-Onset Systolic Cardiomyopathy Due to MYH7 E848G Mutation in Patient-Derived Induced Pluripotent Stem Cells. A novel myosin heavy chain 7 mutation (E848G) identified in a familial cardiomyopathy was studied in patient-specific induced pluripotent stem cell-derived cardiomyocytes. The cardiomyopathic human induced pluripotent stem cell-derived cardiomyocytes exhibited reduced contractile function as single cells and engineered heart tissues, and genome-edited isogenic cells confirmed the pathogenic nature of the E848G mutation. Reduced contractility may result from impaired interaction between myosin heavy chain 7 and cardiac myosin binding protein C."	"MicroRNA-375-3p inhibitor suppresses angiotensin II-induced cardiomyocyte hypertrophy by promoting lactate dehydrogenase B expression. Cardiac hypertrophy is a myocardial enlargement due to overload pressure, and the primary cause of heart failure. We investigated the function of miR-375-3p in cardiac hypertrophy and its regulating mechanisms. miR-375-3p was upregulated in hearts of the transverse aortic constriction rat model and angiotensin II (Ang II)-induced primary cardiomyocyte hypertrophy model; the opposite was observed for lactate dehydrogenase B (LDHB) protein expression. miR-375-3p knockdown reduced the surface area of primary cardiomyocytes increased by Ang II treatment and decreased the B-natriuretic peptide (BNP) and β-myosin heavy chain (β-MHC) messenger RNA (mRNA) and protein levels. miR-375-3p was also observed to directly target LDHB. LDHB knockdown increased the surface area of Ang II-treated primary cardiomyocytes and increased the BNP and β-MHC mRNA and protein levels. LDHB knockdown attenuated the effects of miR-375-3p on the surface area of primary cardiomyocytes and BNP and β-MHC levels. Therefore, miR-375-3p inhibitor suppresses Ang II-induced cardiomyocyte hypertrophy by promoting LDHB expression."	"Binary Colloidal Crystals Drive Spheroid Formation and Accelerate Maturation of Human-Induced Pluripotent Stem Cell-Derived Cardiomyocytes. The development of human-induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) provides significant advances to cell therapy, disease modeling, and drug screening applications. However, the current differentiation protocol is inefficient in mimicking biophysical and biochemical characteristics of cardiac niche. Hence, immature cardiomyocytes are often generated. In this study, hiPSC-CMs were generated on a new family of substrates called monolayer binary colloidal crystals (BCCs). Four BCCs were fabricated with different sizes (2 or 5 or 0.4 or 0.2 μm) and materials [Si or polystyrene (PS) or poly(methyl methacrylate)] abbreviated as 2PS, 5PS, 2PM, and 5PM. BCCs have complex surface micro-/nanotopographies and heterogeneous chemistries which are important modulators in microenvironments in vitro. The results showed that hiPSCs formed adhered spheroids with strong pluripotent markers ( Oct4, Nanog, and Sox2) on PM surfaces compared to PS and flat surfaces. After 30-day differentiation, hiPSC-CMs on PM surfaces showed markedly improved myofibril ultrastructures, Ca<sup>2+</sup> handling, and electrophysiological properties, indicating that more mature hiPSC-CMs were generated. hiPSC-CMs generated on 5PM are more similar to adult heart tissue compared to other surfaces in terms of genes ( ACTC1, TNNT2, RYR2, SERCA2a, SCN5a, KCNJ2, CACNA1c, ITGB1, GJA1, MYH6, and MYH7) and protein (ssTnI and cTnI) expressions. We further demonstrated that 5PM surfaces facilitated cadherin switching (from E- to N-) during cardiac differentiation and mature N-cadherin expression, which were positively correlated with the cardiogensis markers ( GATA4, MEF2c, and NKX2.5). This study illuminated that a tailored surface nanotopography was beneficial in hiPSC culture and in situ cardiac differentiation. This one-step approach and BCCs can be a next-generation tool for hiPSC expansion and CM differentiation."	"High-throughput single-molecule RNA imaging analysis reveals heterogeneous responses of cardiomyocytes to hemodynamic overload. The heart responds to hemodynamic overload through cardiac hypertrophy and activation of the fetal gene program. However, these changes have not been thoroughly examined in individual cardiomyocytes, and the relation between cardiomyocyte size and fetal gene expression remains elusive. We established a method of high-throughput single-molecule RNA imaging analysis of in vivo cardiomyocytes and determined spatial and temporal changes during the development of heart failure. We applied three novel single-cell analysis methods, namely, single-cell quantitative PCR (sc-qPCR), single-cell RNA sequencing (scRNA-seq), and single-molecule fluorescence in situ hybridization (smFISH). Isolated cardiomyocytes and cross sections from pressure overloaded murine hearts after transverse aortic constriction (TAC) were analyzed at an early hypertrophy stage (2 weeks, TAC2W) and at a late heart failure stage (8 weeks, TAC8W). Expression of myosin heavy chain β (Myh7), a representative fetal gene, was induced in some cardiomyocytes in TAC2W hearts and in more cardiomyocytes in TAC8W hearts. Expression levels of Myh7 varied considerably among cardiomyocytes. Myh7-expressing cardiomyocytes were significantly more abundant in the middle layer, compared with the inner or outer layers of TAC2W hearts, while such spatial differences were not observed in TAC8W hearts. Expression levels of Myh7 were inversely correlated with cardiomyocyte size and expression levels of mitochondria-related genes. We developed a new image-analysis pipeline to allow automated and unbiased quantification of gene expression at the single-cell level and determined the spatial and temporal regulation of heterogenous Myh7 expression in cardiomyocytes after pressure overload."	"Brain renin-angiotensin system blockade with orally active aminopeptidase A inhibitor prevents cardiac dysfunction after myocardial infarction in mice. Brain renin-angiotensin system (RAS) hyperactivity has been implicated in sympathetic hyperactivity and progressive left ventricular (LV) dysfunction after myocardial infarction (MI). Angiotensin III, generated by aminopeptidase A (APA), is one of the main effector peptides of the brain RAS in the control of cardiac function. We hypothesized that orally administered firibastat (previously named RB150), an APA inhibitor prodrug, would attenuate heart failure (HF) development after MI in mice, by blocking brain RAS hyperactivity. Two days after MI, adult male CD1 mice were randomized to three groups, for four to eight weeks of oral treatment with vehicle (MI + vehicle), firibastat (150 mg/kg; MI + firibastat) or the angiotensin I converting enzyme inhibitor enalapril (1 mg/kg; MI + enalapril) as a positive control. From one to four weeks post-MI, brain APA hyperactivity occurred, contributing to brain RAS hyperactivity. Firibastat treatment normalized brain APA hyperactivity, with a return to the control values measured in sham group two weeks after MI. Four and six weeks after MI, MI + firibastat mice had a significant lower LV end-diastolic pressure, LV end-systolic diameter and volume, and a higher LV ejection fraction than MI + vehicle mice. Moreover, the mRNA levels of biomarkers of HF (Myh7, Bnp and Anf) were significantly lower following firibastat treatment. For a similar infarct size, the peri-infarct area of MI + firibastat mice displayed lower levels of mRNA for Ctgf and collagen types I and III (markers of fibrosis) than MI + vehicle mice. Thus, chronic oral firibastat administration after MI in mice prevents cardiac dysfunction by normalizing brain APA hyperactivity, and attenuates cardiac hypertrophy and fibrosis."	"Maternal high-fat diet alters angiotensin II receptors and causes changes in fetal and neonatal rats†. Maternal high-fat diet (HFD) during pregnancy is linked to cardiovascular diseases in postnatal life. The current study tested the hypothesis that maternal HFD causes myocardial changes through angiotensin II receptor (AGTR) expression modulation in fetal and neonatal rat hearts. The control group of pregnant rats was fed a normal diet and the treatment group of pregnant rats was on a HFD (60% kcal fat). Hearts were isolated from embryonic day 21 fetuses (E21) and postnatal day 7 pups (PD7). Maternal HFD decreased the body weight of the offspring in both E21 and PD7. The ratio of heart weight to body weight was increased in E21, but not PD7, when compared to the control group. Transmission electron microscopy revealed disorganized myofibrils and effacement of mitochondria cristae in the treatment group. Maternal HFD decreased S-phase and increased G1-phase of the cellular cycle for fetal and neonatal cardiac cells. Molecular markers of cardiac hypertrophy, such as Nppa and Myh7, were found to be increased in the treatment group. There was an associated increase in Agtr2 mRNA and protein, whereas Agtr1a mRNA and AGTR1 protein were decreased in HFD fetal and neonatal hearts. Furthermore, maternal HFD decreased glucocorticoid receptors (GRs) binding to glucocorticoid response elements at the Agtr1a and Agtr2 promoter, which correlated with downregulation of GR in fetal and neonatal hearts. These findings suggest that maternal HFD may promote premature termination of fetal and neonatal cardiomyocyte proliferation and compensatory hypertrophy through intrauterine modulation of AGTR1 and AGTR2 expression via GR dependent mechanism."	"Clinical diversity of MYH7-related cardiomyopathies: Insights into genotype-phenotype correlations. MYH7-related disease (MRD) is the most common hereditary primary cardiomyopathy (CM), with pathogenic MYH7 variants accounting for approximately 40% of familial hypertrophic CMs. MRDs may also present as skeletal myopathies, with or without CM. Since pathogenic MYH7 variants result in highly variable clinical phenotypes, from mild to fatal forms of cardiac and skeletal myopathies, genotype-phenotype correlations are not always apparent, and translation of the genetic findings to clinical practice can be complicated. Data on genotype-phenotype correlations can help facilitate more specific and personalized decisions on treatment strategies, surveillance, and genetic counseling. We present a series of six MRD pedigrees with rare genotypes, encompassing various clinical presentations and inheritance patterns. This study provides new insights into the spectrum of MRD that is directly translatable to clinical practice."	"Inula Japonica Thunb. Flower Ethanol Extract Improves Obesity and Exercise Endurance in Mice Fed A High-Fat Diet. Inula japonica Thunb. (Asteraceae) is a flowering plant that grows mainly in Korea, Japan, and China and its flower extract has diverse biological effects such as anti-inflammatory and antioxidative activities. However, the effects on obesity and enhancement of endurance capacity have not been explored yet. This study aims to reveal the effects of I. japonica flower ethanol extract (IJE) on obesity and endurance capacity in high-fat diet (HFD) fed C57BL/6J mice and the mechanism. IJE inhibited lipid accumulation in 3T3-L1 adipocytes in vitro. Also, IJE-fed mice showed reduced body weight gain, hepatic lipid, and body fat mass, and increased muscle weight. IJE reduced lipid accumulation in the liver and adipose tissue by decreasing lipogenic and adipogenic gene expression. Additionally, consumption of low-dose IJE significantly enhanced endurance capacity via increasing AMP-activated protein kinase activity and mRNA levels of Myh7 and Myh2. Luteolin and 1β-hydroxyalantolactone (1β-HA), compounds of IJE, are involved in anti-adipogenesis in the 3T3-L cells and only luteolin increased the protein levels of MHC during C2C12 myoblast differentiation. Collectively, our results suggest that consumption of IJE not only helps to prevent obesity but also enhances endurance capacity reduced by HFD."	"Genetic characterization and genotype-phenotype associations in a large cohort of patients with hypertrophic cardiomyopathy - An ancillary study of the Portuguese registry of hypertrophic cardiomyopathy. We present an ancillary study of the Portuguese Registry of Hypertrophic Cardiomyopathy (PRo-HCM). This is one of the largest HCM genetic studies based on a registry. Collected genetic variants were re-analysed for pathogenicity. Demographic, clinical, imaging and outcome data were analysed for associations with genotype, focusing on comparisons between patients with (G+) vs without (G-) a pathogenic/likely pathogenic (P/LP) variant in one the 9 main causal sarcomeric genes. From the 1042 patients in the registry, 528 (51%) had genetic testing. 152 (28%) were G+ and 98 pts. (19%) had variants of unknown significance. From the patients with the 9 mentioned genes sequenced (424 pts), 14.6% had P/LP variants in MYBPC3, 8.7% MYH7, 4.5% TNNT2, 1.7% TNNI3. Patients were 51 ± 16 years-old, 59% males. Genotype was associated with the following: birthplace (p = 0.005); age (p &lt; 0.001); family history of HCM (p &lt; 0.0005); hypertension (p &lt; 0.0005); chest pain (p = 0.015); pattern of hypertrophy (p = 0.006); left ventricular hypertrophy on the ECG (p &lt; 0.0005); family history of sudden cardiac death (SCD) (p = 0.002). G+ patients more frequently had more than one risk factor for SCD (p = 0.002) and a higher ESC-SCD risk score (p = 0.003). In survival analysis, G+ was associated with SCD (p = 0.017) and MYH7+ with LV systolic dysfunction (p = 0.038). Half of the registry patients had genetic testing. Sarcomere-positive patients had distinct demographics, ECG, imaging characteristics and family history and are at increased risk of SCD. The presence of a MYH7 mutation was associated with evolution towards LV systolic dysfunction."	"A Contraction Stress Model of Hypertrophic Cardiomyopathy due to Sarcomere Mutations. Thick-filament sarcomere mutations are a common cause of hypertrophic cardiomyopathy (HCM), a disorder of heart muscle thickening associated with sudden cardiac death and heart failure, with unclear mechanisms. We engineered four isogenic induced pluripotent stem cell (iPSC) models of β-myosin heavy chain and myosin-binding protein C3 mutations, and studied iPSC-derived cardiomyocytes in cardiac microtissue assays that resemble cardiac architecture and biomechanics. All HCM mutations resulted in hypercontractility with prolonged relaxation kinetics in proportion to mutation pathogenicity, but not changes in calcium handling. RNA sequencing and expression studies of HCM models identified p53 activation, oxidative stress, and cytotoxicity induced by metabolic stress that can be reversed by p53 genetic ablation. Our findings implicate hypercontractility as a direct consequence of thick-filament mutations, irrespective of mutation localization, and the p53 pathway as a molecular marker of contraction stress and candidate therapeutic target for HCM patients."	"A novel mutation of the MYH7 gene in a patient with hypertrophic cardiomyopathy. Goel N, Huddleston CB, Fiore AC. A novel mutation of the MYH7 gene in a patient with hypertrophic cardiomyopathy. Turk J Pediatr 2018; 60: 315-318. Hypertrophic cardiomyopathy (HCM) is a genetic disorder characterized by asymmetric cardiac hypertrophy due to inherited mutations in genes that encode sarcomeric proteins. MYH7, which encodes β-myosin heavy chain, is among the most commonly mutated genes in patients affected by HCM. We aimed to identify the specific mutation responsible for HCM in a six-month old Caucasian patient. NextGen DNA sequencing revealed a novel p.Ala1328Thr (A1328T) mutation of MYH7 in the affected patient as well as his asymptomatic father and asymptomatic brother. The clinical details of this mutation are described for the first time in this report. The genetic variant affects a residue that is highly conserved across species. Theoretical analysis suggests that A1328T is very likely deleterious to β-myosin heavy chain protein structure and function. Furthermore, this novel mutation was not observed with any significant frequency in approximately 6,500 healthy individuals of European and African American ancestry in the NHLBI Exome Sequencing Project, underlining the potential pathogenicity of this variant."	"Quantification of species-specific meat proteins in cooked and smoked sausages using infusion mass spectrometry. Label-free quantification combined with high-resolution infusion-based mass spectrometry (MS) was evaluated to authenticate 'horse sausages' made from horse meat and pork. Four types of industrially processed sausages, including cooked horse meat, pork and beef, and their mixtures were analysed. Quantitation and evaluation of the species composition were based on a set of 11 species-specific meat proteins and 14 unique heat-stable peptide markers. Using infusion MS, the highest distinguishing value was found in four proteins, namely, horse myosin-7 (MYH7_HORSE) and horse myoglobin (MYG_HORSE), porcine myosin-4 (MYH4_PIG) and bovine myoglobin (MYG_BOVIN). The limit of detection was 5% (w/w) for pork and beef in the three-component matrix and 1% (w/w) for horse meat. The proteins' abundance was computed using a peak intensity measurement technique for precursor ions, based on the extracted ion currents/intensities of precursor ions. The procedure enabled discrimination between horse meat, pork and beef proteins, as well as estimation of the relative changes in protein abundance in all the examined samples. Substantial differences in the abundance of specific proteins were obtained from the pure meat samples, three-component mixtures and commercial sausages. The method may be useful in the preliminary screening of protein-rich food samples, aimed at fraud detection and estimation of the overall level of adulteration."	"Targeted panel sequencing in adult patients with left ventricular non-compaction reveals a large genetic heterogeneity. Left ventricular non-compaction (LVNC) is a cardiomyopathy that may be of genetic origin; however, few data are available about the yield of mutation, the spectrum of genes and allelic variations. The aim of this study was to better characterize the genetic spectrum of isolated LVNC in a prospective cohort of 95 unrelated adult patients through the molecular investigation of 107 genes involved in cardiomyopathies and arrhythmias. Fifty-two pathogenic or probably pathogenic variants were identified in 40 patients (42%) including 31 patients (32.5%) with single variant and 9 patients with complex genotypes (9.5%). Mutated patients tended to have younger age at diagnosis than patients with no identified mutation. The most prevalent genes were TTN, then HCN4, MYH7, and RYR2. The distribution includes 13 genes previously reported in LVNC and 10 additional candidate genes. Our results show that LVNC is basically a genetic disease and support genetic counseling and cardiac screening in relatives. There is a large genetic heterogeneity, with predominant TTN null mutations and frequent complex genotypes. The gene spectrum is close to the one observed in dilated cardiomyopathy but with specific genes such as HCN4. We also identified new candidate genes that could be involved in this sub-phenotype of cardiomyopathy."	"Curcumin alleviates isoproterenol-induced cardiac hypertrophy and fibrosis through inhibition of autophagy and activation of mTOR. Curcumin has been reported to possess cardioprotective effects. However, the potential molecular mechanism of curcumin is still not clear. The aim of the present study was to investigate the role of curcumin in regulating autophagy and mammalian target of rapamycin (mTOR) signaling in isoproterenol-induced cardiac hypertrophy and fibrosis in the rat. Rats model of cardiac hypertrophy and fibrosis was induced by isoprenaline (5 mg/kg/day, subcutaneous injection), which were treated with or without curcumin (200 mg/kg/day, intragastric administration). Masson's trichrome staining was performed to investigate the effect of curcumin on fibrosis of cardiac hypertrophy rat. The expression of hypertrophic and fibrosis markers was determined by RT-qPCR. The protein expression of autophagic markers, mTOR, and phosphorylated-mTOR (p-mTOR) was performed by Western blotting. Isoprenaline treatment significantly up-regulated the mRNA expression of hypertrophic (ANP and MYH7) and fibrotic (procollagen I and III) markers in the hearts from rats. All of these markers were reversed by curcumin treatment in isoproterenol-treated rats. Histological analysis showed that curcumin attenuated the interstitial fibrosis of heart triggered by isoproterenol. Moreover, isoproterenol significantly reduced the mRNA levels of mTOR and the protein expression of p-mTOR. However, isoprenaline caused a significant induction of the mRNA levels of LC3 and Beclin-1 and the protein expression of LC3-II and Beclin-1, as well as LC3-II/I ratio. Curcumin abolished these isoprenaline-mediated changes in mTOR/autophagy signaling pathway. Our data demonstrated that curcumin targeted mTOR/autophagy axis could attenuate cardiac hypertrophy and fibrosis in a rat model."	"Atrial Arrhythmias and Extensive Left Atrial Fibrosis as the Initial Presentation of MYH7 Gene Mutation. NA"	"[Gene screening and phenotype analysis in a pedigree with familial hypertrophic cardiomyopathy from Yunnan Province]. Objective: To identify the disease-causing mutations in a pedigree with familial hypertrophic cardiomyopathy (HCM) from Yunnan province, and analyze the relationship between the genotype and the phenotype. Methods: The blood samples and the clinical data of the HCM family members were collected.The coding exons and their flanking intronic regions of 28 previously reported genes related to HCM were screened in the proband by high-throughput sequencing. The mutations in proband were confirmed and detected in all family members as well as in 159 healthy controls by Sanger sequencing.The relationship between the genotype and the phenotype was analyzed in this pedigree. Results: Two missense mutations of Arg1045His and Ala26Val in β myosin heavy chain gene(MYH7) were identified. Genetic screening showed that the mother and brother of the proband carried Arg1045His mutation.Both mutations were absent in other family members and in 159 healthy controls.Disease onset age was less than 50 years old in this pedigree, chest pain, exertional dyspnea and syncope were the major symptoms, and all accompanied by severe left ventricular hypertrophy and left ventricular outflow tract stenosis.The grandma of the proband suffered sudden cardiac death. The proband had the worst symptoms and the earliest disease onset in this pedigree. Conclusions: We find a pedigree with familial HCM from Yunnan province carrying MYH7 Arg1045His and Ala26Val mutations. The study suggests that Arg1045His mutation in MYH7 gene caused HCM is malignant with early onset, severe ventricular hypertrophy and poor prognosis. Arg1045His and Ala26Val double-mutant might have dosage effects and aggravate the clinical phenotype of the patient. 目的: 筛查云南省一家族性肥厚型心肌病家系的致病基因突变位点,并分析其基因型与临床表型的关系。 方法: 入选2016年1月到云南省第一人民医院心血管内科就诊的云南省彝族一家族性肥厚型心肌病家系,共3代6人参与本研究。收集入选者的血液样本及临床资料,采用高通量测序对先证者的28个已知常见的肥厚型心肌病致病基因进行筛查,采用Sanger测序对发现的突变位点进行验证,对其家系成员及159名健康对照组人群进行检测,并分析其临床表型。 结果: 测序发现先证者携带β肌球蛋白重链基因(MYH7)Arg1045His和Ala26Val 2种错义突变,先证者母亲及哥哥均携带MYH7 Arg1045His突变。其他家系成员及对照组人群均未发现上述突变。该家系中肥厚型心肌病患者临床表现为胸痛、劳力性呼吸困难、晕厥,伴有明显心肌肥厚及左心室流出道梗阻,发病年龄均&lt;50岁。先证者外祖母在调查前已发生心脏性猝死。携带双突变的先证者为家系中发病年龄最小、临床症状最严重者。 结论: 本研究发现云南省一家族性肥厚型心肌病家系携带MYH7 Arg1045His和Ala26Val突变,研究结果提示Arg1045His突变引起的肥厚型心肌病发病早、心肌肥厚程度严重、预后差,MYH7基因Arg1045His和Ala26Val双突变可能具有剂量效应,加重患者的临床表型。."	"Enhancing all-in-one bioreactors by combining interstitial perfusion, electrical stimulation, on-line monitoring and testing within a single chamber for cardiac constructs. Tissue engineering strategies have been extensively exploited to generate functional cardiac patches. To maintain cardiac functionality in vitro, bioreactors have been designed to provide perfusion and electrical stimulation, alone or combined. However, due to several design limitations the integration of optical systems to assess cardiac maturation level is still missing within these platforms. Here we present a bioreactor culture chamber that provides 3D cardiac constructs with a bidirectional interstitial perfusion and biomimetic electrical stimulation, allowing direct cellular optical monitoring and contractility test. The chamber design was optimized through finite element models to house an innovative scaffold anchoring system to hold and to release it for the evaluation of tissue maturation and functionality by contractility tests. Neonatal rat cardiac fibroblasts subjected to a combined perfusion and electrical stimulation showed positive cell viability over time. Neonatal rat cardiomyocytes were successfully monitored for the entire culture period to assess their functionality. The combination of perfusion and electrical stimulation enhanced patch maturation, as evidenced by the higher contractility, the enhanced beating properties and the increased level of cardiac protein expression. This new multifunctional bioreactor provides a relevant biomimetic environment allowing for independently culturing, real-time monitoring and testing up to 18 separated patches."	"Inhibition of cardiac hypertrophy by aromadendrin through down-regulating NFAT and MAPKs pathways. Cardiac hypertrophy is a maladaptive response to pressure overload and it's an important risk factor for heart failure and other adverse cardiovascular events. Aromadendrin (ARO) has remarkable anti-lipid peroxidation efficacy and is a potential therapeutic medicine for the management of diabetes and cardiovascular diseases. In this study, we established the cardiac hypertrophy cell model in rat neonatal ventricular cardiomyocytes (RNVMs) with phenylephrine. The cell model was characterized by the increased protein synthesis and cardiomyocyte size, which can be normalized by ARO treatment in both concentration- and time-dependent manner. In transverse aortic constriction (TAC) induced cardiac hypertrophy model, ARO administration improved the impairment of cardiac function and alleviated the cardiac hypertrophy indicators, like ventricular mass/body weight, myocyte cross-sectional area, and the expression of ANP, BNP and Myh7. ARO treatment also suppressed the cardiac fibrosis and the correlated fibrogenic genes. Our further investigation revealed ARO could down-regulate pressure overload-induced Malondialdehyde (MDA) and 4-HNE expression, restore the decrease of GSH/GSSG ratio, meanwhile prevent nuclear translocation of NFAT and the activation of MAPKs pathways. Collectively, ARO has a protective effect against experimental cardiac hypertrophy in mice, suggesting its potential as a novel therapeutic drug for pathological cardiac hypertrophy."	"Sarcomere variants in arrhythmogenic cardiomyopathy: Pathogenic factor or bystander? Arrhythmogenic cardiomyopathy (ACM) is an inherited heart muscle disease, which is mainly caused by desmosomal mutations. Sarcomere variants were the primary genetic basis of hypertrophic cardiomyopathy (HCM) and were recently detected in arrhythmogenic cardiomyopathy (ACM). Our aim is to seek potential pathogenic variants of sarcomere genes in our ACM cohort and describe their characteristics. We performed targeted sequencing of 14 sarcomere genes in 84 patients with ACM and set strict criteria to identify potential pathogenic variants. Clinical screening was performed on all available family members of the patients carrying sarcomere variants and specific variants were tested in screened family members by Sanger sequencing. We identified 6 sarcomere variants in 6 (7%) patients, which were all definite ACM. Sarcomere variants were detected in NEBL, MYH7, MYH6 and TNNI3, with low prevalence in controls and predicted pathogenic in silico. Among these patients, three had previous detected PKP2 variants. Patients with sarcomere variants all experienced major arrhythmic cardiac event (MACE) with the average age of the first documented MACE being 41.2 ± 11.0 years. Pedigrees analysis showed none of the sarcomere variants carriers among the family members were affected, indicating very low penetrance. We detected some sarcomere variants in our ACM cohort. Although those patients with sarcomere variants had severe arrhythmic burden, family co-segregation analysis didn't strongly support a primary role in the pathogenesis of ACM."	"Genetic Basis of Severe Childhood-Onset Cardiomyopathies. Childhood cardiomyopathies are progressive and often lethal disorders, forming the most common cause of heart failure in children. Despite severe outcomes, their genetic background is still poorly characterized. The purpose of this study was to characterize the genetics of severe childhood cardiomyopathies in a countrywide cohort. The authors collected a countrywide cohort, KidCMP, of 66 severe childhood cardiomyopathies from the sole center in Finland performing cardiac transplantation. For genetic diagnosis, next-generation sequencing and subsequent validation using genetic, cell biology, and computational approaches were used. The KidCMP cohort presents remarkable early-onset and severe disorders: the median age of diagnosis was 0.33 years, and 17 patients underwent cardiac transplantation. The authors identified the pathogenic variants in 39% of patients: 46% de novo, 34% recessive, and 20% dominantly-inherited. The authors report NRAP underlying childhood dilated cardiomyopathy, as well as novel phenotypes for known heart disease genes. Some genetic diagnoses have immediate implications for treatment: CALM1 with life-threatening arrhythmias, and TAZ with good cardiac prognosis. The disease genes converge on metabolic causes (PRKAG2, MRPL44, AARS2, HADHB, DNAJC19, PPA2, TAZ, BAG3), MAPK pathways (HRAS, PTPN11, RAF1, TAB2), development (NEK8 and TBX20), calcium signaling (JPH2, CALM1, CACNA1C), and the sarcomeric contraction cycle (TNNC1, TNNI3, ACTC1, MYH7, NRAP). Childhood cardiomyopathies are typically caused by rare, family-specific mutations, most commonly de novo, indicating that next-generation sequencing of trios is the approach of choice in their diagnosis. Genetic diagnoses may suggest intervention strategies and predict prognosis, offering valuable tools for prioritization of patients for transplantation versus conservative treatment."	"Genotype-Positive Status Is Associated With Poor Prognoses in Patients With Left Ventricular Noncompaction Cardiomyopathy. Background Left ventricular noncompaction cardiomyopathy ( LVNC ) is a genetically and phenotypically heterogeneous disease. This study aims to investigate the genetic basis and genotype-phenotype correlations in a cohort of Chinese patients with LVNC . Methods and Results A total of 72 cardiomyopathy-associated genes were comprehensively screened in 83 adults and 17 children with LVNC by targeted sequencing. Pathogenicity of the detected variants was determined according to their prevalence and American College of Medical Genetics and Genomics recommendations. Baseline and follow-up clinical data were collected. The primary end point was a composite of death and heart transplantation. Overall, 42 pathogenic variants were identified in 38 patients (38%), with TTN , MYH 7, MYBPC 3, and DSP being the most commonly involved genes. At baseline, genotype-positive adults had higher rates of atrial fibrillation and family history, and lower left ventricular ejection fraction, compared with genotype-negative adults. During a median follow-up of 4.2 years, more primary end points occurred in genotype-positive adults than in genotype-negative adults (50.0% versus 23.5%; P=0.013). Multivariable analysis demonstrated that genotype-positive status was associated with higher risks of death and heart transplantation, independent of age, sex, and cardiac function at baseline in patients with LVNC (adjusted hazards ratio, 2.49; 95% confidence interval, 1.15-5.37; P=0.020). Conclusions Our study revealed a distinct genetic spectrum in Chinese patients with LVNC , with variants in TTN , MYH 7, MYBPC 3, and DSP being the most common. The presence of pathogenic variants is an independent risk factor for adverse outcomes and may aid in risk stratification in adult patients. Larger studies are needed to confirm these findings."	"Incident Atrial Fibrillation Is Associated With MYH7 Sarcomeric Gene Variation in Hypertrophic Cardiomyopathy. Background Although atrial fibrillation (AF) is common in hypertrophic cardiomyopathy (HCM) patients, the relationship between genetic variation and AF has been poorly defined. Characterizing genetic subtypes of HCM and their associations with AF may help to improve personalized medical care. We aimed to investigate the link between sarcomeric gene variation and incident AF in HCM patients. Methods and Results Patients from the multinational Sarcomeric Human Cardiomyopathy Registry were followed for incident AF. Those with likely pathogenic or pathogenic variants in sarcomeric genes were included. The AF incidence was ascertained by review of medical records and electrocardiograms at each investigative site. One thousand forty adult HCM patients, without baseline AF and with likely pathogenic or pathogenic variation in either MYH7 (n=296), MYBPC3 (n=659), or thin filament genes (n=85), were included. Compared with patients with variation in other sarcomeric genes, those with MYH7 variants were younger on first clinical encounter at the Sarcomeric Human Cardiomyopathy Registry site and more likely to be probands than the MYBPC3 variants. During an average follow-up of 7.2 years, 198 incident AF events occurred. Patients with likely pathogenic or pathogenic mutations in MYH7 had the highest incidence of AF after adjusting for age, sex, proband status, left atrial size, maximal wall thickness, and peak pressure gradient (hazard ratio, 1.7; 95% CI, 1.1-2.6; P=0.009). Conclusions During a mean follow-up of 7.2 years, new-onset AF developed in 19% of HCM patients with sarcomeric mutations. Compared with other sarcomeric genes, patients with likely pathogenic or pathogenic variation in MYH7 had a higher rate of incident AF independent of clinical and echocardiographic factors."	"Hypertrophic cardiomyopathy R403Q mutation in rabbit β-myosin reduces contractile function at the molecular and myofibrillar levels. In 1990, the Seidmans showed that a single point mutation, R403Q, in the human β-myosin heavy chain (MHC) of heart muscle caused a particularly malignant form of familial hypertrophic cardiomyopathy (HCM) [Geisterfer-Lowrance AA, et al. (1990) Cell 62:999-1006.]. Since then, more than 300 mutations in the β-MHC have been reported, and yet there remains a poor understanding of how a single missense mutation in the MYH7 gene can lead to heart disease. Previous studies with a transgenic mouse model showed that the myosin phenotype depended on whether the mutation was in an α- or β-MHC backbone. This led to the generation of a transgenic rabbit model with the R403Q mutation in a β-MHC backbone. We find that the in vitro motility of heterodimeric R403Q myosin is markedly reduced, whereas the actin-activated ATPase activity of R403Q subfragment-1 is about the same as myosin from a nontransgenic littermate. Single myofibrils isolated from the ventricles of R403Q transgenic rabbits and analyzed by atomic force microscopy showed reduced rates of force development and relaxation, and achieved a significantly lower steady-state level of isometric force compared with nontransgenic myofibrils. Myofibrils isolated from the soleus gave similar results. The force-velocity relationship determined for R403Q ventricular myofibrils showed a decrease in the velocity of shortening under load, resulting in a diminished power output. We conclude that independent of whether experiments are performed with isolated molecules or with ordered molecules in the native thick filament of a myofibril, there is a loss-of-function induced by the R403Q mutation in β-cardiac myosin."	"[Analysis of genotype-phenotype correlation for a novel MYH7-D554Y mutation identified in an ethnic Han Chinese pedigree affected with hypertrophic cardiomyopathy]. To explore the genotype-phenotype correlation of a MYH7-D554Y mutation identified in an ethnic Han Chinese pedigree affected with hypertrophic cardiomyopathy. Ninety six cardiovascular disease-related genes were detected in the proband by exonic amplification and high-throughput sequencing. Suspected mutations were verified by Sanger sequencing among 300 healthy controls as well as family members of the proband. The pathogenicity and conservation of the detected mutations were analyzed with ClustalX, MutationTaster, PolyPhen-2, Provean and SIFT software. Four of the 5 first-degree relatives of the proband were diagnosed with hypertrophic cardiomyopathy. The proband has featured extremely hypertrophic left ventricular wall with a maximal thickness of 35 mm. Genetic testing showed that four of them have carried a heterozygous c.1660G&gt;T (p.Asp554Tyr) mutation of the MYH7 gene, who the remaining one was phenotypically normal and did not carry the mutation. The mutation has not been recorded by the Human Gene Mutation Database (HGMD) and other databases. Bioinformatics analysis suggested that the mutation site is highly conserved and that the mutation is pathogenic. The p.Asp554Tyr mutation of the MYH7 gene probably underlies the hypertrophic cardiomyopathy in this pedigree."	"Aged Nicotinamide Riboside Kinase 2 Deficient Mice Present an Altered Response to Endurance Exercise Training. Background: Skeletal muscle aging is marked by the development of a sarcopenic phenotype, a global decline of muscle energetic capacities, and an intolerance to exercise. Among the metabolic disorders involved in this syndrome, NAD metabolism was shown to be altered in skeletalmuscle, with an important role for the NAMPT enzyme recycling the nicotinamide precursor. An alternative pathway for NAD biosynthesis has been described for the nicotinamide riboside vitamin B3 precursor used by the NMRK kinases, including the striated muscle-specific NMRK2. Aim: With this study, our goal is to explore the ability of 16-month-old Nmrk2<sup>-/-</sup> mice to perform endurance exercise and study the consequences on muscle adaptation to exercise. Methods: 10 control and 6 Nmrk2<sup>-/-</sup> mice were used and randomly assigned to sedentary and treadmill endurance training groups. After 9 weeks of training, heart and skeletal muscle samples were harvested and used for gene expression analysis, NAD levels measurements and immunohistochemistry staining. Results: Endurance training triggered a reduction in the expression of Cpt1b and AcadL genes involved in fatty acid catabolism in the heart of Nmrk2<sup>-/-</sup> mice, not in control mice. NAD levels were not altered in heart or skeletal muscle, nor at baseline neither after exercise training in any group. Myh7 gene encoding for the slow MHC-I was more strongly induced by exercise in Nmrk2<sup>-/-</sup> mice than in controls. Moreover, IL-15 expression levels is higher in Nmrk2<sup>-/-</sup> mice skeletal muscle at baseline compared to controls. No fiber type switch was observed in plantaris after exercise, but fast fibers diameter was reduced in aged control mice, not in Nmrk2<sup>-/-</sup> mice. No fiber type switch or diameter modification was observed in soleus muscle. Conclusion: In this study, we demonstrated for the first time a phenotype in old Nmrk2<sup>-/-</sup> mice in response to endurance exercise training. Although NMRK2 seems to be predominantly dispensable to maintain global NAD levels in heart and skeletal muscle, we demonstrated a maladaptive metabolic response to exercise in cardiac and skeletal muscle, showing that NMRK2 has a specific and restricted role in NAD signaling compared to the NAMPT pathway."	"Ectopic Overexpression of Porcine Myh1 Increased in Slow Muscle Fibers and Enhanced Endurance Exercise in Transgenic Mice. Myosin heavy chain (MyHC) isoforms consist of Myh7, Myh2, Myh1, and Myh4, which are expressed in skeletal muscle tissues during postnatal development. These genes influence the contraction⁻relaxation activity in skeletal muscles and are involved in determining muscle composition such as the proportion of fast-to-slow and/or slow-to-fast fiber types. Among them, Myh1 is associated with skeletal muscle contraction and is involved in both slow-to-fast and fast-to-slow transition. However, the muscle transition mechanism is not well understood. For this study, we first produced porcine Myh1 transgenic (TG) mice to study whether the ectopic expressed porcine Myh1 gene had any effects on muscle composition, especially on slow-type muscle components. Our results showed that the factors associated with slow muscles, such as Myh7, Myoglobin, Troponin (slow-type units), and cytochrome C, were highly expressed in the quadriceps muscles of Myh1 transgenic mice. Furthermore, the ectopic porcine MYH1 protein was located only in the slow-type muscle fibers of the quadriceps muscles in Myh1 transgenic mice. In physical endurance tests, Myh1 transgenic mice ran longer and further on a treadmill than wild-type (WT) mice. These data fully supported our hypothesis that Myh1 is associated with slow muscle composition, with overexpression of Myh1 in muscle tissues possibly being a new key in modulating muscle fiber types. Our study provides a better understanding of muscle composition metabolism, physical mobility, and genetic factors in muscle fatigue."	"Leveraging the power of new molecular technologies in the clinical setting requires unprecedented awareness of limitations and drawbacks: experience of one diagnostic laboratory. Advances in molecular technologies and in-silico variant prediction tools offer wide-ranging opportunities in diagnostic settings, yet they also present with significant limitations. Here, we contextualise the limitations of next-generation sequencing (NGS), multiplex ligation-dependent probe amplification (MLPA) and in-silico prediction tools routinely used by diagnostic laboratories by reviewing specific experiences from our diagnostic laboratory. We investigated discordant annotations and/or incorrect variant 'callings' in exons of 56 genes constituting our cardiomyopathy and connective tissue disorder NGS panels. Discordant variants and segmental duplications (SD) were queried using the National Center for Biotechnology Information (NCBI) Basic Local Alignment Search Tool and the University of California Santa Cruz genome browser, respectively, to identify regions of high homology. Discrepant variant analyses by in-silico models were re-evaluated using updated file entries. We observed a 5% error rate in MYH7 variant 'calling' using MLPA, which resulted from &gt;90% homology of the MYH7 probe-binding site to MYH6. SDs were detected in TTN, PKP2 and MYLK. SDs in MYLK presented the highest risk (15.7%) of incorrect variant 'calling'. The inaccurate 'callings' and discrepant in-silico predictions were resolved following detailed investigation into the source of error. Recognising the limitations described here may help avoid incorrect diagnoses and leverage the power of new molecular technologies in diagnostic settings."	"Identify Cross Talk Between Circadian Rhythm and Coronary Heart Disease by Multiple Correlation Analysis. Disorder in circadian rhythm has been revealed as a risk factor for coronary heart disease. Several studies in molecular biology established a gene interaction network using coronary heart susceptibility genes and the circadian rhythm pathway. However, cross talk between genes was mostly discovered in single gene pairs. There might be combination sets of genes intergraded as a unit to regulate the network. To resolve multiple variables in coronary heart susceptibility genes controlling circadian rhythm pathways, a multiple correlation analysis was applied to the transcriptome. Nine genes, including CUGBP, Elav-like family member (CELF); sodium leak channel, nonselective (NALCN); protein phosphatase 2 regulatory subunit B gamma (PPP2R2C); tubulin alpha 1c (TUBA1C); microtubule-associated protein 4 (MAP4); cofilin 1 (CFL1); myosin heavy chain 7 (MYH7); QKI, KH domain containing RNA binding (QKI); and maternal embryonic leucine zipper kinase (MELK), from coronary heart susceptibility were identified to predict the outcome of a linear combination of circadian rhythm pathway genes with R factor more than 0.7. G protein subunit alpha o1 (GNAO1), protein kinase C gamma (PRKCG), RBX, and G protein subunit beta 1 (GNB1) in the circadian rhythm pathway are characterized as combination variables to coexpress with coronary heart susceptibility genes."	"The protective effect of Er-Xian decoction against myocardial injury in menopausal rat model. Er-Xian decoction (EXD), a formula of Chinese medicine, is often used to treat menopausal syndrome in China. The aim of the present study was to explore the potential cardioprotective mechanism of EXD against myocardial injury in an ovariectomy-induced menopausal rat model. We divided the female Wistar rats into ovariectomy group and sham operation group (SHAM group). The ovariectomized (OVX) rats received treatment of vehicle (OVX group), EXD (EXD group) or 17β-estradiol (E2 group). After 12-week of treatment, the level of estradiol in serum was detected using an electrochemiluminescence immunoassay, and electrophysiologic changes in myocardial action potentials (AP) were evaluated using intracellular microelectrode technique. Changes in the histopathology of the left ventricle and the ultrastructure of the cardiomyocytes were observed by hematoxylin and eosin (HE) staining and transmission electronmicroscopy to assess myocardial injury. Microarrays were applied for the evaluation of gene expression profiles in ventricular muscle of the OVX and EXD rats. Further pathway analyses of the differential expression genes were carried out using the Kyoto Encyclopedia of Genes and Genomes (KEGG). And real-time quantitative RT-PCR (qRT-PCR) was used for verification of the key findings. The results from electrophysiological and histomorphological observations demonstrated that EXD had a substantial myocardial protective effect. The EXD-treated rats, in comparison with the OVX rats, demonstrated up-regulated expression of 28 genes yet down-regulated expression of 157 genes in the ventricular muscle. The qRT-PCR assay validated all selected differential expression genes. The KEGG pathway analysis showed that the down-regulated genes were relevant to cardiomyopathy and myocardial contractility. EXD could decrease the mRNA expressions of cardiac myosin (Myh7, Myl2) and integrin (Itgb5) in the ventricular myocardium. EXD had a protective effect against myocardial injury in OVX rats, and this cardioprotective effect may be associated with modulation of the expression of cardiac myosin or integrin at the mRNA level."	"The Extract of Soybean Protein Increases Slow-Myosin Heavy Chain Expression in C2C12 Myotubes. Skeletal muscle is composed of four types of fibers in mammals; oxidative slow-twitch type I, oxidative fast-twitch IIA, and glycolytic fast-twitch IIB and IIX/D. In this study using C2C12 myotubes, an extract of soybean protein significantly upregulated mRNA level of myosin heavy chain 7 (Myh7), the predominant isoform expressed in oxidative slow-twitch type I and downregulated mRNA levels of Myh4, the predominant isoform expressed in glycolytic fast-twitch IIB. Similarly, its hydrolysate prepared using digestive enzyme also significantly increased Myh7 expression. In contrast, no significant change was observed in Myh4 mRNA level after the hydrolysate treatment. These findings suggest that dietary intake of the soybean protein extract may increase oxidative slow-twitch fiber in skeletal muscle."	"A novel MYH7 founder mutation causing Laing distal myopathy in Southern Spain. MYH7 gene mutations are associated with wide clinical and genetic heterogeneity. We report a novel founder mutation in MYH7 in Southern Spain (Andalucía). We studied two index patients and 24 family members from two apparently independent families by physical examination, serum creatine-kinase, muscle MRI, sequencing studies and genetic linkage analysis. Sixteen individuals were heterozygous for a (p.R1560P) variant in the MYH7 gene. Haplotype was consistent with a common ancestor for the two families. The patients displayed the classic Laing distal myopathy phenotype, with hanging first toe as the initial presentation, even in mildly affected patients who declared themselves asymptomatic, although neck flexor weakness was revealed as an early sign in some cases. MRI showed that the sartorius was the first muscle involved, even in two out of three asymptomatic carriers. Our findings support the novel variant p.R1560P in MYH7 as a founder mutation in Andalucía. The early involvement of the sartorius muscle in MRI may be useful as an indicator of affection status."	"Molecular analysis of inherited cardiomyopathy using next generation semiconductor sequencing technologies. Cardiomyopathies are the most common clinical and genetic heterogeneity cardiac diseases, and genetic contribution in particular plays a major role in patients with primary cardiomyopathies. The aim of this study is to investigate cases of inherited cardiomyopathy (IC) for potential disease-causing mutations in 64 genes reported to be associated with IC. A total of 110 independent cases or families diagnosed with various primary cardiomyopathies, including hypertrophic cardiomyopathy, dilated cardiomyopathy, restrictive cardiomyopathy, arrhythmogenic right ventricular cardiomyopathy, left ventricular non-compaction, and undefined cardiomyopathy, were collected after informed consent. A custom designed panel, including 64 genes, was screened using next generation sequencing on the Ion Torrent PGM platform. The best candidate disease-causing variants were verified by Sanger sequencing. A total of 78 variants in 73 patients were identified. After excluding the variants predicted to be benign and VUS, 26 pathogenic or likely pathogenic variants were verified in 26 probands (23.6%), including a homozygous variant in the SLC25A4 gene. Of these variants, 15 have been reported in the Human Gene Mutation Database or ClinVar database, while 11 are novel. The majority of variants were observed in the MYH7 (8/26) and MYBPC3 (6/26) gene. Titin (TTN) truncating mutations account for 13% in our dilated cardiomyopathy cases (3/23). This study provides an overview of the genetic aberrations in this cohort of Chinese IC patients and demonstrates the power of next generation sequencing in IC. Genetic results can provide precise clinical diagnosis and guidance regarding medical care for some individuals."	"Telomere shortening is a hallmark of genetic cardiomyopathies. This study demonstrates that significantly shortened telomeres are a hallmark of cardiomyocytes (CMs) from individuals with end-stage hypertrophic cardiomyopathy (HCM) or dilated cardiomyopathy (DCM) as a result of heritable defects in cardiac proteins critical to contractile function. Positioned at the ends of chromosomes, telomeres are DNA repeats that serve as protective caps that shorten with each cell division, a marker of aging. CMs are a known exception in which telomeres remain relatively stable throughout life in healthy individuals. We found that, relative to healthy controls, telomeres are significantly shorter in CMs of genetic HCM and DCM patient tissues harboring pathogenic mutations: TNNI3, MYBPC3, MYH7, DMD, TNNT2, and TTN Quantitative FISH (Q-FISH) of single cells revealed that telomeres were significantly reduced by 26% in HCM and 40% in DCM patient CMs in fixed tissue sections compared with CMs from age- and sex-matched healthy controls. In the cardiac tissues of the same patients, telomere shortening was not evident in vascular smooth muscle cells that do not express or require the contractile proteins, an important control. Telomere shortening was recapitulated in DCM and HCM CMs differentiated from patient-derived human-induced pluripotent stem cells (hiPSCs) measured by two independent assays. This study reveals telomere shortening as a hallmark of genetic HCM and DCM and demonstrates that this shortening can be modeled in vitro by using the hiPSC platform, enabling drug discovery."	"Clinical and Genetic Complexities of Left Ventricular Noncompaction: Preventing Overdiagnosis in a Disease We Do Not Understand. NA"	"Acute oral administration of L-leucine upregulates slow-fiber- and mitochondria-related genes in skeletal muscle of rats. Branched-chain amino acids promote both protein and mRNA synthesis through mechanistic target of rapamycin (mTOR) signaling. A previous report demonstrated that chronic branched-chain amino acid supplementation increased mitochondrial biogenesis in the skeletal muscle of middle-aged mice through activation of mTOR signaling. In this study, we hypothesized that the acute oral administration of L-leucine alone has the ability to alter the gene expression related to fiber type and metabolism in skeletal muscle of young rats through the activation of mTOR signaling. Although the gene expression of representative glycolytic enzymes (Hk2 and Eno3) was not altered, L-leucine administration (135 mg/100 g body weight) upregulated the expression of slow-fiber-related genes (Myh7, Myl3, and Tnni1) and a mitochondrial biogenesis-related gene (Ppargc1a) in the soleus and extensor digitorum longus muscles compared with the control. In addition, L-leucine treatment also upregulated the slow-fiber genes and mitochondrial gene expression in cultured C2C12 myotubes, whereas rapamycin inhibited the effects of L-leucine. However, L-alanine, L-phenylalanine, and L-valine treatment did not alter the expression of the fiber type- and metabolism-related genes as observed in L-leucine. Our results suggest that L-leucine may have the ability to alter skeletal muscle fiber type toward slow fiber and oxidative metabolism by upregulation of gene expression through mTOR signaling."	"Pulmonary arterial hypertension induced by a novel method: Twice-intraperitoneal injection of monocrotaline. Pulmonary arterial hypertension (PAH) in humans manifests as a chronic process. However, PAH induced by high-dose monocrotaline (MCT) in animals occurs as a subacute process. To establish a chronic PAH model, rats were randomly divided into three groups, control (ctrl), single injection (SI), and twice injection (TI) groups. Rats in the SI group received a single intraperitoneal injection of 40 mg/kg MCT on day 0. Rats in the TI group received twice injections of 20 mg/kg MCT on days 0 and 7. Survival percentage, characteristic changes of pulmonary arterial variables, and right ventricular features were evaluated. Thirty-five days after the first MCT injection, survival percentage in TI group was higher than that in the SI group. The mean pulmonary arterial pressure (mPAP), right ventricular hypertrophy index (RVHI), pulmonary vascular remodeling, serum tumor necrosis factor α (TNFα), and interleukin-6 (IL-6) were higher either in SI or in TI 28 and 35 days after the first MCT injection. The rats in the SI and TI groups exhibited higher right ventricle end diastolic diameter (RVEDD) and lower adjusted pulmonary artery acceleration time (PAAT/HR), tricuspid annular plane systolic excursion (TAPSE), cardiac output (CO) and right ventricle fractional shortening (RVFS) when compared with controls. However, mPAP, RVHI, TAPSE, PAAT/HR, CO, TNFα, and IL-6 were lower and RVEDD were higher in the TI group than in the SI group. Pulmonary macrophage infiltration and right ventricle (RV) fibrosis were lower in TI than SI groups. The cardiomyocyte cross-sectional area and the beta myosin heavy chain (MYH7) mRNA level of RV were lower in TI than SI, whereas alpha myosin heavy chain (MYH6) was increased. These results show that two intraperitoneal injections of 20 mg/kg MCT with seven days interval could induce a model similar to chronic PAH with increased survival percentage in rats. Impact statement We demonstrated previously that a single intraperitoneal injection of 40 mg/kg MCT produced a subacute, not chronic, PAH model in rats, and the short survival periods of these rats did not represent adequately the chronic PAH seen in humans. To overcome this limitation, in this study, the single dose of 40 mg/kg MCT was divided into twice injections of 20 mg/kg with an interval of seven days. This modified administration of MCT produced an animal model much more similar to chronic PAH with prolonged survival and characteristic changes of structures and function in pulmonary arteries and right ventricles."	"Expression of circular RNAs during C2C12 myoblast differentiation and prediction of coding potential based on the number of open reading frames and N6-methyladenosine motifs. The importance of circular RNAs (circRNAs) as regulators of muscle development and muscle-associated disorders is becoming increasingly apparent. To explore potential regulators of muscle differentiation, we determined the expression profiles of circRNAs of skeletal muscle C2C12 myoblasts and myotubes using microarray analysis. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) analyses were performed to explore circRNA functions. We also established competing endogenous RNA (ceRNA) networks using bioinformatics methods and predicted the coding potential of differentially expressed circRNAs. We found that 581 circRNAs were differentially regulated between C2C12 myoblasts and myotubes. Bioinformatics analysis suggested that the primary functions of the linear transcripts of the circRNAs were linked with organization of the cytoskeleton, calcium signaling, cell cycle, and metabolic pathways. ceRNA networks showed that the myogenic-specific genes myogenin, myocyte enhancer factor 2a, myosin heavy chain (Myh)-1, Myh7, and Myh7b could combine with 91 miRNAs and the top 30 upregulated circRNAs, forming 239 edges. According to the number of open reading frames and N<sup>6</sup>-methyladenosine motifs, we identified 224 circRNAs with coding potential, and performed GO and KEGG analyses based on the linear counterparts of 75 circRNAs. We determined that the 75 circRNAs were related to regulation of the actin cytoskeleton and metabolic pathways. We established expression profiles of circRNAs during C2C12 myoblast differentiation and predicted the function of differentially expressed circRNAs, which might be involved in skeletal muscle development. Our study offers new insight into the functions of circRNAs in skeletal muscle growth and development."	"Atorvastatin Attenuates Myocardial Hypertrophy Induced by Chronic Intermittent Hypoxia In Vitro Partly through miR-31/PKCε Pathway. Atorvastatin is proven to ameliorate cardiac hypertrophy induced by chronic intermittent hypoxia (CIH). However, little is known about the mechanism by which atorvastatin modulates CIH-induced cardiac hypertrophy, and whether specific hypertrophyrelated microRNAs are involved in the modulation. MiR-31 plays key roles in the development of cardiac hypertrophy induced by ischemia/hypoxia. This study examined whether miR-31 was involved in the protective role of atorvastatin against CIH-induced myocardial hypertrophy. H9c2 cells were subjected to 8-h intermittent hypoxia per day in the presence or absence of atorvastatin for 5 days. The size of cardiomyocytes, and the expression of caspase 3 and miR-31 were determined by Western blotting and RT-PCR, respectively. MiR-31 mimic or Ro 31-8220, a specific inhibitor of protein kinase C epsilon (PKCε), was used to determine the role of miR-31 in the anti-hypertrophic effect of atorvastatin on cardiomyocytes. PKCε in the cardiomyocytes with miR-31 upregulation or downregulation was detected using RT-PCR and Western blotting. The results showed that CIH induced obvious enlargement of cardiomyocytes, which was paralleled with increased atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and slow/beta cardiac myosin heavy-chain (MYH7) mRNA levels. All these changes were reversed by the treatment with atorvastatin. Meanwhile, miR-31 was increased by CIH in vitro. Of note, the atorvastatin pretreatment significantly increased the mRNA and protein expression of PKCe and decreased that of miR-31. Moreover, overexpression of miR-31 abolished the anti-hypertrophic effect of atorvastatin on cardiomyocytes. Upregulation and downregulation of miR-31 respectively decreased and increased the mRNA and protein expression of PKCε. These results suggest that atorvastatin provides the cardioprotective effects against CIH probably via up-regulating PKCε and down-regulating miR-31."	"Biobank-driven genomic discovery yields new insight into atrial fibrillation biology. To identify genetic variation underlying atrial fibrillation, the most common cardiac arrhythmia, we performed a genome-wide association study of &gt;1,000,000 people, including 60,620 atrial fibrillation cases and 970,216 controls. We identified 142 independent risk variants at 111 loci and prioritized 151 functional candidate genes likely to be involved in atrial fibrillation. Many of the identified risk variants fall near genes where more deleterious mutations have been reported to cause serious heart defects in humans (GATA4, MYH6, NKX2-5, PITX2, TBX5)<sup>1</sup>, or near genes important for striated muscle function and integrity (for example, CFL2, MYH7, PKP2, RBM20, SGCG, SSPN). Pathway and functional enrichment analyses also suggested that many of the putative atrial fibrillation genes act via cardiac structural remodeling, potentially in the form of an 'atrial cardiomyopathy'<sup>2</sup>, either during fetal heart development or as a response to stress in the adult heart."	"Coverage and diagnostic yield of Whole Exome Sequencing for the Evaluation of Cases with Dilated and Hypertrophic Cardiomyopathy. Targeted next generation sequencing of gene panels has become a popular tool for the genetic diagnosis of hypertrophic (HCM) and dilated cardiomyopathy (DCM). However, it is uncertain whether the use of Whole Exome Sequencing (WES) represents a more effective approach for diagnosis of cases with HCM and DCM. In this study, we performed indirect comparisons of the coverage and diagnostic yield of WES on genes and variants related to HCM and DCM versus 4 different commercial gene panels using 40 HCM and DCM patients, assuming perfect coverage in those panels. We identified 6 pathogenic or likely pathogenic among 14 HCM patients (diagnostic yield 43%). 3 pathogenic or likely pathogenic were found among the 26 DCM patients (diagnostic yield 12%). The coverage was similar to that of four existing commercial gene panels due to the clustering of mutation within MYH7, MYBPC3, TPM1, TNT2, and TTN. Moreover, the coverage of WES appeared inadequate for TNNI3 and PLN. We conclude that most of the pathogenic variants for HCM and DCM can be found within a small number of genes which were covered by all the commercial gene panels, and the application of WES did not increase diagnostic yield."	"First identification of homozygous truncating CSRP3 variants in two unrelated cases with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiovascular disease with an estimated prevalence of 1/500. More than 40 genes have been reported to cause HCM. Among them, CSRP3 is usually included on HCM gene panels used for molecular diagnosis by next-generation sequencing (NGS). To provide new insights into the pathophysiology of hypertrophic cardiomyopathy, a NGS workflow based on a panel of 48 cardiomyopathies-causing genes was analyzed on a cohort of 542 HCM patients. As expected, this molecular approach led to identify most pathogenic or likely pathogenic variants into prevalent HCM-causing genes: MYBPC3 (123/542; 22.7%), MYH7 (48/542; 8.9%), TNNT2 (12/542; 2.2%), and TNNI3 (10/542; 1.8%). Among MYBPC3 variants, 96 led to a premature stop codon (78%). More surprisingly, our molecular study led also to detect, for the first time, homozygous CSRP3 truncating variants in two unrelated HCM probands. Meta-analysis of rare previously reported CSRP3 variants on HCM probands using ACMG guidelines indicate that only one variation (p.Cys58Gly) could be considered as likely pathogen. By combining meta-analysis results and identification of two unrelated HCM patients with homozygous CSRP3 truncating variants, we suggest that the association of CSRP3 as a validated HCM-causing gene require additional studies and those CSRP3 variants could result in HCM with an autosomal recessive inheritance rather than with an autosomal dominant transmission as usually reported on HCM (OMIM 612124)."	"Label-free quantitative proteomic analysis reveals muscle contraction and metabolism proteins linked to ultimate pH in bovine skeletal muscle. The purpose of this research was to investigate the causes and consequences of pHu variations in beef cattle. A group of 176 Nellore beef cattle was evaluated and classified into two different pHu groups: High (≥6.0, N = 17) and Normal (&lt;5.8, N = 159). Plasma concentrations of cortisol and adrenocorticotropic hormone, lactate and glycogen muscular content, meat color, shear force and Longissimus thoracis muscle proteomic profile were evaluated and compared between pHu groups. Muscle glycogen content, meat color and shear force statistically differed between pHu groups. Label-free quantitative proteomic analysis revealed ten differentially abundant proteins between pHu groups, involved in metabolic processes and muscle contraction, which also were significantly correlated with pHu. Thirty-six and 31 proteins were exclusively present in Normal and High pHu group, respectively, which were related to TCA cycle, cortisol production, calcium regulation, and antioxidant function. The MYH7, UGP2, H2AFJ and VDAC3 were identified as potential indicators of pHu variations. CALM and NNT appeared to be interesting proteins to understand the metabolic pathways behind pHu. Data are available via ProteomeXchange with identifier PXD009320."	"Investigation of myocardial dysfunction using three-dimensional speckle tracking echocardiography in a genetic positive hypertrophic cardiomyopathy Chinese family. We previously reported four heterozygous missense mutations of MYH7, KCNQ1, MYLK2, and TMEM70 in a single three-generation Chinese family with dual Long QT and hypertrophic cardiomyopathy phenotypes for the first time. However, the clinical course among the family members was various, and the potential myocardial dysfunction has not been investigated. The objective of this study was to investigate the echocardiographic and electrocardiographic characteristics in a genetic positive Chinese family with hypertrophic cardiomyopathy and further to explore the association between myocardial dysfunction and electric activity, and the identified mutations. A comprehensive echocardiogram - standard two-dimensional Doppler echocardiography and three-dimensional speckle tracking echocardiography - and electrocardiogram were obtained for members in this family. As previously reported, four missense mutations - MYH7-H1717Q, KCNQ1-R190W, MYLK2-K324E, and TMEM70-I147T - were identified in this family. The MYH7-H1717Q mutation carriers had significantly increased left ventricular mass indices, elevated E/e' ratio, deteriorated global longitudinal stain, but enhanced global circumferential and radial strain compared with those in non-mutation patients (all p&lt;0.05). The KCNQ1-R190W carriers showed significantly prolonged QTc intervals, and the MYLK2-K324E mutation carriers showed inverted T-waves (both p&lt;0.05). However, the TMEM70-I147T mutation carriers had similar echocardiography and electrocardiographic data as non-mutation patients. Three of the identified four mutations had potential pathogenic effects in this family: MYH7-H1717Q was associated with increased left ventricular thickness, elevated left ventricular filling pressure, and altered myocardial deformation; KCNQ1-R190W and MYLK2-K324E mutations were correlated with electrocardiographic abnormalities reflected in long QT phenotype and inverted T-waves, respectively."	"Dasatinib induces gene expression of CYP1A1, CYP1B1, and cardiac hypertrophy markers (BNP, β-MHC) in rat cardiomyocyte H9c2 cells. Dasatinib is a new selective tyrosine kinase inhibitor that targets certain kinases involved in cellular growth and development. This drug belongs to a novel anticancer therapy aiming to increase the survival in patients with imatinib-resistant mutations. However, the dasatinib toxicity was reported as a side effect leading to arrhythmias and/or heart failure. Here, we investigated the possibility of dasatinib-induced toxicity in rat cardiomyocyte H9c2 cells. Our objectives were to investigate the ability of dasatinib to induce expression of cytochrome P450 (CYP1A1, CYP1B1) and cardiac hypertrophy markers (BNP, β-MHC) genes in H9c2 cells. To test this hypothesis, H9c2 cells were incubated with dasatinib at two concentrations (20 and 40 μM). Thereafter, CYP1A1, CYP1B1, BNP, and β-MHC were determined at gene expression level. Our findings showed that dasatinib induces the CYP1A1, CYP1B1, BNP, and β-MHC mRNA. The involvement of AhR/CYP1A1 pathway in dasatinib toxicity was tested by resveratrol (RES), an AhR antagonist. Interestingly, the increase in mRNA of different genes by dasatinib was not affected by RES, which confirms that these effects are not mediated through AhR. In addition, this was accompanied by a significant inhibition of constitutive expression of these genes by RES. The current work provides the first evidence for the ability of dasatinib to induce hypertrophic markers in H9c2 cells through AhR-independent pathway."	"Whole-exome sequencing identifies novel pathogenic mutations and putative phenotype-influencing variants in Polish limb-girdle muscular dystrophy patients. Limb girdle muscular dystrophies (LGMD) are a group of heterogeneous hereditary myopathies with similar clinical symptoms. Disease onset and progression are highly variable, with an elusive genetic background, and around 50% cases lacking molecular diagnosis. Whole exome sequencing (WES) was performed in 73 patients with clinically diagnosed LGMD. A filtering strategy aimed at identification of variants related to the disease included integrative analysis of WES data and human phenotype ontology (HPO) terms, analysis of genes expressed in muscle, analysis of the disease-associated interactome and copy number variants analysis. Genetic diagnosis was possible in 68.5% of cases. On average, 36.3 rare variants in genes associated with various muscle diseases per patient were found that could relate to the clinical phenotype. The putative causative mutations were mostly in LGMD-associated genes, but also in genes not included in the current LGMD classification (DMD, COL6A2, and COL6A3). In three patients, mutations in two genes were suggested as the joint cause of the disease (CAPN3+MYH7, COL6A3+CACNA1S, DYSF+MYH7). Moreover, a variety of phenotype-influencing variants were postulated, including in patients with an identified already known primary pathogenic mutation. We hypothesize that LGMD could be better described as oligogenic disorders in which dominant clinical presentation can result from the combined effect of mutations in a set of genes. In this view, the inter- and intrafamilial variability could reflect a specific genetic background and the presence of sets of phenotype-influencing or co-causative mutations in genes that either interact with the known LGMD-associated genes or are a part of the same pathways or structures."	"Drosophila model of myosin myopathy rescued by overexpression of a TRIM-protein family member. Myosin is a molecular motor indispensable for body movement and heart contractility. Apart from pure cardiomyopathy, mutations in MYH7 encoding slow/β-cardiac myosin heavy chain also cause skeletal muscle disease with or without cardiac involvement. Mutations within the α-helical rod domain of MYH7 are mainly associated with Laing distal myopathy. To investigate the mechanisms underlying the pathology of the recurrent causative MYH7 mutation (K1729del), we have developed a Drosophila melanogaster model of Laing distal myopathy by genomic engineering of the Drosophila Mhc locus. Homozygous Mhc<sup> K1728del </sup> animals die during larval/pupal stages, and both homozygous and heterozygous larvae display reduced muscle function. Flies expressing only Mhc<sup> K1728del </sup> in indirect flight and jump muscles, and heterozygous Mhc<sup> K1728del </sup> animals, were flightless, with reduced movement and decreased lifespan. Sarcomeres of Mhc<sup> K1728del </sup> mutant indirect flight muscles and larval body wall muscles were disrupted with clearly disorganized muscle filaments. Homozygous Mhc<sup> K1728del </sup> larvae also demonstrated structural and functional impairments in heart muscle, which were not observed in heterozygous animals, indicating a dose-dependent effect of the mutated allele. The impaired jump and flight ability and the myopathy of indirect flight and leg muscles associated with Mhc<sup> K1728del </sup> were fully suppressed by expression of Abba/Thin, an E3-ligase that is essential for maintaining sarcomere integrity. This model of Laing distal myopathy in Drosophila recapitulates certain morphological phenotypic features seen in Laing distal myopathy patients with the recurrent K1729del mutation. Our observations that Abba/Thin modulates these phenotypes suggest that manipulation of Abba/Thin activity levels may be beneficial in Laing distal myopathy."	"[Effects of hydrogen sulfide (H2S) on cardiac hypertrophy and miRNA-133a-mediated Ca<sup>2+</sup>/calcineurin/NFATc4 signal pathway in rats]. To investigate the effects of hydrogen sulfide (H2S) on the negatively regulation of cardiomyocyte hypertrophy and the relationship between the effect of H2S with miRNA-133a-mediated Ca<sup>2+</sup>/calcineurin/NFATc4 signal pathway. Cardiomyocyte hypertrophy was induced by isoproterenol (ISO). The cell surface area was measured by image analysis system (Leica). The expression of brain natriuretic peptide(BNP), β-myosin heavy chain(β-MHC), cystathionase (CSE), miRNA-133a, calcineurin (CaN) were detected by qRT-PCR. The protein expressions of CaN、nuclear factors of activated T cells (NFATc4) were detected by Western blot. The concentration of H2S in the cardiomyocyte was detected by Elisa. The concentration of intracellular calcium was measured by calcium imaging using confocal microscope. The nuclear translocation of NFATc4 was checked by immuno-fluorescence cell staining technique. ①The level of system of CSE/H2S and expression of miRNA-133a were significantly reduced in cardiomyocyte hypertrophy. Pretreatment with NaHS increased the concentration of H2S and the expression of miRNA-133a mRNA in cardiomyocytes, and suppressed cardiomyocyte hypertrophy. ②The concentration of intracellular calcium, the expression of CaN and nulear protein NFATc4 were significantly increased, and the nuclear translocation of NFATc4 were obviously enhanced in cardiomyocyte hypertrophy. NaHS pretreatment markedly inhibited these effects of ISO induced cardiomyocyte hypertrophy. ③Application of antagomir-133a reversed the inhibitory effects of NaHS on cardiomyocyte hypertrophy, and increased the influx of intracellular calcium, and elevated the expression of CaN and nuclear protein NFATc4, and enhanced the nuclear translocation of NFATc4. H2S can negatively regulate cardiomyocyte hypertrophy. The effects might be associated with H2S increasing expression of miRNA-133a and inhibiting inactivation of Ca<sup>2+</sup>/calcineurin/NFATc4 signal pathway."	"Commonly used thiol-containing antioxidants reduce cardiac differentiation and alter gene expression ratios of sarcomeric isoforms. Reactive oxygen species (ROS) scavengers such as beta-mercaptoethanol (BME) and monothiol glycerol (MTG) are extensively used in stem cell research to prevent cellular oxidative stress. However, how these antioxidant supplements impact stem cell cardiac differentiation, a process regulated by redox-signaling remains unknown. In this study, we found that removal of BME from the conventional high-glucose, serum-based differentiation medium improved cardiac differentiation efficiency by 2-3 fold. BME and MTG treatments during differentiation significantly reduced mRNA expression of cardiac progenitor markers (NKX2.5 and ISL1) as well as sarcomeric markers (MLC2A, MLC2V, TNNI3, MYH6 and MYH7), suggesting reduced cardiomyogenesis by BME or MTG. Moreover, BME and MTG altered the expression ratios between the sarcomeric isoforms. In particular, TNNI3 to TNNI1 ratio and MLC2V to MLC2A ratio were significantly lower in BME or MTG treated cells than untreated cells, implying altered cardiomyocyte phenotype and maturity. Lastly, BME and MTG treatments resulted in less frequent beating, slower contraction and relaxation velocities than untreated cells. Interestingly, none of the above-mentioned effects was observed with Trolox, a non-thiol based antioxidant, despite its strong antioxidant activity. This work demonstrates that commonly used antioxidant supplements may cause considerable changes to cellular redox state and the outcome of differentiation."	"Genetic background of Japanese patients with pediatric hypertrophic and restrictive cardiomyopathy. Hypertrophic cardiomyopathy (HCM) and restrictive cardiomyopathy (RCM) present a high risk for sudden cardiac death in pediatric patients. The aim of this study was to identify disease-associated genetic variants in Japanese patients with pediatric HCM and RCM. We analyzed 67 cardiomyopathy-associated genes in 46 HCM and 7 RCM patients diagnosed before 16 years of age using a next-generation sequencing system. We found that 78% of HCM and 71% of RCM patients carried disease-associated genetic variants. Disease-associated genetic variants were identified in 80% of HCM patients with a family history and in 77% of HCM patients with no apparent family history (NFH). MYH7 and/or MYBPC3 variants comprised 76% of HCM-associated variants, whereas troponin complex-encoding genes comprised 75% of the RCM-associated variants. In addition, 91% of HCM patients with implantable cardioverter-defibrillators and infant cases had NFH, and the 88% of HCM patients carrying disease-associated genetic variants were males who carried MYH7 or MYBPC3 variants. Moreover, two disease-associated LAMP2, one DES and one FHOD3 variants, were identified in HCM patients. In this study, pediatric HCM and RCM patients were found to carry disease-associated genetic variants at a high rate. Most of the variants were in MYH7 or MYPBC3 for HCM and TNNT2 or TNNI3 for RCM."	"Efficient Knock-in of a Point Mutation in Porcine Fibroblasts Using the CRISPR/Cas9-GMNN Fusion Gene. During CRISPR/Cas9 mediated genome editing, site-specific double strand breaks are introduced and repaired either unspecific by non-homologous end joining (NHEJ) or sequence dependent by homology directed repair (HDR). Whereas NHEJ-based generation of gene knock-out is widely performed, the HDR-based knock-in of specific mutations remains a bottleneck. Especially in primary cell lines that are essential for the generation of cell culture and animal models of inherited human diseases, knock-in efficacy is insufficient and needs significant improvement. Here, we tested two different approaches to increase the knock-in frequency of a specific point mutation into the MYH7-gene in porcine fetal fibroblasts. We added a small molecule inhibitor of NHEJ, SCR7 (5,6-bis((E)-benzylideneamino)-2-mercaptopyrimidin-4-ol), during genome editing and screened cell cultures for the point mutation. However, this approach did not yield increased knock-in rates. In an alternative approach, we fused humanized Cas9 (hCas9) to the N-terminal peptide of the Geminin gene (GMNN). The fusion protein is degraded in NHEJ-dominated cell cycle phases, which should increase HDR-rates. Using hCas9-GMNN and point mutation-specific real time PCR screening, we found a two-fold increase in genome edited cell cultures. This increase of HDR by hCas9-GMNN provides a promising way to enrich specific knock-in in porcine fibroblast cultures for somatic cloning approaches."	"Biomimetic engineering of the cardiac tissue through processing, functionalization, and biological characterization of polyester urethanes. Three-dimensional (3D) tissue models offer new tools in the study of diseases. In the case of the engineering of cardiac muscle, a realistic goal would be the design of a scaffold able to replicate the tissue-specific architecture, mechanical properties, and chemical composition, so that it recapitulates the main functions of the tissue. This work is focused on the design and preliminary biological validation of an innovative polyester urethane (PUR) scaffold mimicking cardiac tissue properties. The porous scaffold was fabricated by thermally induced phase separation (TIPS) from poly(ε-caprolactone) diol, 1,4-butanediisocyanate, and l-lysine ethyl ester. Morphological and mechanical scaffolds characterization was accomplished by confocal microscopy, and micro-tensile and compression techniques. Scaffolds were then functionalized with fibronectin by plasma treatment, and the surface treatment was studied by x-ray photoelectron spectroscopy, attenuated total reflectance Fourier transform infrared spectra, and contact angle measurements. Primary rat neonatal cardiomyocytes were seeded on scaffolds, and their colonization, survival, and beating activity were analyzed for 14 days. Signal transduction pathways and apoptosis involved in cells, the structural development of the heart, and its metabolism were analyzed. PUR scaffolds showed a porous-aligned structure and mechanical properties consistent with that of the myocardial tissue. Cardiomyocytes plated on the scaffolds showed a high survival rate and a stable beating activity. Serine/threonine kinase (AKT) and extracellular signal-regulated kinases (ERK) phosphorylation was higher in cardiomyocytes cultured on the PUR scaffold compared to those on tissue culture plates. Real-time polymerase chain reaction analysis showed a significant modulation at 14 days of cardiac muscle (MYH7, prepro-ET-1), hypertrophy-specific (CTGF), and metabolism-related (SLC2a1, PFKL) genes in PUR scaffolds."	"Muscular MRI-based algorithm to differentiate inherited myopathies presenting with spinal rigidity. Inherited myopathies are major causes of muscle atrophy and are often characterized by rigid spine syndrome, a clinical feature designating patients with early spinal contractures. We aim to present a decision algorithm based on muscular whole body magnetic resonance imaging (mWB-MRI) as a unique tool to orientate the diagnosis of each inherited myopathy long before the genetically confirmed diagnosis. This multicentre retrospective study enrolled 79 patients from referral centres in France, Brazil and Chile. The patients underwent 1.5-T or 3-T mWB-MRI. The protocol comprised STIR and T1 sequences in axial and coronal planes, from head to toe. All images were analyzed manually by multiple raters. Fatty muscle replacement was evaluated on mWB-MRI using both the Mercuri scale and statistical comparison based on the percentage of affected muscle. Between February 2005 and December 2015, 76 patients with genetically confirmed inherited myopathy were included. They were affected by Pompe disease or harbored mutations in RYR1, Collagen VI, LMNA, SEPN1, LAMA2 and MYH7 genes. Each myopathy had a specific pattern of affected muscles recognizable on mWB-MRI. This allowed us to create a novel decision algorithm for patients with rigid spine syndrome by segregating these signs. This algorithm was validated by five external evaluators on a cohort of seven patients with a diagnostic accuracy of 94.3% compared with the genetic diagnosis. We provide a novel decision algorithm based on muscle fat replacement graded on mWB-MRI that allows diagnosis and differentiation of inherited myopathies presenting with spinal rigidity. • Inherited myopathies are rare, diagnosis is challenging and genetic tests require specialized centres and often take years. • Inherited myopathies are often characterized by spinal rigidity. • Whole body magnetic resonance imaging is a unique tool to orientate the diagnosis of each inherited myopathy presenting with spinal rigidity. • Each inherited myopathy in this study has a specific pattern of affected muscles that orientate diagnosis. • A novel MRI-based algorithm, usable by every radiologist, can help the early diagnosis of these myopathies."	"Developmental temperature has persistent, sexually dimorphic effects on zebrafish cardiac anatomy. Over the next century, climate change of anthropogenic origin is a major threat to global biodiversity. We show here that developmental temperature can have significant effects on zebrafish cardiac anatomy and swimming performance. Zebrafish embryos were subjected to three developmental temperature treatments (TD = 24, 28 or 32 °C) up to metamorphosis and then all maintained under common conditions (28 °C) to adulthood. We found that developmental temperature affected cardiac anatomy of juveniles and adults even eight months after the different thermal treatments had been applied. The elevation of TD induced a significant increase of the ventricle roundness in juvenile (10% increase) and male (22% increase), but not in female zebrafish. The aerobic exercise performance of adult zebrafish was significantly decreased as TD elevated from 24 to 32 °C. Gene expression analysis that was performed at the end of the temperature treatments revealed significant up-regulation of nppa, myh7 and mybpc3 genes at the colder temperature. Our work provides the first evidence for a direct link between developmental temperature and cardiac form at later life-stages. Our results also add to the emerging rationale for understanding the potential effects of global warming on how fish will perform in their natural environment."	"Myeloid peroxisome proliferator-activated receptor gamma deficiency aggravates myocardial infarction in mice. Agonists of peroxisome proliferator-activated receptor gamma (Pparγ) have been demonstrated to reduce the risk of myocardial infarction (MI) in clinical trials and animal experiments. However, the cellular and molecular mechanisms are not completely understood. We aimed to reveal the functions of myeloid Pparγ in MI and explore the potential mechanisms in this study. Myeloid Pparγ knockout (MPGKO) mice (n = 12) and control mice (n = 8) underwent coronary artery ligation to induce MI. Another cohort of MPGKO mice and control mice underwent coronary artery ligation and were then treated with IgG or neutralizing antibodies against interleukin (IL)-1β. Infarct size was determined by TTC staining and cardiac function was measured using echocardiography. Conditioned media from GW9662- or vehicle-treated macrophages were used to treat H9C2 cardiomyocyte cell line. Gene expression was analyzed using quantitative PCR. Reactive oxygen species were measured using flow cytometry. Myeloid Pparγ deficiency significantly increased myocardial infarct size. Cardiac hypertrophy was also exacerbated in MPGKO mice, with upregulation of β-myosin heavy chain (Mhc) and brain natriuretic peptide (Bnp) and downregulation of α-Mhc in the non-infarcted zone. Conditioned media from GW9662-treated macrophages increased expression of β-Mhc and Bnp in H9C2 cells. Echocardiographic measurements showed that MPGKO mice had worsen cardiac dysfunction after MI. Myeloid Pparγ deficiency increased gene expression of NADPH oxidase subunits (Nox2 and Nox4) in the non-infarcted zone after MI. Conditioned media from GW9662-treated macrophages increased reactive oxygen species in H9C2 cells. Expression of inflammatory genes such as IL-1β and IL-6 was upregulated in the non-infarcted zone of MPGKO mice after MI. With the injection of neutralizing antibodies against IL-1β, control mice and MPGKO mice had comparable cardiac function and expression of inflammatory genes after MI. Myeloid Pparγ deficiency exacerbates MI, likely through increased oxidative stress and cardiac inflammation."	"Zebrafish VCAP1X2 regulates cardiac contractility and proliferation of cardiomyocytes and epicardial cells. Sarcomeric signaling complexes are important to sustain proper sarcomere structure and function, however, the mechanisms underlying these processes are not fully elucidated. In a gene trap experiment, we found that vascular cell adhesion protein 1 isoform X2 (VCAP1X2) mutant embryos displayed a dilated cardiomyopathy phenotype, including reduced cardiac contractility, enlarged ventricular chamber and thinned ventricular compact layer. Cardiomyocyte and epicardial cell proliferation was decreased in the mutant heart ventricle, as was the expression of pAKT and pERK. Contractile dysfunction in the mutant was caused by sarcomeric disorganization, including sparse myofilament, blurred Z-disc, and decreased gene expression for sarcomere modulators (smyd1b, mypn and fhl2a), sarcomeric proteins (myh6, myh7, vmhcl and tnnt2a) and calcium regulators (ryr2b and slc8a1a). Treatment of PI3K activator restored Z-disc alignment while injection of smyd1b mRNA restored Z-disc alignment, contractile function and cardiomyocyte proliferation in ventricles of VCAP1X2 mutant embryos. Furthermore, injection of VCAP1X2 variant mRNA rescued all phenotypes, so long as two cytosolic tyrosines were left intact. Our results reveal two tyrosine residues located in the VCAP1X2 cytoplasmic domain are essential to regulate cardiac contractility and the proliferation of ventricular cardiomyocytes and epicardial cells through modulating pAKT and pERK expression levels."	"Diagnostic Yield of Genetic Testing in Young Athletes With T-Wave Inversion. T-wave inversion (TWI) is common in patients with cardiomyopathy. However, up to 25% of athletes of African/Afro-Caribbean descent (black athletes) and 5% of white athletes also have TWI of unclear clinical significance despite comprehensive clinical evaluation and long-term follow-up. The aim of this study was to determine the diagnostic yield from genetic testing, beyond clinical evaluation, when investigating athletes with TWI. We investigated 50 consecutive asymptomatic black and 50 white athletes 14 to 35 years of age with TWI and a normal echocardiogram who were referred to a UK tertiary center for cardiomyopathy and sports cardiology. Subjects underwent exercise testing, 24-hour ambulatory ECG, signal-averaged ECG, cardiac magnetic resonance imaging, and a blood-based analysis of a comprehensive 311-gene panel for cardiomyopathies and ion channel disorders associated with TWI, including hypertrophic cardiomyopathy, arrhythmogenic right ventricular cardiomyopathy, dilated cardiomyopathy, left ventricular noncompaction, long-QT syndrome, and Brugada syndrome. In total, 21 athletes (21%) were diagnosed with cardiac disease on the basis of comprehensive clinical investigations. Of these, 8 (38.1%) were gene positive (myosin binding protein C[ MYBPC3], myosin heavy chain 7 [ MYH7], galactosidase alpha [ GLA], and actin alpha, cardiac muscle 1 [ ACTC1] genes) and 13 (61.9%) were gene negative. Of the remaining 79 athletes (79%), 2 (2.5%) were gene positive (transthyretin [ TTR] and sodium voltage-gated channel alpha subunit 5 [ SCN5A] genes) in the absence of a clinical phenotype. The prevalence of newly diagnosed cardiomyopathy was higher in white athletes compared with black athletes (30.0% versus 12%; P=0.027). Hypertrophic cardiomyopathy accounted for 90.5% of all clinical diagnoses. All black athletes and 93.3% of white athletes with a clinical diagnosis of cardiomyopathy or a genetic mutation capable of causing cardiomyopathy exhibited lateral TWI as opposed to isolated anterior or inferior TWI; the genetic yield of diagnoses from lateral TWI was 12.3%. Up to 10% of athletes with TWI revealed mutations capable of causing cardiac disease. Despite the substantial cost, the positive diagnostic yield from genetic testing was one half that from clinical evaluation (10% versus 21%) and contributed to additional diagnoses in only 2.5% of athletes with TWI in the absence of a clear clinical phenotype, making it of negligible use in routine clinical practice."	"JMJD3 inhibition protects against isoproterenol-induced cardiac hypertrophy by suppressing β-MHC expression. Jumonji domain-containing protein D3 (JMJD3), a histone 3 lysine 27 (H3K27) demethylase, has been extensively studied for their participation in development, cellular physiology and a variety of diseases. However, its potential roles in cardiovascular system remain unknown. In this study, we found that JMJD3 played a pivotal role in the process of cardiac hypertrophy. JMJD3 expression was elevated by isoproterenol (ISO) stimuli both in vitro and in vivo. Overexpression of wild-type JMJD3, but not the demethylase-defective mutant, promoted cardiomyocyte hypertrophy, as implied by increased cardiomyocyte surface area and the expression of hypertrophy marker genes. In contrary, JMJD3 silencing or its inhibitor GSK-J4 suppressed ISO-induced cardiac hypertrophy. Mechanistically, JMJD3 was recruited to demethylate H3K27me3 at the promoter of β-MHC to promote its expression and cardiac hypertrophy. Thus, our results reveal that JMJD3 may be a key epigenetic regulator of β-MHC expression in cardiomyocytes and a potential therapeutic target for cardiac hypertrophy."	"Region of Interest analysis using mass spectrometry imaging of mitochondrial and sarcomeric proteins in acute cardiac infarction tissue. Matrix-assisted laser desorption ionization image mass spectrometry (MALDI-IMS) has been developed for the identification of peptides in various tissues. The MALDI-IMS signal distribution patterns and quantification of the signal intensities of the regions of interest (ROI) with healthy regions were compared for identification of the disease specific biomarkers. We performed a new ROI analysis using the conventional t-test and data number independent Cohen's d-value analysis. Using these techniques, we analysed heart tissues after acute myocardial infarction (AMI). As a result, IMS signals of mitochondrial adenosine triphosphate synthase alpha subunit (ATP5A), myosin-6/7(MYH6/7), aortic actin, and the myosin light chain 3 (MYL3) were identified in the infarcted region. In particular, the signals of MYH7 are significantly greater in the infarcted region using ROI analysis. ROI analysis using MALDI-IMS may be a promising technique for the identification of biomarkers for pathological studies that involve the comparison of diseased and control areas."	"Asn391Thr Mutation of β-Myosin Heavy Chain in a Hypertrophic Cardiomyopathy Family. The present study was performed to identify the genetic abnormalities in a family with familial hypertrophic cardiomyopathy.Peripheral blood samples were collected from 22 members of a Chinese family with hypertrophic cardiomyopathy and 307 healthy controls. A total of 26 candidate pathogenic genes were analyzed in the proband using targeted capture sequencing. Identified mutations were analyzed using Sanger sequencing in all family members and healthy controls.A missense mutation (c.1172A&gt;C, p. Asn391Thr) in exon 12 of MYH7 was identified in eight family members, among which six of them were hypertrophic cardiomyopathy carriers. Three carriers presented with cardiac dysfunction. Four members of this pedigree died suddenly, three of whom were diagnosed with hypertrophic cardiomyopathy.From the results of this study, we concluded that the Asn391Thr mutation of MYH7 is a malignant mutation for HCM and that mutation carriers should get effective treatment to prevent sudden death."	"CRISPR/Cas9 editing in human pluripotent stem cell-cardiomyocytes highlights arrhythmias, hypocontractility, and energy depletion as potential therapeutic targets for hypertrophic cardiomyopathy. Sarcomeric gene mutations frequently underlie hypertrophic cardiomyopathy (HCM), a prevalent and complex condition leading to left ventricle thickening and heart dysfunction. We evaluated isogenic genome-edited human pluripotent stem cell-cardiomyocytes (hPSC-CM) for their validity to model, and add clarity to, HCM. CRISPR/Cas9 editing produced 11 variants of the HCM-causing mutation c.C9123T-MYH7 [(p.R453C-β-myosin heavy chain (MHC)] in 3 independent hPSC lines. Isogenic sets were differentiated to hPSC-CMs for high-throughput, non-subjective molecular and functional assessment using 12 approaches in 2D monolayers and/or 3D engineered heart tissues. Although immature, edited hPSC-CMs exhibited the main hallmarks of HCM (hypertrophy, multi-nucleation, hypertrophic marker expression, sarcomeric disarray). Functional evaluation supported the energy depletion model due to higher metabolic respiration activity, accompanied by abnormalities in calcium handling, arrhythmias, and contraction force. Partial phenotypic rescue was achieved with ranolazine but not omecamtiv mecarbil, while RNAseq highlighted potentially novel molecular targets. Our holistic and comprehensive approach showed that energy depletion affected core cardiomyocyte functionality. The engineered R453C-βMHC-mutation triggered compensatory responses in hPSC-CMs, causing increased ATP production and αMHC to energy-efficient βMHC switching. We showed that pharmacological rescue of arrhythmias was possible, while MHY7: MYH6 and mutant: wild-type MYH7 ratios may be diagnostic, and previously undescribed lncRNAs and gene modifiers are suggestive of new mechanisms."	"Skeletal Muscle-Specific Methyltransferase METTL21C Trimethylates p97 and Regulates Autophagy-Associated Protein Breakdown. Protein aggregates and cytoplasmic vacuolization are major hallmarks of multisystem proteinopathies (MSPs) that lead to muscle weakness. Here, we identify METTL21C as a skeletal muscle-specific lysine methyltransferase. Insertion of a β-galactosidase cassette into the Mettl21c mouse locus revealed that METTL21C is specifically expressed in MYH7-positive skeletal muscle fibers. Ablation of the Mettl21c gene reduced endurance capacity and led to age-dependent accumulation of autophagic vacuoles in skeletal muscle. Denervation-induced muscle atrophy highlighted further impairments of autophagy-related proteins, including LC3, p62, and cathepsins, in Mettl21c<sup>-/-</sup> muscles. In addition, we demonstrate that METTL21C interacts with the ATPase p97 (VCP), which is mutated in various human MSP conditions. We reveal that METTL21C trimethylates p97 on the Lys315 residue and found that loss of this modification reduced p97 hexamer formation and ATPase activity in vivo. We conclude that the methyltransferase METTL21C is an important modulator of protein degradation in skeletal muscle under both normal and enhanced protein breakdown conditions."	"Identification of sarcomeric variants in probands with a clinical diagnosis of arrhythmogenic right ventricular cardiomyopathy (ARVC). Arrhythmogenic right ventricular cardiomyopathy (ARVC) is an inherited cardiomyopathy characterized by ventricular arrhythmias and sudden death. Currently 60% of patients meeting Task Force Criteria (TFC) have an identifiable mutation in one of the desmosomal genes. As much overlap is described between other cardiomyopathies and ARVC, we examined the prevalence of rare, possibly pathogenic sarcomere variants in the ARVC population. One hundred and thirty-seven (137) individuals meeting 2010 TFC for a diagnosis of ARVC, negative for pathogenic desmosomal variants, TMEM43, SCN5A, and PLN were screened for variants in the sarcomere genes (ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNC1, TNNI3, TNNT2, and TPM1) through either clinical or research genetic testing. Six probands (6/137, 4%) were found to carry rare variants in the sarcomere genes. These variants have low prevalence in controls, are predicted damaging by Polyphen-2, and some of the variants are known pathogenic hypertrophic cardiomyopathy mutations. Sarcomere variant carriers had a phenotype that did not differ significantly from desmosomal mutation carriers. As most of these probands were the only affected individuals in their families, however, segregation data are noninformative. These data show variants in the sarcomere can be identified in individuals with an ARVC phenotype. Although rare and predicted damaging, proven functional and segregational evidence that these variants can cause ARVC is lacking. Therefore, caution is warranted in interpreting these variants when identified on large next-generation sequencing panels for cardiomyopathies."	"Identification of genes directly responding to DLK1 signaling in Callipyge sheep. In food animal agriculture, there is a need to identify the mechanisms that can improve the efficiency of muscle growth and protein accretion. Callipyge sheep provide excellent machinery since the up-regulation of DLK1 and RTL1 results in extreme postnatal muscle hypertrophy in distinct muscles. The aim of this study is to distinguish the genes that directly respond to DLK1 and RTL1 signaling from the genes that change as the result of muscle specific effects. The quantitative PCR results indicated that DLK1 expression was significantly increased in hypertrophied muscles but not in non-hypertrophied muscles. However, RTL1 was up-regulated in both hypertrophied and non-hypertrophied muscles. Five genes, including PARK7, DNTTIP1, SLC22A3, METTL21E and PDE4D, were consistently co-expressed with DLK1, and therefore were possible transcriptional target genes responding to DLK1 signaling. Treatment of myoblast and myotubes with DLK1 protein induced an average of 1.6-fold and 1.4-fold increase in Dnttip1 and Pde4d expression respectively. Myh4 expression was significantly elevated in DLK1-treated myotubes, whereas the expression of Mettl21e was significantly increased in the DLK1-treated myoblasts but reduced in DLK1-treated myotubes. DLK1 treatment had no impact on Park7 expression. In addition, Park7 and Dnttip1 increased Myh4 and decreased Myh7 promoter activity, resemble to the effects of Dlk1. In contrast, expression of Mettl21e increased Myh7 and decreased Myh4 luciferase activity. The study provided additional supports that RTL1 alone was insufficient to induce muscle hypertrophy and concluded that DLK1 was likely the primary effector of the hypertrophy phenotype. The results also suggested that DNTTIP1 and PDE4D were secondary effector genes responding to DLK1 signaling resulting in muscle fiber switch and muscular hypertrophy in callipyge lamb."	"Burst-Like Transcription of Mutant and Wildtype MYH7-Alleles as Possible Origin of Cell-to-Cell Contractile Imbalance in Hypertrophic Cardiomyopathy. Hypertrophic Cardiomyopathy (HCM) has been related to many different mutations in more than 20 different, mostly sarcomeric proteins. While development of the HCM-phenotype is thought to be triggered by the different mutations, a common mechanism remains elusive. Studying missense-mutations in the ventricular beta-myosin heavy chain (β-MyHC, MYH7) we hypothesized that significant contractile heterogeneity exists among individual cardiomyocytes of HCM-patients that results from cell-to-cell variation in relative expression of mutated vs. wildtype β-MyHC. To test this hypothesis, we measured force-calcium-relationships of cardiomyocytes isolated from myocardium of heterozygous HCM-patients with either β-MyHC-mutation Arg723Gly or Arg200Val, and from healthy controls. From the myocardial samples of the HCM-patients we also obtained cryo-sections, and laser-microdissected single cardiomyocytes for quantification of mutated vs. wildtype MYH7-mRNA using a single cell RT-qPCR and restriction digest approach. We characterized gene transcription by visualizing active transcription sites by fluorescence in situ hybridization of intronic and exonic sequences of MYH7-pre-mRNA. For both mutations, cardiomyocytes showed large cell-to-cell variation in Ca<sup>++</sup>-sensitivity. Interestingly, some cardiomyocytes were essentially indistinguishable from controls what might indicate that they had no mutant β-MyHC while others had highly reduced Ca<sup>++</sup>-sensitivity suggesting substantial fractions of mutant β-MyHC. Single-cell MYH7-mRNA-quantification in cardiomyocytes of the same patients revealed high cell-to-cell variability of mutated vs. wildtype mRNA, ranging from essentially pure mutant to essentially pure wildtype MYH7-mRNA. We found 27% of nuclei without active transcription sites which is inconsistent with continuous gene transcription but suggests burst-like transcription of MYH7. Model simulations indicated that burst-like, stochastic on/off-switching of MYH7 transcription, which is independent for mutant and wildtype alleles, could generate the observed cell-to-cell variation in the fraction of mutant vs. wildtype MYH7-mRNA, a similar variation in β-MyHC-protein, and highly heterogeneous Ca<sup>++</sup>-sensitivity of individual cardiomyocytes. In the long run, such contractile imbalance in the myocardium may well induce progressive structural distortions like cellular and myofibrillar disarray and interstitial fibrosis, as they are typically observed in HCM."	"Dilated cardiomyopathy myosin mutants have reduced force-generating capacity. Dilated cardiomyopathy (DCM) and hypertrophic cardiomyopathy (HCM) can cause arrhythmias, heart failure, and cardiac death. Here, we functionally characterized the motor domains of five DCM-causing mutations in human β-cardiac myosin. Kinetic analyses of the individual events in the ATPase cycle revealed that each mutation alters different steps in this cycle. For example, different mutations gave enhanced or reduced rate constants of ATP binding, ATP hydrolysis, or ADP release or exhibited altered ATP, ADP, or actin affinity. Local effects dominated, no common pattern accounted for the similar mutant phenotype, and there was no distinct set of changes that distinguished DCM mutations from previously analyzed HCM myosin mutations. That said, using our data to model the complete ATPase contraction cycle revealed additional critical insights. Four of the DCM mutations lowered the duty ratio (the ATPase cycle portion when myosin strongly binds actin) because of reduced occupancy of the force-holding A·M·D complex in the steady state. Under load, the A·M·D state is predicted to increase owing to a reduced rate constant for ADP release, and this effect was blunted for all five DCM mutations. We observed the opposite effects for two HCM mutations, namely R403Q and R453C. Moreover, the analysis predicted more economical use of ATP by the DCM mutants than by WT and the HCM mutants. Our findings indicate that DCM mutants have a deficit in force generation and force-holding capacity due to the reduced occupancy of the force-holding state."	"A1603P and K1617del, Mutations in β-Cardiac Myosin Heavy Chain that Cause Laing Early-Onset Distal Myopathy, Affect Secondary Structure and Filament Formation In Vitro and In Vivo. Over 20 mutations in β-cardiac myosin heavy chain (β-MHC), expressed in cardiac and slow muscle fibers, cause Laing early-onset distal myopathy (MPD-1), a skeletal muscle myopathy. Most of these mutations are in the coiled-coil tail and commonly involve a mutation to a proline or a single-residue deletion, both of which are predicted to strongly affect the secondary structure of the coiled coil. To test this, we characterized the effects of two MPD-1 causing mutations: A1603P and K1617del in vitro and in cells. Both mutations affected secondary structure, decreasing the helical content of 15 heptad and light meromyosin constructs. Both mutations also severely disrupted the ability of glutathione S-transferase-light meromyosin fusion proteins to form minifilaments in vitro, as demonstrated by negative stain electron microscopy. Mutant eGFP-tagged β-MHC accumulated abnormally into the M-line of sarcomeres in cultured skeletal muscle myotubes. Incorporation of eGFP-tagged β-MHC into sarcomeres in adult rat cardiomyocytes was reduced. Molecular dynamics simulations using a composite structure of part of the coiled coil demonstrated that both mutations affected the structure, with the mutation to proline (A1603P) having a smaller effect compared to K1617del. Taken together, it seems likely that the MPD-1 mutations destabilize the coiled coil, resulting in aberrant myosin packing in thick filaments in muscle sarcomeres, providing a potential mechanism for the disease."	"Maternal diet-induced obesity programmes cardiac dysfunction in male mice independently of post-weaning diet. Obesity during pregnancy increases risk of cardiovascular disease (CVD) in the offspring and individuals exposed to over-nutrition during fetal life are likely to be exposed to a calorie-rich environment postnatally. Here, we established the consequences of combined exposure to a maternal and post-weaning obesogenic diet on offspring cardiac structure and function using an established mouse model of maternal diet-induced obesity. The impact of the maternal and postnatal environment on the offspring metabolic profile, arterial blood pressure, cardiac structure, and function was assessed in 8-week-old C57BL/6 male mice. Measurement of cardiomyocyte cell area, the transcriptional re-activation of cardiac fetal genes as well as genes involved in the regulation of contractile function and matrix remodelling in the adult heart were determined as potential mediators of effects on cardiac function. In the adult offspring: a post-weaning obesogenic diet coupled with exposure to maternal obesity increased serum insulin (P &lt; 0.0001) and leptin levels (P &lt; 0.0001); maternal obesity (P = 0.001) and a post-weaning obesogenic diet (P = 0.002) increased absolute heart weight; maternal obesity (P = 0.01) and offspring obesity (P = 0.01) caused cardiac dysfunction but effects were not additive; cardiac dysfunction resulting from maternal obesity was associated with re-expression of cardiac fetal genes (Myh7: Myh6 ratio; P = 0.0004), however, these genes were not affected by offspring diet; maternal obesity (P = 0.02); and offspring obesity (P = 0.05) caused hypertension and effects were additive. Maternal diet-induced obesity and offspring obesity independently promote cardiac dysfunction and hypertension in adult male progeny. Exposure to maternal obesity alone programmed cardiac dysfunction, associated with hallmarks of pathological left ventricular hypertrophy, including increased cardiomyocyte area, upregulation of fetal genes, and remodelling of cardiac structure. These data highlight that the perinatal period is just as important as adult-onset obesity in predicting CVD risk. Therefore, early developmental periods are key intervention windows to reduce the prevalence of CVD."	"Clinical and imaging hallmarks of the MYH7-related myopathy with severe axial involvement. MYH7 gene mutations are related to a heterogeneous group of skeletal and cardiac myopathies. We evaluated clinical and muscle MRI changes in patients with mutations in the rod domain of MYH7, including 1 with mosaicism and 3 with novel missense mutations. Patients presented in childhood with a distal and axial phenotype. Biopsy findings were variable. Half of the cases displaying some type of core pathology, including minicores and eccentric cores. Most patients demonstrated internal bands of infiltration (&quot;inverted-collagen-VI sign&quot;) in multiple muscles, particularly the soleus, and prominent atrophy and fatty infiltration of the tongue and the paraspinal, gluteus minimus, sartorius, gracilis, tibialis anterior, and extensor digitorum longus muscles. Muscle imaging findings in patients with axial involvement provide significant clues permitting the distinction between MYH7-related myopathies and other axial myopathies such as those related to SEPN1 and LMNA genes. Muscle Nerve 58: 224-234, 2018."	"Successful knock-in of Hypertrophic Cardiomyopathy-mutation R723G into the MYH7 gene mimics HCM pathology in pigs. Familial Hypertrophic Cardiomyopathy (HCM) is the most common inherited cardiac disease. About 30% of the patients are heterozygous for mutations in the MYH7 gene encoding the ß-myosin heavy chain (MyHC). Hallmarks of HCM are cardiomyocyte disarray and hypertrophy of the left ventricle, the symptoms range from slight arrhythmias to sudden cardiac death or heart failure. To gain insight into the underlying mechanisms of the diseases' etiology we aimed to generate genome edited pigs with an HCM-mutation. We used TALEN-mediated genome editing and successfully introduced the HCM-point mutation R723G into the MYH7 gene of porcine fibroblasts and subsequently cloned pigs that were heterozygous for the HCM-mutation R723G. No off-target effects were determined in the R723G-pigs. Surprisingly, the animals died within 24 h post partem, probably due to heart failure as indicated by a shift in the a/ß-MyHC ratio in the left ventricle. Most interestingly, the neonatal pigs displayed features of HCM, including mild myocyte disarray, malformed nuclei, and MYH7-overexpression. The finding of HCM-specific pathology in neonatal R723G-piglets suggests a very early onset of the disease and highlights the importance of novel large animal models for studying causative mechanisms and long-term progression of human cardiac diseases."	"Research progress on the forkhead box C1. FOXC1 is a vital member of FOX families which play important roles in biological processes including proliferation, differentiation, apoptosis, migration, invasion, metabolism, and longevity. Here we are focusing on roles of FOXC1 and their mechanisms in cancers. FOXC1 promoted progress of many cancers, such as breast cancer (especially basal-like breast cancer), hepatocellular carcinoma, gastric cancer and so on. FOXC1 was also found to be associated with drug resistance of cancers. FOXC1 promoted metastasis of cancers by increasing expression of MMP7, NEDD9 and Snail. Proliferation and invasion of cancers were increased by FOXC1 by mediating NF-κB, MST1R and KLF4 expression. FOXC1 was associated with development by regulating expression of FGF19 and MSX1. Recently, FOXC1 was found to be required for niche of stem cells or development of stem cells by mediating expression of Gli2, CXCL12, SCF, NFATC1, BMP and Myh7. Overall, FOXC1 exerts its functions by many mechanisms and may be used as a potential biomarker for diseases."	"Transcriptomic Profiles of Brain Provide Insights into Molecular Mechanism of Feed Conversion Efficiency in Crucian Carp (Carassius auratus). Feed efficiency is an economically crucial trait for cultured animals, however, progress has been scarcely made in the genetic analyses of feed conversion efficiency (FCE) in fish because of the difficulties in measurement of trait phenotypes. In the present investigation, we present the first application of RNA sequencing (RNA-Seq) combined with differentially expressed genes (DEGs) analysis for identification of functional determinants related to FCE at the gene level in an aquaculture fish, crucian carp (Carassius auratus). Brain tissues of six crucian carp with extreme FCE performances were subjected to transcriptome analysis. A total of 544,612 unigenes with a mean size of 644.38 bp were obtained from Low- and High-FCE groups, and 246 DEGs that may be involved in FCE traits were identified in these two groups. qPCR confirmed that genes previously identified as up- or down-regulated by RNA-Seq were effectively up- or down-regulated under the studied conditions. Thirteen key genes, whose functions are associated with metabolism (Dgkk, Mgst3 and Guk1b), signal transduction (Vdnccsa1b, Tgfα, Nr4a1 and Tacr2) and growth (Endog, Crebrtc2, Myh7, Myh1,Myh14 and Igfbp7) were identified according to GO (Gene Ontology) and KEGG (Kyoto Encyclopedia of Genes and Genomes) annotations. Our novel findings provide useful pathway information and candidate genes for future studies of genetic mechanisms underlying FCE in crucian carp."	"Influence of Long-Term Salt Diets on Cardiac Ca2+ Handling and Contractility Proteins in Hypertensive Rats. High sodium intake contributes to the pathogenesis of hypertension and adversely affects cardiac function. Conversely, sodium reduction is associated with a blood pressure decrease and improved cardiovascular function. However, the mechanisms that underlie the cardiac effects induced by salt intake in hypertension have not been fully elucidated. Ca2+ handling is critical for efficient myocardial function; thus, we aimed to investigate the long-term effects of diets with different salt contents on cardiac function and Ca2+ handling proteins in spontaneously hypertensive rats (SHRs). Cardiac function was evaluated by catheterization. Ca2+ handling and contractile proteins were evaluated by immunoblotting in hearts from SHRs fed for 6 months with diets containing high (HS, 3%), low (LS, 0.03%), or normal salt content (NS, 0.3%). Diets were introduced immediately after weaning. Tail cuff pletismography was assessed at the 3rd and 7th months of follow-up. Compared to the NS group, the HS group exhibited worsened hypertension, increased cardiac expression of β-myosin heavy chain (MHC), a decreased α/β-MHC ratio and reduced expression of both phospholamban (PLB) and Na+/Ca2+ exchanger (NCX). LS intake attenuated the blood pressure increase and left ventricle hypertrophy, slightly decreased the cardiac contractility and relaxation index, and increased the α/β-MHC ratio. These effects were accompanied by increased cardiac PLB expression and decreased Ca2+ L-type channel and NCX expression. These findings indicate that the modulation of Ca2+ handling may be one of the molecular mechanisms underlying the effect of salt intake on myocardial function in hypertension."	"Genetic basis of channelopathies and cardiomyopathies in Hong Kong Chinese patients: a 10-year regional laboratory experience. Hereditary channelopathies and cardiomyopathies are potentially lethal and are clinically and genetically heterogeneous, involving at least 90 genes. Genetic testing can provide an accurate diagnosis, guide treatment, and enable cascade screening. The genetic basis among the Hong Kong Chinese population is largely unknown. We aimed to report on 28 unrelated patients with positive genetic findings detected from January 2006 to December 2015. Sanger sequencing was performed for 28 unrelated patients with a clinical diagnosis of channelopathies or cardiomyopathies, testing for the following genes: KCNQ1,KCNH2,KCNE1,KCNE2, and SCN5A, for long QT syndrome; SCN5A for Brugada syndrome; RYR2 for catecholaminergic polymorphic ventricular tachycardia; MYH7 and MYBPC3 for hypertrophic cardiomyopathy; LMNA for dilated cardiomyopathy; and PKP2 and DSP for arrhythmogenic right ventricular dysplasia/cardiomyopathy. There were 17 males and 11 females; their mean age at diagnosis was 39 years (range, 1-80 years). The major clinical presentations included syncope, palpitations, and abnormal electrocardiography findings. A family history was present in 13 (46%) patients. There were 26 different heterozygous mutations detected, of which six were novel-two in SCN5A (NM_198056.2:c.429del and c.2024-11T&gt;A), two in MYBPC3 (NM_000256.3:c.906-22G&gt;A and c.2105_2106del), and two in LMNA (NM_170707.3:c.73C&gt;A and c.1209_1213dup). We have characterised the genetic heterogeneity in channelopathies and cardiomyopathies among Hong Kong Chinese patients in a 10-year case series. Correct interpretation of genetic findings is difficult and requires expertise and experience. Caution regarding issues of non-penetrance, variable expressivity, phenotype-genotype correlation, susceptibility risk, and digenic inheritance is necessary for genetic counselling and cascade screening."	"Divergent effects of cold water immersion versus active recovery on skeletal muscle fiber type and angiogenesis in young men. Resistance training (RT) increases muscle fiber size and induces angiogenesis to maintain capillary density. Cold water immersion (CWI), a common postexercise recovery modality, may improve acute recovery, but it attenuates muscle hypertrophy compared with active recovery (ACT). It is unknown if CWI following RT alters muscle fiber type expression or angiogenesis. Twenty-one men strength trained for 12 wk, with either 10 min of CWI ( n = 11) or ACT ( n = 10) performed following each session. Vastus lateralis biopsies were collected at rest before and after training. Type IIx myofiber percent decreased ( P = 0.013) and type IIa myofiber percent increased with training ( P = 0.012), with no difference between groups. The number of capillaries per fiber increased from pretraining in the CWI group ( P = 0.004) but not the ACT group ( P = 0.955). Expression of myosin heavy chain genes ( MYH1 and MYH2), encoding type IIx and IIa fibers, respectively, decreased in the ACT group, whereas MYH7 (encoding type I fibers) increased in the ACT group versus CWI ( P = 0.004). Myosin heavy chain IIa protein increased with training ( P = 0.012) with no difference between groups. The proangiogenic vascular endothelial growth factor protein decreased posttraining in the ACT group versus CWI ( P &lt; 0.001), whereas antiangiogenic Sprouty-related, EVH1 domain-containing protein 1 protein increased with training in both groups ( P = 0.015). Expression of microRNAs that regulate muscle fiber type (miR-208b and -499a) and angiogenesis (miR-15a, -16, and -126) increased only in the ACT group ( P &lt; 0.05). CWI recovery after each training session altered the angiogenic and fiber type-specific response to RT through regulation at the levels of microRNA, gene, and protein expression."	"Genetics, Clinical Features, and Long-Term Outcome of Noncompaction Cardiomyopathy. The clinical outcomes of noncompaction cardiomyopathy (NCCM) range from asymptomatic to heart failure, arrhythmias, and sudden cardiac death. Genetics play an important role in NCCM. This study investigated the correlations among genetics, clinical features, and outcomes in adults and children diagnosed with NCCM. A retrospective multicenter study from 4 cardiogenetic centers in the Netherlands classified 327 unrelated NCCM patients into 3 categories: 1) genetic, with a mutation in 32% (81 adults; 23 children) of patients; 2) probably genetic, familial cardiomyopathy without a mutation in 16% (45 adults; 8 children) of patients; or 3) sporadic, no family history, without mutation in 52% (149 adults; 21 children) of patients. Clinical features and major adverse cardiac events (MACE) during follow-up were compared across the children and adults. MYH7, MYBPC3, and TTN mutations were the most common mutations (71%) found in genetic NCCM. The risk of having reduced left ventricular (LV) systolic dysfunction was higher for genetic patients compared with the probably genetic and sporadic cases (p = 0.024), with the highest risk in patients with multiple mutations and TTN mutations. Mutations were more frequent in children (p = 0.04) and were associated with MACE (p = 0.025). Adults were more likely to have sporadic NCCM. High risk for cardiac events in children and adults was related to LV systolic dysfunction in mutation carriers, but not in sporadic cases. Patients with MYH7 mutations had low risk for MACE (p = 0.03). NCCM is a heterogeneous condition, and genetic stratification has a role in clinical care. Distinguishing genetic from nongenetic NCCM complements prediction of outcome and may lead to management and follow-up tailored to genetic status."	"HMGB1 silencing in macrophages prevented their functional skewing and ameliorated EAM development: Nuclear HMGB1 may be a checkpoint molecule of macrophage reprogramming. High-mobility group box 1 (HMGB1), an important inflammatory factor, plays significant roles in CD4<sup>+</sup>T cell differentiation, cancer and autoimmune disease development. Our previous data have demonstrated that HMGB1 contributes to macrophage reprogramming and is involved in experimental autoimmune myocarditis (EAM) development. In contrast to the well-explored function of HMGB1, little is known about the nuclear function. Whether HMGB1 can serve as an architectural factor and control functional skewing of macrophages remains unclear. Therefore, the present work was performed to address the above speculation. The adenovirus-mediated shRNA (Ad-shRNA) was employed to knock down HMGB1 in RAW264.7 and monocytes/macrophages of EAM mice. Our data showed that in vitro HMGB1 silencing limited functional skewing of macrophages and down-regulated inflammatory factors secretion, which can't be reversed by the exogenous HMGB1. In M1 polarization system, the phosphorylations of NF-κB, p38 and Erk1/2 were inhibited following HMGB1 silencing. In vivo, HMGB1 silencing could effectively ameliorate EAM development. Our data suggest that HMGB1 may be a checkpoint nuclear factor of macrophage reprogramming. Our findings also provide an exciting therapeutic method for inflammatory disorders."	"Reciprocity of Action of Increasing Oct4 and Repressing p53 in Transdifferentiation of Mouse Embryonic Fibroblasts into Cardiac Myocytes. p53 is a barrier to somatic cell reprogramming. Deletion or transient suppression of p53 increases the efficiency of reprogramming of somatic cells into induced pluripotent stem cells. Whether p53 represents an obstacle to a similar process transdifferentiation of somatic cells is unknown. However, it is predicted that inhibition of p53 would promote transdifferentiation of fibroblasts into cardiomyocytes. In this study, the effect of p53 on the capacity of cardiogenic transdifferentiation is evaluated using p53 wild-type (p53<sup>+/+</sup>), p53 heterozygous mutant (p53<sup>+/-</sup>), and p53 homozygous mutant (p53<sup>-/-</sup>) mouse embryonic fibroblasts (MEFs). Repression of p53 in MEFs increases the expression level of mesoderm transcription factors Brachyury (T) and MESP1. The cardiac-specific markers, Myh6 (Myosin, Heavy Chain 6), Myh7 (Myosin, Heavy Chain 7), and cTnI (cardiac muscle troponin I), show elevated expression in p53<sup>+/-</sup> and p53<sup>-/-</sup> MEFs compared with wild-type MEFs, but cardiac muscle troponin T (cTnT) showed a lower expression level when p53 was inhibited. After induction to cardiac differentiation, cTnT expression increased and markers of endoderm and ectoderm decreased in p53<sup>+/-</sup> and p53<sup>-/-</sup> MEFs. The effect of an important reprogramming factor Oct4 on cardiac transdifferentiation was also evaluated in the allelic series of p53 MEFs. We found that overexpression of Oct4 significantly enhanced Mesp1, Tbx5, and Isl1 expression in p53<sup>+/+</sup> and p53<sup>+/-</sup> MEFs. Oct4 also enhanced cTnT expression in all three cell lines, especially in p53<sup>+/-</sup> MEFs. Thus, inhibition of p53 expression and viral expression of Oct4 both promote transdifferentiation of MEFs into cardiomyocytes, establishing reciprocity of action in the process."	"Genetic basis of cardiomyopathy and the genotypes involved in prognosis and left ventricular reverse remodeling. Dilated cardiomyopathy (DCM) and hypertrophic cardiomyopathy (HCM) are genetically and phenotypically heterogeneous. Cardiac function is improved after treatment in some cardiomyopathy patients, but little is known about genetic predictors of long-term outcomes and myocardial recovery following medical treatment. To elucidate the genetic basis of cardiomyopathy in Japan and the genotypes involved in prognosis and left ventricular reverse remodeling (LVRR), we performed targeted sequencing on 120 DCM (70 sporadic and 50 familial) and 52 HCM (15 sporadic and 37 familial) patients and integrated their genotypes with clinical phenotypes. Among the 120 DCM patients, 20 (16.7%) had TTN truncating variants and 13 (10.8%) had LMNA variants. TTN truncating variants were the major cause of sporadic DCM (21.4% of sporadic cases) as with Caucasians, whereas LMNA variants, which include a novel recurrent LMNA E115M variant, were the most frequent in familial DCM (24.0% of familial cases) unlike Caucasians. Of the 52 HCM patients, MYH7 and MYBPC3 variants were the most common (12 (23.1%) had MYH7 variants and 11 (21.2%) had MYBPC3 variants) as with Caucasians. DCM patients harboring TTN truncating variants had better prognosis than those with LMNA variants. Most patients with TTN truncating variants achieved LVRR, unlike most patients with LMNA variants."	"Phenotypic diversity identified by cardiac magnetic resonance in a large hypertrophic cardiomyopathy family with a single MYH7 mutation. Limited data is available on phenotypic variations with the same genotype in hypertrophic cardiomyopathy (HCM). The present study aims to explore the relationship between genotype and phenotype characterized by cardiovascular magnetic resonance (CMR) in a large Chinese family. A proband diagnosed with HCM from a multigenerational family underwent next-generation sequencing based on a custom sureSelect panel, including 117 candidate pathogenic genes associated with cardiomyopathies. All genetic results were confirmed by the Sanger sequencing method. All confirmed mutation carriers underwent CMR exam and myocardial tissue characterization using T1 mapping and late gadolinium enhancement (LGE) on a 3T scanner (Siemens Trio, Gemany). After clinical and genetic screening of 36 (including the proband) members of a large Chinese family, nineteen family members are determined to carry the single p.T1377M (c.4130C&gt;T) mutation in the MYH7 gene. Of these 19 mutation carriers, eight are diagnosed with HCM, one was considered as borderline affected and ten are not clinically or phenotypically affected. Different HCM phenotypes are present in the nine affected individuals in this family. In addition, we have found different tissue characteristics assessed by T1 mapping and LGE in these individuals. We describe a family that demonstrates the diverse HCM phenotypes associated with a single MYH7 mutation."	"Nandrolone-induced nuclear accumulation of MyoD protein is mediated by Numb, a Notch inhibitor, in C2C12 myoblasts. Signaling via the androgen receptor (AR) stimulates myogenic progenitor differentiation. In addition, myogenic differentiation factor D (MyoD) and Numb, a Notch inhibitor, play key roles in regulating myogenic differentiation. Nandrolone, an anabolic steroid, upregulates both MyoD and Numb expression in myogenic cells. However, the molecular mechanisms by which MyoD is upregulated by nandrolone are unclear. Moreover, the potential crosstalk between nandrolone, MyoD, and Numb is not well understood. With these considerations in mind, we examined the effects of nandrolone on the expression of MyoD mRNA and protein, and determined the interactions of MyoD and Numb in the presence or absence of nandrolone in differentiating C2C12 myoblasts. Nandrolone increased MyoD mRNA and protein expression and significantly enhanced nuclear translocation of MyoD protein. The later effect of nandrolone was blunted by siRNA against Numb. Immunoprecipitation (IP) studies confirmed that Numb forms complexes with MyoD. Chromatin IP revealed that in the presence of nandrolone, Numb is recruited to a region of the MyH7 promotor containing the E-box to which MyoD binds. These data indicate that nandrolone-regulated MyoD activation occurs mainly through a posttranslational mechanism which promotes MyoD nuclear accumulation, and suggest that this effect of nandrolone is, at least in part, mediated by Numb."	"Adaptation and validation of the ACMG/AMP variant classification framework for MYH7-associated inherited cardiomyopathies: recommendations by ClinGen's Inherited Cardiomyopathy Expert Panel. PurposeIntegrating genomic sequencing in clinical care requires standardization of variant interpretation practices. The Clinical Genome Resource has established expert panels to adapt the American College of Medical Genetics and Genomics/Association for Molecular Pathology classification framework for specific genes and diseases. The Cardiomyopathy Expert Panel selected MYH7, a key contributor to inherited cardiomyopathies, as a pilot gene to develop a broadly applicable approach.MethodsExpert revisions were tested with 60 variants using a structured double review by pairs of clinical and diagnostic laboratory experts. Final consensus rules were established via iterative discussions.ResultsAdjustments represented disease-/gene-informed specifications (12) or strength adjustments of existing rules (5). Nine rules were deemed not applicable. Key specifications included quantitative frameworks for minor allele frequency thresholds, the use of segregation data, and a semiquantitative approach to counting multiple independent variant occurrences where fully controlled case-control studies are lacking. Initial inter-expert classification concordance was 93%. Internal data from participating diagnostic laboratories changed the classification of 20% of the variants (n = 12), highlighting the critical importance of data sharing.ConclusionThese adapted rules provide increased specificity for use in MYH7-associated disorders in combination with expert review and clinical judgment and serve as a stepping stone for genes and disorders with similar genetic and clinical characteristics."	"Influence of static magnetic fields on human myoblast/mesenchymal stem cell co‑cultures. The results of surgical repair of extensive muscle tissue defects are still of primary concern, leaving patients with residual cosmetic and functional impairments. Therefore, skeletal muscle tissue engineering attempts to grow functional neo‑tissue from human stem cells to promote tissue regeneration and support defect closure. Despite intensive research efforts, the goal of stable induction of myogenic differentiation in expanded human stem cells by using clinically feasible stimuli, has not yet been reached to a sufficient extent. Therefore, the present study investigated the differentiation potential of static magnetic fields (SMFs), using co‑cultures of human satellite cells and human mesenchymal stem cells (MSCs). It has previously been demonstrated that SMFs may act as a promising myogenic stimulus. Tests were performed on co‑cultures with and without SMF exposure, using growth medium [high growth factor concentrations (GM)] and differentiation medium [low growth factors concentrations (DM)]. AlamarBlue® assay‑based cell proliferation analysis revealed no significant difference between co‑cultures with, vs. without SMF stimulation, regardless of growth factor concentrations in the cell culture medium. To determine the degree of differentiation in co‑cultures under stimulation with SMFs, semi‑quantitative gene expression measurements of the following marker genes were performed: Desmin, myogenic factor 5, myogenic differentiation antigen 1, myogenin, adult myosin heavy chain 1 and skeletal muscle α1 actin. In neither GM nor DM was a steady, significant increase in marker gene expression detected. Verifying the gene expression findings, immunohistochemical antibody staining against differentiation markers revealed that SMF exposure did not enhance myogenic maturation. Therefore, SMF treatment of human satellite cell/MSC co‑cultures did not result in the desired increase in myogenic differentiation. Further studies are required to identify a suitable stimulus for skeletal muscle tissue engineering."	"High proportion of genetic cases in patients with advanced cardiomyopathy including a novel homozygous Plakophilin 2-gene mutation. Cardiomyopathies might lead to end-stage heart disease with the requirement of drastic treatments like bridging up to transplant or heart transplantation. A not precisely known proportion of these diseases are genetically determined. We genotyped 43 index-patients (30 DCM, 10 ARVC, 3 RCM) with advanced or end stage cardiomyopathy using a gene panel which covered 46 known cardiomyopathy disease genes. Fifty-three variants with possible impact on disease in 33 patients were identified. Of these 27 (51%) were classified as likely pathogenic or pathogenic in the MYH7, MYL2, MYL3, NEXN, TNNC1, TNNI3, DES, LMNA, PKP2, PLN, RBM20, TTN, and CRYAB genes. Fifty-six percent (n = 24) of index-patients carried a likely pathogenic or pathogenic mutation. Of these 75% (n = 18) were familial and 25% (n = 6) sporadic cases. However, severe cardiomyopathy seemed to be not characterized by a specific mutation profile. Remarkably, we identified a novel homozygous PKP2-missense variant in a large consanguineous family with sudden death in early childhood and several members with heart transplantation in adolescent age."	"Correction to: Novel phenotypic variant in the MYH7 spectrum due to a stop-loss mutation in the C-terminal region: a case report. Following publication of the original article [1], the authors requested a correction to the details of one of the co-authors."	"Pre-clinical model of severe glutathione peroxidase-3 deficiency and chronic kidney disease results in coronary artery thrombosis and depressed left ventricular function. Chronic kidney disease (CKD) patients have deficient levels of glutathione peroxidase-3 (GPx3). We hypothesized that GPx3 deficiency may lead to cardiovascular disease in the presence of chronic kidney disease due to an accumulation of reactive oxygen species and decreased microvascular perfusion of the myocardium. Methods. To isolate the exclusive effect of GPx3 deficiency in kidney disease-induced cardiac disease, we studied the GPx3 knockout mouse strain (GPx3-/-) in the setting of surgery-induced CKD. Results. Ribonucleic acid (RNA) microarray screening of non-stimulated GPx3-/- heart tissue show increased expression of genes associated with cardiomyopathy including myh7, plac9, serpine1 and cd74 compared with wild-type (WT) controls. GPx3-/- mice underwent surgically induced renal mass reduction to generate a model of CKD. GPx3-/- + CKD mice underwent echocardiography 4 weeks after injury. Fractional shortening (FS) was decreased to 32.9 ± 5.8% in GPx3-/- + CKD compared to 62.0% ± 10.3 in WT + CKD (P &lt; 0.001). Platelet aggregates were increased in the myocardium of GPx3-/- + CKD. Asymmetric dimethylarginine (ADMA) levels were increased in both GPx3-/- + CKD and WT+ CKD. ADMA stimulated spontaneous platelet aggregation more quickly in washed platelets from GPx3-/-. In vitro platelet aggregation was enhanced in samples from GPx3-/- + CKD. Platelet aggregation in GPx3-/- + CKD samples was mitigated after in vivo administration of ebselen, a glutathione peroxidase mimetic. FS improved in GPx3-/- + CKD mice after ebselen treatment. These results suggest GPx3 deficiency is a substantive contributing factor to the development of kidney disease-induced cardiac disease."	"MYH7 Rare Variant in a Family With Double-Chambered Left Ventricle. NA"	"Z-disc protein CHAPb induces cardiomyopathy and contractile dysfunction in the postnatal heart. The Z-disc is a crucial structure of the sarcomere and is implicated in mechanosensation/transduction. Dysregulation of Z-disc proteins often result in cardiomyopathy. We have previously shown that the Z-disc protein Cytoskeletal Heart-enriched Actin-associated Protein (CHAP) is essential for cardiac and skeletal muscle development. Furthermore, the CHAP gene has been associated with atrial fibrillation in humans. Here, we studied the misregulated expression of CHAP isoforms in heart disease. Mice that underwent transverse aortic constriction and calcineurin transgenic (Tg) mice, both models of experimental heart failure, displayed a significant increase in cardiac expression of fetal isoform CHAPb. To investigate whether increased expression of CHAPb postnatally is sufficient to induce cardiomyopathy, we generated CHAPb Tg mice under the control of the cardiac-specific αMHC promoter. CHAPb Tg mice displayed cardiac hypertrophy, interstitial fibrosis and enlargement of the left atrium at three months, which was more pronounced at the age of six months. Hypertrophy and fibrosis were confirmed by evidence of activation of the hypertrophic gene program (Nppa, Nppb, Myh7) and increased collagen expression, respectively. Connexin40 and 43 were downregulated in the left atrium, which was associated with delayed atrioventricular conduction. Tg hearts displayed both systolic and diastolic dysfunction partly caused by impaired sarcomere function evident from a reduced force generating capacity of single cardiomyocytes. This co-incided with activation of the actin signalling pathway leading to the formation of stress fibers. This study demonstrated that the fetal isoform CHAPb initiates progression towards cardiac hypertrophy, which is accompanied by delayed atrioventricular conduction and diastolic dysfunction. Moreover, CHAP may be a novel therapeutic target or candidate gene for screening in cardiomyopathies and atrial fibrillation."	"The presence of multiple variants affects the clinical phenotype and prognosis in left ventricular noncompaction after surgery. NA"	"MYH7 mutation associated with two phenotypes of myopathy. The mutations of MYH7 (slow skeletal/β-cardiac myosin heavy chain) are commonly found in familial hypertrophic/dilated cardiomyopathy, and also can cause Laing early-onset distal myopathy (LDM), myosin storage myopathy (MSM), and congenital myopathy with fiber-type disproportion (CFTD). Here we report two cases whose diagnosis was hereditary myopathy according to clinical feature and muscle pathology analysis. High-throughput genomic sequencing (next generation sequencing) was performed to validate the diagnosis. Two MYH7 mutations, p.R1845W and p.E1687del, were identified. p.R1845W was found in a male patient showing weakness of both terminal lower legs without foot drop. Muscle pathology stainings characteristically showed the hyaline body in the intracytoplasmic location. The novel mutation p.E1687del was found in a family with seven patients. The proband showed foot drop, scoliosis, and winged scapula, while his mother only showed mild foot drop and winged scapula. Muscle pathology analysis showed congenital centronucleus myopathy. Both cases only showed muscular disorder and had no cardiomyopathy. This study, for the first time, reports the MYH7 mutations associated with centronucleus myopathy."	"Serum from differently exercised subjects induces myogenic differentiation in LHCN-M2 human myoblasts. Myogenesis is the formation of muscle tissue from muscle precursor cells. Physical exercise induces satellite cell activation in muscle. Currently, C2C12 murine myoblast cells are used to study myogenic differentiation. Herein, we evaluated whether human LHCN-M2 myoblasts can differentiate into mature myotubes and express early (myotube formation, creatine kinase activity and myogenin) and late (MyHC-β) muscle-specific markers when cultured in differentiation medium (DM) for 2, 4 and 7 days. We demonstrate that treatment of LHCN-M2 cells with DM supplemented with 0.5% serum from long-term (3 years) differently exercised subjects for 4 days induced myotube formation and significantly increased the early (creatine kinase activity and myogenin) and late (MyHC-β expression) differentiation markers versus cells treated with serum from untrained subjects. Interestingly, serum from aerobic exercised subjects (swimming) had a greater positive effect on late-differentiation marker (MyHC-β) expression than serum from anaerobic (body building) or from mixed exercised (soccer and volleyball) subjects. Moreover, p62and anti-apoptotic Bcl-2 protein expression was lower in LHCN-M2 cells cultured with human sera from differently exercised subjectst han in cells cultured with DM. In conclusion, LHCN-M2 human myoblasts represent a species-specific system with which to study human myogenic differentiation induced by serum from differently exercised subjects."	"Hypoxia favors myosin heavy chain beta gene expression in an Hif-1alpha-dependent manner. The potentiation of the naturally limited regenerative capacity of the heart is dependent on an understanding of the mechanisms that are activated in response to pathological conditions such as hypoxia. Under these conditions, the expression of genes suggested to support cardiomyocyte survival and heart adaptation is triggered. Particularly important are changes in the expression of myosin heavy chain (MHC) isoforms. We propose here that alterations in the expression profiles of MHC genes are induced in response to hypoxia and are primarily mediated by hypoxia inducible factor (HIF). In in vitro models of mouse embryonic stem cell-derived cardiomyocytes, we showed that hypoxia (1% O2) or the pharmacological stabilization of HIFs significantly increased MHCbeta (Myh7) gene expression. The key role of HIF-1alpha is supported by the absence of these effects in HIF-1alpha-deficient cells, even in the presence of HIF-2alpha. Interestingly, ChIP analysis did not confirm the direct interaction of HIF-1alpha with putative HIF response elements predicted in the MHCalpha and beta encoding DNA region. Further analyses showed the significant effect of the mTOR signaling inhibitor rapamycin in inducing Myh7 expression and a hypoxia-triggered reduction in the levels of antisense RNA transcripts associated with the Myh7 gene locus. Overall, the recognized and important role of HIF in the regulation of heart regenerative processes could be highly significant for the development of novel therapeutic interventions in heart failure."	"Hypertrophic cardiomyopathy clinical phenotype is independent of gene mutation and mutation dosage. Over 1,500 gene mutations are known to cause hypertrophic cardiomyopathy (HCM). Previous studies suggest that cardiac β-myosin heavy chain (MYH7) gene mutations are commonly associated with a more severe phenotype, compared to cardiac myosin binding protein-C (MYBPC3) gene mutations with milder phenotype, incomplete penetrance and later age of onset. Compound mutations can worsen the phenotype. This study aimed to validate these comparative differences in a large cohort of individuals and families with HCM. We performed genome-phenome correlation among 80 symptomatic HCM patients, 35 asymptomatic carriers and 35 non-carriers, using an 18-gene clinical diagnostic HCM panel. A total of 125 mutations were identified in 14 genes. MYBPC3 and MYH7 mutations contributed to 50.0% and 24.4% of the HCM patients, respectively, suggesting that MYBPC3 mutations were the most frequent cause of HCM in our cohort. Double mutations were found in only nine HCM patients (7.8%) who were phenotypically indistinguishable from single-mutation carriers. Comparisons of clinical parameters of MYBPC3 and MYH7 mutants were not statistically significant, but asymptomatic carriers had high left ventricular ejection fraction and diastolic dysfunction when compared to non-carriers. The presence of double mutations increases the risk for symptomatic HCM with no change in severity, as determined in this study subset. The pathologic effects of MYBPC3 and MYH7 were found to be independent of gene mutation location. Furthermore, HCM pathology is independent of protein domain disruption in both MYBPC3 and MYH7. These data provide evidence that MYBPC3 mutations constitute the preeminent cause of HCM and that they are phenotypically indistinguishable from HCM caused by MYH7 mutations."	"Intrinsic MYH7 expression regulation contributes to tissue level allelic imbalance in hypertrophic cardiomyopathy. HCM, the most common inherited cardiac disease, is mainly caused by mutations in sarcomeric genes. More than a third of the patients are heterozygous for mutations in the MYH7 gene encoding for the β-myosin heavy chain. In HCM-patients, expression of the mutant and the wildtype allele can be unequal, thus leading to fractions of mutant and wildtype mRNA and protein which deviate from 1:1. This so-called allelic imbalance was detected in whole tissue samples but also in individual cells. There is evidence that the severity of HCM not only depends on the functional effect of the mutation itself, but also on the fraction of mutant protein in the myocardial tissue. Allelic imbalance has been shown to occur in a broad range of genes. Therefore, we aimed to examine whether the MYH7-alleles are intrinsically expressed imbalanced or whether the allelic imbalance is solely associated with the disease. We compared the expression of MYH7-alleles in non-HCM donors and in HCM-patients with different MYH7-missense mutations. In the HCM-patients, we identified imbalanced as well as equal expression of both alleles. Also at the protein level, allelic imbalance was determined. Most interestingly, we also discovered allelic imbalance and balance in non-HCM donors. Our findings therefore strongly indicate that apart from mutation-specific mechanisms, also non-HCM associated allelic-mRNA expression regulation may account for the allelic imbalance of the MYH7 gene in HCM-patients. Since the relative amount of mutant mRNA and protein or the extent of allelic imbalance has been associated with the severity of HCM, individual analysis of the MYH7-allelic expression may provide valuable information for the prognosis of each patient."	"Abnormal contractility in human heart myofibrils from patients with dilated cardiomyopathy due to mutations in TTN and contractile protein genes. Dilated cardiomyopathy (DCM) is an important cause of heart failure. Single gene mutations in at least 50 genes have been proposed to account for 25-50% of DCM cases and up to 25% of inherited DCM has been attributed to truncating mutations in the sarcomeric structural protein titin (TTNtv). Whilst the primary molecular mechanism of some DCM-associated mutations in the contractile apparatus has been studied in vitro and in transgenic mice, the contractile defect in human heart muscle has not been studied. In this study we isolated cardiac myofibrils from 3 TTNtv mutants, and 3 with contractile protein mutations (TNNI3 K36Q, TNNC1 G159D and MYH7 E1426K) and measured their contractility and passive stiffness in comparison with donor heart muscle as a control. We found that the three contractile protein mutations but not the TTNtv mutations had faster relaxation kinetics. Passive stiffness was reduced about 38% in all the DCM mutant samples. However, there was no change in maximum force or the titin N2BA/N2B isoform ratio and there was no titin haploinsufficiency. The decrease in myofibril passive stiffness was a common feature in all hearts with DCM-associated mutations and may be causative of DCM."	"Research progress of myosin heavy chain genes in human genetic diseases. Myosins constitute a large superfamily proteins, which convert chemical energy, through ATP hydrolysis, to mechanical force for diverse cellular movements, such as cell migration and muscle contraction. The class Ⅱ myosin forms the filaments in muscle and non-muscle cells as a hexameric protein complex, consisting of two myosin heavy chain (MyHC) subunits and two pairs of non-identical light chain subunits. There are several MyHC isoforms encoded by different genes of the MYH family in humans. At present, distinct mutations in different genes of the MYH family are associated with various human genetic diseases. Mutations in MYH2 are associated with skeletal myopathies, characterized by ophthalmoplegia. Mutations in MYH3 and MYH8 are associated with distal arthrogryposis syndromes. Mutations in MYH7 are associated with not only skeletal muscle diseases, such as Laing distal myopathy and myosin storage myopathy, but also hypertrophic cardiomyopathy. Mutations in MYH9 are associated with the so-called MYH9-related disease, characterized by giant platelets, thrombocytopenia and granulocyte inclusions. In this review, we briefly discuss the expression patterns of the MYH gene family and summarize the research progress in correlating the abnormalities of MYH gene family with various human genetic diseases."	"MicroRNA 499 gene expression in patients on hemodialysis with cardiovascular complications. MicroRNA (miRNA) 499 is an evolutionarily conserved muscle-specific miRNA that is encoded by an intron of the myh7 gene and is likely to play a role in myosin gene regulation. It has been shown to be involved in inhibiting apoptosis and myocardial infarction induced by ischemia and anoxia. It is unknown whether levels of miRNAs are affected in patients undergoing hemodialysis. The aim of this study was to assess circulating levels of miRNA 499 in hemodialysis patients and whether the levels are affected by dialyzer membranes (high flux vs. low flux). The studied population consisted of 32 end stage renal disease (ESRD) patients (22 males and 10 females) with age ranged from 38% to 75% years on regular hemodialysis (4 hours, 3 times weekly) for at least 1 year duration with cardiovascular events in the last 6 months and 32 healthy controls (20 males and 12 females) with an age range from 54 to 60 years. Patients were involved into a two-stage sequential study; high-flux hemodialysis stage (stage I), then low-flux hemodialysis stage (stage II). Expressed levels of plasma miRNA 499 have been measured by Real Time-PCR. Lipid profile, serum phosphorus, serum calcium, serum creatinine, and blood urea were measured in all patients. In this study, 2 patients with an open-heart surgery showed highly elevation in the miRNA 499, while the other patients, showing different degrees of ischemia, had different levels of elevated miRNA 499. Statistically significant higher levels of miRNA 499 in plasma were observed in all the studied patients with cardiovascular diseases compared to the levels of miRNA 499 found in healthy controls (P &lt; 0.0001). MicroRNA 499 was found to be a dialyzable marker. A significant decrease in plasma levels of miRNA 499 was obtained after either high-flux or low-flux dialysis compared to plasma levels of miRNA 499 found before dialysis (P &lt; 0.0001). On comparing both types of hemodialysis membranes with respect to miRNA 499 clearance, we found that low-flux membrane showed better clearance for miRNA 499 than high-flux membrane with a statistically significant difference between them (P &lt; 0.001). In conclusion, miRNA 499 levels are elevated in patients with ESRD with cardiovascular complications. High-flux membrane seems to be less efficient in miRNA 499 clearance in cardiac patients on hemodialysis."	"Utility of genetics for risk stratification in pediatric hypertrophic cardiomyopathy. Children with hypertrophic cardiomyopathy (HCM) experience sudden cardiac death (SCD) and other life-threatening events. We assessed if affected gene and variant burden predict outcomes. Patients &lt;18 years old with primary HCM with a pathogenic variant or variant of uncertain significance in cardiomyopathy genes were included. Association of gene and variant number and type with freedom from major adverse cardiac events (MACE), that is, ICD insertion, myectomy, aborted SCD, transplantation or death, was assessed by Cox regression. A total of 98 of 155 gene-tested patients carried a non-benign variant. The primary affected gene was MYH7 in 35% (MYH7+) and MYBPC3 in 49% (MYBPC3+). MYH7+ patients had earlier disease onset and higher risk of MACE (hazard ratio 2.7, 95% CI 1.3-5.7). Risk of MACE was also higher in patients with multiple variants (n = 16) (HR 2.5, CI: 1.1-5.9) compared to a propensity score-matched single variant subset, after adjustment for primary gene, and in patients with de novo (n = 18) vs inherited variants (HR 5.7, CI: 2.6-12.7). Affected gene (eg, MYH7), higher variant burden and de novo variant status are independently associated with earlier onset and higher frequency of adverse outcomes in pediatric HCM, highlighting the importance of genetic risk stratification in HCM."	"The contribution of mutations in MYH7 to the onset of cardiomyopathy. NA"	"Left ventricular non-compaction with Ebstein anomaly attributed to a TPM1 mutation. Left ventricular non-compaction (cardiomyopathy) (LVN(C)) is a rare hereditary cardiac condition, resulting from abnormal embryonic myocardial development. While it mostly occurs as an isolated condition, association with other cardiovascular manifestations such as Ebstein anomaly (EA) has been reported. This congenital heart defect is characterized by downward displacement of the tricuspid valve and leads to diminished ventricular size and function. In an autosomal dominant LVN(C) family consisting of five affected individuals, of which two also presented with EA and three with mitral valve insufficiency, we pursued the genetic disease cause using whole exome sequencing (WES). WES revealed a missense variant (p.Leu113Val) in TPM1 segregating with the LVN(C) phenotype. TPM1 encodes α-tropomyosin, which is involved in myocardial contraction, as well as in stabilization of non-muscle cytoskeletal actin filaments. So far, LVN(C)-EA has predominantly been linked to pathogenic variants in MYH7. However, one sporadic LVN(C)-EA case with a de novo TPM1 variant has recently been described. We here report the first LVN(C)-EA family segregating a pathogenic TPM1 variant, further establishing the association between EA predisposition and TPM1-related LVN(C). Consequently, we recommend genetic testing for both MYH7 and TPM1 in patients or families in which LVN(C)/non-compaction and EA coincide."	"Novel phenotypic variant in the MYH7 spectrum due to a stop-loss mutation in the C-terminal region: a case report. Defects of the slow myosin heavy chain isoform coding MYH7 gene primarily cause skeletal myopathies including Laing Distal Myopathy, Myosin Storage Myopathy and are also responsible for cardiomyopathies. Scapuloperoneal and limb-girdle muscle weakness, congenital fiber type disproportion, multi-minicore disease were also reported in connection of MYH7. Pathogeneses of the defects in the head and proximal rod region of the protein are well described. However, the C-terminal mutations of the MYH7 gene are less known. Moreover, only two articles describe the phenotypic impact of the elongated mature protein product caused by termination signal loss. Here we present a male patient with an unusual phenotypic variant of early-onset and predominant involvement of neck muscles with muscle biopsy indicating myopathy and sarcoplasmic storage material. Cardiomyopathic involvements could not be observed. Sequencing of MYH7 gene revealed a stop-loss mutation on the 3-prime end of the rod region, which causes the elongation of the mature protein. The elongated protein likely disrupts the functions of the sarcomere by multiple functional abnormalities. This elongation could also affect the thick filament degradation leading to protein deposition and accumulation in the sarcomere, resulting in the severe myopathy of certain axial muscles. The phenotypic expression of the detected novel MYH7 genotype could strengthen and further expand our knowledge about mutations affecting the structure of MyHCI by termination signal loss in the MYH7 gene."	"A triple stranded G-quadruplex formation in the promoter region of human myosin β(Myh7) gene. Regulatory regions in human genome, enriched in guanine-rich DNA sequences have the propensity to fold into G-quadruplex structures. On exploring the genome for search of G-tracts, it was interesting to find that promoter of Human Myosin Gene (MYH7) contains a conserved 23-mer G-rich sequence (HM-23). Mutations in this gene are associated with familial cardiomyopathy. Enrichment of MYH7 gene in G-rich sequences could possibly play a critical role in its regulation. We used polyacrylamide gel electrophoresis (PAGE), UV-Thermal denaturation (UV-Tm) and Circular Dichroism (CD), to demonstrate the formation of a G-quadruplex by 23-mer G-rich sequence HM23 in promoter location of MYH7 gene. We observed that the wild G-rich sequence HM23 containing consecutive G5 stretch in two stacks adopt G-quadruplexes of diverse molecularity by involvement of four-strand, three-strand and two-strands with same parallel topology. Interestingly, the mutated sequence in the absence of continuous G5 stretch obstructs the formation of three-stranded G-quadruplex. We demonstrated that continuous G5 stretch is mandatory for the formation of a unique three-stranded G-quadruplex. Presence of various transcription factors (TF) in vicinity of the sequence HM23 leave fair possibility of recognition by TF binding sites, and so modulate gene expression. These findings may add on our understanding about the effect of base change in the formation of varied structural species in similar solution condition. This study may give insight about structural polymorphism arising due to recognition of non-Watson-Crick G-quadruplex structures by cellular proteins and designing structure specific molecules."	"Hypertrophic Cardiomyopathy: Genetics, Pathogenesis, Clinical Manifestations, Diagnosis, and Therapy. Hypertrophic cardiomyopathy (HCM) is a genetic disorder that is characterized by left ventricular hypertrophy unexplained by secondary causes and a nondilated left ventricle with preserved or increased ejection fraction. It is commonly asymmetrical with the most severe hypertrophy involving the basal interventricular septum. Left ventricular outflow tract obstruction is present at rest in about one third of the patients and can be provoked in another third. The histological features of HCM include myocyte hypertrophy and disarray, as well as interstitial fibrosis. The hypertrophy is also frequently associated with left ventricular diastolic dysfunction. In the majority of patients, HCM has a relatively benign course. However, HCM is also an important cause of sudden cardiac death, particularly in adolescents and young adults. Nonsustained ventricular tachycardia, syncope, a family history of sudden cardiac death, and severe cardiac hypertrophy are major risk factors for sudden cardiac death. This complication can usually be averted by implantation of a cardioverter-defibrillator in appropriate high-risk patients. Atrial fibrillation is also a common complication and is not well tolerated. Mutations in over a dozen genes encoding sarcomere-associated proteins cause HCM. MYH7 and MYBPC3, encoding β-myosin heavy chain and myosin-binding protein C, respectively, are the 2 most common genes involved, together accounting for ≈50% of the HCM families. In ≈40% of HCM patients, the causal genes remain to be identified. Mutations in genes responsible for storage diseases also cause a phenotype resembling HCM (genocopy or phenocopy). The routine applications of genetic testing and preclinical identification of family members represents an important advance. The genetic discoveries have enhanced understanding of the molecular pathogenesis of HCM and have stimulated efforts designed to identify new therapeutic agents."	"The Cumulative Effects of the MYH7-V878A and CACNA1C-A1594V Mutations in a Chinese Family with Hypertrophic Cardiomyopathy. We investigated the pathogenesis of MYH7-V878A and CACNA1C-A1594V mutations in a Chinese family with hypertrophic cardiomyopathy. Clinical, electrocardiographic (ECG), echocardiographic, and cardiac magnetic resonance (CMR) examinations of members of a Chinese family were followed by exon and boarding intron analyses of 96 genes in the proband using second-generation sequencing. We confirmed the mutations by bidirectional Sanger sequencing in the members and in 300 healthy controls. We detected MYH7-V878A and CACNA1C-A1594V mutations in this family. The members with both mutations showed inverted T-waves and ST-segment depression in ECG recordings, severe left ventricular (LV) hypertrophy in echocardiography, and myocardial fibrosis in CMR; subject II-11 did not show late gadolinium enhancement. Among those with only the MYH7-V878A mutation, subject III-7 showed abnormal ECG recordings, asymmetric septal hypertrophy, and myocardial fibrosis, and subjects II-13 and III-15 showed some abnormal repolarization, borderline LV wall thickness, and normal CMR findings. Those with only the CACNA1C-A1594V mutation showed nearly normal readings in all examinations. The members with both mutations displayed more severe LV hypertrophy and elevated LV filling pressure than those with 1 or no mutation (p &lt; 0.05). Our results suggest that the pathogenesis of MYH7-V878A and CACNA1C-A1594V mutations may have a cumulative effect."	"A Dutch MYH7 founder mutation, p.(Asn1918Lys), is associated with early onset cardiomyopathy and congenital heart defects. Mutations in the myosin heavy chain 7 (MYH7) gene commonly cause cardiomyopathy but are less frequently associated with congenital heart defects. In this study, we describe a mutation in the MYH7 gene, c. 5754C &gt; G; p. (Asn1918Lys), present in 15 probands and 65 family members. Of the 80 carriers (age range 0-88 years), 46 (57.5%) had cardiomyopathy (mainly dilated cardiomyopathy (DCM)) and seven (8.8%) had a congenital heart defect. Childhood onset of cardiomyopathy was present in almost 10% of carriers. However, in only a slight majority (53.7%) was the left ventricular ejection fraction reduced and almost no arrhythmias or conduction disorders were noted. Moreover, only one carrier required heart transplantation and nine (11.3%) an implantable cardioverter defibrillator. In addition, the standardised mortality ratio for MYH7 carriers was not significantly increased. Whole exome sequencing in several cases with paediatric onset of DCM and one with isolated congenital heart defects did not reveal additional known disease-causing variants. Haplotype analysis suggests that the MYH7 variant is a founder mutation, and is therefore the first Dutch founder mutation identified in the MYH7 gene. The mutation appears to have originated in the western region of the province of South Holland between 500 and 900 years ago. Clinically, the p. (Asn1918Lys) mutation is associated with congenital heart defects and/or cardiomyopathy at young age but with a relatively benign course."	"A Wide and Specific Spectrum of Genetic Variants and Genotype-Phenotype Correlations Revealed by Next-Generation Sequencing in Patients with Left Ventricular Noncompaction. Left ventricular noncompaction (LVNC) has since been classified as a primary genetic cardiomyopathy, but the genetic basis is not fully evaluated. The aim of the present study was to identify the genetic spectrum using next-generation sequencing and to evaluate genotype-phenotype correlations in LVNC patients. Using next-generation sequencing, we targeted and sequenced 73 genes related to cardiomyopathy in 102 unrelated LVNC patients. We identified 43 pathogenic variants in 16 genes in 39 patients (38%); 28 were novel variants. Sarcomere gene variants accounted for 63%, and variants in genes associated with channelopathies accounted for 12%. MYH7 and TAZ pathogenic variants were the most common, and rare variant collapsing analysis showed variants in these genes contributed to the risk of LVNC, although patients carrying MYH7 and TAZ pathogenic variants displayed different phenotypes. Patients with pathogenic variants had early age of onset and more severely decreased left ventricular ejection fractions. Survival analysis showed poorer prognosis in patients with pathogenic variants, especially those with multiple variants: All died before their first birthdays. Adverse events were noted in 17 patients, including 13 deaths, 3 heart transplants, and 1 implantable cardioverter-defibrillator insertion. Congestive heart failure at diagnosis and pathogenic variants were independent risk factors for these adverse events. Next-generation sequencing revealed a wide spectrum of genetic variations and a high incidence of pathogenic variants in LVNC patients. These pathogenic variants were independent risk factors for adverse events. Patients harboring pathogenic variants showed poor prognosis and should be followed closely."	"Clinical outcomes associated with sarcomere mutations in hypertrophic cardiomyopathy: a meta-analysis on 7675 individuals. Hypertrophic cardiomyopathy (HCM) is the most common genetic cardiovascular disease, which goes along with increased risk for sudden cardiac death (SCD). Despite the knowledge about the different causal genes, the relationship between individual genotypes and phenotypes is incomplete. We retrieved PubMed/Medline literatures on genotype-phenotype associations in patients with HCM and mutations in MYBPC3, MYH7, TNNT2, and TNNI3. Altogether, 51 studies with 7675 HCM patients were included in our meta-analysis. The average frequency of mutations in MYBPC3 (20%) and MYH7 (14%) was higher than TNNT2 and TNNI3 (2% each). The mean age of HCM onset for MYH7 mutation positive patients was the beginning of the fourth decade, significantly earlier than patients without sarcomeric mutations. A high male proportion was observed in TNNT2 (69%), MYBPC3 (62%) and mutation negative group (64%). Cardiac conduction disease, ventricular arrhythmia and heart transplantation (HTx) rate were higher in HCM patients with MYH7 mutations in comparison to MYBPC3 (p &lt; 0.05). Furthermore, SCD was significantly higher in patients with sarcomeric mutations (p &lt; 0.01). A pooled dataset and a comprehensive genotype-phenotype analysis show that the age at disease onset of HCM patients with MYH7 is earlier and leads to a more severe phenotype than in patient without such mutations. Furthermore, patients with sarcomeric mutations are more susceptible to SCD. The present study further supports the clinical interpretation of sarcomeric mutations in HCM patients."	"Molecular regulation of high muscle mass in developing Blonde d'Aquitaine cattle foetuses. The Blonde d'Aquitaine (BA) is a French cattle breed with enhanced muscularity, partly attributable to a MSTN mutation. The BA m. Semitendinosus has a faster muscle fibre isoform phenotype comprising a higher proportion of fast type IIX fibres compared to age-matched Charolais (CH). To better understand the molecular network of modifications in BA compared to CH muscle, we assayed the transcriptomes of the m. Semitendinosus at 110, 180, 210 and 260 days postconception (dpc). We used a combination of differential expression (DE) and regulatory impact factors (RIF) to compare and contrast muscle gene expression between the breeds. Prominently developmentally regulated genes in both breeds reflected the replacement of embryonic myosin isoforms (MYL4, MYH3) with adult isoforms (MYH1) and the upregulation of mitochondrial metabolism (CKMT2, AGXT2L1) in preparation for birth. However, the transition to a fast, glycolytic muscle phenotype in the MSTN mutant BA is detectable through downregulation of various slow twitch subunits (TNNC1, MYH7, TPM3, CSRP3) beyond 210 dpc, and a small but consistent genome-wide reduction in mRNA encoding the mitoproteome. Across the breeds, NRIP2 is the regulatory gene possessing a network change most similar to that of MSTN."	"Finding the candidate sequence variants for diagnosis of hypertrophic cardiomyopathy in East Slovak patients. Hypertrophic cardiomyopathy is a heterogeneous myocardial disease. Mutations appearing in several genes might be a potential cause of the disease. The aim of the study was to analyze selected exons of the sarcomeric and non-sarcomeric genes, with the purpose to identify potential candidate genetic variants and to understand etiopathogenetic mechanisms of hypertrophic cardiomyopathy in East Slovak patients. This study recruited 23 unrelated patients with hypertrophic cardiomyopathy, namely, 13 men and 10 women (mean age of 58.09±15.82 years) and 25 healthy controls in order to determine the candidate sequence variants, in the selected exons of six cardiomyopathy genes (MYBPC3, MYH7, NEBL, SCN5A, TNNI3, TNNT2), by conventional capillary-based Sanger sequencing method and standard protocols. Molecular genetic results confirmed the presence of 43 sequence variants in the selected exons of six cardiomyopathy genes, 58.14% of detected variants were novel. The majority of detected sequence variants were confirmed within exon 23 of MYH7 gene. Only 11 genetic alterations were predicted to be potentially pathogenic. In our study, we identified known and novel sequence variants in 23 unrelated patients with hypertrophic cardiomyopathy, but we did not observe any strong mutation hotspot. The results of our study assumed that exon 23 of MYH7 gene can be in potential affinity to hypertrophic cardiomyopathy in our cohort of patients. The sequence variants identified in this study may be further investigated in order to determine their functions in disease pathogenesis and improve management, diagnosis, and treatment in Slovak patients."	"Androgen receptor is expressed in mouse cardiomyocytes at prenatal and early postnatal developmental stages. Previous studies show that androgens are involved in hypertrophy and excitability of cardiomyocytes and that their effects are mediated through their receptor. The aim of this study was to evaluate the presence of androgen receptor (AR) in mouse heart during prenatal and early postnatal stages. The expression of AR and related genes, alpha myosin heavy chain -Myh6-, beta myosin heavy chain -Myh7- and atrial natriuretic factor -Nppa- was simultaneously evaluated by semiquantitative RT-PCR. AR was also detected by immunohistochemistry. Androgen receptor mRNA was detected in hearts from 10.5 days post coitum to 16 postnatal days. A higher expression of AR mRNA in atria compared to ventricles was observed in neonatal mouse. A positive correlation between mRNA levels of AR and Nppa was observed in mouse heart at early postnatal development. Androgen receptor expression is similar in males and females during cardiac development. Finally, androgen receptor protein was observed by immunohistochemistry in myocardial cells of atria and ventricles from 12.5 days onwards and restricted after 16.5 days post-coitum to nuclei of cardiomyocytes. Present results provide evidence that androgen receptor is expressed from prenatal stages in mouse heart, supporting the proposition that androgens could be involved in mammalian heart development."	"Novel Genetic Triggers and Genotype-Phenotype Correlations in Patients With Left Ventricular Noncompaction. Left ventricular noncompaction (LVNC) is a genetically and phenotypically heterogeneous disease and, although increasingly recognized in clinical practice, there is a lack of widely accepted diagnostic criteria. We sought to identify novel genetic causes of LVNC and describe genotype-phenotype correlations. A total of 190 patients from 174 families with left ventricular hypertrabeculation (LVHT) or LVNC were referred for cardiac magnetic resonance and whole-exome sequencing. A total of 425 control individuals were included to identify variants of interest (VOIs). We found an excess of 138 VOIs in 102 (59%) unrelated patients in 54 previously identified LVNC or other known cardiomyopathy genes. VOIs were found in 68 of 90 probands with LVNC and 34 of 84 probands with LVHT (76% and 40%, respectively; P&lt;0.001). We identified 0, 1, and ≥2 VOIs in 72, 74, and 28 probands, respectively. We found increasing number of VOIs in a patient strongly correlated with several markers of disease severity, including ratio of noncompacted to compacted myocardium (P&lt;0.001) and left ventricular ejection fraction (P=0.01). The presence of sarcomeric gene mutations was associated with increased occurrence of late gadolinium enhancement (P=0.004). LVHT and LVNC likely represent a continuum of genotypic disease with differences in severity and variable phenotype explained, in part, by the number of VOIs and whether mutations are present in sarcomeric or nonsarcomeric genes. Presence of VOIs is common in patients with LVHT. Our findings expand the current clinical and genetic diagnostic approaches for patients with LVHT and LVNC."	"Tbx18-positive cells differentiated from murine ES cells serve as proepicardial progenitors to give rise to vascular smooth muscle cells and fibroblasts. Proepicardium (PE) cells generate cardiac fibroblasts, smooth muscle cells (SMCs) and endothelial cells that form coronary arteries. T-box18 (Tbx18) is a well-known marker of PE cells and epicardium. We examined whether Tbx18-positive cells differentiated from murine embryonic stem (ES) cells serve as PE progenitors to give rise to vascular SMCs and fibroblasts. To collect Tbx18-positive cells, we established Tbx18-EGFP knock-in mouse ES cells using the CRISPR/Cas9 system. We harvested the Tbx18-EGFP-positive cells on day 8, 10 and 14 after the initiation of differentiation; Tbx18 mRNA was enriched on day 8 to 14 and Snai2 mRNA was enriched on day 8 and 10, indicating successful collection of Tbx18-positive cells. Tbx18-EGFP-positive cells expressed the PE marker WT1 on day 8 and 10. They also expressed the SMC marker Acta2 and fibroblast markers Thy1 and Fsp1 on day 8 to 14, but did not express the endothelial cell marker PECAM or the cardiac cell marker CD166 or Myh7. In conclusion, Tbx18-positive cells represent a part of PE cells in the initial phase of differentiation and subsequently include SMCs as well as fibroblasts. These results indicate that Tbx18-positive cells serve as a PE progenitor to supply a variety of cells that contribute to the formation of coronary arteries."	"[Analysis of genotype and phenotype correlation of MYH7-V878A mutation among ethnic Han Chinese pedigrees affected with hypertrophic cardiomyopathy]. To analyze the phenotype-genotype correlation of MYH7-V878A mutation. Exonic amplification and high-throughput sequencing of 96-cardiovascular disease-related genes were carried out on probands from 210 pedigrees affected with hypertrophic cardiomyopathy (HCM). For the probands, their family members, and 300 healthy volunteers, the identified MYH7-V878A mutation was verified by Sanger sequencing. Information of the HCM patients and their family members, including clinical data, physical examination, echocardiography (UCG), electrocardiography (ECG), and conserved sequence of the mutation among various species were analyzed. A MYH7-V878A mutation was detected in five HCM pedigrees containing 31 family members. Fourteen members have carried the mutation, among whom 11 were diagnosed with HCM, while 3 did not meet the diagnostic criteria. Some of the fourteen members also carried other mutations. Family members not carrying the mutation had normal UCG and ECG. No MYH7-V878A mutation was found among the 300 healthy volunteers. Analysis of sequence conservation showed that the amino acid is located in highly conserved regions among various species. MYH7-V878A is a hot spot among ethnic Han Chinese with a high penetrance. Functional analysis of the conserved sequences suggested that the mutation may cause significant alteration of the function. MYH7-V878A has a significant value for the early diagnosis of HCM."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Vestigial-like 2 contributes to normal muscle fiber type distribution in mice. Skeletal muscle is composed of heterogeneous populations of myofibers that are classified as slow- and fast-twitch fibers. The muscle fiber-type is regulated in a coordinated fashion by multiple genes, including transcriptional factors and microRNAs (miRNAs). However, players involved in this regulation are not fully elucidated. One of the members of the Vestigial-like factors, Vgll2, is thought to play a pivotal role in TEA domain (TEAD) transcription factor-mediated muscle-specific gene expression because of its restricted expression in skeletal muscles of adult mice. Here, we generated Vgll2 null mice and investigated Vgll2 function in adult skeletal muscles. These mice presented an increased number of fast-twitch type IIb fibers and exhibited a down-regulation of slow type I myosin heavy chain (MyHC) gene, Myh7, which resulted in exercise intolerance. In accordance with the decrease in Myh7, down-regulation of miR-208b, encoded within Myh7 gene and up-regulation of targets of miR-208b, Sox6, Sp3, and Purβ, were observed in Vgll2 deficient mice. Moreover, we detected the physical interaction between Vgll2 and TEAD1/4 in neonatal skeletal muscles. These results suggest that Vgll2 may be both directly and indirectly involved in the programing of slow muscle fibers through the formation of the Vgll2-TEAD complex."	"Muscle Histology Characterization Using H&amp;E Staining and Muscle Fiber Type Classification Using Immunofluorescence Staining. Muscle function is determined by its structure and fiber type composition. Here we describe a protocol to examine muscle histology and myofiber types using hematoxylin and eosin (H&amp;E) and immunofluorescence staining, respectively. H&amp;E stain nucleus in blue and cytoplasm in red, therefore allowing for morphological analyses, such as myofiber diameter, the presence of degenerated and regenerated myofibers, and adipocytes and fibrotic cells. Muscle fibers in adult skeletal muscles of rodents are classified into 4 subtypes based on the expression of myosin heavy chain proteins: Myh7 (type I fiber), Myh2 (type IIA fiber), Myh1 (type IIX fiber), Myh4 (type IIB fiber). A panel of monoclonal antibodies can be used to specifically label these muscle fiber subtypes. These protocols are commonly used in the study of muscle development, growth and regeneration (for example: Wang et al., 2015; Nie et al., 2016; Yue et al., 2016; Wang et al., 2017)."	"Impact of Amyotrophic Lateral Sclerosis on Slow Tonic Myofiber Composition in Human Extraocular Muscles. To analyze the proportion and cross-sectional area of myofibers containing myosin heavy chain slow-twitch (MyHCI) and myosin heavy chain slow tonic (MyHCsto) in extraocular muscles of autopsied amyotrophic lateral sclerosis (ALS) patients with either spinal or bulbar site of disease onset. Whole-muscle cross sections from the middle portion of the medial rectus were labeled with antibodies against MyHCI or MyHCsto and laminin. Myofibers labeled with the MyHC antibodies (MyHCI+sto) and the total number of myofibers were quantified in the orbital and global layer of 6 control individuals and 18 ALS patients. The cross-sectional area of myofibers labeled for either MyHC was quantified in 130 to 472 fibers/individual in the orbital and in 180 to 573 fibers/individual in the global layer of each specimen. The proportion of MyHCI+sto myofibers was significantly smaller in the orbital and global layer of ALS compared to control individuals. MyHCI+sto myofibers were significantly smaller in the global layer than in the orbital layer of ALS, whereas they were of similar size in control subjects. The decreased proportion of MyHCI+sto fibers correlated significantly with the age of death, but not disease duration, in patients who had the bulbar-onset variant of ALS but not in patients with spinal variant. ALS, regardless of site of onset, involves a loss of myofibers containing MyHCI+sto. Only in bulbar-onset cases did aging seem to play a role in the pathophysiological processes underlying the loss of MyHCI+sto fibers."	"Anisotropic microfibrous scaffolds enhance the organization and function of cardiomyocytes derived from induced pluripotent stem cells. Engineering of myocardial tissue constructs is a promising approach for treatment of coronary heart disease. To engineer myocardial tissues that better mimic the highly ordered physiological arrangement and function of native cardiomyocytes, we generated electrospun microfibrous polycaprolactone scaffolds with either randomly oriented (14 μm fiber diameter) or parallel-aligned (7 μm fiber diameter) microfiber arrangement and co-seeded the scaffolds with human induced pluripotent stem cell-derived cardiomyocytes (iCMs) and endothelial cells (iECs) for up to 12 days after iCM seeding. Here we demonstrated that aligned microfibrous scaffolds induced iCM alignment along the direction of the aligned microfibers after 2 days of iCM seeding, as well as promoted greater iCM maturation by increasing the sarcomeric length and gene expression of myosin heavy chain adult isoform (MYH7), in comparison to randomly oriented scaffolds. Furthermore, the benefit of scaffold anisotropy was evident in the significantly higher maximum contraction velocity of iCMs on the aligned scaffolds, compared to randomly oriented scaffolds, at 12 days of culture. Co-seeding of iCMs with iECs led to reduced contractility, compared to when iCMs were seeded alone. These findings demonstrate a dominant role of scaffold anisotropy in engineering cardiovascular tissues that maintain iCM organization and contractile function."	"Co-inheritance of mutations associated with arrhythmogenic cardiomyopathy and hypertrophic cardiomyopathy. Arrhythmogenic cardiomyopathy (ACM) and hypertrophic cardiomyopathy (HCM) are genetically and phenotypically distinct disorders of the myocardium. Here we describe for the first time co-inheritance of mutations in genes associated with ACM or HCM in two families with recurrence of both cardiomyopathies. Among the double heterozygotes for mutations in desmoplakin (DSP) and myosin binding protein C (MYBPC3) genes identified in Family A, two were diagnosed with ACM and two with HCM. In Family B, one patient was identified to carry mutations in α-T-catenin (CTTNA3) and β-myosin (MYH7) genes, but he does not fulfill the current diagnostic criteria neither for ACM nor for HCM. Interestingly, the double heterozygotes showed a variable clinical expression of both cardiomyopathies and they do not exhibit a more severe phenotype than family members carrying only one of the two mutations."	"A multiplex PCR strategy to screen for known mutations in families with sudden cardiac death burden. Ventricular tachyarrythmia occurring in ischemic heart disease, dilated/hypertrophic cardiomyopathies or rare monogenic mutations of cardiac ion channels or associated proteins belong to the most frequent causes of sudden cardiac death (SCD). In further decades, next generation sequencing and bioinformatic analysis will become the gold standard of SCD risk stratification. At the moment, Sanger-sequencing is still obligatory in genetic diagnosis. A multiplex polymerase chain reaction (PCR) assay detecting eight SCD mutations in one reaction-tube was developed. To test the general validity of the assay, it was used with 12 patients, who had one or two of the eight mutations (LMNA, p.V256V; SCN5A, p.R1583C; RYR2, p.G1885E; MYH7, V606M; DSG2, p.T335A; KCNJ8, p.S422L; MYBPC, p.E441K; TNNT2, A38V). Thereafter, we tested the multiplex assay in a real diagnostic environment within a high risk family of several past SCD cases. This method allows efficient discrimination of multiple mutations by allele-specific PCR with standard PCR conditions. It relies on obtaining a PCR product specific to the mutation or wildtype-using primers that have the 3'end base complementary to the DNA template site, i.e. a specific primer only permits amplification to take place when its 3'terminal nucleotide matches with its target sequence. The PCR products are further analyzed by length, with Tape Station<sup>®</sup>(Agilent Technologies, Germany), a high-fidelity capillary chromatography test. The novel multiplex PCR assay strategy could be a good additional test used for SCD risk stratification. Advantages of the test are high velocity and ease of implementation, low price and flexibility of application within cardiomyopathy families for screening purposes."	"Bioinspired onion epithelium-like structure promotes the maturation of cardiomyocytes derived from human pluripotent stem cells. Organized cardiomyocyte alignment is critical to maintain the mechanical properties of the heart. In this study, we present a new and simple strategy to fabricate a biomimetic microchip designed with an onion epithelium-like structure and investigate the guided behavior of human induced pluripotent stem cell derived cardiomyocytes (hiPSC-CMs) on the substrate. The hiPSC-CMs were observed to be confined by the three dimensional surficial features morphologically, analogous to the in vivo microenvironment, and exhibited an organized anisotropic alignment on the onion epithelium-like structure with good beating function. The calcium imaging of hiPSC-CMs demonstrated a more mature Ca<sup>2+</sup> spark pattern as well. Furthermore, the expression of sarcomere genes (TNNI3, MYH6 and MYH7), potassium channel genes (KCNE1 and KCNH2), and calcium channel genes (RYR2) was significantly up-regulated on the substrate with an onion epithelium-like structure instead of the surface without the structure, indicating a more matured status of cardiomyocytes induced by this structure. It appears that the biomimetic micropatterned structure, analogous to in vivo cellular organization, is an important factor that might promote the maturation of hiPSC-CMs, providing new biological insights to guide hiPSC-CM maturation by biophysical factors. The established approach may offer an effective in vitro model for investigating cardiomyocyte differentiation, maturation and tissue engineering applications."	"Looking into a whale's heart: investigating a genetic basis for cardiomyopathy in a non-model species. Understanding the pathogenesis of complex diseases can benefit from multi-species comparative studies. Yet these studies rarely include natural populations of non-model species. Here, we focused on the cause of a heart muscle disease, cardiomyopathy (CM), affecting multiple mammalian species including humans, cats, dogs, and certain species of whales. Mutations in genes coding for sarcomeric proteins have been identified as a leading cause for CM in humans, and some were also revealed to be responsible for CM in cats. We investigated whether similar mutations could be detected in the deep-diving pygmy sperm whale (Kogia breviceps), which is one of two cetacean species known to display CM. We sequenced portions of two candidate genes (MYH7: 3153 bp and MYBPC3: 3019 bp) in 55 whales including affected and unaffected individuals. Mutation screening revealed six nonsynonymous substitutions that were predicted to have an effect on protein function. However, the etiology of CM is likely complex and probably multi-factorial as three of these mutations were observed in unaffected individuals from our control group. This incomplete penetrance could be partly age-related and could also be due to the influence of environmental factors on the development of CM, as seen in humans."	"Digenic inheritance of mutations in the cardiac troponin (TNNT2) and cardiac beta myosin heavy chain (MYH7) as the cause of severe dilated cardiomyopathy. Familial dilated cardiomyopathy (DCM) is characterized by ventricular dilation and depressed myocardial performance. It is a genetically heterogeneous disorder associated with mutations in over 60 genes. We carried out whole exome sequencing in combination with cardiomyopathy-related gene-filtering on two affected family members to identify the possible causative mutation in a consanguineous Iranian family with DCM. Two novel variants in cardiomyopathy-related genes were identified: c.247 A &gt; C; p.N83H in the Troponin T Type 2 gene (TNNT2) and c.2863G &gt; A; p.D955N in the Myosin Heavy Polypeptide 7 gene (MYH7). Sanger sequencing and co-segregation analysis in the remaining family members supported the coexistence of these digenic mutations in affected members of the family. Carriers of either variant alone were asymptomatic. In summary, we find that digenic inheritance of two novel variants in DCM related genes is associated with a severe form of DCM. Exome sequencing has been shown to be very useful in identifying pathogenic mutations in cardiomyopathy families, and this report emphasizes the importance of comprehensive screening of DCM related genes, even after the identification of a single disease-causing mutation."	"Cystinosis distal myopathy, novel clinical, pathological and genetic features. Nephropathic cystinosis is an autosomal recessive lysosomal disease in which cystine cannot exit the lysosome to complete its degradation in the cytoplasm, thus accumulating in tissues. Some patients develop a distal myopathy involving mainly hand muscles. Myopathology descriptions from only 5 patients are available in the literature. We present a comprehensive clinical, pathological and genetic description of 3 patients from 2 families with nephropathic cystinosis. Intrafamiliar variability was detected in one family in which one sibling developed a severe distal myopathy while the other sibling did not show any signs of skeletal muscle involvement. One of the patients was on treatment with Cysteamine for over 12 years but still developed the usual complications of nephropathic cystinosis in his twenties. Novel pathological findings consisting in sarcoplasmic deposits reactive for slow myosin were identified. Three previously known and one novel mutation are reported. Nephropathic cystinosis should be included in the differential diagnosis of distal myopathies in those with early renal failure. Novel clinical and pathological features are reported here contributing to the characterization of the muscle involvement in nephropathic cystinosis."	"Burden of Recurrent and Ancestral Mutations in Families With Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy is a genetically heterogeneous myocardial disease with &gt;1000 causal variants identified. Nonunique variants account for disease in many families. We sought to characterize nonunique variants in Australian families and determine whether they arise from common ancestral mutations or recurrent mutation events. Genetic test results of 467 index patients from apparently unrelated families with hypertrophic cardiomyopathy were evaluated. Causal variants were found in 185 of 467 (40%) families. Nonunique variants accounted for 122 of 185 (66%) families. The most common single genetic cause of hypertrophic cardiomyopathy is the recurrent MYBPC3 (myosin-binding protein-C) variant c.1504C&gt;T, p.Arg502Trp, which was found in 13 of 185 (7%) families with a causal variant identified. Thirteen variants in MYBPC3 and MYH7 (myosin heavy chain 7) were each identified &gt;3 times and accounted for 78 of 185 (42%) hypertrophic cardiomyopathy families with a causal variant. Haplotype analysis of these 13 variants was performed on 126 individuals from 70 Australian families, and 11 variants arose through recurrent mutation events. Two variants, MYBPC3 c.1928-2A&gt;G and MYH7 c.2681A&gt;G, p.Glu894Gly, were found on 1 haplotype in 6 families each, supportive of a single mutation event inherited from a common ancestor. The majority of families with a causal variant identified have a nonunique variant. Discovery of the genetic origins of human disease forms a fundamental basis for improved understanding of disease pathogenesis and phenotype development."	"Next-generation sequencing identifies pathogenic and modifier mutations in a consanguineous Chinese family with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a highly heterogeneous disease displaying considerable interfamilial and intrafamilial phenotypic variation, including disease severity, age of onset, and disease progression. This poorly understood variance raises the possibility of genetic modifier effects, particularly in MYBPC3-associated HCM.In a large consanguineous Chinese HCM family, we identified 8 members harboring the MYBPC3 c.3624delC (p.Lys1209Serfs) disease-causing mutation, but with very disparate phenotypes. Genotyping ruled out the modifying effect of previously described variants in renin-angiotensin-aldosterone system. Afterwards, we screened for modifying variants in all known causing genes and closely related genes for cardiomyopathy and channelopathy by performing targeted next-generation sequencing. For first time, we showed that a c.1598C&gt;T (p.Ser533Leu) mutation in voltage-dependent l-type calcium channel subunit beta-2 (CACNB2) was present in all severely affected HCM patients, but not in those moderately affected or genotype-positive phenotype-negative patients. This CACNB2 p.Ser533Leu mutation is extremely conserved in evolution, and was not found in 550 healthy controls.Our results suggest that CACNB2 is a possible candidate genetic modifier of MYBPC3-associated familial HCM, but more genetic evidence and functional experiments are needed to confirm."	"Genetic Factors Involved in Mandibular Prognathism. Mandibular prognathism is defined as an abnormal forward projection of the mandible beyond the standard relation to the cranial base and it is usually categorized as both a skeletal Class III pattern and Angle Class III malocclusion. The etiology of mandibular prognathism is still uncertain, with various genetic, epigenetic, and environmental factors possibly involved. However, many reports on its coexistence in both twins and segregation in families suggest the importance of genetic influences. A multifactorial and polygenic background with a threshold for expression or an autosomal dominant mode with incomplete penetrance and variable expressivity are the most probable inheritance patterns. Linkage analyses have, thus far, shown the statistical significance of such loci as 1p22.1, 1p22.3, 1p32.2, 1p36, 3q26.2, 4p16.1, 6q25, 11q22, 12pter-p12.3, 12q13.13, 12q23, 12q24.11, 14q24.3 to 31.2, and 19p13.2. The following appear among candidate genes: MATN1, EPB41, growth hormone receptor, COL2A1, COL1A1, MYO1H, DUSP6, ARHGAP21, ADAMTS1, FGF23, FGFR2, TBX5, ALPL, HSPG2, EVC, EVC2, the HoxC gene cluster, insulin-like growth factor 1, PLXNA2, SSX2IP, TGFB3, LTBP2, MMP13/CLG3, KRT7, and FBN3. On the other hand, MYH1, MYH2, MYH3, MYH7, MYH8, FOXO3, NFATC1, PTGS2, KAT6B, HDAC4, and RUNX2 expression is suspected to be involved in the epigenetic regulations behind the mandibular prognathism phenotype."	"Hereditary Dilated Cardiomyopathy: Recent Advances in Genetic Diagnostics. Dilated cardiomyopathy (DCM) is the most common cause of heart failure in young adults and up to 50% of idiopathic DCM is thought to be caused by genetic mutations in candidate genes. Although a genetic diagnosis can confirm a clinical diagnosis of hereditary DCM, genetic testing has not been easily accessible due to genetic heterogeneity and complexity. Next-generation sequencing (NGS) technologies have recently been introduced, and genetic testing for multiple genes is currently available and more than 40 different genes have been associated with DCM. In Korea, the government has supported genetic diagnosis for patients with idiopathic DCM. When a targeted gene panel with NGS technology was used, the detection rate was about 40%. MYBPC3, LMNA, and MYH7 were the most frequently identified genes, and the pattern of causative genes was different from previous reports. In the analysis, a significant number of subjects (42.0%) had rare or novel unspecified variants in DCM candidate genes, which should be assessed as potential causative mutations. Developing a more comprehensive test panel with additional DCM genes and whole exome sequencing will improve the detection rate, and allow genetic testing to be an option for patients with idiopathic DCM. However, all genetic variations are not pathogenic mutations, and the majority of reported mutations in DCM are unique to a single family, which makes genetic data interpretation more difficult. Therefore, clinical features and familial history integration are needed to improve clinical decision making."	"Traditional Chinese Medication Qiliqiangxin Protects Against Cardiac Remodeling and Dysfunction in Spontaneously Hypertensive Rats. Qiliqiangxin (QLQX), a traditional Chinese herbs medication, exerted protective effect in chronic heart failure patients in a multicenter randomized double-blind study. QLQX has also been found to improve cardiac function and reduce cardiac fibrosis in spontaneously hypertension animal model. However, the effect of longterm treatment with QLQX in such a condition and the related molecular mechanisms remain largely unknown. In the present study, thirteen-week-old spontaneously hypertensive rats (SHRs) were treated by daily intragastric administration of QLQX or saline for one year. Echocardiography, electron microscopy, and Masson's trichrome staining were used to determine cardiac function, mitochondria ultrastructure, and cardiac fibrosis, respectively. Quantitative reverse transcription polymerase chain reactions (qRT-PCRs) and Western blotting were used to determine gene expressions. We found that QLQX significantly improved cardiac function and reduced gene markers of pathological hypertrophy including ANP, BNP, and Myh7. QLQX also attenuated cardiac fibrosis and apoptosis in SHRs as evidenced by downregulation of α-SMA, collagen I, collagen III, and TGF-β expressions and reduction of Bax to Bcl-2 ratio. Moreover, the damage of mitochondrial ultrastructure was greatly improved and the reduction of PPAR-α, PPAR-γ, and PGC-1α expression levels was significantly restored in SHRs by treatment with QLQX. In conclusion, longterm treatment with QLQX protects against cardiac remodeling and dysfunction in hypertension by increasing PPARs and PGC-1α."	"Myosin-binding Protein C Compound Heterozygous Variant Effect on the Phenotypic Expression of Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant genetic disease caused by mutations in genes encoding sarcomere proteins. It is the major cause of sudden cardiac death in young high-level athletes. Studies have demonstrated a poorer prognosis when associated with specific mutations. The association between HCM genotype and phenotype has been the subject of several studies since the discovery of the genetic nature of the disease. This study shows the effect of a MYBPC3 compound variant on the phenotypic HCM expression. A family in which a young man had a clinical diagnosis of HCM underwent clinical and genetic investigations. The coding regions of the MYH7, MYBPC3 and TNNT2 genes were sequenced and analyzed. The proband present a malignant manifestation of the disease, and is the only one to express HCM in his family. The genetic analysis through direct sequencing of the three main genes related to this disease identified a compound heterozygous variant (p.E542Q and p.D610H) in MYBPC3. A family analysis indicated that the p.E542Q and p.D610H alleles have paternal and maternal origin, respectively. No family member carrier of one of the variant alleles manifested clinical signs of HCM. We suggest that the MYBPC3-biallelic heterozygous expression of p.E542Q and p.D610H may cause the severe disease phenotype seen in the proband. Resumo A cardiomiopatia hipertrófica (CMH) é uma doença autossômica dominante causada por mutações em genes que codificam as proteínas dos sarcômeros. É a principal causa de morte súbita cardíaca em atletas jovens de alto nível. Estudos têm demonstrado um pior prognóstico associado a mutações específicas. A associação entre genótipo e fenótipo em CMH tem sido objeto de diversos estudos desde a descoberta da origem genética dessa doença. Este trabalho apresenta o efeito de uma mutação composta em MYBPC3 na expressão fenotípica da CMH. Uma família na qual um jovem tem o diagnóstico clínico de CMH foi submetida à investigação clínica e genética. As regiões codificadoras dos genes MYH7, MYBPC3 e TNNT2 foram sequenciadas e analisadas. O probando apresenta uma manifestação maligna da doença e é o único em sua família a desenvolver CMH. A análise genética pelo sequenciamento direto dos três principais genes relacionados à essa doença identificou uma variante em heterozigose composta (p.E542Q e p.D610H) em MYBPC3. A análise da família mostrou que os alelos p.E542Q e p.D610H tem origem paterna e materna, respectivamente. Nenhum familiar portador de um dos alelos variantes manifestou sinais clínicos de CMH. Sugerimos que a expressão heterozigótica bialélica de p.E542Q e p.D610H pode ser responsável pelo fenótipo severo da doença encontrada no probando."	"Identification of a novel hypertrophic cardiomyopathy-associated mutation using targeted next-generation sequencing. Hypertrophic cardiomyopathy (HCM), one of the most common forms of myocardial diseases, is the major cause of sudden cardiac death in young adults and competitive athletes. Analyses of gene mutations associated with HCM are valuable for its molecular diagnosis, genetic counseling, and management of familial HCM. To dissect the relationship between the clinical presentation and gene mutations of HCM, the genetic characterizations of 19 HCM-related genes in 18 patients (8 cases from 6 pedigrees with familial HCM and 10 cases without familial HCM) were detected using next-generation sequencing (NGS). As a result, 12 disease-related mutations were identified in the 18 subjects, including 6 single mutations and 3 double mutations [MYBPC3 (p.Gln998Glu) plus TNNI3 (p.Arg145Gly), PRKAG2 (p.Gly100Ser) plus MYBPC3 (p.Lys1209Serfs*28) and TNNI3 (p.Glu124Gln) plus GLA (p.Trp47*)]. The 3 heterozygous double mutations were discovered for the first time in the malignant familial HCM patients. Of the 6 single mutations, a novel mutation was found in tafazzin (TAZ, p.Ile208Val), and a mutation in β-myosin heavy chain gene (MYH7, p.Arg54Gln), which was reported as rare in the general population, was firstly found in one HCM patient. Identification of novel and rare mutations in HCM patients have added new data to the spectrum of gene mutations associated with this disease. These findings provide an essential basis for the molecular diagnosis and better management of family members at risk of familial HCM."	"The myosin mesa and the basis of hypercontractility caused by hypertrophic cardiomyopathy mutations. Hypertrophic cardiomyopathy (HCM) is primarily caused by mutations in β-cardiac myosin and myosin-binding protein-C (MyBP-C). Changes in the contractile parameters of myosin measured so far do not explain the clinical hypercontractility caused by such mutations. We propose that hypercontractility is due to an increase in the number of myosin heads (S1) that are accessible for force production. In support of this hypothesis, we demonstrate myosin tail (S2)-dependent functional regulation of actin-activated human β-cardiac myosin ATPase. In addition, we show that both S2 and MyBP-C bind to S1 and that phosphorylation of either S1 or MyBP-C weakens these interactions. Importantly, the S1-S2 interaction is also weakened by four myosin HCM-causing mutations but not by two other mutations. To explain these experimental results, we propose a working structural model involving multiple interactions, including those with myosin's own S2 and MyBP-C, that hold myosin in a sequestered state."	"Inhibition of Cardiac Hypertrophy Effects in D-Galactose-Induced Senescent Hearts by Alpinate Oxyphyllae Fructus Treatment. Aging is a complex physiological phenomenon accelerated by ROS accumulation, with multisystem decline and increasing vulnerability to degenerative diseases and death. Cardiac hypertrophy is a key pathophysiological component that accompanies the aging process. Alpinate Oxyphyllae Fructus (Alpinia oxyphylla MIQ, AOF) is a traditional Chinese medicine, which provides cardioprotective activity against aging, hypertension, and cerebrovascular disorders. In this study, we found the protective effect of AOF against cardiac hypertrophy in D-galactose-induced aging rat model. The results showed that treating rats with D-galactose resulted in pathological hypertrophy as evident from the morphology change, increased left ventricular weight/whole heart weight, and expression of hypertrophy-related markers (MYH7 and BNP). Both concentric and eccentric cardiac hypertrophy signaling proteins were upregulated in aging rat model. However, these pathological changes were significantly improved in AOF treated group (AM and AH) in a dose-dependent manner. AOF negatively modulated D-galactose-induced cardiac hypertrophy signaling mechanism to attenuate ventricular hypertrophy. These enhanced cardioprotective activities following oral administration of AOF reflect the potential use of AOF for antiaging treatments."	"Global survey of the immunomodulatory potential of common drugs. Small-molecule drugs may complement antibody-based therapies in an immune-oncology setting, yet systematic methods for the identification and characterization of the immunomodulatory properties of these entities are lacking. We surveyed the immumomodulatory potential of 1,402 small chemical molecules, as defined by their ability to alter the cell-cell interactions among peripheral mononuclear leukocytes ex vivo, using automated microscopy and population-wide single-cell image analysis. Unexpectedly, ∼10% of the agents tested affected these cell-cell interactions differentially. The results accurately recapitulated known immunomodulatory drug classes and revealed several clinically approved drugs that unexpectedly harbor the ability to modulate the immune system, which could potentially contribute to their physiological mechanism of action. For instance, the kinase inhibitor crizotinib promoted T cell interactions with monocytes, as well as with cancer cells, through inhibition of the receptor tyrosine kinase MSTR1 and subsequent upregulation of the expression of major histocompatibility complex molecules. The approach offers an attractive platform for the personalized identification and characterization of immunomodulatory therapeutics."	"Nonfamilial Hypertrophic Cardiomyopathy: Prevalence, Natural History, and Clinical Implications. Yield of causative variants in hypertrophic cardiomyopathy (HCM) is increased in some probands, suggesting different clinical subgroups of disease occur. We hypothesized that a negative family history and no sarcomere mutations represent a nonfamilial subgroup of HCM. We sought to determine the prevalence, natural history, and potential clinical implications of this nonfamilial subgroup of HCM. Four hundred and thirteen unrelated probands with HCM seen in a specialized HCM center between 2002 and 2015 and genetic testing performed were included in this retrospective cohort study. There were 251 (61%) probands with no reported family history of HCM, including 166 (40% of total) probands with no sarcomere mutation, that is, nonfamilial HCM. Quantified family pedigree data revealed no difference in mean number of first-degree relatives screened between nonfamilial and sarcomere-positive groups. Adjusted predictors of nonfamilial status were older age (odds ratio, 1.04; 95% confidence interval, 1.02-1.06; P=0.0001), male sex (odds ratio, 1.96; 95% confidence interval, 1.11-3.45; P=0.02), hypertension (odds ratio, 2.80; 95% confidence interval, 1.57-5.00; P=0.0005), and nonasymmetric septal morphology (odds ratio, 3.41; 95% confidence interval, 1.64-7.08; P=0.001). They had a less severe clinical course with greater event-free survival from major cardiac events (P=0.04) compared with sarcomere-positive HCM probands. Genotype prediction scores showed good performance in identifying genotype-positive patients (area under the curve, 0.71-0.75) and, in combination with pedigree characteristics, were further improved. Approximately 40% of HCM probands have a nonfamilial subtype, with later onset and less severe clinical course. We propose a revised clinical pathway for management, highlighting the role of genetic testing, a detailed pedigree, and refined clinical surveillance recommendations for family members."	"Generation of induced pluripotent stem cells (iPSCs) from a hypertrophic cardiomyopathy patient with the pathogenic variant p.Val698Ala in beta-myosin heavy chain (MYH7) gene. Induced pluripotent stem cells (iPSCs) were generated from peripheral blood mononuclear cells (PBMCs) isolated from the whole blood of a 43-year-old male with hypertrophic cardiomyopathy (HCM) who carries the pathogenic variant p.Val698Ala in beta-myosin heavy chain (MYH7). Patient-derived PBMCs were reprogrammed using non-integrative episomal vectors containing reprogramming factors OCT4, SOX2, LIN28, KLF4 and L-MYC. iPSCs were shown to express pluripotent markers, have trilineage differentiation potential, carry the pathogenic MYH7 variant p.Val698Ala, have a normal karyotype and no longer carry the episomal reprogramming vector. This line is useful for studying the link between variants in MYH7 and the pathogenesis of HCM."	"Genetics of hypertrophic cardiomyopathy: A review of current state. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiovascular disease. HCM is a highly complex and heterogeneous disease regarding not only the number of associated mutations but also the severity of phenotype, symptom burden, and the risk of complications, such as heart failure and sudden death. The penetrance is incomplete and it is age and gender dependent. It is accepted as a disease of the sarcomere. Sixty percent of HCM cases carry mutations in 1 of 8 sarcomere protein genes, mainly non-sense MYBPC3 and missense MYH7 variants. Young patients with severe phenotype and other clinical features are included in proposed scores for prediction of high positive genetic result. The number of genes reported as disease-causing has increased in the last few years, in some cases without robust evidence. Currently available in silico tools are not always useful for differentiation between benign and deleterious variants. There is enough information on genotype-phenotype correlations to start understanding the mechanisms of the disease. Genetic and environmental modifiers have been explored with some interesting insights from miRNA studies with potential as biomarkers and therapeutic agents. There is an additional value of genetic testing in HCM for prognosis. Knowledge about genetics and functional studies are the basis of near future therapies."	"Complete Characterization of Cardiac Myosin Heavy Chain (223 kDa) Enabled by Size-Exclusion Chromatography and Middle-Down Mass Spectrometry. Myosin heavy chain (MHC), the major component of the myosin motor molecule, plays an essential role in force production during muscle contraction. However, a comprehensive analysis of MHC proteoforms arising from sequence variations and post-translational modifications (PTMs) remains challenging due to the difficulties in purifying MHC (∼223 kDa) and achieving complete sequence coverage. Herein, we have established a strategy to effectively purify and comprehensively characterize MHC from heart tissue by combining size-exclusion chromatography (SEC) and middle-down mass spectrometry (MS). First, we have developed a MS-compatible SEC method for purifying MHC from heart tissue with high efficiency. Next, we have optimized the Glu-C, Asp-N, and trypsin limited digestion conditions for middle-down MS. Subsequently, we have applied this strategy with optimized conditions to comprehensively characterize human MHC and identified β-MHC as the predominant isoform in human left ventricular tissue. Full sequence coverage based on highly accurate mass measurements has been achieved using middle-down MS combining 1 Glu-C, 1 Asp-N, and 1 trypsin digestion. Three different PTMs: acetylation, methylation, and trimethylation were identified in human β-MHC and the corresponding sites were localized to the N-terminal Gly, Lys34, and Lys129, respectively, by electron capture dissociation (ECD). Taken together, we have demonstrated this strategy is highly efficient for purification and characterization of MHC, which can be further applied to studies of the role of MHC proteoforms in muscle-related diseases. We also envision that this integrated SEC/middle-down MS strategy can be extended for the characterization of other large proteins over 200 kDa."	"Dihydromyricetin prevents obesity-induced slow-twitch-fiber reduction partially via FLCN/FNIP1/AMPK pathway. Obesity is often accompanied by decreases in the proportion of skeletal muscle slow-twitch fibers and insulin sensitivity. Increased plasma non-esterified fatty acids (NEFA) levels are responsible for obesity-associated insulin resistance. Palmitate, one of the most elevated plasma NEFA in obesity, has been recognized as the principle inducer of insulin resistance. The present study showed that increased plasma NEFA levels were negatively linked to slow-twitch fiber proportion and insulin sensitivity, while slow-twitch fiber proportion was positively correlated to insulin sensitivity in high fat diet (HFD)-fed and ob/ob mice. Dihydromyricetin (DHM) intervention increased slow-twitch fiber proportion and improved insulin resistance. In cultured C2C12 myotubes, palmitate treatment resulted in decrease of slow-twitch fiber specific Myh7 expression and insulin resistance, concomitant with folliculin (FLCN) and folliculin-interacting protein 1 (FNIP1) expression increase, AMP-activated protein kinase (AMPK) inactivation and peroxisome proliferator-activated receptor-γ coactivator-1α (PGC-1α) expression decrease. Those palmitate-induced effects could be blocked by knock-down of FLCN expression or DHM intervention. Meanwhile, the protective effects of DHM were alleviated by over-expression of FLCN. In addition, the changes in AMPK activity and expression of FLCN and FNIP1 in vivo were consistent with those occurring in vitro. These findings suggest that DHM treatment prevents palmitate-induced slow-twitch fibers decrease partially via FLCN-FNIP1-AMPK pathway thereby improving insulin resistance in obesity."	"Screening of the Filamin C Gene in a Large Cohort of Hypertrophic Cardiomyopathy Patients. Recent exome sequencing studies identified filamin C (FLNC) as a candidate gene for hypertrophic cardiomyopathy (HCM). Our aim was to determine the rate of FLNC candidate variants in a large cohort of HCM patients who were also sequenced for the main sarcomere genes. A total of 448 HCM patients were next generation-sequenced (semiconductor chip technology) for the MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1, and FLNC genes. We also sequenced 450 healthy controls from the same population. Based on the reported population frequencies, bioinformatic criteria, and familial segregation, we identified 20 FLNC candidate variants (13 new; 1 nonsense; and 19 missense) in 22 patients. Compared with the patients, only 1 of the control's missense variants was nonreported (P=0.007; Fisher exact probability test). Based on the familial segregation and the reported functional studies, 6 of the candidate variants (in 7 patients) were finally classified as likely pathogenic, 10 as variants of uncertain significance, and 4 as likely benign. We provide a compelling evidence of the involvement of FLNC in the development of HCM. Most of the FLNC variants were associated with mild forms of HCM and a reduced penetrance, with few affected in the families to confirm the segregation. Our work, together with others who found FLNC variants among patients with dilated and restrictive cardiomyopathies, pointed to this gene as an important cause of structural cardiomyopathies."	"The clinical features, outcomes and genetic characteristics of hypertrophic cardiomyopathy patients with severe right ventricular hypertrophy. Severe right ventricular hypertrophy (SRVH) is a rare phenotype in hypertrophic cardiomyopathy (HCM) for which limited information is available. This study was undertaken to investigate the clinical, prognostic and genetic characteristics of HCM patients with SRVH. HCM with SRVH was defined as HCM with a maximum right ventricular wall thickness ≥10 mm. Whole-genome sequencing (WGS) was performed in HCM patients with SRVH. Multivariate Cox proportional hazards regression models were used to identify risk factors for cardiac death and events in HCM with SRVH. Patients with apical hypertrophic cardiomyopathy (ApHCM) were selected as a comparison group. The clinical features and outcomes of 34 HCM patients with SRVH and 273 ApHCM patients were compared. Compared with the ApHCM group, the HCM with SRVH group included younger patients and a higher proportion of female patients and also displayed higher cardiovascular morbidity and mortality. The multivariate Cox proportional hazards regression models identified 2 independent predictors of cardiovascular death in HCM patients with SRVH, a New York Heart Association class ≥III (hazard ratio [HR] = 8.7, 95% confidence interval (CI): 1.43-52.87, p = 0.019) and an age at the time of HCM diagnosis ≤18 (HR = 5.5, 95% CI: 1.24-28.36, p = 0.026). Among the 11 HCM patients with SRVH who underwent WGS, 10 (90.9%) were identified as carriers of at least one specific sarcomere gene mutation. MYH7 and TTN mutations were the most common sarcomere mutations noted in this study. Two or more HCM-related gene mutations were observed in 9 (82%) patients, and mutations in either other cardiomyopathy-related genes or ion-channel disease-related genes were found in 8 (73%) patients. HCM patients with SRVH were characterized by poor clinical outcomes and the presentation of multiple gene mutations."	"Downregulation of myogenic microRNAs in sub-chronic but not in sub-acute model of daunorubicin-induced cardiomyopathy. Cardiac muscle-related microRNAs play important roles in cardiac development and disease by translational silencing of mRNAs, the dominant mechanism of microRNA action. To test whether they could be involved in daunorubicin-associated cardiomyopathy (DACM), we determined expression patterns of myomiRs in two distinct models of DACM. We used 10-12 weeks old male Wistar rats. In the sub-acute model, rats were administered with six doses of daunorubicin (DAU-A, 3 mg/kg, i.p., every 48 h). Rats were sacrificed two days after the last dose. In the sub-chronic model, anaesthetized rats were administered a single dose of daunorubicin (15 mg/kg, i.v., DAU-C). Age-matched controls (CON) received vehicle. Rats were sacrificed eight weeks later. Left ventricular (LV) functions (LV pressure, rate of pressure development, +dP/dt and decline, -dP/dt) were measured using left ventricular catheterization. Expressions of myomiRs (miR-208a, miR-499, miR-1 and miR-133a), markers of cardiac failure (atrial and brain natriuretic peptides genes; Nppa and Nppb) and myosin heavy chain genes (Myh6, Myh7, Myh7b) in cardiac tissue were determined by RT-PCR. Protein expression of gp91phox NADPH oxidase subunit was detected by immunoblotting. Both DAU groups exhibited a similar depression of LV function, and LV weight reduction, accompanied by an upregulation of natriuretic peptides, and a decrease of Myh6 to total Myh ratio (-18% in DAU-A and - 25% in DAU-C, as compared to controls; both P &lt; 0.05). DAU-C, but not DAU-A rats had a 35% mortality rate and exhibited a significantly increased gp91phox expression (DAU-C: 197 ± 33 versus CON-C: 100 ± 11; P &lt; 0.05). Interestingly, myomiRs levels were only reduced in DAU-C compared to CON-C (miR-208: -45%, miR-499: -30%, miR-1: -29%, miR- and miR133a: -25%; all P &lt; 0.05) but were unaltered in DAU-A. The lack of myomiRs expression, particularly in sub-chronic model, suggests the loss of control of myomiRs network on late progression of DACM. We suppose that the poor inhibition of mRNA targets might contribute to chronic DACM."	"Genetic anticipation in a special form of hypertrophic cardiomyopathy with sudden cardiac death in a family with 74 members across 5 generations. Hypertrophic cardiomyopathy (HCM) is the most common heritable heart disease. The genetic anticipation of HCM and its associated etiology, sudden cardiac death (SCD), remains unclear. The aim of this study was to investigate the mechanism underlying the genetic anticipation of HCM and associated SCD.An HCM family including 5 generations and 74 members was studied. Two-dimensional echocardiography was performed to diagnose HCM. The age of onset of HCM was defined as the age at first diagnosis according to hospital records. The information on SCD was confirmed by verification by ≥2 family members and a review of hospital records. Whole-genome sequencing was performed on 4 HCM subjects and 1 healthy control in the family. The identified mutations were screened in all available family members and 216 unrelated healthy controls by Sanger sequencing.The median ages of onset of HCM were 63.5, 38.5, and 18.0 years in members of the second, third, and fourth generations of the family, respectively, and the differences between the generations were significant (P &lt; 0.001). The age at SCD also decreased with each subsequent generation (P &lt; 0.05). In particular, among the third-generation family members, SCD occurred between 30 and 40 years of age at approximately 8 AM, whereas among the fourth-generation family members, all 5 males who experienced SCD were 16 years of age and died at approximately 8 AM. The sarcomere gene mutations MYH7-A719H and MYOZ2-L169G were detected in the HCM individuals in this pedigree. Increases in the number of mutations and the frequency of multiple gene mutations were observed in the younger generations. Moreover, a structural variant was present in the HCM phenotype-positive subjects but was absent in the HCM phenotype-negative subjects.HCM may exhibit genetic anticipation, with a decreased age of onset and increased severity in successive generations. Multiple gene mutations may contribute to genetic anticipation in HCM and thus may be of prognostic value."	"Familial hypertrophic cardiomyopathy associated with a new mutation in gene MYBPC3. We think that the main interests of this study are the report of a new mutation in gene MYBPC3 as a cause of Hypertrophic cardiomyopathy (HMC), and the verification of the fact that not always is the number of mutations related to the severity of the disease."	"[Effects of ZFP580 on ventricular remodeling after myocardial ischemia/reperfusion in rats]. To investigate the relationship between zinc finger protein(ZFP580)and ventricular remodeling after myocardial is-chemia/reperfusion(I/R) injury in rats. Seventy-two rats were divided into sham group and I/R groups which would be tested in se-ries time of 0.5 h, 1 h, 2 h, 4 h, 1 d,7 d,14 d,28 d after reperfusion to observe the expression of ZFP580 in rat myocardium. The H9C2 cells were cultured and treated with transforming growth factor-beta1 (TGF-β 1) to establish cardiac hypertrophy in vitro model in series time of 0 h, 8h, 16 h and 24 h. The cardiomyocyte hypertrophy morphology was measured. The mRNA levels of atrial natriuretic peptide(ANP), myosin heavey chain beta(β -MHC) and ZFP580 genes were quantified. The protein levels of MMP-3 and ZFP580 were quantified after H9C2 cells were transfected by lentiviral-mediated ZFP580 gene. Myocardial I/R injury model was successfully established. Myocardial tis-sue in rats had large area infarction, and myocardial cells were eosinophilic changed. The increased level of ZFP580 protein was observed in the cardiomyocytes around infarction zone. The expression of TGF-β 1 in myocardium was up-regulated after myocardial I/R injury. TGF-β 1 (5 ng/ml) treatment could induce cardiomyocyte hypertrophy in H9C2 cells. TGF-β 1 treatment increased the cell size and mRNA levels of ANP andβ -MHC genes (P &lt; 0.05), which represent degree of cardiac hypertrophy. TGF-β 1 treatment also increased the protein levels of ZFP580 in H9C2 cells (P &lt; 0.05). In the H9C2 cells transfected by lentiviral-mediated gene, the protein level of MMP3 was decreased (P &lt; 0.05). ZFP580 is probably related with ventricular remodeling after myocardial I/R injury by involving TGF-β 1 induced cardiomyocyte hypertrophy and attenuating MMP-3 production."	"Decreased Tissue COX5B Expression and Mitochondrial Dysfunction during Sepsis-Induced Kidney Injury in Rats. Background. Sepsis is defined as a life-threatening organ dysfunction due to a dysregulated host response to infection. Sepsis is the dominant cause of acute kidney injury (AKI), accounting for nearly 50% of episodes of acute renal failure. Signaling cascades and pathways within the kidney are largely unknown and analysis of these molecular mechanisms may enhance knowledge on pathophysiology and possible therapeutic options. Material and Methods. 26 male Wistar rats were assigned to either a sham group (control, N = 6) or sepsis group (N = 20; cecal ligature and puncture model, 24 and 48 hours after CLP). Surviving rats (n = 12) were decapitated at 24 hours (early phase; n = 6) or 48 hours (late phase; n = 6) after CLP and kidneys removed for proteomic analysis. 2D-DIGE and DeCyder 2D software (t-test, P &lt; 0.01) were used for analysis of significantly regulated protein spots. MALDI-TOF in combination with peptide mass fingerprinting (PMF) as well as Western Blot analysis was used for protein identification. Bioinformatic network analyses (STRING, GeneMania, and PCViz) were used to describe protein-protein interactions. Results. 12 spots were identified with significantly altered proteins (P &lt; 0.01) in the three analyzed groups. Two spots could not be identified. Four different proteins were found significantly changed among the groups: major urinary protein (MUP5), cytochrome c oxidase subunit B (COX5b), myosin-6 (MYH6), and myosin-7 (MYH7). A significant correlation with the proteins was found for mitochondrial energy production and electron transport. Conclusions. COX5B could be a promising biomarker candidate since a significant association was found during experimental sepsis in the present study. For future research, COX5B should be evaluated as a biomarker in both human urine and serum to identify sepsis."	"A Comprehensive TALEN-Based Knockout Library for Generating Human-Induced Pluripotent Stem Cell-Based Models for Cardiovascular Diseases. Targeted genetic engineering using programmable nucleases such as transcription activator-like effector nucleases (TALENs) is a valuable tool for precise, site-specific genetic modification in the human genome. The emergence of novel technologies such as human induced pluripotent stem cells (iPSCs) and nuclease-mediated genome editing represent a unique opportunity for studying cardiovascular diseases in vitro. By incorporating extensive literature and database searches, we designed a collection of TALEN constructs to knockout 88 human genes that are associated with cardiomyopathies and congenital heart diseases. The TALEN pairs were designed to induce double-strand DNA break near the starting codon of each gene that either disrupted the start codon or introduced a frameshift mutation in the early coding region, ensuring faithful gene knockout. We observed that all the constructs were active and disrupted the target locus at high frequencies. To illustrate the utility of the TALEN-mediated knockout technique, 6 individual genes (TNNT2, LMNA/C, TBX5, MYH7, ANKRD1, and NKX2.5) were knocked out with high efficiency and specificity in human iPSCs. By selectively targeting a pathogenic mutation (TNNT2 p.R173W) in patient-specific iPSC-derived cardiac myocytes, we demonstrated that the knockout strategy ameliorates the dilated cardiomyopathy phenotype in vitro. In addition, we modeled the Holt-Oram syndrome in iPSC-cardiac myocytes in vitro and uncovered novel pathways regulated by TBX5 in human cardiac myocyte development. Collectively, our study illustrates the powerful combination of iPSCs and genome editing technologies for understanding the biological function of genes, and the pathological significance of genetic variants in human cardiovascular diseases. The methods, strategies, constructs, and iPSC lines developed in this study provide a validated, readily available resource for cardiovascular research."	"Long-acting PDE5 inhibitor tadalafil prevents early doxorubicin-induced left ventricle diastolic dysfunction in juvenile mice: potential role of cytoskeletal proteins. The chemotherapeutic use of doxorubicin (Dox) is hindered due to the development of irreversible cardiotoxicity. Specifically, childhood cancer survivors are at greater risk of Dox-induced cardiovascular complications. Because of the potent cardioprotective effect of phosphodiesterase 5 (PDE5) inhibitors, we examined the effect of long-acting PDE5 inhibitor tadalafil (Tada) against Dox cardiotoxicity in juvenile mice. C57BL/6J mice (6 weeks old) were treated with Dox (20 mg/kg, i.v.) and (or) Tada (10 mg/kg daily for 14 days, p.o.). Cardiac function was assessed by echocardiography following 5 and 10 weeks after Dox treatment. The expression of cardiac proteins was examined by Western blot analysis. Dox treatment caused diastolic dysfunction in juvenile mice indicated by increasing the E/E' (early diastolic myocardial velocity to early tissue Doppler velocity) ratio as compared with control at both 5 and 10 weeks after Dox treatment. Co-treatment of Tada and Dox preserved left ventricular diastolic function with reduction of E/E'. Dox treatment decreased the expression of SERCA2 and desmin in the left ventricle; however, only desmin loss was prevented with Tada. Also, Dox treatment increased the expression of myosin heavy chain (MHCβ), which was reduced by Tada. We propose that Tada could be a promising new therapy for improving cardiac function in survivors of childhood cancer."	"Puerarin-7-O-glucuronide, a water-soluble puerarin metabolite, prevents angiotensin II-induced cardiomyocyte hypertrophy by reducing oxidative stress. This study aimed to investigate the anti-oxidant and anti-hypertrophic effects of puerarin-7-O-glucuronide, a water-soluble puerarin metabolite. The anti-oxidant effects of puerarin-7-O-glucuronide were assessed by measurement of intracellular superoxide levels, total superoxide dismutase (SOD) activity, total anti-oxidant capacity, and glutathione (GSH)/glutathione disulfide (GSSG) ratio in cultured neonatal rat cardiomyocytes (NRCMs) stimulated with the xanthine oxidase (XO)/xanthine (X) system or angiotensin II. The activity of nicotinamide adenine dinucleotide phosphate (NADPH) oxidase and expression of NADPH oxidase subunits p22<sup>phox</sup> and p47<sup>phox</sup> were determined. The anti-hypertrophic effects of puerarin-7-O-glucuronide in angiotensin II-challenged NRCMs were characterized by changes in cell morphology and expression of hypertrophic genes. In the pharmacokinetic study, the plasma concentration of puerarin-7-O-glucuronide was determined by rapid resolution-liquid chromatography-tandem mass spectrometry (RR-LC-MS/MS). Puerarin-7-O-glucuronide prevented XO/X-induced increase in intracellular superoxide production and decreases in total SOD activity, GSH/GSSG ratio, and total anti-oxidant capacity. Puerarin-7-O-glucuronide also reversed angiotensin II-induced increases in intracellular superoxide production and NADPH oxidase activity and decreases in total SOD activity. These anti-oxidant effects of puerarin-7-O-glucuronide were accompanied by downregulation of p22<sup>phox</sup> and p47<sup>phox</sup>. Furthermore, puerarin-7-O-glucuronide prevented angiotensin II-induced increases in cell surface area and perimeter, as well as changes in Nppa, Myh7, and Myh6. In the pharmacokinetic study, puerarin-7-O-glucuronide was cleared with a half-life of 0.94 h after intravenous administration. Puerarin could be detected in rat plasma, albeit in low concentration, as early as 5 min after intravenous administration of puerarin-7-O-glucuronide. These anti-oxidant and anti-hypertrophic properties of puerarin-7-O-glucuronide were similar to those of its parent compound puerarin. These results support the development of puerarin-7-O-glucuronide as a novel pharmaceutical agent for therapeutic application."	"Identification of pathogenic variants in genes related to channelopathy and cardiomyopathy in Korean sudden cardiac arrest survivors. Pathogenic variants in genes related to channelopathy and cardiomyopathy are the most common cause of sudden unexplained cardiac death. However, few reports have investigated the frequency and/or spectrum of pathogenic variants in these genes in Korean sudden cardiac arrest survivors. This study aimed to investigate the causative genetic variants of cardiac-associated genes in Korean sudden cardiac arrest survivors. We performed exome sequencing followed by filtering and validation of variants in 100 genes related to channelopathy and cardiomyopathy in 19 Korean patients who survived sudden cardiac arrest. Five of the 19 patients (26.3%) had either a pathogenic variant or a likely pathogenic variant in MYBPC3 (n=1), MYH7 (n=1), RYR2 (n=2), or TNNT2 (n=1). All five variants were missense variants that have been reported previously in patients with channelopathies or cardiomyopathies. Furthermore, an additional 12 patients (63.2%) had more than one variant of uncertain significance. In conclusion, pathogenic or likely pathogenic variants in genes related to channelopathy and cardiomyopathy are not uncommon in Korean sudden cardiac arrest survivors and cardiomyopathy-related genes should be included in the molecular diagnosis of sudden cardiac arrest in Korea."	"Lack of Phenotypic Differences by Cardiovascular Magnetic Resonance Imaging in MYH7 (β-Myosin Heavy Chain)- Versus MYBPC3 (Myosin-Binding Protein C)-Related Hypertrophic Cardiomyopathy. The 2 most commonly affected genes in hypertrophic cardiomyopathy (HCM) are MYH7 (β-myosin heavy chain) and MYBPC3 (β-myosin-binding protein C). Phenotypic differences between patients with mutations in these 2 genes have been inconsistent. Scarce data exist on the genotype-phenotype association as assessed by tomographic imaging using cardiac magnetic resonance imaging. Cardiac magnetic resonance imaging was performed on 358 consecutive genotyped hypertrophic cardiomyopathy probands at 5 tertiary hypertrophic cardiomyopathy centers. Genetic testing revealed a pathogenic mutation in 159 patients (44.4%). The most common genes identified were MYH7 (n=53) and MYBPC3 (n=75); 33.1% and 47% of genopositive patients, respectively. Phenotypic characteristics by cardiac magnetic resonance imaging of these 2 groups were similar, including left ventricular volumes, mass, maximal wall thickness, morphology, left atrial volume, and mitral valve leaflet lengths (all P=non-significant). The presence of late gadolinium enhancement (65% versus 64%; P=0.99) and the proportion of total left ventricular mass (%late gadolinium enhancement; 10.4±13.2% versus 8.5±8.5%; P=0.44) were also similar. This multicenter multinational study shows lack of phenotypic differences between MYH7- and MYBPC3-associated hypertrophic cardiomyopathy when assessed by cardiac magnetic resonance imaging. Postmutational mechanisms appear more relevant to thick-filament disease expression and outcome than the disease-causing variant per se."	"Cardiomyocyte Hypertrophy in Arrhythmogenic Cardiomyopathy. Arrhythmogenic cardiomyopathy (AC) is a hereditary disease leading to sudden cardiac death or heart failure. AC pathology is characterized by cardiomyocyte loss and replacement fibrosis. Our goal was to determine whether cardiomyocytes respond to AC progression by pathological hypertrophy. To this end, we examined tissue samples from AC patients with end-stage heart failure and tissue samples that were collected at different disease stages from desmoglein 2-mutant mice, a well characterized AC model. We find that cardiomyocyte diameters are significantly increased in right ventricles of AC patients. Increased mRNA expression of the cardiac stress marker natriuretic peptide B is also observed in the right ventricle of AC patients. Elevated myosin heavy chain 7 mRNA expression is detected in left ventricles. In desmoglein 2-mutant mice, cardiomyocyte diameters are normal during the concealed disease phase but increase significantly after acute disease onset on cardiomyocyte death and fibrotic myocardial remodeling. Hypertrophy progresses further during the chronic disease stage. In parallel, mRNA expression of myosin heavy chain 7 and natriuretic peptide B is up-regulated in both ventricles with right ventricular preference. Calcineurin/nuclear factor of activated T cells (Nfat) signaling, which is linked to pathological hypertrophy, is observed during AC progression, as evidenced by Nfatc2 and Nfatc3 mRNA in cardiomyocytes and increased mRNA of the Nfat target regulator of calcineurin 1. Taken together, we demonstrate that pathological hypertrophy occurs in AC and is secondary to cardiomyocyte loss and cardiac remodeling."	"Administration of anabolic steroid during adolescence induces long-term cardiac hypertrophy and increases susceptibility to ischemia/reperfusion injury in adult Wistar rats. Chronic administration of anabolic androgenic steroids (AAS) in adult rats results in cardiac hypertrophy and increased susceptibility to myocardial ischemia/reperfusion (IR) injury. Molecular analyses demonstrated that hyperactivation of type 1 angiotensin II (AT1) receptor mediates cardiac hypertrophy induced by AAS and also induces down-regulation of myocardial ATP-sensitive potassium channel (KATP), resulting in loss of exercise-induced cardioprotection. Exposure to AAS during adolescence promoted long-term cardiovascular dysfunctions, such as dysautonomia. We tested the hypothesis that chronic AAS exposure in the pre/pubertal phase increases the susceptibility to myocardial ischemia/reperfusion (IR) injury in adult rats. Male Wistar rats (26day old) were treated with vehicle (Control, n=12) or testosterone propionate (TP) (AAS, 5mgkg<sup>-1</sup> n=12) 5 times/week during 5 weeks. At the end of AAS exposure, rats underwent 23days of washout period and were submitted to euthanasia. Langendorff-perfused hearts were submitted to IR injury and evaluated for mechanical dysfunctions and infarct size. Molecular analysis was performed by mRNA levels of α-myosin heavy chain (MHC), βMHC and brain-derived natriuretic peptide (BNP), ryanodine receptor (RyR2) and sarcoplasmic reticulum calcium ATPase 2a (SERCA2a) by quantitative RT-PCR (qRT-PCR). The expression of AT1 receptor and KATP channel subunits (Kir6.1 and SURa) was analyzed by qRT-PCR and Western Blot. NADPH oxidase (Nox)-related reactive oxygen species generation was assessed by spectrofluorimetry. The expression of antioxidant enzymes was measured by qRT-PCR in order to address a potential role of redox unbalance. AAS exposure promoted long-term cardiac hypertrophy characterized by increased expression of βMHC and βMHC/αMHC ratio. Baseline derivative of pressure (dP/dt) was impaired by AAS exposure. Postischemic recovery of mechanical properties was impaired (decreased left ventricle [LV] developed pressure and maximal dP/dt; increased LV end-diastolic pressure and minimal dP/dt) and infarct size was larger in the AAS group. Catalase mRNA expression was significantly decreased in the AAS group. In conclusion, chronic administration of AAS during adolescence promoted long-term pathological cardiac hypertrophy and persistent increase in the susceptibility to myocardial IR injury possible due to disturbances on catalase expression."	"Modulating Beta-Cardiac Myosin Function at the Molecular and Tissue Levels. Inherited cardiomyopathies are a common form of heart disease that are caused by mutations in sarcomeric proteins with beta cardiac myosin (MYH7) being one of the most frequently affected genes. Since the discovery of the first cardiomyopathy associated mutation in beta-cardiac myosin, a major goal has been to correlate the in vitro myosin motor properties with the contractile performance of cardiac muscle. There has been substantial progress in developing assays to measure the force and velocity properties of purified cardiac muscle myosin but it is still challenging to correlate results from molecular and tissue-level experiments. Mutations that cause hypertrophic cardiomyopathy are more common than mutations that lead to dilated cardiomyopathy and are also often associated with increased isometric force and hyper-contractility. Therefore, the development of drugs designed to decrease isometric force by reducing the duty ratio (the proportion of time myosin spends bound to actin during its ATPase cycle) has been proposed for the treatment of hypertrophic cardiomyopathy. Para-Nitroblebbistatin is a small molecule drug proposed to decrease the duty ratio of class II myosins. We examined the impact of this drug on human beta cardiac myosin using purified myosin motor assays and studies of permeabilized muscle fiber mechanics. We find that with purified human beta-cardiac myosin para-Nitroblebbistatin slows actin-activated ATPase and in vitro motility without altering the ADP release rate constant. In permeabilized human myocardium, para-Nitroblebbistatin reduces isometric force, power, and calcium sensitivity while not changing shortening velocity or the rate of force development (ktr). Therefore, designing a drug that reduces the myosin duty ratio by inhibiting strong attachment to actin while not changing detachment can cause a reduction in force without changing shortening velocity or relaxation."	"microRNA-10a Targets T-box 5 to Inhibit the Development of Cardiac Hypertrophy. The mechanism of cardiac hypertrophy involving microRNAs (miRNAs) is attracting increasing attention. Our study aimed to investigate the role of miR-10a in cardiac hypertrophy development and the underlying regulatory mechanism.Transverse abdominal aortic constriction (TAAC) surgery was performed to establish a cardiac hypertrophy rat model, and angiotensin II (AngII) was used to induce cardiac hypertrophy in cultured neonatal rat cardiomyocytes. Expression of T-box 5 (TBX5) and miR-10a was altered by cell transfection of siRNA or miRNA mimic/inhibitor. Leucine incorporation assay, histological and cytological examination, quantitative real-time PCR (qRT-PCR), and Western blot were performed to detect the effects of miR-10a and TBX5 on cardiac hypertrophy. Dual-luciferase reporter assay was conducted to verify the regulation of TBX5 by miR-10a.miR-10a was down-regulated, and TBX5 was up-regulated in the rat model and AngII-stimulated cardiomyocytes. miR-10a inhibited TBX5 expression by directly targeting the binding site in Tbx5 3'UTR. Overexpression of miR-10a in AngII-treated cardiomyocytes decreased relative cell area, and significantly reduced the mRNA levels of natriuretic peptide A (Nppa), myosin heavy chain 7 cardiac muscle beta (Myh7), and leucine incorporation (P &lt; 0.01 or P &lt; 0.001). Knockdown of Tbx5 had similar effects on AngII-induced cardiomyocytes.Our findings indicate that miR-10a may inhibit cardiac hypertrophy via targeting Tbx5. Thus, miR-10a provides promising therapeutic strategies for the treatment of cardiac hypertrophy."	"Biomimetic microstructure morphology in electrospun fiber mats is critical for maintaining healthy cardiomyocyte phenotype. Despite recent advances in biomimetic substrates, there is still only limited understanding of how the extracellular matrix (ECM) functions in the maintenance of cardiomyocyte (CM) phenotype. In this study, we designed electrospun substrates inspired by morphologic features of non-failing and failing human heart ECM, and examined how these substrates regulate phenotypes of adult and neonatal rat ventricular CMs (ARVM and NRVM, respectively). We found that poly(ε-caprolactone) fiber substrates designed to mimic the organized ECM of a non-failing human heart maintained healthy CM phenotype (evidenced by cell morphology, organized actin/myomesin bands and expression of β-MYH7 and SCN5A.1 and SCN5A.2) compared to both failing heart ECM-mimetic substrates and tissue culture plates. Moreover, culture of ARVMs and NRVMs on aligned substrates showed differences in m- and z-line alignment; with ARVMs aligning parallel to the ECM fibers and the NRVMs aligning perpendicular to the fibers. The results provide new insight into cardiac tissue engineering by illustrating the importance models that mimic the cardiac ECM microenvironment in vitro."	"Targeting of miR-432 to myozenin1 to regulate myoblast proliferation and differentiation. MicroRNAs (miRNAs) play important roles in the development and biochemical functions of skeletal muscles. However, targeting of miRNAs to structural genes involved in Z-discs have not been investigated. Here, we describe a highly expressed miRNA, miR-432, in pig embryonic skeletal muscle, which appeared to target myozenin1 (MYOZ1), a protein involved in the muscular sarcomere microstructure. Our results showed that miR-432 is involved in muscle development in the developing pig. In addition, it promoted differentiation of the C2C12 myoblast cell line into myotubes. We also demonstrated that inhibition of miR-432 reduced proliferation of C2C12 cells, suggesting that miR-432 is involved in regulation of myoblast proliferation. Moreover, molecular markers of muscle differentiation and fiber type (Myh7/ slow and Myh4/ fast IIB) showed that miR-432 reduced the differentiation rate of C2C12 cells. These results provide insights into the potential functions of miR-432 as well as its proposed target, MYOZ1, during muscle development. This may lead to applications for further improvements in porcine muscle growth, and may enhance our understanding of complex inherited human muscle disorders."	"A Novel HRAS Mutation Independently Contributes to Left Ventricular Hypertrophy in a Family with a Known MYH7 Mutation. Several genetic conditions can lead to left ventricular hypertrophy (LVH). Among them, hypertrophic cardiomyopathy (HCM), caused by mutations in sarcomere genes, is the most common inherited cardiac disease. Instead, RASopathies, a rare class of disorders characterized by neuro-cardio-facial-cutaneous abnormalities and sometimes presenting with LVH, are caused by mutations in the RAS-MAPK pathway. We report on a 62-years-old male who presented isolated severe obstructive LVH but did not carry the sarcomere mutation previously identified in his affected relatives. By exome sequencing, we detected a novel mutation in HRAS gene (NM_005343.2:p.Arg68Trp), present also in the proband's daughter, who showed mild LVH and severe intellectual disability. The cardiac phenotype was indistinguishable between family members carrying either mutation. In silico studies suggested that the mutated HRAS protein is constitutionally activated. Consistently, functional characterization in vitro confirmed elevated HRAS-GTP accumulation and downstream RAS-MAPK pathway activation that are known to drive cell proliferation in LVH. Our study emphasizes the role of RAS signaling in cardiac hypertrophy and highlights the complexity in differential diagnosis of RASopathies. In fact, the mild features of RASopathy and the recurrence of sarcomeric HCM in this family delayed the correct diagnosis until comprehensive genetic testing was performed."	"Early Developmental Disruption of Type 2 Deiodinase Pathway in Mouse Skeletal Muscle Does Not Impair Muscle Function. Myogenesis is positively regulated by thyroid hormone (triiodothyronine [T3]), which is amplified by the type 2 deiodinase (D2) activation of thyroxine to T3. Global inactivation of the Dio2 gene impairs skeletal muscle (SKM) differentiation and regeneration in response to muscle injury. Given that newborn and adult mice with late developmental SKM Dio2 disruption do not develop a significant phenotype, it was hypothesized that D2 plays an early role in this process. This was tested in mice with SKM disruption of Dio2 driven by two early developmental promoters: MYF5 and MYOD. MYF5 myoblasts in culture differentiate normally into myotubes, despite loss of almost all D2 activity. Dio2 mRNA levels in developing SKM obtained from MYF5-D2KO embryos (E18.5) were about 54% of control littermates, but the expression of the T3-responsive genes Myh1 and 7 and Atp2a1 and 2 were not affected. In MYF5-D2KO and MYOD-D2KO neonatal hind-limb muscle, the expression of Myh1 and 7 and Atp2a2 remained unaffected, despite 60-70% loss in D2 activity and/or mRNA. Only in MYOD-D2KO neonatal muscle was there a 40% reduction in Atp2a1 mRNA. Postnatal growth of both mouse models and SKM function as assessed by exercise capacity and measurement of muscle strength were normal. Furthermore, an analysis of the adult soleus revealed no changes in the expression of T3-responsive genes, except for an about 18% increase in MYOD-D2KO SOL Myh7 mRNA. Two mouse models of early developmental disruption of Dio2 in myocyte precursor exhibit no significant SKM phenotype."	"Two De Novo Mutations in an Autistic Child Who Had Previously Undergone Transplantation for Dilated Cardiomyopathy: The Importance of Keeping an Open Mind. We report the finding of 2 de novo mutations in an 8-year-old boy with developmental delay and autism who underwent heart transplantation at 1 year of age for idiopathic dilated cardiomyopathy. We identified a de novo microdeletion at chromosome 2p16.3 involving the neurexin-1 (NRXN1) gene and a de novo pathologic variant (Pro838Leu) in the myosin heavy chain 7 (MYH7) gene. This case emphasizes the importance of comprehensive genetic evaluation in patients with cardiomyopathy, particularly if they have extracardiac abnormalities, and the necessity of interpreting variants with attention to the phenotype. A complete genetic diagnosis may require multiple testing modalities."	"A new missense mutation, p.Arg719Leu, of the beta-myosin heavy chain gene in a patient with familial hypertrophic cardiomyopathy. NA"	"Massive parallel sequencing questions the pathogenic role of missense variants in dilated cardiomyopathy. Germline genetic variants are an important cause of dilated cardiomyopathy (DCM). However, recent sequencing studies have revealed rare variants in DCM-associated genes also in individuals without known heart disease. In this study, we investigate variant prevalence and genotype-phenotype correlations in Swedish DCM patients, and compare their genetic variants to those detected in reference cohorts. We sequenced the coding regions of 41 DCM-associated genes in 176 unrelated patients with idiopathic DCM and found 102 protein-altering variants with an allele frequency of &lt;0.04% in reference cohorts; the majority were missense variants not previously described in DCM. Fifty-five (31%) patients had one variant, and 24 (14%) patients had two or more variants in the analysed genes. Detection of genetic variants in any gene, and in LMNA, MYH7 or TTN alone, was associated with early onset disease and reduced transplant-free survival. As expected, nonsense and frameshift variants were more common in DCM patients than in healthy individuals of the reference cohort 1000 Genomes Europeans. Surprisingly however, the prevalence, conservation and pathogenicity scores, and localization of missense variants were similar in DCM patients and healthy reference individuals. To our knowledge, this is the first study to identify correlations between genotype and prognosis when sequencing a large number of genes in unselected DCM patients. The similar distribution of missense variants in DCM patients and healthy reference individuals questions the pathogenic role of many variants, and suggests that results from genetic testing of DCM patients should be interpreted with caution."	"Prognostic predictive value of gene mutations in Japanese patients with hypertrophic cardiomyopathy. Although some studies have attempted to find useful prognostic factors in hypertrophic cardiomyopathy (HCM), those results are not fully helpful for use in actual clinical practice. Furthermore, several genetic abnormalities associated with HCM have been identified. However, the genotype-phenotype correlation in HCM remains to be elucidated. Here, we attempted to assess patients with different types of gene mutations causing HCM and investigate the prognosis. A total of 140 patients with HCM underwent a screening test for myofilament gene mutations by direct sequencing of eight sarcomeric genes. Patients with a single mutation in cardiac troponin T, cardiac troponin I, α-tropomyosin, and regulatory and essential light chains were excluded from the study because the number of cases was too small. The clinical presentations and outcomes of the remaining 127 patients with HCM, 31 β-myosin heavy chain (MYH7) mutation carriers, 19 cardiac myosin-binding protein C (MYBPC3) mutation carriers, and 77 mutation non-carriers were analyzed retrospectively. MYBPC3 mutation carriers had a high frequency of ventricular arrhythmia and syncope. Kaplan-Meier curves revealed no significant difference in prognosis among the three groups, but a lack of family history of sudden death (SD) and a past history of syncope were significantly related to poor prognosis. An absence of family history of SD and past history of syncope are useful prognostic factors in patients with HCM. MYH7 and MYBPC3 mutations did not significantly influence prognosis compared to non-carriers. However, patients with the MYBPC3 mutation should be closely followed for the possibility of SD."	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Recent Advances in the Molecular Genetics of Familial Hypertrophic Cardiomyopathy in South Asian Descendants. The South Asian population, numbered at 1.8 billion, is estimated to comprise around 20% of the global population and 1% of the American population, and has one of the highest rates of cardiovascular disease. While South Asians show increased classical risk factors for developing heart failure, the role of population-specific genetic risk factors has not yet been examined for this group. Hypertrophic cardiomyopathy (HCM) is one of the major cardiac genetic disorders among South Asians, leading to contractile dysfunction, heart failure, and sudden cardiac death. This disease displays autosomal dominant inheritance, and it is associated with a large number of variants in both sarcomeric and non-sarcomeric proteins. The South Asians, a population with large ethnic diversity, potentially carries region-specific polymorphisms. There is high variability in disease penetrance and phenotypic expression of variants associated with HCM. Thus, extensive studies are required to decipher pathogenicity and the physiological mechanisms of these variants, as well as the contribution of modifier genes and environmental factors to disease phenotypes. Conducting genotype-phenotype correlation studies will lead to improved understanding of HCM and, consequently, improved treatment options for this high-risk population. The objective of this review is to report the history of cardiovascular disease and HCM in South Asians, present previously published pathogenic variants, and introduce current efforts to study HCM using induced pluripotent stem cell-derived cardiomyocytes, next-generation sequencing, and gene editing technologies. The authors ultimately hope that this review will stimulate further research, drive novel discoveries, and contribute to the development of personalized medicine with the aim of expanding therapeutic strategies for HCM."	"Impact of MYH6 variants in hypoplastic left heart syndrome. Hypoplastic left heart syndrome (HLHS) is a clinically and anatomically severe form of congenital heart disease (CHD). Although prior studies suggest that HLHS has a complex genetic inheritance, its etiology remains largely unknown. The goal of this study was to characterize a risk gene in HLHS and its effect on HLHS etiology and outcome. We performed next-generation sequencing on a multigenerational family with a high prevalence of CHD/HLHS, identifying a rare variant in the α-myosin heavy chain (MYH6) gene. A case-control study of 190 unrelated HLHS subjects was then performed and compared with the 1000 Genomes Project. Damaging MYH6 variants, including novel, missense, in-frame deletion, premature stop, de novo, and compound heterozygous variants, were significantly enriched in HLHS cases (P &lt; 1 × 10<sup>-5</sup>). Clinical outcomes analysis showed reduced transplant-free survival in HLHS subjects with damaging MYH6 variants (P &lt; 1 × 10<sup>-2</sup>). Transcriptome and protein expression analyses with cardiac tissue revealed differential expression of cardiac contractility genes, notably upregulation of the β-myosin heavy chain (MYH7) gene in subjects with MYH6 variants (P &lt; 1 × 10<sup>-3</sup>). We subsequently used patient-specific induced pluripotent stem cells (iPSCs) to model HLHS in vitro. Early stages of in vitro cardiomyogenesis in iPSCs derived from two unrelated HLHS families mimicked the increased expression of MYH7 observed in vivo (P &lt; 1 × 10<sup>-2</sup>), while revealing defective cardiomyogenic differentiation. Rare, damaging variants in MYH6 are enriched in HLHS, affect molecular expression of contractility genes, and are predictive of poor outcome. These findings indicate that the etiology of MYH6-associated HLHS can be informed using iPSCs and suggest utility in future clinical applications."	"Ramipril restores PPARβ/δ and PPARγ expressions and reduces cardiac NADPH oxidase but fails to restore cardiac function and accompanied myosin heavy chain ratio shift in severe anthracycline-induced cardiomyopathy in rat. We hypothesized that peroxisome proliferator-activated receptors (PPARs) might be involved in a complex protective action of ACE inhibitors (ACEi) in anthracyclines-induced cardiomyopathy. For purpose of study, we compared effects of ramipril on cardiac dysfunction, cardiac failure markers and PPAR isoforms in moderate and severe chronic daunorubicin-induced cardiomyopathy. Male Wistar rats were administered with a single intravenous injection of daunorubicin: 5mg/kg (moderate cardiomyopathy), or 15mg/kg (severe cardiomyopathy) or co-administered with daunorubicin and ramipril (1mg/kg/d, orally) or vehicle for 8 weeks. Left ventricular function was measured invasively under anesthesia. Cardiac mRNA levels of heart failure markers (ANP, Myh6, Myh7, Myh7b) and PPARs (alpha, beta/delta and gama) were measured by qRT-PCR. Protein expression of NADPH subunit (gp91phox) was measured by Western blot. Moderate cardiomyopathy exhibited only minor cardiac dysfunction what was corrected by ramipril. In severe cardiomyopathy, hemodynamic dysfunction remained unaltered upon ramipril although it decreased the significantly up-regulated cardiac ANP mRNA expression. Simultaneously, while high-dose daunorubicin significantly decreased PPARbeta/delta and PPARgama mRNA, ramipril normalized these abnormalities. Similarly, ramipril reduced altered levels of oxidative stress-related gp91phox. On the other hand, ramipril was unable to correct both the significantly decreased relative abundance of Myh6 and increased Myh7 mRNA levels, respectively. In conclusion, ramipril had a protective effect on cardiac function exclusively in moderate chronic daunorubicin-induced cardiomyopathy. Although it normalized abnormal PPARs expression and exerted also additional protective effects also in severe cardiomyopathy, it was insufficient to influence impaired cardiac function probably because of a shift in myosin heavy chain isoform content."	"The TBX1 Transcription Factor in Cardiac Remodeling After Myocardial Infarction. The transcription factor TBX1 plays an important role in the embryonic development of the heart. Nothing is known about its involvement in myocardial remodeling after acute myocardial infarction (AMI) and whether its expression can be modulated by a treatment with proven benefit such as mineralocorticoid receptor blockade. Acute myocardial infarction was induced in 60 rats via left coronary artery ligation: 50 animals were randomized to be euthanized after 1, 2, 4, 12, or 24 weeks; 10 animals were treated with eplerenone (100 mg/kg/days) 7 days before the AMI until their euthanasia (4 weeks later); 8 additional animals underwent surgery without ligation (control). We analyzed the cardiac expression of TBX1, fetal genes, and fibrosis markers. The gene and protein expression of TBX1 was increased in the infarcted myocardium, peaking 1 week after AMI (P &lt; .01), without changes in the noninfarcted myocardium. Levels of the fetal genes and fibrosis markers also increased, peaking 4 weeks (P &lt; .001) and 1 week (P &lt; .01) after AMI, respectively. The TBX1 expression was correlated with that of the fibrosis markers (P &lt; .01) but not the fetal genes. Eplerenone reduced the TBX1 increase and fibrosis induced by AMI, with an association improvement in ventricular function and remodeling in echocardiography. These results show the reactivated expression of TBX1 and indicate its involvement in cardiac fibrosis and remodeling after AMI and its participation in the benefit from mineralocorticoid receptor blockade."	"Cardiomyopathy-related mutation (A30V) in mouse cardiac troponin T divergently alters the magnitude of stretch activation in α- and β-myosin heavy chain fibers. The present study investigated the functional consequences of the human hypertrophic cardiomyopathy (HCM) mutation A28V in cardiac troponin T (TnT). The A28V mutation is located within the NH2 terminus of TnT, a region known to be important for full activation of cardiac thin filaments. The functional consequences of the A28V mutation in TnT remain unknown. Given how α- and β-myosin heavy chain (MHC) isoforms differently alter the functional effect of the NH2 terminus of TnT, we hypothesized that the A28V-induced effects would be differently modulated by α- and β-MHC isoforms. Recombinant wild-type mouse TnT (TnTWT) and the mouse equivalent of the human A28V mutation (TnTA30V) were reconstituted into detergent-skinned cardiac muscle fibers extracted from normal (α-MHC) and transgenic (β-MHC) mice. Dynamic and steady-state contractile parameters were measured in reconstituted muscle fibers. Step-like length perturbation experiments demonstrated that TnTA30V decreased the magnitude of the muscle length-mediated recruitment of new force-bearing cross bridges (ER) by 30% in α-MHC fibers. In sharp contrast, TnTA30V increased ER by 55% in β-MHC fibers. Inferences drawn from other dynamic contractile parameters suggest that directional changes in ER in TnTA30V + α-MHC and TnTA30V + β-MHC fibers result from a divergent impact on cross bridge-regulatory unit (troponin-tropomyosin complex) cooperativity. TnTA30V-mediated effects on Ca<sup>2+</sup>-activated maximal tension and instantaneous muscle fiber stiffness (ED) were also divergently affected by α- and β-MHC. Our study demonstrates that TnTA30V + α-MHC and TnTA30V + β-MHC fibers show contrasting contractile phenotypes; however, only the observations from β-MHC fibers are consistent with the clinical data for A28V in humans. The differential impact of α- and β-myosin heavy chain (MHC) on contractile dynamics causes a mutant cardiac troponin T (TnTA30V) to differently modulate cardiac contractile function. TnTA30V attenuated Ca<sup>2+</sup>-activated maximal tension and length-mediated cross-bridge recruitment against α-MHC but augmented these parameters against β-MHC, suggesting divergent contractile phenotypes."	"Disruption of cardiogenesis in human embryonic stem cells exposed to trichloroethylene. Trichloroethylene (TCE) is ubiquitous in our living environment, and prenatal exposure to TCE is reported to cause congenital heart disease in humans. Although multiple studies have been performed using animal models, they have limited value in predicting effects on humans due to the unknown species-specific toxicological effects. To test whether exposure to low doses of TCE induces developmental toxicity in humans, we investigated the effect of TCE on human embryonic stem cells (hESCs) and cardiomyocytes (derived from the hESCs). In the current study, hESCs cardiac differentiation was achieved by using differentiation medium consisting of StemPro-34. We examined the effects of TCE on cell viability by cell growth assay and cardiac inhibition by analysis of spontaneously beating cluster. The expression levels of genes associated with cardiac differentiation and Ca<sup>2+</sup> channel pathways were measured by immunofluorescence and qPCR. The overall data indicated the following: (1) significant cardiac inhibition, which was characterized by decreased beating clusters and beating rates, following treatment with low doses of TCE; (2) significant up-regulation of the Nkx2.5/Hand1 gene in cardiac progenitors and down regulation of the Mhc-7/cTnT gene in cardiac cells; and (3) significant interference with Ca<sup>2+</sup> channel pathways in cardiomyocytes, which contributes to the adverse effect of TCE on cardiac differentiation during early embryo development. Our results confirmed the involvement of Ca<sup>2+</sup> turnover network in TCE cardiotoxicity as reported in animal models, while the inhibition effect of TCE on the transition of cardiac progenitors to cardiomyocytes is unique to hESCs, indicating a species-specific effect of TCE on heart development. This study provides new insight into TCE biology in humans, which may help explain the development of congenital heart defects after TCE exposure. © 2015 Wiley Periodicals, Inc. Environ Toxicol 31: 1372-1380, 2016."	"Prevalence and Phenotypic Expression of Mutations in the MYH7, MYBPC3 and TNNT2 Genes in Families with Hypertrophic Cardiomyopathy in the South of Brazil: A Cross-Sectional Study. Mutations in sarcomeric genes are found in 60-70% of individuals with familial forms of hypertrophic cardiomyopathy (HCM). However, this estimate refers to northern hemisphere populations. The molecular-genetic profile of HCM has been subject of few investigations in Brazil, particularly in the south of the country. To investigate mutations in the sarcomeric genes MYH7, MYBPC3 and TNNT2 in a cohort of HCM patients living in the extreme south of Brazil, and to evaluate genotype-phenotype associations. Direct DNA sequencing of all encoding regions of three sarcomeric genes was conducted in 43 consecutive individuals of ten unrelated families. Mutations for CMH have been found in 25 (58%) patients of seven (70%) of the ten study families. Fourteen (56%) individuals were phenotype-positive. All mutations were missense, four (66%) in MYH7 and two (33%) in MYBPC3. We have not found mutations in the TNNT2 gene. Mutations in MYH7 were identified in 20 (47%) patients of six (60%) families. Two of them had not been previously described. Mutations in MYBPC3 were found in seven (16%) members of two (20%) families. Two (5%) patients showed double heterozygosis for both genes. The mutations affected different domains of encoded proteins and led to variable phenotypic expression. A family history of HCM was identified in all genotype-positive individuals. In this first genetic-molecular analysis carried out in the south of Brazil, we found mutations in the sarcomeric genes MYH7 and MYBPC3 in 58% of individuals. MYH7-related disease was identified in the majority of cases with mutation. Mutações em genes do sarcômero são encontradas em 60-70% dos indivíduos com formas familiares de cardiomiopatia hipertrófica. (CMH). Entretanto, essa estimativa refere-se a populações de países do hemisfério norte. O perfil genético-molecular da CMH foi tema de poucos estudos no Brasil, particularmente na região sul do país. Realizar a pesquisa de mutações dos genes sarcoméricos MYH7, MYBPC3 e TNNT2 numa coorte de CMH estabelecida no extremo sul do Brasil, assim como avaliar as associações genótipo-fenótipo. Sequenciamento direto do DNA de todas as regiões codificantes dos três genes sarcoméricos foi realizada em 43 indivíduos consecutivos de dez famílias não-relacionadas. Mutações para CMH foram encontradas em 25 (58%) indivíduos de sete (70%) das dez famílias estudadas, sendo 14 (56%) deles fenótipo-positivos. Todas as mutações eram missense, quatro (66%) no gene MYH7 e duas (33%) no gene MYBPC3. Não foram encontradas mutações no gene TNNT2. Mutações em MYH7 foram identificadas em 20 (47%) indivíduos de seis (60%) famílias. Duas delas não haviam sido previamente relatadas. Mutações de MYBPC3 foram detectadas em sete (16%) membros de duas (20%) famílias. Dois (5%) indivíduos apresentaram dupla heterozigose com mutações em ambos os genes. As mutações acometeram distintos domínios das proteínas codificadas e produziram expressão fenotípica variável. História familiar de CMH foi identificada em todos os indivíduos genótipo-positivos. Nessa primeira análise genético-molecular da CMH realizada no sul do Brasil, foram encontradas mutações nos genes sarcoméricos MYH7 e MYBPC3 em 58% dos indivíduos. Doença relacionada ao gene MYH7 foi identificada na maioria dos casos com mutação."	"Cycle training modulates satellite cell and transcriptional responses to a bout of resistance exercise. This investigation evaluated whether moderate-intensity cycle ergometer training affects satellite cell and molecular responses to acute maximal concentric/eccentric resistance exercise in middle-aged women. Baseline and 72 h postresistance exercise vastus lateralis biopsies were obtained from seven healthy middle-aged women (56 ± 5 years, BMI 26 ± 1, VO2max 27 ± 4) before and after 12 weeks of cycle training. Myosin heavy chain (MyHC) I- and II-associated satellite cell density and cross-sectional area was determined via immunohistochemistry. Expression of 93 genes representative of the muscle-remodeling environment was also measured via NanoString. Overall fiber size increased ~20% with cycle training (P = 0.052). MyHC I satellite cell density increased 29% in response to acute resistance exercise before endurance training and 50% with endurance training (P &lt; 0.05). Following endurance training, MyHC I satellite cell density decreased by 13% in response to acute resistance exercise (acute resistance × training interaction, P &lt; 0.05). Genes with an interaction effect tracked with satellite cell behavior, increasing in the untrained state and decreasing in the endurance trained state in response to resistance exercise. Similar satellite cell and gene expression response patterns indicate coordinated regulation of the muscle environment to promote adaptation. Moderate-intensity endurance cycle training modulates the response to acute resistance exercise, potentially conditioning the muscle for more intense concentric/eccentric activity. These results suggest that cycle training is an effective endurance exercise modality for promoting growth in middle-aged women, who are susceptible to muscle mass loss with progressing age."	"Evidence for troponin C (TNNC1) as a gene for autosomal recessive restrictive cardiomyopathy with fatal outcome in infancy. Restrictive cardiomyopathy is a rare form of pediatric cardiac disease, for which the known genes include MYH7, TNNT2, TNNI3, ACTC1, and DES. We describe a pediatric proband with fatal restrictive cardiomyopathy associated with septal hypertrophy and compound heterozygosity for TNNC1 mutations (NM_003280: p.A8V [c.C23T] and p.D145E [c.C435A]). This association between restrictive cardiomyopathy and TNNC1 mutations was strengthened by prospective observations on the second pregnancy in the family which revealed, in the presence of the same TNNC1 genotype, prenatally diagnosed hypertrophic cardiomyopathy which evolved into restrictive cardiomyopathy, heart failure and death at the age of 9 months. Contrary to previous reports, family and population analyses showed that each of the TNNC1 variants was not pathogenic when present alone. Our results (i) confirm that genetic backgrounds of hypertrophic cardiomyopathy and restrictive cardiomyopathy overlap and (ii) indicate that TNNC1 is a likely novel gene for autosomal recessive restrictive cardiomyopathy. © 2016 Wiley Periodicals, Inc."	"Targeted next-generation sequencing helps to decipher the genetic and phenotypic heterogeneity of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is mainly associated with myosin, heavy chain 7 (MYH7) and myosin binding protein C, cardiac (MYBPC3) mutations. In order to better explain the clinical and genetic heterogeneity in HCM patients, in this study, we implemented a target-next generation sequencing (NGS) assay. An Ion AmpliSeq™ Custom Panel for the enrichment of 19 genes, of which 9 of these did not encode thick/intermediate and thin myofilament (TTm) proteins and, among them, 3 responsible of HCM phenocopy, was created. Ninety-two DNA samples were analyzed by the Ion Personal Genome Machine: 73 DNA samples (training set), previously genotyped in some of the genes by Sanger sequencing, were used to optimize the NGS strategy, whereas 19 DNA samples (discovery set) allowed the evaluation of NGS performance. In the training set, we identified 72 out of 73 expected mutations and 15 additional mutations: the molecular diagnosis was achieved in one patient with a previously wild-type status and the pre-excitation syndrome was explained in another. In the discovery set, we identified 20 mutations, 5 of which were in genes encoding non-TTm proteins, increasing the diagnostic yield by approximately 20%: a single mutation in genes encoding non-TTm proteins was identified in 2 out of 3 borderline HCM patients, whereas co-occuring mutations in genes encoding TTm and galactosidase alpha (GLA) altered proteins were characterized in a male with HCM and multiorgan dysfunction. Our combined targeted NGS-Sanger sequencing-based strategy allowed the molecular diagnosis of HCM with greater efficiency than using the conventional (Sanger) sequencing alone. Mutant alleles encoding non-TTm proteins may aid in the complete understanding of the genetic and phenotypic heterogeneity of HCM: co-occuring mutations of genes encoding TTm and non-TTm proteins could explain the wide variability of the HCM phenotype, whereas mutations in genes encoding only the non-TTm proteins are identifiable in patients with a milder HCM status. "	"Genotype-phenotype associations in dilated cardiomyopathy: meta-analysis on more than 8000 individuals. Routine genetic testing in Dilated Cardiomyopathy (DCM) has recently become reality using Next-Generation Sequencing. Several studies have explored the relationship between genotypes and clinical phenotypes to support risk estimation and therapeutic decisions, however, most studies are small or restricted to a few genes. This study provides to our knowledge the first systematic meta-analysis on genotype-phenotype associations in DCM. We retrieved PubMed/Medline literature on genotype-phenotype associations in patients with DCM and mutations in LMNA, PLN, RBM20, MYBPC3, MYH7, TNNT2 and TNNI3. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Together, 48 studies with 8097 patients were included. Furthermore, we reviewed recent studies investigating genotype-phenotype associations in DCM patients with TTN mutations. The average frequency of mutations in the investigated genes was between 1 and 5 %. The mean age of DCM onset was the beginning of the fifth decade for all genes. Heart transplantation (HTx) rate was highest in LMNA mutation carriers (27 %), while RBM20 mutation carriers were transplanted at a markedly younger age (mean 28.5 years). While 73 % of DCM patients with LMNA mutations showed cardiac conduction diseases, low voltage was the reported ECG hallmark in PLN mutation carriers. The frequency of ventricular arrhythmia in DCM patients with LMNA (50 %) and PLN (43 %) mutations was significantly higher. The penetrance of DCM phenotype in subjects with TTN truncating variants increased with age and reached 100 % by age of 70. A pooled analysis of available genotype-phenotype data shows a higher prevalence of sudden cardiac death (SCD), cardiac transplantation, or ventricular arrhythmias in LMNA and PLN mutation carriers compared to sarcomeric gene mutations. This study will further support the clinical interpretation of genetic findings."	"Spectrum of Mutations in Hypertrophic Cardiomyopathy Genes Among Tunisian Patients. Hypertrophic cardiomyopathy (HCM) is a common cardiac genetic disorder associated with heart failure and sudden death. Mutations in the cardiac sarcomere genes are found in approximately half of HCM patients and are more common among cases with a family history of the disease. Data about the mutational spectrum of the sarcomeric genes in HCM patients from Northern Africa are limited. The population of Tunisia is particularly interesting due to its Berber genetic background. As founder mutations have been reported in other disorders. We performed semiconductor chip (Ion Torrent PGM) next generation sequencing of the nine main sarcomeric genes (MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1) as well as the recently identified as an HCM gene, FLNC, in 45 Tunisian HCM patients. We found sarcomere gene polymorphisms in 12 patients (27%), with MYBPC3 and MYH7 representing 83% (10/12) of the mutations. One patient was homozygous for a new MYL3 mutation and two were double MYBPC3 + MYH7 mutation carriers. Screening of the FLNC gene identified three new mutations, which points to FLNC mutations as an important cause of HCM among Tunisians. The mutational background of HCM in Tunisia is heterogeneous. Unlike other Mendelian disorders, there were no highly prevalent mutations that could explain most of the cases. Our study also suggested that FLNC mutations may play a role on the risk for HCM among Tunisians."	"Fibrosis, low vascularity, and fewer slow fibers after rotator-cuff injury. Rotator-cuff injury (RCI) represents 50% of shoulder injuries, and prevalence increases with age. Even with successful tendon repair, muscle and joint function may not return. To explore the dysfunction, supraspinatus and ipsilateral deltoid (control) muscles were biopsied during arthroscopic RCI repair for pair-wise histological and protein-expression studies. Supraspinatus showed fiber atrophy (P &lt; 0.0001), fibrosis (by Sirius Red, P = 0.05), reduced vascular density (P &lt; 0.001), and a lower proportion of slow fibers (P &lt; 0.0001) compared with the ipsilateral control muscle. There were also higher levels of atrogin-1 (P = 0.05), vascular endothelial growth factor (VEGF, P &lt; 0.01), and dystrophin (P &lt; 0.008, relative to fiber diameter) versus control. Adaptive changes in vascular endothelial growth factor and dystrophin were likely associated with reduced vascular supply, fatigue resistance, and fibrosis, accompanied by disuse atrophy from mechanical unloading of supraspinatus after tendon tear. Treatment to promote growth and vascularity in atrophic supraspinatus muscle may help improve functional outcome after surgical repair. Muscle Nerve 55: 715-726, 2017."	"miR-208b upregulation interferes with calcium handling in HL-1 atrial myocytes: Implications in human chronic atrial fibrillation. MicroRNAs (miR) have considerable potential as therapeutic tools in cardiac diseases. Alterations in atrial miR are involved in the development of atrial fibrillation (AF), but the molecular mechanism underlying their contribution to atrial remodeling in chronic atrial fibrillation (CAF) is only partially understood. Here we used miR array to analyze the miR profile of atrial biopsies from sinus rhythm (SR) and CAF patients. qRT-PCR identified a distinctive CAF-miR signature and described conserved miR-208b upregulation in human and ovine AF atrial tissue. We used bioinformatics analysis to predict genes and signaling pathways as putative miR-208b targets, which highlighted genes from the cardiac muscle gene program and from canonical WNT, gap-junction and Ca<sup>2+</sup> signaling networks. Results from analysis of miR-208b-overexpressing HL-1 atrial myocytes and from myocytes isolated from CAF patients showed that aberrant miR-208b levels reduced the expression and function of L-type Ca<sup>2+</sup> channel subunits (CACNA1C and CACNB2) as well as the sarcoplasmic reticulum-Ca<sup>2+</sup> pump SERCA2. These findings clearly pointed to CAF-specific upregulated miR-208b as an important mediator in Ca<sup>2+</sup> handling impairment during atrial remodeling."	"Two novel MYH7 proline substitutions cause Laing Distal Myopathy-like phenotypes with variable expressivity and neck extensor contracture. Human skeletal muscles express three major myosin heavy chain (MyHC) isoforms: MyHCIIx (MYH1) in fast type 2B muscle fibers, MyHCIIa (MYH2) in fast type 2A fibers and MyHCI/β-cardiac MyHC (MYH7) in slow type I skeletal fibers and cardiac ventricles. In line with its expression pattern, MYH7 mutations have been reported in association with hypertrophic or dilated cardiomyopathy, skeletal myopathies or a combination of both. We analyzed the clinical and molecular phenotype of two unrelated families of Jewish Moroccan ancestry that presented with apparently autosomal dominant inheritance of progressive Laing-like distal myopathy with non-specific myopathic changes, but uncommon marked contractures and wasting of the neck extensors. Clinical phenotyping, whole exome sequencing and restriction analysis, generation of mutants followed by cell culture transfection and imaging. Using whole exome sequencing we identified in both families two novel heterozygous proline substitutions located in exon 31 of MYH7 within its rod domain: c.4309G&gt;C (p.Ala1437Pro) and c.4301G&gt;C (p.Arg1434Pro). Here we show that the phenotype caused by these mutations includes marked cervical muscle contracture, and report that the severity of the phenotype varies significantly, to the extent of non-penetrance in one of the families. Finally, we provide evidence that both proline substitutions impair myosin self-assembly in non-muscle cells transfected with β-myosin constructs carrying the mutations, but do not prevent incorporation of the mutant molecules into the sarcomere. This study expands our clinical and molecular knowledge of MYH7 rod mutations causing skeletal myopathies, and underscores the importance of discussing disease penetrance during genetic counseling."	"Coupling of mitochondrial function and skeletal muscle fiber type by a miR-499/Fnip1/AMPK circuit. Upon adaption of skeletal muscle to physiological and pathophysiological stimuli, muscle fiber type and mitochondrial function are coordinately regulated. Recent studies have identified pathways involved in control of contractile proteins of oxidative-type fibers. However, the mechanism for coupling of mitochondrial function to the muscle contractile machinery during fiber type transition remains unknown. Here, we show that the expression of the genes encoding type I myosins, Myh7/Myh7b and their intronic miR-208b/miR-499, parallels mitochondrial function during fiber type transitions. Using in vivo approaches in mice, we found that miR-499 drives a PGC-1α-dependent mitochondrial oxidative metabolism program to match shifts in slow-twitch muscle fiber composition. Mechanistically, miR-499 directly targets Fnip1, an AMP-activated protein kinase (AMPK)-interacting protein that negatively regulates AMPK, a known activator of PGC-1α. Inhibition of Fnip1 reactivated AMPK/PGC-1α signaling and mitochondrial function in myocytes. Restoration of the expression of miR-499 in the mdx mouse model of Duchenne muscular dystrophy (DMD) reduced the severity of DMD Thus, we have identified a miR-499/Fnip1/AMPK circuit that can serve as a mechanism to couple muscle fiber type and mitochondrial function."	"DNA hydroxymethylation controls cardiomyocyte gene expression in development and hypertrophy. Methylation at 5-cytosine (5-mC) is a fundamental epigenetic DNA modification associated recently with cardiac disease. In contrast, the role of 5-hydroxymethylcytosine (5-hmC)-5-mC's oxidation product-in cardiac biology and disease is unknown. Here we assess the hydroxymethylome in embryonic, neonatal, adult and hypertrophic mouse cardiomyocytes, showing that dynamic modulation of hydroxymethylated DNA is associated with specific transcriptional networks during heart development and failure. DNA hydroxymethylation marks the body of highly expressed genes as well as distal regulatory regions with enhanced activity. Moreover, pathological hypertrophy is characterized by a shift towards a neonatal 5-hmC distribution pattern. We also show that the ten-eleven translocation 2 (TET2) enzyme regulates the expression of key cardiac genes, such as Myh7, through 5-hmC deposition on the gene body and at enhancers. Thus, we provide a genome-wide analysis of 5-hmC in the cardiomyocyte and suggest a role for this epigenetic modification in heart development and disease."	"A Next-Generation Sequencing Approach to Identify Gene Mutations in Early- and Late-Onset Hypertrophic Cardiomyopathy Patients of an Italian Cohort. Sequencing of sarcomere protein genes in patients fulfilling the clinical diagnostic criteria for hypertrophic cardiomyopathy (HCM) identifies a disease-causing mutation in 35% to 60% of cases. Age at diagnosis and family history may increase the yield of mutations screening. In order to assess whether Next-Generation Sequencing (NGS) may fulfil the molecular diagnostic needs in HCM, we included 17 HCM-related genes in a sequencing panel run on PGM IonTorrent. We selected 70 HCM patients, 35 with early (≤25 years) and 35 with late (≥65 years) diagnosis of disease onset. All samples had a 98.6% average of target regions, with coverage higher than 20× (mean coverage 620×). We identified 41 different mutations (seven of them novel) in nine genes: MYBPC3 (17/41 = 41%); MYH7 (10/41 = 24%); TNNT2, CAV3 and MYH6 (3/41 = 7.5% each); TNNI3 (2/41 = 5%); GLA, MYL2, and MYL3 (1/41=2.5% each). Mutation detection rate was 30/35 (85.7%) in early-onset and 8/35 (22.9%) in late-onset HCM patients, respectively (p &lt; 0.0001). The overall detection rate for patients with positive family history was 84%, and 90.5% in patients with early disease onset. In our study NGS revealed higher mutations yield in patients with early onset and with a family history of HCM. Appropriate patient selection can increase the yield of genetic testing and make diagnostic testing cost-effective. "	"Value of Genetic Testing for the Prediction of Long-Term Outcome in Patients With Hypertrophic Cardiomyopathy. Pathogenic gene mutations are found in about 50% of patients with hypertrophic cardiomyopathy (HC). Previous studies have shown an association between sarcomere mutations and medium-term outcome. The association with long-term outcome has not been described. The aim of this cohort study was to assess the long-term outcomes of patients with genotype positive (G+) and genotype negative (G-) HC. The study population consisted of 626 patients with HC (512 probands and 114 relatives) who underwent phenotyping and genetic testing from 1985 to 2014. End points were all-cause mortality, cardiovascular (CV) mortality, heart failure (HF)-related mortality, and sudden cardiac death/aborted sudden cardiac death (SCD/aborted SCD). Kaplan-Meier and multivariate Cox regression analyses were performed. A pathogenic mutation was detected in 327 patients (52%). G+ probands were younger than G- probands (46 ± 15 vs 55 ± 15 years, p &lt;0.001), had more non sustained ventricular tachycardia (34% vs 13%; p &lt;0.001), more often a history of syncope (14% vs 7%; p = 0.016), and more extreme hypertrophy (maximal wall thickness ≥30 mm, 7% vs 1%; p &lt;0.001). G- probands were more symptomatic (New York Heart Association ≥II, 73% vs 53%, p &lt;0.001) and had higher left ventricular outflow tract gradients (42 ± 39 vs 29 ± 33 mm Hg, p = 0.001). During 12 ± 9 years of follow-up, G+ status was an independent risk factor for all-cause mortality (hazard ratio [HR] 1.90, 95% CI 1.14 to 3.15; p = 0.014), CV mortality (HR 2.82, 95% CI 1.49 to 5.36; p = 0.002), HF-related mortality (HR 6.33, 95% CI 1.79 to 22.41; p = 0.004), and SCD/aborted SCD (HR 2.88, 95% CI 1.23 to 6.71; p = 0.015). In conclusion, during long-term follow-up, patients with G+ HC are at increased risk of all-cause death, CV death, HF-related death, and SCD/aborted SCD."	"Laing distal myopathy with a novel mutation in exon 34 of the MYH7 gene. We investigated a four-generation family of German ancestry with distal myopathy. Four individuals in two generations were affected. Foot and toe extensor paresis progressing very slowly over decades was the core neurological sign, reflected by fatty infiltration of the lower leg extensor muscles on muscle MRI. Additionally, finger extensor paresis was present in two patients and quadriceps muscle paresis in one. Distal sensory signs had initially given rise to the diagnosis of axonal Charcot-Marie-Tooth (CMT) disease. Two patients had extended verrucae of their foot sole, which may or may not be part of the disease spectrum. All four patients had a novel c.4645G &gt; C mutation in exon 34 of the MYH7 gene that was not present in three clinically unaffected family members. Muscle biopsy of one patient revealed a myopathic pattern associated with type 1 muscle fibre atrophy and core-like lesions in many muscle fibres consistent with a myosin-related myopathy. We conclude that some of the typical clinical signs such as extensor weakness of the big toe and the little finger may only develop in the further course of the disease."	"Structural, functional and molecular dynamics analysis of the native and mutated actin to study its effect on congenital myopathy. NA"	"MYH7-related myopathies: clinical, histopathological and imaging findings in a cohort of Italian patients. Myosin heavy chain 7 (MYH7)-related myopathies are emerging as an important group of muscle diseases of childhood and adulthood, with variable clinical and histopathological expression depending on the type and location of the mutation. Mutations in the head and neck domains are a well-established cause of hypertrophic cardiomyopathy whereas mutation in the distal regions have been associated with a range of skeletal myopathies with or without cardiac involvement, including Laing distal myopathy and Myosin storage myopathy. Recently the spectrum of clinical phenotypes associated with mutations in MYH7 has increased, blurring this scheme and adding further phenotypes to the list. A broader disease spectrum could lead to misdiagnosis of different congenital myopathies, neurogenic atrophy and other neuromuscular conditions. As a result of a multicenter Italian study we collected clinical, histopathological and imaging data from a population of 21 cases from 15 families, carrying reported or novel mutations in MYH7. Patients displayed a variable phenotype including atypical pictures, as dropped head and bent spine, which cannot be classified in previously described groups. Half of the patients showed congenital or early infantile weakness with predominant distal weakness. Conversely, patients with later onset present prevalent proximal weakness. Seven patients were also affected by cardiomyopathy mostly in the form of non-compacted left ventricle. Muscle biopsy was consistent with minicores myopathy in numerous cases. Muscle MRI was meaningful in delineating a shared pattern of selective involvement of tibialis anterior muscles, with relative sparing of quadriceps. This work adds to the genotype-phenotype correlation of MYH7-relatedmyopathies confirming the complexity of the disorder."	"Downregulation of GSTK1 Is a Common Mechanism Underlying Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by left ventricular hypertrophy and is associated with a number of potential outcomes, including impaired diastolic function, heart failure, and sudden cardiac death. Various etiologies have been described for HCM, including pressure overload and mutations in sarcomeric and non-sarcomeric genes. However, the molecular pathogenesis of HCM remains incompletely understood. In this study, we performed comparative transcriptome analysis to identify dysregulated genes common to five mouse HCM models of differing etiology: (i) mutation of myosin heavy chain 6, (ii) mutation of tropomyosin 1, (iii) expressing human phospholamban on a null background, (iv) knockout of frataxin, and (v) transverse aortic constriction. Gene-by-gene comparison identified five genes dysregulated in all five HCM models. Glutathione S-transferase kappa 1 (Gstk1) was significantly downregulated in the five models, whereas myosin heavy chain 7 (Myh7), connective tissue growth factor (Ctgf), periostin (Postn), and reticulon 4 (Rtn4) were significantly upregulated. Gene ontology comparison revealed that 51 cellular processes were significantly enriched in genes dysregulated in each transcriptome dataset. Among them, six processes (oxidative stress, aging, contraction, developmental process, cell differentiation, and cell proliferation) were related to four of the five genes dysregulated in all HCM models. GSTK1 was related to oxidative stress only, whereas the other four genes were related to all six cell processes except MYH7 for oxidative stress. Gene-gene functional interaction network analysis suggested correlative expression of GSTK1, MYH7, and actin alpha 2 (ACTA2). To investigate the implications of Gstk1 downregulation for cardiac function, we knocked out gstk1 in zebrafish using the clustered regularly interspaced short palindromic repeats/Cas9 system. We found that expression of the zebrafish homologs of MYH7, ACTA2, and actin alpha 1 were increased in the gstk1-knockout zebrafish. In vivo imaging of zebrafish expressing a fluorescent protein in cardiomyocytes showed that gstk1 deletion significantly decreased the end diastolic volume and, to a lesser extent, end systolic volume. These results suggest that downregulation of GSTK1 may be a common mechanism underlying HCM of various etiologies, possibly through increasing oxidative stress and the expression of sarcomere genes. "	"A Long Term Follow-up Study of Carriers of Hypertrophic Cardiomyopathy Mutations. Adults who test positive for a mutation associated with the development of hypertrophic cardiomyopathy (HCM) but who have not manifested left ventricular hypertrophy (LVH) at the time of that diagnosis are now commonly identified in the era of genetic testing. There are little published data, however, on the long-term outlook for these phenotypically normal gene carriers. Fifteen genotype positive/LVH negative patients with HCM were identified, seven of which were children when first diagnosed as gene carriers. Fourteen were followed up with clinical examinations, electrocardiography and echocardiography to determine if their clinical status had changed over time. Measurements included electrocardiographic changes, changes in wall thickness, diastolic function and global longitudinal stain. Ten participants were followed up for a total of 18 years, two for a total of 17 years, one for 11 years and one for 8 years. In addition, magnetic resonance imaging (MRI) studies were performed on 11 participants. Eleven participants carried a mutation for the MYBPC3 gene and three carried a mutation for the MYH7 gene. One patient, an adult at the time of initial investigation, developed phenotypic features of HCM on echocardiography and MRI, one an increase in wall thickness diagnostic for HCM only on MRI and another to be borderline for HCM on MRI. Hypertrophic cardiomyopathy can develop in adult life in carriers who may be negative for LVH at the time of gene diagnosis and warrants periodic supervision of carriers throughout their lives."	"Pregnancy mitigates cardiac pathology in a mouse model of left ventricular pressure overload. In Western countries heart disease is the leading cause of maternal death during pregnancy. The effect of pregnancy on the heart is difficult to study in patients with preexisting heart disease. Since experimental studies are scarce, we investigated the effect of pressure overload, produced by transverse aortic constriction (TAC) in mice, on the ability to conceive, pregnancy outcome, and maternal cardiac structure and function. Four weeks of TAC produced left ventricular (LV) hypertrophy and dysfunction with marked interstitial fibrosis, decreased capillary density, and induced pathological cardiac gene expression. Pregnancy increased relative LV and right ventricular weight without affecting the deterioration of LV function following TAC. Surprisingly, the TAC-induced increase in relative heart and lung weight was mitigated by pregnancy, which was accompanied by a trend towards normalization of capillary density and natriuretic peptide type A expression. Additionally, the combination of pregnancy and TAC increased the cardiac phosphorylation of c-Jun, and STAT1, but reduced phosphoinositide 3-kinase phosphorylation. Finally, TAC did not significantly affect conception rate, pregnancy duration, uterus size, litter size, and pup weight. In conclusion, we found that, rather than exacerbating the changes associated with cardiac pressure overload, pregnancy actually attenuated pathological LV remodeling and mitigated pulmonary congestion, and pathological gene expression produced by TAC, suggesting a positive effect of pregnancy on the pressure-overloaded heart."	"Identification of genes showing differential expression profile associated with growth rate in skeletal muscle tissue of Landrace weanling pig. Suppression subtractive hybridization was used to identify genes showing differential expression profile associated with growth rate in skeletal muscle tissue of Landrace weanling pig. Two subtracted cDNA populations were generated from musculus longissimus muscle tissues of selected pigs with extreme expected breeding values at the age of 100 kg. Three upregulated genes (EEF1A2, TSG101 and TTN) and six downregulated genes (ATP5B, ATP5C1, COQ3, HADHA, MYH1 and MYH7) in pig with genetic propensity for higher growth rate were identified by sequence analysis of 12 differentially expressed clones selected by differential screening following the generation of the subtracted cDNA population. Real-time PCR analysis confirmed difference in expression profiles of the identified genes in musculus longissimus muscle tissues between the two Landrace weanling pig groups with divergent genetic propensity for growth rate. Further, differential expression of the identified genes except for the TTN was validated by Western blot analysis. Additionally, the eight genes other than the ATP5C1 colocalized with the same chromosomal positions as QTLs that have been previously identified for growth rate traits. Finally, the changes of expression predicted from gene function suggested association of upregulation of expression of the EEF1A2, TSG101 and TTN genes and downregulation of the ATP5B, ATP5C1, COQ3, HADHA, MYH1 and MYH7 gene expression with increased growth rate. The identified genes will provide an important insight in understanding the molecular mechanism underlying growth rate in Landrace pig breed. "	"Idiopathic Restrictive Cardiomyopathy Is Primarily a Genetic Disease. NA"	"The structural effects of mutations can aid in differential phenotype prediction of beta-myosin heavy chain (Myosin-7) missense variants. High-throughput sequencing platforms are increasingly used to screen patients with genetic disease for pathogenic mutations, but prediction of the effects of mutations remains challenging. Previously we developed SAAPdap (Single Amino Acid Polymorphism Data Analysis Pipeline) and SAAPpred (Single Amino Acid Polymorphism Predictor) that use a combination of rule-based structural measures to predict whether a missense genetic variant is pathogenic. Here we investigate whether the same methodology can be used to develop a differential phenotype predictor, which, once a mutation has been predicted as pathogenic, is able to distinguish between phenotypes-in this case the two major clinical phenotypes (hypertrophic cardiomyopathy, HCM and dilated cardiomyopathy, DCM) associated with mutations in the beta-myosin heavy chain (MYH7) gene product (Myosin-7). A random forest predictor trained on rule-based structural analyses together with structural clustering data gave a Matthews' correlation coefficient (MCC) of 0.53 (accuracy, 75%). A post hoc removal of machine learning models that performed particularly badly, increased the performance (MCC = 0.61, Acc = 79%). This proof of concept suggests that methods used for pathogenicity prediction can be extended for use in differential phenotype prediction. Analyses were implemented in Perl and C and used the Java-based Weka machine learning environment. Please contact the authors for availability. andrew@bioinf.org.uk or andrew.martin@ucl.ac.uk Supplementary data are available at Bioinformatics online."	"Knockdown of DNA methyltransferase 3a alters gene expression and inhibits function of embryonic cardiomyocytes. We previously found that in utero caffeine exposure causes down-regulation of DNA methyltransferases (DNMTs) in embryonic heart and results in impaired cardiac function in adulthood. To assess the role of DNMTs in these events, we investigated the effects of reduced DNMT expression on embryonic cardiomyocytes. siRNAs were used to knock down individual DNMT expression in primary cultures of mouse embryonic cardiomyocytes. Immunofluorescence staining was conducted to evaluate cell morphology. A video-based imaging assay and multielectrode array were used to assess cardiomyocyte contractility and electrophysiology, respectively. RNA-Seq and multiplex bisulfite sequencing were performed to examine gene expression and promoter methylation, respectively. At 72 h after transfection, reduced DNMT3a expression, but not DNMT1 or -3b, disrupted sarcomere assembly and decreased beating frequency, contractile movement, amplitude of field action potential, and cytosolic calcium signaling of cardiomyocytes. RNA-Seq analysis revealed that the DNMT3a-deficient cells had deactivated gene networks involved in calcium, endothelin-1, renin-angiotensin, and cardiac β-adrenergic receptor signaling, which were not inhibited by DNMT3b siRNA. Moreover, decreased methylation levels were found in the promoters of Myh7, Myh7b, Tnni3, and Tnnt2, consistent with the up-regulation of these genes by DNMT3a siRNA. These data show that DNMT3a plays an important role in regulating embryonic cardiomyocyte gene expression, morphology and function.-Fang, X., Poulsen, R. R., Wang-Hu, J., Shi, O., Calvo, N. S., Simmons, C. S., Rivkees, S. A., Wendler, C. C. Knockdown of DNA methyltransferase 3a alters gene expression and inhibits function of embryonic cardiomyocytes."	"Distal myopathy with coexisting heterozygous TIA1 and MYH7 Variants. TIA1 mutations cause Welander distal myopathy. MYH7 mutations result in various clinical phenotypes, including Laing distal myopathy and cardiomyopathy. We describe a family with coexisting TIA1 and MYH7 variants. The proband is a 67-year-old woman with easy tripping since childhood and progressive asymmetric distal limb weakness, but no cardiac involvement. Muscle biopsy showed rare rimmed vacuoles, minicore-like structures and congophilic inclusions. Her 66-year-old sister has a mild distal myopathy, supraventricular tachycardia and hypertrophic cardiomyopathy. Both sisters carry the only known pathogenic TIA1 mutation and a heterozygous MYH7 variant (c.5459G &gt; A; p.Arg1820Gln). Another sibling with isolated distal myopathy carries only the TIA1 mutation. MYH7 p.Arg1820Gln involves a highly conserved residue and is predicted to be deleterious. Furthermore, the proband's childhood-onset distal leg weakness and sister's cardiomyopathy suggest that MYH7 p.Arg1820Gln likely affects function, favoring a digenic etiology of the myopathy."	"Evolution and Distribution of Teleost myomiRNAs: Functionally Diversified myomiRs in Teleosts. Myosin heavy chain (MYH) genes belong to a multigene family, and the regulated expression of each member determines the physiological and contractile muscle properties. Among these, MYH6, MYH7, and MYH14 occupy unique positions in the mammalian MYH gene family because of their specific expression in slow/cardiac muscles and the existence of intronic micro(mi) RNAs. MYH6, MYH7, and MYH14 encode miR-208a, miR-208b, and miR-499, respectively. These MYH encoded miRNAs are designated as myomiRs because of their muscle-specific expression and functions. In mammals, myomiRs and host MYHs form a transcription network involved in muscle fiber-type specification; thus, genomic positions and expression patterns of them are well conserved. However, our previous studies revealed divergent distribution and expression of MYH14/miR-499 among teleosts, suggesting the unique evolution of myomiRs and host MYHs in teleosts. Here, we examined distribution and expression of myomiRs and host MYHs in various teleost species. The major cardiac MYH isoforms in teleosts are an intronless gene, atrial myosin heavy chain (amhc), and ventricular myosin heavy chain (vmhc) gene that encodes an intronic miRNA, miR-736. Phylogenetic analysis revealed that vmhc/miR-736 is a teleost-specific myomiR that differed from tetrapoda MYH6/MYH7/miR-208s. Teleost genomes also contain species-specific orthologs in addition to vmhc and amhc, indicating complex gene duplication and gene loss events during teleost evolution. In medaka and torafugu, miR-499 was highly expressed in slow/cardiac muscles whereas the expression of miR-736 was quite low and not muscle specific. These results suggest functional diversification of myomiRs in teleost with the diversification of host MYHs. "	"Estrogen/ERR-α signaling axis is associated with fiber-type conversion of upper airway muscles in patients with obstructive sleep apnea hypopnea syndrome. Estrogen is related with the low morbidity associated with obstructive sleep apnea hypopnea syndrome (OSAS) in women, but the underlying mechanisms remain largely unknown. In this study, we examined the relationship between OSAS and estrogen related receptor-α (ERR-α). We found that the expression levels of ERR-α and Myh7 were both downregulated in palatopharyngeal tissues from OSAS patients. In addition, we report that ERR-α is dynamically expressed during differentiation of C2C12 myoblasts. Knockdown of ERR-α via instant siRNA resulted in reduced expression of Myh7, but not Myh4. Furthermore, differentiation of C2C12 cells under 3% chronic intermittent hypoxia, a model resembling human OSAS, was impaired and accompanied by a obvious reduction in Myh7 expression levels. Moreover, activation of ERR-α with 17β-estradiol (E2) increased the expression of Myh7, whereas pretreatment with the ERR-α antagonist XCT790 reversed the E2-induced slow fiber-type switch. A rat ovariectomy model also demonstrated the switch to fast fiber type. Collectively, our findings suggest that ERR-α is involved in estrogen-mediated OSAS by regulating Myhc-slow expression. The present study illustrates an important role of the estrogen/ERR-α axis in the pathogenesis of OSAS, and may represent an attractive therapeutic target, especially in postmenopausal women."	"Multidimensional structure-function relationships in human β-cardiac myosin from population-scale genetic variation. Myosin motors are the fundamental force-generating elements of muscle contraction. Variation in the human β-cardiac myosin heavy chain gene (MYH7) can lead to hypertrophic cardiomyopathy (HCM), a heritable disease characterized by cardiac hypertrophy, heart failure, and sudden cardiac death. How specific myosin variants alter motor function or clinical expression of disease remains incompletely understood. Here, we combine structural models of myosin from multiple stages of its chemomechanical cycle, exome sequencing data from two population cohorts of 60,706 and 42,930 individuals, and genetic and phenotypic data from 2,913 patients with HCM to identify regions of disease enrichment within β-cardiac myosin. We first developed computational models of the human β-cardiac myosin protein before and after the myosin power stroke. Then, using a spatial scan statistic modified to analyze genetic variation in protein 3D space, we found significant enrichment of disease-associated variants in the converter, a kinetic domain that transduces force from the catalytic domain to the lever arm to accomplish the power stroke. Focusing our analysis on surface-exposed residues, we identified a larger region significantly enriched for disease-associated variants that contains both the converter domain and residues on a single flat surface on the myosin head described as the myosin mesa. Notably, patients with HCM with variants in the enriched regions have earlier disease onset than patients who have HCM with variants elsewhere. Our study provides a model for integrating protein structure, large-scale genetic sequencing, and detailed phenotypic data to reveal insight into time-shifted protein structures and genetic disease."	"Moderate Maternal Energy Restriction During Gestation in Pigs Attenuates Fetal Skeletal Muscle Development Through Changing Myogenic Gene Expression and Myofiber Characteristics. Maternal undernutrition during gestation influences the development of the fetus, thereby increasing the risk of metabolic syndrome in adulthood. Skeletal muscle, one of the key insulin-responsive organs, is susceptible to maternal nutritional programming. This study aimed to evaluate the effect of moderate maternal energy restriction during gestation in pigs on basic events of fetal skeletal myogenesis. Primiparous, purebred Meishan sows were fed a control (normal energy intake) or a low-energy (LE) diet from mating to day 90 of gestation. Biochemical characteristics, myogenic gene expression, and myofiber characteristics were assessed in longissimus dorsi (LD) muscle of fetuses on days 55 and 90 of gestation. Fetal weights, myofiber density, and fetal umbilical vein serum triiodothyronine (T3) concentration decreased in LE group on both days 55 and 90 of gestation. The expression and activity of creatine kinase, the messenger RNA (mRNA) expression of myosin heavy chain ( MYH/ MyHC) genes ( MYH2 and MYH4), concentration of muscular DNA and protein, and protein expression of fast-MyHC isoforms were reduced in LD muscle of LE fetuses on day 55 or 90 of gestation. Meanwhile, myogenic gene expression was reduced in LE fetuses on day 55 or 90 of gestation, indicating the downregulation of myogenesis. Additionally, the exposure to LE diet led to increased isocitrate dehydrogenase activity and slow MyHC (MYH7) mRNA expression on day 90 of gestation, suggesting the elevation of oxidative muscle metabolism. These findings suggest that moderate energy restriction during gestation attenuates fetal skeletal muscle development in pigs, resulting in the delay of skeletal muscle differentiation and maturity."	"[The pathogenic gene screening in a cardiomyopathy pedigree of Yunnan province]. In this study, the sreening of candidate pathogenic gene is done among family members of an dilated cardiomyopathy(DCM)and hypertrophic cardiomyopathy (HCM) coexistence, and find the relationship between the genotype and the phenotype. The inheritance atlas was drawn, analysis of genetic characteristics and clinical phenotype.Peripheral venous blood samples of proband and family members were candidated gene exon high-throughput sequencing sub target capture, make the result compares with related database, ultimately screening the target area of the exon and mutations of candidate genes and then using bidirectional sequencing of Sanger to sequence other family members and the health group which were matching with gender and age to testify whether there is the above mutations. In this family, the proband and his father carry three missense mutations, about TTNc.604 A&gt;G(p.Lys202Glu)、TAZ c. 580A&gt;G(p.Ile194Val)and MYH7c.730 T&gt;C(p.Phe244Leu). The heart function of proband was failure, and accompanied malignant arrhythmia.But his father has no obvious clinical symptoms.In this family, the same genetic mutation of disease causing gene lead to different clinical phenotype, but different genetic mutation of disease causing gene lead to the same clinical phenotype.None of the mutations found in this family was found in the health group. The patient of this family carries the genetic mutation of MYH7, TTN and TAZ.The patient of this family carries the composite mutation of MYH7(+) /TTN(+) heterozygous missense mutation and TAZ(+) /TTN(+) heterozygous missense mutation may be show the performance of the genetic characteristics of early onset, severe phenotype."	"Sex dimorphisms of crossbridge cycling kinetics in transgenic hypertrophic cardiomyopathy mice. Familial hypertrophic cardiomyopathy (HCM) is a disease of the sarcomere and may lead to hypertrophic, dilated, restrictive, and/or arrhythmogenic cardiomyopathy, congestive heart failure, or sudden cardiac death. We hypothesized that hearts from transgenic HCM mice harboring a mutant myosin heavy chain increase the energetic cost of contraction in a sex-specific manner. To do this, we assessed Ca(2+) sensitivity of tension and crossbridge kinetics in demembranated cardiac trabeculas from male and female wild-type (WT) and HCM hearts at an early time point (2 mo of age). We found a significant effect of sex on Ca(2+) sensitivity such that male, but not female, HCM mice displayed a decrease in Ca(2+) sensitivity compared with WT counterparts. The HCM transgene and sex significantly impacted the rate of force redevelopment by a rapid release-restretch protocol and tension cost by the ATPase-tension relationship. In each of these measures, HCM male trabeculas displayed a gain-of-function when compared with WT counterparts. In addition, cardiac remodeling measured by echocardiography, histology, morphometry, and posttranslational modifications demonstrated sex- and HCM-specific effects. In conclusion, female and male HCM mice display sex dimorphic crossbridge kinetics accompanied by sex- and HCM-dependent cardiac remodeling at the morphometric, histological, and cellular level."	"Familial hypertrophic cardiomyopathy caused by a de novo Gly716Arg mutation of the β-myosin heavy chain. The present study was performed to identify the genotype of a hypertrophic cardiomyopathy family and investigate the clinicopathogenic characteristics and prognostic features of relevant genetic abnormalities. Target sequence capture sequencing was performed to screen for pathogenic alleles in a 32-year-old female patient (proband). Sanger sequencing was carried out to verify the results. Sanger sequencing was also performed on other family members to identify allele carriers. A survival analysis was carried out using published literature and our findings. We found that the proband and her son harboured a Gly716Arg sequence variant of the β-myosin heavy chain. Neither the proband's father nor the mother were carriers of this sequence variant; thus, the mutation was classified as &quot;de novo&quot;. Further survival analysis revealed that female patients appear to have a longer life expectancy compared with males. Our study may provide an effective approach for the genetic diagnosis of hypertrophic cardiomyopathy."	"Isolation and Mechanical Measurements of Myofibrils from Human Induced Pluripotent Stem Cell-Derived Cardiomyocytes. Tension production and contractile properties are poorly characterized aspects of excitation-contraction coupling of human induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs). Previous approaches have been limited due to the small size and structural immaturity of early-stage hiPSC-CMs. We developed a substrate nanopatterning approach to produce hiPSC-CMs in culture with adult-like dimensions, T-tubule-like structures, and aligned myofibrils. We then isolated myofibrils from hiPSC-CMs and measured the tension and kinetics of activation and relaxation using a custom-built apparatus with fast solution switching. The contractile properties and ultrastructure of myofibrils more closely resembled human fetal myofibrils of similar gestational age than adult preparations. We also demonstrated the ability to study the development of contractile dysfunction of myofibrils from a patient-derived hiPSC-CM cell line carrying the familial cardiomyopathy MYH7 mutation (E848G). These methods can bring new insights to understanding cardiomyocyte maturation and developmental mechanical dysfunction of hiPSC-CMs with cardiomyopathic mutations."	"Qiliqiangxin Attenuates Phenylephrine-Induced Cardiac Hypertrophy through Downregulation of MiR-199a-5p. Qiliqiangxin (QL), a traditional Chinese medicine, has long been used to treat chronic heart failure. Previous studies demonstrated that QL could prevent cardiac remodeling and hypertrophy in response to hypertensive or ischemic stress. However, little is known about whether QL could modulate cardiac hypertrophy in vitro, and (if so) whether it is through modulation of specific hypertrophy-related microRNA. The primary neonatal rat ventricular cardiomyocytes were isolated, cultured, and treated with phenylephrine (PE, 50 µmol/L, 48 h) to induce hypertrophy in vitro, in the presence or absence of pretreatment with QL (0.5 µg/ml, 48 h). The cell surface area was determined by immunofluorescent staining for α-actinin. The mRNA levels of hypertrophic markers including atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and β-myosin heavy chain (MYH7) were assayed by qRT-PCRs. The protein synthesis of cardiomyocytes was determined by the protein/DNA ratio. The miR-199a-5p expression level was quantified in PE-treated cardiomyocytes and heart samples from acute myocardial infarction (AMI) mouse model. MiR-199a-5p overexpression was used to determine its role in the anti-hypertrophic effect of QL on cardiomyocytes. PE induced obvious enlargement of cell surface in cardiomyocytes, paralleling with increased ANP, BNP, and MYH7 mRNA levels and elevated protein/DNA ratio. All these changes were reversed by the treatment with QL. Meanwhile, miR-199a-5p was increased in AMI mouse heart tissues. Of note, the increase of miR-199a-5p in PE-treated cardiomyocytes was reversed by the treatment with QL. Moreover, overexpression of miR-199a-5p abolished the anti-hypertrophic effect of QL on cardiomyocytes. QL prevents PE-induced cardiac hypertrophy. MiR-199a-5p is increased in cardiac hypertrophy, while reduced by treatment with QL. miR-199a-5p suppression is essential for the anti-hypertrophic effect of QL on cardiomyocytes."	"Setting up Multiplex Panels for Genetic Testing of Familial Hypertrophic Cardiomyopathy Based on Linkage Analysis. Familial hypertrophic cardiomyopathy (HCM) is caused by mutations in genes encoding cardiac sarcomere proteins. Nowadays genetic testing of HCM plays an important role in clinical practice by contributing to the diagnosis, prognosis, and screening of high-risk individuals. The aim of this study was developing a reliable testing strategy for HCM based on linkage analysis and appropriate for Iranian population. Six panels of four microsatellite markers surrounding MYH7, MYBPC3, TNNT2, TNNI3, TPM1, and MYL2 genes (24 markers in total) were selected for multiplex PCR and fragment length analysis. Characteristics of markers and informativeness of the panels were evaluated in 50 unrelated Iranians. The efficacy of the strategy was verified in a family with HCM. All markers were highly polymorphic. The panels were informative in 96-100% of samples. Multipoint linkage analysis excluded the linkage between the disease and all six genes by obtaining maximum LOD score ≤-2. This study suggests a reliable genetic testing method based on linkage analysis between 6 sarcomere genes and familial HCM. It could be applied for diagnostic, predictive, or screening testing in clinical setting."	"Retinol-Binding Protein 4 Induces Cardiomyocyte Hypertrophy by Activating TLR4/MyD88 Pathway. Insulin resistance plays a major role in the development and progression of cardiac hypertrophy and heart failure. Heart failure in turn promotes insulin resistance and increases the risk for diabetes. The vicious cycle determines significant mortality in patients with heart failure and diabetes. However, the underlying mechanisms for the vicious cycle are not fully elucidated. Here we show that circulating levels and adipose expression of retinol-binding protein 4 (RBP4), an adipokine that contributes to systemic insulin resistance, were elevated in cardiac hypertrophy induced by transverse aortic constriction and angiotensin-II (Ang-II) infusion. Ang-II increased RBP4 expression in adipocytes, which was abolished by losartan, an Ang-II receptor blocker. The elevated RBP4 in cardiac hypertrophy may have pathophysiological consequences because RBP4 increased cell size, enhanced protein synthesis, and elevated the expression of hypertrophic markers including Anp, Bnp, and Myh7 in primary cardiomyocytes. Mechanistically, RBP4 induced the expression and activity of toll-like receptor 4 (TLR4) and myeloid differentiation primary response gene 88 (MyD88) in cardiomyocytes, resulting in enhanced inflammation and reactive oxygen species production. Inhibition or knockdown of the TLR4/MyD88 pathway attenuated inflammatory and hypertrophic responses to RBP4 stimulation. Importantly, RBP4 also reduced the expression of glucose transporter-4 and impaired insulin-stimulated glucose uptake in cardiomyocytes. This impairment was ameliorated in cardiomyocytes from TLR4 knockout mice. Therefore, RBP4 may be a critical modulator promoting the vicious cycle of insulin resistance and heart failure by activating TLR4/MyD88-mediated inflammatory pathways. Potentially, lowering RBP4 might break the vicious cycle and improve both insulin resistance and cardiac hypertrophy."	"Daunorubicin Down-Regulates the Expression of Stem Cell Markers and Factors Involved in Stem Cell Migration and Homing in Rat Heart in Subchronic but not Acute Cardiomyopathy. We tested the hypothesis that daunorubicin (DAU) cardiotoxicity alters expression of cytokines involved in stem cell migration and homing. Male Wistar rats were treated with daunorubicin to induce acute DAU cardiomyopathy (6 × 3 mg/kg, i.p., every 48 hr, DAU-A) or subchronic DAU cardiomyopathy (15 mg/kg, i.v., DAU-C). The left ventricle was catheterized. The animals were killed 48 hr (DAU-A) and 8 weeks (DAU-C) after the last dose of DAU. Expression of foetal genes (Nppa, Nppb), isomyosins (Myh6, Myh7), sources of oxidative stress (Abcb8, gp91phox), cytokines (Sdf-1, Cxcr4, Scf, Vegf, Hgf, Igf-1), markers of cardiac progenitor (c-kit, Atnx-1), endothelial progenitor (CD34, CD133) and mesenchymal (CD44, CD105) stem cells were determined by qRT-PCR in left ventricular tissue. Reduced body-weight, decreased left ventricular weight and function, and elevated Nppa, Nppb, Myh7 were observed in both models. Myh6 decreased only in DAU-C, which had a 35% mortality. Up-regulated gp91phox and down-regulated Abcb8 in DAU were present only in DAU-C where we observed markedly decreased expressions of Scf and Vegf as well as expressions of stem cell markers. Down-regulation of cytokines and stem cell markers may reflect impaired chemotaxis, migration and homing of stem cells and tissue repair in the heart in subchronic but not acute model of DAU cardiomyopathy."	"Heat shock transcription factor 1-associated expression of slow myosin heavy chain in mouse soleus muscle in response to unloading with or without reloading. The effects of heat shock transcription factor 1 (HSF1) deficiency on the fibre type composition and the expression level of nuclear factor of activated T cells (NFAT) family members (NFATc1, NFATc2, NFATc3 and NFATc4), phosphorylated glycogen synthase kinase 3α (p-GSK3α) and p-GSK3β, microRNA-208b (miR-208b), miR-499 and slow myosin heavy chain (MyHC) mRNAs (Myh7 and Myh7b) of antigravitational soleus muscle in response to unloading with or without reloading were investigated. HSF1-null and wild-type mice were subjected to continuous 2-week hindlimb suspension followed by 2- or 4-week ambulation recovery. In wild-type mice, the relative population of slow type I fibres, the expression level of NFATc2, p-GSK3 (α and β), miR-208b, miR-499 and slow MyHC mRNAs (Myh7 and Myh7b) were all decreased with hindlimb suspension, but recovered after it. Significant interactions between train and time (the relative population of slow type I fibres; P = 0.01, the expression level of NFATc2; P = 0.001, p-GSKβ; P = 0.009, miR-208b; P = 0.002, miR-499; P = 0.04) suggested that these responses were suppressed in HSF1-null mice. HSF1 may be a molecule in the regulation of the expression of slow MyHC as well as miR-208b, miR-499, NFATc2 and p-GSK3 (α and β) in mouse soleus muscle."	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"The pathogenicity of genetic variants previously associated with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is a rare cardiomyopathy. Many genetic variants have been associated with LVNC. However, the number of the previous LVNC-associated variants that are common in the background population remains unknown. The aim of this study was to provide an updated list of previously reported LVNC-associated variants with biologic description and investigate the prevalence of LVNC variants in healthy general population to find false-positive LVNC-associated variants. The Human Gene Mutation Database and PubMed were systematically searched to identify all previously reported LVNC-associated variants. Thereafter, the Exome Sequencing Project (ESP) and the Exome Aggregation Consortium (ExAC), that both represent the background population, was searched for all variants. Four in silico prediction tools were assessed to determine the functional effects of these variants. The prediction results of those identified in the ESP and ExAC and those not identified in the ESP and ExAC were compared. In 12 genes, 60 LVNC-associated missense/nonsense variants were identified. MYH7 was the predominant gene, encompassing 24 of the 60 LVNC-associated variants. The ESP only harbored nine and ExAC harbored 18 of the 60 LVNC-associated variants. In total, eight out of nine ESP-positive variants overlapped with the 18 variants identified in ExAC database. In this article, we identified 9 ESP-positive and 18 ExAC-positive variants of 60 previously reported LVNC-associated variants, suggesting that these variants are not necessarily the monogenic cause of LVNC."	"Exploring novel candidate genes from the Mouse Genome Informatics database: Potential implications for avian migration research. To search for genes associated with migratory phenotypes in songbirds, we selected candidate genes through annotations from the Mouse Genome Informatics database and assembled an extensive candidate-gene library. Then, we implemented a next-generation sequencing approach to obtain DNA sequences from the Painted Bunting genome. We focused on those sequences that were conserved across avian species and that aligned with candidate genes in our mouse library. We genotyped short sequence repeats from the following candidate genes: ADRA1d, ANKRD17, CISH and MYH7. We studied the possible correlations between allelic variations occurring in these novel candidate migration genes and avian migratory phenotypes available from the published literature. We found that allele variation at MYH7 correlated with a calculated index of speed of migration (km/day) across 11 species of songbirds. We highlight the potential of the Mouse Genome Informatics database in providing new candidate genes that might play a crucial role in regulating migration in birds and possibly in other taxa. Our research effort shows the benefits and limitations of working with extensive genomic datasets and offers a snapshot of the challenges related to cross-species validation in behavioral and molecular ecology studies. "	"Myoimaging in the NGS era: the discovery of a novel mutation in MYH7 in a family with distal myopathy and core-like features--a case report. Myosin heavy chain 7 related myopathies are rare disorders characterized by a wide phenotypic spectrum and heterogeneous pathological features. In the present study, we performed clinical, morphological, genetic and imaging investigations in three relatives affected by autosomal dominant distal myopathy. Whilst earlier traditional Sanger investigations had pointed to the wrong gene as disease causative, next-generation sequencing allowed us to obtain the definitive molecular genetic diagnosis in the family. The proposita, being found to harbor a novel heterozygous mutation in the RYR1 gene (p.Glu294Lys), was initially diagnosed with core myopathy. Subsequently, consideration of muscle magnetic resonance imaging (MRI) features and extension of family study led this diagnosis to be questioned. Use of next-generation sequencing analysis identified a novel mutation in the MYH7gene (p.Ser1435Pro) that segregated in the affected family members. This study identified a novel mutation in MYH7 in a family where the conclusive molecular diagnosis was reached through a complicated path. This case report might raise awareness, among clinicians, of the need to interpret NGS data in combination with muscle MRI patterns so as to facilitate the pinpointing of the main molecular etiology in inherited muscle disorders."	"Phenotype-driven molecular autopsy for sudden cardiac death. A phenotype-driven approach to molecular autopsy based in a multidisciplinary team comprising clinical and laboratory genetics, forensic medicine and cardiology is described. Over a 13 year period, molecular autopsy was undertaken in 96 sudden cardiac death cases. A total of 46 cases aged 1-40 years had normal hearts and suspected arrhythmic death. Seven (15%) had likely pathogenic variants in ion channelopathy genes [KCNQ1 (1), KCNH2 (4), SCN5A (1), RyR2(1)]. Fifty cases aged between 2 and 67 had a cardiomyopathy. Twenty-five had arrhythmogenic right ventricular cardiomyopathy (ARVC), 10 dilated cardiomyopathy (DCM) and 15 hypertrophic cardiomyopathy (HCM). Likely pathogenic variants were found in three ARVC cases (12%) in PKP2, DSC2 or DSP, two DCM cases (20%) in MYH7, and four HCM cases (27%) in MYBPC3 (3) or MYH7 (1). Uptake of cascade screening in relatives was higher when a molecular diagnosis was made at autopsy. In three families, variants previously published as pathogenic were detected, but clinical investigation revealed no abnormalities in carrier relatives. With a conservative approach to defining pathogenicity of sequence variants incorporating family phenotype information and population genomic data, a molecular diagnosis was made in 15% of sudden arrhythmic deaths and 18% of cardiomyopathy deaths."	"Expression and identification of 10 sarcomeric MyHC isoforms in human skeletal muscles of different embryological origin. Diversity and similarity in mammalian species. In the mammalian genome, among myosin heavy chain (MyHC) isoforms a family can be identified as sarcomeric based on their molecular structure which allows thick filament formation. In this study we aimed to assess the expression of the 10 sarcomeric isoforms in human skeletal muscles, adopting this species as a reference for comparison with all other mammalian species. To this aim, we set up the condition for quantitative Real Time PCR assay to detect and quantify MyHC mRNA expression in a wide variety of human muscles from somitic, presomitic and preotic origin. Specific patterns of expression of the following genes MYH1, MYH2, MYH3, MYH4, MYH6, MYH7, MYH8, MYH13, MYH14/7b and MYH15 were demonstrated in various muscle samples. On the same muscle samples which were analysed for mRNA expression, the corresponding MyHC proteins were studied with SDS PAGE and Western blot. The mRNA-protein comparison allowed the identification of 10 distinct proteins based on the electrophoretic migration rate. Three groups were formed based on the migration rate: fast migrating comprising beta/slow/1, alpha cardiac and fast 2B, slow migrating comprising fast 2X, fast 2A and two developmental isoforms (NEO and EMB), intermediate migrating comprising EO MyHC, slow B (product of MYH15), slow tonic (product of MYH14/7b). Of special interest was the demonstration of a protein band corresponding to 2B-MyHC in laryngeal muscles and the finding that all 10 isoforms are expressed in extraocular muscles. These latter muscles are the unique localization for extraocular, slow B (product of MYH15) and slow tonic (product of MYH14/7b). "	"MYBPH acts as modifier of cardiac hypertrophy in hypertrophic cardiomyopathy (HCM) patients. Left ventricular hypertrophy is a risk factor for cardiovascular morbidity and mortality. Hypertrophic cardiomyopathy (HCM) is considered a model disease to study causal molecular factors underlying isolated cardiac hypertrophy. However, HCM manifests with various clinical symptoms, even in families bearing the same genetic defects, suggesting that additional factors contribute to hypertrophy. The gene encoding the cardiac myosin binding protein C (cMYBPC) is one of the most frequently implicated genes in HCM. Recently another myosin binding protein, myosin binding protein H (MYBPH) was shown to function in concert with cMYBPC in regulating cardiomyocyte contraction. Given the similarity in sequence, structure and the critical role MYBPH plays in sarcomere contraction, we proposed that MYBPH may be involved in HCM pathogenesis. Family-based genetic association analysis was employed to investigate the contribution of MYBPH in modifying hypertrophy. Seven single nucleotide polymorphisms and haplotypes in MYBPH were investigated for hypertrophy modifying effects in 388 individuals (27 families), in which three unique South African HCM-causing founder mutations (p.R403W and pA797T in β-myosin heavy chain gene (MYH7) and p.R92W in the cardiac troponin T gene (TNNT2)) segregate. We observed a significant association between rs2250509 and hypertrophy traits in the p.A797T MYH7 mutation group. Additionally, haplotype GGTACTT significantly affected hypertrophy within the same mutation group. MYBPH was for the first time assessed as a candidate hypertrophy modifying gene. We identified a novel association between MYBPH and hypertrophy traits in HCM patients carrying the p.A797T MYH7 mutation, suggesting that variation in MYBPH can modulate the severity of hypertrophy in HCM. "	"Is deltoid muscle biopsy useful in isolated camptocormia? A prospective study. Camptocormia is a marked anterior curvature of the thoracolumbar spine that may be caused by parkinsonism, amyotrophic lateral sclerosis (ALS), myasthenia gravis (MG) and muscle disease. The interest of a systematic muscle biopsy has not been evaluated until now. In our study, the aim was to prospectively evaluate the proportion of patients with isolated camptocormia without ALS, MG and parkinsonism who have an underlying myopathy. Twenty consecutive patients (75% female, mean age 70 years) with isolated camptocormia were enrolled in a single centre in this 5-year prospective study. ALS, MG and parkinsonism had been excluded in all cases. A left deltoid muscle biopsy was performed in all patients and processed with standard techniques for histology and immunohistochemistry. Additional biochemical and genetic studies were performed when pathological analysis was consistent with myopathy. A myopathy was identified in seven patients (35%). Three patients presented with mitochondrial myopathy, including two patients harbouring a heterozygous POLG gene pathogenic variant and one patient with a heterozygous RRM2B gene pathogenic variant. Two patients presented with an inflammatory myopathy, including one with anti-PM/Scl antibodies. One patient presented with facioscapulohumeral muscular dystrophy and one patient with an MYH7 gene-related myofibrillar myopathy. No obvious myopathy was found in the 13 remaining cases. In this prospective study, an underlying myopathy was found in 35% of patients with isolated camptocormia. These results suggest that a muscle biopsy should be systematically performed in patients with isolated camptocormia when ALS, MG and parkinsonism have been excluded."	"[Mutation and clinical relevance in a large cohort of unrelated Chinese patients with hypertrophic cardiomyopathy]. To explore the genetic basis and phenotypic correlation with disease severity in a large cohort of Chinese patients with hypertrophic cardiomyopathy (HCM). A total of 179 unrelated Chinese HCM patients admitted to our department from 2002 to 2011 were enrolled in this study. Direct gene sequencing of β-myosin heavy chain (MYH7), myosin binding protein-C ( MYBPC3), and cardiac troponin T (TNNT2) were performed and clinical data were obtained in these patients. A total of 34 mutations were identified in 40 patients (22.3%), 79.4% (27/34) mutations occurred only once and a possible hot spot, A26 in MYH7, was found. Distribution of mutations was 52.9% (18/34) (MYBPC3), 35.3% (12/34) ( MYH7) and 11.8% (4/34) (TNNT2) respectively. Double mutations were identified in 2.2% (4/179) patients. Genotype-positive patients were associated with an earlier symptom onset, severer left ventricular hypertrophy, a higher incidence of syncope, and were more likely to have positive family history of HCM or sudden cardiac death (SCD) , and were more likely to progress into heart failure (24.2% vs. 5.0%, P = 0.002) and at a higher risk of SCD (9.1% vs. 0, P = 0.009) during the 6.5-year follow-up. No statistical difference in any clinical parameters and outcomes was found between patients carrying MYBPC3 and MYH7 mutations. Double mutations were associated with malignant clinical progression in this cohort. Different phenotype severity could be seen in HCM patients with same genotype (e. g. MYH7-1736T, TNNT2-R92W). MYBPC3 is the most predominant gene mutation in this HCM cohort. The presence of a sarcomere mutation in patients with HCM is associated with poor clinical outcome, although no specific genes or mutations can exactly predict the severity of clinical phenotypes."	"Transcriptional analysis of atrial and ventricular muscles from rats. Previous studies have used microarray technology to explore gene expression differences between the atrium and the ventricle. However, selection criteria for the differentially expressed genes (DEGs) based only on either the fold change or the P value in these studies. Here, we aim to further identify the DEGs by setting a P value threshold of &lt;0.05 and a fold change of &gt;2, which may yield more specific gene expression differences between the atrium and the ventricle. Gene expression profiling of the atrial appendages and the ventricular free walls in 13 normal male Sprague Dawley rats were obtained from the Gene Expression Omnibus data base (accession No.: GSE5266). DEGs between the atrial and the ventricular samples were screened using the microarray significance analysis. The underlying functions of DEGs were predicted by gene ontology and pathway enrichment analyses. In addition, we also constructed protein interactions networks, and analyzed the function modules of the interacting proteins by MCODE. A total of 757DEGs between the atria and the ventricles were found. The genes highly expressed in the ventricular myocytes were associated with muscle contraction (e.g., Myl1, Myl2, Myl3, and Myh7) and energy production (e.g., Acadm and Acsl6), while the genes preferentially expressed in the atrial myocytes were involved in the integration of neurohumoral signals (e.g., Cldn1). These conclusions were confirmed by pathway enrichment and function module analyses. Our present study provides an overview of the transcript level differences between the atrium and the ventricle, which may be useful for determination of potential biomarkers. "	"Impact of Genotype on the Occurrence of Atrial Fibrillation in Patients With Hypertrophic Cardiomyopathy. Genes associated with hypertrophic cardiomyopathy (HC) are not uniformly expressed in the atrial myocardium. Whether this may impact susceptibility to atrial fibrillation (AF) is unresolved. To analyze the prevalence and clinical correlates of AF in relation to genotype in a large HC cohort, prevalence and clinical profile of AF were assessed in 237 patients with HC, followed for 14 ± 10 years. Patients were divided into 3 genetic subgroups: (1) MYBPC3 (58%), (2) MYH7 (28%), and (3) &quot;other genotypes&quot; (14%; comprising TNNT2, TNNI3, TPM1, MYL2, complex genotypes, Z-line, and E-C coupling genes). Left atrial size was similar in the 3 subsets. AF occurred in 74 patients with HC (31%), with no difference among groups (31% in MYBPC3, 37% in MYH7 and 18% in other genotypes, p = 0.15), paroxysmal/persistent AF (12%, 18%, and 12%, respectively; p = 0.53), paroxysmal/persistent evolved to permanent (12%, 12%, and 3%, p = 0.36) or permanent AF (7%, 7%, and 3%, p = 0.82). Age at AF onset was younger in the group with other genotypes (37 ± 10 years) compared to the first 2 groups (53 ± 14 and 51 ± 17, respectively; p = 0.05) because of early onset associated with complex genotypes and a specific JPH2 mutation associated with abnormal intracellular calcium handling. At multivariate analysis, independent predictors of AF were atrial diameter (p ≤0.05) and age at diagnosis (p = 0.09), but not genetic subtype (p = 0.35). In conclusion, in patients with HC, genetic testing cannot be used in clinical decision making with regard to management strategies for AF. Genotype is not predictive of onset or severity of AF, which appears rather driven by hemodynamic determinants of atrial dilatation. Exceptions are represented by rare genes suggesting specific molecular pathways for AF in genetic cardiomyopathies."	"Foxc1 Regulates Early Cardiomyogenesis and Functional Properties of Embryonic Stem Cell Derived Cardiomyocytes. Embryonic Stem Cells (ESCs) hold great potential for regeneration of damaged myocardium, however the molecular circuitry that guides ESC differentiation into cardiomyocytes remains poorly understood. This is exemplified by the elusive role of the transcription factor, Foxc1, during cardiac development. The only known Foxc1 target during heart development is Tbx1. Because Foxc1 null mice contain heart mutations that are far more severe than Tbx1 null mice, it is likely that Foxc1 has additional regulatory roles during heart development. The goal of our study was to test whether Foxc1 is critical for ESC differentiation into functional cardiomyocytes through proper regulation of specific downstream gene networks. Converging evidence from Foxc1 deficient and overexpression ESC models reveals a close relationship between Foxc1 levels and early cardiomyogenic factors Isl1, Mef2c, and Nkx2.5 and also the production of functional cardiomyocytes. We show Foxc1 regulates early cardiomyogenesis during a specific window of differentiation, D4-D6. Through whole transcriptome RNA-sequencing analysis, we report pathways regulated by Foxc1 involved in cardiac function including actin cytoskeleton, cell adhesion, tight and gap junctions, and calcium signaling. Our data indicate a novel Foxc1 direct gene target, Myh7, which encodes the predominant myosin heavy chain isoform, MHCβ, expressed during cardiac development. These data lead us to conclude that Foxc1 regulates both early cardiomyogenesis and the functional properties of ESC-derived cardiomyocytes. Our findings shed light on the molecular circuitry governing cardiomyogenesis that may lead to the development of better translational strategies for the use of pluripotent stem cells in regenerative medicine towards repairing damaged myocardium. Stem Cells 2016;34:1487-1500."	"[Relationship between electrocardiographic and genetic mutation (MYH7-H1717Q, MYLK2-K324E and KCNQ1-R190W) phenotype in patients with hypertrophic cardiomyopathy]. To explore the relationship between electrocardiographic (ECG) and genetic mutations of patients with hypertrophic cardiomyopathy (HCM), and early ECG changes in HCM patients. Clinical, 12-lead ECG and echocardiographic examination as well as genetic examinations were made in a three-generation Chinses HCM pedigree with 8 family members (4 males). The clinical characterization and ECG parameters were analyzed and their relationship with genotypes in the family was explored. Four missense mutations (MYH7-H1717Q, MYLK2-K324E, KCNQ1-R190W, TMEM70-I147T) were detected in this pedigree. The proband carried all 4 mutations and 5 members carried 2 mutations. Corrected QTc interval of KCNQ1-H1717Q carriers was significantly prolonged and was consistent with the ECG characterization of long QT syndrome. MYLK2-K324E and KCNQ1-R190W carriers presented with Q wave and(or) depressed ST segment, as well as flatted or reversed T waves in leads from anterolateral and inferior ventricular walls. ECG results showed ST segment depression, flat and inverted T wave in the gene mutation carriers with normal echocardiographic examination results. ECG and echocardiographic results were normal in TMEM70-I147T mutation carrier. The combined mutations of the genes associated with cardiac ion channels and HCM are linked with the ECG phenotype changes in this HCM pedigree. The variations in ECG parameters due to the genetic mutation appear earlier than the echocardiography and clinical manifestations. Variation in ECG may become one of the indexes for early diagnostic screening and disease progression of the HCM gene mutation carriers."	"Next generation sequencing reveals ryanodine receptor 1 mutations in a Chinese central core disease cohort. Ryanodine receptor 1 (RYR1), myosin heavy chain 7 (MYH7), and selenoprotein N1 (SEPN1) mutations are associated with core myopathies. RYR1 mutations cause most cases of central core disease (CCD). We screened 8 Chinese patients with clinicopathological diagnosis of CCD. Genetic analysis was carried out by targeted next generation sequencing (NGS) to identify causative genes. Variants were assessed for pathogenicity using bioinformatic approaches, and NGS results were confirmed by Sanger sequencing. One novel (p.L4578V) and heterozygous missense mutations in RYR1 were identified in 7 patients. Two patients carried a novel mutation, 1 had p.M4640R, 3 had p.R4861H, and 1 had p.R4861C. All patients had mild to moderate severity phenotypes. Histopathological findings demonstrated central cores and type I fiber predominance. NGS is an efficient strategy to identify variants in RYR1 in CCD. However, genetic results revealed by NGS must be combined with clinicopathologic features to validate the diagnosis. Muscle Nerve, 2016 Muscle Nerve 54: 432-438, 2016."	"Electrical Stimulation Promotes Cardiac Differentiation of Human Induced Pluripotent Stem Cells. Background. Human induced pluripotent stem cells (iPSCs) are an attractive source of cardiomyocytes for cardiac repair and regeneration. In this study, we aim to determine whether acute electrical stimulation of human iPSCs can promote their differentiation to cardiomyocytes. Methods. Human iPSCs were differentiated to cardiac cells by forming embryoid bodies (EBs) for 5 days. EBs were then subjected to brief electrical stimulation and plated down for 14 days. Results. In iPS(Foreskin)-2 cell line, brief electrical stimulation at 65 mV/mm or 200 mV/mm for 5 min significantly increased the percentage of beating EBs present by day 14 after plating. Acute electrical stimulation also significantly increased the cardiac gene expression of ACTC1, TNNT2, MYH7, and MYL7. However, the cardiogenic effect of electrical stimulation was not reproducible in another iPS cell line, CERA007c6. Beating EBs from control and electrically stimulated groups expressed various cardiac-specific transcription factors and contractile muscle markers. Beating EBs were also shown to cycle calcium and were responsive to the chronotropic agents, isoproterenol and carbamylcholine, in a concentration-dependent manner. Conclusions. Our results demonstrate that brief electrical stimulation can promote cardiac differentiation of human iPS cells. The cardiogenic effect of brief electrical stimulation is dependent on the cell line used. "	"De novo exonic mutation in MYH7 gene leading to exon skipping in a patient with early onset muscular weakness and fiber-type disproportion. Here we report on a case of MYH7-related myopathy in a boy with early onset of muscular weakness and delayed motor development in infancy. His most affected muscles were neck extensors showing a dropped head sign, proximal muscles of lower limbs with positive Gower's sign, and trunk muscles. Brain and spinal cord MRI scans, echocardiography, and laboratory analyses including creatine kinase and lactate did not reveal any abnormalities. Muscle histopathology showed fiber-type disproportion. Whole exome sequencing of the parents-offspring trio revealed a novel de novo c.5655G&gt;A p.(Ala1885=) synonymous substitution of the last nucleotide in exon 38 of the MYH7 gene. Further RNA investigations proved the skipping of exon 38 (p.1854_1885del). This is a first report of an exon-skipping mutation in the MYH7 gene causing myopathy. This report broadens both the phenotypic and genotypic spectra of MYH7-related myopathies. "	"Genetic profile of hypertrophic cardiomyopathy in Tunisia: Is it different? We recently performed next generation sequencing (NGS) genetic screening in 11 consecutive and unrelated Tunisian HCM probands seen at Habib Thameur Hospital in Tunis in the first 6 months of 2014, as part of a cooperative study between our Institutions. The clinical diagnosis of HCM was made according to standard criteria. Using the Illumina platform, a panel of 12 genes was analyzed including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2 and MYL3), troponin-T (TNNT2), troponin-I (TNNI3), troponin-C (TNNC1), alpha-tropomyosin (TPM1), alpha-actin (ACTC1), alpha-actinin-2 (ACTN2) as well as alfa-galactosidase (GLA), 5'-AMP-activated protein (PKRAG2), transthyretin (TTR) and lysosomal-associated membrane protein-2 (LAMP2) for exclusion of phenocopies. Our preliminary data, despite limitations inherent to the small sample size, suggest that HCM in Tunisia may have a peculiar genetic background which privileges rare genes overs the classic HCM-associated MHY7 and MYBPC3 genes. "	"The genetic basis of hypertrophic cardiomyopathy in cats and humans. Mutations in genes that encode for muscle sarcomeric proteins have been identified in humans and two breeds of domestic cats with hypertrophic cardiomyopathy (HCM). This article reviews the history, genetics, and pathogenesis of HCM in the two species in order to give veterinarians a perspective on the genetics of HCM. Hypertrophic cardiomyopathy in people is a genetic disease that has been called a disease of the sarcomere because the preponderance of mutations identified that cause HCM are in genes that encode for sarcomeric proteins (Maron and Maron, 2013). Sarcomeres are the basic contractile units of muscle and thus sarcomeric proteins are responsible for the strength, speed, and extent of muscle contraction. In people with HCM, the two most common genes affected by HCM mutations are the myosin heavy chain gene (MYH7), the gene that encodes for the motor protein β-myosin heavy chain (the sarcomeric protein that splits ATP to generate force), and the cardiac myosin binding protein-C gene (MYBPC3), a gene that encodes for the closely related structural and regulatory protein, cardiac myosin binding protein-C (cMyBP-C). To date, the two mutations linked to HCM in domestic cats (one each in Maine Coon and Ragdoll breeds) also occur in MYBPC3 (Meurs et al., 2005, 2007). This is a review of the genetics of HCM in both humans and domestic cats that focuses on the aspects of human genetics that are germane to veterinarians and on all aspects of feline HCM genetics."	"The association between brain natriuretic peptide and tissue Doppler parameters in children with hypertrophic cardiomyopathy. In this study, we investigated the association between brain natriuretic peptide (BNP) levels and tissue Doppler imaging measurements and also screening for deadly mutations in patients with hypertrophic cardiomyopathy (HCM). We enrolled 20 patients diagnosed with HCM (age:10.7±5 years (1-17), 85% male, weight:42.25±23.10 kg, height:141.80±32.45 cm) and 20 age, gender and body weight-matched control subjects. We performed electrocardiography, transthoracic echocardiography, and tissue Doppler echocardiography in each group, as well as genetic tests (for Arg403Gln, Arg453Cys, Arg719Trp and Arg719Gln mutations in MYH7 Exons 13, 14, 19) and BNP in the patients. The patients were divided into two groups according to the presence (Group 1) or absence (Group 2) of left ventricular (LV) outflow tract obstruction. QTc dispersion and the LV ejection fraction and left atrial (LA) volume index were increased in Group 1. The LA volume index and the mitral and septal E/Ea ratio and septum Z-score were increased while the mitral lateral annulus and septal annulus Ea wave velocities and the mitral and tricuspid E/A ratio were decreased in patients with high levels of BNP compared to those with normal BNP levels. There were no mutations that are associated with increased risk of sudden death found in patients included in this study. In the light of our data, we conclude that such parameters BNP levels above the 98 pg/mL, septal thickness Z-score ˃6, and higher mitral and septal E/Ea ratios can be used for management of patients with HCM according to life-threatening conditions. "	"Myosin content of individual human muscle fibers isolated by laser capture microdissection. Muscle fiber composition correlates with insulin resistance, and exercise training can increase slow-twitch (type I) fibers and, thereby, mitigate diabetes risk. Human skeletal muscle is made up of three distinct fiber types, but muscle contains many more isoforms of myosin heavy and light chains, which are coded by 15 and 11 different genes, respectively. Laser capture microdissection techniques allow assessment of mRNA and protein content in individual fibers. We found that specific human fiber types contain different mixtures of myosin heavy and light chains. Fast-twitch (type IIx) fibers consistently contained myosin heavy chains 1, 2, and 4 and myosin light chain 1. Type I fibers always contained myosin heavy chains 6 and 7 (MYH6 and MYH7) and myosin light chain 3 (MYL3), whereas MYH6, MYH7, and MYL3 were nearly absent from type IIx fibers. In contrast to cardiomyocytes, where MYH6 (also known as α-myosin heavy chain) is seen solely in fast-twitch cells, only slow-twitch fibers of skeletal muscle contained MYH6. Classical fast myosin heavy chains (MHC1, MHC2, and MHC4) were present in variable proportions in all fiber types, but significant MYH6 and MYH7 expression indicated slow-twitch phenotype, and the absence of these two isoforms determined a fast-twitch phenotype. The mixed myosin heavy and light chain content of type IIa fibers was consistent with its role as a transition between fast and slow phenotypes. These new observations suggest that the presence or absence of MYH6 and MYH7 proteins dictates the slow- or fast-twitch phenotype in skeletal muscle. "	"The Ups and Downs of Genetic Diagnosis of Hypertrophic Cardiomyopathy. Massive DNA sequencing, also known as next-generation sequencing, has revolutionized genetic diagnosis. This technology has reduced the effort and cost needed to analyze several genes simultaneously and has made genetic evaluation available to a larger number of patients. In hypertrophic cardiomyopathy, genetic analysis has increased from the 3 main genes implicated in the disease (MYH7, MYBPC3, TNNT2) to sequencing of more than 20 related genes. Despite the advantages of acquiring this additional information, many patients show variants of uncertain significance (mainly amino acid changes), which may also be present in at least 1 healthy control undergoing genome sequencing. This will be a dead-end situation unless the variant can be demonstrated to be associated with the disease in the patient's family. In the absence of clear evidence that these variants are truly pathogenic, they cannot be used for reliable genetic counselling in family members. Massive sequencing also enables identification of new candidate genes, but again, the problem of variants of uncertain significance limits the success of these assessments. "	"Hepatic Interferon-λ3 (IFNL3) Gene Expression Reveals Not to Be Attenuated in Non-Favorable IFNL3 rs4803217 or IFNL4 rs368234815 Minor Allele Carriers in Chronic Hepatitis C. Genetic polymorphisms in the region of the interferon-λ genes (IFNL) associate with clearance of hepatitis C virus (HCV) infection. One of these polymorphisms, IFNL4 rs368234815, determines loss or gain of function of the IFNL4 gene by frameshift variation. The very same and a second one, IFNL3 rs4803217, are supposed to impact the expression of IFNL3: while IFNL4 rs368234815 is suggested to modulate IFNL3 transcription, IFNL3 rs4803217 is thought to alter IFNL3 mRNA stability. The latter process is believed to be partially driven by an HCV-induced ectopic expression of myosin heavy chain genes 7B and 7 and their co-expressed microRNAs mir499 and mir208B. These ideas are evidenced by functional investigations on peripheral blood mononuclear and hepatoma cells in culture. Our study aimed at exploring IFNL3 gene expression in clinical samples, i.e., in ex vivo derived liver tissue from patients with chronic hepatitis C (n = 57) and various other diseases (n = 56). By applying an assay designed to specifically quantify IFNL3 and discriminating paralogous IFNL2 transcripts, IFNL3 mRNA expression was not found to differ significantly between chronic hepatitis C and control samples. Among patients with chronic HCV infection, moreover, IFNL3 rs4803217 or IFNL4 rs368234815 minor alleles did not associate with reduced IFNL3 gene expression. Finally, myosin heavy chain genes 7B and 7 and corresponding microRNAs mir499 and mir208B were not found activated in liver in chronic HCV infection. Of note, detectability of MYH7 mRNA related to the procedure of liver biopsy sampling, as tissue obtained by direct punctation of the liver during laparoscopic inspection was less likely to contain MYH7 transcripts than samples acquired by percutaneous punctation. In conclusion, data on ex vivo derived liver tissue samples argue against an attenuating impact of IFNL3 rs4803217 or IFNL4 rs368234815 minor alleles on hepatic IFNL3 gene expression in vivo. "	"MicroRNA-208b progressively declines after spinal cord injury in humans and is inversely related to myostatin expression. The effects of long-term physical inactivity on the expression of microRNAs involved in the regulation of skeletal muscle mass in humans are largely unknown. MicroRNAs are short, noncoding RNAs that fine-tune target expression through mRNA degradation or by inhibiting protein translation. Intronic to the slow, type I, muscle fiber type genes MYH7 and MYH7b, microRNA-208b and microRNA-499-5p are thought to fine-tune the expression of genes important for muscle growth, such as myostatin. Spinal cord injured humans are characterized by both skeletal muscle atrophy and transformation toward fast-twitch, type II fibers. We determined the expression of microRNA-208b, microRNA-499-5p, and myostatin in human skeletal muscle after complete cervical spinal cord injury. We also determined whether these microRNAs altered myostatin expression in rodent skeletal muscle. A progressive decline in skeletal muscle microRNA-208b and microRNA-499-5p expression occurred in humans during the first year after spinal cord injury and with long-standing spinal cord injury. Expression of myostatin was inversely correlated with microRNA-208b and microRNA-499-5p in human skeletal muscle after spinal cord injury. Overexpression of microRNA-208b in intact mouse skeletal muscle decreased myostatin expression, whereas microRNA-499-5p was without effect. In conclusion, we provide evidence for an inverse relationship between expression of microRNA-208b and its previously validated target myostatin in humans with severe skeletal muscle atrophy. Moreover, we provide direct evidence that microRNA-208b overexpression decreases myostatin gene expression in intact rodent muscle. Our results implicate that microRNA-208b modulates myostatin expression and this may play a role in the regulation of skeletal muscle mass following spinal cord injury. "	"Meis1 promotes poly (rC)-binding protein 2 expression and inhibits angiotensin II-induced cardiomyocyte hypertrophy. The poly(rC)-binding protein 2 (PCBP2) is currently reported to inhibit cardiac hypertrophy. However, how PCBP2 is regulated at transcriptional level remains unknown. Here, we show that Meis1, a PBX1-related homeobox gene, binds to PCBP2 promoter and promotes its transcription. In human failing heart tissues and murine hypertrophic heart tissues, the mRNA and protein levels of Meis1 are markedly downregulated, and the level of Meis1 significantly correlates with levels of Nppa, Myh7, and PCBP2. In neonatal rat cardiomyocytes, angiotensin II (Ang II) treatment induces hypertrophic growth of the cells (increase in cell size, enhanced protein synthesis, and hyperexpression of hypertrophic fetal genes), which are significantly inhibited by Meis1 overexpression or promoted by Meis1 knockdown. Meis1 also reduces Ang II-induced activation of Akt-mTOR pathway. Finally, we show that PCBP2 overexpression rescues the Meis1 effects of Akt-mTOR pathway and hypertrophy of cardiomyocytes. © 2015 IUBMB Life, 68(1):13-22, 2016. "	"Electrochemical primer extension for the detection of single nucleotide polymorphisms in the cardiomyopathy associated MYH7 gene. We report the labelling of dideoxy nucleotides (ddNTPs) for use in electrochemical array based primer extension for the detection of single nucleotide polymorphisms (SNPs). The results confirm the extension of the immobilised primers for each of the four ddNTPs, representing a significant advance in achieving a cost-effective platform for screening of disease-specific SNPs. "	"The change in motor unit firing rates at de-recruitment relative to recruitment is correlated with type I myosin heavy chain isoform content of the vastus lateralis in vivo. To investigate the change in motor unit (MU) firing rates (FR) at de-recruitment relative to recruitment and the relation to % type I myosin heavy chain isoform content (type I %MHC) of the vastus lateralis (VL) in vivo. Ten subjects performed a 22-s submaximal isometric trapezoid muscle action that included a linearly increasing, steady force at 50% maximal voluntary contraction, and linearly decreasing segments. Surface electromyographic signals were collected from the VL and were decomposed into constituent MU action potentials trains. A tissue sample from the VL was taken to calculate type I %MHC. The y-intercepts and slopes were calculated for the changes (Δ) in FR at de-recruitment (FRDEREC ) relative to FR at recruitment (FRREC ) vs. FRREC relationship for each subject. Correlations were performed between the y-intercepts and slopes with type I %MHC. The majority of MUs had greater FRDEREC than FRREC . The y-intercepts (r = -0.600, P = 0.067) were not significantly correlated, but the slopes (r = -0.793, P = 0.006) were significantly correlated with type I %MHC. The majority of the motoneuron pool had greater FRDEREC than FRREC , however, individuals with higher type I %MHC had a greater propensity to have MUs with FRREC &gt; FRDEREC as indicated by the slope values. Overall, the contractile properties of the muscle (MHC) could partially explain the differences in MU firing rates at de-recruitment relative to recruitment. Thus, suggesting the fatigability of the muscle influences the alterations in MU firing rates from recruitment to de-recruitment."	"Aspirin Attenuates Angiotensin II-induced Cardiomyocyte Hypertrophy by Inhibiting the Ca(2+)/Calcineurin-NFAT Signaling Pathway. In this study, we examined whether aspirin could inhibit cardiac hypertrophy. We utilized cultured neonatal mouse cardiomyocytes and mice for the study and subjected to cardiomyocyte immunochemistry, qRT-PCR, and immunoblotting analysis. The cardiac function was measured using M-mode echocardiography. Ten μM aspirin significantly inhibited Ang II-induced increase in cardiomyocyte size, the mRNA, and protein levels of atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and β-myosin heavy chain (β-MHC) (P &lt; 0.05). Meantime, consistent with the result in vitro, the increase in HW/BW ratio, the mRNA, and protein levels of ANP, BNP, and β-MHC could be reduced by aspirin in vivo (P &lt; 0.05). Analysis of cardiac function revealed that mouse hearts treated with Ang II displayed thickening of the ventricular walls, left ventricular end-diastolic dimensions, and left ventricular end-systolic dimensions were significantly decreased (P &lt; 0.05), whereas interventricular septal thickness at end-diastole, interventricular septal thickness at end-systole, posterior wall thickness in diastole, and posterior wall thickness in systole were markedly increased (P &lt; 0.05), which could be reversed by aspirin (P &lt; 0.05). Moreover, aspirin blunted the increase inCa(2+) and inhibited the calcineurin activity and NFAT dephosphorylation caused by Ang II (P &lt; 0.05). Aspirin inhibited cardiac hypertrophy in vitro and in vivo through inhibition of the Ca(2+)/calcineurin-NFAT signaling pathway. Therefore, these findings suggested that aspirin might become a therapeutic option to reduce cardiac hypertrophy."	"Establishing disease causality for a novel gene variant in familial dilated cardiomyopathy using a functional in-vitro assay of regulated thin filaments and human cardiac myosin. As next generation sequencing for the genetic diagnosis of cardiovascular disorders becomes more widely used, establishing causality for putative disease causing variants becomes increasingly relevant. Diseases of the cardiac sarcomere provide a particular challenge in this regard because of the complexity of assaying the effect of genetic variants in human cardiac contractile proteins. In this study we identified a novel variant R205Q in the cardiac troponin T gene (TNNT2). Carriers of the variant allele exhibited increased chamber volumes associated with decreased left ventricular ejection fraction. To clarify the causal role of this variant, we generated recombinant variant human protein and examined its calcium kinetics as well as the maximally activated ADP release of human β-cardiac myosin with regulated thin filaments containing the mutant troponin T. We found that the R205Q mutation significantly decreased the calcium sensitivity of the thin filament by altering the effective calcium dissociation kinetics. The development of moderate throughput post-genomic assays is an essential step in the realization of the potential of next generation sequencing. Although technically challenging, biochemical and functional assays of human cardiac contractile proteins of the thin filament can be achieved and provide an orthogonal source of information to inform the question of causality for individual variants."	"Mechanisms of favorable effects of Rho kinase inhibition on myocardial remodeling and systolic function after experimental myocardial infarction in the rat. The objective of this study was to determine the molecular mechanisms by which cardiac Rho-associated coiled-coil containing protein kinase (ROCK) activation after myocardial infarction (MI) does intervene in cardiac systolic function decline and remodeling. Simultaneous measurement of different cardiac ROCK target proteins levels, in vivo left ventricular (LV) systolic function, myocardial fibrosis and hypertrophy in rats with MI under ROCK inhibition with fasudil. Seven days after MI, the ventricular mass increased significantly by 5.6% in the MI group and was reduced with fasudil. LV systolic dysfunction improved significantly with fasudil whereas cardiac ROCK activation was reduced to sham levels. The ROCK inhibitor also reduced increased cardiac levels of both ROCK1 and ROCK2 isoforms, cardiomyocyte ROCK2 fluorescence levels and β-myosin heavy chain (MHC) levels in addition to myocardial collagen volume fraction decline. Compared with sham rats, troponin phosphorylation levels after MI were similar and ROCK inhibition reduced them. MI significantly increased phosphorylation levels of extracellular-signal-regulated kinase (ERK) 42 and ERK 44 by twofold and 63%, respectively, whereas in the fasudil-treated MI group these levels were similar to those in the sham group. MI significantly increased phosphorylated levels of the transcription factor GATA-4 and the ROCK inhibitor normalized them. LV systolic dysfunction after MI was strongly associated with cardiac ROCK activation and subsequent phosphorylation of ROCK target proteins that promote ventricular remodeling such as β-MHC and the ERK/GATA-4 pathway. ROCK inhibition with fasudil significantly improved systolic function, diminished myocardial fibrosis and normalized β-MHC and ERK/GATA-4 phosphorylation levels."	"Targeted next-generation sequencing of candidate genes reveals novel mutations in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a major cause of sudden cardiac death and heart failure, and it is characterized by genetic and clinical heterogeneity, even for some patients with a very poor clinical prognosis; in the majority of cases, DCM necessitates a heart transplant. Genetic mutations have long been considered to be associated with this disease. At present, mutations in over 50 genes related to DCM have been documented. This study was carried out to elucidate the characteristics of gene mutations in patients with DCM. The candidate genes that may cause DCM include MYBPC3, MYH6, MYH7, LMNA, TNNT2, TNNI3, MYPN, MYL3, TPM1, SCN5A, DES, ACTC1 and RBM20. Using next-generation sequencing (NGS) and subsequent mutation confirmation with traditional capillary Sanger sequencing analysis, possible causative non-synonymous mutations were identified in ~57% (12/21) of patients with DCM. As a result, 7 novel mutations (MYPN, p.E630K; TNNT2, p.G180A; MYH6, p.R1047C; TNNC1, p.D3V; DES, p.R386H; MYBPC3, p.C1124F; and MYL3, p.D126G), 3 variants of uncertain significance (RBM20, p.R1182H; MYH6, p.T1253M; and VCL, p.M209L), and 2 known mutations (MYH7, p.A26V and MYBPC3, p.R160W) were revealed to be associated with DCM. The mutations were most frequently found in the sarcomere (MYH6, MYBPC3, MYH7, TNNC1, TNNT2 and MYL3) and cytoskeletal (MYPN, DES and VCL) genes. As genetic testing is a useful tool in the clinical management of disease, testing for pathogenic mutations is beneficial to the treatment of patients with DCM and may assist in predicting disease risk for their family members before the onset of symptoms."	"Standing on the Shoulders of Giants: J.A.P. Paré and the Birth of Cardiovascular Genetics. Sudden death and stroke afflicted a family from rural Quebec with such frequency as to be called the Coaticook curse by the local community. In Montreal in the late 1950s, a team of physicians led by J.A.P. Paré investigated this family for inherited cardiovascular disease. Their efforts resulted in an extensive and now classic description of familial hypertrophic cardiomyopathy. A quarter of a century later, the same family was the subject of linkage analysis and direct sequencing, culminating in the isolation of a mutation in the gene encoding the β myosin heavy chain. MYH7 was the first gene implicated in a cardiovascular disease, which paved the way for identification of mutations in other heritable disorders, mechanistic studies, and clinical applications, such as predictive testing. The present era of cardiovascular genomics arguably had its inception in the clinical observations of Dr Paré and his colleagues more than 50 years ago. "	"OBSCN Mutations Associated with Dilated Cardiomyopathy and Haploinsufficiency. Studies of the functional consequences of DCM-causing mutations have been limited to a few cases where patients with known mutations had heart transplants. To increase the number of potential tissue samples for direct investigation we performed whole exon sequencing of explanted heart muscle samples from 30 patients that had a diagnosis of familial dilated cardiomyopathy and screened for potentially disease-causing mutations in 58 HCM or DCM-related genes. We identified 5 potentially disease-causing OBSCN mutations in 4 samples; one sample had two OBSCN mutations and one mutation was judged to be not disease-related. Also identified were 6 truncating mutations in TTN, 3 mutations in MYH7, 2 in DSP and one each in TNNC1, TNNI3, MYOM1, VCL, GLA, PLB, TCAP, PKP2 and LAMA4. The mean level of obscurin mRNA was significantly greater and more variable in healthy donor samples than the DCM samples but did not correlate with OBSCN mutations. A single obscurin protein band was observed in human heart myofibrils with apparent mass 960 ± 60 kDa. The three samples with OBSCN mutations had significantly lower levels of obscurin immunoreactive material than DCM samples without OBSCN mutations (45±7, 48±3, and 72±6% of control level).Obscurin levels in DCM controls, donor heart and myectomy samples were the same. OBSCN mutations may result in the development of a DCM phenotype via haploinsufficiency. Mutations in the obscurin gene should be considered as a significant causal factor of DCM, alone or in concert with other mutations."	"[MicroRNA-133a antagonizes phenylephrine-induced hypertrophy of neonatal rat cardiomyocytes in vitro]. To investigate the mechanism of miR-133a in reversing neonatal rat cardiomyocyte hypertrophy induced by phenylephrine. A miR-133a precursor cDNA was used to construct an adenovirus vector, which was transfected into 293 cells to harvest miR-133a-containing virus. Neonatal rat cardiac myocytes treated by phenylephrine were exposed to miR-133a adenovirus, and the changes in cell area was measured; the expression levels of miR-133a and Acta1, Actc1, Actb, Myh6, Myh7, and BNP mRNAs were detected by quantitative RT-PCR. Phenylephrine treatment increased the area of cardiomyocytes by more than 3 folds and significantly enhanced the expression levels of Acta1, Actc1, Actb, Myh6, Myh7 and BNP mRNAs. All these changes were obviously reverse by miR-133a treatment. miR-133a is an important regulator of phenylephrine-induced cardiomyocyte hypertrophy and negatively regulates this process."	"NDRG2 promotes myoblast proliferation and caspase 3/7 activities during differentiation, and attenuates hydrogen peroxide - But not palmitate-induced toxicity. The function of the stress-responsive N-myc downstream-regulated gene 2 (NDRG2) in the control of myoblast growth, and the amino acids contributing to its function, are not well characterized. Here, we investigated the effect of increased NDRG2 levels on the proliferation, differentiation and apoptosis in skeletal muscle cells under basal and stress conditions. NDRG2 overexpression increased C2C12 myoblast proliferation and the expression of positive cell cycle regulators, cdk2, cyclin B and cyclin D, and phosphorylation of Rb, while the serine/threonine-deficient NDRG2, 3A-NDRG2, had less effect. The onset of differentiation was enhanced by NDRG2 as determined through the myogenic regulatory factor expression profiles and myocyte fusion index. However, the overall level of differentiation in myotubes was not different. While NDRG2 up-regulated caspase 3/7 activities during differentiation, no increase in apoptosis was measured by TUNEL assay or through cleavage of caspase 3 and PARP proteins. During H2O2 treatment to induce oxidative stress, NDRG2 helped protect against the loss of proliferation and ER stress as measured by GRP78 expression with 3A-NDRG2 displaying less protection. NDRG2 also attenuated apoptosis by reducing cleavage of PARP and caspase 3 and expression of pro-apoptotic Bax while enhancing the pro-survival Bcl-2 and Bcl-xL levels. In contrast, Mcl-1 was not altered, and NDRG2 did not protect against palmitate-induced lipotoxicity. Our findings show that NDRG2 overexpression increases myoblast proliferation and caspase 3/7 activities without increasing overall differentiation. Furthermore, NDRG2 attenuates H2O2-induced oxidative stress and specific serine and threonine amino acid residues appear to contribute to its function in muscle cells. "	"Comparative transcriptome analysis of atrial septal defect identifies dysregulated genes during heart septum morphogenesis. Congenital heart disease (CHD) is one of most common birth defects, causing fetal loss and death in newborn all over the world. Atrial and ventricular septal defects were the most common CHD subtypes in most districts. During the past decades, several genes were identified to control atrial septum formation, and mutations of these genes can cause cardiac septation defects. However, the pathogenic mechanism of ASD on transcriptional levels has not been well elucidated yet. Herein, we performed comparative transcriptome analysis between normal and atrial septal defect (ASD) patients by Illumina RNA sequencing (RNA-seq). Advanced bioinformatic analyses were employed to identify dysregulated genes in ASD. The results indicated that cardiac specific transcriptional factors (GATA4 and NKX2-5), extracellular signal molecules (VEGFA and BMP10) and cardiac sarcomeric proteins (MYL2, MYL3, MYH7, TNNT1 and TNNT3) were downregulated in ASD which may affect heart atrial septum formation, cardiomyocyte proliferation and cardiac muscle development. Importantly, cell cycle was dominant pathway among downregulated genes, and decreased expression of the proteins included in cell cycle may disturb cardiomyocyte growth and differentiation during atrial septum formation. Our study provided evidences of understanding pathogenic mechanism of ASD and resource for validation of CHD genomic studies. "	"Rat cardiac troponin T mutation (F72L)-mediated impact on thin filament cooperativity is divergently modulated by α- and β-myosin heavy chain isoforms. The primary causal link between disparate effects of human hypertrophic cardiomyopathy (HCM)-related mutations in troponin T (TnT) and α- and β-myosin heavy chain (MHC) isoforms on cardiac contractile phenotype remains poorly understood. Given the divergent impact of α- and β-MHC on the NH2-terminal extension (44-73 residues) of TnT, we tested if the effects of the HCM-linked mutation (TnTF70L) were differentially altered by α- and β-MHC. We hypothesized that the emergence of divergent thin filament cooperativity would lead to contrasting effects of TnTF70L on contractile function in the presence of α- and β-MHC. The rat TnT analog of the human F70L mutation (TnTF72L) or the wild-type rat TnT (TnTWT) was reconstituted into demembranated muscle fibers from normal (α-MHC) and propylthiouracil-treated (β-MHC) rat hearts to measure steady-state and dynamic contractile function. TnTF72L-mediated effects on tension, myofilament Ca(2+) sensitivity, myofilament cooperativity, rate constants of cross-bridge (XB) recruitment dynamics, and force redevelopment were divergently modulated by α- and β-MHC. TnTF72L increased the rate of XB distortion dynamics by 49% in α-MHC fibers but had no effect in β-MHC fibers; these observations suggest that TnTF72L augmented XB detachment kinetics in α-MHC, but not β-MHC, fibers. TnTF72L increased the negative impact of strained XBs on the force-bearing XBs by 39% in α-MHC fibers but had no effect in β-MHC fibers. Therefore, TnTF72L leads to contractile changes that are linked to dilated cardiomyopathy in the presence of α-MHC. On the other hand, TnTF72L leads to contractile changes that are linked to HCM in the presence of β-MHC. "	"Intrauterine Treatment of a Fetus with Familial Hypertrophic Cardiomyopathy Secondary to MYH7 Mutation. There is no clear consensus on optimal management of fetuses affected by familial hypertrophic cardiomyopathy (HCM). Intrauterine treatment of the condition has not been attempted in any standardized fashion. We report the case of a fetus treated by maternal propranolol during the third trimester after septal hypertrophy and diastolic dysfunction was diagnosed on fetal echocardiogram. The pregnancy went successfully to term, and fetal septal hypertrophy was noted to improve prior to delivery. "	"Unbalanced upregulation of ryanodine receptor 2 plays a particular role in early development of daunorubicin cardiomyopathy. Calcium release channel on the sarcoplasmic reticulum of cardiomyocytes (ryanodine receptor type 2, RyR2) plays a critical role in the regulation of calcium and was identified as a crucial factor for development of chronic anthracycline cardiomyopathy. Its early stages are less well described although these determine the later development. Hence, we tested the effect of repeated, short-term anthracycline (daunorubicin) administration on cardiac performance, cardiomyocyte function and accompanied changes in calcium regulating proteins expression. Ten-twelve weeks old male Wistar rats were administered with 6 doses of daunorubicin (DAU, 3 mg/kg, i.p., every 48 h), controls (CON) received vehicle. Left ventricular function (left ventricular pressure, LVP; rate of pressure development, +dP/dt and decline, -dP/dt) was measured using left ventricular catheterization under tribromethanol anaesthesia (15 ml/kg b.w.). Cell shortening was measured in enzymatically isolated cardiomyocytes. The expressions of RyR2 and associated intracellular calcium regulating proteins, cytoskeletal proteins (alpha-actinin, alpha-tubul in) as well as oxidative stress regulating enzymes (gp91phox, MnSOD) were detected in ventricular tissue samples using immunoblotting. mRNA expressions of cardiac damage markers (Nppa and Nppb, atrial and brain natriuretic peptides; Myh6, Myh7 and Myh7b, myosin heavy chain alpha and beta) were detected using RT-PCR. Thiobarbituric acid reactive substances concentration was measured to estimate oxidative stress. DAU rats exhibited significantly depressed left ventricular features (LVP by 14%, +dP/dt by 36% and -dP/dt by 30%; for all P&lt;0.05), in line with concomitant increase in Nppa and Nppb gene expressions (3.23- and 2.18-fold, for both P&lt;0.05), and a 4.34-fold increase in Myh7 (P&lt;0.05). Controversially, we observed increased cell shortening of isolated cardiac cells by 31% (p&lt;0.05). DAU administration was associated with a twofold upregulation of RyR2 (P&lt;0.05), but not of other examined Ca(2+) regulating proteins remained. In addition, we observed a significant reduction in alpha-tubulin (by 46% when compared to CON P&lt;0.05). Indicators of oxidative injury were unaffected. In conclusion, unbalanced RyR2 overexpression plays a particular role in early development of daunorubicin cardiomyopathy characterized by discrepant in situ versus in vitro cardiac performance. "	"The Impact of a Non-Functional Thyroid Receptor Beta upon Triiodotironine-Induced Cardiac Hypertrophy in Mice. Thyroid hormone (TH) signalling is critical for heart function. The heart expresses thyroid hormone receptors (THRs); THRα1 and THRβ1. We aimed to investigate the regulation mechanisms of the THRβ isoform, its association with gene expression changes and implications for cardiac function. The experiments were performed using adult male mice expressing TRβΔ337T, which contains the Δ337T mutation of the human THRB gene and impairs ligand binding. Cardiac function and RNA expression were studied after hypo-or hyperthyroidism inductions. T3-induced cardiac hypertrophy was not observed in TRβΔ337T mice, showing the fundamental role of THRβ in cardiac hypertrophy. We identified a group of independently regulated THRβ genes, which includes Adrb2, Myh7 and Hcn2 that were normally regulated by T3 in the TRβΔ337T group. However, Adrb1, Myh6 and Atp2a2 were regulated via THRβ. The TRβΔ337T mice exhibited a contractile deficit, decreased ejection fraction and stroke volume, as assessed by echocardiography. In our model, miR-208a and miR-199a may contribute to THRβ-mediated cardiac hypertrophy, as indicated by the absence of T3-regulated ventricular expression in TRβΔ337T mice. THRβ has important role in the regulation of specific mRNA and miRNA in T3-induced cardiac hypertrophic growth and in the alteration of heart functions."	"Time course and side-by-side analysis of mesodermal, pre-myogenic, myogenic and differentiated cell markers in the chicken model for skeletal muscle formation. The chicken is a well-established model for amniote (including human) skeletal muscle formation because the developmental anatomy of chicken skeletal muscle matches that of mammals. The accessibility of the chicken in the egg as well as the sequencing of its genome and novel molecular techniques have raised the profile of this model. Over the years, a number of regulatory and marker genes have been identified that are suited to monitor the progress of skeletal myogenesis both in wildtype and in experimental embryos. However, in the various studies, differing markers at different stages of development have been used. Moreover, contradictory results on the hierarchy of regulatory factors are now emerging, and clearly, factors need to be able to cooperate. Thus, a reference paper describing in detail and side-by-side the time course of marker gene expression during avian myogenesis is needed. We comparatively analysed onset and expression patterns of the key markers for the chicken immature paraxial mesoderm, for muscle-competent cells, for cells committed to myogenesis and for cells entering terminal differentiation. We performed this analysis from stages when the first paraxial mesoderm is being laid down to the stage when mesoderm formation comes to a conclusion. Our data show that, although the sequence of marker gene expression is the same at the various stages of development, the timing of the expression onset is quite different. Moreover, marker gene expression in myogenic cells being deployed from the dorsomedial and ventrolateral lips of the dermomyotome is different from those being deployed from the rostrocaudal lips, suggesting different molecular programs. Furthermore, expression of Myosin Heavy Chain genes is overlapping but different along the length of a myotube. Finally, Mef2c is the most likely partner of Mrf proteins, and, in contrast to the mouse and more alike frog and zebrafish fish, chicken Mrf4 is co-expressed with MyoG as cells enter terminal differentiation. "	"A Murine Hypertrophic Cardiomyopathy Model: The DBA/2J Strain. Familial hypertrophic cardiomyopathy (HCM) is attributed to mutations in genes that encode for the sarcomere proteins, especially Mybpc3 and Myh7. Genotype-phenotype correlation studies show significant variability in HCM phenotypes among affected individuals with identical causal mutations. Morphological changes and clinical expression of HCM are the result of interactions with modifier genes. With the exceptions of angiotensin converting enzyme, these modifiers have not been identified. Although mouse models have been used to investigate the genetics of many complex diseases, natural murine models for HCM are still lacking. In this study we show that the DBA/2J (D2) strain of mouse has sequence variants in Mybpc3 and Myh7, relative to widely used C57BL/6J (B6) reference strain and the key features of human HCM. Four-month-old of male D2 mice exhibit hallmarks of HCM including increased heart weight and cardiomyocyte size relative to B6 mice, as well as elevated markers for cardiac hypertrophy including β-myosin heavy chain (MHC), atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and skeletal muscle alpha actin (α1-actin). Furthermore, cardiac interstitial fibrosis, another feature of HCM, is also evident in the D2 strain, and is accompanied by up-regulation of type I collagen and α-smooth muscle actin (SMA)-markers of fibrosis. Of great interest, blood pressure and cardiac function are within the normal range in the D2 strain, demonstrating that cardiac hypertrophy and fibrosis are not secondary to hypertension, myocardial infarction, or heart failure. Because D2 and B6 strains have been used to generate a large family of recombinant inbred strains, the BXD cohort, the D2 model can be effectively exploited for in-depth genetic analysis of HCM susceptibility and modifier screens. "	"cAMP induces hypertrophy and alters DNA methylation in HL-1 cardiomyocytes. cAMP is a highly regulated secondary messenger involved in many biological processes. Chronic activation of the cAMP pathway by catecholamines results in cardiac hypertrophy and fibrosis; however, the mechanism by which elevated cAMP leads to cardiomyopathy is not fully understood. To address this issue, we increased intracellular cAMP levels in HL-1 cardiomyocytes, a cell line derived from adult mouse atrium, using either the stable cAMP analog N(6),2'-O-dibutyryladenosine 3',5'-cyclic monophosphate (DBcAMP) or phosphodiesterase (PDE) inhibitors caffeine and theophylline. Elevated cAMP levels increased cell size and altered expression levels of cardiac genes and micro-RNAs associated with hypertrophic cardiomyopathy (HCM), including Myh6, Myh7, Myh7b, Tnni3, Anp, Bnp, Gata4, Mef2c, Mef2d, Nfatc1, miR208a, and miR208b. In addition, DBcAMP altered the expression of DNA methyltransferases (Dnmts) and Tet methylcytosine dioxygenases (Tets), enzymes that regulate genomic DNA methylation levels. Changes in expression of DNA methylation genes induced by elevated cAMP led to increased global DNA methylation in HL-1 cells. In contrast, inhibition of DNMT activity with 5-azacytidine treatment decreased global DNA methylation levels and blocked the increased expression of several HCM genes (Myh7, Gata4, Mef2c, Nfatc1, Myh7b, Tnni3, and Bnp) observed with DBcAMP treatment. These results demonstrate that cAMP induces cardiomyocyte hypertrophy and altered HCM gene expression in vitro and that DNA methylation patterns mediate the upregulation of HCM genes induced by cAMP. These data identify a previously unknown mechanism by which elevated levels of cAMP lead to increased expression of genes associated with cardiomyocyte hypertrophy. "	"High-throughput genetic characterization of a cohort of Brugada syndrome patients. Brugada syndrome (BrS) is an inherited cardiac arrhythmic disorder that can lead to sudden death, with a prevalence of 1:5000 in Caucasian population and affecting mainly male patients in their third to fourth decade of life. BrS is inherited as an autosomal dominant trait; however, to date genetic bases have been only partially understood. Indeed most mutations are located in the SCN5A gene, encoding the alpha-subunit of the Na(+) cardiac channel, but &gt;70% BrS patients still remain genetically undiagnosed. Although 21 other genes have been associated with BrS susceptibility, their pathogenic role is still unclear. A recent next-generation sequencing study investigated the contribution of 45 arrhythmia susceptibility genes in BrS pathogenesis, observing a significant enrichment only for SCN5A. In our study, we evaluated the distribution of putative functional variants in a wider panel of 158 genes previously associated with arrhythmic and cardiac defects in a cohort of 91 SCN5A-negative BrS patients. In addition, to identify genes significantly enriched in BrS, we performed a mutation burden test by using as control dataset European individuals selected from the 1000Genomes project. We confirmed BrS genetic heterogeneity and identified new potential BrS candidates such as DSG2 and MYH7, suggesting a possible genetic overlap between different cardiac disorders. "	"Screening of differentially-expressed genes in the muscles of rabbit breeds with expression profile chip. The molecular mechanism underlying muscle development in rabbits is not well-understood. In the current study, differentially-expressed genes were scanned using an expression profile chip in New Zealand white rabbits (introduced breed) and Fujian yellow rabbits (local breed), and some of the genes were tested using reverse transcription-polymerase chain reaction. The amplification results were consistent with the microarray data. Fourteen and 13 genes involved in muscle development were identified in the dorsal longissimus and leg muscles, respectively. Myh6, Myh7, Myh7b, Myo5b, Tnnc1, Tpm3, and Acta2 were scanned in the longissimus and leg muscles. Thus, these genes may be involved in muscle fiber formation and muscle development in rabbits. This study provides a theoretical basis for improving meat quality, as well as for the future development and utilization of local meat rabbit breeds. "	"Integrative Analysis of the Developing Postnatal Mouse Heart Transcriptome. In mammals, cardiomyocytes rapidly proliferate in the fetus and continue to do so for a few more days after birth. These cardiomyocytes then enter into growth arrest but the detailed molecular mechanisms involved have not been fully elucidated. We have addressed this issue by comparing the transcriptomes of 2-day-old (containing dividing cardiomyocytes) with 13-day-old (containing growth arrested cardiomyocytes) postnatal mouse hearts. We performed comparative microarray analysis on the heart tissues and then conducted Functional annotation, Gene ontology, KEGG pathway and Gene Set enrichment analyses on the differentially expressed genes. The bioinformatics analysis revealed that gene ontology categories associated with the &quot;cell cycle&quot;, &quot;DNA replication&quot;, &quot;chromosome segregation&quot; and &quot;microtubule cytoskeleton&quot; were down-regulated. Inversely, &quot;immune response&quot;, &quot;extracellular matrix&quot;, &quot;cell differentiation&quot; and &quot;cell membrane&quot; were up-regulated. Ingenuity Pathways Analysis (IPA) has revealed that GATA4, MYH7 and IGF1R were the key drivers of the gene interaction networks. In addition, Regulator Effects network analysis suggested that TASP1, TOB1, C1orf61, AIF1, ROCK1, TFF2 and miR503-5p may be acting on the cardiomyocytes in 13-day-old mouse hearts to inhibit cardiomyocyte proliferation and G1/S phase transition. RT-qPCR was used to validate genes which were differentially expressed and genes that play a prominent role in the pathways and interaction networks that we identified. In sum, our integrative analysis has provided more insights into the transcriptional regulation of cardiomyocyte exit from the cell cycle during postnatal heart development. The results also pinpoint potential regulators that could be used to induce growth arrested cardiomyocytes to proliferate in the infarcted heart. "	"Targeted Next-Generation Sequencing Reveals Hot Spots and Doubly Heterozygous Mutations in Chinese Patients with Familial Cardiomyopathy. As a common cardiac disease mainly caused by gene mutations in sarcomeric cytoskeletal, calcium-handling, nuclear envelope, desmosomal, and transcription factor genes, inherited cardiomyopathy is becoming one of the major etiological factors of sudden cardiac death (SCD) and heart failure (HF). This disease is characterized by remarkable genetic heterogeneity, which makes it difficult to screen for pathogenic mutations using Sanger sequencing. In the present study, three probands, one with familial hypertrophic cardiomyopathy (FHCM) and two with familial dilated cardiomyopathy (FDCM), were recruited together with their respective family members. Using next-generation sequencing technology (NGS), 24 genes frequently known to be related to inherited cardiomyopathy were screened. Two hot spots (TNNI3-p.Arg145Gly, and LMNA-p.Arg190Trp) and double (LMNA-p.Arg190Trp plus MYH7-p.Arg1045His) heterozygous mutations were found to be highly correlated with familial cardiomyopathy. FDCM patients with doubly heterozygous mutations show a notably severe phenotype as we could confirm in our study; this indicates that the double mutations had a dose effect. In addition, it is proposed that genetic testing using NGS technology can be used as a cost-effective screening tool and help guide the treatment of patients with familial cardiomyopathy particularly regarding the risk of family members who are clinically asymptomatic. "	"Screening of sarcomere gene mutations in young athletes with abnormal findings in electrocardiography: identification of a MYH7 mutation and MYBPC3 mutations. There is an overlap between the physiological cardiac remodeling associated with training in athletes, the so-called athlete's heart, and mild forms of hypertrophic cardiomyopathy (HCM), the most common hereditary cardiac disease. HCM is often accompanied by unfavorable outcomes including a sudden cardiac death in the adolescents. Because one of the initial signs of HCM is abnormality in electrocardiogram (ECG), athletes may need to monitor for ECG findings to prevent any unfavorable outcomes. HCM is caused by mutations in genes for sarcomere proteins, but there is no report on the systematic screening of gene mutations in athletes. One hundred and two genetically unrelated young Japanese athletes with abnormal ECG findings were the subjects for the analysis of four sarcomere genes, MYH7, MYBPC3, TNNT2 and TNNI3. We found that 5 out of 102 (4.9%) athletes carried mutations: a heterozygous MYH7 Glu935Lys mutation, a heterozygous MYBPC3 Arg160Trp mutation and another heterozygous MYBPC3 Thr1046Met mutation, all of which had been reported as HCM-associated mutations, in 1, 2 and 2 subjects, respectively. This is the first study of systematic screening of sarcomere gene mutations in a cohort of athletes with abnormal ECG, demonstrating the presence of sarcomere gene mutations in the athlete's heart. "	"Hypertrophic Cardiomyopathy, Athlete's Heart, or Both: A Case of Hypertrophic Cardiomyopathy Regression. NA"	"Skip residues modulate the structural properties of the myosin rod and guide thick filament assembly. The rod of sarcomeric myosins directs thick filament assembly and is characterized by the insertion of four skip residues that introduce discontinuities in the coiled-coil heptad repeats. We report here that the regions surrounding the first three skip residues share high structural similarity despite their low sequence homology. Near each of these skip residues, the coiled-coil transitions to a nonclose-packed structure inducing local relaxation of the superhelical pitch. Moreover, molecular dynamics suggest that these distorted regions can assume different conformationally stable states. In contrast, the last skip residue region constitutes a true molecular hinge, providing C-terminal rod flexibility. Assembly of myosin with mutated skip residues in cardiomyocytes shows that the functional importance of each skip residue is associated with rod position and reveals the unique role of the molecular hinge in promoting myosin antiparallel packing. By defining the biophysical properties of the rod, the structures and molecular dynamic calculations presented here provide insight into thick filament formation, and highlight the structural differences occurring between the coiled-coils of myosin and the stereotypical tropomyosin. In addition to extending our knowledge into the conformational and biological properties of coiled-coil discontinuities, the molecular characterization of the four myosin skip residues also provides a guide to modeling the effects of rod mutations causing cardiac and skeletal myopathies. "	"Exposure to concentrated ambient particulate matter induces reversible increase of heart weight in spontaneously hypertensive rats. Exposure to ambient PM2.5 increases cardiovascular mortality and morbidity. To delineate the underlying biological mechanism, we investigated the time dependence of cardiovascular response to chronic exposure to concentrated ambient PM2.5 (CAP). Spontaneously hypertensive rats (SHR) were exposed to CAP for 15 weeks, and blood pressure (BP), cardiac function and structure, and inflammations of lung, hypothalamus, and heart were measured at different time points. Chronic exposure to CAP significantly increased BP, and withdrawal from CAP exposure restored BP. Consistent with its BP effect, chronic exposure to CAP significantly decreased cardiac stroke volume and output in SHR, accompanied by increased heart weight and increased cardiac expression of hypertrophic markers ACTA1 and MYH7. Withdrawal from CAP exposure restored cardiac function, weight, and expression of hypertrophic markers, supporting the notion that cardiac dysfunction and hypertrophy is subsequent to hypertension. In agreement with the role of systemic inflammation in mediating the cardiovascular effects of CAP exposure, chronic exposure to CAP markedly increased expression of pro-inflammatory cytokines in lung, heart, and hypothalamus. However, withdrawal from exposure resolves inflammation in the heart and hypothalamus, but not in the lung, suggesting that CAP exposure-induced systemic inflammation may be independent of pulmonary inflammation. Chronic exposure to CAP induces reversible cardiac dysfunction and hypertrophy, which is likely to be subsequent to the elevation in BP and induction of systemic inflammation as evidenced by increased mRNA expression of pro-inflammatory cytokines in diverse tissues."	"Complex sarcolemmal invaginations mimicking myotendinous junctions in a case of Laing early-onset distal myopathy. Distal myopathies are a group of clinically and pathologically overlapping muscle diseases that are genetically complex and can represent a diagnostic challenge. Laing early-onset distal myopathy (MPD1) is a form of distal myopathy caused by mutations in the MYH7 gene, which encodes the beta myosin heavy chain protein expressed in type 1 skeletal muscle fibers and cardiac myocytes. Here, we present a case of genetically confirmed MPD1 with a typical clinical presentation but distinctive light microscopic and ultrastructural findings on muscle biopsy. A 39-year-old professional male cellist presented with a bilateral foot drop that developed by age 8; analysis of the family pedigree showed an autosomal dominant pattern of inheritance. The physical exam demonstrated bilateral weakness of ankle dorsiflexors, toe extensors and finger extensors; creatine kinase level was normal. Biopsy of the quadriceps femoris muscle showed predominance and hypotrophy of type 1 fibers, hybrid fibers with co-expression of slow and fast myosin proteins (both in highly atrophic and normal size range), moth-eaten fibers and mini-cores, lack of rimmed vacuoles and rare desmin-positive eosinophilic sarcoplasmic inclusions. In addition to these abnormalities often observed in MPD1, the biopsy demonstrated frequent clefted fibers with complex sarcolemmal invaginations; on ultrastructural examination, these structures closely mimicked myotendinous junctions but were present away from the tendon and were almost exclusively found in type 1 fibers. Sequencing analysis of the MYH7 gene in the index patient and other affected family members demonstrated a previously described heterozygous c.4522_4524delGAG (p.Glu1508del) mutation. This case widens the pathologic spectrum of MPD1 and highlights the pathologic and clinical variability that can accompany the same genetic mutation, suggesting a significant role for modifier genes in MPD1 pathogenesis. "	"Blood-based microRNA signatures differentiate various forms of cardiac hypertrophy. Hypertrophic cardiomyopathy (HCM) is caused by mutations in different structural genes and induces pathological hypertrophy with sudden cardiac death as a possible consequence. HCM can be separated into hypertrophic non-obstructive and obstructive cardiomyopathy (HNCM/HOCM) with different clinical treatment approaches. We here distinguished between HNCM, HOCM, cardiac amyloidosis and aortic stenosis by using microRNA profiling and investigated potential interactions between circulating miRNA levels and the most common mutations in MYH7and MYBPC3 genes. Our study included 4 different groups: 23 patients with HNCM, 28 patients with HOCM, 47 patients with aortic stenosis and 22 healthy controls. Based on previous findings, 8 different cardiovascular known microRNAs (miR-1, miR-21, miR-29a, miR-29b, miR-29c, miR-133a, miR-155 and miR-499) were studied in serum of all patients and compared with clinically available patient data. We found miR-29a levels to be increased in patients with HOCM and correlating markers of cardiac hypertrophy. This was not the case in HNCM patients. In contrast, we identified miR-29c to be upregulated in aortic stenosis but not the other patient groups. ROC curve analysis of miR-29a/c distinguished between HOCM patients and aortic stenosis patients. MiR-29a and miR-155 levels discriminated HNCM patients from patients with senile cardiac amyloidosis. MiR-29a increased mainly in HOCM patients with a mutation in MYH7, whereas miR-155 was decreased in hypertrophic cardiomyopathy patients with a mutation in MYBPC3. We demonstrated that miR-29a and miR-29c show a specific signature to distinguish between aortic stenosis, hypertrophic non-obstructive and obstructive cardiomyopathies and thus could be developed into clinically useful biomarkers."	"microRNA-340-5p Functions Downstream of Cardiotrophin-1 to Regulate Cardiac Eccentric Hypertrophy and Heart Failure via Target Gene Dystrophin. Pathological cardiac hypertrophy inevitably leads to the unfavorable outcomes of heart failure (HF) or even sudden death. microRNAs are key regulation factors participating in many pathophysiological processes. Recently, we observed upregulation of microRNA-340-5p (miR-340) in failing human hearts because of dilated cardiomyopathy, but the functional consequence of miR-340 remains to be clarified.We transfected neonatal cardiomyocytes with miR-340 and found fetal gene expression including Nppa, Nppb and Myh7. We also observed eccentric hypertrophy development upon treatment which was analogous to the phenotype after cardiotrophin-1 (CT-1) stimulation. As a potent inducer of cardiac eccentric hypertrophy, treatment by IL-6 family members CT-1 and leukemia inhibitory factor (LIF) led to the elevation of miR-340. Knockdown of miR-340 using antagomir attenuated fetal gene expression and hypertrophy formation, which means miR-340 could convey the hypertrophic signal of CT-1. To demonstrate the initial factor of miR-340 activation, we constructed a volume overloaded abdominal aorta-inferior vena cava fistula rat HF model. miR-340 and CT-1 were found to be up-regulated in the left ventricle. Dystrophin (DMD), a putative target gene of miR-340 which is eccentric hypertrophy-susceptible, was decreased in this HF model upon Western blotting and immunohistochemistry tests. Luciferase assay constructed in two seed sequence of DMD gene 3'UTR showed decreased luciferase activities, and miR-340 transfected cells resulted in the degradation of DMD.miR-340 is a pro-eccentric hypertrophy miRNA, and its expression is dependent on volume overload and cytokine CT-1 activation. Cardiomyocyte structure protein DMD is a target of miR-340. "	"Transition of myosin heavy chain isoforms in human laryngeal abductors following denervation. The objective of this study was to investigate the myofiber subtype transition of human posterior cricoarytenoid (PCA) muscle after the injury to recurrent laryngeal nerve (RLN). PCA muscle specimens were obtained from 38 bilateral vocal fold paralysis patients underwent arytenoidectomy. According to the duration of RLN injury, all the cases were divided into five denervation groups: 6-12 months, 1-2, 2-3, 3-6, and &gt;6 years. The normal PCA muscles from total laryngectomy patients were chosen as controls. Immunofluorescence was adopted to detect the expression level of myosin heavy chain (MHC)-I and MHC-II in PCA muscle. Quantitative real-time PCR was also used to assess the transcriptional level of MHC subtypes (MHC-I, MHC-IIa, MHC-IIb, MHC-IIx, embryonic-MHC, and peri-natal-MHC). Immunofluorescence showed that MHC-I-positive myofibers in denervation groups were much lower than control group, respectively, while MHC-II-positive myofibers were significantly higher than control group (P &lt; 0.05). With the extension of denervation, the number of MHC-I-positive myofibers gradually decreased, while MHC-II gradually increased and peaked in 1- to 2-year group. Transcriptional level of MHC-I, MHC-IIa, and MHC-IIb in denervation groups significantly down-regulated compared with the control (P &lt; 0.05), respectively. However, MHC-IIx, embryonic-MHC, and peri-natal-MHC significantly up-regulated in all denervation groups, and the highest level was in 1- to 2-year denervation group. Data from the present study demonstrated that the maximum transition of MHC subtypes in human PCA muscles occurred in 1-2 years after denervation, suggesting that laryngeal reinnervation before the occurrence of irreversible transition of MHC subtypes could maintain the structural integrity of laryngeal PCA muscles."	"Loss of Function Mutations in NNT Are Associated With Left Ventricular Noncompaction. Left ventricular noncompaction (LVNC) is an autosomal-dominant, genetically heterogeneous cardiomyopathy with variable severity, which may co-occur with cardiac hypertrophy. Here, we generated whole exome sequence data from multiple members from 5 families with LVNC. In 4 of 5 families, the candidate causative mutation segregates with disease in known LVNC genes MYH7 and TPM1. Subsequent sequencing of MYH7 in a larger LVNC cohort identified 7 novel likely disease causing variants. In the fifth family, we identified a frameshift mutation in NNT, a nuclear-encoded mitochondrial protein, not implicated previously in human cardiomyopathies. Resequencing of NNT in additional LVNC families identified a second likely pathogenic missense allele. Suppression of nnt in zebrafish caused early ventricular malformation and contractility defects, probably driven by altered cardiomyocyte proliferation. In vivo complementation studies showed that mutant human NNT failed to rescue nnt morpholino-induced heart dysfunction, indicating a probable haploinsufficiency mechanism. Together, our data expand the genetic spectrum of LVNC and demonstrate how the intersection of whole exome sequence with in vivo functional studies can accelerate the identification of genes that drive human genetic disorders."	"Stimulation of cardiomyogenesis from mouse embryonic stem cells by nuclear translocation of cardiotrophin-1. Cardiotrophin-1 (CT-1) controls cardiomyogenesis of mouse embryonic stem (ES) cells. To investigate the signaling pathway underlying the action of CT-1 on cardiac cell differentiation. Protein expression was analyzed by western blot technique and cardiac areas by immunohistochemistry. Calcium, reactive oxygen species (ROS) and nitric oxide (NO) were assessed by microfluorometry using fluo-4, H2DCF, and DAF-2DA, respectively. Gene inactivation of CT-1 was achieved by siRNA technology. CT-1 as well as its receptor gp 130 were transiently upregulated during differentiation of ES cells. Exogenous CT-1 enhanced cardiomyogenesis, increased the cardiac transcription factors MEF2c, Nkx-2.5, TEAD3 and GATA4, the cardiac proteins α-actinin, MLC2a, MYH7, MLC1a, MLC2v and HCN4 as well as vascular endothelial growth factor (VEGF), platelet-derived growth factor-BB (PDGF-BB), fibroblast growth factor-2 (FGF-2) and atrial natriuretic peptide (ANP). CT-1 downregulation by small interfering RNA (siRNA) inhibited cardiomyogenesis and decreased VEGF, PDGF-BB, FGF-2 and ANP expression. CT-1 raised intracellular calcium which was abolished by the intracellular calcium chelator BAPTA, AM and thapsigargin. Moreover, CT-1 treatment increased ROS, followed by NO generation and NOS3 activation. During ES cell differentiation CT-1 was translocated to the cell nucleus. Exogenous CT-1 induced nuclear translocation of endogenous CT-1, which was inhibited by BAPTA, the NOS inhibitor L-N(G)-Nitroarginine methyl ester (l-NAME), the radical scavenger N-(2-mercaptopropionyl)-glycine (NMPG) as well as the janus kinase 2 (JAK2) inhibitor AG490 and the PI3 kinase (PI3K) inhibitor LY294002. Nuclear translocation of CT-1 regulates cardiomyogenesis of ES cells and involves calcium, NO, ROS as well as CT-1 regulated signaling pathways."	"Male-Specific Cardiac Dysfunction in CTP:Phosphoethanolamine Cytidylyltransferase (Pcyt2)-Deficient Mice. Phosphatidylethanolamine (PE) is the most abundant inner membrane phospholipid. PE synthesis from ethanolamine and diacylglycerol is regulated primarily by CTP:phosphoethanolamine cytidylyltransferase (Pcyt2). Pcyt2(+/-) mice have reduced PE synthesis and, as a consequence, perturbed glucose and fatty acid metabolism, which gradually leads to the development of hyperlipidemia, obesity, and insulin resistance. Glucose and fatty acid uptake and the corresponding transporters Glut4 and Cd36 are similarly impaired in male and female Pcyt2(+/-) hearts. These mice also have similarly reduced phosphatidylinositol 3-kinase (PI3K)/Akt1 signaling and increased reactive oxygen species (ROS) production in the heart. However, only Pcyt2(+/-) males develop hypertension and cardiac hypertrophy. Pcyt2(+/-) males have upregulated heart AceI expression, heart phospholipids enriched in arachidonic acid and other n-6 polyunsaturated fatty acids, and dramatically increased ROS production in the aorta. In contrast, Pcyt2(+/-) females have unmodified heart phospholipids but have reduced heart triglyceride levels and altered expression of the structural genes Acta (low) and Myh7 (high). These changes together protect Pcyt2(+/-) females from cardiac dysfunction under conditions of reduced glucose and fatty acid uptake and heart insulin resistance. Our data identify Pcyt2 and membrane PE biogenesis as important determinants of gender-specific differences in cardiac lipids and heart function. "	"Targeted 46-gene and clinical exome sequencing for mutations causing cardiomyopathies. With the implementation of high-throughput sequencing protocols, the exhaustive scanning of known and candidate disease genes has become a feasible approach to genetic testing of patients with cardiomyopathy. A primary objective of the present study was to assess the performance characteristics of a 46-gene next-generation sequencing (NGS) assay that targets well-established cardiomyopathy genes. A total of 25 samples were analyzed. Twelve of those had previously been sequenced using resequencing arrays and served as reference samples for the assessment of the assay's performance characteristics. The remaining 13 samples were derived from consecutive patients. Both the analytical sensitivity and the specificity of the assay were 100% and the percentage of low-coverage bases was 0.4%, at an average read depth of 210×. In order to assess the diagnostic yield of the test, 13 consecutive samples representing cases of Dilated (n = 7), Hypertrophic (n = 4) and Left Ventricular Non-Compaction Cardiomyopathy (n = 2), were subjected to the 46-gene NGS assay. Including predicted pathogenic variants in the gene TTN, a total of 22 variants (11 novel) were detected in 10 patients, with a clear preponderance of variants of unknown pathogenicity (class 3 variants, 21/22, 95%). Of the seven DCM cases, two were digenic, involving variants in the genes MYH7 and RBM20 in one case and in DSP and TTN in the other case. Three other patients carried single TTN variants predicted to be pathogenic. Of the four HCM patients, one was trigenic (LAMA4, PKP2 and TTN) and three were digenic (DSP and TTN, MYH7 and NEXN, NEXN and TTN, respectively). As to LVNC, one of the two patients had one variant in the gene ABCC9 and two predicted pathogenic variants in the gene TTN. Strikingly, out of the thirteen investigated cases, only a single case exhibited a likely pathogenic or pathogenic variant justifying a positive test report. The percentage of inconclusive cases thus amounted to 69%. Three cases were devoid of any relevant variant. Two of these &quot;negative&quot; cases were subsequently taken to initially evaluate the use of an alternative NGS assay addressing 4813 genes previously implicated in genetic diseases (the so-called clinical exome). Although showing similar sensitivity and specificity values, the coverage of the 46 established cardiomyopathy genes was less efficient (low-coverage bases: 5%). In a case of DCM, the assay revealed a disruptive variant in the gene encoding the adrenoreceptor beta 2 (ADRB2), a protein implicated in signal transduction and energy metabolism in the heart. In conclusion, the 46 gene assay is applicable to routine genetic diagnostics of cardiomyopathy. The test detects many variants of unknown pathogenicity which need to be followed-up in order to gain benefit for the patients and their families. Samples devoid of any relevant variant may be subjected to a clinical exome assay, in order to identify interesting novel candidate genes."	"A Variant Detection Pipeline for Inherited Cardiomyopathy-Associated Genes Using Next-Generation Sequencing. In inherited cardiomyopathies, genetic testing is recognized as an enriching procedure in the diagnostic closure of a cardiac condition. Many genetic mutations have been described as pathogenically related to cardiomyopathies, turning next-generation sequencing into an extremely reliable scenario. Here we describe the validation process of a pipeline constructed with a target panel of 74 cardiomyopathy-related genes sequenced using a next-generation sequencing system. Fifty-two samples from a hypertrophic cardiomyopathy casuistic with previous molecular diagnostics (Sanger-sequenced for MYH7, MYBCP3, and TNNT2; 19 positives and 33 negatives) were processed in parallel with a HapMap reference sample (NA12878) applied for a complete panel assessment. Sequencing coverage values were satisfactory, with a mean of 250× (95% CI, 226.03-273.91) and 95.2% of target bases with a coverage of ≥10×. With a total of 567 variants, variant call sensitivity was tested in five scenarios of coverage and variant allele frequency cutoffs. Maximum achieved sensitivity was 96.7% for single-nucleotide variants and 28.5% for indels, and positive predictive values remained above 0.959 during the whole process. Inter- and intra-assay reproducibility values were 89.5% and 87.3%, respectively. After a careful assessment of analytical performance, we infer that the assay presents potential feasibility for application in diagnostic routines, with minimal time requirements and a simple bioinformatics structure. "	"Phenotype and prognostic correlations of the converter region mutations affecting the β myosin heavy chain. The prognostic value of genetic studies in cardiomyopathies is still controversial. Our objective was to evaluate the outcome of patients with cardiomyopathy with mutations in the converter domain of β myosin heavy chain (MYH7). Clinical characteristics and survival of 117 affected members with mutations in the converter domain of MYH7 were compared with 409 patients described in the literature with mutations in the same region. Twenty-five mutations were evaluated (9 in our families including 3 novel (Ile730Asn, Asp717Gly and Arg719Pro)). Clinical diagnoses were hypertrophic (n=407), dilated (n=15), non-compaction (n=4) and restrictive (n=5) cardiomyopathies, unspecified cardiomyopathy (n=11), sudden death (n=50) and 35 healthy carriers. One hundred eighty-four had events (cardiovascular death or transplant). Median event-free survival was 50±2 years in our patients and 53±3 years in the literature (p=0.27). There were significant differences in the outcome between mutation: Ile736Thr had fewer events than other mutations in the region (p=0.01), while Arg719Gln (p&lt;0.01) had reduced event-free survival. Mutations in the converter region are generally associated with adverse prognosis although there are differences between mutations. The identification of a mutation in this particular region provides important prognostic information that should be considered in the clinical management of affected patients."	"MicroRNA Transcriptome Profile Analysis in Porcine Muscle and the Effect of miR-143 on the MYH7 Gene and Protein. Porcine skeletal muscle fibres are classified based on their different physiological and biochemical properties. Muscle fibre phenotype is regulated by several independent signalling pathways, including the mitogen-activated protein kinase (MAPK), nuclear factor of activated T cells (NFAT), myocyte enhancer factor 2 (MEF2) and peroxisome proliferator-activated receptor (PPAR) signalling pathways. MicroRNAs are non-coding small RNAs that regulate many biological processes. However, their function in muscle fibre type regulation remains unclear. The aim of our study was to identify miRNAs that regulate muscle fibre type during porcine growth to help understand the miRNA regulation mechanism of fibre differentiation. We performed Solexa/Illumina deep sequencing for the microRNAome during 3 muscle growth stages (63, 98 and 161 d). In this study, 271 mature miRNAs and 243 pre-miRNAs were identified. We detected 472 novel miRNAs in the muscle samples. Among the mature miRNAs, there are 23 highest expression miRNAs (over 10,000 RPM), account for 85.3% of the total counts of mature miRNAs., including 10 (43.5%) muscle-related miRNAs (ssc-miR-133a-3p, ssc-miR-486, ssc-miR-1, ssc-miR-143-3p, ssc-miR-30a-5p, ssc-miR-181a, ssc-miR-148a-3p, ssc-miR-92a, ssc-miR-21, ssc-miR-126-5p). Particularly, both ssc-miR-1 and ssc-miR-133 belong to the MyomiRs, which control muscle myosin content, myofibre identity and muscle performance. The involvement of these miRNAs in muscle fibre phenotype provides new insight into the mechanism of muscle fibre regulation underlying muscle development. Furthermore, we performed cell transfection experiment. Overexpression/inhibition of ssc-miR-143-3p in porcine skeletal muscle satellite cell induced an/a increase/reduction of the slow muscle fibre gene and protein (MYH7), indicating that miR-143 activity regulated muscle fibre differentiate in skeletal muscle. And it regulate MYH7 through the HDAC4-MEF2 pathway."	"Hypertrophic cardiomyopathy and left ventricular non-compaction: Different manifestations of the same cardiomyopathy spectrum? NA"	"Targeted next-generation sequencing (NGS) of nine candidate genes with custom AmpliSeq in patients and a cardiomyopathy risk group. Hypertrophic cardiomyopathy is a common genetic cardiac disease. Prevention and early diagnosis of this disease are very important. Because of the large number of causative genes and the high rate of mutations involved in the pathogenesis of this disease, traditional methods of early diagnosis are ineffective. We developed a custom AmpliSeq panel for NGS sequencing of the coding sequences of ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNI3, TNNT2, TPM1, and CASQ2. A genetic analysis of student cohorts (with and without cardiomyopathy risk in their medical histories) and patients with cardiomyopathies was performed. For the statistical and bioinformatics analysis, Polyphen2, SIFT, SnpSift and PLINK software were used. To select genetic markers in the patients with cardiomyopathy and in the students of the high risk group, four additive models were applied. Our AmpliSeq custom panel allowed us to efficiently explore targeted sequences. Based on the score analysis, we detected three substitutions in the MYBPC3 and CASQ2 genes and six combinations between loci in the MYBPC3, MYH7 and CASQ2 genes that were responsible for cardiomyopathy risk in our cohorts. We also detected substitutions in the TNNT2 gene that can be considered as protective against cardiomyopathy. We used NGS with AmpliSeq libraries and Ion PGM sequencing to develop improved predictive information for patients at risk of cardiomyopathy."	"Human umbilical cord blood-derived mononuclear cells improve murine ventricular function upon intramyocardial delivery in right ventricular chronic pressure overload. Stem cell therapy has emerged as potential therapeutic strategy for damaged heart muscles. Umbilical cord blood (UCB) cells are the most prevalent stem cell source available, yet have not been fully tested in cardiac regeneration. Herein, studies were performed to evaluate the cardiovascular safety and beneficial effect of mononuclear cells (MNCs) isolated from human umbilical cord blood upon intramyocardial delivery in a murine model of right ventricle (RV) heart failure due to pressure overload. UCB-derived MNCs were delivered into the myocardium of a diseased RV cardiac model. Pulmonary artery banding (PAB) was used to produce pressure overload in athymic nude mice that were then injected intramyocardially with UCB-MNCs (0.4×10^6 cells/heart). Cardiac functions were then monitored by telemetry, echocardiography, magnetic resonance imaging (MRI) and pathologic analysis of heart samples to determine the ability for cell-based repair. The cardio-toxicity studies provided evidence that UCB cell transplantation has a safe therapeutic window between 0.4 to 0.8 million cells/heart without altering QT or ST-segments or the morphology of electrocardiograph waves. The PAB cohort demonstrated significant changes in RV chamber dilation and functional defects consistent with severe pressure overload. Using cardiac MRI analysis, UCB-MNC transplantation in the setting of PAB demonstrated an improvement in RV structure and function in this surgical mouse model. The RV volume load in PAB-only mice was 24.09±3.9 compared to 11.05±2.09 in the cell group (mm3, P-value&lt;0.005). The analysis of pathogenic gene expression (BNP, ANP, Acta1, Myh7) in the cell-transplanted group showed a significant reversal with respect to the diseased PAB mice with a robust increase in cardiac progenitor gene expression such as GATA4, Kdr, Mef2c and Nkx2.5. Histological analysis indicated significant fibrosis in the RV in response to PAB that was reduced following UCB-MNC's transplantation along with concomitant increased Ki-67 expression and CD31 positive vessels as a marker of angiogenesis within the myocardium. These findings indicate that human UCB-derived MNCs promote an adaptive regenerative response in the right ventricle upon intramyocardial transplantation in the setting of chronic pressure overload heart failure."	"l-Arginine Attenuates Cardiac Dysfunction, But Further Down-Regulates α-Myosin Heavy Chain Expression in Isoproterenol-Induced Cardiomyopathy. In view of previously reported increased capacity for nitric oxide production, we suggested that l-arginine (ARG), the nitric oxide synthase (NOS) substrate, supplementation would improve cardiac function in isoproterenol (ISO)-induced heart failure. Male Wistar rats were treated with ISO for 8 days (5 mg/kg/day, i.p.) or vehicle. ARG was given to control (ARG) and ISO-treated (ISO+ARG) rats in water (0.4 g/kg/day). ISO administration was associated with 40% mortality, ventricular hypertrophy, decreased heart rate, left ventricular dysfunction, fibrosis and ECG signs of ischaemia. RT-PCR showed increased mRNA levels of cardiac hypertrophy marker atrial natriuretic peptide, but not BNP, decreased expression of myosin heavy chain isoform MYH6 and unaltered expression of pathological MYH7. ISO increased the protein levels of endothelial nitric oxide synthase, but at the same time it markedly up-regulated mRNA and protein levels of gp91phox, a catalytical subunit of superoxide-producing NADPH oxidase. Fibrosis was markedly increased by ISO. ARG treatment moderately ameliorated left ventricular dysfunction, but was without effect on cardiac hypertrophy and fibrosis. Combination of ISO and ARG led to a decrease in cav-1 expression, a further increase in MYH7 expression and a down-regulation of MYH6 that inversely correlated with gp91phox mRNA levels. Although ARG, at least partially, improved ISO-impaired basal left ventricular systolic function, it failed to reduce cardiac hypertrophy, fibrosis, oxidative stress and mortality. The protection of contractile performance might be related to increased capacity for nitric oxide production and the up-regulation of MYH7 which may compensate for the marked down-regulation of the major MYH6 isoform. "	"Dextrocardia and symmetric hypertrophic cardiomyopathy with multiple mutations of genes encoding the sarcomere proteins. NA"	"Alterations in the expression of genes related to contractile function and hypertrophy of the left ventricle in chronically paced patients from the right ventricular apex. Long-term right ventricular apical (RVA) pacing may lead to left ventricular (LV) remodelling and heart failure. This study assessed changes in the expression of genes regulating LV contractile function and hypertrophy, after permanent RVA pacing and investigated whether such changes proceed or even predict LV remodelling. We enrolled 52 consecutive patients (age 79.1 ± 7.7 years, 34 males) who underwent pacemaker implantation for bradycardic indications: Group A, 24 individuals with atrioventricular conduction disturbances and group B, 28 patients with sinus node disease. In group A, peripheral blood mRNA levels of gene sarcoplasmic reticulum calcium ATPase decreased at 3, 6, and 12 months' follow-up, while α-myosin heavy chain (MHC) decreased and β-MHC increased until 6 months follow-up. In this group, 25% of patients demonstrated significant LV remodelling. At 4 years, LV end-systolic diameter increased from 29.67 ± 3.39 mm at baseline to 35.38 ± 4.22 mm, LV end-diastolic diameter increased from 50 ± 4.95 to 56.71 ± 5.52 mm, and ejection fraction declined from 63.04 ± 10.22 to 52.83 ± 10.81%. Early alterations in gene expression were associated with a deterioration in LV function and geometry that became apparent months later. In group B, echocardiographic indexes and mRNA levels of the evaluated genes demonstrated no statistically significant changes. Permanent RVA pacing in patients with preserved ejection fraction is associated with alterations in the expression of genes regulating LV contractile function and hypertrophy, measured in the peripheral blood. These alterations are traceable at an early stage, before echocardiographic changes are apparent and are associated with LV remodelling that becomes evident in the long term."	"Dual LQT1 and HCM phenotypes associated with tetrad heterozygous mutations in KCNQ1, MYH7, MYLK2, and TMEM70 genes in a three-generation Chinese family. Hypertrophic cardiomyopathy (HCM) mainly results from autosomal-dominant inherited single heterozygous mutations in cardiac sarcomere genes. Contributions of multiple gene mutations to disease heterogeneity in a three-generation family were investigated. Clinical, electrocardiographic (ECG), and echocardiographic examination in members of a three-generation Chinese family was followed by exon and boarding intron analysis of 96 genes in the proband using second-generation sequencing. The identified mutations were confirmed by bi-directional Sanger sequencing in all family members and 300 healthy controls. Four missense mutations were detected in the family. These were two novel MYH7-H1717Q and MYLK2-K324E mutations accompanied by the KCNQ1-R190W and TMEM70-I147T mutations. The proband carried all four mutations and showed overlapping HCM and LQT1 phenotypes. Five family members each carried two mutations. Subject II-2 only carried TMEM70-I147T. MYH7-H1717Q and TMEM70-I147T came from the paternal side, whereas KCNQ1-R190W and MYLK2-K324E came from the maternal side. Left ventricle mass indices in MYH7-H1717Q carriers were significantly higher than in non-H1717Q carriers (90.05 ± 7.33 g/m(2), 63.20 ± 4.53 g/m(2), respectively, P &lt; 0.01). Four KCNQ1-R190W carriers showed QTc intervals that were significantly more prolonged than those in non-R190W carriers (472.25 ± 16.18 and 408.50 ± 7.66 ms, respectively, P &lt; 0.05). All MYLK2-K324E carriers showed inverted ECG T waves. The subject with only a TMEM70-I147T mutation showed normal ECG and echocardiographs, suggesting that this had less pathological effects at least in this family. We demonstrate dual LQT1 and HCM phenotypes in this multiple LQT1- and HCM-related gene mutation carrier family for the first time and suggest that LQT-related gene mutations associate with QT interval prolongation and/or arrhythmia in HCM patients."	"3,3'-Diindolylmethane attenuates cardiac H9c2 cell hypertrophy through 5'-adenosine monophosphate-activated protein kinase-α. 3,3'-Diindolylmethane (DIM) is the major product of the acid-catalyzed condensation of indole-3-carbinol (I3C), a component of extracts of Brassica food plants. Numerous studies have suggested that DIM has several beneficial biological activities, including elimination of free radicals, antioxidant and anti-angiogenic effects and activation of apoptosis of various tumor cells. In the present study, an in vitro model was established, using 1 µM angiotensin II (Ang II) in cultured rat cardiac H9c2 cells, to observe the effects of DIM on cardiac hypertrophy. Following 24 h stimulation with DIM (1, 5, and 10 µM) with or without Ang II, cells were characterized by immunofluorescence to analyze cardiac α-actinin expression. Cardiomyocyte hypertrophy and molecular markers of cardiac hypertrophy were assessed by quantitative polymerase chain reaction. Atrial natriuretic peptide, brain natriuretic peptide and myosin heavy chain β mRNA expression were induced by Ang II in H9c2 cells treated with the optimal concentration of DIM for 6, 12, and 24 h. The levels of phosphorylated and total proteins of the 5' AMP-activated protein kinase α (AMPKα)/mitogen-activated protein kinase (MAPK)/mechanistic target of rapamycin (mTOR) signaling pathways in H9c2 cells treated with DIM for 0, 15, 30, and 60 min induced by Ang II were determined by western blot analysis. The results showed that DIM attenuated cellular hypertrophy in vitro, enhanced the phosphorylation of AMPKα and inhibited the MAPK‑mTOR signaling pathway in response to hypertrophic stimuli."	"New cardiac and skeletal protein aggregate myopathy associated with combined MuRF1 and MuRF3 mutations. Protein aggregate myopathies (PAMs) define muscle disorders characterized by protein accumulation in muscle fibres. We describe a new PAM in a patient with proximal muscle weakness and hypertrophic cardiomyopathy, whose muscle fibres contained inclusions containing myosin and myosin-associated proteins, and aberrant distribution of microtubules. These lesions appear as intact A- and M-bands lacking thin filaments and Z-discs. These features differ from inclusions in myosin storage myopathy (MSM), but are highly similar to those in mice deficient for the muscle-specific RING finger proteins MuRF1 and MuRF3. Sanger sequencing excluded mutations in the MSM-associated gene MYH7 but identified mutations in TRIM63 and TRIM54, encoding MuRF1 and MuRF3, respectively. No mutations in other potentially disease-causing genes were identified by Sanger and whole exome sequencing. Analysis of seven family members revealed that both mutations segregated in the family but only the homozygous TRIM63 null mutation in combination with the heterozygous TRIM54 mutation found in the proband caused the disease phenotype. Both MuRFs are microtubule-associated proteins localizing to sarcomeric M-bands and Z-discs. They are E3 ubiquitin ligases that play a role in degradation of sarcomeric proteins, stabilization of microtubules and myogenesis. Lack of ubiquitin and the 20S proteasome subunit in the inclusions found in the patient suggested impaired turnover of thick filament proteins. Disruption of microtubules in cultured myotubes was rescued by transient expression of wild-type MuRF1. The unique features of this novel myopathy point to defects in homeostasis of A-band proteins in combination with instability of microtubules as cause of the disease. "	"Heterogeneous activation of a slow myosin gene in proliferating myoblasts and differentiated single myofibers. Each skeletal muscle contains a fixed ratio of fast and slow myofibers that are distributed in a stereotyped pattern to achieve a specific motor function. How myofibers are specified during development and regeneration is poorly understood. Here we address this question using transgenic reporter mice that indelibly mark the myofiber lineages based on activation of fast or slow myosin. Lineage tracing indicates that during development all muscles have activated the fast myosin gene Myl1, but not the slow myosin gene Myh7, which is activated in all slow but a subset of fast myofibers. Similarly, most nascent myofibers do not activate Myh7 during fast muscle regeneration, but the ratio and pattern of fast and slow myofibers are restored at the completion of regeneration. At the single myofiber level, most mature fast myofibers are heterogeneous in nuclear composition, manifested by mosaic activation of Myh7. Strikingly, Myh7 is activated in a subpopulation of proliferating myoblasts that co-express the myogenic progenitor marker Pax7. When induced to differentiate, the Myh7-activated myoblasts differentiate more readily than the non-activated myoblasts, and have a higher tendency, but not restricted, to become slow myotubes. Together, our data reveal significant nuclear heterogeneity within a single myofiber, and challenge the conventional view that myosin genes are only expressed after myogenic differentiation. These results provide novel insights into the regulation of muscle fiber type specification. "	"MicroRNA-223 displays a protective role against cardiomyocyte hypertrophy by targeting cardiac troponin I-interacting kinase. MicroRNAs play regulatory role in cardiovascular disease. MicroRNA-223 (miR-223) was found to be expressed abundantly in myocardium. TNNI3K, a novel cardiac troponin I (cTnI)-interacting and cardiac hypertrophy related kinase, is computationally predicted as a potential target of miR-223. This study was designed to investigate the cellular and molecular effects of miR-223 on cardiomyoctye hypertrophy, focusing on the role of TNNI3K. Neonatal rat cardiomyocytes (CMs) were cultured, and CMs hypertrophy was induced by endothelin-1 (ET-1). In vivo cardiac hypertrophy was induced by transverse aorta constriction (TAC) in rats. Expression of miR-223 in CMs and myocardium was detected by real-time PCR (RT-PCR). MiR-223 and TNNI3K were overexpressed in CMs via chemically modifed sense RNA (miR-223 mimic) transfection or recombinant adenovirus infection, respectively. Cell size was measured by surface area calculation using fluorescence microscopy after anti-α-actinin staining. Expression of hypertrophy-related genes was detected by RT-PCR. The protein expression of TNNI3K and cTnI was determined by Western blots. Luciferase assay was employed to confirm the direct binding of miR-223 to the 3'UTR of TNNI3K mRNA. Intracellular calcium was measured by sensitive fluorescent indicator (Furo-2). Video-based edge detection system was employed to measure cardiomyocyte contractility. MiR-223 was downregulated in ET-1 induced hypertrophic CMs and in hypertrophic myocardium compared with respective controls. MiR-223 overexpression in CMs alleviated ET-1 induced hypertrophy, evidenced by smaller cell surface area and downregulated ANP, α-actinin, Myh6 and Myh7 expression. Luciferase reporter gene assay showed that TNNI3K serves as a direct target gene of miR-223. In miR-223-overexpressed CMs, the protein expression of TNNI3K was significantly downregulated. MiR-223 overexpression also rescued the upregulated TNNI3K expression in hypertrophic CMs. Furthermore, cTnI phosphorylation was downregulated post miR-223 overexpression. Ad.rTNNI3K increased intracellular Ca(2+) concentrations and cell shortening in CMs, while miR-223 overexpression significantly rescued these hypertrophic effects. By direct targeting TNNI3K, miR-223 could suppress CMs hypertrophy via downregulating cTnI phosphorylation, reducing intracellular Ca(2+) and contractility of CMs. miR-223 / TNNI3K axis may thus be major players of CMs hypertrophy."	"Experimental heart failure modelled by the cardiomyocyte-specific loss of an epigenome modifier, DNMT3B. Differential DNA methylation exists in the epigenome of end-stage failing human hearts but whether it contributes to disease progression is presently unknown. Here, we report that cardiac specific deletion of Dnmt3b, the predominant DNA methyltransferase in adult mouse hearts, leads to an accelerated progression to severe systolic insufficiency and myocardial thinning without a preceding hypertrophic response. This was accompanied by widespread myocardial interstitial fibrosis and myo-sarcomeric disarray. By targeted candidate gene quantitative RT-PCR, we discovered an over-activity of cryptic splice sites in the sarcomeric gene Myh7, resulting in a transcript with 8 exons missing. Moreover, a region of differential methylation overlies the splice site locus in the hearts of the cardiac-specific conditional knockout (CKO) mice. Although abundant and complex forms of alternative splice variants have been reported in diseased hearts and the contribution of each remains to be understood in further detail, our results demonstrate for the first time that a link may exist between alternative splicing and the cardiac epigenome. In particular, this gives the novel evidence whereby the loss of an epigenome modifier promotes the development and progression of heart disease. "	"miR-30c Mediates Upregulation of Cdc42 and Pak1 in Diabetic Cardiomyopathy. Cardiac hypertrophy and myocardial fibrosis significantly contribute to the pathogenesis of diabetic cardiomyopathy (DCM). Altered expression of several genes and their regulation by microRNAs has been reported in hypertrophied failing hearts. This study aims to examine the role of Cdc42, Pak1, and miR-30c in the pathogenesis of cardiac hypertrophy in DCM. DCM was induced in Wistar rats by low-dose streptozotocin-high-fat diet for 12 weeks. Cardiac expression of Cdc42, Pak1 and miR-30c, and hypertrophy markers (ANP and β-MHC) was studied in DCM vs control rats and in high-glucose (HG)-treated H9c2 cardiomyocytes. Diabetic rats showed cardiomyocyte hypertrophy, increased heart-to-body weight ratio, and an increased expression of ANP and β-MHC. Cardiac expression of Cdc42 and Pak1 genes was increased in diabetic hearts and in HG-treated cardiomyocytes. miR-30c was identified to target Cdc42 and Pak1 genes, and cardiac miR-30c expression was found to be decreased in DCM rats, patients with DCM, and in HG-treated cardiomyocytes. miR-30c overexpression decreased Cdc42 and Pak1 genes and attenuated HG-induced cardiomyocyte hypertrophy, whereas miR-30c inhibition increased Cdc42 and Pak1 gene expression and myocyte hypertrophy in HG-treated cardiomyocytes. Downregulation of miR-30c mediates prohypertrophic effects of hyperglycemia in DCM by upregulation of Cdc42 and Pak1 genes."	"Possible Biomarkers for the Early Detection of HIV-associated Heart Diseases: A Proteomics and Bioinformatics Prediction. The frequency of cardiovascular disorders is increasing in HIV-infected individuals despite a significant reduction in the viral load by antiretroviral therapies (ART). Since the CD4 + T-cells are responsible for the viral load as well as immunological responses, we hypothesized that chronic HIV-infection of T-cells produces novel proteins/enzymes that cause cardiac dysfunctions. To identify specific factors that might cause cardiac disorders without the influence of numerous cofactors produced by other pathogenic microorganisms that co-inhabit most HIV-infected individuals, we analyzed genome-wide proteomes of a CD4 + T-cell line at different stages of HIV replication and cell growth over &gt; 6 months. Subtractive analyses of several hundred differentially regulated proteins from HIV-infected and uninfected counterpart cells and comparisons with proteins expressed from the same cells after treating with the antiviral drug Zidovudine/AZT and inhibiting virus replication, identified a well-coordinated network of 12 soluble/diffusible proteins in HIV-infected cells. Functional categorization, bioinformatics and statistical analyses of each protein predicted that the expression of cardiac-specific Ca2 + kinase together with multiple Ca2 + release channels causes a sustained overload of Ca2 + in the heart which induces fetal/cardiac myosin heavy chains (MYH6 and MYH7) and a myosin light-chain kinase. Each of these proteins has been shown to cause cardiac stress, arrhythmia, hypertrophic signaling, cardiomyopathy and heart failure (p = 8 × 10(- 11)). Translational studies using the newly discovered proteins produced by HIV infection alone would provide additional biomarkers that could be added to the conventional markers for an early diagnosis and/or development of specific therapeutic interventions for heart diseases in HIV-infected individuals. "	"Two families with MYH7 distal myopathy associated with cardiomyopathy and core formations. Laing distal myopathy is caused by MYH7 gene mutations. Multiple families have been reported with varying patterns of skeletal and cardiac involvement as well as histopathological findings. We report 2 families with p.Glu1508del mutation with detailed electrophysiological and muscle pathology findings. All patients displayed the classic phenotype with weakness starting in the anterior compartment of the legs with a &quot;hanging great toe.&quot; It was followed by finger extensors involvement, relatively sparing the extensor indicis proprius, giving the appearance of a &quot;pointing index&quot; finger. All the affected individuals had a dilated cardiomyopathy and core formations on muscle biopsy. Unexpectedly, neurogenic changes were also observed in some individuals. Both families were initially misdiagnosed with either central core disease or hereditary neuropathy. Recognizing the classic phenotype, screening for cardiac involvement that may be clinically silent, and determining the mode of inheritance help with selecting the appropriate genetic test."	"Homozygous MYH7 R1820W mutation results in recessive myosin storage myopathy: scapuloperoneal and respiratory weakness with dilated cardiomyopathy. Myosin storage myopathy (MSM) is a protein aggregate myopathy caused by the accumulation of myosin in muscle fibres and results from MYH7 mutation. Although MYH7 mutation is also an established cause of variable cardiomyopathy with or without skeletal myopathy, cardiomyopathy with MSM is a rare combination. Here, we update the clinical findings in the two brothers that we previously reported as having recessively inherited MSM characterized by scapuloperoneal distribution of weakness and typical hyaline-like bodies in type 1 muscle fibres. One of the patients, weak from childhood but not severely symptomatic until 28 years of age, had an unusual combination of MSM, severe dilated cardiomyopathy, and respiratory impairment at the age of 44 years. We identified homozygous missense mutation c.5458C&gt;T (p.R1820W) in exon 37 in these patients as the second recessive MYH7 mutation reported to date. "	"Chronic urocortin 2 administration improves cardiac function and ameliorates cardiac remodeling after experimental myocardial infarction. The impact of chronic urocortin 2 (Ucn2) treatment after myocardial infarction (MI) has not previously been investigated. In this study, we examined the effects of 30-day Ucn2 administration (415 μg·kg·d SC per day) in mice post-MI. Compared with surgical sham + vehicle controls (n = 10), MI + vehicle animals (n = 10) after 30 days demonstrated decreased ejection fraction (75.6 ± 1.2 vs. 43.6% ± 0.8%, P &lt; 0.001) and fractional shortening (38.20 ± 0.83 vs. 18.4% ± 0.54%, P &lt; 0.001) in association with increased heart weight-to-body weight ratio (4.57 ± 0.25 vs. 5.29 ± 0.18, P &lt; 0.01), left ventricular (LV) mass (91 ± 7 vs. 126 ± 8 mg, P &lt; 0.01), LV internal diameters at both systole (1.91 ± 0.14 vs. 3.45 ± 0.09 mm, P &lt; 0.001) and diastole (3.14 ± 0.15 vs. 4.25 ± 0.10 mm, P &lt; 0.001), LV end systolic volumes (0.02 ± 0.01 vs. 0.11 ± 0.01 mL, P &lt; 0.001), and ventricular collagen 1 and β-myosin heavy chain gene expression. Compared with MI + vehicle mice, MI + Ucn2 animals (n = 10) exhibited significantly reduced infarct size (4.00 ± 0.39 vs. 1.83 ± 0.44 mm, P &lt; 0.01), heart weight-to-body weight ratio (4.75 ± 0.19, P = 0.06), LV mass (101 ± 6 mg, P &lt; 0.01), LV internal diameters (systole 2.61 ± 0.09 mm, P &lt; 0.001; diastole 3.78 ± 0.09 mm, P &lt; 0.001), and end systolic volumes (0.14 ± 0.02 mL, P &lt; 0.01) in conjunction with improved ejection fraction (65.2% ± 0.9%, P &lt; 0.001) and fractional shortening (18.4 ± 0.5 vs. 30.5% ± 0.5%, P &lt; 0.001). Ucn2 treatment also decreased collagen 1 and β-myosin heavy chain expression. In conclusion, chronic Ucn2 treatment significantly improves cardiovascular function and attenuates cardiac injury and remodeling in experimental MI."	"Next-generation sequencing-based genome diagnostics across clinical genetics centers: implementation choices and their effects. Implementation of next-generation DNA sequencing (NGS) technology into routine diagnostic genome care requires strategic choices. Instead of theoretical discussions on the consequences of such choices, we compared NGS-based diagnostic practices in eight clinical genetic centers in the Netherlands, based on genetic testing of nine pre-selected patients with cardiomyopathy. We highlight critical implementation choices, including the specific contributions of laboratory and medical specialists, bioinformaticians and researchers to diagnostic genome care, and how these affect interpretation and reporting of variants. Reported pathogenic mutations were consistent for all but one patient. Of the two centers that were inconsistent in their diagnosis, one reported to have found 'no causal variant', thereby underdiagnosing this patient. The other provided an alternative diagnosis, identifying another variant as causal than the other centers. Ethical and legal analysis showed that informed consent procedures in all centers were generally adequate for diagnostic NGS applications that target a limited set of genes, but not for exome- and genome-based diagnosis. We propose changes to further improve and align these procedures, taking into account the blurring boundary between diagnostics and research, and specific counseling options for exome- and genome-based diagnostics. We conclude that alternative diagnoses may infer a certain level of 'greediness' to come to a positive diagnosis in interpreting sequencing results. Moreover, there is an increasing interdependence of clinic, diagnostics and research departments for comprehensive diagnostic genome care. Therefore, we invite clinical geneticists, physicians, researchers, bioinformatics experts and patients to reconsider their role and position in future diagnostic genome care. "	"Myotubes from lean and severely obese subjects with and without type 2 diabetes respond differently to an in vitro model of exercise. Exercise improves insulin sensitivity and oxidative capacity in skeletal muscles. However, the effect of exercise on substrate oxidation is less clear in obese and type 2 diabetic subjects than in lean subjects. We investigated glucose and lipid metabolism and gene expression after 48 h with low-frequency electrical pulse stimulation (EPS), as an in vitro model of exercise, in cultured myotubes established from lean nondiabetic subjects and severely obese subjects (BMI ≥ 40 kg/m(2)) with and without type 2 diabetes. EPS induced an increase in insulin sensitivity but did not improve lipid oxidation in myotubes from severely obese subjects. Thus, EPS-induced increases in insulin sensitivity and lipid oxidation were positively and negatively correlated to BMI of the subjects, respectively. EPS enhanced oxidative capacity of glucose in myotubes from all subjects. Furthermore, EPS reduced mRNA expression of slow fiber-type marker (MYH7) in myotubes from diabetic subjects; however, the protein expression of this marker was not significantly affected by EPS in either of the donor groups. On the contrary, mRNA levels of interleukin-6 (IL-6) and IL-8 were unaffected by EPS in myotubes from diabetic subjects, while IL-6 mRNA expression was increased in myotubes from nondiabetic subjects. EPS-stimulated mRNA expression levels of MYH7, IL-6, and IL-8 correlated negatively with subjects' HbA1c and/or fasting plasma glucose, suggesting an effect linked to the diabetic phenotype. Taken together, these data show that myotubes from different donor groups respond differently to EPS, suggesting that this effect may reflect the in vivo characteristics of the donor groups."	"Coexistence of Digenic Mutations in Both Thin (TPM1) and Thick (MYH7) Filaments of Sarcomeric Genes Leads to Severe Hypertrophic Cardiomyopathy in a South Indian FHCM. Mutations in sarcomeric genes are the leading cause for cardiomyopathies. However, not many genetic studies have been carried out on Indian cardiomyopathy patients. We performed sequence analyses of a thin filament sarcomeric gene, α-tropomyosin (TPM1), in 101 hypertrophic cardiomyopathy (HCM) patients and 147 dilated cardiomyopathy (DCM) patients against 207 ethnically matched healthy controls, revealing 13 single nucleotide polymorphisms (SNPs). Of these, one mutant, S215L, was identified in two unrelated HCM cases-patient #1, aged 44, and patient #2, aged 65-and was cosegregating with disease in these families as an autosomal dominant trait. In contrast, S215L was completely absent in 147 DCM and 207 controls. Patient #1 showed a more severe disease phenotype, with poor prognosis and a family history of sudden cardiac death, than patient #2. Therefore, these two patients and the family members positive for S215L were further screened for variations in MYH7, MYBPC3, TNNT2, TNNI3, MYL2, MYL3, and ACTC. Interestingly, two novel thick filaments, D896N (homozygous) and I524K (heterozygous) mutations, in the MYH7 gene were identified exclusively in patient #1 and his family members. Thus, we strongly suggest that the coexistence of these digenic mutations is rare, but leads to severe hypertrophy in a South Indian familial hypertrophic cardiomyopathy (FHCM)."	"Cardiac transcriptome and dilated cardiomyopathy genes in zebrafish. Genetic studies of cardiomyopathy and heart failure have limited throughput in mammalian models. Adult zebrafish have been recently pursued as a vertebrate model with higher throughput, but genetic conservation must be tested. We conducted transcriptome analysis of zebrafish heart and searched for fish homologues of 51 known human dilated cardiomyopathy-associated genes. We also identified genes with high cardiac expression and genes with differential expression between embryonic and adult stages. Among tested genes, 30 had a single zebrafish orthologue, 14 had 2 homologues, and 5 had ≥3 homologues. By analyzing the expression data on the basis of cardiac abundance and enrichment hypotheses, we identified a single zebrafish gene for 14 of 19 multiple-homologue genes and 2 zebrafish homologues of high priority for ACTC1. Of note, our data suggested vmhc and vmhcl as functional zebrafish orthologues for human genes MYH6 and MYH7, respectively, which are established molecular markers for cardiac remodeling. Most known genes for human dilated cardiomyopathy have a corresponding zebrafish orthologue, which supports the use of zebrafish as a conserved vertebrate model. Definition of the cardiac transcriptome and fetal gene program will facilitate systems biology studies of dilated cardiomyopathy in zebrafish."	"A rare mutation in MYH7 gene occurs with overlapping phenotype. Mutations in the beta-myosin heavy chain gene (MYH7) cause different muscle disorders. The specific molecular pathobiological processes that cause these different phenotypes remains unexplained. We describe three members of a family with an autosomal dominant mutation in the distal rod of MYH7 [c.5401G&gt; A (p.Glu1801Lys)] displaying a complex phenotype characterized by Laing Distal Myopathy like phenotype, left ventricular non compaction cardiomyopathy and Fiber Type Disproportion picture at muscle biopsy. We suggest that this overlapping presentation confirm the phenotypic variability of MYH7 myopathy and may be helpful to improve the genotype phenotype correlation. "	"Laing distal myopathy pathologically resembling inclusion body myositis. Mutations in MYH7 cause autosomal dominant Laing distal myopathy. We present a family with a previously reported deletion (c.5186_5188delAGA, p.K1729del). Muscle pathology in one family member was characterized by an inflammatory myopathy with rimmed vacuoles, increased MHC Class I expression, and perivascular and endomysial muscle inflammation comprising CD3(+), CD4(+), CD8(+), and CD68(+) inflammatory cells. Interestingly, this biopsy specimen contained TDP-43, p62, and SMI-31-positive protein aggregates typical of inclusion body myositis. These findings should alert physicians to the possibility that patients with MYH7 mutations may have muscle biopsies showing pathologic findings similar to inclusion body myositis. "	"Ultrastructural maturation of human bone marrow mesenchymal stem cells-derived cardiomyocytes under alternative induction of 5-azacytidine. Adult cardiomyocytes lack the ability to proliferate and are unable to repair damaged heart tissue, therefore differentiation of stem cells to cardiomyocytes represents an exceptional opportunity to study cardiomyocytes in vitro and potentially provides a valuable source for replacing damaged tissue. However, characteristic maturity of the in vitro differentiated cardiomyocytes and methods to achieve it are yet to be optimized. In this study, differentiation of human bone marrow-mesenchymal stem cells (hBM-MSCs) into cardiomyocytes is accomplished and the process investigated ultrastructurally. The hBM-MSCs were alternatively treated with 5 μM of 5-azacytidine (5-aza) for 8 weeks resulting in differentiation to cardiomyocytes. Expressions of cardiomyocyte-specific genes [cardiac α-actinin, cardiac β-myosin heavy chain (MHC) and connexin-43] and proteins (cardiac α-actinin, cardiac troponin and connexin-43) were confirmed in a time-dependent manner from the first to the fifth weeks post-induction. Ultrastructural maturation of hBM-MSCs-derived cardiomyocyte (MSCs-CM) corresponded with increase in number and organization of myofilaments in cells over time. Starting from week five, organized myofibrils along with developing sarcomeres were detectable. Later on, MSCs-CM were characterized by the presence of sarcoplasmic reticulum, T-tubules and diads as cardiomyocytes connected to each other by intercalated disc-like structures. Here, we showed the potential of hBM-MSCs as a source for the production of cardiomyocytes and confirmed mature ultrastructural characteristics of these cells using our alternative incubation method. "	"Whole-exome sequencing identify a new mutation of MYH7 in a Chinese family with left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a genetic cardiomyopathy results from the failure of myocardial development during embryogenesis. Previous reports show that defects in TAZ, SCN5A, TPM1, YWHAE, MYH7, ACTC1 and TNNT2 are associated with LVNC. Sequencing of individuals using family-based design is a powerful approach for hereditary disease. In this study, we used whole-exome sequencing to screen potentially novel causal mutations in a Chinese Han family with LVNC. DNA from 3 individuals belonging to the same family was extracted and sequenced based on standard whole-exome sequencing protocol. The exome sequence data was analyzed using BWA, PICARD and Genome Analysis Toolkit (GATK v2.8). Non-silent single nucleotide variants (SNVs) were further selected if they exist in both LVNC patients and not in the health control. A web-based software Snv Prioritization via the INtegration of Genomic data (SPRING), was used to prioritize the causal SNV by calculating a q-value which indicates the statistical significance that a variant is causative for a query disease. From the LVNC family in which the mother and son were affected, a novel single nucleotide variant c.C1492G in exon 15 of MYH7 was identified probably to be the causal SNV of the family with P-value of 3.45E-05 and q-value of 4.65E-03 by SPRING. The SNV was predicted as deleterious in SIFT, PolyPhe2 and MutatioTaster database. Another 12 SNVs were also identified with P-value less than 0.05 by SPRING. A novel genetic variant in the coding regions of MYH7 gene was identified in a Chinese LVNC-family. The results support the previous evidence that MYH7 is a pathogenic gene for LVNC."	"A de novo mutation of the MYH7 gene in a large Chinese family with autosomal dominant myopathy. Laing distal myopathy (LDM) is an autosomal dominant myopathy that is caused by mutations in the slow/beta cardiac myosin heavy-chain (MYH7) gene. It has been recently reported that LDM presents with a wide range of clinical manifestations. We herein report a large Chinese family with autosomal dominant myopathy. The affected individuals in the family presented with foot drop in early childhood, along with progressive distal and proximal limb weakness. Their characteristic symptoms include scapular winging and scoliosis in the early disease phase and impairment of ambulation in the advanced phase. Although limb-girdle muscle dystrophy (LGMD) was suspected initially, a definite diagnosis could not be reached. As such, we performed linkage analysis and detected four linkage regions, namely 1q23.2-24.1, 14q11.2-12, 15q26.2-26.3 and 17q24.3. Through subsequent whole exome sequencing, we found a de novo p.K1617del causative mutation in the MYH7 gene and diagnosed the disease as LDM. This is the first LDM case in China. Our patients have severe clinical manifestations that mimic LGMD in comparison with the patients with the same mutation reported elsewhere. "	"Fnip1 regulates skeletal muscle fiber type specification, fatigue resistance, and susceptibility to muscular dystrophy. Mammalian skeletal muscle is broadly characterized by the presence of two distinct categories of muscle fibers called type I &quot;red&quot; slow twitch and type II &quot;white&quot; fast twitch, which display marked differences in contraction strength, metabolic strategies, and susceptibility to fatigue. The relative representation of each fiber type can have major influences on susceptibility to obesity, diabetes, and muscular dystrophies. However, the molecular factors controlling fiber type specification remain incompletely defined. In this study, we describe the control of fiber type specification and susceptibility to metabolic disease by folliculin interacting protein-1 (Fnip1). Using Fnip1 null mice, we found that loss of Fnip1 increased the representation of type I fibers characterized by increased myoglobin, slow twitch markers [myosin heavy chain 7 (MyH7), succinate dehydrogenase, troponin I 1, troponin C1, troponin T1], capillary density, and mitochondria number. Cultured Fnip1-null muscle fibers had higher oxidative capacity, and isolated Fnip1-null skeletal muscles were more resistant to postcontraction fatigue relative to WT skeletal muscles. Biochemical analyses revealed increased activation of the metabolic sensor AMP kinase (AMPK), and increased expression of the AMPK-target and transcriptional coactivator PGC1α in Fnip1 null skeletal muscle. Genetic disruption of PGC1α rescued normal levels of type I fiber markers MyH7 and myoglobin in Fnip1-null mice. Remarkably, loss of Fnip1 profoundly mitigated muscle damage in a murine model of Duchenne muscular dystrophy. These results indicate that Fnip1 controls skeletal muscle fiber type specification and warrant further study to determine whether inhibition of Fnip1 has therapeutic potential in muscular dystrophy diseases. "	"A novel MYH7 gene mutation in a fetus with left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a recently defined cardiomyopathy characterized by a pattern of prominent trabecular meshwork and deep intertrabecular recesses. LVNC is rarely described in fetal life, and a small number of cases have been reported. We report the first fetal case, to our knowledge, of LVNC associated with a novel mutation in the MYH7 gene (c.1625A&gt;C; p.Lys542Thr). This patient showed cardiomegaly on prenatal ultrasonographic examinations, with features indicating noncompaction of the myocardium apparent in the second trimester. This case highlights the importance of prenatal ultrasonography for the diagnosis of LVNC and suggests that abnormal myocardial development underlies the pathogenesis of LVNC."	"A minimal dose of electrically induced muscle activity regulates distinct gene signaling pathways in humans with spinal cord injury. Paralysis after a spinal cord injury (SCI) induces physiological adaptations that compromise the musculoskeletal and metabolic systems. Unlike non-SCI individuals, people with spinal cord injury experience minimal muscle activity which compromises optimal glucose utilization and metabolic control. Acute or chronic muscle activity, induced through electrical stimulation, may regulate key genes that enhance oxidative metabolism in paralyzed muscle. We investigated the short and long term effects of electrically induced exercise on mRNA expression of human paralyzed muscle. We developed an exercise dose that activated the muscle for only 0.6% of the day. The short term effects were assessed 3 hours after a single dose of exercise, while the long term effects were assessed after training 5 days per week for at least one year (adherence 81%). We found a single dose of exercise regulated 117 biological pathways as compared to 35 pathways after one year of training. A single dose of electrical stimulation increased the mRNA expression of transcriptional, translational, and enzyme regulators of metabolism important to shift muscle toward an oxidative phenotype (PGC-1α, NR4A3, IFRD1, ABRA, PDK4). However, chronic training increased the mRNA expression of specific metabolic pathway genes (BRP44, BRP44L, SDHB, ACADVL), mitochondrial fission and fusion genes (MFF, MFN1, MFN2), and slow muscle fiber genes (MYH6, MYH7, MYL3, MYL2). These findings support that a dose of electrical stimulation (∼10 minutes/day) regulates metabolic gene signaling pathways in human paralyzed muscle. Regulating these pathways early after SCI may contribute to reducing diabetes in people with longstanding paralysis from SCI. "	"A polymorphism in the porcine miR-208b is associated with microRNA biogenesis and expressions of SOX-6 and MYH7 with effects on muscle fibre characteristics and meat quality. MicroRNAs (miRNAs) encoded by the myosin heavy chain (MHC) genes are muscle-specific miRNAs (myomiRs) and regulate the expression of MHC isoforms in skeletal muscle. These miRNAs have been implicated in muscle fibre types and their characteristics by affecting the heterogeneity of myosin. In pigs, miR-208b and miR-499 are embedded in introns of MYH7 and MYH7b respectively. Here, we identified a novel single nucleotide polymorphism (SNP) in intron 30 of MYH7 by which porcine miR-208b is encoded. Based on the association study using a total of 487 pigs including Berkshire (n = 164), Landrace (n = 121) and Yorkshire (n = 202), the miR-208b SNP (g.17104G&gt;A) had significant effects on the proportions of types I and IIb fibre numbers (P &lt; 0.010) among muscle fibre characteristics and on drip loss (P = 0.012) in meat quality traits. Moreover, the SNP affected the processing of primary miR-208b into precursor miR-208b with a marginal trend towards significance (P = 0.053), thereby leading to significant changes in the levels of mature miR-208b (P = 0.009). These SNP-dependent changes in mature miR-208b levels were negatively correlated with the expression levels of its target gene, SOX-6 (P = 0.038), and positively associated with the expression levels of its host gene, MYH7 (P = 0.046). Taken together, our data suggest that the porcine miR-208b SNP differentially represses the expression of SOX-6 by regulating miRNA biogenesis, thereby affecting the expression of MYH7 and the traits of muscle fibre characteristics and meat quality. "	"Post-mortem Whole exome sequencing with gene-specific analysis for autopsy-negative sudden unexplained death in the young: a case series. Annually, thousands of sudden deaths in individuals under 35 years remain unexplained following comprehensive medico-legal autopsy. Previously, post-mortem genetic analysis by Sanger sequencing of four major cardiac channelopathy genes revealed that approximately one-fourth of these autopsy-negative sudden unexplained death in the young (SUDY) cases harbored an underlying mutation. However, there are now over 100 sudden death-predisposing cardiac channelopathy-, cardiomyopathy-, and metabolic disorder-susceptibility genes. Here, we set out to determine whether post-mortem whole exome sequencing (WES) is an efficient strategy to detect ultra-rare, potentially pathogenic variants. We performed post-mortem WES and gene-specific analysis of 117 sudden death-susceptibility genes for 14 consecutively referred Caucasian SUDY victims (average age at death 17.4 ± 8.6 years) to identify putative SUDY-associated mutations. On average, each SUDY case had 12,758 ± 2,016 non-synonymous variants, of which 79 ± 15 localized to these 117 genes. Overall, eight ultra-rare variants (seven missense, one in-frame insertion) absent in three publically available exome databases were identified in six genes (three in TTN, and one each in CACNA1C, JPH2, MYH7, VCL, RYR2) in seven of 14 cases (50 %). Of the seven missense alterations, two (T171M-CACNA1C, I22160T-TTN) were predicted damaging by three independent in silico tools. Although WES and gene-specific surveillance is an efficient means to detect rare genetic variants that might underlie the pathogenic cause of death, accurate interpretation of each variant is challenging. Great restraint and caution must be exercised otherwise families may be informed prematurely and incorrectly that the root cause has been found."	"Genotype-Phenotype Correlations in Apical Variant Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy is underscored by profound phenotypic and genotypic heterogeneity. Echocardiographically, hypertrophic cardiomyopathy can be categorized into four morphological subtypes: reverse curve, sigmoidal, neutral contour, and apical variant. Previous studies indicate that reverse curve hypertrophic cardiomyopathy is the strongest predictor of a positive genetic test. Little is known about the spectrum and prevalence of mutations and genotype-phenotype correlations in apical hypertrophic cardiomyopathy. Between 1999 and 2007, 1053 patients with the diagnosis of hypertrophic cardiomyopathy (60% male, age at diagnosis 44.4 ± 19 years) underwent sarcomeric genetic testing. Blinded to the genetic test results, each echocardiogram was scored for septal morphology and phenotyping was performed using the patient's medical record. Subset analysis was performed to elucidate the genotype, phenotype, and outcome of apical hypertrophic cardiomyopathy. Overall, 71 patients (7%) had apical hypertrophic cardiomyopathy on echocardiography (63% male, mean age 47.8 ± 15 years, mean left ventricular wall thickness 19.8 ± 6 mm). Left ventricular outflow tract obstruction was uncommon (seven patients; 10%). Eighteen patients (25%) had a positive genetic test, with the majority of mutations found in MYBPC3 (six; 35%) and MYH7 (six; 35%). Follow-up was available on 68 patients (96%) with a median age of 57.3 years (range 19.3-82 years). Mean follow-up was 5.5 years (range 0.1-18.2 years). There was no statistical difference between the occurrence rates of adverse events between genotype-positive and genotype-negative groups. In this largest cohort of patients with genetic testing for hypertrophic cardiomyopathy, &lt;10% exhibited apical disease. This least common subtype was associated with a negative genetic test result 75% of the time. In contrast to prior publications suggesting a predilection for ACTC1/TPM1 mutations in patients with apical hypertrophic cardiomyopathy, the two most common genotypes (MYBPC3-HCM and MYH7-HCM) remained most common among patients who had a positive genetic test."	"Activation of Foxo1 by insulin resistance promotes cardiac dysfunction and β-myosin heavy chain gene expression. Heart failure is a leading cause of morbidity and mortality in the USA and is closely associated with diabetes mellitus. The molecular link between diabetes mellitus and heart failure is incompletely understood. We recently demonstrated that insulin receptor substrates 1, 2 (IRS1, 2) are key components of insulin signaling and loss of IRS1 and IRS2 mediates insulin resistance, resulting in metabolic dysregulation and heart failure, which is associated with downstream Akt inactivation and in turn activation of the forkhead transcription factor Foxo1. To determine the role of Foxo1 in control of heart failure in insulin resistance and diabetes mellitus, we generated mice lacking Foxo1 gene specifically in the heart. Mice lacking both IRS1 and IRS2 in adult hearts exhibited severe heart failure and a remarkable increase in the β-isoform of myosin heavy chain (β-MHC) gene expression, whereas deletion of cardiac Foxo1 gene largely prevented the heart failure and resulted in a decrease in β-MHC expression. The effect of Foxo1 deficiency on rescuing cardiac dysfunction was also observed in db/db mice and high-fat diet mice. Using cultures of primary ventricular cardiomyocytes, we found that Foxo1 interacts with the promoter region of β-MHC and stimulates gene expression, mediating an effect of insulin that suppresses β-MHC expression. Our study suggests that Foxo1 has important roles in promoting diabetic cardiomyopathy and controls β-MHC expression in the development of cardiac dysfunction. Targeting Foxo1 and its regulation will provide novel strategies in preventing metabolic and myocardial dysfunction and influencing MHC plasticity in diabetes mellitus."	"Increased extent of myocardial fibrosis in genotyped hypertrophic cardiomyopathy with ventricular tachyarrhythmias. Occurrence of malignant ventricular tachyarrhythmias such as ventricular tachycardia and fibrillation (VT/VF) in hypertrophic cardiomyopathy (HCM) can be related to the extent of myocardial fibrosis. Although late gadolinium enhancement (LGE) on cardiovascular magnetic resonance (CMR) imaging has been used to detect myocardial fibrosis, few data exist regarding relationships between CMR-determined myocardial fibrosis and VT/VF in genotyped HCM populations. We retrospectively investigated whether the extent of LGE can be increased in HCM patients with VT/VF compared to those without VT/VF in the genotyped HCM population. We studied 35 HCM patients harboring sarcomere gene mutations (TNNI3=22, MYBPC3=12, MYH7=1) who underwent both CMR imaging and 24-h ambulatory electrocardiographic monitoring. VT/VF were identified in 6 patients (2 men, mean age 55.0 years). The extent of LGE was significantly increased in patients with VT/VF (n=6) compared with those without VT/VF (n=29) (18.6±14.4% vs. 8.3±11.4%, p=0.04), although the LGE extent was not an independent predictor for the occurrence of VT/VF. Applying a cut-off point ≥3.25%, episodes of VT/VF were identified with a sensitivity of 100%, specificity of 51.7%, positive predictive value of 30%, negative predictive value of 100%, and the area under the curve of 0.767 (95% confidence interval: 0.590-0.944). These results demonstrate that myocardial fibrosis determined by CMR imaging may be increased in genotyped HCM patients with episodes of VT/VF. A further prospective study will be needed to clarify the association between the LGE extent and arrhythmic events in HCM patients harboring sarcomere gene mutations."	"Ascribing novel functions to the sarcomeric protein, myosin binding protein H (MyBPH) in cardiac sarcomere contraction. Myosin binding protein H (MyBPH) is a protein of unknown function, which shares sequence and structural similarities with myosin binding protein C (cMyBPC), a protein frequently implicated in hypertrophic cardiomyopathy (HCM). Given the similarity between cMyBPC and MyBPH, we proposed that MyBPH, like cMyBPC, could be involved in HCM pathogenesis and we therefore sought to determine its function. We identified MyBPH-interacting proteins by using yeast two-hybrid (Y2H) analysis. The role of MyBPH and cMyBPC in cardiac cell contractility was analysed by measuring the planar cell surface area of differentiated H9c2 rat cardiomyocytes in response to β-adrenergic stress after siRNA knockdown of MyBPH and cMyBPC. Individual knockdown of either protein had no effect on cardiac contractility, while concurrent knockdowns reduced cardiac contractility. These proteins therefore functionally compensate for one another and are critical for cardiac contractility. We further show that both proteins co-localise with the autophagosomal membrane protein LC3, suggesting that both proteins are involved in autophagosomal membrane maturation processes. The results of this study ascribe novel functions to MyBPH, which may contribute to our understanding of its role in the sarcomere. This study provides evidence for a potential role of MyBPH in HCM, which warrants further investigation."	"Nonsense mutations in BAG3 are associated with early-onset dilated cardiomyopathy in French Canadians. Dilated cardiomyopathy (DCM) is a major cause of heart failure that may require heart transplantation. Approximately one third of DCM cases are familial. Next-generation DNA sequencing of large panels of candidate genes (ie, targeted sequencing) or of the whole exome can rapidly and economically identify pathogenic mutations in familial DCM. We recruited 64 individuals from 26 DCM families followed at the Montreal Heart Institute Cardiovascular Genetic Center and sequenced the whole exome of 44 patients and 2 controls. Both affected and unaffected family members underwent genotyping for segregation analysis. We found 2 truncating mutations in BAG3 in 4 DCM families (15%) and confirmed segregation with disease status by linkage (log of the odds [LOD] score = 3.8). BAG3 nonsense mutations conferred a worse prognosis as evidenced by a younger age of clinical onset (37 vs 48 years for carriers and noncarriers respectively; P = 0.037). We also found truncating mutations in TTN in 5 families (19%). Finally, we identified potential pathogenic mutations for 9 DCM families in 6 candidate genes (DSP, LMNA, MYH7, MYPN, RBM20, and TNNT2). We still need to confirm several of these mutations by segregation analysis. Screening an extended panel of 41 candidate genes allowed us to identify probable pathogenic mutations in 69% of families with DCM in our cohort of mostly French-Canadian patients. We confirmed the prevalence of TTN nonsense mutations in DCM. Furthermore, to our knowledge, we are the first to present an association between nonsense mutations in BAG3 and early-onset DCM."	"A novel MYH7 Leu1453pro mutation resulting in Laing distal myopathy in an Irish family. Authors describe clinical, pathological, imaging and genetic findings in the first Irish family with Laing distal myopathy in whom a novel mutation in the human slow β-myosin heavy chain (MYH7) gene has been identified. A kindred of 14 over 6 generations included 6 individuals with childhood onset distal lower limb weakness in a scapula-peroneal distribution with subsequent proximal upper and lower limb weakness. Finger extensor weakness especially in the 3rd-5th fingers was present in each and two patients had &quot;hanging big toe&quot; sign. Three patients were non-ambulatory by middle-age. One patient developed cardiomyopathy and two patients had respiratory muscle impairment. Intriguingly, brain white matter lesions and epilepsy were present in three patients. Muscle biopsy revealed fibre-size variation, rimmed vacuoles, mild-extensive central nucleation, redundant and folded sarcolemmal membrane and Z band streaming. Genetic analysis revealed a novel heterozygous mutation in the MYH7 gene in one patient which co-segregated perfectly in the remaining 5 affected members and was absent in six unaffected members. "	"Familial Ebstein's anomaly, left ventricular noncompaction, and ventricular septal defect associated with an MYH7 mutation. NA"	"A novel MYH7 mutation in a family with cardiomyopathy presenting with restrictive physiology and varying degrees of left ventricle hypertrophy. NA"	"Novel mutation in exon 14 of the sarcomere gene MYH7 in familial left ventricular noncompaction with bicuspid aortic valve. NA"	"Caffeine exposure alters cardiac gene expression in embryonic cardiomyocytes. Previous studies demonstrated that in utero caffeine treatment at embryonic day (E) 8.5 alters DNA methylation patterns, gene expression, and cardiac function in adult mice. To provide insight into the mechanisms, we examined cardiac gene and microRNA (miRNA) expression in cardiomyocytes shortly after exposure to physiologically relevant doses of caffeine. In HL-1 and primary embryonic cardiomyocytes, caffeine treatment for 48 h significantly altered the expression of cardiac structural genes (Myh6, Myh7, Myh7b, Tnni3), hormonal genes (Anp and BnP), cardiac transcription factors (Gata4, Mef2c, Mef2d, Nfatc1), and microRNAs (miRNAs; miR208a, miR208b, miR499). In addition, expressions of these genes were significantly altered in embryonic hearts exposed to in utero caffeine. For in utero experiments, pregnant CD-1 dams were treated with 20-60 mg/kg of caffeine, which resulted in maternal circulation levels of 37.3-65.3 μM 2 h after treatment. RNA sequencing was performed on embryonic ventricles treated with vehicle or 20 mg/kg of caffeine daily from E6.5-9.5. Differential expression (DE) analysis revealed that 124 genes and 849 transcripts were significantly altered, and differential exon usage (DEU) analysis identified 597 exons that were changed in response to prenatal caffeine exposure. Among the DE genes identified by RNA sequencing were several cardiac structural genes and genes that control DNA methylation and histone modification. Pathway analysis revealed that pathways related to cardiovascular development and diseases were significantly affected by caffeine. In addition, global cardiac DNA methylation was reduced in caffeine-treated cardiomyocytes. Collectively, these data demonstrate that caffeine exposure alters gene expression and DNA methylation in embryonic cardiomyocytes. "	"Familial hypertrophic cardiomyopathy: functional variance among individual cardiomyocytes as a trigger of FHC-phenotype development. Familial hypertrophic cardiomyopathy (FHC) is the most frequent inherited cardiac disease. It has been related to numerous mutations in many sarcomeric and even some non-sarcomeric proteins. So far, however, no common mechanism has been identified by which the many different mutations in different sarcomeric and non-sarcomeric proteins trigger development of the FHC phenotype. Here we show for different MYH7 mutations variance in force pCa-relations from normal to highly abnormal as a feature common to all mutations we studied, while direct functional effects of the different FHC-mutations, e.g., on force generation, ATPase or calcium sensitivity of the contractile system, can be quite different. The functional variation among individual M. soleus fibers of FHC-patients is accompanied by large variation in mutant vs. wildtype β-MyHC-mRNA. Preliminary results show a similar variation in mutant vs. wildtype β-MyHC-mRNA among individual cardiomyocytes. We discuss our previously proposed concept as to how different mutations in the β-MyHC and possibly other sarcomeric and non-sarcomeric proteins may initiate an FHC-phenotype by functional variation among individual cardiomyocytes that results in structural distortions within the myocardium, leading to cellular and myofibrillar disarray. In addition, distortions can activate stretch-sensitive signaling in cardiomyocytes and non-myocyte cells which is known to induce cardiac remodeling with interstitial fibrosis and hypertrophy. Such a mechanism will have major implications for therapeutic strategies to prevent FHC-development, e.g., by reducing functional imbalances among individual cardiomyocytes or by inhibition of their triggering of signaling paths initiating remodeling. Targeting increased or decreased contractile function would require selective targeting of mutant or wildtype protein to reduce functional imbalances. "	"Mutation analysis of the main hypertrophic cardiomyopathy genes using multiplex amplification and semiconductor next-generation sequencing. Mutations in at least 30 genes have been linked to hypertrophic cardiomyopathy (HCM). Due to the large size of the main HCM genes, Sanger sequencing is labor intensive and expensive. The purpose was to develop a next-generation sequencing (NGS) procedure for the main HCM genes. METHODS AND RESULTS: Multiplex amplification of the coding exons of MYH7,MYBPC3,TNNT2,TNNI3,ACTC1,TNNC1,MYL2,MYL3, and TPM1 was designated, followed by NGS with the Ion Torrent PGM (Life Technologies). A total of 8 pools containing DNA from HCM patients were sequenced in a 2-step approach. First, a total of 60 patients (validation cohort) underwent both PGM and Sanger sequencing for the 9 genes. No false-negative variants were found on NGS (100% sensitivity), and a specificity of 97% and 80% was achieved for single-nucleotide and insertion/deletion variants, respectively. Second, the PGM was used to search for mutations in a total of 76 cases not previously studied (discovery cohort). A total of 19 putative mutations were identified in the discovery pools, which were confirmed and assigned to specific patients on Sanger sequencing. An NGS procedure has been developed for the main sarcomeric genes that would facilitate the screening of large cohorts of patients. In addition, this procedure would facilitate the uncovering of rare gene variants on a population scale."	"Potential genetic predisposition for anthracycline-associated cardiomyopathy in families with dilated cardiomyopathy. Anthracyclines are successfully used in cancer treatment, but their use is limited by their cardiotoxic side effects. Several risk factors for anthracycline-associated cardiomyopathy (AACM) are known, yet the occurrence of AACM in the absence of these known risk factors suggests that other factors must play a role. The purpose of this study was to evaluate whether a genetic predisposition for dilated cardiomyopathy (DCM) could be a potential risk factor for AACM. A hospital-based registry of 162 DCM families and two hospital-based registries of patients with cancer treated with systemic cancer therapy (n&gt;6000) were reviewed focusing on AACM. Selected patients with AACM/DCM families with possible AACM (n=21) were analysed for mutations in cardiomyopathy-associated genes and presymptomatic cardiological evaluation of first-degree relatives was performed. We identified five DCM families with AACM and one patient with AACM with a family member with a possible early sign of mild DCM. Pathogenic MYH7 mutations were identified in two of these six families. The MYH7 c.1633G&gt;A (p.Asp545Asn) and c.2863G&gt;A (p.Asp955Asn) mutations (one double mutant allele) were identified in a DCM family with AACM. The MYH7 c.4125T&gt;A (p.Tyr1375X) mutation was identified in one patient with AACM. This study further extends the hypothesis that a genetic predisposition to DCM could be a potential risk factor for AACM."	"[Pro731Ser mutation in the β-myosin heavy chain and hypertrophic cardiomyopathy in a Chinese pedigree]. To identify the casual mutation of a Chinese pedigree with hypertrophic cardiomyopathy (HCM), and to analyze the genotype-phenotype relationship. The coding exons of 26 reported disease genes were sequenced by targeted resequencing in the proband and the identified mutation were detected with bi-directional Sanger sequencing in all family members and 307 healthy controls. The genotype-phenotype correlation was analyzed in the family. A missense mutation (c.2191C &gt; T, p. Pro731Ser) in the 20th exon of MYH7 gene was identified. This mutation was absent in 307 healthy controls and predicted to be pathogenic by PolyPhen-HCM. Totally 13 family members carried this mutation, including 10 patients with HCM and 3 asymptomatic mutation carriers. The proband manifested severe congestive heart failure and 8 patients expressed various clinical manifestations of heart failure, including dyspnea, palpitations, chest pain, amaurosis or syncope. Five patients were diagnosed as HCM at the age of 16 or younger. One family member suffered sudden cardiac death. The Pro731Ser of MYH7 gene mutation is a causal and malignant mutation linked with familiar HCM."	"Proteomic analysis of human fetal atria and ventricle. In this study we carried out a mass spectrometry-based proteome analysis of human fetal atria and ventricles. Heart protein lysates were analyzed on the Q-Exactive mass spectrometer in biological triplicates. Protein identification using MaxQuant yielded a total of 2754 atrial protein groups (91%) and 2825 ventricular protein groups (83%) in at least 2 of the 3 runs with ≥ 2 unique peptides. Statistical analyses using fold-enrichment (&gt;2) and p-values (≤ 0.05) selected chamber-enriched atrial (134) and ventricular (81) protein groups. Several previously characterized cardiac chamber-enriched proteins were identified in this study including atrial isoform of myosin light chain 2 (MYL7), atrial natriuretic peptide (NPPA), connexin 40 (GJA5), and peptidylglycine alpha-amidating monooxygenase (PAM) for atria, and ventricular isoforms of myosin light chains (MYL2 and MYL3), myosin heavy chain 7 (MYH7), and connexin 43 (GJA1) for ventricle. Our data was compared to in-house generated and publicly available human microarrays, several human cardiac proteomes, and phenotype ontology databases."	"Hypothesis and theory: mechanical instabilities and non-uniformities in hereditary sarcomere myopathies. Familial hypertrophic cardiomyopathy (HCM), due to point mutations in genes for sarcomere proteins such as myosin, occurs in 1/500 people and is the most common cause of sudden death in young individuals. Similar mutations in skeletal muscle, e.g., in the MYH7 gene for slow myosin found in both the cardiac ventricle and slow skeletal muscle, may also cause severe disease but the severity and the morphological changes are often different. In HCM, the modified protein function leads, over years to decades, to secondary remodeling with substantial morphological changes, such as hypertrophy, myofibrillar disarray, and extensive fibrosis associated with severe functional deterioration. Despite intense studies, it is unclear how the moderate mutation-induced changes in protein function cause the long-term effects. In hypertrophy of the heart due to pressure overload (e.g., hypertension), mechanical stress in the myocyte is believed to be major initiating stimulus for activation of relevant cell signaling cascades. Here it is considered how expression of mutated proteins, such as myosin or regulatory proteins, could have similar consequences through one or both of the following mechanisms: (1) contractile instabilities within each sarcomere (with more than one stable velocity for a given load), (2) different tension generating capacities of cells in series. These mechanisms would have the potential to cause increased tension and/or stretch of certain cells during parts of the cardiac cycle. Modeling studies are used to illustrate these ideas and experimental tests are proposed. The applicability of similar ideas to skeletal muscle is also postulated, and differences between heart and skeletal muscle are discussed. "	"Effects of pseudo-phosphorylated rat cardiac troponin T are differently modulated by α- and β-myosin heavy chain isoforms. Interplay between the protein kinase C (PKC)-mediated phosphorylation of troponin T (TnT)- and myosin heavy chain (MHC)-mediated effects on thin filaments takes on a new significance because: (1) there is significant interaction between the TnT- and MHC-mediated effects on cardiac thin filaments; (2) although the phosphorylation of TnT by PKC isoforms is common to both human and rodent hearts, human hearts predominantly express β-MHC while rodent hearts predominantly express α-MHC. Therefore, we tested how α- and β-MHC isoforms differently affected the functional effects of phosphorylated TnT. Contractile measurements were made on cardiac muscle fibers from normal rats (α-MHC) and propylthiouracil-treated rats (β-MHC), reconstituted with the recombinant phosphomimetic-TnT (T204E; threonine 204 replaced by glutamate). Ca2+ -activated maximal tension decreased differently in α-MHC + T204E (~68%) and β-MHC + T204E (~35%). However, myofilament Ca2+ sensitivity decreased similarly in α-MHC + T204E and β-MHC + T204E, demonstrating that a decrease in Ca2+ sensitivity alone cannot explain the greater attenuation of tension in α-MHC + T204E. Interestingly, dynamic contractile parameters (rates of tension redevelopment, crossbridge (XB) recruitment dynamics, XB distortion dynamics, and XB detachment kinetics) decreased only in α-MHC + T204E. Thus, the transition of thin filaments from the blocked- to closed-state was attenuated in α-MHC + T204E and β-MHC + T204E, but the closed- to open-state transition was attenuated only in α-MHC + T204E. Our study demonstrates that the effects of phosphorylated TnT and MHC isoforms interact to bring about different functional states of cardiac thin filaments."	"Study familial hypertrophic cardiomyopathy using patient-specific induced pluripotent stem cells. Familial hypertrophic cardiomyopathy (HCM) is one the most common heart disorders, with gene mutations in the cardiac sarcomere. Studying HCM with patient-specific induced pluripotent stem-cell (iPSC)-derived cardiomyocytes (CMs) would benefit the understanding of HCM mechanism, as well as the development of personalized therapeutic strategies. To investigate the molecular mechanism underlying the abnormal CM functions in HCM, we derived iPSCs from an HCM patient with a single missense mutation (Arginine442Glycine) in the MYH7 gene. CMs were next enriched from HCM and healthy iPSCs, followed with whole transcriptome sequencing and pathway enrichment analysis. A widespread increase of genes responsible for 'Cell Proliferation' was observed in HCM iPSC-CMs when compared with control iPSC-CMs. Additionally, HCM iPSC-CMs exhibited disorganized sarcomeres and electrophysiological irregularities. Furthermore, disease phenotypes of HCM iPSC-CMs were attenuated with pharmaceutical treatments. Overall, this study explored the possible patient-specific and mutation-specific disease mechanism of HCM, and demonstrates the potential of using HCM iPSC-CMs for future development of therapeutic strategies. Additionally, the whole methodology established in this study could be utilized to study mechanisms of other human-inherited heart diseases."	"A novel de novo mutation of β-cardiac myosin heavy chain gene found in a twelve-year-old boy with hypertrophic cardiomyopathy. NA"	"Hypertrophic cardiomyopathy: a new mutation illustrates the need for family-centered care. This is a case series of a family positive for a previously undescribed mutation in the myofilament gene MYH7, causing hypertrophic cardiomyopathy (HCM), a potentially lethal cardiac disease with strong hereditability. The family's significant disease became strikingly apparent with the unanticipated diagnosis of their newborn infant shortly after her birth. This led to the discovery of the MYH7 mutation in the infant, as well as her father and two siblings, all of whom had varying degrees of disease severity. Despite prior diagnosis of HCM for the paternal grandmother and great uncles, this family's situation points to the need for continued education of healthcare providers, when heritable diseases are encountered. Genetics consult should occur early and has been shown to be helpful in making an accurate diagnosis and identifying relatives at risk of developing the condition. It may, as in this case series, lead to the discovery of a novel mutation and contribute to the growing genetic database for familial HCM."	"Epigenetic switch at atp2a2 and myh7 gene promoters in pressure overload-induced heart failure. Re-induction of fetal genes and/or re-expression of postnatal genes represent hallmarks of pathological cardiac remodeling, and are considered important in the progression of the normal heart towards heart failure (HF). Whether epigenetic modifications are involved in these processes is currently under investigation. Here we hypothesized that histone chromatin modifications may underlie changes in the gene expression program during pressure overload-induced HF. We evaluated chromatin marks at the promoter regions of the sarcoplasmic reticulum Ca2+ATPase (SERCA-2A) and β-myosin-heavy chain (β-MHC) genes (Atp2a2 and Myh7, respectively) in murine hearts after one or eight weeks of pressure overload induced by transverse aortic constriction (TAC). As expected, all TAC hearts displayed a significant reduction in SERCA-2A and a significant induction of β-MHC mRNA levels. Interestingly, opposite histone H3 modifications were identified in the promoter regions of these genes after TAC, including H3 dimethylation (me2) at lysine (K) 4 (H3K4me2) and K9 (H3K9me2), H3 trimethylation (me3) at K27 (H3K27me3) and dimethylation (me2) at K36 (H3K36me2). Consistently, a significant reduction of lysine-specific demethylase KDM2A could be found after eight weeks of TAC at the Atp2a2 promoter. Moreover, opposite changes in the recruitment of DNA methylation machinery components (DNA methyltransferases DNMT1 and DNMT3b, and methyl CpG binding protein 2 MeCp2) were found at the Atp2a2 or Myh7 promoters after TAC. Taken together, these results suggest that epigenetic modifications may underlie gene expression reprogramming in the adult murine heart under conditions of pressure overload, and might be involved in the progression of the normal heart towards HF. "	"The FgfrL1 receptor is required for development of slow muscle fibers. FgfrL1, which interacts with Fgf ligands and heparin, is a member of the fibroblast growth factor receptor (Fgfr) family. FgfrL1-deficient mice show two significant alterations when compared to wildtype mice: They die at birth due to a malformed diaphragm and they lack metanephric kidneys. Utilizing gene arrays, qPCR and in situ hybridization we show here that the diaphragm of FgfrL1 knockout animals lacks any slow muscle fibers at E18.5 as indicated by the absence of slow fiber markers Myh7, Myl2 and Myl3. Similar lesions are also found in other skeletal muscles that contain a high proportion of slow fibers at birth, such as the extraocular muscles. In contrast to the slow fibers, fast fibers do not appear to be affected as shown by expression of fast fiber markers Myh3, Myh8, Myl1 and MylPF. At early developmental stages (E10.5, E15.5), FgfrL1-deficient animals express slow fiber genes at normal levels. The loss of slow fibers cannot be attributed to the lack of kidneys, since Wnt4 knockout mice, which also lack metanephric kidneys, show normal expression of Myh7, Myl2 and Myl3. Thus, FgfrL1 is specifically required for embryonic development of slow muscle fibers. "	"Cardiac overexpression of constitutively active Galpha q causes angiotensin II type1 receptor activation, leading to progressive heart failure and ventricular arrhythmias in transgenic mice. Transgenic mice with transient cardiac expression of constitutively active Galpha q (Gαq-TG) exhibt progressive heart failure and ventricular arrhythmias after the initiating stimulus of transfected constitutively active Gαq becomes undetectable. However, the mechanisms are still unknown. We examined the effects of chronic administration of olmesartan on heart failure and ventricular arrhythmia in Gαq-TG mice. Olmesartan (1 mg/kg/day) or vehicle was chronically administered to Gαq-TG from 6 to 32 weeks of age, and all experiments were performed in mice at the age of 32 weeks. Chronic olmesartan administration prevented the severe reduction of left ventricular fractional shortening, and inhibited ventricular interstitial fibrosis and ventricular myocyte hypertrophy in Gαq-TG. Electrocardiogram demonstrated that premature ventricular contraction (PVC) was frequently (more than 20 beats/min) observed in 9 of 10 vehicle-treated Gαq-TG but in none of 10 olmesartan-treated Gαq-TG. The collected QT interval and monophasic action potential duration in the left ventricle were significantly shorter in olmesartan-treated Gαq-TG than in vehicle-treated Gαq-TG. CTGF, collagen type 1, ANP, BNP, and β-MHC gene expression was increased and olmesartan significantly decreased the expression of these genes in Gαq-TG mouse ventricles. The expression of canonical transient receptor potential (TRPC) 3 and 6 channel and angiotensin converting enzyme (ACE) proteins but not angiotensin II type 1 (AT1) receptor was increased in Gαq-TG ventricles compared with NTG mouse ventricles. Olmesartan significantly decreased TRPC6 and tended to decrease ACE expressions in Gαq-TG. Moreover, it increased AT1 receptor in Gαq-TG. These findings suggest that angiotensin II type 1 receptor activation plays an important role in the development of heart failure and ventricular arrhythmia in Gαq-TG mouse model of heart failure."	"Mammalian target of rapamycin is essential for cardiomyocyte survival and heart development in mice. Mammalian target of rapamycin (mTOR) is a critical regulator of protein synthesis, cell proliferation and energy metabolism. As constitutive knockout of Mtor leads to embryonic lethality, the in vivo function of mTOR in perinatal development and postnatal growth of heart is not well defined. In this study, we established a muscle-specific mTOR conditional knockout mouse model (mTOR-mKO) by crossing MCK-Cre and Mtor(flox/flox) mice. Although the mTOR-mKO mice survived embryonic and perinatal development, they exhibited severe postnatal growth retardation, cardiac muscle pathology and premature death. At the cellular level, the cardiac muscle of mTOR-mKO mice had fewer cardiomyocytes due to apoptosis and necrosis, leading to dilated cardiomyopathy. At the molecular level, the cardiac muscle of mTOR-mKO mice expressed lower levels of fatty acid oxidation and glycolysis related genes compared to the WT littermates. In addition, the mTOR-mKO cardiac muscle had reduced Myh6 but elevated Myh7 expression, indicating cardiac muscle degeneration. Furthermore, deletion of Mtor dramatically decreased the phosphorylation of S6 and AKT, two key targets downstream of mTORC1 and mTORC2 mediating the normal function of mTOR. These results demonstrate that mTOR is essential for cardiomyocyte survival and cardiac muscle function. "	"Structural implications of β-cardiac myosin heavy chain mutations in human disease. Over 500 disease-causing point mutations have been found in the human β-cardiac myosin heavy chain, many quite recently with modern sequencing techniques. This review shows that clusters of these mutations occur at critical points in the sequence and investigates whether the many studies on these mutants reveal information about the function of this protein."	"A long noncoding RNA protects the heart from pathological hypertrophy. The role of long noncoding RNA (lncRNA) in adult hearts is unknown; also unclear is how lncRNA modulates nucleosome remodelling. An estimated 70% of mouse genes undergo antisense transcription, including myosin heavy chain 7 (Myh7), which encodes molecular motor proteins for heart contraction. Here we identify a cluster of lncRNA transcripts from Myh7 loci and demonstrate a new lncRNA-chromatin mechanism for heart failure. In mice, these transcripts, which we named myosin heavy-chain-associated RNA transcripts (Myheart, or Mhrt), are cardiac-specific and abundant in adult hearts. Pathological stress activates the Brg1-Hdac-Parp chromatin repressor complex to inhibit Mhrt transcription in the heart. Such stress-induced Mhrt repression is essential for cardiomyopathy to develop: restoring Mhrt to the pre-stress level protects the heart from hypertrophy and failure. Mhrt antagonizes the function of Brg1, a chromatin-remodelling factor that is activated by stress to trigger aberrant gene expression and cardiac myopathy. Mhrt prevents Brg1 from recognizing its genomic DNA targets, thus inhibiting chromatin targeting and gene regulation by Brg1. It does so by binding to the helicase domain of Brg1, a domain that is crucial for tethering Brg1 to chromatinized DNA targets. Brg1 helicase has dual nucleic-acid-binding specificities: it is capable of binding lncRNA (Mhrt) and chromatinized--but not naked--DNA. This dual-binding feature of helicase enables a competitive inhibition mechanism by which Mhrt sequesters Brg1 from its genomic DNA targets to prevent chromatin remodelling. A Mhrt-Brg1 feedback circuit is thus crucial for heart function. Human MHRT also originates from MYH7 loci and is repressed in various types of myopathic hearts, suggesting a conserved lncRNA mechanism in human cardiomyopathy. Our studies identify a cardioprotective lncRNA, define a new targeting mechanism for ATP-dependent chromatin-remodelling factors, and establish a new paradigm for lncRNA-chromatin interaction."	"Cytosolic CARP promotes angiotensin II- or pressure overload-induced cardiomyocyte hypertrophy through calcineurin accumulation. The gene ankyrin repeat domain 1 (Ankrd1) is an enigmatic gene and may exert pleiotropic function dependent on its expression level, subcellular localization and even types of pathological stress, but it remains unclear how these factors influence the fate of cardiomyocytes. Here we attempted to investigate the role of CARP on cardiomyocyte hypertrophy. In neonatal rat ventricular cardiomyocytes (NRVCs), angiotensin II (Ang II) increased the expression of both calpain 1 and CARP, and also induced cytosolic translocation of CARP, which was abrogated by a calpain inhibitor. In the presence of Ang-II in NRVCs, infection with a recombinant adenovirus containing rat Ankrd1 cDNA (Ad-Ankrd1) enhanced myocyte hypertrophy, the upregulation of atrial natriuretic peptide and β-myosin heavy chain genes and calcineurin proteins as well as nuclear translocation of nuclear factor of activated T cells. Cyclosporin A attenuated Ad-Ankrd1-enhanced cardiomyocyte hypertrophy. Intra-myocardial injection of Ad-Ankrd1 in mice with transverse aortic constriction (TAC) markedly increased the cytosolic CARP level, the heart weight/body weight ratio, while short hairpin RNA targeting Ankrd1 inhibited TAC-induced hypertrophy. The expression of calcineurin was also significantly increased in Ad-Ankrd1-infected TAC mice. Olmesartan (an Ang II receptor antagonist) prevented the upregulation of CARP in both Ang II-stimulated NRVCs and hearts with pressure overload. These findings indicate that overexpression of Ankrd1 exacerbates pathological cardiac remodeling through the enhancement of cytosolic translocation of CARP and upregulation of calcineurin. "	"Detection of mutations in symptomatic patients with hypertrophic cardiomyopathy in Taiwan. Hypertrophic cardiomyopathy (HCM) is a common genetic cardiac disorder associated with sudden death, heart failure, and stroke. The aim of the present study was to evaluate the prevalence and types of mutations in symptomatic patients with HCM in Taiwan. Thirty-eight HCM index patients (mean age 60±16 years) underwent systematic mutation screening of eight sarcomeric genes: β-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), troponin I (TNNI3), myosin ventricular regulatory light chain 2 (MYL2), myosin ventricular essential light chain 1 (MYL3), α-tropomyosin (TPM1), and cardiac α-actin (ACTC), using direct DNA sequencing. In silico programs predicted damaging amino acids. In the positive families, genotype-phenotype correlation studies were done. Overall, 13 mutations were identified in 13 index patients (34.2%). The three most frequently mutated genes were MYH7, MYBPC3, and TNNT2. One patient carried double mutations. Five mutations (MYH7 R147S; MYBPC3 R597Q; MYBPC3 W1007R; TNNI3 E124Q; MYL3 R63C) were novel; all were missense mutations. Analysis using in silico tools showed near consensus to classify these five novel mutations as pathological. Family pedigree analysis showed the presence of cosegregation in at least two affected members in each proband family, but incomplete penetrance in young family members with a positive genotype. We identified 13 HCM pedigrees, including 5 carrying novel mutations and 1 with a double mutation. The three most commonly mutated genes were MYH7, MYBPC3, and TNNT2. These results, together with genetic counseling, could lead to earlier diagnosis and better management of family members at risk of HCM."	"WNT3A promotes myogenesis of human embryonic stem cells and enhances in vivo engraftment. The ability of human embryonic stem cells (hESCs) to differentiate into skeletal muscle cells is an important criterion in using them as a cell source to ameliorate skeletal muscle impairments. However, differentiation of hESCs into skeletal muscle cells still remains a challenge, often requiring introduction of transgenes. Here, we describe the use of WNT3A protein to promote in vitro myogenic commitment of hESC-derived cells and their subsequent in vivo function. Our findings show that the presence of WNT3A in culture medium significantly promotes myogenic commitment of hESC-derived progenitors expressing a mesodermal marker, platelet-derived growth factor receptor-α (PDGFRA), as evident from the expression of myogenic markers, including DES, MYOG, MYH1, and MF20. In vivo transplantation of these committed cells into cardiotoxin-injured skeletal muscles of NOD/SCID mice reveals survival and engraftment of the donor cells. The cells contributed to the regeneration of damaged muscle fibers and the satellite cell compartment. In lieu of the limited cell source for treating skeletal muscle defects, the hESC-derived PDGFRA(+) cells exhibit significant in vitro expansion while maintaining their myogenic potential. The results described in this study provide a proof-of-principle that myogenic progenitor cells with in vivo engraftment potential can be derived from hESCs without genetic manipulation. "	"Nationwide study on hypertrophic cardiomyopathy in Iceland: evidence of a MYBPC3 founder mutation. The geographic isolation and homogeneous population of Iceland are ideally suited to ascertain clinical and genetic characteristics of hypertrophic cardiomyopathy (HCM) at the population level. Medical records and cardiac imaging studies obtained between 1997 and 2010 were reviewed to identify Icelandic patients with HCM. Surviving patients were recruited for clinical and genetic studies. A previously identified Icelandic mutation, MYBPC3 c.927-2A&gt;G, was genotyped, and mutation-negative samples were sequenced for HCM genes and other hypertrophic genes. Record review identified 180 patients with HCM. Genetic analyses of 151 patients defined pathogenic mutations in 101 (67%), including MYBPC3 c.927-2A&gt;G (88 patients, 58%), 4 other MYBPC3 or MYH7 mutations (5 patients, 3.3%), and 2 GLA mutations (8 patients, 5.3%). Haplotype and genetic genealogical data defined MYBPC3 c.927-2A&gt;G as a founder mutation, introduced into the Icelandic population in the 15th century, with a current population prevalence of 0.36%. MYBPC3 c.927-2A&gt;G mutation carriers exhibited phenotypic diversity but were younger at diagnosis (42 versus 49 years; P=0.001) and sustained more adverse events (15% versus 2%; P=0.02) than mutation-negative patients. All-cause mortality for patients with HCM was similar to that of an age-matched Icelandic population (hazard ratio, 0.98; P=0.9). HCM-related mortality (0.78%/y) occurred at a mean age of 68 compared with 81 years for non-HCM-related mortality (P=0.02). A founder MYBPC3 mutation that arose &gt;550 years ago is the predominant cause of HCM in Iceland. The MYBPC3 c.927-2A&gt;G mutation is associated with low adverse event rates but earlier cardiovascular mortality, illustrating the impact of genotype on outcomes in HCM."	"Isolation of contractile cardiomyocytes from human pluripotent stem-cell-derived cardiomyogenic cultures using a human NCX1-EGFP reporter. The prospective isolation of defined contractile human pluripotent stem cell (hPSC)-derived cardiomyocytes is advantageous for regenerative medicine and drug screening applications. Currently, enrichment of cardiomyocyte populations from such cultures can be achieved by combinations of cell surface markers or the labor-intensive genetic modification of cardiac developmental genes, such as NKX2.5 or MYH6, with fluorescent reporters. To create a facile, portable method for the isolation of contractile cardiomyocytes from cardiomyogenic hPSC cultures, we employed a highly conserved cardiac enhancer sequence in the SLC8A1 (NCX1) gene to generate a lentivirally deliverable, antibiotic-selectable NCX1cp-EGFP reporter. We show that human embryonic stem cells (and induced pluripotent stem cells) transduced with the NCX1cp-EGFP reporter cassette exhibit enhanced green fluorescent protein (EGFP) expression in cardiac progenitors from 5 days into the directed cardiac hPSC differentiation protocol, with all reporter-positive cells transitioning to spontaneously contracting foci 3 days later. In subsequent stages of cardiomyocyte maturation, NCX1cp-EGFP expression was exclusively limited to contractile cells expressing high levels of cardiac troponin T (CTNT), MLC2a/v, and α-actinin proteins, and was not present in CD90/THY1(+) cardiac stromal cells or CD31/PECAM(+) endothelial cells. Flow-assisted cytometrically sorted EGFP(+) fractions of differentiated cultures were highly enriched in both early (NKX2.5 and TBX5) and late (CTNT/TNNI2, MYH6, MYH7, NPPA, and MYL2) cardiomyocyte markers, with a significant proportion of cells displaying a ventricular-like action potential pattern in patch-clamp recordings. We conclude that the use of the cardiac-specific promoter of the human SLC8A1(NCX1) gene is an effective strategy to isolate contractile cardiac cells and their progenitors from hPSC-derived cardiomyogenic cultures. "	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"Polydatin attenuates cardiac hypertrophy through modulation of cardiac Ca2+ handling and calcineurin-NFAT signaling pathway. Polydatin (PD), a resveratrol glucoside extracted from the perennial herbage Polygonum cuspidatum, has been suggested to have wide cardioprotective effects. This study aimed to explore the direct antihypertrophic role of PD in cultured neonatal rat ventricular myocytes (NRVMs) and its therapeutic effects against pressure overload (PO)-induced hypertrophic remodeling and heart failure. Furthermore, we investigated the mechanisms underlying the actions of PD. Treatment of NRVMs with phenylephrine for 72 h induced myocyte hypertrophy, where the cell surface area and protein levels of atrial natriuretic peptide and β-myosin heavy chain (β-MHC) were significantly increased. The amplitude of systolic Ca(2+) transient was increased, and sarcoplasmic reticulum Ca(2+) recycling was prolonged. Concomitantly, calcineurin activity was increased and NFAT protein was imported into the nucleus. PD treatment restored Ca(2+) handling and inhibited calcineurin-NFAT signaling, thus attenuating the hypertrophic remodeling in NRVMs. PO-induced cardiac hypertrophy was produced by transverse aortic constriction (TAC) in C57BL/6 mice, where the left ventricular posterior wall thickness and heart-to-body weight ratio were significantly increased. The cardiac function was increased at 5 wk of TAC, but significantly decreased at 13 wk of TAC. The amplitude of Ca(2+) transient and calcineurin activity were increased at 5 wk of TAC. PD treatment largely abolished TAC-induced hypertrophic remodeling by inhibiting the Ca(2+)-calcineurin pathway. Surprisingly, PD did not inhibit myocyte contractility despite that the amplitude of Ca(2+) transient was decreased. The cardiac function remained intact at 13 wk of TAC. In conclusion, PD is beneficial against PO-induced cardiac hypertrophy and heart failure largely through inhibiting the Ca(2+)-calcineurin pathway without compromising cardiac contractility. "	"A novel arginine to tryptophan (R144W) mutation in troponin T (cTnT) gene in an indian multigenerational family with dilated cardiomyopathy (FDCM). Cardiomyopathy is a major cause of heart failure and sudden cardiac death; several mutations in sarcomeric protein genes have been associated with this disease. Our aim in the present study is to investigate the genetic variations in Troponin T (cTnT) gene and its association with dilated cardiomyopathy (DCM) in south-Indian patients. Analyses of all the exons and exon-intron boundaries of cTnT in 147 DCM and in 207 healthy controls had revealed a total of 15 SNPs and a 5 bp INDEL; of which, polymorphic SNPs were compared with the HapMap population data. Interestingly, a novel R144W mutation, that substitutes polar-neutral tryptophan for a highly conserved basic arginine in cTnT, altering the charge drastically, was identified in a DCM, with a family history of sudden-cardiac death (SCD). This mutation was found within the tropomyosin (TPM1) binding domain, and was evolutionarily conserved across species, therefore it is expected to have a significant impact on the structure and function of the protein. Family studies had revealed that the R144W is co-segregating with disease in the family as an autosomal dominant trait, but it was completely absent in 207 healthy controls and in 162 previously studied HCM patients. Further screening of the proband and three of his family members (positive for R144W mutant) with eight other genes β-MYH7, MYBPC3, TPM1, TNNI3, TTN, ACTC, MYL2 and MYL3, did not reveal any disease causing mutation, proposing the absence of compound heterozygosity. Therefore, we strongly suggest that the novel R144W unique/private mutant identified in this study is associated with FDCM. This is furthermore signifying the unique genetic architecture of Indian population. "	"Two strikes and you're out: gene-gene mutation interactions in HCM. NA"	"Mitogen-activated protein kinases pathways mediate the sunitinib-induced hypertrophy in rat cardiomyocyte H9c2 cells. Sunitinib (SUN) is a multi-targeted tyrosine kinase inhibitor used for the treatment of gastrointestinal stromal tumors and renal cell carcinoma. Cardiotoxicity has been reported as a significant side effect associated with the SUN treatment, yet the mechanism is poorly understood. The main purpose of this study was to investigate the potential effects of SUN on cardiac hypertrophic genes and the role of mitogen-activated protein kinases (MAPKs) signaling pathway in rat cardiomyocyte H9c2 cell line. In the present study, real-time quantitative polymerase chain reaction showed that the treatment of H9c2 cells with increasing concentrations of SUN (0, 1, 2.5, and 5 µM) significantly induced hypertrophic gene markers, such as brain natriuretic peptides (BNP) and myosin heavy chain (β-MHC and α-MHC) in concentration- and time-dependent manners. The onset of mRNA induction was observed as early as 9 h and remained elevated for at least 18 h after treatment with SUN 5 µM. At the protein level, Western blot analysis showed that SUN increased BNP and β-MHC, while it inhibited α-MHC protein levels in a concentration-dependent manner. These SUN-mediated effects were associated with increase in cell size and hypertrophy by approximately 70 % at the highest concentration, 5 µM. Importantly, inhibition of the MAPK signaling pathway using SB203580 (p38 MAPK inhibitor), U0126 (extracellular signal-regulated kinase inhibitor), and SP600125 (c-Jun NH2-terminal kinase inhibitor) significantly potentiated the SUN-induced BNP and β-MHC mRNA levels, but did alter the α-MHC level. Whereas at the protein level, MAPK inhibitors generally decreased the SUN-induced BNP, whereas only SB and U0 increased β-MHC protein levels with no effect on α-MHC, which were associated with a significant decrease in cell size. Together, these results indicate that SUN induced hypertrophic gene expression through MAPK-dependent mechanisms."	"Exome sequencing identifies a novel MYH7 p.G407C mutation responsible for familial hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), characterized by myocardial hypertrophy, is the most common cause of sudden cardiac arrest in young individuals. More than 270 mutations have been found to be responsible for familial HCM to date; mutations in MYH7, which encodes the β-myosin heavy chain (β-MHC) and MYBPC3, which encodes the myosin binding protein C, are seen most often. This study aimed to screen a pathogenic mutation causing HCM in a large family and assess its possible impact on the function of the specific protein. Exome sequencing was applied in the proband for searching a novel mutation; segments bearing the specific mutation were analyzed by polymerase chain reaction and direct sequencing. A novel p.G407C mutation in the β-MHC gene (MYH7) was identified to be responsible for familial HCM in this family. The mutation may cause damage to the second structure of the protein despite the fact that patients bearing the mutation may have a relatively benign prognosis in this family. The clinical details of the p.G407C mutation are described for the first time in this study. Our report shows a good genotype-phenotype consistency and makes it possible for genetic counseling in this family. "	"Distal myosin heavy chain-7 myopathy due to the novel transition c.5566G&gt;A (p.E1856K) with high interfamilial cardiac variability and putative anticipation. Myosin-heavy-chain 7 (MYH7)-myopathy manifests clinically with a distal, scapuloperoneal, limb-girdle (proximal), or axial distribution and may involve the respiratory muscles. Cardiac involvement is frequent, ranging from relaxation impairment to severe dilative cardiomyopathy. Progression and earlier onset of cardiac disease in successive generations with MYH7-myopathy is unreported. In a five-generation family MYH7-myopathy due to the novel c.5566G &gt; A (p.E1856K) mutation manifested with late-onset, distal &gt; proximal myopathy and variable degree of cardiac involvement. The index patient developed distal myopathy since age 49 y and anginal chest pain. Her mother had distal myopathy and impaired myocardial relaxation. The daughter of the index patient had discrete myopathy but left ventricular hypertrabeculation/noncompaction and ventricular arrhythmias requiring an implantable cardioverter defibrillator. The granddaughter of the index patient had infantile dilated cardiomyopathy without overt myopathy. Cardiac involvement may be present in MYH7-myopathy and may be progressive between the generations, ranging from relaxation abnormality to noncompaction, ventricular arrhythmias, and dilated cardiomyopathy."	"Faster cross-bridge detachment and increased tension cost in human hypertrophic cardiomyopathy with the R403Q MYH7 mutation. The first mutation associated with hypertrophic cardiomyopathy (HCM) is the R403Q mutation in the gene encoding β-myosin heavy chain (β-MyHC). R403Q locates in the globular head of myosin (S1), responsible for interaction with actin, and thus motor function of myosin. Increased cross-bridge relaxation kinetics caused by the R403Q mutation might underlie increased energetic cost of tension generation; however, direct evidence is absent. Here we studied to what extent cross-bridge kinetics and energetics are related in single cardiac myofibrils and multicellular cardiac muscle strips of three HCM patients with the R403Q mutation and nine sarcomere mutation-negative HCM patients (HCMsmn). Expression of R403Q was on average 41 ± 4% of total MYH7 mRNA. Cross-bridge slow relaxation kinetics in single R403Q myofibrils was significantly higher (P &lt; 0.0001) than in HCMsmn myofibrils (0.47 ± 0.02 and 0.30 ± 0.02 s(-1), respectively). Moreover, compared to HCMsmn, tension cost was significantly higher in the muscle strips of the three R403Q patients (2.93 ± 0.25 and 1.78 ± 0.10 μmol l(-1) s(-1) kN(-1) m(-2), respectively) which showed a positive linear correlation with relaxation kinetics in the corresponding myofibril preparations. This correlation suggests that faster cross-bridge relaxation kinetics results in an increase in energetic cost of tension generation in human HCM with the R403Q mutation compared to HCMsmn. Therefore, increased tension cost might contribute to HCM disease in patients carrying the R403Q mutation. "	"Effects of renal sympathetic denervation and angiotensin-converting enzyme inhibitor on left ventricular hypertrophy. Comparison in spontaneously hypertensive rats. The aim of this study was to investigate whether renal sympathetic denervation (RSD) is more effective on myocardial hypertrophy than the angiotensin-converting enzyme inhibitor (ACEI) perindopril in spontaneously hypertensive rats (SHRs). After bilateral renal denervation blood pressure (BP) was measured every 10 days. On day 50 the heart was (histo)pathologically examined. The ventricular weight to body weight ratios (VW/BW), myocardial diameter and collagen volume fraction (CVF) were calculated, and cardiac hypertrophy marker genes were analyzed by RT-PCR. At the baseline evaluation all groups had comparable BP. After treatment the BP of the RSD group was significantly reduced (p &lt; 0.05). The BP of the RSD group was lower than that of the perindopril group on days 10, 20 and 30th (p &lt; 0.05) but on day 50 systolic BP of the RSD group was significantly higher (p &lt; 0.05) whereas there were no significant differences in diastolic BP. The VW/BW decreased in the RSD group, whereas the value did not change significantly in the perindopril group. The myocardial diameter of the left ventricular cardiomyocytes was also significantly lower in the RSD group and stayed the same in the perindopril group. Collagen volume fraction (CVF) in the RSD group was significantly lower than in the perindopril group (p &lt; 0.05). Significant changes in the expression levels of NPPA, MYH7, and MYH6 (P &lt; 0.05) were observed in the RD-SHR groups (p &lt; 0.05). There was a significant difference in the expression level of MYH6 (p &lt; 0.05) between the RSD group and the perindopril group but the expression levels of NPPA and MYH7 were not significantly different. In this study, RSD had a significant antihypertensive effect and inhibited hypertensive-induced cardiac hypertrophy in SHRs and showed advantages compared with ACEI in decreasing BP in the early stage and in inhibiting myocardial fibrosis."	"A new common mutation in the cardiac beta-myosin heavy chain gene in Finnish patients with hypertrophic cardiomyopathy. In the nationwide FinHCM Study including 306 Finnish patients with hypertrophic cardiomyopathy (HCM), we have previously identified two founder mutations in the alpha-tropomyosin (TPM1-D175N) and myosin-binding protein C (MYBPC3-Q1061X) genes, accounting for 18% of all cases. Objective. To screen additional mutations, previously identified in eastern Finnish cohorts with HCM, in the FinHCM Study population. Ten mutations in the beta-myosin heavy chain gene (MYH7), TPM1, and MYBPC3 were screened. MYH7-R1053Q was found in 17 of 306 patients (5.6%). No carriers of MYH7-R719W or N696S were found. A novel TPM1-D175G mutation was found in a single patient. MYBPC3 mutations were found in 14 patients: IVS5-2A-C in two, IVS14-13G-A in two, K811del in six, and A851insT in four patients. Altogether, a HCM-causing mutation was identified in 32 patients, accounting for 10.5% of all cases. In addition, two MYBPC3 variants R326Q and V896M with uncertain pathogenicity were found in eight and in 10 patients, respectively. Combining the present findings with our previous results, a causative mutation was identified in 28% of the FinHCM cohort. MYH7-R1053Q was the third most common mutation, and should be screened in all new cases of HCM in Finland."	"Sex differences in myosin heavy chain isoforms of human failing and nonfailing atria. Mammalian hearts express two myosin heavy chain (MHC) isoforms, which drive contractions with different kinetics and power-generating ability. The expression of the isoform that is associated with more rapid contraction kinetics and greater power output, MHC-α, is downregulated, with a concurrent increase in the relative amount of the slower isoform, MHC-β, during the progression to experimentally induced or disease-related heart failure. This change in protein expression has been well studied in right and left ventricles in heart failure models and in humans with failure. Relatively little quantitative data exists regarding MHC isoform expression shifts in human failing atria. We previously reported significant increases in the relative amount of MHC-β in the human failing left atrium. The results of that study suggested that there might be a sex-related difference in the level of MHC-β in the left atrium, but the number of female subjects was insufficient for statistical analysis. The objective of this study was to test whether there is, in fact, a sex-related difference in the level of MHC-β in the right and left atria of humans with cardiomyopathy. The results indicate that significant differences exist in atrial MHC isoform expression between men and women who are in failure. The results also revealed an unexpected twofold greater amount of MHC-β in the nonfailing left atrium of women, compared with men. The observed sex-related differences in MHC isoform expression could impact ventricular diastolic filling during normal daily activities, as well as during physiologically stressful events. "	"Gene-specific increase in the energetic cost of contraction in hypertrophic cardiomyopathy caused by thick filament mutations. Disease mechanisms regarding hypertrophic cardiomyopathy (HCM) are largely unknown and disease onset varies. Sarcomere mutations might induce energy depletion for which until now there is no direct evidence at sarcomere level in human HCM. This study investigated if mutations in genes encoding myosin-binding protein C (MYBPC3) and myosin heavy chain (MYH7) underlie changes in the energetic cost of contraction in the development of human HCM disease. Energetic cost of contraction was studied in vitro by measurements of force development and ATPase activity in cardiac muscle strips from 26 manifest HCM patients (11 MYBPC3mut, 9 MYH7mut, and 6 sarcomere mutation-negative, HCMsmn). In addition, in vivo, the ratio between external work (EW) and myocardial oxygen consumption (MVO2) to obtain myocardial external efficiency (MEE) was determined in 28 pre-hypertrophic mutation carriers (14 MYBPC3mut and 14 MYH7mut) and 14 healthy controls using [(11)C]-acetate positron emission tomography and cardiovascular magnetic resonance imaging. Tension cost (TC), i.e. ATPase activity during force development, was higher in MYBPC3mut and MYH7mut compared with HCMsmn at saturating [Ca(2+)]. TC was also significantly higher in MYH7mut at submaximal, more physiological [Ca(2+)]. EW was significantly lower in both mutation carrier groups, while MVO2 did not differ. MEE was significantly lower in both mutation carrier groups compared with controls, showing the lowest efficiency in MYH7 mutation carriers. We provide direct evidence that sarcomere mutations perturb the energetic cost of cardiac contraction. Gene-specific severity of cardiac abnormalities may underlie differences in disease onset and suggests that early initiation of metabolic treatment may be beneficial, in particular, in MYH7 mutation carriers."	"β-Myosin heavy chain variant Val606Met causes very mild hypertrophic cardiomyopathy in mice, but exacerbates HCM phenotypes in mice carrying other HCM mutations. Approximately 40% of hypertrophic cardiomyopathy (HCM) is caused by heterozygous missense mutations in β-cardiac myosin heavy chain (β-MHC). Associating disease phenotype with mutation is confounded by extensive background genetic and lifestyle/environmental differences between subjects even from the same family. To characterize disease caused by β-cardiac myosin heavy chain Val606Met substitution (VM) that has been identified in several HCM families with wide variation of clinical outcomes, in mice. Unlike 2 mouse lines bearing the malignant myosin mutations Arg453Cys (RC/+) or Arg719Trp (RW/+), VM/+ mice with an identical inbred genetic background lacked hallmarks of HCM such as left ventricular hypertrophy, disarray of myofibers, and interstitial fibrosis. Even homozygous VM/VM mice were indistinguishable from wild-type animals, whereas RC/RC- and RW/RW-mutant mice died within 9 days after birth. However, hypertrophic effects of the VM mutation were observed both in mice treated with cyclosporine, a known stimulator of the HCM response, and compound VM/RC heterozygous mice, which developed a severe HCM phenotype. In contrast to all heterozygous mutants, both systolic and diastolic function of VM/RC hearts was severely impaired already before the onset of cardiac remodeling. The VM mutation per se causes mild HCM-related phenotypes; however, in combination with other HCM activators it exacerbates the HCM phenotype. Double-mutant mice are suitable for assessing the severity of benign mutations."	"Autosomal dominant eccentric core disease caused by a heterozygous mutation in the MYH7 gene. Autosomal dominant (AD) central core disease (CCD) is a congenital myopathy characterised by the presence of cores in the muscle fibres which correspond to broad areas of myofibrils disorganisation, Z-line streaming and lack of mitochondria. Heterozygous mutations in the RYR1 gene were observed in the large majority of AD-CCD families; however, this gene was excluded in some of AD-CCD families. To enlarge the genetic spectrum of AD-CCD demonstrating mutations in an additional gene. Four affected AD family members over three generations, three of whom were alive and participate in the study: the mother and two of three siblings. The symptoms began during the early childhood with mild delayed motor development. Later they developed mainly tibialis anterior weakness, hypertrophy of calves and significant weakness (amyotrophic) of quadriceps. No cardiac or ocular involvement was noted. The muscle biopsies sections showed a particular pattern: eccentric cores in type 1 fibres, associated with type 1 predominance. Most cores have abrupt borders. Electron microscopy confirmed the presence of both unstructured and structured cores. Exome sequencing analysis identified a novel heterozygous missense mutation p.Leu1723Pro in MYH7 segregating with the disease and affecting a conserved residue in the myosin tail domain. We describe MYH7 as an additional causative gene for AD-CCD. These findings have important implications for diagnosis and future investigations of AD-congenital myopathies with cores, without cardiomyopathy, but presenting a particular involvement of distal and quadriceps muscles."	"RNA-seq reveals determinants of sensitivity to chemotherapy drugs in esophageal carcinoma cells. Chemotherapy remains the mainstay of treatment for patients with incurable disease of esophageal carcinoma. Most patients respond poorly to chemotherapy, it is necessary to figure out biomarkers for chemotherapy sensitivity or resistance to perform the individualized therapy. In present work, the sensitivities of two ESCC cell lines to 9 chemotherapy drugs were identified and the transcriptome of these two cell lines were investigated by RNA-seq, the correlation between the sensitivity to drugs and expression of some genes was attempted to construct. Eca-1 was more resistant to most of the chemotherapy drugs than Eca-109 cell line. RNA-seq results showed that there is dramatic difference in the basal expression between these two ESCC cell lines. Pathway analysis demonstrated that these differentially expressed genes were mainly enriched in Gαi signaling, calcium signaling, cAMP-mediated signaling, G-protein coupled receptor signaling and actin cytoskeleton signaling pathways. The molecules in Gαi signaling (ADCY1 and SSTR3) and actin cytoskeleton signaling (MYH6 and MYH7) were highly expressed in multidrug-resistant Eca-1 cells, which were validated by quantitative PCR. Activation of these two pathways results in the upregulation of downstream signaling, PKA signaling and Src-STAT3, and downregulation of RAF-ERK signaling, which was validated by immunoblotting experiments. Our work proposed that activation of Gαi signaling or actin cytoskeleton signaling may confer ESCC cells resistance to most chemotherapy drugs. Our work might provide potential biomarkers and therapeutic targets for treatment of EC patients. "	"Cranial, axial and proximal myopathy and hypertrophic cardiomyopathy caused by a mutation in the globular head region of the MYH7 gene. NA"	"Essential role of TEA domain transcription factors in the negative regulation of the MYH 7 gene by thyroid hormone and its receptors. MYH7 (also referred to as cardiac myosin heavy chain β) gene expression is known to be repressed by thyroid hormone (T3). However, the molecular mechanism by which T3 inhibits the transcription of its target genes (negative regulation) remains to be clarified, whereas those of transcriptional activation by T3 (positive regulation) have been elucidated in detail. Two MCAT (muscle C, A, and T) sites and an A/T-rich region in the MYH7 gene have been shown to play a critical role in the expression of this gene and are known to be recognized by the TEAD/TEF family of transcription factors (TEADs). Using a reconstitution system with CV-1 cells, which has been utilized in the analysis of positive as well as negative regulation, we demonstrate that both T3 receptor (TR) β1 and α1 inhibit TEAD-dependent activation of the MYH7 promoter in a T3 dose-dependent manner. TRβ1 bound with GC-1, a TRβ-selective T3 analog, also repressed TEAD-induced activity. Although T3-dependent inhibition required the DNA-binding domain (DBD) of TRβ1, it remained after the putative negative T3-responsive elements were mutated. A co-immunoprecipitation study demonstrated the in vivo association of TRβ1 with TEAD-1, and the interaction surfaces were mapped to the DBD of the TRβ1 and TEA domains of TEAD-1, both of which are highly conserved among TRs and TEADs, respectively. The importance of TEADs in MYH7 expression was also validated with RNA interference using rat embryonic cardiomyocyte H9c2 cells. These results indicate that T3-bound TRs interfere with transactivation by TEADs via protein-protein interactions, resulting in the negative regulation of MYH7 promoter activity. "	"Genetic variations of beta-MYH7 in Venezuelan patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a cardiac disease, characterized by marked hypertrophy and genetic variability. HCM has been associated with sarcomere protein mutations, being cardiac beta-myosin (coded by the MYH7 gene) and myosin binding protein C (coded by the MYBPC3 gene) the most frequently affected proteins. As in Venezuela only the clinical analysis are performed in HCM patients, we decided to search for genetic variations in the MYH7 gene. Coding regions, including the junction exon-intron of the MYH7 gene, were studied in 58 HCM patients, whose samples were collected at the ASCARDIO Hospital (Barquisimeto, Lara state, Venezuela) and 106 control subjects from the ASCARDIO Hospital and the IVIC (Barquisimeto Lara state and Miranda, Venezuela, respectively). The blood samples were analyzed by genomic DNA isolation, followed by polymerase chain reaction and sequence analysis. The screening of the MYH7 gene revealed eight already reported polymorphic variants, as well as two intronic variations in these HCM patients. Neither any missense mutations nor other pathological mutations in the MYH7 gene were found in the HCM patients."	"Overexpression of TRB3 in muscle alters muscle fiber type and improves exercise capacity in mice. Increasing evidence suggests that TRB3, a mammalian homolog of Drosophila tribbles, plays an important role in cell growth, differentiation, and metabolism. In the liver, TRB3 binds and inhibits Akt activity, whereas in adipocytes, TRB3 upregulates fatty acid oxidation. In cultured muscle cells, TRB3 has been identified as a potential regulator of insulin signaling. However, little is known about the function and regulation of TRB3 in skeletal muscle in vivo. In the current study, we found that 4 wk of voluntary wheel running (6.6 ± 0.4 km/day) increased TRB3 mRNA by 1.6-fold and protein by 2.5-fold in the triceps muscle. Consistent with this finding, muscle-specific transgenic mice that overexpress TRB3 (TG) had a pronounced increase in exercise capacity compared with wild-type (WT) littermates (TG: 1,535 ± 283; WT: 644 ± 67 joules). The increase in exercise capacity in TRB3 TG mice was not associated with changes in glucose uptake or glycogen levels; however, these mice displayed a dramatic shift toward a more oxidative/fatigue-resistant (type I/IIA) muscle fiber type, including threefold more type I fibers in soleus muscles. Skeletal muscle from TRB3 TG mice had significantly decreased PPARα expression, twofold higher levels of miR208b and miR499, and corresponding increases in the myosin heavy chain isoforms Myh7 and Myb7b, which encode these microRNAs. These findings suggest that TRB3 regulates muscle fiber type via a peroxisome proliferator-activated receptor-α (PPAR-α)-regulated miR499/miR208b pathway, revealing a novel function for TRB3 in the regulation of skeletal muscle fiber type and exercise capacity."	"Novel MYH7 mutation associated with mild myopathy but life-threatening ventricular arrhythmias and noncompaction. NA"	"Comparison of gene and protein expressions in rats residing in standard cages with those having access to an exercise wheel. Lifelong physical inactivity is associated with morbidity in adulthood, possibly influenced by changes in gene and protein expressions occurring earlier in life. mRNA (Affymetrix gene array) and proteomic (2D-DIGE MALDI-TOF/MS) analyses were determined in cardiac tissue of young (3 months) and old (16 months) Sprague-Dawley rats housed with no access to physical activity (SED) versus an exercise wheel (EX). Unfavorable phenotypes for body weight, dyslipidemia, and tumorogenesis appeared more often in adult SED versus EX. No differentially expressed genes (DEGs) occurred between groups at 3 or 16 months. Within groups, SED and EX shared 215 age-associated DEGs. In SED, ten unique DEGs occurred with age; three had cell adhesion functions (fn1, lgals3, ncam2). In EX, five unique DEGs occurred with age; two involved hypothalamic, pituitary, and gonadal hormone axis (nrob2, xpnpep2). Protein expression involved in binding, sugar metabolic processes, and vascular regulation declined with age in SED (KNT1, ALBU, GPX1, PYGB, LDHB, G3P, PYGM, PGM1, ENOB). Protein expression increased with age in EX for ATP metabolic processes (MYH6, MYH7, ATP5J, ATPA) and vascular function (KNT1, ALBU, GPX1). Differences in select gene and protein expressions within sedentary and active animals occurred with age and contributed to distinct health-related phenotypes in adulthood. "	"Hypertrophic cardiomyopathy and Anderson-Fabry disease: unravelling septal hypertrophy with T1-mapping CMR. NA"	"Laing early-onset distal myopathy in a Belgian family. We report the first Belgian family with Laing early-onset distal myopathy (MPD1). The proposita started limping at age 7. Later, there was severe weakness of proximal and distal muscles, including neck flexors. Her daughter developed foot drop at age 4. Progressive weakness of distal limb extensor muscles and mild weakness of the neck flexor and proximal muscles were noted. In both patients, CK and nerve conductions were normal, but EMG showed a brief, small amplitude, abundant, polyphasic potential pattern. Heart and respiration were normal. Several muscle biopsies have been performed in each with various diagnoses, including aspecific myopathic changes, congenital fibre type disproportion, and denervation-reinnervation. Analysis of MYH7 revealed a c.4522_4524del mutation (p.Glu1508del). This appears to be a de novo mutation, which has been reported in French, Norwegian, and Finnish patients. "	"A low prevalence of sarcomeric gene variants in a Chinese cohort with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is genetically heterogeneous. It has been previously shown that LVNC is associated with defects in TAZ, DNTA, LDB3, YWHAE, MIB1, PRDM16, and sarcomeric genes. This study was aimed to investigate sarcomeric gene mutations in a Chinese population with LVNC. From 2004 to 2010, 57 unrelated Chinese patients with LVNC were recruited at Fuwai Hospital, Beijing, China. Detailed clinical evaluation was performed on the probands and available family members. DNA samples isolated from the peripheral blood of the index cases were screened for 10 sarcomeric genes, including MYH7, MYBPC3, MYL2, MYL3, MYH6, TNNC1, TNNT2, TNNI3, TPM1, and ACTC1. Seven heterozygous mutations (6 missense and 1 deletion) were identified in 7 (12 %) of the patients. These mutations were distributed among 4 genes, 4 in MYH7, and 1 each in ACTC1, TNNT2, and TPM1. Six of the mutations were novel and another one was reported previously. All mutations affected conserved amino acid residues and were predicted to alter the structure of the proteins by in silico analysis. No significant difference was observed between mutation-positive and mutation-negative patients with respect to clinical characteristics at baseline and mortality during follow-up. In conclusion, our study indicates that sarcomeric gene mutations are uncommon causes of LVNC in Chinese patients and genetic background of the disease may be divergent among the different races."	"Effects of a sucrose-enriched diet on the pattern of gene expression, contraction and Ca(2+) transport in Goto-Kakizaki type 2 diabetic rat heart. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus (T2DM), and cardiovascular disease is the major cause of morbidity and mortality in diabetic patients. A variety of diastolic and systolic dysfunctions have been demonstrated in type 2 diabetic heart. The consumption of sugar-sweetened beverages has been linked to rising rates of obesity, which in turn is a risk factor for development of T2DM. In this study, the effects of a sucrose-enriched diet on the pattern of gene expression, contraction and Ca(2+) transport in the Goto-Kakizaki T2DM rat heart were investigated. Genes encoding cardiac muscle proteins (Myh7, Mybpc3, Myl1, Myl3 and Mylpf), intercellular proteins (Gja4), cell membrane transport (Atp1b1), calcium channels (Cacna1c, Cacna1g and Cacnb1) and potassium channels (Kcnj11) were upregulated and genes encoding potassium channels (Kcnb1) were downregulated in GK compared with control rats. Genes encoding cardiac muscle proteins (Myh6, Mybpc3 and Tnn2), intercellular proteins (Gja1 and Gja4), intracellular Ca(2+) transport (Atp2a1 and Ryr2), cell membrane transport (Atp1a2 and Atp1b1) and potassium channel proteins (Kcnj2 and Kcnj8) were upregulated and genes encoding cardiac muscle proteins (Myh7) were downregulated in control rats fed sucrose compared with control rats. Genes encoding cardiac muscle proteins (Myh7) and potassium channel proteins (Kcnj11) were downregulated in control and GK rats fed sucrose compared with control and GK rats, respectively. The amplitude of shortening was reduced in myocytes from the control-sucrose group compared with control rats and in the GK-sucrose group compared with GK rats. The amplitude of the Ca(2+) transient was increased in myocytes from control-sucrose compared with control rats and decreased in GK-sucrose compared with GK rats. Subtle alterations in the pattern of expression of genes encoding a variety of cardiac muscle proteins are associated with changes in shortening and intracellular Ca(2+) transport in ventricular myocytes from GK T2DM and control rats fed a sucrose-enriched diet."	NA	NA	NA
+"MYL3"	"hypertrophic cardiomyopathy"	"Serum miR-206 as a biomarker for drug-induced skeletal muscle injury in rats. Creatine kinase (CK) and lactate dehydrogenase (LDH) serve as biomarkers for skeletal muscle injury in preclinical toxicity studies, but have a limitation regarding tissue specificity. Circulating miR-206 was recently reported to be a useful biomarker for skeletal muscle disorders in humans. Here, we sought to determine whether serum miR-206 can be used as a biomarker in preclinical toxicity studies to detect drug-induced skeletal muscle injury with higher sensitivity and specificity than the biomarkers CK, LDH, skeletal troponin I (sTnI), and myosin light chain 3 (Myl3). We established rat models of skeletal muscle injury through treatment with the muscle toxicant 2,3,5,6-tetramethyl-p-phenylenediamine (TMPD) as well as four in-house compounds. We found that serum miR-206 levels significantly increased after treatment with TMPD, and tended to be higher in rats treated with in-house compounds than in control rats. ROC analysis revealed that the specificity of serum miR-206 for detection of skeletal muscle injury was higher compared with those of other markers. Further, serum miR-206 levels were unchanged in rats with isoproterenol-induced cardiotoxicity. These findings demonstrate that serum miR-206 may serve as a highly specific biomarker for preclinical analysis of rats with drug-induced skeletal muscle injuries."	"Evaluation of main post-translational modifications occurring in naturally generated peptides during the ripening of Spanish dry-cured ham. Peptidyl post-translational modifications (PTMs) could influence the final quality of processed meat. In this study, the peptide oxidative phenomena in Spanish dry-cured ham (Biceps femoris muscle) was evaluated at different ripening times (9, 12, 15, 18 and 24 months of processing) evidencing interactions amongst the lipid and protein oxidation, major peptidyl PTMs and the release of free amino acids (FAAs). Results showed that 12 months of processing enabled the most abundant protein-bound carbonyls, while TBARS value was significantly favored (p &lt; 0.001) by ripening. However, FAAs were still intensively generated during overall ripening. Peptidomics and chemometrics further revealed that proteolysis mostly hampered the oxidized peptides rather than the deamidated ones during ripening. Myosin light chain (MYL1 and MYL3) showed high oxidative susceptibility owing to peptidyl methionine and proline oxidation as well as acetaldehyde adduct formation on lysine or histidine residues."	"Effect of Grilled Nux Vomica on Differential RNA Expression Profile of Gastrocnemius Muscle and Toll‑Like Receptor 4 (TLR-4)/Nuclear Factor kappa B (NF-κB) Signaling in Experimental Autoimmune Myasthenia Gravis Rats. BACKGROUND Myasthenia gravis (MG) is a progressive autoimmune disorder caused by the production of antibodies directed against acetylcholine receptors (AChRs), resulting in muscle weakness and fatigue. This study aimed to explore the effect and mechanism of grilled nux vomica (GNV) in experimental autoimmune myasthenia gravis (EAMG) rats. MATERIAL AND METHODS Rat 97-116 peptides were used to mediate disease in the EAMG model in SPF female Lewis rats. The treatment groups received grilled nux vomica (75 mg/kg, 150 mg/kg, and 225 mg/kg). The autoantibody and inflammatory cytokines levels were measured by enzyme-linked immunosorbent assay (ELISA). RNA profiling was performed on high-dose and model group rats. Profiling results and TLR-4/NF-kappaB signaling were validated by q-PCR and Western blot analysis. RESULTS The results showed that GNV could attenuate the symptoms of EAMG rats. There was a decreased level of AChR-ab, IFN-γ, TNF-alpha, IL-2, IL-4, and IL-17 levels, and an increased level of TGF-ß1. In total, 235 differentially expressed genes (DEGs), consisting of 175 upregulated DEGs and 60 downregulated DEGs, were identified. Functional annotation demonstrated that DEGs were largely associated with leukocyte cell-cell adhesion, NF-kappa B signaling pathway, muscle contraction, and cardiac muscle contraction pathway. Rac2, Itgb2, Lcp2, Myl3, and Tnni1 were considered as hub genes with a higher degree value in the protein-protein interaction (PPI) network. The q-PCR and Western blot results of hub genes were consistent with RNA profiles. GNV treatment also significantly reduced the TLR-4 and NF-kappaB p65 protein expression in EAMG rats. CONCLUSIONS These results indicate that grilled nux vomica ameliorates EAMG by depressing the TLR-4/NF-kappaB signaling pathway, and hub genes may serve as potential targets for MG treatment."	"A pilot study on searching for peri-nuclear NeuN-positive cells. The aim of this study was to find out neuron (-like) cells in peripheral organs by cell markers in rats. Adult male Sprague-Dawley rats were anaesthetized. Their organs including brain, heart, lung, liver, kidney, stomach, duodenum, and ileum were harvested. The mRNA and protein in these organs were extracted. RNA sequencing (RNA-Seq) was carried out, and NeuN, a &quot;specific&quot; marker for neuronal soma, was assayed with Western blotting. The sections of the aforementioned organs were obtained after a routine fixation (4% methanal)-dehydration (ethanol)-embedding (paraffin) process. NeuN in the sections and seven non-neuronal cell lines was analyzed by immunofluorescence (IF) or immunohistochemistry (IHC). Neuronal markers, such as Eno2, NeuN (Rbfox3), choline acetyltransferase (Chat), as well as tyrosine hydroxylase (Th), and neuronal-glial markers, e.g., glial fibrillary acidic protein (Gfap), S100b, 2', 3'-cyclic nucleotide 3'-phosphodiesterase (Cnp), and other related markers, were positively expressed in all the organs at mRNA level. NeuN was further analyzed by Western blotting. The IF and IHC assays showed that NeuN-positive cells were distributed in all the peripheral tissues (mainly peri-nuclear NeuN-positive cells) though with different patterns from that in brain (nuclear NeuN-positive cells), and a NeuN-negative tissue could not be found. Especially, NeuN and Myl3 co-expressed in the cytoplasm of myocardial cells, suggesting that NeuN could possess other functions than neuronal differentiation. Also, the protein was positively expressed in seven non-neuronal cell lines. Our findings suggested that NeuN-positive cells exist widely, and without identification of its distribution pattern, the specificity of NeuN for neurons could be limited."	"Slow skeletal muscle troponin T, titin and myosin light chain 3 are candidate prognostic biomarkers for Ewing's sarcoma. Ewing's sarcoma (ES) is a common malignant bone tumor in children and adolescents. Although great efforts have been made to understand the pathogenesis and development of ES, the underlying molecular mechanism remains unclear. The present study aimed to identify new key genes as potential biomarkers for the diagnosis, targeted therapy or prognosis of ES. mRNA expression profile chip data sets GSE17674, GSE17679 and GSE45544 were downloaded from the Gene Expression Omnibus database. Differentially expressed genes (DEGs) were screened using the R software limma package, and functional and pathway enrichment analyses were performed using the enrichplot package and GSEA software. The NetworkAnalyst online tool, as well as Cytoscape and its plug-ins cytoHubba and NetworkAnalyzer, were used to construct a protein-protein interaction network (PPI) and conduct module analysis to screen key (hub) genes. LABSO COX regression and overall survival (OS) analysis of the Hub genes were performed. A total of 211 DEGs were obtained by integrating and analyzing the three data sets. The functions and pathways of the DEGs were mainly associated with the regulation of small-molecule metabolic processes, cofactor-binding, amino acid, proteasome and ribosome biosynthesis in eukaryotes, as well as the Rac1, cell cycle and P53 signaling pathways. A total of one important module and 20 hub genes were screened from the PPI network using the Maximum Correlation Criteria algorithm of cytoHubba. LASSO COX regression results revealed that titin (TTN), fast skeletal muscle troponin T, skeletal muscle actin α-actin, nebulin, troponin C type 2 (fast), myosin light-chain 3 (MYL3), slow skeletal muscle troponin T (TNNT1), myosin-binding protein C1 slow-type, tropomyosin 3 and myosin heavy-chain 7 were associated with prognosis in patients with ES. The Kaplan-Meier curves demonstrated that high mRNA expression levels of TNNT1 (P&lt;0.001), TTN (P=0.049), titin-cap (P=0.04), tropomodulin 1 (P=0.011), troponin I2 fast skeletal type (P=0.021) and MYL3 (P=0.017) were associated with poor OS in patients with ES. In conclusion, the DEGs identified in the present study may be key genes in the pathogenesis of ES, three of which, namely TNNT1, TTN and MYL3, may be potential prognostic biomarkers for ES."	"Prevalence of TTR variants detected by whole-exome sequencing in hypertrophic cardiomyopathy. Background: A proportion of patients with hypertrophic cardiomyopathy (HCM) have a diagnosis of cardiac amyloidosis. Hereditary transthyretin amyloid cardiomyopathy (ATTRv-CM) is caused by mutations in the TTR gene. Our aim was to study the prevalence of potentially amyloidogenic TTR variants in a whole-exome sequencing (WES) study of a large HCM cohort. Methods and results: 770 consecutive HCM probands underwent WES and clinical characterisation. Patients with rare or known pathogenic variants in TTR underwent 99mTechnetium labelled 3,3-diphosphono-1,2-propanodicarboxylic acid (DPD) scintigraphy and were retrospectively re-assessed for clinical features of amyloidosis. Two patients had rare TTR variants of unknown significance and four had the known pathogenic V122I (p.V142I) variant (one homozygous and also heterozygous for a likely pathogenic MYL3 variant and another double heterozygous for a likely pathogenic MYBPC3 variant). Four out of 6 patients with TTR variants underwent DPD scintigraphy; the only positive study was in the patient with the homozygous V122I (p.V142I) variant. Conclusions: Pathogenic TTR variants are rare in carefully assessed HCM patients and may occur in double heterozygosity with pathogenic sarcomere variants. The lack of evidence for an amyloidosis phenotype in all but one TTR variant carrier illustrates the importance of complete clinical evaluation of HCM patients that harbour pathogenic TTR variants."	"Comparative transcriptomic analysis reveals beneficial effect of dietary mulberry leaves on the muscle quality of finishing pigs. The aim of this study was to investigate the effect of dietary mulberry leaves on the transcriptome profiles of finishing pigs. RNA-Seq was used to identify differentially expressed genes (DEGs) in the longissimus dorsi of 56 pigs fed either a traditional diet or diets supplemented with 3%, 6% or 9% mulberry leaf powder, and both gene ontology (GO) function and Kyoto encyclopedia of genes and genomes (KEGG) pathway enrichment analyses were performed. Furthermore, protein-protein interaction (PPI) network and the subnet module analysis were used to identify genes with beneficial potential, and quantitative real-time polymerase chain reaction (qRT-PCR) was used to validate the expression patterns revealed by RNA-Seq. Pigs fed with the 6% mulberry diet exhibited greater average daily gain, lower water loss and lower shear force than the control group and yielded 531 DEGs, including 271 and 260 upregulated and downregulated genes, respectively. Function analysis revealed that the DEGs were significantly enriched in functions related to muscle growth and development. Furthermore, several genes (i.e. ACOT4, ECHS1, HACD1, NPR1, ADCY2, MGLL and IRS1) were enriched in a KEGG pathway that was associated with fatty acid metabolism, and in the PPI subnet module, four of eight node genes, namely TNNC1, MYL3, TCAP and TNNT1, were associated with muscle formation and development. The upregulation of these genes, including TNNC1, TNNT1 and MYL3, was confirmed by qRT-PCR. Dietary mulberry leaves (6%) may improve the muscle quality of pigs by modulating the expression of several key genes, such as TNNC1, MYL3 and TNNT1."	"mRNA expression patterns in human myocardial tissue, pericardial fluid and blood, and its contribution to the diagnosis of cause of death. Gene expression has become an interesting research area in forensic pathology to investigate the process of death at the molecular level. The aims of this study were to analyze changes in gene expression patterns in relation to the cause of death, and to propose new molecular markers of myocardial ischemia of potential use for the postmortem diagnosis of early ischemic heart damage in cases of sudden cardiac death (SCD). We determined mRNA levels of five proteins related with ischemic myocardial damage and repair - TNNI3, MYL3, TGFB1, MMP9 and VEGFA - in specific sites of the myocardium, blood and pericardial fluid in samples from 30 cadavers with different causes of death (SCD, multiple trauma, mechanical asphyxia, and other natural deaths). TNNI3 expression in blood, and MMP9 expression in pericardial fluid, were significantly higher when the cause of death was mechanical asphyxia, probably because of the more sensitive response of these proteins to acute systemic hypoxia/ischemia. Specifically, among SCD cases, increased MYL3, VEGFA and MMP9 values in the anterior wall of the right ventricle were found when the confirmed cause of death was acute myocardial infarction (AMI). Higher TGFB1 expression was found in the interventricular septum when AMI was not the cause of death, most likely as a reflection of the short duration of ischemia. Molecular biology techniques can provide complementary tools for the forensic diagnosis of early ischemic myocardial damage and AMI, and may make it possible to determine the duration and severity of myocardial ischemia."	"A proteomic-based approach for the search of biomarkers in Iberian wild deer (Cervus elaphus) as indicators of meat quality. The positive perception of deer meat among consumers is growing. Consequently, further efforts are needed to control its meat quality. Specifically, the aim of this study was to search protein biomarkers in connection with tenderness and intramuscular fat (IMF) content of Iberian wild red deer (Cervus elaphus) meat. Twelve venison samples classified as tender, intermediate and tough meat, as well as with different IMF were studied, using quantitative proteomic by SWATH-MS combined with bioinformatic analyses. The study of muscle proteome showed significant differences among these three groups of meat samples, since five differentially abundant proteins (IVD, LAMB1, MYL3, SDHC and SDHA) and six (FABP4, IVD, LAMB1, MYL3, CRYZ and SERPINB6) were strongly correlated with tenderness and IMF, respectively. The proteomic approach provides protein biomarkers linked to venison meat quality and marked changes in proteins related to oxidoreductase complex in skeletal muscle. SIGNIFICANCE: Meat tenderness and IMF are major concerns in game meat. The proteomic approach demonstrated a strong correlation between proteins and these quality traits, despite the complexity of samples (wild animals hunted at different ages). Our results suggest that several proteins can be biomarkers and provide a molecular insight."	"Genetic Variants Are Not Rare in ICD Candidates with Dilated Cardiomyopathy: Time for Next-Generation Sequencing? Sudden cardiac death (SCD) risk stratification in dilated cardiomyopathy (DCM) has been based on left ventricular ejection fraction (LVEF), even though SCD may occur with LVEF &gt; 35%. Family history of unexplained SCD, especially in the young, raises concern about potential inheritable risk factors. It remains largely unknown how genetic tests can be integrated into clinical practice, particularly in the selection of implantable cardioverter defibrillator (ICD) candidates. We aimed to assess the diagnostic yield of genetic testing in DCM patients with a class I recommendation for ICD implantation, based on current guidelines. We included ambulatory stable adult patients with idiopathic or familial DCM with previously implanted ICD. Molecular analysis included 15 genes (LMNA, MYH7, MYBPC3, TNNT2, ACTC1, TPM1, CSRP3, TCAP, SGCD, PLN, MYL2, MYL3, TNNI3, TAZ, and LDB3) using next-generation sequencing. We evaluated 21 patients, 12 (57%) males and 9 (43%) with familial DCM, including 3 (14%) with a family history of premature unexplained SCD. Mean age at DCM diagnosis was 40 ± 2 years, and mean age at ICD implantation was 50 ± 12 years. LVEF was 27 ± 9%, and LV end-diastolic diameter was 65 ± 7 mm. Genetic variants were found in six (29%) patients, occurring in 5 genes: TPM1, TNNT2, MYH7, PLN, and MYBPC3. The majority were classified as variants of uncertain significance. Family history of SCD was present in both patients with PLN variants. In patients with DCM and ICD, genetic variants could be identified in a significant proportion of patients in several genes, highlighting the potential role of genetics in DCM SCD risk stratification."	"Identification of differentially expressed proteins in the injured lung from zinc chloride smoke inhalation based on proteomics analysis. Lung injury due to zinc chloride smoke inhalation is very common in military personnel and leads to a high incidence of pulmonary complications and mortality. The aim of this study was to uncover the underlying mechanisms of lung injury due to zinc chloride smoke inhalation using a rat model. Histopathology analysis of rat lungs after zinc chloride smoke inhalation was performed by using haematoxylin and eosin (H&amp;E) and Mallory staining. A lung injury rat model of zinc chloride smoke inhalation (smoke inhalation for 1, 2, 7 and 14 days) was developed. First, isobaric tags for relative and absolute quantization (iTRAQ) and weighted gene co-expression network analysis (WGCNA) were used to identify important differentially expressed proteins. Gene Ontology (GO) and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway analyses were used to study the biological functions of differentially expressed proteins. Then, analysis of lung injury repair-related differentially expressed proteins in the early (day 1 and day 2) and middle-late stages (day 7 and day 14) of lung injury after smoke inhalation was performed, followed by the protein-protein interaction (PPI) analysis of these differentially expressed proteins. Finally, the injury repair-related proteins PARK7 and FABP5 were validated by immunohistochemistry and western blot analysis. Morphological changes were observed in the lung tissues after zinc chloride smoke inhalation. A total of 27 common differentially expressed proteins were obtained on days 1, 2, 7 and 14 after smoke inhalation. WGCNA showed that the turquoise module (which involved 909 proteins) was most associated with smoke inhalation time. Myl3, Ckm, Adrm1 and Igfbp7 were identified in the early stages of lung injury repair. Gapdh, Acly, Tnni2, Acta1, Actn3, Pygm, Eno3 and Tpi1 (hub proteins in the PPI network) were identified in the middle-late stages of lung injury repair. Eno3 and Tpi1 were both involved in the glycolysis/gluconeogenesis signalling pathway. The expression of PARK7 and FABP5 was validated and was consistent with the proteomics analysis. The identified hub proteins and their related signalling pathways may play crucial roles in lung injury repair due to zinc chloride smoke inhalation."	"Evaluating the Clinical Validity of Hypertrophic Cardiomyopathy Genes. Genetic testing for families with hypertrophic cardiomyopathy (HCM) provides a significant opportunity to improve care. Recent trends to increase gene panel sizes often mean variants in genes with questionable association are reported to patients. Classification of HCM genes and variants is critical, as misclassification can lead to genetic misdiagnosis. We show the validity of previously reported HCM genes using an established method for evaluating gene-disease associations. A systematic approach was used to assess the validity of reported gene-disease associations, including associations with isolated HCM and syndromes including left ventricular hypertrophy. Genes were categorized as having definitive, strong, moderate, limited, or no evidence of disease causation. We also reviewed current variant classifications for HCM in ClinVar, a publicly available variant resource. Fifty-seven genes were selected for curation based on their frequent inclusion in HCM testing and prior association reports. Of 33 HCM genes, only 8 (24%) were categorized as definitive ( MYBPC3, MYH7, TNNT2, TNNI3, TPM1, ACTC1, MYL2, and MYL3); 3 had moderate evidence ( CSRP3, TNNC1, and JPH2; 33%); and 22 (66%) had limited (n=16) or no evidence (n=6). There were 12 of 24 syndromic genes definitively associated with isolated left ventricular hypertrophy. Of 4191 HCM variants in ClinVar, 31% were in genes with limited or no evidence of disease association. The majority of genes previously reported as causative of HCM and commonly included in diagnostic tests have limited or no evidence of disease association. Systematically curated HCM genes are essential to guide appropriate reporting of variants and ensure the best possible outcomes for HCM families."	"A Complete Absence of Missense Mutation in Myosin Regulatory and Essential Light Chain Genes of South Indian Hypertrophic and Dilated Cardiomyopathies. Myosin is a hexameric contractile protein composed of 2 heavy chains associated with 4 light chains of 2 distinct classes - 2 regulatory light chains (MYL2) and 2 essential light chains (MYL3). The myosin light chains stabilize the long alpha helical neck of the myosin head and regulate the myosin ATPase activities. Mutations in MYL2 and MYL3 are reported to be associated with cardiomyopathies. However, there is no study available on these genes in Indian cardiomyopathies, and therefore we planned to study them. For the first time we sequenced MYL2 and MYL3 genes in a total of 248 clinically well-characterized cardiomyopathies consisting of 101 hypertrophic and 147 dilated cases along with 207 healthy controls from south India. Our study revealed a total of 10 variations - 7 in MYL2 and 3 in MYL3, of which 3 are novel variations observed exclusively in cases. However, the 15 causative missense mutations previously reported are totally absent in our study, which showed that the sequences of MYL2 and MYL3 are highly conserved in Indian cases/controls. MYL2 and MYL3 mutations are rare and the least cause of cardiomyopathies in Indians."	"Duplication of a Single myhz1.1 Gene Facilitated the Ability of Goldfish (Carassius auratus) to Alter Fast Muscle Contractile Properties With Seasonal Temperature Change. Seasonal temperature changes markedly effect the swimming performance of some cyprinid fish acutely tested at different temperatures, involving a restructuring of skeletal muscle phenotype including changes in contractile properties and myosin heavy chain expression. We analyzed the transcriptome of fast myotomal muscle from goldfish (Carassius auratus L.) acclimated to either 8 or 25°C for 4 weeks (12 h light: 12 h dark) and identified 10 myosin heavy chains (myh) and 13 myosin light chain (myl) transcripts. Goldfish orthologs were classified based on zebrafish nomenclature as myhz1.1α, myhz1.1β, myhz1.1γ, myha, myhb, embryo_myh1, myh9b, smyh2, symh3, and myh11 (myosin heavy chains) and myl1a, myl1b, myl2, myl9a, myl9b, myl3, myl13, myl6, myl12.1a, myl12.1b, myl12.2a, myl12.2b, and myl10 (myosin light chains). The most abundantly expressed transcripts myhz1.1α, myhz1.1β, myhz1.1γ, myha, myl1a, myl1b, myl2, and myl3) were further investigated in fast skeletal muscle of goldfish acclimated to either 4, 8, 15, or 30°C for 12 weeks (12 h light:12 h dark). Total copy number for the myosin heavy chains showed a distinct optimum at 15°C (P &lt; 0.01). Together myhz1.1α and myhz1.1β comprised 90 to 97% of myhc transcripts below 15°C, but only 62% at 30°C. Whereas myhz1.1α and myhz1.1β were equally abundant at 4 and 8°C, myhz1.1β transcripts were 17 and 12 times higher than myhz1.1α at 15 and 30°C, respectively, (P &lt; 0.01). Myhz1.1γ expression was at least nine-fold higher at 30°C than at cooler temperatures (P &lt; 0.01). In contrast, the expression of myha and myosin light chains showed no consistent pattern with acclimation temperature. A phylogenetic analysis indicated that the previously reported ability of goldfish and common carp to alter contractile properties and myofibrillar ATPase activity with temperature acclimation was related to the duplication of a single myhz1.1 fast muscle myosin heavy chain found in basal cyprinids such as the zebrafish (Danio rerio)."	"Influence of oxidative damage to proteins on meat tenderness using a proteomics approach. The objective of this study was to evaluate the association between oxidative damage to proteins (represented by protein carbonylation) and beef tenderness. Three experimental groups were selected by shear force (SF): tender (38.2 ± 2.9 N), intermediate (51.9 ± 6.8 N), and tough meat (74.5 ± 7.8 N). Two-dimensional electrophoresis with hydrazide fluorophore derivatization was used. The structural proteins actin (ACTA1), myosin (MYL1 and MYL3), desmin (DES) and troponin T (TNNT1 and TNNT3), antioxidant proteins (PRDX1, PRDX2 and PARK7) and heat shock proteins (HSPB1, CRYAB and HSPB6) showed an increase in the oxidative damage in tender meat when compared to the intermediate and tough meat (P &lt; .05). Decrease in oxidative damage of the metabolic enzymes (TPI1, GAPDH and ENO3) were observed in tender meat group (P &lt; .05). The present results suggest that oxidation act on the proteins of different metabolic pathways and consequently affect meat tenderness in Angus crossbred cattle."	"Acute oral administration of L-leucine upregulates slow-fiber- and mitochondria-related genes in skeletal muscle of rats. Branched-chain amino acids promote both protein and mRNA synthesis through mechanistic target of rapamycin (mTOR) signaling. A previous report demonstrated that chronic branched-chain amino acid supplementation increased mitochondrial biogenesis in the skeletal muscle of middle-aged mice through activation of mTOR signaling. In this study, we hypothesized that the acute oral administration of L-leucine alone has the ability to alter the gene expression related to fiber type and metabolism in skeletal muscle of young rats through the activation of mTOR signaling. Although the gene expression of representative glycolytic enzymes (Hk2 and Eno3) was not altered, L-leucine administration (135 mg/100 g body weight) upregulated the expression of slow-fiber-related genes (Myh7, Myl3, and Tnni1) and a mitochondrial biogenesis-related gene (Ppargc1a) in the soleus and extensor digitorum longus muscles compared with the control. In addition, L-leucine treatment also upregulated the slow-fiber genes and mitochondrial gene expression in cultured C2C12 myotubes, whereas rapamycin inhibited the effects of L-leucine. However, L-alanine, L-phenylalanine, and L-valine treatment did not alter the expression of the fiber type- and metabolism-related genes as observed in L-leucine. Our results suggest that L-leucine may have the ability to alter skeletal muscle fiber type toward slow fiber and oxidative metabolism by upregulation of gene expression through mTOR signaling."	"Determining the Pathogenicity of a Genomic Variant of Uncertain Significance Using CRISPR/Cas9 and Human-Induced Pluripotent Stem Cells. The progression toward low-cost and rapid next-generation sequencing has uncovered a multitude of variants of uncertain significance (VUS) in both patients and asymptomatic &quot;healthy&quot; individuals. A VUS is a rare or novel variant for which disease pathogenicity has not been conclusively demonstrated or excluded, and thus cannot be definitively annotated. VUS, therefore, pose critical clinical interpretation and risk-assessment challenges, and new methods are urgently needed to better characterize their pathogenicity. To address this challenge and showcase the uncertainty surrounding genomic variant interpretation, we recruited a &quot;healthy&quot; asymptomatic individual, lacking cardiac-disease clinical history, carrying a hypertrophic cardiomyopathy (HCM)-associated genetic variant (NM_000258.2:c.170C&gt;A, NP_000249.1:p.Ala57Asp) in the sarcomeric gene MYL3, reported by the ClinVar database to be &quot;likely pathogenic.&quot; Human-induced pluripotent stem cells (iPSCs) were derived from the heterozygous VUS MYL3(170C&gt;A) carrier, and their genome was edited using CRISPR/Cas9 to generate 4 isogenic iPSC lines: (1) corrected &quot;healthy&quot; control; (2) homozygous VUS MYL3(170C&gt;A); (3) heterozygous frameshift mutation MYL3<sup>(170C&gt;A/fs</sup><sup>)</sup>; and (4) known heterozygous MYL3 pathogenic mutation (NM_000258.2:c.170C&gt;G), at the same nucleotide position as VUS MYL3(170C&gt;A), lines. Extensive assays including measurements of gene expression, sarcomere structure, cell size, contractility, action potentials, and calcium handling were performed on the isogenic iPSC-derived cardiomyocytes (iPSC-CMs). The heterozygous VUS MYL3(170C&gt;A)-iPSC-CMs did not show an HCM phenotype at the gene expression, morphology, or functional levels. Furthermore, genome-edited homozygous VUS MYL3(170C&gt;A)- and frameshift mutation MYL3<sup>(170C&gt;A/fs)</sup>-iPSC-CMs lines were also asymptomatic, supporting a benign assessment for this particular MYL3 variant. Further assessment of the pathogenic nature of a genome-edited isogenic line carrying a known pathogenic MYL3 mutation, MYL3(170C&gt;G), and a carrier-specific iPSC-CMs line, carrying a MYBPC3(961G&gt;A) HCM variant, demonstrated the ability of this combined platform to provide both pathogenic and benign assessments. Our study illustrates the ability of clustered regularly interspaced short palindromic repeats/Cas9 genome-editing of carrier-specific iPSCs to elucidate both benign and pathogenic HCM functional phenotypes in a carrier-specific manner in a dish. As such, this platform represents a promising VUS risk-assessment tool that can be used for assessing HCM-associated VUS specifically, and VUS in general, and thus significantly contribute to the arsenal of precision medicine tools available in this emerging field."	"Muscle differentiation induced up-regulation of calcium-related gene expression in quail myoblasts. In the poultry industry, the most important economic traits are meat quality and carcass yield. Thus, many studies were conducted to investigate the regulatory pathways during muscle differentiation. To gain insight of muscle differentiation mechanism during growth period, we identified and validated calcium-related genes which were highly expressed during muscle differentiation through mRNA sequencing analysis. We conducted next-generation-sequencing (NGS) analysis of mRNA from undifferentiated QM7 cells and differentiated QM7 cells (day 1 to day 3 of differentiation periods). Subsequently, we obtained calcium related genes related to muscle differentiation process and examined the expression patterns by quantitative reverse-transcription polymerase chain reaction (qRT-PCR). Through RNA sequencing analysis, we found that the transcription levels of six genes (troponin C1, slow skeletal and cardiac type [TNNC1], myosin light chain 1 [MYL1], MYL3, phospholamban [PLN], caveolin 3 [CAV3], and calsequestrin 2 [CASQ2]) particularly related to calcium regulation were gradually increased according to days of myotube differentiation. Subsequently, we validated the expression patterns of calcium-related genes in quail myoblasts. These results indicated that TNNC1, MYL1, MYL3, PLN, CAV3, CASQ2 responded to differentiation and growth performance in quail muscle. These results indicated that calcium regulation might play a critical role in muscle differentiation. Thus, these findings suggest that further studies would be warranted to investigate the role of calcium ion in muscle differentiation and could provide a useful biomarker for muscle differentiation and growth."	"Region of Interest analysis using mass spectrometry imaging of mitochondrial and sarcomeric proteins in acute cardiac infarction tissue. Matrix-assisted laser desorption ionization image mass spectrometry (MALDI-IMS) has been developed for the identification of peptides in various tissues. The MALDI-IMS signal distribution patterns and quantification of the signal intensities of the regions of interest (ROI) with healthy regions were compared for identification of the disease specific biomarkers. We performed a new ROI analysis using the conventional t-test and data number independent Cohen's d-value analysis. Using these techniques, we analysed heart tissues after acute myocardial infarction (AMI). As a result, IMS signals of mitochondrial adenosine triphosphate synthase alpha subunit (ATP5A), myosin-6/7(MYH6/7), aortic actin, and the myosin light chain 3 (MYL3) were identified in the infarcted region. In particular, the signals of MYH7 are significantly greater in the infarcted region using ROI analysis. ROI analysis using MALDI-IMS may be a promising technique for the identification of biomarkers for pathological studies that involve the comparison of diseased and control areas."	"Identification of sarcomeric variants in probands with a clinical diagnosis of arrhythmogenic right ventricular cardiomyopathy (ARVC). Arrhythmogenic right ventricular cardiomyopathy (ARVC) is an inherited cardiomyopathy characterized by ventricular arrhythmias and sudden death. Currently 60% of patients meeting Task Force Criteria (TFC) have an identifiable mutation in one of the desmosomal genes. As much overlap is described between other cardiomyopathies and ARVC, we examined the prevalence of rare, possibly pathogenic sarcomere variants in the ARVC population. One hundred and thirty-seven (137) individuals meeting 2010 TFC for a diagnosis of ARVC, negative for pathogenic desmosomal variants, TMEM43, SCN5A, and PLN were screened for variants in the sarcomere genes (ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNC1, TNNI3, TNNT2, and TPM1) through either clinical or research genetic testing. Six probands (6/137, 4%) were found to carry rare variants in the sarcomere genes. These variants have low prevalence in controls, are predicted damaging by Polyphen-2, and some of the variants are known pathogenic hypertrophic cardiomyopathy mutations. Sarcomere variant carriers had a phenotype that did not differ significantly from desmosomal mutation carriers. As most of these probands were the only affected individuals in their families, however, segregation data are noninformative. These data show variants in the sarcomere can be identified in individuals with an ARVC phenotype. Although rare and predicted damaging, proven functional and segregational evidence that these variants can cause ARVC is lacking. Therefore, caution is warranted in interpreting these variants when identified on large next-generation sequencing panels for cardiomyopathies."	"Cardiomyocytes have mosaic patterns of protein expression. Skeletal myocytes have well-established fast and slow twitch fibers with unique gene and protein specific expression patterns. By immunohistochemical staining, these show a mosaic pattern across myocytes. We hypothesized cardiac myocytes may behave similarly where some proteins are differentially expressed between mature cardiomyocytes. We utilized the tool HPASubC on over 52,000 cardiac images of the Human Protein Atlas to identify differential protein expression patterns by immunohistochemistry across the cardiomyocytes. We matched identified proteins to open chromatin and gene expression data. We identified 143 putative proteins with mosaic patterns of expression across the cardiomyocytes. We validated four of these proteins (MYL3, MYL4, PAM, and MYOM1) and demonstrated unique atrial or ventricular patterns of expression for each. Acetylation of histone H3K27 at the promoters of these four genes were consistent with the atrial/ventricular expression patterns. Despite the generally accepted homogeneity of cardiomyocytes, a small subset of proteins varies between cardiomyocytes in a mosaic pattern. This fundamental process has been previously uncharacterized. These changes may inform on different functional and disease-related activities of proteins in individual cardiomyocytes."	"High proportion of genetic cases in patients with advanced cardiomyopathy including a novel homozygous Plakophilin 2-gene mutation. Cardiomyopathies might lead to end-stage heart disease with the requirement of drastic treatments like bridging up to transplant or heart transplantation. A not precisely known proportion of these diseases are genetically determined. We genotyped 43 index-patients (30 DCM, 10 ARVC, 3 RCM) with advanced or end stage cardiomyopathy using a gene panel which covered 46 known cardiomyopathy disease genes. Fifty-three variants with possible impact on disease in 33 patients were identified. Of these 27 (51%) were classified as likely pathogenic or pathogenic in the MYH7, MYL2, MYL3, NEXN, TNNC1, TNNI3, DES, LMNA, PKP2, PLN, RBM20, TTN, and CRYAB genes. Fifty-six percent (n = 24) of index-patients carried a likely pathogenic or pathogenic mutation. Of these 75% (n = 18) were familial and 25% (n = 6) sporadic cases. However, severe cardiomyopathy seemed to be not characterized by a specific mutation profile. Remarkably, we identified a novel homozygous PKP2-missense variant in a large consanguineous family with sudden death in early childhood and several members with heart transplantation in adolescent age."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Proteomic Analysis of Chicken Skeletal Muscle during Embryonic Development. Embryonic growth and development of skeletal muscle is a major determinant of muscle mass, and has a significant effect on meat production in chicken. To assess the protein expression profiles during embryonic skeletal muscle development, we performed a proteomics analysis using isobaric tags for relative and absolute quantification (iTRAQ) in leg muscle tissues of female Xinghua chicken at embryonic age (E) 11, E16, and 1-day post hatch (D1). We identified 3,240 proteins in chicken embryonic muscle and 491 of them were differentially expressed (fold change ≥ 1.5 or ≤ 0.666 and p &lt; 0.05). There were 19 up- and 32 down-regulated proteins in E11 vs. E16 group, 238 up- and 227 down-regulated proteins in E11 vs. D1 group, and 13 up- and 5 down-regulated proteins in E16 vs. D1 group. Protein interaction network analyses indicated that these differentially expressed proteins were mainly involved in the pathway of protein synthesis, muscle contraction, and oxidative phosphorylation. Integrative analysis of proteome and our previous transcriptome data found 189 differentially expressed proteins that correlated with their mRNA level. The interactions between these proteins were also involved in muscle contraction and oxidative phosphorylation pathways. The lncRNA-protein interaction network found four proteins DMD, MYL3, TNNI2, and TNNT3 that are all involved in muscle contraction and may be lncRNA regulated. These results provide several candidate genes for further investigation into the molecular mechanisms of chicken embryonic muscle development, and enable us to better understanding their regulation networks and biochemical pathways."	"Assessment of Preclinical Liver and Skeletal Muscle Biomarkers Following Clofibrate Administration in Wistar Rats. Clofibrate is a known rodent hepatotoxicant classically associated with hepatocellular hypertrophy and increased serum activities of cellular alanine aminotransferase/aspartate aminotransferase (ALT/AST) in the absence of microscopic hepatocellular degeneration. At toxic dose, clofibrate induces liver and skeletal muscle injury. The objective of this study was to assess novel liver and skeletal muscle biomarkers following clofibrate administration in Wistar rats at different dose levels for 7 days. In addition to classical biomarkers, liver injury was assessed by cytokeratin 18 (CK18) cleaved form, high-mobility group box 1, arginase 1 (ARG1), microRNA 122 (miR-122), and glutamate dehydrogenase. Skeletal muscle injury was evaluated with fatty acid binding protein 3 (Fabp3) and myosin light chain 3 (Myl3). Clofibrate-induced hepatocellular hypertrophy and skeletal muscle degeneration (type I rich muscles) were noted microscopically. CK, Fabp3, and Myl3 elevations correlated to myofiber degeneration. Fabp3 and Myl3 outperformed CK for detection of myofiber degeneration of minimal severity. miR-122 and ARG1 results were significantly correlated and indicated the absence of liver toxicity at low doses of clofibrate, despite increased ALT/AST activities. Moreover, combining classical and novel biomarkers (Fabp3, Myl3, ARG1, and miR-122) can be considered a valuable strategy for differentiating increased transaminases due to liver toxicity from skeletal muscle toxicity."	"iTRAQ-based proteomic analysis reveals key proteins affecting muscle growth and lipid deposition in pigs. Growth rate and meat quality, two economically important traits in pigs, are controlled by multiple genes and biological pathways. In the present study, we performed a proteomic analysis of longissimus dorsi muscle from six-month-old pigs from two Chinese native mini-type breeds (TP and DSP) and two introduced western breeds (YY and LL) using isobaric tag for relative and absolute quantification (iTRAQ). In total, 4,815 peptides corresponding to 969 proteins were detected. Comparison of expression patterns between TP-DSP and YY-LL revealed 288 differentially expressed proteins (DEPs), of which 169 were up-regulated and 119 were down-regulated. Functional annotation suggested that 28 DEPs were related to muscle growth and 15 to lipid deposition. Protein interaction network predictions indicated that differences in muscle growth and muscle fibre between TP-DSP and YY-LL groups were regulated by ALDOC, ENO3, PGK1, PGK2, TNNT1, TNNT3, TPM1, TPM2, TPM3, MYL3, MYH4, and TNNC2, whereas differences in lipid deposition ability were regulated by LPL, APOA1, APOC3, ACADM, FABP3, ACADVL, ACAA2, ACAT1, HADH, and PECI. Twelve DEPs were analysed using parallel reaction monitoring to confirm the reliability of the iTRAQ analysis. Our findings provide new insights into key proteins involved in muscle growth and lipid deposition in the pig."	"Screening of the Filamin C Gene in a Large Cohort of Hypertrophic Cardiomyopathy Patients. Recent exome sequencing studies identified filamin C (FLNC) as a candidate gene for hypertrophic cardiomyopathy (HCM). Our aim was to determine the rate of FLNC candidate variants in a large cohort of HCM patients who were also sequenced for the main sarcomere genes. A total of 448 HCM patients were next generation-sequenced (semiconductor chip technology) for the MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1, and FLNC genes. We also sequenced 450 healthy controls from the same population. Based on the reported population frequencies, bioinformatic criteria, and familial segregation, we identified 20 FLNC candidate variants (13 new; 1 nonsense; and 19 missense) in 22 patients. Compared with the patients, only 1 of the control's missense variants was nonreported (P=0.007; Fisher exact probability test). Based on the familial segregation and the reported functional studies, 6 of the candidate variants (in 7 patients) were finally classified as likely pathogenic, 10 as variants of uncertain significance, and 4 as likely benign. We provide a compelling evidence of the involvement of FLNC in the development of HCM. Most of the FLNC variants were associated with mild forms of HCM and a reduced penetrance, with few affected in the families to confirm the segregation. Our work, together with others who found FLNC variants among patients with dilated and restrictive cardiomyopathies, pointed to this gene as an important cause of structural cardiomyopathies."	"Response of Novel Skeletal Muscle Biomarkers in Dogs to Drug-Induced Skeletal Muscle Injury or Sustained Endurance Exercise. The skeletal muscle (SKM) injury biomarkers, skeletal troponin I (sTnI), myosin light chain 3 (Myl3), and creatine kinase muscle isoform (Ckm) have been shown recently to be more sensitive and specific for monitoring drug-induced SKM injury than the conventional biomarkers, aspartate transaminase (AST) and creatine kinase (CK) enzymatic assays in rat toxicology studies. To evaluate the utility of these SKM biomarkers across species, they were assessed in 2 dog models: a drug-induced injury study in Beagle dogs and a 160 km endurance exercise run completed by Alaskan sled dogs. In the drug-induced injury model, mean sTnI and Myl3 plasma levels were 6- and 18-fold, respectively, compared with baseline as early as Study Day (SD) 15, while mean plasma AST and CK levels did not increase, and biopsy samples were non-remarkable for histopathology prior to SD 29 when degeneration was first noted. Peak group mean plasma responses over baseline for sTnI, Myl3, and Ckm biomarkers were 96-, 103-, and 11-fold, respectively, compared with 2.5-fold for AST and 3.8-fold for CK-enzymatic (CK-enz) assay. In the sled dog sustained exercise model, the peak response for all biomarkers was observed at the first sampling (2 h) after the completion of the run. The sTnI, Myl3, and Ckm mean fold peak values compared with baseline were 170-, 120-, and 150-fold, respectively, while AST increased 7-fold and CK-enz increased 29-fold. These findings support the conclusion that sTnI, Myl3, and Ckm are sensitive early tissue leakage biomarkers for monitoring SKM injury and effects of exercise in dog, extending their utility across preclinical species beyond the rat, and provide further support to investigate their translational utility to clinical trial settings to monitor for drug-induced SKM injury and ensure patient safety."	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Evaluation of Cardiac Toxicity Biomarkers in Rats from Different Laboratories. There is a great need for improved diagnostic and prognostic accuracy of potential cardiac toxicity in drug development. This study reports the evaluation of several commercially available biomarker kits by 3 institutions (SRI, Eli Lilly, and Pfizer) for the discrimination between myocardial degeneration/necrosis and cardiac hypertrophy as well as the assessment of the interlaboratory and interplatform variation in results. Serum concentrations of natriuretic peptides (N-terminal pro-atrial natriuretic peptide [NT-proANP] and N-terminal pro-brain natriuretic peptide [NT-proBNP]), cardiac and skeletal troponins (cTnI, cTnT, and sTnI), myosin light chain 3 (Myl3), and fatty acid binding protein 3 (FABP3) were assessed in rats treated with minoxidil (MNX) and isoproterenol (ISO). MNX caused increased heart-to-body weight ratios and prominent elevations in NT-proANP and NT-proBNP concentrations detected at 24-hr postdose without elevation in troponins, Myl3, or FABP3 and with no abnormal histopathological findings. ISO caused ventricular leukocyte infiltration, myocyte fibrosis, and necrosis with increased concentrations of the natriuretic peptides, cardiac troponins, and Myl3. These results reinforce the advantages of a multimarker strategy in elucidating the underlying cause of cardiac insult and detecting myocardial tissue damage at 24-hr posttreatment. The interlaboratory and interplatform comparison analyses also showed that the data obtained from different laboratories and platforms are highly correlated and reproducible, making these biomarkers widely applicable in preclinical studies."	"Spectrum of Mutations in Hypertrophic Cardiomyopathy Genes Among Tunisian Patients. Hypertrophic cardiomyopathy (HCM) is a common cardiac genetic disorder associated with heart failure and sudden death. Mutations in the cardiac sarcomere genes are found in approximately half of HCM patients and are more common among cases with a family history of the disease. Data about the mutational spectrum of the sarcomeric genes in HCM patients from Northern Africa are limited. The population of Tunisia is particularly interesting due to its Berber genetic background. As founder mutations have been reported in other disorders. We performed semiconductor chip (Ion Torrent PGM) next generation sequencing of the nine main sarcomeric genes (MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1) as well as the recently identified as an HCM gene, FLNC, in 45 Tunisian HCM patients. We found sarcomere gene polymorphisms in 12 patients (27%), with MYBPC3 and MYH7 representing 83% (10/12) of the mutations. One patient was homozygous for a new MYL3 mutation and two were double MYBPC3 + MYH7 mutation carriers. Screening of the FLNC gene identified three new mutations, which points to FLNC mutations as an important cause of HCM among Tunisians. The mutational background of HCM in Tunisia is heterogeneous. Unlike other Mendelian disorders, there were no highly prevalent mutations that could explain most of the cases. Our study also suggested that FLNC mutations may play a role on the risk for HCM among Tunisians."	"A Next-Generation Sequencing Approach to Identify Gene Mutations in Early- and Late-Onset Hypertrophic Cardiomyopathy Patients of an Italian Cohort. Sequencing of sarcomere protein genes in patients fulfilling the clinical diagnostic criteria for hypertrophic cardiomyopathy (HCM) identifies a disease-causing mutation in 35% to 60% of cases. Age at diagnosis and family history may increase the yield of mutations screening. In order to assess whether Next-Generation Sequencing (NGS) may fulfil the molecular diagnostic needs in HCM, we included 17 HCM-related genes in a sequencing panel run on PGM IonTorrent. We selected 70 HCM patients, 35 with early (≤25 years) and 35 with late (≥65 years) diagnosis of disease onset. All samples had a 98.6% average of target regions, with coverage higher than 20× (mean coverage 620×). We identified 41 different mutations (seven of them novel) in nine genes: MYBPC3 (17/41 = 41%); MYH7 (10/41 = 24%); TNNT2, CAV3 and MYH6 (3/41 = 7.5% each); TNNI3 (2/41 = 5%); GLA, MYL2, and MYL3 (1/41=2.5% each). Mutation detection rate was 30/35 (85.7%) in early-onset and 8/35 (22.9%) in late-onset HCM patients, respectively (p &lt; 0.0001). The overall detection rate for patients with positive family history was 84%, and 90.5% in patients with early disease onset. In our study NGS revealed higher mutations yield in patients with early onset and with a family history of HCM. Appropriate patient selection can increase the yield of genetic testing and make diagnostic testing cost-effective. "	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"Biomarker evaluation of skeletal muscle toxicity following clofibrate administration in rats. The use of sensitive biomarkers to monitor skeletal muscle toxicity in preclinical toxicity studies is important for the risk assessment in humans during the development of a novel compound. Skeletal muscle toxicity in Sprague Dawley Rats was induced with clofibrate at different dose levels for 7 days to compare standard clinical pathology assays with novel skeletal muscle and cardiac muscle biomarkers, gene expression and histopathological changes. The standard clinical pathology assays aspartate aminotransferase (AST), alanine aminotransferase (ALT), and creatine kinase (CK) enzyme activity were compared to novel biomarkers fatty acid binding protein 3 (Fabp3), myosin light chain 3 (Myl3), muscular isoform of CK immunoreactivity (three isoforms CKBB, CKMM, CKMB), parvalbumin (Prv), skeletal troponin I (sTnI), cardiac troponin T (cTnT), cardiac troponin I (cTnI), CKMM, and myoglobin (Myo). The biomarker elevations were correlated to histopathological findings detected in several muscles and gene expression changes. Clofibrate predominantly induced skeletal muscle toxicity of type I fibers of low magnitude. Useful biomarkers for skeletal muscle toxicity were AST, Fabp3, Myl3, (CKMB) and sTnI. Measurements of CK enzyme activity by a standard clinical assay were not useful for monitoring clofibrate-induced skeletal muscle toxicity in the rat at the doses used in this study. "	"Transcriptional analysis of atrial and ventricular muscles from rats. Previous studies have used microarray technology to explore gene expression differences between the atrium and the ventricle. However, selection criteria for the differentially expressed genes (DEGs) based only on either the fold change or the P value in these studies. Here, we aim to further identify the DEGs by setting a P value threshold of &lt;0.05 and a fold change of &gt;2, which may yield more specific gene expression differences between the atrium and the ventricle. Gene expression profiling of the atrial appendages and the ventricular free walls in 13 normal male Sprague Dawley rats were obtained from the Gene Expression Omnibus data base (accession No.: GSE5266). DEGs between the atrial and the ventricular samples were screened using the microarray significance analysis. The underlying functions of DEGs were predicted by gene ontology and pathway enrichment analyses. In addition, we also constructed protein interactions networks, and analyzed the function modules of the interacting proteins by MCODE. A total of 757DEGs between the atria and the ventricles were found. The genes highly expressed in the ventricular myocytes were associated with muscle contraction (e.g., Myl1, Myl2, Myl3, and Myh7) and energy production (e.g., Acadm and Acsl6), while the genes preferentially expressed in the atrial myocytes were involved in the integration of neurohumoral signals (e.g., Cldn1). These conclusions were confirmed by pathway enrichment and function module analyses. Our present study provides an overview of the transcript level differences between the atrium and the ventricle, which may be useful for determination of potential biomarkers. "	"Muscle-Derived Proteins as Serum Biomarkers for Monitoring Disease Progression in Three Forms of Muscular Dystrophy. Identifying translatable, non-invasive biomarkers of muscular dystrophy that better reflect the disease pathology than those currently available would aid the development of new therapies, the monitoring of disease progression and the response to therapy. The goal of this study was to evaluate a panel of serum protein biomarkers with the potential to specifically detect skeletal muscle injury. Serum concentrations of skeletal troponin I (sTnI), myosin light chain 3 (Myl3), fatty acid binding protein 3 (FABP3) and muscle-type creatine kinase (CKM) proteins were measured in 74 Duchenne muscular dystrophy (DMD), 38 Becker muscular dystrophy (BMD) and 49 Limb-girdle muscular dystrophy type 2B (LGMD2B) patients and 32 healthy controls. All four proteins were significantly elevated in the serum of these three muscular dystrophy patient populations when compared to healthy controls, but, interestingly, displayed different profiles depending on the type of muscular dystrophy. Additionally, the effects of patient age, ambulatory status, cardiac function and treatment status on the serum concentrations of the proteins were investigated. Statistical analysis revealed correlations between the serum concentrations and certain clinical endpoints including forced vital capacity in DMD patients and the time to walk ten meters in LGMD2B patients. Serum concentrations of these proteins were also elevated in two preclinical models of muscular dystrophy, the mdx mouse and the golden-retriever muscular dystrophy dog. These proteins, therefore, are potential muscular dystrophy biomarkers for monitoring disease progression and therapeutic response in both preclinical and clinical studies."	"Genetic profile of hypertrophic cardiomyopathy in Tunisia: Is it different? We recently performed next generation sequencing (NGS) genetic screening in 11 consecutive and unrelated Tunisian HCM probands seen at Habib Thameur Hospital in Tunis in the first 6 months of 2014, as part of a cooperative study between our Institutions. The clinical diagnosis of HCM was made according to standard criteria. Using the Illumina platform, a panel of 12 genes was analyzed including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2 and MYL3), troponin-T (TNNT2), troponin-I (TNNI3), troponin-C (TNNC1), alpha-tropomyosin (TPM1), alpha-actin (ACTC1), alpha-actinin-2 (ACTN2) as well as alfa-galactosidase (GLA), 5'-AMP-activated protein (PKRAG2), transthyretin (TTR) and lysosomal-associated membrane protein-2 (LAMP2) for exclusion of phenocopies. Our preliminary data, despite limitations inherent to the small sample size, suggest that HCM in Tunisia may have a peculiar genetic background which privileges rare genes overs the classic HCM-associated MHY7 and MYBPC3 genes. "	"Evaluation of the Relative Performance of Drug-Induced Skeletal Muscle Injury Biomarkers in Rats. Novel skeletal muscle (SKM) injury biomarkers that have recently been identified may outperform or add value to the conventional SKM injury biomarkers aspartate transaminase (AST) and creatine kinase (CK). The relative performance of these novel biomarkers of SKM injury including skeletal troponin I (sTnI), myosin light chain 3 (Myl3), CK M Isoform (Ckm), and fatty acid binding protein 3 (Fabp3) was assessed in 34 rat studies including both SKM toxicants and compounds with toxicities in tissues other than SKM. sTnI, Myl3, Ckm, and Fabp3 all outperformed CK or AST and/or added value for the diagnosis of drug-induced SKM injury (ie, myocyte degeneration/necrosis). In addition, when used in conjunction with CK and AST, sTnI, Myl3, CKm, and Fabp3 individually and collectively improved diagnostic sensitivity and specificity, as well as diagnostic certainty, for SKM injury and responded in a sensitive manner to low levels of SKM degeneration/necrosis in rats. These findings support the proposal that sTnI, Myl3, Ckm, and Fabp3 are suitable for voluntary use, in conjunction with CK and AST, in regulatory safety studies in rats to monitor drug-induced SKM injury and the potential translational use of these exploratory biomarkers in early clinical trials to ensure patient safety. "	"Myosin content of individual human muscle fibers isolated by laser capture microdissection. Muscle fiber composition correlates with insulin resistance, and exercise training can increase slow-twitch (type I) fibers and, thereby, mitigate diabetes risk. Human skeletal muscle is made up of three distinct fiber types, but muscle contains many more isoforms of myosin heavy and light chains, which are coded by 15 and 11 different genes, respectively. Laser capture microdissection techniques allow assessment of mRNA and protein content in individual fibers. We found that specific human fiber types contain different mixtures of myosin heavy and light chains. Fast-twitch (type IIx) fibers consistently contained myosin heavy chains 1, 2, and 4 and myosin light chain 1. Type I fibers always contained myosin heavy chains 6 and 7 (MYH6 and MYH7) and myosin light chain 3 (MYL3), whereas MYH6, MYH7, and MYL3 were nearly absent from type IIx fibers. In contrast to cardiomyocytes, where MYH6 (also known as α-myosin heavy chain) is seen solely in fast-twitch cells, only slow-twitch fibers of skeletal muscle contained MYH6. Classical fast myosin heavy chains (MHC1, MHC2, and MHC4) were present in variable proportions in all fiber types, but significant MYH6 and MYH7 expression indicated slow-twitch phenotype, and the absence of these two isoforms determined a fast-twitch phenotype. The mixed myosin heavy and light chain content of type IIa fibers was consistent with its role as a transition between fast and slow phenotypes. These new observations suggest that the presence or absence of MYH6 and MYH7 proteins dictates the slow- or fast-twitch phenotype in skeletal muscle. "	"Molecular cloning and mRNA expression analysis of sheep MYL3 and MYL4 genes. Using longissimus dorsi muscles of Dorper sheep as the experimental materials, the complete cDNAs of ovine MYL3 (Myosin light chain 3) and MYL4 (Myosin light chain 4) genes were cloned using RT-PCR, 5' RACE and 3' RACE. We obtained 925-bp and 869-bp full-length cDNAs and submitted their sequences to GenBank as accession numbers of KJ710703 and KJ768855, respectively. The cDNAs contained 600-bp and 582-bp open reading frames (ORFs) and encoded proteins comprising 199 and 193 amino acid residues, respectively. Neither protein was predicted to have a signal peptide, but both were predicted to have several N-glycosylation, O-glycosylation, and phosphorylation sites. The secondary structures of MYL3 and MYL4 were predicted to be 40.70% and 48.70% α- helical, respectively. Sequence alignment showed that the MYL3 and MYL4 proteins of Ovis aries both shared more than 91% amino acid sequence similarity with those of Mus musculus, Homo sapiens, Rattus norvegicus, Bos taurus, and Sus scrofa. The levels of MYL3 and MYL4 mRNA in various sheep tissues were determined using qRT-PCR. The results showed that both mRNAs were highly expressed in the heart. This study has established a foundation for further investigation of the ovine MYL3 and MYL4 genes. "	"Evaluation of microRNAs-208 and 133a/b as differential biomarkers of acute cardiac and skeletal muscle toxicity in rats. Conventional circulating biomarkers of cardiac and skeletal muscle (SKM) toxicity lack specificity and/or have a short half-life. MicroRNAs (miRNAs) are currently being assessed as biomarkers of tissue injury based on their long half-life in blood and selective expression in certain tissues. To assess the utility of miRNAs as biomarkers of cardiac and SKM injury, male Sprague-Dawley rats received a single dose of isoproterenol (ISO); metaproterenol (MET); allylamine (AAM); mitoxantrone (MIT); acetaminophen (APAP) or vehicle. Blood and tissues were collected from rats in each group at 4, 24 and 48h. ISO, MET, and AAM induced cardiac and SKM lesions and APAP induced liver specific lesions. There was no evidence of tissue injury with MIT by histopathology. Serum levels of candidate miRNAs were compared to conventional serum biomarkers of SKM/cardiac toxicity. Increases in heart specific miR-208 only occurred in rats with cardiac lesions alone and were increased for a longer duration than cardiac troponin and FABP3 (cardiac biomarkers). ISO, MET and AAM induced increases in MyL3 and skeletal muscle troponin (sTnl) (SKM biomarkers). MIT induced large increases in sTnl indicative of SKM toxicity, but sTnl levels were also increased in APAP-treated rats that lacked SKM toxicity. Serum levels of miR-133a/b (enriched in cardiac and SKM) increased following ISO, MET, AAM and MIT treatments but were absent in APAP-treated rats. Our results suggest that miR-133a/b are sensitive and specific markers of SKM and cardiac toxicity and that miR-208 used in combination with miR-133a/b can be used to differentiate cardiac from SKM toxicity."	"Targeted next-generation sequencing of candidate genes reveals novel mutations in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a major cause of sudden cardiac death and heart failure, and it is characterized by genetic and clinical heterogeneity, even for some patients with a very poor clinical prognosis; in the majority of cases, DCM necessitates a heart transplant. Genetic mutations have long been considered to be associated with this disease. At present, mutations in over 50 genes related to DCM have been documented. This study was carried out to elucidate the characteristics of gene mutations in patients with DCM. The candidate genes that may cause DCM include MYBPC3, MYH6, MYH7, LMNA, TNNT2, TNNI3, MYPN, MYL3, TPM1, SCN5A, DES, ACTC1 and RBM20. Using next-generation sequencing (NGS) and subsequent mutation confirmation with traditional capillary Sanger sequencing analysis, possible causative non-synonymous mutations were identified in ~57% (12/21) of patients with DCM. As a result, 7 novel mutations (MYPN, p.E630K; TNNT2, p.G180A; MYH6, p.R1047C; TNNC1, p.D3V; DES, p.R386H; MYBPC3, p.C1124F; and MYL3, p.D126G), 3 variants of uncertain significance (RBM20, p.R1182H; MYH6, p.T1253M; and VCL, p.M209L), and 2 known mutations (MYH7, p.A26V and MYBPC3, p.R160W) were revealed to be associated with DCM. The mutations were most frequently found in the sarcomere (MYH6, MYBPC3, MYH7, TNNC1, TNNT2 and MYL3) and cytoskeletal (MYPN, DES and VCL) genes. As genetic testing is a useful tool in the clinical management of disease, testing for pathogenic mutations is beneficial to the treatment of patients with DCM and may assist in predicting disease risk for their family members before the onset of symptoms."	"Whole exome sequencing combined with integrated variant annotation prediction identifies a causative myosin essential light chain variant in hypertrophic cardiomyopathy. The development of candidate gene approaches to enable molecular diagnosis of hypertrophic cardiomyopathy (HCM) has required extensive and prolonged efforts. Whole exome sequencing (WES) technologies have already accelerated genetic studies of Mendelian disorders, yielding approximately 30% diagnostic success. As a result, there is great interest in extending the use of WES to any of Mendelian diseases. This study investigated the potential of WES for molecular diagnosis of HCM. WES was performed on seven relatives from a large HCM family with a clear HCM phenotype (five clinically affected and two unaffected) in the Kanazawa University Hypertrophic Cardiomyopathy Registry. Serial bioinformatics filtering methods as well as using combined annotation dependent depletion (CADD) score and high heart expression (HHE) gene data were applied to detect the causative variant. Moreover, additional carriers of the variant were investigated in the HCM registry, and clinical characteristics harboring the variant were collected and evaluated. WES detected 60020 rare variants in the large HCM family. Of those, 3439 were missense, nonsense, splice-site, or frameshift variants. After genotype-phenotype matching, 13 putative variants remained. Using CADD score and HHE gene data, the number of candidates was reduced to one, a variant in the myosin essential light chain (MYL3, NM_000258.2:c.281G&gt;A, p.Arg94His) that was shared by the five affected subjects. Additional screening of the HCM registry (n=600) identified two more subjects with this variant. Serial assessments of the variant carriers revealed the following phenotypic characteristics: (1) disease-penetrance of 88%; (2) all clinically affected carriers exhibited asymmetric septal hypertrophy with a substantial maximum left ventricular wall thickness of 18±3mm without any obstruction. WES combined with CADD score and HHE gene data may be useful even in HCM. Furthermore, the MYL3 Arg94His variant was associated with high disease penetrance and substantial interventricular septal hypertrophy."	"Comparative transcriptome analysis of atrial septal defect identifies dysregulated genes during heart septum morphogenesis. Congenital heart disease (CHD) is one of most common birth defects, causing fetal loss and death in newborn all over the world. Atrial and ventricular septal defects were the most common CHD subtypes in most districts. During the past decades, several genes were identified to control atrial septum formation, and mutations of these genes can cause cardiac septation defects. However, the pathogenic mechanism of ASD on transcriptional levels has not been well elucidated yet. Herein, we performed comparative transcriptome analysis between normal and atrial septal defect (ASD) patients by Illumina RNA sequencing (RNA-seq). Advanced bioinformatic analyses were employed to identify dysregulated genes in ASD. The results indicated that cardiac specific transcriptional factors (GATA4 and NKX2-5), extracellular signal molecules (VEGFA and BMP10) and cardiac sarcomeric proteins (MYL2, MYL3, MYH7, TNNT1 and TNNT3) were downregulated in ASD which may affect heart atrial septum formation, cardiomyocyte proliferation and cardiac muscle development. Importantly, cell cycle was dominant pathway among downregulated genes, and decreased expression of the proteins included in cell cycle may disturb cardiomyocyte growth and differentiation during atrial septum formation. Our study provided evidences of understanding pathogenic mechanism of ASD and resource for validation of CHD genomic studies. "	"Targeted next-generation sequencing (NGS) of nine candidate genes with custom AmpliSeq in patients and a cardiomyopathy risk group. Hypertrophic cardiomyopathy is a common genetic cardiac disease. Prevention and early diagnosis of this disease are very important. Because of the large number of causative genes and the high rate of mutations involved in the pathogenesis of this disease, traditional methods of early diagnosis are ineffective. We developed a custom AmpliSeq panel for NGS sequencing of the coding sequences of ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNI3, TNNT2, TPM1, and CASQ2. A genetic analysis of student cohorts (with and without cardiomyopathy risk in their medical histories) and patients with cardiomyopathies was performed. For the statistical and bioinformatics analysis, Polyphen2, SIFT, SnpSift and PLINK software were used. To select genetic markers in the patients with cardiomyopathy and in the students of the high risk group, four additive models were applied. Our AmpliSeq custom panel allowed us to efficiently explore targeted sequences. Based on the score analysis, we detected three substitutions in the MYBPC3 and CASQ2 genes and six combinations between loci in the MYBPC3, MYH7 and CASQ2 genes that were responsible for cardiomyopathy risk in our cohorts. We also detected substitutions in the TNNT2 gene that can be considered as protective against cardiomyopathy. We used NGS with AmpliSeq libraries and Ion PGM sequencing to develop improved predictive information for patients at risk of cardiomyopathy."	"Therapeutic Molecular Phenotype of β-Blocker-Associated Reverse-Remodeling in Nonischemic Dilated Cardiomyopathy. When β-blockers produce reverse-remodeling in idiopathic dilated cardiomyopathy, they partially reverse changes in fetal-adult/contractile protein, natriuretic peptide, SR-Ca(2+)-ATPase gene program constituents. The objective of the current study was to further test the hypothesis that reverse-remodeling is associated with favorable changes in myocardial gene expression by measuring additional contractile, signaling, and metabolic genes that exhibit a fetal/adult expression predominance, are thyroid hormone-responsive, and are regulated by β1-adrenergic receptor signaling. A secondary objective was to identify which of these putative regulatory networks is most closely associated with observed changes. Forty-seven patients with idiopathic dilated cardiomyopathy (left ventricular ejection fraction, 0.24±0.09) were randomized to the adrenergic-receptor blockers metoprolol (β1-selective), metoprolol+doxazosin (β1/α1), or carvedilol (β1/β2/α1). Serial radionuclide ventriculography and endomyocardial biopsies were performed at baseline, 3, and 12 months. Expression of 50 mRNA gene products was measured by quantitative polymerase chain reaction. Thirty-one patients achieved left ventricular ejection fraction reverse-remodeling response defined as improvement by ≥0.08 at 12 months or by ≥0.05 at 3 months (Δ left ventricular ejection fraction, 0.21±0.10). Changes in gene expression in responders versus nonresponders were decreases in NPPA and NPPB and increases in MYH6, ATP2A2, PLN, RYR2, ADRA1A, ADRB1, MYL3, PDFKM, PDHX, and CPT1B. All except PDHX involved increase in adult or decrease in fetal cardiac genes, but 100% were concordant with changes predicted by inhibition of β1-adrenergic signaling. In addition to known gene expression changes, additional calcium-handling, sarcomeric, adrenergic signaling, and metabolic genes were associated with reverse-remodeling. The pattern suggests a fetal-adult paradigm but may be because of reversal of gene expression controlled by a β1-adrenergic receptor gene network. URL: www.clinicaltrials.gov. Unique Identifier: NCT01798992."	"Coexistence of Digenic Mutations in Both Thin (TPM1) and Thick (MYH7) Filaments of Sarcomeric Genes Leads to Severe Hypertrophic Cardiomyopathy in a South Indian FHCM. Mutations in sarcomeric genes are the leading cause for cardiomyopathies. However, not many genetic studies have been carried out on Indian cardiomyopathy patients. We performed sequence analyses of a thin filament sarcomeric gene, α-tropomyosin (TPM1), in 101 hypertrophic cardiomyopathy (HCM) patients and 147 dilated cardiomyopathy (DCM) patients against 207 ethnically matched healthy controls, revealing 13 single nucleotide polymorphisms (SNPs). Of these, one mutant, S215L, was identified in two unrelated HCM cases-patient #1, aged 44, and patient #2, aged 65-and was cosegregating with disease in these families as an autosomal dominant trait. In contrast, S215L was completely absent in 147 DCM and 207 controls. Patient #1 showed a more severe disease phenotype, with poor prognosis and a family history of sudden cardiac death, than patient #2. Therefore, these two patients and the family members positive for S215L were further screened for variations in MYH7, MYBPC3, TNNT2, TNNI3, MYL2, MYL3, and ACTC. Interestingly, two novel thick filaments, D896N (homozygous) and I524K (heterozygous) mutations, in the MYH7 gene were identified exclusively in patient #1 and his family members. Thus, we strongly suggest that the coexistence of these digenic mutations is rare, but leads to severe hypertrophy in a South Indian familial hypertrophic cardiomyopathy (FHCM)."	"Mertk deficiency alters expression of micrornas in the retinal pigment epithelium cells. Phagocytic clearance of the spent photoreceptor outer segments (OS) by RPE cells is regulated by circadian rhythm cycle and is essential for photoreceptor integrity and function. Mertk regulates RPE phagocytosis and a deficiency in Mertk causes photoreceptor degeneration and visual loss. This study aimed to investigate Mertk regulation of the microRNAs (miRNA), potentially regulating expression of their target genes, which affect phagocytosis. The differentially expressed miRNAs were identified using miRCURY(TM) microRNA Arrays from total RNA isolated at 0900 h and 1900 h from the mechanically dissociated RPE sheets of the WT and Mertk (-/-) mice, which were housed in a 12-h light-dark cycle with the lighting onset at 0700 h (7:00am). Validation of the differentially expressed miRNAs and assessment of the putative miRNA target gene expression were performed by real-time PCR. Among the differentially expressed miRNAs in the Mertk (-/-) RPE, seven miRNAs were up-regulated and 13 were down-regulated in the morning groups. Similarly, 24 miRNAs were found to be up-regulated and 13 were down-regulated in the evening groups. To search for those that may participate in regulating expression of cytoskeletal proteins, we examined the predicted target genes that might participate in phagocytosis were examined by real-time PCR. Of nine potential altered targets, four deregulated genes were myosin subunits. Notably, multiple members of the 21 up-regulated miRNAs can theoretically recognize these down-regulated mRNAs, particularly MyH14 and Myl3. This study shows that loss of Mertk alters miRNA expression, which in turn affects expression of the downstream target genes, potentially affecting phagocytosis. "	"A minimal dose of electrically induced muscle activity regulates distinct gene signaling pathways in humans with spinal cord injury. Paralysis after a spinal cord injury (SCI) induces physiological adaptations that compromise the musculoskeletal and metabolic systems. Unlike non-SCI individuals, people with spinal cord injury experience minimal muscle activity which compromises optimal glucose utilization and metabolic control. Acute or chronic muscle activity, induced through electrical stimulation, may regulate key genes that enhance oxidative metabolism in paralyzed muscle. We investigated the short and long term effects of electrically induced exercise on mRNA expression of human paralyzed muscle. We developed an exercise dose that activated the muscle for only 0.6% of the day. The short term effects were assessed 3 hours after a single dose of exercise, while the long term effects were assessed after training 5 days per week for at least one year (adherence 81%). We found a single dose of exercise regulated 117 biological pathways as compared to 35 pathways after one year of training. A single dose of electrical stimulation increased the mRNA expression of transcriptional, translational, and enzyme regulators of metabolism important to shift muscle toward an oxidative phenotype (PGC-1α, NR4A3, IFRD1, ABRA, PDK4). However, chronic training increased the mRNA expression of specific metabolic pathway genes (BRP44, BRP44L, SDHB, ACADVL), mitochondrial fission and fusion genes (MFF, MFN1, MFN2), and slow muscle fiber genes (MYH6, MYH7, MYL3, MYL2). These findings support that a dose of electrical stimulation (∼10 minutes/day) regulates metabolic gene signaling pathways in human paralyzed muscle. Regulating these pathways early after SCI may contribute to reducing diabetes in people with longstanding paralysis from SCI. "	"Mutation analysis of the main hypertrophic cardiomyopathy genes using multiplex amplification and semiconductor next-generation sequencing. Mutations in at least 30 genes have been linked to hypertrophic cardiomyopathy (HCM). Due to the large size of the main HCM genes, Sanger sequencing is labor intensive and expensive. The purpose was to develop a next-generation sequencing (NGS) procedure for the main HCM genes. METHODS AND RESULTS: Multiplex amplification of the coding exons of MYH7,MYBPC3,TNNT2,TNNI3,ACTC1,TNNC1,MYL2,MYL3, and TPM1 was designated, followed by NGS with the Ion Torrent PGM (Life Technologies). A total of 8 pools containing DNA from HCM patients were sequenced in a 2-step approach. First, a total of 60 patients (validation cohort) underwent both PGM and Sanger sequencing for the 9 genes. No false-negative variants were found on NGS (100% sensitivity), and a specificity of 97% and 80% was achieved for single-nucleotide and insertion/deletion variants, respectively. Second, the PGM was used to search for mutations in a total of 76 cases not previously studied (discovery cohort). A total of 19 putative mutations were identified in the discovery pools, which were confirmed and assigned to specific patients on Sanger sequencing. An NGS procedure has been developed for the main sarcomeric genes that would facilitate the screening of large cohorts of patients. In addition, this procedure would facilitate the uncovering of rare gene variants on a population scale."	"Proteomic analysis of human fetal atria and ventricle. In this study we carried out a mass spectrometry-based proteome analysis of human fetal atria and ventricles. Heart protein lysates were analyzed on the Q-Exactive mass spectrometer in biological triplicates. Protein identification using MaxQuant yielded a total of 2754 atrial protein groups (91%) and 2825 ventricular protein groups (83%) in at least 2 of the 3 runs with ≥ 2 unique peptides. Statistical analyses using fold-enrichment (&gt;2) and p-values (≤ 0.05) selected chamber-enriched atrial (134) and ventricular (81) protein groups. Several previously characterized cardiac chamber-enriched proteins were identified in this study including atrial isoform of myosin light chain 2 (MYL7), atrial natriuretic peptide (NPPA), connexin 40 (GJA5), and peptidylglycine alpha-amidating monooxygenase (PAM) for atria, and ventricular isoforms of myosin light chains (MYL2 and MYL3), myosin heavy chain 7 (MYH7), and connexin 43 (GJA1) for ventricle. Our data was compared to in-house generated and publicly available human microarrays, several human cardiac proteomes, and phenotype ontology databases."	"The FgfrL1 receptor is required for development of slow muscle fibers. FgfrL1, which interacts with Fgf ligands and heparin, is a member of the fibroblast growth factor receptor (Fgfr) family. FgfrL1-deficient mice show two significant alterations when compared to wildtype mice: They die at birth due to a malformed diaphragm and they lack metanephric kidneys. Utilizing gene arrays, qPCR and in situ hybridization we show here that the diaphragm of FgfrL1 knockout animals lacks any slow muscle fibers at E18.5 as indicated by the absence of slow fiber markers Myh7, Myl2 and Myl3. Similar lesions are also found in other skeletal muscles that contain a high proportion of slow fibers at birth, such as the extraocular muscles. In contrast to the slow fibers, fast fibers do not appear to be affected as shown by expression of fast fiber markers Myh3, Myh8, Myl1 and MylPF. At early developmental stages (E10.5, E15.5), FgfrL1-deficient animals express slow fiber genes at normal levels. The loss of slow fibers cannot be attributed to the lack of kidneys, since Wnt4 knockout mice, which also lack metanephric kidneys, show normal expression of Myh7, Myl2 and Myl3. Thus, FgfrL1 is specifically required for embryonic development of slow muscle fibers. "	"Detection of mutations in symptomatic patients with hypertrophic cardiomyopathy in Taiwan. Hypertrophic cardiomyopathy (HCM) is a common genetic cardiac disorder associated with sudden death, heart failure, and stroke. The aim of the present study was to evaluate the prevalence and types of mutations in symptomatic patients with HCM in Taiwan. Thirty-eight HCM index patients (mean age 60±16 years) underwent systematic mutation screening of eight sarcomeric genes: β-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), troponin I (TNNI3), myosin ventricular regulatory light chain 2 (MYL2), myosin ventricular essential light chain 1 (MYL3), α-tropomyosin (TPM1), and cardiac α-actin (ACTC), using direct DNA sequencing. In silico programs predicted damaging amino acids. In the positive families, genotype-phenotype correlation studies were done. Overall, 13 mutations were identified in 13 index patients (34.2%). The three most frequently mutated genes were MYH7, MYBPC3, and TNNT2. One patient carried double mutations. Five mutations (MYH7 R147S; MYBPC3 R597Q; MYBPC3 W1007R; TNNI3 E124Q; MYL3 R63C) were novel; all were missense mutations. Analysis using in silico tools showed near consensus to classify these five novel mutations as pathological. Family pedigree analysis showed the presence of cosegregation in at least two affected members in each proband family, but incomplete penetrance in young family members with a positive genotype. We identified 13 HCM pedigrees, including 5 carrying novel mutations and 1 with a double mutation. The three most commonly mutated genes were MYH7, MYBPC3, and TNNT2. These results, together with genetic counseling, could lead to earlier diagnosis and better management of family members at risk of HCM."	"Skeletal muscle atrophy in R6/2 mice - altered circulating skeletal muscle markers and gene expression profile changes. In addition to classical neurological symptoms, Huntington's disease (HD) is complicated by peripheral pathology, including progressive skeletal muscle wasting, and common skeletal muscle gene expression changes have been shown in HD mice and human HD. To highlight possible mechanisms underlying muscle wasting in HD, we examined gene expression in pathways governing skeletal muscle contractility, skeletal myogenesis, skeletal muscle wasting, apoptosis and the NFκB signaling pathway in two HD mouse models (the transgenic R6/2 and full-length knock-in Q175). In addition, we assessed circulating markers that increase in response to skeletal muscle injury, skeletal Troponin I (sTnI), fatty acid binding protein 3 (FABP3), and Myosin light chain 3 (Myl3). We measured gene expression in muscle tissue as well as in cultured primary myocytes using qPCR. Concentrations of cytokines and muscle proteins were obtained using multiplex ELISA. Circulating markers of muscle injury (sTnI, FABP3, and Myl3) were significantly increased in mouse serum. In skeletal muscle, we observed reduced gene expression of components involved in muscle contractility, with pronounced downregulation of Acta1, Myh2 and Tnni2, among others. Alongside, we found increased expression of caspases (3 and 8) and key elements of the NFκB signaling pathway, p65/RelA, Tradd, and TRAF5. We also found similar gene expression alterations in cultured primary myocytes from R6/2 mice stimulated with TNF-α. Our results indicate that activation of apoptotic and NFκB pathways occur alongside down-regulation of key compartments of the muscle contractility unit in skeletal muscle of HD mice, and muscle atrophy could possibly be a source of circulating disease progression markers."	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"A novel arginine to tryptophan (R144W) mutation in troponin T (cTnT) gene in an indian multigenerational family with dilated cardiomyopathy (FDCM). Cardiomyopathy is a major cause of heart failure and sudden cardiac death; several mutations in sarcomeric protein genes have been associated with this disease. Our aim in the present study is to investigate the genetic variations in Troponin T (cTnT) gene and its association with dilated cardiomyopathy (DCM) in south-Indian patients. Analyses of all the exons and exon-intron boundaries of cTnT in 147 DCM and in 207 healthy controls had revealed a total of 15 SNPs and a 5 bp INDEL; of which, polymorphic SNPs were compared with the HapMap population data. Interestingly, a novel R144W mutation, that substitutes polar-neutral tryptophan for a highly conserved basic arginine in cTnT, altering the charge drastically, was identified in a DCM, with a family history of sudden-cardiac death (SCD). This mutation was found within the tropomyosin (TPM1) binding domain, and was evolutionarily conserved across species, therefore it is expected to have a significant impact on the structure and function of the protein. Family studies had revealed that the R144W is co-segregating with disease in the family as an autosomal dominant trait, but it was completely absent in 207 healthy controls and in 162 previously studied HCM patients. Further screening of the proband and three of his family members (positive for R144W mutant) with eight other genes β-MYH7, MYBPC3, TPM1, TNNI3, TTN, ACTC, MYL2 and MYL3, did not reveal any disease causing mutation, proposing the absence of compound heterozygosity. Therefore, we strongly suggest that the novel R144W unique/private mutant identified in this study is associated with FDCM. This is furthermore signifying the unique genetic architecture of Indian population. "	"Comprehensive analysis of the whole transcriptomes from two different pig breeds using RNA-Seq method. Next-generation sequencing RNA-Seq technology is a powerful tool that creates new possibilities for whole-transcriptome analysis. In our study, the RNA-Seq method was applied to analyze global changes in transcriptome from muscle tissue (m. semimembranosus) in two pig breeds (Pietrain and Polish Landrace, PL). The breeds differ in terms of muscularity, growth rate and reproduction traits. Using three different approaches (deseq, cufflinks and edger) and taking into account the most restrictive criteria, 35 genes differentially expressed between Pietrain and PL pigs were identified. In both breeds, the most abundant were transcripts encoding ribosomal and cytoskeletal proteins (TPM3, TCAP, TMOD4, TPM2, TNNC1) and calcium-binding proteins involved in muscle contraction, calcium-mediated signaling or cation transport (CASQ1, MLC2V, SLC25A4, MYL3). In PL pigs, we identified up-regulation of several genes that play crucial roles in reproduction: female gamete generation (BDP1, PTPN21, USP9X), fertilization (EGFR) and embryonic development (CPEB4). In the Pietrain breed, only seven genes were over-expressed (CISH, SPP1, TUBA8, ATP6V1C2, IGKC, predicted LOC100510960 and LOC100626400), and they play important roles in, for example, negative regulation of apoptosis, immune response, cell-cell signaling, cell growth and migration as well as the metabolic process. The functions of the majority of selected genes were consistent with phenotypic variation in investigated breeds; thus, we proposed a new panel of candidate genes that can be associated with economically important pig traits. "	"Affinity proteomics within rare diseases: a BIO-NMD study for blood biomarkers of muscular dystrophies. Despite the recent progress in the broad-scaled analysis of proteins in body fluids, there is still a lack in protein profiling approaches for biomarkers of rare diseases. Scarcity of samples is the main obstacle hindering attempts to apply discovery driven protein profiling in rare diseases. We addressed this challenge by combining samples collected within the BIO-NMD consortium from four geographically dispersed clinical sites to identify protein markers associated with muscular dystrophy using an antibody bead array platform with 384 antibodies. Based on concordance in statistical significance and confirmatory results obtained from analysis of both serum and plasma, we identified eleven proteins associated with muscular dystrophy, among which four proteins were elevated in blood from muscular dystrophy patients: carbonic anhydrase III (CA3) and myosin light chain 3 (MYL3), both specifically expressed in slow-twitch muscle fibers and mitochondrial malate dehydrogenase 2 (MDH2) and electron transfer flavoprotein A (ETFA). Using age-matched sub-cohorts, 9 protein profiles correlating with disease progression and severity were identified, which hold promise for the development of new clinical tools for management of dystrophinopathies. "	"Low force contractions induce fatigue consistent with muscle mRNA expression in people with spinal cord injury. Spinal cord injury (SCI) is associated with muscle atrophy, transformation of muscle fibers to a fast fatigable phenotype, metabolic inflexibility (diabetes), and neurogenic osteoporosis. Electrical stimulation of paralyzed muscle may mitigate muscle metabolic abnormalities after SCI, but there is a risk for a fracture to the osteoporotic skeletal system. The goal of this study was to determine if low force stimulation (3 Hz) causes fatigue of chronically paralyzed muscle consistent with selected muscle gene expression profiles. We tested 29 subjects, nine with a SCI and 20 without and SCI, during low force fatigue protocol. Three SCI and three non-SCI subjects were muscle biopsied for gene and protein expression analysis. The fatigue index (FI) was 0.21 ± 0.27 and 0.91 ± 0.01 for the SCI and non-SCI groups, respectively, supporting that the low force protocol physiologically fatigued the chronically paralyzed muscle. The post fatigue potentiation index (PI) for the SCI group was increased to 1.60 ± 0.06 (P &lt;0.001), while the non-SCI group was 1.26 ± 0.02 supporting that calcium handling was compromised with the low force stimulation. The mRNA expression from genes that regulate atrophy and fast properties (MSTN, ANKRD1, MYH8, and MYCBP2) was up regulated, while genes that regulate oxidative and slow muscle properties (MYL3, SDHB, PDK2, and RyR1) were repressed in the chronic SCI muscle. MSTN, ANKRD1, MYH8, MYCBP2 gene expression was also repressed 3 h after the low force stimulation protocol. Taken together, these findings support that a low force single twitch activation protocol induces paralyzed muscle fatigue and subsequent gene regulation. These findings suggest that training with a low force protocol may elicit skeletal muscle adaptations in people with SCI. "	"A low prevalence of sarcomeric gene variants in a Chinese cohort with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is genetically heterogeneous. It has been previously shown that LVNC is associated with defects in TAZ, DNTA, LDB3, YWHAE, MIB1, PRDM16, and sarcomeric genes. This study was aimed to investigate sarcomeric gene mutations in a Chinese population with LVNC. From 2004 to 2010, 57 unrelated Chinese patients with LVNC were recruited at Fuwai Hospital, Beijing, China. Detailed clinical evaluation was performed on the probands and available family members. DNA samples isolated from the peripheral blood of the index cases were screened for 10 sarcomeric genes, including MYH7, MYBPC3, MYL2, MYL3, MYH6, TNNC1, TNNT2, TNNI3, TPM1, and ACTC1. Seven heterozygous mutations (6 missense and 1 deletion) were identified in 7 (12 %) of the patients. These mutations were distributed among 4 genes, 4 in MYH7, and 1 each in ACTC1, TNNT2, and TPM1. Six of the mutations were novel and another one was reported previously. All mutations affected conserved amino acid residues and were predicted to alter the structure of the proteins by in silico analysis. No significant difference was observed between mutation-positive and mutation-negative patients with respect to clinical characteristics at baseline and mortality during follow-up. In conclusion, our study indicates that sarcomeric gene mutations are uncommon causes of LVNC in Chinese patients and genetic background of the disease may be divergent among the different races."	"Effects of a sucrose-enriched diet on the pattern of gene expression, contraction and Ca(2+) transport in Goto-Kakizaki type 2 diabetic rat heart. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus (T2DM), and cardiovascular disease is the major cause of morbidity and mortality in diabetic patients. A variety of diastolic and systolic dysfunctions have been demonstrated in type 2 diabetic heart. The consumption of sugar-sweetened beverages has been linked to rising rates of obesity, which in turn is a risk factor for development of T2DM. In this study, the effects of a sucrose-enriched diet on the pattern of gene expression, contraction and Ca(2+) transport in the Goto-Kakizaki T2DM rat heart were investigated. Genes encoding cardiac muscle proteins (Myh7, Mybpc3, Myl1, Myl3 and Mylpf), intercellular proteins (Gja4), cell membrane transport (Atp1b1), calcium channels (Cacna1c, Cacna1g and Cacnb1) and potassium channels (Kcnj11) were upregulated and genes encoding potassium channels (Kcnb1) were downregulated in GK compared with control rats. Genes encoding cardiac muscle proteins (Myh6, Mybpc3 and Tnn2), intercellular proteins (Gja1 and Gja4), intracellular Ca(2+) transport (Atp2a1 and Ryr2), cell membrane transport (Atp1a2 and Atp1b1) and potassium channel proteins (Kcnj2 and Kcnj8) were upregulated and genes encoding cardiac muscle proteins (Myh7) were downregulated in control rats fed sucrose compared with control rats. Genes encoding cardiac muscle proteins (Myh7) and potassium channel proteins (Kcnj11) were downregulated in control and GK rats fed sucrose compared with control and GK rats, respectively. The amplitude of shortening was reduced in myocytes from the control-sucrose group compared with control rats and in the GK-sucrose group compared with GK rats. The amplitude of the Ca(2+) transient was increased in myocytes from control-sucrose compared with control rats and decreased in GK-sucrose compared with GK rats. Subtle alterations in the pattern of expression of genes encoding a variety of cardiac muscle proteins are associated with changes in shortening and intracellular Ca(2+) transport in ventricular myocytes from GK T2DM and control rats fed a sucrose-enriched diet."	"Genetics of hypertrophic cardiomyopathy in Norway. Genetic testing for hypertrophic cardiomyopathy (HCM) became available in Norway in 2003. Here, we describe the results of this testing in probands with HCM referred until the end of 2012. The translated exons of MYBPC3, MYH7, TNNI3, TNNT2, MYL2 and MYL3 were analyzed in two groups of probands. In Group 1, comprising 696 probands above 1 year of age, a mutation was found in 203 patients (29.2%). Of those, 5.9% were carriers of two mutations. Mean age in double mutation carriers, single mutation carriers and mutation negative probands was 44 years (± 19 years), 50 years (± 5 years) and 55 years (± 6 years), respectively. In Group 2, comprising 26 infants below the age of 1, a mutation was found in 15.4%. A total of 120 different mutations were found of which 51 (42.5%) were novel."	"Studies on RNA integrity and gene expression in human myocardial tissue, pericardial fluid and blood, and its postmortem stability. Analyses of gene expression of ischemic myocardial injury and repair related proteins has been carried out for the first time in samples from five specific sites of the myocardium, pericardial fluid and blood from thirty cadavers in relation to post-mortem interval (PMI). RNA integrity was evaluated by RNA integrity number (RIN), with values ranging from 6.57 to 8.11; sufficiently high levels of integrity to permit further gene amplification. No significant correlations between RIN and PMI in any samples were detected. Prior to target gene expression analysis, a normalization strategy was carried out to assess candidate reference gene stability, involving the analysis and comparison of four common housekeeping genes (Glyceraldehide-3-phosphate dehydrogenase, beta-actin, TATA box binding protein and Cyclophilin A). Gene expression of cardiac troponin I (TNNI3), myosin light chain 3 (MYL3), matrix metalloprotease 9 (MMP9), transforming growth factor beta 1 (TGFB1), and vascular endothelial growth factor A (VEGFA) in myocardial zones and body fluids were subsequently studied by real-time quantitative PCR. Expression levels of all the proteins studied in cardiac zone samples were similar. No statistical differences for expression were detected among proteins taken from any myocardial area. No significant differences were detected for TNNI3 and TGFB1 gene expressions when compared with samples at or under 12h-PMI or over 12h-PMI. However, differences in MYL3, MMP9, and VEGFA gene expression in body fluids were found at PMI periods of over 12h. These interesting results may contribute to the refinement of current knowledge regarding cardiac metabolism and improve understanding of the underlying mechanisms involved in myocardium ischemia and its repair. "	"Infantile hypertrophic cardiomyopathy associated with a novel MYL3 mutation. Mutations in genes encoding cardiac sarcomeric proteins are thought to be a very rare cause of hypertrophic cardiomyopathy (HCM) in infants and young children. We report on genetic and histopathological findings in a 3-month-old infant presenting with severe progressive HCM arising from a mutation in the gene encoding the essential light chain of myosin (MYL3). The patient was found to have a novel, paternally inherited pathogenic c.530 A&gt;G mutation in exon 5 of the MYL3 gene. His father was asymptomatic. Although, MYL3 mutations have been previously associated with adult-onset HCM, it has not been seen in infantile forms. As such, this case adds to the emerging evidence demonstrating that familial disease associated with mutations in cardiac sarcomere protein genes may have an important role in infants and children with HCM. In addition, this case highlights the marked phenotypic heterogeneity associated with sarcomeric protein mutations both within and between families."	"Role of the cytoskeleton in muscle transcriptional responses to altered use. In this work, the interaction between the loss of a primary component of the skeletal muscle cytoskeleton, desmin, and two common physiological stressors, acute mechanical injury and aging, were investigated at the transcriptional, protein, and whole muscle levels. The transcriptional response of desmin knockout (des(-/-)) plantarflexors to a bout of 50 eccentric contractions (ECCs) showed substantial overlap with the response in wild-type (wt) muscle. However, changes in the expression of genes involved in muscle response to injury were blunted in adult des(-/-) muscle compared with wt (fold change with ECC in des(-/-) and wt, respectively: Mybph, 1.4 and 2.9; Xirp1, 2.2 and 5.7; Csrp3, 1.8 and 4.3), similar to the observed blunted mechanical response (torque drop: des(-/-) 30.3% and wt 55.5%). Interestingly, in the absence of stressors, des(-/-) muscle exhibited elevated expression of many these genes compared with wt. The largest transcriptional changes were observed in the interaction between aging and the absence of desmin, including many genes related to slow fiber pathway (Myh7, Myl3, Atp2a2, and Casq2) and insulin sensitivity (Tlr4, Trib3, Pdk3, and Pdk4). Consistent with these transcriptional changes, adult des(-/-) muscle exhibited a significant fiber type shift from fast to slow isoforms of myosin heavy chain (wt, 5.3% IIa and 71.7% IIb; des(-/-), 8.4% IIa and 61.4% IIb) and a decreased insulin-stimulated glucose uptake (wt, 0.188 μmol/g muscle/20 min; des(-/-), 0.085 μmol/g muscle/20 min). This work points to novel areas of influence of this cytoskeletal protein and directs future work to elucidate its function."	"A novel Myosin essential light chain mutation causes hypertrophic cardiomyopathy with late onset and low expressivity. Hypertrophic cardiomyopathy (HCM) is caused by mutations in genes encoding sarcomere proteins. Mutations in MYL3, encoding the essential light chain of myosin, are rare and have been associated with sudden death. Both recessive and dominant patterns of inheritance have been suggested. We studied a large family with a 38-year-old asymptomatic HCM-affected male referred because of a murmur. The patient had HCM with left ventricular hypertrophy (max WT 21 mm), a resting left ventricular outflow gradient of 36 mm Hg, and left atrial dilation (54 mm). Genotyping revealed heterozygosity for a novel missense mutation, p.V79I, in MYL3. The mutation was not found in 300 controls, and the patient had no mutations in 10 sarcomere genes. Cascade screening revealed a further nine heterozygote mutation carriers, three of whom had ECG and/or echocardiographic abnormalities but did not fulfil diagnostic criteria for HCM. The penetrance, if we consider this borderline HCM the phenotype of the p.V79I mutation, was 40%, but the mean age of the nonpenetrant mutation carriers is 15, while the mean age of the penetrant mutation carriers is 47. The mutation affects a conserved valine replacing it with a larger isoleucine residue in the region of contact between the light chain and the myosin lever arm. In conclusion, MYL3 mutations can present with low expressivity and late onset."	"Biomarker panel of cardiac and skeletal muscle troponins, fatty acid binding protein 3 and myosin light chain 3 for the accurate diagnosis of cardiotoxicity and musculoskeletal toxicity in rats. Cardiotoxicity and musculoskeletal toxicity can be life-threatening, and thus have strong impact on both the development and marketing of drugs. Because the conventional biomarkers such as aspartate aminotransferase (AST), lactate dehydrogenase (LDH), and creatine kinase (CK) have low detection power, there has been increasing interest in developing biomarkers with higher detection power. The current study examined the usefulness of several promising biomarkers, cardiac and skeletal muscle troponins (cTnI, cTnT and sTnI), fatty acid binding protein 3 (FABP3) and myosin light chain 3 (MYL3), and compared the obtained data to AST, LDH and CK in rat models treated with various myotoxic and non-myotoxic compounds (isoproterenol, metaproterenol, doxorubicin, mitoxantrone, allylamine, cyclosporine A, cyclophosphamide, aminoglutethimide, acetaminophen, methapyrilene, allylalcohol and α-naphthylisothiocyanate). These promising biomarkers were found to be superior to the conventional biomarkers, as they had a specific and abundant distribution within the heart and/or skeletal muscles; exhibited a positive correlation between the amplitude of increases and the degree of pathological alterations; had higher diagnostic accuracy for detecting pathological alterations; and had the additive effect of improving the diagnostic accuracy of conventional biomarkers. However, these promising biomarkers have several drawbacks including a rapid clearance, the fact that they are affected by renal dysfunction, and different reactivity to the mode of action of individual myotoxicants. In conclusion, the promising biomarkers cTnI, cTnT, FABP3, MYL3, and sTnI demonstrated sensitivity and specificity for cardiac and skeletal myotoxicity that was superior to those of conventional biomarkers, while we should pay attention to the drawbacks of these biomarkers when used in toxicity studies."	"Discovery of novel vitamin D receptor interacting proteins that modulate 1,25-dihydroxyvitamin D3 signaling. The nuclear vitamin D receptor (VDR) modulates gene transcription in 1,25-dihydroxyvitamin D(3) (1,25D) target tissues such as kidney, intestine, and bone. VDR is also expressed in heart, and 1,25D deficiency may play a role in the acceleration of cardiovascular disease. Employing a yeast two-hybrid system and a human heart library, using both a 1,25D-independent and 1,25D-dependent screen, we discovered six candidate VDR interacting proteins (VIPs). These novel VIPs include CXXC5, FASTK, NR4A1, TPM2, MYL3 and XIRP1. Mammalian two-hybrid assays as well as GST pull-downs were used to confirm VIP-VDR interaction, and the combination of these two assays reveals that CXXC5, XIRP1, FASTK and NR4A1 interactions with VDR may be modulated by 1,25D. The functional effects of these VIPs on 1,25D-mediated gene expression were explored in transcriptional assays employing three separate and distinct 1,25D-responsive element (VDRE)-driven luciferase reporter genes in transfected Caco-2 and HEK-293 cells, and in a C2C12 myoblast line. FASTK and TPM2 activated expression in all cell line and promoter contexts, while CXXC5 and XIRP1 exhibited differing effects depending on the cell line and promoter employed, suggesting promoter and cell-specific effects of these unique VIPs on VDR signaling. Further evaluation of the interaction between CXXC5 and VDR revealed that CXXC5 acts in a dose-dependent manner to stimulate VDR-mediated transcription on select VDREs. Identification of novel heart VIPs and their influence on VDR activity may increase our understanding of how vitamin D impacts cardiac physiology and may facilitate development of VDR/VIP drug analogs to combat heart disease."	"Isolation and analysis of genes mainly expressed in adult mouse heart using subtractive hybridization cDNA library. Subtractive hybridization cDNA library (SHL) is one of the powerful approaches for isolating differentially expressed genes. Using this technique between mouse heart and skeletal muscle (skm) tissues, we aimed to construct a cDNA-library that was specific to heart tissue and to identify the potential candidate genes that might be responsible for the development of cardiac diseases or related pathophysiological conditions. In the first step of the study, we created a cDNA-library between mouse heart and skm tissues. The homologies of the randomly selected 215 clones were analyzed and then classified by function. A total of 146 genes were analyzed for their expression profiles in the heart and skm tissues in published mouse microarray dataset. In the second step, we analyzed the expression patterns of the selected genes by Northern blot and RNA in situ hybridization (RISH). In Northern blot analyses, the expression levels of Myl3, Myl2, Mfn2, Dcn, Pdlim4, mt-Co3, mt-Co1, Atpase6 and Tsc22d1 genes were higher in heart than skm. For first time with this study, expression patterns of Pdlim4 and Tsc22d1 genes in mouse heart and skm were shown by RISH. In the last step, 43 genes in this library were identified to have relationships mostly with cardiac diseases and/or related phenotypes. This is the first study reporting differentially expressed genes in healthy mouse heart using SHL technique. This study confirms our hypothesis that tissue-specific genes are most likely to have a disease association, if they possess mutations."	"Genetic testing of candidate genes in arrhythmogenic right ventricular cardiomyopathy/dysplasia. Arrhythmogenic right ventricular cardiomyopathy/dysplasia (ARVC/D) is a rare cardiac genetic disease characterized by the presence of structural alterations in the right ventricle which may cause ventricular arrhythmias and may induce sudden cardiac death. ARVC/D has been associated with mutations in genes encoding myocyte adhesion proteins. However, only 30%-50% of patients have mutations in these genes. Genetic testing is useful in obtaining a diagnosis, particularly in individuals who do not completely fulfill clinical criteria, thereby also enabling the undertaking of preventive strategies in family members. The main goal of this study was to identify mutations in candidate genes associated with intercalate disks that could be potentially involved in ARVC/D pathogenesis. We analyze a cohort of 14 Spanish unrelated patients clinically diagnosed with ARVC/D without any genetic alteration in all previously known responsible genes. Thus, a genetic screening has been performed in 7 additional potential candidate genes (ACTC1 -actin alpha cardiac muscle 1-, CDHN -cadherin 2 type 1 or N-cadherin-, CTNNA1 -catenin alpha 1-, Cx43 or GJA1 -gap junction protein alpha 1-, MVCL -Metavinculin-, MYL2 -myosin light chain 2- and MYL3 -myosin light chain 3-) by direct sequencing analysis. Our genetic analysis did not identify any disease-causing mutation. Thirty single nucleotides polymorphisms were found, six of them novel. In conclusion, our ARVC/D Spanish cohort has not shown any mutations in the analyzed candidate genes despite their involvement in formation and maintenance of the intercalated disk."	"Cardiac alpha-myosin (MYH6) is the predominant sarcomeric disease gene for familial atrial septal defects. Secundum-type atrial septal defects (ASDII) account for approximately 10% of all congenital heart defects (CHD) and are associated with a familial risk. Mutations in transcription factors represent a genetic source for ASDII. Yet, little is known about the role of mutations in sarcomeric genes in ASDII etiology. To assess the role of sarcomeric genes in patients with inherited ASDII, we analyzed 13 sarcomeric genes (MYH7, MYBPC3, TNNT2, TCAP, TNNI3, MYH6, TPM1, MYL2, CSRP3, ACTC1, MYL3, TNNC1, and TTN kinase region) in 31 patients with familial ASDII using array-based resequencing. Genotyping of family relatives and control subjects as well as structural and homology analyses were used to evaluate the pathogenic impact of novel non-synonymous gene variants. Three novel missense mutations were found in the MYH6 gene encoding alpha-myosin heavy chain (R17H, C539R, and K543R). These mutations co-segregated with CHD in the families and were absent in 370 control alleles. Interestingly, all three MYH6 mutations are located in a highly conserved region of the alpha-myosin motor domain, which is involved in myosin-actin interaction. In addition, the cardiomyopathy related MYH6-A1004S and the MYBPC3-A833T mutations were also found in one and two unrelated subjects with ASDII, respectively. No mutations were found in the 11 other sarcomeric genes analyzed. The study indicates that sarcomeric gene mutations may represent a so far underestimated genetic source for familial recurrence of ASDII. In particular, perturbations in the MYH6 head domain seem to play a major role in the genetic origin of familial ASDII."	"Prevalence and distribution of sarcomeric gene mutations in Japanese patients with familial hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), which is inherited as an autosomal dominant trait, is the most prevalent hereditary cardiac disease. Although there are several reports on the systematic screening of mutations in the disease-causing genes in European and American populations, only limited information is available for Asian populations, including Japanese. Genetic screening of disease-associated mutations in 8 genes for sarcomeric proteins, MYH7, MYBPC3, MYL2, MYL3, TNNT2, TNNI3, TPM1, and ACTC, was performed by direct sequencing in 112 unrelated Japanese proband patients with familial HCM; 37 different mutations, including 13 novel ones in 5 genes, MYH7, MYBPC3, TNNT2, TNNI3, and TPM1, were identified in 49 (43.8%) patients. Among them, 3 carried compound heterozygous mutations in MYBPC3 or TNNT2. The frequency of patients carrying the MYBPC3, MYH7, and TNNT2 mutations were 19.6%, 10.7%, and 8.9%, respectively, and the most frequently affected genes in the northeastern and southwestern parts of Japan were MYBPC3 and MYH7, respectively. Several mutations were found in multiple unrelated proband patients, for which the geographic distribution suggested founder effects of the mutations. This study demonstrated the frequency and distribution of mutations in a large cohort of familial HCM in Japan."	"Genetic basis of end-stage hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by a heterogeneous presentation and clinical course. A minority of HCM patients develop end-stage HCM and require cardiac transplantation. The genetic basis of end-stage HCM is unknown but small series, isolated case reports and animal models have related the most aggressive heart failure course with the presence of multiple mutations. Twenty-six patients (age 40.4 ± 14.5 years; 46% male) transplanted for end-stage HCM underwent genetic screening of 10 HCM-related genes (MYH7, MYBPC3, TNNT2, TNNI3, TPM1, TNNC1, MYL3, MYL2, ACTC, LDB3). Additional genetic screening of LAMP2/PRKAG2 and mitochondrial DNA (mtDNA) was performed in four and three cases, respectively. Findings were correlated with clinical and histological features. Pathogenic mutations were identified in 15 patients (58%). Thirteen patients (50%) had mutations in sarcomeric genes (six in MYH7, three in MYBPC3, two in MYL2, one in TNNI3, and one in MYL3) and two patients had mutations in LAMP2. Only three patients (13%) had double mutations and all in homozygosis. Except for a more frequent family history of HCM, patients with mutations in sarcomeric genes did not show any clinical feature that distinguished them from patients without mutations in these genes. Evaluation of 44 relatives from 12 families identified 13 mutation carriers, 9 of whom had an overt HCM phenotype. Heart transplanted HCM has a heterogeneous genetic background where multiple mutations are uncommon. The clinical course of HCM is not primarily dependent on the presence of multiple sarcomeric mutations. Clinical and genetic evaluation of relatives does not support differential clinical management in HCM based on genetics."	"Furthering the link between the sarcomere and primary cardiomyopathies: restrictive cardiomyopathy associated with multiple mutations in genes previously associated with hypertrophic or dilated cardiomyopathy. Mutations in genes that encode components of the sarcomere are well established as the cause of hypertrophic and dilated cardiomyopathies. Sarcomere genes, however, are increasingly being associated with other cardiomyopathies. One phenotype more recently recognized as a disease of the sarcomere is restrictive cardiomyopathy (RCM). We report on two patients with RCM associated with multiple mutations in sarcomere genes not previously associated with RCM. Patient 1 presented with NYHA Class III/IV heart failure at 22 years of age. She was diagnosed with RCM and advanced heart failure requiring heart transplantation. Sequencing of sarcomere genes revealed previously reported homozygous p.Glu143Lys mutations in MYL3, and a novel heterozygous p.Gly57Glu mutation in MYL2. The patient's mother is a double heterozygote for these mutations, with no evidence of cardiomyopathy. Patient 2 presented at 35 years of age with volume overload while hospitalized for oophorectomy. She was diagnosed with RCM and is being evaluated for heart transplantation. Sarcomere gene sequencing identified homozygous p.Asn279His mutations in TPM1. The patient's parents are consanguineous and confirmed heterozygotes. Her father was diagnosed with HCM at 42 years of age. This is the first report of mutations in TPM1, MYL3, and MYL2 associated with primary, non-hypertrophied RCM. The association of more sarcomere genes with RCM provides further evidence that mutations in the various sarcomere genes can cause different cardiomyopathy phenotypes. These cases also contribute to the growing body of evidence that multiple mutations have an additive effect on the severity of cardiomyopathies."	"Hypoxia promotes proliferation of human myogenic satellite cells: a potential benefactor in tissue engineering of skeletal muscle. Facial paralysis is a physically, psychologically, and socially disabling condition. Innovative treatment strategies based on regenerative medicine, in particular tissue engineering of skeletal muscle, are promising for treatment of patients with facial paralysis. The natural source for tissue-engineered muscle would be muscle stem cells, that is, human satellite cells (SC). In vivo, SC respond to hypoxic, ischemic muscle damage by activation, proliferation, differentiation to myotubes, and maturation to muscle fibers, while maintaining their reserve pool of SC. Therefore, our hypothesis is that hypoxia improves proliferation and differentiation of SC. During tissue engineering, a three-dimensional construct, or implanting SC in vivo, SC will encounter hypoxic environments. Thus, we set out to test our hypothesis on SC in vitro. During the first five passages, hypoxically cultured SC proliferated faster than their counterparts under normoxia. Moreover, also at higher passages, a switch from normoxia to hypoxia enhanced proliferation of SC. Hypoxia did not affect the expression of SC markers desmin and NCAM. However, the average surface expression per cell of NCAM was downregulated by hypoxia, and it also downregulated the gene expression of NCAM. The gene expression of the myogenic transcription factors PAX7, MYF5, and MYOD was upregulated by hypoxia. Moreover, gene expression of structural proteins α-sarcomeric actin, and myosins MYL1 and MYL3 was upregulated by hypoxia during differentiation. This indicates that hypoxia promotes a promyogenic shift in SC. Finally, Pax7 expression was not influenced by hypoxia and maintained in a subset of mononucleated cells, whereas these cells were devoid of structural muscle proteins. This suggests that during myogenesis in vitro, at least part of the SC adopt a quiescent, that is, reserve cells, phenotype. In conclusion, tissue engineering under hypoxic conditions would seem favorable in terms of myogenic proliferation, while maintaining the quiescent SC pool."	"Serotonin transporter, sex, and hypoxia: microarray analysis in the pulmonary arteries of mice identifies genes with relevance to human PAH. Pulmonary arterial hypertension (PAH) is up to threefold more prevalent in women than men. Female mice overexpressing the serotonin transporter (SERT; SERT+ mice) exhibit PAH and exaggerated hypoxia-induced PAH, whereas male SERT+ mice remain unaffected. To further investigate these sex differences, microarray analysis was performed in the pulmonary arteries of normoxic and chronically hypoxic female and male SERT+ mice. Quantitative RT-PCR analysis was employed for validation of the microarray data. In relevant groups, immunoblotting was performed for genes of interest (CEBPβ, CYP1B1, and FOS). To translate clinical relevance to our findings, CEBPβ, CYP1B1, and FOS mRNA and protein expression was assessed in pulmonary artery smooth muscle cells (PASMCs) derived from idiopathic PAH (IPAH) patients and controls. In female SERT+ mice, multiple pathways with relevance to PAH were altered. This was also observed in chronically hypoxic female SERT+ mice. We selected 10 genes of interest for qRT-PCR analysis (FOS, CEBPβ, CYP1B1, MYL3, HAMP2, LTF, PLN, NPPA, UCP1, and C1S), and 100% concordance was reported. Protein expression of three selected genes, CEBPβ, CYP1B1, FOS, was also upregulated in female SERT+ mice. Serotonin and 17β-estradiol increased CEBPβ, CYP1B1, and FOS protein expression in PASMCs. In addition, CEBPβ, CYP1B1, and FOS mRNA and protein expression was also increased in PASMCs derived from IPAH patients. Here, we have identified a number of genes that may predispose female SERT+ mice to PAH, and these findings may also be relevant to human PAH."	"Rapid detection of genetic variants in hypertrophic cardiomyopathy by custom DNA resequencing array in clinical practice. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiac disease (1/500) and the most common cause of sudden cardiac death in young people. Pathogenic mutation detection of HCM is having a growing impact on the medical management of patients and their families. However, the remarkable genetic and allelic heterogeneity makes molecular analysis by conventional methods very time-consuming, expensive and difficult to realise in a routine diagnostic molecular laboratory. The authors used their custom DNA resequencing array which interrogates all possible single-nucleotide variants on both strands of all exons (n=160), splice sites and 5'-untranslated region of 12 HCM genes (27 000 nucleotides). The results for 122 unrelated patients with HCM are presented. Thirty-three known or novel potentially pathogenic heterozygous single-nucleotide variants were identified in 38 patients (31%) in genes MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3 and ACTC1. Although next-generation sequencing will replace all large-scale sequencing platforms for inherited cardiac disorders in the near future, this HCM resequencing array is currently the most rapid, cost-effective and reasonably efficient technology for first-tier mutation screening of HCM in clinical practice. Because of its design, the array is also an appropriate tool for initial screening of other inherited forms of cardiomyopathy."	"Analysis of differentially expressed proteins in oral squamous cell carcinoma by MALDI-TOF MS. To explore the presence of differentially expressed proteins in OSCC for discrimination of tumour and normal mucosa to establish potential biomarkers and therapeutic targets. Paired protein samples of 12 individuals (tongue cancer and non-cancerous mucosa) were separated by two-dimensional polyacrylamid gel electrophoresis. The protein patterns were compared pairwise and protein spots were quantified. We identified about 70 regulated proteins which we subsequently identified by MALDI-TOF mass spectrometry. Cancerous and non-cancerous tissues could be most precisely distinguished by a panel of proteins. They include the heat shock proteins (hsp)70 and 90, keratins (ck) 5, 6, 13, 14, 16, 17 and 19, beta globin, alpha-2-actin, stratifin, tropomyosin, calreticulin precursor, beta-2-tubulin, galectin7, thioredoxin, involucrin, adenylyl-cyclase-associated protein, disulfide isomerase-associated protein, thyrosine 3-monooxygenase, MYL2 and the s100 calcium binding protein. MYL3, cardiac muscle alpha actin 1 proprotein and transferrin were under-represented in OSCC. Six biomarkers, ck6 und ck13, beta globin, alpha-2-actin, hsp70 and hsp90 discriminated best between cancerous and non-cancerous oral tissues. All over-expressed proteins were analysed by STRING-analysis to highlight experimentally determined and computationally predicted interactions between the proteins. Especially involucrin, hsp70, calreticulin precursor, stratifin, (ck) 5, 6, 14, 19, tyrosine 3-monooxygenase, beta-2-tubulin and disulfide isomerase associated protein showed multiple relations. We identified six proteins which are differentially expressed in most OSCC compared to healthy tissues. Of those, by string analysis, multiple interaction partners are assumed for hsp70. This protein is supposed to be the most promising candidate as marker molecule and target for OSCC therapy."	"Identification of a novel TPM1 mutation in a family with left ventricular noncompaction and sudden death. Left ventricular noncompaction (LVNC) is a cardiomyopathy morphologically characterized by 2-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses communicating with the left ventricular cavity. The purpose of this study was to investigate patients with LVNC for possible disease causing mutations. We screened 4 genes (TAZ, LDB3, DTNA and TPM1) in 51 patients with LVNC for mutations by polymerase chain reaction and direct DNA sequencing. A novel missense substitution in exon 1 of TPM1 (c.109A&gt;G: p.Lys37Glu) was identified in three affected members of a family with isolated LVNC. The substitution brings about a change in amino acid charge at a highly conserved residue and could result in aberrant mRNA splicing. This variant was not identified in 200 normal control samples. Pathologic analysis of a right ventricular myocardial specimen from the proband's maternal aunt revealed endocardial and subendocardial fibrosis with prominent elastin deposition, as well as the presence of adipose tissue between muscle layers, pathologic changes that are distinct from those seen in patients with HCM or DCM. Screening of the proband and her mother for variants in other sarcomeric protein-encoding candidate genes, MYH7, MYBPC3, TNNT2, TNNI3, ACTC, MYL2, and MYL3, did not identify any other non-synonymous variants or variants in splice donor-acceptor sequences that were potentially disease causing. We conclude TPM1 is a potential candidate disease-causing gene for isolated LVNC, especially in patients experiencing sudden death."	"Differentially expressed proteins during fat accumulation in bovine skeletal muscle. The objective of this study was to identify the proteins involved in bovine intramuscular fat (IMF) development. Global proteins were monitored in bovine skeletal muscle at muscle-developing versus IMF-increasing stages and with higher versus lower IMF scores, respectively. We identified two differentially expressed (two-fold or more) proteins at the IMF-increasing stage, up-regulated heat shock protein beta 1 (HSPB1) and down-regulated ATP synthase D chain (ATP5H), and two down-regulated proteins with higher IMF scores, carbonic anhydrase 2 (CA2) and myosin light chain 3 (MYL3). In vitro, after adipogenic differentiation, the mRNA expression of HSPB1 and ATP5H did not be changed, but that of CA2 and MYL3 decreased significantly (P&lt;0.05). After myogenic differentiation, the mRNA expression of HSPB1 increased significantly (P&lt;0.05), but expression of other genes did not vary. We suggested that CA2 and MYL3, which expressed down during adipogenic differentiation, could be indicative markers for negative regulation of IMF development."	"Long-term outcome of 4 Korean families with hypertrophic cardiomyopathy caused by 4 different mutations. We sought to describe the long-term outcome of individuals in 4 Korean families with hypertrophic cardiomyopathy (HCM) with known mutations. Long-term clinical features of familial HCM might be characterized according to the mutation causing HCM. We performed long-term (mean, 13.1 y) clinical evaluations on 46 subjects from 4 Korean families with different mutations. Myosin light chain 3 gene (MYL3) mutation was associated with late-onset HCM with relatively poor prognosis; 1 sudden cardiac death and 2 cases of heart failure with atrial fibrillation occurred among 12 subjects with this mutation. Myosin binding protein C gene (MYBPC3) mutation was associated with 2 cases of sudden cardiac death and 3 cases of heart failure among 7 affected members. Cardiac troponin I type 3 gene (TNNI3) mutation was associated with 5 deaths related to atrial fibrillation and stroke among 12 mutation-positive members. Myosin heavy chain 7 gene (MYH7) mutation was associated with 11 deaths in 15 affected members. The clinical course was quite different for different HCM mutations. Even within the same family, individuals carrying the same mutation differed in disease expression and prognosis."	"Meta-analysis of genome-wide gene expression differences in onset and maintenance phases of genetic hypertension. Gene expression differences accompany both the onset and established phases of hypertension. By an integrated genome-transcriptome approach we performed a meta-analysis of data from 74 microarray experiments available on public databases to identify genes with altered expression in the kidney, adrenal, heart, and artery of spontaneously hypertensive and Lyon hypertensive rats. To identify genes responsible for the onset of hypertension we used a statistical approach that sought to eliminate expression differences that occur during maturation unrelated to hypertension. Based on this adjusted fold-difference statistic, we found 36 genes for which the expression differed between the prehypertensive phase and established hypertension. Genes having possible relevance to hypertension onset included Actn2, Ankrd1, ApoE, Cd36, Csrp3, Me1, Myl3, Nppa, Nppb, Pln, Postn, Spp1, Slc21a4, Slc22a2, Thbs4, and Tnni3. In established hypertension 102 genes exhibited altered expression after Bonferroni correction (P&lt;0.05). These included Atp5o, Ech1, Fabp3, Gnb3, Ldhb, Myh6, Lpl, Pkkaca, Vegfb, Vcam1, and reduced nicotinamide-adenine dinucleotide dehydrogenases. Among the genes identified, there was an overrepresentation of gene ontology terms involved in energy production, fatty acid and lipid metabolism, oxidation, and transport. These could contribute to increases in reactive oxygen species. Our meta-analysis has revealed many new genes for which the expression is altered in hypertension, so pointing to novel potential causative, maintenance, and responsive mechanisms and pathways."	"PPARalpha does not suppress muscle-associated gene expression in brown adipocytes but does influence expression of factors that fingerprint the brown adipocyte. Brown adipocytes and myocytes develop from a common adipomyocyte precursor. PPARalpha is a nuclear receptor important for lipid and glucose metabolism. It has been suggested that in brown adipose tissue, PPARalpha represses the expression of muscle-associated genes, in this way potentially acting to determine cell fate in brown adipocytes. To further understand the possible role of PPARalpha in these processes, we measured expression of muscle-associated genes in brown adipose tissue and brown adipocytes from PPARalpha-ablated mice, including structural genes (Mylpf, Tpm2, Myl3 and MyHC), regulatory genes (myogenin, Myf5 and MyoD) and a myomir (miR-206). However, in our hands, the expression of these genes was not influenced by the presence or absence of PPARalpha, nor by the PPARalpha activator Wy-14,643. Similarly, the expression of genes common for mature brown adipocyte and myocytes (Tbx15, Meox2) were not affected. However, the brown adipocyte-specific regulatory genes Zic1, Lhx8 and Prdm16 were affected by PPARalpha. Thus, it would not seem that PPARalpha represses muscle-associated genes, but PPARalpha may still play a role in the regulation of the bifurcation of the adipomyocyte precursor into a brown adipocyte or myocyte phenotype."	"Clinical features and outcome of hypertrophic cardiomyopathy associated with triple sarcomere protein gene mutations. The aim of this study was to describe the clinical profile associated with triple sarcomere gene mutations in a large hypertrophic cardiomyopathy (HCM) cohort. In patients with HCM, double or compound sarcomere gene mutation heterozygosity might be associated with earlier disease onset and more severe outcome. The occurrence of triple mutations has not been reported. A total of 488 unrelated index HCM patients underwent screening for myofilament gene mutations by direct deoxyribonucleic acid sequencing of 8 genes, including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2, MYL3), troponin-T (TNNT2), troponin-I (TNNI3), alpha-tropomyosin (TPM1), and actin (ACTC). Of the 488 index patients, 4 (0.8%) harbored triple mutations, as follows: MYH7-R869H, MYBPC3-E258K, and TNNI3-A86fs in a 32-year-old woman; MYH7-R723C, MYH7-E1455X, and MYBPC3-E165D in a 46-year old man; MYH7-R869H, MYBPC3-K1065fs, and MYBPC3-P371R in a 45-year old woman; and MYH7-R1079Q, MYBPC3-Q969X, and MYBPC3-R668H in a 50-year old woman. One had a history of resuscitated cardiac arrest, and 3 had significant risk factors for sudden cardiac death, prompting the insertion of an implantable cardioverter-defibrillator in all, with appropriate shocks in 2 patients. Moreover, 3 of 4 patients had a severe phenotype with progression to end-stage HCM by the fourth decade, requiring cardiac transplantation (n=1) or biventricular pacing (n=2). The fourth patient, however, had clinically mild disease. Hypertrophic cardiomyopathy caused by triple sarcomere gene mutations was rare but conferred a remarkably increased risk of end-stage progression and ventricular arrhythmias, supporting an association between multiple sarcomere defects and adverse outcome. Comprehensive genetic testing might provide important insights to risk stratification and potentially indicate the need for differential surveillance strategies based on genotype."	"Prevalence of sarcomere protein gene mutations in preadolescent children with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) in infants and children is thought to be commonly associated with metabolic disorders and malformation syndromes. Familial disease caused by mutations in cardiac sarcomere protein genes, which accounts for most cases in adolescents and adults, is believed to be a very rare cause of HCM. Seventy-nine consecutive patients diagnosed with HCM aged 13 years or younger underwent detailed clinical and genetic evaluation. The protein-coding sequences of 9 sarcomere protein genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, ACTC, and TNNC1), the genes encoding desmin (DES), and the gamma-2 subunit of AMP kinase (PRKAG2) were screened for mutations. A family history of HCM was present in 48 patients (60.8%). Forty-seven mutations (15 novel) were identified in 42 (53.2%) patients (5 patients had 2 mutations). The genes most commonly implicated were MYH7 (48.9%) and MYBPC3 (36.2%); mutations in TNNT2, ACTC, MYL3, and TNNI3 accounted for &lt;5% of cases each. A total of 16.7% patients with sarcomeric mutations were diagnosed before 1 year of age. There were no differences in clinical and echocardiographic features between those children with sarcomere protein gene mutations and those without or between patients with 2 mutations and those with 1 or no mutations. This study shows that familial disease is common among infants and children with HCM and that, in most cases, disease is caused by mutations in cardiac sarcomere protein genes. The major implication is that all first-degree relatives of any child diagnosed with HCM should be offered screening. Furthermore, the finding that one sixth of patients with sarcomeric disease were diagnosed in infancy suggests that current views on pathogenesis and natural history of familial HCM may have to be revised."	"Examination of FGFRL1 as a candidate gene for diaphragmatic defects at chromosome 4p16.3 shows that Fgfrl1 null mice have reduced expression of Tpm3, sarcomere genes and Lrtm1 in the diaphragm. Fgfrl1 (also known as Fgfr5; OMIM 605830) homozygous null mice have thin, amuscular diaphragms and die at birth because of diaphragm hypoplasia. FGFRL1 is located at 4p16.3, and this chromosome region can be deleted in patients with congenital diaphragmatic hernia (CDH). We examined FGFRL1 as a candidate gene for the diaphragmatic defects associated with 4p16.3 deletions and re-sequenced this gene in 54 patients with CDH. We confirmed six known coding single nucleotide polymorphisms (SNPs): c.209G &gt; A (p.Pro20Pro), c.977G &gt; A (p.Pro276Pro), c.1040T &gt; C (p.Asp297Asp), c.1234C &gt; A (p.Pro362Gln), c.1420G &gt; T (p.Arg424Leu), and c.1540C &gt; T (p.Pro464Leu), but we did not identify any gene mutations. We genotyped additional CDH patients for four of these six SNPs, including the three non-synonymous SNPs, to make a total of 200 chromosomes, and found that the allele frequency for the four SNPs, did not differ significantly between patients and normal controls (p &gt; or = 0.05). We then used Affymetrix Genechip Mouse Gene 1.0 ST arrays and found eight genes with significantly reduced expression levels in the diaphragms of Fgfrl1 homozygous null mice when compared with wildtype mice-Tpm3, Fgfrl1 (p = 0.004), Myl2, Lrtm1, Myh4, Myl3, Myh7 and Hephl1. Lrtm1 is closely related to Slit3, a protein associated with herniation of the central tendon of the diaphragm in mice. The Slit proteins are known to regulate axon branching and cell migration, and inhibition of Slit3 reduces cell motility and decreases the expression of Rac and Cdc42, two genes that are essential for myoblast fusion. Further studies to determine if Lrtm1 has a similar function to Slit3 and if reduced Fgfrl1 expression can cause diaphragm hypoplasia through a mechanism involving decreased myoblast motility and/or myoblast fusion, seem indicated."	"The mRNA expression of SETD2 in human breast cancer: correlation with clinico-pathological parameters. SET domain containing protein 2 (SETD2) is a histone methyltransferase that is involved in transcriptional elongation. There is evidence that SETD2 interacts with p53 and selectively regulates its downstream genes. Therefore, it could be implicated in the process of carcinogenesis. Furthermore, this gene is located on the short arm of chromosome 3p and we previously demonstrated that the 3p21.31 region of chromosome 3 was associated with permanent growth arrest of breast cancer cells. This region includes closely related genes namely: MYL3, CCDC12, KIF9, KLHL18 and SETD2. Based on the biological function of these genes, SETD2 is the most likely gene to play a tumour suppressor role and explain our previous findings. Our objective was to determine, using quantitative PCR, whether the mRNA expression levels of SETD2 were consistent with a tumour suppressive function in breast cancer. This is the first study in the literature to examine the direct relationship between SETD2 and breast cancer. A total of 153 samples were analysed. The levels of transcription of SETD2 were determined using quantitative PCR and normalized against (CK19). Transcript levels within breast cancer specimens were compared to normal background tissues and analyzed against conventional pathological parameters and clinical outcome over a 10 year follow-up period. The levels of SETD2 mRNA were significantly lower in malignant samples (p = 0.0345) and decreased with increasing tumour stage. SETD2 expression levels were significantly lower in samples from patients who developed metastasis, local recurrence, or died of breast cancer when compared to those who were disease free for &gt; 10 years (p = 0.041). This study demonstrates a compelling trend for SETD2 transcription levels to be lower in cancerous tissues and in patients who developed progressive disease. These findings are consistent with a possible tumour suppressor function of this gene in breast cancer."	"Increased throughput for low-abundance protein biomarker verification by liquid chromatography/tandem mass spectrometry. Low-abundance protein quantification has historically been performed using ligand binding techniques. However, due to the time and cost associated with developing enzyme-linked immunosorbent assay (ELISA), mass spectrometric approaches are playing an increasingly important role. Protein quantification at or below the nanogram per milliliter level using liquid chromatography/tandem mass spectrometry (LC/MS/MS) typically utilizes an immunoaffinity (IA) enrichment step such as immunoprecipitation. In order to maximize mass spectrometry (MS) sensitivity, protein enrichment is followed by a proteolytic cleavage step used to generate a surrogate peptide with better mass spectrometric properties. Unlike ELISA, IA-LC/MS/MS is a serial technique that can require up to 3 days for a single batch analysis due to lengthy incubation and digestion steps. This report describes the use of immunoprecipitation in 96-well ELISA format (IPE) and microwave-assisted protein digestion to reduce the time required to perform LC/MS/MS protein analyses to within a single day. The utility of this approach was investigated through its application to previously published LC/MS/MS protein assays from our laboratory for two cardiotoxicity biomarkers, Myl3 and NTproBNP. Using commercially available antibodies, IPE and microwave-assisted digestion were used to repeat intraday validations for these markers, and intraday precision (%CV) and accuracy (%RE) did not exceed 11% or 3% for either assay, respectively. Additionally, lower limits of quantification of 100 pg/mL (NTproBNP) and 0.95 ng/mL (Myl3) were achieved."	"The role of sarcomere gene mutations in patients with idiopathic dilated cardiomyopathy. We investigated a Danish cohort of 31 unrelated patients with idiopathic dilated cardiomyopathy (IDC), to assess the role that mutations in sarcomere protein genes play in IDC. Patients were genetically screened by capillary electrophoresis single strand conformation polymorphism and subsequently by bidirectional DNA sequencing of conformers in the coding regions of MYH7, MYBPC3, TPM1, ACTC, MYL2, MYL3, TNNT2, CSRP3 and TNNI3. Eight probands carried disease-associated genetic variants (26%). In MYH7, three novel mutations were found; in MYBPC3, one novel variant and two known mutations were found; and in TNNT2, a known mutation was found. One proband was double heterozygous. We find evidence of phenotypic plasticity: three mutations described earlier as HCM causing were found in four cases of IDC, with no history of a hypertrophic phase. Furthermore, one pedigree presented with several cases of classic DCM as well as one case with left ventricular non-compaction. Disease-causing sarcomere gene mutations were found in about one-quarter of IDC patients, and seem to play an important role in the causation of the disease. The genetics is as complex as seen in HCM. Thus, our data suggest that a genetic work-up should include screening of the most prominent sarcomere genes even in the absence of a family history of the disease."	"Diagnostic yield, interpretation, and clinical utility of mutation screening of sarcomere encoding genes in Danish hypertrophic cardiomyopathy patients and relatives. The American Heart Association (AHA) recommends family screening for hypertrophic cardiomyopathy (HCM). We assessed the outcome of family screening combining clinical evaluation and screening for sarcomere gene mutations in a cohort of 90 Danish HCM patients and their close relatives, in all 451 persons. Index patients were screened for mutations in all coding regions of 10 sarcomere genes (MYH7, MYL3, MYBPC3, TNNI3, TNNT2, TPM1, ACTC, CSRP3, TCAP, and TNNC1) and five exons of TTN. Relatives were screened for presence of minor or major diagnostic criteria for HCM and tracking of DNA variants was performed. In total, 297 adult relatives (&gt;18 years) (51.2%) fulfilled one or more criteria for HCM. A total of 38 HCM-causing mutations were detected in 32 index patients. Six patients carried two disease-associated mutations. Twenty-two mutations have only been identified in the present cohort. The genetic diagnostic yield was almost twice as high in familial HCM (53%) vs. HCM of sporadic or unclear inheritance (19%). The yield was highest in families with an additional history of HCM-related clinical events. In relatives, 29.9% of mutation carriers did not fulfil any clinical diagnostic criterion, and in 37.5% of relatives without a mutation, one or more criteria was fulfilled. A total of 60% of family members had no mutation and could be reassured and further follow-up ceased. Genetic diagnosis may be established in approximately 40% of families with the highest yield in familial HCM with clinical events. Mutation-screening was superior to clinical investigation in identification of individuals not at increased risk, where follow-up is redundant, but should be offered in all families with relatives at risk for developing HCM."	"Serum response factor orchestrates nascent sarcomerogenesis and silences the biomineralization gene program in the heart. Our conditional serum response factor (SRF) knockout, Srf (Cko), in the heart-forming region blocked the appearance of rhythmic beating myocytes, one of the earliest cardiac defects caused by the ablation of a cardiac-enriched transcription factor. The appearance of Hand1 and Smyd1, transcription and chromatin remodeling factors; Acta1, Acta2, Myl3, and Myom1, myofibril proteins; and calcium-activated potassium-channel gene activity (KCNMB1), the channel protein, were powerfully attenuated in the Srf(CKO) mutant hearts. A requisite role for combinatorial cofactor interactions with SRF, as a major determinant for regulating the appearance of organized sarcomeres, was shown by viral rescue of SRF-null ES cells with SRF point mutants that block cofactor interactions. In the absence of SRF genes associated with biomineralization, GATA-6, bone morphogenetic protein 4 (BMP4), and periostin were strongly up-regulated, coinciding with the down regulation of many SRF dependent microRNA, including miR1, which exerted robust silencer activity over the induction of GATA-6 leading to the down regulation of BMP4 and periostin."	"[An experimental study of the role of myosin light chain in myogenesis in vitro]. To investigate the role of myosin light chain (Myl) in myogenesis in vitro. The extraocular muscle, diaphragm and gastrocnemius muscle myoblasts (eMb, dMb and gMb) were isolated and purified from 12 3-week-old C57BL/6 mice by using the enzyme digestion and Preplate technique, and then were subcultivated. The Myl expression in Mb was detected by RT-PCR and Western blot analysis; the Mb proliferation activity was tested by methylene blue assay, and the myotube formation was observed. After anti-Myl antibody (1, 2, 3, 8, 16 ng/mL) was induced in the Mb culture (experimental group), the ability of proliferation of myoblasts and the myotube formation were identified. Meanwhile, the Mb which was cultured without anti-Myl antibody was identified as the control group. The results of RT-PCR and Western blot analysis showed that Myl1 and Myl4 mRNA and Myl protein were expressed in eMb, dMb and gMb at 24 hours after seeding, and their expression level were lower in eMb than in dMb and gMb (P &lt; 0.01), and the latter two did not show any significant difference (P &gt; 0.05). Myl2 and Myl3 mRNA was not detected in these three myoblasts. The proliferation assay showed that the eMb proliferated faster as compared with dMb and gMb (P &lt; 0.01). eMb began to yield myotubes at 40 hours after seeding and dMb and gMb at 16 hours after seeding. At 6 days, the number of myotubes derived from eMb was (137.2 +/- 24.5)/field, which was significantly larger than that of myotubes from dMb [(47.6 +/- 15.5)/field ] and gMb [(39.8 +/- 5.1)/ field ] (P &lt; 0.01). There was not statistically significant difference between the latter two groups (P &gt; 0.05). After the antibody treatment, the absorbency values of the eMb, dMb and gMb in the experimental groups at each antibody concentration point were significantly higher than those in the corresponding control groups (P &lt; 0.05), and the dose-dependent way was performed. The numbers of myotubes from dMb at 16 hours were (48.2 +/- 7.1)/ well in the experimental group and (23.4 +/- 4.9)/ well in the control group, and at 6 days were (40.6 +/- 10.2)/ field in the experimental group and (63.1 +/- 6.1)/ field in the control group. There was statistically significant difference between the experimental and control groups (P &lt; 0.01). Myl may play a role in myogenesis through the negative effect on the myoblast proliferation."	"A DNA resequencing array for pathogenic mutation detection in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a heterogeneous autosomal dominant cardiac disorder with a prevalence of 1 in 500. Over 450 different pathogenic mutations in at least 16 genes have been identified so far. The large allelic and genetic heterogeneity of HCM requires high-throughput, rapid, and affordable mutation detection technologies to efficiently integrate molecular screening into clinical practice. We developed a custom DNA resequencing array that contains both strands of all coding exons (160), splice-site junctions, and 5'UTR regions of 12 genes that have been clearly implicated in HCM (MYH7, MYBPC3, TNNT2, TPM1, TNNI3, MYL3, MYL2, CSRP3, PLN, ACTC, TNNC1, and PRKAG2). We analyzed a first series of 38 unrelated patients with HCM (17 familial, 21 sporadic). A total of 953,306 bp across the 38 patients were sequenced with a mean nucleotide call rate of 96.92% (range: 93-99.9%). Pathogenic mutations (single nucleotide substitutions) in MYH7, MYBPC3, TNNI3, and MYL3 (six known and six novel) were identified in 60% (10/17) of familial HCM and 10% of sporadic cases (2/21). The high-throughput HCM resequencing array is the most rapid and cost-effective tool for molecular testing of HCM to date; it thus has considerable potential in diagnostic and predictive testing, and prognostic stratification."	"Shared genetic causes of cardiac hypertrophy in children and adults. The childhood onset of idiopathic cardiac hypertrophy that occurs without a family history of cardiomyopathy can portend a poor prognosis. Despite morphologic similarities to genetic cardiomyopathies of adulthood, the contribution of genetics to childhood-onset hypertrophy is unknown. We assessed the family and medical histories of 84 children (63 boys and 21 girls) with idiopathic cardiac hypertrophy diagnosed before 15 years of age (mean [+/-SD] age, 6.99+/-6.12 years). We sequenced eight genes: MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3, MYL2, and ACTC. These genes encode sarcomere proteins that, when mutated, cause adult-onset cardiomyopathies. We also sequenced PRKAG2 and LAMP2, which encode metabolic proteins; mutations in these genes can cause early-onset ventricular hypertrophy. We identified mutations in 25 of 51 affected children without family histories of cardiomyopathy and in 21 of 33 affected children with familial cardiomyopathy. Among 11 of the 25 children with presumed sporadic disease, 4 carried new mutations and 7 inherited the mutations. Mutations occurred predominantly (in &gt;75% of the children) in MYH7 and MYBPC3; significantly more MYBPC3 missense mutations were detected than occur in adult-onset cardiomyopathy (P&lt;0.005). Neither hypertrophic severity nor contractile function correlated with familial or genetic status. Cardiac transplantation and sudden death were more prevalent among mutation-positive than among mutation-negative children; implantable cardioverter-defibrillators were more frequent (P=0.007) in children with family histories that were positive for the mutation. Genetic causes account for about half of presumed sporadic cases and nearly two thirds of familial cases of childhood-onset hypertrophy. Childhood-onset hypertrophy should prompt genetic analyses and family evaluations."	"Strategic use of immunoprecipitation and LC/MS/MS for trace-level protein quantification: myosin light chain 1, a biomarker of cardiac necrosis. Myosin light chain 1 (Myl3) is a 23-kDa isoform of one of the subunits of myosin, a protein involved in muscle contraction. Myl3 is presently being studied as a biomarker of cardiac necrosis to predict drug-induced cardiotoxicity, and in the work presented here, an LC/MS/MS assay was developed and validated to measure Myl3 in rat serum. The key steps in this approach involved immunoaffinity purification of Myl3 from serum followed by on-bead digestion with trypsin to release a surrogate peptide. This tryptic peptide was quantified using a synthetic peptide standard and a corresponding stable isotope-labeled internal standard, and the results were stoichiometrically converted to Myl3 serum concentrations. Myl3 concentrations were corrected for peptide recovery following immunoprecipitation and digestion (85%) and showed excellent agreement with synthetic peptide standards. Both the synthetic peptide and His-Myl3 protein were used to evaluate assay accuracy (% RE) and precision (% CV), which were measured on each of 3 days. The synthetic peptide was evaluated over the range of 0.073-7.16 nM, while Myl3 protein QC samples prepared in rat serum were evaluated over the range of 0.13-6.62 nM. To prepare control matrix, endogenous Myl3 was immunodepleted from pooled rat serum. Peptide interday accuracy and precision did not exceed 7.6 and 11.1%, and Myl3 interday accuracy and precision did not exceed 12.9 and 13.2%, respectively. Data are presented from the application of this assay to establish a time course in which rats demonstrated a marked increase in Myl3 serum concentrations following administration of isoproterenol, a beta-adrenergic receptor agonist known to induce cardiac injury. This assay is an example of a larger effort in our laboratory to use LC/MS/MS in conjunction with immunoaffinity techniques to evaluate candidate biomarkers of target organ toxicity and to expedite the development of biomarker assays for drug development."	"Single-gene mutations and increased left ventricular wall thickness in the community: the Framingham Heart Study. Mutations in sarcomere protein, PRKAG2, LAMP2, alpha-galactosidase A (GLA), and several mitochondrial genes can cause rare familial cardiomyopathies, but their contribution to increased left ventricular wall thickness (LVWT) in the community is unknown. We studied 1862 unrelated participants (52% women; age, 59+/-9 years) from the community-based Framingham Heart Study who had echocardiograms and provided DNA samples but did not have severe hypertension, aortic prosthesis, or significant aortic stenosis. Eight sarcomere protein genes, 3 storage cardiomyopathy-causing genes, and 27 mitochondrial genes were sequenced in unrelated individuals with increased LVWT (maximum LVWT &gt;13 mm). Fifty eligible participants (9 women) had unexplained increased LVWT. We detected 8 mutations in 9 individuals (2 women); 7 mutations in 5 sarcomere protein genes (MYH7, MYBPC3, TNNT2, TNNI3, MYL3), and 1 GLA mutation. In individuals with increased LVWT, participants with sarcomere protein and storage mutations were clinically indistinguishable from those without mutations. In a community-based cohort, about 3% of eligible participants had increased LVWT, of whom 18% had sarcomere protein or lipid storage gene mutations. Increased LVWT in the community is a very heterogeneous condition, which sometimes may arise from single-gene variants in one of a number of genes."	"Compound and double mutations in patients with hypertrophic cardiomyopathy: implications for genetic testing and counselling. To report the frequency of single and multiple gene mutations in an Australian cohort of patients with hypertrophic cardiomyopathy (HCM). Genetic screening of seven HCM genes (beta-MHC, MyBP-C, cTnT, cTnI, ACTC, MYL2, and MYL3) was undertaken in 80 unrelated probands. Screening was by denaturing high performance liquid chromatography and direct DNA sequencing. Clinical data were collected on all patients and on genotyped family members. 26 mutations were identified in 23 families (29%). Nineteen probands (24%) had single mutations (11 beta-MHC, 4 MyBP-C, 3 cTnI, 1 cTnT). Multiple gene mutations were identified in four probands (5%): one had a double mutation and the others had compound mutations. Six of 14 affected individuals from multiple mutation families (43%) experienced a sudden cardiac death event, compared with 10 of 55 affected members (18%) from single mutation families (p = 0.05). There was an increase in septal wall thickness in patients with compound mutations (mean (SD): 30.7 (3.1) v 24.4 (7.4) mm; p&lt;0.05). Multiple gene mutations occurring in HCM families may result in a more severe clinical phenotype because of a &quot;double dose&quot; effect. This highlights the importance of screening the entire panel of HCM genes even after a single mutation has been identified."	"High-throughput single-strand conformation polymorphism analysis on a microfabricated capillary array electrophoresis device. A high-density 384-lane microfabricated capillary array electrophoresis device is evaluated for high-throughput single-strand conformation polymorphism (SSCP) analysis. A delayed back bias direct electrokinetic injection scheme is used to provide better than 10-bp resolution with an 8.0-cm effective separation length. Separation of a HaeIII digest of PhiX174 yielded theoretical plate numbers of 4.0 x 10(6). Using 5% PDMA containing 10% glycerol and 15% urea, 21 single-nucleotide polymorphisms (SNPs) from HFE, MYL2, MYL3, and MYH7 genes associated with hereditary hemochromatosis (HHC) and hereditary hypertrophic cardiomyopathy (HCM) are discriminated at two running temperatures (25 degrees C and 40 degrees C), providing 100% sensitivity. The data in this study demonstrate that the 384-lane microCAE device provides the resolution and detection sensitivity required for SSCP analysis, showing its potential for ultrahigh-throughput mutation detection."	"Identification of direct serum-response factor gene targets during Me2SO-induced P19 cardiac cell differentiation. Serum-response factor (SRF) is an obligatory transcription factor, required for the formation of vertebrate mesoderm leading to the origin of the cardiovascular system. Protein A-TEV-tagged chromatin immunoprecipitation technology was used to collect direct SRF-bound gene targets from pluripotent P19 cells, induced by Me2SO treatment into an enriched cardiac cell population. From 242 sequenced DNA fragments, we identified 188 genomic DNA fragments as potential direct SRF targets that contain CArG boxes and CArG-like boxes. Of the 92 contiguous genes that were identified, a subgroup of 43 SRF targets was then further validated by co-transfection assays with SRF. Expression patterns of representative candidate genes were compared with the LacZ reporter expression activity of the endogenous SRF gene. According to the Unigene data base, 84% of the SRF target candidates were expressed, at least, in the heart. In SRF null embryonic stem cells, 81% of these SRF target candidates were greatly affected by the absence of SRF. Among these SRF-regulated genes, Raf1, Map4k4, and Bicc1 have essential roles in mesoderm formation. The 12 regulated SRF target genes, Mapk10 (JNK3), Txnl2, Azi2, Tera, Sema3a, Lrp4, Actc1, Myl3, Hspg2, Pgm2, Hif3a, and Asb5, have been implicated in cardiovascular formation, and the Ski and Hes6 genes have roles in muscle differentiation. SRF target genes related to cell mitosis and cycle, E2f5, Npm1, Cenpb, Rbbp6, and Scyl1, expressed in the heart tissue were differentially regulated in SRF null ES cells."	"[Familial hypertrophic cardiomyopathy: genes, mutations and animal models. A review]. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disease, which may afflict as many as 1 in 500 subjects (0.2%), being probably the most common hereditary cardiovascular disease and the most common cause of sudden cardiac death (SCD). Hypertrophic cardiomyopathy is characterized by the presence of unexplained left ventricular hypertrophy (in absence of hypertension, valvular disease, etc), which is usually asymmetric and involves the ventricular septum. Molecular genetic studies have identified eleven genes that code proteins of the sarcomere that are associated with the HCM; the beta-myosin heavy chain gene (MYH7), alpha-myosin heavy chain (MYH6), cardiac troponin T (TNNT2); cardiac troponin C (TNNC1), alpha-tropomyosin (TPM1), myosin binding protein-C (MYBPC3), cardiac troponin (TNNI3), essential and regulatory light chain genes (MYL3 and MYL2, respectively), cardiac alpha-actin gene (ACTC) and titin (TTN). The objective of this paper is the revision of the current state of the knowledge on (1) the organization and mutations of the HCM causing genes and their proteins and (2) the animal models developed for the study of the genes, mutations and proteins in the hypertrophic cardiomyopathy."	"Hypertrophic cardiomyopathy: distribution of disease genes, spectrum of mutations, and implications for a molecular diagnosis strategy. Hypertrophic cardiomyopathy is an autosomal-dominant disorder in which 10 genes and numerous mutations have been reported. The aim of the present study was to perform a systematic screening of these genes in a large population, to evaluate the distribution of the disease genes, and to determine the best molecular strategy in clinical practice. The entire coding sequences of 9 genes (MYH7, MYBPC3, TNNI3, TNNT2, MYL2, MYL3, TPM1, ACTC, andTNNC1) were analyzed in 197 unrelated index cases with familial or sporadic hypertrophic cardiomyopathy. Disease-causing mutations were identified in 124 index patients ( approximately 63%), and 97 different mutations, including 60 novel ones, were identified. The cardiac myosin-binding protein C (MYBPC3) and beta-myosin heavy chain (MYH7) genes accounted for 82% of families with identified mutations (42% and 40%, respectively). Distribution of the genes varied according to the prognosis (P=0.036). Moreover, a mutation was found in 15 of 25 index cases with &quot;sporadic&quot; hypertrophic cardiomyopathy (60%). Finally, 6 families had patients with more than one mutation, and phenotype analyses suggested a gene dose effect in these compound-heterozygous, double-heterozygous, or homozygous patients. These results might have implications for genetic diagnosis strategy and, subsequently, for genetic counseling. First, on the basis of this experience, the screening of already known mutations is not helpful. The analysis should start by testing MYBPC3 and MYH7 and then focus on TNNI3, TNNT2, and MYL2. Second, in particularly severe phenotypes, several mutations should be searched. Finally, sporadic cases can be successfully screened."	"High-throughput single strand conformation polymorphism mutation detection by automated capillary array electrophoresis: validation of the method. Capillary array electrophoresis (CAE) is a novel technique, which allows for high throughput analysis of DNA fragments. When screening for mutations in whole populations or large patient groups it is necessary to have robust and well-characterized setups for high throughput analysis. For large-scale mutation screening, we have developed procedures for single strand conformation polymorphism (SSCP) assays using CAE (CAE-SSCP) whereby we may increase both the sensitivity and the throughput compared to conventional SSCP analysis. In this study we have validated CAE-SSCP by 1) comparing detection by slab-gel based SSCP with CAE-SSCP of mutations in the MYH7, MYL2, and MYL3 genes encoding sarcomere proteins from patients suffering from hypertrophic cardiomyopathy; and 2) by constructing a series of 185 mutants having substitution mutations, as well as insertion/deletion mutations, or some combinations of these, in different sequence contexts in four exons and different positions relative to the end of the amplicon (three from the KCNQ1 gene, encoding a cardiac potassium channel, and one from the TNNI3 gene encoding cardiac troponin I). The method identified 181 out of 185 mutations (98%), and the data suggest that the position of mutation in the fragment had no effect on the sensitivity. Analysis of the specificity of the method showed that only very few mutants could not be distinguished from each other and there were no false positives."	"Systematic analysis of the regulatory and essential myosin light chain genes: genetic variants and mutations in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) can be caused by mutations in genes encoding for the ventricular myosin essential and regulatory light chains. In contrast to other HCM disease genes, only a few studies describing disease-associated mutations in the myosin light chain genes have been published. Therefore, we aimed to conduct a systematic screening for mutations in the ventricular myosin light chain genes in a group of clinically well-characterised HCM patients. Further, we assessed whether the detected mutations are associated with malignant or benign phenotype in the respective families. We analysed 186 unrelated individuals with HCM for the human ventricular myosin regulatory (MYL2) and essential light chain genes (MYL3) using polymerase chain reaction, single strand conformation polymorphism analysis and automated sequencing. We found eight single nucleotide polymorphisms in exonic and adjacent intronic regions of MYL2 and MYL3. Two MYL2 missense mutations were identified in two Caucasian families while no mutation was found in MYL3. The mutation Glu22Lys was associated with moderate septal hypertrophy, a late onset of clinical manifestation, and benign disease course and prognosis. The mutation Arg58Gln showed also moderate septal hypertrophy, but, in contrast, it was associated with an early onset of clinical manifestation and premature sudden cardiac death. In conclusion, myosin light chain mutations are a very rare cause of HCM responsible for about 1% of cases. Mutations in MYL2 could be associated with both benign and malignant HCM phenotype."	"[Mutations in genes for sarcomeric proteins]. Idiopathic cardiomyopathy(ICM) is by definition of unknown etiology. There are four clinical types of ICM; hypertrophic cardiomyopathy(HCM) characterized by ventricular hypertrophy associated with reduced compliance of the heart and accompanied by myofibrillar disarray, dilated cardiomyopathy(DCM) characterized by dilated ventricles associated with systolic dysfunction, restricted cardiomyopathy (RCM) and arrhythmogenic right ventricular cardiomyopathy(ARVC). Recent molecular genetic analyses have now revealed disease-associated mutations in ICM, especially in familial HCM and familial DCM. Mutations in 9 different disease genes (MYH7, TNNT2, TPM1, MYBPC3, MYL3, MYL2, TNNI3, CACT and TTN) cause HCM, while mutations in 3 different genes(CACT, DES and DMD) cause DCM in adults. In this review, I will summarize our current data on sarcomere mutations found in Japanese ICM, especially in HCM and DCM."	"Cloning of a parathyroid hormone/parathyroid hormone-related peptide receptor (PTHR) cDNA from a rat osteosarcoma (UMR 106) cell line: chromosomal assignment of the gene in the human, mouse, and rat genomes. Complementary DNAs spanning the entire coding region of the rat parathyroid hormone/parathyroid hormone-related peptide receptor (PTHR) were isolated from a rat osteosarcoma (UMR 106) cell-line cDNA library. The longest of these clones (rPTHrec4) was used to chromosomally assign the PTHR gene in the human, rat, and mouse genomes. By somatic cell hybrid analysis, the gene was localized to human chromosome 3 and rat chromosome 8; by in situ hybridization, the gene was mapped to human chromosome 3p21.1-p22 and to mouse chromosome 9 band F; and by interspecific backcross analysis, the Pthr gene segregated with the transferrin (Trf) gene in chromosome 9 band F. Mouse chromosome 9 and rat chromosome 8 are known to be highly homologous and to also show synteny conservation with human chromosome 3. These three chromosomes share the transferrin gene (TF), the myosin light polypeptide 3 gene (MYL3), and the acylpeptide hydrolase gene (APEH). Our results add a fourth gene, the PTHR gene, to the synteny group conserved in these chromosomes."	"Chromosomal assignment of two myosin alkali light-chain genes encoding the ventricular/slow skeletal muscle isoform and the atrial/fetal muscle isoform (MYL3, MYL4). In all eukaryotes, myosin plays a major role in the maintenance of cell shape and in cellular movement; in association with actin and other contractile proteins it is also a major structural component of the muscle sarcomere. Several isoforms of myosin alkali light chain have been identified, associated with different muscle types. We have recently localized the gene encoding the fast skeletal muscle alkali light-chain isoforms MLC1F and MLC3F (HGM symbol, MYL1) to human chromosome 2q32.1-qter (Cohen-Haguenauer 1988). We present here the chromosomal assignment of two loci encoding the ventricular muscle isoform MLC1V (equivalent to the slow skeletal muscle isoform MLC1Sb) and the atrial muscle isoform MLC1A (equivalent to the fetal isoform MLC1emb) using a panel of 25 independent man-rodent somatic cell hybrids. The MLC1V gene (HGM symbol, MYL3) was mapped to human chromosome 3 using a human full-length cDNA probe that hybridizes to a single major human TaqI2.8-kb fragment. The MLC1A probe (HGM symbol, MYL4) was a 360-bp mouse cDNA fragment that gave a distinct signal with human DNA using low stringency conditions of hybridization and washings and after presaturation of the Southern blots with rodent DNA. A single PstI 7.8-kb fragment gives an intense signal, and its presence correlates with the presence of chromosome 17 among the hybrids. These data are in keeping with the localizations of the MLC1V gene to mouse chromosome 9, and of the MLC1A gene to mouse chromosome 11, which share some markers in common with human chromosomes 3 and 17 respectively."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PRKAG2"	"hypertrophic cardiomyopathy"	"Glycogen storage cardiomyopathy (PRKAG2): diagnostic findings of standard and advanced echocardiography techniques. Describe the findings obtained using standard echocardiography (Echo) and deformation indices (2D and 3D speckle tracking strain) in patients (Pts) with PRKAG2 cardiomyopathy. Seek to identify any peculiar characteristics and possible strain patterns that may distinguish this condition from other causes of left ventricular hypertrophy (LVH). Thirty Pts with genetically proven PRKAG2 (R302Q and H401Q), 16 (53.3%) male, mean age 39.1± 15.4 years old, were examined using standard, speckle tracking (STE), and 3D Echo. Pacemaker (PM) had been implanted in 12 (40%) Pts with a mean age of 38.1 ± 13 years. Hypertrophy was found in varying degrees in 18 (86%) Pts. Seven Pts (24%) presented 3D ejection fraction (EF) below normal limits. Diastolic function was abnormal in 17 (63%) Pts. Global longitudinal strain (GLS) on 2D measured -16.4% ± 5.3%. GLS measured -13.2% ± 4.8%, global radial strain 40.8% ± 13.8%, global circumferential strain (GCS) -16.1% ± 4.4%, and global area strain -26.1% ± 6.7% by 3D Echo offline analyses. Pts with PM presented lower EF and GCS compared with those without PM. EF/GLS measured 3.65 ± 1.00. In the bull's eye map, a strain pattern similar to stripes in 18 (60%) Pts was identified, which might be a differentiating signal among LVH. Echocardiography is a valuable tool in detecting diffuse and focal myocardial abnormalities in PRKAG2 cardiomyopathy. The deformation indices are especially revealing because they may help distinguish this rare infiltrative disease, thereby favouring early diagnosis, enhanced treatment, and improved outcome."	"[Partial isoform-specific expression and function of AMPK in ovarian carcinoma]. Objective To investigate the expression of AMP-activated protein kinase (AMPK) α, β, γ subunits in ovarian cancer and their correlations with clinicopathological features. Methods Real-time fluorescence quantitative PCR was used to detect the mRNA levels of AMPKα2 (PRKAA2), AMPKβ1 (PRKAB1), PRKAB2, AMPKγ1 (PRKAG1) and PRKAG2 in both ovarian cancer and benign ovarian tumor, meanwhile immunohistochemistry staining was used to study the protein levels of AMPKα2 and AMPKβ1. The correlations between the expression of AMPKα2 and AMPKβ1 and the clinicopathological features of ovarian cancer were analyzed by Chi-square test. Results The levels of PRKAA2 and PRKAB1 mRNA in ovarian cancer were significantly higher than those in benign ovarian tumor, while the expression of PRKAB2, PRKAG1 and PRKAG2 mRNA in ovarian cancer was not significantly different from those in benign ovarian tumor. The protein level of AMPKα2 and AMPKβ1 in ovarian cancer tissues was higher than those in benign ovarian tumor tissues. Higher expressed AMPKα2 had a great relationship with the high differentiation of ovarian cancer and the incidence of unilateral ovary. The higher expression of AMPKβ1 was significantly related to the low differentiation of ovarian cancer and the incidence of bilateral ovary. Conclusion Ovarian cancer expresses higher levels of AMPKα2 and AMPKβ1, whatever at the mRNA or protein level, and the discrepancy between AMPK subunits might be related to the various functions of AMPK in multiple types of tumors."	"Identification of long non-coding RNAs in advanced prostate cancer associated with androgen receptor splicing factors. The molecular and cellular mechanisms of development of castration-resistant prostate cancer (CRPC) remain elusive. Here, we analyzed the comprehensive and unbiased expression profiles of both protein-coding and long non-coding RNAs (lncRNAs) using RNA-sequencing to reveal the clinically relevant molecular signatures in CRPC tissues. For protein-coding genes upregulated in CRPC, we found that mitochondria-associated pathway, androgen receptor (AR), and spliceosome associated genes were enriched. Moreover, we discovered AR-regulated lncRNAs, CRPC-Lncs, that are highly expressed in CRPC tissues. Notably, silencing of two lncRNAs (CRPC-Lnc #6: PRKAG2-AS1 and #9: HOXC-AS1) alleviated CRPC tumor growth, showing repression of AR and AR variant expression. Mechanistically, subcellular localization of the splicing factor, U2AF2, with an essential role in AR splicing machinery was modulated dependent on the expression level of CRPC-Lnc #6. Thus, our investigation highlights a cluster of lncRNAs which could serve as AR regulators as well as potential biomarkers in CRPC."	"Familial Atrial Enlargement, Conduction Disorder and Symmetric Cardiac Hypertrophy Are Early Signs of PRKAG2 R302Q. PRKAG2 cardiac syndrome (PS) is a rare inherited disease due to PRKAG2 gene mutation and characterized by Wolff-Parkinson-White syndrome (WPWs), conduction system lesions and myocardial hypertrophy. It can also lead to serious consequences, such as sudden death. But the genetic and clinical heterogeneity makes the early diagnosis of PS difficult. Here we studied a family with familial hypertrophic cardiomyopathy and other diverse manifestations. Gene analysis identified a missense mutation (Arg302Gln) in the five affected subjects of the family. The electrocardiograph performance of the five was composed of sinus bradycardia (SB), WPWs, right bundle branch block (RBBB), atrioventricular block (AVB), left bundle branch block (LBBB), supraventricular tachycardia (SVT) and atrial premature beat (APB). Among them, the youngest one began to show paroxysmal palpitation at the age of nine and was confirmed to have WPWs at 17 years old; two members progressed over time to serious conduction damage, and the proband received a pacemaker at the age of 27 due to AVB. Besides, according to cardiac magnetic resonance and echocardiography, the youngest one showed symmetric hypertrophy; three older members showed asymmetric myocardial hypertrophy characterized with a diffuse pattern of middle-anterior-lateral-inferior wall hypertrophy and especially interventricular septal hypertrophy; all five affected patients showed atrial enlargement regardless of myocardial hypertrophy at an earlier stage. In conclusion, the conduction system disorder, familial atrial enlargement and symmetric cardiac hypertrophy may occur in the early stage of PRKAG2 R302Q mutation."	"PRKAG2 Glycogen Storage Disease Cardiomyopathy: Out of the Darkness and Into the Light. NA"	"Clinical Features and Natural History of PRKAG2 Variant Cardiac Glycogenosis. PRKAG2 gene variants cause a syndrome characterized by cardiomyopathy, conduction disease, and ventricular pre-excitation. Only a small number of cases have been reported to date, and the natural history of the disease is poorly understood. The aim of this study was to describe phenotype and natural history of PRKAG2 variants in a large multicenter European cohort. Clinical, electrocardiographic, and echocardiographic data from 90 subjects with PRKAG2 variants (53% men; median age 33 years; interquartile range [IQR]: 15 to 50 years) recruited from 27 centers were retrospectively studied. At first evaluation, 93% of patients were in New York Heart Association functional class I or II. Maximum left ventricular wall thickness was 18 ± 8 mm, and left ventricular ejection fraction was 61 ± 12%. Left ventricular hypertrophy (LVH) was present in 60 subjects (67%) at baseline. Thirty patients (33%) had ventricular pre-excitation or had undergone accessory pathway ablation; 17 (19%) had pacemakers (median age at implantation 36 years; IQR: 27 to 46 years), and 16 (18%) had atrial fibrillation (median age 43 years; IQR: 31 to 54 years). After a median follow-up period of 6 years (IQR: 2.3 to 13.9 years), 71% of subjects had LVH, 29% had AF, 21% required de novo pacemakers (median age at implantation 37 years; IQR: 29 to 48 years), 14% required admission for heart failure, 8% experienced sudden cardiac death or equivalent, 4% required heart transplantation, and 13% died. PRKAG2 syndrome is a progressive cardiomyopathy characterized by high rates of atrial fibrillation, conduction disease, advanced heart failure, and life-threatening arrhythmias. Classical features of pre-excitation and severe LVH are not uniformly present, and diagnosis should be considered in patients with LVH who develop atrial fibrillation or require permanent pacemakers at a young age."	"Maternal dietary methionine supplementation influences egg production and the growth performance and meat quality of the offspring. This study aimed to investigate the effects of maternal dietary coated methionine (Met) on egg production and the quality, growth performance, carcass traits, and meat quality of the offspring. In total, 288 female Ross parental chickens were randomly assigned to 3 groups with 3 replicates of 32 chickens each. From week 37 to 46, the hens of different groups were fed diets containing low (0.27% Met), adequate (0.27% Met + 0.1% coated Met) (AM), and high (0.27% Met + 0.2% coated Met) (HM) Met. There was a positive response in laying rate and albumen weight in AM and HM groups. For the offspring at market age, BW, eviscerated weight, and muscle weight were increased in the AM group (P &lt; 0.05), whereas excessive supplementation was proven to be negative with those traits. The meat quality (color, pH, and shear force) of breast muscle was significantly influenced by different supplementation levels. The lightness and yellowness were increased in the HM group (P &lt; 0.05, P &lt; 0.01, respectively), and redness was decreased in the AM group (P &lt; 0.05). A lower pH value occurred in chickens of the HM group (P &lt; 0.05). The expressions of meat quality-related genes were altered in the supplementation groups. The pH-related genes PRDX4 and PRKAG2 were found to be significantly differentially expressed (P &lt; 0.05, P &lt; 0.01, respectively) and consistent with pH changes. The meat color-related gene BCO1 was also differentially expressed (P &lt; 0.01) and showed a corresponding change with yellowness value. Collectively, the best production performance was in the offspring with 0.1% coated Met supplementation (AM group). Supplementation with 0.2% coated Met (HM group) seemed to be excessive, but laying rate was increased in the HM group. Both results of phenotypic measurements and gene expression demonstrated that maternal-coated Met supplementation resulted in fluctuation of some meat quality indices in the offspring, but all values were still within the range found in normal chickens."	"Identification of potential candidate genes and pathways in atrioventricular nodal reentry tachycardia by whole-exome sequencing. Atrioventricular nodal reentry tachycardia (AVNRT) is the most common manifestation of paroxysmal supraventricular tachycardia (PSVT). Increasing data have indicated familial clustering and participation of genetic factors in AVNRT, and no pathogenic genes related to AVNRT have been reported. Whole-exome sequencing (WES) was performed in 82 patients with AVNRT and 100 controls. Reference genes, genome-wide association analysis, gene-based collapsing, and pathway enrichment analysis were performed. A protein-protein interaction (PPI) network was then established; WES database in the UK Biobank and one only genetic study of AVNRT in Denmark were used for external data validation. Among 95 reference genes, 126 rare variants in 48 genes were identified in the cases (minor allele frequency &lt; 0.001). Gene-based collapsing analysis and pathway enrichment analysis revealed six functional pathways related to AVNRT as with neuronal system/neurotransmitter release cycles and ion channel/cardiac conduction among the top 30 enriched pathways, and then 36 candidate pathogenic genes were selected. By combining with PPI analysis, 10 candidate genes were identified, including RYR2, NOS1, SCN1A, CFTR, EPHB4, ROBO1, PRKAG2, MMP2, ASPH, and ABCC8. From the UK Biobank database, 18 genes from candidate genes including SCN1A, PRKAG2, NOS1, and CFTR had rare variants in arrhythmias, and the rare variants in PIK3CB, GAD2, and HIP1R were in patients with PSVT. Moreover, one rare variant of RYR2 (c.4652A &gt; G, p.Asn1551Ser) in our study was also detected in the Danish study. Considering the gene functional roles and external data validation, the most likely candidate genes were SCN1A, PRKAG2, RYR2, CFTR, NOS1, PIK3CB, GAD2, and HIP1R. The preliminary results first revealed potential candidate genes such as SCN1A, PRKAG2, RYR2, CFTR, NOS1, PIK3CB, GAD2, and HIP1R, and the pathways mediated by these genes, including neuronal system/neurotransmitter release cycles or ion channels/cardiac conduction, might be involved in AVNRT."	"The Medicinal Mushroom Ganoderma neo-japonicum (Agaricomycetes) from Malaysia: Nutritional Composition and Potentiation of Insulin-Like Activity in 3T3-L1 Cells. Ganoderma neo-japonicum is an annual polypore mushroom that is consumed by Malaysian indigenous tribes to treat various ailments including diabetes. The present study aimed to investigate the nutritive composition and in vitro antihyperglycemic effects of G. neo-japonicum extracts on 3T3-L1 preadipocytes. Nutritional analysis of G. neo-japonicum basidiocarps indicated a predominant presence of carbohydrates, proteins, dietary fiber, and microelements. Hot aqueous extract (AE) and its isolated (1,3)(1,6)-β-D-glucan polysaccharide (GNJP) from basidiocarps of G. neo-japonicum were evaluated for their ability to stimulate insulin independent adipogenesis, glucose uptake, adiponectin secretion, and regulate gene expression in 3T3-L1 adipocytes. GNJP showed a dose dependent stimulation of glucose uptake and adiponectin secretion but attenuated lipid accumulation in 3T3-L1 adipocytes. It upregulated the expressions of adiponectin, Aktl (protein kinase B), PPARγ (peroxisome proliferator activated receptor gamma), PRKAG2 (protein kinase, AMP activated), and Slc2a4 (glucose transporter) genes to stimulate glucose uptake in 3T3-L1 cells, which may have contributed to the insulin-mimicking activities observed in this study. In summary, the nutritive compositions and significant glucose uptake stimulatory activities of GNJP indicated that it may have potential use in the formulation of functional food for the management of hyperglycemia, insulin resistance, and related complications."	"Cardiac MR manifestations in two cases of PRKAG2 mutations in a Chinese family. PRKAG2 syndrome (PS) is a rare autosomal dominant syndrome that mainly presents with hypertrophic cardiomyopathy, ventricular preexcitation, and conduction abnormalities. Few reports have demonstrated the morphologic manifestation of patients with PRKAG2 gene defect. This case report demonstrates the cardiac magnetic resonance characteristics of the PS patients from a Chinese family."	"Systems Genetics and Systems Biology Analysis of Paraquat Neurotoxicity in BXD Recombinant Inbred Mice. Paraquat (PQ) is an herbicide used in many countries, including the United States. It is also implicated as a risk factor for sporadic Parkinson's disease, especially in those living in agricultural areas and drinking well water. Studies linking PQ to sporadic Parkinson's disease are not consistent however and there appears to be interindividual differential susceptibility. One likely reason is genetically based differential susceptibility to paraquat neurotoxicity in subpopulations. To address this issue, we tested the effects of paraquat in a genetic reference population of mice (the BXD recombinant inbred strain family). In our earlier work, we showed that in genetically susceptible mice, paraquat increases iron in the ventral midbrain, the area containing the substantia nigra. Our hypothesis is that genetic variability contributes to diverse PQ-related susceptibility and iron concentration. To test this hypothesis, we treated male mice from 28 to 39 BXD strains plus the parental strains with 1 of 3 doses of paraquat, 1, 5, and 10 mg/kg 3 times on a weekly basis. At the end of the treatment period, we analyzed the ventral midbrain for concentrations of iron, copper, and zinc, also we measured the concentration of paraquat in cerebellum, and proinflammatory cytokines in serum and cerebellum. The effect on paraquat-treated mice with 5 mg/kg and principal component analysis of iron showed suggestive quantitative trait loci on chromosome 5. Overall, our results suggest that gene Prkag2 and related networks may serve as potential targets against paraquat toxicity and demonstrate the utility of genetically diverse mouse models for the study of complex human toxicity."	"Genome-wide association study identifies new loci for albuminuria in the Japanese population. Urinary albumin excretion (UAE) is a risk factor for cardiovascular diseases, metabolic syndrome, chronic kidney disease, etc. Only a few genome-wide association studies (GWAS) for UAE have been conducted in the European population, but not in the Asian population. Here we conducted GWAS and identified several candidate genes harboring single nucleotide polymorphisms (SNPs) responsible for UAE in the Japanese population. We conducted GWAS for UAE in 7805 individuals of Asian ancestry from health-survey data collected by Tohoku Medical Megabank Organization (ToMMo) and Iwate Tohoku Medical Megabank Organization (IMM). The SNP genotype data were obtained with a SNP microarray. After imputation using a haplotype panel consisting of 2000 genome sequencing, 4,962,728 SNP markers were used for the GWAS. Eighteen SNPs at 14 loci (GRM7, EXOC1/NMU, LPA, STEAP1B/RAPGEF5, SEMA3D, PRKAG2, TRIQK, SERTM1, TPT1-AS1, OR5AU1, TSHR, FMN1/RYR3, COPRS, and BRD1) were associated with UAE in the Japanese individuals. A locus with particularly strong associations was observed on TSHR, chromosome 14 [rs116622332 (p = 3.99 × 10<sup>-10</sup>)]. In this study, we successfully identified UAE-associated variant loci in the Japanese population. Further study is required to confirm this association."	"Identification, clinical manifestation and structural mechanisms of mutations in AMPK associated cardiac glycogen storage disease. Although 21 causative mutations have been associated with PRKAG2 syndrome, our understanding of the syndrome remains incomplete. The aim of this project is to further investigate its unique genetic background, clinical manifestations, and underlying structural changes. We recruited 885 hypertrophic cardiomyopathy (HCM) probands and their families internationally. Targeted next-generation sequencing of sudden cardiac death (SCD) genes was performed. The role of the identified variants was assessed using histological techniques and computational modeling. Twelve PRKAG2 syndrome kindreds harboring 5 distinct variants were identified. The clinical penetrance of 25 carriers was 100.0%. Twenty-two family members died of SCD or heart failure (HF). All probands developed bradycardia (HRmin, 36.3 ± 9.8 bpm) and cardiac conduction defects, and 33% had evidence of atrial fibrillation/paroxysmal supraventricular tachycardia (PSVT) and 67% had ventricular preexcitation, respectively. Some carriers presented with apical hypertrophy, hypertension, hyperlipidemia, and renal insufficiency. Histological study revealed reduced AMPK activity and major cardiac channels in the heart tissue with K485E mutation. Computational modelling suggests that K485E disrupts the salt bridge connecting the β and γ subunits of AMPK, R302Q/P decreases the binding affinity for ATP, T400N and H401D alter the orientation of H383 and R531 residues, thus altering nucleotide binding, and N488I and L341S lead to structural instability in the Bateman domain, which disrupts the intramolecular regulation. Including 4 families with 3 new mutations, we describe a cohort of 12 kindreds with PRKAG2 syndrome with novel pathogenic mechanisms by computational modelling. Severe clinical cardiac phenotypes may be developed, including HF, requiring close follow-up."	"Wolff-Parkinson-White syndrome: De novo variants and evidence for mutational burden in genes associated with atrial fibrillation. Wolff-Parkinson-White (WPW) syndrome is a relatively common arrhythmia affecting ~1-3/1,000 individuals. Mutations in PRKAG2 have been described in rare patients in association with cardiomyopathy. However, the genetic basis of WPW in individuals with a structurally normal heart remains poorly understood. Sudden death due to atrial fibrillation (AF) can also occur in these individuals. Several studies have indicated that despite ablation of an accessory pathway, the risk of AF remains high in patients compared to general population. We applied exome sequencing in 305 subjects, including 65 trios, 80 singletons, and 6 multiple affected families. We used de novo analysis, candidate gene approach, and burden testing to explore the genetic contributions to WPW. A heterozygous deleterious variant in PRKAG2 was identified in one subject, accounting for 0.6% (1/151) of the genetic basis of WPW in this study. Another individual with WPW and left ventricular hypertrophy carried a known pathogenic variant in MYH7. We found rare de novo variants in genes associated with arrhythmia and cardiomyopathy (ANK2, NEBL, PITX2, and PRDM16) in this cohort. There was an increased burden of rare deleterious variants (MAF ≤ 0.005) with CADD score ≥ 25 in genes linked to AF in cases compared to controls (P = .0023). Our findings show an increased burden of rare deleterious variants in genes linked to AF in WPW syndrome, suggesting that genetic factors that determine the development of accessory pathways may be linked to an increased susceptibility of atrial muscle to AF in a subset of patients."	"Sudden death associated with a novel H401Q PRKAG2 mutation. NA"	"Genetic Testing for Diagnosis of Hypertrophic Cardiomyopathy Mimics: Yield and Clinical Significance. Background Genetic testing is helpful for diagnosis of hypertrophic cardiomyopathy (HCM) mimics. Little data are available regarding the yield of such testing and its clinical impact. Methods The HCM genetic database at our center was used for identification of patients who underwent HCM-directed genetic testing including at least 1 gene associated with an HCM mimic (GLA, TTR, PRKAG2, LAMP2, PTPN11, RAF1, and DES). Charts were retrospectively reviewed and genetic and clinical data extracted. Results There were 1731 unrelated HCM patients who underwent genetic testing for at least 1 gene related to an HCM mimic. In 1.45% of cases, a pathogenic or likely pathogenic variant in one of these genes was identified. This included a yield of 1% for Fabry disease, 0.3% for familial amyloidosis, 0.15% for PRKAG2-related cardiomyopathy, and 1 patient with Noonan syndrome. In the majority of patients, diagnosis of the HCM mimic based on clinical findings alone would have been challenging. Accurate diagnosis of an HCM mimic led to change in management (eg, enzyme replacement therapy) or family screening in all cases. Conclusions Genetic testing is helpful in the diagnosis of HCM mimics in patients with no or few extracardiac manifestations. Adding these genes to all HCM genetic panels should be considered."	"A 6 lncRNA-Based Risk Score System for Predicting the Recurrence of Colon Adenocarcinoma Patients. Colon adenocarcinoma (COAD) is a common type of colon cancer, and post-operative recurrence and metastasis may occur in COAD patients. This study is designed to build a risk score system for COAD patients. The Cancer Genome Atlas (TCGA) dataset of COAD (the training set) was downloaded, and GSE17538 and GSE39582 (the validation sets) from Gene Expression Omnibus database were obtained. The differentially expressed RNAs (DERs) were analyzed by limma package. Using survival package, the independent prognosis-associated long non-coding RNAs (lncRNAs) were selected for constructing risk score system. After the independent clinical prognostic factors were screened out using survival package, a nomogram survival model was constructed using rms package. Furthermore, competitive endogenous RNA (ceRNA) regulatory network and enrichment analyses separately were performed using Cytoscape software and DAVID tool. Totally 404 DERs between recurrence and non-recurrence groups were identified. Based on the six independent prognosis-associated lncRNAs (including H19, KCNJ2-AS1, LINC00899, LINC01503, PRKAG2-AS1, and SRRM2-AS1), the risk score system was constructed. After the independent clinical prognostic factors (Pathologic M, pathologic T, and RS model status) were identified, the nomogram survival model was built. In the ceRNA regulatory network, there were three lncRNAs, four miRNAs, and 77 mRNAs. Additionally, PPAR signaling pathway and hedgehog signaling pathway were enriched for the mRNAs in the ceRNA regulatory network. The risk score system and the nomogram survival model might be used for predicting COAD recurrence. Besides, PPAR signaling pathway and hedgehog signaling pathway might affect the recurrence of COAD patients."	"PRKAG2 Gene Expression Is Elevated and its Protein Levels Are Associated with Increased Amyloid-β Accumulation in the Alzheimer's Disease Brain. Increased amyloid-β (Aβ) accumulation associated with abnormal autophagy-lysosomal activity and nutrient kinase dysregulation are common features in Alzheimer's disease (AD) brain. Recent studies have identified PRKAG2 and TIPRL genes that control nutrient kinase regulated autophagy, and here we determined if their expression is altered in postmortem AD brains. Gene and protein expression of TIPRL were unchanged. However, gene expression of PRKAG2 was increased 3-fold and its protein levels positively correlated with Aβ accumulation in the AD brain. In summary, our findings suggest that increased PRKAG2 is an important contributing factor to Aβ accumulation in the AD brain."	"Identification of De Novo JAK2 and MAPK7 Mutations Related to Autism Spectrum Disorder Using Whole-Exome Sequencing in a Chinese Child and Adolescent Trio-Based Sample. Autism spectrum disorder (ASD) is a neurodevelopmental disorder with high phenotypic and genetic heterogeneity. Whole-exome sequencing studies have shown that de novo single-nucleotide variations (SNVs) play an important role in sporadic ASD. The present study aimed to search for de novo SNVs using whole-exome sequencing in 59 unrelated Chinese ASD sporadic trios, and found 24 genes (including five reported ASD candidate genes CACNA1D, ACHE, YY1, TTN, and FBXO11) with de novo harmful SNVs. Five genes (CACNA1D, JAK2, ACHE, MAPK7, and PRKAG2) classified as &quot;medium-confidence&quot; genes were found to be related to ASD using the Phenolyzer gene analysis tool, which predicts the correlation between the candidate genes and the ASD phenotype. De novo SNVs in JAK2, MAPK7, and PRKAG2 were first found in ASD. Both JAK2 and MAPK7 were involved in the regulation of the MAPK signaling pathway. Gene co-expression and inter-gene interaction networks were constructed and gene expression data in different brain regions were further extracted, revealing that JAK2 and MAPK7 genes were associated with certain previously reported ASD genes and played an important role in early brain development. The findings of this study suggest that the aforementioned five reported ASD genes and JAK2 and MAPK7 may be related to ASD susceptibility. Further investigations of expression studies in cellular and animal models are needed to explore the mechanism underlying the involvement of JAK2 and MAPK7 in ASD."	"Novel PRKAG2 Variant Manifesting with a Cardiac Arrest in a Child. We describe the case of a novel PRKAG2 mutation that manifested with a ventricular fibrillation cardiac arrest in a child. The previously healthy 13-year old boy, was subsequently diagnosed with Wolff-White-Parkinson syndrome, mild left ventricular hypertrophy and atrial fibrillation. His father had also been diagnosed in the past with Wolff-White-Parkinson syndrome and developed left ventricular hypertrophy. A novel heterozygous likely pathogenic variant, c.911C&gt;G, p.Ala304Gly was identified in the father and his son, which is absent from population databases. PRKAG2 gene variants have previously been shown to cause a familial syndrome of ventricular hypertrophy, ventricular pre-excitation, supraventricular tachycardia, and conduction abnormalities. However, to the best of our knowledge, this is the first description of this rare syndrome manifesting with a more severe phenotype in a second generation relative within the same family."	"AMPK Subunits Harbor Largely Nonoverlapping Genetic Determinants for Body Fat Mass, Glucose Metabolism, and Cholesterol Metabolism. Adenosine monophosphate (AMP)-activated protein kinase (AMPK) is a heterotrimeric enzyme and central regulator of cellular energy metabolism. The impact of single nucleotide polymorphisms (SNPs) in all 7 AMPK subunit genes on adiposity, glucose metabolism, and lipid metabolism has not yet been systematically studied. To analyze the associations of common SNPs in all AMPK genes, and of different scores thereof, with adiposity, insulin sensitivity, insulin secretion, blood glucose, low-density lipoprotein (LDL) cholesterol, high-density lipoprotein (HDL) cholesterol, total cholesterol, and triglycerides. A cohort of 2789 nondiabetic participants from the Tübingen Family study of type 2 diabetes, metabolically characterized by oral glucose tolerance test and genotyped by genome-wide SNP array, was analyzed. We identified 6 largely nonoverlapping SNP sets across 4 AMPK genes (PRKAA1, PRKAA2, PRKAG2, PRKAG3) associated with adiposity, insulin sensitivity, insulin secretion, blood glucose, total/LDL cholesterol, or HDL cholesterol, respectively. A genetic score of body-fat-increasing alleles revealed per-allele effect sizes on body mass index (BMI) of +0.22 kg/m2 (P = 2.3 × 10-7), insulin sensitivity of -0.12 × 1019 L2/mol2 (P = 9.9 × 10-6) and 2-hour blood glucose of +0.02 mmol/L (P = 0.0048). Similar effects on blood glucose were observed with scores of insulin-sensitivity-reducing, insulin-secretion-reducing and glucose-raising alleles, respectively. A genetic cholesterol score increased total and LDL cholesterol by 1.17 mg/dL per allele (P = 0.0002 and P = 3.2 × 10-5, respectively), and a genetic HDL score decreased HDL cholesterol by 0.32 mg/dL per allele (P = 9.1 × 10-6). We describe largely nonoverlapping genetic determinants in AMPK genes for diabetes-/atherosclerosis-related traits, which reflect the metabolic pathways controlled by the enzyme. Formation of trait-specific genetic scores revealed additivity of allele effects, with body-fat-raising alleles reaching a marked effect size. (J Clin Endocrinol Metab XX: 0-0, 2019)."	"Patient with a PRKAG2 mutation who developed Immunoglobulin A nephropathy: a case report. PRKAG2 syndrome (PS) is a rare, early-onset autosomal dominant inherited disease caused by mutations in PRKAG2, the gene encoding the regulatory γ2 subunit of adenosine monophosphate-activated protein kinase. PRKAG2 syndrome is associated with many cardiac manifestations, including pre-excitation, arrhythmias, left ventricular hypertrophy, and chronotropic incompetence frequently leading to early pacemaker placement. A meta-analysis of genome-wide association data in subjects with chronic kidney disease (CKD) identified a susceptibility locus in an intron of PRKAG2, which has been replicated in other studies. However, CKD has not been reported in patients with PS or mutations in PRKAG2. We report a case of a woman diagnosed at age 27 with PS when she presented with atrial fibrillation and pre-excitation on electrocardiogram. By age 35, she had developed mild renal insufficiency and a biopsy demonstrated IgA nephropathy (IGAN). This is the first reported case of IGAN in a patient with PS. We discuss both PS and IGAN and the potential mechanisms by which they could be related."	"Long QT syndrome in chromosome 7q35q36.3 deletion involving KCNH2 gene: Warning for chlorpheniramine prescription. The deletion of the distal 7q region is a rare chromosomal syndrome characterized by wide phenotypic manifestations including growth and psychomotor delay, facial dysmorphisms, and genitourinary malformations. We describe a 6-year-old child with a 12-Mb deletion of the region 7q35q36.3. Among the deleted genes, two genes have cardiac implications: PRKAG2 (OMIM #602743), associated with hypertrophic cardiomyopathy, cardiac conduction disease, and sudden death, and KCNH2 (OMIM #152427), coding for a cardiac potassium channel involved in long QT syndrome, unmasked by the chlorpheniramine treatment. At same time, the SHH gene (OMIM #600725), encoding sonic hedgehog, a secreted protein that is involved in the embryonic development, is deleted. Our report underlines potential cardiac complications linked to the common pharmacological treatment in this rare multiorgan and proteiform disease."	"Implementation of a genomic medicine multi-disciplinary team approach for rare disease in the clinical setting: a prospective exome sequencing case series. A multi-disciplinary approach to promote engagement, inform decision-making and support clinicians and patients is increasingly advocated to realise the potential of genome-scale sequencing in the clinic for patient benefit. Here we describe the results of establishing a genomic medicine multi-disciplinary team (GM-MDT) for case selection, processing, interpretation and return of results. We report a consecutive case series of 132 patients (involving 10 medical specialties with 43.2% cases having a neurological disorder) undergoing exome sequencing over a 10-month period following the establishment of the GM-MDT in a UK NHS tertiary referral hospital. The costs of running the MDT are also reported. In total 76 cases underwent exome sequencing following triage by the GM-MDT with a clinically reportable molecular diagnosis in 24 (31.6%). GM-MDT composition, operation and rationale for whether to proceed to sequencing are described, together with the health economics (cost per case for the GM-MDT was £399.61), the utility and informativeness of exome sequencing for molecular diagnosis in a range of traits, the impact of choice of sequencing strategy on molecular diagnostic rates and challenge of defining pathogenic variants. In 5 cases (6.6%), an alternative clinical diagnosis was indicated by sequencing results. Examples were also found where findings from initial genetic testing were reconsidered in the light of exome sequencing including TP63 and PRKAG2 (detection of a partial exon deletion and a mosaic missense pathogenic variant respectively); together with tissue-specific mosaicism involving a cytogenetic abnormality following a normal prenatal array comparative genomic hybridization. This consecutive case series describes the results and experience of a multidisciplinary team format that was found to promote engagement across specialties and facilitate return of results to the responsible clinicians."	"Gene Variants at Loci Related to Blood Pressure Account for Variation in Response to Antihypertensive Drugs Between Black and White Individuals. Selection of antihypertensive treatment according to self-defined ethnicity is recommended by some guidelines but might be better guided by individual genotype rather than ethnicity or race. We compared the extent to which variation in blood pressure response across different ethnicities may be explained by genetic factors: genetically defined ancestry and gene variants at loci known to be associated with blood pressure. We analyzed data from 5 trials in which genotyping had been performed (n=4696) and in which treatment responses to β-blockers, angiotensin-converting enzyme inhibitors, angiotensin receptor blocker, thiazide or thiazide-like diuretic and calcium channel blocker were available. Genetically defined ancestry for proportion of African ancestry was computed using the 1000 genomes population database as a reference. Differences in response to the thiazide diuretic hydrochlorothiazide, the β-blockers atenolol and metoprolol, the angiotensin-converting enzyme inhibitor lisinopril, and the angiotensin receptor blocker candesartan were more closely associated to genetically defined ancestry than self-defined ethnicity in admixed subjects. A relatively small number of gene variants related to loci associated with drug-signaling pathways (KCNK3, SULT1C3, AMH, PDE3A, PLCE1, PRKAG2) with large effect size (-3.5 to +3.5 mm Hg difference in response per allele) and differing allele frequencies in black versus white individuals explained a large proportion of the difference in response to candesartan and hydrochlorothiazide between these groups. These findings suggest that a genomic precision medicine approach can be used to individualize antihypertensive treatment within and across populations without recourse to surrogates of genetic structure such as self-defined ethnicity."	"A Case Series on Cardiac and Skeletal Involvement in Two Families with PRKAG2 Mutations. PRKAG2 is a rare autosomal dominant syndrome that mainly presents with hypertrophic cardiomyopathy, ventricular preexcitation, and conduction abnormalities. This case report demonstrates that the PRKAG2 mutation presents with various phenotypes already in pediatric patients. We describe the clinical and investigative findings in two families with a PRKAG2 mutation from the different variants in the gene on chromosome 7q36.1, emphasising that the variability of phenotypes and that presentation in childhood is common. Furthermore, we highlight that skeletal myopathy and hypertrophic cardiomyopathy are significant debilitating characteristics of the PRKAG2 mutation. In our report of adult and pediatric patients, early presentation in childhood with hypertrophic cardiomyopathy and skeletal muscle involvement was common, demonstrating the challenges of the clinical management of PRKAG2 mutations."	"Genetic variants in the liver kinase B1-AMP-activated protein kinase pathway genes and pancreatic cancer risk. The liver kinase B1-AMP-activated protein kinase (LKB1-AMPK) pathway has been identified as a new target for cancer therapy, because it controls the glucose and lipid metabolism in response to alterations in nutrients and intracellular energy levels. In the present study, we aimed to identify genetic variants of the LKB1-AMPK pathway genes and their associations with pancreatic cancer (PanC) risk using 15 418 participants of European ancestry from two previously published PanC genome-wide association studies. We found that six novel tagging single-nucleotide polymorphisms (SNPs) (i.e, MAP2 rs35075084 T &gt; deletion, PRKAG2 rs2727572 C &gt; T and rs34852782 A &gt; deletion, TP53 rs9895829 A &gt; G, and RPTOR rs62068300 G &gt; A and rs3751936 G &gt; C) were significantly associated with an increased PanC risk. The multivariate logistic regression model incorporating the number of unfavorable genotypes (NUGs) with adjustment for age and sex showed that carriers with five to six NUGs had an increased PanC risk (odds ratio = 1.24, 95% confidence interval = 1.16-1.32 and P &lt; 0.0001), compared to those with zero to four NUGs. Subsequent expression quantitative trait loci (eQTL) analysis further revealed that these SNPs were associated with significantly altered mRNA expression levels either in 373 normal lymphoblastoid cell lines (TP53 SNP rs9895829, P &lt; 0.05) or in whole blood cells of 369 normal donors from the genotype-tissue expression project (GTEx) database [RPTOR SNP rs60268947 and rs28434589, both in high linkage disequilibrium (r<sup>2</sup> &gt; 0.9) withRPTOR rs62068300, P &lt; 0.001]. Collectively, our findings suggest that these novel SNPs in the LKB1-AMPK pathway genes may modify susceptibility to PanC, possibly by influencing gene expression."	"Clinicopathological and Genetic Profiles of Cases with Myocytes Disarray-Investigation for Establishing the Autopsy Diagnostic Criteria for Hypertrophic Cardiomyopathy. Myocyte disarray of &gt;10% in the heart is broadly accepted as a diagnostic pitfall for hypertrophic cardiomyopathy (HCM) at postmortem. The present study aims to propose an additional diagnostic criterion of HCM. Heart specimens from 1387 serial forensic autopsy cases were examined. Cases with myocyte disarray were extracted and applied to morphometric analysis to determine the amount of myocyte disarray. Comprehensive genetic analysis by using next-generation sequencing was subsequently applied for cases with myocyte disarray. Fifteen cases with myocyte disarray were extracted as candidate cases (1.1%, 11 men and 4 women, aged 48⁻94 years). In terms of the cause of death, only 2 cases were cardiac or possible cardiac death, and the other was non-cardiac death. Six cases showed myocyte disarray of &gt;10% and 3 cases showed myocyte disarray of 5% to 10%. The other 6 cases showed myocyte disarray of &lt;5%. Nine rare variants in 5 HCM-related genes (MYBPC3, MYH7, MYH6, PRKAG2, and CAV3) were found in 8 of 9 cases with myocyte disarray of &gt;5%. The remaining 1 and 6 cases with myocyte disarray of &lt;5% did not have any such variant. Myocyte disarray of &gt;5% with rare variants in related genes might be an appropriate postmortem diagnostic criterion for HCM, in addition to myocyte disarray of 10%."	"Epigenome-Wide Association Study (EWAS) of Blood Lipids in Healthy Population from STANISLAS Family Study (SFS). Epigenome-Wide Association Studies (EWAS) are furthering our knowledge of epigenetic modifications involved in the regulation of lipids' metabolism. Furthermore, epigenetic patterns associated with lipid levels may play an important role in predicting the occurrence of cardiovascular events. To further investigate the relationship between methylation status and lipids, we performed an EWAS in 211 individuals from the STANISLAS Family study (SFS). Methylation at two CpG sites (PRKAG2; p = 1.39 × 10<sup>-8</sup>; KREMEN2; p = 5.75 × 10<sup>-9</sup>) were significantly associated with lipidomic profiles. Replication was sought in adipose tissue where one probe, cg08897188, was found to be nominally significant (KREMEN2; p = 0.0196). These results could provide new insight in the mechanisms underlying cardiovascular diseases and contribute to new therapeutic interventions."	"Genetic basis and outcome in a nationwide study of Finnish patients with hypertrophic cardiomyopathy. Nationwide large-scale genetic and outcome studies in cohorts with hypertrophic cardiomyopathy (HCM) have not been previously published. We sequenced 59 cardiomyopathy-associated genes in 382 unrelated Finnish patients with HCM and found 24 pathogenic or likely pathogenic mutations in six genes in 38.2% of patients. Most mutations were located in sarcomere genes (MYBPC3, MYH7, TPM1, and MYL2). Previously reported mutations by our study group (MYBPC3-Gln1061Ter, MYH7-Arg1053Gln, and TPM1-Asp175Asn) and a fourth major mutation MYH7-Val606Met accounted for 28.0% of cases. Mutations in GLA and PRKAG2 were found in three patients. Furthermore, we found 49 variants of unknown significance in 31 genes in 20.4% of cases. During a 6.7 ± 4.2 year follow-up, annual all-cause mortality in 482 index patients and their relatives with HCM was higher than that in the matched Finnish population (1.70 vs. 0.87%; P &lt; 0.001). Sudden cardiac deaths were rare (n = 8). Systolic heart failure (hazard ratio 17.256, 95% confidence interval 3.266-91.170, P = 0.001) and maximal left ventricular wall thickness (hazard ratio 1.223, 95% confidence interval 1.098-1.363, P &lt; 0.001) were independent predictors of HCM-related mortality and life-threatening cardiac events. The patients with a pathogenic or likely pathogenic mutation underwent an implantable cardioverter defibrillator implantation more often than patients without a pathogenic or likely pathogenic mutation (12.9 vs. 3.5%, P &lt; 0.001), but there was no difference in all-cause or HCM-related mortality between the two groups. Mortality due to HCM during 10 year follow-up among the 5.2 million population of Finland was studied from death certificates of the National Registry, showing 269 HCM-related deaths, of which 32% were sudden. We identified pathogenic and likely pathogenic mutations in 38% of Finnish patients with HCM. Four major sarcomere mutations accounted for 28% of HCM cases, whereas HCM-related mutations in non-sarcomeric genes were rare. Mortality in patients with HCM exceeded that of the general population. Finally, among 5.2 million Finns, there were at least 27 HCM-related deaths annually."	"SNPs rs10224002 in PRKAG2 may disturb gene expression and consequently affect hypertension. Genome-wide association studies have identified a large number of genetic loci for blood pressure in European populations. The associations in other populations are needed to determine. The purpose of this study was to examine the associations between the single nucleotide polymorphisms (SNPs) identified in European populations and hypertension in the Chinese Han population, and highlight the potential roles. Seven tag-SNPs were genotyped in 857 hypertension cases and 927 controls to test the associations. The intronic SNP rs10224002 (PRKAG2) which could affect DNase and regulatory motif was associated with hypertension (P = 0.024). This SNP was also found to be associated with coronary artery disease and stroke. We searched for potential functional variants by bioinformatics analysis and found various kinds of variants such as missense mutations, phosphorylation-related SNPs and SNPs that have regulatory potentials in the blood pressure loci. We performed expression quantitative trait locus (eQTL) and differential expression analyses for the identified variants and genes. eQTL analysis found that rs10224002 was associated with PRKAG2 gene expression in peripheral blood (P = 0.0016). PRKAG2 was differentially expressed between hypertension cases and controls (P = 0.0133), coronary artery disease cases and controls (P = 0.02112) and stroke cases and controls (P = 0.0059). Our study demonstrated that SNPs rs10224002 may be associated with hypertension in the Chinese Han population and PRKAG2 may play a role in the etiology of hypertension and cardiovascular diseases."	"A Polygenic Risk Score of Lipolysis-Increasing Alleles Determines Visceral Fat Mass and Proinsulin Conversion. Primary dysregulation of adipose tissue lipolysis caused by genetic variation and independent of insulin resistance could explain unhealthy body fat distribution and its metabolic consequences. To analyze common single nucleotide polymorphisms (SNPs) in 48 lipolysis-, but not insulin-signaling-related genes, to form polygenic risk scores of lipolysis-associated SNPs, and to investigate their effects on body fat distribution, glycemia, insulin sensitivity, insulin secretion, and proinsulin conversion. SNP array, anthropometric, and metabolic data were available from up to 2789 participants without diabetes of the Tübingen Family study of type 2 diabetes characterized by oral glucose tolerance tests. In a subgroup (n = 942), magnetic resonance measurements of body fat stores were available. We identified insulin-sensitivity-independent nominal associations (P &lt; 0.05) of SNPs in 10 genes with plasma free fatty acids (FFAs), in 7 genes with plasma glycerol and in 6 genes with both, plasma FFAs and glycerol. A score formed of the latter SNPs (in ADCY4, CIDEA, GNAS, PDE8B, PRKAA1, PRKAG2) was associated with plasma FFA and glycerol measurements (1.4*10-9 ≤ P ≤ 1.2*10-5), visceral adipose tissue mass (P = 0.0326), and proinsulin conversion (P ≤ 0.0272). The more lipolysis-increasing alleles a subject had, the lower was the visceral fat mass and the lower the proinsulin conversion. We found evidence for a genetic basis of adipose tissue lipolysis resulting from common SNPs in CIDEA, AMP-activated protein kinase subunits, and cAMP signaling components. A genetic score of lipolysis-increasing alleles determined lower visceral fat mass and lower proinsulin conversion."	"Functional Prediction of Chronic Kidney Disease Susceptibility Gene PRKAG2 by Comprehensively Bioinformatics Analysis. The genetic predisposition to chronic kidney disease (CKD) has been widely evaluated especially using the genome-wide association studies, which highlighted some novel genetic susceptibility variants in many genes, and estimated glomerular filtration rate to diagnose and stage CKD. Of these variants, rs7805747 in PRKAG2 was identified to be significantly associated with both serum creatinine and CKD with genome wide significance level. Until now, the potential mechanism by which rs7805747 affects CKD risk is still unclear. Here, we performed a functional analysis of rs7805747 variant using multiple bioinformatics software and databases. Using RegulomeDB and HaploReg (version 4.1), rs7805747 was predicated to locate in enhancer histone marks (Liver, Duodenum Mucosa, Fetal Intestine Large, Fetal Intestine Small, and Right Ventricle tissues). Using GWAS analysis in PhenoScanner, we showed that rs7805747 is not only associated with CKD, but also is significantly associated with other diseases or phenotypes. Using metabolite analysis in PhenoScanner, rs7805747 is identified to be significantly associated with not only the serum creatinine, but also with other 16 metabolites. Using eQTL analysis in PhenoScanner, rs7805747 is identified to be significantly associated with gene expression in multiple human tissues and multiple genes including PRKAG2. The gene expression analysis of PRKAG2 using 53 tissues from GTEx RNA-Seq of 8555 samples (570 donors) in GTEx showed that PRKAG2 had the highest median expression in Heart-Atrial Appendage. Using the gene expression profiles in human CKD, we further identified different expression of PRKAG2 gene in CKD cases compared with control samples. In summary, our findings provide new insight into the underlying susceptibility of PRKAG2 gene to CKD."	"Infantile Onset Hypertrophic Cardiomyopathy Secondary to PRKAG2 Gene Mutation is Associated with Poor Prognosis. Hypertrophic cardiomyopathy (HCM) is the second most prevalent form of cardiomyopathy in children. The etiology of the HCM is heterogeneous, so is the age of onset of symptoms. The HCM associated with metabolic disorders and genetic syndromes presents early in childhood. There are very few case reports of early-onset infantile HCM secondary to the PRKAG2 gene. Here, we report a case of HCM in a neonate diagnosed prenatally and eventually diagnosed with a missense mutation in the PRKAG2 gene."	"Genetic Basis of Severe Childhood-Onset Cardiomyopathies. Childhood cardiomyopathies are progressive and often lethal disorders, forming the most common cause of heart failure in children. Despite severe outcomes, their genetic background is still poorly characterized. The purpose of this study was to characterize the genetics of severe childhood cardiomyopathies in a countrywide cohort. The authors collected a countrywide cohort, KidCMP, of 66 severe childhood cardiomyopathies from the sole center in Finland performing cardiac transplantation. For genetic diagnosis, next-generation sequencing and subsequent validation using genetic, cell biology, and computational approaches were used. The KidCMP cohort presents remarkable early-onset and severe disorders: the median age of diagnosis was 0.33 years, and 17 patients underwent cardiac transplantation. The authors identified the pathogenic variants in 39% of patients: 46% de novo, 34% recessive, and 20% dominantly-inherited. The authors report NRAP underlying childhood dilated cardiomyopathy, as well as novel phenotypes for known heart disease genes. Some genetic diagnoses have immediate implications for treatment: CALM1 with life-threatening arrhythmias, and TAZ with good cardiac prognosis. The disease genes converge on metabolic causes (PRKAG2, MRPL44, AARS2, HADHB, DNAJC19, PPA2, TAZ, BAG3), MAPK pathways (HRAS, PTPN11, RAF1, TAB2), development (NEK8 and TBX20), calcium signaling (JPH2, CALM1, CACNA1C), and the sarcomeric contraction cycle (TNNC1, TNNI3, ACTC1, MYH7, NRAP). Childhood cardiomyopathies are typically caused by rare, family-specific mutations, most commonly de novo, indicating that next-generation sequencing of trios is the approach of choice in their diagnosis. Genetic diagnoses may suggest intervention strategies and predict prognosis, offering valuable tools for prioritization of patients for transplantation versus conservative treatment."	"An Unusual Pattern of Ventricular Pre-Excitation: Electrophysiological and Genetic Substrate. NA"	"Whole-genome methylation profiling from PBMCs in acute-exacerbation COPD patients with good and poor responses to corticosteroid treatment. Identifying heterogeneity in chronic obstructive pulmonary disease (COPD) phenotypes is important for the development of personalized medicine. Genome-wide analysis was used to compare the methylation levels of peripheral blood mononuclear cell (PBMC) samples from 24 acute-exacerbation (AE) COPD patients with good/poor response to corticosteroid therapy and 12 non-COPD controls. Pyrosequencing was employed to validate the genome-wide analysis. In the dataset specific to COPD patients with a good response, enrichment was identified for the following: genes in the Ubl conjugation pathway, nicotinamide nucleotide metabolism, the alkaloid metabolic process, and regulation of the glucose metabolic process. Validation results confirmed CpG sites in PRKAG2 with different methylation levels in COPD patients and normal subjects. The CpG sites of ALOX5AP were specifically associated with a good response. The results suggested that a good response to corticosteroid treatment for AE-COPD should be considered a distinct subtype according to the putative epigenetic mechanism."	"MicroRNA-378 promotes hepatic inflammation and fibrosis via modulation of the NF-κB-TNFα pathway. The progression of hepatosteatosis to non-alcoholic steatohepatitis (NASH) is a critical step in the pathogenesis of hepatocellular cancer. However, the underlying mechanism(s) for this progression is essentially unknown. This study was designed to determine the role of miR-378 in regulating NASH progression. We used immunohistochemistry, luciferase assays and immunoblotting to study the role of miR-378 in modulating an inflammatory pathway. Wild-type mice kept on a high-fat diet (HFD) were injected with miR-378 inhibitors or a mini-circle expression system containing miR-378, to study loss and gain-of functions of miR-378. MiR-378 expression is increased in livers of dietary obese mice and patients with NASH. Further studies revealed that miR-378 directly targeted Prkag2 that encodes AMP-activated protein kinase γ 2 (AMPKγ2). AMPK signaling negatively regulates the NF-κB-TNFα inflammatory axis by increasing deacetylase activity of sirtuin 1. By targeting Prkag2, miR-378 reduced sirtuin 1 activity and facilitated an inflammatory pathway involving NF-κB-TNFα. In contrast, miR-378 knockdown induced expression of Prkag2, increased sirtuin 1 activity and blocked the NF-κB-TNFα axis. Additionally, knockdown of increased Prkag2 offset the inhibitory effects of miR-378 inhibitor on the NF-κB-TNFα axis, suggesting that AMPK signaling mediates the role of miR-378 in facilitating this inflammatory pathway. Liver-specific expression of miR-378 triggered the development of NASH and fibrosis by activating TNFα signaling. Ablation of TNFα in miR-378-treated mice impaired the ability of miR-378 to facilitate hepatic inflammation and fibrosis, suggesting that TNFα signaling is required for miR-378 to promote NASH. MiR-378 plays a key role in the development of hepatic inflammation and fibrosis by positively regulating the NF-κB-TNFα axis. MiR-378 is a potential therapeutic target for the treatment of NASH. The recent epidemic of obesity has been associated with a sharp rise in the incidence of non-alcoholic fatty liver disease (NAFLD). However, the underlying mechanism(s) remains poorly described and effective therapeutic approaches against NAFLD are lacking. The results establish that microRNA-378 facilitates the development of hepatic inflammation and fibrosis and suggests the therapeutic potential of microRNA-378 inhibitor for the treatment of NAFLD."	"About split P waves. NA"	"Sub-pathway analysis for severe burns injury patients: Identification of potential key lncRNAs by analyzing lncRNA-mRNA profile. The aim of the study was to identify key long non-coding RNAs (lncRNA) and related subpathways following severe burn injuries and research their functions. The miRNA-mRNA and lncRNA-miRNA interactions were downloaded from starBase v2.0 database. In addition, mRNA-miRNA interactions were obtained from TarBase, mirTarBase, mir2Disease, miRecords (V4.0) databases. The relationships of lncRNA-miRNA-mRNA were constructed. Genes of expression profiling were intersected with mRNA and lncRNA in lncRNA-mRNA interaction. Screened mRNAs were enriched into various pathways and screened lncRNAs were embedded into candidate pathways. Wallenius approximation methods were used to calculate the false discovery rate value of each sub-pathway. Based on the results of significant sub-pathways, the related lncRNA-mRNA network was constructed. A total of 18,081 genes were obtained. The lncRNA-mRNA intersections including 835 lncRNAs, 1,749 mRNAs and 7,693 interacting pairs were constructed. The enriched mRNAs were further enriched into various candidate pathways such as ribosome biogenesis in eukaryotes. Several sub-pathways were screened, including ribosome biogenesis in eukaryotes and MAPK signaling pathway. The network of pathway-lncRNA-mRNA was constructed. Hub-genes were identified, including C14orf169 and YLPM1. Several hub-lncRNAs were obtained, including PRKAG2 antisense RNA 1 and LEF1 antisense RNA 1. Several hub-lncRNAs including C14orf169, YLPM1, TTTY15, and PCBP1-AS1 were screened. The sub-pathways regulated by these lncRNAs were identified, and functions were predicted."	"Resveratrol Prevents the Development of Hypertension Programmed by Maternal Plus Post-Weaning High-Fructose Consumption through Modulation of Oxidative Stress, Nutrient-Sensing Signals, and Gut Microbiota. High-fructose (HF) intake, oxidative stress, nutrient-sensing signals, and gut microbiota dysbiosis are closely related to the development of hypertension. It was investigated whether resveratrol can prevent hypertension induced by maternal plus post-weaning HF diets in adult offspring via the above-mentioned mechanisms. Female Sprague-Dawley rats received either a normal (ND) or 60% high-fructose (HF) diet during gestation and lactation. Male offspring were assigned to five groups (maternal diet/post-weaning diet; n = 8 per group): ND/ND, ND/HF, HF/ND, HF/HF, and HF/HF+ Resveratrol. Resveratrol (50 mg L<sup>-1</sup> ) was administered in drinking water from weaning to 3 months of age. It was found that HF/HF induced hypertension in adult offspring. Maternal HF diet altered gut microbiota composition in adult offspring, including decreasing the abundance of genera Bacteroides, Dysgonomonas, and Turicibacter, while increasing phylum Verrucomicrobia and Akkermansia muciniphila. Additionally, HF/HF diets increased oxidative stress and decreased renal mRNA expression of Prkaa2, Prkag2, Ppara, Pparb, Ppargc1a, and Sirt4. Resveratrol reduced renal oxidative stress, activated nutrient-sensing signals, modulated gut microbiota, and prevented associated HF/HF-induced programmed hypertension. Targeting oxidative stress, nutrient-sensing signals, and gut microbiota by resveratrol might be a useful therapeutic strategy for the treatment of hypertension induced by excessive consumption of fructose in the adult rat offspring."	"A Genome-Wide Association Study of Diabetic Kidney Disease in Subjects With Type 2 Diabetes. Identification of sequence variants robustly associated with predisposition to diabetic kidney disease (DKD) has the potential to provide insights into the pathophysiological mechanisms responsible. We conducted a genome-wide association study (GWAS) of DKD in type 2 diabetes (T2D) using eight complementary dichotomous and quantitative DKD phenotypes: the principal dichotomous analysis involved 5,717 T2D subjects, 3,345 with DKD. Promising association signals were evaluated in up to 26,827 subjects with T2D (12,710 with DKD). A combined T1D+T2D GWAS was performed using complementary data available for subjects with T1D, which, with replication samples, involved up to 40,340 subjects with diabetes (18,582 with DKD). Analysis of specific DKD phenotypes identified a novel signal near GABRR1 (rs9942471, P = 4.5 × 10<sup>-8</sup>) associated with microalbuminuria in European T2D case subjects. However, no replication of this signal was observed in Asian subjects with T2D or in the equivalent T1D analysis. There was only limited support, in this substantially enlarged analysis, for association at previously reported DKD signals, except for those at UMOD and PRKAG2, both associated with estimated glomerular filtration rate. We conclude that, despite challenges in addressing phenotypic heterogeneity, access to increased sample sizes will continue to provide more robust inference regarding risk variant discovery for DKD."	"Molecular Pathogenesis of Familial Wolff-Parkinson-White Syndrome. Familial Wolff-Parkinson-White (WPW) syndrome is an autosomal dominant inherited disease and consists of a small percentage of WPW syndrome which exhibits ventricular pre-excitation by development of accessory atrioventricular pathway. A series of mutations in PRKAG2 gene encoding gamma2 subunit of 5'AMP-activated protein kinase (AMPK) has been identified as the cause of familial WPW syndrome. AMPK is one of the most important metabolic regulators of carbohydrates and lipids in many types of tissues including cardiac and skeletal muscles. Patients and animals with the mutation in PRKAG2 gene exhibit aberrant atrioventricular conduction associated with cardiac glycogen overload. Recent studies have revealed &quot;novel&quot; significance of canonical pathways leading to glycogen synthesis and provided us profound insights into molecular mechanism of the regulation of glycogen metabolism by AMPK. This review focuses on the molecular basis of the pathogenesis of cardiac abnormality due to PRKAG2 mutation and will provide current overviews of the mechanism of glycogen regulation by AMPK. J. Med. Invest. 65:1-8, February, 2018."	"Circadian gene methylation profiles are associated with obesity, metabolic disturbances and carbohydrate intake. The circadian clock regulates the daily rhythms of several physiological and behavioral processes. Disruptions in clock genes have been associated with obesity and related comorbidities. This study aimed to analyze the association of DNA methylation signatures at circadian rhythm pathway genes with body mass index (BMI), metabolic profiles and dietary intakes. DNA methylation profiling was determined by microarray in white blood cells from 474 adults from the Methyl Epigenome Network Association (MENA) project. Kyoto Encyclopedia of Genes and Genomes database was used to identify the genes integrating the circadian rhythm pathway. Network enrichment analyses were performed with the PathDIP platform. Associations between circadian methylation patterns with anthropometric measurements, the metabolic profile, clinical data and dietary intakes were analyzed. DNA methylation patterns of nine CpG sites at six circadian rhythm pathway genes were strongly correlated with BMI (false discovery rates &lt;0.0001). These CpGs encompassed cg09578018 (RORA), cg20406576 (PRKAG2), cg10059324 (PER3), cg01180628 (BHLHE40), cg23871860 (FBXL3), cg16964728 (RORA), cg14129040 (CREB1), cg07012178 (PRKAG2) and cg24061580 (PRKAG2). Interestingly, network enrichment analyses revealed that the six BMI-associated genes statistically contributed to the regulation of the circadian rhythm pathway (p = 1.9E-10). In addition, methylation signatures at cg09578018 (RORA), cg24061580 (PRKAG2), cg01180628 (BHLHE40) and cg10059324 (PER3) also correlated with insulin resistance (p &lt; 0.0001) and mean arterial blood pressure (p &lt; 0.0001). Furthermore, relevant correlations (p &lt; 0.05) between methylation at cg09578018 (RORA) and cg01180628 (BHLHE40) with total energy and carbohydrate intakes were found. This investigation revealed potential associations of DNA methylation profiles at circadian genes with obesity, metabolic disturbances and carbohydrate intake, with potential impact on weight homeostasis."	"Genetic Infiltrative Cardiomyopathies. Infiltrative cardiomyopathies are characterized by abnormal accumulation or deposition of substances in cardiac tissue leading to cardiac dysfunction. These can be inherited, resulting from mutations in specific genes, which engender a diverse array of extracardiac features but overlapping cardiac phenotypes. This article provides an overview of each inherited infiltrative cardiomyopathy, describing the causative genes, the pathologic mechanisms involved, the resulting cardiac manifestations, and the therapies currently offered or being developed."	"Human γ2-AMPK Mutations. In humans, dominant mutations in the gene encoding the regulatory γ2-subunit of AMP-activated protein kinase (PRKAG2) result in a highly penetrant phenotype dominated by cardiac features: left ventricular hypertrophy, ventricular pre-excitation, atrial tachyarrhythmia, cardiac conduction disease, and myocardial glycogen storage. The discovery of a link between the cell's fundamental energy sensor, AMPK, and inherited cardiac disease catalyzed intense interest into the biological role of AMPK in the heart. In this chapter, we provide an introduction to the spectrum of human disease resulting from pathogenic variants in PRKAG2, outlining its discovery, clinical genetics, and current perspectives on its pathogenesis and highlighting mechanistic insights derived through the evaluation of disease models. We also present a clinical perspective on the major components of the cardiomyopathy associated with mutations in PRKAG2, together with less commonly described extracardiac features, its prognosis, and principles of management."	"Establishment of a PRKAG2 cardiac syndrome disease model and mechanism study using human induced pluripotent stem cells. PRKAG2 cardiac syndrome is a distinct form of human cardiomyopathy characterized by cardiac hypertrophy, ventricular pre-excitation and progressive cardiac conduction disorder. However, it remains unclear how mutations in the PRKAG2 gene give rise to such a complicated disease. To investigate the underlying molecular mechanisms, we generated disease-specific hiPSC-derived cardiomyocytes from two brothers both carrying a heterozygous missense mutation c.905G&gt;A (R302Q) in the PRKAG2 gene and further corrected the R302Q mutation with CRISPR-Cas9 mediated genome editing. Disease-specific hiPSC-cardiomyocytes recapitulated many phenotypes of PRKAG2 cardiac syndrome including cellular enlargement, electrophysiological irregularities and glycogen storage. In addition, we found that the PRKAG2-R302Q mutation led to increased AMPK activities, resulting in extensive glycogen deposition and cardiomyocyte hypertrophy. Finally we confirmed that disrupted phenotypes of PRKAG2 cardiac syndrome caused by the specific PRKAG2-R302Q mutation can be alleviated by small molecules inhibiting AMPK activity and be rescued with CRISPR-Cas9 mediated genome correction. Our results showed that disease-specific hiPSC-CMs and genetically-corrected hiPSC-cardiomyocytes would be a very useful platform for understanding the pathogenesis of, and testing autologous cell-based therapies for, PRKAG2 cardiac syndrome."	"Split P waves: marker of extreme interatrial delay. NA"	"Association mapping reveals candidate loci for resistance and anaemic response to an emerging temperature-driven parasitic disease in a wild salmonid fish. Even though parasitic infections are often costly or deadly for the host, we know very little which genes influence parasite susceptibility and disease severity. Proliferative kidney disease is an emerging and, at elevated water temperatures, potentially deadly disease of salmonid fishes that is caused by the myxozoan parasite Tetracapsuloides bryosalmonae. By screening &gt;7.6 K SNPs in 255 wild brown trout (Salmo trutta) and combining association mapping and Random Forest approaches, we identified several candidate genes for both the parasite resistance (inverse of relative parasite load; RPL) and the severe anaemic response to the parasite. The strongest RPL-associated SNP mapped to a noncoding region of the congeneric Atlantic salmon (S. salar) chromosome 10, whereas the second strongest RPL-associated SNP mapped to an intronic region of PRICKLE2 gene, which is a part of the planar cell polarity signalling pathway involved in kidney development. The top SNP associated with anaemia mapped to the intron of the putative PRKAG2 gene. The human ortholog of this gene has been associated with haematocrit and other blood-related traits, making it a prime candidate influencing parasite-triggered anaemia in brown trout. Our findings demonstrate the power of association mapping to pinpoint genomic regions and potential causative genes underlying climate change-driven parasitic disease resistance and severity. Furthermore, this work illustrates the first steps towards dissecting genotype-phenotype links in a wild fish population using closely related genome information."	"[The PRKAG2 cardiac syndrome with familial hypertrophic cardiomyopathy: an inherited burden. A case report. Review of the literature]. We report the case of a young man without prior medical history who presented with a left ventricular heart failure because of a new onset atrial fibrillation. The evolution is characterized by a sinus rythm dysfunction, a complete atrioventricular block, a non-sustained ventricular tachycardia (which required a dual-chamber defibrillator implantation) and an ischemic testicular necrosis treated by orchidectomy. After ruling out differential diagnosis we evoked an hypertrophic cardiomyopathy. Medical family anamnesis revealed an hereditary component, and we concluded to a PRKAG2 cardiac syndrome presenting as a familial hypertrophic cardiomyopathy. Two years later, he presented with a type B aortic dissection. We review the literature and differentials diagnosis. Le cas que nous présentons est celui d’un jeune patient sans antécédent médical qui présente une décompensation cardiaque gauche sur fibrillation auriculaire de novo. L’évolution est caractérisée par une dysfonction sinusale, un bloc atrioventriculaire syncopal, de la tachycardie ventriculaire non soutenue avec nécessité d’implanter un défibrillateur double chambre et par une nécrose testiculaire d’origine ischémique indiquant une orchidectomie. Plusieurs diagnostics différentiels sont évoqués. Les investigations plus poussées mettent en évidence une cardiomyopathie hypertrophique jusqu’alors asymptomatique. L’anamnèse familiale révèle une composante héréditaire qui nous amènera à évoquer le diagnostic de cardiomyopathie hypertrophique familiale liée à la mutation PRKAG2. Deux ans plus tard, il se présente avec une dissection aortique de type B. La littérature concernant cette pathologie et les diagnostics différentiels sont revus à cette occasion."	"Maternal High Fructose Intake Increases the Vulnerability to Post-Weaning High-Fat Diet-Induced Programmed Hypertension in Male Offspring. Widespread consumption of high-fructose and high-fat diets relates to the global epidemic of hypertension. Hypertension may originate from early life by a combination of prenatal and postnatal nutritional insults. We examined whether maternal high-fructose diet increases vulnerability to post-weaning high-fructose or high-fat diets induced hypertension in adult offspring and determined the underlying mechanisms. Pregnant Sprague-Dawley rats received regular chow (ND) or chow supplemented with 60% fructose (HFR) during the entire pregnancy and lactation periods. Male offspring were onto either the regular chow, 60% fructose, or high-fat diet (HFA) from weaning to 12 weeks of age and assigned to four groups: ND/ND, HFR/ND, HFR/HFR, and HFR/HFA. Maternal high-fructose diet exacerbates post-weaning high-fat diet-induced programmed hypertension. Post-weaning high-fructose and high-fat diets similarly reduced Sirt4, Prkaa2, Prkag2, Ppara, Pparb, and Ppargc1a mRNA expression in offspring kidneys exposed to maternal high-fructose intake. Additionally, post-weaning high-fat diet significantly reduced renal mRNA levels of Ulk1, Atg5, and Nrf2 and induced greater oxidative stress than did high-fructose diet. Although maternal high-fructose intake increases soluble epoxide hydrolase (SEH) expression in the kidney, which was restored by post-weaning high-fructose and high-fat diets. Maternal high-fructose diet programs differential vulnerability to developing hypertension in male offspring in response to post-weaning high-fructose and high-fat diets. Our data implicated that specific therapy targeting on nutrient sensing signals, oxidative stress, and SEH may be a promising approach to prevent hypertension in children and mothers exposed to high-fructose and high-fat consumption."	"Cardiac manifestations of PRKAG2 mutation. The Protein Kinase AMP-Activated Non-Catalytic Subunit Gamma 2 (PRKAG2) cardiac syndrome is characterized by glycogen accumulation in the cardiac tissue. The disease presents clinically with hypertrophic cardiomyopathy (HCM), and it is often associated with conduction abnormalities. A 23 year-old female with history of Wolff-Parkinson-White (WPW) and HCM presented for evaluation after an episode of Non-ST Elevation Myocardial Infarction (NSTEMI). The patient was found to have severe coronary bridging on angiography and underwent an unroofing of the left anterior descending artery (LAD). Due to the constellation of symptoms, the patient underwent genetic testing and a cardiac muscle biopsy. Genetic testing was significant for an Arg302Gln mutation in the PRKAG2 gene. Cardiac tissue biopsy revealed significant myocyte hypertrophy and large vacuoles with glycogen stores. The pathologic and genetics findings of our patient are consistent with PRKAG2 syndrome. Patients presenting with conduction abnormalities and suspected HCM should be considered for genetic testing to identify possible underlying genetic etiologies."	"Maternal obesity alters fatty acid oxidation, AMPK activity, and associated DNA methylation in mesenchymal stem cells from human infants. Infants born to mothers with obesity have greater adiposity, ectopic fat storage, and are at increased risk for childhood obesity and metabolic disease compared with infants of normal weight mothers, though the cellular mechanisms mediating these effects are unclear. We tested the hypothesis that human, umbilical cord-derived mesenchymal stem cells (MSCs) from infants born to obese (Ob-MSC) versus normal weight (NW-MSC) mothers demonstrate altered fatty acid metabolism consistent with adult obesity. In infant MSCs undergoing myogenesis in vitro, we measured cellular lipid metabolism and AMPK activity, AMPK activation in response to cellular nutrient stress, and MSC DNA methylation and mRNA content of genes related to oxidative metabolism. We found that Ob-MSCs exhibit greater lipid accumulation, lower fatty acid oxidation (FAO), and dysregulation of AMPK activity when undergoing myogenesis in vitro. Further experiments revealed a clear phenotype distinction within the Ob-MSC group where more severe MSC metabolic perturbation corresponded to greater neonatal adiposity and umbilical cord blood insulin levels. Targeted analysis of DNA methylation array revealed Ob-MSC hypermethylation in genes regulating FAO (PRKAG2, ACC2, CPT1A, SDHC) and corresponding lower mRNA content of these genes. Moreover, MSC methylation was positively correlated with infant adiposity. These data suggest that greater infant adiposity is associated with suppressed AMPK activity and reduced lipid oxidation in MSCs from infants born to mothers with obesity and may be an important, early marker of underlying obesity risk."	"Mammalian γ2 AMPK regulates intrinsic heart rate. AMPK is a conserved serine/threonine kinase whose activity maintains cellular energy homeostasis. Eukaryotic AMPK exists as αβγ complexes, whose regulatory γ subunit confers energy sensor function by binding adenine nucleotides. Humans bearing activating mutations in the γ2 subunit exhibit a phenotype including unexplained slowing of heart rate (bradycardia). Here, we show that γ2 AMPK activation downregulates fundamental sinoatrial cell pacemaker mechanisms to lower heart rate, including sarcolemmal hyperpolarization-activated current (I f) and ryanodine receptor-derived diastolic local subsarcolemmal Ca<sup>2+</sup> release. In contrast, loss of γ2 AMPK induces a reciprocal phenotype of increased heart rate, and prevents the adaptive intrinsic bradycardia of endurance training. Our results reveal that in mammals, for which heart rate is a key determinant of cardiac energy demand, AMPK functions in an organ-specific manner to maintain cardiac energy homeostasis and determines cardiac physiological adaptation to exercise by modulating intrinsic sinoatrial cell behavior."	"High prevalence of arrhythmic and myocardial complications in patients with cardiac glycogenosis due to PRKAG2 mutations: Authors' reply. NA"	"High prevalence of arrhythmic and myocardial complications in patients with cardiac glycogenosis due to PRKAG2 mutations: comment. NA"	"CRISPR correction of the PRKAG2 gene mutation in the patient's induced pluripotent stem cell-derived cardiomyocytes eliminates electrophysiological and structural abnormalities. Mutations in the PRKAG2 gene encoding the γ-subunit of adenosine monophosphate kinase (AMPK) cause hypertrophic cardiomyopathy (HCM) and familial Wolff-Parkinson-White (WPW) syndrome. Patients carrying the R302Q mutation in PRKAG2 present with sinus bradycardia, escape rhythms, ventricular preexcitation, supraventricular tachycardia, and atrioventricular block. This mutation affects AMPK activity and increases glycogen storage in cardiomyocytes. The link between glycogen storage, WPW syndrome, HCM, and arrhythmias remains unknown. The purpose of this study was to investigate the pathological changes caused by the PRKAG2 mutation. We tested the hypothesis that patient's induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) display clinical aspects of the disease. Using clustered regularly interspaced short palindromic repeats (CRISPR) technology, we corrected the mutation and then generated isogenic iPSC-CMs. Action potentials were recorded from spontaneously firing and paced cardiomyocytes using the patch clamp technique. Using a microelectrode array setup, we recorded electrograms from iPSC-CMs clusters. Transmission electron microscopy was used to detect ultrastructural abnormalities in the mutated iPSC-CMs. PRKAG2-mutated iPSC-CMs exhibited abnormal firing patterns, delayed afterdepolarizations, triggered arrhythmias, and augmented beat rate variability. Importantly, CRISPR correction eliminated the electrophysiological abnormalities, the augmented glycogen, storage, and cardiomyocyte hypertrophy. PRKAG2-mutated iPSC-CMs displayed functional and structural abnormalities, which were abolished by correcting the mutation in the patient's iPSCs using CRISPR technology."	"Activation of γ2-AMPK Suppresses Ribosome Biogenesis and Protects Against Myocardial Ischemia/Reperfusion Injury. AMPK (AMP-activated protein kinase) is a heterotrimeric protein that plays an important role in energy homeostasis and cardioprotection. Two isoforms of each subunit are expressed in the heart, but the isoform-specific function of AMPK remains unclear. We sought to determine the role of γ2-AMPK in cardiac stress response using bioengineered cell lines and mouse models containing either isoform of the γ-subunit in the heart. We found that γ2 but not γ1 or γ3 subunit translocated into nucleus on AMPK activation. Nuclear accumulation of AMPK complexes containing γ2-subunit phosphorylated and inactivated RNA Pol I (polymerase I)-associated transcription factor TIF-IA at Ser-635, precluding the assembly of transcription initiation complexes for rDNA. The subsequent downregulation of pre-rRNA level led to attenuated endoplasmic reticulum (ER) stress and cell death. Deleting γ2-AMPK led to increases in pre-rRNA level, ER stress markers, and cell death during glucose deprivation, which could be rescued by inhibition of rRNA processing or ER stress. To study the function of γ2-AMPK in the heart, we generated a mouse model with cardiac-specific deletion of γ2-AMPK (cardiac knockout [cKO]). Although the total AMPK activity was unaltered in cKO hearts because of upregulation of γ1-AMPK, the lack of γ2-AMPK sensitizes the heart to myocardial ischemia/reperfusion injury. The cKO failed to suppress pre-rRNA level during ischemia/reperfusion and showed a greater infarct size. Conversely, cardiac-specific overexpression of γ2-AMPK decreased ribosome biosynthesis and ER stress during ischemia/reperfusion insult, and the infarct size was reduced. The γ2-AMPK translocates into the nucleus to suppress pre-rRNA transcription and ribosome biosynthesis during stress, thus ameliorating ER stress and cell death. Increased γ2-AMPK activity is required to protect against ischemia/reperfusion injury. Our study reveals an isoform-specific function of γ2-AMPK in modulating ribosome biosynthesis, cell survival, and cardioprotection."	"PRKAG2 mutations presenting in infancy. PRKAG2 encodes the γ2 subunit of AMP-activated protein kinase (AMPK), which is an important regulator of cardiac metabolism. Mutations in PRKAG2 cause a cardiac syndrome comprising ventricular hypertrophy, pre-excitation, and progressive conduction-system disease, which is typically not diagnosed until adolescence or young adulthood. However, significant variability exists in the presentation and outcomes of patients with PRKAG2 mutations, with presentation in infancy being underrecognized. The diagnosis of PRKAG2 can be challenging in infants, and we describe our experience with three patients who were initially suspected to have Pompe disease yet ultimately diagnosed with mutations in PRKAG2. A disease-causing PRKAG2 mutation was identified in each case, with a novel missense mutation described in one patient. We highlight the potential for patients with PRKAG2 mutations to mimic Pompe disease in infancy and the need for confirmatory testing when diagnosing Pompe disease."	"Whole gene sequencing identifies deep-intronic variants with potential functional impact in patients with hypertrophic cardiomyopathy. High throughput sequencing technologies have revolutionized the identification of mutations responsible for genetic diseases such as hypertrophic cardiomyopathy (HCM). However, approximately 50% of individuals with a clinical diagnosis of HCM have no causal mutation identified. This may be due to the presence of pathogenic mutations located deep within the introns, which are not detected by conventional sequencing analysis restricted to exons and exon-intron boundaries. The aim of this study was to develop a whole-gene sequencing strategy to prioritize deep intronic variants that may play a role in HCM pathogenesis. The full genomic DNA sequence of 26 genes previously associated with HCM was analysed in 16 unrelated patients. We identified likely pathogenic deep intronic variants in VCL, PRKAG2 and TTN genes. These variants, which are predicted to act through disruption of either splicing or transcription factor binding sites, are 3-fold more frequent in our cohort of probands than in normal European populations. Moreover, we found a patient that is compound heterozygous for a splice site mutation in MYBPC3 and the deep intronic VCL variant. Analysis of family members revealed that carriers of the MYBPC3 mutation alone do not manifest the disease, while family members that are compound heterozygous are clinically affected. This study provides a framework for scrutinizing variation along the complete intronic sequence of HCM-associated genes and prioritizing candidates for mechanistic and functional analysis. Our data suggest that deep intronic variation contributes to HCM phenotype."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Wolff-Parkinson-White Syndrome with Ventricular Hypertrophy in a Brazilian Family. BACKGROUND PRKAG2 syndrome diagnosis is already well-defined as Wolff-Parkinson-White syndrome (WPW), ventricular hypertrophy (VH) due to glycogen accumulation, and conduction system disease (CSD). Because of its rarity, there is a lack of literature focused on the treatment. The present study aimed to describe appropriate strategies for the treatment of affected family members with PRKAG2 syndrome with a long follow-up period. CASE REPORT We studied 60 selected individuals from 84 family members (32 males, 53.3%) (mean age 27±16 years). Patients with WPW and/or VH were placed in a group of 18 individuals, in which 11 (61.1%) had VH and WPW, 6 (33.3%) had isolated WPW, and 1 (5.6%) had isolated VH. Palpitations occurred in 16 patients (88.9%), chest pain in 11 (61.1%), dizziness in 13 (72.2%), syncope in 15 (83.3%), and dyspnea in 13 (72%). Sudden cardiac death (SCD) occurred in 2 (11.1%), and 2 patients with cardiac arrest (CA) had asystole and pre-excited atrial flutter-fibrillation (AFL and AF) as the documented mechanism. Transient ischemic attack (TIA) and learning/language disabilities with delayed development were observed. Genetic analysis identified a new missense pathogenic variant (p.K290I) in the PRKAG2 gene. Cardiac histopathology demonstrated the predominance of vacuoles containing glycogen derivative and fibrosis. The treatment was based on hypertension and diabetes mellitus (DM) control, antiarrhythmic drugs (AD), anticoagulation, and radiofrequency catheter ablation (RCA). Six patients (33.3%) underwent pacemaker implantation (PM). CONCLUSIONS The present study describes the clinical treatment for a rare cardiac syndrome caused by a PRKAG2 mutation."	"The PRKAG2 gene and hypertrophic cardiomyopathy: an energetically imbalanced relationship. NA"	"Integrative Analysis of PRKAG2 Cardiomyopathy iPS and Microtissue Models Identifies AMPK as a Regulator of Metabolism, Survival, and Fibrosis. NA"	"Whole Genome Sequence Identified a Rare Homozygous Pathogenic Mutation of the DSG2 Gene in a Familial Arrhythmogenic Cardiomyopathy Involving Both Ventricles. This study was designed to identify the pathogenic mutation in a Chinese family with arrhythmogenic right ventricular cardiomyopathy/dysplasia (ARVC/D) using whole genome sequencing (WGS). Probands II:1 and II:2 underwent routine examinations for diagnosis. Genomic DNA was extracted from the peripheral blood of family members and analyzed using WGS. A total of 60,285 single-nucleotide polymorphisms (SNP) and 13,918 insertions/deletions (InDel) occurring in the exonic regions of genes and predisposing to cardiomyopathies and arrhythmias were identified. When filtered using the 1000 Genomes Project (2014 version), NHLBI ESP6500, and ExAC databases, 12 missense SNP and 2 InDel in exonic regions remained, the allele frequencies of which were &lt;0.01 or unknown. The potentially pathogenic mutations that occurred in the genes DSG2, PKP4, PRKAG2, FOXD4, CTTN, and DMD, which were identified by SIFT or PolyPhen-2 software as &quot;damaging,&quot; were validated using Sanger sequencing. Probands II:1 and II:2 shared an extremely rare homozygous mutation in the DSG2 (p.F531C) gene, which was also demonstrated using intersection analysis of WGS data from probands II:1 and II:2. Electron microscopy and histological staining of myocardial biopsies showed widened and destroyed intercalated discs, and interrupted, atrophic, and disarranged myocardial fibers, and hyperplastic interstitial fibers, collagen fibers, and adipocytes were infiltrated and invaded. A homozygous mutation of DSG2 p.F531C was identified as the pathogenic mutation in patients with ARVC/D involving both ventricles, as a result of widened and impaired intercalated discs, interrupted myocardial fibers, and abnormally hyperplastic interstitial fibers, collagen fibers, and adipocytes."	"A novel, de novo mutation in the PRKAG2 gene: infantile-onset phenotype and the signaling pathway involved. PRKAG2 encodes the γ2-subunit isoform of 5'-AMP-activated protein kinase (AMPK), a heterotrimeric enzyme with major roles in the regulation of energy metabolism in response to cellular stress. Mutations in PRKAG2 have been implicated in a unique hypertrophic cardiomyopathy (HCM) characterized by cardiac glycogen overload, ventricular preexcitation, and hypertrophy. We identified a novel, de novo PRKAG2 mutation (K475E) in a neonate with prenatal onset of HCM. We aimed to investigate the cellular impact, signaling pathways involved, and therapeutic options for K475E mutation using cells stably expressing human wild-type (WT) or the K475E mutant. In human embryonic kidney-293 cells, the K475E mutation induced a marked increase in the basal phosphorylation of T172 and AMPK activity, reduced sensitivity to AMP in allosteric activation, and a loss of response to phenformin. In H9c2 cardiomyocytes, the K475E mutation induced inhibition of AMPK and reduced the response to phenformin and increases in the phosphorylation of p70S6 kinase (p70S6K) and eukaryotic translation initiation factor 4E-binding protein 1 (4E-BP1). Primary fibroblasts from the patient with the K475E mutation also showed marked increases in the phosphorylation of p70S6K and 4E-BP1 compared with those from age-matched, nondiseased controls. Moreover, overexpression of K475E induced hypertrophy in H9c2 cells, which was effectively reversed by treatment with rapamycin. Taken together, we have identified a novel, de novo infantile-onset PRKAG2 mutation causing HCM. Our study suggests the K475E mutation induces alteration in basal AMPK activity and results in a hypertrophy phenotype involving the mechanistic target of rapamycin signaling pathway, which can be reversed with rapamycin.NEW &amp; NOTEWORTHY We identified a novel, de novo PRKAG2 mutation (K475E) in the cystathionine β-synthase 3 repeat, a region critical for AMP binding but with no previous reported mutation. Our data suggest the mutation affects AMP-activated protein kinase activity, activates cell growth pathways, and results in cardiac hypertrophy, which can be reversed with rapamycin."	"A novel PRKAG2 mutation in a Chinese family with cardiac hypertrophy and ventricular pre-excitation. PRKAG2 syndrome is a rare autosomal dominant inherited disorder that is characterized by cardiac hypertrophy, ventricular pre-excitation and conduction system abnormalities. There is little knowledge in cardiovascular magnetic resonance (CMR) characteristics of PRKAG2 cardiomyopathy. This study investigated the genetic defect in a three-generation Chinese family with cardiac hypertrophy and ventricular pre-excitation using whole-exome sequencing. A novel missense mutation, c.1006 G &gt; T (p.V336L), was identified in PRKAG2. This mutation had not been identified in the ExAC database, and the prediction result of MutationTaster indicated a deleterious effect. Furthermore, it cosegregated with the disease in the present family and was absent in unrelated 300 healthy controls. cDNA analysis did not detect any splicing defects, although the variant occurred in the first base of exon 9. CMR evaluation in five affected members showed diffuse hypertrophy in a concentric pattern, with markedly increased left ventricular mass above age and gender limits (median 151.3 g/m<sup>2</sup>, range 108.4-233.4 g/m<sup>2</sup>). Two patients in progressive stage and one patient with sudden cardiac death exhibited extensive subendocardial late gadolinium enhancement. In conclusion, molecular screening for PRKAG2 mutations should be considered in patients who exhibit cardiac hypertrophy coexisting with ventricular pre-excitation. CMR offers promising advantages for evaluation of PRKAG2 cardiomyopathy."	"Identification of a novel hypertrophic cardiomyopathy-associated mutation using targeted next-generation sequencing. Hypertrophic cardiomyopathy (HCM), one of the most common forms of myocardial diseases, is the major cause of sudden cardiac death in young adults and competitive athletes. Analyses of gene mutations associated with HCM are valuable for its molecular diagnosis, genetic counseling, and management of familial HCM. To dissect the relationship between the clinical presentation and gene mutations of HCM, the genetic characterizations of 19 HCM-related genes in 18 patients (8 cases from 6 pedigrees with familial HCM and 10 cases without familial HCM) were detected using next-generation sequencing (NGS). As a result, 12 disease-related mutations were identified in the 18 subjects, including 6 single mutations and 3 double mutations [MYBPC3 (p.Gln998Glu) plus TNNI3 (p.Arg145Gly), PRKAG2 (p.Gly100Ser) plus MYBPC3 (p.Lys1209Serfs*28) and TNNI3 (p.Glu124Gln) plus GLA (p.Trp47*)]. The 3 heterozygous double mutations were discovered for the first time in the malignant familial HCM patients. Of the 6 single mutations, a novel mutation was found in tafazzin (TAZ, p.Ile208Val), and a mutation in β-myosin heavy chain gene (MYH7, p.Arg54Gln), which was reported as rare in the general population, was firstly found in one HCM patient. Identification of novel and rare mutations in HCM patients have added new data to the spectrum of gene mutations associated with this disease. These findings provide an essential basis for the molecular diagnosis and better management of family members at risk of familial HCM."	"High prevalence of arrhythmic and myocardial complications in patients with cardiac glycogenosis due to PRKAG2 mutations. Mutations in PRKAG2, the gene encoding for the γ2 subunit of 5'-AMP-activated protein kinase (AMPK), are responsible for an autosomal dominant glycogenosis with a cardiac presentation, associating hypertrophic cardiomyopathy (HCM), ventricular pre-excitation (VPE), and progressive heart block. The aim of this study was to perform a retrospective time-to-event study of the clinical manifestations associated with PRKAG2 mutations. A cohort of 34 patients from 9 families was recruited between 2001 and 2010. DNA were sequenced on all exons and flanking sequences of the PRKAG2 gene using Sanger sequencing. Overall, four families carried the recurrent p.Arg302Gln mutation, and the five others carried private mutations among which three had never been reported. In the total cohort, at 40 years of age, the risk of developing HCM was 61%, VPE 70%, conduction block 22%, and sudden cardiac death (SCD) 20%. The global survival at 60 years of age was 66%. Thirty-two per cent of patients (N = 10) required a device implantation (5 pacemakers and 5 defibrillators) at a median age of 66 years, and two patients required heart transplant. Only one patient presented with significant skeletal muscle symptoms. No significant differences regarding the occurrence of VPE, ablation complications, or death incidence were observed between different mutations. This study of patients with PRKAG2 mutations provides a more comprehensive view of the natural history of this disease and demonstrates a high risk of cardiac complications. Early recognition of this disease appears important to allow an appropriate management."	"Effect of different γ-subunit isoforms on the regulation of AMPK. AMP-activated protein kinase (AMPK) plays a key role in integrating metabolic pathways in response to energy demand. AMPK activation results in a wide range of downstream responses, many of which are associated with improved metabolic outcome, making AMPK an attractive target for the treatment of metabolic diseases. AMPK is a heterotrimeric complex consisting of a catalytic subunit (α) and two regulatory subunits (β and γ). The γ-subunit harbours the nucleotide-binding sites and plays an important role in AMPK regulation in response to cellular energy levels. In mammals, there are three isoforms of the γ-subunit and these respond differently to regulation by nucleotides, but there is limited information regarding their role in activation by small molecules. Here, we determined the effect of different γ-isoforms on AMPK by a direct activator, 991. In cells, 991 led to a greater activation of γ2-containing AMPK complexes compared with either γ1 or γ3. This effect was dependent on the long N-terminal region of the γ2-isoform. We were able to rule out an effect of Ser<sup>108</sup> phosphorylation, since mutation of Ser<sup>108</sup> to alanine in the β2-isoform had no effect on activation of AMPK by 991 in either γ1- or γ2-complexes. The rate of dephosphorylation of Thr<sup>172</sup> was slower for γ2- compared with γ1-complexes, both in the absence and presence of 991. Our studies show that activation of AMPK by 991 depends on the nature of the γ-isoform. This finding may have implications for the design of isoform-selective AMPK activators."	"Cardiac manifestations of inherited metabolic disease in children. Inborn errors of metabolism (IEM) are responsible for around 5% of all cases of cardiomyopathy (CM) and for 15% of non-idiopathic cases. Storage disorders such as Pompe disease (glycogen storage disease type II) typically cause hypertrophic CM, whereas the accumulation of toxic metabolites, as seen in the organic acidurias, is associated with dilated cardiomyopathy (DCM). Mixed pathology is also possible, particularly in late presentations. IEM such as Barth syndrome, a disorder of cardiolipin stability usually associated with DCM, have been associated with rarer types of CM such as endocardial fibroelastosis and left ventricular non-compaction. Conduction disturbances can also occur, particularly in disorders of glycogen metabolism associated with PRKAG2 mutations. Cardiac screening of patients with metabolic diseases is important to guide treatment and stratify risk. Supportive cardiac treatment may be required, and although associated myocardial disease may improve or even resolve with correction of the underlying metabolic disturbance, progression to cardiac transplantation has been described. In this article we document all IEM known to be associated with cardiac disease in children, focusing on common and clinically important diagnoses. We also discuss the pathophysiology of the various types of CM, and present a recommended approach to screening in the pediatric population."	"Integrative Analysis of PRKAG2 Cardiomyopathy iPS and Microtissue Models Identifies AMPK as a Regulator of Metabolism, Survival, and Fibrosis. AMP-activated protein kinase (AMPK) is a metabolic enzyme that can be activated by nutrient stress or genetic mutations. Missense mutations in the regulatory subunit, PRKAG2, activate AMPK and cause left ventricular hypertrophy, glycogen accumulation, and ventricular pre-excitation. Using human iPS cell models combined with three-dimensional cardiac microtissues, we show that activating PRKAG2 mutations increase microtissue twitch force by enhancing myocyte survival. Integrating RNA sequencing with metabolomics, PRKAG2 mutations that activate AMPK remodeled global metabolism by regulating RNA transcripts to favor glycogen storage and oxidative metabolism instead of glycolysis. As in patients with PRKAG2 cardiomyopathy, iPS cell and mouse models are protected from cardiac fibrosis, and we define a crosstalk between AMPK and post-transcriptional regulation of TGFβ isoform signaling that has implications in fibrotic forms of cardiomyopathy. Our results establish critical connections among metabolic sensing, myocyte survival, and TGFβ signaling."	"Atrial Pathology Findings in a Patient With PRKAG2 Cardiomyopathy and Persistent Atrial Fibrillation. NA"	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Betamethasone-exposed preterm birth does not impair insulin action in adult sheep. Preterm birth is associated with increased risk of type 2 diabetes (T2D) in adulthood; however, the underlying mechanisms are poorly understood. We therefore investigated the effect of preterm birth at ~0.9 of term after antenatal maternal betamethasone on insulin sensitivity, secretion and key determinants in adulthood, in a clinically relevant animal model. Glucose tolerance and insulin secretion (intravenous glucose tolerance test) and whole-body insulin sensitivity (hyperinsulinaemic euglycaemic clamp) were measured and tissue collected in young adult sheep (14 months old) after epostane-induced preterm (9M, 7F) or term delivery (11M, 6F). Glucose tolerance and disposition, insulin secretion, β-cell mass and insulin sensitivity did not differ between term and preterm sheep. Hepatic PRKAG2 expression was greater in preterm than in term males (P = 0.028), but did not differ between preterm and term females. In skeletal muscle, SLC2A4 (P = 0.019), PRKAA2 (P = 0.021) and PRKAG2 (P = 0.049) expression was greater in preterm than in term overall and in males, while INSR (P = 0.047) and AKT2 (P = 0.043) expression was greater in preterm than in term males only. Hepatic PRKAG2 expression correlated positively with whole-body insulin sensitivity in males only. Thus, preterm birth at 0.9 of term after betamethasone does not impair insulin sensitivity or secretion in adult sheep, and has sex-specific effects on gene expression of the insulin signalling pathway. Hence, the increased risk of T2D in preterm humans may be due to factors that initiate preterm delivery or in early neonatal exposures, rather than preterm birth per se."	"Targeting the energy guardian AMPK: another avenue for treating cardiomyopathy? 5'-AMP-activated protein kinase (AMPK) is a pivotal regulator of endogenous defensive molecules in various pathological processes. The AMPK signaling regulates a variety of intracellular intermedial molecules involved in biological reactions, including glycogen metabolism, protein synthesis, and cardiac fibrosis, in response to hypertrophic stimuli. Studies have revealed that the activation of AMPK performs a protective role in cardiovascular diseases, whereas its function in cardiac hypertrophy and cardiomyopathy remains elusive and poorly understood. In view of the current evidence of AMPK, we introduce the biological information of AMPK and cardiac hypertrophy as well as some upstream activators of AMPK. Next, we discuss two important types of cardiomyopathy involving AMPK, RKAG2 cardiomyopathy, and hypertrophic cardiomyopathy. Eventually, therapeutic research, genetic screening, conflicts, obstacles, challenges, and potential directions are also highlighted in this review, aimed at providing a comprehensive understanding of AMPK for readers."	"Alglucosidase alfa enzyme replacement therapy as a therapeutic approach for a patient presenting with a PRKAG2 mutation. PRKAG2 syndrome, an autosomal dominant disorder, is characterized by severe infantile hypertrophic cardiomyopathy and heart rhythm disturbances to cases with a later presentation and a spectrum of manifestations including cardiac manifestations, myopathy and seizures. The cardiac features of PRKAG2 resemble the cardiac manifestations of Pompe disease. We present a patient who was initially diagnosed with Pompe disease and treated with alglucosidase-alfa enzyme replacement therapy (ERT); however, he was eventually diagnosed to carrying a PRKAG2 pathogenic gene mutation; he did not have Pompe disease instead he was a carrier for the common adult leaky splice site mutation in the GAA gene. At 2.5months, the patient had hypotonia/generalized muscle weakness, a diagnosis of non-classic infantile Pompe disease was made based on low acid alpha-glucosidase activity and the patient started on ERT at 11months. However, 1month later, the patient began to have seizures. As the patient's medical history was somewhat unusual for infantile Pompe disease, further evaluation was initiated and included a glycogen storage disease sequencing panel which showed that the patient had a pathogenic mutation in PRKAG2 which had been reported previously. ERT was discontinued and patient had a progression of motor deficits. ERT was reinitiated by the treating physician, and a clinical benefit was noted. This report outlines the benefits of ERT with alglucosidase alfa in a patient with PRKAG2 syndrome, the decline in his condition when the ERT infusions were discontinued, and the significant positive response when ERT was reinitiated."	"Gene-gene interactions in gastrointestinal cancer susceptibility. Cancer arises from complex, multi-layer interactions between diverse genetic and environmental factors. Genetic studies have identified multiple loci associated with tumor susceptibility. However, little is known about how germline polymorphisms interact with one another and with somatic mutations within a tumor to mediate acquisition of cancer traits. Here, we survey recent studies showing gene-gene interactions, also known as epistases, affecting genetic susceptibility in colorectal, gastric and esophageal cancers. We also catalog epistasis types and cancer hallmarks with respect to the interacting genes. A total of 22 gene variation pairs displayed all levels of statistical epistasis, including synergistic, redundant, suppressive and co-suppressive interactions. Five genes primarily involved in base excision repair formed a linear topology in the interaction network, MUTYH-OGG1-XRCC1-PARP1-MMP2, and three genes in mTOR cell-proliferation pathway formed another linear network, PRKAG2-RPS6KB1-PIK3CA. Discrete pairwise epistasis was also found in nucleotide excision repair, detoxification, proliferation, TP53, TGF-β and other pathways. We propose that three modes of biological interaction underlie the molecular mechanisms for statistical epistasis. The direct binding, linear pathway and convergence modes can exhibit any level of statistical epistasis in susceptibility to gastrointestinal cancers, and this is likely true for other complex diseases as well. This review highlights the link between cancer hallmarks and susceptibility genes."	"Genome editing with CRISPR/Cas9 in postnatal mice corrects PRKAG2 cardiac syndrome. PRKAG2 cardiac syndrome is an autosomal dominant inherited disease resulted from mutations in the PRKAG2 gene that encodes γ2 regulatory subunit of AMP-activated protein kinase. Affected patients usually develop ventricular tachyarrhythmia and experience progressive heart failure that is refractory to medical treatment and requires cardiac transplantation. In this study, we identify a H530R mutation in PRKAG2 from patients with familial Wolff-Parkinson-White syndrome. By generating H530R PRKAG2 transgenic and knock-in mice, we show that both models recapitulate human symptoms including cardiac hypertrophy and glycogen storage, confirming that the H530R mutation is causally related to PRKAG2 cardiac syndrome. We further combine adeno-associated virus-9 (AAV9) and the CRISPR/Cas9 gene-editing system to disrupt the mutant PRKAG2 allele encoding H530R while leaving the wild-type allele intact. A single systemic injection of AAV9-Cas9/sgRNA at postnatal day 4 or day 42 substantially restores the morphology and function of the heart in H530R PRKAG2 transgenic and knock-in mice. Together, our work suggests that in vivo CRISPR/Cas9 genome editing is an effective tool in the treatment of PRKAG2 cardiac syndrome and other dominant inherited cardiac diseases by selectively disrupting disease-causing mutations."	"Glycogen Storage Disease Because of a PRKAG2 Mutation Causing Severe Biventricular Hypertrophy and High-Grade Atrio-Ventricular Block. NA"	"A Genetic Response Score for Hydrochlorothiazide Use: Insights From Genomics and Metabolomics Integration. Hydrochlorothiazide is among the most commonly prescribed antihypertensives; yet, &lt;50% of hydrochlorothiazide-treated patients achieve blood pressure (BP) control. Herein, we integrated metabolomic and genomic profiles of hydrochlorothiazide-treated patients to identify novel genetic markers associated with hydrochlorothiazide BP response. The primary analysis included 228 white hypertensives treated with hydrochlorothiazide from the Pharmacogenomic Evaluation of Antihypertensive Responses (PEAR) study. Genome-wide analysis was conducted using Illumina Omni 1 mol/L-Quad Chip, and untargeted metabolomics was performed on baseline fasting plasma samples using a gas chromatography-time-of-flight mass spectrometry platform. We found 13 metabolites significantly associated with hydrochlorothiazide systolic BP (SBP) and diastolic BP (DBP) responses (false discovery rate, &lt;0.05). In addition, integrating genomic and metabolomic data revealed 3 polymorphisms (rs2727563 PRKAG2, rs12604940 DCC, and rs13262930 EPHX2) along with arachidonic acid, converging in the netrin signaling pathway (P=1×10(-5)), as potential markers, significantly influencing hydrochlorothiazide BP response. We successfully replicated the 3 genetic signals in 212 white hypertensives treated with hydrochlorothiazide and created a response score by summing their BP-lowering alleles. We found patients carrying 1 response allele had a significantly lower response than carriers of 6 alleles (∆SBP/∆DBP: -1.5/1.2 versus -16.3/-10.4 mm Hg, respectively, SBP score, P=1×10(-8) and DBP score, P=3×10(-9)). This score explained 11.3% and 11.9% of the variability in hydrochlorothiazide SBP and DBP responses, respectively, and was further validated in another independent study of 196 whites treated with hydrochlorothiazide (DBP score, P=0.03; SBP score, P=0.07). This study suggests that PRKAG2, DCC, and EPHX2 might be important determinants of hydrochlorothiazide BP response."	"Mutation of Fnip1 is associated with B-cell deficiency, cardiomyopathy, and elevated AMPK activity. Folliculin (FLCN) is a tumor-suppressor protein mutated in the Birt-Hogg-Dubé (BHD) syndrome, which associates with two paralogous proteins, folliculin-interacting protein (FNIP)1 and FNIP2, forming a complex that interacts with the AMP-activated protein kinase (AMPK). Although it is clear that this complex influences AMPK and other metabolic regulators, reports of its effects have been inconsistent. To address this issue, we created a recessive loss-of-function variant of Fnip1 Homozygous FNIP1 deficiency resulted in profound B-cell deficiency, partially restored by overexpression of the antiapoptotic protein BCL2, whereas heterozygous deficiency caused a loss of marginal zone B cells. FNIP1-deficient mice developed cardiomyopathy characterized by left ventricular hypertrophy and glycogen accumulation, with close parallels to mice and humans bearing gain-of-function mutations in the γ2 subunit of AMPK. Concordantly, γ2-specific AMPK activity was elevated in neonatal FNIP1-deficient myocardium, whereas AMPK-dependent unc-51-like autophagy activating kinase 1 (ULK1) phosphorylation and autophagy were increased in FNIP1-deficient B-cell progenitors. These data support a role for FNIP1 as a negative regulator of AMPK."	"Association of AMPK subunit gene polymorphisms with growth, feed intake, and feed efficiency in meat-type chickens. Investigations on regulatory genes of feed intake will provide a rational scientific basis to improve future selection indices for more efficient chickens. In the present study, we investigated the association of 13 previously reported SNPs in the chicken adenosine monophosphate activated protein kinase (AMPK) subunits PRKAB1, PRKAG2, and PRKAG3 genes with body weight (BW), body weight gain (BWG), feed intake (FI), and feed conversion ratio (FCR) in two distinct yellow meat-type strains. Six SNPs with a very low minor allele frequency were removed by genotype quality control and data filtering. The experimental population comprised 796 pedigreed males from two strains with different genetic backgrounds, 335 chickens from N202 and 461 chickens from N301. BW at 49 (BW49) and 70 days of age (BW70) and FI (from 49 to 70 days of age) were determined individually. BWG and FCR were computed based on BW and FI in the interval between 49 to 70 days. The results indicated that PRKAB1 SNPs rs14094358 and rs14094362 were significantly associated with BW70, BWG, and FI in the N202 strain, and rs14094361 and rs14094363 were significantly associated with FI and FCR in the N301 strain (P &lt; 0.05). In addition, the PRKAG2 SNP rs14133282 showed significant association with FI in N202, and rs13535812 was significantly associated with BW70 in N202 (P &lt; 0.05). Moreover, the PRKAG3 SNP rs13595570 was significantly associated with BW in N202 (P &lt; 0.05), and significantly associated with FI and FCR in N301 (P &lt; 0.05). Additionally, a two-SNP haplotype comprising rs14094361 and rs14094362 in PRKAB1 was significantly associated with BWG in N202 (P &lt; 0.05). Meanwhile, haplotypes based on two SNPs, rs14133282, and rs13535812, showed significant effects on FI in N202 (P &lt; 0.05). Our findings therefore provide important evidence for association of AMPK subunits polymorphisms with body weight, feed intake, and feed efficiency that may be applied in meat-type chicken breeding programs. "	"Severe Cardiomyopathy as the Isolated Presenting Feature in an Adult with Late-Onset Pompe Disease: A Case Report. Many inborn errors of metabolism can cause cardiomyopathy. Cardiomyopathy associated with glycogen storage includes PRKAG2-associated glycogen storage disease (GSD), Danon disease, infantile-onset Pompe disease (GSD II), GSD III, GSD IV, and phosphofructokinase deficiency (Tarui disease or GSD VII).We present a 35-year-old female who presented with cardiomyopathy after a pregnancy complicated by primary hyperparathyroidism. She had enjoyed excellent health until her first pregnancy at age 33. One week postpartum, she developed dyspnea and an echocardiogram revealed left ventricular ejection fraction (LVEF) of 35%. A cardiac MRI was consistent with nonischemic cardiomyopathy with an infiltrative process. Endomyocardial biopsy showed striking sarcoplasmic vacuolization, excess glycogen by PAS staining, and frequent membrane-bound glycogen by electron microscopy, consistent with lysosomal GSD. Acid alpha-glucosidase (GAA) activity in skin fibroblasts was in the affected range for Pompe disease. Sequencing of the GAA gene revealed a paternally inherited pathogenic c.525delT (p.Glu176Argfs*45) and a de novo c.309C&gt;G (p.Cys103Trp) with unknown pathogenicity. Testing of the familial mutations in her daughter indicated that the variants in the proband were in trans. 26-gene cardiomyopathy sequencing panel had normal results thereby excluding GSD III, Danon disease, Fabry disease, and PRKAG2-associated cardiomyopathy. Therefore, results strongly suggest a diagnosis of Pompe disease.Pompe disease has a broad disease spectrum, including infantile-onset (IOPD) and late-onset (LOPD) forms. LOPD typically presents with proximal muscle weakness and respiratory insufficiency in childhood or late adulthood. Our case may represent a very unusual presentation of adult LOPD with isolated cardiomyopathy without skeletal muscle involvement or respiratory failure."	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"Clinical Spectrum of PRKAG2 Syndrome. NA"	"Differential regulation by AMP and ADP of AMPK complexes containing different γ subunit isoforms. The γ subunits of heterotrimeric AMPK complexes contain the binding sites for the regulatory adenine nucleotides AMP, ADP and ATP. We addressed whether complexes containing different γ isoforms display different responses to adenine nucleotides by generating cells stably expressing FLAG-tagged versions of the γ1, γ2 or γ3 isoform. When assayed at a physiological ATP concentration (5 mM), γ1- and γ2-containing complexes were allosterically activated almost 10-fold by AMP, with EC50 values one to two orders of magnitude lower than the ATP concentration. By contrast, γ3 complexes were barely activated by AMP under these conditions, although we did observe some activation at lower ATP concentrations. Despite this, all three complexes were activated, due to increased Thr(172) phosphorylation, when cells were incubated with mitochondrial inhibitors that increase cellular AMP. With γ1 complexes, activation and Thr(172) phosphorylation induced by the upstream kinase LKB1 [liver kinase B1; but not calmodulin-dependent kinase kinase (CaMKKβ)] in cell-free assays was markedly promoted by AMP and, to a smaller extent and less potently, by ADP. However, effects of AMP or ADP on activation and phosphorylation of the γ2 and γ3 complexes were small or insignificant. Binding of AMP or ADP protected all three γ subunit complexes against inactivation by Thr(172) dephosphorylation; with γ2 complexes, ADP had similar potency to AMP, but with γ1 and γ3 complexes, ADP was less potent than AMP. Thus, AMPK complexes containing different γ subunit isoforms respond differently to changes in AMP, ADP or ATP. These differences may tune the responses of the isoforms to fit their differing physiological roles."	"Cardiovascular magnetic resonance findings in patients with PRKAG2 gene mutations. Autosomal dominantly inherited PRKAG2 cardiac syndrome is due to a unique defect of the cardiac cell metabolism and has a distinctive histopathology with excess intracellular glycogen, and prognosis different from sarcomeric hypertrophic cardiomyopathy. We aimed to define the distinct characteristics of PRKAG2 using cardiovascular magnetic resonance (CMR). CMR (1.5 T) and genetic testing were performed in two families harboring PRKAG2 mutations. On CMR, segmental analysis of left ventricular (LV) hypertrophy (LVH), function, native T1 mapping, and late gadolinium enhancement (LGE) were performed. Six individuals (median age 23 years, range 16-48; two females) had a PRKAG2 mutation: five with an R302Q mutation (family 1), and one with a novel H344P mutation (family 2). Three of six mutation carriers had LV mass above age and gender limits (203 g/m2, 157 g/m2 and 68 g/m2) and others (with R302Q mutation) normal LV masses. All mutation carriers had LVH in at least one segment, with the median maximal wall thickness of 13 mm (range 11-37 mm). Two R302Q mutation carriers with markedly increased LV mass (203 g/m2 and 157 g/m2) showed a diffuse pattern of hypertrophy but predominantly in the interventricular septum, while other mutation carriers exhibited a non-symmetric mid-infero-lateral pattern of hypertrophy. In family 1, the mutation negative male had a mean T1 value of 963 ms, three males with the R302Q mutation, LVH and no LGE a mean value of 918 ± 11 ms, and the oldest male with the R302Q mutation, extensive hypertrophy and LGE a mean value of 973 ms. Of six mutations carriers, two with advanced disease had LGE with 11 and 22 % enhancement of total LV volume. PRKAG2 cardiac syndrome may present with eccentric distribution of LVH, involving focal mid-infero-lateral pattern in the early disease stage, and more diffuse pattern but focusing on interventricular septum in advanced cases. In patients at earlier stages of disease, without LGE, T1 values may be reduced, while in the advanced disease stage T1 mapping may result in higher values caused by fibrosis. CMR is a valuable tool in detecting diffuse and focal myocardial abnormalities in PRKAG2 cardiomyopathy."	"Variable primary phenotypic manifestations in a rare familial form of Wolff-Parkinson-White syndrome and hypertrophic cardiomyopathy. NA"	"Exome analysis of a family with Wolff-Parkinson-White syndrome identifies a novel disease locus. Wolff-Parkinson-White (WPW) syndrome is a common cause of supraventricular tachycardia that carries a risk of sudden cardiac death. To date, mutations in only one gene, PRKAG2, which encodes the 5'-AMP-activated protein kinase subunit γ-2, have been identified as causative for WPW. DNA samples from five members of a family with WPW were analyzed by exome sequencing. We applied recently designed prioritization strategies (VAAST/pedigree VAAST) coupled with an ontology-based algorithm (Phevor) that reduced the number of potentially damaging variants to 10: a variant in KCNE2 previously associated with Long QT syndrome was also identified. Of these 11 variants, only MYH6 p.E1885K segregated with the WPW phenotype in all affected individuals and was absent in 10 unaffected family members. This variant was predicted to be damaging by in silico methods and is not present in the 1,000 genome and NHLBI exome sequencing project databases. Screening of a replication cohort of 47 unrelated WPW patients did not identify other likely causative variants in PRKAG2 or MYH6. MYH6 variants have been identified in patients with atrial septal defects, cardiomyopathies, and sick sinus syndrome. Our data highlight the pleiotropic nature of phenotypes associated with defects in this gene."	"Polyglucosan storage myopathies. Polyglucosan is an amylopectin-like polysaccharide associated with defective glycogen metabolism and, unlike normal glycogen, it is to some extent resistant to α-amylase digestion. It also has a characteristic fibrillar appearance under the electron microscope. Polyglucosan may aggregate into dense inclusions known as polyglucosan bodies. Its accumulation can be found in various tissues to some degree in normal ageing, but it is also the hallmark of some diseases associated with defects in glycogen metabolism. These diseases frequently involve both skeletal and cardiac muscle tissue, causing myopathy with muscle weakness and wasting, and cardiomyopathy with arrhythmia, conduction block, and cardiac failure. Mutations in eight human genes are known to be associated with polyglucosan storage involving muscle, namely GYG1, GBE1, RBCK1 (HOIL-1), PFKM, EPM2A, EPM2B (NHLRC1), PRDM8, and PRKAG2. There is also a common equine polysaccharide storage myopathy belonging to this group of diseases involving the GYS1 gene. The pathogenic mechanisms that cause the abnormal glycogen accumulation appearing as polyglucosan have been studied in some of these diseases. In most cases the pathogenesis is largely unknown. In this review, we summarize the polyglucosan storage diseases from a clinical, morphological, and genetic standpoint. We also identify some important similarities and differences regarding the morphological appearance of polyglucosan accumulation and discuss pathogenic pathways. "	"Transcriptome analysis of mRNA and miRNA in skeletal muscle indicates an important network for differential Residual Feed Intake in pigs. Feed efficiency (FE) can be measured by feed conversion ratio (FCR) or residual feed intake (RFI). In this study, we measured the FE related phenotypes of 236 castrated purebred Yorkshire boars, and selected 10 extreme individuals with high and low RFI for transcriptome analysis. We used RNA-seq analyses to determine the differential expression of genes and miRNAs in skeletal muscle. There were 99 differentially expressed genes identified (q ≤ 0.05). The down-regulated genes were mainly involved in mitochondrial energy metabolism, including FABP3, RCAN, PPARGC1 (PGC-1A), HK2 and PRKAG2. The up-regulated genes were mainly involved in skeletal muscle differentiation and proliferation, including IGF2, PDE7A, CEBPD, PIK3R1 and MYH6. Moreover, 15 differentially expressed miRNAs (|log2FC| ≥ 1, total reads count ≥ 20, p ≤ 0.05) were identified. Among them, miR-136, miR-30e-5p, miR-1, miR-208b, miR-199a, miR-101 and miR-29c were up-regulated, while miR-215, miR-365-5p, miR-486, miR-1271, miR-145, miR-99b, miR-191 and miR-10b were down-regulated in low RFI pigs. We conclude that decreasing mitochondrial energy metabolism, possibly through AMPK - PGC-1A pathways, and increasing muscle growth, through IGF-1/2 and TGF-β signaling pathways, are potential strategies for the improvement of FE in pigs (and possibly other livestock). This study provides new insights into the molecular mechanisms that determine RFI and FE in pigs."	"PRKAG2 mutation: An easily missed cardiac specific non-lysosomal glycogenosis. Mutations in PRKAG2 gene that regulates the γ2 subunit of the adenosine monophosphate (AMP) dependent protein kinase have been associated with the development of atrioventricular (AV) accessory pathways, cardiac hypertrophy, and conduction system abnormalities. These patients can potentially be misdiagnosed as hypertrophic cardiomyopathy (HOCM) and/or Wolf-Parkinson White (WPW) syndrome due to similar clinical phenotype. Early recognition of this disease entity is very important as ablation of suspected accessory pathways is not effective and the natural history of the disease is very different from HOCM and WPW syndrome. "	"Using exome sequencing to identify the cause of myocardial hypertrophy in a Chinese family. Myocardial hypertrophy is a common feature of numerous diseases. It is important to distinguish between these diseases in order to enable accurate diagnosis and the administration of appropriate therapy. Using whole‑exome sequencing, the present study aimed to identify a pathogenic mutation in a Chinese family, which may lead to cardiac hypertrophy and Wolff‑Parkinson‑White syndrome. The proband from the Chinese family exhibited left ventricular hypertrophy and pre-excitation with a short PR interval. DNA was extracted from peripheral blood obtained from the subject family, and exome sequencing was performed in the proband. Polymerase chain reaction and direct sequencing were used to confirm the presence of a mutation, and confirmed that the pathogenic mutation was 5'-AMP‑activated protein kinase subunit γ2 (PRKAG2) (p.R302Q), which has been previously reported in a family with an inherited from of WPW. A stop‑gain mutation in urotensin II receptor (UTS2R) (p.S241X), which is associated with congestive heart failure, was identified in the proband and in one other affected family member. It is important to identify the causes of myocardial hypertrophy, in order to provide a theoretical basis with which to improve clinical diagnosis and the assessment of prognosis. The results of the present study suggest that if a patient has myocardial hypertrophy with a short PR interval on electrocardiogram, a mutation in the PRKAG2 gene should be considered. In conclusion, exome sequencing methods may assist with the identification of causative genes in myocardial hypertrophy, as well as genes that are associated with an increased risk of sudden cardiac death."	"Novel polymorphisms of the PRKAG2 gene and their association with body measurement and meat quality traits in Qinchuan cattle. Body measurement and meat quality traits play important roles in the evaluation of productivity and economy in cattle, which are influenced by genes and environmental factors. PRKAG2, which encodes the γ2 regulatory subunit of AMPK, is associated with key metabolic pathways in muscle. We detected bovine PRKAG2 gene polymorphisms and analyzed their associations with body measurement and meat quality traits of cattle. DNA samples were taken from 578 Qinchuan cattle aged 18-24 months. DNA sequencing, polymerase chain reaction-restriction fragment length polymorphism, and time-of-flight mass spectrometry were used to detect PRKAG2 single nucleotide polymorphisms (SNPs). Sequence analysis revealed three SNPs in exon 3 (g.95925G&gt;A, g.95973G&gt;C, and g.95992A&gt;G) and one g.96058T&gt;C mutation in intron 3. g.95973G&gt;C, g.95992A&gt;G, and g.96058T&gt;C each showed 3 genotypes: GG, GC, and CC; AA, AG, and GG; and TT, TC, and CC, respectively. In contrast, g.95925G&gt;A only showed 2 genotypes, GG and GA. Analysis showed that g.95925G&gt;A had no effects on body measurement and meat quality traits, whereas the other 3 polymorphisms were significantly associated with some of the body measurement and meat quality traits in the Qinchuan cattle population. It is inferred that the PRKAG2 gene can be used for marker-assisted selection to improve the body measurement and meat quality traits in the Qinchuan cattle population. "	"Genetics of second-generation antipsychotic and mood stabilizer-induced weight gain in bipolar disorder: common and specific effects of key regulators of fat-mass homoeostasis genes. Second-generation antipsychotics (SGAP) and mood stabilizers (MS) are prescribed widely for the treatment of bipolar disorder, but they are associated with the risk of relevant side-effects, among which is weight gain. The identification of genes that predispose to weight gain would represent a useful tool to evaluate the risk-benefit ratio of treatment. This study investigated the genetic factors associated with weight gain in bipolar patients treated with SGAP, MS and their combinations (n=486). Single-nucleotide polymorphisms belonging to 16 candidate genes supported by the literature were investigated in the Systematic Treatment Enhancement Program for Bipolar Disorder (STEP-BD) genome-wide dataset. Linear regression models were constructed including age, sex, initial weight and prescription of SGAP at high risk for inducing weight gain (olanzapine or clozapine) as covariates. Genes harbouring single-nucleotide polymorphisms associated with phenotypes were investigated by a pathway analysis. No association was found between phenotypes and individual polymorphisms or pathways after multiple-test correction. HTR2C, LEP, FTO and TBC1D1 represented the top genes for weight gain during treatment with a SGAP and/or MS. A genome-wide signal (FTO rs9930506) associated previously with obesity was associated with psychotropic-induced weight gain. The genes that influenced both SGAP and MS weight gain were FTO, TBC1D1, MTHFR and HRH1. ADCY9, ADCY5 and PRKAG2 were interesting candidate genes that emerged from the pathway analysis. This study was the first to compare the genes involved in SGAP-induced and MS-induced weight gain. Individual genes probably play a limited role in psychotropic-induced weight gain; further studies should focus on the extension from known candidate genes to wider groups of molecular pathways."	"Translational tolerance of mitochondrial genes to metabolic energy stress involves TISU and eIF1-eIF4GI cooperation in start codon selection. Protein synthesis is a major energy-consuming process, which is rapidly repressed upon energy stress by AMPK. How energy deficiency affects translation of mRNAs that cope with the stress response is poorly understood. We found that mitochondrial genes remain translationally active upon energy deprivation. Surprisingly, inhibition of translation is partially retained in AMPKα1/AMPKα2 knockout cells. Mitochondrial mRNAs are enriched with TISU, a translation initiator of short 5' UTR, which confers resistance specifically to energy stress. Purified 48S preinitiation complex is sufficient for initiation via TISU AUG, when preceded by a short 5' UTR. eIF1 stimulates TISU but inhibits non-TISU-directed initiation. Remarkably, eIF4GI shares this activity and also interacts with eIF1. Furthermore, eIF4F is released upon 48S formation on TISU. These findings describe a specialized translation tolerance mechanism enabling continuous translation of TISU genes under energy stress and reveal that a key step in start codon selection of short 5' UTR is eIF4F release."	"Four genetic variants interact to confer susceptibility to atopic dermatitis in Chinese Han population. Atopic dermatitis is a chronic inflammatory skin disease and is affected by environmental and genetic factors. Gene-gene/environment interactions are strongly believed to contribute to the genetic risk of common diseases. A number of gene-environment interactions of atopic dermatitis were performed. However, there are few comprehensive investigations on the gene-gene (or genetic variants) interactions for atopic dermatitis. We explored the association model of 6 single nucleotide polymorphisms (SNPs) which were most significant (P &lt; 10E-05) in our previous genome wide association study (GWAS) for atopic dermatitis, and search for the possible genetic variant interactions based on the previous GWAS data using Generalized Multifactor Dimensionality Reduction and Plink 1.07 in the combined sample of 4,636 cases and 13,559 controls. The most significant associated evidence was observed under dominant model for SNPs rs3126085, rs12085366, and rs7701890, recessive model for SNP rs17173197, and additive model for SNPs rs2393903 and rs6010620. Three significant pair-way interactions were observed, including PRKAG2 and FLG SNPs (rs17173197 × rs3126085, P combined = 1.11E-15), PRKAG2 and TMEM232-SLC25A46 SNPs (rs17173197 × rs7701890, P combined = 2.22E-15), PRKAG2 and TNFRSF6B-ZGPAT SNPs (rs17173197 × rs6010620, P combined = 6.66E-16). Besides, a three-way significant interaction among PRKAG2, TMEM232-SLC25A46 and TNFRSF6B-ZGPAT SNPs (rs17173197 × rs7701890 × rs6010620, P combined = 5.99E-15) was observed in this study. These four genetic variant interactions confer susceptibility to atopic dermatitis, and highlight the genetic variant interactions in the etiology of atopic dermatitis in Chinese Han population."	"PT-1 selectively activates AMPK-γ1 complexes in mouse skeletal muscle, but activates all three γ subunit complexes in cultured human cells by inhibiting the respiratory chain. AMP-activated protein kinase (AMPK) occurs as heterotrimeric complexes in which a catalytic subunit (α1/α2) is bound to one of two β subunits (β1/β2) and one of three γ subunits (γ1/γ2/γ3). The ability to selectively activate specific isoforms would be a useful research tool and a promising strategy to combat diseases such as cancer and Type 2 diabetes. We report that the AMPK activator PT-1 selectively increased the activity of γ1- but not γ3-containing complexes in incubated mouse muscle. PT-1 increased the AMPK-dependent phosphorylation of the autophagy-regulating kinase ULK1 (unc-51-like autophagy-activating kinase 1) on Ser555, but not proposed AMPK-γ3 substrates such as Ser231 on TBC1 (tre-2/USP6, BUB2, cdc16) domain family, member 1 (TBC1D1) or Ser212 on acetyl-CoA carboxylase subunit 2 (ACC2), nor did it stimulate glucose transport. Surprisingly, however, in human embryonic kidney (HEK) 293 cells expressing human γ1, γ2 or γ3, PT-1 activated all three complexes equally. We were unable to reproduce previous findings suggesting that PT-1 activates AMPK by direct binding between the kinase and auto-inhibitory domains (AIDs) of the α subunit. We show instead that PT-1 activates AMPK indirectly by inhibiting the respiratory chain and increasing cellular AMP:ATP and/or ADP:ATP ratios. Consistent with this mechanism, PT-1 failed to activate AMPK in HEK293 cells expressing an AMP-insensitive R299G mutant of AMPK-γ1. We propose that the failure of PT-1 to activate γ3-containing complexes in muscle is not an intrinsic feature of such complexes, but is because PT-1 does not increase cellular AMP:ATP ratios in the specific subcellular compartment(s) in which γ3 complexes are located. "	"Identifying distinct candidate genes for early Parkinson's disease by analysis of gene expression in whole blood. Parkinson disease (PD) is a degenerative disorder of the central nervous system, and in the majority of cases, the causes of PD are unknown. Coupled with impressive advances in statistical tools for analyzing large, complex data sets, well-designed microarray experiments are poised to make a big impact in the field of diseases. So we set the study to identify distinct PD-associated candidates. Candidate genes, with statistical significant changes of expression in PD patients' samples, were extracted from a transcriptome-wide microarray data in 105 individuals, which were downloaded from GEO, NCBI, by using statistical methods; Selected findings were confirmed by principal component analysis (PCA) and functional and pathway enrichment analysis were used to further study about the distinct candidates. A total of 10 distinctly differentially expressed genes were identified in PD patitents' samples. After PCA confirmation, we specifically pointed out 4 genes (PRKAG2, DLG1, DDX3Y, RPS4Y) as the high confidence distinct candidates in PD. Network and functional categories showed that they were most related to translational elongation(GO:0006414) and participated in mTOR signaling pathway(hsa04150). Among 10 distinct genes which are identified in PD patients' samples, DLG1, XIST, DDX3Y and RPS4Y1 genes can classify samples into different group clearly, and they are regarded as high confidence distinct gene biomarkers of PD. Our results provide a systematic view of the functional alterations of PD that may help to elucidate the mechanisms of PD and lead to improved treatments for PD patients."	"Twenty-eight loci that influence serum urate levels: analysis of association with gout. Twenty-eight genetic loci are associated with serum urate levels in Europeans. Evidence for association with gout at most loci is absent, equivocal or not replicated. Our aim was to test the loci for association with gout meeting the American College of Rheumatology gout classification criteria in New Zealand European and Polynesian case-control sample sets. 648 European cases and 1550 controls, and 888 Polynesian (Ma¯ori and Pacific) cases and 1095 controls were genotyped. Association with gout was tested by logistic regression adjusting for age and sex. Power was adequate (&gt;0.7) to detect effects of OR&gt;1.3. We focused on 24 loci without previous consistent evidence for association with gout. In Europeans, we detected association at seven loci, one of which was the first report of association with gout (IGF1R). In Polynesian, association was detected at three loci. Meta-analysis revealed association at eight loci-two had not previously been associated with gout (PDZK1 and MAF). In participants with higher Polynesian ancestry, there was association in an opposing direction to Europeans at PRKAG2 and HLF (HLF is the first report of association with gout). There was obvious inconsistency of gout association at four loci (GCKR, INHBC, SLC22A11, SLC16A9) that display very similar effects on urate levels. We provide the first evidence for association with gout at four loci (IGF1R, PDZK1, MAF, HLF). Understanding why there is lack of correlation between urate and gout effect sizes will be important in understanding the aetiology of gout."	"Transgenic knockdown of cardiac sodium/glucose cotransporter 1 (SGLT1) attenuates PRKAG2 cardiomyopathy, whereas transgenic overexpression of cardiac SGLT1 causes pathologic hypertrophy and dysfunction in mice. The expression of a novel cardiac glucose transporter, SGLT1, is increased in glycogen storage cardiomyopathy secondary to mutations in PRKAG2. We sought to determine the role of SGLT1 in the pathogenesis of PRKAG2 cardiomyopathy and its role in cardiac structure and function. Transgenic mice with cardiomyocyte-specific overexpression of human T400N mutant PRKAG2 cDNA (TG(T400N)) and transgenic mice with cardiomyocyte-specific RNA interference knockdown of SGLT1 (TG(SGLT1-DOWN)) were crossed to produce double-transgenic mice (TG(T400N)/TG(SGLT1-DOWN)). Tet-off transgenic mice conditionally overexpressing cardiac SGLT1 in the absence of doxycycline were also constructed (TG(SGLT-ON)). Relative to TG(T400N) mice, TG(T400N)/TG(SGLT1-DOWN) mice exhibited decreases in cardiac SGLT1 expression (63% decrease, P&lt;0.05), heart/body weight ratio, markers of cardiac hypertrophy, and cardiac glycogen content. TG(T400N)/TG(SGLT1-DOWN) mice had less left ventricular dilation at age 12 weeks compared to TG(T400N) mice. Relative to wildtype (WT) mice, TG(SGLT1-ON) mice exhibited increases in heart/body weight ratio, glycogen content, and markers of cardiac hypertrophy at ages 10 and 20 weeks. TG(SGLT1-ON) mice had increased myocyte size and interstitial fibrosis, and progressive left ventricular dysfunction. When SGLT1 was suppressed after 10 weeks of overexpression (TG(SGLT1-ON/OFF)), there was a reduction in cardiac hypertrophy and improvement in left ventricular failure. Cardiac knockdown of SGLT1 in a murine model of PRKAG2 cardiomyopathy attenuates the disease phenotype, implicating SGLT1 in the pathogenesis. Overexpression of SGLT1 causes pathologic cardiac hypertrophy and left ventricular failure that is reversible. This is the first report of cardiomyocyte-specific transgenic knockdown of a target gene."	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"Influence of CHIEF pathway genes on gene expression: a pathway approach to functionality. Candidate pathway approaches in disease association studies often utilize a tagSNP approach to capture genetic variation. In this paper we assess gene expression patterns with SNPs in genes in the CHIEF pathway to help determine their potential functionality. Quantitative real-time RT-PCR was run to determine gene expression of 13 genes in normal colon tissue samples from 82 individuals. TagSNP genotype data were obtained from a GoldenGate Illumina multiplex bead array platform. Age, sex, and genetic ancestry adjusted general linear models were used to estimate beta coefficients and p values. Genetic variation in mTOR (1 SNP), NFKB1 (4 SNPs), PRKAG2 (3 SNPs), and TSC2 (1 SNP) significantly influenced their expression. After adjustment for multiple comparisons several associations between pathway genes and expression of other genes were significant. These included AKT1 rs1130214 associated with expression of PDK1; NFκB1 rs13117745 and rs4648110 with STK11 expression; PRKAG2 rs6965771 with expression of NFκB1, PIK3CA, and RPS6KB2; RPS6KB1 rs80711475 with STK11 expression; STK11 rs741765 with PIK3CA and PRKAG2 expression; and TSC2 rs3087631 with AKT1, IkBκB, NFκB1, PDK1, PIK3CA, PRKAG2, and PTEN expression. The higher levels of differential expression were noted for TSC2 rs3087631 (percent difference ranges from 108% to 198% across genes). Many of these SNPs and genes also were associated with colon and rectal cancer risk. Our results suggest that pathway genes may regulate expression of other genes in the pathway. The convergence of these genes in several biological pathways involved in cancer further supports their importance to the carcinogenic process."	"DNA polymorphisms and transcript abundance of PRKAG2 and phosphorylated AMP-activated protein kinase in the rumen are associated with gain and feed intake in beef steers. Beef steers with variation in feed efficiency phenotypes were evaluated previously on a high-density SNP panel. Ten markers from rs110125325-rs41652818 on bovine chromosome 4 were associated with average daily gain (ADG). To identify the gene(s) in this 1.2-Mb region responsible for variation in ADG, genotyping with 157 additional markers was performed. Several markers (n = 41) were nominally associated with ADG, and three of these, including the only marker to withstand Bonferroni correction, were located within the protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2) gene. An additional population of cross-bred steers (n = 406) was genotyped for validation. One marker located within the PRKAG2 loci approached a significant association with gain. To evaluate PRKAG2 for differences in transcript abundance, we measured expression in the liver, muscle, rumen and intestine from steers (n = 32) with extreme feed efficiency phenotypes collected over two seasons. No differences in PRKAG2 transcript abundance were detected in small intestine, liver or muscle. Correlation between gene expression level of PRKAG2 in rumen and average daily feed intake (ADFI) was detected in both seasons (P &lt; 0.05); however, the direction differed by season. Lastly, we evaluated AMP-activated protein kinase (AMPK), of which PRKAG2 is a subunit, for differences among ADG and ADFI and found that the phosphorylated form of AMPK was associated with ADFI in the rumen. These data suggest that PRKAG2 and its mature protein, AMPK, are involved in feed efficiency traits in beef steers. This is the first evidence to suggest that rumen AMPK may be contributing to ADFI in cattle."	"Gene-centric meta-analysis in 87,736 individuals of European ancestry identifies multiple blood-pressure-related loci. Blood pressure (BP) is a heritable risk factor for cardiovascular disease. To investigate genetic associations with systolic BP (SBP), diastolic BP (DBP), mean arterial pressure (MAP), and pulse pressure (PP), we genotyped ~50,000 SNPs in up to 87,736 individuals of European ancestry and combined these in a meta-analysis. We replicated findings in an independent set of 68,368 individuals of European ancestry. Our analyses identified 11 previously undescribed associations in independent loci containing 31 genes including PDE1A, HLA-DQB1, CDK6, PRKAG2, VCL, H19, NUCB2, RELA, HOXC@ complex, FBN1, and NFAT5 at the Bonferroni-corrected array-wide significance threshold (p &lt; 6 × 10(-7)) and confirmed 27 previously reported associations. Bioinformatic analysis of the 11 loci provided support for a putative role in hypertension of several genes, such as CDK6 and NUCB2. Analysis of potential pharmacological targets in databases of small molecules showed that ten of the genes are predicted to be a target for small molecules. In summary, we identified previously unknown loci associated with BP. Our findings extend our understanding of genes involved in BP regulation, which may provide new targets for therapeutic intervention or drug response stratification."	"Mutation in the γ2-subunit of AMP-activated protein kinase stimulates cardiomyocyte proliferation and hypertrophy independent of glycogen storage. AMP-activated protein kinase is a master regulator of cell metabolism and an attractive drug target for cancer and metabolic and cardiovascular diseases. Point mutations in the regulatory γ2-subunit of AMP-activated protein kinase (encoded by Prkag2 gene) caused a unique form of human cardiomyopathy characterized by cardiac hypertrophy, ventricular preexcitation, and glycogen storage. Understanding the disease mechanisms of Prkag2 cardiomyopathy is not only beneficial for the patients but also critical to the use of AMP-activated protein kinase as a drug target. We sought to identify the pro-growth-signaling pathway(s) triggered by Prkag2 mutation and to distinguish it from the secondary response to glycogen storage. In a mouse model of N488I mutation of the Prkag2 gene (R2M), we rescued the glycogen storage phenotype by genetic inhibition of glucose-6-phosphate-stimulated glycogen synthase activity. Ablation of glycogen storage eliminated the ventricular preexcitation but did not affect the excessive cardiac growth in R2M mice. The progrowth effect in R2M hearts was mediated via increased insulin sensitivity and hyperactivity of Akt, resulting in activation of mammalian target of rapamycin and inactivation of forkhead box O transcription factor-signaling pathways. Consequently, cardiac myocyte proliferation during the postnatal period was enhanced in R2M hearts followed by hypertrophic growth in adult hearts. Inhibition of mammalian target of rapamycin activity by rapamycin or restoration of forkhead box O transcription factor activity by overexpressing forkhead box O transcription factor 1 rescued the abnormal cardiac growth. Our study reveals a novel mechanism for Prkag2 cardiomyopathy, independent of glycogen storage. The role of γ2-AMP-activated protein kinase in cell growth also has broad implications in cardiac development, growth, and regeneration."	"Myocardial infarction in a teenager. NA"	"Generalization of associations of kidney-related genetic loci to American Indians. CKD disproportionally affects American Indians, who similar to other populations, show genetic susceptibility to kidney outcomes. Recent studies have identified several loci associated with kidney traits, but their relevance in American Indians is unknown. This study used data from a large, family-based genetic study of American Indians (the Strong Heart Family Study), which includes 94 multigenerational families enrolled from communities located in Oklahoma, the Dakotas, and Arizona. Individuals were recruited from the Strong Heart Study, a population-based study of cardiovascular disease in American Indians. This study selected 25 single nucleotide polymorphisms in 23 loci identified from recently published kidney-related genome-wide association studies in individuals of European ancestry to evaluate their associations with kidney function (estimated GFR; individuals 18 years or older, up to 3282 individuals) and albuminuria (urinary albumin to creatinine ratio; n=3552) in the Strong Heart Family Study. This study also examined the association of single nucleotide polymorphisms in the APOL1 region with estimated GFR in 1121 Strong Heart Family Study participants. GFR was estimated using the abbreviated Modification of Diet in Renal Disease Equation. Additive genetic models adjusted for age and sex were used. This study identified significant associations of single nucleotide polymorphisms with estimated GFR in or nearby PRKAG2, SLC6A13, UBE2Q2, PIP5K1B, and WDR72 (P&lt;2.1 × 10(-3) to account for multiple testing). Single nucleotide polymorphisms in these loci explained 2.2% of the estimated GFR total variance and 2.9% of its heritability. An intronic variant of BCAS3 was significantly associated with urinary albumin to creatinine ratio. APOL1 single nucleotide polymorphisms were not associated with estimated GFR in a single variant test or haplotype analyses, and the at-risk variants identified in individuals with African ancestry were not detected in DNA sequencing of American Indians. This study extends the genetic associations of loci affecting kidney function to American Indians, a population at high risk of kidney disease, and provides additional support for a potential biologic relevance of these loci across ancestries."	"DNA hypermethylation and DNA hypomethylation is present at different loci in chronic kidney disease. Genetic risk factors for chronic kidney disease (CKD) are being identified through international collaborations. By comparison, epigenetic risk factors for CKD have only recently been considered using population-based approaches. DNA methylation is a major epigenetic modification that is associated with complex diseases, so we investigated methylome-wide loci for association with CKD. A total of 485,577 unique features were evaluated in 255 individuals with CKD (cases) and 152 individuals without evidence of renal disease (controls). Following stringent quality control, raw data were quantile normalized and β values calculated to reflect the methylation status at each site. The difference in methylation status was evaluated between cases and controls with resultant P values adjusted for multiple testing. Genes with significantly increased and decreased levels of DNA methylation were considered for biological relevance by functional enrichment analysis using KEGG pathways in Partek Genomics Suite. Twenty-three genes, where more than one CpG per loci was identified with Padjusted&lt;10(-8), demonstrated significant methylation changes associated with CKD and additional support for these associated loci was sought from published literature. Strong biological candidates for CKD that showed statistically significant differential methylation include CUX1, ELMO1, FKBP5, INHBA-AS1, PTPRN2, and PRKAG2 genes; several genes are differentially methylated in kidney tissue and RNA-seq supports a functional role for differential methylation in ELMO1 and PRKAG2 genes. This study reports the largest, most comprehensive, genome-wide quantitative evaluation of DNA methylation for association with CKD. Evidence confirming methylation sites influence development of CKD would stimulate research to identify epigenetic therapies that might be clinically useful for CKD. "	"Cardiac transplant in a family pedigree of hypertrophic cardiomyopathy secondary to a mutation in the AMP gene. The phenotype of this unique condition comprises left ventricular hypertrophy (LVH), accessory pathways, atrial arrhythmia and premature failure of the atrioventricular node. At age 11, his ECG showed marked voltage criteria for LVH but his echocardiography was negative. He declined further screening but was reassessed at 21 years of age. By this time he had developed significant LVH. He had an implantable cardioventer defibrillator (ICD) in 2001. He developed atrial flutter and fibrillation which was initially treated with medical therapy and then radiofrequency ablation.Unfortunately, his condition deteriorated. He was New York Heart Association (NYHA) class 3-4 for most of 2011 and spent the latter part of the year and most of 2012 as an in-patient. An attempt to upgrade his ICD to a cardiac resynchronisation therapy-defibrillator was unsuccessful.In March 2012 he was placed on the transplant waiting list. He received an organ in June. He is now NHYA class 1 and has returned to work part-time. "	"Overexpression of G100S mutation in PRKAG2 causes Wolff-Parkinson-White syndrome in zebrafish. The Wolff-Parkinson-White (WPW) syndrome was believed to be associated with PRKAG2 gene mutations. In this study, we verified the pathopoiesis of G100S mutation, a novel mutation only discovered in Chinese patients with WPW, in cardiac disorder. Similar to R302Q, when overexpressed PRKAG2 G100S mutant in zebrafish, we observed a thicker heart wall, detected a decreased AMPK enzymatic activity by tissue AMPK kinase activity colorimetric technique, as well as examined an increased glycogen storage in heart wall using the method for periodic acid-Schiff staining, in comparison with the zebrafish without exogenous PRKAG2 (mock) or with wild-type PRKAG2 (WT). Taken together, we concluded PRKAG2 G100S mutation might contribute to impair the AMP-activated protein kinase function, which resulted in increased cardiac glycogen storage, serving as a pathogenesis for WPW syndrome in Chinese. "	"Chronic AMPK activity dysregulation produces myocardial insulin resistance in the human Arg302Gln-PRKAG2 glycogen storage disease mouse model. The cardiac PRKAG2 mutation in the γ2-subunit of adenosine monophosphate activated kinase (AMPK) is characterized by excessive glycogen deposition, hypertrophy, frequent arrhythmias, and progressive conduction system disease. We investigated whether myocardial glucose uptake (MGU) was augmented following insulin stimulation in a mouse model of the PRKAG2 cardiac syndrome. Myocardial and skeletal muscle glucose uptake was assessed with 2-[18F]fluoro-2-deoxyglucose positron emission tomography imaging in n = 3 transgenic wildtype (TGwt) vs n = 7 PRKAG2 mutant (TGmut) mice at baseline and 1 week later, 30 min following acute insulin. Systolic function, cardiac glycogen stores, phospho-AMPK α, and insulin-receptor expression levels were analyzed to corroborate to the in vivo findings. TGmut Patlak Ki was reduced 56% at baseline compared to TGwt (0.3 ± 0.2 vs 0.7 ± 0.1, t test p = 0.01). MGU was augmented 71% in TGwt mice following acute insulin from baseline (0.7 ± 0.1 to 1.2 ± 0.2, t test p &lt; 0.05). No change was observed in TGmut mice. As expected for this cardiac specific transgene, skeletal muscle was unaffected at baseline with a 33% to 38% increase (standard uptake values) for both genotypes following insulin stimulation. TGmut mice had a 47% reduction in systolic function with a fourfold increase in cardiac glycogen stores correlated with a 29% reduction in phospho-AMPK α levels. There was no difference in cardiac insulin receptor expression between mouse genotypes. These results demonstrate a correlation between insulin resistance and AMPK activity and provide the basis for the use of this animal model for assessing metabolic therapy in the treatment of affected PRKAG2 patients."	"Cardiac hypertrophy, accessory pathway, and conduction system disease in an adolescent: the PRKAG2 cardiac syndrome. NA"	"Identification and functional analysis of a novel PRKAG2 mutation responsible for Chinese PRKAG2 cardiac syndrome reveal an important role of non-CBS domains in regulating the AMPK pathway. PRKAG2 gene encodes the γ2 regulatory subunit of AMP-activated protein kinase (AMPK) that acts as a sensor of cellular energy status, and its germline mutations are responsible for PRKAG2 cardiac syndrome (PCS). The majority of missense mutations of cystathionine beta-synthase (CBS) domains found in PCS impair the binding activity of PRKAG2 to adenosine derivatives, and therefore lead to PRKAG2 function impairment and AMPK activity alteration, resulting in a familial syndrome of ventricular preexcitation, conduction defects, and cardiac hypertrophy. However, it is unclear about the PRKAG2 mutation in the non-CBS domain. Here, a Chinese family exhibiting the cardiac syndrome associated with a novel heterozygous PRKAG2 mutation (Gly100Ser) mapped to exon 3 encoding a non-CBS domain is described and the function of this novel mutation was investigated in vitro. The PRKAG2 G100S and R302Q mutations were constructed by a two-step polymerase chain reaction and then transfected into CCL13 cells by lentivirus vectors. Wild-type PRKAG2 gene transfection was used as a negative control. PRKAG2 expression was determined by Western blot. Immunofluorescence was used to localize the intracellular PRKAG2 proteins. MTT assay was performed to explore the effect of mutations on cell proliferation. Periodic acid-Schiff staining was used for detecting glycogen accumulation. AMPK concentration was measured with enzyme-linked immunosorbent assay. Our results showed neither intracellular localization of PRKAG2 nor cell growth was altered. In contrast, PRKAG2 protein expression levels were significantly reduced by this mutation. Furthermore, PRKAG2-mediated activity of AMPK was attenuated, resulting in glycogen metabolism dysregulation. These findings revealed that non-CBS domains of PRKAG2 were essential to the regulation of AMPK activity, similar to CBS. Our study ascribes a crucial regulatory role to the novel PRKAG2 G100S mutation, and reiterates that PCS occurs as a consequence of AMPK signaling abnormality caused by PRKAG2 gene mutations."	"Identification of a novel de novo mutation associated with PRKAG2 cardiac syndrome and early onset of heart failure. The major structure elements of the AMP-activated protein kinase (AMPK) are α, β, and γ sunbunits. Mutations in γ2 subunit (PRKAG2) have been associated with a cardiac syndrome including inherited ventricular preexcitation, conduction disorder and hypertrophy mimicking hypertrophic cardiomyopathy. The aim of the present study was to identify PRKAG2 syndrome among patients presenting with left ventricular hypertrophy (LVH). Nineteen unrelated subjects with unexplained LVH were clinically and genetically evaluated. Among 4 patients with bradycardia, manifestations of preexcitation were only found in a 19 year old male who also developed congestive heart failure 3 years later. Electrophysiological study of this case identified the coexistence of an AV accessory pathway and AV conduction defect. Histological analysis of his ventricular tissue isolated by biopsy confirmed excessive glycogen accumulation, prominent myofibrillar disarray and interstitial fibrosis. Direct sequencing of his DNA revealed a heterozygous mutation in PRKAG2 consisting of an A-to-G transition at nucleotide 1453 (c.1453A&gt;G), predicting a substitution of a glutamic acid for lysine at highly-conserved residue 485 (p.Lys485Glu, K485E), which was absent in his unaffected family members and in 215 healthy controls. To assess the role of K485 in the structure and function of the protein, computational modeling calculations and conservation analyses were performed. Electrostatic calculations indicate that K485 forms a salt bridge with the conserved D248 residue in the AMPK β subunit, which is critical for proper regulation of the enzyme, and the K485E mutant disrupts the connection. Our study identifies a novel de novo PRKAG2 mutation in a young, in which progression of the disease warrants close medical attention. It also underlines the importance of molecular screening of PRKAG2 gene in patients with unexplained LVH, ventricular preexcitation, conduction defect, and/or early onset of heart failure."	"Gene expression in skeletal muscle after an acute intravenous GH bolus in human subjects: identification of a mechanism regulating ANGPTL4. Growth hormone (GH) acutely stimulates lipolysis and fat oxidation, a process that operates postabsorptively and involves activation of the JAK-STAT pathway in the target tissue; no in vivo data exist regarding subsequent GH-regulated gene transcription. We obtained serum samples and muscle biopsies in human subjects before and 2 h after administration of a GH bolus. A significant (~75%) elevation in serum FFA levels was recorded post GH. Microarray identified 79 GH-regulated genes in muscle. With qRT-PCR, we then examined the expression of selected genes in the presence and absence of glucose-induced suppression of lipolysis. Four genes involved in the JAK-STAT5 signaling pathway were regulated by GH, including SOCS1-3 and CISH, in addition to three genes associated with insulin action: NFκB1A, PIK3C2B, and PRKAG2. The gene encoding ANGPTL4, a protein involved in lipolysis and suppression of LPL activity, exhibited the most pronounced upregulation (5.6-fold) after GH, which was abrogated by concomitant suppression of lipolysis. Therefore, the GH-induced stimulation of ANGPTL4 gene expression seems secondary to induction of lipolysis. This new concept implies that abundant supply of circulating FFA decreases the need for alternative triglyceride-derived FFA through distinct inhibition of LPL mediated by increased ANGPTL4 gene expression in human muscle."	"Identification of the genes chemosensitizing hepatocellular carcinoma cells to interferon-α/5-fluorouracil and their clinical significance. The incidence of advanced hepatocellular carcinoma (HCC) is increasing worldwide, and its prognosis is extremely poor. Interferon-alpha (IFN-α)/5-fluorouracil (5-FU) therapy is reportedly effective in some HCC patients. In the present study, to improve HCC prognosis, we identified the genes that are sensitizing to these agents. The screening strategy was dependent on the concentration of ribozymes that rendered HepG2 cells resistant to 5-FU by the repeated transfection of ribozymes into the cells. After 10 cycles of transfection, which was initiated by 5,902,875 sequences of a ribozyme library, three genes including protein kinase, adenosine monophosphate (AMP)-activated, gamma 2 non-catalytic subunit (PRKAG2); transforming growth factor-beta receptor II (TGFBR2); and exostosin 1 (EXT1) were identified as 5-FU-sensitizing genes. Adenovirus-mediated transfer of TGFBR2 and EXT1 enhanced IFN-α/5-FU-induced cytotoxicity as well as 5-FU, although the overexpression of these genes in the absence of IFN-α/5-FU did not induce cell death. This effect was also observed in a tumor xenograft model. The mechanisms of TGFBR2 and EXT1 include activation of the TGF-β signal and induction of endoplasmic reticulum stress, resulting in apoptosis. In HCC patients treated with IFN-α/5-FU therapy, the PRKAG2 mRNA level in HCC tissues was positively correlated with survival period, suggesting that PRKAG2 enhances the effect of IFN-α/5-FU and serves as a prognostic marker for IFN-α/5-FU therapy. In conclusion, we identified three genes that chemosensitize the effects of 5-FU and IFN-α/5-FU on HCC cells and demonstrated that PRKAG2 mRNA can serve as a prognostic marker for IFN-α/5-FU therapy."	"Association of AMP-activated protein kinase with risk and progression of non-Hodgkin lymphoma. Metabolic dysregulation has been identified as an &quot;emerging hallmark&quot; of cancer. The heterotrimeric AMP-activated protein kinase (AMPK) complex is a central regulator of the metabolic system and an important component of the mTOR pathway and the p53 axis, making it uniquely positioned to influence carcinogenesis through its canonical functions in the metabolic arena, as well as through more traditional mechanisms such as regulation of apoptosis and angiogenesis. We conducted a population-based genetic association study to examine the impact of mutations in AMPK subunit genes on risk of non-Hodgkin lymphoma (NHL). We also analyzed public microarray data to determine the expression of AMPK in NHL cells and to assess the influence of AMPK expression on overall survival in patients with NHL. We identified an AMPK subunit haplotype, which was significantly associated with NHL [OR, 5.44, 95% confidence interval (CI), 2.15-13.75] in women with no family history of cancer. Haplotypes in two subunits, PRKAA2 and PRKAG3, were nominally associated with the follicular and diffuse large B-cell lymphoma histologic subtypes, respectively, although these associations did not retain statistical significance after correction for multiple comparisons. Further, both of these subunits were differentially expressed (P &lt; 0.05) in one or more lymphoma cell type, and higher expression of two versions of the AMPK-β subunit was significantly associated with increased 5-year survival among patients with NHL (P = 0.001 and P = 0.021). These results provide evidence for AMPK involvement in the pathogenesis and progression of NHL. These findings may lead to a novel area of research into NHL treatment and chemoprevention."	"Genome-wide association analyses identify 18 new loci associated with serum urate concentrations. Elevated serum urate concentrations can cause gout, a prevalent and painful inflammatory arthritis. By combining data from &gt;140,000 individuals of European ancestry within the Global Urate Genetics Consortium (GUGC), we identified and replicated 28 genome-wide significant loci in association with serum urate concentrations (18 new regions in or near TRIM46, INHBB, SFMBT1, TMEM171, VEGFA, BAZ1B, PRKAG2, STC1, HNF4G, A1CF, ATXN2, UBE2Q2, IGF1R, NFAT5, MAF, HLF, ACVR1B-ACVRL1 and B3GNT4). Associations for many of the loci were of similar magnitude in individuals of non-European ancestry. We further characterized these loci for associations with gout, transcript expression and the fractional excretion of urate. Network analyses implicate the inhibins-activins signaling pathways and glucose metabolism in systemic urate control. New candidate genes for serum urate concentration highlight the importance of metabolic control of urate production and excretion, which may have implications for the treatment and prevention of gout."	"Germline variation in TP53 regulatory network genes associates with breast cancer survival and treatment outcome. Germline variation in the TP53 network genes PRKAG2, PPP2R2B, CCNG1, PIAS1 and YWHAQ was previously suggested to have an impact on drug response in vitro. Here, we investigated the effect on breast cancer survival of germline variation in these genes in 925 Finnish breast cancer patients and further analyzed five single nucleotide polymorphisms (SNPs) in PRKAG2 (rs1029946, rs4726050, rs6464153, rs7789699) and PPP2R2B (rs10477313) for 10-year survival in breast cancer patients, interaction with TP53 R72P and MDM2-SNP309, outcome after specific adjuvant therapy and correlation to tumor characteristics in 4,701 invasive cases from four data sets. We found evidence for carriers of PRKAG2-rs1029946 and PRKAG2-rs4726050 having improved survival in the pooled data (HR 0.53, 95% CI 0.3-0.9; p = 0.023 for homozygous carriers of the rare G-allele and HR 0.85, 95% CI 0.7-0.9; p = 0.049 for carriers of the rare G allele, respectively). PRKAG2-rs4726050 showed a significant interaction with MDM2-SNP309, with PRKAG2-rs4726050 rare G-allele having a dose-dependent effect for better breast cancer survival confined only to MDM2 SNP309 rare G-allele carriers (HR 0.45, 95% CI 0.2-0.7; p = 0.001). This interaction also emerged as an independent predictor of better survival (p = 0.047). PPP2R2B-rs10477313 rare A-allele was found to predict better survival (HR 0.82, 95% CI 0.6-0.9; p = 0.018), especially after hormonal therapy (HR 0.66, 95% CI 0.5-0.9; p = 0.048). These findings warrant further studies and suggest that genetic markers in TP53 network genes such as PRKAG2 and PPP2R2B might affect prognosis and treatment outcome in breast cancer patients."	"Diagnostic contribution of left ventricular endomyocardial biopsy in patients with clinical phenotype of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy phenotype is shared by heterogeneous entities. The purpose of the study was to evaluate the diagnostic role of left ventricular endomyocardial biopsy. One hundred fifty-one consecutive patients with unexplained left ventricular hypertrophy and normal/elevated QRS voltages or left bundle-branch block underwent left ventricular endomyocardial biopsy because of associated left ventricular dysfunction (37%), presence of sporadic form of left ventricular hypertrophy (32%), or patient desire for a definite diagnosis (31%). Biopsy samples were processed for histology and electron microscopy. Blood samples were collected for histologically oriented gene analysis of major sarcomeric (MYH7, MYBPC3, TNNT2, TPM1) and lysosomal (LAMP2, PRKAG2, α-galactosidase A) proteins. Histology showed changes consistent/compatible with hypertrophic cardiomyopathy in 124 patients: myocardial storage disease in 18 due to Fabry disease in 12 and glycogen-storage disease in 6 and myocardial infiltrative disease in 9 because of amyloidosis in 7 and sarcoidosis in 2. Gene analysis was positive in 67% of patients with hypertrophic cardiomyopathy (MYH7 mutation in 36, MYBP in 29, TNNT2 in 14, and TPM1 in 5) and in 83% of patients with lysosomal storage disease (α-galactosidase A mutation in 12, PRKAG2 in 2, and LAMP2 in 1). In patients with hypertrophic cardiomyopathy phenotype, left ventricular endomyocardial biopsy is safe and may recognize infiltrative/storage diseases in up to 18% of evolving and sporadic cases."	"Over-expressions of AMPK subunits in ovarian carcinomas with significant clinical implications. AMP-activated protein kinase (AMPK) has recently been considered as a potential target for cancer therapy. However, the expression status of various subunits of the heterotrimeric AMPK in human cancers is rarely reported. We decided to determine their expressions in ovarian carcinomas and their relationships with the disease. Expressions and locations of the AMPK-α1, -α2, -β1, -β2, -γ1 and -γ2 were detected by quantitative PCR (Q-PCR) and immunohistochemical staining (IHC). Their expression levels in ovarian tumors were compared with normal controls and also correlated with clinicopathological parameters. Except AMPK-α1, expressions of the other five AMPK subunits are significantly higher in ovarian carcinomas as determined by Q-PCR. Although IHC detection of AMPK-γ1 and -γ2 were not successful, over-expressions of AMPK-α2, -β1, and -β2 were further confirmed by IHC. Over-expressions of various AMPK subunits occurred independently and were mainly detected in the cytoplasm. Interestingly, AMPK-α2 and -β1 were also detected in the nucleus and cell membrane, respectively. Clinical correlation analyses indicate that expressions of different AMPK subunits are associated with different subtypes of carcinoma. High expression of AMPK-α2 is significantly associated with endometrioid carcinomas. On the other hand, high expressions of AMPK-β and -γ subunits are associated with mucinous and serous carcinomas, respectively. Furthermore, high expressions of AMPK-β1 and -γ2 are also associated with early and late stages of disease, respectively. Finally, patients with high expression of AMPK-α2 had better prognosis. Aberrant expressions of AMPK subunits may play important roles in ovarian carcinogenesis. Each AMPK subunit may have its own function other than just a component of the AMPK molecule. Correlations with clinical parameters suggest that expressions of AMPK subunits have different clinical implications in ovarian cancer development."	"Rare forms of preexcitation: a case study and brief overview of familial forms of preexcitation. NA"	"Discovery and Replication of Gene Influences on Brain Structure Using LASSO Regression. We implemented least absolute shrinkage and selection operator (LASSO) regression to evaluate gene effects in genome-wide association studies (GWAS) of brain images, using an MRI-derived temporal lobe volume measure from 729 subjects scanned as part of the Alzheimer's Disease Neuroimaging Initiative (ADNI). Sparse groups of SNPs in individual genes were selected by LASSO, which identifies efficient sets of variants influencing the data. These SNPs were considered jointly when assessing their association with neuroimaging measures. We discovered 22 genes that passed genome-wide significance for influencing temporal lobe volume. This was a substantially greater number of significant genes compared to those found with standard, univariate GWAS. These top genes are all expressed in the brain and include genes previously related to brain function or neuropsychiatric disorders such as MACROD2, SORCS2, GRIN2B, MAGI2, NPAS3, CLSTN2, GABRG3, NRXN3, PRKAG2, GAS7, RBFOX1, ADARB2, CHD4, and CDH13. The top genes we identified with this method also displayed significant and widespread post hoc effects on voxelwise, tensor-based morphometry (TBM) maps of the temporal lobes. The most significantly associated gene was an autism susceptibility gene known as MACROD2. We were able to successfully replicate the effect of the MACROD2 gene in an independent cohort of 564 young, Australian healthy adult twins and siblings scanned with MRI (mean age: 23.8 ± 2.2 SD years). Our approach powerfully complements univariate techniques in detecting influences of genes on the living brain."	"Transcript variant dictates Prkag2 cardiomyopathy? NA"	"Embryonic expression of AMPK γ subunits and the identification of a novel γ2 transcript variant in adult heart. AMP-activated protein kinase (AMPK), the key sensor and regulator of cellular energy status, is a heterotrimeric enzyme with multiple isoforms for each subunit (α1/α 2; β1/β2; γ1/γ2/γ3). Mutations in PRKAG2, which encodes the γ2 regulatory subunit, cause a cardiomyopathy characterized by hypertrophy and conduction abnormalities. The two reported PRKAG2 transcript variants, γ2-short and γ2-long (encoding 328 and 569 amino acids respectively), are both widely expressed in adult tissues. We show that both γ2 variants are also expressed during cardiogenesis in mouse embryos; expression of the γ3 isoform was also detected unexpectedly at this stage. As neither γ2 transcript is cardiac specific nor differentially expressed during embryogenesis, it is paradoxical that the disease is largely restricted to the heart. However, a recently annotated γ2 transcript, termed γ2-3B as transcription starts at an alternative exon 3b, has been identified; it is spliced in-frame to exon 4 thus generating a protein of 443 residues in mouse with the first 32 residues being unique. It is increasingly expressed in the developing mouse heart and quantitative PCR analysis established that γ2-3B is the major PRKAG2 transcript (~60%) in human heart. Antibody against the novel N-terminal sequence showed that γ2-3B is predominantly expressed in the heart where it is the most abundant γ2 protein. The abundance of γ2-3B and its tissue specificity indicate that γ2-3B may have non-redundant role in the heart and hence mediate the predominantly cardiac phenotype caused by PRKAG2 mutations."	"AMP-activated protein kinase phosphorylates cardiac troponin I and alters contractility of murine ventricular myocytes. AMP-activated protein kinase (AMPK) is an important regulator of energy balance and signaling in the heart. Mutations affecting the regulatory γ2 subunit have been shown to cause an essentially cardiac-restricted phenotype of hypertrophy and conduction disease, suggesting a specific role for this subunit in the heart. The γ isoforms are highly conserved at their C-termini but have unique N-terminal sequences, and we hypothesized that the N-terminus of γ2 may be involved in conferring substrate specificity or in determining intracellular localization. A yeast 2-hybrid screen of a human heart cDNA library using the N-terminal 273 residues of γ2 as bait identified cardiac troponin I (cTnI) as a putative interactor. In vitro studies showed that cTnI is a good AMPK substrate and that Ser150 is the principal residue phosphorylated. Furthermore, on AMPK activation during ischemia, Ser150 is phosphorylated in whole hearts. Using phosphomimics, measurements of actomyosin ATPase in vitro and force generation in demembraneated trabeculae showed that modification at Ser150 resulted in increased Ca(2+) sensitivity of contractile regulation. Treatment of cardiomyocytes with the AMPK activator 5-aminoimidazole-4-carboxamide ribonucleotide (AICAR) resulted in increased myocyte contractility without changing the amplitude of Ca(2+) transient and prolonged relaxation despite shortening the time constant of Ca(2+) transient decay (tau). Compound C prevented the effect of AICAR on myocyte function. These results suggest that AMPK activation increases myocyte contraction and prolongs relaxation by increasing myofilament Ca(2+) sensitivity. We conclude that cTnI phosphorylation by AMPK may represent a novel mechanism of regulation of cardiac function."	"Diet and colorectal cancer: analysis of a candidate pathway using SNPS, haplotypes, and multi-gene assessment. There is considerable biologic plausibility to the hypothesis that genetic variability in pathways involved in insulin signaling and energy homeostasis may modulate dietary risk associated with colorectal cancer. We utilized data from 2 population-based case-control studies of colon (n = 1,574 cases, 1,970 controls) and rectal (n = 791 cases, 999 controls) cancer to evaluate genetic variation in candidate SNPs identified from 9 genes in a candidate pathway: PDK1, RP6KA1, RPS6KA2, RPS6KB1, RPS6KB2, PTEN, FRAP1 (mTOR), TSC1, TSC2, Akt1, PIK3CA, and PRKAG2 with dietary intake of total energy, carbohydrates, fat, and fiber. We employed SNP, haplotype, and multiple-gene analysis to evaluate associations. PDK1 interacted with dietary fat for both colon and rectal cancer and with dietary carbohydrates for colon cancer. Statistically significant interaction with dietary carbohydrates and rectal cancer was detected by haplotype analysis of PDK1. Evaluation of dietary interactions with multiple genes in this candidate pathway showed several interactions with pairs of genes: Akt1 and PDK1, PDK1 and PTEN, PDK1 and TSC1, and PRKAG2 and PTEN. Analyses show that genetic variation influences risk of colorectal cancer associated with diet and illustrate the importance of evaluating dietary interactions beyond the level of single SNPs or haplotypes when a biologically relevant candidate pathway is examined."	"Association of eGFR-Related Loci Identified by GWAS with Incident CKD and ESRD. Family studies suggest a genetic component to the etiology of chronic kidney disease (CKD) and end stage renal disease (ESRD). Previously, we identified 16 loci for eGFR in genome-wide association studies, but the associations of these single nucleotide polymorphisms (SNPs) for incident CKD or ESRD are unknown. We thus investigated the association of these loci with incident CKD in 26,308 individuals of European ancestry free of CKD at baseline drawn from eight population-based cohorts followed for a median of 7.2 years (including 2,122 incident CKD cases defined as eGFR &lt;60ml/min/1.73m(2) at follow-up) and with ESRD in four case-control studies in subjects of European ancestry (3,775 cases, 4,577 controls). SNPs at 11 of the 16 loci (UMOD, PRKAG2, ANXA9, DAB2, SHROOM3, DACH1, STC1, SLC34A1, ALMS1/NAT8, UBE2Q2, and GCKR) were associated with incident CKD; p-values ranged from p = 4.1e-9 in UMOD to p = 0.03 in GCKR. After adjusting for baseline eGFR, six of these loci remained significantly associated with incident CKD (UMOD, PRKAG2, ANXA9, DAB2, DACH1, and STC1). SNPs in UMOD (OR = 0.92, p = 0.04) and GCKR (OR = 0.93, p = 0.03) were nominally associated with ESRD. In summary, the majority of eGFR-related loci are either associated or show a strong trend towards association with incident CKD, but have modest associations with ESRD in individuals of European descent. Additional work is required to characterize the association of genetic determinants of CKD and ESRD at different stages of disease progression."	"Genetic basis of end-stage hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by a heterogeneous presentation and clinical course. A minority of HCM patients develop end-stage HCM and require cardiac transplantation. The genetic basis of end-stage HCM is unknown but small series, isolated case reports and animal models have related the most aggressive heart failure course with the presence of multiple mutations. Twenty-six patients (age 40.4 ± 14.5 years; 46% male) transplanted for end-stage HCM underwent genetic screening of 10 HCM-related genes (MYH7, MYBPC3, TNNT2, TNNI3, TPM1, TNNC1, MYL3, MYL2, ACTC, LDB3). Additional genetic screening of LAMP2/PRKAG2 and mitochondrial DNA (mtDNA) was performed in four and three cases, respectively. Findings were correlated with clinical and histological features. Pathogenic mutations were identified in 15 patients (58%). Thirteen patients (50%) had mutations in sarcomeric genes (six in MYH7, three in MYBPC3, two in MYL2, one in TNNI3, and one in MYL3) and two patients had mutations in LAMP2. Only three patients (13%) had double mutations and all in homozygosis. Except for a more frequent family history of HCM, patients with mutations in sarcomeric genes did not show any clinical feature that distinguished them from patients without mutations in these genes. Evaluation of 44 relatives from 12 families identified 13 mutation carriers, 9 of whom had an overt HCM phenotype. Heart transplanted HCM has a heterogeneous genetic background where multiple mutations are uncommon. The clinical course of HCM is not primarily dependent on the presence of multiple sarcomeric mutations. Clinical and genetic evaluation of relatives does not support differential clinical management in HCM based on genetics."	"AMPK γ2 subunit gene PRKAG2 polymorphism associated with cognitive impairment as well as diabetes in old age. Metabolic and cognitive disorders are closely related. However, the molecular mechanism underlying this association is still elusive. Given the importance of energy metabolism in neuronal cells, AMP-activated protein kinase (AMPK), a master switch of energy metabolism, could be an independent factor affecting cognitive as well as metabolic functions. Therefore, we examined the relationship between the AMPK γ2 gene, the PRKAG2 -26C/T polymorphism and cognitive impairment or diabetes in 1609 subjects aged from 60 to 80. We performed multivariate logistic regression analyses with adjustment for age, gender, education, smoking, alcohol, depression, waist circumference, APOE e4, and stroke history. We found a significant association between the -26C/T polymorphism (CC vs. CT/TT) and cognitive impairment (OR, 1.6; 95% CI, 1.1-2.3). Moreover, this polymorphism (CC/CT vs. TT) was also related to the presence of diabetes (OR, 1.8; 95% CI, 1.2-2.8). Importantly, the relationship with cognitive impairment was still significant in non-diabetic individuals (OR, 1.6; 95% CI, 1.1-2.4). Further analyses with a subpopulation (n=611) revealed that CC homozygotes relative to T-allele carriers had significantly better performances in verbal memory and attentional tasks. These findings collectively support a hypothesis that AMPK has a role not only in metabolic functioning but also in cognitive functioning in humans. Extended longitudinal study with a larger number of samples is warranted."	"Chronic kidney disease: novel insights from genome-wide association studies. Chronic kidney disease (CKD) is common, affecting about 10% of the general population, and causing significant morbidity and mortality. Apart from the risk conferred by traditional cardiovascular risk factors, there is a strong genetic component. The method of a genome-wide association study (GWAS) is a powerful hypothesis-free approach to unravel this component by association analyses of CKD with several million genetic variants distributed across the genome. Since the publication of the first GWAS in 2005, this method has led to the discovery of novel loci for numerous human common diseases and phenotypes. Here, we review the recent successes of meta-analyses of GWAS on renal phenotypes. UMOD, SHROOM3, STC1, LASS2, GCKR, ALMS1, TFDP2, DAB2, SLC34A1, VEGFA, PRKAG2, PIP5K1B, ATXN2/SH2B3, DACH1, UBE2Q2, and SLC7A9 were uncovered as loci associated with estimated glomerular filtration rate (eGFR) and CKD, and CUBN as a locus for albuminuria in cross-sectional data of general population studies. However, less than 1.5% of the total variance of eGFR and albuminuria is explained by the identified variants, and the relative risk for CKD is modified by at most 20% per locus. In African Americans, much of the risk for end-stage nondiabetic kidney disease is explained by common variants in the MYH9/APOL1 locus, and in individuals of European descent, variants in HLA-DQA1 and PLA(2)R1 implicate most of the risk for idiopathic membranous nephropathy. In contrast, genetic findings in the analysis of diabetic nephropathy are inconsistent. Uncovering variants explaining more of the genetically determined variability of kidney function is hampered by the multifactorial nature of CKD and different mechanisms involved in progressive CKD stages, and by the challenges in elucidating the role of low-frequency variants. Meta-analyses with larger sample sizes and analyses of longitudinal renal phenotypes using higher-resolution genotyping data are required to uncover novel loci associated with severe renal phenotypes."	"Sarcomere protein gene mutations in patients with apical hypertrophic cardiomyopathy. Apical hypertrophic cardiomyopathy (HCM) is a unique form of HCM with left ventricular hypertrophy confined to the cardiac apex. The purpose of our study was to report genetic findings in a large series of unrelated patients with apical HCM and compare them with a nonapical HCM cohort. Overall, 429 patients with HCM underwent genetic testing. The panel included 8 sarcomere protein genes and 3 other genes (GLA, PRKAG2, and LAMP2). Sixty-one patients were diagnosed with apical HCM. A positive genotype was found in 8 patients with apical HCM. The genotype-positive and genotype-negative patients had similar maximal wall thicknesses (17.5 ± 3.5 mm versus 17.6 ± 3.3 mm, P = 0.71) and similar frequency of HCM-related events (2/8; 25% versus 13/53; 25%; P = 0.98). Thirteen percent with apical HCM and 40% with nonapical HCM had a positive genotype (P&lt;0.001) most often involving the MYBPC3 and MYH7 genes. In apical HCM, a positive genotype was found less frequently than in nonapical HCM, and it was most often involving MYBPC3 and MYH7 genes. Only 13% of patients with apical HCM were found to be genotype positive, indicating that genome-wide association studies and gene expression profiling are needed for better understanding of the genetic background of the disease. There was no significant genotype-phenotype correlation in our cohort with apical HCM."	"A case of familial hypertrophic cardiomyopathy emphasizes the importance of parallel screening of multiple disease genes. NA"	"Identification of differentially expressed genes in chickens differing in muscle glycogen content and meat quality. The processing ability of poultry meat is highly related to its ultimate pH, the latter being mainly determined by the amount of glycogen in the muscle at death. The genetic determinism of glycogen and related meat quality traits has been established in the chicken but the molecular mechanisms involved in variations in these traits remain to be fully described. In this study, Chicken Genome Arrays (20 K) were used to compare muscle gene expression profiles of chickens from Fat (F) and Lean (L) lines that exhibited high and low muscle glycogen content, respectively, and of individuals exhibiting extremely high (G+) or low (G-) muscle glycogen content originating from the F2 cross between the Fat and Lean lines. Real-time RT-PCR was subsequently performed to validate the differential expression of genes either selected from the microarray analysis or whose function in regulating glycogen metabolism was well known. Among the genes found to be expressed in chicken P. major muscle, 197 and 254 transcripts appeared to be differentially expressed on microarrays for the F vs. L and the G+ vs. G- comparisons, respectively. Some involved particularly in lipid and carbohydrate metabolism were selected for further validation studies by real-time RT-PCR. We confirmed that, as in mammals, the down-regulation of CEBPB and RGS2 coincides with a decrease in peripheral adiposity in the chicken, but these genes are also suggested to affect muscle glycogen turnover through their role in the cAMP-dependent signalling pathway. Several other genes were suggested to have roles in the regulation of glycogen storage in chicken muscle. PDK4 may act as a glycogen sensor in muscle, UGDH may compete for glycogen synthesis by using UDP-glucose for glucoronidation, and PRKAB1, PRKAG2, and PHKD may impact on glycogen turnover in muscle, through AMP-activated signalling pathways. This study is the first stage in the understanding of molecular mechanisms underlying variations in poultry meat quality. Large scale analyses are now required to validate the role of the genes identified and ultimately to find molecular markers that can be used for selection or to optimize rearing practices."	"Germ-line variation at a functional p53 binding site increases susceptibility to breast cancer development. Multiple lines of evidence suggest regulatory variation to play an important role in phenotypic evolution and disease development, but few regulatory polymorphisms have been characterized genetically and molecularly. Recent technological advances have made it possible to identify bona fide regulatory sequences experimentally on a genome-wide scale and opened the window for the biological interrogation of germ-line polymorphisms within these sequences. In this study, through a forward genetic analysis of bona fide p53 binding sites identified by a genome-wide chromatin immunoprecipitation and sequence analysis, we discovered a SNP (rs1860746) within the motif sequence of a p53 binding site where p53 can function as a regulator of transcription. We found that the minor allele (T) binds p53 poorly and has low transcriptional regulation activity as compared to the major allele (G). Significantly, the homozygosity of the minor allele was found to be associated with an increased risk of ER negative breast cancer (OR = 1.47, P = 0.038) from the analysis of five independent breast cancer samples of European origin consisting of 6,127 breast cancer patients and 5,197 controls. rs1860746 resides in the third intron of the PRKAG2 gene that encodes the γ subunit of the AMPK protein, a major sensor of metabolic stress and a modulator of p53 action. However, this gene does not appear to be regulated by p53 in lymphoblastoid cell lines nor in a cancer cell line. These results suggest that either the rs1860746 locus regulates another gene through distant interactions, or that this locus is in linkage disequilibrium with a second causal mutation. This study shows the feasibility of using genomic scale molecular data to uncover disease associated SNPs, but underscores the complexity of determining the function of regulatory variants in human populations. The online version of this article (doi:10.1007/s11568-010-9138-x) contains supplementary material, which is available to authorized users."	"[Recent research progress and updates of PRKAG2 cardiac syndrome]. NA"	"Clinical, electrocardiographic, and electrophysiologic characteristics of patients with a fasciculoventricular pathway: the role of PRKAG2 mutation. The ECG, clinical, and electrophysiologic profiles of patients with a fasciculoventricular pathway are well described. Fasciculoventricular pathways occurring in the setting of glycogen storage cardiomyopathy possess unique features. The purpose of this study was to compare the clinical, ECG, and electrophysiologic characteristics of patients with a fasciculoventricular pathway, with or without glycogen storage cardiomyopathy. Two groups of patients with a fasciculoventricular pathway were compared: group A consisted of 10 patients with the PRKAG2 mutation (Arg302gln), and group B consisted of 9 patients without the mutation. Thirty percent of group A patients had left ventricular hypertrophy, and none had an additional accessory pathway. Group B patients had no structural heart disease, and 33% had an additional accessory pathway. Group A patients had a slower resting heart rate (56 ± 7 vs 75 ± 10 bpm, P &lt;0.0001), a wider QRS complex (0.15 ± 0.01 vs 0.11 ± 0.02 ms, P = .0004), and a longer HV interval (34 ± 1 vs 25 ± 3 ms, P = .0003). During long-term follow-up, 50% of group A patients developed complete AV block versus none in group B. Eighty percent of group A patients developed atrial flutter and/or atrial fibrillation. No Group B patient had any arrhythmia during follow-up after successful ablation of additional arrhythmia circuits. No sustained ventricular arrhythmia was induced in any patient from either group. Patients with a fasciculoventricular pathway associated with the PRKAG2 mutation have distinct clinical, ECG, and electrophysiologic profiles and should be correctly identified because of their ominous long-term prognosis. Patients without the mutation have an excellent arrhythmia-free prognosis after treatment of additional circuits."	"Association study of energy homeostasis genes and antipsychotic-induced weight gain in patients with schizophrenia. Marked inter-individual variation has been observed with respect to the risk of weight gain and related metabolic disturbances during antipsychotic treatment, which in part could be explained by heritability. Such adverse effects have been proposed to occur through drug-induced mechanisms involving both the central nervous system and different peripheral tissues. We genotyped tagSNPs in several genes ( ADIPOQ, PRKAA1, PRKAA2, PRKAB1, PRKAG1, PRKAG2, PRKAG3, FTO and FABP3) that regulate lipid and energy homeostasis for their possible association to antipsychotic-induced weight gain. In a sample of 160 patients of German origin with schizophrenia who had been monitored with respect to body weight, we found marked association between antipsychotic-related changes in BMI and 6 markers in the adiponectin gene ( ADIPOQ). These findings support previous observations (in patients' serum) that adiponectin is involved in antipsychotic-mediated metabolic adverse effects."	"Genome-wide association studies in nephrology research. Kidney diseases constitute a serious public health burden worldwide, with substantial associated morbidity and mortality. The role of a genetic contribution to kidney disease is supported by heritability studies of kidney function measures, the presence of monogenic diseases with renal manifestations, and familial aggregation studies of complex kidney diseases, such as chronic kidney disease. Because complex diseases arise from the combination of multiple genetic and environmental risk factors, the identification of underlying genetic susceptibility variants has been challenging. Recently, genome-wide association studies have emerged as a method to conduct searches for such susceptibility variants. They have successfully identified genomic loci that contain variants associated with kidney diseases and measures of kidney function. For example, common variants in the UMOD and PRKAG2 genes are associated with risk of chronic kidney disease; variants in CLDN14 with risk of kidney stone disease; and variants in or near SHROOM3, STC1, LASS2, GCKR, NAT8/ALMS1, TFDP2, DAB2, SLC34A1, VEGFA, FAM122A/PIP5K1B, ATXN2, DACH1, UBE2Q2/FBXO22, and SLC7A9, with differences in glomerular filtration rate. The purpose of this review is to provide an overview of the genome-wide association study method as it relates to nephrology research and summarize recent findings in the field. Results from genome-wide association studies of renal phenotypes represent a first step toward improving our knowledge about underlying mechanisms of kidney function and disease and ultimately may aid in the improved treatment and prevention of kidney diseases."	"Common variants in 40 genes assessed for diabetes incidence and response to metformin and lifestyle intervention in the diabetes prevention program. Genome-wide association studies have begun to elucidate the genetic architecture of type 2 diabetes. We examined whether single nucleotide polymorphisms (SNPs) identified through targeted complementary approaches affect diabetes incidence in the at-risk population of the Diabetes Prevention Program (DPP) and whether they influence a response to preventive interventions. We selected SNPs identified by prior genome-wide association studies for type 2 diabetes and related traits, or capturing common variation in 40 candidate genes previously associated with type 2 diabetes, implicated in monogenic diabetes, encoding type 2 diabetes drug targets or drug-metabolizing/transporting enzymes, or involved in relevant physiological processes. We analyzed 1,590 SNPs for association with incident diabetes and their interaction with response to metformin or lifestyle interventions in 2,994 DPP participants. We controlled for multiple hypothesis testing by assessing false discovery rates. We replicated the association of variants in the metformin transporter gene SLC47A1 with metformin response and detected nominal interactions in the AMP kinase (AMPK) gene STK11, the AMPK subunit genes PRKAA1 and PRKAA2, and a missense SNP in SLC22A1, which encodes another metformin transporter. The most significant association with diabetes incidence occurred in the AMPK subunit gene PRKAG2 (hazard ratio 1.24, 95% CI 1.09-1.40, P = 7 × 10(-4)). Overall, there were nominal associations with diabetes incidence at 85 SNPs and nominal interactions with the metformin and lifestyle interventions at 91 and 69 mostly nonoverlapping SNPs, respectively. The lowest P values were consistent with experiment-wide 33% false discovery rates. We have identified potential genetic determinants of metformin response. These results merit confirmation in independent samples."	"Genetic variation in a metabolic signaling pathway and colon and rectal cancer risk: mTOR, PTEN, STK11, RPKAA1, PRKAG2, TSC1, TSC2, PI3K and Akt1. Serine/threonine protein kinase 11 (STK11) and phosphatase tensin homolog deleted on chromosome 10 (PTEN) link insulin sensitivity and metabolic signaling to inflammation and other hormonal factors and colorectal cancer. We evaluate genetic variation in nine genes in a candidate pathway as follows: STK11 (3 tagSNPs), PTEN (9 tagSNPs), FRAP1 (mTOR) (4 tagSNPs), TSC1 (14 tagSNPs), TSC2 (8 tagSNPs), Akt1 (2 tagSNPs), PIK3CA (7 tagSNPs), PRKAA1 (13 tagSNPs) and PRKAG2 (68 tagSNPs) in two population-based case-control studies of colon (n = 1574 cases, 1940 controls) and rectal (n = 91 cases, 999 controls) cancer. FRAP1, PRKAA1, PRKAG2 and TSC2 genes were significantly associated with colon cancer; risk estimates ranged from 1.21 [95% confidence interval (CI) 1.05-1.38] for FRAP1rs1057079 for the AG/GG genotype to 1.51 (95% CI 1.09-2.09) for PRKAG2rs9648723 CC genotype. PIK3CA, PRKAG2, PTEN, STK11 and TSC1 were significantly associated with rectal cancer overall. The strongest association was observed for PIK3CA rs7651265 GG genotype (odds ratio 2.32 95% CI 1.02-5.30). FRAP1 was associated with microsatellite instability (MSI)+ colon tumors; PRKAA1, CpG island methylator phenotype (CIMP)+ and MSI+ colon tumors; PRKAG2 and KRAS2 colon tumors; TSC1 and CIMP+ and MSI+ colon tumors; TSC2 with MSI+ colon tumors; PIK3CA with KRAS2-mutated rectal tumors; PRKAG2 (rs6964824) with KRAS2- and TP53-mutated rectal tumors and with PRKAG2 (rs412396 and rs4725431) with CIMP+ rectal tumors. These data suggest that genetic variation in a predefined candidate pathway for colorectal cancer contributes to both colon and rectal cancer risk. Associations appear to be strongest for CIMP+ and MSI+ tumors."	"SGLT1, a novel cardiac glucose transporter, mediates increased glucose uptake in PRKAG2 cardiomyopathy. Human mutations in the gene PRKAG2 encoding the gamma2 subunit of AMP-activated protein kinase (AMPK) cause a glycogen storage cardiomyopathy. Transgenic mice (TG(T400N)) with the human T400N mutation exhibit inappropriate activation of AMPK and consequent glycogen storage in the heart. Although increased glucose uptake and activation of glycogen synthesis have been documented in PRKAG2 cardiomyopathy, the mechanism of increased glucose uptake has been uncertain. Wildtype (WT), TG(T400N), and TG(alpha2DN) (carrying a dominant negative, kinase dead alpha2 catalytic subunit of AMPK) mice were studied at ages 2-8 weeks. Cardiac mRNA expression of sodium-dependent glucose transporter 1 (SGLT1), but not facilitated-diffusion glucose transporter 1 (GLUT1) or GLUT4, was increased approximately 5- to 7-fold in TG(T400N) mice relative to WT. SGLT1 protein was similarly increased at the cardiac myocyte sarcolemma in TG(T400N) mice. Phlorizin, a specific SGLT1 inhibitor, attenuated cardiac glucose uptake in TG(T400N) mice by approximately 40%, but not in WT mice. Chronic phlorizin treatment reduced cardiac glycogen content by approximately 25% in TG(T400N) mice. AICAR, an AMPK activator, increased cardiac SGLT1 mRNA expression approximately 3-fold in WT mice. Relative to TG(T400N) mice, double transgenic (TG(T400N)/TG(alpha2DN)) mice had decreased ( approximately 50%) cardiac glucose uptake and decreased (approximately 70%) cardiac SGLT1 expression. TG(T400N) hearts had increased binding activity of the transcription factors HNF-1 and Sp1 to the promoter of the gene encoding SGLT1. Our data suggest that upregulation of cardiac SGLT1 is responsible for increased cardiac glucose uptake in the TG(T400N) mouse. Increased AMPK activity leads to upregulation of SGLT1, which in turn mediates increased cardiac glucose uptake."	"Clinical and genetic investigation of pediatric cases of Wolff-Parkinson-White syndrome in Tunisian families. Wolff-Parkinson-White (WPW) syndrome is an autosomal-dominant heart disease characterized by an accessory pathway that arises from an aberrant conduction from the atria to the ventricles. Several mutations within the PRKAG2 gene were shown to be responsible for WPW. This gene encodes the γ2 regulatory subunit of adenosine monophosphate (AMP)-activated protein kinase, which functions as a metabolic sensor in cells, responding to cellular energy demands. This first study of WPW in a North African population comprises the clinical and genetic investigation of 3 Tunisian families, including 11 affected members. The involvement of the PRKAG2 and NKX2-5 genes was investigated. Mutation screening showed that with the exception of two already reported single-nucleotide polymorphisms, no mutations were detected within the coding region of PRKAG2 or in the NKX2-5 gene. This study provides further evidence of the genetic heterogeneity of WPW."	"New loci associated with kidney function and chronic kidney disease. Chronic kidney disease (CKD) is a significant public health problem, and recent genetic studies have identified common CKD susceptibility variants. The CKDGen consortium performed a meta-analysis of genome-wide association data in 67,093 individuals of European ancestry from 20 predominantly population-based studies in order to identify new susceptibility loci for reduced renal function as estimated by serum creatinine (eGFRcrea), serum cystatin c (eGFRcys) and CKD (eGFRcrea &lt; 60 ml/min/1.73 m(2); n = 5,807 individuals with CKD (cases)). Follow-up of the 23 new genome-wide-significant loci (P &lt; 5 x 10(-8)) in 22,982 replication samples identified 13 new loci affecting renal function and CKD (in or near LASS2, GCKR, ALMS1, TFDP2, DAB2, SLC34A1, VEGFA, PRKAG2, PIP5K1B, ATXN2, DACH1, UBE2Q2 and SLC7A9) and 7 loci suspected to affect creatinine production and secretion (CPS1, SLC22A2, TMEM60, WDR37, SLC6A13, WDR72 and BCAS3). These results further our understanding of the biologic mechanisms of kidney function by identifying loci that potentially influence nephrogenesis, podocyte function, angiogenesis, solute transport and metabolic functions of the kidney."	"High risk of sudden death associated with a PRKAG2-related familial Wolff-Parkinson-White syndrome. Familial appearance of Wolff-Parkinson-White (WPW) syndrome is rare and displays an autosomal dominant inheritance. Here we report a Chinese kindred of WPW syndrome whose unique clinical features consist of a high risk of sudden cardiac death due to atrial fibrillation, causing a rapid antegrade conduct over the accessory pathway. The mutation in the PRKAG2 gene was identified as responsible for the familial form of WPW syndrome."	"Distinct early signaling events resulting from the expression of the PRKAG2 R302Q mutant of AMPK contribute to increased myocardial glycogen. Humans with an R302Q mutation in AMPKgamma(2) (the PRKAG2 gene) develop a glycogen storage cardiomyopathy characterized by a familial form of Wolff-Parkinson-White syndrome and cardiac hypertrophy. This phenotype is recapitulated in transgenic mice with cardiomyocyte-restricted expression of AMPKgamma(2)R302Q. Although considerable information is known regarding the consequences of harboring the gamma(2)R302Q mutation, little is known about the early signaling events that contribute to the development of this cardiomyopathy. To distinguish the direct effects of gamma(2)R302Q expression from later compensatory alterations in signaling, we used transgenic mice expressing either the wild-type AMPKgamma(2) subunit (TGgamma(2)WT) or the mutated form (TGgamma(2)R302Q), in combination with acute expression of these proteins in neonatal rat cardiomyocytes. Although acute expression of gamma(2)R302Q induces AMPK activation and upregulation of glycogen synthase and AS160, with an associated increase in glycogen content, AMPK activity, glycogen synthase activity, and AS160 expression are reduced in hearts from TGgamma(2)R302Q mice, likely in response to the existing 37-fold increase in glycogen. Interestingly, gamma(2)WT expression has similar, yet less marked effects than gamma(2)R302Q expression in both cardiomyocytes and hearts. Using acute and chronic models of gamma(2)R302Q expression, we have differentiated the direct effects of the gamma(2)R302Q mutation from eventual compensatory modifications. Our data suggest that expression of gamma(2)R302Q induces AMPK activation and the eventual increase in glycogen content, a finding that is masked in hearts from transgenic adult mice. These findings are the first to highlight temporal differences in the effects of the PRKAG2 R302Q mutation on cardiac metabolic signaling events."	"Prevalence of sarcomere protein gene mutations in preadolescent children with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) in infants and children is thought to be commonly associated with metabolic disorders and malformation syndromes. Familial disease caused by mutations in cardiac sarcomere protein genes, which accounts for most cases in adolescents and adults, is believed to be a very rare cause of HCM. Seventy-nine consecutive patients diagnosed with HCM aged 13 years or younger underwent detailed clinical and genetic evaluation. The protein-coding sequences of 9 sarcomere protein genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, ACTC, and TNNC1), the genes encoding desmin (DES), and the gamma-2 subunit of AMP kinase (PRKAG2) were screened for mutations. A family history of HCM was present in 48 patients (60.8%). Forty-seven mutations (15 novel) were identified in 42 (53.2%) patients (5 patients had 2 mutations). The genes most commonly implicated were MYH7 (48.9%) and MYBPC3 (36.2%); mutations in TNNT2, ACTC, MYL3, and TNNI3 accounted for &lt;5% of cases each. A total of 16.7% patients with sarcomeric mutations were diagnosed before 1 year of age. There were no differences in clinical and echocardiographic features between those children with sarcomere protein gene mutations and those without or between patients with 2 mutations and those with 1 or no mutations. This study shows that familial disease is common among infants and children with HCM and that, in most cases, disease is caused by mutations in cardiac sarcomere protein genes. The major implication is that all first-degree relatives of any child diagnosed with HCM should be offered screening. Furthermore, the finding that one sixth of patients with sarcomeric disease were diagnosed in infancy suggests that current views on pathogenesis and natural history of familial HCM may have to be revised."	"Identification of two novel variants in PRKAG2 gene in Tunisian type 2 diabetic patients with family history of cardiovascular disease. We report the identification of two novel polymorphisms in the PRKAG2 gene and preliminary association study between 5'-UTR and exon 1 polymorphisms with susceptibility to type 2 diabetes. No association with type 2 diabetes was identified. However, one of these newly identified polymorphisms (p.Ser20Ile) is likely associated with cardiac disease."	"Activation of cardiac hypertrophic signaling pathways in a transgenic mouse with the human PRKAG2 Thr400Asn mutation. Human mutations in PRKAG2, the gene encoding the gamma2 subunit of AMP activated protein kinase (AMPK), cause a glycogen storage cardiomyopathy. In a transgenic mouse with cardiac specific expression of the Thr400Asn mutation in PRKAG2 (TG(T400N)), we previously reported initial cardiac hypertrophy (ages 2-8 weeks) followed by dilation and failure (ages 12-20 weeks). We sought to elucidate the molecular mechanisms of cardiac hypertrophy. TG(T400N) mice showed significantly increased cardiac mass/body mass ratios up to approximately 3-fold beginning at age 2 weeks. Cardiac expression of ANP and BNP were approximately 2- and approximately 5-fold higher, respectively, in TG(T400N) relative to wildtype (WT) mice at age 2 weeks. NF-kappaB activity and nuclear translocation of the p50 subunit were increased approximately 2- to 3-fold in TG(T400N) hearts relative to WT during the hypertrophic phase. Phosphorylated Akt and p70S6K were elevated approximately 2-fold as early as age 2 weeks. To ascertain whether these changes in TG(T400N) mice were a consequence of increased AMPK activity, we crossbred TG(T400N) with TG(alpha2DN) mice, which express a dominant negative, kinase dead mutant of the AMPK alpha2 catalytic subunit and have low myocardial AMPK activity. Genetic reversal of AMPK overactivity led to a reduction in hypertrophy, nuclear translocation of NF-kappaB, phosphorylated Akt, and p70S6K. We conclude that inappropriate activation of AMPK secondary to the T400N PRKAG2 mutation is associated with the early activation of NF-kappaB and Akt signaling pathway, which mediates cardiac hypertrophy."	"In vivo assessment of myocardial glucose uptake by positron emission tomography in adults with the PRKAG2 cardiac syndrome. The PRKAG2 cardiac syndrome is an inherited metabolic disease of the heart characterized by excessive myocardial glycogen deposition. The biochemical alterations associated with this condition remain controversial and have not previously been studied in affected humans. Positron emission tomography (PET) imaging was used to quantitatively assess myocardial glucose uptake (MGU) in 6 adult subjects with the PRKAG2 cardiac syndrome and 6 healthy, matched control subjects using the glucose analogue (18)F-Fluoro-2-deoxyglucose (FDG). Studies were performed under a euglycemic hyperinsulinemic clamp to ensure stable blood glucose levels. Rubidium-82 perfusion scans were performed to ensure that myocardial differences in myocardial glucose uptake were not the result of significant myocardial scar. In adult patients with phenotypic expression of disease, the median myocardial glucose uptake of the left ventricle was 0.18 mumol/min/g (interquartile range, 0.14, 0.24), compared with 0.40 mumol/min/g (interquartile range, 0.30 to 0.45) in the control group (P=0.01). The median blood glucose during FDG-PET imaging was 4.72 mmol/L (interquartile range, 4.32 to 4.97) in the PRKAG2 group and 4.38 mmol/L (interquartile range, 3.90, 4.79) in the control group (P=NS). The significant decrease observed in myocardial glucose uptake in affected patients occurred in the absence of significant myocardial scar. The PRKAG2 cardiac syndrome is associated with a reduction of glucose uptake in adult patients affected with this genetic condition. In this pilot study, (18)F-FDG-PET imaging is a useful tool to assess alterations in myocardial glucose transport in this inherited metabolic disease and provide insight into the biochemical pathophysiology of the diseased state."	"Nodoventricular accessory pathways in PRKAG2-dependent familial preexcitation syndrome reveal a disorder in cardiac development. Familial preexcitation syndrome is linked to mutations in PRKAG2. Previous studies on the R302Q mutation have provided evidence for a remarkably high proportion of otherwise rare accessory pathways with atrioventricular (AV) node-like conduction properties (Mahaim fibers). Yet, histopathologic proof is still lacking. We aimed to provide such proof. We retrospectively studied the medical records of 17 members of a 5-generation family. Five subjects died prematurely. The R302Q mutation was found in 8 living subjects and 2 deceased subjects (obligate carriers). Cardiac hypertrophy was found in 7 mutation carriers. ECGs compatible with preexcitation were found in 13 subjects and AV block at varying degrees in 5 subjects. All mutation carriers had electrocardiographic evidence of preexcitation, AV block, or both. Three individuals had high-grade AV block with preexcited conducted beats. Electrophysiological studies in 3 individuals revealed bypasses with AV node-like properties. Histopathologic studies of 1 suddenly deceased mutation carrier revealed concentric hypertrophy of the left ventricle with extensive myocardial disarray associated with slight interstitial fibrosis but no lysosomal-bound glycogen. Moreover, there were 3 small nodoventricular tracts (Mahaim fibers) passing through the central fibrous body and connecting the AV node with the working myocardium of the interventricular septum. Preexcitation associated with the R302Q mutation in PRKAG2 is associated with Mahaim fibers. These findings support the novel insight that PRKAG2 may be involved in the development of the cardiac conduction system."	"Severe hypertrophic cardiomyopathy in an infant with a novel PRKAG2 gene mutation: potential differences between infantile and adult onset presentation. Hypertrophic cardiomyopathy (HCM) is a heterogeneous disorder characterized by thickening of the heart and an increased incidence of sudden death. This study is aimed to determine the genetic cause of severe cardiac hypertrophy in an infant. An infant was assigned a diagnosis of ventricular preexcitation and severe biventricular HCM requiring septal myectomy. Genetic testing showed a novel heterozygous E506Q mutation of the adenosine monophosphate (AMP)-activated protein kinase (PRKAG2) gene. Endomyocardial biopsy samples did not demonstrate significant glycogen accumulation. Hypertrophic cardiomyopathy due to PRKAG2 mutations may have a degree of cardiac hypertrophy exceeding that expected from observed amounts of glycogen deposition."	"A rare connection: fasciculoventricular pathway in PRKAG2 disease. Mutations in the PRKAG2 gene that regulates the gamma 2 subunit of the AMP-dependent protein kinase A have been associated with the development of AV accessory pathways, cardiac hypertrophy, and conduction system abnormalities. The accessory pathways described in PRKAG2 disease have mostly been AV bypass tracts, as mutations in the PRKAG2 gene disrupt the normal AV junction development. There have also been a few reports of nodoventricular tracts associated with PRKAG2 mutations, as these tracts also involve the AV junction. We describe a case of a fasciculoventricular pathway with PRKAG2 mutation suggesting a more widespread involvement of the PRKAG2 gene in the development of the cardiac conduction system."	"Inherited cardiomyopathies mimicking arrhythmogenic right ventricular cardiomyopathy. Arrhythmogenic right ventricular cardiomyopathy (ARVC) represents an inherited cardiomyopathy that manifests clinically with malignant ventricular arrhythmias, sudden cardiac death, and less commonly heart failure. The condition is characterized by replacement of the myocardium, primarily of the right ventricle, with fibrofatty tissue. Extensive fibrofatty replacement of the myocardium has been previously thought to be pathognomonic of ARVC; however, this report details two other forms of inherited cardiomyopathy, namely hypertrophic cardiomyopathy (HCM) and the PRKAG2 cardiac syndrome, that were found to have significant fibrofatty myocardial replacement at pathologic examination. This report represents the first documentation of inherited cardiomyopathies mimicking ARVC and highlights the concept that other cardiac conditions can be associated with fibrofatty replacement of the myocardium."	"Molecular analysis of PRKAG2, LAMP2, and NKX2-5 genes in a cohort of 125 patients with accessory atrioventricular connection. NA"	"Expression quantitative trait loci and genetic regulatory network analysis reveals that Gabra2 is involved in stress responses in the mouse. Previous studies have revealed that the subunit alpha 2 (Gabra2) of the gamma-aminobutyric acid receptor plays a critical role in the stress response. However, little is known about the gentetic regulatory network for Gabra2 and the stress response. We combined gene expression microarray analysis and quantitative trait loci (QTL) mapping to characterize the genetic regulatory network for Gabra2 expression in the hippocampus of BXD recombinant inbred (RI) mice. Our analysis found that the expression level of Gabra2 exhibited much variation in the hippocampus across the BXD RI strains and between the parental strains, C57BL/6J, and DBA/2J. Expression QTL (eQTL) mapping showed three microarray probe sets of Gabra2 to have highly significant linkage likelihood ratio statistic (LRS) scores. Gene co-regulatory network analysis showed that 10 genes, including Gria3, Chka, Drd3, Homer1, Grik2, Odz4, Prkag2, Grm5, Gabrb1, and Nlgn1 are directly or indirectly associated with stress responses. Eleven genes were implicated as Gabra2 downstream genes through mapping joint modulation. The genetical genomics approach demonstrates the importance and the potential power of the eQTL studies in identifying genetic regulatory networks that contribute to complex traits, such as stress responses."	"20p12.3 microdeletion predisposes to Wolff-Parkinson-White syndrome with variable neurocognitive deficits. Wolff-Parkinson-White syndrome (WPW) is a bypass re-entrant tachycardia that results from an abnormal connection between the atria and ventricles. Mutations in PRKAG2 have been described in patients with familial WPW syndrome and hypertrophic cardiomyopathy. Based on the role of bone morphogenetic protein (BMP) signalling in the development of annulus fibrosus in mice, it has been proposed that BMP signalling through the type 1a receptor and other downstream components may play a role in pre-excitation. Using the array comparative genomic hybridisation (CGH), we identified five individuals with non-recurrent deletions of 20p12.3. Four of these individuals had WPW syndrome with variable dysmorphisms and neurocognitive delay. With the exception of one maternally inherited deletion, all occurred de novo, and the smallest of these harboured a single gene, BMP2. In two individuals with additional features of Alagille syndrome, deletion of both JAG1 and BMP2 were identified. Deletion of this region has not been described as a copy number variant in the Database of Genomic Variants and has not been identified in 13 321 individuals from other cohort examined by array CGH in our laboratory. Our findings demonstrate a novel genomic disorder characterised by deletion of BMP2 with variable cognitive deficits and dysmorphic features and show that individuals bearing microdeletions in 20p12.3 often present with WPW syndrome."	"Focal AF-ablation after pulmonary vein isolation in a patient with hypertrophic cardiomyopathy using cryothermal energy. A 42-year-old man, with a history of hypertrophic cardiomyopathy (HCM), an electrocardiogram pattern of ventricular preexcitation typical for mutations in the PRKAG2 gene, and highly symptomatic paroxysmal drug-resistant atrial fibrillation (AF), underwent successful circumferential isolation of his pulmonary veins using a 28-mm double lumen cryoballoon. Because AF was still inducible with programmed stimulation, fractionated signals were targeted in the left atrium with a conventional cryocatheter. Ablation of an endocardial focus with fractionated potentials at the base of the left appendage terminated the episode and rendered AF noninducible. No recurrence of AF was observed during a 10-month follow-up period."	"Unclassified polysaccharidosis of the heart and skeletal muscle in siblings. We describe a 15-year-old boy and his 19-year-old sister with progressive dilated cardiomyopathy and mild non-progressive proximal lower limb myopathy, secondary to the accumulation of amylopectin-like fibrillar glycogen, (polyglucosan) bodies, in heart and skeletal muscle. Evidence of idiopathic amylopectinosis or polysaccharidosis was demonstrated in heart and skeletal muscle tissue by histology, electron microscopy, biochemical, and genetic analysis. In both siblings the heart muscle stored PAS-positive, proteinase-k resistant and partly diastase resistant granulo-filamentous material, simulating polyglucosan bodies. Glycogen branching enzyme activity, and phosphofructokinase enzyme activity, measured in skeletal muscle tissue and explanted heart tissue were all within the normal limits, however glycogen content was elevated. Furthermore, GBE1, PRKAG2, desmin, alphabeta-crystallin, ZASP, myotilin, and LAMP-2 gene sequencing revealed no mutation, excluding e.g. glycogen storage disease type 4 and desmin-related myofibrillar cardiomyopathies. In both patients the diagnosis of an idiopathic polysaccharidosis with progressive dilated cardiomyopathy was made, requiring heart transplantation at age 13 and 14, respectively. Both patients belong to an autosomal recessive group of biochemically and genetically unclassified severe vacuolar glycogen storage disease of the heart and skeletal muscle. Up to now unidentified glycogen synthesis or glycogen degradation pathways are supposed to contribute to this idiopathic glycogen storage disease."	"A DNA resequencing array for pathogenic mutation detection in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a heterogeneous autosomal dominant cardiac disorder with a prevalence of 1 in 500. Over 450 different pathogenic mutations in at least 16 genes have been identified so far. The large allelic and genetic heterogeneity of HCM requires high-throughput, rapid, and affordable mutation detection technologies to efficiently integrate molecular screening into clinical practice. We developed a custom DNA resequencing array that contains both strands of all coding exons (160), splice-site junctions, and 5'UTR regions of 12 genes that have been clearly implicated in HCM (MYH7, MYBPC3, TNNT2, TPM1, TNNI3, MYL3, MYL2, CSRP3, PLN, ACTC, TNNC1, and PRKAG2). We analyzed a first series of 38 unrelated patients with HCM (17 familial, 21 sporadic). A total of 953,306 bp across the 38 patients were sequenced with a mean nucleotide call rate of 96.92% (range: 93-99.9%). Pathogenic mutations (single nucleotide substitutions) in MYH7, MYBPC3, TNNI3, and MYL3 (six known and six novel) were identified in 60% (10/17) of familial HCM and 10% of sporadic cases (2/21). The high-throughput HCM resequencing array is the most rapid and cost-effective tool for molecular testing of HCM to date; it thus has considerable potential in diagnostic and predictive testing, and prognostic stratification."	"Shared genetic causes of cardiac hypertrophy in children and adults. The childhood onset of idiopathic cardiac hypertrophy that occurs without a family history of cardiomyopathy can portend a poor prognosis. Despite morphologic similarities to genetic cardiomyopathies of adulthood, the contribution of genetics to childhood-onset hypertrophy is unknown. We assessed the family and medical histories of 84 children (63 boys and 21 girls) with idiopathic cardiac hypertrophy diagnosed before 15 years of age (mean [+/-SD] age, 6.99+/-6.12 years). We sequenced eight genes: MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3, MYL2, and ACTC. These genes encode sarcomere proteins that, when mutated, cause adult-onset cardiomyopathies. We also sequenced PRKAG2 and LAMP2, which encode metabolic proteins; mutations in these genes can cause early-onset ventricular hypertrophy. We identified mutations in 25 of 51 affected children without family histories of cardiomyopathy and in 21 of 33 affected children with familial cardiomyopathy. Among 11 of the 25 children with presumed sporadic disease, 4 carried new mutations and 7 inherited the mutations. Mutations occurred predominantly (in &gt;75% of the children) in MYH7 and MYBPC3; significantly more MYBPC3 missense mutations were detected than occur in adult-onset cardiomyopathy (P&lt;0.005). Neither hypertrophic severity nor contractile function correlated with familial or genetic status. Cardiac transplantation and sudden death were more prevalent among mutation-positive than among mutation-negative children; implantable cardioverter-defibrillators were more frequent (P=0.007) in children with family histories that were positive for the mutation. Genetic causes account for about half of presumed sporadic cases and nearly two thirds of familial cases of childhood-onset hypertrophy. Childhood-onset hypertrophy should prompt genetic analyses and family evaluations."	"Increased glycogen stores due to gamma-AMPK overexpression protects against ischemia and reperfusion damage. During ischemia, endogenous glycogen becomes the principal substrate for energy through glycolysis. Cardiac-specific manipulation of AMP-activated protein kinase (AMPK) by over-expression of its regulatory gamma-subunit induces glycogen storage. The aim of this study was to examine whether heart glycogen in transgenic mice overexpressing PRKAG2 may protect from ischemia and reperfusion injury. Isolated hearts were mounted on Langendorff apparatus and subjected to 30 min 'no-flow' or 'low-flow' ischemia and 60 min reperfusion. Hemodynamic measurements, tetrazolium staining, glycogen and lactate were used to monitor ischemia reperfusion damage. After low-flow ischemia, left ventricular pressure, coronary flow (CF) and the area of viable myocardium were 20-30% higher in PRKAG2 mice compared to controls. The basal levels of glycogen in PRKAG2 were 9.2 microg/g, markedly higher than in controls, but after low-flow ischemia they declined concomitantly with increased lactate washout in the coronary effluent. During no-flow ischemia there was neither protection nor consumption of glycogen in PRKAG2 hearts. Cardioprotection was also eliminated when PRKAG2 hearts were depleted of glycogen prior to low-flow ischemia. AMPK alpha Thr172 phosphorylation did not differ between PRKAG2 hearts and controls either during low-flow ischemia or reperfusion. We conclude that PRKAG2 hearts resist low-flow ischemia injury better than controls. Improved recovery was associated with increased consumption of glycogen, and was unrelated to AMPK activation. These findings demonstrate the potential of heart protection from ischemia and reperfusion injury through metabolic manipulation increasing the level and utilization of myocardial glycogen."	"Modulating phenotypic expression of the PRKAG2 cardiac syndrome. NA"	"Reversibility of PRKAG2 glycogen-storage cardiomyopathy and electrophysiological manifestations. PRKAG2 mutations cause glycogen-storage cardiomyopathy, ventricular preexcitation, and conduction system degeneration. A genetic approach that utilizes a binary inducible transgenic system was used to investigate the disease mechanism and to assess preventability and reversibility of disease features in a mouse model of glycogen-storage cardiomyopathy. Transgenic (Tg) mice expressing a human N488I PRKAG2 cDNA under control of the tetracycline-repressible alpha-myosin heavy chain promoter underwent echocardiography, ECG, and in vivo electrophysiology studies. Transgene suppression by tetracycline administration caused a reduction in cardiac glycogen content and was initiated either prenatally (Tg(OFF(E-8 weeks))) or at different time points during life (Tg(OFF(4-16 weeks)), Tg(OFF(8-20 weeks)), and Tg(OFF(&gt;20 weeks))). One group never received tetracycline, expressing transgene throughout life (Tg(ON)). Tg(ON) mice developed cardiac hypertrophy followed by dilatation, ventricular preexcitation involving multiple accessory pathways, and conduction system disease, including sinus and atrioventricular node dysfunction. Using an externally modifiable transgenic system, cardiomyopathy, cardiac dysfunction, and electrophysiological disorders were demonstrated to be reversible processes in PRKAG2 disease. Transgene suppression during early postnatal development prevented the development of accessory electrical pathways but not cardiomyopathy or conduction system degeneration. Taken together, these data provide insight into mechanisms of cardiac PRKAG2 disease and suggest that glycogen-storage cardiomyopathy can be modulated by lowering glycogen content in the heart."	"[A familial form of conduction defects associated with a PRKAG2 gene mutation]. Conduction defects are usually secondary to elective aging of the conduction pathways. However, some familial and genetic forms are now being described. Here we report a particular electrocardiographic pattern in four members of the same family over three generations, naturally leading to the suspicion of a hereditary origin. The ECG appearance is very specific and includes conduction defects (RBBB and occasionally left anterior hemiblock), short PR interval, pseudo appearance of atrial hypertrophy, and occasionally sinus dysfunction or supraventricular extrasystole. Gene analysis identified a R302Q mutation of the gamma2 subunit producing AMP protein kinase, coded by the gene PRKAG2. This is a wrong sense mutation present in the heterozygous state in each of those displaying the ECG anomalies, and is transmitted in an autosomal dominant fashion. The clinical picture here appears to constitute a clinical entity distinct from those previously described as being associated with mutations of the PRKAG2 gene, without any left ventricular hypertrophy or Wolff-Parkinson-White syndrome."	"[AMP-activated protein kinase: how a mistake in energy gauge causes glycogen storage]. Mutation in PRKAG2 encoding the gamma2 subunit of the AMP activated protein kinase (AMPK) cause human cardiomyopathy characterized by hypertrophy, Wolff-Parkinson-White syndrome, conduction system disease and glycogen storage in the myocardium. AMPK is a master metabolic regulator activated by hormones and energy deficient states. A heterotrimer enzyme comprising the catalytic alpha- and regulatory beta-and gamma-subunits was preserved through evolution and is ubiquitously expressed among mammalian tissues. AMPK is activated by AMP and inhibited by ATP that competes for binding to the regulatory sites on the gamma-subunit. Upstream kinases which phosphorylate Thr172 on the catalytic subunit activate the enzyme during exercise, ischemia, in response to sympathetic stimulation and hormones such as leptin and adiponectin. AMPK operates by phosphorylating its target proteins such as Acetyl CoA Carboxylase. Its classic functions include decreased fat synthesis in liver and adipose tissues, increased fatty acid oxidation, stimulating muscle glucose uptake and glycolysis. Altogether, these activities serve to restore the cellular and whole body energy balance. Human mutations which disrupt the nucleotide-binding affinity of the gamma2 subunit lead to loss of inhibition by ATP and inappropriate activate AMPK under resting conditions. As a result, myocytes recruit energy metabolites in excess of demand, causing storage of glycogen. Will AMPK ever emerge as a therapeutic target? Bench experiments suggest its potential in treating diabetes, ischemia and cell cycle regulation but much work is needed until these developments reach the bedside."	"[Same genotype and different phenotypes in a family with PRKAG2 gene mutation]. The gamma(2) subunit of AMP-activated protein kinase (PRKAG2) located in chromosome 7 plays an important role in regulating metabolic pathways, and patients with PRKAG2 mutations are associated with familial ventricular pre-excitation, hypertrophic cardiomyopathy and AV block. We observed the difference on the phenotypes in a large family with same PRKAG2 mutation. Direct DNA sequence was performed to screen the exons and exon-intron boundaries of PRKAG2 gene in a large family with 13 affected persons detected by electrocardiography (ECG). Sinus bradycardia, short PR interval, right bundle bunch block (RBBB), complete AV block, atrial flutter, atrial fibrillation and sudden cardiac death were identified in this family. Hypertrophic cardiomyopathy was found in one family member. Genetic analysis revealed a missense mutation (Arg302Glu) in all affected family members. This mutation was previous described in patients with Wolff-Parkinson-White (WPW) syndrome and hypertrophic cardiomyopathy. Besides WPW syndrome and hypertrophic cardiomyopathy, PRKAG2 mutations are responsible also for a diverse phenotypes. PRKAG2 gene mutation should be suspected with familial occurrence of RBBB, sinus bradycardia, and short PR interval."	"Fatal infantile cardiac glycogenosis with phosphorylase kinase deficiency and a mutation in the gamma2-subunit of AMP-activated protein kinase. A 10-wk-old infant girl with severe hypertrophy of the septal and atrial walls by cardiac ultrasound, developed progressive ventricular wall thickening and died of aspiration pneumonia at 5 mo of age. Postmortem examination revealed ventricular hypertrophy and massive atrial wall thickening due to glycogen accumulation. A skeletal muscle biopsy showed increased free glycogen and decreased activity of phosphorylase b kinase (PHK). The report of a pathogenic mutation (R531Q) in the gene (PRKAG2) encoding the gamma2 subunit of AMP-activated protein kinase (AMPK) in three infants with congenital hypertrophic cardiomyopathy, glycogen storage, and &quot;pseudo PHK deficiency&quot; prompted us to screen this gene in our patient. We found a novel (R384T) heterozygous mutation in PRKAG2, affecting an arginine residue in the N-terminal AMP-binding domain. Like R531Q, this mutation reduces the binding of AMP and ATP to the isolated nucleotide-binding domains, and prevents activation of the heterotrimer by metabolic stress in intact cells. The mutation was not found in DNA from the patient's father, the only available parent, and is likely to have arisen de novo. Our studies confirm that mutations in PRKAG2 can cause fatal infantile cardiomyopathy, often associated with apparent PHK deficiency."	"A PRKAG2 mutation causes biphasic changes in myocardial AMPK activity and does not protect against ischemia. Dominant mutations in the gamma2 regulatory subunit of AMP-activated protein kinase (AMPK), encoded by the gene PRKAG2, cause glycogen storage cardiomyopathy. We sought to elucidate the effect of the Thr400Asn (T400N) human mutation in a transgenic mouse (TGT400N) on AMPK activity, and its ability to protect the heart against ischemia-reperfusion injury. TGT400N hearts had markedly vacuolated myocytes, excessive accumulation of glycogen, hypertrophy, and preexcitation. Early activation of myocardial AMPK, followed by depression, and then recovery to wild-type levels was observed. AMPK activity correlated inversely with glycogen content. Partial rescue of the phenotype was observed when TGT400N mice were crossbred with TGalpha2DN mice, which overexpress a dominant negative mutant of the AMPK alpha2 catalytic subunit. TGT400N hearts had greater infarct sizes and apoptosis when subjected to ischemia-reperfusion. Increased AMPK activity is responsible for glycogen storage cardiomyopathy. Despite high glycogen content, the TGT400N heart is not protected against ischemia-reperfusion injury."	"[Inherited metabolic cardiomyopathies]. Hypertrophic cardiomyopathies have an estimated prevalence of 1/500. The analysis of the genes coding for the 10 most commonly involved sarcomeric proteins, fails to detect a mutation in about one third of cases. In some of these cases, cardiomyopathy can be attributed to a genetics storage disease with enlarged glycogen vacuolss (PRKAG2 deficiency, Danon disease, Pompe disease) and/or lysosomol vacuoles (Donon disease, Pompe disease, Fabry disease). These diseases all have in common a short PR interval. PRKAG2 deficiency is due to a dominant mutation of the gamma2 subunit of the cardiac AMP kinose. It leads to a storage cardiomyopathy which may be associated with sudden death in 10% of cases, due to ventricular arrhythmia or auriculoventricular blocks. Danon disease is an X-linked dominant inherited disease characterized by cardiomyopathy, squeletal myopathy and mental retardation. Cardiac transplantation is indicated in both affected men and women. In the infantile form of Pompe disease, enzyme replacement therapy with olglucosidase alpha shows efficacy on cardiac failure with a significant regression of ventricular hypertrophy on ECG, echocardiography and radiography"	"A familial form of conduction defect related to a mutation in the PRKAG2 gene. We describe four members of the same family with a very similar ECG pattern characterized by conduction defects (right bundle branch block, frequent left anterior hemiblock, atrial hypertrophy, and sometimes severe nodal dysfunction) contrasting with a short PR interval. Significant clinical events were reported only after 60 years of age. A mutation in the gamma2 subunit of the AMP activated protein kinase gene (PRKAG2) was identified in the four members of the family, with an autosomal dominant inheritance. The phenotype observed in this family appears different from that previously described as associated with this gene as neither left ventricular hypertrophy nor Wolff-Parkinson-White syndrome was present. These findings extend the phenotype associated with the PRKAG2 gene and emphasize an additional cause of familial conduction defect."	"Familial pseudo-Wolff-Parkinson-White syndrome. PRKAG2 plays a role in regulating metabolic pathways, and mutations in this gene are associated with familial ventricular preexcitation, hypertrophic cardiomyopathy, and atrioventricular conduction disturbances. Clinico-pathologic and experimental data suggest the hypothesis of a glycogen storage disease. To report a unique pattern of clinical features observed in individuals with a mutant PRKAG2 from two unrelated families. We studied two large families and found a total of 20 affected individuals showing a combination of sinus bradycardia, short PR interval, RBBB, intra and infrahisian conduction disturbances often requiring a pacemaker, and atrial tachyarrhythmias. Three individuals died suddenly at a young age. No patient had the Wolff-Parkinson-White (WPW) syndrome, and only two patients (10%) had myocardial hypertrophy. We performed screening of the exons and exon-intron boundaries of PRKAG2. Genetic analysis revealed a missense mutation (Arg302Gln) in the affected individuals from both families. This mutation had been described before and has been associated with the familial form of the WPW syndrome and with a high prevalence of left ventricular hypertrophy. PRKAG2 mutations are responsible for a diverse phenotype and not only the familial form of the WPW syndrome. Familial occurrence of right bundle branch block, sinus bradycardia, and short PR interval should raise suspicion of a mutant PRKAG2 gene."	"Single-gene mutations and increased left ventricular wall thickness in the community: the Framingham Heart Study. Mutations in sarcomere protein, PRKAG2, LAMP2, alpha-galactosidase A (GLA), and several mitochondrial genes can cause rare familial cardiomyopathies, but their contribution to increased left ventricular wall thickness (LVWT) in the community is unknown. We studied 1862 unrelated participants (52% women; age, 59+/-9 years) from the community-based Framingham Heart Study who had echocardiograms and provided DNA samples but did not have severe hypertension, aortic prosthesis, or significant aortic stenosis. Eight sarcomere protein genes, 3 storage cardiomyopathy-causing genes, and 27 mitochondrial genes were sequenced in unrelated individuals with increased LVWT (maximum LVWT &gt;13 mm). Fifty eligible participants (9 women) had unexplained increased LVWT. We detected 8 mutations in 9 individuals (2 women); 7 mutations in 5 sarcomere protein genes (MYH7, MYBPC3, TNNT2, TNNI3, MYL3), and 1 GLA mutation. In individuals with increased LVWT, participants with sarcomere protein and storage mutations were clinically indistinguishable from those without mutations. In a community-based cohort, about 3% of eligible participants had increased LVWT, of whom 18% had sarcomere protein or lipid storage gene mutations. Increased LVWT in the community is a very heterogeneous condition, which sometimes may arise from single-gene variants in one of a number of genes."	"Ventricular pre-excitation and cardiac hypertrophy mimicking hypertrophic cardiomyopathy in a Turkish family with a novel PRKAG2 mutation. Mutations in PRKAG2, the gene for the gamma2 regulatory subunit of AMP-activated protein kinase, cause cardiac hypertrophy and electrophysiological abnormalities. We identified a novel mutation in PRKAG2 causing familial ventricular pre-excitation and severe cardiac hypertrophy. We studied 30 members of one family and 120 healthy controls. Molecular analysis of PRKAG2 gene revealed one missense mutation in exon 14 which was confirmed by restriction enzyme digestion. We identified a G to A transition, resulting in a Glu506Lys substitution in the PRKAG2 gene in 8 of the family members, who all had cardiac hypertrophy and ventricular pre-excitation. High incidence of right ventricular hypertrophy and left ventricular outflow tract obstruction are other prominent features of this novel PRKAG2 mutation. Family members without mutation had no cardiac disease. The 120 unrelated healthy individuals did not show this mutation. Coexistence of unexplained ventricular hypertrophy and pre-excitation should prompt the diagnosis of PRKAG2 mutations and these patients should be referred for genetic analysis. The possible alteration of AMP-activated protein kinase activity due to genetic defects in PRKAG2 may serve as a template for developing more specific therapies in the treatment of patients with this mutation."	"Familial Wolff-Parkinson-White Syndrome: a disease of glycogen storage or ion channel dysfunction? Wolff-Parkinson-White (WPW) syndrome is the most common cause of ventricular pre-excitation, a condition where, due to defects in the conduction pathway, all or part of the ventricle is excited earlier than would normally be expected, often leading to ventricular fibrillation and sudden cardiac death. It was recently discovered that many of the underlying mutations responsible for the familial form of WPW syndrome are located in the gene encoding for the regulatory gamma(2)-subunit (PRKAG2) of the AMP-activated protein kinase. The cellular mechanisms for the observed arrhythmias are currently being studied and may involve glycogen storage with associated hypertrophy as well as alterations in the properties of cardiac ion channels such as voltage-gated sodium channel. It is the aim of this review to discuss our current knowledge of the cellular disturbances underlying the induction of arrhythmias in patients with PRKAG2 mutations."	"[Cardiomyopathies due to defective energy metabolism: morphological and functional features]. Cardiomyopathies are defined as diseases of the myocardium associated with cardiac dysfunction and are classified by morphological characteristics as hypertrophic (HCM), dilated (DCM) arrhithmogenic right ventricular (ARVC) and restrictive cardiomyopathy. These were once considered as specific diagnoses but there is now considerable evidence that many different gene mutations can cause these pathologies. In recent years, big emphasis has been given to the possibility that deregulation of cardiac metabolism may play a role in the mechanisms that lead to cardiac maladaptive remodelling. Cardiac energy metabolism is tightly controlled in mammalian organisms during development and in response to diverse dietary, physiologic, and pathologic conditions. The cardiac phenotype of many genetic diseases caused by mutations in proteins involved in mitochondrial energy production and/or homeostasis, underscores the importance of energetic pathway on cardiac function. For example, inborn errors in nuclear-encoded mitochondrial fatty acid oxidation (FAO) pathway enzymes and defects in fatty acid uptake are an important cause of childhood HCM and sudden death. Abnormalities in mitochondrial respiratory chain function, particularly those caused by mitochondrial DNA (mtDNA) mutations, are responsible for a heterogeneous group of clinical disorders, including isolated HCM. Mitochondrial cardiomyopathies (MCM) are characterized by an adverse clinical course with biventricular dilation and failure, even at a young age. Mutations in genes encoding the gamma2 subunit of AMP-activated protein kinase (PRKAG2), alpha-galactosidase A (GLA) and lysosome-associated membrane proteine-2 (LAMP2) can cause profound myocardial hypertrophy in association with electrophysiological defects. Unlike HCM due to sarcomere gene mutations, which is characterized by myofiber disarray and fibrosis, large cytosolic vacuoles characterize cardiomyopathy due to defect in energy metabolism. Ultrastructural analysis revealed massive mitochondrial proliferation in MCM and glycogen in complexes with protein and/or lipids in cardiomyopathy due to PRKAG2, GLA and LAMP2 mutations."	"A new mutation in PRKAG2 gene causing hypertrophic cardiomyopathy with conduction system disease and muscular glycogenosis. Mutations in the gene encoding the gamma2 subunit of AMP-activated protein kinase (PRKAG2) cause familial cardiac hypertrophy and electrophysiological abnormalities, with glycogen accumulation in the heart of affected patients. The authors describe a 38-year-old man with a new heterozygous PRKAG2 mutation (Ser548Pro) manifesting by hypertrophic cardiomyopathy, severe conduction system abnormalities, and skeletal muscle glycogenosis. Considering those results, PRKAG2 gene could be a potential candidate for unexplained muscle glycogenosis associated with cardiac abnormalities."	"Increased alpha2 subunit-associated AMPK activity and PRKAG2 cardiomyopathy. AMP-activated protein kinase (AMPK) regulatory gamma2 subunit (PRKAG2) mutations cause a human cardiomyopathy with cardiac hypertrophy, preexcitation, and glycogen deposition. PRKAG2 cardiomyopathy is recapitulated in transgenic mice overexpressing mutant PRKAG2 N488I in the heart (TGgamma2N488I). AMPK is a heterotrimeric kinase consisting of 1 catalytic (alpha) and 2 regulatory (beta and gamma) subunits. Two alpha-subunit isoforms, alpha1 and alpha2, are expressed in the heart; however, the contribution of AMPK utilization of these subunits to PRKAG2 cardiomyopathy is unknown. Mice overexpressing a dominant-negative alpha2 subunit of AMPK (TGalpha2DN) provide a tool for selectively inhibiting alpha2, but not alpha1, subunit-associated AMPK activity. In compound-heterozygous TGgamma2N488I/TGalpha2DN mice, AMPK activity associated with alpha2 but not alpha1 was decreased compared with TGgamma2N488I. The TGalpha2DN transgene reduced the disease phenotype of TGgamma2N488I, partially or completely normalizing the ECG, cardiac function, cardiac morphology, and exercise capacity in compound-heterozygous mice. TGgamma2N488I hearts had normal resting levels of high-energy phosphates and could improve cardiac performance during exercise. Cardiac glycogen content decreased in TGgamma2N488I mice after exercise stress, indicating availability of the stored glycogen for metabolic utilization. No differences in glycogen-metabolizing enzymes were observed. The PRKAG2 N488I mutation causes inappropriate AMPK activation, which leads to glycogen accumulation and conduction system disease. The accumulated glycogen can serve as an energy source, and the animals have contractile reserve during exercise. Because the dominant-negative alpha2 subunit attenuates the mutant PRKAG2 phenotype, AMPK complexes containing the alpha2 rather than the alpha1 subunit are the primary mediators of the effects of PRKAG2 mutations."	"Gene mutations in apical hypertrophic cardiomyopathy. Nonobstructive hypertrophy localized to the cardiac apex is an uncommon morphological variant of hypertrophic cardiomyopathy (HCM) that often is further distinguished by distinct giant negative T waves and a benign clinical course. The genetic relationship between HCM with typical hypertrophic morphology versus isolated apical hypertrophy is incompletely understood. Genetic cause was investigated in 15 probands with apical hypertrophy by DNA sequence analyses of 9 sarcomere protein genes and 3 other genes (GLA, PRKAG2, and LAMP2) implicated in idiopathic cardiac hypertrophy. Six sarcomere gene mutations were found in 7 samples; no samples contained mutations in GLA, PRKAG2, or LAMP2. Clinical evaluations demonstrated familial apical HCM in 4 probands, and in 3 probands disease-causing mutations were identified. Two families shared a cardiac actin Glu101Lys missense mutation; all members of both families with clinical manifestations of HCM (n=16) had apical hypertrophy. An essential light chain missense mutation Met149Val caused apical or midventricular segment HCM in another proband and 5 family members, but 6 other affected relatives had typical HCM morphologies. No other sarcomere gene mutations identified in the remaining probands caused apical HCM in other family members. Sarcomere protein gene mutations that cause apical hypertrophy rather than more common HCM morphologies reflect interactions among genetic etiology, background modifier genes, and/or hemodynamic factors. Only a limited number of sarcomere gene defects (eg, cardiac actin Glu101Lys) consistently produce apical HCM."	"Fatal congenital heart glycogenosis caused by a recurrent activating R531Q mutation in the gamma 2-subunit of AMP-activated protein kinase (PRKAG2), not by phosphorylase kinase deficiency. Fatal congenital nonlysosomal cardiac glycogenosis has been attributed to a subtype of phosphorylase kinase deficiency, but the underlying genes and mutations have not been identified. Analyzing four sporadic, unrelated patients, we found no mutations either in the eight genes encoding phosphorylase kinase subunits or in the two genes encoding the muscle and brain isoforms of glycogen phosphorylase. However, in three of five patients, we identified identical heterozygous R531Q missense mutations of the PRKAG2 gene, which encodes the gamma 2-subunit of AMP-activated protein kinase, a key regulator of energy balance. Biochemical characterization of the recombinant R531Q mutant protein showed &gt;100-fold reduction of binding affinities for the regulatory nucleotides AMP and ATP but an enhanced basal activity and increased phosphorylation of the alpha -subunit. Other PRKAG2 missense mutations were previously identified in patients with autosomal dominant hypertrophic cardiomyopathy with Wolff-Parkinson-White syndrome, characterized by juvenile-to-adult clinical onset, moderate cardiac glycogenosis, disturbed excitation conduction, risk of sudden cardiac death in midlife, and molecular perturbations that are similar to--but less severe than--those observed for the R531Q mutation. Thus, recurrent heterozygous R531Q missense mutations in PRKAG2 give rise to a massive nonlysosomal cardiac glycogenosis of fetal symptomatic onset and rapidly fatal course, constituting a genotypically and clinically distinct variant of hypertrophic cardiomyopathy with Wolff-Parkinson-White syndrome. R531Q and other PRKAG2 mutations enhance the basal activity and alpha -subunit phosphorylation of AMP-activated protein kinase, explaining the dominant nature of PRKAG2 disease mutations. Since not all cases displayed PRKAG2 mutations, fatal congenital nonlysosomal cardiac glycogenosis seems to be genetically heterogeneous. However, the existence of a heart-specific primary phosphorylase kinase deficiency is questionable, because no phosphorylase kinase mutations were found."	"Adenosine monophosphate-activated protein kinase disease mimicks hypertrophic cardiomyopathy and Wolff-Parkinson-White syndrome: natural history. The aim of this study was to investigate the clinical expression of adenosine monophosphate-activated protein kinase (AMPK) gene mutations (PRKAG2) in adenosine monophosphate (AMP) kinase disease based on 12 years follow-up of known mutation carriers and to define the prevalence of PRKAG2 mutations in hypertrophic cardiomyopathy (HCM). Adenosine monophosphate-activated protein kinase gene mutations cause HCM with Wolff-Parkinson-White syndrome and conduction disease. Clinical evaluation of 44 patients with known AMP kinase disease was analyzed. Mutation analysis of PRKAG2 was performed by fluorescent single-strand confirmation polymorphism analysis and direct sequencing of abnormal conformers in 200 patients with HCM. Only one additional mutation was identified. The mean age at clinical diagnosis in the 45 gene carriers was 24 years (median 20 years, range 9 to 55 years). Symptoms of palpitation, dypspnea, chest pain, or syncope were present in 31 (69%) gene carriers; 7 (15%) complained of myalgia and had clinical evidence of proximal myopathy. Skeletal muscle biopsy showed excess mitochondria and ragged red fibers with minimal glycogen accumulation. Disease penetrance defined by typical electrocardiogram abnormalities was 100% by age 18 years. Thirty-two of 41 adults (78%) had left ventricular hypertrophy (LVH) on echocardiography, and progressive LVH was documented during follow-up. Survival was 91% at a mean follow-up of 12.2 years. Progressive conduction disease required pacemaker implantation in 17 of 45 (38%) at a mean age of 38 years. The AMP kinase disease is uncommon in HCM and is characterized by progressive conduction disease and cardiac hypertrophy and includes extracardiac manifestations such as a skeletal myopathy, consistent with a systemic metabolic storage disease. Defects in adenosine triphosphate utilization or in specific cellular substrates, rather than mere passive deposition of amylopectin, may account for these clinical features."	"Glycogen storage diseases presenting as hypertrophic cardiomyopathy. Unexplained left ventricular hypertrophy often prompts the diagnosis of hypertrophic cardiomyopathy, a sarcomere-protein gene disorder. Because mutations in the gene for AMP-activated protein kinase gamma2 (PRKAG2) cause an accumulation of cardiac glycogen and left ventricular hypertrophy that mimics hypertrophic cardiomyopathy, we hypothesized that hypertrophic cardiomyopathy might also be clinically misdiagnosed in patients with other mutations in genes regulating glycogen metabolism. Genetic analyses performed in 75 consecutive unrelated patients with hypertrophic cardiomyopathy detected 40 sarcomere-protein mutations. In the remaining 35 patients, PRKAG2, lysosome-associated membrane protein 2 (LAMP2), alpha-galactosidase (GLA), and acid alpha-1,4-glucosidase (GAA) genes were studied. Gene defects causing Fabry's disease (GLA) and Pompe's disease (GAA) were not found, but two LAMP2 and one PRKAG2 mutations were identified in probands with prominent hypertrophy and electrophysiological abnormalities. These results prompted the study of two additional, independent series of patients. Genetic analyses of 20 subjects with massive hypertrophy (left ventricular wall thickness, &gt; or =30 mm) but without electrophysiological abnormalities revealed mutations in neither LAMP2 nor PRKAG2. Genetic analyses of 24 subjects with increased left ventricular wall thickness and electrocardiograms suggesting ventricular preexcitation revealed four LAMP2 and seven PRKAG2 mutations. Clinical features associated with defects in LAMP2 included male sex, severe hypertrophy, early onset (at 8 to 17 years of age), ventricular preexcitation, and asymptomatic elevations of two serum proteins. LAMP2 mutations typically cause multisystem glycogen-storage disease (Danon's disease) but can also present as a primary cardiomyopathy. The glycogen-storage cardiomyopathy produced by LAMP2 or PRKAG2 mutations resembles hypertrophic cardiomyopathy but is distinguished by electrophysiological abnormalities, particularly ventricular preexcitation."	"Transgenic mouse model of ventricular preexcitation and atrioventricular reentrant tachycardia induced by an AMP-activated protein kinase loss-of-function mutation responsible for Wolff-Parkinson-White syndrome. We identified a gene (PRKAG2) that encodes the gamma-2 regulatory subunit of AMP-activated protein kinase (AMPK) with a mutation (Arg302Gln) responsible for familial Wolff-Parkinson-White (WPW) syndrome. The human phenotype consists of ventricular preexcitation, conduction abnormalities, and cardiac hypertrophy. To elucidate the molecular basis for the phenotype, transgenic mice were generated by cardiac-restricted expression of the wild-type (TG(WT)) and mutant(TG(R302Q)) PRKAG2 gene with the cardiac-specific promoter alpha-myosin heavy chain. ECG recordings and intracardiac electrophysiology studies demonstrated the TG(R302Q) mice to have ventricular preexcitation (PR interval 10+/-2 versus 33+/-5 ms in TG(WT), P&lt;0.05) and a prolonged QRS (20+/-5 versus 10+/-1 ms in TG(WT), P&lt;0.05). A distinct AV accessory pathway was confirmed by electrical and pharmacological stimulation and substantiated by induction of orthodromic AV reentrant tachycardia. Enzymatic activity of AMPK in the mutant heart was significantly reduced (0.009+/-0.003 versus 0.025+/-0.001 nmol x min(-1) x g(-1) in nontransgenic mice), presumably owing to the mutation disrupting the AMP binding site. Excessive cardiac glycogen was observed. Hypertrophy was confirmed by increases in heart weight (296 versus 140 mg in TG(WT)) and ventricular wall thickness. We have developed a genetic animal model of WPW that expresses a mutation responsible for a familial form of WPW syndrome with a phenotype identical to that of the human, including induction of supraventricular arrhythmia. The defect is due to loss of function of AMPK. Elucidation of the molecular basis should provide insight into development of the cardiac conduction system and accessory pathways."	"Offbeat mice. This review summarizes the recent advances in understanding the development and function of the cardiac conduction system using genetically modified mice. Null mice for different cardiac connexins confirmed their suspected roles in cardiac conduction and, in addition, unraveled unexpected roles in cardiac morphogenesis. Genetically modified mice with LacZ-labeled conduction system cells are indispensable tools to the further understanding of the mechanisms governing the development of this system in the mammalian heart. Mouse models also addressed the role and contribution of specific signaling molecules, such as PRKAG2, Nkx2.5, ALK3, and Tbx5, in the development of the cardiac conduction system and the pathogenesis of cardiac dysfunction in humans."	"Assignment of two isoforms of the AMP-activated protein kinase gamma subunits, PRKAG1 and PRKAG2 to porcine chromosomes 5 and 18, respectively by radiation hybrid panel mapping. NA"	"Determination of PRKAG1 coding sequence and mapping of PRKAG1 and PRKAG2 relatively to porcine back fat thickness QTL. PRKAG1, PRKAG2 and PRKAG3 encode three isoforms of AMP-activated protein kinase gamma chain. A major effect on meat quality and a medium effect on back fat thickness of the RN- mutation in the PRKAG3 gene has previously been reported. We have now mapped PRKAG1 and PRKAG2 at expected locations on SSC5 and SSC18 by analysis of radiation hybrids (IMpRH panel). PRKAG2 has been mapped in a region where no quantitative trait loci (QTL) has been reported. PRKAG1 has been mapped close to (but probably outside) a region containing a QTL influencing fatness traits. We have determined the full coding sequence of PRKAG1. No missense mutation was identified when comparing the coding sequence of one Meishan and one Large White boars. Further work is, however, required to determine if a polymorphism in PRKAG1 could be responsible for a part of the variability observed on fatness traits."	"The bovine 5' AMPK gene family: mapping and single nucleotide polymorphism detection. The 5'-AMP-activated protein kinase (AMPK) family is an ancient stress response system whose primary function is regulation of cellular ATP. Activation of AMPK, which is instigated by environmental and nutritional stresses, initiates energy-conserving measures that protect the cell by inhibition and phosphorylation of key enzymes in energy-consuming biochemical pathways. The seven genes that comprise the bovine AMPK family were mapped in cattle by using a radiation hybrid panel. The seven genes mapped to six different cattle chromosomes, each with a LOD score greater than 10.0. PRKAA1 mapped to BTA 20, PRKAA2 and PRKAB2 to BTA 3, PRKAB1 to BTA 17, PRKAG1 to BTA 5, PRKAG2 to BTA 4, and PRKAG3 to BTA 2. Five of the seven genes mapped to regions expected from human/cattle comparative maps. PRKAB2 and PRKAG3, however, have not been mapped in humans. We predict these genes to be located on HSA 1 and 2, respectively. Additionally, one synonymous and one non-synonymous single nucleotide polymorphism (SNP) were detected in PRKAG3 in Bos taurus cattle. In an effort to determine ancestral origins, various herds of mixed breed cattle as well as other ruminant species were characterized for sequence variation in this region of PRKAG3. Owing to the physiological importance of this gene family, we believe that its individual genes are candidate genes for conferring resistance to diseases in cattle."	"Mutation analysis of AMP-activated protein kinase subunits in inherited cardiomyopathies: implications for kinase function and disease pathogenesis. Familial hypertrophic cardiomyopathy (HCM) has been defined as a disease of the cardiac sarcomere, although sarcomeric protein mutations are not found in one third of cases. We have recently shown that HCM associated with Wolff-Parkinson-White syndrome (WPW) and conduction disease can be caused by mutations in PRKAG2, which encodes the gamma2 subunit of AMPK, an enzyme central to cellular energy homeostasis. AMPK is a heterotrimer composed of one catalytic subunit (alpha) and two regulatory subunits (beta and gamma). Seven known genes encode the subunit isoforms (alpha1, alpha2, beta1, beta2, gamma1, gamma2, gamma3) and all are expressed in the heart. To better understand the role of AMPK mutations in HCM/WPW and other inherited cardiomyophathies, all 7 subunit genes were screened for mutations in a panel of probands: 3 with HCM/WPW, 4 with DCM/WPW, 38 with HCM alone (in whom contractile protein mutations had not been found) and 13 with DCM alone. In total, 73 amplimers were screened in the 58 probands and a number of polymorphisms, including non-conservative substitutions, were identified. However, no further disease-causing mutations were found in any AMPK subunit gene. These results indicate that HCM with WPW is a distinct, but genetically heterogeneous, condition caused by mutations in PRKAG2 and in an unknown gene or genes, not involved in the AMPK complex. Mutations in PRKAG2 appear to specifically cause HCM with WPW and conduction disease, and not other inherited cardiomyopathies. As deleterious alleles were not found in other AMPK subunit isoforms, the mutations affecting PRKAG2 are likely to confer a specific alteration of AMPK function of particular importance in the myocardium."	"Electrophysiologic characterization and postnatal development of ventricular pre-excitation in a mouse model of cardiac hypertrophy and Wolff-Parkinson-White syndrome. We sought to characterize an animal model of the Wolff-Parkinson-White (WPW) syndrome to help elucidate the mechanisms of accessory pathway formation. Patients with mutations in PRKAG2 manifest cardiac hypertrophy and ventricular pre-excitation; however, the mechanisms underlying the development and conduction of accessory pathways remain unknown. We created transgenic mice overexpressing either the Asn488Ile mutant (TG(N488I)) or wild-type (TG(WT)) human PRKAG2 complementary deoxyribonucleic acid under a cardiac-specific promoter. Both groups of transgenic mice underwent intracardiac electrophysiologic, electrocardiographic (ECG), and histologic analyses. On the ECG, approximately 50% of TG(N488I) mice displayed sinus bradycardia and features suggestive of pre-excitation, not seen in TG(WT) mice. The electrophysiologic studies revealed a distinct atrioventricular (AV) connection apart from the AV node, using programmed stimulation. In TG(N488I) mice with pre-excitation, procainamide blocked bypass tract conduction, whereas adenosine infusion caused AV block in TG(WT) mice but not TG(N488I) mice with pre-excitation. Serial ECGs in 16 mice pups revealed no differences at birth. After one week, two of eight TG(N488I) pups had ECG features of pre-excitation, increasing to seven of eight pups by week 4. By nine weeks, one TG(N488I) mouse with WPW syndrome lost this phenotype, whereas TG(WT) pups never developed pre-excitation. Histologic investigation revealed postnatal development of myocardial connections through the annulus fibrosum of the AV valves in young TG(N488I) but not TG(WT) mice. Transgenic mice overexpressing the Asn488Ile PRKAG2 mutation recapitulate an electrophysiologic phenotype similar to humans with this mutation. This includes procainamide-sensitive, adenosine-resistant accessory pathways induced in postnatal life that may rarely disappear later in life."	"Transgenic mice overexpressing mutant PRKAG2 define the cause of Wolff-Parkinson-White syndrome in glycogen storage cardiomyopathy. Mutations in the gamma2 subunit (PRKAG2) of AMP-activated protein kinase produce an unusual human cardiomyopathy characterized by ventricular hypertrophy and electrophysiological abnormalities: Wolff-Parkinson-White syndrome (WPW) and progressive degenerative conduction system disease. Pathological examinations of affected human hearts reveal vacuoles containing amylopectin, a glycogen-related substance. To elucidate the mechanism by which PRKAG2 mutations produce hypertrophy with electrophysiological abnormalities, we constructed transgenic mice overexpressing the PRKAG2 cDNA with or without a missense N488I human mutation. Transgenic mutant mice showed elevated AMP-activated protein kinase activity, accumulated large amounts of cardiac glycogen (30-fold above normal), developed dramatic left ventricular hypertrophy, and exhibited ventricular preexcitation and sinus node dysfunction. Electrophysiological testing demonstrated alternative atrioventricular conduction pathways consistent with WPW. Cardiac histopathology revealed that the annulus fibrosis, which normally insulates the ventricles from inappropriate excitation by the atria, was disrupted by glycogen-filled myocytes. These anomalous microscopic atrioventricular connections, rather than morphologically distinct bypass tracts, appeared to provide the anatomic substrate for ventricular preexcitation. Our data establish PRKAG2 mutations as a glycogen storage cardiomyopathy, provide an anatomic explanation for electrophysiological findings, and implicate disruption of the annulus fibrosis by glycogen-engorged myocytes as the cause of preexcitation in Pompe, Danon, and other glycogen storage diseases."	"Molecular genetic analysis of PRKAG2 in sporadic Wolff-Parkinson-White syndrome. Mutations in the PRKAG2 gene that encodes the gamma2 regulatory subunit of AMP-activated protein kinase have been shown to cause autosomal dominant Wolff-Parkinson-White (WPW) syndrome associated with hypertrophic cardiomyopathy. Prior studies focused on familial WPW syndrome associated with other heart disease such as hypertrophic cardiomyopathy. However, such disease accounts for only a small fraction of WPW cases, and the contribution of PRKAG2 mutations to sporadic isolated WPW syndrome is unknown. Subjects presented for clinical electrophysiologic evaluation of suspected WPW syndrome. WPW syndrome was diagnosed by ECG findings and/or by clinically indicated electrophysiologic study prior to enrollment. Echocardiography excluded hypertrophic cardiomyopathy. Denaturing high-performance liquid chromatography and automated sequencing were used to search for PRKAG2 mutations. Twenty-six patients without a family history of WPW syndrome were studied. No subject had cardiac hypertrophy, and only one patient had associated congenital heart disease. Accessory pathways were detected at diverse locations within the heart. Two polymorphisms in PRKAG2 were detected. [inv6+36insA] occurred in intron 6 in 4 WPW patients and [inv10+10delT] in intron 10 in 1 WPW patient. Both occurred in normal unrelated chromosomes. No PRKAG2 mutations were detected. This study shows that, unlike familial WPW syndrome, constitutional mutation of PRKAG2 is not commonly associated with sporadic WPW syndrome. Although polymorphisms within the PRKAG2 introns were identified, there is no evidence that these polymorphisms predispose to accessory pathway formation because their frequency is similarly high in both WPW patients and normal individuals. Further studies are warranted to identify the molecular basis of common sporadic WPW syndrome."	"Constitutively active adenosine monophosphate-activated protein kinase regulates voltage-gated sodium channels in ventricular myocytes. Some PRKAG2 mutations in the human gene encoding for the gamma-subunit of the adenosine monophosphate-activated protein kinase (AMPK) recently have been shown to cause rhythm disturbances (often fatal) in affected patients. Rat ventricular myocytes were infected with an adenoviral vector designed to express a truncated constitutively active mutant (T172D) of the AMPK alpha1-subunit (CA-AMPK). The human cardiac sodium channel hH1 and CA-AMPK were also coexpressed in a mammalian cell line. Patch-clamp techniques were used to measure myocyte action potentials and recombinant hH1 sodium channel currents. Our results demonstrate that action potential duration is significantly prolonged in myocytes expressing the CA-AMPK construct, leading to the production of potentially arrhythmogenic early afterdepolarizations. Recombinant sodium channel current analysis revealed that expression of CA-AMPK significantly slowed open-state inactivation and shifted the voltage-activation curve in a hyperpolarizing direction. We propose that sodium channels may be substrates for AMPK, possibly contributing to the observed arrhythmogenic activity in patients with some PRKAG2 mutations."	"Glycogen storage disease as a unifying mechanism of disease in the PRKAG2 cardiac syndrome. The AMP-activated protein kinase (AMPK) system was first discovered 30 years ago. Since that time, knowledge of the diverse physiological functions of AMPK has grown rapidly and continues to evolve. Most recently, the observation that spontaneously occurring genetic mutations in the gamma regulatory subunits of AMPK give rise to a skeletal and cardiac muscle disease emphasizes the critical importance of AMPK in the maintenance of health and disease. The cardiac phenotype observed in humans harbouring genetic mutations in the gamma 2 regulatory subunit (PRKAG2) of AMPK is consistent with abnormal glycogen accumulation in the heart. The perturbation of AMPK activity induced by genetic mutations in PRKAG2 and the resultant effect on muscle cell glucose metabolism may be relevant to the issue of targeting AMPK in drug development for insulin-resistant diabetes mellitus."	"PRKAG2 cardiac syndrome: familial ventricular preexcitation, conduction system disease, and cardiac hypertrophy. Genetic studies of families with inherited cardiac rhythm disturbances have established a molecular basis for ventricular arrhythmogenic disorders. Genes responsible for the long QT syndrome, Brugada syndrome, and polymorphic ventricular tachycardia have been identified. The elucidation of genetic defects responsible for more commonly occurring supraventricular rhythm disturbances have not been as forthcoming, with the exception of SCN5A mutations known to cause conduction system disease. Recently, we identified the genetic cause of a familial arrhythmogenic syndrome characterized by ventricular preexcitation and tachyarrhythmias (Wolff-Parkinson-White syndrome), progressive conduction system disease, and cardiac hypertrophy. The causative gene was shown to be the gamma-2 regulatory subunit (PRKAG2) of AMP-activated protein kinase. The role of AMP-activated protein kinase in the regulation of the glucose metabolic pathway in muscle suggests that genetic defects in PRKAG2 may induce a previously undescribed cardiac glycogenosis syndrome."	"Constitutively active AMP kinase mutations cause glycogen storage disease mimicking hypertrophic cardiomyopathy. Mutations in PRKAG2, the gene for the gamma 2 regulatory subunit of AMP-activated protein kinase, cause cardiac hypertrophy and electrophysiologic abnormalities, particularly preexcitation (Wolff-Parkinson-White syndrome) and atrioventricular conduction block. To understand the mechanisms by which PRKAG2 defects cause disease, we defined novel mutations, characterized the associated cardiac histopathology, and studied the consequences of introducing these mutations into the yeast homologue of PRKAG2, Snf4. Although the cardiac pathology caused by PRKAG2 mutations Arg302Gln, Thr400Asn, and Asn488Ile include myocyte enlargement and minimal interstitial fibrosis, these mutations were not associated with myocyte and myofibrillar disarray, the pathognomonic features of hypertrophic cardiomyopathy caused by sarcomere protein mutations. Instead PRKAG2 mutations caused pronounced vacuole formation within myocytes. Several lines of evidence indicated these vacuoles were filled with glycogen-associated granules. Analyses of the effects of human PRKAG2 mutations on Snf1/Snf4 kinase function demonstrated constitutive activity, which could foster glycogen accumulation. Taken together, our data indicate that PRKAG2 mutations do not cause hypertrophic cardiomyopathy but rather lead to a novel myocardial metabolic storage disease, in which hypertrophy, ventricular pre-excitation and conduction system defects coexist."	"Novel PRKAG2 mutation responsible for the genetic syndrome of ventricular preexcitation and conduction system disease with childhood onset and absence of cardiac hypertrophy. We recently reported a mutation in the PRKAG2 gene to be responsible for a familial syndrome of ventricular preexcitation, atrial fibrillation, conduction defects, and cardiac hypertrophy. We now report a novel mutation in PRKAG2 causing Wolff-Parkinson-White syndrome and conduction system disease with onset in childhood and the absence of cardiac hypertrophy. DNA was extracted from white blood cells obtained from family members. PRKAG2 exons were amplified by polymerase chain reaction and were screened for mutations by direct sequencing. The genomic organization of the PRKAG2 gene was determined using inter-exon long-range polymerase chain reaction for cDNA sequence not available in the genome database. A missense mutation, Arg531Gly, was identified in all affected individuals but was absent in 150 unrelated individuals. The PRKAG2 gene was determined to consist of 16 exons and is at least 280 kb in size. We identified a novel mutation (Arg531Gly) in the gamma-2 regulatory subunit (PRKAG2) of AMP-activated protein kinase (AMPK) to be responsible for a syndrome associated with ventricular preexcitation and early onset of atrial fibrillation and conduction disease. These observations confirm an important functional role of AMPK in the regulation of ion channels specific to cardiac tissue. The identification of the cardiac ion channel(s) serving as substrate for AMPK not only would provide insight into the molecular basis of atrial fibrillation and heart block but also may suggest targets for the development of more specific therapy for these common rhythm disturbances."	"Identification of a gene responsible for familial Wolff-Parkinson-White syndrome. The Wolff-Parkinson-White syndrome, with a prevalence in Western countries of 1.5 to 3.1 per 1000 persons, causes considerable morbidity and may cause sudden death. We identified two families in which the Wolff-Parkinson-White syndrome segregated as an autosomal dominant disorder. We studied 70 members of the two families (57 in Family 1 and 13 in Family 2). The subjects underwent 12-lead electrocardiography and two-dimensional echocardiography. Genotyping mapped the gene responsible to 7q34-q36, a locus previously identified to be responsible for an inherited form of Wolff-Parkinson-White syndrome. Candidate genes were identified, sequenced, and analyzed in normal and affected family members to identify the disease-causing gene. A total of 31 members (23 from Family 1 and 8 from Family 2) had the Wolff-Parkinson-White syndrome. Affected members of both families had ventricular preexcitation with conduction abnormalities and cardiac hypertrophy. The maximal combined two-point lod score was 9.82 at a distance of 5 cM from marker D7S636, which confirmed the linkage of the gene in both families to 7q34-q36. Haplotype analysis indicated that there were no alleles in common in the two families at this locus, suggesting that the two families do not have a common founder. We identified a missense mutation in the gene that encodes the gamma2 regulatory subunit of AMP-activated protein kinase (PRKAG2). The mutation results in the substitution of glutamine for arginine at residue 302 in the protein. The identification of this genetic defect has important implications for elucidating the pathogenesis of ventricular preexcitation. Further understanding of how this molecular defect leads to supraventricular arrhythmias could influence the development of specific therapies for other forms of supraventricular arrhythmia."	"Mutations in the gamma(2) subunit of AMP-activated protein kinase cause familial hypertrophic cardiomyopathy: evidence for the central role of energy compromise in disease pathogenesis. Familial hypertrophic cardiomyopathy (HCM) has been widely studied as a genetic model of cardiac hypertrophy and sudden cardiac death. HCM has been defined as a disease of the cardiac sarcomere, but mutations in the known contractile protein disease genes are not found in up to one-third of cases. Further, no consistent changes in contractile properties are shared by these mutant proteins, implying that an abnormality of force generation may not be the underlying mechanism of disease. Instead, all of the sarcomeric mutations appear to result in inefficient use of ATP, suggesting that an inability to maintain normal ATP levels may be the central abnormality. To test this hypothesis we have examined candidate genes involved in energy homeostasis in the heart. We now describe mutations in PRKAG2, encoding the gamma(2) subunit of AMP-activated protein kinase (AMPK), in two families with severe HCM and aberrant conduction from atria to ventricles in some affected individuals (pre-excitation or Wolff-Parkinson-White syndrome). The mutations, one missense and one in-frame single codon insertion, occur in highly conserved regions. Because AMPK provides a central sensing mechanism that protects cells from exhaustion of ATP supplies, we propose that these data substantiate energy compromise as a unifying pathogenic mechanism in all forms of HCM. This conclusion should radically redirect thinking about this disorder and also, by establishing energy depletion as a cause of myocardial dysfunction, should be relevant to the acquired forms of heart muscle disease that HCM models."	"Molecular cloning, genomic organization, and mapping of PRKAG2, a heart abundant gamma2 subunit of 5'-AMP-activated protein kinase, to human chromosome 7q36. 5'-AMP-activated protein kinase (AMPK) acts as a major regulator of cellular ATP levels and protects cells against stresses that cause ATP depletion. AMPK is a protein heterotrimer composed of a catalytic alpha subunit and two regulatory subunits, beta and gamma. In the present study, a homologue of the AMPK gamma1-subunit cDNA with an open reading frame encoding 328 amino acids was identified. The putative protein sequence is about 76% identical to the 331-amino-acid gamma1 subunit and also has four consecutive cystathionine-beta-synthase (CBS) domains, a characteristic structure of AMPK gamma subunits from various species. This cDNA (tentatively termed PRKAG2-b) is identical to a recently reported cDNA (tentatively termed PRKAG2-a) of human AMPK gamma subunits except in their 5'-end regions, suggesting that these two cDNAs are two different transcripts of the same gene. To determine the expression pattern of the gene, two probes, one from the 3'-UTR of PRKAG2-b and the other from the 5'- unique region of PRKAG2-a, were used to hybridize MTN membranes. Three transcripts (3.8, 3.0, and 2.4 kb) were observed when the first probe was used, whereas only 3.8- and 3.0-kb transcripts were seen when the second probe was used. Thus, the PRKAG2-b corresponded to the 2.4-kb transcript, which is ubiquitously expressed except in liver and thymus. The highest level was detected in heart, while abundant expression also existed in placenta and testis. The expression pattern of PRKAG2-b is completely different from those of PRKAG2-a and PRKAG1, whose expression patterns were also determined in the current study. The PRKAG2 gene was located to human chromosome 7q36 between markers D7S2439 and D7S2462 by radiation hybrid mapping. The genomic organization of PRKAG2-b was identified by comparing its cDNA sequence with two genomic sequences AC006358 and AC006966, which showed that PRKAG2-b spanned an approximately 80-kb region and was composed of 12 exons."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TNNI3"	"hypertrophic cardiomyopathy"	"Penetrance of Hypertrophic Cardiomyopathy in Sarcomere Protein Mutation Carriers. Predictive genetic screening of relatives of patients with hypertrophic cardiomyopathy (HCM) caused by sarcomere protein (SP) gene mutations is current standard of care, but there are few data on long-term outcomes in mutation carriers without HCM. The aim of this study was to determine the incidence of new HCM diagnosis in SP mutation carriers. This was a retrospective analysis of adult and pediatric SP mutation carriers identified during family screening who did not fulfill diagnostic criteria for HCM at first evaluation. The authors evaluated 285 individuals from 156 families (median age 14.2 years [interquartile range: 6.8 to 31.6 years], 141 [49.5%] male individuals); 145 (50.9%) underwent cardiac magnetic resonance (CMR). Frequency of causal genes was as follows: MYBPC3 n = 123 (43.2%), MYH7 n = 69 (24.2%), TNNI3 n = 39 (13.7%), TNNT2 n = 34 (11.9%), TPM1 n = 9 (3.2%), MYL2 n = 6 (2.1%), ACTC1 n = 1 (0.4%), multiple mutations n = 4 (1.4%). Median follow-up was 8.0 years (interquartile range: 4.0 to 13.3 years) and 86 (30.2%) patients developed HCM; 16 of 50 (32.0%) fulfilled diagnostic criteria on CMR but not echocardiography. Estimated HCM penetrance at 15 years of follow-up was 46% (95% confidence interval [CI]: 38% to 54%). In a multivariable model adjusted for age and stratified for CMR, independent predictors of HCM development were male sex (hazard ratio [HR]: 2.91; 95% CI: 1.82 to 4.65) and abnormal electrocardiogram (ECG) (HR: 4.02; 95% CI: 2.51 to 6.44); TNNI3 variants had the lowest risk (HR: 0.19; 95% CI: 0.07 to 0.55, compared to MYBPC3). Following a first negative screening, approximately 50% of SP mutation carriers develop HCM over 15 years of follow-up. Male sex and an abnormal ECG are associated with a higher risk of developing HCM. Regular CMR should be considered in long-term screening."	"Sustained Activation of AMPK Enhances Differentiation of Human iPSC-Derived Cardiomyocytes via Sirtuin Activation. Recent studies suggest that metabolic regulation may improve differentiation of cardiomyocytes derived from induced pluripotent stem cells (iPSCs). AMP-activated protein kinase (AMPK) is a master regulator of metabolic activities. We investigated whether AMPK participates in iPSC-derived cardiomyocyte differentiation. We observed that AMPK phosphorylation at Thr172 increased at day 9 but then decreased after day 11 of differentiation to cardiomyocytes. Inhibition of AMPK with compound C significantly reduced mRNA and protein expression of cardiac troponins TNNT2 and TNNI3. Moreover, sustained AMPK activation using AICAR from days 9 to 14 of differentiation increased mRNA and protein expression of both TNNT2 and TNNI3. AICAR decreased acetylation of histone 3 at Lys9 and 56 and histone 4 at Lys16 (known target sites for nuclear-localized sirtuins [SIRT1, SIRT6]), suggesting that AMPK activation enhances sirtuin activity. Sustained AMPK activation during days 9-14 of differentiation induces sirtuin-mediated histone deacetylation and may enhance cardiomyocyte differentiation from iPSCs."	"Genotype-Related Clinical Characteristics and Myocardial Fibrosis and their Association with Prognosis in Hypertrophic Cardiomyopathy. The spectrum of genetic variants and their clinical significance of Hypertrophic cardiomyopathy (HCM) have been poorly studied in Asian patients. The objectives of this study were to assess the spectrum of genetic variants and genotype-phenotype relationships within a Korean HCM population. Eighty-nine consecutive unrelated HCM patients were included. All patients underwent genotypic analysis for 23 HCM-associated genes. Clinical parameters including echocardiographic and cardiac magnetic resonance (CMR) parameters were evaluated. A composite of major adverse cardiac and cerebrovascular events was assessed. Genetic variants were detected in 55 of 89 subjects. Pathogenic variants or likely pathogenic variants were identified in 27 of HCM patients in MYBPC3, TNNI3, MYH7, and MYL7. Variants of uncertain significance were identified in 28 patients. There were significant differences in the presence of non-sustained ventricular tachycardia (p = 0.030) and myocardial fibrosis on CMR (p = 0.029) in the detected compared to the not-detected groups. Event-free survival was superior in the not-detected group (p = 0.006). Genetic variants in patients with HCM are relatively common and are associated with adverse clinical events and myocardial fibrosis on CMR. Genotypic analysis may add important information to clinical variables in the assessment of long-term risk for HCM patients."	"Risk Stratification in Hypertrophic Cardiomyopathy. Insights from Genetic Analysis and Cardiopulmonary Exercise Testing. The role of genetic testing over the clinical and functional variables, including data from the cardiopulmonary exercise test (CPET), in the hypertrophic cardiomyopathy (HCM) risk stratification remains unclear. A retrospective genotype-phenotype correlation was performed to analyze possible differences between patients with and without likely pathogenic/pathogenic (LP/P) variants. A total of 371 HCM patients were screened at least for the main sarcomeric genes MYBPC3 (myosin binding protein C), MYH7 (β-myosin heavy chain), TNNI3 (cardiac troponin I) and TNNT2 (cardiac troponin T): 203 patients had at least an LP/P variant, 23 patients had a unique variant of uncertain significance (VUS) and 145 did not show any LP/P variant or VUS. During a median 5.4 years follow-up, 51 and 14 patients developed heart failure (HF) and sudden cardiac death (SCD) or SCD-equivalents events, respectively. The LP/P variant was associated with a more aggressive HCM phenotype. However, left atrial diameter (LAd), circulatory power (peak oxygen uptake*peak systolic blood pressure, CP%) and ventilatory efficiency (C-index = 0.839) were the only independent predictors of HF whereas only LAd and CP% were predictors of the SCD end-point (C-index = 0.738). The present study reaffirms the pivotal role of the clinical variables and, particularly of those CPET-derived, in the HCM risk stratification."	"Differential contributions of sarcomere and mitochondria-related multigene variants to the endophenotype of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a multigenic disease that occurs due to various genetic modifiers. We investigated phenotype-based clinical and genetic characteristics of HCM patients using comprehensive genetic tests and rare variant association analysis. A comprehensive HCM-specific panel, consisting of 82 nuclear DNAs (nDNAs: 33 sarcomere-associated genes, 5 phenocopy genes, and 44 nuclear genes linked to mitochondrial cardiomyopathy) and 37 mitochondrial DNAs (mtDNAs), was analyzed. Rare variant analysis was performed to determine the association of specific genes with different phenotypes. Among the 212 patients, pathogenic variants in sarcomere-associated genes were more prevalent in non-apical HCM (41.4%, 46/111; P = 0.001) than apical HCM (20.8%, 21/101). Apical HCM exhibits mild phenotypes than non-apical HCM, and it showed fewer numbers of sarcomere mutations than non-apical HCM. Interestingly, inverted mutation frequency of TNNI3 (35%) and MYH7 (9%) was observed in apical HCM. In a rare variant analysis, MT-RNR2 positively correlated with apical HCM (OR: 1.37, P = 0.025). And, MYBPC3 (sarcomere gene) negatively contributed to apical HCM (OR: 0.54, P = 0.027). On the other hand, both pathogenic mutation (P &lt; 0.05) and rare variants in sarcomere-associated genes (OR: 2.78-3.47, P &lt; 0.05) were related to diastolic dysfunction and left atrium remodeling, which correlated with poor prognosis in HCM patients. Our results provide a clue towards explaining the difference between the prevalence and phenotype of apical HCM in Asian populations, and a foundation for genetics-based approaches that may enable individualized risk stratification for HCM patients."	"Meta-analysis of cardiomyopathy-associated variants in troponin genes identifies loci and intragenic hot spots that are associated with worse clinical outcomes. Troponin (TNN)-encoded cardiac troponins (Tn) are critical for sensing calcium and triggering myofilament contraction. TNN variants are associated with development of cardiomyopathy; however, recent advances in genetic analysis have identified rare population variants. It is unclear how certain variants are associated with disease while others are tolerated. To compare probands with TNNT2, TNNI3, and TNNC1 variants and utilize high-resolution variant comparison mapping of pathologic and rare population variants to identify loci associated with disease pathogenesis. Cardiomyopathy-associated TNN variants were identified in the literature and topology mapping conducted. Clinical features were compiled and compared. Rare population variants were obtained from the gnomAD database. Signal-to-noise (S:N) normalized pathologic variant frequency against population variant frequency. Abstract review of clinical phenotypes was applied to &quot;significant&quot; hot spots. Probands were compiled (N = 70 studies, 224 probands) as were rare variants (N = 125,748 exomes; 15,708 genomes, MAF &lt;0.001). TNNC1-positive probands demonstrated the youngest age of presentation (20.0 years; P = .016 vs TNNT2; P = .004 vs TNNI3) and the highest death, transplant, or ventricular fibrillation events (P = .093 vs TNNT2; P = .024 vs TNNI3; Kaplan Meir: P = .025). S:N analysis yielded hot spots of diagnostic significance within the tropomyosin-binding domains, α-helix 1, and the N-Terminus in TNNT2 with increased sudden cardiac death and ventricular fibrillation (P = .004). The inhibitory region and C-terminal region in TNNI3 exhibited increased restrictive cardiomyopathy (P =.008). HCM and RCM models tended to have increased calcium sensitivity and DCM decreased sensitivity (P &lt; .001). DCM and HCM studies typically showed no differences in Hill coefficient which was decreased in RCM models (P &lt; .001). CM models typically demonstrated no changes to Fmax (P = .239). TNNC1-positive probands had younger ages of diagnosis and poorer clinical outcomes. Mapping of TNN variants identified locations in TNNT2 and TNNI3 associated with heightened pathogenicity, RCM diagnosis, and increased risk of sudden death."	"Infantile restrictive cardiomyopathy: cTnI-R170G/W impair the interplay of sarcomeric proteins and the integrity of thin filaments. TNNI3 encoding cTnI, the inhibitory subunit of the troponin complex, is the main target for mutations leading to restrictive cardiomyopathy (RCM). Here we investigate two cTnI-R170G/W amino acid replacements, identified in infantile RCM patients, which are located in the regulatory C-terminus of cTnI. The C-terminus is thought to modulate the function of the inhibitory region of cTnI. Both cTnI-R170G/W strongly enhanced the Ca2+-sensitivity of skinned fibres, as is typical for RCM-mutations. Both mutants strongly enhanced the affinity of troponin (cTn) to tropomyosin compared to wildtype cTn, whereas binding to actin was either strengthened (R170G) or weakened (R170W). Furthermore, the stability of reconstituted thin filaments was reduced as revealed by electron microscopy. Filaments containing R170G/W appeared wavy and showed breaks. Decoration of filaments with myosin subfragment S1 was normal in the presence of R170W, but was irregular with R170G. Surprisingly, both mutants did not affect the Ca2+-dependent activation of reconstituted cardiac thin filaments. In the presence of the N-terminal fragment of cardiac myosin binding protein C (cMyBPC-C0C2) cooperativity of thin filament activation was increased only when the filaments contained wildtype cTn. No effect was observed in the presence of cTn containing R170G/W. cMyBPC-C0C2 significantly reduced binding of wildtype troponin to actin/tropomyosin, but not of both mutant cTn. Moreover, we found a direct troponin/cMyBPC-C0C2 interaction using microscale thermophoresis and identified cTnI and cTnT, but not cTnC as binding partners for cMyBPC-C0C2. Only cTn containing cTnI-R170G showed a reduced affinity towards cMyBPC-C0C2. Our results suggest that the RCM cTnI variants R170G/W impair the communication between thin and thick filament proteins and destabilize thin filaments."	"Neuropathologic Changes in Sudden Unexplained Death in Childhood. Sudden unexplained death in childhood (SUDC) affects children &gt;1-year-old whose cause of death remains unexplained following comprehensive case investigation and is often associated with hippocampal abnormalities. We prospectively performed systematic neuropathologic investigation in 20 SUDC cases, including (i) autopsy data and comprehensive ancillary testing, including molecular studies, (ii) ex vivo 3T MRI and extensive histologic brain samples, and (iii) blinded neuropathology review by 2 board-certified neuropathologists. There were 12 girls and 8 boys; median age at death was 33.3 months. Twelve had a history of febrile seizures, 85% died during apparent sleep and 80% in prone position. Molecular testing possibly explained 3 deaths and identified genetic mutations in TNNI3, RYR2, and multiple chromosomal aberrations. Hippocampal abnormalities most often affected the dentate gyrus (altered thickness, irregular configuration, and focal lack of granule cells), and had highest concordance between reviewers. Findings were identified with similar frequencies in cases with and without molecular findings. Number of seizures did not correlate with hippocampal findings. Hippocampal alterations were the most common finding on histological review but were also found in possibly explained deaths. The significance and specificity of hippocampal findings is unclear as they may result from seizures, contribute to seizure pathogenesis, or be an unrelated phenomenon."	"Potential digenic inheritance of familial hypertrophic cardiomyopathy identified by whole-exome sequencing. The aim of this study was to identify the genetic causes of patients with hypertrophic cardiomyopathy (HCM) within a family. Most of the previous studies found point mutations as the genetic causes for HCM, whole-gene deletion was rarely reported. Although, clinical genetic testing has been widely used for identifying variants in HCM patients, structural variations are understudied, partly owing to the inadequacy of the available methodology. In the present study, whole-exome sequencing (WES) and Sanger sequencing validation was used to identify the genetic causes in patients with familial HCM. A genomic deletion in Chromosome 19 containing the whole of troponin I3 gene (TNNI3), and the p.Ile736Thr variant in the myosin heavy chain 7 gene (MYH7) were identified in two patients with familial HCM by WES. The p.Ile736Thr variant is further validated by Sanger sequencing and is predicted as a pathogenic variant by in silico analysis. We added the notion that not only p.Ile736Thr variant of MYH7, but also TNNI3 deletion might potentially contribute to HCM pathogenesis. Our study also suggested WES was a powerful tool to identify the genetic variants causing HCM."	"[A Chinese pedigree with hypertrophic cardiomyopathy caused by rare homozygous mutation of TNNI3 gene p.Arg162Gln]. 肥厚型心肌病(HCM)是一种遗传性心肌病,TNNI3基因为其致病基因之一,相关病例我国少见报道。本研究报道中国汉族一HCM家系,先证者为TNNI3:p.Arg162Gln纯合突变,其发病早,心功能差,随访期间晕厥3次并植入永久起搏器进行治疗。先证者父母、弟弟及女儿均为杂合突变,目前均无明显临床症状。纯合突变致HCM较为罕见,该病例丰富了HCM的基因和临床表型谱。."	"β-Adrenergic stimuli and rotating suspension culture enhance conversion of human adipogenic mesenchymal stem cells into highly conductive cardiac progenitors. Clinical trials using human adipogenic mesenchymal stem cells (hAdMSCs) for the treatment of cardiac diseases have shown improvement in cardiac function and were proven safe. However, hAdMSCs do not convert efficiently into cardiomyocytes (CMs) or vasculature. Thus, reprogramming hAdMSCs into myocyte progenitors may fare better in future investigations. To reprogramme hAdMSCs into electrically conductive cardiac progenitor cells, we pioneered a three-step reprogramming strategy that uses proven MESP1/ETS2 transcription factors, β-adrenergic and hypoxic signalling induced in three-dimensional (3D) cardiospheres. In Stage 1, ETS2 and MESP1 activated NNKX2.5, TBX5, MEF2C, dHAND, and GATA4 during the conversion of hAdMSCs into cardiac progenitor cells. Next, in Stage 2, β2AR activation repositioned cardiac progenitors into de novo immature conductive cardiac cells, along with the appearance of RYR2, CAV2.1, CAV3.1, NAV1.5, SERCA2, and CX45 gene transcripts and displayed action potentials. In Stage 3, electrical conduction that was fostered by 3D cardiospheres formed in a Synthecon®, Inc. rotating bioreactor induced the appearance of hypoxic genes: HIF-1α/β, PCG 1α/β, and NOS2, which coincided with the robust activation of adult contractile genes including MLC2v, TNNT2, and TNNI3, ion channel genes, and the appearance of hyperpolarization-activated and cyclic nucleotide-gated channels (HCN1-4). Conduction velocities doubled to ~200 mm/s after hypoxia and doubled yet again after dissociation of the 3D cell clusters to ~400 mm/s. By comparison, normal conduction velocities within working ventricular myocytes in the whole heart range from 0.5 to 1 m/s. Epinephrine stimulation of stage 3 cardiac cells in patches resulted in an increase in amplitude of the electrical wave, indicative of conductive cardiac cells. Our efficient protocol that converted hAdMSCs into highly conductive cardiac progenitors demonstrated the potential utilization of stage 3 cells for tissue engineering applications for cardiac repair."	"Adult human cardiac stem cell supplementation effectively increases contractile function and maturation in human engineered cardiac tissues. Delivery of stem cells to the failing heart is a promising therapeutic strategy. However, the improvement in cardiac function in animal studies has not fully translated to humans. To help bridge the gap between species, we investigated the effects of adult human cardiac stem cells (hCSCs) on contractile function of human engineered cardiac tissues (hECTs) as a species-specific model of the human myocardium. Human induced pluripotent stem cell-derived cardiomyoctes (hCMs) were mixed with Collagen/Matrigel to fabricate control hECTs, with an experimental group of hCSC-supplemented hECT fabricated using a 9:1 ratio of hCM to hCSC. Functional testing was performed starting on culture day 6, under spontaneous conditions and also during electrical pacing from 0.25 to 1.0 Hz, measurements repeated at days 8 and 10. hECTs were then frozen and processed for gene analysis using a Nanostring assay with a cardiac targeted custom panel. The hCSC-supplemented hECTs displayed a twofold higher developed force vs. hCM-only controls by day 6, with approximately threefold higher developed stress and maximum rates of contraction and relaxation during pacing at 0.75 Hz. The spontaneous beat rate characteristics were similar between groups, and hCSC supplementation did not adversely impact beat rate variability. The increased contractility persisted through days 8 and 10, albeit with some decrease in the magnitude of the difference of the force by day 10, but with developed stress still significantly higher in hCSC-supplemented hECT; these findings were confirmed with multiple hCSC and hCM cell lines. The force-frequency relationship, while negative for both, control (- 0.687 Hz<sup>- 1</sup>; p = 0.013 vs. zero) and hCSC-supplemented (- 0.233 Hz<sup>- 1</sup>;p = 0.067 vs. zero) hECTs, showed a significant rectification in the regression slope in hCSC-supplemented hECT (p = 0.011 vs. control). Targeted gene exploration (59 genes) identified a total of 14 differentially expressed genes, with increases in the ratios of MYH7/MHY6, MYL2/MYL7, and TNNI3/TNNI1 in hCSC-supplemented hECT versus controls. For the first time, hCSC supplementation was shown to significantly improve human cardiac tissue contractility in vitro, without evidence of proarrhythmic effects, and was associated with increased expression of markers of cardiac maturation. These findings provide new insights about adult cardiac stem cells as contributors to functional improvement of human myocardium."	"Inhibition of mTOR Signaling Enhances Maturation of Cardiomyocytes Derived From Human-Induced Pluripotent Stem Cells via p53-Induced Quiescence. Current differentiation protocols to produce cardiomyocytes from human induced pluripotent stem cells (iPSCs) are capable of generating highly pure cardiomyocyte populations as determined by expression of cardiac troponin T. However, these cardiomyocytes remain immature, more closely resembling the fetal state, with a lower maximum contractile force, slower upstroke velocity, and immature mitochondrial function compared with adult cardiomyocytes. Immaturity of iPSC-derived cardiomyocytes may be a significant barrier to clinical translation of cardiomyocyte cell therapies for heart disease. During development, cardiomyocytes undergo a shift from a proliferative state in the fetus to a more mature but quiescent state after birth. The mechanistic target of rapamycin (mTOR)-signaling pathway plays a key role in nutrient sensing and growth. We hypothesized that transient inhibition of the mTOR-signaling pathway could lead cardiomyocytes to a quiescent state and enhance cardiomyocyte maturation. Cardiomyocytes were differentiated from 3 human iPSC lines using small molecules to modulate the Wnt pathway. Torin1 (0 to 200 nmol/L) was used to inhibit the mTOR pathway at various time points. We quantified contractile, metabolic, and electrophysiological properties of matured iPSC-derived cardiomyocytes. We utilized the small molecule inhibitor, pifithrin-α, to inhibit p53 signaling, and nutlin-3a, a small molecule inhibitor of MDM2 (mouse double minute 2 homolog) to upregulate and increase activation of p53. Torin1 (200 nmol/L) increased the percentage of quiescent cells (G0 phase) from 24% to 48% compared with vehicle control (P&lt;0.05). Torin1 significantly increased expression of selected sarcomere proteins (including TNNI3 [troponin I, cardiac muscle]) and ion channels (including Kir2.1) in a dose-dependent manner when Torin1 was initiated after onset of cardiomyocyte beating. Torin1-treated cells had an increased relative maximum force of contraction, increased maximum oxygen consumption rate, decreased peak rise time, and increased downstroke velocity. Torin1 treatment increased protein expression of p53, and these effects were inhibited by pifithrin-α. In contrast, nutlin-3a independently upregulated p53, led to an increase in TNNI3 expression and worked synergistically with Torin1 to further increase expression of both p53 and TNNI3. Transient treatment of human iPSC-derived cardiomyocytes with Torin1 shifts cells to a quiescent state and enhances cardiomyocyte maturity."	"Targeted panel sequencing in pediatric primary cardiomyopathy supports a critical role of TNNI3. The underlying genetic mechanisms and early pathological events of children with primary cardiomyopathy (CMP) are insufficiently characterized. In this study, we aimed to characterize the mutational spectrum of primary CMP in a large cohort of patients ≤18 years referred to a tertiary center. Eighty unrelated index patients with pediatric primary CMP underwent genetic testing with a panel-based next-generation sequencing approach of 89 genes. At least one pathogenic or probably pathogenic variant was identified in 30/80 (38%) index patients. In all CMP subgroups, patients carried most frequently variants of interest in sarcomere genes suggesting them as a major contributor in pediatric primary CMP. In MYH7, MYBPC3, and TNNI3, we identified 18 pathogenic/probably pathogenic variants (MYH7 n = 7, MYBPC3 n = 6, TNNI3 n = 5, including one homozygous (TNNI3 c.24+2T&gt;A) truncating variant. Protein and transcript level analysis on heart biopsies from individuals with homozygous mutation of TNNI3 revealed that the TNNI3 protein is absent and associated with upregulation of the fetal isoform TNNI1. The present study further supports the clinical importance of sarcomeric mutation-not only in adult-but also in pediatric primary CMP. TNNI3 is the third most important disease gene in this cohort and complete loss of TNNI3 leads to severe pediatric CMP."	"Role of somatic cell sources in the maturation degree of human induced pluripotent stem cell-derived cardiomyocytes. Induced pluripotent stem cell (iPSC)-derived cardiomyocytes (iPSC-CMs) are a unique source of human cardiomyocytes for cardiac disease modeling. Incomplete functional maturation remains a major limitation, however. One of the determinants of iPSC-CM maturation is somatic cell origin. We therefore compared iPSC-CMs derived from different somatic cell sources. Cardiac-derived mesenchymal progenitor cells (CPCs), bone marrow-derived mesenchymal stem cells (BMCs), and human dermal fibroblasts (HDFs) from same patients were reprogrammed into iPSCs and differentiated into iPSC-CMs. Expression of cardiac-specific genes, caffeine-responsive cells, and electrophysiological properties of differentiated cells were analyzed. To assess the contribution of epigenetic memory toward differences in gene expression observed during cardiac differentiation, DNA methylation patterns were determined in the early mesodermal cardiac promoter NKX2-5 and KCNQ1, which encodes for the pore-forming α-subunit of the slow component of delayed-rectifier potassium current (IKs). Cardiac genes (MYH6, TNNI3, KCNQ1, KCNE1) were upregulated in CPC-vs. BMC- and HDF-iPSC-CMs. At early differentiation stages, CPC-iPSC-CMs displayed higher numbers of caffeine-responsive cells than BMC- and HDF-iPSC-CMs. The hERG1 (KV11.1) blocker, E4031, followed by the IKs blocker, JNJ303, increased extracellular field potential duration in CPC-iPSC-CMs to a greater extent than in BMC- and HDF-iPSC-CMs. The promoter region of NKX2-5 was more highly methylated in BMCs and HDFs compared to CPCs, and to a lesser extent in BMC-iPSCs compared to CPC-iPSCs. These results suggest that human iPSCs from cardiac somatic cell sources may display enhanced capacity toward cardiac re-differentiation compared to non-cardiac cell sources, and that epigenetic mechanisms may play a role in this regard."	"Multi-modal and multiscale imaging approaches reveal novel cardiovascular pathophysiology in Drosophila melanogaster. Establishing connections between changes in linear DNA sequences and complex downstream mesoscopic pathology remains a major challenge in biology. Herein, we report a novel, multi-modal and multiscale imaging approach for comprehensive assessment of cardiovascular physiology in Drosophila melanogaster We employed high-speed angiography, optical coherence tomography (OCT) and confocal microscopy to reveal functional and structural abnormalities in the hdp<sup>2</sup> mutant, pre-pupal heart tube and aorta relative to controls. hdp<sup>2</sup> harbor a mutation in wupA, which encodes an ortholog of human troponin I (TNNI3). TNNI3 variants frequently engender cardiomyopathy. We demonstrate that the hdp<sup>2</sup> aortic and cardiac muscle walls are disrupted and that shorter sarcomeres are associated with smaller, stiffer aortas, which consequently result in increased flow and pulse wave velocities. The mutant hearts also displayed diastolic and latent systolic dysfunction. We conclude that hdp<sup>2</sup> pre-pupal hearts are exposed to increased afterload due to aortic hypoplasia. This may in turn contribute to diastolic and subtle systolic dysfunction via vascular-heart tube interaction, which describes the effect of the arterial loading system on cardiac function. Ultimately, the cardiovascular pathophysiology caused by a point mutation in a sarcomeric protein demonstrates that complex and dynamic micro- and mesoscopic phenotypes can be mechanistically explained in a gene sequence- and molecular-specific manner."	"mRNA expression patterns in human myocardial tissue, pericardial fluid and blood, and its contribution to the diagnosis of cause of death. Gene expression has become an interesting research area in forensic pathology to investigate the process of death at the molecular level. The aims of this study were to analyze changes in gene expression patterns in relation to the cause of death, and to propose new molecular markers of myocardial ischemia of potential use for the postmortem diagnosis of early ischemic heart damage in cases of sudden cardiac death (SCD). We determined mRNA levels of five proteins related with ischemic myocardial damage and repair - TNNI3, MYL3, TGFB1, MMP9 and VEGFA - in specific sites of the myocardium, blood and pericardial fluid in samples from 30 cadavers with different causes of death (SCD, multiple trauma, mechanical asphyxia, and other natural deaths). TNNI3 expression in blood, and MMP9 expression in pericardial fluid, were significantly higher when the cause of death was mechanical asphyxia, probably because of the more sensitive response of these proteins to acute systemic hypoxia/ischemia. Specifically, among SCD cases, increased MYL3, VEGFA and MMP9 values in the anterior wall of the right ventricle were found when the confirmed cause of death was acute myocardial infarction (AMI). Higher TGFB1 expression was found in the interventricular septum when AMI was not the cause of death, most likely as a reflection of the short duration of ischemia. Molecular biology techniques can provide complementary tools for the forensic diagnosis of early ischemic myocardial damage and AMI, and may make it possible to determine the duration and severity of myocardial ischemia."	"Presence of Hypertrophic Cardiomyopathy Related Gene Mutations and Clinical Manifestations in Vietnamese Patients With Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is associated primarily with pathogenic mutations in sarcomeric genes. The aim of this study was to identify the prevalence and distribution of disease-causing mutations in HCM-associated genes and the genotype-phenotype relationship in Vietnamese patients with HCM.Methods and Results:Genetic testing was performed by next-generation sequencing in 104 unrelated probands for 23 HCM-related genes and in 57 family members for the mutation(s) detected. Clinical manifestations were recorded for genotype-phenotype correlation analysis. Mutation detection rate was 43.4%. Mutations inMYBPC3accounted for 38.6%, followed byTPM1(20.5%),MYH7(18.2%),TNNT2(9.1%),TNNI3(4.5%) andMYL2(2.3%). A mutation inGLAassociated with Fabry disease was found in 1 patient. A mutation inTPM1(c.842T&gt;C, p.Met281Thr) was identified in 8 unrelated probands (18.2%) and 8 family members from 5 probands. Genotype-positive status related toMYH7,TPM1, andTNNT2mutations was associated with severe clinical manifestations.MYH7-positive patients displayed worse prognosis compared withMYBPC3-positive patients. Interestingly,TPM1c.842T&gt;C mutation was associated with high penetrance and severe HCM phenotype. We report for the first time the prevalence of HCM-related gene variants in Vietnamese patients with HCM.MYH7,TPM1, andTNNT2mutations were associated with unfavorable prognosis."	"Age-Dependent Systemic Effects of a Systemic Intermittent Hypoxic Therapy In Vivo.  Introduction:  The adaptive response to systemic intermittent hypoxic therapy (SIHT) may be used for therapeutic advances due to the activation of multiple pathways involved in angiogenesis, immunomodulation, and tissue homeostasis. The aim of this study was to investigate the early age-dependent systemic response of different exposures of SIHT in mice.  Materials and Methods:  Sixty-four C57BL/6NRj female mice in three different age groups, young (4-5 weeks), adolescent (8-10 weeks), and adults (23-32 weeks), were exposed to SIHT. Different algorithms for equal hypoxic challenges (oxygen-decrease*time) were investigated to allow examination of the role of absolute hypoxia (oxygen-decrease) compared with relative hypoxia (total oxygen depletion over time). The systemic effects of angiogenetic regulation were investigated using blood samples analyzed by ELISA, proteome profiles, and proximity extension immunoassay. One-way analysis of variance with post hoc Bonferroni analyses was performed.  Results:  The early systemic response to SIHT was dependent on the absolute hypoxia rather than relative hypoxia over time. Serum erythropoietin (EPO) levels were increased significantly in young mice receiving low-oxygen SIHT treatments (10% and 15% oxygen). The expression of angiogenic proteins differed between the different age groups indicating an age-dependent response to SIHT. Focusing on hypoxia-inducible factor-1 (HIF-1) signaling, there was a trend toward upregulated angiogenetic response with younger age. Furthermore, clustering of protein expression in low-oxygen SIHT algorithms were found between young and adolescent mice. In adult mice, the majority of the proteins were downregulated as a response to SIHT. The systemic response of metabolites expressions was most pronounced in young mice. Systemic levels of cardiac troponin I (Tnni3) was unaffected by SIHT independent of age groups.  Conclusions:  The systemic response to SIHT is dependent on the absolute hypoxic exposure rather than the relative hypoxic depletion over time. Age-dependent effects of a short-term SIHT were associated with an increase in EPO, upregulation of angiogenetic pathways, and select metabolic and cell-surface proteins."	"The Troponin-I fast skeletal muscle is reliable marker for the determination of vitality in the suicide hanging. Troponin I (TnI) is the inhibitory subunit of the troponin complex in the sarcomeric thin filament of striated muscle and plays a central role in the calcium regulation of contraction and relaxation. Vertebrate TnI has evolved into three isoforms encoded by three homologous genes: TNNI1 for slow skeletal muscle TnI, TNNI2 for fast skeletal muscle TnI and TNNI3 for cardiac TnI, which are expressed under muscle type-specific and developmental regulations in both the atrium and ventricle of the heart. Skeletal muscle TnI (both sTnI iso-forms) have been proposed as a sensitive and fast fiber-specific serum marker of skeletal muscle damage; fsTnI concentration in increased peripheral blood when fast twitch fibers were damaged. In our study we investigate if the 'Troponin I, fast skeletal muscle' can also be used as a reliable diagnostic tool in forensic practice, to perform differential diagnosis about vitality in suicide by hanging and simulated hanging (suspension of the victim after murder). We selected 8 women and 13 men, mean age 52.2 years, who died from suicidal hanging. The ligature material used for hanging was soft material in 11 cases and hard material in 10 cases. We chose cases as a control group of adults (n = 10; six women, four men, mean age 47.3 years) that died from opioid overdose (n = 2), car accident (n = 3) and sudden cardiac death (n = 5). Those deaths were characterized by their rapidity. To test the Anti-Troponin I fast skeletal muscle Antibody (Abcam clone-134,838), we used a case of a subject who died of myocardial infarction (timing infarct dated to 24-36 h prior to death). The reactions to Troponin I (namely the amount and extent of marker depletion) was scored for each section from 0 to -3: 0 = no loss of staining; -1 = minimal decrease in staining, compared to normally stained tissue; -2 = clear decrease in staining with some positivity (brown color) remaining; and -3 = no positive (brown) staining. The set of results obtained leads us to believe that the use of this antibody (Anti-Troponin I fast skeletal muscle antibody) is very promising to be able to make a certain differential diagnosis between antemortem and postmortem hangings. It should be emphasized that the present study seems to open new and promising horizons in the possibility to discriminate between suicidal hanging and simulated hanging (suspension of the victim after murder)."	"Genetic Variants Are Not Rare in ICD Candidates with Dilated Cardiomyopathy: Time for Next-Generation Sequencing? Sudden cardiac death (SCD) risk stratification in dilated cardiomyopathy (DCM) has been based on left ventricular ejection fraction (LVEF), even though SCD may occur with LVEF &gt; 35%. Family history of unexplained SCD, especially in the young, raises concern about potential inheritable risk factors. It remains largely unknown how genetic tests can be integrated into clinical practice, particularly in the selection of implantable cardioverter defibrillator (ICD) candidates. We aimed to assess the diagnostic yield of genetic testing in DCM patients with a class I recommendation for ICD implantation, based on current guidelines. We included ambulatory stable adult patients with idiopathic or familial DCM with previously implanted ICD. Molecular analysis included 15 genes (LMNA, MYH7, MYBPC3, TNNT2, ACTC1, TPM1, CSRP3, TCAP, SGCD, PLN, MYL2, MYL3, TNNI3, TAZ, and LDB3) using next-generation sequencing. We evaluated 21 patients, 12 (57%) males and 9 (43%) with familial DCM, including 3 (14%) with a family history of premature unexplained SCD. Mean age at DCM diagnosis was 40 ± 2 years, and mean age at ICD implantation was 50 ± 12 years. LVEF was 27 ± 9%, and LV end-diastolic diameter was 65 ± 7 mm. Genetic variants were found in six (29%) patients, occurring in 5 genes: TPM1, TNNT2, MYH7, PLN, and MYBPC3. The majority were classified as variants of uncertain significance. Family history of SCD was present in both patients with PLN variants. In patients with DCM and ICD, genetic variants could be identified in a significant proportion of patients in several genes, highlighting the potential role of genetics in DCM SCD risk stratification."	"A case report of recessive restrictive cardiomyopathy caused by a novel mutation in cardiac troponin I (TNNI3). Restrictive cardiomyopathy is a rare cardiac disease, for which several genes including TNNT2, MYPN, FLNC and TNNI3 have been associated with its familial form. Here we describe a female proband with a severely manifested restrictive phenotype leading to heart transplantation at the age of 41, who was found homozygous for the novel TNNI3 mutation: NM_000363.4:c.586G &gt; C, p.(Asp196His). Her parents were third-degree cousins originating from a small village and although they were found heterozygous for the same variant they displayed no symptoms of the disease. Her older sister who was also found heterozygous was asymptomatic. Her twin sister and her brother who were homozygous for the same variant displayed a restrictive and a hypertrophic phenotype, respectively. Their children are all carriers of the mutation and remain asymptomatic until the age of 21. These observations point to a recessive mode of inheritance reported for the first time for this combination of gene/disease."	"Evaluating the Clinical Validity of Hypertrophic Cardiomyopathy Genes. Genetic testing for families with hypertrophic cardiomyopathy (HCM) provides a significant opportunity to improve care. Recent trends to increase gene panel sizes often mean variants in genes with questionable association are reported to patients. Classification of HCM genes and variants is critical, as misclassification can lead to genetic misdiagnosis. We show the validity of previously reported HCM genes using an established method for evaluating gene-disease associations. A systematic approach was used to assess the validity of reported gene-disease associations, including associations with isolated HCM and syndromes including left ventricular hypertrophy. Genes were categorized as having definitive, strong, moderate, limited, or no evidence of disease causation. We also reviewed current variant classifications for HCM in ClinVar, a publicly available variant resource. Fifty-seven genes were selected for curation based on their frequent inclusion in HCM testing and prior association reports. Of 33 HCM genes, only 8 (24%) were categorized as definitive ( MYBPC3, MYH7, TNNT2, TNNI3, TPM1, ACTC1, MYL2, and MYL3); 3 had moderate evidence ( CSRP3, TNNC1, and JPH2; 33%); and 22 (66%) had limited (n=16) or no evidence (n=6). There were 12 of 24 syndromic genes definitively associated with isolated left ventricular hypertrophy. Of 4191 HCM variants in ClinVar, 31% were in genes with limited or no evidence of disease association. The majority of genes previously reported as causative of HCM and commonly included in diagnostic tests have limited or no evidence of disease association. Systematically curated HCM genes are essential to guide appropriate reporting of variants and ensure the best possible outcomes for HCM families."	"Urokinase Attenuates Pulmonary Thromboembolism in an Animal Model by Inhibition of Inflammatory Response. Inflammatory response is an important determining factor for the mortality of patients with pulmonary thromboembolism. Inflammatory mediators can promote thrombus formation and increase hemodynamic instability. Urokinase is a commonly used drug for the treatment of PTE. The effect of urokinase on inflammatory reaction in PTE is still unclear. Our study was aimed at evaluating the effects of the intervention of urokinase and urokinase combined with aspirin in PTE rats. Results revealed that a large amount of infiltrated inflammatory cells surrounding the bronchus, vessels, and pulmonary mesenchyme, and even pulmonary abscess were observed in the PTE rats. CX3CL1/CX3CR1 coexpression, CX3CL1/NF-κB coexpression, and TXA2 were significantly higher. After treatment with urokinase, pulmonary embolism was partially dissolved and inflammatory cell infiltration was significantly reduced. The expression of TNNI3, BNP, D2D, PASP, PADP, PAMP, and TXA2, as well as CX3CL1/CX3CR1 coexpression and CX3CL1/NF-κB coexpression were significantly lowered. Aspirin showed no synergistic action. Therefore, these findings suggested the occurrence of inflammation during the process of PTE in rats. Urokinase treatment reduced the inflammatory response."	"Genetic characterization and genotype-phenotype associations in a large cohort of patients with hypertrophic cardiomyopathy - An ancillary study of the Portuguese registry of hypertrophic cardiomyopathy. We present an ancillary study of the Portuguese Registry of Hypertrophic Cardiomyopathy (PRo-HCM). This is one of the largest HCM genetic studies based on a registry. Collected genetic variants were re-analysed for pathogenicity. Demographic, clinical, imaging and outcome data were analysed for associations with genotype, focusing on comparisons between patients with (G+) vs without (G-) a pathogenic/likely pathogenic (P/LP) variant in one the 9 main causal sarcomeric genes. From the 1042 patients in the registry, 528 (51%) had genetic testing. 152 (28%) were G+ and 98 pts. (19%) had variants of unknown significance. From the patients with the 9 mentioned genes sequenced (424 pts), 14.6% had P/LP variants in MYBPC3, 8.7% MYH7, 4.5% TNNT2, 1.7% TNNI3. Patients were 51 ± 16 years-old, 59% males. Genotype was associated with the following: birthplace (p = 0.005); age (p &lt; 0.001); family history of HCM (p &lt; 0.0005); hypertension (p &lt; 0.0005); chest pain (p = 0.015); pattern of hypertrophy (p = 0.006); left ventricular hypertrophy on the ECG (p &lt; 0.0005); family history of sudden cardiac death (SCD) (p = 0.002). G+ patients more frequently had more than one risk factor for SCD (p = 0.002) and a higher ESC-SCD risk score (p = 0.003). In survival analysis, G+ was associated with SCD (p = 0.017) and MYH7+ with LV systolic dysfunction (p = 0.038). Half of the registry patients had genetic testing. Sarcomere-positive patients had distinct demographics, ECG, imaging characteristics and family history and are at increased risk of SCD. The presence of a MYH7 mutation was associated with evolution towards LV systolic dysfunction."	"A combination of mRNA expression profile and miRNA expression profile identifies detection biomarkers in different tumor stages of laryngeal squamous cell carcinoma. This study was conducted to investigate microRNA (miRNA) target regulations during the disease progression in laryngeal squamous cell carcinoma (LSCC) and identify biomarkers in different tumor stages. The mRNA dataset GSE59102 and miRNA dataset GSE70289 were used in this study. After pretreatment, differentially expressed genes/miRNAs (DEGs/DEMs) in different tumor stages (beginning vs. margin, advanced vs. margin, and beginning vs. advanced) were selected on the basis of their limma package. Then, the enrichment analysis for these DEGs was conducted using ClueGO. Protein-protein interaction (PPI) network analysis was performed on the basis of the BioGRID database. After prediction of target genes of DEMs according to three validated miRNA databases, an integrated miRNA target network and its pathways were drawn using the multiMiR package. Numerous DEGs were identified in different tumor stages of LSCC (beginning vs. margin, advanced vs. margin, and beginning vs. advanced), and a set of 18 DEMs was identified. Cell cycle was the most significantly enriched pathway of the DEGs. Four hub nodes (MCM2, EGFR, CDK2, and CDK1) were highlighted in the PPI network. In the integrated miRNA target network, 2 miRNAs were predominant: hsa-miR-331-3p (2 predicted targets, E2F1 and TNFRSF10B) and has-miR-375 (1 predicted target, TNNI3). These genes were tied up with cell cycle or apoptosis pathway. Several genes and miRNAs might be used as markers for LSCC in different tumor stages (e.g., MCM2, EGFR, CDK1, CDK2, hsa-miR-331-3p, hsa-miR-375). They might function through the involvement of the cell cycle pathway."	"Amish nemaline myopathy and dilated cardiomyopathy caused by a homozygous contiguous gene deletion of TNNT1 and TNNI3 in a Mennonite child. Amish nemaline myopathy (ANM) is a severe congenital form of NM, known to be fatal in early childhood due to pulmonary insufficiency. Homozygous mutation in TNNT1 was originally ascertained in an Older Amish community in 2000. To date, only five reports with six pathogenic variants in TNNT1 have been described in both Amish and non-Amish families. Here, we describe a 16-month old female from a small Mennonite community from Mexico, presenting with congenital hypotonia and dilated cardiomyopathy, with a novel homozygous deletion of 19q13.42 of about 11 kb in size, encompassing TNNT1 and TNNI3. Cardiomyopathy has not been observed in association with ANM in previous reports. Conversely, homozygous mutation in TNNI3 have been described with dilated cardiomyopathy. Our report underscores the consideration of contiguous gene deletion in children with ANM who present with congenital hypotonia and cardiomyopathy. The report also expands the known spectrum of non-Amish related ANM mutations to include homozygous multi-exonic TNNT1 deletion."	"Sarcomere variants in arrhythmogenic cardiomyopathy: Pathogenic factor or bystander? Arrhythmogenic cardiomyopathy (ACM) is an inherited heart muscle disease, which is mainly caused by desmosomal mutations. Sarcomere variants were the primary genetic basis of hypertrophic cardiomyopathy (HCM) and were recently detected in arrhythmogenic cardiomyopathy (ACM). Our aim is to seek potential pathogenic variants of sarcomere genes in our ACM cohort and describe their characteristics. We performed targeted sequencing of 14 sarcomere genes in 84 patients with ACM and set strict criteria to identify potential pathogenic variants. Clinical screening was performed on all available family members of the patients carrying sarcomere variants and specific variants were tested in screened family members by Sanger sequencing. We identified 6 sarcomere variants in 6 (7%) patients, which were all definite ACM. Sarcomere variants were detected in NEBL, MYH7, MYH6 and TNNI3, with low prevalence in controls and predicted pathogenic in silico. Among these patients, three had previous detected PKP2 variants. Patients with sarcomere variants all experienced major arrhythmic cardiac event (MACE) with the average age of the first documented MACE being 41.2 ± 11.0 years. Pedigrees analysis showed none of the sarcomere variants carriers among the family members were affected, indicating very low penetrance. We detected some sarcomere variants in our ACM cohort. Although those patients with sarcomere variants had severe arrhythmic burden, family co-segregation analysis didn't strongly support a primary role in the pathogenesis of ACM."	"Genetic Basis of Severe Childhood-Onset Cardiomyopathies. Childhood cardiomyopathies are progressive and often lethal disorders, forming the most common cause of heart failure in children. Despite severe outcomes, their genetic background is still poorly characterized. The purpose of this study was to characterize the genetics of severe childhood cardiomyopathies in a countrywide cohort. The authors collected a countrywide cohort, KidCMP, of 66 severe childhood cardiomyopathies from the sole center in Finland performing cardiac transplantation. For genetic diagnosis, next-generation sequencing and subsequent validation using genetic, cell biology, and computational approaches were used. The KidCMP cohort presents remarkable early-onset and severe disorders: the median age of diagnosis was 0.33 years, and 17 patients underwent cardiac transplantation. The authors identified the pathogenic variants in 39% of patients: 46% de novo, 34% recessive, and 20% dominantly-inherited. The authors report NRAP underlying childhood dilated cardiomyopathy, as well as novel phenotypes for known heart disease genes. Some genetic diagnoses have immediate implications for treatment: CALM1 with life-threatening arrhythmias, and TAZ with good cardiac prognosis. The disease genes converge on metabolic causes (PRKAG2, MRPL44, AARS2, HADHB, DNAJC19, PPA2, TAZ, BAG3), MAPK pathways (HRAS, PTPN11, RAF1, TAB2), development (NEK8 and TBX20), calcium signaling (JPH2, CALM1, CACNA1C), and the sarcomeric contraction cycle (TNNC1, TNNI3, ACTC1, MYH7, NRAP). Childhood cardiomyopathies are typically caused by rare, family-specific mutations, most commonly de novo, indicating that next-generation sequencing of trios is the approach of choice in their diagnosis. Genetic diagnoses may suggest intervention strategies and predict prognosis, offering valuable tools for prioritization of patients for transplantation versus conservative treatment."	"The TNNI3 Arg192His mutation in a 13-year-old girl with left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a distinct cardiomyopathy that is morphologically characterized by a two-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses communicating with the left ventricular cavity. We present a case report regarding the identification of a new mutation in TNNI3 in a patient with LVNC using next-generation sequencing. A 13-year-old girl who had no family history of cardiac disease was hospitalized with dyspnea after exercise and electrocardiographic abnormalities during a school screening. Based on her clinical features, she was diagnosed with LVNC. Via genetic analysis, a TNNI3 heterozygous missense variant was identified in the proband. Although mutations in TNNI3 have been reported in patients with hypertrophic cardiomyopathy and restrictive cardiomyopathy, this is the first report of a mutation in this gene in a patient with LVNC. &lt;Learning objective: We identified a variant in TNNI3 in a patient with isolated left ventricular noncompaction using next-generation sequencing (NGS). Mutations in TNNI3 have been reported in patients with hypertrophic cardiomyopathy and restrictive cardiomyopathy. The use of NGS also results in the identification of multiple genetic variants of unknown significance to the investigated disease.&gt;."	"Telomere shortening is a hallmark of genetic cardiomyopathies. This study demonstrates that significantly shortened telomeres are a hallmark of cardiomyocytes (CMs) from individuals with end-stage hypertrophic cardiomyopathy (HCM) or dilated cardiomyopathy (DCM) as a result of heritable defects in cardiac proteins critical to contractile function. Positioned at the ends of chromosomes, telomeres are DNA repeats that serve as protective caps that shorten with each cell division, a marker of aging. CMs are a known exception in which telomeres remain relatively stable throughout life in healthy individuals. We found that, relative to healthy controls, telomeres are significantly shorter in CMs of genetic HCM and DCM patient tissues harboring pathogenic mutations: TNNI3, MYBPC3, MYH7, DMD, TNNT2, and TTN Quantitative FISH (Q-FISH) of single cells revealed that telomeres were significantly reduced by 26% in HCM and 40% in DCM patient CMs in fixed tissue sections compared with CMs from age- and sex-matched healthy controls. In the cardiac tissues of the same patients, telomere shortening was not evident in vascular smooth muscle cells that do not express or require the contractile proteins, an important control. Telomere shortening was recapitulated in DCM and HCM CMs differentiated from patient-derived human-induced pluripotent stem cells (hiPSCs) measured by two independent assays. This study reveals telomere shortening as a hallmark of genetic HCM and DCM and demonstrates that this shortening can be modeled in vitro by using the hiPSC platform, enabling drug discovery."	"Coverage and diagnostic yield of Whole Exome Sequencing for the Evaluation of Cases with Dilated and Hypertrophic Cardiomyopathy. Targeted next generation sequencing of gene panels has become a popular tool for the genetic diagnosis of hypertrophic (HCM) and dilated cardiomyopathy (DCM). However, it is uncertain whether the use of Whole Exome Sequencing (WES) represents a more effective approach for diagnosis of cases with HCM and DCM. In this study, we performed indirect comparisons of the coverage and diagnostic yield of WES on genes and variants related to HCM and DCM versus 4 different commercial gene panels using 40 HCM and DCM patients, assuming perfect coverage in those panels. We identified 6 pathogenic or likely pathogenic among 14 HCM patients (diagnostic yield 43%). 3 pathogenic or likely pathogenic were found among the 26 DCM patients (diagnostic yield 12%). The coverage was similar to that of four existing commercial gene panels due to the clustering of mutation within MYH7, MYBPC3, TPM1, TNT2, and TTN. Moreover, the coverage of WES appeared inadequate for TNNI3 and PLN. We conclude that most of the pathogenic variants for HCM and DCM can be found within a small number of genes which were covered by all the commercial gene panels, and the application of WES did not increase diagnostic yield."	"First identification of homozygous truncating CSRP3 variants in two unrelated cases with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiovascular disease with an estimated prevalence of 1/500. More than 40 genes have been reported to cause HCM. Among them, CSRP3 is usually included on HCM gene panels used for molecular diagnosis by next-generation sequencing (NGS). To provide new insights into the pathophysiology of hypertrophic cardiomyopathy, a NGS workflow based on a panel of 48 cardiomyopathies-causing genes was analyzed on a cohort of 542 HCM patients. As expected, this molecular approach led to identify most pathogenic or likely pathogenic variants into prevalent HCM-causing genes: MYBPC3 (123/542; 22.7%), MYH7 (48/542; 8.9%), TNNT2 (12/542; 2.2%), and TNNI3 (10/542; 1.8%). Among MYBPC3 variants, 96 led to a premature stop codon (78%). More surprisingly, our molecular study led also to detect, for the first time, homozygous CSRP3 truncating variants in two unrelated HCM probands. Meta-analysis of rare previously reported CSRP3 variants on HCM probands using ACMG guidelines indicate that only one variation (p.Cys58Gly) could be considered as likely pathogen. By combining meta-analysis results and identification of two unrelated HCM patients with homozygous CSRP3 truncating variants, we suggest that the association of CSRP3 as a validated HCM-causing gene require additional studies and those CSRP3 variants could result in HCM with an autosomal recessive inheritance rather than with an autosomal dominant transmission as usually reported on HCM (OMIM 612124)."	"Commonly used thiol-containing antioxidants reduce cardiac differentiation and alter gene expression ratios of sarcomeric isoforms. Reactive oxygen species (ROS) scavengers such as beta-mercaptoethanol (BME) and monothiol glycerol (MTG) are extensively used in stem cell research to prevent cellular oxidative stress. However, how these antioxidant supplements impact stem cell cardiac differentiation, a process regulated by redox-signaling remains unknown. In this study, we found that removal of BME from the conventional high-glucose, serum-based differentiation medium improved cardiac differentiation efficiency by 2-3 fold. BME and MTG treatments during differentiation significantly reduced mRNA expression of cardiac progenitor markers (NKX2.5 and ISL1) as well as sarcomeric markers (MLC2A, MLC2V, TNNI3, MYH6 and MYH7), suggesting reduced cardiomyogenesis by BME or MTG. Moreover, BME and MTG altered the expression ratios between the sarcomeric isoforms. In particular, TNNI3 to TNNI1 ratio and MLC2V to MLC2A ratio were significantly lower in BME or MTG treated cells than untreated cells, implying altered cardiomyocyte phenotype and maturity. Lastly, BME and MTG treatments resulted in less frequent beating, slower contraction and relaxation velocities than untreated cells. Interestingly, none of the above-mentioned effects was observed with Trolox, a non-thiol based antioxidant, despite its strong antioxidant activity. This work demonstrates that commonly used antioxidant supplements may cause considerable changes to cellular redox state and the outcome of differentiation."	"Protective Effects of Shenfu Injection against Myocardial Ischemia-Reperfusion Injury via Activation of eNOS in Rats. The aim of the present study was to investigate the protective effects of Shenfu injection (SFI) against myocardial ischemia-reperfusion injury (MIRI) in model rats and to explore its mechanism of action. Sprague-Dawley (SD) rats were pretreated with SFI and N<sup>G</sup>-nitro-L-arginine methyl ester (L-NAME) via tail vein injection and then rats were subjected to ischemia by occlusion of the left anterior descending coronary artery for 30 min followed by reperfusion for 120 min. Left ventricular function was evaluated by echocardiography. Hemodynamic was measured by the Millar pressure-volume system; serum creatine kinase (CK), lactate dehydrogenase (LDH) and serum troponin (TNNI3) levels were determined. Myocardial infarct size was observed by 2,3,5-triphenyl-2H-tetrazolium chloride (TTC) staining; p-Akt/Akt, and p-endothelial nitric oxide synthase (p-eNOS)/eNOS levels were assessed by Western blotting; nitric oxide (NO) content in serum was determined by the Griess reaction. SFI significantly decreased serum CK, LDH and TNNI3 levels in MIRI rats, while it significantly increased the level of left ventricular systolic pressure (LVSP), left ventricular diastolic pressure (LVDP), maximal rate of the increase of left ventricular pressure (+dp/dtmax), maximal rate of the decrease of left ventricular pressure (-dp/dtmax), left ventricle ejection fraction percentage (EF), and stroke volume (SV). In addition, SFI significantly reduced myocardial infarction area and activated the phosphorylation of eNOS via Akt. The phosphorylation of eNOS and the concurrent increase of NO production contributed significantly to the protective effects of SFI. These results demonstrate that SFI protects the rat heart against MIRI and that this effect is mediated in part by Akt/eNOS signaling."	"Genetic background of Japanese patients with pediatric hypertrophic and restrictive cardiomyopathy. Hypertrophic cardiomyopathy (HCM) and restrictive cardiomyopathy (RCM) present a high risk for sudden cardiac death in pediatric patients. The aim of this study was to identify disease-associated genetic variants in Japanese patients with pediatric HCM and RCM. We analyzed 67 cardiomyopathy-associated genes in 46 HCM and 7 RCM patients diagnosed before 16 years of age using a next-generation sequencing system. We found that 78% of HCM and 71% of RCM patients carried disease-associated genetic variants. Disease-associated genetic variants were identified in 80% of HCM patients with a family history and in 77% of HCM patients with no apparent family history (NFH). MYH7 and/or MYBPC3 variants comprised 76% of HCM-associated variants, whereas troponin complex-encoding genes comprised 75% of the RCM-associated variants. In addition, 91% of HCM patients with implantable cardioverter-defibrillators and infant cases had NFH, and the 88% of HCM patients carrying disease-associated genetic variants were males who carried MYH7 or MYBPC3 variants. Moreover, two disease-associated LAMP2, one DES and one FHOD3 variants, were identified in HCM patients. In this study, pediatric HCM and RCM patients were found to carry disease-associated genetic variants at a high rate. Most of the variants were in MYH7 or MYPBC3 for HCM and TNNT2 or TNNI3 for RCM."	"Identification of sarcomeric variants in probands with a clinical diagnosis of arrhythmogenic right ventricular cardiomyopathy (ARVC). Arrhythmogenic right ventricular cardiomyopathy (ARVC) is an inherited cardiomyopathy characterized by ventricular arrhythmias and sudden death. Currently 60% of patients meeting Task Force Criteria (TFC) have an identifiable mutation in one of the desmosomal genes. As much overlap is described between other cardiomyopathies and ARVC, we examined the prevalence of rare, possibly pathogenic sarcomere variants in the ARVC population. One hundred and thirty-seven (137) individuals meeting 2010 TFC for a diagnosis of ARVC, negative for pathogenic desmosomal variants, TMEM43, SCN5A, and PLN were screened for variants in the sarcomere genes (ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNC1, TNNI3, TNNT2, and TPM1) through either clinical or research genetic testing. Six probands (6/137, 4%) were found to carry rare variants in the sarcomere genes. These variants have low prevalence in controls, are predicted damaging by Polyphen-2, and some of the variants are known pathogenic hypertrophic cardiomyopathy mutations. Sarcomere variant carriers had a phenotype that did not differ significantly from desmosomal mutation carriers. As most of these probands were the only affected individuals in their families, however, segregation data are noninformative. These data show variants in the sarcomere can be identified in individuals with an ARVC phenotype. Although rare and predicted damaging, proven functional and segregational evidence that these variants can cause ARVC is lacking. Therefore, caution is warranted in interpreting these variants when identified on large next-generation sequencing panels for cardiomyopathies."	"Cardiogenic effects of characterized Geum urbanum extracts on adipose-derived human mesenchymal stem cells. Stem cell therapy is considered as a promising treatment for cardiovascular diseases. Adipose-derived mesenchymal stem cells (ADMSCs) have the ability to undergo cardiomyogenesis. Medicinal plants are effective and safe candidates for cell differentiation. Therefore, the aim of our study was to investigate cardiogenic effects of characterized (HPLC-UV) extracts of Geum urbanum on ADMSCs of adipose tissue. The methanolic extracts of the root and aerial parts of G. urbanum were obtained and MTT assay was used for studying their cytotoxic effects. Then, cells were treated with 50 or 100 μg/mL of the extracts from root and aerial parts of G. urbanum. MTT assay showed that the extracts of G. urbanum did not have any toxic effects on ADMSCs. Immunostaining results showed increase in the expression of α-actinin and cardiac troponin I (cTnI), and quantitative real-time reverse-transcription PCR data confirmed the upregulation of ACTN, ACTC1, and TNNI3 genes in ADMSCs after treatment. According to HPLC fingerprinting, some cardiogenic effects of G. urbanum extracts are probably due to ellagic and gallic acid derivatives. Our findings indicated that G. urbanum extracts effectively upregulated some essential cardiogenic markers, which confirmed the therapeutic role of this plant as a traditional cardiac medicine."	"Cardiomyogenic differentiation of human adipose-derived mesenchymal stem cells transduced with Tbx20-encoding lentiviral vectors. Ischemic heart disease often results in myocardial infarction and is the leading cause of mortality and morbidity worldwide. Improvement in the function of infarcted myocardium is a main purpose of cardiac regenerative medicine. One possible way to reach this goal is via stem cell therapy. Mesenchymal stem cells (MSCs) are multipotent stromal cells that can differentiate into a variety of cell types but display limited cardiomyogenic differentiation potential. Members of the T-box family of transcription factors including Tbx20 play important roles in heart development and cardiomyocyte homeostasis. Therefore, in the current study, we investigated the potential of Tbx20 to enhance the cardiomyogenic differentiation of human adipose-derived MSCs (ADMSCs). Human ADMSCs were transduced with a bicistronic lentiviral vector encoding Tbx20 (murine) and the enhanced green fluorescent protein (eGFP) and analyzed 7 and 14 days post transduction. Transduction of human ADMSCs with this lentiviral vector increased the expression of the cardiomyogenic differentiation markers ACTN1, TNNI3, ACTC1, NKX2.5, TBX20 (human), and GATA4 as revealed by RT-qPCR. Consistently, immunocytological results showed elevated expression of α-actinin and cardiac troponin I in these cells in comparison to the cells transduced with control lentiviral particles coding for eGFP alone. Accordingly, forced expression of Tbx20 exerts cardiomyogenic effects on human ADMSCs by increasing the expression of cardiomyogenic differentiation markers at the RNA and protein level."	"Whole exome sequencing identifies a novel mutation (c.333 + 2T &gt; C) of TNNI3K in a Chinese family with dilated cardiomyopathy and cardiac conduction disease. Dilated Cardiomyopathy (DCM) and cardiac conduction disease (CCD) are two kinds if diseases that can induce heart failure, syncope and even sudden cardiac death (SCD). DCM patients can experience CCD at the same time. In recent research, some disease-causing genes and variants have been identified in patients with DCM and CCD, such as Alpha-Actinin-2 and TNNI3 Interacting Kinase (TNNI3K). In this study, we employed whole-exome sequencing (WES) to explore the potential causative genes in a Chinese family with DCM and CCD. A novel splice site mutation (c.333 + 2 T &gt; C) of TNNI3K was identified and co-segregated with the affected family members. This novel mutation was also absent in 200 healthy local controls and predicted to be disease-causing by Mutationtaster. The splice site mutation (c.333 + 2 T &gt; C) may result in a premature stop codon in exon 4 of the TNNI3K gene and can induce nonsense-mediated mRNA decay. Real-time qPCR also confirmed that the level of TNNI3K mRNA expression was decreased significantly compared with the controls, which may lead to myocardial structural disorder and arrhythmia. In this study we reported the third novel mutation of TNNI3K in DCM and CCD patients which further supported the important role of TNNI3K in heart development and expanded the spectrum of TNNI3K mutations. The results may contribute to the genetic diagnosis and counseling of families with DCM and CCD."	"High proportion of genetic cases in patients with advanced cardiomyopathy including a novel homozygous Plakophilin 2-gene mutation. Cardiomyopathies might lead to end-stage heart disease with the requirement of drastic treatments like bridging up to transplant or heart transplantation. A not precisely known proportion of these diseases are genetically determined. We genotyped 43 index-patients (30 DCM, 10 ARVC, 3 RCM) with advanced or end stage cardiomyopathy using a gene panel which covered 46 known cardiomyopathy disease genes. Fifty-three variants with possible impact on disease in 33 patients were identified. Of these 27 (51%) were classified as likely pathogenic or pathogenic in the MYH7, MYL2, MYL3, NEXN, TNNC1, TNNI3, DES, LMNA, PKP2, PLN, RBM20, TTN, and CRYAB genes. Fifty-six percent (n = 24) of index-patients carried a likely pathogenic or pathogenic mutation. Of these 75% (n = 18) were familial and 25% (n = 6) sporadic cases. However, severe cardiomyopathy seemed to be not characterized by a specific mutation profile. Remarkably, we identified a novel homozygous PKP2-missense variant in a large consanguineous family with sudden death in early childhood and several members with heart transplantation in adolescent age."	"Role of Whole-exome Sequencing in Phenotype Classification and Clinical Treatment of Pediatric Restrictive Cardiomyopathy. Restrictive cardiomyopathy (RCM) is the least common cardiomyopathy in which the walls are rigid and the heart is restricted from stretching and filling properly. Cardiac troponin I (cTnI) mutation-caused myofibril Ca2+ hypersensitivity has been shown to be associated with impaired diastolic function. This study aimed to investigate the linkage between the genotype and clinical therapy of RCM. Five sporadic pediatric RCM patients confirmed by echocardiography were enrolled in this study. Whole-exome sequencing (WES) was performed for the cohort to find out candidate causative gene variants. Sanger sequencing confirmed the WES-identified variants. TNNI3 variants were found in all of the five patients. R192H mutation was shared in four patients while R204H mutation was found only in one patient. Structure investigation showed that the C terminus of TNNI3 was flexible and mutation on the C terminus was possible to cause the RCM. Catechins were prescribed for the five patients once genotype was confirmed. Ventricular diastolic function was improved in three patients during the follow-up. Our data demonstrated that TNNI3 mutation-induced RCM1 is the most common type of pediatric RCM in this study. In addition, WES is a reliable approach to identify likely pathogenic genes of RCM and might be useful for the guidance of clinical treatment scheme."	"Abnormal contractility in human heart myofibrils from patients with dilated cardiomyopathy due to mutations in TTN and contractile protein genes. Dilated cardiomyopathy (DCM) is an important cause of heart failure. Single gene mutations in at least 50 genes have been proposed to account for 25-50% of DCM cases and up to 25% of inherited DCM has been attributed to truncating mutations in the sarcomeric structural protein titin (TTNtv). Whilst the primary molecular mechanism of some DCM-associated mutations in the contractile apparatus has been studied in vitro and in transgenic mice, the contractile defect in human heart muscle has not been studied. In this study we isolated cardiac myofibrils from 3 TTNtv mutants, and 3 with contractile protein mutations (TNNI3 K36Q, TNNC1 G159D and MYH7 E1426K) and measured their contractility and passive stiffness in comparison with donor heart muscle as a control. We found that the three contractile protein mutations but not the TTNtv mutations had faster relaxation kinetics. Passive stiffness was reduced about 38% in all the DCM mutant samples. However, there was no change in maximum force or the titin N2BA/N2B isoform ratio and there was no titin haploinsufficiency. The decrease in myofibril passive stiffness was a common feature in all hearts with DCM-associated mutations and may be causative of DCM."	"Clinical outcomes associated with sarcomere mutations in hypertrophic cardiomyopathy: a meta-analysis on 7675 individuals. Hypertrophic cardiomyopathy (HCM) is the most common genetic cardiovascular disease, which goes along with increased risk for sudden cardiac death (SCD). Despite the knowledge about the different causal genes, the relationship between individual genotypes and phenotypes is incomplete. We retrieved PubMed/Medline literatures on genotype-phenotype associations in patients with HCM and mutations in MYBPC3, MYH7, TNNT2, and TNNI3. Altogether, 51 studies with 7675 HCM patients were included in our meta-analysis. The average frequency of mutations in MYBPC3 (20%) and MYH7 (14%) was higher than TNNT2 and TNNI3 (2% each). The mean age of HCM onset for MYH7 mutation positive patients was the beginning of the fourth decade, significantly earlier than patients without sarcomeric mutations. A high male proportion was observed in TNNT2 (69%), MYBPC3 (62%) and mutation negative group (64%). Cardiac conduction disease, ventricular arrhythmia and heart transplantation (HTx) rate were higher in HCM patients with MYH7 mutations in comparison to MYBPC3 (p &lt; 0.05). Furthermore, SCD was significantly higher in patients with sarcomeric mutations (p &lt; 0.01). A pooled dataset and a comprehensive genotype-phenotype analysis show that the age at disease onset of HCM patients with MYH7 is earlier and leads to a more severe phenotype than in patient without such mutations. Furthermore, patients with sarcomeric mutations are more susceptible to SCD. The present study further supports the clinical interpretation of sarcomeric mutations in HCM patients."	"Finding the candidate sequence variants for diagnosis of hypertrophic cardiomyopathy in East Slovak patients. Hypertrophic cardiomyopathy is a heterogeneous myocardial disease. Mutations appearing in several genes might be a potential cause of the disease. The aim of the study was to analyze selected exons of the sarcomeric and non-sarcomeric genes, with the purpose to identify potential candidate genetic variants and to understand etiopathogenetic mechanisms of hypertrophic cardiomyopathy in East Slovak patients. This study recruited 23 unrelated patients with hypertrophic cardiomyopathy, namely, 13 men and 10 women (mean age of 58.09±15.82 years) and 25 healthy controls in order to determine the candidate sequence variants, in the selected exons of six cardiomyopathy genes (MYBPC3, MYH7, NEBL, SCN5A, TNNI3, TNNT2), by conventional capillary-based Sanger sequencing method and standard protocols. Molecular genetic results confirmed the presence of 43 sequence variants in the selected exons of six cardiomyopathy genes, 58.14% of detected variants were novel. The majority of detected sequence variants were confirmed within exon 23 of MYH7 gene. Only 11 genetic alterations were predicted to be potentially pathogenic. In our study, we identified known and novel sequence variants in 23 unrelated patients with hypertrophic cardiomyopathy, but we did not observe any strong mutation hotspot. The results of our study assumed that exon 23 of MYH7 gene can be in potential affinity to hypertrophic cardiomyopathy in our cohort of patients. The sequence variants identified in this study may be further investigated in order to determine their functions in disease pathogenesis and improve management, diagnosis, and treatment in Slovak patients."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Bioinspired onion epithelium-like structure promotes the maturation of cardiomyocytes derived from human pluripotent stem cells. Organized cardiomyocyte alignment is critical to maintain the mechanical properties of the heart. In this study, we present a new and simple strategy to fabricate a biomimetic microchip designed with an onion epithelium-like structure and investigate the guided behavior of human induced pluripotent stem cell derived cardiomyocytes (hiPSC-CMs) on the substrate. The hiPSC-CMs were observed to be confined by the three dimensional surficial features morphologically, analogous to the in vivo microenvironment, and exhibited an organized anisotropic alignment on the onion epithelium-like structure with good beating function. The calcium imaging of hiPSC-CMs demonstrated a more mature Ca<sup>2+</sup> spark pattern as well. Furthermore, the expression of sarcomere genes (TNNI3, MYH6 and MYH7), potassium channel genes (KCNE1 and KCNH2), and calcium channel genes (RYR2) was significantly up-regulated on the substrate with an onion epithelium-like structure instead of the surface without the structure, indicating a more matured status of cardiomyocytes induced by this structure. It appears that the biomimetic micropatterned structure, analogous to in vivo cellular organization, is an important factor that might promote the maturation of hiPSC-CMs, providing new biological insights to guide hiPSC-CM maturation by biophysical factors. The established approach may offer an effective in vitro model for investigating cardiomyocyte differentiation, maturation and tissue engineering applications."	"Cardiomyopathies with Mixed and Inapparent Morphological Features in Cardiac Troponin I3 Mutation. The fact that different types of cardiomyopathies can be manifested by the same sarcomere protein gene mutation in a single family is well known. However, mixed features of different types of cardiomyopathies in a single patient have not been well appreciated. We identified a novel mutation in cardiac troponin I3 (Arg186Gly) in the present case, and two of the family members showed mixed morphologic features of hypertrophic cardiomyopathy and left ventricular non-compaction. Moreover, both the features of cardiomyopathies were not apparent for each type of cardiomyopathy. In the patient's family, four other members had unexpected deaths before the age of 30."	"Identification of a novel hypertrophic cardiomyopathy-associated mutation using targeted next-generation sequencing. Hypertrophic cardiomyopathy (HCM), one of the most common forms of myocardial diseases, is the major cause of sudden cardiac death in young adults and competitive athletes. Analyses of gene mutations associated with HCM are valuable for its molecular diagnosis, genetic counseling, and management of familial HCM. To dissect the relationship between the clinical presentation and gene mutations of HCM, the genetic characterizations of 19 HCM-related genes in 18 patients (8 cases from 6 pedigrees with familial HCM and 10 cases without familial HCM) were detected using next-generation sequencing (NGS). As a result, 12 disease-related mutations were identified in the 18 subjects, including 6 single mutations and 3 double mutations [MYBPC3 (p.Gln998Glu) plus TNNI3 (p.Arg145Gly), PRKAG2 (p.Gly100Ser) plus MYBPC3 (p.Lys1209Serfs*28) and TNNI3 (p.Glu124Gln) plus GLA (p.Trp47*)]. The 3 heterozygous double mutations were discovered for the first time in the malignant familial HCM patients. Of the 6 single mutations, a novel mutation was found in tafazzin (TAZ, p.Ile208Val), and a mutation in β-myosin heavy chain gene (MYH7, p.Arg54Gln), which was reported as rare in the general population, was firstly found in one HCM patient. Identification of novel and rare mutations in HCM patients have added new data to the spectrum of gene mutations associated with this disease. These findings provide an essential basis for the molecular diagnosis and better management of family members at risk of familial HCM."	"Genotype-specific pathogenic effects in human dilated cardiomyopathy. Mutations in genes encoding cardiac troponin I (TNNI3) and cardiac troponin T (TNNT2) caused altered troponin protein stoichiometry in patients with dilated cardiomyopathy. TNNI3p.98trunc resulted in haploinsufficiency, increased Ca<sup>2+</sup> -sensitivity and reduced length-dependent activation. TNNT2p.K217del caused increased passive tension. A mutation in the gene encoding Lamin A/C (LMNAp.R331Q ) led to reduced maximal force development through secondary disease remodelling in patients suffering from dilated cardiomyopathy. Our study shows that different gene mutations induce dilated cardiomyopathy via diverse cellular pathways. Dilated cardiomyopathy (DCM) can be caused by mutations in sarcomeric and non-sarcomeric genes. In this study we defined the pathogenic effects of three DCM-causing mutations: the sarcomeric mutations in genes encoding cardiac troponin I (TNNI3p.98truncation ) and cardiac troponin T (TNNT2p.K217deletion ; also known as the p.K210del) and the non-sarcomeric gene mutation encoding lamin A/C (LMNAp.R331Q ). We assessed sarcomeric protein expression and phosphorylation and contractile behaviour in single membrane-permeabilized cardiomyocytes in human left ventricular heart tissue. Exchange with recombinant troponin complex was used to establish the direct pathogenic effects of the mutations in TNNI3 and TNNT2. The TNNI3p.98trunc and TNNT2p.K217del mutation showed reduced expression of troponin I to 39% and 51%, troponin T to 64% and 53%, and troponin C to 73% and 97% of controls, respectively, and altered stoichiometry between the three cardiac troponin subunits. The TNNI3p.98trunc showed pure haploinsufficiency, increased Ca<sup>2+</sup> -sensitivity and impaired length-dependent activation. The TNNT2p.K217del mutation showed a significant increase in passive tension that was not due to changes in titin isoform composition or phosphorylation. Exchange with wild-type troponin complex corrected troponin protein levels to 83% of controls in the TNNI3p.98trunc sample. Moreover, upon exchange all functional deficits in the TNNI3p.98trunc and TNNT2p.K217del samples were normalized to control values confirming the pathogenic effects of the troponin mutations. The LMNAp.R331Q mutation resulted in reduced maximal force development due to disease remodelling. Our study shows that different gene mutations induce DCM via diverse cellular pathways."	"Diverse Phenotypic Expression of Cardiomyopathies in a Family with TNNI3 p.Arg145Trp Mutation. Genetic diagnosis of cardiomyopathies is challenging, due to the marked genetic and allelic heterogeneity and the lack of knowledge of the mutations that lead to clinical phenotypes. Here, we present the case of a large family, in which a single TNNI3 mutation caused variable phenotypic expression, ranging from restrictive cardiomyopathy (RCMP) to hypertrophic cardiomyopathy (HCMP) to near-normal phenotype. The proband was a 57-year-old female with HCMP. Examining the family history revealed that her elder sister had expired due to severe RCMP. Using a next-generation sequencing-based gene panel to analyze the proband, we identified a known TNNI3 gene mutation, c.433C&gt;T, which is predicted to cause an amino acid substitution (p.Arg145Trp) in the highly conserved inhibitory region of the cardiac troponin I protein. Sanger sequencing confirmed that six relatives with RCMP or near-normal phenotypes also carried this mutation. To our knowledge, this is the first genetically confirmed family with diverse phenotypic expression of cardiomyopathies in Korea. Our findings demonstrate familial implications, where a single mutation in a sarcomere protein can cause diverse phenotypic expression of cardiomyopathies."	"Autosomal Recessive Cardiomyopathy Presenting as Acute Myocarditis. Myocarditis is inflammation of the heart muscle that can follow various viral infections. Why children only rarely develop life-threatening acute viral myocarditis (AVM), given that the causal viral infections are common, is unknown. Genetic lesions might underlie such susceptibilities. Mouse genetic studies demonstrated that interferon (IFN)-α/β immunity defects increased susceptibility to virus-induced myocarditis. Moreover, variations in human TLR3, a potent inducer of IFNs, were proposed to underlie AVM. This study sought to evaluate the hypothesis that human genetic factors may underlie AVM in previously healthy children. We tested the role of TLR3-IFN immunity using human induced pluripotent stem cell-derived cardiomyocytes. We then performed whole-exome sequencing of 42 unrelated children with acute myocarditis (AM), some with proven viral causes. We found that TLR3- and STAT1-deficient cardiomyocytes were not more susceptible to Coxsackie virus B3 (CVB3) infection than control cells. Moreover, CVB3 did not induce IFN-α/β and IFN-α/β-stimulated genes in control cardiomyocytes. Finally, exogenous IFN-α did not substantially protect cardiomyocytes against CVB3. We did not observe a significant enrichment of rare variations in TLR3- or IFN-α/β-related genes. Surprisingly, we found that homozygous but not heterozygous rare variants in genes associated with inherited cardiomyopathies were significantly enriched in AM-AVM patients compared with healthy individuals (p = 2.22E-03) or patients with other diseases (p = 1.08E-04). Seven of 42 patients (16.7%) carried rare biallelic (homozygous or compound heterozygous) nonsynonymous or splice-site variations in 6 cardiomyopathy-associated genes (BAG3, DSP, PKP2, RYR2, SCN5A, or TNNI3). Previously silent recessive defects of the myocardium may predispose to acute heart failure presenting as AM, notably after common viral infections in children."	"Screening of the Filamin C Gene in a Large Cohort of Hypertrophic Cardiomyopathy Patients. Recent exome sequencing studies identified filamin C (FLNC) as a candidate gene for hypertrophic cardiomyopathy (HCM). Our aim was to determine the rate of FLNC candidate variants in a large cohort of HCM patients who were also sequenced for the main sarcomere genes. A total of 448 HCM patients were next generation-sequenced (semiconductor chip technology) for the MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1, and FLNC genes. We also sequenced 450 healthy controls from the same population. Based on the reported population frequencies, bioinformatic criteria, and familial segregation, we identified 20 FLNC candidate variants (13 new; 1 nonsense; and 19 missense) in 22 patients. Compared with the patients, only 1 of the control's missense variants was nonreported (P=0.007; Fisher exact probability test). Based on the familial segregation and the reported functional studies, 6 of the candidate variants (in 7 patients) were finally classified as likely pathogenic, 10 as variants of uncertain significance, and 4 as likely benign. We provide a compelling evidence of the involvement of FLNC in the development of HCM. Most of the FLNC variants were associated with mild forms of HCM and a reduced penetrance, with few affected in the families to confirm the segregation. Our work, together with others who found FLNC variants among patients with dilated and restrictive cardiomyopathies, pointed to this gene as an important cause of structural cardiomyopathies."	"Radiosurgery Alters the Endothelial Surface Proteome: Externalized Intracellular Molecules as Potential Vascular Targets in Irradiated Brain Arteriovenous Malformations. Stereotactic radiosurgery (SRS) is an established treatment for brain arteriovenous malformations (AVMs) that drives blood vessel closure through cellular proliferation, thrombosis and fibrosis, but is limited by a delay to occlusion of 2-3 years and a maximum treatable size of 3 cm. In this current study we used SRS as a priming tool to elicit novel protein expression on the endothelium of irradiated AVM vessels, and these proteins were then targeted with prothrombotic conjugates to induce rapid thrombosis and vessel closure. SRS-induced protein changes on the endothelium in an animal model of AVM were examined using in vivo biotin labeling of surface-accessible proteins and comparative proteomics. LC-MS/MS using SWATH acquisition label-free mass spectrometry identified 280 proteins in biotin-enriched fractions. The abundance of 56 proteins increased after irradiation of the rat arteriovenous fistula (20 Gy, ≥1.5-fold). A large proportion of intracellular proteins were present in this subset: 29 mitochondrial and 9 cytoskeletal. Three of these proteins were chosen for further validation based on previously published evidence for surface localization and a role in autoimmune stimulation: cardiac troponin I (TNNI3); manganese superoxide dismutase (SOD2); and the E2 subunit of the pyruvate dehydrogenase complex (PDCE2). Immunostaining of AVM vessels confirmed an increase in abundance of PDCE2 across the vessel wall, but not a measurable increase in TNNI3 or SOD2. All three proteins co-localized with the endothelium after irradiation, however, more detailed subcellular distribution could not be accurately established. In vitro, radiation-stimulated surface translocation of all three proteins was confirmed in nonpermeabilized brain endothelial cells using immunocytochemistry. Total protein abundance increased modestly after irradiation for PDCE2 and SOD2 but decreased for TNNI3, suggesting that radiation primarily affects subcellular distribution rather than protein levels. The novel identification of these proteins as surface exposed in response to radiation raises important questions about their potential role in radiation-induced inflammation, fibrosis and autoimmunity, but may also provide unique candidates for vascular targeting in brain AVMs and other vascular tissues."	"Restrictive Cardiomyopathy Resulting from a Troponin I Type 3 Mutation in a Chinese Family. Objective To identify the pathogenic variant responsible for restrictive cardiomyopathy (RCM) in a Chinese family.Methods Next generation sequencing was used for detecting the mutation and Results verified by sequencing. We used restriction enzyme digestion to test the mutation in the family members and 200 unrelated normal subjects without any cardiac inherited diseases when the mutation was identified.Results Five individuals died from cardiac diseases, two of whom suffered from sudden cardiac death. Two individuals have suffered from chronic cardiac disorders. Mutation analysis revealed a novel missense mutation in exon 7 of troponin I type 3 (TNNI3), resulting in substitution of serine (S) with proline (P) at amino acid position 150, which cosegregated with the disease in the family, which is predicted to be probably damaging using PolyPhen-2. The mutation was not detected in the 200 unrelated subjects we tested.Conclusion Using next generation sequencing, which has very recently been shown to be successful in identifying novel causative mutations of rare Mendelian disorders, we found a novel mutation of TNNI3 in a Chinese family with RCM."	"5'-Hydroxymethylcytosine Precedes Loss of CpG Methylation in Enhancers and Genes Undergoing Activation in Cardiomyocyte Maturation. Cardiomyocytes undergo major changes in DNA methylation during maturation and transition to a non-proliferative state after birth. 5'-hydroxylation of methylated cytosines (5hmC) is not only involved in DNA loss of CpG methylation but is also thought to be an epigenetic mark with unique distribution and functions. Here, we sought to get insight into the dynamics of 5'-hydroxymethylcytosine in newborn and adult cardiomyocytes. Cardiomyocyte nuclei from newborn and adult C57BL/6 mice were purified by flow cytometric sorting. 5hmC-containing DNA was captured by selective chemical labeling, followed by deep sequencing. Sequencing reads of library replicates were mapped independently (n = 3 for newborn, n = 2 for adult mice) and merged for further analysis steps. 5hmC coverage was normalized to read length and the total number of mapped reads (RPKM). MethylC-Seq, ChIP-Seq and RNA-Seq data sets of newborn and adult cardiomyocytes served to elucidate specific features of 5hmC at gene bodies and around low methylated regions (LMRs) representing regulatory genomic regions with enhancer function. 163,544 and 315,220 5hmC peaks were identified in P1 and adult cardiomyocytes, respectively. Of these peaks, 66,641 were common between P1 and adult cardiomyocytes with more than 50% reciprocal overlap. P1 and adult 5hmC peaks were overrepresented in genic features such as exons, introns, 3'- and 5'-untranslated regions (UTRs), promotors and transcription end sites (TES). During cardiomyocyte maturation, 5hmC was found to be enriched at sites of subsequent DNA loss of CpG methylation such as gene bodies of upregulated genes (i.e. Atp2a2, Tnni3, Mb, Pdk4). Additionally, centers of postnatally established enhancers were premarked by 5hmC before DNA loss of CpG methylation. Simultaneous analysis of 5hmC-Seq, MethylC-Seq, RNA-Seq and ChIP-Seq data at two defined time points of cardiomyocyte maturation demonstrates that 5hmC is positively associated with gene expression and decorates sites of subsequent DNA loss of CpG methylation."	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Evidence for troponin C (TNNC1) as a gene for autosomal recessive restrictive cardiomyopathy with fatal outcome in infancy. Restrictive cardiomyopathy is a rare form of pediatric cardiac disease, for which the known genes include MYH7, TNNT2, TNNI3, ACTC1, and DES. We describe a pediatric proband with fatal restrictive cardiomyopathy associated with septal hypertrophy and compound heterozygosity for TNNC1 mutations (NM_003280: p.A8V [c.C23T] and p.D145E [c.C435A]). This association between restrictive cardiomyopathy and TNNC1 mutations was strengthened by prospective observations on the second pregnancy in the family which revealed, in the presence of the same TNNC1 genotype, prenatally diagnosed hypertrophic cardiomyopathy which evolved into restrictive cardiomyopathy, heart failure and death at the age of 9 months. Contrary to previous reports, family and population analyses showed that each of the TNNC1 variants was not pathogenic when present alone. Our results (i) confirm that genetic backgrounds of hypertrophic cardiomyopathy and restrictive cardiomyopathy overlap and (ii) indicate that TNNC1 is a likely novel gene for autosomal recessive restrictive cardiomyopathy. © 2016 Wiley Periodicals, Inc."	"Genotype-phenotype associations in dilated cardiomyopathy: meta-analysis on more than 8000 individuals. Routine genetic testing in Dilated Cardiomyopathy (DCM) has recently become reality using Next-Generation Sequencing. Several studies have explored the relationship between genotypes and clinical phenotypes to support risk estimation and therapeutic decisions, however, most studies are small or restricted to a few genes. This study provides to our knowledge the first systematic meta-analysis on genotype-phenotype associations in DCM. We retrieved PubMed/Medline literature on genotype-phenotype associations in patients with DCM and mutations in LMNA, PLN, RBM20, MYBPC3, MYH7, TNNT2 and TNNI3. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Together, 48 studies with 8097 patients were included. Furthermore, we reviewed recent studies investigating genotype-phenotype associations in DCM patients with TTN mutations. The average frequency of mutations in the investigated genes was between 1 and 5 %. The mean age of DCM onset was the beginning of the fifth decade for all genes. Heart transplantation (HTx) rate was highest in LMNA mutation carriers (27 %), while RBM20 mutation carriers were transplanted at a markedly younger age (mean 28.5 years). While 73 % of DCM patients with LMNA mutations showed cardiac conduction diseases, low voltage was the reported ECG hallmark in PLN mutation carriers. The frequency of ventricular arrhythmia in DCM patients with LMNA (50 %) and PLN (43 %) mutations was significantly higher. The penetrance of DCM phenotype in subjects with TTN truncating variants increased with age and reached 100 % by age of 70. A pooled analysis of available genotype-phenotype data shows a higher prevalence of sudden cardiac death (SCD), cardiac transplantation, or ventricular arrhythmias in LMNA and PLN mutation carriers compared to sarcomeric gene mutations. This study will further support the clinical interpretation of genetic findings."	"Spectrum of Mutations in Hypertrophic Cardiomyopathy Genes Among Tunisian Patients. Hypertrophic cardiomyopathy (HCM) is a common cardiac genetic disorder associated with heart failure and sudden death. Mutations in the cardiac sarcomere genes are found in approximately half of HCM patients and are more common among cases with a family history of the disease. Data about the mutational spectrum of the sarcomeric genes in HCM patients from Northern Africa are limited. The population of Tunisia is particularly interesting due to its Berber genetic background. As founder mutations have been reported in other disorders. We performed semiconductor chip (Ion Torrent PGM) next generation sequencing of the nine main sarcomeric genes (MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1) as well as the recently identified as an HCM gene, FLNC, in 45 Tunisian HCM patients. We found sarcomere gene polymorphisms in 12 patients (27%), with MYBPC3 and MYH7 representing 83% (10/12) of the mutations. One patient was homozygous for a new MYL3 mutation and two were double MYBPC3 + MYH7 mutation carriers. Screening of the FLNC gene identified three new mutations, which points to FLNC mutations as an important cause of HCM among Tunisians. The mutational background of HCM in Tunisia is heterogeneous. Unlike other Mendelian disorders, there were no highly prevalent mutations that could explain most of the cases. Our study also suggested that FLNC mutations may play a role on the risk for HCM among Tunisians."	"A Next-Generation Sequencing Approach to Identify Gene Mutations in Early- and Late-Onset Hypertrophic Cardiomyopathy Patients of an Italian Cohort. Sequencing of sarcomere protein genes in patients fulfilling the clinical diagnostic criteria for hypertrophic cardiomyopathy (HCM) identifies a disease-causing mutation in 35% to 60% of cases. Age at diagnosis and family history may increase the yield of mutations screening. In order to assess whether Next-Generation Sequencing (NGS) may fulfil the molecular diagnostic needs in HCM, we included 17 HCM-related genes in a sequencing panel run on PGM IonTorrent. We selected 70 HCM patients, 35 with early (≤25 years) and 35 with late (≥65 years) diagnosis of disease onset. All samples had a 98.6% average of target regions, with coverage higher than 20× (mean coverage 620×). We identified 41 different mutations (seven of them novel) in nine genes: MYBPC3 (17/41 = 41%); MYH7 (10/41 = 24%); TNNT2, CAV3 and MYH6 (3/41 = 7.5% each); TNNI3 (2/41 = 5%); GLA, MYL2, and MYL3 (1/41=2.5% each). Mutation detection rate was 30/35 (85.7%) in early-onset and 8/35 (22.9%) in late-onset HCM patients, respectively (p &lt; 0.0001). The overall detection rate for patients with positive family history was 84%, and 90.5% in patients with early disease onset. In our study NGS revealed higher mutations yield in patients with early onset and with a family history of HCM. Appropriate patient selection can increase the yield of genetic testing and make diagnostic testing cost-effective. "	"Hypertrophic Cardiomyopathy Accompanied by Spinocerebellar Atrophy With a Novel Mutation in Troponin I Gene. We report the case of a 66 year-old woman with chronic atrial fibrillation, hypertrophic cardiomyopathy (HCM), and spinocerebellar atrophy (SCA). Her mother and first-born son had died of heart disease at the ages of 65 and 16 years, respectively. Four of her 8 siblings had died suddenly of unknown cause or of heart disease, and 2 others of cerebral infarction by the 7th decade. Genetic testing revealed that she had a novel mutation (c. 482C &gt; A, p. Ala161Asp) in the troponin I gene (TNNI3), and no abnormality of the GAA repeat in the frataxin gene. Her older brother with SCA but without HCM was also analyzed, with no abnormality noted in either gene. The Ala161Asp mutation in TNNI3 was implicated in the pathogenesis of her HCM, though an association between HCM and SCA was not revealed. "	"Knockdown of DNA methyltransferase 3a alters gene expression and inhibits function of embryonic cardiomyocytes. We previously found that in utero caffeine exposure causes down-regulation of DNA methyltransferases (DNMTs) in embryonic heart and results in impaired cardiac function in adulthood. To assess the role of DNMTs in these events, we investigated the effects of reduced DNMT expression on embryonic cardiomyocytes. siRNAs were used to knock down individual DNMT expression in primary cultures of mouse embryonic cardiomyocytes. Immunofluorescence staining was conducted to evaluate cell morphology. A video-based imaging assay and multielectrode array were used to assess cardiomyocyte contractility and electrophysiology, respectively. RNA-Seq and multiplex bisulfite sequencing were performed to examine gene expression and promoter methylation, respectively. At 72 h after transfection, reduced DNMT3a expression, but not DNMT1 or -3b, disrupted sarcomere assembly and decreased beating frequency, contractile movement, amplitude of field action potential, and cytosolic calcium signaling of cardiomyocytes. RNA-Seq analysis revealed that the DNMT3a-deficient cells had deactivated gene networks involved in calcium, endothelin-1, renin-angiotensin, and cardiac β-adrenergic receptor signaling, which were not inhibited by DNMT3b siRNA. Moreover, decreased methylation levels were found in the promoters of Myh7, Myh7b, Tnni3, and Tnnt2, consistent with the up-regulation of these genes by DNMT3a siRNA. These data show that DNMT3a plays an important role in regulating embryonic cardiomyocyte gene expression, morphology and function.-Fang, X., Poulsen, R. R., Wang-Hu, J., Shi, O., Calvo, N. S., Simmons, C. S., Rivkees, S. A., Wendler, C. C. Knockdown of DNA methyltransferase 3a alters gene expression and inhibits function of embryonic cardiomyocytes."	"Setting up Multiplex Panels for Genetic Testing of Familial Hypertrophic Cardiomyopathy Based on Linkage Analysis. Familial hypertrophic cardiomyopathy (HCM) is caused by mutations in genes encoding cardiac sarcomere proteins. Nowadays genetic testing of HCM plays an important role in clinical practice by contributing to the diagnosis, prognosis, and screening of high-risk individuals. The aim of this study was developing a reliable testing strategy for HCM based on linkage analysis and appropriate for Iranian population. Six panels of four microsatellite markers surrounding MYH7, MYBPC3, TNNT2, TNNI3, TPM1, and MYL2 genes (24 markers in total) were selected for multiplex PCR and fragment length analysis. Characteristics of markers and informativeness of the panels were evaluated in 50 unrelated Iranians. The efficacy of the strategy was verified in a family with HCM. All markers were highly polymorphic. The panels were informative in 96-100% of samples. Multipoint linkage analysis excluded the linkage between the disease and all six genes by obtaining maximum LOD score ≤-2. This study suggests a reliable genetic testing method based on linkage analysis between 6 sarcomere genes and familial HCM. It could be applied for diagnostic, predictive, or screening testing in clinical setting."	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"Impact of Genotype on the Occurrence of Atrial Fibrillation in Patients With Hypertrophic Cardiomyopathy. Genes associated with hypertrophic cardiomyopathy (HC) are not uniformly expressed in the atrial myocardium. Whether this may impact susceptibility to atrial fibrillation (AF) is unresolved. To analyze the prevalence and clinical correlates of AF in relation to genotype in a large HC cohort, prevalence and clinical profile of AF were assessed in 237 patients with HC, followed for 14 ± 10 years. Patients were divided into 3 genetic subgroups: (1) MYBPC3 (58%), (2) MYH7 (28%), and (3) &quot;other genotypes&quot; (14%; comprising TNNT2, TNNI3, TPM1, MYL2, complex genotypes, Z-line, and E-C coupling genes). Left atrial size was similar in the 3 subsets. AF occurred in 74 patients with HC (31%), with no difference among groups (31% in MYBPC3, 37% in MYH7 and 18% in other genotypes, p = 0.15), paroxysmal/persistent AF (12%, 18%, and 12%, respectively; p = 0.53), paroxysmal/persistent evolved to permanent (12%, 12%, and 3%, p = 0.36) or permanent AF (7%, 7%, and 3%, p = 0.82). Age at AF onset was younger in the group with other genotypes (37 ± 10 years) compared to the first 2 groups (53 ± 14 and 51 ± 17, respectively; p = 0.05) because of early onset associated with complex genotypes and a specific JPH2 mutation associated with abnormal intracellular calcium handling. At multivariate analysis, independent predictors of AF were atrial diameter (p ≤0.05) and age at diagnosis (p = 0.09), but not genetic subtype (p = 0.35). In conclusion, in patients with HC, genetic testing cannot be used in clinical decision making with regard to management strategies for AF. Genotype is not predictive of onset or severity of AF, which appears rather driven by hemodynamic determinants of atrial dilatation. Exceptions are represented by rare genes suggesting specific molecular pathways for AF in genetic cardiomyopathies."	"Genetic profile of hypertrophic cardiomyopathy in Tunisia: Is it different? We recently performed next generation sequencing (NGS) genetic screening in 11 consecutive and unrelated Tunisian HCM probands seen at Habib Thameur Hospital in Tunis in the first 6 months of 2014, as part of a cooperative study between our Institutions. The clinical diagnosis of HCM was made according to standard criteria. Using the Illumina platform, a panel of 12 genes was analyzed including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2 and MYL3), troponin-T (TNNT2), troponin-I (TNNI3), troponin-C (TNNC1), alpha-tropomyosin (TPM1), alpha-actin (ACTC1), alpha-actinin-2 (ACTN2) as well as alfa-galactosidase (GLA), 5'-AMP-activated protein (PKRAG2), transthyretin (TTR) and lysosomal-associated membrane protein-2 (LAMP2) for exclusion of phenocopies. Our preliminary data, despite limitations inherent to the small sample size, suggest that HCM in Tunisia may have a peculiar genetic background which privileges rare genes overs the classic HCM-associated MHY7 and MYBPC3 genes. "	"A Comprehensive Genomic Analysis Reveals the Genetic Landscape of Mitochondrial Respiratory Chain Complex Deficiencies. Mitochondrial disorders have the highest incidence among congenital metabolic disorders characterized by biochemical respiratory chain complex deficiencies. It occurs at a rate of 1 in 5,000 births, and has phenotypic and genetic heterogeneity. Mutations in about 1,500 nuclear encoded mitochondrial proteins may cause mitochondrial dysfunction of energy production and mitochondrial disorders. More than 250 genes that cause mitochondrial disorders have been reported to date. However exact genetic diagnosis for patients still remained largely unknown. To reveal this heterogeneity, we performed comprehensive genomic analyses for 142 patients with childhood-onset mitochondrial respiratory chain complex deficiencies. The approach includes whole mtDNA and exome analyses using high-throughput sequencing, and chromosomal aberration analyses using high-density oligonucleotide arrays. We identified 37 novel mutations in known mitochondrial disease genes and 3 mitochondria-related genes (MRPS23, QRSL1, and PNPLA4) as novel causative genes. We also identified 2 genes known to cause monogenic diseases (MECP2 and TNNI3) and 3 chromosomal aberrations (6q24.3-q25.1, 17p12, and 22q11.21) as causes in this cohort. Our approaches enhance the ability to identify pathogenic gene mutations in patients with biochemically defined mitochondrial respiratory chain complex deficiencies in clinical settings. They also underscore clinical and genetic heterogeneity and will improve patient care of this complex disorder. "	"Identification of novel, therapy-responsive protein biomarkers in a mouse model of Duchenne muscular dystrophy by aptamer-based serum proteomics. There is currently an urgent need for biomarkers that can be used to monitor the efficacy of experimental therapies for Duchenne Muscular Dystrophy (DMD) in clinical trials. Identification of novel protein biomarkers has been limited due to the massive complexity of the serum proteome and the presence of a small number of very highly abundant proteins. Here we have utilised an aptamer-based proteomics approach to profile 1,129 proteins in the serum of wild-type and mdx (dystrophin deficient) mice. The serum levels of 96 proteins were found to be significantly altered (P &lt; 0.001, q &lt; 0.01) in mdx mice. Additionally, systemic treatment with a peptide-antisense oligonucleotide conjugate designed to induce Dmd exon skipping and recover dystrophin protein expression caused many of the differentially abundant serum proteins to be restored towards wild-type levels. Results for five leading candidate protein biomarkers (Pgam1, Tnni3, Camk2b, Cycs and Adamts5) were validated by ELISA in the mouse samples. Furthermore, ADAMTS5 was found to be significantly elevated in human DMD patient serum. This study has identified multiple novel, therapy-responsive protein biomarkers in the serum of the mdx mouse with potential utility in DMD patients. "	"Green Tea Catechin Normalizes the Enhanced Ca2+ Sensitivity of Myofilaments Regulated by a Hypertrophic Cardiomyopathy-Associated Mutation in Human Cardiac Troponin I (K206I). Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiovascular disease characterized by thickening of ventricular walls and decreased left ventricular chamber volume. The majority of HCM-associated mutations are found in genes encoding sarcomere proteins. Herein, we set out to functionally characterize a novel HCM-associated mutation (K206I-TNNI3) and elucidate the mechanism of dysfunction at the level of myofilament proteins. The male index case was diagnosed with HCM after an out-of-hospital cardiac arrest, which was followed by comprehensive clinical evaluation, transthoracic echocardiography, and clinical genetic testing. To determine molecular mechanism(s) of the mutant human cardiac troponin I (K206I), we tested the Ca(2+) dependence of thin filament-activated myosin-S1-ATPase activity in a reconstituted, regulated, actomyosin system comparing wild-type human troponin complex, 50% mix of K206I/wildtype, or 100% K206I. We also exchanged native troponin detergent extracted fibers with reconstituted troponin containing either wildtype or a 65% mix of K206I/wildtype and measured force generation. The Ca(2+) sensitivity of the myofilaments containing the K206I variant was significantly increased, and when treated with 20 µmol/L (-)-epigallocatechin gallate (green tea) was restored back to wild-type levels in ATPase and force measurements. The K206I mutation impairs the ability of the troponin I to inhibit ATPase activity in the absence of calcium-bound human cardiac troponin C. The ability of calcium-bound human cardiac troponin C to neutralize the inhibition of K206I was greater than with wild-type TnI. Compromised interactions of K206I with actin and hcTnC may lead to impaired relaxation and HCM."	"TNNI1, TNNI2 and TNNI3: Evolution, regulation, and protein structure-function relationships. Troponin I (TnI) is the inhibitory subunit of the troponin complex in the sarcomeric thin filament of striated muscle and plays a central role in the calcium regulation of contraction and relaxation. Vertebrate TnI has evolved into three isoforms encoded by three homologous genes: TNNI1 for slow skeletal muscle TnI, TNNI2 for fast skeletal muscle TnI and TNNI3 for cardiac TnI, which are expressed under muscle type-specific and developmental regulations. To summarize the current knowledge on the TnI isoform genes and products, this review focuses on the evolution, gene regulation, posttranslational modifications, and structure-function relationship of TnI isoform proteins. Their physiological and medical significances are also discussed. "	"A Double Heterozygous Mutation of TNNI3 Causes Hypertrophic Cardiomyopathy in a Han Chinese Family. To investigate the variations in the TNNI3 gene in a Chinese Han family affected by hypertrophic cardiomyopathy (HCM) and the potential molecular mechanism linking these mutations with disease. Peripheral venous blood was acquired from family members, and TNNI3 mutations were identified by DNA sequencing. The pathophysiology of TNNI3 mutations was investigated using bioinformatics, subcellular localization determination and Western blotting. Sanger sequencing revealed that the proband possessed 2 heterozygous mutations, c.235C&gt;T and c.470C&gt;T, located at exons 4 and 6 of the TNNI3 gene. The proband (II-2) and her brother (II-1), who had been previously diagnosed with HCM, harbored both mutations whereas their healthy parents harbored only 1. Alignment of the TNNI3 amino acid sequence indicated that the two Pro residues were highly conserved across species. Subcellular localization showed that both wild-type (WT) and mutant TNNI3 proteins were localized at the cell nucleus. Western blot analysis of expression in human embryonic kidney 293T cells showed that the intracellular levels of the mutant proteins were significantly decreased compared to WT TNNI3 (p &lt; 0.01). Our findings showed that a double heterozygous mutation in the TNNI3 gene is involved in the pathogenesis of HCM via haploinsufficiency. These results will inspire further studies to investigating the link between the TNNI3 gene and HCM."	"Targeted next-generation sequencing of candidate genes reveals novel mutations in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a major cause of sudden cardiac death and heart failure, and it is characterized by genetic and clinical heterogeneity, even for some patients with a very poor clinical prognosis; in the majority of cases, DCM necessitates a heart transplant. Genetic mutations have long been considered to be associated with this disease. At present, mutations in over 50 genes related to DCM have been documented. This study was carried out to elucidate the characteristics of gene mutations in patients with DCM. The candidate genes that may cause DCM include MYBPC3, MYH6, MYH7, LMNA, TNNT2, TNNI3, MYPN, MYL3, TPM1, SCN5A, DES, ACTC1 and RBM20. Using next-generation sequencing (NGS) and subsequent mutation confirmation with traditional capillary Sanger sequencing analysis, possible causative non-synonymous mutations were identified in ~57% (12/21) of patients with DCM. As a result, 7 novel mutations (MYPN, p.E630K; TNNT2, p.G180A; MYH6, p.R1047C; TNNC1, p.D3V; DES, p.R386H; MYBPC3, p.C1124F; and MYL3, p.D126G), 3 variants of uncertain significance (RBM20, p.R1182H; MYH6, p.T1253M; and VCL, p.M209L), and 2 known mutations (MYH7, p.A26V and MYBPC3, p.R160W) were revealed to be associated with DCM. The mutations were most frequently found in the sarcomere (MYH6, MYBPC3, MYH7, TNNC1, TNNT2 and MYL3) and cytoskeletal (MYPN, DES and VCL) genes. As genetic testing is a useful tool in the clinical management of disease, testing for pathogenic mutations is beneficial to the treatment of patients with DCM and may assist in predicting disease risk for their family members before the onset of symptoms."	"A Systematic Review of Phenotypic Features Associated With Cardiac Troponin I Mutations in Hereditary Cardiomyopathies. Genetic investigations have established that mutations in proteins of the contractile unit of the myocardium, known as the sarcomere, may be associated with hypertrophic cardiomyopathy (HCM), restrictive cardiomyopathy (RCM), and dilated cardiomyopathy (DCM). It has become clinical practice to offer genetic testing in affected individuals to identify causative mutations, which provides the basis for presymptomatic testing of relatives who are at risk of disease development. This ensures adequate clinical follow-up of mutation carriers, whereas noncarriers can be discharged. However, before genetic testing can be used for individual risk assessment and prediction of prognosis, it is important to investigate if there is a relation between the clinical disease expression (phenotype) of the condition and mutations in specific disease genes (genotype). We reviewed the literature in relation to phenotypic features reported to be associated with mutations in cardiac troponin I (cTnI; TNNI3), which is a recognized sarcomeric disease gene in all 3 cardiomyopathies. The results of this review did not identify specific genotype-phenotype relations in HCM or DCM, and cTnI appeared to be the most frequent disease gene in RCM. To further explore if there is a genotype-phenotype relation, long-term follow-up studies are needed. It is essential to investigate the natural history of the condition among affected individuals and to provide clinical follow-up on disease development among healthy mutation carriers. Such information is required to provide evidence-based counselling for affected families and to elucidate if knowledge about specific genotypes can be used in future risk prediction models."	"OBSCN Mutations Associated with Dilated Cardiomyopathy and Haploinsufficiency. Studies of the functional consequences of DCM-causing mutations have been limited to a few cases where patients with known mutations had heart transplants. To increase the number of potential tissue samples for direct investigation we performed whole exon sequencing of explanted heart muscle samples from 30 patients that had a diagnosis of familial dilated cardiomyopathy and screened for potentially disease-causing mutations in 58 HCM or DCM-related genes. We identified 5 potentially disease-causing OBSCN mutations in 4 samples; one sample had two OBSCN mutations and one mutation was judged to be not disease-related. Also identified were 6 truncating mutations in TTN, 3 mutations in MYH7, 2 in DSP and one each in TNNC1, TNNI3, MYOM1, VCL, GLA, PLB, TCAP, PKP2 and LAMA4. The mean level of obscurin mRNA was significantly greater and more variable in healthy donor samples than the DCM samples but did not correlate with OBSCN mutations. A single obscurin protein band was observed in human heart myofibrils with apparent mass 960 ± 60 kDa. The three samples with OBSCN mutations had significantly lower levels of obscurin immunoreactive material than DCM samples without OBSCN mutations (45±7, 48±3, and 72±6% of control level).Obscurin levels in DCM controls, donor heart and myectomy samples were the same. OBSCN mutations may result in the development of a DCM phenotype via haploinsufficiency. Mutations in the obscurin gene should be considered as a significant causal factor of DCM, alone or in concert with other mutations."	"Right ventricular protein expression profile in end-stage heart failure. Little is known about the right ventricular (RV) proteome in human heart failure (HF), including possible differences compared to the left ventricular (LV) proteome. We used 2-dimensional differential in-gel electrophoresis (pH: 4-7, 10-150 kDa), followed by liquid chromatography tandem mass spectrometry, to compare the RV and LV proteomes in 12 explanted human hearts. We used Western blotting and multiple-reaction monitoring for protein verification and RNA sequencing for messenger RNA and protein expression correlation. In all 12 hearts, the right ventricles (RVs) demonstrated differential expression of 11 proteins relative to the left ventricles (LVs), including lesser expression of CRYM, TPM1, CLU, TXNL1, and COQ9 and greater expression of TNNI3, SAAI, ERP29, ACTN2, HSPB2, and NDUFS3. Principal-components analysis did not suggest RV-versus-LV proteome partitioning. In the nonischemic RVs (n = 6), 7 proteins were differentially expressed relative to the ischemic RVs (n = 6), including increased expression of CRYM, B7Z964, desmin, ANXA5, and MIME and decreased expression of SERPINA1 and ANT3. Principal-components analysis demonstrated partitioning of the nonischemic and ischemic RV proteomes, and gene ontology analysis identified differences in hemostasis and atherosclerosis-associated networks. There were no proteomic differences between RVs with echocardiographic dysfunction (n = 8) and those with normal function (n = 4). Messenger RNA and protein expression did not correlate consistently, suggesting a major role for RV posttranscriptional protein expression regulation. Differences in contractile, cytoskeletal, metabolic, signaling, and survival pathways exist between the RV and the LV in HF and may be related to the underlying HF etiology and differential posttranscriptional regulation. "	"cAMP induces hypertrophy and alters DNA methylation in HL-1 cardiomyocytes. cAMP is a highly regulated secondary messenger involved in many biological processes. Chronic activation of the cAMP pathway by catecholamines results in cardiac hypertrophy and fibrosis; however, the mechanism by which elevated cAMP leads to cardiomyopathy is not fully understood. To address this issue, we increased intracellular cAMP levels in HL-1 cardiomyocytes, a cell line derived from adult mouse atrium, using either the stable cAMP analog N(6),2'-O-dibutyryladenosine 3',5'-cyclic monophosphate (DBcAMP) or phosphodiesterase (PDE) inhibitors caffeine and theophylline. Elevated cAMP levels increased cell size and altered expression levels of cardiac genes and micro-RNAs associated with hypertrophic cardiomyopathy (HCM), including Myh6, Myh7, Myh7b, Tnni3, Anp, Bnp, Gata4, Mef2c, Mef2d, Nfatc1, miR208a, and miR208b. In addition, DBcAMP altered the expression of DNA methyltransferases (Dnmts) and Tet methylcytosine dioxygenases (Tets), enzymes that regulate genomic DNA methylation levels. Changes in expression of DNA methylation genes induced by elevated cAMP led to increased global DNA methylation in HL-1 cells. In contrast, inhibition of DNMT activity with 5-azacytidine treatment decreased global DNA methylation levels and blocked the increased expression of several HCM genes (Myh7, Gata4, Mef2c, Nfatc1, Myh7b, Tnni3, and Bnp) observed with DBcAMP treatment. These results demonstrate that cAMP induces cardiomyocyte hypertrophy and altered HCM gene expression in vitro and that DNA methylation patterns mediate the upregulation of HCM genes induced by cAMP. These data identify a previously unknown mechanism by which elevated levels of cAMP lead to increased expression of genes associated with cardiomyocyte hypertrophy. "	"Targeted Next-Generation Sequencing Reveals Hot Spots and Doubly Heterozygous Mutations in Chinese Patients with Familial Cardiomyopathy. As a common cardiac disease mainly caused by gene mutations in sarcomeric cytoskeletal, calcium-handling, nuclear envelope, desmosomal, and transcription factor genes, inherited cardiomyopathy is becoming one of the major etiological factors of sudden cardiac death (SCD) and heart failure (HF). This disease is characterized by remarkable genetic heterogeneity, which makes it difficult to screen for pathogenic mutations using Sanger sequencing. In the present study, three probands, one with familial hypertrophic cardiomyopathy (FHCM) and two with familial dilated cardiomyopathy (FDCM), were recruited together with their respective family members. Using next-generation sequencing technology (NGS), 24 genes frequently known to be related to inherited cardiomyopathy were screened. Two hot spots (TNNI3-p.Arg145Gly, and LMNA-p.Arg190Trp) and double (LMNA-p.Arg190Trp plus MYH7-p.Arg1045His) heterozygous mutations were found to be highly correlated with familial cardiomyopathy. FDCM patients with doubly heterozygous mutations show a notably severe phenotype as we could confirm in our study; this indicates that the double mutations had a dose effect. In addition, it is proposed that genetic testing using NGS technology can be used as a cost-effective screening tool and help guide the treatment of patients with familial cardiomyopathy particularly regarding the risk of family members who are clinically asymptomatic. "	"Screening of sarcomere gene mutations in young athletes with abnormal findings in electrocardiography: identification of a MYH7 mutation and MYBPC3 mutations. There is an overlap between the physiological cardiac remodeling associated with training in athletes, the so-called athlete's heart, and mild forms of hypertrophic cardiomyopathy (HCM), the most common hereditary cardiac disease. HCM is often accompanied by unfavorable outcomes including a sudden cardiac death in the adolescents. Because one of the initial signs of HCM is abnormality in electrocardiogram (ECG), athletes may need to monitor for ECG findings to prevent any unfavorable outcomes. HCM is caused by mutations in genes for sarcomere proteins, but there is no report on the systematic screening of gene mutations in athletes. One hundred and two genetically unrelated young Japanese athletes with abnormal ECG findings were the subjects for the analysis of four sarcomere genes, MYH7, MYBPC3, TNNT2 and TNNI3. We found that 5 out of 102 (4.9%) athletes carried mutations: a heterozygous MYH7 Glu935Lys mutation, a heterozygous MYBPC3 Arg160Trp mutation and another heterozygous MYBPC3 Thr1046Met mutation, all of which had been reported as HCM-associated mutations, in 1, 2 and 2 subjects, respectively. This is the first study of systematic screening of sarcomere gene mutations in a cohort of athletes with abnormal ECG, demonstrating the presence of sarcomere gene mutations in the athlete's heart. "	"Identification of rare variants in TNNI3 with atrial fibrillation in a Chinese GeneID population. Despite advances by genome-wide association studies (GWAS), much of heritability of common human diseases remains missing, a phenomenon referred to as 'missing heritability'. One potential cause for 'missing heritability' is the rare susceptibility variants overlooked by GWAS. Atrial fibrillation (AF) is the most common arrhythmia seen at hospitals and increases risk of stroke by fivefold and doubles risk of heart failure and sudden death. Here, we studied one large Chinese family with AF and hypertrophic cardiomyopathy (HCM). Whole-exome sequencing analysis identified a mutation in TNNI3, R186Q, that co-segregated with the disease in the family, but did not exist in &gt;1583 controls, suggesting that R186Q causes AF and HCM. High-resolution melting curve analysis and direct DNA sequence analysis were then used to screen mutations in all exons and exon-intron boundaries of TNNI3 in a panel of 1127 unrelated AF patients and 1583 non-AF subjects. Four novel missense variants were identified in TNNI3, including E64G, M154L, E187G and D196G in four independent AF patients, but no variant was found in 1583 non-AF subjects. All variants were not found in public databases, including the ExAC Browser database with 60,706 exomes. These data suggest that rare TNNI3 variants are associated with AF (P = 0.03). TNNI3 encodes troponin I, a key regulator of the contraction-relaxation function of cardiac muscle and was not previously implicated in AF. Thus, this study may identify a new biological pathway for the pathogenesis of AF and provides evidence to support the rare variant hypothesis for missing heritability. "	"Diagnostic disparity and identification of two TNNI3 gene mutations, one novel and one arising de novo, in South African patients with restrictive cardiomyopathy and focal ventricular hypertrophy. The minimum criterion for the diagnosis of hypertrophic cardiomyopathy (HCM) is thickening of the left ventricular wall, typically in an asymmetrical or focal fashion, and it requires no functional deficit. Using this criterion, we identified a family with four affected individuals and a single unrelated individual essentially with restrictive cardiomyopathy (RCM). Mutations in genes coding for the thin filaments of cardiac muscle have been described in RCM and HCM with 'restrictive features'. One such gene encodes for cardiac troponin I (TNNI3), a sub-unit of the troponin complex involved in the regulation of striated muscle contraction. We hypothesised that mutations in TNNI3 could underlie this particular phenotype, and we therefore screened TNNI3 for mutations in 115 HCM probands. Clinical investigation involved examination, echocardiography, chest X-ray and an electrocardiogram of both the index cases and close relatives. The study cohort consisted of 113 South African HCM probands, with and without known founder HCM mutations, and 100 ethnically matched control individuals. Mutation screening of TNNI3 for diseasecausing mutations were performed using high-resolution melt (HRM) analysis. HRM analyses identified three previously described HCM-causing mutations (p.Pro82Ser, p.Arg162Gln, p.Arg170Gln) and a novel exonic variant (p.Leu144His). A previous study involving the same amino acid identified a p.Leu144Gln mutation in a patient presenting with RCM, with clinical features of HCM. We observed the novel p.Leu144His mutation in three siblings with clinical RCM and varying degrees of ventricular hypertrophy. The isolated index case with the de novo p.Arg170Gln mutation presented with a similar phenotype. Both mutations were absent in a healthy control group. We have identified a novel disease-causing p.Leu144His mutation and a de novo p.Arg170Gln mutation associated with RCM and focal ventricular hypertrophy, often below the typical diagnostic threshold for HCM. Our study provides information regarding TNNI3 mutations underlying RCM in contrast to other causes of a similar presentation, such as constrictive pericarditis or infiltration of cardiac muscle, all with marked right-sided cardiac manifestations. This study therefore highlights the need for extensive mutation screening of genes encoding for sarcomeric proteins, such as TNNI3 to identify the underlying cause of this particular phenotype."	"Targeted next-generation sequencing (NGS) of nine candidate genes with custom AmpliSeq in patients and a cardiomyopathy risk group. Hypertrophic cardiomyopathy is a common genetic cardiac disease. Prevention and early diagnosis of this disease are very important. Because of the large number of causative genes and the high rate of mutations involved in the pathogenesis of this disease, traditional methods of early diagnosis are ineffective. We developed a custom AmpliSeq panel for NGS sequencing of the coding sequences of ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNI3, TNNT2, TPM1, and CASQ2. A genetic analysis of student cohorts (with and without cardiomyopathy risk in their medical histories) and patients with cardiomyopathies was performed. For the statistical and bioinformatics analysis, Polyphen2, SIFT, SnpSift and PLINK software were used. To select genetic markers in the patients with cardiomyopathy and in the students of the high risk group, four additive models were applied. Our AmpliSeq custom panel allowed us to efficiently explore targeted sequences. Based on the score analysis, we detected three substitutions in the MYBPC3 and CASQ2 genes and six combinations between loci in the MYBPC3, MYH7 and CASQ2 genes that were responsible for cardiomyopathy risk in our cohorts. We also detected substitutions in the TNNT2 gene that can be considered as protective against cardiomyopathy. We used NGS with AmpliSeq libraries and Ion PGM sequencing to develop improved predictive information for patients at risk of cardiomyopathy."	"Coexistence of Digenic Mutations in Both Thin (TPM1) and Thick (MYH7) Filaments of Sarcomeric Genes Leads to Severe Hypertrophic Cardiomyopathy in a South Indian FHCM. Mutations in sarcomeric genes are the leading cause for cardiomyopathies. However, not many genetic studies have been carried out on Indian cardiomyopathy patients. We performed sequence analyses of a thin filament sarcomeric gene, α-tropomyosin (TPM1), in 101 hypertrophic cardiomyopathy (HCM) patients and 147 dilated cardiomyopathy (DCM) patients against 207 ethnically matched healthy controls, revealing 13 single nucleotide polymorphisms (SNPs). Of these, one mutant, S215L, was identified in two unrelated HCM cases-patient #1, aged 44, and patient #2, aged 65-and was cosegregating with disease in these families as an autosomal dominant trait. In contrast, S215L was completely absent in 147 DCM and 207 controls. Patient #1 showed a more severe disease phenotype, with poor prognosis and a family history of sudden cardiac death, than patient #2. Therefore, these two patients and the family members positive for S215L were further screened for variations in MYH7, MYBPC3, TNNT2, TNNI3, MYL2, MYL3, and ACTC. Interestingly, two novel thick filaments, D896N (homozygous) and I524K (heterozygous) mutations, in the MYH7 gene were identified exclusively in patient #1 and his family members. Thus, we strongly suggest that the coexistence of these digenic mutations is rare, but leads to severe hypertrophy in a South Indian familial hypertrophic cardiomyopathy (FHCM)."	"Increased extent of myocardial fibrosis in genotyped hypertrophic cardiomyopathy with ventricular tachyarrhythmias. Occurrence of malignant ventricular tachyarrhythmias such as ventricular tachycardia and fibrillation (VT/VF) in hypertrophic cardiomyopathy (HCM) can be related to the extent of myocardial fibrosis. Although late gadolinium enhancement (LGE) on cardiovascular magnetic resonance (CMR) imaging has been used to detect myocardial fibrosis, few data exist regarding relationships between CMR-determined myocardial fibrosis and VT/VF in genotyped HCM populations. We retrospectively investigated whether the extent of LGE can be increased in HCM patients with VT/VF compared to those without VT/VF in the genotyped HCM population. We studied 35 HCM patients harboring sarcomere gene mutations (TNNI3=22, MYBPC3=12, MYH7=1) who underwent both CMR imaging and 24-h ambulatory electrocardiographic monitoring. VT/VF were identified in 6 patients (2 men, mean age 55.0 years). The extent of LGE was significantly increased in patients with VT/VF (n=6) compared with those without VT/VF (n=29) (18.6±14.4% vs. 8.3±11.4%, p=0.04), although the LGE extent was not an independent predictor for the occurrence of VT/VF. Applying a cut-off point ≥3.25%, episodes of VT/VF were identified with a sensitivity of 100%, specificity of 51.7%, positive predictive value of 30%, negative predictive value of 100%, and the area under the curve of 0.767 (95% confidence interval: 0.590-0.944). These results demonstrate that myocardial fibrosis determined by CMR imaging may be increased in genotyped HCM patients with episodes of VT/VF. A further prospective study will be needed to clarify the association between the LGE extent and arrhythmic events in HCM patients harboring sarcomere gene mutations."	"Fragmented QRS predicts heart failure progression in patients with hypertrophic cardiomyopathy. Although fragmented QRS complex (frag-QRS) reflecting intra-ventricular conduction delay has been shown to be a prognostic marker for cardiac events, few data exist regarding the impact of frag-QRS on cardiac events in hypertrophic cardiomyopathy (HCM). Ninety-four HCM patients (56 male; mean age, 58 ± 17 years) were retrospectively investigated. Frag-QRS was defined as the presence of various RsR' patterns in at least 2 contiguous ECG leads. Major arrhythmic events (MAE) were defined as sudden cardiac death, and combined sustained ventricular tachycardia/ventricular fibrillation. New-onset atrial fibrillation (AF) was diagnosed based on ECG during provisional or routine medical examination. Heart failure (HF) with hospitalization was defined as hospital admission due to subjective or objective symptoms. Frag-QRS was detected in 31 patients (33%).TNNI3 was the most frequent disease-causing gene. Median follow-up was 4.6 years. The 4-year cumulative survival rates of cardiac death, MAE, new-onset AF and HF with hospitalization were 97.6%, 94.6%, 87.5% and 89.3%, respectively. On multivariate analysis, frag-QRS was significantly associated with HF with hospitalization (adjusted hazard ratios [95% confidence intervals]: 5.4 [1.2-36], P=0.03). Moreover, HF-free survival was significantly lower in the frag-QRS (+) group compared to the frag-QRS (-) group (79.0% vs. 95.1%, P=0.03). Frag-QRS is associated with HF with hospitalization in HCM patients who had a unique distribution of gene mutations."	"Acquisition of a quantitative, stoichiometrically conserved ratiometric marker of maturation status in stem cell-derived cardiac myocytes. There is no consensus in the stem cell field as to what constitutes the mature cardiac myocyte. Thus, helping formalize a molecular signature for cardiac myocyte maturation would advance the field. In the mammalian heart, inactivation of the &quot;fetal&quot; TNNI gene, TNNI1 (ssTnI), together in temporal concert with its stoichiometric replacement by the adult TNNI gene product, TNNI3 (cTnI), represents a quantifiable ratiometric maturation signature. We examined the TNNI isoform transition in human induced pluripotent stem cell (iPSC) cardiac myocytes (hiPSC-CMs) and found the fetal TNNI signature, even during long-term culture. Rodent stem cell-derived and primary myocytes, however, transitioned to the adult TnI profile. Acute genetic engineering of hiPSC-CMs enabled a rapid conversion toward the mature TnI profile. While there is no single marker to denote the mature cardiac myocyte, we propose that tracking the cTnI:ssTnI protein isoform ratio provides a valuable maturation signature to quantify myocyte maturation status across laboratories. "	"Caffeine exposure alters cardiac gene expression in embryonic cardiomyocytes. Previous studies demonstrated that in utero caffeine treatment at embryonic day (E) 8.5 alters DNA methylation patterns, gene expression, and cardiac function in adult mice. To provide insight into the mechanisms, we examined cardiac gene and microRNA (miRNA) expression in cardiomyocytes shortly after exposure to physiologically relevant doses of caffeine. In HL-1 and primary embryonic cardiomyocytes, caffeine treatment for 48 h significantly altered the expression of cardiac structural genes (Myh6, Myh7, Myh7b, Tnni3), hormonal genes (Anp and BnP), cardiac transcription factors (Gata4, Mef2c, Mef2d, Nfatc1), and microRNAs (miRNAs; miR208a, miR208b, miR499). In addition, expressions of these genes were significantly altered in embryonic hearts exposed to in utero caffeine. For in utero experiments, pregnant CD-1 dams were treated with 20-60 mg/kg of caffeine, which resulted in maternal circulation levels of 37.3-65.3 μM 2 h after treatment. RNA sequencing was performed on embryonic ventricles treated with vehicle or 20 mg/kg of caffeine daily from E6.5-9.5. Differential expression (DE) analysis revealed that 124 genes and 849 transcripts were significantly altered, and differential exon usage (DEU) analysis identified 597 exons that were changed in response to prenatal caffeine exposure. Among the DE genes identified by RNA sequencing were several cardiac structural genes and genes that control DNA methylation and histone modification. Pathway analysis revealed that pathways related to cardiovascular development and diseases were significantly affected by caffeine. In addition, global cardiac DNA methylation was reduced in caffeine-treated cardiomyocytes. Collectively, these data demonstrate that caffeine exposure alters gene expression and DNA methylation in embryonic cardiomyocytes. "	"Mutation analysis of the main hypertrophic cardiomyopathy genes using multiplex amplification and semiconductor next-generation sequencing. Mutations in at least 30 genes have been linked to hypertrophic cardiomyopathy (HCM). Due to the large size of the main HCM genes, Sanger sequencing is labor intensive and expensive. The purpose was to develop a next-generation sequencing (NGS) procedure for the main HCM genes. METHODS AND RESULTS: Multiplex amplification of the coding exons of MYH7,MYBPC3,TNNT2,TNNI3,ACTC1,TNNC1,MYL2,MYL3, and TPM1 was designated, followed by NGS with the Ion Torrent PGM (Life Technologies). A total of 8 pools containing DNA from HCM patients were sequenced in a 2-step approach. First, a total of 60 patients (validation cohort) underwent both PGM and Sanger sequencing for the 9 genes. No false-negative variants were found on NGS (100% sensitivity), and a specificity of 97% and 80% was achieved for single-nucleotide and insertion/deletion variants, respectively. Second, the PGM was used to search for mutations in a total of 76 cases not previously studied (discovery cohort). A total of 19 putative mutations were identified in the discovery pools, which were confirmed and assigned to specific patients on Sanger sequencing. An NGS procedure has been developed for the main sarcomeric genes that would facilitate the screening of large cohorts of patients. In addition, this procedure would facilitate the uncovering of rare gene variants on a population scale."	"High efficiency differentiation of human pluripotent stem cells to cardiomyocytes and characterization by flow cytometry. There is an urgent need to develop approaches for repairing the damaged heart, discovering new therapeutic drugs that do not have toxic effects on the heart, and improving strategies to accurately model heart disease. The potential of exploiting human induced pluripotent stem cell (hiPSC) technology to generate cardiac muscle &quot;in a dish&quot; for these applications continues to generate high enthusiasm. In recent years, the ability to efficiently generate cardiomyogenic cells from human pluripotent stem cells (hPSCs) has greatly improved, offering us new opportunities to model very early stages of human cardiac development not otherwise accessible. In contrast to many previous methods, the cardiomyocyte differentiation protocol described here does not require cell aggregation or the addition of Activin A or BMP4 and robustly generates cultures of cells that are highly positive for cardiac troponin I and T (TNNI3, TNNT2), iroquois-class homeodomain protein IRX-4 (IRX4), myosin regulatory light chain 2, ventricular/cardiac muscle isoform (MLC2v) and myosin regulatory light chain 2, atrial isoform (MLC2a) by day 10 across all human embryonic stem cell (hESC) and hiPSC lines tested to date. Cells can be passaged and maintained for more than 90 days in culture. The strategy is technically simple to implement and cost-effective. Characterization of cardiomyocytes derived from pluripotent cells often includes the analysis of reference markers, both at the mRNA and protein level. For protein analysis, flow cytometry is a powerful analytical tool for assessing quality of cells in culture and determining subpopulation homogeneity. However, technical variation in sample preparation can significantly affect quality of flow cytometry data. Thus, standardization of staining protocols should facilitate comparisons among various differentiation strategies. Accordingly, optimized staining protocols for the analysis of IRX4, MLC2v, MLC2a, TNNI3, and TNNT2 by flow cytometry are described. "	"The novel regulations of MEF2A, CAMKK2, CALM3, and TNNI3 in ventricular hypertrophy induced by arsenic exposure in rats. Arsenic is a ubiquitous toxic compound that exists naturally in many sources such as soil, groundwater, and food; in which vast majority forms are arsenite (As(3+)) or arsenate (As(5+)). The mechanism of arsenic detoxification in humans still remains obscured. Epidemiologic studies documented that arsenic pollution caused black foot disease, cardiovascular diseases (hypertension, hypotension, cardiomyopathy), bladder cancer and skin cancer in many countries in which Taiwan is considered as high arsenic exposure country for long time ago. However, the effects of arsenic to cardiac functions still lacked of investigation while some studies mainly focus on inflammatory and cancer mechanisms. In the present study, we found cardiac hypertrophy signaling may be the most significant pathway for up regulated genes in arsenic exposed patients via bioinformatics approach. To verify our bioinformatics prediction, arsenic was fed orally to rats at different concentration based on previous studies in Taiwan. Using hemodynamic method as the main tool to measure the changes in blood pressure, left ventricular pressure and left ventricular contractility index, the findings suggest that highly exposure to arsenic lead to hypertension; elevated left ventricular diastolic pressure and alteration in cardiac contractility which are supposed to be the interaction between arsenic and cardiac nerves activity via the changing in calcium homeostasis. Collectively, based on our real-time PCR and western blot data strongly suggest that calcium homeostasis may also go through MEF2A, TNNI3, CAMKK2, CALM3 and cardiac hypertrophy relative signaling pathway. "	"Detection of mutations in symptomatic patients with hypertrophic cardiomyopathy in Taiwan. Hypertrophic cardiomyopathy (HCM) is a common genetic cardiac disorder associated with sudden death, heart failure, and stroke. The aim of the present study was to evaluate the prevalence and types of mutations in symptomatic patients with HCM in Taiwan. Thirty-eight HCM index patients (mean age 60±16 years) underwent systematic mutation screening of eight sarcomeric genes: β-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), troponin I (TNNI3), myosin ventricular regulatory light chain 2 (MYL2), myosin ventricular essential light chain 1 (MYL3), α-tropomyosin (TPM1), and cardiac α-actin (ACTC), using direct DNA sequencing. In silico programs predicted damaging amino acids. In the positive families, genotype-phenotype correlation studies were done. Overall, 13 mutations were identified in 13 index patients (34.2%). The three most frequently mutated genes were MYH7, MYBPC3, and TNNT2. One patient carried double mutations. Five mutations (MYH7 R147S; MYBPC3 R597Q; MYBPC3 W1007R; TNNI3 E124Q; MYL3 R63C) were novel; all were missense mutations. Analysis using in silico tools showed near consensus to classify these five novel mutations as pathological. Family pedigree analysis showed the presence of cosegregation in at least two affected members in each proband family, but incomplete penetrance in young family members with a positive genotype. We identified 13 HCM pedigrees, including 5 carrying novel mutations and 1 with a double mutation. The three most commonly mutated genes were MYH7, MYBPC3, and TNNT2. These results, together with genetic counseling, could lead to earlier diagnosis and better management of family members at risk of HCM."	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"A novel arginine to tryptophan (R144W) mutation in troponin T (cTnT) gene in an indian multigenerational family with dilated cardiomyopathy (FDCM). Cardiomyopathy is a major cause of heart failure and sudden cardiac death; several mutations in sarcomeric protein genes have been associated with this disease. Our aim in the present study is to investigate the genetic variations in Troponin T (cTnT) gene and its association with dilated cardiomyopathy (DCM) in south-Indian patients. Analyses of all the exons and exon-intron boundaries of cTnT in 147 DCM and in 207 healthy controls had revealed a total of 15 SNPs and a 5 bp INDEL; of which, polymorphic SNPs were compared with the HapMap population data. Interestingly, a novel R144W mutation, that substitutes polar-neutral tryptophan for a highly conserved basic arginine in cTnT, altering the charge drastically, was identified in a DCM, with a family history of sudden-cardiac death (SCD). This mutation was found within the tropomyosin (TPM1) binding domain, and was evolutionarily conserved across species, therefore it is expected to have a significant impact on the structure and function of the protein. Family studies had revealed that the R144W is co-segregating with disease in the family as an autosomal dominant trait, but it was completely absent in 207 healthy controls and in 162 previously studied HCM patients. Further screening of the proband and three of his family members (positive for R144W mutant) with eight other genes β-MYH7, MYBPC3, TPM1, TNNI3, TTN, ACTC, MYL2 and MYL3, did not reveal any disease causing mutation, proposing the absence of compound heterozygosity. Therefore, we strongly suggest that the novel R144W unique/private mutant identified in this study is associated with FDCM. This is furthermore signifying the unique genetic architecture of Indian population. "	"A low prevalence of sarcomeric gene variants in a Chinese cohort with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is genetically heterogeneous. It has been previously shown that LVNC is associated with defects in TAZ, DNTA, LDB3, YWHAE, MIB1, PRDM16, and sarcomeric genes. This study was aimed to investigate sarcomeric gene mutations in a Chinese population with LVNC. From 2004 to 2010, 57 unrelated Chinese patients with LVNC were recruited at Fuwai Hospital, Beijing, China. Detailed clinical evaluation was performed on the probands and available family members. DNA samples isolated from the peripheral blood of the index cases were screened for 10 sarcomeric genes, including MYH7, MYBPC3, MYL2, MYL3, MYH6, TNNC1, TNNT2, TNNI3, TPM1, and ACTC1. Seven heterozygous mutations (6 missense and 1 deletion) were identified in 7 (12 %) of the patients. These mutations were distributed among 4 genes, 4 in MYH7, and 1 each in ACTC1, TNNT2, and TPM1. Six of the mutations were novel and another one was reported previously. All mutations affected conserved amino acid residues and were predicted to alter the structure of the proteins by in silico analysis. No significant difference was observed between mutation-positive and mutation-negative patients with respect to clinical characteristics at baseline and mortality during follow-up. In conclusion, our study indicates that sarcomeric gene mutations are uncommon causes of LVNC in Chinese patients and genetic background of the disease may be divergent among the different races."	"Genetic testing in the management of relatives of patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy is the most common genetic cardiac disease with vast genetic heterogeneity. First-degree relatives of patients with HCM are at 50% risk of inheriting the disease-causing mutation. Genetic testing is helpful in identifying the relatives harbouring the mutations. When genetic testing is not available, relatives need to be examined regularly. We tested a cohort of 99 unrelated patients with HCM for mutations in MYH7, MYBPC3, TNNI3 and TNNT2 genes. In families with identified pathogenic mutation, we performed genetic and clinical examination in relatives to study the influence of genetic testing on the management of the relatives and to study the usefulness of echocardiographic criteria for distinguishing relatives with positive and negative genotype. We identified 38 genetic variants in 47 patients (47 %). Fifteen of these variants in 21 patients (21 %) were pathogenic mutations. We performed genetic testing in 52 relatives (18 of them (35 %) yielding positive results). Genetic testing of one HCM patient allowed us to omit 2.45-5.15 future cardiologic examinations of the relatives. None of the studied echocardiographic criteria were significantly different between the relatives with positive and negative genotypes, with the exception of a combined echocardiographic score (genotype positive vs. genotype negative, 3.316 vs. -0.489, P = 0.01). As a conclusion, our study of HCM patients and their relatives confirmed the role of genetic testing in the management of the relatives and found only limited benefit of the proposed echocardiographic parameters in identifying disease-causing mutation carriers. "	"Pediatric restrictive cardiomyopathy due to a heterozygous mutation of the TNNI3 gene. Pediatric restrictive cardiomyopathy is rare and most commonly idiopathic in origin. Here, we applied a candidate gene approach and identified a missense mutation in the cardiac troponin I gene in a 12-year-old Chinese girl with restrictive cardiomyopathy. This study indicates that mutation in sarcomere protein genes may play an important role in idiopathic pediatric restrictive cardiomyopathy. "	"The novel mitochondrial 16S rRNA 2336T&gt;C mutation is associated with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a primary disorder characterised by asymmetric thickening of septum and left ventricular wall, with a prevalence of 0.2% in the general population. To describe a novel mitochondrial DNA mutation and its association with the pathogenesis of HCM. All maternal members of a Chinese family with maternally transmitted HCM exhibited variable severity and age at onset, and were implanted permanent pacemakers due to complete atrioventricular block (AVB). Nuclear gene screening (MYH7, MYBPC3, TNNT2 and TNNI3) was performed, and no potential pathogenic mutation was identified. Mitochondrial DNA sequencing analysis identified a novel homoplasmic 16S rRNA 2336T&gt;C mutation. This mutation was exclusively present in maternal members and absent in non-maternal members. Conservation index by comparison to 16 other vertebrates was 94.1%. This mutation disturbs the 2336U-A2438 base pair in the stem-loop structure of 16S rRNA domain III, which is involved in the assembly of mitochondrial ribosome. Oxygen consumption rate of the lymphoblastoid cells carrying 2336T&gt;C mutation had decreased by 37% compared with controls. A reduction in mitochondrial ATP synthesis and an increase in reactive oxidative species production were also observed. Electron microscopic analysis indicated elongated mitochondria and abnormal mitochondrial cristae shape in mutant cells. It is suggested that the 2336T&gt;C mutation is one of pathogenic mutations of HCM. This is the first report of mitochondrial 16S rRNA 2336T&gt;C mutation and an association with maternally inherited HCM combined with AVB. Our findings provide a new insight into the pathogenesis of HCM."	"Genetic and epigenetic control of metabolic health. Obesity is characterized as an excess accumulation of body fat resulting from a positive energy balance. It is the major risk factor for type 2 diabetes (T2D). The evidence for familial aggregation of obesity and its associated metabolic diseases is substantial. To date, about 150 genetic loci identified in genome-wide association studies (GWAS) are linked with obesity and T2D, each accounting for only a small proportion of the predicted heritability. However, the percentage of overall trait variance explained by these associated loci is modest (~5-10% for T2D, ~2% for BMI). The lack of powerful genetic associations suggests that heritability is not entirely attributable to gene variations. Some of the familial aggregation as well as many of the effects of environmental exposures, may reflect epigenetic processes. This review summarizes our current knowledge on the genetic basis to individual risk of obesity and T2D, and explores the potential role of epigenetic contribution. "	"Genetics of hypertrophic cardiomyopathy in Norway. Genetic testing for hypertrophic cardiomyopathy (HCM) became available in Norway in 2003. Here, we describe the results of this testing in probands with HCM referred until the end of 2012. The translated exons of MYBPC3, MYH7, TNNI3, TNNT2, MYL2 and MYL3 were analyzed in two groups of probands. In Group 1, comprising 696 probands above 1 year of age, a mutation was found in 203 patients (29.2%). Of those, 5.9% were carriers of two mutations. Mean age in double mutation carriers, single mutation carriers and mutation negative probands was 44 years (± 19 years), 50 years (± 5 years) and 55 years (± 6 years), respectively. In Group 2, comprising 26 infants below the age of 1, a mutation was found in 15.4%. A total of 120 different mutations were found of which 51 (42.5%) were novel."	"Studies on RNA integrity and gene expression in human myocardial tissue, pericardial fluid and blood, and its postmortem stability. Analyses of gene expression of ischemic myocardial injury and repair related proteins has been carried out for the first time in samples from five specific sites of the myocardium, pericardial fluid and blood from thirty cadavers in relation to post-mortem interval (PMI). RNA integrity was evaluated by RNA integrity number (RIN), with values ranging from 6.57 to 8.11; sufficiently high levels of integrity to permit further gene amplification. No significant correlations between RIN and PMI in any samples were detected. Prior to target gene expression analysis, a normalization strategy was carried out to assess candidate reference gene stability, involving the analysis and comparison of four common housekeeping genes (Glyceraldehide-3-phosphate dehydrogenase, beta-actin, TATA box binding protein and Cyclophilin A). Gene expression of cardiac troponin I (TNNI3), myosin light chain 3 (MYL3), matrix metalloprotease 9 (MMP9), transforming growth factor beta 1 (TGFB1), and vascular endothelial growth factor A (VEGFA) in myocardial zones and body fluids were subsequently studied by real-time quantitative PCR. Expression levels of all the proteins studied in cardiac zone samples were similar. No statistical differences for expression were detected among proteins taken from any myocardial area. No significant differences were detected for TNNI3 and TGFB1 gene expressions when compared with samples at or under 12h-PMI or over 12h-PMI. However, differences in MYL3, MMP9, and VEGFA gene expression in body fluids were found at PMI periods of over 12h. These interesting results may contribute to the refinement of current knowledge regarding cardiac metabolism and improve understanding of the underlying mechanisms involved in myocardium ischemia and its repair. "	"[Clinical characteristics and genetic analysis of three pediatric patients with idiopathic restrictive cardiomyopathy]. Restrictive cardiomyopathy (RCM) is rare in children, and little is known about the molecular basis of RCM. The aim of this study was to investigate the clinical and myopathological characteristics and to detect mutations on cardiac sarcomere protein genes in three idiopathic pediatric RCMs. Detailed clinical characteristics and familiar history were obtained in three idiopathic pediatric RCMs. One hundred healthy pediatric individuals were recruited as controls. Histological evaluation was performed with heart tissue retrieved at catheterization in case-1 and case-2. The entire coding sequences of four cardiac sarcomere protein genes, including cardiac troponin T (TNNT2), cardiac troponin I(TNNI3), β-myosin heavy chain (MYH7), and α-actin (ACTC)were screened for mutations. Sequence variants were then tested in the family as well as in 100 healthy control DNAs. All three index cases were diagnosed as primary RCMs without family history, and their clinical conditions deteriorated rapidly. Case-1 was in combination with ventricular septal defect. Case-2 was in combination with mid- and inferoseptal hypertrophy. In case-1, myocardial biopsies displayed extensive an isomorphism and disarray of cardiomyocytes; electron microscopy showed large stacks of severely dysmorphic megamitochondria and focal Z-disc streaming. In case-2, endomyocardial biopsy revealed moderate myocyte hypertrophy with mild interstitial fibrosis; transmission electron microscopy showed misalignment of Z-bands and unequal Z-Z band distances. Genetic analysis identified two heterozygous missense mutations in TNNI3, with R204H in case-1 and R192H in case-3 respectively. A de novo heterozygous deletion in TNNT2 (p. Asn100_Glu101del) was identified in case-2. Sequence analysis shows that all three mutations are located in a position highly conserved across many species. The three mutations were negative for their parents and controls. The clinical conditions in all three index cases are deteriorated rapidly after diagnosed as primary RCM. Three heterozygous mutations including two in TNNI3 and one in TNNT2 gene are identified in the three RCMs respectively, which are considered as causative mutations. These findings provide new insights into the molecular etiology responsible for pediatric RCM."	"Somatic MYH7, MYBPC3, TPM1, TNNT2 and TNNI3 mutations in sporadic hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a clinically heterogeneous genetic heart disease characterized by left ventricular hypertrophy in the absence of another disease that could explain the wall thickening. Elucidation of the genetic basis of HCM lead to the identification of several genes encoding sarcomeric proteins, such as MYH7, MYBPC3, TPM1, TNNT2, and TNNI3. Sarcomeric genes are mutated in approximately 40% of HCM patients and a possible explanation for the incomplete yield of mutation-positive HCM may be somatic mutations. We studied 104 unrelated patients with non-familial HCM. Patients underwent clinical evaluation and mutation screening of 5 genes implicated in HCM (MYH7, MYBPC3, TPM1, TNNT2, and TNNI3) in genomic DNA isolated from resected cardiac tissue; 41 of 104 were found to carry a mutation, but as several patients carried the same mutations, the total amount of different mutations was 37; 20 of these mutations have been previously described, and pathogenicity has been assessed. To determine the effect of the 17 new mutations an in silico assay was performed and it predicted that 4 variants were damaging mutations. All identified variants were also seen in the DNA isolated from the corresponding blood, which demonstrated the absence of somatic mutations. Somatic mutations in MYH7, MYBPC3, TPM1, TNNT2, and TNNI3 do not represent an important etiologic pathway in HCM."	"Mutations in MYH7 reduce the force generating capacity of sarcomeres in human familial hypertrophic cardiomyopathy. Familial hypertrophic cardiomyopathy (HCM), frequently caused by sarcomeric gene mutations, is characterized by cellular dysfunction and asymmetric left-ventricular (LV) hypertrophy. We studied whether cellular dysfunction is due to an intrinsic sarcomere defect or cardiomyocyte remodelling. Cardiac samples from 43 sarcomere mutation-positive patients (HCMmut: mutations in thick (MYBPC3, MYH7) and thin (TPM1, TNNI3, TNNT2) myofilament genes) were compared with 14 sarcomere mutation-negative patients (HCMsmn), eight patients with secondary LV hypertrophy due to aortic stenosis (LVHao) and 13 donors. Force measurements in single membrane-permeabilized cardiomyocytes revealed significantly lower maximal force generating capacity (Fmax) in HCMmut (21 ± 1 kN/m²) and HCMsmn (26 ± 3 kN/m²) compared with donor (36 ± 2 kN/m²). Cardiomyocyte remodelling was more severe in HCMmut compared with HCMsmn based on significantly lower myofibril density (49 ± 2 vs. 63 ± 5%) and significantly higher cardiomyocyte area (915 ± 15 vs. 612 ± 11 μm²). Low Fmax in MYBPC3mut, TNNI3mut, HCMsmn, and LVHao was normalized to donor values after correction for myofibril density. However, Fmax was significantly lower in MYH7mut, TPM1mut, and TNNT2mut even after correction for myofibril density. In accordance, measurements in single myofibrils showed very low Fmax in MYH7mut, TPM1mut, and TNNT2mut compared with donor (respectively, 73 ± 3, 70 ± 7, 83 ± 6, and 113 ± 5 kN/m²). In addition, force was lower in MYH7mut cardiomyocytes compared with MYBPC3mut, HCMsmn, and donor at submaximal [Ca²⁺]. Low cardiomyocyte Fmax in HCM patients is largely explained by hypertrophy and reduced myofibril density. MYH7 mutations reduce force generating capacity of sarcomeres at maximal and submaximal [Ca²⁺]. These hypocontractile sarcomeres may represent the primary abnormality in patients with MYH7 mutations."	"Distinct patterns of histone modifications at cardiac-specific gene promoters between cardiac stem cells and mesenchymal stem cells. Mesenchymal stem cells (MSCs) and cardiac stem cells (CSCs) possess different potential to develop into cardiomyocytes. The mechanism underlying cardiomyogenic capacity of MSCs and CSCs remains elusive. It is well established that histone modifications correlate with gene expression and contribute to cell fate commitment. Here we hypothesize that specific histone modifications accompany cardiac-specific gene expression, thus determining the differentiation capacity of MSCs and CSCs toward heart cells. Our results indicate that, at the promoter regions of cardiac-specific genes (Myh6, Myl2, Actc1, Tnni3, and Tnnt2), the levels of histone acetylation of H3 (acH3) and H4 (acH4), as a mark indicative of gene activation, were higher in CSCs (Sca-1(+)CD29(+)) than MSCs. Additionally, lower binding levels of histone deacetylase (HDAC) 1 and HDAC2 at promoter regions of cardiac-specific genes were noticed in CSCs than MSCs. Treatment with trichostatin A, an HDAC inhibitor, upregulated cardiac-specific gene expression in MSCs. Suppression of HDAC1 or HDAC2 expression by small interfering RNAs led to increased cardiac gene expression and was accompanied by enhanced acH3 and acH4 levels at gene loci. We conclude that greater levels of histone acetylation at cardiac-specific gene loci in CSCs than MSCs reflect a stronger potential for CSCs to develop into cardiomyocytes. These lineage-differential histone modifications are likely due to less HDAC recruitment at cardiac-specific gene promoters in CSCs than MSCs."	"Perturbed length-dependent activation in human hypertrophic cardiomyopathy with missense sarcomeric gene mutations. High-myofilament Ca(2+) sensitivity has been proposed as a trigger of disease pathogenesis in familial hypertrophic cardiomyopathy (HCM) on the basis of in vitro and transgenic mice studies. However, myofilament Ca(2+) sensitivity depends on protein phosphorylation and muscle length, and at present, data in humans are scarce. To investigate whether high myofilament Ca(2+) sensitivity and perturbed length-dependent activation are characteristics for human HCM with mutations in thick and thin filament proteins. Cardiac samples from patients with HCM harboring mutations in genes encoding thick (MYH7, MYBPC3) and thin (TNNT2, TNNI3, TPM1) filament proteins were compared with sarcomere mutation-negative HCM and nonfailing donors. Cardiomyocyte force measurements showed higher myofilament Ca(2+) sensitivity in all HCM samples and low phosphorylation of protein kinase A (PKA) targets compared with donors. After exogenous PKA treatment, myofilament Ca(2+) sensitivity was similar (MYBPC3mut, TPM1mut, sarcomere mutation-negative HCM), higher (MYH7mut, TNNT2mut), or even significantly lower (TNNI3mut) compared with donors. Length-dependent activation was significantly smaller in all HCM than in donor samples. PKA treatment increased phosphorylation of PKA-targets in HCM myocardium and normalized length-dependent activation to donor values in sarcomere mutation-negative HCM and HCM with truncating MYBPC3 mutations but not in HCM with missense mutations. Replacement of mutant by wild-type troponin in TNNT2mut and TNNI3mut corrected length-dependent activation to donor values. High-myofilament Ca(2+) sensitivity is a common characteristic of human HCM and partly reflects hypophosphorylation of PKA targets compared with donors. Length-dependent sarcomere activation is perturbed by missense mutations, possibly via posttranslational modifications other than PKA hypophosphorylation or altered protein-protein interactions, and represents a common pathomechanism in HCM."	"Differential DNA methylation patterns between high and low responders to a weight loss intervention in overweight or obese adolescents: the EVASYON study. In recent years, epigenetic markers emerged as a new tool to understand the influence of lifestyle factors on obesity phenotypes. Adolescence is considered an important epigenetic window over a human's lifetime. The objective of this work was to explore baseline changes in DNA methylation that could be associated with a better weight loss response after a multidisciplinary intervention program in Spanish obese or overweight adolescents. Overweight or obese adolescents (n=107) undergoing 10 wk of a multidisciplinary intervention for weight loss were assigned as high or low responders to the treatment. A methylation microarray was performed to search for baseline epigenetic differences between the 2 groups (12 subjects/group), and MALDI-TOF mass spectrometry was used to validate (n=107) relevant CpG sites and surrounding regions. After validation, 5 regions located in or near AQP9, DUSP22, HIPK3, TNNT1, and TNNI3 genes showed differential methylation levels between high and low responders to the multidisciplinary weight loss intervention. Moreover, a calculated methylation score was significantly associated with changes in weight, BMI-SDS, and body fat mass loss after the treatment. In summary, we have identified 5 DNA regions that are differentially methylated depending on weight loss response. These methylation changes may help to better understand the weight loss response in obese adolescents."	"Genetic complexity in hypertrophic cardiomyopathy revealed by high-throughput sequencing. Clinical interpretation of the large number of rare variants identified by high throughput sequencing (HTS) technologies is challenging. The aim of this study was to explore the clinical implications of a HTS strategy for patients with hypertrophic cardiomyopathy (HCM) using a targeted HTS methodology and workflow developed for patients with a range of inherited cardiovascular diseases. By comparing the sequencing results with published findings and with sequence data from a large-scale exome sequencing screen of UK individuals, we sought to quantify the strength of the evidence supporting causality for detected candidate variants. 223 unrelated patients with HCM (46±15 years at diagnosis, 74% males) were studied. In order to analyse coding, intronic and regulatory regions of 41 cardiovascular genes, we used solution-based sequence capture followed by massive parallel resequencing on Illumina GAIIx. Average read-depth in the 2.1 Mb target region was 120. Rare (frequency&lt;0.5%) non-synonymous, loss-of-function and splice-site variants were defined as candidates. Excluding titin, we identified 152 distinct candidate variants in sarcomeric or associated genes (89 novel) in 143 patients (64%). Four sarcomeric genes (MYH7, MYBPC3, TNNI3, TNNT2) showed an excess of rare single non-synonymous single-nucleotide polymorphisms (nsSNPs) in cases compared to controls. The estimated probability that a nsSNP in these genes is pathogenic varied between 57% and near certainty depending on the location. We detected an additional 94 candidate variants (73 novel) in desmosomal, and ion-channel genes in 96 patients (43%). This study provides the first large-scale quantitative analysis of the prevalence of sarcomere protein gene variants in patients with HCM using HTS technology. Inclusion of other genes implicated in inherited cardiac disease identifies a large number of non-synonymous rare variants of unknown clinical significance."	"Genetic analysis in 418 index patients with idiopathic dilated cardiomyopathy: overview of 10 years' experience. With more than 40 dilated cardiomyopathy (DCM)-related genes known, genetic analysis of patients with idiopathic DCM is costly and time-consuming. We describe the yield from genetic analysis in DCM patients in a large Dutch cohort. We collected cardiological and neurological evaluations, family screenings, and genetic analyses for 418 index patients with idiopathic DCM. We identified 35 (putative) pathogenic mutations in 82 index patients (20%). The type of DCM influenced the yield, with mutations found in 25% of familial DCM cases, compared with 8% of sporadic DCM cases and 62% of cases where DCM was accompanied by neuromuscular disease. A PLN founder mutation (43 cases) and LMNA mutations (19 cases, 16 different mutations) were most prevalent and often demonstrated a specific phenotype. Other mutations were found in: MYH7, DES, TNNT2, DMD, TPM1, DMPK, SCN5A, SGCB (homozygous), and TNNI3. After a median follow-up of 40 months, the combined outcome of death from any cause, heart transplantation, or malignant ventricular arrhythmias in patients with a mutation was worse than in those without an identified mutation (hazard ratio 2.0, 95% confidence interval 1.4-3.0). This seems to be mainly attributable to a high prevalence of malignant ventricular arrhythmias and end-stage heart failure in LMNA and PLN mutation carriers. The yield of identified mutations in DCM index patients with clinical clues, such as associated neuromuscular disease or familial occurrence, is higher compared with those without these clues. For sporadic DCM, specific clinical characteristics may be used to select cases for DNA analysis."	"Multiple gene mutations, not the type of mutation, are the modifier of left ventricle hypertrophy in patients with hypertrophic cardiomyopathy. Genotype-phenotype correlation of hypertrophic cardiomyopathy (HCM) has been challenging because of the genetic and clinical heterogeneity. To determine the mutation profile of Chinese patients with HCM and to correlate genotypes with phenotypes, we performed a systematic mutation screening of the eight most commonly mutated genes encoding sarcomere proteins in 200 unrelated Chinese adult patients using direct DNA sequencing. A total of 98 mutations were identified in 102 mutation carriers. The frequency of mutations in MYH7, MYBPC3, TNNT2 and TNNI3 was 26.0, 18.0, 4.0 and 3.5 % respectively. Among the 200 genotyped HCM patients, 83 harbored a single mutation, and 19 (9.5 %) harbored multiple mutations. The number of mutations was positively correlated with the maximum wall thickness. We found that neither particular gene nor specific mutation was correlated to clinical phenotype. In summary, the frequency of multiple mutations was greater in Chinese HCM patients than in the Caucasian population. Multiple mutations in sarcomere protein may be a risk factor for left ventricular wall thickness."	"A human MYBPC3 mutation appearing about 10 centuries ago results in a hypertrophic cardiomyopathy with delayed onset, moderate evolution but with a risk of sudden death. Hypertrophic Cardiomyopathy (HCM) is a genetically heterogeneous disease. One specific mutation in the MYBPC3 gene is highly prevalent in center east of France giving an opportunity to define the clinical profile of this specific mutation. HCM probands were screened for mutation in the MYH7, MYBPC3, TNNT2 and TNNI3 genes. Carriers of the MYBPC3 IVS20-2A&gt;G mutation were genotyped with 8 microsatellites flanking this gene. The age of this MYBPC3 mutation was inferred with the software ESTIAGE. The age at first symptom, diagnosis, first complication, first severe complication and the rate of sudden death were compared between carriers of the IVS20-2 mutation (group A) and carriers of all other mutations (group B) using time to event curves and log rank test. Out of 107 HCM probands, 45 had a single heterozygous mutation in one of the 4 tested sarcomeric genes including 9 patients with the MYBPC3 IVS20-2A&gt;G mutation. The IVS20-2 mutation in these 9 patients and their 25 mutation carrier relatives was embedded in a common haplotype defined after genotyping 4 polymorphic markers on each side of the MYBPC3 gene. This result supports the hypothesis of a common ancestor. Furthermore, we evaluated that the mutation occurred about 47 generations ago, approximately at the 10th century.We then compared the clinical profile of the IVS20-2 mutation carriers (group A) and the carriers of all other mutations (group B). Age at onset of symptoms was similar in the 34 group A cases and the 73 group B cases but group A cases were diagnosed on average 15 years later (log rank test p = 0.022). Age of first complication and first severe complication was delayed in group A vs group B cases but the prevalence of sudden death and age at death was similar in both groups. A founder mutation arising at about the 10th century in the MYBPC3 gene accounts for 8.4% of all HCM in center east France and results in a cardiomyopathy starting late and evolving slowly but with an apparent risk of sudden death similar to other sarcomeric mutations."	"Comparative gene expression profiling in human-induced pluripotent stem cell--derived cardiocytes and human and cynomolgus heart tissue. Cardiotoxicity is one of the leading causes of drug attrition. Current in vitro models insufficiently predict cardiotoxicity, and there is a need for alternative physiologically relevant models. Here we describe the gene expression profile of human-induced pluripotent stem cell-derived cardiocytes (iCC) postthaw over a period of 42 days in culture and compare this profile to human fetal and adult as well as adult cynomolgus nonhuman primate (NHP, Macaca fascicularis) heart tissue. Our results indicate that iCC express relevant cardiac markers such as ion channels (SCN5A, KCNJ2, CACNA1C, KCNQ1, and KCNH2), tissue-specific structural markers (MYH6, MYLPF, MYBPC3, DES, TNNT2, and TNNI3), and transcription factors (NKX2.5, GATA4, and GATA6) and lack the expression of stem cell markers (FOXD3, GBX2, NANOG, POU5F1, SOX2, and ZFP42). Furthermore, we performed a functional evaluation of contractility of the iCC and showed functional and pharmacological correlations with myocytes isolated from adult NHP hearts. These results suggest that stem cell-derived cardiocytes may represent a novel in vitro model to study human cardiac toxicity with potential ex vivo and in vivo translation."	"High prevalence of Arginine to Glutamine substitution at 98, 141 and 162 positions in Troponin I (TNNI3) associated with hypertrophic cardiomyopathy among Indians. Troponin I (TNNI3) is the inhibitory subunit of the thin filament regulatory complex Troponin, which confers calcium-sensitivity to striated muscle actomyosin ATPase activity. Mutations (2-7%) in this gene had been reported in hypertrophic cardiomyopathy patients (HCM). However, the frequencies of mutations and associated clinical presentation have not been established in cardiomyopathy patients of Indian origin, hence we have undertaken this study. We have sequenced all the exons, including the exon-intron boundaries of TNNI3 gene in 101 hypertrophic cardiomyopathy patients (HCM), along with 160 healthy controls, inhabited in the same geographical region of southern India. Our study revealed a total of 16 mutations. Interestingly, we have observed Arginine to Glutamine (R to Q) mutation at 3 positions 98, 141 and 162, exclusively in HCM patients with family history of sudden cardiac death. The novel R98Q was observed in a severe hypertrophic obstructive cardiomyopathy patient (HOCM). The R141Q mutation was observed in two familial cases of severe asymmetric septal hypertrophy (ASH++). The R162Q mutation was observed in a ASH++ patient with mean septal thickness of 29 mm, and have also consists of allelic heterogeneity by means of having one more synonymous (E179E) mutation at g.4797: G → A: in the same exon 7, which replaces a very frequent codon (GAG: 85%) with a rare codon (GAA: 14%). Screening for R162Q mutation in all the available family members revealed its presence in 9 individuals, including 7 with allelic heterogeneity (R162Q and E179E) of which 4 were severely affected. We also found 2 novel SNPs, (g.2653; G → A and g.4003 C → T) exclusively in HCM, and in silico analysis of these SNPs have predicted to cause defect in recognition/binding sites for proteins responsible for proper splicing. Our study has provided valuable information regarding the prevalence of TNNI3 mutations in Indian HCM patients and its risk assessment, these will help in genetic counseling and to adopt appropriate treatment strategies."	"Sarcomeric hypertrophic cardiomyopathy: genetic profile in a Portuguese population. Sarcomeric hypertrophic cardiomyopathy has heterogeneous phenotypic expressions, of which sudden cardiac death is the most feared. A genetic diagnosis is essential to identify subjects at risk in each family. The spectrum of disease-causing mutations in the Portuguese population is unknown. Seventy-seven unrelated probands with hypertrophic cardiomyopathy were systematically screened for mutations by PCR and sequencing of five sarcomeric genes: MYBPC3, MYH7, TNNT2, TNNI3 and MYL2. Familial cosegregation analysis was performed in most patients. Thirty-four different mutations were identified in 41 (53%) index patients, 71% with familial hypertrophic cardiomyopathy. The most frequently involved gene was MYBPC3 (66%) with 22 different mutations (8 novel) in 27 patients, followed by MYH7 (22%), TNNT2 (12%) and TNNI3 (2.6%). In three patients (7%), two mutations were found in MYBPC3 and/or MYH7. Additionally, 276 relatives were screened, leading to the identification of a mean of three other affected relatives for each pedigree with the familial form of the disease. Disease-associated mutations were identified mostly in familial hypertrophic cardiomyopathy, corroborating the idea that rarely studied genes may be implicated in sporadic forms. Private mutations are the rule, MYBPC3 being the most commonly involved gene. Mutations in MYBPC3 and MYH7 accounted for most cases of sarcomere-related disease. Multiple mutations in these genes may occur, which highlights the importance of screening both. The detection of novel mutations strongly suggests that all coding regions should be systematically screened. Genotyping in hypertrophic cardiomyopathy enables a more precise diagnosis of the disease, with implications for risk stratification and genetic counseling."	"MicroRNA 16 enhances differentiation of human bone marrow mesenchymal stem cells in a cardiac niche toward myogenic phenotypes in vitro. Upregulation of microRNA 16 (miR-16) contributed to the differentiation of human bone marrow mesenchymal stem cells (hMSCs) toward myogenic phenotypes in a cardiac niche, the present study aimed to determine the role of miR-16 in this process. hMSCs and neonatal rat ventricular myocytes were co-cultured indirectly in two chambers to set up a cardiac microenvironment (niche). miRNA expression profile in cardiac-niche-induced hMSCs was detected by miRNA microarray. Cardiac marker expression and cell cycle analysis were determined in different treatment hMSCs. Quantitative real-time PCR and Western blot were used to identify the expression of mRNA, mature miRNA and protein of interest. miRNA dysregulation was shown in hMSCs after cardiac niche induction. miR-16 was upregulated in cardiac-niche-induced hMSCs. Overexpression of miR-16 significantly increased G1-phase arrest of the cell cycle in hMSCs and enhanced the expression of cardiac marker genes, including GATA4, NK2-5, MEF2C and TNNI3. Differentiation-inducing factor 3 (DIF-3), a G0/G1 cell cycle arrest compound, was used to induce G1 phase arrest in cardiac-niche-induced hMSCs, and the expression of cardiac marker genes was up-regulated in DIF-3-treated hMSCs. The expression of CCND1, CCND2 and CDK6 was suppressed by miR-16 in hMSCs. CDK6, CCND1 or CCND2 knockdown resulted in G1 phase arrest in hMSCs and upregulation of cardiac marker gene expression in hMSCs in a cardiac niche. miR-16 enhances G1 phase arrest in hMSCs, contributing to the differentiation of hMSCs toward myogenic phenotypes when in a cardiac niche. This mechanism provides a novel strategy for pre-modification of hMSCs before hMSC-based transplantation therapy for severe heart diseases."	"Shortening and intracellular Ca2+ in ventricular myocytes and expression of genes encoding cardiac muscle proteins in early onset type 2 diabetic Goto-Kakizaki rats. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus. Cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. Contractile dysfunction, associated with disturbances in excitation-contraction coupling, has been widely demonstrated in the diabetic heart. The aim of this study was to investigate the pattern of cardiac muscle genes that are involved in the process of excitation-contraction coupling in the hearts of early onset (8-10 weeks of age) type 2 diabetic Goto-Kakizaki (GK) rats. Gene expression was assessed in ventricular muscle with real-time RT-PCR; shortening and intracellular Ca(2+) were measured in ventricular myocytes with video edge detection and fluorescence photometry, respectively. The general characteristics of the GK rats included elevated fasting and non-fasting blood glucose and blood glucose at 120 min following a glucose challenge. Expression of genes encoding cardiac muscle proteins (Myh6/7, Mybpc3, Myl1/3, Actc1, Tnni3, Tnn2, Tpm1/2/4 and Dbi) and intercellular proteins (Gja1/4/5/7, Dsp and Cav1/3) were unaltered in GK ventricle compared with control ventricle. The expression of genes encoding some membrane pumps and exchange proteins was unaltered (Atp1a1/2, Atp1b1 and Slc8a1), whilst others were either upregulated (Atp1a3, relative expression 2.61 ± 0.69 versus 0.84 ± 0.23) or downregulated (Slc9a1, 0.62 ± 0.07 versus 1.08 ± 0.08) in GK ventricle compared with control ventricle. The expression of genes encoding some calcium (Cacna1c/1g, Cacna2d1/2d2 and Cacnb1/b2), sodium (Scn5a) and potassium channels (Kcna3/5, Kcnj3/5/8/11/12, Kchip2, Kcnab1, Kcnb1, Kcnd1/2/3, Kcne1/4, Kcnq1, Kcng2, Kcnh2, Kcnk3 and Kcnn2) were unaltered, whilst others were either upregulated (Cacna1h, 0.95 ± 0.16 versus 0.47 ± 0.09; Scn1b, 1.84 ± 0.16 versus 1.11 ± 0.11; and Hcn2, 1.55 ± 0.15 versus 1.03 ± 0.08) or downregulated (Hcn4, 0.16 ± 0.03 versus 0.37 ± 0.08; Kcna2, 0.35 ± 0.03 versus 0.80 ± 0.11; Kcna4, 0.79 ± 0.25 versus 1.90 ± 0.26; and Kcnj2, 0.52 ± 0.07 versus 0.78 ± 0.08) in GK ventricle compared with control ventricle. The amplitude of ventricular myocyte shortening and the intracellular Ca(2+) transient were unaltered; however, the time-to-peak shortening was prolonged and time-to-half decay of the Ca(2+) transient was shortened in GK myocytes compared with control myocytes. The results of this study demonstrate changes in expression of genes encoding various excitation-contraction coupling proteins that are associated with disturbances in myocyte shortening and intracellular Ca(2+) transport."	"A novel titin mutation in adult-onset familial dilated cardiomyopathy. Familial dilated cardiomyopathy is a major cause of advanced heart failure and heart transplantation. In most families, the disease-causing mutation is unknown, and relatives should therefore undergo periodic screening to facilitate early diagnosis and therapy. In the present study, we describe a novel titin truncation mutation causing adult-onset familial dilated cardiomyopathy in an Israeli Arab family. The family members underwent physical examination, electrocardiography, and Doppler echocardiography. Linkage to candidate loci was performed, followed by gene sequencing. We identified 13 clinically affected family members (8 men and 5 women, mean age 47 ± 12 years). Compared with their healthy first-degree relatives, the affected relatives had a larger end-diastolic left ventricular dimension (60 ± 10 vs 49 ± 4 mm, p &lt;0.001), lower ejection fraction (43 ± 11% vs 60 ± 6%, p &lt;0.001), and markedly higher end-systolic volume indexes but no difference in wall thickness or diastolic function. The linkage studies or direct sequencing excluded LMNA, MYH7, TNNT2, TNNI3, SCN5A, DES, SGCD, ACTC, PLN, and MYH6 but established linkage to the TTN locus at chromosome 2q31, yielding a maximum (2-point) LOD score of 3.44. Sequence analysis identified an insertion (c.58880insA), causing protein truncation after 19,628 amino acids (p.S19628IfsX1). No founder effect was found among the Israeli Arabs. In conclusion, titin is a giant protein with a key role in sarcomere assembly, force transmission, and maintenance of resting tension. Although some mutations result in skeletal myopathy, others cause isolated, maturity-onset cardiomyopathy."	"Genetic testing for dilated cardiomyopathy in clinical practice. Familial involvement is common in dilated cardiomyopathy (DCM) and &gt;40 genes have been implicated in causing disease. However, the role of genetic testing in clinical practice is not well defined. We examined the experience of clinical genetic testing in a diverse DCM population to characterize the prevalence and predictors of gene mutations. We studied 264 unrelated adult and pediatric DCM index patients referred to 1 reference lab for clinical genetic testing. Up to 10 genes were analyzed (MYH7, TNNT2, TNNI3, TPM1, MYBPC3, ACTC, LMNA, PLN, TAZ, and LDB3), and 70% of patients were tested for all genes. The mean age was 26.6 ± 21.3 years, and 52% had a family history of DCM. Rigorous criteria were used to classify DNA variants as clinically relevant (mutations), variants of unknown clinical significance (VUS), or presumed benign. Mutations were found in 17.4% of patients, commonly involving MYH7, LMNA, or TNNT2 (78%). An additional 10.6% of patients had VUS. Genetic testing was rarely positive in older patients without a family history of DCM. Conversely in pediatric patients, family history did not increase the sensitivity of genetic testing. Using rigorous criteria for classifying DNA variants, mutations were identified in 17% of a diverse group of DCM index patients referred for clinical genetic testing. The low sensitivity of genetic testing in DCM reflects limitations in both current methodology and knowledge of DCM-associated genes. However, if mutations are identified, genetic testing can help guide family management."	"Spectrum and clinical manifestations of mutations in genes responsible for hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a cardiovascular disease with autosomal dominant inheritance. It is caused by mutations in the genes coding for structural and/or regulatory proteins found in the sarcomere of cardiomyocytes. A group of genes, including the heavy chain of beta-myosin (MYH7), myosin binding protein C (MYBPC3), cardiac troponin I (TNNI3) and cardiac troponin T (TNNT2) are frequently affected by causal mutations. While exact mutation frequency data has been obtained for various populations, no screening has been reported for Central European populations. We performed a complete sequencing of MYH7, MYBPC3, TNNI3 and TNNT2 genes in 100 HCM patients. We discovered mutations in a total of 40 patients (40%), including 4 patients with double mutations. A total of 35 different mutation types were detected, of which 17 were novel. The contributions from individual genes were: 24 mutations in MYBPC3 (54.5%), 14 in MYH7 (31.8%), 4 in TNNI3 (9%) and 2 mutations in TNNT2 (4.5%). We have observed a wide variability in disease manifestation across the different genes/mutation types. In addition, we have discovered differences in both frequency and distribution of mutations of the two most common genes (MYBPC3 and MYH7) compared to other populations. The most common gene responsible for HCM in our study population was MYBPC3, followed by MYH7, TNNI3 and TNNT2. Phenotypic heterogeneity, as well as the dissimilarity to other populations, prevents effective use of a pre-screening test, which would be directed at the most common mutation hotspots, in our population."	"High resolution melting: improvements in the genetic diagnosis of hypertrophic cardiomyopathy in a Portuguese cohort. Hypertrophic Cardiomyopathy (HCM) is a complex myocardial disorder with a recognized genetic heterogeneity. The elevated number of genes and mutations involved in HCM limits a gene-based diagnosis that should be considered of most importance for basic research and clinical medicine. In this report, we evaluated High Resolution Melting (HRM) robustness, regarding HCM genetic testing, by means of analyzing 28 HCM-associated genes, including the most frequent 4 HCM-associated sarcomere genes, as well as 24 genes with lower reported HCM-phenotype association. We analyzed 80 Portuguese individuals with clinical phenotype of HCM allowing simultaneously a better characterization of this disease in the Portuguese population. HRM technology allowed us to identify 60 mutated alleles in 72 HCM patients: 49 missense mutations, 3 nonsense mutations, one 1-bp deletion, one 5-bp deletion, one in frame 3-bp deletion, one insertion/deletion, 3 splice mutations, one 5'UTR mutation in MYH7, MYBPC3, TNNT2, TNNI3, CSRP3, MYH6 and MYL2 genes. Significantly 22 are novel gene mutations. HRM was proven to be a technique with high sensitivity and a low false positive ratio allowing a rapid, innovative and low cost genotyping of HCM. In a short return, HRM as a gene scanning technique could be a cost-effective gene-based diagnosis for an accurate HCM genetic diagnosis and hopefully providing new insights into genotype/phenotype correlations."	"Hypertrophic cardiomyopathy and planned in vitro fertilization. Genetic testing and clinical evaluation. Hypertrophic cardiomyopathy (HCM) is often transmitted to the offspring of affected individuals. This case report describes the role of genetic screening in a 39-year-old woman with a family history of sudden cardiac death. The patient wished to become pregnant and was seeking medical consultation. In addition to electro- and echocardiograms, genomic DNA was isolated and direct sequencing was employed to screen the patient for some of the most common genes that cause HCM. A pathogenic heterozygous mutation c.700 g &gt; a p.Arg186Gln in TNNI3 was identified, which was not found in 200 normal control chromosomes. Mutation-specific genetic testing was also performed in four family members, and the same mutation was absent. Genetic screening appears cost effective in familiar members with a known mutation, provides important information about the affected individual, and can facilitate the future management of family members and offspring."	"Transcription factor GATA4 is activated but not required for insulin-like growth factor 1 (IGF1)-induced cardiac hypertrophy. Insulin-like growth factor 1 (IGF1) promotes a physiological type of cardiac hypertrophy and has therapeutic effects in heart disease. Here, we report the relationship of IGF1 to GATA4, an essential transcription factor in cardiac hypertrophy and cell survival. In cultured neonatal rat ventricular myocytes, we compared the responses to IGF1 (10 nmol/liter) and phenylephrine (PE, 20 μmol/liter), a known GATA4 activator, in concentrations promoting a similar extent of hypertrophy. IGF1 and PE both increased nuclear accumulation of GATA4 and phosphorylation at Ser(105) (PE, 2.4-fold; IGF1, 1.8-fold; both, p &lt; 0.05) and increased GATA4 DNA binding activity as indicated by ELISA and by chromatin IP of selected promoters. Although IGF1 and PE each activated GATA4 to the same degree, GATA4 knockdown by RNA interference only blocked hypertrophy by PE but not by IGF1. PE induction of a panel of GATA4 target genes (Nppa, Nppb, Tnni3, Myl1, and Acta1) was inhibited by GATA4 knockdown. In contrast, IGF1 regulated only Acta1 in a GATA4-dependent fashion. Consistent with the in vitro findings, Gata4 haploinsufficiency in mice did not alter cardiac structure, hyperdynamic function, or antifibrotic effects induced by myocardial overexpression of the IGF1 receptor. Our data indicate that GATA4 is activated by the IGF1 pathway, but although it is required for responses to pathological stimuli, it is not necessary for the effects of IGF1 on cardiac structure and function."	"Cardiac alpha-myosin (MYH6) is the predominant sarcomeric disease gene for familial atrial septal defects. Secundum-type atrial septal defects (ASDII) account for approximately 10% of all congenital heart defects (CHD) and are associated with a familial risk. Mutations in transcription factors represent a genetic source for ASDII. Yet, little is known about the role of mutations in sarcomeric genes in ASDII etiology. To assess the role of sarcomeric genes in patients with inherited ASDII, we analyzed 13 sarcomeric genes (MYH7, MYBPC3, TNNT2, TCAP, TNNI3, MYH6, TPM1, MYL2, CSRP3, ACTC1, MYL3, TNNC1, and TTN kinase region) in 31 patients with familial ASDII using array-based resequencing. Genotyping of family relatives and control subjects as well as structural and homology analyses were used to evaluate the pathogenic impact of novel non-synonymous gene variants. Three novel missense mutations were found in the MYH6 gene encoding alpha-myosin heavy chain (R17H, C539R, and K543R). These mutations co-segregated with CHD in the families and were absent in 370 control alleles. Interestingly, all three MYH6 mutations are located in a highly conserved region of the alpha-myosin motor domain, which is involved in myosin-actin interaction. In addition, the cardiomyopathy related MYH6-A1004S and the MYBPC3-A833T mutations were also found in one and two unrelated subjects with ASDII, respectively. No mutations were found in the 11 other sarcomeric genes analyzed. The study indicates that sarcomeric gene mutations may represent a so far underestimated genetic source for familial recurrence of ASDII. In particular, perturbations in the MYH6 head domain seem to play a major role in the genetic origin of familial ASDII."	"Prevalence and distribution of sarcomeric gene mutations in Japanese patients with familial hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), which is inherited as an autosomal dominant trait, is the most prevalent hereditary cardiac disease. Although there are several reports on the systematic screening of mutations in the disease-causing genes in European and American populations, only limited information is available for Asian populations, including Japanese. Genetic screening of disease-associated mutations in 8 genes for sarcomeric proteins, MYH7, MYBPC3, MYL2, MYL3, TNNT2, TNNI3, TPM1, and ACTC, was performed by direct sequencing in 112 unrelated Japanese proband patients with familial HCM; 37 different mutations, including 13 novel ones in 5 genes, MYH7, MYBPC3, TNNT2, TNNI3, and TPM1, were identified in 49 (43.8%) patients. Among them, 3 carried compound heterozygous mutations in MYBPC3 or TNNT2. The frequency of patients carrying the MYBPC3, MYH7, and TNNT2 mutations were 19.6%, 10.7%, and 8.9%, respectively, and the most frequently affected genes in the northeastern and southwestern parts of Japan were MYBPC3 and MYH7, respectively. Several mutations were found in multiple unrelated proband patients, for which the geographic distribution suggested founder effects of the mutations. This study demonstrated the frequency and distribution of mutations in a large cohort of familial HCM in Japan."	"[Differentiation of porcine amniotic fluid stem cells into the beating cardiomyocytes]. The aim of this research is to find an effective cardiomyocyte-induced method derived from porcine amniotic fluid stem cells (pAFS). For cardiac differentiation, the cells were formed embryoid bodies (EBs) firstly, then cultured in induced-medium including 5-azacytidine (5-aza) and vitamin C (Vc). We detected the specific markers of cardiomyocyte by immunocytochemistry, RT-PCR and transmission electron microscope. The results showed that some embryoid bodies beat rhythmically after 10 days of induction. Furthermore, analysis of t test revealed that the percentage of beating cardiomyocyte-like cell clusters was highest (33%) when induction using 0.1 mmol/L Vc and 5 micromol/L 5-aza. Immunocytochemistry analysis demonstrated that cardiomyocyte-like cell clusters expressed alpha-actin, Tnni3. RT-PCR analysis also illustrated that TbX5, Gata4, alpha-MHC and Tnni3 were expressed positive in cardiomyocyte-like cell clusters. Especially, we observed basic structures of myocardium, such as myofilament, glycogen granule and so on by transmission electron microscope. In conclusion, 5-azacytidine and vitamin C could promote differentiation of pAFS into myocardium."	"Genetic basis of end-stage hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by a heterogeneous presentation and clinical course. A minority of HCM patients develop end-stage HCM and require cardiac transplantation. The genetic basis of end-stage HCM is unknown but small series, isolated case reports and animal models have related the most aggressive heart failure course with the presence of multiple mutations. Twenty-six patients (age 40.4 ± 14.5 years; 46% male) transplanted for end-stage HCM underwent genetic screening of 10 HCM-related genes (MYH7, MYBPC3, TNNT2, TNNI3, TPM1, TNNC1, MYL3, MYL2, ACTC, LDB3). Additional genetic screening of LAMP2/PRKAG2 and mitochondrial DNA (mtDNA) was performed in four and three cases, respectively. Findings were correlated with clinical and histological features. Pathogenic mutations were identified in 15 patients (58%). Thirteen patients (50%) had mutations in sarcomeric genes (six in MYH7, three in MYBPC3, two in MYL2, one in TNNI3, and one in MYL3) and two patients had mutations in LAMP2. Only three patients (13%) had double mutations and all in homozygosis. Except for a more frequent family history of HCM, patients with mutations in sarcomeric genes did not show any clinical feature that distinguished them from patients without mutations in these genes. Evaluation of 44 relatives from 12 families identified 13 mutation carriers, 9 of whom had an overt HCM phenotype. Heart transplanted HCM has a heterogeneous genetic background where multiple mutations are uncommon. The clinical course of HCM is not primarily dependent on the presence of multiple sarcomeric mutations. Clinical and genetic evaluation of relatives does not support differential clinical management in HCM based on genetics."	"Clinical and mutational spectrum in a cohort of 105 unrelated patients with dilated cardiomyopathy. Dilated Cardiomyopathy (DCM) is one of the leading causes of heart failure with high morbidity and mortality. More than 30 genes have been reported to cause DCM. To provide new insights into the pathophysiology of dilated cardiomyopathy, a mutational screening on 4 DCM-causing genes (MYH7, TNNT2, TNNI3 and LMNA) was performed in a cohort of 105 unrelated DCM (64 familial cases and 41 sporadic cases) using a High Resolution Melting (HRM)/sequencing strategy. Screening of a highly conserved arginine/serine (RS)-rich region in exon 9 of RBM20 was also performed. Nineteen different mutations were identified in 20 index patients (19%), including 10 novels. These included 8 LMNA variants in 9 (8.6%) probands, 5 TNNT2 variants in 5 probands (4.8%), 4 MYH7 variants in 3 probands (3.8%), 1 TNNI3 variant in 1 proband (0.9%), and 1 RBM20 variant in 1 proband (0.9%). One proband was double-heterozygous. LMNA mutations represent the most prevalent genetic DCM cause. Most patients carrying LMNA mutations exhibit conduction system defects and/or cardiac arrhythmias. Our study also showed than prevalence of mutations affecting TNNI3 or the (RS)-rich region of RBM20 is lower than 1%. The discovery of novel DCM mutations is crucial for clinical management of patients and their families because pre-symptomatic diagnosis is possible and precocious intervention could prevent or ameliorate the prognosis."	"Double or compound sarcomere mutations in hypertrophic cardiomyopathy: a potential link to sudden death in the absence of conventional risk factors. Risk stratification strategies employing sarcomere gene mutational analysis have proved imprecise in identifying high-risk patients with hypertrophic cardiomyopathy (HCM). Therefore, additional genetic risk markers that reliably determine which patients are predisposed to sudden death are needed. The objective of this study was to determine whether multiple disease-causing sarcomere mutations can be regarded as markers for sudden death in the absence of other conventional risk factors. Databases of 3 HCM centers were accessed, and 18 probands with 2 disease-causing mutations in genes encoding proteins of the cardiac sarcomere were identified. Severe disease progression or adverse cardiovascular events occurred in 7 of these 18 patients (39%), including 3 patients (ages 31, 37, and 57 years) who experienced sudden cardiac arrest but also were without evidence of conventional HCM risk factors; 2 survived with timely defibrillation and therapeutic hypothermia and 1 died. These 3 probands carried distinct and heterozygous disease-causing sarcomere mutations (including a man who inherited 1 mutation independently from each of his parents with HCM)-that is, double MYBPC3 and TNNI3 mutations and compound MYBPC3 mutations-as the only predisposing clinical markers evident to potentially explain their unexpected cardiac event. These observations support the emerging hypothesis that double (or compound) mutations detected by genetic testing may confer a gene dosage effect in HCM, thereby predisposing patients to adverse disease progression. In 3 families, multiple sarcomere mutations were associated with a risk of sudden death, even in the absence of conventional risk factors."	"Genetic screening and double mutation in Japanese patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a primary myocardial disorder with an autosomal-dominant pattern of inheritance mainly caused by single heterozygous mutations in sarcomere genes. Although multiple gene mutations have recently been reported in Western countries, clinical implications of multiple mutations in Japanese subjects are not clear. A comprehensive genetic analysis of 5 sarcomere genes (cardiac β-myosin heavy chain gene [MYH7], cardiac myosin-binding protein C gene [MYBPC3], cardiac troponin T gene [TNNT2], α-tropomyosin gene [TPM1] and cardiac troponin I gene [TNNI3]) was performed in 93 unrelated patients and 14 mutations were identified in 28 patients. Twenty-six patients had single heterozygosity (20 in MYBPC3, 4 in MYH7, 1 in TNNT2, 1 in TNNI3), whereas 2 proband patients with familial HCM had double heterozygosity: 1 with P106fs in MYBPC3 and R869C in MYH7 and 1 with R945fs in MYBPC3 and E1049D in MYH7. From the results of the family survey and the previous literature on HCM mutations, P106fs, R945fs and R869C seemed to be pathological mutations and E1049D might be a rare polymorphism. The proband patient with P106fs and R869C double mutation was diagnosed as having HCM at an earlier age (28 years of age) than her relatives with single mutation, and had greater wall thickness with left ventricular outflow obstruction. One double mutation was identified in a Japanese cohort of HCM patients. Further studies are needed to clarify the clinical significance of multiple mutations including phenotypic severity."	"Recurrent and founder mutations in the Netherlands: cardiac Troponin I (TNNI3) gene mutations as a cause of severe forms of hypertrophic and restrictive cardiomyopathy. About 2-7% of familial cardiomyopathy cases are caused by a mutation in the gene encoding cardiac troponin I (TNNI3). The related clinical phenotype is usually severe with early onset. Here we report on all currently known mutations in the Dutch population and compared these with those described in literature. TheTNNI3 gene was screened for mutations in all coding exons and flanking intronic sequences in a large cohort of cardiomyopathy patients. All Dutch index cases carrying a TNNI3 mutation that are described in this study underwent extensive cardiological evaluation and were listed by their postal codes. In 30 families, 14 different mutations were identified. Three TNNI3 mutations were found relatively frequently in both familial and non-familial cases of hypertrophic cardiomyopathy (HCM) or restrictive cardiomyopathy (RCM). Haplotype analysis showed that p.Arg145Trp and p.Ser166Phe are founder mutations in the Netherlands, while p.Glu209Ala is not. The majority of Dutch TNNI3 mutations were associated with a HCM phenotype. Mean age at diagnosis was 36.5 years. Mutations causing RCM occurred less frequently, but were identified in very young children with a poor prognosis. In line with previously published data, we found TNNI3 mutations to be rare and associated with early onset and severe clinical presentation."	"Rare variant mutations identified in pediatric patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) in infants and children can be partially explained by genetic cause but the catalogue of known genes is limited. We reviewed our database of 41 cases diagnosed with DCM before 18 years of age who underwent detailed clinical and genetic evaluation, and summarize here the evidence for mutations causing DCM in these cases from 15 genes (PSEN1, PSEN2, CSRP3, LBD3, MYH7, SCN5A, TCAP, TNNT2, LMNA, MYBPC3, MYH6, TNNC1, TNNI3, TPM1, and RBM20). Thirty-five of the 41 pediatric cases had relatives with adult-onset DCM. More males (66%) were found among children diagnosed after 1 year of age with DCM. Nineteen mutations in 9 genes were identified among 15 out of 41 patients; 3 patients (diagnosed at ages 2 weeks, 9 and 13 years) had multiple mutations. Of the 19 mutations identified in 12 families, mutations in TPM1 (32%) and TNNT2 (21%) were the most commonly found. Of the 6 patients diagnosed before 1 year of age, 3 had mutations in TPM1 (including a set of identical twins), 1 in TNNT2, 1 in MYH7, and 1 with multiple mutations (MYH7 and TNNC1). Most DCM was accompanied by advanced heart failure and need for cardiac transplantation. We conclude that in some cases pediatric DCM has a genetic basis, which is complicated by allelic and locus heterogeneity as seen in adult-onset DCM. We suggest that future prospective comprehensive family-based genetic studies of pediatric DCM are indicated to further define mutation frequencies in known genes and to discover novel genetic cause."	"Genetic diagnosis of hypertrophic cardiomyopathy using mass spectrometry DNA arrays and high resolution melting. Hypertrophic cardiomyopathy (HCM), a complex myocardial disorder with an autosomal dominant genetic pattern and prevalence of 1:500, is the most frequent cause of sudden death in apparently healthy young people. The benefits of gene-based diagnosis of HCME for both basic research and clinical medicine are limited by the considerable costs of current genetic testing due to the large number of genes and mutations involved in this pathology. However, coupling two high-throughput techniques--mass spectrometry genotyping (MSG) and high resolution melting (HRM)--is an encouraging new strategy for HCM diagnosis. Our aim was to evaluate the diagnostic efficacy of both techniques in this pathology by studying 13 individuals with a clinical phenotype of HCM. Peripheral blood samples were collected from: (i) seven subjects with a clinical diagnosis of HCM, all bearing known mutations previously identified by dideoxy sequencing and thus being used as blinded samples (sample type 1); (ii) one individual with a clinical diagnosis of HCM negative for mutations after dideoxy sequencing of the five most common HCM genes, MYH7, MYBPC3, TNNI3, TNNT2 and MYL2 (sample type 2); and (iii) five individuals individual with a clinical diagnosis of HCM who had not previously been genetically studied (sample type 3). The 13 samples were analyzed by MSG for 534 known mutations in 32 genes associated with HCM phenotypes and for all coding regions and exon-intron boundaries of the same HCM genes by HRM. The 32 studied genes include the most frequent HCM-associated sarcomere genes, as well as 27 genes with lower reported HCM phenotype association. This coupled genotyping strategy enabled us to identify a c.128delC (p.A43Vfs165) frame-shift mutation in the CSRP3 gene, a gene not usually studied in current HCM genetics. The heterozygous CSRP3 mutation was found in two patients (sample types 2 and 3) aged 50 and 52 years, respectively, both with diffuse left ventricular hypertrophy. Furthermore, this coupled strategy enabled us to find a novel mutation, c.817C &gt;T (p.Arg273Cys), in MYBPC3 in an individual from sample type 3, subsequently confirmed by dideoxy sequencing. This novel mutation in MYBPC3, not present in 200 chromosomes from 200 healthy individuals, affects a codon known to harbor an HCM-causing mutation--p.Arg253His. In conclusion, in the cohort used in this work coupling two technologies, MSG and HRM, with high sensitivity and low false positive results, enabled rapid, innovative and low-cost genotyping of HCM patients, which may in the short-term be suitable for accurate genetic diagnosis of HCM."	"Rapid detection of genetic variants in hypertrophic cardiomyopathy by custom DNA resequencing array in clinical practice. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiac disease (1/500) and the most common cause of sudden cardiac death in young people. Pathogenic mutation detection of HCM is having a growing impact on the medical management of patients and their families. However, the remarkable genetic and allelic heterogeneity makes molecular analysis by conventional methods very time-consuming, expensive and difficult to realise in a routine diagnostic molecular laboratory. The authors used their custom DNA resequencing array which interrogates all possible single-nucleotide variants on both strands of all exons (n=160), splice sites and 5'-untranslated region of 12 HCM genes (27 000 nucleotides). The results for 122 unrelated patients with HCM are presented. Thirty-three known or novel potentially pathogenic heterozygous single-nucleotide variants were identified in 38 patients (31%) in genes MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3 and ACTC1. Although next-generation sequencing will replace all large-scale sequencing platforms for inherited cardiac disorders in the near future, this HCM resequencing array is currently the most rapid, cost-effective and reasonably efficient technology for first-tier mutation screening of HCM in clinical practice. Because of its design, the array is also an appropriate tool for initial screening of other inherited forms of cardiomyopathy."	"Changing pattern of gene expression is associated with ventricular myocyte dysfunction and altered mechanisms of Ca2+ signalling in young type 2 Zucker diabetic fatty rat heart. The association between type 2 diabetes and obesity is very strong, and cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. The aim of this study was to investigate early changes in the pattern of genes encoding cardiac muscle regulatory proteins and associated changes in ventricular myocyte contraction and Ca(2+) transport in young (9- to 13-week-old) type 2 Zucker diabetic fatty (ZDF) rats. The amplitude of myocyte shortening was unaltered; however, time-to-peak shortening and time to half-relaxation of shortening were prolonged in ZDF myocytes (163 ± 5 and 127 ± 7 ms, respectively) compared with age-matched control rats (136 ± 5 and 103 ± 4 ms, respectively). The amplitude of the Ca(2+) transient was unaltered; however, time-to-peak Ca(2+) transient was prolonged in ZDF myocytes (66.9 ± 2.6 ms) compared with control myocytes (57.6 ± 2.3 ms). The L-type Ca(2+) current was reduced, and inactivation was prolonged over a range of test potentials in ZDF myocytes. At 0 mV, the density of L-type Ca(2+) current was 1.19 ± 0.28 pA pF(-1) in ZDF myocytes compared with 2.42 ± 0.40 pA pF(-1) in control myocytes. Sarcoplasmic reticulum Ca(2+) content, release and uptake and myofilament sensitivity to Ca(2+) were unaltered in ZDF myocytes compared with control myocytes. Expression of genes encoding various L-type Ca(2+) channel proteins (Cacna1c, Cacna1g, Cacna1h and Cacna2d1) and cardiac muscle proteins (Myh7) were upregulated, and genes encoding intracellular Ca(2+) transport regulatory proteins (Atp2a2 and Calm1) and some cardiac muscle proteins (Myh6, Myl2, Actc1, Tnni3, Tnn2, and Tnnc1) were downregulated in ZDF heart compared with control heart. A change in the expression of genes encoding myosin heavy chain and L-type Ca(2+) channel proteins might partly underlie alterations in the time course of contraction and Ca(2+) transients in ventricular myocytes from ZDF rats."	"[Fabry disease among hypertrophic cardiomyopathy of genetic origin]. Primary hypertrophic cardiomyopathy is a relatively frequent disease (1/500) which results from a mutation in a gene encoding a sarcomeric protein. In a series of 184 cases, nearly half (46 %) were secondary to a mutation in one of the 4 following genes : MYBPC3, MYH7, TNNI3, TNNT2. In Fabry disease, an exclusive or nearly exclusive cardiac expression is possible and referred to as &quot;cardiac variant&quot;. The hypertrophic cardiomyopathy of Fabry disease is usually unspecific. Two series reported a prevalence of Fabry disease of about 6% among male cases. An Italian series of 34 female cases with hypertrophic cardiomyopathy demonstrated that it was feasible to diagnose Fabry disease in females by screening for specific lesions in myocardial biopsies. We detected a patient who initially presented with a common hypertrophic cardiomyopathy except that his ECG showed depression of ST segment and inversion of T wave in leads D1, VL and in precordial leads. The family history revealed several affected relatives and female carriers. In conclusion, an isolated common hypertrophic cardiomyopathy may be secondary to Fabry disease. Male patients should be screened systemically for enzyme defect except in cases of father-to-son transmission. In females, an affected male relative should be searched for screening or the GLA gene should be sequenced. It is important to think about a putative Fabry disease in cases with hypertrophic cardiomyopathy not associated with any obvious cause."	"Identification of a novel TPM1 mutation in a family with left ventricular noncompaction and sudden death. Left ventricular noncompaction (LVNC) is a cardiomyopathy morphologically characterized by 2-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses communicating with the left ventricular cavity. The purpose of this study was to investigate patients with LVNC for possible disease causing mutations. We screened 4 genes (TAZ, LDB3, DTNA and TPM1) in 51 patients with LVNC for mutations by polymerase chain reaction and direct DNA sequencing. A novel missense substitution in exon 1 of TPM1 (c.109A&gt;G: p.Lys37Glu) was identified in three affected members of a family with isolated LVNC. The substitution brings about a change in amino acid charge at a highly conserved residue and could result in aberrant mRNA splicing. This variant was not identified in 200 normal control samples. Pathologic analysis of a right ventricular myocardial specimen from the proband's maternal aunt revealed endocardial and subendocardial fibrosis with prominent elastin deposition, as well as the presence of adipose tissue between muscle layers, pathologic changes that are distinct from those seen in patients with HCM or DCM. Screening of the proband and her mother for variants in other sarcomeric protein-encoding candidate genes, MYH7, MYBPC3, TNNT2, TNNI3, ACTC, MYL2, and MYL3, did not identify any other non-synonymous variants or variants in splice donor-acceptor sequences that were potentially disease causing. We conclude TPM1 is a potential candidate disease-causing gene for isolated LVNC, especially in patients experiencing sudden death."	"Analysis of the sarcomere protein gene mutation on cardiomyopathy - Mutations in the cardiac troponin I gene. Developments in the molecular genetic studies of cardiomyopathy (CM) have led to discovery of a large number of mutations in the genes encoding the sarcomeric proteins. In this study, comprehensive screening of TNNI3 was performed in 36 consented autopsy cases diagnosed as CM, in order to evaluate the prevalence of gene mutations in sudden death caused by CM. In DCM cases, a new missense mutation Pro16Thr was detected. A single nucleotide polymorphism at -8 position of intron 3 (IVS 3 -8 T&gt;A) was identified, which had a significant difference in allele frequency between DCM and control cases. From these results, it was indicated that this study contribute to genetic based diagnosis, risk stratification and prevention of sudden death caused by CM."	"Development of a high resolution melting method for the detection of genetic variations in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most common genetic cardiac disease affecting 1 in 500 people. Due to large cohorts to investigate, the number of disease-causing genes, the size of the 2 prevalent mutated genes, and the presence of a large spectrum of private mutations, mutational screening must be performed using an extremely sensitive and specific scanning method. High Resolution Melting (HRM) analysis was developed for prevalent HCM-causing genes (MYBPC3, MYH7, TNNT2, and TNNI3) using control DNAs and DNAs carrying previously identified gene variants. A cohort of 34 HCM patients was further blindly screened. To evaluate HRM sensitivity, this cohort was also screened using an optimized DHPLC methodology. All gene variants detected by DHPLC were also readily identified as abnormal by HRM analysis. Mutational screening of a cohort of 34 HCM cases led to identification of 19 mutated alleles. Complete molecular investigation was completed two times faster and cheaper than using DHPLC strategy. HRM analysis represents an inexpensive, highly sensitive and high-throughput method to allow identification of mutations in the coding sequences of prevalent HCM genes. Identification of more HCM mutations will provide new insights into genotype/phenotype relationships and will allow a better knowledge of the HCM physiopathology."	"Identification of a novel MYBPC3 gene variant in a patient with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic disorder characterized by cardiac hypertrophy caused by mutations in sarcomere protein genes. MYBPC3 mutations are reported as a frequent cause of HCM. We aimed to identify the gene mutation underlying HCM in an Italian patient and his family composed of 13 relatives. Mutation screening of 658 known mutations was performed using a rapid and efficient mutation detection system based on semiautomated MALDI-TOF mass spectrometry using the Sequenom MassArray System and iPLEX Gold genotyping chemistry. Subsequently, direct sequencing of the coding exons and flanking intronic regions was performed for the most suitable HCM genes (MYBPC3, MYH7, TNNT2, TNNI3, and TPM1) in the index patient. We found a novel MYBPC3 gene mutation: G13999T (Gln689His). No other sarcomere gene mutation was found in this family. This genetic variant, which changes the last amino acid of MYBPC3 exon 21, affects a highly conserved residue. Furthermore, the Gln689His does not appear in public databases and has never been described as a polymorphism. The potential pathogenic role of this novel mutation was underlined by its absence in a sample of healthy subjects (n = 122) from the general Italian population. In summary, a novel MYBPC3 gene mutation has been identified in a patient affected by HCM, whereas it was absent in 244 reference alleles."	"Long-term outcome of 4 Korean families with hypertrophic cardiomyopathy caused by 4 different mutations. We sought to describe the long-term outcome of individuals in 4 Korean families with hypertrophic cardiomyopathy (HCM) with known mutations. Long-term clinical features of familial HCM might be characterized according to the mutation causing HCM. We performed long-term (mean, 13.1 y) clinical evaluations on 46 subjects from 4 Korean families with different mutations. Myosin light chain 3 gene (MYL3) mutation was associated with late-onset HCM with relatively poor prognosis; 1 sudden cardiac death and 2 cases of heart failure with atrial fibrillation occurred among 12 subjects with this mutation. Myosin binding protein C gene (MYBPC3) mutation was associated with 2 cases of sudden cardiac death and 3 cases of heart failure among 7 affected members. Cardiac troponin I type 3 gene (TNNI3) mutation was associated with 5 deaths related to atrial fibrillation and stroke among 12 mutation-positive members. Myosin heavy chain 7 gene (MYH7) mutation was associated with 11 deaths in 15 affected members. The clinical course was quite different for different HCM mutations. Even within the same family, individuals carrying the same mutation differed in disease expression and prognosis."	"Prevalence and spectrum of mutations in a cohort of 192 unrelated patients with hypertrophic cardiomyopathy. Hypertrophic Cardiomyopathy (HCM), a common and clinically heterogeneous disease characterized by unexplained ventricular myocardial hypertrophy and a high risk of sudden cardiac death, is mostly caused by mutations in sarcomeric genes but modifiers genes may also modulate the phenotypic expression of HCM mutations. The aim of the current study was to report the frequency of single and multiple gene mutations in a large French cohort of HCM patients and to evaluate the influence of polymorphisms previously suggested to be potential disease modifiers in this myocardial pathology. We report the molecular screening of 192 unrelated HCM patients using denaturing high-performance liquid chromatography/sequencing analysis of the MYBPC3, MYH7, TNNT2 and TNNI3 genes. Genotyping of 6 gene polymorphisms previously reported as putative HCM modifiers (5 RAAS polymorphisms and TNF-α -308 G/A) was also performed. Seventy-five mutations were identified in 92 index patients (48%); 32 were novel. MYBPC3 mutations (25%) represent the most prevalent cause of inherited HCM whereas MYH7 mutations (12%) rank second in the pathogenesis. The onset age was older in patients carrying MYBPC3 mutations than in those with MYH7 mutations. The MYBPC3 IVS20-2A&gt;G splice mutation was identified in 7% of our HCM population. Multiple gene mutations were identified in 9 probands (5%), highlighting the importance of screening other HCM-causing genes even after a first mutation has been identified, particularly in young patients with a severe phenotype. No single or cumulative genetic modifier effect could be evidenced in this HCM cohort."	"Meta-analysis of genome-wide gene expression differences in onset and maintenance phases of genetic hypertension. Gene expression differences accompany both the onset and established phases of hypertension. By an integrated genome-transcriptome approach we performed a meta-analysis of data from 74 microarray experiments available on public databases to identify genes with altered expression in the kidney, adrenal, heart, and artery of spontaneously hypertensive and Lyon hypertensive rats. To identify genes responsible for the onset of hypertension we used a statistical approach that sought to eliminate expression differences that occur during maturation unrelated to hypertension. Based on this adjusted fold-difference statistic, we found 36 genes for which the expression differed between the prehypertensive phase and established hypertension. Genes having possible relevance to hypertension onset included Actn2, Ankrd1, ApoE, Cd36, Csrp3, Me1, Myl3, Nppa, Nppb, Pln, Postn, Spp1, Slc21a4, Slc22a2, Thbs4, and Tnni3. In established hypertension 102 genes exhibited altered expression after Bonferroni correction (P&lt;0.05). These included Atp5o, Ech1, Fabp3, Gnb3, Ldhb, Myh6, Lpl, Pkkaca, Vegfb, Vcam1, and reduced nicotinamide-adenine dinucleotide dehydrogenases. Among the genes identified, there was an overrepresentation of gene ontology terms involved in energy production, fatty acid and lipid metabolism, oxidation, and transport. These could contribute to increases in reactive oxygen species. Our meta-analysis has revealed many new genes for which the expression is altered in hypertension, so pointing to novel potential causative, maintenance, and responsive mechanisms and pathways."	"Ventricular septal defect and restrictive cardiomyopathy in a paediatric TNNI3 mutation carrier. Here, we report an infantile case of ventricular septal defect and restrictive cardiomyopathy caused by a de novo mutation of the cardiac troponin T gene. Initially diagnosed with a perimembranous ventricular septal defect in the newborn period, we observed the first signs of restrictive cardiomyopathy at the age of 18 months. The patient was listed for cardiac transplantation at the age of 8 years despite optimal medical treatment. The finding of a de novo mutation in TNNI3 (R204H) enabled a genetic diagnosis and counselling. We suggest that the previously reported overlap of functional and morphologic phenotypes in sarcomeric genes may also be a feature of TNNI3 mutations."	"The R820W mutation in the MYBPC3 gene, associated with hypertrophic cardiomyopathy in cats, causes hypertrophic cardiomyopathy and left ventricular non-compaction in humans. The R820W mutation in the MYBPC3 gene has been associated with the development of hypertrophic cardiomyopathy (HCM) in rag-doll cats, but had not been described in humans. To describe the phenotype associated with the R820W mutation identified in a human family. The R820W was identified by direct sequencing of the MYBPC3 gene in a 47 year old woman with HCM and left ventricular non-compaction (LVNC). Clinical and genetic studies of the R820W mutation were performed in her family. The index patient was homozygous for the mutation and had no additional mutations in the main sarcomeric genes (MYH7, TNNT2, TNNI3, and TPM1). She had HCM with LVNC and normal systolic function. One brother had died suddenly at age 43 years. Another brother diagnosed of LVNC with severe systolic dysfunction and a cardiac arrest was also homozygous for the mutation. One heterozygous 31 year old sister, and three heterozygous sons of the index (ages 14, 20 and 23 years old) were clinically unaffected. The father of the index was apparently healthy and her mother had atrial fibrillation and an electrocardiographic diagnosis of left ventricular hypertrophy at age 86 years. The R820W mutation in the MYBPC3 gene, previously associated with HCM in rag-doll cats, causes both HCM and LVNC in homozygous human carriers, with mild or null clinical expression in heterozygous carriers."	"Real-time reverse transcription-PCR expression profiling of porcine troponin I family in three different types of muscles during development. In this study, the expression profiling of three troponin I isoforms (TNNI1, TNNI2 and TNNI3) was investigated in two pig breeds differing in muscularity (Yorkshire and Meishan) at six stages (fetal 60 days and postnatal 3, 35, 60, 120, and 180 days) and three types of muscles (longissimus dorsi muscle, LD; semitendinosus, ST; cardiac muscle, CM) using relative real-time quantitative PCR. Significant differences of troponin I expression in three muscles were found between Yorkshire and Meishan breeds at some stages. The expression peak of TNNI1 and TNNI2 in LD and ST was at postnatal 35 or 60 days in Yorkshire and at postnatal 120 or 180 days in Meishan pigs, while it occurred in CM at postnatal 3 days in two pig breeds. The relative expression values of TNNI1 and TNNI2 were significantly higher in LD than ST at most of stages after birth. The expression ratio of TNNI2 versus TNNI1 favoured TNNI2 expression in ST and LD, but on the contrary in CM. The expression peak of TNNI3 occurred at postnatal 60 and 120 days in Yorkshire and Meishan pigs, respectively. TNNI1 and TNNI3 were co-expressed in CM during the fetal and earlier stages after birth."	"Clinical features and outcome of hypertrophic cardiomyopathy associated with triple sarcomere protein gene mutations. The aim of this study was to describe the clinical profile associated with triple sarcomere gene mutations in a large hypertrophic cardiomyopathy (HCM) cohort. In patients with HCM, double or compound sarcomere gene mutation heterozygosity might be associated with earlier disease onset and more severe outcome. The occurrence of triple mutations has not been reported. A total of 488 unrelated index HCM patients underwent screening for myofilament gene mutations by direct deoxyribonucleic acid sequencing of 8 genes, including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2, MYL3), troponin-T (TNNT2), troponin-I (TNNI3), alpha-tropomyosin (TPM1), and actin (ACTC). Of the 488 index patients, 4 (0.8%) harbored triple mutations, as follows: MYH7-R869H, MYBPC3-E258K, and TNNI3-A86fs in a 32-year-old woman; MYH7-R723C, MYH7-E1455X, and MYBPC3-E165D in a 46-year old man; MYH7-R869H, MYBPC3-K1065fs, and MYBPC3-P371R in a 45-year old woman; and MYH7-R1079Q, MYBPC3-Q969X, and MYBPC3-R668H in a 50-year old woman. One had a history of resuscitated cardiac arrest, and 3 had significant risk factors for sudden cardiac death, prompting the insertion of an implantable cardioverter-defibrillator in all, with appropriate shocks in 2 patients. Moreover, 3 of 4 patients had a severe phenotype with progression to end-stage HCM by the fourth decade, requiring cardiac transplantation (n=1) or biventricular pacing (n=2). The fourth patient, however, had clinically mild disease. Hypertrophic cardiomyopathy caused by triple sarcomere gene mutations was rare but conferred a remarkably increased risk of end-stage progression and ventricular arrhythmias, supporting an association between multiple sarcomere defects and adverse outcome. Comprehensive genetic testing might provide important insights to risk stratification and potentially indicate the need for differential surveillance strategies based on genotype."	"Genomic analysis of expressed sequence tags in American black bear Ursus americanus. Species of the bear family (Ursidae) are important organisms for research in molecular evolution, comparative physiology and conservation biology, but relatively little genetic sequence information is available for this group. Here we report the development and analyses of the first large scale Expressed Sequence Tag (EST) resource for the American black bear (Ursus americanus). Comprehensive analyses of molecular functions, alternative splicing, and tissue-specific expression of 38,757 black bear EST sequences were conducted using the dog genome as a reference. We identified 18 genes, involved in functions such as lipid catabolism, cell cycle, and vesicle-mediated transport, that are showing rapid evolution in the bear lineage Three genes, Phospholamban (PLN), cysteine glycine-rich protein 3 (CSRP3) and Troponin I type 3 (TNNI3), are related to heart contraction, and defects in these genes in humans lead to heart disease. Two genes, biphenyl hydrolase-like (BPHL) and CSRP3, contain positively selected sites in bear. Global analysis of evolution rates of hibernation-related genes in bear showed that they are largely conserved and slowly evolving genes, rather than novel and fast-evolving genes. We provide a genomic resource for an important mammalian organism and our study sheds new light on the possible functions and evolution of bear genes."	"Coding sequence rare variants identified in MYBPC3, MYH6, TPM1, TNNC1, and TNNI3 from 312 patients with familial or idiopathic dilated cardiomyopathy. Rare variants in &gt;30 genes have been shown to cause idiopathic or familial dilated cardiomyopathy (DCM), but the frequency of genetic causation remains poorly understood. We have previously resequenced 9 genes in a cohort of idiopathic or familial DCM probands for rare variants, and now we report resequencing results for 5 more genes with established relationships to DCM. Blood samples were collected, and DNA specimens were prepared from 312 patients, 181 with familial DCM and 131 with idiopathic DCM. Genomic DNA underwent bidirectional sequencing, and DNA of additional family members underwent analysis when a rare variant was identified. We identified rare variants in 34 probands (10.9% overall), including 29 unique protein-altering rare variants and 2 splicing variants that were absent in 246 control subjects (492 chromosomes). These variants were 12 MYBPC3 (myosin-binding protein C) in 13 (4.2%) probands, 8 MYH6 (alpha-myosin heavy chain) in 10 (3.2%), 6 TPM1 (tropomyosin) in 6 (1.9%), 4 TNNC1 (cardiac troponin C) in 4 (1.3%), and 1 TNNI3 (cardiac troponin I) in 2 (0.6%). Variants were classified as likely or possibly disease causing in 13 and 20 probands, respectively (n=33; 10.6% overall). One MYH6 variant was classified as unlikely to be disease causing. Rare variants in these 5 genes likely or possibly caused 10.6% of DCM in this cohort. When combined with our prior resequencing reports, approximately 27% of DCM probands had possible or likely disease-causing variants identified."	"Heart failure-associated changes in RNA splicing of sarcomere genes. Alternative mRNA splicing is an important mechanism for regulation of gene expression. Altered mRNA splicing occurs in association with several types of cancer, and a small number of disease-associated changes in splicing have been reported in heart disease. However, genome-wide approaches have not been used to study splicing changes in heart disease. We hypothesized that mRNA splicing is different in diseased hearts compared with control hearts. We used the Affymetrix Exon array to globally evaluate mRNA splicing in left ventricular myocardial RNA from controls (n=15) and patients with ischemic cardiomyopathy (n=15). We observed a broad and significant decrease in mRNA splicing efficiency in heart failure, which affected some introns to a greater extent than others. The profile of mRNA splicing separately clustered ischemic cardiomyopathy and control samples, suggesting distinct changes in mRNA splicing between groups. Reverse transcription-polymerase chain reaction validated 9 previously unreported alternative splicing events. Furthermore, we demonstrated that splicing of 4 key sarcomere genes, cardiac troponin T (TNNT2), cardiac troponin I (TNNI3), myosin heavy chain 7 (MYH7), and filamin C, gamma (FLNC), was significantly altered in ischemic cardiomyopathy and in dilated cardiomyopathy and aortic stenosis. In aortic stenosis samples, these differences preceded the onset of heart failure. Remarkably, the ratio of minor to major splice variants of TNNT2, MYH7, and FLNC classified independent test samples as control or disease with &gt;98% accuracy. Our data indicate that mRNA splicing is broadly altered in human heart disease and that patterns of aberrant RNA splicing accurately assign samples to control or disease classes."	"Prevalence of sarcomere protein gene mutations in preadolescent children with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) in infants and children is thought to be commonly associated with metabolic disorders and malformation syndromes. Familial disease caused by mutations in cardiac sarcomere protein genes, which accounts for most cases in adolescents and adults, is believed to be a very rare cause of HCM. Seventy-nine consecutive patients diagnosed with HCM aged 13 years or younger underwent detailed clinical and genetic evaluation. The protein-coding sequences of 9 sarcomere protein genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, ACTC, and TNNC1), the genes encoding desmin (DES), and the gamma-2 subunit of AMP kinase (PRKAG2) were screened for mutations. A family history of HCM was present in 48 patients (60.8%). Forty-seven mutations (15 novel) were identified in 42 (53.2%) patients (5 patients had 2 mutations). The genes most commonly implicated were MYH7 (48.9%) and MYBPC3 (36.2%); mutations in TNNT2, ACTC, MYL3, and TNNI3 accounted for &lt;5% of cases each. A total of 16.7% patients with sarcomeric mutations were diagnosed before 1 year of age. There were no differences in clinical and echocardiographic features between those children with sarcomere protein gene mutations and those without or between patients with 2 mutations and those with 1 or no mutations. This study shows that familial disease is common among infants and children with HCM and that, in most cases, disease is caused by mutations in cardiac sarcomere protein genes. The major implication is that all first-degree relatives of any child diagnosed with HCM should be offered screening. Furthermore, the finding that one sixth of patients with sarcomeric disease were diagnosed in infancy suggests that current views on pathogenesis and natural history of familial HCM may have to be revised."	"Molecular cloning and comparative characterization of the porcine troponin I family. Troponin I (TnI) is a family of three muscle-specific myofibrillar proteins involved in calcium-sensitive regulation of contraction in cardiac and skeletal muscle. In this study, the full-length cDNA and genomic sequence of three genes of porcine TnI family were cloned and sequenced. The full-length cDNA of TNNI1, TNNI2, and TNNI3 genes were 989 bp, 734 bp, and 831 bp in length, which contained an open reading frame of 564, 549, and 636 nucleotides, respectively. Three Troponin I shared 54.4 approximately 58.3% similarity with each other in their predicted amino acid sequences. The TNNI1, TNNI2, and TNNI3 displayed the same genomic structure as other vertebrates and spanned over 9785 bp, 2373 bp, and 3648 bp genomic regions, respectively. The regulatory elements in the proximal promoter of TNNI2 and TNNI3 were conserved among human, mouse, and pig, but regulatory element differences existed in the TNNI1 promoter among them. Expression profiling showed that TnI genes were widely expressed in the tissues studied, with the highest expression level of TNNI1 and TNNI2 in skeletal muscle, and TNNI3 in cardiac muscle."	"Electrochemiluminescent immunoassay for rat skeletal troponin I (Tnni2) in serum. The identification of xenobiotic-induced skeletal muscle toxicities through the detection of biomarkers in nonclinical studies can be useful early in the drug discovery process to aid in candidate drug decisions. Skeletal muscle troponin I (sTnI) has been identified as a potential marker of skeletal muscle injury in humans and animals. When skeletal muscle tissue is injured, sTnI is released into circulation. Due to the nature of the troponin subunits to form intermolecular complexes and to oxidize under various environmental conditions, the optimal assay required the use of a combination of chelating and reducing agents in the sample preparation. It also required the selection of capture and detection antibodies with specificity to the reduced sTnI monomeric subunit and includes a capture antibody specific for sTnI Type 2 (Tnni2), which is associated with Type 2 &quot;fast twitch&quot; muscle fibers. We have developed a sensitive and specific assay to detect the concentration of rat sTnI in serum using an electrochemiluminescent (ECL) immunoassay platform with a sensitivity of 2.4 ng/ml and with minimal cross-reactivity with rat cardiac TnI (Tnni3). The use of additives and the wide dynamic range of the ECL platform resulted in an accurate and consistent ECL immunoassay that was able to specifically detect sTnI (Tnni2) in rat serum. This method can be applied to safety assessment in early drug development."	"Low prevalence and variable clinical presentation of troponin I and troponin T gene mutations in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disorder caused by mutations in cardiac sarcomeric proteins. Troponin I (TNNI3) and troponin T (TNNT2) are important parts of the sarcomere in heart muscle, and mutations in their genes are responsible for development of HCM. The prevalence of mutations in these two genes is low; hence, the data on clinical outcome are scarce. Yet, some of these mutations were shown to be malignant with a high incidence of sudden death. Here, we describe the disease course in three families affected with TNNI3 and one family with TNNT2 gene mutations. In TNNI3-HCM, the phenotypic manifestation ranged from clinically silent to sudden cardiac death with the worst prognosis observed in carriers of Ala157Val mutation in exon 7. In contrast, TNNT2-HCM was associated with favorable prognosis. Thus, the findings of the present study add evidence on the phenotypic presentation of this genetic disease."	"Identification and functional characterization of cardiac troponin I as a novel disease gene in autosomal dominant dilated cardiomyopathy. Idiopathic dilated cardiomyopathy (DCM) is inherited in approximately one third of cases, usually as an autosomal dominant trait. More than 30 loci have been identified, several of which encode sarcomeric proteins which can also be mutated to cause hypertrophic cardiomyopathy. One contractile protein gene well known as a hypertrophic cardiomyopathy disease gene, but with no reported mutation in autosomal dominant DCM, is TNNI3 which encodes cardiac troponin I. To test TNNI3 as a candidate gene, a panel of 96 probands with DCM was analyzed. Genomic DNA was isolated and TNNI3 exons screened by heteroduplex analysis. Exons with aberrant profiles were sequenced and variants evaluated by segregation analysis and study of normal controls. We report 2 novel TNNI3 missense mutations, Lys36Gln and Asn185Lys, each associated with severe and early onset familial DCM. Of the 5 mutation carriers, cardiac transplantation was required in 3, at ages 6, 15, and 24 years. Analysis of Ca(2+) regulation of actin-tropomyosin-activated myosin ATPase by troponin revealed that troponin reconstituted with either mutant troponin I gave lower maximum ATPase rates and lower Ca(2+) sensitivity than wild type. Furthermore, mutant thin filaments had reduced Ca(2+) affinity compared with normal. The functional alterations mirror closely a consistent phenotype found in proven DCM mutations in other thin filament proteins, thus supporting the interpretation that these mutations are disease-causing. These are the first reported autosomal dominant DCM-causing mutations in TNNI3, and so the findings expand the spectrum of disease-causing genes that lead to either hypertrophic cardiomyopathy or DCM depending on the specific mutation."	"Genetic and clinical profile of Indian patients of idiopathic restrictive cardiomyopathy with and without hypertrophy. Both idiopathic restrictive cardiomyopathy (IRCM) and hypertrophic cardiomyopathy (HCM) are part of the same disease spectrum and are due to sarcomeric gene mutations. A patient with restrictive physiology without left ventricular hypertrophy (LVH) would be diagnosed as IRCM, while one with LVH would be diagnosed as HCM with restrictive physiology. We studied a group of patients with restrictive physiology for mutations in beta-myosin heavy chain (MYH7) and troponin I (TNNI3) gene. Consecutive probands in the HCM and IRCM cohort over a 4-year period were considered for this study. These included 10 IRCM and 102 HCM patients. All were Asian Indians. Among the 17 patients who had restrictive physiology 10 were IRCM patients and seven were HCM patients. Of the HCM patients, seven (6.9%) had restrictive physiology. Mean age of these 17 patients was 40.1 +/- 19.2 years (range: 15-67 ), six (35.3%) were males. Maximal left ventricular wall thickness of the seven HCM probands was 20.7 +/- 5.2 mm (range: 16-31), while it was normal in the IRCM probands. Ten probands (58.8%) were in NYHA class III or IV. Seven patients (41.2%) had atrial fibrillation. All the probands were screened for mutations in selected exons of MYH7 and TNNI3 genes. One IRCM patient was found to have p.Arg721Lys mutation in the MYH7 gene. She died due to progressive congestive cardiac failure at the age of 47 years. One HCM proband with a maximal left ventricular wall thickness of 17 mm had p.Arg192His mutation in the TNNI3 gene. She had features consistent with restrictive physiology. Her father and sister had died of restrictive cardiomyopathy. IRCM and HCM with restrictive physiology, both are part of the clinical expression of MYH7 and TNNI3 mutations and lead to worse clinical onset and progression of the disease."	"The role of sarcomere gene mutations in patients with idiopathic dilated cardiomyopathy. We investigated a Danish cohort of 31 unrelated patients with idiopathic dilated cardiomyopathy (IDC), to assess the role that mutations in sarcomere protein genes play in IDC. Patients were genetically screened by capillary electrophoresis single strand conformation polymorphism and subsequently by bidirectional DNA sequencing of conformers in the coding regions of MYH7, MYBPC3, TPM1, ACTC, MYL2, MYL3, TNNT2, CSRP3 and TNNI3. Eight probands carried disease-associated genetic variants (26%). In MYH7, three novel mutations were found; in MYBPC3, one novel variant and two known mutations were found; and in TNNT2, a known mutation was found. One proband was double heterozygous. We find evidence of phenotypic plasticity: three mutations described earlier as HCM causing were found in four cases of IDC, with no history of a hypertrophic phase. Furthermore, one pedigree presented with several cases of classic DCM as well as one case with left ventricular non-compaction. Disease-causing sarcomere gene mutations were found in about one-quarter of IDC patients, and seem to play an important role in the causation of the disease. The genetics is as complex as seen in HCM. Thus, our data suggest that a genetic work-up should include screening of the most prominent sarcomere genes even in the absence of a family history of the disease."	"[Mutations in sarcomeric genes MYH7, MYBPC3, TNNT2, TNNI3, and TPM1 in patients with hypertrophic cardiomyopathy]. Mutation of a sarcomeric gene is the most frequent cause of hypertrophic cardiomyopathy. For each such gene, however, previous studies have reported a range of different mutation frequencies, and clinical manifestations have been highly heterogeneous, both of which limit the use of genetic information in clinical practice. Our aim was to determine the frequency of mutations in the sarcomeric genes MYH7, MYBPC3, TNNT2, TNNI3, and TPM1 in a cohort of Spanish patients with hypertrophic cardiomyopathy. We used sequencing to analyze the coding regions of these five genes in 120 patients (29% with a family history) and investigated how the patient phenotype varied with the gene mutated. In total, 32 patients were found to have mutations: 10 in MYH7 (8%), 20 in MYBPC3 (16%), 2 in TNNT2, 1 in TPM1 and none in TNNI3. Overall, 61% of mutations had not been described before. Two patients had two mutations (i.e., double mutants). There was no difference in the mean age at diagnosis or the extent of the hypertrophy between those with MYH7 mutations and those with MYBPC3 mutations. Some 26% of patients had a mutation in one of the five sarcomeric genes investigated. More than half of the mutations had not been described before. The MYBPC3 gene was the most frequently mutated, followed by MYH7. No phenotypic differences were observed between carriers of the various mutations, which makes it difficult to use genetic information to stratify risk in these patients."	"Diagnostic yield, interpretation, and clinical utility of mutation screening of sarcomere encoding genes in Danish hypertrophic cardiomyopathy patients and relatives. The American Heart Association (AHA) recommends family screening for hypertrophic cardiomyopathy (HCM). We assessed the outcome of family screening combining clinical evaluation and screening for sarcomere gene mutations in a cohort of 90 Danish HCM patients and their close relatives, in all 451 persons. Index patients were screened for mutations in all coding regions of 10 sarcomere genes (MYH7, MYL3, MYBPC3, TNNI3, TNNT2, TPM1, ACTC, CSRP3, TCAP, and TNNC1) and five exons of TTN. Relatives were screened for presence of minor or major diagnostic criteria for HCM and tracking of DNA variants was performed. In total, 297 adult relatives (&gt;18 years) (51.2%) fulfilled one or more criteria for HCM. A total of 38 HCM-causing mutations were detected in 32 index patients. Six patients carried two disease-associated mutations. Twenty-two mutations have only been identified in the present cohort. The genetic diagnostic yield was almost twice as high in familial HCM (53%) vs. HCM of sporadic or unclear inheritance (19%). The yield was highest in families with an additional history of HCM-related clinical events. In relatives, 29.9% of mutation carriers did not fulfil any clinical diagnostic criterion, and in 37.5% of relatives without a mutation, one or more criteria was fulfilled. A total of 60% of family members had no mutation and could be reassured and further follow-up ceased. Genetic diagnosis may be established in approximately 40% of families with the highest yield in familial HCM with clinical events. Mutation-screening was superior to clinical investigation in identification of individuals not at increased risk, where follow-up is redundant, but should be offered in all families with relatives at risk for developing HCM."	"Adverse events in families with hypertrophic or dilated cardiomyopathy and mutations in the MYBPC3 gene. Mutations in MYBPC3 encoding myosin binding protein C belong to the most frequent causes of hypertrophic cardiomyopathy (HCM) and may also lead to dilated cardiomyopathy (DCM). MYBPC3 mutations initially were considered to cause a benign form of HCM. The aim of this study was to examine the clinical outcome of patients and their relatives with 18 different MYBPC3 mutations. 87 patients with HCM and 71 patients with DCM were screened for MYBPC3 mutations by denaturing gradient gel electrophoresis and sequencing. Close relatives of mutation carriers were genotyped for the respective mutation. Relatives with mutation were then evaluated by echocardiography and magnetic resonance imaging. A detailed family history regarding adverse clinical events was recorded. In 16 HCM (18.4%) and two DCM (2.8%) index patients a mutation was detected. Seven mutations were novel. Mutation carriers exhibited no additional mutations in genes MYH7, TNNT2, TNNI3, ACTC and TPM1. Including relatives of twelve families, a total number of 42 mutation carriers was identified of which eleven (26.2%) had at least one adverse event. Considering the twelve families and six single patients with mutations, 45 individuals with cardiomyopathy and nine with borderline phenotype were identified. Among the 45 patients, 23 (51.1%) suffered from an adverse event. In eleven patients of seven families an unexplained sudden death was reported at the age between 13 and 67 years. Stroke or a transient ischemic attack occurred in six patients of five families. At least one adverse event occurred in eleven of twelve families. MYBPC3 mutations can be associated with cardiac events such as progressive heart failure, stroke and sudden death even at younger age. Therefore, patients with MYBPC3 mutations require thorough clinical risk assessment."	"Characterization of the paracrine effects of human skeletal myoblasts transplanted in infarcted myocardium. The discrepancy between the functional improvements yielded experimentally by skeletal myoblasts (SM) transplanted in infarcted myocardium and the paucity of their long-term engraftment has raised the hypothesis of cell-mediated paracrine mechanisms. We analyzed gene expression and growth factors released by undifferentiated human SM (CD56(+)), myotubes (SM cultured until confluence) and fibroblasts-like cells (CD56(-)). Gene expression revealed up-regulation of pro-angiogenic (PGF), anti-apoptotics (BAG-1, BCL-2), heart development (TNNT2, TNNC1) and extracellular matrix remodelling (MMP-2, MMP-7) genes in SM. In line with the gene expression profile, the analysis of culture supernatants of SM by ELISA identified the release of growth factors involved in angiogenesis (VEGF, PIGF, angiogenin, angiopoietin, HGF and PDGF-BB) as well as proteases involved in matrix remodelling (MMP2, MMP9 and MMP10) and their inhibitors (TIMPs). Culture of smooth muscle cells (SMC), cardiomyocytes (HL-1) and human umbilical vein endothelial cells (HUVECs) with SM-released conditioned media demonstrated an increased proliferation of HUVEC, SMC and cardiomyocytes (p&lt;0.05) and a decrease in apoptosis of cardiomyocytes (p&lt;0.05). Analysis of nude rats transplanted with human SM demonstrated expression of human-specific MMP-2, TNNI3, CNN3, PGF, TNNT2, PAX7, TGF-beta, and IGF-1 1 month after transplant. Our data support the paracrine hypothesis whereby myoblast-secreted factors may contribute to the beneficial effects of myogenic cell transplantation in infarcted myocardium."	"Cloning of a newly identified heart-specific troponin I isoform, which lacks the troponin T binding portion, using the yeast hybrid system. To elucidate the molecular pathogenesis behind increased levels of laminin in cardiac muscle cells in cardiomyopathy by using a yeast hybrid screen. The present study reports the cloning of a newly identified heart-specific troponin I isoform, which is putatively linked to laminin. Future studies will explore the functional significance of this connection. Yeast two-hybrid screen analysis was performed using MLF1-interacting protein (amino acids 1 to 318) as bait. The human heart complementary DNA library was screened by using the yeast-mating method for overnight culture. Two final positive clones from the heart library were isolated. These two clones encoded the same protein, a short isoform of human cardiac troponin I (TnI) that lacked TnI exons 5 and 6. The TnI isoform has a heart-specific expression pattern and it shares several sequence features with human cardiac TnI; however, it lacks the troponin T binding portion. The heart-specific segment of the human cardiac TnI isoform shares several sequence features with human cardiac TnI, but it lacks the troponin T binding portion. These results suggest that the heart-specific TnI isoform may be involved in cardiac development and disease."	"Familial and sporadic hypertrophic myopathy: differences and similarities in a genotyped population. A long follow-up study. Hypertrophic cardiomyopathy (HCM) is a genetic disease associated with mutations in genes encoding cardiac sarcomere proteins. A mutation is identified in two-thirds of cases, and more frequently in familial forms. Doubts remain concerning the true identity of the sporadic form. To compare, in a genotyped population, the phenotypic expression of the disease over time in patients with familial and sporadic HCM. 79 patients with HCM, aged 39 +/- 17.8 years at diagnosis, were followed for 12 +/- 9.5 (1-30) years and divided into two groups: G1 (familial)--68 patients (24 unrelated index patients, 44 relatives), follow-up time (FUP) 12 +/- 9.8 (1-30) years; G2 (sporadic)1 index patients (no phenotypic disease in first-degree relatives), FUP 10.8 +/- 8 (2-24) years. Fabry disease was excluded in G2. The two groups were compared regarding clinical, ECG and echocardiographic (echo) features at diagnosis and after FUP. Five sarcomere genes (MYH7, MYBPC3, TNNT2, MYL2 and TNNI3) were screened for mutations by direct sequencing, after PCR amplification with intronic sets of oligonucleotide primers designed according to the published genomic sequence of the genes. A) Thirteen different mutations (in 3 genes) were identified in 14 index patients in G1; only in one patient in G2 was a mutation found. B) The two groups differed clinically in age at diagnosis (G1: 37.18 (4-79) years; G2: 51 +/- 14 (19-67) years; p = 0.02), and family history of sudden cardiac death (G1: 12/24 families; G2: 1/11 families; p = 0.04). Age, gender, FUP, symptoms, need for medical treatment, cardiovascular (CV) hospitalization and mortality (CV or any cause) were similar. C) ECG patterns did not differ, although significant (but similar) changes occurred in 45% (G1) and 36% (G2) of patients (p = 0.75). These changes were in the same direction, with a trend in both groups toward the development of atrial fibrillation and/or advanced conduction disease. D) Echo features (only considered in adults) were similar despite significant changes during FUP (in 68% of G1, and 82% of G2; p = 0.48). These changes also followed the same tendency: progression to a more diffuse pattern of ventricular hypertrophy (G1: 52%; G2: 73%; p = 0.33) and development of left atrial dilatation (G1: 37%; G2: 45%; p = 0.52). The similar phenotypic expression and behavior over time in familial and sporadic forms of HCM strongly indicate that the disease is one and the same. Differences in genetic findings, age at diagnosis and family history of sudden death suggest that sporadic forms may be caused by low penetrance de novo mutations in sarcomeric genes other than those associated with familial disease."	"Idiopathic restrictive cardiomyopathy in children is caused by mutations in cardiac sarcomere protein genes. Restrictive cardiomyopathy (RCM) is rare in childhood, but has a grave prognosis. The cause of disease in most cases is unknown. To determine the prevalence of sarcomere protein gene mutations in children with idiopathic RCM. Twelve patients (9 female, mean age 5.1 years) with idiopathic RCM referred between 1991 and August 2006 underwent detailed clinical and genetic evaluation. Nine had received cardiac transplants at the time of the study. The entire coding sequences of the genes encoding eight cardiac sarcomere proteins and desmin were screened for mutations. Familial evaluation was performed on first-degree relatives. Four patients (33%) had a family history of cardiomyopathy: RCM (n = 2); dilated cardiomyopathy (n = 1) and left ventricular non-compaction (n = 1). Sarcomere protein gene mutations were identified in four patients (33%): 2 in the cardiac troponin I gene (TNNI3) and 1 each in the troponin T (TNNT2) and alpha-cardiac actin (ACTC) genes. Two were de novo mutations and 3 were new mutations. All mutations occurred in functionally important and conserved regions of the genes. Sarcomere protein gene mutations are an important cause of idiopathic RCM in childhood. We describe the first mutation in ACTC in familial RCM. The identification of RCM in a child should prompt consideration of sarcomere protein disease as a possible cause and warrants clinical evaluation of the family."	"A DNA resequencing array for pathogenic mutation detection in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a heterogeneous autosomal dominant cardiac disorder with a prevalence of 1 in 500. Over 450 different pathogenic mutations in at least 16 genes have been identified so far. The large allelic and genetic heterogeneity of HCM requires high-throughput, rapid, and affordable mutation detection technologies to efficiently integrate molecular screening into clinical practice. We developed a custom DNA resequencing array that contains both strands of all coding exons (160), splice-site junctions, and 5'UTR regions of 12 genes that have been clearly implicated in HCM (MYH7, MYBPC3, TNNT2, TPM1, TNNI3, MYL3, MYL2, CSRP3, PLN, ACTC, TNNC1, and PRKAG2). We analyzed a first series of 38 unrelated patients with HCM (17 familial, 21 sporadic). A total of 953,306 bp across the 38 patients were sequenced with a mean nucleotide call rate of 96.92% (range: 93-99.9%). Pathogenic mutations (single nucleotide substitutions) in MYH7, MYBPC3, TNNI3, and MYL3 (six known and six novel) were identified in 60% (10/17) of familial HCM and 10% of sporadic cases (2/21). The high-throughput HCM resequencing array is the most rapid and cost-effective tool for molecular testing of HCM to date; it thus has considerable potential in diagnostic and predictive testing, and prognostic stratification."	"Shared genetic causes of cardiac hypertrophy in children and adults. The childhood onset of idiopathic cardiac hypertrophy that occurs without a family history of cardiomyopathy can portend a poor prognosis. Despite morphologic similarities to genetic cardiomyopathies of adulthood, the contribution of genetics to childhood-onset hypertrophy is unknown. We assessed the family and medical histories of 84 children (63 boys and 21 girls) with idiopathic cardiac hypertrophy diagnosed before 15 years of age (mean [+/-SD] age, 6.99+/-6.12 years). We sequenced eight genes: MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3, MYL2, and ACTC. These genes encode sarcomere proteins that, when mutated, cause adult-onset cardiomyopathies. We also sequenced PRKAG2 and LAMP2, which encode metabolic proteins; mutations in these genes can cause early-onset ventricular hypertrophy. We identified mutations in 25 of 51 affected children without family histories of cardiomyopathy and in 21 of 33 affected children with familial cardiomyopathy. Among 11 of the 25 children with presumed sporadic disease, 4 carried new mutations and 7 inherited the mutations. Mutations occurred predominantly (in &gt;75% of the children) in MYH7 and MYBPC3; significantly more MYBPC3 missense mutations were detected than occur in adult-onset cardiomyopathy (P&lt;0.005). Neither hypertrophic severity nor contractile function correlated with familial or genetic status. Cardiac transplantation and sudden death were more prevalent among mutation-positive than among mutation-negative children; implantable cardioverter-defibrillators were more frequent (P=0.007) in children with family histories that were positive for the mutation. Genetic causes account for about half of presumed sporadic cases and nearly two thirds of familial cases of childhood-onset hypertrophy. Childhood-onset hypertrophy should prompt genetic analyses and family evaluations."	"Familial hypertrophic cardiomyopathy associated with cardiac beta-myosin heavy chain and troponin I mutations. We report an African American family with hypertrophic cardiomyopathy in which an individual with severe disease has alterations in two sarcomeric protein genes, cardiac beta-myosin heavy chain (MYH7) and troponin I (TNNI3). Each of her children has only one of these mutations. Although novel, the MYH7 mutation disrupts a conserved amino acid, and other missense substitutions at this position are known to cause disease. The TNNI3 alteration, replacing proline with serine (Pro82Ser), has been previously implicated in elderly-onset hypertrophic cardiomyopathy, although its pathogenicity is not clear. Proline in this position is conserved in all species, and its alteration to a serine is likely to result in a dramatic change in protein structure. We analyzed DNA from a panel of 100 healthy African Americans and found 3% carry the heterozygous TNNI3 missense allele that was identified in this family. Based on these findings, we propose that the TNNI3 Pro82Ser alteration is likely a disease-modifying mutation in a severely affected individual, and, furthermore, carriers of this alteration (3% of African Americans) might be at increased risk of late-onset cardiac hypertrophy."	"A lentiviral vector with a short troponin-I promoter for tracking cardiomyocyte differentiation of human embryonic stem cells. Human embryonic stem cells (hESCs) may become important for cardiac repair due to their potentially unlimited ability to generate cardiomyocytes (CMCs). Moreover, genetic manipulation of hESC-derived CMCs would be a very promising technique for curing myocardial disorders. At the present time, however, inducing the differentiation of hESCs into CMCs is extremely difficult and, therefore, an easy and standardizable technique is needed to evaluate differentiation strategies. Vectors driving cardiac-specific expression may represent an important tool not only for monitoring new cardiac-differentiation strategies, but also for the manipulation of cardiac differentiation of ESCs. To this aim, we generated cardiac-specific lentiviral vectors (LVVs) in which expression is driven by a short fragment of the cardiac troponin-I proximal promoter (TNNI3) with a human cardiac alpha-actin enhancer, and tested its suitability in inducing tissue-specific gene expression and ability to track the CMC lineage during differentiation of ESCs. We determined that (1) TNNI3-LVVs efficiently drive cardiac-specific gene expression and mark the cardiomyogenic lineage in human and mouse ESC differentiation systems (2) the cardiac alpha-actin enhancer confers a further increase in gene-expression specificity of TNNI3-LVVs in hESCs. Although this technique may not be useful in tracking small numbers of cells, data suggested that TNNI3-based LVVs are a powerful tool for manipulating human ESCs and modifying hESC-derived CMCs."	"Identification and analysis of human RCAN3 (DSCR1L2) mRNA and protein isoforms. Human RCAN3 (Regulator of calcineurin 3; previously known as DSCR1L2, Down syndrome critical region gene 1-like 2) is a five-exon gene mapped on chromosome 1 and belongs to the human RCAN gene family which also includes RCAN1 and RCAN2. The novel denomination RCAN for genes and proteins, instead of DSCR1L (Down syndrome critical region gene 1-like) has recently been widely discussed. The aim of the present work was to perform a multiple approach analysis of five RCAN3 mRNA and encoded protein isoforms, two of which have been identified for the first time in this research. The two new RCAN3 mRNA isoforms, RCAN3-2,4,5, which lacks exon 3, and RCAN3-2,3,5, which lacks exon 4, were identified during RCAN3 RT-PCR (reverse transcription-polymerase chain reaction) cloning, the product of which unexpectedly revealed the presence of five isoforms as opposed to the three previously known. In order to analyze the expression pattern of the five RCAN3 mRNA isoforms in seven different human tissues, a quantitative relative RT-PCR was performed: interestingly, all isoforms are present in all tissues investigated, with a statistically significant constant prevalence of RCAN3 isoform (the most complete, &quot;reference&quot; isoform). The RCAN3 locus expression level was comparable in all seven tissues analyzed, considering all isoforms, which indicates a ubiquitous expression of this human RCAN family member. To date two possible interactors have been described for this protein: human cardiac troponin I (TNNI3) and calcineurin. Here we report the interaction between the new RCAN3 variants and TNNI3, demonstrated by both yeast cotransformation and by the GST (glutathione-sepharose transferase) fusion protein assay, as was to be expected from the presence of exon 2 whose product has been seen to be sufficient for binding to TNNI3."	"Deletion in TNNI3 gene is associated with restrictive cardiomyopathy. In dilated and hypertrophic cardiomyopathies, over ten disease-causing genes have been identified in each entity. In contrast, mutations in only desmin and cardiac troponin T and I (TNNI3) have been shown to cause restrictive cardiomyopathy (RCM). We applied a candidate gene approach and identified a novel one nucleotide deletion, resulting in frame shift and predicted formation of a premature stop codon, deletion of part of exon 7 and all exon 8, and truncation of significant C-terminal portion of TNNI3. Western blot analysis showed approximately 50% reduction of total troponin I content in myocardial tissue. The clinical hallmark was a restrictive type of cardiac hemodynamics, and congestive heart failure, leading to the death of the patient at the age of 28."	"The locus for bovine dilated cardiomyopathy maps to chromosome 18. Bovine dilated cardiomyopathy (BDCMP) is a severe and terminal disease of the heart muscle observed in Holstein-Friesian cattle over the last 30 years. There is strong evidence for an autosomal recessive mode of inheritance for BDCMP. The objective of this study was to genetically map BDCMP, with the ultimate goal of identifying the causative mutation. A whole-genome scan using 199 microsatellite markers and one SNP revealed an assignment of BDCMP to BTA18. Fine-mapping on BTA18 refined the candidate region to the MSBDCMP06-BMS2785 interval. The interval containing the BDCMP locus was confirmed by multipoint linkage analysis using the software loki. The interval is about 6.7 Mb on the bovine genome sequence (Btau 3.1). The corresponding region of HSA19 is very gene-rich and contains roughly 200 genes. Although telomeric of the marker interval, TNNI3 is a possible positional and a functional candidate for BDCMP given its involvement in a human form of dilated cardiomyopathy. Sequence analysis of TNNI3 in cattle revealed no mutation in the coding sequence, but there was a G-to-A transition in intron 6 (AJ842179:c.378+315G&gt;A). The analysis of this SNP using the study's BDCMP pedigree did not conclusively exclude TNNI3 as a candidate gene for BDCMP. Considering the high density of genes on the homologous region of HSA19, further refinement of the interval on BTA18 containing the BDCMP locus is needed."	"Prevalence and spectrum of mutations in the sarcomeric troponin T and I genes in a cohort of Spanish cardiac hypertrophy patients. We sequenced the coding exons of the cardiac troponins T (TNNT2) and I (TNNI3) genes in 115 Spanish HCM-patients (32% with a family history of the disease). Only two (2%) had mutations in the TNNT2 (Arg278&gt;Cys and Arg92&gt;Lys). These mutations were associated with variable clinical outcomes. No patient had TNNI3-mutation. We also genotyped these patients and 320 healthy controls for a 5 bp insertion/deletion (I/D) polymorphism in intron 3 of TNNT2. DD-homozygotes for the 5 bp I/D polymorphism were significantly more frequent among the patients (OR=1.83, 95% CI=2.10-5.16)."	"Single-gene mutations and increased left ventricular wall thickness in the community: the Framingham Heart Study. Mutations in sarcomere protein, PRKAG2, LAMP2, alpha-galactosidase A (GLA), and several mitochondrial genes can cause rare familial cardiomyopathies, but their contribution to increased left ventricular wall thickness (LVWT) in the community is unknown. We studied 1862 unrelated participants (52% women; age, 59+/-9 years) from the community-based Framingham Heart Study who had echocardiograms and provided DNA samples but did not have severe hypertension, aortic prosthesis, or significant aortic stenosis. Eight sarcomere protein genes, 3 storage cardiomyopathy-causing genes, and 27 mitochondrial genes were sequenced in unrelated individuals with increased LVWT (maximum LVWT &gt;13 mm). Fifty eligible participants (9 women) had unexplained increased LVWT. We detected 8 mutations in 9 individuals (2 women); 7 mutations in 5 sarcomere protein genes (MYH7, MYBPC3, TNNT2, TNNI3, MYL3), and 1 GLA mutation. In individuals with increased LVWT, participants with sarcomere protein and storage mutations were clinically indistinguishable from those without mutations. In a community-based cohort, about 3% of eligible participants had increased LVWT, of whom 18% had sarcomere protein or lipid storage gene mutations. Increased LVWT in the community is a very heterogeneous condition, which sometimes may arise from single-gene variants in one of a number of genes."	"Proteins encoded by human Down syndrome critical region gene 1-like 2 (DSCR1L2) mRNA and by a novel DSCR1L2 mRNA isoform interact with cardiac troponin I (TNNI3). Down syndrome critical region gene 1-like 2 (DSCR1L2) belongs to the human DSCR1-like gene family, which also includes DSCR1 and DSCR1L1. Both DSCR1 and DSCR1L1 proteins interact with calcineurin, a calcium/calmodulin-dependent phosphatase. To date, no interactor has been described for DSCR1L2. The aim of this work was to perform a first functional study of DSCR1L2 using yeast two-hybrid analysis conducted on a human heart cDNA library. Here, we report the interaction between DSCR1L2 and the human cardiac troponin I (TNNI3), the heart-specific inhibitory subunit of the troponin complex, a central component of the contractile apparatus. This interaction was confirmed by both yeast cotransformation and GST (glutathione-sepharose transferase) fusion protein assay. Moreover, a new DSCR1L2 mRNA isoform, generated by alternative splicing, was identified and cloned in different tissues: it lacks two central exons, encoding the most conserved domains among the DSCR1-like protein family. A quantitative relative reverse transcription-polymerase chain reaction (RT-PCR) assay showed that in heart tissue the normalized expression level ratio for DSCR1L2 and DSCR1L2-E2E5 mRNA isoforms is 3.5:1, respectively. The yeast cotransformation and GST fusion protein assay demonstrated the interaction between this new DSCR1L2 variant and the human cardiac troponin I and the prominent role of DSCR1L2 exon 2 in determining binding between both DSCR1L2 isoforms and TNNI3. These data indicate an entirely new role for a DSCR1-like family gene, suggesting a possible involvement of DSCR1L2 in cardiac contraction."	"Malignant mutations in hypertrophic cardiomyopathy: fact or fancy? Hypertrophic cardiomyopathy (HCM) is a relatively common genetic disease, generally with a benign prognosis. However sudden cardiac death may occur, sometimes as the first manifestation of the disease. More than two hundred different mutations have been described in HCM, in 12 different genes encoding sarcomere proteins. This genetic diversity is accompanied by considerable clinical variability and it is likely that phenotype is partially determined by genotype. In recent years it has been suggested that genetic defects could be the major markers of prognosis. Thus, some mutations would carry a good prognosis whereas others, so-called 'malignant' mutations, would be associated with premature sudden death. In a Portuguese population of 35 index patients with HCM the authors found considerable genetic heterogeneity: seven of the 12 mutations identified were de novo, each family having its own 'private' mutation. Moreover, in two unrelated families with the same mutation (I263T--exon 9, missense) in the beta-myosin heavy chain gene (MYH7), penetrance, clinical expression and prognosis were quite different, particularly regarding the occurrence of sudden cardiac death. In two other also unrelated families, in each index patient a different mutation was identified in the troponin I gene (TNNI3): A157V (missense), exon 7 and S199N (missense), exon 8. Phenotypic expression was different but both patients suffered sudden cardiac death (one survived). This suggests that mutations in this gene carry an adverse prognosis. In conclusion, the considerable genetic and clinical variability found in HCM hinders the interpretation of genotype-phenotype correlations, particularly since all the published data is based on small numbers of families."	"Myocardial late gadolinium enhancement cardiovascular magnetic resonance in hypertrophic cardiomyopathy caused by mutations in troponin I. To examine the influence of genotype on late gadolinium enhancement (LGE) and the potential of cardiovascular magnetic resonance (CMR) to detect preclinical hypertrophic cardiomyopathy. Prospective, blinded cohort study of myocardial LGE in a genetically homogeneous population. 30 patients with disease causing mutations in the recognised hypertrophic cardiomyopathy gene for cardiac troponin I (TNNI3): 15 with echocardiographically determined left ventricular hypertrophy (LVH+) and 15 without (LVH-). CMR measures of regional left ventricular function, wall thickness, and mass, and the extent and distribution of LGE. LGE was found in 12 (80%) LVH+ patients but with variable extent (mean 15%, range 3-48%). LGE was also found in two (13%) LVH- patients but the extent was limited (3.6%) and both patients were found to have an abnormal ECG and regional hypertrophy by cine CMR. The extent of LGE was positively associated with clinical markers of sudden death risk (21% with &gt; or = 2 risk factors v 7% with &lt; or = 1 risk factor, p = 0.02) and left ventricular mass (r = 0.56, p &lt; 0.001) and was inversely associated with ejection fraction (r = -0.58, p &lt; 0.001). Segmental analysis showed that as regional wall thickness increased, LGE was more prevalent (p &lt; 0.0001) and more extensive (r = 0.98, p = 0.001). In patients with disease causing mutations in TNNI3, focal fibrosis was not detected by LGE CMR before LVH and ECG abnormalities were present. Once LVH is present, LGE is common and the extent correlates with adverse clinical parameters. This suggests that focal fibrosis is closely linked to disease development."	"Frequency and clinical expression of cardiac troponin I mutations in 748 consecutive families with hypertrophic cardiomyopathy. The aim of this study was to evaluate the potential utility of genetic diagnosis in clinical management of families with hypertrophic cardiomyopathy (HCM) caused by mutations in the gene for cardiac troponin I (TNNI3). Knowledge about the clinical disease expression of sarcomeric gene mutations in HCM has predominantly been obtained by investigations of single individuals (probands) or selected families. To establish the role of genetic diagnosis in HCM families, systematic investigations of probands and their relatives are needed. Cardiac troponin I was investigated by direct sequencing and fluorescent (F)-SSCP analysis in 748 consecutive HCM families. Relatives of HCM probands with TNNI3 mutations were invited for cardiovascular and genetic assessment. The prevalence of TNNI3 mutations was 3.1%. Mutations appeared to cluster in exons 7 and 8. A total of 100 mutation carriers were identified in 23 families with 13 different mutations (6 novel). Disease penetrance was 48%. Patients were diagnosed from the second to eighth decade of life. The morphologic spectrum observed represented a wide range of HCM. Two offspring of clinically unaffected mutation carriers were resuscitated from cardiac arrest, and an additional four individuals died suddenly as their initial presentation. Six individuals experienced other disease-related deaths. The clinical expression of TNNI3 mutations was very heterogeneous and varied both within and between families with no apparent mutation- or gene-specific disease pattern. The data suggest that disease development may be monitored by regular assessment of cardiac symptoms and electrocardiographic abnormalities. Genetic diagnosis of TNNI3 is valuable in identifying clinically unaffected mutation carriers at risk of disease development and facilitates accurate management and counseling."	"Novel mutation in cardiac troponin I in recessive idiopathic dilated cardiomyopathy. Idiopathic dilated cardiomyopathy is a common cause of heart failure. Half of cases are believed to be hereditary, and mutations in cardiac sarcomeric contractile protein genes have been reported with autosomal dominant inheritance. We used mutation analysis suitable for identification of both dominant and recessive mutations to investigate the sarcomeric gene for cardiac troponin I (TNNI3) in 235 patients with dilated cardiomyopathy. We identified a novel TNNI3 mutation in a family with recessive disease. Functional studies showed impairment of troponin interactions that could lead to diminished myocardial contractility. TNNI3 is the first recessive gene identified for this condition, and we suggest that other such genes could be pinpointed by mutation analyses designed to identify homozygous mutations."	"[Familial hypertrophic cardiomyopathy: genes, mutations and animal models. A review]. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disease, which may afflict as many as 1 in 500 subjects (0.2%), being probably the most common hereditary cardiovascular disease and the most common cause of sudden cardiac death (SCD). Hypertrophic cardiomyopathy is characterized by the presence of unexplained left ventricular hypertrophy (in absence of hypertension, valvular disease, etc), which is usually asymmetric and involves the ventricular septum. Molecular genetic studies have identified eleven genes that code proteins of the sarcomere that are associated with the HCM; the beta-myosin heavy chain gene (MYH7), alpha-myosin heavy chain (MYH6), cardiac troponin T (TNNT2); cardiac troponin C (TNNC1), alpha-tropomyosin (TPM1), myosin binding protein-C (MYBPC3), cardiac troponin (TNNI3), essential and regulatory light chain genes (MYL3 and MYL2, respectively), cardiac alpha-actin gene (ACTC) and titin (TTN). The objective of this paper is the revision of the current state of the knowledge on (1) the organization and mutations of the HCM causing genes and their proteins and (2) the animal models developed for the study of the genes, mutations and proteins in the hypertrophic cardiomyopathy."	"Mutation spectrum in a large cohort of unrelated consecutive patients with hypertrophic cardiomyopathy. Defects in nine sarcomeric protein genes are known to cause hypertrophic cardiomyopathy (HCM). Mutation types and frequencies in large cohorts of consecutive and unrelated patients have not yet been determined. We, therefore, screened HCM patients for mutations in six sarcomeric genes: myosin-binding protein C3 (MYBPC3), MYH7, cardiac troponin T (TNNT2), alpha-tropomyosin (TPM1), cardiac troponin I (TNNI3), and cardiac troponin C (TNNC1). HCM was diagnosed in 108 consecutive patients by echocardiography (septum &gt;15 mm, septal/posterior wall &gt;1.3 mm), angiography, or based on a state after myectomy. Single-strand conformation polymorphism analysis was used for mutation screening, followed by DNA-sequencing. A total of 34 different mutations were identified in 108 patients: 18 mutations in MYBPC3 in 20 patients [intervening sequence (intron) 7 + 1G &gt; A and Q1233X were found twice], 13 missense mutations in MYH7 in 14 patients (R807H was found twice), and one amino acid change in TPM1, TNNT2, and TNNI3, respectively. No disease-causing mutation was found in TNNC1. Cosegregation with the HCM phenotype could be demonstrated for 13 mutations (eight mutations in MYBPC3 and five mutations in MYH7). Twenty-eight of the 37 mutation carriers (76%) reported a positive family history with at least one affected first-grade relative; only eight mutations occurred sporadically (22%). MYBPC3 was the gene that most frequently caused HCM in our population. Systematic mutation screening in large samples of HCM patients leads to a genetic diagnosis in about 30% of unrelated index patients and in about 57% of patients with a positive family history."	"Hearts of this ILK rely on TNNI3K, a MAPKKK that regulated TNNI3. NA"	"Hypertrophic cardiomyopathy: distribution of disease genes, spectrum of mutations, and implications for a molecular diagnosis strategy. Hypertrophic cardiomyopathy is an autosomal-dominant disorder in which 10 genes and numerous mutations have been reported. The aim of the present study was to perform a systematic screening of these genes in a large population, to evaluate the distribution of the disease genes, and to determine the best molecular strategy in clinical practice. The entire coding sequences of 9 genes (MYH7, MYBPC3, TNNI3, TNNT2, MYL2, MYL3, TPM1, ACTC, andTNNC1) were analyzed in 197 unrelated index cases with familial or sporadic hypertrophic cardiomyopathy. Disease-causing mutations were identified in 124 index patients ( approximately 63%), and 97 different mutations, including 60 novel ones, were identified. The cardiac myosin-binding protein C (MYBPC3) and beta-myosin heavy chain (MYH7) genes accounted for 82% of families with identified mutations (42% and 40%, respectively). Distribution of the genes varied according to the prognosis (P=0.036). Moreover, a mutation was found in 15 of 25 index cases with &quot;sporadic&quot; hypertrophic cardiomyopathy (60%). Finally, 6 families had patients with more than one mutation, and phenotype analyses suggested a gene dose effect in these compound-heterozygous, double-heterozygous, or homozygous patients. These results might have implications for genetic diagnosis strategy and, subsequently, for genetic counseling. First, on the basis of this experience, the screening of already known mutations is not helpful. The analysis should start by testing MYBPC3 and MYH7 and then focus on TNNI3, TNNT2, and MYL2. Second, in particularly severe phenotypes, several mutations should be searched. Finally, sporadic cases can be successfully screened."	"High-throughput single strand conformation polymorphism mutation detection by automated capillary array electrophoresis: validation of the method. Capillary array electrophoresis (CAE) is a novel technique, which allows for high throughput analysis of DNA fragments. When screening for mutations in whole populations or large patient groups it is necessary to have robust and well-characterized setups for high throughput analysis. For large-scale mutation screening, we have developed procedures for single strand conformation polymorphism (SSCP) assays using CAE (CAE-SSCP) whereby we may increase both the sensitivity and the throughput compared to conventional SSCP analysis. In this study we have validated CAE-SSCP by 1) comparing detection by slab-gel based SSCP with CAE-SSCP of mutations in the MYH7, MYL2, and MYL3 genes encoding sarcomere proteins from patients suffering from hypertrophic cardiomyopathy; and 2) by constructing a series of 185 mutants having substitution mutations, as well as insertion/deletion mutations, or some combinations of these, in different sequence contexts in four exons and different positions relative to the end of the amplicon (three from the KCNQ1 gene, encoding a cardiac potassium channel, and one from the TNNI3 gene encoding cardiac troponin I). The method identified 181 out of 185 mutations (98%), and the data suggest that the position of mutation in the fragment had no effect on the sensitivity. Analysis of the specificity of the method showed that only very few mutants could not be distinguished from each other and there were no false positives."	"Idiopathic restrictive cardiomyopathy is part of the clinical expression of cardiac troponin I mutations. Restrictive cardiomyopathy (RCM) is an uncommon heart muscle disorder characterized by impaired filling of the ventricles with reduced volume in the presence of normal or near normal wall thickness and systolic function. The disease may be associated with systemic disease but is most often idiopathic. We recognized a large family in which individuals were affected by either idiopathic RCM or hypertrophic cardiomyopathy (HCM). Linkage analysis to selected sarcomeric contractile protein genes identified cardiac troponin I (TNNI3) as the likely disease gene. Subsequent mutation analysis revealed a novel missense mutation, which cosegregated with the disease in the family (lod score: 4.8). To determine if idiopathic RCM is part of the clinical expression of TNNI3 mutations, genetic investigations of the gene were performed in an additional nine unrelated RCM patients with restrictive filling patterns, bi-atrial dilatation, normal systolic function, and normal wall thickness. TNNI3 mutations were identified in six of these nine RCM patients. Two of the mutations identified in young individuals were de novo mutations. All mutations appeared in conserved and functionally important domains of the gene. This article was published online in advance of the print edition. The date of publication is available from the JCI website, http://www.jci.org."	"Cardiac troponin T is essential in sarcomere assembly and cardiac contractility. Mutations of the gene (TNNT2) encoding the thin-filament contractile protein cardiac troponin T are responsible for 15% of all cases of familial hypertrophic cardiomyopathy, the leading cause of sudden death in young athletes. Mutant proteins are thought to act through a dominant-negative mode that impairs function of heart muscle. TNNT2 mutations can also lead to dilated cardiomyopathy, a leading cause of heart failure. Despite the importance of cardiac troponin T in human disease, its loss-of-function phenotype has not been described. We show that the zebrafish silent heart (sih) mutation affects the gene tnnt2. We characterize two mutated alleles of sih that severely reduce tnnt2 expression: one affects mRNA splicing, and the other affects gene transcription. Tnnt2, together with alpha-tropomyosin (Tpma) and cardiac troponins C and I (Tnni3), forms a calcium-sensitive regulatory complex within sarcomeres. Unexpectedly, in addition to loss of Tnnt2 expression in sih mutant hearts, we observed a significant reduction in Tpma and Tnni3, and consequently, severe sarcomere defects. This interdependence of thin-filament protein expression led us to postulate that some mutations in tnnt2 may trigger misregulation of thin-filament protein expression, resulting in sarcomere loss and myocyte disarray, the life-threatening hallmarks of TNNT2 mutations in mice and humans."	"[Mutations in genes for sarcomeric proteins]. Idiopathic cardiomyopathy(ICM) is by definition of unknown etiology. There are four clinical types of ICM; hypertrophic cardiomyopathy(HCM) characterized by ventricular hypertrophy associated with reduced compliance of the heart and accompanied by myofibrillar disarray, dilated cardiomyopathy(DCM) characterized by dilated ventricles associated with systolic dysfunction, restricted cardiomyopathy (RCM) and arrhythmogenic right ventricular cardiomyopathy(ARVC). Recent molecular genetic analyses have now revealed disease-associated mutations in ICM, especially in familial HCM and familial DCM. Mutations in 9 different disease genes (MYH7, TNNT2, TPM1, MYBPC3, MYL3, MYL2, TNNI3, CACT and TTN) cause HCM, while mutations in 3 different genes(CACT, DES and DMD) cause DCM in adults. In this review, I will summarize our current data on sarcomere mutations found in Japanese ICM, especially in HCM and DCM."	"Altered regulatory properties of human cardiac troponin I mutants that cause hypertrophic cardiomyopathy. Cardiac troponin I (cTnI) is the inhibitory component of the troponin complex and is involved in the calcium control of heart muscle contraction. Recently, specific missense mutations of the cTnI gene (TNNI3) have been shown to cause familial hypertrophic cardiomyopathy (HCM). We have analyzed the functional effects of two HCM mutations (R145G and R162W) using purified recombinant cTnI. Both mutations gave reduced inhibition of actin-tropomyosin-activated myosin ATPase, both in experiments using cTnI alone and in those using reconstituted human cardiac troponin under relaxing conditions. Both mutant troponin complexes also conferred increased calcium sensitivity of ATPase regulation. Studies on wild type/R145G mutant mixtures showed that the wild type phenotype was dominant in that the inhibition and the calcium sensitivity conferred by a 50:50 mixture was more similar to wild type than expected. Surface plasmon resonance-based assays showed that R162W mutant had an increased affinity for troponin C in the presence of calcium. This observation may contribute to the increased calcium sensitivity found with this mutant and also corroborates recent structural data. The observed decreased inhibition and increased calcium sensitivity suggest that these mutations may cause HCM via impaired relaxation rather than the impaired contraction seen with some other classes of HCM mutants."	"Structural characterization of the human fast skeletal muscle troponin I gene (TNNI2). Three troponin I genes have been identified in vertebrates that encode the isoforms expressed in adult cardiac muscle (TNNI3), slow skeletal muscle (TNNI1) and fast skeletal muscle (TNNI2), respectively. While the organization and regulation of human cardiac and slow skeletal muscle genes have been investigated in detail, the fast skeletal troponin I gene has to date only been examined in birds. Here, we describe the structure and complete sequence of the human fast skeletal muscle troponin I gene (TNNI2) and identify putative regulatory elements within both the 5' flanking region and the first intron. In particular, a region containing MEF-2, E-box, CCAC and CAGG elements was identified in intron 1 that closely resembles the fast internal regulatory element (FIRE) of the quail intronic enhancer. We have previously shown that the fast skeletal muscle troponin I gene is located at 11p15.5 and noted potential close linkage with the fast skeletal muscle troponin T gene (TNNT3). Here, we have isolated two independent human PAC genomic clones that contain either TNNI2 or TNNT3 and demonstrate by interphase FISH mapping that they are less than 100 kb apart in the genome. The results demonstrate that the human TNNI2 gene is closely related to its avian counterparts with conserved elements within both the putative promoter and first intron. Our data further confirm close physical linkage of TNNI2 and TNNI3 on 11p15.5."	"Assignment of the human cardiac troponin I gene (TNNI3) to chromosome 19q13.4 by radiation hybrid mapping. NA"	"Isolation and characterization of the human cardiac troponin I gene (TNNI3). Troponin I (TnI) is a constituent protein of the troponin complex located on the thin filament of striated muscle that provides a calcium-sensitive switch for striated muscle contraction. Unlike other contractile proteins, the cardiac isoform of troponin I (TnIc) is expressed only in cardiac muscle and therefore offers a model for cardiac-specific expression. It is also subject to developmental regulation with increased expression occurring at the time of birth. Here we describe the isolation and characterization of the human TnIc gene (HGMW-approved symbol TNNI3) and its promoter. The gene comprises eight exons contained within 6.2 kb of genomic DNA. The proximal promoter and 1.1-kb 5'-flanking region were sequenced, and several putative cis-acting elements that are conserved between the human and the mouse TnIc genes were identified. In addition, multiple copies of a 37-bp chromosome 19-specific mini-satellite sequence were identified within this region. Following transfection, 2300 bp of 5' sequence is active in both cardiac myocytes and skeletal muscle cells but is inactive in fibroblasts, indicating that it can drive expression but is insufficient to confer cardiac specificity."	"Cardiac and skeletal muscle troponin I isoforms are encoded by a dispersed gene family on mouse chromosomes 1 and 7. We mapped the locations of the genes encoding the slow skeletal muscle, fast skeletal muscle, and cardiac isoforms of troponin I (Tnni) in the mouse genome by interspecific hybrid backcross analysis of species-specific (C57BL/6 vs Mus spretus) restriction fragment length polymorphisms (RFLPs). The slow skeletal muscle troponin I locus (Tnni1) mapped to Chromosome (Chr) 1. The fast skeletal muscle troponin I locus (Tnni2), mapped to Chr 7, approximately 70 cM from the centromere. The cardiac troponin I locus (Tnni3) also mapped to Chr 7, approximately 5-10 cM from the centromere and unlinked to the fast skeletal muscle troponin I locus. Thus, the troponin I gene family is dispersed in the mouse genome."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TNNT2"	"hypertrophic cardiomyopathy"	"Penetrance of Hypertrophic Cardiomyopathy in Sarcomere Protein Mutation Carriers. Predictive genetic screening of relatives of patients with hypertrophic cardiomyopathy (HCM) caused by sarcomere protein (SP) gene mutations is current standard of care, but there are few data on long-term outcomes in mutation carriers without HCM. The aim of this study was to determine the incidence of new HCM diagnosis in SP mutation carriers. This was a retrospective analysis of adult and pediatric SP mutation carriers identified during family screening who did not fulfill diagnostic criteria for HCM at first evaluation. The authors evaluated 285 individuals from 156 families (median age 14.2 years [interquartile range: 6.8 to 31.6 years], 141 [49.5%] male individuals); 145 (50.9%) underwent cardiac magnetic resonance (CMR). Frequency of causal genes was as follows: MYBPC3 n = 123 (43.2%), MYH7 n = 69 (24.2%), TNNI3 n = 39 (13.7%), TNNT2 n = 34 (11.9%), TPM1 n = 9 (3.2%), MYL2 n = 6 (2.1%), ACTC1 n = 1 (0.4%), multiple mutations n = 4 (1.4%). Median follow-up was 8.0 years (interquartile range: 4.0 to 13.3 years) and 86 (30.2%) patients developed HCM; 16 of 50 (32.0%) fulfilled diagnostic criteria on CMR but not echocardiography. Estimated HCM penetrance at 15 years of follow-up was 46% (95% confidence interval [CI]: 38% to 54%). In a multivariable model adjusted for age and stratified for CMR, independent predictors of HCM development were male sex (hazard ratio [HR]: 2.91; 95% CI: 1.82 to 4.65) and abnormal electrocardiogram (ECG) (HR: 4.02; 95% CI: 2.51 to 6.44); TNNI3 variants had the lowest risk (HR: 0.19; 95% CI: 0.07 to 0.55, compared to MYBPC3). Following a first negative screening, approximately 50% of SP mutation carriers develop HCM over 15 years of follow-up. Male sex and an abnormal ECG are associated with a higher risk of developing HCM. Regular CMR should be considered in long-term screening."	"Overexpression of YKL-40 (CHI3L1 gene) in patient fluids may be a potential predictive marker for early detection of comorbidity in non-communicable disease. Predictive biomarkers which can diagnose the onset of non-communicable diseases and the associated comorbid conditions are lacking for clinical utility. Highly sensitive and specific biomarkers for early disease detection and risk stratification may provide timely intervention to patients and prevent secondary complications. However, till the time patients are diagnosed, cellular events and biomolecules get active effecting multiple organs at the same time. This series of events lead to disruption in normal functioning of the organs and their coordinative crosstalk, hence, increase in mortality rate of patients. The primary functional molecules of inflammatory pathways are active in NCDs. YKL-40, an anti-apoptotic molecule in inflammatory pathways, is overexpressed in patient fluids in different organs under diseased conditions. We performed a preliminary network analysis to study YKL-40 co-expression with diagnostic markers: TNNT2/I3 (Cardiac Troponin T/I) for cardiovascular diseases, LCN2 (NGAL) and CKM (Creatinine kinase M-type) in acute kidney injury and HbA1c in type-2-diabetes. It is observed that YKL-40 is actively co-expressed and linked with standard diagnostic markers and may be influencing the pathways active in organ crosstalk. The pathways may be regulating the signaling events in patients with non-communicable diseases leading to comorbidities. We, hence, postulate that if YKL-40 and disease specific pathways influenced are clinically utilized, this will provide the foundation of establishing tailored and specific approach in diagnosis and monitoring non-communicable diseases and predict the onset of comorbid conditions due to phenomenon influencing organ cross talks."	"Disclosure of secondary findings in exome sequencing of 2480 Japanese cancer patients. High-throughput sequencing has greatly contributed to precision medicine. However, challenges remain in reporting secondary findings (SFs) of germline pathogenic variants and managing the affected patients. The aim of this study was to examine the incidence of SFs in Japanese cancer patients using whole exome sequencing (WES) and to understand patient preferences regarding SF disclosure. WES was conducted for 2480 cancer patients. Genomic data were screened and classified for variants of 59 genes listed by the American College of Medical Genetics and Genomics SF v2.0 and for an additional 13 hereditary cancer-related genes. Majority of the participants (68.9%; 1709/2480) opted for disclosure of their SFs. Thirty-two pathogenic or likely pathogenic variants, including BRCA1 (7 patients), BRCA2 (4), CHEK2 (4), PTEN (3), MLH1 (3), SDHB (2), MSH6 (1), NF1 (1), EXT2 (1), NF1 (1), NTRK1 (1), MYH7 (3), MYL2 (1), TNNT2 (1), LDLR (2), FBN1 (1), and KCNH2 (1) were recognized in 36 patients (1.5%). Twenty-eight (77.8%) patients underwent genetic counseling and received their SF results. Eighteen (64.3%) patients underwent clinical management for SFs. Genetic validation tests were administered significantly more frequently to patients with than without a SF-related personal history (P = 0.025). This was a first attempt at a large-scale systematic exome analysis in Japan; nevertheless, many cancer patients opted for disclosure of SFs and accepted or considered clinical management."	"TNNT2 mutations in the tropomyosin binding region of TNT1 disrupt its role in contractile inhibition and stimulate cardiac dysfunction. Muscle contraction is regulated by the movement of end-to-end-linked troponin-tropomyosin complexes over the thin filament surface, which uncovers or blocks myosin binding sites along F-actin. The N-terminal half of troponin T (TnT), TNT1, independently promotes tropomyosin-based, steric inhibition of acto-myosin associations, in vitro. Recent structural models additionally suggest TNT1 may restrain the uniform, regulatory translocation of tropomyosin. Therefore, TnT potentially contributes to striated muscle relaxation; however, the in vivo functional relevance and molecular basis of this noncanonical role remain unclear. Impaired relaxation is a hallmark of hypertrophic and restrictive cardiomyopathies (HCM and RCM). Investigating the effects of cardiomyopathy-causing mutations could help clarify TNT1's enigmatic inhibitory property. We tested the hypothesis that coupling of TNT1 with tropomyosin's end-to-end overlap region helps anchor tropomyosin to an inhibitory position on F-actin, where it deters myosin binding at rest, and that, correspondingly, cross-bridge cycling is defectively suppressed under diastolic/low Ca<sup>2+</sup> conditions in the presence of HCM/RCM lesions. The impact of TNT1 mutations on Drosophila cardiac performance, rat myofibrillar and cardiomyocyte properties, and human TNT1's propensity to inhibit myosin-driven, F-actin-tropomyosin motility were evaluated. Our data collectively demonstrate that removing conserved, charged residues in TNT1's tropomyosin-binding domain impairs TnT's contribution to inhibitory tropomyosin positioning and relaxation. Thus, TNT1 may modulate acto-myosin activity by optimizing F-actin-tropomyosin interfacial contacts and by binding to actin, which restrict tropomyosin's movement to activating configurations. HCM/RCM mutations, therefore, highlight TNT1's essential role in contractile regulation by diminishing its tropomyosin-anchoring effects, potentially serving as the initial trigger of pathology in our animal models and humans."	"Intrinsic activation of cardiosphere-derived cells enhances myocardial repair. Permanent loss of cardiomyocytes after myocardial infarction results in irreversible damage to cardiac function. The present study aims to enhance the cardiomyogenic efficiency of cardiosphere-derived cells (CDCs) to develop into large populations of cardiomyocytes by intrinsic activation of cardio-specific differentiation factors (Gata4, Mef2c, Nkx2-5, Hand2, and Tnnt2) by a CRISPR/dCas9 assisted transcriptional enhancement system. Exhaustive screening was performed to identify the specific sequences in endogenous regulatory regions (enhancers and promoters) responsible for transcriptional activation of the target genes, via a CRISPR/dCas9 system fused with transcriptional activator VP64 (CRISPR-dCas9-VP64). In a rat model of acute myocardial infarction, we compared the regenerative potential and functional benefits of CDCs with or without transcriptional activation. We identified a panel of specific CRISPR RNA targeting the enhancers and promoters, which demonstrated significantly higher expression of differentiation factors of Gata4, Hand2, and Tnnt2. The group of CDCs with transcriptional activator VP64 (CDC with VP64) showed significant improvement in the left ventricular ejection fraction (61.9% vs 52.5% and 44.1% in the CDC without transcriptional activation group and control) and decreased scar area in the heart. We have identified endogenous regulatory regions responsible for an intrinsic activation of cardio-specific differentiation factors assisted via a CRISPR/dCas9 gene transcriptional system. The CRISPR/dCas9 system may provide an efficient and effective means of regulating Tnnt2 gene activation within stem cells. Subsequently, this system can be used to enhance transplanted CDCs differentiation potential within ischemic myocardia to better therapeutic outcomes of patients with ischemic heart disease."	"Sustained Activation of AMPK Enhances Differentiation of Human iPSC-Derived Cardiomyocytes via Sirtuin Activation. Recent studies suggest that metabolic regulation may improve differentiation of cardiomyocytes derived from induced pluripotent stem cells (iPSCs). AMP-activated protein kinase (AMPK) is a master regulator of metabolic activities. We investigated whether AMPK participates in iPSC-derived cardiomyocyte differentiation. We observed that AMPK phosphorylation at Thr172 increased at day 9 but then decreased after day 11 of differentiation to cardiomyocytes. Inhibition of AMPK with compound C significantly reduced mRNA and protein expression of cardiac troponins TNNT2 and TNNI3. Moreover, sustained AMPK activation using AICAR from days 9 to 14 of differentiation increased mRNA and protein expression of both TNNT2 and TNNI3. AICAR decreased acetylation of histone 3 at Lys9 and 56 and histone 4 at Lys16 (known target sites for nuclear-localized sirtuins [SIRT1, SIRT6]), suggesting that AMPK activation enhances sirtuin activity. Sustained AMPK activation during days 9-14 of differentiation induces sirtuin-mediated histone deacetylation and may enhance cardiomyocyte differentiation from iPSCs."	"Generation of transgenic mice that conditionally express microRNA miR-145. MicroRNAs are modulators of cellular phenotypes and their functions contribute to development, homeostasis, and disease. miR-145 is a conserved microRNA that has been implicated in regulating an array of phenotypes. These include supporting smooth muscle differentiation, repression of stem cell pluripotency, and inhibition of tumor growth and metastasis. Previously, our lab demonstrated that miR-145 acts to suppress cardiac fibrosis through inhibition of the TGF-β signaling pathway. The range of effects that miR-145 has on different cell types makes it an attractive microRNA for further study. Here we describe the generation of transgenic mice that conditionally express miR-145 through Cre recombinase-mediated activation. Characterization of individual founder lines indicates that overexpression of miR-145 in the developing cardiovascular system has detrimental effects, with three independent miR-145 transgenic lines exhibiting Cre-dependent lethality. Expression analysis demonstrates that the transgene is robustly expressed and our analysis reveals a novel downstream target of miR-145, Tnnt2. The miR-145 transgenic mice represent a valuable tool to understand the role of miR-145 in diverse cell types and to address its potential as a therapeutic mediator for the treatment of disease."	"Transcriptomic Profile of Primary Culture of Skeletal Muscle Cells Isolated from Semitendinosus Muscle of Beef and Dairy Bulls. The aim of the study was to identify differences in the transcriptomic profiles of primary muscle cell cultures derived from the semitendinosus muscle of bulls of beef breeds (Limousin (LIM) and Hereford (HER)) and a dairy breed (Holstein-Friesian (HF)) (n = 4 for each breed). Finding a common expression pattern for proliferating cells may point to such an early orientation of the cattle beef phenotype at the transcriptome level of unfused myogenic cells. To check this hypothesis, microarray analyses were performed. The analysis revealed 825 upregulated and 1300 downregulated transcripts similar in both beef breeds (LIM and HER) and significantly different when compared with the dairy breed (HF) used as a reference. Ontological analyses showed that the largest group of genes were involved in muscle organ development. Muscle cells of beef breeds showed higher expression of genes involved in myogenesis (including erbb-3, myf5, myog, des, igf-1, tgfb2) and those encoding proteins comprising the contractile apparatus (acta1, actc1, myh3, myh11, myl1, myl2, myl4, tpm1, tnnt2, tnnc1). The obtained results confirmed our hypothesis that the expression profile of several groups of genes is common in beef breeds at the level of proliferating satellite cells but differs from that observed in typical dairy breeds."	"TNNT2 as a potential biomarker for the progression and prognosis of colorectal cancer. Colorectal cancer (CRC) is the third most common cancer worldwide. At present, there are limited effective biomarkers of CRC. The present study aimed to identify potential signatures associated with the tumorigenesis and prognosis of CRC using publicly available databases, and further validate the identified biomarkers in CRC cell lines. Identification of differentially expressed mRNAs between CRC and paracancerous samples was conducted based on data from The Cancer Genome Atlas (TCGA; 471 tumor samples and 41 normal samples). Survival analysis was performed to explore the prognostic value of troponin 2 (TNNT2) in the TCGA training set, which was further validated in an external dataset, GSE17531. Functional enrichment analysis was conducted to determine the possible biological functions using GSEA 3.0. Reverse transcription‑quantitative PCR (RT‑qPCR) and western blotting were utilized to detect the mRNA and protein expression levels of TNNT2 between CRC and normal colorectal cells. Immunohistochemistry was performed to detect the protein expression of TNNT2 in CRC and normal tissues. TNNT2 was significantly upregulated in CRC samples compared with adjacent normal samples in the TCGA dataset. Increased expression of TNNT2 was associated with inferior prognosis in the TCGA training dataset and GSE17531 validation dataset. Functional enrichment analysis revealed that the ErbB signaling pathway and glycerophospholipid metabolism pathway were significantly activated in the TNNT2 high expression group. Overexpression of TNNT2 mRNA and TNNT2 protein in CRC tumor cells was confirmed by RT‑qPCR and western blotting, respectively. Immunohistochemistry indicated increased protein expression levels of TNNT2 in CRC tissues in comparison with normal tissues. TNNT2 was associated with the tumorigenesis and prognosis of CRC, which may be useful for novel biomarker identification and targeted therapeutic strategy development."	"Prevalence of sudden arrhythmic death syndrome-related genetic mutations in an Asian cohort of whole genome sequence. Recently, the spectrum of background mutation in the genes implicated in sudden arrhythmic death syndrome (SADS), has been elucidated in the Caucasian populations. However, this information is largely unknown in the Asian populations. We assessed the background rare variants (minor allele frequency &lt; 0.01) of major SADS genes in whole genome sequence data of 1514 healthy Taiwanese subjects from the Taiwan Biobank. We found up to 45% of healthy subjects have a rare variant in at least one of the major SADS genes. Around 3.44% of healthy subjects had multiple mutations in one or multiple genes. The background mutation rates in long QT syndrome, catecholaminergic polymorphic ventricular tachycardia, and arrhythmogenic right ventricular cardiomyopathy genes were similar, but those in Brugada syndrome (BrS) (SCN5A) and hypertrophic cardiomyopathy (HCM) genes (MYBPC3, MYH7, and TNNT2) were higher, compared to those reported in the Caucasian populations. Furthermore, the rate of incidental pathogenic variant was highest in MYBPC3 gene. Finally, the number of variant was proportional to the exon length of the gene (R2 = 0.486, P = 0.0056) but not related to its functional or evolutionary importance (degree of evolutionary conservation) (R2 = 0.0008, P = 0.9218), suggesting that the mutation was random. The ratio of variant number over exon nucleotide length was highest in MYBPC3, MYH7, and TNNT2 genes. Unique features of background SADS gene mutation in the Asian populations include higher prevalence of incidental variant in HCM, BrS, and long QT 3 (SCN5A) genes. HCM genes have the highest variant number per exon length."	"Troponin T amino acid mutation (ΔK210) knock-in mice as a neonatal dilated cardiomyopathy model. Dilated cardiomyopathy (DCM) in children is often associated with poor morbidity and mortality and exhibits distinct pathological entities from those of adult DCM. Owing to the limited number of patients and the lack of a good animal model, the molecular mechanisms underlying pediatric DCM remain poorly understood. The purpose of this study is to establish an animal model of neonatal DCM and identify early progression factors. Cardiac phenotypes and comprehensive gene expression profiles in homozygous ΔK210 knock-in (TNNT2<sup>ΔK210/ΔK210</sup>) mice were analyzed and compared to TNNT2<sup>+/ΔK210</sup> and wild-type mice at 0 days and 1 week of age. Immediately after birth, the cardiac weight in TNNT2<sup>ΔK210/ΔK210</sup> mice was already increased compared to that in TNNT2<sup>+/ΔK210</sup> and wild-type mice. Echocardiographic examination of 0-day-old and 1-week-old TNNT2<sup>ΔK210/ΔK210</sup> mice revealed similar phenotypes of pediatric DCM. In addition, several genes were significantly upregulated in the ventricular tissues of TNNT2<sup>ΔK210/ΔK210</sup> mice, and the KEGG PATHWAY analysis revealed several important pathways such as cancer and focal adhesion that might be associated with the pathogenesis and development of DCM. TNNT2<sup>ΔK210/ΔK210</sup> mice have already developed DCM at birth, indicating that they should be an excellent animal model to identify early progression factors of DCM. TNNT2<sup>ΔK210/ΔK210</sup> mice are excellent animal model for DCM.TNNT2<sup>ΔK210/ΔK210</sup> mice are excellent animal model to identify early progression factors of DCM.KEGG PATHWAY analysis revealed that several important pathways such as cancer and focal adhesion might be associated with the pathogenesis and development of neonatal DCM."	"Exposure to the AhR agonist cyprodinil impacts the cardiac development and function of zebrafish larvae. Cyprodinil is a broad-spectrum pyrimidine amine fungicide that has been reportedly used worldwide. However, toxicity studies of cyprodinil on aquatic organisms, specifically zebrafish (Danio rerio), are lacking. In our present study, we predicted cyprodinil binding to the aryl hydrocarbon receptor (AhR) by using molecular docking simulation. Then, we used recombinant HepG2 cells and Tg(cyp1a1-12DRE:egfp) transgenic zebrafish to further assess the AhR agonistic activity of cyprodinil. Besides, the significant upregulation of cyp1a1 further verified that statement. Moreover, we found that zebrafish exposure to cyprodinil induced developmental toxicity in the larvae, particularly during cardiac development. The expression levels of cardiac development-related genes, namely tbx5, nkx2.5, gata4, and tnnt2, were markedly altered, which might cause the adverse effects of cyprodinil on cardiac function and development. In summary, we found that cyprodinil, as an AhR agonist, induced development toxicity in zebrafish larvae, especially on cardiac. Data here can assess the potential effects on organisms in the aquatic environment and promote the regulation and safe use of cyprodinil."	"Risk Stratification in Hypertrophic Cardiomyopathy. Insights from Genetic Analysis and Cardiopulmonary Exercise Testing. The role of genetic testing over the clinical and functional variables, including data from the cardiopulmonary exercise test (CPET), in the hypertrophic cardiomyopathy (HCM) risk stratification remains unclear. A retrospective genotype-phenotype correlation was performed to analyze possible differences between patients with and without likely pathogenic/pathogenic (LP/P) variants. A total of 371 HCM patients were screened at least for the main sarcomeric genes MYBPC3 (myosin binding protein C), MYH7 (β-myosin heavy chain), TNNI3 (cardiac troponin I) and TNNT2 (cardiac troponin T): 203 patients had at least an LP/P variant, 23 patients had a unique variant of uncertain significance (VUS) and 145 did not show any LP/P variant or VUS. During a median 5.4 years follow-up, 51 and 14 patients developed heart failure (HF) and sudden cardiac death (SCD) or SCD-equivalents events, respectively. The LP/P variant was associated with a more aggressive HCM phenotype. However, left atrial diameter (LAd), circulatory power (peak oxygen uptake*peak systolic blood pressure, CP%) and ventilatory efficiency (C-index = 0.839) were the only independent predictors of HF whereas only LAd and CP% were predictors of the SCD end-point (C-index = 0.738). The present study reaffirms the pivotal role of the clinical variables and, particularly of those CPET-derived, in the HCM risk stratification."	"Sex-specific cardiac remodeling in early and advanced stages of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most frequent genetic cardiac disease with a prevalence of 1:500 to 1:200. While most patients show obstructive HCM and a relatively stable clinical phenotype (stage II), a small group of patients progresses to end-stage HCM (stage IV) within a relatively brief period. Previous research has shown sex-differences in stage II HCM with more diastolic dysfunction in female than in male patients. Moreover, female patients more often show progression to heart failure. Here we investigated if differences in functional and structural properties of the heart may underlie sex-differences in disease progression from stage II to stage IV HCM. Cardiac tissue from stage II and IV patients was obtained during myectomy (n = 54) and heart transplantation (n = 10), respectively. Isometric force was measured in membrane-permeabilized cardiomyocytes to define active and passive myofilament force development. Titin isoform composition was assessed using gel electrophoresis, and the amount of fibrosis and capillary density were determined with histology. In accordance with disease stage-dependent adverse cardiac remodeling end-stage patients showed a thinner interventricular septal wall and larger left ventricular and atrial diameters compared to stage II patients. Cardiomyocyte contractile properties and fibrosis were comparable between stage II and IV, while capillary density was significantly lower in stage IV compared to stage II. Women showed more adverse cellular remodeling compared to men at stage II, evident from more compliant titin, more fibrosis and lower capillary density. However, the disease stage-dependent reduction in capillary density was largest in men. In conclusion, the more severe cellular remodeling in female compared to male stage II patients suggests a more advanced disease stage at the time of myectomy in women. Changes in cardiomyocyte contractile properties do not explain the progression of stage II to stage IV, while reduced capillary density may underlie disease progression to end-stage heart failure."	"Increased Myocardial Oxygen Consumption Precedes Contractile Dysfunction in Hypertrophic Cardiomyopathy Caused by Pathogenic TNNT2 Gene Variants. Background Hypertrophic cardiomyopathy is caused by pathogenic sarcomere gene variants. Individuals with a thin-filament variant present with milder hypertrophy than carriers of thick-filament variants, although prognosis is poorer. Herein, we defined if decreased energetic status of the heart is an early pathomechanism in TNNT2 (troponin T gene) variant carriers. Methods and Results Fourteen individuals with TNNT2 variants (genotype positive), without left ventricular hypertrophy (G+/LVH-; n=6) and with LVH (G+/LVH+; n=8) and 14 healthy controls were included. All participants underwent cardiac magnetic resonance and [<sup>11</sup>C]-acetate positron emission tomography imaging to assess LV myocardial oxygen consumption, contractile parameters and myocardial external efficiency. Cardiac efficiency was significantly reduced compared with controls in G+/LVH- and G+/LVH+. Lower myocardial external efficiency in G+/LVH- is explained by higher global and regional oxygen consumption compared with controls without changes in contractile parameters. Reduced myocardial external efficiency in G+/LVH+ is explained by the increase in LV mass and higher oxygen consumption. Septal oxygen consumption was significantly lower in G+/LVH+ compared with G+/LVH-. Although LV ejection fraction was higher in G+/LVH+, both systolic and diastolic strain parameters were lower compared with controls, which was most evident in the hypertrophied septal wall. Conclusions Using cardiac magnetic resonance and [<sup>11</sup>C]-acetate positron emission tomography imaging, we show that G+/LVH- have an initial increase in oxygen consumption preceding contractile dysfunction and cardiac hypertrophy, followed by a decline in oxygen consumption in G+/LVH+. This suggests that high oxygen consumption and reduced myocardial external efficiency characterize the early gene variant-mediated disease mechanisms that may be used for early diagnosis and development of preventive treatments."	"Meta-analysis of cardiomyopathy-associated variants in troponin genes identifies loci and intragenic hot spots that are associated with worse clinical outcomes. Troponin (TNN)-encoded cardiac troponins (Tn) are critical for sensing calcium and triggering myofilament contraction. TNN variants are associated with development of cardiomyopathy; however, recent advances in genetic analysis have identified rare population variants. It is unclear how certain variants are associated with disease while others are tolerated. To compare probands with TNNT2, TNNI3, and TNNC1 variants and utilize high-resolution variant comparison mapping of pathologic and rare population variants to identify loci associated with disease pathogenesis. Cardiomyopathy-associated TNN variants were identified in the literature and topology mapping conducted. Clinical features were compiled and compared. Rare population variants were obtained from the gnomAD database. Signal-to-noise (S:N) normalized pathologic variant frequency against population variant frequency. Abstract review of clinical phenotypes was applied to &quot;significant&quot; hot spots. Probands were compiled (N = 70 studies, 224 probands) as were rare variants (N = 125,748 exomes; 15,708 genomes, MAF &lt;0.001). TNNC1-positive probands demonstrated the youngest age of presentation (20.0 years; P = .016 vs TNNT2; P = .004 vs TNNI3) and the highest death, transplant, or ventricular fibrillation events (P = .093 vs TNNT2; P = .024 vs TNNI3; Kaplan Meir: P = .025). S:N analysis yielded hot spots of diagnostic significance within the tropomyosin-binding domains, α-helix 1, and the N-Terminus in TNNT2 with increased sudden cardiac death and ventricular fibrillation (P = .004). The inhibitory region and C-terminal region in TNNI3 exhibited increased restrictive cardiomyopathy (P =.008). HCM and RCM models tended to have increased calcium sensitivity and DCM decreased sensitivity (P &lt; .001). DCM and HCM studies typically showed no differences in Hill coefficient which was decreased in RCM models (P &lt; .001). CM models typically demonstrated no changes to Fmax (P = .239). TNNC1-positive probands had younger ages of diagnosis and poorer clinical outcomes. Mapping of TNN variants identified locations in TNNT2 and TNNI3 associated with heightened pathogenicity, RCM diagnosis, and increased risk of sudden death."	"Fluorescent indicators for continuous and lineage-specific reporting of cell-cycle phases in human pluripotent stem cells. Proper cell-cycle progression is essential for the self-renewal and differentiation of human pluripotent stem cells (hPSCs). The fluorescent ubiquitination-based cell-cycle indicator (FUCCI) has allowed the dual-color visualization of the G1 and S/G2 /M phases in various dynamic models, but its application in hPSCs is not widely reported. In addition, lineage-specific FUCCI reporters have not yet been developed to analyze complex tissue-specific cell-cycle progression during hPSC differentiation. Desiring a robust tool for spatiotemporal reporting of cell-cycle events in hPSCs, we employed the CRISPR/Cas9 genome editing tool and successfully knocked the FUCCI reporter into the AAVS1 safe harbor locus of hPSCs for stable and constitutive FUCCI expression, exhibiting reliable cell-cycle-dependent fluorescence in both hPSCs and their differentiated progeny. We also established a cardiac-specific TNNT2-FUCCI reporter for lineage-specific cell-cycle monitoring of cardiomyocyte differentiation from hPSCs. This powerful and modular FUCCI system should provide numerous opportunities for studying human cell-cycle activity, and enable the identification and investigation of novel regulators for adult tissue regeneration."	"N-terminal Pro B-type Natriuretic Peptide and High-sensitivity Cardiac Troponin as Markers for Heart Failure and Cardiovascular Disease Risks According to Glucose Status (from the Multi-Ethnic Study of Atherosclerosis [MESA]). The role of NT-proBNP and hs-cTnT levels in predicting heart failure (HF) and cardiovascular disease (CVD) events in persons with prediabetes (pre-DM) and diabetes mellitus (DM) is not well-established. We examined the individual and combined relations of N-terminal natriuretic peptide (NT-proBNP) and high-sensitivity cardiac troponin T (hs-cTnT) levels among asymptomatic adults with pre-DM and DM with the development of incident HF and CVD events. 5,584 participants with biomarker measures aged 45 to 84 years were included from the Multi-Ethnic Study of Atherosclerosis, of which 4,090 were normoglycemic, 799 had pre-DM, and 695 had DM at baseline and were followed for 12.4 ± 3.8 years. In those with DM, HF incidence rates per 1,000 person-years ranged from 3.2 to 39.4 across quartiles of NT-proBNP and 0.6 to 18.2 for hs-cTnT, respectively. Corresponding values for CVD incidence per 1,000 person-years ranged from 13.7 to 39.4 for NT-proBNP and 13.2 to 35.4 for hs-cTnT. Multivariate adjusted HRs were highest when both NT-proBNP and hs-cTnT were above versus below the median in those with pre-DM/DM (16.7 for incident HF and 2.1 for CVD events, both p &lt;0.01). In conclusion, the combination of both biomarkers to traditional risk factors in participants who were normoglycemic or with pre-DM or DM improved risk prediction for both incident HF and total CVD events in an ethnically diverse population."	"Variant R94C in TNNT2-Encoded Troponin T Predisposes to Pediatric Restrictive Cardiomyopathy and Sudden Death Through Impaired Thin Filament Relaxation Resulting in Myocardial Diastolic Dysfunction. Background Pediatric-onset restrictive cardiomyopathy (RCM) is associated with high mortality, but underlying mechanisms of disease are under investigated. RCM-associated diastolic dysfunction secondary to variants in TNNT2-encoded cardiac troponin T (TNNT2) is poorly described. Methods and Results Genetic analysis of a proband and kindred with RCM identified TNNT2-R94C, which cosegregated in a family with 2 generations of RCM, ventricular arrhythmias, and sudden death. TNNT2-R94C was absent among large, population-based cohorts Genome Aggregation Database (gnomAD) and predicted to be pathologic by in silico modeling. Biophysical experiments using recombinant human TNNT2-R94C demonstrated impaired cardiac regulation at the molecular level attributed to reduced calcium-dependent blocking of myosin's interaction with the thin filament. Computational modeling predicted a shift in the force-calcium curve for the R94C mutant toward submaximal calcium activation compared within the wild type, suggesting low levels of muscle activation even at resting calcium concentrations and hypercontractility following activation by calcium. Conclusions The pathogenic TNNT2-R94C variant activates thin-filament-mediated sarcomeric contraction at submaximal calcium concentrations, likely resulting in increased muscle tension during diastole and hypercontractility during systole. This describes the proximal biophysical mechanism for development of RCM in this family."	"miR-128a Acts as a Regulator in Cardiac Development by Modulating Differentiation of Cardiac Progenitor Cell Populations. MicroRNAs (miRs) appear to be major, yet poorly understood players in regulatory networks guiding cardiogenesis. We sought to identify miRs with unknown functions during cardiogenesis analyzing the miR-profile of multipotent Nkx2.5 enhancer cardiac progenitor cells (NkxCE-CPCs). Besides well-known candidates such as miR-1, we found about 40 miRs that were highly enriched in NkxCE-CPCs, four of which were chosen for further analysis. Knockdown in zebrafish revealed that only miR-128a affected cardiac development and function robustly. For a detailed analysis, loss-of-function and gain-of-function experiments were performed during in vitro differentiations of transgenic murine pluripotent stem cells. MiR-128a knockdown (1) increased Isl1, Sfrp5, and Hcn4 (cardiac transcription factors) but reduced Irx4 at the onset of cardiogenesis, (2) upregulated Isl1-positive CPCs, whereas NkxCE-positive CPCs were downregulated, and (3) increased the expression of the ventricular cardiomyocyte marker Myl2 accompanied by a reduced beating frequency of early cardiomyocytes. Overexpression of miR-128a (4) diminished the expression of Isl1, Sfrp5, Nkx2.5, and Mef2c, but increased Irx4, (5) enhanced NkxCE-positive CPCs, and (6) favored nodal-like cardiomyocytes (Tnnt2<sup>+</sup>, Myh6<sup>+</sup>, Shox2<sup>+</sup>) accompanied by increased beating frequencies. In summary, we demonstrated that miR-128a plays a so-far unknown role in early heart development by affecting the timing of CPC differentiation into various cardiomyocyte subtypes."	"A Possible Mechanism behind Faster Clearance and Higher Peak Concentrations of Cardiac Troponin I Compared with Troponin T in Acute Myocardial Infarction. Although cardiac troponin I (cTnI) and troponin T (cTnT) form a complex in the human myocardium and bind to thin filaments in the sarcomere, cTnI often reaches higher concentrations and returns to normal concentrations faster than cTnT in patients with acute myocardial infarction (MI). We compared the overall clearance of cTnT and cTnI in rats and in patients with heart failure and examined the release of cTnT and cTnI from damaged human cardiac tissue in vitro. Ground rat heart tissue was injected into the quadriceps muscle in rats to simulate myocardial damage with a defined onset. cTnT and cTnI peaked at the same time after injection. cTnI returned to baseline concentrations after 54 h, compared with 168 h for cTnT. There was no difference in the rate of clearance of solubilized cTnT or cTnI after intravenous or intramuscular injection. Renal clearance of cTnT and cTnI was similar in 7 heart failure patients. cTnI was degraded and released faster and reached higher concentrations than cTnT when human cardiac tissue was incubated in 37°C plasma. Once cTnI and cTnT are released to the circulation, there seems to be no difference in clearance. However, cTnI is degraded and released faster than cTnT from necrotic cardiac tissue. Faster degradation and release may be the main reason why cTnI reaches higher peak concentrations and returns to normal concentrations faster in patients with MI."	"Tissue-specific promoter-based reporter system for monitoring cell differentiation from iPSCs to cardiomyocytes. The possibility of using stem cell-derived cardiomyocytes opens a new platform for modeling cardiac cell differentiation and disease or the development of new drugs. Progress in this field can be accelerated by high-throughput screening (HTS) technology combined with promoter reporter system. The goal of the study was to create and evaluate a responsive promoter reporter system that allows monitoring of iPSC differentiation towards cardiomyocytes. The lentiviral promoter reporter system was based on troponin 2 (TNNT2) and alpha cardiac actin (ACTC) with firefly luciferase and mCherry, respectively. The system was evaluated in two in vitro models. First, system followed the differentiation of TNNT2-luc-T2A-Puro-mCMV-GFP and hACTC-mcherry-WPRE-EF1-Neo from transduced iPSC line towards cardiomyocytes and revealed the significant decrease in both inserts copy number during the prolonged in vitro cell culture (confirmed by I-FISH, ddPCR, qPCR). Second, differentiated and contracting control cardiomyocytes (obtained from control non-reporter transduced iPSCs) were subsequently transduced with TNNT2-luc-T2A-Puro-CMV-GFP and hACTC-mcherry-WPRE-EF1-Neo lentiviruses to observe the functionality of obtained cardiomyocytes. Our results indicated that the reporter modified cell lines can be used for HTS applications, but it is essential to monitor the stability of the reporter sequence during extended cell in vitro culture."	"Reevaluating the Genetic Contribution of Monogenic Dilated Cardiomyopathy. Dilated cardiomyopathy (DCM) is genetically heterogeneous, with &gt;100 purported disease genes tested in clinical laboratories. However, many genes were originally identified based on candidate-gene studies that did not adequately account for background population variation. Here we define the frequency of rare variation in 2538 patients with DCM across protein-coding regions of 56 commonly tested genes and compare this to both 912 confirmed healthy controls and a reference population of 60 706 individuals to identify clinically interpretable genes robustly associated with dominant monogenic DCM. We used the TruSight Cardio sequencing panel to evaluate the burden of rare variants in 56 putative DCM genes in 1040 patients with DCM and 912 healthy volunteers processed with identical sequencing and bioinformatics pipelines. We further aggregated data from 1498 patients with DCM sequenced in diagnostic laboratories and the Exome Aggregation Consortium database for replication and meta-analysis. Truncating variants in TTN and DSP were associated with DCM in all comparisons. Variants in MYH7, LMNA, BAG3, TNNT2, TNNC1, PLN, ACTC1, NEXN, TPM1, and VCL were significantly enriched in specific patient subsets, with the last 2 genes potentially contributing primarily to early-onset forms of DCM. Overall, rare variants in these 12 genes potentially explained 17% of cases in the outpatient clinic cohort representing a broad range of adult patients with DCM and 26% of cases in the diagnostic referral cohort enriched in familial and early-onset DCM. Although the absence of a significant excess in other genes cannot preclude a limited role in disease, such genes have limited diagnostic value because novel variants will be uninterpretable and their diagnostic yield is minimal. In the largest sequenced DCM cohort yet described, we observe robust disease association with 12 genes, highlighting their importance in DCM and translating into high interpretability in diagnostic testing. The other genes analyzed here will need to be rigorously evaluated in ongoing curation efforts to determine their validity as Mendelian DCM genes but have limited value in diagnostic testing in DCM at present. This data will contribute to community gene curation efforts and will reduce erroneous and inconclusive findings in diagnostic testing."	"Long-term cultivation of human amniotic fluid stem cells: The impact on proliferative capacity and differentiation potential. Human amniotic fluid mesenchymal stem cells (AF-MSCs) are a valuable, easily obtainable alternative source of SCs for regenerative medicine. Usually, amounts of cells required for the translational purposes are large thus the goal of this study was to assess the potency of AF-MSCs to proliferate and differentiate during long-term cultivation in vitro. AF-MSCs were isolated from amniotic fluid of healthy women in the second trimester of pregnancy and cultivated in vitro. AF-MSCs were cultivated up to 42 passages and they still maintained pluripotency genes, such as OCT4, SOX2, and NANOG, expression at a similar level as in the initial passages as determined by reverse transcription-quantitative polymerase chain reaction (RT-qPCR). Fluorescence-activated cell sorting analysis demonstrated that the cell surface markers CD34 (negative), CD44, and CD105 (positive) expression was also stable, only the expression of SCs marker CD90 decreased during the cultivation. The morphology of AF-MSCs changed over passage, acridine orange/ethidium bromide staining revealed that more cells entered into apoptosis and the first signs of aging were detected only at late passages (later than p33) using SA-β-gal assay. Concomitantly, the differentiation potential towards cardiomyogenic lineage, induced with DNA methyltransferases inhibitors decitabine, zebularine, and RG108, was impaired when comparing AF-MSCs at p31/33 with p6. The expression of cardiomyocytes genes MYH6, TNNT2, DES together with ion channels genes of the heart (sodium, calcium, and potassium) decreased in p31/33 induced AF-MSCs. AF-MSCs have a great proliferative capacity and maintain most of the characteristics up to 33 passages; however, the cardiomyogenic differentiation capacity decreases to a certain extent during the long-term cultivation. These results provide useful insights for the potential use of AF-MSCs for biobanking and broad applications requiring high yield of cells or repeated infusions. Hence, it is vital to take into account the passage number of AF-MSCs, cultivated in culture, when utilizing them in vivo or in clinical experiments."	"The Impact of Sacrubitril/Valsartan on Clinical Treatment and hs-cTnT and NT-ProBNP Serum Levels and the Left Ventricular Function in Patients with Chronic Heart Failure. Chronic heart failure (CHF) seriously affects the quality of patients' lives. Sacrubitril/valsartan is a combination angiotensin receptor-neprilysin inhibitor, a new therapeutic drugs to treat CHF.This study aims to observe the impact of sacrubitril/valsartan on clinical treatment and high-sensitivity cardiac troponin T (hs-cTnT), N-terminal pro-brain natriuretic peptide (NT-ProBNP) serum levels, the improvement of the left atrial diameter (LAD) and left ventricular end diastolic dimension (LVEDD), and the left ventricular ejection fraction (LVEF) in patients with CHF.120 patients were randomly divided into a sacrubitil/valsartan group and a valsantan group, with 60 cases in each. Patients in the sacrubitil/valsartan group were administered sacrubitril/valsartan; while in the valsantan group, they were administered valsartan. The clinical effects, adverse reactions, and rehospitalization were observed eight weeks later, and hs-cTnT and NT-ProBNP serum levels and LAD, LVEDD, and LVEF were assayed.There were 53 cases of positive effect in the sacrubitil/valsartan group and 42 in the valsartan group (P &lt; 0.05). Eight participants demonstrated adverse reactions in the sacrubitil/valsartan group, while 17 in the control group (P &lt; 0.05). Hs-cTnT and NT-ProBNP serum levels, the measurements of LAD, LVEDD, and LVEF in the sacrubitil/valsartan group before the treatments were (24.47 ± 7.54) pg/mL, (10,356.94 ± 5,447.68) pg/mL, (49.41 ± 5.22) mm, (68.06 ± 6.20) mm and (31.12 ±6.65) %; in the valsartan group were (29.752 ± 10.03) pg/mL, (9,518.17 ± 5,905.17) pg/mL, (49.65 ± 4.91) mm, (67.06 ± 3.97) mm, and (30.41 ± 6.11) % (P &gt; 0.05), while in the sacrubitil/valsartan group, the values decreased after the treatments to (17.92 ± 4.74) pg/mL, (3,881.59 ± 2,087.79) pg/mL, (42.18 ± 4.87) mm, (60.35 ± 7.12) mm and (45.35 ± 4.49) %; in the valsartan group to (25.81 ± 7.36) pg/mL, (6,278.35 ± 2,643.11) pg/mL, (46.53 ± 4.80) mm, (64.51 ± 4.34) mm, and (36.47 ± 5.21) % (P &lt; 0.05). There were significant differences within the same group, before and after treatments (P &lt; 0.05).Sacrubitril/valsartan treatment of patients with CHF improves their symptoms and is deserving of clinical application. This is also evident from significantly improved levels of serum hs-cTnT and NT-ProBNP and the left ventricular function."	"β-Adrenergic stimuli and rotating suspension culture enhance conversion of human adipogenic mesenchymal stem cells into highly conductive cardiac progenitors. Clinical trials using human adipogenic mesenchymal stem cells (hAdMSCs) for the treatment of cardiac diseases have shown improvement in cardiac function and were proven safe. However, hAdMSCs do not convert efficiently into cardiomyocytes (CMs) or vasculature. Thus, reprogramming hAdMSCs into myocyte progenitors may fare better in future investigations. To reprogramme hAdMSCs into electrically conductive cardiac progenitor cells, we pioneered a three-step reprogramming strategy that uses proven MESP1/ETS2 transcription factors, β-adrenergic and hypoxic signalling induced in three-dimensional (3D) cardiospheres. In Stage 1, ETS2 and MESP1 activated NNKX2.5, TBX5, MEF2C, dHAND, and GATA4 during the conversion of hAdMSCs into cardiac progenitor cells. Next, in Stage 2, β2AR activation repositioned cardiac progenitors into de novo immature conductive cardiac cells, along with the appearance of RYR2, CAV2.1, CAV3.1, NAV1.5, SERCA2, and CX45 gene transcripts and displayed action potentials. In Stage 3, electrical conduction that was fostered by 3D cardiospheres formed in a Synthecon®, Inc. rotating bioreactor induced the appearance of hypoxic genes: HIF-1α/β, PCG 1α/β, and NOS2, which coincided with the robust activation of adult contractile genes including MLC2v, TNNT2, and TNNI3, ion channel genes, and the appearance of hyperpolarization-activated and cyclic nucleotide-gated channels (HCN1-4). Conduction velocities doubled to ~200 mm/s after hypoxia and doubled yet again after dissociation of the 3D cell clusters to ~400 mm/s. By comparison, normal conduction velocities within working ventricular myocytes in the whole heart range from 0.5 to 1 m/s. Epinephrine stimulation of stage 3 cardiac cells in patches resulted in an increase in amplitude of the electrical wave, indicative of conductive cardiac cells. Our efficient protocol that converted hAdMSCs into highly conductive cardiac progenitors demonstrated the potential utilization of stage 3 cells for tissue engineering applications for cardiac repair."	"Combinatorial genetic replenishments in myocardial and outflow tract tissues restore heart function in tnnt2 mutant zebrafish. Cardiac muscle troponin T (Tnnt2) mediates muscle contraction in response to calcium ion dynamics, and Tnnt2 mutations are associated with multiple types of cardiomyopathy. Here, we employed a zebrafish model to investigate the genetic replenishment strategies of using conditional and inducible promoters to rescue the deficiencies in the heart. tnnt2a mutations were induced in zebrafish via the CRISPR/Cas9 technique, and the mutants displayed heart arrest and dilated cardiomyopathy-like phenotypes. We first utilized the classic myocardial promoter of the myl7 and TetOn inducible system to restore tnnt2a expression in myocardial tissue in tnnt2a mutant zebrafish. However, this attempt failed to recover normal heart function and circulation, although heart pumping was partially restored. Further analyses via both RNA-seq and immunofluorescence indicated that Tnnt2a, which was also expressed in a novel group of myl7-negative smooth muscle cells on the outflow tract (OFT), was indispensably responsible for the normal mechanical dynamics of OFT. Lastly, tnnt2 expression induced by OFT cells in addition to the myocardial cells successfully rescued heart function and circulation in tnnt2a mutant zebrafish. Together, our results reveal the significance of OFT expression of Tnnt2 for cardiac function and demonstrate zebrafish larva as a powerful and convenient in vivo platform for studying cardiomyopathy and the relevant therapeutic strategies."	"Is genomic screening necessary for fetuses who suffer moderate to severe tricuspid regurgitation?: A case report. Tricuspid regurgitation (TR) is a frequent finding during echocardiography screening in fetal or neonatal life, which reveals a weak association between TR and cardiac malformation. Except for structural abnormalities, dilated cardiomyopathy (DCM) ranks as the top reason for early child morbidity and mortality among all kinds of cardiomyopathy. In the early fetal stage, cardiac abnormalities detected by early fetal genetic testing followed by abnormalities on ultrasound would provide more valuable information for parents and physicians to make a better therapeutic schedule. A case of severe TR was found via the fetal ultrasound screening. After birth, this child suffered severe heart dysfunction, and echocardiography confirmed a DCM phenotype within a very short time. A 40-year-old female received routine fetal echocardiographic screening, which demonstrated that the fetus presented severe TR. Six months after birth, the baby experienced severe heart failure, as the EF dropped to 22% with an extremely large LV chamber. The genomic sequence had been determined, and 3 pathogenic gene mutations located in 2 genes, cardiac troponin T (TNNT2) c.548G&gt;A, desmoplakin (DSP) c.3146C&gt;T, and DSP c.5213G&gt;A, were identified. Finally, the patient was diagnosed with DCM. This child received digoxin, hydrochlorothiazide, spironolactone diuresis, captopril, and L-carnitine, and the symptoms of heart failure had been controlled as the patient waited for heart transplantation. During the follow-up, the patient still suffered from poor heart function and an enlarged left ventricle. Concomitantly, the parents placed her on a waiting list for heart transplantation. Fetal TR is a common phenomenon, and many studies have indicated that isolated TR is not an appropriate predictor of chromosomal abnormalities or congenital heart defects. However, according to this case, it is urgent to recommend that the mother should take advantage of free fetal DNA analysis in a maternal blood sample to obtain further molecular evidence once fetal echocardiography reveals moderate to severe TR with any maternal high-risk factors for birth defects."	"Establishing a new human hypertrophic cardiomyopathy-specific model using human embryonic stem cells. Symptom of ventricular hypertrophy caused by cardiac troponin T (TNNT2) mutations is mild, while patients often showed high incidence of sudden cardiac death. The 92nd arginine to glutamine mutation (R92Q) of cTnT was one of the mutant hotspots in hypertrophic cardiomyopathy (HCM). However, there are no such human disease models yet. To solve this problem, we generated TNNT2 R92Q mutant hESC cell lines (heterozygote or homozygote) using TALEN mediated homologous recombination in this study. After directed cardiac differentiation, we found a relative larger cell size in both heterozygous and homozygous TNNT2 R92Q hESC-cardiomyocytes. Expression of atrial natriuretic peptide (ANP), brain natriuretic peptide (BNP), and sarcoplasmic reticulum Ca<sup>2+</sup>-ATPase2a (SERCA2a) were downregulated, while myocyte specific enhancer factor 2c (MEF2c) and the ratio of beta myosin to alpha myosin heavy chain (MYH7/MYH6) were increased in heterozygous TNNT2 R92Q hESC-cardiomyocytes. TNNT2 R92Q mutant cardiomyocytes exhibited efficient responses to heart-related pharmaceutical agents. We also found TNNT2 R92Q heterozygous mutant cardiomyocytes showed increased calcium sensitivity and contractility. Further, engineered heart tissues (EHTs) prepared by combining rat decellularized heart extracellular matrices with heterozygous R92Q mutant cardiomyocytes showed similar drug responses as to HCM patients and increased sensitivity to caspofungin-induced cardiotoxicity. Using RNA-sequencing of TNNT2 R92Q heterozygous mutant cardiomyocytes, we found dysregulation of calcium might participated in the early development of hypertrophy. Our hESC-derived TNNT2 R92Q mutant cardiomyocytes and EHTs are good in vitro human disease models for future disease studies and drug screening."	"Overexpression of Pygo2 Increases Differentiation of Human Umbilical Cord Mesenchymal Stem Cells into Cardiomyocyte-like Cells. Our previous studies have shown that Pygo (Pygopus) in Drosophila plays a critical role in adult heart function that is likely conserved in mammals. However, its role in the differentiation of human umbilical cord mesenchymal stem cells (hUC-MSCs) into cardiomyocytes remains unknown. To investigate the role of pygo2 in the differentiation of hUC-MSCs into cardiomyocytes. Third passage hUC-MSCs were divided into two groups: a p+ group infected with the GV492-pygo2 virus and a p- group infected with the GV492 virus. After infection and 3 or 21 days of incubation, Quantitative real-time PCR (qRT-PCR) was performed to detect pluripotency markers, including OCT-4 and SOX2. Nkx2.5, Gata-4 and cTnT were detected by immunofluorescence at 7, 14 and 21 days post-infection, respectively. Expression of cardiac-related genes-including Nkx2.5, Gata-4, TNNT2, MEF2c, ISL-1, FOXH1, KDR, αMHC and α-Actin-were analyzed by qRT-PCR following transfection with the virus at one, two and three weeks. After three days of incubation, there were no significant changes in the expression of the pluripotency stem cell markers OCT-4 and SOX2 in the p+ group hUC-MSCs relative to controls (OCT-4: 1.03 ± 0.096 VS 1, P &gt; 0.05, SOX2: 1.071 ± 0.189 VS 1, P &gt; 0.05); however, after 21 days, significant decreases were observed (OCT-4: 0.164 ± 0.098 VS 1, P &lt; 0.01, SOX2: 0.209 ± 0.109 VS 1, P &lt; 0.001). Seven days following incubation, expression of mesoderm specialisation markers, such as Nkx2.5, Gata-4, MEF2c and KDR, were increased; at 14 days following incubation, expression of cardiac genes, such as Nkx2.5, Gata-4, TNNT2, MEF2c, ISL-1, FOXH1, KDR, αMHC and α-Actin, were significantly upregulated in the p+ group relative to the p- group (P &lt; 0.05). Taken together, these findings suggest that overexpression of pygo2 results in more hUCMSCs gradually differentiating into cardiomyocyte-like cells. We are the first to show that overexpression of pygo2 significantly enhances the expression of cardiac-genic genes, including Nkx2.5 and Gata-4, and promotes the differentiation of hUC-MSCs into cardiomyocyte-like cells."	"Mitochondrial connexin 43 in sex-dependent myocardial responses and estrogen-mediated cardiac protection following acute ischemia/reperfusion injury. Preserving mitochondrial activity is crucial in rescuing cardiac function following acute myocardial ischemia/reperfusion (I/R). The sex difference in myocardial functional recovery has been observed after I/R. Given the key role of mitochondrial connexin43 (Cx43) in cardiac protection initiated by ischemic preconditioning, we aimed to determine the implication of mitochondrial Cx43 in sex-related myocardial responses and to examine the effect of estrogen (17β-estradiol, E2) on Cx43, particularly mitochondrial Cx43-involved cardiac protection following I/R. Mouse primary cardiomyocytes and isolated mouse hearts (from males, females, ovariectomized females, and doxycycline-inducible Tnnt2-controlled Cx43 knockout without or with acute post-ischemic E2 treatment) were subjected to simulated I/R in culture or Langendorff I/R (25-min warm ischemia/40-min reperfusion), respectively. Mitochondrial membrane potential and mitochondrial superoxide production were measured in cardiomyocytes. Myocardial function and infarct size were determined. Cx43 and its isoform, Gja1-20k, were assessed in mitochondria. Immunoelectron microscopy and co-immunoprecipitation were also used to examine mitochondrial Cx43 and its interaction with estrogen receptor-α by E2 in mitochondria, respectively. There were sex disparities in stress-induced cardiomyocyte mitochondrial function. E2 partially restored mitochondrial activity in cardiomyocytes following acute injury. Post-ischemia infusion of E2 improved functional recovery and reduced infarct size with increased Cx43 content and phosphorylation in mitochondria. Ablation of cardiac Cx43 aggravated mitochondrial damage and abolished E2-mediated cardiac protection during I/R. Female mice were more resistant to myocardial I/R than age-matched males with greater protective role of mitochondrial Cx43 in female hearts. Post-ischemic E2 usage augmented mitochondrial Cx43 content and phosphorylation, increased mitochondrial Gja1-20k, and showed cardiac protection."	"Basic residues within the cardiac troponin T C terminus are required for full inhibition of muscle contraction and limit activation by calcium. Striated muscle is activated by myosin- and actin-linked processes, with the latter being regulated through changes in the position of tropomyosin relative to the actin surface. The C-terminal region of cardiac troponin T (TnT), a tropomyosin-associated protein, is required for full TnT inactivation at low Ca<sup>2+</sup> and for limiting its activation at saturating Ca<sup>2+</sup> Here, we investigated whether basic residues in this TnT region are involved in these activities, whether the TnT C terminus undergoes Ca<sup>2+</sup>-dependent conformational changes, and whether these residues affect cardiac muscle contraction. We generated a human cardiac TnT variant in which we replaced seven C-terminal Lys and Arg residues with Ala and added a Cys residue at either position 289 or 275 to affix a fluorescent probe. At pCa 3.7, actin filaments containing high-alanine TnT had an elevated ATPase rate like that obtained when the last TnT 14 residues were deleted. Acrylodan-tropomyosin fluorescence changes and S1-actin binding kinetics revealed that at pCa 8, the high-alanine TnT-containing filaments did not enter the first inactive state. FRET analyses indicated that the C-terminal TnT region approached Cys-190 of tropomyosin as actin filaments transitioned to the inactive B state; that transition was abolished with high-alanine TnT. High-alanine TnT-containing cardiac muscle preparations had increased Ca<sup>2+</sup> sensitivity of both steady-state isometric force and sinusoidal stiffness as well as increased maximum steady-state isometric force and sinusoidal stiffness. We conclude that C-terminal basic residues in cardiac TnT are critical for the regulation of cardiac muscle contraction."	"Generation of human induced pluripotent stem cell-derived cardiomyocytes in 2D monolayer and scalable 3D suspension bioreactor cultures with reduced batch-to-batch variations. Human induced pluripotent stem cell derived cardiomyocytes (hiPSC-CMs) are promising candidates to treat myocardial infarction and other cardiac diseases. Such treatments require pure cardiomyocytes (CMs) in large quantities. Methods: In the present study we describe an improved protocol for production of hiPSC-CMs in which hiPSCs are first converted into mesodermal cells by stimulation of wingless (Wnt) signaling using CHIR99021, which are then further differentiated into CM progenitors by simultaneous inhibition of porcupine and tankyrase pathways using IWP2 and XAV939 under continuous supplementation of ascorbate during the entire differentiation procedure. Results: The protocol resulted in reproducible generation of &gt;90% cardiac troponin T (TNNT2)-positive cells containing highly organized sarcomeres. In 2D monolayer cultures CM yields amounted to 0.5 million cells per cm<sup>2</sup> growth area, and on average 72 million cells per 100 mL bioreactor suspension culture without continuous perfusion. The differentiation efficiency was hardly affected by the initial seeding density of undifferentiated hiPSCs. Furthermore, batch-to-batch variations were reduced by combinatorial use of ascorbate, IWP2, and XAV939. Conclusion: Combined inhibition of porcupine and tankyrase sub-pathways of Wnt signaling and continuous ascorbate supplementation, enable robust and efficient production of hiPSC-CMs."	"TNNT2 Missplicing in Skeletal Muscle as a Cardiac Biomarker in Myotonic Dystrophy Type 1 but Not in Myotonic Dystrophy Type 2. Cardiac involvement is one of the most important manifestations of the multisystemic phenotype of patients affected by myotonic dystrophy (DM) and represents the second cause of premature death. Molecular mechanisms responsible for DM cardiac defects are still unclear; however, missplicing of the cardiac isoform of troponin T (TNNT2) and of the cardiac sodium channel (SCN5A) genes might contribute to the reduced myocardial function and conduction abnormalities seen in DM patients. Since, in DM skeletal muscle, the TNNT2 gene shows the same aberrant splicing pattern observed in cardiac muscle, the principal aim of this work was to verify if the TNNT2 aberrant fetal isoform expression could be secondary to myopathic changes or could reflect the DM cardiac phenotype. Analysis of alternative splicing of TNNT2 and of several genes involved in DM pathology has been performed on muscle biopsies from patients affected by DM type 1 (DM1) or type 2 (DM2) with or without cardiac involvement. Our analysis shows that missplicing of muscle-specific genes is higher in DM1 and DM2 than in regenerating control muscles, indicating that these missplicing could be effectively important in DM skeletal muscle pathology. When considering the TNNT2 gene, missplicing appears to be more evident in DM1 than in DM2 muscles since, in DM2, the TNNT2 fetal isoform appears to be less expressed than the adult isoform. This evidence does not seem to be related to less severe muscle histopathological alterations that appear to be similar in DM1 and DM2 muscles. These results seem to indicate that the more severe TNNT2 missplicing observed in DM1 could not be related only to myopathic changes but could reflect the more severe general phenotype compared to DM2, including cardiac problems that appear to be more severe and frequent in DM1 than in DM2 patients. Moreover, TNNT2 missplicing significantly correlates with the QRS cardiac parameter in DM1 but not in DM2 patients, indicating that this splicing event has good potential to function as a biomarker of DM1 severity and it should be considered in pharmacological clinical trials to monitor the possible effects of different therapeutic approaches on skeletal muscle tissues."	"Changes of Metabolic Phenotype of Cardiac Progenitor Cells During Differentiation: Neutral Effect of Stimulation of AMP-Activated Protein Kinase. Cardiac progenitor cells (CPCs) in the adult mammalian heart, as well as exogenous CPCs injected at the border zone of infarcted tissue, display very low differentiation rate into cardiac myocytes and marginal repair capacity in the injured heart. Emerging evidence supports an obligatory metabolic shift from glycolysis to oxidative phosphorylation (OXPHOS) during stem cells differentiation, suggesting that pharmacological modulation of metabolism may improve CPC differentiation and, potentially, healing properties. In this study, we investigated the metabolic transition underlying CPC differentiation toward cardiac myocytes. In addition, we tested whether activators of adenosine monophosphate-activated protein kinase (AMPK), known to promote mitochondrial biogenesis in other cell types would also improve CPC differentiation. Stem cell antigen 1 (Sca1<sup>+</sup>) CPCs were isolated from adult mouse hearts and their phenotype compared with more mature neonatal rat cardiac myocytes (NRCMs). Under normoxia, glucose consumption and lactate release were significantly higher in CPCs than in NRCMs. Both parameters were increased in hypoxia together with increased abundance of Glut1 (glucose transporter), of the monocarboxylic transporter Mct4 (lactate efflux mediator) and of Pfkfb3 (key regulator of glycolytic rate). CPC proliferation was critically dependent on glucose and glutamine availability in the media. Oxygen consumption analysis indicates that, compared with NRCMs, CPCs exhibited lower basal and maximal respirations with lower Tomm20 protein expression and mitochondrial DNA content. This CPC metabolic phenotype profoundly changed upon in vitro differentiation, with a decrease of glucose consumption and lactate release together with increased abundance of Tnnt2, Pgc-1α, Tomm20, and mitochondrial DNA content. Proliferative CPCs express both alpha1 and -2 catalytic subunits of AMPK that is activated by A769662. However, A769662 or resveratrol (an activator of Pgc-1α and AMPK) did not promote either mitochondrial biogenesis or CPC maturation during their differentiation. We conclude that although CPC differentiation is accompanied with an increase of mitochondrial oxidative metabolism, this is not potentiated by activation of AMPK in these cells."	"Subclinical Cardiovascular Disease and Fall Risk in Older Adults: Results From the Atherosclerosis Risk in Communities Study. Falls are frequent and often devastating events among older adults. Cardiovascular disease (CVD) is associated with greater fall risk; however, it is unknown if pathways that contribute to CVD, such as subclinical myocardial damage or wall strain, are related to future falls. We hypothesized that elevations in high-sensitivity cardiac troponin T (hs-cTnT) and N-terminal pro-B-type natriuretic peptide (NT-proBNP), measured in older adults, would be associated with greater fall risk. Prospective cohort study. Atherosclerosis Risk in Communities Study participants without known coronary heart disease, heart failure, or stroke. We measured hs-cTnT or NT-proBNP in 2011 to 2013. Falls were identified from hospital discharge International Classification of Diseases, Ninth Revision (ICD-9), codes or Centers for Medicare and Medicaid Services claims. We used Poisson models adjusted for age, sex, and race/study center to quantify fall rates across approximate quartiles of hs-cTnT (less than 8, 8-10, 11-16, and 17 or greater ng/L) and NT-proBNP (less than 75, 75-124, 125-274, and 275 or greater pg/mL). We used Cox models to determine the association of cardiac markers with fall risk, adjusted for age, sex, race/center, and multiple fall risk factors. Among 3973 participants (mean age = 76 ± 5 years, 62% women, 22% black), 457 had a subsequent fall during a median follow-up of 4.5 years. Incidence rates across quartiles of hs-cTnT and NT-proBNP were 17.1, 20.0, 26.2, and 36.4 per 1000 person-years and 12.8, 22.2, 28.7, and 48.4 per 1000 person-years, respectively. Comparing highest vs lowest quartiles of either hs-cTnT or NT-proBNP demonstrated a greater than two-fold higher fall risk, with hazard ratios of 2.17 (95% confidence interval {CI} = 1.60-2.95) and 2.34 (95% CI = 1.73-3.16), respectively. In a joint model, the relationships of hs-cTnT and NT-proBNP with falls were significant and independent. Subclinical elevations of cardiac damage and wall strain were each associated with a higher fall risk in older adults. Further research is needed to determine whether interventions that lower hs-cTnT or NT-proBNP also lower fall risk. J Am Geriatr Soc 67:1795-1802, 2019."	"lnc-3215 Suppression Leads to Calcium Overload in Selenium Deficiency-Induced Chicken Heart Lesion via the lnc-3215-miR-1594-TNN2 Pathway. Selenium deficiency has been proven to induce calcium disorders in the chicken heart. However, detailed regulatory mechanisms, e.g., the long noncoding RNA (lncRNA)-microRNA (miRNA)-mRNA regulatory axis, have not yet been described. Here, we point out lnc-2315, miR-1594, and Troponin T (TNNT2) based on the results of lncRNA and miRNA comparative genomics group analysis of Se-deficient chicken hearts compared with control hearts. We employed lnc-3215 and TNNT2 knockdown, miR-1594 knockdown, and overexpression models in the chicken embryos in vivo, and lnc-3215, miR-1594, and TNNT2 knockdown and overexpression models in cardiomyocytes in vitro. The dual-luciferase reporter assay and quantitative real-time PCR were used to confirm the relationships between miR-1594 and TNNT2, lnc-3215, and miR-1594 in cardiomyocytes. Our results revealed that TNNT2 suppression induced cardiac calcium overload in vivo and in vitro. miR-1594 activates cardiac calcium overload by targeting TNNT2. Moreover, we found that lnc-3215 regulates miR-1594, and thus influences the TNNT2 expression in vivo and in vitro; these conclusions were verified by gene knockdown in chicken embryos. Our present study revealed a novel regulatory model of a calcium program, which comprises lnc-3215, miR-1594, and TNNT2 in the chicken heart. Our conclusions may provide a feasible diagnostic tool for Se-deficient cardiomyocytes injury."	"Exercise-Induced Cardiac Troponin I Increase and Incident Mortality and Cardiovascular Events. Blood concentrations of cardiac troponin above the 99<sup>th</sup> percentile are a key criterion for the diagnosis of acute myocardial injury and infarction. Troponin concentrations, even below the 99<sup>th</sup> percentile, predict adverse outcomes in patients and the general population. Elevated troponin concentrations are commonly observed after endurance exercise, but the clinical significance of this increase is unknown. We examined the association between postexercise troponin I concentrations and clinical outcomes in long-distance walkers. We measured cardiac troponin I concentrations in 725 participants (61 [54-69] yrs) before and immediately after 30 to 55 km of walking. We tested for an association between postexercise troponin I concentrations above the 99<sup>th</sup> percentile (&gt;0.040 µg/L) and a composite end point of all-cause mortality and major adverse cardiovascular events (myocardial infarction, stroke, heart failure, revascularization, or sudden cardiac arrest). Continuous variables were reported as mean ± standard deviation when normally distributed or median [interquartile range] when not normally distributed. Participants walked 8.3 [7.3-9.3] hours at 68±10% of their maximum heart rate. Baseline troponin I concentrations were &gt;0.040 µg/L in 9 participants (1%). Troponin I concentrations increased after walking (P&lt;.001), with 63 participants (9%) demonstrating a postexercise troponin concentration &gt;0.040 µg/L. During 43 [23-77] months of follow-up, 62 participants (9%) experienced an end point; 29 died and 33 had major adverse cardiovascular events. Compared with 7% with postexercise troponin I ≤0.040 µg/L (log-rank P&lt;.001), 27% of participants with postexercise troponin I concentrations &gt;0.040 µg/L experienced an end point. The hazard ratio was 2.48 (95% CI, 1.29-4.78) after adjusting for age, sex, cardiovascular risk factors (hypertension, hypercholesterolemia or diabetes mellitus), cardiovascular diseases (myocardial infarction, stroke, or heart failure), and baseline troponin I concentrations. Exercise-induced troponin I elevations above the 99<sup>th</sup> percentile after 30 to 55 km of walking independently predicted higher mortality and cardiovascular events in a cohort of older long-distance walkers. Exercise-induced increases in troponin may not be a benign physiological response to exercise, but an early marker of future mortality and cardiovascular events."	"A triptych on acute cardiovascular care. NA"	"FRET-based analysis of the cardiac troponin T linker region reveals the structural basis of the hypertrophic cardiomyopathy-causing Δ160E mutation. Mutations in the cardiac thin filament (TF) have highly variable effects on the regulatory function of the cardiac sarcomere. Understanding the molecular-level dysfunction elicited by TF mutations is crucial to elucidate cardiac disease mechanisms. The hypertrophic cardiomyopathy-causing cardiac troponin T (cTnT) mutation Δ160Glu (Δ160E) is located in a putative &quot;hinge&quot; adjacent to an unstructured linker connecting domains TNT1 and TNT2. Currently, no high-resolution structure exists for this region, limiting significantly our ability to understand its role in myofilament activation and the molecular mechanism of mutation-induced dysfunction. Previous regulated in vitro motility data have indicated mutation-induced impairment of weak actomyosin interactions. We hypothesized that cTnT-Δ160E repositions the flexible linker, altering weak actomyosin electrostatic binding and acting as a biophysical trigger for impaired contractility and the observed remodeling. Using time-resolved FRET and an all-atom TF model, here we first defined the WT structure of the cTnT-linker region and then identified Δ160E mutation-induced positional changes. Our results suggest that the WT linker runs alongside the C terminus of tropomyosin. The Δ160E-induced structural changes moved the linker closer to the tropomyosin C terminus, an effect that was more pronounced in the presence of myosin subfragment (S1) heads, supporting previous findings. Our in silico model fully supported this result, indicating a mutation-induced decrease in linker flexibility. Our findings provide a framework for understanding basic pathogenic mechanisms that drive severe clinical hypertrophic cardiomyopathy phenotypes and for identifying structural targets for intervention that can be tested in silico and in vitro."	"Could two-dimensional radial strain be considered as a novel tool to identify pre-clinical hypertrophic cardiomyopathy mutation carriers? Treatment of overt form of hypertrophic cardiomyopathy (HCM) is often unsuccessful. Efforts are focused on a possible early identification in order to prevent or delaying the development of hypertrophy. Our aim was to find an echocardiographic marker able to distinguish mutation carriers without left ventricular hypertrophy (LVH) from healthy subjects. We evaluated 28 patients, members of eight families. Three types of mutation were recognized: MYBPC3 (five families), MYH7 (two families) and TNNT2 (one family). According to genetic (G) and phenotypic (Ph) features, patients were divided in three groups: Group A (10 patients), mutation carriers with LVH (G+/Ph+); Group B (9 patients), mutation carriers without LVH (G+/Ph-); Group C (9 patients), healthy subjects (G-/Ph-). Echocardiography examination was performed acquiring standard 2D, DTI and 2D-strain imaging. Global longitudinal strain (GLS) and global radial strain (GRS) at basal and mid-level were measured. GRS was significantly different between group B and C at basal level (32.18% ± 9.6 vs. 44.59% ± 12.67 respectively; p-value &lt; 0.0001). In basal posterior and basal inferior segments this difference was particularly evident. ROC curves showed for both the involved segments good AUCs (0.931 and 0.861 for basal posterior and inferior GRS respectively) with the best predictive cut-off for basal posterior GRS at 43.65%, while it was 38.4% for basal inferior GRS. Conversely, GLS values were similar in the three group. 2D longitudinal strain is a valid technique to study HCM. Radial strain and particularly basal posterior and inferior segmental reduction could be able to identify mutation carriers in a pre-clinical phase of disease."	"A Novel Zebrafish Larvae Hypoxia/Reoxygenation Model for Assessing Myocardial Ischemia/Reperfusion Injury. Strategies to reduce reperfusion injury after ischemia have been considered in clinical practice, but few interventions have successfully passed the proof-of-concept stage. In this study, we developed a novel zebrafish larvae hypoxia/reoxygenation (H/R) model to simulate myocardial ischemia/reperfusion injury (MIRI), with potential utility as a drug screening tool. After H/R treatment, videos of transgenic [Tg(cmlc:EGFP)] larval zebrafish hearts were captured using a digital high-speed camera, and the heart rate, diastolic area, systolic area, and total fraction of area changed were quantified. The mRNA expression of tnnt2, bnp, and hif1α was quantified, and red blood cells (RBCs) were detected by O-dianisidine staining. We found that a decline in cardiac contractility occurred in zebrafish larvae 48 h after hypoxia treatment. Reoxygenation for 2-5 h after 48 h of hypoxia caused heart dysfunction in zebrafish larvae, and were determined to be the optimum conditions for simulating MIRI similar to mammalian models. Our results indicated that heart dysfunction after reoxygenation in zebrafish larvae was accompanied by an upregulated gene expression of a number of myocardial injury biomarkers and increased numbers of RBCs. In conclusion, the novel larval zebrafish H/R model developed in this study could be used for rapid in vivo screening and efficacy assessment of MIRI therapeutics."	"Presence of Hypertrophic Cardiomyopathy Related Gene Mutations and Clinical Manifestations in Vietnamese Patients With Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is associated primarily with pathogenic mutations in sarcomeric genes. The aim of this study was to identify the prevalence and distribution of disease-causing mutations in HCM-associated genes and the genotype-phenotype relationship in Vietnamese patients with HCM.Methods and Results:Genetic testing was performed by next-generation sequencing in 104 unrelated probands for 23 HCM-related genes and in 57 family members for the mutation(s) detected. Clinical manifestations were recorded for genotype-phenotype correlation analysis. Mutation detection rate was 43.4%. Mutations inMYBPC3accounted for 38.6%, followed byTPM1(20.5%),MYH7(18.2%),TNNT2(9.1%),TNNI3(4.5%) andMYL2(2.3%). A mutation inGLAassociated with Fabry disease was found in 1 patient. A mutation inTPM1(c.842T&gt;C, p.Met281Thr) was identified in 8 unrelated probands (18.2%) and 8 family members from 5 probands. Genotype-positive status related toMYH7,TPM1, andTNNT2mutations was associated with severe clinical manifestations.MYH7-positive patients displayed worse prognosis compared withMYBPC3-positive patients. Interestingly,TPM1c.842T&gt;C mutation was associated with high penetrance and severe HCM phenotype. We report for the first time the prevalence of HCM-related gene variants in Vietnamese patients with HCM.MYH7,TPM1, andTNNT2mutations were associated with unfavorable prognosis."	"Genetic variants identified by target next-generation sequencing in heart transplant patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a myocardial disease that can progress to a terminal stage, requiring heart transplantation. In this work we aim to contribute to knowledge of genetic variants in adult patients undergoing heart transplantation due to end-stage DCM, reporting the results obtained in our single-center tertiary hospital series using target next-generation sequencing (NGS). Genetic variants were screened in 15 genes, preselected based on variants previously identified in DCM patients. Thirteen unrelated patients were included, nine (69%) male, mean age at diagnosis 33±13 years, eight (62%) with familial DCM. Nine genetic variants were identified in six (46%) patients: five in LMNA, two in LBD3, one in TNNT2 and one in TCAP. These variants were new in most patients. The majority were classified as of uncertain significance. Two patients were double and triple heterozygotes in the LBD3 and LMNA genes, respectively. Our results highlight the potential of NGS in the genetic characterization of DCM patients. LMNA is one of the most frequently mutated genes and should be included in all target gene assessments of end-stage DCM patients until more data are available."	"Genome Resequencing Reveals Congenital Causes of Embryo and Nestling Death in Crested Ibis (Nipponia nippon). The crested ibis (Nipponia nippon) is endangered worldwide. Although a series of conservation measures have markedly increased the population size and distribution area of these birds, the high mortality of embryos and nestlings considerably decreases the survival potential of this bird species. High-throughput sequencing technology was utilized to compare whole genomes between ten samples from dead crested ibises (including six dead embryos and four dead nestlings aged 0-45 days) and 32 samples from living birds. The results indicated that the dead samples all shared the genetic background of a specific ancestral subpopulation. Furthermore, the dead individuals were less genetically diverse and suffered higher degrees of inbreeding compared with these measures in live birds. Several candidate genes (KLHL3, SETDB2, TNNT2, PKP1, AK1, and EXOSC3) associated with detrimental diseases were identified in the genomic regions that differed between the alive and dead samples, which are likely responsible for the death of embryos and nestlings. In addition, in these regions, we also found several genes involved in the protein catabolic process (UBE4A and LONP1), lipid metabolism (ACOT1), glycan biosynthesis and metabolism (HYAL1 and HYAL4), and the immune system (JAM2) that are likely to promote the normal development of embryos and nestlings. The aberrant conditions of these genes and biological processes may contribute to the death of embryos and nestlings. Our data identify congenital factors underlying the death of embryos and nestlings at the whole genome level, which may be useful toward informing more effective conservation efforts for this bird species."	"Hsa-miR-335 regulates cardiac mesoderm and progenitor cell differentiation. WNT and TGFβ signaling pathways play critical regulatory roles in cardiomyocyte fate determination and differentiation. MiRNAs are also known to regulate different biological processes and signaling pathways. Here, we intended to find candidate miRNAs that are involved in cardiac differentiation through regulation of WNT and TGFβ signaling pathways. Bioinformatics analysis suggested hsa-miR-335-3p and hsa-miR-335-5p as regulators of cardiac differentiation. Then, RT-qPCR, dual luciferase, TOP/FOP flash, and western blot analyses were done to confirm the hypothesis. Human embryonic stem cells (hESCs) were differentiated into beating cardiomyocytes, and these miRNAs showed significant expression during the differentiation process. Gain and loss of function of miR-335-3p and miR-335-5p resulted in BRACHYURY, GATA4, and NKX2-5 (cardiac differentiation markers) expression alteration during the course of hESC cardiac differentiation. The overexpression of miR-335-3p and miR-335-5p also led to upregulation of CNX43 and TNNT2 expression, respectively. Our results suggest that this might be mediated through enhancement of WNT and TGFβ signaling pathways. Overall, we show that miR-335-3p/5p upregulates cardiac mesoderm (BRACHYURY) and cardiac progenitor cell (GATA4 and NKX2-5) markers, which are potentially mediated through activation of WNT and TGFβ signaling pathways. Our findings suggest miR-335-3p/5p to be considered as a regulator of the cardiac differentiation process."	"Risk stratification of elderly patients with acute pulmonary embolism. Combining high-sensitivity cardiac Troponin T (hs-cTnT), NT-pro-B-type natriuretic peptide (NT-proBNP) and high-sensitivity C-reactive protein (hs-CRP) may improve risk stratification of patients with pulmonary embolism (PE) beyond the PESI risk score. In the prospective multicentre SWITCO65+ study, we analysed 214 patients ≥ 65 years with a new submassive PE. Biomarkers and clinical information for the PESI risk score were ascertained within 1 day after diagnosis. Associations of hs-TnT, NT-proBNP, hs-CRP and the PESI risk score with the primary endpoint defined as 6-month mortality were assessed. The discriminative power of the PESI risk score and its combination with hs-cTnT, NT-proBNP and hs-CRP for 6-month mortality was compared using integrated discrimination improvement (IDI) index and net reclassification improvement (NRI). Compared with the lowest quartile, patients in the highest quartile had a higher risk of death during the first 6 months for hs-cTnT (adjusted HR 10.22; 95% CI 1.79-58.34; P = 0.009) and a trend for NT-proBNP (adjusted HR 4.3; 95% CI 0.9-20.41; P = 0.067) unlike hs-CRP (adjusted HR 1.97; 95% CI 0.48-8.05; P = 0.344). The PESI risk score (c-statistic 0.77 (95% CI 0.69-0.84) had the highest prognostic accuracy for 6-month mortality, outperforming hs-cTnT, NT-proBNP and hs-CRP (c-statistics of 0.72, 0.72, and 0.54), respectively. Combining all three biomarkers had no clinically relevant impact on risk stratification when added to the PESI risk score (IDI = 0.067; 95% CI 0.012-0.123; P = 0.018; NRI = 0.101 95% CI -0.099-0.302; P = 0.321). In elderly patients with PE, 6-month mortality can adequately be predicted by the PESI risk score alone."	"Modelling diastolic dysfunction in induced pluripotent stem cell-derived cardiomyocytes from hypertrophic cardiomyopathy patients. Diastolic dysfunction (DD) is common among hypertrophic cardiomyopathy (HCM) patients, causing major morbidity and mortality. However, its cellular mechanisms are not fully understood, and presently there is no effective treatment. Patient-specific induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) hold great potential for investigating the mechanisms underlying DD in HCM and as a platform for drug discovery. In the present study, beating iPSC-CMs were generated from healthy controls and HCM patients with DD. Micropatterned iPSC-CMs from HCM patients showed impaired diastolic function, as evidenced by prolonged relaxation time, decreased relaxation rate, and shortened diastolic sarcomere length. Ratiometric Ca2+ imaging indicated elevated diastolic [Ca2+]i and abnormal Ca2+ handling in HCM iPSC-CMs, which were exacerbated by β-adrenergic challenge. Combining Ca2+ imaging and traction force microscopy, we observed enhanced myofilament Ca2+ sensitivity (measured as dF/Δ[Ca2+]i) in HCM iPSC-CMs. These results were confirmed with genome-edited isogenic iPSC lines that carry HCM mutations, indicating that cytosolic diastolic Ca2+ overload, slowed [Ca2+]i recycling, and increased myofilament Ca2+ sensitivity, collectively impairing the relaxation of HCM iPSC-CMs. Treatment with partial blockade of Ca2+ or late Na+ current reset diastolic Ca2+ homeostasis, restored diastolic function, and improved long-term survival, suggesting that disturbed Ca2+ signalling is an important cellular pathological mechanism of DD. Further investigation showed increased expression of L-type Ca2+channel (LTCC) and transient receptor potential cation channels (TRPC) in HCM iPSC-CMs compared with control iPSC-CMs, which likely contributed to diastolic [Ca2+]i overload. In summary, this study recapitulated DD in HCM at the single-cell level, and revealed novel cellular mechanisms and potential therapeutic targets of DD using iPSC-CMs."	"Comparative analysis of the DYRK1A-SRSF6-TNNT2 pathway in myocardial tissue from individuals with and without Down syndrome. Down syndrome (trisomy 21) is characterized by genome-wide imbalances that result in a range of phenotypic manifestations. Altered expression of DYRK1A in the trisomic context has been linked to some Down syndrome phenotypes. DYRK1A regulates the splicing of cardiac troponin (TNNT2) through a pathway mediated by the master splicing factor SRSF6. Here, we documented the expression of the DYRK1A-SRSF6-TNNT2 pathway in a collection of myocardial samples from persons with and without Down syndrome. Results suggest that &quot;gene dosage effect&quot; may drive the expression of DYRK1A mRNA but has no effect on DYRK1A protein levels in trisomic myocardium. The levels of phosphorylated DYRK1A-Tyr321 tended to be higher (~35%) in myocardial samples from donors with Down syndrome. The levels of phosphorylated SRSF6 were 2.6-fold higher in trisomic myocardium. In line, the expression of fetal TNNT2 variants was higher in myocardial tissue with trisomy 21. These data provide a representative picture on the extent of inter-individual variation in myocardial DYRK1A-SRSF6-TNNT2 expression in the context of Down syndrome."	"Genetic Variants Are Not Rare in ICD Candidates with Dilated Cardiomyopathy: Time for Next-Generation Sequencing? Sudden cardiac death (SCD) risk stratification in dilated cardiomyopathy (DCM) has been based on left ventricular ejection fraction (LVEF), even though SCD may occur with LVEF &gt; 35%. Family history of unexplained SCD, especially in the young, raises concern about potential inheritable risk factors. It remains largely unknown how genetic tests can be integrated into clinical practice, particularly in the selection of implantable cardioverter defibrillator (ICD) candidates. We aimed to assess the diagnostic yield of genetic testing in DCM patients with a class I recommendation for ICD implantation, based on current guidelines. We included ambulatory stable adult patients with idiopathic or familial DCM with previously implanted ICD. Molecular analysis included 15 genes (LMNA, MYH7, MYBPC3, TNNT2, ACTC1, TPM1, CSRP3, TCAP, SGCD, PLN, MYL2, MYL3, TNNI3, TAZ, and LDB3) using next-generation sequencing. We evaluated 21 patients, 12 (57%) males and 9 (43%) with familial DCM, including 3 (14%) with a family history of premature unexplained SCD. Mean age at DCM diagnosis was 40 ± 2 years, and mean age at ICD implantation was 50 ± 12 years. LVEF was 27 ± 9%, and LV end-diastolic diameter was 65 ± 7 mm. Genetic variants were found in six (29%) patients, occurring in 5 genes: TPM1, TNNT2, MYH7, PLN, and MYBPC3. The majority were classified as variants of uncertain significance. Family history of SCD was present in both patients with PLN variants. In patients with DCM and ICD, genetic variants could be identified in a significant proportion of patients in several genes, highlighting the potential role of genetics in DCM SCD risk stratification."	"Associations of High-Sensitivity Cardiac Troponin and Natriuretic Peptide With Subsequent Risk of Infection in Persons Without Cardiovascular Disease: The Atherosclerosis Risk in Communities Study. Whether persons without prevalent cardiovascular disease (CVD) but elevated levels of high-sensitivity cardiac troponin T (hs-cTnT) or N-terminal pro-B-type natriuretic peptide (NT-proBNP) are at high risk of infection is unknown. Using 1996-2013 data from the Atherosclerosis Risk in Communities Study, we estimated hazard ratios for incident hospitalization with infection in relation to plasma hs-cTnT and NT-proBNP concentrations among participants without prevalent CVD and contrasted them with hazard ratios for persons with prevalent CVD (coronary heart disease, heart failure, or stroke). In a multivariable Cox model, prevalent CVD was significantly associated with risk of hospitalization with infection (hazard ratio (HR) = 1.31, 95% confidence interval (CI): 1.19, 1.45). Among participants without prevalent CVD, hs-cTnT and NT-proBNP were independently associated with infection risk in a graded fashion (e.g., HR = 1.44 (95% CI: 1.24, 1.69) for hs-cTnT ≥14 ng/L and HR = 1.28 (95% CI: 1.14, 1.44) for hs-cTnT 9-13 ng/L vs. &lt;3 ng/L; HR = 1.57 (95% CI: 1.35, 1.81) for NT-proBNP ≥248.1 pg/mL and HR = 1.19 (95% CI: 1.06, 1.34) for NT-proBNP 137.2-248.0 pg/mL vs. &lt;48.1 pg/mL). The 15-year cumulative incidences of hospitalization with infection were similar for participants with prevalent CVD and participants who did not have prevalent CVD but had hs-cTnT ≥14 ng/L or NT-proBNP ≥248.1 pg/mL. Thus, hs-cTnT and NT-proBNP were independently associated with infection risk. Persons without CVD but with elevated hs-cTnT or NT-proBNP levels should be recognized to have similar infection risks as persons with prevalent CVD."	"Atezolizumab Induced Myocarditis on a Background of Cardiac Amyloidosis. NA"	"Angiotensin II and TGF-β1 Induce Alterations in Human Amniotic Fluid-Derived Mesenchymal Stem Cells Leading to Cardiomyogenic Differentiation Initiation. Human amniotic fluid-derived mesenchymal stem cells (AF-MSCs) may be a valuable source for cardiovascular tissue engineering and cell therapy. The aim of this study is to verify angiotensin II and transforming growth factor-beta 1 (TGF-β1) as potential cardiomyogenic differentiation inducers of AF-MSCs. AF-MSCs were obtained from amniocentesis samples from second-trimester pregnant women, isolated and characterized by the expression of cell surface markers (CD44, CD90, CD105 positive; CD34 negative) and pluripotency genes (OCT4, SOX2, NANOG, REX1). Cardiomyogenic differentiation was induced using different concentrations of angiotensin II and TGF-β1. Successful initiation of differentiation was confirmed by alterations in cell morphology, upregulation of cardiac genes-markers NKX2-5, TBX5, GATA4, MYH6, TNNT2, DES and main cardiac ion channels genes (sodium, calcium, potassium) as determined by RT-qPCR. Western blot and immunofluorescence analysis revealed the increased expression of Connexin43, the main component of gap junctions, and Nkx2.5, the early cardiac transcription factor. Induced AF-MSCs switched their phenotype towards more energetic and started utilizing oxidative phosphorylation more than glycolysis for energy production as assessed using Agilent Seahorse XF analyzer. The immune analysis of chromatin-modifying enzymes DNMT1, HDAC1/2 and Polycomb repressive complex 1 and 2 (PRC1/2) proteins BMI1, EZH2 and SUZ12 as well as of modified histones H3 and H4 indicated global chromatin remodeling during the induced differentiation. Angiotensin II and TGF-β1 are efficient cardiomyogenic inducers of human AF-MSCs; they initiate alterations at the gene and protein expression, metabolic and epigenetic levels in stem cells leading towards cardiomyocyte- like phenotype formation."	"[Role of over-expression of TBX3 and TBX18 in the enrichment and differentiation of human induced pluripotent stem cells into sinoatrial node-like cells]. To explore the role of over-expression of TBX3 and TBX18 in inducing human induced pluripotent stem cells (HiPS) to enrich and differentiate into sinoatrial node-like cells. The expression of stemness markers OCT3/4, SOX2, and NANOG in HiPS was detected by real-time fluorescence quantitative PCR (qRT- PCR), and compared with human embryonic stem cells (hESCs). Immunofluorescence staining was used to observe the expression of HiPS stemness markers OCT3/4, NANOG, SSEA4, and TRA-1-60. The HiPS were directional differentiated into cardiomyocytes, the expressions of ISL1, NK2 homeobox 5 (NKX2-5), ACTN1, and TNNT2 were detected by qRT-PCR, and human adult cardiomyocytes (hACM) were used as positive control. Immunofluorescence staining was used to observe the expressions of NKX2-5, cardiac troponin (cTnT), α-actinin, atria myosin light chain 2A (MLC-2A), and ventricular myosin light chain 2V (MLC-2V). The positive rate of α-actinin was detected by flow cytometry. On the 3rd day after HiPS were differentiated into cardiomyocytes (mesodermal stage), lentiviral over-expressions of sinoatrial node-related genes TBX3 and TBX18 were carried out for 21 days. The relative expressions of specific markers TBX3, TBX18, SHOX2, NKX2-5, HCN4, and HCN1 in sinoatrial node cells were detected by qRT-PCR, and compared with enhanced green fluorescent protein blank virus. OCT3/4, SOX2, and NANOG were highly expressed in HiPS and ESCs, and there was no significant difference in the relative expression of each gene ( P&gt;0.05); OCT3/4 and NANOG were specifically distributed in the nucleus of HiPS, while SSEA4 and TRA-1-60 were distributed in the cell membrane. The relative expressions of ISL1 gene at 5, 7, 21, and 28 days and NKX2-5 gene at 7, 21, and 28 days of HiPS differentiation into cardiomyocytes were significantly higher than those of hACM ( P&lt;0.05), and the relative expressions of ACTN1 and TNNT2 genes at 3, 5, 7, and 21 days of HiPS differentiation into cardiomyocytes were significantly lower than those of hACM ( P&lt;0.05). NKX2-5 was expressed in most of the nuclei, cTnT and α-actinin, MLC-2A and MLC-2V signals were localized in the cytoplasm, presenting a texture-like structure of muscle nodules. Flow cytometry results showed that HiPS was successfully induced to differentiate into cardiomyocytes. The expressions of TBX18, SHOX2, HCN4, and HCN1 in the over-expression TBX3 group were up-regulated when compared with the control group, and difference in the relative expression of SHOX2 gene was significant ( P&lt;0.05); the relative expression of NKX2-5 gene was lower than that in the control group, but there was no significant difference ( P&gt;0.05). There was no significant difference in the relative expression of each gene between the over-expressed TBX18 group and the control group ( P&gt;0.05). HiPS and hESCs have similar pluripotency, and we have established a stable method for maintaining and culturing the stemness of HiPS. A technological platform for the efficient differentiation of HiPS into cardiomyocytes has been successfully established. Although TBX3 and TBX18 do not play a significant role in promoting the enrichment and differentiation of HiPS into sinoatrial node-like cells, TBX3 shows a certain promoting trend, which can be further explored in the future. 探索过表达 TBX3、TBX18 在人源诱导多能干细胞(human induced pluripotent stem cells,HiPS)向窦房结样细胞富集分化的作用。. 取 HiPS,采用实时荧光定量 PCR(real-time fluorescence quantitative PCR,qRT-PCR)检测其干性标记物 OCT3/4、SOX2、NANOG 表达,并与人胚胎干细胞(human embryonic stem cells,hESCs)比较;免疫荧光染色观察 HiPS 干性标记物 OCT3/4、NANOG、SSEA4 和 TRA-1-60 表达。将 HiPS 向心肌细胞定向分化,qRT-PCR 检测心肌前体细胞特异性基因 ISL1、NKX2-5(NK2 homeobox 5)以及心肌细胞特异标记物 ACTN1、TNNT2 表达,以成人心肌细胞(human adult cardiomyocytes,hACM)作为阳性对照;免疫荧光染色观察心肌前体细胞特异核转录因子 NKX2-5,心肌细胞特异性收缩蛋白肌球蛋白(cardiac troponin,cTnT)、α-辅肌动蛋白(α-actinin),以及心房肌球蛋白轻链(myosin light chain 2A,MLC-2A)和心室肌球蛋白轻链(myosin light chain 2V,MLC-2V)表达;流式细胞术检测 α-actinin 阳性率。在 HiPS 向心肌细胞定向分化第 3 天(中胚层阶段),以慢病毒方式过表达窦房结相关基因 TBX3、TBX18,继续培养至 21 d,采用 qRT-PCR 检测窦房结细胞特异性标记物 TBX3、TBX18、SHOX2、NKX2-5、HCN4、HCN1 相对表达量,以增强绿色荧光蛋白空白病毒为对照。. OCT3/4、SOX2、NANOG 在 HiPS 和 ESCs 中均高表达,各基因相对表达量比较差异无统计学意义( P&gt;0.05);OCT3/4 和 NANOG 在 HiPS 中特异分布于细胞核中,SSEA4 和 TRA-1-60 分布于细胞膜上。HiPS 向心肌细胞分化 5、7、21、28 d 时 ISL1 基因以及分化 7、21、28 d 时 NKX2-5 基因相对表达量均显著高于 hACM( P&lt;0.05),分化 3、5、7、21 d ACTN1 和 TNNT2 基因相对表达量均显著低于 hACM( P&lt;0.05)。NKX2-5 在绝大部分细胞核中表达;cTnT 和 α-actinin,MLC-2A 和 MLC-2V 信号定位于细胞质中,并初步呈现出肌小结纹理样结构。流式细胞术检测示 HiPS 向心肌细胞诱导分化成功。过表达 TBX3 组中,TBX18、SHOX2、HCN4、HCN1 较对照组表达均有上调,且 SHOX2 基因相对表达量差异有统计学意义( P&lt;0.05);NKX2-5 基因相对表达量虽低于对照组,但差异无统计学意义( P&gt;0.05)。过表达 TBX18 组中,各基因相对表达量与对照组比较差异均无统计学意义( P&gt;0.05)。. HiPS 和 hESCs 的多能性相近,建立了稳定的 HiPS 干性维持及培养方法;成功建立 HiPS 向心肌细胞高效分化技术平台;尽管 TBX3、TBX18 在 HiPS 向窦房结样细胞富集分化中的促进作用不显著,但 TBX3 呈现出一定促进趋势,未来可进一步探索。."	"Clinical and genetic insights into non-compaction: a meta-analysis and systematic review on 7598 individuals. Left ventricular non-compaction has been increasingly diagnosed in recent years. However, it is still debated whether non-compaction is a pathological condition or a physiological trait. In this meta-analysis and systematic review, we compare studies, which investigated these two different perspectives. Furthermore, we provide a comprehensive overview on the clinical outcome as well as genetic background of left ventricular non-compaction cardiomyopathy in adult patients. We retrieved PubMed/Medline literatures in English language from 2000 to 19/09/2018 on clinical outcome and genotype of patients with non-compaction. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Altogether, 35 studies with 2271 non-compaction patients were included in our meta-analysis. The mean age at diagnosis was the mid of their fifth decade. Two-thirds of patients were male. Congenital heart diseases including atrial or ventricular septum defect or Ebstein anomaly were reported in 7% of patients. Twenty-four percent presented with family history of cardiomyopathy. The mean frequency of neuromuscular diseases was 5%. Heart rhythm abnormalities were reported frequently: conduction disease in 26%, supraventricular tachycardia in 17%, and sustained or non-sustained ventricular tachycardia in 18% of patients. Three important outcome measures were reported including systemic thromboembolic events with a mean frequency of 9%, heart transplantation with 4%, and adequate ICD therapy with 15%. Nine studies investigated the genetics of non-compaction cardiomyopathy. The most frequently mutated gene was TTN with a pooled frequency of 11%. The average frequency of MYH7 mutations was 9%, for MYBPC3 mutations 5%, and for CASQ2 and LDB3 3% each. TPM1, MIB1, ACTC1, and LMNA mutations had an average frequency of 2% each. Mutations in PLN, HCN4, TAZ, DTNA, TNNT2, and RBM20 were reported with a frequency of 1% each. We also summarized the results of eight studies investigating the non-compaction in altogether 5327 athletes, pregnant women, patients with sickle cell disease, as well as individuals from population-based cohorts, in which the presence of left ventricular hypertrabeculation ranged from 1.3 to 37%. The summarized data indicate that non-compaction may lead to unfavorable outcome in different cardiomyopathy entities. The presence of key features in a multimodal diagnostic approach could distinguish between benign morphological trait and manifest cardiomyopathy."	"Advances in the Genetic Basis and Pathogenesis of Sarcomere Cardiomyopathies. Hypertrophic cardiomyopathy (HCM) and dilated cardiomyopathy (DCM) are common heart muscle disorders that are caused by pathogenic variants in sarcomere protein genes. HCM is characterized by unexplained cardiac hypertrophy (increased chamber wall thickness) that is accompanied by enhanced cardiac contractility and impaired relaxation. DCM is defined as increased ventricular chamber volume with contractile impairment. In this review, we discuss recent analyses that provide new insights into the molecular mechanisms that cause these conditions. HCM studies have uncovered the critical importance of conformational changes that occur during relaxation and enable energy conservation, which are frequently disturbed by HCM mutations. DCM studies have demonstrated the considerable prevalence of truncating variants in titin and have discerned that these variants reduce contractile function by impairing sarcomerogenesis. These new pathophysiologic mechanisms open exciting opportunities to identify new pharmacological targets and develop future cardioprotective strategies."	"A case report of recessive restrictive cardiomyopathy caused by a novel mutation in cardiac troponin I (TNNI3). Restrictive cardiomyopathy is a rare cardiac disease, for which several genes including TNNT2, MYPN, FLNC and TNNI3 have been associated with its familial form. Here we describe a female proband with a severely manifested restrictive phenotype leading to heart transplantation at the age of 41, who was found homozygous for the novel TNNI3 mutation: NM_000363.4:c.586G &gt; C, p.(Asp196His). Her parents were third-degree cousins originating from a small village and although they were found heterozygous for the same variant they displayed no symptoms of the disease. Her older sister who was also found heterozygous was asymptomatic. Her twin sister and her brother who were homozygous for the same variant displayed a restrictive and a hypertrophic phenotype, respectively. Their children are all carriers of the mutation and remain asymptomatic until the age of 21. These observations point to a recessive mode of inheritance reported for the first time for this combination of gene/disease."	"Cancer Survivorship and Subclinical Myocardial Damage. Cancer survivors might have an excess risk of cardiovascular disease (CVD) resulting from toxicities of cancer therapies and a high burden of CVD risk factors. We sought to evaluate the association of cancer survivorship with subclinical myocardial damage, as assessed by elevated high-sensitivity cardiac troponin T (hs-cTnT) test results. We included 3,512 participants of the Atherosclerosis Risk in Communities Study who attended visit 5 (2011-2013) and were free of CVD (coronary heart disease, heart failure, or stroke). We used multivariate logistic regression to evaluate the cross-sectional associations of survivorship from any, non-sex-related, and sex-related cancers (e.g., breast, prostate) with elevated hs-cTnT (≥14 ng/L). Of 3,512 participants (mean age, 76 years; 62% women; 21% black), 19% were cancer survivors. Cancer survivors had significantly higher odds of elevated hs-cTnT (OR = 1.26, 95% CI: 1.03, 1.53). Results were similar for survivors of non-sex-related and colorectal cancers, but there was no association between survivorship from breast and prostate cancers and elevated hs-cTnT. Results were similar after additional adjustments for CVD risk factors. Survivors of some cancers might be more likely to have elevated hs-cTnT than persons without prior cancer. The excess burden of subclinical myocardial damage in this population might not be fully explained by traditional CVD risk factors."	"mTOR inhibitor sirolimus negatively impacts in vitro fertilization outcomes. NA"	"Cardioprotective effects of omega-3 fatty acids and ascorbic acid improve regenerative capacity of embryonic stem cell-derived cardiac lineage cells. One of the major issues in cell therapy of myocardial infarction (MI) is early death of engrafted cells in a harsh oxidative stress environment, which limits the potential therapeutic utility of this strategy in the clinical setting. Increasing evidence implicates beneficial effects of omega-3 fatty acids including eicosapentaenoic acid (EPA) and docosahexaenoic acid (DHA) and ascorbic acid (AA) in cardiovascular diseases, in particular their role in ameliorating fibrosis. In the current study, we aim to assess the cytoprotective role of EPA + DHA and AA in protecting embryonic stem cell (ESC)-derived cardiac lineage cells and amelioration of fibrosis. Herein, we have shown that preincubation of the cells with EPA + DHA + AA prior to H2 O2 treatment attenuated generation of reactive oxygen species (ROS) and enhanced cell viability. Gene expression analysis revealed that preincubation with EPA + DHA + AA followed by H2 O2 treatment, upregulated heme oxygenase-1 (HO-1) along with cardiac markers (GATA4, myosin heavy chain, α isoform [MYH6]), connexin 43 [CX43]) and attenuated oxidative stress-induced upregulation of fibroblast markers (vimentin and collagen type 1 [Col1]). Alterations in gene expression patterns were followed by marked elevation of cardiac troponin (TNNT2) positive cells and reduced numbers of vimentin positive cells. An injection of EPA + DHA + AA-pretreated ESC-derived cardiac lineage cells into the ischemic myocardium of a rat model of MI significantly reduced fibrosis compared to the vehicle group. This study provided evidence that EPA + DHA + AA may be an appropriate preincubation regimen for regenerative purposes. © 2019 BioFactors, 45(3):427-438, 2019."	"Molecular characterization of Portuguese patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a disease of the heart muscle characterized by ventricular dilatation and impaired systolic function. Familial forms account for 30-50% of cases. Autosomal dominant inheritance is the predominant pattern of transmission. Causal genetic variants have been identified in several genes and molecular diagnosis has implications for genetic counseling and risk stratification. We aimed to estimate the frequency of genetic variants and the molecular basis of DCM in Portugal. We performed a multicenter study of unrelated patients, recruited between 2013 and 2014. Variants in 15 genes were screened using PCR with direct sequencing (next-generation sequencing with at least 30-fold coverage combined with Sanger sequencing). A total of 107 patients were included, 64 (60%) men, mean age at diagnosis 38±13 years, with 48 (45%) familial cases. In total, 31 rare variants in eight genes (mainly in MYBPC3, TNNT2 and LMNA) were identified, in 28 patients (26%). Only four variants had been previously described in association with DCM, 11 with hypertrophic cardiomyopathy, and nine variants were novel. Four variants were likely pathogenic and the remainder were of uncertain significance. We found no major differences in the main clinical and imaging characteristics between patients with or without rare variants and patients with likely pathogenic variants. Our results reflect the complexity and diversity of DCM genetics. For better interpretation of the pathogenicity of the variants found and their causative roles in DCM, molecular cascade screening of families is imperative. Further insight into genotype-phenotype correlations and risk stratification is desirable."	"Population and Single-Cell Analysis of Human Cardiogenesis Reveals Unique LGR5 Ventricular Progenitors in Embryonic Outflow Tract. The morphogenetic process of mammalian cardiac development is complex and highly regulated spatiotemporally by multipotent cardiac stem/progenitor cells (CPCs). Mouse studies have been informative for understanding mammalian cardiogenesis; however, similar insights have been poorly established in humans. Here, we report comprehensive gene expression profiles of human cardiac derivatives from multipotent CPCs to intermediates and mature cardiac cells by population and single-cell RNA-seq using human embryonic stem cell-derived and embryonic/fetal heart-derived cardiac cells micro-dissected from specific heart compartments. Importantly, we discover a uniquely human subset of cono-ventricular region-specific CPCs, marked by LGR5. At 4 to 5 weeks of fetal age, the LGR5<sup>+</sup> population appears to emerge specifically in the proximal outflow tract of human embryonic hearts and thereafter promotes cardiac development and alignment through expansion of the ISL1<sup>+</sup>TNNT2<sup>+</sup> intermediates. The current study contributes to a deeper understanding of human cardiogenesis, which may uncover the putative origins of certain human congenital cardiac malformations."	"Myocardial injury in transient global amnesia: a case-control study. Elevation of cardiac troponin (cTn), a sensitive biomarker of myocardial injury, is frequently observed in severe acute neurological disorders. Case reports suggest that cardiac dysfunction may also occur in patients with transient global amnesia (TGA). Until now, no study has systematically assessed this phenomenon. We performed a case-control study using data of consecutive patients presenting with TGA from 2010 to 2015. Multiple logistic regression analysis accounting for age, sex and cardiovascular risk factors was performed to compare the likelihood of myocardial injury [defined as elevation of cTn &gt; 99th percentile (≥14 ng/L); highly sensitive cardiac troponin T assay] in TGA with three reference groups: migraine with aura, vestibular neuritis and transient ischaemic attack (TIA). Cardiac troponin elevation occurred in 28 (25%) of 113 patients with TGA. Patients with TGA with cTn elevation were significantly older, more likely to be female and had higher blood pressure on admission compared with those without. The likelihood of myocardial injury following TGA was at least more than twofold higher compared with all three reference groups [adjusted odds ratio, 5.5; 95% confidence interval (CI), 1.2-26.4, compared with migraine with aura; adjusted odds ratio, 2.2; 95% CI, 1.2-4.4, compared with vestibular neuritis; adjusted odds ratio, 2.3; 95% CI, 1.3-4.2, compared with TIA]. One out of four patients with TGA had evidence of myocardial injury as assessed by highly sensitive cTn assays. The likelihood of myocardial injury associated with TGA was even higher than in TIA patients with a more pronounced cardiovascular risk profile. Our findings suggest the presence of a TGA-related disturbance of brain-heart interaction that deserves further investigation."	"Evaluating the Clinical Validity of Hypertrophic Cardiomyopathy Genes. Genetic testing for families with hypertrophic cardiomyopathy (HCM) provides a significant opportunity to improve care. Recent trends to increase gene panel sizes often mean variants in genes with questionable association are reported to patients. Classification of HCM genes and variants is critical, as misclassification can lead to genetic misdiagnosis. We show the validity of previously reported HCM genes using an established method for evaluating gene-disease associations. A systematic approach was used to assess the validity of reported gene-disease associations, including associations with isolated HCM and syndromes including left ventricular hypertrophy. Genes were categorized as having definitive, strong, moderate, limited, or no evidence of disease causation. We also reviewed current variant classifications for HCM in ClinVar, a publicly available variant resource. Fifty-seven genes were selected for curation based on their frequent inclusion in HCM testing and prior association reports. Of 33 HCM genes, only 8 (24%) were categorized as definitive ( MYBPC3, MYH7, TNNT2, TNNI3, TPM1, ACTC1, MYL2, and MYL3); 3 had moderate evidence ( CSRP3, TNNC1, and JPH2; 33%); and 22 (66%) had limited (n=16) or no evidence (n=6). There were 12 of 24 syndromic genes definitively associated with isolated left ventricular hypertrophy. Of 4191 HCM variants in ClinVar, 31% were in genes with limited or no evidence of disease association. The majority of genes previously reported as causative of HCM and commonly included in diagnostic tests have limited or no evidence of disease association. Systematically curated HCM genes are essential to guide appropriate reporting of variants and ensure the best possible outcomes for HCM families."	"DNA methyltransferases inhibitors effectively induce gene expression changes suggestive of cardiomyogenic differentiation of human amniotic fluid-derived mesenchymal stem cells via chromatin remodeling. Human amniotic fluid-derived mesenchymal stem cells (AF-MSCs) are a new potential stem cell source for cell therapy and regenerative medicine. These are fetal mesenchymal stem cells with multilineage differentiation potential found in amniotic fluid. The aim of the present study was to evaluate in vitro differentiation initiation of AF-MSCs into cardiac progenitors upon application of inhibitors of DNA methyltransferases (DNMT), such as Decitabine (DEC; 5-aza-2'-deoxycytidine) and Zebularine (ZEB). We assessed epigenetic changes and explored patterns of genes, enriched in association with hyperacetylated H4 after induced differentiation. Upregulation of cardiomyogenesis-related genes (TNNT2, MYH6, ACTN2, and DES) and cardiac ion channels genes, downregulation of pluripotency genes markers as well as increase in Connexin43 expression indicated cardiomyogenic commitment. Evaluation of global epigenetic changes showed that levels of chromatin modifying enzymes, such as Polycomb repressive complex 2 proteins (EZH2, SUZ12), DNMT1, histone deacetylases 1 and 2 were reduced to the similar extent by both differentiation agents. Levels of specific histone marks keeping active state of chromatin (H3K4me3, H3K9Ac, and H4hyperAc) increased and marks of repressed chromatin state (H3K27me3 and H3K9me3) decreased after DEC or ZEB treatment. Chip-Seq analysis after chromatin immunoprecipitation with H4hyperAc demonstrated enrichment of around 100 functionally annotated genes, related to chromatin reorganization and cardiomyogenesis and confirmed relation between H4 hyperacetylation and gene expression. Our results demonstrate that both DEC and ZEB can be potentially used as cardiomyogenic differentiation inducers in AF-MSCs, and they cause various genetic and epigenetic changes resulting in global chromatin remodeling."	"Binary Colloidal Crystals Drive Spheroid Formation and Accelerate Maturation of Human-Induced Pluripotent Stem Cell-Derived Cardiomyocytes. The development of human-induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) provides significant advances to cell therapy, disease modeling, and drug screening applications. However, the current differentiation protocol is inefficient in mimicking biophysical and biochemical characteristics of cardiac niche. Hence, immature cardiomyocytes are often generated. In this study, hiPSC-CMs were generated on a new family of substrates called monolayer binary colloidal crystals (BCCs). Four BCCs were fabricated with different sizes (2 or 5 or 0.4 or 0.2 μm) and materials [Si or polystyrene (PS) or poly(methyl methacrylate)] abbreviated as 2PS, 5PS, 2PM, and 5PM. BCCs have complex surface micro-/nanotopographies and heterogeneous chemistries which are important modulators in microenvironments in vitro. The results showed that hiPSCs formed adhered spheroids with strong pluripotent markers ( Oct4, Nanog, and Sox2) on PM surfaces compared to PS and flat surfaces. After 30-day differentiation, hiPSC-CMs on PM surfaces showed markedly improved myofibril ultrastructures, Ca<sup>2+</sup> handling, and electrophysiological properties, indicating that more mature hiPSC-CMs were generated. hiPSC-CMs generated on 5PM are more similar to adult heart tissue compared to other surfaces in terms of genes ( ACTC1, TNNT2, RYR2, SERCA2a, SCN5a, KCNJ2, CACNA1c, ITGB1, GJA1, MYH6, and MYH7) and protein (ssTnI and cTnI) expressions. We further demonstrated that 5PM surfaces facilitated cadherin switching (from E- to N-) during cardiac differentiation and mature N-cadherin expression, which were positively correlated with the cardiogensis markers ( GATA4, MEF2c, and NKX2.5). This study illuminated that a tailored surface nanotopography was beneficial in hiPSC culture and in situ cardiac differentiation. This one-step approach and BCCs can be a next-generation tool for hiPSC expansion and CM differentiation."	"Role of internal convection in respiratory gas transfer and aerobic metabolism in larval zebrafish ( Danio rerio). Purely diffusive O2 transport typically is insufficient to sustain aerobic metabolism in most multicellular organisms. In animals that are small enough, however, a high surface-to-volume ratio may allow passive diffusion alone to supply sufficient O2 transfer. The purpose of this study was to explore the impacts of internal convection on respiratory gas transfer in a small complex organism, the larval zebrafish ( Danio rerio). Specifically, we tested the hypothesis that internal convection is required for the normal transfer of the respiratory gases O2 and CO2 and maintenance of resting aerobic metabolic rate in larvae at 4 days postfertilization (dpf). Morpholino knockdown of the vascular endothelial growth factor (VEGF) or cardiac troponin T (TNNT2) proteins allowed an examination of gas transfer in two independent models lacking internal convection. With the use of a scanning micro-optrode technique to measure regional epithelial O2 fluxes ( Jo2), it was demonstrated that larvae lacking convection exhibited reduced Jo2 in regions spanning the head to the trunk. Moreover, the acute loss of internal convection caused by heart stoppage resulted in reduced rates of cutaneous Jo2, an effect that was reversed upon the restoration of internal convection. With the use of whole body respirometry, it was shown that loss of internal convection was associated with reduced resting rates of O2 consumption and CO2 excretion in larvae at 4 dpf. The results of these experiments clearly demonstrate that internal convection is required to maintain resting rates of respiratory gas transfer in larval zebrafish."	"Myocardial Notch1-Rbpj deletion does not affect NOTCH signaling, heart development or function. During vertebrate cardiac development NOTCH signaling activity in the endocardium is essential for the crosstalk between endocardium and myocardium that initiates ventricular trabeculation and valve primordium formation. This crosstalk leads later to the maturation and compaction of the ventricular chambers and the morphogenesis of the cardiac valves, and its alteration may lead to disease. Although endocardial NOTCH signaling has been shown to be crucial for heart development, its physiological role in the myocardium has not been clearly established. Here we have used mouse genetics to evaluate the role of NOTCH in myocardial development. We have inactivated the unique and ubiquitous NOTCH effector RBPJ in early cardiomyocytes progenitors, and examined its consequences in cardiac development and function. Our results show that mice with Tnnt2-Cre-mediated myocardial-specific deletion of Rbpj develop to term, with homozygous mutant animals showing normal expression of cardiac development markers, and normal adult heart function. Similar observations have been obtained after Notch1 deletion with Tnnt2-Cre. We have also deleted Rbpj in both myocardial and endocardial progenitor cells, using the Nkx2.5-Cre driver, resulting in ventricular septal defect (VSD), double outlet right ventricle (DORV), and bicuspid aortic valve (BAV), due to NOTCH signaling abrogation in the endocardium of cardiac valves. Our data demonstrate that NOTCH-RBPJ inactivation in the myocardium does not affect heart development or adult cardiac function."	"The homozygous K280N troponin T mutation alters cross-bridge kinetics and energetics in human HCM. Hypertrophic cardiomyopathy (HCM) is a genetic form of left ventricular hypertrophy, primarily caused by mutations in sarcomere proteins. The cardiac remodeling that occurs as the disease develops can mask the pathogenic impact of the mutation. Here, to discriminate between mutation-induced and disease-related changes in myofilament function, we investigate the pathogenic mechanisms underlying HCM in a patient carrying a homozygous mutation (K280N) in the cardiac troponin T gene (TNNT2), which results in 100% mutant cardiac troponin T. We examine sarcomere mechanics and energetics in K280N-isolated myofibrils and demembranated muscle strips, before and after replacement of the endogenous troponin. We also compare these data to those of control preparations from donor hearts, aortic stenosis patients (LVHao), and HCM patients negative for sarcomeric protein mutations (HCMsmn). The rate constant of tension generation following maximal Ca<sup>2+</sup> activation (kACT) and the rate constant of isometric relaxation (slow kREL) are markedly faster in K280N myofibrils than in all control groups. Simultaneous measurements of maximal isometric ATPase activity and Ca<sup>2+</sup>-activated tension in demembranated muscle strips also demonstrate that the energy cost of tension generation is higher in the K280N than in all controls. Replacement of mutant protein by exchange with wild-type troponin in the K280N preparations reduces kACT, slow kREL, and tension cost close to control values. In donor myofibrils and HCMsmn demembranated strips, replacement of endogenous troponin with troponin containing the K280N mutant increases kACT, slow kREL, and tension cost. The K280N TNNT2 mutation directly alters the apparent cross-bridge kinetics and impairs sarcomere energetics. This result supports the hypothesis that inefficient ATP utilization by myofilaments plays a central role in the pathogenesis of the disease."	"Functional Annotation of TNNT2 Variants of Uncertain Significance With Genome-Edited Cardiomyocytes. NA"	"Genetic characterization and genotype-phenotype associations in a large cohort of patients with hypertrophic cardiomyopathy - An ancillary study of the Portuguese registry of hypertrophic cardiomyopathy. We present an ancillary study of the Portuguese Registry of Hypertrophic Cardiomyopathy (PRo-HCM). This is one of the largest HCM genetic studies based on a registry. Collected genetic variants were re-analysed for pathogenicity. Demographic, clinical, imaging and outcome data were analysed for associations with genotype, focusing on comparisons between patients with (G+) vs without (G-) a pathogenic/likely pathogenic (P/LP) variant in one the 9 main causal sarcomeric genes. From the 1042 patients in the registry, 528 (51%) had genetic testing. 152 (28%) were G+ and 98 pts. (19%) had variants of unknown significance. From the patients with the 9 mentioned genes sequenced (424 pts), 14.6% had P/LP variants in MYBPC3, 8.7% MYH7, 4.5% TNNT2, 1.7% TNNI3. Patients were 51 ± 16 years-old, 59% males. Genotype was associated with the following: birthplace (p = 0.005); age (p &lt; 0.001); family history of HCM (p &lt; 0.0005); hypertension (p &lt; 0.0005); chest pain (p = 0.015); pattern of hypertrophy (p = 0.006); left ventricular hypertrophy on the ECG (p &lt; 0.0005); family history of sudden cardiac death (SCD) (p = 0.002). G+ patients more frequently had more than one risk factor for SCD (p = 0.002) and a higher ESC-SCD risk score (p = 0.003). In survival analysis, G+ was associated with SCD (p = 0.017) and MYH7+ with LV systolic dysfunction (p = 0.038). Half of the registry patients had genetic testing. Sarcomere-positive patients had distinct demographics, ECG, imaging characteristics and family history and are at increased risk of SCD. The presence of a MYH7 mutation was associated with evolution towards LV systolic dysfunction."	"Transcriptome and DNA Methylome Dynamics during Triclosan-Induced Cardiomyocyte Differentiation Toxicity. Cardiac development is a dynamic process and sensitive to environmental chemicals. Triclosan is widely used as an antibacterial agent and reported to transport across the placenta and affect embryonic development. Here, we used human embryonic stem cell- (hESC-) derived cardiomyocytes (CMs) to determine the effects of TCS exposure on cardiac development. After TCS treatment, the differentiation process was significantly blocked and spontaneous beating rates of CMs were also decreased. Transcriptome analysis showed the dysregulation of genes involved in cardiogenesis, including GATA4 and TNNT2. Additionally, DNA methylation was also altered by TCS exposure, especially in those regions with GATA motif enrichment. These alterations of transcriptome and DNA methylation were all associated with signaling pathways integral to heart development. Our findings indicate that TCS exposure might cause cardiomyocyte differentiation toxicity and provide the new insights into how environmental factors regulate DNA methylation and gene expressions during heart development."	"Epigenetic and metabolic alterations in human amniotic fluid stem cells induced to cardiomyogenic differentiation by DNA methyltransferases and p53 inhibitors. Human amniotic fluid-derived mesenchymal stem cells (AF-MSCs) may be a valuable source for cell therapy and regenerative medicine. In this study, the potential of DNA methyltransferases (DNMT) inhibitors Decitabine, Zebularine, RG108 alone or combined with Zebularine and p53 inhibitor Pifithrin-α to induce cardiomyogenic differentiation of AF-MSCs was investigated. Differentiation into cardiomyocyte-like cells initiation was indicated with all agents by changes in the cell phenotype, upregulation of the relative expression of the main cardiac genes (NKX2-5, TNNT2, MYH6, and DES) as well as of cardiac ion channels genes (sodium, calcium, and potassium) as determined by reverse-transcription quantitative polymerase chain reaction and the increase in Connexin43 levels as detected from Western blot and immunofluorescence data. Cellular energetics and mitochondrial function in induced cells were assessed using Seahorse analyzer and revealed the initiation of AF-MSCs metabolic transformation into cardiomyocyte-like cells. All used inducers were nontoxic to AF-MSCs, arrested cell cycle at the G0/G1 phase, and upregulated p53 and p21 expression. The relative expression of miR-34a and miR-145 that are related to cell cycle regulation was also observed. Furthermore, the evaluated levels of chromatin remodeling proteins enhancer of zeste homolog 2, suppressor of zeste 12 protein homolog, DNMT1, histone deacetylase 1 (HDAC1), HDAC2, and heterochromatin protein 1α, as well as the rate of activating histone modifications, exhibited rearrangements of chromatin after the induction of cardiomyogenic differentiation. In conclusion, we demonstrated that all explored DNMT and p53 inhibitors initiated cardiomyogenesis-related alterations in AF-MSCs through rather similar mechanisms but to a different extent providing useful insights for the future research and potential applications of AF-MSCs."	"Retinal Vasculature Reactivity During Flicker Light Provocation, Cardiac Stress and Stroke Risk in Africans: The SABPA Study. Structural and functional similarities exist between the retinal, cerebral and, as previously suggested, the coronary microvasculature. Retinal microvascular structure and functionality (in response to flicker-light-induced-provocation (FLIP)) may relate to coronary artery disease risk and possible stroke risk. We investigated associations between retinal vessel structure, functionality and cardiac stress markers (cardiac troponin T [cTnT], amino-terminal B-type natriuretic peptide [NT-proBNP]) to translate these retina-heart relationships to stroke risk. We included 317 African and Caucasian teachers' (aged 23-68 years), who participated in the Sympathetic Activity and Ambulatory Blood Pressure in Africans (SABPA) study. Fasting plasma and serum samples for cTnT and NT-proBNP were collected. Retinal vascular calibres were quantified from fundus images and dynamic retinal vessel calibre responses during FLIP. The University of California stroke risk score was applied to assess sub-clinical 10-year stroke risk. cTnT levels were similar in Africans and Caucasians, whereas NT-proBNP levels were lower in Africans. In Africans, a reduced arteriolar calibre and attenuated arteriolar dilation during FLIP was associated with higher cTnT (p &lt; 0.01). Their larger retinal-venular calibre (p &lt; 0.02) and attenuated arteriolar dilation during FLIP (p &lt; 0.05) were associated with lower NT-proBNP. Again, exclusively in Africans, increased cardiac stress, wider venular calibres and retinal arteriovenous nicking predicted an increased 10-year stroke risk with odds ratios of 1.57 (95% CI, 1.34; 1.68, p = 0.031), 1.51 (95% CI, 1.26; 1.59, p = 0.002), 1.10 (95% CI, 0.94; 2.85, p = 0.002) and 1.06 (95% CI 0.83; 1.56, p = 0.052), respectively. None of these associations were evident in the Caucasian group. Investigating the retinal vasculature may serve as a tool to approximate sub-clinical coronary and cerebral microvasculature damage or dysfunction. These cardiac stress-retinal associations additionally predicted a greater stroke risk in the SABPA African cohort. Observable changes in the retinal vasculature may serve as markers for the identification and prediction of cardio-systemic and cerebral vascular morbidities and risks, thereby establishing a brain-heart link. Graphical Abstract Proposed series of events during which sustained high pressure and increased cardiac stress may alter retinal reactivity and link to increased stroke risk."	"The acute effect of training fire exercises on fire service instructors. Fire service instructors (FSI) regularly experience different types of fire exercises, however the strain experienced from these scenarios is not well understood. This study aims to identify the physiological and perceptual strain of Fire Service Instructors (FSI) to three training exercises: DEMO, ATTACK, COMPARTMENT, and the different roles performed: SETTER, INSTRUCTOR. The study also aims to assess the effect that different exercise patterns over a day (BOX, MULTI, COMBINATION) have on immunological responses. Sixteen FSI (age: 41 ± 8 years, body mass: 83.7 ± 6.7 kg, height: 177.0 ± 6.7 cm) were recruited, with 10 FSI completing the three exercises. Physiological and perceptual measures were collected prior to and immediately post each exercise. Venous blood samples were collected at the beginning and end of each day. One-way analysis of variance (ANOVA) were conducted to assess differences in physiological variables between exercise types, independent samples t-tests were conducted between roles. Day changes in hematological variables were assessed by paired sample t-tests and analyzed by one-way ANOVAs to identify differences between exercise patterns. The COMPARTMENT exercise resulted in a greater change in rectal temperature (ΔTre) (0.49 ± 0.28 °C) than both the DEMO (0.23 ± 0.19 °C, p = 0.045) and ATTACK (0.27 ± 0.22 °C, p = 0.016). Within the COMPARTMENT exercise, the SETTER resulted in a greater ΔTre and rating of perceived exertion than the INSTRUCTOR (0.67 ± 0.29 °C vs. 0.43 ± 0.18 °C, p = 0.027 and 14 ± 2 vs. 11 ± 2, p = 0.001, respectively). Following a day of fire exercises white blood cells (WBC), neutrophils, lymphocytes (LYMPH), monocytes (MONO), platelets (PLT), mean platelet volume (MPV), Interleukin (IL)-6, and cardiac troponin T (cTnT) all increased (p &lt; 0.05). Exercise patterns containing a COMPARTMENT exercise resulted in greater PLT, MPV, and IL-6. Total daily variation in ΔTre was correlated with post-exercise WBC, MONO, and LYMPH. COMPARTMENT exercises produce the greatest physiological strain, with the SETTER role within this exercise causing the greatest ΔTre. Although predominately physiological responses remain within safe limits. Exercise patterns that include a COMPARTMENT exercise also generate a greater inflammatory response."	"Cardiac Troponin T Risk Stratification Model Predicts All-Cause Mortality Following Kidney Transplant. We evaluated the role of increased cardiac troponin T (cTnT), vascular, and cardiac diseases in predicting 5 and 10-year all-cause mortality after kidney transplantation. We reviewed a cohort of 764 kidney transplant recipients and analyzed pertinent cardiovascular risk factors at the time of transplant evaluation. Proportional hazards regression analysis with bootstrapping method was utilized to provide a risk stratification score for mortality. Mean age was 58.8 years (SD 12.1) and median follow-up was 7.0 years (range 1 day to 18.0 years). Fifty-four percent of patients (n = 415) had cTnT measured (median 0.02 ng/mL, range 0.01-4.91). Fifty-three percent (n = 407) had vascular disease, 59% (n = 448) had diabetes, and 44% (n = 336) had cardiac disease pre-transplant. Sixty percent (n = 460) required dialysis. Older age, increased cTnT, pre-transplant vascular and cardiac diseases predicted mortality in multivariate analysis. We derived 2 scoring systems with and without cTnT - the ACV and ACTV scores (age, cardiac disease, elevated cTnT, and vascular disease) - as predictors of mortality after kidney transplant. Point assignments were: age 60-69 years (1), age ≥70 years (2), cardiac disease (1), cTnT ≥0.04 ng/mL (1), and vascular disease (1). Both scoring systems significantly predicted mortality. The ACTV score better delineated risk stratification across score levels (0-2, 3-4, and 5 points). We developed a risk schema predictive of all-cause mortality after kidney transplant in a derivation cohort. The ACTV score, including an elevated cTnT, provided superior prediction compared to a scoring system without cTnT. Further studies to validate these findings are needed."	"Telomere shortening is a hallmark of genetic cardiomyopathies. This study demonstrates that significantly shortened telomeres are a hallmark of cardiomyocytes (CMs) from individuals with end-stage hypertrophic cardiomyopathy (HCM) or dilated cardiomyopathy (DCM) as a result of heritable defects in cardiac proteins critical to contractile function. Positioned at the ends of chromosomes, telomeres are DNA repeats that serve as protective caps that shorten with each cell division, a marker of aging. CMs are a known exception in which telomeres remain relatively stable throughout life in healthy individuals. We found that, relative to healthy controls, telomeres are significantly shorter in CMs of genetic HCM and DCM patient tissues harboring pathogenic mutations: TNNI3, MYBPC3, MYH7, DMD, TNNT2, and TTN Quantitative FISH (Q-FISH) of single cells revealed that telomeres were significantly reduced by 26% in HCM and 40% in DCM patient CMs in fixed tissue sections compared with CMs from age- and sex-matched healthy controls. In the cardiac tissues of the same patients, telomere shortening was not evident in vascular smooth muscle cells that do not express or require the contractile proteins, an important control. Telomere shortening was recapitulated in DCM and HCM CMs differentiated from patient-derived human-induced pluripotent stem cells (hiPSCs) measured by two independent assays. This study reveals telomere shortening as a hallmark of genetic HCM and DCM and demonstrates that this shortening can be modeled in vitro by using the hiPSC platform, enabling drug discovery."	"Detection of Variants in Patients with Idiopathic Ventricular Fibrillation by Whole-exome Sequencing. Idiopathic ventricular fibrillation (IVF) is a cause of sudden cardiac death (SCD). The frequency of mutations in disease-causing genes ranges, on average, between 16 and 48% in SCD cases. This study aimed to identify novel mutations in IVF patients without KCNQ1, KCNH2, and SCN5A mutations using whole-exome sequencing (WES). Genomic DNA extracted from peripheral blood samples obtained from five patients with IVF and WES was used to identify mutations associated with IVF. Candidate variants were validated by Sanger sequencing. Four patients harbored suspected mutations in 100 inherited cardiomyopathy-and channelopathy-associated genes (e.g., TCAP, TTN, MYPN, CACNA1C, and TNNT2). All of these genetic variants have been given a dbSNP rs number; however, their clinical significance remains unknown. Bioinformatics tools predicted severe functional disruptions in the loci harboring these suspected mutations, suggesting their pivotal roles in IVF. This study revealed the effectiveness of WES for IVF patients without KCNQ1, KCNH2, and SCN5A mutations. Although it is difficult to interpret broad WES results, the analysis can provide insight into the etiology of a heterogeneous disease."	"Cardiovascular progenitor cells cultured aboard the International Space Station exhibit altered developmental and functional properties. The heart and its cellular components are profoundly altered by missions to space and injury on Earth. Further research, however, is needed to characterize and address the molecular substrates of such changes. For this reason, neonatal and adult human cardiovascular progenitor cells (CPCs) were cultured aboard the International Space Station. Upon return to Earth, we measured changes in the expression of microRNAs and of genes related to mechanotransduction, cardiogenesis, cell cycling, DNA repair, and paracrine signaling. We additionally assessed endothelial-like tube formation, cell cycling, and migratory capacity of CPCs. Changes in microRNA expression were predicted to target extracellular matrix interactions and Hippo signaling in both neonatal and adult CPCs. Genes related to mechanotransduction (YAP1, RHOA) were downregulated, while the expression of cytoskeletal genes (VIM, NES, DES, LMNB2, LMNA), non-canonical Wnt ligands (WNT5A, WNT9A), and Wnt/calcium signaling molecules (PLCG1, PRKCA) was significantly elevated in neonatal CPCs. Increased mesendodermal gene expression along with decreased expression of mesodermal derivative markers (TNNT2, VWF, and RUNX2), reduced readiness to form endothelial-like tubes, and elevated expression of Bmp and Tbx genes, were observed in neonatal CPCs. Both neonatal and adult CPCs exhibited increased expression of DNA repair genes and paracrine factors, which was supported by enhanced migration. While spaceflight affects cytoskeletal organization and migration in neonatal and adult CPCs, only neonatal CPCs experienced increased expression of early developmental markers and an enhanced proliferative potential. Efforts to recapitulate the effects of spaceflight on Earth by regulating processes described herein may be a promising avenue for cardiac repair."	"First identification of homozygous truncating CSRP3 variants in two unrelated cases with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiovascular disease with an estimated prevalence of 1/500. More than 40 genes have been reported to cause HCM. Among them, CSRP3 is usually included on HCM gene panels used for molecular diagnosis by next-generation sequencing (NGS). To provide new insights into the pathophysiology of hypertrophic cardiomyopathy, a NGS workflow based on a panel of 48 cardiomyopathies-causing genes was analyzed on a cohort of 542 HCM patients. As expected, this molecular approach led to identify most pathogenic or likely pathogenic variants into prevalent HCM-causing genes: MYBPC3 (123/542; 22.7%), MYH7 (48/542; 8.9%), TNNT2 (12/542; 2.2%), and TNNI3 (10/542; 1.8%). Among MYBPC3 variants, 96 led to a premature stop codon (78%). More surprisingly, our molecular study led also to detect, for the first time, homozygous CSRP3 truncating variants in two unrelated HCM probands. Meta-analysis of rare previously reported CSRP3 variants on HCM probands using ACMG guidelines indicate that only one variation (p.Cys58Gly) could be considered as likely pathogen. By combining meta-analysis results and identification of two unrelated HCM patients with homozygous CSRP3 truncating variants, we suggest that the association of CSRP3 as a validated HCM-causing gene require additional studies and those CSRP3 variants could result in HCM with an autosomal recessive inheritance rather than with an autosomal dominant transmission as usually reported on HCM (OMIM 612124)."	"A novel source of arterial valve cells linked to bicuspid aortic valve without raphe in mice. Abnormalities of the arterial valve leaflets, predominantly bicuspid aortic valve, are the commonest congenital malformations. Although many studies have investigated the development of the arterial valves, it has been assumed that, as with the atrioventricular valves, endocardial to mesenchymal transition (EndMT) is the predominant mechanism. We show that arterial is distinctly different from atrioventricular valve formation. Whilst the four septal valve leaflets are dominated by NCC and EndMT-derived cells, the intercalated leaflets differentiate directly from Tnnt2-Cre+/Isl1+ progenitors in the outflow wall, via a Notch-Jag dependent mechanism. Further, when this novel group of progenitors are disrupted, development of the intercalated leaflets is disrupted, resulting in leaflet dysplasia and bicuspid valves without raphe, most commonly affecting the aortic valve. This study thus overturns the dogma that heart valves are formed principally by EndMT, identifies a new source of valve interstitial cells, and provides a novel mechanism for causation of bicuspid aortic valves without raphe."	"Intercalated cushion cells within the cardiac outflow tract are derived from the myocardial troponin T type 2 (Tnnt2) Cre lineage. The origin of the intercalated cushions that develop into the anterior cusp of the pulmonary valve (PV) and the noncoronary cusp of the aortic valve (AV) is not well understood. Cre transgenes in combination with the Rosa TdTomato-EGFP reporter were used to generate three-dimensional lineage mapping of AV and PV cusps during intercalated cushion development. Tie2-Cre;EGFP was used to mark endothelial-derived mesenchymal cells, Wnt1-Cre;EGFP for cardiac neural crest and cardiac Troponin T (Tnnt2)Cre;EGFP, for myocardial lineage. The highest percentage of intercalated cushion cells at embryonic day (E) 12.5 was Tnnt2-Cre; EGFP positive; 68.0% for the PV and 50.0% AV. Neither Tnnt2 mRNA nor Tnnt2-Cre protein was expressed in the intercalated cushions; and the Tnnt2-Cre lineage intercalated cushion cells were also positive for the mesenchymal markers Sox9 and versican. Tnnt2-Cre lineage was present within the forming intercalated cushions from E11.5 and was present in the intercalated cushion derived PV and AV cusps and localized to the fibrosa layer at postnatal day 0. Intercalated cushions of the developing outflow tract are populated with Tnnt2-Cre derived cells, a Cre reporter previously used for tracing and excision of myocardial cells and not previously associated with mesenchymal cells. Developmental Dynamics 247:1005-1017, 2018. © 2018 Wiley Periodicals, Inc."	"Genetic background of Japanese patients with pediatric hypertrophic and restrictive cardiomyopathy. Hypertrophic cardiomyopathy (HCM) and restrictive cardiomyopathy (RCM) present a high risk for sudden cardiac death in pediatric patients. The aim of this study was to identify disease-associated genetic variants in Japanese patients with pediatric HCM and RCM. We analyzed 67 cardiomyopathy-associated genes in 46 HCM and 7 RCM patients diagnosed before 16 years of age using a next-generation sequencing system. We found that 78% of HCM and 71% of RCM patients carried disease-associated genetic variants. Disease-associated genetic variants were identified in 80% of HCM patients with a family history and in 77% of HCM patients with no apparent family history (NFH). MYH7 and/or MYBPC3 variants comprised 76% of HCM-associated variants, whereas troponin complex-encoding genes comprised 75% of the RCM-associated variants. In addition, 91% of HCM patients with implantable cardioverter-defibrillators and infant cases had NFH, and the 88% of HCM patients carrying disease-associated genetic variants were males who carried MYH7 or MYBPC3 variants. Moreover, two disease-associated LAMP2, one DES and one FHOD3 variants, were identified in HCM patients. In this study, pediatric HCM and RCM patients were found to carry disease-associated genetic variants at a high rate. Most of the variants were in MYH7 or MYPBC3 for HCM and TNNT2 or TNNI3 for RCM."	"Comparative effectiveness of three-dimensional scaffold, differentiation media and co-culture with native cardiomyocytes to trigger in vitro cardiogenic differentiation of menstrual blood and bone marrow stem cells. The main purpose of this study was to find effectiveness of 3D silk fibroin scaffold in comparison with co-culturing in presence of native cardiomyocytes on cardiac differentiation propensity of menstural blood(MenSCs)-versus bone marrow-derived stem-cells (BMSCs). We showed that both 3D fibroin scaffold and co-culture system supported efficient cardiomyogenic differentiation of MenSCs and BMSCs, as judged by the expression of cardiac-specific genes and proteins, Connexin-43, Connexin-40, alpha Actinin (ACTN-2), Tropomyosin1 (TPM1) and Cardiac Troponin T (TNNT2). No significant difference (except for higher expression of ACTN-2 in co-cultured MenSCs) was found between differentiation potential of the cells cultured in 3D fibroin scaffold and co-culture system. Collectively, our results imply that inductive signals served by biological factors of native cardiomyocytes to trigger cardiogenic differentiation of stem-cells may be efficiently provided by natural and biocompatible 3D fibroin scaffold suggesting the usefulness of this construct for cardiac tissue engineering."	"The developmental effects of low-level procymidone towards zebrafish embryos and involved mechanism. Procymidone (PCM), a dicarboximide fungicide, is widely used in agriculture to control plant diseases. In the present study, zebrafish embryos were exposed to PCM at 0, 10, 100 and 1000 ng/L for 72 h, the development and cardiac functioning of larvae were observed and determined. The results showed that hatching rate was significantly decreased in the 1000 ng/L treatment, and pericardial edema rate and spine curvature rate were significantly increased in the 100 and 1000 ng/L groups. The PCM-treated larvae exhibited an increased heart rate as well as arrhythmia, and shortened low jaw. The transcription levels of cardiac development-related genes tbx5, nkx2.5, tnnt2, gata4, myh6, myl7, cdh2, ryr2 were altered, which might be responsible for the cardiac developmental and functioning defects in the larvae. The deformation in bone development might be related with the impaired transcription levels of ihh, shh, bmp2b, bmp4, gh, igf1, sox9, gli2. The activities of Na<sup>+</sup>/K<sup>+</sup>-ATPase and Ca<sup>2+</sup>-ATPase were significantly inhibited by 100 ng/L and 1000 ng/L PCM exposure, which might be a cause for the occurrence of pericardial edema and skeletal deformation. The results of this study will be helpful in evaluating the potential threat of PCM to fish population in the aquatic environment."	"Fenbuconazole exposure impacts the development of zebrafish embryos. Fenbuconazole (FBZ), a triazole-containing fungicide, is widely used in agriculture and horticulture. In the present study, the development and cardiac functioning were observed and determined in zebrafish embryos exposed to FBZ at 5, 50 and 500 ng/L nominal concentrations for 72 h. The results showed that 500 ng/L FBZ significantly increased pericardial edema rate, spine curvature rate, disturbed cardiac function, and led a shortened lower jaw. The transcription of genes such as tbx5, nkx2.5, tnnt2, gata4, bmp2b, myl7 was altered, which might be responsible for the cardiac developmental and functioning defects in the larvae. The deformation in bone development might be related with the impaired transcription levels of shh and bmp2b. The transcription of cyp26a1 (encoding retinoic acid metabolism enzyme) was significantly up-regulated in the 500 ng/L group, which might be a reason causing the teratogenic effect of FBZ. These results suggest that FBZ could have toxic effects on embryonic development, which should be considered in the risk evaluation of FBZ application."	"Identification of sarcomeric variants in probands with a clinical diagnosis of arrhythmogenic right ventricular cardiomyopathy (ARVC). Arrhythmogenic right ventricular cardiomyopathy (ARVC) is an inherited cardiomyopathy characterized by ventricular arrhythmias and sudden death. Currently 60% of patients meeting Task Force Criteria (TFC) have an identifiable mutation in one of the desmosomal genes. As much overlap is described between other cardiomyopathies and ARVC, we examined the prevalence of rare, possibly pathogenic sarcomere variants in the ARVC population. One hundred and thirty-seven (137) individuals meeting 2010 TFC for a diagnosis of ARVC, negative for pathogenic desmosomal variants, TMEM43, SCN5A, and PLN were screened for variants in the sarcomere genes (ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNC1, TNNI3, TNNT2, and TPM1) through either clinical or research genetic testing. Six probands (6/137, 4%) were found to carry rare variants in the sarcomere genes. These variants have low prevalence in controls, are predicted damaging by Polyphen-2, and some of the variants are known pathogenic hypertrophic cardiomyopathy mutations. Sarcomere variant carriers had a phenotype that did not differ significantly from desmosomal mutation carriers. As most of these probands were the only affected individuals in their families, however, segregation data are noninformative. These data show variants in the sarcomere can be identified in individuals with an ARVC phenotype. Although rare and predicted damaging, proven functional and segregational evidence that these variants can cause ARVC is lacking. Therefore, caution is warranted in interpreting these variants when identified on large next-generation sequencing panels for cardiomyopathies."	"Cyclic biaxial tensile strain promotes bone marrow-derived mesenchymal stem cells to differentiate into cardiomyocyte-like cells by miRNA-27a. A physical stimuli, it has been reported that cyclic tensile strain can promote bone marrow-derived mesenchymal stem cells (BMSCs) to differentiate into cardiomyocytes, but the underlying mechanisms have been poorly elucidated so far. Here, we used a mimicking loading strain, cyclic biaxial tensile strain (CBTS), and found it can promote BMSCs to differentiate into cardiomyocytes. When the CBTS were loaded, the cells expressed cardiac-specific markers GATA4, TNNT2, MEF-2c, and Cx43, meanwhile we found miR-27a decreased and stem cell factor (SCF) increased. When we overexpressed miR-27a, the cardiac-specific markers were down-regulated; we got the same results when SCF was knocked down by siRNA. Interestingly, we found SCF is a potential target of miR-27a by a bioinformatic analysis. So, we overexpressed miR-27a, and found SCF decreased both in mRNA and protein level. And, When miR-27a was co-transfected with SCF-3'UTR, it significantly reduced the luciferase activity, but not when co-transfected with SCF-3'UTR mutation plasmid. Furthermore, after transfected both miR-27a and SCF siRNA, and the protein expression of the markers were more down-regulated than that of single of them. Taken together, we found CBTS can promote BMSCs to differentiate into cardiomyocytes, and miR-27a functions as a mechano-sensitive miRNA in this process by targeting SCF."	"Congenital left ventricular aneurysms and diverticula: an entity in search of an identity. Congenital left ventricular aneurysm or diverticulum are rare cardiac malformations described in 809 cases since the first description in 1816, being associated with other cardiac, vascular or thoraco-abdominal abnormalities in about 70%. It appears to be a developmental anomaly, starting in the 4<sup>th</sup> embryonic week. In an experimental study, targeted knockdown of cardiac troponin T in the chick was performed at day 3, after the heart tube has formed. Morpholino treatment of gene TNNT2 at this stage led to the development of left ventricular diverticula (LVD) in the primitive left ventricular wall. Diagnosis of left ventricular aneurysms (LVA)/LVD can be made after exclusion of coronary artery disease, local or systemic inflammation or traumatic causes as well as cardiomyopathies. Clinically, most of LVA and LVD are asymptomatic or may cause systemic embolization, congestive heart failure, valvular regurgitation, ventricular wall rupture, ventricular tachycardia or sudden cardiac death. Diagnosis is established by imaging studies (echocardiography, magnetic resonance imaging or left ventricular angiography) visualizing the structural changes and accompanying abnormalities. Mode of treatment has to be individually tailored and depends on clinical presentation, accompanying abnormalities and possible complications, options include surgical resection (especially in symptomatic patients), anticoagulation after systemic embolization, radiofrequency ablation or implantation of an implantable cardioverter defibrillator (ICD) in case of symptomatic ventricular tachycardias, and occasionally combined with class I- or III-antiarrhythmic drugs. Cardiac death occurs usually in childhood, is significantly more frequent in LVA patients and caused by congestive heart failure in most of the cases, whereas patients diagnosed with LVD died more frequently from rupture of the LVD."	"Familial Hypertrophic Cardiomyopathy - Identification of cause and risk stratification through exome sequencing. Hypertrophic Cardiomyopathy (HCM) with variable clinical presentations and heterogeneity is the common cause of sudden cardiac death. Genetic diagnosis is challenging in these complex diseases but exome sequencing as a genetic diagnostic tool provides explainable results. In a familial Hypertrophic Cardiomyopathy with multigenerational inheritance with apparent phenotype, had a history of sudden death and severe arrhythmia followed by implantation of Implantable cardioverter defibrillator (ICD). Exome sequencing (100×) trailed by effective filtering steps for exome variants on the basis of different parameters, segregated variants are prioritized for the disease and further clinical relevance are evaluated for the variants. A rare causal variant in troponin-T gene (TNNT2, NM_000364.3;c.274C &gt; T;p.Arg92Trp) is identified, shared by only affected members, absent in unaffected members and also in 200 unrelated control chromosomes. TNNT2 mutation act as a driver mutation but mutations in other disease-related genes, KCNMB1, LPL, APOE and other biochemical factors provides risk stratification within affected family members. This study contributes to the role of &quot;rare variants&quot; in complex disease phenotypes and heterogeneity within family and the necessity of whole exome targeted approaches in complex cardiomyopathy, which are known to harbor private mutations."	"Screening for candidate genes related with histological microstructure, meat quality and carcass characteristic in pig based on RNA-seq data. The aim of the present study was to identify genetic variants based on RNA-seq data, obtained via transcriptome sequencing of muscle tissue of pigs differing in muscle histological structure, and to verify the variants' effect on histological microstructure and production traits in a larger pig population. RNA-seq data was used to identify the panel of single nucleotide polymorphisms (SNPs) significantly related with percentage and diameter of each fiber type (I, IIA, IIB). Detected polymorphisms were mapped to quantitative trait loci (QTLs) regions. Next, the association study was performed on 944 animals representing five breeds (Landrace, Large White, Pietrain, Duroc, and native Puławska breed) in order to evaluate the relationship of selected SNPs and histological characteristics, meat quality and carcasses traits. Mapping of detected genetic variants to QTL regions showed that chromosome 14 was the most overrepresented with the identification of four QTLs related to percentage of fiber types I and IIA. The association study performed on a 293 longissimus muscle samples confirmed a significant positive effect of transforming acidic coiled-coil-containing protein 2 (TACC2) polymorphisms on fiber diameter, while SNP within forkhead box O1 (FOXO1) locus was associated with decrease of diameter of fiber types IIA and IIB. Moreover, subsequent general linear model analysis showed significant relationship of FOXO1, delta 4-desaturase, sphingolipid 1 (DEGS1), and troponin T2 (TNNT2) genes with loin 'eye' area, FOXO1 with loin weight, as well as FOXO1 and TACC2 with lean meat percentage. Furthermore, the intramuscular fat content was positively associated (p&lt;0.01) with occurrence of polymorphisms within DEGS1, TNNT2 genes and negatively with occurrence of TACC2 polymorphism. This study's results indicate that the SNP calling analysis based on RNA-seq data can be used to search candidate genes and establish the genetic basis of phenotypic traits. The presented results can be used for future studies evaluating the use of selected SNPs as genetic markers related to muscle histological profile and production traits in pig breeding."	"Diagnostic Yield of Whole Exome Sequencing in Pediatric Dilated Cardiomyopathy. Dilated cardiomyopathy (DCM) is a heritable, genetically heterogeneous disorder characterized by progressive heart failure. DCM typically remains clinically silent until adulthood, yet symptomatic disease can develop in childhood. We sought to identify the genetic basis of pediatric DCM in 15 sporadic and three affected-siblings cases, comprised of 21 affected children (mean age, five years) whose parents had normal echocardiograms (mean age, 39 years). Twelve underwent cardiac transplantation and five died with severe heart failure. Parent-offspring whole exome sequencing (WES) data were filtered for rare, deleterious, de novo and recessive variants. In prior work, we reported de novo mutations in TNNT2 and RRAGC and compound heterozygous mutations in ALMS1 and TAF1A among four cases in our cohort. Here, de novo mutations in established DCM genes-RBM20, LMNA, TNNT2, and PRDM16-were identified among five additional cases. The RBM20 mutation was previously reported in familial DCM. An identical unreported LMNA mutation was identified in two unrelated cases, both harboring gene-specific defects in cardiomyocyte nuclear morphology. Collectively, WES had a 50% diagnostic yield in our cohort, providing an explanation for pediatric heart failure and enabling informed family planning. Research is ongoing to discover novel DCM genes among the remaining families."	"DanHong injection targets endothelin receptor type B and angiotensin II receptor type 1 in protection against cardiac hypertrophy. Cardiac hypertrophy (CH) is an independent risk factor for cardiovascular diseases (CVDs). Mitigating or preventing CH is the most effective strategy for the treatment of CVDs. DanHong injection (DH) is a Chinese herbal medicine preparation (CHMP) widely used in clinical treatment of several CVDs in China. However, the direct targets and cellular mechanisms for these protective effects remain unclear. This study was designed to illustrate the direct targets of DH in protecting against CH and investigate CH molecular pathogenesis. A hypertrophic cell model was induced by endothelin-1 (ET-1) on human induced pluripotent stem cell-derived cardiomyocytes (hiPS-CMs). Real time cellular analysis (RTCA) cardio system and high content analysis (HCA) were used to detect the changes in contractile function, morphology and protein level of hypertrophic hiPS-CMs. Agonist and antagonist assay on receptors were performed using calcium mobilization high-throughput screening (HTS). DH significantly attenuated CH by modulating myocardial contractility, suppressing cell area enlargement and down-regulating ET-1-induced brain natriuretic peptide (BNP), actinin alpha 2 (ACTN2) and cardiac muscle troponin T (TNNT2) protein expression (P &lt; 0.05). Endothelin receptor type B (ETBR) and angiotensin II receptor type 1 (AT1R) were DH direct targets, with IC50 value of 25.67 μL/mL and 1.10 μL/mL, respectively. Proteomics analysis showed that proteins involved in cell cycle inhibition, RNA processing, mitochondrial translation and cytoskeleton are significant regulated by DH treatment. These data revealed that ETBR and AT1R are DH direct targets on protecting against CH, providing a strategy to explore direct targets of CHMPs."	"Ascorbic acid promotes cardiomyogenesis through SMAD1 signaling in differentiating mouse embryonic stem cells. Numerous groups have documented that Ascorbic Acid (AA) promotes cardiomyocyte differentiation from both mouse and human ESCs and iPSCs. AA is now considered indispensable for the routine production of hPSC-cardiomyocytes (CMs) using defined media; however, the mechanisms involved with the inductive process are poorly understood. Using a genetically modified mouse embryonic stem cell (mESC) line containing a dsRED transgene driven by the cardiac-restricted portion of the ncx1 promoter, we show that AA promoted differentiation of mESCs to CMs in a dose- and time-dependent manner. Treatment of mPSCs with AA did not modulate total SMAD content; however, the phosphorylated/active forms of SMAD2 and SMAD1/5/8 were significantly elevated. Co-administration of the SMAD2/3 activator Activin A with AA had no significant effect, but the addition of the nodal co-receptor TDGF1 (Cripto) antagonized AA's cardiomyogenic-promoting ability. AA could also reverse some of the inhibitory effects on cardiomyogenesis of ALK/SMAD2 inhibition by SB431542, a TGFβ pathway inhibitor. Treatment with BMP2 and AA strongly amplified the positive cardiomyogenic effects of SMAD1/5/8 in a dose-dependent manner. AA could not, however, rescue dorsomorphin-mediated inhibition of ALK/SMAD1 activity. Using an inducible model system, we found that SMAD1, but not SMAD2, was essential for AA to promote the formation of TNNT2+-CMs. These data firmly demonstrate that BMP receptor-activated SMADs, preferential to TGFβ receptor-activated SMADs, are necessary to promote AA stimulated cardiomyogenesis. AA-enhanced cardiomyogenesis thus relies on the ability of AA to modulate the ratio of SMAD signaling among the TGFβ-superfamily receptor signaling pathways."	"Significance of High-Sensitivity Troponin T After Elective External Direct Current Cardioversion for Atrial Fibrillation or Atrial Flutter. External transthoracic direct current (DC) cardioversion is a commonly used method of terminating cardiac arrhythmias. Previous research has shown that DC cardioversion resulted in myocardial injury as evidenced by increased levels of cardiac troponin, even though only minimally. Many of these studies were based on the outdated monophasic defibrillators and older, less sensitive troponin assays. This study aimed to assess the effect of external transthoracic DC cardioversion on myocardial injury as measured by the change in the new high-sensitivity cardiac troponin T (hs-cTnT) using the more modern biphasic defibrillators. Patients who were admitted for elective DC cardioversion for atrial fibrillation or atrial flutter were recruited. Hs-cTnT levels were taken before cardioversion and at 6 hours after cardioversion. A total of 120 cardioversions were performed. Median (twenty-fifth to seventy-fifth interquartile range) cumulative energy was 161 J (155 to 532 J). A total of 49 (41%) patients received a cumulative energy of 300 J or higher. The median hs-cTnT level before cardioversion was 7 ng/L (4 to 11 ng/L) and that after cardioversion was 7 ng/L (4 to 10 ng/L). A Wilcoxon signed-rank test showed no significant difference between pre- and post-cardioversion hs-cTnT levels (Z = -0.940, p = 0.347). In conclusion, external DC cardioversion did not result in myocardial injury within the first 6 hours as measured by high-sensitivity troponin T. Patients who are cardioverted and are found to have a significant increase in cardiac troponin after cardioversion should be assessed for causes of myocardial injury and not assumed to have myocardial injury due to the cardioversion itself."	"Efficient generation of transgene- and feeder-free induced pluripotent stem cells from human dental mesenchymal stem cells and their chemically defined differentiation into cardiomyocytes. Advance in stem cell research resulted in several processes to generate induced pluripotent stem cells (iPSCs) from adult somatic cells. In our previous study, the reprogramming of iPSCs from human dental mesenchymal stem cells (MSCs) including SCAP and DPSCs, has been reported. Herein, safe iPSCs were reprogrammed from SCAP and DPSCs using non-integrating RNA virus vector, which is an RNA virus carrying no risk of altering host genome. DPSCs- and SCAP-derived iPSCs exhibited the characteristics of the classical morphology with human embryonic stem cells (hESCs) without integration of foreign genes, indicating the potential of their clinical application. Moreover, induced PSCs showed the capacity of self-renewal and differentiation into cardiac myocytes. We have achieved the differentiation of hiPSCs to cardiomyocytes lineage under serum and feeder-free conditions, using a chemically defined medium CDM3. In CDM3, hiPSCs differentiation is highly generating cardiomyocytes. The results showed this protocol produced contractile sheets of up to 97.2% TNNT2 cardiomyocytes after purification. Furthermore, derived hiPSCs differentiated to mature cells of the three embryonic germ layers in vivo and in vitro of beating cardiomyocytes. The above whole protocol enables the generation of large scale of highly pure cardiomyocytes as needed for cellular therapy."	"High-sensitivity cardiac troponin T in obstructive sleep apnea patients without cardiovascular diseases: Efficacy of CPAP treatment. The aims of this article were to determine the levels of serum high-sensitivity cardiac troponin T (hs-cTnT) in obstructive sleep apnea (OSA) patients without cardiovascular disease (CVD) and to assess the efficacy of continuous positive airway pressure (CPAP). Snorers referred for polysomnography (PSG) for the investigation of OSA were eligible and hs-cTnT levels measured in our pilot study. Hs-cTnT was measured again after 3 months of CPAP treatment in participants with severe OSA. A total of 93 participants recruited after PSG. When compared with simple snoring group, severe OSA group had comparable higher hs-cTnT (7.5 ± 3.0 vs. 5.0 ± 2.1; p &lt; 0.05). Hs-cTnT was positively correlated with apnea hypopnea index, and oxygen desaturation index ( r = 0.283, 0.282; p = 0.006, 0.006, respectively). Hs-cTnT levels were not significantly altered in 28 individuals who received 3 months of CPAP treatment (8.4 ± 2.4 vs.7.6 ± 2.1; p = 0.064). Elevated hs-cTnT levels were observed in severe OSA patients without CVD, and CPAP treatment had no influence on this levels."	"Molecular mechanisms and structural features of cardiomyopathy-causing troponin T mutants in the tropomyosin overlap region. Point mutations in genes encoding sarcomeric proteins are the leading cause of inherited primary cardiomyopathies. Among them are mutations in the TNNT2 gene that encodes cardiac troponin T (TnT). These mutations are clustered in the tropomyosin (Tm) binding region of TnT, TNT1 (residues 80-180). To understand the mechanistic changes caused by pathogenic mutations in the TNT1 region, six hypertrophic cardiomyopathy (HCM) and two dilated cardiomyopathy (DCM) mutants were studied by biochemical approaches. Binding assays in the absence and presence of actin revealed changes in the affinity of some, but not all, TnT mutants for Tm relative to WT TnT. HCM mutants were hypersensitive and DCM mutants were hyposensitive to Ca<sup>2+</sup> in regulated actomyosin ATPase activities. To gain better insight into the disease mechanism, we modeled the structure of TNT1 and its interactions with Tm. The stability predictions made by the model correlated well with the affinity changes observed in vitro of TnT mutants for Tm. The changes in Ca<sup>2+</sup> sensitivity showed a strong correlation with the changes in binding affinity. We suggest the primary reason by which these TNNT2 mutations between residues 92 and 144 cause cardiomyopathy is by changing the affinity of TnT for Tm within the TNT1 region."	"Differential expression of genes in fetal brain as a consequence of maternal protein deficiency and nematode infection. Maternal dietary protein deficiency and gastrointestinal nematode infection during early pregnancy have negative impacts on both maternal placental gene expression and fetal growth in the mouse. Here we used next-generation RNA sequencing to test our hypothesis that maternal protein deficiency and/or nematode infection also alter the expression of genes in the developing fetal brain. Outbred pregnant CD1 mice were used in a 2×2 design with two levels of dietary protein (24% versus 6%) and two levels of infection (repeated sham versus Heligmosomoides bakeri beginning at gestation day 5). Pregnant dams were euthanized on gestation day 18 to harvest the whole fetal brain. Four fetal brains from each treatment group were analyzed using RNA Hi-Seq sequencing and the differential expression of genes was determined by the edgeR package using NetworkAnalyst. In response to maternal H. bakeri infection, 96 genes (88 up-regulated and eight down-regulated) were differentially expressed in the fetal brain. Differentially expressed genes were involved in metabolic processes, developmental processes and the immune system according to the PANTHER classification system. Among the important biological functions identified, several up-regulated genes have known neurological functions including neuro-development (Gdf15, Ing4), neural differentiation (miRNA let-7), synaptic plasticity (via suppression of NF-κβ), neuro-inflammation (S100A8, S100A9) and glucose metabolism (Tnnt1, Atf3). However, in response to maternal protein deficiency, brain-specific serine protease (Prss22) was the only up-regulated gene and only one gene (Dynlt1a) responded to the interaction of maternal nematode infection and protein deficiency. In conclusion, maternal exposure to GI nematode infection from day 5 to 18 of pregnancy may influence developmental programming of the fetal brain."	"MicroRNA-31 promotes adverse cardiac remodeling and dysfunction in ischemic heart disease. Myocardial infarction (MI) triggers a dynamic microRNA response with the potential of yielding therapeutic targets. We aimed to identify novel aberrantly expressed cardiac microRNAs post-MI with potential roles in adverse remodeling in a rat model, and to provide post-ischemic therapeutic inhibition of a candidate pathological microRNA in vivo. Following microRNA array profiling in rat hearts 2 and 14days post-MI, we identified a time-dependent up-regulation of miR-31 compared to sham-operated rats. A progressive increase of miR-31 (up to 91.4±11.3 fold) was detected in the infarcted myocardium by quantitative real-time PCR. Following target prediction analysis, reporter gene assays confirmed that miR-31 targets the 3´UTR of cardiac troponin-T (Tnnt2), E2F transcription factor 6 (E2f6), mineralocorticoid receptor (Nr3c2) and metalloproteinase inhibitor 4 (Timp4) mRNAs. In vitro, hypoxia and oxidative stress up-regulated miR-31 and suppressed target genes in cardiac cell cultures, whereas LNA-based oligonucleotide inhibition of miR-31 (miR-31i) reversed its repressive effect on target mRNAs. Therapeutic post-ischemic administration of miR-31i in rats silenced cardiac miR-31 and enhanced expression of target genes, while preserving cardiac structure and function at 2 and 4weeks post-MI. Left ventricular ejection fraction (EF) improved by 10% (from day 2 to 30 post-MI) in miR-31i-treated rats, whereas controls receiving scrambled LNA inhibitor or placebo incurred a 17% deterioration in EF. miR-31i decreased end-diastolic pressure and infarct size; attenuated interstitial fibrosis in the remote myocardium and enhanced cardiac output. miR-31 induction after MI is deleterious to cardiac function while its therapeutic inhibition in vivo ameliorates cardiac dysfunction and prevents the development of post-ischemic adverse remodeling."	"Clinical outcomes associated with sarcomere mutations in hypertrophic cardiomyopathy: a meta-analysis on 7675 individuals. Hypertrophic cardiomyopathy (HCM) is the most common genetic cardiovascular disease, which goes along with increased risk for sudden cardiac death (SCD). Despite the knowledge about the different causal genes, the relationship between individual genotypes and phenotypes is incomplete. We retrieved PubMed/Medline literatures on genotype-phenotype associations in patients with HCM and mutations in MYBPC3, MYH7, TNNT2, and TNNI3. Altogether, 51 studies with 7675 HCM patients were included in our meta-analysis. The average frequency of mutations in MYBPC3 (20%) and MYH7 (14%) was higher than TNNT2 and TNNI3 (2% each). The mean age of HCM onset for MYH7 mutation positive patients was the beginning of the fourth decade, significantly earlier than patients without sarcomeric mutations. A high male proportion was observed in TNNT2 (69%), MYBPC3 (62%) and mutation negative group (64%). Cardiac conduction disease, ventricular arrhythmia and heart transplantation (HTx) rate were higher in HCM patients with MYH7 mutations in comparison to MYBPC3 (p &lt; 0.05). Furthermore, SCD was significantly higher in patients with sarcomeric mutations (p &lt; 0.01). A pooled dataset and a comprehensive genotype-phenotype analysis show that the age at disease onset of HCM patients with MYH7 is earlier and leads to a more severe phenotype than in patient without such mutations. Furthermore, patients with sarcomeric mutations are more susceptible to SCD. The present study further supports the clinical interpretation of sarcomeric mutations in HCM patients."	"Targeted Genome Replacement via Homology-directed Repair in Non-dividing Cardiomyocytes. Although high-throughput sequencing can elucidate the genetic basis of hereditary cardiomyopathy, direct interventions targeting pathological mutations have not been established. Furthermore, it remains uncertain whether homology-directed repair (HDR) is effective in non-dividing cardiomyocytes. Here, we demonstrate that HDR-mediated genome editing using CRISPR/Cas9 is effective in non-dividing cardiomyocytes. Transduction of adeno-associated virus (AAV) containing sgRNA and repair template into cardiomyocytes constitutively expressing Cas9 efficiently introduced a fluorescent protein to the C-terminus of Myl2. Imaging-based sequential evaluation of endogenously tagged protein revealed that HDR occurs in cardiomyocytes, independently of DNA synthesis. We sought to repair a pathological mutation in Tnnt2 in cardiomyocytes of cardiomyopathy model mice. An sgRNA that avoided the mutated exon minimized deleterious effects on Tnnt2 expression, and AAV-mediated HDR achieved precise genome correction at a frequency of ~12.5%. Thus, targeted genome replacement via HDR is effective in non-dividing cardiomyocytes, and represents a potential therapeutic tool for targeting intractable cardiomyopathy."	"Finding the candidate sequence variants for diagnosis of hypertrophic cardiomyopathy in East Slovak patients. Hypertrophic cardiomyopathy is a heterogeneous myocardial disease. Mutations appearing in several genes might be a potential cause of the disease. The aim of the study was to analyze selected exons of the sarcomeric and non-sarcomeric genes, with the purpose to identify potential candidate genetic variants and to understand etiopathogenetic mechanisms of hypertrophic cardiomyopathy in East Slovak patients. This study recruited 23 unrelated patients with hypertrophic cardiomyopathy, namely, 13 men and 10 women (mean age of 58.09±15.82 years) and 25 healthy controls in order to determine the candidate sequence variants, in the selected exons of six cardiomyopathy genes (MYBPC3, MYH7, NEBL, SCN5A, TNNI3, TNNT2), by conventional capillary-based Sanger sequencing method and standard protocols. Molecular genetic results confirmed the presence of 43 sequence variants in the selected exons of six cardiomyopathy genes, 58.14% of detected variants were novel. The majority of detected sequence variants were confirmed within exon 23 of MYH7 gene. Only 11 genetic alterations were predicted to be potentially pathogenic. In our study, we identified known and novel sequence variants in 23 unrelated patients with hypertrophic cardiomyopathy, but we did not observe any strong mutation hotspot. The results of our study assumed that exon 23 of MYH7 gene can be in potential affinity to hypertrophic cardiomyopathy in our cohort of patients. The sequence variants identified in this study may be further investigated in order to determine their functions in disease pathogenesis and improve management, diagnosis, and treatment in Slovak patients."	"Human Embryonic Stem Cell-Derived Cardiomyocytes Self-Arrange with Areas of Different Subtypes During Differentiation. The derivation of functional cardiomyocytes (CMs) from human embryonic stem cells (hESCs) represents a unique way of studying human cardiogenesis, including the development of CM subtypes. In this study, we investigated the development and organization of hESC-derived cardiomyocytes (hESC-CMs) and examined how the expression levels of CM subtypes correspond to human in vivo cardiogenesis. Beating clusters were used to determine cardiac differentiation, which was evaluated by the expression of cardiac genes GATA4 and TNNT2 and subcellular localization of GATA4 and NKX2.5. Sharp electrode recordings to determine action potentials (APs) further revealed spatial organization of intracluster CM subtypes (ie, complex clusters). Nodal-, atrial-, and ventricular-like AP morphologies were detected within distinct regions of complex clusters. The ability of different CM subtypes to self-organize was documented by immunohistochemical analyses and a differential spatial expression of β-III tubulin, myosin light chain 2v (MLC-2V), and α-smooth muscle actin (α-SMA). Furthermore, all hESC-CM subtypes formed expressed primary cilia, which are known to coordinate cellular signaling pathways during cardiomyogenesis and heart development. This study expands the foundation for studying regulatory pathways for spatial and temporal CM differentiation during human cardiogenesis."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Pathogenesis of Hypertrophic Cardiomyopathy is Mutation Rather Than Disease Specific: A Comparison of the Cardiac Troponin T E163R and R92Q Mouse Models. In cardiomyocytes from patients with hypertrophic cardiomyopathy, mechanical dysfunction and arrhythmogenicity are caused by mutation-driven changes in myofilament function combined with excitation-contraction (E-C) coupling abnormalities related to adverse remodeling. Whether myofilament or E-C coupling alterations are more relevant in disease development is unknown. Here, we aim to investigate whether the relative roles of myofilament dysfunction and E-C coupling remodeling in determining the hypertrophic cardiomyopathy phenotype are mutation specific. Two hypertrophic cardiomyopathy mouse models carrying the R92Q and the E163R TNNT2 mutations were investigated. Echocardiography showed left ventricular hypertrophy, enhanced contractility, and diastolic dysfunction in both models; however, these phenotypes were more pronounced in the R92Q mice. Both E163R and R92Q trabeculae showed prolonged twitch relaxation and increased occurrence of premature beats. In E163R ventricular myofibrils or skinned trabeculae, relaxation following Ca<sup>2+</sup> removal was prolonged; resting tension and resting ATPase were higher; and isometric ATPase at maximal Ca<sup>2+</sup> activation, the energy cost of tension generation, and myofilament Ca<sup>2+</sup> sensitivity were increased compared with that in wild-type mice. No sarcomeric changes were observed in R92Q versus wild-type mice, except for a large increase in myofilament Ca<sup>2+</sup> sensitivity. In R92Q myocardium, we found a blunted response to inotropic interventions, slower decay of Ca<sup>2+</sup> transients, reduced SERCA function, and increased Ca<sup>2+</sup>/calmodulin kinase II activity. Contrarily, secondary alterations of E-C coupling and signaling were minimal in E163R myocardium. In E163R models, mutation-driven myofilament abnormalities directly cause myocardial dysfunction. In R92Q, diastolic dysfunction and arrhythmogenicity are mediated by profound cardiomyocyte signaling and E-C coupling changes. Similar hypertrophic cardiomyopathy phenotypes can be generated through different pathways, implying different strategies for a precision medicine approach to treatment."	"Novel Genetic Variants in BAG3 and TNNT2 in a Swedish Family with a History of Dilated Cardiomyopathy and Sudden Cardiac Death. Familial dilated cardiomyopathy is a rare cause of dilated cardiomyopathy (DCM), especially in childhood. Our aim was to describe the clinical course and the genetic variants in a family where the proband was a four-month-old infant presenting with respiratory problems due to DCM. In the family, there was a strong family history of DCM and sudden cardiac death in four generations. DNA was analyzed initially from the deceased girl using next-generation sequencing including 50 genes involved in cardiomyopathy. A cascade family screening was performed in the family after identification of the TNNT2 and the BAG3 variants in the proband. The first-degree relatives underwent clinical examination including biochemistry panel, cardiac ultrasound, Holter ECG, exercise stress test, and targeted genetic testing. The index patient presented with advanced DCM. After a severe clinical course, the baby had external left ventricular assist as a bridge to heart transplantation. 1.5 months after transplantation, the baby suffered sudden cardiac death (SCD) despite maximal treatment in the pediatric intensive care unit. The patient was shown to carry two heterozygous genetic variants in the TNNT2 gene [TNNT2 c.518G&gt;A(p.Arg173Gln)] and BAG3 [BAG3 c.785C&gt;T(p.Ala262Val)]. Two of the screened individuals (two females) appeared to carry both the familial variants. All the individuals carrying the TNNT2 variant presented with DCM, the two adult patients had mild or moderate symptoms of heart failure and reported palpitations but no syncope or presyncopal attacks prior to the genetic diagnosis. The female carriers of TNNT2 and BAG3 variants had more advanced DCM. In the family history, there were three additional cases of SCD due to DCM, diagnosed by autopsy, but no genetic analysis was possible in these cases. Our findings suggest that the variants in TNNT2 and BAG3 are associated with a high propensity to life-threatening cardiomyopathy presenting from childhood and young adulthood."	"A multiplex PCR strategy to screen for known mutations in families with sudden cardiac death burden. Ventricular tachyarrythmia occurring in ischemic heart disease, dilated/hypertrophic cardiomyopathies or rare monogenic mutations of cardiac ion channels or associated proteins belong to the most frequent causes of sudden cardiac death (SCD). In further decades, next generation sequencing and bioinformatic analysis will become the gold standard of SCD risk stratification. At the moment, Sanger-sequencing is still obligatory in genetic diagnosis. A multiplex polymerase chain reaction (PCR) assay detecting eight SCD mutations in one reaction-tube was developed. To test the general validity of the assay, it was used with 12 patients, who had one or two of the eight mutations (LMNA, p.V256V; SCN5A, p.R1583C; RYR2, p.G1885E; MYH7, V606M; DSG2, p.T335A; KCNJ8, p.S422L; MYBPC, p.E441K; TNNT2, A38V). Thereafter, we tested the multiplex assay in a real diagnostic environment within a high risk family of several past SCD cases. This method allows efficient discrimination of multiple mutations by allele-specific PCR with standard PCR conditions. It relies on obtaining a PCR product specific to the mutation or wildtype-using primers that have the 3'end base complementary to the DNA template site, i.e. a specific primer only permits amplification to take place when its 3'terminal nucleotide matches with its target sequence. The PCR products are further analyzed by length, with Tape Station<sup>®</sup>(Agilent Technologies, Germany), a high-fidelity capillary chromatography test. The novel multiplex PCR assay strategy could be a good additional test used for SCD risk stratification. Advantages of the test are high velocity and ease of implementation, low price and flexibility of application within cardiomyopathy families for screening purposes."	"Digenic inheritance of mutations in the cardiac troponin (TNNT2) and cardiac beta myosin heavy chain (MYH7) as the cause of severe dilated cardiomyopathy. Familial dilated cardiomyopathy (DCM) is characterized by ventricular dilation and depressed myocardial performance. It is a genetically heterogeneous disorder associated with mutations in over 60 genes. We carried out whole exome sequencing in combination with cardiomyopathy-related gene-filtering on two affected family members to identify the possible causative mutation in a consanguineous Iranian family with DCM. Two novel variants in cardiomyopathy-related genes were identified: c.247 A &gt; C; p.N83H in the Troponin T Type 2 gene (TNNT2) and c.2863G &gt; A; p.D955N in the Myosin Heavy Polypeptide 7 gene (MYH7). Sanger sequencing and co-segregation analysis in the remaining family members supported the coexistence of these digenic mutations in affected members of the family. Carriers of either variant alone were asymptomatic. In summary, we find that digenic inheritance of two novel variants in DCM related genes is associated with a severe form of DCM. Exome sequencing has been shown to be very useful in identifying pathogenic mutations in cardiomyopathy families, and this report emphasizes the importance of comprehensive screening of DCM related genes, even after the identification of a single disease-causing mutation."	"[Generation of tnnt2a knock-out zebrafish via CRISPR/Cas9 and phenotypic analysis]. Cardiac troponin T (cTnT) serves as a structural protein of myocardial fiber, and participates in heart excitation-contraction coupling process. Here, we generated tnnt2a (cTnT-coding gene) deletion mutant zebrafish via CRISPR/Cas9 technique, and performed phenotypic analysis of the identified tnnt2a mutants. We observed that there was no significant difference between heterozygous mutant and wild type zebrafish, and the homozygous mutants displayed significant malformations in heart, including cardiac arrest, atrium and ventricle enlargement, pericardium effusion, and the individuals usually died before 7 day post fertilization (dpf). We further analyzed the expression alternations of heart sarcomere genes (tnnt2a, actc1a, tpm4a, myl7, vmhc) at transcriptional level in tnnt2a<sup>-/-</sup>(Δ2) zebrafish by performing real time RT-PCR, and found that the RNA expression level of tnnt2a in tnnt2a<sup>-/-</sup> zebrafish decreased constantly at each time point of developmental stages, and actc1a, tpm4a, myl7 and vmhc all showed higher expressions at early developmental stages and lower expressions at late developmental stages, in comparison with those of wild type zebrafish. Lastly, electron microscopy on cardiac tissues suggested that there were significant changes of the thick or thin filament structures in tnnt2a<sup>-/-</sup>(Δ2) zebrafish, which was further confirmed by F-actin and Tpm4 immunofluorescence staining. The tnnt2a<sup>-/-</sup> zebrafish generated by CRISPR/Cas9 bears the most common symptoms of patients with dilated cardiomyopathy, and therefore can be used as a tool to study TNNT2-deficiency related cardiomyopathy."	"Identification of active components in Yixinshu Capsule with protective effects against myocardial dysfunction on human induced pluripotent stem cell-derived cardiomyocytes by an integrative approach. Traditional Chinese medicine (TCM) preparations have significant effects on some refractory diseases; however, these compositions are complex and their mechanisms are unknown. Identification of the active components in these preparations is essential. The mortality rate for heart failure (HF) has been increasing in recent years, and myocardial dysfunction (MD) has been proved to be the pathological basis of HF. Yixinshu Capsule (YXSC) is a multi-component oral drug with therapeutic effects on HF. However, the key active components are still unclear. In this study, YXSC intestinal absorption liquid (IAL) was used and 62 compounds were identified by an analytical chemistry approach. Then, a compound - target - function network was established with a bioinformatics analysis tool. Finally, a cell model of MD on human-induced pluripotent stem cell-derived cardiomyocytes (hiPS-CMs) was used to verify the therapeutic effects of the active components of YXSC. Schisandrin A (Sch A) and schisandrin B (Sch B) were demonstrated to be the active components of YXSC by attenuating endothelin-1 (ET-1)-induced contraction dysfunction, brain natriuretic peptide (BNP) content elevation, and the morphological changes of hiPS-CMs. For the first time, our data illustrate the potent protective effects of Sch A and Sch B on ET-1-induced dysfunctional hiPS-CMs and revealed their effective targets and pathways. The integrative approach used in our study was applied to identify active components in TCM preparations and excavate the possible mechanisms."	"Clinically Divergent Mutation Effects on the Structure and Function of the Human Cardiac Tropomyosin Overlap. The progression of genetically inherited cardiomyopathies from an altered protein structure to clinical presentation of disease is not well understood. One of the main roadblocks to mechanistic insight remains a lack of high-resolution structural information about multiprotein complexes within the cardiac sarcomere. One example is the tropomyosin (Tm) overlap region of the thin filament that is crucial for the function of the cardiac sarcomere. To address this central question, we devised coupled experimental and computational modalities to characterize the baseline function and structure of the Tm overlap, as well as the effects of mutations causing divergent patterns of ventricular remodeling on both structure and function. Because the Tm overlap contributes to the cooperativity of myofilament activation, we hypothesized that mutations that enhance the interactions between overlap proteins result in more cooperativity, and conversely, those that weaken interaction between these elements lower cooperativity. Our results suggest that the Tm overlap region is affected differentially by dilated cardiomyopathy-associated Tm D230N and hypertrophic cardiomyopathy-associated human cardiac troponin T (cTnT) R92L. The Tm D230N mutation compacts the Tm overlap region, increasing the cooperativity of the Tm filament, contributing to a dilated cardiomyopathy phenotype. The cTnT R92L mutation causes weakened interactions closer to the N-terminal end of the overlap, resulting in decreased cooperativity. These studies demonstrate that mutations with differential phenotypes exert opposite effects on the Tm-Tn overlap, and that these effects can be directly correlated to a molecular level understanding of the structure and dynamics of the component proteins."	"Differential Sarcomere and Electrophysiological Maturation of Human iPSC-Derived Cardiac Myocytes in Monolayer vs. Aggregation-Based Differentiation Protocols. Human induced pluripotent stem cells (iPSCs) represent a powerful human model to study cardiac disease in vitro, notably channelopathies and sarcomeric cardiomyopathies. Different protocols for cardiac differentiation of iPSCs have been proposed either based on embroid body formation (3D) or, more recently, on monolayer culture (2D). We performed a direct comparison of the characteristics of the derived cardiomyocytes (iPSC-CMs) on day 27 ± 2 of differentiation between 3D and 2D differentiation protocols with two different Wnt-inhibitors were compared: IWR1 (inhibitor of Wnt response) or IWP2 (inhibitor of Wnt production). We firstly found that the level of Troponin T (TNNT2) expression measured by FACS was significantly higher for both 2D protocols as compared to the 3D protocol. In the three methods, iPSC-CM show sarcomeric structures. However, iPSC-CM generated in 2D protocols constantly displayed larger sarcomere lengths as compared to the 3D protocol. In addition, mRNA and protein analyses reveal higher cTNi to ssTNi ratios in the 2D protocol using IWP2 as compared to both other protocols, indicating a higher sarcomeric maturation. Differentiation of cardiac myocytes with 2D monolayer-based protocols and the use of IWP2 allows the production of higher yield of cardiac myocytes that have more suitable characteristics to study sarcomeric cardiomyopathies."	"Myosin-binding Protein C Compound Heterozygous Variant Effect on the Phenotypic Expression of Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant genetic disease caused by mutations in genes encoding sarcomere proteins. It is the major cause of sudden cardiac death in young high-level athletes. Studies have demonstrated a poorer prognosis when associated with specific mutations. The association between HCM genotype and phenotype has been the subject of several studies since the discovery of the genetic nature of the disease. This study shows the effect of a MYBPC3 compound variant on the phenotypic HCM expression. A family in which a young man had a clinical diagnosis of HCM underwent clinical and genetic investigations. The coding regions of the MYH7, MYBPC3 and TNNT2 genes were sequenced and analyzed. The proband present a malignant manifestation of the disease, and is the only one to express HCM in his family. The genetic analysis through direct sequencing of the three main genes related to this disease identified a compound heterozygous variant (p.E542Q and p.D610H) in MYBPC3. A family analysis indicated that the p.E542Q and p.D610H alleles have paternal and maternal origin, respectively. No family member carrier of one of the variant alleles manifested clinical signs of HCM. We suggest that the MYBPC3-biallelic heterozygous expression of p.E542Q and p.D610H may cause the severe disease phenotype seen in the proband. Resumo A cardiomiopatia hipertrófica (CMH) é uma doença autossômica dominante causada por mutações em genes que codificam as proteínas dos sarcômeros. É a principal causa de morte súbita cardíaca em atletas jovens de alto nível. Estudos têm demonstrado um pior prognóstico associado a mutações específicas. A associação entre genótipo e fenótipo em CMH tem sido objeto de diversos estudos desde a descoberta da origem genética dessa doença. Este trabalho apresenta o efeito de uma mutação composta em MYBPC3 na expressão fenotípica da CMH. Uma família na qual um jovem tem o diagnóstico clínico de CMH foi submetida à investigação clínica e genética. As regiões codificadoras dos genes MYH7, MYBPC3 e TNNT2 foram sequenciadas e analisadas. O probando apresenta uma manifestação maligna da doença e é o único em sua família a desenvolver CMH. A análise genética pelo sequenciamento direto dos três principais genes relacionados à essa doença identificou uma variante em heterozigose composta (p.E542Q e p.D610H) em MYBPC3. A análise da família mostrou que os alelos p.E542Q e p.D610H tem origem paterna e materna, respectivamente. Nenhum familiar portador de um dos alelos variantes manifestou sinais clínicos de CMH. Sugerimos que a expressão heterozigótica bialélica de p.E542Q e p.D610H pode ser responsável pelo fenótipo severo da doença encontrada no probando."	"Genotype-specific pathogenic effects in human dilated cardiomyopathy. Mutations in genes encoding cardiac troponin I (TNNI3) and cardiac troponin T (TNNT2) caused altered troponin protein stoichiometry in patients with dilated cardiomyopathy. TNNI3p.98trunc resulted in haploinsufficiency, increased Ca<sup>2+</sup> -sensitivity and reduced length-dependent activation. TNNT2p.K217del caused increased passive tension. A mutation in the gene encoding Lamin A/C (LMNAp.R331Q ) led to reduced maximal force development through secondary disease remodelling in patients suffering from dilated cardiomyopathy. Our study shows that different gene mutations induce dilated cardiomyopathy via diverse cellular pathways. Dilated cardiomyopathy (DCM) can be caused by mutations in sarcomeric and non-sarcomeric genes. In this study we defined the pathogenic effects of three DCM-causing mutations: the sarcomeric mutations in genes encoding cardiac troponin I (TNNI3p.98truncation ) and cardiac troponin T (TNNT2p.K217deletion ; also known as the p.K210del) and the non-sarcomeric gene mutation encoding lamin A/C (LMNAp.R331Q ). We assessed sarcomeric protein expression and phosphorylation and contractile behaviour in single membrane-permeabilized cardiomyocytes in human left ventricular heart tissue. Exchange with recombinant troponin complex was used to establish the direct pathogenic effects of the mutations in TNNI3 and TNNT2. The TNNI3p.98trunc and TNNT2p.K217del mutation showed reduced expression of troponin I to 39% and 51%, troponin T to 64% and 53%, and troponin C to 73% and 97% of controls, respectively, and altered stoichiometry between the three cardiac troponin subunits. The TNNI3p.98trunc showed pure haploinsufficiency, increased Ca<sup>2+</sup> -sensitivity and impaired length-dependent activation. The TNNT2p.K217del mutation showed a significant increase in passive tension that was not due to changes in titin isoform composition or phosphorylation. Exchange with wild-type troponin complex corrected troponin protein levels to 83% of controls in the TNNI3p.98trunc sample. Moreover, upon exchange all functional deficits in the TNNI3p.98trunc and TNNT2p.K217del samples were normalized to control values confirming the pathogenic effects of the troponin mutations. The LMNAp.R331Q mutation resulted in reduced maximal force development due to disease remodelling. Our study shows that different gene mutations induce DCM via diverse cellular pathways."	"Nonfamilial Hypertrophic Cardiomyopathy: Prevalence, Natural History, and Clinical Implications. Yield of causative variants in hypertrophic cardiomyopathy (HCM) is increased in some probands, suggesting different clinical subgroups of disease occur. We hypothesized that a negative family history and no sarcomere mutations represent a nonfamilial subgroup of HCM. We sought to determine the prevalence, natural history, and potential clinical implications of this nonfamilial subgroup of HCM. Four hundred and thirteen unrelated probands with HCM seen in a specialized HCM center between 2002 and 2015 and genetic testing performed were included in this retrospective cohort study. There were 251 (61%) probands with no reported family history of HCM, including 166 (40% of total) probands with no sarcomere mutation, that is, nonfamilial HCM. Quantified family pedigree data revealed no difference in mean number of first-degree relatives screened between nonfamilial and sarcomere-positive groups. Adjusted predictors of nonfamilial status were older age (odds ratio, 1.04; 95% confidence interval, 1.02-1.06; P=0.0001), male sex (odds ratio, 1.96; 95% confidence interval, 1.11-3.45; P=0.02), hypertension (odds ratio, 2.80; 95% confidence interval, 1.57-5.00; P=0.0005), and nonasymmetric septal morphology (odds ratio, 3.41; 95% confidence interval, 1.64-7.08; P=0.001). They had a less severe clinical course with greater event-free survival from major cardiac events (P=0.04) compared with sarcomere-positive HCM probands. Genotype prediction scores showed good performance in identifying genotype-positive patients (area under the curve, 0.71-0.75) and, in combination with pedigree characteristics, were further improved. Approximately 40% of HCM probands have a nonfamilial subtype, with later onset and less severe clinical course. We propose a revised clinical pathway for management, highlighting the role of genetic testing, a detailed pedigree, and refined clinical surveillance recommendations for family members."	"Rapamycin efficiently promotes cardiac differentiation of mouse embryonic stem cells. To investigate the effects of rapamycin on cardiac differentiation, murine embryonic stem cells (ESCs) were induced into cardiomyocytes by 10<sup>-4</sup> M ascorbic acid (AA), 20 nM rapamycin alone or 0.01% solvent DMSO. We found that rapamycin alone was insufficient to initiate cardiomyogenesis. Then, the ESCs were treated with AA and rapamycin (20 nM) or AA and DMSO (0.01%) as a control. Compared with control, mouse ESCs (mESCs) treated with rapamycin (20 nM) and AA yielded a significantly higher percentage of cardiomyocytes, as confirmed by the percentage of beating embryonic bodies (EBs), the immunofluorescence and FACS analysis. Rapamycin significantly increased the expression of a panel of cardiac markers including Gata4, α-Mhc, β-Mhc, and Tnnt2. Additionally, rapamycin enhanced the expression of mesodermal and cardiac transcription factors such as Mesp1, Brachyury T, Eomes, Isl1, Gata4, Nkx2.5, Tbx5, and Mef2c. Mechanistic studies showed that rapamycin inhibits Wnt/β-catenin and Notch signaling but promotes the expression of fibroblast growth factor (Fgf8), Fgf10, and Nodal at early stage, and bone morphogenetic protein 2 (Bmp 2) at later stages. Sequential treatment of rapamycin showed that rapamycin promotes cardiac differentiation at the early and later stages. Interestingly, another mammalian target of rapamycin (mTOR) inhibitor Ku0063794 (1 µM) had similar effects on cardiomyogenesis. In conclusion, our results highlight a practical approach to generate cardiomyocytes from mESCs by rapamycin."	"Screening of the Filamin C Gene in a Large Cohort of Hypertrophic Cardiomyopathy Patients. Recent exome sequencing studies identified filamin C (FLNC) as a candidate gene for hypertrophic cardiomyopathy (HCM). Our aim was to determine the rate of FLNC candidate variants in a large cohort of HCM patients who were also sequenced for the main sarcomere genes. A total of 448 HCM patients were next generation-sequenced (semiconductor chip technology) for the MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1, and FLNC genes. We also sequenced 450 healthy controls from the same population. Based on the reported population frequencies, bioinformatic criteria, and familial segregation, we identified 20 FLNC candidate variants (13 new; 1 nonsense; and 19 missense) in 22 patients. Compared with the patients, only 1 of the control's missense variants was nonreported (P=0.007; Fisher exact probability test). Based on the familial segregation and the reported functional studies, 6 of the candidate variants (in 7 patients) were finally classified as likely pathogenic, 10 as variants of uncertain significance, and 4 as likely benign. We provide a compelling evidence of the involvement of FLNC in the development of HCM. Most of the FLNC variants were associated with mild forms of HCM and a reduced penetrance, with few affected in the families to confirm the segregation. Our work, together with others who found FLNC variants among patients with dilated and restrictive cardiomyopathies, pointed to this gene as an important cause of structural cardiomyopathies."	"A Comprehensive TALEN-Based Knockout Library for Generating Human-Induced Pluripotent Stem Cell-Based Models for Cardiovascular Diseases. Targeted genetic engineering using programmable nucleases such as transcription activator-like effector nucleases (TALENs) is a valuable tool for precise, site-specific genetic modification in the human genome. The emergence of novel technologies such as human induced pluripotent stem cells (iPSCs) and nuclease-mediated genome editing represent a unique opportunity for studying cardiovascular diseases in vitro. By incorporating extensive literature and database searches, we designed a collection of TALEN constructs to knockout 88 human genes that are associated with cardiomyopathies and congenital heart diseases. The TALEN pairs were designed to induce double-strand DNA break near the starting codon of each gene that either disrupted the start codon or introduced a frameshift mutation in the early coding region, ensuring faithful gene knockout. We observed that all the constructs were active and disrupted the target locus at high frequencies. To illustrate the utility of the TALEN-mediated knockout technique, 6 individual genes (TNNT2, LMNA/C, TBX5, MYH7, ANKRD1, and NKX2.5) were knocked out with high efficiency and specificity in human iPSCs. By selectively targeting a pathogenic mutation (TNNT2 p.R173W) in patient-specific iPSC-derived cardiac myocytes, we demonstrated that the knockout strategy ameliorates the dilated cardiomyopathy phenotype in vitro. In addition, we modeled the Holt-Oram syndrome in iPSC-cardiac myocytes in vitro and uncovered novel pathways regulated by TBX5 in human cardiac myocyte development. Collectively, our study illustrates the powerful combination of iPSCs and genome editing technologies for understanding the biological function of genes, and the pathological significance of genetic variants in human cardiovascular diseases. The methods, strategies, constructs, and iPSC lines developed in this study provide a validated, readily available resource for cardiovascular research."	"Progesterone signalling in broiler skeletal muscle is associated with divergent feed efficiency. We contrast the pectoralis muscle transcriptomes of broilers selected from within a single genetic line expressing divergent feed efficiency (FE) in an effort to improve our understanding of the mechanistic basis of FE. Application of a virtual muscle model to gene expression data pointed to a coordinated reduction in slow twitch muscle isoforms of the contractile apparatus (MYH15, TPM3, MYOZ2, TNNI1, MYL2, MYOM3, CSRP3, TNNT2), consistent with diminishment in associated slow machinery (myoglobin and phospholamban) in the high FE animals. These data are in line with the repeated transition from red slow to white fast muscle fibres observed in agricultural species selected on mass and FE. Surprisingly, we found that the expression of 699 genes encoding the broiler mitoproteome is modestly-but significantly-biased towards the high FE group, suggesting a slightly elevated mitochondrial content. This is contrary to expectation based on the slow muscle isoform data and theoretical physiological capacity arguments. Reassuringly, the extreme 40 most DE genes can successfully cluster the 12 individuals into the appropriate FE treatment group. Functional groups contained in this DE gene list include metabolic proteins (including opposing patterns of CA3 and CA4), mitochondrial proteins (CKMT1A), oxidative status (SEPP1, HIG2A) and cholesterol homeostasis (APOA1, INSIG1). We applied a differential network method (Regulatory Impact Factors) whose aim is to use patterns of differential co-expression to detect regulatory molecules transcriptionally rewired between the groups. This analysis clearly points to alterations in progesterone signalling (via the receptor PGR) as the major driver. We show the progesterone receptor localises to the mitochondria in a quail muscle cell line. Progesterone is sometimes used in the cattle industry in exogenous hormone mixes that lead to a ~20% increase in FE. Because the progesterone receptor can localise to avian mitochondria, our data continue to point to muscle mitochondrial metabolism as an important component of the phenotypic expression of variation in broiler FE."	"Identification of pathogenic variants in genes related to channelopathy and cardiomyopathy in Korean sudden cardiac arrest survivors. Pathogenic variants in genes related to channelopathy and cardiomyopathy are the most common cause of sudden unexplained cardiac death. However, few reports have investigated the frequency and/or spectrum of pathogenic variants in these genes in Korean sudden cardiac arrest survivors. This study aimed to investigate the causative genetic variants of cardiac-associated genes in Korean sudden cardiac arrest survivors. We performed exome sequencing followed by filtering and validation of variants in 100 genes related to channelopathy and cardiomyopathy in 19 Korean patients who survived sudden cardiac arrest. Five of the 19 patients (26.3%) had either a pathogenic variant or a likely pathogenic variant in MYBPC3 (n=1), MYH7 (n=1), RYR2 (n=2), or TNNT2 (n=1). All five variants were missense variants that have been reported previously in patients with channelopathies or cardiomyopathies. Furthermore, an additional 12 patients (63.2%) had more than one variant of uncertain significance. In conclusion, pathogenic or likely pathogenic variants in genes related to channelopathy and cardiomyopathy are not uncommon in Korean sudden cardiac arrest survivors and cardiomyopathy-related genes should be included in the molecular diagnosis of sudden cardiac arrest in Korea."	"Neural Crest Stem Cells Can Differentiate to a Cardiomyogenic Lineage with an Ability to Contract in Response to Pulsed Infrared Stimulation. Cellular cardiomyoplasty has rapidly risen to prominence in the clinic following a myocardial infarction; however, low engraftment of transplanted cells limits the therapeutic benefit to these procedures. Recently, lineage-specific stem cells differentiated into cardiomyocytes have gained much attention to assist in the repair of an injured heart tissue; however, questions regarding the ideal cell source remain. In the present study, we have identified a source that is easy to extract stem cells from and show that the cells present have a high plasticity toward the cardiomyogenic lineage. We focused on the recently discovered neural crest stem cells residing in the periodontal ligament that can be easily obtained through dental procedures. Neural crest stem cells were obtained from human excised third molars and differentiated in culture using a protocol for directed differentiation into cardiomyocytes. Differentiation of cells was assessed through gene expression and immunostaining studies. Optical stimulation using pulsed infrared radiation (IR) (λ = 1863 nm) was delivered to cell aggregates to study their contractile ability. We show that neural crest stem cells can be differentiated to a cardiomyogenic lineage, which was verified through immunostaining and gene expression. We observed a significant increase in cardiomyocyte-specific markers, NK2 homeobox 5 (NKX2.5) and troponin T type 2 (TNNT2), with positive changes in tropomyosin I (TPM1), gap junction protein alpha 1/Cx43 (GJA1/Cx43), and myocyte enhancement factor 2C (MEF2C). Furthermore, we were able to elicit and maintain pulse-by-pulse contractile responses in the derived cells, including in cardiospheres, with pulsed IR delivered at various radiant energies. The contractility in responses to IR could be maintained at different frequencies (0.25-2 Hz) and up to 10-min durations. While these cells did not maintain their contractility following cessation of IR, these cells demonstrated responses to the optical stimuli that are consistent with previous reports. We also found no evidence for irreversible mitochondrial depolarization in these cells following the long duration of infrared stimulation, suggesting the robustness of these cells. Overall, these results suggest the merit of neural crest-derived stem cells for cardiomyogenic applications and a potential cell source for repair that should contribute to efforts to translate cell-based strategies to the clinic."	"Enhanced Cardiac Differentiation of Human Cardiovascular Disease Patient-Specific Induced Pluripotent Stem Cells by Applying Unidirectional Electrical Pulses Using Aligned Electroactive Nanofibrous Scaffolds. In the embryonic heart, electrical impulses propagate in a unidirectional manner from the sinus venosus and appear to be involved in cardiogenesis. In this work, aligned and random polyaniline/polyetersulfone (PANI/PES) nanofibrous scaffolds doped by Camphor-10-sulfonic acid (β) (CPSA) were fabricated via electrospinning and used to conduct electrical impulses in a unidirectional and multidirectional fashion, respectively. A bioreactor was subsequently engineered to apply electrical impulses to cells cultured on PANI/PES scaffolds. We established cardiovascular disease-specific induced pluripotent stem cells (CVD-iPSCs) from the fibroblasts of patients undergoing cardiothoracic surgeries. The CVD-iPSCs were seeded onto the scaffolds, cultured in cardiomyocyte-inducing factors, and exposed to electrical impulses for 1 h/day, over a 15-day time period in the bioreactor. The application of the unidirectional electrical stimulation to the cells significantly increased the number of cardiac Troponin T (cTnT+) cells in comparison to multidirectional electrical stimulation using random fibrous scaffolds. This was confirmed by real-time polymerase chain reaction for cardiac-related transcription factors (NKX2.5, GATA4, and NPPA) and a cardiac-specific structural gene (TNNT2). Here we report for the first time that applying electrical pulses in a unidirectional manner mimicking the unidirectional wave of electrical stimulation in the heart, could increase the derivation of cardiomyocytes from CVD-iPSCs."	"Core Transcription Factors, MicroRNAs, and Small Molecules Drive Transdifferentiation of Human Fibroblasts Towards The Cardiac Cell Lineage. Transdifferentiation has been described as a novel method for converting human fibroblasts into induced cardiomyocyte-like cells. Such an approach can produce differentiated cells to study physiology or pathophysiology, examine drug interactions or toxicities, and engineer cardiac tissues. Here we describe the transdifferentiation of human dermal fibroblasts towards the cardiac cell lineage via the induced expression of transcription factors GATA4, TBX5, MEF2C, MYOCD, NKX2-5, and delivery of microRNAs miR-1 and miR-133a. Cells undergoing transdifferentiation expressed ACTN2 and TNNT2 and partially organized their cytoskeleton in a cross-striated manner. The conversion process was associated with significant upregulation of a cohort of cardiac-specific genes, activation of pathways associated with muscle contraction and physiology, and downregulation of fibroblastic markers. We used a genetically encoded calcium indicator and readily detected active calcium transients although no spontaneous contractions were observed in transdifferentiated cells. Finally, we determined that inhibition of Janus kinase 1, inhibition of Glycogen synthase kinase 3, or addition of NRG1 significantly enhanced the efficiency of transdifferentiation. Overall, we describe a method for achieving transdifferentiation of human dermal fibroblasts into induced cardiomyocyte-like cells via transcription factor overexpression, microRNA delivery, and molecular pathway manipulation."	"Purification of small molecule-induced cardiomyocytes from human induced pluripotent stem cells using a reporter system. In order to realize the practical use of human pluripotent stem cell (hPSC)-derived cardiomyocytes for the purpose of clinical use or cardiovascular research, the generation of large numbers of highly purified cardiomyocytes should be achieved. Here, we show an efficient method for cardiac differentiation of human induced pluripotent stem cells (hiPSCs) in chemically defined conditions and purification of hiPSC-derived cardiomyocytes using a reporter system. Regulation of the Wnt/β-catenin signaling pathway is implicated in the induction of the cardiac differentiation of hPSCs. We increased cardiac differentiation efficiency of hiPSCs in chemically defined conditions through combined treatment with XAV939, a tankyrase inhibitor and IWP2, a porcupine inhibitor and optimized concentrations. Although cardiac differentiation efficiency was high (&gt;80%), it was difficult to suppress differentiation into non-cardiac cells, Therefore, we applied a lentiviral reporter system, wherein green fluorescence protein (GFP) and Zeocin-resistant gene are driven by promoter activation of a gene (TNNT2) encoding cardiac troponin T (cTnT), a cardiac-specific protein, to exclude non-cardiomyocytes from differentiated cell populations. We transduced this reporter construct into differentiated cells using a lentiviral vector and then obtained highly purified hiPSC-derived cardiomyocytes by treatment with the lowest effective dose of Zeocin. We significantly increased transgenic efficiency through manipulation of the cells in which the differentiated cells were simultaneously infected with virus and re-plated after single-cell dissociation. Purified cells specifically expressed GFP, cTnT, displayed typical properties of cardiomyocytes. This study provides an efficient strategy for obtaining large quantities of highly purified hPSC-derived cardiomyocytes for application in regenerative medicine and biomedical research."	"Preparation of rAAV9 to Overexpress or Knockdown Genes in Mouse Hearts. Controlling the expression or activity of specific genes through the myocardial delivery of genetic materials in murine models permits the investigation of gene functions. Their therapeutic potential in the heart can also be determined. There are limited approaches for in vivo molecular intervention in the mouse heart. Recombinant adeno-associated virus (rAAV)-based genome engineering has been utilized as an essential tool for in vivo cardiac gene manipulation. The specific advantages of this technology include high efficiency, high specificity, low genomic integration rate, minimal immunogenicity, and minimal pathogenicity. Here, a detailed procedure to construct, package, and purify the rAAV9 vectors is described. Subcutaneous injection of rAAV9 into neonatal pups results in robust expression or efficient knockdown of the gene(s) of interest in the mouse heart, but not in the liver and other tissues. Using the cardiac-specific TnnT2 promoter, high expression of GFP gene in the heart was obtained. Additionally, target mRNA was inhibited in the heart when a rAAV9-U6-shRNA was utilized. Working knowledge of rAAV9 technology may be useful for cardiovascular investigations."	"High glucose suppresses embryonic stem cell differentiation into cardiomyocytes : High glucose inhibits ES cell cardiogenesis. Babies born to mothers with pregestational diabetes have a high risk for congenital heart defects (CHD). Embryonic stem cells (ESCs) are excellent in vitro models for studying the effect of high glucose on cardiac lineage specification because ESCs can be differentiated into cardiomyocytes. ESC maintenance and differentiation are currently performed under high glucose conditions, whose adverse effects have never been clarified. We investigated the effect of high glucose on cardiomyocyte differentiation from a well-characterized ESC line, E14, derived from mouse blastocysts. E14 cells maintained under high glucose (25 mM) failed to generate any beating cardiomyocytes using the hanging-drop embryonic body method. We created a glucose-responsive E14 cell line (GR-E14) through a graduated low glucose adaptation. The expression of stem cell markers was similar in the parent E14 cells and the GR-E14 cells. Glucose transporter 2 gene was increased in GR-E14 cells. When GR-E14 cells were differentiated into cardiomyocytes under low (5 mM) or high (25 mM) glucose conditions, high glucose significantly delayed the appearance and reduced the number of TNNT2 (Troponin T Type 2)-positive contracting cardiomyocytes. High glucose suppressed the expression of precardiac mesoderm markers, cardiac transcription factors, mature cardiomyocyte markers, and potassium channel proteins. High glucose impaired the functionality of ESC-derived cardiomyocytes by suppressing the frequencies of Ca<sup>2+</sup> wave and contraction. Our findings suggest that high glucose inhibits ESC cardiogenesis by suppressing key developmental genes essential for the cardiac program."	"Gene-Targeted Mice with the Human Troponin T R141W Mutation Develop Dilated Cardiomyopathy with Calcium Desensitization. Most studies of the mechanisms leading to hereditary dilated cardiomyopathy (DCM) have been performed in reconstituted in vitro systems. Genetically engineered murine models offer the opportunity to dissect these mechanisms in vivo. We generated a gene-targeted knock-in murine model of the autosomal dominant Arg141Trp (R141W) mutation in Tnnt2, which was first described in a human family with DCM. Mice heterozygous for the mutation (Tnnt2R141W/+) recapitulated the human phenotype, developing left ventricular dilation and reduced contractility. There was a gene dosage effect, so that the phenotype in Tnnt2R141W/+mice was attenuated by transgenic overexpression of wildtype Tnnt2 mRNA transcript. Male mice exhibited poorer survival than females. Biomechanical studies on skinned fibers from Tnnt2R141W/+ hearts showed a significant decrease in pCa50 (-log[Ca2+] required for generation of 50% of maximal force) relative to wildtype hearts, indicating Ca2+ desensitization. Optical mapping studies of Langendorff-perfused Tnnt2R141W/+ hearts showed marked increases in diastolic and peak systolic intracellular Ca2+ ([Ca2+]i), and prolonged systolic rise and diastolic fall of [Ca2+]i. Perfused Tnnt2R141W/+ hearts had slower intrinsic rates in sinus rhythm and reduced peak heart rates in response to isoproterenol. Tnnt2R141W/+ hearts exhibited a reduction in phosphorylated phospholamban relative to wildtype mice. However, crossing Tnnt2R141W/+ mice with phospholamban knockout (Pln-/-) mice, which exhibit increased Ca2+ transients and contractility, had no effect on the DCM phenotype. We conclude that the Tnnt2 R141W mutation causes a Ca2+ desensitization and mice adapt by increasing Ca2+-transient amplitudes, which impairs Ca2+ handling dynamics, metabolism and responses to β-adrenergic activation."	"MiR-590 Promotes Transdifferentiation of Porcine and Human Fibroblasts Toward a Cardiomyocyte-Like Fate by Directly Repressing Specificity Protein 1. Reprogramming of cardiac fibroblasts into induced cardiomyocyte-like cells represents a promising potential new therapy for treating heart disease, inducing significant improvements in postinfarct ventricular function in rodent models. Because reprogramming factors effective in transdifferentiating rodent cells are not sufficient to reprogram human cells, we sought to identify reprogramming factors potentially applicable to human studies. Lentivirus vectors expressing Gata4, Mef2c, and Tbx5 (GMT); Hand2 (H), Myocardin (My), or microRNA (miR)-590 were administered to rat, porcine, and human cardiac fibroblasts in vitro. induced cardiomyocyte-like cell production was then evaluated by assessing expression of the cardiomyocyte marker, cardiac troponin T (cTnT), whereas signaling pathway studies were performed to identify reprogramming factor targets. GMT administration induced cTnT expression in ≈6% of rat fibroblasts, but failed to induce cTnT expression in porcine or human cardiac fibroblasts. Addition of H/My and/or miR-590 to GMT administration resulted in cTNT expression in ≈5% of porcine and human fibroblasts and also upregulated the expression of the cardiac genes, MYH6 and TNNT2. When cocultured with murine cardiomyocytes, cTnT-expressing porcine cardiac fibroblasts exhibited spontaneous contractions. Administration of GMT plus either H/My or miR-590 alone also downregulated fibroblast genes COL1A1 and COL3A1. miR-590 was shown to directly suppress the zinc finger protein, specificity protein 1 (Sp1), which was able to substitute for miR-590 in inducing cellular reprogramming. These data support porcine studies as a surrogate for testing human cardiac reprogramming, and suggest that miR-590-mediated repression of Sp1 represents an alternative pathway for enhancing human cardiac cellular reprogramming."	"Tissue thrombin is associated with the pathogenesis of dilated cardiomyopathy. Thrombin is a serine protease known to be the final product of the coagulation cascade. However, thrombin plays other physiological roles in processes such as gastric contractions and vessel wound healing, and a state of coagulability is increased in patients with dilated cardiomyopathy (DCM). In this study, we investigate the role of thrombin in the pathogenesis of DCM. The purpose of this study is to clarify the role of thrombin in the pathogenesis of DCM and investigate the possibility of treatment against DCM by thrombin inhibition. We investigated the expression of thrombin in the left ventricles of five patients with DCM who underwent the Batista operation and four patients without heart disease. Furthermore, we investigated the involvement of thrombin in the development of DCM using knock-in mice with a deletion mutation of cardiac troponin T that causes human DCM (∆K210 knock-in mouse) (B6;129-Tnnt2<sup>tm2Mmto</sup>) and assessed the effects of a direct thrombin inhibitor, dabigatran on ∆K210 knock-in mice using echocardiographic examinations, the Kaplan-Meier method and Western blotting. The immunohistochemical analysis showed a strong thrombin expression in the DCM patients compared to the patients without heart disease. In immunohistochemical analysis, a strong thrombin expression was observed in the heart tissues analysis in the ∆K210 knock-in mice. Dabigatran administration significantly improved fractional shortening according to the echocardiographic examination and the survival outcomes in ∆K210 knock-in mice. Tissue thrombin is involved in the pathogenesis of DCM and thrombin inhibition can be beneficial for the treatment of DCM."	"Cardiomyogenic Differentiation of Human Dental Follicle-derived Stem Cells by Suberoylanilide Hydroxamic Acid and Their In Vivo Homing Property. The purpose of the present study was to investigate the in vitro cardiomyogenic differentiation potential of human dental follicle-derived stem cells (DFCs) under the influence of suberoylanilide hydroxamic acid (SAHA), a member of the histone deacetylase inhibitor family, and analyze the in vivo homing capacity of induced cardiomyocytes (iCMs) when transplanted systemically. DFCs from extracted wisdom teeth showed mesenchymal stem cell (MSC) characteristics such as plate adherent growing, expression of MSC markers (CD44, CD90, and CD105), and mesenchymal lineage-specific differentiation potential. Adding SAHA to the culture medium induced the successful in vitro differentiation of DFCs into cardiomyocytes. These iCMs expressed cardiomyogenic markers, including alpha-smooth muscle actin (α-SMA), cardiac muscle troponin T (TNNT2), Desmin, and cardiac muscle alpha actin (ACTC1), at both the mRNA and protein level. For the assessment of homing capacity, PKH26 labeled iCMs were intraperitoneally injected (1×10<sup>6</sup> cells in 100 µL of PBS) into the experimental mice, and the ratios of PKH26 positive cells to the total number of injected cells, in multiple organs were determined. The calculated homing ratios, 14 days after systemic cell transplantation, were 5.6 ± 1.0%, 3.6 ± 1.1%, and 11.6 ± 2.7% in heart, liver, and kidney respectively. There was no difference in the serum levels of interleukin-2 and interleukin-10 at 14 days after transplantation, between the experimental (iCM injected) and control (no injection or PBS injection) groups. These results demonstrate that DFCs can be an excellent source for cardiomyocyte differentiation and regeneration. Moreover, the iCMs can be delivered into heart muscle via systemic administration without eliciting inflammatory or immune response. This can serve as the pilot study for further investigations into the in vitro cardiomyogenic differentiation potential of DFCs under the influence of SAHA and the in vivo homing capacity of the iCMs into the heart muscle, when injected systemically."	"Changes in high sensitivity troponin T in incident haemodialysis patients. To characterise the changes in high sensitivity troponin T (hsTnT) in incident haemodialysis patients. Previous studies had shown that stable chronic haemodialysis patients have elevated cardiac troponin compared to the general population. Cardiac troponin on incident haemodialysis patients had not been characterised. This prospective descriptive study included all patients who started haemodialysis in Auckland City Hospital over 18 months. A troponin level was measured prior to the commencement of their first haemodialysis session and regular pre-dialysis troponin levels are measured every two to four months. Each patient has two to four troponin measurements during the study with a minimum follow-up of six months. A total of 91 patients started on haemodialysis during this period. Fifty-five patients had two troponin measurements and 40 of these patients had four troponin measurements. The baseline median troponin level prior to commencement of dialysis was 91ng/L (54-191ng/L) and declined with subsequent measurements. There was a significant decrease in the 3rd and 4th troponin measurements compared to baseline troponin. The baseline troponin levels were not independently associated with mortality. The decrease in troponin levels did not correlate with a decline in weight. This is the first study to describe and show a decline in cardiac troponin post-initiation of haemodialysis. The baseline troponin measurements were not predictive of mortality."	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Role of alpha- and beta-adrenergic receptors in cardiomyocyte differentiation from murine-induced pluripotent stem cells. Induced pluripotent stem cell (iPSC)-derived cardiomyocytes are a promising source of cells for regenerative heart disease therapies, but progress towards their use has been limited by their low differentiation efficiency and high cellular heterogeneity. Previous studies have demonstrated expression of adrenergic receptors (ARs) in stem cells after differentiation; however, roles of ARs in fate specification of stem cells, particularly in cardiomyocyte differentiation and development, have not been characterized. Murine-induced pluripotent stem cells (miPSCs) were cultured in hanging drops to form embryoid bodies, cells of which were then differentiated into cardiomyocytes. To determine whether ARs regulated miPSC differentiation into cardiac lineages, effects of the AR agonist, epinephrine (EPI), on miPSC differentiation and underlying signalling mechanisms, were evaluated. Treatment with EPI, robustly enhanced miPSC cardiac differentiation, as indicated by increased expression levels of cardiac-specific markers, GATA4, Nkx2.5 and Tnnt2. Although β-AR signalling is the foremost signalling pathway in cardiomyocytes, EPI-enhanced cardiac differentiation depended more on α-AR signalling than β-AR signalling. In addition, selective activation of α1 -AR signalling with specific agonists induced vigorous cardiomyocyte differentiation, whereas selective activation of α2 - or β-AR signalling induced no or less differentiation, respectively. EPI- and α1 -AR-dependent cardiomyocyte differentiation from miPSCs occurred through specific promotion of CPC proliferation via the MEK-ERK1/2 pathway and regulation of miPS cell-cycle progression. These results demonstrate that activation of ARs, particularly of α1 -ARs, promoted miPSC differentiation into cardiac lineages via MEK-ERK1/2 signalling."	"Prevalence and Phenotypic Expression of Mutations in the MYH7, MYBPC3 and TNNT2 Genes in Families with Hypertrophic Cardiomyopathy in the South of Brazil: A Cross-Sectional Study. Mutations in sarcomeric genes are found in 60-70% of individuals with familial forms of hypertrophic cardiomyopathy (HCM). However, this estimate refers to northern hemisphere populations. The molecular-genetic profile of HCM has been subject of few investigations in Brazil, particularly in the south of the country. To investigate mutations in the sarcomeric genes MYH7, MYBPC3 and TNNT2 in a cohort of HCM patients living in the extreme south of Brazil, and to evaluate genotype-phenotype associations. Direct DNA sequencing of all encoding regions of three sarcomeric genes was conducted in 43 consecutive individuals of ten unrelated families. Mutations for CMH have been found in 25 (58%) patients of seven (70%) of the ten study families. Fourteen (56%) individuals were phenotype-positive. All mutations were missense, four (66%) in MYH7 and two (33%) in MYBPC3. We have not found mutations in the TNNT2 gene. Mutations in MYH7 were identified in 20 (47%) patients of six (60%) families. Two of them had not been previously described. Mutations in MYBPC3 were found in seven (16%) members of two (20%) families. Two (5%) patients showed double heterozygosis for both genes. The mutations affected different domains of encoded proteins and led to variable phenotypic expression. A family history of HCM was identified in all genotype-positive individuals. In this first genetic-molecular analysis carried out in the south of Brazil, we found mutations in the sarcomeric genes MYH7 and MYBPC3 in 58% of individuals. MYH7-related disease was identified in the majority of cases with mutation. Mutações em genes do sarcômero são encontradas em 60-70% dos indivíduos com formas familiares de cardiomiopatia hipertrófica. (CMH). Entretanto, essa estimativa refere-se a populações de países do hemisfério norte. O perfil genético-molecular da CMH foi tema de poucos estudos no Brasil, particularmente na região sul do país. Realizar a pesquisa de mutações dos genes sarcoméricos MYH7, MYBPC3 e TNNT2 numa coorte de CMH estabelecida no extremo sul do Brasil, assim como avaliar as associações genótipo-fenótipo. Sequenciamento direto do DNA de todas as regiões codificantes dos três genes sarcoméricos foi realizada em 43 indivíduos consecutivos de dez famílias não-relacionadas. Mutações para CMH foram encontradas em 25 (58%) indivíduos de sete (70%) das dez famílias estudadas, sendo 14 (56%) deles fenótipo-positivos. Todas as mutações eram missense, quatro (66%) no gene MYH7 e duas (33%) no gene MYBPC3. Não foram encontradas mutações no gene TNNT2. Mutações em MYH7 foram identificadas em 20 (47%) indivíduos de seis (60%) famílias. Duas delas não haviam sido previamente relatadas. Mutações de MYBPC3 foram detectadas em sete (16%) membros de duas (20%) famílias. Dois (5%) indivíduos apresentaram dupla heterozigose com mutações em ambos os genes. As mutações acometeram distintos domínios das proteínas codificadas e produziram expressão fenotípica variável. História familiar de CMH foi identificada em todos os indivíduos genótipo-positivos. Nessa primeira análise genético-molecular da CMH realizada no sul do Brasil, foram encontradas mutações nos genes sarcoméricos MYH7 e MYBPC3 em 58% dos indivíduos. Doença relacionada ao gene MYH7 foi identificada na maioria dos casos com mutação."	"Evidence for troponin C (TNNC1) as a gene for autosomal recessive restrictive cardiomyopathy with fatal outcome in infancy. Restrictive cardiomyopathy is a rare form of pediatric cardiac disease, for which the known genes include MYH7, TNNT2, TNNI3, ACTC1, and DES. We describe a pediatric proband with fatal restrictive cardiomyopathy associated with septal hypertrophy and compound heterozygosity for TNNC1 mutations (NM_003280: p.A8V [c.C23T] and p.D145E [c.C435A]). This association between restrictive cardiomyopathy and TNNC1 mutations was strengthened by prospective observations on the second pregnancy in the family which revealed, in the presence of the same TNNC1 genotype, prenatally diagnosed hypertrophic cardiomyopathy which evolved into restrictive cardiomyopathy, heart failure and death at the age of 9 months. Contrary to previous reports, family and population analyses showed that each of the TNNC1 variants was not pathogenic when present alone. Our results (i) confirm that genetic backgrounds of hypertrophic cardiomyopathy and restrictive cardiomyopathy overlap and (ii) indicate that TNNC1 is a likely novel gene for autosomal recessive restrictive cardiomyopathy. © 2016 Wiley Periodicals, Inc."	"Genotype-phenotype associations in dilated cardiomyopathy: meta-analysis on more than 8000 individuals. Routine genetic testing in Dilated Cardiomyopathy (DCM) has recently become reality using Next-Generation Sequencing. Several studies have explored the relationship between genotypes and clinical phenotypes to support risk estimation and therapeutic decisions, however, most studies are small or restricted to a few genes. This study provides to our knowledge the first systematic meta-analysis on genotype-phenotype associations in DCM. We retrieved PubMed/Medline literature on genotype-phenotype associations in patients with DCM and mutations in LMNA, PLN, RBM20, MYBPC3, MYH7, TNNT2 and TNNI3. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Together, 48 studies with 8097 patients were included. Furthermore, we reviewed recent studies investigating genotype-phenotype associations in DCM patients with TTN mutations. The average frequency of mutations in the investigated genes was between 1 and 5 %. The mean age of DCM onset was the beginning of the fifth decade for all genes. Heart transplantation (HTx) rate was highest in LMNA mutation carriers (27 %), while RBM20 mutation carriers were transplanted at a markedly younger age (mean 28.5 years). While 73 % of DCM patients with LMNA mutations showed cardiac conduction diseases, low voltage was the reported ECG hallmark in PLN mutation carriers. The frequency of ventricular arrhythmia in DCM patients with LMNA (50 %) and PLN (43 %) mutations was significantly higher. The penetrance of DCM phenotype in subjects with TTN truncating variants increased with age and reached 100 % by age of 70. A pooled analysis of available genotype-phenotype data shows a higher prevalence of sudden cardiac death (SCD), cardiac transplantation, or ventricular arrhythmias in LMNA and PLN mutation carriers compared to sarcomeric gene mutations. This study will further support the clinical interpretation of genetic findings."	"Spectrum of Mutations in Hypertrophic Cardiomyopathy Genes Among Tunisian Patients. Hypertrophic cardiomyopathy (HCM) is a common cardiac genetic disorder associated with heart failure and sudden death. Mutations in the cardiac sarcomere genes are found in approximately half of HCM patients and are more common among cases with a family history of the disease. Data about the mutational spectrum of the sarcomeric genes in HCM patients from Northern Africa are limited. The population of Tunisia is particularly interesting due to its Berber genetic background. As founder mutations have been reported in other disorders. We performed semiconductor chip (Ion Torrent PGM) next generation sequencing of the nine main sarcomeric genes (MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1) as well as the recently identified as an HCM gene, FLNC, in 45 Tunisian HCM patients. We found sarcomere gene polymorphisms in 12 patients (27%), with MYBPC3 and MYH7 representing 83% (10/12) of the mutations. One patient was homozygous for a new MYL3 mutation and two were double MYBPC3 + MYH7 mutation carriers. Screening of the FLNC gene identified three new mutations, which points to FLNC mutations as an important cause of HCM among Tunisians. The mutational background of HCM in Tunisia is heterogeneous. Unlike other Mendelian disorders, there were no highly prevalent mutations that could explain most of the cases. Our study also suggested that FLNC mutations may play a role on the risk for HCM among Tunisians."	"Systematic selection of small molecules to promote differentiation of embryonic stem cells and experimental validation for generating cardiomyocytes. Small molecules are being increasingly used for inducing the targeted differentiation of stem cells to different cell types. However, until now no systematic method for selecting suitable small molecules for this purpose has been presented. In this work, we propose an integrated and general bioinformatics- and cheminformatics-based approach for selecting small molecules which direct cellular differentiation in the desired way. The approach was successfully experimentally validated for differentiating stem cells into cardiomyocytes. All predicted compounds enhanced expression of cardiac progenitor (Gata4, Nkx2-5 and Mef2c) and mature cardiac markers (Actc1, myh6) significantly during and post-cardiac progenitor formation. The best-performing compound, Famotidine, increased the percentage of Myh6-positive cells from 33 to 56%, and enhanced the expression of Nkx2.5 and Tnnt2 cardiac progenitor and cardiac markers in protein level. The approach employed in the study is applicable to all other stem cell differentiation settings where gene expression data are available. "	"Muscleblind-like 3 deficit results in a spectrum of age-associated pathologies observed in myotonic dystrophy. Myotonic dystrophy type I (DM1) exhibits distinctive disease specific phenotypes and the accelerated onset of a spectrum of age-associated pathologies. In DM1, dominant effects of expanded CUG repeats result in part from the inactivation of the muscleblind-like (MBNL) proteins. To test the role of MBNL3, we deleted Mbnl3 exon 2 (Mbnl3(ΔE2)) in mice and examined the onset of age-associated diseases over 4 to 13 months of age. Accelerated onset of glucose intolerance with elevated insulin levels, cardiac systole deficits, left ventricle hypertrophy, a predictor of a later onset of heart failure and the development of subcapsular and cortical cataracts is observed in Mbnl3(ΔE2) mice. Retention of embryonic splice isoforms in adult organs, a prominent defect in DM1, is not observed in multiple RNAs including the Insulin Receptor (Insr), Cardiac Troponin T (Tnnt2), Lim Domain Binding 3 (Ldb3) RNAs in Mbnl3(ΔE2) mice. Although rare DM1-like splice errors underlying the observed phenotypes cannot be excluded, our data in conjunction with the reported absence of alternative splice errors in embryonic muscles of a similar Mbnl3(ΔE2) mouse by RNA-seq studies, suggest that mechanisms distinct from the adult retention of embryonic splice patterns may make important contributions to the onset of age-associated pathologies in DM1."	"A Next-Generation Sequencing Approach to Identify Gene Mutations in Early- and Late-Onset Hypertrophic Cardiomyopathy Patients of an Italian Cohort. Sequencing of sarcomere protein genes in patients fulfilling the clinical diagnostic criteria for hypertrophic cardiomyopathy (HCM) identifies a disease-causing mutation in 35% to 60% of cases. Age at diagnosis and family history may increase the yield of mutations screening. In order to assess whether Next-Generation Sequencing (NGS) may fulfil the molecular diagnostic needs in HCM, we included 17 HCM-related genes in a sequencing panel run on PGM IonTorrent. We selected 70 HCM patients, 35 with early (≤25 years) and 35 with late (≥65 years) diagnosis of disease onset. All samples had a 98.6% average of target regions, with coverage higher than 20× (mean coverage 620×). We identified 41 different mutations (seven of them novel) in nine genes: MYBPC3 (17/41 = 41%); MYH7 (10/41 = 24%); TNNT2, CAV3 and MYH6 (3/41 = 7.5% each); TNNI3 (2/41 = 5%); GLA, MYL2, and MYL3 (1/41=2.5% each). Mutation detection rate was 30/35 (85.7%) in early-onset and 8/35 (22.9%) in late-onset HCM patients, respectively (p &lt; 0.0001). The overall detection rate for patients with positive family history was 84%, and 90.5% in patients with early disease onset. In our study NGS revealed higher mutations yield in patients with early onset and with a family history of HCM. Appropriate patient selection can increase the yield of genetic testing and make diagnostic testing cost-effective. "	"Human Cardiomyocytes Prior to Birth by Integration-Free Reprogramming of Amniotic Fluid Cells. : The establishment of an abundant source of autologous cardiac progenitor cells would represent a major advance toward eventual clinical translation of regenerative medicine strategies in children with prenatally diagnosed congenital heart disease. In support of this concept, we sought to examine whether functional, transgene-free human cardiomyocytes (CMs) with potential for patient-specific and autologous applications could be reliably generated following routine amniocentesis. Under institutional review board approval, amniotic fluid specimens (8-10 ml) at 20 weeks gestation were expanded and reprogrammed toward pluripotency using nonintegrating Sendai virus (SeV) expressing OCT4, SOX2, cMYC, and KLF4. Following exposure of these induced pluripotent stem cells to cardiogenic differentiation conditions, spontaneously beating amniotic fluid-derived cardiomyocytes (AF-CMs) were successfully generated with high efficiency. After 6 weeks, quantitative gene expression revealed a mixed population of differentiated atrial, ventricular, and nodal AF-CMs, as demonstrated by upregulation of multiple cardiac markers, including MYH6, MYL7, TNNT2, TTN, and HCN4, which were comparable to levels expressed by neonatal dermal fibroblast-derived CM controls. AF-CMs had a normal karyotype and demonstrated loss of NANOG, OCT4, and the SeV transgene. Functional characterization of SIRPA<sup>+</sup> AF-CMs showed a higher spontaneous beat frequency in comparison with dermal fibroblast controls but revealed normal calcium transients and appropriate chronotropic responses after β-adrenergic agonist stimulation. Taken together, these data suggest that somatic cells present within human amniotic fluid can be used to generate a highly scalable source of functional, transgene-free, autologous CMs before a child is born. This approach may be ideally suited for patients with prenatally diagnosed cardiac anomalies. This study presents transgene-free human amniotic fluid-derived cardiomyocytes (AF-CMs) for potential therapy in tissue engineering and regenerative medicine applications. Using 8-10 ml of amniotic fluid harvested at 20 weeks gestation from normal pregnancies, a mixed population of atrial, ventricular, and nodal AF-CMs were reliably generated after Sendai virus reprogramming toward pluripotency. Functional characterization of purified populations of beating AF-CMs revealed normal calcium transients and appropriate chronotropic responses after β-adrenergic agonist stimulation in comparison with dermal fibroblast controls. Because AF-CMs can be generated in fewer than 16 weeks, this approach may be ideally suited for eventual clinical translation at birth in children with prenatally diagnosed cardiac anomalies."	"Role of common sarcomeric gene polymorphisms in genetic susceptibility to left ventricular dysfunction. Mutations in sarcomeric genes are common genetic cause of cardiomyopathies. An intronic 25-bp deletion in cardiac myosin binding protein C (MYBPC3) at 3' region is associated with dilated and hypertrophic cardiomyopathies in Southeast Asia. However, the frequency of sarcomeric gene polymorphisms and associated clinical presentation have not been established with left ventricular dysfunction (LVD). Therefore, the aim of the present study was to explore the association of MYBPC3 25-bp deletion, titin (TTN) 18 bp I/D, troponin T type 2 (TNNT2) 5 bp I/D and myospryn K2906N polymorphisms with LVD. This study includes 988 consecutive patients with angiographically confirmed coronary artery disease (CAD) and 300 healthy controls. Among the 988 CAD patients, 253 with reduced left ventricle ejection fraction (LVEF≤45%) were categorized as LVD. MYBPC3 25-bp deletion, TTN 18 bp I/D and TNNT2 5 bp I/D polymorphisms were determined by direct polymerase chain reaction method, while myospryn K2906N polymorphism by TaqMan assay. Our results showed that MYBPC3 25-bp deletion polymorphism was significantly associated with elevated risk of LVD (LVEF &lt;45) (healthy controls versus LVD: OR=3.85, P &lt;0.001; and nonLVD versus LVD: OR=1.65, P = 0.035), while TTN 18 bp I/D, TNNT2 5 bp I/D and myospryn K2906N polymorphisms did not show any significant association with LVD. The results also showed that MYBPC3 25-bp deletion polymorphism was significantly associated with other parameters of LV remodelling, i.e. LV dimensions (LV end diastole dimension, LVEDD: P = 0.037 and LV end systolic dimension, LVESD: P = 0.032). Our data suggests that MYBPC3 25-bp deletion may play significant role in conferring LVD as well as CAD risk in north Indian population. "	"Generation of KCL036 research grade human embryonic stem cell line carrying a mutation in the HTT gene. The KCL036 human embryonic stem cell line was derived from an embryo donated for research that carried an autosomal dominant mutation affecting one allele of the HTT gene encoding huntingtin (38 trinucleotide repeats; 14 for the normal allele). The ICM was isolated using laser microsurgery and plated on γ-irradiated human foreskin fibroblasts. Both the derivation and cell line propagation were performed in an animal product-free environment. Pluripotent state and differentiation potential were confirmed by in vitro and in vivo assays. "	"Knockdown of DNA methyltransferase 3a alters gene expression and inhibits function of embryonic cardiomyocytes. We previously found that in utero caffeine exposure causes down-regulation of DNA methyltransferases (DNMTs) in embryonic heart and results in impaired cardiac function in adulthood. To assess the role of DNMTs in these events, we investigated the effects of reduced DNMT expression on embryonic cardiomyocytes. siRNAs were used to knock down individual DNMT expression in primary cultures of mouse embryonic cardiomyocytes. Immunofluorescence staining was conducted to evaluate cell morphology. A video-based imaging assay and multielectrode array were used to assess cardiomyocyte contractility and electrophysiology, respectively. RNA-Seq and multiplex bisulfite sequencing were performed to examine gene expression and promoter methylation, respectively. At 72 h after transfection, reduced DNMT3a expression, but not DNMT1 or -3b, disrupted sarcomere assembly and decreased beating frequency, contractile movement, amplitude of field action potential, and cytosolic calcium signaling of cardiomyocytes. RNA-Seq analysis revealed that the DNMT3a-deficient cells had deactivated gene networks involved in calcium, endothelin-1, renin-angiotensin, and cardiac β-adrenergic receptor signaling, which were not inhibited by DNMT3b siRNA. Moreover, decreased methylation levels were found in the promoters of Myh7, Myh7b, Tnni3, and Tnnt2, consistent with the up-regulation of these genes by DNMT3a siRNA. These data show that DNMT3a plays an important role in regulating embryonic cardiomyocyte gene expression, morphology and function.-Fang, X., Poulsen, R. R., Wang-Hu, J., Shi, O., Calvo, N. S., Simmons, C. S., Rivkees, S. A., Wendler, C. C. Knockdown of DNA methyltransferase 3a alters gene expression and inhibits function of embryonic cardiomyocytes."	"Preprocedural High-Sensitivity Cardiac Troponin T and Clinical Outcomes in Patients With Stable Coronary Artery Disease Undergoing Elective Percutaneous Coronary Intervention. Cardiac troponin detected by new-generation, highly sensitive assays predicts clinical outcomes among patients with stable coronary artery disease (SCAD) treated medically. The prognostic value of baseline high-sensitivity cardiac troponin T (hs-cTnT) elevation in SCAD patients undergoing elective percutaneous coronary interventions is not well established. This study assessed the association of preprocedural levels of hs-cTnT with 1-year clinical outcomes among SCAD patients undergoing percutaneous coronary intervention. Between 2010 and 2014, 6974 consecutive patients were prospectively enrolled in the Bern Percutaneous Coronary Interventions Registry. Among patients with SCAD (n=2029), 527 (26%) had elevated preprocedural hs-cTnT above the upper reference limit of 14 ng/L. The primary end point, mortality within 1 year, occurred in 20 patients (1.4%) with normal hs-cTnT versus 39 patients (7.7%) with elevated baseline hs-cTnT (P&lt;0.001). Patients with elevated hs-cTnT had increased risks of all-cause (hazard ratio 5.73; 95% confidence intervals 3.34-9.83; P&lt;0.001) and cardiac mortality (hazard ratio 4.68; 95% confidence interval 2.12-10.31; P&lt;0.001). Preprocedural hs-TnT elevation remained an independent predictor of 1-year mortality after adjustment for relevant risk factors, including age, sex, and renal failure (adjusted hazard ratio 2.08; 95% confidence interval 1.10-3.92; P=0.024). A graded mortality risk was observed across higher tertiles of elevated preprocedural hs-cTnT, but not among patients with hs-cTnT below the upper reference limit. Preprocedural elevation of hs-cTnT is observed in one fourth of SCAD patients undergoing elective percutaneous coronary intervention. Increased levels of preprocedural hs-cTnT are proportionally related to the risk of death and emerged as independent predictors of all-cause mortality within 1 year. URL: http://www.clinicaltrials.gov. Unique identifier: NCT02241291."	"A series of robust genetic indicators for definitive identification of cardiomyocytes. Definitively identifying the cell type of newly generated cells in the heart and defining their origins are central questions in cardiac regenerative medicine. Currently, it is challenging to ascertain the myocardial identity and to track myocardial progeny during heart development and disease due to lack of proper genetic tools. This may lead to many misinterpretations of the findings in cardiac regenerative biology. In this study, we developed a set of novel mouse models by inserting double reporter genes nlacZ/H2B-GFP, mGFP/H2B-mCherry into the start codon of Tnnt2 and Myh6. nlacZ (nuclear lacZ) and mGFP (membrane GFP) are flanked by two LoxP sites in these animals. We found that the reporter genes faithfully recapitulated Tnnt2 and Myh6 cardiac expression from embryonic stage and adulthood. The reporter mice provide unprecedented robustness and fidelity for visualizing and tracing cardiomyocytes with nuclear or cell membrane localization signals. These animal models offer superior genetic tools to meet a critical need in studies of heart development, cardiac stem cell biology and cardiac regenerative medicine."	"A myosin activator improves actin assembly and sarcomere function of human-induced pluripotent stem cell-derived cardiomyocytes with a troponin T point mutation. We have investigated cardiac myocytes derived from human-induced pluripotent stem cells (iPSC-CMs) from two normal control and two family members expressing a mutant cardiac troponin T (cTnT-R173W) linked to dilated cardiomyopathy (DCM). cTnT is a regulatory protein of the sarcomeric thin filament. The loss of this basic charge, which is strategically located to control tension, has consequences leading to progressive DCM. iPSC-CMs serve as a valuable platform for understanding clinically relevant mutations in sarcomeric proteins; however, there are important questions to be addressed with regard to myocyte adaptation that we model here by plating iPSC-CMs on softer substrates (100 kPa) to create a more physiologic environment during recovery and maturation of iPSC-CMs after thawing from cryopreservation. During the first week of culture of the iPSC-CMs, we have determined structural and functional characteristics as well as actin assembly dynamics. Shortening, actin content, and actin assembly dynamics were depressed in CMs from the severely affected mutant at 1 wk of culture, but by 2 wk differences were less apparent. Sarcomeric troponin and myosin isoform composition were fetal/neonatal. Furthermore, the troponin complex, reconstituted with wild-type cTnT or recombinant cTnT-R173W, depressed the entry of cross-bridges into the force-generating state, which can be reversed by the myosin activator omecamtiv mecarbil. Therapeutic doses of this drug increased both contractility and the content of F-actin in the mutant iPSC-CMs. Collectively, our data suggest the use of a myosin activation reagent to restore function within patient-specific iPSC-CMs may aid in understanding and treating this familial DCM."	"Cardiac troponin T is necessary for normal development in the embryonic chick heart. The heart is the first functioning organ to develop during embryogenesis. The formation of the heart is a tightly regulated and complex process, and alterations to its development can result in congenital heart defects. Mutations in sarcomeric proteins, such as alpha myosin heavy chain and cardiac alpha actin, have now been associated with congenital heart defects in humans, often with atrial septal defects. However, cardiac troponin T (cTNT encoded by gene TNNT2) has not. Using gene-specific antisense oligonucleotides, we have investigated the role of cTNT in chick cardiogenesis. TNNT2 is expressed throughout heart development and in the postnatal heart. TNNT2-morpholino treatment resulted in abnormal atrial septal growth and a reduction in the number of trabeculae in the developing primitive ventricular chamber. External analysis revealed the development of diverticula from the ventricular myocardial wall which showed no evidence of fibrosis and still retained a myocardial phenotype. Sarcomeric assembly appeared normal in these treated hearts. In humans, congenital ventricular diverticulum is a rare condition, which has not yet been genetically associated. However, abnormal haemodynamics is known to cause structural defects in the heart. Further, structural defects, including atrial septal defects and congenital diverticula, have previously been associated with conduction anomalies. Therefore, to provide mechanistic insights into the effect that cTNT knockdown has on the developing heart, quantitative PCR was performed to determine the expression of the shear stress responsive gene NOS3 and the conduction gene TBX3. Both genes were differentially expressed compared to controls. Therefore, a reduction in cTNT in the developing heart results in abnormal atrial septal formation and aberrant ventricular morphogenesis. We hypothesize that alterations to the haemodynamics, indicated by differential NOS3 expression, causes these abnormalities in growth in cTNT knockdown hearts. In addition, the muscular diverticula reported here suggest a novel role for mutations of structural sarcomeric proteins in the pathogenesis of congenital cardiac diverticula. From these studies, we suggest TNNT2 is a gene worthy of screening for those with a congenital heart defect, particularly atrial septal defects and ventricular diverticula."	"Cardiac troponin T elevation at dialysis initiation is associated with all-cause and cardiovascular mortality on dialysis in patients without diabetic nephropathy. It is not known whether asymptomatic cardiac troponin T (cTnT) elevation is associated with all-cause or cardiovascular mortality in non-diabetic and advanced chronic kidney disease (CKD) patients. We measured cTnT in 248 consecutive patients at 1-2 weeks before dialysis initiation between March 2005 and August 2010 and followed them prospectively. A Cox proportional hazard model was used to investigate the relationship between cTnT and all-cause and cardiovascular mortality on dialysis. The median age of the patients was 67 years (male 59.3 %), and the prevalence of diabetic nephropathy (DN) was 38.3 %. Asymptomatic cTnT elevation (&gt;0.01 ng/mL) was observed in 196 (79 %) and 111 (73 %) patients among the overall patients and among patients without DN, respectively. A total of 51 patients died during a median follow-up period of 31.6 months. The cTnT level was associated with all-cause [hazard ratio (HR) 1.453; 95 % confidence interval (CI) 1.093-1.931; P = 0.010] and cardiovascular mortality [HR 1.973; 95 % CI 1.127-3.454; P = 0.017] on dialysis after extensive adjustment in the overall patient population. Patients without DN showed similar associations as those for the overall patient population (all-cause mortality: HR 1.566; 95 % CI 1.048-2.339; P = 0.029 and cardiovascular mortality: HR 2.657; 95 % CI 1.115-6.328; P = 0.027). Asymptomatic cTnT elevation might be strongly associated with all-cause and cardiovascular mortality in patients without DN, as well as in the overall advanced CKD patients. We suggest that cardiovascular risk in patients with pre-dialysis CKD should be stratified according to cTnT levels."	"Setting up Multiplex Panels for Genetic Testing of Familial Hypertrophic Cardiomyopathy Based on Linkage Analysis. Familial hypertrophic cardiomyopathy (HCM) is caused by mutations in genes encoding cardiac sarcomere proteins. Nowadays genetic testing of HCM plays an important role in clinical practice by contributing to the diagnosis, prognosis, and screening of high-risk individuals. The aim of this study was developing a reliable testing strategy for HCM based on linkage analysis and appropriate for Iranian population. Six panels of four microsatellite markers surrounding MYH7, MYBPC3, TNNT2, TNNI3, TPM1, and MYL2 genes (24 markers in total) were selected for multiplex PCR and fragment length analysis. Characteristics of markers and informativeness of the panels were evaluated in 50 unrelated Iranians. The efficacy of the strategy was verified in a family with HCM. All markers were highly polymorphic. The panels were informative in 96-100% of samples. Multipoint linkage analysis excluded the linkage between the disease and all six genes by obtaining maximum LOD score ≤-2. This study suggests a reliable genetic testing method based on linkage analysis between 6 sarcomere genes and familial HCM. It could be applied for diagnostic, predictive, or screening testing in clinical setting."	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"Simulated Microgravity Modulates Differentiation Processes of Embryonic Stem Cells. Embryonic developmental studies under microgravity conditions in space are very limited. To study the effects of altered gravity on the embryonic development processes we established an in vitro methodology allowing differentiation of mouse embryonic stem cells (mESCs) under simulated microgravity within a fast-rotating clinostat (clinorotation) and capture of microarray-based gene signatures. The differentiating mESCs were cultured in a 2D pipette clinostat. The microarray and bioinformatics tools were used to capture genes that are deregulated by simulated microgravity and their impact on developmental biological processes. The data analysis demonstrated that differentiation of mESCs in pipettes for 3 days resultet to early germ layer differentiation and then to the different somatic cell types after further 7 days of differentiation in the Petri dishes. Clinorotation influences differentiation as well as non-differentiation related biological processes like cytoskeleton related 19 genes were modulated. Notably, simulated microgravity deregulated genes Cyr61, Thbs1, Parva, Dhrs3, Jun, Tpm1, Fzd2 and Dll1 are involved in heart morphogenesis as an acute response on day 3. If the stem cells were further cultivated under normal gravity conditions (1 g) after clinorotation, the expression of cardiomyocytes specific genes such as Tnnt2, Rbp4, Tnni1, Csrp3, Nppb and Mybpc3 on day 10 was inhibited. This correlated well with a decreasing beating activity of the 10-days old embryoid bodies (EBs). Finally, we captured Gadd45g, Jun, Thbs1, Cyr61and Dll1 genes whose expressions were modulated by simulated microgravity and by real microgravity in various reported studies. Simulated microgravity also deregulated genes belonging to the MAP kinase and focal dhesion signal transduction pathways. One of the most prominent biological processes affected by simulated microgravity was the process of cardiomyogenesis. The most significant simulated microgravity-affected genes, signal transduction pathways, and biological processes which are relevant for mESCs differentiation have been identified and discussed below."	"MYBPH acts as modifier of cardiac hypertrophy in hypertrophic cardiomyopathy (HCM) patients. Left ventricular hypertrophy is a risk factor for cardiovascular morbidity and mortality. Hypertrophic cardiomyopathy (HCM) is considered a model disease to study causal molecular factors underlying isolated cardiac hypertrophy. However, HCM manifests with various clinical symptoms, even in families bearing the same genetic defects, suggesting that additional factors contribute to hypertrophy. The gene encoding the cardiac myosin binding protein C (cMYBPC) is one of the most frequently implicated genes in HCM. Recently another myosin binding protein, myosin binding protein H (MYBPH) was shown to function in concert with cMYBPC in regulating cardiomyocyte contraction. Given the similarity in sequence, structure and the critical role MYBPH plays in sarcomere contraction, we proposed that MYBPH may be involved in HCM pathogenesis. Family-based genetic association analysis was employed to investigate the contribution of MYBPH in modifying hypertrophy. Seven single nucleotide polymorphisms and haplotypes in MYBPH were investigated for hypertrophy modifying effects in 388 individuals (27 families), in which three unique South African HCM-causing founder mutations (p.R403W and pA797T in β-myosin heavy chain gene (MYH7) and p.R92W in the cardiac troponin T gene (TNNT2)) segregate. We observed a significant association between rs2250509 and hypertrophy traits in the p.A797T MYH7 mutation group. Additionally, haplotype GGTACTT significantly affected hypertrophy within the same mutation group. MYBPH was for the first time assessed as a candidate hypertrophy modifying gene. We identified a novel association between MYBPH and hypertrophy traits in HCM patients carrying the p.A797T MYH7 mutation, suggesting that variation in MYBPH can modulate the severity of hypertrophy in HCM. "	"[Mutation and clinical relevance in a large cohort of unrelated Chinese patients with hypertrophic cardiomyopathy]. To explore the genetic basis and phenotypic correlation with disease severity in a large cohort of Chinese patients with hypertrophic cardiomyopathy (HCM). A total of 179 unrelated Chinese HCM patients admitted to our department from 2002 to 2011 were enrolled in this study. Direct gene sequencing of β-myosin heavy chain (MYH7), myosin binding protein-C ( MYBPC3), and cardiac troponin T (TNNT2) were performed and clinical data were obtained in these patients. A total of 34 mutations were identified in 40 patients (22.3%), 79.4% (27/34) mutations occurred only once and a possible hot spot, A26 in MYH7, was found. Distribution of mutations was 52.9% (18/34) (MYBPC3), 35.3% (12/34) ( MYH7) and 11.8% (4/34) (TNNT2) respectively. Double mutations were identified in 2.2% (4/179) patients. Genotype-positive patients were associated with an earlier symptom onset, severer left ventricular hypertrophy, a higher incidence of syncope, and were more likely to have positive family history of HCM or sudden cardiac death (SCD) , and were more likely to progress into heart failure (24.2% vs. 5.0%, P = 0.002) and at a higher risk of SCD (9.1% vs. 0, P = 0.009) during the 6.5-year follow-up. No statistical difference in any clinical parameters and outcomes was found between patients carrying MYBPC3 and MYH7 mutations. Double mutations were associated with malignant clinical progression in this cohort. Different phenotype severity could be seen in HCM patients with same genotype (e. g. MYH7-1736T, TNNT2-R92W). MYBPC3 is the most predominant gene mutation in this HCM cohort. The presence of a sarcomere mutation in patients with HCM is associated with poor clinical outcome, although no specific genes or mutations can exactly predict the severity of clinical phenotypes."	"High-sensitivity Troponin T in relation to coronary plaque characteristics in patients with stable coronary artery disease; results of the ATHEROREMO-IVUS study. To assess the relationship between the extent and phenotype of coronary atherosclerosis, as assessed by in-vivo grayscale and radiofrequency intravascular ultrasound (IVUS), and circulating Troponin levels in patients with established stable coronary artery disease (CAD). In this single-center, cross-sectional analysis, high-sensitivity Troponin T (hsTnT) was measured and IVUS was performed in a predefined non-stenotic segment of a non-culprit coronary artery in 231 patients with stable CAD undergoing elective angiography. HsTnT was detectable (&gt;3 pg/mL) in 212 patients (92%) and a concentration above 14 pg/mL was observed in 19.5%. Normalised segmental plaque volumes were positively associated with hsTnT levels (25.0 mm(3) increase in segmental plaque volume per SD increase in ln-transformed hsTnT, 95% CI: 6.0-44.0, p = 0.010). Higher hsTnT levels were measured in patients with a virtual histology derived thin-cap fibroatheroma (VH-TCFA, adj. odds ratio for presence of VH-TCFA = 1.52 per SD increase in ln-transformed hsTnT, 95% CI: 1.10-2.11, p = 0.011). Patients with a VH-TCFA had a 2-fold increased prevalence of hsTnT concentration ≥14 pg/mL (adj. OR 2.35, 95% CI: 1.12-4.91, p = 0.024). In addition, a 3-fold increased prevalence of hsTnT concentration ≥14 pg/mL was observed in patients with a VH-TCFA with a lesional plaque volume higher than the median (adj. OR 3.36, 95% CI: 1.44-7.84, p = 0.005). Segmental plaque volume and presence of VH-TCFA lesions are associated with higher circulating hsTnT concentrations in stable CAD patients. Subclinical plaque rupture or erosion and distal embolisation may be hypothesized as a potential pathophysiological mechanism with respect to Troponin elevation and its relation with adverse outcome in this patient population."	"High-sensitivity cardiac troponin T: A biomarker for the early risk stratification of type-A acute aortic dissection? High-sensitivity cardiac troponin is the most specific and sensitive biomarker of myocardial injury. However, no study has investigated whether the early concentration of high-sensitivity cardiac troponin is increased or is of value in predicting short-term prognosis in patients with type-A acute aortic dissection (AAD) in the emergency department. To measure the high-sensitivity cardiac troponin T (hs-TnT) concentration in patients with type-A AAD upon hospital admission, and to assess its value in predicting short-term prognosis. We enrolled consecutive patients with type-A AAD. Blood samples were collected on admission; hs-TnT concentrations were measured on the Elecsys 2010 system. High-sensitivity C-reactive protein (hs-CRP), D-dimer and other biochemical indicators were measured. Patients were divided into two groups according to hs-TnT concentration on admission (&lt; or ≥0.014ng/mL). More than half (61.2%) of the 103 included patients had an hs-TnT concentration ≥0.014ng/mL. hs-TnT concentrations were significantly higher in those who died compared with survivors (0.292±0.516 vs. 0.069±0.154ng/mL; P=0.003). Multivariable Cox regression analysis suggested that hs-TnT is an independent factor for predicting in-hospital mortality risk (odds ratio: 2.202, 95% confidence interval: 1.111-4.367; P=0.024). Kaplan-Meier curves revealed a significant increase in hospital mortality in the hs-TnT(+) group compared with the hs-TnT(-) group (P=0.021). When hs-TnT was ≥0.042ng/mL, the sensitivity and specificity in predicting hospital short-term mortality were 70.8% and 76.4%, respectively. Our study suggests that hs-TnT concentration could be used as an early biomarker for the risk stratification of patients with type-A AAD in the emergency department; the relationship between hs-TnT concentration and long-term prognosis needs further investigation."	"Post-Procedural Troponin Elevation and Clinical Outcomes Following Transcatheter Aortic Valve Implantation. Biomarkers of myocardial injury increase frequently during transcatheter aortic valve implantation (TAVI). The impact of postprocedural cardiac troponin (cTn) elevation on short-term outcomes remains controversial, and the association with long-term prognosis is unknown. We evaluated 577 consecutive patients with severe aortic stenosis treated with TAVI between 2007 and 2012. Myocardial injury, defined according to the Valve Academic Research Consortium (VARC)-2 as post-TAVI cardiac troponin T (cTnT) &gt;15× the upper limit of normal, occurred in 338 patients (58.1%). In multivariate analyses, myocardial injury was associated with higher risk of all-cause mortality at 30 days (adjusted hazard ratio [HR], 8.77; 95% CI, 2.07-37.12; P=0.003) and remained a significant predictor at 2 years (adjusted HR, 1.98; 95% CI, 1.36-2.88; P&lt;0.001). Higher cTnT cutoffs did not add incremental predictive value compared with the VARC-2-defined cutoff. Whereas myocardial injury occurred more frequently in patients with versus without coronary artery disease (CAD), the relative impact of cTnT elevation on 2-year mortality did not differ between patients without CAD (adjusted HR, 2.59; 95% CI, 1.27-5.26; P=0.009) and those with CAD (adjusted HR, 1.71; 95% CI, 1.10-2.65; P=0.018; P for interaction=0.24). Mortality rates at 2 years were lowest in patients without CAD and no myocardial injury (11.6%) and highest in patients with complex CAD (SYNTAX score &gt;22) and myocardial injury (41.1%). VARC-2-defined cTnT elevation emerged as a strong, independent predictor of 30-day mortality and remained a modest, but significant, predictor throughout 2 years post-TAVI. The prognostic value of cTnT elevation was modified by the presence and complexity of underlying CAD with highest mortality risk observed in patients combining SYNTAX score &gt;22 and evidence of myocardial injury."	"Impact of Genotype on the Occurrence of Atrial Fibrillation in Patients With Hypertrophic Cardiomyopathy. Genes associated with hypertrophic cardiomyopathy (HC) are not uniformly expressed in the atrial myocardium. Whether this may impact susceptibility to atrial fibrillation (AF) is unresolved. To analyze the prevalence and clinical correlates of AF in relation to genotype in a large HC cohort, prevalence and clinical profile of AF were assessed in 237 patients with HC, followed for 14 ± 10 years. Patients were divided into 3 genetic subgroups: (1) MYBPC3 (58%), (2) MYH7 (28%), and (3) &quot;other genotypes&quot; (14%; comprising TNNT2, TNNI3, TPM1, MYL2, complex genotypes, Z-line, and E-C coupling genes). Left atrial size was similar in the 3 subsets. AF occurred in 74 patients with HC (31%), with no difference among groups (31% in MYBPC3, 37% in MYH7 and 18% in other genotypes, p = 0.15), paroxysmal/persistent AF (12%, 18%, and 12%, respectively; p = 0.53), paroxysmal/persistent evolved to permanent (12%, 12%, and 3%, p = 0.36) or permanent AF (7%, 7%, and 3%, p = 0.82). Age at AF onset was younger in the group with other genotypes (37 ± 10 years) compared to the first 2 groups (53 ± 14 and 51 ± 17, respectively; p = 0.05) because of early onset associated with complex genotypes and a specific JPH2 mutation associated with abnormal intracellular calcium handling. At multivariate analysis, independent predictors of AF were atrial diameter (p ≤0.05) and age at diagnosis (p = 0.09), but not genetic subtype (p = 0.35). In conclusion, in patients with HC, genetic testing cannot be used in clinical decision making with regard to management strategies for AF. Genotype is not predictive of onset or severity of AF, which appears rather driven by hemodynamic determinants of atrial dilatation. Exceptions are represented by rare genes suggesting specific molecular pathways for AF in genetic cardiomyopathies."	"Effect of Coronary Atherosclerosis and Myocardial Ischemia on Plasma Levels of High-Sensitivity Troponin T and NT-proBNP in Patients With Stable Angina. Circulating levels of high-sensitivity cardiac troponin T (hs-cTnT) and N terminal pro brain natriuretic peptide (NT-proBNP) are predictors of prognosis in patients with coronary artery disease (CAD). We aimed at evaluating the effect of coronary atherosclerosis and myocardial ischemia on cardiac release of hs-cTnT and NT-proBNP in patients with suspected CAD. Hs-cTnT and NT-proBNP were measured in 378 patients (60.1±0.5 years, 229 males) with stable angina and unknown CAD enrolled in the Evaluation of Integrated Cardiac Imaging (EVINCI) study. All patients underwent stress imaging to detect myocardial ischemia and coronary computed tomographic angiography to assess the presence and characteristics of CAD. An individual computed tomographic angiography score was calculated combining extent, severity, composition, and location of plaques. In the whole population, the median (25-75 percentiles) value of plasma hs-cTnT was 6.17 (4.2-9.1) ng/L and of NT-proBNP was 61.66 (31.2-132.6) ng/L. In a multivariate model, computed tomographic angiography score was an independent predictor of the plasma hs-cTnT (coefficient 0.06, SE 0.02; P=0.0089), whereas ischemia was a predictor of NT-proBNP (coefficient 0.38, SE 0.12; P=0.0015). Hs-cTnT concentrations were significantly increased in patients with CAD with or without myocardial ischemia (P&lt;0.005), whereas only patients with CAD and ischemia showed significantly higher levels of NT-proBNP (P&lt;0.001). In patients with stable angina, the presence and extent of coronary atherosclerosis is related with circulating levels of hs-cTnT, also in the absence of ischemia, suggesting an ischemia-independent mechanism of hs-cTnT release. Obstructive CAD causing myocardial ischemia is associated with increased levels of NT-proBNP."	"Steroidal and Nonsteroidal Mineralocorticoid Receptor Antagonists Cause Differential Cardiac Gene Expression in Pressure Overload-induced Cardiac Hypertrophy. Pharmacological blockade of mineralocorticoid receptors (MR) is known as an efficacious therapy in chronic heart failure. Therapy with steroidal MR antagonists such as spironolactone or eplerenone (EPL) is often limited because of side effects. Recently, a new highly selective and potent, nonsteroidal MR antagonist, finerenone (FIN), has been developed. To investigate the effects of FIN on pressure-induced cardiac hypertrophy, the transverse aortic constriction (TAC) model was used in C57BL/6 mice treated with FIN (10 mg·kg·d), EPL (200 mg·kg·d) or vehicle (VEH). First, we analyzed cardiac gene expression 4 weeks after TAC using a pathway-focused quantitative polymerase chain reaction array. FIN caused a distinct cardiac gene expression profile compared to VEH and EPL, including differential expression of BNP (brain natriuretic peptide) and Tnnt2 (troponin T type 2). FIN treatment led to a significant reduction of TAC-induced left ventricular (LV) wall thickening assessed by echocardiography. In accordance, FIN-treated mice showed a significant lower increase of calculated left ventricular mass compared with VEH- and EPL-treated mice (FIN: 28.4 ± 3.7 mg; EPL: 38.4 ± 4.3 mg; VEH: 39.3 ± 3.1 mg; P &lt; 0.05). These data show beneficial effects of nonsteroidal MR antagonism by FIN on left ventricular mass development in pressure overload associated with a distinct cardiac gene expression profile."	"CELF4 Variant and Anthracycline-Related Cardiomyopathy: A Children's Oncology Group Genome-Wide Association Study. Interindividual variability in the dose-dependent association between anthracyclines and cardiomyopathy suggests that genetic susceptibility could play a role. The current study uses an agnostic approach to identify genetic variants that could modify cardiomyopathy risk. A genome-wide association study was conducted in childhood cancer survivors with and without cardiomyopathy (cases and controls, respectively). Single-nucleotide polymorphisms (SNPs) that surpassed a prespecified threshold for statistical significance were independently replicated. The possible mechanistic significance of validated SNP(s) was sought by using healthy heart samples. No SNP was marginally associated with cardiomyopathy. However, SNP rs1786814 on the CELF4 gene passed the significance cutoff for gene-environment interaction (Pge = 1.14 × 10(-5)). Multivariable analyses adjusted for age at cancer diagnosis, sex, anthracycline dose, and chest radiation revealed that, among patients with the A allele, cardiomyopathy was infrequent and not dose related. However, among those exposed to greater than 300 mg/m(2) of anthracyclines, the rs1786814 GG genotype conferred a 10.2-fold (95% CI, 3.8- to 27.3-fold; P &lt; .001) increased risk of cardiomyopathy compared with those who had GA/AA genotypes and anthracycline exposure of 300 mg/m(2) or less. This gene-environment interaction was successfully replicated in an independent set of anthracycline-related cardiomyopathy. CUG-BP and ETR-3-like factor proteins control developmentally regulated splicing of TNNT2, the gene that encodes for cardiac troponin T (cTnT), a biomarker of myocardial injury. Coexistence of more than one cTnT variant results in a temporally split myofilament response to calcium, which causes decreased contractility. Analysis of TNNT2 splicing variants in healthy human hearts suggested an association between the rs1786814 GG genotype and coexistence of more than one TNNT2 splicing variant (90.5% GG v 41.7% GA/AA; P = .005). We report a modifying effect of a polymorphism of CELF4 (rs1786814) on the dose-dependent association between anthracyclines and cardiomyopathy, which possibly occurs through a pathway that involves the expression of abnormally spliced TNNT2 variants."	"Electrical Stimulation Promotes Cardiac Differentiation of Human Induced Pluripotent Stem Cells. Background. Human induced pluripotent stem cells (iPSCs) are an attractive source of cardiomyocytes for cardiac repair and regeneration. In this study, we aim to determine whether acute electrical stimulation of human iPSCs can promote their differentiation to cardiomyocytes. Methods. Human iPSCs were differentiated to cardiac cells by forming embryoid bodies (EBs) for 5 days. EBs were then subjected to brief electrical stimulation and plated down for 14 days. Results. In iPS(Foreskin)-2 cell line, brief electrical stimulation at 65 mV/mm or 200 mV/mm for 5 min significantly increased the percentage of beating EBs present by day 14 after plating. Acute electrical stimulation also significantly increased the cardiac gene expression of ACTC1, TNNT2, MYH7, and MYL7. However, the cardiogenic effect of electrical stimulation was not reproducible in another iPS cell line, CERA007c6. Beating EBs from control and electrically stimulated groups expressed various cardiac-specific transcription factors and contractile muscle markers. Beating EBs were also shown to cycle calcium and were responsive to the chronotropic agents, isoproterenol and carbamylcholine, in a concentration-dependent manner. Conclusions. Our results demonstrate that brief electrical stimulation can promote cardiac differentiation of human iPS cells. The cardiogenic effect of brief electrical stimulation is dependent on the cell line used. "	"Genetic profile of hypertrophic cardiomyopathy in Tunisia: Is it different? We recently performed next generation sequencing (NGS) genetic screening in 11 consecutive and unrelated Tunisian HCM probands seen at Habib Thameur Hospital in Tunis in the first 6 months of 2014, as part of a cooperative study between our Institutions. The clinical diagnosis of HCM was made according to standard criteria. Using the Illumina platform, a panel of 12 genes was analyzed including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2 and MYL3), troponin-T (TNNT2), troponin-I (TNNI3), troponin-C (TNNC1), alpha-tropomyosin (TPM1), alpha-actin (ACTC1), alpha-actinin-2 (ACTN2) as well as alfa-galactosidase (GLA), 5'-AMP-activated protein (PKRAG2), transthyretin (TTR) and lysosomal-associated membrane protein-2 (LAMP2) for exclusion of phenocopies. Our preliminary data, despite limitations inherent to the small sample size, suggest that HCM in Tunisia may have a peculiar genetic background which privileges rare genes overs the classic HCM-associated MHY7 and MYBPC3 genes. "	"TNNT1, TNNT2, and TNNT3: Isoform genes, regulation, and structure-function relationships. Troponin T (TnT) is a central player in the calcium regulation of actin thin filament function and is essential for the contraction of striated muscles. Three homologous genes have evolved in vertebrates to encode three muscle type-specific TnT isoforms: TNNT1 for slow skeletal muscle TnT, TNNT2 for cardiac muscle TnT, and TNNT3 for fast skeletal muscle TnT. Alternative splicing and posttranslational modifications confer additional structural and functional variations of TnT during development and muscle adaptation to various physiological and pathological conditions. This review focuses on the TnT isoform genes and their molecular evolution, alternative splicing, developmental regulation, structure-function relationships of TnT proteins, posttranslational modifications, and myopathic mutations and abnormal splicing. The goal is to provide a concise summary of the current knowledge and some perspectives for future research and translational applications. "	"Exome Sequencing Identifies Pathogenic and Modifier Mutations in a Child With Sporadic Dilated Cardiomyopathy. Idiopathic dilated cardiomyopathy (DCM) is typically diagnosed in adulthood, yet familial cases exhibit variable age-dependent penetrance and a subset of patients develop sporadic DCM in childhood. We sought to discover the molecular basis of sporadic DCM in an 11-year-old female with severe heart failure necessitating cardiac transplantation. Parental echocardiograms excluded asymptomatic DCM. Whole exome sequencing was performed on the family trio and filtered for rare, deleterious, recessive, and de novo variants. Of the 8 candidate genes identified, only 2 had a role in cardiac physiology. A de novo missense mutation in TNNT2 was identified, previously reported and functionally validated in familial DCM with markedly variable penetrance. Additionally, recessive compound heterozygous truncating mutations were identified in XIRP2, a member of the ancient Xin gene family, which governs intercalated disc (ICD) maturation. Histomorphological analysis of explanted heart tissue revealed misregistration, mislocalization, and shortening of ICDs, findings similar to Xirp2(-/-) mice. The synergistic effects of TNNT2 and XIRP2 mutations, resulting in perturbed sarcomeric force generation and transmission, respectively, would account for an early-onset heart failure phenotype. Whereas the importance of Xin proteins in cardiac development has been well established in animal models, this study implicates XIRP2 as a novel modifier gene in the pathogenesis of DCM."	"The Ups and Downs of Genetic Diagnosis of Hypertrophic Cardiomyopathy. Massive DNA sequencing, also known as next-generation sequencing, has revolutionized genetic diagnosis. This technology has reduced the effort and cost needed to analyze several genes simultaneously and has made genetic evaluation available to a larger number of patients. In hypertrophic cardiomyopathy, genetic analysis has increased from the 3 main genes implicated in the disease (MYH7, MYBPC3, TNNT2) to sequencing of more than 20 related genes. Despite the advantages of acquiring this additional information, many patients show variants of uncertain significance (mainly amino acid changes), which may also be present in at least 1 healthy control undergoing genome sequencing. This will be a dead-end situation unless the variant can be demonstrated to be associated with the disease in the patient's family. In the absence of clear evidence that these variants are truly pathogenic, they cannot be used for reliable genetic counselling in family members. Massive sequencing also enables identification of new candidate genes, but again, the problem of variants of uncertain significance limits the success of these assessments. "	"Hybrid hydrogel-aligned carbon nanotube scaffolds to enhance cardiac differentiation of embryoid bodies. Carbon nanotubes (CNTs) were aligned in gelatin methacryloyl (GelMA) hydrogels using dielectrophoresis approach. Mouse embryoid bodies (EBs) were cultured in the microwells fabricated on the aligned CNT-hydrogel scaffolds. The GelMA-dielectrophoretically aligned CNT hydrogels enhanced the cardiac differentiation of the EBs compared with the pure GelMA and GelMA-random CNT hydrogels. This result was confirmed by Troponin-T immunostaining, the expression of cardiac genes (i.e., Tnnt2, Nkx2-5, and Actc1), and beating analysis of the EBs. The effect on EB properties was significantly enhanced by applying an electrical pulse stimulation (frequency, 1Hz; voltage, 3V; duration, 10ms) to the EBs for two continuous days. Taken together, the fabricated hybrid hydrogel-aligned CNT scaffolds with tunable mechanical and electrical characteristics offer an efficient and controllable platform for electrically induced differentiation and stimulation of stem cells for potential tissue regeneration and cell therapy applications. Dielectrophoresis approach was used to rapidly align carbon nanotubes (CNTs) in gelatin methacryloyl (GelMA) hydrogels resulting in hybrid GelMA-CNT hydrogels with tunable and anisotropic electrical and mechanical properties. The GelMA-aligned CNT hydrogels may be used to apply accurate and controllable electrical pulses to cell and tissue constructs and thereby regulating their behavior and function. In this work, it was demonstrated that the GelMA hydrogels containing the aligned CNTs had superior performance in cardiac differentiation of stem cells upon applying electrical stimulation in contrast with control gels. Due to broad use of electrical stimulation in tissue engineering and stem cell differentiation, it is envisioned that the GelMA-aligned CNT hydrogels would find wide applications in tissue regeneration and stem cell therapy."	"Discordant cardiac biomarker levels independently predict outcome in ST-segment elevation myocardial infarction. To investigate the prognostic relevance of elevated Troponin T (cTnT) levels in patients with ST-segment elevation myocardial infarction (STEMI) without significant creatine kinase (CK) elevation on admission. From January 1, 2002 to December 31, 2006 patients with STEMI without significant CK elevation (&lt;2-fold) on admission treated with percutaneous coronary intervention (PCI) were included and stratified according to cTnT plasma levels. Univariate and multivariate regression analyses were used to find independent predictors for mortality. During the 5-year period 514 patients with STEMI and normal CK plasma levels were included. 308 (59.9 %) patients had cTnT levels &lt;0.1 μg/l and 206 (40.1 %) patients had cTnT levels ≥0.1 μg/l. Multivariate logistic regression analysis identified cTnT levels ≥0.1 μg/l and 3-vessel disease as positive, and hemoglobin levels as negative independent predictors for long-term mortality. Discordantly elevated cTnT plasma levels independently predicted higher mortality rates in the first year (HR 3.9, 95 % CI 1.7-9.1, p = 0.002) and during 5 years (HR 2.3, 95 % CI 1.4-3.9, p = 0.002) after PCI for STEMI. Discordant elevation of cTnT in the presence of normal CK plasma levels on admission is associated with increased mortality in STEMI patients undergoing primary PCI. This may be due to preceding microembolization."	"Low-dose exposure of silica nanoparticles induces cardiac dysfunction via neutrophil-mediated inflammation and cardiac contraction in zebrafish embryos. The toxicity mechanism of nanoparticles on vertebrate cardiovascular system is still unclear, especially on the low-level exposure. This study was to explore the toxic effect and mechanisms of low-dose exposure of silica nanoparticles (SiNPs) on cardiac function in zebrafish embryos via the intravenous microinjection. The dosage of SiNPs was based on the no observed adverse effect level (NOAEL) of malformation assessment in zebrafish embryos. The mainly cardiac toxicity phenotypes induced by SiNPs were pericardial edema and bradycardia but had no effect on atrioventricular block. Using o-Dianisidine for erythrocyte staining, the cardiac output of zebrafish embryos was decreased in a dose-dependent manner. Microarray analysis and bioinformatics analysis were performed to screen the differential expression genes and possible pathway involved in cardiac function. SiNPs induced whole-embryo oxidative stress and neutrophil-mediated cardiac inflammation in Tg(mpo:GFP) zebrafish. Inflammatory cells were observed in atrium of SiNPs-treated zebrafish heart by histopathological examination. In addition, the expression of TNNT2 protein, a cardiac contraction marker in heart tissue had been down-regulated compared to control group using immunohistochemistry. Confirmed by qRT-PCR and western blot assays, results showed that SiNPs inhibited the calcium signaling pathway and cardiac muscle contraction via the down-regulated of related genes, such as ATPase-related genes (atp2a1l, atp1b2b, atp1a3b), calcium channel-related genes (cacna1ab, cacna1da) and the regulatory gene tnnc1a for cardiac troponin C. Moreover, the protein level of TNNT2 was decreased in a dose-dependent manner. For the first time, our results demonstrated that SiNPs induced cardiac dysfunction via the neutrophil-mediated cardiac inflammation and cardiac contraction in zebrafish embryos. "	"TNNT2 Gene Polymorphisms are Associated with Susceptibility to Idiopathic Dilated Cardiomyopathy in Kazak and Han Chinese. Dilated cardiomyopathy (DCM) is characterized by left ventricular enlargement, systolic dysfunction, and heart failure. Both genetic and non-genetic factors have been linked to DCM pathogenesis. Familial DCM (FDCM) accounts for 20%-50% of all DCM cases, highlighting the importance of genetics in pathogenesis. Indeed, more than 40 DCM-associated genes have been identified, including the gene encoding cardiac troponin T type-2 (TNNT2). We examined polymorphisms of the TNNT2 gene in idiopathic DCM (IDCM) patients of Kazak and Han ethnicity compared with healthy Kazak and Han controls. Peripheral blood samples were collected from 180 patients with IDCM (90 Kazak and 90 Han), and 180 healthy controls (90 Kazak and 90 Han). PCR was used to amplify 15 exons and nearby introns of the TNNT2 gene. The amplified products were sequenced and compared to the standard sequence in PubMed by BLAST and CHROMAS software, to identify mutation sites. Results from Kazak and Han IDCM patients were complied for Hardy-Weinberg equilibrium analysis. There was a significant difference in the genotype distribution (χ2=6.67, P=0.015) and allele frequency (χ2=5.71, P=0.017) between Kazaks with IDCM and Kazak controls of SNP rs3729547. There was also a difference in the genotype distribution (χ2=6.62, P=0.036) and allele frequency (χ2=4.91, P=0.018) between Han with IDCM and Han controls. The TNNT2 gene polymorphism loci rs3729547 may be associated with the IDCM onset in Kazak and Han patients (OR=2.5, 95% CI: 1.233~5.068). The TNNT2 polymorphisms might play an important role in susceptibility to DCM in Xinjiang Kazak and Han patients."	"Clinical and Prognostic Profiles of Cardiomyopathies Caused by Mutations in the Troponin T Gene. Mutations in the troponin T gene (TTNT2) have been associated in small studies with the development of hypertrophic cardiomyopathy characterized by a high risk of sudden death and mild hypertrophy. We describe the clinical course of patients carrying mutations in this gene. We analyzed the clinical characteristics and prognosis of patients with mutations in the TNNT2 gene who were seen in an inherited cardiac disease unit. Of 180 families with genetically studied cardiomyopathies, 21 families (11.7%) were identified as having mutations in TNNT2: 10 families had Arg92Gln, 5 had Arg286His, 3 had Arg278Cys, 1 had Arg92Trp, 1 had Arg94His, and 1 had Ile221Thr. Thirty-three additional genetic carriers were identified through family assessment. The study included 54 genetic carriers: 56% were male, and the mean average age was 41 ± 17 years. There were 33 cases of hypertrophic cardiomyopathy, 9 of dilated cardiomyopathy, and 1 of noncompaction cardiomyopathy, and maximal myocardial thickness was 18.5 ± 6mm. Ventricular dysfunction was present in 30% of individuals and a history of sudden death in 62%. During follow-up, 4 patients died and 14 (33%) received a defibrillator (8 probands, 6 relatives). Mean survival was 54 years. Carriers of Arg92Gln had early disease development, high penetrance, a high risk of sudden death, a high rate of defibrillator implantation, and a high frequency of mixed phenotype. Mutations in the TNNT2 gene were more common in this series than in previous studies. The clinical and prognostic profiles depended on the mutation present. Carriers of the Arg92Gln mutation developed hypertrophic or dilated cardiomyopathy and had a significantly worse prognosis than those with other mutations in TNNT2 or other sarcomeric genes."	"Establishing disease causality for a novel gene variant in familial dilated cardiomyopathy using a functional in-vitro assay of regulated thin filaments and human cardiac myosin. As next generation sequencing for the genetic diagnosis of cardiovascular disorders becomes more widely used, establishing causality for putative disease causing variants becomes increasingly relevant. Diseases of the cardiac sarcomere provide a particular challenge in this regard because of the complexity of assaying the effect of genetic variants in human cardiac contractile proteins. In this study we identified a novel variant R205Q in the cardiac troponin T gene (TNNT2). Carriers of the variant allele exhibited increased chamber volumes associated with decreased left ventricular ejection fraction. To clarify the causal role of this variant, we generated recombinant variant human protein and examined its calcium kinetics as well as the maximally activated ADP release of human β-cardiac myosin with regulated thin filaments containing the mutant troponin T. We found that the R205Q mutation significantly decreased the calcium sensitivity of the thin filament by altering the effective calcium dissociation kinetics. The development of moderate throughput post-genomic assays is an essential step in the realization of the potential of next generation sequencing. Although technically challenging, biochemical and functional assays of human cardiac contractile proteins of the thin filament can be achieved and provide an orthogonal source of information to inform the question of causality for individual variants."	"Differential responses of induced pluripotent stem cell-derived cardiomyocytes to anisotropic strain depends on disease status. Primary dilated cardiomyopathy (DCM) is a non-ischemic heart disease with impaired pumping function of the heart. In this study, we used human induced pluripotent stem cell-derived cardiomyocytes (iPSC-CMs) from a healthy volunteer and a primary DCM patient to investigate the impact of DCM on iPSC-CMs׳ responses to different types of anisotropic strain. A bioreactor system was established that generates cardiac-mimetic forces of 150 kPa at 5% anisotropic cyclic strain and 1 Hz frequency. After confirming cardiac induction of the iPSCs, it was determined that fibronectin was favorable to other extracellular matrix protein coatings (gelatin, laminin, vitronectin) in terms of viable cell area and density, and was therefore selected as the coating for further study. When iPSC-CMs were exposed to three strain conditions (no strain, 5% static strain, and 5% cyclic strain), the static strain elicited significant induction of sarcomere components in comparison to other strain conditions. However, this induction occurred only in iPSC-CMs from a healthy volunteer (&quot;control iPSC-CMs&quot;), not in iPSC-CMs from the DCM patient (&quot;DCM iPSC-CMs&quot;). The donor type also significantly influenced gene expressions of cell-cell and cell-matrix interaction markers in response to the strain conditions. Gene expression of connexin-43 (cell-cell interaction) had a higher fold change in healthy versus diseased iPSC-CMs under static and cyclic strain, as opposed to integrins α-5 and α-10 (cell-matrix interaction). In summary, our iPSC-CM-based study to model the effects of different strain conditions suggests that intrinsic, genetic-based differences in the cardiomyocyte responses to strain may influence disease manifestation in vivo."	"Severity of hypoxia modulates effect of CPAP on myocardial stress as measured by highly sensitive troponin T. NA"	"Targeted next-generation sequencing of candidate genes reveals novel mutations in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a major cause of sudden cardiac death and heart failure, and it is characterized by genetic and clinical heterogeneity, even for some patients with a very poor clinical prognosis; in the majority of cases, DCM necessitates a heart transplant. Genetic mutations have long been considered to be associated with this disease. At present, mutations in over 50 genes related to DCM have been documented. This study was carried out to elucidate the characteristics of gene mutations in patients with DCM. The candidate genes that may cause DCM include MYBPC3, MYH6, MYH7, LMNA, TNNT2, TNNI3, MYPN, MYL3, TPM1, SCN5A, DES, ACTC1 and RBM20. Using next-generation sequencing (NGS) and subsequent mutation confirmation with traditional capillary Sanger sequencing analysis, possible causative non-synonymous mutations were identified in ~57% (12/21) of patients with DCM. As a result, 7 novel mutations (MYPN, p.E630K; TNNT2, p.G180A; MYH6, p.R1047C; TNNC1, p.D3V; DES, p.R386H; MYBPC3, p.C1124F; and MYL3, p.D126G), 3 variants of uncertain significance (RBM20, p.R1182H; MYH6, p.T1253M; and VCL, p.M209L), and 2 known mutations (MYH7, p.A26V and MYBPC3, p.R160W) were revealed to be associated with DCM. The mutations were most frequently found in the sarcomere (MYH6, MYBPC3, MYH7, TNNC1, TNNT2 and MYL3) and cytoskeletal (MYPN, DES and VCL) genes. As genetic testing is a useful tool in the clinical management of disease, testing for pathogenic mutations is beneficial to the treatment of patients with DCM and may assist in predicting disease risk for their family members before the onset of symptoms."	"Use of high-throughput targeted exome-sequencing to screen for copy number variation in hypertrophic cardiomyopathy. The role of copy-number variants (CNV) as a cause of hypertrophic cardiomyopathy (HCM) is poorly studied. The aim of this study was to use high-throughput sequence (HTS) data combined with a read-depth strategy, to screen for CNV in cardiomyopathy-associated genes in a large consecutive cohort of HCM patients. Five-hundred-and-five unrelated HCM patients were genotyped using a HTS approach for 41 cardiovascular genes. We used a previously validated read-depth strategy (ExomeDepth) to call CNVs from the short-read sequence data. Detected CNVs in 19 cardiomyopathy-associated genes were then validated by comparative genomic hybridization array. Twelve CNVs were identified. Four CNVs in 4 patients (0.8% of the cohort) were validated: one large deletion in MYBPC3, one large deletion in PDLIM3, one duplication of the entire TNNT2 gene and one large duplication in LMNA. Our data suggest that the proportion of HCM cases with pathogenic CNVs is small (&lt;1%). For the small subset of patients with clearly interpretable CNVs, our findings have direct clinical implications. Short read sequence data can be used for CNV calling, but the high false positive rate requires a validation step. The two-step strategy described here is effective at identifying novel genetic causes of HCM and similar techniques should be applied whenever possible."	"High-Sensitivity Cardiac Troponin T in Patients with Acute Myocardial Infarction in Acute Exacerbation of Chronic Obstructive Pulmonary Disease. In clinical work, patients with acute exacerbation of chronic obstructive pulmonary disease (AECOPD) often have high-sensitivity cardiac troponin T (hs-cTnT) levels that surpass the 99th percentile of the normal reference population, a cutoff used to screen patients for acute myocardial infarction (AMI). However, a large proportion of these patients prove not to have AMI and are frequently misdiagnosed and overtreated. We analyzed whether the cutoff value of hs-cTnT for diagnosing AMI in AECOPD patients should be adjusted. This was a prospective study of 873 consecutive patients with AECOPD who presented at the emergency department of West China Hospital of Sichuan University from January 2010 to December 2013. Conventional cardiac troponin (cTnT) was measured in patients' blood samples taken at presentation, and values were compared with their final diagnoses. Among patients with a final diagnosis other than AMI, 64.64% had a plasma hs-cTnT concentration above the 99th percentile of a normal reference population (14 ng/L). The median level of hs-cTnT in AECOPD patients without AMI was 16 ng/L. The area under the receiver-operating characteristic curve (AUC) of hs-cTnT for diagnosis of AMI was 0.92 (0.85 - 0.99, p &lt; 0.001) with a cutoff value of 60.5 ng/L. The baseline levels of hs-cTnT were relatively high in AECOPD patients, and the optimal cutoff value of hs-cTnT for AMI diagnosis (60.5 ng/L) was also higher than that for non-AECOPD patients."	"Significance of sarcomere gene mutation in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a myocardial disease with a high mortality rate. Approximately 40 genes have been found to be associated with DCM to date. Non-familial DCM can also be caused by gene mutations, suggesting that genetic factors were involved in the pathogenesis of DCM; therefore genetic testing is beneficial for the early diagnosis of DCM, which can facilitate the implementation of preventive measures by and within patient's families. Here, we investigated the underlying genetic mutations involved in the cause of patients with DCM. This prospective study included 240 patients with idiopathic DCM and 240 healthy volunteers. Subject clinical data were collected and polymerase chain reaction amplification was carried out on subject DNA for three candidate genes tropomyosin (TPM1), cardiac troponin T type-2 (TNNT2), and nuclear lamina protein A/C. Single nucleotide polymorphism (SNP) loci were detected in the TPM1 (rs1071646) and TNNT2 (rs3729547) genes, respectively. The genotype distributions and allele frequencies were found to satisfy Hardy-Weinberg equilibrium, which indicated that the group was representative. Statistically significant differences were found between the variant frequencies in the two SNP loci between the Kazakh patients with idiopathic DCM (IDCM) and healthy volunteers. A significant difference in the genotype distributions (P = 0.000) and allele frequencies (P = 0.000) of SNP rs1071646, and another significant difference in the genotype distributions (P = 0.000) and allele frequencies (P = 0.039) of SNP rs3729547 between Kazakhs with IDCM and Kazakh controls. These results suggest that the TPM1 (rs1071646) and TNNT2 (rs3729547) gene variants might represent risk factors for patients with DCM in the Kazakh population."	"AAV6-mediated Cardiac-specific Overexpression of Ribonucleotide Reductase Enhances Myocardial Contractility. Impaired systolic function, resulting from acute injury or congenital defects, leads to cardiac complications and heart failure. Current therapies slow disease progression but do not rescue cardiac function. We previously reported that elevating the cellular 2 deoxy-ATP (dATP) pool in transgenic mice via increased expression of ribonucleotide reductase (RNR), the enzyme that catalyzes deoxy-nucleotide production, increases myosin-actin interaction and enhances cardiac muscle contractility. For the current studies, we initially injected wild-type mice retro-orbitally with a mixture of adeno-associated virus serotype-6 (rAAV6) containing a miniaturized cardiac-specific regulatory cassette (cTnT(455)) composed of enhancer and promotor portions of the human cardiac troponin T gene (TNNT2) ligated to rat cDNAs encoding either the Rrm1 or Rrm2 subunit. Subsequent studies optimized the system by creating a tandem human RRM1-RRM2 cDNA with a P2A self-cleaving peptide site between the subunits. Both rat and human Rrm1/Rrm2 cDNAs resulted in RNR enzyme overexpression exclusively in the heart and led to a significant elevation of left ventricular (LV) function in normal mice and infarcted rats, measured by echocardiography or isolated heart perfusions, without adverse cardiac remodeling. Our study suggests that increasing RNR levels via rAAV-mediated cardiac-specific expression provide a novel gene therapy approach to potentially enhance cardiac systolic function in animal models and patients with heart failure. "	"High-sensitivity cardiac troponin T is more helpful in detecting peri-operative myocardial injury and apoptosis during coronary artery bypass graft surgery. To determine whether there is a correlation between cardiac markers and peri-operative myocardial injury (PMI) and apoptosis in coronary artery bypass graft (CABG) surgery and to compare the efficacy of cardiac markers to detect PMI. The study population consisted of 37 patients (24 male, 13 female, mean age 63.4 ± 8.9 years) undergoing elective CABG. Arterial and coronary sinus blood samples were collected just before aortic cross-clamping (pre-ACC) and after aortic declamping (post-ACC). Creatine kinase-MB isoenzyme (CK-MB) activity, and high-sensitivity cardiac troponin T (hs-cTnT), creatine kinase-MB isoenzyme mass (CK-MB mass) and cardiac troponin I (cTnI) concentrations were measured in blood samples. Myocardial injury and apoptosis were examined in atrial biopsies. CABG caused PMI and apoptosis in all cases. Concentrations and net releases of cardiac markers significantly increased after aortic declamping (p &lt; 0.001 for CK-MB and CK-MB mass, p &lt; 0.01 for cTnI, p &lt; 0.05 for hs-cTnT). A positive correlation was found between apoptotic index (r = 0.611, p &lt; 0.001 for cTnI; r = 0.806, p &lt; 0.001 for hs-cTnT), myocardial injury score (r = 0.544, p &lt; 0.001 for cTnI; r = 0.719, p &lt; 0.001 for hs-cTnT) and cTnI and hs-cTnT values in the post-ACC period. A positive correlation was found between apoptotic index (r = 0.507, p &lt; 0.001), myocardial injury score (r = 0.416, p = 0.010) and net release of hs-cTnT. Furthermore, a positive correlation was found between aortic cross-clamp (ACC) time (r = 0.448, p = 0.007), cardiopulmonary bypass (CPB) time (r = 0.342, p = 0.047) and net release of hs-cTnT. Although both cTnI and hs-cTnT may be specific and efficacious markers of myocardial apoptosis and injury occurring during CABG with CPB, hs-cTnT may be a more useful marker than cTnI to detect peri-operative myocardial apoptosis and injury."	"Screening of sarcomere gene mutations in young athletes with abnormal findings in electrocardiography: identification of a MYH7 mutation and MYBPC3 mutations. There is an overlap between the physiological cardiac remodeling associated with training in athletes, the so-called athlete's heart, and mild forms of hypertrophic cardiomyopathy (HCM), the most common hereditary cardiac disease. HCM is often accompanied by unfavorable outcomes including a sudden cardiac death in the adolescents. Because one of the initial signs of HCM is abnormality in electrocardiogram (ECG), athletes may need to monitor for ECG findings to prevent any unfavorable outcomes. HCM is caused by mutations in genes for sarcomere proteins, but there is no report on the systematic screening of gene mutations in athletes. One hundred and two genetically unrelated young Japanese athletes with abnormal ECG findings were the subjects for the analysis of four sarcomere genes, MYH7, MYBPC3, TNNT2 and TNNI3. We found that 5 out of 102 (4.9%) athletes carried mutations: a heterozygous MYH7 Glu935Lys mutation, a heterozygous MYBPC3 Arg160Trp mutation and another heterozygous MYBPC3 Thr1046Met mutation, all of which had been reported as HCM-associated mutations, in 1, 2 and 2 subjects, respectively. This is the first study of systematic screening of sarcomere gene mutations in a cohort of athletes with abnormal ECG, demonstrating the presence of sarcomere gene mutations in the athlete's heart. "	"A Simple Protocol for the Myocardial Differentiation of Human iPS Cells. We have developed a simple protocol for inducing the myocardial differentiation of human induced pluripotent stem (iPS) cells. Human iPS cell-derived embryonic bodies (EBs) were treated with a combination of activin-A, bone morphogenetic protein-4 and wnt-3a for one day in serum-free suspension culture, and were subsequently treated with noggin for three days. Thereafter, the EBs were subjected to adherent culture in media with 5% serum. All EBs were differentiated into spontaneously beating EBs, which were identified by the presence of striated muscles in transmission electron microscopy and the expression of the specific cardiomyocyte markers, NKX2-5 and TNNT2. The beating rate of the beating EBs was decreased by treatment with a rapidly activating delayed rectifier potassium current (Ikr) channel blocker, E-4031, an Ikr trafficking inhibitor, pentamidin, and a slowly activating delayed rectifier potassium current (Iks) channel blocker, chromanol 293B, and was increased by treatment with a beta-receptor agonist, isoproterenol. At a low concentration, verapamil, a calcium channel blocker, increased the beating rate of the beating EBs, while a high concentration decreased this rate. These findings suggest that the spontaneously beating EBs were myocardial cell clusters. This simple protocol for myocardial differentiation would be useful in providing a sufficient number of the beating myocardial cell clusters for studies requiring human myocardium. "	"Lack of Rybp in Mouse Embryonic Stem Cells Impairs Cardiac Differentiation. Ring1 and Yy1 binding protein (Rybp) has been implicated in transcriptional regulation, apoptotic signaling and as a member of the polycomb repressive complex 1, it has an important function in regulating pluripotency and differentiation of embryonic stem cells (ESCs). Earlier, we had proved that Rybp plays an essential role in mouse embryonic and central nervous system development. This work identifies Rybp, as a critical regulator of heart development. Rybp is readily detectable in the developing mouse heart from day 8.5 of embryonic development. Prominent Rybp expression persists during all embryonic stages, and Rybp marks differentiated cell types of the heart. By utilizing rybp null ESCs in an in vitro cardiac differentiation assay, we found that rybp null ESCs do not form rhythmically beating cardiomyocytes (CMCs). Gene expression profiles revealed a downregulation of cardiac terminal and upregulation of germline-specific markers in the rybp null CMCs. Furthermore, transcriptome analysis uncovered a number of novel candidate target genes regulated by Rybp. Among these are several that are important in cardiac development and contractility such as Plagl1, Isl1, and Tnnt2. Importantly, forced expression of rybp in rybp-deficient ESCs by a lentiviral vector was able to rescue the mutant phenotype. Our data provide evidence for a previously unrecognized function of Rybp in heart development and point out the importance of germ cell lineage gene silencing during somatic differentiation. "	"Epigenetic Regulation of Phosphodiesterases 2A and 3A Underlies Compromised β-Adrenergic Signaling in an iPSC Model of Dilated Cardiomyopathy. β-adrenergic signaling pathways mediate key aspects of cardiac function. Its dysregulation is associated with a range of cardiac diseases, including dilated cardiomyopathy (DCM). Previously, we established an iPSC model of familial DCM from patients with a mutation in TNNT2, a sarcomeric protein. Here, we found that the β-adrenergic agonist isoproterenol induced mature β-adrenergic signaling in iPSC-derived cardiomyocytes (iPSC-CMs) but that this pathway was blunted in DCM iPSC-CMs. Although expression levels of several β-adrenergic signaling components were unaltered between control and DCM iPSC-CMs, we found that phosphodiesterases (PDEs) 2A and PDE3A were upregulated in DCM iPSC-CMs and that PDE2A was also upregulated in DCM patient tissue. We further discovered increased nuclear localization of mutant TNNT2 and epigenetic modifications of PDE genes in both DCM iPSC-CMs and patient tissue. Notably, pharmacologic inhibition of PDE2A and PDE3A restored cAMP levels and ameliorated the impaired β-adrenergic signaling of DCM iPSC-CMs, suggesting therapeutic potential. "	"Differentiation of infiltrative cardiomyopathy from hypertrophic cardiomyopathy using high-sensitivity cardiac troponin T: a case-control study. Because infiltrative cardiomyopathy and hypertrophic cardiomyopathy (HCM) share clinical and hemodynamic features of left ventricular (LV) hypertrophy and abnormal diastolic function, it is often difficult to distinguish these entities. We investigated the potential role of high-sensitivity cardiac troponin T (hs-cTnT) for differentiation of infiltrative cardiomyopathy from HCM. The study group consisted of 46 consecutive patients with infiltrative cardiomyopathies or HCM in whom sarcomere protein gene mutations were identified at Kochi Medical School Hospital; of these, there were 11 patients with infiltrative cardiomyopathy (cardiac amyloidosis in 8 patients and Fabry disease in 3 patients) and 35 HCM patients. Serum hs-cTnT level was significantly higher in patients who had infiltrative cardiomyopathy than in those who had HCM (0.083 ± 0.057 ng/ml versus 0.027 ± 0.034 ng/ml, p &lt; 0.001), whereas brain natriuretic peptide levels did not differ between the two groups. In two age-matched the 2 cohorts (patients evaluated at &gt; 40 years at age), hs-cTnT level, maximum LV wall thickness, posterior wall thickness, peak early (E) transmitral filling velocity, peak early diastolic (Ea) velocity of tissue Doppler imaging at the lateral corner and E/Ea ratios at both the septal and lateral corners were significantly different between the two groups. As for diagnostic accuracy to differentiate the two groups by using receiver operating characteristic analysis, hs-cTnT was the highest value of area under the curve (0.939) and E/Ea (lateral) was second highest value (0.914). Serum hs-cTnT is a helpful diagnostic indicator for accurate differentiation between infiltrative cardiomyopathy and HCM."	"Consequences of high-sensitivity troponin T testing applied in a primary care population with chest pain compared with a commercially available point-of-care troponin T analysis: an observational prospective study. There is a demand for a highly sensitive and specific point-of care test to detect acute myocardial infarction (AMI). It is unclear if a high-sensitivity troponin assay will have enough discriminative power to become a decision support in primary care. The aim of this study was to evaluate a high-sensitivity troponin T assay performed in three primary health care centres in southeast Sweden and to compare the outcome with a point-of-care troponin T test. This study included 115 patients who consulted their general practitioner for chest pain, dyspnoea on exertion, unexplained weakness and/or fatigue in the last 7 days. Troponin T was analysed by a point-of-care test and a high-sensitivity method together with N-terminal pro-B-type natriuretic peptide (NT-proBNP) and creatinine. All patients were checked for AMI or unstable angina (UA) within 30 days of study enrolment. Univariate and multivariate logistic regression was carried out to examine possible connections between troponin T ≥ 15 ng/L, clinical variables and laboratory findings at baseline. In addition, 21 patients with troponin T ≥ 15 ng/L and no signs of AMI or UA were followed up for 2-3 years. Three patients were diagnosed with AMI and three with UA. At the ≥ 15 ng/L cut-off, the troponin T method had 100% sensitivity, 75% specificity for AMI and a positive predictive value of 10%. The troponin T point-of-care test missed one case of AMI and the detection limit was 50 ng/L. Troponin T ≥ 15 ng/L was correlated to age ≥65 years (odds ratio (OR), 10.9 95% CI 2.28-51.8) and NT-proBNP in accordance with heart failure (OR 8.62 95% CI 1.61-46.1). Fourteen of the 21 patients, without signs of AMI or UA at baseline, still had increased troponin T at follow-up after 2-3 years. A high-sensitivity troponin T assay could become useful in primary care as a point-of-care test for patients &lt;65 years. For patients older than 65-70 years, a higher decision limit than ≥15 ng/L should be considered and used in conjunction with clinical parameters and possibly with NT-proBNP."	"Novel Roles of GATA4/6 in the Postnatal Heart Identified through Temporally Controlled, Cardiomyocyte-Specific Gene Inactivation by Adeno-Associated Virus Delivery of Cre Recombinase. GATA4 and GATA6 are central cardiac transcriptional regulators. The postnatal, stage-specific function of the cardiac transcription factors GATA4 and GATA6 have not been evaluated. In part, this is because current Cre-loxP approaches to cardiac gene inactivation require time consuming and costly breeding of Cre-expressing and &quot;floxed&quot; mouse lines, often with limited control of the extent or timing of gene inactivation. We investigated the stage-specific functions of GATA4 and GATA6 in the postnatal heart by using adeno-associated virus serotype 9 to control the timing and extent of gene inactivation by Cre. Systemic delivery of recombinant, adeno-associated virus 9 (AAV9) expressing Cre from the cardiac specific Tnnt2 promoter was well tolerated and selectively and efficiently recombined floxed target genes in cardiomyocytes. AAV9:Tnnt2-Cre efficiently inactivated Gata4 and Gata6. Neonatal Gata4/6 inactivation caused severe, rapidly lethal systolic heart failure. In contrast, Gata4/6 inactivation in adult heart caused only mild systolic dysfunction but severe diastolic dysfunction. Reducing the dose of AAV9:Tnnt2-Cre generated mosaics in which scattered cardiomyocytes lacked Gata4/6. This mosaic knockout revealed that Gata4/6 are required cell autonomously for physiological cardiomyocyte growth. Our results define novel roles of GATA4 and GATA6 in the neonatal and adult heart. Furthermore, our data demonstrate that evaluation of gene function hinges on controlling the timing and extent of gene inactivation. AAV9:Tnnt2-Cre is a powerful tool for controlling these parameters. "	"Generation of a tamoxifen inducible Tnnt2MerCreMer knock-in mouse model for cardiac studies. Tnnt2, encoding thin-filament sarcomeric protein cardiac troponin T, plays critical roles in heart development and function in mammals. To develop an inducible genetic deletion strategy in myocardial cells, we generated a new Tnnt2:MerCreMer (Tnnt2(MerCreMer/+)) knock-in mouse. Rosa26 reporter lines were used to examine the specificity and efficiency of the inducible Cre recombinase. We found that Cre was specifically and robustly expressed in the cardiomyocytes at embryonic and adult stages following tamoxifen induction. The knock-in allele on Tnnt2 locus does not impact cardiac function. These results suggest that this new Tnnt2(MerCreMer/+) mouse could be applied towards the temporal genetic deletion of genes of interests in cardiomyocytes with Cre-LoxP technology. The Tnnt2(MerCreMer/+) mouse model also provides a useful tool to trace myocardial lineage during development and repair after cardiac injury."	"High-sensitivity cardiac troponin T level is associated with angiographic complexity of coronary artery disease: a cross-sectional study. High levels of high-sensitivity cardiac troponin T (hs-cTnT) are associated with coronary artery disease (CAD). The SYNTAX score (SXscore) is an angiographic tool used to grade the complexity and extent of CAD. We investigated the relationship between hs-cTnT levels and SXscore. We conducted a cross-sectional analysis of 408 patients who underwent first diagnostic coronary angiography between December 2011 and December 2012. SXscore was recorded, and serum hs-cTnT levels were measured in all patients. The median hs-cTnT level was 0.009 μg/L. Elevated hs-cTnT levels (≥0.014 μg/L) were observed in 136 patients (33 %). Twenty-seven patients (7 %) had complex CAD as defined by intermediate or high SXscores. The levels of hs-cTnT were significantly higher in patients with high or intermediate SXscores than in those with low SXscores (0.044 ± 0.055 vs. 0.018 ± 0.058 μg/L, p = 0.03). Multivariate analysis identified hs-cTnT level, and diabetes mellitus as independent predictors for complex CAD. The adjusted odds ratio of hs-cTnT level for predicting complex CAD was 2.86 (95 % confidence interval 1.90-4.45, p &lt; 0.0001). Predictive value of the adjusted area under the receiver operating characteristic curve for complex CAD significantly improved after inclusion of the hs-cTnT (C statistic, 0.882 vs. 0.784). Measurement of serum hs-cTnT level has an important role in the risk stratification of patients who have a plan for diagnostic coronary angiography. In patients with clinically stable angina pectoris, slightly elevated hs-cTnT levels may indicate the presence of complex CAD. "	"A Variant Detection Pipeline for Inherited Cardiomyopathy-Associated Genes Using Next-Generation Sequencing. In inherited cardiomyopathies, genetic testing is recognized as an enriching procedure in the diagnostic closure of a cardiac condition. Many genetic mutations have been described as pathogenically related to cardiomyopathies, turning next-generation sequencing into an extremely reliable scenario. Here we describe the validation process of a pipeline constructed with a target panel of 74 cardiomyopathy-related genes sequenced using a next-generation sequencing system. Fifty-two samples from a hypertrophic cardiomyopathy casuistic with previous molecular diagnostics (Sanger-sequenced for MYH7, MYBCP3, and TNNT2; 19 positives and 33 negatives) were processed in parallel with a HapMap reference sample (NA12878) applied for a complete panel assessment. Sequencing coverage values were satisfactory, with a mean of 250× (95% CI, 226.03-273.91) and 95.2% of target bases with a coverage of ≥10×. With a total of 567 variants, variant call sensitivity was tested in five scenarios of coverage and variant allele frequency cutoffs. Maximum achieved sensitivity was 96.7% for single-nucleotide variants and 28.5% for indels, and positive predictive values remained above 0.959 during the whole process. Inter- and intra-assay reproducibility values were 89.5% and 87.3%, respectively. After a careful assessment of analytical performance, we infer that the assay presents potential feasibility for application in diagnostic routines, with minimal time requirements and a simple bioinformatics structure. "	"Targeted next-generation sequencing (NGS) of nine candidate genes with custom AmpliSeq in patients and a cardiomyopathy risk group. Hypertrophic cardiomyopathy is a common genetic cardiac disease. Prevention and early diagnosis of this disease are very important. Because of the large number of causative genes and the high rate of mutations involved in the pathogenesis of this disease, traditional methods of early diagnosis are ineffective. We developed a custom AmpliSeq panel for NGS sequencing of the coding sequences of ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNI3, TNNT2, TPM1, and CASQ2. A genetic analysis of student cohorts (with and without cardiomyopathy risk in their medical histories) and patients with cardiomyopathies was performed. For the statistical and bioinformatics analysis, Polyphen2, SIFT, SnpSift and PLINK software were used. To select genetic markers in the patients with cardiomyopathy and in the students of the high risk group, four additive models were applied. Our AmpliSeq custom panel allowed us to efficiently explore targeted sequences. Based on the score analysis, we detected three substitutions in the MYBPC3 and CASQ2 genes and six combinations between loci in the MYBPC3, MYH7 and CASQ2 genes that were responsible for cardiomyopathy risk in our cohorts. We also detected substitutions in the TNNT2 gene that can be considered as protective against cardiomyopathy. We used NGS with AmpliSeq libraries and Ion PGM sequencing to develop improved predictive information for patients at risk of cardiomyopathy."	"Exogenous treatment with eicosapentaenoic acid supports maturation of cardiomyocytes derived from embryonic stem cells. Embryonic stem cells offer multiple advantages over adult stem cells in terms of achieving acceptable number of functional cardiomyocytes to be exploited in cell therapy. However, differentiation efficacy is still a major issue to be solved before moving to regenerative medicine. Although a vast number of chemical compounds have been tested on efficiency of cardiac differentiation, the effect of fish oil components, such as eicosapentaenoic acid (EPA) on developmental bioenergetics, and hence cardiac differentiation, remained unstudied. EPA has been reported to have several cardioprotective effects, but there is no study addressing its role in cardiac differentiation. After mesoderm induction of embryoid bodies (EBs) derived from mouse embryonic stem cells (mESCs) in hanging drops initiated by ascorbic acid, they were treated with various concentrations of EPA. Gene and protein expression and functional properties of cardiomyocytes derived from ESCs were evaluated following treatment with various concentrations of EPA. Exposure to low concentrations of EPA (10 μM) increased percentage of beating colonies and beating area. This treatment also resulted in up to 3 fold increase in expression of NKX2-5, MEF2C, MYH6, TNNT2 and CX43. FACS analysis confirmed gene expression analysis with increased percentage of MYH6 positive cells in EPA-treated group compared to the control group. In contrast, the expression of genes coding for cardiac differentiation, remained constant or even declined with higher concentrations of EPA. In conclusion, we have demonstrated that treatment of mESCs undergoing cardiac differentiation with low concentration, but not high concentration of EPA up-regulate transcription of genes associated with cardiac development. "	"Dextrocardia and symmetric hypertrophic cardiomyopathy with multiple mutations of genes encoding the sarcomere proteins. NA"	"Functional characterization of putative novel splicing mutations in the cardiomyopathy-causing genes. Molecular diagnosis of cardiomyopathies remains difficult not only because of the large number of causative genes and the high rate of private mutations but also due to the large number of unclassified variants (UVs) found in patients' DNA. This study reports the functional splicing impact of nine novel genomic variations previously identified in unrelated patients with cardiomyopathies. To identify splice variants among these UVs, a combination of in silico and in vitro hybrid minigene tools was used as transcript is not available. Using this two-step approach, these UVs were reclassified as splicing mutations (MYBPC3-c.655-25A&gt;G, MYBPC3-c.1790G&gt;A (p.Arg597Gln), MYBPC3-c.2414-36G&gt;T) or as mutations with a majority of abnormally spliced transcripts (MYBPC3-c.1182C&gt;A, TNNT2-c.460G&gt;A (p.Glu154Lys), and TNNT2-c.822-3C&gt;A) or as variations with a weak splicing effect (TNNT2-c.1000-38C&gt;A). For the two remaining variations in intron 11 of the TNNT2 gene in the vicinity of the acceptor splice site (c.571-7G&gt;A, c.571-29G&gt;A), a minigene assay was inconclusive as exon 12 is neither recognized as an exon by HeLa nor by H9c2 cells. Our study highlights the importance of the combined use of in silico and in vitro splicing assays to improve the prediction of the functional splicing impact of identified genetic variants if the RNA sample from the patient is not easily available. "	"High-sensitivity cardiac troponin T is associated with coronary artery calcification. Recent studies have suggested that high-sensitivity cardiac troponin T (hs-cTnT) may be useful for detecting subclinical atherosclerosis and assessing cardiovascular disease risk. The aim of this study was to investigate whether serum hs-cTnT is associated with the degree of coronary artery calcification. We measured serum hs-cTnT concentrations and performed multidetector row coronary CT in 215 consecutive, stable patients with clinical suspicion of coronary artery disease. Nonenhanced coronary CT was performed to determine the coronary calcium score, and contrast-enhanced coronary CT was performed to identify obstructive coronary artery disease. We then evaluated the relationship between serum hs-cTnT concentrations and the degree of coronary calcium or obstructive coronary artery disease using multiple regression analysis and logistic regression models. Multiple regression analysis demonstrated that serum hs-cTnT concentrations and calcium score were independently associated after logarithmic transformation (β = 0.348; P &lt; .0001). Logistic regression analyses demonstrated that serum hs-cTnT concentration was associated with an increased odds of an Agatston score &gt;10 (odds ratio, 1.250; 95% confidence interval [CI], 1.150-1.378), an Agatston Score &gt;400 (odds ratio, 1.101; 95% CI, 1.054-1.157), and obstructive coronary artery disease (odds ratio, 1.119; 95% CI, 1.066-1.185). Serum hs-cTnT is associated with coronary calcium in individuals with suspected coronary disease and may therefore be a marker to detect subclinical atherosclerosis."	"Peptide-enhanced mRNA transfection in cultured mouse cardiac fibroblasts and direct reprogramming towards cardiomyocyte-like cells. The treatment of myocardial infarction is a major challenge in medicine due to the inability of heart tissue to regenerate. Direct reprogramming of endogenous cardiac fibroblasts into functional cardiomyocytes via the delivery of transcription factor mRNAs has the potential to regenerate cardiac tissue and to treat heart failure. Even though mRNA delivery to cardiac fibroblasts has the therapeutic potential, mRNA transfection in cardiac fibroblasts has been challenging. Herein, we develop an efficient mRNA transfection in cultured mouse cardiac fibroblasts via a polyarginine-fused heart-targeting peptide and lipofectamine complex, termed C-Lipo and demonstrate the partial direct reprogramming of cardiac fibroblasts towards cardiomyocyte cells. C-Lipo enabled the mRNA-induced direct cardiac reprogramming due to its efficient transfection with low toxicity, which allowed for multiple transfections of Gata4, Mef2c, and Tbx5 (GMT) mRNAs for a period of 2 weeks. The induced cardiomyocyte-like cells had α-MHC promoter-driven GFP expression and striated cardiac muscle structure from α-actinin immunohistochemistry. GMT mRNA transfection of cultured mouse cardiac fibroblasts via C-Lipo significantly increased expression of the cardiomyocyte marker genes, Actc1, Actn2, Gja1, Hand2, and Tnnt2, after 2 weeks of transfection. Moreover, this study provides the first direct evidence that the stoichiometry of the GMT reprogramming factors influence the expression of cardiomyocyte marker genes. Our results demonstrate that mRNA delivery is a potential approach for cardiomyocyte generation. "	"Sensitive cardiac troponins and N-terminal pro-B-type natriuretic peptide in stable coronary artery disease: correlation with left ventricular function as assessed by myocardial strain. N-terminal pro-B-type natriuretic peptide (NT-proBNP) and cardiac troponins (cTns) measured with sensitive assays provide strong prognostic information in patients with stable coronary artery disease. However, the relationship between these biomarkers and myocardial contractile function, as well as infarct size, in this patient group, remains to be defined. The study population consisted of 160 patients referred to a follow-up echocardiography scheduled 1 year after coronary revascularization. Concentrations of NT-proBNP, high-sensitive cTnT (hs-cTnT) and sensitive cTnI assays were assessed. Left ventricular function was measured as global peak systolic longitudinal strain by speckle tracking echocardiography and infarct size was assessed by late-enhancement MRI. NT-proBNP and sensitive cTnI levels were significantly associated with left ventricular function by peak systolic strain (R-values 0.243 and 0.228, p = 0.002 and 0.004) as well as infarct size (R-values 0.343 and 0.366, p = 0.014 and p = 0.008). In contrast, hs-cTnT did not correlate with left ventricular function (R = 0.095, p = 0.231) and only marginally with infarct size (R = 0.237, p = 0.094). NT-proBNP and sensitive cTnI levels correlate with left ventricular function and infarct size in patients with stable coronary artery disease after revascularization. As opposed to hs-cTnT, NT-proBNP and cTnI seem to be indicators of incipient myocardial dysfunction and the extent of myocardial necrosis."	"Loss of muscleblind-like 1 results in cardiac pathology and persistence of embryonic splice isoforms. Cardiac dysfunction is a prominent cause of mortality in myotonic dystrophy I (DM1), a disease where expanded CUG repeats bind and disable the muscleblind-like family of splice regulators. Deletion of muscleblind-like 1 (Mbnl1(ΔE2/ΔE2)) in 129 sv mice results in QRS, QTc widening, bundle block and STc narrowing at 2-4 months of age. With time, cardiac function deteriorates further and at 6 months, decreased R wave amplitudes, sinus node dysfunction, cardiac hypertrophy, interstitial fibrosis, multi-focal myocardial fiber death and calcification manifest. Sudden death, where no end point illness is overt, is observed at a median age of 6.5 and 4.8 months in ~67% and ~86% of male and female Mbnl1(ΔE2/ΔE2) mice, respectively. Mbnl1 depletion results in the persistence of embryonic splice isoforms in a network of cardiac RNAs, some of which have been previously implicated in DM1, regulating sodium and calcium currents, Scn5a, Junctin, Junctate, Atp2a1, Atp11a, Cacna1s, Ryr2, intra and inter cellular transport, Clta, Stx2, Tjp1, cell survival, Capn3, Sirt2, Csda, sarcomere and cytoskeleton organization and function, Trim55, Mapt, Pdlim3, Pdlim5, Sorbs1, Sorbs2, Fhod1, Spag9 and structural components of the sarcomere, Myom1, Tnnt2, Zasp. Thus this study supports a key role for Mbnl1 loss in the initiation of DM1 cardiac disease. "	"NT-proBNP and troponin T levels differ after haemodialysis with a low versus high flux membrane. Brain natriuretic peptide (BNP), N-terminal-proBNP (NT-proBNP), and high sensitive cardiac troponin T (TnT) are markers that are elevated in chronic kidney disease and correlate with increased risk of mortality. Data are conflicting on the effect of biomarker levels by hemodialysis (HD).Our aim was to clarify to what extent HD with low-flux (LF) versus high-flux (HF) membranes affects the plasma levels of BNP, NT-proBNP, and TnT. 31 HD patients were included in a crossover design, randomized to start dialysis with a LF-HD or HF-HD dialyzer. Each patient was his/her own control. The dialyses included in the study were the first treatments of two consecutive weeks with each mode of dialysis. Patients normally on hemodiafiltration (HDF) also performed a HDF the third week. Values after HD were corrected for extent of ultrafiltration. During LF-HD the biomarkers NT-proBNP and TnT increased (15 versus 6%, P ≤ .001) while there was a slight decrease in BNP (P&lt;.05). During HF-HD the NT-proBNP, BNP and TnT levels decreased (P ≤ .01 for all). During HDF all three markers decreased (P&lt;.01 for all). The rise in TnT during LF-HD correlated with dialysis vintage (months on HD, r = .407, P = .026), Kt/V-urea (r = .383, P = .037), HD time in hours/treatment (r = .447, P = .013) and inversely with residual urinary output (r = -.495, P = .005). The baseline levels of BNP and NT-proBNP correlated with blood pressure. Cardiac biomarkers increase slightly during LF-HD. A HF-HD eliminates the biomarkers and can mask increases caused by, e.g., myocardial infarction."	"Relationship between serum cardiac troponin T level and cardiopulmonary function in stable chronic obstructive pulmonary disease. High-sensitivity cardiac troponin T (hs-cTnT) in serum is a useful marker of acute myocardial injury, yet information is limited in patients with chronic obstructive pulmonary disease. We aimed to explore the association between hs-cTnT levels and cardiac and pulmonary dysfunction in patients with stable chronic obstructive pulmonary disease and at-risk individuals. We examined community-dwelling adults with/without chronic obstructive pulmonary disease, with a life-long smoking history, current symptoms of dyspnea during exertion, prolonged coughing, and/or sputum. Serum hs-cTnT concentrations were measured, and subjects underwent pulmonary function tests, high-resolution computed tomography of the chest, an echocardiogram, and a 6-minute walking test. Eighty-six stable patients were identified (mean age 65.5 years; predicted forced expiratory volume in 1 second [FEV1% predicted] 75.0%). Their overall mean hs-cTnT level was 0.008 ng/mL. Logarithmically transformed hs-cTnT levels significantly and positively correlated with age, smoking index, serum high-sensitivity C-reactive protein levels, right ventricle systolic pressure, low attenuation area percentage, and brain natriuretic peptide levels (range r=0.231-0.534, P=0.000 to P=0.042). Further, logarithmically transformed hs-cTnT values significantly and negatively correlated with forced vital capacity, FEV1% predicted, diffusion capacity, arterial oxygen tension, and 6-minute walking distance (range r= -0.482 to -0.377, P=0.000 to P=0.002). Multivariate analyses showed that hs-cTnT values varied independently according to the following three parameters: high-sensitivity C-reactive protein levels (B=0.157, β=0.450, t=3.571, P=0.001), age (B=0.008, β=0.352, t=2.789, P=0.009), and right ventricular systolic pressure (B=0.008, β=0.280, t=2.202, P=0.035). Even in patients with stable chronic obstructive pulmonary disease, the serum troponin T concentration was controlled by at least three major factors, ie, systemic inflammation, advancing age, and right cardiac overload."	"Modeling Cardiovascular Diseases with Patient-Specific Human Pluripotent Stem Cell-Derived Cardiomyocytes. The generation of cardiomyocytes from human induced pluripotent stem cells (hiPSCs) provides a source of cells that accurately recapitulate the human cardiac pathophysiology. The application of these cells allows for modeling of cardiovascular diseases, providing a novel understanding of human disease mechanisms and assessment of therapies. Here, we describe a stepwise protocol developed in our laboratory for the generation of hiPSCs from patients with a specific disease phenotype, long-term hiPSC culture and cryopreservation, differentiation of hiPSCs to cardiomyocytes, and assessment of disease phenotypes. Our protocol combines a number of innovative tools that include a codon-optimized mini intronic plasmid (CoMiP), chemically defined culture conditions to achieve high efficiencies of reprogramming and differentiation, and calcium imaging for assessment of cardiomyocyte phenotypes. Thus, this protocol provides a complete guide to use a patient cohort on a testable cardiomyocyte platform for pharmacological drug assessment. "	"Differentiation of Human Pluripotent Stem Cells to Cardiomyocytes Under Defined Conditions. Human embryonic stem cells (hESCs) and induced pluripotent stem cells (hiPSCs) can differentiate to cardiomyocytes in vitro, offering unique opportunities to investigate cardiac development and disease as well as providing a platform to perform drug and toxicity tests. Initial cardiac differentiation methods were based on either inductive co-culture or aggregation as embryoid bodies, often in the presence of fetal calf serum. More recently, monolayer differentiation protocols have evolved as feasible alternatives and are often performed in completely defined culture medium and substrates. Thus, our ability to efficiently and reproducibly generate cardiomyocytes from multiple different hESC and hiPSC lines has improved significantly.We have developed a directed differentiation monolayer protocol that can be used to generate cultures comprising ~50% cardiomyocytes, in which both the culture of the undifferentiated human pluripotent stem cells (hPSCs) and the differentiation procedure itself are defined and serum-free. The differentiation method is also effective for hPSCs maintained in other culture systems. In this chapter, we outline the differentiation protocol and describe methods to assess cardiac differentiation efficiency as well as to identify and quantify the yield of cardiomyocytes."	"Coexistence of Digenic Mutations in Both Thin (TPM1) and Thick (MYH7) Filaments of Sarcomeric Genes Leads to Severe Hypertrophic Cardiomyopathy in a South Indian FHCM. Mutations in sarcomeric genes are the leading cause for cardiomyopathies. However, not many genetic studies have been carried out on Indian cardiomyopathy patients. We performed sequence analyses of a thin filament sarcomeric gene, α-tropomyosin (TPM1), in 101 hypertrophic cardiomyopathy (HCM) patients and 147 dilated cardiomyopathy (DCM) patients against 207 ethnically matched healthy controls, revealing 13 single nucleotide polymorphisms (SNPs). Of these, one mutant, S215L, was identified in two unrelated HCM cases-patient #1, aged 44, and patient #2, aged 65-and was cosegregating with disease in these families as an autosomal dominant trait. In contrast, S215L was completely absent in 147 DCM and 207 controls. Patient #1 showed a more severe disease phenotype, with poor prognosis and a family history of sudden cardiac death, than patient #2. Therefore, these two patients and the family members positive for S215L were further screened for variations in MYH7, MYBPC3, TNNT2, TNNI3, MYL2, MYL3, and ACTC. Interestingly, two novel thick filaments, D896N (homozygous) and I524K (heterozygous) mutations, in the MYH7 gene were identified exclusively in patient #1 and his family members. Thus, we strongly suggest that the coexistence of these digenic mutations is rare, but leads to severe hypertrophy in a South Indian familial hypertrophic cardiomyopathy (FHCM)."	"Whole-exome sequencing identify a new mutation of MYH7 in a Chinese family with left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a genetic cardiomyopathy results from the failure of myocardial development during embryogenesis. Previous reports show that defects in TAZ, SCN5A, TPM1, YWHAE, MYH7, ACTC1 and TNNT2 are associated with LVNC. Sequencing of individuals using family-based design is a powerful approach for hereditary disease. In this study, we used whole-exome sequencing to screen potentially novel causal mutations in a Chinese Han family with LVNC. DNA from 3 individuals belonging to the same family was extracted and sequenced based on standard whole-exome sequencing protocol. The exome sequence data was analyzed using BWA, PICARD and Genome Analysis Toolkit (GATK v2.8). Non-silent single nucleotide variants (SNVs) were further selected if they exist in both LVNC patients and not in the health control. A web-based software Snv Prioritization via the INtegration of Genomic data (SPRING), was used to prioritize the causal SNV by calculating a q-value which indicates the statistical significance that a variant is causative for a query disease. From the LVNC family in which the mother and son were affected, a novel single nucleotide variant c.C1492G in exon 15 of MYH7 was identified probably to be the causal SNV of the family with P-value of 3.45E-05 and q-value of 4.65E-03 by SPRING. The SNV was predicted as deleterious in SIFT, PolyPhe2 and MutatioTaster database. Another 12 SNVs were also identified with P-value less than 0.05 by SPRING. A novel genetic variant in the coding regions of MYH7 gene was identified in a Chinese LVNC-family. The results support the previous evidence that MYH7 is a pathogenic gene for LVNC."	"Thin-filament mutations, hypertrophic cardiomyopathy, and risk. NA"	"Clinical phenotype and outcome of hypertrophic cardiomyopathy associated with thin-filament gene mutations. Mild hypertrophy but increased arrhythmic risk characterizes the stereotypic phenotype proposed for hypertrophic cardiomyopathy (HCM) caused by thin-filament mutations. However, whether such clinical profile is different from more prevalent thick-filament-associated disease is unresolved. This study aimed to assess clinical features and outcomes in a large cohort of patients with HCM associated with thin-filament mutations compared with thick-filament HCM. Adult HCM patients (age &gt;18 years), 80 with thin-filament and 150 with thick-filament mutations, were followed for an average of 4.5 years. Compared with thick-filament HCM, patients with thin-filament mutations showed: 1) milder and atypically distributed left ventricular (LV) hypertrophy (maximal wall thickness 18 ± 5 mm vs. 24 ± 6 mm; p &lt; 0.001) and less prevalent outflow tract obstruction (19% vs. 34%; p = 0.015); 2) higher rate of progression to New York Heart Association functional class III or IV (15% vs. 5%; p = 0.013); 3) higher prevalence of systolic dysfunction or restrictive LV filling at last evaluation (20% vs. 9%; p = 0.038); 4) 2.4-fold increase in prevalence of triphasic LV filling pattern (26% vs. 11%; p = 0.002); and 5) similar rates of malignant ventricular arrhythmias and sudden cardiac death (p = 0.593). In adult HCM patients, thin-filament mutations are associated with increased likelihood of advanced LV dysfunction and heart failure compared with thick-filament disease, whereas arrhythmic risk in both subsets is comparable. Triphasic LV filling is particularly common in thin-filament HCM, reflecting profound diastolic dysfunction."	"Role of WNT16 in the regulation of periosteal bone formation in female mice. In this study, we evaluated the role of WNT16 in regulating bone size, an important determinant of bone strength. Mice with targeted disruption of the Wnt16 gene exhibited a 24% reduction in tibia cross-sectional area at 12 weeks of age compared with that of littermate wild-type (WT) mice. Histomorphometric studies revealed that the periosteal bone formation rate and mineral apposition rate were reduced (P &lt; .05) by 55% and 32%, respectively, in Wnt16 knockout (KO) vs WT mice at 12 weeks of age. In contrast, the periosteal tartrate resistant acid phosphatase-labeled surface was increased by 20% in the KO mice. Because mechanical strain is an important physiological regulator of periosteal bone formation (BF), we determined whether mechanical loading-induced periosteal BF is compromised in Wnt16 KO mice. Application of 4800-μe strain to the right tibia using a 4-point bending loading method for 2 weeks (2-Hz frequency, 36 cycles per day, 6 days/wk) produced a significant increase in cross-sectional area (11% above that of the unloaded left tibia, P &lt; .05, n = 6) in the WT but not in the KO mice (-0.2% change). Histomorphometric analyses revealed increases in the periosteal bone formation rate and mineral apposition rate in the loaded bones of WT but not KO mice. Wnt16 KO mice showed significant (20%-70%) reductions in the expression levels of markers of canonical (β-catenin and Axin2) but not noncanonical (Nfatc1 and Tnnt2) WNT signaling in the periosteum at 5 weeks of age. Our findings suggest that WNT16 acting via canonical WNT signaling regulates mechanical strain-induced periosteal BF and bone size."	"Correlation of concentrations of high-sensitivity troponin T and high-sensitivity C-reactive protein with plaque progression as measured by CT coronary angiography. Elevated levels of inflammatory biomarkers are associated with increased cardiovascular morbidity and mortality. We sought to determine whether elevated concentrations of high-sensitivity troponin T (hs-TnT) and high-sensitivity C-reactive protein (hs-CRP) predict progression of coronary artery disease (CAD) as determined by coronary CT angiography (coronary CTA). Patients presenting to the emergency department with acute chest pain who initially showed no evidence of an acute coronary syndrome underwent baseline and follow-up coronary CTA (median follow-up, 23.9 months) using identical acquisition and reconstruction parameters. Coronary CTA data of each major coronary artery were co-registered. Cross-sections were assessed for the presence of calcified and noncalcified plaques. Progression of atherosclerotic plaque and change of plaque composition from noncalcified to calcified plaque was evaluated and correlated to levels of hs-TnT and hs-CRP at the time of the baseline CT. Fifty-four patients (mean age, 54.1 years; 59% male) were included, and 6775 cross-sections were compared. CAD was detected in 12.2 ± 21.2 cross-sections per patient at baseline. Prevalence of calcified plaque increased by 1.5 ± 2.4 slices per patient (P &lt; .0001) over the follow-up period. On average, 1.6 ± 3.6 slices with new noncalcified plaque were found per patient (P &lt; .0001) and 0.7 ± 1.7 slices with pre-existing noncalcified plaque had progressed to calcified plaque (P &lt; .0001). After multivariate adjustment, change of overall CAD burden was predicted by baseline hs-TnT and hs-CRP (r = 0.29; P = .039 and r = 0.40; P = .004). Change of plaque composition was associated with baseline hs-TnT (r = 0.29; P = .03). Concentrations of hs-TnT and hs-CRP are weakly associated with a significant increase in CAD burden and change in plaque composition over 24 months independent of baseline risk factors."	"Nonsense mutations in BAG3 are associated with early-onset dilated cardiomyopathy in French Canadians. Dilated cardiomyopathy (DCM) is a major cause of heart failure that may require heart transplantation. Approximately one third of DCM cases are familial. Next-generation DNA sequencing of large panels of candidate genes (ie, targeted sequencing) or of the whole exome can rapidly and economically identify pathogenic mutations in familial DCM. We recruited 64 individuals from 26 DCM families followed at the Montreal Heart Institute Cardiovascular Genetic Center and sequenced the whole exome of 44 patients and 2 controls. Both affected and unaffected family members underwent genotyping for segregation analysis. We found 2 truncating mutations in BAG3 in 4 DCM families (15%) and confirmed segregation with disease status by linkage (log of the odds [LOD] score = 3.8). BAG3 nonsense mutations conferred a worse prognosis as evidenced by a younger age of clinical onset (37 vs 48 years for carriers and noncarriers respectively; P = 0.037). We also found truncating mutations in TTN in 5 families (19%). Finally, we identified potential pathogenic mutations for 9 DCM families in 6 candidate genes (DSP, LMNA, MYH7, MYPN, RBM20, and TNNT2). We still need to confirm several of these mutations by segregation analysis. Screening an extended panel of 41 candidate genes allowed us to identify probable pathogenic mutations in 69% of families with DCM in our cohort of mostly French-Canadian patients. We confirmed the prevalence of TTN nonsense mutations in DCM. Furthermore, to our knowledge, we are the first to present an association between nonsense mutations in BAG3 and early-onset DCM."	"Mutation analysis of the main hypertrophic cardiomyopathy genes using multiplex amplification and semiconductor next-generation sequencing. Mutations in at least 30 genes have been linked to hypertrophic cardiomyopathy (HCM). Due to the large size of the main HCM genes, Sanger sequencing is labor intensive and expensive. The purpose was to develop a next-generation sequencing (NGS) procedure for the main HCM genes. METHODS AND RESULTS: Multiplex amplification of the coding exons of MYH7,MYBPC3,TNNT2,TNNI3,ACTC1,TNNC1,MYL2,MYL3, and TPM1 was designated, followed by NGS with the Ion Torrent PGM (Life Technologies). A total of 8 pools containing DNA from HCM patients were sequenced in a 2-step approach. First, a total of 60 patients (validation cohort) underwent both PGM and Sanger sequencing for the 9 genes. No false-negative variants were found on NGS (100% sensitivity), and a specificity of 97% and 80% was achieved for single-nucleotide and insertion/deletion variants, respectively. Second, the PGM was used to search for mutations in a total of 76 cases not previously studied (discovery cohort). A total of 19 putative mutations were identified in the discovery pools, which were confirmed and assigned to specific patients on Sanger sequencing. An NGS procedure has been developed for the main sarcomeric genes that would facilitate the screening of large cohorts of patients. In addition, this procedure would facilitate the uncovering of rare gene variants on a population scale."	"Extrarenal phenotypes of the UT-B knockout mouse. The urea transporter UT-B is expressed in multiple tissues including erythrocytes, kidney, brain, heart, liver, colon, bone marrow, spleen, lung, skeletal muscle, bladder, prostate, and testis in mammals. Phenotype analysis of UT-B-null mice has confirmed that UT-B deletion results in a urea-selective urine-concentrating defect (see Chap. 9 ). The functional significance of UT-B in extrarenal tissues studied in the UT-B-null mouse is discussed in this chapter. UT-B-null mice present depression-like behavior with urea accumulation and nitric oxide reduction in the hippocampus. UT-B deletion causes a cardiac conduction defect, and TNNT2 and ANP expression changes in the aged UT-B-null heart. UT-B also plays a very important role in protecting bladder urothelium from DNA damage and apoptosis by regulating the urea concentration in urothelial cells. UT-B functional deficiency results in urea accumulation in the testis and early maturation of the male reproductive system. These results show that UT-B is an indispensable transporter involved in maintaining physiological functions in different tissues. "	"High efficiency differentiation of human pluripotent stem cells to cardiomyocytes and characterization by flow cytometry. There is an urgent need to develop approaches for repairing the damaged heart, discovering new therapeutic drugs that do not have toxic effects on the heart, and improving strategies to accurately model heart disease. The potential of exploiting human induced pluripotent stem cell (hiPSC) technology to generate cardiac muscle &quot;in a dish&quot; for these applications continues to generate high enthusiasm. In recent years, the ability to efficiently generate cardiomyogenic cells from human pluripotent stem cells (hPSCs) has greatly improved, offering us new opportunities to model very early stages of human cardiac development not otherwise accessible. In contrast to many previous methods, the cardiomyocyte differentiation protocol described here does not require cell aggregation or the addition of Activin A or BMP4 and robustly generates cultures of cells that are highly positive for cardiac troponin I and T (TNNI3, TNNT2), iroquois-class homeodomain protein IRX-4 (IRX4), myosin regulatory light chain 2, ventricular/cardiac muscle isoform (MLC2v) and myosin regulatory light chain 2, atrial isoform (MLC2a) by day 10 across all human embryonic stem cell (hESC) and hiPSC lines tested to date. Cells can be passaged and maintained for more than 90 days in culture. The strategy is technically simple to implement and cost-effective. Characterization of cardiomyocytes derived from pluripotent cells often includes the analysis of reference markers, both at the mRNA and protein level. For protein analysis, flow cytometry is a powerful analytical tool for assessing quality of cells in culture and determining subpopulation homogeneity. However, technical variation in sample preparation can significantly affect quality of flow cytometry data. Thus, standardization of staining protocols should facilitate comparisons among various differentiation strategies. Accordingly, optimized staining protocols for the analysis of IRX4, MLC2v, MLC2a, TNNI3, and TNNT2 by flow cytometry are described. "	"Comparative evaluation of cardiac markers in differentiated cells from menstrual blood and bone marrow-derived stem cells in vitro. In recent years, menstrual blood-derived stem cells (MenSCs) have been introduced as easily accessible and refreshing stem cell source without ethical considerations in the field of regenerative medicine. The aim of this study was to investigate in vitro cardiac differentiation capacity of MenSCs compared to bone marrow-derived stem cells (BMSCs) under two protocols using 5-aza-2'-deoxycytidine (5-aza) and basic fibroblast growth factor (bFGF). Our data revealed that differentiated MenSCs and BMSCs acquired some features of cardiomyocytes; however, degree of differentiation was dependent on the protocol. In a similar manner with BMSCs, differentiated MenSCs showed upper levels of mRNA/protein of late-stage cardiac markers under 5-aza stimulation and continuous treatment with bFGF (protocol 2) compared to those induced by 5-aza alone (protocol 1) evidencing the key role of bFGF in cardiac development of stem cells. Compared to corresponding undifferentiated cells differentiated MenSCs under protocol 2 showed remarkable expression of connexin-43 and TNNT2 at both gene and protein levels, whereas developed BMSCs under the same condition only expressed connextin-43 at the higher level. Superiority of protocol 2 over protocol 1 was confirmed by assessment of LDH and cTnI production by differentiated cells. Based on the accumulative data, our study provided convincing evidence that MenSCs have relatively higher capability to be differentiated toward cardiomyocyte compared with BMSCs. Furthermore, usage of bFGF and 5-aza to induce in vitro cardiac differentiation of MenSCs is highly recommended. "	"SSEA-4+ CD34- cells in the adult human heart show the molecular characteristics of a novel cardiomyocyte progenitor population. Stage-specific embryonic antigen (SSEA) expression is used to describe the differentiation state of an embryonic stem cell (ESC). In human ESCs, SSEA-3 and SSEA-4 are highly expressed in undifferentiated cells and downregulated upon differentiation. SSEA-4 has also been described as a marker for adult stem cells in various tissues, including human neonatal cardiac tissue. However, there is currently little data on the expression of SSEAs in human adult cardiac tissue. We obtained right and left atrial biopsies from patients undergoing cardiac surgery. These were dissociated, stained for SSEAs and other cardiac stem cell markers and analyzed by flow cytometry. Directly isolated cells expressed variable levels of SSEA-1, SSEA-3 and SSEA-4. The SSEA-1+ population was established as contaminating hematopoietic cells. The SSEA-4+ population, on the other hand, could be subdivided based on the endothelial progenitor marker CD34. The SSEA-4+ CD34- population in the right atrium had a high gene expression of both early (TBX5, NKX2.5) and late (TNNT2) cardiomyocyte markers. The SSEA-4+ CD34+ population, on the other hand, overlapped with previously described C-kit+ CD45- cardiac stem cells. Primary monolayer-cultured cells retained expression of SSEAs while the cardiomyogenic specification in the SSEA-4+ CD34- population was lost. In tissue sections, SSEA-4+ cells could be identified both within and outside the myocardium. Within the myocardium, some SSEA-4+ cells coexpressed cardiomyogenic markers. In conclusion, the results show that the adult human heart expresses SSEAs and that there is a subpopulation of SSEA-4+ CD34- cells that show features of a cardiomyocyte progenitor population."	"Alpha-lipoic acid enhances DMSO-induced cardiomyogenic differentiation of P19 cells. Alpha-lipoic acid (α-LA) is a potent antioxidant that acts as an essential cofactor in mitochondrial dehydrogenase reactions. α-LA has been shown to possess anti-inflammatory and cytoprotective properties, and is used to improve symptoms of diabetic neuropathy. However, the role of α-LA in stem cell differentiation and the underlying molecular mechanisms remain unknown. In the present study, we showed that α-LA significantly promoted dimethyl sulfoxide (DMSO)-induced cardiomyogenic differentiation of mouse embryonic carcinoma P19 cells. α-LA dose dependently increased beating embryonic body (EB) percentages of DMSO-differentiated P19 cells. The expressions of cardiac specific genes TNNT2, Nkx2.5, GATA4, MEF2C, and MLC2V and cardiac isoform of troponin T (cTnT)-positively stained cell population were significantly up-regulated by the addition of α-LA. We also demonstrated that the differentiation time after EB formation was critical for α-LA to take effect. Interestingly, without DMSO treatment, α-LA did not stimulate the cardiomyogenic differentiation of P19 cells. Further investigation indicated that collagen synthesis-enhancing activity, instead of the antioxidative property, plays a significant role in the cardiomyogenic differentiation-promoting function of α-LA. These findings highlight the potential use of α-LA for regenerative therapies in heart diseases. "	"Cardiac troponin T (TNNT2) mutations in chinese dilated cardiomyopathy patients. Dilated cardiomyopathy (DCM) is one of the leading causes of heart failure with high morbidity and mortality. Although more than 40 genes have been reported to cause DCM, the role of genetic testing in clinical practice is not well defined. Mutations in the troponin T (TNNT2) gene represent an important subset of known disease-causing mutations associated with DCM. Therefore, the aim of the present study was to determine the genetic variations in TNNT2 and the associations of those variations with DCM in Chinese patients. An approximately 4 kb fragment of the TNNT2 gene was isolated from 103 DCM patients and 192 healthy controls and was analyzed by DNA sequence analysis for genetic variations. A total of 6 TNNT2 mutations were identified in 99 patients, including a G321T missense mutation (Leu84Phe) and 5 novel intronic mutations. Alleles of two novel SNPs (c.192 + 353 C&gt;A, OR = 0.095, 95% CI: 0.013-0.714, P = 0.022; c.192 + 463 G&gt;A, OR = 0.090, 95% CI: 0.012-0.675, P = 0.019) and SNP rs3729843 (OR = 1.889, 95% CI: 1.252-2.852; P = 0.002) were significantly correlated with DCM. These results suggest that the missense mutation (Leu84Phe) and two novel SNPs (c.192 + 353 C&gt;A, c.192 + 463 G&gt;A) in TNNT2 gene might be associated with DCM in the Chinese population."	"Detection of mutations in symptomatic patients with hypertrophic cardiomyopathy in Taiwan. Hypertrophic cardiomyopathy (HCM) is a common genetic cardiac disorder associated with sudden death, heart failure, and stroke. The aim of the present study was to evaluate the prevalence and types of mutations in symptomatic patients with HCM in Taiwan. Thirty-eight HCM index patients (mean age 60±16 years) underwent systematic mutation screening of eight sarcomeric genes: β-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), troponin I (TNNI3), myosin ventricular regulatory light chain 2 (MYL2), myosin ventricular essential light chain 1 (MYL3), α-tropomyosin (TPM1), and cardiac α-actin (ACTC), using direct DNA sequencing. In silico programs predicted damaging amino acids. In the positive families, genotype-phenotype correlation studies were done. Overall, 13 mutations were identified in 13 index patients (34.2%). The three most frequently mutated genes were MYH7, MYBPC3, and TNNT2. One patient carried double mutations. Five mutations (MYH7 R147S; MYBPC3 R597Q; MYBPC3 W1007R; TNNI3 E124Q; MYL3 R63C) were novel; all were missense mutations. Analysis using in silico tools showed near consensus to classify these five novel mutations as pathological. Family pedigree analysis showed the presence of cosegregation in at least two affected members in each proband family, but incomplete penetrance in young family members with a positive genotype. We identified 13 HCM pedigrees, including 5 carrying novel mutations and 1 with a double mutation. The three most commonly mutated genes were MYH7, MYBPC3, and TNNT2. These results, together with genetic counseling, could lead to earlier diagnosis and better management of family members at risk of HCM."	"Biomarkers of acute myocardial infarction in the elderly: troponin and beyond. In the broadest context, biological markers, or biomarkers, are molecules that characterize a biological system or process. In the setting of cardiovascular disease, a number of biomarkers have become an integral part of diagnostic and risk stratification strategies. In this review, we will discuss classic and emerging biomarkers of cardiovascular disease and the role of these biomarkers in the diagnosis and prognosis of elderly patients presenting with acute myocardial infarction. "	"Directed differentiation of patient-specific induced pluripotent stem cells identifies the transcriptional repression and epigenetic modification of NKX2-5, HAND1, and NOTCH1 in hypoplastic left heart syndrome. The genetic basis of hypoplastic left heart syndrome (HLHS) remains unknown, and the lack of animal models to reconstitute the cardiac maldevelopment has hampered the study of this disease. This study investigated the altered control of transcriptional and epigenetic programs that may affect the development of HLHS by using disease-specific induced pluripotent stem (iPS) cells. Cardiac progenitor cells (CPCs) were isolated from patients with congenital heart diseases to generate patient-specific iPS cells. Comparative gene expression analysis of HLHS- and biventricle (BV) heart-derived iPS cells was performed to dissect the complex genetic circuits that may promote the disease phenotype. Both HLHS- and BV heart-derived CPCs were reprogrammed to generate disease-specific iPS cells, which showed characteristic human embryonic stem cell signatures, expressed pluripotency markers, and could give rise to cardiomyocytes. However, HLHS-iPS cells exhibited lower cardiomyogenic differentiation potential than BV-iPS cells. Quantitative gene expression analysis demonstrated that HLHS-derived iPS cells showed transcriptional repression of NKX2-5, reduced levels of TBX2 and NOTCH/HEY signaling, and inhibited HAND1/2 transcripts compared with control cells. Although both HLHS-derived CPCs and iPS cells showed reduced SRE and TNNT2 transcriptional activation compared with BV-derived cells, co-transfection of NKX2-5, HAND1, and NOTCH1 into HLHS-derived cells resulted in synergistic restoration of these promoters activation. Notably, gain- and loss-of-function studies revealed that NKX2-5 had a predominant impact on NPPA transcriptional activation. Moreover, differentiated HLHS-derived iPS cells showed reduced H3K4 dimethylation as well as histone H3 acetylation but increased H3K27 trimethylation to inhibit transcriptional activation on the NKX2-5 promoter. These findings suggest that patient-specific iPS cells may provide molecular insights into complex transcriptional and epigenetic mechanisms, at least in part, through combinatorial expression of NKX2-5, HAND1, and NOTCH1 that coordinately contribute to cardiac malformations in HLHS. "	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"Epicardial fat thickness in stable coronary artery disease: its relationship with high-sensitive cardiac troponin T and N-terminal pro-brain natriuretic peptide. Epicardial adipose tissue is related to coronary atherosclerosis, left ventricle hypertrophy, myocardial dysfunction, cardiomyopathy, and inflammation, which produces a variety of cytokines that influence key pathogenic mechanisms of atherogenesis. The main goal of this study is to examine the relationship between epicardial fat thickness (EFT) and cardiovascular risk markers as well as the complexity of coronary artery disease (CAD) in patients with stable CAD. We prospectively included 439 stable CAD patients undergoing coronary angiography in the present study (mean age: 62.2±10.7 years). Patients were divided into two groups (EFTlow and EFThigh groups) according to their median EFT values. EFT was evaluated by two-dimensional echocardiography before angiography. The SYNTAX score was calculated in all patients. N-terminal pro-brain natriuretic peptide (NT-proBNP), high-sensitive C-reactive protein (hs-CRP), high-sensitive cardiac troponin T (hs-cTnT), uric acid, and other biochemical markers were also measured. Age, SYNTAX score, frequencies of diabetes, hyperlipidemia, and hypertension, NT-proBNP, hs-CRP, hs-cTnT, and uric acid levels were higher in EFThigh group compared with the EFTlow group (P&lt;0.05 for all). EFT was associated independently with age (β=-0.102, P=0.001), diabetes (β=-0.083, P=0.011), SYNTAX score (β=0.352, P&lt;0.001), hs-CRP level (β=0.217, P&lt;0.001), hs-cTnT level (β=0.197, P&lt;0.001), and NT-proBNP level (β=0.300, P&lt;0.001) in multivariate analysis. EFT obtained by echocardiograpy may not only be an easy tool but also an important tool for early detection of increased cardiac risk as well as the extent and complexity of CAD in patients with stable CAD."	"Effects of candesartan on electrical remodeling in the hearts of inherited dilated cardiomyopathy model mice. Inherited dilated cardiomyopathy (DCM) is characterized by dilatation and dysfunction of the ventricles, and often results in sudden death or heart failure (HF). Although angiotensin receptor blockers (ARBs) have been used for the treatment of HF, little is known about the effects on postulated electrical remodeling that occurs in inherited DCM. The aim of this study was to examine the effects of candesartan, one of the ARBs, on cardiac function and electrical remodeling in the hearts of inherited DCM model mice (TNNT2 ΔK210). DCM mice were treated with candesartan in drinking water for 2 months from 1 month of age. Control, non-treated DCM mice showed an enlargement of the heart with prolongation of QRS and QT intervals, and died at t1/2 of 70 days. Candesartan dramatically extended the lifespan of DCM mice, suppressed cardiac dilatation, and improved the functional parameters of the myocardium. It also greatly suppressed prolongation of QRS and QT intervals and action potential duration (APD) in the left ventricular myocardium and occurrence of ventricular arrhythmia. Expression analysis revealed that down-regulation of Kv4.2 (Ito channel protein), KChIP2 (auxiliary subunit of Kv4.2), and Kv1.5 (IKur channel protein) in DCM was partially reversed by candesartan administration. Interestingly, non-treated DCM heart had both normal-sized myocytes with moderately decreased Ito and IKur and enlarged cells with greatly reduced K+ currents (Ito, IKur IK1 and Iss). Treatment with candesartan completely abrogated the emergence of the enlarged cells but did not reverse the Ito, and IKur in normal-sized cells in DCM hearts. Our results indicate that candesartan treatment suppresses structural remodeling to prevent severe electrical remodeling in inherited DCM."	"Chemically defined generation of human cardiomyocytes. Existing methods for human induced pluripotent stem cell (hiPSC) cardiac differentiation are efficient but require complex, undefined medium constituents that hinder further elucidation of the molecular mechanisms of cardiomyogenesis. Using hiPSCs derived under chemically defined conditions on synthetic matrices, we systematically developed an optimized cardiac differentiation strategy, using a chemically defined medium consisting of just three components: the basal medium RPMI 1640, L-ascorbic acid 2-phosphate and rice-derived recombinant human albumin. Along with small molecule-based induction of differentiation, this protocol produced contractile sheets of up to 95% TNNT2(+) cardiomyocytes at a yield of up to 100 cardiomyocytes for every input pluripotent cell and was effective in 11 hiPSC lines tested. This chemically defined platform for cardiac specification of hiPSCs will allow the elucidation of cardiomyocyte macromolecular and metabolic requirements and will provide a minimal system for the study of maturation and subtype specification. "	"Human cardiac extracellular matrix supports myocardial lineage commitment of pluripotent stem cells. Cross-talk between organ-specific extracellular matrix (ECM) and stem cells is often assumed but has not been directly demonstrated. We developed a protocol for the preparation of human cardiac ECM (cECM) and studied whether cECM has effects on pluripotent stem cell differentiation that may be useful for future cardiac regeneration strategies in patients with end-stage heart failure. Of note, 0.3 mm-thick cECM slices were prepared from samples of myocardium from patients with end-stage non-ischaemic dilated cardiomyopathy, using a three-step protocol involving hypotonic lysis buffer, sodium dodecyl sulphate (SDS) and foetal bovine serum (FBS). Murine embryonic stem cells (ESCs), induced pluripotent stem cells (iPSCs) and mesenchymal stromal cells (MSCs) were seeded and grown in standard culture, on cECM or on non-specific ECM preparations (Matrigel® or Geltrex®). Cell attachment, apoptosis induction (Caspase 3/7 activity) and metabolic activity (3-(4,5-dimethylthiazol-2-yl)-5-(3-carboxymethoxyphenyl)-2-(4-sulfophenyl)-2H-tetrazolium conversion) were followed. Transcriptional activation of genes involved in pluripotency; early and late myocardial development; and endothelial, ectodermal or endodermal commitment were monitored by quantitative real-time polymerase chain reaction (rtPCR). Protein expression of selected markers was confirmed by immunohistology. cECM supported the proliferation of ESCs and iPSCs, and Caspase 3/7 activity was significantly lower compared with standard culture. Cardiac lineage commitment was favoured when ESCs or iPSCs were grown on cECM, as evidenced by the significantly increased mRNA expression of cardiac alpha myosin heavy polypeptide 6 (Myh6), cardiac troponin T2 (Tnnt2) and NK2 homeobox 5 (Nkx2.5) as well as positive immunohistology for cardiac troponin T and heavy-chain cardiac myosin protein. In contrast, Matrigel or Geltrex did not induce cardiac-specific markers. MSCs showed no evidence of cardiomyocyte differentiation. Human cardiac ECM seems to direct differentiation of pluripotent stem cells towards a cardiomyocyte phenotype. This phenomenon supports the use of cardiac ECM preparations for guided stem cell differentiation and myocardial repair, and may ultimately increase the therapeutic efficacy of cell therapy in heart failure patients."	"Comparison of cardiac troponin T and N-terminal pro-B-type natriuretic peptide between fetuses with hemoglobin Bart's disease and nonanemic fetuses. The objective of this study was to compare the levels of fetal serum cardiac troponin T (cTnT), representing cardiac injury, and N-terminal pro-B-type natriuretic peptide (nt-proBNP), representing cardiac volume overload, between fetuses affected and not affected by hemoglobin (Hb) Bart's disease, as well as between anemic and nonanemic fetuses. One hundred fourteen pregnancies at risk for fetal Hb Bart's disease scheduled for cordocentesis at 18 to 22 weeks were recruited into the study. Fetal blood was collected to test for cTnT, nt-proBNP and Hb levels as well as Hb typing. Serum nt-proBNP was significantly higher in Hb Bart's fetuses (24 cases) than in unaffected fetuses (63 cases), whereas cTnT was significantly lower in the affected group than in the unaffected group. The serum nt-proBNP levels significantly increased with the degree of fetal anemia; cTnT levels decreased in fetuses with high degree of anemia. At mid-pregnancy, nt-proBNP was significantly higher in fetuses with Hb Bart's disease than in nonanemic fetuses; cTnT was significantly lower in anemic than in normal fetuses. This study suggests that cardiomegaly from fetal anemia in early gestation is not associated with fetal cardiac injury or myocardial dysfunction but presents as cardiac volume overload from a compensatory process to maintain adequate tissue oxygenation."	"High-sensitivity cardiac troponin T and copeptin assays to improve diagnostic accuracy of exercise stress test in patients with suspected coronary artery disease. The average diagnostic sensitivity of exercise stress tests (ESTs) is lower than that of other non-invasive cardiac stress tests. The aim of the study was to examine whether high-sensitivity cardiac troponin T (hs-cTnT) or copeptin concentrations rise in response to inducible myocardial ischaemia and may improve the diagnostic accuracy of ESTs. An EST was performed stepwise on a bicycle ergometer by 383 consecutive patients with suspected or progression of coronary artery disease (CAD). In addition venous blood samples for measurement of hs-cTnT and copeptin were collected prior to EST, at peak exercise, and 4 h after EST. Coronary angiography was assessed for all patients. Patients with significant CAD (n = 224) were more likely to be male and older compared to patients with non-significant CAD (n = 169). Positive EST was documented in 125 (55.8%) patients with significant CAD and in 69 (43.4%) patients with non-significant CAD. Copeptin and hs-cTnT concentrations at baseline were higher in patients with significant CAD (copeptin: 10.8 pmol/l (interquartile range (IQR) 8.1-15.6) vs 9.4 pmol/l (IQR 7.1-13.9); p = 0.04; hs-cTnT: 3.0 ng/l (IQR &lt;3.0-5.4) vs &lt;3.0 ng/l (IQR &lt;3.0); p = 0.006). Hs-cTnT improved sensitivity (61.6% vs 55.8%), specificity (67.7% vs 56.6%) and the positive predictive value (PPV) (72.3% vs 64.4%) and negative (55.2% vs 47.6%) predictive value (NPV) of EST. Copeptin could not improve sensitivity (55.4% vs 55.8%) and reduced specificity, PPV and NPV. The measurement of hs-cTnT during EST improves sensitivity, specificity, and positive and negative predictive values. In contrast, measurement of copeptin does not improve diagnostic sensitivity and reduces specificity."	"A low prevalence of sarcomeric gene variants in a Chinese cohort with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is genetically heterogeneous. It has been previously shown that LVNC is associated with defects in TAZ, DNTA, LDB3, YWHAE, MIB1, PRDM16, and sarcomeric genes. This study was aimed to investigate sarcomeric gene mutations in a Chinese population with LVNC. From 2004 to 2010, 57 unrelated Chinese patients with LVNC were recruited at Fuwai Hospital, Beijing, China. Detailed clinical evaluation was performed on the probands and available family members. DNA samples isolated from the peripheral blood of the index cases were screened for 10 sarcomeric genes, including MYH7, MYBPC3, MYL2, MYL3, MYH6, TNNC1, TNNT2, TNNI3, TPM1, and ACTC1. Seven heterozygous mutations (6 missense and 1 deletion) were identified in 7 (12 %) of the patients. These mutations were distributed among 4 genes, 4 in MYH7, and 1 each in ACTC1, TNNT2, and TPM1. Six of the mutations were novel and another one was reported previously. All mutations affected conserved amino acid residues and were predicted to alter the structure of the proteins by in silico analysis. No significant difference was observed between mutation-positive and mutation-negative patients with respect to clinical characteristics at baseline and mortality during follow-up. In conclusion, our study indicates that sarcomeric gene mutations are uncommon causes of LVNC in Chinese patients and genetic background of the disease may be divergent among the different races."	"Insulin-like growth factor binding protein 4 enhances cardiomyocytes induction in murine-induced pluripotent stem cells. Insulin-like growth factor binding protein 4 (IGFBP4) has been reported to play critical role in cardiomyocytes differentiation of embryonic stem cells (ESCs). But whether it promotes cardiomyocytes induction of iPSCs is unclear. In the present study, we aim to explore the role of IGFBP4 in the cardiogenesis of mouse iPSCs. We observed that IGFBP4 treatment at late stage during differentiation process of mouse iPSCs greatly enhanced the beating frequency of embryoid bodies (EBs). The expressions of Nkx2.5 (cardiac-specific transcription factor), α-MHC, α-actinin, and Troponin I (cardiac-specific protein) were significantly enhanced by IGFBP4 treatment. Immunostaining analysis showed that α-MHC, TNNT2 and connexin 43, typical cardiac markers, were obviously expressed in isolated cardiomyocytes from iPSCs with or without IGFBP4 treatment. Further study revealed that IGFBP4 had little effect on the apoptosis of EBs, but it significantly promoted the proliferation of cardiomyocytes from iPSCs characterized by higher ratio EdU positive cells in differentiated cardiomyocytes. We next observed that IGFBP4 inhibited β-catenin expression in cytosol of EBs at late stage during differentiation of iPSCs. Knockdown of β-catenin using a siRNA technique promoted the proliferation of differentiated cardiomyocytes and enhanced cardiomyocytes induction of iPSCs, suggesting that the effect of IGFBP4 on cardiomyocytes differentiation of iPSCs has relationship with β-catenin signaling pathway. In conclusion, IGFBP4 promotes cardiogenesis of iPSCs by enhancing the proliferation of differentiated cardiomyocytes through inhibiting β-catenin signaling."	"Genetic testing in the management of relatives of patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy is the most common genetic cardiac disease with vast genetic heterogeneity. First-degree relatives of patients with HCM are at 50% risk of inheriting the disease-causing mutation. Genetic testing is helpful in identifying the relatives harbouring the mutations. When genetic testing is not available, relatives need to be examined regularly. We tested a cohort of 99 unrelated patients with HCM for mutations in MYH7, MYBPC3, TNNI3 and TNNT2 genes. In families with identified pathogenic mutation, we performed genetic and clinical examination in relatives to study the influence of genetic testing on the management of the relatives and to study the usefulness of echocardiographic criteria for distinguishing relatives with positive and negative genotype. We identified 38 genetic variants in 47 patients (47 %). Fifteen of these variants in 21 patients (21 %) were pathogenic mutations. We performed genetic testing in 52 relatives (18 of them (35 %) yielding positive results). Genetic testing of one HCM patient allowed us to omit 2.45-5.15 future cardiologic examinations of the relatives. None of the studied echocardiographic criteria were significantly different between the relatives with positive and negative genotypes, with the exception of a combined echocardiographic score (genotype positive vs. genotype negative, 3.316 vs. -0.489, P = 0.01). As a conclusion, our study of HCM patients and their relatives confirmed the role of genetic testing in the management of the relatives and found only limited benefit of the proposed echocardiographic parameters in identifying disease-causing mutation carriers. "	"Rbm20-deficient cardiogenesis reveals early disruption of RNA processing and sarcomere remodeling establishing a developmental etiology for dilated cardiomyopathy. Dilated cardiomyopathy (DCM) due to mutations in RBM20, a gene encoding an RNA-binding protein, is associated with high familial penetrance, risk of progressive heart failure and sudden death. Although genetic investigations and physiological models have established the linkage of RBM20 with early-onset DCM, the underlying basis of cellular and molecular dysfunction is undetermined. Modeling human genetics using a high-throughput pluripotent stem cell platform was herein designed to pinpoint the initial transcriptome dysfunction and mechanistic corruption in disease pathogenesis. Tnnt2-pGreenZeo pluripotent stem cells were engineered to knockdown Rbm20 (shRbm20) to determine the cardiac-pathogenic phenotype during cardiac differentiation. Intracellular Ca(2+) transients revealed Rbm20-dependent alteration in Ca(2+) handling, coinciding with known pathological splice variants of Titin and Camk2d genes by Day 24 of cardiogenesis. Ultrastructural analysis demonstrated elongated and thinner sarcomeres in the absence of Rbm20 that is consistent with human cardiac biopsy samples. Furthermore, Rbm20-depleted transcriptional profiling at Day 12 identified Rbm20-dependent dysregulation with 76% of differentially expressed genes linked to known cardiac pathology ranging from primordial Nkx2.5 to mature cardiac Tnnt2 as the initial molecular aberrations. Notably, downstream consequences of Rbm20-depletion at Day 24 of differentiation demonstrated significant dysregulation of extracellular matrix components such as the anomalous overexpression of the Vtn gene. By using the pluripotent stem cell platform to model human cardiac disease according to a stage-specific cardiogenic roadmap, we established a new paradigm of familial DCM pathogenesis as a developmental disorder that is patterned during early cardiogenesis and propagated with cellular mechanisms of pathological cardiac remodeling. "	"MiRNAs as biomarkers of myocardial infarction: a meta-analysis. Recent studies have demonstrated that acute myocardial infarction induces a distinctive miRNA signature, suggesting that miRNAs may serve as diagnostic markers. Although many studies have investigated the use of miRNAs in the detection of cardiac injury, some had small sample sizes (&lt;100 patients) or reported different results for the same miRNA. Here, the role of circulating miRNAs for use as biomarkers of myocardial infarction is summarized and analyzed. Medline, SCI, Embase, and Cochrane databases were searched up to January 2013 for studies that evaluated associations between miRNAs and myocardial infarction. Relevant publications were identified by searching for combinations of &quot;myocardial infarction,&quot; &quot;miRNAs,&quot; and their synonyms. Methodological quality was scored using a standardized list of criteria, and diagnostic performance was assessed using estimates of test sensitivity and specificity. These values were summarized using summary receiver-operating characteristic curves. Nineteen studies met the inclusion criteria: 15 studies reported sensitivity, specificity, and AUC, but 4 studies did not. Total miRNAs: sensitivity: 0.78 (95%CI: 0.77-0.80; P = 0.0000); specificity: 0.82 (95%CI: 0.80-0.83; P = 0.0000). miR-499: sensitivity: 0.88 (95%CI:0.86-0.90; P = 0.0000); specificity: 0.87 (95%CI:0.84-0.90; P = 0.0000). miR-1: sensitivity: 0.63 (95%CI:0.59-0.66; P = 0.0000); specificity: 0.76 (95%CI:0.71-0.80; P = 0.0000). miR-133a: sensitivity: 0.89 (95%CI:0.83-0.94; P = 0.0047); specificity: 0.87 (95%CI:0.79-0.92; P = 0.0262). miR-208b: sensitivity: 0.78 (95%CI:0.76-0.81; P = 0.0581); specificity: 0.88 (95%CI:0.84-0.91; P = 0.0000). The correlation between miRNAs and other diagnostic biomarkers of myocardial infarction was obvious. MiRNAs, especially miR-499 and miR-133a, may be suitable for use as diagnostic biomarkers of myocardial infarction."	"Pericarditis with troponin elevation: is it true pericarditis and a reason for concern? NA"	"Evaluation of menstrual blood stem cells seeded in biocompatible Bombyx mori silk fibroin scaffold for cardiac tissue engineering. Recently, silk fibroin scaffolds have been introduced as novel and promising biomaterials in the field of cardiac tissue engineering. This study was designed to compare infiltration, proliferation, and cardiac differentiation potential of menstrual blood-derived stem cells (MenSCs) versus bone marrow-derived mesenchymal stem cells (BMSCs) in Bombyx mori-derived silk scaffold. Our primary data revealed that the fabricated scaffold has mechanical and physical qualities suitable for cardiac tissue engineering. The MenSCs tracking in scaffolds using immunofluorescent staining and scanning electron microscopy confirmed MenSCs attachment, penetration, and distribution within the porous scaffold matrix. Based on proliferation assay using propidium iodide DNA quantification, the significantly higher level of growth rates of both MenSCs and BMSCs was documented in scaffolds than that in two-dimensional culture (p &lt; 0.01). The expression level of TNNT2, a bona fide cardiac differentiation marker, in BMSCs differentiated on silk scaffolds was markedly higher than those cultured in two-dimensional culture indicating the improvement of cardiac differentiation in the silk scaffolds. Furthermore, differentiated MenSCs exhibited higher expression of TNNT2 compared with induced BMSCs. It seems that silk scaffold-seeded MenSCs could be viewed as a novel, safe, natural, and accessible construct for cardiac tissue engineering."	"Confounding factors in the relation between high sensitivity cardiac troponin T levels in serum and infarct size of patients with first ST-elevation myocardial infarction. NA"	"The novel mitochondrial 16S rRNA 2336T&gt;C mutation is associated with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a primary disorder characterised by asymmetric thickening of septum and left ventricular wall, with a prevalence of 0.2% in the general population. To describe a novel mitochondrial DNA mutation and its association with the pathogenesis of HCM. All maternal members of a Chinese family with maternally transmitted HCM exhibited variable severity and age at onset, and were implanted permanent pacemakers due to complete atrioventricular block (AVB). Nuclear gene screening (MYH7, MYBPC3, TNNT2 and TNNI3) was performed, and no potential pathogenic mutation was identified. Mitochondrial DNA sequencing analysis identified a novel homoplasmic 16S rRNA 2336T&gt;C mutation. This mutation was exclusively present in maternal members and absent in non-maternal members. Conservation index by comparison to 16 other vertebrates was 94.1%. This mutation disturbs the 2336U-A2438 base pair in the stem-loop structure of 16S rRNA domain III, which is involved in the assembly of mitochondrial ribosome. Oxygen consumption rate of the lymphoblastoid cells carrying 2336T&gt;C mutation had decreased by 37% compared with controls. A reduction in mitochondrial ATP synthesis and an increase in reactive oxidative species production were also observed. Electron microscopic analysis indicated elongated mitochondria and abnormal mitochondrial cristae shape in mutant cells. It is suggested that the 2336T&gt;C mutation is one of pathogenic mutations of HCM. This is the first report of mitochondrial 16S rRNA 2336T&gt;C mutation and an association with maternally inherited HCM combined with AVB. Our findings provide a new insight into the pathogenesis of HCM."	"Subtle changes in surface chemistry affect embryoid body cell differentiation: lessons learnt from surface-bound amine density gradients. Advanced approaches to direct the differentiation of embryonic stem cells are highly sought after. The surface-bound chemical gradient format is a powerful screening approach that can be deployed to study changes in stem cell behavior as a function of subtle changes in surface chemistry. Here, we investigate the spontaneous differentiation of cells derived from differentiating mouse embryoid body (mEB) cells into endoderm, mesoderm, and ectoderm following culture on surface-bound gradients of chemical functional groups in the absence of differentiation-biasing bioactive factors. Gradients were created using a diffusion-controlled plasma polymerization technique. The generated coating ranged from hydrophobic 1,7-octadiene (OD) plasma polymer at one end of the gradient to a more hydrophilic allylamine (AA) plasma polymer on the opposite end. The gradient surface was divided into seven equal regions of progressively increasing AA plasma polymer content and mEB cell response within these regions was compared. Cells adhered preferentially to the central regions of the gradient; however, cell proliferation increased toward AA-plasma-polymer-rich end of the gradient. Variation in the expression of germ layer markers was noted across the gradient surface. High AA:OD plasma polymer ratios triggered cell differentiation toward both mesoderm and ectoderm. Expression of tissue-specific markers, in particular, KRT18, AFP, and TNNT2, was strikingly responsive to subtle changes in surface chemistry, exhibiting vastly different expression levels between adjacent regions. Our results suggest that the surface-bound gradient platform is well suited to screening surface chemistries for use in the field of stem cell technologies and regenerative medicine. "	"3-OST-7 regulates BMP-dependent cardiac contraction. The 3-O-sulfotransferase (3-OST) family catalyzes rare modifications of glycosaminoglycan chains on heparan sulfate proteoglycans, yet their biological functions are largely unknown. Knockdown of 3-OST-7 in zebrafish uncouples cardiac ventricular contraction from normal calcium cycling and electrophysiology by reducing tropomyosin4 (tpm4) expression. Normal 3-OST-7 activity prevents the expansion of BMP signaling into ventricular myocytes, and ectopic activation of BMP mimics the ventricular noncontraction phenotype seen in 3-OST-7 depleted embryos. In 3-OST-7 morphants, ventricular contraction can be rescued by overexpression of tropomyosin tpm4 but not by troponin tnnt2, indicating that tpm4 serves as a lynchpin for ventricular sarcomere organization downstream of 3-OST-7. Contraction can be rescued by expression of 3-OST-7 in endocardium, or by genetic loss of bmp4. Strikingly, BMP misregulation seen in 3-OST-7 morphants also occurs in multiple cardiac noncontraction models, including potassium voltage-gated channel gene, kcnh2, affected in Romano-Ward syndrome and long-QT syndrome, and cardiac troponin T gene, tnnt2, affected in human cardiomyopathies. Together these results reveal 3-OST-7 as a key component of a novel pathway that constrains BMP signaling from ventricular myocytes, coordinates sarcomere assembly, and promotes cardiac contractile function. "	"Human C-kit+CD45- cardiac stem cells are heterogeneous and display both cardiac and endothelial commitment by single-cell qPCR analysis. C-kit expressing cardiac stem cells have been described as multipotent. We have previously identified human cardiac C-kit+CD45- cells, but only found evidence of endothelial commitment. A small cardiac committed subpopulation within the C-kit+CD45- population might however be present. To investigate this at single-cell level, right and left atrial biopsies were dissociated and analyzed by FACS. Only right atrial biopsies contained a clearly distinguishable C-kit+CD45- population, which was single-cell sorted for qPCR. A minor portion of the sorted cells (1.1%) expressed early cardiac gene NKX2.5 while most of the cells (81%) expressed late endothelial gene VWF. VWF- cells were analyzed for a wider panel of genes. One group of these cells expressed endothelial genes (FLK-1, CD31) while another group expressed late cardiac genes (TNNT2, ACTC1). In conclusion, human C-kit+CD45- cells were predominantly localized to the right atrium. While most of these cells expressed endothelial genes, a minor portion expressed cardiac genes. "	"Whole exome sequencing identifies a troponin T mutation hot spot in familial dilated cardiomyopathy. Dilated cardiomyopathy (DCM) commonly causes heart failure and shows extensive genetic heterogeneity that may be amenable to newly developed next-generation DNA sequencing of the exome. In this study we report the successful use of exome sequencing to identify a pathogenic variant in the TNNT2 gene using segregation analysis in a large DCM family. Exome sequencing was performed on three distant relatives from a large family with a clear DCM phenotype. Missense, nonsense, and splice variants were analyzed for segregation among the three affected family members and confirmed in other relatives by direct sequencing. A c.517T C&gt;T, Arg173Trp TNNT2 variant segregated with all affected family members and was also detected in one additional DCM family in our registry. The inclusion of segregation analysis using distant family members markedly improved the bioinformatics filtering process by removing from consideration variants that were not shared by all affected subjects. Haplotype analysis confirmed that the variant found in both DCM families was located on two distinct haplotypes, supporting the notion of independent mutational events in each family. In conclusion, an exome sequencing strategy that includes segregation analysis using distant affected relatives within a family represents a viable diagnostic strategy in a genetically heterogeneous disease like DCM. "	"Poor prognosis of rare sarcomeric gene variants in patients with dilated cardiomyopathy. In dilated cardiomyopathy (DCM), the clinical and prognostic implications of rare variants in sarcomeric genes remain poorly understood. To address this question, we analyzed the outcome of rare sarcomeric gene variants in patients enrolled in our Familial Cardiomyopathy Registry. DCM families harboring rare sarcomeric variants in MYH6, MYH7, MYBPC3, TNNT2, and TTN were identified. Genotype-phenotype association analysis was performed, and long-term survival-free from death or heart transplant was compared between carriers and noncarriers. We found 24 rare variants (3 in MYH6, 3 in MYH7, 3 in MYBPC3, 2 in TNNT2, and 13 in TTN) affecting 52 subjects in 25 families. The phenotypes of variant carriers were severe (3 sudden deaths, 6 heart failure deaths, 8 heart transplants, 2 ventricular fibrillations). There was no difference in the overall long-term survival between carriers and the 33 noncarriers (p = 0.322). However after 50 years of age, the combined endpoint of death or transplant was decreased in carriers as compared to noncarriers (p = 0.026). Patients with DCM carrying rare variants in sarcomeric genes manifest a poorer prognosis as compared to noncarriers after the age of 50 years. These data further support the role of genetic testing in DCM for risk stratification."	"Genetics of hypertrophic cardiomyopathy in Norway. Genetic testing for hypertrophic cardiomyopathy (HCM) became available in Norway in 2003. Here, we describe the results of this testing in probands with HCM referred until the end of 2012. The translated exons of MYBPC3, MYH7, TNNI3, TNNT2, MYL2 and MYL3 were analyzed in two groups of probands. In Group 1, comprising 696 probands above 1 year of age, a mutation was found in 203 patients (29.2%). Of those, 5.9% were carriers of two mutations. Mean age in double mutation carriers, single mutation carriers and mutation negative probands was 44 years (± 19 years), 50 years (± 5 years) and 55 years (± 6 years), respectively. In Group 2, comprising 26 infants below the age of 1, a mutation was found in 15.4%. A total of 120 different mutations were found of which 51 (42.5%) were novel."	"Screening of MYH7, MYBPC3, and TNNT2 genes in Brazilian patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HC) is the most prevalent genetic cardiac disease caused by a mutation in sarcomeres, Z-disks, or calcium-handling genes and is characterized by unexplained left ventricular hypertrophy. The aim of this study was to determine the genetic profile of Brazilian patients with HC and correlate the genotype with the phenotype. We included 268 index patients from São Paulo city and 3 other cities in Brazil and extracted their DNA from whole blood. We amplified the coding sequencing of MYH7, MYBPC3, and TNNT2 genes and sequenced them with an automatic sequencer. We identified causal mutations in 131 patients (48.8%). Seventy-eight (59.5%) were in the MYH7 gene, 50 (38.2%) in the MYBPC3 gene, and 3 (2.3%) in the TNNT2 gene. We identified 69 mutations, 24 not previously described. Patients with an identified mutation were younger at diagnosis and at current age, had a higher mean heart rate and higher nonsustained ventricular tachycardia frequency compared with those without a mutation. Patients with MYH7 gene mutations had a larger left atrium and higher frequency of atrial fibrillation than did patients with MYBPC3 gene mutations. The presence of a mutation in one of the genes suggests a worse prognosis. Mutations in the MYH7 gene, rather than in the MYBPC3 gene, were also related to a worse prognosis. This is the first work characterizing HC molecular epidemiology in the Brazilian population for the 3 most important genes."	"eComment. Postoperative atrial fibrillation: a robust human model of atrial fibrillation genesis? NA"	"The genetics of dilated cardiomyopathy: a prioritized candidate gene study of LMNA, TNNT2, TCAP, and PLN. Dilated cardiomyopathy (DCM), which is characterized by left ventricular enlargement and systolic dysfunction, is divided into cases with a clear predisposing condition (eg, hypothyroidism, chemotherapeutic agents, alcoholism, ischemia) and those of unknown cause (idiopathic DCM). Many cases (20%-35%) of DCM are familial, implicating a genetic contribution to the etiology. More than 30 genes have been identified, many involving &quot;private&quot; mutations not shared among families. Evidence suggests that nonfamilial cases also have a genetic predisposition, again involving many genes. The goal of this study was to identify mutations in genes associated with DCM in a Québec study sample including familial and nonfamilial DCM cases. A prioritized gene study conducted within a framework for the classification of identified genetic variants could yield etiological information even in the absence of family data. We sequenced 4 previously identified genes: lamin A/C (LMNA), cardiac troponin T type 2 (TNNT2), titin-cap (TCAP), and phospholamban (PLN). We discovered a nonsense mutation in the LMNA gene and a frameshift mutation in the TNNT2 gene, as well as other clinically significant variants that were not observed in publicly available databases or in Québec-based controls. PLN was sequenced to investigate a previously published promoter variant. However, our data confirm that this variant does not have a causal role in DCM. Despite high locus and allele heterogeneity, we demonstrate that a prioritized gene study, combined with next-generation exome-sequencing data, can be fruitful for the identification of DCM mutations."	"Gene expression analyses of mouse aortic endothelium in response to atherogenic stimuli. Endothelial cells are central to the initiation of atherosclerosis, yet there has been limited success in studying their gene expression in the mouse aorta. To address this, we developed a method for determining the global transcriptional changes that occur in the mouse endothelium in response to atherogenic conditions and applied it to investigate inflammatory stimuli. We characterized a method for the isolation of endothelial cell RNA with high purity directly from mouse aortas and adapted this method to allow for the treatment of aortas ex vivo before RNA collection. Expression array analysis was performed on endothelial cell RNA isolated from control and hyperlipidemic prelesion mouse aortas, and 797 differentially expressed genes were identified. We also examined the effect of additional atherogenic conditions on endothelial gene expression, including ex vivo treatment with inflammatory stimuli, acute hyperlipidemia, and age. Of the 14 most highly differentially expressed genes in endothelium from prelesion aortas, 8 were also perturbed significantly by ≥ 1 atherogenic conditions: 2610019E17Rik, Abca1, H2-Ab1, H2-D1, Pf4, Ppbp, Pvrl2, and Tnnt2. We demonstrated that RNA can be isolated from mouse aortic endothelial cells after in vivo and ex vivo treatments of the murine vessel wall. We applied these methods to identify a group of genes, many of which have not been described previously as having a direct role in atherosclerosis, that were highly regulated by atherogenic stimuli and may play a role in early atherogenesis."	"High-sensitivity troponin assays and the early rule-out of acute myocardial infarction. NA"	"[Clinical characteristics and genetic analysis of three pediatric patients with idiopathic restrictive cardiomyopathy]. Restrictive cardiomyopathy (RCM) is rare in children, and little is known about the molecular basis of RCM. The aim of this study was to investigate the clinical and myopathological characteristics and to detect mutations on cardiac sarcomere protein genes in three idiopathic pediatric RCMs. Detailed clinical characteristics and familiar history were obtained in three idiopathic pediatric RCMs. One hundred healthy pediatric individuals were recruited as controls. Histological evaluation was performed with heart tissue retrieved at catheterization in case-1 and case-2. The entire coding sequences of four cardiac sarcomere protein genes, including cardiac troponin T (TNNT2), cardiac troponin I(TNNI3), β-myosin heavy chain (MYH7), and α-actin (ACTC)were screened for mutations. Sequence variants were then tested in the family as well as in 100 healthy control DNAs. All three index cases were diagnosed as primary RCMs without family history, and their clinical conditions deteriorated rapidly. Case-1 was in combination with ventricular septal defect. Case-2 was in combination with mid- and inferoseptal hypertrophy. In case-1, myocardial biopsies displayed extensive an isomorphism and disarray of cardiomyocytes; electron microscopy showed large stacks of severely dysmorphic megamitochondria and focal Z-disc streaming. In case-2, endomyocardial biopsy revealed moderate myocyte hypertrophy with mild interstitial fibrosis; transmission electron microscopy showed misalignment of Z-bands and unequal Z-Z band distances. Genetic analysis identified two heterozygous missense mutations in TNNI3, with R204H in case-1 and R192H in case-3 respectively. A de novo heterozygous deletion in TNNT2 (p. Asn100_Glu101del) was identified in case-2. Sequence analysis shows that all three mutations are located in a position highly conserved across many species. The three mutations were negative for their parents and controls. The clinical conditions in all three index cases are deteriorated rapidly after diagnosed as primary RCM. Three heterozygous mutations including two in TNNI3 and one in TNNT2 gene are identified in the three RCMs respectively, which are considered as causative mutations. These findings provide new insights into the molecular etiology responsible for pediatric RCM."	"Effects of low-level hexabromocyclododecane (HBCD) exposure on cardiac development in zebrafish embryos. Hexabromocyclododecane (HBCD) is one of the most widely used brominated flame retardants. In the present study, zebrafish embryos were exposed to HBCD at the low concentrations of 0, 2, 20 and 200 nM. The results showed HBCD exposure resulted in an increase in heart rate and cardiac arrhythmia after exposure for 72 h, though the survival rate and the whole malformation rate were not significantly affected. These results demonstrated that the heart might be a target of HBCD. Low-level HBCD exposure may not share the same mechanisms as exposure to high concentrations, since no obvious increase of apoptotic cells around the heart was observed in the HBCD-treated groups. It was observed that the expression of Tbx5 and Nkx2.5 was significantly elevated by HBCD treatment in a dose-dependent manner using real-time quantitative PCR, which may be mainly responsible for the alteration of heart rate, given that Tbx5 and Nkx2.5 are two factors regulating ventricle conduction. The mRNA expression of RyR2 and Atp2a2b (SERCA2a) was up-regulated in the exposure group, which may be one of reasons to affect the normal heart rate, since SERCA2a and RyR2 play an important role in calcium ion transport of cadiomyocytes. However, HBCD exposure did not significantly change the expression of Actc1l, Tnnt2, and Myh6, which are mainly muscle contractile genes that play key roles in the formation of cardiac structure. These results were consistent with the lack of effect seen on the other measurements of cardiac function, end diastolic volume, end-systolic volume, stroke volume, and cardiac output."	"[Effects of electrical stimulation on the differentiation of mesenchymal stem cells into cardiomyocyte-like cells]. The aim of this study is to investigate the effects of electrical stimulation ES) on the induction of rat bone marrow mesenchymal stem cells (rBMSCs) to differentiate into cardiomyocyte-like cells in vitro. The third or fourth-generation of the rBMSCs was randomly divided into three groups, i. e. ES group, 5-Azacytidine (5-Aza) group, and control group. Those in the ES group with complete medium were exposed to 1,2,4 and 6V, 2Hz, 5ms ES for 2h everyday,lasting for 10d. Those in the 5-Aza group were induced by 10 micromol/L 5-Aza for 24h, then the medium was changed to complete medium without 5-Aza. Those in the control group were only cultured with complete medium. The growth status and morphological features of rBMSCs were observed by inverted phase microscope. The mRNA expressions of GATA4, a-actin, ACTN2 and TNNT2 were determined by Real-time fluorescent quantification PCR, and the protein expression of TNNT2 was detected with immunofluorescence staining. The results showed that the mRNA expression level of the GATA4, a-actin, ACTN2 and TNNT2 and the protein expression level of the TNNT2 were significantly higher in the ES group and 5-Aza group, compared to those in the control group(P&lt;0. 05). It suggested that ES could induce rBMSCs differentiation into cardiomyocyte-like cells in vitro."	"Cardiac troponin-T in acute pericarditis. The long-term outcome of acute pericarditis with high cardiac troponin-T (cTnT) is unknown. Our purpose was to investigate the prognostic and clinical value of cTnT in myopericardial inflammatory syndromes. Between January 2001 and September 2011, 107 patients hospitalized for acute pericarditis or myopericarditis were enrolled. Postinfarction pericarditis and neoplastic pericarditis were excluded. Physical examination, ECG, echocardiography and blood tests were performed. Among the 105 patients (89% men, mean age 36 ± 15 years-old), a cTnT rise was detectable in 64 patients (60.9%). Only younger age was found as an independent factor for higher values of cTnT in multivariate analysis (P = 0.03). After a mean follow-up of 51 months, a similar rate of complications was found in patients with a positive or a negative cTnT test: recurrent pericarditis (11 vs. 19%, P = 0.23) and cardiac tamponade (2 vs. 5%, P = 0.56). No cases of constrictive pericarditis, residual left ventricular dysfunction or hospital death were detected. The left ventricular ejection fraction remained unchanged during the follow-up (62.6 ± 6.5 vs. 61.9 ± 5.8, P = 0.89). In acute pericarditis, a cTnT rise is a frequent finding and commonly found in younger patients. However, unlike acute coronary syndrome, cTnT rise is not a negative prognostic marker."	"Impaired cardiovascular function caused by different stressors elicits a common pathological and transcriptional response in zebrafish embryos. Zebrafish embryos have been widely used to study the genes and processes needed for normal vertebrate heart development. We recently observed that exposure to 2,3,7,8-tetra-chlorodibenzo-p-dioxin (TCDD) or retinoic acid (RA) produces very similar signs of heart failure in developing zebrafish via divergent molecular pathways. The fact that diverse stressors and mutations cause severe pericardial edema and circulatory collapse in developing zebrafish has been largely unexplored. We hypothesized that unrelated chemicals can trigger a common pathological response leading to the same end-stage heart failure. To test this hypothesis, we compared the effects of TCDD, RA, carbaryl, valproic acid, and morpholino oligonucleotide (MO) knockdown of TBX5 on the developing heart in zebrafish embryos. These model stressors have all been previously reported to affect zebrafish heart development, and elicited very similar signs of embryonic heart failure. Microarray analysis showed that one cluster of 92 transcripts affected by these different treatments was significantly downregulated by all treatments. This gene cluster is composed of transcripts required for chromosome assembly, DNA replication, and cell cycle progression. We refer to this cluster as the cell cycle gene cluster (CCGC). Immunohistochemistry revealed that downregulation of the CCGC precedes a halt in cardiomyocyte proliferation in the hearts of zebrafish exposed to any of the treatments. Previous work has shown that the initial response to TCDD is a decrease in cardiac output. Since this precedes the signs of edema, heart failure, and fall in CCGC expression, we postulated that any factor that decreases cardiac output will produce the same syndrome of heart failure responses. To test this, we used MO knockdown of cardiac troponin T2 (TNNT2) to specifically block contractility. The TNNT2-MO produced exactly the same signs of cardiotoxicity as the other treatments, including downregulation of the signature CCGC. Our results indicate that agents altering cardiac output can have amplified consequences during specific periods in development."	"Detection of a large duplication mutation in the myosin-binding protein C3 gene in a case of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a cardiovascular disease with autosomal dominant inheritance caused by mutations in genes coding for sarcomeric and/or regulatory proteins expressed in cardiomyocytes. In a small cohort of HCM patients (n=8), we searched for mutations in the two most common genes responsible for HCM and found four missense mutations in the MYH7 gene encoding cardiac β-myosin heavy chain (R204H, M493V, R719W, and R870H) and three mutations in the myosin-binding protein C3 gene (MYBPC3) including one missense (A848V) and two frameshift mutations (c.3713delTG and c.702ins26bp). The c.702ins26bp insertion resulted from the duplication of a 26-bp fragment in a 54-year-old female HCM patient presenting with clinical signs of heart failure due to diastolic dysfunction. Although such large duplications (&gt;10 bp) in the MYBPC3 gene are very rare and have been identified only in 4 families reported so far, the identical duplication mutation was found earlier in a Dutch patient, demonstrating that it may constitute a hitherto unknown founder mutation in central European populations. This observation underscores the significance of insertions into the coding sequence of the MYBPC3 gene for the development and pathogenesis of HCM."	"Megalobrama amblycephala cardiac troponin T variants: molecular cloning, expression and response to nitrite. Cardiac troponin T (TNNT2), as a member of troponin superfamily, plays important roles during early cardiogenesis, and contraction and relaxation of myocardial cells. In this study, two alternatively spliced variants of Megalobrama amblycephala TNNT2 were identified showing a difference of 19 amino acids in the N-terminal hypervariable region. The longer cDNA (TNNT2-1) was 1,118 bp, encoding 284 amino acid residues, contained conserved central tropomyosin-binding region, cardiac specific signal and C-terminal segments except the N-terminal hypervariable region. The TNNT2 transcripts first appeared at 16 hours post-fertilization (hpf) peaking at 28 hpf (onset of heartbeat). In addition, strong expression of TNNT2 was found in the cardiac muscle. After nitrite exposure, the increased TNNT2 expression levels in the heart indicated that nitrite might induce cardiac injury. Results of semi-quantitative RT-PCR indicated that the two alternatively spliced variants existed in early development stages since their first appearance at 16 hpf and heart, spleen, headkiney of M. amblycephala. The shorter transcript (TNNT2-2) was proved to be dominant in the embryos and heart of M. amblycephala, furthermore, the increase of TNNT2 expression level in the heart after nitrite exposure was mainly caused by TNNT2-2."	"Association of perioperative troponin and atrial fibrillation after coronary artery bypass grafting. Prediction of atrial fibrillation (AF) after coronary artery bypass grafting (CABG) may lead to preventive or early treatment and improved outcome. We investigated the association of serial perioperative cardiac troponin T (cTNT) measurements with postoperative AF in patients undergoing CABG. In a retrospective analysis of prospectively collected data, 3148 patients undergoing elective CABG were evaluated. cTNT values were routinely determined before the start of surgery (cTNT0), at arrival on the intensive care unit (cTNT1) and 8-12 h later (cTNT2). Measurement of cTNT was continued until the peak value was reached. The development of AF during hospital stay was scored. The association between cTNT (cTNT0, cTNT1, cTNT2 and cTNTmax in first 48 h) and AF was calculated in univariable and multivariable analysis. AF occurred in 1080 (34%) patients. cTNT0, cTNT2 and cTNTmax were significantly and positively associated with postoperative AF (P &lt; 0.001) in a univariable analysis, whereas a trend was seen for cTNT1 (P = 0.051). Advanced age, inotropic support and postoperative infection were independently associated with postoperative AF after logistic regression analysis, but cTNT was not. Categorizing patients by inotropic support into categories of inotropic support duration (none, &lt;48 h, &gt;48 h), the mean cTNT values were significantly higher among patients with AF in each category (all P &lt; 0.001). Perioperative cTNT was significantly higher in patients with postoperative complications, longer hospital stay and reduced in-hospital survival. Perioperative cTNT is univariably associated with postoperative AF after CABG, but not independently. Further, no clinically useful cut-off point for preventive or early treatment could be identified. Both perioperative cTNT and postoperative AF are associated with negative outcome and prolonged hospital stay."	"Somatic MYH7, MYBPC3, TPM1, TNNT2 and TNNI3 mutations in sporadic hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a clinically heterogeneous genetic heart disease characterized by left ventricular hypertrophy in the absence of another disease that could explain the wall thickening. Elucidation of the genetic basis of HCM lead to the identification of several genes encoding sarcomeric proteins, such as MYH7, MYBPC3, TPM1, TNNT2, and TNNI3. Sarcomeric genes are mutated in approximately 40% of HCM patients and a possible explanation for the incomplete yield of mutation-positive HCM may be somatic mutations. We studied 104 unrelated patients with non-familial HCM. Patients underwent clinical evaluation and mutation screening of 5 genes implicated in HCM (MYH7, MYBPC3, TPM1, TNNT2, and TNNI3) in genomic DNA isolated from resected cardiac tissue; 41 of 104 were found to carry a mutation, but as several patients carried the same mutations, the total amount of different mutations was 37; 20 of these mutations have been previously described, and pathogenicity has been assessed. To determine the effect of the 17 new mutations an in silico assay was performed and it predicted that 4 variants were damaging mutations. All identified variants were also seen in the DNA isolated from the corresponding blood, which demonstrated the absence of somatic mutations. Somatic mutations in MYH7, MYBPC3, TPM1, TNNT2, and TNNI3 do not represent an important etiologic pathway in HCM."	"Mutation spectrum in a large cohort of unrelated Chinese patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HC) is a hereditary heterogeneous cardiovascular disorder. Existing data have been of predominantly Caucasian samples, and a large study is needed in Chinese population. The present study was intended to explore the genetic basis and clinical characteristics correlated with different genotypes in a large cohort of Chinese patients. Direct gene sequencing of β-myosin heavy chain (MYH7), myosin binding protein-C (MYBPC3), and cardiac troponin T (TNNT2) was performed in 136 unrelated Chinese HC patients. Clinical evaluations were conducted. In total, 32 mutations were identified in 36 patients (27%), including 10 novel ones. Distribution of mutations was 56% (MYBPC3), 31% (MYH7), and 13% (TNNT2), respectively. Double mutations were identified in 3% patients. The occurrence of HC-associated sarcomeric mutations was associated with an earlier age of onset, increased left ventricular hypertrophy, a higher incidence of syncope, previous family history, and sudden cardiac death. No statistical difference was identified in patients carrying MYBPC3 and MYH7 mutations with regard to clinical characteristics and outcomes. Patients with double mutations were associated with malignant progression in the study. In conclusion, MYBPC3 is the most predominant gene in HC. Multiple mutations are common in MYH7, MYBPC3, and TNNT2. The present study suggests a large diversity of HC and a prognostic role of genotype."	"Mutations in MYH7 reduce the force generating capacity of sarcomeres in human familial hypertrophic cardiomyopathy. Familial hypertrophic cardiomyopathy (HCM), frequently caused by sarcomeric gene mutations, is characterized by cellular dysfunction and asymmetric left-ventricular (LV) hypertrophy. We studied whether cellular dysfunction is due to an intrinsic sarcomere defect or cardiomyocyte remodelling. Cardiac samples from 43 sarcomere mutation-positive patients (HCMmut: mutations in thick (MYBPC3, MYH7) and thin (TPM1, TNNI3, TNNT2) myofilament genes) were compared with 14 sarcomere mutation-negative patients (HCMsmn), eight patients with secondary LV hypertrophy due to aortic stenosis (LVHao) and 13 donors. Force measurements in single membrane-permeabilized cardiomyocytes revealed significantly lower maximal force generating capacity (Fmax) in HCMmut (21 ± 1 kN/m²) and HCMsmn (26 ± 3 kN/m²) compared with donor (36 ± 2 kN/m²). Cardiomyocyte remodelling was more severe in HCMmut compared with HCMsmn based on significantly lower myofibril density (49 ± 2 vs. 63 ± 5%) and significantly higher cardiomyocyte area (915 ± 15 vs. 612 ± 11 μm²). Low Fmax in MYBPC3mut, TNNI3mut, HCMsmn, and LVHao was normalized to donor values after correction for myofibril density. However, Fmax was significantly lower in MYH7mut, TPM1mut, and TNNT2mut even after correction for myofibril density. In accordance, measurements in single myofibrils showed very low Fmax in MYH7mut, TPM1mut, and TNNT2mut compared with donor (respectively, 73 ± 3, 70 ± 7, 83 ± 6, and 113 ± 5 kN/m²). In addition, force was lower in MYH7mut cardiomyocytes compared with MYBPC3mut, HCMsmn, and donor at submaximal [Ca²⁺]. Low cardiomyocyte Fmax in HCM patients is largely explained by hypertrophy and reduced myofibril density. MYH7 mutations reduce force generating capacity of sarcomeres at maximal and submaximal [Ca²⁺]. These hypocontractile sarcomeres may represent the primary abnormality in patients with MYH7 mutations."	"Proliferation of embryonic cardiomyocytes in zebrafish requires the sodium channel scn5Lab. In mice, homozygous deletion of the cardiac sodium channel Scn5a results in defects in cardiac morphology and embryonic death before robust sodium current can be detected. In zebrafish, morpholino knockdown of cardiac sodium channel orthologs scn5Laa and scn5Lab perturbs specification of precardiac mesoderm and inhibits growth of the embryonic heart. It is not known which developmental processes are perturbed by sodium channel knockdown and whether reduced cell number is from impaired migration of cardiac progenitors into the heart, impaired myocyte proliferation, or both. We found that embryos deficient in scn5Lab displayed defects in primary cardiogenesis specific to loss of nkx2.5, but not nkx2.7. We generated kaede reporter fish and demonstrated that embryos treated with anti-scn5Lab morpholino showed normal secondary differentiation of cardiomyocytes at the arterial pole between 30 and 48 h post-fertilization. However, while proliferating myocytes were readily detected at 48 hpf in wild type embryos, there were no BrdU-positive cardiomyocytes in embryos subjected to anti-scn5Lab treatment. Proliferating myocytes were present in embryos injected with anti-tnnt2 morpholino to phenocopy the silent heart mutation, and absent in embryos injected with anti-tnnt2 and anti-scn5Lab morpholinos, indicating cardiac contraction is not required for the loss of proliferation. These data demonstrate that the role of scn5Lab in later heart growth does not involve contribution of the secondary heart field, but rather proliferation of cardiomyocytes, and appears unrelated to the role of the channel in cardiac electrogenesis."	"Normal presenting levels of high-sensitivity troponin and myocardial infarction. To analyse whether levels of high-sensitivity cardiac troponin (hs-cTn) below their respective 99th percentile can be used as a single parameter to rule out acute myocardial infarction (AMI) at presentation. Prospective, multicentre study. We measured hs-cTn using four different methods (hs-cTnT Roche, hs-cTnI Siemens, hs-cTnI Beckman Coulter and hs-cTnI Abbott) in consecutive patients presenting to the emergency department with acute chest pain. Two independent cardiologists adjudicated the final diagnosis. Patients were followed for death or AMI during a mean period of 24 months. Among 2072 consecutive patients with hs-cTnT measurements available, 21.4% had an adjudicated diagnosis of AMI (sensitivity 89.6%, 95% CI 86.4% to 92.3%, negative predictive value (NPV): 96.5%, 95% CI 95.4% to 97.4%). Among 1180 consecutive patients with hs-cTnI Siemens measurements available, 20.0% had AMI (sensitivity 94.1%, 95% CI 90.3% to 96.7%, NPV: 98.0%, 95% CI: 96.6% to 98.9%). Among 1151 consecutive patients with hs-cTnI Beckman Coulter measurements available, 19.7% had AMI (sensitivity 92.1%, 95% CI 87.8% to 95.2%, NPV: 97.5%, 95% CI 96.0% to 98.5%). Among 1567 consecutive patients with hs-cTnI Abbott measurements available, 20.0% had AMI (sensitivity 77.2%, 95% CI 72.1% to 81.7%, NPV: 94.3%, 95% CI 92.8% to 95.5%). Normal hs-cTn levels at presentation should not be used as a single parameter to rule out AMI as 6%-23% of adjudicated AMI cases had normal levels of hs-cTn levels at presentation. Our data highlight the lack of standardisation among hs-cTnI assays resulting in substantial differences in sensitivity and NPV at the 99th percentile."	"TNNT2 gene polymorphisms are associated with susceptibility to idiopathic dilated cardiomyopathy in the Han Chinese population. Idiopathic dilated cardiomyopathy (DCM) is characterized by ventricular chamber enlargement and systolic dysfunction. The pathogenesis of DCM remains uncertain, and the TNNT2 gene is potentially associated with DCM. To assess the role of TNNT2 in DCM, we examined 10 tagging single nucleotide polymorphisms (SNPs) in the patients. A total of 97 DCM patients and 189 control subjects were included in the study, and all SNPs were genotyped by matrix-assisted laser desorption/ionization time-of-flight mass spectrometry. In the TNNT2 gene, there was a significant association between DCM and genotype for the tagging SNPs rs3729547 (χ(2) = 6.63, P = 0.036, OR = 0.650, and 95% CI = 0.453-0.934) and rs3729843 (χ(2) = 9.787, P = 0.008, OR = 1.912, and 95% CI = 1.265-2.890) in the Chinese Han population. Linkage disequilibrium (LD) analysis showed that the SNPs rs7521796, rs2275862, rs3729547, rs10800775, and rs1892028, which are approximately 6 kb apart, were in high LD (D' &gt; 0.80) in the DCM patients. These results suggest that the TNNT2 polymorphisms might play an important role in susceptibility to DCM in the Chinese Han population."	"Distinct patterns of histone modifications at cardiac-specific gene promoters between cardiac stem cells and mesenchymal stem cells. Mesenchymal stem cells (MSCs) and cardiac stem cells (CSCs) possess different potential to develop into cardiomyocytes. The mechanism underlying cardiomyogenic capacity of MSCs and CSCs remains elusive. It is well established that histone modifications correlate with gene expression and contribute to cell fate commitment. Here we hypothesize that specific histone modifications accompany cardiac-specific gene expression, thus determining the differentiation capacity of MSCs and CSCs toward heart cells. Our results indicate that, at the promoter regions of cardiac-specific genes (Myh6, Myl2, Actc1, Tnni3, and Tnnt2), the levels of histone acetylation of H3 (acH3) and H4 (acH4), as a mark indicative of gene activation, were higher in CSCs (Sca-1(+)CD29(+)) than MSCs. Additionally, lower binding levels of histone deacetylase (HDAC) 1 and HDAC2 at promoter regions of cardiac-specific genes were noticed in CSCs than MSCs. Treatment with trichostatin A, an HDAC inhibitor, upregulated cardiac-specific gene expression in MSCs. Suppression of HDAC1 or HDAC2 expression by small interfering RNAs led to increased cardiac gene expression and was accompanied by enhanced acH3 and acH4 levels at gene loci. We conclude that greater levels of histone acetylation at cardiac-specific gene loci in CSCs than MSCs reflect a stronger potential for CSCs to develop into cardiomyocytes. These lineage-differential histone modifications are likely due to less HDAC recruitment at cardiac-specific gene promoters in CSCs than MSCs."	"Spheroid formation and enhanced cardiomyogenic potential of adipose-derived stem cells grown on chitosan. Mesenchymal stem cells may differentiate into cardiomyocytes and participate in local tissue repair after heart injury. In the current study, rat adipose-derived adult stem cells (ASCs) grown on chitosan membranes were observed to form cell spheroids after 3 days. The cell seeding density and surface modification of chitosan with Arg-Gly-Asp-containing peptide had an influence on the sizes of ASC spheroids. In the absence of induction, these spheroids showed an increased level of cardiac marker gene expression (Gata4, Nkx2-5, Myh6, and Tnnt2) more than 20-fold versus cells on the tissue culture polystyrene (TCPS) dish. Induction by 5-azacytidine or p38 MAP kinase inhibitor (SB202190) did not further increase the cardiac marker gene expression of these spheroids. Moreover, the enhanced cardiomyogenic potential of the spheroids was highly associated with the chitosan substrates. When ASC spheroids were plated onto TCPS with either basal or cardiac induction medium for 9 days, the spheroids spread into a monolayer and the positive effect on cardiomyogenic marker gene expression disappeared. The possible role of calcium ion and the up-regulation of adhesion molecule P-selectin and chemokine receptor Cxcr4 were demonstrated in ASC spheroids. Applying these spheroids to the chronic myocardial infarction animal model showed better functional recovery versus single cells after 12 weeks. Taken together, this study suggested that the ASC spheroids on chitosan may form as a result of calcium ion signaling, and the transplantation of these spheroids may offer a simple method to enhance the efficiency of stem cell-based therapy in myocardial infarction."	"Perturbed length-dependent activation in human hypertrophic cardiomyopathy with missense sarcomeric gene mutations. High-myofilament Ca(2+) sensitivity has been proposed as a trigger of disease pathogenesis in familial hypertrophic cardiomyopathy (HCM) on the basis of in vitro and transgenic mice studies. However, myofilament Ca(2+) sensitivity depends on protein phosphorylation and muscle length, and at present, data in humans are scarce. To investigate whether high myofilament Ca(2+) sensitivity and perturbed length-dependent activation are characteristics for human HCM with mutations in thick and thin filament proteins. Cardiac samples from patients with HCM harboring mutations in genes encoding thick (MYH7, MYBPC3) and thin (TNNT2, TNNI3, TPM1) filament proteins were compared with sarcomere mutation-negative HCM and nonfailing donors. Cardiomyocyte force measurements showed higher myofilament Ca(2+) sensitivity in all HCM samples and low phosphorylation of protein kinase A (PKA) targets compared with donors. After exogenous PKA treatment, myofilament Ca(2+) sensitivity was similar (MYBPC3mut, TPM1mut, sarcomere mutation-negative HCM), higher (MYH7mut, TNNT2mut), or even significantly lower (TNNI3mut) compared with donors. Length-dependent activation was significantly smaller in all HCM than in donor samples. PKA treatment increased phosphorylation of PKA-targets in HCM myocardium and normalized length-dependent activation to donor values in sarcomere mutation-negative HCM and HCM with truncating MYBPC3 mutations but not in HCM with missense mutations. Replacement of mutant by wild-type troponin in TNNT2mut and TNNI3mut corrected length-dependent activation to donor values. High-myofilament Ca(2+) sensitivity is a common characteristic of human HCM and partly reflects hypophosphorylation of PKA targets compared with donors. Length-dependent sarcomere activation is perturbed by missense mutations, possibly via posttranslational modifications other than PKA hypophosphorylation or altered protein-protein interactions, and represents a common pathomechanism in HCM."	"Mutations in the cardiac troponin T gene show various prognoses in Japanese patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disorder resulting from mutations in genes for at least 15 various sarcomere-related proteins including cardiac β-myosin heavy chain, cardiac myosin-binding protein C, and cardiac troponin T. The troponin T gene (TNNT2) mutation has the third incidence of familial HCM, and the genotype-phenotype correlation of this gene still remains insufficient in Japanese familial HCM. Therefore, in the present study, we focused on screening the TNNT2 mutation in 173 unrelated Japanese patients with familial HCM, and found three reported mutations and a new mutation of TNNT2 in 11 individuals from four families. In these families, two individuals from one family had double mutations, Arg130Cys and Phe110Ile, six individuals from two other families had an Arg92Trp mutation, and one individual of another family had a new mutation, Ile79Thr, of TNNT2. The phenotype of each family was often different from reported cases, even if they had the same genetic mutation. In addition, families with the same genetic mutation showed a similar trend in the phenotype, but it was not exactly the same. However, sudden death in youth was observed in all of these families. Although the type of genetic mutation is not useful for predicting prognosis in HCM, the possibility of sudden cardiac death remains. Therefore, the prognosis of individuals bearing the TNNT2 mutation with familial HCM should be more carefully observed from birth. "	"Association between discharge heart rate and left ventricular adverse remodelling in ST segment elevation myocardial infarction patients treated with primary percutaneous coronary intervention. Left ventricular (LV) adverse remodelling is an important determinant of mortality after ST segment elevation myocardial infarction (STEMI). Recently, discharge heart rate (DHR) has been associated with long-term outcomes after STEMI. Whether DHR is related to the development of LV remodelling after STEMI remains unknown. The present study evaluated the association between DHR after STEMI and the occurrence of LV remodelling at 6 months. DESIGN, SETTING, PATIENTS AND INTERVENTIONS: In 964 STEMI patients (60±11 years, 77% male) treated with primary percutaneous coronary intervention, DHR was derived from predischarge 12-lead electrocardiograph. LV volumes were measured with two-dimensional transthoracic echocardiography at baseline and 6-month follow-up. Variables independently associated with the occurrence of LV remodelling were investigated. LV remodelling, defined as ≥20% increase in LV end-diastolic volume at 6 months follow-up. LV remodelling occurred in 30.7% of patients. Compared with patients without remodelling, these patients had higher DHR (72±11 bpm vs 68±12 bpm, p&lt;0.001), higher levels of peak troponin T (5.6 (2.7, 11) ug/L vs 3.7 (1.6, 7.4) ug/L, p&lt;0.001) and creatine kinase (2083 (960, 4045) U/L vs 1469 (669, 2750) U/L, p&lt;0.001), lower LV ejection fraction (45±10 vs 48±9%, p&lt;0.001) and more frequently displayed left anterior descending artery as culprit (52% vs 44%, p=0.02). Median DHR was 69 bpm. DHR &gt;69 bpm (OR 1.5, 95% CI 1.10 to 2.04, p=0.01) and higher peak troponin T (OR 1.06, 95% CI 1.03 to 1.09, p&lt;0.001) were independently associated with LV remodelling at follow-up. DHR is independently associated with LV remodelling after STEMI, underlining the importance of heart rate as an early risk marker in this contemporary population."	"Effect of remote ischemic preconditioning on serum troponin T level following elective percutaneous coronary intervention. Elective percutaneous coronary intervention (PCI) is associated with myocardial necrosis, as evidenced by troponin release, in approximately one-third of cases. This is known to be linked with subsequent cardiovascular events. This study assessed the ability of remote ischemic preconditioning (RIPC) to attenuate cardiac troponin T (cTnT) release after elective PCI. Evaluation of effect of RIPC on myocardial markers following elective PCI. One hundred and forty nine consecutive patients undergoing elective PCI with undetectable preprocedural cTnT were recruited. Subjects were randomized to receive RIPC (induced by three 5-min inflations of a blood pressure cuff to 200 mm Hg around the upper arm, followed by 5-min intervals of reperfusion) or control (cuff deflated) immediately before arrival in the cardiac catheterization room. The primary outcome was cTnT level at approximately 16 hr after PCI. Secondary outcomes included occurrence of postprocedural myocardial infarction (MI), CKMB levels at 16 hr after PCI and assessment of the inflammatory response as measured by C-reactive protein (CRP) levels. The mean cTnT at 16 hr after PCI was lower in the RIPC group compared with the control group. (0.020 vs. 0.047 ng/ml; P = 0.047) Occurrence of postprocedural MI, CKMB and CRP levels did not differ in both groups (P = 0.097, 0.537, and 0.481 respectively). The use of RIPC immediately prior to PCI attenuates procedure-related cTnT release and does not affect occurrence of post procedural MI, CKMB, or CRP levels."	"Genetic complexity in hypertrophic cardiomyopathy revealed by high-throughput sequencing. Clinical interpretation of the large number of rare variants identified by high throughput sequencing (HTS) technologies is challenging. The aim of this study was to explore the clinical implications of a HTS strategy for patients with hypertrophic cardiomyopathy (HCM) using a targeted HTS methodology and workflow developed for patients with a range of inherited cardiovascular diseases. By comparing the sequencing results with published findings and with sequence data from a large-scale exome sequencing screen of UK individuals, we sought to quantify the strength of the evidence supporting causality for detected candidate variants. 223 unrelated patients with HCM (46±15 years at diagnosis, 74% males) were studied. In order to analyse coding, intronic and regulatory regions of 41 cardiovascular genes, we used solution-based sequence capture followed by massive parallel resequencing on Illumina GAIIx. Average read-depth in the 2.1 Mb target region was 120. Rare (frequency&lt;0.5%) non-synonymous, loss-of-function and splice-site variants were defined as candidates. Excluding titin, we identified 152 distinct candidate variants in sarcomeric or associated genes (89 novel) in 143 patients (64%). Four sarcomeric genes (MYH7, MYBPC3, TNNI3, TNNT2) showed an excess of rare single non-synonymous single-nucleotide polymorphisms (nsSNPs) in cases compared to controls. The estimated probability that a nsSNP in these genes is pathogenic varied between 57% and near certainty depending on the location. We detected an additional 94 candidate variants (73 novel) in desmosomal, and ion-channel genes in 96 patients (43%). This study provides the first large-scale quantitative analysis of the prevalence of sarcomere protein gene variants in patients with HCM using HTS technology. Inclusion of other genes implicated in inherited cardiac disease identifies a large number of non-synonymous rare variants of unknown clinical significance."	"Prognostic value of high-sensitivity cardiac troponin T in acute ischemic stroke. Cardiac troponins have been investigated as prognostic markers in the setting of ischemic stroke with diverging results. A new generation of highly sensitive troponin assays have recently been developed that allow for the detection of concentrations 5 to 10 times lower than those measureable with conventional assays. The aim of this study was to determine the association between high-sensitivity cardiac troponin T (hs-cTnT) elevation on admission and mortality after acute ischemic stroke. Serum concentrations of hs-cTnT were measured at the time of admission in 347 patients with acute ischemic stroke. Clinical data and background information were obtained. Total follow-up time was 1.5 ± 0.7 years, and all-cause mortality was used as the outcome measure. Median hs-cTnT on admission in the whole group was 15.2 ng/L (interquartile range [IQR] 7.5-27.8), and was higher in nonsurvivors than survivors (28.2 ng/L [IQR 15.6-39.5] vs 11.4 ng/L [IQR 6.0-21.2]; P &lt; .001). In multivariate analysis, high hs-cTnT (the fourth quartile) was independently associated with all-cause mortality during the follow-up period, with a hazard ratio of 1.65 (95% confidence interval [CI] 1.04-2.63; P = .035). The addition of hs-cTnT as a continuous variable to the multivariate model resulted in both incremental discrimination and reclassification of patients (C-index increase from 0.819 to 0.834 [P = .007]; integrated discrimination index 0.011 [95% CI 0.001-0.021; P = .028]). Circulating hs-cTnT levels are closely associated with the risk of death in patients with acute ischemic stroke, and even levels below the upper reference limit appear to have prognostic value."	"Prognostic value of cardiac troponin levels in infective endocarditis. NA"	"Genetic analysis in 418 index patients with idiopathic dilated cardiomyopathy: overview of 10 years' experience. With more than 40 dilated cardiomyopathy (DCM)-related genes known, genetic analysis of patients with idiopathic DCM is costly and time-consuming. We describe the yield from genetic analysis in DCM patients in a large Dutch cohort. We collected cardiological and neurological evaluations, family screenings, and genetic analyses for 418 index patients with idiopathic DCM. We identified 35 (putative) pathogenic mutations in 82 index patients (20%). The type of DCM influenced the yield, with mutations found in 25% of familial DCM cases, compared with 8% of sporadic DCM cases and 62% of cases where DCM was accompanied by neuromuscular disease. A PLN founder mutation (43 cases) and LMNA mutations (19 cases, 16 different mutations) were most prevalent and often demonstrated a specific phenotype. Other mutations were found in: MYH7, DES, TNNT2, DMD, TPM1, DMPK, SCN5A, SGCB (homozygous), and TNNI3. After a median follow-up of 40 months, the combined outcome of death from any cause, heart transplantation, or malignant ventricular arrhythmias in patients with a mutation was worse than in those without an identified mutation (hazard ratio 2.0, 95% confidence interval 1.4-3.0). This seems to be mainly attributable to a high prevalence of malignant ventricular arrhythmias and end-stage heart failure in LMNA and PLN mutation carriers. The yield of identified mutations in DCM index patients with clinical clues, such as associated neuromuscular disease or familial occurrence, is higher compared with those without these clues. For sporadic DCM, specific clinical characteristics may be used to select cases for DNA analysis."	"Highly sensitive cardiac troponin T and long-term mortality in a population of community-derived perimenopausal women: nested case-control study. To assess the association between baseline levels of highly sensitive cardiac troponin T (hs-cTnT) and long-term mortality in perimenopausal women of the general community using a gender specific 99th percentile reference limit. Nested case control. The present study was conducted within the Eindhoven Perimenopausal Osteoporosis Study which is a large prospective cohort of 8503 community-derived women of the city of Eindhoven, The Netherlands. Cases were defined as Eindhoven Perimenopausal Osteoporosis Study participants who provided an adequate baseline blood sample and subsequently experienced death during follow-up between 1994 and 2003. In total, 123 cases were identified. For each case two matched controls were selected using age, body mass index and hypertension as matching factors. The gender specific 99th percentile reference limit determined in the 246 controls was 8.0 ng/l. All cause mortality. Hs-cTnT was significantly higher in the cases: 3.0 ng/l versus 2.3 ng/l (p=0.04). After adjustment for matching and clinical risk factors, each 1 SD increase of the level of hs-cTnT was significantly associated with mortality (OR 1.3, 95% CI 1.1 to 1.7, p=0.018). With amino-terminal pro-B-type natriuretic peptide (NT-proBNP) in the multivariable model as a continuous variable the association of hs-cTnT with mortality was lost. With both hs-cTnT and NT-proBNP as dichotomous variables, the gender specific 99th percentile reference limit (8.0 ng/l) was associated with mortality, independent of NT-proBNP (OR 3.7, 95% CI 1.0 to 13.2, p=0.048). In this study of community-derived perimenopausal women, hs-cTnT was associated with long-term mortality, independent of clinical risk factors. With the use of easily applicable cut-off levels, the gender specific reference limit of hs-cTnT had a prognostic impact that was independent of NT-proBNP."	"Multiple gene mutations, not the type of mutation, are the modifier of left ventricle hypertrophy in patients with hypertrophic cardiomyopathy. Genotype-phenotype correlation of hypertrophic cardiomyopathy (HCM) has been challenging because of the genetic and clinical heterogeneity. To determine the mutation profile of Chinese patients with HCM and to correlate genotypes with phenotypes, we performed a systematic mutation screening of the eight most commonly mutated genes encoding sarcomere proteins in 200 unrelated Chinese adult patients using direct DNA sequencing. A total of 98 mutations were identified in 102 mutation carriers. The frequency of mutations in MYH7, MYBPC3, TNNT2 and TNNI3 was 26.0, 18.0, 4.0 and 3.5 % respectively. Among the 200 genotyped HCM patients, 83 harbored a single mutation, and 19 (9.5 %) harbored multiple mutations. The number of mutations was positively correlated with the maximum wall thickness. We found that neither particular gene nor specific mutation was correlated to clinical phenotype. In summary, the frequency of multiple mutations was greater in Chinese HCM patients than in the Caucasian population. Multiple mutations in sarcomere protein may be a risk factor for left ventricular wall thickness."	"Association of genome-wide variation with highly sensitive cardiac troponin-T levels in European Americans and Blacks: a meta-analysis from atherosclerosis risk in communities and cardiovascular health studies. High levels of cardiac troponin T, measured by a highly sensitive assay (hs-cTnT), are strongly associated with incident coronary heart disease and heart failure. To date, no large-scale genome-wide association study of hs-cTnT has been reported. We sought to identify novel genetic variants that are associated with hs-cTnT levels. We performed a genome-wide association in 9491 European Americans and 2053 blacks free of coronary heart disease and heart failure from 2 prospective cohorts: the Atherosclerosis Risk in Communities Study and the Cardiovascular Health Study. Genome-wide association studies were conducted in each study and race stratum. Fixed-effect meta-analyses combined the results of linear regression from 2 cohorts within each race stratum and then across race strata to produce overall estimates and probability values. The meta-analysis identified a significant association at chromosome 8q13 (rs10091374; P=9.06×10(-9)) near the nuclear receptor coactivator 2 (NCOA2) gene. Overexpression of NCOA2 can be detected in myoblasts. An additional analysis using logistic regression and the clinically motivated 99th percentile cut point detected a significant association at 1q32 (rs12564445; P=4.73×10(-8)) in the gene TNNT2, which encodes the cardiac troponin T protein itself. The hs-cTnT-associated single-nucleotide polymorphisms were not associated with coronary heart disease in a large case-control study, but rs12564445 was significantly associated with incident heart failure in Atherosclerosis Risk in Communities Study European Americans (hazard ratio=1.16; P=0.004). We identified 2 loci, near NCOA2 and in the TNNT2 gene, at which variation was significantly associated with hs-cTnT levels. Further use of the new assay should enable replication of these results."	"Early results of sarcomeric gene screening from the Egyptian National BA-HCM Program. The present study comprised sarcomeric genotyping of the three most commonly involved sarcomeric genes: MYBPC3, MYH7, and TNNT2 in 192 unrelated Egyptian hypertrophic cardiomyopathy (HCM) index patients. Mutations were detected in 40 % of cases. Presence of positive family history was significantly (p=0.002) associated with a higher genetic positive yield (49/78, 62.8 %). The majority of the detected mutations in the three sarcomeric genes were novel (40/62, 65 %) and mostly private (47/62, 77 %). Single nucleotide substitution was the most frequently detected mutation type (51/62, 82 %). Over three quarters of these substitutions (21/27, 78 %) involved CpG dinucleotide sites and resulted from C&gt;T or G&gt;A transition in the three analyzed genes, highlighting the significance of CpG high mutability within the sarcomeric genes examined. This study could aid in global comparative studies in different ethnic populations and constitutes an important step in the evolution of the integrated clinical, translational, and basic science HCM program."	"[Expression of ACTN2, alpha-actin and TNNT2 in rat bone marrow-derived mesenchymal stem cells induced by low frequency pulsed electromagnetic fields]. To study the expression of Actinin, alpha 2 (ACTN2), alpha-actin and Troponin T type 2 (TNNT2) in rat bone marrow-derived mesenchymal stem cells (rBMSCs) induced by low frequency pulsed electromagnetic fields (PEMFs). The rBMSCs were isolated by adherence method and the third-generation of the rBMSCs were randomly divided into PEMFs groups, 5-Azacytidine groups (5-Aza), PEMFs +5-Aza group and control groups. PEMFs groups with complete medium were exposed to 50 Hz, 1 mT PEMFs for 30 min every day, lasting for 10 d, 15 d and 20 d, respectively. 5-Aza groups were induced by 10 micromol/L 5-Aza for 1 day, then the medium was changed to complete medium without 5-Aza. PEMFs +5-Aza group were firstly induced by 10 micromol/L 5-Aza for 1 day, and then were exposed to PEMFs according to the way of PEMFs group. And control groups were only cultured with complete medium, rBMSCs' growth status and morphological features were observed by inverted phase microscope. The mRNA expressions of ACTN2 and TNNT2 were determined by real-time fluorescent quantitation PCR. And the protein expression of the ACTN2, alpha-actin and TNNT2 were detected with Western blot method. The result showed that the mRNA expression level of the ACTN2 and TNNT2 and the protein expression level of the ACTN2, alpha-actin and TNNT2 were significantly higher in the PEMFs group, 5-Aza group and PEMFs+ 5-Aza group when compared with the control group. PEMFs may induce rBMSCs differentiation into cardiomyocyte-like cells in vitro."	"Cardiac gene activation analysis in mammalian non-myoblasic cells by Nkx2-5, Tbx5, Gata4 and Myocd. Cardiac transcription factors are master regulators during heart development. Some were shown to transdifferentiate tail tip and cardiac fibroblasts into cardiomyocytes. However, recent studies have showed that controversies exist. Potential difference in tail tip and cardiac fibroblast isolation may possibly confound the observations. Moreover, due to the use of a cardiac reporter (Myh6) selection strategy for induced cardiomyocyte enrichment, and the lack of tracking signals for each transcription factors, individual roles of each transcription factors in activating cardiac gene expression in mammalian non-myoblastic cells have never been elucidated. Answers to these questions are an important step toward cardiomyocyte regeneration. Because mouse 10T1/2 fibroblasts are non-myoblastic in nature and can be induced to express genes of all three types of muscle cells, they are an ideal model for the analysis of cardiac and non-cardiac gene activation after induction. We constructed bi-cistronic lentiviral vectors, capable of expressing cardiac transcription factors along with different fluorescent tracking signals. By infecting 10T1/2 fibroblasts with Nkx2-5, Tbx5, Gata4 or Myocd cardiac transcription factor lentivirus alone or different combinations, we found that only Tbx5+Myocd and Tbx5+Gata4+Myocd combinations induced Myh6 and Tnnt2 cardiac marker protein expression. Microarray-based gene ontology analysis revealed that Tbx5 alone activated genes involved in the Wnt receptor signaling pathway and inhibited genes involved in a number of cardiac-related processes. Myocd alone activated genes involved in a number of cardiac-related processes and inhibited genes involved in the Wnt receptor signaling pathway and non-cardiac processes. Gata4 alone inhibited genes involved in non-cardiac processes. Tbx5+Gata4+Myocd was the most effective activator of genes associated with cardiac-related processes. Unlike Tbx5, Gata4, Myocd alone or Tbx5+Myocd, Tbx5+Gata4+Myocd activated the fewest genes associated with non-cardiac processes. Conclusively, Tbx5, Gata4 and Myocd play different roles in cardiac gene activation in mammalian non-myoblastic cells. Tbx5+Gata4+Myocd activates the most cardiac and the least non-cardiac gene expression."	"A human MYBPC3 mutation appearing about 10 centuries ago results in a hypertrophic cardiomyopathy with delayed onset, moderate evolution but with a risk of sudden death. Hypertrophic Cardiomyopathy (HCM) is a genetically heterogeneous disease. One specific mutation in the MYBPC3 gene is highly prevalent in center east of France giving an opportunity to define the clinical profile of this specific mutation. HCM probands were screened for mutation in the MYH7, MYBPC3, TNNT2 and TNNI3 genes. Carriers of the MYBPC3 IVS20-2A&gt;G mutation were genotyped with 8 microsatellites flanking this gene. The age of this MYBPC3 mutation was inferred with the software ESTIAGE. The age at first symptom, diagnosis, first complication, first severe complication and the rate of sudden death were compared between carriers of the IVS20-2 mutation (group A) and carriers of all other mutations (group B) using time to event curves and log rank test. Out of 107 HCM probands, 45 had a single heterozygous mutation in one of the 4 tested sarcomeric genes including 9 patients with the MYBPC3 IVS20-2A&gt;G mutation. The IVS20-2 mutation in these 9 patients and their 25 mutation carrier relatives was embedded in a common haplotype defined after genotyping 4 polymorphic markers on each side of the MYBPC3 gene. This result supports the hypothesis of a common ancestor. Furthermore, we evaluated that the mutation occurred about 47 generations ago, approximately at the 10th century.We then compared the clinical profile of the IVS20-2 mutation carriers (group A) and the carriers of all other mutations (group B). Age at onset of symptoms was similar in the 34 group A cases and the 73 group B cases but group A cases were diagnosed on average 15 years later (log rank test p = 0.022). Age of first complication and first severe complication was delayed in group A vs group B cases but the prevalence of sudden death and age at death was similar in both groups. A founder mutation arising at about the 10th century in the MYBPC3 gene accounts for 8.4% of all HCM in center east France and results in a cardiomyopathy starting late and evolving slowly but with an apparent risk of sudden death similar to other sarcomeric mutations."	"Cardiac structural and sarcomere genes associated with cardiomyopathy exhibit marked intolerance of genetic variation. The clinical significance of variants in genes associated with inherited cardiomyopathies can be difficult to determine because of uncertainty regarding population genetic variation and a surprising amount of tolerance of the genome even to loss-of-function variants. We hypothesized that genes associated with cardiomyopathy might be particularly resistant to the accumulation of genetic variation. We analyzed the rates of single nucleotide genetic variation in all known genes from the exomes of &gt;5000 individuals from the National Heart, Lung, and Blood Institute's Exome Sequencing Project, as well as the rates of structural variation from the Database of Genomic Variants. Most variants were rare, with over half unique to 1 individual. Cardiomyopathy-associated genes exhibited a rate of nonsense variants, about 96.1% lower than other Mendelian disease genes. We tested the ability of in silico algorithms to distinguish between a set of variants in MYBPC3, MYH7, and TNNT2 with strong evidence for pathogenicity and variants from the Exome Sequencing Project data. Algorithms based on conservation at the nucleotide level (genomic evolutionary rate profiling, PhastCons) did not perform as well as amino acid-level prediction algorithms (Polyphen-2, SIFT). Variants with strong evidence for disease causality were found in the Exome Sequencing Project data at prevalence higher than expected. Genes associated with cardiomyopathy carry very low rates of population variation. The existence in population data of variants with strong evidence for pathogenicity suggests that even for Mendelian disease genetics, a probabilistic weighting of multiple variants may be preferred over the single gene causality model."	"The calcium-dependent regulation of spheroid formation and cardiomyogenic differentiation for MSCs on chitosan membranes. Mesenchymal stem cells (MSCs) were recently found to form three-dimensional (3D) multicellular spheroids on chitosan membranes. The exact mechanism of spheroid formation, however, remains unclear. In this study, the regulation of spheroid formation for adipose derived adult stem cells (ADAS) grown on chitosan membranes was examined. By varying the membrane thickness, calcium concentration in culture medium, and acetylation extent of chitosan, the physico-chemical characteristics of chitosan that modulated spheroid formation was elucidated. The capacity of cardiomyogenic differentiation was further evaluated. Results suggested that the calcium binding capacity of chitosan may affect the cell-substrate and cell-cell interactions and critically influence the dynamics of spheroid formation. The intracellular calcium level was elevated for ADAS spheroids on chitosan. Chitosan-bound calcium was observed to enter the cells. The expression of N-cadherin was upregulated for ADAS spheroids on chitosan, evidenced by quantitative RT-PCR and Western blot. After the induction by 5-aza, the expression levels of cardiac marker genes (Gata4, Nkx2.5, Tnnt2, and Myh6) were remarkably enhanced (about four-fold) for ADAS on chitosan vs. tissue culture polystyrene or polyvinyl alcohol. Immunofluorescence staining confirmed the expression of cardiac-associated tight junction protein ZO-1 for ADAS grown on chitosan membranes. The gene expression of Wnt11 was significantly upregulated for ADAS spheroids on chitosan at 3 days and 12 days. We suggested that Wnt11 may be involved in the spheroid formation and cardiomyogenic differentiation of MSCs on chitosan membranes. Spheroids formed on the acetylated chitosan or polyvinyl alcohol membranes failed to show such behavior. The properties of MSC spheroids were therefore determined by the culture substrate."	"Predictive value of cardiac troponin T and I in hemodialysis patients. Cardiac troponin T (cTnT) and I (cTnI) levels are considered as important diagnostic tools in acute coronary events. They could be of predictive value in hemodialysis (HD) patients. The aim of this study was to determine the prevalence of increased cTnI and cTnT in HD patients and their prognostic relevance to all-cause mortality. We measured cTnT and cTnI at baseline in 145 asymptomatic HD patients. We used three different cut-off criteria to define elevated cardiac troponin levels as follows: the 99 th percentile of a reference population, the lowest concentration to give a 10% imprecision [10% coefficient of variation (10% CV)] and the relative operating characteristic (ROC) curve-determined value optimized for diagnostic sensitivity and specificity for detection of myocardial injury (MI). These concentrations were 0.01 ng/mL, 0.03 ng/mL and 0.1 ng/mL for cTnT and 0.2 ng/mL, 0.6 ng/mL and 1 ng/mL for cTnI, respectively. Patients were followed for all-cause mortality (median follow-up 551 days). Kaplan-Meier survival curves, log-rank test and Cox models were employed to determine whether baseline cTnT and cTnI levels were predictive of mortality. Greater percentages of patients had an increased cTnT versus cTnI at each cut-off as follows: 99 th percentile, 90.3% versus 35.2%; 10% CV, 73.1% versus 2.1%; and ROC, 20.7% versus 0.7%. During follow-up, 40 patients died. Elevated cTnT levels above the ROC concentration were associated with increased mortality, although it was not significant after adjustment for other risk factors. Univariate and adjusted hazard ratios were 2.3 [confidence intervals (CI), 1.2-4.5; P = 0. 01] and 1.9 (CI, 0.9-3.9; P = 0.07). No differences were found for cTnI levels. Diabetes mellitus was also an independent predictor of mortality. There is a high prevalence of positive cTnT and cTnI in asymptomatic HD patients, with a greater number of patients having an increased cTnT. Elevated troponin T, but not cTnI, seems to be associated with poor prognosis."	"Comparative gene expression profiling in human-induced pluripotent stem cell--derived cardiocytes and human and cynomolgus heart tissue. Cardiotoxicity is one of the leading causes of drug attrition. Current in vitro models insufficiently predict cardiotoxicity, and there is a need for alternative physiologically relevant models. Here we describe the gene expression profile of human-induced pluripotent stem cell-derived cardiocytes (iCC) postthaw over a period of 42 days in culture and compare this profile to human fetal and adult as well as adult cynomolgus nonhuman primate (NHP, Macaca fascicularis) heart tissue. Our results indicate that iCC express relevant cardiac markers such as ion channels (SCN5A, KCNJ2, CACNA1C, KCNQ1, and KCNH2), tissue-specific structural markers (MYH6, MYLPF, MYBPC3, DES, TNNT2, and TNNI3), and transcription factors (NKX2.5, GATA4, and GATA6) and lack the expression of stem cell markers (FOXD3, GBX2, NANOG, POU5F1, SOX2, and ZFP42). Furthermore, we performed a functional evaluation of contractility of the iCC and showed functional and pharmacological correlations with myocytes isolated from adult NHP hearts. These results suggest that stem cell-derived cardiocytes may represent a novel in vitro model to study human cardiac toxicity with potential ex vivo and in vivo translation."	"Diagnostic contribution of left ventricular endomyocardial biopsy in patients with clinical phenotype of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy phenotype is shared by heterogeneous entities. The purpose of the study was to evaluate the diagnostic role of left ventricular endomyocardial biopsy. One hundred fifty-one consecutive patients with unexplained left ventricular hypertrophy and normal/elevated QRS voltages or left bundle-branch block underwent left ventricular endomyocardial biopsy because of associated left ventricular dysfunction (37%), presence of sporadic form of left ventricular hypertrophy (32%), or patient desire for a definite diagnosis (31%). Biopsy samples were processed for histology and electron microscopy. Blood samples were collected for histologically oriented gene analysis of major sarcomeric (MYH7, MYBPC3, TNNT2, TPM1) and lysosomal (LAMP2, PRKAG2, α-galactosidase A) proteins. Histology showed changes consistent/compatible with hypertrophic cardiomyopathy in 124 patients: myocardial storage disease in 18 due to Fabry disease in 12 and glycogen-storage disease in 6 and myocardial infiltrative disease in 9 because of amyloidosis in 7 and sarcoidosis in 2. Gene analysis was positive in 67% of patients with hypertrophic cardiomyopathy (MYH7 mutation in 36, MYBP in 29, TNNT2 in 14, and TPM1 in 5) and in 83% of patients with lysosomal storage disease (α-galactosidase A mutation in 12, PRKAG2 in 2, and LAMP2 in 1). In patients with hypertrophic cardiomyopathy phenotype, left ventricular endomyocardial biopsy is safe and may recognize infiltrative/storage diseases in up to 18% of evolving and sporadic cases."	"Prognostic value of highly sensitive troponin T on cardiac events in patients with chronic kidney disease not on dialysis. Serum troponin T levels using a highly sensitive assay (hsTnT) in patients with chronic kidney disease (CKD) not on dialysis have not been examined. The aim of this prospective cohort study was to investigate the association of hsTnT with cardiac events in ambulatory CKD patients not on dialysis. The serum hsTnT level was measured in 442 ambulatory CKD patients not on dialysis whose estimated glomerular filtration rate was &lt;60 ml/min/1.73 m(2). Patients were divided into quartiles according to hsTnT levels, and were followed up for 3 years. Cardiac events were defined as a cardiac death, acute myocardial infarction, unstable angina pectoris that required emergency coronary revascularization, or hospitalization for worsening heart failure. During the follow-up period (median 22 months), 63 cardiac events occurred. Kaplan-Meier incidence rates of cardiac events for 3 years were 0.88 %, 11.5 %, 19.0 %, and 41.4 % among quartiles of hsTnT levels (P &lt; 0.0001). After adjusting for other confounders, elevated hsTnT level was an independent predictor for cardiac events (hazard ratio 6.18, 95 % confidence interval 1.38-27.7, P = 0.0080 for highest quartile vs lowest quartile). In addition, C-index for receiver-operating characteristic curves for cardiac events was greater in an established risks plus hsTnT model than in the established risk alone model (0.857 vs 0.844, P = 0.026). Using a highly sensitive assay, serum hsTnT level was shown to be an independent predictor of cardiac events and a promising risk stratification tool in patients with CKD not on dialysis. "	"Coronary telangiectasia associated with hypertrophic cardiomyopathy. Coronary telangiectasia (CT) is a rare congenital anomaly causing ventricular shunt and myocardial ischaemia. Its prevalence, genetic background, and impact in human hypertrophic cardiomyopathy (HCM) are unknown and were therefore investigated in this study. Among 445 patients with HCM, 195 had a coronary angiography and 124 a left ventricular endomyocardial biopsy. CT draining into the ventricular cavities was observed in 5 of 195 HCM patients (2.5%), whereas it was detected in 0.1% of 1000 consecutive subjects without congenital anomalies undergoing coronary angiography. Patients with CT-HCM underwent a total body computed tomography scan to investigate the presence of systemic vascular malformations. HCM-related MYH7, MYBPC3, TNNT2, and TPM1 genes and hereditary haemorragic telangiectasia-related endoglin and activin receptor-like kinase 1 genes were analysed. Histology, clinical profile, and outcome of CT-HCM patients were correlated with those of 22 control HCM patients. No mucocutaneous or systemic vascular malformations were detected. Gene analysis showed a MYH7 mutation in two patients, with an associated endoglin point mutation. Histology showed in the CT-HCM cohort a more pronounced myocardial fibrosis (29.8 ± 3.8%) compared with HCM controls (13 ± 2.6%), and disorganized cardiomyocytes separated by thin-walled large vessels adherent to the endocardium. Clinically, the CT-HCM cohort had a higher arrhythmic profile at diagnosis and increased incidence of implantable cardioverter defibrillator (ICD) implantations and arrhythmic deaths during a long-term follow-up. CT is detectable in 2.5% of HCM patients vs. 0.1% of the general population; it may derive from a co-existing endoglin gene mutation and cause a prominent, potentially arrhythmogenic myocardial fibrosis."	"Sarcomeric hypertrophic cardiomyopathy: genetic profile in a Portuguese population. Sarcomeric hypertrophic cardiomyopathy has heterogeneous phenotypic expressions, of which sudden cardiac death is the most feared. A genetic diagnosis is essential to identify subjects at risk in each family. The spectrum of disease-causing mutations in the Portuguese population is unknown. Seventy-seven unrelated probands with hypertrophic cardiomyopathy were systematically screened for mutations by PCR and sequencing of five sarcomeric genes: MYBPC3, MYH7, TNNT2, TNNI3 and MYL2. Familial cosegregation analysis was performed in most patients. Thirty-four different mutations were identified in 41 (53%) index patients, 71% with familial hypertrophic cardiomyopathy. The most frequently involved gene was MYBPC3 (66%) with 22 different mutations (8 novel) in 27 patients, followed by MYH7 (22%), TNNT2 (12%) and TNNI3 (2.6%). In three patients (7%), two mutations were found in MYBPC3 and/or MYH7. Additionally, 276 relatives were screened, leading to the identification of a mean of three other affected relatives for each pedigree with the familial form of the disease. Disease-associated mutations were identified mostly in familial hypertrophic cardiomyopathy, corroborating the idea that rarely studied genes may be implicated in sporadic forms. Private mutations are the rule, MYBPC3 being the most commonly involved gene. Mutations in MYBPC3 and MYH7 accounted for most cases of sarcomere-related disease. Multiple mutations in these genes may occur, which highlights the importance of screening both. The detection of novel mutations strongly suggests that all coding regions should be systematically screened. Genotyping in hypertrophic cardiomyopathy enables a more precise diagnosis of the disease, with implications for risk stratification and genetic counseling."	"Troponin T for the detection of dialysis-induced myocardial stunning in hemodialysis patients. Circulating troponin T levels are frequently elevated in patients undergoing long-term dialysis. The pathophysiology underlying these elevations is controversial. In 70 prevalent hemodialysis (HD) patients, HD-induced myocardial stunning was assessed echocardiographically at baseline and after 12 months. Nineteen patients were not available for the follow-up analysis. The extent to which predialysis troponin T was associated with the occurrence of HD-induced myocardial stunning was assessed as the primary endpoint. The median troponin T level in this hemodialysis cohort was 0.06 ng/ml (interquartile range, 0.02-0.10). At baseline, 64% of patients experienced myocardial stunning. These patients showed significantly higher troponin T levels than patients without stunning (0.08 ng/ml [0.05-0.12] versus 0.02 ng/ml [0.01-0.05]). Troponin T levels were significantly correlated to measures of myocardial stunning severity (number of affected segments: r=0.42; change in ejection fraction from beginning of dialysis to end of dialysis: r=-0.45). In receiver-operating characteristic analyses, predialytic troponin T achieved an area under the curve of 0.82 for the detection of myocardial stunning. In multivariable analysis, only ultrafiltration volume (odds ratio, 4.38 for every additional liter) and troponin T (odds ratio, 9.33 for every additional 0.1 ng/ml) were independently associated with myocardial stunning. After 12 months, nine patients had newly developed myocardial stunning and showed a significant increase in troponin T over baseline (0.03 ng/ml at baseline versus 0.05 ng/ml at year 1). Troponin T levels in HD patients are associated with the presence and severity of HD-induced myocardial stunning."	"A new mutational mechanism for hypertrophic cardiomyopathy. We describe a male patient affected by hypertrophic cardiomyopathy (HCM) with no point mutations in the eight sarcomeric genes most commonly involved in the disease. By multiple ligation-dependent probe amplification (MLPA) we have identified a multi-exons C-terminus deletion in the cardiac myosin binding protein C (MYBPC3) gene. The rearrangement has been confirmed by long PCR and breakpoints have been defined by sequencing. The 3.5 kb terminal deletion is mediated by Alu-repeat elements and is predicted to result in haploinsufficiency of MYBPC3. To exclude the presence of other rare pathogenic variants in additional HCM genes, we performed targeted next-generation sequencing (NGS) of 88 cardiomyopathy-associated genes but we did not identify any further mutation. Interestingly, the MYBPC3 multi-exons deletion was detectable by NGS. This finding broadens the range of mutational spectrum observed in HCM, contributing to understanding the genetic basis of the most common inherited cardiovascular disease. Moreover, our data suggest that NGS may represent a new tool to achieve a deeper insight into molecular basis of complex diseases, allowing to detect in a single experiment both point mutations and gene rearrangements."	"Troponin T and plasma collagen peptides in heart failure. NA"	"Cardiac high-sensitivity troponin T measurement: a layer of complexity in managing haemodialysis patients. To determine: (i) the proportion of stable asymptomatic haemodialysis patients with elevated troponin; (ii) stability of troponin values after dialysis and over a 2-week interval; and (iii) whether high-sensitivity troponin T (hsTnT) was associated with higher prevalence of cardiovascular risk factors or cardiovascular disease in these patients. We measured hsTnT and the fourth generation troponin I before and after dialysis in 103 stable in-centre haemodialysis patients without ischaemic symptoms. Patients were divided into quartiles to test for associations with established cardiovascular risk factors or disease. hsTnT was above the 99th percentile for the general population in 99% of haemodialysis patients compared with only 13% elevation for the troponin I assay (P &lt; 0.001). Median pre-dialysis hsTnT concentrations were unchanged after a 2-week interval (69 vs 69 ng/L, P = 0.55) but fell slightly immediately following dialysis (69 vs 61 ng/L, P &lt; 0.001). Established coronary artery disease (59% vs 22%), peripheral vascular disease (38% vs 4%) and diabetes (18% vs 7%) were more prevalent (P &lt; 0.05) in those in the highest quartile for hsTnT compared with those in the lowest quartile. Almost all in-centre haemodialysis patients have elevated troponin T in their baseline stable state and this appears unchanged over a 2-week interval. Such a high rate of baseline elevation of hsTnT may lead to confusion in managing acute coronary syndrome in this group of patients, particularly when symptoms are atypical. We recommend that if Troponin I assay is unavailable then baseline hsTnT concentrations are measured periodically in all haemodialysis patients."	"Cardiac microinjury measured by troponin T predicts collagen metabolism in adults aged &gt;=65 years with heart failure. Repeated myocardial microinjuries lead to collagen deposition and fibrosis, thereby increasing the risk of clinical heart failure. Little is known about the longitudinal association between increases in myocardial injury and the biology of collagen synthesis and deposition. Repeated measures of highly sensitive cardiac troponin T (cTnT) were obtained in participants of the Cardiovascular Health Study (N=353; mean age, 74±6 years; 52% women) at baseline and at 3 years follow-up. Biomarkers of collagen metabolism were obtained at follow-up and included carboxyterminal propeptide of procollagen type I, carboxyterminal telopeptide of type I collagen, and aminoterminal propeptide of procollagen III. Multivariable linear regression analyses were used to examine the association between baseline cTnT and changes in cTnT with collagen metabolism markers at follow-up adjusting for demographics, heart failure status, and cardiovascular risk factors. Results indicated that cTnT increases over 3-years were significantly associated with higher levels of carboxyterminal telopeptide of type I collagen (β=0.22, P&lt;0.001) and aminoterminal propeptide of procollagen III (β=0.12, P=0.035) at follow-up when adjusting for demographic, clinical, and biochemical covariates including baseline cTnT. These associations were stronger in patients with heart failure than in control subjects. Conclusions- Increases in myocardial microinjury measured by changes in cTnT adversely affect markers of collagen metabolism. These findings are important to the biology of myocardial fibrosis and tissue repair. Serial evaluation of cTnT combined with collagen metabolism markers may further elucidate the pathophysiology of heart failure."	"High sensitivity cardiac troponin T and interleukin-6 predict adverse cardiovascular events and mortality in anticoagulated patients with atrial fibrillation. There are limited data on the prognostic role of biomarkers in anticoagulated patients with atrial fibrillation (AF). We evaluated the prognostic value of high sensitivity TnT (hsTnT) and high-sensitivity interleukin-6 (hsIL6) in a large cohort of AF patients taking oral anticoagulant therapy (OAC) as both biomarkers have been associated with adverse cardiovascular events. We studied 930 patients (51% male; median age 76) with permanent/ paroxysmal AF who were stabilized (for at least 6 months) on OAC (INRs 2.0-3.0). Plasma hsTnT and hsIL6 levels were quantified by electrochemiluminescense immunoassay at baseline. Patients were followed-up for up to 2 years, and adverse events (thrombotic and vascular events, mortality and major bleeding) were recorded. At follow-up, 96 patients (3.97%/year) died whilst 107 had an adverse cardiovascular event (3.14%/year). On multivariate analysis, high hsTnT and high hsIL6 remained significantly associated with prognosis even after adjusting for CHADS2 score: HR 2.21 (1.46-3.35, P&lt;0.001) for high hsTnT and 1.97 (1.29-3.02, P=0.002) for high hsIL6, for adverse cardiovascular events. For all-cause mortality, the HRs were 1.79 (1.13-2.83, P=0.013) and 2.48 (1.60-3.85, P&lt;0.001), respectively. The integrated discrimination index (IDI) values of clinical scores (CHADS2 and CHA2 DS2-VASc) were improved by the addition of hsTnT and/or hsIL6 (all P&lt;0.05). In a large 'real world' cohort of anticoagulated AF patients, both hsTnT and hsIL6 levels provided prognostic information that was complementary to clinical risk scores for prediction of long-term cardiovascular events and death, suggesting that these biomarkers may potentially be used to refine clinical risk stratification in AF."	"A novel titin mutation in adult-onset familial dilated cardiomyopathy. Familial dilated cardiomyopathy is a major cause of advanced heart failure and heart transplantation. In most families, the disease-causing mutation is unknown, and relatives should therefore undergo periodic screening to facilitate early diagnosis and therapy. In the present study, we describe a novel titin truncation mutation causing adult-onset familial dilated cardiomyopathy in an Israeli Arab family. The family members underwent physical examination, electrocardiography, and Doppler echocardiography. Linkage to candidate loci was performed, followed by gene sequencing. We identified 13 clinically affected family members (8 men and 5 women, mean age 47 ± 12 years). Compared with their healthy first-degree relatives, the affected relatives had a larger end-diastolic left ventricular dimension (60 ± 10 vs 49 ± 4 mm, p &lt;0.001), lower ejection fraction (43 ± 11% vs 60 ± 6%, p &lt;0.001), and markedly higher end-systolic volume indexes but no difference in wall thickness or diastolic function. The linkage studies or direct sequencing excluded LMNA, MYH7, TNNT2, TNNI3, SCN5A, DES, SGCD, ACTC, PLN, and MYH6 but established linkage to the TTN locus at chromosome 2q31, yielding a maximum (2-point) LOD score of 3.44. Sequence analysis identified an insertion (c.58880insA), causing protein truncation after 19,628 amino acids (p.S19628IfsX1). No founder effect was found among the Israeli Arabs. In conclusion, titin is a giant protein with a key role in sarcomere assembly, force transmission, and maintenance of resting tension. Although some mutations result in skeletal myopathy, others cause isolated, maturity-onset cardiomyopathy."	"Genetic testing for dilated cardiomyopathy in clinical practice. Familial involvement is common in dilated cardiomyopathy (DCM) and &gt;40 genes have been implicated in causing disease. However, the role of genetic testing in clinical practice is not well defined. We examined the experience of clinical genetic testing in a diverse DCM population to characterize the prevalence and predictors of gene mutations. We studied 264 unrelated adult and pediatric DCM index patients referred to 1 reference lab for clinical genetic testing. Up to 10 genes were analyzed (MYH7, TNNT2, TNNI3, TPM1, MYBPC3, ACTC, LMNA, PLN, TAZ, and LDB3), and 70% of patients were tested for all genes. The mean age was 26.6 ± 21.3 years, and 52% had a family history of DCM. Rigorous criteria were used to classify DNA variants as clinically relevant (mutations), variants of unknown clinical significance (VUS), or presumed benign. Mutations were found in 17.4% of patients, commonly involving MYH7, LMNA, or TNNT2 (78%). An additional 10.6% of patients had VUS. Genetic testing was rarely positive in older patients without a family history of DCM. Conversely in pediatric patients, family history did not increase the sensitivity of genetic testing. Using rigorous criteria for classifying DNA variants, mutations were identified in 17% of a diverse group of DCM index patients referred for clinical genetic testing. The low sensitivity of genetic testing in DCM reflects limitations in both current methodology and knowledge of DCM-associated genes. However, if mutations are identified, genetic testing can help guide family management."	"Spectrum and clinical manifestations of mutations in genes responsible for hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a cardiovascular disease with autosomal dominant inheritance. It is caused by mutations in the genes coding for structural and/or regulatory proteins found in the sarcomere of cardiomyocytes. A group of genes, including the heavy chain of beta-myosin (MYH7), myosin binding protein C (MYBPC3), cardiac troponin I (TNNI3) and cardiac troponin T (TNNT2) are frequently affected by causal mutations. While exact mutation frequency data has been obtained for various populations, no screening has been reported for Central European populations. We performed a complete sequencing of MYH7, MYBPC3, TNNI3 and TNNT2 genes in 100 HCM patients. We discovered mutations in a total of 40 patients (40%), including 4 patients with double mutations. A total of 35 different mutation types were detected, of which 17 were novel. The contributions from individual genes were: 24 mutations in MYBPC3 (54.5%), 14 in MYH7 (31.8%), 4 in TNNI3 (9%) and 2 mutations in TNNT2 (4.5%). We have observed a wide variability in disease manifestation across the different genes/mutation types. In addition, we have discovered differences in both frequency and distribution of mutations of the two most common genes (MYBPC3 and MYH7) compared to other populations. The most common gene responsible for HCM in our study population was MYBPC3, followed by MYH7, TNNI3 and TNNT2. Phenotypic heterogeneity, as well as the dissimilarity to other populations, prevents effective use of a pre-screening test, which would be directed at the most common mutation hotspots, in our population."	"High resolution melting: improvements in the genetic diagnosis of hypertrophic cardiomyopathy in a Portuguese cohort. Hypertrophic Cardiomyopathy (HCM) is a complex myocardial disorder with a recognized genetic heterogeneity. The elevated number of genes and mutations involved in HCM limits a gene-based diagnosis that should be considered of most importance for basic research and clinical medicine. In this report, we evaluated High Resolution Melting (HRM) robustness, regarding HCM genetic testing, by means of analyzing 28 HCM-associated genes, including the most frequent 4 HCM-associated sarcomere genes, as well as 24 genes with lower reported HCM-phenotype association. We analyzed 80 Portuguese individuals with clinical phenotype of HCM allowing simultaneously a better characterization of this disease in the Portuguese population. HRM technology allowed us to identify 60 mutated alleles in 72 HCM patients: 49 missense mutations, 3 nonsense mutations, one 1-bp deletion, one 5-bp deletion, one in frame 3-bp deletion, one insertion/deletion, 3 splice mutations, one 5'UTR mutation in MYH7, MYBPC3, TNNT2, TNNI3, CSRP3, MYH6 and MYL2 genes. Significantly 22 are novel gene mutations. HRM was proven to be a technique with high sensitivity and a low false positive ratio allowing a rapid, innovative and low cost genotyping of HCM. In a short return, HRM as a gene scanning technique could be a cost-effective gene-based diagnosis for an accurate HCM genetic diagnosis and hopefully providing new insights into genotype/phenotype correlations."	"[Novel mutations of cardiac troponin T in Chinese patients with hypertrophic cardiomyopathy]. To screen the cardiac troponin T (TNNT2) mutations in Chinese patients with hypertrophic cardiomyopathy (HCM) and to analyze the potential link between the genotype and the phenotype. Clinical features of 100 probands with HCM and some family members were evaluated, 200 unrelated normal subjects served as control. The exons and flanking introns of TNNT2 were amplified with PCR and direct sequencing was used to screen TNNT2 mutations/polymorphisms. Two novel missense mutations were detected in 2 HCM patients: R92W and R286H. These 2 mutations were not found in 200 non-HCM controls. A five-basepair insertion/deletion polymorphism in intron 3 of TNNT2 was identified in this HCM cohort but was not related to the phenotype. Two missense mutations, R92W and R286H, were found in 2/100 patients with HCM, TNNT 2 mutation is relatively low in Chinese patients with HCM."	"Genetic variation screening of TNNT2 gene in a cohort of patients with hypertrophic and dilated cardiomyopathy. Mutations in troponin T (TNNT2) gene represent the important part of currently identified disease-causing mutations in hypertrophic (HCM) and dilated (DCM) cardiomyopathy. The aim of this study was to analyze TNNT2 gene exons in patients with HCM and DCM diagnosis to improve diagnostic and genetic consultancy in affected families. All 15 exons and their flanking regions of the TNNT2 gene were analyzed by DNA sequence analysis in 174 patients with HCM and DCM diagnosis. We identified genetic variations in TNNT2 exon regions in 56 patients and genetic variations in TNNT2 intron regions in 164 patients. Two patients were found to carry unique mutations in the TNNT2 gene. Limited genetic screening analysis is not suitable for routine testing of disease-causing mutations in patients with HCM and DCM as only individual mutation-positive cases may be identified. Therefore, this approach cannot be recommended for daily clinical practice even though, due to financial constraints, it currently represents the only available strategy in a majority of cardio-centers."	"Gene expression profiling in fetal rat lung during gestational perfluorooctane sulfonate exposure. Perfluorooctane sulfonate (PFOS) is a persistent environmental contaminant found in the tissues of humans and wildlife. It has been reported that gestational exposure to PFOS causes neonatal death of rats. However, the mechanism is still unclear. In this study, we investigated the effects of gestational PFOS exposure on the gene expression profiling of fetal rat lung at pseudoglandular stage. Adult Sprague Dawley dams were dosed orally from gestational day 12-18 with 0 (control), 5 mg/kg/day or 20 mg/kg/day PFOS. Animals were euthanized on day 18.5, fetal lung samples were collected for histochemical staining and RNA profiling analysis. PFOS did not cause apparent microscopic changes of fetal lungs. Gene expression profiling revealed that PFOS dose-dependently up-regulated the expression of 21 (5 mg/kg) and 43 (20 mg/kg) genes. These genes include five PPARα target genes (Acot1, Hmgcs2, Fabp4, Fabp1 and Myh7), and 4 of them are involved in lipid metabolism. The other genes were primarily included in the categories of cytoskeletal structure (Tpm1, Tnnt2, Actn3, Myoz2, Tmod1, and Mfap5), extracellular matrix (Ckm, Lum, Tnnc1, Art3, Dcn, Col17a1, Aspn, Ctsk, Itm2a, Spock2 and Orm1), transporting (Cox8h, Cox6a2 and Scnn1a) and secreted proteins (Scgb3a1, Nppb and Spp1). Our study demonstrates that in utero PFOS exposure resulted in the alteration of a set of genes which are involved in significant cytoskeletal, extracellular matrix remodeling, lipid metabolism and secreted proteins in the fetal rat lung."	"Cardiac alpha-myosin (MYH6) is the predominant sarcomeric disease gene for familial atrial septal defects. Secundum-type atrial septal defects (ASDII) account for approximately 10% of all congenital heart defects (CHD) and are associated with a familial risk. Mutations in transcription factors represent a genetic source for ASDII. Yet, little is known about the role of mutations in sarcomeric genes in ASDII etiology. To assess the role of sarcomeric genes in patients with inherited ASDII, we analyzed 13 sarcomeric genes (MYH7, MYBPC3, TNNT2, TCAP, TNNI3, MYH6, TPM1, MYL2, CSRP3, ACTC1, MYL3, TNNC1, and TTN kinase region) in 31 patients with familial ASDII using array-based resequencing. Genotyping of family relatives and control subjects as well as structural and homology analyses were used to evaluate the pathogenic impact of novel non-synonymous gene variants. Three novel missense mutations were found in the MYH6 gene encoding alpha-myosin heavy chain (R17H, C539R, and K543R). These mutations co-segregated with CHD in the families and were absent in 370 control alleles. Interestingly, all three MYH6 mutations are located in a highly conserved region of the alpha-myosin motor domain, which is involved in myosin-actin interaction. In addition, the cardiomyopathy related MYH6-A1004S and the MYBPC3-A833T mutations were also found in one and two unrelated subjects with ASDII, respectively. No mutations were found in the 11 other sarcomeric genes analyzed. The study indicates that sarcomeric gene mutations may represent a so far underestimated genetic source for familial recurrence of ASDII. In particular, perturbations in the MYH6 head domain seem to play a major role in the genetic origin of familial ASDII."	"New function for the RNA helicase p68/DDX5 as a modifier of MBNL1 activity on expanded CUG repeats. Myotonic Dystrophy type I (DM1) is caused by an abnormal expansion of CTG triplets in the 3' UTR of the dystrophia myotonica protein kinase (DMPK) gene, leading to the aggregation of the mutant transcript in nuclear RNA foci. The expanded mutant transcript promotes the sequestration of the MBNL1 splicing factor, resulting in the misregulation of a subset of alternative splicing events. In this study, we identify the DEAD-box RNA helicase p68 (DDX5) in complexes assembled onto in vitro-transcribed CUG repeats. We showed that p68 colocalized with RNA foci in cells expressing the 3'UTR of the DMPK gene containing expanded CTG repeats. We found that p68 increased MBNL1 binding onto pathological repeats and the stem-loop structure regulatory element within the cardiac Troponin T (TNNT2) pre-mRNA, splicing of which is misregulated in DM1. Mutations in the helicase core of p68 prevented both the stimulatory effect of the protein on MBNL1 binding and the colocalization of p68 with CUG repeats, suggesting that remodeling of RNA secondary structure by p68 facilitates MBNL1 binding. We also found that the competence of p68 for regulating TNNT2 exon 5 inclusion depended on the integrity of MBNL1 binding sites. We propose that p68 acts as a modifier of MBNL1 activity on splicing targets and pathogenic RNA."	"Long-term outcomes in hypertrophic cardiomyopathy caused by mutations in the cardiac troponin T gene. Hypertrophic cardiomyopathy caused by mutations in the cardiac troponin T gene (TNNT2) has been associated with a high risk of sudden cardiac death (SCD) and mild left ventricular hypertrophy. However, previous studies are limited by sample size, cross-sectional design, and few data in relatives. Five hundred fifty-two unrelated hypertrophic cardiomyopathy probands were screened for TNNT2 mutations. First-degree relatives were invited for clinical and genetic evaluation. Ninety-two individuals (20 probands and 72 relatives) carried TNNT2 mutations (51 [55%] male; 30±17 years). ECGs and echo were available in 87 (95%) and 88 (96%) individuals, respectively. ECG was normal in 13 (68%) children (&lt;16 years) and 13 (19%) adults. Echo was normal in 18 (90%) children and 16 (24%) adults; 7 (10%) adults had a normal ECG and echo. Thirteen (65%) of 20 families had a history of SCD. Follow-up was available for 75 patients (mean, 9.9±5.2 years); 2 of 16 adults and 2 of 18 children with normal echoes developed left ventricular hypertrophy. Twenty-three (22%) received an implantable cardioverter-defibrillator (20 for primary prophylaxis). One child and 3 adults died of SCD and 2 adults were resuscitated from ventricular fibrillation. One patient had an appropriate implantable cardioverter-defibrillator discharge. The rate of cardiovascular death, transplant, and implantable cardioverter-defibrillator discharge was 1.6% (0.016 person/y; 95% confidence interval, 0.83-2.79%), and SCD 0.93% (0.0093 person/y; 95% confidence interval, 0.37-1.92%). Left ventricular hypertrophy is rare in children with TNNT2 mutations. Left ventricular hypertrophy is absent in the minority of adults, but most have an abnormal ECG. Despite adverse family histories, the rate of cardiovascular death during follow-up was similar to that reported in large referral populations."	"Prevalence and distribution of sarcomeric gene mutations in Japanese patients with familial hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), which is inherited as an autosomal dominant trait, is the most prevalent hereditary cardiac disease. Although there are several reports on the systematic screening of mutations in the disease-causing genes in European and American populations, only limited information is available for Asian populations, including Japanese. Genetic screening of disease-associated mutations in 8 genes for sarcomeric proteins, MYH7, MYBPC3, MYL2, MYL3, TNNT2, TNNI3, TPM1, and ACTC, was performed by direct sequencing in 112 unrelated Japanese proband patients with familial HCM; 37 different mutations, including 13 novel ones in 5 genes, MYH7, MYBPC3, TNNT2, TNNI3, and TPM1, were identified in 49 (43.8%) patients. Among them, 3 carried compound heterozygous mutations in MYBPC3 or TNNT2. The frequency of patients carrying the MYBPC3, MYH7, and TNNT2 mutations were 19.6%, 10.7%, and 8.9%, respectively, and the most frequently affected genes in the northeastern and southwestern parts of Japan were MYBPC3 and MYH7, respectively. Several mutations were found in multiple unrelated proband patients, for which the geographic distribution suggested founder effects of the mutations. This study demonstrated the frequency and distribution of mutations in a large cohort of familial HCM in Japan."	"Gene expression profiling reveals renin mRNA overexpression in human hypertensive kidneys and a role for microRNAs. The kidney has long been invoked in the etiology of essential hypertension. This could involve alterations in expression of specific genes and microRNAs (miRNAs). The aim of the present study was to identify, at the transcriptome-wide level, mRNAs and miRNAs that were differentially expressed between kidneys of 15 untreated hypertensive and 7 normotensive white male subjects of white European ancestry. By microarray technology we found 14 genes and 11 miRNAs that were differentially expressed in the medulla. We then selected and confirmed by real-time quantitative PCR expression differences for NR4A1, NR4A2, NR4A3, PER1, and SIK1 mRNAs and for the miRNAs hsa-miR-638 and hsa-let-7c. Luciferase reporter gene experiments in human kidney (HEK293) cells confirmed the predicted binding of hsa-let-7c to the 3' untranslated region of NR4A2 mRNA. In the renal cortex we found differential expression of 46 genes and 13 miRNAs. We then confirmed expression differences for AIFM1, AMBP, APOE, CD36, EFNB1, NDUFAF1, PRDX5, REN, RENBP, SLC13A1, STX4, and TNNT2 mRNAs and for miRNAs hsa-miR-21, hsa-miR-126, hsa-miR-181a, hsa-miR-196a, hsa-miR-451, hsa-miR-638, and hsa-miR-663. Functional experiments in HEK293 cells demonstrated that hsa-miR-663 can bind to the REN and APOE 3' untranslated regions and can regulate REN and APOE mRNA levels, whereas hsa-miR-181a regulated REN and AIFM1 mRNA. Our data demonstrated for the first time that miRNAs can regulate renin expression. The observed downregulation of 2 miRNAs in hypertension could explain the elevation in intrarenal renin mRNA. Renin, CD36, and other mRNAs, as well as miRNAs and associated pathways identified in the present study, provide novel insights into hypertension etiology."	"Mechanisms of disease: hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most-common monogenically inherited form of heart disease, characterized by thickening of the left ventricular wall, contractile dysfunction, and potentially fatal arrhythmias. HCM is also the most-common cause of sudden cardiac death in individuals younger than 35 years of age. Much progress has been made in the elucidation of the genetic basis of HCM, resulting in the identification of more than 900 individual mutations in over 20 genes. Interestingly, most of these genes encode sarcomeric proteins, such as myosin-7 (also known as cardiac muscle β-myosin heavy chain; MYH7), cardiac myosin-binding protein C (MYBPC3), and cardiac muscle troponin T (TNNT2). However, the molecular events that ultimately lead to the clinical phenotype of HCM are still unclear. We discuss several potential pathways, which include altered calcium cycling and sarcomeric calcium sensitivity, increased fibrosis, disturbed biomechanical stress sensing, and impaired cardiac energy homeostasis. An improved understanding of the pathological mechanisms involved will result in greater specificity and success of therapies for patients with HCM."	"Cardiac Troponin T (TNNT2) mutations are less prevalent in Indian hypertrophic cardiomyopathy patients. We sought to determine the frequency of the genetic variations in the Troponin T (TNNT2) gene and its association in Indian cardiomyopathy patients. Sequencing of the entire TNNT2 gene in 162 hypertrophic cardiomyopathy (HCM) patients, along with 179 healthy controls, revealed a total of 15 variants. These included an A28V missense mutation, a novel single-nucleotide polymorphism (SNP) (g.7239;G→A) predicted to disturb the splicing significantly, three SNPs, rs3729547 (C→T), rs3729843 (G→A), rs3729842 (C→T), which were in high linkage disequilibrium, and a 5 bp polymorphism that skipped exon 4 during splicing, which was found to be significantly higher in HCM patients (del/del genotype, p=0.00011; deletion allele, p=0.00008). Further studies on the 5 bp polymorphism in 2092 randomly selected individuals belonging to 39 ethnic and endogamous populations from 19 states of India, and representing the major linguistic Indian families, revealed that the South and the Northwest Indians have a high frequency of 5 bp deletions. The missense mutations in TNNT2 are responsible for 15%-20% of familial HCM by impairing the function of the heart muscle. However, other than the 5 bp polymorphism, our comprehensive study on the Indian HCM patients have lowered the occurrence and overall prevalence of supposedly more aggressive and worst disease causing percentage of missense mutations in TNNT2 dramatically."	"Contractility of ventricular myocytes is well preserved despite altered mechanisms of Ca2+ transport and a changing pattern of mRNA in aged type 2 Zucker diabetic fatty rat heart. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus and cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. The objective of the study was to investigate ventricular myocyte shortening, intracellular Ca(2+) signalling and expression of genes encoding cardiac muscle proteins in the aged Zucker diabetic fatty (ZDF) rat. There was a fourfold elevation in non-fasting blood glucose in ZDF rats (478.43 ± 29.22 mg/dl) compared to controls (108.22 ± 2.52 mg/dl). Amplitude of shortening, time to peak (TPK) and time to half (THALF) relaxation of shortening were unaltered in ZDF myocytes compared to age-matched controls. Amplitude and THALF decay of the Ca(2+) transient were unaltered; however, TPK Ca(2+) transient was prolonged in ZDF myocytes (70.0 ± 3.2 ms) compared to controls (58.4 ± 2.3 ms). Amplitude of the L-type Ca(2+) current was reduced across a wide range of test potentials (-30 to +40 mV) in ZDF myocytes compared to controls. Sarcoplasmic reticulum Ca(2+) content was unaltered in ZDF myocytes compared to controls. Expression of genes encoding cardiac muscle proteins, membrane Ca(2+) channels, and cell membrane ion transport and intracellular Ca(2+) transport proteins were variously altered. Myh6, Tnnt2, Cacna2d3, Slc9a1, and Atp2a2 were downregulated while Myl2, Cacna1g, Cacna1h, and Atp2a1 were upregulated in ZDF ventricle compared to controls. The results of this study have demonstrated that preserved ventricular myocyte shortening is associated with altered mechanisms of Ca(2+) transport and a changing pattern of genes encoding a variety of Ca(2+) signalling and cardiac muscle proteins in aged ZDF rat."	"[Correlation of cardiac troponin T gene mutations to hypertrophic cardiomyopathy in Chinese patients]. To study cardiac troponin T (TNNT2) gene mutations in Chinese patients with hypertrophic cardiomyopathy (HCM) and analyze the correlation between the genotype and phenotype. Ninety-five unrelated Chinese patients with HCM and 120 control individuals were screened for TNNT2 gene mutations. Seven exons (8, 9, 10, 11, 14, 15, and 16) in the functional regions of TNNT2 gene were amplified using PCR and the products were sequenced. The patients with positive results underwent further family screening. This study did not find any HCM-caused mutations in TNNT2 gene, a result different from the reported rates of TNNT2 gene mutation ranging from 10% to 20% in other nations, suggesting that TNNT2 gene is not a susceptible gene for HCM in Chinese population."	"[The effects of pulsed electromagnetic fields on the induction of rat bone marrow mesenchymal stem cells to differentiate into cardiomyocytes-like cells in vitro]. The aim of this study is to investigate the effects of pulsed electromagnetic fields (PEMFs) on the induction of rat bone marrow mesenchymal stem cells (rBMSCs) to differentiate into cardiomyocytes-like cells in vitro. rBMSCs were randomly divided into PEMFs groups, 5-Azacytidine (5-Aza) groups and control groups. PEMFs groups were exposed to 50 Hz, 1 mT PEMFs for 30 min every day, lasting for 10 d, 15 d and 20 d, respectively. 5-Aza groups were induced by 10 micromol/L 5-Aza for 1 day, then the medium was changed to complete medium without 5-Aza. And control groups were only cultured with complete medium, rBMSCs growth status and morphological features were observed by inverted phase microscope every day. The mRNA expressions of cardiac troponin T (TNNT2) and alpha-actinin (ACTN2) were determined by Real-Time PCR. The results showed that rBMSCs were spindle, polygon or fusiform in control groups. The cells gradually got longer and grew close together after being stimulated by PEMFs and 5-Aza, and with the extension of induction time, the tendency became obvious. At 20th day after PEMFs or 5-Aza treatment, rBMSCs gathered like a long chain, got much longer obviously at the high magnification, and some of them even fused with their neighbors. Compared with control groups, the levels of TNNT2 mRNA expression in 5-Aza groups were 19.40 fold (P &lt; 0.01), 21.02 fold (P &lt; 0.01) and 2.38 fold at 10 d, 15 d, 20 d and the levels of ACTN2 mRNA expression in 5-Aza groups were 6.64 fold (P &lt; 0.01), 6.67 fold (P &lt; 0.01) and 0.76 fold at 10 d, 15 d, 20 d. However, the levels of TNNT2 mRNA expression in PEMFs groups were 15.78 fold (P &lt; 0.01), 6.73 fold (P &lt; 0.05) and 2.73 fold (P &lt; 0.01) of control groups at 10 d, 15 d, 20 d and the levels of ACTN2 mRNA expression in PEMFs groups were 4.93 fold (P &lt; 0.01), 1.89 fold and 0.64 fold, respectively. Compared with 5-Aza groups, the levels of TNNT2 mRNA expression in PEMFs groups were 0.81 fold, 0.32 fold (P &lt; 0.01) and 1.15 fold at 10 d, 15 d, 20 d and the levels of ACTN2 mRNA expression in PEMFs groups were 0.74 fold, 0.28 fold (P &lt; 0.01) and 0.83 fold at 10 d, 15 d, 20 d. PEMFs could contribute to the induction of rat marrow rBMSCs to differentiate into cardiomyocytes-like cells in vitro, and the best exposure time might be 10 days, but further investigation is still needed."	"Genetic basis of end-stage hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by a heterogeneous presentation and clinical course. A minority of HCM patients develop end-stage HCM and require cardiac transplantation. The genetic basis of end-stage HCM is unknown but small series, isolated case reports and animal models have related the most aggressive heart failure course with the presence of multiple mutations. Twenty-six patients (age 40.4 ± 14.5 years; 46% male) transplanted for end-stage HCM underwent genetic screening of 10 HCM-related genes (MYH7, MYBPC3, TNNT2, TNNI3, TPM1, TNNC1, MYL3, MYL2, ACTC, LDB3). Additional genetic screening of LAMP2/PRKAG2 and mitochondrial DNA (mtDNA) was performed in four and three cases, respectively. Findings were correlated with clinical and histological features. Pathogenic mutations were identified in 15 patients (58%). Thirteen patients (50%) had mutations in sarcomeric genes (six in MYH7, three in MYBPC3, two in MYL2, one in TNNI3, and one in MYL3) and two patients had mutations in LAMP2. Only three patients (13%) had double mutations and all in homozygosis. Except for a more frequent family history of HCM, patients with mutations in sarcomeric genes did not show any clinical feature that distinguished them from patients without mutations in these genes. Evaluation of 44 relatives from 12 families identified 13 mutation carriers, 9 of whom had an overt HCM phenotype. Heart transplanted HCM has a heterogeneous genetic background where multiple mutations are uncommon. The clinical course of HCM is not primarily dependent on the presence of multiple sarcomeric mutations. Clinical and genetic evaluation of relatives does not support differential clinical management in HCM based on genetics."	"Efficient and scalable purification of cardiomyocytes from human embryonic and induced pluripotent stem cells by VCAM1 surface expression. Human embryonic and induced pluripotent stem cells (hESCs/hiPSCs) are promising cell sources for cardiac regenerative medicine. To realize hESC/hiPSC-based cardiac cell therapy, efficient induction, purification, and transplantation methods for cardiomyocytes are required. Though marker gene transduction or fluorescent-based purification methods have been reported, fast, efficient and scalable purification methods with no genetic modification are essential for clinical purpose but have not yet been established. In this study, we attempted to identify cell surface markers for cardiomyocytes derived from hESC/hiPSCs. We adopted a previously reported differentiation protocol for hESCs based on high density monolayer culture to hiPSCs with some modification. Cardiac troponin-T (TNNT2)-positive cardiomyocytes appeared robustly with 30-70% efficiency. Using this differentiation method, we screened 242 antibodies for human cell surface molecules to isolate cardiomyocytes derived from hiPSCs and identified anti-VCAM1 (Vascular cell adhesion molecule 1) antibody specifically marked cardiomyocytes. TNNT2-positive cells were detected at day 7-8 after induction and 80% of them became VCAM1-positive by day 11. Approximately 95-98% of VCAM1-positive cells at day 11 were positive for TNNT2. VCAM1 was exclusive with CD144 (endothelium), CD140b (pericytes) and TRA-1-60 (undifferentiated hESCs/hiPSCs). 95% of MACS-purified cells were positive for TNNT2. MACS purification yielded 5-10×10(5) VCAM1-positive cells from a single well of a six-well culture plate. Purified VCAM1-positive cells displayed molecular and functional features of cardiomyocytes. VCAM1 also specifically marked cardiomyocytes derived from other hESC or hiPSC lines. We succeeded in efficiently inducing cardiomyocytes from hESCs/hiPSCs and identifying VCAM1 as a potent cell surface marker for robust, efficient and scalable purification of cardiomyocytes from hESC/hiPSCs. These findings would offer a valuable technological basis for hESC/hiPSC-based cell therapy."	"Clinical and mutational spectrum in a cohort of 105 unrelated patients with dilated cardiomyopathy. Dilated Cardiomyopathy (DCM) is one of the leading causes of heart failure with high morbidity and mortality. More than 30 genes have been reported to cause DCM. To provide new insights into the pathophysiology of dilated cardiomyopathy, a mutational screening on 4 DCM-causing genes (MYH7, TNNT2, TNNI3 and LMNA) was performed in a cohort of 105 unrelated DCM (64 familial cases and 41 sporadic cases) using a High Resolution Melting (HRM)/sequencing strategy. Screening of a highly conserved arginine/serine (RS)-rich region in exon 9 of RBM20 was also performed. Nineteen different mutations were identified in 20 index patients (19%), including 10 novels. These included 8 LMNA variants in 9 (8.6%) probands, 5 TNNT2 variants in 5 probands (4.8%), 4 MYH7 variants in 3 probands (3.8%), 1 TNNI3 variant in 1 proband (0.9%), and 1 RBM20 variant in 1 proband (0.9%). One proband was double-heterozygous. LMNA mutations represent the most prevalent genetic DCM cause. Most patients carrying LMNA mutations exhibit conduction system defects and/or cardiac arrhythmias. Our study also showed than prevalence of mutations affecting TNNI3 or the (RS)-rich region of RBM20 is lower than 1%. The discovery of novel DCM mutations is crucial for clinical management of patients and their families because pre-symptomatic diagnosis is possible and precocious intervention could prevent or ameliorate the prognosis."	"Microvascular function is selectively impaired in patients with hypertrophic cardiomyopathy and sarcomere myofilament gene mutations. The purpose of this study was to assess myocardial blood flow (MBF) using positron emission tomography in patients with hypertrophic cardiomyopathy (HCM) according to genetic status. Coronary microvascular dysfunction is an important feature of HCM, associated with ventricular remodeling and heart failure. We recently demonstrated the increased prevalence of systolic dysfunction in patients with HCM with sarcomere myofilament gene mutations and postulated an association between genetic status and coronary microvascular dysfunction. Maximum MBF (intravenous dipyridamole, 0.56 mg/kg; Dip-MBF) was measured using (13)N-labeled ammonia in 61 patients with HCM (age 38 ± 14 years), genotyped by automatic DNA sequencing of 8 myofilament-encoding genes (myosin-binding protein C, beta-myosin heavy chain, regulatory and essential light chains, troponin T, troponin I, troponin C, alpha-tropomyosin, and alpha-actin). In 35 patients, cardiac magnetic resonance imaging was performed. Fifty-three mutations were identified in 42 of the 61 patients (genotype positive; 69%). Despite similar clinical profiles, genotype-positive patients with HCM showed substantially lower Dip-MBF compared with that of genotype-negative patients (1.7 ± 0.6 ml/min/g vs. 2.4 ± 1.2 ml/min/g; p &lt; 0.02). A Dip-MBF &lt;1.5 ml/min/g had 81% positive predictive value for genotype-positive status and implied a 3.5-fold independent increase in likelihood of carrying myofilament gene mutations (hazard ratio: 3.52; 95% confidence interval: 1.05 to 11.7; p = 0.04). At cardiac magnetic resonance imaging, the prevalence of late gadolinium enhancement was greater in genotype-positive patients (22 of 23 [96%] compared with 8 of 12 [67%] genotype-negative patients; p = 0.038). Patients with HCM with sarcomere myofilament mutations are characterized by more severe impairment of microvascular function and increased prevalence of myocardial fibrosis, compared with genotype-negative individuals. These findings suggest a direct link between sarcomere gene mutations and adverse remodeling of the microcirculation in HCM, accounting for the increased long-term prevalence of ventricular dysfunction and heart failure in genotype-positive patients."	"Genetic screening and double mutation in Japanese patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a primary myocardial disorder with an autosomal-dominant pattern of inheritance mainly caused by single heterozygous mutations in sarcomere genes. Although multiple gene mutations have recently been reported in Western countries, clinical implications of multiple mutations in Japanese subjects are not clear. A comprehensive genetic analysis of 5 sarcomere genes (cardiac β-myosin heavy chain gene [MYH7], cardiac myosin-binding protein C gene [MYBPC3], cardiac troponin T gene [TNNT2], α-tropomyosin gene [TPM1] and cardiac troponin I gene [TNNI3]) was performed in 93 unrelated patients and 14 mutations were identified in 28 patients. Twenty-six patients had single heterozygosity (20 in MYBPC3, 4 in MYH7, 1 in TNNT2, 1 in TNNI3), whereas 2 proband patients with familial HCM had double heterozygosity: 1 with P106fs in MYBPC3 and R869C in MYH7 and 1 with R945fs in MYBPC3 and E1049D in MYH7. From the results of the family survey and the previous literature on HCM mutations, P106fs, R945fs and R869C seemed to be pathological mutations and E1049D might be a rare polymorphism. The proband patient with P106fs and R869C double mutation was diagnosed as having HCM at an earlier age (28 years of age) than her relatives with single mutation, and had greater wall thickness with left ventricular outflow obstruction. One double mutation was identified in a Japanese cohort of HCM patients. Further studies are needed to clarify the clinical significance of multiple mutations including phenotypic severity."	"Cardiac troponin T concentrations above the 99th percentile value as measured by a new high-sensitivity assay predict long-term prognosis in patients with acute coronary syndromes undergoing routine early invasive strategy. A recently developed immunoassay for high-sensitivity measurement of cardiac troponin T (hsTnT) allows measurement at the 99th percentile for a normal population with an assay imprecision &lt;10%. It is unclear whether such a low cutpoint (14 ng/L) is helpful for long-term risk stratification of patients with an acute coronary syndrome (ACS) undergoing routine early invasive strategy. Consecutive patients with ACS admitted to a chest pain unit were studied. The usefulness of hsTnT for early diagnosis of myocardial infarction (MI) and prediction of all-cause death or death/MI over a median of 271 days following presentation was compared against the fourth generation cTnT at the 99th percentile cutpoint. Of 1,384 patients with ACS enrolled, 47.8% had non-ST-segment elevation MI (NSTEMI), 26.4% unstable angina, 21.8% STEMI and 4% had non-ACS. Adjusted risk for all-cause death [adjusted HR 8.26 (95%CI: 1.13-66.33), p = 0.038] and death/MI [adjusted HR 2.71 (95% CI: 1.15-6.38), p = 0.023] were significantly higher with hsTnT above the 99th percentile. In particular, among patients with a standard fourth generation cTnT result below the 99th percentile cutoff (0.01 ng/mL), hsTnT improved risk assessment. Mortality risk associated with an elevated hsTnT was present across the spectrum of ACS, as well as in conditions with hsTnT elevations not related to ACS. hsTnT at the 99th percentile cutoff is useful for the diagnostic evaluation of patients with ACS, and provides strong and independent predictive power for adverse long-term outcomes even after early invasive strategy."	"Hybrid gel composed of native heart matrix and collagen induces cardiac differentiation of human embryonic stem cells without supplemental growth factors. Our goal was to assess the ability of native heart extracellular matrix (ECM) to direct cardiac differentiation of human embryonic stem cells (hESCs) in vitro. In order to probe the effects of cardiac matrix on hESC differentiation, a series of hydrogels was prepared from decellularized ECM from porcine hearts by mixing ECM and collagen type I at varying ratios. Maturation of cardiac function in embryoid bodies formed from hESCs was documented in terms of spontaneous contractile behavior and the mRNA and protein expression of cardiac markers. Hydrogel with high ECM content (75% ECM, 25% collagen, no supplemental soluble factors) increased the fraction of cells expressing cardiac marker troponin T, when compared with either hydrogel with low ECM content (25% ECM, 75% collagen, no supplemental soluble factors) or collagen hydrogel (100% collagen, with supplemental soluble factors). Furthermore, cardiac maturation was promoted in high-ECM content hydrogels, as evidenced by the striation patterns of cardiac troponin I and by upregulation of Cx43 gene. Consistently, high-ECM content hydrogels improved the contractile function of cardiac cells, as evidenced by increased numbers of contracting cells and increased contraction amplitudes. The ability of native ECM hydrogel to induce cardiac differentiation of hESCs without the addition of soluble factors makes it an attractive biomaterial system for basic studies of cardiac development and potentially for the delivery of therapeutic cells into the heart."	"Phosphorylation, but not alternative splicing or proteolytic degradation, is conserved in human and mouse cardiac troponin T. Cardiac troponin T (cTnT), the tropomyosin binding subunit of the troponin complex, plays a pivotal regulatory role in the Ca(2+)-mediated interaction between actin thin filament and myosin thick filament. The post-translational modifications (PTMs) and alternative splicing of cTnT may represent important regulatory mechanisms of cardiac contractility. However, a complete characterization of PTMs and alternatively spliced isoforms in cTnT present in vivo is lacking. Top-down protein mass spectrometry (MS) analyzes whole proteins, thus providing a global view of all types of modifications, including PTMs and sequence variants, simultaneously in one spectrum without a priori knowledge. In this study, we applied an integrated immunoaffinity chromatography and top-down MS approach to comprehensively characterize PTMs and alternatively spliced isoforms of cTnT purified from healthy human and wild-type mouse heart tissue. High-resolution Fourier transform MS revealed that human cTnT (hcTnT) and mouse cTnT (mcTnT) have similar phosphorylation patterns, whereas higher molecular heterogeneity was observed for mcTnT than hcTnT. Further MS/MS fragmentation of monophosphorylated hcTnT and mcTnT by electron capture dissociation and collisionally activated dissociation unambiguously identified Ser1 as the conserved in vivo phosphorylation site. In contrast, we identified a single spliced isoform for hcTnT but three alternatively spliced isoforms for mcTnT. Moreover, we observed distinct proteolytic degradation products for hcTnT and mcTnT. This study also demonstrates the advantage of top-down MS/MS with complementary fragmentation techniques for the identification of modification sites in the highly acidic N-terminal region of cTnT."	"Contribution of genetic factors to the pathogenesis of dilated cardiomyopathy: the cause of dilated cardiomyopathy: genetic or acquired? (genetic-side). Dilated cardiomyopathy (DCM) is characterized by dilated ventricles and systolic dysfunction. Its etiology is not fully unraveled, but both extrinsic and intrinsic factors are considered to be involved. The intrinsic factors include genetic variations in the genes (ie, disease-causing mutations and disease-associated polymorphisms), which play key roles in controlling the susceptibility to the disease by affecting the performance, regulation, and/or maintenance of cardiac function. DCM can be classified into 2 types: hereditary and non-hereditary. The genetic variations, or disease-causing mutations, contributing to the pathogenesis of hereditary DCM can be found in various genes, especially those for sarcolemma elements, contractile elements, Z-disc elements, sarcoplasmic elements, and nuclear lamina elements of cardiomyocytes. On the other hand, disease-associated polymorphisms, which control the susceptibility to non-hereditary DCM, may be found in genes expressing not only in cardiomyocytes but also other non-cardiac cells involved in the immune system. Because functional alterations caused by these genetic variations can be classified into several categories, it is necessary to understand the pathogenesis and hence to develop diagnostic and therapeutic strategies for both hereditary and non-hereditary DCM from the viewpoint of genetic factors."	"Should serum troponin after PCI be used to predict long-term outcomes?.......Not quite yet! NA"	"Prognostic value of cardiac troponin-I or troponin-T elevation following nonemergent percutaneous coronary intervention: a meta-analysis. The aim of this meta-analysis was to assess the prevalence and prognostic value regarding mortality of cTnT or cTnI elevations after nonemergent percutaneous coronary intervention (PCI) in a large number of cohort/registry studies. Routine cardiac troponin measurement after elective PCI has been controversial among interventionalists. Recent studies have provided conflicting data in regard to predictive value of cardiac troponin-T (cTnT) and troponin-I (cTnI) elevation after non-emergent PCI. Electronic and manual searches were conducted of all published studies reporting on the prognostic impact of cTnT or cTnI elevation after elective PCI. A meta-analysis was performed with all-cause mortality at follow-up as the primary endpoint. We identified 22 studies, involving 22,353 patients, published between 1998 and 2009. Postprocedural cTnT and cTnI were elevated in 25.9% and 34.3% of patients, respectively. Follow-up period ranged from 3 to 67 months (mean: 17.7 ± 14.9 months). The results showed no heterogeneity among the trials (Q-test: 25.39; I(2) : 17%; P = 0.23). No publication bias was detected (Egger's test: P = 0.16). The long-term all-cause mortality in patients with cTnI or cTnT elevation after PCI (5.8%) was significantly higher when compared to patients without cTnI or cTnT elevation (4.4%); OR 1.45 (95% CI: 1.22-1.72), P &lt; 0.01. In addition, the postprocedural composite adverse clinical events of all-cause mortality or myocardial infarction (MI) in patients with cTnI or cTnT elevation after PCI (9.2%) was significantly higher when compared to patients without cTnI or cTnT elevation (5.3%); OR 1.77 (95% CI: 1.48-2.11), P &lt; 0.01. The current meta-analysis indicates that cTnI or cTnT elevation after nonemergent PCI is indicative of an increase in long-term all-cause mortality as well as the composite adverse events of all-cause mortality and MI. Efforts to routinely monitor periprocedural cTn levels along with more intensive outpatient monitoring/treatment of patients with cTn elevations may help to improve the long-term adverse outcomes in these patients following non-emergent PCI."	"Who is David and who is Goliath? There is an urgent need to improve the reference standards for estimation of myocardial infarct size. NA"	"Troponin T levels and infarct size by SPECT myocardial perfusion imaging. To evaluate the relationship between serial cardiac troponin T (cTnT) levels with infarct size and left ventricular ejection fraction by gated single-photon emission computed tomography myocardial perfusion imaging (SPECT-MPI) in patients with acute myocardial infarction (AMI). Current guidelines recommend the use of cTnT as the biomarker of choice for the diagnosis of AMI. Data relating cTnT to SPECT-MPI in patients with AMI are limited. A subset of patients with their first AMI participating in a community-based cohort of AMI in Olmsted County, Minnesota, were prospectively studied. Serial cTnT levels were evaluated at presentation, &lt;12 h and 1, 2, and 3 days after onset of pain. Peak cTnT was defined as the maximum cTnT value. A total of 121 patients (age, 61 ± 13 years; 31% women) with AMI underwent gated SPECT-MPI at a median (25th percentile, 75th percentile) of 10 (5, 15) days post-AMI. The type of infarct was non-ST-segment elevation myocardial infarction in 61%, and 13% were anterior in location. The median infarct size was 1% (0%, 11%) and the median gated left ventricular ejection fraction was 54% (47%, 60%). Fifty-nine patients (49% of the population) had no measurable infarction by SPECT-MPI. Independent predictors of measurable SPECT-MPI infarct size included cTnT at days 1, 2, and 3 and peak cTnT, but not at presentation or &lt;12 h. In receiver-operator characteristic analysis, the area under the curve was highest at day 3. Receiver-operator characteristic analysis demonstrated a cutoff of 1.5 ng/ml for peak cTnT for the detection of measurable infarct size. In a community-based cohort of patients with their first AMI, independent predictors of measurable SPECT-MPI infarct size included cTnT at days 1, 2, and 3 and peak cTnT. In contrast, cTnT level at presentation and &lt;12 h was not an independent predictor of myocardial infarction size as assessed by SPECT-MPI. Receiver-operator characteristic analysis demonstrated a cutoff value peak cTnT of 1.5 ng/ml for the detection of measurable infarct."	"Early embryonic sensitivity to cyclophosphamide in cardiac differentiation from human embryonic stem cells. hESCs (human embryonic stem cells) can differentiate into tissue derivatives of all three germ layers in vitro and mimic the development of the embryo in vivo. In this study, we have investigated the potential of an hESC-based assay for the detection of toxicity to cardiac differentiation in embryonic development. First of all, we developed the protocol of cardiac induction from hESCs according to our previous work and distinguished cardiac precursor cells and late mature cardiomyocytes from differentiated cells, demonstrated by the Q-PCR (quantitative real-time PCR), immunocytochemistry and flow cytometry analysis. In order to test whether CPA (cyclophosphamide) induces developmental and cellular toxicity in the human embryo, we exposed the differentiating cells from hESCs to CPA (a well-known proteratogen) at different stages. We have found that a high concentration of CPA could inhibit cardiac differentiation of hESCs. Two separate exposure intervals were used to determine the effects of CPA on cardiac precursor cells and late mature cardiomyocytes respectively. The cardiac precursor cells were sensitive to CPA in non-cytotoxic concentrations for the expression of the cardiac-specific mRNA markers Nkx2.5 (NK2 transcription factor related, locus 5), GATA-4 (GATA binding protein 4 transcription factor) and TNNT2 (troponin T type 2). Non-cytotoxic CPA concentrations did not affect the mRNA markers' expression in late mature cardiomyocytes, indicating that cardiac precursors were more sensitive to CPA than late cardiomyocytes in cardiogenesis. We set up the in vitro developmental toxicity test model so as to reduce the number of test animals and expenses without compromising the safety of consumers and patients. Furthermore, such in vitro methods may be possibly suited to test a large number of chemicals than the classical employed in vivo tests."	"Rare variant mutations identified in pediatric patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) in infants and children can be partially explained by genetic cause but the catalogue of known genes is limited. We reviewed our database of 41 cases diagnosed with DCM before 18 years of age who underwent detailed clinical and genetic evaluation, and summarize here the evidence for mutations causing DCM in these cases from 15 genes (PSEN1, PSEN2, CSRP3, LBD3, MYH7, SCN5A, TCAP, TNNT2, LMNA, MYBPC3, MYH6, TNNC1, TNNI3, TPM1, and RBM20). Thirty-five of the 41 pediatric cases had relatives with adult-onset DCM. More males (66%) were found among children diagnosed after 1 year of age with DCM. Nineteen mutations in 9 genes were identified among 15 out of 41 patients; 3 patients (diagnosed at ages 2 weeks, 9 and 13 years) had multiple mutations. Of the 19 mutations identified in 12 families, mutations in TPM1 (32%) and TNNT2 (21%) were the most commonly found. Of the 6 patients diagnosed before 1 year of age, 3 had mutations in TPM1 (including a set of identical twins), 1 in TNNT2, 1 in MYH7, and 1 with multiple mutations (MYH7 and TNNC1). Most DCM was accompanied by advanced heart failure and need for cardiac transplantation. We conclude that in some cases pediatric DCM has a genetic basis, which is complicated by allelic and locus heterogeneity as seen in adult-onset DCM. We suggest that future prospective comprehensive family-based genetic studies of pediatric DCM are indicated to further define mutation frequencies in known genes and to discover novel genetic cause."	"Genetic heterogeneity for autosomal dominant familial hypertrophic cardiomyopathy in a Pakistani family. To identify the gene causing inherited hypertrophic cardiomyopathy (HCM) in a Pakistani family. Cross-sectional, observational study. Department of Cardiology, Shifa International Hospital and Biomedical and Genetic Engineering Laboratories, Islamabad, from 2005 to 2007. A large family of 17 individuals was included in this study. In the family 6 members were suffering from hypertrophic cardiomyopathy. Linkage analysis was carried out to map the disease-causing gene. Genomic DNA from each individual of the whole family was genotyped for microsatellite markers for all the known HCM loci followed by a whole genome search. Automated DNA sequencing was done for mutation identification in the candidate genes. Linkage analysis of 17 family members showed a maximum two point Lod score of 3.97 with marker D1S1660 at chromosome 1q 32.2. A disease region of 4.16cM was defined by proximal and distal cross-overs with markers GATA135F02 and D1S3715 respectively. This region contained the candidate genes TNNT2 (cardiac troponin T) and TNNI1 (troponin I 1). Direct sequencing of these genes for the whole family containing 17 members showed no diseaseassociated mutation in either of these genes. Through linkage analysis, a disease locus for HCM family was mapped within a region of 4.16cM at chromosome 1q31.3-q32.1. So far no disease-associated mutation has been found in the candidate genes."	"Genetic diagnosis of hypertrophic cardiomyopathy using mass spectrometry DNA arrays and high resolution melting. Hypertrophic cardiomyopathy (HCM), a complex myocardial disorder with an autosomal dominant genetic pattern and prevalence of 1:500, is the most frequent cause of sudden death in apparently healthy young people. The benefits of gene-based diagnosis of HCME for both basic research and clinical medicine are limited by the considerable costs of current genetic testing due to the large number of genes and mutations involved in this pathology. However, coupling two high-throughput techniques--mass spectrometry genotyping (MSG) and high resolution melting (HRM)--is an encouraging new strategy for HCM diagnosis. Our aim was to evaluate the diagnostic efficacy of both techniques in this pathology by studying 13 individuals with a clinical phenotype of HCM. Peripheral blood samples were collected from: (i) seven subjects with a clinical diagnosis of HCM, all bearing known mutations previously identified by dideoxy sequencing and thus being used as blinded samples (sample type 1); (ii) one individual with a clinical diagnosis of HCM negative for mutations after dideoxy sequencing of the five most common HCM genes, MYH7, MYBPC3, TNNI3, TNNT2 and MYL2 (sample type 2); and (iii) five individuals individual with a clinical diagnosis of HCM who had not previously been genetically studied (sample type 3). The 13 samples were analyzed by MSG for 534 known mutations in 32 genes associated with HCM phenotypes and for all coding regions and exon-intron boundaries of the same HCM genes by HRM. The 32 studied genes include the most frequent HCM-associated sarcomere genes, as well as 27 genes with lower reported HCM phenotype association. This coupled genotyping strategy enabled us to identify a c.128delC (p.A43Vfs165) frame-shift mutation in the CSRP3 gene, a gene not usually studied in current HCM genetics. The heterozygous CSRP3 mutation was found in two patients (sample types 2 and 3) aged 50 and 52 years, respectively, both with diffuse left ventricular hypertrophy. Furthermore, this coupled strategy enabled us to find a novel mutation, c.817C &gt;T (p.Arg273Cys), in MYBPC3 in an individual from sample type 3, subsequently confirmed by dideoxy sequencing. This novel mutation in MYBPC3, not present in 200 chromosomes from 200 healthy individuals, affects a codon known to harbor an HCM-causing mutation--p.Arg253His. In conclusion, in the cohort used in this work coupling two technologies, MSG and HRM, with high sensitivity and low false positive results, enabled rapid, innovative and low-cost genotyping of HCM patients, which may in the short-term be suitable for accurate genetic diagnosis of HCM."	"Zebrafish deficient for Muscleblind-like 2 exhibit features of myotonic dystrophy. Myotonic dystrophy (DM; also known as dystrophia myotonica) is an autosomal dominant disorder that affects the heart, eyes, brain and endocrine system, but the predominant symptoms are neuromuscular, with progressive muscle weakness and wasting. DM presents in two forms, DM1 and DM2, both of which are caused by nucleotide repeat expansions: CTG in the DMPK gene for DM1 and CCTG in ZNF9 (CNBP) for DM2. Previous studies have shown that the mutant mRNAs containing the transcribed CUG or CCUG repeats are retained within the nuclei of cells from individuals with DM, where they bind and sequester the muscleblind-like proteins MBNL1, MBNL2 and MBNL3. It has been proposed that the sequestration of these proteins plays a key role in determining the classic features of DM. However, the functions of each of the three MBNL genes are not completely understood. We have generated a zebrafish knockdown model in which we demonstrate that a lack of mbnl2 function causes morphological abnormalities at the eye, heart, brain and muscle levels, supporting an essential role for mbnl2 during embryonic development. Major features of DM are replicated in our model, including muscle defects and splicing abnormalities. We found that the absence of mbnl2 causes disruption to the organization of myofibrils in skeletal and heart muscle of zebrafish embryos, and a reduction in the amount of both slow and fast muscle fibres. Notably, our findings included altered splicing patterns of two transcripts whose expression is also altered in DM patients: clcn1 and tnnt2. The studies described herein provide broader insight into the functions of MBNL2. They also lend support to the hypothesis that the sequestration of this protein is an important determinant in DM pathophysiology, and imply a direct role of MBNL2 in splicing regulation of specific transcripts, which, when altered, contributes to the DM phenotype."	"Human cardiomyopathy mutations induce myocyte hyperplasia and activate hypertrophic pathways during cardiogenesis in zebrafish. To assess the effects during cardiac development of mutations that cause human cardiomyopathy, we modeled a sarcomeric gene mutation in the embryonic zebrafish. We designed morpholino antisense oligonucleotides targeting the exon 13 splice donor site in the zebrafish cardiac troponin T (tnnt2) gene, in order to precisely recapitulate a human TNNT2 mutation that causes hypertrophic cardiomyopathy (HCM). HCM is a disease characterized by myocardial hypertrophy, myocyte and myofibrillar disarray, as well as an increased risk of sudden death. Similar to humans with HCM, the morphant zebrafish embryos displayed sarcomere disarray and there was a robust induction of myocardial hypertrophic pathways. Microarray analysis uncovered a number of shared transcriptional responses between this zebrafish model and a well-characterized mouse model of HCM. However, in contrast to adult hearts, these embryonic hearts developed cardiomyocyte hyperplasia in response to this genetic perturbation. The re-creation of a human disease-causing TNNT2 splice variant demonstrates that sarcomeric mutations can alter cardiomyocyte biology at the earliest stages of heart development with distinct effects from those observed in adult hearts despite shared transcriptional responses."	"Rapid detection of genetic variants in hypertrophic cardiomyopathy by custom DNA resequencing array in clinical practice. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiac disease (1/500) and the most common cause of sudden cardiac death in young people. Pathogenic mutation detection of HCM is having a growing impact on the medical management of patients and their families. However, the remarkable genetic and allelic heterogeneity makes molecular analysis by conventional methods very time-consuming, expensive and difficult to realise in a routine diagnostic molecular laboratory. The authors used their custom DNA resequencing array which interrogates all possible single-nucleotide variants on both strands of all exons (n=160), splice sites and 5'-untranslated region of 12 HCM genes (27 000 nucleotides). The results for 122 unrelated patients with HCM are presented. Thirty-three known or novel potentially pathogenic heterozygous single-nucleotide variants were identified in 38 patients (31%) in genes MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3 and ACTC1. Although next-generation sequencing will replace all large-scale sequencing platforms for inherited cardiac disorders in the near future, this HCM resequencing array is currently the most rapid, cost-effective and reasonably efficient technology for first-tier mutation screening of HCM in clinical practice. Because of its design, the array is also an appropriate tool for initial screening of other inherited forms of cardiomyopathy."	"[Fabry disease among hypertrophic cardiomyopathy of genetic origin]. Primary hypertrophic cardiomyopathy is a relatively frequent disease (1/500) which results from a mutation in a gene encoding a sarcomeric protein. In a series of 184 cases, nearly half (46 %) were secondary to a mutation in one of the 4 following genes : MYBPC3, MYH7, TNNI3, TNNT2. In Fabry disease, an exclusive or nearly exclusive cardiac expression is possible and referred to as &quot;cardiac variant&quot;. The hypertrophic cardiomyopathy of Fabry disease is usually unspecific. Two series reported a prevalence of Fabry disease of about 6% among male cases. An Italian series of 34 female cases with hypertrophic cardiomyopathy demonstrated that it was feasible to diagnose Fabry disease in females by screening for specific lesions in myocardial biopsies. We detected a patient who initially presented with a common hypertrophic cardiomyopathy except that his ECG showed depression of ST segment and inversion of T wave in leads D1, VL and in precordial leads. The family history revealed several affected relatives and female carriers. In conclusion, an isolated common hypertrophic cardiomyopathy may be secondary to Fabry disease. Male patients should be screened systemically for enzyme defect except in cases of father-to-son transmission. In females, an affected male relative should be searched for screening or the GLA gene should be sequenced. It is important to think about a putative Fabry disease in cases with hypertrophic cardiomyopathy not associated with any obvious cause."	"Cytosine arabinoside induces ectoderm and inhibits mesoderm expression in human embryonic stem cells during multilineage differentiation. Teratogenic substances induce adverse effects during the development of the embryo. Multilineage differentiation of human embryonic stem cells (hESCs) mimics the development of the embryo in vitro. Here, we propose a transcriptomic approach in hESCs for monitoring specific toxic effects of compounds as an alternative to traditional time-consuming and cost-intensive in vivo tests requiring large numbers of animals. This study was undertaken to explore the adverse effects of cytosine arabinoside (Ara-C) on randomly differentiated hESCs. Human embryonic stem cells were used to investigate the effects of a developmental toxicant Ara-C. Sublethal concentrations of Ara-C were given for two time points, day 7 and day 14 during the differentiation. Gene expression was assessed with microarrays to determine the dysregulated transcripts in presence of Ara-C. Randomly differentiated hESCs were able to generate the multilineage markers. The low concentration of Ara-C (1 nM) induced the ectoderm and inhibited the mesoderm at day 14. The induction of ectodermal markers such as MAP2, TUBB III, PAX6, TH and NESTIN was observed with an inhibition of mesodermal markers such as HAND2, PITX2, GATA5, MYL4, TNNT2, COL1A1 and COL1A2. In addition, no induction of apoptosis was observed. Gene ontology revealed unique dysregulated biological process related to neuronal differentiation and mesoderm development. Pathway analysis showed the axon guidance pathway to be dysregulated. Our results suggest that hESCs in combination with toxicogenomics offer a sensitive in vitro developmental toxicity model as an alternative to traditional animal experiments."	"Recurrent and founder mutations in the Netherlands: mutation p.K217del in troponin T2, causing dilated cardiomyopathy. Background. About 30% of dilated cardiomyopathy (DCM) cases are familial. Mutations are mostly found in the genes encoding lamin A/C, beta-myosin heavy chain and the sarcomeric protein cardiac troponin-T (TNNT2). Mutations in TNNT2 are reported in approximately 3% of DCM patients. The overall phenotype caused by TNNT2 mutations is thought to be a fully penetrant, severe disease. This also seems to be true for a recurrent deletion in the TNNT2 gene; p.K217del (also known as p.K210del). Methods. We compared the phenotype of all Dutch patients identified as carrying the TNNT2 p.K217del mutation with those described in the literature. All index patients underwent cardiological evaluation. Family screening was done in all described families. Results. Six DCM patients carrying the TNNT2 p.K217del mutation were identified from four Dutch families. Mean age of disease manifestation was 33 years. Heart transplantation was required in three of them at ages 12, 18 and 19 years. These outcomes are comparable with those described in the literature. Conclusion. Carriers of the TNNT2 p.K217del mutation in our Dutch families, as well as in families described in the literature before, generally show a severe, early-onset form of DCM. (Neth Heart J 2010;18:478-85.)."	"Late onset sporadic dilated cardiomyopathy caused by a cardiac troponin T mutation. Mutations in TNNT2, encoding cardiac troponin T, commonly shows early onset, aggressive dilated cardiomyopathy (DCM). This observation may influence the decision of whether to undertake clinical genetic testing for TNNT2 in later onset DCM. Further, the trigger for late onset DCM remains enigmatic. A 70-year-old woman, previously healthy with a left ventricular ejection fraction of 50%-55% at age 69, presented with DCM of unknown cause and a 4-month history progressive heart failure requiring cardiac transplantation. Clinical genetic testing revealed a novel TNNT2 R139H mutation but no relevant variants in 18 other DCM genes. Her explanted heart showed partial fatty replacement in the right ventricle. Sequencing for five arrhythmogenic right ventricular dysplasia genes was negative. Functional studies in porcine cardiac skinned fibers reconstituted with the mutant R139H troponin T protein showed decreased Ca(2+) sensitivity at pH 7, characteristic of DCM. Because fatty infiltration may acidify the myocellular environment, maximal force development examined at pH 6.5 was diminished, suggesting a possible environmental trigger. We conclude that the TNNT2 R139H mutation was likely to be disease causing. Further, later age of onset may not be relevant to exclude genetic testing for TNNT2 mutations."	"Identification of a novel TPM1 mutation in a family with left ventricular noncompaction and sudden death. Left ventricular noncompaction (LVNC) is a cardiomyopathy morphologically characterized by 2-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses communicating with the left ventricular cavity. The purpose of this study was to investigate patients with LVNC for possible disease causing mutations. We screened 4 genes (TAZ, LDB3, DTNA and TPM1) in 51 patients with LVNC for mutations by polymerase chain reaction and direct DNA sequencing. A novel missense substitution in exon 1 of TPM1 (c.109A&gt;G: p.Lys37Glu) was identified in three affected members of a family with isolated LVNC. The substitution brings about a change in amino acid charge at a highly conserved residue and could result in aberrant mRNA splicing. This variant was not identified in 200 normal control samples. Pathologic analysis of a right ventricular myocardial specimen from the proband's maternal aunt revealed endocardial and subendocardial fibrosis with prominent elastin deposition, as well as the presence of adipose tissue between muscle layers, pathologic changes that are distinct from those seen in patients with HCM or DCM. Screening of the proband and her mother for variants in other sarcomeric protein-encoding candidate genes, MYH7, MYBPC3, TNNT2, TNNI3, ACTC, MYL2, and MYL3, did not identify any other non-synonymous variants or variants in splice donor-acceptor sequences that were potentially disease causing. We conclude TPM1 is a potential candidate disease-causing gene for isolated LVNC, especially in patients experiencing sudden death."	"Prognosis of vascular surgery patients using a quantitative assessment of troponin T release: is the crystal ball still clear? Cardiac troponin T (cTnT) assays with increased sensitivity might increase the number of positive tests. Using the area under the curve (AUC) with serial sampling of cTnT an exact quantification of the myocardial damage size can be made. We compared the prognosis of vascular surgery patients with integrated cTnT-AUC values to continuous and standard 12-lead electrocardiography (ECG) changes. 513 Patients were monitored. cTnT sampling was performed on postoperative days 1, 3, 7, 30 and/or at discharge or whenever clinically indicated. If cTnT release occurred, daily measurements of cTnT were performed, until baseline was achieved. CTnT-AUC was quantified and divided in tertiles. All-cause mortality and cardiovascular events (cardiac death and myocardial infarction) were noted during follow-up. 81/513 (16%) Patients had cTnT release. After adjustment for gender, cardiac risk factors, and site and type of surgery, those in the highest cTnT-AUC tertile were associated with a significantly worse cardiovascular outcome and long-term mortality (HR 20.2; 95% CI 10.2-40.0 and HR 4.0; 95% CI 2.0-7.8 respectively). Receiver operator analysis showed that the best cut-off value for cTnT-AUC was &lt;0.01 days*ng m for predicting long-term cardiovascular events and all-cause mortality. In vascular surgery patients quantitative assessment of cTnT strongly predicts long-term outcome."	"Development of a high resolution melting method for the detection of genetic variations in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most common genetic cardiac disease affecting 1 in 500 people. Due to large cohorts to investigate, the number of disease-causing genes, the size of the 2 prevalent mutated genes, and the presence of a large spectrum of private mutations, mutational screening must be performed using an extremely sensitive and specific scanning method. High Resolution Melting (HRM) analysis was developed for prevalent HCM-causing genes (MYBPC3, MYH7, TNNT2, and TNNI3) using control DNAs and DNAs carrying previously identified gene variants. A cohort of 34 HCM patients was further blindly screened. To evaluate HRM sensitivity, this cohort was also screened using an optimized DHPLC methodology. All gene variants detected by DHPLC were also readily identified as abnormal by HRM analysis. Mutational screening of a cohort of 34 HCM cases led to identification of 19 mutated alleles. Complete molecular investigation was completed two times faster and cheaper than using DHPLC strategy. HRM analysis represents an inexpensive, highly sensitive and high-throughput method to allow identification of mutations in the coding sequences of prevalent HCM genes. Identification of more HCM mutations will provide new insights into genotype/phenotype relationships and will allow a better knowledge of the HCM physiopathology."	"Identification of a novel MYBPC3 gene variant in a patient with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic disorder characterized by cardiac hypertrophy caused by mutations in sarcomere protein genes. MYBPC3 mutations are reported as a frequent cause of HCM. We aimed to identify the gene mutation underlying HCM in an Italian patient and his family composed of 13 relatives. Mutation screening of 658 known mutations was performed using a rapid and efficient mutation detection system based on semiautomated MALDI-TOF mass spectrometry using the Sequenom MassArray System and iPLEX Gold genotyping chemistry. Subsequently, direct sequencing of the coding exons and flanking intronic regions was performed for the most suitable HCM genes (MYBPC3, MYH7, TNNT2, TNNI3, and TPM1) in the index patient. We found a novel MYBPC3 gene mutation: G13999T (Gln689His). No other sarcomere gene mutation was found in this family. This genetic variant, which changes the last amino acid of MYBPC3 exon 21, affects a highly conserved residue. Furthermore, the Gln689His does not appear in public databases and has never been described as a polymorphism. The potential pathogenic role of this novel mutation was underlined by its absence in a sample of healthy subjects (n = 122) from the general Italian population. In summary, a novel MYBPC3 gene mutation has been identified in a patient affected by HCM, whereas it was absent in 244 reference alleles."	"Resolution of left ventricular and asymmetric septal hypertrophy after resection of left ventricular outflow obstruction in a patient with troponin-positive hypertrophic obstructive cardiomyopathy: a case report. We report the case of a young woman with a troponin mutation of C to T nucleotide substitution in exon 17 of troponin 2 (TNNT2; c.868C.T; p.Arg288Cys) leading to hypertrophic obstructive cardiomyopathy. Following surgical resection of the outflow obstruction, she had near-complete resolution of her asymmetric left ventricular hypertrophy, such that cardiomyopathy could no longer be diagnosed on echocardiographic grounds. We believe that this unusual case shows important aspects relating to the interplay between genetic and environmental mechanisms and the overlap in the phenotypic spectrum between primary subaortic stenosis and obstructive hypertrophic cardiomyopathy."	"Prevalence and spectrum of mutations in a cohort of 192 unrelated patients with hypertrophic cardiomyopathy. Hypertrophic Cardiomyopathy (HCM), a common and clinically heterogeneous disease characterized by unexplained ventricular myocardial hypertrophy and a high risk of sudden cardiac death, is mostly caused by mutations in sarcomeric genes but modifiers genes may also modulate the phenotypic expression of HCM mutations. The aim of the current study was to report the frequency of single and multiple gene mutations in a large French cohort of HCM patients and to evaluate the influence of polymorphisms previously suggested to be potential disease modifiers in this myocardial pathology. We report the molecular screening of 192 unrelated HCM patients using denaturing high-performance liquid chromatography/sequencing analysis of the MYBPC3, MYH7, TNNT2 and TNNI3 genes. Genotyping of 6 gene polymorphisms previously reported as putative HCM modifiers (5 RAAS polymorphisms and TNF-α -308 G/A) was also performed. Seventy-five mutations were identified in 92 index patients (48%); 32 were novel. MYBPC3 mutations (25%) represent the most prevalent cause of inherited HCM whereas MYH7 mutations (12%) rank second in the pathogenesis. The onset age was older in patients carrying MYBPC3 mutations than in those with MYH7 mutations. The MYBPC3 IVS20-2A&gt;G splice mutation was identified in 7% of our HCM population. Multiple gene mutations were identified in 9 probands (5%), highlighting the importance of screening other HCM-causing genes even after a first mutation has been identified, particularly in young patients with a severe phenotype. No single or cumulative genetic modifier effect could be evidenced in this HCM cohort."	"The R820W mutation in the MYBPC3 gene, associated with hypertrophic cardiomyopathy in cats, causes hypertrophic cardiomyopathy and left ventricular non-compaction in humans. The R820W mutation in the MYBPC3 gene has been associated with the development of hypertrophic cardiomyopathy (HCM) in rag-doll cats, but had not been described in humans. To describe the phenotype associated with the R820W mutation identified in a human family. The R820W was identified by direct sequencing of the MYBPC3 gene in a 47 year old woman with HCM and left ventricular non-compaction (LVNC). Clinical and genetic studies of the R820W mutation were performed in her family. The index patient was homozygous for the mutation and had no additional mutations in the main sarcomeric genes (MYH7, TNNT2, TNNI3, and TPM1). She had HCM with LVNC and normal systolic function. One brother had died suddenly at age 43 years. Another brother diagnosed of LVNC with severe systolic dysfunction and a cardiac arrest was also homozygous for the mutation. One heterozygous 31 year old sister, and three heterozygous sons of the index (ages 14, 20 and 23 years old) were clinically unaffected. The father of the index was apparently healthy and her mother had atrial fibrillation and an electrocardiographic diagnosis of left ventricular hypertrophy at age 86 years. The R820W mutation in the MYBPC3 gene, previously associated with HCM in rag-doll cats, causes both HCM and LVNC in homozygous human carriers, with mild or null clinical expression in heterozygous carriers."	"HTS-Compatible Patient-Derived Cell-Based Assay to Identify Small Molecule Modulators of Aberrant Splicing in Myotonic Dystrophy Type 1. Myotonic dystrophy type 1 (DM1) is a genetic disorder characterized by muscle wasting, myotonia, cataracts, cardiac arrhythmia, hyperinsulinism and intellectual deficits, and is caused by expansion of a CTG repeat in the 3'UTR of the Dystrophia Myotonica-Protein Kinase (DMPK) gene. The DMPK transcripts containing expanded CUG repeats accumulate in nuclear foci and ultimately cause mis-splicing of secondary genes through the dysregulation of RNA-binding proteins including Muscleblind 1 (MBNL1) and CUG binding protein 1 (CUGBP1). Correction of mis-splicing of genes such as the Skeletal muscle-specific chloride channel 1 (CLCN1), Cardiac troponin T (TNNT2), Insulin receptor (INSR) and Sarcoplasmic/endoplasmic reticulum Ca(2+)ATPase 1 (SERCA1) may alleviate some of the symptoms of DM1; hence identification of small molecule modulators is an important step towards a therapy for DM1 patients. Here we describe the generation of immortalized myoblast cell lines derived from healthy (DMPK CTG(5)) and DM1 patient (DMPK CTG(1000)) fibroblasts by constitutive overexpression of human telomerase reverse transcriptase (hTERT) and inducible overexpression of the Myoblast determination factor (MYOD). MBNL1-containing nuclear foci, mis-splicing events and defective myotube differentiation defects characteristic of DM1 were observed in these cells. A CLCN1 luciferase minigene construct (CLCN1-luc) was stably introduced to monitor intron 2 retention in the DM1 cellular context (a reported splicing defect in DM1). The assay was validated by performing a high-throughput screen (HTS) of ~13,000 low molecular weight compounds against the CLCN1-luc DM1 myoblast cell line, providing an ideal system for conducting HTS to better understand and treat DM1."	"Mortality in patients undergoing open aortoiliac surgery: prognostic value of troponin T in the immediate postoperative period. Patients undergoing open aortoiliac surgery constitute a high-risk subgroup. The aim of this study was to evaluate the relationship between postoperative troponin T (TnT) elevation with the associated postoperative mortality, and mean hospital stay. This was a prospective observational study of consecutive patients who underwent open aortoiliac surgery during 2006. TnT levels in the first 72 hours after the operation, immediate mortality, postoperative care unit stay, and total postoperative hospital stay were recorded. Statistical analyses were performed with the program SPSS 14.0; the chi-square test (or the Fisher's exact test) was used for qualitative variables and the Mann-Whitney test for quantitative variables. Of the 65 patients included in the study, postoperative TnT was elevated in 14 (21.5%) patients. No significant differences were found in age, sex, hypertension, dyslipidemia, smoking, diabetes mellitus, ischemic heart disease, heart failure, bronchopathy, or renal failure between groups. Mortality in patients with elevated TnT levels was significantly higher (42% compared with 3.92%; relative risk 10.93 +/- 0.76; p = 0.001). Likewise, their mean postoperative intensive care unit stay was significantly greater (23.21 +/- 6.96 days compared to 2.86 +/- 1.96; p &lt; 0.001). This finding resulted in a significantly longer postoperative hospital stay (32.57 +/- 25.38 days compared with 12.47 +/- 2.21). TnT level in the immediate postoperative period is a highly relevant indicator of prognosis in patients undergoing major vascular surgery."	"Rare variant mutations in pregnancy-associated or peripartum cardiomyopathy. The term peripartum cardiomyopathy (PPCM) describes dilated cardiomyopathy (DCM) without known cause that occurs during the last month of pregnancy to 5 months postpartum. A related term, pregnancy-associated cardiomyopathy (PACM), refers to DCM onset earlier in pregnancy. Multiple studies have focused on inflammatory, immunologic, and environmental causes. An alternative hypothesis is that PPCM and PACM result, in part, from a genetic cause. In this study, we sought to test the hypothesis that rare DCM-associated mutations underlie a proportion of PACM or PPCM cases. A systematic search of our DCM database designed for family-based genetic studies was undertaken for cases associated with pregnancy and the postpartum period; in the identified cases, clinical and molecular genetic data, including exonic and near intron/exon boundaries of DCM genes, were analyzed. Of 4110 women from 520 pedigrees in the Familial Dilated Cardiomyopathy Research Project database, we identified 45 cases of PPCM/PACM. Evidence of familial clustering with DCM was present in 23 unrelated cases. Of the 45 cases, 19 had been resequenced for known DCM genes, and 6 carried mutations. Five had PPCM, of which 3 were familial with mutations found in MYH7, SCN5A, and PSEN2, and 2 were sporadic with mutations in MYH6 and TNNT2. One case had PACM and carried a mutation in MYBPC3. These findings suggest that a proportion of PPCM/PACM cases results from a genetic cause."	"[Study of mutations causing hypertrophic cardiomyopathy in a group of patients from Espirito Santo, Brazil]. Hypertrophic cardiomyopathy (HC) is the most frequent cardiac hereditary disease, caused by mutations in sarcomere protein coding genes. Although more than 430 mutations have been identified in several continents and countries, there have been no reports of mutations in Brazil. To carry out a genetic study to identify genetic mutations that cause HC in a group of patients in Espirito Santo, Brazil. Using the SSCP technique, 12 exons from the three main genes involved in HC were studied: exons 15, 20, 21, 22 and 23 of the beta-myosin heavy chain gene (MYH7), exons 7, 16, 18, 22 and 24 of the myosin binding protein C gene (MYBPC3) and exons 8 and 9 of troponin T gene (TNNT2). 16 alterations were found, including two mutations, one of them possibly pathogenic in the MYBPC3 gene (p. Glu441Lys) and another pathogenic one, previously described in the TNNT2 gene (p.Arg92Trp), 8 rare sequence variations and 6 sequence variations with allelic frequency higher than 1% (polymorphisms). These data allow the conclusion that the genotyping of patients is feasible in our country. It is possible that the isolated p.Glu441Lys variant identified in exon 16 of the MYBPC3 gene is pathogenic, promoting a milder phenotype than that found when in association with other mutations. The p.Arg92Trp variant in the exon 9 of TNNT2 gene does not promote such a homogeneous phenotype as previously described and it can lead to severe hypertrophy."	"Clinical features and outcome of hypertrophic cardiomyopathy associated with triple sarcomere protein gene mutations. The aim of this study was to describe the clinical profile associated with triple sarcomere gene mutations in a large hypertrophic cardiomyopathy (HCM) cohort. In patients with HCM, double or compound sarcomere gene mutation heterozygosity might be associated with earlier disease onset and more severe outcome. The occurrence of triple mutations has not been reported. A total of 488 unrelated index HCM patients underwent screening for myofilament gene mutations by direct deoxyribonucleic acid sequencing of 8 genes, including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2, MYL3), troponin-T (TNNT2), troponin-I (TNNI3), alpha-tropomyosin (TPM1), and actin (ACTC). Of the 488 index patients, 4 (0.8%) harbored triple mutations, as follows: MYH7-R869H, MYBPC3-E258K, and TNNI3-A86fs in a 32-year-old woman; MYH7-R723C, MYH7-E1455X, and MYBPC3-E165D in a 46-year old man; MYH7-R869H, MYBPC3-K1065fs, and MYBPC3-P371R in a 45-year old woman; and MYH7-R1079Q, MYBPC3-Q969X, and MYBPC3-R668H in a 50-year old woman. One had a history of resuscitated cardiac arrest, and 3 had significant risk factors for sudden cardiac death, prompting the insertion of an implantable cardioverter-defibrillator in all, with appropriate shocks in 2 patients. Moreover, 3 of 4 patients had a severe phenotype with progression to end-stage HCM by the fourth decade, requiring cardiac transplantation (n=1) or biventricular pacing (n=2). The fourth patient, however, had clinically mild disease. Hypertrophic cardiomyopathy caused by triple sarcomere gene mutations was rare but conferred a remarkably increased risk of end-stage progression and ventricular arrhythmias, supporting an association between multiple sarcomere defects and adverse outcome. Comprehensive genetic testing might provide important insights to risk stratification and potentially indicate the need for differential surveillance strategies based on genotype."	"Common susceptibility variants examined for association with dilated cardiomyopathy. Rare mutations in more than 20 genes have been suggested to cause dilated cardiomyopathy (DCM), but explain only a small percentage of cases, mainly in familial forms. We hypothesised that more common variants may also play a role in increasing genetic susceptibility to DCM, similar to that observed in other common complex disorders. To test this hypothesis, we performed case-control analyses on all DNA polymorphic variation identified in a resequencing study of six candidate DCM genes (CSRP3, LDB3, MYH7, SCN5A, TCAP, and TNNT2) conducted in 289 unrelated white probands with DCM of unknown cause and 188 unrelated white controls. In univariate analyses, we identified associated common variants at LDB3 site 10779, LDB3 site 57877, MYH7 sites 16384 and 17404, and TCAP sites 140 and 1735. Multivariate analyses to examine the joint effects of multiple gene variants confirmed univariate results for MYH7 and TCAP and identified a block of nine variants in MYH7 that was strongly associated with DCM. Common variants in genes known to be causative of DCM may play a role in genetic susceptibility to DCM. Our results suggest that examination of common genetic variants may be warranted in future studies of DCM and other Mendelian-like disorders."	"Heart failure-associated changes in RNA splicing of sarcomere genes. Alternative mRNA splicing is an important mechanism for regulation of gene expression. Altered mRNA splicing occurs in association with several types of cancer, and a small number of disease-associated changes in splicing have been reported in heart disease. However, genome-wide approaches have not been used to study splicing changes in heart disease. We hypothesized that mRNA splicing is different in diseased hearts compared with control hearts. We used the Affymetrix Exon array to globally evaluate mRNA splicing in left ventricular myocardial RNA from controls (n=15) and patients with ischemic cardiomyopathy (n=15). We observed a broad and significant decrease in mRNA splicing efficiency in heart failure, which affected some introns to a greater extent than others. The profile of mRNA splicing separately clustered ischemic cardiomyopathy and control samples, suggesting distinct changes in mRNA splicing between groups. Reverse transcription-polymerase chain reaction validated 9 previously unreported alternative splicing events. Furthermore, we demonstrated that splicing of 4 key sarcomere genes, cardiac troponin T (TNNT2), cardiac troponin I (TNNI3), myosin heavy chain 7 (MYH7), and filamin C, gamma (FLNC), was significantly altered in ischemic cardiomyopathy and in dilated cardiomyopathy and aortic stenosis. In aortic stenosis samples, these differences preceded the onset of heart failure. Remarkably, the ratio of minor to major splice variants of TNNT2, MYH7, and FLNC classified independent test samples as control or disease with &gt;98% accuracy. Our data indicate that mRNA splicing is broadly altered in human heart disease and that patterns of aberrant RNA splicing accurately assign samples to control or disease classes."	"Severe familial left ventricular non-compaction cardiomyopathy due to a novel troponin T (TNNT2) mutation. Left ventricular non-compaction (LVNC) is caused by mutations in multiple genes. It is still unclear whether LVNC is the primary determinant of cardiomyopathy or rather a secondary phenomenon with intrinsic cardiomyocyte dysfunction being the actual cause of the disease. Here, we describe a family with LVNC due to a novel missense mutation, pE96K, in the cardiac troponin T gene (TNNT2). The novel mutation was identified in the index patient and all affected relatives, but not in 430 healthy control individuals. Mutations in known LVNC-associated genes were excluded. To investigate the pathophysiological implications of the mutation, we generated transgenic mice expressing human wild-type cTNT (hcTNT) or a human troponin T harbouring the pE96K mutation (mut cTNT). Animals were characterized by echocardiography, histology, and gene expression analysis. Mut cTNT mice displayed an impaired left ventricular function and induction of marker genes of heart failure. Remarkably, left ventricular non-compaction was not observed. Familial co-segregation and the cardiomyopathy phenotype of mut cTNT mice strongly support a causal relationship of the pE96K mutation and disease in our index patient. In addition, our data suggest that a non-compaction phenotype is not required for the development of cardiomyopathy in this specific TNNT2 mutation leading to LVNC."	"The role of vasculature and blood circulation in zebrafish swimbladder development. Recently we have performed a detailed analysis of early development of zebrafish swimbladder, a homologous organ of tetrapod lung; however, the events of swimbladder development are still poorly characterized. Many studies have implicated the role of vascular system in development of many organs in vertebrates. As the swimbladder is lined with an intricate network of blood capillaries, it is of interest to investigate the role of the vascular system during early development of swimbladder. To investigate the role of endothelial cells (ECs) and blood circulation during development of the swimbladder, phenotypes of swimbladder were analysed at three different stages (approximately 2, 3 and 5 dpf [day postfertilization]) in cloche (clo) mutant and Tnnt2 morphants, in the background of transgenic lines Et(krt4:EGFP)sq33-2 and Et(krt4:EGFP)sqet3 which express EGFP in the swimbladder epithelium and outer mesothelium respectively. Analyses of the three tissue layers of the swimbladder were performed using molecular markers hb9, fgf10a, acta2, and anxa5 to distinguish epithelium, mesenchyme, and outer mesothelium. We showed that the budding stage was independent of ECs and blood flow, while early epithelial growth, mesenchymal organization and its differentiation into smooth muscle, as well as outer mesothelial organization, were dependent on ECs. Blood circulation contributed to later stage of epithelial growth, smooth muscle differentiation, and organization of the outer mesothelium. Inflation of the swimbladder was also affected as a result of absence of ECs and blood flow. Our data demonstrated that the vascular system, though not essential in swimbladder budding, plays an important role in the development of the swimbladder starting from the early growth stage, including mesenchyme organization and smooth muscle differentiation, and outer mesothelial organization, which in turn may be essential for the function of the swimbladder as reflected in its eventual inflation."	"Hypertrophic cardiomyopathy. A study of the troponin-T gene in 127 Spanish families. The information available on the correlation between genotype and phenotype and the prognostic implications of different troponin-T gene mutations is sparse and, at times, contradictory. We studied the TNNT2 gene in 127 patients with hypertrophic cardiomyopathy and identified three mutations in patients from four families (3.1%): the Phe87Leu mutation, which has not been previously reported, the Arg278Cys mutation (two families) and the Asp271Ile mutation. Seven carriers of the Phe87Leu mutation (aged 29 to 52 years) were found to have mild hypertrophy (i.e., a wall thickness &lt;16 mm). There were 11 deaths associated with the condition (seven sudden deaths), and four of those who died were aged between 14 and 16 years. No sudden deaths occurred in the other three families. In conclusion, troponin-T mutations were responsible for 3% of the hypertrophic cardiomyopathy cases in our study population. The Phe87Leu mutation was associated with only mild hypertrophy but with a high risk of sudden death."	"Sarcomere mutations in cardiomyopathy with left ventricular hypertrabeculation. Mutations in the genes encoding sarcomere proteins have been associated with both hypertrophic and dilated cardiomyopathy. Recently, mutations in myosin heavy chain (MYH7), cardiac actin (ACTC), and troponin T (TNNT2) were associated with left ventricular noncompaction, a form of cardiomyopathy characterized with hypertrabeculation that may also include reduced function of the left ventricle. We used clinically available genetic testing on 3 cases referred for evaluation of left ventricular dysfunction and noncompaction of the left ventricle and found that all 3 individuals carried sarcomere mutations. The first patient presented with neonatal heart failure and was referred for left ventricular noncompaction cardiomyopathy. Genetic testing found 2 different mutations in MYBPC3 in trans. The first mutation, 3776delA, Q1259fs, rendered a frame shift at 1259 of cardiac myosin-binding protein C and the second mutation was L1200P. The frameshift mutation was also found in this mother who displayed mild echocardiographic features of cardiomyopathy, with only subtle increase in trabeculation and an absence of hypertrophy. A second pediatric patient presented with heart failure and was found to carry a de novo MYH7 R369Q mutation. The third case was an adult patient with dilated cardiomyopathy referred for ventricular hypertrabeculation. This patient had a family history of congestive heart failure, including pediatric onset cardiomyopathy where 3 individuals in the family were found to have the MYH7 mutation R1250W. Genetic testing should be considered for cardiomyopathy with hypertrabeculation."	"Prevalence of sarcomere protein gene mutations in preadolescent children with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) in infants and children is thought to be commonly associated with metabolic disorders and malformation syndromes. Familial disease caused by mutations in cardiac sarcomere protein genes, which accounts for most cases in adolescents and adults, is believed to be a very rare cause of HCM. Seventy-nine consecutive patients diagnosed with HCM aged 13 years or younger underwent detailed clinical and genetic evaluation. The protein-coding sequences of 9 sarcomere protein genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, ACTC, and TNNC1), the genes encoding desmin (DES), and the gamma-2 subunit of AMP kinase (PRKAG2) were screened for mutations. A family history of HCM was present in 48 patients (60.8%). Forty-seven mutations (15 novel) were identified in 42 (53.2%) patients (5 patients had 2 mutations). The genes most commonly implicated were MYH7 (48.9%) and MYBPC3 (36.2%); mutations in TNNT2, ACTC, MYL3, and TNNI3 accounted for &lt;5% of cases each. A total of 16.7% patients with sarcomeric mutations were diagnosed before 1 year of age. There were no differences in clinical and echocardiographic features between those children with sarcomere protein gene mutations and those without or between patients with 2 mutations and those with 1 or no mutations. This study shows that familial disease is common among infants and children with HCM and that, in most cases, disease is caused by mutations in cardiac sarcomere protein genes. The major implication is that all first-degree relatives of any child diagnosed with HCM should be offered screening. Furthermore, the finding that one sixth of patients with sarcomeric disease were diagnosed in infancy suggests that current views on pathogenesis and natural history of familial HCM may have to be revised."	"Echocardiographic strain imaging to assess early and late consequences of sarcomere mutations in hypertrophic cardiomyopathy. Genetic testing identifies sarcomere mutation carriers (G+) before clinical diagnosis of hypertrophic cardiomyopathy (HCM), allowing characterization of initial disease manifestations. Previous studies demonstrated that impaired relaxation develops before left ventricular hypertrophy (LVH). The precise impact of sarcomere mutations on systolic function in early and late disease is unclear. Comprehensive echocardiography with strain imaging was performed on 146 genotyped individuals with mutations in 5 sarcomere genes. Contractile parameters were compared in 68 preclinical (G+/LVH-), 40 overt (G+/LVH+) subjects with HCM, and 38 mutation (-) normal control relatives. All subjects had normal left ventricular ejection fraction. In preclinical HCM, global and regional peak systolic strain (epsilon(sys)) and longitudinal systolic strain rate were not significantly different from controls, but early diastolic mitral annular velocity (Ea) was reduced by 13%. In overt HCM, there was a significant 27% and 14% decrease in global longitudinal epsilon(sys) and systolic strain rate, respectively, compared with both preclinical HCM and controls (P&lt;0.013 for all comparisons), and a 33% reduction in Ea. Sarcomere mutations have disparate initial effects on diastolic and systolic functions. Preclinical HCM is characterized by impaired relaxation but preserved systolic strain. In contrast, both diastolic and longitudinal systolic abnormalities are present in overt disease despite normal ejection fraction. We propose that diastolic dysfunction is an early consequence of sarcomere mutations, whereas systolic dysfunction results from mutations combined with subsequent pathological remodeling. Identifying mechanistic pathways triggered by these mutations may begin to reshape the clinical paradigm for treatment, based on early diagnosis and disease prevention."	"Clinical and functional characterization of TNNT2 mutations identified in patients with dilated cardiomyopathy. A key issue for cardiovascular genetic medicine is ascertaining if a putative mutation indeed causes dilated cardiomyopathy (DCM). This is critically important as genetic DCM, usually presenting with advanced, life-threatening disease, may be preventable with early intervention in relatives known to carry the mutation. We recently undertook bidirectional resequencing of TNNT2, the cardiac troponin T gene, in 313 probands with DCM. We identified 6 TNNT2 protein-altering variants in 9 probands, all who had early onset, aggressive disease. Additional family members of mutation carriers were then studied when available. Four of the 9 probands had DCM without a family history, and 5 probands had familial DCM. Only 1 mutation (Lys210del) could be attributed as definitively causative from previous reports. Four of the 5 missense mutations were novel (Arg134Gly, Arg151Cys, Arg159Gln, and Arg205Trp), and one was previously reported with hypertrophic cardiomyopathy (Glu244Asp). Based on the clinical, pedigree, and molecular genetic data, these 5 mutations were considered possibly or likely disease causing. To further clarify their potential pathophysiologic impact, we undertook functional studies of these mutations in cardiac myocytes reconstituted with mutant troponin T proteins. We observed decreased Ca(2+) sensitivity of force development, a hallmark of DCM, in support of the conclusion that these mutations are disease causing. We conclude that the combination of clinical, pedigree, molecular genetic, and functional data strengthen the interpretation of TNNT2 mutations in DCM."	"Inducible cardiomyocyte-specific gene disruption directed by the rat Tnnt2 promoter in the mouse. We developed a conditional and inducible gene knockout methodology that allows effective gene deletion in mouse cardiomyocytes. This transgenic mouse line was generated by coinjection of two transgenes, a &quot;reverse&quot; tetracycline-controlled transactivator (rtTA) directed by a rat cardiac troponin T (Tnnt2) promoter and a Cre recombinase driven by a tetracycline-responsive promoter (TetO). Here, Tnnt2-rtTA activated TetO-Cre expression takes place in cardiomyocytes following doxycycline treatment. Using two different mouse Cre reporter lines, we demonstrated that expression of Cre recombinase was specifically and robustly induced in the cardiomyocytes of embryonic or adult hearts following doxycycline induction, thus, allowing cardiomyocyte-specific gene disruption and lineage tracing. We also showed that rtTA expression and doxycycline treatment did not compromise cardiac function. These features make the Tnnt2-rtTA;TetO-Cre transgenic line a valuable genetic tool for analysis of spatiotemporal gene function and cardiomyocyte lineage tracing during developmental and postnatal periods."	"Use of genetics in the clinical evaluation of cardiomyopathy. Inherited forms of cardiomyopathy are frequently responsible for heart failure that is otherwise unexplained. Evaluation of familial cardiomyopathy should include not only the individual patient, but also the pattern of inheritance within the family and assessment for the presence of syndromic features. The last 10 years have seen remarkable advances in genetics. Improvements in technology have lowered costs, such that clinical use of genetic testing is rapidly expanding. Genetic counseling about the potential risks and benefits of such testing is an important part of the care of individuals and families with inherited heart disease. Among inherited types of cardiomyopathy, the likelihood of finding a responsible gene mutation varies. Both hypertrophic and right ventricular forms of cardiomyopathy have a relatively high likelihood of finding a responsible gene mutation when testing is properly applied. Because of prominent genetic heterogeneity in familial dilated cardiomyopathy, recognition of pathogenic mutations is more challenging. With or without genetic testing, screening of family members who are at risk for an inherited form of cardiomyopathy leads to earlier identification, earlier treatment, and improved outcomes."	"Abnormal blood pressure response to exercise occurs more frequently in hypertrophic cardiomyopathy patients with the R92W troponin T mutation than in those with myosin mutations. Abnormal blood pressure response to exercise is reported to occur in up to a third of hypertrophic cardiomyopathy (HCM) cases and is associated with an increased risk of death, particularly in the young, but it is not known whether the HCM-causing mutation influences blood pressure response to exercise. The purpose of this article is to ascertain whether the blood pressure response to exercise differs among carriers of the R92W mutation in the cardiac troponin T gene (TNNT2), which has been associated with an increased risk of sudden cardiac death in young males; carriers of mutations in the cardiac beta-myosin heavy chain gene (MYH7); and their noncarrier relatives. Thirty R92W(TNNT2) carriers, 51 MYH7 mutation carriers, and 68 of their noncarrier relatives were subjected to bicycle ergonometric exercise testing to assess blood pressure response to, as well as heart rate recovery after, exercise. Additional echocardiographic and demographic details were documented for all participants. R92W(TNNT2) carriers demonstrated significantly more abnormal blood pressure responses to exercise (P = .021; odds ratio 3.03; confidence interval 1.13-8.12) and smaller increases in systolic blood pressure than MYH7 mutation carriers or related noncarrier control individuals. Although abnormal blood pressure response occurred at similar frequencies in males in all groups (23%-26%), the percentage of R92W(TNNT2) females with abnormal blood pressure response was 64%, compared with 25% for MYH7 and 22% for noncarriers. Therefore, these results show that blood pressure response to exercise is influenced by genotype and gender in patients with HCM."	"The influence of rat mesenchymal stem cell CD44 surface markers on cell growth, fibronectin expression, and cardiomyogenic differentiation on silk fibroin - Hyaluronic acid cardiac patches. Since MSCs contain an abundant of CD44 surface markers, it is of interesting to investigate whether CD44 on rat MSC (rMSCs) influenced cell growth, fibronectin expression and cardiomyogenic differentiation on new SF/HA cardiac patches. For this investigation, we examined the influences of rMSCs with or without a CD44-blockage treatment on the aforementioned issues after they were cultivated, and further induced by 5-aza on SF and SF/HA patches. The results showed that the relative growth rates of rMSCs cultured on cultural wells, SF/HA patches without or with a CD44-blockage treatment were 100%, 208.9+/-7.1 (%) or 48.4+/-6.0 (%) (n=3, for all), respectively, after five days of cultivations. Moreover, rMSCs cultivated on SF/HA patches highly promoted fibronectin expressions (e.g., 1.8x10(5)/cell, in fluorescent intensity) while cells with a CD44-blockage treatment markedly diminished the expressions (e.g., 1.1x10(4)/cell, in fluorescent intensity) on same patches. For investigating possible influences of CD44 surface markers of rMSCs on their cardiomyogenic differentiation, the expressions of specific cardiac genes of cells were examined by using real-time PCR analysis. The results indicated that 5-aza inducing rMSCs significantly promoted the expressions of Gata4, Nkx2.5, Tnnt2 and Actc1 genes (all, P&lt;0.01 or better, n=3) on SF/HA patches compared with those expressions on SF patches and for cells with a CD44-blockage treatment on SF/HA patches. Furthermore, the intensity of the expressions of cardiotin and connexin 43 of 5-aza inducing rMSCs were markedly higher than those of cells with a CD44-blockage treatment after they were cultured on SF/HA patches. Through this study, we reported that CD44 surface markers of rMSCs highly influenced the proliferations, fibronectin expressions and cardiomyogenic differentiation of rMSCs cultivated on cardiac SF/HA patches."	"Microarray analysis of altered gene expression in ERbeta-overexpressing HEK293 cells. Estrogen receptors (ERs), ERalpha and ERbeta, mediate estrogen actions in a broad range of target tissues. With the introduction of microarray techniques, a significant understanding has been gained regarding the interplay between the ERalpha and ERbeta in breast cancer cell lines. To gain a more comprehensive understanding of ERbeta-dependent gene regulation independent of ERalpha, we performed microarray analysis on HEK293/mock and HEK293/ERbeta cells. A total of 332 genes was identified as ERbeta-upregulated genes and 210 identified as ERbeta-downregulated genes. ERbeta-induced and ERbeta-repressed genes were involved in cell-cell signaling, morphogenesis, and cell proliferation. The ERbeta repressive effect on genes related to proliferation was further studied by proliferation assays, where ERbeta expression resulted in a significant decrease in cell proliferation. To identify primary ERbeta target genes, we examined a number of ERbeta-regulated genes using chromatin immunoprecipitation assays for regions bound by ERbeta. Our results showed that ERbeta recruitment was significant to regions associated with 12 genes (IL1RAP, TMSB4X, COLEC12, ENPP2, KLRC1, RERG, RGS16, TNNT2, CYR61, FER1L3, FAM108A1, and CYP4X1), suggesting that these genes are likely to be ERbeta primary target genes. This study has provided novel information on the gene regulatory function of ERbeta independent of ERalpha and identified a number of ERbeta primary target genes. The results of Gene Ontology analysis and proliferation assays are consistent with an antiproliferative role of ERbeta independent of ERalpha."	"The role of large gene deletions and duplications in MYBPC3 and TNNT2 in patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most common cardiovascular genetic disorder, and can result in heart failure and sudden death in the young. No mutation is identified in up to 50% of cases of HCM following comprehensive analysis of known causal genes, however standard methods overlook large deletions and duplications. The multiple ligation-dependent probe amplification method was used to screen for large deletions and duplications in the myosin-binding protein-C (MYBPC3) and cardiac troponin T (TNNT2) genes in patients with HCM. One novel 3 base pair deletion was identified in MYBPC3 in a severely affected patient; however this change was also found in an unaffected relative. No alterations in the TNNT2 gene were identified. In conclusion, large deletions and duplications do not appear to play a major role in the pathogenesis of HCM."	"Low prevalence and variable clinical presentation of troponin I and troponin T gene mutations in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disorder caused by mutations in cardiac sarcomeric proteins. Troponin I (TNNI3) and troponin T (TNNT2) are important parts of the sarcomere in heart muscle, and mutations in their genes are responsible for development of HCM. The prevalence of mutations in these two genes is low; hence, the data on clinical outcome are scarce. Yet, some of these mutations were shown to be malignant with a high incidence of sudden death. Here, we describe the disease course in three families affected with TNNI3 and one family with TNNT2 gene mutations. In TNNI3-HCM, the phenotypic manifestation ranged from clinically silent to sudden cardiac death with the worst prognosis observed in carriers of Ala157Val mutation in exon 7. In contrast, TNNT2-HCM was associated with favorable prognosis. Thus, the findings of the present study add evidence on the phenotypic presentation of this genetic disease."	"[The genotype-phenotype correlation of the MYH7 gene c.1273G &gt; a mutation in familial hypertrophic cardiomyopathy]. To investigate the genotype-phenotype correlation in Chinese familial hypertrophic cardiomyopathy (HCM), peripheral blood samples were collected from 7 members of a Chinese HCM family, and 120 normal subjects were recruited as control. The full encoding exons and flanking sequences of the cardiac troponin T (TNNT2) gene, beta-myosin heavy chain (MYH7) gene and myosin binding protein C (MYBPC3) gene were amplified and the products were sequenced directly to detect the mutations. A missense mutation, c.1273G&gt;A, was identified in exon 14 of the MYH7 gene in 4 members of the Chinese HCM family, which resulted a glycine (Gly) to arginine (Arg) exchange at amino acid residue 425. The 425th glycine amino acid residue is highly conservative across the different species. The clinical phenotypes among the family members who carried this mutation presented significant individual differences. The c.1273G&gt;A mutation of the MYH7 gene might be the causal mutation of the familial HCM. The heterogeneity of phenotypes suggested that multiple factors may be involved in the pathogenesis of HCM."	"Beating behavior of primary neonatal cardiomyocytes and cardiac-differentiated P19.CL6 cells on different extracellular matrix components. Stem cell-based therapy in cardiac tissue engineering is an emerging field that shows great potential for treating heart diseases. However, even preliminary issues, such as the ideal niche for cardiomyocytes, have not been clarified yet. In the present study, the effects of extracellular matrix (ECM) components on the beating duration of neonatal rat cardiomyocytes (RCMs) and on the cardiac differentiation of P19.CL6 carcinoma stem cells were studied. RCMs were cultured on gelatin-, fibronectin-, and collagen type I-coated dishes and on noncoated polystyrene dishes, and their beating rate, beating duration, and cardiac gene expression were evaluated. The beating period and the expression of troponin T type-2 (TNNT2) and troponin C type-1 (TNNC1) of cardiomyocytes cultured on gelatin-coated dishes were longer and higher than for those on dishes with other coatings. For the cardiac differentiation of P19.CL6 cells, troponin T type-2 expression on gelatin- and fibronectin-coated dishes was five times that on collagen type I-coated dishes or polystyrene dishes 11 days after induction. These results indicate that a gelatin-coated surface has a high ability not only to maintain the cardiac phenotype but also to enhance cardiac differentiation."	"Microarray profiling reveals CXCR4a is downregulated by blood flow in vivo and mediates collateral formation in zebrafish embryos. The response to hemodynamic force is implicated in a number of pathologies including collateral vessel development. However, the transcriptional effect of hemodynamic force is extremely challenging to examine in vivo in mammals without also detecting confounding processes such as hypoxia and ischemia. We therefore serially examined the transcriptional effect of preventing cardiac contraction in zebrafish embryos which can be deprived of circulation without experiencing hypoxia since they obtain sufficient oxygenation by diffusion. Morpholino antisense knock-down of cardiac troponin T2 (tnnt2) prevented cardiac contraction without affecting vascular development. Gene expression in whole embryo RNA from tnnt2 or control morphants at 36, 48, and 60 h postfertilization (hpf) was assessed using Affymetrix GeneChip Zebrafish Genome Arrays (&gt;14,900 transcripts). We identified 308 differentially expressed genes between tnnt2 and control morphants. One such (CXCR4a) was significantly more highly expressed in tnnt2 morphants at 48 and 60 hpf than controls. In situ hybridization localized CXCR4a upregulation to endothelium of both tnnt2 morphants and gridlock mutants (which have an occluded aorta preventing distal blood flow). This upregulation appears to be of functional significance as either CXCR4a knock-down or pharmacologic inhibition impaired the ability of gridlock mutants to recover blood flow via collateral vessels. We conclude absence of hemodynamic force induces endothelial CXCR4a upregulation that promotes recovery of blood flow."	"Therapeutic effect of {beta}-adrenoceptor blockers using a mouse model of dilated cardiomyopathy with a troponin mutation. Extensive clinical studies have demonstrated that beta-adrenoceptor blocking agents (beta-blockers) are beneficial in the treatment of chronic heart failure, which is due to various aetiologies, including idiopathic dilated cardiomyopathy (DCM) and ischaemic heart disease. However, little is known about the therapeutic efficacy of beta-blockers in the treatment of the inherited form of DCM, of which causative mutations have recently been identified in various genes, including those encoding cardiac sarcomeric proteins. Using a mouse model of inherited DCM with a troponin mutation, we aim to study the treatment benefits of beta-blockers. Three different types of beta-blockers, carvedilol, metoprolol, and atenolol, were orally administered to a knock-in mouse model of inherited DCM with a deletion mutation DeltaK210 in the cardiac troponin T gene (TNNT2). Therapeutic effects were examined on the basis of survival and myocardial remodelling. The lipophilic beta(1)-selective beta-blocker metoprolol was found to prevent cardiac dysfunction and remodelling and extend the survival of knock-in mice. Conversely, both the non-selective beta-blocker carvedilol and the hydrophilic beta(1)-selective beta-blocker atenolol had no beneficial effects on survival and myocardial remodelling in this mouse model of inherited DCM. The highly lipophilic beta(1)-selective beta-blocker metoprolol, known to prevent ventricular fibrillation via central nervous system-mediated vagal activation, may be especially beneficial to DCM patients showing a family history of frequent sudden cardiac death, such as those with a deletion mutation DeltaK210 in the TNNT2 gene."	"Myofibrillogenesis in the developing zebrafish heart: A functional study of tnnt2. Various hypotheses have been proposed to explain the molecule processes of sarcomere assembly, partially due to the lack of systematic genetic studies of sarcomeric genes in an in vivo model. Towards the goal of developing zebrafish as a vertebrate model for this purpose, we characterized myofibrillogenesis in a developing zebrafish heart and went on to examine the functions of cardiac troponin T (tnnt2). We found that sarcomere assembly in zebrafish heart was initiated from a non-striated actin filament network at the perimembrane region, whereas sarcomeric myosin is independently assembled into thick filaments of variable length before integrating into the thin filament network. Compared to Z-discs that are initially aligned to form shorter periodic dots and expanded longitudinally at a later time, M-lines assemble later and have a constant length. Depletion of full-length tnnt2 disrupted the striation of thin filaments and Z-bodies, which sequentially affects the striation of thick filaments and M-lines. Conversely, truncation of a C-terminal troponin complex-binding domain did not affect the striation of these sarcomere sub-structures, but resulted in reduced cardiomyocyte size. In summary, our data indicates that zebrafish are a valuable in vivo model for studying both myofibrillogenesis and sarcomere-based cardiac diseases."	"Coding sequence mutations identified in MYH7, TNNT2, SCN5A, CSRP3, LBD3, and TCAP from 313 patients with familial or idiopathic dilated cardiomyopathy. More than 20 genes have been reported to cause idiopathic and familial dilated cardiomyopathy (IDC/FDC), but the frequency of genetic causation remains poorly understood. Blood samples were collected and DNA prepared from 313 patients, 183 with FDC and 130 with IDC. Genomic DNA underwent bidirectional sequencing of six genes, and mutation carriers were followed up by evaluation of additional family members. We identified in 36 probands, 31 unique protein-altering variants (11.5% overall) that were not identified in 253 control subjects (506 chromosomes). These included 13 probands (4.2%) with 12 beta-myosin heavy chain (MYH7) mutations, nine probands (2.9%) with six different cardiac troponin T (TNNT2) mutations, eight probands (2.6%) carrying seven different cardiac sodium channel (SCN5A) mutations, three probands (1.0%) with three titin-cap or telethonin (TCAP) mutations, three probands (1.0%) with two LIM domain binding 3 (LDB3) mutations, and one proband (0.3%) with a muscle LIM protein (CSRP3) mutation. Four nucleotide changes did not segregate with phentoype and/or did not alter a conserved amino acid and were therefore considered unlikely to be disease-causing. Mutations in 11 probands were assessed as likely disease-causing, and in 21 probands were considered possibly disease-causing. These 32 probands included 14 of the 130 with IDC (10.8%) and 18 of 183 with FDC (9.8%) Mutations of these six genes each account for a small fraction of the genetic cause of FDC/IDC. The frequency of possible or likely disease-causing mutations in these genes is similar for IDC and FDC."	"The cardiomyogenic differentiation of rat mesenchymal stem cells on silk fibroin-polysaccharide cardiac patches in vitro. Polysaccharides and proteins profoundly impact the development and growth of tissues in the natural extra-cellular matrix (ECM). To mimic a natural ECM, polysaccharides were incorporated to/or co-sprayed with silk fibroin (SF) to produce SF/chitosan (CS) or SF/CS-hyaluronic acid (SF/CS-HA) microparticles that were further processed by mechanical pressing and genipin cross-linking to produce hybrid cardiac patches. The ATR-FTIR spectra confirm the co-existence of CS or CS-HA and SF in microparticles and patches. For evaluating the cellular responses of rMSCs to the SF/CS and SF/CS-HA cardiac patches, the growth of rMSCs and cardiomyogenic differentiation of 5-aza inducing rMSCs cultured on patches was examined. First, the isolated rMSCs were identified with various positive and negative surface markers such as CD 44 and CD 31 by a flow cytometric technique, respectively. For examining the growth of rMSCs on the patches, MTT viability assay was performed, and the results demonstrated that the growth of rMSCs on SF and SF-hybrid patches significantly exceeded (P&lt;0.001) that on culture wells after seven days of cultivation. Additionally, the relative growth rates of rMSCs on SF/CS and SF/CS-HA hybrid patches were significantly better (P&lt;0.01) than that on SF patches that were also observed by using vimentin stain to the cells. For instance, the relative cell growth rates (%) in cell culture wells, SF, SF/CS and SF/CS-HA patches were 100%, 282.9+/-6.5%, 337.0+/-8.0% and 332.6+/-6.6% (n=6, for all), respectively. For investigating the effects of the hybrid patches on cardiomyogenic differentiation of 5-aza inducing rMSCs, the expressions of specific cardiac genes of cells such as Gata4 and Nkx2.5 were examined by real-time quantitative polymerase chain reaction (real-time PCR) analysis. The results of cardiomyogenic differentiation of induced rMSCs on SF/CS and SF/CS-HA hybrid patches significantly improved the expressions of cardiac genes of Gata4, Nkx2.5, Tnnt2 and Actc1 genes (all, P&lt;0.01 or better, n=3) than those on SF patches and culture wells. Interestingly, the results of cardiac gene expressions of the cells on the SF/CS-HA hybrid patches were the most pronounced in promoting cardiomyogenic differentiations in this investigation. Furthermore, immunofluorescence staining of cardiac proteins such as cardiotin and connexin 43 for induced rMSCs cultured on SF/CS and SF/CS-HA hybrid patches were much pronounced compared with SF patches, indicating the improvements of cardiomyogenic differentiation on the hybrid patches. The results of this study demonstrate that the SF/CS and SF/CS-HA hybrid patches may be promising biomaterials for regenerating infarcted cardiac tissues."	"Dilated cardiomyopathy caused by a novel TNNT2 mutation-added value of genetic testing in the correct identification of affected subjects. Diagnosing familial dilated cardiomyopathy requires careful family history taking and clinical evaluation in first degree relatives. Based on the results of these findings the diagnosis may be established in the proband. However, due to the age-dependent expression of the disease, doubt may persist regarding the exact status of other family members, especially in young individuals. Here we present a family with DCM in whom we identified an underlying cardiac troponin T (TNNT2) mutation. Genetic testing was essential for the detection of asymptomatic carriers as well as for exclusion of the disease in other family members."	"The role of sarcomere gene mutations in patients with idiopathic dilated cardiomyopathy. We investigated a Danish cohort of 31 unrelated patients with idiopathic dilated cardiomyopathy (IDC), to assess the role that mutations in sarcomere protein genes play in IDC. Patients were genetically screened by capillary electrophoresis single strand conformation polymorphism and subsequently by bidirectional DNA sequencing of conformers in the coding regions of MYH7, MYBPC3, TPM1, ACTC, MYL2, MYL3, TNNT2, CSRP3 and TNNI3. Eight probands carried disease-associated genetic variants (26%). In MYH7, three novel mutations were found; in MYBPC3, one novel variant and two known mutations were found; and in TNNT2, a known mutation was found. One proband was double heterozygous. We find evidence of phenotypic plasticity: three mutations described earlier as HCM causing were found in four cases of IDC, with no history of a hypertrophic phase. Furthermore, one pedigree presented with several cases of classic DCM as well as one case with left ventricular non-compaction. Disease-causing sarcomere gene mutations were found in about one-quarter of IDC patients, and seem to play an important role in the causation of the disease. The genetics is as complex as seen in HCM. Thus, our data suggest that a genetic work-up should include screening of the most prominent sarcomere genes even in the absence of a family history of the disease."	"[Association of TNNT2 gene mutations with idiopathic dilated cardiomyopathy in a Chengdu population]. To determine whether cardiac troponin T gene (TNNT2, AY044273) is the virulence gene of idiopathic dilated cardiomyopathy (IDCM) in a Chengdu population. DNA were isolated from 96 hospitalized unrelated patients with IDCM and 110 healthy Chinese Han people who served as controls. The TNNT2 mutations including Arg131Trp, Arg141Trp, Arg205Leu, deltaLys210 and Asp270Asn were screened by polymerase chain reaction-single strand conformation polymorphisms (PCR-SSCP) and nucleotide sequence analysis. No mutation (Arg141Trp, Arg131Trp, Arg205Leu, deltaLys210, Asp270Asn) in TNNT2 was found in either the IDCM patients or the healthy people. The G9005C and C13350T polymorphism of the TNNT2 appeared in both the IDCM patients and the healthy people. The IDCM patients in Chengdu have no TNNT2 mutation. Two polymorphisms, G9005C and C13350T, are identified, which are not associated with IDCM."	"Cardiogenetics, neurogenetics, and pathogenetics of left ventricular hypertrabeculation/noncompaction. Left ventricular hypertrabeculation (LVHT), also known as noncompaction or spongy myocardium, is a cardiac abnormality of unknown etiology and pathogenesis frequently associated with genetic cardiac and noncardiac disorders, particularly genetic neuromuscular disease. This study aimed to review the current knowledge about the genetic or pathogenetic background of LVHT. A literature review of all human studies dealing with the association of LVHT with genetic cardiac and noncardiac disorders, particularly neuromuscular disorders, was conducted. Most frequently, LVHT is associated with mitochondrial disorders (mtDNA, nDNA mutations), Barth syndrome (G4.5, TAZ mutations), hypertrophic cardiomyopathy (MYH7, ACTC mutations), zaspopathy (ZASP/LDB3 mutations), myotonic dystrophy 1 (DMPK mutations), and dystrobrevinopathy (DTNA mutations). More rarely, LVHT is associated with mutations in the DMD, SCNA5, MYBPC3, FNLA1, PTPN11, LMNA, ZNF9, AMPD1, PMP22, TNNT2, fibrillin2, SHP2, MMACHC, LMX1B, HCCS, or NR0B1 genes. Additionally, LVHT occurs with a number of chromosomal disorders, polymorphisms, and not yet identified genes, as well in a familial context. The broad heterogeneity of LVHT's genetic background suggests that the uniform morphology of LVHT not only is attributable to embryonic noncompaction but also may result from induction of hypertrabeculation as a compensatory reaction of an impaired myocardium. Most frequently, LVHT is associated with mutations in genes causing muscle or cardiac disease, or with chromosomal disorders. These associations require comprehensive cardiac, neurologic, and cytogenetic investigations."	"[Genetic heterogeneity of myosin heavy chain 7 gene G823E mutation in familial hypertrophic cardiomyopathy in Chinese]. To study the disease-causing gene mutations in familial hypertrophic cardiomyopathy (HCM) in Chinese and to reveal the relationship between the genotype and the phenotype. Peripheral blood samples were collected from 12 members of a HCM family, and 120 healthy volunteers in China. PCR and double deoxygenation chain termination method were used to analyze the cardiac troponin T gene (TNNT2), beta-myosin heavy chain gene (MYH7) gene and myosin binding protein C gene (MYBPC3) and to detect mutations. Mutation G14452A was identified in exon 22 of MYH7 gene in 4 family members, causing the conversion of glycine (G) into glutamic acid (E). The onset ages and clinical manifestations of the family members carrying the mutation G823E, including 2 patients (the proband, male, with the onset age of 51, and his 26-year-old second son with the onset age of 20), and 2 carriers (his 31-year-old elder son and 29-year-old elder daughter), presented significant individual differences. The G823E mutation of MYH7 gene is the causal mutation of familial HCM. The heterogeneity of phenotypes suggests that multiple factors may be involved in the pathogenesis of HCM."	"[Mutations in sarcomeric genes MYH7, MYBPC3, TNNT2, TNNI3, and TPM1 in patients with hypertrophic cardiomyopathy]. Mutation of a sarcomeric gene is the most frequent cause of hypertrophic cardiomyopathy. For each such gene, however, previous studies have reported a range of different mutation frequencies, and clinical manifestations have been highly heterogeneous, both of which limit the use of genetic information in clinical practice. Our aim was to determine the frequency of mutations in the sarcomeric genes MYH7, MYBPC3, TNNT2, TNNI3, and TPM1 in a cohort of Spanish patients with hypertrophic cardiomyopathy. We used sequencing to analyze the coding regions of these five genes in 120 patients (29% with a family history) and investigated how the patient phenotype varied with the gene mutated. In total, 32 patients were found to have mutations: 10 in MYH7 (8%), 20 in MYBPC3 (16%), 2 in TNNT2, 1 in TPM1 and none in TNNI3. Overall, 61% of mutations had not been described before. Two patients had two mutations (i.e., double mutants). There was no difference in the mean age at diagnosis or the extent of the hypertrophy between those with MYH7 mutations and those with MYBPC3 mutations. Some 26% of patients had a mutation in one of the five sarcomeric genes investigated. More than half of the mutations had not been described before. The MYBPC3 gene was the most frequently mutated, followed by MYH7. No phenotypic differences were observed between carriers of the various mutations, which makes it difficult to use genetic information to stratify risk in these patients."	"[The genotype-phenotype correlation of MYH7 gene G15391A mutation and MYBPC3 gene G12101A mutation in familial hypertrophic cardiomyopathy]. To reveal genotype-phenotype correlation of disease-causing gene mutations in Chinese hypertrophic cardiomyopathy (HCM) pedigree. Peripheral venous blood samples were collected from two Chinese HCM families and 120 healthy subjects were recruited as normal control. The full encoding exons and flanking sequences of the cardiac troponin T gene (TNNT2), beta-myosin heavy chain gene (MYH7) and myosin binding protein C gene (MYBPC3) were amplified with the polymerase chain reaction method, DNA sequencing was used to detect the mutation. In ZZJ family, mutation G12101A was identified in exon 21 of MYBPC3 gene in 4 family members [the arginine (R) converted to histidine (H)]. In this pedigree, three out of eight family members were diagnosed as HCM and with a penetrance of 75%. In FHL family, mutation G15391A was identified in exon 23 of MYH7 gene in 3 family members [the glutamic acid (E) converted to lysine (K)]. In this pedigree, three out of six family members were diagnosed as HCM and with a penetrance of 100%. Echocardiography showed obstruction of left ventricular outflow tract in two out of the three HCM patients. Our results showed that the G12101A mutation of MYBPC3 gene is the causal mutation of familial HCM with mild phenotype. The G15391A mutation of MYH7 gene is the causal mutation of familial HCM with malignant phenotype and a penetrance of 100%. Screening mutations in the MYH7 gene should be viewed as a reasonable procedure in obstructive HCM patients."	"Differential protein expression in heart in UT-B null mice with cardiac conduction defects. Cardiac conduction defects were found in transgenic mice deficient in urea transporter UT-B. To investigate the molecular mechanisms of the conduction defects caused by UT-B deletion, we studied the protein expression profiles of heart tissue (comprising most conduction system) in wild-type versus UT-B null mice at different ages. By two-dimensional electrophoresis-based comparative analysis, we found that more than dozen proteins were modulated (&gt;two-fold) in the myocardium of UT-B null mice. Out of these modulated proteins, troponin T (TNNT2) presented significant changes in UT-B null mice at early stage prior to the development of P-R interval elongation, while the change of atrial natriuretic peptide (ANP) occurred only at late stage in UT-B null mice that had the AV block. These data indicate that UT-B deletion caused the dynamic expression regulation of TNNT2 and ANP, and these proteins may provide new clues to investigate the molecular events involved in cardiac conduction."	"Late gadolinium enhancement cardiovascular magnetic resonance in genotyped hypertrophic cardiomyopathy with normal phenotype. A 35 year-old asymptomatic Caucasian female with a family history of hypertrophic cardiomyopathy (HCM) was referred for cardiologic evaluation. The electrocardiogram and transthoracic echocardiogram were normal. Cardiovascular magnetic resonance (CMR) was performed for further assessment of myocardial function and presence of myocardial scar. CMR showed normal left ventricular systolic size, measurements and function. However, there was extensive, diffuse late gadolinium enhancement (LGE) throughout the left ventricle. This finding was consistent with extensive myocardial scarring and was highly suggestive of advanced, non-ischemic cardiomyopathy. Genotyping showed a heterozygous mis-sense mutation (275G&gt;A) in the cardiac troponin T (TNNT2) gene, which is causally associated with HCM. There have been no previous reports of such extensive, atypical pattern of myocardial scarring despite an otherwise structurally and functionally normal left ventricle in an asymptomatic individual with HCM. This finding has important implications for phenotype screening in HCM."	"Diagnostic yield, interpretation, and clinical utility of mutation screening of sarcomere encoding genes in Danish hypertrophic cardiomyopathy patients and relatives. The American Heart Association (AHA) recommends family screening for hypertrophic cardiomyopathy (HCM). We assessed the outcome of family screening combining clinical evaluation and screening for sarcomere gene mutations in a cohort of 90 Danish HCM patients and their close relatives, in all 451 persons. Index patients were screened for mutations in all coding regions of 10 sarcomere genes (MYH7, MYL3, MYBPC3, TNNI3, TNNT2, TPM1, ACTC, CSRP3, TCAP, and TNNC1) and five exons of TTN. Relatives were screened for presence of minor or major diagnostic criteria for HCM and tracking of DNA variants was performed. In total, 297 adult relatives (&gt;18 years) (51.2%) fulfilled one or more criteria for HCM. A total of 38 HCM-causing mutations were detected in 32 index patients. Six patients carried two disease-associated mutations. Twenty-two mutations have only been identified in the present cohort. The genetic diagnostic yield was almost twice as high in familial HCM (53%) vs. HCM of sporadic or unclear inheritance (19%). The yield was highest in families with an additional history of HCM-related clinical events. In relatives, 29.9% of mutation carriers did not fulfil any clinical diagnostic criterion, and in 37.5% of relatives without a mutation, one or more criteria was fulfilled. A total of 60% of family members had no mutation and could be reassured and further follow-up ceased. Genetic diagnosis may be established in approximately 40% of families with the highest yield in familial HCM with clinical events. Mutation-screening was superior to clinical investigation in identification of individuals not at increased risk, where follow-up is redundant, but should be offered in all families with relatives at risk for developing HCM."	"Adverse events in families with hypertrophic or dilated cardiomyopathy and mutations in the MYBPC3 gene. Mutations in MYBPC3 encoding myosin binding protein C belong to the most frequent causes of hypertrophic cardiomyopathy (HCM) and may also lead to dilated cardiomyopathy (DCM). MYBPC3 mutations initially were considered to cause a benign form of HCM. The aim of this study was to examine the clinical outcome of patients and their relatives with 18 different MYBPC3 mutations. 87 patients with HCM and 71 patients with DCM were screened for MYBPC3 mutations by denaturing gradient gel electrophoresis and sequencing. Close relatives of mutation carriers were genotyped for the respective mutation. Relatives with mutation were then evaluated by echocardiography and magnetic resonance imaging. A detailed family history regarding adverse clinical events was recorded. In 16 HCM (18.4%) and two DCM (2.8%) index patients a mutation was detected. Seven mutations were novel. Mutation carriers exhibited no additional mutations in genes MYH7, TNNT2, TNNI3, ACTC and TPM1. Including relatives of twelve families, a total number of 42 mutation carriers was identified of which eleven (26.2%) had at least one adverse event. Considering the twelve families and six single patients with mutations, 45 individuals with cardiomyopathy and nine with borderline phenotype were identified. Among the 45 patients, 23 (51.1%) suffered from an adverse event. In eleven patients of seven families an unexplained sudden death was reported at the age between 13 and 67 years. Stroke or a transient ischemic attack occurred in six patients of five families. At least one adverse event occurred in eleven of twelve families. MYBPC3 mutations can be associated with cardiac events such as progressive heart failure, stroke and sudden death even at younger age. Therefore, patients with MYBPC3 mutations require thorough clinical risk assessment."	"Characterization of the paracrine effects of human skeletal myoblasts transplanted in infarcted myocardium. The discrepancy between the functional improvements yielded experimentally by skeletal myoblasts (SM) transplanted in infarcted myocardium and the paucity of their long-term engraftment has raised the hypothesis of cell-mediated paracrine mechanisms. We analyzed gene expression and growth factors released by undifferentiated human SM (CD56(+)), myotubes (SM cultured until confluence) and fibroblasts-like cells (CD56(-)). Gene expression revealed up-regulation of pro-angiogenic (PGF), anti-apoptotics (BAG-1, BCL-2), heart development (TNNT2, TNNC1) and extracellular matrix remodelling (MMP-2, MMP-7) genes in SM. In line with the gene expression profile, the analysis of culture supernatants of SM by ELISA identified the release of growth factors involved in angiogenesis (VEGF, PIGF, angiogenin, angiopoietin, HGF and PDGF-BB) as well as proteases involved in matrix remodelling (MMP2, MMP9 and MMP10) and their inhibitors (TIMPs). Culture of smooth muscle cells (SMC), cardiomyocytes (HL-1) and human umbilical vein endothelial cells (HUVECs) with SM-released conditioned media demonstrated an increased proliferation of HUVEC, SMC and cardiomyocytes (p&lt;0.05) and a decrease in apoptosis of cardiomyocytes (p&lt;0.05). Analysis of nude rats transplanted with human SM demonstrated expression of human-specific MMP-2, TNNI3, CNN3, PGF, TNNT2, PAX7, TGF-beta, and IGF-1 1 month after transplant. Our data support the paracrine hypothesis whereby myoblast-secreted factors may contribute to the beneficial effects of myogenic cell transplantation in infarcted myocardium."	"Requirement of vasculogenesis and blood circulation in late stages of liver growth in zebrafish. Early events in vertebrate liver development have been the major focus in previous studies, however, late events of liver organogenesis remain poorly understood. Liver vasculogenesis in vertebrates occurs through the interaction of endoderm-derived liver epithelium and mesoderm-derived endothelial cells (ECs). In zebrafish, although it has been found that ECs are not required for liver budding, how and when the spatio-temporal pattern of liver growth is coordinated with ECs remains to be elucidated. To study the process of liver development and vasculogenesis in vivo, a two-color transgenic zebrafish line Tg(lfabf:dsRed; elaA:EGFP) was generated and named LiPan for liver-specific expression of DsRed RFP and exocrine pancreas-specific expression of GFP. Using the LiPan line, we first followed the dynamic development of liver from live embryos to adult and showed the formation of three distinct yet connected liver lobes during development. The LiPan line was then crossed with Tg(fli1:EGFP)y1 and vascular development in the liver was traced in vivo. Liver vasculogenesis started at 55-58 hpf when ECs first surrounded hepatocytes from the liver bud surface and then invaded the liver to form sinusoids and later the vascular network. Using a novel non-invasive and label-free fluorescence correction spectroscopy, we detected blood circulation in the liver starting at approximately 72 hpf. To analyze the roles of ECs and blood circulation in liver development, both cloche mutants (lacking ECs) and Tnnt2 morphants (no blood circulation) were employed. We found that until 70 hpf liver growth and morphogenesis depended on ECs and nascent sinusoids. After 72 hpf, a functional sinusoidal network was essential for continued liver growth. An absence of blood circulation in Tnnt2 morphants caused defects in liver vasculature and small liver. There are two phases of liver development in zebrafish, budding and growth. In the growth phase, there are three distinct stages: avascular growth between 50-55 hpf, where ECs are not required; endothelium-dependent growth, where ECs or sinusoids are required for liver growth between 55-72 hpf before blood circulation in liver sinusoids; and circulation-dependent growth, where the circulation is essential to maintain vascular network and to support continued liver growth after 72 hpf."	"Targeted disruption of the cardiac troponin T gene causes sarcomere disassembly and defects in heartbeat within the early mouse embryo. Cardiac troponin T (cTnT) is a component of the troponin (Tn) complex in cardiac myocytes, and plays a regulatory role in cardiac muscle contraction by anchoring two other Tn components, troponin I (TnI) and troponin C, to tropomyosin (Tm) on the thin filaments. In order to determine the in vivo function of cTnT, we created a null cTnT allele in the mouse TNNT2 locus. In cTnT-deficient (cTnT(-/-)) cardiac myocytes, the thick and thin filaments and alpha-actinin-positive Z-disk-like structures were not assembled into sarcomere, causing early embryonic lethality due to a lack of heartbeats. TnI was dissociated from Tm in the thin filaments without cTnT. In spite of loss of Tn on the thin filaments, the cTnT(-/-) cardiac myocytes showed regular Ca(2+)-transients. These findings indicate that cTnT plays a critical role in sarcomere assembly during myofibrillogenesis in the embryonic heart, and also indicate that the membrane excitation and intracellular Ca(2+) handling systems develop independently of the contractile system. In contrast, heterozygous cTnT(+/-) mice had a normal life span with no structural and functional abnormalities in their hearts, suggesting that haploinsufficiency could not be a potential cause of cardiomyopathies, known to be associated with a variety of mutations in the TNNT2 locus."	"Cardiac troponin T mutation in familial cardiomyopathy with variable remodeling and restrictive physiology. We identified a unique family with autosomal dominant heart disease variably expressed as restrictive cardiomyopathy (RCM), hypertrophic cardiomyopathy (HCM), and dilated cardiomyopathy (DCM), and sought to identify the molecular defect that triggered divergent remodeling pathways. Polymorphic DNA markers for nine sarcomeric genes for DCM and/or HCM were tested for segregation with disease. Linkage to eight genes was excluded, but a cardiac troponin T (TNNT2) marker cosegregated with the disease phenotype. Sequencing of TNNT2 identified a heterozygous missense mutation resulting in an I79N substitution, inherited by all nine affected family members but by none of the six unaffected relatives. Mutation carriers were diagnosed with RCM (n = 2), non-obstructive HCM (n = 3), DCM (n = 2), mixed cardiomyopathy (n = 1), and mild concentric left ventricular hypertrophy (n = 1). Endomyocardial biopsy in the proband revealed non-specific fibrosis, myocyte hypertrophy, and no myofibrillar disarray. Restrictive Doppler filling patterns, atrial enlargement, and pulmonary hypertension were observed among family members regardless of cardiomyopathy subtype. Mutation of a sarcomeric protein gene can cause RCM, HCM, and DCM within the same family, underscoring the necessity of comprehensive morphological and physiological cardiac assessment in familial cardiomyopathy screening."	"The role of cardiac troponin T quantity and function in cardiac development and dilated cardiomyopathy. Hypertrophic (HCM) and dilated (DCM) cardiomyopathies result from sarcomeric protein mutations, including cardiac troponin T (cTnT, TNNT2). We determined whether TNNT2 mutations cause cardiomyopathies by altering cTnT function or quantity; whether the severity of DCM is related to the ratio of mutant to wildtype cTnT; whether Ca(2+) desensitization occurs in DCM; and whether absence of cTnT impairs early embryonic cardiogenesis. We ablated Tnnt2 to produce heterozygous Tnnt2(+/-) mice, and crossbreeding produced homozygous null Tnnt2(-/-) embryos. We also generated transgenic mice overexpressing wildtype (TG(WT)) or DCM mutant (TG(K210Delta)) Tnnt2. Crossbreeding produced mice lacking one allele of Tnnt2, but carrying wildtype (Tnnt2(+/-)/TG(WT)) or mutant (Tnnt2(+/-)/TG(K210Delta)) transgenes. Tnnt2(+/-) mice relative to wildtype had significantly reduced transcript (0.82+/-0.06[SD] vs. 1.00+/-0.12 arbitrary units; p = 0.025), but not protein (1.01+/-0.20 vs. 1.00+/-0.13 arbitrary units; p = 0.44). Tnnt2(+/-) mice had normal hearts (histology, mass, left ventricular end diastolic diameter [LVEDD], fractional shortening [FS]). Moreover, whereas Tnnt2(+/-)/TG(K210Delta) mice had severe DCM, TG(K210Delta) mice had only mild DCM (FS 18+/-4 vs. 29+/-7%; p&lt;0.01). The difference in severity of DCM may be attributable to a greater ratio of mutant to wildtype Tnnt2 transcript in Tnnt2(+/-)/TG(K210Delta) relative to TG(K210Delta) mice (2.42+/-0.08, p = 0.03). Tnnt2(+/-)/TG(K210Delta) muscle showed Ca(2+) desensitization (pCa(50) = 5.34+/-0.08 vs. 5.58+/-0.03 at sarcomere length 1.9 microm, p&lt;0.01), but no difference in maximum force generation. Day 9.5 Tnnt2(-/-) embryos had normally looped hearts, but thin ventricular walls, large pericardial effusions, noncontractile hearts, and severely disorganized sarcomeres. Absence of one Tnnt2 allele leads to a mild deficit in transcript but not protein, leading to a normal cardiac phenotype. DCM results from abnormal function of a mutant protein, which is associated with myocyte Ca(2+) desensitization. The severity of DCM depends on the ratio of mutant to wildtype Tnnt2 transcript. cTnT is essential for sarcomere formation, but normal embryonic heart looping occurs without contractile activity."	"Mutations in sarcomere protein genes in left ventricular noncompaction. Left ventricular noncompaction constitutes a primary cardiomyopathy characterized by a severely thickened, 2-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses. The genetic basis of this cardiomyopathy is still largely unresolved. We speculated that mutations in sarcomere protein genes known to cause hypertrophic cardiomyopathy and dilated cardiomyopathy may be associated with left ventricular noncompaction. Mutational analysis in a cohort of 63 unrelated adult probands with left ventricular noncompaction and no other congenital heart anomalies was performed by denaturing high-performance liquid chromatography analysis and direct DNA sequencing of 6 genes encoding sarcomere proteins. Heterozygous mutations were identified in 11 of 63 samples in genes encoding beta-myosin heavy chain (MYH7), alpha-cardiac actin (ACTC), and cardiac troponin T (TNNT2). Nine distinct mutations, 7 of them in MYH7, 1 in ACTC, and 1 in TNNT2, were found. Clinical evaluations demonstrated familial disease in 6 of 11 probands with sarcomere gene mutations. MYH7 mutations segregated with the disease in 4 autosomal dominant LVNC kindreds. Six of the MYH7 mutations were novel, and 1 encodes a splice-site mutation, a relatively unique finding for MYH7 mutations. Modified residues in beta-myosin heavy chain were located mainly within the ATP binding site. We conclude that left ventricular noncompaction is within the diverse spectrum of cardiac morphologies triggered by sarcomere protein gene defects. Our findings support the hypothesis that there is a shared molecular etiology of different cardiomyopathic phenotypes."	"Familial and sporadic hypertrophic myopathy: differences and similarities in a genotyped population. A long follow-up study. Hypertrophic cardiomyopathy (HCM) is a genetic disease associated with mutations in genes encoding cardiac sarcomere proteins. A mutation is identified in two-thirds of cases, and more frequently in familial forms. Doubts remain concerning the true identity of the sporadic form. To compare, in a genotyped population, the phenotypic expression of the disease over time in patients with familial and sporadic HCM. 79 patients with HCM, aged 39 +/- 17.8 years at diagnosis, were followed for 12 +/- 9.5 (1-30) years and divided into two groups: G1 (familial)--68 patients (24 unrelated index patients, 44 relatives), follow-up time (FUP) 12 +/- 9.8 (1-30) years; G2 (sporadic)1 index patients (no phenotypic disease in first-degree relatives), FUP 10.8 +/- 8 (2-24) years. Fabry disease was excluded in G2. The two groups were compared regarding clinical, ECG and echocardiographic (echo) features at diagnosis and after FUP. Five sarcomere genes (MYH7, MYBPC3, TNNT2, MYL2 and TNNI3) were screened for mutations by direct sequencing, after PCR amplification with intronic sets of oligonucleotide primers designed according to the published genomic sequence of the genes. A) Thirteen different mutations (in 3 genes) were identified in 14 index patients in G1; only in one patient in G2 was a mutation found. B) The two groups differed clinically in age at diagnosis (G1: 37.18 (4-79) years; G2: 51 +/- 14 (19-67) years; p = 0.02), and family history of sudden cardiac death (G1: 12/24 families; G2: 1/11 families; p = 0.04). Age, gender, FUP, symptoms, need for medical treatment, cardiovascular (CV) hospitalization and mortality (CV or any cause) were similar. C) ECG patterns did not differ, although significant (but similar) changes occurred in 45% (G1) and 36% (G2) of patients (p = 0.75). These changes were in the same direction, with a trend in both groups toward the development of atrial fibrillation and/or advanced conduction disease. D) Echo features (only considered in adults) were similar despite significant changes during FUP (in 68% of G1, and 82% of G2; p = 0.48). These changes also followed the same tendency: progression to a more diffuse pattern of ventricular hypertrophy (G1: 52%; G2: 73%; p = 0.33) and development of left atrial dilatation (G1: 37%; G2: 45%; p = 0.52). The similar phenotypic expression and behavior over time in familial and sporadic forms of HCM strongly indicate that the disease is one and the same. Differences in genetic findings, age at diagnosis and family history of sudden death suggest that sporadic forms may be caused by low penetrance de novo mutations in sarcomeric genes other than those associated with familial disease."	"Molecular defects associated with antithrombin deficiency and dilated cardiomyopathy in a Japanese patient. The molecular basis for the antithrombin (AT) deficiency and dilated cardiomyopathy (DCM) combined in a Japanese patient was investigated. We analyzed candidate genes -SERPINC1 for AT deficiency, and TNNT2 and LMNA for DCM. In addition, we examined the characteristics of recombinant mutant AT and evaluated the LMNA mutation associated with DCM by molecular modeling. Genome sequencing of SERPINC1 revealed a C-to-A transversion in exon 6 that resulted in a p.Pro439Thr mutation of AT, which was previously reported as a pleiotropic effect type II AT deficiency (AT Budapest5). However, expression experiments with recombinant 439Thr-AT showed normal heparin affinity, slightly reduced secretion, and low specific activity, which suggested that this mutation exhibits an intermediate feature of type I and type II AT deficiencies. In a survey of gene abnormalities causing DCM, we found no causative gene defect in TNNT2; however, we identified a G-to-C transversion in LMNA that resulted in a novel p.Asp357His mutation in lamin A/C. This acidic-to-basic residue substitution might have impaired the head-to-tail association of two lamin dimers leading to DCM. Further, we identified both SERPINC1 and LMNA mutations in the patient's daughter and son, both of whom had AT deficiency. These data suggested that a p.Pro439Thr mutation in SERPINC1 and a p.Asp357His mutation in LMNA might have cosegregated in this family, associated with AT deficiency and DCM, respectively. We identified missense mutations in SERPINC1 and LMNA genes to be associated with AT deficiency and DCM, respectively, which might have cosegregated in the family of the patient."	"Idiopathic restrictive cardiomyopathy in children is caused by mutations in cardiac sarcomere protein genes. Restrictive cardiomyopathy (RCM) is rare in childhood, but has a grave prognosis. The cause of disease in most cases is unknown. To determine the prevalence of sarcomere protein gene mutations in children with idiopathic RCM. Twelve patients (9 female, mean age 5.1 years) with idiopathic RCM referred between 1991 and August 2006 underwent detailed clinical and genetic evaluation. Nine had received cardiac transplants at the time of the study. The entire coding sequences of the genes encoding eight cardiac sarcomere proteins and desmin were screened for mutations. Familial evaluation was performed on first-degree relatives. Four patients (33%) had a family history of cardiomyopathy: RCM (n = 2); dilated cardiomyopathy (n = 1) and left ventricular non-compaction (n = 1). Sarcomere protein gene mutations were identified in four patients (33%): 2 in the cardiac troponin I gene (TNNI3) and 1 each in the troponin T (TNNT2) and alpha-cardiac actin (ACTC) genes. Two were de novo mutations and 3 were new mutations. All mutations occurred in functionally important and conserved regions of the genes. Sarcomere protein gene mutations are an important cause of idiopathic RCM in childhood. We describe the first mutation in ACTC in familial RCM. The identification of RCM in a child should prompt consideration of sarcomere protein disease as a possible cause and warrants clinical evaluation of the family."	"A DNA resequencing array for pathogenic mutation detection in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a heterogeneous autosomal dominant cardiac disorder with a prevalence of 1 in 500. Over 450 different pathogenic mutations in at least 16 genes have been identified so far. The large allelic and genetic heterogeneity of HCM requires high-throughput, rapid, and affordable mutation detection technologies to efficiently integrate molecular screening into clinical practice. We developed a custom DNA resequencing array that contains both strands of all coding exons (160), splice-site junctions, and 5'UTR regions of 12 genes that have been clearly implicated in HCM (MYH7, MYBPC3, TNNT2, TPM1, TNNI3, MYL3, MYL2, CSRP3, PLN, ACTC, TNNC1, and PRKAG2). We analyzed a first series of 38 unrelated patients with HCM (17 familial, 21 sporadic). A total of 953,306 bp across the 38 patients were sequenced with a mean nucleotide call rate of 96.92% (range: 93-99.9%). Pathogenic mutations (single nucleotide substitutions) in MYH7, MYBPC3, TNNI3, and MYL3 (six known and six novel) were identified in 60% (10/17) of familial HCM and 10% of sporadic cases (2/21). The high-throughput HCM resequencing array is the most rapid and cost-effective tool for molecular testing of HCM to date; it thus has considerable potential in diagnostic and predictive testing, and prognostic stratification."	"Shared genetic causes of cardiac hypertrophy in children and adults. The childhood onset of idiopathic cardiac hypertrophy that occurs without a family history of cardiomyopathy can portend a poor prognosis. Despite morphologic similarities to genetic cardiomyopathies of adulthood, the contribution of genetics to childhood-onset hypertrophy is unknown. We assessed the family and medical histories of 84 children (63 boys and 21 girls) with idiopathic cardiac hypertrophy diagnosed before 15 years of age (mean [+/-SD] age, 6.99+/-6.12 years). We sequenced eight genes: MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3, MYL2, and ACTC. These genes encode sarcomere proteins that, when mutated, cause adult-onset cardiomyopathies. We also sequenced PRKAG2 and LAMP2, which encode metabolic proteins; mutations in these genes can cause early-onset ventricular hypertrophy. We identified mutations in 25 of 51 affected children without family histories of cardiomyopathy and in 21 of 33 affected children with familial cardiomyopathy. Among 11 of the 25 children with presumed sporadic disease, 4 carried new mutations and 7 inherited the mutations. Mutations occurred predominantly (in &gt;75% of the children) in MYH7 and MYBPC3; significantly more MYBPC3 missense mutations were detected than occur in adult-onset cardiomyopathy (P&lt;0.005). Neither hypertrophic severity nor contractile function correlated with familial or genetic status. Cardiac transplantation and sudden death were more prevalent among mutation-positive than among mutation-negative children; implantable cardioverter-defibrillators were more frequent (P=0.007) in children with family histories that were positive for the mutation. Genetic causes account for about half of presumed sporadic cases and nearly two thirds of familial cases of childhood-onset hypertrophy. Childhood-onset hypertrophy should prompt genetic analyses and family evaluations."	"Array-based resequencing assay for mutations causing hypertrophic cardiomyopathy. Dissecting the complex genetic basis of hypertrophic cardiomyopathy (HCM) may be key to both better understanding and optimally managing this most prevalent genetic cardiovascular disease. An array-based resequencing (ABR) assay was developed to facilitate genetic testing in HCM. An Affymetrix resequencing array and a single long-range PCR protocol were developed to cover the 3 most commonly affected genes in HCM, MYH7 (myosin, heavy chain 7, cardiac muscle, beta), MYBPC3 (myosin binding protein C, cardiac), and TNNT2 [troponin T type 2 (cardiac)]. The assay detected the underlying point mutation in 23 of 24 reference samples and provided pointers toward identifying a G insertion and a 3-bp deletion. The comparability of array-based assay results to conventional capillary sequencing was &gt; or =99.9%. Both techniques detected 1 heterozygous variant that was missed by the other method. The data provide evidence that ABR can substantially reduce the high workload previously associated with a genetic test for HCM. Therefore, the HCM array could facilitate large-scale studies aimed at broadening the understanding of the genetic and phenotypic diversity of HCM and related cardiomyopathies."	"Altered expression of muscle- and cytoskeleton-related genes in a rat strain with inherited cryptorchidism. Development of the fetal gubernaculum is a prerequisite for testicular descent and dependent on insulin-like 3 and androgen, but knowledge of downstream effectors is limited. We analyzed transcript profiles in gubernaculum and testis to address changes occurring during normal and abnormal testicular descent in Long Evans wild-type (wt) and cryptorchid (orl) fetuses. Total RNA from male wt and orl gubernacula (gestational days [GD]18-20), wt female gubernacula (GD18), and testis (GD17 and 19) was hybridized to Affymetrix GeneChips. Statistical analysis of temporal, gender, and strain-specific differences in gene expression was performed with the use of linear models analysis with empirical Bayes statistics and analysis of variance (gubernaculum) and linear analysis (testis). Overrepresented common gene ontology functional categories and pathways were identified in groups of differentially expressed genes with the Database for Annotation, Visualization, and Integrated Discovery. Transcript profiles were dynamic in wt males between GD18-19 and GD20, comparatively static in orl GD18-20 gubernaculum, and similar in wt and orl testis. Functional analysis of differentially expressed genes in wt and orl gubernaculum identified categories related to metabolism, cellular biogenesis, small GTPase-mediated signal transduction, cytoskeleton, muscle development, and insulin signaling. Genes involved in androgen receptor signaling, regulated by androgens, or both were overrepresented in differentially expressed gubernaculum and testis gene groups. Quantitative reverse transcription polymerase chain reaction (RT-PCR) confirmed differential expression of genes related to muscle development, including Myog, Tnnt2, Fst, Igf1, Igfbp5, Id2, and Msx1. These data suggest that the orl mutation results in a primary gubernacular defect that affects muscle development and cytoskeletal function and might alter androgen-regulated pathways."	"Troponin T and beta-myosin mutations have distinct cardiac functional effects in hypertrophic cardiomyopathy patients without hypertrophy. The validity of genotype:phenotype correlation studies in human hypertrophic cardiomyopathy (HCM) has recently been questioned, yet animal models and in vitro studies suggest distinct effects for different mutations. The aims of this study were to investigate whether distinct HCM-mutations have different consequences for cardiac structure and function in the absence of the confounding effects of hypertrophy. Individuals aged 20-65 belonging to 21 R92W(TNNT2), R403W(MYH7), or A797T(MYH7) mutation-bearing families were investigated with 2D, M-mode, and Doppler echocardiography. Cardiac structural and functional parameters were compared between prehypertrophic mutation-carriers and their non-carrier family members, with concomitant adjustment for appropriate covariates. Findings were evaluated against existing animal and in vitro functional data. The distinct functional effect of the R92W(TNNT) mutation was a relative increase in systolic functional parameters, that of the A797T(MYH7) mutation was reduced diastolic function, while the R403W(MYH7) mutation reduced both systolic and diastolic function. The observed early effects of the R92W(TNNT2) mutation mechanistically fit with prolonged force-transients precipitated by increased Ca(2+) sensitivity of the thin filament, and that of the MYH7 mutations with local ATP depletion. Evaluation of the impact of the mutations on cardiac structure and function in prehypertrophic mutation-carriers, relative to the baseline norm provided by their non-carrier family members, best recapitulated existing animal and in vitro functional data, while inclusion of mutation-carriers with hypertrophy obscured such findings. The results prompt speculation that timely treatment aimed at ameliorating Ca(2+) sensitivity for R92W(TNNT2)-carriers, and energy depletion for MYH7 mutation-carriers, may offer a plausible approach for preventing progression from a preclinical into a decompensated state."	"Evaluation of 15 candidate genes for dilated cardiomyopathy in the Newfoundland dog. Dilated cardiomyopathy (DCM) is a disease of the myocardium, which causes heart failure and premature death. It has been described in humans and several domestic animals. In the Newfoundland dog, DCM is an autosomal dominant disease with late onset and reduced penetrance. We analyzed 15 candidate genes for their involvement in DCM in the Newfoundland dog. Polymorphic microsatellite markers and single Nucleotide Polymorphisms were genotyped in 4 families of Newfoundland dogs segregating dilated cardiomyopathy for the genes encoding alpha-cardiac actin (ACTC), caveolin (CAVI), cysteine-rich protein 3 (CSRP3), LIM-domain binding factor 3 (LDB3), desmin (DES), lamin A/C (LMNA), myosin heavy polypeptide 7 (MYH7), delta-sarcoglycan (SGCD), troponin I (TNNTI3), troponin T (TNNT2), alpha-tropomyosin (TPMI), titin (TTN) and vinculin (VCL). A Logarithm of the odds (LOD) score of less than -2.0 in 2-point linkage analysis indicated exclusion of all but 2 genes, encoding CSRP3 and DES. A (LOD) score between -1.5 and -2.0 for CSRP3 and DES makes these genes unlikely causes of DCM in this dog breed. For the phospholamban (PLN) and titin cap (TTN) genes, a direct mutation screening approach was used. DNA sequence analysis of all exons showed no evidence that these genes are involved in DCM in the Newfoundland dog."	"First steps in establishing a developmental toxicity test method based on human embryonic stem cells. The use of embryonic stem cells is currently the most promising approach to assess developmental toxicity in vitro. In addition, the possibility of using human embryonic stem (hES) cells will increase safety of consumers and patients as false classification of substances due to inter-species variations can be avoided. One validated test based on murine embryonic stem cells, the embryonic stem cell test (EST), consists of following endpoints: IC(50) values of fibroblasts and embryonic stem cells as well as the inhibition of differentiation of mES cells into cardiomyocytes. As a follow up of its successful validation study we established a cytotoxicity assay based on hES cells and human fibroblasts employing two developmental toxicants: 5-fluorouracil (5-FU) and all-trans retinoic acid (RA). The results were compared to historical data from the EST. For 5-FU, no significant differences were obtained between the different cell lines. However, for RA, both test systems produced higher IC(50) values for the fibroblasts than for the stem cells, which is a well-known effect of developmental toxicants. Moreover, the reliability and relevance of several marker genes as possible toxicological endpoints were tested. During early differentiation Oct-4, hTert and Dusp6 showed the most reliable results. Brachyury and GATA-4 were found to be best suited to monitor cardiac differentiation. The late cardiac marker gene TNNT2 demonstrated significant results until day 18. Therefore, these marker genes have the highest potential to serve as endpoints for a developmental toxicity test."	"Long-term follow-up of R403WMYH7 and R92WTNNT2 HCM families: mutations determine left ventricular dimensions but not wall thickness during disease progression. The clinical profile and prognosis of patients with hypertrophic cardiomyopathy, a primary cardiac muscle disease caused mostly by mutations in sarcomeric protein-encoding genes, have been linked to particular disease-causing mutations in the past. However, such associations are often based on cross-sectional observations, as longitudinal studies of the progression of the disease in genotypically defined patients are sparse. Most importantly, the relative contribution of age, gender and genetic cause to disease profile and progression has not yet been reported, and the question remains whether one or more of these factors could mask the effect of the other(s). We previously described cross-sectional family studies of two hypertrophic cardiomyopathy (HCM)-causing mutations, R92W(TNNT2) and R403W(MYH7), both associated with minimal hypertrophy, but with widely different life expectancies. We re-investigated 22 and 26 R92W(TNNT2) and R403W(MYH7) mutation carriers in these and additional South African R92W(TNNT2) families after a mean 11.08 +/- 2.79 years, and compared the influence of the two mutations, in the context of age and gender, on disease progression. We demonstrated a positive correlation between age and interventricular septal thickness for both mutations, with more than a third of all mutation carriers developing clinically recognised hypertrophy only after the age of 35 years. This period of hypertrophically silent HCM also coincided with the years in which most sudden cardiac deaths occurred, particularly in male R92W(TNNT2) carriers. Statistical analyses indicated that the particular mutation was the strongest determinant of left ventricular remodelling; particularly, LVESD increased and EF reduction was noted in the majority of R403W(MYH7) carriers, which may require clinical follow-up over the longer term. Statistical modelling of follow-up data suggests that an interplay between unidentified, possibly gender-associated factors, and the causal mutation are the determinants of eventual cardiac function and survival, but not of the extent of hypertrophy, and emphasises the need for long-term follow-up even in individuals with apparently mild disease."	"[Family hypertrophic cardiomyopathy caused by a 14035c &gt; t mutation in cardiac troponin T gene]. To study the disease-causing gene mutation in Chinese patients with familial hypertrophic cardiomyopathy (FHC) and to analyze the correlation between the genotype and the phenotype. Peripheral blood samples were collected from 40 members from a family affected with FHC, and 120 healthy volunteers. PCR was performed to analyze the exons and flanking introns of the cardiac troponin T gene (TNNT2), beta-myosin heavy chain gene (MYH7), and myosin-binding protein C gene (MYBPC3) and the products were sequenced. The clinical data including symptom, physical examination, echocardiography and electrocardiography were collected. A 14035c &gt; t mutation, which causes a missense mutation (R130C) in exon 10 of TNNT2 gene were identified in 4 family members, including the proband, female, aged 53, with the onset at the age of 30. The 4 persons with the 14035c &gt; t mutation, all FHC patients, presented left ventricular dysfunction with a penetrance of 100%. Two of the patients died of sudden cardiac death during follow-up. No mutation was identified in the MYH7 and MYBPC3 genes. The 14035c &gt; t mutation of TNNT2 gene is the causal mutation of FHC which is associated with malignant phenotype with a penetrance of 100%. It is a reasonable procedure in HCM patients with malignant phenotype to screen mutation in the TNNT2 gene."	"Myozenin 2 is a novel gene for human hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic disorder caused by mutations in sarcomeric proteins (excluding phenocopy). The causal genes in approximately one-third of the cases remain unknown. We identified a family comprised of 6 clinically affected members. The phenotype was characterized by early onset of symptoms, pronounced cardiac hypertrophy, and cardiac arrhythmias. We excluded MYH7, MYBPC3, TNNT2, and ACTC1 as the causal gene either by direct sequencing or by haplotype analysis. To map the putative candidate sarcomeric gene, we perforbold locus-specific haplotyping to detect cosegregation of the locus haplotype with the phenotype, followed by mutation screening. We genotyped 5 short-tandem-repeat markers that spanned a 4.4-centimorgan region on 4q26-q27 locus and encompassed myozenin 2 (MYOZ2), a Z-disk protein. The maximum logarithm of odds score was 2.03 (P=0.005). All affected members shared a common haplotype, implicating MYOZ2 as the causal gene. To detect the causal mutation, we sequenced all exons and exon-intron boundaries of MYOZ2 in 10 family members and identified a T--&gt;C missense mutation corresponding to S48P substitution, which cosegregated with inheritance of HCM (N=6). It was absent in 4 clinically normal family members and in 658 additional normal individuals. To determine frequency of the MYOZ2 mutations in HCM, we sequenced MYOZ2 in 516 HCM probands and detected another missense mutation (I246M). It was absent in 2 normal family members and 517 controls. Both mutations affect highly conserved amino acids. We conclude MYOZ2 is a novel causal gene for human HCM."	"[Comparative study of gene mutation between Chinese patients with familial and sporadic hypertrophic cardiomyopathy]. To compare the gene mutation between Chinese patients with familial and sporadic hypertrophic cardiomyopathy (HCM). Peripheral blood samples were collected from 36 patients with familial HCM (FHCM) and 50 patients with sporadic HCM (SHCM), all un-related and from different provinces of China. PCR was used to amplify the 26 protein-coding axons of beta-myosin heavy chain (MYH7), 16 exons for cardiac troponin T (TNNT2), and 38 exons for cardiac myosin-binding protein C (MYBPC3). The amplified products were sequenced and compared with the standard sequence in the genBank so as to determine the potential mutation sites. (1) 13 of the 36 FHCM patients (36.1%) harbored 3 different mutations in MYH7 gene: Arg663His in exon18, Glu924Lys in exon 23, and Ile736Thr in exon 20. Of the 50 SHCM patients, only 1 (2%) harbored MYH7 gene missence mutation: Ile736Thr located in exon 20. (2) TNNT2 was not identified in all SHCM patients and FHCM patients. (3) MYBPC3 was not identified in all SHCM patients. Four FHCM patients harbored 2 different mutations: Arg502Trp in exon 18 and Arg346fs in exon 13 respectively. MYH7 and MYBPC3 may be the dominant disease-causing genes in Chinese familial HCM patients; however the mutation rate of MYH7 and MYBPC3 genes is significantly lower in the SHCM patients compared with the FHCM patients. TNNT2 seems not the predominant disease-causing gene in all Chinese patients with HCM."	"Prevalence and spectrum of mutations in the sarcomeric troponin T and I genes in a cohort of Spanish cardiac hypertrophy patients. We sequenced the coding exons of the cardiac troponins T (TNNT2) and I (TNNI3) genes in 115 Spanish HCM-patients (32% with a family history of the disease). Only two (2%) had mutations in the TNNT2 (Arg278&gt;Cys and Arg92&gt;Lys). These mutations were associated with variable clinical outcomes. No patient had TNNI3-mutation. We also genotyped these patients and 320 healthy controls for a 5 bp insertion/deletion (I/D) polymorphism in intron 3 of TNNT2. DD-homozygotes for the 5 bp I/D polymorphism were significantly more frequent among the patients (OR=1.83, 95% CI=2.10-5.16)."	"A molecular screening strategy based on beta-myosin heavy chain, cardiac myosin binding protein C and troponin T genes in Italian patients with hypertrophic cardiomyopathy. Mutations causing hypertrophic cardiomyopathy (HCM) have been described in nine different genes of the sarcomere. Three genes account for most known mutations: beta-myosin heavy chain (MYH7), cardiac myosin binding protein C (MYBPC3) and cardiac troponin T (TNNT2). Their prevalence in Italian HCM patients is unknown. Thus, we prospectively assessed a molecular screening strategy of these three genes in a consecutive population with HCM from two Italian centres. Comprehensive screening of MYBPC3, MYH7 and TNNT2 was performed in 88 unrelated HCM patients by denaturing high-performance liquid chromatography and automatic sequencing. We identified 32 mutations in 50 patients (57%); 16 were novel. The prevalence rates for MYBPC3, MYH7 and TNNT2 were 32%, 17% and 2%, respectively. MYBPC3 mutations were 18, including two frameshift, five splice-site and two nonsense. All were 'private' except insC1065 and R502Q, present in three and two patients, respectively. Moreover, E258K was found in 14% of patients, suggesting a founder effect. MYH7 mutations were 12, all missense; seven were novel. In TNNT2, only two mutations were found. In addition, five patients had a complex genotype [i.e. carried a double MYBPC3 mutation (n = 2), or were double heterozygous for mutations in MYBPC3 and MYH7 (n = 3)]. The first comprehensive evaluation of MYBPC3, MYH7 and TNNT2 in an Italian HCM population allowed a genetic diagnosis in 57% of the patients. These data support a combined analysis of the three major sarcomeric genes as a rational and cost-effective initial approach to the molecular screening of HCM."	"Single-gene mutations and increased left ventricular wall thickness in the community: the Framingham Heart Study. Mutations in sarcomere protein, PRKAG2, LAMP2, alpha-galactosidase A (GLA), and several mitochondrial genes can cause rare familial cardiomyopathies, but their contribution to increased left ventricular wall thickness (LVWT) in the community is unknown. We studied 1862 unrelated participants (52% women; age, 59+/-9 years) from the community-based Framingham Heart Study who had echocardiograms and provided DNA samples but did not have severe hypertension, aortic prosthesis, or significant aortic stenosis. Eight sarcomere protein genes, 3 storage cardiomyopathy-causing genes, and 27 mitochondrial genes were sequenced in unrelated individuals with increased LVWT (maximum LVWT &gt;13 mm). Fifty eligible participants (9 women) had unexplained increased LVWT. We detected 8 mutations in 9 individuals (2 women); 7 mutations in 5 sarcomere protein genes (MYH7, MYBPC3, TNNT2, TNNI3, MYL3), and 1 GLA mutation. In individuals with increased LVWT, participants with sarcomere protein and storage mutations were clinically indistinguishable from those without mutations. In a community-based cohort, about 3% of eligible participants had increased LVWT, of whom 18% had sarcomere protein or lipid storage gene mutations. Increased LVWT in the community is a very heterogeneous condition, which sometimes may arise from single-gene variants in one of a number of genes."	"[Analysis of MYH7, MYBPC3 and TNNT2 gene mutations in 10 Chinese pedigrees with familial hypertrophic cardiomyopathy and the correlation between genotype and phenotype]. The aim of this study was to screen the disease-causing gene mutations and investigate the genotype-phenotype correlation in 10 Chinese pedigrees with familial hypertrophic cardiomyopathy (HCM). There are 91 family members from these 10 pedigrees and 5 members were normal mutated carriers, 23 members were HCM patients (14 male) aged from 1.5 to 73 years old. The functional regions of myosin heavy chain gene (MYH7), cardiac myosin-binding protein C (MYBPC3) and cardiac troponin T gene (TNNT2) were screened with PCR and direct sequencing technique. Clinical information from all patients was also evaluated in regard to the genotype. Mutations were found in 5 out of 10 pedigrees. Mutations in MYH7 (Arg663His, Glu924Lys and Ile736Thr) were found in 3 pedigrees and 3 patients from these pedigrees suffered sudden death at age 20-48 years old during sport. Mutations in MYBPC3 were found in 2 pedigrees, 1 with complex mutation (Arg502Trp and splicing mutation IVS27 + 12C &gt; T) and 1 with novel frame shift mutation (Gly347fs) and the latter pedigree has sudden death history. No mutation was identified in TNNT2. Although the Han Chinese is a relatively homogeneous ethnic group, different HCM gene mutations were responsible for familiar HCM suggesting the heterogeneity nature of the disease-causing genes and HCM MYH7 mutations are associated with a higher risk of sudden death in this cohort. Furthermore, identical mutation might result in different phenotypes suggesting that multiple factors might be involved in the pathogenesis of familiar HCM."	"Hypertrophic cardiomyopathy--molecular genetic analysis of exons 9 and 11 of the TNNT2 gene in Czech patients. Our research is a pilot study that specializes in the molecular genetic investigation of the TNNT2 gene in Czech patients with HCM/FHC disease. This study was initiated with exons 9 and 11 of TNNT2 because of their crucial role in the binding ability of cardiac troponin T to alpha-tropomyosin, and continued with analyses in other regions of the gene. Hundred and eighty-one Czech probands with HCM/FHC were enrolled in this study. The study group consisted of 24 families with FHC and probands without FHC history but with HCM diagnosis. The clinical diagnosis was based on echocardiography. DNA was isolated from peripheral blood lymphocytes and subsequently analyzed by the polymerase chain reaction (PCR), followed by DNA sequencing analyses, which were cross-sequenced. The DeltaGlu160 mutation was observed in a sequence of the TNNT2 gene in a patient with the severe form of hypertrophic cardiomyopathy. No sequence alteration was found in exons 9 and 11 of the TNNT2 gene found in the rest of the DNA samples. The DeltaGlu160 mutation was observed in patients with severe forms of hypertrophic cardiomyopathy. This region is responsible for binding troponin T to alpha-tropomyosin. This mutation may lead to functional and structural effects on the troponin T protein. Mutations in this region are reported relatively rarely and therefore it was unique to observe the DeltaGlu160 mutation in our study."	"Differential gene expression in the developing mouse ureter. In many instances, kidney dysgenesis results as a secondary consequence to defects in the development of the ureter. Through the use of mouse genetics a number of genes associated with such malformations have been identified, however, the cause of many other abnormalities remain unknown. In order to identify novel genes involved in ureter development we compared gene expression in embryonic day (E) 12.5, E15.5 and postnatal day (P) 75 ureters using the Compugen mouse long oligo microarrays. A total of 248 genes were dynamically upregulated and 208 downregulated between E12.5 and P75. At E12.5, when the mouse ureter is comprised of a simple cuboidal epithelium surrounded by ureteric mesenchyme, genes previously reported to be expressed in the ureteric mesenchyme, foxC1 and foxC2 were upregulated. By E15.5 the epithelial layer develops into urothelium, impermeable to urine, and smooth muscle develops for the peristaltic movement of urine towards the bladder. The development of these two cell types coincided with the upregulation of UPIIIa, RAB27b and PPARgamma reported to be expressed in the urothelium, and several muscle genes, Acta1, Tnnt2, Myocd, and Tpm2. In situ hybridization identified several novel genes with spatial expression within the smooth muscle, Acta1; ureteric mesenchyme and smooth muscle, Thbs2 and Col5a2; and urothelium, Kcnj8 and Adh1. This study marks the first known report defining global gene expression of the developing mouse ureter and will provide insight into the molecular mechanisms underlying kidney and lower urinary tract malformations."	"Characteristics of the beta myosin heavy chain gene Ala26Val mutation in a Chinese family with hypertrophic cardiomyopathy. Genotype-phenotype studies have suggested that some mutations of genes encoding various components of the cardiac sarcomere cause hypertrophic cardiomyopathy (HCM) and are associated with the prognosis of patients with HCM. The aims of this study were to investigate the gene mutations of exons in the cardiac beta myosin heavy chain (MYH7) gene, the troponin T (TNNT2) gene, and the brain natriuretic peptide (BNP) gene, as well as to assess the effect of these mutations on the clinical features of Chinese patients with HCM. Five unrelated Chinese families with HCM were studied. Exons 3 and 18 in the MYH7 gene, exon 9 in the TNNT2 gene, and all three exons in the BNP gene were screened with the polymerase chain reaction (PCR) for genomic DNA amplification. Further study included purification of PCR products and direct sequencing of PCR fragments by fluorescent end labeling. A C-to-T transition in codon 26 of exon 3 in the MYH7 gene was found in one family (including four patients and five carriers), resulting in an amino acid substitution of valine (Val) for alanine (Ala). The Ala26Val mutation was of incomplete dominance (penetrance 44%). This mutation was not seen in the other four families or in the control group. Moreover, the association between the gene mutations of exon 18 in MYH7, of exon 9 of TNNT2, and of all three exons in BNP and HCM was not found in the populations we studied. The missense mutation Ala26Val found in this one Chinese family was associated with a mild phenotype of HCM. The genetic and phenotypic heterogeneity of HCM exists in the Chinese population. It suggests that genetic and environmental factors may be involved in the pathogenesis of HCM."	"A gene locus for progressive familial heart block type II (PFHBII) maps to chromosome 1q32.2-q32.3. Cardiac conduction defects that are associated with dilated cardiomyopathy (DCM) are generally considered to be sporadic clinical entities, although familial forms of disorders with these clinical features have been identified in a number of families in different countries. An autosomal dominant cardiac disorder characterised by conduction abnormalities and DCM, termed progressive familial heart block type II (PFHBII) (OMIM 140400), has been described in a South African Caucasian family of Northern European descent. Known candidate loci for isolated conduction disorders, isolated DCM and conduction disorders complicated by DCM were excluded from disease causation in this family by linkage analysis, with the exception of the DCM-associated (CMD1D) locus on chromosome 1q32, where a maximum multipoint lod score of 3.7 in the interval between D1S3753 and D1S414, was generated. This region encompassed the troponin T gene (TNNT2), however, genetic fine mapping and haplotype analysis excluded TNNT2 as cause of PFHBII and placed the disease-causative gene within a 3.9 cM (2.85 Mb) interval, flanked by D1S70 and D1S505. Analysis of KCNH1, KIAA0205, LAMB3 and PPP2R5A, which map within the critical interval, indicated that the PFHBII-causative mutation does not lie within the coding regions or splice junctions of these plausible candidate genes. The data indicate the existence of a novel locus involved in the pathogenesis of cardiac conduction abnormalities and DCM."	"Transgenic mice expressing CUG-BP1 reproduce splicing mis-regulation observed in myotonic dystrophy. Myotonic dystrophy type I (DM1) is an RNA-mediated disease caused by a non-coding CTG repeat expansion. A key feature of the RNA-mediated pathogenesis model for DM is the disrupted splicing of specific pre-mRNA targets. A link has been established between splicing regulation by CUG-BP1, a member of the CELF family of proteins, and DM1 pathogenesis. To determine whether increased CUG-BP1 function was sufficient to model DM, transgenic mice overexpressing CUG-BP1 (MCKCUG-BP1) in heart and skeletal muscle, two tissues affected in DM1, were generated. Histological and electron microscopic analyses of skeletal muscle reveal common pathological features with DM tissues: chains of central nuclei, degenerating fibers and centralized NADH reactivity. MCKCUG-BP1 mice have disrupted splicing of three CELF target pre-mRNAs, cardiac troponin T (Tnnt2), myotubularin-related 1 gene (Mtmr1) and the muscle-specific chloride channel (Clcn1), consistent with that observed in DM heart and skeletal muscle. The results are consistent with a mechanism for DM pathogenesis in which expanded repeats result in increased CUG-BP1 activity and/or other CELF family members and have trans-dominant effects on specific pre-mRNA targets."	"Mutation screening in dilated cardiomyopathy: prominent role of the beta myosin heavy chain gene. Familial dilated cardiomyopathy (FDCM) is associated with mutations in more than 10 genes, but genes mutation frequencies and associated clinical features remain largely unknown. Here, we performed a mutation analysis of four genes involved in FDCM in a population of idiopathic DCM. A SSCP and sequencing mutation screening of all the exons coding for beta myosin heavy chain (MYH7 gene), cardiac T troponin (TNNT2 gene), phospholamban (PLN gene), and the cardio-specific exon of metavinculin (VCL gene) were performed in 96 independent patients (54 familial and 42 sporadic). It led to the identification of eight heterozygous mutations, seven new ones in MYH7, and the already described R141W mutation in TNNT2. MYH7 mutations (in five familial and two sporadic cases) substitute residues located either in the head (I201T, T412N, A550V) or tail domains (T1019N, R1193S, E1426K, R1634S) of the protein. DCM was not associated with skeletal myopathy or conduction defects in any patients. Contrasting clinical features were observed between MYH7 and TNNT2 mutations carriers. In MYH7 vs. TNNT2, mean age at diagnosis was late (P&lt;0.03), penetrance was incomplete in adults (56 vs. 100%), and mean age at major cardiac event was higher (P&lt;0.04). We have identified seven mutations in MYH7, one in TNNT2, and none in PLN or in the VCL cardio-specific exon. MYH7 appears as the most frequently mutated gene in our FDCM population (approximately 10%), and mutation carriers present with delayed onset, in contrast to TNNT2."	"Mutations profile in Chinese patients with hypertrophic cardiomyopathy. There are more than 1 million patients with hypertrophic cardiomyopathy (HCM) in China, but the genetic basis is presently unknown. We investigated 100 independent patients with HCM (proband 51, sporadic 49) by sequencing the three most frequent HCM-causing genes (MYH7, MYBPC3, TNNT2). Thirty-four patients (34%) carried 25 types of mutations in the selected genes, most (14/25) were newly identified. MYH7 and MYBPC3 accounted for 41% and 18% of the familial HCM, respectively. TNNT2 mutations only caused 2% of the familial HCM. These results suggested that MYH7 and MYBPC3 were the predominant genes responsible for HCM, and TNNT2 mutation less proportionally contributed to Chinese HCM. MYH7 mutations caused HCM at younger age, more frequent syncope and ECG abnormalities compared with MYBPC3 mutations. The patients carrying R663C, Q734P, E930K in MYH7 and R130C in TNNT2 expressed malignant phenotype. R403Q in MYH7, the most common hot and malignant mutation in Caucasians, was not identified in Chinese. We confirmed the diversity of mutation profile in different populations and suggest that a global registry of HCM mutations and their phenotypes is necessary to correlate genotype with phenotype."	"Severe disease expression of cardiac troponin C and T mutations in patients with idiopathic dilated cardiomyopathy. We performed genetic investigations of cardiac troponin T (TNNT2) and troponin C (TNNC1) in 235 consecutive patients with idiopathic dilated cardiomyopathy (DCM) to evaluate prevalence of mutations and associated disease expression in affected families. Recently, mutations in sarcomeric genes have been reported in DCM. However, the prevalence, penetrance, and clinical significance of sarcomere gene mutations in large consecutive cohorts of DCM patients are poorly defined. Mutation detection was performed by fluorescent SSCP/DHPLC analysis and direct sequencing. The functional effects of mutations on interactions within the troponin complex were assessed by a two-hybrid luciferase assay. A total of 43% (102 of 235) of the study cohort had familial DCM. One TNNC1 and four TNNT2 (three novel) mutations were identified in one and four families, respectively. The prevalence of TNNC1/TNNT2 mutations in familial DCM was 5% with a penetrance of 100%. A total of 21 mutation carriers were identified; 6 underwent cardiac transplantation, 5 died of heart failure, and 4 died suddenly at a mean age of 29 years, while 6 remained stable on medication. Functional studies showed significant impairment of mutated troponin interaction compared with wild-type control, indicating an altered regulation of myocardial contractility. Cardiac troponin C was identified as a novel DCM gene. The disease expression associated with TNNC1 and TNNT2 mutations was severe with complete penetrance. The data suggest that mutation analysis of the troponin complex in DCM patients may prove valuable in early identification of individuals with an adverse prognosis and a high risk of premature death. This may lead to improved management and survival."	"[A novel missense mutation, K124N, in the troponin T gene of Chinese populations with hypertrophic cardiomyopathy]. To study the cardiac troponin T (TNNT2) gene mutation in Chinese patients with hypertrophic cardiomyopathy (HCM) and to analyze the correlation between the genotype and phenotype. Specimens of peripheral blood were collected from 71 unrelated Chinese probands with HCM, aged 40 +/- 18. The genome DNA was extracted. Single-strand conformation polymorphism gel analysis of the polymerase chain reaction-amplified products was conducted to search for mutations in the exons 8, 9, 10, 11, and 16 of the TNNT2 gene. Relevant clinical data were collected. One hundred normal persons, aged 44 +/- 14, were used as controls. A missense mutation, K124N, in the exon 9 of the TNNT2 gene was identified in a 41-year-old female patient with HCM and failed to be detected in the 100 normal controls, which suggested the disease-causing mutation. The patient began to have the symptoms of chest distress and palpitation since the age of 38, presented moderate hypertrophy of the intraventricular septum, and did not have a family history of sudden cardiac death. A novel missense mutation of troponin T gene has been identified. Mutation in tail part of cardiac troponin T, essential for it's binding function, causes the disease of HCM. Correlative analysis confirms the genetic heterogeneity of the disease."	"Early myocardial function affects endocardial cushion development in zebrafish. Function of the heart begins long before its formation is complete. Analyses in mouse and zebrafish have shown that myocardial function is not required for early steps of organogenesis, such as formation of the heart tube or chamber specification. However, whether myocardial function is required for later steps of cardiac development, such as endocardial cushion (EC) formation, has not been established. Recent technical advances and approaches have provided novel inroads toward the study of organogenesis, allowing us to examine the effects of both genetic and pharmacological perturbations of myocardial function on EC formation in zebrafish. To address whether myocardial function is required for EC formation, we examined silent heart (sih(-/-)) embryos, which lack a heartbeat due to mutation of cardiac troponin T (tnnt2), and observed that atrioventricular (AV) ECs do not form. Likewise, we determined that cushion formation is blocked in cardiofunk (cfk(-/-)) embryos, which exhibit cardiac dilation and no early blood flow. In order to further analyze the heart defects in cfk(-/-) embryos, we positionally cloned cfk and show that it encodes a novel sarcomeric actin expressed in the embryonic myocardium. The Cfk(s11) variant exhibits a change in a universally conserved residue (R177H). We show that in yeast this mutation negatively affects actin polymerization. Because the lack of cushion formation in sih- and cfk-mutant embryos could be due to reduced myocardial function and/or lack of blood flow, we approached this question pharmacologically and provide evidence that reduction in myocardial function is primarily responsible for the defect in cushion development. Our data demonstrate that early myocardial function is required for later steps of organogenesis and suggest that myocardial function, not endothelial shear stress, is the major epigenetic factor controlling late heart development. Based on these observations, we postulate that defects in cardiac morphogenesis may be secondary to mutations affecting early myocardial function, and that, in humans, mutations affecting embryonic myocardial function may be responsible for structural congenital heart disease."	"[Familial hypertrophic cardiomyopathy: genes, mutations and animal models. A review]. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disease, which may afflict as many as 1 in 500 subjects (0.2%), being probably the most common hereditary cardiovascular disease and the most common cause of sudden cardiac death (SCD). Hypertrophic cardiomyopathy is characterized by the presence of unexplained left ventricular hypertrophy (in absence of hypertension, valvular disease, etc), which is usually asymmetric and involves the ventricular septum. Molecular genetic studies have identified eleven genes that code proteins of the sarcomere that are associated with the HCM; the beta-myosin heavy chain gene (MYH7), alpha-myosin heavy chain (MYH6), cardiac troponin T (TNNT2); cardiac troponin C (TNNC1), alpha-tropomyosin (TPM1), myosin binding protein-C (MYBPC3), cardiac troponin (TNNI3), essential and regulatory light chain genes (MYL3 and MYL2, respectively), cardiac alpha-actin gene (ACTC) and titin (TTN). The objective of this paper is the revision of the current state of the knowledge on (1) the organization and mutations of the HCM causing genes and their proteins and (2) the animal models developed for the study of the genes, mutations and proteins in the hypertrophic cardiomyopathy."	"The role of a common TNNT2 polymorphism in cardiac hypertrophy. We found a five-basepair insertion/deletion polymorphism in intron 3 of TNNT2, one of the genes responsible for hypertrophic cardiomyopathy. These five bases may be part of an intronic polypyrimidine tract sequence that may affect splicing. The purpose of the study was to examine the association of the polymorphism with cardiac hypertrophy. The study population consisted of 151 subjects with prominent concentric left ventricular hypertrophy, and 987 healthy subjects recruited from medical checkups (control population). The deletion/deletion genotype tended to be associated with a larger left ventricular mass/height ratio in the HCM population ( p&lt;0.0001). Multiple regression analyses indicated that the left ventricular mass/height ratio was determined ( p&lt;0.0001, R=0.738) by the TNNT2 genotype. Moreover, the frequency of the deletion allele was significantly higher in the hypertrophy population than in the control population ( p&lt;0.0001). In vitro expression study revealed the deletion allele significantly affected the mRNA expression pattern by skipping exon 4 during splicing. In conclusion, TNNT2 deletion allele could be associated with a predisposition to prominent left ventricular hypertrophy."	"[Direct detection of malignant mutations in patients with hypertrophic cardiomyopathy]. We determined the prevalence of mutations considered malignant in the genes for beta-myosin heavy chain (MYH7, 11 mutations) and troponin T (TNNT2, 5 mutations) in 30 patients with hypertrophic cardiomyopathy aged 18 to 60 years, 83% of whom had familial antecedents of hypertrophic myocardiopathy or sudden death. Mutations were identified with polymerase chain reaction followed by restriction enzyme digestion and agarose gel electrophoresis. Direct analysis identified 16 mutations in 2 of the 30 patients (7%): one women diagnosed at the age of 25 years as carrying the MYH7453cysteine mutation, and a 60-year-old women with the TNNT2278 cysteine mutation. These cases illustrate the considerable clinical heterogeneity that characterizes carriers of these mutations. Clinical manifestations can range from severe hypertrophy or early sudden death to the absence of symptoms up to advanced age."	"Mutation spectrum in a large cohort of unrelated consecutive patients with hypertrophic cardiomyopathy. Defects in nine sarcomeric protein genes are known to cause hypertrophic cardiomyopathy (HCM). Mutation types and frequencies in large cohorts of consecutive and unrelated patients have not yet been determined. We, therefore, screened HCM patients for mutations in six sarcomeric genes: myosin-binding protein C3 (MYBPC3), MYH7, cardiac troponin T (TNNT2), alpha-tropomyosin (TPM1), cardiac troponin I (TNNI3), and cardiac troponin C (TNNC1). HCM was diagnosed in 108 consecutive patients by echocardiography (septum &gt;15 mm, septal/posterior wall &gt;1.3 mm), angiography, or based on a state after myectomy. Single-strand conformation polymorphism analysis was used for mutation screening, followed by DNA-sequencing. A total of 34 different mutations were identified in 108 patients: 18 mutations in MYBPC3 in 20 patients [intervening sequence (intron) 7 + 1G &gt; A and Q1233X were found twice], 13 missense mutations in MYH7 in 14 patients (R807H was found twice), and one amino acid change in TPM1, TNNT2, and TNNI3, respectively. No disease-causing mutation was found in TNNC1. Cosegregation with the HCM phenotype could be demonstrated for 13 mutations (eight mutations in MYBPC3 and five mutations in MYH7). Twenty-eight of the 37 mutation carriers (76%) reported a positive family history with at least one affected first-grade relative; only eight mutations occurred sporadically (22%). MYBPC3 was the gene that most frequently caused HCM in our population. Systematic mutation screening in large samples of HCM patients leads to a genetic diagnosis in about 30% of unrelated index patients and in about 57% of patients with a positive family history."	"Hypertrophic cardiomyopathy: two homozygous cases with &quot;typical&quot; hypertrophic cardiomyopathy and three new mutations in cases with progression to dilated cardiomyopathy. About 10% of cases of hypertrophic cardiomyopathy (HCM) evolve into dilated cardiomyopathy (DCM) with unknown causes. We studied 11 unrelated patients (pts) with HCM who progressed to DCM (group A) and 11 who showed &quot;typical&quot; HCM (group B). Mutational analysis of the beta-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), and cardiac troponin T (TNNT2) genes demonstrated eight mutations affecting MYH7 or MYBPC3 gene, five of which were new mutations. In group A-pts, the first new mutation occurred in the myosin head-rod junction and the second occurred in the light chain-binding site. The third new mutation leads to a MYBPC3 lacking titin and myosin binding sites. In group B, two pts with severe HCM carried two homozygous MYBPC3 mutations and one with moderate hypertrophy was a compound heterozygous for MYBPC3 gene. We identified five unreported mutations, potentially &quot;malignant&quot; defects as for the associated phenotypes, but no specific mutations of HCM/DCM."	"Hypertrophic cardiomyopathy: low frequency of mutations in the beta-myosin heavy chain (MYH7) and cardiac troponin T (TNNT2) genes among Spanish patients. Mutations in the cardiac beta-myosin heavy chain (MYH7) and cardiac troponin T (TNNT2) genes are reportedly responsible for up to 40% of familial cases with hypertrophic cardiomyopathy (HC). Although there are no mutational hotspots, most of the mutations are located in specific exons of the MYH7 and TNNT2 genes. Currently it is not possible to predict the phenotype in carriers of mutations in these genes, although it is widely accepted that mutations in the MYH7 gene predispose to severe HC, whereas TNNT2 mutations are frequently linked to sudden cardiac death (SCD) in spite of minimal hypertrophy. We sequenced exons 8, 9, 13-16, 19, 20, 22-24, and 30 of the MYH7 gene and exons 8, 9, 11, and 14-16 of the TNNT2 gene in 30 HC patients (18-60 years of age) from the region of Asturias (Northern Spain); 25 cases (80%) had a family history of the disease. Genomic DNA was amplified, and fragments were directly sequenced. Each DNA variant found in the patients was also analyzed in 200 healthy controls through single-strand conformation analysis. Four of the probands had nucleotide changes absent in the healthy controls. Two cases had mutations previously described in the MYH7 gene (exon 14, Arg453Cys) or the TNNT2 gene (exon 16, Arg278Cys). Two cases had new mutations (MYH7 exon 22, Met822Val; TNNT2 exon 14, Lys247Arg) not found among the healthy controls. We found MYH7 Met822Val in a woman with a severe form of HC; the mutation was absent in her parents, indicating a de novo mutation. MYH7 R453C was present in a woman with mild HC, mother of a son who died from SCD. TNNT2 R278C was present in a woman with severe HC, but a sister and a daughter were mutation carriers and did not have hypertrophy. A patient with severe HC was carrier of TNNT2 247Arg. Mutations in the MYH7 and TNNT2 genes can be found in patients without a family history of HC. However, compared with other populations MYH7 or TNNT2 mutations were rare among our HC patients. This study illustrates the extreme phenotypic heterogeneity in carriers of MYH7 or TNNT2 mutations."	"Molecular structure and developmental expression of three muscle-type troponin T genes in zebrafish. Troponin T (Tnnt), a troponin component, interacts with tropomyosin and is crucial to the regulation of striated muscle contraction. To gain insight into the molecular evolution and developmental regulation of Tnnt gene (Tnnt) in lower vertebrates, zebrafish Tnnt1 (slow Tnnt), Tnnt2 (cardiac Tnnt), and Tnnt3b (fast Tnnt isoform b) were characterized. The polypeptides of zebrafish Tnnt1, Tnnt2, and Tnnt3b were conserved in the central tropomyosin- and C-terminal troponin I-binding domains. However, the N-terminal hypervariable regions were highly extended and rich in glutamic acid in polypeptides of Tnnt1 and Tnnt2, but not Tnnt3b. The Tnnt2 and Tnnt3b contain introns, whereas Tnnt1 is intron-free. During development, large to small, alternatively spliced variants were detected in Tnnt2, but not in Tnnt1 or Tnnt3. Whole-mount in situ hybridization showed zebrafish Tnnt1 and Tnnt2 are activated during early somitogenesis (10 hr postfertilization, hpf) and cardiogenesis (14 hpf), respectively, but Tnnt3b is not activated until middle somitogenesis (18 hpf). Tnnt2 and Tnnt3b expression was cardiac- and fast-muscle specific, but Tnnt1 was expressed in both slow and fast muscles. We propose that three, distinct, muscle-type Tnnt evolved after the divergence of fish and deuterostome invertebrates. In zebrafish, the developmental regulation of Tnnt during somitogenesis and cardiogenesis is more restricted and simpler than in tetrapods. These new findings may provide insight into the developmental regulation and molecular evolution of vertebrate Tnnt."	"Hypertrophic cardiomyopathy: distribution of disease genes, spectrum of mutations, and implications for a molecular diagnosis strategy. Hypertrophic cardiomyopathy is an autosomal-dominant disorder in which 10 genes and numerous mutations have been reported. The aim of the present study was to perform a systematic screening of these genes in a large population, to evaluate the distribution of the disease genes, and to determine the best molecular strategy in clinical practice. The entire coding sequences of 9 genes (MYH7, MYBPC3, TNNI3, TNNT2, MYL2, MYL3, TPM1, ACTC, andTNNC1) were analyzed in 197 unrelated index cases with familial or sporadic hypertrophic cardiomyopathy. Disease-causing mutations were identified in 124 index patients ( approximately 63%), and 97 different mutations, including 60 novel ones, were identified. The cardiac myosin-binding protein C (MYBPC3) and beta-myosin heavy chain (MYH7) genes accounted for 82% of families with identified mutations (42% and 40%, respectively). Distribution of the genes varied according to the prognosis (P=0.036). Moreover, a mutation was found in 15 of 25 index cases with &quot;sporadic&quot; hypertrophic cardiomyopathy (60%). Finally, 6 families had patients with more than one mutation, and phenotype analyses suggested a gene dose effect in these compound-heterozygous, double-heterozygous, or homozygous patients. These results might have implications for genetic diagnosis strategy and, subsequently, for genetic counseling. First, on the basis of this experience, the screening of already known mutations is not helpful. The analysis should start by testing MYBPC3 and MYH7 and then focus on TNNI3, TNNT2, and MYL2. Second, in particularly severe phenotypes, several mutations should be searched. Finally, sporadic cases can be successfully screened."	"Prevalence and severity of &quot;benign&quot; mutations in the beta-myosin heavy chain, cardiac troponin T, and alpha-tropomyosin genes in hypertrophic cardiomyopathy. Genotype-phenotype correlative studies have implicated 8 particular mutations that cause hypertrophic cardiomyopathy (HCM) as &quot;benign defects,&quot; associated with near-normal survival: N232S, G256E, F513C, V606M, R719Q, and L908V of beta-myosin heavy chain (MYH7); S179F of troponin T (TNNT2); and D175N of alpha-tropomyosin (TPM1). Routine genetic screening of HCM patients for specific mutations is anticipated to provide important diagnostic and prognostic information. The frequency and associated phenotype of these mutations in a large, unselected cohort of HCM is unknown. A total of 293 unrelated HCM patients were genotyped for the presence of a benign mutation. DNA was obtained after informed consent; specific MHY7, TNNT2, and TPM1 fragments were amplified by polymerase chain reaction; and the mutations were detected by denaturing high-performance liquid chromatography and automated DNA sequencing. Only 5 (1.7%) of the 293 patients possessed a benign mutation. Moreover, all 5 subjects with an ascribed benign mutation had already manifested clinically severe expression of HCM, with all 5 requiring surgical myectomy, 3 of the 5 having a family history of sudden cardiac death, and 1 adolescent requiring an orthotopic heart transplant. These findings demonstrate the rarity of specific mutations in HCM and challenge the notion of mutation-specific clinical outcomes. Fewer than 2% of the subjects harbored a benign mutation, and those patients with a benign mutation experienced a very serious clinical course."	"Novel mutations in sarcomeric protein genes in dilated cardiomyopathy. Mutations in sarcomeric protein genes have been reported to cause dilated cardiomyopathy (DCM). In order to detect novel mutations we screened the sarcomeric protein genes beta-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), and alpha-tropomyosin (TPM1) in 46 young patients with DCM. Mutation screening was done using single-strand conformation polymorphism (SSCP) analysis and DNA sequencing. The mutations in MYH7 were projected onto the protein data bank-structure (pdb) of myosin of striated muscle. In MYH7 two mutations (Ala223Thr and Ser642Leu) were found in two patients. Ser642Leu is part of the actin-myosin interface. Ala223Thr affects a buried residue near the ATP binding site. In MYBPC3 we found one missense mutation (Asn948Thr) in a male patient. None of the mutations were found in 88 healthy controls and in 136 patients with hypertrophic cardiomyopathy (HCM). Thus mutations in HCM causing genes are not rare in DCM and have potential for functional relevance."	"A web-accessible complete transcriptome of normal human and DMD muscle. We present an assessment of the complete transcriptome of human skeletal muscle in Duchenne muscular dystrophy patient muscle and non-dystrophic controls (36 RNAs analyzed from ten Duchenne dystrophy and eight controls; approximately 65,000 gene/expressed sequence tag/probe sets queried on U95 five-GeneChip series and MuscleChip). The use of the multiple chip types allowed us to compare results from different probe sets for the same gene: we found excellent concordance between different probe sets on different microarrays. We found 30% of human genes expressed in muscle at detectable levels. Three percent of these showed differential regulation in dystrophin deficiency. Among 1,882 dysregulated probe sets, 1,324 corresponded to characterized genes/proteins (891 non-redundant transcript units), and 588 to expressed sequence tags or predicted genes. Data interpretation was limited to the insulin-like growth factor pathway members, an investigation of possible de-regulation towards a cardiac lineage, and identification of male- and female-specific transcripts. We found transcriptional upregulation of both IGF-I and IGF-II in dystrophic muscle, however the possible beneficial effects of the growth factors appear offset by transcriptional upregulation of inhibitory IGF-binding proteins and regulators (IGFBP-2, -4, -6 and -7; and PRSS11 [IGFBP-5 protease]). We hypothesize that the beneficial effects of IGF-I or IGF-II supplementation in dystrophic muscle may be the result of dose-dependent sequestration of inhibitory IGF-binding proteins. We also focused on six 'cardiac' genes expressed in muscle (alpha-cardiac actin, CARP, CASQ2, troponin T2 cardiac [TNNT2], CUGBP2, and connexin 43). Comparison to a 27 time point murine muscle regeneration series and mdx muscle profiles showed that CARP and Cx43 were macrophage-associated, and TNNT2 activated-myoblast-associated. Upregulation of cardiac actin and CUGBP2 was not associated with muscle regeneration profiles, suggesting a more specific dysregulation induced by dystrophin deficiency. We found two Y-linked genes expressed solely in male muscle (RPS4Y, DDX3Y), and two autosomal genes expressed much more highly in female muscle (GRO2, ZNF91) (all comparisons P&lt;0.01). Finally, we present the first web-accessible expression profiling database for all data, including image files (.dat), processed image files (.cel), and complete comparison files which are publicly available through a novel queriable web site, that permits query-by-gene across all profiles (http://microarray.cnmcresearch.org/pga). These data enumerate the full range of molecular changes associated downstream of dystrophin deficiency, and provide a web-accessible platform to study the specificity of transcriptional pathway alterations in muscle disease."	"Prevalence and age-dependence of malignant mutations in the beta-myosin heavy chain and troponin T genes in hypertrophic cardiomyopathy: a comprehensive outpatient perspective. The goal of this study was to determine the prevalence of &quot;malignant&quot; mutations in hypertrophic cardiomyopathy (HCM). Previous genotype-phenotype studies have implicated four mutations (R403Q, R453C, G716R and R719W) as highly malignant defects in the beta-myosin heavy chain (MYH7). In the cardiac troponin T gene (TNNT2), a specific mutation (R92W) has been associated with high risk of sudden death. Routine clinical screening for these malignant mutations has been suggested to identify high-risk individuals. We screened 293 unrelated individuals with HCM seen at the Mayo Clinic in Rochester, Minnesota, between April 1997 and October 2000. Deoxyribonucleic acid (DNA) was obtained after informed consent; amplification of MYH7 exons 13 (R403Q), 14 (R453C) and 19 (G716R and R719W), and TNNT2 exon 9 (R92W) was performed by polymerase chain reaction. The mutations were detected using denaturing high-performance liquid chromatography and automated DNA sequencing. The mean age at diagnosis was 42 years with 53 patients diagnosed before age 25. The mean maximal left ventricular wall thickness was 21 mm. Nearly one-third of cases were familial and one-fourth had a family history of sudden cardiac death. Only 3 of the 293 patients possessed one of the five &quot;malignant&quot; mutations, and all 3 patients were &lt;25 years of age at presentation (p &lt; 0.006). This finding underscores the profound genetic heterogeneity in HCM. Only 1% of unrelated individuals seen at a tertiary referral center for HCM possessed one of the five &quot;malignant&quot; mutations that were examined. Routine clinical testing for these specific mutations is of low yield."	"Cardiac troponin T is essential in sarcomere assembly and cardiac contractility. Mutations of the gene (TNNT2) encoding the thin-filament contractile protein cardiac troponin T are responsible for 15% of all cases of familial hypertrophic cardiomyopathy, the leading cause of sudden death in young athletes. Mutant proteins are thought to act through a dominant-negative mode that impairs function of heart muscle. TNNT2 mutations can also lead to dilated cardiomyopathy, a leading cause of heart failure. Despite the importance of cardiac troponin T in human disease, its loss-of-function phenotype has not been described. We show that the zebrafish silent heart (sih) mutation affects the gene tnnt2. We characterize two mutated alleles of sih that severely reduce tnnt2 expression: one affects mRNA splicing, and the other affects gene transcription. Tnnt2, together with alpha-tropomyosin (Tpma) and cardiac troponins C and I (Tnni3), forms a calcium-sensitive regulatory complex within sarcomeres. Unexpectedly, in addition to loss of Tnnt2 expression in sih mutant hearts, we observed a significant reduction in Tpma and Tnni3, and consequently, severe sarcomere defects. This interdependence of thin-filament protein expression led us to postulate that some mutations in tnnt2 may trigger misregulation of thin-filament protein expression, resulting in sarcomere loss and myocyte disarray, the life-threatening hallmarks of TNNT2 mutations in mice and humans."	"Cardiac troponin T lysine 210 deletion in a family with dilated cardiomyopathy. The gene for cardiac troponin T (TNNT2) is 1 of 7 autosomal disease genes implicated in familial dilated cardiomyopathy (FDC). Identical deletions in exon 13 of TNNT2 have been reported in 2 families with FDC, but little is known about the frequency of this deletion among patients with FDC and idiopathic dilated cardiomyopathy (IDC) and the associated phenotype. Exon 13 of the cardiac troponin T gene was sequenced in 61 subjects with FDC and 53 subjects with IDC. A 3-base pair deletion (DeltaLys210), identified in 1 family with at least 7 clinically affected family members, is reported. Age of disease onset and disease severity varied widely among affected individuals; phenotypic findings included dilated cardiomyopathy, sudden cardiac death, conduction system disease including atrial fibrillation and atrioventricular block, and heart failure. Sudden-onset, rapidly progressive disease was observed in younger individuals. Cardiac troponin T exon 13 lysine deletions can cause FDC of varying severity and are an important but uncommon cause of FDC."	"Co-existence of frataxin and cardiac troponin T gene mutations in a child with Friedreich Ataxia and familial hypertrophic cardiomyopathy. Friedreich Ataxia (FA) is a neurodegenerative disorder characterised by progressive gait disturbance, dysarthria, dysmetria and other coordination disorders. The genetic defect is represented by an expansion of GAA repeats in the frataxin gene (FRDA or X25). Hypertrophic cardiomyopathy is a common finding in FA, and it is widely recognised as specific for the diagnosis of disease status. In this study, we report the co-existence, in a 5-year old boy with FA, of a double mutation in two distinct genes [X25 (A allele: 850 triplets; B allele: 1000 triplets), and cardiac troponin T (TNNT2) (287G&gt;A)]. TNNT2 gene mutations have been previously identified in individuals with a familial form of hypertrophic cardiomyopathy (FHC), an autosomal dominant inherited disease characterised by unexplained cardiac hypertrophy and high incidence of sudden death. Although we cannot rule out the impact of each gene defect on cardiac morphology, it is of interest that these two mechanisms may be acting in a synergistic fashion to produce the extreme degree of cardiac hypertrophy detected in the child. This is, to our knowledge, the first description of a double gene defect in individuals with FA and FHC."	"The genes encoding E-selectin (SELE) and lymphotactin (SCYC1) lie on separate chicken chromosomes although they are closely linked in human and mouse. Three differentially expressed selectin genes (SELE, SELP, and SELL), important in the initial stages of leukocyte extravasation, have been reported in mammals. All three genes map close to the chemokine SCYC1 (small inducible cytokine subfamily C, member 1) in a large conserved chromosomal segment that extends from RXRG (retinoic acid receptor, gamma) to TNNT2 (troponin T2) on Chromosome (Chr) 1 in both human and mouse. In the mouse, we demonstrate that Sele is flanked by Prrx1 (paired-related homeobox gene 1) and Scyc1 and define the order of, and distances between, loci as centromere-Prrx1-(0.7+/-0.7 cM)-Sele-(1.2+/-0.9 cM)-Scyc1-telomere. In the chicken, we isolated BAC clones containing PRRX1, SELE, and SCYC1 and positioned them by fluorescent in situ hybridization. SELE and PRRX1 mapped to the short arm of chicken Chr 8 and SCYC1 mapped to the region equivalent to 1q11-1q13 on the long arm of chicken Chr 1. The location of SELE on chicken Chr 8 was independently established by linkage analysis of COM0185, an (AT)16 microsatellite locus identified in a BAC clone that contained SELE. COM0185 was linked to several loci that mapped to one end of chicken Chr 8, with the order of loci, and genetic distances (in cM) between them defined as MSU0435, MSU0325-(7.8+/-3.7)-COM0185-(5.8+/-3.2)-ROS0338-(9.6+/-4.0)-ABR0322-(3.8+/-2.6)-GLUL. We have therefore positioned an evolutionary breakpoint in mammals and chickens between SELE and SCYC1. Furthermore, comparative mapping analysis of the RXRG-TNNT2 chromosomal segment that is conserved on human and mouse Chr 1 indicates that it is divided into four segments in the chicken, each of which maps to a different chromosome."	"[Mutations in genes for sarcomeric proteins]. Idiopathic cardiomyopathy(ICM) is by definition of unknown etiology. There are four clinical types of ICM; hypertrophic cardiomyopathy(HCM) characterized by ventricular hypertrophy associated with reduced compliance of the heart and accompanied by myofibrillar disarray, dilated cardiomyopathy(DCM) characterized by dilated ventricles associated with systolic dysfunction, restricted cardiomyopathy (RCM) and arrhythmogenic right ventricular cardiomyopathy(ARVC). Recent molecular genetic analyses have now revealed disease-associated mutations in ICM, especially in familial HCM and familial DCM. Mutations in 9 different disease genes (MYH7, TNNT2, TPM1, MYBPC3, MYL3, MYL2, TNNI3, CACT and TTN) cause HCM, while mutations in 3 different genes(CACT, DES and DMD) cause DCM in adults. In this review, I will summarize our current data on sarcomere mutations found in Japanese ICM, especially in HCM and DCM."	"Genomic organisation, alternative splicing and polymorphisms of the human cardiac troponin T gene. Troponin T (TnT) is a component of the troponin complex which regulates muscle contraction in response to alterations in intracellular calcium ion concentration. In human heart, multiple isoforms of cardiac TnT have been described on the basis of antibody studies and molecular cloning of corresponding cDNAs. These isoforms are all derived from the transcription of a single gene, TNNT2, located on chromosome 1q32, and generated by alternative splicing. We show here that isoform diversity is achieved by the use of both alternative exons and alternative acceptor sites and present the organisation of the human TNNT2 gene, which is composed of 17 exons spread over 17 kb. A potential structure of the promoter region is also presented. Several polymorphisms in both the exonic and intronic regions were identified, some of which may act as modulators of the expression of this gene."	"A rapid protocol for cardiac troponin T gene mutation detection in familial hypertrophic cardiomyopathy. Mutations in the human cardiac troponin T gene (TNNT2) are associated with familial hypertrophic cardiomyopathy (FHC) linked to chromosome 1q3 (CMH2). Mutation analyses of TNNT2 have been restricted to RNA-based screening methods because only the TNNT2 cDNA sequence was known. We characterized the genomic structure of 15 TNNT2 exons spliced into the adult isoform. A protocol for rapid mutation detection based on direct sequencing of large PCR-amplified genomic DNA fragments revealed a known TNNT2 mutation (Phe110Ile) in one of 30 FHC probands. Three polymorphic short tandem repeat elements (D1S477, D1S2622, and D1S1723), useful for FHC pedigree analyses at CMH2, were shown to be physically tightly linked to TNNT2."	"Codon 102 of the cardiac troponin T gene is a putative hot spot for mutations in familial hypertrophic cardiomyopathy. Familial hypertrophic cardiomyopathy is a phenotypically and genetically heterogeneous disease. In some families, the disease is linked to the CMH2 locus on chromosome 1q3, in which the cardiac troponin T gene (TNNT2) has been identified as the disease gene. The mutations found in this gene appear to be associated with incomplete penetrance and poor prognosis. Because mutational hot spots offer unique possibilities for analysis of genotype-phenotype correlations, new missense mutations that could define such hot spots in TNNT2 were looked for in unrelated French families with familial hypertrophic cardiomyopathy. Family members were genotyped with microsatellite markers to detect linkage to the four known disease loci. In family 715, analyses showed linkage to CMH2 only. To accurately position potential mutations on TNNT2, its partial genomic organization was established. Screening for mutations was performed by single-strand conformation polymorphism analysis and sequencing. A new missense mutation, Arg102Leu, was identified in affected members of family 715 because of a G--&gt;T transversion located in the 10th exon of the gene. Penetrance of this new mutation is complete; echocardiographic data show a wide range of hypertrophy; and there was no sudden cardiac death in this family. The codon 102 of the TNNT2 gene is a putative mutational hot spot in familial hypertrophic cardiomyopathy and is associated with phenotypic variability. Analysis of more pedigrees carrying mutations in this codon is necessary to better characterize the clinical and prognostic implications of TNNT2 mutations."	"Human cardiac troponin T: identification of fetal isoforms and assignment of the TNNT2 locus to chromosome 1q. The troponin complex is located on the thin filament of striated muscle and is composed of three component polypeptides: troponin T, troponin I, and troponin C. Three troponin T genes have been described on the basis of molecular cloning in humans and other vertebrates. These are expressed in a tissue-specific manner and encode the troponin T isoforms expressed in cardiac muscle, slow skeletal muscle, and fast skeletal muscle, respectively. Each of these genes is subject to alternative splicing, resulting in the production of multiple tissue-specific isoforms. We have cloned cDNAs encoding human cardiac troponin T from adult heart and have used these to demonstrate that multiple cardiac troponin T mRNAs are present in the human fetal heart, resulting from alternative splicing in the 5' coding region of the gene. Hybridization of the cloned cDNAs to genomic DNA identifies a single-copy gene, and using somatic cell hybrid analysis, we have mapped the corresponding gene locus (designated TNNT2) to the long arm of chromosome 1 (1cen-qter)."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TPM1"	"hypertrophic cardiomyopathy"	"A novel homozygous TPM1 mutation in familial pediatric hypertrophic cardiomyopathy and in silico screening of potential targeting drugs. Familial hypertrophic cardiomyopathy (HCM) is the most common genetic cardiac disease. While sarcomeric gene mutations explain many HCM cases, the genetic basis of about half of HCM cases remains elusive. Here we aimed to identify the gene causing HCM in a non-consanguineous Saudi Arabian family with affected family members and a history of sudden death. The impact of the identified mutation on protein structure and potential drug targets were evaluated in silico. Triplets (two HCM subjects and one patent ductus arteriosus (PDA) case) and unaffected parents were screened by targeted next-generation sequencing (NGS) for 181 candidate cardiomyopathy genes. In silico structural and functional analyses, including protein modeling, structure prediction, drug screening, drug binding, and dynamic simulations were performed to explore the potential pathogenicity of the variant and to identify candidate drugs. A homozygous missense mutation in exon 1 of TMP1 (assembly GRCh37-chr15: 63340781; G&gt;A) was identified in the triplets [two HCM and one patent ductus arteriosus (PDA)] that substituted glycine for arginine at codon 3 (p.Gly3Arg). The parents were heterozygous for the variant. The mutation was predicted to cause a significant and deleterious change in the TPM1 protein structure that slightly affected drug binding, stability, and conformation. In addition, we identified several putative TPM1-targeting drugs through structure-based in silico screening. TPM1 mutations are a common cause of HCM and other congenital heart defects. To date, TPM1 has not been associated with isolated PDA; to our knowledge, this is the first report of the homozygous missense variation p.Gly3Arg in TPM1 associated with familial autosomal recessive pediatric HCM and PDA. The identified candidate TPM1 inhibitors warrant further prospective investigation."	"Binding of S100A6 to actin and the actin-tropomyosin complex. S100A6 is a low molecular weight Ca<sup>2+</sup>-binding protein belonging to the S100 family. Many reports indicate that in the cell S100A6 has an influence on the organization of actin filaments, but so far no direct interaction between S100A6 and actin has been shown. In the present study we investigated binding of S100A6 to actin and the actin-tropomyosin complex. The analyses were performed on G- and F-actin and two tropomyosin isoforms-Tpm1.6 and Tpm1.8. Using purified proteins and a variety of biochemical approaches we have shown that, in a Ca<sup>2+</sup>-bound form, S100A6 directly interacts with G- and F-actin and with tropomyosin, preferentially with isoform Tpm1.8. S100A6 and tropomyosin bind to the same population of filaments and the presence of tropomyosin on the microfilament facilitates the binding of S100A6. By applying proximity ligation assay we have found that in NIH3T3 fibroblasts S100A6 forms complexes both with actin and with tropomyosin. These results indicate that S100A6, through direct interactions with actin and tropomyosin, might regulate the organization and functional properties of microfilaments."	"Penetrance of Hypertrophic Cardiomyopathy in Sarcomere Protein Mutation Carriers. Predictive genetic screening of relatives of patients with hypertrophic cardiomyopathy (HCM) caused by sarcomere protein (SP) gene mutations is current standard of care, but there are few data on long-term outcomes in mutation carriers without HCM. The aim of this study was to determine the incidence of new HCM diagnosis in SP mutation carriers. This was a retrospective analysis of adult and pediatric SP mutation carriers identified during family screening who did not fulfill diagnostic criteria for HCM at first evaluation. The authors evaluated 285 individuals from 156 families (median age 14.2 years [interquartile range: 6.8 to 31.6 years], 141 [49.5%] male individuals); 145 (50.9%) underwent cardiac magnetic resonance (CMR). Frequency of causal genes was as follows: MYBPC3 n = 123 (43.2%), MYH7 n = 69 (24.2%), TNNI3 n = 39 (13.7%), TNNT2 n = 34 (11.9%), TPM1 n = 9 (3.2%), MYL2 n = 6 (2.1%), ACTC1 n = 1 (0.4%), multiple mutations n = 4 (1.4%). Median follow-up was 8.0 years (interquartile range: 4.0 to 13.3 years) and 86 (30.2%) patients developed HCM; 16 of 50 (32.0%) fulfilled diagnostic criteria on CMR but not echocardiography. Estimated HCM penetrance at 15 years of follow-up was 46% (95% confidence interval [CI]: 38% to 54%). In a multivariable model adjusted for age and stratified for CMR, independent predictors of HCM development were male sex (hazard ratio [HR]: 2.91; 95% CI: 1.82 to 4.65) and abnormal electrocardiogram (ECG) (HR: 4.02; 95% CI: 2.51 to 6.44); TNNI3 variants had the lowest risk (HR: 0.19; 95% CI: 0.07 to 0.55, compared to MYBPC3). Following a first negative screening, approximately 50% of SP mutation carriers develop HCM over 15 years of follow-up. Male sex and an abnormal ECG are associated with a higher risk of developing HCM. Regular CMR should be considered in long-term screening."	"The prognostic value of six survival-related genes in bladder cancer. This study was conducted to identify genes that are differentially expressed in paracancerous tissue and to determine the potential predictive value of selected gene panel. Gene transcriptome data of bladder tissue was downloaded from UCSC Xena browser and NCBI GEO repository, including GTEx (the Genotype-Tissue Expression project) data, TCGA (The Cancer Genome Atlas) data, and GEO (Gene Expression Omnibus) data. Differentially Expressed Genes (DEGs) analysis was performed to identify tumor-DEGs candidate genes, using the intersection of tumor-paracancerous DEGs genes and paracancerous-normal DEGs genes. The survival-related genes were screened by Kaplan-Meier (KM) survival analysis and univariable Cox regression with the cutoff criteria of KM &lt; 0.05 and cox p-value &lt; 0.05. The risk model was developed using Lasso regression. The clinical data were analyzed by univariate and multivariate Cox regression analysis. Gene Ontology (GO) and KEGG enrichment analysis were performed in the DEGs genes between the high-risk and low-risk subgroups. We identified six survival-related genes, EMP1, TPM1, NRP2, FGFR1, CAVIN1, and LATS2, found in the DEG analyses of both, tumor-paracancerous and paracancerous-normal differentially expressed data sets. Then, the patients were classified into two clusters, which can be distinguished by specific clinical characteristics. A three-gene risk prediction model (EMP1, FGFR1, and CAVIN1) was constructed in patients within cluster 1. The model was applied to categorize cluster 1 patients into high-risk and low-risk subgroups. The prognostic risk score was considered as an independent prognostic factor. The six identified survival-related genes can be used in molecular characterization of a specific subtype of bladder cancer. This subtype had distinct clinical features of T (topography), N (lymph node), stage, grade, and survival status, compared to the other subtype of bladder cancer. Among the six identified survival-related genes, three-genes, EMP1, FGFR1, and CAVIN1, were identified as potential independent prognostic markers for the specific bladder cancer subtype with clinical features described."	"Threonine-77 is a determinant of the low temperature conditioning of the most abundant isoform of tropomyosin in Atlantic salmon. The Atlantic salmon Salmo salar survives in temperatures that are &lt; 10 oC. The main skeletal muscle is composed of a single isoform of tropomyosin (classification Tpm1 alpha-fast) that is &gt; 92% identical to the mammalian homologue. How salmon Tpm1 maintains flexibility is investigated by reversing the only full charge substitution; threonine-77(g) in salmon, lysine in other vertebrates. The mutation (Thr-77 to Lys), which falls within a known destabilizing alanine cluster: (i) yields a useful electrophoretic shift in both the absence and presence of anionic detergent; (ii) increases the Tms, of both cooperative transitions (calorimetry, 0.1M salt, pH 7): 35oC (minor) and 44oC (major), ∆Tm1 5oC , ∆Tm2 3.5oC; (iii) increases the Tm of CN1A (residues 11-127) to 53 oC, ∆Tm 13oC, a value similar to that of mamma-lian CN1A; (iv) markedly reduces the rate of proteolysis at Leu-169 and (v) weakens the affinity of salmon Tpm1 for troponin-Sepharose. Glu-82(e) the inter-strand ionic partner of Lys-77(g) is conserved. The change in ionic interac-tions at this locus is postulated to be 'sensed' in actin period 5 (residues 166-207) and likely beyond. Wild type (acetylated) salmon Tmp1 binds more tightly to F-actin at 4oC than 22oC, opposite to the long-known relationship displayed by the mammalian homologue. All of the evidence indicates that the presence of a neutral 77th amino acid destabilizes a sizeable portion of salmon Tpm1 that includes the mid-region. Threonine-77 is a key factor in rescuing the thin filament from the peril of cold-induced rigidity."	"Transcriptomic Profile of Primary Culture of Skeletal Muscle Cells Isolated from Semitendinosus Muscle of Beef and Dairy Bulls. The aim of the study was to identify differences in the transcriptomic profiles of primary muscle cell cultures derived from the semitendinosus muscle of bulls of beef breeds (Limousin (LIM) and Hereford (HER)) and a dairy breed (Holstein-Friesian (HF)) (n = 4 for each breed). Finding a common expression pattern for proliferating cells may point to such an early orientation of the cattle beef phenotype at the transcriptome level of unfused myogenic cells. To check this hypothesis, microarray analyses were performed. The analysis revealed 825 upregulated and 1300 downregulated transcripts similar in both beef breeds (LIM and HER) and significantly different when compared with the dairy breed (HF) used as a reference. Ontological analyses showed that the largest group of genes were involved in muscle organ development. Muscle cells of beef breeds showed higher expression of genes involved in myogenesis (including erbb-3, myf5, myog, des, igf-1, tgfb2) and those encoding proteins comprising the contractile apparatus (acta1, actc1, myh3, myh11, myl1, myl2, myl4, tpm1, tnnt2, tnnc1). The obtained results confirmed our hypothesis that the expression profile of several groups of genes is common in beef breeds at the level of proliferating satellite cells but differs from that observed in typical dairy breeds."	"Regulation of Actin Filament Length by Muscle Isoforms of Tropomyosin and Cofilin. In striated muscle the extent of the overlap between actin and myosin filaments contributes to the development of force. In slow twitch muscle fibers actin filaments are longer than in fast twitch fibers, but the mechanism which determines this difference is not well understood. We hypothesized that tropomyosin isoforms Tpm1.1 and Tpm3.12, the actin regulatory proteins, which are specific respectively for fast and slow muscle fibers, differently stabilize actin filaments and regulate severing of the filaments by cofilin-2. Using in vitro assays, we showed that Tpm3.12 bound to F-actin with almost 2-fold higher apparent binding constant (Kapp) than Tpm1.1. Cofilin2 reduced Kapp of both tropomyosin isoforms. In the presence of Tpm1.1 and Tpm3.12 the filaments were longer than unregulated F-actin by 25% and 40%, respectively. None of the tropomyosins affected the affinity of cofilin-2 for F-actin, but according to the linear lattice model both isoforms increased cofilin-2 binding to an isolated site and reduced binding cooperativity. The filaments decorated with Tpm1.1 and Tpm3.12 were severed by cofilin-2 more often than unregulated filaments, but depolymerization of the severed filaments was inhibited. The stabilization of the filaments by Tpm3.12 was more efficient, which can be attributed to lower dynamics of Tpm3.12 binding to actin."	"Exosomal miR-21 promotes proliferation, invasion and therapy resistance of colon adenocarcinoma cells through its target PDCD4. Exosomes contain cell-specific collections of bioactive materials including proteins, lipids, and RNAs that are transported to recipient cells to exert their impacts. MicroRNAs (miRNAs) can function as tumor suppressor or oncogenic genes and miR-21 is one of the most frequently up-regulated miRNAs in solid tumors including colon cancer. The aim of this study was to investigate the role of miR-21, secreted from exosomes, in proliferation and invasion of colon cancer, along with the mechanistic details. We used a variety of biochemical techniques including ultracentrifugation-based exosome purification, electron transmission microscopy, western blot and RT-qPCR to detect the expression levels of miR-21 in exosomes purified from culture media of human colonic adenocarcinoma cell lines. We then performed functional and mechanistic studies using three colon cancer cell lines HT29, T84 and LS174 as well as the normal colon epithelial cells CRL1831. miR-21 target PDCD4 was investigated for its role in mediating miR-21 effects. Expression of miR-21 was significantly up-regulated in exosomes of colon cancer cells, compared to the normal human colon epithelial cells. Treatment of colon cancer cells with isolated exosomes or miR-21 led to an increased expression of genes involved in cell proliferation, invasion and extracellular matrix formation. miR-21 targets PDCD4, TPM1 and PTEN were down-regulated by exosomes and silencing of PDCD4 mimicked miR-21 functional effects, even the induced resistance against 5-FU. Our study suggests that targeted inhibition of exosomes, particularly those carrying miR-21, may represent a novel approach for treatment of colorectal cancer."	"Tropomyosin 1 genetically constrains in vitro hematopoiesis. Identifying causal variants and genes from human genetic studies of hematopoietic traits is important to enumerate basic regulatory mechanisms underlying these traits, and could ultimately augment translational efforts to generate platelets and/or red blood cells in vitro. To identify putative causal genes from these data, we performed computational modeling using available genome-wide association datasets for platelet and red blood cell traits. Our model identified a joint collection of genomic features enriched at established trait associations and plausible candidate variants. Additional studies associating variation at these loci with change in gene expression highlighted Tropomyosin 1 (TPM1) among our top-ranked candidate genes. CRISPR/Cas9-mediated TPM1 knockout in human induced pluripotent stem cells (iPSCs) enhanced hematopoietic progenitor development, increasing total megakaryocyte and erythroid cell yields. Our findings may help explain human genetic associations and identify a novel genetic strategy to enhance in vitro hematopoiesis. A similar trait-specific gene prioritization strategy could be employed to help streamline functional validation experiments for virtually any human trait."	"The MicroRNA MiR-29c Alleviates Renal Fibrosis via TPM1-Mediated Suppression of the Wnt/β-Catenin Pathway. This study aimed to evaluate the mechanism by which miR-29c expression in fibroblasts regulates renal interstitial fibrosis. We stimulated NRK-49F cells with TGF-β1 to mimic the effects of fibrosis in vitro, while unilateral ureteral obstruction (UUO) was performed to obstruct the mid-ureter in mice. MiR-29c mimic or miR-29c inhibitor was used to mediate genes expressions in vitro. The recombinant adeno associated virus (rAAV) vectors carrying a FSP1 promoter that encodes miR-29c precursor or miR-29c inhibitor was used to mediate genes expressions in vivo, and a flank incision was made to expose the left kidney of each animal. In the present study, TGF-β1 was demonstrated to regulate miR-29c expression through Wnt/β-catenin signaling. In contrast, miR-29c appears to inhibit the Wnt/β-catenin pathway by suppressing TPM1 expression. As suggested by this feedback mechanism, miR-29c may be a key fibrosis-related microRNA expressed by fibroblasts in TGF-β1/Wnt/β-catenin-driven renal fibrosis, and manipulation of miR-29c action may accordingly offer a potential therapeutic pathway for renal fibrosis treatment. MiR-29c expression was downregulated in UUO mouse kidneys as well as TGF-β1-treated NRK-49F cells, which thus inhibits myofibroblast formation via targeting of TPM1. Additionally, the production of extracellular matrix (ECM) in renal fibroblasts appears to be controlled by the reciprocal regulation of miR-29c action and the Wnt/β-catenin pathway."	"Demonstration of beta-tropomyosin (Tpm2) and duplication of the alpha-slow tropomyosin gene (TPM3) in Atlantic salmon Salmo salar. Beta tropomyosin (Tpm2) is demonstrated for the first time at the protein level in a fish species, using a combination of electrophoresis, mass spectrometric peptide mapping and end-group analysis. Tpm2 accounts for 50% of the total tropomyosin in slow trunk muscle of the adult Atlantic salmon as determined by quantitative carboxypeptidase digestion and is also present in the head and pectoral fin. It is absent in the fast skeletal (lighter-toned) trunk muscle, the most abundant muscle, which is composed solely of an alpha-fast (Tpm1) isoform. In contrast to the mammalian homologues, salmon Tpm2 migrates faster than salmon Tpm1 in the presence of anionic detergent. Other distinguishing characteristics are a reduced content of cysteine (one per chain) and tyrosine (five per chain) and a unique carboxyl-terminal region (residues 276-284). Two isoforms (paralogs) of alpha-slow tropomyosin (Tpm3) having different contents of methionine and histidine exist in slow trunk muscle indicating duplication of the TPM3 gene. Minor skeletal muscles, surveyed for the first time, contain a mix of at least two tropomyosins - Tpm2 (~ 50% of total) in pectoral fin, jaw and tongue and another isoform, either Tpm1 (pectoral fin) or alpha-1-like Tpm (jaw and tongue). Cheek muscle contains Tpm1 and alpha 1-like Tpm in varying proportion depending upon the section (light or dark). Of the two tropomyosins in tongue, Tpm2 displays comparatively weaker affinity for troponin-Sepharose. A feature of the major sarcomeric tropomyosins in Atlantic salmon is a pair of neighbouring glycines situated between residues 20-90."	"TPM1 is a Novel Predictive Biomarker for Gastric Cancer Diagnosis and Prognosis. Tropomyosin alpha-1 chain (TPM1) is a member of the tropomyosin family and the expression of TPM1 is found to be dysregulated in various tumors. The present study aimed to investigate the clinical performance and significance of TPM1 in gastric cancer. First, the levels of TPM1 mRNA and protein were detected through real-time polymerase chain reaction (RT-qPCR) and immunohistochemistry (IHC) respectively. The correlation between TPM1 expression and clinicopathological variables was analyzed. Then, receiver operating characteristic (ROC) curve was applied to determine the diagnostic performance of TPM1 in gastric cancer. Finally, overall survival analysis was carried out using Kaplan-Meier method in order to determine the prognostic performance of TPM1 in gastric cancer. Compared with the controls, TPM1 mRNA and protein expression levels were significantly downregulated in patients with gastric cancer. Downregulation of TPM1 was associated with depth of invasion and tumor node metastasis (TNM; p = 0.0030 and 0.0175, respectively). Furthermore, TPM1 might be a novel predictive biomarker for gastric cancer with an area under curve (AUC) of 0.8327. Overall survival analysis indicated that low TPM1 expression predicted poor survival (log-rank test, p = 0.0058). TPM1 might be a novel predictive diagnostic and prognostic biomarker for gastric cancer (95% con-fidence interval = 0.7705 - 0.8949, p &lt; 0.0001)."	"Left Ventricular Noncompaction and Congenital Heart Disease Increases the Risk of Congestive Heart Failure. Left ventricular noncompaction (LVNC) is a hereditary cardiomyopathy that is associated with high morbidity and mortality rates. Recently, LVNC was classified into several phenotypes including congenital heart disease (CHD). However, although LVNC and CHD are frequently observed, the role and clinical significance of genetics in these cardiomyopathies has not been fully evaluated. Therefore, we aimed to evaluate the impact on the perioperative outcomes of children with concomitant LVNC and CHD using next-generation sequencing (NGS). From May 2000 to August 2018, 53 Japanese probands with LVNC (25 males and 28 females) were enrolled and we screened 182 cardiomyopathy-associated genes in these patients using NGS. The age at diagnosis of the enrolled patients ranged from 0 to 14 years (median: 0.3 months). A total of 23 patients (43.4%) were diagnosed with heart failure, 14 with heart murmur (26.4%), and 6 with cyanosis (11.3%). During the observation period, 31 patients (58.5%) experienced heart failure and 13 (24.5%) developed arrhythmias such as ventricular tachycardia, supraventricular tachycardia, and atrioventricular block. Moreover, 29 patients (54.7%) had ventricular septal defects (VSDs), 17 (32.1%) had atrial septal defects, 10 had patent ductus arteriosus (PDA), and 7 (13.2%) had Ebstein's anomaly and double outlet right ventricle. Among the included patients, 30 underwent surgery, 19 underwent biventricular repair, and 2 underwent pulmonary artery banding, bilateral pulmonary artery banding, and PDA ligation. Overall, 30 genetic variants were identified in 28 patients with LVNC and CHD. Eight variants were detected in MYH7 and two in TPM1. Echocardiography showed lower ejection fractions and more thickened trabeculations in the left ventricle in patients with LVNC and CHD than in age-matched patients with VSDs. During follow-up, 4 patients died and the condition of 8 worsened postoperatively. The multivariable proportional hazards model showed that heart failure, LV ejection fraction of &lt; 24%, LV end-diastolic diameter z-score of &gt; 8.56, and noncompacted-to-compacted ratio of the left ventricular apex of &gt; 8.33 at the last visit were risk factors for survival. LVNC and CHD are frequently associated with genetic abnormalities. Knowledge of the association between CHD and LVNC is important for the awareness of clinical implications during the preoperative and postoperative periods to identify the populations who are at an increased risk of additional morbidity."	"Low Level Antibodies Against Alpha-Tropomyosin Are Associated With Increased Risk of Coronary Heart Disease. Natural autoantibodies have been implicated to play a key role in the pathogenesis of coronary heart disease (CHD) because they augment autoimmune activation. The aim of this study was to identify novel specific autoantibodies of CHD, and analyze the relationship between their levels and CHD risk indicators. First, clinical data and sera from CHD patients were collected. Then, one protein microarray containing 37 proteins that represent candidate autoantigens was developed. The arrays were used to profile autoantibodies in randomly selected sera from 35 samples (20 CHD patients, and 15 healthy controls). After that, microarray data were analyzed and autoantibodies for CHD were screened out. Then, ELISA detection was conducted to validate the differentiable autoantibodies using larger numbers of serum samples (131 CHD patients, and 131 healthy controls). Finally, the associations of antibodies with CHD risk indicator parameters were assessed. Inter-group comparison by microarray indicated that three CHD novel autoantibodies, including glucose-6-phosphate isomerase (G6PI), alpha-tropomyosin (TPM1), and heterogeneous nuclear ribonucleoprotein D-like (HnRNPDL), were significantly (P &lt; 0.05) increased when compared with the healthy controls. Moreover, a significant increase of IgG autoantibodies for these three autoantigens was confirmed in CHD patients by ELISA (P &lt; 0.0001). The correction analysis revealed a negative correlation of anti-TPM1 antibody levels and total cholesterol (P = 0.0034), and low-density lipoprotein cholesterol (P = 0.0086), respectively. G6PI, TPM1, and HnRNPDL were CHD natural autoantigens, and serum anti-TPM1 antibody could be used as a potential marker to predict the risk for CHD patients."	"A potential seedling-stage evaluation method for heat tolerance in Indian mustard (Brassica juncea L. Czern and Coss). Heat stress is one of the major limitations to crop productivity. In the present study, an efficient method of screening was adopted for identification of heat tolerant Indian Mustard genotypes by applying 4-day cycle of heat stress to seedlings. Thirty-four genotypes were screened based upon lipid peroxidation and survival percentage and classified them into five different classes according to membership function value (MFV) for response against high temperature. The maximum and minimum value of mean MFV were 0.89 (highly heat tolerant, TPM1) and 0.12 (highly heat sensitive, JM2), respectively. The coefficient of determination (R<sup>2</sup>) between the mean MFV and the heat tolerance index (HTI) of MDA content, survival percentage was 0.914 and 0.808 suggesting that these parameters are reliable traits to evaluate the heat tolerance of Brassica juncea genotypes. The evaluation method was further validated using identified contrasting genotypes and assessment of heat stress associated biochemical parameters. Results showed efficient recovery of tolerant genotype as compared to sensitive genotype. Expression profiling of heat stress-related genes (HSP21 and HSFA7A) showed significant upregulation in the tolerant genotype (TPM1) (9.73- and 4.87-fold, respectively) as compared to the sensitive genotype (JM2) (4.18- and 1.73-fold, respectively) under heat stress condition. The results imply development of an efficient screening method which is useful for evaluation and breeding of thermo-tolerant B. juncea."	"Separation of HCM and LQT Cardiac Diseases with Machine Learning of Ca2+ Transient Profiles.  Modeling human cardiac diseases with induced pluripotent stem cells not only enables to study disease pathophysiology and develop therapies but also, as we have previously showed, it can offer a tool for disease diagnostics. We previously observed that a few genetic cardiac diseases can be separated from each other and healthy controls by applying machine learning to Ca<sup>2+</sup> transient signals measured from iPSC-derived cardiomyocytes (CMs).  For the current research, 419 hypertrophic cardiomyopathy (HCM) transient signals and 228 long QT syndrome (LQTS) transient signals were measured. HCM signals included data recorded from iPSC-CMs carrying either α-tropomyosin, i.e., TPM1 (HCMT) or MYBPC3 or myosin-binding protein C (HCMM) mutation and LQTS signals included data recorded from iPSC-CMs carrying potassium voltage-gated channel subfamily Q member 1 (KCNQ1) mutation (long QT syndrome 1 [LQT1]) or KCNH2 mutation (long QT syndrome 2 [LQT2]). The main objective was to study whether and how effectively HCMM and HCMT can be separated from each other as well as LQT1 from LQT2.  After preprocessing those Ca<sup>2+</sup> signals where we computed peak waveforms we then classified the two mutations of both disease pairs by using several different machine learning methods.  We obtained excellent classification accuracies of 89% for HCM and even 100% for LQT at their best.  The results indicate that the methods applied would be efficient for the identification of these genetic cardiac diseases."	"Analysis of De Novo Mutations in Sporadic Cardiomyopathies Emphasizes Their Clinical Relevance and Points to Novel Candidate Genes. The vast majority of cardiomyopathies have an autosomal dominant inheritance; hence, genetic testing is typically offered to patients with a positive family history. A de novo mutation is a new germline mutation not inherited from either parent. The purpose of our study was to search for de novo mutations in patients with cardiomyopathy and no evidence of the disease in the family. Using next-generation sequencing, we analyzed cardiomyopathy genes in 12 probands. In 8 (66.7%), we found de novo variants in known cardiomyopathy genes (TTN, DSP, SCN5A, TNNC1, TPM1, CRYAB, MYH7). In the remaining probands, the analysis was extended to whole exome sequencing in a trio (proband and parents). We found de novo variants in genes that, so far, were not associated with any disease (TRIB3, SLC2A6), a possible disease-causing biallelic genotype (APOBEC gene family), and a de novo mosaic variant without strong evidence of pathogenicity (UNC45A). The high prevalence of de novo mutations emphasizes that genetic screening is also indicated in cases of sporadic cardiomyopathy. Moreover, we have identified novel cardiomyopathy candidate genes that are likely to affect immunological function and/or reaction to stress that could be especially relevant in patients with disease onset associated with infection/infestation."	"Tropomyosin isoforms regulate cofilin 1 activity by modulating actin filament conformation. Tropomyosin and cofilin are involved in the regulation of actin filament dynamic polymerization and depolymerization. Binding of cofilin changes actin filaments structure, leading to their severing and depolymerization. Non-muscle tropomyosin isoforms were shown before to differentially regulate the activity of cofilin 1; products of TPM1 gene stabilized actin filaments, but products of TPM3 gene promoted cofilin-dependent severing and depolymerization. Here, conformational changes at the longitudinal and lateral interface between actin subunits resulting from tropomyosin and cofilin 1 binding were studied using skeletal actin and yeast wild type and mutant Q41C and S265C actins. Cross-linking of F-actin and fluorescence changes in F-actin labeled with acrylodan at Cys41 (in D-loop) or Cys265 (in H-loop) showed that tropomyosin isoforms differentially regulated cofilin-induced conformational rearrangements at longitudinal and lateral filament interfaces. Tryptic digestion of F-Mg-actin confirmed the differences between tropomyosin isoforms in their regulation of cofilin-dependent changes at actin-actin interfaces. Changes in the fluorescence of AEDANS attached to C-terminal Cys of actin, as well as FRET between Trp residues in actin subdomain 1 and AEDANS, did not show differences in the conformation of the C-terminal segment of F-actin in the presence of different tropomyosins ± cofilin 1. Therefore, actin's D- and H-loop are the sites involved in regulation of cofilin activity by tropomyosin isoforms."	"Identification of Key Biomarkers in Bladder Cancer: Evidence from a Bioinformatics Analysis. Bladder cancer (BCa) is one of the most common malignancies and has a relatively poor outcome worldwide. However, the molecular mechanisms and processes of BCa development and progression remain poorly understood. Therefore, the present study aimed to identify candidate genes in the carcinogenesis and progression of BCa. Five GEO datasets and TCGA-BLCA datasets were analyzed by statistical software R, FUNRICH, Cytoscape, and online instruments to identify differentially expressed genes (DEGs), to construct protein‒protein interaction networks (PPIs) and perform functional enrichment analysis and survival analyses. In total, we found 418 DEGs. We found 14 hub genes, and gene ontology (GO) analysis revealed DEG enrichment in networks and pathways related to cell cycle and proliferation, but also in cell movement, receptor signaling, and viral carcinogenesis. Compared with noncancerous tissues, TPM1, CRYAB, and CASQ2 were significantly downregulated in BCa, and the other hub genes were significant upregulated. Furthermore, MAD2L1 and CASQ2 potentially play a pivotal role in lymph nodal metastasis. CRYAB and CASQ2 were both significantly correlated with overall survival (OS) and disease-free survival (DFS). The present study highlights an up to now unrecognized possible role of CASQ2 in cancer (BCa). Furthermore, CRYAB has never been described in BCa, but our study suggests that it may also be a candidate biomarker in BCa."	"Reevaluating the Genetic Contribution of Monogenic Dilated Cardiomyopathy. Dilated cardiomyopathy (DCM) is genetically heterogeneous, with &gt;100 purported disease genes tested in clinical laboratories. However, many genes were originally identified based on candidate-gene studies that did not adequately account for background population variation. Here we define the frequency of rare variation in 2538 patients with DCM across protein-coding regions of 56 commonly tested genes and compare this to both 912 confirmed healthy controls and a reference population of 60 706 individuals to identify clinically interpretable genes robustly associated with dominant monogenic DCM. We used the TruSight Cardio sequencing panel to evaluate the burden of rare variants in 56 putative DCM genes in 1040 patients with DCM and 912 healthy volunteers processed with identical sequencing and bioinformatics pipelines. We further aggregated data from 1498 patients with DCM sequenced in diagnostic laboratories and the Exome Aggregation Consortium database for replication and meta-analysis. Truncating variants in TTN and DSP were associated with DCM in all comparisons. Variants in MYH7, LMNA, BAG3, TNNT2, TNNC1, PLN, ACTC1, NEXN, TPM1, and VCL were significantly enriched in specific patient subsets, with the last 2 genes potentially contributing primarily to early-onset forms of DCM. Overall, rare variants in these 12 genes potentially explained 17% of cases in the outpatient clinic cohort representing a broad range of adult patients with DCM and 26% of cases in the diagnostic referral cohort enriched in familial and early-onset DCM. Although the absence of a significant excess in other genes cannot preclude a limited role in disease, such genes have limited diagnostic value because novel variants will be uninterpretable and their diagnostic yield is minimal. In the largest sequenced DCM cohort yet described, we observe robust disease association with 12 genes, highlighting their importance in DCM and translating into high interpretability in diagnostic testing. The other genes analyzed here will need to be rigorously evaluated in ongoing curation efforts to determine their validity as Mendelian DCM genes but have limited value in diagnostic testing in DCM at present. This data will contribute to community gene curation efforts and will reduce erroneous and inconclusive findings in diagnostic testing."	"[Bioinformatics analysis of severe emphysema genome microarray based on GEO database]. Objective: To investigate differential genes (DEGs) between no/mild and severe emphysema by bioinformatics analysis. Methods: The microarray dataset GSE1650, of lung tissue in no/mild and severe emphysema, was downloaded from the GEO database, and DEGs were obtained by t test. Analysis of DEGs based on DAVID database was used to obtain gene ontology (GO) and kyoto encyclopedia of genes and genomes (KEGG) pathway. The protein-protein interaction network (PPI) was established using STRING database to identify hub genes. Results: A total of 76 DEGs were obtained, of which 62 genes were up-regulated and 14 genes were down-regulated in severe emphysema group. Gene ontology showed that the DEGs were mainly involved in neutrophil chemotaxis, cellular response to interleukin-1, extracellular matrix organization, immune response, and KEGG pathway involved cytokine-cytokine receptor interaction, ECM-receptor interaction, PI3K-Akt signaling pathway, platelet activation. Seventeen hub genes were recognized by PPI analysis, including CXCL8, RRAD, CLU, TIMP1, SEPP1, ISLR, BGN, COL1A1, COLIA2, ACTA2, ACTN1, FIGF, TPM1, TPM2, LUM, COL6A3 and TAGLN. Among them, fifteen genes (CLU, TIMP1, SEPP1, ISLR, BGN, COLIA2, COL1A1, ACTA2, ACTN1, FIGF, TPM1, TPM2, LUM, COL6A3, TAGLN) were up-regulated and two genes (CXCL8, RRAD) were down-regulated. Conclusion: Bioinformatics analysis based on GEO database showed that there were DEGs between non/mild and severe emphysema patients. 目的: 通过生物信息学的方法分析无/轻度肺气肿与严重肺气肿患者的差异基因。 方法: 从基因表达数据库(GEO)下载无/轻度肺气肿与严重肺气肿患者的肺组织芯片数据GSE1650,通过t检验获得差异基因。然后使用DAVID数据库对差异表达基因进行基因本体(GO)及京都基因与基因组百科全书(KEGG)信号通路富集分析。再利用STRING数据库对差异表达基因进行蛋白相互作用网络(PPI)分析,并选出关键基因。 结果: 共获得76个差异基因,其中在严重肺气肿组中表达上调的基因有62个,表达下调的基因有14个。GO富集分析表明差异基因主要参与了中性粒细胞趋化、细胞对白细胞介素-1的反应、细胞外基质(ECM)组织、免疫反应。KEGG信号通路富集分析主要包括了细胞因子-细胞因子受体相互作用、ECM受体相互作用、磷脂酰肌醇3激酶-蛋白激酶B(PI3K-AKT)信号通路、血小板激活。PPI分析筛选获得了17个关键基因,分别为CXCL8、RRAD、CLU、TIMP1、SEPP1、ISLR、BGN、COL1A1、COLIA2、ACTA2、ACTN1、FIGF、TPM1、TPM2、LUM、COL6A3、TAGLN。其中有15个上调基因(CLU、TIMP1、SEPP1、ISLR、BGN、COLIA2、COL1A1、ACTA2、ACTN1、FIGF、TPM1、TPM2、LUM、COL6A3、TAGLN),2个下调基因(CXCL8、RRAD)。 结论: 基于GEO数据库的生物信息学分析,严重肺气肿与无/轻度肺气肿患者存在差异基因。."	"Different formins restrict localization of distinct tropomyosins on dorsal stress fibers in osteosarcoma cells. Formins and tropomyosins (Tpms) are two central components of the microfilaments. Formins are involved in the nucleation and polymerization of actin filaments, and Tpms form along the actin stress fibers to regulate their dynamics. However, the correlation between formins and Tpms remains unclear. Here, we elucidated the function of distinct formins and their specific regulation to the subcellular-localization of Tpm isoforms on dorsal stress fibers in human osteosarcoma cells. Knockdown of individual formin isoform led to varied defects in actin stress fiber network, but did not affect the expression level of other formin isoforms and Tpms. Further investigation showed that different formins regulated distinct Tpm isoforms in decorating dorsal stress fibers. Specifically, DAAM1 and FHOD1 restricted the distal end expression of Tpm3.1; INF2 controlled the approximate localization of Tpm4.2; and Dia1 partially modulated the dorsal localization of Tpm1.6. Taken together, these data provide microscopy experimental evidence that different formins restrict the localization of distinct Tpm isoforms on dorsal actin stress fibers."	"Integrated Multiomics Approach to Identify Genetic Underpinnings of Heart Failure and Its Echocardiographic Precursors: Framingham Heart Study. Heart failure (HF) may arise from alterations in metabolic, structural, and signaling pathways, but its genetic architecture is incompletely understood. To elucidate potential genetic contributors to cardiac remodeling and HF, we integrated genome-wide single-nucleotide polymorphisms, gene expression, and DNA methylation using a transomics analytical approach. We used robust rank aggregation (where the position of a certain gene in a rank order list [based on statistical significance level] is tested against a randomly shuffled rank order list) to derive an integrative transomic score for each annotated gene associated with a HF trait. We evaluated ≤8372 FHS (Framingham Heart Study) participants (54% women; mean age, 55±17 years). Of these, 62 (0.7%) and 35 (0.4%) had prevalent HF with reduced ejection fraction and HF with preserved left ventricular ejection fraction, respectively. During a mean follow-up of 8.5 years (minimum-maximum, 0.005-18.6 years), 223 (2.7%) and 234 (2.8%) individuals developed incident HF with reduced ejection fraction and HF with reduced ejection fraction, respectively. Top genes included MMP20 and MTSS1 (promotes actin assembly at intercellular junctions) for left ventricular systolic function; ITGA9 (receptor for VCAM1 [vascular cell protein 1]) and C5 for left ventricular remodeling; NUP210 (expressed during myogenic differentiation) and ANK1 (cytoskeletal protein) for diastolic function; TSPAN16 and RAB11FIP3 (involved in regulation of actin cytoskeleton) for prevalent HF with reduced ejection fraction; ANKRD13D and TRIM69 for incident HF with reduced ejection fraction; HPCAL1 and PTTG1IP for prevalent HF with reduced ejection fraction; and ZNF146 (close to the COX7A1 enzyme) and ZFP3 (close to SLC52A1-the riboflavin transporter) for incident HF with reduced ejection fraction. We tested the HF-related top single-nucleotide polymorphisms in the UK biobank, where rs77059055 in TPM1 (minor allele frequency, 0.023; odds ratio, 0.83; P=0.002) remained statistically significant upon Bonferroni correction. Our integrative transomics approach offers insights into potential molecular and genetic contributors to HF and its precursors. Although several of our candidate genes have been implicated in HF in animal models, independent replication is warranted."	"Association of single nucleotide polymorphisms in the 3'UTR region of TPM1 gene with dilated cardiomyopathy: A case-control study. Tropomyosin 1 (TPM1) is a protein that constitutes the sarcomere filaments and is encoded by the TPM1 gene. The aim of the present study is to investigate the correlation between the 3' untranslated region (3'UTR) single nucleotide polymorphisms (SNPs) of the TPM1 gene and dilated cardiomyopathy (DCM).A total of 245 patients with DCM and 245 healthy controls were recruited with 5 ml of venous blood. Genomic DNA was extracted to analyze the TPM1 gene rs12148828, rs11558748, rs707602, rs6738, rs7178040 loci genotypes, and the plasma miR-21 level was analyzed by reverse transcription-PCR (RT-PCR).The risk of DCM development in the rs6738 locus G allele carriers were 1.69 times more than A allele carriers (95% CI: 1.22-2.33, P = .001). Age and gender had no effect on the association of TPM1 gene SNPs with DCM risk (P &gt; .05). The plasma miR-21 level of TPM1 gene rs6738 locus AA carriers was significantly higher than that of the AG and GG genotypes (P &lt; .001).The SNPs of TPM1 gene rs6738 locus is associated with the risk of DCM, which may be related to the abnormal increase of miR-21 level in DCM patients, but further research is needed to prove the causal relationship between miR-21 level and DCM risk."	"Tanshinone IIA attenuates high glucose induced human VSMC proliferation and migration through miR-21-5p-mediated tropomyosin 1 downregulation. The proliferation and migration of vascular smooth muscle cells (VSMCs) play important roles in the development and progression of diabetes-related vascular complications. Recently, microRNAs (miRNAs) have been suggested to be involved in the pathogenesis of vascular diseases. This study was designed to investigate the influences of tanshinone IIA, an active compound extracted from Chinese herb Salvia miltiorrhiza, on the proliferation and migration of human aortic VSMCs (HASMCs). cultured in a high glucose medium and the underlying mechanisms related miRNAs. Using a miRNA microarray method, we profiled the miRNA expression signature in human aortic VSMCs (HASMCs) exposed to normal glucose, high glucose with and without Tanshinone IIA. Cell proliferation was measured with 5-bromo-2'-deoxyuridine (BrdU) incorporation assay. Cell migration was evaluated using transwell migration assay and wound scratch assay. Western blot was used to examine the expression of tropomyosin 1 (TPM1) and miRNA level was quantified by real-time PCR. The results showed that several miRNAs that were highly expressed in the high glucose group were significantly decreased in the high glucose with Tanshinone IIA group compared with the normal glucose group (P &lt; 0.05). Among these miRNAs, miR-21-5p was significantly upregulated in the high glucose group and downregulated after Tanshinone IIA treatment (P &lt; 0.05). The depletion of miR-21-5p in HASMCs resulted in decreased cell proliferation and migration (P &lt; 0.05). Moreover, we found that Tanshinone IIA inhibited proliferation and migration partly through miR-21-5p-mediated TPM1 downregulation (P &lt; 0.05). In conclusion, the present study demonstrates that Tanshinone IIA is able to protect HASMCs from high glucose-induced proliferation and migration through regulating expression of miRNAs."	"Cardiomyopathy-associated mutations in tropomyosin differently affect actin-myosin interaction at single-molecule and ensemble levels. In the heart, mutations in the TPM1 gene encoding the α-isoform of tropomyosin lead, in particular, to the development of hypertrophic and dilated cardiomyopathies. We compared the effects of hypertrophic, D175N and E180G, and dilated, E40K and E54K, cardiomyopathy mutations in TPM1 gene on the properties of single actin-myosin interactions and the characteristics of the calcium regulation in an ensemble of myosin molecules immobilised on a glass surface and interacting with regulated thin filaments. Previously, we showed that at saturating Ca<sup>2+</sup> concentration the presence of Tpm on the actin filament increases the duration of the interaction. Here, we found that the studied Tpm mutations differently affected the duration: the D175N mutation reduced it compared to WT Tpm, while the E180G mutation increased it. Both dilated mutations made the duration of the interaction even shorter than with F-actin. The duration of the attached state of myosin to the thin filament in the optical trap did not correlate to the sliding velocity of thin filaments and its calcium sensitivity in the in vitro motility assay. We suppose that at the level of the molecular ensemble, the cooperative mechanisms prevail in the manifestation of the effects of cardiomyopathy-associated mutations in Tpm."	"miRNA‑183‑5p.1 promotes the migration and invasion of gastric cancer AGS cells by targeting TPM1. MicroRNA‑183 (miR‑183) is a small, non‑coding RNA that is involved in post‑transcriptional processes, is upregulated in gastric cancer and acts as an oncogene in cancer migration. Although fragmentary reports have demonstrated the importance of miR‑183 in gastric cancer, its biofunctions and regulatory effects are still unknown. In the present study, the gene and protein expression levels were determined by reverse transcription‑quantitative PCR and western blot analysis. The connection between miR‑183‑5p.1 and tropomyosin 1 (TPM1) was tested through luciferase reporter experiments. Cell viability, apoptosis and related proteins were detected by MTT assay, flow cytometry, immunofluorescence and western blotting, respectively. The migration and invasion of AGS cells modulated by miR‑183‑5p.1 were analyzed by Transwell assay. TPM1 expression was found to be decreased in gastric cancer tissues and cell lines when compared with normal and adjacent tissues and gastric epithelial cells, and was regulated by miR‑183‑5p.1 targeting TPM1. miR‑183‑5p.1 overexpression facilitated the growth and suppressed the death of AGS cells through Bcl‑2 and P53 proteins. In addition, miR‑183‑5p.1 restricted TPM1, TPM2 and TPM3 protein expression in AGS cells. The excessive levels of miR‑183‑5p.1 promoted the migration and invasion of AGS cells, and inhibited the apoptosis of AGS cells. However, the knockdown of miR‑183‑5p.1 induced the opposite in AGS cells. In conclusion, miR‑183‑5p.1 promotes cell proliferation, migration and invasion by downregulating TPM1 and deactivating the Bcl‑2/P53 signaling pathways in gastric cancer, indicating that miR‑183‑5p.1 and TPM1 may be potential targets for the diagnosis or therapy of gastric cancer in the future."	"Presence of Hypertrophic Cardiomyopathy Related Gene Mutations and Clinical Manifestations in Vietnamese Patients With Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is associated primarily with pathogenic mutations in sarcomeric genes. The aim of this study was to identify the prevalence and distribution of disease-causing mutations in HCM-associated genes and the genotype-phenotype relationship in Vietnamese patients with HCM.Methods and Results:Genetic testing was performed by next-generation sequencing in 104 unrelated probands for 23 HCM-related genes and in 57 family members for the mutation(s) detected. Clinical manifestations were recorded for genotype-phenotype correlation analysis. Mutation detection rate was 43.4%. Mutations inMYBPC3accounted for 38.6%, followed byTPM1(20.5%),MYH7(18.2%),TNNT2(9.1%),TNNI3(4.5%) andMYL2(2.3%). A mutation inGLAassociated with Fabry disease was found in 1 patient. A mutation inTPM1(c.842T&gt;C, p.Met281Thr) was identified in 8 unrelated probands (18.2%) and 8 family members from 5 probands. Genotype-positive status related toMYH7,TPM1, andTNNT2mutations was associated with severe clinical manifestations.MYH7-positive patients displayed worse prognosis compared withMYBPC3-positive patients. Interestingly,TPM1c.842T&gt;C mutation was associated with high penetrance and severe HCM phenotype. We report for the first time the prevalence of HCM-related gene variants in Vietnamese patients with HCM.MYH7,TPM1, andTNNT2mutations were associated with unfavorable prognosis."	"Identification of potential therapeutic targets of deer antler extract on bone regulation based on serum proteomic analysis. Traditional Chinese medicine has been proven to be effective in treating human diseases according to a long-term observation for more than 2000 years. However, the precise molecular mechanisms of a majority of the medications are still largely unknown. Deer antler has been clinically used as an effective animal medication in traditional Chinese medicine for many centuries. Previous studies have demonstrated that antler extracts play crucial roles in promoting bone and cartilage development, growth and repair. However, the underlying molecular mechanism remains to be elucidated. In the present study, we applied isobaric tags for relative and absolute quantitation (iTRAQ) technology and a systematic bioinformatics analysis accompanied with validation method to obtain a full spectrum of the serum protein profiles under deer antler extract treatment. We identified a complex interaction network formed by the positive regulation of Tropomyosins (Tpm1, 2 and 4), WD repeat-containing protein 1 (Wdr1), Alpha-actinin-1 (Actn1) and Destrin (Dstn) and the negative regulation of Alpha-2-macroglobulin (A2m), Serine protease inhibitor A3 N (Serpina3n) and Apolipoproteins (Apoh and Apof), which coordinately interact with multiple proteins and signaling pathways. Our results suggest that the therapeutic effects of deer antler extract on treating bone diseases might achieved though the regulation of bone formation and remodeling by controlling a series of serum proteins and signaling pathways that were essential for osteoblast and osteoclast activities. Thus, this study has greatly deepened the current knowledge about the molecular mechanism of therapeutic effects of deer antler extract on bone diseases such as osteoporosis."	"Thin filament dysfunctions caused by mutations in tropomyosin Tpm3.12 and Tpm1.1. Tropomyosin is the major regulator of the thin filament. In striated muscle its function is to bind troponin complex and control the access of myosin heads to actin in a Ca<sup>2+</sup>-dependent manner. It also participates in the maintenance of thin filament length by regulation of tropomodulin and leiomodin, the pointed end-binding proteins. Because the size of the overlap between actin and myosin filaments affects the number of myosin heads which interact with actin, the filament length is one of the determinants of force development. Numerous point mutations in genes encoding tropomyosin lead to single amino acid substitutions along the entire length of the coiled coil that are associated with various types of cardiomyopathy and skeletal muscle disease. Specific regions of tropomyosin interact with different binding partners; therefore, the mutations affect diverse tropomyosin functions. In this review, results of studies on mutations in the genes TPM1 and TPM3, encoding Tpm1.1 and Tpm3.12, are described. The paper is particularly focused on mutation-dependent alterations in the mechanisms of actin-myosin interactions and dynamics of the thin filament at the pointed end."	"Signaling pathway network alterations in human ovarian cancers identified with quantitative mitochondrial proteomics. Molecular network changes are the hallmark of the pathogenesis of ovarian cancers (OCs). Network-based biomarkers benefit for the effective treatment of OC. This study sought to identify key pathway-network alterations and network-based biomarkers for clarification of molecular mechanisms and treatment of OCs. Ingenuity Pathway Analysis (IPA) platform was used to mine signaling pathway networks with 1198 human tissue mitochondrial differentially expressed proteins (mtDEPs) and compared those pathway network changes between OCs and controls. The mtDEPs in important cancer-related pathway systems were further validated with qRT-PCR and Western blot in OC cell models. Moreover, integrative analysis of mtDEPs and Cancer Genome Atlas (TCGA) data from 419 patients was used to identify hub molecules with molecular complex detection method. Hub molecule-based survival analysis and multiple multivariate regression analysis were used to identify survival-related hub molecules and hub molecule signature model. Pathway network analysis revealed 25 statistically significant networks, 192 canonical pathways, and 5 significant molecular/cellular function models. A total of 52 canonical pathways were activated or inhibited in cancer pathogenesis, including antigen presentation, mitochondrial dysfunction, GP6 signaling, EIF2 signaling, and glutathione-mediated detoxification. Of them, mtDEPs (TPM1, CALR, GSTP1, LYN, AKAP12, and CPT2) in those canonical pathway and molecular/cellular models were validated in OC cell models at the mRNA and protein levels. Moreover, 102 hub molecules were identified, and they were regulated by post-translational modifications and functioned in multiple biological processes. Of them, 62 hub molecules were individually significantly related to OC survival risk. Furthermore, multivariate regression analysis of 102 hub molecules identified significant seven hub molecule signature models (HIST1H2BK, ALB, RRAS2, HIBCH, EIF3E, RPS20, and RPL23A) to assess OC survival risks. These findings provided the overall signaling pathway network profiling of human OCs; offered scientific data to discover pathway network-based cancer biomarkers for diagnosis, prognosis, and treatment of OCs; and clarify accurate molecular mechanisms and therapeutic targets. These findings benefit for the discovery of effective and reliable biomarkers based on pathway networks for OC predictive and personalized medicine."	"Tropomyosin-1 Functions as a Tumor Suppressor with Respect to Cell Proliferation, Angiogenesis and Metastasis in Renal Cell Carcinoma. Background: Tropomyosin-1 (TPM1) has long been known to be an actin-binding cytoskeletal protein. Multiple recent studies have revealed that TPM1 is down-regulated in various malignant tumors, including renal cell carcinoma (RCC). Methods: To further verify its role in RCC, transfection of a reconstructed plasmid was used to bi-directionally regulate TPM1 levels. A colony formation assay, tube formation assay and invasion assay were adopted to assess cell proliferation, angiogenesis and metastasis, respectively, in the 786-O and ACHN cell lines. The xenograft tumor sizes were measured, and the microvessel density (MVD) was quantified. Western blot and immunohistochemistry (IHC) were used to detect key proteins involved in these processes. Results: The colony formation assay and xenograft tumor models illustrated that TPM1 up-regulation inhibited RCC cell proliferation. The tube formation assay and detection of vascular endothelial growth factor (VEGF) and cluster of differentiation 34 (CD34) in xenografts revealed that TPM1 up-regulation inhibited angiogenesis in RCC. The invasion assay and detection of the E-cadherin and matrix metalloproteinases 9 (MMP-9) levels in xenografts demonstrated that TPM1 up-regulation inhibited tumor metastasis in RCC. Opposing effects were absent in TPM1 down-regulation models. Conclusions: TPM1 functions as a tumor suppressor with respect to cell proliferation, angiogenesis and metastasis in RCC, suggesting that it is a potential therapeutic target for advanced RCC."	"Genetic Variants Are Not Rare in ICD Candidates with Dilated Cardiomyopathy: Time for Next-Generation Sequencing? Sudden cardiac death (SCD) risk stratification in dilated cardiomyopathy (DCM) has been based on left ventricular ejection fraction (LVEF), even though SCD may occur with LVEF &gt; 35%. Family history of unexplained SCD, especially in the young, raises concern about potential inheritable risk factors. It remains largely unknown how genetic tests can be integrated into clinical practice, particularly in the selection of implantable cardioverter defibrillator (ICD) candidates. We aimed to assess the diagnostic yield of genetic testing in DCM patients with a class I recommendation for ICD implantation, based on current guidelines. We included ambulatory stable adult patients with idiopathic or familial DCM with previously implanted ICD. Molecular analysis included 15 genes (LMNA, MYH7, MYBPC3, TNNT2, ACTC1, TPM1, CSRP3, TCAP, SGCD, PLN, MYL2, MYL3, TNNI3, TAZ, and LDB3) using next-generation sequencing. We evaluated 21 patients, 12 (57%) males and 9 (43%) with familial DCM, including 3 (14%) with a family history of premature unexplained SCD. Mean age at DCM diagnosis was 40 ± 2 years, and mean age at ICD implantation was 50 ± 12 years. LVEF was 27 ± 9%, and LV end-diastolic diameter was 65 ± 7 mm. Genetic variants were found in six (29%) patients, occurring in 5 genes: TPM1, TNNT2, MYH7, PLN, and MYBPC3. The majority were classified as variants of uncertain significance. Family history of SCD was present in both patients with PLN variants. In patients with DCM and ICD, genetic variants could be identified in a significant proportion of patients in several genes, highlighting the potential role of genetics in DCM SCD risk stratification."	"Identification of Proteins Differentially Expressed by Adipose-derived Mesenchymal Stem Cells Isolated from Immunodeficient Mice. Although cell therapy using adipose-derived mesenchymal stem cells (AdMSCs) regulates immunity, the degree to which cell quality and function are affected by differences in immunodeficiency of donors is unknown. We used liquid chromatography tandem-mass spectrometry (LC MS/MS) to identify the proteins expressed by mouse AdMSCs (mAsMSCs) isolated from normal (C57BL/6) mice and mice with severe combined immunodeficiency (SCID). The protein expression profiles of each strain were 98%-100% identical, indicating that the expression levels of major proteins potentially associated with the therapeutic effects of mAdMSCs were highly similar. Further, comparable levels of cell surface markers (CD44, CD90.2) were detected using flow cytometry or LC MS/MS. MYH9, ACTN1, CANX, GPI, TPM1, EPRS, ITGB1, ANXA3, CNN2, MAPK1, PSME2, CTPS1, OTUB1, PSMB6, HMGB1, RPS19, SEC61A1, CTNNB1, GLO1, RPL22, PSMA2, SYNCRIP, PRDX3, SAMHD1, TCAF2, MAPK3, RPS24, and MYO1E, which are associated with immunity, were expressed at higher levels by the SCID mAdMSCs compared with the C57BL/6 mAdMSCs. In contrast, ANXA9, PCBP2, LGALS3, PPP1R14B, and PSMA6, which are also associated with immunity, were more highly expressed by C57BL/6 mAdMSCs than SCID mAdMSCs. These findings implicate these two sets of proteins in the pathogenesis and maintenance of immunodeficiency."	"MicroRNA-655-3p and microRNA-497-5p inhibit cell proliferation in cultured human lip cells through the regulation of genes related to human cleft lip. The etiology of cleft lip with or without cleft palate (CL/P), a common congenital birth defect, is complex and involves the contribution of genetic and environmental factors. Although many candidate genes have been identified, the regulation and interaction of these genes in CL/P remain unclear. In addition, the contribution of microRNAs (miRNAs), non-coding RNAs that regulate the expression of multiple genes, to the etiology of CL/P is largely unknown. To identify the signatures of causative biological pathways for human CL/P, we conducted a systematic literature review for human CL/P candidate genes and subsequent bioinformatics analyses. Functional enrichment analyses of the candidate CL/P genes were conducted using the pathway databases GO and KEGG. The miRNA-mediated post-transcriptional regulation of the CL/P candidate genes was analyzed with miRanda, PITA, and TargetScan, and miRTarbase. Genotype-phenotype association analysis was conducted using GWAS. The functional significance of the candidate miRNAs was evaluated experimentally in cell proliferation and target gene regulation assays in human lip fibroblasts. Through an extensive search of the main biomedical databases, we mined 177 genes with mutations or association/linkage reported in individuals with CL/P, and considered them as candidate genes for human CL/P. The genotype-phenotype association study revealed that mutations in 12 genes (ABCA4, ADAM3A, FOXE1, IRF6, MSX2, MTHFR, NTN1, PAX7, TP63, TPM1, VAX1, and WNT9B) were significantly associated with CL/P. In addition, our bioinformatics analysis predicted 16 microRNAs (miRNAs) to be post-transcriptional regulators of CL/P genes. To validate the bioinformatics results, the top six candidate miRNAs (miR-124-3p, miR-369-3p, miR-374a-5p, miR-374b-5p, miR-497-5p, and miR-655-3p) were evaluated by cell proliferation/survival assays and miRNA-gene regulation assays in cultured human lip fibroblasts. We found that miR-497-5p and miR-655-3p significantly suppressed cell proliferation in these cells. Furthermore, the expression of the predicted miRNA-target genes was significantly downregulated by either miR-497-5p or miR-655-3p mimic. Expression of miR-497-5p and miR-655-3p suppresses cell proliferation through the regulation of human CL/P-candidate genes. This study provides insights into the role of miRNAs in the etiology of CL/P and suggests possible strategies for the diagnosis of CL/P."	"Myositis in Lewis rats induced by the superantigen Staphylococcal enterotoxin A. The aetiology of inflammatory myopathies is not clearly known. A predominance of activated Cd8+ T lymphocytes in inflammatory infiltrates has already been detected. Superantigens activate lymphocytes in an oligoclonal manner. In the present investigation, we investigated local effects after injection of the superantigen (Sag) Staphylococcus enterotoxin A (SEA) in the quadriceps femoris muscle of Lewis rats. Histopathology and gene expression profiling was performed after injection of SEA or saline (control group) after one, three and 10 days. Histology revealed focal myositis predominated by Cd8+ T lymphocytes with a perimysial, endomysial and perivascular distribution, peaking 3 days after SEA injection. Using DNA microarray analysis (Affymetrix Rat Genome 230 2.0) genes that were differentially over-expressed at least 15 times at days one, three or ten after SEA injection were further analysed. One day after SEA injection over-expressed genes were related to the immune response (e.g. Fcnb, CD8a) but also to cell proliferation, differentiation and migration (e.g. Mpp2). Three days after SEA injection, differentially overexpressed genes were mainly related to the immune reaction with a clear signature for a Cd8+ T lymphocyte response (e.g. Cd3d, Cd8, Prf1, Gzmb). Ten days after SEA injection, the differentially overexpressed genes were again associated with the immune reaction (e.g. Cd3d, Il2) but also with regenerative processes and wound healing (e.g. Tgfa, Tpm1, Ripply1). The inflammatory response induced by SEA in Lewis rats shares histological and molecular similarities to polymyositis in humans. Therefore, SEA induced myositis can be taken as a new and apt model for polymyositis."	"Thermal unfolding of various human non-muscle isoforms of tropomyosin. Tropomyosin (Tpm) is an α-helical coiled-coil protein dimer, which forms a continuous head-to-tail polymer along the actin filament. In striated muscles, Tpm plays an important role in the Ca<sup>2+</sup>-dependent regulation of muscle contraction. However, little is known about functional and especially structural properties of the numerous non-muscle Tpm isoforms. In the present work, we have applied circular dichroism (CD) and differential scanning calorimetry (DSC) to investigate thermal unfolding and domain structure of various non-muscle human Tpm isoforms. These isoforms, the products of two different genes, TPM1 and TPM3, also significantly differ by alternatively spliced exons: N-terminal exons 1a2b or 1b, internal exons 6a or 6b, and C-terminal exons 9a, 9c or 9d. Our results clearly demonstrate that structural properties of various non-muscle Tpm isoforms can be quite different depending on the presence of different alternatively spliced exons in their genes. These data show for the first time a significant difference in the thermal unfolding between muscle and non-muscle Tpm isoforms and indicate that replacement of alternatively spliced exons alters the stability of certain domains in the Tpm molecule."	"Selection signatures in four German warmblood horse breeds: Tracing breeding history in the modern sport horse. The study of selection signatures helps to find genomic regions that have been under selective pressure and might host genes or variants that modulate important phenotypes. Such knowledge improves our understanding of how breeding programmes have shaped the genomes of livestock. In this study, 942 stallions were included from four, exemplarily chosen, German warmblood breeds with divergent historical and recent selection focus and different crossbreeding policies: Trakehner (N = 44), Holsteiner (N = 358), Hanoverian (N = 319) and Oldenburger (N = 221). Those breeds are nowadays bred for athletic performance and aptitude for show-jumping, dressage or eventing, with a particular focus of Holsteiner on the first discipline. Blood samples were collected during the health exams of the stallion preselections before licensing and were genotyped with the Illumina EquineSNP50 BeadChip. Autosomal markers were used for a multi-method search for signals of positive selection. Analyses within and across breeds were conducted by using the integrated Haplotype Score (iHS), cross-population Extended Haplotype Homozygosity (xpEHH) and Runs of Homozygosity (ROH). Oldenburger and Hanoverian showed very similar iHS signatures, but breed specificities were detected on multiple chromosomes with the xpEHH. The Trakehner clustered as a distinct group in a principal component analysis and also showed the highest number of ROHs, which reflects their historical bottleneck. Beside breed specific differences, we found shared selection signals in an across breed iHS analysis on chromosomes 1, 4 and 7. After investigation of these iHS signals and shared ROH for potential functional candidate genes and affected pathways including enrichment analyses, we suggest that genes affecting muscle functionality (TPM1, TMOD2-3, MYO5A, MYO5C), energy metabolism and growth (AEBP1, RALGAPA2, IGFBP1, IGFBP3-4), embryonic development (HOXB-complex) and fertility (THEGL, ZPBP1-2, TEX14, ZP1, SUN3 and CFAP61) have been targeted by selection in all breeds. Our findings also indicate selection pressure on KITLG, which is well-documented for influencing pigmentation."	"Clinical and genetic insights into non-compaction: a meta-analysis and systematic review on 7598 individuals. Left ventricular non-compaction has been increasingly diagnosed in recent years. However, it is still debated whether non-compaction is a pathological condition or a physiological trait. In this meta-analysis and systematic review, we compare studies, which investigated these two different perspectives. Furthermore, we provide a comprehensive overview on the clinical outcome as well as genetic background of left ventricular non-compaction cardiomyopathy in adult patients. We retrieved PubMed/Medline literatures in English language from 2000 to 19/09/2018 on clinical outcome and genotype of patients with non-compaction. We summarized and extensively reviewed all studies that passed selection criteria and performed a meta-analysis on key phenotypic parameters. Altogether, 35 studies with 2271 non-compaction patients were included in our meta-analysis. The mean age at diagnosis was the mid of their fifth decade. Two-thirds of patients were male. Congenital heart diseases including atrial or ventricular septum defect or Ebstein anomaly were reported in 7% of patients. Twenty-four percent presented with family history of cardiomyopathy. The mean frequency of neuromuscular diseases was 5%. Heart rhythm abnormalities were reported frequently: conduction disease in 26%, supraventricular tachycardia in 17%, and sustained or non-sustained ventricular tachycardia in 18% of patients. Three important outcome measures were reported including systemic thromboembolic events with a mean frequency of 9%, heart transplantation with 4%, and adequate ICD therapy with 15%. Nine studies investigated the genetics of non-compaction cardiomyopathy. The most frequently mutated gene was TTN with a pooled frequency of 11%. The average frequency of MYH7 mutations was 9%, for MYBPC3 mutations 5%, and for CASQ2 and LDB3 3% each. TPM1, MIB1, ACTC1, and LMNA mutations had an average frequency of 2% each. Mutations in PLN, HCN4, TAZ, DTNA, TNNT2, and RBM20 were reported with a frequency of 1% each. We also summarized the results of eight studies investigating the non-compaction in altogether 5327 athletes, pregnant women, patients with sickle cell disease, as well as individuals from population-based cohorts, in which the presence of left ventricular hypertrabeculation ranged from 1.3 to 37%. The summarized data indicate that non-compaction may lead to unfavorable outcome in different cardiomyopathy entities. The presence of key features in a multimodal diagnostic approach could distinguish between benign morphological trait and manifest cardiomyopathy."	"Combinatorial interactions of genetic variants in human cardiomyopathy. Dilated cardiomyopathy (DCM) is a leading cause of morbidity and mortality worldwide; yet how genetic variation and environmental factors impact DCM heritability remains unclear. Here, we report that compound genetic interactions between DNA sequence variants contribute to the complex heritability of DCM. By using genetic data from a large family with a history of DCM, we discovered that heterozygous sequence variants in the TROPOMYOSIN 1 (TPM1) and VINCULIN (VCL) genes cose-gregate in individuals affected by DCM. In vitro studies of patient-derived and isogenic human-pluripotent-stem-cell-derived cardio-myocytes that were genome-edited via CRISPR to create an allelic series of TPM1 and VCL variants revealed that cardiomyocytes with both TPM1 and VCL variants display reduced contractility and sarcomeres that are less organized. Analyses of mice genetically engineered to harbour these human TPM1 and VCL variants show that stress on the heart may also influence the variable penetrance and expressivity of DCM-associated genetic variants in vivo. We conclude that compound genetic variants can interact combinatorially to induce DCM, particularly when influenced by other disease-provoking stressors."	"Association of single nucleotide polymorphisms in TPM1 rs11071720, rs3803499, rs12148828, and rs1972041 with the risk of nonsyndromic cleft lip with or without cleft palate in a sample of the Iranian population, a preliminary report. Several lines of evidence support an association between tropomyosin 1 (TPM1) and the risk of nonsyndromic cleft lip with or without cleft palate (NSCL/P). The present study aimed to investigate the association between TPM1 polymorphisms and the risk of NSCL/P in an Iranian population. This case-control was done on 105 NSCL/P patients and 110 unrelated healthy controls. TPM1 rs11071720, rs3803499, rs12148828, and rs1972041 polymorphisms were genotyped by the polymerase chain reaction-restriction fragment length polymorphism method. The finding showed that rs11071720 polymorphism significantly increased the risk of NSCL/P in homozygous codominant (odds ratio [OR] = 2.54, 95% confidence interval [CI] = 1.14-5.69, p = 0.023, TT vs. CC), recessive (OR = 2.33, 95% CI = 1.06-5.18, p = 0.021, TT vs. CT + CC), and allele (OR = 1.53, 95% CI = 1.02-2.30, p = 0.030, T vs. C). The rs12148828 polymorphism was associated with protection against NSCL/P in codominant (OR = 0.27, 95% CI = 0.15-0.48, p &lt; 0.001, TC vs. TT) and allele (OR = 0.38, 95% CI = 0.22-0.64, p &lt; 0.001, C vs. T). Regarding rs3803499, the findings proposed that this polymorphism significantly increased the risk of NSCL/P in codominant (OR = 3.86, 95% CI = 1.19-12.56, p = 0.025, CC vs. TT) and recessive (OR = 3.74, 95% CI = 1.09-14.15, p = 0.018, CC vs. CT + TT). No significant association was practical between rs1972041 polymorphism and NSCL/P. In conclusion, the findings proposed that TPM1 polymorphisms may contribute to the etiology of NSCL/P in a sample of the Iranian population."	"Myosin II governs intracellular pressure and traction by distinct tropomyosin-dependent mechanisms. Two-dimensional (2D) substrate rigidity promotes myosin II activity to increase traction force in a process negatively regulated by tropomyosin (Tpm) 2.1. We recently discovered that actomyosin contractility can increase intracellular pressure and switch tumor cells from low-pressure lamellipodia to high-pressure lobopodial protrusions during three-dimensional (3D) migration. However, it remains unclear whether these myosin II-generated cellular forces are produced simultaneously, and by the same molecular machinery. Here we identify Tpm 1.6 as a positive regulator of intracellular pressure and confirm that Tpm 2.1 is a negative regulator of traction force. We find that Tpm 1.6 and 2.1 can control intracellular pressure and traction independently, suggesting these myosin II-dependent forces are generated by distinct mechanisms. Further, these tropomyosin-regulated mechanisms can be integrated to control complex cell behaviors on 2D and in 3D environments."	"The identification of new biomarkers for bladder cancer: A study based on TCGA and GEO datasets. Bladder cancer (BC) is one of the most common neoplastic diseases worldwide. With the highest recurrence rate among all cancers, treatment of BC only improved a little in the last 30 years. Available biomarkers are not sensitive enough for the diagnosis of BC, whereas the standard diagnostic method, cystoscopy, is an invasive test and expensive. Hence, seeking new biomarkers of BC is urgent and challenging. With that order, we screened the overlapped differentially expressed genes (DEGs) of GSE13507 and TCGA BLCA datasets. Subsequent protein-protein interactions network analysis recognized the hub genes among these DEGs. Further functional analysis including Gene Ontology and KEGG pathway analysis and gene set enrichment analysis were processed to investigate the role of these genes and potential underlying mechanisms in BC. Kaplan-Meier analysis and Cox hazard ratio analysis were carried out to clarify the diagnostic and prognostic role of these genes. In conclusion, our present study demonstrated that ACTA2, CDC20, MYH11, TGFB3, TPM1, VIM, and DCN are all potential diagnostic biomarkers for BC. And may also be potential treatment targets for clinical implication in the future."	"Genetic basis and outcome in a nationwide study of Finnish patients with hypertrophic cardiomyopathy. Nationwide large-scale genetic and outcome studies in cohorts with hypertrophic cardiomyopathy (HCM) have not been previously published. We sequenced 59 cardiomyopathy-associated genes in 382 unrelated Finnish patients with HCM and found 24 pathogenic or likely pathogenic mutations in six genes in 38.2% of patients. Most mutations were located in sarcomere genes (MYBPC3, MYH7, TPM1, and MYL2). Previously reported mutations by our study group (MYBPC3-Gln1061Ter, MYH7-Arg1053Gln, and TPM1-Asp175Asn) and a fourth major mutation MYH7-Val606Met accounted for 28.0% of cases. Mutations in GLA and PRKAG2 were found in three patients. Furthermore, we found 49 variants of unknown significance in 31 genes in 20.4% of cases. During a 6.7 ± 4.2 year follow-up, annual all-cause mortality in 482 index patients and their relatives with HCM was higher than that in the matched Finnish population (1.70 vs. 0.87%; P &lt; 0.001). Sudden cardiac deaths were rare (n = 8). Systolic heart failure (hazard ratio 17.256, 95% confidence interval 3.266-91.170, P = 0.001) and maximal left ventricular wall thickness (hazard ratio 1.223, 95% confidence interval 1.098-1.363, P &lt; 0.001) were independent predictors of HCM-related mortality and life-threatening cardiac events. The patients with a pathogenic or likely pathogenic mutation underwent an implantable cardioverter defibrillator implantation more often than patients without a pathogenic or likely pathogenic mutation (12.9 vs. 3.5%, P &lt; 0.001), but there was no difference in all-cause or HCM-related mortality between the two groups. Mortality due to HCM during 10 year follow-up among the 5.2 million population of Finland was studied from death certificates of the National Registry, showing 269 HCM-related deaths, of which 32% were sudden. We identified pathogenic and likely pathogenic mutations in 38% of Finnish patients with HCM. Four major sarcomere mutations accounted for 28% of HCM cases, whereas HCM-related mutations in non-sarcomeric genes were rare. Mortality in patients with HCM exceeded that of the general population. Finally, among 5.2 million Finns, there were at least 27 HCM-related deaths annually."	"Systematic analysis of survival-associated alternative splicing signatures uncovers prognostic predictors for head and neck cancer. Previous studies have shown that alternative splicing (AS) plays a key role in carcinogenesis and prognosis of cancer. However, systematic profiles of AS signatures in head and neck cancer (HNC) have not yet been reported. In this study, AS data, RNA-Seq data, and corresponding clinicopathological information of 489 HNC patients were downloaded from The Cancer Genome Atlas. Univariate and multivariate Cox regression analyses were performed to screen for survival-associated AS events. Functional and pathway enrichment analysis was also performed. The prognostic models and splicing networks were constructed using integrated bioinformatics analysis tools. Among the 42,849 alternating splicing events identified in 10,121 genes, 5,165 survival-associated AS events in 2,419 genes were observed in univariate Cox regression analysis. Among the seven types, alternate terminator events were the most powerful prognostic factors. Multivariate Cox analysis was then used to screen for the AS genes with prognostic value. Four candidate genes (TPM1, CLASRP, PRRC1, and DNASE1L1) were found to be independent prognostic factors for HNC patients. A prognostic prediction model was built based on the four genes. The area under the receiver operating characteristic risk score curve for predicting the survival status of HNC patients was 0.704. In addition, splicing interaction network indicated that the splicing factors have significant functions in HNC. A comprehensive analysis of AS events in HNC was performed. A powerful prognostic predictor for HNC patients was established based on AS events could."	"Evaluating the Clinical Validity of Hypertrophic Cardiomyopathy Genes. Genetic testing for families with hypertrophic cardiomyopathy (HCM) provides a significant opportunity to improve care. Recent trends to increase gene panel sizes often mean variants in genes with questionable association are reported to patients. Classification of HCM genes and variants is critical, as misclassification can lead to genetic misdiagnosis. We show the validity of previously reported HCM genes using an established method for evaluating gene-disease associations. A systematic approach was used to assess the validity of reported gene-disease associations, including associations with isolated HCM and syndromes including left ventricular hypertrophy. Genes were categorized as having definitive, strong, moderate, limited, or no evidence of disease causation. We also reviewed current variant classifications for HCM in ClinVar, a publicly available variant resource. Fifty-seven genes were selected for curation based on their frequent inclusion in HCM testing and prior association reports. Of 33 HCM genes, only 8 (24%) were categorized as definitive ( MYBPC3, MYH7, TNNT2, TNNI3, TPM1, ACTC1, MYL2, and MYL3); 3 had moderate evidence ( CSRP3, TNNC1, and JPH2; 33%); and 22 (66%) had limited (n=16) or no evidence (n=6). There were 12 of 24 syndromic genes definitively associated with isolated left ventricular hypertrophy. Of 4191 HCM variants in ClinVar, 31% were in genes with limited or no evidence of disease association. The majority of genes previously reported as causative of HCM and commonly included in diagnostic tests have limited or no evidence of disease association. Systematically curated HCM genes are essential to guide appropriate reporting of variants and ensure the best possible outcomes for HCM families."	"Tropomyosin isoforms differentially tune actin filament length and disassembly. Cellular actin networks exhibit diverse filamentous architectures and turnover dynamics, but how these differences are specified remains poorly understood. Here, we used multicolor total internal reflection fluorescence microscopy to ask how decoration of actin filaments by five biologically prominent Tropomyosin (TPM) isoforms influences disassembly induced by Cofilin alone, or by the collaborative effects of Cofilin, Coronin, and AIP1 (CCA). TPM decoration restricted Cofilin binding to pointed ends, while not interfering with Coronin binding to filament sides. Different isoforms of TPM provided variable levels of protection against disassembly, with the strongest protection by Tpm3.1 and the weakest by Tpm1.6. In biomimetic assays in which filaments were simultaneously assembled by formins and disassembled by CCA, these TPM isoform-specific effects persisted, giving rise to filaments with different lengths and treadmilling behavior. Together, our data reveal that TPM isoforms have quantitatively distinct abilities to tune actin filament length and turnover."	"The Unique Mechanisms of Cellular Proliferation, Migration and Apoptosis are Regulated through Oocyte Maturational Development-A Complete Transcriptomic and Histochemical Study. The growth and development of oocyte affect the functional activities of the surrounding somatic cells. These cells are regulated by various types of hormones, proteins, metabolites, and regulatory molecules through gap communication, ultimately leading to the development and maturation of oocytes. The close association between somatic cells and oocytes, which together form the cumulus-oocyte complexes (COCs), and their bi-directional communication are crucial for the acquisition of developmental competences by the oocyte. In this study, oocytes were extracted from the ovaries obtained from crossbred landrace gilts and subjected to in vitro maturation. RNA isolated from those oocytes was used for the subsequent microarray analysis. The data obtained shows, for the first time, variable levels of gene expression (fold changes higher than |2| and adjusted p-value &lt; 0.05) belonging to four ontological groups: regulation of cell proliferation (GO:0042127), regulation of cell migration (GO:0030334), and regulation of programmed cell death (GO:0043067) that can be used together as proliferation, migration or apoptosis markers. We have identified several genes of porcine oocytes (ID2, VEGFA, BTG2, ESR1, CCND2, EDNRA, ANGPTL4, TGFBR3, GJA1, LAMA2, KIT, TPM1, VCP, GRID2, MEF2C, RPS3A, PLD1, BTG3, CD47, MITF), whose expression after in vitro maturation (IVM) is downregulated with different degrees. Our results may be helpful in further elucidating the molecular basis and functional significance of a number of gene markers associated with the processes of migration, proliferation and angiogenesis occurring in COCs."	"Tropomyosin pseudo-phosphorylation results in dilated cardiomyopathy. Phosphorylation of cardiac sarcomeric proteins plays a major role in the regulation of the physiological performance of the heart. Phosphorylation of thin filament proteins, such as troponin I and T, dramatically affects calcium sensitivity of the myofiber and systolic and diastolic functions. Phosphorylation of the regulatory protein tropomyosin (Tpm) results in altered biochemical properties of contraction; however, little is known about the physiological effect of Tpm phosphorylation on cardiac function. To address the in vivo significance of Tpm phosphorylation, here we generated transgenic mouse lines having a phosphomimetic substitution in the phosphorylation site of α-Tpm (S283D). High expression of Tpm S283D variant in one transgenic mouse line resulted in an increased heart:body weight ratio, coupled with a severe dilated cardiomyopathic phenotype resulting in death within 1 month of birth. Moderate Tpm S283D mice expression in other lines caused mild myocyte hypertrophy and fibrosis, did not affect lifespan, and was coupled with decreased expression of extracellular signal-regulated kinase 1/2 kinase signaling. Physiological analysis revealed that the transgenic mice exhibit impaired diastolic function, without changes in systolic performance. Surprisingly, we observed no alterations in calcium sensitivity of the myofibers, cooperativity, or calcium-ATPase activity in the myofibers. Our experiments also disclosed that casein kinase 2 plays an integral role in Tpm phosphorylation. In summary, increased expression of pseudo-phosphorylated Tpm impairs diastolic function in the intact heart, without altering calcium sensitivity or cooperativity of myofibers. Our findings provide the first extensive in vivo assessment of Tpm phosphorylation in the heart and its functional role in cardiac performance."	"Structural and functional properties of αβ-heterodimers of tropomyosin with myopathic mutations Q147P and K49del in the β-chain. Tropomyosin (Tpm) is an α-helical coiled-coil actin-binding protein that plays a key role in the Ca<sup>2+</sup>-regulated contraction of striated muscles. Two Tpm isoforms, α (Tpm 1.1) and β (Tpm 2.2), are expressed in fast skeletal muscles. These Tpm isoforms can form either αα and ββ homodimers, or αβ heterodimers. However, only αα-Tpm and αβ-Tpm dimers are usually present in most of fast skeletal muscles, because ββ-homodimers are relatively unstable and cannot exist under physiologic conditions. Nevertheless, the most of previous studies of myopathy-causing mutations in the Tpm β-chains were performed on the ββ-homodimers. In the present work, we applied different methods to investigate the effects of two myopathic mutations in the β-chain, Q147P and K49del (i.e. deletion of Lys49), on structural and functional properties of Tpm αβ-heterodimers and to compare them with the properties of ββ-homodimers carrying these mutations in both β-chains. The results show that the properties of αβ-Tpm heterodimers with these mutations in the β-chain differ significantly from the properties of ββ-homodimers with the same substitutions in both β-chains. This indicates that the αβ-heterodimer is a more appropriate model for studying the effects of myopathic mutations in the β-chain of Tpm than the ββ-homodimer which virtually does not exist in human skeletal muscles."	"Interactions of tropomyosin Tpm1.1 on a single actin filament: A method for extraction and processing of high resolution TIRF microscopy data. Skeletal muscle tropomyosin (Tpm1.1) is an elongated, rod-shaped, alpha-helical coiled-coil protein that forms continuous head-to-tail polymers along both sides of the actin filament. In this study we use single molecule fluorescence TIRF microscopy combined with a microfluidic device and fluorescently labelled proteins to measure Tpm1.1 association to and dissociation from single actin filaments. Our experimental setup allows us to clearly resolve Tpm1.1 interactions on both sides of the filaments. Here we provide a semi-automated method for the extraction and quantification of kymograph data for individual actin filaments bound at different Tpm1.1 concentrations. We determine boundaries on the kymograph on each side of the actin filament, based on intensity thresholding, performing fine manual editing of the boundaries (if needed) and extracting user defined kinetic properties of the system. Using our analytical tools we can determine (i) nucleation point(s) and rates, (ii) elongation rates of Tpm1.1, (iii) identify meeting points after the saturation of filament, and when dissociation occurs, (iv) initiation point(s), (v) the final dissociation point(s), as well as (vi) dissociation rates. All of these measurements can be extracted from both sides of the filament, allowing for the determination of possible differences in behaviour on the two sides of the filament, and across concentrations. The robust and repeatable nature of the method allows quantitative, semi-automated analyses to be made of large studies of acto-tropomyosin interactions, as well as for other actin binding proteins or filamentous structures, opening the way for dissection of the dynamics underlying these interactions."	"Skullcapflavone I inhibits proliferation of human colorectal cancer cells via down-regulation of miR-107 expression. Colorectal cancer (CRC) is a common malignant tumor with high global increase and mortality. While Skullcapflavone I has been reported to exert anti-tumor effect in several cancers, its role in CRC has not previously been investigated. Recent studies have also demonstrated that microRNA-107 (miR-107) and tropomyosin alpha-1 (TPM1) are important regulators of cancer cell proliferation, but it remains unclear if these are involved in regulating the effect of Skullcapflavone I on CRC cells. This study therefore assessed the effects of Skullcapflavone I on CRC cell proliferation and investigated miR-107 and TPM1 regulatory effects on this process. The results showed that Skullcapflavone I significantly suppressed cell proliferation and viability and down-regulated PCNA and Cyclin D1protein levels. It also down-regulated miR-107 expression which then promoted TPM1 expression, but miR-107 over-expression abolished Skullcapflavone I anti-proliferative effects. Furthermore, Skullcapflavone I inhibited the activations of MEK/ERK and NF-κB signal pathway activation by regulating TPM1 in HCT116 cells. These results demonstrated that Skullcapflavone I increased the expression of TPM1 by down-regulating miR-107 and inhibiting the MEK/ERK and NF-κB signal pathways. It then inhibited HCT116 cell proliferation, and therefore Skullcapflavone I may provide new methodology in colorectal cancer treatment."	"Novel electrocardiographic features in carriers of hypertrophic cardiomyopathy causing sarcomeric mutations. The sensitivity and specificity of the conventional 12-lead ECG to identify carriers of hypertrophic cardiomyopathy (HCM) - causing mutations without left ventricular hypertrophy (LVH) has been limited. We assessed the ability of novel electrocardiographic parameters to improve the detection of HCM mutation carriers. We studied 140 carriers (G+) of the TPM1-Asp175Asn or MYBPC3-Gln1061X pathogenic variants for HCM: The G+/LVH+ group (n = 98) consisted of mutation carriers with LVH and the G+/LVH- group (n = 42) without LVH. The control group consisted of 30 subjects. The standard 12-lead ECG was comprehensively analyzed and two novel ECG variables were introduced: RV1&lt;RV2&gt;RV3 and septal remodeling. A subset of 65 individuals underwent cardiac magnetic resonance imaging and 2D strain echocardiography. Conventional major ECG criteria were sensitive (90%) and specific (97%) in identifying G+/LVH+ subjects. RV1&lt;RV2&gt;RV3 and septal remodeling were more prevalent in the G+/LVH- subjects compared to the control group (33% vs 3%, p = 0.005 and 45% vs 3%, p &lt; 0.001, respectively). The combination of RV1&lt;RV2&gt;RV3 and Q waves and repolarization abnormalities (QR) differentiated between the G+/LVH- subjects and the control group with a sensitivity of 52% and specificity of 97%. The combination of septal remodeling and QR differentiated between G+/LVH- subjects and the control group with a sensitivity of 64% and specificity of 97%. The novel ECG-parameters RV1&lt;RV2&gt;RV3 and septal remodeling were effective in identifying G+/LVH- subjects and could be useful in the diagnostics of new suspected HCM patients and in the screening and follow-up of HCM families."	"Long non-coding RNA MEG3 suppresses the development of bladder urothelial carcinoma by regulating miR-96 and TPM1. We aimed at investigating effects of long non-coding RNA maternally expressed 3 (MEG3) on the proliferation, cell cycle and apoptosis of bladder urothelial carcinoma cells and regulatory relationships among lncRNA MEG3, miR-96 and α-tropomyosin 1 (TPM1). Human clinical data from The Cancer Genome Atlas (TCGA) which contains bladder urothelial carcinoma tissues and adjacent tissues were used for analysis. The expression profiles of MEG3, miR-96, TPM1, cell cycle-related genes and apoptosis-related genes were examined by real-time quantitative polymerase chain reaction (RT-qPCR) and western blot. Regulating relationship among MEG3, miR-96 and TPM1 was confirmed by dual luciferase reporter assay. MTT assay and flow cytometry were performed to observe cell proliferation, cell cycle and apoptosis. The effects of lncRNA MEG3 on bladder urothelial carcinoma were confirmed both in vivo and in vitro. The mRNA expression and protein expression of MEG3, TPM1 were down-regulated in carcinoma tissues, whereas miR-96 expression was up-regulated. MEG3 overexpression resulted in miR-96 downregulation along with TPM1 upregulation, which inhibited cell proliferation and cell cycle but promoted cell apoptosis of bladder urothelial carcinoma cells in vitro, and at the same time inhibited tumor growth in vivo. In this process, expressions of apoptosis-related protein BCL2 associated X (Bax), cleaved-caspase 3 was up-regulated, whereas apoptosis regulator protein (Bcl-2) expression was suppressed when MEG3 was overexpressed, and cell cycle-related protein Cyclin D1 was down-regulated. LncRNA MEG3 low-expression promotes the proliferation and inhibits apoptosis of bladder urothelial carcinoma cells by regulating miR-96 along with TPM1."	"Downregulated Expression of Tropomyosin 1 in Intrahepatic Cholangiocarcinoma: A Predictor of Recurrence and Prognosis. BACKGROUND The downregulation of tropomyosin 1 (TPM1) has been observed in various tumors, but few studies have focused on the clinical significance of TPM1 in intrahepatic cholangiocarcinoma (ICC). In the present study, we investigated the prognostic significance of TPM1 in ICC. MATERIAL AND METHODS A total of 124 patients with ICC were enrolled in this study. Quantitative real-time polymerase chain reaction (qRT-RCR) was performed to examine the mRNA levels of TPM1 in ICC tissue samples and adjacent noncancerous tissue specimens, while the protein level of TPM1 in tissue specimens were investigated using immunohistochemistry assay. The correlation of TPM1 with clinicopathological features of ICC was analyzed by chi-square test. Survival analysis was performed with Kaplan-Meier method. The Cox proportional hazards model was used to evaluate the prognostic value of TPM1 in patients with ICC. RESULTS TPM1 expression was significantly downregulated in ICC tissues at mRNA and protein levels (P&lt;0.001 for both). Downregulated TPM1 mRNA was negatively associated with tumor size (P=0.001) and TNM stage (P=0.007). Moreover, survival analysis demonstrated that patients with low TPM1 expression had a shorter overall survival (OS) (P&lt;0.001) and recurrence-free survival (RFS) (P&lt;0.001) than those with high TPM1 expression. Additionally, multivariate analysis showed that TPM1 could be a potential biomarker for predicting the recurrence (HR=4.632, 95% CI: 3.832-10.368, P&lt;0.001) and survival outcome (HR=5.320, 95% CI: 2.627-11.776, P&lt;0.001) of ICC. CONCLUSIONS TPM1 may serve as a useful biomarker for predicting tumor recurrence and prognosis in patients with ICC."	"cGMP interacts with tropomyosin and downregulates actin-tropomyosin-myosin complex interaction. The nitric oxide-soluble guanylate cyclase-cyclic guanosine monophosphate (NO-sGC-cGMP) signaling pathway, plays a critical role in the pathogenesis of pulmonary arterial hypertension (PAH); however, its exact molecular mechanism remains undefined. Biotin-cGMP pull-down assay was performed to search for proteins regulated by cGMP. The interaction between cGMP and tropomyosin was analyzed with antibody dependent pull-down in vivo. Tropomyosin fragments were constructed to explore the tropomyosin-cGMP binding sites. The expression level and subcellular localization of tropomyosin were detected with Real-time PCR, Western blot and immunofluorescence assay after the 8-Br-cGMP treatment. Finally, isothermal titration calorimetry (ITC) was utilized to detect the binding affinity of actin-tropomyosin-myosin in the existence of cGMP-tropomyosin interaction. cGMP interacted with tropomyosin. Isoform 4 of TPM1 gene was identified as the only isoform expressed in the human pulmonary artery smooth muscle cells (HPASMCs). The region of 68-208aa of tropomyosin was necessary for the interaction between tropomyosin and cGMP. The expression level and subcellular localization of tropomyosin showed no change after the stimulation of NO-sGC-cGMP pathway. However, cGMP-tropomyosin interaction decreased the affinity of tropomyosin to actin. We elucidate the downstream signal pathway of NO-sGC-cGMP. This work will contribute to the detection of innovative targeted agents and provide novel insights into the development of new therapies for PAH."	"Roles of TGF β and FGF Signals in the Lens: Tropomyosin Regulation for Posterior Capsule Opacity. Transforming growth factor (TGF) β and fibroblast growth factor (FGF) 2 are related to the development of posterior capsule opacification (PCO) after lens extraction surgery and other processes of epithelial⁻mesenchymal transition (EMT). Oxidative stress seems to activate TGF β1 largely through reactive oxygen species (ROS) production, which in turn alters the transcription of several survival genes, including lens epithelium-cell derived growth factor (LEDGF). Higher ROS levels attenuate LEDGF function, leading to down-regulation of peroxiredoxin 6 (Prdx6). TGF β is regulated by ROS in Prdx6 knock-out lens epithelial cells (LECs) and induces the up-regulation of tropomyosins (Tpms) 1/2, and EMT of LECs. Mouse and rat PCO are accompanied by elevated expression of Tpm2. Further, the expression of Tpm1/2 is induced by TGF β2 in LECs. Importantly, we previously showed that TGF β2 and FGF2 play regulatory roles in LECs in a contrasting manner. An injury-induced EMT of a mouse lens as a PCO model was attenuated in the absence of Tpm2. In this review, we present findings regarding the roles of TGF β and FGF2 in the differential regulation of EMT in the lens. Tpms may be associated with TGF β2- and FGF2-related EMT and PCO development."	"Considering the downregulation of Tpm1.6 and Tpm1.7 in squamous cell carcinoma of esophagus as a potent biomarker. Squamous cell carcinoma of esophagus (SCCE) is an aggressive disease with a poor prognosis. Tropomyosins attach to actin microfilaments, providing its stability. Nonmuscle cells express Tpm isoforms such as Tpm1.6 and Tpm1.7 which are involved in cytoskeleton functional properties regulation. The expression of Tpm1.6 and Tpm1.7 was analyzed in SCCE tissues and its association with clinicopathological parameters and survival of patients was assessed. Tpm1.6 and Tpm1.7, besides TPM1 mRNA decreased considerably in SCCE tissues relative to normal esophageal tissues (p &lt; 0.001). TPM1 downregulation level was significantly associated with the degree of tumor differentiation (p = 0.017). Tpm1.6 and Tpm1.7 suppression play a crucial role in esophagus tumorigenesis and could be associated with SCCE poor prognosis."	"Qualitative and quantitative evaluation of TPM transcripts and proteins in developing striated chicken muscles indicate TPM4α is the major sarcomeric cardiac tropomyosin from early embryonic life to adulthood. The chicken has been used since the 1980s as an animal model for developmental studies regarding tropomyosin isoform diversity in striated muscles, however, the pattern of expression of transcripts as well as the corresponding TPM proteins of various tropomyosin isoforms in avian hearts are not well documented. In this study, using conventional and qRT-PCR, we report the expression of transcripts for various sarcomeric TPM isoforms in striated muscles through development. Transcripts of both TPM1α and TPM1κ, the two sarcomeric isoforms of the TPM1 gene, are expressed in embryonic chicken hearts but disappear in post hatch stages. TPM1α transcripts are expressed in embryonic and adult skeletal muscle. The sarcomeric isoform of the TPM2 gene is expressed mostly in embryonic skeletal muscles. As reported earlier, TPM3α is expressed in embryonic heart and skeletal muscle but significantly lower in adult striated muscle. TPM4α transcripts are expressed from embryonic to adult chicken hearts but not in skeletal muscle. Our 2D Western blot analyses using CH1 monoclonal antibody followed by mass spectra evaluations found TPM4α protein is the major sarcomeric tropomysin expressed in embryonic chicken hearts. However, in 7-day-old embryonic hearts, a minute quantity of TPM1α or TPM1κ is also expressed. This finding suggests that sarcomeric TPM1 protein may play some important role in cardiac contractility and/or cardiac morphogenesis during embryogenesis. Since only the transcripts of TPM4α are expressed in adult chicken hearts, it is logical to presume that TPM4α is the only sarcomeric TPM protein produced in adult cardiac tissues."	"Sarcomere gene variants act as a genetic trigger underlying the development of left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a primary cardiomyopathy with heterogeneous genetic origins. The aim of this study was to elucidate the role of sarcomere gene variants in the pathogenesis and prognosis of LVNC. We screened 82 Japanese patients (0-35 years old), with a diagnosis of LVNC, for mutations in seven genes encoding sarcomere proteins, by direct DNA sequencing. We identified variants in a significant proportion of cases (27%), which were associated with poor prognosis (p = 0.012), particularly variants in TPM1, TNNC1, and ACTC1 (p = 0.012). To elucidate the pathological role, we developed and studied human-induced pluripotent stem cells (hiPSCs) from a patient carrying a TPM1 p.Arg178His mutation, who underwent heart transplantation. These cells displayed pathological changes, with mislocalization of tropomyosin 1, causing disruption of the sarcomere structure in cardiomyocytes, and impaired calcium handling. Microarray analysis indicated that the TPM1 mutation resulted in the down-regulation of the expression of numerous genes involved in heart development, and positive regulation of cellular process, especially the calcium signaling pathway. Sarcomere genes are implicated as genetic triggers in the development of LVNC, regulating the expression of numerous genes involved in heart development, or modifying the severity of disease."	"Coverage and diagnostic yield of Whole Exome Sequencing for the Evaluation of Cases with Dilated and Hypertrophic Cardiomyopathy. Targeted next generation sequencing of gene panels has become a popular tool for the genetic diagnosis of hypertrophic (HCM) and dilated cardiomyopathy (DCM). However, it is uncertain whether the use of Whole Exome Sequencing (WES) represents a more effective approach for diagnosis of cases with HCM and DCM. In this study, we performed indirect comparisons of the coverage and diagnostic yield of WES on genes and variants related to HCM and DCM versus 4 different commercial gene panels using 40 HCM and DCM patients, assuming perfect coverage in those panels. We identified 6 pathogenic or likely pathogenic among 14 HCM patients (diagnostic yield 43%). 3 pathogenic or likely pathogenic were found among the 26 DCM patients (diagnostic yield 12%). The coverage was similar to that of four existing commercial gene panels due to the clustering of mutation within MYH7, MYBPC3, TPM1, TNT2, and TTN. Moreover, the coverage of WES appeared inadequate for TNNI3 and PLN. We conclude that most of the pathogenic variants for HCM and DCM can be found within a small number of genes which were covered by all the commercial gene panels, and the application of WES did not increase diagnostic yield."	"The importance of preconception and prenatal genetic evaluation in heart transplant individuals and fetal and postnatal cardiac monitoring in their offspring. A 24-year-old woman with a history of idiopathic dilated cardiomyopathy status post heart transplant gave birth to a healthy term female infant. At 5 months of age, the infant was diagnosed with severe left ventricular dysfunction with an ejection fraction of 18% and moderate non-compaction of the left ventricle. She received a heart transplant at 7 months of age. Familial dilated cardiomyopathy was diagnosed. Genetic testing revealed a likely pathogenic variant in the TPM1 gene. Fetal cardiac screening is critical for offspring of heart transplant recipients, especially when the reason for transplant was cardiomyopathy. Early genetic consultation and counselling is necessary for all heart transplant recipients, preferably prenatally. Postnatal screening of offspring is essential at birth, at 3-month intervals until 1 year of age, and then annually until the risk for familial cardiomyopathy is assessed."	"Rapamycin ameliorates psoriasis by regulating the expression and methylation levels of tropomyosin via ERK1/2 and mTOR pathways in vitro and in vivo. Psoriasis is a chronic inflammatory disease, affecting more than millions of people in the world. Recently, the mTOR inhibitor rapamycin (RAPA) was reported to be involved in the pathogenesis of psoriasis. However, the underlying mechanism remains unclear. Haematoxylin and eosin staining was used to examine the effects of RAPA on inflammatory level of lesional tissues from patients with psoriasis and animal models. Quantitative real-time PCR, immunohistochemistry and western blot assay were performed to assess the effects of RAPA on tropomyosins (TPMs) expression in patients with psoriasis, cell models and animal models. Phalloidin staining was used to assess the RAPA effects on cell skeleton. The effects of RAPA on cell proliferation and cell cycle were detected by CCK-8 assay, EdU staining and flow cytometry. Methylation status of TPMs was analysed by methylation-specific PCR. The expression of TPM1 and TPM2 was significantly downregulated, while their methylation level was obviously higher in the lesional tissues, cell models and animal models of psoriasis. After treated with RAPA, the expression and methylation levels of TPMs were all restored in the cell models and animal models of psoriasis. RAPA inhibited cell proliferation and decreased the ratio of S phase cell in Hacat or human epidermal keratinocytes cell models of psoriasis. Finally, the activated ERK1/2 and mTOR pathways in the cell model and animal model of psoriasis were suppressed by the treatment of RAPA. RAPA could be used as an effective agent for the treatment of psoriasis by decreasing the methylation level of TPM1 and TPM2 via inhibiting the ERK1/2 and mTOR signalling pathways."	"Fibrosis and wall thickness affect ventricular repolarization dynamics in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by ventricular repolarization abnormalities and risk of ventricular arrhythmias. Our aim was to study the association between the phenotype and ventricular repolarization dynamics in HCM patients. HCM patients with either the MYBPC3-Q1061X or TPM1-D175N mutation (n = 46) and control subjects without mutation and hypertrophy (n = 35) were studied with 24-hr ambulatory ECG recordings by measuring time intervals of rate-adapted QT (QTe), maximal QT, and T-wave apex to wave end (TPE) intervals and the QTe/RR slope. Findings were correlated to specified echocardiographic and cardiac magnetic resonance imaging (CMRI) findings. Rate-adapted QTe interval was progressively longer in HCM patients with decreasing heart rates compared to control subjects (p = 0.020). The degree of hypertrophy correlated with measured QTe values. HCM patients with maximal wall thickness higher than the mean (20.6 mm) had longer maximum QTe and median TPE intervals compared to control subjects and HCM patients with milder hypertrophy (p &lt; 0.001 and p = 0.014, respectively). HCM patients with late gadolinium enhancement (LGE) on CMRI had steeper QTe/RR slopes compared to HCM patients without LGE and control subjects (p = 0.044 and p = 0.001, respectively). LGE was an independent predictor of QTe/RR slope (p = 0.023, B = 0.043). Dynamics of ventricular repolarization in HCM are affected by hypertrophy and fibrosis. LGE may confer an independent effect on QT dynamics which may increase the arrhythmogenic potential in HCM."	"Comparative effectiveness of three-dimensional scaffold, differentiation media and co-culture with native cardiomyocytes to trigger in vitro cardiogenic differentiation of menstrual blood and bone marrow stem cells. The main purpose of this study was to find effectiveness of 3D silk fibroin scaffold in comparison with co-culturing in presence of native cardiomyocytes on cardiac differentiation propensity of menstural blood(MenSCs)-versus bone marrow-derived stem-cells (BMSCs). We showed that both 3D fibroin scaffold and co-culture system supported efficient cardiomyogenic differentiation of MenSCs and BMSCs, as judged by the expression of cardiac-specific genes and proteins, Connexin-43, Connexin-40, alpha Actinin (ACTN-2), Tropomyosin1 (TPM1) and Cardiac Troponin T (TNNT2). No significant difference (except for higher expression of ACTN-2 in co-cultured MenSCs) was found between differentiation potential of the cells cultured in 3D fibroin scaffold and co-culture system. Collectively, our results imply that inductive signals served by biological factors of native cardiomyocytes to trigger cardiogenic differentiation of stem-cells may be efficiently provided by natural and biocompatible 3D fibroin scaffold suggesting the usefulness of this construct for cardiac tissue engineering."	"Whole-genome sequencing in a pair of monozygotic twins with discordant cleft lip and palate subtypes. Orofacial clefts (OFCs) are common and etiologically complex birth defects. This study explored potential genetic differences in a pair of Japanese monozygotic (MZ) twins with different forms of OFC using whole-genome sequencing. One co-twin (MZ-1) presented with nonsyndromic bilateral cleft lip and palate; the other co-twin (MZ-2) had nonsyndromic bilateral cleft lip and unilateral left-sided cleft alveolus. Neither parent had an OFC. Craniofacial morphologic features and potential genetic differences were compared using standard cephalometry and whole-genome sequencing, respectively. Morphologically, MZ-1 had a smaller vertical mandibular height, compared to MZ-2. However, no discordant genetic differences were detected. Moreover, both twins and their parents harbored rare candidate gene variants (GRHL3; TPM1) considered to be associated with OFCs. The observed differences between MZ-1 and MZ-2 in craniofacial morphology assessed by cephalograms might be directly attributable to the effects of the OFC on growth and/or differences in surgical history, given the lack of any differences in genetic background. However, comparisons of discordant MZ twins should continue to identify novel candidates that might control OFC or that might partly explain the missing heritability for this common birth defect, in addition to understanding craniofacial growth and development."	"Hypertrophic cardiomyopathy mutations increase myofilament Ca<sup>2+</sup> buffering, alter intracellular Ca<sup>2+</sup> handling, and stimulate Ca<sup>2+</sup>-dependent signaling. Mutations in thin filament regulatory proteins that cause hypertrophic cardiomyopathy (HCM) increase myofilament Ca<sup>2+</sup> sensitivity. Mouse models exhibit increased Ca<sup>2+</sup> buffering and arrhythmias, and we hypothesized that these changes are primary effects of the mutations (independent of compensatory changes) and that increased Ca<sup>2+</sup> buffering and altered Ca<sup>2+</sup> handling contribute to HCM pathogenesis via activation of Ca<sup>2+</sup>-dependent signaling. Here, we determined the primary effects of HCM mutations on intracellular Ca<sup>2+</sup> handling and Ca<sup>2+</sup>-dependent signaling in a model system possessing Ca<sup>2+</sup>-handling mechanisms and contractile protein isoforms closely mirroring the human environment in the absence of potentially confounding remodeling. Using adenovirus, we expressed HCM-causing variants of human troponin-T, troponin-I, and α-tropomyosin (R92Q, R145G, and D175N, respectively) in isolated guinea pig left ventricular cardiomyocytes. After 48 h, each variant had localized to the I-band and comprised ∼50% of the total protein. HCM mutations significantly lowered the Kd of Ca<sup>2+</sup> binding, resulting in higher Ca<sup>2+</sup> buffering of mutant cardiomyocytes. We observed increased diastolic [Ca<sup>2+</sup>] and slowed Ca<sup>2+</sup> reuptake, coupled with a significant decrease in basal sarcomere length and slowed relaxation. HCM mutant cells had higher sodium/calcium exchanger activity, sarcoplasmic reticulum Ca<sup>2+</sup> load, and sarcoplasmic/endoplasmic reticulum calcium ATPase 2 (SERCA2) activity driven by Ca<sup>2+</sup>/calmodulin-dependent protein kinase II (CaMKII) phosphorylation of phospholamban. The ryanodine receptor (RyR) leak/load relationship was also increased, driven by CaMKII-mediated RyR phosphorylation. Altered Ca<sup>2+</sup> homeostasis also increased signaling via both calcineurin/NFAT and extracellular signal-regulated kinase pathways. Altered myofilament Ca<sup>2+</sup> buffering is the primary initiator of signaling cascades, indicating that directly targeting myofilament Ca<sup>2+</sup> sensitivity provides an attractive therapeutic approach in HCM."	"Tropomyosin-1 promotes cancer cell apoptosis via the p53-mediated mitochondrial pathway in renal cell carcinoma. Tropomyosin-1 (TPM1), a widely expressed actin-binding protein, is downregulated in many tumors and associated with cancer progression. A previous study from our group suggested that TPM1 could be involved in renal cell carcinoma (RCC) apoptosis, but the mechanisms and details remained unknown. The present study aimed to further examine the proapoptotic effects of TPM1 and investigate the underlying mechanisms in RCC cell lines. Results from cell viability, DAPI staining and apoptosis assays demonstrated that TPM1 upregulation inhibited cell proliferation and promoted cell apoptosis in both 786-O and ACHN RCC cell lines. However, TPM1 knockdown in the two RCC cell lines did not result in the opposite effects on cell proliferation or cell apoptosis. Comet assay and western blotting results demonstrated that TPM1 overexpression induced DNA damage and decreased the expression levels of the antiapoptotic factor BCL2 apoptosis regulator, while increasing the expression levels of the proapoptotic factors BCL2 associated X, Caspase-3 and p53 in 786-O and ACHN cells. The present findings suggest that TPM1 overexpression in RCC cell lines can induce tumor cell apoptosis via the p53-mediated mitochondrial pathway. Further studies are needed to fully elucidate the potential of TPM1 as a candidate for RCC targeted therapy in the future."	"Identification of sarcomeric variants in probands with a clinical diagnosis of arrhythmogenic right ventricular cardiomyopathy (ARVC). Arrhythmogenic right ventricular cardiomyopathy (ARVC) is an inherited cardiomyopathy characterized by ventricular arrhythmias and sudden death. Currently 60% of patients meeting Task Force Criteria (TFC) have an identifiable mutation in one of the desmosomal genes. As much overlap is described between other cardiomyopathies and ARVC, we examined the prevalence of rare, possibly pathogenic sarcomere variants in the ARVC population. One hundred and thirty-seven (137) individuals meeting 2010 TFC for a diagnosis of ARVC, negative for pathogenic desmosomal variants, TMEM43, SCN5A, and PLN were screened for variants in the sarcomere genes (ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNC1, TNNI3, TNNT2, and TPM1) through either clinical or research genetic testing. Six probands (6/137, 4%) were found to carry rare variants in the sarcomere genes. These variants have low prevalence in controls, are predicted damaging by Polyphen-2, and some of the variants are known pathogenic hypertrophic cardiomyopathy mutations. Sarcomere variant carriers had a phenotype that did not differ significantly from desmosomal mutation carriers. As most of these probands were the only affected individuals in their families, however, segregation data are noninformative. These data show variants in the sarcomere can be identified in individuals with an ARVC phenotype. Although rare and predicted damaging, proven functional and segregational evidence that these variants can cause ARVC is lacking. Therefore, caution is warranted in interpreting these variants when identified on large next-generation sequencing panels for cardiomyopathies."	"Tropomyosin isoforms have specific effects on the transcriptome of undifferentiated and differentiated B35 neuroblastoma cells. Tropomyosins, a family of actin-associated proteins, bestow actin filaments with distinct biochemical and physical properties which are important for determining cell shape and regulating many cellular processes in eukaryotic cells. Here, we used RNA-seq to investigate the effect of four tropomyosin isoforms on gene expression in undifferentiated and differentiated rat B35 neuroblastoma cells. In undifferentiated cells, overexpression of tropomyosin isoforms Tpm1.12, Tpm2.1, Tpm3.1, and Tpm4.2 differentially regulates a vast number of genes, clustering into several gene ontology terms. In differentiated cells, tropomyosin overexpression exerts a much weaker influence on overall gene expression. Our findings are particularly compelling because they demonstrate that tropomyosin-dependent changes are attenuated once the cells are induced to follow a defined path of differentiation. Sequence data for public availability are deposited in the European Nucleotide Archive under the accession number PRJEB24136."	"HCM and DCM cardiomyopathy-linked α-tropomyosin mutations influence off-state stability and crossbridge interaction on thin filaments. Calcium regulation of cardiac muscle contraction is controlled by the thin-filament proteins troponin and tropomyosin bound to actin. In the absence of calcium, troponin-tropomyosin inhibits myosin-interactions on actin and induces muscle relaxation, whereas the addition of calcium relieves the inhibitory constraint to initiate contraction. Many mutations in thin filament proteins linked to cardiomyopathy appear to disrupt this regulatory switching. Here, we tested perturbations caused by mutant tropomyosins (E40K, DCM; and E62Q, HCM) on intra-filament interactions affecting acto-myosin interactions including those induced further by myosin association. Comparison of wild-type and mutant human α-tropomyosin (Tpm1.1) behavior was carried out using in vitro motility assays and molecular dynamics simulations. Our results show that E62Q tropomyosin destabilizes thin filament off-state function by increasing calcium-sensitivity, but without apparent affect on global tropomyosin structure by modifying coiled-coil rigidity. In contrast, the E40K mutant tropomyosin appears to stabilize the off-state, demonstrates increased tropomyosin flexibility, while also decreasing calcium-sensitivity. In addition, the E40K mutation reduces thin filament velocity at low myosin concentration while the E62Q mutant tropomyosin increases velocity. Corresponding molecular dynamics simulations indicate specific residue interactions that are likely to redefine underlying molecular regulatory mechanisms, which we propose explain the altered contractility evoked by the disease-causing mutations."	"Tropomyosin 2 heterozygous knockout in mice using CRISPR-Cas9 system displays the inhibition of injury-induced epithelial-mesenchymal transition, and lens opacity. The process of epithelial-mesenchymal transition (EMT) of lens epithelial cells (LECs) after cataract surgery contributes to tissue fibrosis, wound healing and lens regeneration via a mechanism not yet fully understood. Here, we show that tropomyosin 2 (Tpm2) plays a critical role in wound healing and lens aging. Posterior capsular opacification (PCO) after lens extraction surgery was accompanied by elevated expression of Tpm2. Tpm2 heterozygous knockout mice, generated via the clustered regularly interspaced short palindromic repeat/Cas9 (CRISPR/Cas9) system showed promoted progression of cataract with age. Further, injury-induced EMT of the mouse lens epithelium, as evaluated histologically and by the expression patterns of Tpm1 and Tpm2, was attenuated in the absence of Tpm2. In conclusion, Tpm2 may be important in maintaining lens physiology and morphology. However, Tpm2 is involved in the progression of EMT during the wound healing process of mouse LECs, suggesting that inhibition of Tpm2 may suppress PCO."	"The primary cause of muscle disfunction associated with substitutions E240K and R244G in tropomyosin is aberrant behavior of tropomyosin and response of actin and myosin during ATPase cycle. Using the polarized photometry technique we have studied the effects of two amino acid replacements, E240K and R244G, in tropomyosin (Tpm1.1) on the position of Tpm1.1 on troponin-free actin filaments and the spatial arrangement of actin monomers and myosin heads at various mimicked stages of the ATPase cycle in the ghost muscle fibres. E240 and R244 are located in the C-terminal, seventh actin-binding period, in f and b positions of the coiled-coil heptapeptide repeat. Actin, Tpm1.1, and myosin subfragment-1 (S1) were fluorescently labeled: 1.5-IAEDANS was attached to actin and S1, 5-IAF was bound to Tpm1.1. The labeled proteins were incorporated in the ghost muscle fibres and changes in polarized fluorescence during the ATPase cycle have been measured. It was found that during the ATPase cycle both mutant tropomyosins occupied a position close to the inner domain of actin. The relative amount of the myosin heads in the strongly-bound conformations and of the switched on actin monomers increased at mimicking different stages of the ATPase cycle. This might be one of the reasons for muscle dysfunction in congenital fibre type disproportion caused by the substitutions E240K and R244G in tropomyosin."	"Distinct sites in tropomyosin specify shared and isoform-specific regulation of myosins II and V. Muscle contraction, cytokinesis, cellular movement, and intracellular transport depend on regulated actin-myosin interaction. Most actin filaments bind one or more isoform of tropomyosin, a coiled-coil protein that stabilizes the filaments and regulates interactions with other actin-binding proteins, including myosin. Isoform-specific allosteric regulation of muscle myosin II by actin-tropomyosin is well-established while that of processive myosins, such as myosin V, which transport organelles and macromolecules in the cell periphery, is less certain. Is the regulation by tropomyosin a universal mechanism, the consequence of the conserved periodic structures of tropomyosin, or is it the result of specialized interactions between particular isoforms of myosin and tropomyosin? Here, we show that striated muscle tropomyosin, Tpm1.1, inhibits fast skeletal muscle myosin II but not myosin Va. The non-muscle tropomyosin, Tpm3.1, in contrast, activates both myosins. To decipher the molecular basis of these opposing regulatory effects, we introduced mutations at conserved surface residues within the six periodic repeats (periods) of Tpm3.1, in positions homologous or analogous to those important for regulation of skeletal muscle myosin by Tpm1.1. We identified conserved residues in the internal periods of both tropomyosin isoforms that are important for the function of myosin Va and striated myosin II. Conserved residues in the internal and C-terminal periods that correspond to Tpm3.1-specific exons inhibit myosin Va but not myosin II function. These results suggest that tropomyosins may directly impact myosin function through both general and isoform-specific mechanisms that identify actin tracks for the recruitment and function of particular myosins."	"Functional effects of substitutions I92T and V95A in actin-binding period 3 of tropomyosin. NA"	"Tropomyosins Regulate the Severing Activity of Gelsolin in Isoform-Dependent and Independent Manners. The actin cytoskeleton fulfills numerous key cellular functions, which are tightly regulated in activity, localization, and temporal patterning by actin binding proteins. Tropomyosins and gelsolin are two such filament-regulating proteins. Here, we investigate how the effects of tropomyosins are coupled to the binding and activity of gelsolin. We show that the three investigated tropomyosin isoforms (Tpm1.1, Tpm1.12, and Tpm3.1) bind to gelsolin with micromolar or submicromolar affinities. Tropomyosin binding enhances the activity of gelsolin in actin polymerization and depolymerization assays. However, the effects of the three tropomyosin isoforms varied. The tropomyosin isoforms studied also differed in their ability to protect pre-existing actin filaments from severing by gelsolin. Based on the observed specificity of the interactions between tropomyosins, actin filaments, and gelsolin, we propose that tropomyosin isoforms specify which populations of actin filaments should be targeted by, or protected from, gelsolin-mediated depolymerization in living cells."	"Identifying protein biomarkers in predicting disease severity of dengue virus infection using immune-related protein microarray. Dengue virus is one of the most widespread flaviviruses that re-emerged throughout recent decades. The progression from mild dengue to severe dengue (SD) with the complications such as vascular leakage and hemorrhage increases the fatality rate of dengue. The pathophysiology of SD is not entirely clear. To investigate potential biomarkers that are suggestive of pathogenesis of SD, a small panel of serum samples selected from 1 healthy individual, 2 dengue patients without warning signs (DWS-), 2 dengue patients with warning signs (DWS+), and 5 patients with SD were subjected to a pilot analysis using Sengenics Immunome protein array. The overall fold changes of protein expressions and clustering heat map revealed that PFKFB4, TPM1, PDCL3, and PTPN20A were elevated among patients with SD. Differential expression analysis identified that 29 proteins were differentially elevated greater than 2-fold in SD groups than DWS- and DWS+. From the 29 candidate proteins, pathways enrichment analysis also identified insulin signaling and cytoskeleton pathways were involved in SD, suggesting that the insulin pathway may play a pivotal role in the pathogenesis of SD."	"Divergent effects of adrenaline in human induced pluripotent stem cell-derived cardiomyocytes obtained from hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a common inherited cardiac disease that affects the heart muscle with diverse clinical outcomes. HCM can cause sudden cardiac death (SCD) during or immediately after mild to rigorous physical activity in young patients. However, the mechanism causing SCD as a result of exercise remains unknown, but exercise-induced ventricular arrhythmias are thought to be responsible for this fatal consequence. To understand the disease mechanism behind HCM in a better way, we generated patient-specific induced pluripotent stem cell-derived cardiomyocytes (hiPSC-CMs) from HCM patients carrying either the MYBPC3-Gln1061X or TPM1-Asp175Asn mutation. We extensively investigated the effects of low to high concentrations of adrenaline on action potential characteristics, and the occurrence of arrhythmias in the presence of various concentrations of adrenaline and in wash-out condition. We classified and quantified different types of arrhythmias observed in hiPSC-CMs, and found that the occurrence of arrhythmias was dependent on concentrations of adrenaline and positions of mutations in genes causing HCM. In addition, we observed ventricular tachycardia types of arrhythmias in hiPSC-CMs carrying the TPM1-Asp175Asn mutation. We additionally examined the antiarrhythmic potency of bisoprolol in HCM-specific hiPSC-CMs. However, bisoprolol could not reduce the occurrence of arrhythmias during administration or during the wash-out condition of adrenaline in HCM-specific hiPSC-CMs. Our study demonstrates hiPSC-CMs as a promising tool for studying HCM. The experimental design used in this study could be suitable and beneficial for studying other components and drugs related to cardiac disease in general."	"A functional link between NAD<sup>+</sup> homeostasis and N-terminal protein acetylation in Saccharomyces cerevisiae. Nicotinamide adenine dinucleotide (NAD<sup>+</sup>) is an essential metabolite participating in cellular redox chemistry and signaling, and the complex regulation of NAD<sup>+</sup> metabolism is not yet fully understood. To investigate this, we established a NAD<sup>+</sup>-intermediate specific reporter system to identify factors required for salvage of metabolically linked nicotinamide (NAM) and nicotinic acid (NA). Mutants lacking components of the NatB complex, NAT3 and MDM20, appeared as hits in this screen. NatB is an N<sup>α</sup>-terminal acetyltransferase responsible for acetylation of the N terminus of specific Met-retained peptides. In NatB mutants, increased NA/NAM levels were concomitant with decreased NAD<sup>+</sup> We identified the vacuolar pool of nicotinamide riboside (NR) as the source of this increased NA/NAM. This NR pool is increased by nitrogen starvation, suggesting NAD<sup>+</sup> and related metabolites may be trafficked to the vacuole for recycling. Supporting this, increased NA/NAM release in NatB mutants was abolished by deleting the autophagy protein ATG14 We next examined Tpm1 (tropomyosin), whose function is regulated by NatB-mediated acetylation, and Tpm1 overexpression (TPM1-oe) was shown to restore some NatB mutant defects. Interestingly, although TPM1-oe largely suppressed NA/NAM release in NatB mutants, it did not restore NAD<sup>+</sup> levels. We showed that decreased nicotinamide mononucleotide adenylyltransferase (Nma1/Nma2) levels probably caused the NAD<sup>+</sup> defects, and NMA1-oe was sufficient to restore NAD<sup>+</sup> NatB-mediated N-terminal acetylation of Nma1 and Nma2 appears essential for maintaining NAD<sup>+</sup> levels. In summary, our results support a connection between NatB-mediated protein acetylation and NAD<sup>+</sup> homeostasis. Our findings may contribute to understanding the molecular basis and regulation of NAD<sup>+</sup> metabolism."	"Gender-related increase of tropomyosin-1 abundance in platelets of Alzheimer's disease and mild cognitive impairment patients. The incidence of Alzheimer's disease (AD) is higher in elderly women than in men. The molecular background of this gender-related risk, however, is largely unknown. In a previous proteomics study, we identified significantly elevated levels of monoamine oxidase-B and tropomyosin-1 in AD patients, together with significant changes of the genetic AD risk factors apolipoprotein E4 (APOE4) and glutathione S-transferase omega 1 (GSTO1), in platelets - a promising source for AD blood biomarkers. The present study aimed to investigate the gender-specificity as well as the disease-stage dependency of these biomarkers in AD patients and those with mild cognitive impairment (MCI). Tropomyosin-1 and monoamine oxidase-B protein levels were quantified by 2-D DIGE and 1-D Western blotting. Here, for the first time, we revealed a significant increase of 38&amp;39kDa tropomyosin-1 protein levels in female but not male AD (+56%; p=0.008) and MCI patients (+46%; p=0.041) measured by 1-D WB. In contrast, levels of monoamine oxidase-B were, independently of gender, elevated in AD patients (+52%; p=0.009) but unaltered in MCI compared to control subjects. Moreover, we confirmed that APOE4-positive females are at a higher risk (OR=18.7; p=9.7E-09) of developing AD compared to APOE4-positive males (OR=6.5; p=5.9E-04). No gender-related effects were observed for GSTO1. Platelet tropomyosin-1 constitutes a gender-related and stage-dependent protein in cognitive impairment. In contrast, platelet monoamine oxidase-B, frequently described to be increased in platelets and brains of AD patients, shows a gender-independent but stage-related increase since it is unaltered in MCI subjects. A blood biomarker test for this preceding stage of AD that considers gender-specificity is not yet available. The newly described AD-related platelet protein profiles might refine and facilitate routine diagnosis and enable early as well as tailored interventions."	"Functional role of the core gap in the middle part of tropomyosin. Tropomyosin (Tpm) is an α-helical coiled-coil actin-binding protein playing an essential role in the regulation of muscle contraction. The middle part of the Tpm molecule has some specific features, such as the presence of noncanonical residues as well as a substantial gap at the interhelical interface, which are believed to destabilize a coiled-coil and impart structural flexibility to this part of the molecule. To study how the gap affects structural and functional properties of α-striated Tpm (the Tpm1.1 isoform that is expressed in cardiac and skeletal muscles) we replaced large conserved apolar core residues located at both sides of the gap with smaller ones by mutations M127A/I130A and M141A/Q144A. We found that in contrast with the stabilizing substitutions D137L and G126R studied earlier, these substitutions have no appreciable influence on thermal unfolding and domain structure of the Tpm molecule. They also do not affect actin-binding properties of Tpm. However, they strongly increase sliding velocity of regulated actin filaments in an in vitro motility assay and cause an oversensitivity of the velocity to Ca<sup>2+</sup> similar to the stabilizing substitutions D137L and G126R. Molecular dynamics shows that the substitutions studied here increase bending stiffness of the coiled-coil structure of Tpm, like that of G126R/D137L, probably due to closure of the interhelical gap in the area of the substitutions. Our results clearly indicate that the conserved middle part of Tpm is important for the fine tuning of the Ca<sup>2+</sup> regulation of actin-myosin interaction in muscle."	"Three mammalian tropomyosin isoforms have different regulatory effects on nonmuscle myosin-2B and filamentous β-actin in vitro. The metazoan actin cytoskeleton supports a wide range of contractile and transport processes. Recent studies have shown how the dynamic association with specific tropomyosin isoforms generates actin filament populations with distinct functional properties. However, critical details of the associated molecular interactions remain unclear. Here, we report the properties of actomyosin-tropomyosin complexes containing filamentous β-actin, nonmuscle myosin-2B (NM-2B) constructs, and either tropomyosin isoform Tpm1.8cy (b.-.b.d), Tpm1.12br (b.-.b.c), or Tpm3.1cy (b.-.a.d). Our results show the extent to which the association of filamentous β-actin with these different tropomyosin cofilaments affects the actin-mediated activation of NM-2B and the release of the ATP hydrolysis products ADP and phosphate from the active site. Phosphate release gates a transition from weak to strong F-actin-binding states. The release of ADP has the opposite effect. These changes in dominant rate-limiting steps have a direct effect on the duty ratio, the fraction of time that NM-2B spends in strongly F-actin-bound states during ATP turnover. The duty ratio is increased ∼3-fold in the presence of Tpm1.12 and 5-fold for both Tpm1.8 and Tpm3.1. The presence of Tpm1.12 extends the time required per ATP hydrolysis cycle 3.7-fold, whereas it is shortened by 27 and 63% in the presence of Tpm1.8 and Tpm3.1, respectively. The resulting Tpm isoform-specific changes in the frequency, duration, and efficiency of actomyosin interactions establish a molecular basis for the ability of these complexes to support cellular processes with widely divergent demands in regard to force production, capacity to move processively, and speed of movement."	"Genomic Organization of Repetitive DNAs and Differentiation of an XX/XY Sex Chromosome System in the Amazonian Puffer Fish, Colomesus asellus (Tetraodontiformes). The genus Colomesus is the sole representative of the family Tetraodontidae in the Amazon region. Here, Colomesus asellus was analyzed using conventional and molecular cytogenetic protocols. Its diploid chromosome number is 2n = 46 with 12 meta-, 10 submeta-, 16 subtelo-, and 8 acrocentric chromosomes and a fundamental number of FN = 84. An XX/XY sex chromosome system was identified. Mapping of 18S rDNA correlated with the nucleolus organizer regions (Ag-NORs) in the short arms of the 2 X chromosomes in females and in the Y chromosome in males. C-banding revealed heterochromatin in the centromeric regions of all chromosomes, except for pair 3. Prominent sex chromosome-specific heterochromatin amplification was observed, covering the short arms of the Y chromosome almost entirely. FISH with telomeric and tropomyosin (tpm1) sequences, respectively, revealed terminal signals in all chromosomes. The analysis of extended DNA fibers confirmed the colocalization and the interspersed pattern of the telomeric and tpm1 sequences. Thus, this study highlights the remarkable evolutionary dynamism presented by the Amazonian puffer fish regarding the differentiation of a heteromorphic XY sex chromosome system and a particular sex-specific amplification of rDNA sites. This is the first record of such an association in the Tetraodontidae family."	"Long noncoding RNA NBAT1 negatively modulates growth and metastasis of osteosarcoma cells through suppression of miR-21. Osteosarcoma (OS) is the most common primary bone malignancies. Long noncoding RNAs (lncRNAs) are key regulatory RNAs which takes part in several biological processes. LncRNA neuroblastoma associated transcript 1 (NBAT1) is a newly identified functional lncRNA. NBAT1 functions as a tumor suppressor in some cancers. However, the expression pattern, the biological function and the mechanisms of NBAT1 in OS progress have not been elucidated. In this study, for the first time, we found that NBAT1 expression is downregulated in OS tissues and cell lines and is associated with clinical stage, distant metastasis and poor prognosis. Loss- and gain-of-function assays showed that NBAT1 played a negative regulatory role in OS growth and metastasis in vitro and in vivo. Further investigation demonstrated that NBAT1 physically interacted with miR-21 and then suppressed its expression. NBAT1 also regulated downstream genes targeted by miR-21, including PTEN, PDCD4, TPM1 and RECK. These findings may extend the function of NBAT1 in tumor progression and provide a novel target for OS treatment."	"Structural destabilization of tropomyosin induced by the cardiomyopathy-linked mutation R21H. The missense mutation R21H in striated muscle tropomyosin is associated with hypertrophic cardiomyopathy, a genetic cardiac disease and a leading cause of sudden cardiac death in young people. Tropomyosin adopts conformation of a coiled coil which is critical for regulation of muscle contraction. In this study, we investigated the effects of the R21H mutation on the coiled-coil structure of tropomyosin and its interactions with its binding partners, tropomodulin and leiomodin. Using circular dichroism and isothermal titration calorimetry, we found that the mutation profoundly destabilized the structural integrity of αTM1a1-28 Zip, a chimeric peptide containing the first 28 residues of tropomyosin. The mutated αTM1a1-28 Zip was still able to interact with tropomodulin and leiomodin. However, the mutation resulted in a ∼30-fold decrease of αTM1a1-28 Zip's binding affinity to leiomodin. We used a crystal structure of αTM1a1-28 Zip that we solved at 1.5 Å resolution to study the mutation's effect in silico by means of molecular dynamics simulation. The simulation data indicated that while the mutation disrupted αTM1a1-28 Zip's coiled-coil structure, most notably from residue Ala18 to residue His31, it may not affect the N-terminal end of tropomyosin. The drastic decrease of αTM1a1-28 Zip's affinity to leiomodin caused by the mutation may lead to changes in the dynamics at the pointed end of thin filaments. Therefore, the R21H mutation is likely interfering with the regulation of the normal thin filament length essential for proper muscle contraction."	"Left ventricular non-compaction with Ebstein anomaly attributed to a TPM1 mutation. Left ventricular non-compaction (cardiomyopathy) (LVN(C)) is a rare hereditary cardiac condition, resulting from abnormal embryonic myocardial development. While it mostly occurs as an isolated condition, association with other cardiovascular manifestations such as Ebstein anomaly (EA) has been reported. This congenital heart defect is characterized by downward displacement of the tricuspid valve and leads to diminished ventricular size and function. In an autosomal dominant LVN(C) family consisting of five affected individuals, of which two also presented with EA and three with mitral valve insufficiency, we pursued the genetic disease cause using whole exome sequencing (WES). WES revealed a missense variant (p.Leu113Val) in TPM1 segregating with the LVN(C) phenotype. TPM1 encodes α-tropomyosin, which is involved in myocardial contraction, as well as in stabilization of non-muscle cytoskeletal actin filaments. So far, LVN(C)-EA has predominantly been linked to pathogenic variants in MYH7. However, one sporadic LVN(C)-EA case with a de novo TPM1 variant has recently been described. We here report the first LVN(C)-EA family segregating a pathogenic TPM1 variant, further establishing the association between EA predisposition and TPM1-related LVN(C). Consequently, we recommend genetic testing for both MYH7 and TPM1 in patients or families in which LVN(C)/non-compaction and EA coincide."	"Deviations in conformational rearrangements of thin filaments and myosin caused by the Ala155Thr substitution in hydrophobic core of tropomyosin. Effects of the Ala155Thr substitution in hydrophobic core of tropomyosin Tpm1.1 on conformational rearrangements of the components of the contractile system (Tpm1.1, actin and myosin heads) were studied by polarized fluorimetry technique at different stages of the actomyosin ATPase cycle. The proteins were labelled by fluorescent probes and incorporated into ghost muscle fibres. The substitution violated the blocked and closed states of thin filaments stimulating abnormal displacement of tropomyosin to the inner domains of actin, switching actin on and increasing the relative number of the myosin heads in strong-binding state. Furthermore, the mutant tropomyosin disrupted the major function of troponin to alter the distribution of the different functional states of thin filaments. At low Ca<sup>2+</sup> troponin did not effectively switch thin filament off and the myosin head lost the ability to drive the spatial arrangement of the mutant tropomyosin. The information about tropomyosin flexibility obtained from the fluorescent probes at Cys190 indicates that this tropomyosin is generally more rigid, that obviously prevents tropomyosin to bend and adopt the appropriate conformation required for proper regulation."	"Identification of ALK Rearrangements in Malignant Peritoneal Mesothelioma. Malignant peritoneal mesothelioma is a rare, aggressive tumor arising from the peritoneal lining, induced by asbestos, therapeutic radiation, or germline mutations. Nevertheless, the molecular features remain largely unknown. To investigate anaplastic lymphoma kinase (ALK) rearrangements in a large series of peritoneal mesothelioma and characterize the mutational landscape of these tumors. We studied 88 consecutive patients (39 men, 49 women; median age 61, range 17-84 years) with peritoneal mesotheliomas diagnosed at a single institution between 2005 and 2015. We identified ALK-positive mesotheliomas by immunohistochemistry and confirmed ALK rearrangement by fluorescence in situ hybridization (FISH). In ALK-rearranged cases, we characterized the fusion partners using targeted next-generation sequencing of both tumor DNA and RNA. In select cases, we quantified asbestos fibers by combined scanning electron microscopy and x-ray spectroscopy. We also explored ALK rearrangement in a separate series of 205 patients with pleural mesothelioma. Identification and characterization of novel ALK rearrangements and correlations with clinicopathologic characteristics. Anaplastic lymphoma kinase was positive by immunohistochemistry in 11 (13%) peritoneal mesotheliomas (focal weak in 8, diffuse strong in 3). In focal weak ALK-positive cases, no ALK rearrangement was detected by FISH or next-generation sequencing. In strong diffuse ALK-positive cases, FISH confirmed ALK rearrangements, and next-generation sequencing identified novel fusion partners ATG16L1, STRN, and TPM1. Patients with ALK-rearranged peritoneal mesotheliomas were women and younger than patients without ALK rearrangement (median age 36 vs 62; Mann-Whitney test, P = .02), but all other clinicopathologic characteristics (size of tumor nodules, histology, treatment, and survival) were not different. No asbestos fibers were detected in ALK-rearranged cases. Furthermore, loss of chromosomal region 9p or 22q or genetic alterations in BAP1, SETD2, or NF2 typically present in peritoneal mesothelioma were absent in the ALK-rearranged cases. All pleural mesotheliomas were ALK-negative by immunohistochemistry. We identified unique ALK rearrangements in a subset of patients with peritoneal mesothelioma, each lacking asbestos fibers, therapeutic radiation, and cytogenetic and molecular alterations typically found in these tumors. Identification of clinically actionable ALK rearrangements may represent a novel pathogenetic mechanism of malignant peritoneal mesothelioma with promise for targeted therapy."	"Novel Genetic Triggers and Genotype-Phenotype Correlations in Patients With Left Ventricular Noncompaction. Left ventricular noncompaction (LVNC) is a genetically and phenotypically heterogeneous disease and, although increasingly recognized in clinical practice, there is a lack of widely accepted diagnostic criteria. We sought to identify novel genetic causes of LVNC and describe genotype-phenotype correlations. A total of 190 patients from 174 families with left ventricular hypertrabeculation (LVHT) or LVNC were referred for cardiac magnetic resonance and whole-exome sequencing. A total of 425 control individuals were included to identify variants of interest (VOIs). We found an excess of 138 VOIs in 102 (59%) unrelated patients in 54 previously identified LVNC or other known cardiomyopathy genes. VOIs were found in 68 of 90 probands with LVNC and 34 of 84 probands with LVHT (76% and 40%, respectively; P&lt;0.001). We identified 0, 1, and ≥2 VOIs in 72, 74, and 28 probands, respectively. We found increasing number of VOIs in a patient strongly correlated with several markers of disease severity, including ratio of noncompacted to compacted myocardium (P&lt;0.001) and left ventricular ejection fraction (P=0.01). The presence of sarcomeric gene mutations was associated with increased occurrence of late gadolinium enhancement (P=0.004). LVHT and LVNC likely represent a continuum of genotypic disease with differences in severity and variable phenotype explained, in part, by the number of VOIs and whether mutations are present in sarcomeric or nonsarcomeric genes. Presence of VOIs is common in patients with LVHT. Our findings expand the current clinical and genetic diagnostic approaches for patients with LVHT and LVNC."	"Additional value of screening for minor genes and copy number variants in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is the most prevalent inherited heart disease. Next-generation sequencing (NGS) is the preferred genetic test, but the diagnostic value of screening for minor and candidate genes, and the role of copy number variants (CNVs) deserves further evaluation. Three hundred and eighty-seven consecutive unrelated patients with HCM were screened for genetic variants in the 5 most frequent genes (MYBPC3, MYH7, TNNT2, TNNI3 and TPM1) using Sanger sequencing (N = 84) or NGS (N = 303). In the NGS cohort we analyzed 20 additional minor or candidate genes, and applied a proprietary bioinformatics algorithm for detecting CNVs. Additionally, the rate and classification of TTN variants in HCM were compared with 427 patients without structural heart disease. The percentage of patients with pathogenic/likely pathogenic (P/LP) variants in the main genes was 33.3%, without significant differences between the Sanger sequencing and NGS cohorts. The screening for 20 additional genes revealed LP variants in ACTC1, MYL2, MYL3, TNNC1, GLA and PRKAG2 in 12 patients. This approach resulted in more inconclusive tests (36.0% vs. 9.6%, p&lt;0.001), mostly due to variants of unknown significance (VUS) in TTN. The detection rate of rare variants in TTN was not significantly different to that found in the group of patients without structural heart disease. In the NGS cohort, 4 patients (1.3%) had pathogenic CNVs: 2 deletions in MYBPC3 and 2 deletions involving the complete coding region of PLN. A small percentage of HCM cases without point mutations in the 5 main genes are explained by P/LP variants in minor or candidate genes and CNVs. Screening for variants in TTN in HCM patients drastically increases the number of inconclusive tests, and shows a rate of VUS that is similar to patients without structural heart disease, suggesting that this gene should not be analyzed for clinical purposes in HCM."	"Natural antisense transcript TPM1-AS regulates the alternative splicing of tropomyosin I through an interaction with RNA-binding motif protein 4. LncRNAs play a vital role in alternative splicing of target genes. However, the mechanisms underlying lncRNAs involvement in splicing are poorly understood. In the present study, we identified a previously uncharacterized lncRNA, which is denoted as TPM1-AS, is reverse-transcribed from the fourth intronic region of the tropomyosin I (TPM1). In situ hybridization and RNA immunoprecipitation assays demonstrated that TPM1-AS was located in the nucleus and interacted with RNA-binding motif protein 4 (RBM4) in human esophageal cancer cells. TPM1-AS overexpression or RBM4 knockdown decreased endogenous exon 2a expression of TPM1, resulting in specifically down-regulation of TPM1variant V2 and V7 in human esophageal cancer cells. Mechanismly, the interaction of TPM1-AS with RBM4 hindered binding of RBM4 to TPM1 pre-mRNA and inhibited RBM4 to promote endogenous exon 2a inclusion of TPM1. Importantly, overexpression of TPM1-AS inhibited migration and filopodium formation, whereas TPM1variant V2 and V7 promoted these behaviors of human esophageal cancer cells. Taken together, the results suggest that a natural antisense TPM1-AS regulates the alternative splicing of TPM1 through an interaction with RBM4 and involves in TPM1-mediated filopodium formation and migration of cancer cells."	"The cardiomyopathy-associated K15N mutation in tropomyosin alters actin filament pointed end dynamics. Correct assembly of thin filaments composed of actin and actin-binding proteins is of crucial importance for properly functioning muscle cells. Tropomyosin (Tpm) mediates the binding of tropomodulin (Tmod) and leiomodin (Lmod) at the slow-growing, or pointed, ends of the thin filaments. Together these proteins regulate thin filament lengths and actin dynamics in cardiac muscle. The K15N mutation in the TPM1 gene is associated with familial dilated cardiomyopathy (DCM) but the effect of this mutation on Tpm's function is unknown. In this study, we introduced the K15N mutation in striated muscle α-Tpm (Tpm1.1) and investigated its interaction with actin, Tmod and Lmod. The mutation caused a ∼3-fold decrease in the affinity of Tpm1.1 for actin. The binding of Lmod and Tmod to Tpm1.1-covered actin filaments also decreased in the presence of the K15N mutation. Furthermore, the K15N mutation in Tpm1.1 disrupted the inhibition of actin polymerization and affected the competition between Tmod1 and Lmod2 for binding at the pointed ends. Our data demonstrate that the K15N mutation alters pointed end dynamics by affecting molecular interactions between Tpm1.1, Lmod2 and Tmod1."	"Stabilization of F-actin by tropomyosin isoforms regulates the morphology and mechanical behavior of red blood cells. The short F-actins in the red blood cell (RBC) membrane skeleton are coated along their lengths by an equimolar combination of two tropomyosin isoforms, Tpm1.9 and Tpm3.1. We hypothesized that tropomyosin's ability to stabilize F-actin regulates RBC morphology and mechanical properties. To test this, we examined mice with a targeted deletion in alternatively spliced exon 9d of Tpm3 (Tpm3/9d<sup>-/-</sup> ), which leads to absence of Tpm3.1 in RBCs along with a compensatory increase in Tpm1.9 of sufficient magnitude to maintain normal total tropomyosin content. The isoform switch from Tpm1.9/Tpm3.1 to exclusively Tpm1.9 does not affect membrane skeleton composition but causes RBC F-actins to become hyperstable, based on decreased vulnerability to latrunculin-A-induced depolymerization. Unexpectedly, this isoform switch also leads to decreased association of Band 3 and glycophorin A with the membrane skeleton, suggesting that tropomyosin isoforms regulate the strength of F-actin-to-membrane linkages. Tpm3/9d<sup>-/-</sup> mice display a mild compensated anemia, in which RBCs have spherocytic morphology with increased osmotic fragility, reduced membrane deformability, and increased membrane stability. We conclude that RBC tropomyosin isoforms directly influence RBC physiology by regulating 1) the stability of the short F-actins in the membrane skeleton and 2) the strength of linkages between the membrane skeleton and transmembrane glycoproteins."	"Expression of various sarcomeric tropomyosin isoforms in equine striated muscles. In order to better understand the training and athletic activity of horses, we must have complete understanding of the isoform diversity of various myofibrillar protein genes like tropomyosin. Tropomyosin (TPM), a coiled-coil dimeric protein, is a component of thin filament in striated muscles. In mammals, four TPM genes (TPM1, TPM2, TPM3, and TPM4) generate a multitude of TPM isoforms via alternate splicing and/or using different promoters. Unfortunately, our knowledge of TPM isoform diversity in the horse is very limited. Hence, we undertook a comprehensive exploratory study of various TPM isoforms from horse heart and skeletal muscle. We have cloned and sequenced two sarcomeric isoforms of the TPM1 gene called TPM1α and TPM1κ, one sarcomeric isoform of the TPM2 and one of the TPM3 gene, TPM2α and TPM3α respectively. By qRT-PCR using both relative expression and copy number, we have shown that TPM1α expression compared to TPM1κ is very high in heart. On the other hand, the expression of TPM1α is higher in skeletal muscle compared to heart. Further, the expression of TPM2α and TPM3α are higher in skeletal muscle compared to heart. Using western blot analyses with CH1 monoclonal antibody we have shown the high expression levels of sarcomeric TPM proteins in cardiac and skeletal muscle. Due to the paucity of isoform specific antibodies we cannot specifically detect the expression of TPM1κ in horse striated muscle. To the best of our knowledge this is the very first report on the characterization of sarcmeric TPMs in horse striated muscle."	"Proteomic analysis and comparison of intra‑ and extracranial cerebral atherosclerosis responses to hyperlipidemia in rabbits. The present study aimed to investigate protein expression levels of intra‑ and extracranial atherosclerosis in rabbits following administration of a high‑fat diet. Rabbits were randomly divided into control (group A; n=9) and high‑fat diet (group B; n=9) groups. At week 12, tissues were sectioned from the common carotid artery (CCA) and middle cerebral artery (MCA). Pathological analysis was performed. Differential protein expression levels were examined by 2‑D gel electrophoresis (2‑DE) and mass spectrometry (MS) analysis and validated by western blotting. Serum lipid levels, the intima‑media thickness (IMT) and degree of atherosclerosis of the CCA and MCA were increased at week 12 in the high‑fat diet group compared with rabbits that received a normal diet. 2‑DE and MS analysis of the protein extracted from CCA and MCA detected &gt;439 different proteins; the expression of 25 proteins was altered, and 8 proteins [albumin A chain, tropomyosin α‑1 chain (TPM1), heat shock protein 70 (HSP70), α‑smooth muscle actin, β‑galactose binding agglutinin, TPM4 isoform 2, cell keratin 9, single octylic acid glyceride β‑2) demonstrated significant alterations in expression levels. Due to limited antibody sources, only three differentially expressed proteins (TPM1, HSP70 and α‑smooth muscle actin) were examined by western blotting. The results of our previous study demonstrated that hyperlipidemia affected the IMT of intracranial and extracranial cerebral arteries. In the present study, protein expression levels of TPM1 and α‑smooth muscle actin from extracranial cerebral arteries were significantly increased compared with intracranial cerebral arteries; however, protein expression levels of HSP70 from intracranial cerebral arteries was increased compared with extracranial cerebral arteries. The differences may be closely associated with cell proliferation and metastasis, and oxidoreduction, in intra‑ and extracranial cerebral atherosclerosis. HSP70 may have protective properties against atherosclerosis via underlying anti‑inflammatory mechanisms, furthermore, differential protein expression levels (TPM1, HSP70 and α‑smooth muscle actin) between intra‑ and extracranial cerebral arteries may facilitate the identification of novel biological markers for the diagnosis and treatment of cerebral arteriosclerosis."	"A Population-Based Study of Effects of Genetic Loci on Orofacial Clefts. Prior genome-wide association studies for oral clefts have focused on clinic-based samples with unclear generalizability. Prior samples were also small for investigating effects by cleft type and exclusively studied isolated clefts (those occurring without other birth defects). We estimated the effects of 17 top loci on cleft types in both isolated and nonisolated cases in the largest consortium to date of European-descent population-based studies. Our analytic approach focused on a mother-child dyad case-control design, but it also allowed analyzing mother-only or child-only genotypes to maximize power. Our total sample included 1,875 cases with isolated clefts, 459 cases with nonisolated clefts, and 3,749 controls. After correcting for multiple testing, we observed significant associations between fetal single-nucleotide polymorphisms (SNPs) at IRF6, PAX7, 8q21.3, 8q24, KIAA1598-VAX1, and MAFB and isolated cleft lip only (CLO) and cleft lip and palate (CLP). Significant associations were observed between isolated CLO and fetal SNPs near TPM1 and NOG1 and between CLP and fetal SNPs at ABCA4-ARHGAP29, THADA, FOXE1, and SPRY2. Overall, effects were similar for isolated CLO and CLP, except for ABCA4-ARHGAP29. A protective effect was observed for the fetal NOG1 SNP on cleft palate only, opposite in direction to the effect on CLO. For most fetal SNPs, a dose-response allelic effect was observed. No evidence of parent-of-origin or maternal genome effects was observed. Overall, effect direction and magnitude were similar between isolated and nonisolated clefts, suggesting that several loci are modifiers of cleft risk in both isolated and nonisolated forms. Our results provide reliable estimates of the effects of top loci on risks of oral clefts in a population of European descent."	"Quantitative Proteomics Analysis Reveals Novel Targets of miR-21 in Zebrafish Embryos. MicroRNAs (miRNAs) are noncoding RNAs which control gene expression by the suppression of translation or the degradation of mRNAs. Dre-miR-21 (miR-21) has been reported to impact cardiac valvulogenesis in zebrafish embryos. However, the target genes of miR-21 are still largely unknown. Here a tandem isobaric mass tag (TMT)-based quantitative proteomic strategy was employed to identify the global profile of miR-21-regulated proteins. A total of 251 proteins were dysregulated after miR-21 knockdown, suggesting that they may be regulated by miR-21. Bioinformatics analysis indicated that these differentially expressed proteins (DEPs) participate in various biological processes, suggesting that miR-21 may be involved in diverse cellular pathways. Sixteen DEPs were also predicted to be miR-21 targets by at least two algorithms, and several candidate target genes were selected for further luciferase reporter analysis. The results showed that genes encoding tropomyosin 1 (tpm1) and poly(rC) binding protein 2 (pcbp2) are direct miR-21 targets. Taken together, our results not only reveal a large number of novel miR-21 regulated proteins that possess pleiotropic functions, but also provide novel insights into the molecular mechanisms of miR-21 regulation of zebrafish cardiac valvulogenesis and embryonic development."	"Clinically Divergent Mutation Effects on the Structure and Function of the Human Cardiac Tropomyosin Overlap. The progression of genetically inherited cardiomyopathies from an altered protein structure to clinical presentation of disease is not well understood. One of the main roadblocks to mechanistic insight remains a lack of high-resolution structural information about multiprotein complexes within the cardiac sarcomere. One example is the tropomyosin (Tm) overlap region of the thin filament that is crucial for the function of the cardiac sarcomere. To address this central question, we devised coupled experimental and computational modalities to characterize the baseline function and structure of the Tm overlap, as well as the effects of mutations causing divergent patterns of ventricular remodeling on both structure and function. Because the Tm overlap contributes to the cooperativity of myofilament activation, we hypothesized that mutations that enhance the interactions between overlap proteins result in more cooperativity, and conversely, those that weaken interaction between these elements lower cooperativity. Our results suggest that the Tm overlap region is affected differentially by dilated cardiomyopathy-associated Tm D230N and hypertrophic cardiomyopathy-associated human cardiac troponin T (cTnT) R92L. The Tm D230N mutation compacts the Tm overlap region, increasing the cooperativity of the Tm filament, contributing to a dilated cardiomyopathy phenotype. The cTnT R92L mutation causes weakened interactions closer to the N-terminal end of the overlap, resulting in decreased cooperativity. These studies demonstrate that mutations with differential phenotypes exert opposite effects on the Tm-Tn overlap, and that these effects can be directly correlated to a molecular level understanding of the structure and dynamics of the component proteins."	"The structural basis of alpha-tropomyosin linked (Asp230Asn) familial dilated cardiomyopathy. Recently, linkage analysis of two large unrelated multigenerational families identified a novel dilated cardiomyopathy (DCM)-linked mutation in the gene coding for alpha-tropomyosin (TPM1) resulting in the substitution of an aspartic acid for an asparagine (at residue 230). To determine how a single amino acid mutation in α-tropomyosin (Tm) can lead to a highly penetrant DCM we generated a novel transgenic mouse model carrying the D230N mutation. The resultant mouse model strongly phenocopied the early onset of cardiomyopathic remodeling observed in patients as significant systolic dysfunction was observed by 2months of age. To determine the precise cellular mechanism(s) leading to the observed cardiac pathology we examined the effect of the mutation on Ca<sup>2+</sup> handling in isolated myocytes and myofilament activation in vitro. D230N-Tm filaments exhibited a reduced Ca<sup>2+</sup> sensitivity of sliding velocity. This decrease in sensitivity was coupled to increase in the peak amplitude of Ca<sup>2+</sup> transients. While significant, and consistent with other DCMs, these measurements are comprised of complex inputs and did not provide sufficient experimental resolution. We then assessed the primary structural effects of D230N-Tm. Measurements of the thermal unfolding of D230N-Tm vs WT-Tm revealed an increase in stability primarily affecting the C-terminus of the Tm coiled-coil. We conclude that the D230N-Tm mutation induces a decrease in flexibility of the C-terminus via propagation through the helical structure of the protein, thus decreasing the flexibility of the Tm overlap and impairing its ability to regulate contraction. Understanding this unique structural mechanism could provide novel targets for eventual therapeutic interventions in patients with Tm-linked cardiomyopathies."	"A new long noncoding RNA (lncRNA) is induced in cutaneous squamous cell carcinoma and down-regulates several anticancer and cell differentiation genes in mouse. Keratinocyte-derived cutaneous squamous cell carcinoma (cSCC) is the most common metastatic skin cancer. Although some of the early events involved in this pathology have been identified, the subsequent steps leading to tumor development are poorly defined. We demonstrate here that the development of mouse tumors induced by the concomitant application of a carcinogen and a tumor promoter (7,12-dimethylbenz[a]anthracene (DMBA) and 12-O-tetradecanoylphorbol-13-acetate (TPA), respectively) is associated with the up-regulation of a previously uncharacterized long noncoding RNA (lncRNA), termed AK144841. We found that AK144841 expression was absent from normal skin and was specifically stimulated in tumors and highly tumorigenic cells. We also found that AK144841 exists in two variants, one consisting of a large 2-kb transcript composed of four exons and one consisting of a 1.8-kb transcript lacking the second exon. Gain- and loss-of-function studies indicated that AK144841 mainly inhibited gene expression, specifically down-regulating the expression of genes of the late cornified envelope-1 (Lce1) family involved in epidermal terminal differentiation and of anticancer genes such as Cgref1, Brsk1, Basp1, Dusp5, Btg2, Anpep, Dhrs9, Stfa2, Tpm1, SerpinB2, Cpa4, Crct1, Cryab, Il24, Csf2, and Rgs16 Interestingly, the lack of the second exon significantly decreased AK144841's inhibitory effect on gene expression. We also noted that high AK144841 expression correlated with a low expression of the aforementioned genes and with the tumorigenic potential of cell lines. These findings suggest that AK144841 could contribute to the dedifferentiation program of tumor-forming keratinocytes and to molecular cascades leading to tumor development."	"iTRAQ-based proteomic analysis reveals key proteins affecting muscle growth and lipid deposition in pigs. Growth rate and meat quality, two economically important traits in pigs, are controlled by multiple genes and biological pathways. In the present study, we performed a proteomic analysis of longissimus dorsi muscle from six-month-old pigs from two Chinese native mini-type breeds (TP and DSP) and two introduced western breeds (YY and LL) using isobaric tag for relative and absolute quantification (iTRAQ). In total, 4,815 peptides corresponding to 969 proteins were detected. Comparison of expression patterns between TP-DSP and YY-LL revealed 288 differentially expressed proteins (DEPs), of which 169 were up-regulated and 119 were down-regulated. Functional annotation suggested that 28 DEPs were related to muscle growth and 15 to lipid deposition. Protein interaction network predictions indicated that differences in muscle growth and muscle fibre between TP-DSP and YY-LL groups were regulated by ALDOC, ENO3, PGK1, PGK2, TNNT1, TNNT3, TPM1, TPM2, TPM3, MYL3, MYH4, and TNNC2, whereas differences in lipid deposition ability were regulated by LPL, APOA1, APOC3, ACADM, FABP3, ACADVL, ACAA2, ACAT1, HADH, and PECI. Twelve DEPs were analysed using parallel reaction monitoring to confirm the reliability of the iTRAQ analysis. Our findings provide new insights into key proteins involved in muscle growth and lipid deposition in the pig."	"&quot;Cell Migration&quot; Is the Ontology Group Differentially Expressed in Porcine Oocytes Before and After In Vitro Maturation: A Microarray Approach. Maturation of cumulus-oocyte complexes (COCs) is crucial for further successful monospermic fertilization, embryo growth, and implantation. All these events are accompanied by proliferation and differentiation of cumulus cells. The migration of COCs to the oviduct after ovulation and the interaction between female gametes and/or embryos with maternal tissues are still poorly recognized on the molecular level. This study was aimed to first demonstrate the mRNA expression profile of cell migration markers during different stages of porcine oocytes maturation and developmental capability in vitro. The COCs were collected from a total of 45 pubertal crossbred Landrace gilts, brilliant cresyl blue (BCB) stained, and analyzed before (n = 150) or after (n = 150) in vitro maturation (IVM). Using the Affymetrix<sup>®</sup> Porcine Gene 1.1 ST Array, the expression profile of 12,258 porcine transcripts was examined. We found nine genes involved in cell migration mechanisms, that is, PLD1, KIT, LAMA2, MAP3K1, VEGFA, TGFBR3, INSR, TPM1, and RTN4. These genes were upregulated in porcine oocytes before IVM as compared with post-IVM expression analysis. Moreover, important mechanisms of biological interaction between VEGFA-KIT and VEGFA-INSR were also observed. The upregulation and/or downregulation of selected mRNAs expression after microarray assays was checked and approved by real-time quantitative polymerase chain reaction. We suggest that several genes, including LAMA2 or TPM1, encode proteins participating in the formation of the oocyte's protein architecture such as microtubules and kinetochore reorganization. As the expression of all &quot;migration regulatory genes&quot; investigated in this study was significantly upregulated in oocytes before IVM, we conclude that they may contribute to the maturational capability of porcine oocytes. However, migration potency of COCs is not accompanied by achievement of the MII stage by porcine oocytes in vitro. The investigated genes such as PLD1, KIT, LAMA2, MAP3K1, VEGFA, TGFBR3, INSR, TPM1, and RTN4 may be recognized as a new marker of porcine oocytes maturational competence during in vitro culture."	"Tumor suppressor tropomyosin Tpm2.1 regulates sensitivity to apoptosis beyond anoikis characterized by changes in the levels of intrinsic apoptosis proteins. The actin cytoskeleton is a polymer system that acts both as a sensor and mediator of apoptosis. Tropomyosins (Tpm) are a family of actin binding proteins that form co-polymers with actin and diversify actin filament function. Previous studies have shown that elevated expression of the tropomyosin isoform Tpm2.1 sensitized cells to apoptosis induced by cell detachment (anoikis) via an unknown mechanism. It is not yet known whether Tpm2.1 or other tropomyosin isoforms regulate sensitivity to apoptosis beyond anoikis. In this study, rat neuroepithelial cells overexpressing specific tropomyosin isoforms (Tpm1.7, Tpm2.1, Tpm3.1, and Tpm4.2) were screened for sensitivity to different classes of apoptotic stimuli, including both cytoskeletal and non-cytoskeletal targeting compounds. Results showed that elevated expression of tropomyosins in general inhibited apoptosis sensitivity to different stimuli. However, Tpm2.1 overexpression consistently enhanced sensitivity to anoikis as well as apoptosis induced by the actin targeting drug jasplakinolide (JASP). In contrast the cancer-associated isoform Tpm3.1 inhibited the induction of apoptosis by a range of agents. Treatment of Tpm2.1 overexpressing cells with JASP was accompanied by enhanced sensitivity to mitochondrial depolarization, a hallmark of intrinsic apoptosis. Moreover, Tpm2.1 overexpressing cells showed elevated levels of the apoptosis proteins Bak (proapoptotic), Mcl-1 (prosurvival), Bcl-2 (prosurvival) and phosphorylated p53 (Ser392). Finally, JASP treatment of Tpm2.1 cells caused significantly reduced Mcl-1, Bcl-2 and p53 (Ser392) levels relative to control cells. We therefore propose that Tpm2.1 regulates sensitivity to apoptosis beyond the scope of anoikis by modulating the expression of key intrinsic apoptosis proteins which primes the cell for death."	"Tropomyosin 1: Multiple roles in the developing heart and in the formation of congenital heart defects. Tropomyosin 1 (TPM1) is an essential sarcomeric component, stabilising the thin filament and facilitating actin's interaction with myosin. A number of sarcomeric proteins, such as alpha myosin heavy chain, play crucial roles in cardiac development. Mutations in these genes have been linked to congenital heart defects (CHDs), occurring in approximately 1 in 145 live births. To date, TPM1 has not been associated with isolated CHDs. Analysis of 380 CHD cases revealed three novel mutations in the TPM1 gene; IVS1+2T&gt;C, I130V, S229F and a polyadenylation signal site variant GATAAA/AATAAA. Analysis of IVS1+2T&gt;C revealed aberrant pre-mRNA splicing. In addition, abnormal structural properties were found in hearts transfected with TPM1 carrying I130V and S229F mutations. Phenotypic analysis of TPM1 morpholino-treated embryos revealed roles for TPM1 in cardiac looping, atrial septation and ventricular trabeculae formation and increased apoptosis was seen within the heart. In addition, sarcomere assembly was affected and altered action potentials were exhibited. This study demonstrated that sarcomeric TPM1 plays vital roles in cardiogenesis and is a suitable candidate gene for screening individuals with isolated CHDs."	"Screening of the Filamin C Gene in a Large Cohort of Hypertrophic Cardiomyopathy Patients. Recent exome sequencing studies identified filamin C (FLNC) as a candidate gene for hypertrophic cardiomyopathy (HCM). Our aim was to determine the rate of FLNC candidate variants in a large cohort of HCM patients who were also sequenced for the main sarcomere genes. A total of 448 HCM patients were next generation-sequenced (semiconductor chip technology) for the MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1, and FLNC genes. We also sequenced 450 healthy controls from the same population. Based on the reported population frequencies, bioinformatic criteria, and familial segregation, we identified 20 FLNC candidate variants (13 new; 1 nonsense; and 19 missense) in 22 patients. Compared with the patients, only 1 of the control's missense variants was nonreported (P=0.007; Fisher exact probability test). Based on the familial segregation and the reported functional studies, 6 of the candidate variants (in 7 patients) were finally classified as likely pathogenic, 10 as variants of uncertain significance, and 4 as likely benign. We provide a compelling evidence of the involvement of FLNC in the development of HCM. Most of the FLNC variants were associated with mild forms of HCM and a reduced penetrance, with few affected in the families to confirm the segregation. Our work, together with others who found FLNC variants among patients with dilated and restrictive cardiomyopathies, pointed to this gene as an important cause of structural cardiomyopathies."	"MicroRNA-107 Promotes Proliferation, Migration, and Invasion of Osteosarcoma Cells by Targeting Tropomyosin 1. Osteosarcoma is the most common primary bone malignancy manifested predominantly in children and young adults. Studies indicate that miR-107 is involved in the pathogenesis of osteosarcoma and that tropomyosin 1 (TPM1) acts as a tumor suppressor in many types of cancer. In this study, we analyzed the effect of miR-107 on human osteosarcoma cells and investigated the mechanism in which TPM1 is involved. miR-107 expression in human osteosarcoma tissues and cells was analyzed in quantitative real-time PCR (qRT-PCR). Human osteosarcoma (U2OS) cells were transfected with miR-107 mimic, inhibitor, or scramble controls to evaluate the effect of miR-107 on cellular migration and invasion, cell viability, and apoptosis. Cells were cotransfected with the miR-107 mimic and TPM1 3'-UTR wild-type (wt) recombinant vector or mutant type (mt) as a negative control. The binding effect of miR-107 on TPM1 3'-UTR was determined by dual-luciferase reporter assay. The expression of TPM1, apoptosis-related proteins, and signaling molecules was determined by qRT-PCR and Western blotting. The results showed that miR-107 expression was upregulated in osteosarcoma tissues and cell lines. miR-107 overexpression promoted U2OS cell viability, migration, and invasion whereas it inhibited apoptosis. miR-107 inhibitor transfection ameliorated or abolished these effects after miR-107 binding to TPM1 3'-UTR-wt regulated TPM1 expression. miR-107 in U2OS cells activated MEK/ERK and NF-κB signaling pathways via TPM1. In conclusion, miR-107 overexpression promoted U2OS cell viability, migration, and invasion via downregulation of TPM1 and might be through activating the MEK/ERK and NF-κB signaling pathways."	"Changes in lncRNAs and related genes in β-thalassemia minor and β-thalassemia major. β-thalassemia is caused by β-globin gene mutations. However, heterogeneous phenotypes were found in individuals with same genotype, and still undescribed mechanism underlies such variation. We collected blood samples from 30 β-thalassemia major, 30 β-thalassemia minor patients, and 30 matched normal controls. Human lncRNA Array v2.0 (8 × 60 K, Arraystar) was used to detect changes in long non-coding RNAs (lncRNAs) and mRNAs in three samples each from β-thalassemia major, β-thalassemia minor, and control groups. Compared with normal controls, 1424 and 2045 lncRNAs were up- and downregulated, respectively, in β-thalassemia major patients, whereas 623 and 349 lncRNAs were up- and downregulated, respectively, in β-thalassemia minor patients. Compared with β-thalassemia minor group, 1367 and 2356 lncRNAs were up- and downregulated, respectively, in β-thalassemia major group. We selected five lncRNAs that displayed altered expressions (DQ583499, X-inactive specific transcript (Xist), lincRNA-TPM1, MRFS16P, and lincRNA-RUNX2-2) and confirmed their expression levels in all samples using real-time polymerase chain reaction. Based on coding-noncoding gene co-expression network and gene ontology biological process analyses, several signaling pathways were associated with three common organ systems exhibiting β-thalassemia phenotypes: hematologic, skeletal, and hepatic systems. This study implicates that abnormal expression levels of lncRNAs and mRNA in β-thalassemia cases may be correlated with its various clinical phenotypes."	"Tropomyosin Isoforms Specify Functionally Distinct Actin Filament Populations In Vitro. Actin filaments assemble into a variety of networks to provide force for diverse cellular processes [1]. Tropomyosins are coiled-coil dimers that form head-to-tail polymers along actin filaments and regulate interactions of other proteins, including actin-depolymerizing factor (ADF)/cofilins and myosins, with actin [2-5]. In mammals, &gt;40 tropomyosin isoforms can be generated through alternative splicing from four tropomyosin genes. Different isoforms display non-redundant functions and partially non-overlapping localization patterns, for example within the stress fiber network [6, 7]. Based on cell biological studies, it was thus proposed that tropomyosin isoforms may specify the functional properties of different actin filament populations [2]. To test this hypothesis, we analyzed the properties of actin filaments decorated by stress-fiber-associated tropomyosins (Tpm1.6, Tpm1.7, Tpm2.1, Tpm3.1, Tpm3.2, and Tpm4.2). These proteins bound F-actin with high affinity and competed with α-actinin for actin filament binding. Importantly, total internal reflection fluorescence (TIRF) microscopy of fluorescently tagged proteins revealed that most tropomyosin isoforms cannot co-polymerize with each other on actin filaments. These isoforms also bind actin with different dynamics, which correlate with their effects on actin-binding proteins. The long isoforms Tpm1.6 and Tpm1.7 displayed stable interactions with actin filaments and protected filaments from ADF/cofilin-mediated disassembly, but did not activate non-muscle myosin IIa (NMIIa). In contrast, the short isoforms Tpm3.1, Tpm3.2, and Tpm4.2 displayed rapid dynamics on actin filaments and stimulated the ATPase activity of NMIIa, but did not efficiently protect filaments from ADF/cofilin. Together, these data provide experimental evidence that tropomyosin isoforms segregate to different actin filaments and specify functional properties of distinct actin filament populations."	"Neural Crest Stem Cells Can Differentiate to a Cardiomyogenic Lineage with an Ability to Contract in Response to Pulsed Infrared Stimulation. Cellular cardiomyoplasty has rapidly risen to prominence in the clinic following a myocardial infarction; however, low engraftment of transplanted cells limits the therapeutic benefit to these procedures. Recently, lineage-specific stem cells differentiated into cardiomyocytes have gained much attention to assist in the repair of an injured heart tissue; however, questions regarding the ideal cell source remain. In the present study, we have identified a source that is easy to extract stem cells from and show that the cells present have a high plasticity toward the cardiomyogenic lineage. We focused on the recently discovered neural crest stem cells residing in the periodontal ligament that can be easily obtained through dental procedures. Neural crest stem cells were obtained from human excised third molars and differentiated in culture using a protocol for directed differentiation into cardiomyocytes. Differentiation of cells was assessed through gene expression and immunostaining studies. Optical stimulation using pulsed infrared radiation (IR) (λ = 1863 nm) was delivered to cell aggregates to study their contractile ability. We show that neural crest stem cells can be differentiated to a cardiomyogenic lineage, which was verified through immunostaining and gene expression. We observed a significant increase in cardiomyocyte-specific markers, NK2 homeobox 5 (NKX2.5) and troponin T type 2 (TNNT2), with positive changes in tropomyosin I (TPM1), gap junction protein alpha 1/Cx43 (GJA1/Cx43), and myocyte enhancement factor 2C (MEF2C). Furthermore, we were able to elicit and maintain pulse-by-pulse contractile responses in the derived cells, including in cardiospheres, with pulsed IR delivered at various radiant energies. The contractility in responses to IR could be maintained at different frequencies (0.25-2 Hz) and up to 10-min durations. While these cells did not maintain their contractility following cessation of IR, these cells demonstrated responses to the optical stimuli that are consistent with previous reports. We also found no evidence for irreversible mitochondrial depolarization in these cells following the long duration of infrared stimulation, suggesting the robustness of these cells. Overall, these results suggest the merit of neural crest-derived stem cells for cardiomyogenic applications and a potential cell source for repair that should contribute to efforts to translate cell-based strategies to the clinic."	"Tropomyosin-1 acts as a potential tumor suppressor in human oral squamous cell carcinoma. It is widely accepted that oral squamous cell carcinoma (OSCC) is a major contributor to the incidence and mortality of neck and head cancer. Tropomyosin-1 (TPM1), which is expressed at a low level, has been considered a prominent tumor-suppressing gene in a variety of solid tumors, although the precise mechanism of the TPM1 gene in OSCC progression remains unknown. We found that TPM1 expression levels decreased in OSCC patients and OSCC cell lines. The overall and cancer-specific survival of patients who exhibited low TPM1 levels were inferior to those of patients who had high TPM1 levels. It was also found that OSCC patients who suffered from disease stageⅠ-Ⅱ were more likely to have an up-regulated TPM1 expression level, and OSCC patients with lymph node metastasis had a higher probability of exhibiting reduced TPM1 expression. We show that overexpression of TPM1 can promote cell apoptosis and inhibit migration. Our results suggest that TPM1 can suppress tumors in OSCC, and the TPM1 expression level is related to OSCC patient prognosis."	"Hypoxia and hyperoxia differentially control proliferation of rat neural crest stem cells via distinct regulatory pathways of the HIF1α-CXCR4 and TP53-TPM1 proteins. Neural crest stem cells (NCSCs) are a population of adult multipotent stem cells. We are interested in studying whether oxygen tensions affect the capability of NCSCs to self-renew and repair damaged tissues. NCSCs extracted from the hair follicle bulge region of the rat whisker pad were cultured in vitro under different oxygen tensions. We found significantly increased and decreased rates of cell proliferation in rat NCSCs (rNCSCs) cultured, respectively, at 0.5% and 80% oxygen levels. At 0.5% oxygen, the expression of both hypoxia-inducible factor (HIF) 1α and CXCR4 was greatly enhanced in the rNCSC nuclei and was suppressed by incubation with the CXCR4-specific antagonist AMD3100. In addition, the rate of cell apoptosis in the rNCSCs cultured at 80% oxygen was dramatically increased, associated with increased nuclear expression of TP53, decreased cytoplasmic expression of TPM1 (tropomyosin-1), and increased nuclear-to-cytoplasmic translocation of S100A2. Incubation of rNCSCs with the antioxidant N-acetylcysteine (NAC) overcame the inhibitory effect of 80% oxygen on proliferation and survival of rNCSCs. Our results show for the first time that extreme oxygen tensions directly control NCSC proliferation differentially via distinct regulatory pathways of proteins, with hypoxia via the HIF1α-CXCR4 pathway and hyperoxia via the TP53-TPM1 pathway. Developmental Dynamics 246:162-185, 2017. © 2016 Wiley Periodicals, Inc."	"Identification, characterization, and expression of sarcomeric tropomyosin isoforms in zebrafish. Tropomyosin is a component of thin filaments that constitute myofibrils, the contractile apparatus of striated muscles. In vertebrates, except for fish, four TPM genes TPM1, TPM2, TPM3, and TPM4 are known. In zebrafish, there are six TPM genes that include the paralogs of the TPM1 (TPM1-1 and TPM1-2), the paralogs of the TPM4 gene (TPM4-1 and TPM4-2), and the two single copy genes TPM2 and TPM3. In this study, we have identified, cloned, and sequenced the TPM1-1κ isoform of the TPM1-1 gene and also discovered a new isoform TPM1-2ν of the TPM1-2. Further, we have cloned and sequenced the sarcomeric isoform of the TPM4-2 gene designated as TPM4-2α. Using conventional RT-PCR, we have shown the expression of the sarcomeric isoforms of TPM1-1, TPM1-2, TPM2, TPM3, TPM4-1, and TPM4-2 in heart and skeletal muscles. By qRT-PCR using both relative expression as well as the absolute copy number, we have shown that TPM1-1α, TPM1-2α, and TPM1-2ν are expressed mostly in skeletal muscle; the level of expression of TPM1-1κ is significantly lower compared to TPM1-1α in skeletal muscle. In addition, both TPM4-1α and TPM4-2α are predominantly expressed in heart. 2D Western blot analyses using anti-TPM antibody followed by Mass Spectrometry of the proteins from the antibody-stained spots show that TPM1-1α and TPM3α are expressed in skeletal muscle whereas TPM4-1α and TPM3α are expressed in zebrafish heart. To the best of our knowledge, this is by far the most comprehensive analysis of tropomyosin expression in zebrafish, one of the most popular animal models for gene expression study."	"FGF2 antagonizes aberrant TGFβ regulation of tropomyosin: role for posterior capsule opacity. Transforming growth factor (TGF) β2 and fibroblast growth factor (FGF) 2 are involved in regulation of posterior capsule opacification (PCO) and other processes of epithelial-mesenchymal transition (EMT) such as cancer progression, wound healing and tissue fibrosis as well as normal embryonic development. We previously used an in vivo rodent PCO model to show the expression of tropomyosin (Tpm) 1/2 was aberrantly up-regulated in remodelling the actin cytoskeleton during EMT. In this in vitro study, we show the Tpms family of cytoskeleton proteins are involved in regulating and stabilizing actin microfilaments (F-actin) and are induced by TGFβ2 during EMT in lens epithelial cells (LECs). Importantly, we found TGFβ2 and FGF2 played contrasting roles. Stress fibre formation and up-regulation of α-smooth muscle actin (αSMA) induced by TGFβ2 could be reversed by Tpm1/2 knock-down by siRNA. Expression of Tpm1/2 and stress fibre formation induced by TGFβ2 could be reversed by FGF2. Furthermore, FGF2 delivery to TGFβ-treated LECs perturbed EMT by reactivating the mitogen-activated protein kinase (MAPK)/ extracellular signal-regulated kinase (ERK) pathway and subsequently enhanced EMT. Conversely, MEK inhibitor (PD98059) abated the FGF2-mediated Tpm1/2 and αSMA suppression. However, we found that normal LECs which underwent EMT showed enhanced migration in response to combined TGFβ and FGF2 stimulation. These findings may help clarify the mechanism reprogramming the actin cytoskeleton during morphogenetic EMT cell proliferation and fibre regeneration in PCO. We propose that understanding the physiological link between levels of FGF2, Tpm1/2 expression and TGFβs-driven EMT orchestration may provide clue(s) to develop therapeutic strategies to treat PCO based on Tpm1/2."	"Molecular mechanisms of deregulation of the thin filament associated with the R167H and K168E substitutions in tropomyosin Tpm1.1. Point mutations R167H and K168E in tropomyosin Tpm1.1 (TM) disturb Ca<sup>2+</sup>-dependent regulation of the actomyosin ATPase. To understand mechanisms of this defect we studied multistep changes in mobility and spatial arrangement of tropomyosin, actin and myosin heads during the ATPase cycle in reconstituted ghost fibres using the polarized fluorescence microscopy. It was found that both mutations disturbed the mode of troponin operation in the fibres. At high Ca<sup>2+</sup>, troponin increased the fraction of actin monomers that were in the &quot;switched on&quot; state, but both mutant tropomyosins were shifted toward the outer actin domains, which decreased the fraction of strongly bound myosin heads throughout the ATPase cycle. At low Ca<sup>2+</sup>, the R167H-TM was located close to the outer actin domains, which reduced the number of strongly-bound myosin heads. However, under these conditions troponin increased the number of actin monomers that were switched on. The K168E-TM was displaced far to the outer actin domains and troponin binding decreased the fraction of switched on actin monomers, but the proportion of the strongly bound myosin heads was abnormally high. Thus, the mutations differently disturbed transmission of conformational changes between troponin, tropomyosin and actin, which is essential for the Са<sup>2+</sup>-dependent regulation of the thin filament."	"Effect of Cardiomyopathic Mutations in Tropomyosin on Calcium Regulation of the Actin-Myosin Interaction in Skeletal Muscle. Tropomyosin plays an important role in the regulation of actin-myosin interaction in striated muscles. Mutations in the tropomyosin gene disrupt actin-myosin interaction and lead to myopathies and cardiomyopathies. Tropomyosin with mutations in the α-chain is expressed in both the myocardium and skeletal muscles. We studied the effect of mutations in the α-chain of tropomyosin related to hypertrophic (D175N and E180G) and dilated cardiomyopathies (E40K and E54K) on calcium regulation of the actin-myosin interaction in skeletal muscles. We analyzed the calcium-dependent sliding velocity of reconstructed thin filaments containing F-actin, troponin, and tropomyosin over myosin surface in an in vitro motility assay. Mutations D175N and E180G in tropomyosin increased the sliding velocity and its calcium sensitivity, while mutation E40K reduced both these parameters. E54K mutation increased the sliding velocity of thin filaments, but did not affect its calcium sensitivity."	"Tropomyosin and Profilin Cooperate to Promote Formin-Mediated Actin Nucleation and Drive Yeast Actin Cable Assembly. Tropomyosins comprise a large family of actin-binding proteins with critical roles in diverse actin-based processes [1], but our understanding of how they mechanistically contribute to actin filament dynamics has been limited. We addressed this question in S. cerevisiae, where tropomyosins (Tpm1 and Tpm2), profilin (Pfy1), and formins (Bni1 and Bnr1) are required for the assembly of an array of actin cables that facilitate polarized vesicle delivery and daughter cell growth. Formins drive cable formation by promoting actin nucleation and by accelerating actin filament elongation together with profilin [2]. In contrast, how tropomyosins contribute mechanistically to cable formation has been unclear, but genetic studies demonstrate that Tpm1 plays a more important role than Tpm2 [3, 4]. Here, we found that loss of TPM1 in strains lacking BNR1, but not BNI1, leads to severe defects in cable formation, polarized secretion, and cell growth, suggesting that TPM1 function is required for proper Bni1-mediated cable assembly. Furthermore, in vitro total internal reflection fluorescence (TIRF) microscopy demonstrated that Tpm1 strongly enhances Bni1-mediated, but not Bnr1-mediated, actin nucleation without affecting filament elongation rate, whereas Tpm2 has no effects on Bni1 or Bnr1. Tpm1 stimulation of Bni1-mediated nucleation also requires profilin and its interactions with both G-actin and formins. Together, these results demonstrate that yeast Tpm1 works in concert with profilin to promote formin-dependent nucleation of actin cables, thus expanding our understanding of how specific tropomyosin isoforms influence actin dynamics."	"Clinical features, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy in South Africans. Little is known about the clinical characteristics, spectrum of causal genetic mutations and outcome of hypertrophic cardiomyopathy (HCM) in Africans. The objective of this study was to delineate the clinical and genetic features and outcome of HCM in African patients. Information on clinical presentation, electrocardiographic and echocardiographic findings, and outcome of cases with HCM was collected from the Cardiac Clinic at Groote Schuur Hospital over a mean duration of follow up of 9.1 ± 3.4 years. Genomic DNA was screened for mutations in 15 genes that cause HCM, i.e. cardiac myosin-binding protein C (MYBPC3), cardiac β-myosin heavy chain (MYH7), cardiac troponin T2 (TNNT2), cardiac troponin I (TNNI3), regulatory light chain of myosin (MYL2), essential light chain of myosin (MYL3), tropomyosin 1 (TPM1), phospholamban (PLN), α-actin (ACTC1), cysteine and glycine-rich protein 3 (CSRP3), AMP-activated protein kinase (PRKAG2), α-galactosidase (GLA), four-and-a-half LIM domains 1 (FHL1), lamin A/C (LMNA) and lysosome-associated membrane protein 2 (LAMP2). Survival and its predictors were analysed using the Kaplan-Meier and Cox proportional hazards regression methods, respectively. Forty-three consecutive patients [mean age 38.5 ± 14.3 years; 25 (58.1%) male; and 13 (30.2%) black African] were prospectively enrolled in the study from January 1996 to December 2012. Clinical presentation was similar to that reported in other studies. The South African founder mutations that cause HCM were not found in the 42 probands. Ten of 35 index cases (28.6%) tested for mutations in 15 genes had disease-causing mutations in MYH7 (six cases or 60%) and MYBPC3 (four cases or 40%). No disease-causing mutation was found in the other 13 genes screened. The annual mortality rate was 2.9% per annum and overall survival was 74% at 10 years, which was similar to the general South African population. Cox's proportional hazards regression showed that survival was predicted by New York Heart Association (NYHA) functional class at last visit (p equals; 0.026), but not by the presence of a disease-causing mutation (p = 0.474). Comprehensive genetic screening was associated with a 29% yield of causal genetic mutations in South African HCM cases, all in MYH7 and MBPC3 genes. A quarter of the patients had died after a decade of follow up, with NYHA functional class serving as a predictor of survival."	"Predicting Effects of Tropomyosin Mutations on Cardiac Muscle Contraction through Myofilament Modeling. Point mutations to the human gene TPM1 have been implicated in the development of both hypertrophic and dilated cardiomyopathies. Such observations have led to studies investigating the link between single residue changes and the biophysical behavior of the tropomyosin molecule. However, the degree to which these molecular perturbations explain the performance of intact sarcomeres containing mutant tropomyosin remains uncertain. Here, we present a modeling approach that integrates various aspects of tropomyosin's molecular properties into a cohesive paradigm representing their impact on muscle function. In particular, we considered the effects of tropomyosin mutations on (1) persistence length, (2) equilibrium between thin filament blocked and closed regulatory states, and (3) the crossbridge duty cycle. After demonstrating the ability of the new model to capture Ca-dependent myofilament responses during both dynamic and steady-state activation, we used it to capture the effects of hypertrophic cardiomyopathy (HCM) related E180G and D175N mutations on skinned myofiber mechanics. Our analysis indicates that the fiber-level effects of the two mutations can be accurately described by a combination of changes to the three tropomyosin properties represented in the model. Subsequently, we used the model to predict mutation effects on muscle twitch. Both mutations led to increased twitch contractility as a consequence of diminished cooperative inhibition between thin filament regulatory units. Overall, simulations suggest that a common twitch phenotype for HCM-linked tropomyosin mutations includes both increased contractility and elevated diastolic tension."	"[Corrigendum] Genetic and epigenetic alterations are involved in the regulation of TPM1 in cholangiocarcinoma. Following the publication of this article, an interested reader drew to our attention anomalies associated with the data shown in Fig. 2, which presented the mRNA and protein expression levels of tropomyosin 1 (TPM1) in HuCCT1 cells. Essentially, the control bands for α-tubulin had been duplicated across from Fig. 2A to Fig. 2B, and from Fig. 2D to Fig. 2E [the experiments showing treatment of the cells with (A) manumycin A, (B) U0126, (D) 5-aza-2-deoxycytidine (DAC) and (E) trichostatin A (TSA)], respectively. After having re‑examined our original data, we realize that the figure was compiled incorrectly, and have returned to our source data. A corrected version of Fig. 2 is presented here, showing the correct control α-tubulin data for Fig. 2A and E, as they ought to have appeared. This error did not overall affect the conclusions reported in the study. We sincerely apologize for this mistake, and thank the reader of our article who drew this matter to our attention. Furthermore, we regret any inconvenience this mistake has caused. [the original article was published in the International Journal of Oncology 42: 690-698, 2013; DOI: 10.3892/ijo.2012.1741]."	"Differential expression analysis of the broiler tracheal proteins responsible for the immune response and muscle contraction induced by high concentration of ammonia using iTRAQ-coupled 2D LC-MS/MS. Ammonia has been considered the contaminant primarily responsible for respiratory disease in poultry. Even though it can cause tracheal lesions, its adverse effects on the trachea have not been sufficiently studied. The present study investigated tracheal changes in Arbor Acres broilers (Gallus gallus) induced by high concentration of ammonia using isobaric tag for relative and absolute quantification (iTRAQ)-based proteome analysis. In total, 3,706 proteins within false discovery rate of 1% were identified, including 119 significantly differentially expressed proteins. Functional analysis revealed that proteins related to immune response and muscle contraction were significantly enriched. With respect to the immune response, up-regulated proteins (like FGA) were pro-inflammatory, while down-regulated proteins participated in antigen processing and antigen presenting (like MYO1G), immunoglobulin and cathelicidin production (like fowlicidin-2), and immunodeficiency (like PTPRC). Regarding muscle contraction, all differentially expressed proteins (like TPM1) were up-regulated. An over-expression of mucin, which is a common feature of airway disease, was also observed. Additionally, the transcriptional alterations of 6 selected proteins were analyzed by quantitative RT-PCR. Overall, proteomic changes suggested the onset of airway obstruction and diminished host defense in trachea after ammonia exposure. These results may serve as a valuable reference for future interventions against ammonia toxicity."	"Cloning, Sequencing, and the Expression of the Elusive Sarcomeric TPM4α Isoform in Humans. In mammals, tropomyosin is encoded by four known TPM genes (TPM1, TPM2, TPM3, and TPM4) each of which can generate a number of TPM isoforms via alternative splicing and/or using alternate promoters. In humans, the sarcomeric isoform(s) of each of the TPM genes, except for the TPM4, have been known for a long time. Recently, on the basis of computational analyses of the human genome sequence, the predicted sequence of TPM4α has been posted in GenBank. We designed primer-pairs for RT-PCR and showed the expression of the transcripts of TPM4α and a novel isoform TPM4δ in human heart and skeletal muscle. qRT-PCR shows that the relative expression of TPM4α and TPM4δ is higher in human cardiac muscle. Western blot analyses using CH1 monoclonal antibodies show the absence of the expression of TPM4δ protein (~28 kDa) in human heart muscle. 2D western blot analyses with the same antibody show the expression of at least nine distinct tropomyosin molecules with a mass ~32 kD and above in adult heart. By Mass spectrometry, we determined the amino acid sequences of the extracted proteins from these spots. Spot &quot;G&quot; reveals the putative expression of TPM4α along with TPM1α protein in human adult heart."	"Regulation of actin filament turnover by cofilin-1 and cytoplasmic tropomyosin isoforms. Tropomyosin and cofilin are actin-binding proteins which control dynamics of actin assembly and disassembly. Tropomyosin isoforms can either inhibit or enhance cofilin activity, but the mechanism of this diverse regulation is not well understood. In this work mechanisms of actin dynamics regulation by four cytoskeletal tropomyosin isoforms and cofilin-1 were studied with the use of biochemical and fluorescent microscopy assays. The recombinant tropomyosin isoforms were products of two genes: TPM1 (Tpm1.6 and Tpm1.8) and TPM3 (Tpm3.2 and Tpm3.4). Tpm1.6/1.8 bound to F-actin with higher apparent binding constants and lower cooperativities than Tpm3.2/3.4. In consequence, subsaturating concentrations of cofilin-1 removed 50% of Tpm3.2/3.4 from F-actin. By contrast, 2 and 5.5 molar excess of cofilin-1 over actin was required to dissociate 50% of Tpm1.6/1.8. All tropomyosins inhibited the rate of spontaneous polymerization of actin, which was reversed by cofilin-1. Products of TPM1 favored longer filaments and protected them from cofilin-induced depolymerization. This was in contrast to the isoforms derived from TPM3, which facilitated depolymerization. Tpm3.4 was the only isoform, which increased frequency of the filament severing by cofilin-1. Tpm1.6/1.8 inhibited, but Tpm3.2/3.4 enhanced cofilin-induced conformational changes leading to accelerated release of rhodamine-phalloidin from the filament. We concluded that the effects were executed through different actin affinities of tropomyosin isoforms and cooperativities of tropomyosin and cofilin-1 binding. The results obtained in vitro were in good agreement with localization of tropomyosin isoforms in stable or highly dynamic filaments demonstrated before in various cells."	"Stoichiometries of U2AF35, U2AF65 and U2 snRNP reveal new early spliceosome assembly pathways. The selection of 3΄ splice sites (3΄ss) is an essential early step in mammalian RNA splicing reactions, but the processes involved are unknown. We have used single molecule methods to test whether the major components implicated in selection, the proteins U2AF35 and U2AF65 and the U2 snRNP, are able to recognize alternative candidate sites or are restricted to one pre-specified site. In the presence of adenosine triphosphate (ATP), all three components bind in a 1:1 stoichiometry with a 3΄ss. Pre-mRNA molecules with two alternative 3΄ss can be bound concurrently by two molecules of U2AF or two U2 snRNPs, so none of the components are restricted. However, concurrent occupancy inhibits splicing. Stoichiometric binding requires conditions consistent with coalescence of the 5΄ and 3΄ sites in a complex (I, initial), but if this cannot form the components show unrestricted and stochastic association. In the absence of ATP, when complex E forms, U2 snRNP association is unrestricted. However, if protein dephosphorylation is prevented, an I-like complex forms with stoichiometric association of U2 snRNPs and the U2 snRNA is base-paired to the pre-mRNA. Complex I differs from complex A in that the formation of complex A is associated with the loss of U2AF65 and 35."	"The propensity for tropomyosin twisting in the presence and absence of F-actin. A canonical model of muscle α-tropomyosin (Tpm1.1), based on molecular-mechanics and electron microscopy of different contractile states, shows that the two-stranded coiled-coiled is pre-bent to present a specific molecular-face to the F-actin filament. This conformation is thought to facilitate both filament assembly and tropomyosin sliding across actin to modulate myosin-binding. However, to bind effectively to actin filaments, the 42 nm-long tropomyosin coiled-coil is not strictly canonical. Here, the mid-region of tropomyosin twists an additional ∼20° in order to better match the F-actin helix. In addition, the N- and C-terminal regions of tropomyosin polymerize head-to-tail to form continuous super-helical cables. In this case, 9 to 10 residue-long overlapping domains between adjacent molecules untwist relative to each other to accommodate orthogonal interactions between chains in the junctional four-helix nexus. Extensive molecular dynamics simulations show that the twisting and untwisting motions of tropomyosin vary appreciably along tropomyosin length, and in particular that substantial terminal domain winding and unwinding occurs whether tropomyosin is bound to F-actin or not. The local and regional twisting and untwisting do not appear to proceed in a concerted fashion, resembling more of a &quot;wringing-type&quot; behavior rather than a rotation."	"Inflammatory Adipokines Decrease Expression of Two High Molecular Weight Isoforms of Tropomyosin Similar to the Change in Type 2 Diabetic Patients. Cardiovascular disease and cancer are increased in Type 2 diabetes. TPM1 and TPM4 genes encode proteins associated with cardiovascular and neoplastic disease. High (HMW) and low (LMW) molecular weight isoforms from TPM1 and TPM4 are altered in several cancer cells and the 3'UTR of TPM1 mRNA is tumour suppressive. Leukocytes influence cardiovascular and neoplastic disease by immunosurveillance for cancer and by chronic inflammation in Type 2 diabetes and cardiovascular disease. The aim was to determine changes in expression of isoforms from TPM1 and TPM4 genes in leukocytes from Type 2 diabetic patients and to use the leukocyte cell line THP1 to identify possible mediators of changes in the patients. Gene expression was determined by RT-qPCR. In diabetes, expression of HMW isoforms from TPM1 were markedly decreased (0.55 v 1.00; p = 0.019) but HMW isoforms from TPM4 were not significantly different (0.76 v 1.00; p = 0.205). Within individual variance in expression of HMW isoforms was very high. The change in expression in HMW isoforms from TPM1 and TPM4 was replicated in THP1 cells treated with 1 ng/ml TNFα (0.10 and 0.12 v 1.00 respectively) or 10 ng/ml IL-1α (0.17 and 0.14 v 1.00 respectively). Increased insulin or glucose concentrations had no substantial effects on TPM1 or TPM4 expression. Decreased TPM1 mRNA resulted in decreases in HMW protein levels. Expression of HMW isoforms from TPM1 is decreased in Type 2 diabetes. This is probably due to increased levels of inflammatory cytokines TNFα and IL-1α in Type 2 diabetes. Lower levels of TPM1 mRNA reduce tumour suppression and could contribute to increased cancer risk in Type 2 diabetes. Decreased HMW tropomyosin isoforms are associated with cancer. Decreased HMW isoforms give rise to cells that are more plastic, motile, invasive and prone to dedifferentiation resulting in leukocytes that are more invasive but less functionally effective. "	"AHR2 morpholino knockdown reduces the toxicity of total particulate matter to zebrafish embryos. The zebrafish embryo has been proposed as a 'bridge model' to study the effects of cigarette smoke on early development. Previous studies showed that exposure to total particulate matter (TPM) led to adverse effects in developing zebrafish, and suggested that the antioxidant and aryl hydrocarbon receptor (AHR) pathways play important roles. This study investigated the roles of these two pathways in mediating TPM toxicity. The study consisted of four experiments. In experiment I, zebrafish embryos were exposed from 6h post fertilization (hpf) until 96hpf to TPM0.5 and TPM1.0 (corresponding to 0.5 and 1.0μg/mL equi-nicotine units) in the presence or absence of an antioxidant (N-acetyl cysteine/NAC) or a pro-oxidant (buthionine sulfoximine/BSO). In experiment II, TPM exposures were performed in embryos that were microinjected with nuclear factor erythroid 2-related factor 2 (Nrf2), AHR2, cytochrome P450 1A (CYP1A), or CYP1B1 morpholinos, and deformities were assessed. In experiment III, embryos were exposed to TPM, and embryos/larvae were collected at 24, 48, 72, and 96hpf to assess several genes associated with the antioxidant and AHR pathways. Lastly, experiment IV assessed the activity and protein levels of CYP1A and CYP1B1 after exposure to TPM. We demonstrate that the incidence of TPM-induced deformities was generally not affected by NAC/BSO treatments or Nrf2 knockdown. In contrast, AHR2 knockdown reduced, while CYP1A or CYP1B1 knockdowns elevated the incidence of some deformities. Moreover, as shown by gene expression the AHR pathway, but not the antioxidant pathway, was induced in response to TPM exposure, providing further evidence for its importance in mediating TPM toxicity."	"Spectrum of Mutations in Hypertrophic Cardiomyopathy Genes Among Tunisian Patients. Hypertrophic cardiomyopathy (HCM) is a common cardiac genetic disorder associated with heart failure and sudden death. Mutations in the cardiac sarcomere genes are found in approximately half of HCM patients and are more common among cases with a family history of the disease. Data about the mutational spectrum of the sarcomeric genes in HCM patients from Northern Africa are limited. The population of Tunisia is particularly interesting due to its Berber genetic background. As founder mutations have been reported in other disorders. We performed semiconductor chip (Ion Torrent PGM) next generation sequencing of the nine main sarcomeric genes (MYH7, MYBPC3, TNNT2, TNNI3, ACTC1, TNNC1, MYL2, MYL3, TPM1) as well as the recently identified as an HCM gene, FLNC, in 45 Tunisian HCM patients. We found sarcomere gene polymorphisms in 12 patients (27%), with MYBPC3 and MYH7 representing 83% (10/12) of the mutations. One patient was homozygous for a new MYL3 mutation and two were double MYBPC3 + MYH7 mutation carriers. Screening of the FLNC gene identified three new mutations, which points to FLNC mutations as an important cause of HCM among Tunisians. The mutational background of HCM in Tunisia is heterogeneous. Unlike other Mendelian disorders, there were no highly prevalent mutations that could explain most of the cases. Our study also suggested that FLNC mutations may play a role on the risk for HCM among Tunisians."	"Tropomyosin isoforms bias actin track selection by vertebrate myosin Va. Tropomyosin (Tpm) isoforms decorate actin with distinct spatial and temporal localization patterns in cells and thus may function to sort actomyosin processes by modifying the actin track affinity for specific myosin isoforms. We examined the effect of three Tpm isoforms on the ability of myosin Va (myoVa) to engage with actin in vitro in the absence or presence of the cargo adapter melanophilin (Mlph), which links myoVa to Rab27a-melanosomes for in vivo transport. We show that both the myosin motor domain and the cargo adapter Mlph, which has an actin-binding domain that acts as a tether, are sensitive to the Tpm isoform. Actin-Tpm3.1 and actin-Tpm1.8 were equal or better tracks compared to bare actin for myoVa-HMM based on event frequency, run length, and speed. The full-length myoVa-Mlph complex showed high-frequency engagement with actin-Tpm3.1 but not with actin-Tpm1.8. Actin-Tpm4.2 excluded both myoVa-HMM and full-length myoVa-Mlph from productive interactions. Of importance, Tpm3.1 is enriched in the dendritic protrusions and cortical actin of melanocytes, where myoVa-Mlph engages in melanosome transport. These results support the hypothesis that Tpm isoforms constitute an &quot;actin-Tpm code&quot; that allows for spatial and temporal sorting of actomyosin function in the cell."	"Abnormal movement of tropomyosin and response of myosin heads and actin during the ATPase cycle caused by the Arg167His, Arg167Gly and Lys168Glu mutations in TPM1 gene. Amino acid substitutions: Arg167His, Arg167Gly and Lys168Glu, located in a consensus actin-binding site of the striated muscle tropomyosin Tpm1.1 (TM), were used to investigate mechanisms of the thin filament regulation. The azimuthal movement of TM strands on the actin filament and the responses of the myosin heads and actin subunits during the ATPase cycle were studied using fluorescence polarization of muscle fibres. The recombinant wild-type and mutant TMs labelled with 5-IAF, 1,5-IAEDANS-labelled S1and FITC-phalloidin F-actin were incorporated into the ghost muscle fibres to acquire information on the orientation of the probes relative to the fibre axis. The substitutions Arg167Gly and Lys168Glu shifted TM strands into the actin filament centre, whereas Arg167His moved TM towards the periphery of the filament. In the presence of Arg167Gly-TM and Lys168Glu-TM the fraction of actin monomers that were switched on and the number of the myosin heads strongly bound to F-actin were abnormally high even under conditions close to relaxation. In contrast, Arg167His-TM decreased the fraction of switched on actin and reduced the formation of strongly bound myosin heads throughout the ATPase cycle. We concluded that the altered TM-actin contacts destabilized the thin filament and affected the actin-myosin interactions."	"The impact of tropomyosins on actin filament assembly is isoform specific. Tropomyosin (Tpm) is an α helical coiled-coil dimer that forms a co-polymer along the actin filament. Tpm is involved in the regulation of actin's interaction with binding proteins as well as stabilization of the actin filament and its assembly kinetics. Recent studies show that multiple Tpm isoforms also define the functional properties of distinct actin filament populations within a cell. Subtle structural variations within well conserved Tpm isoforms are the key to their functional specificity. Therefore, we purified and characterized a comprehensive set of 8 Tpm isoforms (Tpm1.1, Tpm1.12, Tpm1.6, Tpm1.7, Tpm1.8, Tpm2.1, Tpm3.1, and Tpm4.2), using well-established actin co-sedimentation and pyrene fluorescence polymerization assays. We observed that the apparent affinity (Kd(app)) to filamentous actin varied in all Tpm isoforms between ∼0.1-5 μM with similar values for both, skeletal and cytoskeletal actin filaments. The data did not indicate any correlation between affinity and size of Tpm molecules, however high molecular weight (HMW) isoforms Tpm1.1, Tpm1.6, Tpm1.7 and Tpm2.1, showed ∼3-fold higher cooperativity compared to low molecular weight (LMW) isoforms Tpm1.12, Tpm1.8, Tpm3.1, and Tpm4.2. The rate of actin filament elongation in the presence of Tpm2.1 increased, while all other isoforms decreased the elongation rate by 27-85 %. Our study shows that the biochemical properties of Tpm isoforms are finely tuned and depend on sequence variations in alternatively spliced regions of Tpm molecules. "	"Identification of genetic modifiers of age-at-onset for familial Parkinson's disease. Parkinson's disease (PD) is the most common cause of neurodegenerative movement disorder and the second most common cause of dementia. Genes are thought to have a stronger effect on age-at-onset of PD than on risk, yet there has been a phenomenal success in identifying risk loci but not age-at-onset modifiers. We conducted a genome-wide study for age-at-onset. We analysed familial and non-familial PD separately, per prior evidence for strong genetic effect on age-at-onset in familial PD. GWAS was conducted in 431 unrelated PD individuals with at least one affected relative (familial PD) and 1544 non-familial PD from the NeuroGenetics Research Consortium (NGRC); an additional 737 familial PD and 2363 non-familial PD were used for replication. In familial PD, two signals were detected and replicated robustly: one mapped to LHFPL2 on 5q14.1 (PNGRC = 3E-8, PReplication = 2E-5, PNGRC + Replication = 1E-11), the second mapped to TPM1 on 15q22.2 (PNGRC = 8E-9, PReplication = 2E-4, PNGRC + Replication = 9E-11). The variants that were associated with accelerated onset had low frequencies (&lt;0.02). The LHFPL2 variant was associated with earlier onset by 12.33 [95% CI: 6.2; 18.45] years in NGRC, 8.03 [2.95; 13.11] years in replication, and 9.79 [5.88; 13.70] years in the combined data. The TPM1 variant was associated with earlier onset by 15.30 [8.10; 22.49] years in NGRC, 9.29 [1.79; 16.79] years in replication, and 12.42 [7.23; 17.61] years in the combined data. Neither LHFPL2 nor TPM1 was associated with age-at-onset in non-familial PD. LHFPL2 (function unknown) is overexpressed in brain tumours. TPM1 encodes a highly conserved protein that regulates muscle contraction, and is a tumour-suppressor gene."	"Mapping Breakpoints of Complex Chromosome Rearrangements Involving a Partial Trisomy 15q23.1-q26.2 Revealed by Next Generation Sequencing and Conventional Techniques. Complex chromosome rearrangements (CCRs), which are rather rare in the whole population, may be associated with aberrant phenotypes. Next-generation sequencing (NGS) and conventional techniques, could be used to reveal specific CCRs for better genetic counseling. We report the CCRs of a girl and her mother, which were identified using a combination of NGS and conventional techniques including G-banding, fluorescence in situ hybridization (FISH) and PCR. The girl demonstrated CCRs involving chromosomes 3 and 8, while the CCRs of her mother involved chromosomes 3, 5, 8, 11 and 15. HumanCytoSNP-12 Chip analysis identified a 35.4 Mb duplication on chromosome 15q21.3-q26.2 in the proband and a 1.6 Mb microdeletion at chromosome 15q21.3 in her mother. The proband inherited the rearranged chromosomes 3 and 8 from her mother, and the duplicated region on chromosome 15 of the proband was inherited from the mother. Approximately one hundred genes were identified in the 15q21.3-q26.2 duplicated region of the proband. In particular, TPM1, SMAD6, SMAD3, and HCN4 may be associated with her heart defects, and HEXA, KIF7, and IDH2 are responsible for her developmental and mental retardation. In addition, we suggest that a microdeletion on the 15q21.3 region of the mother, which involved TCF2, TCF12, ADMA10 and AQP9, might be associated with mental retardation. We delineate the precise structures of the derivative chromosomes, chromosome duplication origin and possible molecular mechanisms for aberrant phenotypes by combining NGS data with conventional techniques."	"Ebstein anomaly, left ventricular non-compaction, and early onset heart failure associated with a de novo α-tropomyosin gene mutation. Ebstein anomaly of the tricuspid valve (EA) can be associated with left ventricular non-compaction (LVNC), a rare congenital cardiomyopathy. We report a 2 year-old female with EA and severe tricuspid regurgitation, LVNC, pulmonary hypertension, and chronic biventricular systolic heart failure, who died during evaluation for cardiac transplantation. Gene panel testing revealed a heterozygous de novo missense mutation in TPM1, which encodes the cardiac sarcomeric thin filament protein α-tropomyosin. The c.475G&gt;A variant results in a p.Asp159Asn substitution, altering a highly conserved residue predicted to be damaging to protein structure and function. TPM1 is the second gene linked to EA with LVNC in humans, implicating overlap in the molecular basis of structural and myopathic heart disease. © 2016 Wiley Periodicals, Inc."	"Regional Differences of Proteins Expressing in Adipose Depots Isolated from Cows, Steers and Bulls as Identified by a Proteomic Approach. Adipose tissue in the loin muscle area of beef cattle as a marbling factor is directly associated with beef quality. To elucidate whether properties of proteins involved in depot specific adipose tissue were sex-dependent, we analyzed protein expression of intramuscular adipose tissue (IMAT) and omental adipose tissue (OMAT) from Hanwoo cows, steers, and bulls of Korean native beef cattle by liquid chromatography-tandem mass spectrometry (LC-MS/MS)-based proteomic analysis, quantitative polymerase chain reaction (PCR) and western blot analysis. Two different adipose depots (i.e. intramuscular and omental) were collected from cows (n = 7), steers (n = 7), or bulls (n = 7). LC-MS/MS revealed a total of 55 and 35 proteins in IMAT and OMAT, respectively. Of the 55 proteins identified, 44, 40, and 42 proteins were confirmed to be differentially expressed in IMAT of cows, steers, and bulls, respectively. In OMAT of cows, steers, and bulls, 33, 33, and 22 were confirmed to be differentially expressed, respectively. Tropomyosin (TPM) 1, TPM 2, and TPM3 were subjected to verification by quantitative PCR and western blot analysis in IMAT and OMAT of Hanwoo cows, steers, and bulls as key factors closely associated with muscle development. Both mRNA levels and protein levels of TPM1, TPM2, and TPM3 in IMAT were lower in bulls compared to in cows or steers suggesting that they were positively correlated with marbling score and quality grade. Our results may aid the regulation of marbling development and improvement of meat quality grades in beef cattle. "	"Setting up Multiplex Panels for Genetic Testing of Familial Hypertrophic Cardiomyopathy Based on Linkage Analysis. Familial hypertrophic cardiomyopathy (HCM) is caused by mutations in genes encoding cardiac sarcomere proteins. Nowadays genetic testing of HCM plays an important role in clinical practice by contributing to the diagnosis, prognosis, and screening of high-risk individuals. The aim of this study was developing a reliable testing strategy for HCM based on linkage analysis and appropriate for Iranian population. Six panels of four microsatellite markers surrounding MYH7, MYBPC3, TNNT2, TNNI3, TPM1, and MYL2 genes (24 markers in total) were selected for multiplex PCR and fragment length analysis. Characteristics of markers and informativeness of the panels were evaluated in 50 unrelated Iranians. The efficacy of the strategy was verified in a family with HCM. All markers were highly polymorphic. The panels were informative in 96-100% of samples. Multipoint linkage analysis excluded the linkage between the disease and all six genes by obtaining maximum LOD score ≤-2. This study suggests a reliable genetic testing method based on linkage analysis between 6 sarcomere genes and familial HCM. It could be applied for diagnostic, predictive, or screening testing in clinical setting."	"Tropomyosin Promotes Lamellipodial Persistence by Collaborating with Arp2/3 at the Leading Edge. At the leading edge of migrating cells, protrusion of the lamellipodium is driven by Arp2/3-mediated polymerization of actin filaments [1]. This dense, branched actin network is promoted and stabilized by cortactin [2, 3]. In order to drive filament turnover, Arp2/3 networks are remodeled by proteins such as GMF, which blocks the actin-Arp2/3 interaction [4, 5], and coronin 1B, which acts by directing SSH1L to the lamellipodium where it activates the actin-severing protein cofilin [6, 7]. It has been shown in vitro that cofilin-mediated severing of Arp2/3 actin networks results in the generation of new pointed ends to which the actin-stabilizing protein tropomyosin (Tpm) can bind [8]. The presence of Tpm in lamellipodia, however, is disputed in the literature [9-19]. Here, we report that the Tpm isoforms 1.8/9 are enriched in the lamellipodium of fibroblasts as detected with a novel isoform-specific monoclonal antibody. RNAi-mediated silencing of Tpm1.8/9 led to an increase of Arp2/3 accumulation at the cell periphery and a decrease in the persistence of lamellipodia and cell motility, a phenotype consistent with cortactin- and coronin 1B-deficient cells [2, 7]. In the absence of coronin 1B or cofilin, Tpm1.8/9 protein levels are reduced while, conversely, inhibition of Arp2/3 with CK666 leads to an increase in Tpm1.8/9 protein. These findings establish a novel regulatory mechanism within the lamellipodium whereby Tpm collaborates with Arp2/3 to promote lamellipodial-based cell migration."	"Expression of tropomyosin 2 gene isoforms in human breast cancer cell lines. In humans, four tropomyosin genes (TPM1, TPM2, TPM3, and TPM4) are known to produce a multitude of isoforms via alternate splicing and/or using alternate promoters. Expression of tropomyosin has been shown to be modulated at both the transcription and the translational levels. Tropomyosins are known to make up some of the stress fibers of human epithelial cells and differences in their expression has been demonstrated in malignant breast epithelial cell lines compared to 'normal' breast cell lines. We have recently reported the expression of four novel TPM1 isoforms (TPM1λ, TPM1µ, TPM1ν, and TPM1ξ) from human malignant tumor breast cell lines that are not expressed in adult and fetal cardiac tissue. Also, we evaluated their expression in relation to the stress fiber formation. In this study, nine malignant breast epithelial cell lines and three 'normal' breast cell lines were examined for stress fiber formation and expression of tropomyosin 2 (TPM2) isoform-specific RNAs and proteins. Stress fiber formation was assessed by immunofluorescence using Leica AF6000 Deconvolution microscope. Stress fiber formation was strong (++++) in the 'normal' cell lines and varied among the malignant cell lines (negative to +++). No new TPM2 gene RNA isoforms were identified, and TPM2β was the most frequently expressed TPM2 RNA and protein isoform. Stress fiber formation positively correlated with TPM2β RNA or protein expression at high, statistically significant degrees. Previously, we had shown that TPM1δ and TPM1λ positively and inversely, respectively, correlated with stress fiber formation. The most powerful predictor of stress fiber formation was the combination of TPM2β RNA, TPM1δ RNA, and the inverse of TPM1λ RNA expression. Our results suggest that the increased expression of TPM1λ and the decreased expression of TPM1δ RNA and TPM2β may lead to decreased stress fiber formation and malignant transformation in human breast epithelial cells. "	"Comprehensive analysis of tropomyosin isoforms in skeletal muscles by top-down proteomics. Mammalian skeletal muscles are heterogeneous in nature and are capable of performing various functions. Tropomyosin (Tpm) is a major component of the thin filament in skeletal muscles and plays an important role in controlling muscle contraction and relaxation. Tpm is known to consist of multiple isoforms resulting from different encoding genes and alternative splicing, along with post-translational modifications. However, a systematic characterization of Tpm isoforms in skeletal muscles is still lacking. Therefore, we employed top-down mass spectrometry (MS) to identify and characterize Tpm isoforms present in different skeletal muscles from multiple species, including swine, rat, and human. Our study revealed that Tpm1.1 and Tpm2.2 are the two major Tpm isoforms in swine and rat skeletal muscles, whereas Tpm1.1, Tpm2.2, and Tpm3.12 are present in human skeletal muscles. Tandem MS was utilized to identify the sequences of the major Tpm isoforms. Furthermore, quantitative analysis revealed muscle-type specific differences in the abundance of un-modified and modified Tpm isoforms in rat and human skeletal muscles. This study represents the first systematic investigation of Tpm isoforms in skeletal muscles, which not only demonstrates the capabilities of top-down MS for the comprehensive characterization of skeletal myofilament proteins but also provides the basis for further studies on these Tpm isoforms in muscle-related diseases."	"Identification of novel mutations including a double mutation in patients with inherited cardiomyopathy by a targeted sequencing approach using the Ion Torrent PGM system. Inherited cardiomyopathy is the major cause of sudden cardiac death (SCD) and heart failure (HF). The disease is associated with extensive genetic heterogeneity; pathogenic mutations in cardiac sarcomere protein genes, cytoskeletal protein genes and nuclear envelope protein genes have been linked to its etiology. Early diagnosis is conducive to clinical monitoring and allows for presymptomatic interventions as needed. In the present study, the entire coding sequences and flanking regions of 12 major disease (cardiomyopathy)-related genes [namely myosin, heavy chain 7, cardiac muscle, β (MYH7); myosin binding protein C, cardiac (MYBPC3); lamin A/C (LMNA); troponin I type 3 (cardiac) (TNNI3); troponin T type 2 (cardiac) (TNNT2); actin, α, cardiac muscle 1 (ACTC1); tropomyosin 1 (α) (TPM1); sodium channel, voltage gated, type V alpha subunit (SCN5A); myosin, light chain 2, regulatory, cardiac, slow (MYL2); myosin, heavy chain 6, cardiac muscle, α (MYH6); myosin, light chain 3, alkali, ventricular, skeletal, slow (MYL3); and protein kinase, AMP-activated, gamma 2 non-catalytic subunit (PRKAG2)] in 8 patients with dilated cardiomyopathy (DCM) and in 8 patients with hypertrophic cardiomyopathy (HCM) were amplified and then sequenced using the Ion Torrent Personal Genome Machine (PGM) system. As a result, a novel heterozygous mutation (MYH7, p.Asn885Thr) and a variant of uncertain significance (TNNT2, p.Arg296His) were identified in 2 patients with HCM. These 2 missense mutations, which were absent in the samples obtained from the 200 healthy control subjects, altered the amino acid that was evolutionarily conserved among a number of vertebrate species; this illustrates that these 2 non-synonymous mutations play a role in the pathogenesis of HCM. Moreover, a double heterozygous mutation (PRKAG2, p.Gly100Ser plus MYH7, p.Arg719Trp) was identified in a patient with severe familial HCM, for the first time to the best of our knowledge. This patient provided us with more information regarding the genotype-phenotype correlation between mutations of MYH7 and PRKAG2. Taken together, these findings provide insight into the molecular mechanisms underlying inherited cardiomyopathy. The mutations identified in this study may be further investigated in the future in order to improve the diagnosis and treatment of patients with inherited cardiomyopathy. Furthermore, our findings indicated that sequencing using the Ion Torrent PGM system is a useful approach for the identification of pathogenic mutations associated with inherited cardiomyopathy, and it may be used for the risk evaluation of individuals with a possible susceptibility to inherited cardiomyopathy. "	"Mutation-Specific Phenotypes in hiPSC-Derived Cardiomyocytes Carrying Either Myosin-Binding Protein C Or α-Tropomyosin Mutation for Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic cardiac disease, which affects the structure of heart muscle tissue. The clinical symptoms include arrhythmias, progressive heart failure, and even sudden cardiac death but the mutation carrier can also be totally asymptomatic. To date, over 1400 mutations have been linked to HCM, mostly in genes encoding for sarcomeric proteins. However, the pathophysiological mechanisms of the disease are still largely unknown. Two founder mutations for HCM in Finland are located in myosin-binding protein C (MYBPC3-Gln1061X) and α-tropomyosin (TPM1-Asp175Asn) genes. We studied the properties of HCM cardiomyocytes (CMs) derived from patient-specific human induced pluripotent stem cells (hiPSCs) carrying either MYBPC3-Gln1061X or TPM1-Asp175Asn mutation. Both types of HCM-CMs displayed pathological phenotype of HCM but, more importantly, we found differences between CMs carrying either MYBPC3-Gln1061X or TPM1-Asp175Asn gene mutation in their cellular size, Ca(2+) handling, and electrophysiological properties, as well as their gene expression profiles. These findings suggest that even though the clinical phenotypes of the patients carrying either MYBPC3-Gln1061X or TPM1-Asp175Asn gene mutation are similar, the genetic background as well as the functional properties on the cellular level might be different, indicating that the pathophysiological mechanisms behind the two mutations would be divergent as well. "	"Feisty filaments: actin dynamics in the red blood cell membrane skeleton. This article discusses recent advances and unsolved questions in our understanding of actin filament organization and dynamics in the red blood cell (RBC) membrane skeleton, a two-dimensional quasi-hexagonal network consisting of (α1β1)2-spectrin tetramers interconnecting short actin filament-based junctional complexes. In contrast to the long-held view that RBC actin filaments are static structures that do not exchange subunits with the cytosol, RBC actin filaments are dynamic structures that undergo subunit exchange and turnover, as evidenced by monomer incorporation experiments with rhodamine-actin and filament disruption experiments with actin-targeting drugs. The malaria-causing parasite, Plasmodium falciparum, co-opts RBC actin dynamics to construct aberrantly branched actin filament networks. Even though RBC actin filaments are dynamic, RBC actin filament lengths are highly uniform (∼37 nm). RBC actin filament lengths are thought to be stabilized by the capping proteins, tropomodulin-1 and αβ-adducin, as well as the side-binding protein tropomyosin, present in an equimolar combination of two isoforms, TM5b (Tpm1.9) and TM5NM1 (Tpm3.1). New evidence indicates that RBC actin filaments are not simply passive cytolinkers, but rather dynamic structures whose assembly and disassembly play important roles in RBC membrane function."	"Bioinformatics analysis of differentially expressed proteins in prostate cancer based on proteomics data. We mined the literature for proteomics data to examine the occurrence and metastasis of prostate cancer (PCa) through a bioinformatics analysis. We divided the differentially expressed proteins (DEPs) into two groups: the group consisting of PCa and benign tissues (P&amp;b) and the group presenting both high and low PCa metastatic tendencies (H&amp;L). In the P&amp;b group, we found 320 DEPs, 20 of which were reported more than three times, and DES was the most commonly reported. Among these DEPs, the expression levels of FGG, GSN, SERPINC1, TPM1, and TUBB4B have not yet been correlated with PCa. In the H&amp;L group, we identified 353 DEPs, 13 of which were reported more than three times. Among these DEPs, MDH2 and MYH9 have not yet been correlated with PCa metastasis. We further confirmed that DES was differentially expressed between 30 cancer and 30 benign tissues. In addition, DEPs associated with protein transport, regulation of actin cytoskeleton, and the extracellular matrix (ECM)-receptor interaction pathway were prevalent in the H&amp;L group and have not yet been studied in detail in this context. Proteins related to homeostasis, the wound-healing response, focal adhesions, and the complement and coagulation pathways were overrepresented in both groups. Our findings suggest that the repeatedly reported DEPs in the two groups may function as potential biomarkers for detecting PCa and predicting its aggressiveness. Furthermore, the implicated biological processes and signaling pathways may help elucidate the molecular mechanisms of PCa carcinogenesis and metastasis and provide new targets for clinical treatment. "	"Simulated Microgravity Modulates Differentiation Processes of Embryonic Stem Cells. Embryonic developmental studies under microgravity conditions in space are very limited. To study the effects of altered gravity on the embryonic development processes we established an in vitro methodology allowing differentiation of mouse embryonic stem cells (mESCs) under simulated microgravity within a fast-rotating clinostat (clinorotation) and capture of microarray-based gene signatures. The differentiating mESCs were cultured in a 2D pipette clinostat. The microarray and bioinformatics tools were used to capture genes that are deregulated by simulated microgravity and their impact on developmental biological processes. The data analysis demonstrated that differentiation of mESCs in pipettes for 3 days resultet to early germ layer differentiation and then to the different somatic cell types after further 7 days of differentiation in the Petri dishes. Clinorotation influences differentiation as well as non-differentiation related biological processes like cytoskeleton related 19 genes were modulated. Notably, simulated microgravity deregulated genes Cyr61, Thbs1, Parva, Dhrs3, Jun, Tpm1, Fzd2 and Dll1 are involved in heart morphogenesis as an acute response on day 3. If the stem cells were further cultivated under normal gravity conditions (1 g) after clinorotation, the expression of cardiomyocytes specific genes such as Tnnt2, Rbp4, Tnni1, Csrp3, Nppb and Mybpc3 on day 10 was inhibited. This correlated well with a decreasing beating activity of the 10-days old embryoid bodies (EBs). Finally, we captured Gadd45g, Jun, Thbs1, Cyr61and Dll1 genes whose expressions were modulated by simulated microgravity and by real microgravity in various reported studies. Simulated microgravity also deregulated genes belonging to the MAP kinase and focal dhesion signal transduction pathways. One of the most prominent biological processes affected by simulated microgravity was the process of cardiomyogenesis. The most significant simulated microgravity-affected genes, signal transduction pathways, and biological processes which are relevant for mESCs differentiation have been identified and discussed below."	"Functional Assessment of Clubfoot Associated HOXA9, TPM1, and TPM2 Variants Suggests a Potential Gene Regulation Mechanism. Isolated nonsyndromic clubfoot is a common birth defect affecting 135,000 newborns worldwide each year. Although treatment has improved, substantial long-term morbidity persists. Genetic causes have been implicated in family-based studies but the genetic changes have eluded identification. Previously, using a candidate gene approach in our family-based dataset, we identified associations between clubfoot and four single nucleotide polymorphisms (SNPs) located in potential regulatory regions of genes involved in muscle development and patterning (HOXA9) and muscle function (TPM1 and TPM2) were identified. Four SNPs, rs3801776/HOXA9, rs4075583/TPM1, rs2025126/TPM2, and rs2145925/TPM2, located in potential regulatory regions, were evaluated to determine whether they altered promoter activity. Electrophoretic mobility shift assays were performed on these four SNPs to identify allele-specific DNA-protein interactions. SNPs showing differential banding patterns were assessed for effect on promoter activity by luciferase assay. Undifferentiated (for HOXA9) and differentiated (for TPM1 and TPM2) mouse cells were used in functional assays as a proxy for the in vivo developmental stage. Functional analyses showed that the ancestral alleles of rs3801776/HOXA9, rs4075583/TPM1, and rs2025126/TPM2 and the alternate allele of rs2145925/TPM2 created allele-specific nuclear protein interactions and caused higher promoter activity. Interestingly, while rs4075583/TPM1 showed an allele-specific nuclear protein interaction, an effect on promoter activity was observed only when rs4075583/TPM1 was expressed in the 1.7kb haplotype construct. Our results show that associated promoter variants in HOXA9, TPM1, and TPM2, alter promoter expression suggesting that they have a functional role. Moreover and importantly, we show that alterations in promoter activity may be observed only in the context of the genomic architecture. Therefore, future studies focusing on proteins binding to these regulatory SNPs may provide important key insights into gene regulation in clubfoot. Identifying the genetic risk signature for clubfoot is important to provide accurate genetic counseling for at-risk families, for development of prevention programs and new treatments."	"Rbm24 Regulates Alternative Splicing Switch in Embryonic Stem Cell Cardiac Lineage Differentiation. The transition of embryonic stem cell (ESC) pluripotency to differentiation is accompanied by an expansion of mRNA and proteomic diversity. Post-transcriptional regulation of ESCs is critically governed by cell type-specific splicing. However, little is known about the splicing factors and the molecular mechanisms directing ESC early lineage differentiation. Our study identifies RNA binding motif protein 24 (Rbm24) as a key splicing regulator that plays an essential role in controlling post-transcriptional networks during ESC transition into cardiac differentiation. Using an inducible mouse ESC line in which gene expression could be temporally regulated, we demonstrated that forced expression of Rbm24 in ESCs dramatically induced a switch to cardiac specification. Genome-wide RNA sequencing analysis identified more than 200 Rbm24-regulated alternative splicing events (AS) which occurred in genes essential for the ESC pluripotency or differentiation. Remarkably, AS genes regulated by Rbm24 composed of transcriptional factors, cytoskeleton proteins, and ATPase gene family members which are critical components required for cardiac development and functionality. Furthermore, we show that Rbm24 regulates ESC differentiation by promoting alternative splicing of pluripotency genes. Among the Rbm24-regulated events, Tpm1, an actin filament family gene, was identified to possess ESC/tissue specific isoforms. We demonstrated that these isoforms were functionally distinct and that their exon AS switch was essential for ESC differentiation. Our results suggest that ESC's switching into the differentiation state can be initiated by a tissue-specific splicing regulator, Rbm24. This finding offers a global view on how an RNA binding protein influences ESC lineage differentiation by a splicing-mediated regulatory mechanism. Stem Cells 2016;34:1776-1789."	"Next Generation Sequencing and Linkage Analysis for the Molecular Diagnosis of a Novel Overlapping Syndrome Characterized by Hypertrophic Cardiomyopathy and Typical Electrical Instability of Brugada Syndrome. Familial hypertrophic cardiomyopathy (HCM) is an autosomal dominant inherited disorder; mutations in at least 20 genes have been associated. Brugada syndrome (BrS) is an autosomal dominant inherited disorder caused by mutations mainly in theSCN5Agene. A new clinical entity that consists of HCM, typical electrical instability of BrS and sudden death (SD), is described. The family was constituted by 7 members, 4 of who presented clinical features of HCM and electrical instability of BrS. The clinical presentation of proband was ventricular fibrillation. All members were clinically evaluated by physical examination, 12-lead electrocardiography, 2-dimensional echocardiography, stress test, electrocardiogram Holter, flecainide test, and electrophysiological study. An integrated linkage analysis and next generation sequencing (NGS) approach was used to identify the causative mutation. Linkage with the α-tropomyosin (TPM1) gene on chromosome 15q22 was identified. The NGS study identified a missense mutation within theTPM1gene (c.574G&gt;A; p.E192K), exactly located in a binding domain with polycystin-2 protein. No other pathogenic mutations were identified. This is the first report of an association between HCM and BrS, and the first to use a combined approach of linkage and NGS to identify a causative mutation in SD. The present study expands the clinical spectrum of disorders associated with theTPM1gene and may be useful to report novel mechanisms of electrical instability in HCM and BrS."	"miR-21 Might be Involved in Breast Cancer Promotion and Invasion Rather than in Initial Events of Breast Cancer Development. Breast cancer (BC) is a heterogeneous disease that develops into a large number of varied phenotypes. One of the features used in its classification and therapy selection is invasiveness. MicroRNA-21 (miR-21) is considered to be an important element of BC invasiveness, and miR-21 levels are frequently increased in different tumor types compared with normal tissue, including the breast. Experimental and literature research has highlighted that miR-21 was always significantly elevated in every study that included invasive breast carcinomas compared with healthy breast tissue. The main goal of this research was to specify the predominant role of miR-21 in the different phases of BC pathogenesis, i.e. whether it was involved in the early (initiation), later (promotion), or late (propagation, progression) phases. Our second goal was to explain the roles of miR-21 targets in BC by an in silico approach and literature review, and to associate the importance of miR-21 with particular phases of BC pathogenesis through the action of its target genes. Analysis has shown that changes in miR-21 levels might be important for the later and/or late phases of breast cancerogenesis rather than for the initial early phases. Targets of miR-21 (TIMP3, PDCD4, PTEN, TPM1 and RECK) are also primarily involved in BC promotion and progression, especially invasion, angiogenesis and metastasis. miR-21 expression levels could perhaps be used in conjunction with the standard diagnostic parameters as an indicator of BC presence, and to indicate a phenotype likely to show early invasion/metastasis detection and poor prognosis. "	"Localization of the binding interface between leiomodin-2 and α-tropomyosin. The development of some familial dilated cardiomyopathies (DCM) correlates with the presence of mutations in proteins that regulate the organization and function of thin filaments in cardiac muscle cells. Harmful effects of some mutations might be caused by disruption of yet uncharacterized protein-protein interactions. We used nuclear magnetic resonance spectroscopy to localize the region of striated muscle α-tropomyosin (Tpm1.1) that interacts with leiomodin-2 (Lmod2), a member of tropomodulin (Tmod) family of actin-binding proteins. We found that 21 N-terminal residues of Tpm1.1 are involved in interactions with residues 7-41 of Lmod2. The K15N mutation in Tpm1.1, known to be associated with familial DCM, is located within the newly identified Lmod2 binding site of Tpm1.1. We studied the effect of this mutation on binding Lmod2 and Tmod1. The mutation reduced binding affinity for both Lmod2 and Tmod1, which are responsible for correct lengths of thin filaments. The effect of the K15N mutation on Tpm1.1 binding to Lmod2 and Tmod1 provides a molecular rationale for the development of familial DCM. "	"Impact of Genotype on the Occurrence of Atrial Fibrillation in Patients With Hypertrophic Cardiomyopathy. Genes associated with hypertrophic cardiomyopathy (HC) are not uniformly expressed in the atrial myocardium. Whether this may impact susceptibility to atrial fibrillation (AF) is unresolved. To analyze the prevalence and clinical correlates of AF in relation to genotype in a large HC cohort, prevalence and clinical profile of AF were assessed in 237 patients with HC, followed for 14 ± 10 years. Patients were divided into 3 genetic subgroups: (1) MYBPC3 (58%), (2) MYH7 (28%), and (3) &quot;other genotypes&quot; (14%; comprising TNNT2, TNNI3, TPM1, MYL2, complex genotypes, Z-line, and E-C coupling genes). Left atrial size was similar in the 3 subsets. AF occurred in 74 patients with HC (31%), with no difference among groups (31% in MYBPC3, 37% in MYH7 and 18% in other genotypes, p = 0.15), paroxysmal/persistent AF (12%, 18%, and 12%, respectively; p = 0.53), paroxysmal/persistent evolved to permanent (12%, 12%, and 3%, p = 0.36) or permanent AF (7%, 7%, and 3%, p = 0.82). Age at AF onset was younger in the group with other genotypes (37 ± 10 years) compared to the first 2 groups (53 ± 14 and 51 ± 17, respectively; p = 0.05) because of early onset associated with complex genotypes and a specific JPH2 mutation associated with abnormal intracellular calcium handling. At multivariate analysis, independent predictors of AF were atrial diameter (p ≤0.05) and age at diagnosis (p = 0.09), but not genetic subtype (p = 0.35). In conclusion, in patients with HC, genetic testing cannot be used in clinical decision making with regard to management strategies for AF. Genotype is not predictive of onset or severity of AF, which appears rather driven by hemodynamic determinants of atrial dilatation. Exceptions are represented by rare genes suggesting specific molecular pathways for AF in genetic cardiomyopathies."	"Biochemical Comparison of Tpm1.1 (α) and Tpm2.2 (β) Tropomyosins from Rabbit Skeletal Muscle. Tpm1.1 (α) and Tpm2.2 (β) tropomyosins (39 amino acid substitutions) were isolated from adult rabbit skeletal muscle without chemical modification of cysteine, with negligible phosphorylation as assessed by two-dimensional polyacrylamide gel electrophoresis, and characterized biochemically. Reconstituted skeletal thin filaments composed of Tpm2.2 produce ∼30% less Ca(II)-induced activation of the steady-state actomyosin-S1MgATPase rate than Tpm1.1 does. This is observed at a high S1/actin ratio (6 μM myosin-S1A1, 3 μM thin filaments, pCa 4) and as a function of pCa (0.3 μM myosin-S1A1, 25 μM thin filaments). The two pCa versus MgATPase relationships are similar in terms of their steepness and midpoint. Isotype has a bearing on self-polymerization and interaction with troponin. Solutions (pH 7, ionic strength of ∼30 mM) of Tpm2.2 are more viscous than solutions of Tpm1.1, an observation explained by substitutions at the carboxy-terminal end of the molecule, including His276Asn and Met281Ile. Conversely, the enhancement of viscosity of Tpm1.1 by skeletal troponin is greater than that for Tpm2.2. Further, Tpm1.1 binds more strongly than Tpm2.2 to skeletal troponin-Sepharose, as evidenced by a later elution position in the salt gradient. Mixtures of tropomyosin and the amino-terminal CNBr fragment of troponin-T, CB1 (residues 1-151), were chromatographed on a size exclusion column in the presence of different concentrations of KCl. In 0.1 M salt, CB1 co-elutes with either isoform but is largely dissociated at 0.22 M. At intermediate salt concentrations, different degrees of complexation are observed, more extensive for Tpm1.1 than for Tpm2.2. Thus, the first reported variants of tropomyosin are distinct in their interactive and functional properties. The biochemical properties of Tpm2.2 are of particular relevance to the immature skeletal muscle thin filament. "	"Karyoevolution in Potamorhina (Cope, 1878) (Ostariophysi, Curimatidae): Using Repetitive DNA for the Elucidation of Genome Organization. Some families of Characiformes present the tendency toward stability of the karyotypic macrostructure as Curimatidae, which contains species with a 2n = 54 karyotype and metacentric and submetacentric chromosomes, however, some Potamorhina species contradict to this tendency. Some species of the central Amazon exhibit different diploid number and show intraspecific variation in the location of heterochromatin. By performing cytogenetic characterization by localization of heterochromatin and the nucleolus organizer region, as well as physical chromosome mapping using probes targeting 5S and 18S ribosomal DNA (rDNA), retroelement of Xiphophorus 1 (Rex1), Rex3, telomeres, and tropomyosin 1 (TPM1), we attempted to understand the evolutionary mechanisms involved in the differentiation of the Potamorhina species. The analyses showed that the heterochromatic regions of the examined species are distinct and transposable elements are involved in this evolutionary process, considering that the dynamic regions of the genome appear to include the terminal regions and particularly the heterochromatin-rich centromeric regions, which are involved in fission and fusion processes and promote the differentiation of chromosome pairs that bear ribosomal sites; these pairs were similar in the central Amazon species. Thus, we propose a phylogeny for this genus. "	"Synthesis and Characterization of Novel Polythiophenes Containing Pyrene Chromophores: Thermal, Optical and Electrochemical Properties. A novel series of pyrene containing thiophene monomers TPM1-5 were synthesized and fully characterized by FTIR, MS, ¹H- and (13)C-NMR spectroscopy; their thermal properties were determined by TGA and DSC. These monomers were chemically polymerized using FeCl3 as oxidizing agent to give the corresponding oligomers TPO1-5) and they were electrochemically polymerized to obtain the corresponding polymer films deposited onto ITO. All oligomers exhibited good thermal stability, with T10 values between 255 and 299 °C, and Tg values varying from 36 to 39 °C. The monomers showed an absorption band at 345 nm due to the S0 → S2 transition of the pyrene group, whereas the fluorescence spectra showed a broad emission band arising from the &quot;monomer&quot; emission at 375-420 nm. The obtained polymers exhibited two absorption bands at 244 and 354 nm, due to the polythiophene and the pyrene moieties, respectively. The fluorescence spectra of polymers showed a broad &quot;monomer&quot; emission at 380-420 nm followed by an intense excimer emission band at 570 nm, due to the presence of intramolecular pyrene-pyrene interactions in these compounds."	"Tropomyosin-1 protects transformed alveolar epithelial cells against cigaret smoke extract through the stabilization of F-actin-dependent cell-cell junctions. The aim of the study was to estimate the effect of tropomyosin-1-based structural stabilization of F-actin in transformed human alveolar epithelial line H1299 cells subjected to high oxidative stress induced by cigaret smoke extract. We demonstrated here that cigaret smoke extract induces cell shrinking and detachment as a consequence of F-actin cytoskeleton degradation in H1299 cells not overexpressing tropomyosin-1. Furthermore, the treatment of these cells with cigaret smoke extract resulted in the loss of peripheral localization of ZO-1 and initiated apoptosis. In contrast, structural stabilization of F-actin, by overexpression of tropomyosin-1, preserved cell to cell interactions through the attenuation of cortical actin organization into thin fibers and thus protected these cells against oxidative stress-induced degradation of actin cytoskeleton and cell death. In conclusion, we suggest that structural stabilization of thin cortical F-actin fibers increases link between tight junctions proteins and actin cytoskeleton and thus protects H1299 cells against cigaret smoke extract. "	"TPM1 polymorphisms and nonsyndromic orofacial clefts susceptibility in a Chinese Han population. Located at 15q22 a susceptibility region for nonsyndromic orofacial clefts (NSOC), TPM1 encodes a group of highly conserved ubiquitous actin-binding proteins involved in the muscle contraction and cytoskeleton organization. Considering the multiple functions of TPM1 gene, we investigated the potential relationship between TPM1 polymorphisms and risk of NSOC in a Chinese Han population. Four tag single nucleotide polymorphisms (tSNPs) of TPM1 (rs11071720, rs3803499, rs12148828, and rs1972041) were selected to conduct a case-control study with 673 NSOC patients and 705 unrelated healthy controls from a Chinese Han population. The SNPs were genotyped by the IPLEX Sequenom MassARRAY platform. SNP rs1972041GA showed a decreased risk of NSOC in heterozygotes (P = 0.038, OR = 0.77, 95%CI = [0.61, 0.99]). Further stratified analysis revealed an enhanced protective effect of the minor allele G at rs197204 on lip with cleft palate (CLP) and cleft lip with or without cleft palate (CL/P) groups under a codominant or dominant model. No association was observed between the remaining three markers (rs11071720, rs3803499, and rs12148828) and NSOC as well as its subgroups. TPM1 polymorphisms might contribute to the etiology of NSOC, and more emphasis should be placed on TPM1 during craniofacial development."	"Genetic profile of hypertrophic cardiomyopathy in Tunisia: Is it different? We recently performed next generation sequencing (NGS) genetic screening in 11 consecutive and unrelated Tunisian HCM probands seen at Habib Thameur Hospital in Tunis in the first 6 months of 2014, as part of a cooperative study between our Institutions. The clinical diagnosis of HCM was made according to standard criteria. Using the Illumina platform, a panel of 12 genes was analyzed including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2 and MYL3), troponin-T (TNNT2), troponin-I (TNNI3), troponin-C (TNNC1), alpha-tropomyosin (TPM1), alpha-actin (ACTC1), alpha-actinin-2 (ACTN2) as well as alfa-galactosidase (GLA), 5'-AMP-activated protein (PKRAG2), transthyretin (TTR) and lysosomal-associated membrane protein-2 (LAMP2) for exclusion of phenocopies. Our preliminary data, despite limitations inherent to the small sample size, suggest that HCM in Tunisia may have a peculiar genetic background which privileges rare genes overs the classic HCM-associated MHY7 and MYBPC3 genes. "	"Cytoskeletal binding proteins distinguish cultured dental follicle cells and periodontal ligament cells. Human dental follicle cells (DFCs) and periodontal ligament cells (PDLCs) derived from the ectomesenchymal tissue, have been shown to exhibit stem/progenitor cell properties and the ability to induce tissue regeneration. Stem cells in dental follicle differentiate into cementoblasts, periodontal ligament fibroblasts and osteoblasts, these cells form cementum, periodontal ligament and alveolar bone, respectively. While stem cells in dental follicle are a precursor to periodontal ligament fibroblasts, the molecular changes that distinguish cultured DFCs from PDLCs are still unknown. In this study, we have compared the immunophenotypic features and cell cycle status of the two cell lines. The results suggest that DFCs and PDLCs displayed similar features related to immunophenotype and cell cycle. Then we employed an isobaric tag for relative and absolute quantitation (iTRAQ) proteomics strategy to reveal the molecular differences between the two cell types. A total of 2138 proteins were identified and 39 of these proteins were consistently differentially expressed between DFCs and PDLCs. Gene ontology analyses revealed that the protein subsets expressed higher in PDLCs were related to actin binding, cytoskeletal protein binding, and structural constituent of muscle. Upon validation by real-time PCR, western blotting, and immunofluorescence staining. Tropomyosin 1 (TPM1) and caldesmon 1 (CALD1) were expressed higher in PDLCs than in DFCs. Our results suggested that PDLCs display enhanced actin cytoskeletal dynamics relative to DFCs while DFCs may exhibit a more robust antioxidant defense ability relative to PDLCs. This study expands our knowledge of the cultured DFCs and PDLCs proteome and provides new insights into possible mechanisms responsible for the different biological features observed in each cell type."	"Screening of potential biomarkers for cholangiocarcinoma by integrated analysis of microarray data sets. Cholangiocarcinoma (CCA) continues to harbor a difficult prognosis and it is difficult to diagnose in its early stages. The molecular mechanisms of CCA oncogenesis and progression are poorly understood. This study aimed to identify candidate biomarkers for CCA. Integrated analysis of microarray data sets was performed to identify differentially expressed genes (DEGs) between CCA and normal tissues. Gene Ontology enrichment analysis and Kyoto Encyclopedia of Genes and Genomes (KEGG) pathway enrichment analysis were then performed to identify the functions of DEGs. Furthermore, the protein-protein interaction (PPI) network of DEGs was constructed. The expressions of DEGs were validated in human CCA tissues by qRT-PCR. A set of 712 DEGs were identified in CCA compared with normal tissues, including 306 upregulated and 406 downregulated DEGs. It can be shown from the KEGG pathway analysis that some pathways may have important roles in pathology of CCA, including peroxisome proliferator-activated receptor signaling pathway, bile secretion, cell cycle, fat digestion and absorption. PPI network indicated that the significant hub proteins were PKM, SPP1 and TPM1. The abnormally overexpression PKM, SPP1 and TPM1 were closely related to oncogenesis and progression of CCA. PKM, SPP1, TPM1, COL1A1 and COL1A2 may serve as candidate biomarkers for diagnosis and prognosis of CCA. "	"Tropomyosin isoforms differentially modulate the regulation of actin filament polymerization and depolymerization by cofilins. The specific functions of actin filaments located in the contractile and cytoskeletal compartments of muscle cells depend on the stability and dynamic polymerization/depolymerization of filaments. Tropomyosins and cofilins control the length and dynamic rearrangement of the filaments, although the mechanisms regulating actin dynamics are not well understood. In the present study, we used in vitro assays to examine the regulation of two cofilin isoforms, constitutive cofilin-1 and muscle cofilin-2, by the muscle homodimer Tpm1.1, muscle heterodimer Tpm1.1/Tpm2.2, and the cytoskeletal Tpm3.1. Depolymerization from the pointed end induced by the muscle-specific cofilin-2 was inhibited by all tropomyosins, whereas the muscle isoforms were most effective. By contrast, depolymerization by cofilin-1 was inhibited by Tpm3.1 and Tpm1.1, but not by Tpm1.1/Tpm2.2. Polymerization of G-actin was inhibited by cofilin-2, whereas cofilin-1 had no effect. All three tropomyosins switched on the inhibiting activity of cofilin-1; however, Tpm3.1 and Tpm1.1 were much more efficient. Cofilin-2-induced inhibition of polymerization was affected neither by Tpm1.1, nor by Tpm3.1, but partly relieved by Tpm1.1/Tpm2.2. Cofilins removed tropomyosin isoforms from the filament with different efficiencies, which correlated with the cooperativities of cofilin binding to the F-actin/tropomyosin complex. Because neither zero-length, nor long-arm cross-linking between tropomyosin and cofilin isoforms was observed, the effects of tropomyosin isoforms on the activities of cofilins were executed allosterically. The results reveal that isoform-specific interactions with actin filament permit tropomyosins to discriminate between cofilin isoforms and to differentially regulate their activities. "	"Gene Expression Profiling of H9c2 Cells Subjected to H2O2-Induced Apoptosis with/without AF-HF001. Heart failure represents a major health problem. The development of new drugs to treat this condition is essential. We previously discovered that AF-001 attenuates the cardiac defects caused by heart failure in zebrafish. In this paper, we report the identification of AF-HF001, an AF-001 derivative, and its effects on live cardiomyocytes subjected to oxidative damage. The in vitro results demonstrated that AF-HF001 attenuates the production of reactive oxygen species (ROS) and the myocardial cell apoptosis. A DNA microarray was performed to broadly analyze gene expression after H2O2 treatment with or without AF-HF001. Hierarchical clustering analysis revealed that AF-HF001 modifies the expression of certain genes (Ndufs2, Ndufb6, Ndufb8, Ndufa13, Ndufs3, Ndufs5, TPM1, MYH14, RyR1, and TIMP4) related to ROS production, cardiac contractility and extracellular matrix remodeling. AF-HF001 ameliorates oxidative damage, which may be related to the mitogen-activated protein kinase (MAPK) family and the intrinsic mitochondrial pathway. Altogether, this study suggests that AF-HF001 exhibits potential as a clinical drug candidate for the treatment of heart failure. "	"Targeted next-generation sequencing of candidate genes reveals novel mutations in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a major cause of sudden cardiac death and heart failure, and it is characterized by genetic and clinical heterogeneity, even for some patients with a very poor clinical prognosis; in the majority of cases, DCM necessitates a heart transplant. Genetic mutations have long been considered to be associated with this disease. At present, mutations in over 50 genes related to DCM have been documented. This study was carried out to elucidate the characteristics of gene mutations in patients with DCM. The candidate genes that may cause DCM include MYBPC3, MYH6, MYH7, LMNA, TNNT2, TNNI3, MYPN, MYL3, TPM1, SCN5A, DES, ACTC1 and RBM20. Using next-generation sequencing (NGS) and subsequent mutation confirmation with traditional capillary Sanger sequencing analysis, possible causative non-synonymous mutations were identified in ~57% (12/21) of patients with DCM. As a result, 7 novel mutations (MYPN, p.E630K; TNNT2, p.G180A; MYH6, p.R1047C; TNNC1, p.D3V; DES, p.R386H; MYBPC3, p.C1124F; and MYL3, p.D126G), 3 variants of uncertain significance (RBM20, p.R1182H; MYH6, p.T1253M; and VCL, p.M209L), and 2 known mutations (MYH7, p.A26V and MYBPC3, p.R160W) were revealed to be associated with DCM. The mutations were most frequently found in the sarcomere (MYH6, MYBPC3, MYH7, TNNC1, TNNT2 and MYL3) and cytoskeletal (MYPN, DES and VCL) genes. As genetic testing is a useful tool in the clinical management of disease, testing for pathogenic mutations is beneficial to the treatment of patients with DCM and may assist in predicting disease risk for their family members before the onset of symptoms."	"[TPM1 gene mutation is associated with dilated cardiomyopathy in Kazaks in Xinjiang]. Detect the relationship between TPM1 gene mutations and dilated cardiomyopathy (DCM) of Kazaks and Hans in Xinjiang. TPM1 gene was screened from 31 family members in a Kazak family with familiar DCM (FDCM), 100 patients with idiopathic DCM (IDCM, 50 Kazaks and 50 Hans), and in 100 healthy controls (50 Kazaks and 50 Hans). All the samples were the inpatients or outpatients of First Affiliated Hospital of Xinjiang University from 2012 to 2014. PCR was used to amplify 9 exons and nearby introns of the TPM1 gene. The amplified products were sequenced and compared with the standard sequence with CHROMAS software and BLAST software in Pubmed to identify mutation sites. The relationship between TPM1 gene mutations in the Kazak IDCM and healthy volunteers, between Han and Kazak IDCM and healthy volunteers was analyzed. Tropomyosin was qualitatively and quantitatively detected by ELISA in all subjects. A novel variant (c.524 G &gt; T) was identified in two FDCM patients at exon 3, this mutation caused an amino acid substitution, Gln111His. The FDCM, IDCM from Kazak and Han, healthy volunteers from Kazak and Han were founded a rs1071646 (c.644C &gt; A, Ala151Ala). There was a significant difference in the genotype distribution (χ(2) = 13.36, P = 0.001) and allele frequency (χ(2) = 10.25, P = 0.001) between Kazaks with IDCM and Kazak controls of rs1071646, while these parameters were similar between Han IDCM patients and Han controls (all P &gt; 0.05). The tropomyosin content of Kazak and Han IDCM patients were significantly lower than Kazak and Han controls ((1 764.2 ± 350.9) ng/L vs. (2 369.7 ± 345.9) ng/L, P = 0.001). TPM1 gene of rs1071646 polymorphism is a possible independent risk factor for IDCM in Kazaks but not Han Chinese."	"Comparative Proteomics of Tumor and Paired Normal Breast Tissue Highlights Potential Biomarkers in Breast Cancer. Breast cancer is the most common type of cancer among women worldwide, and about 57,000 new cases are expected for the Brazilian population in 2015. Elucidation of protein expression and modification is essential for the biological understanding, early diagnosis and therapeutics of breast cancer. The main objectives of the study are comparison between the proteome of tumor and paired non-tumor breast cancer tissues, describing all identified proteins, highlighting the ones most differentially expressed and comparing the data with existing literature. The five paired samples from patients with invasive ductal carcinoma were analyzed by 2-DE and MS. We collected 161 identified spots corresponding to 110 distinct proteins. Forty-three differentially-expressed spots were common to at least two samples, and the ten proteins with the highest-fold changes were CASPE, ENOG, TPM1, CAPG, VIME, TPM3, TRFE, PDIA6, WDR61 and PDIA3. Metabolic enzymes and proteins with binding functions were the most representative functional classes of proteins with increased and decreased expression in tumor tissue respectively. Taking the fold change as a parameter, we point to future targets to be studied by functional methods in a search for biomarkers for initiation and progress of breast cancer."	"Right ventricular protein expression profile in end-stage heart failure. Little is known about the right ventricular (RV) proteome in human heart failure (HF), including possible differences compared to the left ventricular (LV) proteome. We used 2-dimensional differential in-gel electrophoresis (pH: 4-7, 10-150 kDa), followed by liquid chromatography tandem mass spectrometry, to compare the RV and LV proteomes in 12 explanted human hearts. We used Western blotting and multiple-reaction monitoring for protein verification and RNA sequencing for messenger RNA and protein expression correlation. In all 12 hearts, the right ventricles (RVs) demonstrated differential expression of 11 proteins relative to the left ventricles (LVs), including lesser expression of CRYM, TPM1, CLU, TXNL1, and COQ9 and greater expression of TNNI3, SAAI, ERP29, ACTN2, HSPB2, and NDUFS3. Principal-components analysis did not suggest RV-versus-LV proteome partitioning. In the nonischemic RVs (n = 6), 7 proteins were differentially expressed relative to the ischemic RVs (n = 6), including increased expression of CRYM, B7Z964, desmin, ANXA5, and MIME and decreased expression of SERPINA1 and ANT3. Principal-components analysis demonstrated partitioning of the nonischemic and ischemic RV proteomes, and gene ontology analysis identified differences in hemostasis and atherosclerosis-associated networks. There were no proteomic differences between RVs with echocardiographic dysfunction (n = 8) and those with normal function (n = 4). Messenger RNA and protein expression did not correlate consistently, suggesting a major role for RV posttranscriptional protein expression regulation. Differences in contractile, cytoskeletal, metabolic, signaling, and survival pathways exist between the RV and the LV in HF and may be related to the underlying HF etiology and differential posttranscriptional regulation. "	"Nucleotide and protein sequences for dog masticatory tropomyosin identify a novel Tpm4 gene product. Jaw-closing muscles of several vertebrate species, including members of Carnivora, express a unique, &quot;masticatory&quot;, isoform of myosin heavy chain, along with isoforms of other myofibrillar proteins that are not expressed in most other muscles. It is generally believed that the complement of myofibrillar isoforms in these muscles serves high force generation for capturing live prey, breaking down tough plant material and defensive biting. A unique isoform of tropomyosin (Tpm) was reported to be expressed in cat jaw-closing muscle, based upon two-dimensional gel mobility, peptide mapping, and immunohistochemistry. The objective of this study was to obtain protein and gene sequence information for this unique Tpm isoform. Samples of masseter (a jaw-closing muscle), tibialis (predominantly fast-twitch fibers), and the deep lateral gastrocnemius (predominantly slow-twitch fibers) were obtained from adult dogs. Expressed Tpm isoforms were cloned and sequencing yielded cDNAs that were identical to genomic predicted striated muscle Tpm1.1St(a,b,b,a) (historically referred to as αTpm), Tpm2.2St(a,b,b,a) (βTpm) and Tpm3.12St(a,b,b,a) (γTpm) isoforms (nomenclature reflects predominant tissue expression (&quot;St&quot;-striated muscle) and exon splicing pattern), as well as a novel 284 amino acid isoform observed in jaw-closing muscle that is identical to a genomic predicted product of the Tpm4 gene (δTpm) family. The novel isoform is designated as Tpm4.3St(a,b,b,a). The myofibrillar Tpm isoform expressed in dog masseter exhibits a unique electrophoretic mobility on gels containing 6 M urea, compared to other skeletal Tpm isoforms. To validate that the cloned Tpm4.3 isoform is the Tpm expressed in dog masseter, E. coli-expressed Tpm4.3 was electrophoresed in the presence of urea. Results demonstrate that Tpm4.3 has identical electrophoretic mobility to the unique dog masseter Tpm isoform and is of different mobility from that of muscle Tpm1.1, Tpm2.2 and Tpm3.12 isoforms. We conclude that the unique Tpm isoform in dog masseter is a product of the Tpm4 gene and that the 284 amino acid protein product of this gene represents a novel myofibrillar Tpm isoform never before observed to be expressed in striated muscle."	"Significance of sarcomere gene mutation in patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is a myocardial disease with a high mortality rate. Approximately 40 genes have been found to be associated with DCM to date. Non-familial DCM can also be caused by gene mutations, suggesting that genetic factors were involved in the pathogenesis of DCM; therefore genetic testing is beneficial for the early diagnosis of DCM, which can facilitate the implementation of preventive measures by and within patient's families. Here, we investigated the underlying genetic mutations involved in the cause of patients with DCM. This prospective study included 240 patients with idiopathic DCM and 240 healthy volunteers. Subject clinical data were collected and polymerase chain reaction amplification was carried out on subject DNA for three candidate genes tropomyosin (TPM1), cardiac troponin T type-2 (TNNT2), and nuclear lamina protein A/C. Single nucleotide polymorphism (SNP) loci were detected in the TPM1 (rs1071646) and TNNT2 (rs3729547) genes, respectively. The genotype distributions and allele frequencies were found to satisfy Hardy-Weinberg equilibrium, which indicated that the group was representative. Statistically significant differences were found between the variant frequencies in the two SNP loci between the Kazakh patients with idiopathic DCM (IDCM) and healthy volunteers. A significant difference in the genotype distributions (P = 0.000) and allele frequencies (P = 0.000) of SNP rs1071646, and another significant difference in the genotype distributions (P = 0.000) and allele frequencies (P = 0.039) of SNP rs3729547 between Kazakhs with IDCM and Kazakh controls. These results suggest that the TPM1 (rs1071646) and TNNT2 (rs3729547) gene variants might represent risk factors for patients with DCM in the Kazakh population."	"Effects of exercise training together with tamoxifen in reducing mammary tumor burden in mice: Possible underlying pathway of miR-21. Exercise training has an anti-tumor effect and can reduce tumor growth; however, the exact underlying mechanisms of its protective effects are still obscure. MicroRNA (miR)-21 is a predictor in cancer survival, and has a potential use as an indicator of therapeutic outcome in breast malignancies. Forty-eight female BALB/c mice were equally divided into six groups to investigate the effects of interval exercise training with tamoxifen on miR-21 expression and its possible assumed mechanisms in an estrogen receptor-positive breast cancer model. ELISA, immunohistochemistry, western blot, qRT-PCR assays were performed at the end of the study. Tumor size was significantly declined in exercise training and tamoxifen groups compared to tumor group (P&lt;0.05). Expression of miR-21 was significantly down-regulated in trained and tamoxifen treated mice in comparison with tumor group (P&lt;0.05). Exercise training was as effective as tamoxifen treatment in decreasing serum estradiol and ER-α expression (P&lt;0.05). Exercise training and tamoxifen reduced tumor IL-6 levels, NF-kB and STAT3 expressions, and up-regulated TPM1 and PDCD4 expressions (P&lt;0.05). Both exercise and tamoxifen had synergistic effects in reducing miR-21 and Bcl-2, and up-regulating PDCD4 expression. Results showed that interval exercise training may reduce mammary tumor burden in mice through possible underlying pathway of miR-21. "	"KSHV MicroRNAs Repress Tropomyosin 1 and Increase Anchorage-Independent Growth and Endothelial Tube Formation. Kaposi's sarcoma (KS) is characterized by highly vascularized spindle-cell tumors induced after infection of endothelial cells by Kaposi's sarcoma-associated herpesvirus (KSHV). In KS tumors, KSHV expresses only a few latent proteins together with 12 pre-microRNAs. Previous microarray and proteomic studies predicted that multiple splice variants of the tumor suppressor protein tropomyosin 1 (TPM1) were targets of KSHV microRNAs. Here we show that at least two microRNAs of KSHV, miR-K2 and miR-K5, repress protein levels of specific isoforms of TPM1. We identified a functional miR-K5 binding site in the 3' untranslated region (UTR) of one TPM1 isoform. Furthermore, the inhibition or loss of miR-K2 or miR-K5 restores expression of TPM1 in KSHV-infected cells. TPM1 protein levels were also repressed in KSHV-infected clinical samples compared to uninfected samples. Functionally, miR-K2 increases viability of unanchored human umbilical vein endothelial cells (HUVEC) by inhibiting anoikis (apoptosis after cell detachment), enhances tube formation of HUVECs, and enhances VEGFA expression. Taken together, KSHV miR-K2 and miR-K5 may facilitate KSHV pathogenesis. "	"Stabilizing the central part of tropomyosin increases the bending stiffness of the thin filament. A two-beam optical trap was used to measure the bending stiffness of F-actin and reconstructed thin filaments. A dumbbell was formed by a filament segment attached to two beads that were held in the two optical traps. One trap was static and held a bead used as a force transducer, whereas an acoustooptical deflector moved the beam holding the second bead, causing stretch of the dumbbell. The distance between the beads was measured using image analysis of micrographs. An exact solution to the problem of bending of an elastic filament attached to two beads and subjected to a stretch was used for data analysis. Substitution of noncanonical residues in the central part of tropomyosin with canonical ones, G126R and D137L, and especially their combination, caused an increase in the bending stiffness of the thin filaments. The data confirm that the effect of these mutations on the regulation of actin-myosin interactions may be caused by an increase in tropomyosin stiffness. "	"Expression of Tropomyosin 1 Gene Isoforms in Human Breast Cancer Cell Lines. Nine malignant breast epithelial cell lines and 3 normal breast cell lines were examined for stress fiber formation and expression of TPM1 isoform-specific RNAs and proteins. Stress fiber formation was strong (++++) in the normal cell lines and varied among the malignant cell lines (negative to +++). Although TPM1γ and TPM1δ were the dominant transcripts of TPM1, there was no clear evidence for TPM1δ protein expression. Four novel human TPM1 gene RNA isoforms were discovered (λ, μ, ν, and ξ), which were not identified in adult and fetal human cardiac tissues. TPM1λ was the most frequent isoform expressed in the malignant breast cell lines, and it was absent in normal breast epithelial cell lines. By western blotting, we were unable to distinguish between TPM1γ, λ, and ν protein expression, which were the only TPM1 gene protein isoforms potentially expressed. Some malignant cell lines demonstrated increased or decreased expression of these isoforms relative to the normal breast cell lines. Stress fiber formation did not correlate with TPM1γ RNA expression but significantly and inversely correlated with TPM1δ and TPM1λ expression, respectively. The exact differences in expression of these novel isoforms and their functional properties in breast epithelial cells will require further study. "	"Stable incorporation of α-smooth muscle actin into stress fibers is dependent on specific tropomyosin isoforms. α-Smooth Muscle Actin (α-SMA), a widely characterized cytoskeletal protein, represents the hallmark of myofibroblast differentiation. Transforming growth factorβ1 (TGFβ1) stimulates α-SMA expression and incorporation into stress fibers, thus providing an increased myofibroblast contractile force that participates in tissue remodeling. We have addressed the molecular mechanism by which α-SMA is stably incorporated into stress fibers in human myofibroblasts following exposure to TGFβ1. The unique N-terminal sequence AcEEED, which is critical for α-SMA incorporation into stress fibers, was used to screen for AcEEED binding proteins. Tropomyosins were identified as candidate binding proteins. We find that after TGFβ1 treatment elevated levels of the Tpm1.6/7 isoforms, and to a lesser extent Tpm2.1, precede the increase in α-SMA. RNA interference experiments demonstrate that α-SMA fails to stably incorporate into stress fibers of TGFβ1 treated fibroblasts depleted of Tpm1.6/7, but not other tropomyosins. This does not appear to be due to exclusive interactions between α-SMA and just the Tpm1.6/7 isoforms. We propose that an additional AcEEED binding factor may be required to generate α-SMA filaments containing just Tpm1.6/7 which result in stable incorporation of the resulting filaments into stress fibers."	"Omecamtiv Mecarbil, a Cardiac Myosin Activator, Increases Ca2+ Sensitivity in Myofilaments With a Dilated Cardiomyopathy Mutant Tropomyosin E54K. Apart from transplant, there are no satisfactory therapies for the severe depression in contractility in familial dilated cardiomyopathy (DCM). Current heart failure treatments that act by increasing contractility involve signaling cascades that alter calcium homeostasis and induce arrhythmias. Omecamtiv mecarbil is a promising new inotropic agent developed for heart failure that may circumvent such limitations. Omecamtiv is a direct cardiac myosin activator that promotes and prolongs the strong myosin-actin binding conformation to increase the duration of systolic elastance. We tested the effect of omecamtiv on Ca(2+) sensitivity of myofilaments of a DCM mouse model containing a tropomyosin E54K mutation. We compared tension and ATPase activity of detergent-extracted myofilaments with and without treatment with 316 nM omecamtiv at varying pCa values. When transgenic myofilaments were treated with omecamtiv, the pCa50 for activation of tension increased from 5.70 ± 0.02 to 5.82 ± 0.02 and ATPase activity increased from 5.73 ± 0.06 to 6.07 ± 0.04. This significant leftward shift restored Ca(2+) sensitivity to levels no longer significantly different from controls. Proteomic studies lacked changes in sarcomeric protein phosphorylation. Our data demonstrate that omecamtiv can potentially augment cardiac contractility in DCM by increasing Ca(2+) sensitivity. The use of direct myosin activators addresses functional defects without incurring the adverse side effects of Ca(2+)-dependent treatments."	"Loss of Function Mutations in NNT Are Associated With Left Ventricular Noncompaction. Left ventricular noncompaction (LVNC) is an autosomal-dominant, genetically heterogeneous cardiomyopathy with variable severity, which may co-occur with cardiac hypertrophy. Here, we generated whole exome sequence data from multiple members from 5 families with LVNC. In 4 of 5 families, the candidate causative mutation segregates with disease in known LVNC genes MYH7 and TPM1. Subsequent sequencing of MYH7 in a larger LVNC cohort identified 7 novel likely disease causing variants. In the fifth family, we identified a frameshift mutation in NNT, a nuclear-encoded mitochondrial protein, not implicated previously in human cardiomyopathies. Resequencing of NNT in additional LVNC families identified a second likely pathogenic missense allele. Suppression of nnt in zebrafish caused early ventricular malformation and contractility defects, probably driven by altered cardiomyocyte proliferation. In vivo complementation studies showed that mutant human NNT failed to rescue nnt morpholino-induced heart dysfunction, indicating a probable haploinsufficiency mechanism. Together, our data expand the genetic spectrum of LVNC and demonstrate how the intersection of whole exome sequence with in vivo functional studies can accelerate the identification of genes that drive human genetic disorders."	"Targeted next-generation sequencing (NGS) of nine candidate genes with custom AmpliSeq in patients and a cardiomyopathy risk group. Hypertrophic cardiomyopathy is a common genetic cardiac disease. Prevention and early diagnosis of this disease are very important. Because of the large number of causative genes and the high rate of mutations involved in the pathogenesis of this disease, traditional methods of early diagnosis are ineffective. We developed a custom AmpliSeq panel for NGS sequencing of the coding sequences of ACTC1, MYBPC3, MYH7, MYL2, MYL3, TNNI3, TNNT2, TPM1, and CASQ2. A genetic analysis of student cohorts (with and without cardiomyopathy risk in their medical histories) and patients with cardiomyopathies was performed. For the statistical and bioinformatics analysis, Polyphen2, SIFT, SnpSift and PLINK software were used. To select genetic markers in the patients with cardiomyopathy and in the students of the high risk group, four additive models were applied. Our AmpliSeq custom panel allowed us to efficiently explore targeted sequences. Based on the score analysis, we detected three substitutions in the MYBPC3 and CASQ2 genes and six combinations between loci in the MYBPC3, MYH7 and CASQ2 genes that were responsible for cardiomyopathy risk in our cohorts. We also detected substitutions in the TNNT2 gene that can be considered as protective against cardiomyopathy. We used NGS with AmpliSeq libraries and Ion PGM sequencing to develop improved predictive information for patients at risk of cardiomyopathy."	"Silencing of the TPM1 gene induces radioresistance of glioma U251 cells. The present study was designed to investigate the relationship between tropomyosin 1 (TPM1) and radioresistance in human U251 cells. Radioresistant U251 (RR-U251) cells were established by repeated small irradiating injury. TPM1 levels in the U251 and RR-U251 cells were inhibited by transfection with TPM1-short hairpin RNA (shRNA) while overexpression was induced by treatment with pcDNA3.1‑TPM1. The radiosensitivity of the U251 and RR-U251 cells and the plasmid-transfected cells was evaluated by cell viability, migration and invasion assays. Cell apoptosis was also examined in vitro. The radiosensitivity of U251 xenografts was observed by tumor growth curve after radiotherapy in an in vivo experiment. Western blotting and immunohistochemistry were used to detect the level of TPM1 in vivo. The expression of TPM1 was significantly decreased in the RR-U251 cells, which may be correlated with the radioresistance of the glioma U251 cells. In the TPM1-silenced RR-U251 and TPM1-silenced U251 cells, cell viability, migration and invasion ability were significantly increased, and the rate of cell apoptosis was decreased. Consistent with these results, in the TPM1-overexpressing U251 and RR-U251 cells, cell viability, migration and invasion abilities were markedly decreased, and increased apoptosis was noted when compared to the control group. Tumor growth of the U251 xenografts was significantly inhibited following treatment with pcDNA3.1‑TPM1 combined with radiotherapy. Taken together, these results indicate that TPM1 may be one mechanism underlying radiation resistance, and TPM1 may be a potential target for overcoming the radiation resistance in glioma."	"Pontin functions as an essential coactivator for Oct4-dependent lincRNA expression in mouse embryonic stem cells. The actions of transcription factors, chromatin modifiers and noncoding RNAs are crucial for the programming of cell states. Although the importance of various epigenetic machineries for controlling pluripotency of embryonic stem (ES) cells has been previously studied, how chromatin modifiers cooperate with specific transcription factors still remains largely elusive. Here, we find that Pontin chromatin remodelling factor plays an essential role as a coactivator for Oct4 for maintenance of pluripotency in mouse ES cells. Genome-wide analyses reveal that Pontin and Oct4 share a substantial set of target genes involved in ES cell maintenance. Intriguingly, we find that the Oct4-dependent coactivator function of Pontin extends to the transcription of large intergenic noncoding RNAs (lincRNAs) and in particular linc1253, a lineage programme repressing lincRNA, is a Pontin-dependent Oct4 target lincRNA. Together, our findings demonstrate that the Oct4-Pontin module plays critical roles in the regulation of genes involved in ES cell fate determination. "	"Fibroblast-myofibroblast transition is differentially regulated by bronchial epithelial cells from asthmatic children. Airway remodeling is a proposed mechanism that underlies the persistent loss of lung function associated with childhood asthma. Previous studies have demonstrated that human lung fibroblasts (HLFs) co-cultured with primary human bronchial epithelial cells (BECs) from asthmatic children exhibit greater expression of extracellular matrix (ECM) components compared to co-culture with BECs derived from healthy children. Myofibroblasts represent a population of differentiated fibroblasts that have greater synthetic activity. We hypothesized co-culture with asthmatic BECs would lead to greater fibroblast to myofibroblast transition (FMT) compared to co-culture with healthy BECs. BECs were obtained from well-characterized asthmatic and healthy children and were proliferated and differentiated at an air-liquid interface (ALI). BEC-ALI cultures were co-cultured with HLFs for 96 hours. RT-PCR was performed in HLFs for alpha smooth muscle actin (α-SMA) and flow cytometry was used to assay for α-SMA antibody labeling of HLFs. RT-PCR was also preformed for the expression of tropomyosin-I as an additional marker of myofibroblast phenotype. In separate experiments, we investigated the role of TGFβ2 in BEC-HLF co-cultures using monoclonal antibody inhibition. Expression of α-SMA by HLFs alone was greater than by HLFs co-cultured with healthy BECs, but not different than α-SMA expression by HLFs co-cultured with asthmatic BECs. Flow cytometry also revealed significantly less α-SMA expression by healthy co-co-cultures compared to asthmatic co-cultures or HLF alone. Monoclonal antibody inhibition of TGFβ2 led to similar expression of α-SMA between healthy and asthmatic BEC-HLF co-cultures. Expression of topomyosin-I was also significantly increased in HLF co-cultured with asthmatic BECs compared to healthy BEC-HLF co-cultures or HLF cultured alone. These findings suggest dysregulation of FMT in HLF co-cultured with asthmatic as compared to healthy BECs. Our results suggest TGFβ2 may be involved in the differential regulation of FMT by asthmatic BECs. These findings further illustrate the importance of BEC-HLF cross-talk in asthmatic airway remodeling."	"Coexistence of Digenic Mutations in Both Thin (TPM1) and Thick (MYH7) Filaments of Sarcomeric Genes Leads to Severe Hypertrophic Cardiomyopathy in a South Indian FHCM. Mutations in sarcomeric genes are the leading cause for cardiomyopathies. However, not many genetic studies have been carried out on Indian cardiomyopathy patients. We performed sequence analyses of a thin filament sarcomeric gene, α-tropomyosin (TPM1), in 101 hypertrophic cardiomyopathy (HCM) patients and 147 dilated cardiomyopathy (DCM) patients against 207 ethnically matched healthy controls, revealing 13 single nucleotide polymorphisms (SNPs). Of these, one mutant, S215L, was identified in two unrelated HCM cases-patient #1, aged 44, and patient #2, aged 65-and was cosegregating with disease in these families as an autosomal dominant trait. In contrast, S215L was completely absent in 147 DCM and 207 controls. Patient #1 showed a more severe disease phenotype, with poor prognosis and a family history of sudden cardiac death, than patient #2. Therefore, these two patients and the family members positive for S215L were further screened for variations in MYH7, MYBPC3, TNNT2, TNNI3, MYL2, MYL3, and ACTC. Interestingly, two novel thick filaments, D896N (homozygous) and I524K (heterozygous) mutations, in the MYH7 gene were identified exclusively in patient #1 and his family members. Thus, we strongly suggest that the coexistence of these digenic mutations is rare, but leads to severe hypertrophy in a South Indian familial hypertrophic cardiomyopathy (FHCM)."	"Clinical and tumor significance of tropomyosin-1 expression levels in renal cell carcinoma. Renal cell carcinoma (RCC) is the most common type of kidney cancer in adults and has been described as one of the deadliest of cancers affecting the genitourinary tract. Tropomyosin is a two-stranded α-helical coiled coil protein found in cell cytoskeletons. One of its isoforms, tropomyosin-1 (TPM1) has been reported as a novel tumor-suppressor gene and is downregulated in many solid tumors. However the expression level and function of TPM1 in RCC have not yet been determined. In the present study, we evaluated the TPM1-4 mRNA and TPM1 protein levels in RCC tissue samples. TPM1-overexpressing OSRC-2 and 786-O cell lines were also used to investigate the impact of TPM1 on RCC cells. We found that TPM1 was significantly and specifically downregulated in the RCC tissues. TPM1 expression was associated with tumor size, smoking status, Fuhrman grade and the prognosis of RCC patients. After TPM1 transfection, the migratory and invasive abilities of the OSRC-2 and 786-O cell lines were both reduced when compared to the control groups. Meanwhile, apoptosis was also enhanced in these two RCC cell lines following TPM1 transfection. Taken together, TPM1 exhibits characteristics of a tumor-suppressor gene while being overexpressed in RCC cell lines."	"Whole-exome sequencing identify a new mutation of MYH7 in a Chinese family with left ventricular noncompaction. Left ventricular noncompaction (LVNC) is a genetic cardiomyopathy results from the failure of myocardial development during embryogenesis. Previous reports show that defects in TAZ, SCN5A, TPM1, YWHAE, MYH7, ACTC1 and TNNT2 are associated with LVNC. Sequencing of individuals using family-based design is a powerful approach for hereditary disease. In this study, we used whole-exome sequencing to screen potentially novel causal mutations in a Chinese Han family with LVNC. DNA from 3 individuals belonging to the same family was extracted and sequenced based on standard whole-exome sequencing protocol. The exome sequence data was analyzed using BWA, PICARD and Genome Analysis Toolkit (GATK v2.8). Non-silent single nucleotide variants (SNVs) were further selected if they exist in both LVNC patients and not in the health control. A web-based software Snv Prioritization via the INtegration of Genomic data (SPRING), was used to prioritize the causal SNV by calculating a q-value which indicates the statistical significance that a variant is causative for a query disease. From the LVNC family in which the mother and son were affected, a novel single nucleotide variant c.C1492G in exon 15 of MYH7 was identified probably to be the causal SNV of the family with P-value of 3.45E-05 and q-value of 4.65E-03 by SPRING. The SNV was predicted as deleterious in SIFT, PolyPhe2 and MutatioTaster database. Another 12 SNVs were also identified with P-value less than 0.05 by SPRING. A novel genetic variant in the coding regions of MYH7 gene was identified in a Chinese LVNC-family. The results support the previous evidence that MYH7 is a pathogenic gene for LVNC."	"Mechanistic heterogeneity in contractile properties of α-tropomyosin (TPM1) mutants associated with inherited cardiomyopathies. The most frequent known causes of primary cardiomyopathies are mutations in the genes encoding sarcomeric proteins. Among those are 30 single-residue mutations in TPM1, the gene encoding α-tropomyosin. We examined seven mutant tropomyosins, E62Q, D84N, I172T, L185R, S215L, D230N, and M281T, that were chosen based on their clinical severity and locations along the molecule. The goal of our study was to determine how the biochemical characteristics of each of these mutant proteins are altered, which in turn could provide a structural rationale for treatment of the cardiomyopathies they produce. Measurements of Ca(2+) sensitivity of human β-cardiac myosin ATPase activity are consistent with the hypothesis that hypertrophic cardiomyopathies are hypersensitive to Ca(2+) activation, and dilated cardiomyopathies are hyposensitive. We also report correlations between ATPase activity at maximum Ca(2+) concentrations and conformational changes in TnC measured using a fluorescent probe, which provide evidence that different substitutions perturb the structure of the regulatory complex in different ways. Moreover, we observed changes in protein stability and protein-protein interactions in these mutants. Our results suggest multiple mechanistic pathways to hypertrophic and dilated cardiomyopathies. Finally, we examined a computationally designed mutant, E181K, that is hypersensitive, confirming predictions derived from in silico structural analysis. "	"Genotype-Phenotype Correlations in Apical Variant Hypertrophic Cardiomyopathy. Hypertrophic cardiomyopathy is underscored by profound phenotypic and genotypic heterogeneity. Echocardiographically, hypertrophic cardiomyopathy can be categorized into four morphological subtypes: reverse curve, sigmoidal, neutral contour, and apical variant. Previous studies indicate that reverse curve hypertrophic cardiomyopathy is the strongest predictor of a positive genetic test. Little is known about the spectrum and prevalence of mutations and genotype-phenotype correlations in apical hypertrophic cardiomyopathy. Between 1999 and 2007, 1053 patients with the diagnosis of hypertrophic cardiomyopathy (60% male, age at diagnosis 44.4 ± 19 years) underwent sarcomeric genetic testing. Blinded to the genetic test results, each echocardiogram was scored for septal morphology and phenotyping was performed using the patient's medical record. Subset analysis was performed to elucidate the genotype, phenotype, and outcome of apical hypertrophic cardiomyopathy. Overall, 71 patients (7%) had apical hypertrophic cardiomyopathy on echocardiography (63% male, mean age 47.8 ± 15 years, mean left ventricular wall thickness 19.8 ± 6 mm). Left ventricular outflow tract obstruction was uncommon (seven patients; 10%). Eighteen patients (25%) had a positive genetic test, with the majority of mutations found in MYBPC3 (six; 35%) and MYH7 (six; 35%). Follow-up was available on 68 patients (96%) with a median age of 57.3 years (range 19.3-82 years). Mean follow-up was 5.5 years (range 0.1-18.2 years). There was no statistical difference between the occurrence rates of adverse events between genotype-positive and genotype-negative groups. In this largest cohort of patients with genetic testing for hypertrophic cardiomyopathy, &lt;10% exhibited apical disease. This least common subtype was associated with a negative genetic test result 75% of the time. In contrast to prior publications suggesting a predilection for ACTC1/TPM1 mutations in patients with apical hypertrophic cardiomyopathy, the two most common genotypes (MYBPC3-HCM and MYH7-HCM) remained most common among patients who had a positive genetic test."	"Mutation analysis of the main hypertrophic cardiomyopathy genes using multiplex amplification and semiconductor next-generation sequencing. Mutations in at least 30 genes have been linked to hypertrophic cardiomyopathy (HCM). Due to the large size of the main HCM genes, Sanger sequencing is labor intensive and expensive. The purpose was to develop a next-generation sequencing (NGS) procedure for the main HCM genes. METHODS AND RESULTS: Multiplex amplification of the coding exons of MYH7,MYBPC3,TNNT2,TNNI3,ACTC1,TNNC1,MYL2,MYL3, and TPM1 was designated, followed by NGS with the Ion Torrent PGM (Life Technologies). A total of 8 pools containing DNA from HCM patients were sequenced in a 2-step approach. First, a total of 60 patients (validation cohort) underwent both PGM and Sanger sequencing for the 9 genes. No false-negative variants were found on NGS (100% sensitivity), and a specificity of 97% and 80% was achieved for single-nucleotide and insertion/deletion variants, respectively. Second, the PGM was used to search for mutations in a total of 76 cases not previously studied (discovery cohort). A total of 19 putative mutations were identified in the discovery pools, which were confirmed and assigned to specific patients on Sanger sequencing. An NGS procedure has been developed for the main sarcomeric genes that would facilitate the screening of large cohorts of patients. In addition, this procedure would facilitate the uncovering of rare gene variants on a population scale."	"Ablation of plasma membrane Ca(2+)-ATPase isoform 4 prevents development of hypertrophy in a model of hypertrophic cardiomyopathy. The mechanisms linking the expression of sarcomeric mutant proteins to the development of pathological hypertrophy in hypertrophic cardiomyopathy (HCM) remain poorly understood. We investigated the role of the plasma membrane Ca(2+)-ATPase PMCA4 in the HCM phenotype using a transgenic model that expresses mutant (Glu180Gly) α-tropomyosin (Tm180) in heart. Immunoblot analysis revealed that cardiac PMCA4 expression was upregulated early in Tm180 disease pathogenesis. This was accompanied by an increase in levels of the L-type Ca(2+)-channel, which is implicated in pathological hypertrophy. When Tm180 mice were crossed with a PMCA4-null line, loss of PMCA4 caused the abrogation of hypertrophy in Tm180/PMCA4-null double mutant mice. RT-PCR analysis of Tm180/PMCA4-null hearts revealed blunting of the fetal program and reversion of pro-fibrotic Col1a1 and Col3a1 gene expression to wild-type levels. This was accompanied by evidence of reduced L-type Ca(2+)-channel expression, and diminished calcineurin activity. Expression of the metabolic substrate transporters glucose transporter 4 and carnitine palmitoyltransferase 1b was preserved and Tm180-related changes in mRNA levels of various contractile stress-related proteins including the cardiac ankyrin protein CARP and the N2B isoform of titin were reversed in Tm180/PMCA4-null hearts. cGMP levels were increased and phosphorylation of vasodilator-stimulated phosphoprotein was elevated in Tm180/PMCA4-null hearts. These changes were associated with a sharp reduction in left ventricular end-diastolic pressure in Tm180/PMCA4-null hearts, which occurred despite persistence of Tm180-related impairment of relaxation dynamics. These results reveal a novel and specific role for PMCA4 in the Tm180 hypertrophic phenotype, with the &quot;protective&quot; effects of PMCA4 deficiency encompassing multiple determinants of HCM-related hypertrophy. "	"A platelet protein biochip rapidly detects an Alzheimer's disease-specific phenotype. Alzheimer's disease (AD), a multifactorial neurodegenerative condition caused by genetic and environmental factors, is diagnosed using neuropsychological tests and brain imaging; molecular diagnostics are not routinely applied. Studies have identified AD-specific cerebrospinal fluid (CSF) biomarkers but sample collection requires invasive lumbar puncture. To identify AD-modulated proteins in easily accessible blood platelets, which share biochemical signatures with neurons, we compared platelet lysates from 62 AD, 24 amnestic mild cognitive impairment (aMCI), 13 vascular dementia (VaD), and 12 Parkinson's disease (PD) patients with those of 112 matched controls by fluorescence two-dimensional differential gel electrophoresis in independent discovery and verification sets. The optimal sum score of four mass spectrometry (MS)-identified proteins yielded a sensitivity of 94 % and a specificity of 89 % (AUC = 0.969, 95 % CI = 0.944-0.994) to differentiate AD patients from healthy controls. To bridge the gap between bench and bedside, we developed a high-throughput multiplex protein biochip with great potential for routine AD screening. For convenience and speed of application, this array combines loading control-assisted protein quantification of monoamine oxidase B and tropomyosin 1 with protein-based genotyping for single nucleotide polymorphisms (SNPs) in the apolipoprotein E and glutathione S-transferase omega 1 genes. Based on minimally invasive blood drawing, this innovative protein biochip enables identification of AD patients with an accuracy of 92 % in a single analytical step in less than 4 h. "	"Translational control of tropomyosin expression in vertebrate hearts. The tropomyosin (TM) gene family produces a set of related TM proteins with important functions in striated and smooth muscle, and nonmuscle cells. In vertebrate striated muscle, the thin filament consists largely of actin, TM, the troponin (Tn) complex (Tn-I, Tn-C and Tn-T), and tropomodulin (Tmod) and is responsible for mediating Ca(2+) control of muscle contraction and relaxation. There are four known genes (designated as TPM1, TPM2, TPM3, and TPM4) for TM in vertebrates. The four TM genes generate a multitude of tissue- and developmental-specific isoforms through the use of different promoters, alternative mRNA splicing, different 3'-end mRNA processing and tissue-specific translational control. In this review, we have focused mainly on the regulation of TM expression in striated muscles, primarily in vertebrate hearts with special emphasis on translational control using mouse and Mexican axolotl animal models."	"Detection of mutations in symptomatic patients with hypertrophic cardiomyopathy in Taiwan. Hypertrophic cardiomyopathy (HCM) is a common genetic cardiac disorder associated with sudden death, heart failure, and stroke. The aim of the present study was to evaluate the prevalence and types of mutations in symptomatic patients with HCM in Taiwan. Thirty-eight HCM index patients (mean age 60±16 years) underwent systematic mutation screening of eight sarcomeric genes: β-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), troponin I (TNNI3), myosin ventricular regulatory light chain 2 (MYL2), myosin ventricular essential light chain 1 (MYL3), α-tropomyosin (TPM1), and cardiac α-actin (ACTC), using direct DNA sequencing. In silico programs predicted damaging amino acids. In the positive families, genotype-phenotype correlation studies were done. Overall, 13 mutations were identified in 13 index patients (34.2%). The three most frequently mutated genes were MYH7, MYBPC3, and TNNT2. One patient carried double mutations. Five mutations (MYH7 R147S; MYBPC3 R597Q; MYBPC3 W1007R; TNNI3 E124Q; MYL3 R63C) were novel; all were missense mutations. Analysis using in silico tools showed near consensus to classify these five novel mutations as pathological. Family pedigree analysis showed the presence of cosegregation in at least two affected members in each proband family, but incomplete penetrance in young family members with a positive genotype. We identified 13 HCM pedigrees, including 5 carrying novel mutations and 1 with a double mutation. The three most commonly mutated genes were MYH7, MYBPC3, and TNNT2. These results, together with genetic counseling, could lead to earlier diagnosis and better management of family members at risk of HCM."	"Comprehensive proteomic analysis of a Chinese 2-herb formula (Astragali Radix and Rehmanniae Radix) on mature endothelial cells. Endothelial cells are crucially involved in wound healing angiogenesis, restoring blood flow to wound tissues. Our previous study demonstrated that the Chinese 2-herb formula (NF3) possesses significant wound healing effect in diabetic foot ulcer rats with promising in vitro proangiogenic effects on human umbilical vein endothelial cells (HUVEC). Here, we present the comparative global proteome analysis of NF3-treated HUVEC in static or scratch conditions, screening the comprehensive molecular targets in governing the proangiogenic response in wound healing. Our results suggest plasminogen activator inhibitor-1, specifically down-regulated in static condition and Annexin A1 and Annexin A2, up-regulated in scratch condition, as principal proteins responsible for the proangiogenesis in wound healing. We also identified a panel of cytoskeleton regulatory proteins in static and scratch condition, mediating the migratory behavior of NF3-treated HUVEC. The key proteins in static state include myosin regulatory light polypeptide 9, SPAST, tropomyosin (TPM)2, and Vimentin while that in scratch state contained prelamin-A/C, TPM1, TPM2, and Vimentin. In addition, NF3 was shown to regulate transcription and translation, cell-cell interaction, and ROS defense in HUVEC. Proliferation and migration assays further confirmed the identified principal proteins plasminogen activator inhibitor-1 and Annexin A2 which are responsible for NF3-induced proangiogenesis of HUVEC in wound healing. This is the first study on the global proteome expression of NF3-treated HUVEC with the identification of the differences at the molecular level, between static and scratch conditions involved in wound healing angiogenesis."	"Significance of sarcomere gene mutations analysis in the end-stage phase of hypertrophic cardiomyopathy. End-stage hypertrophic cardiomyopathy (ES-HC) has an ominous prognosis. Whether genotype can influence ES-HC occurrence is unresolved. We assessed the spectrum and clinical correlates of HC-associated mutations in a large multicenter cohort with end-stage ES-HC. Sequencing analysis of 8 sarcomere genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, and ACTC1) and 2 metabolic genes (PRKAG2 and LAMP2) was performed in 156 ES-HC patients with left ventricular (LV) ejection fraction (EF) &lt;50%. A comparison among mutated and negative ES-HC patients and a reference cohort of 181 HC patients with preserved LVEF was performed. Overall, 131 mutations (36 novel) were identified in 104 ES-HC patients (67%) predominantly affecting MYH7 and MYBPC3 (80%). Complex genotypes with double or triple mutations were present in 13% compared with 5% of the reference cohort (p = 0.013). The distribution of mutations was otherwise indistinguishable in the 2 groups. Among ES-HC patients, those presenting at first evaluation before the age of 20 had a 30% prevalence of complex genotypes compared with 19% and 21% in the subgroups aged 20 to 59 and ≥60 years (p = 0.003). MYBPC3 mutation carriers with ES-HC were older than patients with MYH7, other single mutations, or multiple mutations (median 41 vs 16, 26, and 28 years, p ≤0.001). Outcome of ES-HC patients was severe irrespective of genotype. In conclusion, the ES phase of HC is associated with a variable genetic substrate, not distinguishable from that of patients with HC and preserved EF, except for a higher frequency of complex genotypes with double or triple mutations of sarcomere genes. "	"A novel arginine to tryptophan (R144W) mutation in troponin T (cTnT) gene in an indian multigenerational family with dilated cardiomyopathy (FDCM). Cardiomyopathy is a major cause of heart failure and sudden cardiac death; several mutations in sarcomeric protein genes have been associated with this disease. Our aim in the present study is to investigate the genetic variations in Troponin T (cTnT) gene and its association with dilated cardiomyopathy (DCM) in south-Indian patients. Analyses of all the exons and exon-intron boundaries of cTnT in 147 DCM and in 207 healthy controls had revealed a total of 15 SNPs and a 5 bp INDEL; of which, polymorphic SNPs were compared with the HapMap population data. Interestingly, a novel R144W mutation, that substitutes polar-neutral tryptophan for a highly conserved basic arginine in cTnT, altering the charge drastically, was identified in a DCM, with a family history of sudden-cardiac death (SCD). This mutation was found within the tropomyosin (TPM1) binding domain, and was evolutionarily conserved across species, therefore it is expected to have a significant impact on the structure and function of the protein. Family studies had revealed that the R144W is co-segregating with disease in the family as an autosomal dominant trait, but it was completely absent in 207 healthy controls and in 162 previously studied HCM patients. Further screening of the proband and three of his family members (positive for R144W mutant) with eight other genes β-MYH7, MYBPC3, TPM1, TNNI3, TTN, ACTC, MYL2 and MYL3, did not reveal any disease causing mutation, proposing the absence of compound heterozygosity. Therefore, we strongly suggest that the novel R144W unique/private mutant identified in this study is associated with FDCM. This is furthermore signifying the unique genetic architecture of Indian population. "	"Expression of sarcomeric tropomyosin in striated muscles in axolotl treated with shz-1, a small cardiogenic molecule. We evaluated the effect of shz-1, a cardiogenic molecule, on the expression of various tropomyosin (TM) isoforms in the Mexican axolotl (Ambystoma mexicanum) hearts. qRT-PCR data show a ~1.5-fold increase in cardiac transcripts of the Nkx2.5 gene, which plays a crucial role in cardiogenesis in vertebrates. Shz-1 augments the expression of transcripts of the total sarcomeric TPM1 (both TPM1α &amp; TPM1κ) and sarcomeric TPM4α. In order to understand the mechanism by which shz-1 augments the expression of sarcomeric TPM transcription in axolotl hearts, we transfected C2C12 cells with pGL3.axolotl. We transfected C2C12 cells with pGL3-axolotl TPM4 promoter constructs containing the firefly luciferase reporter gene. The transfected C2C12 cells were grown in the absence or presence of shz-1 (5 μM). Subsequently, we determined the firefly luciferase activity in the extracts of transfected cells. The results suggest that shz-1 activates the axolotl TPM4 promoter-driven ectopic expression in C2C12 cells. Also, we transfected C2C12 cells with a pGL3.1 vector containing the promoter of the mouse skeletal muscle troponin-I and observed a similar increase in the luciferase activity in shz-1-treated cells. We conclude that shz-1 activates the promoters of a variety of genes including axolotl TPM4. We have quantified the expression of the total sarcomeric TPM1 and observed a 1.5-fold increase in treated cells. Western blot analyses with CH1 monoclonal antibody specific for sarcomeric isoforms show that shz-1 does not increase the expression of TM protein in axolotl hearts, whereas it does in C2C12 cells. These findings support our hypothesis that cardiac TM expression in axolotl undergoes translational control. "	"Exosome uptake through clathrin-mediated endocytosis and macropinocytosis and mediating miR-21 delivery. Exosomes are nanoscale membrane vesicles secreted from many types of cells. Carrying functional molecules, exosomes transfer information between cells and mediate many physiological and pathological processes. In this report, utilizing selective inhibitors, molecular tools, and specific endocytosis markers, the cellular uptake of PC12 cell-derived exosomes was imaged by high-throughput microscopy and statistically analyzed. It was found that the uptake was through clathrin-mediated endocytosis and macropinocytosis. Furthermore, PC12 cell-derived exosomes can enter and deliver microRNAs (miRNAs) into bone marrow-derived mesenchymal stromal cells (BMSCs), and decrease the expression level of transforming growth factor β receptor II (TGFβRII) and tropomyosin-1 (TPM1) through miR-21. These results show the pathway of exosome internalization and demonstrate that tumor cell-derived exosomes regulate target gene expression in normal cells. "	"A new common mutation in the cardiac beta-myosin heavy chain gene in Finnish patients with hypertrophic cardiomyopathy. In the nationwide FinHCM Study including 306 Finnish patients with hypertrophic cardiomyopathy (HCM), we have previously identified two founder mutations in the alpha-tropomyosin (TPM1-D175N) and myosin-binding protein C (MYBPC3-Q1061X) genes, accounting for 18% of all cases. Objective. To screen additional mutations, previously identified in eastern Finnish cohorts with HCM, in the FinHCM Study population. Ten mutations in the beta-myosin heavy chain gene (MYH7), TPM1, and MYBPC3 were screened. MYH7-R1053Q was found in 17 of 306 patients (5.6%). No carriers of MYH7-R719W or N696S were found. A novel TPM1-D175G mutation was found in a single patient. MYBPC3 mutations were found in 14 patients: IVS5-2A-C in two, IVS14-13G-A in two, K811del in six, and A851insT in four patients. Altogether, a HCM-causing mutation was identified in 32 patients, accounting for 10.5% of all cases. In addition, two MYBPC3 variants R326Q and V896M with uncertain pathogenicity were found in eight and in 10 patients, respectively. Combining the present findings with our previous results, a causative mutation was identified in 28% of the FinHCM cohort. MYH7-R1053Q was the third most common mutation, and should be screened in all new cases of HCM in Finland."	"Expression of TPM1κ, a Novel Sarcomeric Isoform of the TPM1 Gene, in Mouse Heart and Skeletal Muscle. We have investigated the expression of TPM1 α and TPM1 κ in mouse striated muscles. TPM1 α and TMP1 κ were amplified from the cDNA of mouse heart by using conventional RT-PCR. We have cloned the PCR amplified DNA and determined the nucleotide sequences. Deduced amino acid sequences show that there are three amino acid changes in mouse exon 2a when compared with the human TPM1 κ . However, the deduced amino acid sequences of human TPM1 α and mouse TPM1 α are identical. Conventional RT-PCR data as well as qRT-PCR data, calculating both absolute copy number and relative expression, revealed that the expression of TPM1 κ is significantly lower compared to TPM1 α in both mouse heart and skeletal muscle. It was also found that the expression level of TPM1 κ transcripts in mouse heart is higher than it is in skeletal muscle. To the best of our knowledge, this is the first report of the expression of TPM1 κ in mammalian skeletal muscle. "	"A low prevalence of sarcomeric gene variants in a Chinese cohort with left ventricular non-compaction. Left ventricular non-compaction (LVNC) is genetically heterogeneous. It has been previously shown that LVNC is associated with defects in TAZ, DNTA, LDB3, YWHAE, MIB1, PRDM16, and sarcomeric genes. This study was aimed to investigate sarcomeric gene mutations in a Chinese population with LVNC. From 2004 to 2010, 57 unrelated Chinese patients with LVNC were recruited at Fuwai Hospital, Beijing, China. Detailed clinical evaluation was performed on the probands and available family members. DNA samples isolated from the peripheral blood of the index cases were screened for 10 sarcomeric genes, including MYH7, MYBPC3, MYL2, MYL3, MYH6, TNNC1, TNNT2, TNNI3, TPM1, and ACTC1. Seven heterozygous mutations (6 missense and 1 deletion) were identified in 7 (12 %) of the patients. These mutations were distributed among 4 genes, 4 in MYH7, and 1 each in ACTC1, TNNT2, and TPM1. Six of the mutations were novel and another one was reported previously. All mutations affected conserved amino acid residues and were predicted to alter the structure of the proteins by in silico analysis. No significant difference was observed between mutation-positive and mutation-negative patients with respect to clinical characteristics at baseline and mortality during follow-up. In conclusion, our study indicates that sarcomeric gene mutations are uncommon causes of LVNC in Chinese patients and genetic background of the disease may be divergent among the different races."	"Tropomyosin is required for cardiac morphogenesis, myofibril assembly, and formation of adherens junctions in the developing mouse embryo. We explored a function for tropomyosin (TM) in mammalian myofibril assembly and cardiac development by analyzing a deletion in the mouse TPM1 gene targeting αTM1, the major striated muscle TM isoform. Mice lacking αTM1 are embryonic lethal at E9.5 with enlarged, misshapen, and non-beating hearts characterized by an abnormally thin myocardium and reduced trabeculae. αTM1-deficient cardiomyocytes do not assemble striated myofibrils, instead displaying aberrant non-striated F-actin fibrils with α-actinin puncta dispersed irregularly along their lengths. αTM1's binding partner, tropomodulin1 (Tmod1), is also disorganized, and both myomesin-containing thick filaments as well as titin Z1Z2 fail to assemble in a striated pattern. Adherens junctions are reduced in size in αTM1-deficient cardiomyocytes, α-actinin/F-actin adherens belts fail to assemble at apical cell-cell contacts, and cell contours are highly irregular, resulting in abnormal cell shapes and a highly folded cardiac surface. In addition, Tmod1-deficient cardiomyocytes exhibit failure of α-actinin/F-actin adherens belt assembly. Absence of αTM1 resulting in unstable F-actin may preclude sarcomere formation and/or lead to degeneration of partially assembled sarcomeres due to unregulated actomyosin interactions. Our data also identify a novel αTM1/Tmod1-based pathway stabilizing F-actin at cell-cell junctions, which may be required for maintenance of cell shapes during embryonic cardiac morphogenesis."	"Dissecting domains necessary for activation and repression of splicing by Muscleblind-like protein 1. Alternative splicing contributes to the diversity of the proteome, and provides the cell with an important additional layer of regulation of gene expression. Among the many RNA binding proteins that regulate alternative splicing pathways are the Muscleblind-like (MBNL) proteins. MBNL proteins bind YGCY motifs in RNA via four CCCH zinc fingers arranged in two tandem arrays, and play a crucial role in the transition from embryonic to adult muscle splicing patterns, deregulation of which leads to Myotonic Dystrophy. Like many other RNA binding proteins, MBNL proteins can act as both activators or repressors of different splicing events. We used targeted point mutations to interfere with the RNA binding of MBNL1 zinc fingers individually and in combination. The effects of the mutations were tested in assays for splicing repression and activation, including overexpression, complementation of siRNA-mediated knockdown, and artificial tethering using MS2 coat protein. Mutations were tested in the context of both full length MBNL1 as well as a series of truncation mutants. Individual mutations within full length MBNL1 had little effect, but mutations in ZF1 and 2 combined were more detrimental than those in ZF 3 and 4, upon splicing activation, repression and RNA binding. Activation and repression both required linker sequences between ZF2 and 3, but activation was more sensitive to loss of linker sequences. Our results highlight the importance of RNA binding by MBNL ZF domains 1 and 2 for splicing regulatory activity, even when the protein is artificially recruited to its regulatory location on target RNAs. However, RNA binding is not sufficient for activity; additional regions between ZF 2 and 3 are also essential. Activation and repression show differential sensitivity to truncation of this linker region, suggesting interactions with different sets of cofactors for the two types of activity."	"Tropomyosin-1 protects endothelial cell-cell junctions against cigarette smoke extract through F-actin stabilization in EA.hy926 cell line. The aim of the study was to estimate the effect of cigarette smoke extract (CSE) on EA.hy926 endothelial cells in culture in the context of maintenance of cell-cell junctions through the structural stabilization of the actin cytoskeleton. In the present study, F-actin was stabilized by the overexpression of tropomyosin-1, which is known to stabilize actin filaments in muscle and non-muscle cells. Our study showed that the stabilization of F-actin significantly increased the survival of cells treated with 25% CSE. In addition, after stabilization of F-actin the migratory potential of EA.hy926 cells subjected to CSE treatment was increased. Our results also showed increased fluorescence intensity of alpha- and beta-catenin after CSE treatment in cells which had stabilized F-actin. Analysis of fluorescence intensity of Zonula occludens-1 did not reveal any significant differences when EA.hy926 cells overexpressing tropomyosin-1 were compared with those lacking overexpression. It would appear that overexpression of tropomyosin-1 preserved the structure of actin filaments in the cells treated with CSE. In conclusion, the present study demonstrates that stabilization of F-actin protects EA.hy926 cells against CSE-induced loss of both adherens and tight junctions. The data presented in this study suggest that overexpression of tropomyosin-1 stabilizes the organizational structure of actin filaments and helps preserve the endothelial barrier function under conditions of strong oxidative stress."	"Transmission of stability information through the N-domain of tropomyosin is interrupted by a stabilizing mutation (A109L) in the hydrophobic core of the stability control region (residues 97-118). Tropomyosin (Tm) is an actin-binding, thin filament, two-stranded α-helical coiled-coil critical for muscle contraction and cytoskeletal function. We made the first identification of a stability control region (SCR), residues 97-118, in the Tm sequence that controls overall protein stability but is not required for folding. We also showed that the individual α-helical strands of the coiled-coil are stabilized by Leu-110, whereas the hydrophobic core is destabilized in the SCR by Ala residues at three consecutive d positions. Our hypothesis is that the stabilization of the individual α-helices provides an optimum stability and allows functionally beneficial dynamic motion between the α-helices that is critical for the transmission of stabilizing information along the coiled-coil from the SCR. We prepared three recombinant (rat) Tm(1-131) proteins, including the wild type sequence, a destabilizing mutation L110A, and a stabilizing mutation A109L. These proteins were evaluated by circular dichroism (CD) and differential scanning calorimetry. The single mutation L110A destabilizes the entire Tm(1-131) molecule, showing that the effect of this mutation is transmitted 165 Å along the coiled-coil in the N-terminal direction. The single mutation A109L prevents the SCR from transmitting stabilizing information and separates the coiled-coil into two domains, one that is ∼9 °C more stable than wild type and one that is ∼16 °C less stable. We know of no other example of the substitution of a stabilizing Leu residue in a coiled-coil hydrophobic core position d that causes this dramatic effect. We demonstrate the importance of the SCR in controlling and transmitting the stability signal along this rodlike molecule. "	"Yeast RAD2, a homolog of human XPG, plays a key role in the regulation of the cell cycle and actin dynamics. Mutations in the human XPG gene cause Cockayne syndrome (CS) and xeroderma pigmentosum (XP). Transcription defects have been suggested as the fundamental cause of CS; however, defining CS as a transcription syndrome is inconclusive. In particular, the function of XPG in transcription has not been clearly demonstrated. Here, we provide evidence for the involvement of RAD2, the Saccharomyces cerevisiae counterpart of XPG, in cell cycle regulation and efficient actin assembly following ultraviolet irradiation. RAD2 C-terminal deletion, which resembles the XPG mutation found in XPG/CS cells, caused cell growth arrest, the cell cycle stalling, a defective α-factor response, shortened lifespan, cell polarity defect, and misregulated actin-dynamics after DNA damage. Overexpression of the C-terminal 65 amino acids of Rad2p was sufficient to induce hyper-cell polarization. In addition, RAD2 genetically interacts with TPM1 during cell polarization. These results provide insights into the role of RAD2 in post-UV irradiation cell cycle regulation and actin assembly, which may be an underlying cause of XPG/CS. "	"Diagnostic and prognostic value of circulating miR-21 for cancer: a systematic review and meta-analysis. MicroRNAs (miRNAs) have been reported to be aberrantly expressed in patients with cancer. Many studies have shown that circulating miRNAs could play potential roles as diagnostic and prognostic biomarkers of cancers. The aim of this meta-analysis is to summarize the role of circulating miR-21 as a biomarker in patients with a variety of carcinomas. Eligible studies were identified and assessed for quality through multiple search strategies. For diagnostic meta-analysis, the sensitivity, specificity, and other measures of miR-21 in the diagnosis of cancer were pooled using bivariate random-effects approach models. For prognostic meta-analysis, pooled hazard ratios (HRs) of circulating miR-21 for survival were calculated. A total of 36 studies dealing with various carcinomas were included for the systemic review. Among them, 23 studies were finally enrolled in the global meta-analysis (17 studies for diagnosis and 6 studies for prognosis). For diagnostic meta-analysis, the overall pooled results for sensitivity, specificity, positive likelihood ratio (LRP), negative likelihood ratios (LRN) and diagnostic odds ratio (DOR) were 75.7% (95% CI: 67.1%-82.6%), 79.3% (95% CI: 74.2%-83.5%), 3.65 (95% CI: 2.83-4.70), 0.31 (95% CI: 0.22-0.43), and 11.88 (95% CI: 6.99-20.19), respectively. For prognostic meta-analysis, the pooled HR of higher miR-21 expression in circulation was 2.37 (95% CI: 1.83-3.06, P&lt;0.001), which could significantly predict poorer survival in general carcinomas. Importantly, subgroup analysis suggested that higher expression of miR-21 correlated with worse overall survival (OS) significantly in carcinomas of digestion system (HR, 5.77 [95% CI: 2.65-12.52]). Our findings suggest that circulating miR-21 may not suitable to be a diagnostic biomarker, but it has a prognostic value in patients with cancer."	"Helicobacter pylori infection combined with DENA revealed altered expression of p53 and 14-3-3 isoforms in Gulo-/- mice. Unlike most other mammals, human bodies do not have the ability to synthesize vitamin C inside of their own bodies. Therefore, humans must obtain vitamin C through daily diet. Gulo(-/-) mice strain is known with deficiency, in which vitamin C intake can be controlled by diet like human, and would be valuable for investigating the molecular mechanism of various diseases. In the present study, we established Gulo(-/-) mice model and investigated the differentially expressed proteins in stomach tissue of Gulo(-)(/-) mice after Helicobacter pylori-infected, and followed by DENA, using immunohistochemistry and proteomic approach. The results of immunohistochemistry analysis of stomach tissue showed that the tumor suppressor, p53 protein, expression was significantly decreased (p&lt;0.05) but not messenger RNA (mRNA) transcriptional level, and 14-3-3 ε, 14-3-3 δ, Ki-67 and cleaved caspase 3 expressions were significantly increased (p&lt;0.05) by H. Pylori infection, and followed by DENA treatment in Gulo(-/-) mice. Moreover, knockdown of 14-3-3 isoforms (14-3-3 ε, 14-3-3 σ, 14-3-3 ζ and 14-3-3 η) were significantly increased sub-G1 phase (characteristics of apoptosis) in AGS cells and, phenotypic changes like cell shrinkage, density and cleaved nuclei were also observed. Proteome analyses showed that 14-3-3 σ, 14-3-3 η, and tropomyosin alpha-1 chain were down-regulated, and Hspd1 protein and HSC70 were up-regulated after H. Pylori-infection, and followed by DENA. The combined results of immunohistochemistry and proteomic analysis suggest that H. pylori altered the p53 and 14-3-3 isoforms expression and DENA further enhanced the H. pylori effect, which might be involved in carcinogenesis and metastasis of gastric cancer on Gulo(-/-) mice."	"Alpha-tropomyosin mutations in inherited cardiomyopathies. The inherited cardiac diseases hypertrophic cardiomyopathy (HCM) and dilated cardiomyopathy (DCM) can both be caused by missense mutations in the TPM1 gene which encodes the thin filament regulatory protein α-tropomyosin. Different mutations are responsible for either HCM or DCM, suggesting that distinct changes in tropomyosin structure and function can lead to the different diseases. Various biophysical and physiological approaches have been used to investigate the structure-function effects of the mutations, and animal models developed. The reported effects of the mutations include changes to the secondary structure of tropomyosin, its binding to actin and its position on the thin filament, and alterations to actin-myosin interactions and myofilament Ca(2+) sensitivity. The latter changes have been found to be particularly consistent, with HCM mutations increasing Ca(2+) sensitivity and DCM mutations in general decreasing this parameter and uncoupling the effect of troponin phosphorylation upon Ca(2+) responsiveness. As well as impacting on contractility, these changes are likely to alter intracellular Ca(2+) handling and signaling, and a combination of these alterations may provide the trigger for disease remodeling. "	"From the Cover: Neutralization of terminal differentiation in gliomagenesis. An immature state of cellular differentiation--characterized by stem cell-like tendencies and impaired differentiation--is a hallmark of cancer. Using glioblastoma multiforme (GBM) as a model system, we sought to determine whether molecular determinants that drive cells toward terminal differentiation are also genetically targeted in carcinogenesis and whether neutralizing such genes also plays an active role to reinforce the impaired differentiation state and promote malignancy. To that end, we screened 71 genes with known roles in promoting nervous system development that also sustain copy number loss in GBM through antineoplastic assay and identified A2BP1 (ataxin 2 binding protein 1, Rbfox1), an RNA-binding and splicing regulator that is deleted in 10% of GBM cases. Integrated in silico analysis of GBM profiles to elucidate the A2BP1 pathway and its role in glioma identified myelin transcription factor 1-like (Myt1L) as a direct transcriptional regulator of A2BP1. Reintroduction of A2BP1 or Myt1L in GBM cell lines and glioma stem cells profoundly inhibited tumorigenesis in multiple assays, and conversely, shRNA-mediated knockdown of A2BP1 or Myt1L in premalignant neural stem cells compromised neuronal lineage differentiation and promoted orthotopic tumor formation. On the mechanistic level, with the top-represented downstream target TPM1 as an illustrative example, we demonstrated that, among its multiple functions, A2BP1 serves to regulate TPM1's alternative splicing to promote cytoskeletal organization and terminal differentiation and suppress malignancy. Thus, in addition to the activation of self-renewal pathways, the neutralization of genetic programs that drive cells toward terminal differentiation may also promote immature and highly plastic developmental states that contribute to the aggressive malignant properties of GBM."	"Differential gene expression profiling of mouse uterine luminal epithelium during periimplantation. Uterine luminal epithelium (LE) is critical for establishing uterine receptivity. Microarray analysis of gestation day 3.5 (D3.5, preimplantation) and D4.5 (postimplantation) LE from natural pregnant mice identified 382 upregulated and 245 downregulated genes in the D4.5 LE. Gene Ontology annotation grouped 186 upregulated and 103 downregulated genes into 22 and 15 enriched subcategories, respectively, in regulating DNA-dependent transcription, metabolism, cell morphology, ion transport, immune response, apoptosis, signal transduction, and so on. Signaling pathway analysis revealed 99 genes in 21 significantly changed signaling pathways, with 14 of these pathways involved in metabolism. In situ hybridization confirmed the temporal expression of 12 previously uncharacterized genes, including Atp6v0a4, Atp6v0d2, F3, Ggh, Tmprss11d, Tmprss13, Anpep, Fxyd4, Naip5, Npl, Nudt19, and Tpm1 in the periimplantation uterus. This study provides a comprehensive picture of the differentially expressed genes in the periimplantation LE to help understand the molecular mechanism of LE transformation upon establishment of uterine receptivity. "	"Protein isoform-specific validation defines multiple chloride intracellular channel and tropomyosin isoforms as serological biomarkers of ovarian cancer. New serological biomarkers for early detection and clinical management of ovarian cancer are urgently needed, and many candidates have been reported. A major challenge frequently encountered when validating candidates in patients is establishing quantitative assays that distinguish between highly homologous proteins. The current study tested whether multiple members of two recently discovered ovarian cancer biomarker protein families, chloride intracellular channel (CLIC) proteins and tropomyosins (TPM), were detectable in ovarian cancer patient sera. A multiplexed, label-free multiple reaction monitoring (MRM) assay was established to target peptides specific to all detected CLIC and TPM family members, and their serum levels were quantitated for ovarian cancer patients and non-cancer controls. In addition to CLIC1 and TPM1, which were the proteins initially discovered in a xenograft mouse model, CLIC4, TPM2, TPM3, and TPM4 were present in ovarian cancer patient sera at significantly elevated levels compared with controls. Some of the additional biomarkers identified in this homolog-centric verification and validation approach may be superior to the previously identified biomarkers at discriminating between ovarian cancer and non-cancer patients. This demonstrates the importance of considering all potential protein homologs and using quantitative assays for cancer biomarker validation with well-defined isoform specificity. This manuscript addresses the importance of distinguishing between protein homologs and isoforms when identifying and validating cancer biomarkers in plasma or serum. Specifically, it describes the use of targeted in-depth LC-MS/MS analysis to determine the members of two protein families, chloride intracellular channel (CLIC) and tropomyosin (TPM) proteins that are detectable in sera of ovarian cancer patients. It then establishes a multiplexed isoform- and homology-specific MRM assay to quantify all observed gene products in these two protein families as well as many of the closely related tropomyosin isoforms. Using this assay, levels of all detected CLICs and TPMs were quantified in ovarian cancer patient and control subject sera. These results demonstrate that in addition to the previously known CLIC1, multiple tropomyosins and CLIC4 are promising new ovarian cancer biomarkers. Based on these initial validation studies, these new ovarian cancer biomarkers appear to be superior to most previously known ovarian cancer biomarkers."	"Somatic MYH7, MYBPC3, TPM1, TNNT2 and TNNI3 mutations in sporadic hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a clinically heterogeneous genetic heart disease characterized by left ventricular hypertrophy in the absence of another disease that could explain the wall thickening. Elucidation of the genetic basis of HCM lead to the identification of several genes encoding sarcomeric proteins, such as MYH7, MYBPC3, TPM1, TNNT2, and TNNI3. Sarcomeric genes are mutated in approximately 40% of HCM patients and a possible explanation for the incomplete yield of mutation-positive HCM may be somatic mutations. We studied 104 unrelated patients with non-familial HCM. Patients underwent clinical evaluation and mutation screening of 5 genes implicated in HCM (MYH7, MYBPC3, TPM1, TNNT2, and TNNI3) in genomic DNA isolated from resected cardiac tissue; 41 of 104 were found to carry a mutation, but as several patients carried the same mutations, the total amount of different mutations was 37; 20 of these mutations have been previously described, and pathogenicity has been assessed. To determine the effect of the 17 new mutations an in silico assay was performed and it predicted that 4 variants were damaging mutations. All identified variants were also seen in the DNA isolated from the corresponding blood, which demonstrated the absence of somatic mutations. Somatic mutations in MYH7, MYBPC3, TPM1, TNNT2, and TNNI3 do not represent an important etiologic pathway in HCM."	"Diggin' on u(biquitin): a novel method for the identification of physiological E3 ubiquitin ligase substrates. The ubiquitin-proteasome system (UPS) plays a central role in maintaining protein homeostasis, emphasized by a myriad of diseases that are associated with altered UPS function such as cancer, muscle-wasting, and neurodegeneration. Protein ubiquitination plays a central role in both the promotion of proteasomal degradation as well as cellular signaling through regulation of the stability of transcription factors and other signaling molecules. Substrate-specificity is a critical regulatory step of ubiquitination and is mediated by ubiquitin ligases. Recent studies implicate ubiquitin ligases in multiple models of cardiac diseases such as cardiac hypertrophy, atrophy, and ischemia/reperfusion injury, both in a cardioprotective and maladaptive role. Therefore, identifying physiological substrates of cardiac ubiquitin ligases provides both mechanistic insights into heart disease as well as possible therapeutic targets. Current methods identifying substrates for ubiquitin ligases rely heavily upon non-physiologic in vitro methods, impeding the unbiased discovery of physiological substrates in relevant model systems. Here we describe a novel method for identifying ubiquitin ligase substrates utilizing tandem ubiquitin binding entities technology, two-dimensional differential in gel electrophoresis, and mass spectrometry, validated by the identification of both known and novel physiological substrates of the ubiquitin ligase MuRF1 in primary cardiomyocytes. This method can be applied to any ubiquitin ligase, both in normal and disease model systems, in order to identify relevant physiological substrates under various biological conditions, opening the door to a clearer mechanistic understanding of ubiquitin ligase function and broadening their potential as therapeutic targets. "	"Mutations in MYH7 reduce the force generating capacity of sarcomeres in human familial hypertrophic cardiomyopathy. Familial hypertrophic cardiomyopathy (HCM), frequently caused by sarcomeric gene mutations, is characterized by cellular dysfunction and asymmetric left-ventricular (LV) hypertrophy. We studied whether cellular dysfunction is due to an intrinsic sarcomere defect or cardiomyocyte remodelling. Cardiac samples from 43 sarcomere mutation-positive patients (HCMmut: mutations in thick (MYBPC3, MYH7) and thin (TPM1, TNNI3, TNNT2) myofilament genes) were compared with 14 sarcomere mutation-negative patients (HCMsmn), eight patients with secondary LV hypertrophy due to aortic stenosis (LVHao) and 13 donors. Force measurements in single membrane-permeabilized cardiomyocytes revealed significantly lower maximal force generating capacity (Fmax) in HCMmut (21 ± 1 kN/m²) and HCMsmn (26 ± 3 kN/m²) compared with donor (36 ± 2 kN/m²). Cardiomyocyte remodelling was more severe in HCMmut compared with HCMsmn based on significantly lower myofibril density (49 ± 2 vs. 63 ± 5%) and significantly higher cardiomyocyte area (915 ± 15 vs. 612 ± 11 μm²). Low Fmax in MYBPC3mut, TNNI3mut, HCMsmn, and LVHao was normalized to donor values after correction for myofibril density. However, Fmax was significantly lower in MYH7mut, TPM1mut, and TNNT2mut even after correction for myofibril density. In accordance, measurements in single myofibrils showed very low Fmax in MYH7mut, TPM1mut, and TNNT2mut compared with donor (respectively, 73 ± 3, 70 ± 7, 83 ± 6, and 113 ± 5 kN/m²). In addition, force was lower in MYH7mut cardiomyocytes compared with MYBPC3mut, HCMsmn, and donor at submaximal [Ca²⁺]. Low cardiomyocyte Fmax in HCM patients is largely explained by hypertrophy and reduced myofibril density. MYH7 mutations reduce force generating capacity of sarcomeres at maximal and submaximal [Ca²⁺]. These hypocontractile sarcomeres may represent the primary abnormality in patients with MYH7 mutations."	"[Abnormal tropomyosin function in ATPase cycle in hypertrophic and dilated cardiomyopathies]. Pathogenesis of most myopathies including inherited hypertrophic (HCM) and dilated (DCM) cardiomyopathies is based on modification of structural state of contractile proteins induced by point mutations, such as mutations in alpha-tropomyosin (TM). To understand the mechanism of abnormal function of contractile system of muscle fiber due to Glu180Gly, Asp175 or Glu40Lys, Glu54Lys mutations in alpha-TM associated with HCM or DCM, we specifically labeled alpha-TM by fluorescence probe 5-IAF after Cys-190 and examined the position and mobility of the IAF-TM in the ATP hydrolysis cycle using polarized fluorescence technique. Analysis of the data suggested that the point mutations in alpha-TM associated with hypertrophic or dilated cardiomyopathy caused abnormal changes in the affinity ofTM to actin and in the position of this protein on the thin filaments in the ATPase cycle. Mutations in alpha-TM associated with HCM caused a shift of TM strands to the center of the thin filament and increased a range of tropomyosin motion and affinity of this protein to actin in the ATPase cycle. In contrast, mutations in alpha-TM associated with DCM shifted the protein to the periphery of the thin filament, reduced the amplitude of the TM movement and its affinity for actin. It is proposed that anomalous behavior of TM on the thin filaments in ATPase cycle may provoke the dysfunction of the cardiac muscle in patients with HCM and DCM."	"Effect of L-homocysteine on endothelial cell-cell junctions following F-actin stabilization through tropomyosin-1 overexpression. Since the identification of actin in non‑muscle cells, it has been suggested that the regulation of the mechanical behaviors of the actin cytoskeleton regulates cellular shape changes and the generation of forces during cell migration and division. The maintenance of cell shape and polarity are important in the formation of cell-cell junctions. The aim of the present study was to determine the effect of L‑homocysteine thiolactone hydrochloride on EA.hy926 endothelial cells in the context of the maintenance cell-cell junctions through the stabilization of filamentous actin cytoskeleton (F‑actin). The actin filaments were stabilized by the overexpression of tropomyosin-1, which has the ability to stabilize actin filaments in muscle and non-muscle cells. The stabilization of F-actin induced a significant decrease in the percentage of late apoptotic and necrotic cells following treatment with L-homocysteine. Moreover, the migratory potential of the endothelial cells was greater in the cells overexpressing tropomyosin-1 treated with L-homocysteine. Additionally, our results indicated that the stabilization of F-actin in the EA.hy926 cells significantly increased the expression of junctional β‑catenin, as compared to the cells not overexpressing tropomyosin‑1. Similarly, the fluorescence intensity of junctional α-catenin was also increased in the cells with stabilized F‑actin cytoskeleton. However, this increase was only slightly higher than that observed in the EA.hy926 cells not overexpressing tropomyosin-1. Furthermore, the analysis of Zonula occludens (ZO)‑1 relative fluorescence demonstrated a statistically significant decrease in the cell-cell junction areas among the cells with stabilized F-actin cytoskeleton in comparison to the cells not overexpressing tropomyosin-1. Our results indicate that the stabilization of F-actin does not affect the migratory potential of cells, and consequently protects the EA.hy926 cells against the L-homocysteine-induced decrease in cell mobility. Moreover, it is suggested that α‑catenin may participate in the suppression of actin polymerization in the area of cell-cell junctions. It can be hypothesized that the stabilization of F-actin strengthens endothelial adherens and tight junctions by increasing the number of cell-cell junctions due to the amplification of β-catenin and the ZO‑1 fluorescence signal. However, ZO-1 stabilizes the endothelial barrier function through the stabilization of F-actin and F-actin itself stabilizes the localization of ZO-1."	"MicroRNA-21 is overexpressed in renal cell carcinoma. To identify microRNAs (miRNAs) that are overexpressed in renal cell carcinoma (RCC) and characterize the functional role of miR-21. The miRNA expression profiles between RCC tissue and adjacent normal tissue were compared using microarray analysis. The differential expression of miR-21 was validated by real-time polymerase chain reaction (RT-PCR). 786-O RCC cells were transfected with miR-21 mimic, miR-21 inhibitor, or negative controls and cell proliferation, apoptosis and cell cycle were examined by MTT assay and flow cytometry. The expression of programmed cell death 4 (PDCD4) and tropomyosin 1 (TPM1) was detected by RT-PCR and Western blot analysis. Compared to adjacent normal tissue, 10 human miRNAs were significantly upregulated and 7 were downregulated in RCC tissue. RT-PCR confirmed that miR-21 was significantly overexpressed in RCC tissue. In vitro expression of miR-21 mimic promoted the growth of 786-O cells, whereas miR-21 inhibitor inhibited cell growth by inducing apoptosis and cell cycle arrest at S phase. Furthermore, miR-21 mimic or inhibitor significantly reduced or increased the expression of PDCD4 and TPM1. MiR-21 is overexpressed in RCC tissue and modulates the growth, apoptosis and cell cycle progression of RCC cells and regulates the expression of PDCD4 and TPM1."	"Familial dilated cardiomyopathy mutations uncouple troponin I phosphorylation from changes in myofibrillar Ca²⁺ sensitivity. The pure form of familial dilated cardiomyopathy (DCM) is mainly caused by mutations in genes encoding sarcomeric proteins. Previous measurements using recombinant proteins suggested that DCM mutations in thin filament proteins decreased myofibrillar Ca(2+) sensitivity, but exceptions were reported. We re-investigated the molecular mechanism of familial DCM using native proteins. We used the quantitative in vitro motility assay and native troponin and tropomyosin to study DCM mutations in troponin I, troponin T, and α-tropomyosin. Four mutations reduced myofilament Ca(2+) sensitivity, but one mutation (TPM1 E54K) did not alter Ca(2+) sensitivity and another (TPM1 D230N) increased Ca(2+) sensitivity. In thin filaments from normal human and mouse heart, protein kinase A (PKA) phosphorylation of troponin I caused a two- to three-fold decrease in myofibrillar Ca(2+) sensitivity. However, Ca(2+) sensitivity did not change with the level of troponin I phosphorylation in any of the DCM-mutant containing thin filaments (E40K, E54K, and D230N in α-tropomyosin; R141W and ΔK210 in cardiac troponin T; K36Q in cardiac troponin I; G159D in cardiac troponin C, and E361G in cardiac α-actin). This 'uncoupling' was observed with native mutant protein from human and mouse heart and with recombinant mutant protein expressed in baculovirus/Sf9 systems. Uncoupling was independent of the fraction of mutated protein present above 0.55. We conclude that DCM-causing mutations in thin filament proteins abolish the relationship between myofilament Ca(2+) sensitivity and troponin I phosphorylation by PKA. We propose that this blunts the response to β-adrenergic stimulation and could be the cause of DCM in the long term."	"Association and cumulative effects of GWAS-identified genetic variants for nonsyndromic orofacial clefts in a Chinese population. A recent genome-wide meta-analysis identified six new susceptible genetic variants for nonsyndromic orofacial clefts (NSOC), but it was still unknown whether these newly identified variants were associated with NSOC susceptibility in Chinese populations. In this study, we genotyped these variants in a case-control study of 602 NSOC cases and 605 controls and found that four of these variants (rs7590268, rs7632427, rs12543318, and rs1873147) were associated with susceptibility to NSOC. We further investigated the cumulative effects of these four variants and found a dose-dependent increase in risk with the number of variant alleles. Furthermore, an association was observed between rs7590268 and a family history of NSOC. Our results provide confirmative evidence that these risk loci contribute to NSOC susceptibility in Chinese populations."	"MBNL1 and PTB cooperate to repress splicing of Tpm1 exon 3. Exon 3 of the rat α-tropomyosin (Tpm1) gene is repressed in smooth muscle cells, allowing inclusion of the mutually exclusive partner exon 2. Two key types of elements affect repression of exon 3 splicing: binding sites for polypyrimidine tract-binding protein (PTB) and additional negative regulatory elements consisting of clusters of UGC or CUG motifs. Here, we show that the UGC clusters are bound by muscleblind-like proteins (MBNL), which act as repressors of Tpm1 exon 3. We show that the N-terminal region of MBNL1, containing its four CCCH zinc-finger domains, is sufficient to mediate repression. The same region of MBNL1 can make a direct protein-to-protein interaction with PTB, and RNA binding by MBNL promotes this interaction, apparently by inducing a conformational change in MBNL. Moreover, single molecule analysis showed that MBNL-binding sites increase the binding of PTB to its own sites. Our data suggest that the smooth muscle splicing of Tpm1 is mediated by allosteric assembly of an RNA-protein complex minimally comprising PTB, MBNL and their cognate RNA-binding sites."	"Perturbed length-dependent activation in human hypertrophic cardiomyopathy with missense sarcomeric gene mutations. High-myofilament Ca(2+) sensitivity has been proposed as a trigger of disease pathogenesis in familial hypertrophic cardiomyopathy (HCM) on the basis of in vitro and transgenic mice studies. However, myofilament Ca(2+) sensitivity depends on protein phosphorylation and muscle length, and at present, data in humans are scarce. To investigate whether high myofilament Ca(2+) sensitivity and perturbed length-dependent activation are characteristics for human HCM with mutations in thick and thin filament proteins. Cardiac samples from patients with HCM harboring mutations in genes encoding thick (MYH7, MYBPC3) and thin (TNNT2, TNNI3, TPM1) filament proteins were compared with sarcomere mutation-negative HCM and nonfailing donors. Cardiomyocyte force measurements showed higher myofilament Ca(2+) sensitivity in all HCM samples and low phosphorylation of protein kinase A (PKA) targets compared with donors. After exogenous PKA treatment, myofilament Ca(2+) sensitivity was similar (MYBPC3mut, TPM1mut, sarcomere mutation-negative HCM), higher (MYH7mut, TNNT2mut), or even significantly lower (TNNI3mut) compared with donors. Length-dependent activation was significantly smaller in all HCM than in donor samples. PKA treatment increased phosphorylation of PKA-targets in HCM myocardium and normalized length-dependent activation to donor values in sarcomere mutation-negative HCM and HCM with truncating MYBPC3 mutations but not in HCM with missense mutations. Replacement of mutant by wild-type troponin in TNNT2mut and TNNI3mut corrected length-dependent activation to donor values. High-myofilament Ca(2+) sensitivity is a common characteristic of human HCM and partly reflects hypophosphorylation of PKA targets compared with donors. Length-dependent sarcomere activation is perturbed by missense mutations, possibly via posttranslational modifications other than PKA hypophosphorylation or altered protein-protein interactions, and represents a common pathomechanism in HCM."	"miR-29c is downregulated in renal interstitial fibrosis in humans and rats and restored by HIF-α activation. Treatment with L-mimosine, which activates hypoxia-inducible factor-α (HIF-α), attenuates renal tubulointerstitial injury and improves renal function in a rat remnant kidney model. The miR-29 family of microRNAs directly targets a large number of extracellular matrix genes and reduces renal interstitial fibrosis. We analyzed microRNA expression profiles in rat remnant kidneys with or without treatment with L-mimosine. The expression of miR-29c was downregulated in rat remnant kidneys compared with sham control and significantly restored by the L-mimosine treatment. In cultured human kidney epithelial HK2 cells, cobalt chloride activated HIF-α and upregulated miR-29c expression. The upregulation of miR-29c expression was significantly attenuated by knockdown of HIF-1α or HIF-2α. Downregulation of miR-29c was associated with significant increases in interstitial fibrosis, collagen type II α1 (COL2A1) protein, and tropomyosin 1α (TPM1) protein in rat remnant kidneys and in kidneys from IgA nephropathy patients. The increases in rat remnant kidneys were attenuated by the L-mimosine treatment. COL2A1 and TPM1 were confirmed to be new, direct targets of miR-29c. In conclusion, miR-29c, an antifibrotic microRNA, is upregulated by HIF-α activation. MiR-29c is downregulated in renal interstitial fibrosis in humans and rats and restored by activation of HIF-α that attenuates fibrosis."	"A pathway involving HDAC5, cFLIP and caspases regulates expression of the splicing regulator polypyrimidine tract binding protein in the heart. Polypyrimidine tract binding protein (PTB) regulates pre-mRNA splicing, having special relevance for determining gene expression in the differentiating muscle. We have previously shown that PTB protein abundance is progressively reduced during heart development without reduction of its own transcript. Simultaneous reduction of histone deacetylase (HDAC) expression prompted us to investigate the potential link between these events. HDAC5-deficient mice have reduced cardiac PTB protein abundance, and HDAC inhibition in myocytes causes a reduction in endogenous expression of cellular FLICE-like inhibitory protein (cFLIP) and caspase-dependent cleavage of PTB. In agreement with this, cardiac PTB expression is abnormally high in mice with cardiac-specific executioner caspase deficiency, and cFLIP overexpression prevents PTB cleavage in vitro. Caspase-dependent cleavage triggers further fragmentation of PTB, and these fragments accumulate in the presence of proteasome inhibitors. Experimental modification of the above processes in vivo and in vitro results in coherent changes in the alternative splicing of genes encoding tropomyosin-1 (TPM1), tropomyosin-2 (TPM2) and myocyte enhancer factor-2 (MEF2). Thus, we report a pathway connecting HDAC, cFLIP and caspases regulating the progressive disappearance of PTB, which enables the expression of the adult variants of proteins involved in the regulation of contraction and transcription during cardiac muscle development."	"Genetic analysis in 418 index patients with idiopathic dilated cardiomyopathy: overview of 10 years' experience. With more than 40 dilated cardiomyopathy (DCM)-related genes known, genetic analysis of patients with idiopathic DCM is costly and time-consuming. We describe the yield from genetic analysis in DCM patients in a large Dutch cohort. We collected cardiological and neurological evaluations, family screenings, and genetic analyses for 418 index patients with idiopathic DCM. We identified 35 (putative) pathogenic mutations in 82 index patients (20%). The type of DCM influenced the yield, with mutations found in 25% of familial DCM cases, compared with 8% of sporadic DCM cases and 62% of cases where DCM was accompanied by neuromuscular disease. A PLN founder mutation (43 cases) and LMNA mutations (19 cases, 16 different mutations) were most prevalent and often demonstrated a specific phenotype. Other mutations were found in: MYH7, DES, TNNT2, DMD, TPM1, DMPK, SCN5A, SGCB (homozygous), and TNNI3. After a median follow-up of 40 months, the combined outcome of death from any cause, heart transplantation, or malignant ventricular arrhythmias in patients with a mutation was worse than in those without an identified mutation (hazard ratio 2.0, 95% confidence interval 1.4-3.0). This seems to be mainly attributable to a high prevalence of malignant ventricular arrhythmias and end-stage heart failure in LMNA and PLN mutation carriers. The yield of identified mutations in DCM index patients with clinical clues, such as associated neuromuscular disease or familial occurrence, is higher compared with those without these clues. For sporadic DCM, specific clinical characteristics may be used to select cases for DNA analysis."	"Genetic and epigenetic alterations are involved in the regulation of TPM1 in cholangiocarcinoma. Cholangiocarcinoma is a malignant tumor originating from biliary epithelial cells. The tumor suppressor gene tropomyosin 1 (TPM1) is downregulated in several human cancer types; however, its expression status in cholangiocarcinoma is still unknown. We elucidated TPM1 expression and its regulation mechanism in cholangiocarcinoma. Real-time (RT)-PCR, western blot analysis and immunohistochemistry were performed to examine TPM1 expression levels in cholangiocarcinoma cell lines and tumor tissues. Cell lines were treated with lentiviral vector containing the miR-21 knockdown and inhibitors of genetic and epigenetic mechanisms (manumycin A, LY294002, U0126, DAC and TSA), and the TPM1 expression change was observed by RT-PCR and western blot analyses. Cell proliferation, apoptosis and migration were evaluated by water-soluble tetrazolium salt (WST-1) assay, flow cytometry and wound healing experiments, respectively. TPM1 was downregulated in the intrahepatic cholangiocarcinoma cells (HuCCT1) and upregulated in the extrahepatic cholangiocarcinoma cells (QBC939) compared with normal intrahepatic biliary epithelial cells (HIBEC). TPM1 stained negative in the intrahepatic cholangiocarcinoma tissues, as revealed by immunohistochemistry, although there was no significant difference in staining of the intrahepatic cholangiocarcinoma tissues and adjacent non-cancer tissues. RAS and two important downstream signaling pathways (RAS/PI3K/AKT and RAS/MEK/ERK) were involved in TPM1 regulation and inhibition of the epigenetic mechanisms such as DNA methylation, histone deacetylation and miR-21 upregulation upregulated TPM1 expression. Inhibitors of genetic and epigenetic mechanisms (manumycin A, LY294002, U0126, DAC and TSA) inhibited cell proliferation and migration and induced apoptosis. These data indicated that TPM1 is downregulated in HuCCT1 cells and that the Ras signaling pathway as well as DNA methylation, histone deacetylation and miR-21 upregulation play important roles in the suppression of TPM1 expression in HuCCT1 cells. Thus, compounds that inhibit genetic and epigenetic mechanisms may be promising agents in treating cholangiocarcinoma."	"Tropomyosin Ser-283 pseudo-phosphorylation slows myofibril relaxation. Tropomyosin (Tm) is a central protein in the Ca(2+) regulation of striated muscle. The αTm isoform undergoes phosphorylation at serine residue 283. While the biochemical and steady-state muscle function of muscle purified Tm phosphorylation have been explored, the effects of Tm phosphorylation on the dynamic properties of muscle contraction and relaxation are unknown. To investigate the kinetic regulatory role of αTm phosphorylation we expressed and purified native N-terminal acetylated Ser-283 wild-type, S283A phosphorylation null and S283D pseudo-phosphorylation Tm mutants in insect cells. Purified Tm's regulate thin filaments similar to that reported for muscle purified Tm. Steady-state Ca(2+) binding to troponin C (TnC) in reconstituted thin filaments did not differ between the 3 Tm's, however disassociation of Ca(2+) from filaments containing pseudo-phosphorylated Tm was slowed compared to wild-type Tm. Replacement of pseudo-phosphorylated Tm into myofibrils similarly prolonged the slow phase of relaxation and decreased the rate of the fast phase without altering activation kinetics. These data demonstrate that Tm pseudo-phosphorylation slows deactivation of the thin filament and muscle force relaxation dynamics in the absence of dynamic and steady-state effects on muscle activation. This supports a role for Tm as a key protein in the regulation of muscle relaxation dynamics."	"Elevated tropomyosin expression is associated with epithelial-mesenchymal transition of lens epithelial cells. Injury to lens epithelial cells (LECs) leads to epithelial-mesenchymal transition (EMT) with resultant fibrosis. The tropomyosin (Tpm) family of cytoskeleton proteins is involved in regulating and stabilizing actin microfilaments. Aberrant expression of Tpms leads to abnormal morphological changes with disintegration of epithelial integrity. The EMT of LECs has been proposed as a major cause of posterior capsule opacification (PCO) after cataract surgery. Using in vivo rodent PCO and human cataractous LECs, we demonstrated that the aberrant expression of rat Tpm and human Tpm1α/2β suggested their association in remodelling of the actin cytoskeleton during EMT of LECs. Expression analysis from abnormally growing LECs after lens extraction revealed elevated expression of α-smooth muscle actin (α-SMA), a marker for EMT. Importantly, these cells displayed increased expression of Tpm1α/2β following EMT/PCO formation. Expression of Tpm1α/2β was up-regulated in LECs isolated from cataractous lenses of Shumiya Cataract Rats (SCRs), compared with non-cataractous lenses. Also, LECs from human patients with nuclear cataract and anterior subcapsular fibrosis (ASF) displayed significantly increased expression of Tpm2β mRNA, suggesting that similar signalling invokes the expression of these molecules in LECs of cataractous SCR and human lenses. EMT was observed in LECs overexpressed with Tpm1α/2β, as evidenced by increased expression of α-SMA. These conditions were correlated with remodelling of actin filaments, possibly leading to EMT/PCO and ASF. The present findings may help clarify the condition of the actin cytoskeleton during morphogenetic EMT, and may contribute to development of Tpm-based inhibitors for postponing PCO and cataractogenesis."	"A novel alpha-tropomyosin mutation associates with dilated and non-compaction cardiomyopathy and diminishes actin binding. Dilated cardiomyopathy (DCM) is characterized by idiopathic dilatation and systolic contractile dysfunction of the ventricle(s) leading to an impaired systolic function. The origin of DCM is heterogeneous, but genetic transmission of the disease accounts for up to 50% of the cases. Mutations in alpha-tropomyosin (TPM1), a thin filament protein involved in structural and regulatory roles in muscle cells, are associated with hypertrophic cardiomyopathy (HCM) and very rarely with DCM. Here we present a large four-generation family in which DCM is inherited as an autosomal dominant trait. Six family members have a cardiomyopathy with the age of diagnosis ranging from 5 months to 52 years. The youngest affected was diagnosed with dilated and non-compaction cardiomyopathy (NCCM) and died at the age of five. Three additional children died young of suspected heart problems. We mapped the phenotype to chromosome 15 and subsequently identified a missense mutation in TPM1, resulting in a p.D84N amino acid substitution. In addition we sequenced 23 HCM/DCM genes using next generation sequencing. The TPM1 p.D84N was the only mutation identified. The mutation co-segregates with all clinically affected family members and significantly weakens the binding of tropomyosin to actin by 25%. We show that a mutation in TPM1 is associated with DCM and a lethal, early onset form of NCCM, probably as a result of diminished actin binding caused by weakened charge-charge interactions. Consequently, the screening of TPM1 in patients and families with DCM and/or (severe, early onset forms of) NCCM is warranted. This article is part of a Special Issue entitled: Cardiomyocyte Biology: Cardiac Pathways of Differentiation, Metabolism and Contraction."	"Downregulation of tropomyosin-1 in squamous cell carcinoma of esophagus, the role of Ras signaling and methylation. Tropomyosins (TMs) are a family of cytoskeletal proteins that bind to and stabilize actin microfilaments. Non-muscle cells express multiple isoforms of TMs including three high molecular weight (HMW) isoforms: TM1, TM2, and TM3. While reports have indicated downregulation of TMs in transformed cells and several human cancers, nevertheless, little is known about the underlying mechanism of TMs suppression. In present study the expression of HMW TMs was investigated in squamous cell carcinoma of esophagus (SCCE), relative to primary cell cultures of normal esophagus by western blotting and real-time RT-PCR. Our results showed that TM1, TM2, and TM3 were significantly downregulated in cell line of SCCE. Moreover, mRNA level of TPM1 and TPM2 were markedly decreased by 93% and 96%, in tumor cell line relative to esophagus normal epithelial cells. Therefore, downregulation of TMs could play an important role in tumorigenesis of esophageal cancer. To asses the mechanism of TM downregulation in esophageal cancer, the role of Ras dependent signaling and promoter hypermethylation were investigated. We found that inhibition of two Ras effectory downstream pathways; MEK/ERK and PI3K/Akt leads to significant increased expression of TM1 protein and both TPM1 and TPM2 mRNAs. In addition, methyltransferase inhibition significantly upregulated TM1, suggesting the prominent contribution of promoter hypermethylation in TM1 downregulation in esophageal cancer. These data indicate that downregulation of HMW TMs occurs basically in SCCE and the activation of MEK/ERK and PI3K/Akt pathways as well as the epigenetic mechanism of promoter hypermethylation play important role in TM1 suppression in SCCE."	"Familial hypertrophic cardiomyopathy related E180G mutation increases flexibility of human cardiac α-tropomyosin. α-Tropomyosin (αTm) is central to Ca(2+)-regulation of cardiac muscle contraction. The familial hypertrophic cardiomyopathy mutation αTm E180G enhances Ca(2+)-sensitivity in functional assays. To investigate the molecular basis, we imaged single molecules of human cardiac αTm E180G by direct probe atomic force microscopy. Analyses of tangent angles along molecular contours yielded persistence length corresponding to ~35% increase in flexibility compared to wild-type. Increased flexibility of the mutant was confirmed by fitting end-to-end length distributions to the worm-like chain model. This marked increase in flexibility can significantly impact systolic and possibly diastolic phases of cardiac contraction, ultimately leading to hypertrophy."	"Diagnostic contribution of left ventricular endomyocardial biopsy in patients with clinical phenotype of hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy phenotype is shared by heterogeneous entities. The purpose of the study was to evaluate the diagnostic role of left ventricular endomyocardial biopsy. One hundred fifty-one consecutive patients with unexplained left ventricular hypertrophy and normal/elevated QRS voltages or left bundle-branch block underwent left ventricular endomyocardial biopsy because of associated left ventricular dysfunction (37%), presence of sporadic form of left ventricular hypertrophy (32%), or patient desire for a definite diagnosis (31%). Biopsy samples were processed for histology and electron microscopy. Blood samples were collected for histologically oriented gene analysis of major sarcomeric (MYH7, MYBPC3, TNNT2, TPM1) and lysosomal (LAMP2, PRKAG2, α-galactosidase A) proteins. Histology showed changes consistent/compatible with hypertrophic cardiomyopathy in 124 patients: myocardial storage disease in 18 due to Fabry disease in 12 and glycogen-storage disease in 6 and myocardial infiltrative disease in 9 because of amyloidosis in 7 and sarcoidosis in 2. Gene analysis was positive in 67% of patients with hypertrophic cardiomyopathy (MYH7 mutation in 36, MYBP in 29, TNNT2 in 14, and TPM1 in 5) and in 83% of patients with lysosomal storage disease (α-galactosidase A mutation in 12, PRKAG2 in 2, and LAMP2 in 1). In patients with hypertrophic cardiomyopathy phenotype, left ventricular endomyocardial biopsy is safe and may recognize infiltrative/storage diseases in up to 18% of evolving and sporadic cases."	"Molecular motors: a finicky myosin V chooses its own path. Cytoskeletal trafficking systems are becoming more complex at every turn. A new study reports that a yeast myosin V walks on only a select few actin filaments - those that are decorated with tropomyosin."	"Hypoxia-induced alternative splicing in endothelial cells. Adaptation to low oxygen by changing gene expression is vitally important for cell survival and tissue development. The sprouting of new blood vessels, initiated from endothelial cells, restores the oxygen supply of ischemic tissues. In contrast to the transcriptional response induced by hypoxia, which is mainly mediated by members of the HIF family, there are only few studies investigating alternative splicing events. Therefore, we performed an exon array for the genome-wide analysis of hypoxia-related changes of alternative splicing in endothelial cells. Human umbilical vein endothelial cells (HUVECs) were incubated under hypoxic conditions (1% O(2)) for 48 h. Genome-wide transcript and exon expression levels were assessed using the Affymetrix GeneChip Human Exon 1.0 ST Array. We found altered expression of 294 genes after hypoxia treatment. Upregulated genes are highly enriched in glucose metabolism and angiogenesis related processes, whereas downregulated genes are mainly connected to cell cycle and DNA repair. Thus, gene expression patterns recapitulate known adaptations to low oxygen supply. Alternative splicing events, until now not related to hypoxia, are shown for nine genes: six which are implicated in angiogenesis-mediated cytoskeleton remodeling (cask, itsn1, larp6, sptan1, tpm1 and robo1); one, which is involved in the synthesis of membrane-anchors (pign) and two universal regulators of gene expression (cugbp1 and max). For the first time, this study investigates changes in splicing in the physiological response to hypoxia on a genome-wide scale. Nine alternative splicing events, until now not related to hypoxia, are reported, considerably expanding the information on splicing changes due to low oxygen supply. Therefore, this study provides further knowledge on hypoxia induced gene expression changes and presents new starting points to study the hypoxia adaptation of endothelial cells."	"Coronary telangiectasia associated with hypertrophic cardiomyopathy. Coronary telangiectasia (CT) is a rare congenital anomaly causing ventricular shunt and myocardial ischaemia. Its prevalence, genetic background, and impact in human hypertrophic cardiomyopathy (HCM) are unknown and were therefore investigated in this study. Among 445 patients with HCM, 195 had a coronary angiography and 124 a left ventricular endomyocardial biopsy. CT draining into the ventricular cavities was observed in 5 of 195 HCM patients (2.5%), whereas it was detected in 0.1% of 1000 consecutive subjects without congenital anomalies undergoing coronary angiography. Patients with CT-HCM underwent a total body computed tomography scan to investigate the presence of systemic vascular malformations. HCM-related MYH7, MYBPC3, TNNT2, and TPM1 genes and hereditary haemorragic telangiectasia-related endoglin and activin receptor-like kinase 1 genes were analysed. Histology, clinical profile, and outcome of CT-HCM patients were correlated with those of 22 control HCM patients. No mucocutaneous or systemic vascular malformations were detected. Gene analysis showed a MYH7 mutation in two patients, with an associated endoglin point mutation. Histology showed in the CT-HCM cohort a more pronounced myocardial fibrosis (29.8 ± 3.8%) compared with HCM controls (13 ± 2.6%), and disorganized cardiomyocytes separated by thin-walled large vessels adherent to the endocardium. Clinically, the CT-HCM cohort had a higher arrhythmic profile at diagnosis and increased incidence of implantable cardioverter defibrillator (ICD) implantations and arrhythmic deaths during a long-term follow-up. CT is detectable in 2.5% of HCM patients vs. 0.1% of the general population; it may derive from a co-existing endoglin gene mutation and cause a prominent, potentially arrhythmogenic myocardial fibrosis."	"N-terminal acetylome analyses and functional insights of the N-terminal acetyltransferase NatB. Protein N-terminal acetylation (Nt-acetylation) is an important mediator of protein function, stability, sorting, and localization. Although the responsible enzymes are thought to be fairly well characterized, the lack of identified in vivo substrates, the occurrence of Nt-acetylation substrates displaying yet uncharacterized N-terminal acetyltransferase (NAT) specificities, and emerging evidence of posttranslational Nt-acetylation, necessitate the use of genetic models and quantitative proteomics. NatB, which targets Met-Glu-, Met-Asp-, and Met-Asn-starting protein N termini, is presumed to Nt-acetylate 15% of all yeast and 18% of all human proteins. We here report on the evolutionary traits of NatB from yeast to human and demonstrate that ectopically expressed hNatB in a yNatB-Δ yeast strain partially complements the natB-Δ phenotypes and partially restores the yNatB Nt-acetylome. Overall, combining quantitative N-terminomics with yeast studies and knockdown of hNatB in human cell lines, led to the unambiguous identification of 180 human and 110 yeast NatB substrates. Interestingly, these substrates included Met-Gln- N-termini, which are thus now classified as in vivo NatB substrates. We also demonstrate the requirement of hNatB activity for maintaining the structure and function of actomyosin fibers and for proper cellular migration. In addition, expression of tropomyosin-1 restored the altered focal adhesions and cellular migration defects observed in hNatB-depleted HeLa cells, indicative for the conserved link between NatB, tropomyosin, and actin cable function from yeast to human."	"The flexibility of two tropomyosin mutants, D175N and E180G, that cause hypertrophic cardiomyopathy. Point mutations targeting muscle thin filament proteins are the cause of a number of cardiomyopathies. In many cases, biological effects of the mutations are well-documented, whereas their structural and mechanical impact on filament assembly and regulatory function is lacking. In order to elucidate molecular defects leading to cardiac dysfunction, we have examined the structural mechanics of two tropomyosin mutants, E180G and D175N, which are associated with hypertrophic cardiomyopathy (HCM). Tropomyosin is an α-helical coiled-coil dimer which polymerizes end-to-end to create an elongated superhelix that wraps around F-actin filaments of muscle and non-muscle cells, thus modulating the binding of other actin-binding proteins. Here, we study how flexibility changes in the E180G and D175N mutants might affect tropomyosin binding and regulatory motion on F-actin. Electron microscopy and Molecular Dynamics simulations show that E180G and D175N mutations cause an increase in bending flexibility of tropomyosin both locally and globally. This excess flexibility is likely to increase accessibility of the myosin-binding sites on F-actin, thus destabilizing the low-Ca(2+) relaxed-state of cardiac muscle. The resulting imbalance in the on-off switching mechanism of the mutants will shift the regulatory equilibrium towards Ca(2+)-activation of cardiac muscle, as is observed in affected muscle, accompanied by enhanced systolic activity, diastolic dysfunction, and cardiac compensations associated with HCM and heart failure."	"Co-inhibition of microRNA-10b and microRNA-21 exerts synergistic inhibition on the proliferation and invasion of human glioma cells. MicroRNAs (miRNAs) are small non-coding RNAs that function as negative gene regulators. Alterations in the expression of miRNAs have been implicated in the pathogenesis and development of most human malignancies. Recent data indicate that microRNA-21 and microRNA-10b are significantly elevated in glioblastoma multiforme (GBM) suggesting their role in the regulation of multiple genes associated with cancer. In this study, U87MG human glioblastoma cells were treated with miRNA inhibitors targeting miR-10b and miR-21, alone or in combination. The results showed that the miR-21 inhibitor additively interacted with miR-10b inhibitor on U87MG cells. The 50% inhibitory concentration values were dramatically decreased in cells treated with the combination of miR-10b and miR-21 inhibitors. Furthermore, inhibitors synergistically combined, enhanced apoptosis significantly and reduced invasion ability assessed by flow cytometry and Transwell migration assay. Thus, the miR-21 inhibitor may interrupt the activity of EGFR pathways, increasing PDCD4 and TPM1 expression and reducing MMP activities, independently of PTEN status. Meanwhile, miR-10b inhibitor reduced by Twist proceeds to inhibit translation of the mRNA encoding HOXD10 leading to the increase of the expression of the well-characterized pro-metastatic gene RHOC. Taken together, these data strongly suggest that a combination of miR-21 inhibitor and miR-10b inhibitor could be an effective therapeutic strategy for controlling the growth of GBM by inhibiting oncogene expression and overexpressing tumor suppressor genes. Moreover, a regulatory strategy based on the combination of miRNA inhibitors may provide insights into the mechanisms of the modulation of signaling genes involved in tumor cell apoptosis and invasiveness."	"Functional structure of the promoter regions for the predominant low molecular weight isoforms of tropomyosin in human kidney cells. High and low molecular weight (LMW) tropomyosin isoforms, by regulation of actin filaments, have a major role in the regulation of cell behaviour. They affect malignant transformation, motility, differentiation, metastasis and cell membrane protein presentation. Expression of LMW isoforms from the TPM1 and TPM3 genes have an important role in these effects but the regulation of their expression is unknown. Luciferase assays on a progressively truncated 1.7 kb fragment upstream of the exon 1b translation start site in the TPM1 and TPM3 genes in HEK-293 cells showed upstream activation sequences in TPM1 between -152 and -139 bp and in TPM3 between -154 and -102 bp. The effect of mutating candidate transcription factor binding sites identified an AML1-like transcription factor binding site in TPM1 and a cAMP response element in TPM3. Downstream from the primary activation sequence in TPM1 was a repressor region corresponding to two Sp/KLF family binding GC boxes. Band shift assays confirmed that deletion of these sites altered transcription factor binding and ChIP assays confirmed the presence of AML1 and CREB at the TPM1 and TPM3 activation sequences in the respective promoters. Expression of LMW isoforms from TPM1 and TPM3 genes is regulated very differently. This facilitates regulation of the many cell processes involving these proteins. In situations where these proteins have a critical role, such as cancer metastasis, it also facilitates specific intervention."	"Dietary genistein enhances phosphorylation of regulatory myosin light chain in the myocardium of ovariectomized mice. There is evidence that isoflavones, such as genistein, can directly or indirectly improve lipid profile and lower blood pressure and hence exert cardiovascular protection. It is further believed, that genistein attenuates vascular contraction and thus vascular tone and blood pressure through altering the phosphorylation of the regulatory myosin light chain (MLC) probably via the myosin light chain kinase (MLCK) or the RhoA pathway. However, the direct role of genistein in the myocardium is poorly reviewed. In this study, we investigated the impact of genistein on the cardiac proteome in ovariectomized female mice using a 2DE-MS approach. Dietary genistein intake considerably changed the abundance of several cytoskeletal and contractile proteins and enhanced the phosphorylation of MLC. The MLC phosphorylation was mediated through increased abundance of MLCK and inhibition of myosin light chain phosphatase latest known to be inversely regulated by RhoA. Contrary to others, in our model genistein did neither inhibit the cardiac MLCK, nor the cardiac RhoA pathway in vivo."	"Tropomyosin is essential for processive movement of a class V myosin from budding yeast. Myosin V is an actin-based motor protein involved in intracellular cargo transport [1]. Given this physiological role, it was widely assumed that all class V myosins are processive, able to take multiple steps along actin filaments without dissociating. This notion was challenged when several class V myosins were characterized as nonprocessive in vitro, including Myo2p, the essential class V myosin from S. cerevisiae [2-6]. Myo2p moves cargo including secretory vesicles and other organelles for several microns along actin cables in vivo. This demonstrated cargo transporter must therefore either operate in small ensembles or behave processively in the cellular context. Here we show that Myo2p moves processively in vitro as a single motor when it walks on an actin track that more closely resembles the actin cables found in vivo. The key to processivity is tropomyosin: Myo2p is not processive on bare actin but highly processive on actin-tropomyosin. The major yeast tropomyosin isoform, Tpm1p, supports the most robust processivity. Tropomyosin slows the rate of MgADP release, thus increasing the time the motor spends strongly attached to actin. This is the first example of tropomyosin switching a motor from nonprocessive to processive motion on actin."	"Does inflammation trigger fibrosis in hypertrophic cardiomyopathy: a burning question? NA"	"Shortening and intracellular Ca2+ in ventricular myocytes and expression of genes encoding cardiac muscle proteins in early onset type 2 diabetic Goto-Kakizaki rats. There has been a spectacular rise in the global prevalence of type 2 diabetes mellitus. Cardiovascular complications are the major cause of morbidity and mortality in diabetic patients. Contractile dysfunction, associated with disturbances in excitation-contraction coupling, has been widely demonstrated in the diabetic heart. The aim of this study was to investigate the pattern of cardiac muscle genes that are involved in the process of excitation-contraction coupling in the hearts of early onset (8-10 weeks of age) type 2 diabetic Goto-Kakizaki (GK) rats. Gene expression was assessed in ventricular muscle with real-time RT-PCR; shortening and intracellular Ca(2+) were measured in ventricular myocytes with video edge detection and fluorescence photometry, respectively. The general characteristics of the GK rats included elevated fasting and non-fasting blood glucose and blood glucose at 120 min following a glucose challenge. Expression of genes encoding cardiac muscle proteins (Myh6/7, Mybpc3, Myl1/3, Actc1, Tnni3, Tnn2, Tpm1/2/4 and Dbi) and intercellular proteins (Gja1/4/5/7, Dsp and Cav1/3) were unaltered in GK ventricle compared with control ventricle. The expression of genes encoding some membrane pumps and exchange proteins was unaltered (Atp1a1/2, Atp1b1 and Slc8a1), whilst others were either upregulated (Atp1a3, relative expression 2.61 ± 0.69 versus 0.84 ± 0.23) or downregulated (Slc9a1, 0.62 ± 0.07 versus 1.08 ± 0.08) in GK ventricle compared with control ventricle. The expression of genes encoding some calcium (Cacna1c/1g, Cacna2d1/2d2 and Cacnb1/b2), sodium (Scn5a) and potassium channels (Kcna3/5, Kcnj3/5/8/11/12, Kchip2, Kcnab1, Kcnb1, Kcnd1/2/3, Kcne1/4, Kcnq1, Kcng2, Kcnh2, Kcnk3 and Kcnn2) were unaltered, whilst others were either upregulated (Cacna1h, 0.95 ± 0.16 versus 0.47 ± 0.09; Scn1b, 1.84 ± 0.16 versus 1.11 ± 0.11; and Hcn2, 1.55 ± 0.15 versus 1.03 ± 0.08) or downregulated (Hcn4, 0.16 ± 0.03 versus 0.37 ± 0.08; Kcna2, 0.35 ± 0.03 versus 0.80 ± 0.11; Kcna4, 0.79 ± 0.25 versus 1.90 ± 0.26; and Kcnj2, 0.52 ± 0.07 versus 0.78 ± 0.08) in GK ventricle compared with control ventricle. The amplitude of ventricular myocyte shortening and the intracellular Ca(2+) transient were unaltered; however, the time-to-peak shortening was prolonged and time-to-half decay of the Ca(2+) transient was shortened in GK myocytes compared with control myocytes. The results of this study demonstrate changes in expression of genes encoding various excitation-contraction coupling proteins that are associated with disturbances in myocyte shortening and intracellular Ca(2+) transport."	"Silver nanocolloids disrupt medaka embryogenesis through vital gene expressions. Silver nanomaterials are the major components of healthcare products largely because of their antimicrobial effects. However, their unintended toxicity to biological organisms and its mechanism are not well understood. Using medaka fish embryo model, the toxic effects and corresponding mechanisms of silver nanocolloids (SNC, particle size 3.8 ± 1.0-diameter nm) were investigated. SNC caused morphological changes in embryos including cardiovascular malformations, ischemia, underdeveloped central nervous system and eyes, and kyphosis at exposures of 0.5 mg/L. Interestingly, SNC were observed inside the eggs at a level of 786.1 ± 32.5 pg/mg egg weight, and TEM analysis showed that SNC adhered to the surface and inside of the chorion. Meanwhile, medaka oligo DNA microarray and qRT-PCR were used for gene expression analysis in the embryos exposed to 0.05 mg/L SNC for 48 h. As a result, expressions of six of the oxidative stress-, embryogenesis- and morphogenesis-related genes, ctsL, tpm1, rbp, mt, atp2a1, and hox6b6, were affected by the SNC exposure, and these genes' involvement in those malformations was implied. Thus, SNC could potentially cause malformations in the cardiovascular and central nervous systems in developing medaka embryo through SNC-induced differential expression of the genes related to oxidative stress, embryonic cellular proliferation, and morphological development."	"Genetic testing for dilated cardiomyopathy in clinical practice. Familial involvement is common in dilated cardiomyopathy (DCM) and &gt;40 genes have been implicated in causing disease. However, the role of genetic testing in clinical practice is not well defined. We examined the experience of clinical genetic testing in a diverse DCM population to characterize the prevalence and predictors of gene mutations. We studied 264 unrelated adult and pediatric DCM index patients referred to 1 reference lab for clinical genetic testing. Up to 10 genes were analyzed (MYH7, TNNT2, TNNI3, TPM1, MYBPC3, ACTC, LMNA, PLN, TAZ, and LDB3), and 70% of patients were tested for all genes. The mean age was 26.6 ± 21.3 years, and 52% had a family history of DCM. Rigorous criteria were used to classify DNA variants as clinically relevant (mutations), variants of unknown clinical significance (VUS), or presumed benign. Mutations were found in 17.4% of patients, commonly involving MYH7, LMNA, or TNNT2 (78%). An additional 10.6% of patients had VUS. Genetic testing was rarely positive in older patients without a family history of DCM. Conversely in pediatric patients, family history did not increase the sensitivity of genetic testing. Using rigorous criteria for classifying DNA variants, mutations were identified in 17% of a diverse group of DCM index patients referred for clinical genetic testing. The low sensitivity of genetic testing in DCM reflects limitations in both current methodology and knowledge of DCM-associated genes. However, if mutations are identified, genetic testing can help guide family management."	"Two founder mutations in the alpha-tropomyosin and the cardiac myosin-binding protein C genes are common causes of hypertrophic cardiomyopathy in the Finnish population. Hypertrophic cardiomyopathy (HCM) is predominantly caused by a large number of various mutations in the genes encoding sarcomeric proteins. However, two prevalent founder mutations for HCM in the alpha-tropomyosin (TPM1-D175N) and myosin-binding protein C (MYBPC3-Q1061X) genes have previously been identified in eastern Finland. To assess the prevalence of these founder mutations in a large population of patients with HCM from all over Finland. Patients and methods. We screened for two founder mutations (TPM1-D175N and MYBPC3-Q1061X) in 306 unrelated Finnish patients with HCM from the regions covering a population of ∼4,000,000. The TPM1-D175N mutation was found in 20 patients (6.5%) and the MYBPC3-Q1061X in 35 patients (11.4%). Altogether, the two mutations accounted for 17.9% of the HCM cases. In addition, 61 and 59 relatives of the probands were found to be carriers of TPM1-D175N and MYBPC3-Q1061X, respectively. The mutations showed regional clustering. TPM1-D175N was prevalent in central and western Finland, and MYBPC3-Q1061X in central and eastern Finland. The TPM1-D175N and MYBPC3-Q1061X mutations account for a substantial part of all HCM cases in the Finnish population, indicating that routine genetic screening of these mutations is warranted in Finnish patients with HCM."	"Low-grade inflammation and the phenotypic expression of myocardial fibrosis in hypertrophic cardiomyopathy. To investigate the role of inflammation in the phenotypic expression of myocardial fibrosis in hypertrophic cardiomyopathy (HCM). Clinical study. Kuopio University Hospital and University of Eastern Finland, Kuopio, Finland. Twenty-four patients with a single HCM-causing mutation D175N in the α-tropomyosin gene and 17 control subjects. Endomyocardial biopsy samples taken from the patients with HCM were compared with matched myocardial autopsy specimens. Levels of high-sensitivity C-reactive protein (hsCRP) and proinflammatory cytokines were measured in patients and controls. Myocardial late gadolinium enhancement (LGE) in cardiac MRI (CMRI) was detected. Endomyocardial samples in patients with HCM showed variable myocyte hypertrophy and size heterogeneity, myofibre disarray, fibrosis, inflammatory cell infiltration and nuclear factor kappa B (NF-κB) activation. Levels of hsCRP and interleukins (IL-1β, IL-1RA, IL-6, IL-10) were significantly higher in patients with HCM than in control subjects. In patients with HCM, there was a significant association between the degree of myocardial inflammatory cell infiltration, fibrosis in histopathological samples and myocardial LGE in CMRI. Levels of hsCRP were significantly associated with histopathological myocardial fibrosis. hsCRP, tumour necrosis factor α and IL-1RA levels had significant correlations with LGE in CMRI. A variable myocardial and systemic inflammatory response was demonstrated in patients with HCM attributable to an identified sarcometric mutation. Inflammatory response was associated with myocardial fibrosis, suggesting that myocardial fibrosis in HCM is an active process modified by an inflammatory response."	"[Dynamic expression of tropomyosin 1 in rat model of hepatic fibrosis and hepatic stellate cells]. To investigate the dynamic expression of TPM1 in rat model of hepatic fibrosis and hepatic stellate cells induced by TGFβ1. Thirty male SD rats were divided into control group (n = 6) and model group (n = 24). The rat model of hepatic fibrosis was established by intraperitoneal injection of dimethylnitrosamine(DMN). The sera were collected from portal vein and liver tissues were taken from animals 2, 4, 6, 8 weeks HSC-T6 cells were cultured and induced 48 hours by 5 ng/ml TGF-β1. The pathological changes of liver were observed by Hematoxylin-Eosin and Masson Staining. Reverse Transcription-polymerase chain reaction (RT-PCR), immunohistochemistry and Western-blotting were used to determine the mRNA and protein expressions of TPM1, TGFβ1 and α-SMA in rat models and HSC-T6 cells and the localization of TPM1 in rat models. Rat models of hepatic fibrosis were successfully established. TPM1 was lowly stained in the wall of blood vessels in portal areas in normal livers, in fibrotic livers TPM1 was mainly stained along the fibrotic septum. The mRNA and protein expressions of TPM1 and α-SMA in rat models of hepatic fibrosis increased at the week 2 and peaked at week 6, which was statistical significance compared to control group, P &lt; 0.05; TGF-β1 increased at week 2 and it was higher than the levels in other groups at week 4, which was statistical significance compared to control group P &lt; 0.05; Correlation analysis showed that TPM1 positively correlated with α-SMA and TGF-β1, rs = 0.688, rs = 0.692, P &lt; 0.01. In HSC-T6, the mRNA expressions of TPM1 and α-SMA increased after being induced by TGF -beta1. compare with control group, the differences were significant, P less than 0.05. TPM1 may be playing an important role in the occurrence and development of liver fibrosis. Maybe it could become a potential therapeutic target for hepatic fibrosis."	"JunB contributes to Id2 repression and the epithelial-mesenchymal transition in response to transforming growth factor-β. The process of epithelial-mesenchymal transition (EMT) in response to transforming growth factor-β (TGF-β) contributes to tissue fibrosis, wound healing, and cancer via a mechanism that is not fully understood. This study identifies a critical role of JunB in the EMT and profibrotic responses to TGF-β. Depletion of JunB by small interfering ribonucleic acid abrogates TGF-β-induced disruption of cell-cell junctions, formation of actin fibers, focal adhesions, and expression of fibrotic proteins. JunB contributes to Smad-mediated repression of inhibitor of differentiation 2 through interaction with transcription repressor activating transcription factor 3. Importantly, JunB mediates the TGF-β induction of profibrotic response factors, fibronectin, fibulin-2, tropomyosin (Tpm1), and integrin-β3, which play critical roles in matrix deposition, cell-matrix adhesion, and actin stress fibers. In summary, JunB provides important input in setting the transcriptional program of the EMT and profibrotic responses to TGF-β. Thus, JunB represents an important target in diseases associated with EMT, including cancer and fibrosis."	"Differential role of actin-binding proteins in controlling the adipogenic differentiation of human CD105-positive Wharton's Jelly cells. Wharton's Jelly cells (WJCs) can be differentiated into adipocytes by cytoskeletal reorganisation in association with changes in the mechanical properties of cells. WJCs subjected to adipocyte induction were observed changes in the cell morphology and alterations in actin filament formation. Transfection with either small interfering RNAs (siRNAs) against formin-2 (FMN-2), tropomyosin-1 (Tm-1), caldesmon (CaD), and profilin (Pro) or a pcDNA6-gelsolin (GSN)-constructed vector in WJCs was used to establish their regulatory roles in controlling adipogenesis. Phenotypic transformation of the cell shape and changes in cell surface adhesion force were determined in WJCs after transformation. The levels of protein and mRNA expression of β-actin and several key actin binding ptoteins (ABPs) were decreased during the early stage of adipogenic induction but were recovered in the later induction. The siFMN-2, siTm-1, siCaD, and siPro gene knockdown in WJCs caused a widening of the cell shape, while WJCs overexpressing GSN retained a fibroblast cell shape. For both transformations, atomic force microscopy revealed alterations in the biomechanical signals on the cell surface. However, the adipogenic potency was increased after siFMN-2, siTm-1, siCaD, and siPro gene knockdown and decreased during GSN overexpression. siRNA gene knockdown of siFMN-2, siTm-1, siCaD, and siPro enhances the potency for WJCs commitment to adipocyte, while GSN overexpression modulates the PPAR-γ-independent pathway for the adipogenesis of WJCs. The phenotypic changes associated with decreased ABP gene expression are critical for regulating the adipogenic differentiation of WJCs through the temporal control of actin filament organisation."	"Identification and characterization of genes related to the development of skeletal muscle in the Hainan black goat. In total, 185 unigenes were identified from 380 clones of postnatal skeletal muscle of Hainan Black goats by suppression subtractive hybridization (SSH) technology. Most of the differentially expressed genes involved energy metabolism and muscle contraction. The expression of 19 genes was analyzed in the longissimus dorsi muscles of 2-, 6-, 12-, 24-month olds, and four gene expression patterns were found by hierarchical cluster analysis. Most genes in first expression pattern belonged to myofibrillar proteins and had higher expression levels at 2 months old; genes of the secondary expression pattern had higher expression levels at 12 months old; tropomyoain 1 (alpha) (TPM1) was classified into the third expression pattern, and its expression level showed decreases tendency as age increased. Tropomyoain 2 (beta) (TPM2) was classified into the third expression pattern, which had the opposite expression pattern against TPM1."	"Gene expression profiling in fetal rat lung during gestational perfluorooctane sulfonate exposure. Perfluorooctane sulfonate (PFOS) is a persistent environmental contaminant found in the tissues of humans and wildlife. It has been reported that gestational exposure to PFOS causes neonatal death of rats. However, the mechanism is still unclear. In this study, we investigated the effects of gestational PFOS exposure on the gene expression profiling of fetal rat lung at pseudoglandular stage. Adult Sprague Dawley dams were dosed orally from gestational day 12-18 with 0 (control), 5 mg/kg/day or 20 mg/kg/day PFOS. Animals were euthanized on day 18.5, fetal lung samples were collected for histochemical staining and RNA profiling analysis. PFOS did not cause apparent microscopic changes of fetal lungs. Gene expression profiling revealed that PFOS dose-dependently up-regulated the expression of 21 (5 mg/kg) and 43 (20 mg/kg) genes. These genes include five PPARα target genes (Acot1, Hmgcs2, Fabp4, Fabp1 and Myh7), and 4 of them are involved in lipid metabolism. The other genes were primarily included in the categories of cytoskeletal structure (Tpm1, Tnnt2, Actn3, Myoz2, Tmod1, and Mfap5), extracellular matrix (Ckm, Lum, Tnnc1, Art3, Dcn, Col17a1, Aspn, Ctsk, Itm2a, Spock2 and Orm1), transporting (Cox8h, Cox6a2 and Scnn1a) and secreted proteins (Scgb3a1, Nppb and Spp1). Our study demonstrates that in utero PFOS exposure resulted in the alteration of a set of genes which are involved in significant cytoskeletal, extracellular matrix remodeling, lipid metabolism and secreted proteins in the fetal rat lung."	"Identification of differentially-expressed proteins between early submucosal non-invasive and invasive colorectal cancer using 2D-DIGE and mass spectrometry. Early detection and diagnosis of colorectal cancer (CRC) are closely related to a better therapeutic outcome, and the five-year survival rate of early CRC is over 90 percent. Though endoscopic minimally invasive treatment has become a quick and effective therapy for early CRC, endoscopic biopsies are usually not deep enough to obtain tissues from the submucosal layer and it is difficult to determine whether early CRC has infiltrated into the submucosa. Therefore, in the present study, we constructed tumor models of early submucosal non-invasive CRC (SNICRC) and submucosal invasive CRC (SICRC) in Fischer-344 rats induced by N-methyl-N-nitrosourea (MNU). The differentially-expressed proteins were analyzed and identified in SNICRC, SICRC and normal control (NC) tissues using highly sensitive two dimensional differential gel electrophoresis (2D-DIGE) coupled with mass spectrometry (MS). Proteomic data revealed 132 protein spots between SNICRC and SICRC, 162 protein spots between SICRC and NC and 154 protein spots between SNICRC and NC which were found differentially expressed. These differential spots were picked, in-gel digested and peptide mass fingerprints were obtained by MALDITOF-MS/MS. Finally, five differentially-expressed proteins in SNICRC, SICRC and NC were identified, and increases in Transgelin, peptidylprolyl isomerase A (PPIA) and tropomyosin alpha isoform d were observed, while decreases in carbonic anhydrase 2 (CAII) and an unnamed protein were detected in SICRC compared with SNICRC and NC. Furthermore, Fluorescence-based quantitative polymerase chain reaction (FQ-PCR), Western blotting and immunohistochemistry assays also revealed significant upregulation of Transgelin expression and down-regulation of CAII expression in SICRC tissues. In conclusion, 2D-DIGE is confirmed to be an efficient strategy that enables us to identify differentially expressed proteins between early SNICRC and SICRC. The potential biomarkers such as Transgelin and CAII may be used for the detection of early SICRC."	"Cardiac alpha-myosin (MYH6) is the predominant sarcomeric disease gene for familial atrial septal defects. Secundum-type atrial septal defects (ASDII) account for approximately 10% of all congenital heart defects (CHD) and are associated with a familial risk. Mutations in transcription factors represent a genetic source for ASDII. Yet, little is known about the role of mutations in sarcomeric genes in ASDII etiology. To assess the role of sarcomeric genes in patients with inherited ASDII, we analyzed 13 sarcomeric genes (MYH7, MYBPC3, TNNT2, TCAP, TNNI3, MYH6, TPM1, MYL2, CSRP3, ACTC1, MYL3, TNNC1, and TTN kinase region) in 31 patients with familial ASDII using array-based resequencing. Genotyping of family relatives and control subjects as well as structural and homology analyses were used to evaluate the pathogenic impact of novel non-synonymous gene variants. Three novel missense mutations were found in the MYH6 gene encoding alpha-myosin heavy chain (R17H, C539R, and K543R). These mutations co-segregated with CHD in the families and were absent in 370 control alleles. Interestingly, all three MYH6 mutations are located in a highly conserved region of the alpha-myosin motor domain, which is involved in myosin-actin interaction. In addition, the cardiomyopathy related MYH6-A1004S and the MYBPC3-A833T mutations were also found in one and two unrelated subjects with ASDII, respectively. No mutations were found in the 11 other sarcomeric genes analyzed. The study indicates that sarcomeric gene mutations may represent a so far underestimated genetic source for familial recurrence of ASDII. In particular, perturbations in the MYH6 head domain seem to play a major role in the genetic origin of familial ASDII."	"The effect of the Asp175Asn and Glu180Gly TPM1 mutations on actin-myosin interaction during the ATPase cycle. Hypertrophic cardiomyopathy (HCM), characterized by cardiac hypertrophy and contractile dysfunction, is a major cause of heart failure. HCM can result from mutations in the gene encoding cardiac α-tropomyosin (TM). To understand how the HCM-causing Asp175Asn and Glu180Gly mutations in α-tropomyosin affect on actin-myosin interaction during the ATPase cycle, we labeled the SH1 helix of myosin subfragment-1 and the actin subdomain-1 with the fluorescent probe N-iodoacetyl-N'-(5-sulfo-1-naphtylo)ethylenediamine. These proteins were incorporated into ghost muscle fibers and their conformational states were monitored during the ATPase cycle by measuring polarized fluorescence. For the first time, the effect of these α-tropomyosins on the mobility and rotation of subdomain-1 of actin and the SH1 helix of myosin subfragment-1 during the ATP hydrolysis cycle have been demonstrated directly by polarized fluorimetry. Wild-type α-tropomyosin increases the amplitude of the SH1 helix and subdomain-1 movements during the ATPase cycle, indicating the enhancement of the efficiency of the work of cross-bridges. Both mutant TMs increase the proportion of the strong-binding sub-states, with the effect of the Glu180Gly mutation being greater than that of Asp175Asn. It is suggested that the alteration in the concerted conformational changes of actomyosin is likely to provide the structural basis for the altered cardiac muscle contraction."	"Prevalence and distribution of sarcomeric gene mutations in Japanese patients with familial hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM), which is inherited as an autosomal dominant trait, is the most prevalent hereditary cardiac disease. Although there are several reports on the systematic screening of mutations in the disease-causing genes in European and American populations, only limited information is available for Asian populations, including Japanese. Genetic screening of disease-associated mutations in 8 genes for sarcomeric proteins, MYH7, MYBPC3, MYL2, MYL3, TNNT2, TNNI3, TPM1, and ACTC, was performed by direct sequencing in 112 unrelated Japanese proband patients with familial HCM; 37 different mutations, including 13 novel ones in 5 genes, MYH7, MYBPC3, TNNT2, TNNI3, and TPM1, were identified in 49 (43.8%) patients. Among them, 3 carried compound heterozygous mutations in MYBPC3 or TNNT2. The frequency of patients carrying the MYBPC3, MYH7, and TNNT2 mutations were 19.6%, 10.7%, and 8.9%, respectively, and the most frequently affected genes in the northeastern and southwestern parts of Japan were MYBPC3 and MYH7, respectively. Several mutations were found in multiple unrelated proband patients, for which the geographic distribution suggested founder effects of the mutations. This study demonstrated the frequency and distribution of mutations in a large cohort of familial HCM in Japan."	"Triggering of Toll-like receptor 4 on metastatic breast cancer cells promotes αvβ3-mediated adhesion and invasive migration. Triggering of Toll-like receptor 4 (TLR4) on tumor cells has been found to promote tumor progression by promoting tumor cell proliferation and survival. So far, however, the effect of TLR4 signaling on tumor metastasis has not been well elucidated. Here, we report that triggering of TLR4 on metastatic breast cancer cells could reciprocally regulate the expression of αvβ3 and the expressions of TPM1 and maspin, and promote αvβ3-mediated adhesion and invasive migration of the cells. In metastatic breast cancer cells, TLR4 signaling increased the expression of integrin αvβ3 by activating NF-κB, resulting in the increased adhesion capacity of tumor cells to the ligand for αvβ3, and the increased polymerization of actin and production of MMP-9 in tumor cells in response to ECM. HoxD3 was required for the up-regulation of αv and β3 expressions by NF-κB. Moreover, TLR4 signaling increased the expression of miR-21 in breast cancer cells by activating NF-κB. Accordingly, the expressions of TPM1 and maspin were decreased at protein level, whereas the transcription activity of these genes was not influenced. Consistent with the promoting effect on αvβ3-mediated adhesion and invasive migration, TLR4 signaling promoted the arrest of metastatic breast cancer cells in circulation and following invasion. The effect of TLR4 signaling could be abrogated by inhibiting NF-κB. These findings suggest that metastatic breast cancer cells could acquire higher metastatic potential due to triggering of TLR4 and activation of NF-κB in the cells, and that both TLR4 and NF-κB could be therapeutic targets for preventing metastasis of breast cancer cells."	"Expression of genes encoding smooth muscle contractile proteins in vaginal tissue of women with and without pelvic organ prolapse. We hypothesize that the expression of genes encoding vaginal smooth muscle (SM) contractile proteins is altered in patients with pelvic organ prolapse (POP) and is influenced by age and menopausal status. We aim to analyze the expression of SM-myosin heavy chain (MHY11), caldesmon (CALD1), SM gamma-actin (ACTG2), and tropomyosin (TPM1), in premenopausal and postmenopausal women with advanced POP and asymptomatic controls. During total hysterectomy we collected anterior vaginal wall biopsy samples from 55 women, 37 premenopausal (23 patients and 14 controls), and 18 postmenopausal women (13 patients and 5 controls). Total mRNA from the tissues was quantified by real-time RT-PCR. MHY11 gene expression was down-regulated in premenopausal POP patients compared to premenopausal controls (fivefold, P = 0.002). In the postmenopausal groups, we observed a sixfold increase in the CALD1 gene expression in POP patients compared to asymptomatic controls (P = 0.03). The gene expression of CALD1, ACTG2, and TPM1 was significantly down-regulated in vaginal tissue of healthy women after menopause (P &lt; 0.05). Dysregulation of the vaginal SM content in POP patients involves alteration of different cellular pathways according to age and menopausal status."	"In-depth identification of pathways related to cisplatin-induced hepatotoxicity through an integrative method based on an informatics-assisted label-free protein quantitation and microarray gene expression approach. Cisplatin is used widely for treatment of a variety of cancer diseases. Recently, however, the use of cisplatin is restricted because of its adverse effects such as hepatotoxicity. There is no study with current proteomics technology to evaluate cisplatin-induced hepatotoxicity, even if some studies have reported on the hepatotoxicity. In this study, proteomic as well as genomic analyses have been used for identification of proteins and genes that respond to cisplatin treatment in rat primary hepatocytes. To investigate the hepatotoxic effects of cisplatin, rat primary hepatocytes were treated with an IC(20) concentration for 24 h. From proteomic analysis based on label-free quantitation strategy, cisplatin induced 76 up-regulated and 19 down-regulated proteins among 325 distinct proteins. In the mRNA level, genomic analysis revealed 72 up-regulated and 385 down-regulated genes in the cisplatin-treated group. Based on these two analyses, 19 pathways were commonly altered, whereas seven pathways were identified only by proteomic analysis, and 19 pathways were identified only by genomic analysis. Overall, this study explained the mechanism of cisplatin-induced hepatotoxicity with two points of view: well known pathways including drug metabolism, fatty acid metabolism, and glycolysis/TCA cycle and little known pathways including urea cycle and inflammation metabolism, for hepatotoxicity of other toxic agents. Up-regulated proteins detected by proteomic analysis in the cisplatin-treated group: FBP1 (fructose 1,6-bisphosphatase 1), FASN (fatty acid synthase), CAT (catalase), PRDX1 (peroxiredoxin-1), HSPD1 (60-kDa heat shock protein), MDH2 (malate dehydrogenase 2), and ARG1 (arginase 1), and also down-regulated proteins in the cisplatin-treated group: TPM1 (tropomyosin 1), TPM3 (tropomyosin 3), and CTSB (cathepsin B), were confirmed by Western blot analysis. In addition, up-regulated mRNAs detected by microarray analysis in the cisplatin-treated group: GSTA2, GSTT2, YC2, TXNRD1, CYP2E1, CYP2C13, CYP2D1, ALDH17, ARG1, ARG2, and IL-6, and also down-regulated mRNAs: CYP2C12, CYP26B1, TPM1, and TPM3, were confirmed by RT-PCR analysis. In case of PRDX1, FASN, and ARG1, they were further confirmed by immunofluorescence analysis. Through the integrated proteomic and genomic approaches, the present study provides the first pathway map related to cisplatin-induced hepatotoxicity, which may provide new insight into the mechanism of hepatotoxicity."	"MicroRNA-21 is an important downstream component of BMP signalling in epidermal keratinocytes. Bone morphogenetic proteins (BMPs) play essential roles in the control of skin development, postnatal tissue remodelling and tumorigenesis. To explore whether some of the effects of BMP signalling are mediated by microRNAs, we performed genome-wide microRNA (miRNA) screening in primary mouse keratinocytes after BMP4 treatment. Microarray analysis revealed substantial BMP4-dependent changes in the expression of distinct miRNAs, including miR-21. Real-time PCR confirmed that BMP4 dramatically inhibits miR-21 expression in the keratinocytes. Consistently, significantly increased levels of miR-21 were observed in transgenic mice overexpressing the BMP antagonist noggin under control of the K14 promoter (K14-noggin). By in situ hybridization, miR-21 expression was observed in the epidermis and hair follicle epithelium in normal mouse skin. In K14-noggin skin, miR-21 was prominently expressed in the epidermis, as well as in the peripheral portion of trichofolliculoma-like hair follicle-derived tumours that contain proliferating and poorly differentiated cells. By transfecting keratinocytes with a miR-21 mimic, we identified the existence of two groups of the BMP target genes, which are differentially regulated by miR-21. These included selected BMP-dependent tumour-suppressor genes (Pten, Pdcd4, Timp3 and Tpm1) negatively regulated by miR-21, as well as miR-21-independent Id1, Id2, Id3 and Msx2 that predominantly mediate the effects of BMPs on cell differentiation. In primary keratinocytes and HaCaT cells, miR-21 prevented the inhibitory effects of BMP4 on cell proliferation and migration. Thus, our study establishes a novel mechanism for the regulation of BMP-induced effects in the skin and suggests miRNAs are important modulators of the effects of growth factor signalling pathways on skin development and tumorigenesis."	"[Differentially expressed genes in asthenospermia: a bioinformatics-based study]. To study the differentially expressed genes in asthenospermia to gain a deeper insight into the molecular mechanisms of the disease. We analyzed the differentially expressed genes in asthenospermia using GATHER, PANTHER and ToppGene online bioinformatics tools. Our bioinformatics mining and analyses revealed that the differentially expressed genes in asthenospermia played important roles in the cellular protein and macromolecular metabolism, protein modification, cell death, cell apoptosis and apoptosis induction. Asthenospermia patients experience a decline in sperm activity and the basic life activities of sperm simultaneously, and are also prone to cell apoptosis or death. Such differentially expressed genes as KIF3B, MYO15A, KIF6, KIF26B, KIF3A, DNHD2, DMN, DYNC2H1, STARD9, MYOHD1, and TPM1, which are involved in cytoskeletal structure, microtubule movement and cell movement, may be associated with asthenospermia, and therefore deserve further studies."	"Genetic basis of end-stage hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is characterized by a heterogeneous presentation and clinical course. A minority of HCM patients develop end-stage HCM and require cardiac transplantation. The genetic basis of end-stage HCM is unknown but small series, isolated case reports and animal models have related the most aggressive heart failure course with the presence of multiple mutations. Twenty-six patients (age 40.4 ± 14.5 years; 46% male) transplanted for end-stage HCM underwent genetic screening of 10 HCM-related genes (MYH7, MYBPC3, TNNT2, TNNI3, TPM1, TNNC1, MYL3, MYL2, ACTC, LDB3). Additional genetic screening of LAMP2/PRKAG2 and mitochondrial DNA (mtDNA) was performed in four and three cases, respectively. Findings were correlated with clinical and histological features. Pathogenic mutations were identified in 15 patients (58%). Thirteen patients (50%) had mutations in sarcomeric genes (six in MYH7, three in MYBPC3, two in MYL2, one in TNNI3, and one in MYL3) and two patients had mutations in LAMP2. Only three patients (13%) had double mutations and all in homozygosis. Except for a more frequent family history of HCM, patients with mutations in sarcomeric genes did not show any clinical feature that distinguished them from patients without mutations in these genes. Evaluation of 44 relatives from 12 families identified 13 mutation carriers, 9 of whom had an overt HCM phenotype. Heart transplanted HCM has a heterogeneous genetic background where multiple mutations are uncommon. The clinical course of HCM is not primarily dependent on the presence of multiple sarcomeric mutations. Clinical and genetic evaluation of relatives does not support differential clinical management in HCM based on genetics."	"MicroRNA 21 &quot;shapes&quot; vascular smooth muscle behavior through regulating tropomyosin 1. NA"	"Microvascular function is selectively impaired in patients with hypertrophic cardiomyopathy and sarcomere myofilament gene mutations. The purpose of this study was to assess myocardial blood flow (MBF) using positron emission tomography in patients with hypertrophic cardiomyopathy (HCM) according to genetic status. Coronary microvascular dysfunction is an important feature of HCM, associated with ventricular remodeling and heart failure. We recently demonstrated the increased prevalence of systolic dysfunction in patients with HCM with sarcomere myofilament gene mutations and postulated an association between genetic status and coronary microvascular dysfunction. Maximum MBF (intravenous dipyridamole, 0.56 mg/kg; Dip-MBF) was measured using (13)N-labeled ammonia in 61 patients with HCM (age 38 ± 14 years), genotyped by automatic DNA sequencing of 8 myofilament-encoding genes (myosin-binding protein C, beta-myosin heavy chain, regulatory and essential light chains, troponin T, troponin I, troponin C, alpha-tropomyosin, and alpha-actin). In 35 patients, cardiac magnetic resonance imaging was performed. Fifty-three mutations were identified in 42 of the 61 patients (genotype positive; 69%). Despite similar clinical profiles, genotype-positive patients with HCM showed substantially lower Dip-MBF compared with that of genotype-negative patients (1.7 ± 0.6 ml/min/g vs. 2.4 ± 1.2 ml/min/g; p &lt; 0.02). A Dip-MBF &lt;1.5 ml/min/g had 81% positive predictive value for genotype-positive status and implied a 3.5-fold independent increase in likelihood of carrying myofilament gene mutations (hazard ratio: 3.52; 95% confidence interval: 1.05 to 11.7; p = 0.04). At cardiac magnetic resonance imaging, the prevalence of late gadolinium enhancement was greater in genotype-positive patients (22 of 23 [96%] compared with 8 of 12 [67%] genotype-negative patients; p = 0.038). Patients with HCM with sarcomere myofilament mutations are characterized by more severe impairment of microvascular function and increased prevalence of myocardial fibrosis, compared with genotype-negative individuals. These findings suggest a direct link between sarcomere gene mutations and adverse remodeling of the microcirculation in HCM, accounting for the increased long-term prevalence of ventricular dysfunction and heart failure in genotype-positive patients."	"Variants in genes that encode muscle contractile proteins influence risk for isolated clubfoot. Isolated clubfoot is a relatively common birth defect that affects approximately 4,000 newborns in the US each year. Calf muscles in the affected leg(s) are underdeveloped and remain small even after corrective treatment. This observation suggests that variants in genes that influence muscle development are priority candidate risk factors for clubfoot. This contention is further supported by the discovery that mutations in genes that encode components of the muscle contractile complex (MYH3, TPM2, TNNT3, TNNI2, and MYH8) cause congenital contractures, including clubfoot, in distal arthrogryposis (DA) syndromes. Interrogation of 15 genes encoding proteins that control myofiber contractility in a cohort of both non-Hispanic White (NHW) and Hispanic families, identified positive associations (P &lt; 0.05) with SNPs in 12 genes; only 1 was identified in a family-based validation dataset. Six SNPs in TNNC2 deviated from Hardy-Weinberg equilibrium in mothers in our NHW discovery dataset. Relative risk and likelihood ratio tests showed evidence for a maternal genotypic effect with TNNC2/rs383112 and an inherited/child genotypic effect with two SNPs, TNNC2/rs4629 and rs383112. Associations with multiple SNPs in TPM1 were identified in the NHW discovery (rs4075583, P = 0.01), family-based validation (rs1972041, P = 0.000074), and case-control validation (rs12148828, P = 0.04) datasets. Gene interactions were identified between multiple muscle contraction genes with many of the interactions involving at least one potential regulatory SNP. Collectively, our results suggest that variation in genes that encode contractile proteins of skeletal myofibers may play a role in the etiology of clubfoot."	"Furthering the link between the sarcomere and primary cardiomyopathies: restrictive cardiomyopathy associated with multiple mutations in genes previously associated with hypertrophic or dilated cardiomyopathy. Mutations in genes that encode components of the sarcomere are well established as the cause of hypertrophic and dilated cardiomyopathies. Sarcomere genes, however, are increasingly being associated with other cardiomyopathies. One phenotype more recently recognized as a disease of the sarcomere is restrictive cardiomyopathy (RCM). We report on two patients with RCM associated with multiple mutations in sarcomere genes not previously associated with RCM. Patient 1 presented with NYHA Class III/IV heart failure at 22 years of age. She was diagnosed with RCM and advanced heart failure requiring heart transplantation. Sequencing of sarcomere genes revealed previously reported homozygous p.Glu143Lys mutations in MYL3, and a novel heterozygous p.Gly57Glu mutation in MYL2. The patient's mother is a double heterozygote for these mutations, with no evidence of cardiomyopathy. Patient 2 presented at 35 years of age with volume overload while hospitalized for oophorectomy. She was diagnosed with RCM and is being evaluated for heart transplantation. Sarcomere gene sequencing identified homozygous p.Asn279His mutations in TPM1. The patient's parents are consanguineous and confirmed heterozygotes. Her father was diagnosed with HCM at 42 years of age. This is the first report of mutations in TPM1, MYL3, and MYL2 associated with primary, non-hypertrophied RCM. The association of more sarcomere genes with RCM provides further evidence that mutations in the various sarcomere genes can cause different cardiomyopathy phenotypes. These cases also contribute to the growing body of evidence that multiple mutations have an additive effect on the severity of cardiomyopathies."	"MicroRNA-21 regulates vascular smooth muscle cell function via targeting tropomyosin 1 in arteriosclerosis obliterans of lower extremities. The goal of this study was to determine the expression signature and the potential role of microRNAs in human arteries with arteriosclerosis obliterans (ASO). The expression profiles of microRNAs in human arteries with ASO and in normal control arteries were determined by quantitative reverse transcription-polymerase chain reaction array. Among the 617 detected microRNAs, multiple microRNAs were aberrantly expressed in arteries with ASO. Some of these dysregulated microRNAs were further verified by quantitative reverse transcription-polymerase chain reaction. Among them, microRNA-21 (miR-21) was mainly located in arterial smooth muscle cells (ASMCs) and was increased by more than 7-fold in ASO that was related to hypoxia inducible factor 1-α. In cultured human ASMCs, cell proliferation and migration were significantly decreased by inhibition of miR-21. 3'-Untranslated region luciferase assay confirmed that tropomyosin 1 was a target of miR-21 that was involved in miR-21-mediated cellular effects, such as cell shape modulation. The results suggest that miR-21 is able to regulate ASMC function by targeting tropomyosin 1. The hypoxia inducible factor-1 α/miR-21/tropomyosin 1 pathway may play a critical role in the pathogenesis of ASO. These findings might provide a new therapeutic target for human ASO."	"Genetic screening and double mutation in Japanese patients with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a primary myocardial disorder with an autosomal-dominant pattern of inheritance mainly caused by single heterozygous mutations in sarcomere genes. Although multiple gene mutations have recently been reported in Western countries, clinical implications of multiple mutations in Japanese subjects are not clear. A comprehensive genetic analysis of 5 sarcomere genes (cardiac β-myosin heavy chain gene [MYH7], cardiac myosin-binding protein C gene [MYBPC3], cardiac troponin T gene [TNNT2], α-tropomyosin gene [TPM1] and cardiac troponin I gene [TNNI3]) was performed in 93 unrelated patients and 14 mutations were identified in 28 patients. Twenty-six patients had single heterozygosity (20 in MYBPC3, 4 in MYH7, 1 in TNNT2, 1 in TNNI3), whereas 2 proband patients with familial HCM had double heterozygosity: 1 with P106fs in MYBPC3 and R869C in MYH7 and 1 with R945fs in MYBPC3 and E1049D in MYH7. From the results of the family survey and the previous literature on HCM mutations, P106fs, R945fs and R869C seemed to be pathological mutations and E1049D might be a rare polymorphism. The proband patient with P106fs and R869C double mutation was diagnosed as having HCM at an earlier age (28 years of age) than her relatives with single mutation, and had greater wall thickness with left ventricular outflow obstruction. One double mutation was identified in a Japanese cohort of HCM patients. Further studies are needed to clarify the clinical significance of multiple mutations including phenotypic severity."	"The effect of the dilated cardiomyopathy-causing Glu40Lys TPM1 mutation on actin-myosin interactions during the ATPase cycle. Dilated cardiomyopathy (DCM), characterized by cardiac dilatation and contractile dysfunction, is a major cause of heart failure. DCM can result from mutations in the gene encoding cardiac α-tropomyosin (TM). In order to understand how the dilated cardiomyopathy-causing Glu40Lys mutation in TM affects actomyosin interactions, thin filaments have been reconstituted in muscle ghost fibers by incorporation of labeled Cys707 of myosin subfragment-1 and Cys374 of actin with fluorescent probe 1.5-IAEDANS and α-tropomyosin (wild-type or Glu40Lys mutant). For the first time, the effect of these α-tropomyosins on the mobility and rotation of subdomain-1 of actin and the SH1 helix of myosin subfragment-1 during the ATP hydrolysis cycle have been demonstrated directly by polarized fluorimetry. The Glu40Lys mutant TM inhibited these movements at the transition from AM(∗∗)·ADP·Pi to AM state, indicating a decrease of the proportion of the strong-binding sub-states in the actomyosin population. These structural changes are likely to underlie the contractile deficit observed in human dilated cardiomyopathy."	"Molecular genetic and functional characterization implicate muscle-restricted coiled-coil gene (MURC) as a causal gene for familial dilated cardiomyopathy. Dilated cardiomyopathy (DCM) and hypertrophic cardiomyopathy (HCM) are classic forms of systolic and diastolic heart failure, respectively. Mutations in genes encoding sarcomere and cytoskeletal proteins are major causes of HCM and DCM. MURC, encoding muscle-restricted coiled-coil, a Z-line protein, regulates cardiac function in mice. We investigated potential causal role of MURC in human cardiomyopathies. We sequenced MURC in 1199 individuals, including 383 probands with DCM, 307 with HCM, and 509 healthy control subjects. We found 6 heterozygous DCM-specific missense variants (p.N128K, p.R140W, p.L153P, p.S307T, p.P324L, and p.S364L) in 8 unrelated probands. Variants p.N128K and p.S307T segregated with inheritance of DCM in small families (χ(2)=8.5, P=0.003). Variants p.N128K, p.R140W, p.L153P, and p.S364L were considered probably or possibly damaging. Variant p.P324L recurred in 3 independent probands, including 1 proband with a TPM1 mutation (p.M245T). A deletion variant (p.L232-R238del) was present in 3 unrelated HCM probands, but it did not segregate with HCM in a family who also had a MYH7 mutation (p.L907V). The phenotype in mutation carriers was notable for progressive heart failure leading to heart transplantation in 4 patients, conduction defects, and atrial arrhythmias. Expression of mutant MURC proteins in neonatal rat cardiac myocytes transduced with recombinant adenoviruses was associated with reduced RhoA activity, lower mRNA levels of hypertrophic markers and smaller myocyte size as compared with wild-type MURC. MURC mutations impart loss-of-function effects on MURC functions and probably are causal variants in human DCM. The causal role of a deletion mutation in HCM is uncertain."	"Sarcomere gene mutations in isolated left ventricular noncompaction cardiomyopathy do not predict clinical phenotype. Left ventricular noncompaction of the myocardium (LVNC) has been recognized as a cardiomyopathy with a genetic etiology. Mutations in genes encoding sarcomere proteins were shown to be associated with LVNC. We evaluated the potential clinical impact of genetic analysis of sarcomere genes in patients with LVNC. We identified 5 mutations in cardiac myosin-binding protein C (MYBPC3) and 2 mutations in α-tropomyosin (TPM1) in a cohort of unrelated adult probands with isolated LVNC. The mutations in MYBPC3 and TPM1 and in 6 other previously reported sarcomere genes in this cohort resulted in a total of 18 (29%) heterozygous mutations in 63 probands. β-myosin heavy chain (MYH7) was the most prevalent disease gene and accounts for 13% of cases, followed by MYBPC3 (8%). Comparing sarcomere mutation-positive and mutation-negative LVNC probands showed no significant differences in terms of average age, myocardial function, and presence of heart failure or tachyarrhythmias at initial presentation or at follow-up. Familial disease was found in 16 probands of whom 8 were sarcomere mutation positive. Nonpenetrance was detected in 2 of 8 mutation-positive families with LVNC. Mutations in sarcomere genes account for a significant (29%) proportion of cases of isolated LVNC in this cohort. The distribution of disease genes confirms genetic heterogeneity and opens new perspectives in genetic testing in patients with LVNC and their relatives at high risk of inheriting the cardiomyopathy. The presence or absence of a sarcomere gene mutation in LVNC cannot be related to the clinical phenotype."	"Rare variant mutations identified in pediatric patients with dilated cardiomyopathy. Dilated cardiomyopathy (DCM) in infants and children can be partially explained by genetic cause but the catalogue of known genes is limited. We reviewed our database of 41 cases diagnosed with DCM before 18 years of age who underwent detailed clinical and genetic evaluation, and summarize here the evidence for mutations causing DCM in these cases from 15 genes (PSEN1, PSEN2, CSRP3, LBD3, MYH7, SCN5A, TCAP, TNNT2, LMNA, MYBPC3, MYH6, TNNC1, TNNI3, TPM1, and RBM20). Thirty-five of the 41 pediatric cases had relatives with adult-onset DCM. More males (66%) were found among children diagnosed after 1 year of age with DCM. Nineteen mutations in 9 genes were identified among 15 out of 41 patients; 3 patients (diagnosed at ages 2 weeks, 9 and 13 years) had multiple mutations. Of the 19 mutations identified in 12 families, mutations in TPM1 (32%) and TNNT2 (21%) were the most commonly found. Of the 6 patients diagnosed before 1 year of age, 3 had mutations in TPM1 (including a set of identical twins), 1 in TNNT2, 1 in MYH7, and 1 with multiple mutations (MYH7 and TNNC1). Most DCM was accompanied by advanced heart failure and need for cardiac transplantation. We conclude that in some cases pediatric DCM has a genetic basis, which is complicated by allelic and locus heterogeneity as seen in adult-onset DCM. We suggest that future prospective comprehensive family-based genetic studies of pediatric DCM are indicated to further define mutation frequencies in known genes and to discover novel genetic cause."	"Conserved noncanonical residue Gly-126 confers instability to the middle part of the tropomyosin molecule. Tropomyosin (Tm) is a two-stranded α-helical coiled-coil protein with a well established role in regulation of actin cytoskeleton and muscle contraction. It is believed that many Tm functions are enabled by its flexibility whose nature has not been completely understood. We hypothesized that the well conserved non-canonical residue Gly-126 causes local destabilization of Tm. To test this, we substituted Gly-126 in skeletal muscle α-Tm either with an Ala residue, which should stabilize the Tm α-helix, or with an Arg residue, which is expected to stabilize both α-helix and coiled-coil structure of Tm. We have shown that both mutations dramatically reduce the rate of Tm proteolysis by trypsin at Asp-133. Differential scanning calorimetry was used for detailed investigation of thermal unfolding of the Tm mutants, both free in solution and bound to F-actin. It was shown that a significant part of wild type Tm unfolds in a non-cooperative manner at low temperature, and both mutations confer cooperativity to this part of the Tm molecule. The size of the flexible middle part of Tm is estimated to be 60-70 amino acid residues, about a quarter of the Tm molecule. Thus, our results show that flexibility is unevenly distributed in the Tm molecule and achieves the highest extent in its middle part. We conclude that the highly conserved Gly-126, acting in concert with the previously identified non-canonical Asp-137, destabilizes the middle part of Tm, resulting in a more flexible region that is important for Tm function."	"Hypertrophic cardiomyopathy-causing Asp175asn and Glu180gly Tpm1 mutations shift tropomyosin strands further towards the open position during the ATPase cycle. To understand the molecular mechanism by which the hypertrophic cardiomyopathy-causing Asp175Asn and Glu180Gly mutations in α-tropomyosin alter contractile regulation, we labeled recombinant wild type and mutant α-tropomyosins with 5-iodoacetamide-fluorescein and incorporated them into the ghost muscle fibers. The orientation and mobility of the probe were studied by polarized fluorimetry at different stages of the ATPase cycle. Multistep alterations in the position and mobility of wild type tropomyosin on the thin filaments during the ATP cycle were observed. Both mutations were found to shift tropomyosin strands further towards the open position and to change the affinity of tropomyosin for actin, with the effect of the Glu180Gly mutation being greater than Asp175Asn, showing an increase in the binding strong cross-bridges to actin during the ATPase cycle. These structural changes to the thin filament are likely to underlie the observed increased Ca(2+)-sensitivity caused by these mutations which initiates the disease remodeling."	"Cardiac MRI assessed left ventricular hypertrophy in differentiating hypertensive heart disease from hypertrophic cardiomyopathy attributable to a sarcomeric gene mutation. To evaluate the value of cardiac magnetic resonance imaging (CMRI)-assessed left ventricular hypertrophy (LVH) in differentiating between hypertensive heart disease and hypertrophic cardiomyopathy (HCM). 95 unselected subjects with mild-to-moderate hypertension, 24 patients with HCM attributable to the D175N mutation of the α-tropomyosin gene and 17 control subjects were studied by cine CMRI. Left ventricular (LV) quantitative and qualitative characteristics were evaluated. LV maximal end-diastolic wall thickness, wall thickness-to-LV volume ratio, end-diastolic septum thickness and septum-to-lateral wall thickness ratio were useful measures for differentiating between LVH due to hypertension and HCM. The most accurate measure for identifying patients with HCM was the LV maximal wall thickness ≥ 17 mm, with a sensitivity, specificity, negative predictive value, positive predictive value, and accuracy of 90%, 93%, 86%, 95% and 91%, respectively. LV maximal wall thickness in the anterior wall, or regional bulging in left ventricular wall was found only in patients with HCM. LV mass index was not discriminant between patients with HCM and those with LVH due to hypertension. LV maximal thickness measured by CMRI is the best anatomical parameter in differentiating between LVH due to mild-to-moderate hypertension and HCM attributable to a sarcomeric mutation. CMRI assessment of location and quality of LVH is also of value in differential diagnosis."	"Rapid detection of genetic variants in hypertrophic cardiomyopathy by custom DNA resequencing array in clinical practice. Hypertrophic cardiomyopathy (HCM) is the most common inherited cardiac disease (1/500) and the most common cause of sudden cardiac death in young people. Pathogenic mutation detection of HCM is having a growing impact on the medical management of patients and their families. However, the remarkable genetic and allelic heterogeneity makes molecular analysis by conventional methods very time-consuming, expensive and difficult to realise in a routine diagnostic molecular laboratory. The authors used their custom DNA resequencing array which interrogates all possible single-nucleotide variants on both strands of all exons (n=160), splice sites and 5'-untranslated region of 12 HCM genes (27 000 nucleotides). The results for 122 unrelated patients with HCM are presented. Thirty-three known or novel potentially pathogenic heterozygous single-nucleotide variants were identified in 38 patients (31%) in genes MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3 and ACTC1. Although next-generation sequencing will replace all large-scale sequencing platforms for inherited cardiac disorders in the near future, this HCM resequencing array is currently the most rapid, cost-effective and reasonably efficient technology for first-tier mutation screening of HCM in clinical practice. Because of its design, the array is also an appropriate tool for initial screening of other inherited forms of cardiomyopathy."	"Microsatellite marker analysis in the treatment and diagnosis of familial hypertrophic cardiomyopathy. Familial hypertrophic cardiomyopathy (FHCM) is characterized by an autosomal dominant transmission, left ventricular hypertrophy and myocardial disorganization. So far, 13 genetic loci and more than 130 mutations in ten different genes have been identified. Recent study suggested impaired force production associated with inefficient use of ATP as the main disease mechanism. We performed haplotype analysis with the use of microsatellite markers linked with beta-myosin heavy chain, troponin T, alpha-tropomyosin and cardiac myosin protein C genes in three Polish families with hypertrophic cardiomyopathy (23 individuals). This method is based on the analysis of distribution of the disease in the family and the alleles of chosen microsatellite markers. In two families, the disease was associated with beta-myosin heavy chain gene. We also found a genetic carrier of the mutated gene among children of the patients. In one family the connection of the disease with the mutation in alpha-tropomyosin gene was confirmed, no sudden cardiac deaths were recorded and the degree of myocardial hypertrophy was small."	"Expression of tropomyosin-κ induces dilated cardiomyopathy and depresses cardiac myofilament tension by mechanisms involving cross-bridge dependent activation and altered tropomyosin phosphorylation. Tropomyosin-kappa (TPM1-κ) is a newly discovered tropomyosin (TM) isoform that is exclusively expressed in the human heart and generated by an alternative splicing of the α-TM gene. We reported that TPM1-κ expression was increased in the hearts of patients with chronic dilated cardiomyopathy (DCM). To increase our understanding of the significance of this shift in isoform population, we generated transgenic (TG) mice expressing TPM1-κ in the cardiac compartment where TPM1-κ replaces 90% of the native TM. We previously showed that there was a significant inhibition of the ability of strongly bound cross-bridges to induce activation of TG myofilaments (Rajan et al., Circulation 121:410-418, 2010). Here, we compared the force-Ca(2+) relations in detergent extracted (skinned) fiber bundles isolated from non-transgenic (NTG) and TG-TPM1-κ hearts at two sarcomere lengths (SLs). Our data demonstrated a significant decrease in the Ca(2+) sensitivity of the myofilaments from TG-TPM1-κ hearts with no change in the maximum developed tension, length-dependent activation, and the ratio of ATPase rate to tension. There was also no difference in the affinity and cooperativity of Ca(2+)-binding to troponin in thin filaments reconstituted with either TPM1-κ or α-TM. We also compared protein phosphorylation in NTG and TG-TPM1-κ myofilaments. There was a decrease in the total phosphorylation of TPM1-κ compared to α-TM, but no significant change in other major sarcomeric proteins. Our results identify a novel mode of myofilament desensitization to Ca(2+) associated with a DCM linked switch in TM isoform population."	"A molecular inversion probe assay for detecting alternative splicing. A sensitive, high-throughput method for monitoring pre-mRNA splicing on a genomic scale is needed to understand the spectrum of alternatively spliced mRNA in human cells. We adapted Molecular Inversion Probes (MIPs), a padlock-probe based technology, for the multiplexed capture and quantitation of individual splice events in human tissues. Individual MIP capture probes can be quantified using either DNA microarrays or high-throughput sequencing, which permits independent assessment of each spliced junction. Using our methodology we successfully identified 100% of our positive controls and showed that there is a strong correlation between the data from our alternative splicing MIP (asMIP) assay and quantitative PCR. The asMIP assay provides a sensitive, accurate and multiplexed means for measuring pre-mRNA splicing. Fully optimized, we estimate that the assay could accommodate a throughput of greater than 20,000 splice junctions in a single reaction. This would represent a significant improvement over existing technologies."	"Differentially expressed miRNAs in the plasma may provide a molecular signature for aggressive pancreatic cancer. Pancreatic cancer (PC) has the poorest overall survival rate among all human cancers because of late diagnosis and absence of screening tools. We compared the expression profile of microRNAs (miRNAs) in the plasma of patients diagnosed with PC (n=50) with healthy volunteers (n=10). Data was further validated by quantitative realtime PCR and cell-based assays. Thirty-seven miRNAs were down-regulated and 54 were up-regulated in plasma from patients with PC. The expression of miR-21 was significantly higher, and the expression of let-7 family (especially let-7d) and miR-146a was significantly lower in PC. Most interestingly, the expression of miR-21 was correlated with worse survival, and the expression of let-7 was inversely correlated with survival in this pilot study with mixed patient population. Moreover, we found that miR-21 family was markedly over-expressed in chemo-resistant PC cell lines, which was consistent with the plasma data from PC patients. Our previous studies have shown increased expression of miR-21 with concomitant loss of PTEN expression in PC cells, which is consistent with our current findings showing the loss of three additional targets of miR-21 (PDCD4, Maspin and TPM1). These results suggest that identifying and validating the expression of miRNAs in newly diagnosed patients could serve as potential biomarker for tumor aggressiveness, and such miRNAs could be useful for the screening of high-risk patients, and may also serve as targets for future drug development."	"Exon array analysis using re-defined probe sets results in reliable identification of alternatively spliced genes in non-small cell lung cancer. Treatment of non-small cell lung cancer with novel targeted therapies is a major unmet clinical need. Alternative splicing is a mechanism which generates diverse protein products and is of functional relevance in cancer. In this study, a genome-wide analysis of the alteration of splicing patterns between lung cancer and normal lung tissue was performed. We generated an exon array data set derived from matched pairs of lung cancer and normal lung tissue including both the adenocarcinoma and the squamous cell carcinoma subtypes. An enhanced workflow was developed to reliably detect differential splicing in an exon array data set. In total, 330 genes were found to be differentially spliced in non-small cell lung cancer compared to normal lung tissue. Microarray findings were validated with independent laboratory methods for CLSTN1, FN1, KIAA1217, MYO18A, NCOR2, NUMB, SLK, SYNE2, TPM1, (in total, 10 events) and ADD3, which was analysed in depth. We achieved a high validation rate of 69%. Evidence was found that the activity of FOX2, the splicing factor shown to cause cancer-specific splicing patterns in breast and ovarian cancer, is not altered at the transcript level in several cancer types including lung cancer. This study demonstrates how alternatively spliced genes can reliably be identified in a cancer data set. Our findings underline that key processes of cancer progression in NSCLC are affected by alternative splicing, which can be exploited in the search for novel targeted therapies."	"Push and pull of tropomyosin's opposite effects on myosin attachment to actin. A chimeric tropomyosin host-guest study. Tropomyosin is a ubiquitous actin-binding protein with an extended coiled-coil structure. Tropomyosin-actin interactions are weak and loosely specific, but they potently influence myosin. One such influence is inhibitory and is due to tropomyosin's statistically preferred positions on actin that sterically interfere with actin's strong attachment site for myosin. Contrastingly, tropomyosin's other influence is activating. It increases myosin's overall actin affinity ∼4-fold. Stoichiometric considerations cause this activating effect to equate to an ∼4(7)-fold effect of myosin on the actin affinity of tropomyosin. These positive, mutual, myosin-tropomyosin effects are absent if Saccharomyces cerevisiae tropomyosin replaces mammalian tropomyosin. To investigate these phenomena, chimeric tropomyosins were generated in which 38-residue muscle tropomyosin segments replaced a natural duplication within S. cerevisiae tropomyosin TPM1. Two such chimeric tropomyosins were sufficiently folded coiled coils to allow functional study. The two chimeras differed from TPM1 but in opposite ways. Consistent with steric interference, myosin greatly decreased the actin affinity of chimera 7, which contained muscle tropomyosin residues 228-265. On the other hand, myosin S1 increased by an order of magnitude the actin affinity of chimera 3, which contained muscle tropomyosin residues 74-111. Similarly, myosin S1-ADP binding to actin was strengthened 2-fold by substitution of chimera 3 tropomyosin for wild-type TPM1. Thus, a yeast tropomyosin was induced to mimic the activating behavior of mammalian tropomyosin by inserting a mammalian tropomyosin sequence. The data were not consistent with direct tropomyosin-myosin binding. Rather, they suggest an allosteric mechanism, in which myosin and tropomyosin share an effect on the actin filament."	"Alternative splicing in bone following mechanical loading. It is estimated that more than 90% of human genes express multiple mRNA transcripts due to alternative splicing. Consequently, the proteins produced by different splice variants will likely have different functions and expression levels. Several genes with splice variants are known in bone, with functions that affect osteoblast function and bone formation. The primary goal of this study was to evaluate the extent of alternative splicing in a bone subjected to mechanical loading and subsequent bone formation. We used the rat forelimb loading model, in which the right forelimb was loaded axially for 3 min, while the left forearm served as a non-loaded control. Animals were subjected to loading sessions every day, with 24 h between sessions. Ulnae were sampled at 11 time points, from 4 h to 32days after beginning loading. RNA was isolated and mRNA abundance was measured at each time point using Affymetrix exon arrays (GeneChip® Rat Exon 1.0 ST Arrays). An ANOVA model was used to identify potential alternatively spliced genes across the time course, and five alternatively spliced genes were validated with qPCR: Akap12, Fn1, Pcolce, Sfrp4, and Tpm1. The number of alternatively spliced genes varied with time, ranging from a low of 68 at 12h to a high of 992 at 16d. We identified genes across the time course that encoded proteins with known functions in bone formation, including collagens, matrix proteins, and components of the Wnt/β-catenin and TGF-β signaling pathways. We also identified alternatively spliced genes encoding cytokines, ion channels, muscle-related genes, and solute carriers that do not have a known function in bone formation and represent potentially novel findings. In addition, a functional characterization was performed to categorize the global functions of the alternatively spliced genes in our data set. In conclusion, mechanical loading induces alternative splicing in bone, which may play an important role in the response of bone to mechanical loading."	"Tropomyosin isoform 3 promotes the formation of filopodia by regulating the recruitment of actin-binding proteins to actin filaments. Tropomyosins are believed to function in part by stabilizing actin filaments. However, accumulating evidence suggests that fundamental differences in function exist between tropomyosin isoforms, which contributes to the formation of functionally distinct filament populations. We investigated the functions of the high-molecular-weight isoform Tm3 and examined the molecular properties of Tm3-containing actin filament populations. Overexpression of the Tm3 isoform specifically induced the formation of filopodia and changes in actin solubility. We observed alterations in actin-binding protein recruitment to filaments, co-incident with changes in expression levels, which can account for this functional outcome. Tm3-associated filaments recruit active actin depolymerizing factor and are bundled into filopodia by fascin, which is both up-regulated and preferentially associated with Tm3-containing filaments in the Tm3 overexpressing cells. This study provides further insight into the isoform-specific roles of different tropomyosin isoforms. We conclude that variation in the tropomyosin isoform composition of microfilaments provides a mechanism to generate functionally distinct filament populations."	"4'-Acetoamido-4-hydroxychalcone, a chalcone derivative, inhibits glioma growth and invasion through regulation of the tropomyosin 1 gene. Chalcones are precursors of flavonoids and have been shown to have anti-cancer activity. Here, we identify the synthetic chalcone derivative 4'-acetoamido-4-hydroxychalcone (AHC) as a potential therapeutic agent for the treatment of glioma. Treatment with AHC reduced glioma cell invasion, migration, and colony formation in a concentration-dependent manner. In addition, AHC inhibited vascular endothelial growth factor-induced migration, invasion, and tube formation in HUVECs. To determine the mechanism underlying the inhibitory effect of AHC on glioma cell invasion and migration, we investigated the effect of AHC on the gene expression change and found that AHC affects actin dynamics in U87MG glioma cells. In actin cytoskeleton regulating system, AHC increased tropomyosin expression and stress fiber formation, probably through activation of PKA. Suppression of tropomyosin expression by siRNA or treatment with the PKA inhibitor H89 reduced the inhibitory effects of AHC on glioma cell invasion and migration. In vivo experiments also showed that AHC inhibited tumor growth in a xenograft mouse tumor model. Together, these data suggest that the synthetic chalcone derivative AHC has potent anti-cancer activity through inhibition of glioma proliferation, invasion, and angiogenesis and is therefore a potential chemotherapeutic candidate for the treatment of glioma."	"Identification of a novel TPM1 mutation in a family with left ventricular noncompaction and sudden death. Left ventricular noncompaction (LVNC) is a cardiomyopathy morphologically characterized by 2-layered myocardium, numerous prominent trabeculations, and deep intertrabecular recesses communicating with the left ventricular cavity. The purpose of this study was to investigate patients with LVNC for possible disease causing mutations. We screened 4 genes (TAZ, LDB3, DTNA and TPM1) in 51 patients with LVNC for mutations by polymerase chain reaction and direct DNA sequencing. A novel missense substitution in exon 1 of TPM1 (c.109A&gt;G: p.Lys37Glu) was identified in three affected members of a family with isolated LVNC. The substitution brings about a change in amino acid charge at a highly conserved residue and could result in aberrant mRNA splicing. This variant was not identified in 200 normal control samples. Pathologic analysis of a right ventricular myocardial specimen from the proband's maternal aunt revealed endocardial and subendocardial fibrosis with prominent elastin deposition, as well as the presence of adipose tissue between muscle layers, pathologic changes that are distinct from those seen in patients with HCM or DCM. Screening of the proband and her mother for variants in other sarcomeric protein-encoding candidate genes, MYH7, MYBPC3, TNNT2, TNNI3, ACTC, MYL2, and MYL3, did not identify any other non-synonymous variants or variants in splice donor-acceptor sequences that were potentially disease causing. We conclude TPM1 is a potential candidate disease-causing gene for isolated LVNC, especially in patients experiencing sudden death."	"MicroRNA expression profile of MCF-7 human breast cancer cells and the effect of green tea polyphenon-60. This study reports for the first time the microRNA expression profile of human breast cancer MCF-7 cells and the effect of green tea. Although hundreds of miRNAs have been identified in humans, only a small proportion (25.6%) of miRNAs are expressed in MCF-7 cells. Low concentration treatment with Polyphenon-60 significantly alters the miRNA expression profile in MCF-7 cells. Twenty three miRNAs have been identified with differential expression after a 48 h treatment with 10 μg/ml Polyphenon-60 (green tea extract). These miRNAs include miR-21 and miR-27 that were found to be down-regulated following treatment with green tea. These two miRNAs have previously been identified as being overexpressed in MCF-7 breast cancer cells, with miR-21 specifically implicated in down-regulating the tumor suppressor gene, tropomyosin-1. This data supports the hypothesis that Polyphenon-60-induced modification of the breast cancer miRNA expression profile contributes to the efficacy of green tea treatment. The resulting decrease in carcinogenesis is further supported by the altered miRNA regulation of potential oncogenes and tumor-suppressor genes."	"Identification of a novel MYBPC3 gene variant in a patient with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic disorder characterized by cardiac hypertrophy caused by mutations in sarcomere protein genes. MYBPC3 mutations are reported as a frequent cause of HCM. We aimed to identify the gene mutation underlying HCM in an Italian patient and his family composed of 13 relatives. Mutation screening of 658 known mutations was performed using a rapid and efficient mutation detection system based on semiautomated MALDI-TOF mass spectrometry using the Sequenom MassArray System and iPLEX Gold genotyping chemistry. Subsequently, direct sequencing of the coding exons and flanking intronic regions was performed for the most suitable HCM genes (MYBPC3, MYH7, TNNT2, TNNI3, and TPM1) in the index patient. We found a novel MYBPC3 gene mutation: G13999T (Gln689His). No other sarcomere gene mutation was found in this family. This genetic variant, which changes the last amino acid of MYBPC3 exon 21, affects a highly conserved residue. Furthermore, the Gln689His does not appear in public databases and has never been described as a polymorphism. The potential pathogenic role of this novel mutation was underlined by its absence in a sample of healthy subjects (n = 122) from the general Italian population. In summary, a novel MYBPC3 gene mutation has been identified in a patient affected by HCM, whereas it was absent in 244 reference alleles."	"Expression of a novel tropomyosin isoform in axolotl heart and skeletal muscle. TPM1kappa is an alternatively spliced isoform of the TPM1 gene whose specific role in cardiac development and disease is yet to be elucidated. Although mRNA studies have shown TPM1kappa expression in axolotl heart and skeletal muscle, it has not been quantified. Also the presence of TPM1kappa protein in axolotl heart and skeletal muscle has not been demonstrated. In this study, we quantified TPM1kappa mRNA expression in axolotl heart and skeletal muscle. Using a newly developed TPM1kappa specific antibody, we demonstrated the expression and incorporation of TPM1kappa protein in myofibrils of axolotl heart and skeletal muscle. The results support the potential role of TPM1kappa in myofibrillogenesis and sarcomeric function."	"The R820W mutation in the MYBPC3 gene, associated with hypertrophic cardiomyopathy in cats, causes hypertrophic cardiomyopathy and left ventricular non-compaction in humans. The R820W mutation in the MYBPC3 gene has been associated with the development of hypertrophic cardiomyopathy (HCM) in rag-doll cats, but had not been described in humans. To describe the phenotype associated with the R820W mutation identified in a human family. The R820W was identified by direct sequencing of the MYBPC3 gene in a 47 year old woman with HCM and left ventricular non-compaction (LVNC). Clinical and genetic studies of the R820W mutation were performed in her family. The index patient was homozygous for the mutation and had no additional mutations in the main sarcomeric genes (MYH7, TNNT2, TNNI3, and TPM1). She had HCM with LVNC and normal systolic function. One brother had died suddenly at age 43 years. Another brother diagnosed of LVNC with severe systolic dysfunction and a cardiac arrest was also homozygous for the mutation. One heterozygous 31 year old sister, and three heterozygous sons of the index (ages 14, 20 and 23 years old) were clinically unaffected. The father of the index was apparently healthy and her mother had atrial fibrillation and an electrocardiographic diagnosis of left ventricular hypertrophy at age 86 years. The R820W mutation in the MYBPC3 gene, previously associated with HCM in rag-doll cats, causes both HCM and LVNC in homozygous human carriers, with mild or null clinical expression in heterozygous carriers."	"Stoichiometry of a regulatory splicing complex revealed by single-molecule analyses. Splicing is regulated by complex interactions of numerous RNA-binding proteins. The molecular mechanisms involved remain elusive, in large part because of ignorance regarding the numbers of proteins in regulatory complexes. Polypyrimidine tract-binding protein (PTB), which regulates tissue-specific splicing, represses exon 3 of alpha-tropomyosin through distant pyrimidine-rich tracts in the flanking introns. Current models for repression involve either PTB-mediated looping or the propagation of complexes between tracts. To test these models, we used single-molecule approaches to count the number of bound PTB molecules both by counting the number of bleaching steps of GFP molecules linked to PTB within complexes and by analysing their total emissions. Both approaches showed that five or six PTB molecules assemble. Given the domain structures, this suggests that the molecules occupy primarily multiple overlapping potential sites in the polypyrimidine tracts, excluding propagation models. As an alternative to direct looping, we propose that repression involves a multistep process in which PTB binding forms small local loops, creating a platform for recruitment of other proteins that bring these loops into close proximity."	"MicroRNAs and potential target interactions in psoriasis. Psoriasis is a chronic inflammatory skin disease often seen in patients with a genetic susceptibility. MicroRNAs (miRNA) are endogenous, short RNA molecules that can bind to parts of mRNA target genes, thus inhibiting their translation and causing accelerated turnover or transcript degradation. MicroRNAs are important in the pathogenesis of human diseases such as immunological disorders, as they regulate a broad range of biological processes. We investigated miRNA-mRNA interactions in involved (PP) and non-involved (PN) psoriatic skin compared with healthy skin (NN). Biopsies were obtained from PP, PN and NN, the miRNA and mRNA expression was analyzed by microarray techniques and a subset of miRNAs and mRNAs were validated by q-RT-PCR. Novel target interactions in psoriasis were found using PubMed, miRBase and RNAhybrid. In addition, TIMP3 protein expression was studied in PP, PN and NN. Finally, the miR-221/2-TIMP3 target interaction was studied in primary human keratinocytes by endogenous overexpression of the miRNAs. We identified 42 upregulated miRNAs and 5 downregulated miRNAs in PP compared with NN, and only few deregulated miRNAs in PN compared with NN. Based on the miRNA and mRNA profiles miR-21, -205, -221 and -222 were found to have the following potential mRNA targets in psoriatic skin: PDCD4, TPM1, P57, C-KIT, RTN4, SHIP2, TIMP3, RECK and NFIB. The identified target mRNAs were likely to be involved in cellular growth, proliferation, apoptosis and degradation of the extracellular matrix. Finally we found that TIMP3 is downregulated in psoriatic skin. In vitro overexpression of miR-221 and miR-222 lead to degradation of TIMP3 resulting in decreased TIMP3 protein level. Our data indicate several novel important associations for miRNAs in psoriasis and in particular the miR-221/2-TIMP3 target interaction could among others play a role in the psoriasis pathogenesis."	"Clinical features and outcome of hypertrophic cardiomyopathy associated with triple sarcomere protein gene mutations. The aim of this study was to describe the clinical profile associated with triple sarcomere gene mutations in a large hypertrophic cardiomyopathy (HCM) cohort. In patients with HCM, double or compound sarcomere gene mutation heterozygosity might be associated with earlier disease onset and more severe outcome. The occurrence of triple mutations has not been reported. A total of 488 unrelated index HCM patients underwent screening for myofilament gene mutations by direct deoxyribonucleic acid sequencing of 8 genes, including myosin binding protein C (MYBPC3), beta-myosin heavy chain (MYH7), regulatory and essential light chains (MYL2, MYL3), troponin-T (TNNT2), troponin-I (TNNI3), alpha-tropomyosin (TPM1), and actin (ACTC). Of the 488 index patients, 4 (0.8%) harbored triple mutations, as follows: MYH7-R869H, MYBPC3-E258K, and TNNI3-A86fs in a 32-year-old woman; MYH7-R723C, MYH7-E1455X, and MYBPC3-E165D in a 46-year old man; MYH7-R869H, MYBPC3-K1065fs, and MYBPC3-P371R in a 45-year old woman; and MYH7-R1079Q, MYBPC3-Q969X, and MYBPC3-R668H in a 50-year old woman. One had a history of resuscitated cardiac arrest, and 3 had significant risk factors for sudden cardiac death, prompting the insertion of an implantable cardioverter-defibrillator in all, with appropriate shocks in 2 patients. Moreover, 3 of 4 patients had a severe phenotype with progression to end-stage HCM by the fourth decade, requiring cardiac transplantation (n=1) or biventricular pacing (n=2). The fourth patient, however, had clinically mild disease. Hypertrophic cardiomyopathy caused by triple sarcomere gene mutations was rare but conferred a remarkably increased risk of end-stage progression and ventricular arrhythmias, supporting an association between multiple sarcomere defects and adverse outcome. Comprehensive genetic testing might provide important insights to risk stratification and potentially indicate the need for differential surveillance strategies based on genotype."	"Coding sequence rare variants identified in MYBPC3, MYH6, TPM1, TNNC1, and TNNI3 from 312 patients with familial or idiopathic dilated cardiomyopathy. Rare variants in &gt;30 genes have been shown to cause idiopathic or familial dilated cardiomyopathy (DCM), but the frequency of genetic causation remains poorly understood. We have previously resequenced 9 genes in a cohort of idiopathic or familial DCM probands for rare variants, and now we report resequencing results for 5 more genes with established relationships to DCM. Blood samples were collected, and DNA specimens were prepared from 312 patients, 181 with familial DCM and 131 with idiopathic DCM. Genomic DNA underwent bidirectional sequencing, and DNA of additional family members underwent analysis when a rare variant was identified. We identified rare variants in 34 probands (10.9% overall), including 29 unique protein-altering rare variants and 2 splicing variants that were absent in 246 control subjects (492 chromosomes). These variants were 12 MYBPC3 (myosin-binding protein C) in 13 (4.2%) probands, 8 MYH6 (alpha-myosin heavy chain) in 10 (3.2%), 6 TPM1 (tropomyosin) in 6 (1.9%), 4 TNNC1 (cardiac troponin C) in 4 (1.3%), and 1 TNNI3 (cardiac troponin I) in 2 (0.6%). Variants were classified as likely or possibly disease causing in 13 and 20 probands, respectively (n=33; 10.6% overall). One MYH6 variant was classified as unlikely to be disease causing. Rare variants in these 5 genes likely or possibly caused 10.6% of DCM in this cohort. When combined with our prior resequencing reports, approximately 27% of DCM probands had possible or likely disease-causing variants identified."	"Gene expression profiles of adipose tissue of high-fat diet-induced obese rats by cDNA microarrays. To better understand the molecular basis of dietary obesity, we examined adipose tissue genes differentially expressed in a well-characterized rat model of high-fat diet (HFD)-induced obesity using cDNA microarrays. Male Sprague-Dawley rats were fed either the HFD or the normal diet. Seven weeks later, the weights of obese models (362.92 ± 39.65 g) were significantly higher than those of normal control rats (315.22 ± 42.30 g, P &lt; 0.01) and the wet weights of adipose tissue of rats fed with HFD (9.29 ± 5.14 g) were significantly higher than those of normal control rats (4.09 ± 2.69 g, P &lt; 0.01), which confirmed the successful preparation of obese models. cDNA microarrays containing 9 216 genes/Ests were used to investigate gene expression of adipose tissue. Autoradiographic analysis showed that 532, 154, and 22 genes were differently expressed over 2-, 3-, and 5-fold, respectively. The analysis of gene expression profiles indicated that 276 genes were up-regulated and 432 genes were down-regulated in response to HFD-induced obesity. Different clusters of genes associated with lipid metabolism, extracellular matrix, signal transduction, cytoskeleton, cell apoptosis, etc., such as VLCS-H2, DGAT, ACADVL, PHYH, SCD, ACACA, ACS, MMP-2, MMP-15, CD38, CAMK2D, CACNA1F, CAPZA2, TMOD3, ARPC2, KNS2, TPM1, MAPK8, GADD45B, DAXX, TOK-1, PRKACA, STAT6, were concerned."	"Relationships between tropomyosin and myosin heavy chain isoforms in bovine skeletal muscle. The composition of tropomyosin (TPM) and myosin heavy chain (MyHC) isoforms was analyzed in 10 physiologically different bovine muscles (masseter, diaphragm, tongue, semispinalis, pectoralis profundus, biceps femoris, psoas major, semimembranosus, longissimus thoracis and semitendinosus) to clarify the relationships between TPM and MyHC isoforms in different muscle fiber types. The content of TPM1 and TPM3 was different in muscles according to their function in muscle contraction, although the content of TPM2 was constantly about 50% of the total TPM in all muscles. The content of TPM1 was higher in semimembranosus, longissimus thoracis and semitendinosus, while that of TPM3 was higher in masseter and diaphragm. The high positive correlation between MyHC-slow content and TPM3 content (r = 0.92) suggested a coexpression of TPM3 and MyHC-slow isoforms in a muscle fiber. MyHC-slow and TPM3 were expressed at the same level in masseter and diaphragm, whereas there was more TPM3 than MyHC-slow in tongue and semispinalis, so it appears that the excess TPM3 in tongue and semispinalis is expressed with other MyHC isoforms. MyHC-2a was the only fast type isoform expressed in tongue and semispinalis. Therefore, the excess TPM3 was composed of myofibrils with MyHC-2a. The results suggested that a fiber expressing MyHC-2a would be regulated delicately by changing the TPM isoform types."	"Familial dilated cardiomyopathy caused by an alpha-tropomyosin mutation: the distinctive natural history of sarcomeric dilated cardiomyopathy. We sought to further define the role of sarcomere mutations in dilated cardiomyopathy (DCM) and associated clinical phenotypes. Mutations in several contractile proteins contribute to DCM, but definitive evidence for the roles of most sarcomere genes remains limited by the lack of robust genetic support. Direct sequencing of 6 sarcomere genes was performed on 334 probands with DCM. A novel D230N missense mutation in the gene encoding alpha-tropomyosin (TPM1) was identified. Functional assessment was performed by the use of an in vitro reconstituted sarcomere complex to evaluate ATPase regulation and Ca(2+) affinity as correlates of contractility. TPM1 D230N segregated with DCM in 2 large unrelated families. This mutation altered an evolutionarily conserved residue and was absent in &gt;1,000 control chromosomes. In vitro studies demonstrated major inhibitory effects on sarcomere function with reduced Ca(2+) sensitivity, maximum activation, and Ca(2+) affinity compared with wild-type TPM1. Clinical manifestations ranged from decompensated heart failure or sudden death in those presenting early in life to asymptomatic left ventricular dysfunction in those diagnosed during adulthood. Notably, several affected infants had remarkable improvement. Genetic segregation in 2 unrelated families and functional analyses conclusively establish a pathogenic role for TPM1 mutations in DCM. In vitro results demonstrate contrasting effects of DCM and hypertrophic cardiomyopathy mutations in TPM1, suggesting that specific functional consequences shape cardiac remodeling. Along with previous reports, our data support a distinctive, age-dependent phenotype with sarcomere-associated DCM where presentation early in life is associated with severe, sometimes lethal, disease. These observations have implications for the management of familial DCM."	"Polymorphisms in the tropomyosin TPM1 short isoform promoter alter gene expression and are associated with increased risk of metabolic syndrome. Inflammation contributes to the development of atherosclerotic lesions in the metabolic syndrome. Tropomyosin isoform expression is altered in this disease and has a role in inflammatory cell plasticity, motility, and insulin sensitivity. We determined the frequency of haplotype carriage of three single-nucleotide polymorphisms (SNPs) in the short isoform promoter of the TPM1 gene in 300 normal controls and 500 metabolic syndrome patients. The effect of each haplotype on tropomyosin gene expression was assessed. PCR-restriction fragment length polymorphism assays were developed for each polymorphism. Promoter activity was measured using luciferase assays in the insulin-sensitive human embryonic kidney (HEK) 293 and the monocyte THP-1 lines. The SNPs -111(T/C), -426(T/C), and -491(A/G), relative to the TPM1 short isoform transcription start site, occurred in haplotypes ATT, GCT, GTT, and GTC, and were in strong linkage disequilibrium. ATT had a frequency of 66%. The presence of -491G, which conforms to a predicted binding site for transcription factor AML-1, caused a decrease in gene expression of 24% in the HEK 293 cells. In the THP-1 cells, haplotypes GTC and GTT gave 24% lower expression, whereas haplotype GCT gave expression at wild-type levels. The carriage of a -491G allele gave an odds ratio of 1.4 (95% CI 1.02-1.8) for the metabolic syndrome (P &lt; 0.03). A polymorphism in the TPM1 short isoform promoter region is predicted to alter transcription factor binding, alters gene expression and is associated with the metabolic syndrome. This could affect inflammatory cells and cytoskeleton-mediated insulin signaling."	"Molecular and functional characterization of a novel cardiac-specific human tropomyosin isoform. Tropomyosin (TM), an essential actin-binding protein, is central to the control of calcium-regulated striated muscle contraction. Although TPM1alpha (also called alpha-TM) is the predominant TM isoform in human hearts, the precise TM isoform composition remains unclear. In this study, we quantified for the first time the levels of striated muscle TM isoforms in human heart, including a novel isoform called TPM1kappa. By developing a TPM1kappa-specific antibody, we found that the TPM1kappa protein is expressed and incorporated into organized myofibrils in hearts and that its level is increased in human dilated cardiomyopathy and heart failure. To investigate the role of TPM1kappa in sarcomeric function, we generated transgenic mice overexpressing cardiac-specific TPM1kappa. Incorporation of increased levels of TPM1kappa protein in myofilaments leads to dilated cardiomyopathy. Physiological alterations include decreased fractional shortening, systolic and diastolic dysfunction, and decreased myofilament calcium sensitivity with no change in maximum developed tension. Additional biophysical studies demonstrate less structural stability and weaker actin-binding affinity of TPM1kappa compared with TPM1alpha. This functional analysis of TPM1kappa provides a possible mechanism for the consequences of the TM isoform switch observed in dilated cardiomyopathy and heart failure patients."	"Prevalence of sarcomere protein gene mutations in preadolescent children with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) in infants and children is thought to be commonly associated with metabolic disorders and malformation syndromes. Familial disease caused by mutations in cardiac sarcomere protein genes, which accounts for most cases in adolescents and adults, is believed to be a very rare cause of HCM. Seventy-nine consecutive patients diagnosed with HCM aged 13 years or younger underwent detailed clinical and genetic evaluation. The protein-coding sequences of 9 sarcomere protein genes (MYH7, MYBPC3, TNNI3, TNNT2, TPM1, MYL2, MYL3, ACTC, and TNNC1), the genes encoding desmin (DES), and the gamma-2 subunit of AMP kinase (PRKAG2) were screened for mutations. A family history of HCM was present in 48 patients (60.8%). Forty-seven mutations (15 novel) were identified in 42 (53.2%) patients (5 patients had 2 mutations). The genes most commonly implicated were MYH7 (48.9%) and MYBPC3 (36.2%); mutations in TNNT2, ACTC, MYL3, and TNNI3 accounted for &lt;5% of cases each. A total of 16.7% patients with sarcomeric mutations were diagnosed before 1 year of age. There were no differences in clinical and echocardiographic features between those children with sarcomere protein gene mutations and those without or between patients with 2 mutations and those with 1 or no mutations. This study shows that familial disease is common among infants and children with HCM and that, in most cases, disease is caused by mutations in cardiac sarcomere protein genes. The major implication is that all first-degree relatives of any child diagnosed with HCM should be offered screening. Furthermore, the finding that one sixth of patients with sarcomeric disease were diagnosed in infancy suggests that current views on pathogenesis and natural history of familial HCM may have to be revised."	"Protein expression profiling of lens epithelial cells from Prdx6-depleted mice and their vulnerability to UV radiation exposure. Oxidative stress is one of the causative factors in progression and etiology of age-related cataract. Peroxiredoxin 6 (Prdx6), a savior for cells from internal or external environmental stresses, plays a role in cellular signaling by detoxifying reactive oxygen species (ROS) and thereby controlling gene regulation. Using targeted inactivation of the Prdx6 gene, we show that Prdx6-deficient lens epithelial cells (LECs) are more vulnerable to UV-triggered cell death, a major cause of skin disorders including cataractogenesis, and these cells display abnormal protein profiles. PRDX6-depleted LECs showed phenotypic changes and formed lentoid body, a characteristic of terminal cell differentiation and epithelial-mesenchymal transition. Prdx6(-/-) LECs exposed to UV-B showed higher ROS expression and were prone to apoptosis compared with wild-type LECs, underscoring a protective role for Prdx6. Comparative proteomic analysis using fluorescence-based difference gel electrophoresis along with mass spectrometry and database searching revealed a total of 13 proteins that were differentially expressed in Prdx6(-/-) cells. Six proteins were upregulated, whereas expression of seven proteins was decreased compared with Prdx6(+/+) LECs. Among the cytoskeleton-associated proteins that were highly expressed in Prdx6-deficient LECs was tropomyosin (Tm)2beta. Protein blot and real-time PCR validated dramatic increase of Tm2beta and Tm1alpha expression in these cells. Importantly, Prdx6(+/+) LECs showed a similar pattern of Tm2beta protein expression after transforming growth factor (TGF)-beta or H(2)O(2) treatment. An extrinsic supply of PRDX6 could restore Tm2beta expression, demonstrating that PRDX6 may attenuate adverse signaling in cells and thereby maintain cellular homeostasis. Exploring redox-proteomics (Prdx6(-/-)) and characterization and identification of abnormally expressed proteins and their attenuation by PRDX6 delivery should provide a basis for development of novel therapeutic interventions to postpone ROS-mediated abnormal signaling deleterious to cells or tissues."	"Presence of activating KRAS mutations correlates significantly with expression of tumour suppressor genes DCN and TPM1 in colorectal cancer. Despite identification of the major genes and pathways involved in the development of colorectal cancer (CRC), it has become obvious that several steps in these pathways might be bypassed by other as yet unknown genetic events that lead towards CRC. Therefore we wanted to improve our understanding of the genetic mechanisms of CRC development. We used microarrays to identify novel genes involved in the development of CRC. Real time PCR was used for mRNA expression as well as to search for chromosomal abnormalities within candidate genes. The correlation between the expression obtained by real time PCR and the presence of the KRAS mutation was investigated. We detected significant previously undescribed underexpression in CRC for genes SLC26A3, TPM1 and DCN, with a suggested tumour suppressor role. We also describe the correlation between TPM1 and DCN expression and the presence of KRAS mutations in CRC. When searching for chromosomal abnormalities, we found deletion of the TPM1 gene in one case of CRC, but no deletions of DCN and SLC26A3 were found. Our study provides further evidence of decreased mRNA expression of three important tumour suppressor genes in cases of CRC, thus implicating them in the development of this type of cancer. Moreover, we found underexpression of the TPM1 gene in a case of CRCs without KRAS mutations, showing that TPM1 might serve as an alternative path of development of CRC. This downregulation could in some cases be mediated by deletion of the TPM1 gene. On the other hand, the correlation of DCN underexpression with the presence of KRAS mutations suggests that DCN expression is affected by the presence of activating KRAS mutations, lowering the amount of the important tumour suppressor protein decorin."	"The effect of the dilated cardiomyopathy-causing mutation Glu54Lys of alpha-tropomyosin on actin-myosin interactions during the ATPase cycle. In order to understand how the Glu54Lys mutation of alpha-tropomyosin affects actomyosin interactions, we labeled SH1 helix of myosin subfragment-1 (S1) and the actin subdomain-1 with fluorescent probes. These proteins were incorporated into ghost muscle fibers and their conformational states were monitored during the ATPase cycle by measuring polarized fluorescence. The addition of wild-type alpha-tropomyosin to actin filaments increases the amplitude of the SH1 helix and subdomain-1 movements during the ATPase cycle, indicating the enhancement of the efficiency of work of each cross-bridge. The Glu54Lys mutation inhibits this effect. The Glu54Lys mutation also results in the coupling of the weak-binding sub-state of S1 to the strong-binding sub-state of actin thus altering the concerted conformational changes during the ATPase cycle. We suggest that these alterations will result in reduced force production, which is likely to underlie at least in part the contractile deficit observed in human dilated cardiomyopathy."	"PRDX6 attenuates oxidative stress- and TGFbeta-induced abnormalities of human trabecular meshwork cells. Oxidative stress and TGFbeta-induced disturbance of cells and tissues are implicated in initiation and progression of pathophysiology of cells/tissues. Using primary human trabecular meshwork (TM) cells from normal and glaucomatous subjects, this study demonstrated that peroxiredoxin (PRDX) 6, an antioxidant, offsets the deleterious effects of oxidative stress on TM cells by optimizing ROS and TGFbeta levels. An analysis of glaucomatous TM cells revealed a reduced expression of PRDX6 mRNA and protein. Biochemical assays disclosed enhanced levels of ROS, as well as high levels of TGFbetas and these cells expressed elevated extracellular matrix (ECM) and Tsp1 proteins with reduced MMP2; conditions implicated in the pathophysiology of glaucoma. Non-glaucomatous TM cells exposed to TGFbetas/ROS showed similar features as in glaucomatous cells. The abnormalities induced were reversed by delivery of PRDX6. The data provide evidence that oxidative stress-induced abnormality in TM may be related to reduced PRDX6 expression and provide a foundation for antioxidant-based therapeutics for treating glaucoma."	"MiR-21 indicates poor prognosis in tongue squamous cell carcinomas as an apoptosis inhibitor. We aim to examine miR-21 expression in tongue squamous cell carcinomas (TSCC) and correlate it with patient clinical status, and to investigate its contribution to TSCC cell growth, apoptosis, and tumorigenesis. MicroRNA profiling was done in 10 cases of TSCC with microarray. MiR-21 overexpression was quantitated with quantitative reverse transcription-PCR in 103 patients, and correlated to the pathoclinical status of the patients. Immunohistochemistry was used to examine the expression of TPM1 and PTEN, and terminal deoxynucleotidyl transferase-mediated dUTP labeling to evaluate apoptosis. Moreover, miR-21 antisense oligonucleotide (ASO) was transfected in SCC-15 and CAL27 cell lines, and tumor cell growth was determined by 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide, adherent colony formation, and soft agar assay, whereas apoptosis was determined by Annexin V assay, cytochrome c release, and caspase 3 assay. Tumorigenesis was evaluated by xenografting SCC-15 cells in nude mice. MiR-21 is overexpressed in TSCC relative to adjacent normal tissues. The level of miR-21 is reversely correlated with TPM1 and PTEN expression and apoptosis of cancer cells. Multivariate analysis showed that miR-21 expression is an independent prognostic factor indicating poor survival. Inhibiting miR-21 with ASO in TSCC cell lines reduces survival and anchorage-independent growth, and induces apoptosis in TSCC cell lines. Simultaneous silencing of TPM1 with siRNA only partially recapitulates the effect of miR-21 ASO. Furthermore, repeated injection of miR-21 ASO suppresses tumor formation in nude mice by reducing cell proliferation and inducing apoptosis. miR-21 is an independent prognostic indicator for TSCC, and may play a role in TSCC development by inhibiting cancer cell apoptosis partly via TPM1 silencing."	"Expression of miR-21 and its targets (PTEN, PDCD4, TM1) in flat epithelial atypia of the breast in relation to ductal carcinoma in situ and invasive carcinoma. Flat epithelial atypia (FEA) of the breast is characterised by a few layers of mildly atypical luminal epithelial cells. Genetic changes found in ductal carcinoma in situ (DCIS) and invasive ductal breast cancer (IDC) are also found in FEA, albeit at a lower concentration. So far, miRNA expression changes associated with invasive breast cancer, like miR-21, have not been studied in FEA. We performed miRNA in-situ hybridization (ISH) on 15 cases with simultaneous presence of normal breast tissue, FEA and/or DCIS and 17 additional cases with IDC. Expression of the miR-21 targets PDCD4, TM1 and PTEN was investigated by immunohistochemistry. Two out of fifteen cases showed positive staining for miR-21 in normal breast ductal epithelium, seven out of fifteen cases were positive in the FEA component and nine out of twelve cases were positive in the DCIS component. A positive staining of miR-21 was observed in 15 of 17 IDC cases. In 12 cases all three components were present in one tissue block and an increase of miR-21 from normal breast to FEA and to DCIS was observed in five cases. In three cases the FEA component was negative, whereas the DCIS component was positive for miR-21. In three other cases, normal, FEA and DCIS components were negative for miR-21 and in the last case all three components were positive. Overall we observed a gradual increase in percentage of miR-21 positive cases from normal, to FEA, DCIS and IDC. Immunohistochemical staining for PTEN revealed no obvious changes in staining intensities in normal, FEA, DCIS and IDC. Cytoplasmic staining of PDCD4 increased from normal to IDC, whereas, the nuclear staining decreased. TM1 staining decreased from positive in normal breast to negative in most DCIS and IDC cases. In FEA, the staining pattern for TM1 was similar to normal breast tissue. Upregulation of miR-21 from normal ductal epithelial cells of the breast to FEA, DCIS and IDC parallels morphologically defined carcinogenesis. No clear relation was observed between the staining pattern of miR-21 and its previously reported target genes."	"MicroRNA-21 directly targets MARCKS and promotes apoptosis resistance and invasion in prostate cancer cells. Prostate cancer is one of the most common malignant cancers in men. Recent studies have shown that microRNA-21 (miR-21) is overexpressed in various types of cancers including prostate cancer. Studies on glioma, colon cancer cells, hepatocellular cancer cells and breast cancer cells have indicated that miR-21 is involved in tumor growth, invasion and metastasis. However, the roles of miR-21 in prostate cancer are poorly understood. In this study, the effects of miR-21 on prostate cancer cell proliferation, apoptosis, and invasion were examined. In addition, the targets of miR-21 were identified by a reported RISC-coimmunoprecipitation-based biochemical method. Inactivation of miR-21 by antisense oligonucleotides in androgen-independent prostate cancer cell lines DU145 and PC-3 resulted in sensitivity to apoptosis and inhibition of cell motility and invasion, whereas cell proliferation were not affected. We identified myristoylated alanine-rich protein kinase c substrate (MARCKS), which plays key roles in cell motility, as a new target in prostate cancer cells. Our data suggested that miR-21 could promote apoptosis resistance, motility, and invasion in prostate cancer cells and these effects of miR-21 may be partly due to its regulation of PDCD4, TPM1, and MARCKS. Gene therapy using miR-21 inhibition strategy may therefore be useful as a prostate cancer therapy."	"The role of sarcomere gene mutations in patients with idiopathic dilated cardiomyopathy. We investigated a Danish cohort of 31 unrelated patients with idiopathic dilated cardiomyopathy (IDC), to assess the role that mutations in sarcomere protein genes play in IDC. Patients were genetically screened by capillary electrophoresis single strand conformation polymorphism and subsequently by bidirectional DNA sequencing of conformers in the coding regions of MYH7, MYBPC3, TPM1, ACTC, MYL2, MYL3, TNNT2, CSRP3 and TNNI3. Eight probands carried disease-associated genetic variants (26%). In MYH7, three novel mutations were found; in MYBPC3, one novel variant and two known mutations were found; and in TNNT2, a known mutation was found. One proband was double heterozygous. We find evidence of phenotypic plasticity: three mutations described earlier as HCM causing were found in four cases of IDC, with no history of a hypertrophic phase. Furthermore, one pedigree presented with several cases of classic DCM as well as one case with left ventricular non-compaction. Disease-causing sarcomere gene mutations were found in about one-quarter of IDC patients, and seem to play an important role in the causation of the disease. The genetics is as complex as seen in HCM. Thus, our data suggest that a genetic work-up should include screening of the most prominent sarcomere genes even in the absence of a family history of the disease."	"Human tropomyosin isoforms in the regulation of cytoskeleton functions. Over the past two decades, extensive molecular studies have identified multiple tropomyosin isoforms existing in all mammalian cells and tissues. In humans, tropomyosins are encoded by TPM1 (alpha-Tm, 15q22.1), TPM2 (beta-Tm, 9p13.2-p13.1), TPM3 (gamma-Tm, 1q21.2) and TPM4 (delta-Tm, 19p13.1) genes. Through the use of different promoters, alternatively spliced exons and different sites of poly(A) addition signals, at least 22 different tropomyosin cDNAs with full-length open reading frame have been cloned. Compelling evidence suggests that these isoforms play important determinants for actin cytoskeleton functions, such as intracellular vesicle movement, cell migration, cytokinesis, cell proliferation and apoptosis. In vitro biochemical studies and in vivo localization studies suggest that different tropomyosin isoforms have differences in their actin-binding properties and their effects on other actin-binding protein functions and thus, in their specification ofactin microfilaments. In this chapter, we will review what has been learned from experimental studies on human tropomyosin isoforms about the mechanisms for differential localization and functions of tropomyosin. First, we summarize current information concerning human tropomyosin isoforms and relate this to the functions of structural homologues in rodents. We will discuss general strategies for differential localization oftropomyosin isoforms, particularly focusing on differential protein turnover and differential isoform effects on other actin binding protein functions. We will then review tropomyosin functions in regulating cell motility and in modulating the anti-angiogenic activity of cleaved high molecular weight kininogen (HKa) and discuss future directions in this area."	"Tropomyosin exons as models for alternative splicing. Three of the four mammalian tropomyosin (Tm) genes are alternatively spliced, most commonly by mutually exclusive selection from pairs of internal or 3' end exons. Alternative splicing events in the TPM1, 2 and 3 genes have been analysed experimentally in various levels ofdetail. In particular, mutually exclusive exon pairs in the betaTm (TPM2) and alphaTm (TPM1) genes are among the most intensively studied models for striated and smooth muscle specific alternative splicing, respectively. Analysis of these model systems has provided important insights into general mechanisms and strategies of splicing regulation."	"Ras alters epithelial-mesenchymal transition in response to TGFbeta by reducing actin fibers and cell-matrix adhesion. TGF-beta and Ras regulate epithelial-mesenchymal transition (EMT), a process that contributes to tumor invasion and metastasis. The interaction of these pathways in EMT is still poorly understood. Here, we show that TGF-beta induces EMT but limits cell invasion whereas hyperactivated Ras (H-RasV12) does not cause EMT but enhances cell invasion, alleviating the inhibitory effect of TGF-beta. TGF-beta disrupts cell junctions and induces tropomyosin-mediated actin fibers and matrix adhesion. Smad transcription factors mediate both steps of the TGF-beta-induced EMT whereas RasV12 inhibits the second step by blocking the induction of tropomyosins (TPM1) and reducing cell-matrix adhesion and integrin signaling. RasV12 prevents binding of Smads to the TPM1 promoter by forcing CRM1-dependent nuclear export of Smad4. Soft agar and animal studies demonstrate that RasV12 confers the metastatic potential in epithelial cells, whereas tropomyosin suppresses tumor growth and metastases. Thus, TGF-beta-induced EMT is not sufficient for the acquisition of the invasive potential and activated Ras alters this TGF-beta response, conferring the tumorigenic and invasive potential."	"[Mutations in sarcomeric genes MYH7, MYBPC3, TNNT2, TNNI3, and TPM1 in patients with hypertrophic cardiomyopathy]. Mutation of a sarcomeric gene is the most frequent cause of hypertrophic cardiomyopathy. For each such gene, however, previous studies have reported a range of different mutation frequencies, and clinical manifestations have been highly heterogeneous, both of which limit the use of genetic information in clinical practice. Our aim was to determine the frequency of mutations in the sarcomeric genes MYH7, MYBPC3, TNNT2, TNNI3, and TPM1 in a cohort of Spanish patients with hypertrophic cardiomyopathy. We used sequencing to analyze the coding regions of these five genes in 120 patients (29% with a family history) and investigated how the patient phenotype varied with the gene mutated. In total, 32 patients were found to have mutations: 10 in MYH7 (8%), 20 in MYBPC3 (16%), 2 in TNNT2, 1 in TPM1 and none in TNNI3. Overall, 61% of mutations had not been described before. Two patients had two mutations (i.e., double mutants). There was no difference in the mean age at diagnosis or the extent of the hypertrophy between those with MYH7 mutations and those with MYBPC3 mutations. Some 26% of patients had a mutation in one of the five sarcomeric genes investigated. More than half of the mutations had not been described before. The MYBPC3 gene was the most frequently mutated, followed by MYH7. No phenotypic differences were observed between carriers of the various mutations, which makes it difficult to use genetic information to stratify risk in these patients."	"A nonsense exon in the Tpm1 gene is silenced by hnRNP H and F. As well as generating protein isoform diversity, in some cases alternative splicing generates RNAs that harbor premature termination codons and that are subject to nonsense-mediated decay (NMD). We previously identified an apparent pseudo-exon in the rat alpha-tropomyosin (Tpm1) gene as a probable genuine alternatively spliced exon that causes NMD when spliced into Tpm1 RNA. Here, we report the analysis of cis-acting splicing regulatory elements within this &quot;nonsense exon.&quot; Guided by the data set of predicted splicing enhancer and silencer elements compiled by Zhang and Chasin, we made a series of mutations through the nonsense exon and found that like authentic exons it is densely packed with enhancer and silencer elements. Strikingly, 11 of 13 tested mutations behaved as predicted computationally. In particular, we found that a G-rich silencer at the 5' end, which is crucial for skipping of the nonsense exon, functions by binding hnRNP-H and F."	"Diagnostic yield, interpretation, and clinical utility of mutation screening of sarcomere encoding genes in Danish hypertrophic cardiomyopathy patients and relatives. The American Heart Association (AHA) recommends family screening for hypertrophic cardiomyopathy (HCM). We assessed the outcome of family screening combining clinical evaluation and screening for sarcomere gene mutations in a cohort of 90 Danish HCM patients and their close relatives, in all 451 persons. Index patients were screened for mutations in all coding regions of 10 sarcomere genes (MYH7, MYL3, MYBPC3, TNNI3, TNNT2, TPM1, ACTC, CSRP3, TCAP, and TNNC1) and five exons of TTN. Relatives were screened for presence of minor or major diagnostic criteria for HCM and tracking of DNA variants was performed. In total, 297 adult relatives (&gt;18 years) (51.2%) fulfilled one or more criteria for HCM. A total of 38 HCM-causing mutations were detected in 32 index patients. Six patients carried two disease-associated mutations. Twenty-two mutations have only been identified in the present cohort. The genetic diagnostic yield was almost twice as high in familial HCM (53%) vs. HCM of sporadic or unclear inheritance (19%). The yield was highest in families with an additional history of HCM-related clinical events. In relatives, 29.9% of mutation carriers did not fulfil any clinical diagnostic criterion, and in 37.5% of relatives without a mutation, one or more criteria was fulfilled. A total of 60% of family members had no mutation and could be reassured and further follow-up ceased. Genetic diagnosis may be established in approximately 40% of families with the highest yield in familial HCM with clinical events. Mutation-screening was superior to clinical investigation in identification of individuals not at increased risk, where follow-up is redundant, but should be offered in all families with relatives at risk for developing HCM."	"Intrinsic capability of budding yeast cofilin to promote turnover of tropomyosin-bound actin filaments. The ability of actin filaments to function in cell morphogenesis and motility is closely coupled to their dynamic properties. Yeast cells contain two prominent actin structures, cables and patches, both of which are rapidly assembled and disassembled. Although genetic studies have shown that rapid actin turnover in patches and cables depends on cofilin, how cofilin might control cable disassembly remains unclear, because tropomyosin, a component of actin cables, is thought to protect actin filaments against the depolymerizing activity of ADF/cofilin. We have identified cofilin as a yeast tropomyosin (Tpm1) binding protein through Tpm1 affinity column and mass spectrometry. Using a variety of assays, we show that yeast cofilin can efficiently depolymerize and sever yeast actin filaments decorated with either Tpm1 or mouse tropomyosins TM1 and TM4. Our results suggest that yeast cofilin has the intrinsic ability to promote actin cable turnover, and that the severing activity may rely on its ability to bind Tpm1."	"Adverse events in families with hypertrophic or dilated cardiomyopathy and mutations in the MYBPC3 gene. Mutations in MYBPC3 encoding myosin binding protein C belong to the most frequent causes of hypertrophic cardiomyopathy (HCM) and may also lead to dilated cardiomyopathy (DCM). MYBPC3 mutations initially were considered to cause a benign form of HCM. The aim of this study was to examine the clinical outcome of patients and their relatives with 18 different MYBPC3 mutations. 87 patients with HCM and 71 patients with DCM were screened for MYBPC3 mutations by denaturing gradient gel electrophoresis and sequencing. Close relatives of mutation carriers were genotyped for the respective mutation. Relatives with mutation were then evaluated by echocardiography and magnetic resonance imaging. A detailed family history regarding adverse clinical events was recorded. In 16 HCM (18.4%) and two DCM (2.8%) index patients a mutation was detected. Seven mutations were novel. Mutation carriers exhibited no additional mutations in genes MYH7, TNNT2, TNNI3, ACTC and TPM1. Including relatives of twelve families, a total number of 42 mutation carriers was identified of which eleven (26.2%) had at least one adverse event. Considering the twelve families and six single patients with mutations, 45 individuals with cardiomyopathy and nine with borderline phenotype were identified. Among the 45 patients, 23 (51.1%) suffered from an adverse event. In eleven patients of seven families an unexplained sudden death was reported at the age between 13 and 67 years. Stroke or a transient ischemic attack occurred in six patients of five families. At least one adverse event occurred in eleven of twelve families. MYBPC3 mutations can be associated with cardiac events such as progressive heart failure, stroke and sudden death even at younger age. Therefore, patients with MYBPC3 mutations require thorough clinical risk assessment."	"A tropomyosin 1 induced defect in cytokinesis can be rescued by elevated expression of cofilin. Cytokinesis in eukaryotic cells is mediated by the contractile ring, an actomyosin-based structure which provides the force required to separate daughter cells. Isoforms of the actin-binding protein tropomyosin are also localised to the contractile ring in both fission yeast and human astrocytes. Although tropomyosin is required for cytokinesis in yeast, its precise role in the contractile ring is unknown. In this study we find that increased expression of a single tropomyosin isoform, tropomyosin 1, in U373MG astrocytoma cells leads to multinucleated cells and mitotic spindle defects. Furthermore, cells expressing increased levels of tropomyosin 1 usually fail to complete cytokinesis and this is accompanied by reduced accumulation of actin depolymerising factor/cofilin in the contractile ring. Adenovirus mediated expression of cofilin is able to relieve the tropomyosin 1 induced effects on cytokinesis. We conclude that tropomyosin 1 and cofilin play antagonistic roles within the contractile ring and that the balance between tropomyosin 1 and cofilin expression is important for cytokinesis."	"A proteomics study on human breast cancer cell lines by fluorogenic derivatization-liquid chromatography/tandem mass spectrometry. Although several molecular markers for human breast cancer exist, their versatility is limited. Here we demonstrate, through a differential proteome analysis utilizing the fluorogenic derivatization-liquid chromatography/tandem mass spectrometry (FD-LC-MS/MS) method between seven cancer cells and one normal cell, that the presence of cooperatively expressed annexin-2 and galectin-1 without tropomyosin-1 in a tissue could be used to diagnose metastatic breast cancer. Interestingly, in a metastatic cancer cell, the expression of the former two together with highly expressed cofilin-1 activates the Rho signal pathway to aggressively form disorganized actin filaments. Despite the excess expression of annexin-2 and galectin-1 in the normal cell, the highly expressed tropomyosin-1 counteracted the activity of cofilin-1 and stabilized the filaments, resulting in the restoration of the disorganization. This phenomenon suggests that enhancement of tropomyosin-1 should be used as therapy for metastatic breast cancer."	"Expression of chloride intracellular channel protein 1 (CLIC1) and tumor protein D52 (TPD52) as potential biomarkers for colorectal cancer. Unequivocal biomarkers are needed to predict susceptibility and progression of colorectal cancer. Paired samples of tumor and normal tissue from six patients with colorectal cancer of different localization, pTNM stage and grade were employed in the present study. MS analysis was used to identify differentially regulated proteins after 2-DE separation and densitometric analysis. Densitometric analysis revealed differential abundance of 55 spots in tumor as compared to normal tissues. Thirty nine out of 55 spots were unambiguously identified by MS representing 32 different proteins. CLIC1, TPD52 and FABPL were consistently overexpressed (&gt;3-fold, P&lt;0.05) in all tumor tissue samples, while TPM1, TPM2, TPM3, TAGL and MLRN were consistently down-regulated (&gt;3-fold, P&lt;0.05) compared to normal tissue. CLIC1 and TPD52 were significantly (P&lt;0.05) up-regulated in all cases of colorectal cancer investigated, irrespective of localization, pTNM stage and grade of colon cancer highlighting their potential to serve as new biomarkers."	"Proteomic analysis of mononuclear cells of patients with minimal-change nephrotic syndrome of childhood. Background/Aims. Recently, peripheral blood mononuclear cell transcriptome analysis has identified genes that are upregulated in relapsing minimal-change nephrotic syndrome (MCNS). In order to investigate protein expression in peripheral blood mononuclear cells (PBMC) from relapsing MCNS patients, we performed proteomic comparisons of PBMC from patients with MCNS in relapse and controls. PBMC from a total of 20 patients were analysed. PBMC were taken from five patients with relapsing MCNS, four in remission, five patients with other glomerular diseases and six controls. Two dimensional electrophoresis was performed and proteome patterns were compared. Automatic heuristic clustering analysis allowed us to pool correctly the gels from the MCNS patients in the relapse and in the control groups. Using hierarchical population matching, nine spots were found to be increased in PBMC from MCNS patients in relapse. Four spots were identified by mass spectrometry. Three of the four proteins identified (L-plastin, alpha-tropomyosin and annexin III) were cytoskeletal-associated proteins. Using western blot and immunochemistry, L-plastin and alpha-tropomyosin 3 concentrations were found to be enhanced in PBMC from MCNS patients in relapse. Conclusions. These data indicate that a specific proteomic profile characterizes PBMC from MCNS patients in relapse. Proteins involved in PBMC cytoskeletal rearrangement are increased in relapsing MCNS. We hypothesize that T-cell cytoskeletal rearrangement may play a role in the pathogenesis of MCNS by altering the expression of cell surface receptors and by modifying the interaction of these cells with glomerular cells."	"Identification of novel epigenetically modified genes in human melanoma via promoter methylation gene profiling. The inactivation of tumor-related genes through the aberrant methylation of promoter CpG islands is thought to contribute to tumor initiation and progression. We therefore investigated promoter methylation events involved in cutaneous melanoma by screening 30 genes of interest for evidence of promoter hypermethylation, examining 20 melanoma cell lines and 40 freshly procured melanoma samples. Utilizing quantitative methylation-specific PCR, we identified five genes (SOCS1, SOCS2, RAR-beta 2, TNFSF10C, and TNFSF10D) with hypermethylation frequencies ranging from 50% to 80% in melanoma cell lines as well as freshly procured tissue samples. Eighteen genes (LOX, RASSF1A, WFDC1, TM, APC, TFPI2, TNFSF10A, CDKN2A, MGMT, TIMP3, ASC, TPM1, IRF8, CIITA-PIV, CDH1, SYK, HOXB13, and DAPK1) were methylated at lower frequencies (2-30%). Two genes (CDKN1B and PTEN), previously reported as methylated in melanoma, and five other genes (RECK, IRF7, PAWR, TNFSF10B, and Rb) were not methylated in the samples screened here. Daughter melanoma cell lines showed identical methylation patterns when compared with original samples from which they were derived, as did synchronous metastatic lesions from the same patient. We identified four genes (TNFSF10C, TNFSF10D, LOX, and TPM1) that have never before been identified as hypermethylated in melanoma, with an overall methylation frequency of 60, 80, 50, and 10%, respectively, hypothesizing that these genes may play an important role in melanoma progression."	"Hepatocarcinogenic susceptibility of rasH2 mice to troglitazone in a two-stage hepatocarcinogenesis model. Six-week-old rasH2 mice were injected intraperitoneally with N-diethylnitrosamine (DEN) after partial hepatectomy and administrated 0 or 6,000 ppm troglitazone (TRG) for 10 weeks. Relative liver weight of females increased significantly in the DEN + TRG group compared to the DEN-alone group. The numbers of gamma-glutamyltranspeptidase- and proliferating cell nuclear antigen (PCNA)-positive cells tended to increase in both the sexes in the DEN + TRG group; however, these changes were not significantly different from those in the DEN-alone group. Levels of gene expressions for vascular endothelial growth factor (VEGF) and VEGFB (related to angiogenesis), tropomyosin 1 (Tpm1) and transforming growth factor-beta (related to ras/MAPK cascade activation), and PCNA (related to cell proliferation) in females were significantly higher in the DEN + TRG than in the untreated control group but not in the DEN-alone group. Only Tpm1 gene had significantly higher expression in the DEN + TRG group than in the DEN-alone group. These results suggest that rasH2 mice are not susceptible to TRG in a two-stage hepatocarcinogenesis model."	"Heart-specific isoform of tropomyosin4 is essential for heartbeat in zebrafish embryos. Tropomyosin (Tpm) proteins, encoded by four Tpm genes (Tpm1-4), are associated with the stabilization of the F-actin filaments and play important roles in modulating muscle contraction. So far, little is known about Tpm4 function in embryonic heart development and its involvement in the cardiovascular diseases. In this study, we investigated functions of different isoforms of tpm4 in embryonic heartbeat in zebrafish. The transgenic zebrafish line, T2EGEZ8, was generated by insertion of a Tol2 transposon gene trap vector, and homozygous mutants (T2EGEZ8(m/m)) of this line showed failure of embryonic heartbeat without other detectable phenotypes. Observation by transmission electron microscopy revealed that the ventricular myocytes of mutant fish contained fewer, disorganized myofibrillar filaments. The transposon genome in T2EGEZ8 fish was found by thermal asymmetric interlaced-polymerase chain reaction (TAIL-PCR) and reverse transcription-polymerase chain reaction to have inserted into the ninth intron of the tpm4 locus, which resulted in production of Tpm4-GFP fusion proteins and loss of normal transcripts tpm4-tv1 and tpm4-tv2. Whole-mount in situ hybridization indicated that tpm4-tv1, encoding a peptide of 284 residues, is specifically expressed in the heart of zebrafish embryos, while tpm4-tv2, encoding a peptide of 248 residues, is mainly present in the vasculature but absent in the heart. Knockdown of tpm4-tv1 and tpm4-tv2 within wild-type embryos led to the failure of heartbeat, which could be rescued by coinjection with tpm4-tv1 mRNA but not with tpm4-tv2 mRNA. Tpm4-tv1 is a heart-specific isoform of Tpm4 and is essential for heartbeat in zebrafish embryos."	"A DNA resequencing array for pathogenic mutation detection in hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a heterogeneous autosomal dominant cardiac disorder with a prevalence of 1 in 500. Over 450 different pathogenic mutations in at least 16 genes have been identified so far. The large allelic and genetic heterogeneity of HCM requires high-throughput, rapid, and affordable mutation detection technologies to efficiently integrate molecular screening into clinical practice. We developed a custom DNA resequencing array that contains both strands of all coding exons (160), splice-site junctions, and 5'UTR regions of 12 genes that have been clearly implicated in HCM (MYH7, MYBPC3, TNNT2, TPM1, TNNI3, MYL3, MYL2, CSRP3, PLN, ACTC, TNNC1, and PRKAG2). We analyzed a first series of 38 unrelated patients with HCM (17 familial, 21 sporadic). A total of 953,306 bp across the 38 patients were sequenced with a mean nucleotide call rate of 96.92% (range: 93-99.9%). Pathogenic mutations (single nucleotide substitutions) in MYH7, MYBPC3, TNNI3, and MYL3 (six known and six novel) were identified in 60% (10/17) of familial HCM and 10% of sporadic cases (2/21). The high-throughput HCM resequencing array is the most rapid and cost-effective tool for molecular testing of HCM to date; it thus has considerable potential in diagnostic and predictive testing, and prognostic stratification."	"Shared genetic causes of cardiac hypertrophy in children and adults. The childhood onset of idiopathic cardiac hypertrophy that occurs without a family history of cardiomyopathy can portend a poor prognosis. Despite morphologic similarities to genetic cardiomyopathies of adulthood, the contribution of genetics to childhood-onset hypertrophy is unknown. We assessed the family and medical histories of 84 children (63 boys and 21 girls) with idiopathic cardiac hypertrophy diagnosed before 15 years of age (mean [+/-SD] age, 6.99+/-6.12 years). We sequenced eight genes: MYH7, MYBPC3, TNNT2, TNNI3, TPM1, MYL3, MYL2, and ACTC. These genes encode sarcomere proteins that, when mutated, cause adult-onset cardiomyopathies. We also sequenced PRKAG2 and LAMP2, which encode metabolic proteins; mutations in these genes can cause early-onset ventricular hypertrophy. We identified mutations in 25 of 51 affected children without family histories of cardiomyopathy and in 21 of 33 affected children with familial cardiomyopathy. Among 11 of the 25 children with presumed sporadic disease, 4 carried new mutations and 7 inherited the mutations. Mutations occurred predominantly (in &gt;75% of the children) in MYH7 and MYBPC3; significantly more MYBPC3 missense mutations were detected than occur in adult-onset cardiomyopathy (P&lt;0.005). Neither hypertrophic severity nor contractile function correlated with familial or genetic status. Cardiac transplantation and sudden death were more prevalent among mutation-positive than among mutation-negative children; implantable cardioverter-defibrillators were more frequent (P=0.007) in children with family histories that were positive for the mutation. Genetic causes account for about half of presumed sporadic cases and nearly two thirds of familial cases of childhood-onset hypertrophy. Childhood-onset hypertrophy should prompt genetic analyses and family evaluations."	"Alternative splicing in colon, bladder, and prostate cancer identified by exon array analysis. Alternative splicing enhances proteome diversity and modulates cancer-associated proteins. To identify tissue- and tumor-specific alternative splicing, we used the GeneChip Human Exon 1.0 ST Array to measure whole-genome exon expression in 102 normal and cancer tissue samples of different stages from colon, urinary bladder, and prostate. We identified 2069 candidate alternative splicing events between normal tissue samples from colon, bladder, and prostate and selected 15 splicing events for RT-PCR validation, 10 of which were successfully validated by RT-PCR and sequencing. Furthermore 23, 19, and 18 candidate tumor-specific splicing alterations in colon, bladder, and prostate, respectively, were selected for RT-PCR validation on an independent set of 81 normal and tumor tissue samples. In total, seven genes with tumor-specific splice variants were identified (ACTN1, CALD1, COL6A3, LRRFIP2, PIK4CB, TPM1, and VCL). The validated tumor-specific splicing alterations were highly consistent, enabling clear separation of normal and cancer samples and in some cases even of different tumor stages. A subset of the tumor-specific splicing alterations (ACTN1, CALD1, and VCL) was found in all three organs and may represent general cancer-related splicing events. In silico protein predictions suggest that the identified cancer-specific splice variants encode proteins with potentially altered functions, indicating that they may be involved in pathogenesis and hence represent novel therapeutic targets. In conclusion, we identified and validated alternative splicing between normal tissue samples from colon, bladder, and prostate in addition to cancer-specific splicing events in colon, bladder, and prostate cancer that may have diagnostic and prognostic implications."	"Tropomyosin expression and dynamics in developing avian embryonic muscles. The expression of striated muscle proteins occurs early in the developing embryo in the somites and forming heart. A major component of the assembling myofibrils is the actin-binding protein tropomyosin. In vertebrates, there are four genes for tropomyosin (TM), each of which can be alternatively spliced. TPM1 can generate at least 10 different isoforms including the striated muscle-specific TPM1alpha and TPM1kappa. We have undertaken a detailed study of the expression of various TM isoforms in 2-day-old (stage HH 10-12; 33 h) heart and somites, the progenitor of future skeletal muscles. Both TPM1alpha and TPM1kappa are expressed transiently in embryonic heart while TPM1alpha is expressed in somites. Both RT-PCR and in situ hybridization data suggest that TPM1kappa is expressed in embryonic heart whereas TPM1alpha is expressed in embryonic heart, and also in the branchial arch region of somites, and in the somites. Photobleaching studies of Yellow Fluorescent Protein-TPM1alpha and -TPM1kappa expressed in cultured avian cardiomyocytes revealed that the dynamics of the two probes was the same in both premyofibrils and in mature myofibrils. This was in sharp contrast to skeletal muscle cells in which the fluorescent proteins were more dynamic in premyofibrils. We speculate that the differences in the two muscles is due to the appearance of nebulin in the skeletal myocytes premyofibrils transform into mature myofibrils."	"MicroRNA-21 targets tumor suppressor genes in invasion and metastasis. MicroRNAs (miRNAs) are a class of naturally occurring small non-coding RNAs that target protein-coding mRNAs at the post-transcriptional level. Our previous studies suggest that mir-21 functions as an oncogene and has a role in tumorigenesis, in part through regulation of the tumor suppressor gene tropomyosin 1 (TPM1). Given that TPM1 has been implicated in cell migration, in this study we further investigated the role of mir-21 in cell invasion and tumor metastasis. We found that suppression of mir-21 in metastatic breast cancer MDA-MB-231 cells significantly reduced invasion and lung metastasis. Consistent with this, ectopic expression of TPM1 remarkably reduced cell invasion. Furthermore, we identified two additional direct mir-21 targets, programmed cell death 4 (PDCD4) and maspin, both of which have been implicated in invasion and metastasis. Like TPM1, PDCD4 and maspin also reduced invasiveness of MDA-MB-231 cells. Finally, the expression of PDCD4 and maspin inversely correlated with mir-21 expression in human breast tumor specimens, indicating the potential regulation of PDCD4 and maspin by mir-21 in these tumors. Taken together, the results suggest that, as an oncogenic miRNA, mir-21 has a role not only in tumor growth but also in invasion and tumor metastasis by targeting multiple tumor/metastasis suppressor genes. Therefore, suppression of mir-21 may provide a novel approach for the treatment of advanced cancers."	"Analysis of unregulated formin activity reveals how yeast can balance F-actin assembly between different microfilament-based organizations. Formins are regulated actin-nucleating proteins that are widespread among eukaryotes. Overexpression of unregulated formins in budding yeast is lethal and causes a massive accumulation of disorganized cable-like filaments. To explore the basis of this lethality, a cDNA library was screened to identify proteins whose overexpression could rescue the lethality conferred by unregulated Bnr1p expression. Three classes of suppressors encoding actin-binding proteins were isolated. One class encodes proteins that promote the assembly of actin cables (TPM1, TPM2, and ABP140), suggesting that the lethality was rescued by turning disorganized filaments into functional cables. The second class encodes proteins that bind G-actin (COF1, SRV2, and PFY1), indicating that reduction of the pool of actin available for cable formation may also rescue lethality. Consistent with this, pharmacological or genetic reduction of available actin also protected the cell from overproduction of unregulated Bnr1p. The third class consists of Las17p, an activator of the formin-independent Arp2/3p-dependent actin nucleation pathway. These results indicate that proper assembly of actin cables is sensitive to the appropriate balance of their constituents and that input into one pathway for actin filament assembly can affect another. Thus, cells must have a way of ensuring a proper balance between actin assembly pathways."	"Ultra short yeast tropomyosins show novel myosin regulation. Tropomyosin (Tm) is an alpha-helical coiled-coil actin-binding protein present in all eukaryotes from yeast to man. Its functional role has been best described in muscle regulation; however its much wider role in cytoskeletal actin regulation is still to be clarified. Isoforms vary in size from 284 or 248 amino acids in vertebrates, to 199 and 161 amino acids in yeast, spanning from 7 to 4 actin binding sites respectively. In Saccharomyces cerevisiae, the larger yTm1 protein is produced by an internal 38-amino acid duplication, corresponding to a single actin-binding site. We have produced an ultra-short Tm with only 125 amino acids by removing both of the 38 amino acid repeats from yTm1, with the addition of an Ala-Ser extension used to mimic the essential N-terminal acetylation. This short Tm, and an M1T mutant of it, bind to actin with a similar affinity to most Tms previously studied (K(50%) approximately 0.5 microm). However, an equilibrium fluorescence binding assay shows a much greater inhibition of myosin binding to actin than any previously studied Tm. Actin cosedimentation assays show this is caused by direct competition for binding to actin. The M1T mutant shows a reduced inhibition, probably due to weaker end-to-end interactions making it easier for myosin to displace Tm. All previously characterized Tms, although able to sterically block the myosin-binding site, are able to bind to actin along with myosin. By showing that Tm can compete directly with myosin for the same binding site these new Tms provide direct evidence for the steric blocking model."	"Nebulette interacts with filamin C. The actin-binding proteins, nebulette, and nebulin, are comprised of a four-domain layout containing an acidic N-terminal region, a repeat domain, a serine-rich-linker region, and a Src homology-3 domain. Both proteins contain homologous N-terminal regions that are predicted to be in different environments within the sarcomere. The nebulin acidic N-terminal region is found at the distal ends of the thin filaments. Nebulette, however, is predicted to extend 150 nm from the center of the Z-line. To dissect out the functions of the N-terminal domain of nebulette, we have performed a yeast two-hybrid screen using nebulette residues 1-86 as bait. We have identified filamin-C, ZASP-1, and tropomyosin-1 as binding partners. Characterization of the nebulette-filamin interaction indicates that filamin-C predominantly interacts with the modules. These data suggest that filamin-C, a known component of striated muscle Z-lines, interacts with nebulette modules."	"DAP kinase mediates the phosphorylation of tropomyosin-1 downstream of the ERK pathway, which regulates the formation of stress fibers in response to oxidative stress. Endothelial cells are actively involved in regulating the exchanges between blood and tissues. This function is tightly dependent on actin cytoskeleton dynamics and is challenged by a wide variety of stimuli, including oxidative stress. In endothelial cells, oxidative stress quickly activates the extracellular-signal-regulated kinase (ERK) MAP kinase, which results in the phosphorylation of tropomyosin. Here, we investigated further the mechanisms of tropomyosin phosphorylation and its function in actin remodeling. We identified, for the first time, death-associated protein kinase 1 (DAP kinase 1) as the kinase that phosphorylates tropomyosin-1 in response to ERK activation by hydrogen peroxide (H(2)O(2)). We also report that the phosphorylation of tropomyosin-1 mediated by DAP kinase occurs on Ser283. Moreover, the expression of the pseudophosphorylated tropomyosin mutant Ser283Glu triggers by itself the formation of stress fibers in untreated cells, and the effect is maintained in H(2)O(2)-treated cells in which DAP kinase expression is knocked-down by siRNA. By contrast, the expression of the nonphosphorylatable tropomyosin mutant Ser283Ala is not associated with stress fibers and leads to membrane blebbing in response to H(2)O(2). Our finding that tropomyosin-1 is phosphorylated downstream of ERK and DAP kinase and that it helps regulate the formation of stress fibers will aid understanding the role of this protein in regulating the endothelial functions associated with cytoskeletal remodeling."	"Role of high-molecular weight tropomyosins in TGF-beta-mediated control of cell motility. Transforming growth factor beta1 (TGF-beta1) suppresses tumor development at early stages of cancer, but enhances tumor invasion and formation of metastasis. TGF-beta1-mediated tumor invasion is associated with epithelial to mesenchymal transition (EMT) and matrix proteolysis. The mechanisms of these TGF-beta1 responses in normal and tumor cells are not well understood. Recently, we have reported that TGF-beta1 increases expression of high-molecular weight tropomyosins (HMW-tropomyosins) and formation of actin stress fibers in normal epithelial cells. The present study investigated the role of tropomyosin in TGF-beta1-mediated cell motility and invasion. We found that TGF-beta1 restricts motility of normal epithelial cells although it promotes EMT and formation of actin stress fibers and focal adhesions. Cell motility was enhanced by siRNA-mediated suppression of HMW-tropomyosins. TGF-beta1 stimulated migration and matrix proteolysis in breast cancer MDA-MB-231 cells that express low levels of HMW-tropomyosins. Tet-Off-regulated expression of HMW-tropomyosin inhibited cell migration and matrix proteolysis without affecting expression of matrix metalloproteinases. Tropomyosin increased cell adhesion to matrix by enhancing actin fibers and focal adhesions. Finally, tropomyosin impaired the ability of tumor cells to form lung metastases in SCID mice. Thus, these results suggest that HMW-tropomyosins are important for TGF-beta-mediated control of cell motility and acquisition of the metastatic potential."	"Ectopic expression and dynamics of TPM1alpha and TPM1kappa in myofibrils of avian myotubes. From the four known vertebrate tropomyosin genes (designated TPM1, TPM2, TPM3, and TPM4) over 20 isoforms can be generated. The predominant TPM1 isoform, TPM1alpha, is specifically expressed in both skeletal and cardiac muscles. A newly discovered alternatively spliced isoform, TPM1kappa, containing exon 2a instead of exon 2b contained in TPM1alpha, was found to be cardiac specific and developmentally regulated. In this work, we transfected quail skeletal muscle cells with green fluorescent proteins (GFP) coupled to chicken TPM1alpha and chicken TPM1kappa and compared their localizations in premyofibrils and mature myofibrils. We used the technique of fluorescence recovery after photobleaching (FRAP) to compare the dynamics of TPM1alpha and TPM1kappa in myotubes. TPM1alpha and TPM1kappa incorporated into premyofibrils, nascent myofibrils, and mature myofibrils of quail myotubes in identical patterns. The two tropomyosin isoforms have a higher exchange rate in premyofibrils than in mature myofibrils. F-actin and muscle tropomyosin are present in the same fibers at all three stages of myofibrillogenesis (premyofibrils, nascent myofibrils, mature myofibrils). In contrast, the tropomyosin-binding molecule nebulin is not present in the initial premyofibrils. Nebulin is gradually added during myofibrillogenesis, becoming fully localized in striated patterns by the mature myofibril stage. A model of thin filament formation is proposed to explain the increased stability of tropomyosin in mature myofibrils. These experiments are supportive of a maturing thin filament and stepwise model of myofibrillogenesis (premyofibrils to nascent myofibrils to mature myofibrils), and are inconsistent with models that postulate the immediate appearance of fully formed thin filaments or myofibrils."	"Dilated cardiomyopathy mutant tropomyosin mice develop cardiac dysfunction with significantly decreased fractional shortening and myofilament calcium sensitivity. Mutations in striated muscle alpha-tropomyosin (alpha-TM), an essential thin filament protein, cause both dilated cardiomyopathy (DCM) and familial hypertrophic cardiomyopathy. Two distinct point mutations within alpha-tropomyosin are associated with the development of DCM in humans: Glu40Lys and Glu54Lys. To investigate the functional consequences of alpha-TM mutations associated with DCM, we generated transgenic mice that express mutant alpha-TM (Glu54Lys) in the adult heart. Results showed that an increase in transgenic protein expression led to a reciprocal decrease in endogenous alpha-TM levels, with total myofilament TM protein levels remaining unaltered. Histological and morphological analyses revealed development of DCM with progression to heart failure and frequently death by 6 months. Echocardiographic analyses confirmed the dilated phenotype of the heart with a significant decrease in the left ventricular fractional shortening. Work-performing heart analyses showed significantly impaired systolic, and diastolic functions and the force measurements of cardiac myofibers revealed that the myofilaments had significantly decreased Ca(2+) sensitivity and tension generation. Real-time RT-PCR quantification demonstrated an increased expression of beta-myosin heavy chain, brain natriuretic peptide, and skeletal actin and a decreased expression of the Ca(2+) handling proteins sarcoplasmic reticulum Ca(2+)-ATPase and ryanodine receptor. Furthermore, our study also indicates that the alpha-TM54 mutation decreases tropomyosin flexibility, which may influence actin binding and myofilament Ca(2+) sensitivity. The pathological and physiological phenotypes exhibited by these mice are consistent with those seen in human DCM and heart failure. As such, this is the first mouse model in which a mutation in a sarcomeric thin filament protein, specifically TM, leads to DCM."	"Myocardial perfusion, oxidative metabolism, and free fatty acid uptake in patients with hypertrophic cardiomyopathy attributable to the Asp175Asn mutation in the alpha-tropomyosin gene: a positron emission tomography study. The relationship between myocardial metabolic changes and the severity of left ventricular (LV) hypertrophy in patients with hypertrophic cardiomyopathy (HCM) is largely unknown. We characterized metabolic abnormalities in patients with a genetically identical cause for HCM but with variable LV hypertrophy. Eight patients with HCM attributable to the Asp175Asn mutation in the alpha-tropomyosin gene underwent myocardial perfusion, oxidative, and free fatty acid (FFA) metabolism measurements via positron emission tomography and oxygen 15-labeled water, carbon 11 acetate, and fluorine 14(R,S)-[18F] Fluoro-6-thia-heptadecanoic acid (18 FTHA). LV mass, work, and efficiency were assessed by echocardiography. Thirty-six healthy volunteers served as control subjects. Compared with control subjects, HCM patients had increased myocardial oxidative metabolism and FFA uptake (P &lt; .05). However, in patients, LV mass was inversely related to global myocardial perfusion, oxidative metabolism, and FFA uptake (all P &lt; .03), and regional wall thickness was inversely related to regional perfusion (P &lt; .01), oxidative metabolism (P &lt; .001), and FFA uptake (P &lt; .01). Therefore patients with mild (LV mass less than median of 177 g) but not advanced LV hypertrophy were characterized by increased perfusion, oxidative metabolism, and LV efficiency as compared with control subjects (P &lt; .05). In HCM attributable to the Asp175Asn mutation in the alpha-tropomyosin gene, myocardial oxidative metabolism and FFA metabolism are increased and inversely related to LV hypertrophy at both the whole heart and regional level. Increased metabolism and efficiency characterize patients with mild myocardial hypertrophy. These hypermetabolic alterations regress with advanced hypertrophy."	"Image-guided cardiovascular functional genomics: finding the needle in the haystack. NA"	"Acetylation regulates tropomyosin function in the fission yeast Schizosaccharomyces pombe. Tropomyosin is an evolutionarily conserved alpha-helical coiled-coil protein that promotes and maintains actin filaments. In yeast, Tropomyosin-stabilised filaments are used by molecular motors to transport cargoes or to generate motile forces by altering the dynamics of filament growth and shrinkage. The Schizosaccharomyces pombe tropomyosin Cdc8 localises to the cytokinetic actomyosin ring during mitosis and is absolutely required for its formation and function. We show that Cdc8 associates with actin filaments throughout the cell cycle and is subjected to post-translational modification that does not vary with cell cycle progression. At any given point in the cell cycle 80% of Cdc8 molecules are acetylated, which significantly enhances their affinity for actin. Reconstructions of electron microscopic images of actin-Cdc8 filaments establish that the majority of Cdc8 strands sit in the 'closed' position on actin filaments, suggesting a role in the regulation of myosin binding. We show that Cdc8 regulates the equilibrium binding of myosin to actin without affecting the rate of myosin binding. Unacetylated Cdc8 isoforms bind actin, but have a reduced ability to regulate myosin binding to actin. We conclude that although acetylation of Cdc8 is not essential, it provides a regulatory mechanism for modulating actin filament integrity and myosin function."	"Repairing the myofilaments to heal the heart. NA"	"Rescue of tropomyosin-induced familial hypertrophic cardiomyopathy mice by transgenesis. Familial hypertrophic cardiomyopathy (FHC) is a disease caused by mutations in contractile proteins of the sarcomere. Our laboratory developed a mouse model of FHC with a mutation in the thin filament protein alpha-tropomyosin (TM) at amino acid 180 (Glu180Gly). The hearts of these mice exhibit dramatic systolic and diastolic dysfunction, and their myofilaments demonstrate increased calcium sensitivity. The mice also develop severe cardiac hypertrophy, with death ensuing by 6 mo. In an attempt to normalize calcium sensitivity in the cardiomyofilaments of the hypertrophic mice, we generated a chimeric alpha-/beta-TM protein that decreases calcium sensitivity in transgenic mouse cardiac myofilaments. By mating mice from these two models together, we tested the hypothesis that an attenuation of myofilament calcium sensitivity would modulate the severe physiological and pathological consequences of the FHC mutation. These double-transgenic mice &quot;rescue&quot; the hypertrophic phenotype by exhibiting a normal morphology with no pathological abnormalities. Physiological analyses of these rescued mice show improved cardiac function and normal myofilament calcium sensitivity. These results demonstrate that alterations in calcium response by modification of contractile proteins can prevent the pathological and physiological effects of this disease."	"Muscle type specific expression of tropomyosin isoforms in bovine skeletal muscles. Nucleotide sequences encoding an entire coding region for bovine tropomyosin (TPM) isoforms were determined. Three TPM isoforms, TPM1, TPM2 and TPM3, were expressed in bovine skeletal muscles, and exhibited a 93.3%, 99.6% and 100% amino acid homology to the human sequence, respectively. Based on the sequences, the composition of TPM isoforms was analyzed on cDNA and protein levels from five physiologically different muscles (masseter, diaphragm, psoas major, longissimus thoracis and semitendinosus) using RT-PCR and proteome analyses. Although the content of TPM2 was constantly about 50% of the total TPM in all muscles, the contents of TPM1 and TPM3 were different in muscles according to their function in muscle contraction. In masseter, the content of TPM3 cDNA was about 50% and higher than that of other muscles. In longissimus thoracis and semitendinosus, the contents of TPM1 cDNA were 29.6% and 31.7%, respectively, which were comparatively higher than that of other muscles. The result suggests that the TPM dimer consists of the TPM2 subunit regularly and TPM1 or TPM3 depending on whether the muscle is fast or slow type, respectively."	"Biomechanical signals upregulate myogenic gene induction in the presence or absence of inflammation. Inflammation of the muscle invariably leads to muscle cell damage and impaired regeneration. Biomechanical signals play a vital role in the regulation of myogenesis in healthy and inflamed muscle. We hypothesized that biomechanical signals counteract the actions of proinflammatory mediators and upregulate the basic helix-loop-helix and MADS box transcription enhancer factor 2 (MEF2) families of transcription factors, leading to increased myogenesis in inflamed muscle cells. For this purpose, C2C12 cells plated on collagenized silastic membranes were subjected to equibiaxial cyclic tensile strain (CTS) in the presence or absence of TNF-alpha, and the myogenic gene induction was examined over a period of 72 h. Exposure of cells to CTS resulted in a significant upregulation of mRNA expressions and synthesis of myogenic regulatory factors, MYOD1, myogenin (MYOG), MEF2A, and cyclin-dependent kinase inhibitor 1A (CDKN1A; p21) as well as muscle structural proteins like myosin heavy chain (MYHC) isoforms (MYH1, MYH2, and MYH4) and alpha-tropomyosin (TPM1), eventually leading to an increase in myotube formation. Contrarily, TNF-alpha suppressed the expression of all of the above differentiation-inducing factors in C2C12 cells. Further results revealed that simultaneous exposure of C2C12 cells to CTS and TNF-alpha abrogated the TNF-alpha-mediated downregulation of myogenic differentiation. In fact, the mRNA expression and protein synthesis of all myogenic factors (Myod1, Myog, Mef2a, Cdkn1a, Myh1, Myh2, Myh4, and Tpm1) were increased in stretched C2C12 cells despite the sustained presence of TNF-alpha. These results demonstrate that mechanotransduction regulates multiple signaling molecules involved in C2C12 cell differentiation. On one hand, these signals are potent transducers of myotube phenotype in myoblasts; on the other, these signals counteract catabolic actions of proinflammatory cytokines like TNF-alpha and allow the expression of myogenic genes to upregulate muscle cell differentiation."	"MicroRNA-21 targets the tumor suppressor gene tropomyosin 1 (TPM1). MicroRNAs are small noncoding RNA molecules that control expression of target genes. Our previous studies show that mir-21 is overexpressed in tumor tissues compared with the matched normal tissues. Moreover, suppression of mir-21 by antisense oligonucleotides inhibits tumor cell growth both in vitro and in vivo. However, it remains largely unclear as to how mir-21 affects tumor growth, because our understanding of mir-21 targets is limited. In this study, we performed two-dimensional differentiation in-gel electrophoresis of tumors treated with anti-mir-21 and identified the tumor suppressor tropomyosin 1 (TPM1) as a potential mir-21 target. In agreement with this, there is a putative mir-21 binding site at the 3'-untranslated region (3'-UTR) of TPM1 variants V1 and V5. Thus, we cloned the 3'-UTR of TPM1 into a luciferase reporter and found that although mir-21 down-regulated the luciferase activity, anti-mir-21 up-regulated it. Moreover, deletion of the mir-21 binding site abolished the effect of mir-21 on the luciferase activity, suggesting that this mir-21 binding site is critical. Western blot with the cloned TPM1-V1 plus the 3'-UTR indicated that TPM1 protein level was also regulated by mir-21, whereas real-time quantitative reverse transcription-PCR revealed no difference at the mRNA level, suggesting translational regulation. Finally, overexpression of TPM1 in breast cancer MCF-7 cells suppressed anchorage-independent growth. Thus, down-regulation of TPM1 by mir-21 may explain, at least in part, why suppression of mir-21 can inhibit tumor growth, further supporting the notion that mir-21 functions as an oncogene."	"Application of scaling factors in simultaneous modeling of microarray data from diverse chips. Microarrays have been utilized in many biological, physiological and pharmacological studies as a high-throughput genomic technique. Several generations of Affymetrix GeneChip microarrays are widely used in gene expression studies. However, differences in intensities of signals for different probe sets that represent the same gene on various types of Affymetrix chips make comparison of datasets complicated. A power coefficient scaling factor was applied in the pharmacokinetic/pharmacodynamic (PK/PD) modeling to account for differences in probe set sensitivities (i.e., signal intensities). Microarray data from muscle and liver following methylprednisolone 50 mg/kg i.v. bolus and 0.3 mg/kg/h infusion regimens were taken as an exemplar. The scaling factor applied to the pharmacodynamic output function was used to solve the problem of intensity differences between probe sets. This approach yielded consistent pharmacodynamic parameters for the applied models. Modeling of pharmacodynamic/pharmacogenomic (PD/PG) data from diverse chips should be performed with caution due to differential probe set intensities. In such circumstances, a power scaling factor can be applied in the modeling."	"Differentially expressed genes and morphological changes during lengthened immobilization in rat soleus muscle. To examine the effect of lengthened immobilization on the expression of genes and concomitant morphological changes in soleus muscle, rat hindlimbs were immobilized at the ankle in full dorsiflexion by plaster cast. After removing the muscle (after 1 hr, 1, 4, and 7 days of immobilization), morphology and differential gene expression were analyzed through electron microscopy and differential display reverse transcription-polymerase chain reaction (DDRT-PCR), respectively. At the myotendinous junction (MTJ), a large cytoplasmic space appeared after 1 hr of immobilization and became enlarged over time, together with damaged Z lines. Interfibrillar space was detected after 1 day of immobilization, but diminished after 7 days. At the muscle belly, Z-line streaming and widening were observed following 1 hr of immobilization. Disorganization of myofilaments (misalignment of adjacent sarcomeres, distortion, or absence of Z lines) was detected after 4 days. Furthermore, mitochondrial swelling and cristae disruption were observed after 1 day of stretching. A set of 15 differentially expressed candidate genes was identified through DDRT-PCR. Of 11 known genes, seven (Atp5g3, TOM22, INrf2, Slc25a4, Hdac6, Tpm1, and Sv2b) were up and three (Podxl, Myh1, and Surf1) were down-regulated following immobilization. In the case of Acyp2, 1-day stretching-specific expression was observed. Atp5g3, Slc25a4, TOM22, and Surf1 are mitochondrial proteins related to energy metabolism, except TOM22, which has a chaperone-like activity located in the mitochondrial outer membrane. Together with these, INrf2, Hdac6, Podxl, and Acyp2 are related more or less to stress-induced apoptosis, indicating the responses to apoptotic changes in mitochondria caused by stretching. The expression of both Tpm1 and Myh1, fast twitch isoforms, suggests adaption to the immobilization. These results altogether indicate that lengthened immobilization regulates the expression of several stress/apoptosis-related and muscle-specific genes responsible for the slow-to-fast transition in soleus muscle despite profound muscle atrophy."	"Autonomic cardiac control in animal models of cardiovascular diseases II. Variability analysis in transgenic rats with alpha-tropomyosin mutations Asp175Asn and Glu180Gly. Animal models of cardiovascular diseases allow to investigate relevant pathogenetic mechanisms in detail. In the present study, the mutations Asp175Asn and Glu180Gly in alpha-tropomyosin (TPM1), known cause familiar hypertrophic cardiomyopathy (FHC) were studied for changes in hemodynamic parameters and spontaneous baroreflex regulation in transgenic rats in comparison to transgenic and non-transgenic controls by telemetry. Heart rate variability (HRV) and blood pressure variability (BPV) were analyzed using time- and frequency domain, as well as non-linear measures. The dual sequence method was used for the estimation of the baroreflex regulation. In transgenic rats harboring mutated TPM1, changes in HRV were detected during exercise, but not at rest. Both mutations, Asp175Asn and Glu180Gly, caused increased low frequency power. In addition, in animals with mutation Asp175Asn a reduced total HRV was observed. BPV did not show any differences between all transgenic animal lines. During exercise, a strong increase in the number of bradycardic and tachycardic fluctuations accompanied with decreased baroreflex sensitivity (BRS) was detected in animals with either TPM1 mutation, Asp175Asn or Glu180Gly. These data suggest, that the analysis of cardiac autonomic control, particularly of baroreflex regulation, represents a powerful non-invasive approach to investigate the effects of subtle changes in sarcomeric architecture on cardiac physiology in vivo. In case of mutations Asp175Asn or Glu180Gly in TPM1, early detection of alterations in autonomic cardiac control could help to prevent sudden cardiac death in affected persons."	"Alternative splicing and differential gene expression in colon cancer detected by a whole genome exon array. Alternative splicing is a mechanism for increasing protein diversity by excluding or including exons during post-transcriptional processing. Alternatively spliced proteins are particularly relevant in oncology since they may contribute to the etiology of cancer, provide selective drug targets, or serve as a marker set for cancer diagnosis. While conventional identification of splice variants generally targets individual genes, we present here a new exon-centric array (GeneChip Human Exon 1.0 ST) that allows genome-wide identification of differential splice variation, and concurrently provides a flexible and inclusive analysis of gene expression. We analyzed 20 paired tumor-normal colon cancer samples using a microarray designed to detect over one million putative exons that can be virtually assembled into potential gene-level transcripts according to various levels of prior supporting evidence. Analysis of high confidence (empirically supported) transcripts identified 160 differentially expressed genes, with 42 genes occupying a network impacting cell proliferation and another twenty nine genes with unknown functions. A more speculative analysis, including transcripts based solely on computational prediction, produced another 160 differentially expressed genes, three-fourths of which have no previous annotation. We also present a comparison of gene signal estimations from the Exon 1.0 ST and the U133 Plus 2.0 arrays. Novel splicing events were predicted by experimental algorithms that compare the relative contribution of each exon to the cognate transcript intensity in each tissue. The resulting candidate splice variants were validated with RT-PCR. We found nine genes that were differentially spliced between colon tumors and normal colon tissues, several of which have not been previously implicated in cancer. Top scoring candidates from our analysis were also found to substantially overlap with EST-based bioinformatic predictions of alternative splicing in cancer. Differential expression of high confidence transcripts correlated extremely well with known cancer genes and pathways, suggesting that the more speculative transcripts, largely based solely on computational prediction and mostly with no previous annotation, might be novel targets in colon cancer. Five of the identified splicing events affect mediators of cytoskeletal organization (ACTN1, VCL, CALD1, CTTN, TPM1), two affect extracellular matrix proteins (FN1, COL6A3) and another participates in integrin signaling (SLC3A2). Altogether they form a pattern of colon-cancer specific alterations that may particularly impact cell motility."	"Identification of differentially expressed genes in the developing antler of red deer Cervus elaphus. Understanding the molecular mechanisms underlying bone development is a fundamental and fascinating problem in developmental biology, with significant medical implications. Here, we have identified the expression patterns for 36 genes that were characteristic or dominant in the consecutive cell differentiation zones (mesenchyme, precartilage, cartilage) of the tip section of the developing velvet antler of red deer Cervus elaphus. Two major functional groups of these genes clearly outlined: six genes linked to high metabolic demand and other five to tumor biology. Our study demonstrates the advantages of the antler as a source of mesenchymal markers, for distinguishing precartilage and cartilage by different gene expression patterns and for identifying genes involved in the robust bone development, a striking feature of the growing antler. Putative roles for &quot;antler&quot; genes that encode alpha-tropomyosine (tpm1), transgelin (tagln), annexin 2 (anxa2), phosphatidylethanolamine-binding protein (pebp) and apolipoprotein D (apoD) in intense but still controlled tissue proliferation are discussed."	"Dynamic organization of the actin cytoskeleton during meiosis and spore formation in budding yeast. During sporulation in Saccharomyces cerevisiae, the four daughter cells (spores) are formed inside the boundaries of the mother cell. Here, we investigated the dynamics of spore assembly and the actin cytoskeleton during this process, as well as the requirements for filamentous actin during the different steps of spore formation. We found no evidence for a polarized actin cytoskeleton during sporulation. Instead, a highly dynamic network of non-polarized actin cables is present underneath the plasma membrane of the mother cell. We found that a fraction of prospore membrane (PSM) precursors are transported along the actin cables. The velocity of PSM precursors is diminished if Myo2p or Tpm1/2p function is impaired. Filamentous actin is not essential for meiotic progression, for shaping of the PSMs or for post-meiotic cytokinesis. However, actin is essential for spore wall formation. This requires the function of the Arp2/3p complex and involves large carbohydrate-rich compartments, which may be chitosome analogous structures."	"Decreased platelet expression of myosin regulatory light chain polypeptide (MYL9) and other genes with platelet dysfunction and CBFA2/RUNX1 mutation: insights from platelet expression profiling. We have reported on a patient with thrombocytopenia, impaired platelet aggregation, secretion, phosphorylation of pleckstrin and myosin light chain (MLC), and GPIIb-IIIa activation, associated with a heterozygous mutation in transcription factor CBFA2 (core binding factor A2, RUNX1 or AML1). To obtain insights into the abnormal platelet mechanisms and CBFA2-regulated genes, we performed platelet expression profiling in four control subjects and the patient using the Affymetrix U133 GeneChips. In the patient, 298 probe sets were significantly downregulated at least 2-fold. MLC regulatory polypeptide (MYL9 gene) was decreased approximately 77-fold; this is an important finding because agonist-stimulated MLC phosphorylation is decreased in patient platelets. Genes downregulated &gt; or = 5-fold include those involving calcium binding proteins (CABP5), ion transport (sodium/potassium/Ca exchanger, SLC24A3), cytoskeletal/microtubule proteins (erythrocyte membrane protein band 4.1-like 3, EPB41L3; tropomyosin 1, TPM1; tubulin, alpha 1, TUBA1), signaling proteins (RAB GTPase activating protein 1-like, RABGAP1L; beta3-endonexin, ITGB3 BP) and chemokines (platelet factor 4 variant 1, PF4V1; chemokine CXCL5, CXCL5). These and other downregulated genes are relevant to the patient's platelet defects in function and production. These studies provide the first proof of concept that platelet expression profiling can be applied to obtain insights into the molecular basis of inherited platelet defects."	"A peptide motif in Raver1 mediates splicing repression by interaction with the PTB RRM2 domain. Polypyrimidine tract-binding protein (PTB) is a regulatory splicing repressor. Raver1 acts as a PTB corepressor for splicing of alpha-tropomyosin (Tpm1) exon 3. Here we define a minimal region of Raver1 that acts as a repressor domain when recruited to RNA. A conserved [S/G][I/L]LGxxP motif is essential for splicing repressor activity and sufficient for interaction with PTB. An adjacent proline-rich region is also essential for repressor activity but not for PTB interaction. NMR analysis shows that LLGxxP peptides interact with a hydrophobic groove on the dorsal surface of the RRM2 domain of PTB, which constitutes part of the minimal repressor region of PTB. The requirement for the PTB-Raver1 interaction that we have characterized may serve to bring the additional repressor regions of both proteins into a configuration that allows them to synergistically effect exon skipping."	"Reliable and controllable antibody fragment selections from Camelid non-immune libraries for target validation. With the completion of the sequence of the human genome, emphasis is now switching to the human proteome. However, the number of proteins is not only larger than mRNAs in the transcriptome, proteins need often to be in complex with other proteins to be functional. A favourable option to study proteins in their natural context is with a combination of biochemical and microscopic techniques using specific antibodies. Therefore, we designed a fast, reliable and controllable selection and screening of single-domain antibody fragments (VHH) from a Camelid non-immune library. We isolated VHH for four muscle disease related proteins; emerin, actin, tropomyosin-1, and nuclear poly(A)-binding protein. Important features of antibodies for target validation studies are recognition of the antigen in natural conformations and biologically relevant complexes. We show that selected antibody fragments are functional in various immunological techniques and prove useful in diagnostic applications. Our selection strategy is amenable to automation and to the establishment of proteomics platforms. It opens the way to quickly and cost-effectively obtain multiple antibody fragments for many antigens that can detect changes in their localization, level, and modification as well as subtle changes in supramolecular structures, which often associate with disease."	"An expectation-maximization algorithm for probabilistic reconstructions of full-length isoforms from splice graphs. Reconstructing full-length transcript isoforms from sequence fragments (such as ESTs) is a major interest and challenge for bioinformatic analysis of pre-mRNA alternative splicing. This problem has been formulated as finding traversals across the splice graph, which is a directed acyclic graph (DAG) representation of gene structure and alternative splicing. In this manuscript we introduce a probabilistic formulation of the isoform reconstruction problem, and provide an expectation-maximization (EM) algorithm for its maximum likelihood solution. Using a series of simulated data and expressed sequences from real human genes, we demonstrate that our EM algorithm can correctly handle various situations of fragmentation and coupling in the input data. Our work establishes a general probabilistic framework for splice graph-based reconstructions of full-length isoforms."	"Differential expression of tropomyosin during segmental heart development in Mexican axolotl. The Mexican axolotl, Ambystoma mexicanum, serves as an intriguing model to investigate myofibril organization and heart development in vertebrates. The axolotl has a homozygous recessive cardiac lethal gene &quot;c&quot; which causes a failure of ventricular myofibril formation and contraction. However, the conus of the heart beats, and has organized myofibrils. Tropomyosin (TM), an essential component of the thin filament, has three known striated muscle isoforms (TPM1alpha, TPM1kappa, and TPM4alpha) in axolotl hearts. However, it is not known whether there are differential expression patterns of these tropomyosin isoforms in various segments of the heart. Also, it is not understood whether these isoforms contribute to myofibril formation in a segment-specific manner. In this study, we have utilized anti-sense oligonucleotides to separately knockdown post-transcriptional expression of TPM1alpha and TPM4alpha. We then evaluated the organization of myofibrils in the conus and ventricle of normal and cardiac mutant hearts using immunohistochemical techniques. We determined that the TPM1alpha isoform, a product of the TPM1 gene, was essential for myofibrillogenesis in the conus, whereas TPM4alpha, the striated muscle isoform of the TPM4 gene, was essential for myofibrillogenesis in the ventricle. Our results support the segmental theory of vertebrate heart development."	"Identification of breast cancer metastasis-associated proteins in an isogenic tumor metastasis model using two-dimensional gel electrophoresis and liquid chromatography-ion trap-mass spectrometry. To better understand the molecular mechanisms underlying breast cancer metastasis and search for potential markers for metastatic progression, we have developed a highly metastatic variant of human MDA-MB-435 breast cancer cell line through in vivo stepwise selection of pulmonary metastatic cells caused by parental MDA-MB-435 cells in the athymic mice. Comparative proteomic analysis using 2-DE and LC-IT-MS revealed that 102 protein spots were reproducibly altered more than three-fold between the selected variant and its parental counterpart. Eleven differentially expressed protein spots were identified with high confidence using SEQUEST with uninterpreted tandem mass raw data. Cathepsin D precursor, peroxiredoxin 6 (PDX6), heat shock protein 27 (HSP27), HSP60, tropomyosin 1 (TPM1), TPM2, TPM3, TPM4, 14-3-3 protein epsilon, and tumor protein D54 were up-regulated in the highly metastatic variant, whereas alpha B-crystalline (CRAB) was only detected in its parental counterpart. Differential expression was confirmed for four proteins including PDX6, CRAB, TPM4, and HSP60 by real-time quantitative PCR and Western blotting analysis in our model. Immunohistochemical analysis in 80 breast cancer donors demonstrated a significant association of TPM4 (p = 0.002), HSP60 (p = 0.001), PDX6 (p = 0.002) but not CRAB (p = 0.113) staining with the presence of lymph node metastasis. In addition, TPM4 staining was also associated with clinical stage (p = 0.000), but no significant association was found between TPM4, PDX6, CRAB, and HSP60 expression and tumor size, hormone receptor, and HER-2 status (p &gt; 0.05). The functional implication of these identified proteins was also discussed. These proteomic data are valuable and informative for understanding breast cancer metastasis and searching for potential markers for metastatic progression."	"The possible mechanism of enhanced carcinogenesis induced by genotoxic carcinogens in rasH2 mice. Microarray and RT-PCR analyses were performed for the transgene and Ras-related genes in forestomach squamous cell carcinomas (SCCs) induced by 7,12-dimethylbenz[a]anthracene (DMBA) in rasH2 mice; these results were compared with our previous molecular data of N-ethyl-N-nitrosourea-induced forestomach SCCs and urethane-induced lung adenomas in rasH2 mice. Overexpression of the transgene was detected in the DMBA-induced SCCs, suggesting that the transgene plays an important role in enhanced carcinogenesis in rasH2 mice. In addition, the mouse endogenous ras genes were up-regulated in the DMBA-induced SCCs, and are probably involved in the tumorigenesis of forestomach SCCs. Genes such as osteopontin, Cks1b, Tpm1, Reck, gelsolin, and amphiregulin that were commonly altered in these three different carcinogen-induced tumors may contribute to the development of tumors in rasH2 mice."	"Diastolic dysfunction without left ventricular hypertrophy is an early finding in children with hypertrophic cardiomyopathy-causing mutations in the beta-myosin heavy chain, alpha-tropomyosin, and myosin-binding protein C genes. We investigated the presence of left ventricular hypertrophy (LVH) and features of diastolic dysfunction in genotype-confirmed children from families with hypertrophic cardiomyopathy (HCM) and healthy control children. In subjects with HCM-causing mutations, LVH usually does not evolve until adolescence. Diastolic dysfunction has not been systematically evaluated in children carrying HCM-causing mutations. All children (aged 1.5-16.7 years) from 14 HCM families with identified disease-causing mutations (the Arg719Trp mutation in the beta-myosin heavy chain gene [MYH7], the Asp175Asn mutation in the alpha-tropomyosin gene [TPM1], the Gln1061X mutation in the myosin-binding protein C gene [MYBPC3], and the IVS5-2A--&gt;C mutation in the MYBPC3 gene) and 53 matched control children were examined with electrocardiography and 2- and 3-dimensional echocardiography (2DE and 3DE). Natriuretic peptides were measured in children from HCM families and 67 control children. Of 53 children from HCM families, 27 (51%) had a disease-causing mutation (G+). G+ children had slightly thicker septum on 2DE compared with the control children (P = .004), but only 3 (11%) of 27 G+ children exceeded the 95th percentile values of the body surface area-adjusted maximal LV thickness of healthy children (the major echocardiographic criterion for HCM). However, prolonged isovolumetric relaxation time, increased left atrial volume on 3DE, or increased levels of NT-proANP, all features suggestive of diastolic dysfunction, were found in 14 (52%) of 27 G+ children. In children with HCM-causing mutations, signs of diastolic dysfunction are found in about half of the cases, as LVH is present only in small percentage of these children."	"Thermal unfolding of smooth muscle and nonmuscle tropomyosin alpha-homodimers with alternatively spliced exons. We used differential scanning calorimetry (DSC) and circular dichroism (CD) to investigate thermal unfolding of recombinant fibroblast isoforms of alpha-tropomyosin (Tm) in comparison with that of smooth muscle Tm. These two nonmuscle Tm isoforms 5a and 5b differ internally only by exons 6b/6a, and they both differ from smooth muscle Tm by the N-terminal exon 1b which replaces the muscle-specific exons 1a and 2a. We show that the presence of exon 1b dramatically decreases the measurable calorimetric enthalpy of the thermal unfolding of Tm observed with DSC, although it has no influence on the alpha-helix content of Tm or on the end-to-end interaction between Tm dimers. The results suggest that a significant part of the molecule of fibroblast Tm (but not smooth muscle Tm) unfolds noncooperatively, with the enthalpy no longer visible in the cooperative thermal transitions measured. On the other hand, both DSC and CD studies show that replacement of muscle exons 1a and 2a by nonmuscle exon 1b not only increases the thermal stability of the N-terminal part of Tm, but also significantly stabilizes Tm by shifting the major thermal transition of Tm to higher temperature. Replacement of exon 6b by exon 6a leads to additional increase in the alpha-Tm thermal stability. Thus, our data show for the first time a significant difference in the thermal unfolding between muscle and nonmuscle alpha-Tm isoforms, and indicate that replacement of alternatively spliced exons alters the stability of the entire Tm molecule."	"Differential interaction of cardiac, skeletal muscle, and yeast tropomyosins with fluorescent (pyrene235) yeast actin. To monitor binding of tropomyosin to yeast actin, we mutated S235 to C and labeled the actin with pyrene maleimide at both C235 and the normally reactive C374. Saturating cardiac tropomyosin (cTM) caused about a 20% increase in pyrene fluorescence of the doubly labeled F-actin but no change in WT actin C374 probe fluorescence. Skeletal muscle tropomyosin caused only a 7% fluorescence increase, suggesting differential binding modes for the two tropomyosins. The increased cTM-induced fluorescence was proportional to the extent of tropomyosin binding. Yeast tropomyosin (TPM1) produced less increase in fluorescence than did cTM, whereas that caused by yeast TPM2 was greater than either TPM1 or cTM. Cardiac troponin largely reversed the cTM-induced fluorescence increase, and subsequent addition of calcium resulted in a small fluorescence recovery. An A230Y mutation, which causes a Ca(+2)-dependent hypercontractile response of regulated thin filaments, did not change probe235 fluorescence of actin alone or with tropomyosin +/- troponin. However, addition of calcium resulted in twice the fluorescence recovery observed with WT actin. Our results demonstrate isoform-specific binding of different tropomyosins to actin and suggest allosteric regulation of the tropomyosin/actin interaction across the actin interdomain cleft."	"Resensitization of breast cancer cells to anoikis by tropomyosin-1: role of Rho kinase-dependent cytoskeleton and adhesion. Two most common properties of malignant cells are the presence of aberrant actin cytoskeleton and resistance to anoikis. Suppression of several key cytoskeletal proteins, including tropomyosin-1 (TM1), during neoplastic transformation is hypothesized to contribute to the altered cytoskeleton and neoplastic phenotype. Using TM1 as a paradigm, we have shown that cytoskeletal proteins induce anoikis in breast cancer (MCF-7 and MDA MB 231) cells. Here, we have tested the hypothesis that TM1-mediated cytoskeletal changes regulate integrin activity and the sensitivity to anoikis. TM1 expression in MDA MB 231 cells promotes the assembly of stress fibers, induces rapid anoikis via caspase-dependent pathways involving the release of cytochrome c. Further, TM1 inhibits binding of MDA MB 231 cells to collagen I, but promotes adhesion to laminin. Inhibition of Rho kinase disrupts TM1-mediated cytoskeletal reorganization and adhesion to the extracellular matrix components, whereas the parental cells attach to collagen I, spread and form extensive actin meshwork in the presence of Rho kinase inhibitor, underscoring the differences in parental and TM1-transduced breast cancer cells. Further, treatment with the cytoskeletal disrupting drugs rescues the cells from TM1-induced anoikis. These new findings demonstrate that the aberrant cytoskeleton contributes to neoplastic transformation by conferring resistance to anoikis. Restoration of stress fiber network through enhanced expression of key cytoskeletal proteins may modulate the activity of focal adhesions and sensitize the neoplastic cells to anoikis."	"Amino terminal, but not the carboxy terminal, sequences of tropomyosin-1 are essential for the induction of stress fiber assembly in neoplastic cells. The presence of aberrant cytoskeleton, arising from the downregulation of key cytoskeletal proteins such as tropomyosins (TMs), is a prominent feature of many malignant cells and is suggested to promote neoplastic growth. While our previous work demonstrated that tropomyosin-1 (TM1) promotes stress fiber assembly and suppresses malignant growth, the molecular basis of the anti-oncogenic effects of TM1 has not been determined. By employing chimeric TMs, here we demonstrate that the amino terminal portion of TM1, but not the carboxy terminal portion which contains the alternatively spliced exon-coded sequences, is essential for stress fiber assembly and suppression of malignant growth. These studies also indicate that the amino and carboxy termini of TM1 coordinately function to regulate microfilament organization during cytokinesis."	"Cine MR imaging of myocardial contractile impairment in patients with hypertrophic cardiomyopathy attributable to Asp175Asn mutation in the alpha-tropomyosin gene. To prospectively investigate the relationship between myocardial contractile impairment and left ventricular (LV) hypertrophy measured at cardiac magnetic resonance (MR) imaging in patients with hypertrophic cardiomyopathy (HCM) caused by the substitution of aspartic acid 175 with asparagine (ie, Asp175Asn mutation) in the alpha-tropomyosin gene (TPM1). The study protocol was approved by the hospital ethics committee, and all subjects gave written informed consent. LV mass, maximal LV wall thickness, and myocardial fractional thickening during systole were measured at cine MR imaging in 24 subjects (11 male, 13 female; mean age, 42 years; age range, 17-68 years) with the Asp175Asn mutation in TPM1 and in 17 healthy volunteers (eight men, nine women; mean age, 38 years; age range, 23-60 years). The proportion of hypokinetic LV segments was calculated as the number of LV segments with fractional thickening of less than 30% divided by the total number of segments measured. Anthropometric and biochemical correlates of LV hypertrophy were determined. Univariate and multiple linear regression analyses were used to investigate the association of the proportion of hypokinetic segments and other correlates of LV hypertrophy with LV mass and maximal wall thickness. The proportion of hypokinetic segments was higher in patients with HCM than in control subjects (37% +/- 20 [standard deviation] vs 12% +/- 12, P &lt; .001). In stepwise multiple regression analysis, the proportion of hypokinetic segments accounted for 42% (P &lt; .001); the LV end-diastolic volume, for 24% (P = .003); and male sex, for 10% (P = .014) of the variability in LV mass in patients with HCM. The proportion of hypokinetic LV segments, which accounted for 48% of the variability in LV maximal wall thickness (P &lt; .001), was the only variable significantly associated with maximal wall thickness. The extent of myocardial contractile impairment is strongly and independently related to LV mass and maximal wall thickness in patients with HCM attributable to the Asp175Asn mutation in TPM1."	"Comparative proteomic analysis of esophageal squamous cell carcinoma. Ranking as the fourth commonest cancer, esophageal squamous cell carcinoma (ESCC) represents one of the leading causes of cancer death in China. One of the main reasons for the low survival rate is that neoplasms in esophagus are not detected until they have invaded into surrounding tissues or spread throughout the body at advanced stages. A better understanding of the malignant mechanism and early diagnosis are important for fighting ESCC. In this study, we used proteomics to analyze ESCC tissues, aiming at defining the proteomic features implicated in the multistage progression of esophageal carcinogenesis. Proteins that exhibited significantly different expressions were identified by peptide mass fingerprinting and validated by Western blotting and reverse transcriptase-polymerase chain reaction. The protein changes were then correlated to the different grades of disease differentiation. Compared to those in adjacent normal epitheliums, the expression of 15 proteins including enolase, elongation factor Tu, isocitrate dehydrogenase, tubulin alpha-1 chain, tubulin beta-5 chain, actin (cytoplasmic 1), glyceraldehyde-3 phosphate dehydrogenase, tropomyosin isoform 4 (TPM4), prohibitin, peroxiredoxin 1 (PRX1), manganese-containing superoxide dismutase (MnSOD), neuronal protein, and transgelin was up-regulated; and the expression of five proteins including TPM1, squamous cell carcinoma antigen 1 (SCCA1), stratifin, peroxiredoxin 2 isoform a, and alpha B crystalline was down-regulated in cancer tissues with a statistical significance (p &lt; 0.05). In addition, the differential expression of SCCA1, PRX1, MnSOD, TPM4, and prohibitin can be observed in precancerous lesions of ESCC. The expression of stratifin, prohibitin, and SCCA1 dropped with increasing dedifferentiation of ESCC. These data may suggest that these proteins contribute to the multistage process of carcinogenesis, tumor progression, and invasiveness of ESCC."	"Silencing of the Tropomyosin-1 gene by DNA methylation alters tumor suppressor function of TGF-beta. Loss of actin stress fibers has been associated with cell transformation and metastasis. TGF-beta induction of stress fibers in epithelial cells requires high molecular weight tropomyosins encoded by TPM1 and TPM2 genes. Here, we investigated the mechanism underlying the failure of TGF-beta to induce stress fibers and inhibit cell migration in metastatic cells. RT-PCR analysis in carcinoma cell lines revealed a significant reduction in TPM1 transcripts in metastatic MDA-MB-231, MDA-MB-435 and SW620 cell lines. Treatment of these cells with demethylating agent 5-aza-2'-deoxycytidine (5-aza-dC) increased mRNA levels of TPM1 with no effect on TPM2. Importantly, 5-aza-dC treatment of MDA-MB-231 cells restored TGF-beta induction of TPM1 and formation of stress fibers. Forced expression of TPM1 by using Tet-Off system increased stress fibers in MDA-MB-231 cells and reduced cell migration. A potential CpG island spanning the TPM1 proximal promoter, exon 1, and the beginning of intron 1 was identified. Bisulfite sequencing showed significant cytosine methylation in metastatic cell lines that correlated with a reduced expression of TPM1. Together these results suggest that epigenetic suppression of TPM1 may alter TGF-beta tumor suppressor function and contribute to metastatic properties of tumor cells."	"Anti-sense-mediated inhibition of expression of the novel striated tropomyosin isoform TPM1kappa disrupts myofibril organization in embryonic axolotl hearts. Striated muscle tropomyosin (TM) is described as containing ten exons; 1a, 2b, 3, 4, 5, 6b, 7, 8, and 9a/b. Exon 9a/b has critical troponin binding domains and is found in striated muscle isoforms. We have recently discovered a smooth (exon 2a)/striated (exons 9a/b) isoform expressed in amphibian, avian, and mammalian hearts, designated as an isoform of the TPM1 gene (TPM1kappa). TPM1kappa expression was blocked in whole embryonic axolotl heart by transfection of exon-specific anti-sense oligonucleotide. Reverse transcriptase polymerase chain reaction (RT-PCR) confirmed lower transcript expression of TPM1kappa and in vitro analysis confirmed the specificity of the TPM1kappa anti-sense oligonucleotide. Altered expression of the novel TM isoform disrupted myofibril structure and function in embryonic hearts."	"Diminished myofibril organization in mutant axolotl hearts transfected with site-directed mutants of sarcomeric tropomyosins. We used a model lacking endogenous sarcomeric tropomyosin, the cardiac mutant of the Mexican axolotl, to examine the effect of mutant tropomyosins on sarcomeric myofibril formation. Previous studies have introduced wild-type mouse alpha-tropomyosin into mutant hearts in organ culture with subsequent for-mation of organized myofibrils. This study examines the predominant embry-onic axolotl TPM-4 type tropomyosin (TPM4alpha), containing a conservative re- placement of glutamic acid for aspartic acid at the clinically important 175 site. In this study, ATmC-3 (TPM4alpha) promoted formation of organized myofibrils in hearts without endogenous tropomyosin. Site-directed mutagenesis of 175 glutamic acid with 175 glutamine or 175 lysine was toxic to the formation of organized myofibrils in mutant hearts in the absence of endogenous tropo-myosin. Cationic liposome co-transfection of both wild-type tropomyosin and Glu175Gln.TPM4alpha cDNA formed organized myofibrils in mutant hearts. A construct with GFP.Glu175Gln.TPM4alpha cDNA was used to confirm expression of the mutant fusion protein. Mutation at the 175 site in TPM4alpha type or TPM1alpha (striated muscle isoform of the TPM1 gene) was sufficient to alter the protein such that organized myofibrils would not form in ventricles of mutant hearts without endogenous tropomyosin."	"Genome-wide survey of non-essential genes required for slowed DNA synthesis-induced filamentous growth in yeast. We recently discovered that slowed DNA synthesis induces filamentous differentiation in S. cerevisiae. We screened the BY yeast deletion strains and identified four classes of non-essential genes that are required for both slowed DNA-induced filamentous growth and classic forms of filamentous growth: (a) genes encoding regulators of the actin cytoskeleton and cell polarity, ABP1, CAP2 and HUF1 (=YOR300W), in addition to the previously known BNI1, BUD2, PEA2, SPA2 and TPM1; (b) genes that are likely involved in cell wall biosynthesis, ECM25, GAS1 and PRS3; (c) genes encoding possible regulators of protein secretion, SEC66, RPL21A and RPL34B; (d) genes encoding factors for normal mitochondrial function, IML1 and UGO1. These results showed that pseudohyphal formation involves not the only previously known regulation of the actin cytoskeleton/cell polarity but also regulation of cell wall synthesis, protein secretion and mitochondrial function. Identification of multiple classes of genes that are required for both slowed DNA synthesis-induced and classic forms of filamentous growth confirms that slowed DNA synthesis-induced filamentous growth is bone fide filamentous differentiation."	"An alphaTropomyosin mutation alters dimer preference in nemaline myopathy. Nemaline myopathy is a human neuromuscular disorder associated with muscle weakness, Z-line accumulations (rods), and myofibrillar disorganization. Disease-causing mutations have been identified in genes encoding muscle thin filament proteins: actin, nebulin, slow troponin T, betaTropomyosin, and alphaTropomyosin(slow). Skeletal muscle expresses three tropomyosin (Tm) isoforms from separate genes: alphaTm(fast)(alphaTm, TPM1), betaTm (TPM2), and alphaTm(slow) (gammaTm, TPM3). In this article, we show that the level of betaTm, but not alphaTm(fast) protein, is reduced in human patients with mutations in alphaTm(slow) and in a transgenic mouse model of alphaTm(slow)(Met9Arg) nemaline myopathy. A postnatal time course of Tm expression in muscles of the mice indicated that the onset of alphaTm(slow)(Met9Arg) expression coincides with the decline of betaTm. Reduction of betaTm levels is independent of the degree of pathology (rods) within a muscle and is detected before the onset of muscle weakness. Thus, reduction in the level of betaTm represents an early clinical diagnostic marker for alphaTm(slow)-based mutations. Examinations of tropomyosin dimer formation using either recombinant proteins or sarcomeric extracts show that the mutation reduces the formation of the preferred alpha/beta heterodimer. We suggest this perturbation of tropomyosin isoform levels and dimer preference alters sarcomeric thin filament dynamics and contributes to muscle weakness in nemaline myopathy."	"Growth promoting signaling by tenascin-C [corrected]. Tenascin-C is an adhesion-modulating extracellular matrix molecule that is highly expressed in tumor stroma and stimulates tumor cell proliferation. Adhesion of T98G glioblastoma cells to a fibronectin substratum is inhibited by tenascin-C. To address the mechanism of action, we performed a RNA expression analysis of T89G cells grown in the presence or absence of tenascin-C and found that tenascin-C down-regulates tropomyosin-1. Upon overexpression of tropomyosin-1, cell spreading on a fibronectin/tenascin-C substratum was restored, indicating that tenascin-C destabilizes actin stress fibers through down-regulation of tropomyosin-1. Tenascin-C also increased the expression of the endothelin receptor type A and stimulated the corresponding mitogen-activated protein kinase signaling pathway, which triggers extracellular signal-regulated kinase 1/2 phosphorylation and c-Fos expression. Tenascin-C additionally caused down-regulation of the Wnt inhibitor Dickkopf 1. In consequence, Wnt signaling was enhanced through stabilization of beta-catenin and stimulated the expression of the beta-catenin target Id2. Finally, our in vivo data derived from astrocytoma tissue arrays link increased tenascin-C and Id2 expression with high malignancy. Because increased endothelin and Wnt signaling, as well as reduced tropomyosin-1 expression, are closely linked to transformation and tumorigenesis, we suggest that tenascin-C specifically modulates these signaling pathways to enhance proliferation of glioma cells."	"Expression of a novel cardiac-specific tropomyosin isoform in humans. Tropomyosins are a family of actin binding proteins encoded by a group of highly conserved genes. Humans have four tropomyosin-encoding genes: TPM1, TPM2, TPM3, and TPM4, each of which is known to generate multiple isoforms by alternative splicing, promoters, and 3' end processing. TPM1 is the most versatile and encodes a variety of tissue specific isoforms. The TPM1 isoform specific to striated muscle, designated TPM1alpha, consists of 10 exons: 1a, 2b, 3, 4, 5, 6b, 7, 8, and 9a/b. In this study, using RT-PCR with adult and fetal human RNAs, we present evidence for the expression of a novel isoform of the TPM1 gene that is specifically expressed in cardiac tissues. The new isoform is designated TPM1kappa and contains exon 2a instead of 2b. Ectopic expression of human GFP.TPM1kappa fusion protein can promote myofibrillogenesis in cardiac mutant axolotl hearts that are lacking in tropomyosin."	"Multiple gene organization of pufferfish Fugu rubripes tropomyosin isoforms and tissue distribution of their transcripts. The Japanese pufferfish, torafugu (Fugu rubripes), has a haploid genome of about 400 Mb in size, which has been sequenced to approximately 90% coverage. Here we identified six Fugu tropomyosin (TPM) gene sequences by using the BLASTN program and the sequence of the white croaker TPM1 gene in our collection against the draft assembly of the Fugu genomic sequence database. TPM2, TPM3 and TPM4 genes were identified together with a set of two potentially duplicated genes of TPM1 (TPM1-1 and TPM1-2) as described in our previous report and TPM4 (TPM4-1 and TPM4-2) newly found in this study. The expression patterns of these Fugu TPM genes were determined by reverse transcription polymerase chain reaction (RT-PCR). A phylogenetic tree was constructed using the deduced amino acid sequences, which were encoded by the exons common to all vertebrate TPM genes. This indicated that the Fugu TPM1 and TPM4 genes had resulted from a gene duplication in the fish evolutionary lineage."	"[Familial hypertrophic cardiomyopathy: genes, mutations and animal models. A review]. Hypertrophic cardiomyopathy (HCM) is an autosomal dominant disease, which may afflict as many as 1 in 500 subjects (0.2%), being probably the most common hereditary cardiovascular disease and the most common cause of sudden cardiac death (SCD). Hypertrophic cardiomyopathy is characterized by the presence of unexplained left ventricular hypertrophy (in absence of hypertension, valvular disease, etc), which is usually asymmetric and involves the ventricular septum. Molecular genetic studies have identified eleven genes that code proteins of the sarcomere that are associated with the HCM; the beta-myosin heavy chain gene (MYH7), alpha-myosin heavy chain (MYH6), cardiac troponin T (TNNT2); cardiac troponin C (TNNC1), alpha-tropomyosin (TPM1), myosin binding protein-C (MYBPC3), cardiac troponin (TNNI3), essential and regulatory light chain genes (MYL3 and MYL2, respectively), cardiac alpha-actin gene (ACTC) and titin (TTN). The objective of this paper is the revision of the current state of the knowledge on (1) the organization and mutations of the HCM causing genes and their proteins and (2) the animal models developed for the study of the genes, mutations and proteins in the hypertrophic cardiomyopathy."	"Genetics of hypertrophic cardiomyopathy in eastern Finland: few founder mutations with benign or intermediary phenotypes. Hypertrophic cardiomyopathy (HCM) is a genetically and clinically heterogeneous myocardial disease caused by mutations in genes encoding sarcomeric proteins. To assess the genetic background and phenotypic expression of HCM in eastern Finland, we screened 35 unrelated patients with HCM from the Kuopio University Hospital area for variants in 9 genes encoding sarcomeric proteins with the PCR-SSCP method. We herewith describe our previous findings in five sarcomeric genes and also report hitherto unpublished data on four additional sarcomeric genes. Mutations in the cardiac myosin-binding protein C gene (MYBPC3) were most frequent, accounting for 26% of cases. A novel mutation (Gln1061X) in this gene was the most common mutation, found in 6 of 35 families and accounting for 17% of all cases. Other novel mutations in MYBPC3 (IVS5-2A --&gt; C, IVS14-13G --&gt; A, and Ex25deltaLys) were found in one family each. A previously described alpha-tropomyosin (TPM1) mutation (Asp175Asn) was found in 11% of cases. Haplotype analysis suggested that the two most common variants (MYBPC3-Gln1061X and TPM1-Asp175Asn) were founder mutations. Only one mutation (Arg719Trp) in the beta-myosin heavy chain gene (MYH7) was found in one family, and no disease-causing mutations were found in the genes encoding alpha-actin, cardiac troponin I, T, C, or myosin essential and regulatory light chains. Altogether, the aforementioned 6 mutations found in MYBPC3, TPM1, and MYH7 accounted for 61% of familial and 40% of all HCM cases. The mutations were associated mostly with benign or intermediary phenotypes with only few HCM-related deaths. We conclude that the genetic profile of HCM in eastern Finland is unique, characterized by few founder mutations with benign or intermediary phenotypes."	"Inducibility of life-threatening ventricular arrhythmias is related to maximum left ventricular thickness and clinical markers of sudden cardiac death in patients with hypertrophic cardiomyopathy attributable to the Asp175Asn mutation in the alpha-tropomyosin gene. We investigated inducibility of life-threatening arrhythmias with programmed ventricular stimulation (PVS) in relation to clinical markers of sudden cardiac death (SCD) in subjects with hypertrophic cardiomyopathy (HCM) attributable to the Asp175Asn mutation in the alpha-tropomyosin gene (TPM1-Asp175Asn). PVS was performed with up to three extrastimuli and distribution of markers of SCD was evaluated in 21 adult subjects with the TPM1-Asp175Asn. Sustained polymorphic ventricular tachycardia (VT) or ventricular fibrillation (VF) was induced in seven of 21 subjects (33%). Inducible subjects had more severe left ventricular hypertrophy (LVH) and an increased number of markers of SCD (family history of SCD, syncope or presyncope, fall in systolic blood pressure (BP) during exercise, documented non-sustained VT (NSVT), and marked LVH) compared to non-inducible subjects (IVS 2.4 +/- 0.3 cm vs. 1.6 +/- 0.5 cm, P &lt; 0.001; and two to three vs. one to two markers of SCD, P = 0.007, respectively). In conclusion, in HCM attributable to the Asp175Asn mutation in the alpha-tropomyosin gene, life-threatening arrhythmias were induced in one third of the patients. Inducibility was associated with the maximum left ventricular (LV) thickness and the number of markers of SCD, suggesting that in HCM patients with an identical causative mutation, susceptibility to ventricular arrhythmias is related to the cardiomyopathic phenotype."	"N terminus is essential for tropomyosin functions: N-terminal modification disrupts stress fiber organization and abolishes anti-oncogenic effects of tropomyosin-1. Down-regulation of several key actin-binding proteins, such as alpha-actinin, vinculin, gelsolin, and tropomyosins (TMs), is considered to contribute to the disorganized cytoskeleton present in many neoplastic cells. TMs stabilize actin filaments against the gel severing actions of proteins such as cofilin. Among multiple TMs expressed in non-muscle cells, tropomyosin-1 (TM1) isoform induces stress fibers and functions as a suppressor of malignant transformation. However, the molecular mechanisms of TM1-mediated cytoskeletal effects and tumor suppression remain poorly understood. We have hypothesized that the ability of TM1 to stabilize microfilaments is crucial for tumor suppression. In this study, by employing a variant TM1, which contains an N-terminal hemagglutinin epitope tag, we demonstrate that the N terminus is a key determinant of tropomyosin-1 function. Unlike the wild type TM1, the modified protein fails to restore stress fibers and inhibit anchorage-independent growth in transformed cells. Furthermore, the N-terminal modification of TM1 disorganizes the cytoskeleton and delays cytokinesis in normal cells, abolishes binding to F-actin, and disrupts the dimeric associations in vivo. The functionally defective TM1 allows the association of cofilin to stress fibers and disorganizes the microfilaments, whereas wild type TM1 appears to restrict the binding of cofilin to stress fibers. TM1-induced cytoskeletal reorganization appears to be mediated through preventing cofilin interaction with microfilaments. Our studies provide in vivo functional evidence that the N terminus is a critical determinant of TM1 functions, which in turn determines the organization of stress fibers."	"Loss of expression of tropomyosin-1, a novel class II tumor suppressor that induces anoikis, in primary breast tumors. Suppression of tropomyosins (TMs), a family of actin-binding, microfilament-associated proteins, is a prominent feature of many transformed cells. Yet it is unclear whether downregulation of TMs occur in human tumors. We have investigated the expression of tropomyosin-1 (TM1) in human breast carcinoma tissues by in situ hybridization and immunofluorescence. TM1 mRNA and protein are readily detectable in normal mammary tissue. In contrast, TM1 expression is abolished in the primary human breast tumors. Expression of other TM isoforms, however, is variable among the tumors. The consistent and profound downregulation of TM1 suggests that TM1 may be a novel and useful biomarker of mammary neoplasms. These data also support the hypothesis that suppression of TM1 expression during the malignant conversion of mammary epithelium as a contributing factor of breast cancer. In support of this hypothesis, we show that the ability to suppress malignant growth properties of breast cancer cells is specific to TM1 isoform. Investigations into the mechanisms of TM1-induced tumor suppression reveal that TM1 induces anoikis (detachment induced apoptosis) in breast cancer cells. Downregulation of TM1 in breast tumors may destabilize microfilament architecture and confer resistance to anoikis, which facilitates survival of neoplastic cells outside the normal microenvironment and promote malignant growth."	"Mutation spectrum in a large cohort of unrelated consecutive patients with hypertrophic cardiomyopathy. Defects in nine sarcomeric protein genes are known to cause hypertrophic cardiomyopathy (HCM). Mutation types and frequencies in large cohorts of consecutive and unrelated patients have not yet been determined. We, therefore, screened HCM patients for mutations in six sarcomeric genes: myosin-binding protein C3 (MYBPC3), MYH7, cardiac troponin T (TNNT2), alpha-tropomyosin (TPM1), cardiac troponin I (TNNI3), and cardiac troponin C (TNNC1). HCM was diagnosed in 108 consecutive patients by echocardiography (septum &gt;15 mm, septal/posterior wall &gt;1.3 mm), angiography, or based on a state after myectomy. Single-strand conformation polymorphism analysis was used for mutation screening, followed by DNA-sequencing. A total of 34 different mutations were identified in 108 patients: 18 mutations in MYBPC3 in 20 patients [intervening sequence (intron) 7 + 1G &gt; A and Q1233X were found twice], 13 missense mutations in MYH7 in 14 patients (R807H was found twice), and one amino acid change in TPM1, TNNT2, and TNNI3, respectively. No disease-causing mutation was found in TNNC1. Cosegregation with the HCM phenotype could be demonstrated for 13 mutations (eight mutations in MYBPC3 and five mutations in MYH7). Twenty-eight of the 37 mutation carriers (76%) reported a positive family history with at least one affected first-grade relative; only eight mutations occurred sporadically (22%). MYBPC3 was the gene that most frequently caused HCM in our population. Systematic mutation screening in large samples of HCM patients leads to a genetic diagnosis in about 30% of unrelated index patients and in about 57% of patients with a positive family history."	"Functional analysis of the actin-binding protein, tropomyosin 1, in neuroblastoma. Tropomyosin 1 (TM1) is downregulated in a number of transformed cell types, and exogenous expression of TM1 can restore actin organisation and reverse cellular transformation. We find that TM1 is also downregulated in human neuroblastoma cell lines, correlating with increasing malignancy. However, exogenous TM1 does not restore actin cytoskeleton organisation in neuroblastoma cells."	"Gene structure-based splice variant deconvolution using a microarray platform. Alternative splicing allows a single gene to generate multiple mRNAs, which can be translated into functionally and structurally diverse proteins. One gene can have multiple variants coexisting at different concentrations. Estimating the relative abundance of each variant is important for the study of underlying biological function. Microarrays are standard tools that measure gene expression. But most design and analysis has not accounted for splice variants. Thus splice variant-specific chip designs and analysis algorithms are needed for accurate gene expression profiling. Inspired by Li and Wong (2001), we developed a gene structure-based algorithm to determine the relative abundance of known splice variants. Probe intensities are modeled across multiple experiments using gene structures as constraints. Model parameters are obtained through a maximum likelihood estimation (MLE) process/framework. The algorithm produces the relative concentration of each variant, as well as an affinity term associated with each probe. Validation of the algorithm is performed by a set of controlled spike experiments as well as endogenous tissue samples using a human splice variant array."	"Identification of novel tropomyosin 1 genes of pufferfish (Fugu rubripes) on genomic sequences and tissue distribution of their transcripts. Fugu genome database enabled us to identify two novel tropomyosin 1 (TPM1) genes through in silico data mining and isolation of their corresponding cDNAs in vivo. The duplicate TPM1 genes in Japanese pufferfish Fugu rubripes suggest that additional an ancient segmental duplication or whole genome duplication occurred in fish lineage, which, like many other reported Fugu genes, showed reduction in genomic size in comparison with their human homologue. Computer analysis predicted that the coiled-coil probabilities, that were thought to be the most major function of TPM, were the same between the two TPM1 isoforms. We confirmed that the tissue expression profiles of the two TPM1 genes differed from each other, which implied that changes in expression pattern could fix duplicated TPM1 genes although the two TPM1 isoforms appear to have similar function."	"Mdm20 protein functions with Nat3 protein to acetylate Tpm1 protein and regulate tropomyosin-actin interactions in budding yeast. The evolutionarily conserved Mdm20 protein (Mdm20p) plays an important role in tropomyosin-F-actin interactions that generate actin filaments and cables in budding yeast. However, Mdm20p is not a structural component of actin filaments or cables, and its exact function in cable stability has remained a mystery. Here, we show that cells lacking Mdm20p fail to N-terminally acetylate Tpm1p, an abundant form of tropomyosin that binds and stabilizes actin filaments and cables. The F-actin-binding activity of unacetylated Tpm1p is reduced severely relative to the acetylated form. These results are complemented by the recent report that Mdm20p copurifies with one of three acetyltransferases in yeast, the NatB complex. We present genetic evidence that Mdm20p functions cooperatively with Nat3p, the catalytic subunit of the NatB acetyltransferase. These combined results strongly suggest that Mdm20p-dependent, N-terminal acetylation of Tpm1p by the NatB complex is required for Tpm1p association with, and stabilization of, actin filaments and cables."	"A locus on chromosome 15q for a dominantly inherited nemaline myopathy with core-like lesions. Nemaline myopathy is a congenital neuromuscular disorder characterized by muscle weakness and the presence of nemaline rods. Five genes have now been associated with nemaline myopathy: alpha-tropomyosin-3 (TPM3), alpha-actin (ACTA1), nebulin (NEB), beta-tropomysin (TPM2) and troponin T (TNNT1). In addition, mutations in the ryanodine receptor gene (RYR1) have been associated with core-rod myopathy. Here we report linkage in two unrelated families, with a variant of nemaline myopathy, with associated core-like lesions. The clinical phenotype consists of muscle weakness in addition to a peculiar kind of muscle slowness. A genome-wide scan revealed a locus for nemaline myopathy with core-like lesions on chromosome 15q21-q23 for both families. Combining the two families gave a two-point LOD score of 10.65 for D15S993. The alpha-tropomyosin-1 gene (TPM1) located within this region is the strongest candidate gene. However, no mutations were found in the protein-coding region of TPM1, although small deletions or mutations in an intron cannot be excluded. The critical region contains few other candidate genes coding for muscle proteins and several genes of unknown function, and has not yet been sequenced completely. The novel phenotype of nemaline myopathy in the two presented families corresponds to an also novel, as yet uncharacterized, genotype."	"Nat3p and Mdm20p are required for function of yeast NatB Nalpha-terminal acetyltransferase and of actin and tropomyosin. NatB Nalpha-terminal acetyltransferase of Saccharomyces cerevisiae acts cotranslationally on proteins with Met-Glu- or Met-Asp- termini and subclasses of proteins with Met-Asn- and Met-Met- termini. NatB is composed of the interacting Nat3p and Mdm20p subunits, both of which are required for acetyltransferase activity. The phenotypes of nat3-Delta and mdm20-Delta mutants are identical or nearly the same and include the following: diminished growth at elevated temperatures and on hyperosmotic and nonfermentable media; diminished mating; defective actin cables formation; abnormal mitochondrial and vacuolar inheritance; inhibition of growth by DNA-damaging agents such as methyl methanesulfonate, bleomycin, camptothecin, and hydroxyurea; and inhibition of growth by the antimitotic drugs benomyl and thiabendazole. The similarity of these phenotypes to the phenotypes of certain act1 and tpm1 mutants suggests that such multiple defects are caused by the lack of acetylation of actin and tropomyosins. However, the lack of acetylation of other unidentified proteins conceivably could cause the same phenotypes. Furthermore, unacetylated actin and certain N-terminally altered actins have comparable defective properties in vitro, particularly actin-activated ATPase activity and sliding velocity."	"Diastolic ventricular dysfunction as a marker for hypertrophic cardiomyopathy in a family with a novel alpha-tropomyosin mutation. Early identification of familial cases of hypertrophic cardiomyopathy (HCM) depends on screening echocardiography, but hypertrophy may not be the most sensitive marker for the disease. We report the echocardiographic findings of a family with HCM and a newly reported mutation in the gene (TPM1) encoding alpha-tropomyosin.Methods and results An 8-year-old girl had sudden cardiac death, and was found to have HCM and a novel L185R-TPM1 mutation on postmortem examination. Screening echocardiograms and DNA analyses were performed on her family. Of the 5 remaining family members, 3 were genetically affected. Those without the TPM1 mutation had normal echocardiographic results. The only echocardiographic finding that identified all 3 of the gene-positive family members was an abnormal left ventricular diastolic filling pattern. Abnormal left ventricular diastolic filling patterns, indicating diastolic dysfunction, may provide an early marker for the diagnosis of familial HCM in children, even in the absence of left ventricular hypertrophy."	"Hypertrophic cardiomyopathy: distribution of disease genes, spectrum of mutations, and implications for a molecular diagnosis strategy. Hypertrophic cardiomyopathy is an autosomal-dominant disorder in which 10 genes and numerous mutations have been reported. The aim of the present study was to perform a systematic screening of these genes in a large population, to evaluate the distribution of the disease genes, and to determine the best molecular strategy in clinical practice. The entire coding sequences of 9 genes (MYH7, MYBPC3, TNNI3, TNNT2, MYL2, MYL3, TPM1, ACTC, andTNNC1) were analyzed in 197 unrelated index cases with familial or sporadic hypertrophic cardiomyopathy. Disease-causing mutations were identified in 124 index patients ( approximately 63%), and 97 different mutations, including 60 novel ones, were identified. The cardiac myosin-binding protein C (MYBPC3) and beta-myosin heavy chain (MYH7) genes accounted for 82% of families with identified mutations (42% and 40%, respectively). Distribution of the genes varied according to the prognosis (P=0.036). Moreover, a mutation was found in 15 of 25 index cases with &quot;sporadic&quot; hypertrophic cardiomyopathy (60%). Finally, 6 families had patients with more than one mutation, and phenotype analyses suggested a gene dose effect in these compound-heterozygous, double-heterozygous, or homozygous patients. These results might have implications for genetic diagnosis strategy and, subsequently, for genetic counseling. First, on the basis of this experience, the screening of already known mutations is not helpful. The analysis should start by testing MYBPC3 and MYH7 and then focus on TNNI3, TNNT2, and MYL2. Second, in particularly severe phenotypes, several mutations should be searched. Finally, sporadic cases can be successfully screened."	"Extracellular signal-regulated kinase mediates phosphorylation of tropomyosin-1 to promote cytoskeleton remodeling in response to oxidative stress: impact on membrane blebbing. Oxidative stress induces in endothelial cells a quick and transient coactivation of both stress-activated protein kinase-2/p38 and extracellular signal-regulated kinase (ERK) mitogen-activated protein kinases. We found that inhibiting the ERK pathway resulted, within 5 min of oxidative stress, in a misassembly of focal adhesions characterized by mislocalization of key proteins such as paxillin. The focal adhesion misassembly that followed ERK inhibition with the mitogen-activated protein kinase kinase (MEK) inhibitor PD098059 (2'-amino-3'-methoxyflavone) or with a kinase negative mutant of ERK in the presence of H(2)O(2) resulted in a quick and intense membrane blebbing that was associated with important damage to the endothelium. We isolated by two-dimensional gel electrophoresis a PD098059-sensitive phosphoprotein of 38 kDa that we identified, by mass spectrometry, as tropomyosin-1. In fact, H(2)O(2) induced a time-dependent phosphorylation of tropomyosin that was sensitive to inhibition by PD098059 and UO126 (1,4-diamino-2,3-dicyano-1,4-bis[2-aminophenylthio]butanediane). Tropomyosin phosphorylation was also induced by expression of a constitutively activated form of MEK1 (MEK(CA)), which confirms that its phosphorylation resulted from the activation of ERK. In unstimulated cells, tropomyosin-1 was found diffuse in the cells, whereas it quickly colocalized with actin and stress fibers upon stimulation of ERK by H(2)O(2) or by expression of MEK(CA). We propose that phosphorylation of tropomyosin-1 downstream of ERK by contributing to formation of actin filaments increases cellular contractility and promotes the formation of focal adhesions. Incidentally, ML-7 (1-[5iodonaphthalene-1-sulfonyl]homopiperazine, HCl), an inhibitor of cell contractility, inhibited phosphorylation of tropomyosin and blocked the formation of stress fibers and focal adhesions, which also led to membrane blebbing in the presence of oxidative stress. Our finding that tropomyosin-1 is phosphorylated downstream of ERK, an event that modulates its interaction with actin, may lead to further understanding of the role of this protein in regulating cellular functions associated with cytoskeletal remodeling."	"Cardiac adrenergic activity is associated with left ventricular hypertrophy in genetically homogeneous subjects with hypertrophic cardiomyopathy. Hypertrophic cardiomyopathy (HCM) is a genetic disease caused by mutations in genes encoding sarcomeric proteins. However, other genetic and possibly also environmental factors modify the phenotypic expression of left ventricular (LV) hypertrophy. The present study investigated whether cardiac adrenergic activity affects the severity of LV hypertrophy in genetically identical patients with HCM. The study population consisted of 21 patients with HCM caused by the Asp175Asn substitution of the alpha-tropomyosin gene (TPM1-Asp175Asn) and 9 healthy volunteers. LV mass and segmental wall thickness were measured with MRI. Presynaptic cardiac adrenergic activity was measured with (123)I-metaiodobenzylguanidine (MIBG) SPECT. Global and segmental washouts of (123)I-MIBG were calculated. Global myocardial (123)I-MIBG washout was faster in patients with TPM1-Asp175Asn than in healthy volunteers (50% +/- 9% vs. 37% +/- 8%, P = 0.001). In linear regression analysis, global (123)I-MIBG washout was associated with the LV mass index and LV maximal wall thickness index in HCM patients (r = 0.512, P = 0.018, and r = 0.478, P = 0.028, respectively). The mean (123)I-MIBG washout was higher in LV segments &gt;/= 15 mm thick than in LV segments &lt; 15 mm thick (56 +/- 10 vs. 49% +/- 10%, P = 0.002). In patients with HCM sharing the same causal gene defect, the degree of LV hypertrophy is related to (123)I-MIBG washout, suggesting that cardiac adrenergic activity modifies phenotypic expression in HCM."	"Variable clinical manifestation of a novel missense mutation in the alpha-tropomyosin (TPM1) gene in familial hypertrophic cardiomyopathy. This study was initiated to identify the disease-causing genetic defect in a family with hypertrophic cardiomyopathy (HCM) and high incidence of sudden death. Familial hypertropic cardiomyopathy (FHC) is an autosomal dominant transmitted disorder that is genetically and clinically heterogeneous. Mutations in 11 genes have been associated with the pathogenesis of the disease. We studied a large FHC family, first by linkage analysis, to identify the gene involved, and subsequently screened the gene, encoding alpha-tropomyosin (TPM1), for mutations by using single-strand conformation polymorphism and sequencing analysis. Twelve family members presented clinical features of HCM, five of whom died at young age, while others had only mild clinical features. Marker analysis showed linkage for the TPM1 gene on chromosome 15q22 (maximal logarithm of the odds score is 5.16, theta = 0); subsequently, a novel missense mutation (Glu62Gln) was identified. The novel mutation identified in TPM1 is associated with the clinical features of cardiac hypertrophy in all but one genetically affected member of this large family. The clinical data suggest a malignant phenotype at young age with a variable clinical manifestation and penetrance at older age. The Glu62Gln mutation is the sixth TPM1 mutation identified as the cause of FHC, indicating that mutations in this gene are very rare. This is the first reported amino acid substitution at the f-position within the coiled-coil structure of the tropomyosin protein."	"Polycystin-2 associates with tropomyosin-1, an actin microfilament component. Polycystin-2 (PC2) is the product of the second cloned gene (PKD2) responsible for autosomal dominant polycystic kidney disease and has recently been shown to be a calcium-permeable cation channel. PC2 has been shown to connect indirectly with the actin microfilament. Here, we report a direct association between PC2 and the actin microfilament. Using a yeast two-hybrid screen, we identified a specific interaction between the PC2 cytoplasmic C-terminal domain and tropomyosin-1 (TM-1), a component of the actin microfilament complex. Tropomyosins constitute a protein family of more than 20 isoforms arising mainly from alternative splicing and are present in muscle as well as non-muscle cells. We identified a new TM-1 splicing isoform in kidney and heart (TM-1a) that differs from TM-1 in the C terminus and interacted with PC2. In vitro biochemical methods, including GST pull-down, blot overlay and microtiter binding assays, confirmed the interaction between PC2 and the two TM-1 isoforms. Further experiments targeted the interacting domains to G821-R878 of PC2 and A152-E196, a common segment of TM-1 and TM-1a. Indirect double immunofluorescence experiments showed partial co-localization of PC2 and TM-1 in transfected mouse fibroblast NIH 3T3 cells. Co-immunoprecipitation (co-IP) studies using 3T3 cells and Xenopus oocytes co-expressing PC2 and TM-1 (or TM-1a) revealed in vivo association between the protein pairs. Furthermore, the in vivo interaction between the endogenous PC2 and TM-1 was demonstrated also by reciprocal co-IP using native human embryonic kidney cells and human adult kidney. Considering previous reports that TM-1 acts as a suppressor of neoplastic growth of transformed cells, it is possible that TM-1 contributes to cyst formation/growth when the anchorage of PC2 to the actin microfilament via TM-1 is altered."	"Prevalence and severity of &quot;benign&quot; mutations in the beta-myosin heavy chain, cardiac troponin T, and alpha-tropomyosin genes in hypertrophic cardiomyopathy. Genotype-phenotype correlative studies have implicated 8 particular mutations that cause hypertrophic cardiomyopathy (HCM) as &quot;benign defects,&quot; associated with near-normal survival: N232S, G256E, F513C, V606M, R719Q, and L908V of beta-myosin heavy chain (MYH7); S179F of troponin T (TNNT2); and D175N of alpha-tropomyosin (TPM1). Routine genetic screening of HCM patients for specific mutations is anticipated to provide important diagnostic and prognostic information. The frequency and associated phenotype of these mutations in a large, unselected cohort of HCM is unknown. A total of 293 unrelated HCM patients were genotyped for the presence of a benign mutation. DNA was obtained after informed consent; specific MHY7, TNNT2, and TPM1 fragments were amplified by polymerase chain reaction; and the mutations were detected by denaturing high-performance liquid chromatography and automated DNA sequencing. Only 5 (1.7%) of the 293 patients possessed a benign mutation. Moreover, all 5 subjects with an ascribed benign mutation had already manifested clinically severe expression of HCM, with all 5 requiring surgical myectomy, 3 of the 5 having a family history of sudden cardiac death, and 1 adolescent requiring an orthotopic heart transplant. These findings demonstrate the rarity of specific mutations in HCM and challenge the notion of mutation-specific clinical outcomes. Fewer than 2% of the subjects harbored a benign mutation, and those patients with a benign mutation experienced a very serious clinical course."	"De novo missense mutation in a constitutively expressed exon of the slow alpha-tropomyosin gene TPM3 associated with an atypical, sporadic case of nemaline myopathy. We describe an atypical case of nemaline myopathy with an unusual distribution of muscle weakness who presented at 14 years of age with kyphoscoliosis. In this patient, we demonstrate heterozygosity for a de novo CGT-CAT (Arg167His) mutation in a constitutively expressed exon (exon 5) of slow alpha-tropomyosin (TPM3). This is the first mutation identified in a constitutively expressed exon of TPM3 in a nemaline myopathy patient, but is similar to recently described mutations in beta-tropomyosin (TPM2) associated with nemaline myopathy and mutations in fast alpha-tropomyosin (TPM1) which cause hypertrophic cardiomyopathy."	"A novel TPM1 mutation in a family with hypertrophic cardiomyopathy and sudden cardiac death in childhood. We sought to define the pathogenic mutation in a family with hypertrophic cardiomyopathy (HC) and a markedly arrhythmogenic phenotype. The proband was an 8-year-old female with a sentinel event of sudden death. Screening echocardiograms revealed HC in 2 of her 3 siblings and her father. Her youngest male sibling was diagnosed with HC at age 2 years and died suddenly at age 6 years from ventricular fibrillation despite an implanted cardioverter defibrillator. Using DNA extracted from peripheral lymphocytes, linkage exclusion was performed by haplotype analysis of polymorphic markers for the HC genes. Genes not excluded by linkage were analyzed for mutations using denaturing high-performance liquid chromatography (DHPLC) and direct DNA sequencing. Using this strategy, a 610 T&gt;G nucleotide substitution in the alpha-tropomyosin gene (TPM1) was identified resulting in a novel L185R (Leucine [L] to Arginine [R]) missense mutation. This mutation was a spontaneous germ-line mutation originating in the proband's father. L185R-TPM1 cosegregated with family members having clinical evidence of HC, including the proband as confirmed by molecular autopsy. The mutation was not present in 400 reference alleles. Thus, a novel missense mutation in TPM1 was discovered in a family with HC and sudden death in childhood. Unlike previously defined mutations that may disrupt the interactions between alpha-tropomyosin monomers, the L185R mutation may affect troponin-T binding. Defining the pathogenic mutation enabled definitive molecular diagnosis of 2 surviving children."	"Novel mutations in sarcomeric protein genes in dilated cardiomyopathy. Mutations in sarcomeric protein genes have been reported to cause dilated cardiomyopathy (DCM). In order to detect novel mutations we screened the sarcomeric protein genes beta-myosin heavy chain (MYH7), myosin-binding protein C (MYBPC3), troponin T (TNNT2), and alpha-tropomyosin (TPM1) in 46 young patients with DCM. Mutation screening was done using single-strand conformation polymorphism (SSCP) analysis and DNA sequencing. The mutations in MYH7 were projected onto the protein data bank-structure (pdb) of myosin of striated muscle. In MYH7 two mutations (Ala223Thr and Ser642Leu) were found in two patients. Ser642Leu is part of the actin-myosin interface. Ala223Thr affects a buried residue near the ATP binding site. In MYBPC3 we found one missense mutation (Asn948Thr) in a male patient. None of the mutations were found in 88 healthy controls and in 136 patients with hypertrophic cardiomyopathy (HCM). Thus mutations in HCM causing genes are not rare in DCM and have potential for functional relevance."	"Suppression of the transformed phenotype of breast cancer by tropomyosin-1. Changes in the expression of microfilament-associated proteins, such as tropomyosins (TMs), are commonly found in malignantly transformed cells. Previous work from this laboratory has shown that tropomyosin-1 (TM1) expression is consistently abolished in human breast carcinoma cell lines, suggesting that the loss of TM1 could be a common biochemical event in the transformation of mammary epithelium. To investigate whether changes in TM1 expression are causally linked to mammary carcinogenesis, we have tested the hypothesis that TM1 is a tumor suppressor of breast cancer. MCF-7 cells, which lack TM1, were utilized as a model of human breast cancer and transduced to reexpress TM1 protein. Restoration of TM1 expression in MCF-7 cells (MCF-7/T cells) resulted in a slower growth rate, but cells remained sensitive to growth control by estrogen. TM1 expression in MCF-7 cells resulted in the emergence of TM-containing microfilaments. More significantly, MCF-7/T cells failed to grow under anchorage-independent conditions. TM1 reexpression alters the interaction of the E-cadherin-catenin complex with the cytoskeleton, indicating that TM1-induced cytoskeleton could play a significant role in suppression of the malignant phenotype. Taken together with our previous work on transformed murine fibroblasts, the results presented in this communication indicate that in nonmuscle cells TM1 functions as a suppressor of transformation."	"Tropomyosin-1, a novel suppressor of cellular transformation is downregulated by promoter methylation in cancer cells. Tropomyosins (TMs) are a family of microfilament binding proteins, which are suppressed in the transformed cells. We have investigated the mechanism of suppression of TMs, in particular that of tropomyosin-1 (TM1), in breast cancer cells. Inhibition of DNA methyl transferase with 5-aza-2'-deoxycytidine (AZA) alone did not induce TM1 expression. However, combined treatment of trichostatin A (TSA) and AZA resulted in readily detectable expression of TM1, but not that of other TM isoforms. Upregulation of TM1 expression paralleled with the reemergence of TM1 containing microfilaments, and in abolition of anchorage-independent growth. The synergistic action of AZA and TSA in reactivation of TM1 gene was also evident in ras-transformed fibroblasts. These data, for the first time, show that hypermethylation of TM1 gene and chromatin remodeling are the predominant mechanisms by which TM1 expression is downregulated in breast cancer cells."	"Vertebrate tropomyosin: distribution, properties and function. Tropomyosin (TM) is widely distributed in all cell types associated with actin as a fibrous molecule composed of two alpha-helical chains arranged as a coiled-coil. It is localised, polymerised end to end, along each of the two grooves of the F-actin filament providing structural stability and modulating the filament function. To accommodate the wide range of functions associated with actin filaments that occur in eucaryote cells TM exists in a large number isoforms, over 20 of which have been identified. These isoforms which are expressed by alternative promoters and alternative RNA processing of four genes, TPM1, 2, 3 and 4, all conform to a general pattern of structure. Their amino acid sequences consist of an integral number, six or seven in vertebrates, of quasiequivalent regions of about 40 residues that are considered to represent the actin-binding regions of the molecule. In addition to the variable regions a large part of the polypeptide chains of the TM isoforms, mainly centrally located and expressed by five exons, is invariant. Many of the isoforms are tissue and filament specific in their distribution implying that the exons expressed in them and the regions of the molecule they represent are of significance for the function of the filament system with which they are associated. In the case of muscle there is clear evidence that the TM moves its position on the F-actin filament during contraction and it is therefore considered to play an important part in the regulation of the process. It is uncertain how the role of TM in muscle compares to that in non-muscle systems and if its function in the former tissue is unique to muscle."	"Modulation of myosin function by isoform-specific properties of Saccharomyces cerevisiae and muscle tropomyosins. Tropomyosin is an extended coiled-coil protein that influences actin function by binding longitudinally along thin filaments. The present work compares cardiac tropomyosin and the two tropomyosins from Saccharomyces cerevisiae, TPM1 and TPM2, that are much shorter than vertebrate tropomyosins. Unlike cardiac tropomyosin, the phase of the coiled-coil-forming heptad repeat of TPM2 is discontinuous; it is interrupted by a 4-residue deletion. TPM1 has two such deletions, which flank the 38-residue partial gene duplication that causes TPM1 to span five actins instead of the four of TPM2. Each of the three tropomyosin isoforms modulates actin-myosin interactions, with isoform-specific effects on cooperativity and strength of myosin binding. These different properties can be explained by a model that combines opposite effects, steric hindrance between myosin and tropomyosin when the latter is bound to a subset of its sites on actin, and also indirect, favorable interactions between tropomyosin and myosin, mediated by mutually promoted changes in actin. Both of these effects are influenced by which tropomyosin isoform is present. Finally, the tropomyosins have isoform-specific effects on in vitro sliding speed and on the myosin concentration dependence of this movement, suggesting that non-muscle tropomyosin isoforms exist, at least in part, to modulate myosin function."	"Cytoskeletal organization in tropomyosin-mediated reversion of ras-transformation: Evidence for Rho kinase pathway. Tropomyosin (TM) family of cytoskeletal proteins is implicated in stabilizing actin microfilaments. Many TM isoforms, including tropomyosin-1 (TM1), are down-regulated in transformed cells. Previously we demonstrated that TM1 is a suppressor of the malignant transformation, and that TM1 reorganizes microfilaments in the transformed cells. To investigate how TM1 induces microfilament organization in transformed cells, we utilized ras-transformed NIH3T3 (DT) cells, and those transduced to express TM1, and/or TM2. Enhanced expression of TM1 alone, but not TM2, results in re-emergence of microfilaments; TM1, together with TM2 remarkably improves microfilament architecture. TM1 induced cytoskeletal reorganization involves an enhanced expression of caldesmon, but not vinculin, alpha-actinin, or gelsolin. In addition, TM1-induced cytoskeletal reorganization and the revertant phenotype appears to involve re-activation of RhoA controlled pathways in DT cells. RhoA expression, which is suppressed in DT cells, is significantly increased in TM1-expressing cells, without detectable changes in the expression of Rac or Cdc42. Furthermore, expression of a dominant negative Rho kinase, or treatment with Y-27632 disassembled microfilaments in normal NIH3T3 and in TM1 expressing cells. These data suggest that reactivation of Rho kinase directed pathways are critical for TM1-mediated microfilament assemblies."	"Identification of proteins in human prostate tumor material by two-dimensional gel electrophoresis and mass spectrometry. Protein patterns in cells collected from benign prostatic tissues and prostate carcinomas were analyzed using two-dimensional polyacrylamide gel electrophoresis and mass spectrometry. Polypeptide expression was evaluated by computer-assisted image analysis (PDQUEST). Proteins expressed by prostate tumors were identified via in-gel digestion and subsequent matrix-assisted laser desorption/ionization mass spectrometry. In addition to cytoskeletal and mitochondrial proteins, a 40-kDa protein was identified as prostatic acid phosphatase (PAP). PAP expression decreased approximately twofold between benign and malignant tissue. Increased expression of heat shock protein 70 and decreased expression of tropomyosin 1 were also observed in the malignant tissue. The analysis of prostate material by two-dimensional gel electrophoresis and mass spectrometry shows that particular proteins are of interest as markers of disease."	"Mutations that alter the surface charge of alpha-tropomyosin are associated with dilated cardiomyopathy. Proteins in cardiac myocytes assemble into contractile units known as sarcomeres. Contractile force is generated by interaction between sarcomeric thick and thin filaments. Thin filaments also transmit force within and between myocytes. Mutations in genes encoding the thin filament proteins actin and tropomyosin cause hypertrophic cardiomyopathy. Mutations affecting functionally distinct domains of actin also cause dilated cardiomyopathy (DCM). We used a non-positional candidate gene approach to test further the hypothesis that dysfunction of sarcomeric thin filaments, due to different mutations in the same gene, can lead to either hypertrophic or dilated cardiomyopathy. Mutational analyses of alpha-tropomyosin 1 were performed in patients with idiopathic DCM. We identified two mutations that alter highly conserved residues and that, unlike hypertrophic cardiomyopathy-associated mutations, cause localized charge reversal on the surface of tropomyosin. Therefore, substitution of different amino acid residues in the same thin filament proteins is associated with the distinct phenotypes of cardiac hypertrophy or congestive heart failure."	"Mapping of 14 expressed sequence tags (ESTs) from porcine skeletal muscle by somatic cell hybrid analysis. Chromosomal assignments are reported for fourteen porcine expressed sequence tags (ESTs)--CALM1, CRYAB, MYH7, MYL1, PDK4, PGAM2, PYGM, REV3L, RFC1, SLN, SPTBN1, SRM160, TPM1 and YWHAG. The ESTs were derived from our porcine skeletal muscle cDNA library. The ESTs sequences selected for mapping included the presence of the 3'-untranslated region. The assignments were performed using two independent somatic cell hybrid panels providing the possibility of confirmation of the results obtained. The observed localizations are compared with the locations predicted from heterologous (human-pig, pig-human) chromosome painting data and knowledge of the map locations of the human homologues. These results add new information to the porcine genome transcript map."	"Hypertrophic cardiomyopathy caused by a novel alpha-tropomyosin mutation (V95A) is associated with mild cardiac phenotype, abnormal calcium binding to troponin, abnormal myosin cycling, and poor prognosis. We report hypertrophic cardiomyopathy (HCM) in a Spanish-American family caused by a novel alpha-tropomyosin (TPM1) mutation and examine the pathogenesis of the clinical disease by characterizing functional defects in the purified mutant protein. HCM was linked to the TPM1 gene (logarithm of the odds [LOD] score 3.17). Sequencing and restriction digestion analysis demonstrated a TPM1 mutation V95A that cosegregated with HCM. The mutation has been associated with 13 deaths in 26 affected members (11 sudden deaths and 2 related to heart failure), with a cumulative survival rate of 73+/-10% at the age of 40 years. Left ventricular wall thickness (mean 16+/-6 mm) and disease penetrance (53%) were similar to those for the ss-myosin mutations L908V and G256E previously associated with a benign prognosis. Left ventricular hypertrophy was milder than with the ss-myosin mutation R403Q, but the prognosis was similarly poor. With the use of recombinant tropomyosins, we identified several functional alterations at the protein level. The mutation caused a 40% to 50% increase in calcium affinity in regulated thin filament-myosin subfragment-1 (S1) MgATPase assays, a 20% decrease in MgATPase rates in the presence of saturating calcium, a 5% decrease in unloaded shortening velocity in in vitro motility assays, and no change in cooperative myosin S1 binding to regulated thin filaments. In contrast to other reported TPM1 mutations, V95A-associated HCM exhibits unusual features of mild phenotype but poor prognosis. Both myosin cycling and calcium binding to troponin are abnormal in the presence of the mutant tropomyosin. The genetic diagnosis afforded by this mutation will be valuable in the management of HCM."	"Suppressors of mdm20 in yeast identify new alleles of ACT1 and TPM1 predicted to enhance actin-tropomyosin interactions. The actin cytoskeleton is required for many aspects of cell division in yeast, including mitochondrial partitioning into growing buds (mitochondrial inheritance). Yeast cells lacking MDM20 function display defects in both mitochondrial inheritance and actin organization, specifically, a lack of visible actin cables and enhanced sensitivity to Latrunculin A. mdm20 mutants also exhibit a temperature-sensitive growth phenotype, which we exploited to isolate second-site suppressor mutations. Nine dominant suppressors selected in an mdm20/mdm20 background rescue temperature-sensitive growth defects and mitochondrial inheritance defects and partially restore actin cables in haploid and diploid mdm20 strains. The suppressor mutations define new alleles of ACT1 and TPM1, which encode actin and the major form of tropomyosin in yeast, respectively. The ACT1 mutations cluster in a region of the actin protein predicted to contact tropomyosin, suggesting that they stabilize actin cables by enhancing actin-tropomyosin interactions. The characteristics of the mutant ACT1 and TPM1 alleles and their potential effects on protein structure and binding are discussed."	"Actomyosin regulatory properties of yeast tropomyosin are dependent upon N-terminal modification. The yeast tropomyosin 1 gene (TPM1) encodes the major isoform of the two tropomyosins (Tm) found in yeast. The gene has been expressed in E. coli and the protein purified. The gene product (yTm1) is a 199-amino acid protein that has a low affinity for actin compared to the native yTm1 purified from yeast. Mass spectrometry shows that the native protein is acetylated while the recombinant protein is not. A series of yTm1 N-terminal constructs were made with either an Ala-Ser dipeptide extension previously shown to restore actin binding to skeletal muscle Tm or the natural extension found in fibroblast Tm 5a/b. All constructs bound actin tightly and showed similar CD spectra and thermal stability. All constructs induced cooperativity in the equilibrium binding of myosin subfragment 1, to actin but the binding curves differed significantly between the constructs. The apparent cooperative unit size (n) and closed/open equilibrium (K(T)) were determined using a fluorescence titration technique [Maytum et al. (1998) Biophys. J. 74, A347]. The data could be accounted for by changes in K(T) (0.1-1) with no change in n. Values of n were approximately twice the structural unit size (5 actin sites). The presence of yTm on actin had little effect upon the overall affinity of S1 for actin despite showing an ability to regulate the acto-myosin interaction. These results show that the short yTm can aid our understanding of actomyosin regulation and that the N-terminus of Tm has a major influence upon its regulatory properties."	"Tropomyosin-dependent filament formation by a polymerization-defective mutant yeast actin (V266G,L267G). A major function of tropomyosin (TPM) in nonmuscle cells may be stabilization of F-actin by binding longitudinally along the actin filament axis. However, no clear evidence exists in vitro that TPM can significantly affect the critical concentration of actin. We previously made a polymerization-defective mutant actin, GG (V266G, L267G). This actin will not polymerize alone at 25 degrees C but will in the presence of phalloidin or beryllium fluoride. With beryllium fluoride, but not phalloidin, this polymerization rescue is cold-sensitive. We show here that GG-actin polymerizability was restored by cardiac tropomyosin and yeast TPM1 and TPM2 at 25 degrees C with rescue efficiency inversely proportional to TPM length (TPM2 &gt; TPM1 &gt; cardiac tropomyosin), indicating the importance of the ends in polymerization rescue. In the presence of TPM, the apparent critical concentration of actin is 5.5 microm, 10-15-fold higher than that of wild type actin but well below that of the GG-actin alone (&gt;20 microm). Non N-acetylated TPMs did not rescue GG-actin polymerization. The TPMs did not prevent cold-induced depolymerization of GG F-actin. TPM-dependent GG-actin polymerization did not occur at temperatures below 20 degrees C. Polymerization rescue may depend initially on the capture of unstable GG-F-actin oligomers by the TPM, resulting in the strengthening of actin monomer-monomer contacts along the filament axis."	"[Mutations in genes for sarcomeric proteins]. Idiopathic cardiomyopathy(ICM) is by definition of unknown etiology. There are four clinical types of ICM; hypertrophic cardiomyopathy(HCM) characterized by ventricular hypertrophy associated with reduced compliance of the heart and accompanied by myofibrillar disarray, dilated cardiomyopathy(DCM) characterized by dilated ventricles associated with systolic dysfunction, restricted cardiomyopathy (RCM) and arrhythmogenic right ventricular cardiomyopathy(ARVC). Recent molecular genetic analyses have now revealed disease-associated mutations in ICM, especially in familial HCM and familial DCM. Mutations in 9 different disease genes (MYH7, TNNT2, TPM1, MYBPC3, MYL3, MYL2, TNNI3, CACT and TTN) cause HCM, while mutations in 3 different genes(CACT, DES and DMD) cause DCM in adults. In this review, I will summarize our current data on sarcomere mutations found in Japanese ICM, especially in HCM and DCM."	"Role of actin and Myo2p in polarized secretion and growth of Saccharomyces cerevisiae. We examined the role of the actin cytoskeleton in secretion in Saccharomyces cerevisiae with the use of several quantitative assays, including time-lapse video microscopy of cell surface growth in individual living cells. In latrunculin, which depolymerizes filamentous actin, cell surface growth was completely depolarized but still occurred, albeit at a reduced level. Thus, filamentous actin is necessary for polarized secretion but not for secretion per se. Consistent with this conclusion, latrunculin caused vesicles to accumulate at random positions throughout the cell. Cortical actin patches cluster at locations that correlate with sites of polarized secretion. However, we found that actin patch polarization is not necessary for polarized secretion because a mutant, bee1Delta(las17Delta), which completely lacks actin patch polarization, displayed polarized growth. In contrast, a mutant lacking actin cables, tpm1-2 tpm2Delta, had a severe defect in polarized growth. The yeast class V myosin Myo2p is hypothesized to mediate polarized secretion. A mutation in the motor domain of Myo2p, myo2-66, caused growth to be depolarized but with only a partial decrease in the level of overall growth. This effect is similar to that of latrunculin, suggesting that Myo2p interacts with filamentous actin. However, inhibition of Myo2p function by expression of its tail domain completely abolished growth."	"Suppression of neoplastic transformation and regulation of cytoskeleton by tropomyosins. Down regulation of Tropomyosins (TMs) is a consistent biochemical change observed in many transformed cells. Our previous work has demonstrated that Tropomyosin-1 is an antioncogene and it is a class II tumor suppressor. Using ras-transformed murine fibroblasts (DT cells), we have examined the effects of co-expression of two isoforms of TM on cell morphology, cytoskeleton and tumorigenecity. Enhanced expression of TM1, a suppressor of transformation, along with TM2 which is not a tumor suppressor results in the formation of well-organized microfilaments, a morphology that resembles normal fibroblasts, and suppression of tumorigenecity. Tumor formation in vivo was compatible with the persistence of high-level of TM2, but not TM1. Homodimers of TM1 and TM2 were observed in these cells. Thus, restoration of expression of TM1 and TM2 protein in ras-transformed cells suppresses the transformed phenotype with dramatic re-organization of microfilaments. These data show that TM2 cooperates with TM1 in the reorganization of microfilaments, while TM1 is a suppressor of the transformed phenotype."	"Gene duplication and recruitment of a specific tropomyosin into striated muscle cells in the jellyfish Podocoryne carnea. Cnidaria are the most basal animal phylum in which smooth and striated muscle cells have evolved. Since the ultrastructure of the mononucleated striated muscle is similar to that of higher animals, it is of interest to compare the striated muscle of Cnidaria at the molecular level to that of triploblastic phyla. We have used tropomyosins, a family of actin binding proteins to address this question. Throughout the animal kingdom, a great diversity of tropomyosin isoforms is found in non-muscle cells but only a few conserved tropomyosins are expressed in muscle cells. Muscle tropomyosins are all similar in length and share conserved termini. Two cnidarian tropomyosins have been described previously but neither of them is expressed in striated muscle cells. Here, we have characterized a new tropomyosin gene Tpm2 from the hydrozoan Podocoryne carnea. Expression analysis by RT-PCR and by whole mount in situ hybridization demonstrate that Tpm2 is exclusively expressed in striated muscle cells of the medusa. The Tpm2 protein is shorter in length than its counterparts from higher animals and differs at both amino and carboxy termini from striated muscle isoforms of higher animals. Interestingly, Tpm2 differs considerably from Tpm1 (only 19% identity) which was described previously in Podocoryne carnea. This divergence indicates a functional separation of cytoskeletal and striated muscle tropomyosins in cnidarians. These data contribute to our understanding of the evolution of the tropomyosin gene family and demonstrate the recruitment of tropomyosin into hydrozoan striated muscles during metazoan evolution. J. Exp. Zool. (Mol. Dev. Evol.) 285:378-386, 1999."	"A potential role of the cytoskeleton of Saccharomyces cerevisiae in a functional organization of glycolytic enzymes. Numerous individual enzymes participate in a given synthetic or degradative pathway in which the product of one reaction becomes the substrate for the subsequent enzyme. This raises the question of whether the product of one 'soluble' enzyme diffuses freely through the available cell volume, where it accidentally collides with the subsequent 'soluble' enzyme. Alternatively, enzymes acting in a given pathway may be organized in ordered structures, metabolons. Certain glycolytic enzymes have been shown to co-localize with the cytoskeleton in mammalian cells. We deleted genes coding for proteins associated with the cytoskeleton of Saccharomyces cerevisiae: TPM1 coding for tropomyosin, SAC6 for fimbrin and CIN1 for a microtubule-associated protein. Single deletions or deletions of two such genes had no effect on the specific activities of glycolytic enzymes, or on the rates of glucose consumption and ethanol production. However, the concentrations of glycolytic metabolites during a switch from a gluconeogenic mode of metabolism, growth on an ethanol medium, to glycolysis after glucose addition showed transient deviations from the normal change in metabolite concentrations, as observed in wild type cells. However, all metabolites in mutant strains reached wild-type levels within 2-4 h after the shift. Only ATP levels remained low in all but the tmp1-Delta-sac6-Delta double mutant strains. These observations can be interpreted to mean that metabolic reorganization from a gluconeogenic to a glycolytic metabolism is facilitated by an intact cytoskeleton in yeast."	"Refined localization of the human alpha-tropomyosin gene (TPM1) by genetic mapping. NA"	"Suppression of src-induced transformed phenotype by expression of tropomyosin-1. Suppression of high M(r) tropomyosins (TMs) is a common feature of transformed cells. Previous work from this laboratory has demonstrated that the isoform 1 of TM, TM1, acts as an anti-oncogene in ras-transformed murine fibroblasts. In this study, we have investigated whether TM1 is a ras-specific suppressor, or a general suppressor protein of the cellular transformation. V-src transformed fibroblasts, which express decreased TM1, were transduced with a full-length cDNA to overexpress TM1. Both the control and the transduced cells expressed v-src kinase at comparable levels. TM1 expressing (src-T1) cells grew at a lower rate in monolayer, exhibited well spread, flat morphology than the control cells. Enhanced expression of TM1 resulted in improved microfilamental architecture. More significantly, src-T1 cells completely failed to grow under anchorage independent conditions. These data demonstrate that TM1 is as an anti-oncogene of functionally diverse oncogenes, and it is a class II tumor suppressor protein."	"Donor site competition is involved in the regulation of alternative splicing of the rat beta-tropomyosin pre-mRNA. The rat beta-tropomyosin (beta-TM) gene encodes both skeletal muscle beta-TM mRNA and nonmuscle TM-1 mRNA via alternative RNA splicing. This gene contains eleven exons: exons 1-5, 8, and 9 are common to both mRNAs; exons 6 and 11 are used in fibroblasts as well as in smooth muscle, whereas exons 7 and 10 are used in skeletal muscle. Previously we demonstrated that utilization of the 3' splice site of exon 7 is blocked in nonmuscle cells. In this study, we use both in vitro and in vivo methods to investigate the regulation of the 5' splice site of exon 7 in nonmuscle cells. The 5' splice site of exon 7 is used efficiently in the absence of flanking sequences, but its utilization is suppressed almost completely when the upstream exon 6 and intron 6 are present. The suppression of the 5' splice site of exon 7 does not result from the sequences at the 3' end of intron 6 that block the use of the 3' splice site of exon 7. However, mutating two conserved nucleotides GU at the 5' splice site of exon 6 results in the efficient use of the 5' splice site of exon 7. In addition, a mutation that changes the 5' splice site of exon 7 to the consensus U1 snRNA binding site strongly stimulates the splicing of exon 7 to the downstream common exon 8. Collectively, these studies demonstrate that 5' splice site competition is responsible, in part, for the suppression of exon 7 usage in nonmuscle cells."	"Tpm1, a locus controlling IL-12 responsiveness, acts by a cell-autonomous mechanism. Th phenotype development is controlled not only by cytokines but also by other parameters including genetic background. One site of genetic variation between murine strains that has direct impact on Th development is the expression of the IL-12 receptor. T cells from B10.D2 and BALB/c mice show distinct control of IL-12 receptor expression. When activated by Ag, B10.D2 T cells express functional IL-12 receptors and maintain IL-12 responsiveness. In contrast, under the same conditions, BALB/c T cells fail to express IL-12 receptors and become unresponsive to IL-12, precluding any Th1-inducing effects if subsequently exposed to IL-12. Previously, we identified a locus, which we termed T cell phenotype modifier 1 (Tpm1), on murine chromosome 11 that controls this differential maintenance of IL-12 responsiveness. In this study, we have produced a higher resolution map around Tpm1. We produced and analyzed a series of recombinants from a first-generation backcross that significantly narrows the genetic boundaries of Tpm1. This allowed us to exclude from consideration certain previous candidates for Tpm1, including IFN-regulatory factor-1. Also, cellular analysis of F1(B10.D2 x BALB/c) T cells demonstrates that Tpm1 exerts its effect on IL-12 receptor expression in a cell-autonomous manner, rather than through influencing the extracellular milieu. This result strongly implies that despite the proximity of our locus to the IL-13/IL-4 gene cluster, these cytokines are not candidates for Tpm1."	"Down-regulation of tropomyosin-2 expression in c-Jun-transformed rat fibroblasts involves induction of a MEK1-dependent autocrine loop. Overexpression of the c-Jun transcription factor in rodent fibroblasts may result in cell transformation or in apoptosis. The mechanisms whereby c-Jun induces transformation are unknown. We show here that the expression of high-molecular weight tropomyosin-2 (TM-2) is down-regulated in c-jun-transformed FR3T3 rat fibroblasts. However, down-regulation did not seem to be a direct effect of c-Jun on TM-2 gene expression. Thus, TM down-regulation in c-jun-transformed cells was alleviated by inhibitors of Ras (BZA-5B) or MEK1 (PD98059). Furthermore, medium conditioned by c-jun-transformed cells induced TM-2 down-regulation in untransformed cells by a mechanism requiring MEK1. Consistent with a central role for the MEK/ERK, but not SEK/JNK, pathway for TM down-regulation, constitutively active mutants of Raf induced TM down-regulation, whereas constitutively active Rac did not. We also show that anchorage-independent growth of c-jun-transformed cells requires MEK1. These findings suggest that indirect induction of the MEK/ERK pathway is central to c-Jun-induced transformation of rat fibroblasts."	"Small deletions in the regulatory 3' UTR of the human alpha-tropomyosin gene identified by differential display. The differential display technique (DDT) was used to compare Fanconi anaemia (FA) fibroblasts with those of normal controls in a screen for genes involved in DNA repair, recognizing and handling damage or indicating cell cycle abnormalities as a result of genetic changes. The DDT revealed two different deletions of 5 and 11 bp at a single locus in the 3' untranslated region (UTR) of a gene known to encode human alpha-tropomyosin (TPM1) in FA cells. These small deletions were detected by analysis of shifted 900-bp long cDNA fragments on polyacrylamide gels. They were characterized as loss of GTTTT or TGTTTTGTTTT, respectively, in a region with five GTTTT tandem repeats. Since it was postulated that the 3' UTR of the TPM1 gene plays a regulatory role in cell differentiation and tumour suppression, the existence and possible patterns of deletions in a variety of normal donors was investigated. The heterogenous distribution of non-deleted, 5- and 11-bp deleted 3' UTR regions indicate a polymorphism of the TPM1 gene in this tandem repeat motif. Therefore the expression pattern of these mutations among FA and non-FA cells rendered any direct relationship to the putative DNA repair defect in FA unlikely. Of note, however, the fact remains that such deletions reportedly facilitate mRNA degradation and may bear significance in the TPM1 gene action. Finally, of further interest is the finding that even small deletions can be identified by DDT in addition to the identification of the differential expression patterns of genes."	"SRO9, a multicopy suppressor of the bud growth defect in the Saccharomyces cerevisiae rho3-deficient cells, shows strong genetic interactions with tropomyosin genes, suggesting its role in organization of the actin cytoskeleton. RHO3 encodes a Rho-type small GTPase in the yeast Saccharomyces cerevisiae and is involved in the proper organization of the actin cytoskeleton required for bud growth. SRO9 (YCL37c) was isolated as a multicopy suppressor of a rho3delta mutation. An Sro9p domain required for function is similar to a domain in the La protein (an RNA-binding protein). Disruption of SRO9 did not affect vegetative growth, even with the simultaneous disruption of an SRO9 homologue, SRO99. However, sro9delta was synthetically lethal with a disruption of TPM1, which encodes tropomyosin; sro9delta tpm1delta cells did not distribute cortical actin patches properly and lysed. We isolated TPM2, the other gene for tropomyosin, as a multicopy suppressor of a tpm1delta sro9delta double mutant. Genetic analysis suggests that TPM2 is functionally related to TPM1 and that tropomyosin is important but not essential for cell growth. Overexpression of SRO9 suppressed the growth defect in tpm1delta tpm2delta cells, disappearance of cables of actin filaments in both rho3delta cells and tpm1delta cells, and temperature sensitivity of actin mutant cells (act1-1 cells), suggesting that Sro9p has a function that overlaps or is related to tropomyosin function. Unlike tropomyosin, Sro9p does not colocalize with actin cables but is diffusely cytoplasmic. These results suggest that Sro9p is a new cytoplasmic factor involved in the organization of actin filaments."	"Mutations synthetically lethal with tpm1delta lie in genes involved in morphogenesis. Yeast contains two genes, TPM1 and TPM2, encoding tropomyosins, either of which can provide an essential function in the yeast cytoskeleton. To elucidate more clearly the function of the major tropomyosin, encoded by TPM1, we have isolated mutations that confer synthetic lethality with the null mutant of TPM1. Here we describe a phenotypic and genetic analysis of mutations in TSL1/BEM2, TSL2, TSL3, TSL5, and TSL6 (tropomyosin synthetic lethal). All the mutants exhibit clear morphological and some actin cytoskeletal defects, but are not noticeably defective in secretion, endocytosis, or organelle segregation. The lethality conferred by tsl tpm1delta mutations could be specifically suppressed by either TPM1 or an additional copy of TPM2. This implies that the essential function compromised in the tsl tpm1delta constructs is the same essential function for which Tpm1p or Tpm2p is necessary. Synthetic interactions and unlinked noncomplementation were observed between the tsl mutants, suggesting that they participate in related functions involving morphogenesis. In support of this, tsl6-1 was identified as an allele of the nonessential gene SLT2 or MPK1 whose product is a MAP kinase regulating cell wall synthesis. These results indicate that this synthetic lethality approach provides a sensitive screen for the isolation of mutations affecting morphogenesis, many of which are likely to be in nonessential genes, like BEM2 and SLT2."	"PDP1, a novel Drosophila PAR domain bZIP transcription factor expressed in developing mesoderm, endoderm and ectoderm, is a transcriptional regulator of somatic muscle genes. In vertebrates, transcriptional control of skeletal muscle genes during differentiation is regulated by enhancers that direct the combinatorial binding and/or interaction of MEF2 and the bHLH MyoD family of myogenic factors. We have shown that Drosophila MEF2 plays a role similar to its vertebrate counterpart in the regulation of the Tropomyosin I gene in the development of Drosophila somatic muscles, however, unlike vertebrates, Drosophila MEF2 interacts with a muscle activator region that does not have binding sites for myogenic bHLH-like factors or any other known Drosophila transcription factors. We describe here the isolation and characterization of a component of the muscle activator region that we have named PDP1 (PAR domain protein 1). PDP1 is a novel transcription factor that is highly homologous to the PAR subfamily of mammalian bZIP transcription factors HLF, DBP and VBP/TEF. This is the first member of the PAR subfamily of bZIP transcription factors to be identified in Drosophila. We show that PDP1 is involved in regulating expression of the Tropomyosin I gene in somatic body-wall and pharyngeal muscles by binding to DNA sequences within the muscle activator that are required for activator function. Mutations that eliminate PDP1 binding eliminate muscle activator function and severely reduce expression of a muscle activator plus MEF2 mini-enhancer. These and previous results suggest that PDP1 may function as part of a larger protein/DNA complex that interacts with MEF2 to regulate transcription of Drosophila muscle genes. Furthermore, in addition to being expressed in the mesoderm that gives rise to the somatic muscles, PDP1 is also expressed in the mesodermal fat body, the developing midgut endoderm, the hindgut and Malpighian tubules, and the epidermis and central nervous system, suggesting that PDP1 is also involved in the terminal differentiation of these tissues."	"The yeast gene, MDM20, is necessary for mitochondrial inheritance and organization of the actin cytoskeleton. In Saccharomyces cerevisiae, the growing bud inherits a portion of the mitochondrial network from the mother cell soon after it emerges. Although this polarized transport of mitochondria is thought to require functions of the cytoskeleton, there are conflicting reports concerning the nature of the cytoskeletal element involved. Here we report the isolation of a yeast mutant, mdm20, in which both mitochondrial inheritance and actin cables (bundles of actin filaments) are disrupted. The MDM20 gene encodes a 93-kD polypeptide with no homology to other characterized proteins. Extra copies of TPM1, a gene encoding the actin filament-binding protein tropomyosin, suppress mitochondrial inheritance defects and partially restore actin cables in mdm20 delta cells. Synthetic lethality is also observed between mdm20 and tpm1 mutant strains. Overexpression of a second yeast tropomyosin, Tpm2p, rescues mutant phenotypes in the mdm20 strain to a lesser extent. Together, these results provide compelling evidence that mitochondrial inheritance in yeast is an actin-mediated process. MDM20 and TPM1 also exhibit the same pattern of genetic interactions; mutations in MDM20 are synthetically lethal with mutations in BEM2 and MYO2 but not SAC6. Although MDM20 and TPM1 are both required for the formation and/or stabilization of actin cables, mutations in these genes disrupt mitochondrial inheritance and nuclear segregation to different extents. Thus, Mdm20p and Tpm1p may act in vivo to establish molecular and functional heterogeneity of the actin cytoskeleton."	"Dissection of filamentous growth by transposon mutagenesis in Saccharomyces cerevisiae. Diploid Saccharomyces cerevisiae strains starved for nitrogen undergo a developmental transition from growth as single yeast form (YF) cells to a multicellular form consisting of filaments of pseudohyphal (PH) cells. Filamentous growth is regulated by an evolutionarily conserved signaling pathway that includes the small GTP-binding proteins Ras2p and Cdc42p, the protein kinases Ste20p, Ste11p and Ste7p, and the transcription factor Ste12p. Here, we designed a genetic screen for mutant strains defective for filamentous growth (dfg) to identify novel targets of the filamentation signaling pathway, and we thereby identified 16 different genes, CDC39, STE12, TEC1, WHI3, NAB1, DBR1, CDC55, SRV2, TPM1, SPA2, BNI1, DFG5, DFG9, DFG10, BUD8 and DFG16, mutations that block filamentous growth. Phenotypic analysis of dfg mutant strains genetically dissects filamentous growth into the cellular processes of signal transduction, bud site selection, cell morphogenesis and invasive growth. Epistasis tests between dfg mutant alleles and dominant activated alleles of the RAS2 and STE11 genes, RAS2Val19 and STE11-4, respectively, identify putative targets for the filamentation signaling pathway. Several of the genes described here have homologues in filamentous fungi, where they also regulate fungal development."	"Fine mapping of five human skeletal muscle genes: alpha-tropomyosin, beta-tropomyosin, troponin-I slow-twitch, troponin-I fast-twitch, and troponin-C fast. In this paper the chromosomal localization of the human skeletal muscle genes Troponin-I slow-twitch (TNNI1), Troponin-I fast-twitch (TNNI2), and Troponin-C fast (TNNC2) and the refinement of the position for alpha-Tropomyosin (TPM1) and beta-Tropomyosin (TPM2) are reported. By radiation hybrid mapping, TPM1 was assigned to chromosome 15q22.1, TPM2 to chromosome 9p13.2-p13.1, TNNI1 to chromosome 1q31.3, TNNI2 to chromosome 11p15.5, and TNNC2 to chromosome 20q12-q13.11. The genomic distribution of these genes is discussed, with particular emphasis on the cluster organization of the Troponin genes."	"Mitochondrial inheritance: cell cycle and actin cable dependence of polarized mitochondrial movements in Saccharomyces cerevisiae. Asymmetric growth and division of budding yeast requires the vectorial transport of growth components and organelles from mother to daughter cells. Time lapse video microscopy and vital staining were used to study motility events which result in partitioning of mitochondria in dividing yeast. We identified four different stages in the mitochondrial inheritance cycle: (1) mitochondria align along the mother-bud axis prior to bud emergence in G1 phase, following polarization of the actin cytoskeleton; (2) during S phase, mitochondria undergo linear, continuous and polarized transfer from mother to bud; (3) during S and G2 phases, inherited mitochondria accumulate in the bud tip. This event occurs concomitant with accumulation of actin patches in this region; and (4) finally, during M phase prior to cytokinesis, mitochondria are released from the bud tip and redistribute throughout the bud. Previous studies showed that yeast mitochondria colocalize with actin cables and that isolated mitochondria contain actin binding and motor activities on their surface. We find that selective destabilization of actin cables in a strain lacking the tropomyosin 1 gene (TPM1) has no significant effect on the velocity of mitochondrial motor activity in vivo or in vitro. However, tpm1 delta mutants display abnormal mitochondrial distribution and morphology; loss of long distance, directional mitochondrial movement; and delayed transfer of mitochondria from the mother cell to the bud. Thus, cell cycle-linked mitochondrial motility patterns which lead to inheritance are strictly dependent on organized and properly oriented actin cables."	"The rho-GAP encoded by BEM2 regulates cytoskeletal structure in budding yeast. Microfilaments are required for polarized growth and morphogenesis in Saccharomyces cerevisiae. To accomplish this, actin cables and patches are redistributed during the cell cycle to direct secretory components to appropriate sites for cell growth. A major component of actin cables is tropomyosin I, encoded by TPM1, that determines or stabilizes these structures. Disruption of TPM1 is not lethal but results in the loss of actin cables and confers a partial defect in polarized secretion. Using a synthetic lethal screen, we have identified seven mutations residing in six genes whose products are required in the absence of Tpm1p. Each mutant exhibited a morphological defect, suggesting a functional link to the actin cytoskeleton. Complementation cloning of one mutation revealed that it lies in BEM2, which encodes a GTPase-activating protein for the RHO1 product. bem2 mutations also show synthetic lethality with rho1 and mutations in certain other cytoskeletal genes (ACT1, MYO1, MYO2, and SAC6) but not with mutations in several noncytoskeletal genes. These data therefore provide a genetic link between the GAP encoded by BEM2 and the functional organization of microfilaments. In addition, we show that bem2 mutations confer benomyl sensitivity and have abnormal microtubule arrays, suggesting that the BEM2 product may also be involved directly or indirectly in regulating microtubule function."	"Tropomyosin is essential in yeast, yet the TPM1 and TPM2 products perform distinct functions. Sequence analysis of chromosome IX of Saccharomyces cerevisiae revealed an open reading frame of 166 residues, designated TPM2, having 64.5% sequence identity to TPM1, that encodes the major form of tropomyosin in yeast. Purification and characterization of Tpm2p revealed a protein with the characteristics of a bona fide tropomyosin; it is present in vivo at about one sixth the abundance of Tpm1p. Biochemical and sequence analysis indicates that Tpm2p spans four actin monomers along a filament, whereas Tpmlp spans five. Despite its shorter length, Tpm2p can compete with Tpm1p for binding to F-actin. Over-expression of Tpm2p in vivo alters the axial budding of haploids to a bipolar pattern, and this can be partially suppressed by co-over-expression of Tpm1p. This suggests distinct functions for the two tropomyosins, and indicates that the ratio between them is important for correct morphogenesis. Loss of Tpm2p has no detectable phenotype in otherwise wild type cells, but is lethal in combination with tpm1 delta. Over-expression of Tpm2p does not suppress the growth or cell surface targeting defects associated with tpm1 delta, so the two tropomyosins must perform an essential function, yet are not functionally interchangeable. S. cerevisiae therefore provides a simple system for the study of two tropomyosins having distinct yet overlapping functions."	"Ty1-copia group retrotransposon sequences in amphibia and reptilia. We have isolated sequences belonging to Ty1-copia group retrotransposons from the genomes of an amphibian (Pyxicephalus adspersa) and three reptiles (Conolophus subscristatus, Amblyrynchus cristatus and Pytas mucosus). Two different sequences were found in the amphibian (Tpa1 and Tpa2). Each is present in several copies per genome and absent from the genomes of two other amphibian species. The C. subcristatus sequence Tcs1 is present in multiple copies in both its host genome (Galapagos land iguana) and the genome of the related Galapagos marine iguana (A. cristatus). There is little or no polymorphism in Tcs1 insertions between different individual animals, suggesting that this sequence is not transposing rapidly in either iguana genome. The P. mucosus sequence Tpm1 shows a discontinuous distribution in snake species, suggesting that it has either been lost from many lineages during vertical germline transmission or has been transferred horizontally in some snake species. Phylogenetic comparisons of all these sequences with each other and with other members of this retrotransposon group from other animals and plants show that sequences within a particular vertebrate species are most closely related to each other, consistent with a vertical transmission model for their evolution."	"Assignment of the human skeletal muscle alpha-tropomyosin gene (TPM1) to band 15q22 by fluorescence in situ hybridization. A sequence-tagged site (STS) was developed for the human skeletal muscle alpha-tropomyosin gene (TPM1) and used to isolate a genomic clone, lambda TPM1.1, containing part of the TPM1 gene. Fluorescence in situ hybridization of this clone to metaphase chromosome spreads localised TPM1 to chromosome band 15q22. This localisation in humans is consistent with that recently described for the mouse."	"Genetic evidence for functional interactions between actin noncomplementing (Anc) gene products and actin cytoskeletal proteins in Saccharomyces cerevisiae. We describe here genetic interactions between mutant alleles of Actin-NonComplementing (ANC) genes and actin (ACT1) or actin-binding protein (SAC6, ABP1, TPM1) genes. The anc mutations were found to exhibit allele-specific noncomplementing interactions with different act1 mutations. In addition, mutant alleles of four ANC genes (ANC1, ANC2, ANC3 and ANC4) were tested for interactions with null alleles of actin-binding protein genes. An anc1 mutant allele failed to complement null alleles of the SAC6 and TPM1 genes that encode yeast fimbrin and tropomyosin, respectively. Also, synthetic lethality between anc3 and sac6 mutations, and between anc4 and tpm1 mutations was observed. Taken together, the above results strongly suggest that the ANC gene products contribute to diverse aspects of actin function. Finally, we report the results of tests of two models previously proposed to explain extragenic noncomplementation."	"Unexpected combinations of null mutations in genes encoding the actin cytoskeleton are lethal in yeast. To understand the role of the actin cytoskeleton in cell physiology, and how actin-binding proteins regulate the actin cytoskeleton in vivo, we and others previously identified actin-binding proteins in Saccharomyces cerevisiae and studied the effect of null mutations in the genes for these proteins. A null mutation of the actin gene (ACT1) is lethal, but null mutations in the tropomyosin (TPM1), fimbrin (SAC6), Abp1p (ABP1), and capping protein (CAP1 and CAP2) genes have relatively mild or no effects. We have now constructed double and triple mutants lacking 2 or 3 of these actin-binding proteins, and studied the effect of the combined mutations on cell growth, morphology, and organization of the actin cytoskeleton. Double mutants lacking fimbrin and either Abp1p or capping protein show negative synthetic effects on growth, in the most extreme case resulting in lethality. All other combinations of double mutations and the triple mutant lacking tropomyosin, Abp1p, and capping protein, are viable and their phenotypes are similar to or only slightly more severe than those of the single mutants. Therefore, the synthetic phenotypes are highly specific. We confirmed this specificity by overexpression of capping protein and Abp1p in strains lacking fimbrin. Thus, while overexpression of these proteins has deleterious effects on actin organization in wild-type strains, no synthetic phenotype was observed in the absence of fimbrin. We draw two important conclusions from these results. First, since mutations in pairs of actin-binding protein genes cause inviability, the actin cytoskeleton of yeast does not contain a high degree of redundancy. Second, the lack of structural and functional homology among these genetically redundant proteins (fimbrin and capping protein or Abp1p) indicates that they regulate the actin cytoskeleton by different mechanisms. Determination of the molecular basis for this surprising conclusion will provide unique insights into the essential mechanisms that regulate the actin cytoskeleton."	"Characterization of TPM1 disrupted yeast cells indicates an involvement of tropomyosin in directed vesicular transport. Disruption of the yeast tropomyosin gene TPM1 results in the apparent loss of actin cables from the cytoskeleton (Liu, H., and A. Bretscher. 1989. Cell. 57:233-242). Here we show that TPM1 disrupted cells grow slowly, show heterogeneity in cell size, have delocalized deposition of chitin, and mate poorly because of defects in both shmooing and cell fusion. The transit time of alpha-factor induced a-agglutinin secretion to the cell surface is longer than in isogenic wild-type strains, and some of the protein is mislocalized. Many of the TPM1-deleted cells contain abundant vesicles, similar in morphology to late secretory vesicles, but without an abnormal accumulation of intermediates in the delivery of either carboxypeptidase Y to the vacuole or invertase to the cell surface. Combinations of the TPM1 disruption with sec13 or sec18 mutations, which affect early steps in the secretory pathway, block vesicle accumulation, while combinations with sec1, sec4 or sec6 mutations, which affect a late step in the secretory pathway, have no effect on the vesicle accumulation. The phenotype of the TPM1 disrupted cells is very similar to that of a conditional mutation in the MYO2 gene, which encodes a myosin-like protein (Johnston, G. C., J. A. Prendergast, and R. A. Singer. 1991. J. Cell Biol. 113:539-551). The myo2-66 conditional mutation shows synthetic lethality with the TPM1 disruption, indicating that the MYO2 and TPM1 gene products may be involved in the same, or parallel function. We conclude that tropomyosin, and by inference actin cables, may facilitate directed vesicular transport of components to the correct location on the cell surface."	"Disruption of the single tropomyosin gene in yeast results in the disappearance of actin cables from the cytoskeleton. The yeast tropomyosin gene, designated TPM1, is present in a single copy per haploid genome and encodes a protein with a predicted molecular weight of 23.5 kd. The protein sequence is homologous to higher cell tropomyosins, including the characteristic hydrophobic-hydrophilic pseudoheptapeptide repeats. Indirect immunofluorescence microscopy reveals that tropomyosin is localized with actin cables in wild-type cells. Disruption of TPM1 is not lethal, but results in a reduced growth rate and disappearance of actin cables. Strains carrying the conditional actin mutation act1-2 also lack actin cables; overexpression of tropomyosin in these strains partially restores actin cables. These results strongly suggest that tropomyosin interacts with F actin in vivo and may play an important role in assembling or stabilizing actin cables in yeast."	"Repair properties in yeast mitochondrial DNA mutators. After ethylmethanesulfonate mutagenesis of the strain Saccharomyces cerevisiae D273-10B, out of 100,000 survivors, 1,000 were selected for their high production of petite mutants at 36 degrees C. Among these 1,000 mutators, 5 also showed an increased frequency of spontaneous point mutations measured at 25 degrees C. Further analysis revealed that in all mutators, except 2, petite accumulation proceeded at 25 degrees C as well as 36 degrees C. In these 2 mutants, the production of petite mutants was much higher at 36 degrees C than at 35 degrees C. In one of them, however, the mutator and the thermosensitive petite phenotypes were due to mutations in two unlinked nuclear genes. In the other mutants, both traits were the result of a mutation in a single nuclear gene. The mutators fell into three complementation groups (tpm1, tpm2, mup1). No complementation was observed between tpm1 mutants and the gam4 mutant previously described by Foury and Goffeau (1979). From the latter and the present works, only four complementation groups (gam1, gam2, gam4 or tpm1, mup1) have been identified and it is likely that the number of genes controlling specifically the spontaneous mutability of the mtDNA is low. The mutators exhibited a variety of responses to damaging agents such as UV light and ethidium bromide; especially in a representative mutant from the complementation group tpm1, the induction of rho- mutants was sensitive to UV light and resistant to ethidium bromide.(ABSTRACT TRUNCATED AT 250 WORDS)"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ALPK3"	"hypertrophic cardiomyopathy"	"Expanding the clinical and genetic spectrum of ALPK3 variants: Phenotypes identified in pediatric cardiomyopathy patients and adults with heterozygous variants. Biallelic damaging variants in ALPK3, encoding alpha-protein kinase 3, cause pediatric-onset cardiomyopathy with manifestations that are incompletely defined. We analyzed clinical manifestations of damaging biallelic ALPK3 variants in 19 pediatric patients, including nine previously published cases. Among these, 11 loss-of-function (LoF) variants, seven compound LoF and deleterious missense variants, and one homozygous deleterious missense variant were identified. Among 18 live-born patients, 8 exhibited neonatal dilated cardiomyopathy (44.4%; 95% CI: 21.5%-69.2%) that subsequently transitioned into ventricular hypertrophy. The majority of patients had extracardiac phenotypes, including contractures, scoliosis, cleft palate, and facial dysmorphisms. We observed no association between variant type or location, disease severity, and/or extracardiac manifestations. Myocardial histopathology showed focal cardiomyocyte hypertrophy, subendocardial fibroelastosis in patients under 4 years of age, and myofibrillar disarray in adults. Rare heterozygous ALPK3 variants were also assessed in adult-onset cardiomyopathy patients. Among 1548 Dutch patients referred for initial genetic analyses, we identified 39 individuals with rare heterozygous ALPK3 variants (2.5%; 95% CI: 1.8%-3.4%), including 26 missense and 10 LoF variants. Among 149 U.S. patients without pathogenic variants in 83 cardiomyopathy-related genes, we identified six missense and nine LoF ALPK3 variants (10.1%; 95% CI: 5.7%-16.1%). LoF ALPK3 variants were increased in comparison to matched controls (Dutch cohort, P = 1.6×10<sup>-5</sup>; U.S. cohort, P = 2.2×10<sup>-13</sup>). Biallelic damaging ALPK3 variants cause pediatric cardiomyopathy manifested by DCM transitioning to hypertrophy, often with poor contractile function. Additional extracardiac features occur in most patients, including musculoskeletal abnormalities and cleft palate. Heterozygous LoF ALPK3 variants are enriched in adults with cardiomyopathy and may contribute to their cardiomyopathy. Adults with ALPK3 LoF variants therefore warrant evaluations for cardiomyopathy."	"Peptidomic analysis of hippocampal tissue for explore leptin neuroprotective effect on the preterm ischemia-hypoxia brain damage model rats. The most common injury of preterm infants is periventricular leukomalacia (PVL) and to date there is still no safe and effective treatment. In our previous studies, leptin has been found to have neuroprotective effects on the preterm ischemia-hypoxia brain damage model rats in animal behavior. To gain insight into the neuroprotective mechanisms of leptin on preterm brain damage model rats, we constructed a comparative peptidomic profiling of hippocampal tissue between leptin-treated after model and preterm ischemia-hypoxia brain damage model rats using a stable isobaric labeling strategy involving tandem mass tag reagents, followed by nano liquid chromatography tandem mass spectrometry. We identified and quantified 4164 peptides, 238 of which were differential expressed in hippocampal tissue in the two groups. A total of 150 peptides were up regulated and 88 peptides were down regulated. These peptides were imported into the Ingenuity Pathway Analysis (IPA) and identified putative roles in nervous system development, function and diseases. We concluded that the preterm ischemia-hypoxia brain damage model with leptin treatment induced peptides changes in hippocampus, and these peptides, especially for the peptides associated &quot;microtubule-associated protein 1b (MAP1b), Elastin (Eln), Piccolo presynaptic cytomatrix protein (Pclo), Zinc finger homeobox 3(Zfhx3), Alpha-kinase 3(Alpk3) and Myosin XVA(Myo15a) &quot;, could be candidate bio-active peptides and participate in neuroprotection of leptin. These may advance our current understanding of the mechanism of leptin's neuroprotective effect on preterm brain damage and may be involved in the etiology of preterm brain damage. Meanwhile, we found that repression of ILK signaling pathway plays a significant role in neuroprotection of leptin. A better understanding of the role of ILK signaling pathway in neuroprotective mechanisms will help scientists and researchers to develop selective, safe and efficacious drug for therapy against human nervous system disorders."	"Genome-Wide Analysis of Left Ventricular Image-Derived Phenotypes Identifies Fourteen Loci Associated With Cardiac Morphogenesis and Heart Failure Development. The genetic basis of left ventricular (LV) image-derived phenotypes, which play a vital role in the diagnosis, management, and risk stratification of cardiovascular diseases, is unclear at present. The LV parameters were measured from the cardiovascular magnetic resonance studies of the UK Biobank. Genotyping was done using Affymetrix arrays, augmented by imputation. We performed genome-wide association studies of 6 LV traits-LV end-diastolic volume, LV end-systolic volume, LV stroke volume, LV ejection fraction, LV mass, and LV mass to end-diastolic volume ratio. The replication analysis was performed in the MESA study (Multi-Ethnic Study of Atherosclerosis). We identified the candidate genes at genome-wide significant loci based on the evidence from extensive bioinformatic analyses. Polygenic risk scores were constructed from the summary statistics of LV genome-wide association studies to predict the heart failure events. The study comprised 16 923 European UK Biobank participants (mean age 62.5 years; 45.8% men) without prevalent myocardial infarction or heart failure. We discovered 14 genome-wide significant loci (3 loci each for LV end-diastolic volume, LV end-systolic volume, and LV mass to end-diastolic volume ratio; 4 loci for LV ejection fraction, and 1 locus for LV mass) at a stringent P&lt;1×10<sup>-8</sup>. Three loci were replicated at Bonferroni significance and 7 loci at nominal significance (P&lt;0.05 with concordant direction of effect) in the MESA study (n=4383). Follow-up bioinformatic analyses identified 28 candidate genes that were enriched in the cardiac developmental pathways and regulation of the LV contractile mechanism. Eight genes (TTN, BAG3, GRK5, HSPB7, MTSS1, ALPK3, NMB, and MMP11) supported by at least 2 independent lines of in silico evidence were implicated in the cardiac morphogenesis and heart failure development. The polygenic risk scores of LV phenotypes were predictive of heart failure in a holdout UK Biobank sample of 3106 cases and 224 134 controls (odds ratio 1.41, 95% CI 1.26 - 1.58, for the top quintile versus the bottom quintile of the LV end-systolic volume risk score). We report 14 genetic loci and indicate several candidate genes that not only enhance our understanding of the genetic architecture of prognostically important LV phenotypes but also shed light on potential novel therapeutic targets for LV remodeling."	"Phenotypic spectrum of ALPK3-related cardiomyopathy. Cardiomyopathies are clinically heterogeneous disorders and are the leading cause of cardiovascular morbidity and mortality. Different etiologies have a significant impact on prognosis. Recently, novel biallelic loss-of-function pathogenic variants in alpha-kinase 3 (ALPK3) were implicated in causing early-onset pediatric cardiomyopathy (cardiomyopathy, familial hypertrophic 27; OMIM 618052). To date, eight patients, all presented during early childhood, were reported with biallelic ALPK3 pathogenic variants. We describe the molecular and clinical phenotype characterization of familial cardiomyopathy on one family with six affected individuals. We identified homozygosity for an ALPK3 deleterious sequence variant (NM_020778.4:c.639G&gt;A:p.Trp213*) in all the affected individuals. They presented with either dilated cardiomyopathy that progressed to hypertrophic cardiomyopathy (HCM) or HCM with left ventricular noncompaction. The age of presentation in our cohort extends between infancy to the fourth decade. The phenotypic severity decreases with the progression of age."	"A risk score model for the prediction of osteosarcoma metastasis. Osteosarcoma is the most common primary solid malignancy of the bone, and its high mortality usually correlates with early metastasis. In this study, we developed a risk score model to help predict metastasis at the time of diagnosis. We downloaded and mined four expression profile datasets associated with osteosarcoma metastasis from the Gene Expression Omnibus. After data normalization, we performed LASSO logistic regression analysis together with 10-fold cross validation using the GSE21257 dataset. A combination of eight genes (RAB1,CLEC3B,FCGBP,RNASE3,MDL1,ALOX5AP,VMO1 and ALPK3) were identified as being associated with osteosarcoma metastasis. These genes were put into a gene risk score model, and the prediction efficiency of the model was then validated using three independent datasets (GSE33383, GSE66673, and GSE49003) by plotting receiver operating characteristic curves. The expression levels of the eight genes in all datasets were shown as heatmaps, and gene ontology gene annotation and Kyoto Encyclopedia of Genes and Genomes pathway enrichment analysis were performed. These eight genes play a role in cancer-related biological processes, such as apoptosis and biosynthetic processes. Our results may aid in elucidating the possible mechanisms of osteosarcoma metastasis, and may help to facilitate the individual management of patients with osteosarcoma after treatment."	"Novel ALPK3 mutation in a Tunisian patient with pediatric cardiomyopathy and facio-thoraco-skeletal features. Pediatric cardiomyopathy is a complex disease with clinical and genetic heterogeneity. Recently, the ALPK3 gene was described as a new hereditary cardiomyopathy gene underlying pediatric cardiomyopathies. Only eight patients carrying mutations in ALPK3 have been reported to date. Here, we report a 3-year-old male patient with both hypertrophic and dilated cardiomyopathy. The patient presented dysmorphic features and skeletal deformities of hands and feet, pectus excavatum, and cleft palate. The genetic investigation was performed by whole-exome sequencing in the patient and his parents. We identified a novel homozygous mutation in ALPK3 (c.1531_1532delAA; p.Lys511Argfs*12). Our work extends the phenotypic spectrum of the ALPK3-associated cardiomyopathy by reporting additional clinical features. This is the first study of a Tunisian patient with mutation in the ALPK3 gene. In conclusion, ALPK3 should be included in the list of genes to be considered in genetic studies for patients affected with pediatric syndromic cardiomyopathy."	"ALPK3 gene mutation in a patient with congenital cardiomyopathy and dysmorphic features. Primary cardiomyopathy is one of the most common inherited cardiac diseases and harbors significant phenotypic and genetic heterogeneity. Because of this, genetic testing has become standard in treatment of this disease group. Indeed, in recent years, next-generation DNA sequencing has found broad applications in medicine, both as a routine diagnostic tool for genetic disorders and as a high-throughput discovery tool for identifying novel disease-causing genes. We describe a male infant with primary dilated cardiomyopathy who was diagnosed using intrauterine echocardiography and found to progress to hypertrophic cardiomyopathy after birth. This proband was born to a nonconsanguineous family with a past history of a male fetus that died because of cardiac abnormalities at 30 wk of gestation. Using whole-exome sequencing, a novel homozygous frameshift mutation (c.2018delC; p.Gln675SerfsX30) in ALPK3 was identified and confirmed with Sanger sequencing. Heterozygous family members were normal with echocardiographic examination. To date, only two studies have reported homozygous pathogenic variants of ALPK3, with a total of seven affected individuals with cardiomyopathy from four unrelated consanguineous families. We include a discussion of the patient's phenotypic features and a review of relevant literature findings."	"Exome-wide association study reveals novel susceptibility genes to sporadic dilated cardiomyopathy. Dilated cardiomyopathy (DCM) is an important cause of heart failure with a strong familial component. We performed an exome-wide array-based association study (EWAS) to assess the contribution of missense variants to sporadic DCM. 116,855 single nucleotide variants (SNVs) were analyzed in 2796 DCM patients and 6877 control subjects from 6 populations of European ancestry. We confirmed two previously identified associations with SNVs in BAG3 and ZBTB17 and discovered six novel DCM-associated loci (Q-value&lt;0.01). The lead-SNVs at novel loci are common and located in TTN, SLC39A8, MLIP, FLNC, ALPK3 and FHOD3. In silico fine mapping identified HSPB7 as the most likely candidate at the ZBTB17 locus. Rare variant analysis (MAF&lt;0.01) demonstrated significant association for TTN variants only (P = 0.0085). All candidate genes but one (SLC39A8) exhibit preferential expression in striated muscle tissues and mutations in TTN, BAG3, FLNC and FHOD3 are known to cause familial cardiomyopathy. We also investigated a panel of 48 known cardiomyopathy genes. Collectively, rare (n = 228, P = 0.0033) or common (n = 36, P = 0.019) variants with elevated in silico severity scores were associated with DCM, indicating that the spectrum of genes contributing to sporadic DCM extends beyond those identified here. We identified eight loci independently associated with sporadic DCM. The functions of the best candidate genes at these loci suggest that proteostasis regulation might play a role in DCM pathophysiology."	"A Potential Oligogenic Etiology of Hypertrophic Cardiomyopathy: A Classic Single-Gene Disorder. Hypertrophic cardiomyopathy (HCM) is a prototypic single-gene disease caused mainly by mutations in genes encoding sarcomere proteins. Despite the remarkable advances, the causal genes in ≈40% of the HCM cases remain unknown, typically in small families and sporadic cases, wherein cosegregation could not be established. To test the hypothesis that the missing causal genes in HCM is, in part, because of an oligogenic cause, wherein the pathogenic variants do not cosegregate with the phenotype. A clinically affected trio with HCM underwent clinical evaluation, electrocardiography, echocardiography, magnetic resonance imaging, and whole exome sequencing. Pathogenic variants in the whole exome sequencing data were identified using established algorithms. Family members were genotyped by Sanger sequencing and cosegregation was analyzed. The siblings had a severe course, whereas the mother had a mild course. Variant analysis showed that the trio shared 145 heterozygous pathogenic variants in 139 genes, including 2 in cardiomyopathy genes TTN and ALPK3. The siblings also had the pathogenic variant p.Ala13Thr variant in MYL2, a known gene for HCM. The sibling's father also carried the p.Ala13Thr variant, in whom an unambiguous diagnosis of HCM could not be made because of concomitant severe aortic stenosis. The TTN variant segregated with HCM, except in a 7-year-old boy, who had a normal phenotype. The ALPK3 variant, shared by the affected trio, did not segregate with the phenotype. We posit that a subset of HCM might be oligogenic caused by multiple pathogenic variants that do not perfectly cosegregate with the phenotype."	"From heart failure to transplantation: genes, miRNAs, and biomarkers. NA"	"ALPK3-deficient cardiomyocytes generated from patient-derived induced pluripotent stem cells and mutant human embryonic stem cells display abnormal calcium handling and establish that ALPK3 deficiency underlies familial cardiomyopathy. We identified a novel homozygous truncating mutation in the gene encoding alpha kinase 3 (ALPK3) in a family presenting with paediatric cardiomyopathy. A recent study identified biallelic truncating mutations of ALPK3 in three unrelated families; therefore, there is strong genetic evidence that ALPK3 mutation causes cardiomyopathy. This study aimed to clarify the mutation mechanism and investigate the molecular and cellular pathogenesis underlying ALPK3-mediated cardiomyopathy. We performed detailed clinical and genetic analyses of a consanguineous family, identifying a new ALPK3 mutation (c.3792G&gt;A, p.W1264X) which undergoes nonsense-mediated decay in ex vivo and in vivo tissues. Ultra-structural analysis of cardiomyocytes derived from patient-specific and human ESC-derived stem cell lines lacking ALPK3 revealed disordered sarcomeres and intercalated discs. Multi-electrode array analysis and calcium imaging demonstrated an extended field potential duration and abnormal calcium handling in mutant contractile cultures. This study validates the genetic evidence, suggesting that mutations in ALPK3 can cause familial cardiomyopathy and demonstrates loss of function as the underlying genetic mechanism. We show that ALPK3-deficient cardiomyocytes derived from pluripotent stem cell models recapitulate the ultrastructural and electrophysiological defects observed in vivo. Analysis of differentiated contractile cultures identified abnormal calcium handling as a potential feature of cardiomyocytes lacking ALPK3, providing functional insights into the molecular mechanisms underlying ALPK3-mediated cardiomyopathy."	"Biallelic Truncating Mutations in ALPK3 Cause Severe Pediatric Cardiomyopathy. Cardiomyopathies are usually inherited and predominantly affect adults, but they can also present in childhood. Although our understanding of the molecular basis of pediatric cardiomyopathy has improved, the underlying mechanism remains elusive in a substantial proportion of cases. This study aimed to identify new genes involved in pediatric cardiomyopathy. The authors performed homozygosity mapping and whole-exome sequencing in 2 consanguineous families with idiopathic pediatric cardiomyopathy. Sixty unrelated patients with pediatric cardiomyopathy were subsequently screened for mutations in a candidate gene. First-degree relatives were submitted to cardiac screening and cascade genetic testing. Myocardial samples from 2 patients were processed for histological and immunohistochemical studies. We identified 5 patients from 3 unrelated families with pediatric cardiomyopathy caused by homozygous truncating mutations in ALPK3, a gene encoding a nuclear kinase that plays an essential role in early differentiation of cardiomyocytes. All patients with biallelic mutations presented with severe hypertrophic and/or dilated cardiomyopathy in utero, at birth, or in early childhood. Three patients died from heart failure within the first week of life. Moreover, 2 of 10 (20%) heterozygous family members showed hypertrophic cardiomyopathy with an atypical distribution of hypertrophy. Deficiency of alpha-kinase 3 has previously been associated with features of both hypertrophic and dilated cardiomyopathy in mice. Consistent with studies in knockout mice, we provide microscopic evidence for intercalated disc remodeling. Biallelic truncating mutations in the newly identified gene ALPK3 give rise to severe, early-onset cardiomyopathy in humans. Our findings highlight the importance of transcription factor pathways in the molecular mechanisms underlying human cardiomyopathies."	"Mouse embryonic stem cells irradiated with γ-rays differentiate into cardiomyocytes but with altered contractile properties. Embryonic stem cells (ESCs) for their derivation from the inner cell mass of a blastocyst represent a valuable in vitro model to investigate the effects of ionizing radiation on early embryonic cellular response. Following irradiation, both human and mouse ESCs (mESCs) maintain their pluripotent status and the capacity to differentiate into embryoid bodies and to form teratomas. Although informative of the maintenance of a pluripotent status, these studies never investigated the capability of irradiated ESCs to form specific differentiated phenotypes. Here, for the first time, 5Gy-irradiated mESCs were differentiated into cardiomyocytes, thus allowing the analysis of the long-term effects of ionizing radiations on the differentiation potential of a pluripotent stem cell population. On treated mESCs, 96h after irradiation, a genome-wide expression analysis was first performed in order to determine whether the treatment influenced gene expression of the surviving mESCs. Microarrays analysis showed that only 186 genes were differentially expressed in treated mESCs compared to control cells; a quarter of these genes were involved in cellular differentiation, with three main gene networks emerging, including cardiogenesis. Based on these results, we differentiated irradiated mESCs into cardiomyocytes. On day 5, 8 and 12 of differentiation, treated cells showed a significant alteration (qRT-PCR) of the expression of marker genes (Gata-4, Nkx-2.5, Tnnc1 and Alpk3) when compared to control cells. At day 15 of differentiation, although the organization of sarcomeric α-actinin and troponin T proteins appeared similar in cardiomyocytes differentiated from either mock or treated cells, the video evaluation of the kinematics and dynamics of the beating cardiac syncytium evidenced altered contractile properties of cardiomyocytes derived from irradiated mESCs. This alteration correlated with significant reduction of Connexin 43 foci. Our results indicate that mESCs populations that survive an ionizing irradiation treatment are capable to differentiate into cardiomyocytes, but they have altered contractile properties. "	"Cardiomyopathy in α-kinase 3 (ALPK3)-deficient mice. Cardiomyopathy developed in mice deficient for α-kinase 3 (ALPK3), a nuclear kinase previously implicated in the differentiation of cardiomyocytes. Alpk3 (-/-) mice were produced according to normal Mendelian ratios and appeared normal except for a nonprogressive cardiomyopathy that had features of both hypertrophic and dilated forms of cardiomyopathy. Cardiac hypertrophy in Alpk3 (-/-) mice was characterized by increased thickness of both left and right ventricular (LV and RV) walls and by markedly increased heart weight and increased heart weight/body weight and heart weight/tibia length ratios. Magnetic resonance imaging studies confirmed the increased thickness in both septal and LV free walls at end-diastole, although there was no significant change in LV wall thickness at end-systole. Myocardial hypertrophy was the predominant feature in Alpk3 (-/-) mice, but several changes more typically associated with dilated cardiomyopathy included a marked increase in end-diastolic and end-systolic LV volume, as well as reduced cardiac output, stroke volume, and ejection fractions, suggesting LV chamber dilation. Magnetic resonance imaging showed a 50% reduction in both septal and free wall LV contractility in Alpk3 (-/-) mice. Interstitial fibrosis and inflammation were notably absent in Alpk3 (-/-) mice; however, light and electron microscopy revealed altered cardiomyocyte architecture, characterized by reduced numbers of abnormal intercalated discs being associated with mild disarray of myofibrils. These lesions could account for the impaired contractility of the myofibrillar apparatus and contribute to the pathogenesis of cardiomyopathy in Alpk3 (-/-) mice."	"The differentiation of cardiomyocytes from mouse embryonic stem cells is altered by dioxin. 2,3,7,8-Tetrachlorodibenzo-para-dioxin (TCDD) causes abnormalities during heart development. Cardiomyocytes derived from embryonic stem (ES) cells are a robust model for the study of early cardiomyogenesis. Here, we evaluated the effects of TCDD at key stages during the differentiation of mouse ES cells into cardiomyocytes analysing: (i) the transcription of lineage differentiation (Brachyury, Nkx-2.5, Actc-1), cardiac-specific (Alpk3, cTnT, cTnI, cTnC) and detoxification phase I (Cyp1A1, Cyp1A2 and Cyp1B1) and phase II (Nqo1, Gsta1 and Ugt1a6) genes; (ii) the global gene expression; (iii) the ultrastructure of ES-derived cardiomyocytes; (iv) level of ATP production and (v) the immunolocalisation of sarcomeric α-actinin, β-myosin heavy chain and cTnT proteins. We show that TCDD affects the differentiation of ES cells into cardiomyocytes at several levels: (1) induces the expression of phase I genes; (2) down-regulates a group of heart-specific genes, some involved in the oxidative phosphorylation pathway; (3) reduces the efficiency of differentiation; (4) alters the arrangement of mitochondria, that show twisted and disrupted cristae, and of some sarcomeres, with misalignement or disarrangement of the myofibrillar organisation and (5) reduces ATP production. This study provides novel evidences that TCDD impairs cardiomyocyte differentiation. Sarcomeres and mitochondria could be a target for dioxin toxicity, their disruption representing a possible mechanism developing cardiac injury."	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/1b/clingen_data	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,96 @@
+"ID_gene"	"GROUPING_disorder"
+"1"	"CHD2"	"complex neurodevelopmental disorder"
+"2"	"EEF1A2"	"complex neurodevelopmental disorder"
+"3"	"GRIN1"	"complex neurodevelopmental disorder"
+"4"	"GRIN2A"	"complex neurodevelopmental disorder"
+"5"	"KCNB1"	"complex neurodevelopmental disorder"
+"6"	"MEF2C"	"complex neurodevelopmental disorder"
+"7"	"NRXN1"	"complex neurodevelopmental disorder"
+"8"	"PURA"	"complex neurodevelopmental disorder"
+"9"	"SCN2A"	"complex neurodevelopmental disorder"
+"10"	"SCN8A"	"complex neurodevelopmental disorder"
+"11"	"SHANK2"	"complex neurodevelopmental disorder"
+"12"	"SYNGAP1"	"complex neurodevelopmental disorder"
+"13"	"CC2D1A"	"complex neurodevelopmental disorder"
+"14"	"HOXA1"	"complex neurodevelopmental disorder"
+"15"	"IQSEC2"	"complex neurodevelopmental disorder"
+"16"	"NLGN4X"	"complex neurodevelopmental disorder"
+"17"	"SMC1A"	"complex neurodevelopmental disorder"
+"18"	"UPF3B"	"complex neurodevelopmental disorder"
+"19"	"WDR45"	"complex neurodevelopmental disorder"
+"20"	"ACTA2"	"familial thoracic aortic aneurysm and aortic dissection"
+"21"	"COL3A1"	"familial thoracic aortic aneurysm and aortic dissection"
+"22"	"FBN1"	"familial thoracic aortic aneurysm and aortic dissection"
+"23"	"LOX"	"familial thoracic aortic aneurysm and aortic dissection"
+"24"	"MYH11"	"familial thoracic aortic aneurysm and aortic dissection"
+"25"	"MYLK"	"familial thoracic aortic aneurysm and aortic dissection"
+"26"	"PRKG1"	"familial thoracic aortic aneurysm and aortic dissection"
+"27"	"SMAD3"	"familial thoracic aortic aneurysm and aortic dissection"
+"28"	"TGFB2"	"familial thoracic aortic aneurysm and aortic dissection"
+"29"	"TGFBR1"	"familial thoracic aortic aneurysm and aortic dissection"
+"30"	"TGFBR2"	"familial thoracic aortic aneurysm and aortic dissection"
+"31"	"ACTG1"	"nonsyndromic genetic deafness"
+"32"	"COCH"	"nonsyndromic genetic deafness"
+"33"	"EYA4"	"nonsyndromic genetic deafness"
+"34"	"GRHL2"	"nonsyndromic genetic deafness"
+"35"	"KCNQ4"	"nonsyndromic genetic deafness"
+"36"	"MYH14"	"nonsyndromic genetic deafness"
+"37"	"MYO6"	"nonsyndromic genetic deafness"
+"38"	"MYO7A"	"nonsyndromic genetic deafness"
+"39"	"POU4F3"	"nonsyndromic genetic deafness"
+"40"	"SLC17A8"	"nonsyndromic genetic deafness"
+"41"	"TECTA"	"nonsyndromic genetic deafness"
+"42"	"TMC1"	"nonsyndromic genetic deafness"
+"43"	"CABP2"	"nonsyndromic genetic deafness"
+"44"	"CDH23"	"nonsyndromic genetic deafness"
+"45"	"CIB2"	"nonsyndromic genetic deafness"
+"46"	"CLDN14"	"nonsyndromic genetic deafness"
+"47"	"ESPN"	"nonsyndromic genetic deafness"
+"48"	"ESRRB"	"nonsyndromic genetic deafness"
+"49"	"GIPC3"	"nonsyndromic genetic deafness"
+"50"	"GRXCR1"	"nonsyndromic genetic deafness"
+"51"	"ILDR1"	"nonsyndromic genetic deafness"
+"52"	"LHFPL5"	"nonsyndromic genetic deafness"
+"53"	"LOXHD1"	"nonsyndromic genetic deafness"
+"54"	"MARVELD2"	"nonsyndromic genetic deafness"
+"55"	"MYO15A"	"nonsyndromic genetic deafness"
+"56"	"MYO3A"	"nonsyndromic genetic deafness"
+"57"	"OTOA"	"nonsyndromic genetic deafness"
+"58"	"OTOG"	"nonsyndromic genetic deafness"
+"59"	"OTOGL"	"nonsyndromic genetic deafness"
+"60"	"PJVK"	"nonsyndromic genetic deafness"
+"61"	"RDX"	"nonsyndromic genetic deafness"
+"62"	"S1PR2"	"nonsyndromic genetic deafness"
+"63"	"STRC"	"nonsyndromic genetic deafness"
+"64"	"TMIE"	"nonsyndromic genetic deafness"
+"65"	"TMPRSS3"	"nonsyndromic genetic deafness"
+"66"	"TPRN"	"nonsyndromic genetic deafness"
+"67"	"POU3F4"	"nonsyndromic genetic deafness"
+"68"	"SMPX"	"nonsyndromic genetic deafness"
+"69"	"KRAS"	"Noonan syndrome"
+"70"	"LZTR1"	"Noonan syndrome"
+"71"	"NRAS"	"Noonan syndrome"
+"72"	"PTPN11"	"Noonan syndrome"
+"73"	"RAF1"	"Noonan syndrome"
+"74"	"RIT1"	"Noonan syndrome"
+"75"	"RRAS2"	"Noonan syndrome"
+"76"	"SOS1"	"Noonan syndrome"
+"77"	"ETHE1"	"Leigh syndrome"
+"78"	"LRPPRC"	"Leigh syndrome"
+"79"	"NDUFS1"	"Leigh syndrome"
+"80"	"NDUFS4"	"Leigh syndrome"
+"81"	"NDUFV1"	"Leigh syndrome"
+"82"	"SCO2"	"Leigh syndrome"
+"83"	"SLC19A3"	"Leigh syndrome"
+"84"	"SUCLA2"	"Leigh syndrome"
+"85"	"SURF1"	"Leigh syndrome"
+"86"	"TTC19"	"Leigh syndrome"
+"87"	"PDHA1"	"Leigh syndrome"
+"88"	"ACTC1"	"hypertrophic cardiomyopathy"
+"89"	"MYH7"	"hypertrophic cardiomyopathy"
+"90"	"MYL3"	"hypertrophic cardiomyopathy"
+"91"	"PRKAG2"	"hypertrophic cardiomyopathy"
+"92"	"TNNI3"	"hypertrophic cardiomyopathy"
+"93"	"TNNT2"	"hypertrophic cardiomyopathy"
+"94"	"TPM1"	"hypertrophic cardiomyopathy"
+"95"	"ALPK3"	"hypertrophic cardiomyopathy"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/1b/clingen_data_matrix	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,96 @@
+"'s disorder"	"10ribbft"	"12-lox"	"14-3-3 protein epsilon"	"14-3-3-zeta"	"15-lipoxygenase"	"15-lox"	"15-lox-1"	"182-fip"	"2019.   2019 wiley"	"3-hydroxy-3-methylglutaryl-coa synthase 2"	"3-mercaptopyruvate sulfurtransferase"	"3-ost"	"4e-bp1"	"5-ht(1a) receptor"	"5-ht1a"	"5-ht1a receptor"	"5-ht2a"	"5-lipoxygenase"	"5-lox"	"88e"	"a beta"	"a craniofacial disorder"	"a deficiency"	"a mitochondrial disease"	"a2ar"	"a2ml1"	"aa"	"aaa"	"abat"	"abca1"	"abca4"	"abca6"	"abcb1"	"abcb25"	"abcc2"	"abcc6"	"abcc9"	"abcg5"	"abdominal herniae"	"abeta"	"abeta accumulation"	"abhd12"	"abi1"	"abl"	"abl1"	"abnormal circling behavior"	"abnormality in the cochlear hair cell stereocilia"	"abnormality of middle"	"abp1"	"absence epilepsy"	"absence seizures"	"ac"	"ac1"	"ac3"	"acaa1"	"acad9"	"acadvl"	"acat1"	"acer3"	"acetyl-coa acyltransferase 1"	"ache"	"acidosis"	"acinar cell carcinomas"	"ack1"	"aco2"	"acox1"	"acp1"	"acpp"	"acral peeling skin syndrome"	"acrocyanosis and chronic diarrhoea"	"acrocyanosis and palmoplantar hyperhidrosis"	"acromicric dysplasia"	"acsl4"	"act1"	"acta1"	"acta2"	"actb"	"actbl2"	"actc-1"	"actc1"	"actg1"	"actg2"	"actin"	"actin alpha cardiac muscle 1"	"actin gamma 1"	"activin"	"activin receptor-like kinase 5"	"actn2"	"acute leukemia"	"acute liver failure"	"acute lung injury"	"acute lymphoblastic leukemia"	"acute lymphocytic leukemia"	"acute myeloid leukaemia"	"acute myeloid leukemia"	"acvrl1"	"acy-3"	"acyl-coa oxidase 1"	"ad"	"ad disease"	"ad nshl"	"ad-mscs"	"ad-nshl"	"adamts10"	"adamts17"	"adamts3"	"adamts6"	"adamts7"	"adamts9"	"adamtsl2"	"adap1"	"adarb1"	"adcy6"	"addiction"	"additional tumors"	"adenocarcinoma"	"adenocarcinomas"	"adenoma"	"adenomas"	"adenosine 2a receptor"	"adg"	"adgrv1"	"adh"	"adhd"	"adiponectin"	"adipoq"	"adipor1"	"adipose"	"adpkd"	"adrb1"	"adrenogenital syndrome"	"advanced disease"	"af"	"af-hf001"	"af-mscs"	"af4"	"aff1"	"afp"	"agap2"	"agbl1"	"age-related hearing impairment"	"age-related hearing loss"	"age-related hearing loss 5"	"aggression"	"aggressive disease"	"agouti-related peptide"	"agrp"	"ahi1"	"ahl"	"ahl5"	"ahl8"	"ahnak"	"aied"	"aif"	"aifm1"	"aip"	"aire"	"akap1"	"akap10"	"akap12"	"akap4"	"akap79"	"akhirin"	"aki"	"aki1"	"akirin1"	"akt"	"akt kinase-interacting protein 1"	"akt serine/threonine kinase 1"	"akt1"	"akt2"	"alas"	"alas-e"	"alas-n"	"alas2"	"alcam"	"alcohol dependence"	"ald"	"aldh1a3"	"aldh6a1"	"aldoa"	"alg13"	"alk"	"alk1"	"alk4"	"alk5"	"allergic rhinitis"	"allergy"	"allodynia"	"alox12"	"alox15"	"alox5ap"	"alp"	"alpha kinase 3"	"alpha- and beta-tectorin"	"alpha-cardiac actin"	"alpha-kinase 3"	"alpha-kinase 3(alpk3)"	"alpha-mhc"	"alpha-protein kinase 3"	"alpha-sma"	"alpha-smooth muscle actin"	"alpha-syn"	"alpha-synuclein"	"alpha-tectorin"	"alpha-tropomyosin"	"alphabetabetaalpha mbl"	"alphabetabetaalpha metallo beta-lactamase"	"alphaiib"	"alphasma"	"alpk2"	"alpk3"	"alpk3 deficiency underlies familial cardiomyopathy"	"alpk3-deficient cardiomyocytes"	"alport syndrome"	"als"	"alx1"	"aly/ref"	"alzheimer disease"	"alzheimer's disease"	"amacr"	"amd"	"amelx"	"amh"	"amhr2"	"amigo"	"aml"	"aml1"	"amnesia"	"amp-activated protein kinase"	"ampk"	"ampkalpha2"	"ampkbeta1"	"ampkp"	"amyloidosis"	"amyotrophic lateral sclerosis"	"anastomosis"	"anastomotic leakage"	"anastomotic mls"	"anchor the taller stereocilia"	"androgen receptor"	"anemia"	"anencephaly"	"aneuploidy"	"aneurysm"	"aneurysmal"	"aneurysms"	"ang ii"	"ang-ii"	"angioimmunoblastic t-cell lymphoma"	"angiotensin ii"	"angulin family of proteins (angulin-1/lsr, angulin-2"	"angulin-1/lsr"	"angulin-1/lsr, angulin-2"	"ank3"	"ankrd1"	"ankrd11"	"ankrd22"	"ankrd55"	"ankrd7"	"ankyrin g"	"ankyrin-g"	"ano1"	"anorectal malformations"	"anos1"	"anp"	"ant"	"ant1"	"anxa2"	"anxiety"	"anxiety and depression"	"anxiety behaviors"	"anxiety disorder"	"anxiety disorders"	"aom"	"aortic aneurysm"	"aortic aneurysms"	"aortic disease"	"aortic stenosis"	"aox"	"ap-1"	"ap-2alpha"	"ap-2beta"	"ap-2delta"	"ap1s2"	"ap2b1"	"apba2"	"apc"	"apd"	"ape1"	"apert syndrome"	"aph1b"	"api5"	"apl"	"apld"	"aplnr"	"apoa-i"	"apoa1"	"apod"	"apoe"	"apom"	"appl1"	"appl1/2"	"appl2"	"apr"	"aps"	"aps i"	"aqdq"	"aquaporin-4"	"ar"	"arachnodactyly"	"araf"	"ards"	"arf1"	"arf4"	"arf5"	"arf6"	"arhgap24"	"arhi"	"arhu"	"arhv"	"arid1a"	"arnshl"	"arnt2"	"arp2"	"arpkd"	"arrest"	"arrhythmia"	"arrhythmias"	"arsb"	"arx"	"as1"	"asap3"	"asc"	"asd"	"ask-1"	"asperger syndrome"	"aspn"	"aspp2"	"asprosin"	"ast"	"ast1"	"asthma"	"astrocytomas"	"asxl1"	"asyn"	"at1r"	"ataxia"	"atcyo1"	"atf2"	"atf3"	"atg18"	"atg2"	"atg2b"	"atg5"	"atherosclerosis"	"atherosclerotic"	"atherosclerotic stable angina"	"atm"	"atm1"	"atm3"	"atoh1"	"atoh1a"	"atopic dermatitis"	"atp13a2"	"atp1a2"	"atp1b1"	"atp1b2b"	"atp2a1"	"atp2a3"	"atp2b2"	"atp2c1"	"atp5a1"	"atp5c1"	"atp5h"	"atp6"	"atp6v1b1"	"atp7a"	"atp7b"	"atpase"	"atresia"	"atrial fibrillation"	"atrial fibrosis"	"atrial natriuretic peptide"	"atrial septal defect"	"atrioventricular"	"atrioventricular canal"	"atrophy"	"atrx"	"atsos1"	"attention deficit hyperactivity disorder"	"attention deficits"	"attention-deficit/hyperactivity disorder"	"auditory"	"auditory and vestibular hair cells"	"auditory dysfunction"	"auditory hair"	"auditory hair bundles"	"auditory hair cell damage"	"auditory hair cells"	"auditory neuron injury called auditory neuropathy"	"auditory neuropathy"	"auditory neuropathy and hearing loss"	"auditory neuropathy spectrum disorder"	"auditory neuropathy/auditory dys-synchrony"	"auditory neurosensory hcs"	"auditory sensory perception"	"auditory synaptopathy"	"auditory/vestibular injuries"	"auna1"	"aunx1"	"aural fullness"	"autism"	"autism and schizophrenia"	"autism spectrum disorder"	"autism spectrum disorders"	"autism-spectrum disorders"	"autistic"	"autistic behavior"	"autistic disorder"	"autistic disorders"	"autistic spectrum disorders"	"autistic traits"	"autoimmune disease"	"autoimmune diseases"	"autoimmune disorders"	"autoimmune encephalitis"	"autoimmune encephalomyelitis"	"autoimmune hepatitis"	"autoimmune inner ear disease"	"autoimmune sensorineural hearing loss"	"autoimmunity"	"autosomal dominant auditory neuropathy"	"autosomal dominant disorder"	"autosomal dominant hearing impairment"	"autosomal dominant hearing loss"	"autosomal dominant non syndromic hearing loss"	"autosomal dominant non-syndromic hearing loss"	"autosomal dominant nonsyndromic auditory neuropathy"	"autosomal dominant nonsyndromic deafness"	"autosomal dominant nonsyndromic hearing loss"	"autosomal nonsyndromic recessive hearing loss disorder"	"autosomal recessive"	"autosomal recessive ansd"	"autosomal recessive auditory neuropathy"	"autosomal recessive congenital progressive hearing loss"	"autosomal recessive contiguous"	"autosomal recessive deafness"	"autosomal recessive deafness dfnb15"	"autosomal recessive deafness dfnb22"	"autosomal recessive deafness dfnb29"	"autosomal recessive disease"	"autosomal recessive disorder"	"autosomal recessive disorders"	"autosomal recessive familial deafness"	"autosomal recessive forms of nonsyndromic hearing impairment"	"autosomal recessive hearing impairment"	"autosomal recessive hearing impairment dfnb42"	"autosomal recessive hearing loss"	"autosomal recessive hearing loss dfnb59"	"autosomal recessive hereditary hearing loss"	"autosomal recessive id"	"autosomal recessive intellectual disability"	"autosomal recessive mental retardation"	"autosomal recessive metabolic disorder"	"autosomal recessive neurometabolic disorder"	"autosomal recessive non-syndromic hearing impairment"	"autosomal recessive non-syndromic hearing loss"	"autosomal recessive non-syndromic hereditary hearing loss"	"autosomal recessive non-syndromic hl"	"autosomal recessive non-syndromic mental retardation"	"autosomal recessive non-syndromic sensorineural hearing loss"	"autosomal recessive nonsyndromic"	"autosomal recessive nonsyndromic deafness"	"autosomal recessive nonsyndromic deafness dfnb18"	"autosomal recessive nonsyndromic hearing impairment"	"autosomal recessive nonsyndromic hearing loss"	"autosomal recessive nonsyndromic mental retardation"	"autosomal recessive nonsyndromic sensorineural hearing loss"	"autosomal recessive noonan syndrome"	"autosomal recessive nshl"	"autosomal recessive spinocerebellar ataxia"	"autosomal recessive type of hearing impairment"	"autosomal recessive usher syndrome"	"autosomal-recessive acrofacial dysostosis"	"autosomal-recessive deafness"	"autosomal-recessive dfnb59 hearing loss"	"autosomal-recessive disorder"	"autosomal-recessive hearing impairment"	"autosomal-recessive hearing impairment dfnb42"	"autosomal-recessive hearing loss"	"autosomal-recessive non-syndromic hearing impairment"	"autosomal-recessive non-syndromic hearing loss"	"autosomal-recessive nonsyndromic"	"autosomal-recessive nonsyndromic hearing impairment"	"autosomal-recessive nonsyndromic hearing loss"	"autosomal-recessive nonsyndromic hearing loss dfnb77"	"autosomal-recessive nshl"	"auts2"	"avpr1b"	"awp1"	"axd"	"axonal degeneration"	"axonal injury"	"axonal neuropathy"	"azi2"	"b-cell lymphoma"	"b-raf"	"b10"	"bace"	"bace1"	"bacs"	"bacterial endocarditis"	"baf"	"baf155"	"baf170"	"bafl"	"bag3"	"balance and vision deficits"	"balance defects"	"balanced disorder"	"bap1"	"bap31"	"baraitser-winter cerebrofrontofacial syndrome"	"baraitser-winter syndrome"	"bardet-biedl syndrome"	"barentsz"	"barhl1"	"barhl2"	"barrett's esophagus"	"basal ganglia"	"basal ganglia calcification"	"basal ganglia disease"	"basic transcription factor 3"	"bat"	"bax"	"bbgd"	"bche"	"bcl-2"	"bcl-x"	"bcl-xl"	"bcl11b"	"bcl2"	"bcl2a1"	"bcl2l2"	"bcl3"	"bcl9l"	"bcor"	"bcr-abl"	"bcr-abl1"	"bcrp"	"bcs1l"	"bd"	"bdnf"	"beclin 1"	"beclin-1"	"beethoven"	"behavioral abnormalities"	"bem2"	"benign biliary tract diseases"	"benign familial infantile seizures"	"benign familial neonatal-infantile seizures"	"bet"	"beta-actin"	"beta-catenin"	"beta-galactosidase"	"beta-mhc"	"beta-myosin heavy chain"	"beta-pix"	"beta-propeller protein-associated neurodegeneration"	"beta-tectorin"	"beta-thalassemia"	"beta1"	"beta2"	"beta2-mg"	"beta2ar"	"beta2m"	"betapix"	"bfgf"	"bi@c"	"bicuspid aortic valve"	"bilateral auditory neuropathy"	"bilateral basal ganglia lesions"	"bilateral cleft lip and palate"	"bilateral deafness"	"bilateral striatal necrosis"	"bilateral vestibular schwannoma"	"bin1"	"biotinidase"	"bip"	"bipolar disorder"	"birth defects"	"bladder cancer"	"bladder carcinoma"	"bladder exstrophy"	"blastocyst"	"blastocysts"	"bleeding"	"bleeding disorders"	"blind disorder"	"blindness"	"blood loss"	"bmd"	"bmk i"	"bmp"	"bmp-2"	"bmp1"	"bmp10"	"bmp2"	"bmp3"	"bmp4"	"bmp7"	"bmp9"	"bmper"	"bmpr2"	"bnip3"	"bnip3p1"	"bnp"	"bnpi"	"bola3"	"bone marrow"	"bp1"	"bp2"	"bp3"	"bradycardia"	"braf"	"brag"	"brag1"	"brag2"	"brag3"	"brain 4"	"brain atrophy"	"brain cancer"	"brain damage"	"brain disorders"	"brain injury"	"brain iron accumulation"	"brain ischemia"	"brain lesions"	"brain malformations"	"brain tumor"	"brain tumors"	"brain-2"	"brain-4"	"brca1"	"brca2"	"brd4"	"breast cancer"	"breast cancer brain metastases"	"breast cancer metastasis"	"breast cancers"	"breast carcinoma"	"breast carcinomas"	"breast tumor"	"breast tumors"	"breast tumours"	"breast, ovarian and pancreatic cancers"	"breathing abnormalities"	"brg1"	"brip1"	"brn-3.0"	"brn-3.1"	"brn-3b"	"brn-3c"	"brn-4"	"brn3"	"brn3.1"	"brn3a"	"brn3b"	"brn3c"	"brn4"	"bronchiolitis"	"bsf"	"bsk"	"bsn"	"bsnd"	"bst2"	"btbgd"	"btd"	"btf3"	"btf3a"	"bth"	"btz"	"bundle defects"	"butyrylcholinesterase"	"bws"	"c oxidase"	"c-4"	"c-anca"	"c-fos"	"c-jun"	"c-jun n-terminal kinase"	"c-kit"	"c-maf"	"c-myc"	"c-peptide"	"c-raf"	"c/ebp"	"c10orf2"	"c11orf72"	"c19orf12"	"c19orf5"	"c1orf32"	"c1qbp"	"c1ql1"	"c2orf37"	"c2orf71"	"c3g"	"c5 acylcarnitines"	"c8b"	"c9orf10"	"c9orf72"	"ca"	"ca-binding protein 2"	"ca(2+)-binding protein 2"	"ca(2+)-sensing receptor"	"ca(v)1.3"	"ca1"	"ca10"	"ca125"	"ca2"	"ca2+-binding protein 2"	"ca3"	"cabp 1 and 2"	"cabp1"	"cabp1, 2, 4, and 5"	"cabp2"	"cabp2 and protein disulfide-isomerase a4"	"cabp2-alt"	"cabp3"	"cabp4"	"cabp5"	"cacna1a"	"cacna1c"	"cacna1d"	"cacna1g"	"cadherin 23"	"cadherin-23"	"cadherin-related 23"	"cadherin23"	"cadm1"	"cadps2"	"caf"	"caga"	"calbindin d28k"	"calbindin-d28k"	"calcific tendons"	"calcitonin gene-related peptide"	"calcium and integrin binding protein 2"	"calcium and integrin-binding protein-2"	"calcium- and integrin-binding protein 1"	"calcium- and integrin-binding protein 2"	"calcium-sensing receptor"	"caldendrin"	"calm"	"calm1"	"calmodulin"	"calnexin"	"calreticulin"	"calretinin"	"calsequestrin 1"	"calsyntenin-3"	"cam"	"camkii"	"camp"	"camsap3"	"cancer"	"cancerous"	"cancers"	"caprin-1"	"capzb"	"car"	"carcinogenesis"	"carcinoma"	"carcinoma than dysplasia"	"carcinomas"	"cardia bifida"	"cardiac abnormalities"	"cardiac anomalies"	"cardiac arrest"	"cardiac defibrillators"	"cardiac disease"	"cardiac diseases"	"cardiac dysfunction"	"cardiac failure"	"cardiac fibrosis"	"cardiac glycogenosis"	"cardiac hypertrophy"	"cardiac injury"	"cardiac syndrome"	"cardiac toxicity"	"cardiac troponin c"	"cardiac troponin i"	"cardiac troponin t"	"cardioencephalomyopathy"	"cardiomyocyte hypertrophy"	"cardiomyopathies"	"cardiomyopathy"	"cardiopulmonary injury"	"cardiotoxicity"	"cardiovascular abnormalities"	"cardiovascular disease"	"cardiovascular diseases"	"cart"	"cartilage"	"cask"	"caskin1"	"casp14"	"casp3"	"casp8"	"caspase-1"	"caspase-3"	"caspase-4"	"caspase-5"	"caspase-8"	"caspases"	"caspases-1/-4/-5/-11"	"caspr"	"caspr2"	"casq1"	"casq2"	"casr"	"catalase"	"catalepsy"	"catalyze the reduction of insulin"	"cataract"	"cataracts"	"catsper"	"catsper1"	"catsper2"	"cav 1.3"	"cav1"	"cav1.3"	"cav2.1"	"caveolin-1"	"cb1"	"cbf"	"cbf-aml"	"cbf1, suppressor of hairless"	"cbf1/rbpjkappa/su"	"cbfb"	"cbfbeta"	"cbl"	"cbl10"	"cbln1"	"cc2d1a"	"cc2d1a-deficient"	"cc2d1b"	"cc2d2a"	"ccat1"	"ccd"	"ccdc12"	"cck"	"ccl11"	"ccl2"	"ccl20"	"ccl4"	"ccnd1"	"ccnd3"	"ccny"	"ccr2"	"ccr4"	"ccr5"	"cd"	"cd122"	"cd133"	"cd146"	"cd209"	"cd28"	"cd31"	"cd33"	"cd34"	"cd38"	"cd4"	"cd44"	"cd45"	"cd68"	"cd71"	"cd8"	"cd86"	"cd90"	"cdc25a"	"cdh1"	"cdh11"	"cdh12"	"cdh13"	"cdh23"	"cdk1"	"cdk5"	"cdkl5"	"cdkn1c"	"cdkn2a"	"cdkn2b"	"cdls"	"cdr1as"	"cdx-2"	"cdx-2/3"	"cdx2"	"ce2"	"ceacam16"	"cebpa"	"cebpbeta"	"ced"	"cell lung cancer"	"cell renal cell carcinoma"	"celsr2"	"cemip"	"cenp-a"	"central auditory disorder"	"cep250"	"cerebellar ataxia"	"cerebellar atrophy"	"cerebellar hypoplasia"	"cerebellar vermis hypoplasia"	"cerebral atrophy"	"cerebral palsy"	"cerebrofrontofacial syndrome"	"cervical cancer"	"cervical sensory ganglia"	"cervicitis"	"ces"	"cfap43"	"cfap99"	"cftr"	"cg12026"	"cgk"	"cgk i"	"cgk ii"	"cgk-i"	"cgki"	"cgki alpha"	"cgkialpha"	"cgkii"	"cgmp-dependent protein kinase"	"cgmp-dependent protein kinase 1"	"cgmp-dependent protein kinase i"	"cgmp-dependent protein kinase type i"	"cgrp"	"ch-pht"	"ch=chc(6)h"	"ch1"	"ch25h"	"channelopathies"	"charge syndrome"	"chchd2"	"chd"	"chd1"	"chd1l"	"chd2"	"chd2 haploinsufficiency"	"chd3"	"chd4"	"chd7"	"chd8"	"chemokine receptor 7b"	"chest pain"	"chh"	"childhood obesity"	"chilling injury"	"chloride intracellular channel 5"	"chm"	"chmp1b"	"chmp4"	"chmp4b"	"chn1"	"cholangiocarcinoma"	"cholangiocellular carcinomas"	"cholecystokinin"	"cholesteatoma"	"choline acetyltransferase"	"chondrodysplasia punctata"	"chordin"	"chordomas"	"chorea"	"choroideremia"	"chr"	"chr1qh2.3"	"chrebp"	"chromatoid bodies"	"chromodomain helicase dna binding protein 2"	"chromodomain helicase dna-binding protein 2"	"chromosomal abnormalities"	"chromosome abnormality"	"chronic diarrhoea"	"chronic kidney disease"	"chronic lymphocytic leukemia"	"ci deficiency"	"ci dysfunction"	"ci/gli"	"cib"	"cib1"	"cib2"	"cib2-4"	"cib3"	"cib4"	"cib5"	"cii"	"ciii deficiency"	"cin"	"cipk8"	"cir"	"circling behavior"	"cirl1"	"cirrhosis"	"cis-1"	"cit-k"	"cited4"	"citrate synthase"	"civ deficiency"	"ck2"	"ckd"	"ckd-mbd"	"ckm"	"ckmt1b"	"cl-20"	"cl1"	"cl20"	"clarin-1"	"claudin 14"	"claudin 5"	"claudin-1"	"claudin-14"	"claudin-18"	"claudin-3"	"claudin-4"	"claudin-7"	"claudin-9"	"claudin14"	"cldn1"	"cldn10"	"cldn10b"	"cldn11"	"cldn12"	"cldn13"	"cldn14"	"cldn16"	"cldn19"	"cldn2"	"cldn3"	"cldn4"	"cldn5"	"cldn6"	"cldn9"	"clear cell renal cell carcinoma"	"clec3b"	"cleft palate"	"clic1"	"clic5"	"clic5-deficient"	"cll"	"cln8"	"clpb"	"clrn1"	"cls"	"cltcl1"	"cluster seizures"	"cm"	"cmc1"	"cmip"	"cml"	"cmml"	"cms"	"cmt4"	"cmtmc1"	"cmv"	"cn2"	"cnga2"	"cnga3"	"cnp"	"cntn4"	"cntnap2"	"cnv"	"co ii"	"coa4"	"coa6"	"coad"	"coasy"	"cocaine abuse"	"cocaine and amphetamine-regulated transcript"	"coccidiosis"	"coch"	"cochlear degeneration"	"cochlear dysfunction"	"cochlear hair cell degeneration"	"cochlin"	"coffin-lowry syndrome"	"cofilin"	"cofilin-1"	"cog5"	"cognitive and social deficits"	"cognitive decline"	"cognitive deficits"	"cognitive delay"	"cognitive impairment"	"coiled-coil and c2 domain containing 1a"	"coiled-coil and c2 domain-containing protein 1a"	"col11a1"	"col11a2"	"col12a1"	"col18a1"	"col1a1"	"col1a2"	"col2"	"col27a1"	"col2a1"	"col3a1"	"col4a1"	"col4a4"	"col4a5"	"col4a6"	"col5a1"	"col5a2"	"col7a1"	"col8a2"	"colitis"	"collagen type iii alpha 1"	"collagen, type viii, alpha 2"	"colon cancer"	"colon carcinogenesis"	"colon tumors"	"colonic segment"	"colorectal cancer"	"colorectal cancers"	"colorectal neoplasia"	"coma"	"combined respiratory chain deficiency"	"commd6"	"complement component 2 deficiency"	"complement component 8b deficiency"	"complex i deficiency"	"complex iii deficiencies"	"complex iii deficiency"	"comt"	"conditional parl deficiency in the nervous system"	"conduction abnormalities"	"conduction disease"	"conduction system disease"	"cone-rod dystrophy"	"congenital anomalies of the kidney"	"congenital bilateral hearing loss"	"congenital birth defects"	"congenital cardiac disease"	"congenital cardiomyopathy"	"congenital cataract"	"congenital cranial dysinnervation disorders"	"congenital deafness"	"congenital diaphragmatic hernia"	"congenital hearing disorders"	"congenital hearing impairment"	"congenital hearing loss"	"congenital heart defect"	"congenital heart defects"	"congenital heart disease"	"congenital hypogonadotropic hypogonadism"	"congenital microtia"	"congenital nephrotic syndrome"	"congenital nonsyndromic hearing loss"	"connexin 26"	"connexin 30"	"connexin 43"	"connexin26"	"connexin32"	"contractures"	"convulsions"	"copd"	"copper deficiency"	"cops3"	"coq4"	"cord"	"core binding factor"	"corin"	"corneal dystrophy"	"corneal edema"	"corneal endothelial cell dysfunction"	"corneal endothelial cell failure"	"corneal endothelial dysfunction"	"corneal endothelial dystrophies"	"corneal homeostasis"	"cornelia de lange"	"cornelia de lange syndrome"	"coronary artery disease"	"cortactin"	"cortactin binding protein 1"	"cortbp1"	"costa-pereira syndrome"	"costello syndrome"	"cough"	"coup-tfi"	"cox"	"cox deficiency"	"cox-1"	"cox-2"	"cox1"	"cox10"	"cox11"	"cox14"	"cox14p"	"cox15"	"cox16"	"cox17"	"cox18"	"cox19"	"cox1p"	"cox2"	"cox20"	"cox4"	"cox5a"	"cox6a2"	"cox7a2l"	"cox8a"	"cp2"	"cph"	"cpi-17"	"cplx3"	"craf"	"cranial sensory ganglia"	"craniofacial dysmorphism"	"craniosynostosis"	"crbn"	"crc"	"creb"	"crebbp"	"crebh"	"crkl"	"crm1"	"crn"	"crohn's disease"	"crp"	"crp2"	"crx"	"cry2"	"crybb1"	"crym"	"cs"	"csl"	"csp"	"cspg2"	"csrp3"	"cstb"	"cstn3"	"ct-1"	"ctbp2"	"ctcf"	"ctgf"	"ctif"	"ctl2"	"ctnc"	"ctni"	"ctnnb1"	"ctnt"	"ctsg"	"ctsh"	"cttn"	"cul3"	"cul4b"	"cullin 3"	"cutaneous melanoma"	"cutaneous melanomas"	"cutaneous ulcers"	"cwc27"	"cx26"	"cx32"	"cx3cl1"	"cx3cr1"	"cx40"	"cx43"	"cxcl13"	"cxcl17"	"cxcr4"	"cxxc5"	"cyc1"	"cyclin b1"	"cyclin d1"	"cyclooxygenase-2"	"cyp"	"cyp11b1"	"cyp1a1"	"cyp1a2"	"cyp1b1"	"cyp21a2"	"cyp26a1"	"cyp2b6"	"cyp2c9"	"cyp46a1"	"cyp4b1"	"cystic degeneration"	"cystic fibrosis transmembrane conductance regulator"	"cystic leucoencephalopathy"	"cytb"	"cytochrome b"	"cytochrome c"	"cytochrome-c oxidase"	"cytotoxicity"	"czech roma"	"d-hf"	"d100"	"dab2"	"dab2ip"	"dac"	"dancr"	"dapk1"	"dat"	"dax1"	"dbc1"	"dcaf17"	"dcaf4l1"	"dcm"	"dcx"	"dd"	"ddb2"	"ddl"	"ddsk2"	"ddx17"	"ddx3"	"ddx5"	"deaf roma"	"deaf-1"	"deaf-blindness"	"deafness"	"deafness and vestibular areflexia"	"deafness and vestibular disease"	"deafness and vestibular dysfunction"	"deafness autosomal recessive"	"deafness dfnb22"	"deafness dfnb22 encodes otoancorin"	"deafness dfnb42"	"deafness dfnb59"	"deafness dfnb93"	"deafness dfnx1/dfn2"	"deafness genes"	"deafness-infertility syndrome"	"death"	"debilitating disorder"	"deep sensory impairment"	"defb1"	"deficiency"	"deficiency of complex i"	"deficiency of complexes i"	"deficiency of corneal"	"deficiency, and coenzyme q10 deficiency"	"deficient leigh syndrome"	"deficits"	"deformities of hands"	"degeneration"	"degeneration of cochlear hair cells"	"degeneration of hair cell stereocilia"	"degeneration of hair cells"	"degeneration of inner hair cell stereocilia"	"degeneration of stereocilia"	"degeneration of the inner hair"	"dehydration"	"delineation of dysequilibrium syndrome type 2"	"delirium"	"dementia"	"demyelinating neuropathy"	"demyelination"	"dendritic spines"	"depdc5"	"depressed"	"depression"	"depressive"	"dermatophytosis"	"desi-hrms"	"desmin"	"developmental defects in stereocilia bundle orientation"	"developmental delay"	"developmental disorder"	"developmental disorders"	"df-nb67"	"dfn2"	"dfn3"	"dfn6"	"dfna1"	"dfna10"	"dfna11"	"dfna12"	"dfna13"	"dfna15"	"dfna2"	"dfna20"	"dfna22"	"dfna28"	"dfna2a"	"dfna36"	"dfna4"	"dfna48"	"dfna5"	"dfna53"	"dfna8"	"dfna8/12"	"dfna9"	"dfnb 18"	"dfnb1"	"dfnb10"	"dfnb16"	"dfnb18"	"dfnb18 hearing impairment"	"dfnb18b"	"dfnb2"	"dfnb21"	"dfnb22"	"dfnb22 hearing loss"	"dfnb25"	"dfnb27"	"dfnb29"	"dfnb3"	"dfnb30"	"dfnb30-type deafness"	"dfnb31"	"dfnb35"	"dfnb36"	"dfnb37"	"dfnb42"	"dfnb42 deafness"	"dfnb48"	"dfnb49"	"dfnb49 hearing loss"	"dfnb53"	"dfnb59"	"dfnb59 auditory neuropathy"	"dfnb6"	"dfnb63"	"dfnb66"	"dfnb67"	"dfnb67 hearing loss"	"dfnb67-linked"	"dfnb7"	"dfnb7/11"	"dfnb7/b11"	"dfnb7/b11 deafness"	"dfnb77"	"dfnb79"	"dfnb79-linked"	"dfnb8"	"dfnb8/10"	"dfnb81"	"dfnb82"	"dfnb83"	"dfnb84"	"dfnb85"	"dfnb9"	"dfnb93"	"dfnb96"	"dfnx1"	"dfnx1-6"	"dfnx2"	"dfnx4"	"dfnx5"	"dfnx6"	"dgat1"	"dgk"	"dgs"	"dguok"	"dhx34"	"diabetes"	"diabetes mellitus"	"diabetic"	"diabetic cardiomyopathy"	"diabetic nephropathy"	"diabetic retinopathy"	"diaph1"	"diaph3"	"diaphanous homolog 3"	"diarrhea"	"diarrhoea"	"diastolic dysfunction"	"diencephalic"	"dilated cardiomyopathy"	"dip2c"	"disability"	"disc1"	"disordered sarcomeres"	"disorders"	"dizziness"	"dj-1"	"dkcnq"	"dkk-1"	"dlat"	"dld"	"dlec1"	"dlg2"	"dlk1"	"dm"	"dm1"	"dmbt1"	"dmcabp1"	"dmd"	"dmlrpprc2"	"dmpk"	"dmrt1"	"dmrt5"	"dn"	"dnk"	"dnm"	"dnm1"	"dnm1l"	"dnmt"	"dnmt3a"	"dnt"	"dntpase"	"dominant hi"	"dpyd"	"dpys"	"dra"	"dravet syndrome"	"drd"	"drd1"	"drd2"	"drd3"	"drd4"	"drk1"	"drs"	"drug addiction"	"dsc1"	"dsc3"	"dscr1"	"dscr1l2"	"dsg2"	"dspp"	"dtna"	"dtr"	"dub3"	"durs2"	"dusp1"	"dusp5"	"dux4"	"dynamin-2"	"dync1h1"	"dyrk1a"	"dysarthria"	"dysbindin"	"dysfunction"	"dyskeratosis congenita"	"dyslexia"	"dyslipidemia"	"dysphagia"	"dysplasia"	"dysplastic"	"dyspraxia"	"dystonia"	"dystonia-parkinsonism"	"dystonic syndromes"	"dystroglycan"	"dystrophic epidermolysis bullosa"	"dystrophy"	"dzip1"	"e-cadherin"	"e-deficient"	"e1alpha"	"e1beta"	"e2f-1"	"e2f1"	"eaat3"	"ebln3p"	"ebna1"	"ecgf1"	"eclampsia"	"ecm1"	"ectopia lentis"	"eczema"	"eda"	"edema"	"eds"	"eef1"	"eef1a"	"eef1a-1"	"eef1a-2"	"eef1a1"	"eef1a2"	"eef1b"	"eef1b gamma"	"eef1b2"	"eef1d"	"eef1e1"	"ef-1 alpha"	"ef-1alpha"	"efemp1"	"effusion"	"efnb2"	"egf"	"egfr"	"egr-1"	"egr1"	"ehd1"	"ehd4"	"ehlers-danlos syndrome"	"ehmt1"	"ehmt2"	"eiee13"	"eif3s5"	"eif4a3"	"eif4aiii"	"eif4e"	"elastin"	"elavl1"	"eln"	"embryonal carcinoma"	"embryonic"	"embryonic heart tube"	"emilin-1"	"emilin-2"	"emt"	"emx1"	"en2"	"enac"	"encephalitis"	"encephalomyopathic"	"encephalomyopathic mds"	"encephalomyopathy"	"encephalopathies"	"encephalopathy"	"end-stage kidney disease"	"end-stage renal disease"	"endocrine disorders"	"endometrial cancer"	"endometriosis"	"endotoxemia"	"eng"	"eno3"	"enos"	"eosinophilia"	"ep2"	"ep300"	"ep4"	"epac"	"epac2"	"epcam"	"ependymomas"	"epha4"	"epha7"	"ephrin-a2"	"ephrin-a5b"	"epidermal growth factor receptor"	"epididymis"	"epilepsies"	"epilepsy"	"epilepsy disorders"	"epilepsy syndrome"	"epilepsy syndromes"	"epilepsy-aphasia"	"epileptic"	"epileptic encephalopathy"	"episodic ataxia"	"episodic vertigo"	"epispadias"	"epn3"	"epo"	"eps8"	"eps8l2"	"epsin-1"	"er"	"eralpha"	"erbb1/2"	"erbb2"	"erbb3"	"erbb4"	"erbeta"	"erd2"	"erf1"	"erg"	"ergic2"	"erk"	"erk1/2"	"erk2"	"erp57"	"erp72"	"err"	"err-1"	"err-beta"	"err1"	"err2"	"err3"	"erralpha"	"errbeta"	"errbeta2"	"errgamma"	"es"	"es epithelia"	"es-hc"	"esco2"	"esi-ms"	"esophageal cancer"	"esophageal squamous cell carcinoma"	"espin"	"espin-like"	"espn"	"espnl"	"esr1"	"esrd"	"esrp1"	"esrrb"	"esrrbeta"	"estrogen related receptor beta"	"estrogen-related receptor beta"	"estrogen-related receptor-beta"	"et-1"	"etec"	"ethe1"	"ethe1-deficiency"	"ethe1-deficient"	"ethylmalonic aciduria"	"ethylmalonic encephalopathy"	"ethylmalonic encephalopathy 1"	"ethylmalonic encephalopathy protein 1"	"eto"	"ets2"	"etv1"	"etv6"	"eukaryotic elongation factor 1a2"	"eukaryotic translation elongation factor 1 alpha 2"	"eukaryotic translation elongation factor 1a"	"evc"	"evc syndrome"	"evc2"	"exencephaly"	"external ophthalmoplegia"	"extracellular signal-regulated kinase"	"eya"	"eya1"	"eya2"	"eya4"	"eye absent homolog 4"	"eye movements"	"eyelid myoclonia"	"eyelid twitching"	"eyes absent"	"eyes absent 4"	"eys"	"ezh2"	"ezr"	"fa"	"fa2h"	"faah"	"fabp3"	"fabry disease"	"facs"	"factor b"	"failure"	"fak"	"fam107a"	"fam136a"	"fam183a"	"fam19a5"	"fam5c"	"familial aggregation"	"familial cardiomyopathy"	"familial deafness"	"familial dilated cardiomyopathy"	"familial disease"	"familial hypertrophic"	"familial hypertrophic cardiomyopathy"	"familial meniere's disease"	"familial neonatal-infantile seizures"	"familial nscl"	"familial schwannomatosis"	"fap"	"fasciculation"	"fasciculoventricular"	"fascin"	"fascin-2"	"fastk"	"fatigue"	"fatty acid binding protein 3"	"fatty liver injury"	"fbn-1"	"fbn1"	"fbn2"	"fbxl4"	"fbxw7"	"fcd"	"fcd2"	"fcgbp"	"fcrgamma"	"fd"	"fe deficiency"	"febrile seizures"	"fecd"	"fecd keratoplasty"	"fendrr"	"fever"	"fgf14"	"fgf19"	"fgf2"	"fgf23"	"fgf4"	"fgf8"	"fgfr1"	"fgfr2"	"fgfrl1"	"fhc"	"fhf1"	"fhl1"	"fhod1"	"fhod3"	"fi"	"fibrillin 1"	"fibrillin-1"	"fibrillin-2"	"fibrolamellar hepatocellular carcinoma"	"fibrolamellar hepatocellular carcinomas"	"fibronectin"	"fibrosis"	"fibulin-4"	"fibulin-5"	"filopodia tips"	"fistula"	"fitness"	"fkbp8"	"flcn"	"flna"	"flnc"	"flt3"	"fmd"	"fmlp"	"fmr1"	"fmrp"	"fn"	"fn1"	"fnip1"	"focal seizures"	"folr1"	"folr3"	"fos"	"fosb"	"foxa1"	"foxa2"	"foxc1"	"foxg1"	"foxl1"	"foxm1b"	"foxo1"	"foxo3a"	"foxp1"	"foxp3"	"fractures"	"fragile x syndrome"	"frat1"	"frat2"	"frda"	"fre"	"freud-1"	"freud-1/aki1"	"freud-2"	"frizzled-3"	"frontal lobe dysfunction"	"frs2"	"fscn2"	"fshd"	"fstl-1"	"fstl1"	"ftd"	"ftl"	"ftld"	"fuchs corneal dystrophy"	"fuchs endothelial corneal dystrophy"	"fuchs' corneal dystrophy"	"fuchs' dystrophy"	"fuchs' endothelial corneal dystrophy"	"furin"	"fus"	"fut2"	"fxr"	"fyn"	"fyve-cent"	"fzd1"	"fzd10"	"fzd2"	"fzd3"	"fzd4"	"fzd5"	"fzd6"	"fzd7"	"fzd8"	"fzd9"	"g6pd"	"g9a"	"gab1"	"gab2"	"gabarap"	"gabra1"	"gabra2"	"gabrb3"	"gabrg2"	"gabrg3"	"gad"	"gad2"	"gag"	"gaip"	"gal4"	"galactoses"	"galpha13"	"galphao"	"galr1"	"galr2"	"galr3"	"gamma-actin"	"gamma2"	"ganglia disease"	"gap"	"gapdh"	"gas5"	"gasdermin"	"gasdermin a"	"gastric cancer"	"gastric carcinoma"	"gastric carcinomas"	"gastric neoplasia"	"gastrointestinal impairment"	"gastrointestinal involvement"	"gastrointestinal tract"	"gata-4"	"gata2"	"gata3"	"gata4"	"gata6"	"gb"	"gbx2"	"gc b"	"gc-a"	"gc2"	"gcg"	"gcgr"	"gckr"	"gcm1"	"gcom1"	"gd"	"gdf10"	"gdf11"	"gdf15"	"gdf8"	"gdnf"	"gef"	"geleophysic dysplasia"	"gelsolin"	"genetic abnormalities"	"genetic deafness"	"genetic defect"	"genetic defects"	"genetic disease"	"genetic diseases"	"genetic disorder"	"genetic disorder of the corneal"	"genetic disorders"	"genetic hearing loss"	"genetic inner ear disorders"	"gephyrin"	"germinomas"	"gfap"	"gfi1"	"gfr"	"ggc"	"ggtmc1"	"ggtmc2"	"gh"	"gh1"	"ghrelin"	"gif"	"gipc"	"gipc1"	"gipc2"	"gipc3"	"gja1"	"gjb1"	"gjb2"	"gjb3"	"gjb6"	"gjd2"	"gkap"	"gkap42"	"gla"	"glast-1"	"glaucoma"	"glaucomatous"	"gldc"	"gli"	"gli1"	"glioblastoma"	"glioblastomas"	"glioma"	"gliomas"	"gliosis"	"glis1"	"glomerulonephritis"	"glp-1"	"glua2"	"glucose consumption"	"glucose metabolism"	"glucose oxidation"	"glud2"	"glun1"	"glun2a"	"glun2b"	"glur1"	"glut1"	"glutaredoxin cysteine-rich 1"	"glutaredoxin domain-containing cysteine-rich 1"	"gly96"	"glyceraldehyde-3-phosphate dehydrogenase"	"glyoxalase ii"	"gmp"	"gnao1"	"gnaq"	"gnas"	"gnl3l"	"gnrh"	"gnrh(1-5"	"gnrh1"	"goalpha"	"golph2"	"got1"	"gout"	"gp120"	"gp91phox"	"gpa"	"gphn"	"gpr174"	"gpr98"	"gpsm2"	"gpvi"	"gpx1"	"gpx2"	"gpx3"	"gr"	"graft failure"	"grainyhead"	"grainyhead-like 2"	"grainyhead-like-2"	"grb2"	"grg4"	"grh"	"grhl1"	"grhl2"	"grhl2b"	"grhl3"	"gria1"	"gria2"	"gria3"	"grik1"	"grik3"	"grin1"	"grin2"	"grin2a"	"grin2b"	"grin2c"	"grin2d"	"grin3"	"grin3a"	"grk5"	"grk7"	"grm1"	"grm3"	"grm5"	"grm7"	"grm8"	"growth hormone"	"growth retardation"	"grp94"	"grxcr1"	"grxcr2"	"gs"	"gsd"	"gsdm"	"gsdma"	"gsdmb"	"gsdmc"	"gsdmd"	"gsk-3beta"	"gsk3"	"gsp"	"gsta1"	"gsta2"	"gtf2ird1"	"gts"	"gucy2f"	"h-ras"	"h(4)l"	"h1.2"	"h2b"	"hace1"	"hadha"	"hair"	"hair bundle"	"hair cell death"	"hair cell degeneration"	"hair cell hair bundle"	"hair cell loss"	"hair cell stereocilia"	"hair cell stereocilla"	"hair cells degeneration"	"hand2"	"haploinsufficiency"	"harmonin"	"hars"	"hat"	"hatoh1"	"hbp1"	"hbx"	"hbxip"	"hc function"	"hcc"	"hccs"	"hcfc1"	"hclrn1"	"hcm"	"hcn4"	"hcp5"	"hd"	"hdac"	"hdac1"	"hdac2"	"hdac4"	"hdac5"	"hdac8"	"hearing"	"hearing defect"	"hearing disorders"	"hearing impaired"	"hearing impairment"	"hearing impairments"	"hearing loss"	"hearing loss cohort"	"hearing loss dfnb30"	"hearing-impaired"	"hearing-loss"	"heart defects"	"heart disease"	"heart failure"	"heat shock 70-kda protein 1b"	"hec1"	"hedgehog"	"heimler syndrome"	"hemangioblastoma"	"hemangioblastomas"	"hematopoiesis"	"hemiplegia"	"hemolytic uremic syndrome"	"hemophilia"	"hepatic fibrosis"	"hepatocarcinogenesis"	"hepatocellular carcinoma"	"hepatocellular carcinomas"	"hepatocerebral"	"hepatoma"	"hepatotoxicity"	"hepsin"	"her2"	"her3"	"hereditary deafness dfnb79"	"hereditary gingival fibromatosis"	"hereditary hearing impairment"	"hereditary hearing loss"	"herg"	"hernia"	"herr2"	"herralpha"	"herrbeta"	"herrbeta2"	"heterotopia"	"hethe1"	"hey2"	"hf"	"hfe"	"hgata3"	"hgf"	"hhi"	"hhl"	"hi"	"hiatal hernia"	"hib"	"hie"	"hif-1"	"hif-1alpha"	"hif1alpha"	"high myopia"	"hipk2"	"hippo"	"hippocampal sclerosis"	"hirschsprung disease"	"hirschsprung's disease"	"hirsutism"	"histone deacetylase 1"	"hit"	"hiv-1 infection"	"hjv"	"hk2"	"hkcne4"	"hkii"	"hkv1.5"	"hl"	"hlf"	"hmbs"	"hmcs"	"hmgb1"	"hmie versus tmie"	"hmox1"	"hmw"	"hndufs4"	"hnf1a-as1"	"hnf1beta"	"hnf4a"	"hnrnpa1"	"hnrnpa3"	"hnrnpu"	"holoprosencephaly"	"homeobox a1"	"homer1"	"homocysteinemia"	"host of anogenital cancers"	"hotair"	"hotairm1"	"hox"	"hoxa"	"hoxa-1"	"hoxa1"	"hoxa10"	"hoxa11"	"hoxa2"	"hoxa3"	"hoxa5"	"hoxa7"	"hoxa9"	"hoxb1"	"hoxb1a"	"hoxb1b"	"hoxb2"	"hoxc13"	"hoxd1"	"hpe"	"hpept1"	"hppcn"	"hps1"	"hr"	"hras"	"hrd1"	"hs2st1"	"hsa-mir-31"	"hsc"	"hsco"	"hsert"	"hsp47"	"hsp60"	"hsp70"	"hsp90"	"hsp90beta"	"hspb1"	"hspb2"	"hspb7"	"hsurf1"	"htcf3"	"htert"	"hthtr-1"	"hthtr-1 and -2"	"hthtr-2"	"hthtr1"	"hthtr2"	"htr1a"	"hub"	"huh7"	"huind1"	"huntington disease"	"huntington's disease"	"hupf2"	"hupf3"	"hupf3a"	"hupf3b"	"hus"	"huwe1"	"hvglut3"	"hyperactivity"	"hyperalgesia"	"hyperammonemia"	"hypercalciuria"	"hypercalciuria and kidney stones"	"hypercapnia"	"hyperferritinemia"	"hyperglycemia"	"hyperoxia"	"hyperplasia"	"hypersensitive"	"hypersensitivity"	"hypertelorism"	"hypertension"	"hypertensive"	"hyperthermia"	"hypertonic"	"hypertrichosis"	"hypertrophic"	"hypertrophic and dilated cardiomyopathy"	"hypertrophic cardiomyopathy"	"hypertrophic inferior"	"hypertrophic olivary degeneration"	"hypertrophic olivary nuclei degeneration"	"hypertrophic olivary nucleus degeneration"	"hypertrophy"	"hypocalciuria"	"hypocapnia"	"hypoglycemia"	"hypomyelination"	"hypoplasia"	"hypotension"	"hypothalamic neurons"	"hypothalamus"	"hypothermic circulatory arrest"	"hypothyroid disease"	"hypothyroidism"	"hypotonia"	"hypovolemia"	"hypoxemia"	"hypoxia"	"hypoxic stress"	"hypsarrhythmia"	"i deficiencies"	"i deficiency"	"i dysfunction"	"iba1"	"iba57"	"ibd"	"ibs"	"icam-1"	"icd"	"ice1"	"ichthyosis"	"id-4"	"idh"	"idh1"	"idh2"	"idh3a"	"idh3b"	"idiopathic dilated cardiomyopathy"	"idiopathic epilepsy"	"idiopathic infertile"	"idiopathic nephrotic syndrome"	"idiopathic pediatric cardiomyopathy"	"idiopathic pulmonary fibrosis"	"idiopathic urolithiasis"	"ido"	"idx-1"	"iex-1"	"if1"	"ifn-alpha"	"ifn-beta"	"ifn-gamma"	"ifnl3"	"igan"	"ige"	"igf binding protein 1"	"igf-1"	"igf-i"	"igf1"	"igf1r"	"igf2"	"igfbp4"	"igfbp5"	"igm"	"igsf3"	"ii-b"	"ii-c"	"iii deficiency"	"ikzf1"	"il-10"	"il-15"	"il-15ralpha"	"il-17a"	"il-1alpha"	"il-1beta"	"il-1r2"	"il-1racp"	"il-2"	"il-3"	"il-37"	"il-4ralpha"	"il-6"	"il-8"	"il10"	"il1rl1"	"il6"	"il8"	"ild"	"ildr1"	"ildr1 deficiency"	"ildr1b"	"ildr2"	"ilk"	"imf"	"immunodeficient"	"immunoglobulin-like domain containing receptor 1"	"immunoglobulin-like domain-containing receptor 1"	"impaired auditory"	"impaired cognitive"	"impaired glycosylation"	"impaired haploid differentiation"	"inborn error of metabolism"	"incenp"	"infantile cardioencephalomyopathy"	"infantile lactic acidosis"	"infantile metabolic disorder"	"infantile seizures"	"infantile spasms"	"infarct"	"infection"	"infertile"	"infertility"	"inflammation"	"inflammatory bowel disease"	"inherited metabolic disorder ethylmalonic encephalopathy"	"ini1"	"injury"	"ink4a"	"inner ear anomalies"	"inner ear dysfunction"	"inner ear epithelia"	"inner ear hair"	"inner ear sensory epithelia"	"insm1"	"insomnia"	"insufficiency"	"insulin"	"insulin disulfide reduction"	"insulin secretion"	"insulinoma"	"intellectual disability"	"interferon-beta"	"intracranial calcification"	"intraoperative blood loss"	"intrauterine growth retardation"	"inv"	"invariably fatal disorder"	"invasive prostate cancer"	"ionization"	"ionized"	"ip-30"	"ip3r"	"ipf"	"ipl"	"iqcb1"	"iqgap1"	"iqsec1"	"iqsec2"	"iqsec3"	"irag"	"iron deficiency"	"irs1"	"irsp53"	"ischemia"	"ischemia-hypoxia brain damage"	"ischemic"	"ischemic fasciitis"	"ischemic hf"	"isg20"	"isl1"	"isolated deafness"	"isolated methylmalonic acidemia"	"itch"	"itga5"	"itgb1"	"iv deficiency"	"iwr1"	"jak2"	"jam-c"	"jarid1c"	"jarid2"	"jazf1"	"jerker"	"jmjd1a"	"jmjd2c"	"jmml"	"jnk"	"jnk1"	"jnk2"	"juvenile idiopathic arthritis"	"juvenile myelomonocytic leukemia"	"k-ras"	"k(v)2.1"	"kal1"	"kallmann syndrome"	"kalrn"	"kcc4"	"kcna1"	"kcna2"	"kcna4"	"kcna5"	"kcnb1"	"kcnd2"	"kcne1"	"kcne2"	"kcne3"	"kcne4"	"kcne5"	"kcnj10"	"kcnj11"	"kcnj15"	"kcnk6"	"kcnma1"	"kcnq"	"kcnq1"	"kcnq1-5"	"kcnq2"	"kcnq2-5"	"kcnq2/3"	"kcnq3"	"kcnq4"	"kcnq5"	"kcnt1"	"kcnv2"	"kd"	"kdel receptor"	"kdm2a"	"kdm3a"	"kdm3b"	"kdm5c"	"keap1"	"ketosis"	"kiaa0101"	"kidney disease"	"kidney diseases"	"kidney failure"	"kidney stone"	"kidney stone disease"	"kidney stones"	"kif13a"	"kif17"	"kif1a"	"kif21a"	"kindlin-2"	"kir2.3"	"kir4.1"	"kiss1r"	"kit"	"klf2"	"klf4"	"klf6"	"klhl12"	"klotho"	"kmt2a"	"kmt2c"	"kras"	"kras4b"	"krox20"	"krp"	"krx20"	"kv 1.5"	"kv 2.1"	"kv1.1"	"kv1.2"	"kv1.3"	"kv1.4"	"kv1.5"	"kv2"	"kv2.1"	"kv2.2"	"kv4.2"	"kv4.3"	"kv6.2"	"kv6.3"	"kv6.4"	"kv7.1"	"kv7.2"	"kv7.3"	"kv7.4"	"kv7.5"	"kv8.2"	"kv9.1"	"kv9.3"	"kvbeta1"	"kvbeta2"	"l-1"	"l-myc"	"lactic acidemia"	"lactic acidosis"	"lair-1"	"lama2"	"lamc3"	"laminin alpha2"	"lamp2"	"lamp2a"	"landau-kleffner syndrome"	"larp7"	"lat"	"late-life depression"	"lc3"	"lc3b"	"lca"	"lcn2"	"ldb3"	"ldha"	"lds"	"learning disabilities"	"learning disability"	"left ventricular hypertrophy"	"leigh disease"	"leigh syndrome"	"leigh-like brain mri abnormalities"	"leigh-like syndrome"	"leigh's syndrome"	"leiomyosarcoma"	"lennox-gastaut syndrome"	"leopard syndrome"	"lep"	"leprel1"	"leptin"	"let-7c"	"leucine zipper-like transcriptional regulator 1"	"leucine-rich pentatricopeptide repeat-containing protein"	"leukemia"	"leukemias"	"leukemic"	"leukodystrophy"	"leukoencephalopathies"	"leukoencephalopathy"	"leukopenia"	"lfs"	"lgd"	"lgr4"	"lgr5"	"lgs"	"lhfpl5"	"lhfpl5a"	"lhfpl5b"	"lhx3"	"lif"	"limb abnormalities"	"limb anomalies"	"limb defects"	"limb malformations"	"limb reduction defects"	"lin28"	"linc00152"	"linc00951"	"lipolysis-stimulated lipoprotein receptor"	"lipoma hmgic fusion partner-like 5"	"lipoxygenase"	"lipoxygenase homology domains 1"	"lissencephaly"	"liver cancer"	"liver fibrosis"	"liver injury"	"lkb1"	"lks"	"llgl2"	"lmna"	"lmod1"	"lmp1"	"locomotor impairment"	"loeys-dietz syndrome"	"loss of autonomous gait"	"loss of deep sensation"	"loss of hair cells"	"lox"	"lox-1"	"loxhd1"	"loxl1"	"loxl2"	"loxl4"	"lpar2"	"lps"	"lqt2"	"lrig1"	"lrp1"	"lrp130"	"lrpap1"	"lrpprc"	"lrrk2"	"lrrtm2"	"lrtm1"	"lrtomt"	"ls"	"lsd1"	"lsfc"	"lsk"	"lsr"	"ltbp-4"	"ltbp-4l"	"ltbp1"	"ltbp2"	"lujan-fryns syndrome"	"lum"	"lung adenocarcinoma"	"lung adenocarcinomas"	"lung cancer"	"lung cancers"	"lung fibrosis"	"lung injury"	"lupus erythematosus"	"lymphoma"	"lymphomas"	"lyrm7"	"lysyl oxidase"	"lztr-1"	"lztr1"	"lzts1"	"m-ras"	"m1-4"	"ma-linc1"	"macrocephaly"	"mae"	"maf-b"	"magi-1"	"magi2"	"mago"	"magoh"	"malan syndrome"	"malat1"	"male infertility"	"malformations"	"malignancies"	"malignancy"	"malnutrition"	"man2c1"	"manic"	"maoa"	"maob"	"map1a"	"map1b"	"map1lc3b"	"map1s"	"map2"	"map2k1"	"map2k2"	"map3k8"	"mapk"	"mapk1"	"mapk7"	"mapt"	"march7"	"marfan syndrome"	"marfanoid habitus"	"marveld2"	"marveld3"	"mastitis"	"maternal iron deficiency anemia"	"math1"	"math5"	"mbd"	"mbi-eef1a"	"mbl"	"mbnl1"	"mbp"	"mc4r"	"mcd"	"mcoln1"	"mcp-1"	"mcur1"	"mdd"	"mdga1"	"mdl1"	"mdm"	"mdm2"	"mdm20"	"mdm4"	"mdr1"	"mds"	"mecp2"	"med12"	"med13l"	"medulloblastoma"	"mef2"	"mef2a"	"mef2b"	"mef2c"	"mef2d"	"meg3"	"megakaryocyte potentiating factor"	"megalin"	"megaloblastic anaemia"	"megaloblastic anemia"	"meis2"	"mek"	"mek1"	"mek1/2"	"melanocytic neoplasms"	"melanoma"	"melanomas"	"melanopsin"	"men1"	"mendelian disorders"	"meniere's disease"	"meningioma"	"meningiomas"	"meningiomatosis"	"mental disorders"	"mental impairment"	"mental retardation"	"mentally retarded"	"meox1"	"mer"	"merlin"	"mertk"	"mesothelin"	"metabolic disorder"	"metabolic disorders"	"metabolic syndrome"	"metabolism dysfunction syndrome"	"metastases"	"metastasis"	"methylmalonic acidemia"	"methylmalonic aciduria"	"metrnl"	"mettl21b"	"meya4"	"mfn2"	"mfs"	"mg2"	"mg53"	"mglur1"	"mgmt"	"mhc"	"microangiopathy"	"microcephaly"	"microtia"	"microtubule-associated protein 1b"	"middle cerebral artery"	"middle ear cholesteatoma"	"mif"	"migraine"	"min/1"	"mip-1beta"	"mir"	"mir-1"	"mir-100"	"mir-101a"	"mir-107"	"mir-10a"	"mir-10b"	"mir-126"	"mir-132"	"mir-133a"	"mir-133b"	"mir-1343"	"mir-137"	"mir-142"	"mir-143"	"mir-144"	"mir-145"	"mir-1469"	"mir-149"	"mir-152"	"mir-155"	"mir-1594"	"mir-17-5p"	"mir-181c"	"mir-182"	"mir-183"	"mir-193a"	"mir-193b"	"mir-195"	"mir-196b"	"mir-200b"	"mir-200c"	"mir-203"	"mir-204"	"mir-206"	"mir-208a"	"mir-208b"	"mir-20b"	"mir-21"	"mir-210"	"mir-211"	"mir-214"	"mir-217"	"mir-222"	"mir-223"	"mir-23b"	"mir-27a"	"mir-27b"	"mir-29a"	"mir-29b"	"mir-29c"	"mir-301a"	"mir-30b"	"mir-30c"	"mir-31"	"mir-328"	"mir-328a"	"mir-340"	"mir-3607"	"mir-361"	"mir-362"	"mir-373"	"mir-374"	"mir-378"	"mir-423"	"mir-431"	"mir-433"	"mir-489"	"mir-497"	"mir-499"	"mir-577"	"mir-605"	"mir-612"	"mir-638"	"mir-663"	"mir-7"	"mir-7-5p"	"mir-744"	"mir-762"	"mir-888"	"mir-9-5p"	"mir-93"	"mir-96"	"mir-98"	"mir-99a"	"mir122"	"mir153"	"mir204"	"mirna-21"	"mirp2"	"misrii"	"mist1"	"mitf"	"mitochondrial aggregation"	"mitochondrial complex i deficiency"	"mitochondrial complex iii (ciii) deficiency"	"mitochondrial complex iii deficiency"	"mitochondrial depletion syndrome"	"mitochondrial disease"	"mitochondrial diseases"	"mitochondrial disorder"	"mitochondrial disorders"	"mitochondrial dysfunction"	"mitochondrial encephalomyopathies"	"mitochondrial encephalomyopathy"	"mitochondrial neurogastrointestinal encephalopathy"	"mitochondrial syndrome"	"mitochondrial transcription factor a"	"mitral valve prolapse"	"mkk7"	"ml"	"mlc"	"mlc2v"	"mlck"	"mlh1"	"mlip"	"mlk3"	"mll"	"mll1"	"mll3"	"mlp"	"mlrp130"	"mls"	"mm"	"mma"	"mma-1"	"mmaa"	"mmab"	"mmachc"	"mmp-2"	"mmp-9"	"mmp1"	"mmp11"	"mmp13"	"mmp2"	"mmp3"	"mmp9"	"mmps"	"mnx"	"mocs1"	"moebius syndrome"	"mog"	"monaural occlusion"	"mood disorder"	"mor"	"morn4"	"mos"	"movement disorder"	"movement disorders"	"mp1"	"mpfc"	"mpfl"	"mpo"	"mpp"	"mps"	"mpv17"	"mr"	"mrp2"	"mrs"	"mrtf-a"	"mrx"	"mrx49"	"mrx78"	"mrx82"	"ms"	"msh6"	"msi"	"msk1"	"msn"	"mss51"	"mss51p"	"mst2"	"mstn"	"mt-rnr1"	"mtb"	"mtco1"	"mtco2"	"mthtr-1"	"mthtr-2"	"mtor"	"mtorc2"	"mtpap"	"mtrnr1"	"mtss1"	"muc1"	"muc16"	"muc4"	"muc6"	"muc7"	"mucin"	"mucoepidermoid carcinoma"	"mucosal melanoma"	"multiple lentigines"	"multiple myeloma"	"multiple sclerosis"	"multiplex autism"	"multisystem developmental disorder"	"mum"	"mupp1"	"muscle hypertrophy"	"muscle injury"	"muscle weakness"	"muscular dystrophy"	"muscular hypotonia"	"musculoskeletal abnormalities"	"mutmc2"	"mvk"	"mvp"	"myb"	"mybpc3"	"mybph"	"myc"	"mycbp"	"myd88"	"myelin basic protein"	"myelodysplastic syndromes"	"myeloid leukemia"	"myeloid sarcoma"	"myeloma"	"myeloperoxidase"	"myeov"	"myf5"	"myh1"	"myh10"	"myh11"	"myh14"	"myh14/7b"	"myh15"	"myh16"	"myh2"	"myh3"	"myh4"	"myh6"	"myh7"	"myh7b"	"myh9"	"myhc"	"myl1"	"myl2"	"myl3"	"myl4"	"myl9"	"mylk"	"mylk-as1"	"mylk2"	"mylk4"	"mylkp1"	"myo"	"myo10"	"myo15"	"myo15a"	"myo1a"	"myo1c"	"myo2p"	"myo3a"	"myo3b"	"myo5a"	"myo5b"	"myo6"	"myo7a"	"myo7aa"	"myo7b"	"myocardial fibrosis"	"myocardial hypertrophy"	"myocardial infarction"	"myocardial injury"	"myocardin"	"myocd"	"myoclonic seizures"	"myoclonic-atonic seizures"	"myocyte enhancer factor 2c"	"myocyte-specific enhancer factor 2c"	"myod"	"myod1"	"myog"	"myogenin"	"myoma"	"myopathic"	"myopathies"	"myopathy"	"myopia"	"myopodin"	"myosin"	"myosin 14"	"myosin 6"	"myosin binding protein c"	"myosin heavy chain"	"myosin heavy chain 11"	"myosin heavy chain 7"	"myosin ii paralogs"	"myosin iiia"	"myosin iiib"	"myosin light chain 3"	"myosin light chain kinase"	"myosin va"	"myosin vi"	"myosin viia"	"myosin xv"	"myosin xva"	"myosin-binding protein c"	"myosin-viia"	"myosin-xva"	"myosin7"	"myosins"	"myostatin"	"myovi"	"myoviia"	"myoz2"	"mypt1"	"myrip"	"n-cadherin"	"n-cam"	"n-methyl-d-aspartate receptor subunit 1"	"n-myc"	"n-no2"	"n33"	"na(+) channel"	"na(v)1"	"na(v)1.1"	"na(v)1.2"	"na(v)1.6"	"na(v)1.7"	"nach6"	"nag"	"nampt"	"nanog"	"napiiia"	"nasal polyps"	"nash"	"nat2"	"nav 1"	"nav 1.6"	"nav1"	"nav1.1"	"nav1.2"	"nav1.3"	"nav1.4"	"nav1.5"	"nav1.6"	"nav1.7"	"nav1.8"	"naxe"	"nbia"	"nbia disorders"	"ncald"	"ncam"	"ncoa3"	"nd"	"nd6"	"ndds"	"ndh-2"	"ndi1"	"ndi1p"	"ndn"	"ndp52"	"ndpk"	"ndrg2"	"nds"	"ndufa1"	"ndufa12"	"ndufa2"	"ndufab1"	"ndufaf1"	"ndufaf2"	"ndufaf4"	"ndufaf5"	"ndufaf6"	"ndufaf7"	"ndufb5"	"ndufb6"	"ndufb8"	"ndufs1"	"ndufs2"	"ndufs3"	"ndufs4"	"ndufs6"	"ndufs7"	"ndufs8"	"ndufv1"	"ndufv2"	"neat1"	"neck squamous cell carcinoma"	"necrosis"	"necrotizing encephalomyelopathy"	"nefl"	"nek6"	"nek7"	"nek9"	"nell2"	"nemaline myopathy"	"nenf"	"neonatal dilated cardiomyopathy"	"neonatal hypotonia"	"neonatal marfan syndrome"	"neonatal seizures"	"neoplasia"	"neoplastic human pancreas"	"nephrolithiasis"	"nephropathy"	"nerve injury"	"neto1"	"neun"	"neural damage"	"neural tube defects"	"neurexin 1"	"neurexin-1"	"neurexin1"	"neuro-developmental disorders"	"neuroblastoma"	"neurod1"	"neurodegeneration"	"neurodegenerative disease"	"neurodegenerative diseases"	"neurodegenerative disorder"	"neurodegenerative disorders"	"neurodevelopmental diseases"	"neurodevelopmental disorder"	"neurodevelopmental disorders"	"neurodevelopmental disturbance"	"neuroepithelial defects"	"neurofibromatosis"	"neurofibromatosis 2"	"neurofibromatosis type 1"	"neurofibromatosis type 2"	"neurofibromin"	"neurog1"	"neuroligin 3"	"neuroligin 4"	"neuroligin 4x"	"neuroligin-1"	"neuroligin-2"	"neuroligin-3"	"neuroligin-3 and -4"	"neuroligin-4"	"neuroligin-4 gene"	"neuroligin4"	"neurologic sequelae"	"neurological deterioration"	"neurological disease"	"neurological diseases"	"neurological disorders"	"neurological syndrome"	"neuromast hair"	"neuromyotonia"	"neuron specific enolase"	"neuronal degeneration"	"neuronal dysfunction"	"neuronal growth regulator 1"	"neuronal heterotopia"	"neuronal hyperexcitability"	"neuropathic pain"	"neuropathy"	"neuropsychiatric disorder"	"neuropsychiatric disorders"	"neurosensory disorder"	"neurotensin"	"neurotoxicity"	"neurotrophin-3"	"neutropenia"	"nf-1"	"nf-kappab"	"nf1"	"nf2"	"nfatc1"	"nfatc3"	"nfe2l2"	"nfix"	"nfkappab"	"nfl"	"ngf"	"nhe3"	"nhs"	"nif-1"	"ninac"	"nipbl"	"nipbl-as1"	"nipblb"	"nir2"	"nkd1"	"nkd2"	"nkrf"	"nkx-2.5"	"nkx2-1"	"nkx2-5"	"nkx2.2"	"nkx2.5"	"nkx6-2"	"nl1"	"nl2"	"nlg1"	"nlgn1"	"nlgn2"	"nlgn3"	"nlgn4"	"nlgn4x"	"nlgn4y"	"nlk"	"nlrp3"	"nmb"	"nmda receptor"	"nmdar"	"nmdar1"	"nmf329"	"nmhc ii-a"	"nmhc ii-c"	"nmmlck"	"no3"	"nod"	"nod2"	"nogo-a"	"non-obese"	"non-small cell lung cancer"	"non-syndromic autosomal recessive deafness"	"non-syndromic deafness"	"non-syndromic hearing impairment"	"non-syndromic hearing loss"	"non-syndromic hereditary hearing loss"	"non-syndromic intellectual disability"	"non-syndromic sensorineural deafness"	"non-syndromic sensorineural hearing loss"	"nonmuscle myosin heavy chain ii-c"	"nonsyndromic auditory neuropathy"	"nonsyndromic cleft lip"	"nonsyndromic deafness"	"nonsyndromic deafness dfnb25"	"nonsyndromic deafness dfnb79"	"nonsyndromic hearing loss"	"nonsyndromic hih"	"nonsyndromic intellectual disability"	"nonsyndromic mental retardation"	"nonsyndromic recessive deafness"	"nonsyndromic sensorineural hearing loss"	"nonsyndromic x-linked hearing loss"	"noonan syndrome"	"nor-1"	"nos1"	"nos2"	"nos3"	"notch"	"notch-1"	"notch1"	"notch2"	"nox4"	"nox5"	"np{n(ch(3))n ch-c(6)h"	"npc"	"nphs1"	"npm1"	"nppa"	"nppb"	"npy"	"nqo1"	"nr1"	"nr2a"	"nr2b"	"nr2f2"	"nras"	"nrc"	"nrcam"	"nrf-1"	"nrf-2"	"nrf1"	"nrf2"	"nrp1"	"nrx-1"	"nrxn1"	"nrxn2"	"nrxn3"	"ns"	"nscl"	"nsclc"	"nse"	"nshl"	"nt-3"	"ntrk1"	"ntrk2"	"nuclear respiratory factor 1"	"nucleostemin"	"nudr"	"nudt15"	"nup93"	"nurr1"	"nut"	"nystagmus"	"oa"	"ob"	"obese"	"obesity"	"obscn"	"obscurin"	"obsessive-compulsive disorder"	"oca2"	"occludin"	"ocd"	"oct3/4"	"oct4"	"ocular coloboma"	"ocular hypertension"	"odc"	"oesophageal squamous cell carcinoma"	"ogd"	"ohc degeneration"	"ohtahara syndrome"	"olr59"	"op-1"	"opa1"	"opening"	"opn"	"optic atrophy"	"optic neuropathy"	"optineurin"	"optn"	"oral cancer"	"oral squamous cell carcinoma"	"orthostasis"	"orthostatic acrocyanosis"	"oscc"	"osteoarthritis"	"osteopontin"	"osteoporosis"	"osteosarcoma"	"osteosarcoma metastasis"	"ostn"	"otitis"	"otoa"	"otoancorin"	"otocadherin"	"otof"	"otoferlin"	"otog"	"otogelin"	"otogelin-like"	"otogelin-like gene"	"otogl"	"ototoxicity"	"otud5"	"otx2"	"ovarian cancer"	"ovarian carcinoma"	"ovol2"	"oxt"	"oxtr"	"oxytocin receptor"	"p130"	"p16"	"p21"	"p27"	"p27kip1"	"p2rx3"	"p2ry12"	"p30"	"p31"	"p38"	"p38 mapk"	"p38alpha"	"p38gamma"	"p53"	"p53r2"	"p60"	"p62"	"p63"	"p68"	"p72"	"p73"	"p75"	"pabpc1"	"pachygyria"	"paediatric nephrology/european renal association-european dialysis"	"pai-1"	"pain"	"pak1"	"pak4"	"pancreatic"	"pancreatic acinar"	"pancreatic cancer"	"pancreatic cancers"	"pancreatic ductal adenocarcinoma"	"pancreatic ductal adenocarcinomas"	"pancreatic toxicity"	"pancreatitis"	"pank2"	"papillary thyroid carcinoma"	"par1"	"par2"	"par6"	"paralysis"	"paralyzed muscle"	"parathyroid hormone"	"parkinson's disease"	"parkinsonism"	"parl"	"paroxysmal atrial fibrillation"	"parp"	"parp-1"	"parp1"	"partition type iii anomaly"	"parvalbumin"	"pax-6"	"pax2"	"pax3"	"pax5"	"pax6"	"pax7"	"pbp"	"pbs"	"pbx"	"pbx1"	"pc1"	"pc2"	"pc3"	"pc6"	"pca"	"pca3"	"pcdh11y"	"pcdh15"	"pcdh15a"	"pcdh17"	"pcdh19"	"pcdh9"	"pck2"	"pcl"	"pcna"	"pcos"	"pcsk9"	"pd"	"pd-1"	"pd-l1"	"pdc"	"pdc deficiency"	"pdc-deficient"	"pdcd4"	"pde2a"	"pde4d"	"pde5"	"pde5a"	"pdgfra"	"pdgfralpha"	"pdh"	"pdh deficiency"	"pdha1"	"pdha1 deficiency"	"pdha2"	"pdhb"	"pdhc deficiency"	"pdhx"	"pdi"	"pdi a4"	"pdip"	"pdk1"	"pdp1"	"pdss2"	"pdz-domain protein"	"pdzd7"	"pedf"	"pediatric cardiomyopathy"	"pediatric nephrology"	"pediatric nephrology/european renal association-european dialysis"	"pediatric syndromic cardiomyopathy"	"peg10"	"pejvakin"	"pel"	"penk"	"peo1"	"periostin"	"peripheral neuropathy"	"peripheral schwannomas"	"peritonitis"	"periventricular leukomalacia"	"perm1"	"pex26"	"pex6"	"pfkfb3"	"pgam5"	"pgc-1"	"pgc-1alpha"	"pgc1alpha"	"pgp"	"pgrn"	"pha-1"	"phelan mcdermid syndrome"	"phosphoribosyl pyrophosphate synthetase 1"	"phostensin"	"phr1"	"pi4kiiibeta"	"pias3"	"pick1"	"pierce1"	"piezo2"	"piga"	"pigl"	"pik3ca"	"pikfyve"	"pink1"	"pip"	"pist"	"pit1"	"pitt-hopkins syndrome"	"pitx1"	"pjvk"	"pkc"	"pkcalpha"	"pkg"	"pkg-i"	"pkgi"	"pkp2"	"pkr"	"pla2g6"	"plcb4"	"plcdelta3"	"plk1"	"pln"	"plp"	"pls"	"pls1"	"pmca2"	"pmca4"	"pml"	"pmp22"	"pn"	"pneumoconiosis"	"pneumonia"	"pnn"	"poi"	"poisoning"	"pol1"	"polg"	"polg1"	"polg2"	"polk"	"polr1d"	"polr3a"	"pomc"	"postlingual deafness"	"pou2"	"pou3f2"	"pou3f3"	"pou3f4"	"pou4f1"	"pou4f2"	"pou4f3"	"pou5f1"	"pp2a"	"pp5"	"pparalpha"	"ppcd1"	"ppcd3"	"ppfia1"	"ppm1a"	"ppp1cb"	"ppp2r3a"	"ppr"	"prb"	"prcc"	"prdx5"	"prdx6"	"premature white matter injury"	"presenilin-1"	"prestin"	"preterm brain damage"	"primary renal disease"	"primary renal diseases"	"primary tumors"	"prion diseases"	"prkaa1"	"prkaa2"	"prkab1"	"prkag2"	"prkag3"	"prkcb"	"prkd1"	"prkdc"	"prkg1"	"prkg2"	"pro-trh"	"progranulin"	"proline-rich synapse-associated protein-1"	"prop1"	"prosap1"	"prosap2"	"prostate cancer"	"protein disulfide isomerase"	"protein disulfide-isomerase"	"protein disulphide-isomerase"	"protein kinase g"	"protein of hair cell stereocilia"	"protein tyrosine phosphatase receptor q"	"protocadherin 15"	"protocadherin-15"	"prox1"	"prp"	"prp(c)"	"prpc"	"prph2"	"prps1"	"prps1a"	"prps1b"	"prpsc"	"prrt2"	"prss12"	"ps1"	"psd"	"psd-93"	"psd-95"	"psd95"	"psoriasis"	"psychiatric"	"psychiatric disorders"	"psychomotor"	"psychomotor retardation"	"psychosis"	"psychosocial"	"pt-1"	"pta"	"ptb"	"ptch2"	"ptchd1"	"pten"	"pth"	"pth1r"	"pthr"	"pthrp"	"ptosis"	"ptp"	"ptp1b"	"ptpip51"	"ptpn11"	"ptpn2"	"ptpn22"	"ptprq"	"ptx3"	"puf60"	"pulmonary fibrosis"	"pulmonary hypertension"	"pulmonary stenosis"	"pulmonary valve stenosis"	"pum2"	"pur alpha"	"pur beta"	"pur-alpha"	"pura"	"puralpha"	"purbeta"	"purine-rich element binding protein a"	"pyk2"	"pyruvate dehydrogenase"	"pyruvate dehydrogenase (pdh) deficiency"	"pyruvate dehydrogenase alpha 1"	"pyruvate dehydrogenase complex (pdc) deficiency"	"pyruvate dehydrogenase complex (pdhc) deficiency"	"pyruvate dehydrogenase complex deficiency"	"pyruvate dehydrogenase deficiency"	"quinone oxidoreductase"	"quinone reductase"	"r-ras2"	"r-ras3"	"ra"	"rab13"	"rab23"	"rab25"	"rab27a"	"rab6c"	"rabep2"	"rac1"	"rad21"	"rad51"	"radixin"	"raf"	"raf-1"	"raf1"	"rai1"	"ral"	"rala"	"raldh2"	"ralgds"	"ranbp3"	"rankl"	"rap"	"rap 1"	"rap 1a"	"rap1"	"rap1b"	"rara"	"raralpha"	"rargamma"	"rasa2"	"rasa5"	"rasal1"	"rasgrf"	"rasgrp1"	"rassf1a"	"rassf2"	"rb1"	"rbfox1"	"rbfox2"	"rbm20"	"rbm24"	"rbm38"	"rbm8a"	"rbmy1a1"	"rbs"	"rcan3"	"rcc"	"rcm"	"rcps"	"rd3"	"rds"	"rdx"	"rec8"	"recessive deafness"	"recessive mendelian disorders"	"reln"	"renal disease"	"renal diseases"	"renal dysplasia"	"renal failure"	"renal fibrosis"	"renal lithiasis"	"renin"	"respiratory chain deficiency"	"respiratory depression"	"respiratory failure"	"ret"	"ret51"	"retardation"	"retinal degeneration"	"retinal disease"	"retinal dystrophies"	"retinal fascin"	"retinitis pigmentosa"	"retinoblastoma"	"retraction syndrome"	"rett syndrome"	"rett-like syndrome"	"reuber hepatoma"	"rev"	"rfoxa2"	"rgapdh"	"rgl3"	"rgma"	"rgs"	"rgs18"	"rgs19"	"rgs19ip1"	"rgs2"	"rgsc174"	"rheumatoid arthritis"	"rhoa"	"rhodanese"	"rhodopsin"	"rhog"	"rhotekin"	"rhs2"	"ribeye"	"rig-i"	"rims1"	"rin"	"ring1b"	"rip140"	"rit"	"rit1"	"rit1p"	"rkip"	"rlrp157"	"rnav1"	"rnf215"	"rnf43"	"rnps1"	"ro/ss-a"	"robo3"	"rock1"	"rock2"	"rolandic epilepsy"	"ros1"	"rotator cuff disease"	"rotenone injury"	"rp1"	"rp11"	"rpe"	"rpe65"	"rpn4"	"rrad"	"rras"	"rras2"	"rrm2b"	"rrn3"	"rsd"	"rsk4"	"rsu-1"	"rsv infection"	"rtp"	"rts"	"runx1"	"runx1t1"	"runx2"	"rupture"	"rybp"	"ryr1"	"s-30"	"s100"	"s100a4"	"s100a6"	"s100a7"	"s100a9"	"s1p"	"s1p receptor 2"	"s1p1"	"s1p2"	"s1p3"	"s1pr1"	"s1pr2"	"s1pr3"	"s1pr4"	"s1pr5"	"s21"	"s6k1"	"saa"	"sah"	"salivary gland malignancy"	"salivary gland mucoepidermoid carcinoma"	"sall4"	"salm1"	"sam68"	"samhd1"	"sans"	"sap102"	"sap18"	"sarcoma"	"sarcomas"	"sars"	"satb2"	"sca-1"	"scad"	"scc"	"scc1"	"scd"	"scel"	"scfv"	"schizophrenia"	"schizophrenic"	"schwannoma"	"schwannomas"	"schwannomatosis"	"schwannomin"	"scid"	"sclc"	"sclerostin"	"scm1"	"scn"	"scn1a"	"scn1b"	"scn2a"	"scn3a"	"scn3b"	"scn5a"	"scn8a"	"scn9a"	"scnm1"	"sco1"	"sco1p"	"sco2"	"sco2 deficiency"	"sco2min-ox"	"sco2p"	"scoliosis"	"scox"	"scrapie-infected neuroblastoma"	"scs-betaa"	"scx"	"sdccag8"	"sdha"	"sec1"	"segmental schwannomatosis"	"seizure"	"seizure disorders"	"seizures"	"selenoh"	"selenot"	"selenov"	"selenow"	"selm"	"sema3a"	"sensorineural autosomal-recessive nonsyndromic hearing impairment"	"sensorineural deafness"	"sensorineural disorder"	"sensorineural hearing impairment"	"sensorineural hearing loss"	"sensory defect"	"sensory disorder"	"sensory epithelia"	"sensory impairment"	"separase"	"sepsis"	"sept2"	"sept9"	"serpinb6"	"sert"	"setd2"	"setdb1"	"sf3a1"	"sf3b1"	"sfrp1"	"sgc"	"sgk1"	"sglt1"	"sglt2"	"sgo2"	"sgpl1"	"sh-2"	"sh1"	"sh2"	"shab"	"shaker 2"	"shaker-1"	"shaker-2"	"shaker1"	"shank"	"shank 2"	"shank1"	"shank2"	"shank3"	"shh"	"ship2"	"shl"	"shoc2"	"short stature"	"short-chain acyl-coa dehydrogenase"	"shp"	"shp-1"	"shp-2"	"shp1"	"shp2"	"shy1"	"shy1p"	"sig1r"	"sin3a"	"sirt1"	"sirt3"	"sirt6"	"six1"	"six3"	"sk1"	"skeletal muscle injury"	"skeletal muscle toxicity"	"skin cancer"	"skm injury"	"slac2-c"	"slc10a2"	"slc16a12"	"slc17a6"	"slc17a7"	"slc17a8"	"slc19a1"	"slc19a2"	"slc19a3"	"slc22a18"	"slc25a19"	"slc26a4"	"slc26a5"	"slc27a1"	"slc2a1"	"slc2a5"	"slc34a1"	"slc39a5"	"slc39a8"	"slc4a11"	"slc52a3"	"slc8a1"	"slc9a6"	"sle"	"slf"	"slirp"	"slm2"	"slox-1"	"slp2"	"sm alpha a"	"sm-mhc"	"smad"	"smad1"	"smad1/5"	"smad2"	"smad2/3"	"smad3"	"smad4"	"smad7"	"small muscle protein x-linked"	"small muscle protein, x-linked"	"small muscular protein"	"smarcb1"	"smarce1"	"smc1a"	"smc1b"	"smc1l1"	"smc3"	"smcx"	"smd"	"smg-1"	"smg1"	"smg5"	"smg6"	"smith-magenis syndrome"	"smmhc"	"smmlck"	"smn"	"smpx"	"sms"	"smyd1"	"snail"	"snap-25"	"snca"	"snhl"	"snl"	"sntg2"	"snx16"	"social deficits"	"socs2"	"sod1"	"solute carrier family 17, member 8"	"som"	"son of sevenless 1"	"son of sevenless homolog 1"	"sorcs1"	"sos"	"sos1"	"sos2"	"sos3"	"sost"	"sox1"	"sox10"	"sox11"	"sox17"	"sox2"	"sox21"	"sox5"	"sox6"	"sox8"	"sox9"	"sp"	"sp3"	"sparc"	"spasms"	"spastic paraparesis"	"spasticity"	"spata12"	"speech disorders"	"spermiation failure"	"spg"	"sphingosine 1-phosphate receptor 2"	"sphingosine kinase 1"	"sphingosine kinase 2"	"sphingosine kinase-1"	"sphingosine-1-phosphate receptor 2"	"sphingosine-1-phosphate receptor-2"	"sphk"	"sphk1"	"sphk2"	"spinal cord injury"	"spinal muscular atrophy"	"spinesin"	"spinner"	"spint1"	"spns2"	"spop"	"sporadic schwannomatosis"	"spp1"	"spred1"	"sqrdl"	"sqstm1"	"squamous cell carcinoma"	"src"	"srebf1"	"srf"	"srpk1"	"srrm2"	"srs"	"srsf1"	"ss18"	"ssc"	"sstr2"	"ssx1"	"stag1"	"stag2"	"stag3"	"stat2"	"stat3"	"stat5"	"status epilepticus"	"stau1"	"steap4"	"steel syndrome"	"stereocilia of sensory hair"	"stereocilia tip"	"stereocilia tips"	"stereocilin"	"stk11"	"stk19"	"stn"	"storage disease type i"	"strc"	"stress"	"stroke"	"structural maintenance of chromosomes 1a"	"stxbp1"	"su(fu)"	"sucla2"	"suclg1"	"suclg2"	"sudden cardiac death"	"sudden death"	"sulfurtransferase 1"	"surf-1"	"surf-5"	"surf1"	"surf1-deficient"	"surf3"	"surf5"	"surfeit locus protein 1"	"suz12"	"swnts1"	"swnts2"	"syap1"	"syd-1"	"syk"	"syn-1a"	"synaptophysin"	"synchronous gastric neoplasia"	"synchrony of auditory nerve fibers"	"syncope"	"syndapin i"	"syndromic"	"syndromic craniosynostosis"	"syndromic hearing loss"	"synectin"	"syngap"	"syngap1"	"synovitis"	"syntaxin 1a"	"systemic lupus erythematosus"	"systolic dysfunction"	"t-star"	"t2d"	"tac1"	"tadg-12"	"taenia coli"	"taenia tecta"	"taf15"	"tagln"	"tak-1"	"tak1"	"tal"	"tap"	"taperin"	"tardive dyskinesia"	"tat"	"taz"	"tbetari"	"tbetarii"	"tbi"	"tbk1"	"tbph"	"tbx1"	"tbx18"	"tbx2"	"tbx20"	"tbx3"	"tbx5"	"tc21"	"tcap"	"tcf3"	"tcf4"	"tcf8"	"tcl1"	"tcr"	"tcrbeta"	"tctp"	"tdp-43"	"tdrd6"	"tecta"	"tectb"	"tekt2"	"tel"	"temporal lobe epilepsy"	"tenascin-c"	"tendinopathy"	"terra"	"tert"	"tet"	"tet1"	"tet2"	"tetherin"	"tetraspan membrane protein of hair cell stereocilia"	"tetratricopeptide 19"	"tfam"	"tfcp2l1"	"tfe3"	"tff1"	"tfpi2"	"tgf beta2"	"tgf-beta"	"tgf-beta type i receptor"	"tgf-beta type ii receptor"	"tgf-beta1"	"tgf-beta2"	"tgf-beta3"	"tgf-betari"	"tgf-betarii"	"tgfb"	"tgfb1"	"tgfb2"	"tgfb3"	"tgfbeta"	"tgfbeta-1"	"tgfbeta1"	"tgfbeta2"	"tgfbi"	"tgfbr1"	"tgfbr2"	"tgfbr3"	"tgr5"	"thalassemia"	"thi7"	"thiamine transporter 2"	"thiamine transporter-1"	"thiamine transporter-2"	"thioredoxin"	"thmd2"	"thoracic aortic aneurysm"	"thoracic aortic aneurysms"	"thoracic aortic disease"	"thp-1"	"thrombin"	"thrombus stability"	"thsd4"	"thtr-1"	"thtr-1 and -2"	"thtr-2"	"thtr1"	"thtr2"	"thymidine kinase 2"	"thymoma"	"thyroid cancer"	"tigar"	"tim"	"tim3"	"timp1"	"timp2"	"timp3"	"tinnitus"	"tip"	"tip-link component pcdh15"	"tip39"	"tips of stereocilia"	"titin"	"tjp2"	"tk2"	"tkt"	"tle"	"tll1"	"tlr-4"	"tlr3"	"tlr4"	"tlr7"	"tlr8"	"tlr9"	"tls"	"tlx3"	"tm"	"tm-1"	"tm1"	"tm4sf4"	"tmc"	"tmc-1"	"tmc1"	"tmc1/2"	"tmc1/2a/2b"	"tmc1/2b"	"tmc2"	"tmc2a"	"tmc2b"	"tmc3"	"tmc8"	"tmd"	"tmem177"	"tmhs"	"tmie"	"tmprss1"	"tmprss2"	"tmprss3"	"tmprss5"	"tnc"	"tnf"	"tnf-alpha"	"tnfalpha"	"tnfrsf11b"	"tnm"	"tnnc1"	"tnni1"	"tnni2"	"tnni3"	"tnni3k"	"tnni3p"	"tnnt1"	"tnnt2"	"tnnt2a"	"tnnt2p"	"tnnt3"	"tns4"	"tnt"	"tnx"	"tom40"	"tomt"	"tongue cancer"	"tourette syndrome"	"toxicities"	"toxicity"	"tp53"	"tp53-induced glycolysis and apoptosis regulator"	"tpk1"	"tpm1p"	"tpm2"	"tpm3"	"tpm4"	"tpmt"	"tprn"	"tra2a"	"tra2b"	"traf6"	"transcription factor 4"	"transferrin"	"transforming growth factor beta"	"transforming growth factor beta 2"	"transforming growth factor beta receptor 1"	"transforming growth factor beta1"	"transforming growth factor beta2"	"transforming growth factor-beta"	"transforming growth factor-beta1"	"transforming growth factor-beta2"	"transketolase"	"transmembrane channel-like 1"	"transmembrane channel-like gene 1"	"transmembrane inner ear"	"transmembrane inner ear (tmie)"	"transmembrane protease, serine 3"	"trap"	"trappc11"	"trappc9"	"trauma"	"traumatic stress"	"trbeta"	"trek-1"	"tremor"	"tric"	"tricellulin"	"trif"	"trim3"	"trim39"	"triobp"	"trka"	"trkb"	"trop2"	"tropoelastin"	"tropomyosin 1"	"tropomyosin-1"	"troponin t"	"trp53"	"trpc5"	"trpc7"	"trpm6"	"trpm7"	"trpm8"	"trx"	"tsc1"	"tsc2"	"tsp-1"	"tsp-4"	"tspear"	"tspy"	"tspyl2"	"tst"	"ttc19"	"ttc19 deficiency"	"ttf"	"ttn"	"ttp"	"ttr"	"tuba1a"	"tuba1c"	"tubb3"	"tubd1"	"tug1"	"tumor"	"tumors"	"tumour"	"tumours"	"tusc3"	"tweak"	"twik-2"	"twinfilin 2"	"twist1"	"txn"	"txnrd1"	"tyky"	"tymp"	"ubash3b"	"ubcd1"	"ube2a"	"ube2q2"	"uca1"	"uchl3"	"ucp3"	"ugt2b7"	"ulcerative colitis"	"ulk1"	"ulk2"	"ulk4"	"umod"	"unc51.1"	"unconventional myosin vi"	"unconventional myosin viia"	"unilateral vestibular schwannoma"	"unipolar depression"	"upf1"	"upf2"	"upf3"	"upf3a"	"upf3b"	"uqcc2"	"uqcc3"	"uqcr10"	"uqcrb"	"uqcrc1"	"uqcrc2"	"uqcrfs1"	"uqcrq"	"urolithiasis"	"ush1b"	"ush1c"	"ush1d"	"ush1f"	"ush1g"	"ush1j"	"ush2"	"ush2a"	"ush3"	"usher syndrome"	"usher syndrome 1b"	"usher syndrome type 1b"	"usher syndrome type 1d"	"usher syndrome type i"	"usp22"	"usp4"	"ut-b"	"utrophin"	"uxt"	"vacht"	"vangl1"	"vapa"	"vascular calcification"	"vascular damage"	"vascular ehlers-danlos syndrome"	"vascular endothelial growth factor"	"vascular injury"	"vascular malformations"	"vasohibin-1"	"vasp"	"vcam-1"	"vcan"	"vcfs"	"vcl"	"vcx"	"vcx-3a"	"vcx-a"	"vcx3a"	"vdac1"	"vdr"	"vegf"	"vegfa"	"vegfr1"	"vegfr2"	"ventral tenia tecta"	"ventricular hypertrophy"	"ventricular septal defect"	"ventricular septal defects"	"veph1"	"verheij syndrome"	"vertical corneal striae"	"vertigo attacks"	"vesicular glutamate transporter 3"	"vesicular glutamate transporter-3"	"vestibular areflexia"	"vestibular disorders"	"vestibular dysfunction"	"vestibular hyporeflexia"	"vestibular impairment"	"vestibular loss"	"vestibular schwannoma"	"vestibular schwannomas"	"vf"	"vgf"	"vgll2"	"vglut1"	"vglut1 and -2"	"vglut2"	"vglut3"	"vhl"	"vim"	"vimentin"	"vinculin"	"vipr2"	"vision loss"	"visual and hearing impairments"	"visual impairment"	"vitamin d receptor"	"vkorc1"	"vmat2"	"vmp1"	"vof-16"	"von hippel-lindau"	"von willebrand"	"vsd"	"vt"	"vte"	"vwce"	"vwd"	"vwf"	"wd"	"wd repeat domain 45"	"wd repeat-containing protein 45"	"wdfy3"	"wdfy4"	"wdr45"	"wdr45b"	"weakness"	"weight gain"	"weight loss"	"weill-marchesani syndrome"	"wernicke's encephalopathy"	"west syndrome"	"wfs1"	"whirlin"	"white matter injury"	"whrn"	"wilms tumor"	"wilms tumors"	"wip1"	"wipi1"	"wipi3"	"wipi4"	"wms"	"wnt"	"wnt-5a"	"wnt10a"	"wnt10b"	"wnt11"	"wnt13"	"wnt14"	"wnt14b"	"wnt16"	"wnt2b"	"wnt3"	"wnt3a"	"wnt5a"	"wnt5b"	"wnt6"	"wnt7a"	"wnt7b"	"wnt8a"	"wnt8b"	"wolff-parkinson-white (wpw) syndrome"	"wolff-parkinson-white syndrome"	"wolframin"	"wpw syndrome"	"wrn"	"wt"	"wt1"	"wwox"	"x-linked deafness"	"x-linked deafness-2"	"x-linked dominant hearing loss"	"x-linked hearing loss"	"x-linked ichthyosis"	"x-linked intellectual disability"	"x-linked mental retardation"	"x-linked mixed deafness"	"x-linked non-syndromic hearing loss"	"x-linked nonsyndromic hearing loss"	"x-linked nonsyndromic sensorineural hearing loss"	"x-linked sideroblastic anemia"	"x-linked stapes gusher syndrome"	"xdh"	"xip"	"xirp1"	"xli"	"xlid"	"xlpou 2"	"xlsa"	"xpo1"	"xrcc3"	"y14"	"yap"	"yap1"	"ywhae"	"yy1"	"zbtb17"	"zbtb20"	"zdhhc9"	"zeb1"	"zeb1-as1"	"zfpm2"	"zfx"	"zic3"	"zinc deficiency"	"zinc-alpha2-glycoprotein"	"zip14"	"znf217"	"znf471"	"znf57"	"znf644"	"znf74"	"znf814"	"zo-1"
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	1	1	1	1	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	0	1	1	1	1	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	1	1	0	1	0	0	1	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	1	1	1	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	1	0	0	0	1	1	1	1	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	1	1	1	0	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	1	1	1	1	0	1	0	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	1	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	1	1	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	1	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	1	1	1	0	1	1	1	1	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	1	1	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	1	0	0	0	1	0	1	0	1	0	0	1	1	1	1	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	1	1	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	1	0	0	1	1	1	1	1	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	1	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	1	1	1	0	0	1	0	1	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	1	1	1	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	1	1	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	1	1	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/1b/pubmed_by_queries_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,96 @@
+"ID_gene"	"GROUPING_disorder"	"PMID_1"	"PMID_2"	"PMID_3"	"PMID_4"	"PMID_5"	"PMID_6"	"PMID_7"	"PMID_8"	"PMID_9"	"PMID_10"	"PMID_11"	"PMID_12"	"PMID_13"	"PMID_14"	"PMID_15"	"PMID_16"	"PMID_17"	"PMID_18"	"PMID_19"	"PMID_20"	"PMID_21"	"PMID_22"	"PMID_23"	"PMID_24"	"PMID_25"	"PMID_26"	"PMID_27"	"PMID_28"	"PMID_29"	"PMID_30"	"PMID_31"	"PMID_32"	"PMID_33"	"PMID_34"	"PMID_35"	"PMID_36"	"PMID_37"	"PMID_38"	"PMID_39"	"PMID_40"	"PMID_41"	"PMID_42"	"PMID_43"	"PMID_44"	"PMID_45"	"PMID_46"	"PMID_47"	"PMID_48"	"PMID_49"	"PMID_50"	"PMID_51"	"PMID_52"	"PMID_53"	"PMID_54"	"PMID_55"	"PMID_56"	"PMID_57"	"PMID_58"	"PMID_59"	"PMID_60"	"PMID_61"	"PMID_62"	"PMID_63"	"PMID_64"	"PMID_65"	"PMID_66"	"PMID_67"	"PMID_68"	"PMID_69"	"PMID_70"	"PMID_71"	"PMID_72"	"PMID_73"	"PMID_74"	"PMID_75"	"PMID_76"	"PMID_77"	"PMID_78"	"PMID_79"	"PMID_80"	"PMID_81"	"PMID_82"	"PMID_83"	"PMID_84"	"PMID_85"	"PMID_86"	"PMID_87"	"PMID_88"	"PMID_89"	"PMID_90"	"PMID_91"	"PMID_92"	"PMID_93"	"PMID_94"	"PMID_95"	"PMID_96"	"PMID_97"	"PMID_98"	"PMID_99"	"PMID_100"	"PMID_101"	"PMID_102"	"PMID_103"	"PMID_104"	"PMID_105"	"PMID_106"	"PMID_107"	"PMID_108"	"PMID_109"	"PMID_110"	"PMID_111"	"PMID_112"	"PMID_113"	"PMID_114"	"PMID_115"	"PMID_116"	"PMID_117"	"PMID_118"	"PMID_119"	"PMID_120"	"PMID_121"	"PMID_122"	"PMID_123"	"PMID_124"	"PMID_125"	"PMID_126"	"PMID_127"	"PMID_128"	"PMID_129"	"PMID_130"	"PMID_131"	"PMID_132"	"PMID_133"	"PMID_134"	"PMID_135"	"PMID_136"	"PMID_137"	"PMID_138"	"PMID_139"	"PMID_140"	"PMID_141"	"PMID_142"	"PMID_143"	"PMID_144"	"PMID_145"	"PMID_146"	"PMID_147"	"PMID_148"	"PMID_149"	"PMID_150"	"PMID_151"	"PMID_152"	"PMID_153"	"PMID_154"	"PMID_155"	"PMID_156"	"PMID_157"	"PMID_158"	"PMID_159"	"PMID_160"	"PMID_161"	"PMID_162"	"PMID_163"	"PMID_164"	"PMID_165"	"PMID_166"	"PMID_167"	"PMID_168"	"PMID_169"	"PMID_170"	"PMID_171"	"PMID_172"	"PMID_173"	"PMID_174"	"PMID_175"	"PMID_176"	"PMID_177"	"PMID_178"	"PMID_179"	"PMID_180"	"PMID_181"	"PMID_182"	"PMID_183"	"PMID_184"	"PMID_185"	"PMID_186"	"PMID_187"	"PMID_188"	"PMID_189"	"PMID_190"	"PMID_191"	"PMID_192"	"PMID_193"	"PMID_194"	"PMID_195"	"PMID_196"	"PMID_197"	"PMID_198"	"PMID_199"	"PMID_200"	"PMID_201"	"PMID_202"	"PMID_203"	"PMID_204"	"PMID_205"	"PMID_206"	"PMID_207"	"PMID_208"	"PMID_209"	"PMID_210"	"PMID_211"	"PMID_212"	"PMID_213"	"PMID_214"	"PMID_215"	"PMID_216"	"PMID_217"	"PMID_218"	"PMID_219"	"PMID_220"	"PMID_221"	"PMID_222"	"PMID_223"	"PMID_224"	"PMID_225"	"PMID_226"	"PMID_227"	"PMID_228"	"PMID_229"	"PMID_230"	"PMID_231"	"PMID_232"	"PMID_233"	"PMID_234"	"PMID_235"	"PMID_236"	"PMID_237"	"PMID_238"	"PMID_239"	"PMID_240"	"PMID_241"	"PMID_242"	"PMID_243"	"PMID_244"	"PMID_245"	"PMID_246"	"PMID_247"	"PMID_248"	"PMID_249"	"PMID_250"	"PMID_251"	"PMID_252"	"PMID_253"	"PMID_254"	"PMID_255"	"PMID_256"	"PMID_257"	"PMID_258"	"PMID_259"	"PMID_260"	"PMID_261"	"PMID_262"	"PMID_263"	"PMID_264"	"PMID_265"	"PMID_266"	"PMID_267"	"PMID_268"	"PMID_269"	"PMID_270"	"PMID_271"	"PMID_272"	"PMID_273"	"PMID_274"	"PMID_275"	"PMID_276"	"PMID_277"	"PMID_278"	"PMID_279"	"PMID_280"	"PMID_281"	"PMID_282"	"PMID_283"	"PMID_284"	"PMID_285"	"PMID_286"	"PMID_287"	"PMID_288"	"PMID_289"	"PMID_290"	"PMID_291"	"PMID_292"	"PMID_293"	"PMID_294"	"PMID_295"	"PMID_296"	"PMID_297"	"PMID_298"	"PMID_299"	"PMID_300"	"PMID_301"	"PMID_302"	"PMID_303"	"PMID_304"	"PMID_305"	"PMID_306"	"PMID_307"	"PMID_308"	"PMID_309"	"PMID_310"	"PMID_311"	"PMID_312"	"PMID_313"	"PMID_314"	"PMID_315"	"PMID_316"	"PMID_317"	"PMID_318"	"PMID_319"	"PMID_320"	"PMID_321"	"PMID_322"	"PMID_323"	"PMID_324"	"PMID_325"	"PMID_326"	"PMID_327"	"PMID_328"	"PMID_329"	"PMID_330"	"PMID_331"	"PMID_332"	"PMID_333"	"PMID_334"	"PMID_335"	"PMID_336"	"PMID_337"	"PMID_338"	"PMID_339"	"PMID_340"	"PMID_341"	"PMID_342"	"PMID_343"	"PMID_344"	"PMID_345"	"PMID_346"	"PMID_347"	"PMID_348"	"PMID_349"	"PMID_350"	"PMID_351"	"PMID_352"	"PMID_353"	"PMID_354"	"PMID_355"	"PMID_356"	"PMID_357"	"PMID_358"	"PMID_359"	"PMID_360"	"PMID_361"	"PMID_362"	"PMID_363"	"PMID_364"	"PMID_365"	"PMID_366"	"PMID_367"	"PMID_368"	"PMID_369"	"PMID_370"	"PMID_371"	"PMID_372"	"PMID_373"	"PMID_374"	"PMID_375"	"PMID_376"	"PMID_377"	"PMID_378"	"PMID_379"	"PMID_380"	"PMID_381"	"PMID_382"	"PMID_383"	"PMID_384"	"PMID_385"	"PMID_386"	"PMID_387"	"PMID_388"	"PMID_389"	"PMID_390"	"PMID_391"	"PMID_392"	"PMID_393"	"PMID_394"	"PMID_395"	"PMID_396"	"PMID_397"	"PMID_398"	"PMID_399"	"PMID_400"	"PMID_401"	"PMID_402"	"PMID_403"	"PMID_404"	"PMID_405"	"PMID_406"	"PMID_407"	"PMID_408"	"PMID_409"	"PMID_410"	"PMID_411"	"PMID_412"	"PMID_413"	"PMID_414"	"PMID_415"	"PMID_416"	"PMID_417"	"PMID_418"	"PMID_419"	"PMID_420"	"PMID_421"	"PMID_422"	"PMID_423"	"PMID_424"	"PMID_425"	"PMID_426"	"PMID_427"	"PMID_428"	"PMID_429"	"PMID_430"	"PMID_431"	"PMID_432"	"PMID_433"	"PMID_434"	"PMID_435"	"PMID_436"	"PMID_437"	"PMID_438"	"PMID_439"	"PMID_440"	"PMID_441"	"PMID_442"	"PMID_443"	"PMID_444"	"PMID_445"	"PMID_446"	"PMID_447"	"PMID_448"	"PMID_449"	"PMID_450"	"PMID_451"	"PMID_452"	"PMID_453"	"PMID_454"	"PMID_455"	"PMID_456"	"PMID_457"	"PMID_458"	"PMID_459"	"PMID_460"	"PMID_461"	"PMID_462"	"PMID_463"	"PMID_464"	"PMID_465"	"PMID_466"	"PMID_467"	"PMID_468"	"PMID_469"	"PMID_470"	"PMID_471"	"PMID_472"	"PMID_473"	"PMID_474"	"PMID_475"	"PMID_476"	"PMID_477"	"PMID_478"	"PMID_479"	"PMID_480"	"PMID_481"	"PMID_482"	"PMID_483"	"PMID_484"	"PMID_485"	"PMID_486"	"PMID_487"	"PMID_488"	"PMID_489"	"PMID_490"	"PMID_491"	"PMID_492"	"PMID_493"	"PMID_494"	"PMID_495"	"PMID_496"	"PMID_497"	"PMID_498"	"PMID_499"	"PMID_500"
+"CHD2"	"complex neurodevelopmental disorder"	"32609087"	"32598477"	"32593896"	"32573645"	"32483190"	"32170405"	"32061754"	"31993582"	"31914951"	"31904125"	"31900031"	"31872862"	"31865343"	"31774495"	"31713838"	"31704914"	"31703148"	"31677157"	"31657568"	"31580078"	"31539115"	"31527074"	"31515660"	"31442284"	"31361132"	"31273778"	"31261735"	"31222274"	"31171384"	"31170314"	"31128090"	"31059729"	"30868116"	"30660939"	"30521773"	"30483338"	"30344048"	"30277262"	"30185235"	"29992558"	"29962935"	"29787736"	"29740950"	"29529558"	"29455050"	"29404929"	"29390993"	"29376860"	"29314583"	"29306282"	"29229852"	"29190809"	"29153328"	"28960266"	"28910737"	"28880996"	"28867142"	"28805617"	"28707684"	"28647789"	"28595412"	"28582417"	"28549158"	"28489374"	"28346953"	"28074849"	"27959900"	"27782517"	"27782511"	"27781027"	"27615324"	"27486789"	"27385633"	"27274247"	"27251650"	"27060156"	"26933602"	"26895424"	"26814966"	"26754451"	"26677509"	"26625910"	"26611327"	"26271302"	"26270126"	"26262932"	"26233138"	"26136832"	"26031915"	"25786798"	"25783594"	"25672921"	"25621013"	"25455856"	"25418537"	"25384982"	"25356899"	"25297984"	"24932903"	"24834135"	"24768552"	"24671951"	"24614520"	"24559591"	"24549219"	"24207121"	"24205157"	"23934111"	"23920106"	"23904100"	"23708187"	"22781929"	"22569126"	"25961350"	"22223433"	"22178256"	"21730028"	"21447119"	"20443711"	"20218643"	"19902174"	"19608914"	"19142019"	"19137022"	"18549197"	"18386809"	"18258910"	"17824676"	"17606441"	"17567117"	"17557176"	"17433364"	"17390049"	"17249765"	"17217715"	"16833728"	"16810678"	"16736036"	"15994863"	"15783171"	"15750894"	"12061716"	"11780396"	"11155239"	"10383198"	"8458745"	"2719924"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"EEF1A2"	"complex neurodevelopmental disorder"	"32751422"	"32628130"	"32425742"	"32406881"	"32347192"	"32332749"	"32275913"	"32196822"	"32164332"	"32160274"	"32082653"	"32062104"	"32032648"	"32025886"	"32025546"	"32024818"	"31950975"	"31893083"	"31876369"	"31862491"	"31856204"	"31812675"	"31647196"	"31639400"	"31539873"	"31477274"	"31450069"	"31327507"	"31319848"	"31220107"	"30915602"	"30878835"	"30870804"	"30864069"	"30782564"	"30660770"	"30420615"	"30381327"	"30377530"	"30370994"	"30132996"	"30111169"	"30036659"	"29866134"	"29769289"	"29528397"	"29348621"	"29342219"	"29061339"	"29048629"	"28923030"	"28911200"	"28900796"	"28663172"	"28378778"	"28253373"	"28229942"	"27976757"	"27807005"	"27713531"	"27652284"	"27568183"	"27483363"	"27441201"	"27350678"	"27122673"	"27082702"	"26981313"	"26918757"	"26740508"	"26682508"	"26515794"	"26212729"	"26179970"	"26059197"	"25971350"	"25921748"	"25905039"	"25778998"	"25749814"	"25744894"	"25601347"	"25472873"	"25436608"	"25405317"	"25394965"	"25326326"	"25285036"	"25105321"	"25049756"	"24853801"	"24749247"	"24697219"	"24510995"	"24460877"	"24339735"	"24285179"	"24220286"	"25436588"	"23739844"	"23731783"	"23695020"	"23647072"	"23608534"	"23444377"	"23165190"	"22930480"	"22848658"	"22771849"	"22568880"	"22531132"	"22442226"	"22378069"	"22355332"	"22230385"	"22095224"	"21851817"	"21722626"	"21599001"	"21214641"	"20923971"	"20819441"	"20505761"	"20053670"	"19909265"	"19738051"	"19723040"	"19636410"	"19506553"	"19193110"	"19138673"	"19094180"	"19005066"	"18786244"	"18756455"	"18661515"	"18649364"	"18474610"	"18234081"	"18221514"	"18164751"	"18161050"	"17998013"	"17965018"	"17936057"	"17908984"	"17825975"	"17666893"	"17640869"	"17437010"	"17409975"	"17266044"	"17197385"	"17130842"	"17088255"	"16938307"	"16897428"	"16888816"	"16845586"	"16517066"	"16408509"	"16369491"	"16367923"	"16164922"	"16156888"	"15955056"	"15843208"	"15835265"	"15017368"	"15013623"	"14588074"	"12898041"	"12808202"	"12242312"	"12053177"	"12048193"	"11985494"	"11926147"	"11773716"	"11766357"	"11724805"	"11561181"	"11412682"	"10950927"	"10759722"	"10546894"	"10430023"	"9539760"	"9460987"	"9234585"	"8812466"	"8620806"	"8750861"	"7622304"	"7736875"	"7822435"	"7537622"	"8200231"	"8160630"	"8106565"	"7904138"	"8210441"	"8501536"	"8423916"	"7682866"	"1469065"	"1400486"	"1511650"	"1459219"	"1380846"	"1681942"	"1855178"	"1709933"	"2298807"	"2208582"	"2674158"	"2892689"	"3312241"	"3758198"	"3906126"	"3902853"	"3968178"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRIN1"	"complex neurodevelopmental disorder"	"32725455"	"32712275"	"32575416"	"32564114"	"32473191"	"32372910"	"32320718"	"32306649"	"32289863"	"32245827"	"32222968"	"32205144"	"32144935"	"32037472"	"31941848"	"31875540"	"31842918"	"31808454"	"31796679"	"31787886"	"31666522"	"31646525"	"31570583"	"31563147"	"31512412"	"31429998"	"31392351"	"31364821"	"31326280"	"31299220"	"31268960"	"31228641"	"31219694"	"31176596"	"31161451"	"31039968"	"31025605"	"31020692"	"30999089"	"30996354"	"30978384"	"30816552"	"30785307"	"30776697"	"30753417"	"30704411"	"30687034"	"30664045"	"32134592"	"30593923"	"30590034"	"30482728"	"30430925"	"30382582"	"30355546"	"30344042"	"30217972"	"30154699"	"30144237"	"30122482"	"30056065"	"30017780"	"29966365"	"29937144"	"29847798"	"29766293"	"29704590"	"29564678"	"29500670"	"29478698"	"29426955"	"29394409"	"29365063"	"29339073"	"29317596"	"29307790"	"29254152"	"29247759"	"29234834"	"29194067"	"29190809"	"29150978"	"29116075"	"29086067"	"29053906"	"29044990"	"28986875"	"28986867"	"28902183"	"28855650"	"28702665"	"28545490"	"28533163"	"28389307"	"28378791"	"28262924"	"28228639"	"28189567"	"28095420"	"28072412"	"28051072"	"28035180"	"27983596"	"27774052"	"27664962"	"27612187"	"27596138"	"27517611"	"27506655"	"27443784"	"27299787"	"27241252"	"27164704"	"27070406"	"26990090"	"26954593"	"26933583"	"26819771"	"26748053"	"26688183"	"26674869"	"26656067"	"26609150"	"26568164"	"26482601"	"26443875"	"26430762"	"26350515"	"26296755"	"26289945"	"26272917"	"26269422"	"26266540"	"26169973"	"26162866"	"26028254"	"26000162"	"25986190"	"25970159"	"25938741"	"25925152"	"25871318"	"25864721"	"25786918"	"25714447"	"25615540"	"25571999"	"27843994"	"25534910"	"25526735"	"25446363"	"25340785"	"25327402"	"25262781"	"25261450"	"25206934"	"25186746"	"25167861"	"25155957"	"25140704"	"24912493"	"24853428"	"24831965"	"24814139"	"24739903"	"24730197"	"26574964"	"24677026"	"24658276"	"24655651"	"24655648"	"24610118"	"24342749"	"24301867"	"24269917"	"24260418"	"24227730"	"24211371"	"24172336"	"24156266"	"23978820"	"23934111"	"23930503"	"23880023"	"23840674"	"23806621"	"23723305"	"23688147"	"23665428"	"23651024"	"23621516"	"23597049"	"23447622"	"23416048"	"23396086"	"23085505"	"22924764"	"22797694"	"22571986"	"22486492"	"22427994"	"22383529"	"22371606"	"22370144"	"22354721"	"22207321"	"22132236"	"22060190"	"21992750"	"21919190"	"21881220"	"21753020"	"21376300"	"21371997"	"21368124"	"21332319"	"21204411"	"22833210"	"21172391"	"21064266"	"20937555"	"20722663"	"20438806"	"20392957"	"20345915"	"20333677"	"20298209"	"29255383"	"20060416"	"20043891"	"20019791"	"19861419"	"19794189"	"19784770"	"19635471"	"19422642"	"19144849"	"19124687"	"18992785"	"18979923"	"18940194"	"18792810"	"18729205"	"18704384"	"18597079"	"18557703"	"18068825"	"17982252"	"17942280"	"17728671"	"17625504"	"17481661"	"17329232"	"17298178"	"17284422"	"17239488"	"17010153"	"16969270"	"16809361"	"16476413"	"16272960"	"15998284"	"15952869"	"15841096"	"15828859"	"15805781"	"15769547"	"15635650"	"15588104"	"15585744"	"15506926"	"15500405"	"15488195"	"15265015"	"15236783"	"12824739"	"12707933"	"12679240"	"12610658"	"12586454"	"12454527"	"12363394"	"12151550"	"12082569"	"11109007"	"10818139"	"10480904"	"7873875"	"7979163"	"8188265"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRIN2A"	"complex neurodevelopmental disorder"	"32765929"	"32722525"	"32712275"	"32707302"	"32650666"	"32623439"	"32600977"	"32577763"	"32565596"	"32560962"	"32520749"	"32499508"	"32475008"	"32473191"	"32441907"	"32289570"	"32241263"	"32216238"	"32144935"	"32065002"	"32036246"	"32014051"	"32003688"	"31953567"	"31942532"	"31892408"	"31847698"	"31836554"	"31807283"	"31743624"	"31652432"	"31570583"	"31429998"	"31368821"	"31308482"	"31299220"	"31254844"	"31249692"	"31228641"	"31158310"	"31149903"	"31098720"	"31068541"	"31011876"	"30948457"	"30870728"	"30860473"	"30816552"	"30705251"	"30696941"	"30664045"	"30633938"	"30604514"	"30559663"	"30544257"	"30378284"	"30260902"	"30251989"	"30218624"	"30182498"	"30146685"	"30144237"	"30132892"	"30126759"	"30071239"	"30053506"	"30051352"	"30031924"	"29976148"	"29958946"	"29944106"	"29896722"	"29852413"	"29789371"	"29760947"	"29704590"	"29680575"	"29655037"	"29644724"	"29616445"	"29581378"	"29552280"	"29546239"	"29531362"	"29520222"	"29429049"	"29358611"	"29318639"	"29317596"	"29261713"	"29230395"	"29194360"	"29089052"	"29056246"	"29056244"	"29024713"	"28993242"	"28986867"	"28936771"	"28832001"	"28767591"	"28761347"	"28751646"	"28694195"	"28611597"	"28608743"	"28522871"	"28440294"	"28398880"	"28356599"	"28320167"	"28242877"	"28212175"	"28182669"	"28126851"	"30202567"	"28109652"	"28058793"	"28007608"	"27855768"	"27839871"	"27780721"	"27731509"	"27683935"	"27664962"	"27659111"	"27624150"	"27490364"	"27401458"	"27346841"	"27317637"	"27243824"	"27230353"	"27203738"	"27199241"	"27195522"	"27127627"	"27061659"	"26884404"	"26829109"	"26819771"	"26806548"	"26778988"	"26681223"	"26656067"	"26648591"	"26636753"	"26577399"	"26502998"	"26417907"	"26380821"	"26312887"	"26297903"	"26289945"	"26283219"	"26277529"	"26266540"	"26257337"	"26220384"	"26198764"	"26194112"	"26169973"	"26153529"	"26148071"	"26022171"	"26005125"	"26003806"	"25958346"	"25939814"	"25921602"	"25904555"	"25869805"	"25855177"	"25724810"	"25715123"	"25654738"	"25596524"	"25596506"	"25571874"	"25534910"	"25497044"	"25423262"	"25412286"	"25411979"	"25366762"	"25224260"	"25206554"	"25046240"	"24915238"	"24903190"	"24839611"	"24828792"	"24789517"	"24739903"	"24722186"	"27695144"	"24504326"	"24469795"	"24468268"	"24455489"	"24413569"	"24372385"	"24341237"	"24239346"	"24125812"	"23999465"	"23957481"	"23940648"	"23933820"	"23933819"	"23933818"	"23651024"	"23644918"	"23637704"	"23603633"	"23506787"	"23408766"	"23372575"	"23295062"	"23226551"	"23201971"	"23113297"	"22917932"	"22851457"	"22738016"	"22486492"	"22486438"	"22326929"	"22207321"	"22195173"	"22154832"	"22108330"	"22080568"	"22004137"	"21989477"	"21919190"	"21883175"	"21876681"	"21871936"	"21781114"	"21633715"	"21507155"	"21499247"	"21332319"	"22833210"	"20890276"	"20696923"	"20392957"	"20384727"	"20159345"	"20070378"	"20060416"	"19500151"	"19422891"	"19270759"	"19268276"	"19243446"	"19144849"	"17982252"	"17569088"	"17329232"	"17239488"	"17018562"	"17011703"	"16826529"	"16756026"	"16476413"	"16266783"	"16082431"	"15952869"	"15830322"	"15774266"	"15742215"	"14966475"	"14699423"	"12824739"	"12809987"	"12724619"	"12115033"	"9480759"	"9011744"	"8188265"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"KCNB1"	"complex neurodevelopmental disorder"	"32759067"	"32655623"	"32606422"	"32484056"	"32469098"	"32334381"	"32249254"	"32211396"	"32015129"	"31972370"	"31696658"	"31682765"	"31653223"	"31600826"	"31594866"	"31591393"	"31520233"	"31513310"	"31512327"	"31394400"	"31313401"	"31308225"	"31248429"	"31162977"	"30958317"	"30935390"	"30922570"	"30900190"	"30824538"	"30820446"	"30397012"	"30246030"	"30190339"	"30182498"	"30126179"	"30050035"	"30012696"	"29976148"	"29808309"	"29549124"	"29545262"	"29542386"	"29379118"	"29352517"	"29322350"	"29265365"	"29264397"	"29264390"	"29128793"	"29042434"	"29023665"	"28993242"	"28867730"	"28807863"	"28806457"	"28768770"	"28607108"	"28439095"	"28383553"	"28173649"	"28144039"	"28065942"	"27958660"	"27928161"	"27320844"	"27729411"	"27798188"	"27713134"	"27653482"	"27652284"	"27148689"	"27114846"	"27061659"	"27033450"	"26962151"	"26939666"	"26922553"	"26648591"	"26545729"	"26505474"	"26503721"	"26477325"	"26472706"	"26442584"	"26405173"	"26393286"	"26377690"	"26303499"	"26242757"	"26240432"	"26098909"	"26079015"	"25994081"	"25948544"	"25908859"	"25893644"	"25670860"	"25449098"	"25337656"	"25331865"	"25256718"	"25229721"	"25220706"	"25164438"	"25030910"	"25000969"	"24921000"	"24917562"	"24681897"	"24670676"	"24597762"	"24569993"	"24494598"	"24477962"	"24416794"	"24355600"	"24094875"	"23864710"	"23857585"	"23804203"	"23586323"	"23431371"	"23275378"	"23250329"	"23223293"	"23161216"	"23158075"	"23115240"	"22969075"	"22938542"	"22851675"	"22615922"	"22581745"	"22442077"	"22166675"	"22118516"	"22006306"	"21948463"	"21562308"	"21551266"	"21464280"	"21454671"	"21412780"	"21365420"	"21284329"	"20876197"	"20680544"	"20403337"	"20360102"	"20357207"	"20092568"	"20079839"	"20018030"	"20018001"	"19889960"	"19717445"	"19454037"	"19383458"	"19357235"	"19344330"	"19276663"	"19265782"	"19223394"	"19202355"	"19186045"	"19103161"	"19077057"	"19074135"	"19014551"	"18615577"	"18579799"	"18542995"	"18270591"	"18212012"	"18174882"	"18167541"	"18004376"	"17955552"	"17767909"	"17675571"	"17652418"	"17481690"	"17379638"	"16972792"	"16815889"	"16715119"	"16478442"	"16096342"	"16014354"	"15827117"	"15679832"	"15606014"	"15520326"	"15518587"	"15353504"	"15322114"	"15217912"	"15197742"	"15195093"	"15151918"	"15138750"	"15073181"	"15046870"	"15024041"	"14744131"	"14722253"	"14684365"	"14608003"	"12954870"	"12861030"	"12832499"	"12824052"	"12807875"	"12744302"	"12679374"	"12621036"	"12615930"	"12606761"	"12586336"	"12574152"	"12567771"	"12566539"	"12562993"	"12560340"	"12529256"	"12451110"	"12407083"	"12403834"	"12270920"	"12242265"	"12127166"	"12065754"	"12063297"	"12062371"	"12060745"	"12021261"	"11950153"	"11852086"	"11790708"	"11738132"	"11684072"	"11517252"	"11463864"	"11444926"	"11426299"	"11341759"	"11310586"	"11282377"	"11249871"	"11238731"	"11160646"	"11136855"	"11101645"	"11053128"	"10962170"	"10921884"	"10849667"	"10800777"	"10794667"	"10779469"	"10736316"	"10733967"	"10719893"	"10713042"	"10618149"	"10539976"	"10564112"	"10551266"	"10506487"	"10457056"	"10414968"	"10414317"	"10388754"	"10352033"	"10100326"	"10024359"	"9876139"	"9852577"	"9707431"	"9616203"	"9575881"	"9545040"	"9522360"	"9362476"	"9351973"	"9334400"	"8943282"	"8980147"	"8978827"	"8968579"	"8824288"	"8698327"	"8938716"	"7618108"	"7781998"	"7774931"	"7905852"	"8081723"	"1740690"	"2002364"	"2770868"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MEF2C"	"complex neurodevelopmental disorder"	"32736694"	"32725155"	"32714604"	"32687666"	"32682583"	"32673370"	"32646524"	"32640283"	"32607799"	"32605607"	"32597152"	"32582977"	"32563862"	"32500803"	"32499679"	"32475139"	"32452758"	"32427350"	"32420368"	"32418612"	"32410261"	"32393578"	"32368329"	"32351548"	"32337691"	"32318089"	"32303334"	"32290730"	"32274291"	"32221048"	"32209501"	"32195247"	"32186750"	"32183703"	"32180088"	"32178412"	"32142900"	"32132660"	"32132110"	"32130571"	"32098400"	"32082976"	"32081919"	"32056051"	"32050579"	"32046534"	"32042319"	"32041885"	"32031622"	"32016446"	"32003456"	"31988313"	"31979018"	"31936461"	"31934008"	"31930767"	"31911274"	"31900516"	"31875873"	"31852847"	"31835509"	"31821703"	"31799250"	"31799184"	"31795606"	"31784580"	"31759053"	"31751569"	"31749426"	"31746096"	"31743617"	"31738005"	"31717562"	"31697837"	"31678627"	"31665330"	"31661193"	"31659164"	"31628386"	"31622977"	"31619469"	"31614133"	"31598701"	"31541743"	"31535356"	"31527619"	"31512412"	"31485271"	"31474861"	"31431402"	"31428175"	"31398085"	"31375103"	"31346235"	"31315301"	"31308482"	"31304202"	"31284864"	"31271750"	"31265161"	"31255755"	"31254364"	"31199942"	"31167905"	"31140610"	"31120305"	"31116981"	"31105003"	"31104696"	"31094920"	"31086358"	"31080136"	"31068643"	"31068415"	"31059522"	"31031620"	"31030717"	"31023824"	"31019236"	"31013615"	"30988422"	"30980110"	"30967789"	"30951706"	"30923172"	"30922778"	"30907210"	"30906402"	"30887511"	"30820831"	"30791438"	"30787297"	"30763456"	"30735130"	"30731491"	"30724341"	"30723106"	"30716443"	"30703870"	"30699200"	"30671223"	"30670970"	"30661366"	"30643696"	"30614683"	"30602381"	"30602329"	"30590978"	"30587792"	"30560247"	"30548289"	"30545854"	"30521808"	"30513475"	"30511745"	"30509999"	"30445463"	"30428088"	"30419283"	"30390123"	"30376817"	"30362159"	"30335237"	"30326964"	"30305329"	"30289203"	"30286210"	"30281408"	"30276662"	"30269375"	"30223900"	"30221471"	"30196409"	"30192028"	"30190342"	"30189626"	"30180473"	"30180184"	"30171027"	"30166330"	"30153568"	"30142308"	"30104728"	"30095216"	"30087899"	"30083183"	"30071126"	"30026272"	"30023931"	"30012911"	"30006604"	"30005210"	"30003100"	"29995456"	"29990528"	"29981832"	"29978456"	"29952001"	"29948147"	"29912202"	"29910686"	"29883787"	"29879430"	"29875463"	"29868120"	"29867004"	"29863696"	"29845109"	"29787160"	"29734659"	"29714661"	"29705696"	"29678826"	"29663307"	"29631562"	"29579079"	"29575726"	"29574800"	"29546053"	"29526696"	"29518216"	"29513653"	"29509905"	"29505923"	"29501773"	"29497040"	"29468350"	"29447339"	"29431698"	"29413154"	"29409032"	"29379882"	"29377175"	"29331478"	"29322514"	"29322350"	"29320732"	"29279377"	"29276141"	"29266188"	"29258830"	"29137434"	"29137410"	"29137293"	"29134152"	"29133852"	"29127222"	"29112298"	"29104469"	"29072293"	"29066419"	"29054930"	"29032150"	"29031500"	"29025761"	"28993242"	"28982760"	"28978029"	"28973134"	"28959042"	"28955690"	"28955223"	"28927261"	"28902616"	"30480232"	"32258696"	"28846494"	"28825623"	"28821601"	"28813489"	"28811660"	"28799067"	"28794905"	"28793912"	"28778944"	"28765276"	"28737214"	"28734734"	"28731788"	"28716987"	"28711329"	"28699694"	"28663257"	"28656050"	"28637658"	"28631251"	"28614716"	"28611032"	"28596299"	"28586646"	"28558931"	"28542178"	"28533427"	"28522298"	"28482719"	"28480892"	"28475237"	"28473466"	"28473437"	"28456137"	"28441765"	"28427897"	"28396518"	"28382690"	"28362413"	"28361052"	"28355297"	"28351867"	"28346476"	"28332716"	"28297145"	"28288167"	"28287088"	"28262548"	"28222718"	"28215905"	"28199971"	"28197667"	"28192031"	"28186995"	"28163053"	"28116125"	"28115742"	"28109343"	"28077597"	"28071742"	"28017720"	"28012406"	"27989458"	"27966542"	"27930352"	"27929112"	"27916793"	"27910042"	"27909439"	"27907007"	"27903291"	"27883900"	"27880909"	"27841880"	"27834668"	"27825100"	"27810920"	"27779093"	"26954209"	"27796324"	"27771362"	"27595386"	"27276684"	"27773576"	"27761944"	"27756709"	"27748065"	"27747368"	"27723133"	"27718423"	"27703850"	"27667720"	"27664809"	"27629361"	"27616567"	"27612437"	"27561543"	"27553283"	"27551501"	"27548511"	"27507714"	"27485932"	"27484899"	"27467521"	"27445649"	"27442119"	"27427476"	"27406318"	"27397699"	"27371840"	"27354201"	"27346195"	"27337099"	"27322685"	"27297623"	"27296220"	"27292777"	"27288451"	"27268728"	"27255693"	"27252657"	"27239938"	"27237783"	"27212417"	"27210794"	"27144530"	"27141946"	"27105846"	"27094722"	"27066979"	"27066552"	"27066173"	"27062609"	"27061659"	"27040525"	"27028820"	"27013928"	"27005436"	"26983934"	"26979619"	"26957223"	"26942853"	"26930606"	"26923194"	"26921792"	"26910538"	"26909359"	"26906632"	"26900922"	"26897085"	"26864752"	"26857472"	"26849429"	"26826378"	"26824887"	"26811383"	"26805783"	"26788505"	"26787000"	"26774077"	"26757100"	"26741987"	"26725846"	"26725491"	"26705761"	"26681949"	"26670384"	"26660426"	"26649751"	"26642739"	"26626177"	"26622681"	"26572770"	"26564862"	"26487643"	"26485990"	"26484393"	"26473286"	"26456102"	"26449528"	"26447881"	"26428636"	"26426104"	"26418945"	"26400236"	"26393304"	"26392309"	"26387541"	"26364852"	"26361013"	"26354680"	"26354121"	"26354006"	"26321200"	"26302234"	"26278933"	"26245647"	"26236194"	"26232392"	"26230763"	"26230692"	"26224577"	"26184978"	"26182351"	"26178269"	"26172269"	"26161356"	"26160899"	"26160456"	"26110635"	"26101156"	"26047103"	"26041412"	"26005169"	"25920449"	"25908059"	"25890300"	"25876691"	"25871791"	"25866192"	"25858143"	"25854560"	"25853262"	"25847683"	"25834424"	"25826570"	"25794678"	"25789873"	"25789156"	"25763715"	"25733682"	"25723573"	"25716962"	"25712661"
+"NRXN1"	"complex neurodevelopmental disorder"	"32738165"	"32672359"	"32663544"	"32658356"	"32599581"	"32451840"	"32298718"	"32122280"	"32071599"	"31995730"	"31932357"	"31893021"	"31872500"	"31833403"	"31812984"	"31799184"	"31784728"	"31759289"	"31743624"	"31658245"	"31624239"	"31602316"	"31566781"	"31530798"	"31515794"	"31509934"	"31434409"	"31368584"	"31316548"	"31302032"	"31262725"	"31138894"	"31112269"	"31061854"	"31005376"	"30976086"	"30923172"	"30902061"	"30873608"	"30738094"	"30709877"	"30675382"	"30660939"	"30557783"	"30509170"	"30358070"	"30356120"	"30271887"	"30312963"	"30289875"	"30262834"	"30224866"	"30190612"	"30144930"	"30105822"	"30104341"	"30100184"	"30076746"	"30031152"	"29923609"	"29784783"	"29744390"	"29729524"	"29703944"	"29622757"	"29527164"	"29513122"	"29426960"	"29406991"	"29229705"	"29221905"	"29217522"	"29179725"	"29131391"	"29079805"	"29045040"	"29042551"	"29028156"	"29028155"	"28948087"	"28939043"	"28798405"	"28761347"	"28756411"	"28713908"	"28694483"	"28649445"	"28641112"	"28641111"	"28641109"	"28584888"	"28555354"	"28472659"	"28449067"	"28431800"	"28367114"	"28346453"	"28343708"	"28289584"	"28251919"	"28154140"	"28128679"	"28121444"	"28120489"	"28114293"	"28013231"	"28009295"	"27965028"	"27960072"	"27926833"	"27920664"	"27900343"	"27897003"	"27891178"	"27869829"	"27708434"	"27707967"	"27671336"	"27650969"	"27613936"	"27528753"	"27480506"	"27375411"	"27355804"	"27229316"	"27195815"	"27184741"	"27174676"	"27149984"	"27033232"	"27015872"	"26899349"	"26795442"	"26785044"	"26771491"	"26595880"	"26590955"	"26563496"	"26438105"	"26423458"	"26410934"	"26340523"	"26335821"	"26297903"	"26291160"	"26279266"	"26266783"	"26235839"	"26216298"	"26213384"	"26185613"	"26130694"	"26047810"	"25950944"	"25943950"	"25745399"	"25710691"	"25693924"	"25687563"	"25614873"	"25533176"	"25505328"	"25486015"	"25450229"	"25420124"	"25404338"	"25399301"	"25392508"	"25367360"	"25352602"	"25330104"	"25243798"	"25201988"	"25180570"	"25149957"	"25149956"	"25131214"	"25124521"	"25062845"	"25061880"	"25036961"	"25017069"	"24965301"	"24906019"	"24870235"	"24832020"	"24700553"	"24680031"	"24664977"	"24633560"	"24508361"	"24448209"	"24445990"	"24440292"	"24389500"	"24368850"	"24343059"	"24339137"	"24311552"	"24255876"	"24253858"	"24213355"	"24211009"	"24204716"	"24188901"	"24094106"	"24083347"	"24064682"	"24038377"	"24005312"	"23879678"	"23875667"	"23853109"	"23849776"	"23840597"	"23827811"	"23772147"	"23638761"	"23637638"	"23536886"	"23533600"	"23533028"	"23505263"	"23495017"	"23474816"	"23472757"	"23426688"	"23403532"	"23393157"	"23375656"	"22374773"	"23294455"	"23275889"	"25408897"	"23264101"	"23236287"	"23207424"	"23180095"	"23141067"	"23083742"	"23083741"	"22952857"	"22948383"	"22892527"	"22885689"	"22846907"	"22840401"	"22813947"	"22777675"	"22750515"	"22670139"	"22670138"	"22662246"	"22617343"	"22547958"	"22486522"	"22472195"	"22405623"	"22357843"	"22348092"	"22337556"	"22262843"	"22228009"	"22209245"	"22196734"	"22118685"	"22106001"	"22037798"	"21964664"	"21940453"	"21940442"	"21915259"	"21895634"	"21890328"	"21827697"	"21797804"	"21739571"	"21687627"	"21660214"	"21658581"	"21628410"	"21626680"	"21615902"	"21559374"	"21555073"	"21533271"	"21477380"	"21424692"	"21394644"	"21321563"	"21288692"	"21285140"	"21262241"	"22832527"	"21048075"	"21040561"	"20967226"	"20945070"	"20934321"	"20882566"	"20868653"	"20860064"	"20696403"	"20574149"	"20537373"	"20502490"	"20468056"	"20421335"	"20414139"	"20347009"	"20238079"	"20195527"	"20162629"	"20157312"	"20147539"	"20113834"	"20064388"	"20064387"	"20029827"	"20010541"	"19968605"	"19896112"	"19880096"	"19822762"	"19818200"	"19752307"	"19734545"	"19675094"	"19658047"	"19607885"	"19557195"	"19545994"	"19404257"	"19348707"	"19345090"	"19197363"	"19036990"	"18945720"	"18940311"	"18419324"	"18270208"	"18252227"	"18179900"	"18084303"	"18057082"	"17989066"	"17158188"	"17107668"	"16451640"	"11944992"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PURA"	"complex neurodevelopmental disorder"	"32754679"	"32721325"	"32597523"	"32515961"	"32476604"	"32474826"	"32444614"	"32442794"	"32337850"	"32311419"	"32270456"	"32250835"	"32235969"	"32215621"	"32200224"	"32195137"	"32171021"	"32150503"	"32110575"	"32089526"	"32075916"	"32046238"	"32037394"	"32035967"	"31980816"	"31929511"	"31911028"	"31891884"	"31807466"	"31771124"	"31770927"	"31766706"	"31733866"	"31733664"	"31697553"	"31677218"	"31647807"	"31583403"	"31508527"	"31499713"	"31487289"	"31443115"	"31430738"	"31430051"	"31428591"	"31390350"	"31330560"	"31273778"	"31206579"	"31179368"	"31166160"	"31127877"	"30974118"	"30784522"	"30771188"	"30764535"	"30678901"	"30644011"	"30627862"	"30624804"	"30601112"	"30587887"	"30563277"	"30559848"	"30536268"	"30519757"	"30467923"	"30458175"	"30456172"	"30427443"	"30239330"	"30232967"	"30182947"	"30180942"	"30167675"	"30145133"	"30144788"	"30141686"	"30083512"	"30067822"	"30064523"	"30043458"	"30027323"	"30004761"	"29989072"	"29940778"	"29908350"	"29891709"	"29869997"	"29864583"	"29771548"	"29765345"	"29687624"	"29680387"	"29631431"	"29619234"	"29574513"	"29544475"	"29502225"	"29501931"	"29459296"	"29350937"	"29347213"	"29307761"	"29221753"	"29200250"	"29183841"	"29183649"	"29163650"	"29157472"	"29150892"	"29097605"	"29029547"	"28980860"	"28975482"	"28929078"	"28927283"	"28919694"	"28861113"	"28848264"	"28840451"	"28834784"	"28834593"	"28808156"	"28807296"	"28802040"	"28743000"	"28728376"	"28670767"	"28610285"	"28606135"	"28505864"	"28486374"	"28475885"	"28470824"	"28448108"	"28404748"	"28377748"	"28375699"	"28327206"	"28259249"	"28251410"	"28246441"	"28233490"	"28164378"	"28146314"	"28110264"	"29511381"	"27863910"	"27839527"	"27810355"	"27809976"	"25942011"	"27651147"	"27748283"	"27734700"	"27733791"	"27727154"	"27670721"	"27651677"	"27590123"	"27531569"	"27523934"	"27511519"	"27508145"	"27492176"	"27492167"	"27454554"	"27453852"	"27452352"	"27413333"	"27413304"	"27407290"	"27260256"	"27257867"	"27252078"	"27234879"	"27176388"	"27148565"	"27138703"	"27066420"	"27065606"	"27047137"	"27045848"	"27036371"	"27001705"	"26921790"	"26903127"	"26894717"	"26877245"	"26862788"	"26853447"	"26847462"	"26831478"	"26795593"	"26728149"	"26602810"	"26582469"	"26573874"	"26572837"	"26572561"	"26565346"	"26523335"	"26513373"	"26499005"	"26492376"	"26490728"	"26463373"	"26345055"	"26345049"	"26345046"	"26345044"	"26345043"	"26344955"	"26337085"	"26324158"	"26299233"	"26271352"	"26257933"	"26255278"	"26250053"	"26234154"	"26203295"	"26182842"	"26124252"	"26092273"	"26081543"	"26077238"	"26071101"	"26064000"	"26063989"	"25981413"	"25949190"	"27547092"	"25942290"	"25940604"	"25872586"	"25869211"	"25828932"	"25811331"	"25788698"	"25768574"	"25724720"	"25698867"	"25698858"	"25669166"	"25656215"	"25652101"	"25600222"	"25549636"	"25541077"	"25533962"	"25525626"	"25516877"	"25493892"	"25447345"	"25439098"	"25375817"	"25375582"	"25342064"	"25337927"	"25320497"	"25320496"	"25308063"	"25203876"	"25175721"	"25165422"	"25153904"	"25141288"	"25118759"	"25110142"	"25098857"	"25086561"	"25069860"	"25059756"	"25059162"	"25039005"	"25035594"	"25006451"	"24934584"	"24891424"	"24886923"	"24841347"	"24819879"	"24815971"	"24808653"	"24803688"	"24799245"	"24742666"	"24719548"	"24711267"	"24693532"	"24673743"	"24666565"	"24624316"	"24605293"	"24530805"	"24505182"	"24498259"	"24494185"	"24446247"	"24431570"	"24431562"	"24431547"	"24431535"	"24425999"	"24425995"	"24414739"	"24399390"	"24390793"	"24378383"	"24363984"	"24351178"	"24329950"	"24323243"	"24295915"	"24288053"	"24225027"	"24210168"	"24090244"	"24082275"	"24051128"	"24043404"	"23993634"	"23950017"	"23932355"	"23853653"	"23841882"	"23813239"	"23790772"	"23783027"	"23767624"	"23721888"	"23675528"	"23663276"	"23639047"	"23573935"	"23553836"	"23543701"	"23542117"	"23308086"	"23297387"	"23249005"	"23152365"	"23150733"	"23113275"	"23063033"	"23024509"	"23005816"	"23005216"	"22946539"	"22899247"	"22896006"	"22835829"	"22835619"	"22825007"	"22753377"	"22711443"	"26593830"	"30727364"	"22567313"	"22553010"	"22508419"	"22506772"	"22412268"	"22408654"	"22377657"	"22357570"	"22308425"	"22235786"	"22230710"	"22225364"	"24478996"	"22197966"	"22189491"	"22164065"	"22096147"	"22073950"	"22010047"	"21974636"	"21814752"	"21810234"	"21806313"	"21706162"	"21705543"	"21684087"	"21487182"	"21478347"	"21475724"	"21424839"	"21402449"	"23696083"	"21309465"	"21300985"	"21296171"	"21261119"	"21261116"	"21250496"	"21226012"	"21170251"	"21168130"	"21151833"	"21124792"	"21096815"	"21092625"	"21083885"	"21075486"	"21062477"	"21057202"	"20948313"	"20889624"	"20879387"	"20686590"	"20610603"	"20581183"	"20571922"	"20533153"	"20524113"	"20453091"	"20443473"	"20378613"	"20365813"	"20123959"	"19996387"	"19927592"	"19790234"	"19720825"	"19687627"	"19654233"	"19652927"	"19632049"	"19618345"	"27034050"	"19472616"	"19462430"	"19408861"	"19376851"	"19358090"	"19278286"	"19274588"	"19267365"	"19251901"	"19234481"	"19234480"	"19234093"	"19182532"	"19153081"	"19148585"	"20448837"	"20426209"	"19097361"	"18981716"	"18927497"	"18780968"	"18728167"	"18680492"	"18651164"	"18630497"	"18567434"	"18426830"	"18413735"	"18413649"	"18386260"	"18377063"	"18344281"	"18334583"	"18326264"	"18296772"	"18258596"	"19662113"	"17906292"	"17902989"	"17722108"	"17695592"	"17641060"	"17502392"	"17451838"	"17428355"	"17401468"	"17374989"	"17373111"	"17241711"	"17176425"	"17145772"	"17084531"	"17063801"	"17061588"	"17048208"	"16794939"	"16786280"	"16741925"	"16687443"	"16511857"	"16478729"	"16461664"	"16436378"	"16411902"	"16376299"	"16362583"	"16267406"
+"SCN2A"	"complex neurodevelopmental disorder"	"32750235"	"32737897"	"32702657"	"32699506"	"32694024"	"32635278"	"32613771"	"32603808"	"32597768"	"32593896"	"32469098"	"32466254"	"32400968"	"32325366"	"32291436"	"32264956"	"32247221"	"32227486"	"32193494"	"32185219"	"32090326"	"32005694"	"31995133"	"31987501"	"31980364"	"31928904"	"31924505"	"31904126"	"31904120"	"31904117"	"31889633"	"31882278"	"31874705"	"31848935"	"31808001"	"31803246"	"31791873"	"31758607"	"31718537"	"31707316"	"31691806"	"31686106"	"31618474"	"31558572"	"31501495"	"31497877"	"31487502"	"31450970"	"31439038"	"31437449"	"31393404"	"31324323"	"31320627"	"31297029"	"31273778"	"31272037"	"31249508"	"31230762"	"31229899"	"31205438"	"31204721"	"31174070"	"31171384"	"31139143"	"31127053"	"31112269"	"31105003"	"31102386"	"31077350"	"31056551"	"31038196"	"31015467"	"30977854"	"30962870"	"30928199"	"30896644"	"30885820"	"30870728"	"30859550"	"30813884"	"30813219"	"30741786"	"30698461"	"30693367"	"30643928"	"30619928"	"30605671"	"30538486"	"30531795"	"30415926"	"30394046"	"30392976"	"30381472"	"30361185"	"30314295"	"30242186"	"30223704"	"30203812"	"30185235"	"30182498"	"30175250"	"30165711"	"30144217"	"30071822"	"30062040"	"30061856"	"30009132"	"29996185"	"29976148"	"29952644"	"29934306"	"29929112"	"29867081"	"29852413"	"29844171"	"29783826"	"29778428"	"29761117"	"29760947"	"29728193"	"29691040"	"29668032"	"29655203"	"29649454"	"29635106"	"29625812"	"29614566"	"29588993"	"29466837"	"29455050"	"29448117"	"29314583"	"29307654"	"29288635"	"29215089"	"29186148"	"29184379"	"29141310"	"29056246"	"29046322"	"28993242"	"31966371"	"28951092"	"28880996"	"28867142"	"28837158"	"28831199"	"28817111"	"28784306"	"28714951"	"28709814"	"28584888"	"28556246"	"28544625"	"28518218"	"28489313"	"28471432"	"28379373"	"28334922"	"28256214"	"28254201"	"30113154"	"28235671"	"28137877"	"28133863"	"28065826"	"28029095"	"28005047"	"27959866"	"27956748"	"27918244"	"27888506"	"27882351"	"27876397"	"27867041"	"27864847"	"27842893"	"27830185"	"27824329"	"27802793"	"27790929"	"27781560"	"27781031"	"27781028"	"27734276"	"27733563"	"27595042"	"27574005"	"27538648"	"27528512"	"27478051"	"27422711"	"27328862"	"27290639"	"27162340"	"27159988"	"27153334"	"27112236"	"26993267"	"26749308"	"26728597"	"26656780"	"26648591"	"26647175"	"26645390"	"26637798"	"26555645"	"26553874"	"26550707"	"26503606"	"26482601"	"26311622"	"26291284"	"26283219"	"26218606"	"26204087"	"26196440"	"26194112"	"26189305"	"26138355"	"26039939"	"25982755"	"25969726"	"25961639"	"25961405"	"25951140"	"25849321"	"25843248"	"25823783"	"25818041"	"25772804"	"25624450"	"25598429"	"25524840"	"25497044"	"25459969"	"25457084"	"25378553"	"25346629"	"25344690"	"25163687"	"25156649"	"25155934"	"25062845"	"24902342"	"24902337"	"24862204"	"24814476"	"24737319"	"24718902"	"24710820"	"24704313"	"24659627"	"24657915"	"24650168"	"24618187"	"24579881"	"24463883"	"24400098"	"24387789"	"26150927"	"24337656"	"24220630"	"24183589"	"24157691"	"24080482"	"23988467"	"23977416"	"23935176"	"23886654"	"23859570"	"23849776"	"23847718"	"23827426"	"23758435"	"23708187"	"23662938"	"23622206"	"23566103"	"23550958"	"23509039"	"23485646"	"23472826"	"23360469"	"23344724"	"23195492"	"23148524"	"23139844"	"23020937"	"23016767"	"22985412"	"22971116"	"22905747"	"22795751"	"22761417"	"22677033"	"22612257"	"22594501"	"22591750"	"22581936"	"22538831"	"22495306"	"22471526"	"22399141"	"22398286"	"22356913"	"22292491"	"22188362"	"22123950"	"22029951"	"21893419"	"21816038"	"21795675"	"21762452"	"21747585"	"21704126"	"21692795"	"21675872"	"21439835"	"21416599"	"21402906"	"21395569"	"21377452"	"21345946"	"21247166"	"21212283"	"21209192"	"21204806"	"21192497"	"21156207"	"21156065"	"20956790"	"20944860"	"20924084"	"20832659"	"20807223"	"20732953"	"20659150"	"20550552"	"20515650"	"20459109"	"20427265"	"20420834"	"20410356"	"20405854"	"20384724"	"20377745"	"20371507"	"20358620"	"20351042"	"20346423"	"20236112"	"20219516"	"20147455"	"20089854"	"20080105"	"20041941"	"21833183"	"20032192"	"20011040"	"20006674"	"19912232"	"19853223"	"19809503"	"19786696"	"19783390"	"19743470"	"19738391"	"19694741"	"19692609"	"19636347"	"19633666"	"19620853"	"19513789"	"19465131"	"19442819"	"19367399"	"19284629"	"19270815"	"19221510"	"19201561"	"19200014"	"19171087"	"19162162"	"19129176"	"19056495"	"18973947"	"18834644"	"18826953"	"18818069"	"18789130"	"18784617"	"18667034"	"18640800"	"18566737"	"18565993"	"18556207"	"18480368"	"18479388"	"18474570"	"18458705"	"18448139"	"18425532"	"18302128"	"18321475"	"18310914"	"18269734"	"18242854"	"18215090"	"18203167"	"18175144"	"18079688"	"18031550"	"17981785"	"17959797"	"17959796"	"17881658"	"17868079"	"17850126"	"17849316"	"17805013"	"17763877"	"17715289"	"17697940"	"17674132"	"17641256"	"17613521"	"17592554"	"17544618"	"17522141"	"17468742"	"17467289"	"17409533"	"17386050"	"17360357"	"17351486"	"17118417"	"17049761"	"17035036"	"17021166"	"16966585"	"16949748"	"16914293"	"16913719"	"16912302"	"16887333"	"16884893"	"16847056"	"16831405"	"16822974"	"16822249"	"16815341"	"16806834"	"16800812"	"16753259"	"16749906"	"16647068"	"16621448"	"16596442"	"16550559"	"16525050"	"16505156"	"16464983"	"16458302"	"16446144"	"16417554"	"16359473"	"16307480"	"16302874"	"16302872"	"16293367"	"16245025"	"16234337"	"16210352"	"16209876"	"16186247"	"16168594"	"16078241"	"16075041"	"16052353"	"16038283"	"16033895"	"16026932"	"16020455"	"16014805"	"15925093"	"15917456"	"15917252"	"15896347"	"15880351"	"15844213"	"15800189"	"15760941"	"15750351"	"15743185"	"15733572"	"15710243"	"15651314"	"15640354"	"15618878"
+"SCN8A"	"complex neurodevelopmental disorder"	"32694024"	"32636717"	"32635522"	"32613771"	"32593896"	"32509551"	"32227486"	"32134913"	"32090326"	"32040247"	"32003688"	"31980364"	"31943325"	"31928904"	"31904124"	"31904118"	"31889633"	"31887642"	"31722722"	"31715021"	"31680123"	"31675620"	"31672162"	"31672125"	"31625145"	"31605437"	"31575436"	"31572294"	"31525968"	"31487502"	"31429857"	"31402610"	"31393404"	"31375088"	"31335965"	"31302244"	"31288536"	"31278928"	"31201232"	"31192134"	"31174070"	"31106489"	"31083464"	"31077350"	"31056551"	"31054938"	"31054517"	"31026061"	"31010614"	"30977854"	"30968951"	"30914445"	"30870728"	"30868116"	"30851583"	"30736806"	"30724401"	"30699332"	"30685519"	"30669034"	"30615093"	"30605865"	"30601941"	"30587448"	"30463697"	"30389587"	"30320703"	"30314295"	"30287879"	"30229854"	"30219789"	"30185235"	"30171078"	"30158710"	"30128323"	"30119265"	"30081822"	"30078772"	"29991598"	"29956586"	"29870060"	"29852413"	"29782051"	"29760947"	"29726066"	"29677576"	"29655203"	"29642012"	"29588993"	"29588963"	"29588952"	"29588412"	"29578003"	"29574705"	"29554219"	"29497094"	"29474819"	"29466837"	"29455050"	"29432985"	"29390993"	"29378414"	"29347346"	"29335582"	"29317669"	"29263050"	"29258861"	"29235621"	"29184379"	"29144225"	"29128679"	"29121005"	"29056246"	"29046322"	"28991117"	"28923014"	"28905186"	"28880996"	"28851482"	"28843951"	"28842554"	"28758202"	"28734032"	"28710444"	"28702509"	"28683073"	"28676574"	"28676440"	"28655185"	"28591687"	"28522250"	"28518218"	"28434994"	"28387369"	"28355569"	"28346953"	"28238546"	"28235671"	"28212175"	"28193882"	"28084268"	"28079757"	"28008944"	"28007400"	"28005050"	"27994149"	"27905510"	"27900360"	"27875746"	"27864847"	"27836728"	"27830185"	"27791149"	"27781560"	"27781031"	"27781027"	"27743286"	"27659738"	"27653482"	"27581456"	"27559564"	"27375106"	"27317769"	"27270488"	"27267376"	"27210545"	"27174182"	"27164707"	"27013268"	"26995749"	"26994141"	"26993267"	"26974309"	"26933559"	"26900580"	"26807988"	"26708501"	"26677014"	"26647175"	"26633954"	"26562765"	"26553437"	"26542295"	"26503606"	"26410685"	"26408173"	"26297079"	"26252990"	"26251648"	"26235739"	"26235738"	"26220391"	"26182346"	"26121051"	"26029160"	"25951352"	"25914188"	"25876813"	"25874799"	"25818041"	"25804238"	"25799905"	"25785782"	"25767117"	"25725044"	"25712773"	"25686526"	"25686275"	"25666757"	"25659151"	"25652923"	"25642194"	"25571999"	"25568300"	"25568293"	"25549550"	"25453779"	"25380697"	"25239001"	"25227913"	"25048219"	"25046240"	"25043721"	"24888894"	"24874546"	"24814476"	"24777400"	"24714523"	"24704313"	"24657915"	"24557103"	"24508524"	"24469795"	"26150927"	"24352161"	"24326337"	"24288358"	"24282080"	"24247886"	"24194747"	"24138934"	"23942886"	"23925123"	"23924059"	"23891806"	"23886654"	"23869231"	"23844512"	"23739961"	"23735284"	"23711479"	"23708187"	"23699510"	"23640885"	"23622763"	"23222914"	"23173681"	"23090952"	"22986623"	"22981330"	"22905747"	"22642323"	"22493249"	"22474336"	"22465659"	"22434879"	"22427515"	"22365152"	"22364545"	"22357600"	"22355369"	"22159130"	"22090485"	"22075254"	"22044765"	"21983428"	"21948246"	"21708262"	"21683085"	"21630263"	"21569247"	"21562192"	"21458573"	"21439942"	"21303679"	"21295113"	"21190943"	"21177993"	"21156207"	"21078353"	"21061159"	"20924084"	"20838243"	"20808894"	"20679355"	"20678086"	"20632842"	"20624410"	"20600647"	"20536936"	"20530479"	"20483028"	"20466935"	"20421839"	"20371507"	"20353942"	"20351042"	"20204400"	"20173079"	"20147455"	"20133873"	"20111900"	"20054822"	"20041941"	"20038812"	"20006674"	"19800949"	"19765660"	"19763626"	"19737145"	"19657055"	"19636347"	"19633666"	"19592486"	"19584134"	"19552689"	"19535906"	"19535585"	"19524556"	"19465131"	"19424768"	"19306853"	"19261867"	"19254928"	"19154441"	"19136557"	"19127357"	"19118165"	"19115387"	"18930825"	"18812204"	"18791226"	"18729213"	"18725211"	"18718804"	"18687344"	"18650312"	"18637833"	"18621130"	"18601978"	"18599309"	"18565993"	"18363861"	"18192366"	"18079688"	"18070091"	"18057213"	"18021327"	"17999925"	"17924165"	"17881658"	"17805013"	"17671266"	"17662136"	"17656373"	"17654737"	"17548620"	"17522178"	"17522141"	"17496801"	"17297687"	"17273863"	"17259145"	"17189307"	"17115075"	"17112480"	"17111377"	"17051596"	"16966585"	"16943272"	"16930439"	"16822974"	"16817858"	"16775201"	"16753259"	"16734683"	"16719687"	"16702217"	"16687615"	"16676325"	"16537565"	"16236810"	"16084645"	"16078241"	"16075041"	"16052353"	"16033895"	"16020462"	"16014723"	"15932429"	"15901786"	"15844213"	"15814803"	"15814781"	"15811336"	"15760941"	"15703401"	"15676283"	"15664695"	"15664169"	"15635639"	"15619959"	"15465873"	"15390090"	"15302875"	"15286995"	"15282281"	"15277591"	"15170223"	"15148385"	"15102918"	"15056687"	"15048850"	"14769375"	"14715935"	"14662515"	"14515333"	"13679025"	"12967988"	"12920299"	"12920288"	"12904461"	"12843211"	"12832512"	"12374766"	"12204355"	"11771652"	"11532991"	"11496924"	"11334010"	"10723066"	"10592298"	"10564739"	"10549817"	"10400628"	"9949206"	"9828131"	"9698304"	"9651206"	"9603190"	"9562526"	"9354334"	"9295353"	"9192691"	"9061364"	"8968764"	"8815882"	"8663325"	"8654536"	"7670495"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SHANK2"	"complex neurodevelopmental disorder"	"32661924"	"32640229"	"32616021"	"32607230"	"32594058"	"32564287"	"32547879"	"32268103"	"32252796"	"32252688"	"32184300"	"32165372"	"31990031"	"31922584"	"31727973"	"31715598"	"31698564"	"31597090"	"31526808"	"31406134"	"31185809"	"31110290"	"31050728"	"30976086"	"30968809"	"30962541"	"30911184"	"30871688"	"30792984"	"30763456"	"30629339"	"30604369"	"30524232"	"30531795"	"30505269"	"30474797"	"30466882"	"30405356"	"30337855"	"30319350"	"30298512"	"30260019"	"30160788"	"30098783"	"30072871"	"30058071"	"30023428"	"29991577"	"29970989"	"29970987"	"29970986"	"29939863"	"29934968"	"29875651"	"29665782"	"29628500"	"29618728"	"29572432"	"29297151"	"29250591"	"29175319"	"29168207"	"29074576"	"29046483"	"28963042"	"28939077"	"28852427"	"28794017"	"28655565"	"28484738"	"28407409"	"28326932"	"28211979"	"28179641"	"27903723"	"27897003"	"27795858"	"27544825"	"27641545"	"27581745"	"27341321"	"27329942"	"27300699"	"27225771"	"27199660"	"27145803"	"27058444"	"27001614"	"26725465"	"26687841"	"26547831"	"26485544"	"26338675"	"26333830"	"26303661"	"26303658"	"26198301"	"26055422"	"26047810"	"26003415"	"25981743"	"25917711"	"25864488"	"25808930"	"25802764"	"25775468"	"25707920"	"25637745"	"25560758"	"25351249"	"25188300"	"25131214"	"24820912"	"24811177"	"24751538"	"24726578"	"24700553"	"24607903"	"24500988"	"24445315"	"24421411"	"24343904"	"24298145"	"24298140"	"24277719"	"24218108"	"24124131"	"23994547"	"23885228"	"23650259"	"23583105"	"23536326"	"23468870"	"23350639"	"23325414"	"23315544"	"23242419"	"22907480"	"22761904"	"22722533"	"22699620"	"22699619"	"22536370"	"22514330"	"22503632"	"22457763"	"22346768"	"22228009"	"22128856"	"21994763"	"21901269"	"21840719"	"21701773"	"21695253"	"21615557"	"21445960"	"21373257"	"21217644"	"21035486"	"20880122"	"20868653"	"20810910"	"20800661"	"20531469"	"20506382"	"20502490"	"20473310"	"20347015"	"20080968"	"19921743"	"19885679"	"19805144"	"19635471"	"19465057"	"19345194"	"19299912"	"19081375"	"18829961"	"18405350"	"17551986"	"17419801"	"17244609"	"17211611"	"17166180"	"17120053"	"17105903"	"17066295"	"17065789"	"16855097"	"16758162"	"16293618"	"16235239"	"15659222"	"15632121"	"15236236"	"15207857"	"15121189"	"15014124"	"15006490"	"14977424"	"14960624"	"14679199"	"12626503"	"12549212"	"12196116"	"12065602"	"11814549"	"11583995"	"11325055"	"11304802"	"11226670"	"11087996"	"10958799"	"10806096"	"10574750"	"10527873"	"10506216"	"10414979"	"10373412"	"9742101"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SYNGAP1"	"complex neurodevelopmental disorder"	"32579114"	"32472547"	"32469098"	"32336485"	"32107006"	"32094284"	"32094283"	"32094282"	"32075947"	"31939740"	"31870697"	"31785789"	"31768849"	"31758607"	"31712380"	"31654850"	"31454529"	"31446808"	"31401500"	"31395010"	"31387938"	"31323176"	"31302919"	"31220273"	"31185809"	"31171384"	"31143100"	"31105003"	"31059729"	"31025938"	"30998607"	"30923172"	"30908877"	"30901256"	"30875700"	"30814930"	"30800045"	"30789692"	"30705251"	"30685520"	"30572772"	"30556619"	"30541867"	"30541864"	"30539815"	"30455457"	"30280432"	"30181777"	"29940508"	"29886190"	"29852413"	"29774215"	"29760947"	"29580901"	"29402231"	"29391390"	"29390993"	"29381230"	"29190809"	"28954225"	"28883427"	"28867142"	"28721930"	"28706196"	"28584888"	"28576131"	"28524815"	"28173150"	"28135719"	"27942422"	"27897003"	"27827368"	"27184921"	"27623146"	"27565345"	"27559125"	"27507650"	"27444122"	"27086544"	"26989088"	"26912996"	"26680505"	"26558778"	"26231830"	"26124704"	"26110312"	"26079862"	"26055422"	"26041915"	"25882707"	"25693842"	"25569349"	"25533468"	"25444158"	"25418537"	"25351249"	"25167861"	"25046240"	"25034949"	"24945774"	"24718106"	"24391850"	"24007600"	"23967245"	"23785156"	"23726375"	"23708187"	"23687080"	"23443682"	"23382246"	"23161826"	"23141534"	"23020937"	"22884480"	"22700469"	"22692543"	"22421273"	"22405089"	"22050443"	"21736925"	"21549355"	"21525372"	"21480541"	"21376300"	"21237447"	"21119708"	"21067840"	"21045079"	"20683986"	"20531469"	"20188038"	"20105235"	"19824778"	"19483657"	"19196676"	"19145222"	"19074040"	"18824155"	"18417361"	"18323856"	"16887332"	"16537406"	"16507876"	"16484497"	"16452659"	"16427633"	"16228991"	"16041714"	"15733080"	"15673435"	"15500970"	"15470153"	"15312654"	"15044063"	"15014045"	"14970204"	"12951199"	"11399436"	"11278737"	"9581761"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CC2D1A"	"complex neurodevelopmental disorder"	"32514154"	"31872500"	"31721010"	"31633381"	"31632917"	"31574590"	"30992372"	"30732858"	"30500859"	"29552027"	"29101244"	"28564595"	"27914010"	"27811184"	"27769858"	"27782307"	"27150226"	"27123591"	"26966713"	"26826102"	"26782176"	"26720614"	"26294214"	"25804739"	"25299182"	"25093993"	"25066123"	"25036909"	"24963350"	"24946016"	"24936175"	"24040793"	"23826796"	"23045273"	"22833682"	"22419660"	"22406677"	"22375002"	"22328058"	"22258254"	"22023432"	"21619616"	"21273312"	"21189260"	"21155902"	"20529849"	"20392296"	"20171170"	"20026183"	"19948489"	"19647046"	"19423080"	"18662999"	"18452889"	"18446860"	"18387594"	"17718851"	"17714190"	"17535813"	"17394259"	"17149387"	"16987873"	"16033914"	"12917378"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"HOXA1"	"complex neurodevelopmental disorder"	"32761594"	"32561925"	"32514251"	"32497022"	"32364673"	"32324272"	"32284737"	"32163893"	"32084702"	"32038606"	"32021301"	"32013856"	"31950785"	"31934137"	"31853186"	"31699823"	"31691127"	"31584064"	"31507632"	"31426381"	"31325426"	"31283017"	"31210292"	"31204714"	"31186723"	"31147716"	"31138758"	"31114990"	"30896864"	"30892810"	"30783466"	"30737277"	"30731321"	"30643861"	"30641296"	"30628697"	"30596070"	"30567491"	"30376874"	"30320894"	"30259272"	"30196776"	"30168613"	"29693150"	"29662483"	"29658571"	"29484968"	"29471045"	"29465778"	"29423117"	"29353135"	"29228867"	"29164581"	"29154149"	"29137689"	"29137433"	"29110737"	"29050303"	"28982536"	"28893210"	"28784834"	"28733386"	"28671688"	"28657121"	"28584089"	"28540746"	"28481029"	"28380068"	"28280365"	"28228659"	"28189678"	"28033651"	"27992364"	"27980680"	"27956219"	"27807800"	"27693483"	"27658539"	"27684493"	"27408816"	"27401718"	"27382069"	"27296950"	"29615581"	"26864490"	"26820751"	"26820057"	"26791264"	"26707824"	"26484260"	"26462515"	"26447130"	"26417931"	"26284287"	"26135141"	"26080812"	"26035869"	"25988212"	"25912306"	"25773316"	"25691658"	"25347744"	"25337241"	"25263278"	"25252870"	"25173900"	"25164089"	"25151156"	"25148682"	"25106087"	"25069511"	"24902847"	"24878468"	"24865192"	"24821725"	"24789793"	"24612975"	"24586203"	"24559685"	"24498243"	"24475916"	"24449840"	"24382894"	"25927933"	"24312487"	"24138051"	"24103260"	"24086288"	"24040281"	"24034269"	"24022874"	"24001015"	"23952617"	"23924207"	"23723417"	"23696197"	"23669186"	"23666625"	"23638021"	"23534758"	"23435427"	"23373430"	"23321646"	"23222703"	"23088713"	"23064471"	"23051705"	"23029374"	"23018522"	"22990017"	"22962263"	"22950449"	"22864671"	"22777240"	"22693540"	"22548301"	"22498108"	"22446044"	"22407312"	"22359339"	"22037257"	"22020899"	"21980499"	"21957483"	"21940751"	"21934132"	"21784065"	"21731750"	"21674689"	"21624971"	"21618588"	"21527363"	"21510772"	"21497760"	"21494759"	"21433221"	"21385575"	"21120523"	"21087926"	"21054883"	"20969843"	"20836077"	"20678259"	"20624982"	"20339309"	"20336696"	"20231276"	"20227628"	"20171203"	"20130947"	"20130239"	"20075099"	"19776388"	"19763613"	"19598235"	"19578026"	"19462682"	"19389728"	"19144990"	"19131338"	"19115252"	"19091803"	"19018953"	"19018235"	"18773208"	"18512762"	"18482256"	"18412118"	"18394579"	"18276758"	"18241852"	"18180299"	"18158559"	"17967182"	"17878930"	"17875913"	"17875646"	"17855431"	"17663992"	"17550320"	"17525233"	"17502461"	"17294802"	"17213808"	"17197532"	"17171652"	"17167333"	"17131398"	"17113575"	"16989981"	"16890163"	"16597639"	"16549775"	"16533622"	"16528738"	"16525661"	"16492969"	"16373333"	"16168961"	"16155570"	"15930115"	"15756441"	"15722554"	"15654074"	"15623427"	"15581866"	"15551325"	"15496674"	"15465489"	"15367676"	"15302897"	"15008404"	"14960295"	"14681917"	"14522873"	"12908836"	"12893766"	"12888798"	"12824890"	"12748854"	"12702665"	"12548740"	"12482855"	"12414832"	"12412013"	"12238024"	"12210285"	"12106991"	"12060683"	"12027529"	"11973267"	"11894118"	"11840501"	"11599040"	"11532923"	"11528388"	"11493564"	"11466434"	"11278854"	"11237469"	"11091361"	"11070089"	"10942599"	"10725232"	"10672899"	"10662633"	"10529420"	"10529419"	"10448709"	"10410678"	"10200119"	"9869297"	"9806922"	"9789037"	"9733765"	"9731483"	"9507049"	"9582372"	"9463359"	"9463349"	"9450185"	"9438427"	"9242495"	"9218805"	"9187682"	"9079695"	"8670198"	"8700839"	"7488013"	"7851655"	"7521445"	"7906121"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"IQSEC2"	"complex neurodevelopmental disorder"	"32761587"	"32564198"	"32529990"	"31984645"	"31978606"	"31906484"	"31829726"	"31512412"	"31490346"	"31439632"	"31415821"	"31283072"	"31234416"	"30977854"	"30842726"	"30666632"	"30328660"	"30279470"	"30255931"	"30206421"	"30185235"	"30182498"	"29363391"	"29322350"	"29026562"	"28815955"	"28463240"	"28452394"	"28295038"	"28213671"	"27665735"	"27652284"	"27476654"	"27369185"	"27062609"	"27010919"	"27009485"	"26884337"	"26795593"	"26793055"	"26733290"	"26059843"	"25914188"	"25858702"	"25649377"	"25167861"	"24896178"	"24306141"	"23934111"	"23674175"	"22886754"	"21686261"	"20547133"	"20473311"	"19811534"	"19083995"	"18971342"	"21479374"	"17045249"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NLGN4X"	"complex neurodevelopmental disorder"	"32765930"	"32670353"	"32564284"	"32243781"	"32100075"	"32011705"	"31852540"	"31318073"	"31257103"	"31161682"	"31139237"	"29622757"	"29564645"	"29428674"	"29244827"	"29229842"	"29227830"	"29123130"	"28948087"	"28122887"	"27782075"	"27626693"	"26901793"	"26759715"	"26055424"	"25778475"	"25675530"	"25597866"	"25558953"	"24570023"	"24485798"	"24362370"	"24204716"	"23907288"	"23851596"	"23840625"	"23791652"	"23710042"	"23468870"	"23431752"	"23393157"	"23183221"	"23020841"	"22989184"	"22952857"	"22948383"	"22934180"	"22688012"	"22485144"	"21642956"	"21569590"	"21278334"	"20714171"	"20543817"	"20436377"	"20181440"	"20063411"	"19874940"	"19726642"	"19645625"	"19605777"	"19598235"	"19545860"	"19383602"	"19125102"	"18755801"	"18628683"	"18421986"	"18419324"	"18231125"	"18194880"	"18189281"	"17517138"	"17391250"	"17292328"	"17240846"	"16648374"	"16508939"	"16506138"	"16377159"	"16077734"	"15679194"	"15622415"	"15389766"	"15274046"	"15150161"	"14963808"	"14611661"	"12669065"	"11368788"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SMC1A"	"complex neurodevelopmental disorder"	"32687945"	"32648047"	"32532882"	"32476269"	"32337850"	"32336485"	"32321712"	"32256083"	"32253279"	"32222533"	"32219834"	"32193685"	"20301702"	"32059753"	"32024251"	"31905481"	"31896782"	"31803224"	"31704779"	"31648497"	"31620119"	"31516082"	"31465861"	"31425923"	"31337854"	"31334757"	"31185419"	"31157197"	"31098032"	"30977854"	"30948435"	"20301533"	"30823889"	"30806031"	"30630974"	"30614194"	"30606125"	"30515000"	"30447054"	"30295920"	"30246348"	"30242889"	"30158690"	"30125677"	"30098256"	"30098241"	"29988990"	"29910679"	"29860495"	"29764576"	"29507117"	"29452578"	"29279609"	"29261648"	"29155047"	"29084713"	"29037998"	"29023665"	"28954219"	"28895406"	"28868238"	"28781842"	"28752682"	"28679547"	"28677859"	"28629661"	"28607419"	"28588001"	"28548707"	"28507466"	"28487787"	"28425213"	"28368372"	"28296084"	"28166369"	"28152414"	"28116354"	"28102598"	"28087629"	"27858295"	"27826041"	"27667360"	"27576763"	"26752331"	"27731420"	"27543316"	"27405111"	"27208089"	"27207471"	"27164022"	"27159028"	"27125329"	"27023522"	"26886259"	"20301283"	"26725122"	"26673124"	"26671848"	"26663098"	"26637483"	"26605036"	"26581180"	"26560067"	"26463496"	"26438359"	"26386245"	"26358754"	"26354354"	"26206533"	"26164757"	"26059843"	"25893404"	"25884313"	"25655089"	"25652421"	"25649377"	"25591769"	"25574841"	"25447906"	"25209348"	"25196272"	"25125236"	"25080505"	"25075551"	"25038613"	"24918291"	"24874887"	"24856830"	"24806359"	"24756084"	"24710217"	"24699359"	"24658923"	"24589211"	"24461912"	"24403048"	"24352918"	"24335498"	"24252472"	"24136230"	"24124034"	"24121791"	"24038889"	"23955599"	"23863341"	"23754617"	"23704192"	"23683030"	"23638217"	"23551878"	"23505322"	"23426528"	"23313159"	"23158739"	"23106691"	"22969434"	"22965847"	"22932223"	"22885700"	"22857006"	"22633399"	"22581668"	"22353942"	"22241092"	"22140011"	"22106055"	"21707975"	"21637801"	"21272569"	"21165303"	"20727427"	"20687500"	"20635401"	"20583156"	"20514443"	"20460535"	"20448023"	"20358602"	"20331678"	"19876900"	"19842212"	"19793304"	"19723591"	"19701948"	"19468298"	"19309015"	"19052029"	"18996922"	"17939684"	"17640042"	"17273969"	"17221863"	"9649503"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"UPF3B"	"complex neurodevelopmental disorder"	"32667670"	"32174881"	"31956556"	"31737052"	"31496805"	"30644821"	"30455313"	"29768215"	"29626148"	"29564645"	"29528287"	"29334995"	"29333258"	"28948974"	"28935685"	"28899899"	"28866327"	"28444146"	"27911186"	"27475226"	"27040500"	"26740584"	"26492277"	"26358559"	"26060332"	"26012578"	"25956375"	"25649377"	"25220460"	"24360810"	"24315824"	"24271394"	"24204314"	"23962664"	"23925499"	"23821644"	"23788676"	"23638902"	"23506379"	"23376982"	"22957832"	"22609145"	"22363630"	"22203037"	"22182939"	"21862950"	"20479756"	"20479275"	"19503078"	"19474145"	"19238151"	"19215759"	"19091751"	"18256688"	"18066079"	"17704778"	"17363904"	"17194930"	"16601204"	"16452507"	"15734573"	"15625692"	"15004547"	"14770003"	"14752011"	"14625303"	"12718880"	"11546873"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"WDR45"	"complex neurodevelopmental disorder"	"32655987"	"32387008"	"32335071"	"32307390"	"32264724"	"32253879"	"32253874"	"32079455"	"31791873"	"31721365"	"31665836"	"31632858"	"23447832"	"31536831"	"31525124"	"31512412"	"31505688"	"31466010"	"31404774"	"31332960"	"31293896"	"31238825"	"31204559"	"30843302"	"30746416"	"30612247"	"30553463"	"30539914"	"30455156"	"30341275"	"30204590"	"30169597"	"30115852"	"29983692"	"29981852"	"29860786"	"29695595"	"29682453"	"29681108"	"29600274"	"29445477"	"29325618"	"29322350"	"29171013"	"29112993"	"29082105"	"29075622"	"28932395"	"28878728"	"28821231"	"28820312"	"28711740"	"28674986"	"28643035"	"20301334"	"28561066"	"28551038"	"28542792"	"28371320"	"28361255"	"28261264"	"28211668"	"27957548"	"27681470"	"27535217"	"27521716"	"27435640"	"27349085"	"27349079"	"27159028"	"27030146"	"26859818"	"26790960"	"26715604"	"26609730"	"26577041"	"26481852"	"26240209"	"26208877"	"26173968"	"26123052"	"26096995"	"26022463"	"26000824"	"25870938"	"25744623"	"30713886"	"25592411"	"25356899"	"25301227"	"25263061"	"25044655"	"24847269"	"24790802"	"24621584"	"24610255"	"24384561"	"24368176"	"24209435"	"24142851"	"23757263"	"23687123"	"23674487"	"23647500"	"23435086"	"23176820"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ACTA2"	"familial thoracic aortic aneurysm and aortic dissection"	"32759223"	"32750409"	"32749240"	"32733053"	"32728431"	"32720036"	"32708589"	"32703415"	"32698042"	"32678143"	"32667624"	"32656212"	"32630408"	"32599028"	"32595813"	"32592332"	"32579471"	"32564509"	"32554530"	"32544455"	"32540158"	"32528734"	"32516943"	"32512917"	"32509885"	"32508931"	"32496971"	"32494274"	"32483447"	"32464348"	"32452246"	"32449695"	"32428683"	"32418646"	"32395121"	"32382308"	"32377911"	"32327648"	"32266052"	"32244354"	"32209317"	"32203108"	"32201276"	"32173982"	"32170993"	"32159970"	"32156528"	"32146192"	"32135646"	"32134136"	"32133790"	"32093627"	"32092735"	"32084488"	"32083975"	"32081817"	"32078339"	"32064918"	"32042332"	"32035062"	"32023084"	"32015483"	"31999623"	"31982134"	"31973719"	"31971988"	"31953160"	"31937048"	"31935380"	"31934933"	"31932644"	"31931659"	"31913651"	"31911919"	"31911781"	"31904361"	"31887804"	"31881201"	"31879232"	"31866620"	"31860803"	"31852652"	"31837891"	"31828297"	"31825014"	"31815277"	"31813960"	"31812437"	"31810124"	"31805888"	"31779656"	"31772503"	"31761395"	"31760768"	"31753821"	"31752940"	"31747308"	"31743935"	"31739477"	"31737983"	"31736477"	"31731295"	"31707403"	"31699187"	"31684721"	"31683033"	"31675074"	"31672578"	"31669305"	"31661644"	"31638466"	"31638172"	"31619469"	"31608440"	"31607564"	"31595443"	"31593979"	"31568583"	"31563421"	"31560641"	"31554736"	"31553078"	"31539543"	"31536596"	"31529119"	"31523116"	"31520523"	"31487583"	"31485596"	"31481265"	"31476440"	"31476284"	"31475485"	"31467426"	"31462944"	"31461442"	"31461342"	"31449795"	"31448474"	"31441382"	"31439591"	"31435710"	"31422908"	"31415646"	"31408621"	"31407397"	"31403161"	"31378929"	"31373848"	"31373816"	"31372457"	"31364748"	"31364740"	"31358843"	"31352173"	"31351129"	"31340036"	"31337426"	"31337269"	"31337073"	"31334871"	"31326624"	"31323679"	"31322276"	"31300057"	"31290598"	"31289275"	"31288014"	"31287495"	"31286822"	"31283910"	"31272002"	"31270645"	"31268349"	"31263577"	"31234888"	"31226129"	"31216320"	"31207098"	"31199900"	"31196220"	"31191559"	"31182654"	"31179775"	"31177509"	"31170432"	"31167144"	"31166951"	"31166130"	"31165425"	"31147602"	"31139648"	"31131889"	"31113335"	"31101053"	"31097694"	"31091229"	"31090329"	"31085231"	"31078624"	"31078262"	"31074953"	"31072042"	"31071225"	"31049569"	"31045759"	"31029755"	"31028762"	"31022838"	"31021730"	"31017799"	"31014673"	"31000321"	"30997818"	"30993748"	"30975232"	"30961946"	"30954791"	"30953354"	"30947333"	"30946557"	"30942423"	"30941918"	"30941514"	"30927387"	"30925865"	"30918150"	"30916618"	"30910704"	"30909016"	"30908581"	"30905239"	"30899078"	"30896785"	"30891616"	"30884213"	"30879002"	"30878678"	"30875826"	"30873585"	"30871618"	"30864678"	"30858145"	"30840274"	"30831079"	"30817541"	"30816527"	"30792163"	"30790237"	"30786729"	"30783172"	"30779109"	"30776489"	"30771831"	"30763670"	"30762586"	"30760649"	"30744595"	"30737838"	"30729664"	"30727757"	"30720196"	"30720193"	"30718510"	"30713424"	"30707754"	"30700554"	"30691015"	"30690025"	"30683902"	"30681513"	"30678304"	"30674723"	"30665269"	"30664183"	"30660615"	"30659117"	"30654940"	"30649797"	"30640966"	"30636861"	"30635789"	"30629726"	"30622238"	"30618152"	"30593751"	"30590024"	"30584279"	"30584275"	"30578787"	"30570526"	"30570135"	"30561898"	"30555575"	"30554494"	"30553442"	"30551562"	"30543783"	"30541573"	"30524301"	"30523588"	"30537435"	"30536600"	"30535572"	"30535478"	"30533316"	"30529831"	"30526509"	"30521667"	"30512998"	"30500364"	"30482196"	"30482064"	"30471341"	"30466735"	"30462846"	"30461014"	"30454719"	"30452921"	"30448260"	"30419151"	"30414978"	"30413733"	"30413725"	"30411718"	"30402041"	"30387171"	"30383875"	"30381493"	"30380557"	"30378303"	"30377686"	"30373411"	"30365068"	"30361541"	"30357841"	"30354209"	"30341888"	"30336218"	"30325506"	"30325029"	"30322172"	"30320623"	"30311888"	"30308513"	"30308508"	"30304566"	"30303133"	"30301191"	"30300893"	"30297669"	"30289932"	"30282870"	"30278961"	"30274909"	"30270325"	"30269381"	"30267638"	"30265659"	"30262641"	"30260034"	"30257391"	"30242502"	"30233845"	"30232460"	"30213218"	"30207074"	"30196283"	"30193807"	"30179601"	"30177722"	"30167661"	"30165600"	"30161164"	"30153530"	"30152542"	"30144554"	"30135315"	"30127784"	"30127380"	"30120146"	"30112579"	"30107667"	"30099020"	"30097285"	"30095998"	"30091834"	"30089855"	"30083132"	"30081711"	"30079825"	"30063915"	"30063851"	"30057698"	"30056620"	"30056145"	"30053524"	"30047583"	"30046895"	"30043668"	"30025139"	"30025094"	"30016988"	"30009668"	"30006483"	"30001387"	"29996772"	"29996202"	"29987445"	"29986624"	"29983350"	"29976890"	"29973027"	"29970531"	"29965905"	"29961567"	"29946766"	"29944666"	"29931427"	"29925521"	"29921611"	"29921303"	"29910803"	"29901190"	"29893466"	"29893363"	"29886035"	"29875232"	"29873400"	"29860992"	"29860454"	"29852040"	"29849130"	"29847841"	"29846669"	"29845231"	"29803123"	"29802744"	"29789901"	"29787749"	"29776555"	"29771178"	"29769799"	"29767392"	"29761409"	"29749332"	"29739987"	"29739329"	"29738702"	"29730911"	"29725020"	"29724886"	"29717162"	"29701269"	"29700768"	"29698960"	"29695901"	"29687370"	"29684554"	"29678517"	"29677358"	"29676176"	"29674727"	"29669321"	"29666896"	"29642797"	"29636864"	"29636387"	"29621774"	"29617629"	"29615682"	"29602131"	"29595544"	"29591721"	"29589107"	"29578859"	"29575632"	"29571225"	"29570903"	"29561727"	"29555578"	"29548329"	"29544503"	"29540674"	"29534358"	"29532550"	"29510914"	"29500512"	"29500246"	"29498146"	"29497425"	"29497173"	"29482391"	"29480603"	"29467331"	"29464186"	"29462805"	"29458060"	"29452107"	"29439841"
+"COL3A1"	"familial thoracic aortic aneurysm and aortic dissection"	"32766145"	"32757451"	"32742441"	"32698527"	"32692893"	"32687633"	"32661296"	"32657816"	"32655343"	"32612640"	"32587790"	"32583473"	"32565857"	"32558993"	"32547322"	"32528734"	"32509452"	"32509446"	"32495720"	"32471395"	"32471168"	"32455542"	"32442967"	"32442117"	"32432496"	"32429691"	"32410640"	"32410187"	"32408253"	"32402085"	"32401038"	"32391563"	"32377911"	"32369195"	"32356618"	"32350561"	"32345111"	"32300359"	"32298871"	"32297577"	"32283808"	"32271873"	"32255255"	"32240281"	"32238524"	"32199657"	"32174912"	"32169720"	"32168427"	"32164044"	"32160132"	"32134136"	"32115322"	"32109348"	"32106772"	"32065054"	"32058995"	"32052303"	"32036217"	"32027093"	"32024893"	"31982134"	"31963366"	"31954614"	"31938688"	"31930553"	"31903687"	"31903434"	"31888563"	"31886582"	"31864349"	"31854470"	"31852652"	"31843019"	"31833208"	"31829272"	"31827231"	"31819605"	"31817085"	"31816136"	"31814889"	"31807268"	"31803738"	"31763130"	"31747308"	"31744537"	"31737623"	"31731750"	"31731384"	"31726690"	"31721901"	"31713298"	"31702037"	"31694982"	"31692087"	"31687002"	"31681866"	"31680308"	"31673870"	"31663982"	"31655293"	"31639302"	"31639107"	"31638362"	"31626959"	"31600821"	"31575845"	"31551777"	"31533654"	"31531849"	"31512314"	"31509849"	"31503536"	"31494240"	"31486138"	"31469511"	"31404429"	"31403161"	"31394546"	"31394236"	"31391389"	"31378986"	"31358843"	"31355395"	"31353273"	"31341891"	"31340036"	"31339471"	"31333451"	"31301074"	"31297506"	"31290598"	"31269075"	"31265984"	"31264215"	"31244775"	"31218921"	"31211624"	"31175931"	"31167482"	"31140624"	"31126764"	"31109699"	"31105713"	"31104065"	"31094033"	"31080229"	"31075413"	"31068302"	"31061921"	"31056650"	"31041498"	"31026365"	"31000321"	"30999999"	"30999998"	"30998131"	"30967276"	"30965127"	"30959909"	"30948703"	"30941059"	"30925865"	"30919682"	"20301533"	"30912652"	"30899415"	"30892233"	"30890563"	"30863729"	"30857637"	"30856218"	"30849310"	"30837697"	"30828485"	"30816527"	"30800594"	"30797944"	"30793832"	"30786351"	"30786240"	"30784215"	"20301667"	"30765281"	"30761531"	"30753235"	"30740043"	"30729664"	"30723390"	"30712551"	"30690843"	"30690019"	"30689556"	"30684169"	"30675029"	"30659895"	"30644274"	"30643084"	"30623691"	"30608617"	"30595771"	"30583585"	"30578652"	"30550979"	"30543962"	"30542454"	"30541349"	"30539301"	"30536131"	"30518744"	"30511828"	"30485117"	"30474650"	"30467802"	"30458613"	"30447270"	"30414837"	"30413733"	"30401638"	"30400792"	"30391304"	"30378537"	"30376405"	"30369577"	"30357907"	"30340835"	"30333910"	"30321755"	"30315190"	"30302742"	"30289203"	"30263735"	"30259903"	"30235356"	"30213581"	"30205387"	"30188966"	"30179877"	"30175151"	"30173393"	"30165600"	"30158381"	"30152522"	"30148477"	"30142790"	"30140760"	"30127380"	"30121816"	"30119186"	"30115950"	"30106131"	"30088984"	"30067098"	"30065754"	"30038250"	"30025171"	"30023361"	"30008884"	"29991677"	"29983350"	"29967488"	"29961398"	"29944666"	"29941001"	"29923060"	"29899023"	"29876372"	"29873012"	"29845076"	"29788081"	"29781507"	"29781361"	"29778910"	"29745881"	"29745261"	"29727591"	"29725758"	"29703175"	"29666462"	"29658663"	"29654654"	"29650765"	"29649412"	"29641603"	"29614203"	"29601813"	"29588876"	"29568955"	"29568878"	"29565632"	"29564513"	"29551664"	"29551535"	"29540674"	"29533760"	"29533249"	"29510914"	"29498185"	"29497425"	"29491489"	"29486470"	"29440967"	"29414824"	"29387633"	"29381997"	"29377229"	"29376591"	"29346445"	"29323927"	"29322079"	"29320421"	"29264811"	"29257298"	"29254204"	"29245949"	"29240779"	"20301299"	"29228930"	"29222527"	"29216800"	"29215729"	"29215718"	"29202575"	"29202574"	"29196456"	"29191827"	"29191093"	"29176935"	"29164668"	"29140729"	"29137289"	"29133875"	"29133362"	"29113120"	"29091295"	"29088800"	"29086084"	"29079188"	"29072034"	"29068597"	"29065066"	"29059221"	"29053586"	"29050841"	"29050298"	"29038440"	"29028628"	"28982941"	"28959037"	"28952134"	"28938412"	"28911071"	"28894971"	"28887547"	"28883003"	"28880739"	"28862361"	"28859141"	"28849219"	"28849124"	"28835616"	"28819366"	"28815679"	"28810065"	"28802097"	"28800626"	"28771574"	"28742248"	"28715254"	"28704418"	"28691479"	"28691476"	"28691475"	"28679671"	"28673338"	"28668298"	"28625011"	"28598390"	"28589291"	"28586069"	"28577867"	"28562334"	"31008308"	"28548630"	"28494009"	"28493523"	"28486835"	"28465479"	"28462460"	"28453726"	"28445938"	"28436683"	"28412025"	"28396516"	"28394528"	"28393518"	"28385812"	"28371122"	"30271842"	"28364044"	"28339064"	"28306228"	"28302172"	"28294324"	"28290548"	"28286204"	"28281307"	"28263294"	"28258187"	"28256709"	"28191466"	"28183226"	"28131740"	"28128526"	"28114878"	"28112175"	"28102592"	"28102489"	"28096061"	"28095798"	"28086769"	"28081775"	"28079129"	"28053285"	"28035354"	"28017695"	"27992511"	"27988350"	"27984337"	"27930352"	"27905661"	"27897224"	"27881410"	"27880964"	"27866191"	"27829645"	"27823969"	"27799058"	"27754873"	"27011056"	"27498063"	"27717618"	"27699222"	"27687326"	"27677963"	"27655637"	"27649757"	"27634012"	"27601089"	"27581786"	"27498142"	"27476968"	"27469572"	"27462043"	"27401218"	"27390605"	"27370800"	"27356888"	"27338483"	"27305096"	"27304678"	"27295357"	"27293936"	"27282780"	"27259332"	"27229674"	"27212026"	"27211863"	"27207585"	"27161868"	"27137489"	"27128408"	"27107823"	"27064336"	"27062839"	"27020811"	"27017522"	"26973819"	"26957638"	"26944031"	"26927240"	"26883980"	"26880698"	"26838935"	"26786786"	"26781753"	"26774799"	"26747300"	"26741506"	"26708423"	"26699651"	"26693246"	"26666608"	"26635199"	"26583585"	"26578346"	"26567319"	"26556046"	"26545722"	"26497932"
+"FBN1"	"familial thoracic aortic aneurysm and aortic dissection"	"32742441"	"32730638"	"32710294"	"32706399"	"32698686"	"32698527"	"32695142"	"32685406"	"32679894"	"32676886"	"32655337"	"32616814"	"32610324"	"32595417"	"32592413"	"32564789"	"32562828"	"32548624"	"32539154"	"32537370"	"32534992"	"32526736"	"32514132"	"32509863"	"32506879"	"32499652"	"32486169"	"32478364"	"32473302"	"32448605"	"32443863"	"32439165"	"32439107"	"32435408"	"32431097"	"32412676"	"32406602"	"32404357"	"32379818"	"32378446"	"32374345"	"32329225"	"32303188"	"32301522"	"32300792"	"32290605"	"32279186"	"32243769"	"32242911"	"32222606"	"32213296"	"32210272"	"32209317"	"32199657"	"32198975"	"32188418"	"32188275"	"32173378"	"32169720"	"32169113"	"32158563"	"32154576"	"32153505"	"32141660"	"32130919"	"32130918"	"32119940"	"32093575"	"32080995"	"32039915"	"32013110"	"31950671"	"31937892"	"31928435"	"31917007"	"31903434"	"31901832"	"31897128"	"31888563"	"31885334"	"31884007"	"31879971"	"31830381"	"31829751"	"31827250"	"31826007"	"31805661"	"31795342"	"31774634"	"31765226"	"31754721"	"31751304"	"31741853"	"31731384"	"31730815"	"31726086"	"31724332"	"31718389"	"31703137"	"31678158"	"31660457"	"31656420"	"31640988"	"31633195"	"31623859"	"31619469"	"31605817"	"31602702"	"31596965"	"31584241"	"31579915"	"31577280"	"31548410"	"31538843"	"31527767"	"31516831"	"31506931"	"31473210"	"31471346"	"31444835"	"31431065"	"31409059"	"31402541"	"31395654"	"31380173"	"31357961"	"31350823"	"31331942"	"31315432"	"31302158"	"31284709"	"31279664"	"31272746"	"31251835"	"31245936"	"31238364"	"31235381"	"31227806"	"31214495"	"31211626"	"31211624"	"31203888"	"31192527"	"31190185"	"31185693"	"31167969"	"31163209"	"31142417"	"31131229"	"31125616"	"31125551"	"31123721"	"31098894"	"31085586"	"31085310"	"31082985"	"31082946"	"31073986"	"31067675"	"31067073"	"31065451"	"31062257"	"31061752"	"31055806"	"31053375"	"31053350"	"31032993"	"31032262"	"31010590"	"31000321"	"30926607"	"30926475"	"20301533"	"30907792"	"30905418"	"30904162"	"30871839"	"30870686"	"30856218"	"30843221"	"30841707"	"30838813"	"30820290"	"30788104"	"30763214"	"30754709"	"30739908"	"30738849"	"30696577"	"30690919"	"30689556"	"30685343"	"30677223"	"30675029"	"30672637"	"30671474"	"30642872"	"30613281"	"30600741"	"30593690"	"30590134"	"30571378"	"30552983"	"30542390"	"30500337"	"30498907"	"30498857"	"30485715"	"30479897"	"30406200"	"30385411"	"30381873"	"30359839"	"30354333"	"30354332"	"30306735"	"30306291"	"20301776"	"30296619"	"30286810"	"30261963"	"30255099"	"30251206"	"30246778"	"30219651"	"30201140"	"30186855"	"30166242"	"30151001"	"30136843"	"30134586"	"30133128"	"30117112"	"30115950"	"30101859"	"30087447"	"30076464"	"30075927"	"30071607"	"30060141"	"30057829"	"30056620"	"30053442"	"30048161"	"30044367"	"30042881"	"30041021"	"30037098"	"30036726"	"30004239"	"30003093"	"29992200"	"29965905"	"31565646"	"29933080"	"29931197"	"29926163"	"29921611"	"29896744"	"29876507"	"29876033"	"29875127"	"29875124"	"29850472"	"29850152"	"29848616"	"29848614"	"29845260"	"29845076"	"29796325"	"29787394"	"29773725"	"29768367"	"29760442"	"29751740"	"29740513"	"29732924"	"29709492"	"29707410"	"29704879"	"29697102"	"29692799"	"29689281"	"29669734"	"29666143"	"29664544"	"29658877"	"29559302"	"29547877"	"29543232"	"29541693"	"29515038"	"29515022"	"29501612"	"29483877"	"29471108"	"29453284"	"29433109"	"29430308"	"29424882"	"29392152"	"29386281"	"29386270"	"29371244"	"29357934"	"29350460"	"29346494"	"29300219"	"29286095"	"29279011"	"29270372"	"29270370"	"29240586"	"20301299"	"29226593"	"29220879"	"29215599"	"29210860"	"29202575"	"29202574"	"29198452"	"29191498"	"29187826"	"29174139"	"29169988"	"29114001"	"29110304"	"29100092"	"29098407"	"29079640"	"29079346"	"29042385"	"20301510"	"28993736"	"28985825"	"28973303"	"28947563"	"28944857"	"28941062"	"28925368"	"28917829"	"28901506"	"28901407"	"28883797"	"28855619"	"28847661"	"28846673"	"28842177"	"28829846"	"28823387"	"28782645"	"28768908"	"28759179"	"28750552"	"28744027"	"28727149"	"28708846"	"28696036"	"28691476"	"28691475"	"28690007"	"28684781"	"28679133"	"28669633"	"28666770"	"28650953"	"28642162"	"28636274"	"28619995"	"28596305"	"28588436"	"28582847"	"28562334"	"31008308"	"28539832"	"28539414"	"28490606"	"28485217"	"28483459"	"28468757"	"28455451"	"28442527"	"28395027"	"28395026"	"28387797"	"28385916"	"28383843"	"28347539"	"28336264"	"28331219"	"28325852"	"28321935"	"28277377"	"29939511"	"28240702"	"28176809"	"28168077"	"28157248"	"28125844"	"28119285"	"28117189"	"28116317"	"28112175"	"28111381"	"28098115"	"28085506"	"28071719"	"28069701"	"28067899"	"28050602"	"28050285"	"28027854"	"28017695"	"28000152"	"27956365"	"27935852"	"27918018"	"27914124"	"27906200"	"30310455"	"27893734"	"27892729"	"27884935"	"27879251"	"27834076"	"27826344"	"27824871"	"27812333"	"27256450"	"27798118"	"27011056"	"27788826"	"27779234"	"27558095"	"26902431"	"27739187"	"27724990"	"27704402"	"27679847"	"27662508"	"27647783"	"27634926"	"27623942"	"27615407"	"27611364"	"27604583"	"27594365"	"27582083"	"27570569"	"27569546"	"27535662"	"27522124"	"27508231"	"27487789"	"27455822"	"27455564"	"27437668"	"27418160"	"27414521"	"27386756"	"27385600"	"27382322"	"27375798"	"27353645"	"27353104"	"27349864"	"27339457"	"27297501"	"27297344"	"27283746"	"27274304"	"27265258"	"27245183"	"27234404"	"27229674"	"27222596"	"27188772"	"27181406"	"27181042"	"27175573"	"27160103"	"27156795"	"27148888"	"27138491"	"27133060"	"27112580"	"27099264"	"27090893"	"27085269"	"27074716"	"27068007"	"27064823"	"27059954"	"27037046"	"27026396"	"27022329"	"27020472"	"27003297"	"26987927"	"26982174"
+"LOX"	"familial thoracic aortic aneurysm and aortic dissection"	"32767810"	"32767762"	"32767144"	"32764607"	"32760877"	"32754259"	"32749051"	"32745914"	"32745470"	"32744444"	"32738990"	"32738530"	"32738413"	"32735618"	"32732956"	"32732043"	"32730332"	"32726328"	"32725973"	"32725144"	"32722637"	"32721427"	"32721046"	"32720917"	"32718061"	"32717457"	"32714735"	"32714030"	"32709995"	"32709129"	"32708046"	"32707371"	"32705778"	"32705647"	"32703742"	"32698072"	"32696514"	"32694752"	"32693113"	"32691408"	"32686768"	"32673955"	"32671628"	"32670308"	"32667842"	"32667711"	"32666339"	"32666307"	"32665242"	"32664550"	"32659532"	"32657158"	"32656897"	"32655661"	"32650359"	"32649012"	"32647211"	"32640357"	"32637696"	"32637344"	"32632664"	"32630680"	"32630448"	"32623640"	"32620987"	"32615041"	"32606775"	"32606742"	"32601404"	"32601160"	"32598308"	"32586890"	"32586748"	"32583881"	"32580781"	"32580015"	"32578359"	"32574737"	"32572258"	"32570942"	"32569653"	"32568428"	"32566496"	"32565872"	"32562348"	"32561569"	"32561416"	"32559840"	"32554280"	"32552129"	"32547422"	"32545552"	"32539133"	"32537166"	"32536990"	"32535236"	"32531998"	"32527725"	"32523589"	"32523587"	"32517017"	"32513661"	"32510512"	"32510239"	"32506441"	"32506019"	"32501643"	"32493990"	"32488442"	"32487223"	"32485807"	"32485532"	"32484771"	"32483895"	"32483283"	"32476145"	"32475301"	"32468600"	"32466371"	"32457454"	"32454418"	"32447486"	"32446381"	"32440336"	"32439824"	"32439756"	"32439403"	"32437892"	"32436242"	"32429321"	"32426343"	"32424143"	"32420216"	"32420151"	"32419185"	"32418105"	"32418004"	"32417423"	"32415208"	"32410835"	"32408253"	"32404334"	"32399789"	"32398045"	"32397936"	"32396399"	"32395370"	"32394286"	"32393899"	"32380176"	"32375513"	"32375510"	"32372536"	"32361295"	"32359406"	"32359377"	"32358726"	"32357181"	"32355726"	"32353683"	"32353428"	"32352878"	"32349389"	"32348134"	"32340234"	"32340032"	"32339697"	"32337929"	"32335775"	"32335319"	"32334147"	"32333927"	"32332761"	"32330842"	"32330470"	"32330090"	"32325897"	"32325218"	"32324389"	"32322576"	"32321307"	"32317684"	"32313135"	"32308947"	"32308114"	"32306507"	"32304030"	"32301120"	"32295848"	"32295449"	"32291084"	"32289375"	"32286443"	"32285164"	"32283795"	"32283655"	"32279533"	"32277856"	"32277394"	"32272219"	"32270195"	"32269313"	"32267917"	"32256344"	"32255940"	"32246022"	"32245241"	"32245104"	"32244787"	"32240472"	"32235836"	"32230737"	"32229703"	"32229394"	"32229310"	"32222222"	"32220788"	"32216479"	"32210087"	"32205193"	"32199657"	"32192197"	"32182251"	"32181929"	"32181533"	"32180194"	"32179592"	"32179167"	"32176358"	"32174113"	"32173266"	"32172019"	"32171526"	"32165315"	"32165300"	"32162383"	"32161117"	"32160377"	"32160082"	"32159396"	"32153408"	"32152498"	"32148525"	"32146774"	"32145333"	"32141358"	"32140621"	"32135476"	"32133013"	"32131490"	"32127262"	"32121518"	"32117320"	"32115603"	"32115533"	"32110989"	"32108440"	"32105380"	"32102903"	"32101585"	"32101051"	"32098310"	"32097723"	"32091078"	"32086052"	"32084555"	"32082318"	"32081270"	"32081107"	"32080625"	"32079584"	"32079295"	"32076878"	"32075627"	"32073762"	"32072766"	"32068019"	"32065346"	"32062231"	"32061774"	"32052201"	"32046347"	"32041263"	"32039054"	"32037520"	"32037406"	"32035220"	"32034919"	"32033750"	"32033119"	"32032565"	"32031284"	"32031205"	"32029051"	"32028608"	"32027825"	"32018096"	"32014666"	"32013938"	"32003295"	"31999581"	"31998315"	"31997266"	"31996151"	"31992125"	"31991371"	"31988184"	"31982653"	"31974758"	"31972323"	"31970862"	"31968554"	"31968243"	"31967154"	"31963814"	"31960849"	"31954703"	"31954358"	"31953345"	"31953016"	"31945611"	"31945610"	"31943892"	"31942005"	"31938688"	"31936619"	"31936068"	"31932725"	"31932435"	"31929782"	"31928155"	"31927047"	"31926445"	"31923770"	"31923421"	"31922200"	"31921932"	"31921422"	"31918007"	"31916038"	"31915249"	"31914628"	"31906302"	"31903039"	"31902328"	"31901755"	"31891119"	"31889962"	"31885819"	"31884604"	"31883280"	"31879145"	"31871275"	"31870772"	"31868584"	"31866203"	"31862568"	"31858317"	"31857666"	"31852645"	"31852304"	"31848941"	"31848380"	"31845734"	"31830613"	"31826971"	"31825530"	"31817447"	"31817132"	"31816887"	"31816866"	"31815869"	"31815868"	"31814871"	"31811954"	"31810247"	"31807813"	"31799746"	"31796842"	"31791682"	"31786789"	"31786263"	"31785932"	"31784904"	"31782803"	"31782770"	"31782268"	"31782102"	"31782085"	"31781614"	"31781348"	"31781340"	"31781107"	"31780924"	"31780644"	"31778792"	"31777578"	"31776202"	"31775504"	"31774676"	"31772203"	"31771811"	"31771302"	"31771143"	"31770100"	"31766500"	"31766371"	"31766252"	"31765890"	"31759949"	"31758651"	"31757126"	"31754702"	"31751569"	"31748269"	"31747801"	"31747560"	"31746997"	"31746956"	"31743080"	"31742330"	"31740068"	"31737217"	"31737129"	"31736474"	"31734274"	"31733149"	"31727771"	"31726157"	"31725165"	"31724452"	"31724029"	"31721164"	"31717983"	"31715329"	"31711318"	"31708514"	"31706994"	"31704612"	"31704449"	"31704071"	"31701355"	"31695594"	"31695128"	"31693357"	"31692128"	"31687648"	"31686119"	"31683761"	"31678002"	"31677858"	"31676554"	"31676437"	"31673799"	"31671724"	"31663148"	"31659693"	"31655342"	"31655030"	"31652848"	"31638769"	"31637674"	"31636853"	"31633813"	"31629028"	"31628161"	"31626762"	"31624938"	"31622213"	"31621035"	"31620227"	"31618648"	"31615160"	"31614846"	"31614631"	"31610501"	"31608893"	"31608230"	"31602241"	"31599475"	"31597271"	"31597217"	"31595002"	"31593304"	"31592162"	"31591878"	"31590002"	"31586707"	"31586241"	"31585857"	"31584876"	"31581525"	"31580478"	"31580073"	"31577938"	"31575632"	"31575545"	"31574567"	"31571988"	"31570208"
+"MYH11"	"familial thoracic aortic aneurysm and aortic dissection"	"32765768"	"32716244"	"32674599"	"32670797"	"32669171"	"32652328"	"32645861"	"32621347"	"32612287"	"32588434"	"32579287"	"32578852"	"32565759"	"32558494"	"32552938"	"32552931"	"32544910"	"32540158"	"32523550"	"32492002"	"32483447"	"32419364"	"32382337"	"32342520"	"32325687"	"32266052"	"32251556"	"32223488"	"32220188"	"32216529"	"32202250"	"32175599"	"32141441"	"32101640"	"32093575"	"32092139"	"32081817"	"32075558"	"32039481"	"32037394"	"32009983"	"31944481"	"31916526"	"31899799"	"31896782"	"31896684"	"31867792"	"31857114"	"31848803"	"31826231"	"31817911"	"31794114"	"31721036"	"31682178"	"31671434"	"31634459"	"31624376"	"31612466"	"31612017"	"31538843"	"31475485"	"31473177"	"31462596"	"31461342"	"31427716"	"31399807"	"31389005"	"31372457"	"31353165"	"31302905"	"31281149"	"31238169"	"31175367"	"31127628"	"31096851"	"31080110"	"31044419"	"31028135"	"31024045"	"31000321"	"30951965"	"30936892"	"30919505"	"30885847"	"30850577"	"30814500"	"30814129"	"30809981"	"30807606"	"30786729"	"30779109"	"30778372"	"30742053"	"30728457"	"30727757"	"30701458"	"30689881"	"30675029"	"30674723"	"30610052"	"30568597"	"30529831"	"30526509"	"30513352"	"30442503"	"30414978"	"30409839"	"30392698"	"30350466"	"30287593"	"30277115"	"30237576"	"30159599"	"30152522"	"30089722"	"30063915"	"30006258"	"30004237"	"29991054"	"29969368"	"29961567"	"29958106"	"29937999"	"29932212"	"29932067"	"29927717"	"29921611"	"29781137"	"29755956"	"29735159"	"29700293"	"29575632"	"29564513"	"29562638"	"29545943"	"29544503"	"29532520"	"29517504"	"29510914"	"29494672"	"29491461"	"31938203"	"29453416"	"29427994"	"29359814"	"29279317"	"29263223"	"20301299"	"29205098"	"29151902"	"29115560"	"29105243"	"29067751"	"29052298"	"29018080"	"28966119"	"28906004"	"28893210"	"28883285"	"28855619"	"28845554"	"28840298"	"28819283"	"28819266"	"28742206"	"28735486"	"28602422"	"28597942"	"28579854"	"28567073"	"31008308"	"28476193"	"28475434"	"28469501"	"28454334"	"28433851"	"28375434"	"28360226"	"28356754"	"28299661"	"28299658"	"28277377"	"28253536"	"28125268"	"28116732"	"28093616"	"28089879"	"28074631"	"28060852"	"28039430"	"28036337"	"28030795"	"28012646"	"27995148"	"27983984"	"27879251"	"27843138"	"27809638"	"27798625"	"30695313"	"27739498"	"27699008"	"27694926"	"27650511"	"27647783"	"27632978"	"27542261"	"27512765"	"27481187"	"27468869"	"27460049"	"27443289"	"27441657"	"27431987"	"27418595"	"27400753"	"27394642"	"27384857"	"27375798"	"27367753"	"27298396"	"27297344"	"27195907"	"27140599"	"27113180"	"27044112"	"27022003"	"26980726"	"26893369"	"26891877"	"26874281"	"26857228"	"26796361"	"26724508"	"26673782"	"26586213"	"26484088"	"26449751"	"26446364"	"26424044"	"26387788"	"26381327"	"26333219"	"26299742"	"26257212"	"26198945"	"26188975"	"26135632"	"26079545"	"26056961"	"26031527"	"26017485"	"25994172"	"25985364"	"25972330"	"25921371"	"25829166"	"25804769"	"25786458"	"25776230"	"25742748"	"25732229"	"25678665"	"25678644"	"25652651"	"25635758"	"25612891"	"25578962"	"25552680"	"27081537"	"25480496"	"25458460"	"25433566"	"25407000"	"25348871"	"25309723"	"25266220"	"25227818"	"25181625"	"25179549"	"25120702"	"25117064"	"25113270"	"25111512"	"25104961"	"25082229"	"25079347"	"25046559"	"24972931"	"24921172"	"24904090"	"24894773"	"24844781"	"24842835"	"24744906"	"24742597"	"24724063"	"24711452"	"24709624"	"24705888"	"24648201"	"24615040"	"24602735"	"24602728"	"24598642"	"24527386"	"24487413"	"24464319"	"24452154"	"24407606"	"24342433"	"24316094"	"24284977"	"24225182"	"24193004"	"24169824"	"24077167"	"24021551"	"24002588"	"23977594"	"23906250"	"23878140"	"23696586"	"23672350"	"23646898"	"23637818"	"23636907"	"23628021"	"23545158"	"23413143"	"23358744"	"23319608"	"23314172"	"23276923"	"23257420"	"23236551"	"23193409"	"23160462"	"23158736"	"23152542"	"23142374"	"23130347"	"23115274"	"23114127"	"23114122"	"23106290"	"23099432"	"23091311"	"23071479"	"23066397"	"23054652"	"23054644"	"23053179"	"31803284"	"22976277"	"22968129"	"22965955"	"22952097"	"22915647"	"22912405"	"22886961"	"22875911"	"22871474"	"22811791"	"22511748"	"22499053"	"22415348"	"22414880"	"22252507"	"22239539"	"22228403"	"22213860"	"22207733"	"22196957"	"22161107"	"22160378"	"22145956"	"22133722"	"22040962"	"22032582"	"22001912"	"21937134"	"21890196"	"21881046"	"21765001"	"21764696"	"21763633"	"21729596"	"21729552"	"21701158"	"21698135"	"21638933"	"21638519"	"21537931"	"21494256"	"21389317"	"21354057"	"21344764"	"21316759"	"21296419"	"21281226"	"21275954"	"21263445"	"21255400"	"21198299"	"21157900"	"21139803"	"21123134"	"21060993"	"21051318"	"20931398"	"20808941"	"20797428"	"20625143"	"20625124"	"20591105"	"20589720"	"20513535"	"20508610"	"20421454"	"20388510"	"20190033"	"20164853"	"20155481"	"20133451"	"20089806"	"20072148"	"20060365"	"20007544"	"19959801"	"19957378"	"19930410"	"19901261"	"19702077"	"19698227"	"19638550"	"19609938"	"19526763"	"19491417"	"19466970"	"19463768"	"19445675"	"19427034"	"19215983"	"19215788"	"19179305"	"18972364"	"18941465"	"18832181"	"18798114"	"18796164"	"18784827"	"18729018"	"18719738"	"18716291"	"18665825"	"18663147"	"18648004"	"18617061"	"18604246"	"18560354"	"18544034"	"18445043"	"18422993"	"18391202"	"18328953"	"18324966"	"18297529"	"18206229"	"20306685"	"18072623"	"18033817"	"18024381"	"17994018"	"17987806"	"17981221"	"17981216"	"17956658"	"17950328"	"17940206"	"17927867"	"17867297"	"17704147"	"17688368"	"17666750"	"17666408"	"17571080"	"17525718"	"17459201"	"17452259"	"17287858"	"17251199"	"17194660"	"17185462"	"17182941"	"17145866"	"17063086"	"17052753"	"16989659"	"16888896"
+"MYLK"	"familial thoracic aortic aneurysm and aortic dissection"	"32765768"	"32753964"	"32657779"	"32655646"	"32621347"	"32579471"	"32547947"	"32547198"	"32525816"	"32495861"	"32483447"	"32467814"	"32457456"	"32398965"	"32354190"	"32342645"	"32174961"	"32036075"	"32010618"	"31904282"	"31848803"	"31795319"	"31742692"	"31619469"	"31427716"	"31427478"	"31413665"	"31393948"	"31389005"	"31280665"	"31222274"	"31212116"	"31124185"	"31000321"	"30989713"	"30984245"	"30880890"	"30737779"	"30711488"	"30708219"	"30680929"	"30677223"	"30632265"	"30459475"	"30309964"	"30242101"	"30161129"	"30056620"	"29961567"	"29955616"	"29925964"	"29907982"	"29902475"	"29901087"	"29855744"	"29798970"	"29781137"	"29714632"	"29565464"	"29544503"	"29540101"	"29510914"	"29494672"	"29480069"	"29453416"	"20301299"	"29077485"	"28893210"	"28855619"	"28687357"	"28602422"	"28596238"	"31008308"	"28401540"	"28356754"	"28260490"	"28078471"	"28013338"	"27956182"	"27884156"	"27879251"	"27699008"	"27662660"	"27647783"	"27586135"	"27543902"	"27536156"	"27529643"	"27486376"	"27466897"	"27390016"	"27363013"	"27297344"	"27275925"	"27220576"	"26886866"	"26854089"	"26724508"	"26697178"	"26586960"	"26473437"	"26446364"	"26334100"	"26188975"	"26147384"	"26111161"	"26064459"	"26026094"	"26025125"	"26017485"	"25907466"	"25828392"	"25637593"	"25538045"	"25271083"	"25205595"	"25181625"	"25179839"	"25104961"	"25046559"	"25032727"	"24962627"	"24889065"	"24836907"	"24615040"	"24522189"	"24486510"	"24465776"	"24428690"	"23977594"	"23590835"	"23543093"	"23534773"	"23492194"	"23276923"	"23045603"	"22759382"	"22621687"	"22377736"	"22260702"	"22155728"	"22015949"	"21937134"	"21918590"	"21441351"	"21346779"	"21055718"	"20544419"	"20459395"	"20375339"	"20198325"	"20139351"	"20081554"	"19901961"	"19706030"	"19277499"	"19055846"	"18828194"	"18622744"	"18613964"	"18587400"	"18521921"	"18496125"	"17989521"	"17574631"	"17472811"	"17357071"	"17266121"	"17131826"	"16448786"	"16407417"	"16399953"	"15878888"	"15448151"	"15335161"	"12356866"	"11528129"	"11472067"	"11306802"	"11212349"	"10536370"	"10198165"	"10036190"	"1284247"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PRKG1"	"familial thoracic aortic aneurysm and aortic dissection"	"32738676"	"32591971"	"32558266"	"32506052"	"32256100"	"32249994"	"32199657"	"32096871"	"31837447"	"31788859"	"31773868"	"31423931"	"31387997"	"31337685"	"31337684"	"31269900"	"31211624"	"31196969"	"31186362"	"31170227"	"31057674"	"31000321"	"30871887"	"30782798"	"30577811"	"30519864"	"30458339"	"30415903"	"30413285"	"30402224"	"30376604"	"30333851"	"30327468"	"30206298"	"30195474"	"30181659"	"30104414"	"30087447"	"30008065"	"30001348"	"29921611"	"29907982"	"29660387"	"29510914"	"20301299"	"29182730"	"29054855"	"28827895"	"28705804"	"28671246"	"28472114"	"28446801"	"28379353"	"28363452"	"28265120"	"28183280"	"28062507"	"27915366"	"27879251"	"26527422"	"27564115"	"27442293"	"27297344"	"26951977"	"26865845"	"26724508"	"26689674"	"26551667"	"26188975"	"26178595"	"26132214"	"26114229"	"25948820"	"25938783"	"25858613"	"25447536"	"25338677"	"25327614"	"25273530"	"25271401"	"25128522"	"24925903"	"24872318"	"24858810"	"24847810"	"24717670"	"24613686"	"24573388"	"24478790"	"24327950"	"24317514"	"24077433"	"24060898"	"24060892"	"24058735"	"23922650"	"23910461"	"23894150"	"23885018"	"23831687"	"23814119"	"23795919"	"23770744"	"23760283"	"23709024"	"23612967"	"23535651"	"23454089"	"23413145"	"23139294"	"22685118"	"22678782"	"22632818"	"22580283"	"22503686"	"22466633"	"22429315"	"22427743"	"22293199"	"22270721"	"22253479"	"22245782"	"22234696"	"22229392"	"22101188"	"22095901"	"21592084"	"21573014"	"21526164"	"21511885"	"21464444"	"21421555"	"21402151"	"21382339"	"21328456"	"21235737"	"21217645"	"21160032"	"21104053"	"21097501"	"20978093"	"20965947"	"20830292"	"20732627"	"20646410"	"20626033"	"20498039"	"20463352"	"20456015"	"20453163"	"20406699"	"20390293"	"20371672"	"20212138"	"20188738"	"20182759"	"20171263"	"20080989"	"20068229"	"20060325"	"20043968"	"20023176"	"20018259"	"20006992"	"19955367"	"19721870"	"19656393"	"19359370"	"19193882"	"19168131"	"19156199"	"19127022"	"19109502"	"19089330"	"19089329"	"18716216"	"18565841"	"18450968"	"18448676"	"18443297"	"18420996"	"18256252"	"18194177"	"18040024"	"17901360"	"17717153"	"17601797"	"17320767"	"17105400"	"16943189"	"16596286"	"16430226"	"16407222"	"16369548"	"16291726"	"16210344"	"16166241"	"16154279"	"16154207"	"16131665"	"15917860"	"15810652"	"15769627"	"15769624"	"15741164"	"15711749"	"15710621"	"15692588"	"15564589"	"15505114"	"15388327"	"15218537"	"15051728"	"14960318"	"14679200"	"14609817"	"14608379"	"14568994"	"12933804"	"12853418"	"12682639"	"12642365"	"12622406"	"12609995"	"12604588"	"12591946"	"12480535"	"12176727"	"12119292"	"12093798"	"12054676"	"12039797"	"11909828"	"11889009"	"11884382"	"11884369"	"11834729"	"11799084"	"11073964"	"10671526"	"10648836"	"10593861"	"10567269"	"10092632"	"9811452"	"9801170"	"9788971"	"9763453"	"9696419"	"9401778"	"9271402"	"9284961"	"9192852"	"7803796"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SMAD3"	"familial thoracic aortic aneurysm and aortic dissection"	"32768522"	"32767312"	"32766795"	"32766716"	"32764960"	"32764617"	"32764116"	"32754616"	"32754303"	"32753468"	"32747424"	"32745796"	"32745479"	"32742397"	"32739209"	"32738967"	"32737415"	"32737199"	"32736236"	"32733385"	"32729338"	"32729205"	"32727646"	"32725121"	"32724452"	"32724322"	"32718261"	"32716502"	"32714415"	"32712053"	"32710151"	"32705273"	"32705209"	"32701510"	"32701410"	"32698743"	"32696743"	"32696548"	"32691853"	"32681694"	"32681069"	"32678475"	"32674056"	"32673649"	"32668597"	"32660551"	"32659645"	"32655666"	"32645459"	"32642776"	"32631115"	"32622875"	"32620760"	"32615834"	"32615723"	"32606855"	"32602585"	"32597575"	"32590154"	"32585195"	"32583562"	"32581643"	"32577156"	"32576959"	"32573944"	"32567428"	"32565961"	"32563195"	"32558993"	"32558840"	"32555189"	"32554250"	"32553981"	"32550106"	"32547719"	"32545415"	"32536130"	"32534005"	"32532597"	"32530126"	"32528524"	"32526690"	"32524577"	"32521934"	"32519817"	"32517078"	"32515734"	"32515466"	"32513244"	"32512009"	"32511988"	"32509885"	"32509575"	"32509163"	"32505409"	"32496870"	"32484997"	"32484032"	"32483604"	"32479885"	"32477135"	"32475187"	"32474680"	"32473749"	"32471991"	"32471889"	"32468059"	"32468010"	"32464304"	"32462952"	"32462795"	"32460034"	"32457763"	"32457348"	"32454854"	"32451154"	"32448395"	"32447720"	"32445696"	"32442521"	"32441195"	"32439968"	"32434501"	"32430801"	"32429724"	"32424654"	"32424142"	"32420596"	"32420374"	"32420128"	"32415932"	"32415922"	"32413000"	"32412349"	"32410838"	"32410637"	"32409577"	"32406200"	"32404156"	"32404006"	"32403042"	"32401642"	"32398665"	"32398108"	"32396235"	"32387835"	"32386317"	"32382986"	"32382678"	"32382291"	"32380777"	"32377724"	"32375588"	"32374674"	"32373944"	"32373157"	"32373112"	"32372060"	"32371398"	"32368301"	"32364525"	"32358062"	"32348836"	"32348214"	"32342520"	"32341751"	"32339686"	"32334267"	"32330605"	"32329821"	"32329515"	"32329446"	"32329342"	"32325772"	"32323729"	"32323728"	"32316683"	"32312940"	"32309136"	"32306814"	"32305562"	"32305052"	"32304339"	"32302971"	"32300104"	"32294507"	"32289153"	"32286492"	"32281211"	"32278740"	"32278131"	"32274619"	"32273946"	"32273698"	"32269730"	"32268330"	"32265437"	"32258028"	"32256767"	"32252341"	"32248516"	"32245505"	"32242389"	"32241049"	"32240036"	"32239469"	"32235836"	"32232430"	"32229687"	"32227630"	"32220183"	"32218827"	"32214328"	"32210801"	"32210722"	"32209358"	"32209317"	"32209093"	"32208166"	"32205703"	"32204019"	"32200666"	"32199657"	"32195190"	"32194898"	"32194897"	"32193876"	"32193805"	"32192334"	"32191302"	"32186102"	"32181328"	"32179201"	"32179057"	"32176281"	"32174912"	"32173520"	"32171946"	"32171159"	"32170115"	"32169420"	"32167224"	"32165595"	"32161007"	"32160611"	"32154675"	"32154622"	"32146765"	"32143707"	"32143149"	"32143140"	"32143002"	"32141990"	"32140069"	"32138807"	"32130571"	"32127355"	"32123069"	"32122971"	"32120837"	"32120789"	"32120244"	"32119163"	"32112551"	"32104253"	"32103990"	"32102588"	"32100971"	"32100557"	"32100373"	"32099461"	"32090004"	"32084275"	"32083764"	"32083406"	"32083281"	"32082074"	"32078339"	"32075634"	"32075111"	"32074471"	"32070750"	"32070329"	"32067333"	"32067273"	"32065213"	"32064783"	"32063363"	"32060941"	"32060133"	"32057179"	"32046395"	"32043194"	"32034833"	"32034483"	"32034145"	"32033454"	"32031067"	"32029901"	"32028632"	"32028239"	"32024811"	"32022471"	"32019579"	"32017059"	"32016832"	"32015948"	"32014085"	"32009132"	"32005755"	"32004931"	"32003022"	"31996896"	"31995604"	"31991602"	"31990347"	"31988531"	"31982478"	"31982134"	"31981700"	"31974596"	"31974451"	"31970414"	"31968599"	"31968593"	"31966076"	"31966049"	"31965901"	"31963327"	"31961707"	"31960436"	"31959851"	"31958563"	"31957851"	"31957496"	"31956372"	"31953678"	"31952158"	"31951824"	"31949646"	"31947892"	"31940650"	"31940455"	"31934700"	"31934078"	"31934007"	"31933761"	"31933745"	"31931056"	"31929822"	"31925944"	"31925912"	"31924815"	"31922310"	"31922214"	"31921861"	"31919041"	"31918276"	"31917288"	"31916354"	"31915683"	"31915033"	"31914241"	"31913757"	"31912402"	"31909517"	"31907106"	"31906574"	"31905700"	"31903610"	"31901549"	"31900718"	"31900142"	"31898747"	"31897223"	"31897108"	"31895025"	"31894325"	"31894278"	"31890882"	"31889146"	"31884830"	"31883057"	"31872664"	"31871548"	"31870970"	"31866424"	"31863152"	"31860681"	"31853272"	"31851703"	"31850705"	"31847284"	"31845233"	"31840939"	"31838448"	"31835434"	"31831259"	"31830578"	"31830521"	"31830330"	"31830002"	"31828431"	"31826541"	"31824322"	"31820448"	"31820314"	"31819495"	"31817656"	"31815758"	"31815360"	"31813251"	"31812978"	"31807020"	"31804973"	"31803053"	"31801904"	"31798766"	"31797699"	"31795342"	"31792183"	"31788114"	"31786538"	"31784499"	"31781338"	"31776823"	"31775746"	"31773685"	"31770533"	"31770531"	"31767206"	"31765226"	"31758498"	"31757421"	"31754396"	"31754093"	"31752524"	"31750301"	"31746425"	"31746374"	"31744885"	"31743832"	"31741798"	"31739636"	"31739210"	"31737983"	"31734275"	"31732152"	"31729763"	"31729097"	"31727005"	"31726466"	"31724223"	"31723084"	"31722981"	"31706104"	"31704616"	"31704583"	"31701692"	"31701078"	"31700876"	"31700227"	"31699535"	"31699102"	"31697569"	"31696462"	"31694906"	"31692088"	"31687039"	"31686852"	"31683712"	"31682174"	"31680453"	"31678285"	"31677501"	"31672283"	"31671330"	"31666990"	"31666455"	"31659758"	"31655498"	"31655195"	"31654062"	"31648019"	"31646446"	"31641227"	"31638299"	"31638256"	"31637903"	"31637729"	"31634180"	"31632347"	"31629025"	"31628824"	"31626843"	"31626590"	"31623832"	"31618621"	"31617643"	"31614206"
+"TGFB2"	"familial thoracic aortic aneurysm and aortic dissection"	"32756778"	"32742346"	"32724857"	"32717675"	"32711556"	"32678313"	"32670280"	"32667999"	"32661705"	"32649964"	"32645861"	"32640500"	"32633666"	"32631954"	"32616651"	"32605311"	"32599899"	"32589498"	"32585971"	"32579557"	"32577156"	"32567373"	"32552228"	"32542822"	"32528524"	"32490016"	"32489816"	"32462795"	"32455102"	"32439508"	"32438640"	"32421147"	"32420462"	"32420214"	"32418693"	"32417373"	"32399402"	"32394868"	"32388013"	"32380777"	"32365878"	"32359980"	"32357159"	"32356563"	"32351985"	"32345785"	"32345031"	"32340467"	"32326558"	"32323767"	"32313728"	"32307099"	"32285253"	"32271938"	"32235125"	"32210829"	"32210104"	"32209064"	"32200494"	"32194715"	"32194307"	"32182331"	"32165293"	"32150688"	"32132577"	"32104303"	"32097310"	"32092824"	"32089067"	"32085981"	"32081879"	"32068606"	"32039442"	"32034099"	"32032125"	"32025807"	"32019538"	"31992593"	"31985858"	"31985027"	"31974393"	"31939600"	"31936116"	"31923415"	"31921893"	"31892638"	"31863397"	"31858815"	"31857225"	"31850164"	"31840323"	"31837543"	"31835434"	"31834824"	"31831090"	"31815277"	"31813493"	"31792281"	"31784675"	"31771240"	"31757675"	"31746377"	"31731295"	"31727112"	"31725165"	"31711082"	"31689868"	"31637185"	"31623346"	"31620450"	"31619968"	"31615414"	"31608440"	"31605802"	"31602400"	"31597574"	"31591384"	"31589839"	"31584460"	"31582661"	"31573553"	"31569402"	"31563893"	"31557800"	"31556145"	"31555994"	"31552256"	"31550815"	"31550528"	"31539520"	"31538102"	"31533040"	"31529119"	"31524262"	"31523116"	"31509335"	"31505996"	"31505040"	"31495154"	"31468648"	"31467992"	"31464648"	"31463372"	"31439892"	"31433458"	"31425729"	"31408728"	"31400222"	"31382918"	"31376927"	"31359244"	"31343404"	"31341795"	"31332164"	"31327662"	"31297044"	"31278965"	"31273954"	"31252043"	"31249105"	"31244652"	"31235767"	"31234505"	"31223282"	"31217334"	"31213574"	"31209258"	"31205619"	"31201806"	"31189078"	"31188510"	"31180551"	"31175931"	"31169972"	"31158382"	"31148586"	"31147808"	"31143769"	"31139325"	"31129253"	"31124999"	"31101448"	"31094056"	"31091314"	"31085202"	"31081057"	"31080560"	"31066006"	"31058363"	"31049834"	"31032475"	"31017714"	"31006037"	"31000321"	"30992245"	"30973281"	"30971692"	"30959909"	"30959004"	"30957640"	"30945448"	"30929801"	"30922407"	"30922331"	"30906478"	"30905679"	"30897705"	"30889042"	"30877256"	"30867693"	"30856218"	"30805402"	"30799278"	"30786277"	"30781744"	"30760335"	"30742476"	"30737902"	"30735882"	"30731284"	"30728909"	"30723905"	"30719689"	"30707754"	"30694715"	"30690025"	"30686515"	"30686120"	"30680959"	"30678183"	"30666640"	"30664361"	"30662842"	"30662651"	"30658598"	"30655812"	"30639613"	"30636580"	"30634720"	"30622976"	"30622052"	"30612922"	"30604066"	"30598510"	"32212499"	"30588787"	"30580570"	"30579251"	"30577496"	"30562891"	"30551019"	"30550561"	"30544541"	"30543935"	"30523245"	"30538046"	"30521667"	"30486455"	"30481230"	"30477578"	"30474742"	"30473883"	"30472132"	"30470823"	"30468562"	"30468456"	"30461215"	"30425453"	"30425199"	"30410671"	"30387838"	"30383450"	"30378114"	"30377863"	"30370838"	"30367890"	"30358223"	"30352316"	"30350412"	"30347087"	"30339843"	"30319659"	"30304871"	"30297828"	"30293067"	"30291983"	"30290164"	"30280182"	"30271117"	"30256387"	"30250024"	"30246031"	"30239553"	"30232004"	"30230348"	"30227442"	"30212830"	"30194012"	"30177587"	"30171854"	"30160133"	"30150532"	"30144071"	"30140626"	"30134384"	"30130153"	"30129110"	"30128835"	"30118696"	"30117188"	"30099024"	"30098200"	"30090184"	"30069878"	"30061037"	"30029588"	"30025139"	"30018021"	"30016400"	"30013318"	"30003432"	"29986714"	"29981832"	"29977619"	"29966014"	"29949176"	"29948613"	"29945868"	"29932217"	"29929885"	"29911097"	"29907982"	"29896265"	"29891662"	"29869452"	"29867939"	"29862067"	"29856065"	"29849947"	"29849494"	"29846705"	"29843955"	"29801150"	"29800920"	"29795291"	"29785126"	"29760442"	"29752408"	"29743238"	"29741645"	"29738694"	"29697356"	"29693488"	"29693273"	"29689292"	"29686677"	"29684613"	"29676849"	"29669483"	"29652528"	"29644114"	"29641448"	"29637818"	"29623491"	"29620174"	"29617817"	"29617696"	"29617629"	"29593116"	"29588342"	"29577907"	"29577601"	"29555987"	"29553873"	"29550439"	"29544503"	"29535349"	"29535003"	"29512773"	"29510914"	"20301312"	"29478902"	"29464083"	"29460548"	"29458061"	"29458060"	"29438518"	"29433538"	"29414811"	"29414799"	"29403495"	"29393369"	"29392890"	"29391598"	"29350460"	"29320969"	"29298798"	"29292200"	"31938083"	"29288409"	"29286127"	"29283464"	"29279524"	"29271379"	"29270370"	"29248417"	"29233706"	"20301299"	"29229876"	"29205609"	"29202780"	"29190815"	"29190672"	"29188062"	"29170863"	"29161966"	"29156734"	"29149020"	"29145888"	"29128814"	"29112826"	"29081763"	"29065449"	"29051557"	"29039599"	"29038307"	"28977001"	"28970011"	"28969601"	"28965949"	"28945200"	"28941745"	"28937836"	"28918612"	"28915803"	"28913545"	"28911087"	"28902018"	"28901458"	"28900109"	"28895052"	"28893556"	"28880739"	"28857282"	"28855536"	"28853609"	"28827481"	"28820083"	"28810065"	"28795730"	"28794289"	"28789942"	"28787261"	"28782576"	"28781950"	"28771943"	"28764781"	"28748854"	"28730103"	"28729364"	"28719670"	"28716076"	"28694529"	"28692738"	"28692037"	"28688350"	"28660443"	"28660198"	"28659821"	"28649804"	"28640846"	"28637902"	"28633389"	"28633253"	"28631356"	"28630873"	"28623314"	"28622289"	"28621467"	"28614933"	"28609185"	"28599476"	"31008308"	"28546021"	"28544325"	"28543697"	"28538696"	"28530511"	"28521131"	"28511643"	"28506304"	"28503424"	"28501572"	"28487031"	"28484053"	"28466813"	"28461975"	"28450107"	"28448670"	"28447733"
+"TGFBR1"	"familial thoracic aortic aneurysm and aortic dissection"	"32751693"	"32726455"	"32673566"	"32663566"	"32643848"	"32640500"	"32635855"	"32597756"	"32586367"	"32582528"	"32581266"	"32578437"	"32535034"	"32531799"	"32528555"	"32528524"	"32483604"	"32483042"	"32482137"	"32469097"	"32462795"	"32447199"	"32445696"	"32404179"	"32394311"	"32335702"	"32327630"	"32324847"	"32312181"	"32291608"	"32277570"	"32269712"	"32244749"	"32217440"	"32210440"	"32205184"	"32200666"	"32176847"	"32143707"	"32143140"	"32109943"	"32105567"	"32103597"	"32099460"	"32099387"	"32066676"	"32062130"	"32041253"	"32030964"	"32019538"	"32015502"	"31996529"	"31988704"	"31983425"	"31959851"	"31953203"	"31925912"	"31915033"	"31910207"	"31903610"	"31897308"	"31886717"	"31886487"	"31871473"	"31864349"	"31845233"	"31829243"	"31819893"	"31813252"	"31797450"	"31795342"	"31788987"	"31775039"	"31765226"	"31747868"	"31747387"	"31734320"	"31678270"	"31676288"	"31676070"	"31673825"	"31651066"	"31626251"	"31624717"	"31614978"	"31592234"	"31585122"	"31581360"	"31574295"	"31571110"	"31569402"	"31557499"	"31553876"	"31545479"	"31545407"	"31538102"	"31531112"	"31526565"	"31524262"	"31514337"	"31506281"	"31475485"	"31444797"	"31438649"	"31435875"	"31434718"	"31408333"	"31400222"	"31390053"	"31370853"	"31368228"	"31358049"	"31353638"	"31337739"	"31336100"	"31334871"	"31332164"	"31326520"	"31326388"	"31322790"	"31313829"	"31311865"	"31311317"	"31310682"	"31309451"	"31304624"	"31299584"	"31290007"	"31271868"	"31257133"	"31235818"	"31215762"	"31207955"	"31203147"	"31196201"	"31189969"	"31182928"	"31173246"	"31171625"	"31170244"	"31169351"	"31168899"	"31166414"	"31144525"	"31132720"	"31121879"	"31108998"	"31108104"	"31102105"	"31098894"	"31043581"	"31038558"	"31035970"	"31027492"	"31008529"	"31006037"	"31000321"	"30980801"	"30979739"	"30973040"	"30971692"	"30948511"	"30943320"	"30928020"	"30914160"	"30896870"	"30865882"	"30865275"	"30863174"	"30836988"	"30809816"	"30809682"	"30807748"	"30789794"	"30771688"	"30760827"	"30745168"	"30741930"	"30710564"	"30701076"	"30675029"	"30671728"	"30667085"	"30664361"	"30660362"	"30659889"	"30655341"	"30592496"	"30587556"	"30582654"	"30572609"	"30562760"	"30561754"	"30557355"	"30554918"	"30550590"	"30549198"	"30541743"	"30513140"	"30511964"	"30496724"	"30479570"	"30478959"	"30471101"	"30459156"	"30448291"	"30391930"	"30387848"	"30384428"	"30381589"	"30375456"	"30372567"	"30362572"	"30350412"	"30336139"	"30335615"	"30321496"	"30308508"	"30306773"	"30298006"	"30278896"	"30268436"	"30266591"	"30266501"	"30260287"	"30256387"	"30230540"	"30219046"	"30212788"	"30208313"	"30184463"	"30172565"	"30161276"	"30155899"	"30154763"	"30145406"	"30138414"	"30138363"	"30135214"	"30130760"	"30120850"	"30118696"	"30115852"	"30115383"	"30100246"	"30097701"	"30096405"	"30094509"	"30091466"	"30078186"	"30077902"	"30063296"	"30056620"	"30054990"	"30054331"	"30053527"	"30046895"	"30037098"	"30032656"	"30031868"	"30021930"	"30015175"	"30003053"	"29999195"	"29998175"	"29998113"	"29995950"	"29995286"	"29992982"	"29990830"	"29986714"	"29971498"	"29955905"	"29948944"	"29943845"	"29931197"	"29926663"	"29921235"	"29899418"	"29880072"	"29875136"	"29860992"	"29855543"	"29843083"	"29797604"	"29795022"	"29788739"	"29788434"	"29769310"	"29768367"	"29752408"	"29749483"	"29735548"	"29729706"	"29724997"	"29721944"	"29718973"	"29717114"	"29706644"	"29705334"	"29698744"	"29679710"	"29679507"	"29671258"	"29669252"	"29663369"	"29660438"	"29636593"	"29627157"	"29623002"	"29614203"	"29588073"	"29581525"	"29580923"	"29577978"	"29572483"	"29549723"	"29544731"	"29544503"	"29543232"	"29531222"	"29514696"	"29514186"	"29511430"	"29510914"	"29510197"	"29506555"	"29505748"	"29499231"	"29498756"	"29490660"	"29490279"	"20301312"	"29472636"	"29467907"	"29460548"	"29456135"	"29438988"	"29432795"	"29426578"	"29422332"	"29409020"	"29407108"	"29396549"	"29392890"	"29386886"	"29381406"	"29376829"	"29371929"	"29370734"	"29350460"	"29345319"	"29343501"	"29330296"	"29328383"	"29319157"	"29295981"	"29286129"	"29279601"	"29274137"	"29274061"	"29261154"	"29238081"	"29238047"	"29235674"	"20301299"	"29221447"	"29219174"	"29208458"	"29200096"	"29193723"	"29193651"	"29190781"	"29184980"	"29183791"	"29165389"	"29146755"	"29132261"	"29128814"	"29115550"	"29093680"	"29088068"	"29084894"	"29073595"	"29064324"	"29061957"	"29051557"	"29047105"	"29039486"	"29032608"	"29029620"	"28987540"	"28983846"	"28981109"	"28978530"	"28970582"	"28945203"	"28939895"	"28939526"	"28931816"	"28894026"	"28893564"	"28891814"	"28872461"	"28865486"	"28864263"	"28849102"	"28847661"	"28845554"	"28842394"	"28842177"	"28835638"	"28823564"	"28818608"	"28815787"	"28815607"	"28794441"	"28779848"	"28778947"	"28776725"	"28743916"	"28737766"	"28732811"	"28720534"	"28716756"	"28701310"	"28683467"	"28676490"	"28662367"	"28659821"	"28657664"	"28642261"	"28633389"	"28632033"	"28628913"	"28625921"	"28622298"	"28605599"	"28592285"	"28574613"	"28569204"	"31008308"	"28543632"	"28538876"	"28534942"	"28522256"	"28518142"	"28499242"	"28489883"	"28483669"	"28466233"	"28455310"	"28444170"	"28436712"	"28423340"	"28405618"	"28401653"	"28399671"	"28390866"	"28389561"	"28373289"	"28368414"	"28363982"	"28359790"	"28345812"	"28345488"	"28343170"	"28337662"	"28324846"	"28324043"	"28302134"	"28289072"	"28277133"	"28270449"	"28259939"	"28257634"	"28251559"	"28250236"	"28228478"	"28213973"	"28209770"	"28191769"	"28181591"	"28168444"	"28161507"	"28159509"	"28153829"	"28148904"	"28146434"	"28141790"	"28137596"	"28135685"	"28130828"	"28125630"	"28122173"	"28115518"	"28114883"	"28102051"	"28095798"	"28093199"
+"TGFBR2"	"familial thoracic aortic aneurysm and aortic dissection"	"32751354"	"32746603"	"32745914"	"32737704"	"32727368"	"32719515"	"32716502"	"32715758"	"32686686"	"32681355"	"32669531"	"32659645"	"32642695"	"32640500"	"32640257"	"32631954"	"32628850"	"32620917"	"32612392"	"32612149"	"32605311"	"32599028"	"32586367"	"32585626"	"32581832"	"32567373"	"32554612"	"32534359"	"32528524"	"32526736"	"32521690"	"32491951"	"32483604"	"32462795"	"32452354"	"32447199"	"32431097"	"32423867"	"32420711"	"32401642"	"32382652"	"32376602"	"32373944"	"32366413"	"32348727"	"32340348"	"32333774"	"32324970"	"32319715"	"32301551"	"32300954"	"32296307"	"32281047"	"32252625"	"32247619"	"32238803"	"32210807"	"32210440"	"32209317"	"32208998"	"32200666"	"32200494"	"32199657"	"32188888"	"32178467"	"32176034"	"32174912"	"32163326"	"32155554"	"32143140"	"32117757"	"32099460"	"32092587"	"32075111"	"32066676"	"32061754"	"32058975"	"32046777"	"32010624"	"31999649"	"31988704"	"31988138"	"31969018"	"31961320"	"31960827"	"31957496"	"31949653"	"31949002"	"31915033"	"31912090"	"31911623"	"31903688"	"31900142"	"31897308"	"31897129"	"31886717"	"31871473"	"31857368"	"31850705"	"31830262"	"31826007"	"31817503"	"31797984"	"31795342"	"31792044"	"31790412"	"31788757"	"31784499"	"31780749"	"31770533"	"31769227"	"31765403"	"31758608"	"31756952"	"31754384"	"31747868"	"31747387"	"31737663"	"31730895"	"31727112"	"31721529"	"31712309"	"31710120"	"31685628"	"31677064"	"31676070"	"31674727"	"31666385"	"31661139"	"31641960"	"31631582"	"31626251"	"31626174"	"31614978"	"31613648"	"31608713"	"31585636"	"31585122"	"31579415"	"31571401"	"31571110"	"31569402"	"31567189"	"31562571"	"31559420"	"31557499"	"31538102"	"31534460"	"31531112"	"31509335"	"31499126"	"31466384"	"31462075"	"31454892"	"31451976"	"31451384"	"31437481"	"31435875"	"31433212"	"31432155"	"31431534"	"31428571"	"31427387"	"31409309"	"31404091"	"31400222"	"31394426"	"31390859"	"31381904"	"31378986"	"31368228"	"31364002"	"31362006"	"31353638"	"31350823"	"31339916"	"31332164"	"31328403"	"31315975"	"31315051"	"31314051"	"31311865"	"31311317"	"31301298"	"31297922"	"31285644"	"31280683"	"31278346"	"31258143"	"31253047"	"31251081"	"31233118"	"31215762"	"31211624"	"31209059"	"31204302"	"31203517"	"31200471"	"31198976"	"31196603"	"31192159"	"31184447"	"31172564"	"31171895"	"31171625"	"31170232"	"31168899"	"31166951"	"31158800"	"31147562"	"31145962"	"31144525"	"31132720"	"31132127"	"31131112"	"31127692"	"31113460"	"31098894"	"31080553"	"31071172"	"31068441"	"31066871"	"31045834"	"31039339"	"31038541"	"31023080"	"31002371"	"31000321"	"30996242"	"30995070"	"30972853"	"30970225"	"30963174"	"30943774"	"30943320"	"30940161"	"30935128"	"30918839"	"30904901"	"30899675"	"30899396"	"30884219"	"30880689"	"30879273"	"30874788"	"30865882"	"30858225"	"30857124"	"30856218"	"30855280"	"30853106"	"30852945"	"30846482"	"30842416"	"30841464"	"30820806"	"30817928"	"30814254"	"30811623"	"30797150"	"30786011"	"30784922"	"30784225"	"30770602"	"30768867"	"30758990"	"30753884"	"30745168"	"30733042"	"30729664"	"30714146"	"30713798"	"30707936"	"30702442"	"30697738"	"30696577"	"30678135"	"30675029"	"30666961"	"30662980"	"30660615"	"30659889"	"30659392"	"30659170"	"30655341"	"30651002"	"30650425"	"30643193"	"30629676"	"30614814"	"30610922"	"30607520"	"30599359"	"30595567"	"30595527"	"30592264"	"30566042"	"30562760"	"30555301"	"30553833"	"30543962"	"30541743"	"30525231"	"30524725"	"30524425"	"30536105"	"30529762"	"30504836"	"30515476"	"30496724"	"30496442"	"30475986"	"30474742"	"30469488"	"30468668"	"30465450"	"30463060"	"30461200"	"30460421"	"30458178"	"30450101"	"30430573"	"30413725"	"30406707"	"30404927"	"30395764"	"30391930"	"30385721"	"30384383"	"30376727"	"30371263"	"30366420"	"30365236"	"30364975"	"30355908"	"30350412"	"30349003"	"30345862"	"30342849"	"30340983"	"30340822"	"30318515"	"30308508"	"30294667"	"30286810"	"30279734"	"30275444"	"30275229"	"30268436"	"30259786"	"30256570"	"30246479"	"30232004"	"30224067"	"30219046"	"30212788"	"30208313"	"30206312"	"30205161"	"30202956"	"30196284"	"30184463"	"30183689"	"30181549"	"30170566"	"30166986"	"30158983"	"30158670"	"30156908"	"30154914"	"30154150"	"30153648"	"30150789"	"30145936"	"30135214"	"30132150"	"30129110"	"30120850"	"30120396"	"30117601"	"30117188"	"30101859"	"30100996"	"30097701"	"30092004"	"30078186"	"30077902"	"30073722"	"30070022"	"30066965"	"30056620"	"30054990"	"30048990"	"30046895"	"30037098"	"30035249"	"30031756"	"30024280"	"30021930"	"30014520"	"30006173"	"30004628"	"29992982"	"29986714"	"29986644"	"29985369"	"29976569"	"29973593"	"29972714"	"29965995"	"29947765"	"29945868"	"29943461"	"29941453"	"29940566"	"29934723"	"29934328"	"29931197"	"29931109"	"29926663"	"29899418"	"29888864"	"29888103"	"29880072"	"29877162"	"29876033"	"29873400"	"29855543"	"29847322"	"29845261"	"29843236"	"29794480"	"29789683"	"29788739"	"29787768"	"29785126"	"29782499"	"29780305"	"29768367"	"29768059"	"29753615"	"29752408"	"29748374"	"29745814"	"29735517"	"29726981"	"29724812"	"29699590"	"29689292"	"29688810"	"29687841"	"29678520"	"29674421"	"29671258"	"29662171"	"29660521"	"29660438"	"29653105"	"29652518"	"29650961"	"29641448"	"29636300"	"29627157"	"29615404"	"29596569"	"29580923"	"29580318"	"29572483"	"29558627"	"29554973"	"29544503"	"29535220"	"29534718"	"29532993"	"29530598"	"29522674"	"29516686"	"29514696"	"29514186"	"29510914"	"29509006"	"29505748"	"29496669"	"29490279"	"29487805"	"20301312"	"29478969"	"29471171"	"29462614"	"29462303"	"29460548"	"29449337"	"29438260"	"29426578"	"29416028"	"29415171"	"29413698"	"29409020"	"29407901"	"29406185"
+"ACTG1"	"nonsyndromic genetic deafness"	"32770454"	"32640306"	"32588558"	"32578367"	"32570172"	"32537633"	"32516005"	"32506774"	"32349449"	"32341388"	"32326615"	"32129689"	"32030316"	"32028042"	"31922597"	"31867042"	"31733664"	"31706454"	"31630891"	"31547269"	"31271297"	"31231230"	"31171384"	"31001200"	"30881024"	"30682115"	"30679503"	"30675230"	"30626383"	"30622556"	"30599039"	"30459441"	"30344259"	"30315159"	"30283823"	"30196057"	"30191766"	"30105670"	"30012594"	"29986705"	"29671837"	"29620237"	"29357087"	"29313844"	"29068691"	"29024830"	"20301607"	"28727228"	"28501006"	"28498079"	"28496999"	"28493397"	"28449397"	"28383561"	"28347234"	"27868373"	"27781032"	"27625340"	"27240540"	"27096712"	"26832775"	"26583190"	"26527743"	"26505445"	"26367489"	"26196856"	"26188271"	"26156684"	"25792668"	"25624931"	"25447457"	"25424318"	"25401301"	"25388789"	"25359417"	"25101965"	"25084203"	"25052316"	"24983517"	"24480745"	"24284654"	"24211661"	"24164807"	"24130743"	"24098136"	"23756437"	"23649928"	"23596789"	"23506231"	"23465861"	"23006766"	"22938506"	"28920308"	"22366783"	"22169282"	"21859857"	"20976199"	"20662086"	"20565976"	"20417300"	"20362224"	"20059981"	"20030847"	"19727228"	"19548389"	"19497859"	"19477959"	"18804074"	"18683558"	"17873514"	"17459200"	"16950128"	"16773128"	"16466844"	"14684684"	"13680526"	"12030931"	"10783262"	"10662538"	"8941379"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"COCH"	"nonsyndromic genetic deafness"	"32767084"	"32739759"	"32688358"	"32662912"	"32562050"	"32517095"	"32427578"	"32420067"	"32373054"	"32343459"	"32321285"	"32299569"	"32294405"	"32289625"	"32189158"	"32081918"	"32071905"	"32047440"	"32005706"	"31998212"	"31963743"	"31863395"	"31856724"	"31760389"	"31754920"	"31734534"	"31493294"	"31488360"	"31472872"	"31466393"	"31393079"	"31390618"	"31335319"	"31175453"	"31131597"	"31126177"	"31105513"	"31092399"	"31085446"	"30986387"	"30972055"	"30960345"	"30905438"	"30893951"	"30893676"	"30806805"	"30782343"	"30720465"	"30630824"	"30537136"	"30519842"	"30430003"	"30395796"	"30344259"	"30341134"	"30230526"	"30174637"	"30026291"	"29984802"	"29968558"	"29940339"	"29801827"	"29772340"	"29765451"	"29738887"	"29570881"	"29556863"	"29554639"	"29449721"	"29377910"	"29375286"	"29357473"	"29342833"	"29324705"	"29305555"	"29072761"	"29050579"	"28966001"	"28760668"	"20301607"	"28733840"	"28671352"	"28596227"	"28535047"	"28468914"	"28368720"	"28116169"	"28099493"	"28064353"	"28005267"	"27933988"	"27853642"	"27628438"	"27523655"	"27429003"	"27378397"	"27112273"	"27103396"	"27100354"	"27083884"	"27055739"	"27023102"	"26984852"	"26968195"	"26915689"	"26819202"	"26804612"	"26758463"	"28250715"	"26712009"	"26631968"	"26628421"	"26506852"	"26473497"	"26392348"	"26390061"	"26377014"	"26351166"	"26346715"	"26343537"	"26256111"	"26187414"	"26166451"	"26076594"	"26047051"	"25916810"	"25830873"	"25814464"	"25793910"	"25780252"	"25388789"	"25381063"	"25279224"	"25230692"	"25227905"	"25199741"	"25049087"	"25041502"	"24895230"	"24848263"	"24753444"	"24733829"	"24662630"	"24639679"	"24444890"	"24436058"	"24418338"	"24407266"	"24390792"	"24275721"	"24197754"	"24063017"	"24013083"	"23993205"	"23990876"	"23978563"	"23940691"	"23912888"	"23898547"	"23840704"	"23767834"	"23733067"	"23706666"	"23684986"	"23660400"	"23653683"	"23618269"	"23445520"	"23443030"	"23399123"	"23390110"	"23374487"	"23344953"	"23271630"	"23271018"	"23261735"	"23252728"	"23212237"	"23168834"	"23153187"	"23151794"	"23151011"	"23149299"	"23136374"	"23084787"	"23082787"	"23036274"	"23020749"	"23001132"	"23000928"	"22992960"	"22974362"	"22960160"	"22944446"	"22935511"	"22934933"	"22931125"	"22912888"	"22884994"	"22875199"	"22865637"	"22864379"	"22845464"	"22844238"	"22765346"	"22751866"	"22750807"	"22610276"	"22607582"	"22582767"	"22563982"	"22534022"	"22530929"	"22503677"	"22496787"	"22402283"	"22384688"	"22356198"	"22320309"	"22296223"	"22264200"	"22260293"	"22224750"	"22223415"	"22221189"	"22209637"	"30199965"	"23590105"	"22162181"	"22139968"	"22122231"	"22112080"	"22087562"	"22036947"	"21962424"	"21922152"	"21899252"	"21895189"	"21886777"	"21870879"	"21827147"	"21826288"	"21817197"	"21800923"	"21786998"	"21782502"	"21774451"	"21750861"	"21741041"	"21728171"	"21725168"	"21703856"	"21696257"	"21643609"	"21523632"	"21517017"	"21493895"	"21478846"	"21469269"	"21462981"	"21462009"	"21395301"	"21382147"	"21315092"	"21303114"	"21246625"	"21239520"	"21210652"	"21192808"	"22558055"	"21181167"	"21077657"	"21073934"	"21073477"	"21067247"	"21057083"	"21052762"	"21046548"	"20972552"	"20831317"	"20812685"	"20738345"	"20738145"	"20629486"	"20574564"	"20556274"	"20553048"	"20545308"	"20540554"	"20533846"	"20533319"	"20512603"	"30282232"	"20485775"	"20447147"	"20441176"	"20441121"	"20373756"	"20307904"	"20230791"	"20228067"	"20215634"	"20214257"	"20211607"	"20204367"	"20179996"	"20108121"	"20105107"	"20097680"	"20095638"	"20053156"	"20047313"	"21589039"	"20028179"	"20024156"	"20023914"	"19933177"	"19931114"	"19921489"	"19907161"	"19785445"	"19771352"	"19754098"	"19710340"	"19657184"	"19620253"	"19584160"	"19584101"	"19576794"	"19555473"	"19546266"	"19488780"	"19487743"	"19465615"	"19422219"	"19403897"	"19388684"	"19372652"	"19361845"	"19319395"	"19285447"	"19260662"	"21783945"	"19240292"	"19217141"	"19214416"	"19161137"	"19120476"	"21583813"	"21582755"	"21582709"	"21582380"	"21582374"	"21578065"	"19103887"	"19102526"	"19098315"	"19063656"	"19063553"	"19061331"	"19040838"	"19013156"	"18979034"	"18970590"	"18968912"	"18836166"	"18823423"	"18804553"	"18783242"	"18776598"	"18706483"	"18697796"	"18688484"	"18680378"	"18666296"	"18663049"	"18649878"	"18514640"	"18498196"	"18477154"	"18368581"	"18365055"	"18353284"	"18353091"	"18312449"	"18304733"	"18269866"	"18199695"	"18181143"	"21580860"	"21202259"	"21201353"	"21201076"	"18156539"	"17944208"	"17926100"	"17922347"	"17910512"	"17852086"	"17851964"	"17848475"	"17725780"	"17718460"	"17674816"	"17664000"	"17662637"	"17637962"	"17589872"	"17561763"	"17558896"	"17555982"	"17515623"	"17509169"	"17461637"	"17383153"	"17368553"	"17305390"	"17264471"	"17165890"	"17138532"	"17134200"	"17100761"	"17088964"	"17066394"	"17064195"	"21727611"	"16978289"	"16951386"	"16902940"	"16898699"	"16891835"	"16860846"	"16835921"	"16716902"	"16530462"	"16510012"	"16481359"	"16405869"	"16379021"	"16374056"	"16371846"	"16355574"	"16332271"	"16331128"	"16297912"	"16289144"	"16261627"	"16249452"	"16215523"	"16151339"	"16151338"	"16078052"	"16060711"	"16043399"	"16004624"	"15985071"	"15958501"	"15943688"	"15896067"	"15885953"	"15880385"	"15862993"	"15862180"	"15854515"	"15853406"	"15829081"	"15807951"	"15788036"	"15765510"	"15762666"	"15739014"	"15729138"	"15701247"	"15686532"	"15651878"	"19633728"	"19169373"	"15590709"	"15580327"	"15579465"	"15578860"	"15575752"	"15562607"	"15557502"	"15533873"	"15489371"	"15480577"	"15341935"	"15341490"	"15263137"	"15262834"	"15217351"	"15176382"	"15163206"	"15154812"	"15139743"	"15085200"	"15085190"	"15075030"	"15064658"
+"EYA4"	"nonsyndromic genetic deafness"	"32380793"	"32277154"	"32107406"	"31989664"	"31385398"	"31379922"	"31165343"	"31101108"	"31101089"	"30957411"	"30947719"	"30942159"	"30368385"	"30231237"	"30155266"	"20301486"	"30123251"	"30099509"	"29764501"	"29660222"	"29436791"	"29287889"	"29122676"	"29054432"	"28982739"	"28767663"	"20301607"	"28621161"	"28586118"	"28452372"	"28380439"	"28351398"	"28148542"	"28056267"	"27920155"	"27764096"	"27613755"	"27545760"	"27469137"	"27378242"	"27231175"	"27142990"	"27015871"	"26499333"	"26456090"	"26400775"	"26331839"	"26015337"	"25963406"	"25961296"	"25809937"	"25781927"	"25681523"	"25620232"	"25287138"	"25279224"	"25242383"	"24832207"	"24306662"	"24096489"	"23990876"	"23975090"	"23867875"	"23862763"	"23830351"	"23347191"	"23017075"	"22971774"	"22938506"	"22916150"	"22493696"	"22083596"	"21821028"	"21731750"	"21400501"	"21304506"	"21298349"	"21107580"	"21061259"	"20827281"	"19939248"	"19901965"	"19789172"	"19606496"	"19576303"	"19561593"	"18799547"	"18219393"	"18219392"	"18198279"	"17668378"	"17568404"	"17567890"	"17234174"	"17098221"	"16916509"	"16670426"	"16469682"	"15824152"	"15735644"	"15729138"	"15572137"	"15492887"	"12477971"	"12408066"	"12123480"	"11159937"	"9887327"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRHL2"	"nonsyndromic genetic deafness"	"32676163"	"32660626"	"32639612"	"32636649"	"32608066"	"32548262"	"32370157"	"32368082"	"32324317"	"32280236"	"32271766"	"32194886"	"32048449"	"32005677"	"31956297"	"31833403"	"31782997"	"31696427"	"31683705"	"31644911"	"31372511"	"31354028"	"31340691"	"31255469"	"31233731"	"31232964"	"31201376"	"31200751"	"31189106"	"31171776"	"31110002"	"31103601"	"31084623"	"31063022"	"30958537"	"30917932"	"30853467"	"30793308"	"30682115"	"30675204"	"30537698"	"30508726"	"30455249"	"30341388"	"30311575"	"30310934"	"30194919"	"30193734"	"30189017"	"30154364"	"30075122"	"30017589"	"29867222"	"29854292"	"29735981"	"29499165"	"29455378"	"29443638"	"29309642"	"29241932"	"29237740"	"29110737"	"28987423"	"28979695"	"28960866"	"20301607"	"28714958"	"28697314"	"28636799"	"28581528"	"28543713"	"28534537"	"28473532"	"28459369"	"28448023"	"28435293"	"28282036"	"28278050"	"28266048"	"28196803"	"28067907"	"28040329"	"27749322"	"27612988"	"27564454"	"27436429"	"27402864"	"27318899"	"27271650"	"27251061"	"27084311"	"27083884"	"27008704"	"26989192"	"26933170"	"26915689"	"26903501"	"26887977"	"26847018"	"26826389"	"26813596"	"26778584"	"26527742"	"26456005"	"26455667"	"26400775"	"26355710"	"26177923"	"26085095"	"26069269"	"25978997"	"25896282"	"25813183"	"25788534"	"25781927"	"25767604"	"25758223"	"25550776"	"25406394"	"25279830"	"25152456"	"25139457"	"24940735"	"24756066"	"24375798"	"24131873"	"24068586"	"24046446"	"23954088"	"23943797"	"23814079"	"23813623"	"23690579"	"23610592"	"23474494"	"23444225"	"23441166"	"23284647"	"24665375"	"23254293"	"23012876"	"22955271"	"22696678"	"22559327"	"22379025"	"22223680"	"21949371"	"21693562"	"21610158"	"21557239"	"21377456"	"21271679"	"21262862"	"21081122"	"20978075"	"20938050"	"20654612"	"19015635"	"18787404"	"18752864"	"17921507"	"17671797"	"16831572"	"12549979"	"12175488"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"KCNQ4"	"nonsyndromic genetic deafness"	"32641720"	"32527199"	"32382995"	"32327991"	"32306673"	"32188278"	"31995783"	"31919767"	"31871302"	"31696427"	"31661723"	"31434872"	"31389194"	"31126177"	"31102762"	"31063701"	"31028865"	"30808708"	"30710318"	"30689673"	"30655942"	"30556268"	"30413759"	"30344259"	"30327146"	"30250967"	"30221713"	"30153627"	"30079013"	"30021858"	"30002060"	"29922125"	"29775679"	"20301388"	"29738887"	"29686000"	"29579054"	"29429937"	"29301492"	"29156097"	"29085904"	"29072670"	"28984810"	"28885682"	"28802383"	"20301607"	"28526685"	"28340560"	"28189443"	"28093476"	"27981364"	"27789473"	"27761601"	"27710966"	"27389411"	"27162025"	"26969140"	"26802314"	"26733196"	"26718475"	"26692086"	"26515070"	"26398945"	"26063916"	"26036578"	"25965962"	"25941381"	"25937133"	"25904892"	"25590133"	"27081546"	"25547342"	"25476662"	"25232191"	"25127363"	"25116015"	"24956197"	"24944189"	"24927567"	"24920503"	"24838176"	"24655070"	"24558103"	"24555524"	"24441871"	"24416770"	"24297175"	"24120659"	"24019223"	"24012852"	"23965379"	"23844512"	"23762928"	"23750663"	"23745134"	"23717403"	"23658954"	"23554485"	"23543186"	"23451214"	"23443030"	"23431407"	"23408425"	"23399560"	"23287425"	"23242999"	"23207014"	"23184384"	"23178170"	"23089626"	"23012321"	"22910039"	"22761589"	"22713565"	"22570279"	"22546335"	"22420747"	"22353613"	"22350511"	"22319145"	"22251082"	"23776385"	"22193251"	"22143287"	"22135213"	"22125664"	"22101641"	"22046315"	"22038256"	"21951272"	"21915266"	"21795522"	"21782781"	"21782286"	"21750731"	"21747056"	"21730298"	"21723881"	"21651318"	"21585154"	"21540350"	"21242547"	"20966080"	"20935082"	"20932311"	"20876743"	"20843955"	"20840535"	"20832469"	"20739290"	"20714208"	"20624791"	"20180842"	"20147557"	"20147414"	"20060884"	"19858360"	"19701239"	"19687231"	"19523148"	"19494570"	"19389803"	"19289549"	"19279247"	"19176829"	"19156197"	"19151245"	"19098162"	"18941426"	"18827480"	"18804553"	"18797286"	"18790849"	"18786918"	"18536747"	"18490447"	"18440995"	"18368581"	"18339689"	"18300702"	"18272810"	"18264812"	"18238816"	"18238808"	"18089837"	"18061539"	"18030493"	"17977745"	"17869440"	"17699675"	"17568767"	"17561493"	"17520268"	"17519950"	"17513527"	"17376978"	"17329207"	"17292869"	"17258412"	"17237198"	"17227916"	"17033161"	"17021181"	"16917933"	"16914890"	"16904708"	"16876114"	"16823764"	"16803873"	"16775195"	"16678987"	"16608784"	"16596322"	"16437162"	"16301825"	"16207888"	"15980171"	"15901836"	"15901787"	"15850684"	"15699719"	"15660259"	"15492886"	"15492885"	"15328414"	"15304482"	"15175377"	"15090241"	"14757214"	"14640909"	"12890507"	"12851819"	"12827359"	"12823462"	"12772453"	"12707061"	"12702742"	"12657673"	"12524525"	"12514204"	"12504852"	"12484650"	"12408061"	"12356878"	"12123480"	"12112653"	"12097719"	"12031509"	"11976689"	"11920835"	"11915881"	"11911656"	"11887968"	"11556850"	"11466425"	"11450843"	"11448722"	"11378159"	"11245603"	"11136720"	"11042367"	"10925378"	"10890142"	"10760300"	"10760249"	"10711337"	"10646604"	"10571947"	"10545133"	"10369879"	"10080176"	"10025409"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYH14"	"nonsyndromic genetic deafness"	"32711451"	"32512867"	"32451864"	"32176153"	"32041280"	"31898538"	"31696427"	"31653586"	"31631044"	"31393079"	"31358530"	"31296530"	"31231018"	"31083078"	"31045651"	"30733538"	"30682115"	"30317298"	"30086768"	"30044719"	"30021842"	"29950347"	"29941967"	"29550471"	"29540510"	"29538345"	"29386520"	"29301492"	"29208685"	"28821574"	"20301607"	"28624953"	"28577945"	"28221712"	"28191911"	"28101381"	"27875632"	"27844135"	"27506764"	"27393652"	"27385019"	"27262998"	"27224062"	"26970499"	"26607605"	"25931194"	"25719458"	"25605895"	"25604732"	"25289672"	"24552675"	"24433282"	"24072716"	"24059862"	"23665442"	"23562268"	"23355468"	"23273769"	"23207014"	"22870707"	"22820068"	"22638570"	"22544735"	"21872659"	"21480433"	"21478157"	"21368133"	"21295570"	"20861308"	"20533261"	"20004473"	"19948655"	"19922871"	"19183343"	"18675813"	"18471249"	"18348273"	"17997715"	"16982912"	"16222661"	"15845534"	"15042303"	"15015131"	"15014174"	"14689445"	"14594953"	"12909352"	"12598534"	"12596055"	"12408070"	"12161595"	"11938438"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO6"	"nonsyndromic genetic deafness"	"32451866"	"32451864"	"32412041"	"32211215"	"32155441"	"32143290"	"32130788"	"32110048"	"32081426"	"32066420"	"32048449"	"31955010"	"31954329"	"31901088"	"31785455"	"31741711"	"31269433"	"31206648"	"31103816"	"30872458"	"30582396"	"30387375"	"30175721"	"30159143"	"30058425"	"29607572"	"29467281"	"29398621"	"29395717"	"29224747"	"29217166"	"29044474"	"29022908"	"28832620"	"28831385"	"28828543"	"20301607"	"28717182"	"28591580"	"28501645"	"28348208"	"28176342"	"28143933"	"28075205"	"28000701"	"27835906"	"27561828"	"27515005"	"27431378"	"27374232"	"27344577"	"27171474"	"27111754"	"27044563"	"26937209"	"26856686"	"26407123"	"26346884"	"26286357"	"26265212"	"25999546"	"25998689"	"25852547"	"25643992"	"25484089"	"25279224"	"25232514"	"25227905"	"25096638"	"25080041"	"24945595"	"24781754"	"24535414"	"24285636"	"24106123"	"24028494"	"23990876"	"23840954"	"23767834"	"23743496"	"23691122"	"23635807"	"23620821"	"23485424"	"23340379"	"22954512"	"22613993"	"22562792"	"22561202"	"22510086"	"22328452"	"22213699"	"21629442"	"21626137"	"21519551"	"21283786"	"21035487"	"20353999"	"20224170"	"20175219"	"20146813"	"19893302"	"19744958"	"19558455"	"19175293"	"19156837"	"18833301"	"18543251"	"18348273"	"18314910"	"18261850"	"18212818"	"17555536"	"17204383"	"16908842"	"16819522"	"15850684"	"15829536"	"15657400"	"15060111"	"15004223"	"12966030"	"12857860"	"12687499"	"12471897"	"11468689"	"11167014"	"10704189"	"10525338"	"9259267"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO7A"	"nonsyndromic genetic deafness"	"32681043"	"32651283"	"20301442"	"32451864"	"32428919"	"32350269"	"32279305"	"32219829"	"32211215"	"32134349"	"32097363"	"31997689"	"31899291"	"31898538"	"31850270"	"31824252"	"31760262"	"31708751"	"31644917"	"31598937"	"31486067"	"31479088"	"31427926"	"31389194"	"31345173"	"31320737"	"31266775"	"31231422"	"31117067"	"31097876"	"31035849"	"30881389"	"30872814"	"30826590"	"30733538"	"30719228"	"30683875"	"30612476"	"30593502"	"30531642"	"30459346"	"30380528"	"30358468"	"30303587"	"30123251"	"30055715"	"30019672"	"29979748"	"29942180"	"29796015"	"29740017"	"29692870"	"29625443"	"29605349"	"29588463"	"29568747"	"29551606"	"29534264"	"29534263"	"29511501"	"29509981"	"29490346"	"29430167"	"29416772"	"29400105"	"29361540"	"29336137"	"29331002"	"29287864"	"29287847"	"29196752"	"29167268"	"29142287"	"29062245"	"29048421"	"28968992"	"28931463"	"28802369"	"28796092"	"20301607"	"28731162"	"28688563"	"28673385"	"28660889"	"28507101"	"28492243"	"28472130"	"28451532"	"28439001"	"28400833"	"28346292"	"28281779"	"28262393"	"28241887"	"28075205"	"30800556"	"28035529"	"28031293"	"27957503"	"27828912"	"27753762"	"27743438"	"27729122"	"27607106"	"27583663"	"27573290"	"27535918"	"27525485"	"27440999"	"27409480"	"27344577"	"27341211"	"27331610"	"27208209"	"27099197"	"27083884"	"27068579"	"27013738"	"26968074"	"26960254"	"26913517"	"26864046"	"26791358"	"26720455"	"26654877"	"26620972"	"26561413"	"26469752"	"26445815"	"26425852"	"26338283"	"26309859"	"26261180"	"26226137"	"26212629"	"26150157"	"26011067"	"26001786"	"25956034"	"25798947"	"25788563"	"25760435"	"25616095"	"25605753"	"25575603"	"25560461"	"25558175"	"25556989"	"25404053"	"25280642"	"25258483"	"25252889"	"25236597"	"25211151"	"25125189"	"25096638"	"25080603"	"25080338"	"24997346"	"24933568"	"24903972"	"24831256"	"24741041"	"24705452"	"24698764"	"24673561"	"24664764"	"24618850"	"24616153"	"24572793"	"24568220"	"24275721"	"24259566"	"24199935"	"24194196"	"24164807"	"24150896"	"24123853"	"24105371"	"24022220"	"24014347"	"23991031"	"23935742"	"23882135"	"23850727"	"23842490"	"23770805"	"23704327"	"23559863"	"23457544"	"23451239"	"23451214"	"23439501"	"23383098"	"23365660"	"23350551"	"23344065"	"23329832"	"23251483"	"23241142"	"23237960"	"23226338"	"23164077"	"23119091"	"23045546"	"22985730"	"22954512"	"22898263"	"22815625"	"22787049"	"22690115"	"22681893"	"22562792"	"22485190"	"22483387"	"22381527"	"22279587"	"22219650"	"22185901"	"22183338"	"22135276"	"21940737"	"21936790"	"21936778"	"21901789"	"21873662"	"21709241"	"21687988"	"21677172"	"21553382"	"21542987"	"21519551"	"21493626"	"21482763"	"21481294"	"21447681"	"21436283"	"21378158"	"21311020"	"21234346"	"21212272"	"21203349"	"21156003"	"21150918"	"21146598"	"21117948"	"21031134"	"20844544"	"20639393"	"20613545"	"20544419"	"20513143"	"20497194"	"20379205"	"20146813"	"20132242"	"20107853"	"20052763"	"20043895"	"20016096"	"19888295"	"19774077"	"19710301"	"19683999"	"19643958"	"19596566"	"19495774"	"19457086"	"19423668"	"19375528"	"19324852"	"19320733"	"19317802"	"19299023"	"19270738"	"19255807"	"19165952"	"19151550"	"19074810"	"18793701"	"18776598"	"18754012"	"18700726"	"18667942"	"18601973"	"18564497"	"18518985"	"18484607"	"18463160"	"18461180"	"18429043"	"18414684"	"18395802"	"18348273"	"18339676"	"18323324"	"18181211"	"18160714"	"17960123"	"17936325"	"17702415"	"17666436"	"17583357"	"17516923"	"17453441"	"17451552"	"17365059"	"17361009"	"17352418"	"17350759"	"17268537"	"17249594"	"17211611"	"17204383"	"17166180"	"17093394"	"17047322"	"17038670"	"16708012"	"16679490"	"16639269"	"16545802"	"16529721"	"16524426"	"16481439"	"16473609"	"16470552"	"16449806"	"16415346"	"16400615"	"16355532"	"16283144"	"16216190"	"16186105"	"16145690"	"16122715"	"16001398"	"15976448"	"15965244"	"15928608"	"15927964"	"15891570"	"15886106"	"15850684"	"15823922"	"15702992"	"15661362"	"15660226"	"15657400"	"15592175"	"15590703"	"15572405"	"15557502"	"15510726"	"15389316"	"15300860"	"15281076"	"15236894"	"15221449"	"15180258"	"15180257"	"15157964"	"15121790"	"15090598"	"15078073"	"15078071"	"15043528"	"14648237"	"14609561"	"14604828"	"14578428"	"14519688"	"12966030"	"12959133"	"12876834"	"12805278"	"12786748"	"12743369"	"12717441"	"12692478"	"12585968"	"12510399"	"12485990"	"12471897"	"12466270"	"12408073"	"12408067"	"12382282"	"12324385"	"12221080"	"12121736"	"12112664"	"12107438"	"11992483"	"11973280"	"11964381"	"11921171"	"11889386"	"11853761"	"11850180"	"11753415"	"11753408"	"11710498"	"11710497"	"11549711"	"11468276"	"11450843"	"11391666"	"11301004"	"11222540"	"11212353"	"11171103"	"11162241"	"11139240"	"11138009"	"11080149"	"11060213"	"10973247"	"10958658"	"10930322"	"10891855"	"10889203"	"10868224"	"10868221"	"10842588"	"10704190"	"10612833"	"10574757"	"10502787"	"10471988"	"10425080"	"10447383"	"10414956"	"10364543"	"10320095"	"10094549"	"9927480"	"9843659"	"9761396"	"9753783"	"9703432"	"9678669"	"9634418"	"9620764"	"9590277"	"9585227"	"9540407"	"9537904"	"9435277"	"9391006"	"9411747"	"9278160"	"9182663"	"9680294"	"9176483"	"9171833"	"9171832"	"9070921"	"15945170"	"9227854"	"9186010"	"9027465"	"9002678"	"8900236"	"8884267"	"8842737"	"8622919"	"7568224"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"POU4F3"	"nonsyndromic genetic deafness"	"32684921"	"32602462"	"32390314"	"32211215"	"31956913"	"31915380"	"31830441"	"31696427"	"31616037"	"31227770"	"31142766"	"30605626"	"30380528"	"30015805"	"29979748"	"29856797"	"29850532"	"29846597"	"29406519"	"29336137"	"29203899"	"29185275"	"28790396"	"20301607"	"28698811"	"28545070"	"28402854"	"28346141"	"28053790"	"28039372"	"27999687"	"27881722"	"27874187"	"27751776"	"27592349"	"27559308"	"27535032"	"27271650"	"27259519"	"27105927"	"27083884"	"26697340"	"26639154"	"26558776"	"26456090"	"26300990"	"26209643"	"26057869"	"26015538"	"25995473"	"25954156"	"25760709"	"25714426"	"25698932"	"25616095"	"25388789"	"25372459"	"25243889"	"25015561"	"24676347"	"24586731"	"24556497"	"24535414"	"24496619"	"24459893"	"24310984"	"24275721"	"24260153"	"24164807"	"24116103"	"24048839"	"23828563"	"23796904"	"23767834"	"23614009"	"23536072"	"23193000"	"23166779"	"23164077"	"23150788"	"23100430"	"23022312"	"22985730"	"22938506"	"22778016"	"22622133"	"22340499"	"22279587"	"22262898"	"22094003"	"21958861"	"21935940"	"21858141"	"21810458"	"21614551"	"21576819"	"21402877"	"21290089"	"21239885"	"20826176"	"20434433"	"20394804"	"20233874"	"19908278"	"19494575"	"19462854"	"19452222"	"19372648"	"19339595"	"18427387"	"18347256"	"18228599"	"18212062"	"20054994"	"17646067"	"17611044"	"17331196"	"17047322"	"16600193"	"16226339"	"16080998"	"15510726"	"15490091"	"15465029"	"15254021"	"15042710"	"14585957"	"12606546"	"12585968"	"12522684"	"12498790"	"12466504"	"12408069"	"12382282"	"12123480"	"10887080"	"10868222"	"10807331"	"10452377"	"10320095"	"9927480"	"9585227"	"9537904"	"9506947"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SLC17A8"	"nonsyndromic genetic deafness"	"32211215"	"31852197"	"31640099"	"31481876"	"31330310"	"30669200"	"30324647"	"30275281"	"29706463"	"29091932"	"20301607"	"28647561"	"28314816"	"26913517"	"26797701"	"26239290"	"25668490"	"25122905"	"24676347"	"23341777"	"23341594"	"20187846"	"20081852"	"19915548"	"18674745"	"18498073"	"18278042"	"17660252"	"16722234"	"16516863"	"16266785"	"16101493"	"15924342"	"15793854"	"15714284"	"15672399"	"15596234"	"15515175"	"15329888"	"15103023"	"15102489"	"14751290"	"14684482"	"14648683"	"14622230"	"12956725"	"12923814"	"12388773"	"12384506"	"12151341"	"12097496"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TECTA"	"nonsyndromic genetic deafness"	"32749216"	"32682410"	"32382995"	"32241263"	"32186941"	"32139538"	"32041031"	"32001211"	"31807709"	"31725169"	"31716650"	"31706454"	"31609204"	"31554319"	"31271760"	"31083078"	"30935366"	"30801007"	"30703234"	"30627650"	"30622556"	"30615974"	"30486110"	"30421420"	"30402065"	"30282018"	"30263960"	"30078195"	"30055715"	"29856981"	"29667327"	"29371927"	"29293505"	"29062245"	"28946916"	"28935705"	"28914457"	"20301607"	"28725383"	"28419064"	"28012541"	"27610647"	"27582296"	"27488636"	"27368438"	"27252352"	"27242163"	"27142990"	"26991544"	"26811476"	"26806019"	"26705404"	"26248891"	"26085343"	"25810486"	"25809937"	"25758224"	"25719458"	"25663274"	"25564867"	"25549536"	"25413827"	"25279224"	"25088910"	"25080593"	"25008054"	"24920025"	"24816743"	"24808544"	"24803658"	"24657061"	"24655516"	"24655070"	"24636747"	"24586623"	"24434281"	"24378291"	"24376553"	"24363064"	"24222632"	"24130743"	"23936151"	"23890674"	"23850650"	"23767834"	"23745134"	"23665419"	"23614017"	"23443030"	"23252734"	"23226338"	"22995349"	"22986827"	"22940608"	"22877241"	"22875146"	"22796475"	"22723357"	"22718023"	"22544735"	"22534022"	"22343130"	"22178952"	"22139980"	"22037481"	"21917145"	"21618219"	"21575588"	"21567249"	"21554471"	"21520338"	"21519551"	"21517147"	"21396923"	"21376088"	"21368133"	"22567349"	"21081075"	"21079382"	"21073336"	"20964761"	"20947814"	"20739942"	"20420572"	"20227844"	"21622410"	"20142329"	"19914184"	"19888295"	"19877185"	"19326445"	"19324759"	"19260054"	"19160507"	"19132533"	"19005249"	"18853414"	"18849007"	"18835351"	"18797289"	"18665028"	"18617346"	"18582538"	"18575463"	"18516034"	"18502719"	"18452040"	"18439319"	"18368581"	"18311787"	"18280178"	"18234980"	"18022253"	"17884112"	"17661817"	"17635671"	"17559940"	"17550642"	"17440062"	"17431902"	"17373394"	"17335048"	"17220887"	"17136632"	"17020627"	"16965407"	"16765450"	"16750577"	"16736466"	"16718611"	"16677768"	"16423406"	"16423223"	"16289401"	"16283880"	"16270315"	"16262656"	"16107787"	"16004975"	"15995703"	"15932608"	"15850684"	"15791429"	"15729138"	"15661372"	"15514932"	"15452827"	"15319541"	"15305027"	"15115744"	"15062545"	"15053982"	"15047597"	"15007826"	"14523068"	"12923422"	"12746400"	"12742630"	"12711351"	"12687685"	"12577323"	"12537097"	"12490552"	"12472893"	"12445690"	"12438754"	"12408078"	"12408064"	"12382277"	"12369104"	"12364829"	"12324385"	"12162770"	"12123480"	"12077198"	"12077194"	"12062769"	"12000543"	"11882374"	"11826122"	"11711860"	"11707641"	"11423088"	"11371719"	"11333869"	"11287481"	"11256996"	"11173221"	"11169484"	"11102570"	"11087000"	"11086976"	"11079422"	"11054707"	"11031096"	"11027526"	"10987647"	"10908785"	"10880991"	"10777810"	"10730370"	"10678768"	"10683117"	"10683107"	"10675773"	"10655048"	"10613514"	"10602097"	"10581465"	"10579223"	"10577797"	"10567738"	"10562253"	"10450873"	"10436061"	"10413779"	"10407128"	"10366031"	"10357940"	"10320099"	"10235299"	"10196713"	"10065902"	"10023815"	"9949200"	"9927480"	"9822151"	"9821961"	"9795148"	"9763681"	"9748358"	"9712662"	"9637060"	"9634418"	"9624592"	"9570803"	"9590290"	"9590277"	"9585227"	"9581657"	"9514841"	"9507076"	"9550144"	"9503015"	"9483552"	"9405688"	"9406940"	"9389555"	"9321681"	"9307137"	"9263581"	"9294718"	"9207941"	"9219871"	"9153069"	"9112992"	"9079715"	"9176728"	"9011384"	"8951881"	"8757262"	"8836232"	"8656215"	"8625894"	"8724978"	"8593887"	"8778297"	"9011761"	"8815448"	"8787130"	"9124010"	"9124009"	"8848131"	"8834783"	"8788965"	"8592102"	"8624724"	"8647719"	"8582286"	"7589501"	"7671824"	"7672033"	"7790923"	"7540681"	"7629313"	"7635269"	"7895675"	"7749729"	"7714520"	"7700533"	"7696633"	"7897496"	"7844258"	"7814688"	"7527806"	"7984033"	"7526408"	"7981639"	"7981036"	"8197137"	"8161460"	"8028479"	"8299574"	"8170498"	"8170344"	"8307122"	"8149327"	"8145300"	"8229207"	"8248352"	"8134018"	"8397408"	"8396014"	"8292827"	"8392068"	"8228967"	"8513482"	"8453762"	"7680968"	"8382709"	"8270791"	"1463609"	"1281491"	"1473276"	"1527591"	"1354338"	"1533862"	"1600512"	"1317499"	"1571103"	"1315904"	"21551657"	"1316569"	"1307717"	"1811932"	"1724308"	"1761757"	"1661821"	"1722132"	"1659590"	"1713234"	"2054328"	"1843755"	"1814676"	"1707068"	"1705269"	"2206535"	"1706486"	"2361013"	"2319012"	"2381518"	"2351060"	"2346232"	"2327597"	"2210507"	"2170863"	"2808749"	"19210430"	"2794128"	"32327873"	"2790734"	"2918089"	"2707359"	"2487636"	"3265139"	"3233731"	"2855912"	"3179739"	"3262721"	"2464623"	"2459626"	"3390700"	"3370490"	"3351504"	"3354848"	"3503700"	"3427450"	"3478724"	"2443220"	"3598645"	"2884663"	"3594266"	"3497362"	"3300865"	"3584538"	"3567663"	"3567662"	"3493268"	"2826205"	"2430075"	"3793972"	"3746418"	"2429740"	"3745520"	"2426705"	"21898959"	"3760751"	"4075153"	"3834030"	"4056865"	"3930511"	"2414340"	"3876526"	"4027619"	"4027680"	"3873522"	"3973098"	"3986615"	"3978000"	"3978423"	"3973959"	"3830676"	"2983036"	"6470220"	"6148715"	"6747029"	"6588385"	"6726340"	"6724134"	"6587371"	"6206930"	"6366381"	"6635667"	"6619852"	"6604077"	"6616201"	"6863605"	"6306065"	"6850352"	"6875457"	"6823306"	"24875726"	"6834437"	"6349422"	"7182475"	"7155452"	"6182948"	"7127123"	"7130464"	"7085924"	"7062113"	"7062112"	"6978892"	"7068948"	"7108554"	"6203734"	"7338709"	"6269697"	"7276251"	"7346585"	"6168668"	"6980968"	"6166731"	"7231524"	"7266744"	"7225884"	"6970759"	"7264545"	"7242911"	"6171447"
+"TMC1"	"nonsyndromic genetic deafness"	"32493795"	"32371604"	"32343945"	"32325031"	"32225107"	"32219816"	"32167554"	"32152768"	"32048492"	"32009898"	"31902726"	"31854501"	"31761710"	"31661074"	"31649296"	"31633194"	"31585078"	"31584127"	"31548403"	"31389194"	"31379920"	"31270503"	"31176026"	"31083078"	"31028865"	"30878560"	"30853433"	"30808210"	"30737404"	"30733538"	"30726219"	"30718571"	"30686588"	"30682115"	"30670701"	"30613966"	"30579095"	"30291150"	"30138589"	"30108254"	"30108230"	"30063209"	"29872055"	"29755320"	"29692870"	"29654653"	"29601257"	"29533536"	"29434063"	"29395910"	"29321360"	"29270100"	"29258297"	"29196752"	"29093662"	"29069081"	"29062245"	"28862181"	"20301607"	"28663585"	"28534737"	"28501645"	"27893727"	"27798175"	"27798174"	"27573290"	"27452796"	"27410728"	"27298354"	"27247785"	"27236922"	"27226598"	"27162344"	"27068579"	"27033582"	"26879195"	"26822030"	"26758827"	"26561413"	"26352665"	"26324676"	"26321635"	"26271415"	"26226225"	"26226137"	"26157030"	"26157029"	"26092689"	"26079994"	"26049141"	"26029705"	"26011067"	"25560804"	"25550511"	"25467981"	"25458163"	"25423259"	"25388789"	"25114259"	"25074487"	"24981230"	"24949729"	"24933710"	"24926664"	"24827932"	"24676347"	"24423408"	"24416283"	"24365273"	"24156272"	"24127528"	"24127526"	"23965379"	"23871232"	"23767834"	"23690975"	"23523375"	"23364694"	"23277480"	"23226338"	"22920869"	"22730774"	"22652773"	"22607986"	"22330676"	"22288896"	"22167055"	"22105175"	"22105165"	"21917145"	"21725640"	"21276842"	"21252500"	"21250555"	"21117948"	"20739942"	"20672865"	"20447146"	"20373850"	"19956844"	"19187973"	"19180119"	"18846637"	"18846636"	"18804553"	"18616530"	"18259073"	"17877751"	"17685605"	"17250663"	"17191442"	"16978186"	"16648588"	"16627570"	"16287143"	"16134132"	"15885871"	"15857715"	"15850684"	"15605408"	"15354000"	"14552423"	"12906855"	"12812529"	"12123480"	"11850623"	"11850618"	"9422524"	"9108336"	"11540080"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CABP2"	"nonsyndromic genetic deafness"	"31661684"	"31195974"	"30263960"	"29661613"	"28183797"	"27822497"	"27260575"	"26809054"	"22981119"	"22366086"	"20600112"	"19446521"	"17947313"	"11415439"	"10625670"	"9770267"	"9642148"	"9388233"	"9058200"	"7835433"	"8050453"	"8300576"	"8477750"	"1316906"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CDH23"	"nonsyndromic genetic deafness"	"32710572"	"32645618"	"32637632"	"32608086"	"32587610"	"20301442"	"32494297"	"32485727"	"32468012"	"32425987"	"32327469"	"32306668"	"32276436"	"32176153"	"32134349"	"32115674"	"32101784"	"32090030"	"32048449"	"32040524"	"32009898"	"31992338"	"31982642"	"31858762"	"31850270"	"31793361"	"31755791"	"31740869"	"31706454"	"31706157"	"31622631"	"31546658"	"31486067"	"31445392"	"31424985"	"31399498"	"31322239"	"31247458"	"31231422"	"31072932"	"30947719"	"30881389"	"30878560"	"30774966"	"30772743"	"30747484"	"30675896"	"30637693"	"30617060"	"30597229"	"30582396"	"30535804"	"30531642"	"30516593"	"30459346"	"30367262"	"30358468"	"30342662"	"30131691"	"30123251"	"30033219"	"29986705"	"29751835"	"29688962"	"29625443"	"29568747"	"29486248"	"29443515"	"29429180"	"29421162"	"29311828"	"29292161"	"29287849"	"29261728"	"29186428"	"29148562"	"29142287"	"29062245"	"28980068"	"28900111"	"28847902"	"20301607"	"28705869"	"28686716"	"28514956"	"28501645"	"28498079"	"28495838"	"28413019"	"28383030"	"28287619"	"28265457"	"28263850"	"28241681"	"28181551"	"28011304"	"27882946"	"27867666"	"27792758"	"27635202"	"27631835"	"27583663"	"27583405"	"27565685"	"27529670"	"27440999"	"27376950"	"27349180"	"27255811"	"26936824"	"26878454"	"26876963"	"26827652"	"26791358"	"26762412"	"26756918"	"26748055"	"26664958"	"26620972"	"26561413"	"26484279"	"26445815"	"26399936"	"26346818"	"26264712"	"26226137"	"26180195"	"26049141"	"26003529"	"25963016"	"25788563"	"25765874"	"25732708"	"25575603"	"25493955"	"25484013"	"25445010"	"25404053"	"25279224"	"25258483"	"25231367"	"25211151"	"25157507"	"25129075"	"24767429"	"24741041"	"24654934"	"24626987"	"24507011"	"24465885"	"24448297"	"24416283"	"24239741"	"24237488"	"24221507"	"24172198"	"24164807"	"23967202"	"23965379"	"23792079"	"23776407"	"23770805"	"23658152"	"23467356"	"23454634"	"23451239"	"23384607"	"23359017"	"23329832"	"23135401"	"23052906"	"23045546"	"22977299"	"22899989"	"22879593"	"22815625"	"22761589"	"22652773"	"22607986"	"22581638"	"22443853"	"22413011"	"22381527"	"22363448"	"22349217"	"22326520"	"22138310"	"22135276"	"21940737"	"21917145"	"21709241"	"21689626"	"21594677"	"21532990"	"21519551"	"21436032"	"21387690"	"21234346"	"21203349"	"21174530"	"21117948"	"20976199"	"20958966"	"20844544"	"20815905"	"20739546"	"20660251"	"20644563"	"20639393"	"20613545"	"20513143"	"20505086"	"20498078"	"20470874"	"20399731"	"20146813"	"20142502"	"20058854"	"20052763"	"19888295"	"19840950"	"19756182"	"19706872"	"19683999"	"19633555"	"19487694"	"19447093"	"19396230"	"19375528"	"19321743"	"19320974"	"19297620"	"19285967"	"19270079"	"19268276"	"19057657"	"18996172"	"18971469"	"18957941"	"18804553"	"18662770"	"18654787"	"18619539"	"18484607"	"18429043"	"18395802"	"18384968"	"18368581"	"18348277"	"18339676"	"18323324"	"18280008"	"18273900"	"18053802"	"17964557"	"17850630"	"17805295"	"17407589"	"17376850"	"17291455"	"17205784"	"17175124"	"17107766"	"17050716"	"16679490"	"16631134"	"16598924"	"16579977"	"16550584"	"16545802"	"16426780"	"16288196"	"16281288"	"16009547"	"16005171"	"15928608"	"15882574"	"15882573"	"15850684"	"15829543"	"15829536"	"15820310"	"15788760"	"15660226"	"15590703"	"15537665"	"15353998"	"15118709"	"15057246"	"15057245"	"14674486"	"14648237"	"14609561"	"14578428"	"14558889"	"14519688"	"12910270"	"12876834"	"12786748"	"12596935"	"12522556"	"12485990"	"12438755"	"12408077"	"12407180"	"12121736"	"12075507"	"11857743"	"11750125"	"11597768"	"11531971"	"11386759"	"11350126"	"11322776"	"11138009"	"11138008"	"11090341"	"8586272"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CIB2"	"nonsyndromic genetic deafness"	"20301442"	"32430498"	"31636333"	"31244373"	"31231422"	"31213979"	"30531642"	"30459346"	"30303587"	"30291150"	"30174586"	"30055715"	"29658965"	"29255404"	"29112224"	"29086887"	"29084757"	"28902924"	"28729416"	"28663585"	"28263850"	"28031293"	"27771768"	"27489023"	"27440999"	"27260575"	"26473954"	"26426422"	"26416264"	"26378684"	"26173970"	"25491636"	"25404053"	"24616153"	"24239741"	"24130508"	"24022220"	"23331261"	"23275889"	"23023331"	"22779914"	"19433056"	"18989754"	"18611855"	"16735990"	"9669331"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"CLDN14"	"nonsyndromic genetic deafness"	"32747424"	"32251970"	"32164158"	"31934042"	"31874721"	"31781163"	"31527509"	"31202812"	"30828346"	"30726531"	"30523390"	"30271933"	"29686978"	"29673049"	"29561186"	"29447821"	"29434063"	"29325119"	"28811056"	"20301607"	"28720371"	"28373577"	"28229505"	"27927781"	"27915449"	"27870113"	"27838790"	"27629923"	"27573290"	"27539983"	"27207647"	"27083448"	"26842849"	"26773453"	"26554238"	"26107257"	"25504362"	"25071082"	"24752540"	"24339547"	"24249740"	"23965379"	"23745134"	"23590985"	"23283989"	"23235333"	"22246673"	"21871748"	"20962745"	"20811388"	"20728256"	"20678907"	"19664321"	"19561606"	"19254696"	"17241765"	"16259330"	"15880785"	"12913076"	"12791041"	"11163249"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ESPN"	"nonsyndromic genetic deafness"	"32709294"	"32709288"	"32467597"	"32412047"	"31677115"	"31664556"	"31649099"	"31638198"	"31583095"	"31486067"	"31418062"	"31389194"	"31197263"	"31118499"	"31038179"	"30946218"	"30859187"	"30825259"	"30733538"	"30627588"	"30618491"	"30588548"	"30374605"	"30344259"	"30325651"	"30276898"	"30237216"	"30194615"	"29690759"	"29644461"	"29572253"	"29481636"	"29423210"	"29385671"	"29377879"	"29340701"	"29181500"	"29143935"	"28992338"	"28968992"	"28873971"	"28873969"	"28840254"	"28779237"	"20301607"	"28584624"	"28508132"	"28491886"	"28422531"	"28336050"	"28321427"	"28303389"	"28281779"	"28253373"	"28178674"	"28158862"	"30085455"	"27955924"	"27811163"	"27555106"	"27761660"	"27563519"	"27344295"	"27274834"	"27165828"	"27090533"	"26926603"	"26886463"	"26820386"	"26785147"	"26783738"	"26626617"	"26590390"	"26564273"	"26561356"	"26498279"	"26385862"	"26352146"	"26320038"	"25925700"	"25925621"	"25852881"	"25839740"	"25722830"	"25165174"	"25039018"	"24551599"	"24499775"	"24424026"	"24232194"	"24178977"	"26535253"	"24170813"	"24122015"	"23975752"	"23884997"	"23726585"	"23718940"	"23300261"	"23135250"	"22916131"	"22740719"	"22613452"	"22223608"	"22031101"	"21937999"	"21868618"	"21814180"	"21713524"	"21317253"	"21152390"	"20505086"	"20395256"	"20177709"	"19955359"	"19780097"	"19561347"	"19287378"	"19102128"	"19074001"	"18973245"	"18551532"	"17614983"	"17409466"	"17359973"	"17358907"	"17287971"	"17058051"	"16909209"	"16648304"	"16569662"	"16413524"	"16235133"	"16206170"	"15930085"	"15477377"	"15286153"	"15190118"	"15173377"	"12606480"	"12598619"	"12207892"	"9315746"	"1911116"	"3264984"	"3867248"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ESRRB"	"nonsyndromic genetic deafness"	"32681043"	"32658986"	"32579865"	"32397801"	"32277787"	"32244352"	"32111830"	"32043966"	"31956652"	"31874721"	"31835641"	"31741180"	"31683443"	"31599722"	"31570001"	"31564197"	"31550482"	"31492838"	"31477042"	"31462142"	"31390356"	"31389194"	"31315026"	"31223284"	"31126612"	"31036938"	"31031139"	"30896984"	"30828346"	"30782842"	"30733432"	"30655337"	"30567463"	"30539292"	"30527662"	"30526884"	"30361642"	"30299501"	"30287856"	"30275266"	"30217531"	"30125770"	"30075122"	"30033875"	"29989581"	"29940916"	"29914522"	"29910149"	"29870789"	"29843638"	"29636544"	"29562912"	"29531818"	"29513567"	"29320730"	"29320691"	"29267372"	"29212799"	"29175417"	"29129686"	"29048434"	"28982762"	"28969006"	"28924038"	"28892074"	"28834535"	"20301607"	"28668961"	"28636277"	"28584089"	"28467928"	"28457890"	"28408750"	"28395292"	"28393933"	"28373704"	"28240320"	"28189393"	"28169326"	"28162885"	"28130335"	"27924227"	"27822342"	"27791185"	"27794480"	"27784905"	"27723719"	"27608441"	"27763777"	"27601327"	"27507929"	"27399974"	"27363015"	"27100146"	"27085298"	"27071961"	"27066960"	"26938105"	"26870787"	"26798492"	"26663459"	"26627478"	"26597826"	"26584852"	"26523946"	"26494837"	"26443847"	"26440325"	"26380406"	"26255679"	"26206133"	"26201266"	"26166082"	"26109048"	"25990348"	"25805499"	"25737630"	"25650115"	"25522312"	"25496115"	"25493341"	"25491368"	"25367296"	"25267505"	"25219474"	"25203285"	"25192464"	"25134796"	"25128701"	"25122140"	"25071184"	"25061099"	"25037569"	"25023176"	"24958871"	"24929238"	"24905170"	"24898611"	"24881676"	"24695638"	"24693491"	"24693477"	"24625570"	"24465482"	"24308032"	"24207026"	"24129055"	"24120664"	"24099775"	"24053666"	"23932125"	"23771838"	"23705979"	"23642061"	"23595148"	"23582324"	"23508100"	"23473982"	"23462645"	"23395962"	"23360481"	"23287469"	"23277015"	"23169531"	"23064149"	"23040478"	"23040477"	"23040470"	"23019124"	"22989381"	"22980981"	"22977234"	"22951369"	"22902501"	"22143885"	"21802533"	"21654807"	"21602925"	"21589869"	"21543442"	"21460836"	"22567352"	"21179244"	"21177257"	"21056663"	"21047904"	"20889495"	"20569982"	"20447394"	"20410283"	"20362541"	"20297663"	"20132009"	"20128821"	"19995984"	"19740934"	"19605512"	"19350676"	"19136965"	"18957414"	"18775884"	"18662995"	"18585445"	"18555785"	"18537752"	"18483421"	"18399786"	"18328649"	"18179891"	"18178135"	"17940043"	"16681769"	"16439465"	"16332939"	"15770498"	"15766247"	"15713377"	"15161930"	"15003627"	"14638870"	"12654265"	"12482977"	"12470660"	"12185669"	"11705994"	"11564725"	"11559547"	"11297507"	"11137980"	"10598588"	"10428842"	"10213386"	"10072763"	"10021343"	"9676434"	"9344655"	"9218433"	"9178750"	"8626619"	"8652414"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GIPC3"	"nonsyndromic genetic deafness"	"32682410"	"31389194"	"30368385"	"29605370"	"29021281"	"28253373"	"27462107"	"26029705"	"25296581"	"23743496"	"23510777"	"23226338"	"23050840"	"22363784"	"21660509"	"21594677"	"21326233"	"17873379"	"12239632"	"12011997"	"12011974"	"11956658"	"11836631"	"11836571"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"GRXCR1"	"nonsyndromic genetic deafness"	"32641180"	"32211215"	"31389194"	"30380418"	"30157177"	"20301607"	"25802247"	"22951369"	"21185188"	"20137778"	"20137774"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ILDR1"	"nonsyndromic genetic deafness"	"32587380"	"31989664"	"31861965"	"31645637"	"31600786"	"31139206"	"30804975"	"29849566"	"29224747"	"28945813"	"28785060"	"28719732"	"28713423"	"28461473"	"28322503"	"27764096"	"27260575"	"27195292"	"26440088"	"26226137"	"25822906"	"25819842"	"25668204"	"25217574"	"24990150"	"24790043"	"24768815"	"24212375"	"23863714"	"23826244"	"23239027"	"23226338"	"22365942"	"21255762"	"18654634"	"15381095"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"LHFPL5"	"nonsyndromic genetic deafness"	"32371604"	"32009898"	"31835641"	"31389194"	"31177638"	"31126177"	"30808210"	"30718571"	"30597229"	"30476627"	"30298622"	"30291150"	"30177809"	"30070639"	"29755320"	"29568747"	"29069081"	"20301607"	"28281779"	"28082074"	"27798175"	"27410728"	"27260575"	"26437881"	"26261983"	"26049141"	"26029705"	"25550511"	"25467981"	"23217710"	"21816241"	"19102128"	"17876667"	"16752389"	"16459341"	"16395596"	"15905332"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"LOXHD1"	"nonsyndromic genetic deafness"	"32682410"	"32645618"	"32149082"	"31709873"	"31547530"	"30973406"	"30760222"	"30622556"	"30267097"	"30139988"	"30123251"	"29799290"	"29676012"	"29287594"	"28984810"	"28900111"	"20301607"	"28235828"	"27242896"	"27121161"	"26973026"	"26561413"	"26337789"	"26310151"	"26280645"	"25792669"	"25548511"	"24657061"	"24120096"	"23585771"	"23226338"	"22975204"	"22341973"	"21465660"	"24436636"	"19732867"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MARVELD2"	"nonsyndromic genetic deafness"	"31897604"	"31574128"	"30828346"	"30406641"	"30100545"	"29984492"	"29752989"	"29659773"	"28767685"	"20301607"	"28436082"	"28131587"	"27957319"	"27036040"	"26677943"	"26561413"	"25919114"	"25885414"	"25666562"	"25599387"	"25319490"	"25217574"	"25097232"	"24949935"	"24940735"	"24889144"	"24825397"	"24652413"	"23979167"	"23979155"	"23073616"	"22926991"	"22711802"	"22671593"	"22671589"	"22520461"	"22394074"	"22162632"	"22097895"	"21868126"	"21763689"	"21624353"	"21503766"	"21480761"	"21245199"	"21097846"	"20822540"	"20533305"	"20332670"	"20164257"	"20033365"	"19538290"	"19535456"	"18768749"	"18706387"	"18084694"	"17979701"	"17916321"	"17340211"	"17291627"	"17186462"	"16910553"	"16365161"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO15A"	"nonsyndromic genetic deafness"	"32769956"	"32682410"	"32623615"	"32617096"	"32451864"	"32279305"	"32219816"	"32134349"	"31997689"	"31992338"	"31902726"	"31898538"	"31850270"	"31835641"	"31791989"	"31753095"	"31740869"	"31581539"	"31580838"	"31579092"	"31389194"	"31379920"	"31370293"	"31301639"	"31250571"	"30953472"	"30943474"	"30878560"	"30827920"	"30733538"	"30682115"	"30579095"	"30579064"	"30139988"	"30068307"	"29986705"	"29849560"	"29692870"	"29625443"	"29547942"	"29482514"	"29331002"	"29196752"	"29062245"	"28984810"	"28964305"	"28900111"	"20301607"	"28439001"	"28390610"	"28383030"	"28348515"	"28000701"	"27870113"	"27743438"	"27734841"	"27635202"	"27573290"	"27423189"	"27375115"	"27344577"	"27068579"	"26915297"	"26810297"	"26561413"	"26445815"	"26399936"	"26346818"	"26308726"	"26242193"	"26226137"	"26029705"	"26011067"	"25792667"	"25788563"	"25404053"	"24949729"	"24926664"	"24853665"	"24767429"	"24657061"	"24206587"	"24130743"	"24105371"	"23967202"	"23865914"	"23767834"	"23226338"	"22954512"	"26105388"	"22736430"	"22652773"	"22245518"	"21917145"	"21898990"	"21117948"	"20739942"	"20642360"	"20505086"	"19888295"	"19309289"	"19274735"	"18804553"	"18348273"	"17853461"	"17851452"	"17546645"	"16580798"	"15661519"	"15654330"	"14610277"	"12408074"	"12296523"	"12114748"	"11735029"	"11583965"	"11041382"	"10868225"	"10552926"	"10471988"	"10049592"	"9703981"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYO3A"	"nonsyndromic genetic deafness"	"32519820"	"32451864"	"32006683"	"31484049"	"31279628"	"31083078"	"30682115"	"30123247"	"29880844"	"20301607"	"28642064"	"27622050"	"27582493"	"27063751"	"27014590"	"26926603"	"26841241"	"26785147"	"26754646"	"26166082"	"25822849"	"25500906"	"25402663"	"25279224"	"24214986"	"23990876"	"23943784"	"22954581"	"22915763"	"22337492"	"22264607"	"21586619"	"21165622"	"20826793"	"20610541"	"20192276"	"20090771"	"19732867"	"19390476"	"19332056"	"19229853"	"18348273"	"18229949"	"17614983"	"17021180"	"17012748"	"15522885"	"14517327"	"12631723"	"11991710"	"10936054"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"OTOA"	"nonsyndromic genetic deafness"	"32681043"	"32552051"	"31915229"	"31527525"	"31391281"	"31204719"	"31028847"	"30740825"	"30289875"	"30149782"	"29765035"	"29178603"	"28944237"	"20301607"	"28624306"	"28501645"	"28000701"	"27068579"	"26691158"	"26029705"	"25564867"	"25528277"	"25062256"	"24963352"	"24655515"	"23341286"	"23173898"	"23129639"	"19888295"	"19128473"	"19088187"	"12445334"	"11972037"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"OTOG"	"nonsyndromic genetic deafness"	"32251013"	"32244554"	"32048449"	"31939014"	"31874721"	"31776257"	"31645975"	"31482700"	"30947719"	"30818062"	"30800184"	"30139988"	"30097855"	"29976152"	"29800624"	"28332011"	"26636018"	"25758224"	"24797903"	"24378291"	"24268166"	"23850727"	"23745134"	"23122587"	"21813206"	"17911254"	"16828974"	"12491735"	"12382277"	"11506947"	"11178734"	"11087000"	"11063250"	"10655058"	"10655048"	"10337628"	"9405633"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"OTOGL"	"nonsyndromic genetic deafness"	"31465999"	"29311327"	"28742274"	"28426234"	"27340278"	"25829320"	"25719458"	"24663154"	"24378291"	"23850727"	"23122586"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PJVK"	"nonsyndromic genetic deafness"	"32294153"	"31455540"	"30936319"	"30582396"	"29990470"	"28964305"	"20301607"	"28209736"	"28089576"	"27260575"	"27177047"	"26544938"	"26544930"	"26166082"	"25631766"	"25214170"	"24814232"	"23965379"	"23562982"	"23407324"	"22617256"	"22575033"	"22530481"	"22167055"	"21935370"	"21696384"	"20739942"	"20624953"	"19888295"	"19732867"	"19160860"	"17718865"	"17373699"	"17350798"	"17301963"	"16804542"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"RDX"	"nonsyndromic genetic deafness"	"32768811"	"32767485"	"32764236"	"32747613"	"32721618"	"32687325"	"32659577"	"32594252"	"32572651"	"32567834"	"32545789"	"32535754"	"32479060"	"32469254"	"32467261"	"32453571"	"32408598"	"32394132"	"32391452"	"32388439"	"32388255"	"32313735"	"32299869"	"32286070"	"32282867"	"32280874"	"32250888"	"32241397"	"32215417"	"32160699"	"32125827"	"32115829"	"32109698"	"32070581"	"32029107"	"32023915"	"32009390"	"32003985"	"31989994"	"31975441"	"31950953"	"31943999"	"31943922"	"31934653"	"31911385"	"31888210"	"31841343"	"31834496"	"31812376"	"31783711"	"31763523"	"31757705"	"31756998"	"31713742"	"31673948"	"31597427"	"31589046"	"31561514"	"31556599"	"31542009"	"31482441"	"31460521"	"31459892"	"31459707"	"31459103"	"31365142"	"31352507"	"31347632"	"31307718"	"31302539"	"31287396"	"31282636"	"31261642"	"31250571"	"31250271"	"31200202"	"31175440"	"31172006"	"31141621"	"31121987"	"31119503"	"31081317"	"31066384"	"31062806"	"31048167"	"30997802"	"30961725"	"30961321"	"30852196"	"30845689"	"30844637"	"30809532"	"30771466"	"30747933"	"30729814"	"30724300"	"30707264"	"30703224"	"30700648"	"30683391"	"30650986"	"30631949"	"30617721"	"30615442"	"30612299"	"30609552"	"30575790"	"30553245"	"30550983"	"30535558"	"30501277"	"30500774"	"30488285"	"30481733"	"30475574"	"30473860"	"30461953"	"30457862"	"30444501"	"30417192"	"30411743"	"30392354"	"30351012"	"30350589"	"30347995"	"30309016"	"30292170"	"30292004"	"30286392"	"30229511"	"30190115"	"30179240"	"30152223"	"30132864"	"30114741"	"30088248"	"30086972"	"30086489"	"31950666"	"30059100"	"30041157"	"30014531"	"29986705"	"29985426"	"29941986"	"29928443"	"29888438"	"29881468"	"29859459"	"29851472"	"29797696"	"29789959"	"29786423"	"29770413"	"29767535"	"29762890"	"29761189"	"29738948"	"29728973"	"29694027"	"29687474"	"29635567"	"29634794"	"29625381"	"29621172"	"29603346"	"29511823"	"29510959"	"29478103"	"29431838"	"29423479"	"29380926"	"29352795"	"29316117"	"29293864"	"29292764"	"29275611"	"29272845"	"29267228"	"29241137"	"29212136"	"29180230"	"29165861"	"29121466"	"29101903"	"29063930"	"28992572"	"28991983"	"28991974"	"28990608"	"28960805"	"28959411"	"28887318"	"28854671"	"28841986"	"28825661"	"28824962"	"28818710"	"28767088"	"28744746"	"20301607"	"28731274"	"28685904"	"28681982"	"28664781"	"28664635"	"28662404"	"28638778"	"28628311"	"28627549"	"28618276"	"28598144"	"28558171"	"28548156"	"28537428"	"28537423"	"28526789"	"28512756"	"28500972"	"28498422"	"28448003"	"28442008"	"28432960"	"28430263"	"28417168"	"28416262"	"28394378"	"28374608"	"28340788"	"28326236"	"28319388"	"28258407"	"28249217"	"31962024"	"28164187"	"28157869"	"28157864"	"28153227"	"28138994"	"30280536"	"31457235"	"28107996"	"28094774"	"28079226"	"28075205"	"28064138"	"28052866"	"28005262"	"28004139"	"27994324"	"27990550"	"27990179"	"27907880"	"27869349"	"27862819"	"27862728"	"27862432"	"27860341"	"27858028"	"27791286"	"27774785"	"27720798"	"27737506"	"27711813"	"27711737"	"27669376"	"27619644"	"27599117"	"27568527"	"27557403"	"27511132"	"27506267"	"27497561"	"27483131"	"27454101"	"27449371"	"27448756"	"27387802"	"27340220"	"27327861"	"27318472"	"27302580"	"27301804"	"27285383"	"27281604"	"27267735"	"27236429"	"27231709"	"27230828"	"27187064"	"27179804"	"27179475"	"27146290"	"27140093"	"27136167"	"27130125"	"27118012"	"27102306"	"27070589"	"27054669"	"27016566"	"27016303"	"27011494"	"27010164"	"26985872"	"26979691"	"26971624"	"26956490"	"26943238"	"26938055"	"26889929"	"26865581"	"26847854"	"26808250"	"26777676"	"26774089"	"26763156"	"26756852"	"26741283"	"26728490"	"26710299"	"26666592"	"26661376"	"26627968"	"26614424"	"26580903"	"26580902"	"26579950"	"26560599"	"26556760"	"26552520"	"26531304"	"26518690"	"26473550"	"26463875"	"26458868"	"26450431"	"26450294"	"26438043"	"26414522"	"26404478"	"26377008"	"26356315"	"26342802"	"26315306"	"26292147"	"26283045"	"26272107"	"26264509"	"26252765"	"26247847"	"26212277"	"26196849"	"26194022"	"26191543"	"26178383"	"26162694"	"26141876"	"26133527"	"26132775"	"26123323"	"26088918"	"26074208"	"26048817"	"26030223"	"26024263"	"25976886"	"25935409"	"25934367"	"25925025"	"25913213"	"25911044"	"25909992"	"25891999"	"25872458"	"25854231"	"25827119"	"25812678"	"25812170"	"25797881"	"25788128"	"25769021"	"25742010"	"25738393"	"25721530"	"25692234"	"25671390"	"25669560"	"25661171"	"25631920"	"25622138"	"25617209"	"25601693"	"25594316"	"25586961"	"25559864"	"25559034"	"25524181"	"25503243"	"25490589"	"25475692"	"25460755"	"25451633"	"25424725"	"25401274"	"25383623"	"25336045"	"25330776"	"25329453"	"25277104"	"25262478"	"25239011"	"25182866"	"25182074"	"25156874"	"25145416"	"25142696"	"25128343"	"25118619"	"25092241"	"25072885"	"25059196"	"25037490"	"25027541"	"25027243"	"25016412"	"24998357"	"24958305"	"26270506"	"24922563"	"24854655"	"24854223"	"24840410"	"24814332"	"24797949"	"24773280"	"24762697"	"24737545"	"24710801"	"24695634"	"24691532"	"24687782"	"24680769"	"24657941"	"24636256"	"24633767"	"24603360"	"26274066"	"24553402"	"24534153"	"24522483"	"24484058"	"24481004"	"24468343"	"24464919"	"24464681"	"24447453"	"24410688"	"24380686"	"24358110"	"24346340"	"24331046"	"24325902"	"24320549"	"24318316"	"24314527"	"24299426"	"24285636"	"24281674"	"24194533"	"24193214"	"24162066"	"24151131"	"24117989"	"24117693"	"24116702"	"24090362"	"24072710"	"24061783"	"24061355"	"24054661"	"24035798"	"24006555"	"24005241"	"23984644"	"23955807"	"23929413"	"23923127"	"23909984"	"23909596"	"23901961"	"23890622"	"23878073"	"23871284"	"23866048"	"23862752"	"23844163"	"23837558"	"23831716"	"23827728"
+"S1PR2"	"nonsyndromic genetic deafness"	"32768187"	"32726682"	"32695095"	"32647340"	"32610129"	"32598099"	"32473828"	"32457418"	"32446356"	"32434907"	"32433052"	"32424179"	"32402927"	"32355827"	"32278723"	"32278039"	"32202615"	"32176839"	"32088343"	"32051441"	"32033121"	"32016996"	"31988136"	"31922252"	"31896578"	"31875850"	"31791242"	"31742704"	"31708456"	"31701712"	"31648327"	"31618635"	"31616073"	"31610097"	"31602216"	"31546702"	"31502430"	"31477835"	"31404445"	"31385019"	"31360579"	"31302759"	"31300867"	"31295813"	"31279524"	"31235580"	"31231866"	"31213388"	"31171507"	"31160320"	"31136074"	"31063660"	"31062076"	"30999892"	"30977196"	"30972941"	"30877143"	"30843214"	"32368358"	"30807768"	"30793318"	"30782093"	"30761838"	"30718502"	"30712233"	"30666658"	"30664326"	"30627532"	"30609675"	"30563056"	"30543684"	"30512203"	"32280557"	"30484228"	"30468865"	"30462126"	"30439376"	"30377890"	"30367841"	"30362095"	"30352949"	"30290210"	"30231248"	"30226616"	"30123862"	"30118478"	"30097213"	"30083186"	"30045015"	"30038332"	"29999407"	"29974860"	"29963993"	"29903770"	"29854830"	"29788359"	"29782549"	"29776397"	"29766830"	"29733947"	"29700602"	"29650624"	"29620575"	"29615404"	"29604582"	"29572542"	"29534379"	"29511860"	"29475983"	"29458005"	"29453251"	"29428555"	"29401609"	"29298188"	"29286094"	"29249563"	"29237776"	"29208234"	"29168342"	"29138832"	"29130028"	"29123941"	"29100348"	"29093479"	"29088837"	"28990561"	"28970286"	"28954861"	"28949776"	"28943240"	"28878352"	"28725183"	"28676392"	"28626422"	"28598085"	"28596734"	"28560734"	"28524744"	"28493876"	"28492873"	"28400772"	"28321011"	"28302479"	"28248965"	"28206609"	"28181168"	"28143955"	"28120434"	"27994962"	"27980305"	"27959929"	"27829417"	"27816167"	"27814635"	"27801960"	"27612439"	"27696512"	"27611089"	"27562371"	"27501354"	"27459945"	"27389057"	"27383011"	"27284992"	"27224249"	"27212253"	"27160553"	"27158029"	"27080739"	"27079615"	"27032419"	"27027402"	"26999807"	"26989186"	"26943364"	"26937138"	"26921757"	"26884643"	"26843200"	"26805784"	"26729899"	"26716409"	"26669941"	"26631556"	"26596799"	"26579441"	"26579437"	"26552704"	"26534962"	"26518876"	"26485657"	"26384288"	"26376826"	"26350564"	"26329600"	"26324256"	"26321412"	"26290381"	"26246404"	"26243335"	"26209696"	"26200183"	"26108234"	"26105954"	"26094551"	"26090720"	"26017862"	"25997406"	"25938000"	"25908861"	"25907554"	"25805832"	"25762236"	"25746814"	"25692679"	"25673082"	"25633986"	"25575056"	"25557733"	"27275017"	"25512083"	"25363242"	"25313964"	"25274307"	"25180446"	"25168730"	"25147438"	"25084322"	"25041788"	"24931601"	"24913235"	"24903384"	"24854585"	"24851274"	"24848337"	"24828905"	"24819989"	"24812668"	"24777407"	"24743449"	"24700501"	"24632308"	"24614064"	"24486793"	"24486401"	"24453941"	"24451492"	"24397911"	"24176858"	"24139874"	"24064301"	"24038457"	"24028747"	"24021572"	"23951404"	"23934754"	"23922799"	"23892195"	"23879641"	"23849205"	"23839903"	"23816565"	"23770055"	"23732709"	"23723450"	"23666803"	"23629860"	"23569273"	"23538947"	"23466305"	"23419711"	"23337656"	"23318642"	"23300082"	"23281377"	"26417237"	"23229546"	"23106337"	"22960176"	"22931670"	"22828274"	"22707406"	"22691949"	"22606352"	"22566145"	"22547907"	"22500830"	"22445889"	"22277765"	"22244964"	"22185793"	"22140255"	"21984966"	"21945191"	"21712494"	"21660960"	"21411082"	"21360199"	"21358058"	"21145832"	"21135136"	"20980685"	"20978351"	"20947824"	"20702813"	"20554948"	"20554039"	"20431071"	"20407207"	"20194630"	"19261841"	"19161225"	"19157443"	"19139947"	"18658144"	"18612546"	"18426913"	"17431187"	"17409372"	"15240112"	"12810709"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"STRC"	"nonsyndromic genetic deafness"	"32746987"	"32705992"	"32476383"	"32388790"	"32203226"	"32112830"	"32000839"	"31992338"	"31985074"	"31896519"	"31884617"	"31776257"	"31706454"	"31645979"	"31552524"	"31425884"	"31320724"	"31218851"	"31083078"	"30966340"	"30956637"	"30894395"	"30867468"	"30801007"	"30758234"	"30617060"	"30531641"	"30316680"	"30263960"	"30250054"	"30083791"	"29986705"	"29922125"	"29921047"	"29860065"	"29633566"	"29429509"	"29425068"	"29339441"	"29196752"	"28984810"	"20301607"	"20301780"	"28317263"	"28000701"	"27469136"	"27068579"	"26746617"	"26346818"	"26309555"	"26136833"	"26031216"	"26011646"	"25528277"	"25418065"	"25279224"	"25157971"	"25122905"	"25062256"	"24963352"	"24853665"	"24690399"	"23990876"	"23850727"	"23811482"	"23745134"	"23648117"	"23593218"	"23233660"	"22147502"	"21767513"	"21575588"	"21165971"	"20382848"	"20135213"	"19818355"	"19788397"	"19246478"	"19128473"	"21686705"	"18849963"	"18297384"	"18201925"	"17666374"	"17326148"	"17098888"	"16999573"	"16650073"	"15729138"	"12829032"	"12445334"	"12324385"	"11687802"	"11160136"	"9829923"	"7544641"	"2549007"	"3252272"	"3108619"	"2995326"	"6097165"	"6100277"	"114452"	"4612015"	"4572579"	"4111768"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TMIE"	"nonsyndromic genetic deafness"	"32710135"	"32371604"	"32350519"	"32343945"	"32077101"	"32036710"	"31984408"	"31902726"	"31161875"	"30726219"	"30686903"	"30565069"	"30344259"	"30291150"	"30247660"	"30102633"	"29755320"	"29434063"	"29130968"	"29062245"	"29043102"	"28815080"	"20301607"	"28400833"	"27893727"	"27798175"	"27410728"	"27260575"	"26561413"	"26506750"	"26049141"	"25569570"	"25475183"	"25467981"	"25096539"	"24416283"	"23653069"	"23582420"	"23408957"	"22787490"	"22232643"	"21117948"	"20819378"	"20643544"	"20206386"	"20146813"	"19934034"	"19911258"	"19438934"	"18586001"	"18429782"	"18330929"	"18327602"	"17364360"	"17219777"	"16978186"	"16389551"	"16235133"	"15688219"	"12145746"	"12140191"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TMPRSS3"	"nonsyndromic genetic deafness"	"32682410"	"32306631"	"32235586"	"32186779"	"31835641"	"31529338"	"31412945"	"31408246"	"31389194"	"31379920"	"31204303"	"31045651"	"31016883"	"30443974"	"30242206"	"30142546"	"29460002"	"29434063"	"29293505"	"29072634"	"29062245"	"28984810"	"20301607"	"28695016"	"28566687"	"28498079"	"28422838"	"28409556"	"28263784"	"28260080"	"28246597"	"28213135"	"27583405"	"27573290"	"26716803"	"26531004"	"26408194"	"26226137"	"26191247"	"26036852"	"26014348"	"25770132"	"25542856"	"25474651"	"25029565"	"24949729"	"24924414"	"24853665"	"24657061"	"24526180"	"24490956"	"24416283"	"24130743"	"23958653"	"23443030"	"23255163"	"23226338"	"22975204"	"22678063"	"22652773"	"22446619"	"22382023"	"22086001"	"21937810"	"21786053"	"21534946"	"21454591"	"21196187"	"21117948"	"20146813"	"19888295"	"19170735"	"19117353"	"18508562"	"17981648"	"17918732"	"17620368"	"17614969"	"17551081"	"16618647"	"16460646"	"16283880"	"16273201"	"16254181"	"16254158"	"16158433"	"16112043"	"16021470"	"15447792"	"15361711"	"14695172"	"12920079"	"12762231"	"12393794"	"12324385"	"11907649"	"11802377"	"11741986"	"11462234"	"11424922"	"11137999"	"10825129"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TPRN"	"nonsyndromic genetic deafness"	"31382519"	"30959880"	"30871037"	"30832448"	"30159668"	"28968992"	"28767063"	"20301607"	"27693694"	"25096539"	"24285636"	"23340767"	"20170899"	"20170898"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"POU3F4"	"nonsyndromic genetic deafness"	"32675174"	"32048449"	"31994726"	"31786483"	"31620696"	"31518606"	"31490266"	"31440883"	"31177298"	"31131597"	"31063410"	"30874365"	"30733538"	"30478432"	"30289920"	"30176854"	"30065609"	"29986705"	"29921047"	"29877572"	"29749639"	"29287890"	"29137640"	"28984810"	"28790396"	"20301607"	"28632772"	"28630650"	"28213929"	"28051029"	"27941975"	"27905513"	"27863625"	"27779564"	"27730449"	"27577114"	"27189941"	"26996995"	"26600195"	"26346280"	"26323392"	"26166082"	"29937786"	"25928534"	"25792666"	"25299585"	"25279224"	"25259580"	"25243889"	"25175280"	"25130324"	"25057789"	"24887289"	"24769320"	"24687041"	"24651499"	"24608376"	"24314726"	"24096866"	"23990876"	"23979167"	"23973723"	"23933087"	"23745134"	"23606368"	"23400403"	"23395374"	"23085081"	"23076972"	"22770557"	"22455811"	"22445517"	"22389666"	"22243746"	"22201925"	"22139968"	"21880149"	"21663595"	"21633365"	"21555964"	"21504270"	"21250553"	"21209840"	"21193157"	"21144821"	"20668882"	"20524937"	"20412083"	"20374086"	"20105446"	"19930154"	"19696885"	"19671658"	"19493398"	"19476657"	"19438930"	"19307926"	"19217071"	"18831054"	"18664619"	"18577568"	"18231833"	"17988662"	"17935254"	"17901057"	"17245059"	"17116215"	"17018967"	"16924369"	"16794912"	"16735904"	"16373422"	"16365218"	"16229168"	"15850684"	"15655183"	"15574296"	"15031110"	"14504229"	"12942177"	"12062767"	"12049785"	"11923201"	"11834725"	"11685581"	"11356266"	"11073537"	"11041382"	"11035551"	"10868234"	"10868233"	"10644430"	"10587581"	"10559482"	"10490411"	"10473120"	"10464101"	"10407036"	"9889200"	"9830215"	"9778298"	"9667433"	"9585227"	"9524253"	"9484611"	"9372951"	"9109724"	"9105675"	"9102305"	"9298820"	"9131020"	"8872461"	"8793109"	"8791518"	"8900043"	"8589693"	"7581392"	"7720579"	"7839145"	"1628619"	"1565620"	"1348858"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SMPX"	"nonsyndromic genetic deafness"	"32197943"	"31992338"	"31583691"	"31478598"	"30874365"	"30618656"	"30342776"	"30174017"	"30065609"	"29559740"	"29287879"	"20301607"	"28684431"	"28542515"	"28271491"	"27181368"	"27170199"	"24936977"	"24687041"	"23675446"	"22911656"	"22682244"	"21893181"	"21775282"	"21549342"	"21549336"	"21519551"	"21131365"	"20811014"	"18550850"	"18397755"	"17717603"	"17664272"	"17091191"	"16095948"	"15893749"	"15042700"	"11825871"	"11401441"	"11381084"	"10598820"	"7632713"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"KRAS"	"Noonan syndrome"	"32770675"	"32770529"	"32769881"	"32768595"	"32768003"	"32767829"	"32766142"	"32764203"	"32763976"	"32763752"	"32762307"	"32761455"	"32759989"	"32759499"	"32758617"	"32756609"	"32755209"	"32755147"	"32754326"	"32754302"	"32754299"	"32754229"	"32753900"	"32753889"	"32753547"	"32753473"	"32753459"	"32753014"	"32751518"	"32750661"	"32748806"	"32748297"	"32747568"	"32747369"	"32745965"	"32745361"	"32744692"	"32743640"	"32743548"	"32742478"	"32741580"	"32740059"	"32739163"	"32737717"	"32737003"	"32733937"	"32733462"	"32732356"	"32731506"	"32730814"	"32729257"	"32728828"	"32728173"	"32727793"	"32727790"	"32727747"	"32727735"	"32727085"	"32726923"	"32726404"	"32725346"	"32725342"	"32723394"	"32722474"	"32721511"	"32719131"	"32718297"	"32718002"	"32717220"	"32715349"	"32714871"	"32714544"	"32713220"	"32711552"	"32711246"	"32709883"	"32709715"	"32709695"	"32708575"	"32708359"	"32707813"	"32707717"	"32707653"	"32704002"	"32703499"	"32703218"	"32700810"	"32700762"	"32699558"	"32699017"	"32698524"	"32697994"	"32697817"	"32696980"	"32694385"	"32694118"	"32693840"	"32693409"	"32692445"	"32686745"	"32685110"	"32684627"	"32683833"	"32683635"	"32682341"	"32682188"	"32681943"	"32680644"	"32676506"	"32676323"	"32675848"	"32675549"	"32675031"	"32669854"	"32666260"	"32665851"	"32665850"	"32664343"	"32664155"	"32662065"	"32656857"	"32655498"	"32655003"	"32654197"	"32650224"	"32649943"	"32649874"	"32648858"	"32648839"	"32648179"	"32648137"	"32647137"	"32646968"	"32646966"	"32646879"	"32646874"	"32646752"	"32646608"	"32644049"	"32642735"	"32642201"	"32642121"	"32641995"	"32641778"	"32641744"	"32641137"	"32641008"	"32638704"	"32638380"	"32637031"	"32636940"	"32636409"	"32636316"	"32636302"	"32635826"	"32634121"	"32632596"	"32631788"	"32631512"	"32631434"	"32629877"	"32629861"	"32629782"	"32629543"	"32629177"	"32628708"	"32627883"	"32625092"	"32620917"	"32620824"	"32619782"	"32617278"	"32616873"	"32614932"	"32613839"	"32613723"	"32613211"	"32612457"	"32612138"	"32611735"	"32609742"	"32607238"	"32606939"	"32606052"	"32605999"	"32605718"	"32605298"	"32605254"	"32604993"	"32603594"	"32602003"	"32599986"	"32598087"	"32597321"	"32597316"	"32596290"	"32595469"	"32595468"	"32594310"	"32593915"	"32593694"	"32592097"	"32591603"	"32591521"	"32590950"	"32590745"	"32589309"	"32589187"	"32588244"	"32587898"	"32587787"	"32586982"	"32586050"	"32583281"	"32582994"	"32582557"	"32582528"	"32581578"	"32581366"	"32581250"	"32581195"	"32580961"	"32580737"	"32580596"	"32580578"	"32580537"	"32580297"	"32579928"	"32576853"	"32576631"	"32576176"	"32575430"	"32573775"	"32573499"	"32572821"	"32572645"	"32571902"	"32571252"	"32571022"	"32569179"	"32569010"	"32568546"	"32568455"	"32567790"	"32567731"	"32565990"	"32565980"	"32565234"	"32561852"	"32561656"	"32560574"	"32560187"	"32560038"	"32559853"	"32559497"	"32558293"	"32558242"	"32557351"	"32556513"	"32556222"	"32555399"	"32554855"	"32554750"	"32554467"	"32553168"	"32552938"	"32552936"	"32552875"	"32552827"	"32552660"	"32552466"	"32552404"	"32552144"	"32552041"	"32552000"	"32550823"	"32548736"	"32547954"	"32547943"	"32547859"	"32547195"	"32547068"	"32546937"	"32546576"	"32545884"	"32545414"	"32545208"	"32544984"	"32544169"	"32543103"	"32542554"	"32541781"	"32541668"	"32541511"	"32541157"	"32540961"	"32540954"	"32535947"	"32535664"	"32535617"	"32534671"	"32533190"	"32530992"	"32530390"	"32528529"	"32528145"	"32527129"	"32526634"	"32525522"	"32524539"	"32524209"	"32522977"	"32521886"	"32520974"	"32520749"	"32520634"	"32519179"	"32517177"	"32515291"	"32514802"	"32514015"	"32511232"	"32509212"	"32509069"	"32507497"	"32505185"	"32504414"	"32504335"	"32504005"	"32503108"	"32501281"	"32499700"	"32499547"	"32499156"	"32496505"	"32495293"	"32495162"	"32495109"	"32493840"	"32492752"	"32492002"	"32490257"	"32489450"	"32489150"	"32487083"	"32486530"	"32486290"	"32486141"	"32485022"	"32483558"	"32483379"	"32481659"	"32481524"	"32477464"	"32477122"	"32473242"	"32471257"	"32467349"	"32467348"	"32466784"	"32466769"	"32463822"	"32463297"	"32462394"	"32462295"	"32461371"	"32460983"	"32460002"	"32457826"	"32457409"	"32456277"	"32456244"	"32455893"	"32455336"	"32455006"	"32453916"	"32450595"	"32447231"	"32446697"	"32444490"	"32444378"	"32442403"	"32442065"	"32441866"	"32440349"	"32436621"	"32434991"	"32434541"	"32434536"	"32434218"	"32433411"	"32432667"	"32432338"	"32431071"	"32430479"	"32430388"	"32429466"	"32428838"	"32428833"	"32427409"	"32424701"	"32424096"	"32420529"	"32418298"	"32418154"	"32417170"	"32415761"	"32415517"	"32415199"	"32414921"	"32414848"	"32414627"	"32413741"	"32413322"	"32411589"	"32410560"	"32410080"	"32409593"	"32408396"	"32408300"	"32406198"	"32405728"	"32405640"	"32404308"	"32404198"	"32401642"	"32399637"	"32398776"	"32396674"	"32394229"	"32394048"	"32393788"	"32393751"	"32393580"	"32393543"	"32393293"	"32392931"	"32391418"	"32391263"	"32390708"	"32390404"	"32388775"	"32388560"	"32388065"	"32387835"	"32387386"	"32386297"	"32386081"	"32385709"	"32385139"	"32384877"	"32384323"	"32384322"	"32383811"	"32382835"	"32381992"	"32380013"	"32379795"	"32379501"	"32377743"	"32376889"	"32376853"	"32376723"	"32376474"	"32374727"	"32373584"	"32373202"	"32372692"	"32371585"	"32371554"	"32371339"	"32370304"	"32370060"	"32369821"	"32369652"	"32369643"	"32369483"	"32368735"	"32368398"	"32368394"	"32368319"	"32366477"	"32365867"	"32365350"	"32362631"	"32361787"	"32360551"	"32358589"	"32358491"	"32358059"	"32357308"	"32355831"	"32355494"	"32351996"	"32351961"	"32350854"	"32350415"	"32350089"	"32348957"	"32348727"
+"LZTR1"	"Noonan syndrome"	"32642684"	"32623905"	"32576656"	"32575496"	"32514133"	"32339168"	"32281771"	"32271143"	"32175818"	"32004086"	"31983691"	"31898229"	"31892430"	"31883238"	"31825158"	"31666243"	"31533111"	"31439678"	"31438995"	"31425178"	"31424590"	"20301303"	"31337872"	"31273341"	"31219622"	"31182298"	"31161239"	"31128261"	"31044557"	"31037098"	"30872527"	"30859559"	"30732632"	"30664951"	"30659296"	"30523344"	"30481304"	"30442766"	"30442762"	"30368668"	"30325044"	"30177220"	"30006736"	"29959389"	"29959388"	"29909380"	"29517885"	"29469822"	"29409008"	"29384852"	"29069277"	"28981937"	"28944487"	"28905115"	"28759666"	"28749478"	"28737257"	"28696935"	"28622513"	"28620005"	"28365909"	"28295212"	"27958595"	"27942422"	"27921248"	"30805484"	"27856782"	"27759912"	"27472264"	"27421984"	"26848914"	"26799435"	"26706012"	"26634384"	"26446362"	"26001331"	"25961944"	"25795793"	"25480913"	"25335493"	"25008767"	"24764164"	"24362817"	"23917401"	"22926078"	"22185286"	"20113655"	"19224675"	"18686028"	"16356934"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NRAS"	"Noonan syndrome"	"32769548"	"32764370"	"32759757"	"32759490"	"32757686"	"32751423"	"32748806"	"32748297"	"32747568"	"32745614"	"32743766"	"32741580"	"32735072"	"32734128"	"32732488"	"32731237"	"32729257"	"32728828"	"32726988"	"32725342"	"32724377"	"32722298"	"32721511"	"32714871"	"32714544"	"32708575"	"32706759"	"32703499"	"32701697"	"32700768"	"32700762"	"32699322"	"32697817"	"32693409"	"32692047"	"32687451"	"32683833"	"32683635"	"32675227"	"32665850"	"32664549"	"32661093"	"32660441"	"32656925"	"32654462"	"32646809"	"32643365"	"32640012"	"32637031"	"32631434"	"32628708"	"32625092"	"32625087"	"32621051"	"32620824"	"32617278"	"32614729"	"32610581"	"32602003"	"32587355"	"32586982"	"32581366"	"32576961"	"32572821"	"32568834"	"32568509"	"32567790"	"32564504"	"32562975"	"32561850"	"32560331"	"32558183"	"32556222"	"32552938"	"32552936"	"32552144"	"32552041"	"32550823"	"32546168"	"32541157"	"32531246"	"32531245"	"32530992"	"32528145"	"32526042"	"32525522"	"32519179"	"32506424"	"32504414"	"32501281"	"32497859"	"32493317"	"32492002"	"32484959"	"32483240"	"32476595"	"32473611"	"32466509"	"32463489"	"32460983"	"32460002"	"32455924"	"32443356"	"32443232"	"32442065"	"32441866"	"32431053"	"32428838"	"32424096"	"32418797"	"32418154"	"32414848"	"32410160"	"32407527"	"32399637"	"32394730"	"32393580"	"32393293"	"32392931"	"32390404"	"32389536"	"32388065"	"32386465"	"32386297"	"32384474"	"32383006"	"32376853"	"32376723"	"32376474"	"32376279"	"32372223"	"32369821"	"32362631"	"32355756"	"32346746"	"32334110"	"32333269"	"32328464"	"32328187"	"32326836"	"32321716"	"32315381"	"32314268"	"32307821"	"32305056"	"32299093"	"32291779"	"32291398"	"32284750"	"32275934"	"32273508"	"32273401"	"32270416"	"32265839"	"32256770"	"32253677"	"32253228"	"32249628"	"32246533"	"32241802"	"32240795"	"32238877"	"32236636"	"32234759"	"32219446"	"32219061"	"32219013"	"32216548"	"32216031"	"32211268"	"32210430"	"32209699"	"32209330"	"32208489"	"32201051"	"32196952"	"32196516"	"32191822"	"32182684"	"32181531"	"32179991"	"32171651"	"32166585"	"32164600"	"32162812"	"32161617"	"32158916"	"32157705"	"32156748"	"32154172"	"32154130"	"32142958"	"32141640"	"32132976"	"32132029"	"32130701"	"32129900"	"32124426"	"32123303"	"32111352"	"32103499"	"32100585"	"32098826"	"32089414"	"32087194"	"32086379"	"32082488"	"32077199"	"32077113"	"32066856"	"32052185"	"32052135"	"32049008"	"32043900"	"32043781"	"32043616"	"32043299"	"32038059"	"32036084"	"32031330"	"32028967"	"32027256"	"32027246"	"32021610"	"32019910"	"32017841"	"32014918"	"32013644"	"32007245"	"32004563"	"31998419"	"31992840"	"31988198"	"31985580"	"31982351"	"31980996"	"31980238"	"31972664"	"31972237"	"31969234"	"31967462"	"31965269"	"31961147"	"31958057"	"31952666"	"31940389"	"31939681"	"31935373"	"31933925"	"31930916"	"31926773"	"31920132"	"31919461"	"31912799"	"31906480"	"31905241"	"31904908"	"31902686"	"31900433"	"31899815"	"31899799"	"31891627"	"31887709"	"31885734"	"31881025"	"31876604"	"31876585"	"31872418"	"31867203"	"31862522"	"31859066"	"31857430"	"31852884"	"31852719"	"31848942"	"31842958"	"31842267"	"31841547"	"31839677"	"31837434"	"31833955"	"31833094"	"31827328"	"31822038"	"31819496"	"31816869"	"31815779"	"31807490"	"31806714"	"31804006"	"31803707"	"31803624"	"31803504"	"31801800"	"31795195"	"31784493"	"31784425"	"31782259"	"31774543"	"31773354"	"31767937"	"31767623"	"31764519"	"31763327"	"31759987"	"31756131"	"31755463"	"31753111"	"31752122"	"31747763"	"31746520"	"31744817"	"31743128"	"31740784"	"31738830"	"31731482"	"31728128"	"31719050"	"31711486"	"31709194"	"31704871"	"31703632"	"31698452"	"31698328"	"31698101"	"31697451"	"31693229"	"31691530"	"31688243"	"31685810"	"31683701"	"31681616"	"31675434"	"31672841"	"31671409"	"31668133"	"31663661"	"31662451"	"31659388"	"31655118"	"31647501"	"31645437"	"31638232"	"31638206"	"31637953"	"31635329"	"31634180"	"31633190"	"31630873"	"31623671"	"31623125"	"31612113"	"31607296"	"31605799"	"31602320"	"31602213"	"31597339"	"31589789"	"31587152"	"31573152"	"31566661"	"31566639"	"31559392"	"31558492"	"31558473"	"31553708"	"31549767"	"31547467"	"31545405"	"31538838"	"31534493"	"31532708"	"31519714"	"31511039"	"31506424"	"31506288"	"31500586"	"31500314"	"31497244"	"31496700"	"31496327"	"31492087"	"31488153"	"31487000"	"31481404"	"31480291"	"31475312"	"31469053"	"31464610"	"31460308"	"31456750"	"31455347"	"31452453"	"31452046"	"31450901"	"31447564"	"31446640"	"31446140"	"31446019"	"31443844"	"31443434"	"31443300"	"31442328"	"31439678"	"31438499"	"31436845"	"31434450"	"31433323"	"31427573"	"31425481"	"31419753"	"31417495"	"31415669"	"31412876"	"31412428"	"31408190"	"31403745"	"31398831"	"31397438"	"31395751"	"31391014"	"31390567"	"31387599"	"20301303"	"31386964"	"31383963"	"31382929"	"31379943"	"31377458"	"31375911"	"31375769"	"31374137"	"31363167"	"31349897"	"31344983"	"31339850"	"31337872"	"31335417"	"31332011"	"31331399"	"31330153"	"31326556"	"31320995"	"31320640"	"31320401"	"31310691"	"31306728"	"31302905"	"31300059"	"31290252"	"31287861"	"31281151"	"31279594"	"31277584"	"31274706"	"31265477"	"31257073"	"31255772"	"31255173"	"31251472"	"31248021"	"31247083"	"31245276"	"31236308"	"31234770"	"31231460"	"31228933"	"31227255"	"31226844"	"31219974"	"31219622"	"31213829"	"31207216"	"31204011"	"31199501"	"31191017"	"31189531"	"31189369"	"31188184"	"31186809"	"31186313"	"31186280"	"31185985"	"31184605"	"31176732"	"31173466"	"31164962"	"31164152"	"31162857"	"31157261"	"31154561"	"31152596"	"31130830"	"31129971"	"31127692"	"31124578"	"31122820"	"31120141"	"31116161"	"31111470"
+"PTPN11"	"Noonan syndrome"	"32769231"	"32765928"	"32744526"	"32738411"	"32737134"	"32721402"	"32697817"	"32693409"	"32676024"	"32668031"	"32648963"	"32590748"	"32586982"	"32584792"	"32573082"	"32561839"	"32558383"	"32558336"	"32546215"	"32541138"	"32536826"	"32528726"	"32499374"	"32481342"	"32476595"	"32460983"	"32438067"	"32434682"	"32429378"	"32395997"	"32394265"	"32381572"	"32380342"	"32341405"	"32335126"	"32233106"	"32212266"	"32209330"	"32198795"	"32194661"	"32188669"	"32164556"	"32161186"	"32154134"	"32150461"	"32144894"	"32140036"	"32128752"	"32119959"	"32113883"	"32112654"	"32102775"	"32087721"	"32079522"	"32066785"	"32061959"	"32059087"	"32054441"	"32037394"	"32036779"	"32022400"	"32021610"	"31980238"	"31978797"	"31954180"	"31953320"	"31941444"	"31910207"	"31872418"	"31837205"	"31830896"	"31807902"	"31784318"	"31782850"	"31763642"	"31722741"	"31712860"	"31708921"	"31678455"	"31657576"	"31651330"	"31637070"	"31635340"	"31634485"	"31616406"	"31600500"	"31589789"	"31564571"	"31562133"	"31560489"	"31533235"	"31533111"	"31525277"	"31500245"	"31464257"	"31461650"	"31446698"	"31446693"	"31442744"	"31439678"	"31438838"	"31409822"	"31393194"	"20301303"	"31368652"	"31361219"	"31339650"	"31318870"	"31316104"	"31302905"	"31300938"	"31292302"	"31284101"	"31277675"	"31277422"	"31259454"	"31258001"	"31250618"	"31244092"	"31232447"	"31232041"	"31222725"	"31221673"	"31219622"	"31210146"	"31201283"	"31197031"	"31189114"	"31184605"	"31172009"	"31132774"	"31129971"	"31129512"	"31115199"	"31115198"	"31115195"	"31115193"	"31102422"	"31088105"	"31085507"	"31071531"	"31069394"	"31068384"	"31057598"	"31051144"	"31017896"	"31014430"	"31006500"	"30970181"	"30939887"	"30927736"	"30926899"	"30922345"	"30896080"	"30871360"	"30837304"	"30810217"	"30790744"	"30785643"	"30784236"	"30782614"	"30773397"	"30764849"	"30762279"	"30760869"	"30753492"	"30742119"	"30732632"	"30693642"	"30692594"	"30682488"	"30670449"	"30665336"	"30640061"	"30631623"	"30626916"	"30622786"	"30610104"	"30602027"	"30573803"	"30541462"	"30535550"	"30508783"	"30504325"	"30514065"	"30511597"	"30478196"	"30473379"	"30471432"	"30467378"	"30466744"	"30458197"	"30457860"	"30455690"	"30444570"	"30423075"	"30417923"	"30398108"	"30384889"	"30378271"	"30376595"	"30375388"	"30374120"	"30355920"	"30355677"	"30355600"	"30341011"	"30333625"	"30325180"	"30294303"	"30290167"	"30286619"	"30279491"	"30262568"	"30257940"	"30228226"	"30209403"	"30138727"	"30135215"	"30129165"	"30104724"	"30104710"	"30097824"	"30096757"	"30086741"	"30078240"	"30059958"	"30058892"	"30055033"	"30045908"	"30026077"	"30024444"	"30018082"	"29983715"	"29970518"	"29970458"	"29953961"	"29953894"	"29948256"	"29925063"	"29908030"	"29907801"	"29891536"	"29884903"	"29884741"	"29864542"	"29858050"	"29848529"	"29808009"	"29808006"	"29795405"	"29794138"	"29787394"	"29783939"	"29782988"	"29775783"	"29774106"	"29737035"	"29720585"	"29703613"	"29703160"	"29703018"	"29699904"	"29696744"	"29695768"	"29693170"	"29693080"	"29670795"	"29661501"	"29644115"	"29636665"	"29632319"	"29629024"	"29625052"	"29617671"	"29599344"	"29575624"	"29562441"	"29559584"	"29555671"	"29541661"	"29518019"	"29505847"	"29498772"	"29467191"	"29464054"	"29460428"	"29445579"	"29437595"	"29407635"	"29402968"	"29383146"	"29373887"	"29360039"	"29346494"	"29323748"	"29304282"	"29301754"	"29298416"	"29282323"	"29279013"	"29259247"	"29257282"	"29242509"	"29218544"	"29214238"	"29207183"	"29206716"	"29196128"	"29189514"	"29187853"	"31966531"	"29155585"	"29137913"	"29125030"	"29110225"	"29103443"	"29097601"	"29089257"	"29085371"	"29084544"	"29069784"	"29068796"	"29050118"	"29046360"	"29037749"	"29030401"	"29025706"	"29023302"	"28975680"	"28957739"	"28947394"	"28929581"	"28928975"	"28923882"	"28921562"	"28912526"	"28870898"	"28870692"	"28862807"	"28853218"	"28852935"	"28804122"	"28777121"	"28768764"	"28768581"	"28754897"	"28751523"	"28750679"	"28728859"	"28701303"	"28699883"	"28681392"	"28675510"	"28650561"	"28620155"	"28620009"	"28607217"	"28587547"	"28582432"	"28578388"	"28548171"	"28500033"	"28484169"	"28483241"	"28481957"	"28476193"	"28463680"	"28434868"	"28432085"	"28424251"	"28409271"	"28408464"	"28403515"	"28369102"	"28366775"	"28363362"	"28346493"	"28329685"	"28328117"	"28314085"	"28306669"	"28301897"	"28287082"	"28267273"	"28245838"	"28232779"	"28213521"	"28191591"	"28179213"	"28152414"	"28116520"	"28106910"	"28098151"	"28085101"	"28084675"	"28074573"	"28059452"	"28046066"	"28033335"	"28031011"	"27992414"	"27974211"	"27942593"	"27935860"	"27930879"	"27926479"	"27913534"	"30805484"	"27894814"	"27884971"	"27859216"	"27840422"	"27783593"	"27799550"	"27578777"	"27796759"	"27041571"	"27666924"	"27736153"	"27733013"	"27683039"	"27659786"	"27655895"	"27650545"	"27626068"	"27614952"	"27594973"	"27582544"	"27579614"	"27572461"	"27562378"	"27543316"	"27531757"	"27530552"	"27521173"	"27484170"	"27478471"	"27469230"	"27462774"	"27457246"	"27450488"	"27447965"	"27429816"	"27422603"	"27362227"	"27359055"	"27348588"	"27347692"	"27341568"	"27330052"	"27322988"	"27294619"	"27282405"	"27275015"	"27241812"	"27238887"	"27213290"	"27193571"	"27183387"	"27164089"	"27148573"	"29767610"	"27125300"	"27123900"	"27104176"	"27100271"	"27077911"	"27055875"	"27054330"	"27039823"	"27030275"	"29252664"	"27028808"	"27025927"	"27023522"	"27022003"	"27002216"	"26999642"	"26990535"	"26984661"	"26983639"	"26965285"	"26956486"	"26952712"	"26941285"	"26935631"	"26918529"	"26918448"	"26913605"	"26911335"	"26903553"	"26886259"	"26858415"	"26855057"	"26852510"	"26852509"	"26826310"	"26817465"	"26805442"
+"RAF1"	"Noonan syndrome"	"32769548"	"32764871"	"32748297"	"32730272"	"32711967"	"32710726"	"32705796"	"32700768"	"32678071"	"32668031"	"32636267"	"32626522"	"32619305"	"32598937"	"32571022"	"32518680"	"32506814"	"32499600"	"32489026"	"32451445"	"32447786"	"32416844"	"32411236"	"32410120"	"32390404"	"32358589"	"32342514"	"32320453"	"32318348"	"32300098"	"32289276"	"32283113"	"32278143"	"32243019"	"32222087"	"32202184"	"32190741"	"32155482"	"32150461"	"32139107"	"32128752"	"32123303"	"32070055"	"32062751"	"32022406"	"32021610"	"31983115"	"31974362"	"31963420"	"31957875"	"31877338"	"31870440"	"31863650"	"31843497"	"31825158"	"31814446"	"31807076"	"31793172"	"31785072"	"31781306"	"31755378"	"31745226"	"31731625"	"31715423"	"31703640"	"31681332"	"31638257"	"31627060"	"31620163"	"31612616"	"31606273"	"31589789"	"31582531"	"31560489"	"31549143"	"31538334"	"31521821"	"31516287"	"31508568"	"31501546"	"31412004"	"20301303"	"31368652"	"31353727"	"31332097"	"31332017"	"31322173"	"31318870"	"31265865"	"31263178"	"31259454"	"31256300"	"31250618"	"31242181"	"31219622"	"31219012"	"31196660"	"31163979"	"31158732"	"31156630"	"31145547"	"31130285"	"31115199"	"31115198"	"31097696"	"31081213"	"31075853"	"31075141"	"31071411"	"31057598"	"31035040"	"31030682"	"31019896"	"31018595"	"31017896"	"31015311"	"31012189"	"30975481"	"30971268"	"30957262"	"30945443"	"30938880"	"30909892"	"30904638"	"30896080"	"30867592"	"30853659"	"30835257"	"30828992"	"30815863"	"30808854"	"30796652"	"30762279"	"30755102"	"30742807"	"30742323"	"30732632"	"30719056"	"30652029"	"30647127"	"30645724"	"30618087"	"30610161"	"30597917"	"30586319"	"30565087"	"30559287"	"30555578"	"30547202"	"30543563"	"30522435"	"30537227"	"30520151"	"30517658"	"30514065"	"30488209"	"30478051"	"30460093"	"30431106"	"30425578"	"30417923"	"30394625"	"30392041"	"30384889"	"30382763"	"30368668"	"30365340"	"30359577"	"30359267"	"30355600"	"30339194"	"30314519"	"30311561"	"30302546"	"30294831"	"30287949"	"30281322"	"30276917"	"30266768"	"30239744"	"30201903"	"30158316"	"30157809"	"30154518"	"30139932"	"30137201"	"30106602"	"30078240"	"30058892"	"30057673"	"30055033"	"30051528"	"30051511"	"30048539"	"30033091"	"30024444"	"30018450"	"29989627"	"29983001"	"29981265"	"29970115"	"29948256"	"29936764"	"29907801"	"29907785"	"29885516"	"29883707"	"29880043"	"29868112"	"29852001"	"29766299"	"29755676"	"29750576"	"29722566"	"29696744"	"29693080"	"29678998"	"29641993"	"29619072"	"29594130"	"29589905"	"29575487"	"29570903"	"29565706"	"29549478"	"29511456"	"29506567"	"29487225"	"29484414"	"29475459"	"29464057"	"29449773"	"29443735"	"29436617"	"29402968"	"29392178"	"29377576"	"29371955"	"29355849"	"29330146"	"29328399"	"29295562"	"29271604"	"29269057"	"29268768"	"29255093"	"29242214"	"29207116"	"29194580"	"29177114"	"29150931"	"29131824"	"29129563"	"29118938"	"29115418"	"29108219"	"29100963"	"29097117"	"29084544"	"29071259"	"29056104"	"29050118"	"29048686"	"29039494"	"28978120"	"28973931"	"28915644"	"28914499"	"28912153"	"28901503"	"28898437"	"28884046"	"28833446"	"28827320"	"28811376"	"28806393"	"28803498"	"28777121"	"31966697"	"28725479"	"28666118"	"28634120"	"28623072"	"28597942"	"28597305"	"28586056"	"28548091"	"28548040"	"28525297"	"28524162"	"28513279"	"28483911"	"28472368"	"28453743"	"28448514"	"28446242"	"28409271"	"28281933"	"28270557"	"28181142"	"28178681"	"28174233"	"28108864"	"28107606"	"28096297"	"28057484"	"28034748"	"28025079"	"28013092"	"28000790"	"27993549"	"27936391"	"27927199"	"30805484"	"27877056"	"27839788"	"27810072"	"27729374"	"27659964"	"27213581"	"27771897"	"27765919"	"27624885"	"27760749"	"27753652"	"27670374"	"27640904"	"27631234"	"27601596"	"27567738"	"27566197"	"27538348"	"27508092"	"27492902"	"27484170"	"29442034"	"27466182"	"27450488"	"27431613"	"27385346"	"27383396"	"27363278"	"27301936"	"27255180"	"27169363"	"27163930"	"27155467"	"27153315"	"27146292"	"27146207"	"27082116"	"27038324"	"26994902"	"26967056"	"26940993"	"26903553"	"26840709"	"26818088"	"26811545"	"26809508"	"26769852"	"26765787"	"26762744"	"26754536"	"26748257"	"26734995"	"26722025"	"30463106"	"30204961"	"26714497"	"26712686"	"26684754"	"26659599"	"26657770"	"26651387"	"26637164"	"26563265"	"26557760"	"26542023"	"26527888"	"26500333"	"26467218"	"26467173"	"26456889"	"26452132"	"26427116"	"26386161"	"26380542"	"26379118"	"26377080"	"26340260"	"26333016"	"26307133"	"26298320"	"26286251"	"26275293"	"26266034"	"26240495"	"26237510"	"26182302"	"26169956"	"26124436"	"26067856"	"26058013"	"26030356"	"26000489"	"25999467"	"25996975"	"25974318"	"20301557"	"25914166"	"25905921"	"25862627"	"25862004"	"25830673"	"25815883"	"25809148"	"25797371"	"25742624"	"25733857"	"25722345"	"25712082"	"25706034"	"25705681"	"25667458"	"25597360"	"25573435"	"25541970"	"25512530"	"25512490"	"25482167"	"25473895"	"25423878"	"25411776"	"25371207"	"25370770"	"25367879"	"25364765"	"25355599"	"25279696"	"25266736"	"25265753"	"25203299"	"25199829"	"25194980"	"25175012"	"25156534"	"25047475"	"25041569"	"25035424"	"25027403"	"24959709"	"24935259"	"24896071"	"24870058"	"24863296"	"24853429"	"24846616"	"24843139"	"24831776"	"24827933"	"24807868"	"24782337"	"24777450"	"24775816"	"24739067"	"24736947"	"24732797"	"24708261"	"24675897"	"24667437"	"24589546"	"24569458"	"24534818"	"24530606"	"24516119"	"24470038"	"24451042"	"24427333"	"24412893"	"24371805"	"24371145"	"24369052"	"24357598"	"24332066"	"24322890"	"24312699"	"24304493"	"24284076"	"24275659"	"24259500"	"24223781"	"24194717"	"24194124"	"24177231"	"24108181"	"24098138"	"24061856"	"24061634"	"24039098"
+"RIT1"	"Noonan syndrome"	"32766847"	"32396283"	"20301303"	"31368652"	"31355539"	"31259454"	"31247273"	"31219622"	"31115198"	"31105872"	"31057598"	"30904604"	"30898653"	"30872527"	"30784236"	"30732632"	"30641296"	"30391781"	"30348939"	"30078240"	"30024444"	"29843527"	"29734338"	"29636358"	"29421787"	"29402968"	"29158550"	"29050118"	"28607354"	"28546426"	"28475286"	"28357185"	"28347726"	"28007959"	"27942422"	"30805484"	"27736905"	"27736676"	"27699752"	"27684039"	"27226556"	"27109146"	"27101134"	"26991755"	"26757980"	"26714497"	"26617739"	"26607044"	"26518681"	"26446362"	"26098749"	"25969726"	"25959749"	"25531880"	"25337068"	"25124994"	"25079552"	"25049390"	"24939608"	"24896146"	"24469055"	"23791108"	"23770287"	"23765226"	"23123784"	"23038261"	"22815504"	"22212907"	"22030622"	"21737674"	"21695216"	"21444726"	"18388731"	"18378158"	"18202904"	"17369851"	"16827796"	"16757348"	"15831491"	"15664173"	"15632082"	"15334547"	"15104287"	"14767908"	"14754877"	"14739349"	"14697215"	"14648120"	"12866958"	"12774073"	"12717433"	"12668729"	"12565905"	"11821041"	"11032018"	"10869344"	"10712923"	"10545207"	"10485288"	"8824319"	"7954819"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"RRAS2"	"Noonan syndrome"	"32721511"	"31871169"	"31622249"	"31517733"	"31324740"	"31261843"	"31258820"	"31130285"	"31130282"	"30196423"	"30135075"	"29883056"	"29844052"	"29720552"	"29449694"	"29440281"	"28223168"	"27936046"	"27086924"	"27696085"	"27391150"	"27055474"	"26619011"	"26168291"	"26035737"	"24826867"	"24391759"	"24148564"	"22919244"	"22790196"	"22535521"	"21820331"	"21793795"	"21781067"	"21482774"	"21085126"	"20811707"	"20040018"	"19692568"	"19561613"	"19351384"	"19047159"	"19032775"	"17656362"	"17312387"	"17094627"	"16467383"	"16088230"	"15599930"	"14724565"	"12525640"	"11850823"	"11788587"	"11400337"	"11340168"	"10777492"	"10321735"	"10064593"	"9703274"	"9395281"	"8887643"	"8637701"	"8552388"	"7478545"	"7761092"	"8084601"	"8052619"	"8196649"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SOS1"	"Noonan syndrome"	"32752665"	"32744336"	"32727653"	"32711246"	"32673492"	"32668031"	"32665569"	"32640021"	"32634852"	"32611480"	"32609259"	"32603605"	"32549918"	"32514133"	"32510467"	"32489526"	"32439321"	"32418228"	"32413671"	"32413193"	"32397251"	"32394265"	"32307550"	"32280989"	"32275328"	"32157475"	"32138325"	"32128752"	"32117382"	"32114282"	"32076487"	"32065515"	"32064153"	"32063746"	"32052233"	"32042826"	"32036363"	"32021610"	"31998336"	"31992638"	"31970984"	"31924762"	"31910207"	"31901205"	"31882608"	"31861661"	"31858132"	"31841105"	"31820037"	"31807027"	"31743556"	"31743516"	"31714812"	"31712860"	"31710609"	"31706640"	"31690290"	"31678368"	"31655998"	"31629778"	"31620152"	"31560489"	"31554307"	"31533111"	"31488087"	"31481213"	"31420662"	"31399792"	"20301303"	"31368652"	"31341022"	"31337738"	"31323181"	"31318870"	"31292302"	"31275749"	"31268421"	"31250618"	"31219622"	"31214215"	"31212744"	"31208046"	"31203894"	"31196377"	"31196346"	"31152194"	"31151983"	"31116204"	"31115198"	"31100786"	"31075379"	"31057598"	"31024045"	"30996236"	"30992336"	"30984214"	"30930923"	"30928695"	"30911586"	"30891756"	"30832374"	"30804631"	"30784236"	"30769802"	"30764771"	"30763910"	"30762279"	"30753492"	"30744551"	"30735352"	"30732632"	"30720883"	"30714452"	"30714160"	"30683722"	"30669571"	"30635434"	"30634628"	"30631038"	"30629305"	"30615907"	"30615681"	"30615606"	"30604324"	"30594151"	"30565087"	"30541462"	"30537082"	"30514065"	"30410588"	"30399545"	"30377696"	"30377195"	"30355600"	"30325180"	"30322949"	"30261913"	"30258545"	"30233203"	"30229043"	"30209320"	"30205005"	"30181243"	"30149642"	"30112104"	"30108452"	"30105917"	"30104724"	"30097175"	"30078240"	"30061119"	"30058892"	"30055033"	"30043311"	"30039904"	"29948256"	"29942251"	"29928302"	"29917153"	"29912871"	"29907801"	"29881329"	"29856609"	"29855605"	"29844066"	"29808010"	"29807589"	"29752777"	"29740721"	"29730321"	"29696744"	"29693170"	"29686309"	"29684208"	"29641593"	"29554876"	"29498789"	"29495332"	"29491733"	"29444450"	"29440291"	"29432559"	"29408703"	"29402968"	"29398839"	"29394412"	"29386629"	"29322303"	"29285225"	"29278770"	"29245127"	"29233017"	"29165300"	"29145593"	"29133857"	"29116128"	"29087515"	"29084944"	"29074966"	"29039494"	"29037749"	"29030545"	"28973155"	"28957739"	"28943935"	"28930697"	"28915601"	"28889942"	"28884940"	"28878491"	"28866234"	"28863001"	"28855912"	"28819285"	"28814265"	"28812028"	"28806841"	"28805497"	"28769821"	"28713927"	"28710664"	"28686854"	"28634120"	"28608476"	"28586047"	"28512143"	"28456002"	"28452363"	"28450879"	"28433619"	"28432978"	"28425619"	"28412199"	"28394021"	"28386265"	"28370621"	"28351301"	"28350038"	"28330553"	"28303151"	"28300216"	"28296343"	"28275771"	"28231331"	"28225027"	"28166272"	"28158828"	"28145408"	"28137655"	"28129114"	"28060514"	"28041965"	"28024851"	"28013410"	"28009100"	"28003464"	"27986909"	"27968986"	"27940414"	"27933291"	"30805484"	"27889448"	"27881340"	"27833027"	"27832168"	"27717302"	"27676158"	"27779214"	"27581326"	"27258033"	"27708387"	"27651465"	"27629044"	"27617576"	"27573018"	"27554254"	"27521173"	"27501536"	"27494611"	"27486025"	"27449543"	"27412770"	"27405981"	"27340231"	"27304678"	"27297549"	"27221634"	"27163930"	"27158780"	"27157612"	"27142542"	"27138333"	"27098270"	"27066977"	"27061550"	"27014297"	"26992907"	"26985021"	"26979332"	"26968820"	"26918529"	"26909945"	"26903553"	"26881809"	"26862153"	"26855057"	"26854409"	"26714497"	"26708403"	"26686981"	"26657894"	"26607044"	"26585227"	"26579140"	"26521017"	"26500062"	"26467218"	"26447228"	"26442853"	"26420756"	"26352173"	"26345991"	"26340746"	"26320657"	"26318642"	"26300054"	"26286251"	"26280111"	"26276865"	"26184075"	"26173643"	"26079855"	"26077951"	"26054800"	"26005835"	"25990364"	"25980493"	"25973715"	"25970274"	"25957131"	"25948280"	"25921176"	"25878087"	"25862627"	"25825487"	"25809804"	"25804817"	"25795793"	"25716962"	"25712082"	"25695162"	"25633281"	"25624485"	"25609221"	"25548009"	"25546818"	"25525987"	"25469565"	"25469536"	"25455859"	"25394671"	"25377643"	"25370770"	"25344655"	"25337068"	"25324847"	"25322282"	"25313273"	"25207671"	"25194980"	"25093196"	"25081835"	"25074582"	"25073238"	"25071181"	"25062969"	"25041730"	"25030863"	"24934653"	"24913638"	"24859325"	"24853419"	"24803640"	"24775912"	"24771143"	"24566689"	"24550516"	"24530412"	"24522193"	"24521877"	"24497447"	"24497027"	"24465776"	"24459895"	"24451042"	"24434436"	"24413762"	"24413597"	"24357598"	"24226523"	"24223981"	"24222714"	"24160698"	"24150094"	"24146669"	"24098330"	"24061856"	"24043312"	"24039098"	"24037001"	"24022678"	"24009530"	"23956138"	"23955962"	"23918763"	"23918208"	"23885229"	"23822194"	"23817964"	"23809151"	"23796062"	"23786871"	"23740238"	"23708325"	"23673306"	"23656872"	"23656866"	"23645742"	"23628062"	"23589333"	"23539361"	"23528987"	"23528009"	"23525212"	"23506953"	"23487764"	"23452850"	"23373411"	"23355543"	"23334917"	"23325887"	"23322040"	"23307916"	"25033799"	"23250860"	"23239527"	"23239515"	"23209318"	"32480854"	"23185443"	"23165751"	"23162660"	"23057782"	"23027861"	"23022605"	"22990674"	"22985731"	"22887833"	"22887781"	"22876308"	"22855653"	"22849749"	"22848035"	"22827337"	"22781091"	"22777296"	"22761938"	"22751148"	"22711498"	"22639643"	"22589294"	"22586683"	"22586275"	"22585553"	"22551697"	"24077984"	"22532955"	"22465879"	"22465605"	"22427012"	"22420426"	"22404736"	"22396725"	"22360309"	"22253195"	"22217993"	"27398240"	"22195582"	"22190897"	"22159078"	"22157403"	"22153244"	"22118620"	"22115741"	"22070784"	"22042618"	"22022247"	"22012247"	"21922632"	"21880148"
+"ETHE1"	"Leigh syndrome"	"32485156"	"32362910"	"32183148"	"32111695"	"31477743"	"31258845"	"30864297"	"30399433"	"30391543"	"30362717"	"30349987"	"30298498"	"30283487"	"30072973"	"30056533"	"29980601"	"29968759"	"29925869"	"29526615"	"29262657"	"29089323"	"29021294"	"28933811"	"28698729"	"28299817"	"27966587"	"27844098"	"27830356"	"27742479"	"27771676"	"27105581"	"27074420"	"26917598"	"26910821"	"26867521"	"26805042"	"26194912"	"26194623"	"26177047"	"26082492"	"25878756"	"25747485"	"25596185"	"25482779"	"25198162"	"25006243"	"24893664"	"24692429"	"24410953"	"24389926"	"23811297"	"23800285"	"23600844"	"23144459"	"22903887"	"22805253"	"22786886"	"22584649"	"22526845"	"22229551"	"22020834"	"21950400"	"21632538"	"21519635"	"21472225"	"21410200"	"21073729"	"20978941"	"20812865"	"20657580"	"20528888"	"20332082"	"19491504"	"19289697"	"19136963"	"21048580"	"18656261"	"18593870"	"18445752"	"17712735"	"17712731"	"17353187"	"16929096"	"16906473"	"16828325"	"16376514"	"16183799"	"14732903"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"LRPPRC"	"Leigh syndrome"	"26425749"	"32591623"	"32497722"	"32383752"	"32329962"	"32303645"	"32203162"	"32065259"	"31985234"	"31937766"	"31765945"	"31657561"	"31393557"	"31365523"	"31341105"	"31324763"	"31308188"	"31223111"	"31178748"	"31158323"	"31040785"	"30995105"	"30926759"	"30660488"	"30426811"	"30316990"	"30204502"	"30070380"	"30054583"	"29660116"	"29346075"	"29313844"	"29152527"	"29146908"	"29140688"	"29117201"	"28755038"	"28622966"	"28575497"	"28515438"	"28473468"	"28325843"	"28255813"	"28118822"	"27814609"	"27799870"	"27574110"	"27679555"	"27604398"	"27462273"	"27398791"	"27353330"	"27191117"	"26646027"	"26565911"	"26510951"	"26412102"	"26247782"	"26176594"	"25959826"	"25933096"	"25835550"	"25631043"	"25470551"	"25428350"	"25379610"	"25214534"	"25089713"	"25043940"	"25008111"	"24746820"	"24722279"	"24532986"	"24430182"	"24399447"	"24390809"	"24375316"	"24211851"	"23998422"	"23935861"	"23878239"	"23829769"	"23823983"	"23822101"	"23635806"	"23599432"	"23361976"	"23144451"	"23118342"	"23116158"	"23077530"	"22808186"	"22674380"	"22661577"	"22458888"	"22326293"	"22202226"	"22045337"	"21971050"	"21880015"	"21727087"	"21437181"	"21266382"	"21262964"	"21109938"	"20677761"	"20633537"	"20220140"	"20200222"	"19925638"	"19759419"	"19725078"	"19262567"	"18939947"	"18728005"	"17554592"	"17050673"	"16636682"	"16434883"	"15907802"	"15525270"	"15272088"	"15139850"	"15081402"	"12832482"	"12762840"	"12529507"	"12071956"	"11827465"	"7881626"	"8012652"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NDUFS1"	"Leigh syndrome"	"26425749"	"32335026"	"32272119"	"32072193"	"32020600"	"31863644"	"31655151"	"31623114"	"31557978"	"31314787"	"31211236"	"30922174"	"30879903"	"30770271"	"30764484"	"30588784"	"30537723"	"30391206"	"30297109"	"29967579"	"29961960"	"29915044"	"29499254"	"29274371"	"29185933"	"28874749"	"28635542"	"28441825"	"28273704"	"28063846"	"27847319"	"27799543"	"27516145"	"27108097"	"26987334"	"26886430"	"26535995"	"26276080"	"26124772"	"26093828"	"26053550"	"25978847"	"25788480"	"25713723"	"25615419"	"25529766"	"25361078"	"25354934"	"25298284"	"24952175"	"24838397"	"24760536"	"24755484"	"24462499"	"24196945"	"24188901"	"23836946"	"23788428"	"23505434"	"23051583"	"23038253"	"22526757"	"22399432"	"22142868"	"21892157"	"21700931"	"21543115"	"21458341"	"21203893"	"20966424"	"20819849"	"20797884"	"20634418"	"20562209"	"20504321"	"20382551"	"20334438"	"19752196"	"19210954"	"19167255"	"18435906"	"17885589"	"17786189"	"17438127"	"17274530"	"16478720"	"16142472"	"15983191"	"15981016"	"15824269"	"15576045"	"15544925"	"15186778"	"12616398"	"11349233"	"1505218"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NDUFS4"	"Leigh syndrome"	"26425749"	"32655625"	"32644274"	"32641832"	"32577914"	"32574562"	"32488052"	"32478122"	"32413099"	"32367548"	"32353747"	"32335026"	"32331968"	"32070771"	"31681368"	"31665043"	"31506868"	"31403401"	"31402314"	"31383716"	"31273716"	"31248988"	"31206022"	"31167495"	"31149051"	"30983487"	"30979712"	"30972103"	"30937725"	"30937724"	"30917721"	"30830372"	"30816177"	"30728084"	"30721155"	"30707122"	"30707121"	"30668983"	"30668784"	"30520688"	"30467683"	"30391276"	"30322967"	"30165037"	"30074932"	"30060552"	"29907492"	"29789531"	"29661379"	"29590638"	"29501746"	"29465556"	"29287203"	"29264396"	"29136012"	"29040550"	"28973153"	"28919908"	"28916769"	"28883788"	"28753212"	"28646906"	"28533980"	"28483998"	"28444820"	"28419775"	"28371352"	"28371264"	"28327638"	"28161373"	"28098219"	"28027875"	"27871794"	"27852950"	"27696408"	"27671926"	"27498564"	"27108097"	"27079373"	"27043450"	"26917594"	"26859764"	"26824698"	"26699943"	"26608563"	"26450614"	"26363424"	"26310962"	"26276820"	"26257774"	"26134164"	"26124562"	"26070241"	"26039449"	"26010876"	"25842858"	"25687896"	"25652399"	"25594180"	"25477449"	"25446449"	"25409931"	"25312000"	"25275677"	"25238092"	"25130399"	"24935635"	"24755484"	"24705922"	"24522811"	"24446254"	"24295889"	"24231806"	"24020637"	"23931755"	"23911619"	"23648483"	"23637325"	"23378164"	"23291000"	"23234723"	"23073781"	"23038253"	"22912761"	"22653057"	"22535952"	"22489041"	"22430089"	"22399432"	"22326555"	"22198267"	"22142868"	"22090423"	"21965299"	"21945319"	"21383081"	"20574030"	"20534480"	"20433953"	"20303927"	"19675153"	"19460290"	"19364667"	"19210954"	"19167255"	"19107570"	"18848991"	"18812510"	"18555024"	"18455500"	"18396137"	"18291624"	"17584633"	"17438127"	"17383918"	"17274530"	"16870178"	"16478720"	"16142472"	"16120313"	"15975579"	"15824269"	"15038602"	"14765537"	"14749350"	"12944388"	"12616398"	"12418547"	"12206907"	"12013889"	"11943471"	"11864782"	"11860175"	"11852058"	"11705384"	"11181577"	"11165261"	"11112787"	"10944442"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"NDUFV1"	"Leigh syndrome"	"26425749"	"32574189"	"32475148"	"32348839"	"32335026"	"32020600"	"31794197"	"31715598"	"31655151"	"31649783"	"31576646"	"31178714"	"30972103"	"30777920"	"30770271"	"30671724"	"30429455"	"30201710"	"30155785"	"30090137"	"29976978"	"29948731"	"29676857"	"29395179"	"29353736"	"29348607"	"29336483"	"29272804"	"28860661"	"28842348"	"28659758"	"28639102"	"28441825"	"28273704"	"28245787"	"28195532"	"28063846"	"27711126"	"27344648"	"27290639"	"27262796"	"26925330"	"26758110"	"26722457"	"26345448"	"26134164"	"26125932"	"26124772"	"26093828"	"26010876"	"25978847"	"25713723"	"25615419"	"25432440"	"25361078"	"24895128"	"24548633"	"24462499"	"23964515"	"23631824"	"23596069"	"23562761"	"23334465"	"23266820"	"23152871"	"23038253"	"22142868"	"21978538"	"21696386"	"20930427"	"20716342"	"20153825"	"19752196"	"19167255"	"19073330"	"18991197"	"18989376"	"18826940"	"18435906"	"17885589"	"17786189"	"17438127"	"17383918"	"17162199"	"16142472"	"15983191"	"15824269"	"15576045"	"15562970"	"15544925"	"14662656"	"12616398"	"12013889"	"11978607"	"11494300"	"11349233"	"11112787"	"10080174"	"9892733"	"9571201"	"8288251"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SCO2"	"Leigh syndrome"	"32730261"	"26425749"	"32557197"	"32535430"	"32433818"	"32424389"	"32061935"	"32039783"	"31963392"	"31903891"	"31851937"	"31844624"	"31820644"	"31746798"	"31650627"	"31560770"	"31557538"	"31539998"	"31251778"	"31200456"	"31134474"	"31034229"	"31028847"	"30791453"	"30774231"	"30686087"	"30655742"	"30593977"	"30555630"	"30552582"	"30482719"	"30340907"	"30333580"	"30310590"	"30178328"	"30128455"	"30084872"	"30084871"	"30038027"	"29874463"	"29762087"	"29728061"	"29726003"	"29688012"	"29656249"	"29634976"	"29565505"	"29510620"	"29497836"	"29488329"	"29484605"	"29467382"	"29404892"	"29381136"	"29351582"	"29298131"	"29273252"	"29199043"	"29193756"	"29154948"	"29084012"	"28923611"	"28862474"	"28704502"	"28539354"	"28514318"	"28505887"	"28471684"	"28428045"	"28330871"	"28293809"	"28286296"	"28281372"	"28189850"	"28120178"	"28112656"	"27924521"	"27894346"	"27677502"	"27632347"	"27499152"	"27496870"	"27484708"	"27422544"	"27290639"	"27267826"	"27176636"	"27085616"	"27052445"	"27034505"	"26871275"	"26745799"	"26725848"	"26700591"	"26676373"	"26676249"	"26675066"	"26669719"	"26668162"	"26607173"	"26571138"	"26503361"	"26503121"	"26438057"	"26427993"	"26351686"	"26309161"	"26186992"	"26141676"	"26035251"	"25975705"	"25959673"	"25880046"	"25798890"	"25792727"	"25720770"	"25689250"	"25525168"	"25516160"	"25504012"	"25202281"	"25191276"	"25107896"	"25097374"	"25064493"	"25058219"	"25057436"	"24904427"	"24878247"	"24859470"	"24814483"	"24726617"	"24651237"	"24624090"	"24403053"	"24399447"	"24140291"	"24121014"	"24023027"	"23838601"	"23818984"	"23786650"	"23719228"	"23643385"	"23612020"	"23591450"	"23407777"	"23364397"	"23345593"	"23319048"	"23289792"	"23269092"	"23166010"	"23145971"	"23139858"	"23112753"	"23006892"	"22900024"	"22739762"	"22592081"	"22515166"	"22455587"	"22248668"	"22231385"	"22120717"	"22075967"	"22040291"	"21968997"	"21821119"	"21820150"	"21816817"	"21750704"	"21723506"	"21563821"	"21185935"	"21178669"	"21042727"	"20975668"	"20864674"	"20729871"	"20607971"	"20388558"	"20223999"	"20193760"	"20159436"	"20136502"	"19879173"	"19842243"	"19837698"	"19732510"	"19731845"	"19706541"	"19690266"	"19460303"	"19373256"	"19353847"	"19353431"	"19336478"	"19295170"	"19195403"	"19195377"	"19070318"	"19033884"	"18924171"	"18807927"	"18629874"	"18332255"	"18275140"	"18254779"	"18209955"	"18093982"	"17850752"	"17383352"	"17268249"	"17244525"	"17204863"	"17189203"	"17187620"	"16990044"	"16948936"	"16843260"	"16814724"	"16765077"	"16728594"	"16621884"	"16506004"	"16326995"	"16148075"	"16091356"	"16083427"	"16023442"	"15937156"	"15902551"	"15834924"	"15824987"	"15707358"	"15659396"	"15499950"	"15499941"	"15461177"	"15356960"	"15298425"	"15239669"	"15229189"	"15210538"	"15200835"	"15119951"	"15113935"	"14994243"	"14972329"	"14970747"	"14759282"	"14681757"	"14681507"	"14615477"	"14604533"	"12928484"	"12538779"	"12474143"	"12421193"	"12231008"	"12125048"	"12118739"	"28404239"	"12020273"	"11971769"	"11931660"	"11891439"	"11751685"	"11673586"	"11579424"	"11465176"	"11372008"	"11181152"	"11098288"	"11078485"	"11044474"	"11027508"	"11020744"	"10954195"	"10882613"	"10854440"	"10805329"	"10749987"	"10735984"	"10667516"	"10545952"	"10484427"	"10408656"	"9890378"	"9667301"	"9522598"	"9100186"	"9085947"	"8702795"	"8632289"	"8553402"	"8846672"	"8948739"	"7832338"	"8490745"	"1613187"	"2108506"	"3662082"	"3620661"	"6407123"	"6792955"	"7271573"	"6159842"	"27850"	"66039"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SLC19A3"	"Leigh syndrome"	"32742935"	"32679198"	"32600842"	"24260777"	"32238601"	"32034746"	"32020600"	"31951338"	"31764942"	"31726874"	"31557427"	"31095747"	"31061755"	"31014436"	"30920302"	"30119991"	"30054086"	"29419877"	"29358270"	"29287834"	"29236641"	"29123435"	"29101630"	"29068569"	"28962040"	"28912681"	"28856750"	"28706281"	"28696212"	"28677371"	"28665968"	"20301334"	"28402605"	"28284395"	"27905264"	"27743994"	"27803021"	"27749535"	"27621386"	"27570189"	"27290639"	"27287225"	"27191787"	"27168825"	"27164647"	"26975589"	"26880816"	"26863430"	"26807319"	"26718501"	"26657515"	"26633299"	"26528626"	"26443248"	"26438623"	"26394601"	"26095097"	"25962587"	"25876998"	"25515801"	"27896110"	"25117056"	"25063672"	"24957181"	"24878502"	"24878501"	"24878500"	"24846908"	"24789339"	"24667528"	"24607307"	"24525018"	"24372704"	"24282057"	"24244374"	"24166474"	"24133060"	"24099834"	"23989004"	"23956837"	"23742248"	"23642734"	"23589815"	"23506878"	"23482991"	"23469184"	"23423671"	"23285265"	"23269594"	"23209439"	"22777947"	"22382314"	"22194418"	"22116701"	"22103680"	"21921471"	"21868632"	"21789241"	"21176162"	"21099372"	"20930543"	"20484298"	"20448146"	"20065143"	"19879271"	"19830429"	"19816091"	"19628653"	"19423748"	"19387023"	"19096015"	"17463047"	"16889681"	"16790503"	"16705148"	"16371350"	"16206251"	"16087053"	"16055442"	"15871139"	"15705657"	"15623830"	"15328374"	"15217784"	"14770311"	"14615284"	"14602044"	"14567973"	"12861052"	"12643751"	"12488043"	"11731220"	"11136550"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SUCLA2"	"Leigh syndrome"	"32694611"	"32535855"	"32521958"	"32396498"	"32367480"	"32221476"	"32158496"	"31656738"	"31622506"	"31531781"	"31518731"	"30818899"	"30470562"	"30353169"	"30294543"	"30041674"	"29886603"	"29217198"	"29052564"	"28749033"	"28639102"	"20301762"	"28400269"	"28243576"	"28215579"	"28179631"	"28053875"	"27913098"	"27906631"	"27766610"	"27651038"	"27496549"	"27484306"	"27143079"	"27100877"	"26952923"	"26863601"	"26758110"	"26475597"	"26409464"	"26027540"	"25782751"	"25582465"	"25370487"	"25315394"	"27896121"	"25109799"	"24986829"	"24659738"	"24271779"	"24269713"	"24085565"	"23759946"	"23510774"	"23385875"	"23010432"	"22980518"	"22740690"	"22215558"	"21639866"	"21295139"	"21234878"	"21093335"	"20693550"	"20558295"	"20448188"	"19748572"	"19667227"	"19666145"	"19526370"	"19125351"	"19015156"	"18504129"	"18392745"	"17892433"	"17486440"	"17486094"	"17347254"	"17301081"	"17287286"	"17280874"	"16908738"	"16898256"	"16857757"	"16582910"	"15877282"	"10727444"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"SURF1"	"Leigh syndrome"	"26425749"	"32380162"	"32248588"	"32020600"	"31967322"	"31920982"	"31454184"	"31226315"	"30872186"	"30059502"	"30054583"	"29933018"	"29715184"	"29696791"	"29601977"	"29481804"	"28639102"	"28428045"	"28273704"	"28082314"	"27826120"	"27756633"	"27475922"	"27408912"	"27208630"	"27020842"	"26804654"	"26762927"	"26758110"	"26685157"	"26675066"	"26443249"	"26386875"	"26341968"	"25759513"	"25629267"	"25476511"	"25472962"	"25351680"	"25348461"	"25164807"	"25111564"	"24911525"	"27896082"	"24472117"	"24462369"	"24399447"	"24295889"	"24262866"	"24027061"	"23979592"	"23838831"	"23829769"	"23408181"	"23241310"	"23164799"	"22830725"	"22729384"	"22592081"	"22494076"	"22488715"	"22465034"	"22435634"	"22410471"	"22012983"	"21945856"	"21723506"	"21470975"	"21418525"	"21266382"	"21167962"	"20624914"	"20622059"	"20436434"	"21611066"	"19791729"	"19780766"	"19772191"	"19625251"	"19416715"	"19373256"	"19295170"	"19135921"	"19103152"	"18807927"	"18778816"	"18583168"	"18582433"	"18053667"	"18045776"	"17908801"	"17882259"	"17761683"	"17323145"	"17316384"	"17210671"	"16948936"	"16773507"	"16601896"	"16542579"	"16326995"	"16225813"	"16222681"	"16172499"	"16120373"	"16083427"	"15885549"	"15863660"	"15586227"	"15306853"	"15269007"	"15214016"	"15119951"	"14970746"	"14681757"	"14607829"	"14592991"	"14564068"	"14557577"	"12943968"	"12928484"	"12812953"	"12776230"	"12566387"	"12538779"	"12515039"	"12026244"	"12013909"	"11804207"	"11782998"	"11782424"	"11579424"	"11509016"	"11494300"	"11409433"	"11389896"	"11317352"	"11288709"	"11279059"	"11261513"	"11044474"	"10899453"	"10885665"	"10746561"	"10647889"	"10622737"	"10556303"	"10545952"	"10524227"	"9843204"	"9740673"	"9520637"	"8586415"	"2460390"	"2831500"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TTC19"	"Leigh syndrome"	"26425749"	"32320686"	"31551910"	"30578322"	"29961508"	"29243944"	"28804536"	"28673544"	"25970100"	"25899669"	"25887401"	"25772319"	"25652355"	"25452764"	"24397319"	"24368687"	"23532514"	"23281071"	"21278747"	"20208530"	"7083204"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PDHA1"	"Leigh syndrome"	"32742935"	"32699530"	"32472546"	"32466498"	"32404964"	"32348839"	"32337332"	"32319629"	"32275862"	"32006383"	"31935425"	"31857147"	"31819487"	"31685983"	"31677400"	"31673819"	"31665838"	"31531781"	"31471554"	"31409767"	"31354221"	"31161145"	"31100640"	"31065240"	"30993888"	"30799092"	"30786811"	"30693693"	"30661429"	"30611622"	"30258628"	"30226812"	"30226598"	"30153068"	"30098254"	"30090160"	"30067423"	"29847601"	"29786648"	"29756269"	"29700317"	"29676857"	"29580866"	"29560354"	"29471628"	"29445841"	"29444744"	"29335542"	"29263907"	"29204204"	"29191787"	"28918066"	"28857608"	"28818726"	"28657129"	"28639102"	"28632266"	"28564592"	"28495245"	"28337550"	"28332581"	"28273704"	"28076853"	"27894792"	"27826249"	"27725912"	"27656664"	"27651894"	"27605416"	"27586962"	"27462778"	"27357730"	"27343776"	"27331005"	"27290639"	"27246219"	"27231905"	"27144126"	"26971158"	"26944031"	"26931468"	"26920255"	"26884059"	"26865159"	"26848621"	"26808438"	"26758110"	"26416664"	"26354166"	"26343642"	"26309161"	"26287337"	"26137220"	"26107902"	"26074126"	"26014431"	"26008863"	"25991547"	"25808624"	"25610371"	"25582476"	"25526709"	"25361393"	"25356417"	"27896109"	"25152236"	"25104357"	"24962578"	"24810997"	"24718837"	"24486017"	"24345202"	"23884778"	"23840713"	"23777706"	"23572181"	"23505434"	"23021068"	"22780306"	"22750801"	"22473288"	"21914562"	"21908116"	"21723463"	"21470495"	"20835892"	"20685142"	"20652410"	"20591708"	"20462777"	"20005141"	"20002461"	"20002125"	"19924563"	"19852779"	"19639391"	"19517265"	"18709504"	"18692904"	"18504677"	"18398624"	"18273899"	"18206410"	"18197404"	"18164639"	"18023225"	"17923481"	"17582259"	"17392036"	"17314311"	"17043409"	"16904023"	"16713755"	"16552546"	"16412675"	"15712224"	"15473177"	"15384102"	"14635113"	"11708858"	"11378388"	"10777660"	"10679936"	"10350629"	"10077682"	"9806883"	"9467016"	"9503026"	"9170106"	"9048931"	"9029794"	"9003499"	"8744027"	"8557262"	"7573035"	"7626887"	"8565328"	"8001973"	"7951230"	"8188251"	"8307573"	"8281161"	"8504309"	"8468042"	"7684627"	"1679744"	"2249846"	"321417"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ACTC1"	"hypertrophic cardiomyopathy"	"32731933"	"32645861"	"32547947"	"32531470"	"32424728"	"32359161"	"32328350"	"32315311"	"32233022"	"32114990"	"32110997"	"31983221"	"31956990"	"31921954"	"31771441"	"31737203"	"31680804"	"31659112"	"31434612"	"31430208"	"31356777"	"31244373"	"31229122"	"31179125"	"20301725"	"31145994"	"30980206"	"30936892"	"30897084"	"30819249"	"30685992"	"30681346"	"30614683"	"30600190"	"30392975"	"30384889"	"30290014"	"30289745"	"30188508"	"20301486"	"30111857"	"30071218"	"30055382"	"30023931"	"29986624"	"29866053"	"29787427"	"29764897"	"29719515"	"29709087"	"29687729"	"29637615"	"29440008"	"29402189"	"29351753"	"29220674"	"28847732"	"28771489"	"28756295"	"28520539"	"28454334"	"28356264"	"28302382"	"28271491"	"27877076"	"27841901"	"27834932"	"27604170"	"27574918"	"27551501"	"27378695"	"27222170"	"27160807"	"27139165"	"27125413"	"27082122"	"27081897"	"26862471"	"26788064"	"26779504"	"26715934"	"26654940"	"26652669"	"26621696"	"28491642"	"26610861"	"26458567"	"26432839"	"26403739"	"26348902"	"26252659"	"26137811"	"26089079"	"26061005"	"26047103"	"25892673"	"25863306"	"25862970"	"25861618"	"25834424"	"25583992"	"25550050"	"25524338"	"25524337"	"25496134"	"25495007"	"25342278"	"25201647"	"25037680"	"24896083"	"24691700"	"24640523"	"24461919"	"24461915"	"24385487"	"24367596"	"24309111"	"24174427"	"23923072"	"23834555"	"23649928"	"23645235"	"23570452"	"23552285"	"23405120"	"23295128"	"22643837"	"22581745"	"22421524"	"22194935"	"22112859"	"21679429"	"21483740"	"21239446"	"21216827"	"22553740"	"20962418"	"20962417"	"20835239"	"20600154"	"20441232"	"20086309"	"19949909"	"19857893"	"19799913"	"19467449"	"19410289"	"19035361"	"18506004"	"18467357"	"17947298"	"17347475"	"15699019"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"MYH7"	"hypertrophic cardiomyopathy"	"32759632"	"32731933"	"32717063"	"32710294"	"32683902"	"32661905"	"32656206"	"32612965"	"32607476"	"32594176"	"32567507"	"32565061"	"32552916"	"32525266"	"32515493"	"32506788"	"32492895"	"32481709"	"32478919"	"32461996"	"32424548"	"32422568"	"32394868"	"32380161"	"32380038"	"32370479"	"32369506"	"32361481"	"32344918"	"32309617"	"32302556"	"32301330"	"32283115"	"32274802"	"32233023"	"32228691"	"32215921"	"32183154"	"32171501"	"32160020"	"32098116"	"32097808"	"32092825"	"32068124"	"32058039"	"32041309"	"32040801"	"32030882"	"32013205"	"31996869"	"31985010"	"31983221"	"31960626"	"31937807"	"31931472"	"31930598"	"31911272"	"31903184"	"31883612"	"31882438"	"31856055"	"31813281"	"31809672"	"31801634"	"31791268"	"31790337"	"31783775"	"31771441"	"31761835"	"31759053"	"31735781"	"31721788"	"31705962"	"31703755"	"31702438"	"31656705"	"31653443"	"31638223"	"31622160"	"31603892"	"31572181"	"31568572"	"31532134"	"31513939"	"31501865"	"31489470"	"31487817"	"31468004"	"31428883"	"31404429"	"31321652"	"31321302"	"31308319"	"31305444"	"31274171"	"31270818"	"31270306"	"31219556"	"31213605"	"31212116"	"31199839"	"31198434"	"31179125"	"31170284"	"31164718"	"20301725"	"31147515"	"31139537"	"31130376"	"31112422"	"31111288"	"31090329"	"31068177"	"31063653"	"31028938"	"31025171"	"31009642"	"30996762"	"30980206"	"30978303"	"30959811"	"30947911"	"30940158"	"30924982"	"30907627"	"30897599"	"30874888"	"30802632"	"30794915"	"30775854"	"30773860"	"30767167"	"30746755"	"30745532"	"30745336"	"30740621"	"30724341"	"30714521"	"30701284"	"30696455"	"30685992"	"30681346"	"30650640"	"30641088"	"30623133"	"30623132"	"30618075"	"30614683"	"30611794"	"30599150"	"30596890"	"30588760"	"30577560"	"30554928"	"30554920"	"30511546"	"30482994"	"30471092"	"30468499"	"30466861"	"30462978"	"30446711"	"30389139"	"30385303"	"30384889"	"30371277"	"30354366"	"30322937"	"30298491"	"30283350"	"30274168"	"30242101"	"30234379"	"30176849"	"30175795"	"30166250"	"30165862"	"30150400"	"30140926"	"20301486"	"30122194"	"30099957"	"30080426"	"30074205"	"30061737"	"30022097"	"30012424"	"29982075"	"29978770"	"29975149"	"29970176"	"29946036"	"29926655"	"29920245"	"29907873"	"29899280"	"29869614"	"29802573"	"29802254"	"29800789"	"29777134"	"29764897"	"29753027"	"29748547"	"29743414"	"29741611"	"29719249"	"29709087"	"29690867"	"29686627"	"29666183"	"29660325"	"29635288"	"29624713"	"29555974"	"29552326"	"29538345"	"29518186"	"29497013"	"29466686"	"29447731"	"29414662"	"29412738"	"29386531"	"29343710"	"29333723"	"29300372"	"29286120"	"29253866"	"29248012"	"29244159"	"29237678"	"29206857"	"29203216"	"29170849"	"29160161"	"29137374"	"29121657"	"29101517"	"29093449"	"29070483"	"29064177"	"29053178"	"29052809"	"29024827"	"28927399"	"28927343"	"28912181"	"28866666"	"28864942"	"28855170"	"28840316"	"28838967"	"28815794"	"28806941"	"28798025"	"28794400"	"28777849"	"28771489"	"28769032"	"28752107"	"28738414"	"28715029"	"28699631"	"31453232"	"28657075"	"28654758"	"28642161"	"28629674"	"28615295"	"28614222"	"28570402"	"28567076"	"28539827"	"28538763"	"28498465"	"28481356"	"28479925"	"28437395"	"28408708"	"28395747"	"28369730"	"28366003"	"28363698"	"28356264"	"28323875"	"28303410"	"28296734"	"28265379"	"29931944"	"28246552"	"28246128"	"28238269"	"28210753"	"28202948"	"28193612"	"28183531"	"28179209"	"28119616"	"28100873"	"28042345"	"28002607"	"28002430"	"27967605"	"27965028"	"27910300"	"27886618"	"27885498"	"27841901"	"27840609"	"27789736"	"27592051"	"27422448"	"27769999"	"25847060"	"27737317"	"27650251"	"27604170"	"27600940"	"27576561"	"27574918"	"27571286"	"27545043"	"27519903"	"27506764"	"27489048"	"27483260"	"27476098"	"27469267"	"27448459"	"27387980"	"27378925"	"27373729"	"27371681"	"27350678"	"27339502"	"27318203"	"27306334"	"27282841"	"27262998"	"27250523"	"27247418"	"27233753"	"27220577"	"27199124"	"27161882"	"27161364"	"27161004"	"27141495"	"27100622"	"27090888"	"27084024"	"27082122"	"27066506"	"27061206"	"27005958"	"27000522"	"26970499"	"26969327"	"26969127"	"26955724"	"26909933"	"26869393"	"26824887"	"26813553"	"26799446"	"26788064"	"26782017"	"26779504"	"26776594"	"26773184"	"26676053"	"26654849"	"26606750"	"26603456"	"26597775"	"26567828"	"26513624"	"26506219"	"26498512"	"26490279"	"26458567"	"26440511"	"26406308"	"26403739"	"26380811"	"26375510"	"26342069"	"26337809"	"26328012"	"26315584"	"26278933"	"26241864"	"26224577"	"26220970"	"26214486"	"26200114"	"26199943"	"26178432"	"26162782"	"26150528"	"26108756"	"26094647"	"26086795"	"26084457"	"26059207"	"26025024"	"26005169"	"25986609"	"25979592"	"25937619"	"25935763"	"25915937"	"25912113"	"25892673"	"25890300"	"25865156"	"25863306"	"25851726"	"25825456"	"25816057"	"25801283"	"25794679"	"25792377"	"25784084"	"25781190"	"20301606"	"25750702"	"25695922"	"25666907"	"25658462"	"25626705"	"25608533"	"25607779"	"25583992"	"25576864"	"25574480"	"25573851"	"25550050"	"27081534"	"25548157"	"25547560"	"25531450"	"25530254"	"25500949"	"25495007"	"25477432"	"25458192"	"25449695"	"25448463"	"25447691"	"25444217"	"25422285"	"25415959"	"25354728"	"25346696"	"25342278"	"25332820"	"25327599"	"25323733"	"25309450"	"25301196"	"25209314"	"25189259"	"25182012"	"25181347"	"25172430"	"25171374"	"25139234"	"25125180"	"25119045"	"25089522"	"25086479"	"25084050"	"25078086"	"25075536"	"25037680"	"25015961"	"24992688"	"24989488"	"24984876"	"24963656"	"24953931"	"24928957"	"24924395"	"24888384"	"24878771"	"24835277"	"24829265"	"24828896"	"24817948"	"24805292"	"24781449"	"24758099"	"24740654"	"24726209"	"24719897"	"24713641"	"24710723"	"24691700"
+"MYL3"	"hypertrophic cardiomyopathy"	"32741900"	"32603918"	"32052794"	"31938576"	"31807166"	"31554435"	"31486291"	"31419595"	"31228583"	"31179125"	"20301725"	"30770755"	"30681346"	"30605904"	"30568597"	"30317011"	"30122194"	"29914921"	"29879808"	"29748547"	"29709087"	"29677652"	"29253866"	"28771489"	"28533755"	"28485676"	"28436483"	"28356264"	"28115646"	"27841901"	"27638646"	"27574918"	"27483260"	"27082122"	"27020044"	"26909933"	"26870665"	"26779504"	"26721300"	"26676053"	"26656596"	"26627004"	"26458567"	"26443374"	"26375510"	"25892673"	"25637602"	"25607779"	"25604732"	"25531450"	"25342278"	"25323733"	"25172430"	"25086479"	"25062762"	"25037680"	"24992688"	"24961663"	"24920607"	"24744911"	"24691700"	"24681897"	"24111713"	"24053884"	"23594557"	"23444318"	"22957257"	"22878004"	"22626544"	"22544609"	"22421524"	"22194935"	"22112859"	"21896538"	"21823217"	"21438665"	"21303932"	"21239446"	"21166718"	"20965760"	"20667664"	"20641121"	"20585107"	"20471959"	"20359594"	"20031618"	"20024584"	"19698110"	"19388669"	"19293840"	"19035361"	"19004760"	"18630579"	"18409188"	"18403758"	"17447729"	"16754800"	"16199542"	"15706574"	"15699019"	"15058760"	"12707239"	"12552558"	"12404107"	"10885298"	"8020952"	"2784124"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"PRKAG2"	"hypertrophic cardiomyopathy"	"32747946"	"32727648"	"32704143"	"32681253"	"32646570"	"32646569"	"32616251"	"32508047"	"32463999"	"32314121"	"32294219"	"32277301"	"32259713"	"32233023"	"32215636"	"32150461"	"32117736"	"32039845"	"31838722"	"31720784"	"31512724"	"31449595"	"31347270"	"31345272"	"31327267"	"31049239"	"30997723"	"30959811"	"30813608"	"30775854"	"30689184"	"30649496"	"30559760"	"30430036"	"30384889"	"30336887"	"30248490"	"30218679"	"29905801"	"29805546"	"29710384"	"29703844"	"29593177"	"29580070"	"29525649"	"29480501"	"29452156"	"29444221"	"29411465"	"29318808"	"29315230"	"29298659"	"29107296"	"29097735"	"29036338"	"29036308"	"28917552"	"28835357"	"28801758"	"28797094"	"28771489"	"28690312"	"28626079"	"28614725"	"28578331"	"28550180"	"28546535"	"28498465"	"28431061"	"28302767"	"28258649"	"28009297"	"27864312"	"27841901"	"27821470"	"27815596"	"27692944"	"27588484"	"27573176"	"27496753"	"27381900"	"27303042"	"27143764"	"27142047"	"27082122"	"26729852"	"26542978"	"26496977"	"26333379"	"26284702"	"26278982"	"26150313"	"26085771"	"25997934"	"25966135"	"25946404"	"25738462"	"25711310"	"25695398"	"25275262"	"25187157"	"25092788"	"25037680"	"24959314"	"24730749"	"24560520"	"24503893"	"24497343"	"24311711"	"24253112"	"23997074"	"23992123"	"23829931"	"23810891"	"23778007"	"23741347"	"23606725"	"23457527"	"23396962"	"23263486"	"23034890"	"22939960"	"22897928"	"22895604"	"22888310"	"22789965"	"22683324"	"22456184"	"21999454"	"21980298"	"21896538"	"21813245"	"21691125"	"21511876"	"21409595"	"21324179"	"21119756"	"21092663"	"20888928"	"20821366"	"20728256"	"20682687"	"20622004"	"20600102"	"20561859"	"20383146"	"20381067"	"20031621"	"20031618"	"20022652"	"20005292"	"19920047"	"19808419"	"19787389"	"19732236"	"19632136"	"19533775"	"19212922"	"18812404"	"18811822"	"18691923"	"18409188"	"18403758"	"18261713"	"18195183"	"18158359"	"18033003"	"17990392"	"17711718"	"17667862"	"17597581"	"17546768"	"17483151"	"16836667"	"16754800"	"16716659"	"16686673"	"16619977"	"16487706"	"16275868"	"16267253"	"15877279"	"15766830"	"15673802"	"15611370"	"15368346"	"15222307"	"15025572"	"14724738"	"14519435"	"12957447"	"12782567"	"12716108"	"12682004"	"12546691"	"12015471"	"11827995"	"11748095"	"11407343"	"11371514"	"11112354"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TNNI3"	"hypertrophic cardiomyopathy"	"32758068"	"32731933"	"32649901"	"32492895"	"32481709"	"32380161"	"32278834"	"32182250"	"31995186"	"31960626"	"31877599"	"31821703"	"31801634"	"31707831"	"31568572"	"31472168"	"31455664"	"31419595"	"31308319"	"31260338"	"31195249"	"31179125"	"20301725"	"30953456"	"30681346"	"30671487"	"30554928"	"30468474"	"30395933"	"30385303"	"30384889"	"30279906"	"30150400"	"20301486"	"30022097"	"30012424"	"29920245"	"29910216"	"29907873"	"29709087"	"29687729"	"29637615"	"29355681"	"29253866"	"29176140"	"29093449"	"28840316"	"28815794"	"28771489"	"28657075"	"28567093"	"28498465"	"28436080"	"28382084"	"28359509"	"28356264"	"28054837"	"28031081"	"27851806"	"27841901"	"27604170"	"27576561"	"27574918"	"27483260"	"27385602"	"27306334"	"27141495"	"27082122"	"26869393"	"26779504"	"26741492"	"26594036"	"26553696"	"26526134"	"26506446"	"26458567"	"26440512"	"26406308"	"26401249"	"26224577"	"26199943"	"26178432"	"26169204"	"25940119"	"25892673"	"25607779"	"25458192"	"25381793"	"25358788"	"25354728"	"25342278"	"25286293"	"25089838"	"25086479"	"25037680"	"24992688"	"24691700"	"24594054"	"24474965"	"24367055"	"24327950"	"24111713"	"24053884"	"23906401"	"23782526"	"23674513"	"23552285"	"23508784"	"23475851"	"23396983"	"23349452"	"23283745"	"23140321"	"22982684"	"22876777"	"22857948"	"22677435"	"22581745"	"22475360"	"22464770"	"22455086"	"22429680"	"22301726"	"22228770"	"22194935"	"22112859"	"22097810"	"21896538"	"21846512"	"21839045"	"21799269"	"21533915"	"21483645"	"21425739"	"21239446"	"21216827"	"21211671"	"20965760"	"20817590"	"20800588"	"20689143"	"20641121"	"20624503"	"20585107"	"20569525"	"20542340"	"20376701"	"20359594"	"20338065"	"20215591"	"20124440"	"20031618"	"20024788"	"19788923"	"19645627"	"19590045"	"19449150"	"19293840"	"19150014"	"19035361"	"18957093"	"18805052"	"18651010"	"18488914"	"18467357"	"18409188"	"18403758"	"18175163"	"18033312"	"18022329"	"18006163"	"17433012"	"17101185"	"16754800"	"16516408"	"16335287"	"16020591"	"15607392"	"15070570"	"15058760"	"12974739"	"12836637"	"12707239"	"12552558"	"12531876"	"11967535"	"10885298"	"10806205"	"10721725"	"9605869"	"8661099"	"8903721"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TNNT2"	"hypertrophic cardiomyopathy"	"32758068"	"32731933"	"32721792"	"32710294"	"32690703"	"32682583"	"32649901"	"32648361"	"32645861"	"32627044"	"32594176"	"32563186"	"32516676"	"32481709"	"32369506"	"32290750"	"32278834"	"32277708"	"32106929"	"32098556"	"32050579"	"32040581"	"32024875"	"31983221"	"31898359"	"31875616"	"31821703"	"31796423"	"31770195"	"31759053"	"31749426"	"31741053"	"31712308"	"31695764"	"31611837"	"31530214"	"31493355"	"31479920"	"31401842"	"31392899"	"31387947"	"31321652"	"31314708"	"31308319"	"31303467"	"31298688"	"31248450"	"31246275"	"31219556"	"31201803"	"31179125"	"20301725"	"31063194"	"31045879"	"31023001"	"30983202"	"30980206"	"30978303"	"30953456"	"30927355"	"30911930"	"30907984"	"30871747"	"30713072"	"30706590"	"30681346"	"30637987"	"30614683"	"30601704"	"30596653"	"30578328"	"30565988"	"30554928"	"30510588"	"30485506"	"30414101"	"30277854"	"30235441"	"30150400"	"30143482"	"20301486"	"30062101"	"30012424"	"29956664"	"29920846"	"29907873"	"29884574"	"29874768"	"29715634"	"29709087"	"29627440"	"29581714"	"29572196"	"29531190"	"29367541"	"29262570"	"29232368"	"29221605"	"29217199"	"29117795"	"28973951"	"28903026"	"28865712"	"28840316"	"28839205"	"28815794"	"28795648"	"28771489"	"28735292"	"28669108"	"31453232"	"28642161"	"28638918"	"28604846"	"28603979"	"28587156"	"28538763"	"28436080"	"28408708"	"28396518"	"28356264"	"28246128"	"28235404"	"28202948"	"28192031"	"28116894"	"28071742"	"28063225"	"28060283"	"27938398"	"27936050"	"27930352"	"27888761"	"27877076"	"27857236"	"27841901"	"27790820"	"27737317"	"27604170"	"27576561"	"27574918"	"27551501"	"27484195"	"27483260"	"27465073"	"27350668"	"27346001"	"27306334"	"27296200"	"27266388"	"27199119"	"27194630"	"27178276"	"27141495"	"27082122"	"27035921"	"26969327"	"26955724"	"26917225"	"26916429"	"26896474"	"26869393"	"26868212"	"26859196"	"26811534"	"26788064"	"26779504"	"26774798"	"26656454"	"26654849"	"26621696"	"26563201"	"26551753"	"26525169"	"26507537"	"26498512"	"26476764"	"26475736"	"26458567"	"26455666"	"26427155"	"26400351"	"26388461"	"26212819"	"26178432"	"26133717"	"26110923"	"26095046"	"26077897"	"26036786"	"26023924"	"26010701"	"25964074"	"25937619"	"25892673"	"25871791"	"25863306"	"25849606"	"25843242"	"25834424"	"25788439"	"25761764"	"25744196"	"25709425"	"25690476"	"25626427"	"25607779"	"25550050"	"25524338"	"25524337"	"25521583"	"25467832"	"25448463"	"25342278"	"25298344"	"25286293"	"25189461"	"25171543"	"25112287"	"25110706"	"25086479"	"25053882"	"25050861"	"25037680"	"25004239"	"25000405"	"24930130"	"24778452"	"24733401"	"24699335"	"24691700"	"24610529"	"24594054"	"24584570"	"24533109"	"24492355"	"24445773"	"24439874"	"24367055"	"24354633"	"24311987"	"24309111"	"24205113"	"24119082"	"24111713"	"24093860"	"24065749"	"24037902"	"23990205"	"23955806"	"23906401"	"23903933"	"23865318"	"23846679"	"23837677"	"23816408"	"23816406"	"23788194"	"23782526"	"23711808"	"23674513"	"23650201"	"23604180"	"23586019"	"23552285"	"23514754"	"23508784"	"23494605"	"23468514"	"23404916"	"23396983"	"23395473"	"23393062"	"23349452"	"23315610"	"23283745"	"23247143"	"23233322"	"23230735"	"23144723"	"23140321"	"23074333"	"22985995"	"22982904"	"22982684"	"22939960"	"22914904"	"22869457"	"22857948"	"22822013"	"22820391"	"22811547"	"22694299"	"22685114"	"22681487"	"22475360"	"22464770"	"22455086"	"22429680"	"22321274"	"22292720"	"22237054"	"22194935"	"22156369"	"22144547"	"22112859"	"22042811"	"22027658"	"22017532"	"22009485"	"21945774"	"21936361"	"21896538"	"21876760"	"21846512"	"21835320"	"21799269"	"21792561"	"21744185"	"21639091"	"21617319"	"21598354"	"21574239"	"21565742"	"21565741"	"21561436"	"21483645"	"21453614"	"21425739"	"21303839"	"21245263"	"21239446"	"21211671"	"21198554"	"20978592"	"20973921"	"20965760"	"20884259"	"20800588"	"20689143"	"20663266"	"20624503"	"20542340"	"20502647"	"20472389"	"20458009"	"20414521"	"20359594"	"20201937"	"20124440"	"20083571"	"20074335"	"20038417"	"20031619"	"20031618"	"20031602"	"20031601"	"20014345"	"19996403"	"19880069"	"19857893"	"19680825"	"19666196"	"19645627"	"19586842"	"19536628"	"19509081"	"19477965"	"19427304"	"19412328"	"19410289"	"19324435"	"19293840"	"19253838"	"19184181"	"19159593"	"19150014"	"19134269"	"19132680"	"19087273"	"19035361"	"18957093"	"18805052"	"18796162"	"18671960"	"18651846"	"18612386"	"18506004"	"18488914"	"18480576"	"18467357"	"18409188"	"18403758"	"18258667"	"18222913"	"18029407"	"17998275"	"17961973"	"17612745"	"17456375"	"17347475"	"17288815"	"17101185"	"16858239"	"16754800"	"16630449"	"16538283"	"16459152"	"16137545"	"16086176"	"15843400"	"15769782"	"15563892"	"15542288"	"15387941"	"15138499"	"15058760"	"14986170"	"14563299"	"12974739"	"12951062"	"12881443"	"12761854"	"12707239"	"12473556"	"12379228"	"12206807"	"12084606"	"11967535"	"11862580"	"11857753"	"11685458"	"10885298"	"9689598"	"9482583"	"8989109"	"8088824"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"TPM1"	"hypertrophic cardiomyopathy"	"32765688"	"32761805"	"32744700"	"32733033"	"32731933"	"32695477"	"32686411"	"32645861"	"32560136"	"32427870"	"32408895"	"32346368"	"32283206"	"32255282"	"32183154"	"32174839"	"32117675"	"32079026"	"32013205"	"31996302"	"31991631"	"31983221"	"31937048"	"31820591"	"31703168"	"31689804"	"31672498"	"31643006"	"31638242"	"31308319"	"31286391"	"31270709"	"31258820"	"31258725"	"31179125"	"20301725"	"31151297"	"31122291"	"31087247"	"31072616"	"31022261"	"30980206"	"30923642"	"30888054"	"30865560"	"30779109"	"30775854"	"30740675"	"30681346"	"30650006"	"30587792"	"30567734"	"30545627"	"30532204"	"30509103"	"30497761"	"30461333"	"30390420"	"30314482"	"30304871"	"30259780"	"30255988"	"30188508"	"20301486"	"30022097"	"30021666"	"30019485"	"29974557"	"29884574"	"29873870"	"29760186"	"29731872"	"29709087"	"29632810"	"29626422"	"29510160"	"29510086"	"29500902"	"29496559"	"29490240"	"29384851"	"29361520"	"29317496"	"29278785"	"29278453"	"29191834"	"29186711"	"29119050"	"29105867"	"29024827"	"28939420"	"28910456"	"28798025"	"28771489"	"28754317"	"28732641"	"28720661"	"28717602"	"28677755"	"28662356"	"28642470"	"28603979"	"28600229"	"28596382"	"28436483"	"28384068"	"28378936"	"28359939"	"28356264"	"28276320"	"28251479"	"28216317"	"28192031"	"28182650"	"28002632"	"27998020"	"27976512"	"27956029"	"27878731"	"27866892"	"27841901"	"27833562"	"27779677"	"27761697"	"27703814"	"27693909"	"27683217"	"27663225"	"27649540"	"27576004"	"27574918"	"27535431"	"27480605"	"27420374"	"27402877"	"27218255"	"27177193"	"27165017"	"27141495"	"27112294"	"27108600"	"27090236"	"27082122"	"27057166"	"27055045"	"27051295"	"27035921"	"27020427"	"26990106"	"26960954"	"26891730"	"26873245"	"26869393"	"26863527"	"26840804"	"26840286"	"26805581"	"26792422"	"26779504"	"26708290"	"26679756"	"26663234"	"26607605"	"26458567"	"26420121"	"26417028"	"26401249"	"26400443"	"26400351"	"26300395"	"26263384"	"26200873"	"26171250"	"26147585"	"26065842"	"26025024"	"25892673"	"25873252"	"25857206"	"25849331"	"25607779"	"25607530"	"25550050"	"25548289"	"25495007"	"25342278"	"25280781"	"25248508"	"25125172"	"25086479"	"25044676"	"25037680"	"24992688"	"24958154"	"24951588"	"24888384"	"24876965"	"24691700"	"24500875"	"24373687"	"24369881"	"24362038"	"24326185"	"24076132"	"24035909"	"24005378"	"23918370"	"23885106"	"23792823"	"23782526"	"23695782"	"23674513"	"23659058"	"23604178"	"23558936"	"23539503"	"23536526"	"23511971"	"23508784"	"23467423"	"23424201"	"23349452"	"23254774"	"23232082"	"23205574"	"23147248"	"22965424"	"22958892"	"22939960"	"22877783"	"22876330"	"22869457"	"22814378"	"22789852"	"22766763"	"22740512"	"22740468"	"22704989"	"22668864"	"22581745"	"22571164"	"22464770"	"22462493"	"22447464"	"22433308"	"22391036"	"22330775"	"22313753"	"22237054"	"22230392"	"22194935"	"22155441"	"22112859"	"22042369"	"22038928"	"22023808"	"21984808"	"21898990"	"21896538"	"21849698"	"21835320"	"21834041"	"21823217"	"21817107"	"21799269"	"21741356"	"21642240"	"21551322"	"21483645"	"21454502"	"21376702"	"21274714"	"21239446"	"21229884"	"21221740"	"21167051"	"21139804"	"21118496"	"21114337"	"21095247"	"21036167"	"20971066"	"20965760"	"20952761"	"20689143"	"20564186"	"20542340"	"20502437"	"20417062"	"20359594"	"20215591"	"20191385"	"20163590"	"20117437"	"20075843"	"20065163"	"20031618"	"19889963"	"19678923"	"19646950"	"19572226"	"19509158"	"19473551"	"19302977"	"19293840"	"19209824"	"19209811"	"19177011"	"19150014"	"19037011"	"19035361"	"18982060"	"18957093"	"18937355"	"18821527"	"18710659"	"18697798"	"18627528"	"18597072"	"18583338"	"18409188"	"18403758"	"18353764"	"18302173"	"18270520"	"18234843"	"18006493"	"17987659"	"17895359"	"17721995"	"17705267"	"17556658"	"17556170"	"17556159"	"17452625"	"17416606"	"17416600"	"22064019"	"17392379"	"17363372"	"17318415"	"17316384"	"17313334"	"17192196"	"17131158"	"17118118"	"17059412"	"16936729"	"16872921"	"16757580"	"16741969"	"16637015"	"16530936"	"16504640"	"16420482"	"16326906"	"16170368"	"16122869"	"16014439"	"15986332"	"15897890"	"15838882"	"15738587"	"15645503"	"15562513"	"15492259"	"15249230"	"15094190"	"15058760"	"15000344"	"14734051"	"14722123"	"13679858"	"12974739"	"12942118"	"12855476"	"12841578"	"12808144"	"12805120"	"12783868"	"12778034"	"12707239"	"12686598"	"12679389"	"12651045"	"12527301"	"12473556"	"12467750"	"12423715"	"12379228"	"12213212"	"12065096"	"11563548"	"11457840"	"11360195"	"11289312"	"11273725"	"11167527"	"11136687"	"11014803"	"11009604"	"10998421"	"10885298"	"10793147"	"10696235"	"10578111"	"10572259"	"10343096"	"10208425"	"10024180"	"9973388"	"9690624"	"9584076"	"9383048"	"9409824"	"9409684"	"9105043"	"9055077"	"9016781"	"9227850"	"7579704"	"7844152"	"7823913"	"7835079"	"8243993"	"8334302"	"1629236"	"2649250"	"3940065"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
+"ALPK3"	"hypertrophic cardiomyopathy"	"32480058"	"31580838"	"31554410"	"20301725"	"31074094"	"30868060"	"30046096"	"28630369"	"28296976"	"28223422"	"27609099"	"27106955"	"26846950"	"23792212"	"21441111"	"21354282"	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA	NA
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/2/abstracts_by_pmids_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,183 @@
+"ID_researcher"	"GROUPING_department"	"PMID_1"	"PMID_2"	"PMID_3"	"PMID_4"	"PMID_5"	"PMID_6"	"PMID_7"	"PMID_8"	"PMID_9"	"PMID_10"	"ABSTRACT_1"	"ABSTRACT_2"	"ABSTRACT_3"	"ABSTRACT_4"	"ABSTRACT_5"	"ABSTRACT_6"	"ABSTRACT_7"	"ABSTRACT_8"	"ABSTRACT_9"	"ABSTRACT_10"
+"Abazeed, Mohamed"	"Translational Hematology and Oncology Research"	30202792	28017592	27109210	26384271	23980093	18784256	30709865	29795413	27088724	NA	"There has been little progress in the use of patient-derived xenografts (PDX) to guide individual therapeutic strategies. In part, this can be attributed to the operational challenges of effecting successful engraftment and testing multiple candidate drugs in a clinically workable timeframe. It also remains unclear whether the ancestral tumor will evolve along similar evolutionary trajectories in its human and rodent hosts in response to similar selective pressures (i.e., drugs). Herein, we combine a metastatic clear cell adenocarcinoma PDX with a timely 3 mouse x 1 drug experimental design, followed by a co-clinical trial to longitudinally guide a patient's care. Using this approach, we accurately predict response to first- and second-line therapies in so far as tumor response in mice correlated with the patient's clinical response to first-line therapy (gemcitabine/nivolumab), development of resistance and response to second-line therapy (paclitaxel/neratinib) before these events were observed in the patient. Treatment resistance to first-line therapy in the PDX is coincident with biologically relevant changes in gene and gene set expression, including upregulation of phase I/II drug metabolism (CYP2C18, UGT2A, and ATP2A1) and DNA interstrand cross-link repair (i.e., XPA, FANCE, FANCG, and FANCL) genes. A total of 5.3% of our engrafted PDX collection is established within 2 weeks of implantation, suggesting our experimental designs can be broadened to other cancers. These findings could have significant implications for PDX-based avatars of aggressive human cancers."	"Stereotactic body radiation therapy (SBRT) is the standard of care for medically inoperable patients with early-stage NSCLC. However, NSCLC is composed of several histological subtypes and the impact of this heterogeneity on SBRT treatments has yet to be established. We analyzed 740 patients with early-stage NSCLC treated definitively with SBRT from 2003 through 2015. We calculated cumulative incidence curves using the competing risk method and identified predictors of local failure using Fine and Gray regression. Overall, 72 patients had a local failure, with a cumulative incidence of local failure at 3 years of 11.8%. On univariate analysis, squamous histological subtype, younger age, fewer medical comorbidities, higher body mass index, higher positron emission tomography standardized uptake value, central tumors, and lower radiation dose were associated with an increased risk for local failure. On multivariable analysis, squamous histological subtype (hazard ratio = 2.4 p = 0.008) was the strongest predictor of local failure. Patients with squamous cancers fail SBRT at a significantly higher rate than do those with adenocarcinomas or NSCLC not otherwise specified, with 3-year cumulative rates of local failure of 18.9% (95% confidence interval [CI]: 12.7-25.1), 8.7% (95% CI: 4.6-12.8), and 4.1% (95% CI: 0-9.6), respectively. Our results demonstrate an increased rate of local failure in patients with squamous cell carcinoma. Standard approaches for radiotherapy that demonstrate efficacy for a population may not achieve optimal results for individual patients. Establishing the differential dose effect of SBRT across histological groups is likely to improve efficacy and inform ongoing and future studies that aim to expand indications for SBRT."	"Radiotherapy is not currently informed by the genetic composition of an individual patient's tumour. To identify genetic features regulating survival after DNA damage, here we conduct large-scale profiling of cellular survival after exposure to radiation in a diverse collection of 533 genetically annotated human tumour cell lines. We show that sensitivity to radiation is characterized by significant variation across and within lineages. We combine results from our platform with genomic features to identify parameters that predict radiation sensitivity. We identify somatic copy number alterations, gene mutations and the basal expression of individual genes and gene sets that correlate with the radiation survival, revealing new insights into the genetic basis of tumour cellular response to DNA damage. These results demonstrate the diversity of tumour cellular response to ionizing radiation and establish multiple lines of evidence that new genetic features regulating cellular response after DNA damage can be identified."	"Current predictors of radiation response are largely limited to clinical and histopathologic parameters, and extensive systematic analyses of the correlation between radiation sensitivity and genomic parameters remain lacking. In the era of precision medicine, the lack of -omic determinants of radiation response has hindered the personalization of radiation delivery to the unique characteristics of each patient׳s cancer and impeded the discovery of new therapies that can be administered concurrently with radiation therapy. The cataloging of the -omic determinants of radiation sensitivity of cancer has great potential in enhancing efficacy and limiting toxicity in the context of a new approach to precision radiotherapy. Herein, we review concepts and data that contribute to the delineation of the radiogenomic landscape of cancer. "	"Radiotherapy is one of the mainstays of anticancer treatment, but the relationship between the radiosensitivity of cancer cells and their genomic characteristics is still not well defined. Here, we report the development of a high-throughput platform for measuring radiation survival in vitro and its validation in comparison with conventional clonogenic radiation survival analysis. We combined results from this high-throughput assay with genomic parameters in cell lines from squamous cell lung carcinoma, which is standardly treated by radiotherapy, to identify parameters that predict radiation sensitivity. We showed that activation of NFE2L2, a frequent event in lung squamous cancers, confers radiation resistance. An expression-based, in silico screen nominated inhibitors of phosphoinositide 3-kinase (PI3K) as NFE2L2 antagonists. We showed that the selective PI3K inhibitor, NVP-BKM120, both decreased NRF2 protein levels and sensitized NFE2L2 or KEAP1-mutant cells to radiation. We then combined results from this high-throughput assay with single-sample gene set enrichment analysis of gene expression data. The resulting analysis identified pathways implicated in cell survival, genotoxic stress, detoxification, and innate and adaptive immunity as key correlates of radiation sensitivity. The integrative and high-throughput methods shown here for large-scale profiling of radiation survival and genomic features of solid-tumor-derived cell lines should facilitate tumor radiogenomics and the discovery of genotype-selective radiation sensitizers and protective agents."	"Golgi-localized, gamma-Ear-containing, ADP-ribosylation factor-binding proteins (GGAs) and adaptor protein-1 (AP-1) mediate clathrin-dependent trafficking of transmembrane proteins between the trans-Golgi network (TGN) and endosomes. In yeast, the vacuolar sorting receptor Vps10p follows a direct pathway from the TGN to the late endosome/prevacuolar compartment (PVC), whereas, the processing protease Kex2p partitions between the direct pathway and an indirect pathway through the early endosome. To examine the roles of the Ggas and AP-1 in TGN-PVC transport, we used a cell-free assay that measures delivery to the PVC of either Kex2p or a chimeric protein (K-V), in which the Vps10p cytosolic tail replaces the Kex2p tail. Either antibody inhibition or dominant-negative Gga2p completely blocked K-V transport but only partially blocked Kex2p transport. Deletion of APL2, encoding the beta subunit of AP-1, did not affect K-V transport but partially blocked Kex2p transport. Residual Kex2p transport seen with apl2Delta membranes was insensitive to dominant-negative Gga2p, suggesting that the apl2Delta mutation causes Kex2p to localize to a compartment that precludes Gga-dependent trafficking. These results suggest that yeast Ggas facilitate the specific and direct delivery of Vps10p and Kex2p from the TGN to the PVC and that AP-1 modulates Kex2p trafficking through a distinct pathway, presumably involving the early endosome."	"Somatic TET2 mutations (TET2<sup>MT</sup>) are frequent in myeloid neoplasia (MN), particularly chronic myelomonocytic leukemia (CMML). TET2<sup>MT</sup> includes mostly loss-of-function/hypomorphic hits. Impaired TET2 activity skews differentiation of hematopoietic stem cells toward proliferating myeloid precursors. This study was prompted by the observation of frequent biallelic TET2 gene inactivations (biTET2<sup> i </sup> ) in CMML. We speculated that biTET2<sup> i </sup> might be associated with distinct clinicohematological features. We analyzed TET2<sup>MT</sup> in 1045 patients with MN. Of 82 biTET2<sup> i </sup> cases, 66 were biTET2<sup>MT</sup>, 13 were hemizygous TET2<sup>MT</sup>, and 3 were homozygous TET2<sup>MT</sup> (uniparental disomy); the remaining patients (denoted biTET2<sup> - </sup> hereafter) were either monoallelic TET2<sup>MT</sup> (n = 96) or wild-type TET2 (n = 823). Truncation mutations were found in 83% of biTET2<sup> i </sup> vs 65% of biTET2<sup> - </sup> cases (P = .02). TET2 hits were founder lesions in 72% of biTET2<sup> i </sup> vs 38% of biTET2<sup> - </sup> cases (P &lt; .0001). In biTET2<sup> i </sup> , significantly concurrent hits included SRSF2<sup>MT</sup> (33%; P &lt; .0001) and KRAS/NRAS<sup>MT</sup> (16%; P = .03) as compared with biTET2<sup> - </sup> When the first TET2 hit was ancestral in biTET2<sup> i </sup> , the most common subsequent hits affected a second TET2<sup>MT</sup>, followed by SRSF2<sup>MT</sup>, ASXL1<sup>MT</sup>, RAS<sup>MT</sup>, and DNMT3A<sup>MT</sup>BiTET2<sup> i </sup> patients without any monocytosis showed an absence of SRSF2<sup>MT</sup>BiTET2<sup> i </sup> patients were older and had monocytosis, CMML, normal karyotypes, and lower-risk disease compared with biTET2<sup> - </sup> patients. Hence, while a second TET2 hit occurred frequently, biTET2<sup> i </sup> did not portend faster progression but rather determined monocytic differentiation, consistent with its prevalence in CMML. Additionally, biTET2<sup> i </sup> showed lower odds of cytopenias and marrow blasts (≥5%) and higher odds of myeloid dysplasia and marrow hypercellularity. Thus, biTET2<sup> i </sup> might represent an auxiliary assessment tool in MN."	"Somatic mutations in TET2 are common in myelodysplastic syndromes (MDS), myeloproliferative, and overlap syndromes. TET2 mutant (TET2<sup>MT</sup>) clones are also found in asymptomatic elderly individuals, a condition referred to as clonal hematopoiesis of indeterminate potential (CHIP). In various entities of TET2<sup>MT</sup> neoplasia, we examined the phenotype in relation to the strata of TET2 hits within the clonal hierarchy. Using deep sequencing, 1781 mutations were found in 1205 of 4930 patients; 40% of mutant cases were biallelic. Hierarchical analysis revealed that of TET2<sup>MT</sup> cases &gt;40% were ancestral, e.g., representing 8% of MDS. Higher (earlier) TET2 lesion rank within the clonal hierarchy (greater clonal burden) was associated with impaired survival. Moreover, MDS driven by ancestral TET2<sup>MT</sup> is likely derived from TET2<sup>MT</sup> CHIP with a penetrance of ~1%. Following ancestral TET2 mutations, individual disease course is determined by secondary hits. Using multidimensional analyses, we demonstrate how hits following the TET2 founder defect induces phenotypic shifts toward dysplasia, myeloproliferation, or progression to AML. In summary, TET2<sup>MT</sup> CHIP-derived MDS is a subclass of MDS that is distinct from de novo disease."	"Systematic efforts to sequence the cancer genome have identified large numbers of mutations and copy number alterations in human cancers. However, elucidating the functional consequences of these variants, and their interactions to drive or maintain oncogenic states, remains a challenge in cancer research. We developed REVEALER, a computational method that identifies combinations of mutually exclusive genomic alterations correlated with functional phenotypes, such as the activation or gene dependency of oncogenic pathways or sensitivity to a drug treatment. We used REVEALER to uncover complementary genomic alterations associated with the transcriptional activation of β-catenin and NRF2, MEK-inhibitor sensitivity, and KRAS dependency. REVEALER successfully identified both known and new associations, demonstrating the power of combining functional profiles with extensive characterization of genomic alterations in cancer genomes."	NA
+"Achkar, Jean-Paul"	"Inflammation and Immunity"	31275068	30535303	26039718	25105946	24241240	23598818	22170232	21115545	18622155	17879519	"Despite advancements in medical therapy, many patients with Crohn's disease continue to require surgery for intestinal resection and/or management of perianal disease at some point in their disease course. Unfortunately, in this complex group of patients, postoperative disease recurrence rates are high. Medical prophylaxis can be used to prevent Crohn's disease recurrence or manage residual disease after surgery, but the ideal timing to start medications after surgery varies based on patient risk factors and patient preference for medication use. Currently, the largest medical treatment effects are seen with thiopurines and antitumor necrosis factor antibodies, but there are continually expanding options as new medical therapies are developed. A proposed algorithm stratified based on patient risk factors is provided."	"Scientific research into the effects and mechanisms of acupuncture for gastrointestinal diseases including inflammatory bowel disease has been rapidly growing in the past several decades. In this review, we discuss the history, theory, and methodology of acupuncture and review potentially beneficial mechanisms of action of acupuncture for managing inflammatory bowel disease. Acupuncture has been shown to decrease disease activity and inflammation via increase of vagal activity in inflammatory bowel disease. Acupuncture has demonstrated beneficial roles in the regulation of gut dysbiosis, intestinal barrier function, visceral hypersensitivity, gut motor dysfunction, depression/anxiety, and pain, all of which are factors that can significantly impact quality of life in patients with inflammatory bowel disease. A number of clinical trials have been performed to investigate the therapeutic effects of acupuncture in ulcerative colitis and Crohn's disease. Although the data from these trials are promising, more studies are needed given the heterogeneous and multifactorial aspects of inflammatory bowel disease. There is also an important need to standardize acupuncture methodology, study designs, and outcome measurements."	"Inflammatory bowel disease (IBD) has long been known to have genetic risk factors because of increased prevalence in the relatives of affected individuals. However, genome-wide association studies have only explained limited heritability in IBD. The observed globally rising incidence of IBD has implicated the role of environmental factors. The hidden unexplained heritability remains to be explored. Recent aggregate evidence has highlighted the extent and nature of host genome-microbiome associations, a key next step in understanding the mechanisms of pathogenesis in IBD. An individual's gut microbiota is shaped not only by genetic but also by environmental factors like diet. Minimizing exposure of the intestinal lumen to selected food items has shown to prolong the remission state of IBD. Among a genetically susceptible host, the shift of gut microbiota (or 'dysbiosis') can lead to increasing the susceptibility to IBD. With the advances in high-throughput large-scale 'omics' technologies in combination with creative data mining and system biology-based network analyses, the complexity of biological functional networks behind the cause of IBD has become more approachable. Therefore, the hidden heritability in IBD has become more explainable, and can be attributable to the changing environmental factors, epigenetic modifications, and gene-host microbial ('in-vironmental') or gene-extrinsic environmental interactions. This review discusses the perspectives of relevance to clinical translation with emphasis on gene-environment interactions. No doubt, the use of system-based approaches will lead to the development of alternative, and hopefully better, diagnostic, prognostic, and monitoring tools in the management of IBD."	"Inflammation is increasingly being recognized as an important factor in the pathogenesis of atherosclerosis and outcome of percutaneous coronary intervention (PCI). The purpose of this study was to compare conventional risk factors and PCI outcomes in patients with inflammatory bowel disease (IBD) and non-IBD controls with angiographically proven coronary artery disease (CAD). We performed a historical cohort study of patients with IBD who were diagnosed with CAD by cardiac catheterization between January 2004 and June 2010. Four non-IBD controls with CAD were matched to each IBD case. Framingham risk score and corresponding 10-year coronary heart disease risk were calculated for all the patients. Outcomes were obtained using a prospectively maintained Institutional Interventional Catheterization Database. One hundred thirty-one patients with IBD (54 Crohn's disease, 77 ulcerative colitis) with CAD and 524 matched non-IBD controls with CAD were included. Patients with IBD were younger (65.3 ± 10.0 versus 67.8 ± 11.0 yr, P = 0.016), had lower prevalence of active tobacco use (10.7% versus 18.7%, P = 0.03), and had lower body mass index (28.0 ± 5.1 versus 29.4 ± 6.4, P = 0.026) compared with controls. Patients with IBD had lower rates of severe left anterior descending artery disease (56% versus 73%, P &lt; 0.0002) and multivessel CAD (71% versus 79%, P = 0.05). There was no difference in post-PCI major adverse cardiovascular outcomes (defined as all-cause death, myocardial infarction, cerebrovascular events, and target lesion revascularization). Patients with IBD are diagnosed with CAD at a younger age as compared with non-IBD patients, are less likely to be active smokers and have lower body mass index. Post-PCI outcomes in patients with IBD with CAD are similar to non-IBD controls with CAD."	"Genome-wide association studies (GWAS) have identified at least 133 ulcerative colitis (UC) associated loci. The role of genetic factors in clinical practice is not clearly defined. The relevance of genetic variants to disease pathogenesis is still uncertain because of not characterized gene-gene and gene-environment interactions. We examined the predictive value of combining the 133 UC risk loci with genetic interactions in an ongoing inflammatory bowel disease (IBD) GWAS. The Wellcome Trust Case-Control Consortium (WTCCC) IBD GWAS was used as a replication cohort. We applied logic regression (LR), a novel adaptive regression methodology, to search for high-order interactions. Exploratory genotype correlations with UC sub-phenotypes [extent of disease, need of surgery, age of onset, extra-intestinal manifestations and primary sclerosing cholangitis (PSC)] were conducted. The combination of 133 UC loci yielded good UC risk predictability [area under the curve (AUC) of 0.86]. A higher cumulative allele score predicted higher UC risk. Through LR, several lines of evidence for genetic interactions were identified and successfully replicated in the WTCCC cohort. The genetic interactions combined with the gene-smoking interaction significantly improved predictability in the model (AUC, from 0.86 to 0.89, P = 3.26E-05). Explained UC variance increased from 37 to 42 % after adding the interaction terms. A within case analysis found suggested genetic association with PSC. Our study demonstrates that the LR methodology allows the identification and replication of high-order genetic interactions in UC GWAS datasets. UC risk can be predicted by a 133 loci and improved by adding gene-gene and gene-environment interactions. "	"Genome-wide association studies have identified at least 71 Crohn's disease (CD) genetic risk loci, but the role of gene-gene interactions is unclear. The value of genetic variants in clinical practice is not defined because of limited explained heritability. We examined model predictability of combining the 71 CD risk alleles and genetic interactions in an ongoing inflammatory bowel disease genome-wide association study. The Wellcome Trust Case Control Consortium inflammatory bowel disease genome-wide association study was used as a replicate cohort. We used logic regression, an adaptive regression methodology, to search for high-order binary predictors (e.g., single-nucleotide polymorphism [SNP] interactions). The combined 71 CD SNPs had good CD risk predictability (area under the curve of 0.75 and 0.73 in the 2 cohorts). Higher cumulative allele score predicted higher CD risk, but a relatively small difference in cumulative allele scores was observed between CD and controls (49 versus 47, P &lt; 0.001). Through LR, we identified high-order genetic interactions and significantly improved the model predictability (area under the curve, from 0.75 to 0.77, P &lt; 0.0001). A genetic interaction model, including NOD2, ATG16L1, IL10/IL19, C13orf31, and chr21q loci, was discovered and successfully replicated in the independent Wellcome Trust Case Control Consortium cohort. The explained heritability of the 71 CD SNPs alone was 24% and increased to 27% after adding the genetic interactions. A novel approach allowed the identification and replication of genetic interactions among NOD2, ATG16L1, IL10/IL19, C13orf31, and chr21q loci. CD risk can be predicted by a model of 71 CD loci and improved by adding genetic interactions."	"The major histocompatibility complex (MHC) on chromosome 6p is an established risk locus for ulcerative colitis (UC) and Crohn's disease (CD). We aimed to better define MHC association signals in UC and CD by combining data from dense single-nucleotide polymorphism (SNP) genotyping and from imputation of classical human leukocyte antigen (HLA) types, their constituent SNPs and corresponding amino acids in 562 UC, 611 CD and 1428 control subjects. Univariate and multivariate association analyses were performed, controlling for ancestry. In univariate analyses, absence of the rs9269955 C allele was strongly associated with risk for UC (P = 2.67 × 10(-13)). rs9269955 is a SNP in the codon for amino acid position 11 of HLA-DRβ1, located in the P6 pocket of the HLA-DR antigen binding cleft. This amino acid position was also the most significantly UC-associated amino acid in omnibus tests (P = 2.68 × 10(-13)). Multivariate modeling identified rs9269955-C and 13 other variants in best predicting UC vs control status. In contrast, there was only suggestive association evidence between the MHC and CD. Taken together, these data demonstrate that variation at HLA-DRβ1, amino acid 11 in the P6 pocket of the HLA-DR complex antigen binding cleft is a major determinant of chromosome 6p association with UC."	"The majority of patients with Crohn's disease (CD) require surgery during the course of their disease, but such surgery is typically not curative. Although some studies suggest that the disease state is theoretically reset to its earliest phase following surgery, disease phenotype and natural history of CD do not change significantly after surgery, leading to high rates of recurrence. Factors predisposing to this recurrence are not well defined, so there is a need for and a unique opportunity to develop a better understanding of the pathogenesis of recurrent inflammation and associated risk factors after an ileocolic resection. This paper reviews the postoperative disease outcome and evolution based on defining the combination of the patient's microbial flora, environmental exposure history, immune response and genetic make-up."	"Genetic factors play an important role in the pathogenesis of inflammatory bowel disease. In this review, we will provide an update on the rapid advances in the discovery of inflammatory bowel disease, primarily Crohn's disease, associated genes. Seven recently published Crohn's disease genome-wide association studies have confirmed prior findings related to the nucleotide-binding oligomerization domain 2 (NOD2) gene and the IBD5 locus. In addition, 10 novel loci have been identified and well replicated. Several promising associations between Crohn's disease and gene variants have been identified and replicated, the two most widely replicated being variants in the IL23R and ATG16L1 genes. These findings highlight and further support the importance of the immune system and its interactions with the intestinal microflora in the pathogenesis of inflammatory bowel disease."	"Aminosalicylates are the first-line therapy for patients with mild to moderate active ulcerative colitis. Treatment should start at dosages of 4.8 g per day of the active 5-aminosalicylate moiety, rather than starting at a lower dosage and increasing if treatment fails. Infliximab has been shown to be effective and is now approved by the US Food and Drug Administration for the treatment of moderately to severely active ulcerative colitis in patients who have had an inadequate response to conventional therapy."
+"Ahern, Philip"	"Cardiovascular and Metabolic Sciences"	19161422	20732640	24950201	31138692	28041931	24452263	21677749	20393462	17030949	23898195	"Immune responses in the intestine are tightly regulated to ensure host protective immunity in the absence of immune pathology. Interleukin-23 (IL-23) has recently been shown to be a key player in influencing the balance between tolerance and immunity in the intestine. Production of IL-23 is enriched within the intestine and has been shown to orchestrate T-cell-dependent and T-cell-independent pathways of intestinal inflammation through effects on T-helper 1 (Th1) and Th17-associated cytokines. Furthermore, IL-23 restrains regulatory T-cell responses in the gut, favoring inflammation. Polymorphisms in the IL-23 receptor have been associated with susceptibility to inflammatory bowel diseases (IBDs) in humans, pinpointing the IL-23 axis as a key, conserved pathway in intestinal homeostasis. In addition to its role in dysregulated inflammatory responses, there is also evidence that IL-23 and the Th17 axis mediate beneficial roles in host protective immunity and barrier function in the intestine. Here we discuss the dual roles of IL-23 in intestinal immunity and how IL-23 and downstream effector pathways may make novel targets for the treatment of IBD."	"Mutations in the IL23R gene are linked to inflammatory bowel disease susceptibility. Experimental models have shown that interleukin-23 (IL-23) orchestrates innate and T cell-dependent colitis; however, the cell populations it acts on to induce intestinal immune pathology are unknown. Here, using Il23r(-/-) T cells, we demonstrated that T cell reactivity to IL-23 was critical for development of intestinal pathology, but not for systemic inflammation. Through direct signaling into T cells, IL-23 drove intestinal T cell proliferation, promoted intestinal Th17 cell accumulation, and enhanced the emergence of an IL-17A(+)IFN-gamma(+) population of T cells. Furthermore, IL-23R signaling in intestinal T cells suppressed the differentiation of Foxp3(+) cells and T cell IL-10 production. Although Il23r(-/-) T cells displayed unimpaired Th1 cell differentiation, these cells showed impaired proliferation and failed to accumulate in the intestine. Together, these results highlight the multiple functions of IL-23 signaling in T cells that contribute to its colitogenic activity."	"The gut microbiota codevelops with the immune system beginning at birth. Mining the microbiota for bacterial strains responsible for shaping the structure and dynamic operations of the innate and adaptive arms of the immune system represents a formidable combinatorial problem but one that needs to be overcome to advance mechanistic understanding of microbial community and immune system coregulation and to develop new diagnostic and therapeutic approaches that promote health. Here, we discuss a scalable, less biased approach for identifying effector strains in complex microbial communities that impact immune function. The approach begins by identifying uncultured human fecal microbiota samples that transmit immune phenotypes to germ-free mice. Clonally arrayed sequenced collections of bacterial strains are constructed from representative donor microbiota. If the collection transmits phenotypes, effector strains are identified by testing randomly generated subsets with overlapping membership in individually housed germ-free animals. Detailed mechanistic studies of effector strain-host interactions can then be performed. "	"Undernutrition in children is a pressing global health problem, manifested in part by impaired linear growth (stunting). Current nutritional interventions have been largely ineffective in overcoming stunting, emphasizing the need to obtain better understanding of its underlying causes. Treating Bangladeshi children with severe acute malnutrition with therapeutic foods reduced plasma levels of a biomarker of osteoclastic activity without affecting biomarkers of osteoblastic activity or improving their severe stunting. To characterize interactions among the gut microbiota, human milk oligosaccharides (HMOs), and osteoclast and osteoblast biology, young germ-free mice were colonized with cultured bacterial strains from a 6-mo-old stunted infant and fed a diet mimicking that consumed by the donor population. Adding purified bovine sialylated milk oligosaccharides (S-BMO) with structures similar to those in human milk to this diet increased femoral trabecular bone volume and cortical thickness, reduced osteoclasts and their bone marrow progenitors, and altered regulators of osteoclastogenesis and mediators of Th2 responses. Comparisons of germ-free and colonized mice revealed S-BMO-dependent and microbiota-dependent increases in cecal levels of succinate, increased numbers of small intestinal tuft cells, and evidence for activation of a succinate-induced tuft cell signaling pathway linked to Th2 immune responses. A prominent fucosylated HMO, 2'-fucosyllactose, failed to elicit these changes in bone biology, highlighting the structural specificity of the S-BMO effects. These results underscore the need to further characterize the balance between, and determinants of, osteoclastic and osteoblastic activity in stunted infants/children, and suggest that certain milk oligosaccharides may have therapeutic utility in this setting."	"Ensuring that gut microbiota respond consistently to prescribed dietary interventions, irrespective of prior dietary practices (DPs), is critical for effective nutritional therapy. To address this, we identified DP-associated gut bacterial taxa in individuals either practicing chronic calorie restriction with adequate nutrition (CRON) or without dietary restrictions (AMER). When transplanted into gnotobiotic mice, AMER and CRON microbiota responded predictably to CRON and AMER diets but with variable response strengths. An individual's microbiota is connected to other individuals' communities (&quot;metacommunity&quot;) by microbial exchange. Sequentially cohousing AMER-colonized mice with two different groups of CRON-colonized mice simulated metacommunity effects, resulting in enhanced responses to a CRON diet intervention and changes in several metabolic features in AMER animals. This response was driven by an influx of CRON DP-associated taxa. Certain DPs may impair responses to dietary interventions, necessitating the introduction of diet-responsive bacterial lineages present in other individuals and identified using the strategies described."	"Identifying a scalable, unbiased method for discovering which members of the human gut microbiota influence specific physiologic, metabolic, and immunologic phenotypes remains a challenge. We describe a method in which a clonally arrayed collection of cultured, sequenced bacteria was generated from one of several human fecal microbiota samples found to transmit a particular phenotype to recipient germ-free mice. Ninety-four bacterial consortia of diverse size, randomly drawn from the culture collection, were introduced into germ-free animals. We identified an unanticipated range of bacterial strains that promoted accumulation of colonic regulatory T cells (T(regs)) and expansion of Nrp1(lo/-) peripheral T(regs), as well as strains that modulated mouse adiposity and cecal metabolite concentrations, using feature selection algorithms and follow-up monocolonizations. This combinatorial approach enables a systems-level understanding of microbial contributions to human biology."	"Marked changes in socio-economic status, cultural traditions, population growth and agriculture are affecting diets worldwide. Understanding how our diet and nutritional status influence the composition and dynamic operations of our gut microbial communities, and the innate and adaptive arms of our immune system, represents an area of scientific need, opportunity and challenge. The insights gleaned should help to address several pressing global health problems."	"The key role of interleukin (IL)-23 in the pathogenesis of autoimmune and chronic inflammatory disorders is supported by the identification of IL-23 receptor (IL-23R) susceptibility alleles associated with inflammatory bowel disease, psoriasis and ankylosing spondylitis. IL-23-driven inflammation has primarily been linked to the actions of T-helper type 17 (TH17) cells. Somewhat overlooked, IL-23 also has inflammatory effects on innate immune cells and can drive T-cell-independent colitis. However, the downstream cellular and molecular pathways involved in this innate intestinal inflammatory response are poorly characterized. Here we show that bacteria-driven innate colitis is associated with an increased production of IL-17 and interferon-gamma in the colon. Stimulation of colonic leukocytes with IL-23 induced the production of IL-17 and interferon-gamma exclusively by innate lymphoid cells expressing Thy1, stem cell antigen 1 (SCA-1), retinoic-acid-related orphan receptor (ROR)-gammat and IL-23R, and these cells markedly accumulated in the inflamed colon. IL-23-responsive innate intestinal cells are also a feature of T-cell-dependent models of colitis. The transcription factor ROR-gammat, which controls IL-23R expression, has a functional role, because Rag-/-Rorc-/- mice failed to develop innate colitis. Last, depletion of Thy1+ innate lymphoid cells completely abrogated acute and chronic innate colitis. These results identify a previously unrecognized IL-23-responsive innate lymphoid population that mediates intestinal immune pathology and may therefore represent a target in inflammatory bowel disease."	"Inflammatory bowel disease (IBD) is a chronic inflammatory disorder of the gastrointestinal tract involving aberrant activation of innate and adaptive immune responses. We have used two complementary models of IBD to examine the roles of interleukin (IL)-12 family cytokines in bacterially induced intestinal inflammation. Our results clearly show that IL-23, but not IL-12, is essential for the induction of chronic intestinal inflammation mediated by innate or adaptive immune mechanisms. Depletion of IL-23 was associated with decreased proinflammatory responses in the intestine but had little impact on systemic T cell inflammatory responses. These results newly identify IL-23 as a driver of innate immune pathology in the intestine and suggest that selective targeting of IL-23 represents an attractive therapeutic approach in human IBD."	"Sulfate-reducing bacteria (SRB) colonize the guts of ∼50% of humans. We used genome-wide transposon mutagenesis and insertion-site sequencing, RNA-Seq, plus mass spectrometry to characterize genetic and environmental factors that impact the niche of Desulfovibrio piger, the most common SRB in a surveyed cohort of healthy US adults. Gnotobiotic mice were colonized with an assemblage of sequenced human gut bacterial species with or without D. piger and fed diets with different levels and types of carbohydrates and sulfur sources. Diet was a major determinant of functions expressed by this artificial nine-member community and of the genes that impact D. piger fitness; the latter includes high- and low-affinity systems for using ammonia, a limiting resource for D. piger in mice consuming a polysaccharide-rich diet. Although genes involved in hydrogen consumption and sulfate reduction are necessary for its colonization, varying dietary-free sulfate levels did not significantly alter levels of D. piger, which can obtain sulfate from the host in part via cross-feeding mediated by Bacteroides-encoded sulfatases. Chondroitin sulfate, a common dietary supplement, increased D. piger and H2S levels without compromising gut barrier integrity. A chondroitin sulfate-supplemented diet together with D. piger impacted the assemblage's substrate utilization preferences, allowing consumption of more reduced carbon sources and increasing the abundance of the H2-producing Actinobacterium, Collinsella aerofaciens. Our findings provide genetic and metabolic details of how this H2-consuming SRB shapes the responses of a microbiota to diet ingredients and a framework for examining how individuals lacking D. piger differ from those who harbor it. "
+"Alberts, Jay"	"Biomedical Engineering"	31034314	30946318	30921170	30901418	30826715	30735197	30543801	30135951	30109948	29794620	"The aim of this project was to 1) evaluate the potential of the Two Minute Walk Test (2MWT) to detect declines in gait velocity under dual task conditions, and 2) compare gait velocity overground and on a self-paced treadmill in Parkinson's disease (PD). Twenty-three individuals with PD completed the 2MWT under single and dual task (serial 7s) conditions overground and on a self-paced treadmill. There was a significant decrease in gait velocity from single to dual task conditions overground (1.32±.22 m/sec to 1.10±.25 m/sec, p &lt;.001) and on the self-paced treadmill (1.24±.21 m/sec to 1.05±.25 m/sec, p &lt;.001). Overground and treadmill velocities were not statistically different from each other; however, differences approached or exceeded the minimal clinical important difference. The 2MWT coupled with a cognitive task provides an effective model of identifying dual task declines in individuals with PD. Further studies comparing overground and self-paced treadmill velocity is warranted in PD."	"Despite the widespread awareness of concussion across all levels of sport, the management of concussion from youth to college is inconsistent and fragmented. A fundamental gap contributing to inconsistent care is the lack of a scalable, systematic approach to document initial injury characteristics following concussion. The purpose of this study was to determine differences in injury profiles and management of youth, high school, and college athletes using a mobile application for incident report documentation.A cohort study was conducted in which concussion electronic incident report data from 46 high schools and colleges, and Cleveland Clinic ambulatory concussion clinics were gathered and analyzed.In sum, 1421 (N = 88 youth, N = 1171 high school and N = 162 college) athletes with sport-related concussions were included.Despite the relative absence of red flags, youth athletes had a greater probability of being sent to the emergency department than high school and collegiate athletes. Over 60% of athletes were removed from play immediately post-injury. Injury recognition was delayed in 25% of athletes due to delayed symptom reporting (20% of males, 16% of females) or delayed symptom onset (5% of males, 9% of females). A significantly greater incidence of red flags was evident in males, and in high school and collegiate athletes compared to youth athletes.The high frequency of youth athletes sent to the emergency department, despite the absence of red flags, may be a reflection of inadequate medical coverage at youth events, ultimately resulting in unnecessary utilization of emergency medicine services. The relatively high incidence of delayed injury reporting implies that additional educational efforts targeting student-athletes and the utilization of resources to improve injury detection are warranted. The systematic collection of injury-related demographics through the electronic mobile application facilitated interdisciplinary communication and improved the efficiency of managing athletes with concussion."	"In older adults hospitalized with heart failure (HF), cognitive impairment is associated with increased hospital readmission and mortality risk. There is no consensus on an objective, scalable method of cognitive screening in this population. The aim of this project was to determine the feasibility, test-retest reliability, and convergent validity of the Processing Speed Test (PST), a test of information processing, attention, and working memory administered on an iPad in older adults hospitalized with HF. Patients hospitalized with HF (n = 30) and age-, sex-, and education-matched controls (n = 30) participated in the study. To determine test-retest reliability, the PST was administered on an iPad on 2 occasions, separated by 12 to 48 hours. The Symbol Digit Modalities Test was administered at the first testing time point to determine convergent validity. Test-retest reliability of the PST was 0.80 and 0.92 in individuals with HF and controls, respectively. Convergent validity was 0.72 and 0.90 for individuals with HF and controls, respectively. Time to complete the PST was similar for both individuals with HF and controls (&lt;5 minutes). The iPad-based deployment of the PST was a feasible, reliable, and valid cognitive screen for older adults hospitalized with HF. Using a tablet-based self-administered cognitive screen in older adults with HF provides a method of cognitive assessment that is amenable to widespread clinical utilization."	"Dual-task performance, in which individuals complete two or more activities simultaneously, is impaired following mild traumatic brain injury. The aim of this project was to develop a dual-task paradigm that may be conducive to military utilization in evaluating cognitive-motor function in a standardized and scalable manner by leveraging mobile device technology. Fifty healthy young adult civilians (18-24 years) completed four balance stances and a number discrimination task under single- and dual-task conditions. Postural stability was quantified using data gathered from iPad's native accelerometer and gyroscope. Cognitive task difficulty was manipulated by presenting stimuli at 30, 60, or 90 per minute. Performance of cognitive and balance tasks was compared between single- and dual-task trials. Cognitive performance from single- to dual-task paradigms showed no significant main effect of balance condition or the interaction of condition by frequency. From single- to dual-task conditions, a significant difference in postural control was revealed in only one stance: tandem with eyes closed, in which a slight improvement in postural stability was observed under dual-task conditions. The optimal dual-task paradigm to evaluate cognitive-motor performance with minimal floor and ceiling effects consists of tandem stance with eyes closed while stimuli are presented at a rate of one per second."	"Emerging literature indicates aerobic exercise improves the motor symptoms associated with Parkinson's disease (PD). However, the impact of aerobic exercise on functional locomotor performance has not been evaluated systematically. The aim of this project was to determine the impact of an 8-week high intensity aerobic exercise intervention on Timed Up and Go (TUG) performance in PD. Fifty-nine participants with idiopathic PD completed 24 aerobic exercise sessions over 8 weeks. Two modes of exercise were utilized: forced (FE) and voluntary (VE). A mobile application was used to gather biomechanical data for the characterization of the TUG subtasks: Sit-Stand, Gait, Turning, and Stand-Sit. Participants were assessed in an off medication state at: 1) baseline, prior to any exercise intervention, and 2) after completion of exercise treatment. At baseline, the VE group completed the TUG in 9.41 s, while the FE group completed the TUG significantly faster in 8.0 s. Following the exercise intervention, the VE group decreased TUG time to 8.9 s (p &lt; .01). Both exercise groups demonstrated significant improvements in Turning Velocity, time of Gait phase and Stand-Sit duration. Overall mobility in participants with PD was significantly improved after high intensity aerobic exercise training. Improvements in turning and gait speed, and in Stand-Sit times indicate exercise is effective in improving functional aspects of mobility that are often associated with falls and quality of life measures. These results support the use of high intensity aerobic exercise for improvements in functional lower extremity performance in a PD population."	"The evidence-informed standardization of care along disease lines is recommended to improve outcomes and reduce healthcare costs. The aim of this project is to 1) describe the development and implementation of the Concussion Carepath, 2) demonstrate the process of integrating technology in the form of a mobile application to enable the carepath and guide clinical decision-making, and 3) present data on the utility of the C3 app in facilitating decision-making throughout the injury recovery process. A multi-disciplinary team of experts in concussion care was formed to develop an evidence-informed algorithm, outlining best practices for the clinical management of concussion along three phases of recovery - acute, subacute, and post-concussive. A custom mobile application, the Cleveland Clinic Concussion (C3) app was developed and validated to provide a platform for the systematic collection of objective, biomechanical outcomes and to provide guidance in clinical decision-making in the field and clinical environments. The Cleveland Clinic Concussion app included an electronic incident report, assessment modules to measure important aspects of cognitive and motor function, and a return to play module to systematically document the six phases of post-injury rehabilitation. The assessment modules served as qualifiers within the carepath algorithm, driving referral for specialty services as indicated. Overall, the carepath coupled with the C3 app functioned in unison to facilitate communication among the interdisciplinary team, prevent stagnant care, and drive patients to the right provider at the right time for efficient and effective clinical management."	"The aim of this project was to determine the effects of lower extremity aerobic exercise coupled with upper extremity repetitive task practice (RTP) on health-related quality of life (HRQOL) and depressive symptomology in individuals with chronic stroke. Secondary analysis of data from 2 randomized controlled trials. Research laboratory. Individuals (N=40) with chronic stroke. Participants received one of the following interventions: forced exercise+RTP (FE+RTP, n=16), voluntary exercise+RTP (VE+RTP, n=16), or stroke education+RTP (EDU+RTP, n=8). All groups completed 24 sessions, each session lasting 90 minutes. The Center for Epidemiological Studies-Depression Scale (CES-D) and Stroke Impact Scale (SIS) were used to assess depressive symptomology and HRQOL. There were no significant group-by-time interactions for any of the SIS domains or composite scores. Examining the individual groups following the intervention, those in the FE+RTP and VE+RTP groups demonstrated significant improvements in the following SIS domains: strength, mobility, hand function, activities of daily living, and the physical composite. In addition, the FE+RTP group demonstrated significant improvements in memory, cognitive composite, and percent recovery from stroke. The HRQOL did not change in the EDU+RTP group. Although CES-D scores improved predominantly for those in the FE+RTP group, these improvements were not statistically significant. Overall, results were maintained at the 4-week follow-up. Aerobic exercise, regardless of mode, preceding motor task practice may improve HRQOL in patients with stroke. The potential of aerobic exercise to improve cardiorespiratory endurance, motor outcomes, and HRQOL poststroke justifies its use to augment traditional task practice."	"Gait and balance impairments associated with Parkinson's disease (PD) are often refractory to traditional treatments. Objective, quantitative analysis of gait patterns is crucial in successful management of these symptoms. This project aimed to 1) determine if biomechanical metrics from a mobile device inertial measurement unit were sensitive enough to characterize the effects of anti-parkinsonian medication during the Timed Up and Go (TUG) Test, and 2) develop the Cleveland Clinic Mobility and Balance application (CC-MB) to provide clinicians with objective report following completion of the TUG. The CC-MB captured 3-dimensional acceleration and rotational data from people with PD (pwPD) to characterize center of mass movement while performing the TUG. Trials were segmented into four components: Sit-to-Walk, Gait, Turning, and Stand-to-Sit. Thirty pwPD were tested On and Off (12 h) anti-PD medication. Significant improvements (p &lt; 0.05) between On versus Off conditions included: reduction in MDS-UPDRS III motor scores (10.7%), faster trial times (9.3%), more dynamic walking as evident by increased normalized jerk scores (vertical: 17.3%, medial-lateral: 12.3%), shorter turn durations (10.4%), and faster turn velocities (8%). Measures in Sit-to-Walk and Stand-to-Sit did not show significant changes. Trial time and turn velocity showed excellent test-retest reliability (ICC range: 0.83-0.96) across both medication states. A mobile device platform provided quantitative measures of gait and turning during the TUG that detected significant improvements from anti-parkinsonian medications. This platform is a low-cost, easy-to-use tool that can provide objective reports immediately following the clinical assessments, making it ideal for use in and outside the clinical setting."	" Annually, more than 1 million youth athletes in the United States receive or are suspected of receiving a concussion. The Balance Error Scoring System (BESS) is the most commonly used clinical balance evaluation designed to provide a better understanding of the motor-control processes of individuals with concussion. Despite the widespread use of the BESS, a fundamental gap exists in applying this tool to young athletes, as normative values are lacking for this population.  To determine age- and sex-specific normative values for the BESS in youth, high school, and collegiate athletes.  Cross-sectional study.  Local youth sport organizations, high schools, and colleges.  Student-athletes (N = 6762) completed preseason baseline concussion testing as part of a comprehensive concussion-management program. Groups were youth males aged 5 to 13 years (n = 360), high school males aged 14 to 18 years (n = 3743), collegiate males aged 19 to 23 years (n = 497), youth females aged 5 to 13 years (n = 246), high school females aged 14 to 18 years (n = 1673), and collegiate females aged 19 to 23 years (n = 243).  Errors according to the BESS specifications.  Performance on the BESS was worse ( P &lt; .01) in youth athletes than in high school and collegiate athletes. In the youth and high school cohorts, females exhibited better scores than males ( P &lt; .05). Sex was not a factor for collegiate athletes. Data from the youth cohort were further subdivided into 4-year bins to evaluate potential motor-development differences. The error count was highest for 5- to 9-year-old males and decreased with age.  Performance on the BESS depended on sex and age, particularly in youth athletes. These sex- and age-specific normative values provide a reference to facilitate and unify clinical decision making across multiple providers caring for youth athletes with concussions."	"Despite the widespread utilization of the Balance Error Scoring System (BESS) in the evaluation of concussion, it has been criticized for its error-based scoring that is susceptible to floor and ceiling effects and substantial inter-rater variability. A biomechanical outcome, Cleveland Clinic Postural Stability Index (CC-PSI), has been developed as an alternative to subjective BESS scoring. The CC-PSI uses inertial sensor data within a mobile device to provide an objective measure of postural sway during the BESS. This project aimed to determine the effect of age and sex on the CC-PSI and report normative values for healthy, active children, adolescents, and young adults. A cross-sectional sample of 6762 student-athletes completed BESS testing. Participants were stratified according to three age groups for each sex. The groups included the following: youth (age, 5-13 yr), males (n = 360), females (n = 246); high school (age, 14-18 yr), males (n = 3743), females (n = 1673); and college (age, 19-23 yr), males (n = 497), females (n = 243). Percentile rankings were determined for each participant to characterize movement of COM in the medial-lateral, anterior-posterior, and trunk rotation directions relative to the entire cohort during the BESS stances. Overall, postural stability was worse in youth compared with high school and collegiate athletes. Specifically, the CC-PSI was significantly worse in youth male athletes compared with high school and collegiate male athletes (P &lt; 0.001). Females exhibited significantly better scores compared with males in youth and high school cohorts (P &lt; 0.01). The CC-PSI provides a quantitative, objective measure of postural stability, overcoming the limitations associated with conventional BESS scoring. Optimal concussion management should use objective age- and sex-specific values in the evaluation of postural stability. The normative values of the CC-PSI may be used in the absence of a baseline BESS evaluation to aid clinical decision making."
+"Almasan, Alexandru"	"Cancer Biology"	30067424	29995557	28331288	27413424	26537004	26026052	25590803	25308257	25061101	24655592	"Apo2 ligand (Apo2L)/tumor necrosis factor-related apoptosis-inducing ligand (TRAIL) is unique to selectively induce apoptosis in tumor cells while sparing normal cells. Thus there is tremendous interest in Apo2L/TRAIL therapy; however, drug resistance is a serious limitation. Autophagy is a cellular housekeeping process that controls protein and organelle turnover, and is almost consistently activated in response to apoptosis-inducing stimuli, including Apo2L/TRAIL. Unlike apoptosis, autophagy leads to cell death or survival depending on the context. Various molecular mechanisms by which autophagy regulates Apo2L/TRAIL-induced apoptosis have been identified. Further, whether autophagy is completed (intact autophagic flux) or not could determine the fate of cancer cells, either cell survival or death. Thus, targeting autophagy is an attractive strategy to overcome Apo2L/TRAIL resistance. We present the current view of how these regulatory mechanisms of this interplay between autophagy and apoptosis may dictate cancer cell response to Apo2L/TRAIL therapy."	"Recent reports have made important revelations, uncovering direct regulation of DNA damage response (DDR)-associated proteins and chromatin ubiquitination (Ubn) by macroautophagy/autophagy. Here, we report a previously unexplored connection between autophagy and DDR, via a deubiquitnase (DUB), USP14. Loss of autophagy in prostate cancer cells led to unrepaired DNA double-strand breaks (DSBs) as indicated by persistent ionizing radiation (IR)-induced foci (IRIF) formation for γH2AFX, and decreased protein levels and IRIF formation for RNF168, an E3-ubiquitin ligase essential for chromatin Ubn and recruitment of critical DDR effector proteins in response to DSBs, including TP53BP1. Consistently, RNF168-associated Ubn signaling and TP53BP1 IRIF formation were reduced in autophagy-deficient cells. An activity assay identified several DUBs, including USP14, which showed higher activity in autophagy-deficient cells. Importantly, inhibiting USP14 could overcome DDR defects in autophagy-deficient cells. USP14 IRIF formation and protein stability were increased in autophagy-deficient cells. Co-immunoprecipitation and colocalization of USP14 with MAP1LC3B and the UBA-domain of SQSTM1 identified USP14 as a substrate of autophagy and SQSTM1. Additionally, USP14 directly interacted with RNF168, which depended on the MIU1 domain of RNF168. These findings identify USP14 as a novel substrate of autophagy and regulation of RNF168-dependent Ubn and TP53BP1 recruitment by USP14 as a critical link between DDR and autophagy. Given the role of Ubn signaling in non-homologous end joining (NHEJ), the major pathway for repair of IR-induced DNA damage, these findings provide unique insights into the link between autophagy, DDR-associated Ubn signaling and NHEJ DNA repair. ATG7: autophagy related 7; CQ: chloroquine; DDR: DNA damage response; DUB: deubiquitinase; HR: homologous recombination; IR: ionizing radiation; IRIF: ionizing radiation-induced foci; LAMP2: lysosomal associated membrane protein 2; MAP1LC3B/LC3B: microtubule associated protein 1 light chain 3 beta; MIU1: motif interacting with ubiquitin; NHEJ: non homologous end-joining; PCa: prostate cancer; TP53BP1/53BP1: tumor protein p53 binding protein 1; RNF168: ring finger protein 168; SQSTM1/p62 sequestosome 1; γH2AFX/γH2AX: H2A histone family member X: phosphorylated, UBA: ubiquitin-associated; Ub: ubiquitin; Ubn: ubiquitination; USP14: ubiquitin specific peptidase 14."	"B-cell lymphoma-2 (BCL-2) family dysfunction and impairment of apoptosis are common in most B-cell lymphoid malignancies. Venetoclax (Venclexta™, formerly ABT-199, GDC-0199) is a highly selective BCL-2 inhibitor, which mimics its BCL-2 homology 3-domain to induce apoptosis. It was approved for treatment of previously treated chronic lymphocytic leukemia (CLL) patients with 17p deletion early in 2016. It has also been in clinical trials for other B-cell lymphoid malignancies. Unlike the other recently approved targeted agents idelalisib and ibrutinib, so far there has been no relapse reported in some patients. Also, unlike the other targeted agents, it is effective against tumor cells that reside in the blood marrow. Despite its promising outcome in CLL, preclinical data have already uncovered mechanistic insights underlying venetoclax resistance, such as upregulation of MCL-1 or BCL-xL expression and protective signaling from the microenvironment. In this review, we describe the role of the BCL-2 family in the pathogenesis of B-cell lymphoid malignancies, the development of venetoclax, and its current clinical outcome in CLL and other B-cell malignancies. We also discuss the resistance mechanisms that develop following venetoclax therapy, potential strategies to overcome them, and how this knowledge can be translated into clinical applications."	"Rituximab has been revolutionized and validated CD20 targeting monoclonal antibody. Although, it is widely used for lymphoma therapy and many patients have been benefited. However significant numbers of patients are refractory or developed resistance to current therapies due to low level of CD20 expression and/or availability on cells surface. Thus development of novel anti-CD20 mAbs with great cell killing ability and enhance CD20 levels on cell surface can potentially exploit lymphoma therapy. In this scenario, we are summarizing the recently developed mAbs against CD20 and compounds that have ability to induce CD20 expression at significant level. We also are providing information regarding combination strategy for use of radiation and anti-CD20 mAbs in vitro. However, it will need to be determined by rigorous at pre-clinical and clinic testing. We hope this review will be beneficial for current research in the area of immunotherapy or radio-immunotherapy."	"BCL-xL is an anti-apoptotic BCL-2 family protein that inhibits apoptosis and is overexpressed in many cancers. We have reported that acquired resistance to the BCL-2 inhibitor ABT-199 (venetoclax) is associated with increased BCL-xL expression. Yet, how BCL-xL mediates chemoresistance in hematopoietic malignancies is not clear. This finding may help in design of new strategies for therapeutic intervention to overcome acquired chemoresistance mediated by BCL-xL. We now show that the increased BCL-xL expression was inversely correlated with that of miR-377 in ABT-199-resistant cells. This finding was also extended to a panel of B-cell lymphoid lines and primary chronic lymphocytic leukemia (CLL) cells. miR-377 suppressed BCL-xL expression by recognizing two binding sites in the BCL-xL 3'-UTR. Mutation of these two miR-377 consensus-binding sites completely abolished its regulatory effect. Expression of a miR-377 mimic downregulated BCL-xL protein expression and significantly increased apoptotic cell death. Expression of a miR-377 inhibitor restored BCL-xL protein expression and limited cell death caused by the hypomethylating agent 5-azacytidine. Thus, miR-377-dependent BCL-xL regulation drives acquired therapeutic resistance to ABT-199. We further show that CLL patients who received a diverse array of chemotherapy regimens also had significantly higher BCL-xL and lower miR377 expression, indicating that exposure to chemotherapy might trigger transcriptional silencing of miR-377, which results in high levels of BCL-xL. Importantly, CLL patients with high BCL-xL/low miR-377 expression had an advanced tumor stage. Moreover, the high BCL-xL expression correlated with short treatment-free survival in 76 CLL patients. miR-377 is located at 14q32 in the DLK1-DIO3 region, which encodes the largest tumor suppressor miRNA cluster in humans. Examination of five additional 14q32 miRNAs revealed that the majority were significantly down-regulated in most CLL patients as well as in ABT-199-resistant cell lines. Remarkably, four of these miRNAs had significantly decreased expression in chemotherapy-treated CLL patients as compared to those untreated. These findings indicate a reduced expression of multiple miRNAs that may reflect a global silencing of this miRNA cluster in therapy-resistant lymphoid cells. These findings reveal a novel mechanism by which down-regulation of miR-377 increases BCL-xL expression, promoting chemotherapy resistance in B-cell lymphoid malignancies."	"Exposure to genotoxic agents, such as ionizing radiation (IR), produces DNA damage, leading to DNA double-strand breaks (DSB); IR toxicity is augmented when the DNA repair is impaired. We reported that radiosensitization by a PARP inhibitor (PARPi) was highly prominent in prostate cancer cells expressing the TMPRSS2-ERG gene fusion protein. Here, we show that TMPRSS2-ERG blocks nonhomologous end-joining (NHEJ) DNA repair by inhibiting DNA-PKcs. VCaP cells, which harbor TMPRSS2-ERG and PC3 cells that stably express it, displayed γH2AX and 53BP1 foci constitutively, indicating persistent DNA damage that was absent if TMPRSS2-ERG was depleted by siRNA in VCaP cells. The extent of DNA damage was enhanced and associated with TMPRSS2-ERG's ability to inhibit DNA-PKcs function, as indicated by its own phosphorylation (Thr2609, Ser2056) and that of its substrate, Ser1778-53BP1. DNA-PKcs deficiency caused by TMPRSS2-ERG destabilized critical NHEJ components on chromatin. Thus, XRCC4 was not recruited to chromatin, with retention of other NHEJ core factors being reduced. DNA-PKcs autophosphorylation was restored to the level of parental cells when TMPRSS2-ERG was depleted by siRNA. Following IR, TMPRSS2-ERG-expressing PC3 cells had elevated Rad51 foci and homologous recombination (HR) activity, indicating that HR compensated for defective NHEJ in these cells, hence addressing why TMPRSS2-ERG alone did not lead to radiosensitization. However, the presence of TMPRSS2-ERG, by inhibiting NHEJ DNA repair, enhanced PARPi-mediated radiosensitization. IR in combination with PARPi resulted in enhanced DNA damage in TMPRSS2-ERG-expressing cells. Therefore, by inhibiting NHEJ, TMPRSS2-ERG provides a synthetic lethal interaction with PARPi in prostate cancer patients expressing TMPRSS2-ERG."	"Overexpression of anti-apoptotic BCL-2 family members is a hallmark of many lymphoid malignancies, including chronic lymphocytic leukemia (CLL) and non-Hodgkin lymphoma (NHL) that can be targeted with small molecule inhibitors. ABT-199 is a rationally designed BCL-2 homology (BH)-3 mimetic that specifically binds to BCL-2, but not to MCL-1 and BCL-xL. Although the thrombocytopenia that occurs with navitoclax treatment has not been a problem with ABT-199, clinical trials in CLL could benefit by lowering the ABT-199 concentration through targeting other survival pathways. In this study, we investigated the mechanisms of resistance that develops to ABT-199 therapy by generating ABT-199-resistant (ABT199-R) cell lines via chronic exposure of NHL cell lines to ABT-199. Acquired resistance resulted in substantial AKT activation and upregulation of MCL-1 and BCL-xL levels that sequestered BIM. ABT199-R cells exhibited increased MCL-1 stability and failed to activate BAX in response to ABT-199. The ABT-199 acquired and inherent resistant cells were sensitized to treatment with ABT-199 by inhibitors of the PI3K, AKT, and mTOR pathways, NVP-BEZ235 and GS-1101. NVP-BEZ235, a dual inhibitor of p-AKT and mTOR, reduced MCL-1 levels causing BIM release from MCL-1 and BCL-xL, thus leading to cell death by BAX activation. The PI3Kδ inhibitor GS-1101 (idelalisib) downregulated MCL-1 and sensitized ABT199-R cells through AKT-mediated BAX activation. A genetic approach, through siRNA-mediated down-regulation of AKT, MCL-1, and BCL-xL, significantly decreased cell survival, demonstrating the importance of these cell survival factors for ABT-199 resistance. Our findings suggest a novel mechanism that modulates the expression and activity of pro-survival proteins to confer treatment resistance that could be exploited by a rational combination therapeutic regimen that could be effective for treating lymphoid malignancies. "	"Apoptosis can be measured by number of methods by taking advantage of the morphological, biochemical, and molecular changes undergoing in a cell during this process. The best recognized biochemical hallmark of both early and late stages of apoptosis is the activation of cysteine proteases (caspases). Detection of active caspase-3 in cells and tissues is an important method for apoptosis induced by a wide variety of apoptotic signals. Most common assays for examining caspase-3 activation include immunostaining, immunoblotting for active caspase-3, colorimetric assays using fluorochrome substrates, as well as employing the fluorescein-labeled CaspaTag pan-caspase in situ detection kit."	"MTOR complex-1(mTORC1) activation occurs frequently in cancers, yet clinical efficacy of rapalogs is limited because of the associated activation of upstream survival pathways. An alternative approach is to inhibit downstream of mTORC1; therefore, acquired resistance to fludarabine (Flu), a purine analogue and antimetabolite chemotherapy, active agent for chronic lymphocytic leukemia (CLL) was investigated. Elevated phospho-p70S6K, also known as RPS6KB1 (ribosomal protein S6 kinase, 70kDa, polypeptide 1) (T389), an mTORC1 activation marker, predicted Flu resistance in a panel of B-cell lines, isogenic Flu-resistant (FluR) derivatives, and primary human CLL cells. Consistent with the anabolic role of mTORC1, FluR cells had higher rates of glycolysis and oxidative phosphorylation than Flu-sensitive (FluS) cells. Rapalogs (everolimus and rapamycin) induced moderate cell death in FluR and primary CLL cells, and everolimus significantly inhibited glycolysis and oxidative phosphorylation in FluR cells. Strikingly, the higher oxidative phosphorylation in FluR cells was not coupled to higher ATP synthesis. Instead, it contributed primarily to an essential, dihydroorotate dehydrogenase catalyzed, step in de novo pyrimidine biosynthesis. mTORC1 promotes pyrimidine biosynthesis by p70S6 kinase-mediated phosphorylation of CAD (carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase; Ser1859) and favors S-phase cell-cycle progression. We found increased phospho-CAD (S1859) and higher S-phase population in FluR cells. Pharmacological inhibition of de novo pyrimidine biosynthesis using N-phosphonacetyl-l-aspartate and leflunomide, RNAi-mediated knockdown of p70S6K, and inhibition of mitochondrial respiration were selectively cytotoxic to FluR, but not FluS, cells. These results reveal a novel link between mTORC1-mediated metabolic reprogramming and Flu resistance identifying mitochondrial respiration and de novo pyrimidine biosynthesis as potential therapeutic targets. This study provides the first evidence for mTORC1/p70S6K-dependent regulation of pyrimidine biosynthesis in a relevant disease setting."	"Macroautophagy is a catabolic process that can mediate cell death or survival. Apo2 ligand (Apo2L)/tumor necrosis factor-related apoptosis-inducing ligand (TRAIL) treatment (TR) is known to induce autophagy. Here we investigated whether SQSTM1/p62 (p62) overexpression, as a marker of autophagic flux, was related to aggressiveness of human prostate cancer (PCa) and whether autophagy regulated the treatment response in sensitive but not resistant PCa cell lines. Immunostaining and immunoblotting analyses of the autophagic markers p62 [in PCa tissue microarrays (TMAs) and PCa cell lines] and LC3 (in PCa cell lines), transmission electron microscopy, and GFP-mCherry-LC3 were used to study autophagy induction and flux. The effect of autophagy inhibition using pharmacologic (3-methyladenine and chloroquine) and genetic [(short hairpin (sh)-mediated knock-down of ATG7 and LAMP2) and small interfering (si)RNA-mediated BECN1 knock-down] approaches on TR-induced cell death was assessed by clonogenic survival, sub-G1 DNA content, and annexinV/PI staining by flow cytometry. Caspase-8 activation was determined by immunoblotting. We found that increased cytoplasmic expression of p62 was associated with high-grade PCa, indicating that autophagy signaling might be important for survival in high-grade tumors. TR-resistant cells exhibited high autophagic flux, with more efficient clearance of p62-aggregates in four TR-resistant PCa cell lines: C4-2, LNCaP, DU145, and CWRv22.1. In contrast, autophagic flux was low in TR-sensitive PC3 cells, leading to accumulation of p62-aggregates. Pharmacologic (chloroquine or 3-methyladenine) and genetic (shATG7 or shLAMP2) inhibition of autophagy led to cell death in TR-resistant C4-2 cells. shATG7-expressing PC3 cells, were less sensitive to TR-induced cell death whereas those shLAMP2-expressing were as sensitive as shControl-expressing PC3 cells. Inhibition of autophagic flux using chloroquine prevented clearance of p62 aggregates, leading to caspase-8 activation and cell death in C4-2 cells. In PC3 cells, inhibition of autophagy induction prevented p62 accumulation and hence caspase-8 activation. We show that p62 overexpression correlates with advanced stage human PCa. Pharmacologic and genetic inhibition of autophagy in PCa cell lines indicate that autophagic flux can determine the cellular response to TR by regulating caspase-8 activation. Thus, combining various autophagic inhibitors may have a differential impact on TR-induced cell death."
+"Anand-Apte, Bela"	"Ophthalmic Research"	30129971	29874129	25558000	25447564	23831329	23469166	22183345	22183341	21282576	20976146	"Sorsby fundus dystrophy (SFD), an autosomal dominant, fully penetrant, degenerative disease of the macula, is manifested by symptoms of night blindness or sudden loss of visual acuity, usually in the third to fourth decades of life due to choroidal neovascularization (CNV). SFD is caused by specific mutations in the Tissue Inhibitor of Metalloproteinase-3, (TIMP3) gene. The predominant histo-pathological feature in the eyes of patients with SFD are confluent 20-30 m thick, amorphous deposits found between the basement membrane of the retinal pigment epithelium (RPE) and the inner collagenous layer of Bruch's membrane. SFD is a rare disease but it has generated significant interest because it closely resembles the exudative or &quot;wet&quot; form of the more common age-related macular degeneration (AMD). In addition, in both SFD and AMD donor eyes, sub-retinal deposits have been shown to accumulate TIMP3 protein. Understanding the molecular functions of wild-type and mutant TIMP3 will provide significant insights into the patho-physiology of SFD and perhaps AMD. This review summarizes the current knowledge on TIMP3 and how mutations in TIMP3 cause SFD to provide insights into how we can study this disease going forward. Findings from these studies could have potential therapeutic implications for both SFD and AMD."	"The predominant function of the blood-retinal barrier (BRB) is to maintain retinal homeostasis by regulating the influx and efflux between the blood and retina. Breakdown of the BRB occurs in a number of ocular diseases that result in vision loss. Understanding the molecular and cellular pathways involved in the development and maintenance of the BRB is critical to developing therapeutics for these conditions. To visualize the BRB in vivo, we used the transgenic Tg(l-fabp:DBP-EGFP:flk1:mCherry) zebrafish model that expresses vitamin D binding protein (a member of the albumin gene family) tagged to green fluorescent protein. Retinoic acid (RA) plays a number of important roles in vertebrate development and has been shown to play a protective role during inflammation-induced blood-brain barrier disruption. The role of RA in BRB development and maintenance remains unknown. To disrupt RA signaling, Tg(l-fabp:DBP-EGFP:flk1:mCherry) zebrafish were treated with N, N-diethylaminobenzaldehyde and 4-[(1 E)-2-[5,6-dihydro-5,5-dimethyl-8-(2-phenylethynyl)-2-naphthalenyl]ethenyl]benzoic acid, which are antagonists of retinal dehydrogenase and the RA receptor, respectively. Treatment with either compound resulted in BRB disruption and reduced visual acuity, whereas cotreatment with all- trans RA effectively rescued BRB integrity. Additionally, transgenic overexpression of Cyp26a1, which catalyzes RA degradation, resulted in breakdown of the BRB. Our results demonstrate that RA signaling is critical for maintenance of the BRB and could play a role in diseases such as diabetic macular edema.-Pollock, L. M., Xie, J., Bell, B. A., Anand-Apte, B. Retinoic acid signaling is essential for maintenance of the blood-retinal barrier."	"Tissue inhibitor of metalloproteinases-3 (TIMP3) is a tumor suppressor and a potent inhibitor of angiogenesis. TIMP3 exerts its anti-angiogenic effect via a direct interaction with vascular endothelial growth factor (VEGF) receptor-2 (KDR) and inhibition of proliferation, migration and tube formation of endothelial cells (ECs). TIMP3 has also been shown to induce apoptosis in some cancer cells and vascular smooth muscle cells via MMP inhibition and caspase-dependent mechanisms. In this study, we examined the molecular mechanisms of TIMP3-mediated apoptosis in endothelial cells. We have previously demonstrated that mice developed smaller tumors with decreased vascularity when injected with breast carcinoma cells overexpressing TIMP3, than with control breast carcinoma cells. TIMP3 overexpression resulted in increased apoptosis in human breast carcinoma (MDA-MB435) in vivo but not in vitro. However, TIMP3 could induce apoptosis in ECs in vitro. The apoptotic activity of TIMP3 in ECs appears to be independent of MMP inhibitory activity. Furthermore, the equivalent expression of functional TIMP3 promoted apoptosis and caspase activation in ECs expressing KDR (PAE/KDR), but not in ECs expressing PDGF beta-receptor (PAE/β-R). Surprisingly, the apoptotic activity of TIMP3 appears to be independent of caspases. TIMP3 inhibited matrix-induced focal adhesion kinase (FAK) tyrosine phosphorylation and association with paxillin and disrupted the incorporation of β3 integrin, FAK and paxillin into focal adhesion contacts on the matrix, which were not affected by caspase inhibitors. Thus, TIMP3 may induce apoptosis in ECs by triggering a caspase-independent cell death pathway and targeting a FAK-dependent survival pathway. "	"Over the past 3 decades the zebrafish (Danio rerio) has become an important biomedical research species. As their use continues to grow additional techniques and tools will be required to keep pace with ongoing research using this species. In this paper we describe a novel method for in vivo imaging of the retinal vasculature in adult animals using a commercially available confocal scanning laser ophthalmoscope (SLO). With this instrumentation, we demonstrate the ability to distinguish diverse vascular phenotypes in different transgenic GFP lines. In addition this technology allows repeated visualization of the vasculature in individual zebrafish over time to document vascular leakage progression and recovery induced by intraocular delivery of proteins that induce vascular permeability. SLO of the retinal vasculature was found to be highly informative, providing images of high contrast and resolution that were capable of resolving individual vascular endothelial cells. Finally, the procedures required to acquire SLO images from zebrafish are non-invasive, simple to perform and can be achieved with low animal mortality, allowing repeated imaging of individual fish."	"Diabetes mellitus is a disease with considerable morbidity and mortality worldwide. Breakdown of the blood-retinal barrier and leakage from the retinal vasculature leads to diabetic macular edema, an important cause of vision loss in patients with diabetes. Although epidemiologic studies and randomized clinical trials suggest that glycemic control plays a major role in the development of vascular complications of diabetes, insulin therapies for control of glucose metabolism cannot prevent long-term retinal complications. The phenomenon of temporary paradoxical worsening of diabetic macular edema after insulin treatment has been observed in a number of studies. In prospective studies on non-insulin-dependent (type 2) diabetes mellitus patients, a change in treatment from oral drugs to insulin was often associated with a significant increased risk of retinopathy progression and visual impairment. Although insulin therapies are critical for regulation of the metabolic disease, their role in the retina is controversial. In this study with diabetic mice, insulin treatment resulted in increased vascular leakage apparently mediated by betacellulin and signaling via the epidermal growth factor (EGF) receptor. In addition, treatment with EGF receptor inhibitors reduced retinal vascular leakage in diabetic mice on insulin. These findings provide unique insight into the role of insulin signaling in mediating retinal effects in diabetes and open new avenues for therapeutics to treat the retinal complications of diabetes mellitus. "	"Tissue inhibitors of metalloproteinases (TIMPs) while originally characterized as inhibitors of matrix metalloproteinases (MMPs) have recently been shown to have a wide range of functions that are independent of their MMP inhibitory properties. Tissue inhibitor of metalloproteinases-3 (TIMP-3) is a potent inhibitor of VEGF-mediated angiogenesis and neovascularization through its ability to block the binding of VEGF to its receptor VEGFR-2. To identify and characterize the anti-angiogenic domain of TIMP-3, structure function analyses and synthetic peptide studies were performed using VEGF-mediated receptor binding, signaling, migration and proliferation. In addition, the ability of TIMP-3 peptides to inhibit CNV in a mouse model was evaluated. We demonstrate that the anti-angiogenic property resides in the COOH-terminal domain of TIMP-3 protein which can block the binding of VEGF specifically to its receptor VEGFR-2, but not to VEGFR-1 similar to the full-length wild-type protein. Synthetic peptides corresponding to putative loop 6 and tail region of TIMP-3 have anti-angiogenic properties as determined by inhibition of VEGF binding to VEGFR-2, VEGF-induced phosphorylation of VEGFR-2 and downstream signaling pathways as well as endothelial cell proliferation and migration in response to VEGF. In addition, we show that intravitreal administration of TIMP-3 peptide could inhibit the size of laser-induced choroidal neovascularization lesions in mice. Thus, we have identified TIMP-3 peptides to be efficient inhibitors of angiogenesis and have a potential to be used therapeutically in diseases with increased neovascularization."	NA	NA	"Tissue inhibitor of metalloproteinases-3 (TIMP-3) is a matrix-bound inhibitor of matrix metalloproteinases (MMPs). The authors have previously determined a novel function of TIMP-3 to inhibit vascular endothelial growth factor (VEGF)-mediated angiogenesis. Here, the authors examined the in vivo angiogenic phenotype of ocular vessels in mice deficient in TIMP-3. VEGF-mediated corneal neovascularization and laser-induced choroidal neovascularization (CNV) were examined in TIMP-3-null mice. The effects of the absence of TIMP-3 on the phosphorylation status of the VEGF-receptor-2 (VEGFR-2) and the downstream signaling pathways were evaluated biochemically. In addition, the activation state of MMPs in the retina of TIMP-3-deficient mice was examined by in situ zymography. The results of these studies determine an accentuation of pathologic VEGF-mediated angiogenesis in the cornea and laser-induced CNV in mice lacking TIMP-3. In the absence of the MMP inhibitor, pathophysiological changes were observed in the choroidal vasculature concomitantly with an increase in gelatinolytic activity. These results suggest that an imbalance of extracellular matrix homeostasis, together with a loss of an angiogenesis inhibitor, can prime vascular beds to be more responsive to an angiogenic stimulus. In light of the recent studies suggesting that genetic variants near TIMP-3 influence susceptibility to age-related macular degeneration, these results imply that TIMP-3 may regulate the development of the choroidal vasculature and is a likely contributor to increased susceptibility to choroidal neovascularization."	"Diabetic maculopathy, the leading cause of vision loss in patients with type 2 diabetes, is characterized by hyper-permeability of retinal blood vessels with subsequent formation of macular edema and hard exudates. The degree of hyperglycemia and duration of diabetes have been suggested to be good predictors of retinal complications. Intervention studies have determined that while intensive treatment of diabetes reduced the development of proliferative diabetic retinopathy it was associated with a two to three-fold increased risk of severe hypoglycemia. Thus we hypothesized the need to identify downstream glycemic targets, which induce retinal vascular permeability that could be targeted therapeutically without the additional risks associated with intensive treatment of the hyperglycemia. Betacellulin is a 32 kD member of the epidermal growth factor family with mitogenic properties for the retinal pigment epithelial cells. This led us to hypothesize a role for betacellulin in the retinal vascular complications associated with diabetes. In this study, using a mouse model of diabetes, we demonstrate that diabetic mice have accentuated retinal vascular permeability with a concomitant increased expression of a cleaved soluble form of betacellulin (s-Btc) in the retina. Intravitreal injection of soluble betacellulin induced retinal vascular permeability in normoglycemic and hyperglycemic mice. Western blot analysis of retinas from patients with diabetic retinopathy showed an increase in the active soluble form of betacellulin. In addition, an increase in the levels of A disintegrin and metalloproteinase (ADAM)-10 which plays a role in the cleavage of betacellulin was seen in the retinas of diabetic mice and humans. These results suggest that excessive amounts of betacellulin in the retina may contribute to the pathogenesis of diabetic macular edema."
+"Apte, Suneel"	"Biomedical Engineering"	30814516	30738849	30201140	29885460	29642006	29515038	28323982	28176809	27687499	26657033	"Although hundreds of cytosolic or transmembrane molecules form the primary cilium, few secreted molecules are known to contribute to ciliogenesis. Here, homologous secreted metalloproteases ADAMTS9 and ADAMTS20 are identified as ciliogenesis regulators that act intracellularly. Secreted and furin-processed ADAMTS9 bound heparan sulfate and was internalized by LRP1, LRP2 and clathrin-mediated endocytosis to be gathered in Rab11 vesicles with a unique periciliary localization defined by super-resolution microscopy. CRISPR-Cas9 inactivation of ADAMTS9 impaired ciliogenesis in RPE-1 cells, which was restored by catalytically active ADAMTS9 or ADAMTS20 acting in trans, but not by their proteolytically inactive mutants. Their mutagenesis in mice impaired neural and yolk sac ciliogenesis, leading to morphogenetic anomalies resulting from impaired hedgehog signaling, which is transduced by primary cilia. In addition to their cognate extracellular proteolytic activity, ADAMTS9 and ADAMTS20 thus have an additional proteolytic role intracellularly, revealing an unexpected regulatory dimension in ciliogenesis."	"Geleophysic dysplasia is a rare, frequently lethal condition characterized by severe short stature with progressive joint contractures, cardiac, pulmonary, and skin anomalies. Geleophysic dysplasia results from dominant fibrillin-1 (FBN1) or recessive ADAMTSL2 mutations, suggesting a functional link between ADAMTSL2 and fibrillin microfibrils. Mice lacking ADAMTSL2 die at birth, which has precluded analysis of postnatal limb development and mechanisms underlying the skeletal anomalies of geleophysic dysplasia. Here, detailed expression analysis of Adamtsl2 using an intragenic lacZ reporter shows strong Adamtsl2 expression in limb tendons. Expression in developing and growing bones is present in regions that are destined to become articular cartilage but is absent in growth plate cartilage. Consistent with strong tendon expression, Adamtsl2 conditional deletion in limb mesenchyme using Prx1-Cre led to tendon anomalies, albeit with normal collagen fibrils, and distal limb shortening, providing a mouse model for geleophysic dysplasia. Unexpectedly, conditional Adamtsl2 deletion using Scx-Cre, a tendon-specific Cre-deleter strain, which does not delete in cartilage, also impaired skeletal growth. Recombinant ADAMTSL2 is shown here to colocalize with fibrillin microfibrils in vitro, and enhanced staining of fibrillin-1 microfibrils was observed in Prx1-Cre Adamtsl2 tendons. The findings show that ADAMTSL2 specifically regulates microfibril assembly in tendons and that proper microfibril composition in tendons is necessary for tendon growth. We speculate that reduced bone growth in geleophysic dysplasia may result from external tethering by short tendons rather than intrinsic growth plate anomalies. Taken together with previous work, we suggest that GD results from abnormal microfibril assembly in tissues, and that ADAMTSL2 may limit the assembly of fibrillin microfibrils."	"Mutations in the secreted metalloproteinase ADAMTS10 cause recessive Weill-Marchesani syndrome (WMS), comprising ectopia lentis, short stature, brachydactyly, thick skin and cardiac valve anomalies. Dominant WMS caused by FBN1 mutations is clinically similar and affects fibrillin-1 microfibrils, which are a major component of the ocular zonule. ADAMTS10 was previously shown to enhance fibrillin-1 assembly in vitro. Here, Adamts10 null mice were analyzed to determine the impact of ADAMTS10 deficiency on fibrillin microfibrils in vivo. An intragenic lacZ reporter identified widespread Adamts10 expression in the eye, musculoskeletal tissues, vasculature, skin and lung. Adamts10<sup>-/-</sup> mice had reduced viability on the C57BL/6 background, and although surviving mice were slightly smaller and had stiff skin, they lacked brachydactyly and cardiovascular defects. Ectopia lentis was not observed in Adamts10<sup>-/-</sup> mice, similar to Fbn1<sup>-/-</sup> mice, most likely because the mouse zonule contains fibrillin-2 in addition to fibrillin-1. Unexpectedly, in contrast to wild-type eyes, Adamts10<sup>-/-</sup> zonule fibers were thicker and immunostained strongly with fibrillin-2 antibodies into adulthood, whereas fibrillin-1 staining was reduced. Furthermore, fibrillin-2 staining of hyaloid vasculature remnants persisted post-natally in Adamts10<sup>-/-</sup> eyes. ADAMTS10 was found to cleave fibrillin-2, providing an explanation for persistence of fibrillin-2 at these sites. Thus, analysis of Adamts10<sup>-/-</sup> mice led to identification of fibrillin-2 as a novel ADAMTS10 substrate and defined a proteolytic mechanism for clearance of ocular fibrillin-2 at the end of the juvenile period."	"ADAMTS proteins are a superfamily of 26 secreted molecules comprising two related, but distinct families. ADAMTS proteases are zinc metalloendopeptidases, most of whose substrates are extracellular matrix (ECM) components, whereas ADAMTS-like proteins lack a metalloprotease domain, reside in the ECM and have regulatory roles vis-à-vis ECM assembly and/or ADAMTS activity. Evolutionary conservation and expansion of ADAMTS proteins in mammals is suggestive of crucial embryologic or physiological roles in humans. Indeed, Mendelian disorders or birth defects resulting from naturally occurring ADAMTS2, ADAMTS3, ADAMTS10, ADAMTS13, ADAMTS17, ADAMTS20, ADAMTSL2 and ADAMTSL4 mutations as well as numerous phenotypes identified in genetically engineered mice have revealed ADAMTS participation in major biological pathways. Important roles have been identified in a few acquired conditions. ADAMTS5 is unequivocally implicated in pathogenesis of osteoarthritis via degradation of aggrecan, a major structural proteoglycan in cartilage. ADAMTS7 is strongly associated with coronary artery disease and promotes atherosclerosis. Autoantibodies to ADAMTS13 lead to a platelet coagulopathy, thrombotic thrombocytopenic purpura, which is similar to that resulting from ADAMTS13 mutations. ADAMTS proteins have numerous potential connections to other human disorders that were identified by genome-wide association studies. Here, we review inherited and acquired human disorders in which ADAMTS proteins participate, and discuss progress and prospects in therapeutics."	"Focal adhesions anchor cells to extracellular matrix (ECM) and direct assembly of a pre-stressed actin cytoskeleton. They act as a cellular sensor and regulator, linking ECM to the nucleus. Here, we identify proteolytic turnover of the anti-adhesive proteoglycan versican as a requirement for maintenance of smooth muscle cell (SMC) focal adhesions. Using conditional deletion in mice, we show that ADAMTS9, a secreted metalloprotease, is required for myometrial activation during late gestation and for parturition. Through knockdown of ADAMTS9 in uterine SMC, and manipulation of pericellular versican via knockdown or proteolysis, we demonstrate that regulated pericellular matrix dynamics is essential for focal adhesion maintenance. By influencing focal adhesion formation, pericellular versican acts upstream of cytoskeletal assembly and SMC differentiation. Thus, pericellular versican proteolysis by ADAMTS9 balances pro- and anti-adhesive forces to maintain an SMC phenotype, providing a concrete example of the dynamic reciprocity of cells and their ECM."	"Proteoglycan accumulation is a hallmark of medial degeneration in thoracic aortic aneurysm and dissection (TAAD). Here, we defined the aortic proteoglycanome using mass spectrometry, and based on the findings, investigated the large aggregating proteoglycans aggrecan and versican in human ascending TAAD and a mouse model of severe Marfan syndrome. The aortic proteoglycanome comprises 20 proteoglycans including aggrecan and versican. Antibodies against these proteoglycans intensely stained medial degeneration lesions in TAAD, contrasting with modest intralamellar staining in controls. Aggrecan, but not versican, was increased in longitudinal analysis of Fbn1mgR/mgR aortas. TAAD and Fbn1mgR/mgR aortas had increased aggrecan and versican mRNAs, and reduced expression of a key proteoglycanase gene, ADAMTS5, was seen in TAAD. Fbn1mgR/mgR mice with ascending aortic dissection and/or rupture had dramatically increased aggrecan staining compared with mice without these complications. Thus, aggrecan and versican accumulation in ascending TAAD occurs via increased synthesis and/or reduced proteolytic turnover, and correlates with aortic dissection/rupture in Fbn1mgR/mgR mice. Tissue swelling imposed by aggrecan and versican is proposed to be profoundly deleterious to aortic wall mechanics and smooth muscle cell homeostasis, predisposing to type-A dissections. These proteoglycans provide potential biomarkers for refined risk stratification and timing of elective aortic aneurysm repair."	"Leiomyomas have abundant extracellular matrix (ECM), with upregulation of versican, a large proteoglycan. We investigated ADAMTS (a disintegrin-like and metalloprotease with thrombospondin type 1 motifs) protease-mediated versican cleavage in myometrium and leiomyoma and the effect of versican knockdown in leiomyoma cells. We used quantitative reverse transcription polymerase chain reaction (qRT-PCR), western blotting, immunohistochemistry, and RNA in situ hybridization for analysis of myometrium, leiomyoma and immortalized myometrium and leiomyoma cells. Short interfering RNA (siRNA) was used to knockdown versican in leiomyoma cells. This study was performed in an academic laboratory. Study subjects were women with symptomatic or asymptomatic leiomyoma. We quantified messenger RNAs (mRNAs) for versican splice variants. We identified ADAMTS-cleaved versican in myometrium and leiomyoma and ADAMTS messenger RNAs and examined the effect of VCAN siRNA on smooth muscle differentiation and expression of estrogen and progesterone receptors. The women in the symptomatic group (n = 7) had larger leiomyoma (P = 0.01), heavy menstrual bleeding (P &lt; 0.01), and lower hemoglobin levels (P = 0.02) compared with the asymptomatic group (n = 7), but were similar in age and menopausal status. Versican V0 and V1 isoforms were upregulated in the leiomyomas of symptomatic versus asymptomatic women (P = 0.03 and P = 0.04, respectively). Abundant cleaved versican was detected in leiomyoma and myometrium, as well as in myometrial and leiomyoma cell lines. ADAMTS4 (P = 0.03) and ADAMTS15 (P = 0.04) were upregulated in symptomatic leiomyomas. VCAN siRNA did not effect cell proliferation, apoptosis, or smooth muscle markers, but reduced ESR1 and PR-A expression (P = 0.001 and P = 0.002, respectively). Versican in myometrium, leiomyomas and in the corresponding immortalized cells is cleaved by ADAMTS proteases. VCAN siRNA suppresses production of estrogen receptor 1 and progesterone receptor-A. These findings have implications for leiomyoma growth."	"Secreted metalloproteases have diverse roles in the formation, remodeling, and the destruction of extracellular matrix. Recessive mutations in the secreted metalloprotease ADAMTS17 cause ectopia lentis and short stature in humans with Weill-Marchesani-like syndrome and primary open angle glaucoma and ectopia lentis in dogs. Little is known about this protease or its connection to fibrillin microfibrils, whose major component, fibrillin-1, is genetically associated with ectopia lentis and alterations in height. Fibrillin microfibrils form the ocular zonule and are present in the drainage apparatus of the eye. We show that recombinant ADAMTS17 has unique characteristics and an unusual life cycle. It undergoes rapid autocatalytic processing in trans after its secretion from cells. Secretion of ADAMTS17 requires O-fucosylation and its autocatalytic activity does not depend on propeptide processing by furin. ADAMTS17 binds recombinant fibrillin-2 but not fibrillin-1 and does not cleave either. It colocalizes to fibrillin-1 containing microfibrils in cultured fibroblasts and suppresses fibrillin-2 (FBN2) incorporation in microfibrils, in part by transcriptional downregulation of Fbn2 mRNA expression. RNA in situ hybridization detected Adamts17 expression in specific structures in the eye, skeleton and other organs, where it may regulate the fibrillin isoform composition of microfibrils."	"Peters Plus syndrome (PPS), a congenital disorder of glycosylation, results from recessive mutations affecting the glucosyltransferase B3GLCT, leading to congenital corneal opacity and diverse extra-ocular manifestations. Together with the fucosyltransferase POFUT2, B3GLCT adds Glucoseβ1-3Fucose disaccharide to a consensus sequence in thrombospondin type 1 repeats (TSRs) of several proteins. Which of these target proteins is functionally compromised in PPS is unknown. We report here that haploinsufficiency of murine Adamts9, encoding a secreted metalloproteinase with 15 TSRs, leads to congenital corneal opacity and Peters anomaly (persistent lens-cornea adhesion), which is a hallmark of PPS. Mass spectrometry of recombinant ADAMTS9 showed that 9 of 12 TSRs with the O-fucosylation consensus sequence carried the Glucoseβ1-3Fucose disaccharide and B3GLCT knockdown reduced ADAMTS9 secretion in HEK293F cells. Together, the genetic and biochemical findings imply a dosage-dependent role for ADAMTS9 in ocular morphogenesis. Reduced secretion of ADAMTS9 in the absence of B3GLCT is proposed as a mechanism of Peters anomaly in PPS. The functional link between ADAMTS9 and B3GLCT established here also provides credence to their recently reported association with age-related macular degeneration."	"The extracellular matrix of articular cartilage is structurally specialized for efficient absorption of mechanical impact. In particular, giant aggregates of the large chondroitin sulfate proteoglycan, aggrecan, with the glycosaminoglycan, hyaluronan, allow cartilage to resist compressive load. Proteolysis of aggrecan by members of the proteinase family ADAMTS (A disintegrin-like and metalloproteinase domain with thrombospondin type 1 motif), was identified as an early step in the inexorable destruction of cartilage in osteoarthritis (OA). Of the investigated proteinases, ADAMTS5 has emerged as a principal mediator of aggrecan loss in OA, convincingly so in mouse models, and with high probability in humans. ADAMTS5 has a bipartite organization, comprising a proteinase domain and an ancillary domain containing exosites for interaction with aggrecan and other substrates. In a recent issue of this journal, Santamaria et al. characterized anti-ADAMTS5 monoclonal antibodies isolated from a phage display library. By blocking the catalytic site of the ADAMTS5 immunogen with a synthetic inhibitor, the authors of the paper biased selection of antibodies to the ancillary domain. This work, together with other antibodies targeting ADAMTS5, offers diverse, high-affinity and, as far as can be determined, selective aggrecanase inhibitors. Mapping of their epitopes provided novel insights into ADAMTS5 interactions with aggrecan. These monoclonal antibodies deserve continued investigation for potential arthritis therapy, although their successful use will require a comprehensive understanding of the physiological roles of ADAMTS5, and its regulation, intrinsic properties and intermolecular interactions. "
+"Aronica, Mark"	"Inflammation and Immunity"	30691715	29966020	26448757	26209637	25988016	23118230	22917573	21251977	20477600	15577850	"There are multiple proinflammatory pathways in the pathogenesis of asthma. These include both innate and adaptive inflammation, in addition to inflammatory and physiologic responses mediated by eicosanoids. An important component of the innate allergic immune response is ILC2 activated by interleukin (IL)-33, thymic stromal lymphopoietin, and IL-25 to produce IL-5 and IL-13. In terms of the adaptive T-lymphocyte immunity, CD4+ Th2 and IL-17-producing cells are critical in the inflammatory responses in asthma. Last, eicosanoids involved in asthma pathogenesis include prostaglandin D2 and the cysteinyl leukotrienes that promote smooth muscle constriction and inflammation that propagate allergic responses."	"Asthma is a chronic inflammatory disease that is known to cause changes in the extracellular matrix, including changes in hyaluronan (HA) deposition. However, little is known about the factors that modulate its deposition or the potential consequences. Asthmatics with high levels of exhaled nitric oxide (NO) are characterized by greater airway reactivity and greater evidence of airway inflammation. Based on these data and our previous work we hypothesized that excessive NO promotes the pathologic production of HA by airway smooth muscle cells (SMCs). Exposure of cultured SMCs to various NO donors results in the accumulation of HA in the form of unique, cable-like structures. HA accumulates rapidly after exposure to NO and can be seen as early as one hour after NO treatment. The cable-like HA in NO-treated SMC cultures supports the binding of leukocytes. In addition, NO produced by murine macrophages (RAW cells) and airway epithelial cells also induces SMCs to produce HA cables when grown in co-culture. The modulation of HA by NO appears to be independent of soluble guanylate cyclase. Taken together, NO-induced production of leukocyte-binding HA by SMCs provides a new potential mechanism for the non-resolving airway inflammation in asthma and suggests a key role of non-immune cells in driving the chronic inflammation of the submucosa. Modulation of NO, HA and the consequent immune cell interactions may serve as potential therapeutic targets in asthma."	"In normal airways, hyaluronan (HA) matrices are primarily located within the airway submucosa, pulmonary vasculature walls, and, to a lesser extent, the alveoli. Following pulmonary injury, elevated levels of HA matrices accumulate in these regions, and in respiratory secretions, correlating with the extent of injury. Animal models have provided important insight into the role of HA in the onset of pulmonary injury and repair, generally indicating that the induction of HA synthesis is an early event typically preceding fibrosis. The HA that accumulates in inflamed airways is of a high molecular weight (&gt;1600 kDa) but can be broken down into smaller fragments (&lt;150 kDa) by inflammatory and disease-related mechanisms that have profound effects on HA pathobiology. During inflammation in the airways, HA is often covalently modified with heavy chains from inter-alpha-inhibitor via the enzyme tumor-necrosis-factor-stimulated-gene-6 (TSG-6) and this modification promotes the interaction of leukocytes with HA matrices at sites of inflammation. The clearance of HA and its return to normal levels is essential for the proper resolution of inflammation. These data portray HA matrices as an important component of normal airway physiology and illustrate its integral roles during tissue injury and repair among a variety of respiratory diseases. "	"Hyaluronan (HA) is a large (&gt;1500 kDa) polysaccharide of the extracellular matrix that has been linked to severity and inflammation in asthma. During inflammation, HA becomes covalently modified with heavy chains (HC-HA) from inter-α-inhibitor (IαI), which functions to increase its avidity for leukocytes. Our murine model of allergic pulmonary inflammation suggested that HC-HA may contribute to inflammation, adversely effecting lower airway remodeling and asthma severity. Our objective was to characterize the levels of HA and HC-HA in asthmatic subjects and to correlate these levels with asthma severity. We determined the levels and distribution of HA and HC-HA (i) from asthmatic and control lung tissue, (ii) in bronchoalveolar lavage fluid obtained from non-severe and severe asthmatics and controls, and (iii) in serum and urine from atopic asthmatics after an experimental asthma exacerbation. HC-HA distribution was observed (i) in the thickened basement membrane of asthmatic lower airways, (ii) around smooth muscle cells of the asthmatic submucosa, and (iii) around reserve cells of the asthmatic epithelium. Patients with severe asthma had increased HA levels in bronchoalveolar lavage fluid that correlated with pulmonary function and nitric oxide levels, whereas HC-HA was only observed in a patient with non-severe asthma. After an experimental asthma exacerbation, serum HA was increased within 4 h after challenge and remained elevated through 5 days after challenge. Urine HA and HC-HA were not significantly different. These data implicate HA and HC-HA in the pathogenesis of asthma severity that may occur in part due to repetitive asthma exacerbations over the course of the disease. "	"A 64-year-old female patient presented with a 16-year history of persistent dry cough that was undiagnosed after workups at several healthcare facilities. The patient denies wheezing, shortness of breath or sputum production. Previous workups include chest imaging, transthoracic echocardiogram (TTE), laryngoscopy, spirometry and bronchoscopy, all of which were unremarkable. During her current evaluation, spirometry was ordered again for the patient, which showed a post-bronchodilator improvement in the FEV1 by 13%, strongly suggestive of asthma. The patient was started on pharmacological therapy for severe persistent asthma, which led to sustained symptomatic improvement per evaluation at follow-up after 2 months. Spirometric findings, clinical presentation and resolution of symptoms with adequate therapy for asthma suggest that this is a case of cough variant asthma that went undiagnosed for several years. This case report summarizes the workup for chronic cough and how the diagnosis of cough variant asthma can be missed. "	"Hyaluronan (HA) deposition is often correlated with mucosal inflammatory responses, where HA mediates both protective and pathological responses. By modifying the HA matrix, Tnfip6 (TNF-α-induced protein-6; also known as TSG-6 (TNF-stimulated gene-6)) is thought to potentiate anti-inflammatory and anti-plasmin effects that are inhibitory to leukocyte extravasation. In this study, we examined the role of endogenous TSG-6 in the pathophysiological responses associated with acute allergic pulmonary inflammation. Compared with wild-type littermate controls, TSG-6(-/-) mice exhibited attenuated inflammation marked by a significant decrease in pulmonary HA concentrations measured in the bronchoalveolar lavage and lung tissue. Interestingly, despite the equivalent induction of both humoral and cellular Th2 immunity and the comparable levels of cytokines and chemokines typically associated with eosinophilic pulmonary inflammation, airway eosinophilia was significantly decreased in TSG-6(-/-) mice. Most importantly, contrary to their counterpart wild-type littermates, TSG-6(-/-) mice were resistant to the induction of airway hyperresponsiveness and manifested improved lung mechanics in response to methacholine challenge. Our study demonstrates that endogenous TSG-6 is dispensable for the induction of Th2 immunity but is essential for the robust increase in pulmonary HA deposition, propagation of acute eosinophilic pulmonary inflammation, and development of airway hyperresponsiveness. Thus, TSG-6 is implicated in the experimental murine model of allergic pulmonary inflammation and is likely to contribute to the pathogenesis of asthma."	"Asthma is a chronic inflammatory disease that exhibits airway remodeling with changes in the extracellular matrix (ECM). The role of the ECM in mediating these changes is poorly understood. Hyaluronan (HA), a major component of the ECM, has been implicated in many biological processes in diseases. This study investigates the processes involved in HA synthesis, deposition and localization during the propagation of cockroach-induced asthma. Mice were sensitized and challenged with cockroach antigen, and sacrificed at various time points during an 8-week challenge protocol. Analysis of bronchoalveolar lavage (BAL) fluid revealed an increase in total nucleated cells as early as 6h, which peaked at 6 days. Histopathologic analysis of the lung tissue revealed an influx of inflammatory cells at the peribronchial and perivascular regions starting at 12 h, which peaked at 6 days and persisted to 8 weeks. Eosinophils predominated in the early time points while lymphocytes predominated during the late time points. Quantitative polymerase chain reaction (PCR) data showed that hyaluronan synthase 1 (HAS1) mRNA peaked within 6 h and then declined. HAS2 mRNA also peaked within 6 h but remained elevated throughout the 8-week exposure course. HA levels in lung tissue and BAL increased at 12 h and peaked by 6 and 8 days, respectively. Inflammatory cells and new collagen formation localized in areas of HA deposition. Taken together, these data support a role for HA in the pathogenesis in asthma."	"Asthma is a chronic inflammatory disease of the airways characterized by airway remodeling, which includes changes in the extracellular matrix (ECM). However the role of the ECM in mediating these changes is poorly understood. Hyaluronan (HA), a major component of the ECM, has been implicated in asthma as well as in many other biological processes. Our study investigates the processes involved in HA synthesis, deposition, localization and degradation during an acute and chronic murine model of ovalbumin (OVA)-induced allergic pulmonary inflammation. Mice were sensitized, challenged to OVA and sacrificed at various time points during an 8-week challenge protocol. Bronchoalveolar lavage (BAL) fluids, blood, and lung tissue were collected for study. RNA, HA, protein and histopathology were analyzed. Analyses of lung sections and BAL fluids revealed an early deposition and an increase in HA levels within 24 h of antigen exposure. HA levels peaked at day 8 in BAL, while inflammatory cell recovery peaked at day 6. Hyaluronan synthase (HAS)1 and HAS2 on RNA levels peaked within 2 h of antigen exposure, while hyaluronidase (HYAL)1 and HYAL2 on RNA levels decreased. Both inflammatory cell infiltrates and collagen deposition co-localized with HA deposition within the lungs. These data support a role for HA in the pathogenesis of inflammation and airway remodeling in a murine model of asthma. HA deposition appears largely due to up regulation of HAS1 and HAS2. In addition, HA appears to provide the scaffolding for inflammatory cell accumulation as well as for new collagen synthesis and deposition."	"Animal models and clinical studies of asthma have generated important insights into the first effector phase leading to the development of allergic airway disease and bronchial hyper-reactivity. In contrast, mechanisms related to asthma chronicity or persistence are less well understood. The CD4(+) T-helper 2 lymphocytes are known initiators of the inflammatory response associated with asthma. There is now increasing evidence that memory T-cells, sensitized against allergenic, occupational or viral antigens, are also involved in the persistence of asthma. Additionally, the role of pathogens in asthma has been linked to both the initial susceptibility to and flares of this disease. This review will discuss the potential links between infection and asthma, the role of the memory T-cells in asthma, and the potential mechanisms by which these factors interact to lead to the development and/or persistence of asthma."	"Microbial infections are associated with the initial susceptibility to and flares of asthma. However, immunologic mechanisms whereby infections might alter the asthmatic phenotype are lacking. To test the hypothesis that memory T cells specific both for a viral antigen and an allergen could influence the pathogenesis of allergic disease in vivo . We developed a system in which 2 distinct T-cell receptors coexist on the T-cell surface, 1 specific for a virus and the other for an inhaled antigen. We show that a population of dual-receptor T cells, polarized through a virus-specific T-cell receptor to contain T(H)1 or T(H)2 cells, can be reactivated through an unrelated T-cell receptor in recall responses in vivo . Quiescent memory cells derived from a T(H)1-polarized effector population blocked the development of airway hyperreactivity in a model of allergic lung disease, in association with decreased induction of chemokines and eosinophil recruitment. Conversely, reactivation of quiescent T(H)2 cells after inhalation of antigen or virus infection was sufficient to lead to the development of airway hyperresponsiveness and allergic pulmonary inflammation in mice whose lungs were previously normal. These data provide evidence that dual-receptor memory T cells can regulate allergic disease susceptibility and suggest that they may play a role in mediating the influence of microbes on asthma pathogenesis."
+"Asosingh, Kewal"	"Inflammation and Immunity"	30523671	30460535	29911993	29659138	29573550	29296972	29264954	27270458	26810221	25621158	"Preparing a single cell suspension is a critical step in any solid tissue flow cytometry experiment. Tissue dissection, enzymatic digestion, and mechanical dissociation are three significant steps leading to the degradation of the extracellular matrix and the isolation of single cells, allowing the generation of high-quality flow cytometry data. Cells and the extracellular matrix contain various proteins and other structures which must be considered when designing a tissue digestion protocol to preserve the viability of cells and the presence of relevant antigens while digesting matrix components and cleaving cell-cell junctions. Evaluation of the single cell suspension is essential before proceeding with the labeling of the cells as high viability and absence of cell debris and aggregates are critical for flow cytometry. The information presented should be used as a general guide of steps to consider when preparing a single cell suspension from solid tissues for flow cytometry experiments. © 2018 International Society for Advancement of Cytometry."	"Angiogenesis extends pre-existing blood vessels to improve oxygen and nutrient delivery to inflamed or otherwise hypoxic tissues. Mitochondria are integral in this process, controlling cellular metabolism to regulate the proliferation, migration, and survival of endothelial cells which comprise the inner lining of blood vessels. Mitochondrial Complex III senses hypoxic conditions and generates mitochondrial reactive oxygen species which stabilize hypoxia-inducible factor (HIF-1α) protein. HIF-1α induces the transcription of the vegfa gene, allowing the translation of vascular endothelial growth factor protein, which interacts with mature and precursor endothelial cells, mobilizing them to form new blood vessels. This cascade can be inhibited at specific points by means of gene knockdown, enzyme treatment, and introduction of naturally occurring small molecules, providing insight into the relationship between mitochondria and angiogenesis. This review focuses on current knowledge of the overall role of mitochondria in controlling angiogenesis and outlines known inhibitors that have been used to elucidate this pathway which may be useful in future research to control angiogenesis in vivo."	"Protease-activated receptor 2 (PAR-2), an airway epithelial pattern recognition receptor (PRR), participates in the genesis of house dust mite-induced (HDM-induced) asthma. Here, we hypothesized that lung endothelial cells and proangiogenic hematopoietic progenitor cells (PACs) that express high levels of PAR-2 contribute to the initiation of atopic asthma. HDM extract (HDME) protease allergens were found deep in the airway mucosa and breaching the endothelial barrier. Lung endothelial cells and PACs released the Th2-promoting cytokines IL-1α and GM-CSF in response to HDME, and the endothelium had PAC-derived VEGF-C-dependent blood vessel sprouting. Blockade of the angiogenic response by inhibition of VEGF-C signaling lessened the development of inflammation and airway remodeling in the HDM model. Reconstitution of the bone marrow in WT mice with PAR-2-deficient bone marrow also reduced airway inflammation and remodeling. Adoptive transfer of PACs that had been exposed to HDME induced angiogenesis and Th2 inflammation with remodeling similar to that induced by allergen challenge. Our findings identify that lung endothelium and PACs in the airway sense allergen and elicit an angiogenic response that is central to the innate nonimmune origins of Th2 inflammation."	"Airway fibrosis is a prominent feature of asthma, contributing to the detrimental consequences of the disease. Fibrosis in the airway is the result of collagen deposition in the reticular lamina layer of the subepithelial tissue. Myofibroblasts are the leading cell type involved with this collagen deposition. Established methods of collagen deposition quantification present various issues, most importantly their inability to quantify current collagen biosynthesis occurring in airway myofibroblasts. Here, a novel method to quantify myofibroblast collagen expression in asthmatic lungs is described. Single cell suspensions of lungs harvested from C57BL/6 mice in a standard house dust mite model of asthma were employed to establish a flow cytometric method and compare collagen production in asthmatic and non-asthmatic lungs. Cells found to be CD45<sup>-</sup> αSMA<sup>+</sup> , indicative of myofibroblasts, were gated, and median fluorescence intensity of the anti-collagen-I antibody labeling the cells was calculated. Lung myofibroblasts with no, medium, or high levels of collagen-I expression were distinguished. In asthmatic animals, collagen-I levels were increased in both medium and high expressers, and the number of myofibroblasts with high collagen-I content was elevated. Our findings determined that quantification of collagen-I deposition in myofibroblastic lung cells by flow cytometry is feasible in mouse models of asthma and indicative of increased collagen-I expression by asthmatic myofibroblasts. © 2018 International Society for Advancement of Cytometry."	"Beta-adrenergic receptors (β-ARs) play a critical role in many diseases. Quantification of β-AR density may have clinical implications in terms of assessing disease severity and identifying patients who could potentially benefit from beta-blocker therapy. Classical methods for β-AR quantification are based on labor-intensive and time-consuming radioligand binding assays. Here, we report optimization of a flow cytometry-based method utilizing a biotinylated β-AR ligand alprenolol as a probe and use of this method to quantify relative receptor expression in healthy controls (HC). Quantum™ MESF beads were used for quantification in absolute fluorescence units. The probe was chemically modified by adding a spacer moiety between biotin and alprenolol to stabilize receptor binding, thus preventing binding decay. Testing of three different standard cell fixation and permeabilization methods (formaldehyde fixation and saponin, Tween-20, or Triton-X 100 permeabilization) showed that the formaldehyde/Triton-X 100 method yielded the best results. β-AR expression was significantly higher in granulocytes compared to mononuclear cells. These data show that flow cytometric quantification of relative β-AR expression in circulating leukocytes is a suitable technology for large-scale clinical application. © 2018 International Society for Advancement of Cytometry."	"Accumulating evidence shows a causative role for the bone marrow (BM) in the genesis and progression of pulmonary hypertension (PH). Engraftment of BM hematopoietic stem cells from PH patients to mice reproduces the cardiopulmonary pathology of PH. However, it is unknown whether healthy BM can prevent the development of right heart disease. Caveolin-1-deficient (CAV-1 KO) mice develop cardiopulmonary disease with manifestations resembling PH, including elevated right ventricular (RV) systolic pressure (RVSP), RV hypertrophy, and pulmonary endothelial proliferative disease. Here, we hypothesize that engraftment of healthy BM to CAV-1 KO mice will prevent pulmonary vascular remodeling and development of the cardiopulmonary disease. CAV-1 KO mice and wild-type (WT) mice underwent transplantation with WT or CAV-1 KO BM. Hematopoietic differentiation was analyzed by flow cytometry. Pulmonary endothelial remodeling was quantified by CD31 image analysis. RVSP and RV cardiomyocyte area or Fulton's index were used to analyze RV hypertrophy. Maladaptive RV hypertrophy was determined by quantification of RV fibrosis. Transplantation of CAV-1 KO BM into healthy recipient WT mice led to elevation of RVSP, RV hypertrophy, and pulmonary endothelial remodeling. Reconstitution of CAV-1 KO with WT BM prevented spontaneous development of PH, including elevation of RVSP and maladaptive RV hypertrophy, but not pulmonary endothelial remodeling. Healthy BM has a protective role in the right ventricle independent of pulmonary vascular disease."	"Current dogma is that pathological hypertrophy of the right ventricle is a direct consequence of pulmonary vascular remodeling. However, progression of right ventricle dysfunction is not always lung-dependent. Increased afterload caused by pulmonary vascular remodeling initiates the right ventricle hypertrophy, but determinants leading to adaptive or maladaptive hypertrophy and failure remain unknown. Ischemia in a hypertrophic right ventricle may directly contribute to right heart failure. Rapidly enlarging cardiomyocytes switch from aerobic to anaerobic energy generation resulting in cell growth under relatively hypoxic conditions. Cardiac muscle reacts to an increased afterload by over-activation of the sympathetic system and uncoupling and downregulation of β-adrenergic receptors. Recent studies suggest that β blocker therapy in PH is safe, well tolerated, and preserves right ventricle function and cardiac output by reducing right ventricular glycolysis. Fibrosis, an evolutionary conserved process in host defense and wound healing, is dysregulated in maladaptive cardiac tissue contributing directly to right ventricle failure. Despite several mechanisms having been suggested in right heart disease, the causes of maladaptive cardiac remodeling remain unknown and require further research."	"Pulmonary arterial hypertension (PAH) is a heterogeneous disease characterized by severe angiogenic remodeling of the pulmonary artery wall and right ventricular hypertrophy. Thus, there is an increasing need for novel biomarkers to dissect disease heterogeneity, and predict treatment response. Although β-adrenergic receptor (βAR) dysfunction is well documented in left heart disease while endothelial cell-derived microparticles (Ec-MPs) are established biomarkers of angiogenic remodeling, methods for easy large clinical cohort analysis of these biomarkers are currently absent. Here we describe flow cytometric methods for quantification of βAR density on circulating white blood cells (WBC) and Ec-MPs in urine samples that can be used as potential biomarkers of right heart failure in PAH. Biotinylated β-blocker alprenolol was synthesized and validated as a βAR specific probe that was combined with immunophenotyping to quantify βAR density in circulating WBC subsets. Ec-MPs obtained from urine samples were stained for annexin-V and CD144, and analyzed by a micro flow cytometer. Flow cytometric detection of alprenolol showed that βAR density was decreased in most WBC subsets in PAH samples compared to healthy controls. Ec-MPs in urine was increased in PAH compared to controls. Furthermore, there was a direct correlation between Ec-MPs and Tricuspid annular plane systolic excursion (TAPSE) in PAH patients. Therefore, flow cytometric quantification of peripheral blood cell βAR density and urinary Ec-MPs may be useful as potential biomarkers of right ventricular function in PAH. "	"Angiogenesis is closely linked to and precedes eosinophilic infiltration in asthma. Eosinophils are recruited into the airway by chemoattractant eotaxins, which are expressed by endothelial cells, smooth muscles cells, epithelial cells, and hematopoietic cells. We hypothesized that bone marrow-derived proangiogenic progenitor cells that contain eotaxins contribute to the initiation of angiogenesis and inflammation in asthma. Whole-lung allergen challenge of atopic asthma patients revealed vascular activation occurs within hours of challenge and before airway inflammation. The eotaxin receptor CCR3 was expressed at high levels on submucosal endothelial cells in patients and a murine model of asthma. Ex vivo exposure of murine endothelial cells to eotaxins induced migration and angiogenesis. In mechanistic studies, wild-type mice transplanted with eotaxin-1/2-deficient bone marrow had markedly less angiogenesis and inflammation in an atopic asthma model, whereas adoptive transfer of proangiogenic progenitor cells from wild-type mice in an atopic asthma model into the eotaxin-1/2-deficient mice led to angiogenesis and airway inflammation. The findings indicate that Th2-promoting hematopoietic progenitor cells are rapidly recruited to the lung upon allergen exposure and release eotaxins that coordinately activate endothelial cells, angiogenesis, and airway inflammation. "	"Pulmonary arterial hypertension (PAH) is a progressive disease characterized by severe remodeling of the pulmonary artery resulting in increased pulmonary artery pressure and right ventricular hypertrophy and, ultimately, failure. Bone marrow-derived progenitor cells play a critical role in vascular homeostasis and have been shown to be involved in the pathogenesis of PAH. A proliferation of c-Kit(+) hematopoietic progenitors and mast cells has been noted in the remodeled vessels in PAH. Imatinib, a tyrosine kinase inhibitor that targets c-Kit, has been shown to be beneficial for patients with PAH. Here we hypothesize that the clinical benefit of imatinib in PAH could be related to c-Kit inhibition of progenitor cell mobilization and maturation into mast cells. As a corollary to the phase 3 study using imatinib in PAH, blood samples were collected from 12 patients prior to starting study drug (baseline) and while on treatment at weeks 4 and 24. Eight were randomized to imatinib and 4 to placebo. Circulating c-Kit(+) and CD34(+)CD133(+) hematopoietic progenitors as well as biomarkers of mast cell numbers and activation were measured. Circulating CD34(+)CD133(+) and c-Kit(+) progenitor cells as well as c-Kit(+)/CD34(+)CD133(+) decreased with imatinib therapy (all P &lt; 0.05). In addition, total tryptase, a marker of mast cell load, dropped with imatinib therapy (P = 0.02) and was related to pulmonary vascular resistance (R = 0.7, P = 0.02). The findings support c-Kit inhibition as a potential mechanism of action of imatinib in PAH and suggest that tryptase is a potential biomarker of response to therapy. "
+"Baker, Ken"	"Neurosciences"	30061053	27151601	22661933	20816822	20059997	18091226	17078088	16234691	15611943	15269959	"Many traumatic brain injury (TBI) survivors live with persistent disability from chronic motor deficits despite contemporary rehabilitation services, underscoring the need for novel treatment. We have previously shown that deep brain stimulation (DBS) of the lateral cerebellar nucleus (LCN) can enhance post-stroke motor recovery and increase the expression of markers of long-term potentiation in perilesional cerebral cortex. We hypothesize that a similar beneficial effect will be for motor deficits induced by unilateral fluid percussion injury (FPI) in rodents through long-term potentiation- and anti-inflammatory based mechanisms. Male Long Evans rats with a DBS macroelectrode in the LCN underwent FPI over contralateral primary motor cortex. After 4 weeks of spontaneous recovery, DBS treatment was applied for 4 weeks, with the pasta matrix, cylinder, and horizontal ladder tests used to evaluate motor performance. All animals were euthanized and tissue harvested for further analysis by histology, immunohistochemistry, RNA microarray assay and Western Blot. LCN DBS-treated animals experienced a significantly greater rate of motor recovery than untreated surgical controls, with treated animals showing enhanced expression of RNA and protein for excitability related genes, suppressed expression of pro-inflammatory genes, suppressed microglial and astrocytic activation, but proliferation of c-fos positive cells. Finally, our data suggest a possible role for anti-apoptotic effects with LCN DBS. LCN DBS enhanced the motor recovery following TBI, possibly by elevating the neuronal excitability at the perilesional area and mediating anti-apoptotic and anti-inflammatory effects."	"Novel deep brain stimulation (DBS) paradigms are being explored in an effort to further optimize therapeutic outcome for patients with Parkinson's disease (PD). One approach, termed 'Coordinated Reset' (CR) DBS, was developed to target pathological oscillatory network activity. with desynchronizing effects and associated therapeutic benefit hypothesized to endure beyond cessation of stimulus delivery. To characterize the acute and carry-over effects of low-intensity CR DBS versus traditional DBS (tDBS) in the region of the subthalamic nucleus (STN). A within-subject, block treatment design involving the 1-methyl-4-phenyl-1,2,3,6-tetrahydropyridine (MPTP) non-human primate model of parkinsonism was used. Each treatment block consisted of five days of daily DBS delivery followed by a one week minimum post-treatment observation window. Motor behavior was quantified using a modified rating scale for both animals combined with an objective, upper-extremity reach task in one animal. Both animals demonstrated significant motor improvements during acute tDBS; however, within-session and post-treatment carry-over was limited. Acute motor improvements were also observed in response to low-intensity CR DBS; however, both within- and between-session therapeutic carry-over enhanced progressively following each daily treatment. Moreover, in contrast to tDBS, five consecutive days of CR DBS treatment yielded carry-over benefits that persisted for up to two weeks without additional intervention. Notably, the magnitude and time-course of CR DBS' effects on each animal varied with daily dose-duration, pointing to possible interaction effects involving baseline parkinsonian severity. Our results support the therapeutic promise of CR DBS for PD, including its potential to induce carryover while reducing both side effect risk and hardware power consumption."	"Stroke remains the leading cause for long-term motor impairment in the industrialized world. New techniques are needed to improve outcomes. To propose chronic electrical stimulation of the dentatothalamocortical pathway as a method for enhancing cortical excitability and improving motor recovery following stroke. In previous studies, motor evoked potentials were derived from intracortical microstimulation and used to index cortical excitability in rats undergoing continuous, asynchronous deep cerebellar stimulation. In a separate set of experiments, the effect of chronic deep cerebellar stimulation on motor recovery was tested in rats following large ischemic strokes. Deep cerebellar stimulation modulated cortical excitability in a frequency-dependent fashion. Beta band stimulation yielded sustained increment in excitability and was associated with enhanced motor recovery compared to sham stimulation. Chronic deep cerebellar stimulation enhances recovery of motor function following large ischemic strokes in the rat, an effect that may be associated with increased cortical excitability. Given that deep brain stimulation is already a well established method, this new approach to motor recovery may be a viable option for human translation in stroke rehabilitation."	"The cerebral cortex is tightly and reciprocally linked to the cerebellum and the ascending dentato-thalalmo-cortical pathway influences widespread cortical regions. Using a rodent model of middle cerebral artery stroke, we showed previously that chronic, 20 Hz stimulation of the contralateral lateral cerebellar nucleus (LCN) improved motor recovery, while 50 Hz stimulation did not. Using motor evoked potentials (MEP) elicited by intracortical microstimulation, we now show the effect of LCN stimulation on motor cortex excitability as a function of pulse frequency in propofol-anesthetized rats. MEPs were recorded serially, at 15-s intervals, with cerebellar stimulation delivered in 10-min blocks at rates of 20, 30, 40, 50 or 100 Hz. Stimulation at 20, 30, 40 or 50 Hz enhanced the average MEP response across the block, with the maximal overall increase observed during 30 Hz stimulation. However, the effect varied as a function of both repeated trials within the block and LCN stimulation frequency, such that 40 Hz and 50 Hz stimulation showed a reduced effect over time. Stimulation at 100 Hz produced a transient increase in MEP amplitude in some animals; however the overall effect across the block was a trend towards reduced cortical excitability. These results suggest that direct stimulation of the LCN can yield frequency-dependent changes in cortical excitability and may provide a therapeutic approach to modulating cortical activity for the treatment of strokes or other focal cortical lesions, movement disorders and epilepsy."	"Ablation or deep brain stimulation in the internal segment of the globus pallidus (GPi) is an effective therapy for the treatment of Parkinson's disease (PD). Yet many patients receive only partial benefit, including varying levels of improvement across different body regions, which may relate to a differential effect of GPi surgery on the different body regions. Unfortunately, our understanding of the somatotopic organization of human GPi is based on a small number of studies with limited sample sizes, including several based upon only a single recording track or plane. To fully address the three-dimensional somatotopic organization of GPi, we examined the receptive field properties of pallidal neurons in a large cohort of patients undergoing stereotactic surgery. The response of neurons to active and passive movements of the limbs and orofacial structures was determined, using a minimum of three tracks across at least two medial-lateral planes. Neurons (3183) were evaluated from 299 patients, of which 1972 (62%) were modulated by sensorimotor manipulation. Of these, 1767 responded to a single, contralateral body region, with the remaining 205 responding to multiple and/or ipsilateral body regions. Leg-related neurons were found dorsal, medial and anterior to arm-related neurons, while arm-related neurons were dorsal and lateral to orofacial-related neurons. This study provides a more detailed map of individual body regions as well as specific joints within each region and provides a potential explanation for the differential effect of lesions or DBS of the GPi on different body parts in patients undergoing surgical treatment of movement disorders."	"To demonstrate the pattern of activation associated with electrical stimulation through bilateral deep brain stimulation electrodes placed within the anterior limb of the internal capsule to the level of the ventral striatum for treatment of obsessive-compulsive disorder. A 44-year-old man with a 26-year history of obsessive-compulsive disorder underwent functional magnetic resonance imaging (fMRI) and deep brain stimulation-evoked cortical potential testing after bilateral implantation of deep brain stimulation leads. Stimulation was delivered independently through the distal two contacts of each percutaneously extended lead using an external pulse generator. On postoperative Day 2, we used a 3-Tesla magnetic resonance system to measure changes in the fMRI blood oxygen level-dependent signal using stimulation parameters that were predetermined to demonstrate behavioral effects. All studies were well tolerated. Trial stimulations performed intraoperatively as well as on postsurgical Day 1 were associated with acutely elevated mood and reduced anxiety. Although the benefit achieved acutely was relatively symmetric between the bilaterally placed leads, follow-up programming showed a clear advantage to right-sided stimulation. Three of the four fMRI trials demonstrated good activation, with the fourth being moderately corrupted by motion artifact. The beneficial effects observed with right-sided stimulation were associated with activation of the ipsilateral head of the caudate, medial thalamus, and anterior cingulate cortex as well as the contralateral cerebellum. The distribution of the cortical evoked potentials was consistent with the locus of cortical activation observed with fMRI. High-frequency stimulation via a lead placed in the anterior limb of the internal capsule induced widespread hemodynamic changes at both the cortical and subcortical levels including areas typically associated with the pathogenesis of obsessive-compulsive disorder."	"To compare the MRI-related heating per unit of specific absorption rate (SAR) profile of a conductive implant between two 1.5-Tesla/64 MHz MR systems using a transmit/receive (t/r) head coil configuration. Deep brain stimulation (DBS) leads were configured within a gel-filled phantom of the human head and torso. Temperature variation at each of four contacts of the bilaterally-placed leads was monitored using fluoroptic thermometry. MRI was performed using the t/r head coils of two different-generation 1.5-Tesla MR systems from the same manufacturer. Temperature changes were normalized to SAR values for the head (DeltaT/SAR-H), and the slope of this DeltaT/SAR-H by time relationship was compared between the two scanners. The DeltaT/SAR-H for the implant ranged from 3.5 to 5.5 times higher on one MR system as compared to the other (P &lt; 0.01) depending on the measurement site. The findings support previous observations that console-reported SAR does not constitute a reliable index of heating for elongated, conductive implants, such as the DBS hardware system tested. In contrast to our previous findings using a t/r body coil, the data presented here reveal marked differences between two MR systems using t/r head coils (the coil configuration was consistent with the implant manufacturer's imaging guidelines). J. Magn. Reson. Imaging 2006. (c) 2006 Wiley-Liss, Inc."	"To evaluate the ability of a lead management device to reduce magnetic resonance imaging (MRI)-related heating of deep brain stimulation (DBS) leads and thereby to decrease the risks of exposing patients with these implants to MRI procedures. Experiments were performed using the Activa series (Medtronic, Inc., Minneapolis, MN) DBS systems in an in vitro, gelled-saline head and torso phantom. Temperature change was recorded using fluoroptic thermometry during MRI performed using a transmit-and-receive radiofrequency body coil at 1.5 T and a transmit-and-receive radiofrequency head coil at 3 T. A cranial model placed in the phantom was used to test a custom-designed burr hole device that permitted the placement of small-diameter, concentric loops around the burr hole at the DBS lead as it exited the cranium. A total of 41 scans were performed, with absolute temperature changes ranging from 0.8 to 10.3 degrees C. Depending on the MRI system tested and the side of the phantom on which the hardware was placed, loop placement resulted in reductions in temperature rise of 41 to 74%. The effect was linearly related to the number of loops formed (P &lt; 0.01) over the range tested (0-2.75 loops). Small, concentric loops placed around the burr hole seem to reduce MRI-related heating for these implants. Although the mechanism is still not fully understood, a device such as that used in the present study could permit a wider range of clinical scanning sequences to be used at 1.5 and 3 T in patients with DBS implants, in addition to increasing the margin of safety for the patient."	"To evaluate magnetic field interactions at 1.5- and 3-Tesla for implantable pulse generators (IPGs) and radiofrequency (RF) receivers used for implantable neurostimulation systems. Measurements of magnetically induced displacement force and torque were determined for 10 devices (seven IPGs, three RF receivers) used for neurostimulation systems. Displacement force and torque were assessed at various positions in 1.5- and 3-Tesla MR systems using standardized techniques. Four IPGs exhibited force ratios (magnetic attraction force/device weight) greater than 1.0, with the overall magnitude of the force ratio increasing significantly when comparing the 1.5-Tesla to the 3-Tesla MR system. Of the seven IPGs tested, one exhibited a torque ratio (magnetic induced torque/product of the device weight and length) greater than 1.0. The RF receivers displayed relatively strong magnetic field interactions at both 1.5- and 3-Tesla, exhibiting force and torque ratios greater than 1.0. The neurostimulation implants tested exhibited varying degrees of magnetic field interactions, with four of the seven IPGs and the three RF receivers exhibiting at least one MR-induced force or torque value greater than the effect of gravity. These findings have important implications for patients with these implants who are referred for MRI examinations."	"To compare the magnetic resonance imaging (MRI)-related heating per unit of whole body averaged specific absorption rate (SAR) of a conductive implant exposed to two different 1.5-Tesla/64 MHz MR systems. Temperature changes at the electrode contacts of a deep brain stimulation lead were measured using fluoroptic thermometry. The leads were placed in a typical surgical implant configuration within a gel-filled phantom of the human head and torso. MRI was performed using two different transmit/receive body coils on two different generation 1.5-Tesla MR systems from the same manufacturer. Temperature changes were normalized to whole body averaged SAR values and compared between the two scanners. Depending on the landmark location, the normalized temperature change for the implant was significantly higher on one MR system compared to the other (P &lt; 0.001). The findings revealed marked differences across two MR systems in the level of radiofrequency (RF)-induced temperature changes per unit of whole body SAR for a conductive implant. Thus, these data suggest that using SAR to guide MR safety recommendations for neurostimulation systems or other similar implants across different MR systems is unreliable and, therefore, potentially dangerous. Better, more universal, measures are required in order to ensure patient safety."
+"Baldwin, William"	"Inflammation and Immunity"	30903736	28614792	26575854	25582188	25160697	25145937	22789623	21937238	21157344	20689436	"IgG and albumin are the most abundant proteins in the circulation and have the longest half-lives. These properties are due to a unique receptor, the neonatal Fc receptor (FcRn). Although FcRn is named for its function of transferring IgG across the placenta from maternal to fetal circulation, FcRn functions throughout life to maintain IgG and albumin concentrations. FcRn protects IgG and albumin from intracellular degradation and recycles them back into the circulation. Clinical trials have confirmed that pathogenic antibodies can be depleted by blocking this homeostatic function of FcRn. Moreover, understanding the molecular interactions between IgG and FcRn has resulted in the design of therapeutic monoclonal antibodies with more efficacious pharmacokinetics. As a result of genetic engineering these monoclonals can be delivered at lower doses and at longer intervals. More recent findings have demonstrated that FcRn enhances phagocytosis by neutrophils, immune complex clearance by podocytes and antigen presentation by dendritic cells, macrophages, and B cells. This minireview highlights the relevance of FcRn to transplantation."	"Adiponectin is a pleiotropic cytokine with diverse immunomodulatory effects on macrophages and lymphocytes. In the current paradigm, lymphocytes and macrophages respond to adiponectin that is produced by adipocytes and other parenchymal cells. Using a model of chronic arterial inflammation in cardiac transplants, we found that T cells derived from the recipient migrate to the heart and produce adiponectin locally. The evidence that T cells produce significant amounts of adiponectin is based on 3 experimental approaches. First, CD4+ T cells isolated from the blood and spleen after cardiac transplantation express mRNA for adiponectin. Second, reconstitution of T cell-deficient recipients with transgenic CD4+ T cells that express receptors for donor antigens results in arterial infiltrates containing T cells and increased mRNA expression for adiponectin in cardiac transplants. Third, CD4+ T cells isolated from the allograft secrete adiponectin in vitro. Taken together, these data indicate that adiponectin-competent cells originating in the recipient migrate into the transplant. Establishing T cells as a source of adiponectin provides a new dimension, to our knowledge, to the modulatory effects of adiponectin on immune responses."	"Antibody-mediated rejection is responsible for up to half of acute rejection episodes in kidney transplant patients and more than half of late graft failures. Antibodies cause acute graft abnormalities that are distinct from T cell-mediated rejection and at later times posttransplant, a distinct pathologic lesion is associated with capillary basement membrane multilayering and glomerulopathy. Despite the importance of donor-reactive antibodies as the leading cause of kidney graft failure, mechanisms underlying antibody-mediated acute and chronic kidney graft injury are poorly understood. Here, we review recent insights provided from clinical studies as well as from animal models that may help to identify new targets for therapy. Studies of biopsies from kidney grafts in patients with donor-specific antibody versus those without have utilized analysis of pathologic lesions and gene expression to identify the distinct characteristics of antibody-mediated rejection. These analyses have indicated the presence of natural killer cells and their activation during antibody-mediated rejection. The impact of studies of antibody-mediated allograft injury in animal models have lagged behind these clinical studies, but have been useful in testing the activation of innate immune components within allografts in the presence of donor-specific antibodies. Most insights into processes of antibody-mediated rejection of kidney grafts have come from carefully designed clinical studies. However, several new mouse models of antibody-mediated kidney allograft rejection may replicate the abnormalities observed in clinical kidney grafts and may be useful in directly testing mechanisms that underlie acute and chronic antibody-mediated graft injury."	"Acute and chronic rejection impact distinct compartments of cardiac allografts. Intramyocardial mononuclear cell infiltrates define acute rejection, whereas chronic rejection affects large arteries. Hearts transplanted from male to female C57BL/6 mice undergo acute rejection with interstitial infiltrates at 2 weeks that resolve by 6 weeks when large arteries develop arteriopathy. These processes are dependent on T cells because no infiltrates developed in T cell-deficient mice and transfer of CD4 T cells restored T cell as well as macrophage infiltrates and ultimately neointima formation. Markers of inflammatory macrophages were up-regulated in the interstitium acutely and decreased as markers of wound healing macrophages increased chronically. Programmed cell death protein, a negative costimulator, and its ligand PDL1 were up-regulated in the interstitium during resolution of acute rejection. Blocking PDL1:PD1 interactions in the acute phase increased interstitial T cell infiltrates. Toll-like receptor (TLR) 4 and its endogenous ligand hyaluronan were increased in arteries with neointimal expansion. Injection of hyaluronan fragments increased intragraft production of chemokines. Our data indicate that negative costimulatory pathways are critical for the resolution of acute interstitial infiltrates. In the arterial compartment recognition of endogenous ligands including hyaluronan by the innate TLRs may support the progression of arteriopathy. "	"Experimental models have contributed enormously to basic immunology. However, the use of reductionist experiments has produced results that are not always successfully translated into the clinic. Recently, incorporation of more realistic clinical parameters in experimental designs has produced new insights relevant to cardiac transplantation. Experiments in mice have provided crucial insights into the concept that T cell responses to pathogens generate memory cells with cross-reactive specificities for histocompatibility antigens. These memory T cells are resistant to current immunosuppressive strategies. Memory T cells infiltrate grafts within hours after transplantation, and grafts subjected to clinically relevant periods of cold ischemia are more susceptible to injury by this cellular infiltrate. Early immune responses now can be investigated with improved 'humanized' mice. Mice with multiple knock-in genes for human cytokines support development of human monocytes, macrophages and natural killer cells in increased numbers and with better function. Better and more clinically relevant experimental designs are providing animal models tailored to address clinic exigencies."	"Antibody-mediated rejection is a major complication in renal transplantation. The pathologic manifestations of acute antibody-mediated rejection that has progressed to functional impairment of a renal transplant have been defined in clinical biopsy specimens. However, the initial stages of the process are difficult to resolve with the unavoidable variables of clinical studies. We devised a model of renal transplantation to elucidate the initial stages of humoral rejection. Kidneys were orthotopically allografted to immunodeficient mice. After perioperative inflammation subsided, donor-specific alloantibodies were passively transferred to the recipient. Within 1 hour after a single transfer of antibodies, C4d was deposited diffusely on capillaries, and von Willebrand factor released from endothelial cells coated intravascular platelet aggregates. Platelet-transported inflammatory mediators platelet factor 4 and serotonin accumulated in the graft at 100- to 1000-fold higher concentrations compared with other platelet-transported chemokines. Activated platelets that expressed P-selectin attached to vascular endothelium and macrophages. These intragraft inflammatory changes were accompanied by evidence of acute endothelial injury. Repeated transfers of alloantibodies over 1 week sustained high levels of platelet factor 4 and serotonin. Platelet depletion decreased platelet mediators and altered the accumulation of macrophages. These data indicate that platelets augment early inflammation in response to donor-specific antibodies and that platelet-derived mediators may be markers of evolving alloantibody responses. "	"The early histological studies of organ allografts noted platelets attached to vascular endothelium. Platelets adhere to vessels before any morphological evidence of endothelial injury. Subsequently, in vitro and in vivo experiments have demonstrated that alloantibodies can induce exocytosis of von Willebrand factor and P-selectin from endothelial cells and attachment of platelets within minutes. Platelets also adhere to and stimulate leukocytes. These interactions are increased by complement activation. After attachment platelets degranulate, releasing preformed mediators. Some chemokines stored together in platelet granules can form heteromers with synergistic functions. Heteromers containing platelet factor 4 (PF4; CXCL4) are specific to platelets and provide insights to unique platelet functions and opportunities for therapeutic intervention."	"After many years of debate, there is now general agreement that B cells can participate in the immune response to cardiac transplants. Acute antibody-mediated rejection (AMR) is the best defined manifestation of B cell responses, but diagnostic and mechanistic questions still surround AMR. Many complement dependent mechanisms of antibody-mediated injury have been elucidated. C5 has become a therapeutic target that may not just truncate complement activation, but also may tip the balance away from inflammation by altering macrophage function. Additional complement independent effects have been identified. These may escape diagnosis and progress to chronic graft injury. The function of B cell infiltrates in cardiac transplants is even more enigmatic. Nodular endocardial infiltrates that contain B cells and plasma cells have been described in protocol biopsies of cardiac transplants for decades, but an understanding of their significance is still evolving based on more critical morphological and molecular evaluation of these infiltrates. A range of infiltrates containing B cells has also been described in the epicardial fat in transplants with advanced chronic rejection. B cells have been observed in endocardial and epicardial tertiary lymphoid nodules, but their impact on antigen presentation or antibody production remains to be determined. Experimental models in small and large animals suggest that B cells could be essential for the formation of lymphoid nodules through cytokine production. Similarly, the role of proinflammatory adipokines in the formation or function of epicardial lymphoid nodules has not been studied. These clinical observations provide critical questions to be addressed in experimental models."	"Over the last decade there has been mounting experimental data demonstrating that platelets contribute to acute vascular inflammation and atherosclerosis. This review focuses on recent findings that link platelets to inflammatory responses of relevance to transplants. Although it has been known that platelets modify vascular inflammation by secretion of soluble mediators and release of microparticles, new aspects of these mechanisms are being defined. For example, platelet-derived CCL5 not only functions in homomers, but also forms more potent heteromers with platelet factor 4 (PF4; CXCL4). This heteromer formation can be inhibited with small molecules. New findings also demonstrate heterologous interactions of platelet microparticles with leukocytes that may increase their range of impact. By attaching to neutrophils, platelet microparticles appear to migrate out of blood vessels and into other compartments where they stimulate secretion of cytokines. Contact of platelets with extracellular matrix also can result in cleavage of hyaluronan into fragments that serve as an endogenous danger signal. Recent findings have expanded the range of interactions by which platelets can modify innate and adaptive immune responses to transplants."	"Cardiac allograft vasculopathy (CAV) is still a major cause of chronic graft failure. CAV develops in the coronary arteries as a diffuse, concentric expansion of the intima in conjunction with inflammation and fibrosis of the adventitia. We review recent publications that could link metabolic and immunologic risk factors for CAV.A concept is offered that periarterial adipocytes may provide proinflammatory cytokines that augment immune injury of the coronary arteries. Clinical and experimental evidence indicate that some alloantibodies and autoantibodies are associated with CAV. Limited data are available on the expression of target antigens on coronary arteries at different times after transplantation. Perivascular adipose tissue is an abundant source of IL-6, IL-8 and MCP-1. Adding to the inflammatory bias, perivascular adipocytes secrete less of the anti-inflammatory adiponectin in comparison to other types of fat. Adiponectin modulates expression of adhesion molecules on the vascular endothelium. It also decreases neointimal formation in arteries following mechanical endovascular injury. Alterations in the balance between proinflammatory and anti-inflammatory cytokines secreted by perivascular fat have been implicated in atherosclerosis and restenosis. This imbalance may also augment the immune responses in the coronary arteries of transplanted hearts."
+"Baltan, Selva"	"Neurosciences"	31010535	30135960	30125643	29891729	26407763	30385717	27683897	25034458	23881453	23050648	NA	"Mechanisms of ischemic preconditioning have been extensively studied in gray matter. However, an ischemic episode affects both the gray matter (GM) and white matter (WM) portions of the brain. Inhibition of mitochondrial fission is one of the mechanisms of preconditioning neuronal cell bodies against ischemia. Although axons are anatomical extensions of neuronal cell bodies, injury mechanisms differ between GM and WM. Indeed, axonal dysfunction is responsible for much of the disability associated with clinical deficits observed after stroke; however, the signaling process underlying preconditioning remains unexplored in axons. Using mouse optic nerve, which is a pure isolated WM tract, we show that mitochondria in myelinated axons undergo rapid and profuse fission during oxygen glucose deprivation (OGD) that is mediated by translocation of cytoplasmic Dynamin Related Protein-1 (Drp-1) to mitochondria. OGD-induced mitochondrial fission correlates with reduced mitochondrial motility and loss of axon function. Mitochondrial fragmentation and loss of motility become permanent during the recovery period. Inhibiting mitochondrial fission by administering mitochondrial division inhibitor-1 (Mdivi-1) during OGD preserves mitochondrial shape and motility and promotes axon function recovery. In contrast, preconditioning WM by applying Mdivi-1 only before OGD fails to conserve mitochondrial shape or motility and fails to benefit axon function. Our findings suggest that inhibition of mitochondrial fission during ischemia promotes axon function recovery, but is not sufficient to precondition WM against ischemia. These results raise caution in that approaches to preconditioning neuronal cell bodies may not successfully translate into functional improvement following ischemia."	"Strokes occur predominantly in the elderly and white matter (WM) is injured in most strokes, contributing to the disability associated with clinical deficits. Casein kinase 2 (CK2) is expressed in neuronal cells and was reported to be neuroprotective during cerebral ischemia. Recently, we reported that CK2 is abundantly expressed by glial cells and myelin. However, in contrast to its role in cerebral (gray matter) ischemia, CK2 activation during ischemia mediated WM injury via the CDK5 and AKT/GSK3β signaling pathways (Bastian et al., 2018). Subsequently, CK2 inhibition using the small molecule inhibitor CX-4945 correlated with preservation of oligodendrocytes as well as conservation of axon structure and axonal mitochondria, leading to improved functional recovery. Notably, CK2 inhibition promoted WM function when applied before or after ischemic injury by differentially regulating the CDK5 and AKT/GSK3β pathways. Specifically, blockade of the active conformation of AKT conferred post-ischemic protection to young, aging, and old WM, suggesting a common therapeutic target across age groups. CK2 inhibitors are currently being used in clinical trials for cancer patients; therefore, it is important to consider the potential benefits of CK2 inhibitors during an ischemic attack."	"White matter (WM) damage following a stroke underlies a majority of the neurological disability that is subsequently observed. Although ischemic injury mechanisms are age-dependent, conserving axonal mitochondria provides consistent post-ischemic protection to young and aging WM. Nitric oxide synthase (NOS) activation is a major cause of oxidative and mitochondrial injury in gray matter during ischemia; therefore, we used a pure WM tract, isolated male mouse optic nerve, to investigate whether NOS inhibition provides post-ischemic functional recovery by preserving mitochondria. We show that pan-NOS inhibition applied before oxygen-glucose deprivation (OGD) promotes functional recovery of young and aging axons and preserves WM cellular architecture. This protection correlates with reduced nitric oxide (NO) generation, restored glutathione production, preserved axonal mitochondria and oligodendrocytes, and preserved ATP levels. Pan-NOS inhibition provided post-ischemic protection to only young axons, whereas selective inhibition of NOS3 conferred post-ischemic protection to both young and aging axons. Concurrently, genetic deletion of NOS3 conferred long-lasting protection to young axons against ischemia. OGD upregulated NOS3 levels in astrocytes, and we show for the first time that inhibition of NOS3 generation in glial cells prevents axonal mitochondrial fission and restores mitochondrial motility to confer protection to axons by preserving Miro-2 levels. Interestingly, NOS1 inhibition exerted post-ischemic protection selectively to aging axons, which feature age-dependent mechanisms of oxidative injury in WM. Our study provides the first evidence that inhibition of glial NOS activity confers long-lasting benefits to WM function and structure and suggests caution in defining the role of NO in cerebral ischemia at vascular and cellular levels.SIGNIFICANCE STATEMENT White matter (WM) injury during stroke is manifested as the subsequent neurological disability in surviving patients. Aging primarily impacts CNS WM and mechanisms of ischemic WM injury change with age. Nitric oxide is involved in various mitochondrial functions and we propose that inhibition of glia-specific nitric oxide synthase (NOS) isoforms promotes axon function recovery by preserving mitochondrial structure, function, integrity, and motility. Using electrophysiology and three-dimensional electron microscopy, we show that NOS3 inhibition provides a common target to improve young and aging axon function, whereas NOS1 inhibition selectively protects aging axons when applied after injury. This study provides the first evidence that inhibition of glial cell NOS activity confers long-lasting benefits to WM structure and function."	"Oligodendrocytes and axons are the main targets of an ischemic white matter injury and the resultant loss of axon function underlies the clinical disability in patients who survive a stroke. The cellular mechanisms of ischemic injury change as a function of age in concordance with age-mediated structural changes in white matter. Shorter periods of injury cause rapid and robust loss of axon function together with widespread oligodendrocyte death. While blockade of NMDA receptors fails to benefit axon function, removal of extracellular Ca<sup>2+</sup> during ischemia remarkably promotes axon function recovery in young white matter. However, these same approaches hinder axon function recovery and fail to protect oligodendrocytes in aging white matter. The obligatory GluN1 subunit of the NMDA receptor exhibits an age-specific expression pattern such that in young adult white matter, it is mostly localized on oligodendrocyte cell bodies, while in aging white matter, it is also observed on myelin processes. This age-dependent re-localization and redistribution pattern mimics GluN1 expression observed during development, but in reverse order. During development, GluN1 immunoreactivity traffics from astrocytes at postnatal day 4-11 (P4-11) to myelin processes at P12-18 and to oligodendrocytes cell bodies at P19-21. Although immature axons are more resistant to ischemia, blockade of NMDA receptors during ischemia at P4-11 and P12-18 worsens axon function recovery and fails to benefit axons at P19-21. Thus, age-specific expression patterns of NMDA receptor localization may seem to modulate the plasticity of oligodendrocytes and myelin in response to ischemia as a function of age in white matter. This article is part of the Special Issue entitled 'Oligodendrocytes in Health and Disease'."	"Glioblastoma (GBM) remains uniformly lethal, and despite a large accumulation of immune cells in the microenvironment, there is limited antitumor immune response. To overcome these challenges, a comprehensive understanding of GBM systemic immune response during disease progression is required. Here, we integrated multiparameter flow cytometry and mass cytometry TOF (CyTOF) analysis of patient blood to determine changes in the immune system among tumor types and over disease progression. Utilizing flow cytometry analysis in a cohort of 259 patients ranging from benign to malignant primary and metastatic brain tumors, we found that GBM patients had a significant elevation in myeloid-derived suppressor cells (MDSCs) in peripheral blood but not immunosuppressive Tregs. In GBM patient tissue, we found that increased MDSC levels in recurrent GBM portended poor prognosis. CyTOF analysis of peripheral blood from newly diagnosed GBM patients revealed that reduced MDSCs over time were accompanied by a concomitant increase in DCs. GBM patients with extended survival also had reduced MDSCs, similar to the levels of low-grade glioma (LGG) patients. Our findings provide a rationale for developing strategies to target MDSCs, which are elevated in GBM patients and predict poor prognosis."	"The impact of aging on CNS white matter (WM) is of general interest because the global effects of aging on myelinated nerve fibers are more complex and profound than those in cortical gray matter. It is important to distinguish between axonal changes created by normal aging and those caused by neurodegenerative diseases, including multiple sclerosis, stroke, glaucoma, Alzheimer's disease, and traumatic brain injury. Using three-dimensional electron microscopy, we show that in mouse optic nerve, which is a pure and fully myelinated WM tract, aging axons are larger, have thicker myelin, and are characterized by longer and thicker mitochondria, which are associated with altered levels of mitochondrial shaping proteins. These structural alterations in aging mitochondria correlate with lower ATP levels and increased generation of nitric oxide, protein nitration, and lipid peroxidation. Moreover, mitochondria-smooth endoplasmic reticulum interactions are compromised due to decreased associations and decreased levels of calnexin and calreticulin, suggesting a disruption in Ca(2+) homeostasis and defective unfolded protein responses in aging axons. Despite these age-related modifications, axon function is sustained in aging WM, which suggests that age-dependent changes do not lead to irreversible functional decline under normal conditions, as is observed in neurodegenerative diseases. Aging is a common risk factor for a number of neurodegenerative diseases, including stroke. Mitochondrial dysfunction and oxidative damage with age are hypothesized to increase risk for stroke. We compared axon-myelin-node-mitochondrion-smooth endoplasmic reticulum (SER) interactions in white matter obtained at 1 and 12 months. We show that aging axons have enlarged volume, thicker myelin, and elongated and thicker mitochondria. Furthermore, there are reduced SER connections to mitochondria that correlate with lower calnexin and calreticulin levels. Despite a prominent decrease in number, elongated aging mitochondria produce excessive stress markers with reduced ATP production. Because axons maintain function under these conditions, our study suggests that it is important to understand the process of normal brain aging to identify neurodegenerative changes."	"In the mammalian white matter, glycogen-derived lactate from astrocytes plays a critical role in supporting axon function using the astrocyte-neuron lactate transfer shuttle (ANLTS) system with specialized monocarboxylate transporters (MCTs). A rapid breakdown of glycogen to lactate during increased neuronal activity or low glucose conditions becomes essential to maintain axon function. Therefore astrocytes actively regulate their glycogen stores with respect to ambient glucose levels such that high ambient glucose upregulates glycogen and low levels of glucose depletes glycogen stores. Although lactate fully supports axon function in the absence of glucose and becomes a preferred energy metabolite when axons discharge at high frequency, it fails to benefit axon function during an ischemic episode in white matter. Emerging evidence implies a similar lactate transport system between oligodendrocytes and the axons they myelinate, suggesting another metabolic coupling pathway in white matter. Therefore the conditions that activate this lactate shuttle system and the signaling mechanisms that mediate activation of this system are of great interest. Future studies are expected to unravel the details of oligodendrocyte-axon lactate metabolic coupling to establish how white matter components metabolically cooperate and that lactate may be the universal metabolite to sustain CNS function. "	"Understanding how epigenetics influences the process and progress of a stroke could yield new targets and therapeutics for use in the clinic. Experimental evidence suggests that inhibitors of zinc-dependent histone deacetylases can protect neurons, axons, and associated glia from the devastating effects of oxygen and glucose deprivation. While the specific enzymes involved have yet to be clearly identified, there are hints from somewhat selective chemical inhibitors and also from the use of specific small hairpin RNAs to transiently knockdown protein expression. Neuroprotective mechanisms implicated thus far include the upregulation of extracellular glutamate clearance, inhibition of p53-mediated cell death, and maintenance of mitochondrial integrity. The histone deacetylases have distinct cellular and subcellular localizations, and discrete substrates. As a number of chemical inhibitors are already in clinical use for the treatment of cancer, repurposing for the stroke clinic should be expedited. "	"Aging increases the vulnerability of aging white matter to ischemic injury. Histone deacetylase (HDAC) inhibitors preserve young adult white matter structure and function during ischemia by conserving ATP and reducing excitotoxicity. In isolated optic nerve from 12-month-old mice, deprived of oxygen and glucose, we show that pan- and Class I-specific HDAC inhibitors promote functional recovery of axons. This protection correlates with preservation of axonal mitochondria. The cellular expression of HDAC 3 in the central nervous system (CNS), and HDAC 2 in optic nerve considerably changed with age, expanding to more cytoplasmic domains from nuclear compartments, suggesting that changes in glial cell protein acetylation may confer protection to aging axons. Our results indicate that manipulation of HDAC activities in glial cells may have a universal potential for stroke therapy across age groups."
+"Bao, Shideng"	"Cancer Biology"	29848664	27923907	27740621	26510911	25580734	24831540	24675569	23563177	23540695	22569092	"Glioblastoma (GBM) is the most lethal primary brain tumor and is highly resistant to current treatments. GBM harbors glioma stem cells (GSCs) that not only initiate and maintain malignant growth but also promote therapeutic resistance including radioresistance. Thus, targeting GSCs is critical for overcoming the resistance to improve GBM treatment. Because the bone marrow and X-linked (BMX) nonreceptor tyrosine kinase is preferentially up-regulated in GSCs relative to nonstem tumor cells and the BMX-mediated activation of the signal transducer and activator of transcription 3 (STAT3) is required for maintaining GSC self-renewal and tumorigenic potential, pharmacological inhibition of BMX may suppress GBM growth and reduce therapeutic resistance. We demonstrate that BMX inhibition by ibrutinib potently disrupts GSCs, suppresses GBM malignant growth, and effectively combines with radiotherapy. Ibrutinib markedly disrupts the BMX-mediated STAT3 activation in GSCs but shows minimal effect on neural progenitor cells (NPCs) lacking BMX expression. Mechanistically, BMX bypasses the suppressor of cytokine signaling 3 (SOCS3)-mediated inhibition of Janus kinase 2 (JAK2), whereas NPCs dampen the JAK2-mediated STAT3 activation via the negative regulation by SOCS3, providing a molecular basis for targeting BMX by ibrutinib to specifically eliminate GSCs while preserving NPCs. Our preclinical data suggest that repurposing ibrutinib for targeting GSCs could effectively control GBM tumor growth both as monotherapy and as adjuvant with conventional therapies."	"Glioblastoma is the most lethal brain tumor and harbors glioma stem cells (GSCs) with potent tumorigenic capacity. The function of GSCs in tumor propagation is maintained by several core transcriptional regulators including c-Myc. c-Myc protein is tightly regulated by posttranslational modification. However, the posttranslational regulatory mechanisms for c-Myc in GSCs have not been defined. In this study, we demonstrate that the deubiquitinase USP13 stabilizes c-Myc by antagonizing FBXL14-mediated ubiquitination to maintain GSC self-renewal and tumorigenic potential. USP13 was preferentially expressed in GSCs, and its depletion potently inhibited GSC proliferation and tumor growth by promoting c-Myc ubiquitination and degradation. In contrast, overexpression of the ubiquitin E3 ligase FBXL14 induced c-Myc degradation, promoted GSC differentiation, and inhibited tumor growth. Ectopic expression of the ubiquitin-insensitive mutant T58A-c-Myc rescued the effects caused by FBXL14 overexpression or USP13 disruption. These data suggest that USP13 and FBXL14 play opposing roles in the regulation of GSCs through reversible ubiquitination of c-Myc."	"Glioblastoma (GBM) is the most malignant and lethal brain tumor harboring glioma stem cells (GSCs) that promote tumor propagation and therapeutic resistance. GSCs preferentially express several critical cell surface molecules that regulate the pro-survival signaling for maintaining the stem cell-like phenotype. Tetraspanin CD9 has recently been reported as a GSC biomarker that is relevant to the GSC maintenance. However, the underlying molecular mechanisms of CD9 in maintaining GSC property remain elusive. Herein, we report that CD9 stabilizes the IL-6 receptor glycoprotein 130 (gp130) by preventing its ubiquitin-dependent lysosomal degradation to facilitate the STAT3 activation in GSCs. CD9 is preferentially expressed in GSCs of human GBM tumors. Mass spectrometry analysis identified gp130 as an interacting protein of CD9 in GSCs, which was confirmed by immunoprecipitation and immunofluorescent analyses. Disrupting CD9 or gp130 by shRNA significantly inhibited the self-renewal and promoted the differentiation of GSCs. Moreover, CD9 disruption markedly reduced gp130 protein levels and STAT3 activating phosphorylation in GSCs. CD9 stabilized gp130 by preventing its ubiquitin-dependent lysosomal degradation to promote the BMX-STAT3 signaling in GSCs. Importantly, targeting CD9 potently inhibited GSC tumor growth in vivo, while ectopic expression of the constitutively activated STAT3 (STAT3-C) restored the tumor growth impaired by CD9 disruption. Collectively, we uncovered a critical regulatory mechanism mediated by tetraspanin CD9 to maintain the stem cell-like property and tumorigenic potential of GSCs."	"Glioblastoma multiforme (GBM) is the most lethal brain tumor. Tumor relapse in GBM is inevitable despite maximal therapeutic interventions. Glioma stem cells (GSCs) have been found to be critical players in therapeutic resistance and tumor recurrence. Therapeutic drugs targeting GSCs may significantly improve GBM treatment. In this study, we demonstrated that arsenic trioxide (As2O3) effectively disrupted GSCs and inhibited tumor growth in the GSC-derived orthotopic xenografts by targeting the promyelocytic leukaemia (PML). As2O3 treatment induced rapid degradation of PML protein along with severe apoptosis in GSCs. Disruption of the endogenous PML recapitulated the inhibitory effects of As2O3 treatment on GSCs both in vitro and in orthotopic tumors. Importantly, As2O3 treatment dramatically reduced GSC population in the intracranial GBM xenografts and increased the survival of mice bearing the tumors. In addition, As2O3 treatment preferentially inhibited cell growth of GSCs but not matched non-stem tumor cells (NSTCs). Furthermore, As2O3 treatment or PML disruption potently diminished c-Myc protein levels through increased poly-ubiquitination and proteasome degradation of c-Myc. Our study indicated a potential implication of As2O3 in GBM treatment and highlighted the important role of PML/c-Myc axis in the maintenance of GSCs. "	"Tumour-associated macrophages (TAMs) are enriched in glioblastoma multiformes (GBMs) that contain glioma stem cells (GSCs) at the apex of their cellular hierarchy. The correlation between TAM density and glioma grade suggests a supportive role for TAMs in tumour progression. Here we interrogated the molecular link between GSCs and TAM recruitment in GBMs and demonstrated that GSCs secrete periostin (POSTN) to recruit TAMs. TAM density correlates with POSTN levels in human GBMs. Silencing POSTN in GSCs markedly reduced TAM density, inhibited tumour growth, and increased survival of mice bearing GSC-derived xenografts. We found that TAMs in GBMs are not brain-resident microglia, but mainly monocyte-derived macrophages from peripheral blood. Disrupting POSTN specifically attenuated the tumour-supportive M2 type of TAMs in xenografts. POSTN recruits TAMs through the integrin αvβ₃ as blocking this signalling by an RGD peptide inhibited TAM recruitment. Our findings highlight the possibility of improving GBM treatment by targeting POSTN-mediated TAM recruitment."	"Glioblastomas are highly lethal brain tumors containing tumor-propagating glioma stem cells (GSCs). The molecular mechanisms underlying the maintenance of the GSC phenotype are not fully defined. Here we demonstrate that the zinc finger and X-linked transcription factor (ZFX) maintains GSC self-renewal and tumorigenic potential by upregulating c-Myc expression. ZFX is differentially expressed in GSCs relative to non-stem glioma cells and neural progenitor cells. Disrupting ZFX by shRNA reduced c-Myc expression and potently inhibited GSC self-renewal and tumor growth. Ectopic expression of c-Myc to its endogenous level rescued the effects caused by ZFX disruption, supporting that ZFX controls GSC properties through c-Myc. Furthermore, ZFX binds to a specific sequence (GGGCCCCG) on the human c-Myc promoter to upregulate c-Myc expression. These data demonstrate that ZFX functions as a critical upstream regulator of c-Myc and plays essential roles in the maintenance of the GSC phenotype. This study also supports that c-Myc is a dominant driver linking self-renewal to malignancy."	"Glioblastoma multiforme (GBM) is the most lethal and aggressive type of primary brain malignancy. Failures of the traditional therapies in treating GBMs raise the urgent requirement to develop new approaches with more responsive targets. The phenomenon of the high infiltration of tumor-associated macrophages (TAMs) into GBMs has been observed for a long time. Regardless of the limited knowledge about TAMs, the high percentage of supportive TAM in GBM tumor mass makes it possible to be a good target for GBM treatment. In this review, we discussed the unique features of TAMs in GBMs, including their origin, the tumor-supportive properties, the secreted cytokines, and the relevant mechanisms. In addition, we tried to interpret the current understandings about the interplay between GBM cancer cells and TAMs. Finally, the translational studies of targeting TAMs were also described. "	"The promyelocytic leukemia (PML) protein, initially discovered as a part of the PML/retinoic acid receptor alpha fusion protein, has been found to be a critical player in oncogenesis and tumor progression. Multiple cellular activities, including DNA repair, alternative lengthening of telomeres, transcriptional control, apoptosis and senescence, are regulated by PML and its featured subcellular structure, the PML nuclear body. In correspondence with its role in many important life processes, PML mediates several complex downstream signaling pathways. The determinant function of PML in tumorigenesis and cancer progression raises the interest in its involvement in cancer stem cells (CSCs), a subpopulation of cancer cells that share properties with stem cells and are critical for tumor propagation. Recently, there are exciting discoveries concerning the requirement of PML in CSC maintenance. Growing evidences strongly suggest a positive role of PML in regulating CSCs in both hematopoietic cancers and solid tumors, whereas the underlying mechanisms may be different and remain elusive. Here we summarize and discuss the PML-mediated signaling pathways in cancers and their potential roles in regulating CSCs. "	"Glioblastomas (GBMs) are highly vascular and lethal brain tumors that display cellular hierarchies containing self-renewing tumorigenic glioma stem cells (GSCs). Because GSCs often reside in perivascular niches and may undergo mesenchymal differentiation, we interrogated GSC potential to generate vascular pericytes. Here, we show that GSCs give rise to pericytes to support vessel function and tumor growth. In vivo cell lineage tracing with constitutive and lineage-specific fluorescent reporters demonstrated that GSCs generate the majority of vascular pericytes. Selective elimination of GSC-derived pericytes disrupts the neovasculature and potently inhibits tumor growth. Analysis of human GBM specimens showed that most pericytes are derived from neoplastic cells. GSCs are recruited toward endothelial cells via the SDF-1/CXCR4 axis and are induced to become pericytes predominantly by transforming growth factor β. Thus, GSCs contribute to vascular pericytes that may actively remodel perivascular niches. Therapeutic targeting of GSC-derived pericytes may effectively block tumor progression and improve antiangiogenic therapy."	"REST/NRSF (the RE-1 silencing transcription factor or neuron-restrictive silencer factor) was originally identified as a transcriptional repressor of a number of neuronal-specific genes in neural stem cells and non-neuronal cells. REST functions as a master regulator in the maintenance of neural stem cells. During tumorigenesis, REST shows opposing roles in different type of cells. In human epithelial cancers such as colon cancer, REST acts as a tumor suppressor. In contrast, REST plays an oncogenic role in the development of brain tumors and other cancers. Abnormal upregulation of REST has been found in medulloblastoma, neuroblastoma and glioblastoma (GBM). Recent studies in GBMs suggest that REST exerts its oncogenic function by maintaining self-renewal potential of glioma stem cells (GSCs)."
+"Barnard, John"	"Quantitative Health Sciences"	27856959	23863953	16373612	30902390	30407210	29937400	25523945	24465984	24854990	29287092	"In many longitudinal follow-up studies, we observe more than one longitudinal outcome. Impaired renal and liver functions are indicators of poor clinical outcomes for patients who are on mechanical circulatory support and awaiting heart transplant. Hence, monitoring organ functions while waiting for heart transplant is an integral part of patient management. Longitudinal measurements of bilirubin can be used as a marker for liver function and glomerular filtration rate for renal function. We derive an approximation to evolution of association between these two organ functions using a bivariate nonlinear mixed effects model for continuous longitudinal measurements, where the two submodels are linked by a common distribution of time-dependent latent variables and a common distribution of measurement errors."	"Genetic mechanisms of atrial fibrillation (AF) remain incompletely understood. Previous differential expression studies in AF were limited by small sample size and provided limited understanding of global gene networks, prompting the need for larger-scale, network-based analyses. Left atrial tissues from Cleveland Clinic patients who underwent cardiac surgery were assayed using Illumina Human HT-12 mRNA microarrays. The data set included 3 groups based on cardiovascular comorbidities: mitral valve (MV) disease without coronary artery disease (n=64), coronary artery disease without MV disease (n=57), and lone AF (n=35). Weighted gene coexpression network analysis was performed in the MV group to detect modules of correlated genes. Module preservation was assessed in the other 2 groups. Module eigengenes were regressed on AF severity or atrial rhythm at surgery. Modules whose eigengenes correlated with either AF phenotype were analyzed for gene content. A total of 14 modules were detected in the MV group; all were preserved in the other 2 groups. One module (124 genes) was associated with AF severity and atrial rhythm across all groups. Its top hub gene, RCAN1, is implicated in calcineurin-dependent signaling and cardiac hypertrophy. Another module (679 genes) was associated with atrial rhythm in the MV and coronary artery disease groups. It was enriched with cell signaling genes and contained cardiovascular developmental genes including TBX5. Our network-based approach found 2 modules strongly associated with AF. Further analysis of these modules may yield insight into AF pathogenesis by providing novel targets for functional studies."	"Apolipoprotein (apo) E-deficient mice are hypercholesterolemic and develop atherosclerosis on low-fat chow diets; however, the genetic background strain has a large effect on atherosclerosis susceptibility. This study aimed to determine the genetic regions associated with strain effects on lesion area. We performed a strain intercross between atherosclerosis sensitive DBA/2 and atherosclerosis resistant AKR apoE-deficient mice. Aortic root lesion area, total cholesterol, body weights, and complete blood counts were ascertained for 114 male and 95 female F2 progeny. A high-density genome scan was performed using a mouse single nucleotide polymorphism chip yielding 1967 informative polymorphic markers. Quantitative trait locus (QTL) statistical analyses were performed. Novel loci associated with lesion or log lesion area were identified for the female and male F2 cohorts. The atherosclerosis QTLs in female mice reside on chromosomes 15, 5, 3, and 13, and in male mice on chromosomes 17, 18, and 2. QTL were also identified for body weight, total cholesterol, and blood count parameters. Loci were identified for atherosclerosis susceptibility in a strain intercross study. The identity of the responsible genes at these loci remains to be determined."	"HERC2 is a giant protein with E3 ubiquitin ligase activity and other known and suspected functions. Mutations of HERC2 are implicated in the pathogenesis of various cancers and result in severe neurological conditions in Herc2-mutant mice. Recently, a pleotropic autosomal recessive HERC2-associated syndrome of intellectual disability, autism and variable neurological deficits was described; its pathogenetic basis is largely unknown. Using peripheral blood-derived lymphoblasts from 3 persons with homozygous HERC2 variants and 14 age- and gender-matched controls, we performed label-free unbiased HPLC-tandem mass spectrometry-based proteomic analyses to provide insights into HERC2-mediated pathobiology. We found that out of 3427 detected proteins, there were 812 differentially expressed proteins between HERC2-cases vs. controls. 184 canonical pathways were enriched after FDR adjustment, including mitochondrial function, energy metabolism, EIF2 signaling, immune functions, ubiquitination and DNA repair. Ingenuity Pathway Analysis<sup>®</sup> identified 209 upstream regulators that could drive the differential expression, prominent amongst which were neurodegeneration-associated proteins. Differentially expressed protein interaction networks highlighted themes of immune function/dysfunction, regulation of cell cycle/cell death, and energy metabolism. Overall, the analysis of the HERC2-associated proteome revealed striking differential protein expression between cases and controls. The large number of differentially expressed proteins likely reflects HERC2's multiple domains and numerous interacting proteins. Our canonical pathway and protein interaction network findings suggest derangements of multiple pathways in HERC2-associated disease."	"ABO blood groups have been associated with venous thromboembolism and arterial thrombosis. Although platelets play key roles in thrombogenesis, the relation between ABO groups and platelets is not well known and was investigated in this study. ABO blood type information was retrospectively obtained for 206 patients who underwent percutaneous coronary intervention (PCI) and received dual antiplatelet therapy with aspirin and clopidogrel. Platelet function was measured using VerifyNow system, light transmission aggregometry, thromboxane B2, urinary 11-dehydrothromboxane B2, and vasodilator-stimulated phosphoprotein phosphorylation assays. Samples were also tested following treatment with 10 and 30 µmol/l of aspirin or 30 and 100 µmol/l of P2Y12 inhibitor 2-methylthioadenosine 5'-monophosphate triethylammonium salt hydrate (2-MeSAMP). Forty-four clinical and 30 platelet function parameters were analyzed. Patients were categorized as aspirin or clopidogrel poor responder (PR) according to cutoff levels of each test. Blood type A was significantly associated with myocardial infarction (MI) history [odds ratio (OR)=2.50, 95% confidence interval (CI)=1.37-4.58, P=0.003], higher baseline troponin T and creatine kinase-MB (CK-MB) index, post-PCI CK-MB index, and platelet reactivity index (PRI), and being PR against 2-MeSAMP (OR=5.75, 95% CI=1.51-21.90, P=0.010). Blood type O was associated with higher arachidonic acid-induced platelet aggregation and negatively associated with MI history (OR=0.47, 95% CI=0.26-0.84, P=0.010), PRI and being PR against clopidogrel (OR=0.54, 95% CI=0.30-0.99, P=0.043) and 2-MeSAMP (OR=0.16, 95% CI=0.03-0.76, P=0.021). Blood type A was found as a risk factor for MI. Higher arachidonic acid-induced aggregation in group O and higher PRI in group A against aspirin and P2Y12 inhibitor treatment, respectively, may suggest alternative antiplatelet therapies for PRs with these blood types."	"Recurrent somatic mutations in SF3B1 have been identified in patients with myelodysplastic syndromes (MDS) and are associated with ring sideroblasts (RS) and relatively favorable clinical outcomes. The 2016 World Health Organization classification categorizes patients with ≥ 5% RS and SF3B1 mutation as MDS-RS, in contrast to its prior MDS-RS classification (≥ 15% RS, no genotyping data). Treatment responses in MDS patients with mutated SF3B1 are not well described. Patients with MDS and known SF3B1 mutational status were identified from MDS Clinical Research Consortium institutions and grouped when possible as 5% to 15% or ≥ 15% RS. Patients with wild-type versus mutated SF3B1 were matched 2:1 to analyze treatment response. Of 471 patients identified, 16% showed SF3B1 mutation. More patients with mutated SF3B1 were lower-risk MDS. We found that 50% were RS-positive compared to 19% of wild-type patients (P &lt; .001). Having the mutation was associated with better overall survival (hazard ratio = 0.48, P = .001) and longer leukemia-free survival (hazard ratio = 0.5, P &lt; .005). Patients with RS and the mutation had the best outcome. Regarding treatment response, 14 (35%) of 40 erythroid-stimulating agent-treated patients with mutation experienced response versus 9 (16%) of 56 wild-type patients (P = .032), with no differences in response to hypomethylating agents or lenalidomide. SF3B1 mutations in MDS are commonly associated with RS and show better outcomes, with mutated/positive RS presence being significantly better than isolated RS or presence of mutation or neither. Patients with mutation showed better responses to an erythroid-stimulating agent. A new categorization incorporating SF3B1 mutation status, regardless of RS percentage, shows clinical value."	"Prior transcriptional studies of atrial fibrillation (AF) have been limited to specific transcripts, animal models, chronic AF, right atria, or small samples. We sought to characterize the left atrial transcriptome in human AF to distinguish changes related to AF susceptibility and persistence. Left atrial appendages from 239 patients stratified by coronary artery disease, valve disease, and AF history (no history of AF, AF history in sinus rhythm at surgery, and AF history in AF at surgery) were selected for genome-wide mRNA microarray profiling. Transcripts were examined for differential expression with AF phenotype group. Enrichment in differentially expressed genes was examined in 3 gene set collections: a transcription factor collection, defined by shared conserved cis-regulatory motifs, a miRNA collection, defined by shared 3' untranslated region motifs, and a molecular function collection, defined by shared Gene Ontology molecular function. AF susceptibility was associated with decreased expression of the targets of CREB/ATF family, heat-shock factor 1, ATF6, SRF, and E2F1 transcription factors. Persistent AF activity was associated with decreased expression in genes and gene sets related to ion channel function consistent with reported functional changes. AF susceptibility was associated with decreased expression of targets of several transcription factors related to inflammation, oxidation, and cellular stress responses. In contrast, changes in ion channel expression were associated with AF activity but were limited in AF susceptibility. Our results suggest that significant transcriptional remodeling marks susceptibility to AF, whereas remodeling of ion channel expression occurs later in the progression or as a consequence of AF."	"Atrial Fibrillation (AF), the most common sustained arrhythmia, has a strong genetic component, but the mechanism by which common genetic variants lead to increased AF susceptibility is unknown. Genome-wide association studies (GWAS) have identified that the single nucleotide polymorphisms (SNPs) most strongly associated with AF are located on chromosome 4q25 in an intergenic region distal to the PITX2 gene. Our objective was to determine whether the AF-associated SNPs on chromosome 4q25 were associated with PITX2c expression in adult human left atrial appendages. Analysis of a lone AF GWAS identified four independent AF risk SNPs at chromosome 4q25. Human adult left atrial appendage tissue was obtained from 239 subjects of European Ancestry and used for SNP analysis of genomic DNA and determination of PITX2c RNA expression levels by quantitative PCR. Subjects were divided into three groups based on their history of AF and pre-operative rhythm. AF rhythm subjects had higher PITX2c expression than those with history of AF but in sinus rhythm. PITX2c expression was not associated with the AF risk SNPs in human adult left atrial appendages in all subjects combined or in each of the three subgroups. However, we identified seven SNPs modestly associated with PITX2c expression located in the introns of the ENPEP gene, ∼54 kb proximal to PITX2. PITX2c expression in human adult left atrial appendages is not associated with the chromosome 4q25 AF risk SNPs; thus, the mechanism by which these SNPs are associated with AF remains enigmatic. "	"Perturbation in iron homeostasis is a hallmark of some hematologic diseases. Abnormal sideroblasts with accumulation of iron in the mitochondria are named ring sideroblasts (RS). RS is a cardinal feature of refractory anemia with RS (RARS) and RARS with marked thrombocytosis (RARS/-T). Mutations in SF3B1, a member of the RNA splicing machinery are frequent in RARS/-T and defects of this gene were linked to RS formation. Here we showcase the differences in iron architecture of SF3B1-mutant and wild-type (WT) RARS/-T and provide new mechanistic insights by which SF3B1 mutations lead to differences in iron. We found higher iron levels in SF3B1 mutant vs WT RARS/-T by transmission electron microscopy/spectroscopy/flow cytometry. SF3B1 mutations led to increased iron without changing the valence as shown by the presence of Fe(2+) in mutant and WT. Reactive oxygen species and DNA damage were not increased in SF3B1-mutant patients. RNA-sequencing and Reverse transcriptase PCR showed higher expression of a specific isoform of SLC25A37 in SF3B1-mutant patients, a crucial importer of Fe(2+) into the mitochondria. Our studies suggest that SF3B1 mutations contribute to cellular iron overload in RARS/-T by deregulating SLC25A37. "	"Perspectives on whether the functions of MAS, a G protein-coupled receptor, are beneficial or deleterious in the heart remain controversial. MAS gene knockout reduces coronary vasodilatation leading to ischemic injury. G protein signaling activated by MAS has been implicated in progression of adaptive cardiac hypertrophy to heart failure and fibrosis. In the present study, we observed increased expression of MAS, connective tissue growth factor (CTGF) and collagen genes in failing (HF) human heart samples when compared to non-failing (NF). Expression levels of MAS are correlated with CTGF in HF and NF leading to our hypothesis that MAS controls CTGF production and the ensuing expression of collagen genes. In support of this hypothesis we show that the non-peptide MAS agonist AR234960 increases both mRNA and protein levels of CTGF via ERK1/2 signaling in HEK293-MAS cells and adult human cardiac fibroblasts. MAS-mediated CTGF expression can be specifically blocked by MAS inverse agonist AR244555 and also by MEK1 inhibition. Expression of CTGF gene was essential for MAS-mediated up-regulation of different collagen subtype genes in HEK293-MAS cells and human cardiac fibroblasts. Knockdown of CTGF by RNAi disrupted collagen gene regulation by the MAS-agonist. Our data indicate that CTGF mediates the profibrotic effects of MAS in cardiac fibroblasts. Blocking MAS-CTGF-collagen pathway should be considered for pharmacological intervention for HF."
+"Beck, Gerry"	"Quantitative Health Sciences"	24646858	27233381	27774730	28301073	29064128	25349205	27716149	28741050	29621747	30071516	"Current guidelines recommend under 2 g/day sodium intake in chronic kidney disease, but there are a few studies relating sodium intake to long-term outcomes. Here we evaluated the association of mean baseline 24-h urinary sodium excretion with kidney failure and a composite outcome of kidney failure or all-cause mortality using Cox regression in 840 participants enrolled in the Modification of Diet in Renal Disease Study. Mean 24-h urinary sodium excretion was 3.46 g/day. Kidney failure developed in 617 participants, and the composite outcome was reached in 723. In the primary analyses, there was no association between 24-h urine sodium and kidney failure (HR 0.99 (95% CI 0.91-1.08)) nor on the composite outcome (HR 1.01 (95% CI 0.93-1.09)), each per 1 g/day higher urine sodium. In exploratory analyses, there was a significant interaction of baseline proteinuria and sodium excretion with kidney failure. Using a two-slope model, when urine sodium was under 3 g/day, higher urine sodium was associated with increased risk of kidney failure in those with baseline proteinuria under 1 g/day and with lower risk of kidney failure in those with baseline proteinuria of ⩾ 1 g/day. There was no association between urine sodium and kidney failure when urine sodium was ⩾ 3 g/day. Results were consistent using first baseline and time-dependent urinary sodium excretion. Thus, we noted no association of urine sodium with kidney failure. Results of the exploratory analyses need to be verified in additional studies and the mechanism explored."	"Low urine potassium excretion, as a surrogate for dietary potassium intake, is associated with higher risk for hypertension and cardiovascular disease in a general population. Few studies have investigated the relationship of urine potassium with clinical outcomes in chronic kidney disease (CKD). Longitudinal cohort study. The MDRD (Modification of Diet in Renal Disease) Study was a randomized controlled trial (N = 840) conducted in 1989 to 1993 to examine the effects of blood pressure control and dietary protein restriction on kidney disease progression in adults aged 18 to 70 years with CKD stages 2 to 4. This post hoc analysis included 812 participants. The primary predictor variable was 24-hour urine potassium excretion, measured at baseline and at multiple time points (presented as time-updated average urine potassium excretion). Kidney failure, defined as initiation of dialysis therapy or transplantation, was determined from US Renal Data System data. All-cause mortality was assessed using the National Death Index. Median follow-up for kidney failure was 6.1 (IQR, 3.5-11.7) years, with 9 events/100 patient-years. Median all-cause mortality follow-up was 19.2 (IQR, 10.8-20.6) years, with 3 deaths/100 patient-years. Baseline mean urine potassium excretion was 2.39±0.89 (SD) g/d. Each 1-SD higher baseline urine potassium level was associated with an adjusted HR of 0.95 (95% CI, 0.87-1.04) for kidney failure and 0.83 (95% CI, 0.74-0.94) for all-cause mortality. Results were consistent using time-updated average urine potassium measurements. Analyses were performed using urine potassium excretion as a surrogate for dietary potassium intake. Results are obtained from a primarily young, nondiabetic, and advanced CKD population and may not be generalizable to the general CKD population. Higher urine potassium excretion was associated with lower risk for all-cause mortality, but not kidney failure."	"End-stage renal disease is associated with elevations in circulating prolactin concentrations, but the association of prolactin concentrations with intermediate health outcomes and the effects of hemodialysis frequency on changes in serum prolactin have not been examined. The FHN Daily and Nocturnal Dialysis Trials compared the effects of conventional thrice weekly hemodialysis with in-center daily hemodialysis (6 days/week) and nocturnal home hemodialysis (6 nights/week) over 12 months and obtained measures of health-related quality of life, self-reported physical function, mental health and cognition. Serum prolactin concentrations were measured at baseline and 12-month follow-up in 70% of the FHN Trial cohort to examine the associations among serum prolactin concentrations and physical, mental and cognitive function and the effects of hemodialysis frequency on serum prolactin. Among 177 Daily Trial and 60 Nocturnal Trial participants with baseline serum prolactin measurements, the median serum prolactin concentration was 65 ng/mL (25th-75th percentile 48-195 ng/mL) and 81% had serum prolactin concentrations &gt;30 ng/mL. While serum prolactin was associated with sex (higher in women), we observed no association between baseline serum prolactin and age, dialysis vintage, and baseline measures of physical, mental and cognitive function. Furthermore, there was no significant effect of hemodialysis frequency on serum prolactin in either of the two trials. Serum prolactin concentrations were elevated in the large majority of patients with ESRD, but were not associated with several measures of health status. Circulating prolactin levels also do not appear to decrease in response to more frequent hemodialysis over a one-year period."	"End-stage renal disease (ESRD) is associated with perturbations in thyroid hormone concentrations and an increased prevalence of hypothyroidism. Few studies have examined the effects of hemodialysis dose or frequency on endogenous thyroid function. Within the Frequent Hemodialysis Network (FHN) trials, we examined the prevalence of hypothyroidism in patients with ESRD. Among those with endogenous thyroid function (without overt hyper/hypothyroidism or thyroid hormone supplementation), we examined the association of thyroid hormone concentration with multiple parameters of self-reported health status, and physical and cognitive performance, and the effects of hemodialysis frequency on serum thyroid stimulating hormone (TSH), free thyroxine (FT4), and free tri-iodothyronine (FT3) levels. Conventional thrice-weekly hemodialysis was compared to in-center (6 d/wk) hemodialysis (Daily Trial) and Nocturnal (6 nights/wk) home hemodialysis (Nocturnal Trial) over 12 months. Among 226 FHN Trial participants, the prevalence of hypothyroidism was 11% based on thyroid hormone treatment and/or serum TSH ≥8 mIU/mL. Among the remaining 195 participants (147 Daily, 48 Nocturnal) with endogenous thyroid function, TSH concentrations were modestly (directly) correlated with age (r = 0.16, P = 0.03) but not dialysis vintage. Circulating thyroid hormone levels were not associated with parameters of health status or physical and cognitive performance. Furthermore, frequent in-center and nocturnal hemodialysis did not significantly change (baseline to month 12) TSH, FT4, or FT3 concentrations in patients with endogenous thyroid function. Among patients receiving hemodialysis without overt hyper/hypothyroidism or thyroid hormone treatment, thyroid indices were not associated with multiple measures of health status and were not significantly altered with increased dialysis frequency."	"Correction of metabolic acidosis in patients with chronic kidney disease has been associated with improvement in thyroid function. We examined whether changes in bicarbonate were associated with changes in thyroid function in patients with end-stage renal disease receiving conventional or more frequent haemodialysis. In the Frequent Hemodialysis Network Trials, the relationship between changes in serum bicarbonate, free triiodothyronine (FT3) and free thyroxine (FT4) was examined among 147 and 48 patients with endogenous thyroid function who received conventional (3×/week) or more frequent (6×/week) haemodialysis (Daily Trial) or who received conventional or more frequent nocturnal haemodialysis (Nocturnal Trial). Equilibrated normalized protein catabolic rate (enPCR) was examined to account for nutritional factors affecting both acid load and thyroid function. Increasing dialysis frequency was associated with increased bicarbonate level. Baseline bicarbonate level was not associated with baseline FT3 and FT4. Change in bicarbonate level was not associated with changes in FT3 and FT4 in the Daily Trial nor for FT4 in the Nocturnal Trial (r ≤ 0.14, P &gt; 0.21). While, a significant correlation between change in serum bicarbonate and change in FT3 (r = 0.44, P = 0.02) was observed in the Nocturnal Trial; findings were no longer significant after adjusting for change in enPCR (r = 0.37, P = 0.08). For participants with baseline bicarbonate &lt;23 mmol/L, no association between change in bicarbonate and change in thyroid indices were seen in the Daily Trial; for the Nocturnal Trial, findings were also not significant for change in FT3 and the association between change in bicarbonate and change in FT4 (r = 0.54, P = 0.03) was no longer significant after adjusting for enPCR (r = 0.45, P = 0.11). Changes in bicarbonate were not associated with changes in thyroid hormone levels after adjusting for enPCR, as a marker of nutritional status. Future studies should examine whether improvement in acid base status improves thyroid function in haemodialysis patients with evidence of thyroid hypofunction."	"Reduced GFR in patients with CKD causes systemic accumulation of uremic toxins, which has been correlated with disease progression and increased morbidity. The orally administered spherical carbon adsorbent AST-120 reduces systemic toxin absorption through gastrointestinal sequestration, which may slow disease progression in these patients. The multinational, randomized, double-blind, placebo-controlled Evaluating Prevention of Progression in CKD (EPPIC)-1 and EPPIC-2 trials evaluated the effects of AST-120 on the progression of CKD when added to standard therapy. We randomly assigned 2035 adults with moderate to severe disease (serum creatinine at screening, 2.0-5.0 mg/dl for men and 1.5-5.0 mg/dl for women) to receive either placebo or AST-120 (9 g/d). The primary end point was a composite of dialysis initiation, kidney transplantation, and serum creatinine doubling. Each trial continued until accrual of 291 primary end points. The time to primary end point was similar between the AST-120 and the placebo groups in both trials (EPPIC-1: hazard ratio, 1.03; 95% confidence interval, 0.84 to 1.27; P=0.78) (EPPIC-2: hazard ratio, 0.91; 95% confidence interval, 0.74 to 1.12; P=0.37); a pooled analysis of both trials showed similar results. The estimated median time to primary end points for the placebo groups was 124 weeks for power calculations, but actual times were 189.0 and 170.3 weeks for EPPIC-1 and EPPIC-2, respectively. Thus, disease progression was more gradual than expected in the trial populations. In conclusion, the benefit of adding AST-120 to standard therapy in patients with moderate to severe CKD is not supported by these data. "	"The orally administered spherical carbon adsorbent AST-120 is used on-label in Asian countries to slow renal disease progression in patients with progressive chronic kidney disease (CKD). Recently, two multinational, randomized, double-blind, placebo-controlled, phase 3 trials (Evaluating Prevention of Progression in Chronic Kidney Disease [EPPIC] trials) examined AST-120's efficacy in slowing CKD progression. This study assessed the efficacy of AST-120 in the subgroup of patients from the United States of America (USA) in the EPPIC trials. In the EPPIC trials, 2035 patients with moderate to severe CKD were studied, of which 583 were from the USA. The patients were randomly assigned to two groups of equal size that were treated with AST-120 or placebo (9 g/day). The primary end point was a composite of dialysis initiation, kidney transplantation, or serum creatinine doubling. The Kaplan-Meier curve for the time to achieve the primary end point in the placebo-treated patients from the USA was similar to that projected before the study. The per protocol subgroup analysis of the population from the USA which included patients with compliance rates of ≥67 % revealed a significant difference between the treatment groups in the time to achieve the primary end point (Hazard Ratio, 0.74; 95 % Confidence Interval, 0.56-0.97). This post hoc subgroup analysis of EPPIC study data suggests that treatment with AST-120 might delay the time to primary end point in CKD patients from the USA. A further randomized controlled trial in progressive CKD patients in the USA is necessary to confirm the beneficial effect of adding AST-120 to standard therapy regimens. ClinicalTrials.gov NCT00500682 ; NCT00501046 ."	"Two randomized, double-blind, placebo-controlled trials (EPPIC-1 and EPPIC-2) investigated the efficacy and safety of AST-120, an oral spherical carbon adsorbent, in adults with chronic kidney disease (CKD). While the benefit of adding AST-120 to standard therapy was not supported by these trials, we performed a post hoc analysis to focus on CKD progression and to determine the risk factors for the primary endpoint in the EPPIC trial population. In the EPPIC trials, patients were randomly assigned 1:1 to treatment with AST-120 or placebo. The primary endpoint was a composite of dialysis initiation, kidney transplantation, or doubling of serum creatinine. The EPPIC trial pooled population was evaluated with the same statistical methods used for analysis of the primary and secondary efficacy endpoints. The trials were registered on ClinicalTrials.gov (NCT00500682 [EPPIC-1] and NCT00501046 [EPPIC-2]). An analysis of the placebo population suggested baseline urinary protein to urinary creatinine ratio (UP/UCr) ≥1.0 and hematuria were independent risk factors for event occurrence and eGFR lowering. Analysis of the high risk patients revealed a difference in the primary endpoint occurrence between treatment groups, if angiotensin-converting enzyme inhibitors and/or angiotensin receptor blockers were administered (hazard ratio 0.74, 95% confidence interval 0.56-0.96). Also, the eGFR changes from baseline in the AST-120 group were smaller than that in the placebo group (P = 0.035). CKD progression may have an association with baseline UP/UCr and hematuria. Treatment with AST-120 may delay the time to the primary endpoint in patients with progressive CKD receiving standard therapy, thus warranting further investigation."	"Regression of left ventricular hypertrophy (LVH) is feasible with more frequent hemodialysis (HD). We aimed to ascertain pathways associated with regression of left ventricular mass (LVM) in patients enrolled in the Frequent HD Network (FHN) trials. This was a post hoc observational cohort study. We hypothesized LVH regression with frequent HD was associated with a different cardiovascular biomarker profile. Regressors were defined as patients who achieved a reduction of more than 10% in LVM at 12 months. Progressors were defined as patients who had a minimum of 10% increase in LVM at 12 months. Among 332 randomized patients, 243 had biomarker data available. Of these, 121 patients did not progress or regress, 77 were regressors, and 45 were progressors. Mean LVM change differed between regressors and progressors by -65.6 (-74.0 to -57.2) g, p &lt; 0.001. Regressors had a median (interquartile range) increase in dialysis frequency (from 3.0 [3.0-3.0] to 4.9 [3-5.7] per week, p = 0.001) and reductions in pre-dialysis systolic (from 149.0 [136.0-162.0] to 136.0 [123.0-152.0] mm Hg, p &lt; 0.001) and diastolic (from 83.0 [71.0-91.0] to 76.0 [68.0-84.0] mm Hg, p &lt; 0.001) blood pressures. Klotho levels increased in regressors versus progressors (76.9 [10.5-143.3] pg/mL, p = 0.024). Tissue inhibitors of metalloproteinase (TIMP)-2 levels fell in regressors compared to progressors (-7,853 [-14,653 to -1,052] pg/mL, p = 0.024). TIMP-1 and log (brain natriuretic -peptide [BNP]) levels also tended to fall in regressors. Changes in LVM correlated inversely with changes in klotho (r = -0.24, p = 0.014). -Conclusions: Markers of collagen turnover and changes in klotho levels are potential novel pathways associated with regression of LVH in the dialysis population, which will require further prospective validation."	"The arteriovenous fistula (AVF) is the preferred vascular access for hemodialysis. However, approximately half of AVFs fail to mature. The use of angiotensin converting enzyme inhibitors (ACE-Is), angiotensin receptor blockers (ARBs), and calcium channel blockers (CCBs) exerts favorable endothelial effects and may promote AVF maturation. We tested associations of ACE-I and ARBs, CCBs, beta-blockers, and diuretics with the maturation of newly created AVFs. We evaluated 602 participants from the Hemodialysis Fistula Maturation Study, a multi-center, prospective cohort study of AVF maturation. We ascertained the use of each medication class within 45 days of AVF creation surgery. We defined maturation outcomes by clinical use within 9 months of surgery or 4 weeks of initiating hemodialysis. Unassisted AVF maturation failure without intervention occurred in 54.0% of participants, and overall AVF maturation failure (with or without intervention) occurred in 30.1%. After covariate adjustment, CCB use was associated with a 25% lower risk of overall AVF maturation failure (95% CI 3%-41% lower) but a non-significant 10% lower risk of unassisted maturation failure (95% CI 23% lower to 5% higher). ACE-I/ARB, beta-blocker, and diuretic use was not significantly associated with AVF maturation outcomes. None of the antihypertensive medication classes were associated with changes in AVF diameter or blood flow over 6 weeks following surgery. CCB use may be associated with a lower risk of overall AVF maturation failure. Further studies are needed to determine whether CCBs might play a causal role in improving AVF maturation outcomes."
+"Bekris, Lynn"	"Genomic Medicine Institute"	30779703	29685286	29371683	29253717	28934645	28033507	25808939	25711455	24011543	23892237	NA	"Alzheimer's disease (AD) has been genetically and pathologically associated with neuroinflammation. Triggering receptor expressed on myeloid cells 2 (TREM2) is a microglial receptor involved in innate immunity. TREM2 rare protein coding genetic variants have been linked to AD. A soluble TREM2 (sTREM2) cleavage product is elevated in AD. It is unclear whether there is a relationship between elevated sTREM2 and markers of inflammation. The hypothesis of this investigation was that central and peripheral inflammation play a role in sTREM2 levels in AD. A consistent association of peripheral or central markers of inflammation and CSF sTREM2 levels was not found, suggesting a limited impact of general inflammation on sTREM2 levels. An association between peripheral sTREM2 levels and CSF sTREM2, as well as an association between CSF sTREM2 and a marker of blood brain barrier integrity, was observed in AD, suggesting a potential role of peripheral TREM2 in central TREM2 biology."	"The apolipoprotein E (APOE) ε4 allele is the major genetic risk factor for Alzheimer's disease (AD). Multiple regulatory elements, spanning the extended TOMM40-APOE-APOC2 region, regulate gene expression at this locus. Regulatory element DNA methylation changes occur under different environmental conditions, such as disease. Our group and others have described an APOE CpG island as hypomethylated in AD, compared to cognitively normal controls. However, little is known about methylation of the larger TOMM40-APOE-APOC2 region. The hypothesis of this investigation was that regulatory element methylation levels of the larger TOMM40-APOE-APOC2 region are associated with AD. The aim was to determine whether DNA methylation of the TOMM40-APOE-APOC2 region differs in AD compared to cognitively normal controls in post-mortem brain and peripheral blood. DNA was extracted from human brain (n = 12) and peripheral blood (n = 67). A methylation array was used for this analysis. Percent methylation within the TOMM40-APOE-APOC2 region was evaluated for differences according to tissue type, disease state, AD-related biomarkers, and gene expression. Results from this exploratory analysis suggest that regulatory element methylation levels within the larger TOMM40-APOE-APOC2 gene region correlate with AD-related biomarkers and TOMM40 or APOE gene expression in AD."	"Recent reports in Alzheimer's disease (AD) research suggest that alterations in microRNA (miRNA) expression are associated with disease pathology. Our previous studies suggest that A Disintegrin and Metalloproteinase 10 (ADAM10) expression is important in AD and could be modulated by an extended regulatory region that includes the 3' untranslated region. In this study, we have investigated the role of trans-acting factors in ADAM10 gene regulation. Our study shows that miRNA-140-5p has enhanced expression in the AD postmortem brain hippocampus using high-throughput miRNA arrays and quantitative real-time polymerase chain reaction. Interestingly, we have also seen that miRNA-140-5p seed sequence is present on 3' untranslated region of both ADAM10 and its transcription factor SOX2. The specific interaction of miRNA-140-5p with both ADAM10 and SOX2 signifies high regulatory importance of this miRNA in controlling ADAM10 expression. Thus, this investigation unravels mechanisms underlying ADAM10 downregulation by miR-140-5p and suggests that dysfunctional regulation of ADAM10 expression is exacerbated by AD-related neurotoxic effects. These findings underscore the importance of understanding the impact of trans-acting factors in the modulation of AD pathophysiology."	"Graphene was successfully employed as a catalyst for the activation of sodium persulfate, towards the effective degradation of propylparaben, an emerging micro-pollutant, representative of the parabens family. A novel process is proposed which utilizes a commercial graphene nano-powder as the catalyst and sodium persulfate as the oxidizing agent. It was found that over 95% of micro-pollutant degradation occurs within 15 min of reaction time. The effects of catalyst loading (75 mg/L to 1 g/L), sodium persulfate (SPS) concentration (10 mg/L to 1 g/L), initial solution pH (3-9) and initial paraben concentration (0.5 mg/L to 5 mg/L) were examined. Experiments were carried out in different aqueous conditions, including ultrapure water, bottled water and wastewater in order to investigate their effect on the degradation rate. The efficiency of the process was lower at complex water matrices signifying the role of organic matter as scavenger of the oxidant species. The role of radical scavengers was also investigated through the addition of methanol and tert-butanol in several concentrations, which was found to be important only in relatively high values. An experiment in which propylparaben was substituted by methylparaben was conducted and similar results were obtained. The consumption of SPS was found to be high in all pH conditions tested, surpassing 80% in near neutral environment. However, the results indicate that the sulfate radicals formed react with water in alkaline conditions, which are the optimal for the reaction, producing hydroxyl radicals which appear to be the dominant species leading to the rapid degradation of propylparaben. To the best of our knowledge, this is the first time pristine graphene has been implemented as an activator of sodium persulfate for the effective oxidation of micro-pollutants."	"Neurofibrillary tangles (NFTs), composed of hyperphosphorylated tau, are a key pathologic feature of Alzheimer's disease (AD). Tau phosphorylation is under the control of multiple kinases and phosphatases, including Fyn. Previously, our group found an association between 2 regulatory single nucleotide polymorphisms in the FYN gene with increased tau levels in the cerebrospinal fluid. In this study, we hypothesized that Fyn expression in the brain is influenced by AD status and genetic content. We found that Fyn protein, but not messenger RNA, levels were increased in AD patients compared to cognitively normal controls and are associated with regulatory region single nucleotide polymorphisms. In addition, the expression of the FYN 3'UTR can decrease expression in multiple cell lines, suggesting this regulatory region plays an important role in FYN expression. Taken together, these data suggest that FYN expression is regulated according to AD status and regulatory region haplotype, and genetic variants may be instrumental in the development of neurofibrillary tangles in AD and other tauopathies."	"Of recent interest is the finding that certain cerebrospinal fluid (CSF) biomarkers traditionally linked to Alzheimer's disease (AD), specifically amyloid beta protein (Aβ), are abnormal in PD CSF. The aim of this exploratory investigation was to determine whether genetic variation within the amyloid precursor protein (APP) processing pathway genes correlates with CSF Aβ42 levels in Parkinson's disease (PD). Parkinson's disease (n = 86) and control (n = 161) DNA were genotyped for 19 regulatory region tagging single-nucleotide polymorphisms (SNPs) within nine genes (APP, ADAM10, BACE1, BACE2, PSEN1, PSEN2, PEN2, NCSTN, and APH1B) involved in the cleavage of APP. The SNP genotypes were tested for their association with CSF biomarkers and PD risk while adjusting for age, sex, and APOE ɛ4 status. Significant correlation with CSF Aβ42 levels in PD was observed for two SNPs, (APP rs466448 and APH1B rs2068143). Conversely, significant correlation with CSF Aβ42 levels in controls was observed for three SNPs (APP rs214484, rs2040273, and PSEN1 rs362344). In addition, results of this exploratory investigation suggest that an APP SNP and an APH1B SNP are marginally associated with PD CSF Aβ42 levels in APOE ɛ4 noncarriers. Further hypotheses generated include that decreased CSF Aβ42 levels are in part driven by genetic variation in APP processing genes. Additional investigation into the relationship between these findings and clinical characteristics of PD, including cognitive impairment, compared with other neurodegenerative diseases, such as AD, are warranted. © 2015 International Parkinson and Movement Disorder Society."	"Alzheimer's disease (AD) is the most common cause of dementia. Currently, a clinical diagnosis of AD is based on evidence of both cognitive and functional decline. Progression is monitored by detailed clinical evaluations over many months to years. It is increasingly clear that to advance disease-modifying therapies for AD, patients must be identified and treated early, before obvious cognitive and functional changes. In addition, better methods are needed to sensitively monitor progression of disease and therapeutic efficacy. Therefore, considerable research has focused on characterizing biomarkers that can identify the disease early as well as accurately monitor disease progression. miRNA offer a unique opportunity for biomarker development. Here, we review research focused on characterizing miRNA as potential biomarkers and as a treatment for disease."	"Low cerebrospinal fluid (CSF) Aβ(42) levels correlate with increased brain Aβ deposition in Alzheimer's disease (AD), which suggests a disruption in the degradation and clearance of Aβ from the brain. In addition, APOE ε4 carriers have lower CSF Aβ(42) levels than non-carriers. The hypothesis of this investigation was that CSF Aβ(42) levels would correlate with regulatory region variation in genes that are biologically associated with degradation or clearance of Aβ from the brain. CSF Aβ(42) levels were tested for associations with Aβ degradation and clearance genes and APOE ε4. Twenty-four SNPs located within the 5' and 3' regions of 12 genes were analyzed. The study sample consisted of 99 AD patients and 168 cognitively normal control subjects. CSF Aβ(42) levels were associated with APOE ε4 status in controls but not in AD patients; A2M regulatory region SNPs were also associated with CSF Aβ(42) levels in controls but not in AD patients, even after adjusting for APOE ε4. These results suggest that genetic variation within the A2M gene influences CSF Aβ(42) levels."	"The human apolipoprotein E (APOE) gene plays an important role in lipid metabolism. It has three common genetic variants, alleles ε2/ε3/ε4, which translate into three protein isoforms of apoE2, E3 and E4. These isoforms can differentially influence total serum cholesterol levels; therefore, APOE has been linked with cardiovascular disease. Additionally, its ε4 allele is strongly associated with the risk of Alzheimer's disease (AD), whereas the ε2 allele appears to have a modest protective effect for AD. Despite decades of research having illuminated multiple functional differences among the three apoE isoforms, the precise mechanisms through which different APOE alleles modify diseases risk remain incompletely understood. In this study, we examined the genomic structure of APOE in search for properties that may contribute novel biological consequences to the risk of disease. We identify one such element in the ε2/ε3/ε4 allele-carrying 3'-exon of APOE. We show that this exon is imbedded in a well-defined CpG island (CGI) that is highly methylated in the human postmortem brain. We demonstrate that this APOE CGI exhibits transcriptional enhancer/silencer activity. We provide evidence that this APOE CGI differentially modulates expression of genes at the APOE locus in a cell type-, DNA methylation- and ε2/ε3/ε4 allele-specific manner. These findings implicate a novel functional role for a 3'-exon CGI and support a modified mechanism of action for APOE in disease risk, involving not only the protein isoforms but also an epigenetically regulated transcriptional program at the APOE locus driven by the APOE CGI. "
+"Bergmann, Cornelia"	"Neurosciences"	30619363	30333176	30222502	29942315	29690885	29491163	28931676	28495370	28108025	27658544	"The central nervous system (CNS) is vulnerable to several viral infections including herpes viruses, arboviruses and HIV to name a few. While a rapid and effective immune response is essential to limit viral spread and mortality, this anti-viral response needs to be tightly regulated in order to limit immune mediated tissue damage. This balance between effective virus control with limited pathology is especially important due to the highly specialized functions and limited regenerative capacity of neurons, which can be targets of direct virus cytolysis or bystander damage. CNS infection with the neurotropic strain of mouse hepatitis virus (MHV) induces an acute encephalomyelitis associated with focal areas of demyelination, which is sustained during viral persistence. Both innate and adaptive immune cells work in coordination to control virus replication. While type I interferons are essential to limit virus spread associated with early mortality, perforin, and interferon-γ promote further virus clearance in astrocytes/microglia and oligodendrocytes, respectively. Effective control of virus replication is nonetheless associated with tissue damage, characterized by demyelinating lesions. Interestingly, the anti-inflammatory cytokine IL-10 limits expansion of tissue lesions during chronic infection without affecting viral persistence. Thus, effective coordination of pro- and anti-inflammatory cytokines is essential during MHV induced encephalomyelitis in order to protect the host against viral infection at a limited cost."	"Humoral responses within the central nervous system (CNS) are common to many neurotropic viral infections, with antibody (Ab)-secreting cells (ASC) contributing to local protection. However, a role for virus-specific memory B cells (Bmem) within the CNS is poorly explored due to lack of robust phenotypic or functional identification in mice. This study takes advantage of the progeny of mice expressing tamoxifen-inducible Cre recombinase (Cre-ERT2) under the Aicda promoter crossed with Rosa26-loxP-tdTomato reporter mice (AID<sup>Cre</sup>-Rosa26<sup>tdTomato</sup>) to monitor B cells having undergone activation-induced cytidine deaminase (AID)-mediated somatic hypermutation (SHM) following neurotropic coronavirus infection. AID detection via tdTomato expression allowed tracking of virus-specific ASC and Bmem in priming and effector sites throughout infection. In draining lymph nodes, tdTomato-positive (tdTomato<sup>+</sup>) ASC were most prevalent prior to germinal center (GC) formation, but total tdTomato<sup>+</sup> B cells only peaked with robust GC formation at day 14 p.i. Moreover, their proportion of Bmem dominated over the proportion of ASC throughout infection. In the CNS, tdTomato<sup>+</sup> cells started emerging at day 14 p.i. While they initially comprised mainly Bmem, the proportions of ASC and Bmem became similar as tdTomato<sup>+</sup> B cells increased throughout viral persistence. Delayed tamoxifen treatment demonstrated ongoing CNS recruitment of tdTomato<sup>+</sup> B cells, mainly ASC, primed late during GC reactions. Overall, the data support the idea that virus-induced B cells exhibiting SHM require peripheral GC formation to emerge in the CNS. Ongoing GC reactions and regional signals further regulate dynamics within the CNS, with preferential maintenance of tdTomato<sup>+</sup> B cells in spinal cords relative to that in brains during viral persistence.IMPORTANCE The prevalence and role of antigen-specific Bmem in the CNS during viral encephalomyelitis is largely undefined. A lack of reliable markers identifying murine Bmem has made it difficult to assess their contribution to local antiviral protection via antigen presentation or conversion to ASC. Using reporter mice infected with neurotropic coronavirus to track virus-specific Bmem and ASC, this report demonstrates that both subsets only emerge in the CNS following peripheral GC formation and subsequently prevail. While early GC reactions supported preferential Bmem accumulation in the CNS, late GC reactions favored ASC accumulation, although Bmem outnumbered ASC in draining lymph nodes throughout infection. Importantly, virus-specific B cells undergoing sustained GC selection were continually recruited to the persistently infected CNS. Elucidating the factors governing temporal events within GCs, as well as regional CNS cues during viral persistence, will aid intervention to modulate CNS humoral responses in the context of infection and associated autoimmune pathologies."	"A variety of viruses can induce central nervous system (CNS) infections and neurological diseases, although the incidence is rare. Similar to peripheral infections, IFNα/β induction and signaling constitutes a first line of defense to limit virus dissemination. However, CNS-resident cells differ widely in their repertoire and magnitude of both basal and inducible components in the IFNα/β pathway. While microglia as resident myeloid cells have been implicated as prominent sentinels of CNS invading pathogens or insults, astrocytes are emerging as key responders to many neurotropic RNA virus infections. Focusing on RNA viruses, this review discusses the role of astrocytes as IFNα/β inducers and responders and touches on the role of IFNα/β receptor signaling in regulating myeloid cell activation and IFNγ responsiveness. A summary picture emerges implicating IFNα/β not only as key in establishing the classical &quot;antiviral&quot; state, but also orchestrating cell mobility and IFNγ-mediated effector functions."	"Multiple Sclerosis (MS) is a chronic inflammatory disease of the central nervous system (CNS) characterized by demyelination and axonal loss. Demyelinating lesions are associated with infiltrating T lymphocytes, bone marrow-derived macrophages (BMDM), and activated resident microglia. Tissue damage is thought to be mediated by T cell produced cytokines and chemokines, which activate microglia and/or BMDM to both strip myelin and produce toxic factors, ultimately damaging axons and promoting disability. However, the relative contributions of BMDM and microglia to demyelinating pathology are unclear, as their identification in MS tissue is difficult due to similar morphology and indistinguishable surface markers when activated. The CD4 T cell-induced autoimmune murine model of MS, experimental autoimmune encephalitis (EAE), in which BMDM are essential for demyelination, has revealed pathogenic and repair-promoting phenotypes associated with BMDM and microglia, respectively. Using a murine model of demyelination induced by a gliatropic coronavirus, in which BMDM are redundant for demyelination, we herein characterize gene expression profiles of BMDM versus microglia associated with demyelination. While gene expression in CNS infiltrating BMDM was upregulated early following infection and subsequently sustained, microglia expressed a more dynamic gene profile with extensive mRNA upregulation coinciding with peak demyelination after viral control. This delayed microglia response comprised a highly pro-inflammatory and phagocytic profile. Furthermore, while BMDM exhibited a mixed phenotype of M1 and M2 markers, microglia repressed the vast majority of M2-markers. Overall, these data support a pro-inflammatory and pathogenic role of microglia temporally remote from viral control, whereas BMDM retained their gene expression profile independent of the changing environment. As demyelination is caused by multifactorial insults, our results highlight the plasticity of microglia in responding to distinct inflammatory settings, which may be relevant for MS pathogenesis."	"Tumor necrosis factor (TNF) is associated with several neurodegenerative disorders including multiple sclerosis (MS). Although TNF-targeted therapies have been largely unsuccessful in MS, recent preclinical data suggests selective soluble TNF inhibition can promote remyelination. This has renewed interest in regulation of TNF signaling in demyelinating disease, especially given the limited treatment options for progressive MS. Using a mouse model of progressive MS, this study evaluates the effects of sustained TNF on oligodendrocyte (OLG) apoptosis and OLG precursor cell (OPC) differentiation. Induction of experimental autoimmune encephalomyelitis (EAE) in transgenic mice expressing a dominant-negative interferon-γ receptor under the human glial fibrillary acidic protein promoter (GFAPγR1Δ) causes severe non-remitting disease associated with sustained TNF. Therapeutic effects in GFAPγR1Δ mice treated with anti-TNF compared to control antibody during acute EAE were evaluated by assessing demyelinating lesion size, remyelination, OLG apoptosis, and OPC differentiation. More severe and enlarged demyelinating lesions in GFAPγR1Δ compared to wild-type (WT) mice were associated with increased OLG apoptosis and reduced differentiated CC1<sup>+</sup>Olig2<sup>+</sup> OLG within lesions, as well as impaired upregulation of TNF receptor-2, suggesting impaired OPC differentiation. TNF blockade during acute EAE in GFAPγR1Δ both limited OLG apoptosis and enhanced OPC differentiation consistent with reduced lesion size and clinical recovery. TNF neutralization further limited increasing endothelin-1 (ET-1) expression in astrocytes and myeloid cells noted in lesions during disease progression in GFAPγR1Δ mice, supporting inhibitory effects of ET-1 on OPC maturation. Our data implicate that IFNγ signaling to astrocytes is essential to limit a detrimental positive feedback loop of TNF and ET-1 production, which increases OLG apoptosis and impairs OPC differentiation. Interference of this cycle by TNF blockade promotes repair independent of TNFR2 and supports selective TNF targeting to mitigate progressive forms of MS."	"The contribution of distinct central nervous system (CNS) resident cells to protective alpha/beta interferon (IFN-α/β) function following viral infections is poorly understood. Based on numerous immune regulatory functions of astrocytes, we evaluated the contribution of astrocyte IFN-α/β signaling toward protection against the nonlethal glia- and neuronotropic mouse hepatitis virus (MHV) strain A59. Analysis of gene expression associated with IFN-α/β function, e.g., pattern recognition receptors (PRRs) and interferon-stimulated genes (ISGs), revealed lower basal mRNA levels in brain-derived astrocytes than in microglia. Although astrocytes poorly induced Ifnβ mRNA following infection, they upregulated various mRNAs in the IFN-α/β pathway to a higher extent than microglia, supporting effective IFN-α/β responsiveness. Ablation of the IFN-α/β receptor (IFNAR) in astrocytes using mGFAPcre IFNAR<sup>fl/fl</sup> mice resulted in severe encephalomyelitis and mortality, coincident with uncontrolled virus replication. Further, virus spread was not restricted to astrocytes but also affected microglia and neurons, despite increased and sustained Ifnα/β and ISG mRNA levels within the CNS. IFN-γ, a crucial mediator for MHV control, was not impaired in infected mGFAPcre IFNAR<sup>fl/fl</sup> mice despite reduced T cell CNS infiltration. Unexpectedly however, poor induction of IFN-γ-dependent major histocompatibility complex (MHC) class II expression on microglia supported that defective IFN-γ signaling contributes to uncontrolled virus replication. A link between sustained elevated IFN-α/β and impaired responsiveness to IFN-γ supports the novel concept that temporally limited early IFN-α/β responses are critical for effective antiviral IFN-γ function. Overall, our results imply that IFN-α/β signaling in astrocytes is not only critical in limiting early CNS viral spread but also promotes protective antiviral IFN-γ function.IMPORTANCE An antiviral state established by IFN-α/β contains initial viral spread as adaptive immunity develops. While it is apparent that the CNS lacks professional IFN-α/β producers and that resident cells have distinct abilities to elicit innate IFN-α/β responses, protective interactions between inducer and responder cells require further investigation. Infection with a glia- and neuronotropic coronavirus demonstrates that astrocytes mount a delayed but more robust response to infection than microglia, despite their lower basal mRNA levels of IFN-α/β-inducing components. Lethal, uncontrolled viral dissemination following ablation of astrocyte IFN-α/β signaling revealed the importance of IFN-α/β responses in a single cell type for protection. Sustained global IFN-α/β expression associated with uncontrolled virus did not suffice to protect neurons and further impaired responsiveness to protective IFN-γ. The results support astrocytes as critical contributors to innate immunity and the concept that limited IFN-α/β responses are critical for effective subsequent antiviral IFN-γ function."	"B cell subsets with phenotypes characteristic of naive, non-isotype-switched, memory (Bmem) cells and antibody-secreting cells (ASC) accumulate in various models of central nervous system (CNS) inflammation, including viral encephalomyelitis. During neurotropic coronavirus JHMV infection, infiltration of protective ASC occurs after T cell-mediated viral control and is preceded by accumulation of non-isotype-switched IgD<sup>+</sup> and IgM<sup>+</sup> B cells. However, the contribution of peripheral activation events in cervical lymph nodes (CLN) to driving humoral immune responses in the infected CNS is poorly defined. CD19, a signaling component of the B cell receptor complex, is one of multiple regulators driving B cell differentiation and germinal center (GC) formation by lowering the threshold of antigen-driven activation. JHMV-infected CD19<sup>-/-</sup> mice were thus used to determine how CD19 affects CNS recruitment of B cell subsets. Early polyclonal ASC expansion, GC formation, and virus-specific ASC were all significantly impaired in CLN of CD19<sup>-/-</sup> mice compared to wild-type (WT) mice, consistent with lower and unsustained virus-specific serum antibody (Ab). ASC were also significantly reduced in the CNS, resulting in increased infectious virus during persistence. Nevertheless, CD19 deficiency did not affect early CNS IgD<sup>+</sup> B cell accumulation. The results support the notion that CD19-independent factors drive early B cell mobilization and recruitment to the infected CNS, while delayed accumulation of virus-specific, isotype-switched ASC requires CD19-dependent GC formation in CLN. CD19 is thus essential for both sustained serum Ab and protective local Ab within the CNS following JHMV encephalomyelitis.IMPORTANCE CD19 activation is known to promote GC formation and to sustain serum Ab responses following antigen immunization and viral infections. However, the contribution of CD19 in the context of CNS infections has not been evaluated. This study demonstrates that antiviral protective ASC in the CNS are dependent on CD19 activation and peripheral GC formation, while accumulation of early-recruited IgD<sup>+</sup> B cells is CD19 independent. This indicates that IgD<sup>+</sup> B cells commonly found early in the CNS do not give rise to local ASC differentiation and that only antigen-primed, peripheral GC-derived ASC infiltrate the CNS, thereby limiting potentially harmful nonspecific Ab secretion. Expanding our understanding of activation signals driving CNS migration of distinct B cell subsets during neuroinflammatory insults is critical for preventing and managing acute encephalitic infections, as well as preempting reactivation of persistent viruses during immune-suppressive therapies targeting B cells in multiple sclerosis (MS), such as rituximab and ocrelizumab."	"CNS inflammation resulting from infection, injury, or neurodegeneration leads to accumulation of diverse B cell subsets. Although antibody secreting cells (ASC) within the inflamed CNS have been extensively examined, memory B cell (Bmem) characterization has been limited as they do not secrete antibody without stimulation. Moreover, unlike human Bmem, reliable surface markers for murine Bmem remain elusive. Using a viral encephalomyelitis model we developed a modified limiting dilution in vitro stimulation assay to convert CNS-derived virus specific Bmem into ASC. Stimulation methods established for lymphoid tissue cells using prolonged stimulation with viral lysate resulted in substantial ASC loss and minimal Bmem to ASC conversion of CNS-derived cells. By varying stimulation duration, TLR activators, and culture supplements, we achieved optimal conversion by culturing cells with TLR7/8 agonist R848 in the presence of feeder cells for 2days. Flow cytometry markers CD38 and CD73 characterizing murine Bmem from lymphoid tissue showed more diverse expression patterns on corresponding CNS-derived B cell subsets. Using the optimized TLR7/8 stimulation protocol, we compared virus-specific IgG Bmem versus pre-existing ASC within the brain and spinal cord. Increasing Bmem frequencies during chronic infection mirrored kinetics of ASC. However, despite initially similar Bmem and ASC accumulation, Bmem prevailed in the brain, but were lower than ASC in the spinal cord during persistence. Simultaneous enumeration of antigen-specific Bmem and ASC using the Bmem assay optimized for CNS-derived cells enables characterization of temporal changes during microbial or auto-antigen induced neuroinflammation."	"Genetic and environmental factors, i.e. infections, have been proposed to contribute to disease induction and relapsing events in multiple sclerosis (MS), an autoimmune demyelinating disease of the central nervous system (CNS). While research has mainly focused on virus associated autoimmune activation, less is known about prevention of autoimmunity, especially following resolving infections associated with CNS tissue damage. This review discusses novel insights on control of self-reactive (SR) T cells activated during neurotropic coronavirus-induced demyelination. A new concept is introduced that SR T cells can be dampened by distinct regulatory mechanisms in the periphery and the CNS, thereby preventing autoimmune disease."	"Central nervous system (CNS) inflammation associated with viral infection and autoimmune disease results in the accumulation of B cells in various differentiation stages. However, the contribution between peripheral and CNS activation remains unclear. During gliatropic coronavirus induced encephalomyelitis, accumulation of protective antibody secreting cells is preceded by infiltration of B cells with a naïve and early differentiation phenotype (Phares et al., 2014). Investigation of the temporal dynamics of B cell activation in draining cervical lymph nodes (CLN) and the CNS revealed that peak CNS infiltration of early activated, unswitched IgD<sup>+</sup> and IgM<sup>+</sup> B cells coincided with polyclonal activation in CLN. By contrast, isotype-switched IgG<sup>+</sup> B cells did not accumulate until peripheral germinal center formation. In the CNS, unswitched B cells were confined to the perivascular space and meninges, with only rare B cell clusters, while isotype-switched B cells localized to parenchymal areas. Although ectopic follicle formation was not observed, more differentiated B cell subsets within the CNS expressed the germinal center marker GL7, albeit at lower levels than CLN counterparts. During chronic infection, CNS IgD<sup>int</sup> and IgD<sup>-</sup> B cell subsets further displayed sustained markers of proliferation and CD4 T cell help, which were only transiently expressed in the CLN. A contribution of local CD4 T cell help to sustain B cell activation was supported by occasional B cells adjacent to T cells. The results suggest that accumulation of differentiated B cell subsets within the CNS is largely dictated by peripheral activation, but that local events contribute to their sustained activation independent of ectopic follicle formation."
+"Berkner, Kathleen"	"Cardiovascular and Metabolic Sciences"	31009158	29592891	22536908	22516721	21896484	20978134	18717596	17073445	16634640	16061481	"Essentials A carboxylase mutation that impairs splicing to delete exon 2 sequences was previously reported. We found that the mutant was inactive for vitamin K-dependent (VKD) protein carboxylation. An incomplete splicing defect likely accounts for VKD clotting activity observed in the patient. The results indicate the importance of proper carboxylase embedment in the membrane for function. Mutations in the γ-glutamyl carboxylase (GGCX), which is required for vitamin K-dependent (VKD) protein activation, can result in vitamin K clotting factor deficiency (VKCFD1). A recent report described a VKCFD1 patient with a homozygous carboxylase mutation that altered splicing and deleted exon 2 (Δ2GGCX). Only Δ2GGCX RNA was observed in the patient. Loss of exon 2 results in the deletion of carboxylase sequences thought to be important for membrane topology and consequent function. Carboxylase activity is required for life, and we therefore tested whether the Δ2GGCX mutant is active. HEK 293 cells were edited by the use of CRISPR-Cas9 to eliminate endogenous carboxylase. Recombinant wild-type GGCX and recombinant Δ2GGCX were then expressed and tested for carboxylation of the VKD protein factor IX. A second approach was used to monitor carboxylation biochemically, using recombinant carboxylases expressed in insect cells that lack endogenous carboxylase. Δ2GGCX activity was undetectable in both assays, which is strikingly different from the low levels of carboxylase activity observed with other VKCFD1 mutants. The similarity in clotting function between patients with Δ2GGCX and these mutations must therefore arise from a novel mechanism. Low levels of properly spliced carboxylase RNA that produce full-length protein would not have been observed in the previous study. The results suggest that the splicing defect is incomplete. Δ2GGCX RNA has been detected in normal human liver, and has been designated carboxylase isoform 2; however, Δ2GGCX protein was not observed in normal human liver. The lack of activity and protein expression suggest that isoform 2 is not physiologically relevant to normal VKD protein carboxylation."	"The anticoagulant warfarin inhibits the vitamin K oxidoreductase (VKORC1), which generates vitamin K hydroquinone (KH2) required for the carboxylation and consequent activation of vitamin K-dependent (VKD) proteins. VKORC1 produces KH2 in 2 reactions: reduction of vitamin K epoxide (KO) to quinone (K), and then KH2 Our dissection of full reduction vs the individual reactions revealed a surprising mechanism of warfarin inhibition. Warfarin inhibition of KO to K reduction and carboxylation that requires full reduction were compared in wild-type VKORC1 or mutants (Y139H, Y139F) that cause warfarin resistance. Carboxylation was much more strongly inhibited (∼400-fold) than KO reduction (two- to threefold). The K to KH2 reaction was analyzed using low K concentrations that result from inhibition of KO to K. Carboxylation that required only K to KH2 reduction was inhibited much less than observed with the KO substrate that requires full VKORC1 reduction (eg, 2.5-fold vs 70-fold, respectively, in cells expressing wild-type VKORC1 and factor IX). The results indicate that warfarin uncouples the 2 reactions that fully reduce KO. Uncoupling was revealed because a second activity, a warfarin-resistant quinone reductase, was not present. In contrast, 293 cells expressing factor IX and this reductase activity showed much less inhibition of carboxylation. This activity therefore appears to cooperate with VKORC1 to accomplish full KO reduction. Cooperation during warfarin therapy would have significant consequences, as VKD proteins function in numerous physiologies in many tissues, but may be poorly carboxylated and dysfunctional if the second activity is not ubiquitously expressed similar to VKORC1."	"γ-Carboxylated Glu (Gla) is a post-translational modification required for the activity of vitamin K-dependent (VKD) proteins that has been difficult to study by mass spectrometry due to the properties of this negatively charged residue. Gla is generated by a single enzyme, the γ-glutamyl carboxylase, which has broad biological impact because VKD proteins have diverse functions that include hemostasis, apoptosis, and growth control. The carboxylase also contains Glas, of unknown function, and is an integral membrane protein with poor sequence coverage. To locate these Glas, we first established methods that resulted in high coverage (92%) of uncarboxylated carboxylase. Subsequent analysis of carboxylated carboxylase identified a Gla peptide (729-758) and a missing region (625-647) that was detected in uncarboxylated carboxylase. We therefore developed an approach to methylate Gla, which efficiently neutralized Gla and improved mass spectrometric analysis. Methylation eliminated CO2 loss from Gla, increased the ionization of Gla-containing peptide, and appeared to facilitate trypsin digestion. Methylation of a carboxylated carboxylase tryptic digest identified Glas in the 625-647 peptide. These studies provide valuable information for testing the function of carboxylase carboxylation. The methylation approach for studying Gla by mass spectrometry is an important advance that will be broadly applicable to analyzing other VKD proteins."	"The vitamin K-dependent carboxylase uses vitamin K oxygenation to drive carboxylation of multiple glutamates in vitamin K-dependent proteins, rendering them active in a variety of physiologies. Multiple carboxylations of proteins are required for their activity, and the carboxylase is processive, so that premature dissociation of proteins from the carboxylase does not occur. The carboxylase is unique, with no known homology to other enzyme families, and structural determinations have not been made, rendering an understanding of catalysis elusive. Although a model explaining the relationship of oxygenation to carboxylation had been developed, until recently almost nothing was known of the function of the carboxylase itself in catalysis. In the past decade, discovery and analysis of naturally occurring carboxylase mutants has led to identification of functionally relevant residues and domains. Further, identification of nonmammalian carboxylase orthologs has provided a basis for bioinformatic analysis to identify candidates for critical functional residues. Biochemical analysis of rationally chosen carboxylase mutants has led to breakthroughs in understanding vitamin K oxygenation, glutamate carboxylation, and maintenance of processivity by the carboxylase. Protein carboxylation has also been assessed in vivo, and the intracellular environment strongly affects carboxylase function. The carboxylase is an integral membrane protein, and topological analysis, coupled with biochemical determinations, suggests that interaction of the carboxylase with the membrane is an important facet of function. Carboxylase homologs, likely acquired by horizontal transfer, have been discovered in some bacteria, and functional analysis of these homologs has the potential to lead to the discovery of new roles of vitamin K in biology."	"The γ-glutamyl carboxylase converts Glu to carboxylated Glu (Gla) to activate a large number of vitamin K-dependent proteins with diverse functions, and this broad physiological impact makes it critical to understand the mechanism of carboxylation. Gla formation is thought to occur in two independent steps (i.e. Glu deprotonation to form a carbanion that then reacts with CO(2)), based on previous studies showing unresponsiveness of Glu deprotonation to CO(2). However, our recent studies on the kinetic properties of a variant enzyme (H160A) showing impaired Glu deprotonation prompted a reevaluation of this model. Glu deprotonation monitored by tritium release from the glutamyl γ-carbon was dependent upon CO(2), and a proportional increase in both tritium release and Gla formation occurred over a range of CO(2) concentrations. This discrepancy with the earlier studies using microsomes is probably due to the known accessibility of microsomal carboxylase to water, which reprotonates the carbanion. In contrast, tritium incorporation experiments with purified carboxylase showed very little carbanion reprotonation and consequently revealed the dependence of Glu deprotonation on CO(2). Cyanide stimulated Glu deprotonation and carbanion reprotonation to the same extent in wild type enzyme but not in the H160A variant. Glu deprotonation that depends upon CO(2) but that also occurs when water or cyanide are present strongly suggests a concerted mechanism facilitated by His-160 in which an electrophile accepts the negative charge on the developing carbanion. This revised mechanism provides important insight into how the carboxylase catalyzes the reaction by avoiding the formation of a high energy discrete carbanion."	"The vitamin K oxidoreductase (VKOR) reduces vitamin K to support the carboxylation and consequent activation of vitamin K-dependent proteins, but the mechanism of reduction is poorly understood. VKOR is an integral membrane protein that reduces vitamin K using membrane-embedded thiols (Cys-132 and Cys-135), which become oxidized with concomitant VKOR inactivation. VKOR is subsequently reactivated by an unknown redox protein that is currently thought to act directly on the Cys132-Cys135 residues. However, VKOR contains evolutionarily conserved Cys residues (Cys-43 and Cys-51) that reside in a loop outside of the membrane, raising the question of whether they mediate electron transfer from a redox protein to Cys-132/Cys-135. To assess a possible role, the activities of mutants with Ala substituted for Cys (C43A and C51A) were analyzed in intact membranes using reductants that were either membrane-permeable or -impermeable. Both reductants resulted in wild type VKOR reduction of vitamin K epoxide; however, the C43A and C51A mutants only showed activity with the membrane-permeant reductant. We obtained similar results when testing the ability of wild type and mutant VKORs to support carboxylation, using intact membranes from cells coexpressing VKOR and carboxylase. These results indicate a role for Cys-43 and Cys-51 in catalysis, suggesting a relay mechanism in which a redox protein transfers electrons to these loop residues, which in turn reduce the membrane-embedded Cys132-Cys135 disulfide bond to activate VKOR. The results have implications for the mechanism of warfarin resistance, the topology of VKOR in the membrane, and the interaction of VKOR with the carboxylase."	"Vitamin K-dependent (VKD) proteins become activated by the VKD carboxylase, which converts Glu's to carboxylated Glu's (Gla's) in their Gla domains. The carboxylase uses vitamin K epoxidation to drive Glu carboxylation, and the two half-reactions are coupled in 1:1 stoichiometry by an unknown mechanism. We now report the first identification of a residue, His160, required for coupling. A H160A mutant showed wild-type levels of epoxidation but substantially less carboxylation. Monitoring proton abstraction using a peptide with Glu tritiated at the gamma-carbon position revealed that poor coupling was due to impaired carbanion formation. H160A showed a 10-fold lower ratio of tritium release to vitamin K epoxidation than wild-type enzyme (i.e., 0.12 versus 1.14, respectively), which could fully account for the fold decrease in coupling efficiency. The Ala substitution in His160 did not affect the K m for vitamin K and caused only a 2-fold increase in the K m for Glu and 2-fold decrease in the activation of vitamin K epoxidation by Glu. The H160A K m for CO 2 was 5-fold higher than the wild-type enzyme. However, the k cat for H160A carboxylation was 8-9-fold lower than the wild-type enzyme with all three substrates (i.e., Glu, CO 2, and vitamin K), suggesting a catalytic role for His160 in carbanion formation. We propose that His160 facilitates the formation of the transition state for carbanion formation. His160 is highly conserved in metazoan VKD carboxylases but not in some bacterial orthologues (acquired by horizontal gene transfer), which has implications for how bacteria have adapted the carboxylase for novel functions."	"The vitamin K-dependent (VKD) carboxylase converts Glu's to carboxylated Glu's in VKD proteins to render them functional in a broad range of physiologies. The carboxylase uses vitamin K hydroquinone (KH(2)) epoxidation to drive Glu carboxylation, and one of its critical roles is to provide a catalytic base that deprotonates KH(2) to allow epoxidation. A long-standing model invoked Cys as the catalytic base but was ruled out by activity retention in a mutant where every Cys is substituted by Ala. Inhibitor analysis of the cysteine-less mutant suggested that the base is an activated amine [Rishavy et al. (2004) Proc. Natl. Acad. Sci. U.S.A. 101, 13732-13737], and in the present study, we used an evolutionary approach to identify candidate amines, which revealed His160, His287, His381, and Lys218. When mutational analysis was performed using an expression system lacking endogenous carboxylase, the His to Ala mutants all showed full epoxidase activity but K218A activity was not detectable. The addition of exogenous amines restored K218A activity while having little effect on wild type carboxylase, and pH studies indicated that rescue was dependent upon the basic form of the amine. Importantly, Brønsted analysis that measured the effect of amines with different pK(a) values showed that K218A activity rescue depended upon the basicity of the amine. The combined results provide strong evidence that Lys218 is the essential base that deprotonates KH(2) to initiate the reaction. The identification of this base is an important advance in defining the carboxylase active site and has implications regarding carboxylase membrane topology and the feedback mechanism by which the Glu substrate regulates KH(2) oxygenation."	"Carboxylation of vitamin K-dependent (VKD) proteins is required for their activity and depends on reduced vitamin K generated by vitamin K oxidoreductase (VKOR) and a redox protein that regenerates VKOR activity. VKD protein carboxylation is inefficient in mammalian cells, and to understand why carboxylation becomes saturated, we developed an approach that directly measures the extent of intracellular VKD protein carboxylation. Analysis of factor IX (fIX)-expressing BHK cells indicated that slow egress of fIX from the endoplasmic reticulum and preferential secretion of the carboxylated form contribute to secreted fIX being more fully carboxylated. The analysis also revealed the first reported in vivo VKD protein turnover, which was 14-fold faster than that which occurs in vitro, suggesting facilitation of this process in vivo. r-VKORC1 expression increased the rate of fIX carboxylation and the extent of secreted carboxylated fIX approximately 2-fold, which shows that carboxylation is the rate-limiting step in fIX turnover and which was surprising because turnover in vitro is limited by release of carboxylated fIX. Interestingly, the increases were significantly smaller than the amount of VKOR overexpression (15-fold). However, when cell extracts were tested in single-turnover experiments in vitro, where redox protein is functionally substituted with dithiothreitol, VKOR overexpression increased the fIX carboxylation rate 14-fold, showing r-VKORC1 is functional for supporting fIX carboxylation. These data indicate that the effect of VKOR overexpression is limited in vivo, possibly because a carboxylation component like the redox protein becomes saturated or because another step is now rate-limiting. The studies illustrate the complexity of carboxylation and potential importance of component stoichiometry to overall efficiency."	"Leptospirosis is an emerging infectious disease whose pathology includes a hemorrhagic response, and sequencing of the Leptospira interrogans genome revealed an ortholog of the vitamin K-dependent (VKD) carboxylase as one of several hemostatic proteins present in the bacterium. Until now, the VKD carboxylase was known to be present only in the animal kingdom (i.e. metazoans that include mammals, fish, snails, and insects), and this restricted distribution and high sequence similarity between metazoan and Leptospira orthologs strongly suggests that Leptospira acquired the VKD carboxylase by horizontal gene transfer. In metazoans, the VKD carboxylase is bifunctional, acting as an epoxidase that oxygenates vitamin K to a strong base and a carboxylase that uses the base to carboxylate Glu residues in VKD proteins, rendering them active in hemostasis and other physiologies. In contrast, the Leptospira ortholog showed epoxidase but not detectable carboxylase activity and divergence in a region of identity in all known metazoan VKD carboxylases that is important to Glu interaction. Furthermore, although the mammalian carboxylase is regulated so that vitamin K epoxidation does not occur unless Glu substrate is present, the Leptospira VKD epoxidase showed unfettered epoxidation in the absence of Glu substrate. Finally, human VKD protein orthologs were not detected in the L. interrogans genome. The combined data, then, suggest that Leptospira exapted the metazoan VKD carboxylase for some use other than VKD protein carboxylation, such as using the strong vitamin K base to drive a new reaction or to promote oxidative damage or depleting vitamin K to indirectly inhibit host VKD protein carboxylation."
+"Blankenberg, Daniel"	"Genomic Medicine Institute"	29790989	29688462	25655493	25001293	24743989	24585771	21775304	21531983	20562416	20069535	"Galaxy (homepage: https://galaxyproject.org, main public server: https://usegalaxy.org) is a web-based scientific analysis platform used by tens of thousands of scientists across the world to analyze large biomedical datasets such as those found in genomics, proteomics, metabolomics and imaging. Started in 2005, Galaxy continues to focus on three key challenges of data-driven biomedical science: making analyses accessible to all researchers, ensuring analyses are completely reproducible, and making it simple to communicate analyses so that they can be reused and extended. During the last two years, the Galaxy team and the open-source community around Galaxy have made substantial improvements to Galaxy's core framework, user interface, tools, and training materials. Framework and user interface improvements now enable Galaxy to be used for analyzing tens of thousands of datasets, and &gt;5500 tools are now available from the Galaxy ToolShed. The Galaxy community has led an effort to create numerous high-quality tutorials focused on common types of genomic analyses. The Galaxy developer and user communities continue to grow and be integral to Galaxy's development. The number of Galaxy public servers, developers contributing to the Galaxy framework and its tools, and users of the main Galaxy server have all increased substantially."	"Research in population genetics and evolutionary biology has always provided a computational backbone for life sciences as a whole. Today evolutionary and population biology reasoning are essential for interpretation of large complex datasets that are characteristic of all domains of today's life sciences ranging from cancer biology to microbial ecology. This situation makes algorithms and software tools developed by our community more important than ever before. This means that we, developers of software tool for molecular evolutionary analyses, now have a shared responsibility to make these tools accessible using modern technological developments as well as provide adequate documentation and training."	"The availability of high-throughput sequencing has created enormous possibilities for scientific discovery. However, the massive amount of data being generated has resulted in a severe informatics bottleneck. A large number of tools exist for analyzing next-generation sequencing (NGS) data, yet often there remains a disconnect between these research tools and the ability of many researchers to use them. As a consequence, several online resources and communities have been developed to assist researchers with both the management and the analysis of sequencing data sets. Here we describe the use and applications of common file formats for coding and storing genomic data, consider several web-accessible open-source resources for the visualization and analysis of NGS data, and provide examples of typical analyses with links to further detailed exercises. "	"The proliferation of web-based integrative analysis frameworks has enabled users to perform complex analyses directly through the web. Unfortunately, it also revoked the freedom to easily select the most appropriate tools. To address this, we have developed Galaxy ToolShed. "	"The extraordinary throughput of next-generation sequencing (NGS) technology is outpacing our ability to analyze and interpret the data. This chapter will focus on practical informatics methods, strategies, and software tools for transforming NGS data into usable information through the use of a web-based platform, Galaxy. The Galaxy interface is explored through several different types of example analyses. Instructions for running one's own Galaxy server on local hardware or on cloud computing resources are provided. Installing new tools into a personal Galaxy instance is also demonstrated. "	"The Galaxy platform has developed into a fully featured collaborative workbench, with goals of inherently capturing provenance to enable reproducible data analysis, and of making it straightforward to run one's own server. However, many Galaxy platform tools rely on the presence of reference data, such as alignment indexes, to function efficiently. Until now, the building of this cache of data for Galaxy has been an error-prone manual process lacking reproducibility and provenance. The Galaxy Data Manager framework is an enhancement that changes the management of Galaxy's built-in data cache from a manual procedure to an automated graphical user interface (GUI) driven process, which contains the same openness, reproducibility and provenance that is afforded to Galaxy's analysis tools. Data Manager tools allow the Galaxy administrator to download, create and install additional datasets for any type of reference data in real time. The Galaxy Data Manager framework is implemented in Python and has been integrated as part of the core Galaxy platform. Individual Data Manager tools can be defined locally or installed from a ToolShed, allowing the Galaxy community to define additional Data Manager tools as needed, with full versioning and dependency support."	"Here we describe a set of tools implemented within the Galaxy platform designed to make analysis of multiple genome alignments truly accessible for biologists. These tools are available through both a web-based graphical user interface and a command-line interface. This open-source toolset was implemented in Python and has been integrated into the online data analysis platform Galaxy (public web access: http://usegalaxy.org; download: http://getgalaxy.org). Additional help is available as a live supplement from http://usegalaxy.org/u/dan/p/maf. james.taylor@emory.edu; anton@bx.psu.edu Supplementary data are available at Bioinformatics online."	"Recent technological advances have lead to the ability to generate large amounts of data for model and non-model organisms. Whereas, in the past, there have been a relatively small number of central repositories that serve genomic data, an increasing number of distinct specialized data repositories and resources have been established. Here, we describe a generic approach that provides for the integration of a diverse spectrum of data resources into a unified analysis framework, Galaxy (http://usegalaxy.org). This approach allows the simplified coupling of external data resources with the data analysis tools available to Galaxy users, while leveraging the native data mining facilities of the external data resources. DATABASE URL: http://usegalaxy.org."	"Here, we describe a tool suite that functions on all of the commonly known FASTQ format variants and provides a pipeline for manipulating next generation sequencing data taken from a sequencing machine all the way through the quality filtering steps. This open-source toolset was implemented in Python and has been integrated into the online data analysis platform Galaxy (public web access: http://usegalaxy.org; download: http://getgalaxy.org). Two short movies that highlight the functionality of tools described in this manuscript as well as results from testing components of this tool suite against a set of previously published files are available at http://usegalaxy.org/u/dan/p/fastq"	"High-throughput data production has revolutionized molecular biology. However, massive increases in data generation capacity require analysis approaches that are more sophisticated, and often very computationally intensive. Thus, making sense of high-throughput data requires informatics support. Galaxy (http://galaxyproject.org) is a software system that provides this support through a framework that gives experimentalists simple interfaces to powerful tools, while automatically managing the computational details. Galaxy is distributed both as a publicly available Web service, which provides tools for the analysis of genomic, comparative genomic, and functional genomic data, or a downloadable package that can be deployed in individual laboratories. Either way, it allows experimentalists without informatics or programming expertise to perform complex large-scale analysis with just a Web browser."
+"Bonilha, Vera"	"Ophthalmic Research"	29721921	28088625	26215528	26202387	27747301	25491159	25265374	24664754	24090540	23844142	"In the retina, oxidative stress can initiate a cascade of events that ultimately leads to a focal loss of RPE cells and photoreceptors, a major contributing factor in geographic atrophy. Despite these implications, the molecular regulation of RPE oxidative metabolism under physiological and pathological conditions remains largely unknown. DJ-1 functions as an antioxidant, redox-sensitive molecular chaperone, and transcription regulator, which protected cells from oxidative stress. Here we discuss our progress toward characterization of the DJ-1 function in the protection of RPE to oxidative stress."	"Oxidative stress alters physiological function in most biological tissues and can lead to cell death. In the retina, oxidative stress initiates a cascade of events leading to focal loss of RPE and photoreceptors, which is thought to be a major contributing factor to geographic atrophy. Despite these implications, the molecular regulation of RPE oxidative stress under normal and pathological conditions remains largely unknown. A better understanding of the mechanisms involved in regulating RPE and photoreceptors oxidative stress response is greatly needed. To this end we evaluated photoreceptor and RPE changes in mice deficient in DJ-1, a protein that is thought to be important in protecting cells from oxidative stress. Young (3 months) and aged (18 months) DJ-1 knockout (DJ-1 KO) and age-matched wild-type mice were examined. In both group of aged mice, scanning laser ophthalmoscopy (SLO) showed the presence of a few autofluorescent foci. The 18 month-old DJ-1 KO retinas were also characterized by a noticeable increase in RPE fluorescence to wild-type. Optical coherence tomography (OCT) imaging demonstrated that all retinal layers were present in the eyes of both DJ-1 KO groups. ERG comparisons showed that older DJ-1 KO mice had reduced sensitivity under dark- and light-adapted conditions compared to age-matched control. Histologically, the RPE contained prominent vacuoles in young DJ-1 KO group with the appearance of enlarged irregularly shaped RPE cells in the older group. These were also evident in OCT and in whole mount RPE/choroid preparations labeled with phalloidin. Photoreceptors in the older DJ-1 KO mice displayed decreased immunoreactivity to rhodopsin and localized reduction in cone markers compared to the wild-type control group. Lower levels of activated Nrf2 were evident in retina/RPE lysates in both young and old DJ-1 KO mouse groups compared to wild-type control levels. Conversely, higher levels of protein carbonyl derivatives and iNOS immunoreactivity were detected in retina/RPE lysates from both young and old DJ-1 KO mice. These results demonstrate that DJ-1 KO mice display progressive signs of retinal/RPE degeneration in association with higher levels of oxidative stress markers. Collectively this analysis indicates that DJ-1 plays an important role in protecting photoreceptors and RPE from oxidative damage during aging."	"DJ-1/PARK7 mutations or deletions cause autosomal recessive early onset Parkinson's disease (PD). Thus, DJ-1 protein has been extensively studied in brain and neurons. PD patients display visual symptoms; however, the visual symptoms specifically attributed to PD patients carrying DJ-1/PARK7 mutations are not known. In this study, we analyzed the structure and physiology of retinas of 3- and 6-month-old DJ-1 knockout (KO) mice to determine how loss of function of DJ-1 specifically contributes to the phenotypes observed in PD patients. As compared to controls, the DJ-1 KO mice displayed an increase in the amplitude of the scotopic ERG b-wave and cone ERG, while the amplitude of a subset of the dc-ERG components was decreased. The main structural changes in the DJ-1 KO retinas were found in the outer plexiform layer (OPL), photoreceptors and retinal pigment epithelium (RPE), which were observed at 3 months and progressively increased at 6 months. RPE thinning and structural changes within the OPL were observed in the retinas in DJ-1 KO mice. DJ-1 KO retinas also exhibited disorganized outer segments, central decrease in red/green cone opsin staining, decreased labeling of ezrin, broader distribution of ribeye labeling, decreased tyrosine hydroxylase in dopaminergic neurons, and increased 7,8-dihydro-8-oxoguanine-labeled DNA oxidation. Accelerated outer retinal atrophy was observed in DJ-1 KO mice after selective oxidative damage induced by a single tail vein injection of NaIO3, exposing increased susceptibility to oxidative stress. Our data indicate that DJ-1-deficient retinas exhibit signs of morphological abnormalities and physiological dysfunction in association with increased oxidative stress. Degeneration of RPE cells in association with oxidative stress is a key hallmark of age-related macular degeneration (AMD). Therefore, in addition to detailing the visual defects that occur as a result of the absence of DJ-1, our data is also relevant to AMD pathogenesis. "	"To evaluate the histopathology in donor eyes from patients with autosomal dominant retinitis pigmentosa (ADRP) caused by p.P23H, p.P347T and p.P347L rhodopsin ( RHO ) gene mutations. Eyes from a 72-year-old male (donor 1), an 83-year-old female (donor 2), an 80-year-old female (donor 3), and three age-similar normal eyes were examined macroscopically, by scanning laser ophthalmoscopy and optical coherence tomography imaging. Perifoveal and peripheral pieces were processed for microscopy and immunocytochemistry with markers for photoreceptor cells. DNA analysis revealed RHO mutations c.68C&gt;A (p.P23H) in donor 1, c.1040C&gt;T (p.P347L) in donor 2 and c.1039C&gt;A (p.P347T) in donor 3. Histology of the ADRP eyes showed retinas with little evidence of stratified nuclear layers in the periphery and a prominent inner nuclear layer present in the perifoveal region in the p.P23H and p.P347T eyes, while it was severely atrophic in the p.P347L eye. The p.P23H and p.P347T mutations cause a profound loss of rods in both the periphery and perifovea, while the p.P347L mutation displays near complete absence of rods in both regions. All three rhodopsin mutations caused a profound loss of cones in the periphery. The p.P23H and p.P347T mutations led to the presence of highly disorganized cones in the perifovea. However, the p.P347L mutation led to near complete absence of cones also in the perifovea. Our results support clinical findings indicating that mutations affecting residue P347 develop more severe phenotypes than those affecting P23. Furthermore, our results indicate a more severe phenotype in the p.P347L retina as compared to the p.P347T retina."	"To define the retinal pathology in a 3 year-old eye donor who died from complications of an undiagnosed genetic syndrome. Eyes were fixed and analyzed using macroscopic fundus photography (MF), confocal scanning laser ophthalmoscopy (cSLO) and spectral-domain optical coherence tomography (SD-OCT). Small areas from the perifovea and periphery were processed for histology and indirect immunofluorescence, using antibodies specific to retinal proteins such as rhodopsin, cone arrestin, RPE65 and others. Available medical records were also reviewed. With all three imaging modalities, the affected donor's eyes lacked the distinct morphological detail typically observed with these techniques in postmortem control eyes. MF images showed a &quot;photonegative effect&quot; due to a hypopigmented macula relative to a hyperpigmented retinal background. cSLO imaging demonstrated a weak autofuorescence signal that was largely devoid of the usual retinal structures compared to the control. SD-OCT suggested disorganization of the affected retina, absence of a photoreceptor layer, and degeneration of the choroid in the macular area. Histologic findings indicated a highly disorganized photoreceptor layer in the macula and periphery. The RPE layer displayed thinning in some regions of the periphery and decreased pigmentation in most areas. Rods and cones were significantly reduced in the affected retina but a few cones were detected in the perifovea. Centrin-2 labeling was mostly absent from the connecting cilium of the photoreceptor cells. Medical record review pointed to a possible clinical diagnosis of Joubert syndrome. The retinal degenerative findings, and absence of centrin-2 labeling are compatible with the expected retinal phenotype in patients with Joubert syndrome."	"To evaluate the retinal histopathology in donor eyes from patients with autosomal recessive retinitis pigmentosa (arRP) caused by EYS mutations. Eyes from a 72-year-old female (donor 1, family 1), a 91-year-old female (donor 2, family 2), and her 97-year-old sister (donor 3, family 2) were evaluated with macroscopic, scanning laser ophthalmoscopy (SLO) and optical coherence tomography (OCT) imaging. Age-similar normal eyes and an eye donated by donor 1's asymptomatic mother (donor 4, family 1) were used as controls. The perifovea and peripheral retina were processed for microscopy and immunocytochemistry with markers for cone and rod photoreceptor cells. DNA analysis revealed EYS mutations c.2259 + 1G &gt; A and c.2620C &gt; T (p.Q874X) in family 1, and c.4350_4356del (p.I1451Pfs*3) and c.2739-?_3244 + ?del in family 2. Imaging studies revealed the presence of bone spicule pigment in arRP donor retinas. Histology of all three affected donor eyes showed very thin retinas with little evidence of stratified nuclear layers in the periphery. In contrast, the perifovea displayed a prominent inner nuclear layer. Immunocytochemistry analysis demonstrated advanced retinal degenerative changes in all eyes, with near-total absence of rod photoreceptors. In addition, we found that the perifoveal cones were more preserved in retinas from the donor with the midsize genomic rearrangement (c.4350_4356del (p.I1451Pfs*3) and c.2739-?_3244 + ?del) than in retinas from the donors with the truncating (c.2259 + 1G &gt; A and c.2620C &gt; T (p.Q874X) mutations. Advanced retinal degenerative changes with near-total absence of rods and preservation of some perifoveal cones are observed in arRP donor retinas with EYS mutations. "	"The goal of this study was to define the histopathology of the retina in donor eyes from a patient with Stargardt disease (STGD1) due to compound mutations in the ABCA4 gene. Eyes were obtained from a 66-year-old female and fixed within 18 hours postmortem. The fundi of the posterior globes were evaluated with macroscopic, SLO and OCT imaging. The perifoveal and peripheral regions were processed for electron microscopy and immunocytochemistry using cell specific antibodies. Two age-similar normal eyes were used as controls. Prior ophthalmic examinations and genetic test results were also reviewed. All imaging modalities showed scattered bone spicules in the peripheral retina. Atrophy of the RPE was present around the optic nerve as evidenced by the absence of SLO autofluorescence. Histology analysis showed a severely degenerated fovea with little evidence of any retinal layering or remaining RPE. The fovea was severely degenerated, with little evidence of any retinal cell layer, including the RPE. In contrast, retinal nuclear layers were present in the periphery. The perifoveal region contained few cones labeled with cone-specific antibodies; some rhodopsin-labeled cells, reactive glia labeled with GFAP; and decreased autofluorescence of the RPE. The fovea was free of cone-specific labeling, contained a few disorganized rhodopsin-labeled cells and showed substantial GFAP labeling and no autofluorescent material in the retina. The periphery displayed stubby cells labeled with cone-specific antibodies, decreased rhodopsin-labeled cells, increased GFAP staining, and autofluorescent granules in the RPE. The histopathology of the retina in this patient with Stargardt disease displayed a highly degenerated fovea. In all retinal locations studied, cones were more severely affected than rods."	"DJ-1 is a protein expressed in many tissues including the brain where it has been extensively studied due to its association with Parkinson's Disease (PD). DJ-1 was reported to function as an antioxidant, redox-sensitive molecular chaperone, and transcription regulator, which protected cells from oxidative stress by modifying signaling pathways that regulate cell survival. Here we discuss our progress toward characterization of the DJ-1 function in the protection of RPE to oxidative stress. "	"The retinal pigment epithelium (RPE) constitutes a monolayer of cuboidal cells that interact apically with the interphotoreceptor matrix (IPM) and outer segments of the photoreceptor cells and basally with the subjacent Bruch's membrane. This highly polarized structure is maintained by the cytoskeleton of individual cells and their interactions at the basolateral junctional complexes that stabilize this epithelial structure. This RPE complex network of filaments, tubules and associated proteins is modeled by the cellular environment, the RPE intercellular interactions, and by its interactions with the extracellular matrix. This is a review of the key features of the RPE cytoskeleton in vivo and in vitro. "	"DJ-1 is found in many tissues, including the brain, where it has been extensively studied due to its association with Parkinson's disease. DJ-1 functions as a redox-sensitive molecular chaperone and transcription regulator that robustly protects cells from oxidative stress. Retinal pigment epithelial (RPE) cultures were treated with H2O2 for various times followed by biochemical and immunohistological analysis. Cells were transfected with adenoviruses carrying the full-length human DJ-1 cDNA and a mutant construct, which has the cysteine residues at amino acid 46, 53 and 106 mutated to serine (C to S) prior to stress experiments. DJ-1 localization, levels of expression and reactive oxygen species (ROS) generation were also analyzed in cells expressing exogenous DJ-1 under baseline and oxidative stress conditions. The presence of DJ-1 and oxidized DJ-1 was evaluated in human RPE total lysates. The distribution of DJ-1 was assessed in AMD and non-AMD cryosectionss and in isolated human Bruch's membrane (BM)/choroid from AMD eyes. DJ-1 in RPE cells under baseline conditions, displays a diffuse cytoplasmic and nuclear staining. After oxidative challenge, more DJ-1 was associated with mitochondria. Increasing concentrations of H2O2 resulted in a dose-dependent increase in DJ-1. Overexpression of DJ-1 but not the C to S mutant prior to exposure to oxidative stress led to significant decrease in the generation of ROS. DJ-1 and oxDJ-1 intensity of immunoreactivity was significantly higher in the RPE lysates from AMD eyes. More DJ-1 was localized to RPE cells from AMD donors with geographic atrophy and DJ-1 was also present in isolated human BM/choroid from AMD eyes. DJ-1 regulates RPE responses to oxidative stress. Most importantly, increased DJ-1 expression prior to oxidative stress leads to decreased generation of ROS, which will be relevant for future studies of AMD since oxidative stress is a known factor affecting this disease."
+"Brown, J. Mark"	"Cardiovascular and Metabolic Sciences"	29307889	29172946	29074585	28636934	28389555	27941027	27396333	26729489	26218418	25930707	"Although diet has long been known to contribute to the pathogenesis of cardiovascular disease (CVD), research over the past decade has revealed an unexpected interplay between nutrient intake, gut microbial metabolism and the host to modify the risk of developing CVD. Microbial-associated molecular patterns are sensed by host pattern recognition receptors and have been suggested to drive CVD pathogenesis. In addition, the host microbiota produces various metabolites, such as trimethylamine-N-oxide, short-chain fatty acids and secondary bile acids, that affect CVD pathogenesis. These recent advances support the notion that targeting the interactions between the host and microorganisms may hold promise for the prevention or treatment of CVD. In this Review, we summarize our current knowledge of the gut microbial mechanisms that drive CVD, with special emphasis on therapeutic interventions, and we highlight the need to establish causal links between microbial pathways and CVD pathogenesis."	"The human body is an integrated circuit between microbial symbionts and our Homo sapien genome, which communicate bi-directionally to maintain homeostasis within the human meta-organism. There is now strong evidence that microbes resident in the human intestine can directly contribute to the pathogenesis of obesity and associated cardiometabolic disorders. In fact, gut microbes represent a filter of our greatest environmental exposure - the foods we consume. It is now clear that we each experience a given meal differently, based on our unique gut microbial communities. Biologically active gut microbe-derived metabolites, such as short chain fatty acids, secondary bile acids, and trimethylamine-N-oxide (TMAO), are now uniquely recognized as contributors to obesity and related cardiometabolic disorders. However, mechanistic insights into how microbe-derived metabolites promote obesity are largely unknown. Recent work has demonstrated that the meta-organismal production of the bacterial co-metabolite TMAO is linked to suppression of beiging of white adipose tissue in mice and humans. Furthermore, the TMAO pathway is becoming an increasingly attractive therapeutic target in obesity-associated diseases such as type 2 diabetes, kidney failure, and cardiovascular disease. In this commentary we discuss recent findings linking the TMAO pathway to obesity-associated disorders, and provide additional insights into potential mechanisms driving this microbe-host interaction."	"Human genetic variants near the FADS (fatty acid desaturase) gene cluster (FADS1-2-3) are strongly associated with cardiometabolic traits including dyslipidemia, fatty liver, type 2 diabetes mellitus, and coronary artery disease. However, mechanisms underlying these genetic associations are unclear. Here, we specifically investigated the physiological role of the Δ-5 desaturase FADS1 in regulating diet-induced cardiometabolic phenotypes by treating hyperlipidemic LDLR (low-density lipoprotein receptor)-null mice with antisense oligonucleotides targeting the selective knockdown of Fads1. Fads1 knockdown resulted in striking reorganization of both ω-6 and ω-3 polyunsaturated fatty acid levels and their associated proinflammatory and proresolving lipid mediators in a highly diet-specific manner. Loss of Fads1 activity promoted hepatic inflammation and atherosclerosis, yet was associated with suppression of hepatic lipogenesis. Fads1 knockdown in isolated macrophages promoted classic M1 activation, whereas suppressing alternative M2 activation programs, and also altered systemic and tissue inflammatory responses in vivo. Finally, the ability of Fads1 to reciprocally regulate lipogenesis and inflammation may rely in part on its role as an effector of liver X receptor signaling. These results position Fads1 as an underappreciated regulator of inflammation initiation and resolution, and suggest that endogenously synthesized arachidonic acid and eicosapentaenoic acid are key determinates of inflammatory disease progression and liver X receptor signaling."	"Emerging evidence suggests that microbes resident in the human intestine represent a key environmental factor contributing to obesity-associated disorders. Here, we demonstrate that the gut microbiota-initiated trimethylamine N-oxide (TMAO)-generating pathway is linked to obesity and energy metabolism. In multiple clinical cohorts, systemic levels of TMAO were observed to strongly associate with type 2 diabetes. In addition, circulating TMAO levels were associated with obesity traits in the different inbred strains represented in the Hybrid Mouse Diversity Panel. Further, antisense oligonucleotide-mediated knockdown or genetic deletion of the TMAO-producing enzyme flavin-containing monooxygenase 3 (FMO3) conferred protection against obesity in mice. Complimentary mouse and human studies indicate a negative regulatory role for FMO3 in the beiging of white adipose tissue. Collectively, our studies reveal a link between the TMAO-producing enzyme FMO3 and obesity and the beiging of white adipose tissue."	"Recent advances in metabolomic and genome mining approaches have uncovered a poorly understood metabolome that originates solely or in part from bacterial enzyme sources. Whether living on exposed surfaces or within our intestinal tract, our microbial inhabitants produce a remarkably diverse set of natural products and small molecule metabolites that can impact human health and disease. Highlighted here, the gut microbe-derived metabolite trimethylamine N-oxide has been causally linked to the development of cardiovascular diseases. Recent studies reveal drugging this pathway can inhibit atherosclerosis development in mice. Building on this example, we discuss challenges and untapped potential of targeting bacterial enzymology for improvements in human health."	"Hepatitis C virus (HCV) is an enveloped RNA virus responsible for 170 million cases of viral hepatitis worldwide. Over 50% of chronically infected HCV patients develop hepatic steatosis, and steatosis can be induced by expression of HCV core protein (core) alone. Additionally, core must associate with cytoplasmic lipid droplets (LDs) for steatosis development and viral particle assembly. Due to the importance of the LD as a key component of hepatic lipid storage and as a platform for HCV particle assembly, it seems this dynamic subcellular organelle is a gatekeeper in the pathogenesis of viral hepatitis. Here, we hypothesized that core requires the host LD scaffold protein, perilipin (PLIN)3, to induce hepatic steatosis. To test our hypothesis in vivo, we have studied core-induced hepatic steatosis in the absence or presence of antisense oligonucleotide-mediated knockdown of PLIN3. PLIN3 knockdown blunted HCV core-induced steatosis in transgenic mice fed either chow or a moderate fat diet. Collectively, our studies demonstrate that the LD scaffold protein, PLIN3, is essential for HCV core-induced hepatic steatosis and provide new insights into the pathogenesis of HCV."	"Adipose triglyceride lipase (ATGL) and comparative gene identification 58 (CGI-58) are critical regulators of triacylglycerol (TAG) turnover. CGI-58 is thought to regulate TAG mobilization by stimulating the enzymatic activity of ATGL. However, it is not known whether this coactivation function of CGI-58 occurs in vivo. Moreover, the phenotype of human CGI-58 mutations suggests ATGL-independent functions. Through direct comparison of mice with single or double deficiency of CGI-58 and ATGL, we show here that CGI-58 knockdown causes hepatic steatosis in both the presence and absence of ATGL. CGI-58 also regulates hepatic diacylglycerol (DAG) and inflammation in an ATGL-independent manner. Interestingly, ATGL deficiency, but not CGI-58 deficiency, results in suppression of the hepatic and adipose de novo lipogenic program. Collectively, these findings show that CGI-58 regulates hepatic neutral lipid storage and inflammation in the genetic absence of ATGL, demonstrating that mechanisms driving TAG lipolysis in hepatocytes differ significantly from those in adipocytes."	"Statin drugs have proven a successful and relatively safe therapy for the treatment of atherosclerotic cardiovascular disease (CVD). However, even with the substantial low-density lipoprotein (LDL) cholesterol lowering achieved with statin treatment, CVD remains the top cause of death in developed countries. Selective inhibitors of the cholesterol esterifying enzyme sterol-O acyltransferase 2 (SOAT2) hold great promise as effective CVD therapeutics. In mouse models, previous work has demonstrated that either antisense oligonucleotide (ASO) or small molecule inhibitors of SOAT2 can effectively reduce CVD progression, and even promote regression of established CVD. Although it is well known that SOAT2-driven cholesterol esterification can alter both the packaging and retention of atherogenic apoB-containing lipoproteins, here we set out to determine whether SOAT2-driven cholesterol esterification can also impact basal and liver X receptor (LXR)-stimulated fecal neutral sterol loss. These studies demonstrate that SOAT2 is a negative regulator of LXR-stimulated fecal neutral sterol loss in mice. "	"Atherosclerosis and associated cardiovascular disease still remain the largest cause of mortality worldwide. Several recent studies have discovered that metabolism of common nutrients by gut microbes can produce a proatherogenic metabolite called trimethylamine-N-oxide (TMAO). The goal of this review is to discuss emerging evidence that the hepatic enzyme that generates TMAO, flavin monooxygenase 3 (FMO3), plays a regulatory role in maintaining whole body cholesterol balance and atherosclerosis development. Several independent studies have recently uncovered a link between either FMO3 itself or its enzymatic product TMAO with atherosclerosis and hepatic insulin resistance. These recent studies show that inhibition of FMO3 stimulates macrophage reverse cholesterol transport and protects against atherosclerosis in mice. A growing body of work demonstrates that nutrients present in high-fat foods (phosphatidylcholine, choline and L-carnitine) can be metabolized by the gut microbial enzymes to generate trimethylamine, which is then further metabolized by the host enzyme FMO3 to produce proatherogenic TMAO. Here, we discuss emerging evidence that the TMAO-producing enzyme FMO3 is centrally involved in the pathogenesis of atherosclerosis by regulating cholesterol metabolism and insulin resistance, and how these new insights provide exciting new avenues for cardiovascular disease therapies."	"Cardiovascular disease (CVD) remains the largest cause of mortality in most developed countries. Although recent failed clinical trials and Mendelian randomization studies have called into question the high-density lipoprotein (HDL) hypothesis, it remains well accepted that stimulating the process of reverse cholesterol transport (RCT) can prevent or even regress atherosclerosis. The prevailing model for RCT is that cholesterol from the artery wall must be delivered to the liver where it is secreted into bile before leaving the body through fecal excretion. However, many studies have demonstrated that RCT can proceed through a non-biliary pathway known as transintestinal cholesterol excretion (TICE). The goal of this review is to discuss the current state of knowledge of the TICE pathway, with emphasis on points of therapeutic intervention. "
+"Bruggeman, Leslie"	"Inflammation and Immunity"	31202388	30332315	29192064	27026370	24788168	23087767	21221075	19857388	19776779	17195181	"Viral infections in an immunocompetent host can cause both acute and chronic kidney diseases, either by direct damage to the infected kidney cells or as a consequence of systemic immune responses that impact the kidneys' function. Viruses have evolved mechanisms to hijack signaling pathways of the infected cell, including the mammalian target of rapamycin pathway to support viral replication, and to evade antiviral immune responses such as those mediated by miR-155 via microRNA mimetics expressed by the virus. At both the cellular and systemic levels, the host has also evolved mechanisms to counter the viral subversion strategies in the evolutionary battle for mutual survival. In the era of genomic medicine, understanding individual genetic variations that lead to differences in susceptibilities to infection and variabilities in immune responses may open new avenues for treatment, such as the recently described functions of apolipoprotein L1 risk alleles in HIV-associated nephropathy. In addition, state-of-the-art high-throughput sequencing methods have discovered new viruses as the cause for chronic diseases not previously attributed to an infection. The potential application of these methods to idiopathic kidney diseases may reveal similar occult infections by unknown viruses. Precision medicine objectives to optimize host-directed and pathogen-directed therapies for kidney diseases associated with infectious causes will only be achieved through detailed understanding of genetic susceptibility associated with immune responses and viral tropism."	"The mechanism that explains the association of APOL1 variants with nondiabetic kidney diseases in African Americans remains unclear. Kidney disease risk is inherited as a recessive trait, and many studies investigating the intracellular function of APOL1 have indicated the APOL1 variants G1 and G2 are associated with cytotoxicity. Whether cytotoxicity results from the absence of a protective effect conferred by the G0 allele or is induced by a deleterious effect of variant allele expression has not be conclusively established. A central issue hampering basic biology studies is the lack of model systems that authentically replicate APOL1 expression patterns. APOL1 is present in humans and a few other primates and appears to have important functions in the kidney, as the kidney is the primary target for disease associated with the genetic variance. There have been no studies to date assessing the function of untagged APOL1 protein under native expression in human or primate kidney cells, and no studies have examined the heterozygous state, a disease-free condition in humans. A second major issue is the chronic kidney disease (CKD)-associated APOL1 variants are conditional mutations, where the disease-inducing function is only evident under the appropriate environmental stimulus. In addition, it is possible there may be more than one mechanism of pathogenesis that is dependent on the nature of the stressor or other genetic variabilities. Studies addressing the function of APOL1 and how the CKD-associated APOL1 variants cause kidney disease are challenging and remain to be fully investigated under conditions that faithfully model known human genetics and physiology."	"The renal podocyte is central to the filtration function of the kidney that is dependent on maintaining both highly organized, branched cell structures forming foot processes, and a unique cell-cell junction, the slit diaphragm. Our recent studies investigating the developmental formation of the slit diaphragm identified a novel claudin family tetraspannin, TM4SF10, which is a binding partner for ADAP (also known as Fyn binding protein Fyb). To investigate the role of ADAP in podocyte function in relation to Fyn and TM4SF10, we examined ADAP knockout (KO) mice and podocytes. ADAP KO mice developed glomerular pathology that began as hyalinosis and progressed to glomerulosclerosis, with aged male animals developing low levels of albuminuria. Podocyte cell lines established from the KO mice had slower attachment kinetics compared to wild-type cells, although this did not affect the total number of attached cells nor the ability to form focal contacts. After attachment, the ADAP KO cells did not attain typical podocyte morphology, lacking the elaborate cell protrusions typical of wild-type podocytes, with the actin cytoskeleton forming circumferential stress fibers. The absence of ADAP did not alter Fyn levels nor were there differences between KO and wild-type podocytes in the reduction of Fyn activating phosphorylation events with puromycin aminonucleoside treatment. In the setting of endogenous TM4SF10 overexpression, the absence of ADAP altered the formation of cell-cell contacts containing TM4SF10. These studies suggest ADAP does not alter Fyn activity in podocytes, but appears to mediate downstream effects of Fyn controlled by TM4SF10 involving actin cytoskeleton organization."	"APOL1 risk variants are associated with kidney disease in blacks, but the mechanisms of renal injury associated with APOL1 risk variants are unknown. Because APOL1 is unique to humans and some primates, we created transgenic (Tg) mice using the promoter of nephrin-encoding Nphs1 to express the APOL1 reference sequence (G0) or the G2 risk variant in podocytes, establishing Tg lines with a spectrum of APOL1 expression levels. Podocytes from Tg-G0 and Tg-G2 mice did not undergo necrosis, apoptosis, or autophagic cell death in vivo, even in lines with highly expressed transgenes. Further, Tg-G0 and Tg-G2 mice did not develop kidney pathology, proteinuria, or azotemia as of 300 days of age. However, by 200 days of age, Tg-G2 mice had significantly lower podocyte density than age-matched WT and Tg-G0 mice had, a difference that was not evident at weaning. Notably, a pregnancy-associated phenotype that encompassed eclampsia, preeclampsia, fetal/neonatal deaths, and small litter sizes occurred in some Tg-G0 mice and more severely in Tg-G2 mice. Similar to human placenta, placentas of Tg mice expressed APOL1. Overall, these results suggest podocyte depletion could predispose individuals with APOL1 risk genotypes to kidney disease in response to a second stressor, and add to other published evidence associating APOL1 expression with preeclampsia."	"Tumor necrosis factor (TNF)-mediated activation of the NF-κB family of transcription factors is mediated by two receptors, TNFR1 and TNFR2. These two receptors have unique roles in response to TNF and have been the focus of new therapeutic strategies in a variety of diseases with an immune or an inflammatory component. This chapter describes in vitro methods to functionally identify which TNF receptor is initiating NF-κB activation. This will include antibody-mediated receptor blockade and RNAi-mediated gene silencing targeting the individual receptors. The NF-κB activation methods presented include standard, accepted assays for monitoring the sequential activation steps through the NF-κB signal transduction cascade, including IκBα degradation, NF-κB nuclear translocation, and transcriptional activation of gene expression. "	"In specialized capillary beds such as the kidney glomerulus, the sheet-like structure of the basement membrane in conjunction with opposing monolayers of endothelium and epithelium form the functioning filtration unit of the kidney. Using a novel cross-linking method on a collagen substrate, we have created a novel hydrogel scaffold to substitute for the basement membrane. Using a simple casting method to create thin films of the hydrogel scaffold (1-5μm), the scaffolds were suitable for long-term static culture, and supported cell attachment and long term cell viability similar to a standard type I collagen substrate. Bulk diffusion and protein permeability of the hydrogel scaffold were evaluated, in addition to its use in a perfusion chamber where it withstood hydraulic pressures typical for glomerular capillaries. This system thus provided a suitable cell substrate for the co-culture of renal epithelial podocytes and endothelial cells in a device that replicates the geometry of the in vivo juxtaposition of the two cell types in relation to their basement membrane."	"The development of proliferative podocytopathies has been linked to ligation of tumor necrosis factor receptor 2 (TNFR2) expressed on the renal parenchyma; however, the TNFR2-positive cells within the kidney responsible for podocyte injury are unknown. We detected de novo expression of TNFR2 on podocytes before hyperplastic injury in crescentic glomerulonephritis of mice with nephrotoxic nephritis, and in collapsing glomerulopathy of Tg26(HIV/nl) mice, kd/kd mice, and human beings. We further found that serum levels of soluble TNF-α and TNFR2 correlated significantly with renal injury in Tg26(HIV/nl) mice. Thus, we asked whether ligand binding of TNFR2 on podocytes ex vivo precipitates the characteristic proliferative and pro-inflammatory diseased podocyte phenotypes. Soluble TNF-α activated NF-κB and dose-dependently induced podocyte proliferation, marked by the expression of the podocyte G(1) cyclin and NF-κB target gene, cyclin D1. Microarray gene and chemokine protein expression profiling showed a marked pro-inflammatory NF-κB signature, and activated podocytes secreting CCL2- and CCL5-induced macrophage migration in transwell assays. Neutralization of TNFR2 on podocytes with blocking antibodies abrogated NF-κB activation and the induction of cyclin D1 by TNF-α, and identified TNFR2 as the primary receptor that induced IκBα degradation, the initiating event in NF-κB activation. These results suggest that TNFR2 expressed on podocytes and its canonical NF-κB signaling may directly interpose the compound pathogenic responses by podocytes to TNF-α, in the absence of other TNFR2-positive renal cell types in proliferative podocytopathies."	"Direct effects of HIV-1 infection on the kidney combine with immune and genetic factors, comorbidities, coinfections, and medication toxicities to induce a spectrum of kidney disorders in HIV disease. The most dramatic of these, HIV-associated nephropathy (HIVAN), emerges almost exclusively in persons of African descent and is associated with rapid progression to end-stage renal disease in the absence of antiretroviral therapy (ART). ART modifies the natural history of HIVAN, but the renal benefits of ART may not be limited to HIVAN. ART is often under prescribed or incorrectly dosed in persons with kidney disease. Vigilant attention to renal function and an understanding of the complex associations involving the kidneys are necessary for optimal care of these patients."	"The two most common HIV-associated renal diseases, HIV-associated nephropathy and HIV immune-complex kidney disease, share the common pathologic finding of hyperplasia within the glomerulus. Podocyte injury is central to the pathogenesis of these diseases; however, the source of the proliferating glomerular epithelial cell remains a topic of debate. Parenchymal injury has been linked to direct infection of renal epithelial cells by HIV-1, although the mechanism of viral entry into this non-lymphoid compartment is unclear. Although transgenic rodent models have provided insight into viral proteins responsible for inducing renal disease, such models have substantial limitations. Rodent HIV-1 models, for instance, cannot replicate all features of immune activation, a process that could have an important role in the pathogenesis of the HIV-associated renal diseases."	"Cell junctions in the nephron are highly specialized to perform specific and distinct filtration and reabsorption functions. The mature kidney forms complex cell junctions including slit diaphragms that prevent the passage of serum proteins into the filtrate, and tubule cell junctions that regulate specific paracellular ion reuptake. We have investigated the expression of TM4SF10 (Trans-Membrane tetra(4)-Span Family 10) in mouse kidneys. TM4SF10 is the vertebrate orthologue of Caenorhabditis elegans VAB-9, a tetraspan adherens junction protein in the PMP22/EMP/Claudin family of proteins. We found that TM4SF10 localizes at the basal-most region of podocyte precursors before the capillary loop stage, at some tubule precursors, and at the ureteric bud junction with S-shaped bodies. Overall expression of TM4SF10 peaked at postnatal day 4 and was virtually absent in adult kidneys. The very limited expression of TM4SF10 protein that persisted into adulthood was restricted to a few tubule segments but remained localized to the basal region of lateral membranes. In undifferentiated cultured podocytes, TM4SF10 localized to the perinuclear region and translocated to the cell membrane after Cadherin appearance at cell-cell contacts. TM4SF10 colocalized with ZO1 and p120ctn in undifferentiated confluent podocytes and also colocalized with the tips of actin filaments at cell contacts. Upon differentiation of cultured podocytes, TM4SF10 protein disappeared from cell contacts and expression ceased. These results suggest that TM4SF10 functions during differentiation of podocytes and may participate in the maturation of cell junctions from simple adherens junctions to elaborate slit diaphragms. TM4SF10 may define a new class of Claudin-like proteins that function during junctional development."
+"Byzova, Tatiana"	"Neurosciences"	29724896	28860945	28829753	28570266	27713004	26971877	26965920	25966710	25595903	25540429	"Early stages of inflammation are characterized by extensive oxidative insult by recruited and activated neutrophils. Secretion of peroxidases, including the main enzyme, myeloperoxidase, leads to the generation of reactive oxygen species. We show that this oxidative insult leads to polyunsaturated fatty acid (eg, docosahexaenoate), oxidation, and accumulation of its product 2-(ω-carboxyethyl)pyrrole (CEP), which, in turn, is capable of protein modifications. In vivo CEP is generated predominantly at the inflammatory sites in macrophage-rich areas. During thioglycollate-induced inflammation, neutralization of CEP adducts dramatically reduced macrophage accumulation in the inflamed peritoneal cavity while exhibiting no effect on the early recruitment of neutrophils, suggesting a role in the second wave of inflammation. CEP modifications were abundantly deposited along the path of neutrophils migrating through the 3-dimensional fibrin matrix in vitro. Neutrophil-mediated CEP formation was markedly inhibited by the myeloperoxidase inhibitor, 4-ABH, and significantly reduced in myeloperoxidase-deficient mice. On macrophages, CEP adducts were recognized by cell adhesion receptors, integrin αMβ2 and αDβ2 Macrophage migration through CEP-fibrin gel was dramatically augmented when compared with fibrin alone, and was reduced by β2-integrin deficiency. Thus, neutrophil-mediated oxidation of abundant polyunsaturated fatty acids leads to the transformation of existing proteins into stronger adhesive ligands for αMβ2- and αDβ2-dependent macrophage migration. The presence of a carboxyl group rather than a pyrrole moiety on these adducts, resembling characteristics of bacterial and/or immobilized ligands, is critical for recognition by macrophages. Therefore, specific oxidation-dependent modification of extracellular matrix, aided by neutrophils, promotes subsequent αMβ2- and αDβ2-mediated migration/retention of macrophages during inflammation."	"It is well accepted that functional activity of platelet integrin αIIbβ3 is crucial for hemostasis and thrombosis. The β3 subunit of the complex undergoes tyrosine phosphorylation shown to be critical for outside-in integrin signaling and platelet clot retraction ex vivo. However, the role of this important signaling event in other aspects of prothrombotic platelet function is unknown. Here, we assess the role of β3 tyrosine phosphorylation in platelet function regulation with a knock-in mouse strain, where two β3 cytoplasmic tyrosines are mutated to phenylalanine (DiYF). We employed platelet transfusion technique and intravital microscopy for observing the cellular events involved in specific steps of thrombus growth to investigate in detail the role of β3 tyrosine phosphorylation in arterial thrombosis in vivo. Upon injury, DiYF mice exhibited delayed arterial occlusion and unstable thrombus formation. The mean thrombus volume in DiYF mice formed on collagen was only 50% of that in WT. This effect was attributed to DiYF platelets but not to other blood cells and endothelium, which also carry these mutations. Transfusion of isolated DiYF but not WT platelets into irradiated WT mice resulted in reversal of the thrombotic phenotype and significantly prolonged blood vessel occlusion times. DiYF platelets exhibited reduced adhesion to collagen under in vitro shear conditions compared to WT platelets. Decreased platelet microparticle release after activation, both in vitro and in vivo, were observed in DiYF mice compared to WT mice. β3 tyrosine phosphorylation of platelet αIIbβ3 regulates both platelet pro-thrombotic activity and the formation of a stable platelet thrombus, as well as arterial microparticle release."	NA	"Microglia play a critical role in the development and homeostasis of the CNS. While mobilization of microglia is critical for a number of pathologies, understanding of the mechanisms of their migration in vivo is limited and often based on similarities to macrophages. Kindlin3 deficiency as well as Kindlin3 mutations of integrin-binding sites abolish both integrin inside-out and outside-in signaling in microglia, thereby resulting in severe deficiencies in cell adhesion, polarization, and migration in vitro, which are similar to the defects observed in macrophages. In contrast, while Kindlin3 mutations impaired macrophage mobilization in vivo, they had no effect either on the population of microglia in the CNS during development or on mobilization of microglia and subsequent microgliosis in a model of multiple sclerosis. At the same time, acute microglial response to laser-induced injury was impaired by the lack of Kindlin3-integrin interactions. Based on 2-photon imaging of microglia in the brain, Kindlin3 is required for elongation of microglial processes toward the injury site and formation of phagosomes in response to brain injury. Thus, while Kindlin3 deficiency in human subjects is not expected to diminish the presence of microglia within CNS, it might delay the recovery process after injury, thereby exacerbating its complications."	"Polyunsaturated fatty acids (PUFA) are known to be present and/or enriched in vegetable and fish oils. Among fatty acids, n-3 PUFA are generally considered to be protective in inflammation-related diseases. The guidelines for substituting saturated fatty acids for PUFAs have been highly publicized for decades by numerous health organizations. Recently, however, the beneficial properties of n-3 PUFA are questioned by detailed analyses of multiple randomized controlled clinical trials. The reported heterogeneity of results is likely due not only to differential effects of PUFAs on various pathological processes in humans, but also to the wide spectrum of PUFA's derived products generated in vivo. The goal of this review is to discuss the studies focused on well-defined end-products of PUFAs oxidation, their generation, presence in various pathological and physiological conditions, their biological activities and known receptors. Carboxyethylpyrrole (CEP), a DHA-derived oxidized product, is especially emphasized due to recent data demonstrating its pathophysiological significance in many inflammation-associated diseases, including atherosclerosis, hyperlipidemia, thrombosis, macular degeneration, and tumor progression. CEP is a product of radical-based oxidation of PUFA that forms adducts with proteins and lipids in blood and tissues, generating new powerful ligands for TLRs and scavenger receptors. The interaction of CEP with these receptors affects inflammatory response, angiogenesis, and wound healing. The detailed understanding of CEP-mediated cellular responses may provide a basis for the development of novel therapeutic strategies and dietary recommendations."	"The signalling pathways operational in quiescent, post-development vasculature remain enigmatic. Here we show that unlike neovascularization, endothelial Akt signalling in established vasculature is crucial not for endothelial cell (EC) survival, but for sustained interactions with pericytes and vascular smooth muscle cells (VSMCs) regulating vascular stability and function. Inducible endothelial-specific Akt1 deletion in adult global Akt2KO mice triggers progressive VSMC apoptosis. In hearts, this causes a loss of arteries and arterioles and, despite a high capillary density, diminished vascular patency and severe cardiac dysfunction. Similarly, endothelial Akt deletion induces retinal VSMC loss and basement membrane deterioration resulting in vascular regression and retinal atrophy. Mechanistically, the Akt/mTOR axis controls endothelial Jagged1 expression and, thereby, Notch signalling regulating VSMC maintenance. Jagged1 peptide treatment of Akt1ΔEC;Akt2KO mice and Jagged1 re-expression in Akt-deficient endothelium restores VSMC coverage. Thus, sustained endothelial Akt1/2 signalling is critical in maintaining vascular stability and homeostasis, thereby preserving tissue and organ function. "	"The importance of research focused on the final events of atherothrombosis cannot be overestimated. Platelet hyperreactivity leading to thrombosis is the main reason for mortality and morbidity in patients with cardiovascular disease and stroke, which together remain a leading cause of death in developed countries. In this issue of Blood, Shen et al1 establish another functional link between proatherogenic lipoproteins and platelet-mediated thrombus formation with a specific focus on stroke. In their model, the initiating component is L5, the electronegative subfraction of low-density lipoproteins (LDLs), which was shown to be substantially elevated in patients with ischemic stroke. L5 was shown to activate platelets via its receptor, lectin-like oxidized LDL receptor-1 (LOX-1), and αβ amyloid peptide, which together contribute to platelet hyperreactivity and stroke complications."	"Oxidative stress is an important contributing factor in several human pathologies ranging from atherosclerosis to cancer progression; however, the mechanisms underlying tissue protection from oxidation products are poorly understood. Oxidation of membrane phospholipids, containing the polyunsaturated fatty acid docosahexaenoic acid, results in the accumulation of an end product, 2-(ω-carboxyethyl)pyrrole (CEP), which was shown to have proangiogenic and proinflammatory functions. Although CEP is continuously accumulated during chronic processes, such as tumor progression and atherosclerosis, its level during wound healing return to normal when the wound is healed, suggesting the existence of a specific clearance mechanism. To identify the cellular and molecular mechanism for CEP clearance. Here, we show that macrophages are able to bind, scavenge, and metabolize carboxyethylpyrrole derivatives of proteins but not structurally similar ethylpyrrole derivatives, demonstrating the high specificity of the process. F4/80(hi) and M2-skewed macrophages are much more efficient at CEP binding and scavenging compared with F4/80(lo) and M1-skewed macrophages. Depletion of macrophages leads to increased CEP accumulation in vivo. CEP binding and clearance are dependent on 2 receptors expressed by macrophages, CD36 and toll-like receptor 2. Although knockout of each individual receptor results in diminished CEP clearance, the lack of both receptors almost completely abrogates macrophages' ability to scavenge CEP derivatives of proteins. Our study demonstrates the mechanisms of recognition, scavenging, and clearance of pathophysiologically active products of lipid oxidation in vivo, thereby contributing to tissue protection against products of oxidative stress."	"Circulating tumor cells (CTCs) are associated with cancer progression, aggressiveness and metastasis. However, the frequency and predictive value of CTCs in patients remains unknown. If circulating cells are involved in tumor aggressiveness and metastasis, then cell levels should decline upon tumor removal in localized cancer patients, but remain high in metastatic patients. Accordingly, proposed biomarkers CD117/c-kit, CD133, CXCR4/CD184, and CD34-positive cell percentages in the blood of patients undergoing radical prostatectomy for localized cancer were assessed by flow cytometry prior to intervention and 1-3 months postoperatively. Only circulating CD117⁺ cell percentages decreased after radical prostatectomy, increased with cancer progression and correlated with high PSA values. Notably, postoperative CD117⁺ levels did not decrease in patients experiencing biochemical recurrence. In a xenograft model, CD117-enriched tumors were more vascularized and aggressive. Thus, CD117 expression on CTCs promotes tumor progression and could be a biomarker for prostate cancer diagnosis, prognosis, and/or response to therapy."	"Kindlins are integrin-interacting proteins essential for integrin-mediated cell adhesiveness. In this study, we focused on the evolutionary origin and functional specialization of kindlins as a part of the evolutionary adaptation of cell adhesive machinery. Database searches revealed that many members of the integrin machinery (including talin and integrins) existed before kindlin emergence in evolution. Among the analyzed species, all metazoan lineages—but none of the premetazoans—had at least one kindlin-encoding gene, whereas talin was present in several premetazoan lineages. Kindlin appears to originate from a duplication of the sequence encoding the N-terminal fragment of talin (the talin head domain) with a subsequent insertion of the PH domain of separate origin. Sequence analysis identified a member of the actin filament-associated protein 1 (AFAP1) superfamily as the most likely origin of the kindlin PH domain. The functional divergence between kindlin paralogues was assessed using the sequence swap (chimera) approach. Comparison of kindlin 2 (K2)/kindlin 3 (K3) chimeras revealed that the F2 subdomain, in particular its C-terminal part, is crucial for the differential functional properties of K2 and K3. The presence of this segment enables K2 but not K3 to localize to focal adhesions. Sequence analysis of the C-terminal part of the F2 subdomain of K3 suggests that insertion of a variable glycine-rich sequence in vertebrates contributed to the loss of constitutive K3 targeting to focal adhesions. Thus emergence and subsequent functional specialization of kindlins allowed multicellular organisms to develop additional tissue-specific adaptations of cell adhesiveness."
+"Cheng, Feixiong"	"Genomic Medicine Institute"	31178408	31116390	30928438	30921324	30867426	30779739	30715873	30610579	30545954	30359818	"Triple-negative breast cancer (TNBC) is an aggressive and heterogeneous disease that lacks clinically actionable genetic alterations that limit targeted therapies. Here we explore a systems pharmacology approach that integrates drug-target networks and large-scale genomic profiles of TNBC and identify wogonoside, one of the major active flavonoids, as a potent angiogenesis inhibitor. We validate that wogonoside attenuates cell migration, tube formation, and rat aorta microvessel outgrowth, and reduces formation of blood vessels in chicken chorioallantoic membrane and TNBC cell-induced Matrigel plugs. In addition, wogonoside inhibits growth and angiogenesis in TNBC cell xenograft models. This network-based approach predicts, and we empirically validate, wogonoside's antiangiogenic effects resulting from vascular endothelial growth factor secretion. Mechanistically, wogonoside inhibits Gli1 nuclear translocation and transcriptional activities associated with Hedgehog signaling, by promoting Smoothened degradation in a proteasome-dependent mechanism. This study offers a powerful, integrated, systems pharmacology-based strategy for oncological drug discovery and identifies wogonoside as a potential TNBC angiogenesis inhibitor."	"Traditional drug discovery and development are often time-consuming and high risk. Repurposing/repositioning of approved drugs offers a relatively low-cost and high-efficiency approach toward rapid development of efficacious treatments. The emergence of large-scale, heterogeneous biological networks has offered unprecedented opportunities for developing in silico drug repositioning approaches. However, capturing highly non-linear, heterogeneous network structures by most existing approaches for drug repositioning has been challenging. In this study, we developed a network-based deep-learning approach, termed deepDR, for in silico drug repurposing by integrating 10 networks: one drug-disease, one drug-side-effect, one drug-target and seven drug-drug networks. Specifically, deepDR learns high-level features of drugs from the heterogeneous networks by a multi-modal deep autoencoder. Then the learned low-dimensional representation of drugs together with clinically reported drug-disease pairs are encoded and decoded collectively via a variational autoencoder to infer candidates for approved drugs for which they were not originally approved. We found that deepDR revealed high performance [the area under receiver operating characteristic curve (AUROC) = 0.908], outperforming conventional network-based or machine learning-based approaches. Importantly, deepDR-predicted drug-disease associations were validated by the ClinicalTrials.gov database (AUROC = 0.826) and we showcased several novel deepDR-predicted approved drugs for Alzheimer's disease (e.g. risperidone and aripiprazole) and Parkinson's disease (e.g. methylphenidate and pergolide). Source code and data can be downloaded from https://github.com/ChengF-Lab/deepDR. Supplementary data are available online at Bioinformatics."	"Immune checkpoint-blocking antibodies are actively used to treat multiple cancer types; however, the underlying resistance mechanism remains unclear. In a recent study, Zhao et al. (Nat. Med. 2019;25:462-469) found that somatic PTEN mutations were associated with resistance to immune checkpoint inhibitors by altering immunosuppressive environments in patients with glioblastomas."	"At the root of the so-called precision medicine or precision oncology, which is our focus here, is the hypothesis that cancer treatment would be considerably better if therapies were guided by a tumor's genomic alterations. This hypothesis has sparked major initiatives focusing on whole-genome and/or exome sequencing, creation of large databases, and developing tools for their statistical analyses-all aspiring to identify actionable alterations, and thus molecular targets, in a patient. At the center of the massive amount of collected sequence data is their interpretations that largely rest on statistical analysis and phenotypic observations. Statistics is vital, because it guides identification of cancer-driving alterations. However, statistics of mutations do not identify a change in protein conformation; therefore, it may not define sufficiently accurate actionable mutations, neglecting those that are rare. Among the many thematic overviews of precision oncology, this review innovates by further comprehensively including precision pharmacology, and within this framework, articulating its protein structural landscape and consequences to cellular signaling pathways. It provides the underlying physicochemical basis, thereby also opening the door to a broader community."	"Drug combinations, offering increased therapeutic efficacy and reduced toxicity, play an important role in treating multiple complex diseases. Yet, our ability to identify and validate effective combinations is limited by a combinatorial explosion, driven by both the large number of drug pairs as well as dosage combinations. Here we propose a network-based methodology to identify clinically efficacious drug combinations for specific diseases. By quantifying the network-based relationship between drug targets and disease proteins in the human protein-protein interactome, we show the existence of six distinct classes of drug-drug-disease combinations. Relying on approved drug combinations for hypertension and cancer, we find that only one of the six classes correlates with therapeutic effects: if the targets of the drugs both hit disease module, but target separate neighborhoods. This finding allows us to identify and validate antihypertensive combinations, offering a generic, powerful network methodology to identify efficacious combination therapies in drug development."	"Recent advances in next-generation sequencing and computational technologies have enabled routine analysis of large-scale single-cell ribonucleic acid sequencing (scRNA-seq) data. However, scRNA-seq technologies have suffered from several technical challenges, including low mean expression levels in most genes and higher frequencies of missing data than bulk population sequencing technologies. Identifying functional gene sets and their regulatory networks that link specific cell types to human diseases and therapeutics from scRNA-seq profiles are daunting tasks. In this study, we developed a Component Overlapping Attribute Clustering (COAC) algorithm to perform the localized (cell subpopulation) gene co-expression network analysis from large-scale scRNA-seq profiles. Gene subnetworks that represent specific gene co-expression patterns are inferred from the components of a decomposed matrix of scRNA-seq profiles. We showed that single-cell gene subnetworks identified by COAC from multiple time points within cell phases can be used for cell type identification with high accuracy (83%). In addition, COAC-inferred subnetworks from melanoma patients' scRNA-seq profiles are highly correlated with survival rate from The Cancer Genome Atlas (TCGA). Moreover, the localized gene subnetworks identified by COAC from individual patients' scRNA-seq data can be used as pharmacogenomics biomarkers to predict drug responses (The area under the receiver operating characteristic curves ranges from 0.728 to 0.783) in cancer cell lines from the Genomics of Drug Sensitivity in Cancer (GDSC) database. In summary, COAC offers a powerful tool to identify potential network-based diagnostic and pharmacogenomics biomarkers from large-scale scRNA-seq profiles. COAC is freely available at https://github.com/ChengF-Lab/COAC."	"Blockade of the human ether-à-go-go-related gene (hERG) channel by small molecules induces the prolongation of the QT interval which leads to fatal cardiotoxicity and accounts for the withdrawal or severe restrictions on the use of many approved drugs. In this study, we develop a deep learning approach, termed deephERG, for prediction of hERG blockers of small molecules in drug discovery and postmarketing surveillance. In total, we assemble 7,889 compounds with well-defined experimental data on the hERG and with diverse chemical structures. We find that deephERG models built by a multitask deep neural network (DNN) algorithm outperform those built by single-task DNN, naı̈ve Bayes (NB), support vector machine (SVM), random forest (RF), and graph convolutional neural network (GCNN). Specifically, the area under the receiver operating characteristic curve (AUC) value for the best model of deephERG is 0.967 on the validation set. Furthermore, based on 1,824 U.S. Food and Drug Administration (FDA) approved drugs, 29.6% drugs are computationally identified to have potential hERG inhibitory activities by deephERG, highlighting the importance of hERG risk assessment in early drug discovery. Finally, we showcase several novel predicted hERG blockers on approved antineoplastic agents, which are validated by clinical case reports, experimental evidence, and the literature. In summary, this study presents a powerful deep learning-based tool for risk assessment of hERG-mediated cardiotoxicities in drug discovery and postmarketing surveillance."	"How can biophysical principles help precision medicine identify rare driver mutations? A major tenet of pragmatic approaches to precision oncology and pharmacology is that driver mutations are very frequent. However, frequency is a statistical attribute, not a mechanistic one. Rare mutations can also act through the same mechanism, and as we discuss below, &quot;latent driver&quot; mutations may also follow the same route, with &quot;helper&quot; mutations. Here, we review how biophysics provides mechanistic guidelines that extend precision medicine. We outline principles and strategies, especially focusing on mutations that drive cancer. Biophysics has contributed profoundly to deciphering biological processes. However, driven by data science, precision medicine has skirted some of its major tenets. Data science embodies genomics, tissue- and cell-specific expression levels, making it capable of defining genome- and systems-wide molecular disease signatures. It classifies cancer driver genes/mutations and affected pathways, and its associated protein structural data guide drug discovery. Biophysics complements data science. It considers structures and their heterogeneous ensembles, explains how mutational variants can signal through distinct pathways, and how allo-network drugs can be harnessed. Biophysics clarifies how one mutation-frequent or rare-can affect multiple phenotypic traits by populating conformations that favor interactions with other network modules. It also suggests how to identify such mutations and their signaling consequences. Biophysics offers principles and strategies that can help precision medicine push the boundaries to transform our insight into biological processes and the practice of personalized medicine. By contrast, &quot;phenotypic drug discovery,&quot; which capitalizes on physiological cellular conditions and first-in-class drug discovery, may not capture the proper molecular variant. This is because variants of the same protein can express more than one phenotype, and a phenotype can be encoded by several variants."	"Recent remarkable advances in genome sequencing have enabled detailed maps of identified and interpreted genomic variation, dubbed &quot;mutanomes.&quot; The availability of thousands of exome/genome sequencing data has prompted the emergence of new challenges in the identification of novel druggable targets and therapeutic strategies. Typically, mutanomes are viewed as one- or two-dimensional. The three-dimensional protein structural view of personal mutanomes sheds light on the functional consequences of clinically actionable mutations revealed in tumor diagnosis and followed up in personalized treatments, in a mutanome-informed manner. In this review, we describe the protein structural landscape of personal mutanomes and provide expert opinions on rational strategies for more streamlined oncological drug discovery and molecularly targeted therapies for each individual and each tumor. We provide the structural mechanism of orthosteric versus allosteric drugs at the atom-level via targeting specific somatic alterations for combating drug resistance and the &quot;undruggable&quot; challenges in solid and hematologic neoplasias. We discuss computational biophysics strategies for innovative mutanome-informed cancer immunotherapies and combination immunotherapies. Finally, we highlight a personal mutanome infrastructure for the emerging development of personalized cancer medicine using a breast cancer case study."	"Despite recent advance of therapeutic development, coronary artery disease (CAD) remains one of the major issues to public health. The use of genomics and systems biology approaches to inform drug discovery and development have offered the possibilities for new target identification and in silico drug repurposing. In this study, we propose a network-based, systems pharmacology framework for target identification and drug repurposing in pharmacologic treatment and chemoprevention of CAD. Specifically, we build in silico models by integrating known drug-target interactions, CAD genes derived from the genetic and genomic studies, and the human protein-protein interactome. We demonstrate that the proposed in silico models can successfully uncover approved drugs and novel natural products in potentially treating and preventing CAD. In case studies, we highlight several approved drugs (e.g., fasudil, parecoxib, and dexamethasone) or natural products (e.g., resveratrol, luteolin, daidzein and caffeic acid) with new mechanism-of-action in chemical intervention of CAD by network analysis. In summary, this study offers a powerful systems pharmacology approach for target identification and in silico drug repurposing on CAD."
+"Cheng, Jianguo"	"Neurosciences"	30649518	30615177	30252120	29897539	29285750	28938297	28445708	28291470	27906939	27739217	NA	"Growth hormone (GH) and GH-related signaling molecules play an important role in nociception and development of chronic pain. This review aims to examine the potential molecular mechanisms through which GH-related signaling modulates sensory hypersensitivity in rodents, the clinical pharmacology of GH, and the clinical evidence of GH treatment for several common pain syndromes. A search was conducted using the PUBMED/MEDLINE database, Scopus, and the Cochrane library for all reports published in English on GH in pain management from inception through May 2018. A critical review was performed on the mechanisms of GH-related signaling and the pharmacology of GH. The levels of clinical evidence and implications for recommendations of all of the included studies were graded. The search yielded 379 articles, of which 201 articles were deemed irrelevant by reading the titles. There were 53 reports deemed relevant after reading abstracts. All of these 53 articles were retrieved for the analysis and discussion. Dysfunction of the GH/insulin-like growth factor 1 (IGF-1)/ghrelin axis was linked to hyperalgesia and several common clinical pain syndromes. Low levels of GH and IGF-1 were linked to pain hypersensitivity, whereas ghrelin appeared to provide analgesic effects. Pretreatment of GH reversed mechanical and thermal hypersensitivity in an animal model of inflammatory pain. Clinical trials support GH treatment in a subgroup of patients with fibromyalgia syndrome (level of evidence: 1B+) or chronic lower back pain syndrome (level of evidence: 2C+)."	NA	NA	"Opioid tolerance (OT) and opioid-induced hyperalgesia (OIH) are major challenges in medicine. Here we report that transplantation of mesenchymal stem cells (MSCs) prevented and reversed OT and OIH in rats and mice. The preventive and therapeutic effects were long-lasting and consistent across different assessment schemes. Both intrathecal and intravenous transplantations were effective and safe. This emerging therapeutic strategy has thus shown promise to impact clinical practice and improve the efficacy and safety of opioid therapy."	"To update the recent development of spinal cord stimulation (SCS) technology in the management of chronic pain. Efficacy of SCS therapy has been significantly improved by the recent development of high frequency (HF-10 kHz) stimulation, burst stimulation, and dorsal root ganglion (DRG) stimulation. A few latest SCS modalities are in clinical trial. New approaches to guide lead placement and advances in surgical lead are introduced. HF-10 SCS is free of paresthesia and associated with significantly better coverage of axial lower back pain. Burst stimulation invokes minimal paresthesia and provides better coverage of low back pain. DRG stimulation results in better outcomes in patients with complex regional pain syndrome. It requires less energy and delivers consistent stimulation regardless of postural variations. Clinical trials with new SCS modalities, such as Stimwaves, are under way to make SCS wireless. Intraoperative neuromonitoring and paresthesia atlas may be used to guide lead placement. Multicolumn surgical paddle leads enable a combination of independent current control with up to 32 contacts for better programming and better coverage."	"Cellular responses to nerve injury play a central role in the pathogenesis of neuropathic pain. However, the analysis of site specific cellular responses to nerve injury and neuropathic pain is limited to immunohistochemistry staining with numerous limitations. We proposed to apply flow cytometry to overcome some of the limitations and developed two protocols for isolation of cells from small specimens of the sciatic nerve and dorsal root ganglion (DRG) in mice. RESULTS AND COMPARASION WITH EXISTING: methods We found that both the non-enzymatic and enzymatic approaches were highly effective in harvesting a sufficient number of cells for flow cytometry analysis in normal and pathological conditions. The total number of cells in the injury site of the sciatic and its DRGs increased significantly 14days after chronic constriction injury (CCI) of the sciatic nerve, compared to sham surgery control or the contralateral control. The enzymatic approach yielded a significantly higher total number of cells and CD45 negative cells, suggesting that this approach allows for harvest of more resident cells, compared to the non-enzymatic method. The percentage of CD45<sup>+</sup>/CD11b<sup>+</sup> cells was significantly increased in the sciatic nerve but not in the DRG. These results were consistent with both protocols. We thus offer two simple and effective protocols that allow for application of flow cytometry to the investigation of cellular and molecular mechanisms of neuropathic pain."	"The current treatment options for neuropathic pain due to nerve injuries are limited and largely unsatisfactory. Mesenchymal stem cell transplantation (MSC) has shown promise as an emerging therapy for neuropathic pain. However, a number of critical parameters, including the sources of cells, the number of cells, and routes of transplantation, need to be elucidated before it can be tested clinically. MSCs were isolated from rat bone marrow (rBM-MSCs) and adipose tissue (rAD-MSCs) and characterized by flow cytometry and functional differentiation. Rats with chronic constriction injury of the sciatic nerve were transplanted either intravenously or intrathecally with rBM-MSCs or rAD-MSCs in two different doses. The effects were evaluated by using paw withdrawal thresholds in response to noxious stimulation. The MSCs labeled with Dil dye were traced. A total of 75 Sprague-Dawley rats were used for these experiments. Both intravenous and intrathecal transplantation of MSCs significantly attenuated neuropathic pain. Comparable results were achieved by either rBM-MSCs or rAD-MSCs. No differences were noted between the two doses of cell transplantation. MSCs were found on the surface of the spinal cord and dorsal root ganglia. The animals did not show any signs of toxicity throughout the whole course of the experiments. Both intravenous and intrathecal MSC transplantations were safe and efficacious and both rBM-MSCs and rAD-MSCs are suitable for transplantation."	"Low back pain may arise from disorders of the sacroiliac joint in up to 30% of patients. Radiofrequency ablation (RFA) of the nerves innervating the sacroiliac joint has been shown to be a safe and efficacious strategy. We aimed to develop a new RFA technique to relieve low back pain secondary to sacroiliac joint disorders. Methodology development with validation through prospective observational non-randomized trial (PONRT). Academic multidisciplinary health care system, Ohio, USA. We devised a guide-block to facilitate accurate placement of multiple electrodes to simultaneously ablate the L5 dorsal ramus and lateral branches of the S1, S2, and S3 dorsal rami. This was achieved by bipolar radiofrequency ablation (b-RFA) to create a strip lesion from the lateral border of the base of the sacral superior articular process (L5-S1 facet joint) to the lateral border of the S3 sacral foramen. We applied this technique in 31 consecutive patients and compared the operating time, x-ray exposure time and dose, and clinical outcomes with patients (n = 62) who have been treated with the cooled radiofrequency technique. Patients' level of pain relief was reported as &lt; 50%, 50 - 80%, and &gt; 80% pain relief at one, 3, 6, and 12 months after the procedure. The relationship between RFA technique and duration of pain relief was evaluated using interval-censored multivariable Cox regression. The new technique allowed reduction of operating time by more than 50%, x-ray exposure time and dose by more than 80%, and cost by more than $1,000 per case. The percent of patients who achieved &gt; 50% pain reduction was significantly higher in the b-RFA group at 3, 6, and 12 months follow-up, compared to the cooled radiofrequency group. No complications were observed in either group. Although the major confounding factors were taken into account in the analysis, use of historical controls does not balance observed and unobserved potential confounding variables between groups so that the reported results are potentially confounded. Compared to the cooled radiofrequency ablation (c-RFA) technique, the new b-RFA technique reduced operating time by more than 50%, decreased x-ray exposure by more than 80%, and cut the cost by more than $1000 per case. The new method was associated with significantly improved clinical outcomes despite the limitations of the study design. Thus this new technique appeared to be safe, efficacious, and cost-effective. Key words: Sacroiliac joint pain, sacroiliac joint, low back pain, radiofrequency ablation (RFA), bipolar radiofrequency ablation (b-RFA), cooled radiofrequency ablation (c-RFA), cost-effectiveness."	"We demonstrated a combination of pulsed radiofrequency (PRF) and cervical nerve root block (CNRB) via a posterior approach was superior to a transforaminal epidural steroid injection through the anterolateral approach for cervical radicular pain in a previous study. This randomized trial was conducted to determine the comparative efficacy between CNRB, PRF, and CNRB + PRF for cervical radicular pain. A prospective and randomized design was used in this study. Sixty-two patients were randomized into three parallel groups: CNRB, PRF, or CNRB + PRF. Numeric Rating Scale (NRS) was used to measure pain intensity, and global perceived effect (GPE) was scored by the patient on a 7-point scale, ranging from much worse (-3), no change (0), to total improvement (+3). The outcomes were evaluated at 1 week, 1 month, 3 months, and 6 months. Side effects and complications were noted. The NRS was significantly reduced in all three groups 1 week after the treatments (P &lt; 0.001), and the rates of positive GPE (+2 or +3) were not significantly different between the three groups. At 1, 3, and 6 months of follow-ups, the combined therapy achieved significantly lower NRS and higher GPE compared to CNRB or PRF alone group (P &lt; 0.001). There were no significant differences between the CNRB and PRF groups (P &gt; 0.05). No serious complications were observed in any of the patients. Combining CNRB and PRF appeared to be a safe and efficacious technique for cervical radicular pain. The combination therapy yielded better outcomes than either CNRB or PRF alone."
+"Cherepanova, Olga"	"Cardiovascular and Metabolic Sciences"	27183216	19168440	30089722	28283548	23912340	17704209	30814500	28920957	25985364	23537062	"Although somatic cell activation of the embryonic stem cell (ESC) pluripotency factor OCT4 has been reported, this previous work has been controversial and has not demonstrated a functional role for OCT4 in somatic cells. Here we demonstrate that smooth muscle cell (SMC)-specific conditional knockout of Oct4 in Apoe(-/-) mice resulted in increased lesion size and changes in lesion composition that are consistent with decreased plaque stability, including a thinner fibrous cap, increased necrotic core area, and increased intraplaque hemorrhage. Results of SMC-lineage-tracing studies showed that these effects were probably the result of marked reductions in SMC numbers within lesions and SMC investment within the fibrous cap, which may result from impaired SMC migration. The reactivation of Oct4 within SMCs was associated with hydroxymethylation of the Oct4 promoter and was hypoxia inducible factor-1α (HIF-1α, encoded by HIF1A) and Krüppel-like factor-4 (KLF4)-dependent. These results provide the first direct evidence that OCT4 has a functional role in somatic cells, and they highlight the potential role of OCT4 in normal and diseased somatic cells."	"Phenotypic switching of vascular smooth muscle cells (VSMCs) is known to play a critical role in the development of atherosclerosis. However, the factors present within lesions that mediate VSMC phenotypic switching are unclear. Oxidized phospholipids (OxPLs), including 1-palmitoyl-2-(5-oxovaleroyl)-sn-glycero-3-phosphorylcholine (POVPC), are active components of minimally modified low density lipoprotein and have been previously shown to induce multiple proatherogenic events in endothelial cells and macrophages, but their effects on VSMCs have been largely unexplored until recently. We previously showed that OxPLs induced phenotypic switching of VSMCs, including suppression of SMC differentiation marker genes. The goal of the present studies was to test the hypothesis that OxPLs alter extracellular matrix production and VSMC migration. Results showed that POVPC activated expression of several extracellular matrix proteins in VSMC. POVPC increased expression of type VIII collagen alpha1 chain (Col8a1) mRNA in cultured VSMCs and in vivo in rat carotid arteries by 9-fold and 4-fold, respectively. POVPC-induced activation of Col8a1 gene expression was reduced by small interfering RNA-mediated suppression of Krüppel-like factor 4 (Klf4) and Sp1, and was abolished in Klf4-knockout VSMCs. POVPC increased Klf4 binding to the Col8a1 gene promoter both in vivo in rat carotid arteries and in cultured VSMCs based on chromatin immunoprecipitation assays. Moreover, POVPC-induced VSMC migration was markedly reduced in Klf4- or type VIII collagen-knockout VSMCs. Given evidence that OxPLs are present within atherosclerotic lesions, it is interesting to suggest that OxPL-induced changes in VSMC phenotype may contribute to the pathogenesis of atherosclerosis at least in part through changes in extracellular matrix composition."	"The long-term adverse effects of radiotherapy on cardiovascular disease are well documented. However, the underlying mechanisms responsible for this increased risk are poorly understood. Previous studies using rigorous smooth muscle cell (SMC) lineage tracing have shown abundant SMC investment into atherosclerotic lesions, where SMCs contribute to the formation of a protective fibrous cap. Studies herein tested whether radiation impairs protective adaptive SMC responses during vascular disease. To do this, we exposed SMC lineage tracing (Myh11-ERT2Cre YFP+) mice to lethal radiation (1,200 cGy) followed by bone marrow transplantation prior to atherosclerosis development or vessel injury. Surprisingly, following irradiation, we observed a complete loss of SMC investment in 100% of brachiocephalic artery (BCA), carotid artery, and aortic arch lesions. Importantly, this was associated with a decrease in multiple indices of atherosclerotic lesion stability within the BCA. Interestingly, we observed anatomic heterogeneity, as SMCs accumulated normally into lesions of the aortic root and abdominal aorta, suggesting that SMC sensitivity to lethal irradiation occurs in blood vessels of neural crest origin. Taken together, these results reveal an undefined and unintended variable in previous studies using lethal irradiation and may help explain why patients exposed to radiation have increased risk for cardiovascular disease."	"Atherosclerotic plaque rupture with subsequent embolic events is a major cause of sudden death from myocardial infarction or stroke. Although smooth muscle cells (SMCs) produce and respond to collagens in vitro, there is no direct evidence in vivo that SMCs are a crucial source of collagens and that this impacts lesion development or fibrous cap formation. We sought to determine how conditional SMC-specific knockout of collagen type XV (COL15A1) in SMC lineage tracing mice affects advanced lesion formation given that 1) we have previously identified a Col15a1 sequence variant associated with age-related atherosclerosis, 2) COL15A1 is a matrix organizer enhancing tissue structural integrity, and 3) small interfering RNA-mediated Col15a1 knockdown increased migration and decreased proliferation of cultured human SMCs. We hypothesized that SMC-derived COL15A1 is critical in advanced lesions, specifically in fibrous cap formation. Surprisingly, we demonstrated that SMC-specific Col15a1 knockout mice fed a Western diet for 18 wk failed to form advanced lesions. SMC-specific Col15a1 knockout resulted in lesions reduced in size by 78%, with marked reductions in numbers and proliferating SMCs, and lacked a SMC and extracellular matrix-rich lesion or fibrous cap. In vivo RNA-seq analyses on SMC Col15a1 knockout and wild-type lesions suggested that a mechanism for these effects is through global repression of multiple proatherogenic inflammatory pathways involved in lesion development. These results provide the first direct evidence that a SMC-derived collagen, COL15A1, is critical during lesion pathogenesis, but, contrary to expectations, its loss resulted in marked attenuation rather than exacerbation of lesion pathogenesis.NEW &amp; NOTEWORTHY We report the first direct in vivo evidence that a smooth muscle cell (SMC)-produced collagen, collagen type XV (COL15A1), is critical for atherosclerotic lesion development. SMC Col15a1 knockout markedly attenuated advanced lesion formation, likely through reducing SMC proliferation and impairing multiple proatherogenic inflammatory processes."	"Smooth muscle cell (SMC) proliferation is a hallmark of vascular injury and disease. Global hypomethylation occurs during SMC proliferation in culture and in vivo during neointimal formation. Regardless of the programmed or stochastic nature of hypomethylation, identifying these changes is important in understanding vascular disease, as maintenance of a cells' epigenetic profile is essential for maintaining cellular phenotype. Global hypomethylation of proliferating aortic SMCs and concomitant decrease of DNMT1 expression were identified in culture during passage. An epigenome screen identified regions of the genome that were hypomethylated during proliferation and a region containing Collagen, type XV, alpha 1 (COL15A1) was selected by 'genomic convergence' for characterization. COL15A1 transcript and protein levels increased with passage-dependent decreases in DNA methylation and the transcript was sensitive to treatment with 5-Aza-2'-deoxycytidine, suggesting DNA methylation-mediated gene expression. Phenotypically, knockdown of COL15A1 increased SMC migration and decreased proliferation and Col15a1 expression was induced in an atherosclerotic lesion and localized to the atherosclerotic cap. A sequence variant in COL15A1 that is significantly associated with atherosclerosis (rs4142986, P = 0.017, OR = 1.434) was methylated and methylation of the risk allele correlated with decreased gene expression and increased atherosclerosis in human aorta. In summary, hypomethylation of COL15A1 occurs during SMC proliferation and the consequent increased gene expression may impact SMC phenotype and atherosclerosis formation. Hypomethylated genes, such as COL15A1, provide evidence for concomitant epigenetic regulation and genetic susceptibility, and define a class of causal targets that sit at the intersection of genetic and epigenetic predisposition in the etiology of complex disease. "	"Atherosclerosis is a vascular disease characterized by lipid deposition and inflammation within the arterial wall. Oxidized phospholipids (oxPLs), such as 1-palmitoyl-2-arachidonoyl-sn-glycero-3-phosphorylcholine (oxPAPC) and its constituents 1-palmytoyl-2-(5-oxovaleroyl)-sn-glycero-3-phosphocholine (POVPC) and 1-palmitoyl-2-glutaroyl-sn-glycero-3-phosphocholine (PGPC) are concentrated within atherosclerotic lesions and are known to be potent proinflammatory mediators. Phenotypic switching of smooth muscle cells (SMCs) plays a critical role in the development, progression, and end-stage clinical consequences of atherosclerosis, yet little is known regarding the effects of specific oxPLs on SMC phenotype. The present studies were focused on determining whether oxPLs regulate expression of SMC differentiation marker genes and the molecular mechanisms involved. Results showed that POVPC and PGPC induced profound suppression of smooth muscle (SM) alpha-actin and SM myosin heavy chain expression while simultaneously increasing expression of MCP-1, MCP-3, and cytolysin. OxPLs also induced nuclear translocation of Krüppel-like transcription factor 4 (KLF4), a known repressor of SMC marker genes. siRNA targeting of KLF4 nearly blocked POVPC-induced suppression of SMC marker genes, and myocardin. POVPC-induced repression of SMC marker genes was also significantly attenuated in KLF4 knockout SMCs. Taken together, these results suggest a novel role for oxPLs in phenotypic modulation of SMCs and indicate that these effects are dependent on the transcription factor, KLF4. These results may have important novel implications for the mechanisms by which oxPLs contribute to the pathogenesis of atherosclerosis."	"The stem cell pluripotency factor Oct4 serves a critical protective role during atherosclerotic plaque development by promoting smooth muscle cell (SMC) investment. Here, we show using Myh11-CreER<sup>T2</sup> lineage-tracing with inducible SMC and pericyte (SMC-P) knockout of Oct4 that Oct4 regulates perivascular cell migration and recruitment during angiogenesis. Knockout of Oct4 in perivascular cells significantly impairs perivascular cell migration, increases perivascular cell death, delays endothelial cell migration, and promotes vascular leakage following corneal angiogenic stimulus. Knockout of Oct4 in perivascular cells also impairs perfusion recovery and decreases angiogenesis following hindlimb ischemia. Transcriptomic analyses demonstrate that expression of the migratory gene Slit3 is reduced following loss of Oct4 in cultured SMCs, and in Oct4-deficient perivascular cells in ischemic hindlimb muscle. Together, these results provide evidence that Oct4 plays an essential role within perivascular cells in injury- and hypoxia-induced angiogenesis."	"A deeper understanding of the metastatic process is required for the development of new therapies that improve patient survival. Metastatic tumor cell growth and survival in distant organs is facilitated by the formation of a pre-metastatic niche that is composed of hematopoietic cells, stromal cells and extracellular matrix (ECM). Perivascular cells, including vascular smooth muscle cells (vSMCs) and pericytes, are involved in new vessel formation and in promoting stem cell maintenance and proliferation. Given the well-described plasticity of perivascular cells, we hypothesized that perivascular cells similarly regulate tumor cell fate at metastatic sites. We used perivascular-cell-specific and pericyte-specific lineage-tracing models to trace the fate of perivascular cells in the pre-metastatic and metastatic microenvironments. We show that perivascular cells lose the expression of traditional vSMC and pericyte markers in response to tumor-secreted factors and exhibit increased proliferation, migration and ECM synthesis. Increased expression of the pluripotency gene Klf4 in these phenotypically switched perivascular cells promoted a less differentiated state, characterized by enhanced ECM production, that established a pro-metastatic fibronectin-rich environment. Genetic inactivation of Klf4 in perivascular cells decreased formation of a pre-metastatic niche and metastasis. Our data revealed a previously unidentified role for perivascular cells in pre-metastatic niche formation and uncovered novel strategies for limiting metastasis."	"Previous studies investigating the role of smooth muscle cells (SMCs) and macrophages in the pathogenesis of atherosclerosis have provided controversial results owing to the use of unreliable methods for clearly identifying each of these cell types. Here, using Myh11-CreER(T2) ROSA floxed STOP eYFP Apoe(-/-) mice to perform SMC lineage tracing, we find that traditional methods for detecting SMCs based on immunostaining for SMC markers fail to detect &gt;80% of SMC-derived cells within advanced atherosclerotic lesions. These unidentified SMC-derived cells exhibit phenotypes of other cell lineages, including macrophages and mesenchymal stem cells (MSCs). SMC-specific conditional knockout of Krüppel-like factor 4 (Klf4) resulted in reduced numbers of SMC-derived MSC- and macrophage-like cells, a marked reduction in lesion size, and increases in multiple indices of plaque stability, including an increase in fibrous cap thickness as compared to wild-type controls. On the basis of in vivo KLF4 chromatin immunoprecipitation-sequencing (ChIP-seq) analyses and studies of cholesterol-treated cultured SMCs, we identified &gt;800 KLF4 target genes, including many that regulate pro-inflammatory responses of SMCs. Our findings indicate that the contribution of SMCs to atherosclerotic plaques has been greatly underestimated, and that KLF4-dependent transitions in SMC phenotype are critical in lesion pathogenesis. "	"Xenotropic Murine leukemia virus-Related Virus (XMRV) is a γ-retrovirus initially reported to be present within familial human prostate tumors and the blood of patients with chronic fatigue syndrome. Subsequent studies however were unable to replicate these findings, and there is now compelling evidence that the virus evolved through rare retroviral recombination events in human tumor cell lines established through murine xenograft experiments. There is also no direct evidence that XMRV infection has any functional effects that contribute to tumor pathogenesis. Herein we describe an additional xenotropic MLV, &quot;B4rv&quot;, found in a cell line derived from xenograft experiments with the human prostate cancer LNCaP cell line. When injected subcutaneously in nude mice, LNCaP cells infected with XMRV or B4rv formed larger tumors that were highly hemorrhagic and displayed poor pericyte/smooth muscle cell (SMC) investment, markers of increased metastatic potential. Conditioned media derived from XMRV- or B4rv-infected LNCaPs, but not an amphotropic MLV control virus infected LNCaPs, profoundly decreased expression of marker genes in cultured SMC, consistent with inhibition of SMC differentiation/maturation. Similar effects were seen with a chimeric virus of the amphotropic MLV control virus containing the XMRV env gene, but not with an XMRV chimeric virus containing the amphotropic MLV env gene. UV-inactivated XMRV and pseudovirions that were pseudotyped with XMRV envelope protein also produce conditioned media that down-regulated SMC marker gene expression in vitro. Together these results indicate that xenotropic MLV envelope proteins are sufficient to induce the production of factors by tumor cells that suppress vascular SMC differentiation, providing evidence for a novel mechanism by which xenotropic MLVs might alter tumor pathogenesis by disrupting tumor vascular maturation. Although it is highly unlikely that either XMRV or B4Rv themselves infect humans and are pathogenic, the results suggest that xenograft approaches commonly used in the study of human cancer promote the evolution of novel retroviruses with pathogenic properties."
+"Chung, Mina"	"Cardiovascular and Metabolic Sciences"	31216884	29038104	27139902	26258174	25779222	25552627	25523945	25221331	24831860	24793801	"Cardiac resynchronization therapy (CRT) has significant nonresponse rates. We assessed whether machine learning (ML) could predict CRT response beyond current guidelines. We analyzed CRT patients from Cleveland Clinic and Johns Hopkins. A training cohort was created from all Johns Hopkins patients and an equal number of randomly sampled Cleveland Clinic patients. All remaining patients comprised the testing cohort. Response was defined as ≥10% increase in left ventricular ejection fraction. ML models were developed to predict CRT response using different combinations of classification algorithms and clinical variable sets on the training cohort. The model with the highest area under the curve was evaluated on the testing cohort. Probability of response was used to predict survival free from a composite end point of death, heart transplant, or placement of left ventricular assist device. Predictions were compared with current guidelines. Nine hundred twenty-five patients were included. On the training cohort (n=470: 235, Johns Hopkins; 235, Cleveland Clinic), the best ML model was a naive Bayes classifier including 9 variables (QRS morphology, QRS duration, New York Heart Association classification, left ventricular ejection fraction and end-diastolic diameter, sex, ischemic cardiomyopathy, atrial fibrillation, and epicardial left ventricular lead). On the testing cohort (n=455, Cleveland Clinic), ML demonstrated better response prediction than guidelines (area under the curve, 0.70 versus 0.65; P=0.012) and greater discrimination of event-free survival (concordance index, 0.61 versus 0.56; P&lt;0.001). The fourth quartile of the ML model had the greatest risk of reaching the composite end point, whereas the first quartile had the least (hazard ratio, 0.34; P&lt;0.001). ML with 9 variables incrementally improved prediction of echocardiographic CRT response and survival beyond guidelines. Performance was not improved by incorporating more variables. The model offers potential for improved shared decision-making in CRT (online calculator: http://riskcalc.org:3838/CRTResponseScore ). Significant remaining limitations confirm the need to identify better variables to predict CRT response."	"Although dofetilide labeling states that the drug must be initiated or reinitiated with continuous electrocardiographic monitoring and in the presence of trained personnel, the risks of dofetilide reloading justifying repeat hospitalization have not been investigated. Patients admitted for dofetilide reloading for atrial arrhythmias were retrospectively reviewed. The need for dose adjustment and the incidence of torsades de pointes (TdP) were identified. The incidence of TdP in dofetilide reloading was compared with patients admitted for dofetilide initial loading. Of 138 patients admitted for dofetilide reloading for atrial arrhythmias, 102 were reloaded at a previously tolerated dose, 30 with a higher dose from a previously tolerated dose and 2 at a lower dose; prior dosage was unknown in 4 patients. Dose adjustment or discontinuation was required in 44 patients (31.9%). No TdP occurred in the same dose reloading group, but TdP occurred in 2 patients admitted to increase dofetilide dosage (0% versus 6.7%; P=0.050). Dofetilide dose adjustment or discontinuation was required in 30 of 102 patients (29.4%) reloaded at a previously tolerated dose and in 11 of 30 patients (36.7%) admitted for an increase in dose. Although no TdP occurred in patients admitted to reload dofetilide at the same dose as previously tolerated, dosage adjustments or discontinuation was frequent and support the need for hospitalization for dofetilide reloading. Patients admitted for reloading with a higher dose tended to be at higher risk for TdP than patients reloaded at a prior tolerated dose."	"Atrial fibrillation (AF) is a common clinical arrhythmia that appears to be highly heritable, despite representing a complex interplay of several disease processes that generally do not manifest until later in life. In this manuscript, we will review the genetic basis of this complex trait established through studies of familial AF, linkage and candidate gene studies of common AF, genome wide association studies (GWAS) of common AF, and transcriptomic studies of AF. Since AF is associated with a five-fold increase in the risk of stroke, we also review the intersection of common genetic factors associated with both of these conditions. Similarly, we highlight the intersection of common genetic markers associated with some risk factors for AF, such as hypertension and obesity, and AF. Lastly, we describe a paradigm where genetic factors predispose to the risk of AF, but which may require additional stress and trigger factors in older age to allow for the clinical manifestation of AF."	"Rhythm control with antiarrhythmic drugs (AADs) is not superior to rate control in patients with heart failure (HF) and atrial fibrillation (AF), but AF ablation may be more successful at achieving rhythm control than AADs. However, risks for both ablation and AADs are likely higher and success rates lower in patients with HF. To compare rate control versus AF catheter ablation strategies in patients with AF and HF. We conducted a meta-analysis of trials which randomized HF patients (LVEF&lt;50%) with AF to a rate control or AF catheter ablation strategy and reported change in LVEF, quality of life, 6-minute walk test, or peak oxygen consumption. Study quality and heterogenity were assessed using Jadad scores and Cochran's Q statistics, respectively. Mantel Haenszel relative risks and mean differences were calculated using random effect models. Four trials (N=224) met inclusion criteria; 82.5% (n=185) had persistent AF. AF ablation was associated with an increase in LVEF (mean difference 8.5%; 95%CI 6.4,10.7%; P&lt;0.001) compared to rate control. AF ablation was superior in improving quality of life by Minnesota Living with Heart Failure (MLWHF) questionnaire scores (mean difference -11.9; 95%CI -17.1, -6.6; P&lt;0.001). Peak oxygen consumption and 6-minute walk distance increased in AF ablation compared to rate control patients (mean difference 3.2; 95%CI 1.1,5.2; P=0.003; mean difference 34.8; 95%CI 2.9, 66.7; P = 0.03, respectively). In the persistent AF subgroup LVEF and MLWHF were significantly improved with AF ablation. Major adverse event rates (RR 1.3; 95% CI, 0.4, 3.9; p=0.64) were not significantly different. No significant heterogeneity was evident. In patients with HF and AF, AF catheter ablation is superior to rate control in improving LVEF, quality of life and functional capacity. Prior to accepting a rate control strategy in HF patients with persistent or drug refractory AF, consideration should be given to AF ablation."	"Stress and anxiety are potential consequences from arrhythmias and implantable cardioverter defibrillator (ICD) shocks that can contribute to substantial morbidity. We assessed anxiety associated with an ICD and whether cognitive behavioral therapy (CBT) reduces anxiety. The study consisted of two parts: part 1 (N = 690) was a prospective cross-sectional observational study of consecutive ICD patients. Patients completed the Beck Anxiety Inventory (BAI), Generalized Anxiety Disorder Scale (GAD-7), Florida Shock Anxiety Scale (FSAS), and Florida Patient Acceptance Survey (FPAS) psychometric tests. Part 2 (N = 29) was a pilot randomized controlled trial of CBT (three sessions in 3 months) vs. usual care (UC) in patients with BAI ≥ 19 from part 1. The median BAI and GAD-7 scores were 5 and 2, respectively. By BAI scores, 64.5 % had minimal and 3.9 % had severe anxiety. By GAD-7 scores, 73.0 % had low probability of anxiety and 2.9 % had high anxiety. Higher anxiety levels were associated with recent (p = 0.017) and total number of shocks (p = 0.002). Any shock was associated with fear about shocks (FSAS, p &lt; 0.001) and reduced patient ICD acceptance (FPAS, p = 0.019). In the pilot trial of CBT, median BAI scores decreased from 24.5 to 11 at 1 year (p = 0.031) in the CBT group and GAD-7 scores from 12.5 to 7 (p = 0.063); no significant changes in anxiety scores were observed in the UC group. Severe anxiety was present in a small proportion of ICD patients, but higher anxiety was associated with recent and total number of shocks. The small pilot study suggested that a simple program of CBT might lower moderate-high anxiety with lasting effects to 1 year and supports the need for a larger trial to validate these results. ClinicalTrials.gov identifier: NCT00851071. URL: http://clinicaltrials.gov/ct2/show/NCT00851071?term=anxiety+in+icd+patients+cleveland+clinic&amp;rank=1."	"When considering anticoagulant therapy for patients with atrial fibrillation, one must balance the reduction in risk of thromboembolism that this therapy offers against the risk of bleeding that it poses. The American Heart Association, American College of Cardiology, and Heart Rhythm Society updated their atrial fibrillation guidelines in 2014. This review outlines a rationale for clinical decision-making based on the new guidelines and summarizes the currently approved drugs. "	"Prior transcriptional studies of atrial fibrillation (AF) have been limited to specific transcripts, animal models, chronic AF, right atria, or small samples. We sought to characterize the left atrial transcriptome in human AF to distinguish changes related to AF susceptibility and persistence. Left atrial appendages from 239 patients stratified by coronary artery disease, valve disease, and AF history (no history of AF, AF history in sinus rhythm at surgery, and AF history in AF at surgery) were selected for genome-wide mRNA microarray profiling. Transcripts were examined for differential expression with AF phenotype group. Enrichment in differentially expressed genes was examined in 3 gene set collections: a transcription factor collection, defined by shared conserved cis-regulatory motifs, a miRNA collection, defined by shared 3' untranslated region motifs, and a molecular function collection, defined by shared Gene Ontology molecular function. AF susceptibility was associated with decreased expression of the targets of CREB/ATF family, heat-shock factor 1, ATF6, SRF, and E2F1 transcription factors. Persistent AF activity was associated with decreased expression in genes and gene sets related to ion channel function consistent with reported functional changes. AF susceptibility was associated with decreased expression of targets of several transcription factors related to inflammation, oxidation, and cellular stress responses. In contrast, changes in ion channel expression were associated with AF activity but were limited in AF susceptibility. Our results suggest that significant transcriptional remodeling marks susceptibility to AF, whereas remodeling of ion channel expression occurs later in the progression or as a consequence of AF."	"Identifying factors predictive of mortality may be important to decrease risk associated with cardiac implantable electrical device (CIED) replacement procedures. This study aimed to determine whether clinical factors and complications independently associate with death and to develop a mortality risk prediction tool after CIED replacement. The prospective REPLACE Registry determined 6-month complication and mortality rates after CIED replacement with or without planned lead addition or revision. Vital status was collected. Kaplan-Meier survival and multivariable Cox proportional hazards regression analyses were performed to identify patient, procedural, or complication variables predictive of death. The REPLACE DARE (Death After Replacement Evaluation) Score was constructed using hazard ratios, reflecting relative risk contributions of each variable, combined into an additive mortality risk score equation. At 6 months, 70 of 1744 (4.0%) patients had died. Cox regression analysis found no significant association between major complications and death. However, recent heart failure admission, New York Heart Association class III/IV, antiarrhythmic drug use, cerebrovascular disease, and chronic kidney disease stage were independently associated with 6-month mortality. The REPLACE DARE Score was 2.0±1.4 in survivors versus 3.5±1.8 in nonsurvivors (P&lt;0.001), with predictive receiver operating characteristic value=0.758 (P&lt;0.001). Risk of death was 1.0% for DARE=0 and 55.6% for DARE=7. The hazard ratio was 1.8 for each change of 1 DARE unit. Comorbidities, but not complications, were significantly associated with mortality after CIED replacement. The REPLACE DARE Score is a novel tool that can identify patients with substantial mortality risk. Such patients should have the relative risk and benefit of their procedure considered carefully. http://www.clinicaltrials.gov. Unique identifier: NCT00395447."	"Despite sparse clinical data, current atrial fibrillation (AF) guidelines favor amiodarone as a drug of choice for patients with left ventricular hypertrophy (LVH). This study tested the hypothesis that patients with persistent AF and LVH on nonamiodarone antiarrhythmics have higher mortality compared to patients on amiodarone. In an observational cohort analysis of patients who underwent cardioversion for AF, patients with LVH, defined as left ventricular wall thickness ≥1.4 cm, by echocardiogram prior to their first cardioversion, were included; clinical data, including antiarrhythmic drugs and ejection fraction (LVEF), were collected. Mortality, determined via the Social Security Death Index, was analyzed using Kaplan-Meier and Cox proportional hazards models to determine whether antiarrhythmic drugs were associated with higher mortality. In 3,926 patients, echocardiographic wall thickness was available in 1,399 (age 66.8 ± 11.8 years, 67% male, LVEF 46 ± 15%, septum 1.3 ± 0.4, posterior wall 1.2 ± 0.2 cm), and 537 (38%) had LVH ≥1.4 cm. Among 537 patients with LVH, mean age was 67.5 ± 11.7 years, 76.4% were males, and mean LVEF was 48.3 ± 13.3%. Amiodarone was associated with lower survival (log rank P = 0.001), including after adjusting for age, LVEF, and coronary artery disease (P = 0.023). In propensity-score matched cohorts with LVH treated with no drugs, nonamiodarone antiarrhythmic drugs (non-AADs), or amiodarone (N = 65 each group), there was early lower survival in patients on amiodarone (P = 0.05). Patients with persistent AF and LVH on non-AADs do not have higher mortality compared to patients on amiodarone. Importantly, these findings do not support amiodarone as a superior choice in patients with LVH."	"The wearable cardioverter defibrillator (WCD) is an option for external monitoring and defibrillation in patients at risk for sudden cardiac arrest caused by ventricular tachycardia or ventricular fibrillation and who are not candidates for or who refuse an implantable cardioverter defibrillator (ICD). WCDs provide monitoring with backup defibrillation protection. WCDs have been used when a patient's condition delays or prohibits ICD implantation, or as a bridge when an indicated ICD must be explanted. WCDs are used for primary prevention of sudden cardiac death during high-risk gap periods early after myocardial infarction, coronary revascularization, or new diagnosis of heart failure. "
+"Claesen, Jan"	"Cardiovascular and Metabolic Sciences"	30244719	26376792	25079685	25053784	25036635	21421760	20805503	20351769	30389766	26876034	"The impact of antiseptics on the skin microbiota is poorly understood. SanMiguel et al. (2018) use a sequencing-based approach to compare treatment effects and find that they are dependent on interpersonal and body site-specific community differences. While treatment results in an immediate depletion of the skin microbiota, not all bacterial families are affected equally."	"Recent advances in genome sequencing, combined with bioinformatic analysis, has led to the identification of numerous novel natural product gene clusters, particularly in actinomycetes of terrestrial and marine origin. Many of these gene clusters encode uncharacterised Type III polyketide synthases. To facilitate the study of these genes and their potentially novel products, we set out to construct an actinomycete expression host specifically designed for the heterologous expression of Type III PKS genes and their gene clusters. A derivative of Streptomyces coelicolor A3(2) designed for the expression of Type III polyketide synthase (PKS) genes was constructed from the previously engineered expression strain S. coelicolor M1152 [Δact Δred Δcpk Δcda rpoB(C1298T)] by removal of all three of the endogenous Type III PKS genes (gcs, srsA, rppA) by PCR targeting. The resulting septuple deletion mutant, M1317, proved to be an effective surrogate host for the expression of actinobacterial Type III PKS genes: expression of the reintroduced gcs gene from S. coelicolor and of the heterologous rppA gene from Streptomyces venezuelae under the control of the constitutive ermE* promoter resulted in copious production of germicidin and flaviolin, respectively. The newly constructed expression host S. coelicolor M1317 should be particularly useful for the discovery and analysis of new Type III polyketide metabolites."	"Synthetic cell therapy is a field that has broad potential for future applications in human disease treatment. Next generation therapies will consist of engineered bacterial strains capable of diagnosing disease, producing and delivering therapeutics, and controlling their numbers to meet containment and safety concerns. A thorough understanding of the microbial ecology of the human body and the interaction of the microbes with the immune system will benefit the choice of an appropriate chassis that engrafts stably and interacts productively with the resident community in specific body niches."	"The majority of bacteria detected in the nostril microbiota of most healthy adults belong to three genera: Propionibacterium, Corynebacterium, and Staphylococcus. Among these staphylococci is the medically important bacterium Staphylococcus aureus. Almost nothing is known about interspecies interactions among bacteria in the nostrils. We observed that crude extracts of cell-free conditioned medium from Propionibacterium spp. induce S. aureus aggregation in culture. Bioassay-guided fractionation implicated coproporphyrin III (CIII), the most abundant extracellular porphyrin produced by human-associated Propionibacterium spp., as a cause of S. aureus aggregation. This aggregation response depended on the CIII dose and occurred during early stationary-phase growth, and a low pH (~4 to 6) was necessary but was not sufficient for its induction. Additionally, CIII induced plasma-independent S. aureus biofilm development on an abiotic surface in multiple S. aureus strains. In strain UAMS-1, CIII stimulation of biofilm depended on sarA, a key biofilm regulator. This study is one of the first demonstrations of a small-molecule-mediated interaction among medically relevant members of the nostril microbiota and the first description of a role for CIII in bacterial interspecies interactions. Our results indicate that CIII may be an important mediator of S. aureus aggregation and/or biofilm formation in the nostril or other sites inhabited by Propionibacterium spp. and S. aureus. Importance: Very little is known about interspecies interactions among the bacteria that inhabit the adult nostril, including Staphylococcus aureus, a potential pathogen that colonizes about a quarter of adults. We demonstrated that coproporphyrin III (CIII), a diffusible small molecule excreted by nostril- and skin-associated Propionibacterium spp., induces S. aureus aggregation in a manner dependent on dose, growth phase, and pH. CIII also induces S. aureus to form a plasma-independent surface-attached biofilm. This report is the first description of a role for CIII in bacterial interspecies interactions at any human body site and a novel demonstration that nostril microbiota physiology is influenced by small-molecule-mediated interactions."	"Although biosynthetic gene clusters (BGCs) have been discovered for hundreds of bacterial metabolites, our knowledge of their diversity remains limited. Here, we used a novel algorithm to systematically identify BGCs in the extensive extant microbial sequencing data. Network analysis of the predicted BGCs revealed large gene cluster families, the vast majority uncharacterized. We experimentally characterized the most prominent family, consisting of two subfamilies of hundreds of BGCs distributed throughout the Proteobacteria; their products are aryl polyenes, lipids with an aryl head group conjugated to a polyene tail. We identified a distant relationship to a third subfamily of aryl polyene BGCs, and together the three subfamilies represent the largest known family of biosynthetic gene clusters, with more than 1,000 members. Although these clusters are widely divergent in sequence, their small molecule products are remarkably conserved, indicating for the first time the important roles these compounds play in Gram-negative cell biology."	"Our recent identification and genetic analysis of the biosynthetic gene cluster for production of the ribosomally synthesized and posttranslationally modified peptide cypemycin revealed a new class of peptide natural products, the linaridins. Here we describe the identification and characterization of grisemycin, a linaridin produced by a previously unidentified gene cluster in Streptomyces griseus IFO 13350. Mass spectrometric analysis revealed that grisemycin possesses at least three of the modifications found in cypemycin, as well as an analogous leader peptidase cleavage site. Expression of putative grisemycin biosynthetic genes in a Streptomyces coelicolor A3(2) derivative, combined with deletion of the gene encoding the grisemycin precursor peptide, confirmed the identity of the grisemycin gene cluster. Both grisemycin and cypemycin depend on the transcriptional activator AdpA for wild-type levels of production."	"Posttranslational modification of amino acids confers a range of structural features and activities on ribosomally synthesized peptides, many of which have potent antimicrobial or other biological activities. Cypemycin is an extensively modified linear peptide produced by Streptomyces sp. OH-4156 with potent in vitro activity against mouse leukemia cells. Cypemycin does not contain lanthionine bridges but exhibits some of the structural features of lantibiotics, notably dehydrated threonines (dehydrobutyrines) and a C-terminal S-[(Z)-2-aminovinyl]-D-cysteine. Consequently it was classified as a member of the lantibiotic family of posttranslationally modified peptides. Cypemycin also possesses two L-allo-isoleucine residues and an N-terminal N,N-dimethylalanine, both unique amino acid modifications. We identified and heterologously expressed the cypemycin biosynthetic gene cluster and performed a mutational analysis of each individual gene. We show that even the previously described modifications are carried out by unusual enzymes or via a modification pathway unrelated to lantibiotic biosynthesis. Bioinformatic analysis revealed the widespread occurrence of cypemycin-like gene clusters within the bacterial kingdom and in the Archaea. Cypemycin is the founding member of an unusual class of posttranslationally modified ribosomally synthesized peptides, the linaridins."	"Lantibiotic synthetases are remarkable biocatalysts generating conformationally constrained peptides with a variety of biological activities by repeatedly utilizing two simple posttranslational modification reactions: dehydration of Ser/Thr residues and intramolecular addition of Cys thiols to the resulting dehydro amino acids. Since previously reported lantibiotic synthetases show no apparent homology with any other known protein families, the molecular mechanisms and evolutionary origin of these enzymes are unknown. In this study, we present a novel class of lanthionine synthetases, termed LanL, that consist of three distinct catalytic domains and demonstrate in vitro enzyme activity of a family member from Streptomyces venezuelae. Analysis of individually expressed and purified domains shows that LanL enzymes install dehydroamino acids via phosphorylation of Ser/Thr residues by a protein kinase domain and subsequent elimination of the phosphate by a phosphoSer/Thr lyase domain. The latter has sequence homology with the phosphothreonine lyases found in various pathogenic bacteria that inactivate host mitogen activated protein kinases. A LanC-like cyclase domain then catalyzes the addition of Cys residues to the dehydro amino acids to form the characteristic thioether rings. We propose that LanL enzymes have evolved from stand-alone protein Ser/Thr kinases, phosphoSer/Thr lyases, and enzymes catalyzing thiol alkylation. We also demonstrate that the genes for all three pathways to lanthionine-containing peptides are widespread in Nature. Given the remarkable efficiency of formation of lanthionine-containing polycyclic peptides and the latter's high degree of specificity for their cognate cellular targets, it is perhaps not surprising that (at least) three distinct families of polypeptide sequences have evolved to access this structurally and functionally diverse class of compounds."	"A mechanistic understanding of microbe-host interactions is critical to developing therapeutic strategies for targeted modulation of the host immune system. Different members of the gut symbiont species Lactobacillus reuteri modulate host health by, for example, reduction of intestinal inflammation. Previously, it was shown that L. reuteri activates the aryl hydrocarbon receptor (AhR), a ligand-activated transcription factor that plays an important role in the mucosal immune system, by the production of tryptophan catabolites. Here, we identified a novel pathway by which L. reuteri activates AhR, which is independent of tryptophan metabolism. We screened a library of 36 L. reuteri strains and determined that R2lc and 2010, strains with a pigmented phenotype, are potent AhR activators. By whole-genome sequencing and comparative genomics, we identified genes unique to R2lc and 2010. Our analyses demonstrated that R2lc harbors two genetically distinct polyketide synthase (PKS) clusters, functionally unknown (fun) and pks, each carried by a multicopy plasmid. Inactivation of pks, but not fun, abolished the ability of R2lc to activate AhR. L. reuteri 2010 has a gene cluster homologous to the pks cluster in R2lc with an identical gene organization, which is also responsible for AhR activation. In conclusion, we identified a novel PKS pathway in L. reuteri R2lc and 2010 that is responsible for AhR activation.IMPORTANCE Temporary changes in the composition of the microbiota, for example, by oral administration of probiotics, can modulate the host immune system. However, the underlying mechanisms by which probiotics interact with the host are often unknown. Here, we show that Lactobacillus reuteri R2lc and 2010 harbor an orthologous PKS gene cluster that activates the aryl hydrocarbon receptor (AhR). AhR is a ligand-activated transcription factor that plays a key role in a variety of diseases, including amelioration of intestinal inflammation. Understanding the mechanism by which a bacterium modulates the immune system is critical for applying rational selection strategies for probiotic supplementation. Finally, heterologous and/or optimized expression of PKS is a logical next step toward the development of next-generation probiotics to prevent and treat disease."	"Bacterial genomes encode the biosynthetic potential to produce hundreds of thousands of complex molecules with diverse applications, from medicine to agriculture and materials. Accessing these natural products promises to reinvigorate drug discovery pipelines and provide novel routes to synthesize complex chemicals. The pathways leading to the production of these molecules often comprise dozens of genes spanning large areas of the genome and are controlled by complex regulatory networks with some of the most interesting molecules being produced by non-model organisms. In this Review, we discuss how advances in synthetic biology--including novel DNA construction technologies, the use of genetic parts for the precise control of expression and for synthetic regulatory circuits--and multiplexed genome engineering can be used to optimize the design and synthesis of pathways that produce natural products."
+"Comhair, Suzy"	"Inflammation and Immunity"	30376852	26048149	25488689	22427538	21572527	19634987	15883124	15743779	15650397	12114185	"Aspirin-exacerbated respiratory disease (AERD) is a distinct eosinophilic phenotype of severe asthma with accompanying chronic rhinosinusitis, nasal polyposis, and hypersensitivity to aspirin. Urinary 3-bromotyrosine (uBrTyr) is a noninvasive marker of eosinophil-catalyzed protein oxidation. The lack of in vitro diagnostic test makes the diagnosis of AERD difficult. We aimed to determine uBrTyr levels in patients with AERD (n = 240) and aspirin-tolerant asthma (ATA) (n = 226) and to assess whether its addition to urinary leukotriene E4 (uLTE4) levels and blood eosinophilia can improve the prediction of AERD diagnosis. Clinical data, spirometry and blood eosinophilis were evaluated. UBrTyr and uLTE4 levels were measured in urine by HPLC and ELISA, respectively. Both groups of asthmatics (AERD, n = 240; ATA, n = 226) had significantly higher uBrTyr, uLTE4 levels, and blood eosinophils than healthy controls (HC) (n = 71) (p &lt; 0.05). ULTE4 levels and blood eosinophils were significantly higher in AERD as compared to ATA (p = 0.004, p &lt; 0.0001, respectively). whereas uBrTyr levels were not significantly different between both asthma phenotypes (p = 0.34). Asthmatics with high levels of uBrTyr (&gt; 0.101 ng/mg Cr), uLTE4 levels (&gt; 800 pg/mg Cr) and blood eosinophils (&gt; 300 cells/ul) were 7 times more likely to have AERD.. However, uBrTyr did not increase the benefit for predicting AERD when uLTE4 and blood eosinophils were already taken into account (p = 0.57). UBrTyr levels are elevated both in AERD and ATA as compared to HC, but they could not differentiate between these asthma phenotypes suggesting a similar eosinophilic activation. The addition of uBrTyr to elevated uLTE4 levels and blood eosinophils did not statistically enhance the prediction of AERD diagnosis."	"Metabolomics, the quantification of small biochemicals in plasma and tissues, can provide insight into complex biochemical processes and enable the identification of biomarkers that may serve as therapeutic targets. We hypothesized that the plasma metabolome of asthma would reveal metabolic consequences of the specific immune and inflammatory responses unique to endotypes of asthma. The plasma metabolomic profiles of 20 asthmatic subjects and 10 healthy controls were examined using an untargeted global and focused metabolomic analysis. Individuals were classified based on clinical definitions of asthma severity or by levels of fraction of exhaled NO (FENO), a biomarker of airway inflammation. Of the 293 biochemicals identified in the plasma, 25 were significantly different among asthma and healthy controls (p &lt; 0.05). Plasma levels of taurine, lathosterol, bile acids (taurocholate and glycodeoxycholate), nicotinamide, and adenosine-5-phosphate were significantly higher in asthmatics compared with healthy controls. Severe asthmatics had biochemical changes related to steroid and amino acid/protein metabolism. Asthmatics with high FENO, compared with those with low FENO, had higher levels of plasma branched-chain amino acids and bile acids. Asthmatics have a unique plasma metabolome that distinguishes them from healthy controls and points to activation of inflammatory and immune pathways. The severe asthmatic and high FENO asthmatic have unique endotypes that suggest changes in NO-associated taurine transport and bile acid metabolism. "	"Asthma is a heterogeneous disease with different phenotypes. Inhaled corticosteroid (ICS) therapy is a mainstay of treatment for asthma, but the clinical response to ICSs is variable. We hypothesized that a panel of inflammatory biomarkers (ie, fraction of exhaled nitric oxide [Feno], sputum eosinophil count, and urinary bromotyrosine [BrTyr] level) might predict steroid responsiveness. The original study from which this analysis originates comprised 2 phases: a steroid-naive phase 1 and a 28-day trial of ICSs (phase 2) during which Feno values, sputum eosinophil counts, and urinary BrTyr levels were measured. The response to ICSs was based on clinical improvements, including a 12% or greater increase in FEV1, a 0.5-point or greater decrease in Asthma Control Questionnaire score, and 2 doubling dose or greater increase in provocative concentration of adenosine 5'-monophosphate causing a 20% decrease in FEV1 (PC20AMP). Healthy control subjects were also evaluated in this study for comparison of biomarkers with those seen in asthmatic patients. Asthmatic patients had higher than normal Feno values, sputum eosinophil counts, and urinary BrTyr levels during the steroid-naive phase and after ICS therapy. After 28-day trial of ICSs, Feno values decreased in 82% of asthmatic patients, sputum eosinophil counts decreased in 60%, and urinary BrTyr levels decreased in 58%. Each of the biomarkers at the steroid-naive phase had utility for predicting steroid responsiveness, but the combination of high Feno values and high urinary BrTyr levels had the best power (13.3-fold, P &lt; .01) to predict a favorable response to ICS therapy. However, the magnitude of the decrease in biomarker levels was unrelated to the magnitude of clinical response to ICS therapy. A noninvasive panel of biomarkers in steroid-naive asthmatic patients predicts clinical responsiveness to ICS therapy."	"Pulmonary endothelial functions are critical to maintain the low pressure of the pulmonary circulation and effective diffusion capacity of the lung. To investigate pulmonary endothelial cell biology in healthy or diseased lungs, we developed methods to harvest and culture pure populations of primary pulmonary arterial endothelial cells and microvascular endothelial cells from human lung explanted at time of transplantation or from donor lungs not used in transplantation. The purity and characteristics of cultured endothelial cells is ascertained by morphologic criteria using phase contrast and electron microscopy; phenotypic expression profile for endothelial specific proteins such as endothelial nitric oxide synthase, platelet/endothelial cell adhesion molecule, and von Willbrand factor; and endothelial function assays such as Dil-acetylated low-density lipoprotein uptake and tube formation. This detailed method provides researchers with the ability to establish cells for molecular, genetic, and biochemical investigation of human pulmonary vascular diseases."	"Environmental tobacco smoke (ETS) has adverse effects on the health of asthmatics, however the harmful consequences of ETS in relation to asthma severity are unknown. In a multicenter study of severe asthma, we assessed the impact of ETS exposure on morbidity, health care utilization and lung functions; and activity of systemic superoxide dismutase (SOD), a potential oxidative target of ETS that is negatively associated with asthma severity. From 2002-2006, 654 asthmatics (non-severe 366, severe 288) were enrolled, among whom 109 non-severe and 67 severe asthmatics were routinely exposed to ETS as ascertained by history and validated by urine cotinine levels. ETS-exposure was associated with lower quality of life scores; greater rescue inhaler use; lower lung function; greater bronchodilator responsiveness; and greater risk for emergency room visits, hospitalization and intensive care unit admission. ETS-exposure was associated with lower levels of serum SOD activity, particularly in asthmatic women of African heritage. ETS-exposure of asthmatic individuals is associated with worse lung function, higher acuity of exacerbations, more health care utilization, and greater bronchial hyperreactivity. The association of diminished systemic SOD activity to ETS exposure provides for the first time a specific oxidant mechanism by which ETS may adversely affect patients with asthma."	"An imbalance in reducing and oxidizing (redox) systems favoring a more oxidative environment is present in asthma and linked to the pathophysiology of the defining symptoms and signs including airflow limitation, hyper-reactivity, and airway remodeling. High levels of hydrogen peroxide, nitric oxide ((*)NO), and 15-F(2t)-isoprostane in exhaled breath, and excessive oxidative protein products in lung epithelial lining fluid, peripheral blood, and urine provide abundant evidence for pathologic oxidizing processes in asthma. Parallel studies document loss of reducing potential by nonenzymatic and enzymatic antioxidants. The essential first line antioxidant enzymes superoxide dismutases (SOD) and catalase are reduced in asthma as compared to healthy individuals, with lowest levels in those patients with the most severe asthma. Loss of SOD and catalase activity is related to oxidative modifications of the enzymes, while other antioxidant gene polymorphisms are linked to susceptibility to develop asthma. Monitoring of exhaled (*)NO has entered clinical practice because it is useful to optimize asthma care, and a wide array of other biochemical oxidative and nitrative biomarkers are currently being evaluated for asthma monitoring and phenotyping. Novel therapeutic strategies that target correction of redox abnormalities show promise for the treatment of asthma."	"Increased oxidative stress and decreased superoxide dismutase (SOD) activity in the asthmatic airway are correlated to airflow limitation and hyperreactivity. We hypothesized that asthmatic individuals with higher levels of oxidative stress may have greater loss of SOD activity, which would be reflected systemically in loss of circulating SOD activity and clinically by development of severe asthma and/or worsening airflow limitation. To investigate this, serum SOD activity and proteins, the glutathione peroxidase/glutathione antioxidant system, and oxidatively modified amino acids were measured in subjects with asthma and healthy control subjects. SOD activity, but not Mn-SOD or Cu,Zn-SOD protein, was lower in asthmatic serum as compared with control, and activity loss was significantly related to airflow limitation. Further, serum SOD activity demonstrated an inverse correlation with circulating levels of 3-bromotyrosine, a posttranslational modification of proteins produced by the eosinophil peroxidase system of eosinophils. Exposure of purified Cu,Zn-SOD to physiologically relevant levels of eosinophil peroxidase-generated reactive brominating species, reactive nitrogen species, or tyrosyl radicals in vitro confirmed that eosinophil-derived oxidative pathways promote enzyme inactivation. These findings are consistent with greater oxidant stress in asthma leading to greater inactivation of SOD, which likely amplifies inflammation and progressive airflow obstruction."	"Airway hyperresponsiveness and remodeling are defining features of asthma. We hypothesized that impaired superoxide dismutase (SOD) antioxidant defense is a primary event in the pathophysiology of hyperresponsiveness and remodeling that induces apoptosis and shedding of airway epithelial cells. Mechanisms leading to apoptosis were studied in vivo and in vitro. Asthmatic lungs had increased apoptotic epithelial cells compared to controls as determined by terminal dUTP nick-end labeling-positive cells. Apoptosis was confirmed by the finding that caspase-9 and -3 and poly (ADP-ribose) polymerase were cleaved. On the basis that SOD inactivation triggers cell death and low SOD levels occur in asthma, we tested whether SOD inactivation plays a role in airway epithelial cell death. SOD inhibition increased cell death and cleavage/activation of caspases in bronchial epithelial cells in vitro. Furthermore, oxidation and nitration of MnSOD were identified in the asthmatic airway, correlating with physiological parameters of asthma severity. These findings link oxidative and nitrative stress to loss of SOD activity and downstream events that typify asthma, including apoptosis and shedding of the airway epithelium and hyperresponsiveness."	"Reactive oxygen species and reactive nitrogen species are mediators of lung tissue damage. To minimize the effect of oxidative stress, the lung is well equipped with an integrated antioxidant system. In some circumstances, antioxidants increase in response to oxidants and reduce tissue injury. The lung is somewhat unique in that it has an extracellular surface, which is often directly exposed to oxidative stresses. In this context, the extracellular antioxidant system, comprised primarily of glutathione and glutathione peroxidase, is especially important in protecting against oxidant injury. Induction of extracellular glutathione peroxidase occurs in airway inflammation and undoubtedly plays an important defense against oxidative injury to the airway surface."	"Reactive oxygen species (ROS) and reactive nitrogen species (RNS) are generated throughout the human body. Enzymatic and nonenzymatic antioxidants detoxify ROS and RNS and minimize damage to biomolecules. An imbalance between the production of ROS and RNS and antioxidant capacity leads to a state of &quot;oxidative stress&quot; that contributes to the pathogenesis of a number of human diseases by damaging lipids, protein, and DNA. In general, lung diseases are related to inflammatory processes that generate increased ROS and RNS. The susceptibility of the lung to oxidative injury depends largely on its ability to upregulate protective ROS and RNS scavenging systems. Unfortunately, the primary intracellular antioxidants are expressed at low levels in the human lung and are not acutely induced when exposed to oxidative stresses such as cigarette smoke and hyperoxia. However, the response of extracellular antioxidant enzymes, the critical primary defense against exogenous oxidative stress, increases rapidly and in proportion to oxidative stress. In this paper, we review how antioxidants in the lung respond to oxidative stress in several lung diseases and focus on the mechanisms that upregulate extracellular glutathione peroxidase."
+"Crabb, John"	"Ophthalmic Research"	26305875	24799364	24098476	22876128	21917933	20412794	20238042	20177130	19435712	19202148	"Uveal melanoma is the most common malignancy of the adult eye. The overall mortality rate is high because this aggressive cancer often metastasizes before ophthalmic diagnosis. Quantitative proteomic analysis of primary metastasizing and non-metastasizing tumors was pursued for insights into mechanisms and biomarkers of uveal melanoma metastasis. Eight metastatic and 7 non-metastatic human primary uveal melanoma tumors were analyzed by LC MS/MS iTRAQ technology with Bruch's membrane/choroid complex from normal postmortem eyes as control tissue. Tryptic peptides from tumor and control proteins were labeled with iTRAQ tags, fractionated by cation exchange chromatography, and analyzed by LC MS/MS. Protein identification utilized the Mascot search engine and the human Uni-Prot/Swiss-Protein database with false discovery ≤ 1%; protein quantitation utilized the Mascot weighted average method. Proteins designated differentially expressed exhibited quantitative differences (p ≤ 0.05, t-test) in a training set of five metastatic and five non-metastatic tumors. Logistic regression models developed from the training set were used to classify the metastatic status of five independent tumors. Of 1644 proteins identified and quantified in 5 metastatic and 5 non-metastatic tumors, 12 proteins were found uniquely in ≥ 3 metastatic tumors, 28 were found significantly elevated and 30 significantly decreased only in metastatic tumors, and 31 were designated differentially expressed between metastatic and non-metastatic tumors. Logistic regression modeling of differentially expressed collagen alpha-3(VI) and heat shock protein beta-1 allowed correct prediction of metastasis status for each of five independent tumor specimens. The present data provide new clues to molecular differences in metastatic and non-metastatic uveal melanoma tumors. While sample size is limited and validation required, the results support collagen alpha-3(VI) and heat shock protein beta-1 as candidate biomarkers of uveal melanoma metastasis and establish a quantitative proteomic database for uveal melanoma primary tumors."	"The formation of extracellular deposits known as drusen below the macular region of the retina correlates with increased risk of severe visual loss from age-related macular degeneration (AMD). Inflammation and complement dysregulation contribute to AMD progression; however, disease mechanisms remain incompletely defined. Multiple genetic and environmental factors influence AMD pathology, and although immune system processes play a central role, multiple molecular mechanisms appear to be involved. Drusen proteomics, including the analyses of constituent proteins, oxidative protein modifications, and pattern recognition receptors, provide a foundation for deciphering mechanisms of drusen biogenesis and AMD pathology. "	"Carboxyethylpyrrole (CEP) adducts are oxidative modifications derived from docosahexaenoate-containing lipids that are elevated in ocular tissues and plasma in age-related macular degeneration (AMD) and in rodents exposed to intense light. The goal of this study was to determine whether light-induced CEP adducts and autoantibodies are modulated by pretreatment with AL-8309A under conditions that prevent photo-oxidative damage of rat retina. AL-8309A is a serotonin 5-HT1A receptor agonist. Albino rats were dark adapted prior to blue light exposure. Control rats were maintained in normal cyclic light. Rats were injected subcutaneously 3x with 10 mg/kg AL-8309A (2 days, 1 day and 0 hours) before light exposure for 6 h (3.1 mW/cm(2), λ=450 nm). Animals were sacrificed immediately following light exposure and eyes, retinas and plasma were collected. CEP adducts and autoantibodies were quantified by Western analysis or ELISA. ANOVA supported significant differences in mean amounts of CEP adducts and autoantibodies among the light + vehicle, light + drug and dark control groups from both retina and plasma. Light-induced CEP adducts in retina were reduced ~20% following pretreatment with AL-8309A (n = 62 rats, p = 0.006) and retinal CEP immunoreactivity was less intense by immunohistochemistry. Plasma levels of light-induced CEP adducts were reduced at least 30% (n = 15 rats, p = 0.004) by drug pretreatment. Following drug treatment, average CEP autoantibody titer in light exposed rats (n = 22) was unchanged from dark control levels, and ~20% (p = 0.046) lower than in vehicle-treated rats. Light-induced CEP adducts in rat retina and plasma were significantly decreased by pretreatment with AL-8309A. These results are consistent with and extend previous studies showing AL-8309A reduces light-induced retinal lesions in rats and support CEP biomarkers as possible tools for monitoring the efficacy of select therapeutics."	"Glucocorticoids (GCs) are common anti-inflammatory agents that can cause ocular hypertension and secondary glaucoma as a consequence of impaired aqueous humor outflow through the trabecular meshwork (TM). Mechanisms of GC-signaling are complex and poorly understood. To better understand GC-signaling in the eye, we tested the hypothesis that common mechanisms of steroid responsiveness exist in TM cells from normal and glaucomatous donors. Four primary cultures of human TM cells from normal and glaucomatous donors were treated with or without dexamethasone (Dex) for 10 days, then cellular proteins were extracted, identified and quantified by liquid chromatography tandem mass spectrometry (LC MS/MS) iTRAQ (isobaric tags for relative and absolute quantitation) technology. A total of 718 proteins were quantified. Dex-treatment significantly altered the abundance of 40 proteins in ≥3 cell samples, 37 of which have not previously been associated with GC-signaling in TM cells. Most steroid responsive proteins were changed in all four TM cells analyzed, both normal and glaucomatous. GC-induced proteomic changes support remodeling of the extracellular matrix, disorganization of the cytoskeleton/cell-cell interactions, and mitochondrial dysfunction. Such physiologic consequences appear common to those induced in TM cells by transforming growth factor-β(2), another putative contributor to ocular hypertension and glaucoma pathology. The results expand the repertoire of TM proteins involved in GC-signaling, demonstrate common consequences of GC-signaling in normal and glaucomatous TM cells, and reveal similarities in proteomic changes induced by steroids and TGFβ(2) in normal and glaucomatous TM cells. Finally, the data contributes to a TM quantitative proteomic database."	"Transforming growth factor beta 2 (TGFβ₂) is often elevated in the aqueous humor (AH) and trabecular meshwork (TM) of patients with primary open-angle glaucoma (POAG) and appears to contribute to POAG pathogenesis. To better understand TGFβ₂ signaling in the eye, TGFβ₂-induced proteomic changes were identified in cells cultured from the TM, a tissue involved in intraocular pressure (IOP) elevation in glaucoma. Primary cultures of human TM cells from four donors were treated with or without TGFβ₂ (5 ng/mL) for 48 hours; then cellular protein was analyzed by liquid chromatography-mass spectrometry iTRAQ (isobaric tags for relative and absolute quantitation) technology. A total of 853 proteins were quantified. TGFβ₂ treatment significantly altered the abundance of 47 proteins, 40 of which have not previously been associated with TGFβ₂ signaling in the eye. More than half the 30 elevated proteins support growing evidence that TGFβ₂ induces extracellular matrix remodeling and abnormal cytoskeletal interactions in the TM. The levels of 17 proteins were reduced, including four cytoskeletal and six regulatory proteins. Both elevated and decreased regulatory proteins implicate TGFβ₂-altered processes involving transcription, translation, and the glutamate/glutamine cycle. Altered levels of eight mitochondrial proteins support TGFβ₂-induced mitochondrial dysfunction in the TM that in POAG could contribute to oxidative damage in the AH outflow pathway, TM senescence, and elevated IOP. The results expand the repertoire of proteins known to participate in TGFβ₂ signaling, provide new molecular insight into POAG, and establish a quantitative proteomics database for the TM that includes candidate glaucoma biomarkers for future validation studies."	"Quantitative proteomic analysis was pursued of retinal ganglion cells (RGCs) from rats with unilateral experimental glaucoma. RGCs were isolated from 22 animals by immunopanning after 8 weeks of sustained elevated intraocular pressure. Proteins were quantified by LC MS/MS iTRAQ technology. Of the 268 proteins quantified, approximately 8% appeared elevated and approximately 13% decreased in glaucomatous RGCs. Voltage-dependent anion channel protein 2, aldose reductase, and ubiquitin were among the significantly elevated proteins while prothymosin was among the significantly decreased. The results demonstrate the feasibility of identifying global proteomic differences in protein expression between purified glaucomatous and control in vivo RGCs."	"Toward early detection of susceptibility to age-related macular degeneration (AMD), we quantified plasma carboxyethylpyrrole (CEP) oxidative protein modifications and CEP autoantibodies by ELISA in 916 AMD and 488 control donors. Mean CEP adduct and autoantibody levels were elevated in AMD plasma by ∼60 and ∼30%, respectively, and the odds ratio for both CEP markers elevated was ∼3-fold greater in AMD than in control patients. Genotyping was performed for AMD risk polymorphisms associated with age-related maculopathy susceptibility 2 (ARMS2), high-temperature requirement factor A1 (HTRA1), complement factor H (CFH), and complement C3. The AMD risk predicted for those exhibiting elevated CEP markers and risk genotypes was 2- to 3-fold greater than the risk based on genotype alone. AMD donors carrying the ARMS2 and HTRA1 risk alleles were the most likely to exhibit elevated CEP markers. Receiver operating characteristic curves suggest that CEP markers alone can discriminate between AMD and control plasma donors with ∼76% accuracy and in combination with genomic markers, provide up to ∼80% discrimination accuracy. CEP plasma biomarkers, particularly in combination with genomic markers, offer a potential early warning system for predicting susceptibility to this blinding disease."	"A quantitative proteomics analysis of the macular Bruch membrane/choroid complex was pursued for insights into the molecular mechanisms of age-related macular degeneration (AMD). Protein in trephine samples from the macular region of 10 early/mid-stage dry AMD, six advanced dry AMD, eight wet AMD, and 25 normal control post-mortem eyes was analyzed by LC MS/MS iTRAQ (isobaric tags for relative and absolute quantitation) technology. A total of 901 proteins was quantified, including 556 proteins from &gt; or =3 AMD samples. Most proteins differed little in amount between AMD and control samples and therefore reflect the proteome of normal macular tissues of average age 81. A total of 56 proteins were found to be elevated and 43 were found to be reduced in AMD tissues relative to controls. Analysis by category of disease progression revealed up to 16 proteins elevated or decreased in each category. About 60% of the elevated proteins are involved in immune response and host defense, including many complement proteins and damage-associated molecular pattern proteins such as alpha-defensins 1-3, protein S100s, crystallins, histones, and galectin-3. Four retinoid processing proteins were elevated only in early/mid-stage AMD, supporting a role for retinoids in AMD initiation. Proteins uniquely decreased in early/mid-stage AMD implicate hematologic malfunctions and weakened extracellular matrix integrity and cellular interactions. Galectin-3, a receptor for advanced glycation end products, was the most significantly elevated protein in advanced dry AMD, supporting a role for advanced glycation end products in dry AMD progression. The results endorse inflammatory processes in both early and advanced AMD pathology, implicate different pathways of progression to advanced dry and wet AMD, and provide a new database for hypothesis-driven and discovery-based studies of AMD."	"Age-related macular degeneration (AMD) causes severe vision loss in the elderly; early identification of AMD risk could help slow or prevent disease progression. Toward the discovery of AMD biomarkers, we quantified plasma protein N(epsilon)-carboxymethyllysine (CML) and pentosidine from 58 AMD and 32 control donors. CML and pentosidine are advanced glycation end products that are abundant in Bruch membrane, the extracellular matrix separating the retinal pigment epithelium from the blood-bearing choriocapillaris. We measured CML and pentosidine by LC-MS/MS and LC-fluorometry, respectively, and found higher mean levels of CML (approximately 54%) and pentosidine (approximately 64%) in AMD (p &lt; 0.0001) relative to normal controls. Plasma protein fructosyl-lysine, a marker of early glycation, was found by amino acid analysis to be in equal amounts in control and non-diabetic AMD donors, supporting an association between AMD and increased levels of CML and pentosidine independent of other diseases like diabetes. Carboxyethylpyrrole (CEP), an oxidative modification from docosahexaenoate-containing lipids and also abundant in AMD Bruch membrane, was elevated approximately 86% in the AMD cohort, but autoantibody titers to CEP, CML, and pentosidine were not significantly increased. Compellingly higher mean levels of CML and pentosidine were present in AMD plasma protein over a broad age range. Receiver operating curves indicate that CML, CEP adducts, and pentosidine alone discriminated between AMD and control subjects with 78, 79, and 88% accuracy, respectively, whereas CML in combination with pentosidine provided approximately 89% accuracy, and CEP plus pentosidine provided approximately 92% accuracy. Pentosidine levels appeared slightly altered in AMD patients with hypertension and cardiovascular disease, indicating further studies are warranted. Overall this study supports the potential utility of plasma protein CML and pentosidine as biomarkers for assessing AMD risk and susceptibility, particularly in combination with CEP adducts and with concurrent analyses of fructosyl-lysine to detect confounding factors."	"Age-related macular degeneration (AMD) is a progressive disease and major cause of severe visual loss. Toward the discovery of tools for early identification of AMD susceptibility, we evaluated the combined predictive capability of proteomic and genomic AMD biomarkers. We quantified plasma carboxyethylpyrrole (CEP) oxidative protein modifications and CEP autoantibodies by ELISA in 916 AMD and 488 control donors. CEP adducts are uniquely generated from oxidation of docosahexaenoate-containing lipids that are abundant in the retina. Mean CEP adduct and autoantibody levels were found to be elevated in AMD plasma by approximately 60 and approximately 30%, respectively. The odds ratio for both CEP markers elevated was 3-fold greater or more in AMD than in control patients. Genotyping was performed for AMD risk polymorphisms associated with age-related maculopathy susceptibility 2 (ARMS2), high temperature requirement factor A1 (HTRA1), complement factor H, and complement C3, and the risk of AMD was predicted based on genotype alone or in combination with the CEP markers. The AMD risk predicted for those exhibiting elevated CEP markers and risk genotypes was 2-3-fold greater than the risk based on genotype alone. AMD donors carrying the ARMS2 and HTRA1 risk alleles were the most likely to exhibit elevated CEP markers. The results compellingly demonstrate higher mean CEP marker levels in AMD plasma over a broad age range. Receiver operating characteristic curves suggest that CEP markers alone can discriminate between AMD and control plasma donors with approximately 76% accuracy and in combination with genomic markers provide up to approximately 80% discrimination accuracy. Plasma CEP marker levels were altered slightly by several demographic and health factors that warrant further study. We conclude that CEP plasma biomarkers, particularly in combination with genomic markers, offer a potential early warning system for assessing susceptibility to this blinding, multifactorial disease."
+"Cresci, Gail"	"Inflammation and Immunity"	30621265	30211234	29874807	29385239	28737582	28333199	28087985	27540042	25855578	26919968	"Gut dysbiosis and altered short-chain fatty acids are associated with ethanol-induced liver injury. SCFA are fermentation byproducts of the gut microbiota known to have many beneficial biological effects. We tested if a designer synbiotic could protect against ethanol-induced gut-liver injury. C57BL/6 female mice were exposed to chronic-binge ethanol feeding consisting of ethanol (5% vol/vol) for 10 days, followed by a single gavage (5 g/kg body weight) 6 h before euthanasia. A group of mice also received oral supplementation daily with a designer synbiotic, and another group received fecal slurry (FS); control animals received saline. Control mice were isocalorically substituted maltose dextran for ethanol over the entire exposure period. Ethanol exposure reduced expression of tight junction proteins in the proximal colon and induced hepatocyte injury and steatosis. Synbiotic supplementation not only mitigated losses in tight junction protein expression, but also prevented ethanol-induced steatosis and hepatocyte injury. Ethanol exposure also increased hepatic inflammation and oxidative stress, which was also attenuated by synbiotic supplementation. Mice receiving FS were not protected from ethanol-induced liver injury or steatosis. Results were associated with luminal SCFA levels and SCFA transporter expression in the proximal colon and liver. These results indicate supplementation with a designer synbiotic is effective in attenuating chronic-binge ethanol-induced gut-liver injury and steatosis in mice, and highlight the beneficial effects of the gut microbial fermentation byproducts."	"Excessive ethanol consumption causes adverse effects and contributes to organ dysfunction. Ethanol metabolism triggers oxidative stress, altered immune function, and gut dysbiosis. The gut microbiome is known to contribute to the maintenance of intestinal homeostasis, and disturbances are associated with pathology. A consequence of gut dysbiosis is also alterations in its metabolic and fermentation byproducts. The gut microbiota ferments undigested dietary polysaccharides to yield short-chain fatty acids, predominantly acetate, propionate, and butyrate. Butyrate has many biological mechanisms of action including anti-inflammatory and immunoprotective effects, and its depletion is associated with intestinal injury. We previously showed that butyrate protects gut-liver injury during ethanol exposure. While the intestine is the largest immune organ in the body, little is known regarding the effects of ethanol on intestinal immune function. This work is aimed at investigating the effects of butyrate supplementation, in the form of the structured triglyceride tributyrin, on intestinal innate immune responses and oxidative stress following chronic-binge ethanol exposure in mice. Our work suggests that tributyrin supplementation preserved immune responses and reduced oxidative stress in the proximal colon during chronic-binge ethanol exposure. Our results also indicate a possible involvement of tributyrin in maintaining the integrity of intestinal villi vasculature disrupted by chronic-binge ethanol exposure."	"Nonalcoholic fatty liver disease (NAFLD) is the leading cause of chronic liver disease, with prevalence increasing in parallel with the rising incidence in obesity. Believed to be a &quot;multiple-hit&quot; disease, several factors contribute to NAFLD initiation and progression. Of these, the gut microbiome is gaining interest as a significant factor in NAFLD prevalence. In this paper, we provide an in-depth review of the progression of NAFLD, discussing the mechanistic modes of hepatocyte injury and the potential role for manipulation of the gut microbiome as a therapeutic strategy in the prevention and treatment of NAFLD."	"Clostridium difficile (CD) infection (CDI) increases patient morbidity, mortality and healthcare costs. Antibiotic treatment induces gut dysbiosis and is both a major risk factor for CD colonization and treatment of CDI. Probiotics have been trialed to support commensal gut microbiota and reduce CDI. This study investigated commensal microbe Faecalibacterium prausnitzii (FP) and a prebiotic, both known to yield butyrate and be anti-inflammatory and immunomodulatory, on CD colonization and gut integrity in mice. Mice were randomly grouped and supplemented daily with FP, prebiotic, FP + prebiotic, FP/prebiotic supernatant, or saline throughout the entire study. Following treatment with clindamycin for 3 days, mice were exposed to CD. Feces were collected at baseline, the day after antibiotic, and 1, 3, and 5 days after CD exposure and cultured for bacterial overgrowth and CD colonization. On days 1 and 5 after CD exposure, mice were randomly euthanized, and proximal colon was dissected for histological analysis and preparation of RNA for analysis of proinflammatory and anti-inflammatory cytokines. Although all mice exhibited bacterial overgrowth and CD colonization, bacterial burden resolved quicker in the FP + prebiotic group. This was associated with induction and resolution of innate immune responses, anion exchanger, and tight junction protein preservation in proximal colon. CD toxin virulence potential was questionable as expression of CD toxin B receptor was depleted in the FP + prebiotic group. Supplementation with anti-inflammatory butyrate-supporting commensal bacteria and prebiotic may support innate immune responses and minimize bacterial burden and negative effects during antibiotic and CD exposure."	"Irritable bowel syndrome (IBS) is the most common functional gastrointestinal disorder (FGID) encountered by the pediatrician and consultant. The primary focus of this review is to provide an update on beneficial nutritional interventions for managing this patient population with discussion on gut microbiome effects. A common complaint among the pediatric population is IBS-related recurrent abdominal pain. The prevalence of IBS is estimated to range between 6 and 14% and is defined by the Rome III criteria for FGIDs. Recent studies highlight the role of nutritional interventions in mitigating symptoms of IBS. Although eliminating foods that aggravate IBS gastrointestinal symptoms have become a main nutritional approach for acute management of IBS, recent literature reflects how this may impact the gut microbiome and potentially have long-term implications. There are emerging studies suggesting IBS symptomatic improvement with different dietary interventions in the pediatric population, but most of what is known at this time has been extrapolated from the adult literature."	"Campylobacter jejuni frequently infects humans causing many gastrointestinal symptoms, fever, fatigue and several long-term debilitating diseases. Current treatment for campylobacteriosis includes rehydration and in some cases, antibiotic therapy. Probiotics are used to treat several gastrointestinal diseases. Butyrate is a short-chain fatty acid known to promote intestinal health. Interaction of butyrate with its respective receptor (HCAR2) and transporter (SLC5A8), both expressed in the intestine, is associated with water and electrolyte absorption as well as providing defense against colon cancer and inflammation. Alterations in gut microbiota influence the presence of HCAR2 and SLC5A8 in the intestine. We hypothesized that adherence and/or invasion of C. jejuni and alterations in HCAR2 and SLC5A8 expression would be minimized with butyrate or Lactobacillus GG (LGG) pretreatment of Caco-2 cells. We found that both C. jejuni adhesion but not invasion was reduced with butyrate pretreatment. While LGG pretreatment did not prevent C. jejuni adhesion, it did result in reduced invasion which was associated with altered cell supernate pH. Both butyrate and LGG protected HCAR2 and SLC5A8 protein expression following C. jejuni infection. These results suggest that the first stages of C. jejuni infection of Caco-2 cells may be minimized by LGG and butyrate pretreatment."	"Impaired gut-liver axis is a potential factor contributing to alcoholic liver disease. Ethanol depletes intestinal integrity and causes gut dysbiosis. Butyrate, a fermentation byproduct of gut microbiota, is altered negatively following chronic ethanol exposure. This study aimed to determine whether prophylactic tributyrin could protect the intestinal barrier and liver in mice during combined chronic-binge ethanol exposure. C57BL/6J mice exposed to 5% v/v ethanol-containing diet for 10 days received a single ethanol gavage (5 g/kg) 9 h before euthanasia. Control mice were isocalorically pair-fed maltose dextrin for ethanol. Diets were supplemented (5 mM) with tributyrin or glycerol. Intestine and liver disease activity was assessed histologically. Protein and mRNA expression of tight junction (TJ) proteins, toll-like receptors, and tumor necrosis factor-alpha were assessed. Caco-2 monolayers with or without ethanol exposure and/or sodium butyrate were used to test butyrate's direct effects on intestinal integrity. Chronic-binge ethanol feeding impaired intestinal TJ protein co-localization staining; however, tributyrin co-treatment mitigated these effects. Ethanol depleted TJ and transepithelial electrical resistance in Caco-2 monolayers, but butyrate co-treatment reduced these effects. Hepatic toll-like receptor mRNA expression and tumor necrosis factor-alpha protein expression was induced by ethanol; however, the response was significantly dampened in mice co-treated with tributyrin. Tributyrin altered localization of both neutrophils and single hepatocyte death: Leukocytes and apoptotic hepatocytes localized predominantly around the portal tract in ethanol-only treated mice, whereas localization predominated around the central vein in ethanol-tributyrin mice. Prophylactic tributyrin supplementation mitigated effects of combined chronic-binge ethanol exposure on disruption of intestinal TJ localization and intestinal permeability and liver injury."	"Reducing hospital readmissions decreases healthcare costs and improves quality of care. There are no published studies examining the rate of, and risk factors for, 30-day readmissions for patients discharged with home parenteral support (HPS). Determine the rate of 30-day readmissions for patients discharged with HPS and whether malnutrition and other demographic or clinical factors increase the risk. Retrospective review of patients discharged with HPS from the Cleveland Clinic between July 1, 2013, and June 30, 2014, and followed by the Cleveland Clinic Home Nutrition Support Service. Of the 224 patients studied, 31.6% (n = 71) had unplanned readmissions within 30 days of hospital discharge. Of these, 21.1% (n = 15) were HPS related, with catheter-related bloodstream infection (n = 5) and dehydration (n = 5) the most common. The majority of patients (84.4%) were diagnosed with malnutrition, but the presence or degree did not influence the readmission rate ( P = .41). According to univariable analysis, patients with an ostomy ( P = .037), a small bowel resection ( P = .002), a higher HPS volume at discharge ( P &lt; .001), and a shorter period between HPS consult and hospital discharge ( P &lt; .026) had a lower risk of 30-day readmission than their counterparts. On multivariable analysis, patients had a higher risk of 30-day readmission if they had a history of heart disease ( P = .048) and for every 1-unit increase in white blood cells ( P = .026). Patients discharged with HPS have a high 30-day readmission rate, although most readmissions were not related to the HPS itself. The presence and degree of malnutrition were not associated with 30-day readmissions."	"The Academy of Nutrition and Dietetics and American Society the Parenteral and Enteral Nutrition (ASPEN) Consensus Statement recommends a standardized set of diagnostic characteristics to identify adult malnutrition. Due to lack of a consensus definition and challenges with measurements, physical function or performance has traditionally been difficult to assess. The purpose of this study was to determine whether manual muscle testing (MMT) performed by registered dietitians (RDs) can be used as a surrogate measurement of muscle strength and function in hospitalized patients. Patients admitted to the heart failure service on the cardiac stepdown units at the Cleveland Clinic Main Campus in Cleveland, Ohio, were eligible for the study, and those who met the inclusion criteria underwent handgrip strength (HGS) testing and evaluation of nutrition status using the Academy/ASPEN Characteristics Recommended for the Identification of Adult Malnutrition. MMT was then performed within 24 hours by a different study investigator blinded to the HGS and malnutrition assessment results. It was found that HGS and MMT overall were in agreement for 84% of patients and that MMT had a high sensitivity (98%) but low specificity (13%). This study shows feasibility for RDs to perform MMT on patients to determine muscle strength and functioning. Future practice application may be to incorporate MMT into screening criteria for patients being evaluated for malnutrition and reserve HGS testing only for patients with an abnormal MMT."	"Alcoholic liver disease (ALD) develops in approximately 20% of alcoholic patients, with a higher prevalence in females. ALD progression is marked by fatty liver and hepatocyte necrosis, as well as apoptosis, inflammation, regenerating nodules, fibrosis, and cirrhosis.(1) ALD develops via a complex process involving parenchymal and nonparenchymal cells, as well as recruitment of other cell types to the liver in response to damage and inflammation. Hepatocytes are damaged by ethanol, via generation of reactive oxygen species and induction of endoplasmic reticulum stress and mitochondrial dysfunction. Hepatocyte cell death via apoptosis and necrosis are markers of ethanol-induced liver injury. We review the mechanisms by which alcohol injures hepatocytes and the response of hepatic sinusoidal cells to alcohol-induced injury. We also discuss how recent insights into the pathogenesis of ALD will affect the treatment and management of patients. "
+"Dalton, Jarrod"	"Quantitative Health Sciences"	29710255	29175048	28847012	27636569	27185687	27050445	25852080	24911906	23503367	22847754	NA	NA	"Inequality in health outcomes in relation to Americans' socioeconomic position is rising. First, to evaluate the spatial relationship between neighborhood disadvantage and major atherosclerotic cardiovascular disease (ASCVD)-related events; second, to evaluate the relative extent to which neighborhood disadvantage and physiologic risk account for neighborhood-level variation in ASCVD event rates. Observational cohort analysis of geocoded longitudinal electronic health records. A single academic health center and surrounding neighborhoods in northeastern Ohio. 109 793 patients from the Cleveland Clinic Health System (CCHS) who had an outpatient lipid panel drawn between 2007 and 2010. The date of the first qualifying lipid panel served as the study baseline. Time from baseline to the first occurrence of a major ASCVD event (myocardial infarction, stroke, or cardiovascular death) within 5 years, modeled as a function of a locally derived neighborhood disadvantage index (NDI) and the predicted 5-year ASCVD event rate from the Pooled Cohort Equations Risk Model (PCERM) of the American College of Cardiology and American Heart Association. Outcome data were censored if no CCHS encounters occurred for 2 consecutive years or when state death data were no longer available (that is, from 2014 onward). The PCERM systematically underpredicted ASCVD event risk among patients from disadvantaged communities. Model discrimination was poorer among these patients (concordance index [C], 0.70 [95% CI, 0.67 to 0.74]) than those from the most affluent communities (C, 0.80 [CI, 0.78 to 0.81]). The NDI alone accounted for 32.0% of census tract-level variation in ASCVD event rates, compared with 10.0% accounted for by the PCERM. Patients from affluent communities were overrepresented. Outcomes of patients who received treatment for cardiovascular disease at Cleveland Clinic were assumed to be independent of whether the patients came from a disadvantaged or an affluent neighborhood. Neighborhood disadvantage may be a powerful regulator of ASCVD event risk. In addition to supplemental risk models and clinical screening criteria, population-based solutions are needed to ameliorate the deleterious effects of neighborhood disadvantage on health outcomes. The Clinical and Translational Science Collaborative of Cleveland and National Institutes of Health."	NA	"To determine the number of difficult airway (DA) carts required based on the number of anesthetising locations and patients risk of DA. Binomial distributions. Various hypothetical settings and patient cohorts. Binomial distributions were used to calculate the number of distinct combinations of DAs by number of anesthetising locations assuming an average risk of 10%. The 'at least' number of DAs was calculated using cumulative probabilities of having exactly two plus more than 2 DAs up to the total number of simultaneously started anesthetising locations or until the cumulative probability exceeds the 50% threshold, therefore being more likely than not. The probability of encountering concurrent DAs increases as the number of simultaneously started anesthetising locations increases. For at least 2 concurrent DAs, the probability first exceeds 50% at 17 locations. The corresponding thresholds for at least 3 and 4 concurrent DAs, are 27 and 37 locations respectively. The probability of at least 2 concurrent DAs will exceed 50% when approximately 17 anesthetising sites are started simultaneously and a 10% worst case risk is assumed. With continuing resource constraints, proper planning of human and capital resources for DAs needs to be addressed without compromising patient safety. It is recommended that every block of 15-20 sites be equipped with a DA cart, that anaesthesia groups develop and rehearse DA algorithms with available equipment, and that preoperative anaesthesia clinics be used to identify DA therefore providing logistical leverage."	"While substantial practice variation in coronary revascularization has been described and deviation from clinical practice guidelines has been associated with worse outcomes, the degree to which this is driven by flawed decision making and/or appropriate deviation associated with comorbid conditions is unknown. We evaluated heterogeneity in procedure use, and the extent to which hospital-level practice variation is related to surgical mortality. We analyzed data on 554,563 inpatients undergoing either percutaneous coronary intervention or coronary artery bypass grafting at 391 centers in 6 states. Procedure-specific risk models were developed based on demographics and comorbidities, allowing for differential effects of comorbidities for each sex. For each patient, the revascularization procedure that minimized predicted probability of inhospital mortality was designated as the model-preferred procedure.Hospital-level discordance rates-the proportion of cases in each hospital for which the opposite from the model-preferred procedure was performed-were calculated. Hierarchical linear models were used to analyze the relationship between HDRs and hospital-level risk-standardized mortality ratios (RSMRs). Comorbidities and demographics alone explained between 68% and 86% of overall variation in inhospital mortality (corresponding C-statistics of 0.84-0.93). The mean (SD) HDR was 26.3% (9.6%). There was a positive independent association between HDRs and inhospital mortality, with a 10% increase in HDR associated with an 11% increase in RSMR (P&lt;0.001). Variance in procedure use according to model preference was strongly associated with worse outcomes. A systematic approach to incorporating comorbidity as part of the decision-making process for coronary revascularization is needed."	"Randomized trials provide strong evidence regarding efficacy of interventions but are limited in their capacity to address potential heterogeneity in effectiveness within broad clinical populations. For example, a treatment that on average is superior may be distinctly worse in certain patients. We propose a technique for using large electronic health registries to develop and validate decision models that measure-for distinct combinations of covariate values-the difference in predicted outcomes among 2 alternative treatments. We demonstrate the methodology in a prototype analysis of in-hospital mortality under alternative revascularization treatments. First, we developed prediction models for a binary outcome of interest for each treatment. Decision criteria were then defined based on the treatment-specific model predictions. Patients were then classified as receiving concordant or discordant care (in relation to the model recommendation), and the association between discordance and outcomes was evaluated. We then present alternative decision criteria and validation methodologies, as well as sensitivity analyses that investigate 1) the imbalance between treatments on observed covariates and 2) the aggregate impact of unobserved covariates. Our methodology supplements population-average clinical trial results by modeling heterogeneity in outcomes according to specific covariate values. It thus allows for assessment of current practice, from which cogent hypotheses for improved care can be derived. Newly emerging large population registries will allow for accurate predictions of outcome risk under competing treatments, as complex functions of predictor variables. Whether or not the models might be used to inform decision making depends on the extent to which important predictors are available. Further work is needed to understand the strengths and limitations of this approach, particularly in relation to those based on randomized trials."	NA	"Benchmarking performance across hospitals requires proper adjustment for differences in baseline patient and procedural risk. Recently, a Risk Stratification Index was developed from Medicare data, which used all diagnosis and procedure codes associated with each stay, but did not distinguish present-on-admission (POA) diagnoses from hospital-acquired diagnoses. We sought to (1) develop and validate a risk index for in-hospital mortality using only POA diagnoses, principal procedures, and secondary procedures occurring before the date of the principal procedure (POARisk) and (2) compare hospital performance metrics obtained using the POARisk model with those obtained using a similarly derived model which ignored the timing of diagnoses and procedures (AllCodeRisk). We used the 2004-2009 California State Inpatient Database to develop, calibrate, and prospectively test our models (n = 24 million). Elastic net logistic regression was used to estimate the two risk indices. Agreement in hospital performance under the two respective risk models was assessed by comparing observed-to-expected mortality ratios; acceptable agreement was predefined as the AllCodeRisk-based observed-to-expected ratio within ± 20% of the POARisk-based observed-to-expected ratio for more than 95% of hospitals. After recalibration, goodness of fit (i.e., model calibration) within the 2009 data was excellent for both models. C-statistics were 0.958 and 0.981, respectively, for the POARisk and AllCodeRisk models. The AllCodeRisk-based observed-to-expected ratio was within ± 20% of the POARisk-based observed-to-expected ratio for 89% of hospitals, which was slightly lower than the predefined limit of agreement. Consideration of POA coding meaningfully improved hospital performance measurement. The POARisk model should be used for risk adjustment when POA data are available."	"Calibration in binary prediction models, that is, the agreement between model predictions and observed outcomes, is an important aspect of assessing the models' utility for characterizing risk in future data. A popular technique for assessing model calibration first proposed by D. R. Cox in 1958 involves fitting a logistic model incorporating an intercept and a slope coefficient for the logit of the estimated probability of the outcome; good calibration is evident if these parameters do not appreciably differ from 0 and 1, respectively. However, in practice, the form of miscalibration may sometimes be more complicated. In this article, we expand the Cox calibration model to allow for more general parameterizations and derive a relative measure of miscalibration between two competing models from this more flexible model. We present an example implementation using data from the US Agency for Healthcare Research and Quality."
+"Dana, Hod"	"Neurosciences"	30956633	30308007	28824341	27011354	25250714	24898000	23482141	22825176	21445129	30361563	"Toxoplasmosis is considered as one of the most prevalent human parasitic infections that can be transmitted from mother to the fetus. The onset of toxoplasmosis during pregnancy has clinical complications including spontaneous abortion, preterm labor, stillbirth and fetal abnormalities. The aim of this study was to investigate the prevalence of Toxoplasmosis infection in pregnant women and their infants in Lorestan province, Western Iran. Blood and sera samples were collected from 98 pregnant women and their infants. All collected samples were examined for Toxoplasma gondii infection by serological tests (ELISA IgM &amp; IgG) and PCR assay. Among the 98 samples of mother and umbilical cord prevalence of anti-Toxoplasma IgG, was 34/98 (34.69 %) and 33/98 (33.67 %), respectively. All pregnant women were negative for, anti-Toxoplasma IgM while it was found in 5/98 (5.1 %) of umbilical cords. Based on PCR analysis, Toxoplasma infection was detected in 5 (5.1 %) and 7 (7.14 %) of mother and umbilical cords, respectively. Molecular test along with evaluation of IgM (P &lt;0.001) and IgG (P = 0.001) were significantly correlated."	"Calcium imaging is commonly used to measure the neural activity of large groups of neurons in mice. Genetically encoded calcium indicators (GECIs) can be delivered for this purpose using non-invasive genetic methods. Compared to viral gene transfer, transgenic targeting of GECIs provides stable long-term expression and obviates the need for invasive viral injections. Transgenic mice expressing the green GECI GCaMP6 are already widely used. Here we present the generation and characterization of transgenic mice expressing the sensitive red GECI jRGECO1a, driven by the Thy1 promoter. Four transgenic lines with different expression patterns showed sufficiently high expression for cellular in vivo imaging. We used two-photon microscopy to characterize visual responses of individual neurons in the visual cortex in vivo. The signal-to-noise ratio in transgenic mice was comparable to, or better than, mice transduced with adeno-associated virus. In addition, we show that Thy1-jRGECO1a transgenic mice are useful for transcranial population imaging and functional mapping using widefield fluorescence microscopy. We also demonstrate imaging of visual responses in retinal ganglion cells in vitro. Thy1-jRGECO1a transgenic mice are therefore a useful addition to the toolbox for imaging activity in intact neural networks."	"One of the most important advances in biology has been the discovery that siRNA (small interfering RNA) is able to regulate the expression of genes, by a phenomenon known as RNAi (RNA interference). The discovery of RNAi, first in plants and Caenorhabditis elegans and later in mammalian cells, led to the emergence of a transformative view in biomedical research. siRNA has gained attention as a potential therapeutic reagent due to its ability to inhibit specific genes in many genetic diseases. siRNAs can be used as tools to study single gene function both in vivo and in-vitro and are an attractive new class of therapeutics, especially against undruggable targets for the treatment of cancer and other diseases. The siRNA delivery systems are categorized as non-viral and viral delivery systems. The non-viral delivery system includes polymers; Lipids; peptides etc. are the widely studied delivery systems for siRNA. Effective pharmacological use of siRNA requires 'carriers' that can deliver the siRNA to its intended site of action. The carriers assemble the siRNA into supramolecular complexes that display functional properties during the delivery process."	"Genetically encoded calcium indicators (GECIs) allow measurement of activity in large populations of neurons and in small neuronal compartments, over times of milliseconds to months. Although GFP-based GECIs are widely used for in vivo neurophysiology, GECIs with red-shifted excitation and emission spectra have advantages for in vivo imaging because of reduced scattering and absorption in tissue, and a consequent reduction in phototoxicity. However, current red GECIs are inferior to the state-of-the-art GFP-based GCaMP6 indicators for detecting and quantifying neural activity. Here we present improved red GECIs based on mRuby (jRCaMP1a, b) and mApple (jRGECO1a), with sensitivity comparable to GCaMP6. We characterized the performance of the new red GECIs in cultured neurons and in mouse, Drosophila, zebrafish and C. elegans in vivo. Red GECIs facilitate deep-tissue imaging, dual-color imaging together with GFP-based reporters, and the use of optogenetics in combination with calcium imaging."	"Genetically-encoded calcium indicators (GECIs) facilitate imaging activity of genetically defined neuronal populations in vivo. The high intracellular GECI concentrations required for in vivo imaging are usually achieved by viral gene transfer using adeno-associated viruses. Transgenic expression of GECIs promises important advantages, including homogeneous, repeatable, and stable expression without the need for invasive virus injections. Here we present the generation and characterization of transgenic mice expressing the GECIs GCaMP6s or GCaMP6f under the Thy1 promoter. We quantified GCaMP6 expression across brain regions and neurons and compared to other transgenic mice and AAV-mediated expression. We tested three mouse lines for imaging in the visual cortex in vivo and compared their performance to mice injected with AAV expressing GCaMP6. Furthermore, we show that GCaMP6 Thy1 transgenic mice are useful for long-term, high-sensitivity imaging in behaving mice. "	"Planar neural networks and interfaces serve as versatile in vitro models of central nervous system physiology, but adaptations of related methods to three dimensions (3D) have met with limited success. Here, we demonstrate for the first time volumetric functional imaging in a bioengineered neural tissue growing in a transparent hydrogel with cortical cellular and synaptic densities, by introducing complementary new developments in nonlinear microscopy and neural tissue engineering. Our system uses a novel hybrid multiphoton microscope design combining a 3D scanning-line temporal-focusing subsystem and a conventional laser-scanning multiphoton microscope to provide functional and structural volumetric imaging capabilities: dense microscopic 3D sampling at tens of volumes per second of structures with mm-scale dimensions containing a network of over 1,000 developing cells with complex spontaneous activity patterns. These developments open new opportunities for large-scale neuronal interfacing and for applications of 3D engineered networks ranging from basic neuroscience to the screening of neuroactive substances. "	"Line illumination geometries have advantageous properties for temporal focusing nonlinear microscopy. The characteristics of line temporal focusing (LITEF) in transparent and scattering media are studied here both experimentally and using numerical model simulations. We introduce an approximate analytical formula for the dependence of axial sectioning on the laser and microscope's parameters. Furthermore, we show that LITEF is more robust to tissue scattering than wide-field temporal focusing, and can penetrate much deeper into scattering tissue while maintaining good sectioning capabilities. Based on these observations, we propose a new design for LITEF-based tissue imaging at depths that could potentially exceed the out-of-focus physical excitation limit."	"A simple technique for remote scanning of the focal plane in temporal focusing multiphoton microscopy is demonstrated both theoretically and experimentally. A new on-axis light propagation optical setup design enables this scanning, which was considered not feasible in previous studies. The focal plane is axially displaced by the movement of a remote optical device, consisting of a double prism grating, and optionally a cylindrical lens. The displacement is linear, and its slope is inversely proportional to the square of the optical system's magnification."	"Temporal focusing is a simple approach for achieving tight, optically sectioned excitation in nonlinear microscopy and multiphoton photo-manipulation. Key applications and advantages of temporal focusing involve propagation through scattering media, but the progressive broadening of the temporal focus has not been characterized. By combining a detailed geometrical optics model with Monte-Carlo scattering simulations we introduce and validate a simulation strategy for predicting temporal focusing characteristics in scattering and non-scattering media. The broadening of the temporal focus width with increasing depth in brain tissue is studied using both simulations and experiments for several key optical geometries, and an analytical approximation is found for the dependence of this broadening on the microscope's parameters in a transparent medium. Our results indicate that a multiphoton temporal focus has radically different broadening characteristics in deep tissue than those of a spatial focus."	"Marking functionally distinct neuronal ensembles with high spatiotemporal resolution is a key challenge in systems neuroscience. We recently introduced CaMPARI, an engineered fluorescent protein whose green-to-red photoconversion depends on simultaneous light exposure and elevated calcium, which enabled marking active neuronal populations with single-cell and subsecond resolution. However, CaMPARI (CaMPARI1) has several drawbacks, including background photoconversion in low calcium, slow kinetics and reduced fluorescence after chemical fixation. In this work, we develop CaMPARI2, an improved sensor with brighter green and red fluorescence, faster calcium unbinding kinetics and decreased photoconversion in low calcium conditions. We demonstrate the improved performance of CaMPARI2 in mammalian neurons and in vivo in larval zebrafish brain and mouse visual cortex. Additionally, we herein develop an immunohistochemical detection method for specific labeling of the photoconverted red form of CaMPARI. The anti-CaMPARI-red antibody provides strong labeling that is selective for photoconverted CaMPARI in activated neurons in rodent brain tissue."
+"Davalos, Dimitrios"	"Neurosciences"	30405384	29765914	27579180	27007810	26705377	26579010	24740641	24698096	30737131	30323343	NA	"A skeletal anterior open-bite is a challenging malocclusion for the orthodontist due to the difficulty and instability of correction. Treatment options for the adult patient include extractions, anterior extrusion with intermaxillary elastics, posterior intrusion using skeletal anchorage, occlusal adjustment, and orthognathic surgery. Patient compliance plays a key role in posttreatment stability. The present case report demonstrates the orthodontic treatment of an adult patient who presented with a complex open-bite malocclusion. Treatment involved the placement of four miniscrews to assist intrusion of maxillary molars by applying posterior vertical maxillary elastics and extrusion of the anterior segments using anterior vertical interarch elastics. Ideal intercuspation was successfully achieved and good stability was maintained during 3 years following treatment. The intrusion of the maxillary molars with miniscrews is an interesting option in selected cases of skeletal anterior open bite. The retention protocol should be specific in these cases."	"Schizophrenia is a complex and often disabling disorder that is characterized by a wide range of social, emotional, and cognitive deficits. Increasing research suggests that the greatest social and cognitive therapeutic impact comes from early identification. The present study applied a well-established neurophysiological paradigm in the schizophrenia literature, mismatch negativity (MMN), to college students identified as high risk (HR) for psychosis to investigate MMN as a potential biomarker for the onset of psychosis. The hypothesis was that HR would exhibit attenuated MMN amplitudes compared to controls, as has been established in individuals with chronic schizophrenia. Participants (N = 121) were separated into Group 1 (controls) (n 1 = 72) and Group 2 (HR) (n 2 = 49) based on the established cutoff score of the 16-item Prodromal Questionnaire. Participants then completed a time based MMN paradigm during which brain activity was recorded with EEG. For all electrode locations, controls demonstrated significantly more negative amplitudes than HR (Cz: F(1,119) = 8.09, p = .005; Fz: F(1, 119) = 5.74, p = .018; Pz: F(1,119) = 5.88, p = .017). Results suggested that MMN may assist in identifying those who appear high-functioning but may be at risk for later development of psychosis or cognitive and psychological difficulties associated with psychosis. "	"Executive dysfunction in college students who have had an acute traumatic brain injury (TBI) was investigated. The cognitive, behavioral, and metacognitive effects on college students who endorsed experiencing a brain injury were specifically explored. Participants were 121 college students who endorsed a mild TBI, and 121 college students with no history of a TBI were matched on sex and ethnicity to examine potential differences between groups. Participants completed the Dysexecutive Questionnaire (DEX). A Rasch analysis indicated that the TBI group had significantly higher total scores on the DEX than the control group. Moreover, when compared with the control group, the students with a TBI had higher scores on all 3 subcomponents of the DEX. These findings suggest that students who endorse brain injuries may experience more difficulty with specific facets of college. Thus, the importance of academic and personal resources available for students with a TBI is discussed."	"Clinicians often have difficulty distinguishing between various forms of dementia to achieve a correct diagnosis. Little research has been done to examine whether awareness of one's cognitive deficits, or metacognitive monitoring, might differ between dementia diagnoses, thereby providing an additional means of differentiating between dementia subtypes. We review articles examining metacognitive comparisons between two of the most common dementia subtypes: Alzheimer's disease and frontotemporal dementia. Greater monitoring deficits were apparent in frontotemporal dementia than in Alzheimer's disease, and participants with frontotemporal dementia were less likely to utilize task experience to update and improve the accuracy of subsequent monitoring judgments. Results provide evidence for the utility of metacognitive measures as a means of distinguishing between Alzheimer's disease and frontotemporal dementia."	"Time perception has been described as a fundamental skill needed to engage in a number of higher level cognitive processes essential to successfully navigate everyday life (e.g., planning, sequencing, etc.) Temporal processing is often thought of as a basic neural process that impacts a variety of other cognitive processes. Others, however, have argued that timing in the brain can be affected by a number of variables such as attention and motivation. In an effort to better understand timing in the brain at a basic level with minimal attentional demands, researchers have often employed use of the mismatch negativity (MMN). MMN, specifically duration MMN (dMMN) and interval MMN (iMMN) have been popular methods for studying temporal processing in populations for which attention or motivation may be an issue (e.g., clinical populations, early developmental studies). There are, however, select studies which suggest that attention may in fact modify both temporal processing in general and the MMN event-related potential. It is unclear the degree to which attention affects MMN or whether the effects differ depending on the complexity or difficulty of the MMN paradigm. The iMMN indexes temporal processing and is elicited by introducing a deviant interval duration amid a series of standards. A greater degree of difference in the deviant from the standard elicits a heightened iMMN. Unlike past studies, in which attention was intentionally directed toward a closed-captioned move, the current study had participants partake in tasks involving varying degrees of attention (passive, low, and high) with varying degrees of deviants (small, medium, and large) to better understand the role of attention on the iMMN and to assess whether level of attention paired with changes in task difficulty differentially influence the iMMN electrophysiological responses. Data from 19 subjects were recorded in an iMMN paradigm. The amplitude of the iMMN waveform showed an increase with attention, particularly for intervals that were the most distinct from a standard interval (p &lt; 0.02). Results suggest that the role of attention on the iMMN is complex. Both the degree of attention paid as well as the level of difficulty of the MMN task likely influence the neuronal response within a timing network. These results suggest that electrophysiological perception of time is modified by attention and that the design of the iMMN study is critical to minimize the possible confounding effects of attention. In addition, the implications of these results for future studies assessing interval duration-based MMN in clinical populations is also addressed. "	"Although multiple sclerosis (MS) has been associated with the coagulation system, the temporal and spatial regulation of coagulation activity in neuroinflammatory lesions is unknown. Using a novel molecular probe, we characterized the activity pattern of thrombin, the central protease of the coagulation cascade, in experimental autoimmune encephalomyelitis. Thrombin activity preceded onset of neurological signs, increased at disease peak, and correlated with fibrin deposition, microglial activation, demyelination, axonal damage, and clinical severity. Mice with a genetic deficit in prothrombin confirmed the specificity of the thrombin probe. Thrombin activity might be exploited for developing sensitive probes for preclinical detection and monitoring of neuroinflammation and MS progression."	"The wide range of psychological and cognitive symptoms associated with schizophrenia can often affect the level of independence that individuals with schizophrenia can achieve in their lives. Prospective memory (PM), or memory associated with future intentions, has been proposed as a useful indicator of select independent living skills. Currently, there is limited research with regards to prospective memory in schizophrenia. The current review systematically summarizes the literature focusing on prospective memory in schizophrenia and concludes that individuals with schizophrenia exhibited both an impairment in PM when compared to healthy controls and a general lack of awareness regarding these deficits. The existing research also suggests that PM deficits are not related to chronicity of illness or medications associated with schizophrenia. Limited findings suggest that PM deficits in individuals with schizophrenia may be associated with the ability to live independently and instrumental activities of daily living. "	"Cerebrovascular alterations are a key feature of Alzheimer's disease (AD) pathogenesis. However, whether vascular damage contributes to synaptic dysfunction and how it synergizes with amyloid pathology to cause neuroinflammation and cognitive decline remain poorly understood. Here, we show that the blood protein fibrinogen induces spine elimination and promotes cognitive deficits mediated by CD11b-CD18 microglia activation. 3D molecular labeling in cleared mouse and human AD brains combined with repetitive in vivo two-photon imaging showed focal fibrinogen deposits associated with loss of dendritic spines independent of amyloid plaques. Fibrinogen-induced spine elimination was prevented by inhibiting reactive oxygen species (ROS) generation or genetic ablation of CD11b. Genetic elimination of the fibrinogen binding motif to CD11b reduced neuroinflammation, synaptic deficits, and cognitive decline in the 5XFAD mouse model of AD. Thus, fibrinogen-induced spine elimination and cognitive decline via CD11b link cerebrovascular damage with immune-mediated neurodegeneration and may have important implications in AD and related conditions."	"Activation of innate immunity and deposition of blood-derived fibrin in the central nervous system (CNS) occur in autoimmune and neurodegenerative diseases, including multiple sclerosis (MS) and Alzheimer's disease (AD). However, the mechanisms that link disruption of the blood-brain barrier (BBB) to neurodegeneration are poorly understood, and exploration of fibrin as a therapeutic target has been limited by its beneficial clotting functions. Here we report the generation of monoclonal antibody 5B8, targeted against the cryptic fibrin epitope γ377-395, to selectively inhibit fibrin-induced inflammation and oxidative stress without interfering with clotting. 5B8 suppressed fibrin-induced nicotinamide adenine dinucleotide phosphate (NADPH) oxidase activation and the expression of proinflammatory genes. In animal models of MS and AD, 5B8 entered the CNS and bound to parenchymal fibrin, and its therapeutic administration reduced the activation of innate immunity and neurodegeneration. Thus, fibrin-targeting immunotherapy inhibited autoimmunity- and amyloid-driven neurotoxicity and might have clinical benefit without globally suppressing innate immunity or interfering with coagulation in diverse neurological diseases."
+"De la Motte, Carol"	"Inflammation and Immunity"	31262781	29574062	29290146	28978412	28562487	27981209	27845198	27679489	27398974	26583132	"Platelets are specialized cells essential for hemostasis that also function as crucial effectors capable of mediating inflammatory and immune responses. These sentinels continually survey their environment and discriminate between homeostatic and danger signals such as modified components of the extracellular matrix. The glycosaminoglycan hyaluronan (HA) is a major extracellular matrix component that coats the vascular lumen and, under normal conditions, restricts access of inflammatory cells. In response to tissue damage, the endothelial HA matrix enhances leukocyte recruitment and regulates the early stages of the inflammatory response. We have shown that platelets can degrade HA from the surface of activated endothelial cells via the enzyme hyaluronidase-2 (HYAL2) and that HYAL2 is deficient in platelets isolated from patients with inflammatory bowel disease (IBD). Platelets are known to be involved in the pathogenesis of several chronic disease states, including IBD, but they have been largely overlooked in the context of intestinal inflammation. We therefore wanted to define the mechanism by which platelet HYAL2 regulates the inflammatory response during colitis. In this study, we provide evidence that HA catabolism is disrupted in human intestinal microvascular endothelial cells isolated from patients with IBD. Furthermore, mice deficient in HYAL2 are more susceptible to an acute model of colitis, and this increased susceptibility is abrogated by transfusion of HYAL2-competent platelets. Finally, we show that platelets, via HYAL2-dependent degradation of endothelial HA, regulate the early stages of inflammation in colitis by limiting leukocyte extravasation."	"Hyaluronan, a major extracellular matrix component, is an active participant in many disease states, including inflammatory bowel disease (IBD). The synthesis of this dynamic polymer is increased at sites of inflammation. Hyaluronan together with the enzymes responsible for its synthesis, degradation, and its binding proteins, directly modulates the promotion and resolution of disease by controlling recruitment of immune cells, by release of inflammatory cytokines, and by balancing hemostasis. This review discusses the functional significance of hyaluronan in the cells and tissues involved in inflammatory bowel disease pathobiology."	"Intestinal epithelium plays a critical role in host defense against orally acquired pathogens. Dysregulation of this protective barrier is a primary driver of inflammatory bowel diseases (Crohn's and ulcerative colitis) and also infant gastrointestinal infections. Previously, our lab reported that hyaluronan (HA) isolated from human milk induces the expression of the antimicrobial peptide β-defensin in vivo and protects against Salmonella Typhimurium infection of epithelial cells in vitro. In addition, we demonstrated that commercially available 35 kDa size HA induces the expression of β-defensin, upregulates the expression of tight junction protein zonula occludens-1 (ZO-1), and attenuates murine Citrobacter rodentium infection in vivo. In this current study, we report that HA35 remains largely intact and biologically active during transit through the digestive tract where it directly induces β-defensin expression upon epithelial cell contact. We also demonstrate HA35 abrogation of murine Salmonella Typhimurium infection as well as downregulation of leaky tight junction protein claudin-2 expression. Taken together, we propose a dual role for HA in host innate immune defense at the epithelial cell surface, acting to induce antimicrobial peptide production and also block pathogen-induced leaky gut. HA35 is therefore a promising therapeutic in the defense against bacterially induced colitis in compromised adults and vulnerable newborns."	"Tight junction proteins are critical in maintaining homeostatic intestinal permeability. Multiple intestinal inflammatory diseases are correlated with reduced expression of tight junction proteins. We have recently reported that oral treatment of mice with Hyaluronan 35kDa (HA35) increases colonic expression of tight junction protein zonula occludens-1 (ZO-1). Here, we investigate whether HA35 treatment enhances ZO-1 expression by direct interaction with intestinal epithelium in vitro and have identified the HA receptor responsible for HA35-mediated ZO-1 induction in colonic epithelium in vitro and in vivo. Our results reveal that HA35 treatment increases ZO-1 expression in mouse intestinal epithelial organoids, while large HA 2000kDa is not internalized into the cells. Our immunofluorescence data indicate that layilin, but neither toll-like receptor-4 (TLR-4) nor CD44, mediate the HA35-induced ZO-1 expression in colonic epithelium in vitro and in vivo. Additionally, using layilin null mice we have determined that layilin mediates HA35 induction of ZO-1 in healthy mice and during dextran sulfate sodium (DSS)-induced colitis. Furthermore, we find that while ZO-1 expression levels are reduced, layilin expression levels are equivalent in inflammatory bowel disease (IBD) patients and non-IBD controls. Together, our data suggest that layilin is an important HA receptor, that mediates the effect of oral HA35 treatment on intestinal epithelium. HA35 holds promise as a simple dietary supplement to strengthen gut barrier defense."	"The extracellular matrix (ECM) is a frequently overlooked component of the pathogenesis of inflammatory bowel disease (IBD). However, the functional and clinically significant interactions between immune as well as nonimmune cells with the ECM have important implications for disease pathogenesis. In this review, we discuss how the ECM participates in process associated with IBD that involves diverse cell types of the intestine. Remodeling of the ECM is a consistent feature of IBD, and studies have implicated key ECM molecules in IBD pathogenesis. While the majority of prior studies have focused on ECM degradation by proteases, more recent studies have uncovered additional degrading enzymes, identified fragments of ECM components as potential biomarkers, and revealed that ECM synthesis is increased in IBD. These new studies support the notion that the ECM, rather than acting as a passive element, is an active participant in promoting inflammation. New studies have offered exciting clues about the function of the ECM during IBD pathogenesis. The balance of ECM synthesis and turnover is altered in IBD, and the molecules involved exhibit discreet biological functions that regulate inflammation on the basis of specific cell type and matrix molecule."	"Crohn's Disease (CD) is a chronic inflammatory disease of the gastrointestinal tract. Fibrosis, a serious complication of CD, occurs when activated intestinal fibroblasts deposit excessive amounts of extracellular matrix (ECM) in affected areas. A major component of the ECM is high-molecular-weight hyaluronan (HA) that, when depolymerized to low-molecular-weight fragments, becomes proinflammatory and profibrotic. Mechanisms for HA degradation are incompletely understood, but the novel protein KIAA1199 recently was discovered to degrade HA. We hypothesized that KIAA1199 protein is increased in CD colon fibroblasts and generates HA fragments that foster inflammation and fibrosis. Fibroblasts were isolated from explants of surgically resected colon tissue from CD and non-inflammatory bowel disease control (ND) patients. Protein levels and tissue distribution of KIAA1199 were assessed by immunoblot and immunostaining, and functional HA degradation was measured biochemically. Increased levels of KIAA1199 protein were produced and deposited in the ECM by cultured CD fibroblasts compared with controls. Treatment of fibroblasts with the proinflammatory cytokine interleukin (IL) 6 increased deposition of KIAA1199 in the ECM. CD fibroblasts also produce significantly higher levels of IL6 compared with controls, and antibody blockade of IL6 receptors in CD colon fibroblasts decreased the level of KIAA1199 protein in the ECM. Colon fibroblasts degrade HA, however, small interfering RNA silencing of KIAA1199 abrogated that ability. CD fibroblasts produce increased levels of KIAA1199 primarily through an IL6-driven autocrine mechanism. This leads to excessive degradation of HA and the generation of proinflammatory HA fragments, which contributes to maintenance of gut inflammation and fibrosis."	"Maintaining a healthy intestinal barrier, the primary physical barrier between intestinal microbiota and the underlying lamina propria, is critical for optimal health. Epithelial integrity is essential for the prevention of the entrance of luminal contents, such as bacteria and their products, through the large intestinal barrier. In this study, we investigated the protective functions of biosynthetic, specific sized, hyaluronan around 35kDa (HA35) on intestinal epithelium in healthy mice, as well as mice infected Citrobacter rodentium, an established model that mimics infection with a serious human pathogen, enteropathogenic E. coli (EPEC). Our results reveal that treatment with HA35 protects mice from Citrobacter infection and enhances the epithelial barrier function. In particular, we have found that HA35 induces the expression of tight junction protein zonula occludens (ZO)-1 in both healthy and Citrobacter infected mice, as demonstrated by immunoflurorescence and Western blot analyses. Furthermore, we determined that HA35 treatment enhances ZO-1 expression and reduces intestinal permeability at the early stages of dextran sulfate sodium (DSS)-induced colitis in mice. Together, our data demonstrate that the expression and functionality of tight junctions, are increased by HA35 treatment, suggesting a novel mechanism for the protection from Citrobacter infection."	"Dynamic alterations of the extracellular matrix in response to injury directly modulate inflammation and consequently the promotion and resolution of disease. During inflammation, hyaluronan (HA) is increased at sites of inflammation where it may be covalently modified with the heavy chains (HC) of inter-α-trypsin inhibitor. Deposition of this unique, pathological form of HA (HC-HA) leads to the formation of cable-like structures that promote adhesion of leukocytes. Naive mononuclear leukocytes bind specifically to inflammation-associated HA matrices but do not adhere to HA constitutively expressed under homeostatic conditions. In this study, we have directly investigated a role for the blood-coagulation protease thrombin in regulating the adhesion of monocytic cells to smooth muscle cells producing an inflammatory matrix. Our data demonstrate that the proteolytic activity of thrombin negatively regulates the adhesion of monocytes to an inflammatory HC-HA complex. This effect is independent of protease-activated receptor activation but requires proteolytic activity toward a novel substrate. Components of HC-HA complexes were predicted to contain conserved thrombin-susceptible cleavage sites based on sequence analysis, and heavy chain 1 (HC1) was confirmed to be a substrate of thrombin. Thrombin treatment is sufficient to cleave HC1 associated with either cell-surface HA or serum inter-α-trypsin inhibitor. Furthermore, thrombin treatment of the inflammatory matrix leads to dissolution of HC-HA cable structures and abolishes leukocyte adhesion. These data establish a novel mechanism whereby thrombin cleavage of HC1 regulates the adhesive properties of an inflammatory HA matrix."	"Hyaluronan is the predominant glycosaminoglycan component of the extracellular matrix with an emerging role in hematopoiesis. Modulation of hyaluronan polymer size is responsible for its control over cellular functions, and the balance of hyaluronan synthesis and degradation determines its molecular size. Although two active somatic hyaluronidases are expressed in mammals, only deficiency in hyaluronidase-2 (Hyal-2) results in thrombocytopenia of unknown mechanism. Our results reveal that Hyal-2 knockout mice accumulate hyaluronan within their bone marrow and within megakaryocytes, the cells responsible for platelet generation. Proplatelet formation by Hyal-2 knockout megakaryocytes was disrupted because of abnormal formation of the demarcation membrane system, which was dilated and poorly developed. Importantly, peptide-mediated delivery of exogenous hyaluronidase rescued deficient proplatelet formation in murine and human megakaryocytes lacking Hyal-2. Together, our data uncover a previously unsuspected mechanism of how hyaluronan and Hyal-2 control platelet generation."	"Fibrosis is a debilitating condition that can lead to impairment of the affected organ's function. Excessive deposition of extracellular matrix (ECM) molecules is characteristic of most fibrotic tissues. Fibroblasts activated by cytokines or growth factors differentiate into myofibroblasts that drive fibrosis by depositing ECM molecules, such as collagen, fibronectin, and connective tissue growth factor. Transforming growth factor-β (TGF-β) is one of the major profibrotic cytokines which promotes fibrosis by signaling abnormal ECM regulation. Hyaluronan (HA) is a major ECM glycosaminoglycan that is regulated by TGF-β and whose role in fibrosis is emerging. Aside from its role as a hydrating, space filling polymer, HA regulates different cellular functions and is known to have a role in wound healing and inflammation. Importantly, HA deposition is increased in multiple fibrotic diseases. In this review we highlight studies that link HA to fibrosis and discuss what is known about the role of HA, its receptors, and its anabolic and catabolic enzymes in different fibrotic diseases. "
+"Derwin, Kathleen"	"Biomedical Engineering"	31056396	30860665	30318274	30106830	29398399	28602151	28457317	28426701	26808837	25460414	"This study tested validity and efficiency of Orthopaedic Minimal Data Set (OrthoMiDaS) Episode of Care (OME). We analyzed 100 isolated rotator cuff repair cases in the OME database. Surgeons completed a traditional operative note and OME report. A blinded reviewer extracted data from operative notes and implant logs in electronic medical records by manual chart review. OME and electronic medical record data were compared with data counts and agreement between 40 variables of rotator cuff disease and repair procedures. Data counts were assessed using raw percentages and McNemar test (with continuity correction). Agreement of categorical variables was analyzed using Cohen κ (unweighted) and of numerical variables using the concordance correlation coefficient (CCC). Efficiency was assessed by median time to complete. OME database had significantly higher data counts for 25% (10/40) of variables. A high level of proportional and statistical agreement was demonstrated between the data. Among 35 categorical variables, proportional agreement was perfect for 17%, almost perfect (0.81 ≤ κ ≤ 1.00) for 37%, substantial (0.61 ≤ κ ≤ 0.80) for 20%, moderate (0.41 ≤ κ ≤ 0.60) for 14%, fair (0.21 ≤ κ ≤ 0.40) for 6%, and slight (0.0 ≤ κ ≤ 0.20) for 6%. Of 5 numerical variables, agreement was almost perfect (CCC &gt; 0.99) for 20% and poor (CCC &lt; 0.90) for 80%. Median OME completion time was 161.5 seconds (interquartile range, 116-224.5). OME is an efficient, valid tool for collecting comprehensive, standardized data on rotator cuff repair."	"Biologic grafts used in hernia repair undergo rapid cellular infiltration and remodeling, but their premature degradation often results in hernia recurrence. We hypothesize that a temporary barrier that prevents infiltration of acute inflammatory cells into the graft during the initial 4 weeks of implantation could mitigate graft degradation. The purpose of this study is to design tyramine-substituted hyaluronan (THA) hydrogel coatings with tunable degradation properties, as a means to develop a resorbable barrier for human acellular dermis grafts (HADM). THA plugs prepared at different cross-linking densities, by varying cross-linking agent concentration (0.0001-0.0075% H2 O2 ), demonstrated varying rates of in vitro degradation (25 U/mL hyaluronidase, 48 h). Based on these results, HADM grafts were coated with THA at three cross-linking densities (0.0001%, 0.00075%, and 0.003% H2 O2 ) and THA coating degradation was evaluated in vitro (25 U/mL hyaluronidase, 48 h) and in vivo (rat intraperitoneal implantation, 1-4 weeks). THA coatings degraded in vitro and in vivo with the lowest cross-linking density (0.0001% H2 O2 ), generally showing greater degradation as evidenced by significant decrease in coating cross-sectional area. However, all three coatings remained partially degraded after 4 weeks of in vivo implantation. Alternate strategies to accelerate in vivo degradation of THA coatings are required to allow investigation of the study hypothesis. © 2019 Wiley Periodicals, Inc. J Biomed Mater Res Part B: Appl Biomater 107B:2664-2672, 2019."	"The factors that associate with surgical decisions about repair technique and the number of suture anchors used in rotator cuff repair have not been previously investigated. This study investigated the extent to which patient, surgeon, and surgical factors associate with performing single-row vs. double-row repair technique and ultimately with the number of suture anchors used. Our institution's prospective surgical cohort was queried for patients undergoing suture anchor repair of superior-posterior rotator cuff tendon tears between February 2015 and August 2017. Exclusion criteria were patients with isolated subscapularis tears, tears that were not repaired, repairs without suture anchors, repairs involving graft augmentation, and repairs by surgeons with fewer than 10 cases. Multivariable statistical modeling was used to investigate associations between patient and surgical factors and the choice of repair technique and number of suture anchors used. A total of 925 cases performed by 13 surgeons met inclusion criteria. Tear type (full thickness), tear size (medium, large, and massive), a greater number of torn tendons, repair type (arthroscopic), and surgeon were significantly associated with performing a double-row over a single-row repair. Tear size, a greater number of torn tendons, double-row repair technique, and surgeon were significantly associated with a greater number of anchors used for repair. Our findings suggest that in the absence of data to conclusively support a clinical benefit of one repair technique over another, surgeons' training, experience, and inherent practice patterns become the primary factors that define their surgical methods."	"On May 22, 2017, the National Institutes of Health (NIH)/National Institute of Arthritis and Musculoskeletal and Skin Diseases (NIAMS) hosted a roundtable on &quot;Innovative Treatments for Enthesis Repair.&quot; A summary of the roundtable discussion, as well as a list of the extramural participants, can be found at https://www.niams.nih.gov/about/meetings-events/roundtables/roundtable-innovative-treatments-enthesis-repair. This paper reviews the challenges and opportunities for developing effective treatment strategies for enthesis repair that were identified at the roundtable discussion."	"A reinforced biologic strip graft was designed to mechanically augment the repair of rotator cuff tears that are fully reparable by arthroscopic techniques yet have a likelihood of failure. This study assessed the extent to which augmentation of human supraspinatus repairs with a reinforced fascia strip can reduce gap formation during in vitro cyclic loading. The supraspinatus tendon was sharply released from the proximal humerus and repaired back to its insertion with anchors in 9 matched pairs of human cadaveric shoulders. One repair from each pair was also augmented with a reinforced fascia strip. All repairs were subjected to cyclic mechanical loading of 5 to 180 N for 1000 cycles. All augmented and nonaugmented repair constructs completed 1000 cycles of loading. Augmentation with a reinforced fascia strip graft significantly decreased the amount of gap formation compared with nonaugmented repairs. The average gap formation of augmented repairs was 1.5 ± 0.7 mm after the first cycle vs. 3.0 ± 1.2 mm for nonaugmented repairs (P = .003) and 5.0 ± 1.5 mm after 1000 cycles of loading, which averaged 24% ± 21% less than the gap formation of nonaugmented repairs (7.0 ± 2.8 mm, P = .014). Cadaveric human supraspinatus repairs augmented with a reinforced fascia strip have significantly less initial stroke elongation and gap formation than repairs without augmentation. Augmentation limited gap formation to the greatest extent early in the testing protocol. Human studies are necessary to confirm the appropriate indications and effectiveness of augmentation scaffolds for rotator cuff repair healing in the clinical setting."	"Preclinical evaluation of hernia meshes is commonly performed in porcine models. We recently developed two surgically induced porcine hernia models-an incisional and an excisional model-that formed persistent hernias in the absence of graft repair. Herein, we investigate if these models will continue to form a hernia after graft repair. Ten pigs were used to create two hernia models-a 10-cm partial-thickness incisional defect (n = 5) and an 8 × 8-cm full-thickness excisional defect (n = 5). The defects were repaired using a 12 × 12-cm human acellular dermis graft placed in a preperitoneal/retrorectus sublay position and fixed using transfascial sutures. Postoperative management included the use of suction drainage for 1 week and an abdominal binder for 4 weeks in the more severe excisional model. Hernia development was assessed clinically, and hernia defect size and volume were measured using postoperative computed tomography (CT) imaging over 12 weeks. Radiographic inflation testing (2 L inflation), biaxial mechanical testing, and histological evaluation were also performed at 12 weeks. All pigs with the excisional model, but none with the incisional model, developed a clinically relevant hernia. At the end of 12 weeks, the excisional model had a significantly greater hernia defect size (259 ± 51 cm<sup>2</sup> vs. 47 ± 16 cm<sup>2</sup>) and repair volume (865 ± 414 cm<sup>3</sup> vs. 85 ± 52 cm<sup>3</sup>) compared with the incisional model. The excisional model also showed an order of magnitude greater increase in repair volume (280 cm<sup>3</sup> vs. 47 cm<sup>3</sup>) compared with the incisional model upon 2 L inflation. Furthermore, the excisional model showed a trend of having higher dilatational strain at average biaxial load of 250 N and lower stiffness compared with the incisional model. The excisional model had a thin, hypercellular hernia sac spanning the defect, whereas the incisional model had a thick densely fibrotic scar bridging the defect. The 8 × 8-cm excisional defect model, together with appropriate postoperative wound management, in the pig model is recommended for preclinical investigation of different grafts for hernia repair. Novel CT imaging and biomechanical testing methods are recommended to measure functional outcomes of hernia repair in preclinical models."	"The pig is commonly used as a preclinical model for ventral hernia repair. However, no study has verified that an unrepaired surgically induced hernia (control) in the pig does not heal spontaneously but rather develops a persistent hernia. Without such verification in any given model, one cannot draw conclusions on the efficacy of the repair technique investigated. Three surgically induced hernia models with increasing severity were created in eight pigs. These included 10-cm retrorectus partial-thickness (model 1) and 15-cm preperitoneal full-thickness (model 2) incisional defects and an 8 × 8 cm preperitoneal full-thickness excisional defect (model 3). Postoperative management included use of an abdominal binder, and in some cases, suction drainage, for 2 wk to support the repair and prevent seroma. Models were evaluated for persistence of hernia at 5 wk using clinical and radiographic assessments. All pigs developed clinical hernias after 2 wk of defect creation, but only models 1 and 3 had clinically persistent hernias at 5 wk. At 5 wk, the average defect area was 97 cm<sup>2</sup> in model 1, 66 cm<sup>2</sup> in model 2, and 245 cm<sup>2</sup> in model 3. Dense fibrotic scarring was observed in the models with resolved hernias. Our results highlight the need to verify an unrepaired hernia injury model does not heal spontaneously prior to using it for hernia repair studies. The partial-thickness incisional model 1 and full-thickness excisional model 3 formed persistent hernias in pigs at 5 wk and should be further explored as models for investigating hernia repair strategies."	"Wounds causing extensive injury loss of muscle, also known as volumetric muscle loss (VML), are frequently associated with high-energy civilian trauma and combat-related extremity injuries. Currently, no effective clinical therapy is available for promoting de novo muscle tissue regeneration to restore muscle function following VML. Recent studies have shown evidence that osteoactivin (OA), a transmembrane glycoprotein, has the ability to prevent skeletal muscle atrophy in response to denervation. Therefore the objective of this study is to investigate the potential regenerative effect of OA embedded and delivered via a cross-linked gelatin hydrogel within a volumetric tibialis anterior muscle defect in a rat model. After 4 weeks, however, no evidence for muscle formation was found in defects treated with either low (5 μg/ml) or high (50 μg/ml) OA. It is possible that a different delivery scaffold, delivery kinetics, or OA concentration may have yielded an alternate outcome, or it is also possible that the spaciostructural environment of VML, or the local (versus systemic) delivery of OA, simply does not support any potential regenerative activity of OA in VML. Together with prior work, this study demonstrates that an efficacious and scalable therapy for regenerating muscle volume and function in VML remains a veritable clinical challenge worthy of continued future research efforts."	"The natural history of rotator cuff tears can be unfavorable as patients develop fatty infiltration and muscle atrophy that is often associated with a loss of muscle strength and shoulder function. To facilitate study of possible biologic mechanisms involved in early degenerative changes to rotator cuff muscle and tendon tissues, the objective of this study was to develop a joint capsule injury model in the canine shoulder using arthroscopy. Arthroscopic surgical methods for performing a posterior joint capsulectomy in the canine shoulder were first defined in cadavers. Subsequently, one canine subject underwent bilateral shoulder joint capsulectomy using arthroscopy, arthroscopic surveillance at 2, 4 and 8 weeks, and gross and histologic examination of the joint at 10 weeks. The canine subject was weight-bearing within eight hours after index and follow-up surgeries and had no significant soft tissue swelling of the shoulder girdle or gross lameness. Chronic synovitis and macroscopic and microscopic evidence of pathologic changes to the rotator cuff bony insertions, tendons, myotendinous junctions and muscles were observed. This study demonstrates feasibility and proof-of-concept for a joint capsule injury model in the canine shoulder. Future work is needed to define the observed pathologic changes and their role in the progression of rotator cuff disease. Ultimately, better understanding of the biologic mechanisms of early progression of rotator cuff disease may lead to clinical interventions to halt or slow this process and avoid the more advanced and often irreversible conditions of large tendon tears with muscle fatty atrophy."	"To understand the mechanical behavior of grafts in the context of hernia repair, there is a need to develop and adopt methods for mechanical testing of grafts in a clinically-relevant manner with clinically-relevant outcomes. Ball-burst and planar-biaxial methods were used to test three commercially-available hernia grafts (DermaMatrix, Biodesign, VitaMesh Blue). Both load-to-failure and cyclic fatigue tests were performed (n=6-11/group/test). Grafts were tested as sutured constructs in patch geometry. Dilatational strain analysis was performed considering the construct (both test methods) or the graft (planar-biaxial only) as the area of interest. DermaMatrix, Biodesign, and VitaMesh grafts showed differences in mechanical properties at the point of construct failure (load, in-plane load-per-suture and membrane tension) in ball-burst tests and differences in sub-failure properties (stiffness, dilatational strain at 16N/cm and cyclic mechanical properties) in planar-biaxial tests. In both load-to-failure and cyclic fatigue tests, each graft construct tended to be stiffer in planar-biaxial than ball-burst testing. In biaxial testing, the strain analysis method influenced the mechanical properties with the construct being more compliant than the graft. This study demonstrates that graft-fixation method, test mode and analysis method are important considerations for mechanical characterization of hernia grafts. Ball-burst tests can only estimate construct or material properties, whereas planar-biaxial tests capture anisotropy and can estimate construct, graft and material properties of the same test specimen. When the clinical performance of a graft in the context of hernia repair is of interest, testing a sutured construct and performing construct strain analysis arguably provides the most clinically-relevant assessment method."
+"DeSilva, Tara"	"Neurosciences"	27685467	27600185	27397070	26071560	23068783	22522966	22327369	21968714	19535601	18314905	"A major hallmark of the autoimmune demyelinating disease multiple sclerosis (MS) is immune cell infiltration into the brain and spinal cord resulting in myelin destruction, which not only slows conduction of nerve impulses, but causes axonal injury resulting in motor and cognitive decline. Current treatments for MS focus on attenuating immune cell infiltration into the central nervous system (CNS). These treatments decrease the number of relapses, improving quality of life, but do not completely eliminate relapses so long-term disability is not improved. Therefore, therapeutic agents that protect the CNS are warranted. In both animal models as well as human patients with MS, T cell entry into the CNS is generally considered the initiating inflammatory event. In order to assess if a drug protects the CNS, any potential effects on immune cell infiltration or proliferation in the periphery must be ruled out. This protocol describes how to determine whether CNS protection observed after drug intervention is a consequence of attenuating CNS-infiltrating immune cells or blocking death of CNS cells during inflammatory insults. The ability to examine MS treatments that are protective to the CNS during inflammatory insults is highly critical for the advancement of therapeutic strategies since current treatments reduce, but do not completely eliminate, relapses (i.e., immune cell infiltration), leaving the CNS vulnerable to degeneration."	"The incidence of cognitive impairment in cardiovascular disease (CVD) patients has increased, adversely impacting quality of life and imposing a significant economic burden. Brain imaging of CVD patients has detected changes in the hippocampus, a brain region critical for normal learning and memory. However, it is not clear whether adverse cardiac events or other associated co-morbidities impair cognition. Here, using a murine model of acute myocardial ischemia/reperfusion (I/R), where the coronary artery was occluded for 30min followed by reperfusion, we tested the hypothesis that acute myocardial infarction triggers impairment in cognitive function. Two months following cardiac I/R, behavioral assessments specific for hippocampal cognitive function were performed. Mice subjected to cardiac I/R performed worse in the fear-conditioning paradigm as well as the object location memory behavioral test compared to sham-operated mice. Reactive gliosis was apparent in the hippocampal subregions CA1, CA3, and dentate gyrus 72h post-cardiac I/R as compared with sham, which was sustained two months post-cardiac I/R. Consistent with the inflammatory response, the abundance of doublecortin positive newborn neurons was decreased in the dentate gyrus 72h and 2months post-cardiac I/R as compared with sham. Therefore, we conclude that following acute myocardial infarction, rapid inflammatory responses negatively affect neurogenesis, which may underlie long-term changes in learning and memory."	"Although multiple sclerosis is predominantly regarded as a disease of young adulthood, up to 5% of MS patients are diagnosed prior to age eighteen. The predominant form of MS is relapsing-remitting characterized by exacerbations of symptoms followed by periods of remission. The majority of disease modifying drugs target T cell proliferation or block migration into the central nervous system. Although these treatments reduce relapses, disease progression still occurs, warranting therapeutic strategies that protect the CNS. Biomarkers to indicate relapses would facilitate a personalized approach for add-on therapies that protect the CNS. A multiplex cytokine bead array was performed to detect T cell associated cytokines in sera from patients 6-20years of age with pediatric onset MS clinically diagnosed in relapse or remission compared to healthy control patients. Of the 25 cytokines evaluated, 17 were increased in patients clinically diagnosed in relapse compared to sera from control patients in contrast to only 9 cytokines in the clinically diagnosed remission group. Furthermore, a linear regression analysis of cytokine levels in the remission population showed 12 cytokines to be statistically elevated as a function of disease duration, with no effect observed in the relapse population. To further explore this concept, we used a multivariable stepwise discriminate analysis and found that the following four cytokines (IL-10, IL-21, IL-23, and IL-27) are not only a significant predictor for MS, but have important predictive value in determining a relapse. Since IL-10 and IL-27 are considered anti-inflammatory and IL-21 and IL-23 are pro-inflammatory, ratios of these cytokines were evaluated using a Duncan's multiple range test. Of the six possible combinations, increased ratios of IL-10:IL-21, IL-10:IL-23, and IL-10:IL-27 were significant suggesting levels of IL-10 to be a driving force in predicting a relapse."	"T cell infiltration into the CNS is a significant underlying pathogenesis in autoimmune inflammatory demyelinating diseases. Several lines of evidence suggest that glutamate dysregulation in the CNS is an important consequence of immune cell infiltration in neuroinflammatory demyelinating diseases; yet, the causal link between inflammation and glutamate dysregulation is not well understood. A major source of glutamate release during oxidative stress is the system Xc(-) transporter; however, this mechanism has not been tested in animal models of autoimmune inflammatory demyelination. We find that pharmacological and genetic inhibition of system Xc(-) attenuates chronic and relapsing-remitting experimental autoimmune encephalomyelitis (EAE). Remarkably, pharmacological blockade of system Xc(-) 7 d after induction of EAE attenuated T cell infiltration into the CNS, but not T cell activation in the periphery. Mice harboring a Slc7a11 (xCT) mutation that inactivated system Xc(-) were resistant to EAE, corroborating a central role for system Xc(-) in mediating immune cell infiltration. We next examined the role of the system Xc(-) transporter in the CNS after immune cell infiltration. Pharmacological inhibitors of the system Xc(-) transporter administered during the first relapse in a SJL animal model of relapsing-remitting EAE abrogated clinical disease, inflammation, and myelin loss. Primary coculture studies demonstrate that myelin-specific CD4(+) Th1 cells provoke microglia to release glutamate via the system Xc(-) transporter, causing excitotoxic death to mature myelin-producing oligodendrocytes. Taken together, these studies support a novel role for the system Xc(-) transporter in mediating T cell infiltration into the CNS as well as promoting myelin destruction after immune cell infiltration in EAE."	"The use of patient-controlled analgesia (PCA) has been reported to provide effective pain relief, often resulting in less opioid consumption, and is associated with greater patient satisfaction when it is compared to other techniques of analgesia delivery. This study was done to compare the effectiveness of pain relief and patient satisfaction between PCA and the conventional method of administering boluses of analgesia for acute pain of traumatic origin in the Emergency Department (ED). Study patients were randomized into two groups after being given a bolus of morphine. The PCA group was then given morphine via the PCA system, whereas the control group was given the conventional boluses of morphine via titration method. Pain levels were measured using the visual analogue scale at intervals of 0, 15, 30, 45, 60, 90, and 120 min. Any adverse events were also noted. Finally, within 24 h, these patients completed questionnaires regarding their experience with regard to the pain relief they experienced. The PCA group experienced faster and greater pain relief. No life-threatening events were encountered. The satisfaction questionnaire revealed that the PCA group was more satisfied using the PCA method of pain relief than those receiving standard boluses for delivery of analgesia. PCA provides more effective pain relief and more patient satisfaction when compared to the conventional method of titrated bolus intravenous injection for the relief of traumatic pain in the ED setting."	"The major regulators of synaptic glutamate in the cerebral cortex are the excitatory amino acid transporters 1-3 (EAAT1-3). In this study, we determined the cellular and temporal expression of EAAT1-3 in the developing human cerebral cortex. We applied single- and double-label immunocytochemistry to normative frontal or parietal (associative) cortex samples from 14 cases ranging in age from 23 gestational weeks to 2.5 postnatal years. The most striking finding was the transient expression of EAAT2 in layer V pyramidal neuronal cell bodies up until 8 postnatal months prior to its expression in protoplasmic astrocytes at 41 postconceptional weeks onward. EAAT2 was also expressed in neurons in layer I (presumed Cajal-Retzius cells), and white matter (interstitial) neurons. This expression in neurons in the developing human cortex contrasts with findings by others of transient expression exclusively in axon tracts in the developing sheep and rodent brain. With western blotting, we found that EAAT2 was expressed as a single band until 2 postnatal months, after which it was expressed as two bands. The expression of EAAT2 in pyramidal neurons during human brain development may contribute to cortical vulnerability to excitotoxicity during the critical period for perinatal hypoxic-ischemic encephalopathy. In addition, by studying the expression of EAAT1 and EAAT2 glutamate transporters, it was possible to document the development of protoplasmic astrocytes."	"To evaluate the controversial aspects of diabetes diagnosis. Within the past 2 years, revised guidelines for the diagnosis of diabetes have been issued which endorse the use of the hemoglobin A1C as a diagnostic test, in addition to the previously recommended tests. Updated diagnostic criteria for gestational diabetes were also published in the same period. Recent publications on the current role of oral glucose tolerance tests and diagnosis of diabetes in the acutely ill are sparse. There are new recommendations regarding the use of genetic testing and antibody testing in establishing the cause of diabetes. The inclusion of A1C as a diagnostic test has many advantages including reproducibility of the test and convenience, but there are situations where the test is unreliable and it misses many individuals who would have been diagnosed by plasma glucose testing. The diagnostic threshold of 6.5% for the A1C remains controversial. There is still no consensus on the best approach to diagnose gestational diabetes. The role of the oral glucose tolerance test seems to be diminishing. Diagnosis of diabetes in acute illness is aided by A1C testing. Genetic and autoantibody testing in specific situations offer diagnostic and therapeutic utility."	"Pain seems to be one of the most frequent complaints in the emergency department, however pain control is often suboptimal as seen by many audits. We conducted a study to find out whether the use of patient control analgesia (PCA) is effective in controlling acute pain in the emergency department This was a randomized controlled trial conducted in the emergency departments of two tertiary centres over a period of 1 year. Patients were randomized into two groups. The study and the control groups were given analgesia through the PCA system and boluses of analgesia through titration method, respectively. Pain levels were measured using the Visual Analogue Scale at 15 min intervals. Any adverse events and total morphine dose for each group were recorded. Finally, within 24 h, these patients were given questionnaires regarding their experience with regards to pain relief encountered. A total of 47 patients were enrolled. The Visual Analogue Score change over 120 min for PCA and Morphine bolus groups were 5.921 [SD±1.656] and 4.834 (SD±1.797), respectively (P&lt;0.001). However the total dosage of morphine consumed by both groups were statistically insignificant; PCA 7.95 mg (SD±2.44) versus bolus 8.10 (SD±0.99) (P=0.06). The satisfaction questionnaire also revealed that the PCA group of patients was more satisfied using this method of pain relief. PCA provides more effective pain relief and patient satisfaction when compared with the conventional method of bolus intravenous injection for the relief of traumatic pain in the emergency department setting."	"Glutamate released from synaptic vesicles mediates excitatory neurotransmission by stimulating glutamate receptors. Glutamate transporters maintain low synaptic glutamate levels critical for this process, a role primarily attributed to astrocytes. Recently, vesicular release of glutamate from unmyelinated axons in the rat corpus callosum has been shown to elicit AMPA receptor-mediated currents in glial progenitor cells. Glutamate transporters are the only mechanism of glutamate clearance, yet very little is known about the role of glutamate transporters in normal development of oligodendrocytes (OLs) or in excitotoxic injury to OLs. We found that OLs in culture are capable of sodium-dependent glutamate uptake with a K(m) of 10 +/- 2 microm and a V(max) of 2.6, 5.0, and 3.8 nmol x min(-1) x mg(-1) for preoligodendrocytes, immature, and mature OLs, respectively. Surprisingly, EAAC1, thought to be exclusively a neuronal transporter, contributes more to [(3)H]l-glutamate uptake in OLs than GLT1 or GLAST. These data suggest that glutamate transporters on oligodendrocytes may serve a critical role in maintaining glutamate homeostasis at a time when unmyelinated callosal axons are engaging in glutamatergic signaling with glial progenitors. Furthermore, GLT1 was significantly increased in cultured mature OLs contrary to in vivo data in which we have shown that, although GLT1 is present on developing OLs when unmyelinated axons are prevalent in the developing rat corpus callosum, after myelination, GLT1 is not expressed on mature OLs. The absence of GLT1 in mature OLs in the rat corpus callosum and its presence in mature rat cultured OLs may indicate that a signaling process in vivo is not activated in vitro."	"The major neuropathological correlate of cerebral palsy in premature infants is periventricular leukomalacia (PVL), a disorder of the immature cerebral white matter. Cerebral ischemia leading to excitotoxicity is thought to be important in the pathogenesis of this disorder, implying a critical role for glutamate transporters, the major determinants of extracellular glutamate concentration. Previously, we found that EAAT2 expression is limited primarily to premyelinating oligodendrocytes early in development and is rarely observed in astrocytes until &gt;40 weeks. In this study, we analyzed the expression of EAAT2 in cerebral white matter from PVL and control cases. Western blot analysis suggested an up-regulation of EAAT2 in PVL compared with control cases. Single- and double-label immunocytochemistry showed a significantly higher percentage of EAAT2-immunopositive astrocytes in PVL (51.8% +/- 5.6%) compared with control white matter (21.4% +/- 5.6%; P = 0.004). Macrophages in the necrotic foci in PVL also expressed EAAT2. Premyelinating oligodendrocytes in both PVL and control cases expressed EAAT2, without qualitative difference in expression. The previously unrecognized up-regulation of EAAT2 in reactive astrocytes and its presence in macrophages in PVL reported here may reflect a response to either hypoxic-ischemic injury or inflammation."
+"Dey, Tanujit"	"Quantitative Health Sciences"	31034314	30921170	30735197	30109948	29794620	29577998	29549082	28976724	28527232	28218596	"The aim of this project was to 1) evaluate the potential of the Two Minute Walk Test (2MWT) to detect declines in gait velocity under dual task conditions, and 2) compare gait velocity overground and on a self-paced treadmill in Parkinson's disease (PD). Twenty-three individuals with PD completed the 2MWT under single and dual task (serial 7s) conditions overground and on a self-paced treadmill. There was a significant decrease in gait velocity from single to dual task conditions overground (1.32±.22 m/sec to 1.10±.25 m/sec, p &lt;.001) and on the self-paced treadmill (1.24±.21 m/sec to 1.05±.25 m/sec, p &lt;.001). Overground and treadmill velocities were not statistically different from each other; however, differences approached or exceeded the minimal clinical important difference. The 2MWT coupled with a cognitive task provides an effective model of identifying dual task declines in individuals with PD. Further studies comparing overground and self-paced treadmill velocity is warranted in PD."	"In older adults hospitalized with heart failure (HF), cognitive impairment is associated with increased hospital readmission and mortality risk. There is no consensus on an objective, scalable method of cognitive screening in this population. The aim of this project was to determine the feasibility, test-retest reliability, and convergent validity of the Processing Speed Test (PST), a test of information processing, attention, and working memory administered on an iPad in older adults hospitalized with HF. Patients hospitalized with HF (n = 30) and age-, sex-, and education-matched controls (n = 30) participated in the study. To determine test-retest reliability, the PST was administered on an iPad on 2 occasions, separated by 12 to 48 hours. The Symbol Digit Modalities Test was administered at the first testing time point to determine convergent validity. Test-retest reliability of the PST was 0.80 and 0.92 in individuals with HF and controls, respectively. Convergent validity was 0.72 and 0.90 for individuals with HF and controls, respectively. Time to complete the PST was similar for both individuals with HF and controls (&lt;5 minutes). The iPad-based deployment of the PST was a feasible, reliable, and valid cognitive screen for older adults hospitalized with HF. Using a tablet-based self-administered cognitive screen in older adults with HF provides a method of cognitive assessment that is amenable to widespread clinical utilization."	"The evidence-informed standardization of care along disease lines is recommended to improve outcomes and reduce healthcare costs. The aim of this project is to 1) describe the development and implementation of the Concussion Carepath, 2) demonstrate the process of integrating technology in the form of a mobile application to enable the carepath and guide clinical decision-making, and 3) present data on the utility of the C3 app in facilitating decision-making throughout the injury recovery process. A multi-disciplinary team of experts in concussion care was formed to develop an evidence-informed algorithm, outlining best practices for the clinical management of concussion along three phases of recovery - acute, subacute, and post-concussive. A custom mobile application, the Cleveland Clinic Concussion (C3) app was developed and validated to provide a platform for the systematic collection of objective, biomechanical outcomes and to provide guidance in clinical decision-making in the field and clinical environments. The Cleveland Clinic Concussion app included an electronic incident report, assessment modules to measure important aspects of cognitive and motor function, and a return to play module to systematically document the six phases of post-injury rehabilitation. The assessment modules served as qualifiers within the carepath algorithm, driving referral for specialty services as indicated. Overall, the carepath coupled with the C3 app functioned in unison to facilitate communication among the interdisciplinary team, prevent stagnant care, and drive patients to the right provider at the right time for efficient and effective clinical management."	" Annually, more than 1 million youth athletes in the United States receive or are suspected of receiving a concussion. The Balance Error Scoring System (BESS) is the most commonly used clinical balance evaluation designed to provide a better understanding of the motor-control processes of individuals with concussion. Despite the widespread use of the BESS, a fundamental gap exists in applying this tool to young athletes, as normative values are lacking for this population.  To determine age- and sex-specific normative values for the BESS in youth, high school, and collegiate athletes.  Cross-sectional study.  Local youth sport organizations, high schools, and colleges.  Student-athletes (N = 6762) completed preseason baseline concussion testing as part of a comprehensive concussion-management program. Groups were youth males aged 5 to 13 years (n = 360), high school males aged 14 to 18 years (n = 3743), collegiate males aged 19 to 23 years (n = 497), youth females aged 5 to 13 years (n = 246), high school females aged 14 to 18 years (n = 1673), and collegiate females aged 19 to 23 years (n = 243).  Errors according to the BESS specifications.  Performance on the BESS was worse ( P &lt; .01) in youth athletes than in high school and collegiate athletes. In the youth and high school cohorts, females exhibited better scores than males ( P &lt; .05). Sex was not a factor for collegiate athletes. Data from the youth cohort were further subdivided into 4-year bins to evaluate potential motor-development differences. The error count was highest for 5- to 9-year-old males and decreased with age.  Performance on the BESS depended on sex and age, particularly in youth athletes. These sex- and age-specific normative values provide a reference to facilitate and unify clinical decision making across multiple providers caring for youth athletes with concussions."	"Despite the widespread utilization of the Balance Error Scoring System (BESS) in the evaluation of concussion, it has been criticized for its error-based scoring that is susceptible to floor and ceiling effects and substantial inter-rater variability. A biomechanical outcome, Cleveland Clinic Postural Stability Index (CC-PSI), has been developed as an alternative to subjective BESS scoring. The CC-PSI uses inertial sensor data within a mobile device to provide an objective measure of postural sway during the BESS. This project aimed to determine the effect of age and sex on the CC-PSI and report normative values for healthy, active children, adolescents, and young adults. A cross-sectional sample of 6762 student-athletes completed BESS testing. Participants were stratified according to three age groups for each sex. The groups included the following: youth (age, 5-13 yr), males (n = 360), females (n = 246); high school (age, 14-18 yr), males (n = 3743), females (n = 1673); and college (age, 19-23 yr), males (n = 497), females (n = 243). Percentile rankings were determined for each participant to characterize movement of COM in the medial-lateral, anterior-posterior, and trunk rotation directions relative to the entire cohort during the BESS stances. Overall, postural stability was worse in youth compared with high school and collegiate athletes. Specifically, the CC-PSI was significantly worse in youth male athletes compared with high school and collegiate male athletes (P &lt; 0.001). Females exhibited significantly better scores compared with males in youth and high school cohorts (P &lt; 0.01). The CC-PSI provides a quantitative, objective measure of postural stability, overcoming the limitations associated with conventional BESS scoring. Optimal concussion management should use objective age- and sex-specific values in the evaluation of postural stability. The normative values of the CC-PSI may be used in the absence of a baseline BESS evaluation to aid clinical decision making."	"Gait dysfunction, a hallmark of Parkinson's disease, contributes to a relatively high incidence of falling. Gait function is further diminished during the performance of a motor-cognitive task (i.e., dual-task). It is unclear if Parkinson's disease-related dual-task deficits are related to a specific area of cognitive function or are the result of a more global decline in executive function. The aim of this project was to systematically evaluate gait performance to determine if gait dysfunction is restricted to certain types of executive function or a global phenomenon in individuals with Parkinson's disease. Twenty-three individuals with mild-moderate Parkinson's disease completed a series of dual-task conditions in which gait was paired with cognitive tasks requiring: working memory (0, 1, and 2-back), attention and problem solving (serial-7 subtraction), verbal memory (digit recall), semantic memory (Controlled Oral Word Association) and information processing speed (visual Stroop test). The results demonstrate that individuals with mild-moderate Parkinson's disease have a generalized worsening of spatial-temporal gait parameters regardless of the specific cognitive demand being performed concurrently. Overall, gait velocity decreased (p &lt; 0.01) and stride and stance time both increased (p &lt; 0.01) across all cognitive conditions. The attention and problem solving task resulted in the greatest number of gait parameter decrements. Results indicated that performance on cognitive tasks remained unchanged from single-task to dual-task conditions. Diminished gait performance under dual-task conditions across different cognitive function domains suggests a global Parkinson's disease-related deficit in information processing and regulation of gait."	"To identify severe hypoglycemia events, defined as emergency department visits or hospitalizations for hypoglycemia, in patients with type 2 diabetes receiving care in a large health system and to identify patient characteristics associated with severe hypoglycemia events. This was a retrospective cohort study from January 2006 to December 2015 using the electronic medical record in the Cleveland Clinic Health System (CCHS). Participants included 50,439 patients with type 2 diabetes receiving care in the CCHS. Number of severe hypoglycemia events and associated patient characteristics were identified. The incidence proportion of severe hypoglycemia increased from 0.12% in 2006 to 0.31% in 2015 (P = 0.01). Compared with patients who did not experience severe hypoglycemia, those with severe hypoglycemia had similar median glycosylated hemoglobin (HbA1c) levels. More patients with severe hypoglycemia versus those without had a prior diagnosis of nonsevere hypoglycemia (9% vs. 2%, P &lt; 0.001). Logistic regression confirmed an increased odds for severe hypoglycemia with insulin, sulfonylureas, increased number of diabetes medications, history of nonsevere hypoglycemia (odds ratio [OR] 3.01, P &lt; 0.001), HbA1c &lt;6% (42 mmol/mol) (OR 1.95, P &lt; 0.001), black race, and increased Charlson comorbidity index. Lower odds of severe hypoglycemia were noted with higher BMI and use of metformin, dipeptidyl peptidase 4 inhibitors, and glucagon-like peptide 1 agonists. In this retrospective study of patients with type 2 diabetes with severe hypoglycemia, patient characteristics were identified. Patients with severe hypoglycemia had previous nonsevere hypoglycemia diagnoses more frequently than those without. Identifying patients at high risk at the point of care can allow for change in modifiable risk factors and prevention of severe hypoglycemia events."	"The aim of the present study was to assess the longitudinal accumulation of diabetes-related complications and the effect of glycemic control on the Diabetes Complications Severity Index (DCSI) score in people with newly diagnosed type 2 diabetes (T2D). A retrospective cohort study was conducted using electronic health records from a large integrated healthcare system. People with newly diagnosed T2D were identified between 2005 and 2016 and stratified by initial HbA1c category (&lt;7%, &lt;8%, ≥8%). The DCSI scores were determined for each study year, and the cumulative incidence of diabetes-related complications was assessed. A Cox proportional hazard model was used to evaluate the effect of baseline HbA1c and worsening glycemic (HbA1c) control on longitudinal changes in DCSI scores. Of 32 174 people identified as having newly diagnosed T2D, 14 016 (44%), 21 657 (67%), and 9983 (31%) had an initial or baseline HbA1c &lt;7%, &lt;8%, and ≥8%, respectively. Ten years after diabetes diagnosis, retinopathy, chronic kidney disease, coronary heart disease, and neuropathy were diagnosed in 22%, 29%, 24%, and 36% of people. Baseline HbA1c did not affect the observed trend in longitudinal changes in DCSI scores throughout the 11-year period. For people in each of the initial HbA1c groups (&lt;7%, &lt;8%, ≥8%), worsening or persistently poor glycemic control was significantly associated with a 10%, 19%, or 16% increase in the risk of experiencing an increased DCSI score, respectively (all P &lt; 0.01). Baseline glycemic control had no apparent effect on longitudinal changes in DCSI score. Worsening or persistently poor glycemic control was associated with an increased risk of an increase in the DCSI score."	"Postural instability is a hallmark of Parkinson's disease. Objective metrics to characterize postural stability are necessary for the development of treatment algorithms to aid in the clinical setting. The aim of this project was to validate a mobile device platform and resultant three-dimensional balance metric that characterizes postural stability. A mobile Application was developed, in which biomechanical data from inertial sensors within a mobile device were processed to characterize movement of center of mass in the medial-lateral, anterior-posterior and trunk rotation directions. Twenty-seven individuals with Parkinson's disease and 27 age-matched controls completed various balance tasks. A postural stability metric quantifying the amplitude (peak-to-peak) of sway acceleration in each movement direction was compared between groups. The peak-to-peak value in each direction for each individual with Parkinson's disease across all trials was expressed as a normalized value of the control data to identify individuals with severe postural instability, termed Cleveland Clinic-Postural Stability Index. In all conditions, the balance metric for peak-to-peak was significantly greater in Parkinson's disease compared to controls (p &lt; 0.01 for all tests). The balance metric, in conjunction with mobile device sensors, provides a rapid and systematic metric for quantifying postural stability in Parkinson's disease."	"To understand how two types of aerobic exercise affect upper-extremity motor recovery post-stroke. Our aims were to (1) evaluate the feasibility of having people who had a stroke complete an aerobic exercise intervention and (2) determine whether forced or voluntary exercise differentially facilitates upper-extremity recovery when paired with task practice. Seventeen participants with chronic stroke completed twenty-four 90-min sessions over 8 wk. Aerobic exercise was immediately followed by task practice. Participants were randomized to forced or voluntary aerobic exercise groups or to task practice only. Improvement on the Fugl-Meyer Assessment exceeded the minimal clinically important difference: 12.3, 4.8, and 4.4 for the forced exercise, voluntary exercise, and repetitive task practice-only groups, respectively. Only the forced exercise group exhibited a statistically significant improvement. People with chronic stroke can safely complete intensive aerobic exercise. Forced aerobic exercise may be optimal in facilitating motor recovery associated with task practice."
+"DiDonato, Joseph"	"Cardiovascular and Metabolic Sciences"	26617517	24558038	23969698	22435567	15324458	15280659	15212686	15108329	11698579	10914035	"High-density lipoprotein (HDL) and apolipoprotein A-I (apoA-I), the predominant protein in plasma HDL, have long been the focus of intense studies in the field of atherosclerosis and cardiovascular disease. ApoA-I, in large part, is responsible for HDL assembly and its main atheroprotective function, that of shuttling excess cholesterol from peripheral tissues to the liver for excretion (reverse cholesterol transport). Recently, a protective role for HDL in cancer was suggested from several large clinical studies where an inverse relationship between plasma HDL-cholesterol (HDL-C) levels and risk of developing cancer was noted. This notion has now been tested and found to be supported in mouse tumor studies, where increasing levels of apoA-I/HDL were discovered to protect against tumor development and provision of human apoA-I was therapeutic against established tumors. This mini-review discusses the emerging role of apoA-I in tumor biology and its potential as cancer therapeutic. "	"We reported previously that apolipoprotein A-I (apoA-I) is oxidatively modified in the artery wall at tyrosine 166 (Tyr(166)), serving as a preferred site for post-translational modification through nitration. Recent studies, however, question the extent and functional importance of apoA-I Tyr(166) nitration based upon studies of HDL-like particles recovered from atherosclerotic lesions. We developed a monoclonal antibody (mAb 4G11.2) that recognizes, in both free and HDL-bound forms, apoA-I harboring a 3-nitrotyrosine at position 166 apoA-I (NO2-Tyr(166)-apoA-I) to investigate the presence, distribution, and function of this modified apoA-I form in atherosclerotic and normal artery wall. We also developed recombinant apoA-I with site-specific 3-nitrotyrosine incorporation only at position 166 using an evolved orthogonal nitro-Tyr-aminoacyl-tRNA synthetase/tRNACUA pair for functional studies. Studies with mAb 4G11.2 showed that NO2-Tyr(166)-apoA-I was easily detected in atherosclerotic human coronary arteries and accounted for ∼ 8% of total apoA-I within the artery wall but was nearly undetectable (&gt;100-fold less) in normal coronary arteries. Buoyant density ultracentrifugation analyses showed that NO2-Tyr(166)-apoA-I existed as a lipid-poor lipoprotein with &lt;3% recovered within the HDL-like fraction (d = 1.063-1.21). NO2-Tyr(166)-apoA-I in plasma showed a similar distribution. Recovery of NO2-Tyr(166)-apoA-I using immobilized mAb 4G11.2 showed an apoA-I form with 88.1 ± 8.5% reduction in lecithin-cholesterol acyltransferase activity, a finding corroborated using a recombinant apoA-I specifically designed to include the unnatural amino acid exclusively at position 166. Thus, site-specific nitration of apoA-I at Tyr(166) is an abundant modification within the artery wall that results in selective functional impairments. Plasma levels of this modified apoA-I form may provide insights into a pathophysiological process within the diseased artery wall."	"Prior studies show that apolipoprotein A1 (apoA1) recovered from human atherosclerotic lesions is highly oxidized. Ex vivo oxidation of apoA1 or high-density lipoprotein (HDL) cross-links apoA1 and impairs lipid binding, cholesterol efflux, and lecithin-cholesterol acyltransferase activities of the lipoprotein. Remarkably, no studies to date directly quantify either the function or HDL particle distribution of apoA1 recovered from the human artery wall. A monoclonal antibody (10G1.5) was developed that equally recognizes lipid-free and HDL-associated apoA1 in both native and oxidized forms. Examination of homogenates of atherosclerotic plaque-laden aorta showed &gt;100-fold enrichment of apoA1 compared with normal aorta (P&lt;0.001). Surprisingly, buoyant density fractionation revealed that only a minority (&lt;3% of total) of apoA1 recovered from either lesions or normal aorta resides within an HDL-like particle (1.063≤d≤1.21). In contrast, the majority (&gt;90%) of apoA1 within aortic tissue (normal and lesions) was recovered within the lipoprotein-depleted fraction (d&gt;1.21). Moreover, both lesion and normal artery wall apoA1 are highly cross-linked (50% to 70% of total), and functional characterization of apoA1 quantitatively recovered from aorta with the use of monoclonal antibody 10G1.5 showed ≈80% lower cholesterol efflux activity and ≈90% lower lecithin-cholesterol acyltransferase activity relative to circulating apoA1. The function and distribution of apoA1 in human aorta are quite distinct from those found in plasma. The lipoprotein is markedly enriched within atherosclerotic plaque, predominantly lipid-poor, not associated with HDL, extensively oxidatively cross-linked, and functionally impaired."	"The nuclear factor-κB (NF-κB) transcription factor family has been considered the central mediator of the inflammatory process and a key participant in innate and adaptive immune responses. Coincident with the molecular cloning of NF-κB/RelA and identification of its kinship to the v-Rel oncogene, it was anticipated that NF-κB itself would be involved in cancer development. Oncogenic activating mutations in NF-κB genes are rare and have been identified only in some lymphoid malignancies, while most NF-κB activating mutations in lymphoid malignancies occur in upstream signaling components that feed into NF-κB. NF-κB activation is also prevalent in carcinomas, in which NF-κB activation is mainly driven by inflammatory cytokines within the tumor microenvironment. Importantly, however, in all malignancies, NF-κB acts in a cell type-specific manner: activating survival genes within cancer cells and inflammation-promoting genes in components of the tumor microenvironment. Yet, the complex biological functions of NF-κB have made its therapeutic targeting a challenge."	"Infection of intestinal epithelial cells by pathogenic Salmonella leads to activation of signaling cascades that ultimately initiate the proinflammatory gene program. The transcription factor NF-kappa B is a key regulator/activator of this gene program and is potently activated. We explored the mechanism by which Salmonella activates NF-kappa B during infection of cultured intestinal epithelial cells and found that flagellin produced by the bacteria and contained on them leads to NF-kappa B activation in all the cells; invasion of cells by the bacteria is not required to activate NF-kappa B. Purified flagellin activated the mitogen activated protein kinase (MAPK), stress-activated protein kinase (SAPK) and I kappa B kinase (IKK) signaling pathways that lead to expression of the proinflammatory gene program in a temporal fashion nearly identical to that of infection of intestinal epithelial cells by Salmonella. Flagellin expression was required for Salmonella invasion of host cells and it activated NF-kappa B via toll-like receptor 5 (TLR5). Surprisingly, a number of cell lines found to be unresponsive to flagellin express TLR5 and expression of exogenous TLR5 in these cells induces NF-kappa B activity in response to flagellin challenge although not robustly. Conversely, overexpression of dominant-negative TLR5 alleles only partially blocks NF-kappa B activation by flagellin. These observations are consistent with the possibility of either a very stable TLR5 signaling complex, the existence of a low abundance flagellin co-receptor or required adapter, or both. These collective results provide the evidence that flagellin acts as the main determinant of Salmonella mediated NF-kappa B and proinflammatory signaling and gene activation by this flagellated pathogen. In addition, expression of the fli C gene appears to play an important role in the proper functioning of the TTSS since mutants that fail to express fli C are defective in expressing a subset of Sip proteins and fail to invade host cells. Flagellin added in trans cannot restore the ability of the fli C mutant bacteria to invade intestinal epithelial cells. Lastly, TLR5 expression in weak and non-responding cells indicates that additional factors may be required for efficient signal propagation in response to flagellin recognition."	"Studies have shown that Resveratrol (RE) can inhibit cancer initiation, promotion, and progression. However the gene expression profile in renal cell carcinoma (RCC) in response to RE treatment has never been reported. To understand the potential anticancer effect of RE on RCC at molecular level, we profiled and analyzed the expression of 2059 cancer-related genes in a RCC cell line RCC54 treated with RE. Biological functions of 633 genes were annotated based on biological process ontology and clustered into functional categories. Twenty-nine highly differentially expressed genes in RE treated RCC54 were identified and the potential implications of some gene expression alterations in RCC carcinogenesis were identified. RE was also shown to inhibit cell growth and induce cell death of RCC cells. The expression alterations of selected genes were validated using reverse transcription polymerase chain reaction. In addition, the gene expression profiles under different RE treatments were analyzed and visualized using singular value decomposition. The findings from this study support the hypothesis that RE induces differential expression of genes that are directly or indirectly related to the inhibition of RCC cell growth and induction of RCC cell death. In addition, it is apparent that the gene expression alterations due to RE treatment depend strongly on RE concentration. This study provides a general understanding of the overall genetic response of RCC54 to RE treatment and yields insights into the understanding of the cancer preventive mechanism of RE in RCC."	"Renal cell carcinoma (RCC) is the most common cancer in adult kidney. The accuracy of current diagnosis and prognosis of the disease and the effectiveness of the treatment for the disease are limited by the poor understanding of the disease at the molecular level. To better understand the genetics and biology of RCC, we profiled the expression of 7,129 genes in both clear cell RCC tissue and cell lines using oligonucleotide arrays. Total RNAs isolated from renal cell tumors, adjacent normal tissue and metastatic RCC cell lines were hybridized to affymatrix HuFL oligonucleotide arrays. Genes were categorized into different functional groups based on the description of the Gene Ontology Consortium and analyzed based on the gene expression levels. Gene expression profiles of the tissue and cell line samples were visualized and classified by singular value decomposition. Reverse transcription polymerase chain reaction was performed to confirm the expression alterations of selected genes in RCC. Selected genes were annotated based on biological processes and clustered into functional groups. The expression levels of genes in each group were also analyzed. Seventy-four commonly differentially expressed genes with more than five-fold changes in RCC tissues were identified. The expression alterations of selected genes from these seventy-four genes were further verified using reverse transcription polymerase chain reaction (RT-PCR). Detailed comparison of gene expression patterns in RCC tissue and RCC cell lines shows significant differences between the two types of samples, but many important expression patterns were preserved. This is one of the initial studies that examine the functional ontology of a large number of genes in RCC. Extensive annotation, clustering and analysis of a large number of genes based on the gene functional ontology revealed many interesting gene expression patterns in RCC. Most notably, genes involved in cell adhesion were dominantly up-regulated whereas genes involved in transport were dominantly down-regulated. This study reveals significant gene expression alterations in key biological pathways and provides potential insights into understanding the molecular mechanism of renal cell carcinogenesis."	"Characterizing the alterations of protein expression in cancer cells can be very useful in providing insight into the changes in the functional pathways and thus the fundamental mechanisms of cancer development at the molecular level. In this study, we profiled protein expressions in eleven pairs of primary cell cultures derived from renal-cell carcinoma (RCC) tissues and patient-matched normal kidney tissues utilizing two-dimensional polyacrylamide gel electrophoresis (2-D PAGE). Together with the immunoblot analysis of proteins from the RCC tissues, the study also demonstrated that the alterations of protein expression observed in RCC primary cell cultures reflected those observed in the original RCC tissues. We analyzed the expression profiles and identified proteins differentially expressed in RCC primary cell cultures by 2-D PAGE and mass spectrometry (MS). We found sixteen proteins were overexpressed and seven proteins underexpressed in RCC. The deregulated expressions of proteins include those involved in metabolism, cellular morphology, heat shock response, cell growth, etc. Overexpression of three proteins, alphabeta-crystallin, manganese superoxide dismutase (MnSOD), and annexin IV, most commonly observed in primary RCC cell cultures, were also observed by immunoblot analysis of proteins from the RCC tissues from which the primary cell cultures were derived. Semi-quantitative reverse transcription (RT)-polymerase chain reaction (PCR) analysis revealed the direct correlation between deregulated gene expression and the corresponding protein abundance in two of the three most commonly upregulated proteins we found in RCC."	"Inhibitor of kappaB kinase alpha (IKK alpha) was originally identified as a component of a multiprotein kinase complex that regulates the activity of the transcription factor nuclear factor-kappaB (NF-kappaB) through phosphorylation of its inhibitor proteins, the IkappaBs. DiDonato discusses new roles that have been discovered for IKK alpha, focusing especially on its role in epidermal differentiation and on a new function of IKK alpha in B cell maturation. In epidermal differentiation, IKK alpha regulates the production of a secreted differentiation factor through a pathway that is independent of its role in activation of NF-kappaB. In B cell maturation, conventional NF-kappaB signal-induced activation of IKK alpha results in phosphorylation of p100 precursor proteins and increased proteolytic processing and constitutive NF-kappaB activation."	NA
+"Driscoll, Donna"	"Cardiovascular and Metabolic Sciences"	28917037	25692238	23777426	23614019	21685449	20385601	19716792	19106619	17901054	15821744	"This chapter explains the use of RNase-assisted RNA chromatography. RNA affinity chromatography is a powerful technique that is used to isolate and identify proteins that bind to a specific RNA ligand. The RNA of interest is attached to beads before protein lysates are passed over the column. In traditional RNA chromatography, bound proteins are eluted with high salt or harsh detergent, which can also release proteins that are nonspecifically bound to the beads. To avoid this, a new method was developed in which RNases are used to cleave RNA from the beads, releasing only RNA binding proteins (RBPs) and leaving behind proteins that are bound to the beads (Michlewski and Caceres, RNA 16(8):1673-1678, 2010). This chapter will describe the isolation of proteins that bind specifically to the distal region of the Selenoprotein S 3' untranslated region (3' UTR)."	"Selenium, a micronutrient, is primarily incorporated into human physiology as selenocysteine (Sec). The 25 Sec-containing proteins in humans are known as selenoproteins. Their synthesis depends on the translational recoding of the UGA stop codon to allow Sec insertion. This requires a stem-loop structure in the 3' untranslated region of eukaryotic mRNAs known as the Selenocysteine Insertion Sequence (SECIS). The SECIS is recognized by SECIS-binding protein 2 (SBP2) and this RNA:protein interaction is essential for UGA recoding to occur. Genetic mutations cause SBP2 deficiency in humans, resulting in a broad set of symptoms due to differential effects on individual selenoproteins. Progress on understanding the different phenotypes requires developing robust tools to investigate SBP2 structure and function. In this study we demonstrate that SBP2 protein produced by in vitro translation discriminates among SECIS elements in a competitive UGA recoding assay and has a much higher specific activity than bacterially expressed protein. We also show that a purified recombinant protein encompassing amino acids 517-777 of SBP2 binds to SECIS elements with high affinity and selectivity. The affinity of the SBP2:SECIS interaction correlated with the ability of a SECIS to compete for UGA recoding activity in vitro. The identification of a 250 amino acid sequence that mediates specific, selective SECIS-binding will facilitate future structural studies of the SBP2:SECIS complex. Finally, we identify an evolutionarily conserved core cysteine signature in SBP2 sequences from the vertebrate lineage. Mutation of multiple, but not single, cysteines impaired SECIS-binding but did not affect protein localization in cells. "	"Ribosomal protein L30 belongs to the L7Ae family of RNA-binding proteins, which recognize diverse targets. L30 binds to kink-turn motifs in the 28S ribosomal RNA, L30 pre-mRNA, and mature L30 mRNA. L30 has a noncanonical function as a component of the UGA recoding machinery that incorporates selenocysteine (Sec) into selenoproteins during translation. L30 binds to a putative kink-turn motif in the Sec Insertion Sequence (SECIS) element in the 3' UTR of mammalian selenoprotein mRNAs. The SECIS also interacts with SECIS-binding protein 2 (SBP2), an essential factor for Sec incorporation. Previous studies showed that L30 and SBP2 compete for binding to the SECIS in vitro. The SBP2:SECIS interaction has been characterized but much less is known about how L30 recognizes the SECIS. Here we use enzymatic RNA footprinting to define the L30 binding site on the SECIS. Like SBP2, L30 protects nucleotides in the 5' side of the internal loop, the 5' side of the lower helix, and the SECIS core, including the GA tandem base pairs that are predicted to form a kink-turn. However, L30 has additional determinants for binding as it also protects nucleotides in the 3' side of the internal loop, which are not protected by SBP2. In support of the competitive binding model, we found that purified L30 repressed UGA recoding in an in vitro translation system, and that this inhibition was rescued by SBP2. To define the amino acid requirements for SECIS-binding, site-specific mutations in L30 were generated based on published structural studies of this protein in a complex with its canonical target, the L30 pre-mRNA. We identified point mutations that selectively inhibited binding of L30 to the SECIS, to the L30 pre-mRNA, or both RNAs, suggesting that there are subtle differences in how L30 interacts with the two targets. This study establishes that L30 and SBP2 bind to overlapping but non-identical sites on the SECIS. The amino acid requirements for the interaction of L30 with the SECIS differ from those that mediate binding to the L30 pre-mRNA. Our results provide insight into how L7Ae family members recognize their cognate RNAs."	"Selenoprotein S (SelS) is a 189 amino acid trans-membrane protein that plays an important yet undefined role in the unfolded protein response. It has been proposed that SelS may function as a reductase, with the penultimate selenocysteine (Sec(188)) residue participating in a selenosulfide bond with cysteine (Cys(174)). Cotranslational incorporation of Sec into SelS depends on the recoding of the UGA codon, which requires a Selenocysteine Insertion Sequence (SECIS) element in the 3'UTR of the transcript. Here we identify multiple mechanisms that regulate the expression of SelS. The human SelS gene encodes two transcripts (variants 1 and 2), which differ in their 3'UTR sequences due to an alternative splicing event that removes the SECIS element from the variant 1 transcript. Both transcripts are widely expressed in human cell lines, with the SECIS-containing variant 2 mRNA being more abundant. In vitro experiments demonstrate that the variant 1 3'UTR does not allow readthrough of the UGA/Sec codon. Thus, this transcript would produce a truncated protein that does not contain Sec and cannot make the selenosulfide bond. While the variant 2 3'UTR does support Sec insertion, its activity is weak. Bioinformatic analysis revealed two highly conserved stem-loop structures, one in the proximal part of the variant 2 3'UTR and the other immediately downstream of the SECIS element. The proximal stem-loop promotes Sec insertion in the native context but not when positioned far from the UGA/Sec codon in a heterologous mRNA. In contrast, the 140 nucleotides downstream of the SECIS element inhibit Sec insertion. We also show that endogenous SelS is enriched at perinuclear speckles, in addition to its known localization in the endoplasmic reticulum. Our results suggest the expression of endogenous SelS is more complex than previously appreciated, which has implications for past and future studies on the function of this protein."	"eIF4a3, a DEAD-box protein family member, is a component of the exon junction complex which assembles on spliced mRNAs. The protein also acts as a transcript-selective translational repressor of selenoprotein synthesis during selenium deficiency. Selenocysteine (Sec) incorporation into selenoproteins requires a Sec Insertion Sequence (SECIS) element in the 3' untranslated region. During selenium deficiency, eIF4a3 binds SECIS elements from non-essential selenoproteins, preventing Sec insertion. We identified a molecular signature for the eIF4a3-SECIS interaction using RNA gel shifts, surface plasmon resonance and enzymatic foot printing. Our results support a two-site interaction model, where eIF4a3 binds the internal and apical loops of the SECIS. Additionally, the stability of the complex requires uridine in the SECIS core. In terms of protein requirements, the two globular domains of eIF4a3, which are connected by a linker, are both critical for SECIS binding. Compared to full-length eIF4a3, the two domains in trans bind with a lower association rate but notably, the uridine is no longer important for complex stability. These results provide insight into how eIF4a3 discriminates among SECIS elements and represses translation."	"Selenium, an essential trace element, is incorporated into selenoproteins as selenocysteine (Sec), the 21st amino acid. In order to synthesize selenoproteins, a translational reprogramming event must occur since Sec is encoded by the UGA stop codon. In mammals, the recoding of UGA as Sec depends on the selenocysteine insertion sequence (SECIS) element, a stem-loop structure in the 3' untranslated region of the transcript. The SECIS acts as a platform for RNA-binding proteins, which mediate or regulate the recoding mechanism. Using UV crosslinking, we identified a 110 kDa protein, which binds with high affinity to SECIS elements from a subset of selenoprotein mRNAs. The crosslinking activity was purified by RNA affinity chromatography and identified as nucleolin by mass spectrometry analysis. In vitro binding assays showed that purified nucleolin discriminates among SECIS elements in the absence of other factors. Based on siRNA experiments, nucleolin is required for the optimal expression of certain selenoproteins. There was a good correlation between the affinity of nucleolin for a SECIS and its effect on selenoprotein expression. As selenoprotein transcript levels and localization did not change in siRNA-treated cells, our results suggest that nucleolin selectively enhances the expression of a subset of selenoproteins at the translational level."	"The synthesis of selenoproteins requires the translational recoding of the UGA stop codon as selenocysteine. During selenium deficiency, there is a hierarchy of selenoprotein expression, with certain selenoproteins synthesized at the expense of others. The mechanism by which the limiting selenocysteine incorporation machinery is preferentially utilized to maintain the expression of essential selenoproteins has not been elucidated. Here we demonstrate that eukaryotic initiation factor 4a3 (eIF4a3) is involved in the translational control of a subset of selenoproteins. The interaction of eIF4a3 with the selenoprotein mRNA prevents the binding of SECIS binding protein 2, which is required for selenocysteine insertion, thereby inhibiting the synthesis of the selenoprotein. Furthermore, the expression of eIF4a3 is regulated in response to selenium. Based on knockdown and overexpression studies, eIF4a3 is necessary and sufficient to mediate selective translational repression in cells. Our results support a model in which eIF4a3 links selenium status with differential selenoprotein expression."	"The human selenoproteome is composed of approximately 25 selenoproteins, which cotranslationally incorporate selenocysteine, the 21st amino acid. Selenoprotein expression requires an unusual translation mechanism, as selenocysteine is encoded by the UGA stop codon. SECIS-binding protein 2 (SBP2) is an essential component of the selenocysteine insertion machinery. SBP2 is also the only factor known to differentiate among selenoprotein mRNAs, thereby modulating the relative expression of the individual selenoproteins. Here, we show that expression of SBP2 protein varies widely across tissues and cell types examined, despite previous observations of only modest variation in SBP2 mRNA levels. This discrepancy between SBP2 mRNA and protein levels implies translational regulation, which is often mediated via untranslated regions (UTRs) in regulated transcripts. We have identified multiple sequences in the SBP2 3' UTR that are highly conserved. The proximal short conserved region is GU rich and was subsequently shown to be a binding site for CUG-BP1. The distal half of the 3' UTR is largely conserved, and multiple proteins interact with this region. One of these proteins was identified as HuR. Both CUG-BP1 and HuR are members of the Turnover and Translation Regulatory RNA-Binding Protein family (TTR-RBP). Members of this protein family are linked by the common ability to rapidly effect gene expression through alterations in the stability and translatability of target mRNAs. The identification of CUG-BP1 and HuR as factors that bind to the SBP2 3' UTR suggests that TTR-RBPs play a role in the regulation of SBP2, which then dictates the expression of the selenoproteome."	"The expression of selenoproteins requires the translational recoding of the UGA stop codon to selenocysteine. In eukaryotes, this requires an RNA stem loop structure in the 3'-untranslated region, termed a selenocysteine insertion sequence (SECIS), and SECIS-binding protein 2 (SBP2). This study implicates SBP2 in dictating the hierarchy of selenoprotein expression, because it is the first to show that SBP2 distinguishes between SECIS elements in vitro. Using RNA electrophoretic mobility shift assays, we demonstrate that a naturally occurring mutation in SBP2, which correlates with abnormal thyroid hormone function in humans, lies within a novel, bipartite RNA-binding domain. This mutation alters the RNA binding affinity of SBP2 such that it no longer stably interacts with a subset of SECIS elements. Assays performed under competitive conditions to mimic intracellular conditions suggest that the differential affinity of SBP2 for various SECIS elements will determine the expression pattern of the selenoproteome. We hypothesize that the selective loss of a subset of selenoproteins, including some involved in thyroid hormone homeostasis, is responsible for the abnormal thyroid hormone metabolism previously observed in the affected individuals."	"The translational recoding of UGA as selenocysteine (Sec) is directed by a SECIS element in the 3' untranslated region (UTR) of eukaryotic selenoprotein mRNAs. The selenocysteine insertion sequence (SECIS) contains two essential tandem sheared G.A pairs that bind SECIS-binding protein 2 (SBP2), which recruits a selenocysteine-specific elongation factor and Sec-tRNA(Sec) to the ribosome. Here we show that ribosomal protein L30 is a component of the eukaryotic selenocysteine recoding machinery. L30 binds SECIS elements in vitro and in vivo, stimulates UGA recoding in transfected cells and competes with SBP2 for SECIS binding. Magnesium, known to induce a kink-turn in RNAs that contain two tandem G.A pairs, decreases the SBP2-SECIS complex in favor of the L30-SECIS interaction. We propose a model in which SBP2 and L30 carry out different functions in the UGA recoding mechanism, with the SECIS acting as a molecular switch upon protein binding."
+"Dutta, Ranjan"	"Neurosciences"	30270725	29754529	28821749	24722325	24507515	23996595	23595422	21446020	21147224	20946934	"Current multiple sclerosis (MS) therapies are effective in reducing relapse rate, short-term measures of disability, and magnetic resonance imaging (MRI) measures of inflammation in relapsing remitting MS (RRMS), whereas in progressive/degenerative disease phases these medications are of little or no benefit. Therefore, the development of new therapies aimed at reversing neurodegeneration is of great interest. Remyelination, which is usually a spontaneous endogenous process, is achieved when myelin-producing oligodendrocytes are generated from oligodendrocyte precursor cells (OPCs). Even though these precursor cells are abundant in MS brains, their regeneration capacity is limited. Enhancing the generation of myelin-producing cells is therefore a major focus of MS research. Here we present an overview of the different advancements in the field of remyelination, including suitable animal models for testing remyelination therapies, approved medications with a proposed role in regeneration, myelin repair treatments under investigation in clinical trials, as well as future therapeutics aimed at facilitating myelin repair."	NA	"Multiple Sclerosis (MS) is an immune-mediated demyelinating disease of the human central nervous system (CNS). Memory impairments and hippocampal demyelination are common features in MS patients. Our previous data have shown that demyelination alters neuronal gene expression in the hippocampus. DNA methylation is a common epigenetic modifier of gene expression. In this study, we investigated whether DNA methylation is altered in MS hippocampus following demyelination. Our results show that mRNA levels of DNA methyltransferase were increased in demyelinated MS hippocampus, while de-methylation enzymes were decreased. Comparative methylation profiling identify hypo-methylation within upstream sequences of 6 genes and hyper-methylation of 10 genes in demyelinated MS hippocampus. Genes identified in the current study were also validated in an independent microarray dataset generated from MS hippocampus. Independent validation using RT-PCR revealed that DNA methylation inversely correlated with mRNA levels of the candidate genes. Queries across cell-specific databases revealed that a majority of the candidate genes are expressed by astrocytes and neurons in mouse and human CNS. Taken together, our results expands the list of genes previously identified in MS hippocampus and establish DNA methylation as a mechanism of altered gene expression in MS hippocampus."	"The predominant clinical disease course of multiple sclerosis starts with reversible episodes of neurological disability, which transforms into progressive neurological decline. This review provides insight into the pathological differences during relapsing and progressive phases of multiple sclerosis. The clinical course of multiple sclerosis is variable, and the disease can be classified into relapsing and progressive phases. Pathological studies have been successful in distinguishing between these two forms of the disease and correlate with the clinical findings in terms of cellular responses, the inflammatory environment, and the location of lesions. Available therapies for multiple sclerosis patients, while effective during the relapsing phase, have little benefit for progressive multiple sclerosis patients. Development of therapies to benefit progressive multiple sclerosis patients will require a better understanding of the pathogenesis of progressive multiple sclerosis. This review discusses and compares the pathological findings in relapsing and progressive multiple sclerosis patients."	"Multiple sclerosis (MS) is a chronic inflammatory demyelinating disease of the central nervous system and the leading cause of non-traumatic neurologic disability in young adults in the United States and Europe. The disease course is variable and starts with reversible episodes of neurologic disability which transforms into continuous and irreversible neurologic decline. It is well established that loss of axons and neurons is the major cause of the progressive neurologic decline that most MS patients endure. Current hypotheses support primary inflammatory demyelination as the underlying cause of axonal loss during earlier stages in MS. The transition to progressive disease course is thought to occur when a threshold of neuronal and axonal loss is reached and the compensatory capacity of the central nervous system is surpassed. Available immunomodulatory therapies are of little benefit to MS after entering this irreversible phase of the disease. Elucidation of mechanisms that are responsible for axonal loss is therefore essential for the development of therapies directed to stop neurologic decline in MS patients. The current chapter reviews existing data on mechanisms of axonal pathology in MS. "	"Multiple sclerosis (MS) is a chronic inflammatory demyelinating disease of the central nervous system with an unknown etiology. The clinical disease course is variable, with the majority of patients experiencing reversible episodes of neurological disability in the third or fourth decade of life, eventually followed by a state of irreversible progression. Continuous axonal and neuronal loss is thought to be the major cause of this progression. Over the last decade, extensive research has targeted the gray matter and its role in MS pathogenesis. While pathological and imaging studies have begun to reveal important clues about the role of cortical pathology, gene expression studies in MS cortex are still emerging. Microarray-based comparative gene expression profiling provides a snapshot of genes underlying a particular condition and has been performed using brain tissues from patients with progressive MS. In this review, we summarize existing data from gene expression changes in cortical tissues from MS brains and how they may provide clues to the pathogenesis. "	"Hippocampal demyelination, a common feature of postmortem multiple sclerosis (MS) brains, reduces neuronal gene expression and is a likely contributor to the memory impairment that is found in &gt;40% of individuals with MS. How demyelination alters neuronal gene expression is unknown. To explore whether loss of hippocampal myelin alters expression of neuronal microRNAs (miRNAs), we compared miRNA profiles from myelinated and demyelinated hippocampi from postmortem MS brains and performed validation studies. A network-based interaction analysis depicts a correlation between increased neuronal miRNAs and decreased neuronal genes identified in our previous study. The neuronal miRNA miR-124 was increased in demyelinated MS hippocampi and targets mRNAs encoding 26 neuronal proteins that were decreased in demyelinated hippocampus, including the ionotrophic glutamate receptors AMPA2 and AMPA3. Hippocampal demyelination in mice also increased miR-124, reduced expression of AMPA receptors, and decreased memory performance in water maze tests. Remyelination of the mouse hippocampus reversed these changes. We establish here that myelin alters neuronal gene expression and function by modulating the levels of the neuronal miRNA miR-124. Inhibition of miR-124 in hippocampal neurons may provide a therapeutic approach to improve memory performance in MS patients."	"Multiple Sclerosis (MS) is an inflammatory demyelinating disease of the human central nervous system. Although the clinical impact of gray matter pathology in MS brains is unknown, 30 to 40% of MS patients demonstrate memory impairment. The molecular basis of this memory dysfunction has not yet been investigated in MS patients. To investigate possible mechanisms of memory impairment in MS patients, we compared morphological and molecular changes in myelinated and demyelinated hippocampi from postmortem MS brains. Demyelinated hippocampi had minimal neuronal loss but significant decreases in synaptic density. Neuronal proteins essential for axonal transport, synaptic plasticity, glutamate neurotransmission, glutamate homeostasis, and memory/learning were significantly decreased in demyelinated hippocampi, but not in demyelinated motor cortices from MS brains. Collectively, these data support hippocampal demyelination as a cause of synaptic alterations in MS patients and establish that the neuronal genes regulated by myelination reflect specific functions of neuronal subpopulations."	"Multiple sclerosis (MS) is a chronic inflammatory demyelinating disease of the central nervous system and the leading cause of non-traumatic neurological disability in young adults in the United States and Europe. The clinical disease course is variable and starts with reversible episodes of neurological disability in the third or fourth decade of life. Microarray-based comparative gene profiling provides a snapshot of genes underlying a particular condition. Several large scale microarray studies have been conducted using brain tissue from MS patients. In this review, we summarize existing data from different gene expression profiling studies and how they relate to understand the pathogenesis of MS."	"Multiple sclerosis (MS) is a chronic inflammatory demyelinating disease of the central nervous system. Due to its high prevalence, MS is the leading cause of non-traumatic neurological disability in young adults in the United States and Europe. The clinical disease course is variable and starts with reversible episodes of neurological disability in the third or fourth decade of life. This transforms into a disease of continuous and irreversible neurological decline by the sixth or seventh decade. Available therapies for MS patients have little benefit for patients who enter this irreversible phase of the disease. It is well established that irreversible loss of axons and neurons are the major cause of the irreversible and progressive neurological decline that most MS patients endure. This review discusses the etiology, mechanisms and progress made in determining the cause of axonal and neuronal loss in MS."
+"Dweik, Raed"	"Inflammation and Immunity"	28473668	28090286	27187737	27831543	27922752	28514116	28604281	26856665	26401258	26022959	"Many uremic solutes retained in chronic kidney disease are volatile, and can be detected by breath testing. We compared the exhaled breath of subjects with end stage renal disease (ESRD) to healthy volunteers to identify volatile compounds that can serve as a potential breathprint for renal failure. We analyzed the exhaled breath of 86 ESRD subjects and 25 healthy volunteers using selected-ion flow-tube mass spectrometry (SIFT-MS). Using a random forests classification model, we identified three known volatiles (2-propanol, ammonia, acetaldehyde) and two unknown volatiles ([Formula: see text] NO<sup>+</sup>76) that were highly significant for discriminating individuals with renal failure from individuals without renal failure (C statistic &gt; 0.99). This study provides preliminary support for the use of exhaled breath as a potential noninvasive screening tool in renal failure."	"Among pulmonary vascular diseases, pulmonary hypertension (PH) is the best studied and has been the focus of our work. The current classification of PH is based on a relatively simple combination of patient characteristics and hemodynamics. This leads to inherent limitations, including the inability to customize treatment and the lack of clarity from a more granular identification based on individual patient phenotypes. Accurate phenotyping of PH can be used in the clinic to select therapies and determine prognosis and in research to increase the homogeneity of study cohorts. Rapid advances in the mechanistic understanding of the disease, improved imaging methods, and innovative biomarkers now provide an opportunity to define novel PH phenotypes. We have recently shown that altered metabolism may affect nitric oxide levels and protein glycosylation, the peripheral circulation (which may provide insights into the response to therapy), and exhaled-breath analysis (which may be useful in disease evaluation). This review is based on a talk presented during the 2015 Grover Conference and highlights the relevant literature describing novel methods to phenotype pulmonary arterial hypertension patients by using approaches that involve the pulmonary and systemic (peripheral) vasculature. In particular, abnormalities in metabolism, the pulmonary and peripheral circulation, and exhaled breath in PH may help identify phenotypes that can be the basis for a precision-medicine approach to PH management. These approaches may also have a broader scope and may contribute to a better understanding of other diseases, such as asthma, diabetes, and cancer."	"Altered bone morphogenic protein (BMP) signaling, independent of BMPR2 mutations, can result in idiopathic pulmonary arterial hypertension (IPAH). Glucose dysregulation can regulate multiple processes in IPAH. However, the role of glucose in BMP antagonist expression in IPAH has not been characterized. We hypothesized that glucose uptake regulates BMP signaling through stimulation of BMP antagonist expression in IPAH. Using human plasma, lung tissue, and primary pulmonary arterial smooth muscle cells (PASMCs), we examined the protein expression of BMP2, BMP-regulated Smads, and Smurf-1 in patients with IPAH and control subjects. Gremlin-1 levels were elevated in patients with IPAH compared with control subjects, whereas expression of BMP2 was not different. We demonstrate increased Smad polyubiquitination in IPAH lung tissue and PASMCs that was further enhanced with proteasomal inhibition. Examination of the Smad ubiquitin-ligase, Smurf-1, showed increased protein expression in IPAH lung tissue and localization in the smooth muscle of the pulmonary artery. Glucose dose dependently increased Smurf-1 protein expression in control PASMCs, whereas Smurf-1 in IPAH PASMCs was increased and sustained. Conversely, phospho-Smad1/5/8 levels were reduced in IPAH compared with control PASMCs at physiological glucose concentrations. Interestingly, high glucose concentrations decreased phosphorylation of Smad1/5/8 in control PASMCs. Blocking glucose uptake had opposing effects in IPAH PASMCs, and inhibition of Smurf-1 activity resulted in partial rescue of Smad1/5/8 activation and cell migration rates. Collectively, these data suggest that BMP signaling can be regulated through BMPR2 mutation-independent mechanisms. Gremlin-1 (synonym: induced-in-high-glucose-2 protein) and Smurf-1 may function to inhibit BMP signaling as a consequence of the glucose dysregulation described in IPAH."	"The accuracy of available noninvasive biomarkers for diagnosis, stratification, and prediction of inflammatory bowel disease (IBD) courses is limited. We analyzed volatile organic compounds (VOCs) in the breath of IBD patients and controls for diagnosis and differentiation of IBD as well as their link with disease location, activity, and phenotype. A prospective study of diagnostic testing was conducted, recruiting Crohn's disease (CD), ulcerative colitis (UC), other inflammatory gastrointestinal diseases (OGDs), and healthy controls (HCs), as well as subjects with ileal pouch anal anastomosis (IPAA). The breath VOC profile was analyzed using selective ion flow tube-mass spectrometry. One hundred and twenty-four subjects (n=24 CD, n=11 UC, n=6 OGD, n=53 HC, n=30 IPAA) were included. The breath metabolome was significantly different in patients with IBD, CD, or UC compared with OGD and HC (7 out of 22 VOCs), but not between CD and UC. No link between the level of VOCs with complications, disease location, and clinical or radiologic disease activity, as well as lab parameters or type of medication was found. Breath VOCs were markedly different in patients with IPAA compared with any other group (17 out of 22 VOCs) and the presence of pouch inflammation did not alter the VOC levels. A specific breath metabolome is associated with IBD and markedly changes in patients with IPAA. Analysis of a broader spectrum of VOCs can potentially aid in the development of breath prints to diagnose or differentiate inflammatory bowel disorders."	"Insulin resistance has emerged as a potential mechanism related to the pathogenesis of idiopathic pulmonary arterial hypertension (IPAH). However, direct measurements of insulin and glucose metabolism have not been performed in patients with IPAH to date. To perform comprehensive metabolic phenotyping of humans with IPAH. We assessed plasma insulin and glucose, using an oral glucose tolerance test and estimated insulin resistance, and β-cell function in 14 patients with IPAH and 14 control subjects matched for age, sex, blood pressure, and body mass index. Body composition (dual-energy X-ray absorptiometry), inflammation (CXC chemokine ligand 10, endothelin-1), physical fitness (6-min walk test), and energy expenditure (indirect calorimetry) were also assessed. Patients with IPAH had a higher rate of impaired glucose tolerance (57 vs. 14%; P &lt; 0.05) and reduced glucose-stimulated insulin secretion compared with matched control subjects (IPAH: 1.31 ± 0.76 μU/ml⋅mg/dl vs. control subjects: 2.21 ± 1.27 μU/ml⋅mg/dl; P &lt; 0.05). Pancreatic β-cell function was associated with circulating endothelin-1 (r = -0.71, P &lt; 0.01) and CXC chemokine ligand 10 (r = -0.56, P &lt; 0.05). Resting energy expenditure was elevated in IPAH (IPAH: 32 ± 3.4 vs. control subjects: 28.8 ± 2.9 kcal/d/kg fat-free mass; P &lt; 0.05) and correlated with the plasma glucose response (r = 0.51, P &lt; 0.01). Greater insulin resistance was associated with reduced 6-minute walk distance (r = 0.55, P &lt; 0.05). Independent of age, sex, blood pressure, and body mass index, patients with IPAH have glucose intolerance, decreased insulin secretion in response to glucose, and elevated resting energy expenditure. These abnormalities are associated with circulating markers of inflammation and vascular dysfunction."	"A dilated pulmonary artery (PA) is a common finding in patients with pulmonary arterial hypertension (PAH). Little is known on the variations in PA size over time and whether these changes track with disease severity and/or predict long-term survival. We included patients with PAH who had at least two computed tomography (CT) scans of the chest done on different visits. Both scans matched the use of i.v. contrast. Pairs of CT scans were compared in 113 PAH patients. During a median (interquartile range (IQR)) time difference between scans of 8 (IQR: 3.5-20.0) months, we noted an increase in main PA diameter of 0.5 ± 1.8 mm (mean ± SD) (P = 0.008). When CT scans were performed &gt;12 months apart (n = 47), the main PA diameter increased or decreased by &gt;1 mm in 40% and 13% of the patients, respectively. An increase in main PA diameter was associated with lower PA compliance, higher right ventricular (RV) systolic pressure, worse RV function and a decline in 6-min walk distance. During a median (IQR) follow-up of 33 (IQR: 4.5-47) months, 53 (46.9%) patients died. The change in PA diameter was a significant predictor of mortality (hazard ratio (HR) per mm increase: 1.33 (95% CI: 1.11-1.61), P = 0.002) when adjusted for difference in time and slice thickness between CT scans, age, gender, PAH aetiology and pulmonary vascular resistance. In PAH patients, an increase in CT-derived main PA diameter over time is associated with progression in pulmonary pressures, RV dysfunction, a decline in functional capacity and higher mortality."	"Leptin (a neuroendocrine peptide that enhances metabolism and acts on the hypothalamus to suppress appetite) and adiponectin (a protein that has insulin-sensitizing, anti-inflammatory, and antiproliferative properties) are involved in the pathobiology of pulmonary arterial hypertension (PAH). We hypothesized that plasma leptin and adiponectin as well as the leptin/adiponectin ratio are abnormal in PAH patients and their levels track with disease severity and functional changes during follow-up. We tested this hypothesis in a cohort of patients included in the 16-week, international, multicenter, double-blind, placebo-controlled FREEDOM-C2 study. Blood was collected at baseline and week 16 in 178 out of 310 randomized patients with PAH. Baseline plasma leptin and adiponectin concentrations were 25 ± 31 ng/mL and 7.8 ± 6.1 ug/mL, respectively. Leptin, adiponectin, and leptin/adiponectin (mean ± SD) changes at 16 week were of small magnitude. Leptin at baseline was significantly associated with older age, higher BMI, higher Borg dyspnea index, and lower NT-pro BNP. Women had higher levels of leptin than men (30.5 ± 33.2 versus 7.2 ± 6.4 ng/mL), even when adjusting for background therapy and etiology (linear regression: β = 21.8, P &lt; 0.001). Adiponectin was negatively associated with BMI and positively associated with NT-pro BNP. Changes in leptin, adiponectin, and leptin/adiponectin ratio adjusted for weight at 16 weeks did not predict functional class, distance walk in 6 min or survival at one, two, three, or four years. Plasma leptin and adiponectin at baseline and their change at 16-week do not appear to significantly impact prognosis in PAH."	"Pulmonary arterial hypertension (PAH) is a progressive, fatal disease. Current prognostic models are not ideal, and identifying more accurate prognostic variables is needed. The objective of this study was to evaluate the relative prognostic value of the right atrial pressure/pulmonary artery wedge pressure (RAP/PAWP) ratio in PAH patients. We hypothesized that the RAP/PAWP ratio is more predictive of survival than any of the other measured or calculated hemodynamic variables. We performed a secondary analysis of a PAH cohort (Cohort 1) and validated our results in a separate cohort (Cohort 2). Cohort 1 included primarily patients enrolled in prospective, short-term, randomized clinical trials and subsequently followed long term. Cohort 2 included patients prospectively enrolled in a PAH registry at a tertiary PAH referral center. Cohort 1 (n = 847) and Cohort 2 (n = 697) had a mean age of 47 and 54 years, respectively. Most were female (78% and 73%, respectively), Caucasian (83% and 82%), with advanced functional class disease status (New York Heart Association Functional Class III/IV 85% and 68%) and with significantly elevated hemodynamics (mean RAP/PAWP ratio: 1.2 and 1.0; pulmonary vascular resistance: 13.5 and 9.4 Wood units). RAP/PAWP ratio indicated a 1-year hazard ratio of 1.44 (p = 0.0001) and 1.35, respectively (p &lt; 0.0001), and was the most consistently predictive hemodynamic variable across the 2 cohorts. These results remain valid even when adjusted for other covariables in multivariable regression models. The RAP/PAWP ratio is a more specific predictor of survival than any other hemodynamic variable, and we recommend that it be used in clinical prognostication and PAH predictive models."	"Reduced heart rate recovery (HRR) after exercise is associated with increased mortality in cardiac and pulmonary diseases. We sought to evaluate the association between HRR after the 6-minute walk test (6MWT) and outcomes in patients with connective tissue disease-associated pulmonary hypertension (CTD-PH). Data were obtained by review of the medical records. HRR was defined as the difference in heart rate at the end of the 6MWT and after 1 minute (HRR1), 2 minutes (HRR2), and 3 minutes (HRR3) of rest. All patients with pulmonary hypertension and a diagnosis of systemic sclerosis, systemic lupus erythematosus, or mixed connective tissue disease who underwent the 6MWT between August 1, 2009, and October 30, 2011, were included (n = 66). By Kaplan-Meier analysis, HRR1, HRR2, and HRR3 at different cutoff points were all good predictors, with HRR1 of &lt;16 being the best predictor of time to clinical worsening (log-rank P &lt; 0.0001), hospitalization (log-rank P = 0.0001), and survival (log-rank P &lt; 0.003). By proportional hazards regression, patients with HRR1 of &lt;16 were at increased risk of clinical worsening (hazard ratio [HR]: 6.4 [95% confidence interval (CI): 2.6-19.2]; P &lt; 0.0001], hospitalization (HR: 6.6 [95% CI: 2.4-23]; P &lt; 0.0001), and death (HR: 4.5 [95% CI: 1.6-15.7]; P = 0.003). Patients in the highest tercile (HRR1 of ≥19) were unlikely to have a clinical worsening event (HR: 0.1 [95% CI: 0.04-0.5]; P = 0.001], to be hospitalized (HR: 0.1 [95% CI: 0.02-0.5]; P = 0.001), or to die (HR: 0.3 [95% CI: 0.07-0.9]; P = 0.04]. In conclusion, in patients with CTD-PH, abnormal HRR1 (defined as HRR1 of &lt;16) after the 6MWT is a strong predictor of clinical worsening, time to clinical worsening, survival, and hospitalization. "	"The utility and safety of β-blockers in pulmonary hypertension is controversial. Anecdotal reports suggest that β-blockers may be harmful in these patients. The aim of our study was to evaluate outcomes of β-blocker use in pulmonary hypertension.We reviewed patients from our pulmonary hypertension registry between 2000 and 2011. Patients who continued to use β-blockers were compared to those who never used β-blockers for all-cause mortality, time to clinical worsening events, defined as death, lung transplantation and hospitalisation due to pulmonary hypertension. We also evaluated the effect of β-blockers on 6-min walking distance and New York Heart Association (NYHA) functional class.133 patients used β-blockers and 375 patients never used β-blockers. Mean±sd age was 57±16 years and the median follow-up period was 78 months. Propensity-matched analysis showed that the adjusted odds ratio (95% CI) for mortality with β-blocker use was 1.13 (0.69-1.82) and for clinical worsening events was 0.96 (0.55-1.68). No significant difference was noted in probability of survival and time to clinical worsening events. Patients on β-blockers walked a shorter distance on follow-up 6 min walk test; follow-up NYHA class was similar between groups.Pulmonary hypertension patients receiving β-blockers had a similar survival and time to clinical worsening events compared to patients not receiving them. Functional outcomes were similar, although β-blocker use was associated with a tendency towards shorter walking distance. "
+"Eng, Charis"	"Genomic Medicine Institute"	31006514	30993253	30993251	30937181	30928438	30774768	30664625	30614812	30311380	30245854	"Individuals with germline PTEN tumor-suppressor variants have PTEN hamartoma tumor syndrome (PHTS). Clinically, PHTS has variable presentations; there are distinct subsets of PHTS-affected individuals, such as those diagnosed with autism spectrum disorder (ASD) or cancer. It remains unclear why mutations in one gene can lead to such seemingly disparate phenotypes. Therefore, we sought to determine whether it is possible to predict a given PHTS-affected individual's a priori risk of ASD, cancer, or the co-occurrence of both phenotypes. By integrating network proximity analysis performed on the human interactome, molecular simulations, and residue-interaction networks, we demonstrate the role of conformational dynamics in the structural communication and long-range allosteric regulation of germline PTEN variants associated with ASD or cancer. We show that the PTEN interactome shares significant overlap with the ASD and cancer interactomes, providing network-based evidence that PTEN is a crucial player in the biology of both disorders. Importantly, this finding suggests that a germline PTEN variant might perturb the ASD or cancer networks differently, thus favoring one disease outcome at any one time. Furthermore, protein-dynamic structural-network analysis reveals small-world structural communication mediated by highly conserved functional residues and potential allosteric regulation of PTEN. We identified a salient structural-communication pathway that extends across the inter-domain interface for cancer-only mutations. In contrast, the structural-communication pathway is predominantly restricted to the phosphatase domain for ASD-only mutations. Our integrative approach supports the prediction and potential modulation of the relevant conformational states that influence structural communication and long-range perturbations associated with mutational effects that lead to PTEN-ASD or PTEN-cancer phenotypes."	"We sought to characterize microbiomes of thoracic aortas from patients with non-infectious aortitis due to giant cell arteritis (GCA) and clinically isolated aortitis (CIA) and to compare them to non-inflammatory aorta aneurysm controls. We also compared microbiomes from concurrently processed and separately reported temporal arteries (TA) and aortas. From 220 prospectively enrolled patients undergoing surgery for thoracic aorta aneurysm, 49 were selected. Inflammatory and non-inflammatory cases were selected based on ability to match for age (+/-10 years), gender, and race. Biopsies were collected under aseptic conditions and snap-frozen. Taxonomic classification of bacterial sequences was performed to the genus level and relative abundances were calculated. Microbiome differential abundances were analyzed by principal coordinates analysis. Forty-nine patients with thoracic aortic aneurysms (12 CIA, 14 GCA, 23 non-inflammatory aneurysms) were enrolled. Alpha (P=0.018) and beta (P=0.024) diversity differed between specimens from aortitis cases and controls. There were no significant differences between CIA and GCA (P&gt;0.7). The largest differential abundances between non-infectious aortitis and non-inflammatory control samples included Enterobacteriaceae, Phascolarctobacterium, Acinetobactor, Klebsiella, and Prevotella. Functional metagenomic predictions with PICRUSt revealed enrichment of oxidative phosphorylation and porphyrin metabolism pathways and downregulation of transcription factor pathways in aortitis compared to controls. Microbiomes of aortic samples differed significantly from temporal artery samples from a companion study, in both control and GCA groups (P=0.0002). Thoracic aorta aneurysms, far from being sterile, contain unique microbiomes that differ from those found in temporal arteries. The aorta microbiomes are most similar between aneurysms that were associated with inflammation, GCA, and CIA, but differed from those associated with non-inflammatory etiologies. These findings are promising in that they indicate that microbes may play a role in the pathogenesis of aortitis-associated aneurysms or non-inflammatory aneurysms by promoting or protecting against inflammation. However, we cannot rule out that these changes are related to alterations in tissue substrate that favor secondary changes in microbial communities."	"A role for microorganisms in giant cell arteritis (GCA) has long been suspected. We describe the microbiomes of temporal arteries from patients with GCA and controls. Temporal artery biopsies from patients suspected to have GCA were collected under aseptic conditions and snap-frozen. Fluorescence in situ hybridization (FISH) and long-read 16S rRNA-gene sequencing was used to examine microbiomes of temporal arteries. Taxonomic classification of bacterial sequences was performed to the genus level and relative abundances were calculated. Microbiome differential abundances were analyzed by principal coordinate analysis (PCoA) with comparative Unifrac distances and predicted functional profiling using PICRUSt. Forty-seven patients, including 9 with biopsy-positive GCA, 15 with biopsy-negative GCA and 23 controls without GCA, were enrolled. FISH for bacterial DNA revealed signal in the arterial media. Beta, but not alpha, diversity differed between GCA and control temporal arteries (P = 0.042). Importantly, there were no significant differences between biopsy-positive and biopsy-negative GCA (P &gt; 0.99). The largest differential abundances seen between GCA and non-GCA temporal arteries included Proteobacteria (P), Bifidobacterium (g), Parasutterella (g), and Granulicatella (g) [Log 2-fold change ≥ 4]. Temporal arteries are not sterile, but rather are inhabited by a community of bacteria. We have demonstrated that there are microbiomic differences between GCA and non-GCA temporal arteries, but not between biopsy-positive and biopsy-negative GCA."	NA	"Immune checkpoint-blocking antibodies are actively used to treat multiple cancer types; however, the underlying resistance mechanism remains unclear. In a recent study, Zhao et al. (Nat. Med. 2019;25:462-469) found that somatic PTEN mutations were associated with resistance to immune checkpoint inhibitors by altering immunosuppressive environments in patients with glioblastomas."	NA	"There is a strong genetic association between germline PTEN mutation and autism spectrum disorder (ASD), making Pten-mutant models exemplary for the study of ASD pathophysiology. We developed the Pten<sup>m3m4</sup> mouse, where Pten is largely restricted from the nucleus, which recapitulates patient-like, autism-related phenotypes: behavioral changes, macrocephaly, and white matter abnormalities. This study aimed to investigate the contribution of oligodendrocyte (OL) lineage differentiation and functional changes in myelination to the white matter phenotype. OL lineage differentiation and myelination in Pten<sup>m3m4</sup> mice was studied using immunohistochemical and electron microscopic analyses. We also used primary oligodendrocyte progenitor cells (OPCs) to determine the effect of the Pten<sup>m3m4</sup> mutation on OPC proliferation, migration and maturation. Finally, we assessed the myelinating competency of mutant OLs via co-culture with wildtype dorsal root ganglia (DRG) neurons. The in vivo analyses of Pten<sup>m3m4/m3m4</sup> murine brains showed deficits in proteolipid protein (Plp) trafficking in myelinating OLs. Despite the increased expression of myelin proteins in the brain, myelin deposition was observed to be abnormal, often occurring adjacent to, rather than around axons. Mutant primary OPCs showed enhanced proliferation and migration. Furthermore, mutant OPCs matured precociously, exhibiting aberrant myelination in vitro. Mutant OPCs, when co-cultured with wildtype DRG neurons, showed an inability to properly ensheath axons. Our findings provide evidence that the Pten<sup>m3m4</sup> mutation disrupts the differentiation and myelination programs of developing OLs. OL dysfunction in the Pten<sup>m3m4</sup> model explains the leukodystrophy phenotype, a feature commonly associated with autism, and highlights the growing importance of glial dysfunction in autism pathogenesis."	"The tumor suppressor phosphatase and tensin homolog (PTEN) classically counteracts the PI3K/AKT/mTOR signaling cascade. Germline pathogenic PTEN mutations cause PTEN hamartoma tumor syndrome (PHTS), featuring various benign and malignant tumors, as well as neurodevelopmental disorders such as autism spectrum disorder. Germline and somatic mosaic mutations in genes encoding components of the PI3K/AKT/mTOR pathway downstream of PTEN predispose to syndromes with partially overlapping clinical features, termed the &quot;PTEN-opathies.&quot; Experimental models of PTEN pathway disruption uncover the molecular and cellular processes influencing clinical phenotypic manifestations. Such insights not only teach us about biological mechanisms in states of health and disease, but also enable more accurate gene-informed cancer risk assessment, medical management, and targeted therapeutics. Hence, the PTEN-opathies serve as a prototype for bedside to bench, and back to the bedside, practice of evidence-based precision medicine."	"The ClinGen PTEN Expert Panel was organized by the ClinGen Hereditary Cancer Clinical Domain Working Group to assemble clinicians, researchers, and molecular diagnosticians with PTEN expertise to develop specifications to the 2015 ACMG/AMP Sequence Variant Interpretation Guidelines for PTEN variant interpretation. We describe finalized PTEN-specific variant classification criteria and outcomes from pilot testing of 42 variants with benign/likely benign (BEN/LBEN), pathogenic/likely pathogenic (PATH/LPATH), uncertain significance (VUS), and conflicting (CONF) ClinVar assertions. Utilizing these rules, classifications concordant with ClinVar assertions were achieved for 14/15 (93.3%) BEN/LBEN and 16/16 (100%) PATH/LPATH ClinVar consensus variants for an overall concordance of 96.8% (30/31). The variant where agreement was not reached was a synonymous variant near a splice donor with noncanonical sequence for which in silico models cannot predict the native site. Applying these rules to six VUS and five CONF variants, adding shared internal laboratory data enabled one VUS to be classified as LBEN and two CONF variants to be as classified as PATH and LPATH. This study highlights the benefit of gene-specific criteria and the value of sharing internal laboratory data for variant interpretation. Our PTEN-specific criteria and expertly reviewed assertions should prove helpful for laboratories and others curating PTEN variants."	"KLLN is a target of p53 involved in S-phase cell cycle regulation deemed necessary and sufficient for p53-mediated apoptosis. Germline promoter hypermethylation of KLLN is associated with a cancer-predisposition syndrome, Cowden syndrome. KLLN's DNA-binding ability is associated with transcription regulation and maintenance of genomic stability. Here, we report on KLLN's role in DNA damage response (DDR) mediated through apoptosis in breast cells with and without a cancer phenotype. KLLN expression was upregulated after doxorubicin-induced DNA damage and this upregulation can be abrogated using RNAi-mediated gene silencing. Silencing KLLN after doxorubicin treatment effected DDR shown by decreased γ-H2AX foci and expression, and apoptosis assessed by decreased frequency of apoptotic nuclei and decreased expression of definitive markers of apoptosis. Contrary to expectations, there was no change in cell cycle regulation after KLLN silencing. These results were observed in breast cells with wildtype and mutant p53. At early timepoints after doxorubicin treatment, knocking down KLLN resulted in decreased Ser15-phosphorylation of p53 but not Thr68-phosphorylation of CHK2 or the phosphorylation of upstream regulators such as ATM and ATR. Interestingly, a second pathway for p53 activation was also affected by knockdown of KLLN. After doxorubicin treatment, Thr454-phosphorylation of DBC1, required to inhibit deacetylation of p53 by SIRT1, was decreased and therefore acetylation of p53 was also decreased with KLLN knockdown. Therefore, our observations suggest that KLLN's role in DNA damage-induced apoptosis is likely independent of p53 and is associated with a two-pronged regulation of p53 activation."
+"Erdemir, Ahmet"	"Biomedical Engineering"	30927364	30712373	30514629	30251995	29247253	28836010	26444849	26381404	25844153	24895518	"The goal of this study was to develop a pragmatic approach to build patient-specific models of the peripheral artery that are aware of plaque inhomogeneity. Patient-specific models using element-specific material definition (to understand the role of plaque composition) and homogeneous material definition (to understand the role of artery diameter and thickness) were automatically built from intravascular ultrasound images of three artery segments classified with low, average, and high calcification. The element-specific material models had average surface stiffness values of 0.0735, 0.0826, and 0.0973 MPa/mm, whereas the homogeneous material models had average surface stiffness values of 0.1392, 0.1276, and 0.1922 MPa/mm for low, average, and high calcification, respectively. Localization of peak lumen stiffness and differences in patient-specific average surface stiffness for homogeneous and element-specific models suggest the role of plaque composition on surface stiffness in addition to local arterial diameter and thickness."	"Ultrasound is a popular and affordable imaging modality, but the nature of freehand ultrasound operation leads to unknown applied loads at non-quantifiable angles. The purpose of this paper was to demonstrate an instrumentation strategy for an ultrasound system to measure probe forces and orientation during freehand imaging to characterize the interaction between the probe and soft-tissue as well as enhance repeatability. The instrumentation included a 6-axis load cell, an inertial measurement unit, and an optional sensor for camera-based motion capture. A known method for compensation of the ultrasound probe weight was implemented, and a novel method for temporal synchronization was developed. While load and optical sensing was previously achieved, this paper presents a strategy for potential instrumentation on a variety of ultrasound machines. A key feature was the temporal synchronization, utilizing the electrocardiogram (EKG) feature built-in to the ultrasound. The system was used to perform anatomical imaging of tissue layers of musculoskeletal extremities and imaging during indentation on an in vivo subject and an in vitro specimen. The outcomes of the instrumentation strategy were demonstrated during minimal force and indentation imaging. In short, the system presented robust instrumentation of an existing ultrasound system to fully characterize the probe force, orientation, and optionally its movement during imaging while efficiently synchronizing all data. Researchers may use the instrumentation strategy on any EKG capable ultrasound systems if mechanical characterization of soft tissue or minimization of forces and deformations of tissue during anatomical imaging are desired."	"Musculoskeletal extremities exhibit a multi-layer tissue structure that is composed of skin, fat, and muscle. Body composition and anthropometric measurements have been used to assess health status and build anatomically accurate biomechanical models of the limbs. However, comprehensive datasets inclusive of regional tissue anatomy and response under mechanical manipulation are missing. The goal of this study was to acquire and disseminate anatomical and mechanical data collected on extremities of the general population. An ultrasound system, instrumented with a load transducer, was used for in vivo characterization of skin, fat, and muscle thicknesses in the extremities of 100 subjects at unloaded (minimal force) and loaded (through indentation) states. For each subject, the unloaded and loaded state provided anatomic tissue layer measures and tissue indentation response for 48 and 8 regions, respectively. A publicly available web-based system has been used for data management and dissemination. This comprehensive database will provide the foundation for comparative studies in regional musculoskeletal composition and improve visual and haptic realism for computational models of the limbs."	"The role of computational modeling for biomechanics research and related clinical care will be increasingly prominent. The biomechanics community has been developing computational models routinely for exploration of the mechanics and mechanobiology of diverse biological structures. As a result, a large array of models, data, and discipline-specific simulation software has emerged to support endeavors in computational biomechanics. Sharing computational models and related data and simulation software has first become a utilitarian interest, and now, it is a necessity. Exchange of models, in support of knowledge exchange provided by scholarly publishing, has important implications. Specifically, model sharing can facilitate assessment of reproducibility in computational biomechanics and can provide an opportunity for repurposing and reuse, and a venue for medical training. The community's desire to investigate biological and biomechanical phenomena crossing multiple systems, scales, and physical domains, also motivates sharing of modeling resources as blending of models developed by domain experts will be a required step for comprehensive simulation studies as well as the enhancement of their rigor and reproducibility. The goal of this paper is to understand current perspectives in the biomechanics community for the sharing of computational models and related resources. Opinions on opportunities, challenges, and pathways to model sharing, particularly as part of the scholarly publishing workflow, were sought. A group of journal editors and a handful of investigators active in computational biomechanics were approached to collect short opinion pieces as a part of a larger effort of the IEEE EMBS Computational Biology and the Physiome Technical Committee to address model reproducibility through publications. A synthesis of these opinion pieces indicates that the community recognizes the necessity and usefulness of model sharing. There is a strong will to facilitate model sharing, and there are corresponding initiatives by the scientific journals. Outside the publishing enterprise, infrastructure to facilitate model sharing in biomechanics exists, and simulation software developers are interested in accommodating the community's needs for sharing of modeling resources. Encouragement for the use of standardized markups, concerns related to quality assurance, acknowledgement of increased burden, and importance of stewardship of resources are noted. In the short-term, it is advisable that the community builds upon recent strategies and experiments with new pathways for continued demonstration of model sharing, its promotion, and its utility. Nonetheless, the need for a long-term strategy to unify approaches in sharing computational models and related resources is acknowledged. Development of a sustainable platform supported by a culture of open model sharing will likely evolve through continued and inclusive discussions bringing all stakeholders at the table, e.g., by possibly establishing a consortium."	"Computational studies of chondrocyte mechanics, and cell mechanics in general, have typically been performed using single cell models embedded in an extracellular matrix construct. The assumption of a single cell microstructural model may not capture intercellular interactions or accurately reflect the macroscale mechanics of cartilage when higher cell concentrations are considered, as may be the case in many instances. Hence, the goal of this study was to compare cell-level response of single and eleven cell biphasic finite element models, where the latter provided an anatomically based cellular distribution representative of the actual number of cells for a commonly used [Formula: see text] edge cubic representative volume in the middle zone of cartilage. Single cell representations incorporated a centered single cell model and eleven location-corrected single cell models, the latter to delineate the role of cell placement in the representative volume element. A stress relaxation test at 10% compressive strain was adopted for all simulations. During transient response, volume- averaged chondrocyte mechanics demonstrated marked differences (up to 60% and typically greater than 10%) for the centered single versus the eleven cell models, yet steady-state loading was similar. Cell location played a marked role, due to inhomogeneity of the displacement and fluid pressure fields at the macroscopic scale. When the single cell representation was corrected for cell location, the transient response was consistent, while steady-state differences on the order of 1-4% were realized, which may be attributed to intercellular mechanical interactions. Anatomical representations of the superficial and deep zones, where cells reside in close proximity, may exhibit greater intercellular interactions, but these have yet to be explored."	"Virtual representations of the knee joint can provide clinicians, scientists, and engineers the tools to explore mechanical functions of the knee and its tissue structures in health and disease. Modeling and simulation approaches such as finite element analysis also provide the possibility to understand the influence of surgical procedures and implants on joint stresses and tissue deformations. A large number of knee joint models are described in the biomechanics literature. However, freely accessible, customizable, and easy-to-use models are scarce. Availability of such models can accelerate clinical translation of simulations, where labor-intensive reproduction of model development steps can be avoided. Interested parties can immediately utilize readily available models for scientific discovery and clinical care. Motivated by this gap, this study aims to describe an open source and freely available finite element representation of the tibiofemoral joint, namely Open Knee, which includes the detailed anatomical representation of the joint's major tissue structures and their nonlinear mechanical properties and interactions. Three use cases illustrate customization potential of the model, its predictive capacity, and its scientific and clinical utility: prediction of joint movements during passive flexion, examining the role of meniscectomy on contact mechanics and joint movements, and understanding anterior cruciate ligament mechanics. A summary of scientific and clinically directed studies conducted by other investigators are also provided. The utilization of this open source model by groups other than its developers emphasizes the premise of model sharing as an accelerator of simulation-based medicine. Finally, the imminent need to develop next-generation knee models is noted. These are anticipated to incorporate individualized anatomy and tissue properties supported by specimen-specific joint mechanics data for evaluation, all acquired in vitro from varying age groups and pathological states. "	"Understanding of tibiofemoral joint mechanics at multiple spatial scales is essential for developing effective preventive measures and treatments for both pathology and injury management. Currently, there is a distinct lack of specimen-specific biomechanical data at multiple spatial scales, e.g., joint, tissue, and cell scales. Comprehensive multiscale data may improve the understanding of the relationship between biomechanical and anatomical markers across various scales. Furthermore, specimen-specific multiscale data for the tibiofemoral joint may assist development and validation of specimen-specific computational models that may be useful for more thorough analyses of the biomechanical behavior of the joint. This study describes an aggregation of procedures for acquisition of multiscale anatomical and biomechanical data for the tibiofemoral joint. Magnetic resonance imaging was used to acquire anatomical morphology at the joint scale. A robotic testing system was used to quantify joint level biomechanical response under various loading scenarios. Tissue level material properties were obtained from the same specimen for the femoral and tibial articular cartilage, medial and lateral menisci, anterior and posterior cruciate ligaments, and medial and lateral collateral ligaments. Histology data were also obtained for all tissue types to measure specimen-specific cell scale information, e.g., cellular distribution. This study is the first of its kind to establish a comprehensive multiscale data set for a musculoskeletal joint and the presented data collection approach can be used as a general template to guide acquisition of specimen-specific comprehensive multiscale data for musculoskeletal joints. "	"Understanding the mechanical environment of articular cartilage and chondrocytes is of the utmost importance in evaluating tissue damage which is often related to failure of the fibre architecture and mechanical injury to the cells. This knowledge also has significant implications for understanding the mechanobiological response in healthy and diseased cartilage and can drive the development of intervention strategies, ranging from the design of tissue-engineered constructs to the establishment of rehabilitation protocols. Spanning multiple spatial scales, a wide range of biomechanical factors dictate this mechanical environment. Computational modelling and simulation provide descriptive and predictive tools to identify multiscale interactions, and can lead towards a greater comprehension of healthy and diseased cartilage function, possibly in an individualized manner. Cartilage and chondrocyte mechanics can be examined in silico, through post-processing or feed-forward approaches. First, joint-tissue level simulations, typically using the finite-element method, solve boundary value problems representing the joint articulation and underlying tissue, which can differentiate the role of compartmental joint loading in cartilage contact mechanics and macroscale cartilage field mechanics. Subsequently, tissue-cell scale simulations, driven by the macroscale cartilage mechanical field information, can predict chondrocyte deformation metrics along with the mechanics of the surrounding pericellular and extracellular matrices. A high-throughput modelling and simulation framework is necessary to develop models representative of regional and population-wide variations in cartilage and chondrocyte anatomy and mechanical properties, and to conduct large-scale analysis accommodating a multitude of loading scenarios. However, realization of such a framework is a daunting task, with technical difficulties hindering the processes of model development, scale coupling, simulation and interpretation of the results. This study aims to summarize various strategies to address the technical challenges of post-processing-based simulations of cartilage and chondrocyte mechanics with the ultimate goal of establishing the foundations of a high-throughput multiscale analysis framework. At the joint-tissue scale, rapid development of regional models of articular contact is possible by automating the process of generating parametric representations of cartilage boundaries and depth-dependent zonal delineation with associated constitutive relationships. At the tissue-cell scale, models descriptive of multicellular and fibrillar architecture of cartilage zones can also be generated in an automated fashion. Through post-processing, scripts can extract biphasic mechanical metrics at a desired point in the cartilage to assign loading and boundary conditions to models at the lower spatial scale of cells. Cell deformation metrics can be extracted from simulation results to provide a simplified description of individual chondrocyte responses. Simulations at the tissue-cell scale can be parallelized owing to the loosely coupled nature of the feed-forward approach. Verification studies illustrated the necessity of a second-order data passing scheme between scales and evaluated the role that the microscale representative volume size plays in appropriately predicting the mechanical response of the chondrocytes. The tools summarized in this study collectively provide a framework for high-throughput exploration of cartilage biomechanics, which includes minimally supervised model generation, and prediction of multiscale biomechanical metrics across a range of spatial scales, from joint regions and cartilage zones, down to that of the chondrocytes. "	NA	NA
+"Erzurum, Serpil"	"Inflammation and Immunity"	31242023	28814664	28797075	30619887	28018974	27294365	27130529	27027950	26810221	26141573	"The β-adrenergic receptor (βAR) exists in an equilibrium of inactive and active conformational states, which shifts in response to different ligands and results in downstream signaling. In addition to cAMP, βAR signals to hypoxia-inducible factor 1 (HIF-1). We hypothesized that a βAR-active conformation (R**) that leads to HIF-1 is separable from the cAMP-activating conformation (R*) and that pulmonary arterial hypertension (PAH) patients with HIF-biased conformations would not respond to a cAMP agonist. We compared two cAMP agonists, isoproterenol and salbutamol, in vitro. Isoproterenol increased cAMP and HIF-1 activity, while salbutamol increased cAMP and reduced HIF-1. Hypoxia blunted agonist-stimulated cAMP, consistent with receptor equilibrium shifting toward HIF-activating conformations. Similarly, isoproterenol increased HIF-1 and erythropoiesis in mice, while salbutamol decreased erythropoiesis. βAR overexpression in cells increased glycolysis, which was blunted by HIF-1 inhibitors, suggesting increased βAR leads to increased hypoxia-metabolic effects. Because PAH is also characterized by HIF-related glycolytic shift, we dichotomized PAH patients in the Pulmonary Arterial Hypertension Treatment with Carvedilol for Heart Failure trial (NCT01586156) based on right ventricular (RV) glucose uptake to evaluate βAR ligands. Patients with high glucose uptake had more severe disease than those with low uptake. cAMP increased in response to isoproterenol in mononuclear cells from low-uptake patients but not in high-uptake patients' cells. When patients were treated with carvedilol for 1 wk, the low-uptake group decreased RV systolic pressures and pulmonary vascular resistance, but high-uptake patients had no physiologic responses. The findings expand the paradigm of βAR activation and uncover a novel PAH subtype that might benefit from β-blockers."	"Right-sided heart failure is the leading cause of death in pulmonary arterial hypertension (PAH). Similar to left heart failure, sympathetic overactivation and β-adrenoreceptor (βAR) abnormalities are found in PAH. Based on successful therapy of left heart failure with β-blockade, the safety and benefits of the nonselective β-blocker/vasodilator carvedilol were evaluated in PAH. PAH Treatment with Carvedilol for Heart Failure (PAHTCH) is a single-center, double-blind, randomized, controlled trial. Following 1-week run-in, 30 participants were randomized to 1 of 3 arms for 24 weeks: placebo, low-fixed-dose, or dose-escalating carvedilol. Outcomes included clinical measures and mechanistic biomarkers. Decreases in heart rate and blood pressure with carvedilol were well tolerated; heart rate correlated with carvedilol dose. Carvedilol-treated groups had no decrease in exercise capacity measured by 6-minute walk, but had lower heart rates at peak and after exercise, and faster heart rate recovery. Dose-escalating carvedilol was associated with reduction in right ventricular (RV) glycolytic rate and increase in βAR levels. There was no evidence of RV functional deterioration; rather, cardiac output was maintained. Carvedilol is likely safe in PAH over 6 months of therapy and has clinical and mechanistic benefits associated with improved outcomes. The data provide support for longer and larger studies to establish guidelines for use of β-blockers in PAH. ClinicalTrials.gov NCT01586156FUNDING. This project was supported by NIH R01HL115008 and R01HL60917 and in part by the National Center for Advancing Translational Sciences, UL1TR000439."	"Arginine metabolism via inducible nitric oxide synthase (iNOS) and arginase 2 (ARG2) is higher in asthmatics than in healthy individuals. We hypothesized that a sub-phenotype of asthma might be defined by the magnitude of arginine metabolism categorized on the basis of high and low fraction of exhaled nitric oxide (FENO). To test this hypothesis, asthmatics (n = 52) were compared to healthy controls (n = 51) for levels of FENO, serum arginase activity, and airway epithelial expression of iNOS and ARG2 proteins, in relation to clinical parameters of asthma inflammation and airway reactivity. In parallel, bronchial epithelial cells were evaluated for metabolic effects of iNOS and ARG2 expression in vitro. Asthmatics with high FENO (≥ 35 ppb; 44% of asthmatics) had higher expression of iNOS (P = 0.04) and ARG2 (P = 0.05) in the airway, indicating FENO is a marker of the high arginine metabolic endotype. High FENO asthmatics had the lowest FEV1% (P &lt; 0.001), FEV1/FVC (P = 0.0002) and PC20 (P &lt; 0.001) as compared to low FENO asthmatics or healthy controls. Low FENO asthmatics had near normal iNOS and ARG2 expression (both P &gt; 0.05), and significantly higher PC20 (P &lt; 0.001) as compared to high FENO asthmatics. In vitro studies to evaluate metabolic effects showed that iNOS overexpression and iNOS+ARG2 co-expression in a human bronchial epithelial cell line led to greater reliance on glycolysis with higher rate of pyruvate going to lactate. The high FENO phenotype represents a large portion of the asthma population, and is typified by greater arginine metabolism and more severe and reactive asthma."	"Background: The therapeutic benefits of β-blockers are well established in left heart failure. The Pulmonary Arterial Hypertension Treatment with Carvedilol for Heart Failure [PAHTCH] study showed safety and possible benefit of carvedilol in pulmonary arterial hypertension (PAH) associated right heart failure over 6 months. This study aims at evaluating the short-term cardiovascular effects and early mechanistic biomarkers of carvedilol therapy. Methods: Thirty patients with pulmonary hypertension (PH) received low dose carvedilol (3.125 mg twice daily) for 1 week prior to randomization to placebo, low-dose, or dose-escalating carvedilol therapy. Echocardiography was performed at baseline and 1 week. Exercise capacity was assessed by 6 min walk distance (6MWD). The L-arginine/nitric oxide pathway and other biological markers of endothelial function were measured. Results: All participants tolerated 1 week of carvedilol without adverse effects. After 1 week of carvedilol, 6MWD and heart rate at peak exercise did not vary (both p &gt; 0.1). Heart rate at rest and 1 min post walk dropped significantly (both p &lt; 0.05) with a trend for increase in heart rate recovery (p = 0.08). Right ventricular systolic pressure (RVSP) decreased by an average of 13 mmHg (p = 0.002). Patients who had a decrease in RVSP of more than 10 mm Hg were defined as responders (n = 17), and those with a lesser drop as non-responders (n = 13). Responders had a significant drop in pulmonary vascular resistance (PVR) after 1 week of carvedilol (p = 0.004). In addition, responders had a greater decrease in heart rate at rest and 1 min post walk compared to non-responders (both p &lt; 0.05). Responders had higher plasma arginine and global bioavailability of arginine at baseline compared to non-responders (p = 0.03 and p = 0.05, respectively). After 1 week of carvedilol, responders had greater increase in urinary nitrate (p = 0.04). Responders treated with carvedilol had a sustained drop in RVSP and PVR after 6 months of carvedilol with no change in cardiac output. Conclusions: Low-dose carvedilol for 1 week can potentially identify a PH responder phenotype that may benefit from β-blockers that is associated with less endothelial dysfunction. Clinical Trial Registration: http://www.clinicaltrials.gov. identifier: NCT01586156."	"Life-sustaining responses to low oxygen, or hypoxia, depend on signal transduction by HIFs, but the underlying mechanisms by which cells sense hypoxia are not completely understood. Based on prior studies suggesting a link between the β-adrenergic receptor (β-AR) and hypoxia responses, we hypothesized that the β-AR mediates hypoxia sensing and is necessary for HIF-1α accumulation. Beta blocker treatment of mice suppressed hypoxia induction of renal HIF-1α accumulation, erythropoietin production, and erythropoiesis in vivo. Likewise, beta blocker treatment of primary human endothelial cells in vitro decreased hypoxia-mediated HIF-1α accumulation and binding to target genes and the downstream hypoxia-inducible gene expression. In mechanistic studies, cAMP-activated PKA and/or GPCR kinases (GRK), which both participate in β-AR signal transduction, were investigated. Direct activation of cAMP/PKA pathways did not induce HIF-1α accumulation, and inhibition of PKA did not blunt HIF-1α induction by hypoxia. In contrast, pharmacological inhibition of GRK, or expression of a GRK phosphorylation-deficient β-AR mutant in cells, blocked hypoxia-mediated HIF-1α accumulation. Mass spectrometry-based quantitative analyses revealed a hypoxia-mediated β-AR phosphorylation barcode that was different from the classical agonist phosphorylation barcode. These findings indicate that the β-AR is fundamental to the molecular and physiological responses to hypoxia."	"Worldwide, asthma is a leading cause of morbidity, mortality and economic burden, with significant gender and racial disparities. However, little attention has been given to the independent role of age on lifetime asthma severity and hospitalization. We aimed to assess the effect of age, gender, race and ethnicity on indicators of asthma severity including asthma related hospitalization, mortality, hospital cost, and the rate of respiratory failure. We analyzed the 2011 and 2012 Healthcare Cost and Utilization Project- National Inpatient Sample (NIS). We validated and extended those results using the National Heart, Lung, and Blood Institute-Severe Asthma Research Program (SARP; 2002-2011) database. Severe asthma was prospectively defined using the stringent American Thoracic Society (ATS) definition. Hospitalization for asthma was reported in 372,685 encounters in 2012 and 368,528 in 2011. The yearly aggregate cost exceeded $2 billion. There were distinct bimodal distributions for hospitalization age, with an initial peak at 5 years and a second at 50 years. Likewise, this bimodal age distribution of patients with severe asthma was identified using SARP. Males comprised the majority of individuals in the first peak, but women in the second. Aggregate hospital cost mirrored the bimodal peak distribution. The probability of respiratory failure increased with age until the age of 60, after which it continued to increase in men, but not in women. Severe asthma is primarily a disease of young boys and middle age women. Greater understanding of the biology of lung aging and influence of sex hormones will allow us to plan for targeted interventions during these times in order to reduce the personal and societal burdens of asthma."	"The impairment of vasodilator nitric oxide (NO) production is well accepted as a typical marker of endothelial dysfunction in vascular diseases, including in the pathophysiology of pulmonary arterial hypertension (PAH), but the molecular mechanisms accounting for loss of NO production are unknown. We hypothesized that low NO production by pulmonary arterial endothelial cells in PAH is due to inactivation of NO synthase (eNOS) by aberrant phosphorylation of the protein. To test the hypothesis, we evaluated eNOS levels, dimerization, and phosphorylation in the vascular endothelial cells and lungs of patients with PAH compared with controls. In mechanistic studies, eNOS activity in endothelial cells in PAH lungs was found to be inhibited due to phosphorylation at T495. Evidence pointed to greater phosphorylation/activation of protein kinase C (PKC) α and its greater association with eNOS as the source of greater phosphorylation at T495. The presence of greater amounts of pT495-eNOS in plexiform lesions in lungs of patients with PAH confirmed the pathobiological mechanism in vivo. Transfection of the activating mutation of eNOS (T495A/S1177D) restored NO production in PAH cells. Pharmacological blockade of PKC activity by β-blocker also restored NO formation by PAH cells, identifying one mechanism by which β-blockers may benefit PAH and cardiovascular diseases through recovery of endothelial functions."	"Research over the past 30 years has identified mechanistic biochemical oxidation pathways that contribute to asthma pathophysiology. Redox imbalance is present in asthma and strongly linked to the pathobiology of airflow obstruction, airway hyperreactivity, and remodeling. High levels of reactive oxygen species, reactive nitrogen species, and oxidatively modified proteins in the lung, blood, and urine provide conclusive evidence for pathologic oxidation in asthma. Concurrent loss of antioxidants, such as superoxide dismutases and catalase, is attributed to redox modifications of the enzymes, and further amplifies the oxidative injury in the airway. The presence of high levels of urine bromotyrosine, an oxidation product of eosinophil peroxidase, identifies activated eosinophils, and shows promise for use as a noninvasive biomarker of poor asthma control. "	"Angiogenesis is closely linked to and precedes eosinophilic infiltration in asthma. Eosinophils are recruited into the airway by chemoattractant eotaxins, which are expressed by endothelial cells, smooth muscles cells, epithelial cells, and hematopoietic cells. We hypothesized that bone marrow-derived proangiogenic progenitor cells that contain eotaxins contribute to the initiation of angiogenesis and inflammation in asthma. Whole-lung allergen challenge of atopic asthma patients revealed vascular activation occurs within hours of challenge and before airway inflammation. The eotaxin receptor CCR3 was expressed at high levels on submucosal endothelial cells in patients and a murine model of asthma. Ex vivo exposure of murine endothelial cells to eotaxins induced migration and angiogenesis. In mechanistic studies, wild-type mice transplanted with eotaxin-1/2-deficient bone marrow had markedly less angiogenesis and inflammation in an atopic asthma model, whereas adoptive transfer of proangiogenic progenitor cells from wild-type mice in an atopic asthma model into the eotaxin-1/2-deficient mice led to angiogenesis and airway inflammation. The findings indicate that Th2-promoting hematopoietic progenitor cells are rapidly recruited to the lung upon allergen exposure and release eotaxins that coordinately activate endothelial cells, angiogenesis, and airway inflammation. "	"Gender differences in asthma incidence, prevalence and severity have been reported worldwide. After puberty, asthma becomes more prevalent and severe in women, and is highest in women with early menarche or with multiple gestations, suggesting a role for sex hormones in asthma genesis. However, the impact of sex hormones on the pathophysiology of asthma is confounded by and difficult to differentiate from age, obesity, atopy, and other gender associated environmental exposures. There are also gender discrepancies in the perception of asthma symptoms. Understanding gender differences in asthma is important to provide effective education and personalized management plans for asthmatics across the lifecourse. "
+"Fairchild, Robert"	"Inflammation and Immunity"	30617225	30503624	30372587	29467328	27165816	27083272	26856697	26575854	25731734	25202838	"Contact hypersensitivity (CHS) is a CD8 T cell-mediated response to hapten skin sensitization and challenge. Sensitization of wild-type (WT) mice induces hapten-reactive effector CD8 T cells producing IFN-γ and IL-17- and IL-4-producing CD4 T cells that cannot mediate CHS. Although CXCR2-dependent Ly6G<sup>+</sup> (neutrophil) cell recruitment into hapten-challenged skin is required to direct effector CD8 T cell infiltration into the challenge site to elicit CHS, 2,4-dinitrofluorobenezene (DNFB) sensitization of CXCR2<sup>-/-</sup> mice and neutrophil-depleted WT mice induced both hapten-reactive CD4 and CD8 T cells producing IFN-γ and IL-17. CD4 T cell-mediated CHS responses were not generated during DNFB sensitization of neutrophil-depleted WT mice treated with anti-IL-12 mAb or neutrophil-depleted IL-12<sup>-/-</sup> mice. Neutrophil depletion during DNFB sensitization of WT mice markedly increased IL-12-producing hapten-primed dendritic cell numbers in the skin-draining lymph nodes. Sensitization of mice lacking the neutrophil serine protease cathepsin G (CG)-induced hapten-reactive CD4 and CD8 T cells producing IFN-γ and IL-17 with elevated and elongated CHS responses to DNFB challenge. Induction of CHS effector CD4 T cells producing IFN-γ in neutrophil-depleted WT mice was eliminated by s.c. injection of active, but not inactivated, CG during sensitization. Thus, hapten skin sensitization induces neutrophil release of CG that systemically inhibits hapten-presenting dendritic cell production of IL-12 and the development of hapten-reactive CD4 T cells to IFN-γ-producing CHS effector cells."	"Antibody mediated rejection (ABMR) is a major barrier to long-term kidney graft survival. Dysregulated donor-specific antibody (DSA) responses are induced in CCR5-deficient mice transplanted with complete major histocompatibility complex (MHC)-mismatched kidney allografts, and natural killer (NK) cells play a critical role in graft injury and rejection. We investigated the consequence of high DSA titers on kidney graft outcomes in the presence or absence of NK cell activation within the graft. Equivalent serum DSA titers were induced in CCR5-deficient B6 recipients of complete MHC mismatched A/J allografts and semi-allogeneic (A/J x B6) F1 kidney grafts, peaking by day 14 post-transplant. A/J allografts were rejected between days 16-28, whereas B6 isografts and semi-allogeneic grafts survived past day 65. On day 7 post-transplant, NK cell infiltration into A/J allografts was composed of distinct populations expressing high and low levels of the surface antigen NK1.1, with NK1.1low cells reflecting the highest level of activation. These NK cell populations increased with time post-transplant. In contrast, NK cell infiltration into semi-allogeneic grafts on day 7 was composed entirely of NK1.1high cells that decreased thereafter. On day 65 post-transplant the semi-allogeneic grafts had severe interstitial fibrosis, glomerulopathy, and arteriopathy, accompanied by expression of pro-fibrogenic genes. These results suggest that NK cells synergize with DSA to cause acute kidney allograft rejection, whereas high DSA titers in the absence of NK cell activation cannot provoke acute ABMR but instead induce the indolent development of interstitial fibrosis and glomerular injury that leads to late graft failure."	"Recipient endogenous memory CD8 T cells expressing reactivity to donor class I MHC infiltrate MHC-mismatched cardiac allografts within 24 hours after reperfusion and express effector functions mediating graft injury. The current study tested the efficacy of Very Late Antigen-4 (VLA-4) blockade to inhibit endogenous memory CD8 T cell infiltration into cardiac allografts and attenuate early posttransplant inflammation. Peritransplant anti-VLA-4 mAb given to C57BL6 (H-2<sup>b</sup> ) recipients of AJ (H-2<sup>a</sup> ) heart allografts completely inhibited endogenous memory CD4 and CD8 T cell infiltration with significant decrease in macrophage, but not neutrophil, infiltration into allografts subjected to either minimal or prolonged cold ischemic storage (CIS) prior to transplant, reduced intra-allograft IFN-γ-induced gene expression and prolonged survival of allografts subjected to prolonged CIS in CTLA-4Ig treated recipients. Anti-VLA-4 mAb also inhibited priming of donor-specific T cells producing IFN-γ until at least day 7 posttransplant. Peritransplant anti-VLA plus anti-CD154 mAb treatment similarly prolonged survival of allografts subjected to minimal or increased CIS prior to transplant. Overall, these data indicate that peritransplant anti-VLA-4 mAb inhibits early infiltration memory CD8 T cell infiltration into allografts with a marked reduction in early graft inflammation suggesting an effective strategy to attenuate negative effects of heterologous alloimmunity in recipients of higher risk grafts."	"Recipient endogenous memory T cells with donor reactivity pose an important barrier to successful transplantation and costimulatory blockade-induced graft tolerance. Longer ischemic storage times prior to organ transplantation increase early posttransplant inflammation and negatively impact early graft function and long-term graft outcome. Little is known about the mechanisms enhancing endogenous memory T cell activation to mediate tissue injury within the increased inflammatory environment of allografts subjected to prolonged cold ischemic storage (CIS). Endogenous memory CD4+ and CD8+ T cell activation is markedly increased within complete MHC-mismatched cardiac allografts subjected to prolonged versus minimal CIS, and the memory CD8+ T cells directly mediate CTLA-4Ig-resistant allograft rejection. Memory CD8+ T cell activation within allografts subjected to prolonged CIS requires memory CD4+ T cell stimulation of graft DCs to produce p40 homodimers, but not IL-12 p40/p35 heterodimers. Targeting p40 abrogates memory CD8+ T cell proliferation within the allografts and their ability to mediate CTLA-4Ig-resistant allograft rejection. These findings indicate a critical role for memory CD4+ T cell-graft DC interactions to increase the intensity of endogenous memory CD8+ T cell activation needed to mediate rejection of higher-risk allografts subjected to increased CIS."	"While the incidence of antibody-mediated kidney graft rejection has increased, the key cellular and molecular participants underlying this graft injury remain unclear. Rejection of kidney allografts in mice lacking the chemokine receptor CCR5 is dependent on production of donor-specific antibody. Here we determine if cells expressing cytotoxic function contributed to antibody-mediated kidney allograft rejection in these recipients. Wild-type C57BL/6, B6.CCR5(-/-), and B6.CD8(-/-)/CCR5(-/-) mice were transplanted with complete MHC-mismatched A/J kidney grafts, and intragraft inflammatory components were followed to rejection. B6.CCR5(-/-) and B6.CD8(-/-)/CCR5(-/-) recipients rejected kidney allografts by day 35, whereas 65% of allografts in wild-type recipients survived past day 80 post-transplant. Rejected allografts in wild-type C57BL/6, B6.CCR5(-/-), and B6.CD8(-/-)/CCR5(-/-) recipients expressed high levels of VCAM-1 and MMP7 mRNA that was associated with high serum titers of donor-specific antibody. High levels of perforin and granzyme B mRNA expression peaked on day 6 post-transplant in allografts in all recipients, but were absent in isografts. Depletion of natural killer cells in B6.CD8(-/-)/CCR5(-/-) recipients reduced this expression to background levels and promoted the long-term survival of 40% of the kidney allografts. Thus, natural killer cells have a role in increased inflammation during antibody-mediated kidney allograft injury and in rejection of the grafts."	"Targeted deletion of the sirtuin-1, Sirt-1, gene in mouse T cells results in enhanced CD4(+) T regulatory cell function. When these mice are used as kidney allograft recipients, this deletion confers marked improvements in allograft function and survival with the development of donor-specific nonresponsiveness. Similar kidney allograft outcomes are produced in wild-type recipients treated with pharmacologic Sirt-1 inhibitors. These studies suggest a novel strategy for enhancing the immunosuppressive function of Tregs to improve graft outcomes in kidney transplant patients. "	"Reperfusion of organ allografts induces a potent inflammatory response that directs rapid memory T cell, neutrophil, and macrophage graft infiltration and their activation to express functions mediating graft tissue injury. The role of cardiac allograft IL-1 receptor (IL-1R) signaling in this early inflammation and the downstream primary alloimmune response was investigated. When compared with complete MHC-mismatched wild-type cardiac allografts, IL-1R(-/-) allografts had marked decreases in endogenous memory CD8 T cell and neutrophil infiltration and expression of proinflammatory mediators at early times after transplant, whereas endogenous memory CD4 T cell and macrophage infiltration was not decreased. IL-1R(-/-) allograft recipients also had marked decreases in de novo donor-reactive CD8, but not CD4, T cell development to IFN-γ-producing cells. CD8 T cell-mediated rejection of IL-1R(-/-) cardiac allografts took 3 wk longer than wild-type allografts. Cardiac allografts from reciprocal bone marrow reconstituted IL-1R(-/-)/wild-type chimeric donors indicated that IL-1R signaling on graft nonhematopoietic-derived, but not bone marrow-derived, cells is required for the potent donor-reactive memory and primary CD8 T cell alloimmune responses observed in response to wild-type allografts. These studies implicate IL-1R-mediated signals by allograft parenchymal cells in generating the stimuli-provoking development and elicitation of optimal alloimmune responses to the grafts. "	"Antibody-mediated rejection is responsible for up to half of acute rejection episodes in kidney transplant patients and more than half of late graft failures. Antibodies cause acute graft abnormalities that are distinct from T cell-mediated rejection and at later times posttransplant, a distinct pathologic lesion is associated with capillary basement membrane multilayering and glomerulopathy. Despite the importance of donor-reactive antibodies as the leading cause of kidney graft failure, mechanisms underlying antibody-mediated acute and chronic kidney graft injury are poorly understood. Here, we review recent insights provided from clinical studies as well as from animal models that may help to identify new targets for therapy. Studies of biopsies from kidney grafts in patients with donor-specific antibody versus those without have utilized analysis of pathologic lesions and gene expression to identify the distinct characteristics of antibody-mediated rejection. These analyses have indicated the presence of natural killer cells and their activation during antibody-mediated rejection. The impact of studies of antibody-mediated allograft injury in animal models have lagged behind these clinical studies, but have been useful in testing the activation of innate immune components within allografts in the presence of donor-specific antibodies. Most insights into processes of antibody-mediated rejection of kidney grafts have come from carefully designed clinical studies. However, several new mouse models of antibody-mediated kidney allograft rejection may replicate the abnormalities observed in clinical kidney grafts and may be useful in directly testing mechanisms that underlie acute and chronic antibody-mediated graft injury."	"We have reported that B6.CCR5(-/-) mice reject renal allografts with high serum donor-specific antibody (DSA) titers and marked C4d deposition in grafts, features consistent with antibody-mediated rejection (AMR). B6.huCD20/CCR5(-/-) mice, where human CD20 expression is restricted to B cells, rejected A/J renal allografts by day 26 posttransplant with DSA first detected in serum on day 5 posttransplant and increased thereafter. Recipient treatment with anti-huCD20 mAb prior to the transplant and weekly up to 7 weeks posttransplant promoted long-term allograft survival (&gt;100 days) with low DSA titers. To investigate the effect of B cell depletion at the time serum DSA was first detected, recipients were treated with anti-huCD20 mAb on days 5, 8, and 12 posttransplant. This regimen significantly reduced DSA titers and graft inflammation on day 15 posttransplant and prolonged allograft survival &gt;60 days. However, DSA returned to the titers observed in control treated recipients by day 30 posttransplant and histological analyses on day 60 posttransplant indicated severe interstitial fibrosis. These results indicate that anti-huCD20 mAb had the greatest effect as a prophylactic treatment and that the distinct kinetics of DSA responses accounts for acute renal allograft failure versus the development of fibrosis. "	"Rapid progress in molecular technology has allowed development of numerous molecular tools to help the clinician to evaluate graft status in kidney transplant patients. This review highlights recent findings, describing the use of molecular approaches to monitor, diagnose, and predict alloimmune-mediated injury in kidney grafts. Both previously identified and newly discovered molecular markers of immune injury have been studied and validated in large multicenter studies. Recent data indicate that measuring specific gene transcripts in noninvasive samples, such as urine or peripheral blood, can identify the occurrence of acute rejection and differentiate this immune-mediated injury from other causes of graft dysfunction. Serial monitoring of urine in stable renal transplant patients may detect the onset of rejection before development of graft dysfunction. Moreover, combining gene expression analysis with conventional histopathologic assessment of grafts can enhance the accuracy of diagnosis and may also help predict graft outcomes. Measuring specific gene transcription in noninvasive clinical samples has the potential to become an important and standard tool to monitor alloimmune-mediated injury in kidney transplant recipients. Prospective studies are ongoing to validate these findings for use of these approaches in clinical settings."
+"Fiocchi, Claudio"	"Inflammation and Immunity"	30295747	29562278	29018271	26627550	25827798	25531360	24486052	24030223	23295686	23149220	"Carcinoembryonic antigen-related cell adhesion molecule 1 (CEACAM1) displays multiple activities, among which pathogen binding and angiogenesis are particularly prominent. These same functions are also exerted by Toll- and NOD-like receptors (TLRs and NLRs), which are critical mediators of innate immune responses. We investigated whether a functional inter-relationship exists between CEACAM1 and TLRs and NLRs and its potential impact on induction of intestinal angiogenesis. This hypothesis was tested using human intestinal microvascular endothelial cells, a unique cell population exposed to microbial products under physiological and pathological conditions. The results show that activation of TLR2/4, TLR4, NOD1, and NOD2 by specific bacterial ligands selectively and differentially upregulates the levels of cellular and soluble CEACAM1 produced by intestinal microvascular endothelial cells. The results also show that CEACAM1 regulates the migration, transmigration, and tube formation of these endothelial cells and mediates vessel sprouting induced by specific TLR and NLR bacterial ligands. Combined, these results demonstrate a close and reciprocal regulatory interaction between CEACAM1 and bacterial products in mediating multiple functions essential to new vessel formation in the gut mucosa. A coordinated and reciprocal interaction of CEACAM1 and microbiota-derived factors is necessary to optimize angiogenesis in the gut mucosa. This suggests that a coordination of endogenous and exogenous innate immune responses is necessary to promote intestinal angiogenesis under physiological and inflammatory conditions such as inflammatory bowel disease."	"Despite unquestionable progress in the management of inflammatory bowel disease (IBD) and the much improved clinical results achievable today in Crohn's disease (CD) and ulcerative colitis (UC) patients, the overall therapeutic outcome remains far from optimal. The main reason of this partial success is that all current medications only block individual components of a highly complex disease process that results from the integration of multiple and incompletely identified pathogenic components. Thus, if further progress is to be achieved in IBD therapeutics and we want to move from the current success rate to nearly 100%, bold new ideas must be entertained and new approaches put into practice. Both are necessary because in IBD we are dealing with a prototypical complex disease superimposed to the background of the extreme biological diversity of humans in response to injury. An unresolved challenge mandates the adoption of new solutions specifically designed to address the unique features of that challenge. Translated to a disease condition, and IBD in particular, the unresolved challenges of CD and UC demand bold new thinking leading to the conception and implementation of totally innovative therapies. In this article, we propose that one such new thinking is the notion of network medicine for IBD, and that the development of brand new treatments should be based on the identification of the molecular structure of the IBD interactome with the purpose of targeting its controlling elements (central nodes or hubs). This specific targeting of the underlying molecular disease modules will lead to the disruption of the IBD interactome and foster the resolution of intestinal inflammatory process."	"A number of environmental factors have been associated with the development of IBD. Alteration of the gut microbiota, or dysbiosis, is closely linked to initiation or progression of IBD, but whether dysbiosis is a primary or secondary event is unclear. Nevertheless, early-life events such as birth, breastfeeding and exposure to antibiotics, as well as later childhood events, are considered potential risk factors for IBD. Air pollution, a consequence of the progressive contamination of the environment by countless compounds, is another factor associated with IBD, as particulate matter or other components can alter the host's mucosal defences and trigger immune responses. Hypoxia associated with high altitude is also a factor under investigation as a potential new trigger of IBD flares. A key issue is how to translate environmental factors into mechanisms of IBD, and systems biology is increasingly recognized as a strategic tool to unravel the molecular alterations leading to IBD. Environmental factors add a substantial level of complexity to the understanding of IBD pathogenesis but also promote the fundamental notion that complex diseases such as IBD require complex therapies that go well beyond the current single-agent treatment approach. This Review describes the current conceptualization, evidence, progress and direction surrounding the association of environmental factors with IBD."	"IBD is a chronic inflammatory condition of the gastrointestinal tract encompassing two main clinical entities: Crohn's disease and ulcerative colitis. Although Crohn's disease and ulcerative colitis have historically been studied together because they share common features (such as symptoms, structural damage and therapy), it is now clear that they represent two distinct pathophysiological entities. Both Crohn's disease and ulcerative colitis are associated with multiple pathogenic factors including environmental changes, an array of susceptibility gene variants, a qualitatively and quantitatively abnormal gut microbiota and a broadly dysregulated immune response. In spite of this realization and the identification of seemingly pertinent environmental, genetic, microbial and immune factors, a full understanding of IBD pathogenesis is still out of reach and, consequently, treatment is far from optimal. An important reason for this unsatisfactory situation is the currently limited comprehension of what are the truly relevant components of IBD immunopathogenesis. This article will comprehensively review current knowledge of the classic immune components and will expand the concept of IBD immunopathogenesis to include various cells, mediators and pathways that have not been traditionally associated with disease mechanisms, but that profoundly affect the overall intestinal inflammatory process."	"Inflammatory bowel disease (IBD) is presently one of the most investigated human disorders. Expansion of knowledge of its pathophysiology has helped in developing novel medications to combat gut inflammation with a considerably degree of success. Despite this progress, much more remains to be done in regard to gaining a more profound understanding of IBD pathogenesis, detecting inflammation before it clinically manifests, implementing lifestyle modifications, and developing agents that can modify the natural course of the disease. One of the limitations to achieve these goals is the lack of integration of the major components of IBD pathogenesis, that is the exposome, the genome, the gut microbiome, and the immunome. An &quot;IBD integrome&quot; approach that takes advantage of all functional information derived from the detailed investigation of each single pathogenic component through the use of systems biology may offer the solution to understand IBD and cure it. "	"The complexity of IBD is well recognized as are the putative four major components of its pathogenesis, i.e. environment, genetic makeup, gut microbiota and mucosal immune response. Each of these components is extremely complex on its own, and at present should be more appropriately defined by the terms 'exposome', 'genome', 'microbiome' and 'immunome', respectively, based on the 'ome' suffix that refers to a totality of some sort. None of these 'omes' is apparently capable of causing IBD by itself; it is instead the intricate and reciprocal interaction among them, through the so-called 'IBD interactome', that results in the emergence of IBD, or more appropriately the 'IBD integrome'. To deal with and understand such overwhelming biological complexity, new approaches and tools are needed, and these are represented by 'omics', defined as the study of related sets of biological molecules in a comprehensive fashion, such as genomics, transcriptomics, proteomics, metabolomics, and so on. Numerous bioinformatics-based tools are available to explore and take advantage of the massive amount of information that can be generated by the analysis of the various omes and their interactions, aiming at identifying the molecular interactome underlying any particular status of health and disease. These novel approaches are fully applicable to IBD and allow us to achieve the ultimate goal of developing and applying personalized medicine and far more effective therapies to individual patients with Crohn's disease and ulcerative colitis. For the practicing gastroenterologist, an omics-based delivery of healthcare may be intimidating, but it must be accepted and implemented if he or she is to provide the best possible care to IBD patients."	"Patients with eosinophilic esophagitis (EoE) often become dysphagic from the combination of organ fibrosis and motor abnormalities. We investigated mechanisms of dysphagia, assessing the response of human esophageal fibroblasts (HEFs), human esophageal muscle cells (HEMCs), and esophageal muscle strips to eosinophil-derived products. Biopsy specimens were collected via endoscopy from the upper, middle, and lower thirds of the esophagus of 18 patients with EoE and 21 individuals undergoing endoscopy for other reasons (controls). Primary cultures of esophageal fibroblasts and muscle cells were derived from 12 freshly resected human esophagectomy specimens. Eosinophil distribution was investigated by histologic analyses of full-thickness esophageal tissue. Active secretion of EoE-related mediators was assessed from medium underlying mucosal biopsy cultures. We quantified production of fibronectin and collagen I by HEF and HEMC in response to eosinophil products. We also measured the expression of intercellular adhesion molecule-1 and vascular cell adhesion molecule-1 by, and adhesion of human eosinophils to, HEFs and HEMCs. Eosinophil products were tested in an esophageal muscle contraction assay. Activated eosinophils were present in all esophageal layers. Significantly higher concentrations of eosinophil-related mediators were secreted spontaneously in mucosal biopsy specimens from patients with EoE than controls. Exposure of HEFs and HEMCs to increasing concentrations of eosinophil products or co-culture with eosinophils caused HEFs and HEMCs to increase secretion of fibronectin and collagen I; this was inhibited by blocking transforming growth factor β1 and p38 mitogen-activated protein kinase signaling. Eosinophil binding to HEFs and HEMCs increased after incubation of mesenchymal cells with eosinophil-derived products, and decreased after blockade of transforming growth factor β1 and p38 mitogen-activated protein kinase blockade. Eosinophil products reduced electrical field-induced contraction of esophageal muscle strips, but not acetylcholine-induced contraction. In an analysis of tissues samples from patients with EoE, we linked the presence and activation state of eosinophils in EoE with altered fibrogenesis and motility of esophageal fibroblasts and muscle cells. This process might contribute to the development of dysphagia."	"The clinical course of inflammatory bowel disease (IBD) is highly heterogeneous and often unpredictable, with multiple and serious complications that range from stricture formation to bowel obstruction or perforation, fistula formation and the need for surgery. All these problems are manifestations of tissue remodeling, a secondary but universal response to the insults of chronic inflammation. The factors involved in tissue remodeling are several, including the site and duration of inflammation, soluble molecules, the gut microbiota, and the type of mesenchymal cell response. The prototypical and most common type of tissue remodeling in IBD, and Crohn's disease (CD) in particular, is a fibrotic response, and this review will focus on the factors and mechanisms involved in fibrogenesis, and speculate on what is needed for the development of a rational treatment of intestinal fibrosis."	"It is becoming increasingly evident that the old paradigm of disease pathogenesis where a given genotype would determine a phenotype and this would lead to a particular disease is no longer acceptable. Many novel components are now recognized to be involved in the predisposition, triggering, progression and outcome of chronic inflammatory diseases like inflammatory bowel disease (IBD). Accordingly, investigation of IBD must recognize this complexity and take all potential components into account, if a full understanding of disease pathophysiology is to be reached and truly effective therapies developed based on this new global understanding. Essential to this approach is the notion of functional integration. Groups of functionally related pathogenic components must be assembled and studied as 'omes' like, for instance, the genome and the microbiome; at the same time all relevant 'omes' must be functionally and meaningfully integrated into the 'interactome', while the 'epigenome' should be used to dissect and understand the connections underlying the interactome. This is an ideal but also realistic scenario for the immediate future, as some of the 'omes' are already being explored in greater depth and their interactions examined through investigation of gene-gene (GXG) and gene-environment (GXE) interactions. Current knowledge of GXG and GXE and their impact on IBD pathogenesis is the focus of this review."	"In intestinal inflammation the gut microbiota induces an innate immune response by activating epithelial and immune cells that initiate or maintain inflammation. We investigated whether the microbiota also can activate local microvascular cells and induce angiogenesis. Human intestinal microvascular endothelial cells (HIMEC) and human intestinal fibroblasts (HIF) were exposed to bacterial ligands specific for Toll-like receptor (TLR)2/6 and 4, and NOD1 and NOD2, and cell proliferation, migration, transmigration, tube formation, and production of pro-angiogenic factors were measured. The ability of the ligands to induce ex vivo vessel sprouting in an aortic ring assay and in vivo angiogenesis using a collagen gel assay also were assessed. Bacterial ligands induced proliferation, migration, transmigration, tube formation of HIMEC, vessel sprouting, and in vivo angiogenesis; they also stimulated production of angiogenic factors from HIMEC and HIF, and HIF-derived angiogenic factors promoted HIMEC proliferation. To various degrees, all ligands induced angiogenic responses, but these were ligand- and cell type-dependent. Responses were mediated through receptor interacting protein-2 (RIP2)- and tumor necrosis factor receptor-associated factor 6 (TRAF6)-dependent signaling, involved the mitogen-activated protein kinase (MAPK) and nuclear factor-κB (NF-κB) pathways and the up-regulation of vascular endothelial growth factor receptor 2 (VEGF-R2) and focal adhesion kinase (FAK). Knockdown of RIP2 and TRAF6 by RNA interference and neutralization of interleukin-8, basic fibroblast growth factor, and vascular endothelial growth factor inhibited TLR-/NOD-like receptor-induced HIMEC angiogenesis. The gut microbiota can selectively activate mucosal endothelial and mesenchymal cells to promote specific angiogenic responses in a TLR- and NOD-like receptor-dependent fashion. This innate immunity-mediated response may expand the mucosal microvascular network, foster immune cell recruitment, and contribute to chronic intestinal inflammation."
+"Flannery, David"	"Genomic Medicine Institute"	30199404	22407893	12457409	11478533	1951440	1993956	21948486	18666229	15739154	2077489	"Demand for clinical genetics and genomics services is increasing. As discussed in this study, the clinical genetics and genomics workforce is small. How to meet the demand with a limited workforce requires innovation. Background data regarding the current state of clinical genetic services including volume of services and make-up of the clinical genetics workforce are presented. The study then identifies opportunities to increase access to clinical genetic service providers using new models of service and discusses examples of solutions which have been implemented in some practice settings. Creative uses of technology to increase providers' efficiency are highlighted. Clinical genetics service providers need to rise to the occasion and lead the transformation of clinical genetic service delivery. Many of the examples of solutions described in the study can be implemented by other providers now. Additionally, the described solutions may serve to inspire genetic providers to create their own new solutions, which should then be shared with the provider community."	NA	"We report a patient with a mosaic karyotype resulting from an adjacent 1 segregation of the familial autosomal translocation (11;22). The karyotype seen in fibroblast is 46,XY,der(22)t(11;22)(q23.3;q11.2)/46,XY. No evidence of the abnormal cell line was seen in the cultures obtained from the lymphocytes. The clinical phenotype of the patient does not fit a particular pattern of partial monosomy 22 or partial trisomy 11. There are some features that have been previously reported in patients with trisomy 11q23 --&gt; qter. The mosaic karyotype in our patient could be a result of a series of postzygotic mitotic events of a zygote carrying the der(22) chromosome. These mechanisms involve events that are well documented for several chromosomes. This case underscores the necessity of performing exhaustive cytogenetic analysis in patients with an abnormal phenotype with a family history of a chromosome rearrangement in fibroblast cells if lymphocyte analysis is normal."	"Critically ill neonates are frequently transfused with packed red cells. Some of these transfused neonates also need chromosome analysis. There is a long-standing tradition in pediatrics of not performing chromosome analysis after transfusion. We wished to determine whether transfusion with packed red cells affect the cytogenetic results in neonates. The medical records of all neonates at the Medical College of Georgia who had had chromosome analysis between June 1995 and June 1998 were reviewed. Ten neonates had received transfusion prior to cytogenetic testing. Of these 10 infants, two had been transfused two or more times. Routine cytogenetic analysis of 20 metaphases at 550-band level had been performed on all 10 patients. Heteromorphic markers were compared in 10 randomly selected metaphases for any discrepancy. To determine whether there were theoretical reasons to delay chromosome analysis in transfused neonates, samples of irradiated, and/or filtered, and nonfiltered blood were obtained from the blood bank and analyzed for the presence of lymphocytes. Prior transfusion did not affect karyotype results. A nonmosaic abnormal karyotype was found in 3 of the 10 patients. A fourth patient's karyotype was 45,X/47,XXX. This mosaicism was constitutive and consistent as demonstrated by a follow-up chromosome analysis. All other abnormal karyotypes were consistent with the dysmorphic phenotype. Randomly selected metaphases did not show any differences in the identifiable heteromorphic markers in all 10 patients. Although there was a 50% chance of patients receiving blood from a donor of opposite sex, there were no instances in which cells with a karyotype of the opposite sex were found in the patients' blood. The irradiated and filtered cultured donor blood samples did not show any metaphases. However, metaphases were seen in the cultures from nonfiltered and nonirradiated donor blood. Based on these results one does not need to delay karyotyping babies who have had blood transfusions. Packed red cell transfusion in newborns does not compromise the accuracy of chromosome analysis in our study even with multiple transfusions."	NA	NA	"We report 24 unrelated individuals with deletions and 17 additional cases with duplications at 10q11.21q21.1 identified by chromosomal microarray analysis. The rearrangements range in size from 0.3 to 12 Mb. Nineteen of the deletions and eight duplications are flanked by large, directly oriented segmental duplications of &gt;98% sequence identity, suggesting that nonallelic homologous recombination (NAHR) caused these genomic rearrangements. Nine individuals with deletions and five with duplications have additional copy number changes. Detailed clinical evaluation of 20 patients with deletions revealed variable clinical features, with developmental delay (DD) and/or intellectual disability (ID) as the only features common to a majority of individuals. We suggest that some of the other features present in more than one patient with deletion, including hypotonia, sleep apnea, chronic constipation, gastroesophageal and vesicoureteral refluxes, epilepsy, ataxia, dysphagia, nystagmus, and ptosis may result from deletion of the CHAT gene, encoding choline acetyltransferase, and the SLC18A3 gene, mapping in the first intron of CHAT and encoding vesicular acetylcholine transporter. The phenotypic diversity and presence of the deletion in apparently normal carrier parents suggest that subjects carrying 10q11.21q11.23 deletions may exhibit variable phenotypic expressivity and incomplete penetrance influenced by additional genetic and nongenetic modifiers."	"Approximately, 20 cases of interstitial deletions of 9q have been reported in the literature spanning the breakpoints from 9q21 to 9q34. Unlike the 9q subtelomeric deletions, the interstitial deletions do not demonstrate a specific recognizable phenotype, although the majority of patients had microcephaly. Lack of precise molecular delineation of the extent of deletions in the published cases makes it difficult to develop an accurate genotype-phenotype correlation. We report on fine mapping of breakpoints using the Affymetrix Human Mapping 500K Array Set in two unrelated female patients with overlapping de novo deletion in 9q. SNP oligonucleotide microarray analysis (SOMA) indicated these to be relatively large deletions with Patient 1 having a 6.47 Mb deletion (&gt;60 genes) spanning 9q32-q33.2 and Patient 2 having a 9.68 Mb deletion (&gt;20 genes) localized to 9q31.1-q33.1. FISH analysis with BAC clones localized to the breakpoints showed discrepant results in Patient 1. Based on the review of previously reported interstitial 9q deletion patients and our patients, the minimal region of overlap (MRO) appears to encompass the 9q32 region and a phenotype characterized by microcephaly, neurological dysfunction and facial dysmorphism can be deduced. Our study shows the investigative nature of the latest array technology and the limitations of this technology in the accurate delineation of breakpoints."	"Mutations in the GLI3 zinc-finger transcription factor gene cause Greig cephalopolysyndactyly syndrome (GCPS) and Pallister-Hall syndrome (PHS), which are variable but distinct clinical entities. We hypothesized that GLI3 mutations that predict a truncated functional repressor protein cause PHS and that functional haploinsufficiency of GLI3 causes GCPS. To test these hypotheses, we screened patients with PHS and GCPS for GLI3 mutations. The patient group consisted of 135 individuals: 89 patients with GCPS and 46 patients with PHS. We detected 47 pathological mutations (among 60 probands); when these were combined with previously published mutations, two genotype-phenotype correlations were evident. First, GCPS was caused by many types of alterations, including translocations, large deletions, exonic deletions and duplications, small in-frame deletions, and missense, frameshift/nonsense, and splicing mutations. In contrast, PHS was caused only by frameshift/nonsense and splicing mutations. Second, among the frameshift/nonsense mutations, there was a clear genotype-phenotype correlation. Mutations in the first third of the gene (from open reading frame [ORF] nucleotides [nt] 1-1997) caused GCPS, and mutations in the second third of the gene (from ORF nt 1998-3481) caused primarily PHS. Surprisingly, there were 12 mutations in patients with GCPS in the 3' third of the gene (after ORF nt 3481), and no patients with PHS had mutations in this region. These results demonstrate a robust correlation of genotype and phenotype for GLI3 mutations and strongly support the hypothesis that these two allelic disorders have distinct modes of pathogenesis."	"Anomalous conotruncal cardiac morphology and facial dysmorphology have been associated with neural crest-pharyngeal arch abnormalities. To assess these associations, 20 patients 3 to 18 years old with tetralogy of Fallot (TOF) or persistent truncus arteriosus (PTA) were evaluated by cardiologic, facial dysmorphic, and cephalometric criteria. The average number of facial abnormalities of neural crest derivation was two, while pharyngeal arch derivative abnormalities were observed with an average of five defects per subject. The total group had many more facial malformations than normal populations (P less than .00001). The occurrence of defects was not significantly different between TOF and PTA patients. Thirteen TOF patients 8 years, 9 months to 18 years, 10 months old (x = 13 years, 4 months) had lateral cephalograms analyzed for skeletal relationships. The TOF patients exhibited higher than usual distribution of dolichofacial growth patterns (6 of 13), Class II skeletal relationships (6 of 13), mandibular retrusion (7 of 13), and maxillary protrusion (6 of 13). Trends were not absolute, since opposite patterns were individually expressed, and referencing by race tended to show more normal values for respective groups."
+"Fleischman, Aaron"	"Biomedical Engineering"	20442019	22163683	15014268	19055419	16133803	22357558	20552673	20054402	19539062	19524292	"Focused broadband miniature polyvinylidene fluoride-trifluoroethylene (PVDF TrFE) ultrasonic transducers were investigated for intravascular (IVUS) second-harmonic imaging. Modeling and experimental studies demonstrated that focused transducers, unlike conventional flat transducers, build up second harmonic peak pressures faster and stronger, leading to an increased SNR of second harmonic content within the coronary geometry. Experimental results demonstrated that focused second harmonic pressures could be controlled to occur at specific depths by controlling the f-number of the transducer. The experimental results were in good agreement with the modeled results. Experiments were conducted using three imaging modalities: fundamental 20 MHz (F20), second harmonic 40 MHz (H40), and fundamental 40 MHz (F40). The lateral resolutions for a 1-mm transducer (f-number 3.2) at F20, F40, and H40 were experimentally measured to be 162, 123, and 124 microm, respectively, which agreed well with the theoretical calculations with &lt;8% error. Lateral resolution was further characterized in the three modes, using a micromachined phantom consisting of fixed bars and spaces with widths ranging from 20 to 160 microm. H40 exhibited better lateral resolution, clearly displaying 40- and 60-microm bars with about 4 dB and 7 dB greater signal strength compared with F20. Ex vivo human aorta images were obtained in the second-harmonic imaging mode to show the feasibility of high resolution second-harmonic IVUS using focused transducers."	"Polyvinilidene fluoride (PVDF) single-element transducers for high-frequency (&gt;30 MHz) ultrasound imaging applications have been developed using MEMS (Micro-electro-Mechanical Systems) compatible techniques. Performance of these transducers has been investigated by analyzing the sources and effects of on-chip parasitic capacitances on the insertion-loss of the transducers. Modeling and experimental studies showed that on-chip parasitic capacitances degraded the performance of the transducers and an improved method of fabrication was suggested and new devices were built. New devices developed with minimal parasitic effects were shown to improve the performance significantly. A 1-mm aperture PVDF device developed with minimal parasitic effects has resulted in a reduction of insertion loss of 21 dB compared with devices fabricated using a previous method."	NA	"Magnetic deposition microscropy (MDM) combines magnetic deposition and optical analysis of magnetically tagged cells into a single platform. Our multistage MDM uses enclosed microfabricated channels and a magnet assembly comprising four zones in series. The enclosed channels alleviate the problem plaguing previous versions of MDM: scouring of the cell deposition layer by the air-liquid interface as the channel is drained. The four-zone magnet assembly was designed to maximize capture efficiency, and experiments yielded total capture efficiencies of &gt;99% of fluorescent- and magnetically-labeled Jurkat cells at reasonable throughputs (10(3) cells/min). A digital image processing protocol was developed to measure the average pixel intensities of the deposited cells in different zones, indicative of the marker expression. Preliminary findings indicate that the multistage MDM may be suitable for depositing cells and particles in successive zones according to their magnetic properties (e.g., magnetic susceptibilities or magnetophoretic mobilities). The overall goal is to allow the screening of multiple disease conditions in a single platform."	"A system for flow measurement in micro/nano fluidic components is presented. Microfabricated arrays of straight channels with noncircular cross-sections were used for flow rate measurement. The calculated flow rates in these channels were determined using a finite difference approximation method. A pneumatic pumping system was utilized to control the pressure drop across the channels and flow rates were measured by collecting the fluids on a sensitive balance. The experimental setup was validated using long narrow circular tubes that mimic the range of flow resistances characteristic of micro/nano fluidic devices. Two types of channels cross-section were investigated. The first type contained an array of channels that were approximately trapezoidal (microchannels, approximately 6.5 microm deep) in cross-section and exhibited flow rates of 27.7--119.4 micro L/min within a pressure range of 64.1--277.1 kPa (9.3--40.2 psi). The second type contained an array of channels that were approximately arc-shaped (nanochannels, approximately 600 nm deep) and generated flow rates of 0.29--0.99 micro L/min within a pressure range of 137.2--334.4 kPa (19.9--48.5 psi). The flow rates calculated by the finite difference approximation method were within 5.5% and 19.68% of the average experimental flow rates in the microchannels and nanochannels, respectively."	"Surface charge characterization is important in the design and testing of coatings and membranes for biological and industrial applications, but commercial zeta potential meters are expensive and difficult to adapt to a variety of membrane designs. We combined inexpensive off-the-shelf components, a test mount fabricated with a conventional rapid prototyping system, and software written using a no-cost integrated development environment to implement a low-cost, automated streaming potential meter. Software written in Visual C# managed a USB data acquisition and control pod to regulate the transmembrane pressure while simultaneously reading transmembrane voltages from a digital multimeter with 0.1-nV precision. The streaming potential was measured through a commercially available polyethersulfone membrane with repeatable results for transmembrane pressures between -15 and 15 kPa. The transmembrane voltages for each set of six pressures were linear, with R (2) values greater than 0.9995. The zeta potentials calculated from the measured streaming potentials are in agreement with previous results for the same commercial membrane previously reported in the literature. The material cost for the system is less than $4000."	"We have developed a bilayer microfluidic system with integrated transepithelial electrical resistance (TEER) measurement electrodes to evaluate kidney epithelial cells under physiologically relevant fluid flow conditions. The bioreactor consists of apical and basolateral fluidic chambers connected via a transparent microporous membrane. The top chamber contains microfluidic channels to perfuse the apical surface of the cells. The bottom chamber acts as a reservoir for transport across the cell layer and provides support for the membrane. TEER electrodes were integrated into the device to monitor cell growth and evaluate cell-cell tight junction integrity. Immunofluorescence staining was performed within the microchannels for ZO-1 tight junction protein and acetylated α-tubulin (primary cilia) using human renal epithelial cells (HREC) and MDCK cells. HREC were stained for cytoskeletal F-actin and exhibited disassembly of cytosolic F-actin stress fibers when exposed to shear stress. TEER was monitored over time under normal culture conditions and after disruption of the tight junctions using low Ca(2+) medium. The transport rate of a fluorescently labeled tracer molecule (FITC-inulin) was measured before and after Ca(2+) switch and a decrease in TEER corresponded with a large increase in paracellular inulin transport. This bioreactor design provides an instrumented platform with physiologically meaningful flow conditions to study various epithelial cell transport processes."	"Silicon micromachining provides the precise control of nanoscale features that can be fundamentally enabling for miniaturized, implantable medical devices. Concerns have been raised regarding blood biocompatibility of silicon-based materials and their application to hemodialysis and hemofiltration. A high-performance ultrathin hemofiltration membrane with monodisperse slit-shaped pores was fabricated using a sacrificial oxide technique and then surface-modified with poly(ethylene glycol) (PEG). Fluid and macromolecular transport matched model predictions well. Protein adsorption, fouling, and thrombosis were significantly inhibited by the PEG. The membrane retained hydraulic permeability and molecular selectivity during a 90 hour hemofiltration experiment with anticoagulated bovine whole blood. This is the first report of successful prolonged hemofiltration with a silicon nanopore membrane. The results demonstrate feasibility of renal replacement devices based on these membranes and materials."	"The influence of surface microtexture on osteogenesis was investigated in vitro by examining the proliferation and differentiation characteristics of a class of adult stem cells and their progeny, collectively known as connective tissue progenitor cells (CTPs). Human bone marrow-derived CTPs were cultured for up to 60 days on smooth polydimethylsiloxane (PDMS) surfaces and on PDMS with post microtextures that were 10 microm in diameter and 6 microm in height, with 10 microm separation. DNA quantification revealed that the numbers of CTPs initially attached to both substrates were similar. However, cells on microtextured PDMS transitioned from lag phase after 4 days of culture, in contrast to 6 days for cells on smooth surfaces. By day 9 cells on the smooth surfaces exhibited arbitrary flattened shapes and migrated without any preferred orientation. In contrast, cells on the microtextured PDMS grew along the array of posts in an orthogonal manner. By days 30 and 60 cells grew and covered all surfaces with extracellular matrix. Western blot analysis revealed that the expression of integrin alpha5 was greater on the microtextured PDMS compared with smooth surfaces. Real time reverse transcription-polymerase chain reaction revealed that gene expression of alkaline phosphatase had decreased by days 30 and 60, compared with that on day 9, for both substrates. Gene expression of collagen I and osteocalcin was consistently greater on post microtextures relative to smooth surfaces at all time points."	"A three-dimensional (3D) structure comprising precisely defined micro-architecture and surface micro-textures, designed to present specific physical cues to cells and tissues, may provide an efficient scaffold in a variety of tissue engineering and regenerative medicine applications. We report a fabrication technique based on microfabrication and soft lithography that permits for the development of 3D scaffolds with both precisely engineered architecture and tailored surface topography. The scaffold fabrication technique consists of three key steps starting with microfabrication of a mold using an epoxy-based photoresist (SU-8), followed by dual-sided molding of a single layer of polydimethylsiloxane (PDMS) using a mechanical jig for precise motion control; and finally, alignment, stacking, and adhesion of multiple PDMS layers to achieve a 3D structure. This technique was used to produce 3D Texture and 3D Smooth PDMS scaffolds, where the surface topography comprised 10 microm diameter/height posts and smooth surfaces, respectively. The potential utility of the 3D microfabricated scaffolds, and the role of surface topography, were subsequently investigated in vitro with a combined heterogeneous population of adult human stem cells and their resultant progenitor cells, collectively termed connective tissue progenitors (CTPs), under conditions promoting the osteoblastic phenotype. Examination of bone-marrow derived CTPs cultured on the 3D Texture scaffold for 9 days revealed cell growth in three dimensions and increased cell numbers compared to those on the 3D Smooth scaffold. Furthermore, expression of alkaline phosphatase mRNA was higher on the 3D Texture scaffold, while osteocalcin mRNA expression was comparable for both types of scaffolds."
+"Fox, Paul"	"Cardiovascular and Metabolic Sciences"	30612880	30309984	29643180	29152905	28777042	28520992	28178239	27729295	26122849	25786748	"Multisite phosphorylation of kinases can induce on-off or graded regulation of catalytic activity; however, its influence on substrate specificity remains unclear. Here, we show that multisite phosphorylation of ribosomal protein S6 kinase 1 (S6K1) alters target selection. Agonist-inducible phosphorylation of glutamyl-prolyl tRNA synthetase (EPRS) by S6K1 in monocytes and adipocytes requires not only canonical phosphorylation at Thr<sup>389</sup> by mTORC1 but also phosphorylation at Ser<sup>424</sup> and Ser<sup>429</sup> in the C terminus by cyclin-dependent kinase 5 (Cdk5). S6K1 phosphorylation at these additional sites induces a conformational switch and is essential for high-affinity binding and phosphorylation of EPRS, but not canonical S6K1 targets, e.g., ribosomal protein S6. Unbiased proteomic analysis identified additional targets phosphorylated by multisite phosphorylated S6K1 in insulin-stimulated adipocytes-namely, coenzyme A synthase, lipocalin 2, and cortactin. Thus, embedded within S6K1 is a target-selective kinase phospho-code that integrates signals from mTORC1 and Cdk5 to direct an insulin-stimulated, post-translational metabolon determining adipocyte lipid metabolism."	"About 1 billion years ago, in a single-celled holozoan ancestor of all animals, a gene fusion of two tRNA synthetases formed the bifunctional enzyme, glutamyl-prolyl-tRNA synthetase (EPRS). We propose here that a confluence of metabolic, biochemical, and environmental factors contributed to the specific fusion of glutamyl- (ERS) and prolyl- (PRS) tRNA synthetases. To test this idea, we developed a mathematical model that centers on the precursor-product relationship of glutamic acid and proline, as well as metabolic constraints on free glutamic acid availability near the time of the fusion event. Our findings indicate that proline content increased in the proteome during the emergence of animals, thereby increasing demand for free proline. Together, these constraints contributed to a marked cellular depletion of glutamic acid and its products, with potentially catastrophic consequences. In response, an ancient organism invented an elegant solution in which genes encoding ERS and PRS fused to form EPRS, forcing coexpression of the two enzymes and preventing lethal dysregulation. The substantial evolutionary advantage of this coregulatory mechanism is evidenced by the persistence of EPRS in nearly all extant animals."	"Aminoacyl-tRNA synthetases are ubiquitous, evolutionarily conserved enzymes catalyzing the conjugation of amino acids onto cognate tRNAs. During eukaryotic evolution, tRNA synthetases have been the targets of persistent structural modifications. These modifications can be additive, as in the evolutionary acquisition of noncatalytic domains, or subtractive, as in the generation of truncated variants through regulated mechanisms such as proteolytic processing, alternative splicing, or coding region polyadenylation. A unique variant is the human glutamyl-prolyl-tRNA synthetase (EPRS) consisting of two fused synthetases joined by a linker containing three copies of the WHEP domain (termed by its presence in tryptophanyl-, histidyl-, and glutamyl-prolyl-tRNA synthetases). Here, we identify site-selective proteolysis as a mechanism that severs the linkage between the EPRS synthetases in vitro and in vivo Caspase action targeted Asp-929 in the third WHEP domain, thereby separating the two synthetases. Using a neoepitope antibody directed against the newly exposed C terminus, we demonstrate EPRS cleavage at Asp-929 in vitro and in vivo Biochemical and biophysical characterizations of the N-terminally generated EPRS proteoform containing the glutamyl-tRNA synthetase and most of the linker, including two WHEP domains, combined with structural analysis by small-angle neutron scattering, revealed a role for the WHEP domains in modulating conformations of the catalytic core and GSH-S-transferase-C-terminal-like (GST-C) domain. WHEP-driven conformational rearrangement altered GST-C domain interactions and conferred distinct oligomeric states in solution. Collectively, our results reveal long-range conformational changes imposed by the WHEP domains and illustrate how noncatalytic domains can modulate the global structure of tRNA synthetases in complex eukaryotic systems."	"The interferon (IFN)-γ-activated inhibitor of translation (GAIT) system directs transcript-selective translational control of functionally related genes. In myeloid cells, IFN-γ induces formation of a multiprotein GAIT complex that binds structural GAIT elements in the 3'-untranslated regions (UTRs) of multiple inflammation-related mRNAs, including ceruloplasmin and VEGF-A, and represses their translation. The human GAIT complex is a heterotetramer containing glutamyl-prolyl tRNA synthetase (EPRS), NS1-associated protein 1 (NSAP1), ribosomal protein L13a (L13a), and glyceraldehyde-3-phosphate dehydrogenase (GAPDH). A network of IFN-γ-stimulated kinases regulates recruitment and assembly of GAIT complex constituents. Activation of cyclin-dependent kinase 5 (Cdk5), mammalian target of rapamycin complex 1 (mTORC1), and S6K1 kinases induces EPRS release from its parental multiaminoacyl tRNA synthetase complex to join NSAP1 in a 'pre-GAIT' complex. Subsequently, the DAPK-ZIPK kinase axis phosphorylates L13a, inducing release from the 60S ribosomal subunit and binding to GAPDH. The subcomplexes join to form the functional GAIT complex. Each constituent has a distinct role in the GAIT system. EPRS binds the GAIT element in target mRNAs, NSAP1 negatively regulates mRNA binding, L13a binds eIF4G to block ribosome recruitment, and GAPDH shields L13a from proteasomal degradation. The GAIT system is susceptible to genetic and condition-specific regulation. An N-terminus EPRS truncate is a dominant-negative inhibitor ensuring a 'translational trickle' of target transcripts. Also, hypoxia and oxidatively modified lipoproteins regulate GAIT activity. Mouse models exhibiting absent or genetically modified GAIT complex constituents are beginning to elucidate the physiological role of the GAIT system, particularly in the resolution of chronic inflammation. Finally, GAIT-like systems in proto-chordates suggests an evolutionarily conserved role of the pathway in innate immunity. WIREs RNA 2018, 9:e1441. doi: 10.1002/wrna.1441 This article is categorized under: Translation &gt; Translation Regulation RNA Interactions with Proteins and Other Molecules &gt; RNA-Protein Complexes Regulatory RNAs/RNAi/Riboswitches &gt; Riboswitches."	NA	"MicroRNAs (miRNAs) and heterogeneous nuclear ribonucleoproteins (hnRNPs) are families of sequence-specific, posttranscriptional modulators of gene expression. Despite extensive mechanistic and functional studies on both regulatory classes, the interactions and crosstalk between them are largely unexplored. We have reported that competition between miR-297 and hnRNP L to bind a 3΄UTR-localized CA-rich element (CARE) of VEGFA mRNA regulates its translation. Here, we show that translation of VEGFA mRNA in human myeloid cells is dictated by a bi-directional interaction between miR-574-3p, a CA-rich microRNA, and hnRNP L. In normoxia, miR-574-3p, acting as a decoy, binds cytoplasmic hnRNP L and prevents its binding to the CARE and stimulation of VEGFA mRNA translation, simultaneously permitting miR-297-mediated translational silencing. However, in hypoxia, cytoplasmic accumulation of Tyr359-phosphorylated hnRNP L sequesters miR-574-3p, overcoming its decoy activity and seed sequence-dependent gene silencing activity. Ectopically expressed miR-574-3p binds multiple RNA recognition motif (RRM) domains of hnRNP L, synergizes with miR-297, reduces VEGFA mRNA translation, and triggers apoptosis, thereby suppressing tumorigenesis. Our studies establish a novel condition-dependent interplay between a miRNA and an hnRNP that regulates their functions in a bidirectional manner."	"Metabolic pathways that contribute to adiposity and ageing are activated by the mammalian target of rapamycin complex 1 (mTORC1) and p70 ribosomal protein S6 kinase 1 (S6K1) axis. However, known mTORC1-S6K1 targets do not account for observed loss-of-function phenotypes, suggesting that there are additional downstream effectors of this pathway. Here we identify glutamyl-prolyl-tRNA synthetase (EPRS) as an mTORC1-S6K1 target that contributes to adiposity and ageing. Phosphorylation of EPRS at Ser999 by mTORC1-S6K1 induces its release from the aminoacyl tRNA multisynthetase complex, which is required for execution of noncanonical functions of EPRS beyond protein synthesis. To investigate the physiological function of EPRS phosphorylation, we generated Eprs knock-in mice bearing phospho-deficient Ser999-to-Ala (S999A) and phospho-mimetic (S999D) mutations. Homozygous S999A mice exhibited low body weight, reduced adipose tissue mass, and increased lifespan, similar to S6K1-deficient mice and mice with adipocyte-specific deficiency of raptor, an mTORC1 constituent. Substitution of the Eprs<sup>S999D</sup> allele in S6K1-deficient mice normalized body mass and adiposity, indicating that EPRS phosphorylation mediates S6K1-dependent metabolic responses. In adipocytes, insulin stimulated S6K1-dependent EPRS phosphorylation and release from the multisynthetase complex. Interaction screening revealed that phospho-EPRS binds SLC27A1 (that is, fatty acid transport protein 1, FATP1), inducing its translocation to the plasma membrane and long-chain fatty acid uptake. Thus, EPRS and FATP1 are terminal mTORC1-S6K1 axis effectors that are critical for metabolic phenotypes."	"Phosphorylation of many aminoacyl tRNA synthetases (AARSs) has been recognized for decades, but the contribution of post-translational modification to their primary role in tRNA charging and decryption of genetic code remains unclear. In contrast, phosphorylation is essential for performance of diverse noncanonical functions of AARSs unrelated to protein synthesis. Phosphorylation of glutamyl-prolyl tRNA synthetase (EPRS) has been investigated extensively in our laboratory for more than a decade, and has served as an archetype for studies of other AARSs. EPRS is a constituent of the IFN-γ-activated inhibitor of translation (GAIT) complex that directs transcript-selective translational control in myeloid cells. Stimulus-dependent phosphorylation of EPRS is essential for its release from the parental multi-aminoacyl tRNA synthetase complex (MSC), for binding to other GAIT complex proteins, and for regulating the binding to target mRNAs. Importantly, phosphorylation is the common driving force for the context- and stimulus-dependent release, and non-canonical activity, of other AARSs residing in the MSC, for example, lysyl tRNA synthetase (KARS). Here, we describe the concepts and experimental methodologies we have used to investigate the influence of phosphorylation on the structure and function of EPRS. We suggest that application of these approaches will help to identify new functional phosphorylation event(s) in other AARSs and elucidate their possible roles in noncanonical activities."	"The transcript of the angiogenic factor vascular endothelial growth factor A (VEGF-A) is subject to a multitude of stimulus-dependent, posttranscriptional regulatory events, consistent with its unusually long 3' untranslated region. We have recently reported translational readthrough of VEGFA mRNA whereby translating ribosomes traverse the canonical stop codon to a conserved, downstream stop codon, generating VEGF-Ax (&quot;x&quot; for extended), a novel, extended isoform with an additional 22 amino acids appended at the C-terminus. This event is the first vertebrate example of protein-regulated, programmed translational readthrough that generates a protein with a known function. Remarkably, VEGF-Ax exhibits potent antiangiogenic activity, both in vitro and in vivo, thus raising profound clinical implications, particularly with respect to cancer treatment. In this review, we discuss the potential of VEGF-Ax as a therapeutic agent and drug target, as well as its possible role in the failure of, or resistance to, conventional anti-VEGF therapies in many types of cancers."	"Among the multiple modes of regulation of gene expression, translational control is arguably the least investigated and understood, and its role in vascular biology and pathobiology is not an exception. Here, we review recent studies that have revealed exciting translational regulatory phenomena and mechanisms involving novel RNA binding proteins and microRNA machinery in vascular biology. From these studies, the importance of translational regulation in angiogenesis, atherosclerosis, and blood pressure maintenance is beginning to emerge. We believe that the recent development of powerful techniques such as ribosome profiling and translating ribosome affinity purification (TRAP) will motivate and facilitate additional research in these areas. "
+"Fukamachi, Kiyotaka"	"Biomedical Engineering"	30393881	30312660	30074965	29761298	29703578	29616367	29538013	29400088	29365118	29076174	"The Virtual Mock Loop, a versatile virtual mock circulation loop, was developed using a lumped-parameter model of the mechanically assisted human circulatory system. Inputs allow specification of a variety of continuous-flow pumps (left, right, or biventricular assist devices) and a total artificial heart that can self-regulate between left and right pump outputs. Hemodynamic inputs were simplified using a disease-based input panel, allowing selection of a combination of cardiovascular disease states, including systolic and diastolic heart failure, stenosis, and/or regurgitation in each of the four valves, and high to low systemic and pulmonary vascular resistance values. The menu-driven output includes a summary of hemodynamic parameters and graphical output of selected flows, pressures, and volumes in the heart's four chambers as well as in the pulmonary artery and aorta. New tools to augment experimental research on implantable heart-assist devices and to increase our understanding of patient-specific pump interactions are in high demand. The purpose of this ongoing study is to demonstrate the use of a system analysis computer simulation to explore and better comprehend the interactions of mechanical circulatory support pumps with a more extensive combination of patient-specific or simulation conditions than can be established by practical experimentation. Usability is an important factor in constructing computer models for research purposes, and among our primary objectives in creating this simulation model were to make it as portable and useful as possible outside the lab environment, by people not involved in the creation of its operational software."	"With heart disease increasing worldwide, demand for new minimally invasive techniques and transcatheter technologies to treat structural heart disease is rising. Cardioscopy has long been considered desirable, as it allows direct tissue visualization and intervention to deliver therapy via a closed chest, with real-time fiber-optic imaging of intracardiac structures. Herein, the feasibility of the advanced cardioscopic platform, allowing both transapical and fully percutaneous access is reported. The latter technique, in particular, is believed to represent a milestone in the development of the cardioscope. Cardioscope prototypes were used in 7 bovine models (77.2-101.1 kg) for transapical or percutaneous insertion. Miniature custom-built, water-sealed cameras (diameters: Storz, 7 Fr; Medigus, 1.2 mm) were used. For percutaneous cardiopulmonary bypass, the pulmonary artery was occluded by a balloon catheter (Intraclude, 10.5 Fr, 100 cm) and perfused with a crystalloid solution. Cameras were inserted transapically (n = 4) through the left ventricular apex or percutaneously (n = 5) via the carotid artery. Insertion of the optimized cardioscope devices was feasible via either approach. Intracardiac structures (left ventricle, mitral valve opening/closure, chordal apparatus, aortic valve leaflets, and regurgitation) were visualized clearly and without deformation. Catheter tips were successfully bent &gt;180° inside the left ventricle; rotation and navigation to view various intracardiac structures were feasible in all cases. This study showed the technical feasibility of direct cardioscopic visualization using transapical and percutaneous approaches. This advanced cardioscopic instrumentarium represents a promising platform for future interventions and surgery under direct visualization of the beating heart."	"Our new Virtual Mock Loop (VML) is a mathematical model designed to simulate the human cardiovascular system and gauge performance of mechanical circulatory support devices. We aimed to mimic the hemodynamic performance of Cleveland Clinic's self-regulating continuous-flow total artificial heart (CFTAH) via VML and evaluate VML's accuracy versus bench data from our standard mock circulatory loop. The VML reproduced 23 hemodynamic conditions. Systemic/pulmonary vascular resistances and pump rotational speed were set for VML from bench test data. We compared outputs (pump flow, left/right pump pressure rise, normalized pump performance, and atrial pressure difference) of the two methods. Data from pump flow and left pump pressure rise were similar, but right pump pressure rise slightly differed. Left pump normalized pump performance curves were similar. Right pump VML results were within the same performance range indicated by bench tests. The plots of atrial pressure differences of VML versus bench-test data were similar, but slightly differed in the midrange of systemic/pulmonary gradients. Virtual Mock Loop successfully reproduced results from our mock circulatory loop of CFTAH test conditions. The CFTAH's self-regulation feature of right pump performance was also calculated effectively. We foresee using versions of the VML for training, simulating physiologic cardiac conditions, and patient monitoring."	"The postoperative care of animals implanted with mechanical circulatory support devices is complex. The standard of care requires continuous monitoring of hemodynamic parameters post implant, wound care, and maintenance of the animal's well-being, but also includes controlling the animal's biomechanics under conditions of continuous restraint and harnessing. In such studies, a harness provides secure fixation of the exteriorized device driveline and pressure lines and aids animal handling (lifting, position adjustment, and assistance with standing up). Harnessing is a key element in large-animal surgery. It affects the animal's conditions, safety, and post-procedure troubleshooting and thus may drastically worsen postoperative outcomes if improperly handled. Here we report a case associated with an unplanned harness replacement in a chronic animal model implanted with the Cleveland Clinic continuous-flow total artificial heart. Inadvertent changes to the harness resulted in posture change caused by muscular atrophy of the calf's spine that had been under long-term harness support."	"Heart transplantation in infants and children is an accepted therapy for end-stage heart failure, but donor organ availability is low and always uncertain. Mechanical circulatory support is another standard option, but there is a lack of intracorporeal devices due to size and functional range. The purpose of this study was to evaluate the in vivo performance of our initial prototype of a pediatric continuous-flow total artificial heart (P-CFTAH), comprising a dual pump with one motor and one rotating assembly, supported by a hydrodynamic bearing. In acute studies, the P-CFTAH was implanted in 4 lambs (average weight: 28.7 ± 2.3 kg) via a median sternotomy under cardiopulmonary bypass. Pulmonary and systemic pump performance parameters were recorded. The experiments showed good anatomical fit and easy implantation, with an average aortic cross-clamp time of 98 ± 18 minutes. Baseline hemodynamics were stable in all 4 animals (pump speed: 3.4 ± 0.2 krpm; pump flow: 2.1 ± 0.9 liters/min; power: 3.0 ± 0.8 W; arterial pressure: 68 ± 10 mm Hg; left and right atrial pressures: 6 ± 1 mm Hg, for both). Any differences between left and right atrial pressures were maintained within the intended limit of ±5 mm Hg over a wide range of ratios of systemic-to-pulmonary vascular resistance (0.7 to 12), with and without pump-speed modulation. Pump-speed modulation was successfully performed to create arterial pulsation. This initial P-CFTAH prototype met the proposed requirements for self-regulation, performance, and pulse modulation."	"The purpose of this study was to assess the smallest possible body sizes of patients in whom the Cleveland Clinic continuous-flow total artificial heart for adult (CFTAH) and pediatric configurations (P-CFTAH) can fit. One of the most critical dimensions is the vertebra-to-sternum distance at the junction of the right atrium to the inferior vena cava (V-S distance). Our previous CFTAH anatomical fitting study suggested that the CFTAH would fit patients of V-S distance ≥ 7.5 cm and the P-CFTAH of V-S distance ≥ 5.25 cm (70% of 7.5 cm). To confirm this, we assessed the relationship between body surface area (BSA) and V-S distance in 15 adult patients (BSA 1.86-2.62 m<sup>2</sup>) and 31 pediatric patients (BSA 0.17-1.80 m<sup>2</sup>) whose computed tomography scans were available. We found a highly significant correlation between BSA and V-S distance (p &lt; 1.0 × 10<sup>-25</sup>). It appears that the CFTAH will fit in most patients with BSA ≥ 1.0 m<sup>2</sup> (corresponding height of ≥ 130 cm and age of 9 years) and the P-CFTAH in patients with BSA ≥ 0.3 m<sup>2</sup> (corresponding height of ≥ 55 cm and age of 1 month). Further anatomical fitting studies are needed to evaluate the two pump models inside human chests to determine the smallest patient size/critical dimensions and device port configurations."	"Control of mechanical circulatory support pump output typically requires that pressure-regulating functions be accomplished by active control of the speed or geometry of the device, with feedback from pressure or flow sensors. This article presents a different design approach, with a pressure-regulating device as the core design feature, allowing the essential control function of regulating pressure to be directly programmed into the hydromechanical design. We show the step-by-step transformation of a pressure-regulating device into a continuous-flow total artificial heart that passively balances left and right circulations without the need for pressure and flow sensors. In addition, we discuss a ventricular assist device that prevents backflow in the event of power interruption and also dynamically interacts with residual ventricle function to preserve pulsatility."	"Continuous-flow (CF) left ventricular assist devices (LVADs) are widely used to treat end-stage heart failure. Despite substantial improvement in clinical results, numerous complications remain associated with this technology. Worsening renal function is one, associated with morbidity and mortality in patients supported by CF LVADs. The effects of CF LVAD support on renal function have been investigated since the mid-1990s by many research groups. We review the current status of LVAD therapy, experimental results regarding the effects of types of flow generated by LVADs on renal function and pathology, changes in renal function after LVAD implant, the influence of renal function on outcomes, and risk factors for renal dysfunction post implant. This information was obtained through online databases and direct extraction of single studies. Immediately after CF LVAD implantation, renal function improves temporarily as patients recover from the kidneys' previously low perfusion and congestive state. However, many studies have shown that this initially recovered renal function gradually declines during long-term CF LVAD support. Although it is known that CF LVAD support adversely affects renal function over the long term, just how it does has not yet been clearly defined in terms of clinical symptoms or signs."	"Mechanical circulatory support has become standard therapy for adult patients with end-stage heart failure; however, in paediatric patients with congenital heart disease, the options for chronic mechanical circulatory support are limited to paracorporeal devices or off-label use of devices intended for implantation in adults. Congenital heart disease and cardiomyopathy often involve both the left and right ventricles; in such cases, heart transplantation, a biventricular assist device or a total artificial heart is needed to adequately sustain both pulmonary and systemic circulations. We aimed to evaluate the in vitro performance of the initial prototype of our paediatric continuous-flow total artificial heart. The paediatric continuous-flow total artificial heart pump was downsized from the adult continuous-flow total artificial heart configuration by a scale factor of 0.70 (1/3 of total volume) to enable implantation in infants. System performance of this prototype was evaluated using the continuous-flow total artificial heart mock loop set to mimic paediatric circulation. We generated maps of pump performance and atrial pressure differences over a wide range of systemic vascular resistance/pulmonary vascular resistance and pump speeds. Performance data indicated left pump flow range of 0.4-4.7 l/min at 100 mmHg delta pressure. The left/right atrial pressure difference was maintained within ±5 mmHg with systemic vascular resistance/pulmonary vascular resistance ratios between 1.4 and 35, with/without pump speed modulation, verifying expected passive self-regulation of atrial pressure balance. The paediatric continuous-flow total artificial heart prototype met design requirements for self-regulation and performance; in vivo pump performance studies are ongoing."	"The VentriFlo True Pulse Pump (Design Mentor, Inc., Pelham, NH, USA) is the first blood pump designed to mimic human arterial waveforms in a standard oxygenation circuit. Our aim was to demonstrate the feasibility and safety of this pump in preparation for future studies to determine possible clinical advantages. We studied four piglets (41.4-46.2 kg): three with an implanted VentriFlo pulsatile pump and one with the nonpulsatile ROTAFLOW pump (MAQUET Holding B.V. &amp; Co. KG, Rastatt, Germany) as a control. Hemodynamics was monitored during 6-h cardiopulmonary bypass (CPB) support and for 2 h after weaning off CPB. The VentriFlo demonstrated physiologic arterial waveforms with arterial pulse pressure of 24.6 ± 5.7 mm Hg. Pump flows (2.0 ± 0.1 L/min in ROTAFLOW; 1.9 ± 0.1 L/min in VentriFlo) and plasma free hemoglobin levels (27.9 ± 12.5 mg/dL in ROTAFLOW; 28.5 ± 14.2 mg/dL in VentriFlo) were also comparable, but systemic O2 extraction (as measured by arterial minus venous O2 saturation) registered slightly higher with the VentriFlo (63.2 ± 6.9%) than the ROTAFLOW (55.4 ± 6.5%). Histological findings showed no evidence of ischemic changes or thromboembolism. This pilot study demonstrated that the VentriFlo system generated pulsatile flow and maintained adequate perfusion of all organs during prolonged CPB."
+"Gassman, Jennifer"	"Quantitative Health Sciences"	29212839	17591527	30775619	30006417	29976600	29870977	29212839	27927600	26335102	27516235	"The optimal BP target for patients receiving hemodialysis is unknown. We randomized 126 hypertensive patients on hemodialysis to a standardized predialysis systolic BP of 110-140 mmHg (intensive arm) or 155-165 mmHg (standard arm). The primary objectives were to assess feasibility and safety and inform the design of a full-scale trial. A secondary objective was to assess changes in left ventricular mass. Median follow-up was 365 days. In the standard arm, the 2-week moving average systolic BP did not change significantly during the intervention period, but in the intensive arm, systolic BP decreased from 160 mmHg at baseline to 143 mmHg at 4.5 months. From months 4-12, the mean separation in systolic BP between arms was 12.9 mmHg. Four deaths occurred in the intensive arm and one death occurred in the standard arm. The incidence rate ratios for the intensive compared with the standard arm (95% confidence intervals) were 1.18 (0.40 to 3.33), 1.61 (0.87 to 2.97), and 3.09 (0.96 to 8.78) for major adverse cardiovascular events, hospitalizations, and vascular access thrombosis, respectively. The intensive and standard arms had similar median changes (95% confidence intervals) in left ventricular mass of -0.84 (-17.1 to 10.0) g and 1.4 (-11.6 to 10.4) g, respectively. Although we identified a possible safety signal, the small size and short duration of the trial prevent definitive conclusions. Considering the high risk for major adverse cardiovascular events in patients receiving hemodialysis, a full-scale trial is needed to assess potential benefits of intensive hypertension control in this population."	"African Americans are at increased risk of kidney failure caused by hypertension. The primary objective of the African American Study of Kidney Disease and Hypertension (AASK) Cohort Study is to identify risk factors for progressive kidney disease in African Americans with hypertensive chronic kidney disease in the setting of recommended antihypertensive therapy. On completion of the AASK Trial, a randomized, double-blind, 3 x 2 factorial trial, participants who had not yet begun dialysis treatment or undergone kidney transplantation were invited to enroll in a prospective Cohort Study. Cohort Study participants received recommended antihypertensive drug therapy, including high rates of angiotensin-converting enzyme-inhibitor (73%) and angiotensin receptor blocker (10%) use with a blood pressure goal of less than 130/80 mm Hg. Baseline clinical and demographic characteristics are described separately at the baseline of the AASK Trial and Cohort Study. Of 1,094 persons enrolled in the AASK Trial (June 1995 to September 2001; mean age, 55 years; 61% men), 691 enrolled in the AASK Cohort Study (April 2002 to present), 299 died or reached dialysis therapy or transplantation, and 104 declined to participate in the AASK Cohort Study. Mean baseline systolic/diastolic blood pressures were 150/96 mm Hg in the Trial and 136/81 mm Hg in the Cohort Study. Cohort Study participants had greater serum creatinine levels at the start of the Cohort Study (2.3 versus 1.8 mg/dL [203 versus 159 micromol/L]), corresponding to an estimated glomerular filtration rate of 43.8 versus 50.3 mL/min/1.73 m2 (0.73 versus 0.84 mL/s/1.73 m2), than Trial participants and greater urine protein-creatinine ratios (0.38 versus 0.19 mg/mg, respectively). Individuals who were eligible, but declined to participate in the Cohort Study, had greater systolic blood pressure, but similar kidney function. Some parameters, such as iothalamate glomerular filtration rate, urinary albumin level, echocardiogram, and ambulatory blood pressure, were not performed in both the Trial and the Cohort Study, limiting the ability to evaluate changes in these parameters over time. Despite well-controlled blood pressure in the AASK Trial, Cohort Study participants still had evidence of progressive chronic kidney disease. Thus, the AASK Cohort Study is well positioned to address its primary objective."	"Depression is common but underrecognized in patients with chronic kidney disease (CKD), especially among racial/ethnic minorities. We examined the association between depressive symptoms and all-cause mortality (including deaths before and after end-stage renal disease [ESRD]) and whether antidepressant use impacts this association, overall, and by race/ethnicity. We ascertained whether the presence of depressive symptoms, defined by a Beck Depression Inventory II (BDI) score of &gt;14 at cohort enrollment, was associated with all-cause mortality (before or after ESRD) among study participants of the Chronic Renal Insufficient Cohort (CRIC) overall and by race/ethnicity. Models were adjusted for socioeconomic factors, baseline CKD severity, time-updated comorbid conditions, and time-updated antidepressant use. Confirmatory analyses were performed among African American Study of Kidney Disease and Hypertension (AASK) participants. Among 3739 CRIC participants, 16.3% had a baseline BDI of &gt;14; 18.2% reported antidepressant use. Crude mortality rate was 3.16 per 100 person-years during 6.8 years of median follow-up. Baseline BDI &gt;14 was independently associated with higher risk of all-cause mortality (adjusted hazard ratio [aHR]: 1.27; 95% confidence interval: 1.07-1.52) without attenuation by antidepressant use. Differences among white and black individuals were noted (Pinteraction= 0.02) but not among white versus Hispanic individuals (Pinteraction = 0.43) or black versus Hispanic individuals (Pinteraction = 0.22). Depressive symptoms were associated with higher mortality among white individuals (aHR: 1.66; 1.21-2.28), but not Hispanic individuals (aHR: 1.47; 0.95-2.28) or black individuals (aHR: 1.06; 0.82-1.37). Similar results were noted among 611 AASK participants (aHR: 0.99; 0.69-1.42). The presence of depressive symptoms is a risk factor for all-cause mortality among patients with mild-moderate CKD, particularly among white individuals. Further studies are needed to understand the heterogeneity in the response to the presence of depressive symptoms by race."	"During intensive BP lowering, acute declines in renal function are common, thought to be hemodynamic, and potentially reversible. We previously showed that acute declines in renal function ≥20% during intensive BP lowering were associated with higher risk of ESRD. Here, we determined whether acute declines in renal function during intensive BP lowering were associated with mortality risk among 1660 participants of the African American Study of Kidney Disease and Hypertension and the Modification of Diet in Renal Disease Trial. We used Cox models to examine the association between percentage decline in eGFR (&lt;5%, 5% to &lt;20%, or ≥20%) between randomization and months 3-4 of the trials (period of therapy intensification) and death. In adjusted analyses, compared with a &lt;5% eGFR decline in the usual BP arm (reference), a 5% to &lt;20% eGFR decline in the intensive BP arm was associated with a survival benefit (hazard ratio [HR], 0.77; 95% confidence interval [95% CI], 0.62 to 0.96), but a 5% to &lt;20% eGFR decline in the usual BP arm was not (HR, 1.01; 95% CI, 0.81 to 1.26; P&lt;0.05 for the interaction between intensive and usual BP arms for mortality risk). A ≥20% eGFR decline was not associated with risk of death in the intensive BP arm (HR, 1.18; 95% CI, 0.86 to 1.62), but it was associated with a higher risk of death in the usual BP arm (HR, 1.40; 95% CI, 1.04 to 1.89) compared with the reference group. Intensive BP lowering was associated with a mortality benefit only if declines in eGFR were &lt;20%."	"Ambulatory BP is increasingly recognized as a better measure of the risk for adverse outcomes related to hypertension, an important comorbidity in patients with CKD. Varying definitions of white-coat and masked hypertension have made it difficult to evaluate differences in prevalence of these BP patterns across CKD cohorts. The International Database of Ambulatory BP in Renal Patients collaborative group established a large database of demographic, clinical, and ambulatory BP data from patients with CKD from cohorts in Italy, Spain, the Chronic Renal Insufficiency Cohort (CRIC) and the African American Study of Kidney Disease and Hypertension Cohort Study (AASK) in the United States, and the CKD Japan Cohort (CKD-JAC). Participants (n=7518) with CKD were included in the present analyses. Cutoffs for defining controlled BP were 140/90 mm Hg for clinic and 130/80 mm Hg for 24-hour ambulatory BP. Among those with controlled clinic BP, compared with CKD-JAC, AASK participants were more likely to have masked hypertension (prevalence ratio [PR], 1.21; 95% confidence interval [95% CI], 1.04 to 1.41) whereas CRIC (PR, 0.82; 0.72 to 0.94), Italian (PR, 0.73; 0.56 to 0.95), and Spanish participants (PR, 0.75; 0.64 to 0.88) were less likely. Among those with elevated clinic BP, AASK participants were more likely to have sustained hypertension (PR, 1.22; 95% CI, 1.13 to 1.32) whereas Italian (PR, 0.78; 0.70 to 0.87) and Spanish participants (PR, 0.89; 0.82 to 0.96) were less likely, although CRIC participants had similar prevalence as CKD-JAC. Prevalence of masked and sustained hypertension was elevated in males, patients with diabetes, participants on four or more antihypertensives, and those with moderate-to-severe proteinuria. In a large, multinational database, the prevalence of masked and sustained hypertension varied across cohorts independent of important comorbidities."	"Intradialytic hypertension (IDH), or paradoxical rise in blood pressure (BP) during hemodialysis (HD) is associated with increased morbidity and mortality. The association between IDH and increased left ventricular mass (LVM), a well-known risk factor for adverse cardiovascular outcomes in HD patients, has not been studied. The aim of our study is to evaluate the cross-sectional association of intradialytic change in BP with cardiac structure and function measured by cardiac MRI in hypertensive HD patients enrolled in the multi-center Blood Pressure in Dialysis (BID) clinical trial. Participants in the BID study were categorized into 3 groups based on average change (Δ) in systolic blood pressure (SBP) (post-HD SBP minus pre-HD SBP) during HD over a 1 month period: group 1 - patients with an increase in SBP ≥ 10mm Hg during HD (IDH); group 2 -patients with SBP decrease of greater ≥10mm Hg during HD; group 3 - patients with SBP increase or decrease by &lt; 10mm Hg during HD. LVM index (LVMI) was measured using cardiac MRI, which were centrally read. Baseline characteristics were compared in the 3 groups and multivariable regression models were fitted for the adjusted association of IDH with LVMI. Among the 80 participants, 7 (8.8%) had IDH and had average Δ SBP 17.0 ± 10.1 mmHg during HD. Patients with IDH were less likely to be diabetic, had lower pre-dialysis SBP and lower percent interdialytic weight gain as compared to the other 2 groups (p=0.02, p&lt; 0.001 and p=0.02 respectively). In multivariable regression analyses, IDH was significantly associated with LVMI (adjusted mean difference relative to SBP decreased group [95% confidence interval (CI)] = 12.5 [3.6, 21.5], p=0.01) after adjusting for age, sex, diabetes, IDWG%, pre-HD SBP and beta blocker use. Every 1 mm rise in ΔSBP during HD was associated with 0.2 g/m2 increase in LVMI in adjusted models (p=0.04). IDH is independently associated with higher LVMI in hypertensive HD patients and may contribute to increased cardiovascular events."	"The optimal BP target for patients receiving hemodialysis is unknown. We randomized 126 hypertensive patients on hemodialysis to a standardized predialysis systolic BP of 110-140 mmHg (intensive arm) or 155-165 mmHg (standard arm). The primary objectives were to assess feasibility and safety and inform the design of a full-scale trial. A secondary objective was to assess changes in left ventricular mass. Median follow-up was 365 days. In the standard arm, the 2-week moving average systolic BP did not change significantly during the intervention period, but in the intensive arm, systolic BP decreased from 160 mmHg at baseline to 143 mmHg at 4.5 months. From months 4-12, the mean separation in systolic BP between arms was 12.9 mmHg. Four deaths occurred in the intensive arm and one death occurred in the standard arm. The incidence rate ratios for the intensive compared with the standard arm (95% confidence intervals) were 1.18 (0.40 to 3.33), 1.61 (0.87 to 2.97), and 3.09 (0.96 to 8.78) for major adverse cardiovascular events, hospitalizations, and vascular access thrombosis, respectively. The intensive and standard arms had similar median changes (95% confidence intervals) in left ventricular mass of -0.84 (-17.1 to 10.0) g and 1.4 (-11.6 to 10.4) g, respectively. Although we identified a possible safety signal, the small size and short duration of the trial prevent definitive conclusions. Considering the high risk for major adverse cardiovascular events in patients receiving hemodialysis, a full-scale trial is needed to assess potential benefits of intensive hypertension control in this population."	"Although APOL1 high-risk genotype partially accounts for the increased susceptibility of blacks to chronic kidney disease (CKD), whether APOL1 associates differentially with mortality risk remains controversial. Here we evaluate the association between APOL1 genotype and risk of death and determine whether APOL1 status modifies the association between strict versus usual blood pressure control and mortality risk. We performed a retrospective analysis of the African American Study of Kidney Disease and Hypertension trial that randomized black participants with CKD to strict versus usual blood pressure control from 1995 to 2001. This included 682 participants with known APOL1 genotype (157 with high-risk genotype) previously assigned to either strict (mean arterial pressure [MAP] 92 mm Hg or less) versus usual blood pressure control (MAP 102-107 mm Hg) during the trial. During a median follow-up of 14.5 years, risk of death did not differ between individuals with high- versus low-risk APOL1 genotypes (unadjusted hazard ratio 1.00 [95% confidence interval 0.76-1.33]). However, a significant interaction was detected between the APOL1 risk group and blood pressure control strategy. In the APOL1 high-risk group, the risk of death was 42% lower comparing strict versus usual blood pressure control (0.58 [0.35-0.97]). In the APOL1 low-risk group, the risk of death comparing strict versus usual blood pressure control was not significantly different (1.09 [0.84-1.43]). Thus, strict blood pressure control during CKD associates with a lower risk of death in blacks with the high-risk CKD APOL1 genotype. Knowledge of APOL1 status could inform selection of blood pressure treatment targets in black CKD patients."	"Recent pre-clinical studies have shown that complement activation contributes to glomerular and tubular injury in experimental FSGS. Although complement proteins are detected in the glomeruli of some patients with FSGS, it is not known whether this is due to complement activation or whether the proteins are simply trapped in sclerotic glomeruli. We measured complement activation fragments in the plasma and urine of patients with primary FSGS to determine whether complement activation is part of the disease process. Plasma and urine samples from patients with biopsy-proven FSGS who participated in the FSGS Clinical Trial were analyzed. We identified 19 patients for whom samples were available from weeks 0, 26, 52 and 78. The results for these FSGS patients were compared to results in samples from 10 healthy controls, 10 patients with chronic kidney disease (CKD), 20 patients with vasculitis, and 23 patients with lupus nephritis. Longitudinal control of proteinuria and estimated glomerular filtration rate (eGFR). Levels of the complement fragments Ba, Bb, C4a, and sC5b-9 in plasma and urine. Plasma and urine Ba, C4a, sC5b-9 were significantly higher in FSGS patients at the time of diagnosis than in the control groups. Plasma Ba levels inversely correlated with the eGFR at the time of diagnosis and at the end of the study. Plasma and urine Ba levels at the end of the study positively correlated with the level of proteinuria, the primary outcome of the study. Limited number of patients with samples from all time-points. The complement system is activated in patients with primary FSGS, and elevated levels of plasma Ba correlate with more severe disease. Measurement of complement fragments may identify a subset of patients in whom the complement system is activated. Further investigations are needed to confirm our findings and to determine the prognostic significance of complement activation in patients with FSGS."	"We recently showed an association between strict BP control and lower mortality risk during two decades of follow-up of prior participants in the Modification of Diet in Renal Disease (MDRD) trial. Here, we determined the risk of ESRD and mortality during extended follow-up of the African American Study of Kidney Disease and Hypertension (AASK) trial. We linked 1067 former AASK participants with CKD previously randomized to strict or usual BP control (mean arterial pressure ≤92 mmHg or 102-107 mmHg, respectively) to the US Renal Data System and Social Security Death Index; 397 patients had ESRD and 475 deaths occurred during a median follow-up of 14.4 years from 1995 to 2012. Compared with the usual BP arm, the strict BP arm had unadjusted and adjusted relative risks of ESRD of 0.92 (95% confidence interval [95% CI], 0.75 to 1.12) and 0.95 (95% CI, 0.78 to 1.16; P=0.64), respectively, and unadjusted and adjusted relative risks of death of 0.92 (95% CI, 0.77 to 1.10) and 0.81 (95% CI, 0.68 to 0.98; P=0.03), respectively. In meta-analyses of individual-level data from the MDRD and the AASK trials, unadjusted relative risk of ESRD was 0.88 (95% CI, 0.78 to 1.00) and unadjusted relative risk of death was 0.87 (95% CI, 0.76 to 0.99) for strict versus usual BP arms. Our findings suggest that, during long-term follow-up, strict BP control does not delay the onset of ESRD but may reduce the relative risk of death in CKD."
+"Ghosh, Chaitali"	"Biomedical Engineering"	30414085	30264400	28199000	28127491	27312874	25656284	23865846	22426401	21568937	21294720	"Death-associated protein kinase (DAPK) is a key player in various cell death signaling pathways. Prolonged seizures induce neuronal stress; thus, we studied DAPK expression in resected brain tissues from patients with refractory epilepsy and the pathophysiological relevance of neurovascular DAPK. We used brain resections from temporal lobe epilepsy (TLE), tumor (BT), arteriovenous malformation (AVM), and autopsy, and isolated human endothelial cells (EPI-ECs) and glial cells (EPI-Astro) from epileptic brains compared to control brain endothelial cells (HBMECs) and astrocytes. DAPK and phosphorylated DAPK (p-DAPK) expression was evaluated by immunohistochemistry and western blot. Subcellular localization of DAPK in epileptic brain was explored; DAPK mRNA/protein levels in EPI-ECs/EPI-Astro were evaluated. We assessed DAPK localization with hypoxic inducible factor (HIF-1α) and vascular endothelial growth factor (VEGF) in epilepsy, BT, and AVM. We found DAPK overexpression across neurons, microcapillaries, and astrocytes in TLE vs controls; DAPK and p-DAPK levels significantly increased only in microsomal fractions of epileptic brain. DAPK mRNA remained unchanged, although increased DAPK and p-DAPK protein expression was observed in EPI-ECs. DAPK inhibition reduced p-DAPK, HIF-1α, and VEGF expression, but increased cytotoxicity and decreased cell viability in EPI-ECs and EPI-astro vs. controls. DAPK staining in TLE resembled BT and AVM, with predominant DAPK/p-DAPK expression in neurons and vasculature. Taken together, these findings suggest DAPK could be a potential molecular target in neuronal death and vascular changes in epilepsy. Increased brain endothelial and astrocytic DAPK in epilepsy, identified for the first time, may have relevance to angiogenesis, hypoxia, and cell survival in pathological conditions."	"Nuclear receptors and cytochrome P450 (CYP) regulate hepatic metabolism of several drugs. Nuclear receptors are expressed at the neurovascular unit of patients with drug-resistant epilepsy. We studied whether glucocorticoid receptor (GR) silencing or inhibition in human epileptic brain endothelial cells (EPI-ECs) functionally impacts drug bioavailability across an in vitro model of the blood-brain barrier (BBB) by CYP-multidrug transporter (multidrug resistance protein 1, MDR1) mechanisms. Surgically resected brain specimens from patients with drug-resistant epilepsy, primary EPI-ECs, and control human brain microvascular endothelial cells (HBMECs) were used. Expression of GR, pregnane X receptor, CYP3A4, and MDR1 was analyzed pre- and post-GR silencing in EPI-ECs. Endothelial cells were co-cultured with astrocytes and seeded in an in vitro flow-based BBB model (DIV-BBB). Alternatively, the GR inhibitor mifepristone was added to the EPI-EC DIV-BBB. Integrity of the BBB was monitored by measuring transendothelial electrical resistance. Cell viability was assessed by glucose-lactate levels. Permeability of [<sup>3</sup> H]sucrose and [<sup>14</sup> C]phenytoin was quantified. CYP function was determined by measuring resorufin formation and oxcarbazepine (OXC) metabolism. Silencing and inhibition of GR in EPI-ECs resulted in decreased pregnane X receptor, CYP3A4, and MDR1 expression. GR silencing or inhibition did not affect BBB properties in vitro, as transendothelial electrical resistance and Psucrose were unaltered, and glucose metabolism was maintained. GR EPI-EC silencing or inhibition led to (1) increased Pphenytoin BBB permeability as compared to control; (2) decreased CYP function, indirectly evaluated by resorufin formation; (3) improved OXC bioavailability with increased abluminal (brain-side) OXC levels as compared to control. Our results suggest that modulating GR expression in EPI-ECs at the BBB modifies drug metabolism and penetration by a mechanism encompassing P450 and efflux transporters. The latter could be exploited for future drug design and to overcome pharmacoresistance."	"Recent evidence suggests a metabolic contribution of cytochrome P450 enzymes (CYPs) to the drug-resistant phenotype in human epilepsy. However, the upstream molecular regulators of CYP in the epileptic brain remain understudied. We therefore investigated the expression and function of pregnane xenobiotic (PXR) and glucocorticoid (GR) nuclear receptors in endothelial cells established from post-epilepsy surgery brain samples. PXR/GR localization was evaluated by immunohistochemistry in specimens from subjects who underwent temporal lobe resections to relieve drug-resistant seizures. We used primary cultures of endothelial cells obtained from epileptic brain tissues (EPI-ECs; n = 8), commercially available human brain microvascular endothelial cells (HBMECs; n = 8), and human hepatocytes (n = 3). PXR/GR messenger RNA (mRNA) levels in brain ECs was initially determined by complementary DNA (cDNA) microarrays. The expression of PXR/GR proteins was quantified by Western blot. PXR and GR silencing was performed in EPI-ECs (n = 4), and the impact on downstream CYP expression was determined. PXR/GR expression was detected by immunofluorescence in ECs and neurons in the human temporal lobe samples analyzed. Elevated mRNA and protein levels of PXR and GR were found in EPI-ECs versus control HBMECs. Hepatocytes, used as a positive control, displayed the highest levels of PXR/GR expression. We confirmed expression of PXR/GR in cytoplasmic-nuclear subcellular fractions, with a significant increase of PXR/GR in EPI-ECs versus controls. CYP3A4, CYP2C9, and CYP2E1 were overexpressed in EPI-ECs versus control, whereas CYP2D6 and CYP2C19 were downregulated or absent in EPI-ECs. GR silencing in EPI-ECs led to decreased CYP3A4, CYP2C9, and PXR expression. PXR silencing in EPI-ECs resulted in the specific downregulation of CYP3A4 expression. Our results indicate increased PXR and GR in primary ECs derived from human epileptic brains. PXR or GR may be responsible for a local drug brain metabolism sustained by abnormal CYP regulation."	"Sterile neuroinflammation is essential for the proper brain development and tissue repair. However, uncontrolled neuroinflammation plays a major role in the pathogenesis of various disease processes. The endogenous intracellular molecules so called damage-associated molecular patterns or alarmins or damage signals that are released by activated or necrotic cells are thought to play a crucial role in initiating an immune response. Sterile inflammatory response that occurs in Alzheimer's disease (AD), Parkinson's disease (PD), stroke, hemorrhage, epilepsy, or traumatic brain injury (TBI) creates a vicious cycle of unrestrained inflammation, driving progressive neurodegeneration. Neuroinflammation is a key mechanism in the progression (e.g., AD and PD) or secondary injury development (e.g., stroke, hemorrhage, stress, and TBI) of multiple brain conditions. Hence, it provides an opportunity for the therapeutic intervention to prevent progressive tissue damage and loss of function. The key for developing anti-neuroinflammatory treatment is to minimize the detrimental and neurotoxic effects of inflammation while promoting the beneficial and neurotropic effects, thereby creating ideal conditions for regeneration and repair. This review outlines how inflammation is involved in the pathogenesis of major nonpathogenic neuroinflammatory conditions and discusses the complex response of glial cells to damage signals. In addition, emerging experimental anti-neuroinflammatory drug treatment strategies are discussed."	"Over the past decades, the significance of cytochrome P450 (CYP) enzymes has expanded beyond their role as peripheral drug metabolizers in the liver and gut. CYP enzymes are also functionally active at the neurovascular interface. CYP expression is modulated by disease states, impacting cellular functions, detoxification, and reactivity to toxic stimuli and brain drug biotransformation. Unveiling the physiological and molecular complexity of brain P450 enzymes will improve our understanding of the mechanisms underlying brain drug availability, pharmacological efficacy, and neurotoxic adverse effects from pharmacotherapy targeting brain disorders."	"Drug toxicity is a hurdle to drug development and to clinical translation of basic research. Antiepileptic drugs such as carbamazepine (CBZ) and selective serotonin reuptake inhibitors such as sertraline (SRT) are commonly co-prescribed to patients with epilepsy and comorbid depression. Because SRT may interfere with cytochrome P450 (CYP) enzyme activity and CYPs have been implicated in the conversion of CBZ to reactive cytotoxic metabolites, we investigated in vitro models to determine whether SRT affects the neurotoxic potential of CBZ and the mechanisms involved. Human fetal brain-derived dopaminergic neurons, human brain microvascular endothelial cells (HBMECs), and embryonic kidney (HEK) cells were used to evaluate cytotoxicity of CBZ and SRT individually and in combination. Nitrite and glutathione (GSH) levels were measured with drug exposure. To validate the role of CYP3A4 in causing neurotoxicity, drug metabolism was compared to cell death in HEK CYP3A4 overexpressed and cells pretreated with the CYP3A4 inhibitor ketoconazole. In all cellular systems tested, exposure to CBZ (127 μM) or SRT (5 μM) alone caused negligible cytotoxicity. By contrast CBZ, tested at a much lower concentration (17 μM) in combination with SRT (5 μM), produced prominent cytotoxicity within 15 min exposure. In neurons and HBMECs, cytotoxicity was associated with increased nitrite levels, suggesting involvement of free radicals as a pathogenetic mechanism. Pretreatment of HBMECs with reduced GSH or with the GSH precursor N-acetyl-L-cysteine prevented cytotoxic response. In HEK cells, the cytotoxic response to the CBZ + SRT combination correlated with the rate of CBZ biotransformation and production of 2-hydroxy CBZ, further suggesting a causative role of reactive metabolites. In the same system, cytotoxicity was potentiated by overexpression of CYP3A4, and prevented by CYP3A4 inhibitor. These results demonstrate an unexpected neurotoxic interaction between CBZ and SRT, apparently related to increased CYP3A4-mediated production of reactive CBZ metabolites. The potential clinical implications of these findings are discussed."	"Brain drug bioavailability is regulated by the blood-brain barrier (BBB). It was recently suggested that cytochrome P450 (CYP) enzymes could act in concert with multidrug transporter proteins to regulate drug penetration and distribution into the diseased brain. The possibility that phase II metabolic enzymes could be expressed in the epileptic brain has been not evaluated. Phase II enzymes are involved in the metabolism of common antiepileptic drugs (AEDs). Phase II enzyme UGT1A4 brain expression was evaluated in temporal lobe resections from patients with epilepsy. UGT1A4 expression was determined by western blot and immunocytochemistry in primary cultures of human drug-resistant brain endothelial human brain epileptic endothelial cells (EPI-EC)s and commercially available control cells human brain microvascular endothelial cells (HBMECs). Lack of DNA condensation measured by 4',6-diamidino-2-phenylindole (DAPI) was used as a surrogate marker of cell viability and was correlated to UGT1A4 expression high performance liquid chromatography ultraviolet detection (HPLC-UV) was used to quantify lamotrigine metabolism by EPI-EC and HBMEC. The appearance of the specific lamotrigine metabolite, 2-n glucuronide (MET-1), was also evaluated. Lamotrigine and MET-1 levels were measured in selected surgical brain and matched blood samples. UGT1A4 expression was observed in BBB endothelial cells and neurons. Our quantification study revealed variable levels of UGT1A4 expression across the brain specimens analyzed. Neurons devoid of UGT1A4 expression displayed nuclear DAPI condensation, a sign of cellular distress. UGT1A4 overexpression in EPI-EC, as compared to HBMEC, was reflected by a proportional increase in lamotrigine metabolism. The lamotrigine metabolite, MET-1, was formed in vitro by EPI-EC and, to a lesser extent, by HBMEC. HPLC-UV measurements of brain and blood samples obtained from patients receiving lamotrigine prior to surgery revealed the presence of lamotrigine and its metabolites in the brain. These initial results suggest the presence of a phase II enzyme in the epileptic brain. Further studies are required to fully describe the pattern of brain UGT1A4 expression in relation to clinical variables and drug resistance."	"Drugs and their metabolites often produce undesirable effects. These may be due to a number of mechanisms, including biotransformation by P450 enzymes which are not exclusively expressed by hepatocytes but also by endothelial cells in brain from epileptics. The possibility thus exists that the potency of systemically administered central nervous system therapeutics can be modulated by a metabolic blood-brain barrier (BBB). Surgical brain specimens and blood samples (ex vivo) were obtained from drug-resistant epileptic subjects receiving the antiepileptic drug carbamazepine prior to temporal lobectomies. An in vitro blood-brain barrier model was then established using primary cell culture derived from the same brain specimens. The pattern of carbamazepine (CBZ) metabolism was evaluated in vitro and ex vivo using high performance liquid chromatography-mass spectroscopy. Accelerated mass spectroscopy was used to identify (14)C metabolites deriving from the parent (14)C-carbamazepine. Under our experimental conditions carbamazepine levels could not be detected in drug resistant epileptic brain ex situ; low levels of carbamazepine were detected in the brain side of the in vitro BBB established with endothelial cells derived from the same patients. Four carbamazepine-derived fractions were detected in brain samples in vitro and ex vivo. HPLC-accelerated mass spectroscopy confirmed that these signals derived from (14)C-carbamazepine administered as parental drug. Carbamazepine 10, 11 epoxide (CBZ-EPO) and 10, 11-dihydro-10, 11-dihydrooxy-carbamazepine (DiOH-CBZ) were also detected in the fractions analyzed. (14)C-enriched fractions were subsequently analyzed by mass spectrometry to reveal micromolar concentrations of quinolinic acid (QA). Remarkably, the disappearance of carbamazepine-epoxide (at a rate of 5% per hour) was comparable to the rate of quinolinic acid production (3% per hour). This suggested that quinolinic acid may be a result of carbamazepine metabolism. Quinolinic acid was not detected in the brain of patients who received antiepileptic drugs other than carbamazepine prior to surgery or in brain endothelial cultures obtained from a control patient. Our data suggest that a drug resistant BBB not only impedes drug access to the brain but may also allow the formation of neurotoxic metabolites."	"Drug penetration into the central nervous system (CNS) is controlled by the blood-brain barrier (BBB). Even though a number of strategies to circumvent the BBB and to improve drug access have been developed, drug resistance in CNS diseases remains an unmet clinical problem. We here review the mechanisms by which a healthy or pathological BBB influences drug distribution in the brain, with emphasis on the role of P450 metabolic enzymes and multi-drug transporter (MDT) proteins. In addition to the classic hepatic and gut biotransformation pathways, CNS expression of P450 enzymes may bear pharmacokinetic and pharmacodynamic significance exerting a metabolic activity and transforming parent drugs into specific products. We propose these mechanisms to play a major role in CNS drug resistant pathologies including refractory forms of epilepsy. Changes in the cerebrovascular hemodynamic conditions can affect expression of P450 enzymes and MDT proteins. This should be taken into account when developing in vitro experimental approaches to reproduce the physiological or pathological properties of the BBB. Finally, a link between P450 and MDT expression in the diseased brain and cell survival is discussed."	"Compelling evidence supports the presence of P450 enzymes (CYPs) in the central nervous system (CNS). However, little information is available on the localization and function of CYPs in the drug-resistant epileptic brain. We have evaluated the pattern of expression of the specific enzyme CYP3A4 and studied its co-localization with MDR1. We also determined whether an association exists between CYP3A4 expression and cell survival. Brain specimens were obtained from eight patients undergoing resection to relieve drug-resistant seizures or to remove a cavernous angioma. Each specimen was partitioned for either immunostaining or primary culture of human endothelial cells and astrocytes. Immunostaining was performed using anti-CYP3A4, MDR1, GFAP, or NeuN antibodies. High performance liquid chromatography-ultraviolet (HPLC-UV) analysis was used to quantify carbamazepine (CBZ) metabolism by these cells. CYP3A4 expression was correlated to DAPI) condensation, a marker of cell viability. Human embryonic kidney (HEK) cells were transfected with 4',6-diamidino-2-phenylindole (CYP3A4 to further evaluate the link between CYP3A4 levels, CBZ metabolism, and cell viability. CYP3A4 was expressed by blood-brain barrier (BBB) endothelial cells and by the majority of neurons (75 ± 10%). Fluorescent immunostaining showed coexpression of CYP3A4 and MDR1 in endothelial cells and neurons. CYP3A4 expression inversely correlated with DAPI nuclear condensation. CYP3A4 overexpression in HEK cells conferred resistance to cytotoxic levels of carbamazepine. CYP3A4 levels positively correlated with the amount of CBZ metabolized. CYP3A4 brain expression is not only associated with drug metabolism but may also represent a cytoprotective mechanism. Coexpression of CYP3A4 and MDR1 may be involved in cell survival in the diseased brain."
+"Gladson, Candece"	"Cancer Biology"	30094720	28912141	27858267	27270311	23936469	22396498	20947248	20379377	19737106	19549899	"Macroautophagy/autophagy is considered to play key roles in tumor cell evasion of therapy and establishment of metastases in breast cancer. High expression of LC3, a residual autophagy marker, in primary breast tumors has been associated with metastatic disease and poor outcome. FIP200/Atg17, a multi-functional pro-survival molecule required for autophagy, has been implicated in brain metastases in experimental models. However, expression of these proteins has not been examined in brain metastases from patients with breast cancer. In this retrospective study, specimens from 44 patients with brain metastases of infiltrating ductal carcinoma of the breast (IDC), unpaired samples from 52 patients with primary IDC (primary-BC) and 16 matched-paired samples were analyzed for LC3 puncta, expression of FIP200/Atg17, and p62 staining. LC3-puncta<sup>+</sup> tumor cells and FIP200/Atg17 expression were detected in greater than 90% of brain metastases but there were considerable intra- and inter-tumor differences in expression levels. High numbers of LC3-puncta<sup>+</sup> tumor cells in brain metastases correlated with a significantly shorter survival time in triple-negative breast cancer. FIP200/Atg17 protein levels were significantly higher in metastases that subsequently recurred following therapy. The percentages of LC3 puncta<sup>+</sup> tumor cells and FIP200/Atg17 protein expression levels, but not mRNA levels, were significantly higher in metastases than primary-BC. Meta-analysis of gene expression datasets revealed a significant correlation between higher FIP200(RB1CC1)/Atg17 mRNA levels in primary-BC tumors and shorter disease-free survival. These results support assessments of precision medicine-guided targeting of autophagy in treatment of brain metastases in breast cancer patients."	"Purpose: Bevacizumab, a humanized monoclonal antibody to VEGF, is used routinely in the treatment of patients with recurrent glioblastoma (GBM). However, very little is known regarding the effects of bevacizumab on the cells in the perivascular space in tumors.Experimental Design: Established orthotopic xenograft and syngeneic models of GBM were used to determine entry of monoclonal anti-VEGF-A into, and uptake by cells in, the perivascular space. Based on the results, we examined CD133<sup>+</sup> cells derived from GBM tumors in vitro Bevacizumab internalization, trafficking, and effects on cell survival were analyzed using multilabel confocal microscopy, immunoblotting, and cytotoxicity assays in the presence/absence of inhibitors.Results: In the GBM mouse models, administered anti-mouse-VEGF-A entered the perivascular tumor niche and was internalized by Sox2<sup>+</sup>/CD44<sup>+</sup> tumor cells. In the perivascular tumor cells, bevacizumab was detected in the recycling compartment or the lysosomes, and increased autophagy was found. Bevacizumab was internalized rapidly by CD133<sup>+</sup>/Sox2<sup>+</sup>-GBM cells in vitro through macropinocytosis with a fraction being trafficked to a recycling compartment, independent of FcRn, and a fraction to lysosomes. Bevacizumab treatment of CD133<sup>+</sup> GBM cells depleted VEGF-A and induced autophagy thereby improving cell survival. An inhibitor of lysosomal acidification decreased bevacizumab-induced autophagy and increased cell death. Inhibition of macropinocytosis increased cell death, suggesting macropinocytosis of bevacizumab promotes CD133<sup>+</sup> cell survival.Conclusions: We demonstrate that bevacizumab is internalized by Sox2<sup>+</sup>/CD44<sup>+</sup>-GBM tumor cells residing in the perivascular tumor niche. Macropinocytosis of bevacizumab and trafficking to the lysosomes promotes CD133<sup>+</sup> cell survival, as does the autophagy induced by bevacizumab depletion of VEGF-A. Clin Cancer Res; 23(22); 7059-71. ©2017 AACR."	"The circulating levels of soluble tumor necrosis factor receptor-1 (sTNF-R1) and sTNF-R2 are altered in numerous diseases, including several types of cancer. Correlations with the risk of progression in some cancers, as well as systemic manifestations of the disease and therapeutic side-effects, have been described. However, there is very little information on the levels of these soluble receptors in glioblastoma (GBM). Here, we report on an exploratory retrospective study of the levels of sTNF-Rs in the vascular circulation of patients with GBM. Banked samples were obtained from 112 GBM patients (66 untreated, newly-diagnosed patients and 46 with recurrent disease) from two institutions. The levels of sTNF-R1 in the plasma were significantly lower in patients with newly-diagnosed or recurrent GBM than apparently healthy individuals and correlated with the intensity of expression of TNF-R1 on the tumor-associated endothelial cells (ECs) in the corresponding biopsies. Elevated levels of sTNF-R1 in patients with recurrent, but not newly-diagnosed GBM, were significantly associated with a shorter survival, independent of age (p = 0.02) or steroid medication. In contrast, the levels of circulating sTNF-R2 were significantly higher in recurrent GBM than healthy individuals and there was no significant correlation with expression of TNF-R2 on the tumor-associated ECs or survival time. The results indicate that larger, prospective studies are warranted to determine the predictive value of the levels of sTNF-R1 in patients with recurrent GBM and the factors that regulate the levels of sTNF-Rs in the circulation in GBM patients."	"The secretion of soluble pro-angiogenic factors by tumor cells and stromal cells in the perivascular niche promotes the aggressive angiogenesis that is typical of glioblastoma (GBM). Here, we show that angiogenesis also can be promoted by a direct interaction between brain tumor cells, including tumor cells with cancer stem-like properties (CSCs), and endothelial cells (ECs). As shown in vitro, this direct interaction is mediated by binding of integrin αvβ3 expressed on ECs to the RGD-peptide in L1CAM expressed on CSCs. It promotes both EC network formation and enhances directed migration toward basic fibroblast growth factor. Activation of αvβ3 and bone marrow tyrosine kinase on chromosome X (BMX) is required for migration stimulated by direct binding but not for migration stimulated by soluble factors. RGD-peptide treatment of mice with established intracerebral GBM xenografts significantly reduced the percentage of Sox2-positive tumor cells and CSCs in close proximity to ECs, decreased integrin αvβ3 and BMX activation and p130CAS phosphorylation in the ECs, and reduced the vessel surface area. These results reveal a previously unrecognized aspect of the regulation of angiogenesis in GBM that can impact therapeutic anti-angiogenic targeting."	"Members of the Src family kinases (SFK) can modulate diverse cellular processes, including division, death and survival, but their role in autophagy has been minimally explored. Here, we investigated the roles of Lyn, a SFK, in promoting the survival of human glioblastoma tumor (GBM) cells in vitro and in vivo using lentiviral vector-mediated expression of constitutively-active Lyn (CA-Lyn) or dominant-negative Lyn (DN-Lyn). Expression of either CA-Lyn or DN-Lyn had no effect on the survival of U87 GBM cells grown under nutrient-rich conditions. In contrast, under nutrient-deprived conditions (absence of supplementation with L-glutamine, which is essential for growth of GBM cells, and FBS) CA-Lyn expression enhanced survival and promoted autophagy as well as inhibiting cell death and promoting proliferation. Expression of DN-Lyn promoted cell death. In the nutrient-deprived GBM cells, CA-Lyn expression enhanced AMPK activity and reduced the levels of pS6 kinase whereas DN-Lyn enhanced the levels of pS6 kinase. Similar results were obtained in vitro using another cultured GBM cell line and primary glioma stem cells. On propagation of the transduced GBM cells in the brains of nude mice, the CA-Lyn xenografts formed larger tumors than control cells and autophagosomes were detectable in the tumor cells. The DN-Lyn xenografts formed smaller tumors and contained more apoptotic cells. Our findings suggest that on nutrient deprivation in vitro Lyn acts to enhance the survival of GBM cells by promoting autophagy and proliferation as well as inhibiting cell death, and Lyn promotes the same effects in vivo in xenograft tumors. As the levels of Lyn protein or its activity are elevated in several cancers these findings may be of broad relevance to cancer biology. "	"Activation of TNF receptor 1 (TNF-R1) can generate signals that promote either apoptosis or survival. In this study, we show that these signals can be determined by the character of the extracellular matrix in the tumor microenvironment. Specifically, through studies of glioblastoma, we showed that TNFα stimulation induced apoptosis of primary brain endothelial cells (EC) attached to collagen or fibronectin (which engage integrins α2β1/α3β1 and α5β1, respectively), but did not induce apoptosis of ECs attached to laminin (which engages integrins α6β1 and α3β1). TNF-R1 expression was significantly higher in ECs in glioblastoma (GBM) tumors compared with ECs in normal brain specimens. TNFα was also expressed in GBM tumor-associated ECs, which was associated with longer patient survival. ECs plated on anti-integrin α2 or α3 antibody were susceptible to TNFα-induced apoptosis, whereas those plated on anti-integrin α6 antibody were not. Moreover, the ECs plated on laminin, but not collagen, expressed cellular FLICE inhibitory protein (cFLIP) and TNFα stimulation of laminin-attached cells in which cFLIP had been downregulated resulted in the induction of apoptosis. In contrast, attachment to laminin did not induce cFLIP expression in GBM tumor stem cells. Together, our findings indicate that the laminin receptor integrin α6β1 promotes the survival of brain ECs by inhibiting prodeath signaling by TNF-R1, in part by inducing cFLIP expression."	"Glioblastoma (GBM) is an extremely aggressive, infiltrative tumor with a poor prognosis. The regulatory approval of bevacizumab for recurrent GBM has confirmed that molecularly targeted agents have potential for GBM treatment. Preclinical data showing that SRC and SRC-family kinases (SFKs) mediate intracellular signaling pathways controlling key biologic/oncogenic processes provide a strong rationale for investigating SRC/SFK inhibitors, e.g., dasatinib, in GBM and clinical studies are underway. The activity of these agents against solid tumors suggests that they may also be useful in treating brain metastases. This article reviews the potential for using SRC/SFK inhibitors to treat GBM and brain metastases."	"Glioblastoma (GBM) is the most common primary brain tumor occurring in America. Despite recent advances in therapeutics, the prognosis for patients with newly diagnosed GBM remains dismal. As these tumors characteristically show evidence of angiogenesis (neovascularization) there has been great interest in developing anti-angiogenic therapeutic strategies for the treatment of patients with this disease and some anti-angiogenic agents have now been used for the treatment of patients with malignant glioma tumors. Although the results of these clinical trials are promising in that they indicate an initial therapeutic response, the anti-angiogenic therapies tested to date have not changed the overall survival of patients with malignant glioma tumors. This is due, in large part, to the development of resistance to these therapies. Ongoing research into key features of the neovasculature in malignant glioma tumors, as well as the general angiogenesis process, is suggesting additional molecules that may be targeted and an improved response when both the neovasculature and the tumor cells are targeted. Prevention of the development of resistance may require the development of anti-angiogenic strategies that induce apoptosis or cell death of the neovasculature, as well as an improved understanding of the potential roles of circulating endothelial progenitor cells and vascular co-option by tumor cells, in the development of resistance."	"The ongoing characterization of the genetic and epigenetic alterations in the gliomas has already improved the classification of these heterogeneous tumors and enabled the development of rodent models for analysis of the molecular pathways underlying their proliferative and invasive behavior. Effective application of the targeted therapies that are now in development will depend on pathologists' ability to provide accurate information regarding the genetic alterations and the expression of key receptors and ligands in the tumors. Here we review the mechanisms that have been implicated in the pathogenesis of the gliomas and provide examples of the cooperative nature of the pathways involved, which may influence the initial therapeutic response and the potential for development of resistance."	"Recombinant plasminogen kringle 5 (rK5) has been shown to induce apoptosis of dermal microvessel endothelial cells (MvEC) in a manner that requires glucose-regulated protein 78 (GRP78). As we are interested in antiangiogenic therapy for glioblastoma tumors, and the effectiveness of antiangiogenic therapy can be enhanced when combined with radiation, we investigated the proapoptotic effects of rK5 combined with radiation on brain MvEC. We found that rK5 treatment of brain MvEC induced apoptosis in a dose- and time-dependent manner and that prior irradiation significantly sensitized (500-fold) the cells to rK5-induced apoptosis. The rK5-induced apoptosis of both unirradiated and irradiated MvEC required expression of GRP78 and the low-density lipoprotein receptor-related protein 1 (LRP1), a scavenger receptor, based on down-regulation studies with small interfering RNA, and blocking studies with either a GRP78 antibody or a competitive inhibitor of ligand binding to LRP1. Furthermore, p38 mitogen-activated protein kinase was found to be a necessary downstream effector for rK5-induced apoptosis. These data suggest that irradiation sensitizes brain MvEC to the rK5-induced apoptosis and that this signal requires LRP1 internalization of GRP78 and the activation of p38 mitogen-activated protein kinase. Our findings suggest that prior irradiation would have a dose-sparing effect on rK5 antiangiogenic therapy for brain tumors and further suggest that the effects of rK5 would be tumor specific, as the expression of GRP78 protein is up-regulated on the brain MvEC in glioblastoma tumor biopsies compared with the normal brain."
+"Gong, Zihua"	"Cancer Biology"	28213517	29844495	27037360	25512557	24239288	21504906	21482717	20159562	19124460	30202049	"The 53BP1-dependent end-joining pathway plays a critical role in double strand break repair and is uniquely responsible for cellular sensitivity to poly(ADP-ribose) polymerase inhibitors (PARPi) in BRCA1-deficient cancers. We and others have investigated the downstream effectors of 53BP1, including replication timing regulatory factor 1 (RIF1) and Pax transactivation domain-interacting protein (PTIP), in the past few years to elucidate how loss of the 53BP1-dependent repair pathway results in PARPi resistance in BRCA1 patients. However, questions regarding the upstream regulation of the 53BP1 pathway remain unanswered. In this study, we identified the Tudor-interacting repair regulator (TIRR) that specifically associates with the ionizing radiation-induced foci formation region of 53BP1. 53BP1 and TIRR form a stable complex, which is required for their expression. Moreover, the 53BP1-TIRR complex dissociates after DNA damage, and this dissociation may be ataxia telangiectasia mutated-dependent. Similar to 53BP1, loss of TIRR restores PARPi resistance in BRCA1-deficient cells. Collectively, our data identified a novel 53BP1-TIRR complex in DNA damage response. TIRR may play both positive and negative roles in 53BP1 regulation. On the one hand, it stabilizes 53BP1 and thus positively regulates 53BP1. On the other hand, its association with 53BP1 prevents 53BP1 localization to sites of DNA damage, and thus TIRR is also an inhibitor of 53BP1."	"P53-binding protein 1 (53BP1) regulates the double-strand break (DSB) repair pathway choice. A recently identified 53BP1-binding protein Tudor-interacting repair regulator (TIRR) modulates the access of 53BP1 to DSBs by masking the H4K20me2 binding surface on 53BP1, but the underlying mechanism remains unclear. Here we report the 1.76-Å crystal structure of TIRR in complex with 53BP1 tandem Tudor domain. We demonstrate that the N-terminal region (residues 10-24) and the L8-loop of TIRR interact with 53BP1 Tudor through three loops (L1, L3, and L1'). TIRR recognition blocks H4K20me2 binding to 53BP1 Tudor and modulates 53BP1 functions in vivo. Structure comparisons identify a TIRR histidine (H106) that is absent from the TIRR homolog Nudt16, but essential for 53BP1 Tudor binding. Remarkably, mutations mimicking TIRR binding modules restore the disrupted binding of Nudt16-53BP1 Tudor. Our studies elucidate the mechanism by which TIRR recognizes 53BP1 Tudor and functions as a cellular inhibitor of the histone methyl-lysine readers."	"The mismatch repair (MMR) family is a highly conserved group of proteins that function in correcting base-base and insertion-deletion mismatches generated during DNA replication. Disruption of this process results in characteristic microsatellite instability (MSI), repair defects, and susceptibility to cancer. However, a significant fraction of MSI-positive cancers express MMR genes at normal levels and do not carry detectable mutation in known MMR genes, suggesting that additional factors and/or mechanisms may exist to explain these MSI phenotypes in patients. To systematically investigate the MMR pathway, we conducted a proteomic analysis and identified MMR-associated protein complexes using tandem-affinity purification coupled with mass spectrometry (TAP-MS) method. The mass spectrometry data have been deposited to the ProteomeXchange with identifier PXD003014 and DOI 10.6019/PXD003014. We identified 230 high-confidence candidate interaction proteins (HCIPs). We subsequently focused on MSH2, an essential component of the MMR pathway and uncovered a novel MSH2-binding partner, WDHD1. We further demonstrated that WDHD1 forms a stable complex with MSH2 and MSH3 or MSH6,i.e.the MutS complexes. The specific MSH2/WDHD1 interaction is mediated by the second lever domain of MSH2 and Ala(1123)site of WDHD1. Moreover, we showed that, just like MSH2-deficient cells, depletion of WDHD1 also led to 6-thioguanine (6-TG) resistance, indicating that WDHD1 likely contributes to the MMR pathway. Taken together, our study uncovers new components involved in the MMR pathway, which provides candidate genes that may be responsible for the development of MSI-positive cancers. "	"PARP inhibitors (PARPis) are being used in patients with BRCA1/2 mutations. However, doubly deficient BRCA1(-/-)53BP1(-/-) cells or tumors become resistant to PARPis. Since 53BP1 or its known downstream effectors, PTIP and RIF1 (RAP1-interacting factor 1 homolog), lack enzymatic activities directly implicated in DNA repair, we decided to further explore the 53BP1-dependent pathway. In this study, we uncovered a nuclease, Artemis, as a PTIP-binding protein. Loss of Artemis restores PARPi resistance in BRCA1-deficient cells. Collectively, our data demonstrate that Artemis is the major downstream effector of the 53BP1 pathway, which prevents end resection and promotes nonhomologous end-joining and therefore directly competes with the homologous recombination repair pathway. "	"Human TopBP1 is a key mediator protein involved in DNA replication checkpoint control. In this study, we report a specific interaction between TopBP1 and Bloom syndrome helicase (BLM) that is phosphorylation and cell-cycle dependent. Interestingly, TopBP1 depletion led to decreased BLM protein level and increased sister chromatid exchange (SCE). Moreover, our data indicated that BLM was ubiquitinated by E3 ligase MIB1 and degraded in G1 cells but was stabilized by TopBP1 in S phase cells. Depletion of MIB1 restored BLM protein level and rescued the elevated SCE phenotype in TopBP1-depleted cells. In addition, cells expressing an undegradable BLM mutant showed radiation sensitivity, probably by triggering end resection and inhibiting the nonhomologous end-joining (NHEJ) pathway in G1 phase. Altogether, these data suggest that, although BLM is downregulated in G1 phase in order to promote NHEJ-mediated DNA repair, it is stabilized by TopBP1 in S phase cells in order to suppress SCE and thereby prevent genomic instability."	"RFWD3 has E3 ligase activity in vitro, but its in vivo function remains unknown. In this study we identified RFWD3 as a novel replication protein A (RPA)-associated protein. Using purified proteins, we observed a direct interaction between RPA2 and RFWD3. Further analysis showed that RFWD3 is recruited to stalled replication forks and co-localizes with RPA2 in response to replication stress. Moreover, RFWD3 is important for ATR-dependent Chk1 activation in response to replication stress. Upon replication stress, deletion of RPA2 binding region on RFWD3 impairs its localization to stalled replication forks and decreases Chk1 activation. Taken together, our results suggest that RFWD3 and RPA2 functionally interact and participate in replication checkpoint control."	"Human TopBP1 is a major player in the control of the DNA replication checkpoint. In this study, we identified MDC1, a key checkpoint protein involved in the cellular response to DNA double-strand breaks, as a TopBP1-associated protein. The specific TopBP1-MDC1 interaction is mediated by the fifth BRCT domain of TopBP1 and the Ser-Asp-Thr (SDT) repeats of MDC1. In addition, we demonstrated that TopBP1 accumulation at stalled replication forks is promoted by the H2AX/MDC1 signaling cascade. Moreover, MDC1 is important for ATR-dependent Chk1 activation in response to replication stress. Collectively, our data suggest that MDC1 facilitates several important steps in both cellular DNA damage response and the DNA replication checkpoint."	"Human TopBP1 plays a critical role in the control of DNA replication checkpoint. In this study, we report a specific interaction between TopBP1 and BACH1/FANCJ, a DNA helicase involved in the repair of DNA crosslinks. The TopBP1/BACH1 interaction is mediated by the very C-terminal tandem BRCT domains of TopBP1 and S phase-specific phosphorylation of BACH1 at Thr 1133 site. Interestingly, we demonstrate that depletion of TopBP1 or BACH1 attenuates the loading of RPA on chromatin. Moreover, both TopBP1 and BACH1 are required for ATR-dependent phosphorylation events in response to replication stress. Taken together, our data suggest that BACH1 has an unexpected early role in replication checkpoint control. A specific interaction between TopBP1 and BACH1 is likely to be required for the extension of single-stranded DNA regions and RPA loading following replication stress, which is a prerequisite for the subsequent activation of replication checkpoint."	"Genomic stability in eukaryotic cells is maintained by the coordination of multiple cellular events including cell cycle checkpoint, DNA repair, transcription, and apoptosis after DNA damage. Pax2 transactivation domain interaction protein (PTIP), a protein that contains six BRCT domains, has been implicated in DNA damage response. In this study we showed that recruitment of PTIP to damaged chromatin depends on DNA damage signaling proteins gammaH2AX.MDC1.RNF8, which in turn facilitates sustained localization of PA1 (PTIP-associated protein 1) to sites of DNA break. Similar to PTIP, depletion of PA1 increases cellular sensitivity to ionizing radiation. Furthermore, we demonstrated that the N-terminal PA1 binding domain and the C-terminal focus-localization domain of PTIP are critical for PTIP function in DNA damage repair. Interestingly, although PTIP and PA1 associate with MLL (mixed lineage leukemia) complexes and participate in transcriptional regulation, this function of PTIP.PA1 in DNA damage response is likely to be independent of the MLL complexes. Taken together, we propose that a subset of PTIP.PA1 complex is recruited to DNA damage sites via the RNF8-dependent pathway and is required for cell survival in response to DNA damage."	"The roles and regulatory mechanisms of ferroptosis (a non-apoptotic form of cell death) in cancer remain unclear. The tumour suppressor BRCA1-associated protein 1 (BAP1) encodes a nuclear deubiquitinating enzyme to reduce histone 2A ubiquitination (H2Aub) on chromatin. Here, integrated transcriptomic, epigenomic and cancer genomic analyses link BAP1 to metabolism-related biological processes, and identify cystine transporter SLC7A11 as a key BAP1 target gene in human cancers. Functional studies reveal that BAP1 decreases H2Aub occupancy on the SLC7A11 promoter and represses SLC7A11 expression in a deubiquitinating-dependent manner, and that BAP1 inhibits cystine uptake by repressing SLC7A11 expression, leading to elevated lipid peroxidation and ferroptosis. Furthermore, we show that BAP1 inhibits tumour development partly through SLC7A11 and ferroptosis, and that cancer-associated BAP1 mutants lose their abilities to repress SLC7A11 and to promote ferroptosis. Together, our results uncover a previously unappreciated epigenetic mechanism coupling ferroptosis to tumour suppression."
+"Graham, Linda"	"Biomedical Engineering"	28835433	26858457	26125413	24820897	22047834	20347693	19939614	18585884	18495872	16141413	"Lipid oxidation products, including lysophosphatidylcholine (lysoPC), activate canonical transient receptor potential 6 (TRPC6) channels, and the subsequent increase in intracellular Ca<sup>2+</sup> leads to TRPC5 activation. The goal of this study is to elucidate the steps in the pathway between TRPC6 activation and TRPC5 externalization. Following TRPC6 activation by lysoPC, extracellular regulated kinase (ERK) is phosphorylated. This leads to phosphorylation of p47<sup>phox</sup> and subsequent NADPH oxidase activation with increased production of reactive oxygen species. ERK activation requires TRPC6 opening and influx of Ca<sup>2+</sup> as evidenced by the failure of lysoPC to induce ERK phosphorylation in TRPC6<sup>-/-</sup> endothelial cells. ERK siRNA blocks the lysoPC-induced activation of NADPH oxidase, demonstrating that ERK activation is upstream of NADPH oxidase. The reactive oxygen species produced by NADPH oxidase promote myosin light chain kinase (MLCK) activation with phosphorylation of MLC and TRPC5 externalization. Downregulation of ERK, NADPH oxidase, or MLCK with the relevant siRNA prevents TRPC5 externalization. Blocking MLCK activation prevents the prolonged rise in intracellular calcium levels and preserves endothelial migration in the presence of lysoPC."	"Lipid oxidation products, including lysophosphatidylcholine (lysoPC), activate canonical transient receptor potential 6 (TRPC6) channels leading to inhibition of endothelial cell (EC) migration in vitro and delayed EC healing of arterial injuries in vivo. The precise mechanism through which lysoPC activates TRPC6 channels is not known, but calmodulin (CaM) contributes to the regulation of TRPC channels. Using site-directed mutagenesis, cDNAs were generated in which Tyr(99) or Tyr(138) of CaM was replaced with Phe, generating mutant CaM, Phe(99)-CaM, or Phe(138)-CaM, respectively. In ECs transiently transfected with pcDNA3.1-myc-His-Phe(99)-CaM, but not in ECs transfected with pcDNA3.1-myc-His-Phe(138)-CaM, the lysoPC-induced TRPC6-CaM dissociation and TRPC6 externalization was disrupted. Also, the lysoPC-induced increase in intracellular calcium concentration was inhibited in ECs transiently transfected with pcDNA3.1-myc-His-Phe(99)-CaM. Blocking phosphorylation of CaM at Tyr(99) also reduced CaM association with the p85 subunit and subsequent activation of phosphatidylinositol 3-kinase (PI3K). This prevented the increase in phosphatidylinositol (3,4,5)-trisphosphate (PIP3) and the translocation of TRPC6 to the cell membrane and reduced the inhibition of EC migration by lysoPC. These findings suggest that lysoPC induces CaM phosphorylation at Tyr(99) by a Src family kinase and that phosphorylated CaM activates PI3K to produce PIP3, which promotes TRPC6 translocation to the cell membrane. "	"Endothelial cell (EC) migration is essential for healing of arterial injuries caused by angioplasty, but a high cholesterol diet inhibits endothelial repair. In vivo studies suggest that apolipoprotein A-I (apoA-I), the major protein constituent of HDL, is essential for normal healing of arterial injuries. ApoA-I mimetics, including 4F, have been designed to mimic the amphipathic portion of the apoA-I molecule. This study was undertaken to determine if 4F improves endothelial migration and healing. A razor scrape assay was used to analyze the effect of 4F on EC migration in vitro. Endothelial healing in vivo was assessed following electrical injury of carotid arteries in mice. Markers of oxidative stress were also examined. Lipid oxidation products inhibited EC migration in vitro, but preincubation with L-4F preserved EC migration. Endothelial healing of carotid arterial injuries in mice on a high cholesterol diet was delayed compared with mice on a chow diet with 27.8% vs. 48.2% healing, respectively, at 5 days. Administration of D-4F improved endothelial healing in mice on a high cholesterol diet to 43.4%. D-4F administration had no effect on lipid levels but decreased markers of oxidation. In vivo, there was a significant inverse correlation between endothelial healing and plasma markers of oxidative stress. These studies suggested that an apoA-I mimetic can improve endothelial healing of arterial injuries by decreasing oxidative stress."	"After arterial injury, endothelial cell (EC) migration is essential for healing, but lipid oxidation products activate TRPC6 and TRPC5 ion channels, leading to increased intracellular calcium and inhibition of EC migration in vitro. The objective of this study was to further evaluate the role of TRPC channels in EC migration in vitro and to validate in vitro findings in an in vivo model. Mouse aortic ECs were cultured, and the effect of lysophosphatidylcholine, the major lysophospholipid in oxidized low-density lipoprotein, on migration was assessed in a razor-scrape assay. EC healing after a carotid injury with electrocautery was evaluated in wild-type (WT), TRPC6(-/-), and TRPC5(-/-) mice receiving either a chow or high-cholesterol (HC) diet. Lysophosphatidylcholine inhibited EC migration of WT ECs to 22% of baseline and of TRPC5(-/-) ECs to 53% of baseline but had minimal effect on TRPC6(-/-) EC migration. Hypercholesterolemia severely impaired EC healing in vivo, with 51.4% ± 1.8% and 24.9% ± 2.0% of the injury resurfaced with ECs at 5 days in chow-fed and HC-fed WT mice, respectively (P &lt; .001). Hypercholesterolemia did not impair healing in TRPC6(-/-) mice, with coverage of 48.4% ± 3.4% and 46.8% ± 1.6% in chow-fed and HC-fed TRPC6(-/-) mice, respectively. Hypercholesterolemia had a reduced inhibitory effect in TRPC5(-/-) mice, with EC coverage of 51.7% ± 3.0% and 37.% ± 1.4% in chow-fed and HC-fed TRPC5(-/-) mice, respectively. Results suggest that activation of TRPC6 and TRPC5 channels is the key contributor to impaired endothelial healing of arterial injuries in hypercholesterolemic mice."	"Endothelial cell (EC) migration is essential for arterial healing after angioplasty. Oxidized low-density lipoproteins and oxidative stress decrease EC migration in vitro. The objective of this study was to determine the effect of hypercholesterolemia and oxidative stress on EC healing after an arterial injury. C57BL/6 wild-type mice were placed in one of eight groups: chow diet (n = 11), high-cholesterol (HC) diet (n = 11), chow diet plus paraquat (n = 11), HC diet plus paraquat (n = 11), chow diet plus N-acetylcysteine (NAC) (n = 11), HC diet plus NAC (n = 11), chow diet plus paraquat and NAC (n = 11), and HC diet plus paraquat and NAC (n = 11). After 2 weeks on the assigned diet with or without NAC, the carotid artery was injured using electrocautery. Animals in the paraquat groups were given 1 mg/kg intraperitoneally to increase oxidative stress. After 120 hours, Evans Blue dye was infused intravenously to stain the area of the artery that remained deendothelialized. This was used to calculate the percentage of re-endothelialization. Plasma and tissue samples were analyzed for measures of oxidative stress. The HC diet increased oxidative stress and reduced EC healing compared with a chow diet, with EC covering 26.8% ± 2.8% and 48.1% ± 5.2% (P &lt; .001) of the injured area, respectively. Administration of paraquat decreased healing in both chow and HC animals to 18.1% ± 3.5% (P &lt; .001) and 9.8% ± 4.6% (P &lt; .001), respectively. Pretreatment with NAC (120 mmol/L in drinking water) for 2 weeks prior to injury, to decrease oxidative stress, improved EC healing to 39.9% ± 5.7% (P &lt; .001) in hypercholesterolemic mice and to 30.7% ± 3.6% (P &lt; .001) in the paraquat group. NAC treatment improved healing to 24.6% ± 3.4% (P &lt; .001) in hypercholesterolemic mice treated with paraquat. Re-endothelialization of arterial injuries is reduced in hypercholesterolemic mice and is inversely correlated with oxidative stress. An oral antioxidant decreases oxidative stress and improves EC healing. Vascular injury following cardiovascular intervention, including cardiac and peripheral arterial angioplasty and stenting, is associated with inflammation and oxidative stress. Hypercholesterolemia is also associated with increased oxidative stress. Oxidative stress, regardless of the source, induces cellular dysfunction in endothelial and smooth muscle cells that reduce healing after arterial injury. Decreasing oxidative stress with an exogenously administered antioxidant can improve endothelial cell healing, and this is important to control intimal hyperplasia and reduce the thrombogenicity of the vessel."	"Transcription factor signal transducer and activator of transcription (STAT) 1 has been linked to a variety of pathologic states involved with matrix remodeling, but its role in aortic pathology has not been previously described. The current study hypothesized that STAT1 regulates aneurysmal degeneration and its role was evaluated in human abdominal aortic aneurysm (AAA) and in a mouse model of aortic dissection. Apolipoprotein E knockout mice (ApoE-/-) or ApoE/STAT1 double knockout mice (ApoE/STAT1-/-) were infused with 1000 ng/kg/min of angiotensin II. Systolic blood pressure (SBP) was measured in the rodent tail. At sacrifice, aortic diameters and extent of aneurysm formation were measured by digital microscopy. STAT1 and phosphorylated-STAT1 protein levels were assessed in ApoE-/- mice at 0, 7, 14, and 28 days (n = 8/time point) by enzyme-linked immunosorbent assay. Histology was performed using hematoxylin and eosin (H&amp;E) and Movat stains. Statistical analyses included chi(2) test, t test, and analysis of variance. STAT1 messenger RNA and total protein were greater in human AAA vs non-AAA controls. In addition, aneurysms occurred in 8%, 50%, and 80% of ApoE-/- mice at 7, 14, and 28 days, respectively. Total STAT1 levels were not altered during the course of angiotensin II infusion. Phosphorylated STAT1 levels peaked at 7 days with a 1.4-fold increase over baseline (P &lt; .05). Aneurysms occurred in 0%, 100%, and 100% of ApoE/STAT1-/- mice at 3, 5, and 28 days. In mice infused with angiotensin II for &gt;3 days, aortic rupture occurred more frequently in ApoE/STAT-/- mice (53% vs 19%, P &lt; .05) and at earlier time points (4.0 +/- 0.5 vs 9.2 +/- 0.77 days, P &lt; .05) vs ApoE-/- mice. SBP did not differ between the groups during angiotensin II infusion. By 28 days, aneurysms were larger in ApoE/STAT1-/- mice compared with ApoE-/- mice (2.7 +/- 0.4 vs 1.9 +/- 0.1 mm, P &lt; .05) and were more extensive. H&amp;E and Movat stain did not reveal differences in aortic wall structural content at baseline between ApoE-/- and ApoE/STAT1-/- mice. Both groups demonstrated equal disorganization in the aneurysmal state. Phosphorylated STAT1 is elevated during aneurysmal degeneration. Its loss is associated with a higher rate of acute aortic rupture and more extensive aneurysms in a mouse model of aortic dissection. Further investigation is necessary to determine whether these observations are secondary to an underlying aortic wall abnormality or alterations in vessel wall matrix remodeling."	"Limited endothelial cell (EC) coverage and anastomotic intimal hyperplasia contribute to thrombosis and failure of prosthetic grafts. Lipid accumulation and lipid oxidation are associated with decreased EC migration and intimal hyperplasia. The goal of this study was to assess the ability of antioxidants to improve graft healing in hypercholesterolemic animals. Rabbits were placed in one of four groups: chow plus N-acetylcysteine (NAC), chow plus probucol, chow with 1% cholesterol plus NAC, or chow with 1% cholesterol plus probucol. After 2 weeks, expanded polytetrafluoroethylene grafts (12 cm long x 4-mm internal diameter) were implanted in the abdominal aorta. Grafts were removed after 6 weeks and analyzed for cholesterol content, EC coverage, anastomotic intimal thickness, and the cellular composition of the neointima. Plasma samples were obtained to assess systemic oxidative stress. The data were compared with previously reported data from animals fed diets of chow and chow with 1% cholesterol. Prosthetic grafts from rabbits fed chow with 1% cholesterol had significantly greater anastomotic intimal thickening and lower EC coverage than grafts from rabbits fed a regular chow diet. In hypercholesterolemic rabbits, antioxidant therapy decreased global oxidative stress as evidenced by a 40% decrease in plasma thiobarbituric acid reactive substances. In rabbits fed the chow with 1% cholesterol diet, NAC decreased intimal hyperplasia at the proximal anastomosis by 29% and significantly increased graft EC coverage from 46% to 71% (P = .03). Following a similar pattern, probucol decreased intimal hyperplasia by 43% and increased graft EC coverage to 53% in hypercholesterolemic rabbits. Global oxidative stress and anastomotic intimal hyperplasia are increased, and endothelialization of prosthetic grafts is significantly reduced in rabbits fed a high-cholesterol diet. Antioxidant treatment improves EC coverage and decreases intimal hyperplasia. Reducing oxidative stress may promote healing of prosthetic grafts."	"The patency of prosthetic grafts is partly limited by incomplete endothelial cell coverage and development of anastomotic intimal hyperplasia. The goal of this study was to determine the effect of elevated cholesterol on prosthetic graft healing and the ability of alpha-tocopherol to improve healing. Rabbits were placed on one of four diets: chow, chow plus 1% cholesterol, chow plus alpha-tocopherol, or chow plus 1% cholesterol and alpha-tocopherol. After 2 weeks, expanded polytetrafluoroethylene grafts (12-cm long, 4-mm internal diameter) were implanted in the abdominal aorta. Grafts were removed after 6 weeks and analyzed for cholesterol and alpha-tocopherol content, endothelial coverage, anastomotic intimal thickness, and cellular composition of the neointima. At the time of graft implantation, plasma cholesterol was 34 +/- 4 mg/dL in the chow group and 689 +/- 30 mg/dL in the 1% cholesterol group (P &lt; .05). Grafts removed from hypercholesterolemic rabbits had marked intimal thickening, with an intima/graft thickness ratio of 0.76 +/- 0.29 compared with 0.14 +/- 0.06 in chow animals (P &lt; .05). Macrophage infiltrate was increased to 45 +/- 11 macrophages/0.625 mm(2) in grafts from hypercholesterolemic rabbits compared with 0 +/- 0.4 in controls (P &lt; .05). Endothelialization of grafts was lower in hypercholesterolemic rabbits than in the chow group, with endothelial cells covering 46% +/- 7% and 62% +/- 7% of the graft surface, respectively (P = .05). When alpha-tocopherol was added to the 1% cholesterol diet, the macrophage count decreased to 12 +/- 8, the intimal/graft thickness ratio decreased to 0.17 +/- 0.09, and endothelial coverage increased to 70% +/- 7% (P &lt; .05 compared with the high-cholesterol group). Anastomotic intimal hyperplasia is dramatically increased and endothelialization is reduced in rabbits on a high-cholesterol diet, but alpha-tocopherol supplementation blocks the augmented neointimal thickening and improves endothelial cell coverage."	"Canonical transient receptor potential (TRPC) channels are opened by classical signal transduction events initiated by receptor activation or depletion of intracellular calcium stores. Here, we report a novel mechanism for opening TRPC channels in which TRPC6 activation initiates a cascade resulting in TRPC5 translocation. When endothelial cells (ECs) are incubated in lysophosphatidylcholine (lysoPC), rapid translocation of TRPC6 initiates calcium influx that results in externalization of TRPC5. Activation of this TRPC6-5 cascade causes a prolonged increase in intracellular calcium concentration ([Ca(2+)](i)) that inhibits EC movement. When TRPC5 is down-regulated with siRNA, the lysoPC-induced rise in [Ca(2+)](i) is shortened and the inhibition of EC migration is lessened. When TRPC6 is down-regulated or EC from TRPC6(-/-) mice are studied, lysoPC has minimal effect on [Ca(2+)](i) and EC migration. In addition, TRPC5 is not externalized in response to lysoPC, supporting the dependence of TRPC5 translocation on the opening of TRPC6 channels. Activation of this novel TRPC channel cascade by lysoPC, resulting in the inhibition of EC migration, could adversely impact on EC healing in atherosclerotic arteries where lysoPC is abundant."	"Endothelial cell (EC) migration is a complex process requiring exquisitely coordinated focal adhesion assembly and disassembly. Protein kinase C (PKC) is known to regulate focal adhesion formation. Because lysophosphatidylcholine (lysoPC), a major lipid constituent of oxidized low-density lipoprotein, can activate PKC and inhibit EC migration, we explored the signaling cascade responsible for this inhibition. LysoPC increased PKCdelta activity, measured by in vitro kinase activity assay, and increased PKCdelta phosphorylation. Decreasing PKCdelta activation, using pharmacological inhibitors or antisense oligonucleotides, diminished the antimigratory effect of lysoPC. LysoPC-induced PKCdelta activation was followed by increased phosphorylation of the transmembrane proteoglycan, syndecan-4, and decreased binding of PKCalpha to syndecan-4, with a concomitant decrease in PKCalpha activity. A reciprocal relationship was noted between the interaction of PKCalpha and alpha-actinin with syndecan-4. These changes were temporally related to the observed changes in cell morphology and the inhibition of migration of ECs incubated with lysoPC. The data suggested that generalized activation of PKCdelta by lysoPC initiated a cascade of events, including phosphorylation of syndecan-4, displacement and decreased activity of PKCalpha, binding of alpha-actinin to syndecan-4, and disruption of the time- and site-specific regulation of focal adhesion complex assembly and disassembly required for normal cell migration."
+"Gupta, Neetu"	"Inflammation and Immunity"	30021765	27909060	26673134	25801911	25746045	24117813	24043890	23338238	22815291	21751808	"Genetic deletion of the Src family tyrosine kinase Lyn in mice recapitulates human systemic lupus erythematosus, characterized by hyperactive BCR signaling, splenomegaly, autoantibody generation, and glomerulonephritis. However, the molecular regulators of autoimmunity in Lyn-deficient mice and in human lupus remain poorly characterized. In this study, we report that conditional deletion of the membrane-cytoskeleton linker protein ezrin in B cells of Lyn-deficient mice (double knockout [DKO] mice) ameliorates B cell activation and lupus pathogenesis. B cells from DKO mice respond poorly to BCR stimulation, with severe downregulation of major signaling pathways. DKO mice exhibit reduced splenomegaly as well as significantly lower levels of autoantibodies against a variety of autoantigens, including dsDNA, histone, and chromatin. Leukocyte infiltration and deposition of IgG and complement component C3 in the kidney glomeruli of DKO mice are markedly reduced. Our data demonstrate that ezrin is a novel molecular regulator of B cell-associated lupus pathology."	"Intestinal ischemia/reperfusion (I/R) injury is a relatively common pathological condition that can lead to multi-organ failure and mortality. Regulatory mechanism for this disease is poorly understood, although it is established that circulating pathogenic natural IgM, which is primarily produced by B1a cells outside of the peritoneal cavity, are integrally involved. CD6 was originally identified as a marker for T cells and was later found to be present on some subsets of B cells in humans; however, whether CD6 plays any role in intestinal I/R-induced injury and, if so, the underlying mechanisms, remain unknown. Here we report that CD6<sup>-/-</sup> mice were significantly protected from intestinal inflammation and mucosal damage compared with WT mice in a model of intestinal I/R-induced injury. Mechanistically, we found that CD6 was selectively expressed on B1 cells outside of the bone marrow and peritoneal cavity and that pathogenic natural IgM titers were reduced in the CD6<sup>-/-</sup> mice in association with significantly decreased B1a cell population. Our results reveal an unexpected role of CD6 in the pathogenesis of intestinal IR-induced injury by regulating the self-renewal of B1a cells."	"IL-10 produced by B cells is important for controlling inflammation, thus underscoring the need to identify mechanisms regulating its production. In this study, we demonstrate that conditional deletion of ezrin in B cells increases IL-10 production induced by TLR4 ligation. The MyD88-independent Toll/IL-1R domain-containing adapter inducing IFN-β-IFN regulatory factor 3 pathway is required for Ezrin-deficient B cells to produce higher IL-10 upon LPS stimulation. Treatment of B cells with a novel small-molecule inhibitor of ezrin induces its dephosphorylation and increases LPS-induced NF-κB and IFN regulatory factor 3 activation and IL-10 secretion, indicating a role for threonine 567 phosphorylation of ezrin in limiting IL-10. Loss of ezrin in B cells results in dampened proinflammatory response to a sublethal dose of LPS in vivo, which is dependent on increased IL-10 production. Taken together, our data yield new insights into molecular and membrane-cytoskeletal regulation of B cell IL-10 production and reveal ezrin as a potential therapeutic target in inflammatory diseases. "	"Diffuse large B-cell lymphoma (DLBCL) is a hematological cancer associated with an aggressive clinical course. The predominant subtypes of DLBCL display features of chronic or tonic B-cell antigen receptor (BCR) signaling. However, it is not known whether the spatial organization of the BCR contributes to the regulation of pro-survival signaling pathways and cell growth. Here, we show that primary DLBCL tumors and patient-derived DLBCL cell lines contain high levels of phosphorylated Ezrin-Radixin-Moesin (ERM) proteins. The surface BCRs in both activated B cell and germinal B cell subtype DLBCL cells co-segregate with phosphoERM suggesting that the cytoskeletal network may support localized BCR signaling and contribute to pathogenesis. Indeed, ablation of membrane-cytoskeletal linkages by dominant-negative mutants, pharmacological inhibition and knockdown of ERM proteins disrupted cell surface BCR organization, inhibited proximal and distal BCR signaling, and reduced the growth of DLBCL cell lines. In vivo administration of the ezrin inhibitor retarded the growth of DLBCL tumor xenografts, concomitant with reduction in intratumor phosphoERM levels, dampened pro-survival signaling and induction of apoptosis. Our results reveal a novel ERM-based spatial mechanism that is coopted by DLBCL cells to sustain tumor cell growth and survival. "	"Dynamic reorganization of the cortical cytoskeleton is essential for numerous cellular processes, including B- and T-cell activation and migration. The ezrin-radixin-moesin (ERM) family of proteins plays structural and regulatory roles in the rearrangement of plasma membrane flexibility and protrusions through its members' reversible interaction with cortical actin filaments and the plasma membrane. Recent studies demonstrated that ERM proteins not only are involved in cytoskeletal organization but also offer a platform for the transmission of signals in response to a variety of extracellular stimuli through their ability to cross-link transmembrane receptors with downstream signaling components. In this review, we summarize present knowledge relating to ERMs and recent progress made toward elucidating a novel role for them in the regulation of B-cell function in health and disease. "	"Lymphocyte activation and migration involve large-scale actin cytoskeletal remodeling. The Ezrin-Radixin-Moesin (ERM) family proteins reversibly link the plasma membrane and cortical actin meshwork and mediate the dynamic nature of the membrane-cytoskeletal interface to facilitate remodeling. The reversibility of this linkage is controlled by the conformation of ERM proteins and depends on the phosphorylation of a conserved threonine residue in the actin-binding domain. Disruption of the phospho-cycling nature of ERM proteins through dominant negative and constitutively active mutants results in impaired lymphocyte migration and activation. In recent years, a novel role has emerged for ERM proteins as signaling scaffolds that can modulate B and T-cell activation through additional posttranslational modifications at tyrosine residues. Here, we highlight recent studies that have redefined the role of ERM proteins in lymphocyte activation and migration. We discuss how lymphocyte-specific knockouts of ERM proteins and high resolution imaging techniques have identified a novel function for them as rheostats that modulate the strength of antigen receptor signaling in B cells. Finally, we describe scenarios in which ERM protein function is coopted by pathogens for their own transmission and speculate on the potential of ERM proteins for regulating undesirable lymphocyte behaviors such as autoimmunity and malignancy. "	"Ezrin is a member of the ezrin-radixin-moesin family of membrane-actin cytoskeleton cross-linkers that participate in a variety of cellular processes. In B cells, phosphorylation of ezrin at different sites regulates multiple processes, such as lipid raft coalescence, BCR diffusion, microclustering, and endosomal JNK activation. In this study, we generated mice with conditional deletion of ezrin in the B cell lineage to investigate the physiological significance of ezrin's function in Ag receptor-mediated B cell activation and humoral immunity. B cell development, as well as the proportion and numbers of major B cell subsets in peripheral lymphoid organs, was unaffected by the loss of ezrin. Using superresolution imaging methods, we show that, in the absence of ezrin, BCRs respond to Ag binding by accumulating into larger and more stable signaling microclusters. Loss of ezrin led to delayed BCR capping and accelerated lipid raft coalescence. Although proximal signaling proteins showed stronger activation in the absence of ezrin, components of the distal BCR signaling pathways displayed distinct effects. Ezrin deficiency resulted in increased B cell proliferation and differentiation into Ab-secreting cells ex vivo and stronger T cell-independent and -dependent responses to Ag in vivo. Overall, our data demonstrate that ezrin regulates amplification of BCR signals and tunes the strength of B cell activation and humoral immunity. "	"The ezrin-radixin-moesin proteins regulate B lymphocyte activation via their effect on BCR diffusion and microclustering. This relies on their ability to dynamically tether the plasma membrane with actin filaments that is in turn facilitated by phosphorylation of the conserved threonine residue in the actin-binding domain. In this study, we describe a novel function of ezrin in regulating JNK activation that is mediated by phosphorylation of a tyrosine (Y353) residue that is unconserved with moesin and radixin. BCR, but not CD40, TLR4, or CXCR5 stimulation, induced phosphorylation of ezrin at Y353 in mouse splenic B cells. Ezrin existed in a preformed complex with Syk in unstimulated B cells and underwent Syk-dependent phosphorylation upon anti-IgM stimulation. Y353-phosphorylated ezrin colocalized with the BCR within minutes of stimulation and cotrafficked with the endocytosed BCRs through the early and late endosomes. The T567 residue of ezrin was rephosphorylated in late endosomes and at the plasma membrane at later times of BCR stimulation. Expression of a nonphosphorylatable Y353F mutant of ezrin specifically impaired JNK activation. BCR crosslinking induced the association of Y353-phosphorylated ezrin with JNK and its kinase MAPKK7, as well as spatial colocalization with phosphorylated JNK in the endosomes. The yellow fluorescent protein-tagged Y353F mutant displayed reduced colocalization with the endocytosed BCR as compared with wild-type ezrin-yellow fluorescent protein. Taken together, our data identify a novel role for ezrin as a spatial adaptor that couples JNK signaling components to the BCR signalosome, thus facilitating JNK activation."	"Contact hypersensitivity (CHS) is a T cell response to hapten skin challenge of sensitized individuals proposed to be mediated by hapten-primed CD8 cytolytic T cells. Effector CD8 T cell recruitment into hapten challenge sites to elicit CHS requires prior CXCL1- and CXCL2-mediated neutrophil infiltration into the site. We investigated whether neutrophil activities directing hapten-primed CD8 T cell skin infiltration in response to 2,4-dinitro-1-fluorobenzene (DNFB) required Fas ligand (FasL) and perforin expression. Although DNFB sensitization of gld/perforin-/- mice induced hapten-specific CD8 T cells producing IFN-γ and IL-17, these T cells did not infiltrate the DNFB challenge site to elicit CHS but did infiltrate the challenge site and elicit CHS when transferred to hapten-challenged naive wild-type recipients. Hapten-primed wild-type CD8 T cells, however, did not elicit CHS when transferred to naive gld/perforin-/- recipients. Wild-type bone marrow neutrophils expressed FasL and perforin, and when transferred to sensitized gld/perforin-/- mice, they restored hapten-primed CD8 T cell infiltration into the challenge site and CHS. The FasL/perforin-mediated activity of wild-type neutrophils induced the expression of T cell chemoattractants, CCL1, CCL2, and CCL5, within the hapten-challenged skin. These results indicate FasL/perforin-independent functions of hapten-primed CD8 T cells in CHS and identify new functions for neutrophils in regulating effector CD8 T cell recruitment and immune responses in the skin."	"The molecular regulation of recruitment and assembly of signalosomes near the B cell receptor (BCR) is poorly understood. We have previously demonstrated a role for the ERM family protein ezrin in regulating antigen-dependent lipid raft coalescence in B cells. In this study, we addressed the possibility that ezrin may collaborate with other adaptor proteins to regulate signalosome dynamics at the membrane. Using mass spectrometry-based proteomics analysis, we identified Myo18aα as a novel binding partner of ezrin. Myo18aα is an attractive candidate as it has several protein-protein interaction domains and an intrinsic motor activity. The expression of Myo18aα varied during B cell development in the bone marrow and in mature B cell subsets suggesting functional differences. Interestingly, BCR stimulation increased the association between ezrin and Myo18aα, and induced co-segregation of Myo18aα with the BCR and phosphotyrosine-containing proteins. Our data raise an intriguing possibility that the Myo18aα/ezrin complex may facilitate BCR-mediated signaling by recruiting signaling proteins that are in close proximity of the antigen receptor. Our study is not only significant with respect to understanding the molecular regulation of BCR signaling but also provides a broader basis for understanding the mechanism of action of ezrin in other cellular systems."
+"Hagstrom, Stephanie"	"Ophthalmic Research"	29721989	27099955	26987071	26427465	26427415	26202387	26028346	25491159	24813631	24811960	"Vitamin A/retinol (ROL) and its metabolites (retinoids) play critical roles in eye development and photoreception. Short-term dietary vitamin A deficiency (VAD) manifests clinically as night blindness, while prolonged VAD is known to cause retinal pigment epithelium (RPE) and photoreceptor degeneration. Therefore, sustained uptake of dietary vitamin A, for ocular retinoid production, is essential for photoreceptor health and visual function. The mechanisms influencing the uptake, storage, and supply of dietary vitamin A, for ocular retinoid production, however, are not fully understood. We investigated, in zebrafish, the physiological role of the retinol-binding protein receptor 2 (Rbpr2), for the uptake of dietary ROL, which is necessary for vision. NIH3T3 cells expressing zebrafish Rbpr2 showed plasma membrane localization patterns and were capable of ROL uptake from its bound form. Using whole-mount in situ hybridization, Rbpr2 was found to be expressed exclusively in the liver, intestine, and pancreas, of staged zebrafish larvae. At 5.5 days post fertilization, TALEN-generated rbpr2 mutants (rbpr2 <sup>-/-</sup> ) had smaller eyes and shorter OS lengths and showed loss of PNA (cones) and rhodopsin (rods) by immunofluorescence staining. Finally, tests for visual function using optokinetic response (OKR) showed no consistent OKR in rbpr2 <sup>-/-</sup> larval zebrafish. Our analysis, therefore, suggests that Rbpr2 is capable of ROL uptake and loss of this membrane receptor in zebrafish results in photoreceptor defects that adversely affect visual function."	"Single-nucleotide polymorphisms (SNPs) associated with the CFH, ARMS2, C3, LIPC, CFB, and C2 genes are associated with age-related macular degeneration (AMD); however, the association of these SNPs with angiographic features of neovascular AMD has been inconsistent in previous studies, and to date, no studies have addressed their association with features on optical coherence tomography. To evaluate the influence of genotype of SNPs previously associated with AMD on the phenotype of neovascular lesions. Participants for this cross-sectional study were recruited from the 1185 patients enrolled in the Comparison of Age-Related Macular Degeneration Treatments Trials (CATT), a randomized clinical trial. Eligibility criteria for CATT specified that eyes have choroidal neovascularization and visual acuity between 20/25 and 20/320. A subgroup of 835 patients provided blood samples from July 2010 through September 2011 and were genotyped for the SNPs rs1061170 (CFH), rs10490924 (ARMS2),rs2230199 (C3), rs10468017 (LIPC), rs4151667 (CFB), rs547154 (C2) using TaqMan SNP genotyping assays. Data analysis was initiated in November 2013 and completed in January 2016. Pretreatment ocular characteristics on fluorescein angiography (lesion type, area of neovascularization and total lesion, retinal angiomatous proliferation) and on time-domain optical coherence tomography (presence of intraretinal, subretinal, and subretinal pigment epithelium fluid; thickness at the foveal center of the retina, subretinal fluid, and subretinal tissue complex), visual acuity, and age. A total of 835 (73%) of 1150 CATT patients were genotyped. Mean age decreased with the number of risk alleles for CFH (P &lt; .001), ARMS2 (P &lt; .001), and C3 (P = .005). The following results were found as the number of risk alleles increased from 0 to 1 to 2. For CFH, mean total thickness decreased from 476 to 476 to 434 µm (P = .01; adjusted for age, sex, and smoking status). For ARMS2, the mean area of the total lesion increased from 2.0 to 2.8 to 2.4 mm2 (P = .03), the proportion with retinal angiomatous proliferation lesions increased from 8% to 10% to 12% (P = .05), and the proportion with intraretinal fluid increased from 72% to 71% to 82% (P = .008). For C3, the proportion with intraretinal fluid decreased from 78% to 69% to 64% (P = .001), and the mean retinal thickness decreased from 225 to 207 to 197 µm (P = .02). CFH, ARMS2, and C3 were associated with specific features of neovascularization at the time patients were enrolled in CATT. Previously identified associations of ARMS2 and CFH with type of choroidal neovascularization on fluorescein angiography were not confirmed. New associations with OCT features identified in CATT need confirmation to establish whether a true association exists. clinicaltrials.gov Identifier: NCT00593450."	"Inherited retinal disorders (IRDs) result in severe visual impairments in children and adults. A challenge in the field of retinal degenerations is identifying mechanisms of photoreceptor cell death related to specific genetic mutations. Mutations in the gene TULP1 have been associated with two forms of IRDs, early-onset retinitis pigmentosa (RP) and Leber congenital amaurosis (LCA). TULP1 is a cytoplasmic, membrane-associated protein shown to be involved in transportation of newly synthesized proteins destined for the outer segment compartment of photoreceptor cells; however, how mutant TULP1 causes cell death is not understood. In this study, we provide evidence that common missense mutations in TULP1 express as misfolded protein products that accumulate within the endoplasmic reticulum (ER) causing prolonged ER stress. In an effort to maintain protein homeostasis, photoreceptor cells then activate the unfolded protein response (UPR) complex. Our results indicate that the two major apoptotic arms of the UPR pathway, PERK and IRE1, are activated. Additionally, we show that retinas expressing mutant TULP1 significantly upregulate the expression of CHOP, a UPR signaling protein promoting apoptosis, and undergo photoreceptor cell death. Our study demonstrates that the ER-UPR, a known mechanism of apoptosis secondary to an overwhelming accumulation of misfolded protein, is involved in photoreceptor degeneration caused by missense mutations in TULP1. These observations suggest that modulating the UPR pathways might be a strategy for therapeutic intervention. "	"Photoreceptors (PRs) are highly polarized and compartmentalized cells with large amounts of proteins synthesized in the inner segment (IS) and transported to the outer segment (OS) and synaptic terminal. The PR-specific protein, Tulp1, is localized to the IS and synapse and is hypothesized to be involved in protein trafficking. To better understand the molecular processes that regulate protein trafficking in PRs, we aimed to identify compartment-specific Tulp1 binding partners. Serial tangential sectioning of Long Evans rat retinas was utilized to isolate the IS and synaptic PR compartments. Tulp1 binding partners in each of these layers were identified using co-immunoprecipitation (co-IP) with Tulp1 antibodies. The co-IP eluates were separated by SDS-PAGE, trypsinized into peptide fragments, and proteins were identified by liquid chromatography tandem mass spectrometry. In the IS, potential Tulp1-binding partners included cytoskeletal scaffold proteins, protein trafficking molecules, as well as members of the phototransduction cascade. In the synaptic region, the majority of interacting proteins identified were cytoskeletal. A separate subset of proteins were identified in both the IS and synapse including chaperones and family members of the GTPase activating proteins. Tulp1 has two distinct PR compartment-specific interactomes. Our results support the hypothesis that Tulp1 is involved in the trafficking of proteins from the IS to the OS and the continuous membrane remodeling and vesicle cycling at the synaptic terminal. "	"Mutations in the TULP1 gene are associated with early-onset retinitis pigmentosa (RP); however, the molecular mechanisms related to the deleterious effects of TULP1 mutations remains unknown. Several studies have shown that misfolded proteins secondary to genetic mutations can accumulate within the endoplasmic reticulum (ER), causing activation of the unfolded protein response (UPR) complex followed by cellular apoptosis. We hypothesize that TULP1 mutations produce misfolded protein products that accumulate in the ER and induce cellular apoptosis via the UPR. To test our hypothesis, we first performed three in-silico analyses of TULP1 missense mutations (I459K, R420P and F491L), which predicted misfolded protein products. Subsequently, the three mutant TULP1-GFP constructs and wild-type (wt) TULP1-GFP were transiently transfected into hTERT-RPE-1 cells. Staining of cells using ER tracker followed by confocal microscopy showed wt-TULP1 localized predominantly to the cytoplasm and plasma membrane. In contrast, all three mutant TULP1 proteins revealed cytoplasmic punctate staining which co-localized with the ER. Furthermore, western blot analysis of cells expressing mutant TULP1 proteins revealed induction of downstream targets of the ER-UPR complex, including BiP/GPR-78, phosphorylated-PERK (Thr980) and CHOP. Our in-vitro analyses suggest that mutant TULP1 proteins are misfolded and accumulate within the ER leading to induction of the UPR stress response complex. "	"To evaluate the histopathology in donor eyes from patients with autosomal dominant retinitis pigmentosa (ADRP) caused by p.P23H, p.P347T and p.P347L rhodopsin ( RHO ) gene mutations. Eyes from a 72-year-old male (donor 1), an 83-year-old female (donor 2), an 80-year-old female (donor 3), and three age-similar normal eyes were examined macroscopically, by scanning laser ophthalmoscopy and optical coherence tomography imaging. Perifoveal and peripheral pieces were processed for microscopy and immunocytochemistry with markers for photoreceptor cells. DNA analysis revealed RHO mutations c.68C&gt;A (p.P23H) in donor 1, c.1040C&gt;T (p.P347L) in donor 2 and c.1039C&gt;A (p.P347T) in donor 3. Histology of the ADRP eyes showed retinas with little evidence of stratified nuclear layers in the periphery and a prominent inner nuclear layer present in the perifoveal region in the p.P23H and p.P347T eyes, while it was severely atrophic in the p.P347L eye. The p.P23H and p.P347T mutations cause a profound loss of rods in both the periphery and perifovea, while the p.P347L mutation displays near complete absence of rods in both regions. All three rhodopsin mutations caused a profound loss of cones in the periphery. The p.P23H and p.P347T mutations led to the presence of highly disorganized cones in the perifovea. However, the p.P347L mutation led to near complete absence of cones also in the perifovea. Our results support clinical findings indicating that mutations affecting residue P347 develop more severe phenotypes than those affecting P23. Furthermore, our results indicate a more severe phenotype in the p.P347L retina as compared to the p.P347T retina."	"A previously published study demonstrated a pharmacogenetic association between the minor alleles of 2 VEGFR2 single nucleotide polymorphisms (SNPs) and greater improvement in visual acuity (VA) to treatment with ranibizumab, an anti-vascular endothelial growth factor (VEGF) drug, in patients with neovascular age-related macular degeneration (AMD). We evaluated whether this association was replicated among patients who participated in the Comparison of AMD Treatments Trials (CATT) or the Alternative Treatments to Inhibit VEGF in Patients with Age-Related Choroidal Neovascularisation (IVAN) trial. Cohort studies within randomized clinical trials. Eight hundred thirty-five patients participating in CATT and 512 patients participating in IVAN. Each patient was genotyped for the SNPs rs4576072 and rs6828477 in the VEGFR2 gene. Mean change in VA from baseline to 1 year after initiation of treatment with ranibizumab or bevacizumab. Differences in VA response between the patient group homozygous for the minor allele of each SNP and the other genotype groups were evaluated with analysis of variance. Differences in VA response by the number of minor alleles present for either SNP or both combined were evaluated with tests of linear trend. Analyses were conducted separately for CATT and IVAN participants and with both the studies combined. No statistically significant difference in mean change in VA was identified between genotypes of either SNP (P ≥ 0.05). Furthermore, a stepwise analysis failed to show a significant interaction for either SNP based on the number of minor alleles present. The lack of association was similar in both the CATT and IVAN cohorts and whether the analysis combined patients treated with either ranibizumab or bevacizumab or when restricted to patients treated with ranibizumab only. The CATT and IVAN data do not support a pharmacogenetic association between the 2 VEGFR2 SNPs, rs4576072 and rs6828477, and change in VA in response to anti-VEGF therapy in patients with neovascular AMD."	"To evaluate the retinal histopathology in donor eyes from patients with autosomal recessive retinitis pigmentosa (arRP) caused by EYS mutations. Eyes from a 72-year-old female (donor 1, family 1), a 91-year-old female (donor 2, family 2), and her 97-year-old sister (donor 3, family 2) were evaluated with macroscopic, scanning laser ophthalmoscopy (SLO) and optical coherence tomography (OCT) imaging. Age-similar normal eyes and an eye donated by donor 1's asymptomatic mother (donor 4, family 1) were used as controls. The perifovea and peripheral retina were processed for microscopy and immunocytochemistry with markers for cone and rod photoreceptor cells. DNA analysis revealed EYS mutations c.2259 + 1G &gt; A and c.2620C &gt; T (p.Q874X) in family 1, and c.4350_4356del (p.I1451Pfs*3) and c.2739-?_3244 + ?del in family 2. Imaging studies revealed the presence of bone spicule pigment in arRP donor retinas. Histology of all three affected donor eyes showed very thin retinas with little evidence of stratified nuclear layers in the periphery. In contrast, the perifovea displayed a prominent inner nuclear layer. Immunocytochemistry analysis demonstrated advanced retinal degenerative changes in all eyes, with near-total absence of rod photoreceptors. In addition, we found that the perifoveal cones were more preserved in retinas from the donor with the midsize genomic rearrangement (c.4350_4356del (p.I1451Pfs*3) and c.2739-?_3244 + ?del) than in retinas from the donors with the truncating (c.2259 + 1G &gt; A and c.2620C &gt; T (p.Q874X) mutations. Advanced retinal degenerative changes with near-total absence of rods and preservation of some perifoveal cones are observed in arRP donor retinas with EYS mutations. "	NA	NA
+"Hajjar, Adeline"	"Cardiovascular and Metabolic Sciences"	29020088	25350459	25229618	23071439	16936244	16100080	15321997	11912497	11123271	9666021	"To address the role of Toll-like receptor 4 (TLR4) single nucleotide polymorphisms (SNP) in lipopolysaccharide (LPS) recognition, we generated mice that differed only in the sequence of TLR4. We used a bacterial artificial chromosome (BAC) transgenic approach and TLR4/MD-2 knockout mice to specifically examine the role of human TLR4 variants in recognition of LPS. Using in vitro and in vivo assays we found that the expression level rather than the sequence of TLR4 played a larger role in recognition of LPS, especially hypoacylated LPS."	"The lysosomal membrane transporter, Nramp1, plays a key role in innate immunity and resistance to infection with intracellular pathogens such as non-typhoidal Salmonella (NTS). NTS-susceptible C57BL/6 (B6) mice, which express the mutant Nramp1D169 allele, are unable to control acute infection with Salmonella enterica serovar Typhimurium following intraperitoneal or oral inoculation. Introducing functional Nramp1G169 into the B6 host background, either by constructing a congenic strain carrying Nramp1G169 from resistant A/J mice (Nramp-Cg) or overexpressing Nramp1G169 from a transgene (Nramp-Tg), conferred equivalent protection against acute Salmonella infection. In contrast, the contributions of Nramp1 for controlling chronic infection are more complex, involving temporal and anatomical differences in Nramp1-dependent host responses. Nramp-Cg, Nramp-Tg and NTS-resistant 129×1/SvJ mice survived oral Salmonella infection equally well for the first 2-3 weeks, providing evidence that Nramp1 contributes to the initial control of NTS bacteremia preceding establishment of chronic Salmonella infection. By day 30, increased host Nramp1 expression (Tg&gt;Cg) provided greater protection as indicated by decreased splenic bacterial colonization (Tg&lt;Cg). However, despite controlling bacterial growth within MLN as effectively as 129×1/SvJ mice, Nramp-Cg and Nramp-Tg mice eventually succumbed to infection. These data indicate: 1) discrete, anatomically localized host resistance is conferred by Nramp1 expression in NTS-susceptible mice, 2) restriction of systemic bacterial growth in the spleens of NTS-susceptible mice is enhanced by Nramp1 expression and dose-dependent, and 3) host genes other than Nramp1 also contribute to the ability of NTS-resistant 129×1/SvJ mice to control bacterial replication during chronic infection. "	"A humanized TLR7/TLR8 transgenic mouse line was engineered for studies using TLR7/8 ligands as vaccine adjuvants. The mice developed a spontaneous immune-mediated phenotype prior to six months of age characterized by runting, lethargy, blepharitis, and corneal ulceration. Histological examination revealed a marked, multisystemic histiocytic infiltrate that effaced normal architecture. The histological changes were distinct from those previously reported in mouse models of systemic lupus erythematosus. When the mice were crossed with MyD88-/- mice, which prevented toll-like receptor signaling, the inflammatory phenotype resolved. Illness may be caused by constitutive activation of human TLR7 or TLR8 in the bacterial artificial chromosome positive mice as increased TLR7 and TLR8 expression or activation has previously been implicated in autoimmune disease. "	"Although lipopolysaccharide (LPS) stimulation through the Toll-like receptor (TLR)-4/MD-2 receptor complex activates host defense against Gram-negative bacterial pathogens, how species-specific differences in LPS recognition impact host defense remains undefined. Herein, we establish how temperature dependent shifts in the lipid A of Yersinia pestis LPS that differentially impact recognition by mouse versus human TLR4/MD-2 dictate infection susceptibility. When grown at 37°C, Y. pestis LPS is hypo-acylated and less stimulatory to human compared with murine TLR4/MD-2. By contrast, when grown at reduced temperatures, Y. pestis LPS is more acylated, and stimulates cells equally via human and mouse TLR4/MD-2. To investigate how these temperature dependent shifts in LPS impact infection susceptibility, transgenic mice expressing human rather than mouse TLR4/MD-2 were generated. We found the increased susceptibility to Y. pestis for &quot;humanized&quot; TLR4/MD-2 mice directly paralleled blunted inflammatory cytokine production in response to stimulation with purified LPS. By contrast, for other Gram-negative pathogens with highly acylated lipid A including Salmonella enterica or Escherichia coli, infection susceptibility and the response after stimulation with LPS were indistinguishable between mice expressing human or mouse TLR4/MD-2. Thus, Y. pestis exploits temperature-dependent shifts in LPS acylation to selectively evade recognition by human TLR4/MD-2 uncovered with &quot;humanized&quot; TLR4/MD-2 transgenic mice."	"Activation of pulmonary defenses against Pseudomonas aeruginosa requires myeloid differentiation factor 88 (MyD88), an adaptor for Toll-like receptor (TLR) signaling. To determine which TLRs mediate recognition of P. aeruginosa, we measured cytokine responses of bone marrow cells from wild-type mice and mice lacking TLR2 (TLR2(-/-)), TLR4 (TLR4(-/-)), TLR2 and TLR4 (TLR2/4(-/-)), or MyD88 (MyD88(-/-)) to wild-type P. aeruginosa and to fliC P. aeruginosa, which lacks the TLR5 ligand flagellin. Mice also were challenged with aerosolized bacteria to determine cytokine responses, lung inflammation, and bacterial clearance. TNF induction required MyD88 and was absent in TLR2/4(-/-) cells in response to fliC but not wild-type P. aeruginosa, whereas TLR2(-/-) cells exhibited augmented responses. In vivo, TLR4(-/-) mice responded to wild-type P. aeruginosa with reduced cytokine production and inflammation, but intact bacterial clearance, while TLR2(-/-) mice had partially impaired cytokine responses and delayed bacterial killing despite normal inflammation. When challenged with fliC, MyD88(-/-) mice failed to mount early cytokine and inflammatory responses or control bacterial replication, resulting in necrotizing lung injury and lethal disseminated infection. TLR4(-/-) and TLR2/4(-/-) mice responded to fliC infection with severely limited inflammatory and cytokine responses but intact bacterial clearance. TLR2(-/-) mice had partially reduced cytokine responses but augmented inflammation and preserved bacterial killing. These data indicate that TLR4- and flagellin-induced signals mediate most of the acute inflammatory response to Pseudomonas and that TLR2 has a counterregulatory role. However, MyD88-dependent pathways, in addition to those downstream of TLR2, TLR4, and TLR5, are required for pulmonary defense against P. aeruginosa."	"MyD88 is an adapter protein required for the induction of proinflammatory cytokines by most Toll-like receptors (TLR), and Pseudomonas aeruginosa expresses ligands for multiple TLRs. MyD88(-/-) (KO) mice are highly susceptible to aerosolized P. aeruginosa, failing to elicit an early inflammatory response and permitting a 3-log increase in bacterial CFU in the lungs by 24 h after infection. We hypothesized that alveolar macrophages are the first cells to recognize and kill aerosolized P. aeruginosa in an MyD88-dependent fashion due to their location within the airways. To determine which cells in the lungs mediate MyD88-dependent defenses against P. aeruginosa, we generated radiation bone marrow (BM) chimeras between MyD88KO and wild-type (WT) mice. MyD88KO mice transplanted with MyD88KO BM (MyD88KO--&gt;MyD88KO mice) displayed uncontrolled bacterial replication, whereas all other chimeras controlled the infection by 24 h. However, at 4 h, both MyD88KO--&gt;MyD88KO and WT--&gt;MyD88KO mice permitted intrapulmonary bacterial replication, whereas MyD88KO--&gt;WT and WT--&gt;WT mice did not, indicating that the source of BM had little impact on the early control of infection. Similarly, the genotype of the recipient rather than that of the BM donor determined early neutrophil recruitment to the lungs. Whereas intrapulmonary TNF-alpha and IL-1beta production were associated with WT BM, levels of the CXC chemokines MIP-2 and KC as well as GM-CSF were associated with recipient genotype. We conclude that lung parenchymal and BM-derived cells collaborate in the MyD88-dependent response to P. aeruginosa infection in the lungs in mice."	"The innate host response to lipopolysaccharide (LPS) obtained from Porphyromonas gingivalis is unusual in that different studies have reported that it can be an agonist for Toll-like receptor 2 (TLR2) as well as an antagonist or agonist for TLR4. In this report it is shown that P. gingivalis LPS is highly heterogeneous, containing more lipid A species than previously described. In addition, purification of LPS can preferentially fractionate these lipid A species. It is shown that an LPS preparation enriched for lipid A species at m/z 1,435 and 1,450 activates human and mouse TLR2, TLR2 plus TLR1, and TLR4 in transiently transfected HEK 293 cells coexpressing membrane-associated CD14. The HEK cell experiments further demonstrated that cofactor MD-2 was required for functional engagement of TLR4 but not of TLR2 nor TLR2 plus TLR1. In addition, serum-soluble CD14 effectively transferred P. gingivalis LPS to TLR2 plus TLR1, but poorly to TLR4. Importantly, bone marrow cells obtained from TLR2(-/-) and TLR4(-/-) mice also responded to P. gingivalis LPS in a manor consistent with the HEK results, demonstrating that P. gingivalis LPS can utilize both TLR2 and TLR4. No response was observed from bone marrow cells obtained from TLR2 and TLR4 double-knockout mice, demonstrating that P. gingivalis LPS activation occurred exclusively through either TLR2 or TLR4. Although the biological significance of the different lipid A species found in P. gingivalis LPS preparations is not currently understood, it is proposed that the presence of multiple lipid A species contributes to cell activation through both TLR2 and TLR4."	"Lipopolysaccharide (LPS) is the principal proinflammatory component of the Gram-negative bacterial envelope and is recognized by the Toll-like receptor 4 (TLR4)-MD-2 receptor complex. Bacteria can alter the acylation state of their LPS in response to environmental changes. One opportunistic bacterium, Pseudomonas aeruginosa, synthesizes more highly acylated (hexa-acylated) LPS structures during adaptation to the cystic fibrosis airway. Here we show that human, but not murine, TLR4-MD-2 recognizes this adaptation and transmits robust proinflammatory signals in response to hexa-acylated but not penta-acylated LPS from P. aeruginosa. Whereas responses to lipidIVA and taxol are dependent on murine MD-2, discrimination of P. aeruginosa LPS structures is mediated by an 82-amino-acid region of human TLR4 that is hypervariable across species. Thus, in contrast to mice, humans use TLR4 to recognize a molecular signature of bacterial-host adaptation to modulate the innate immune response."	"Toll-like receptor (TLR) 2 and TLR4 play important roles in the early, innate immune response to microbial challenge. TLR2 is preferentially involved in the inflammatory response to lipoteichoic acid, lipopeptides, and glycans from a variety of microbes, whereas TLR4 is essential for a complete response to LPSs. We report here that TLR2 transduces the response to phenol-soluble modulin, a factor secreted by Staphylococcus epidermidis. The TLR2-mediated response to this modulin was enhanced by TLR6 but inhibited by TLR1, indicating a functional interaction between these receptors. We also demonstrate that a response to phenol-soluble modulin mediated by TLR2 and TLR6 was more refractory to inhibition by TLR1 than one mediated by TLR2 alone."	"An efficient method for the isolation of human immunodeficiency virus type 1 (HIV-1) nucleic acids from dry cervical swabs was developed. HIV-1 gag and env were detected in 96% (25 of 26) and 81% (21 of 26), respectively, of the samples tested by PCR from HIV-1-seropositive women in a Kenyan cohort study. Eighty-eight percent of the swabs (22 of 25) were positive for gag RNA, and 85% (17 of 20) were positive for env RNA. Fewer than 1,000 copies of HIV-1 gag RNA were detected in four swabs in which a competitive quantitative PCR assay was used. The method described here may be useful for both qualitative and quantitative analyses of HIV RNA in mucosal secretions as well as amplification and cloning of full-length viral genes for functional studies."
+"Hamilton, Thomas"	"Inflammation and Immunity"	26134251	25484881	24920846	23519936	22167720	21822258	20430641	20080976	20042592	19155515	"Cellular stress enhances inflammatory cytokine gene expression by inducing cEBP homologous protein (CHOP). Engaging cell stress via thapsigargin induced CHOP and selectively prolonged lipopolysaccharide-stimulated interleukin-6 (IL-6) expression in bone marrow-derived macrophages from wild-type (WT) but not CHOP knockout (KO) mice. To determine the impact of this mechanism in vivo we employed dextran sodium sulfate (DSS)-induced colitis in irradiated mice reconstituted with bone marrow from WT or CHOP KO mice. WT recipients of CHOP KO bone marrow exhibited more rapid recovery from disease than did mice reconstituted with WT bone marrow as reflected in increased survival, reduced clinical scores, and colonic histopathology. No differences in mesenteric lymph node cell populations were observed between mice with WT or CHOP KO bone marrow during colitis. CD11b(+) macrophages infiltrating the lamina propria were, however, reduced in DSS-treated mice reconstituted with CHOP KO bone marrow. CHOP expression was observed within the infiltrating inflammatory CD11b(+) macrophages. Furthermore, IL-6 expression within the inflamed colon was significantly lower in mice with CHOP-deficient bone marrow. Our findings indicate that CHOP expression in myeloid cells plays an important role in determining the magnitude and duration of inflammatory response in vivo by modulating expression of proinflammatory cytokines such as IL-6 in infiltrating macrophages. "	"The scope of functional heterogeneity in macrophages has been defined by two polarized end states known as M1 and M2, which exhibit the proinflammatory activities necessary for host defense and the tissue repair activities required for restoration of homeostasis, respectively. Macrophage populations in different tissue locations exist in distinct phenotypic states across this M1/M2 spectrum and the development and abundance of individual subsets result from the local and systemic action of myeloid colony-stimulating factors (CSFs) including M-CSF and GM-CSF. These factors have relatively non-overlapping roles in the differentiation and maintenance of specific macrophage subsets. Furthermore, there is now evidence that CSFs may also regulate macrophage phenotype during challenge. Cell culture studies from multiple laboratories demonstrate that macrophages developed in the presence of GM-CSF exhibit amplified response to M1 polarizing stimuli while M-CSF potentiates responses to M2 stimuli. As a consequence, these factors can be important determinants of the magnitude and duration of both acute and chronic inflammatory pathology and may, therefore, be potential targets for therapeutic manipulation in specific human disease settings. "	"The impact of environmental stressors on the magnitude of specific chemokine gene expression was examined in mouse bone marrow-derived macrophages stimulated through various TLRs. Levels of TLR-stimulated CXCL1 and CXCL2 but not CXCL10 or CCL5 mRNAs were selectively enhanced (&gt;10-fold) in stressed macrophages. The amplification was also manifested for other proinflammatory cytokines, including TNF-α, IL-1α, and IL-6. Responses through TLR3 and TLR4 exhibited the greatest sensitivity, reflecting a requirement for Toll/IL-IR domain-containing adaptor-inducing IFN-β (TRIF), the adaptor protein selectively associated with these TLRs. IFN regulatory factor 3, a transcription factor that is downstream of TLR4/TRIF signaling, was not required for sensitivity to stress-induced chemokine amplification. c/EBP homologous protein and X box binding protein 1 have been reported to enhance inflammatory cytokine responses but are not required for amplification of TLR3/4-induced CXCL1 expression. Rather, receptor-interacting protein kinase 1, a kinase also linked with TLR3/4/TRIF signaling, is required and involves a stress-dependent increase in its abundance and ubiquitination. Whereas NF-κB activation is necessary for TLR-induced chemokine gene transcription, this factor does not appear to be the primary mechanistic target of environmental stress. The application of stress also enhanced chemokine expression in macrophages infiltrating the peritoneal cavity but was not observed in the resident peritoneal cells or in the liver. These findings identify novel mechanisms for modulating the magnitude and duration of selective TLR-induced chemokine and cytokine gene expression and further establish the importance of cell stress pathways in coordinating the outcomes of cellular and tissue injury. "	"Neutrophil trafficking to sites of injury or infection is regulated, in part, by the closely related GRO family of chemokines (CXCL1, -2, and -3). Expression of the GRO chemokine genes is known to be determined by transcriptional bursts in response to proinflammatory stimulation, but post-transcriptional mechanisms that regulate mRNA half-life are now recognized as important determinants. mRNA half-life is regulated via distinct sequence motifs and sequence-specific, RNA-binding proteins, whose function is subject to regulation by extracellular proinflammatory stimuli. Moreover, such mechanisms exhibit cell-type and stimulus dependency. We now present evidence that in nonmyeloid cells, GRO2 and GRO3 isoforms exhibit at least two patterns of mRNA instability that are distinguished by differential sensitivity to specific mRNA-destabilizing proteins and stimulus-mediated prolongation of mRNA half-life, respectively. Although the 3' UTR regions of GRO2 and GRO3 mRNAs contain multiple AREs, GRO2 has eight AUUUA pentamers, whereas GRO3 has seven. These confer quantitative differences in half-life and show sensitivity for TTP and KSRP but not SF2/ASF. Moreover, these AUUUA determinants do not confer instability that can be modulated in response to IL-1α. In contrast, IL-1α-sensitive instability for GRO2 and GRO3 is conferred by sequences located proximal to the 3' end of the 3'UTR that are independent of the AUUUA sequence motif. These regions are insensitive to TTP and KSRP but show reduced half-life mediated by SF2/ASF. These sequence-linked, post-transcriptional activities provide substantial mechanistic diversity in the control of GRO family chemokine gene expression."	"mRNAs encoding inflammatory chemokines that recruit neutrophils frequently exhibit short half-lives that serve to limit their expression under inappropriate conditions but are often prolonged to ensure adequate levels during inflammatory response. Extracellular stimuli that modulate the stability of such mRNAs may be the same as the transcriptional activator, as is the case with TLR ligands, or may cooperate with independent transcriptional stimuli, as with IL-17, which extends the half-life of TNF-induced transcripts. These different stimuli engage independent signaling pathways that target different instability mechanisms distinguished by dependence on different regulatory nucleotide sequence motifs within the 3'UTRs, which involve that action of different mRNA-binding proteins. The selective use of these pathways by different stimuli and in distinct cell populations provides the potential for tailoring of chemokine expression patterns to meet specific needs in different pathophysiologic circumstances."	"Interleukin 17 (IL-17) promotes the expression of chemokines and cytokines via the induction of gene transcription and post-transcriptional stabilization of mRNA. We show here that IL-17 enhanced the stability of chemokine CXCL1 mRNA and other mRNAs through a pathway that involved the adaptor Act1, the adaptors TRAF2 or TRAF5 and the splicing factor SF2 (also known as alternative splicing factor (ASF)). TRAF2 and TRAF5 were necessary for IL-17 to signal the stabilization of CXCL1 mRNA. Furthermore, IL-17 promoted the formation of complexes of TRAF5-TRAF2, Act1 and SF2 (ASF). Overexpression of SF2 (ASF) shortened the half-life of CXCL1 mRNA, whereas depletion of SF2 (ASF) prolonged it. SF2 (ASF) bound chemokine mRNA in unstimulated cells, whereas the SF2 (ASF)-mRNA interaction was much lower after stimulation with IL-17. Our findings define an IL-17-induced signaling pathway that links to the stabilization of selected mRNA species through Act1, TRAF2-TRAF5 and the RNA-binding protein SF2 (ASF)."	"Regulation of neutrophil chemokine gene expression represents an important feature in tissue inflammation. While chemokine gene transcription through the action of NFkappaB is recognized as an essential component of this process, it is now clear that post-transcriptional mechanisms, particularly the rates of decay of mature cytoplasmic mRNA, provides an essential component of this control. Chemokine and other cytokine mRNA half life is known to be controlled via adenine-uridine rich sequence motifs localized within 3' untranslated regions (UTRs), the most common of which contains one or more copies of the pentameric AUUUA sequence. In myeloid cells AUUUA sequences confer instability through the action of RNA binding proteins such as tristetraprolin (TTP). The resulting instability can be regulated in response to extra-cellular stimuli including Toll like receptor ligands that signal to control the function of TTP through pathways involving the activation of p38 MAP kinases. Recent findings indicate that substantial mechanistic diversity is operative in non-myeloid cells in response to alternate pro-inflammatory stimuli such as IL-17. These pathways target distinct instability sequences that do not contain the AUUUA pentamer motif, do not signal through p38 MAPK, and function independently of TTP."	"In this report, we demonstrate that cellular stress regulates expression of IFRD1 by a post-transcriptional control mechanism. IFRD1 mRNA and protein are elevated in tunicamycin-treated human kidney epithelial cells via stabilization of the mRNA. IFRD1 mRNA instability in resting cells requires translation of an upstream open reading frame (ORF) that represses translation of the major ORF. During stress response, the mRNA is stabilized via inhibition of translational initiation mediated by phosphorylated eIF2alpha. Translation of the major ORF of IFRD1 involves both leaky scanning at the upstream AUG codon and re-initiation at the major AUG codon and is not altered during stress. Finally, the instability mechanism depends upon UPF1, suggesting that it is related to nonsense-mediated decay. Importantly, the sequence and length of the upstream ORF are critical but do not need to code for a specific peptide. Moreover the sequence environment of the upstream ORF termination site is not an essential feature of instability. These features of decay collectively define a distinct upstream ORF-mediated instability mechanism whereby cellular stress can modulate specific gene expression through alteration of mRNA half-life."	"IL-17 contributes to inflammatory response in part by promoting enhanced expression of chemokines, such as CXCL1, by prolonging the t(1/2) of this constitutively unstable mRNA. Although IL-17 is a weak stimulus for transcription of the CXCL1 gene, it strongly potentiates message accumulation via stabilization when the mRNA is transcribed in cells stimulated with TNF. In myeloid cells, LPS-induced CXCL1 mRNA stabilization is dependent on AUUUA-containing sequence motifs that are recognized by the RNA binding protein tristetraprolin (TTP). Using deletion and site-specific mutagenesis, we report that IL-17-mediated stabilization of CXCL1 mRNA in nonmyeloid cells depends on a sequence that does not contain the AUUUA motif. Furthermore, a specific two-nucleotide mutation within this region markedly abrogates sensitivity for IL-17-mediated stabilization. Consistent with this finding, the IL-17-sensitive sequence does not exhibit increased instability in the presence of TTP, and CXCL1 mRNA remains unstable and can be stabilized in response to treatment with IL-17 in embryo fibroblasts from mice in which the TTP gene has been deleted. Whereas the RNA binding protein KSRP has been shown to participate in regulating the instability of human CXCL8 mRNA, inhibitory RNA-based reduction in KSRP does not effect the instability mediated by the IL-17-sensitive sequence motif. These findings suggest that IL-17-mediated chemokine mRNA stabilization in nonmyeloid cells uses a mechanism that is distinct from that operating to control AU-rich mRNA stability in myeloid cells."	"IL-17 alone is a relatively weak inducer of gene expression, but cooperates with other cytokines, including TNF-alpha, to generate a strong response in part via prolongation of mRNA t(1/2). Because TNFR-associated factor 6 (TRAF6) has been reported to be essential for signaling by IL-17, we examined its involvement in IL-17-mediated mRNA stabilization. Although overexpression of TRAF6 in HeLa cells activates NF-kappaB, it does not stabilize transfected KC mRNA. Furthermore, a dominant-negative TRAF6 abrogates NF-kappaB activation, but does not block IL-17-induced chemokine mRNA stabilization. IL-17 can stabilize KC and MIP-2 mRNAs comparably in TNF-alpha-treated mouse embryo fibroblasts from TRAF6(+/+) and TRAF6(-/-) mice. TRAF6 is known to couple upstream signals with activation of p38 MAPK and mitogen activated protein kinase activated protein kinase 2, both of which have been shown to be important for Toll/IL-1R-mediated mRNA stabilization in various cell types. Inhibition of p38 MAPK, however, does not block IL-17-induced KC mRNA stabilization, and IL-17 can stabilize KC mRNA equally in mouse embryo fibroblasts from both wild-type and mitogen activated protein kinase activated protein kinase 2/3 doubly-deficient mice. Finally, IL-17 can amplify the levels of multiple TNF-alpha-stimulated mRNAs in wild-type and TRAF6-deficient cells, but not in cells from Act1(-/-) mice. Collectively, these findings demonstrate the existence of a TRAF6/p38 MAPK-independent pathway that couples the IL-17R with enhanced mRNA stability. Because the most potent effects of IL-17 on gene expression are obtained in cooperation with other cytokines such as TNF-alpha, these findings suggest that this pathway is a major contributing mechanism for response to IL-17."
+"Hascall, Vincent"	"Biomedical Engineering"	30723159	30710015	25892563	25325979	24569987	24486448	24482224	23129777	19550149	19346253	"Mesangial expansion underlies diabetic nephropathy, leading to sclerosis and renal failure. The glycosaminoglycan heparin inhibits mesangial cell growth, but the molecular mechanism is unclear. Here, rat mesangial cells (RMCs) were growth-arrested in the G0/G1 phase of cell division, stimulated to divide in normal glucose (5.6 mm) or high glucose (25.6 mm) with or without heparin, and analyzed for glucose uptake. We observed that RMCs entering the G1 phase in normal glucose with or without heparin rapidly cease glucose uptake. RMCs entering G1 in high glucose sustained glucose uptake for the first 3 h, and high-glucose exposure of RMCs only in the first 8 h of G1 induced the formation of an extracellular monocyte-adhesive hyaluronan matrix after cell division was completed. Moreover, a low heparin concentration under high-glucose conditions blocked glucose uptake by 1 h into G1 Of note, glucose transporter 4 (glut4) localized on the RMC surface at G0/G1 and was internalized into G1 cells under normal glucose conditions with or without heparin within 30 min. We also noted that, under high-glucose conditions, glut4 remained on the RMC surface for at least 2 h into G1 and was internalized by 4 h without heparin and within 1 h with heparin. These results provide evidence that the influx of glucose in hyperglycemic dividing RMCs initiates intermediate glucose metabolism, leading to increased cytosolic UDP sugars, and induces abnormal intracellular hyaluronan synthesis during the S phase of cell division."	"Hyaluronan has a very simple structure. It is a linear glycosaminoglycan composed of disaccharide units of GlcNAc and d-glucuronic acid with alternating β-1,4 and β-1,3 glycosidic bonds that can be repeated 20,000 or more times, a molecular mass &gt;8 million Da, and a length &gt;20 μm. However, it has a very complex biology. It is a major, ubiquitous component of extracellular matrices involved in everything from fertilization, development, inflammations, to cancer. This JBC Review highlights some of these processes that were initiated through publications in the Journal of Biological Chemistry."	"Previous studies and ongoing research indicate the importance of an interaction between a putative receptor on dividing cells in hyperglycemia and the non-reducing end motifs of heparin stored in mast cell secretory granules and how this interaction prevents activation of hyaluronan synthesis in intracellular compartments and subsequent autophagy. This suggests a new role for endosomal heparanase in exposing this cryptic motif present in the initial large heparin chains on serglycin and in the highly sulfated (NS) domains of heparan sulfate. "	"During inflammation and developmental processes, heavy chains (HCs) from inter-α-inhibitor (IαI) are covalently transferred to hyaluronan (HA) via the enzyme tumor-necrosis-factor-stimulated-gene 6 (TSG-6) to form a HC-HA complex. In this manuscript, we describe a gel-based assay to detect HC-HA and TSG-6 activity in tissues. "	"Isolated rat bone marrow stromal cells cultured in osteogenic medium in which the normal 5.6 mm glucose is changed to hyperglycemic 25.6 mm glucose greatly increase lipid formation between 21-31 days of culture that is associated with decreased biomineralization, up-regulate expression of cyclin D3 and two adipogenic markers (CCAAT/enhancer binding protein α and peroxisome proliferator-activated receptor γ) within 5 days of culture, increase neutral and polar lipid synthesis within 5 days of culture, and form a monocyte-adhesive hyaluronan matrix through an endoplasmic reticulum stress-induced autophagic mechanism. Evidence is also provided that, by 4 weeks after diabetes onset in the streptozotocin-induced diabetic rat model, there is a large loss of trabecular bone mineral density without apparent proportional changes in underlying collagen matrices, a large accumulation of a hyaluronan matrix within the trabecular bone marrow, and adipocytes and macrophages embedded in this hyaluronan matrix. These results support the hypothesis that hyperglycemia in bone marrow diverts dividing osteoblastic precursor cells (bone marrow stromal cells) to a metabolically stressed adipogenic pathway that induces synthesis of a hyaluronan matrix that recruits inflammatory cells and establishes a chronic inflammatory process that demineralizes trabecular cancellous bone. "	"Hyaluronan, a macromolecular glycosaminoglycan, is normally synthesized by hyaluronan synthases at the plasma membrane using cytosolic UDP-GlcUA and UDP-GlcNAc substrates and extruding the elongating chain into the extracellular space. The cellular metabolism (synthesis and catabolism) of hyaluronan is dynamic. UDP-GlcNAc is also the substrate for O-GlcNAc transferase, which is central to the control of many cytosolic pathways. This Perspective outlines recent data for regulation of hyaluronan synthesis and catabolism that support a model that hyaluronan metabolism can be a rheostat for controlling an acceptable normal range of cytosolic UDP-GlcNAc concentrations in order to maintain normal cell functions. "	"Growth-arrested rat mesangial cells (RMCs) at a G0/G1 interphase stimulated to divide in hyperglycemic medium initiate intracellular hyaluronan synthesis that induces autophagy/cyclin D3-induced formation of a monocyte-adhesive extracellular hyaluronan matrix after completing cell division. This study shows that heparin inhibits the intracellular hyaluronan synthesis and autophagy responses, but at the end of cell division it induces synthesis of a much larger extracellular monocyte-adhesive hyaluronan matrix. Heparin bound to RMC surfaces by 1 h, internalizes into the Golgi/endoplasmic reticulum region by 2 h, and was nearly gone by 4 h. Treatment by heparin for only the first 4 h was sufficient for its function. Streptozotocin diabetic rats treated daily with heparin showed similar results. Glomeruli in sections of diabetic kidneys showed extensive accumulation of autophagic RMCs, increased hyaluronan matrix, and influx of macrophages over 6 weeks. Hyaluronan staining in the glomeruli of heparin-treated diabetic rats was very high at week 1 and decreased to near control level by 6 weeks without any RMC autophagy. However, the influx of macrophages by 6 weeks was as pronounced as in diabetic glomeruli. The results are as follows: 1) heparin blocks synthesis of hyaluronan in intracellular compartments, which prevents the autophagy and cyclin D3 responses thereby allowing RMCs to complete cell division and sustain function; 2) interaction of heparin with RMCs in early G1 phase is sufficient to induce signaling pathway(s) for its functions; and 3) influxed macrophages effectively remove the hyaluronan matrix without inducing pro-fibrotic responses that lead to nephropathy and proteinurea in diabetic kidneys. "	"We tested the hypothesis that the artificial addition of heavy chains from inter-α-inhibitor to hyaluronan (HA), by adding recombinant TSG-6 (TNF-stimulated gene-6) to the culture medium of murine airway smooth muscle (MASM) cells, would enhance leukocyte binding to HA cables produced in response to poly(I:C). As predicted, the addition of heavy chains to HA cables enhanced leukocyte adhesion to these cables, but it also had several unexpected effects. (i) It produced thicker, more pronounced HA cables. (ii) It increased the accumulation of HA in the cell-associated matrix. (iii) It decreased the amount of HA in the conditioned medium. Importantly, these effects were observed only when TSG-6 was administered in the presence of poly(I:C), and TSG-6 did not exert any effect on its own. Increased HA synthesis occurred during active, poly(I:C)-induced HA synthesis and did not occur when TSG-6 was added after poly(I:C)-induced HA synthesis was complete. MASM cells derived from TSG-6(-/-), HAS1/3(-/-), and CD44(-/-) mice amplified HA synthesis in response to poly(I:C) + TSG-6 in a manner similar to WT MASM cells, demonstrating that they are expendable in this process. We conclude that TSG-6 increases the accumulation of HA in the cell-associated matrix, partially by preventing its dissolution from the cell-associated matrix into the conditioned medium, but primarily by inducing HA synthesis."	"Hyperglycemia is one of the factors that induces autophagy. Our recent studies demonstrate that dividing cells in hyperglycemic medium initiate an intracellular stress response that involves synthesis of hyaluronan and its extrusion extracellularly into structures that are recognized by inflammatory cells. During the later phase, a complex with cyclin D3, CDK4 and C/EBPalpha was observed in the hyperglycemic cultures, and cyclin D3 and C/EBPalpha colocalized in coalesced perinuclear honeycomb-like structures with embedded hyaluronan. Further, microtubule-associated protein 1 light chain 3 (LC3), a marker for autophagy, colocalizes with these structures. These results suggest that cyclin D3 is a central coordinator that controls the organization of a complex set of proteins that regulate autophagy and subsequent formation of the monocyte-adhesive hyaluronan matrix. However, the early intracellular accumulation of hyaluronan could have a critical role in initiating or regulating these downstream events."	"The importance of the pathological changes in proteoglycans has driven the need to study and design novel chemical tools to control proteoglycan synthesis. Accordingly, we tested the fluorinated analogue of glucosamine (4-fluoro-N-acetyl-glucosamine (4-F-GlcNAc)) on the synthesis of heparan sulfate (HS) and chondroitin sulfate (CS) by murine airway smooth muscle (ASM) cells in the presence of radiolabeled metabolic precursors. Secreted and cell-associated CS and HS were assessed for changes in size by Superose 6 chromatography. Treatment of ASM cells with 4-F-GlcNAc (100 microM) reduced the quantity (by 64.1-76.6%) and decreased the size of HS/CS glycosaminoglycans associated with the cell layer (K(av) shifted from 0.30 to 0.45). The quantity of CS secreted into the medium decreased by 65.7-73.0%, and the size showed a K(av) shift from 0.30 to 0.50. Treatment of ASM cells with 45 microM and 179 microM 4-F-GlcNAc in the presence of a stimulator of CS synthesis, 4-methylumbelliferyl-beta-D-xyloside, reduced the amount of the xyloside-CS chains by 65.4 and 87.0%, respectively. The size of xyloside-CS chains synthesized in the presence of 4-F-GlcNAc were only slightly larger than those with xyloside treatment alone (K(av) of 0.55 compared with that of 0.6). The effects of 4-F-GlcNAc to inhibit CS synthesis were not observed with equimolar concentrations of glucosamine. We propose that 4-F-GlcNAc inhibits CS synthesis by inhibiting 4-epimerization of UDP-GlcNAc to UDP-GalNAc, thereby depleting one of the substrates required, whereas HS elongation is inhibited by truncation when the nonreducing terminus of the growing chain is capped with 4-F-GlcNAc."
+"Hazen, Stanley"	"Cardiovascular and Metabolic Sciences"	31023434	30940489	30689425	30535398	30530985	30410105	30359185	30082863	29981269	29777744	"Despite major strides in reducing cardiovascular disease (CVD) burden with modification of classic CVD risk factors, significant residual risks remain. Recent discoveries that linked intestinal microbiota and CVD have broadened our understanding of how dietary nutrients may affect cardiovascular health and disease. Although next-generation sequencing techniques can identify gut microbial community participants and provide insights into microbial composition shifts in response to physiological responses and dietary exposures, provisions of prebiotics or probiotics have yet to show therapeutic benefit for CVD. Our evolving understanding of intestinal microbiota-derived physiological modulators (e.g., short-chain fatty acids) and pathogenic mediators (e.g., trimethylamine N-oxide) of host disease susceptibility have created novel potential therapeutic opportunities for improved cardiovascular health. This review discusses the roles of human intestinal microbiota in normal physiology, their associations with CVD susceptibilities, and the potential of modulating intestinal microbiota composition and metabolism as a novel therapeutic target for CVD."	"Dietary nutrient intake and its metabolism by the gut microbiome have recently been implicated in cardiovascular disease (CVD) risk. In particular, trimethylamine N-oxide (TMAO), a metabolite of the gut microbiota, has been shown to be a predictor of incident CVD events. Elevated levels of branched-chain amino acids (BCAA) have also been associated with an increased propensity for insulin resistance. To study the association of dietary intake with systemic TMAO, its nutrient precursors, and BCAA levels on fasting plasma levels of TMAO and its nutrient precursors and BCAA, we conducted an exploratory post-hoc analysis of 3 popular diets - high fat (Atkins), Mediterranean (South Beach), and very low fat (Ornish) - using plasma samples from a prior randomized, crossover study, with each isocaloric dietary phase lasting 4 weeks. Metabolites were quantified using stable isotope dilution HPLC with on-line tandem mass spectrometry. Compared to the low fat Ornish phase, the high fat Atkins dietary phase was characterized by increased levels of TMAO (3.3 vs. 1.8 μM, p = 0.01), and the BCAA valine (272.8 vs. 235.8 μM, p = 0.005) and leucine (105.9 vs. 96.4 μM, p = 0.01). The high fat Atkins dietary phase was also associated with higher levels of TMAO (3.3 vs 1.6 μM, p = 0.04), valine (272.8 vs. 240.7 μM, p = 0.004), and leucine (105.9 vs. 96.4 μM, p = 0.01) compared to baseline. These data suggest that over a 4-week interval, a saturated fat diet that is predominantly animal-based, compared to an isocaloric, low fat, predominantly plant-based diet, is associated with heightened risk for cardiometabolic derangements, as monitored by a higher plasma levels of both TMAO and BCAA."	NA	"Carnitine and choline are major nutrient precursors for gut microbiota-dependent generation of the atherogenic metabolite, trimethylamine N-oxide (TMAO). We performed randomized-controlled dietary intervention studies to explore the impact of chronic dietary patterns on TMAO levels, metabolism and renal excretion. Volunteers (N = 113) were enrolled in a randomized 2-arm (high- or low-saturated fat) crossover design study. Within each arm, three 4-week isocaloric diets (with washout period between each) were evaluated (all meals prepared in metabolic kitchen with 25% calories from protein) to examine the effects of red meat, white meat, or non-meat protein on TMAO metabolism. Trimethylamine N-oxide and other trimethylamine (TMA) related metabolites were quantified at the end of each diet period. A random subset (N = 13) of subjects also participated in heavy isotope tracer studies. Chronic red meat, but not white meat or non-meat ingestion, increased plasma and urine TMAO (each &gt;two-fold; P &lt; 0.0001). Red meat ingestion also significantly reduced fractional renal excretion of TMAO (P &lt; 0.05), but conversely, increased fractional renal excretion of carnitine, and two alternative gut microbiota-generated metabolites of carnitine, γ-butyrobetaine, and crotonobetaine (P &lt; 0.05). Oral isotope challenge revealed red meat or white meat (vs. non-meat) increased TMA and TMAO production from carnitine (P &lt; 0.05 each) but not choline. Dietary-saturated fat failed to impact TMAO or its metabolites. Chronic dietary red meat increases systemic TMAO levels through: (i) enhanced dietary precursors; (ii) increased microbial TMA/TMAO production from carnitine, but not choline; and (iii) reduced renal TMAO excretion. Discontinuation of dietary red meat reduces plasma TMAO within 4 weeks."	"l-Carnitine, an abundant nutrient in red meat, accelerates atherosclerosis in mice via gut microbiota-dependent formation of trimethylamine (TMA) and trimethylamine N-oxide (TMAO) via a multistep pathway involving an atherogenic intermediate, γ-butyrobetaine (γBB). The contribution of γBB in gut microbiota-dependent l-carnitine metabolism in humans is unknown. Omnivores and vegans/vegetarians ingested deuterium-labeled l-carnitine (d3-l-carnitine) or γBB (d9-γBB), and both plasma metabolites and fecal polymicrobial transformations were examined at baseline, following oral antibiotics, or following chronic (≥2 months) l-carnitine supplementation. Human fecal commensals capable of performing each step of the l-carnitine→γBB→TMA transformation were identified. Studies with oral d3-l-carnitine or d9-γBB before versus after antibiotic exposure revealed gut microbiota contribution to the initial 2 steps in a metaorganismal l-carnitine→γBB→TMA→TMAO pathway in subjects. Moreover, a striking increase in d3-TMAO generation was observed in omnivores over vegans/vegetarians (&gt;20-fold; P = 0.001) following oral d3-l-carnitine ingestion, whereas fasting endogenous plasma l-carnitine and γBB levels were similar in vegans/vegetarians (n = 32) versus omnivores (n = 40). Fecal metabolic transformation studies, and oral isotope tracer studies before versus after chronic l-carnitine supplementation, revealed that omnivores and vegans/vegetarians alike rapidly converted carnitine to γBB, whereas the second gut microbial transformation, γBB→TMA, was diet inducible (l-carnitine, omnivorous). Extensive anaerobic subculturing of human feces identified no single commensal capable of l-carnitine→TMA transformation, multiple community members that converted l-carnitine to γBB, and only 1 Clostridiales bacterium, Emergencia timonensis, that converted γBB to TMA. In coculture, E. timonensis promoted the complete l-carnitine→TMA transformation. In humans, dietary l-carnitine is converted into the atherosclerosis- and thrombosis-promoting metabolite TMAO via 2 sequential gut microbiota-dependent transformations: (a) initial rapid generation of the atherogenic intermediate γBB, followed by (b) transformation into TMA via low-abundance microbiota in omnivores, and to a markedly lower extent, in vegans/vegetarians. Gut microbiota γBB→TMA/TMAO transformation is induced by omnivorous dietary patterns and chronic l-carnitine exposure. ClinicalTrials.gov NCT01731236. NIH and Office of Dietary Supplements grants HL103866, HL126827, and DK106000, and the Leducq Foundation."	"Advances in our understanding of how the gut microbiota contributes to human health and diseases have expanded our insight into how microbial composition and function affect the human host. Heart failure is associated with splanchnic circulation congestion, leading to bowel wall oedema and impaired intestinal barrier function. This situation is thought to heighten the overall inflammatory state via increased bacterial translocation and the presence of bacterial products in the systemic blood circulation. Several metabolites produced by gut microorganisms from dietary metabolism have been linked to pathologies such as atherosclerosis, hypertension, heart failure, chronic kidney disease, obesity, and type 2 diabetes mellitus. These findings suggest that the gut microbiome functions like an endocrine organ by generating bioactive metabolites that can directly or indirectly affect host physiology. In this Review, we discuss several newly discovered gut microbial metabolic pathways, including the production of trimethylamine and trimethylamine N-oxide, short-chain fatty acids, and secondary bile acids, that seem to participate in the development and progression of cardiovascular diseases, including heart failure. We also discuss the gut microbiome as a novel therapeutic target for the treatment of cardiovascular disease, and potential strategies for targeting intestinal microbial processes."	"Gut microbes influence cardiovascular disease and thrombosis risks through the production of trimethylamine N-oxide (TMAO). Microbiota-dependent generation of trimethylamine (TMA)-the precursor to TMAO-is rate limiting in the metaorganismal TMAO pathway in most humans and is catalyzed by several distinct microbial choline TMA-lyases, including the proteins encoded by the cutC/D (choline utilization C/D) genes in multiple human commensals. Direct demonstration that the gut microbial cutC gene is sufficient to transmit enhanced platelet reactivity and thrombosis potential in a host via TMA/TMAO generation has not yet been reported. Herein, we use gnotobiotic mice and a series of microbial colonization studies to show that microbial cutC-dependent TMA/TMAO production is sufficient to transmit heightened platelet reactivity and thrombosis potential in a host. Specifically, we examine in vivo thrombosis potential employing germ-free mice colonized with either high TMA-producing stable human fecal polymcrobial communities or a defined CutC-deficient background microbial community coupled with a CutC-expressing human commensal±genetic disruption of its cutC gene (ie, Clostridium sporogenes Δ cutC). Collectively, these studies point to the microbial choline TMA-lyase pathway as a rational molecular target for the treatment of atherothrombotic heart disease."	"Trimethylamine N-oxide (TMAO) is a gut microbiota-derived metabolite that enhances both platelet responsiveness and in vivo thrombosis potential in animal models, and TMAO plasma levels predict incident atherothrombotic event risks in human clinical studies. TMAO is formed by gut microbe-dependent metabolism of trimethylamine (TMA) moiety-containing nutrients, which are abundant in a Western diet. Here, using a mechanism-based inhibitor approach targeting a major microbial TMA-generating enzyme pair, CutC and CutD (CutC/D), we developed inhibitors that are potent, time-dependent, and irreversible and that do not affect commensal viability. In animal models, a single oral dose of a CutC/D inhibitor significantly reduced plasma TMAO levels for up to 3 d and rescued diet-induced enhanced platelet responsiveness and thrombus formation, without observable toxicity or increased bleeding risk. The inhibitor selectively accumulated within intestinal microbes to millimolar levels, a concentration over 1-million-fold higher than needed for a therapeutic effect. These studies reveal that mechanism-based inhibition of gut microbial TMA and TMAO production reduces thrombosis potential, a critical adverse complication in heart disease. They also offer a generalizable approach for the selective nonlethal targeting of gut microbial enzymes linked to host disease limiting systemic exposure of the inhibitor in the host."	"Essentials Microbe-dependent production of trimethylamine N-oxide (TMAO) contributes to thrombosis risk. The impact of host flavin monooxygenase 3 (FMO3) modulation on platelet function is unknown. Genetic manipulation of FMO3 in mice alters systemic TMAO levels and thrombosis potential. Genetic manipulation of FMO3 is associated with alteration of gut microbial community structure. Background Gut microbes play a critical role in the production of trimethylamine N-oxide (TMAO), an atherogenic metabolite that impacts platelet responsiveness and thrombosis potential. Involving both microbe and host enzymatic machinery, TMAO generation utilizes a metaorganismal pathway, beginning with ingestion of trimethylamine (TMA)-containing dietary nutrients such as choline, phosphatidylcholine and carnitine, which are abundant in a Western diet. Gut microbial TMA lyases use these nutrients as substrates to produce TMA, which upon delivery to the liver via the portal circulation, is converted into TMAO by host hepatic flavin monooxygenases (FMOs). Gut microbial production of TMA is rate limiting in the metaorganismal TMAO pathway because hepatic FMO activity is typically in excess. Objectives FMO3 is the major FMO responsible for host generation of TMAO; however, a role for FMO3 in altering platelet responsiveness and thrombosis potential in vivo has not yet been explored. Methods The impact of FMO3 suppression (antisense oligonucleotide-targeting) and overexpression (as transgene) on plasma TMAO levels, platelet responsiveness and thrombosis potential was examined using a murine FeCl3 -induced carotid artery injury model. Cecal microbial composition was examined using 16S analyses. Results Modulation of FMO3 directly impacts systemic TMAO levels, platelet responsiveness and rate of thrombus formation in vivo. Microbial composition analyses reveal taxa whose proportions are associated with both plasma TMAO levels and in vivo thrombosis potential. Conclusions The present studies demonstrate that host hepatic FMO3, the terminal step in the metaorganismal TMAO pathway, participates in diet-dependent and gut microbiota-dependent changes in both platelet responsiveness and thrombosis potential in vivo."	"Aspirin desensitization has been associated with benefit in management of aspirin-exacerbated respiratory disease (AERD). An intervention that would encourage aspirin desensitization to be performed more frequently has substantial potential for improving outcomes and quality of life in patients with AERD. We investigated whether omalizumab administration would be associated with attenuation of aspirin-provoked bronchospasm in patients with AERD undergoing aspirin desensitization. We carried out a randomized, double-blind, placebo-controlled study in which subjects with AERD who fulfilled label criteria for omalizumab received omalizumab or placebo for 16 weeks, and then underwent aspirin desensitization. Eleven subjects completed aspirin desensitization. Of the 7 who were randomized to omalizumab, 5 had no respiratory reaction during aspirin desensitization. Compared with placebo, omalizumab was associated with a significantly greater likelihood for subjects with AERD to have no respiratory reaction during desensitization (P = .04, Fisher exact test). There was an overall difference in urinary leukotriene E4 (LTE4) levels in subjects who received omalizumab and did not have a respiratory reaction during desensitization compared with subjects randomized to placebo (P = .035, mixed model with interaction). Urinary LTE4 levels were significantly higher with respiratory reaction in placebo subjects compared with levels obtained after the 100-mg dose in AERD subjects who had no respiratory reaction (P &lt; .001, mixed model with interaction). In atopic AERD subjects, omalizumab administration for 16 weeks was associated with &quot;clinically silent&quot; desensitization. Further studies to investigate the therapeutic utility of omalizumab in patients with AERD who are candidates for aspirin desensitization are warranted based on these findings. ClinicalTrials.gov Identifier NCT00555971."
+"Heemers, Hannelore"	"Cancer Biology"	30742064	29786790	28826481	28566530	27451135	26876983	22456196	18497079	19345321	20166126	"Sustained reliance on androgen receptor (AR) after failure of AR-targeting androgen deprivation therapy (ADT) prevents effective treatment of castration-recurrent (CR) prostate cancer (CaP). Interfering with the molecular machinery by which AR drives CaP progression may be an alternative therapeutic strategy but its feasibility remains to be tested. Here, we explore targeting the mechanism by which AR, via RhoA, conveys androgen-responsiveness to serum response factor (SRF), which controls aggressive CaP behavior and is maintained in CR-CaP. Following a siRNA screen and candidate gene approach, RNA-Seq studies confirmed that the RhoA effector Protein Kinase N1 (PKN1) transduces androgen-responsiveness to SRF. Androgen treatment induced SRF-PKN1 interaction, and PKN1 knockdown or overexpression severely impaired or stimulated, respectively, androgen regulation of SRF target genes. PKN1 overexpression occurred during clinical CR-CaP progression, and hastened CaP growth and shortened CR-CaP survival in orthotopic CaP xenografts. PKN1's effects on SRF relied on its kinase domain. The multikinase inhibitor lestaurtinib inhibited PKN1 action and preferentially affected androgen regulation of SRF over direct AR target genes. In a CR-CaP patient-derived xenograft, expression of SRF target genes was maintained while AR target gene expression declined and proliferative gene expression increased. PKN1 inhibition decreased viability of CaP cells before and after ADT. In patient-derived CaP explants, lestaurtinib increased AR target gene expression but did not significantly alter SRF target gene or proliferative gene expression. These results provide proof-of-principle for selective forms of ADT that preferentially target different fractions of AR's transcriptional output to inhibit CaP growth."	"Nuclear receptors play an important role in prostate cancer and the androgen receptor is a key transcription factor in regulation of cellular events. Androgen receptor-associated coregulators may be upregulated or downregulated in prostate cancer. Altered expression of regulators may potentiate androgen-induced proliferation, migration, and invasion. Therapies aimed to modulate the function of coregulators in prostate cancer may be based on the use of small molecule inhibitors. Expression and function of AR-associated proteins could be investigated after overexpression and gene silencing followed by hormonal treatment, real-time RT-PCR and ChIP."	"Standard treatment for metastatic prostate cancer (CaP) prevents ligand-activation of androgen receptor (AR). Despite initial remission, CaP progresses while relying on AR. AR transcriptional output controls CaP behavior and is an alternative therapeutic target, but its molecular regulation is poorly understood. Here, we show that action of activated AR partitions into fractions that are controlled preferentially by different coregulators. In a 452-AR-target gene panel, each of 18 clinically relevant coregulators mediates androgen-responsiveness of 0-57% genes and acts as a coactivator or corepressor in a gene-specific manner. Selectivity in coregulator-dependent AR action is reflected in differential AR binding site composition and involvement with CaP biology and progression. Isolation of a novel transcriptional mechanism in which WDR77 unites the actions of AR and p53, the major genomic drivers of lethal CaP, to control cell cycle progression provides proof-of-principle for treatment via selective interference with AR action by exploiting AR dependence on coregulators."	"With few exceptions, the almost 30,000 prostate cancer deaths annually in the United States are due to failure of androgen deprivation therapy. Androgen deprivation therapy prevents ligand-activation of the androgen receptor. Despite initial remission after androgen deprivation therapy, prostate cancer almost invariably progresses while continuing to rely on androgen receptor action. Androgen receptor's transcriptional output, which ultimately controls prostate cancer behavior, is an alternative therapeutic target, but its molecular regulation is poorly understood. Recent insights in the molecular mechanisms by which the androgen receptor controls transcription of its target genes are uncovering gene specificity as well as context-dependency. Heterogeneity in the androgen receptor's transcriptional output is reflected both in its recruitment to diverse cognate DNA binding motifs and in its preferential interaction with associated pioneering factors, other secondary transcription factors and coregulators at those sites. This variability suggests that multiple, distinct modes of androgen receptor action that regulate diverse aspects of prostate cancer biology and contribute differentially to prostate cancer's clinical progression are active simultaneously in prostate cancer cells. Recent progress in the development of peptidomimetics and small molecules, and application of Chem-Seq approaches indicate the feasibility for selective disruption of critical protein-protein and protein-DNA interactions in transcriptional complexes. Here, we review the recent literature on the different molecular mechanisms by which the androgen receptor transcriptionally controls prostate cancer progression, and we explore the potential to translate these insights into novel, more selective forms of therapies that may bypass prostate cancer's resistance to conventional androgen deprivation therapy."	"Next-generation sequencing is revealing genomic heterogeneity in localized prostate cancer (CaP). Incomplete sampling of CaP multiclonality has limited the implications for molecular subtyping, stratification, and systemic treatment. To determine the impact of genomic and transcriptomic diversity within and among intraprostatic CaP foci on CaP molecular taxonomy, predictors of progression, and actionable therapeutic targets. Four consecutive patients with clinically localized National Comprehensive Cancer Network intermediate- or high-risk CaP who did not receive neoadjuvant therapy underwent radical prostatectomy at Roswell Park Cancer Institute in June-July 2014. Presurgical information on CaP content and a customized tissue procurement procedure were used to isolate nonmicroscopic and noncontiguous CaP foci in radical prostatectomy specimens. Three cores were obtained from the index lesion and one core from smaller lesions. RNA and DNA were extracted simultaneously from 26 cores with ≥90% CaP content and analyzed using whole-exome sequencing, single-nucleotide polymorphism arrays, and RNA sequencing. Somatic mutations, copy number alternations, gene expression, gene fusions, and phylogeny were defined. The impact of genomic alterations on CaP molecular classification, gene sets measured in Oncotype DX, Prolaris, and Decipher assays, and androgen receptor activity among CaP cores was determined. There was considerable variability in genomic alterations among CaP cores, and between RNA- and DNA-based platforms. Heterogeneity was found in molecular grouping of individual CaP foci and the activity of gene sets underlying the assays for risk stratification and androgen receptor activity, and was validated in independent genomic data sets. Determination of the implications for clinical decision-making requires follow-up studies. Genomic make-up varies widely among CaP foci, so care should be taken when making treatment decisions based on a single biopsy or index lesions. We examined the molecular composition of individual cancers in a patient's prostate. We found a lot of genetic diversity among these cancers, and concluded that information from a single cancer biopsy is not sufficient to guide treatment decisions."	"Androgen receptor (AR) is a ligand-activated transcription factor that is the main target for treatment of non-organ-confined prostate cancer (CaP). Failure of life-prolonging AR-targeting androgen deprivation therapy is due to flexibility in steroidogenic pathways that control intracrine androgen levels and variability in the AR transcriptional output. Androgen biosynthesis enzymes, androgen transporters and AR-associated coregulators are attractive novel CaP treatment targets. These proteins, however, are characterized by multiple transcript variants and isoforms, are subject to genomic alterations, and are differentially expressed among CaPs. Determining their therapeutic potential requires evaluation of extensive, diverse datasets that are dispersed over multiple databases, websites and literature reports. Mining and integrating these datasets are cumbersome, time-consuming tasks and provide only snapshots of relevant information. To overcome this impediment to effective, efficient study of AR and potential drug targets, we developed the Regulators of Androgen Action Resource (RAAR), a non-redundant, curated and user-friendly searchable web interface. RAAR centralizes information on gene function, clinical relevance, and resources for 55 genes that encode proteins involved in biosynthesis, metabolism and transport of androgens and for 274 AR-associated coregulator genes. Data in RAAR are organized in two levels: (i) Information pertaining to production of androgens is contained in a 'pre-receptor level' database, and coregulator gene information is provided in a 'post-receptor level' database, and (ii) an 'other resources' database contains links to additional databases that are complementary to and useful to pursue further the information provided in RAAR. For each of its 329 entries, RAAR provides access to more than 20 well-curated publicly available databases, and thus, access to thousands of data points. Hyperlinks provide direct access to gene-specific entries in the respective database(s). RAAR is a novel, freely available resource that provides fast, reliable and easy access to integrated information that is needed to develop alternative CaP therapies. Database URL: http://www.lerner.ccf.org/cancerbio/heemers/RAAR/search/."	"Recently, we have identified serum response factor (SRF) as a mediator of clinically relevant androgen receptor (AR) action in prostate cancer (PCa). Genes that rely on SRF for androgen responsiveness represent a small fraction of androgen-regulated genes, but distinguish benign from malignant prostate, correlate with aggressive disease, and are associated with biochemical recurrence. Thus, understanding the mechanism(s) by which SRF conveys androgen regulation to its target genes may provide novel opportunities to target clinically relevant androgen signaling. Here, we show that the small GTPase ras homolog family member A (RhoA) mediates androgen-responsiveness of more than half of SRF target genes. Interference with expression of RhoA, activity of the RhoA effector Rho-associated coiled-coil containing protein kinase 1 (ROCK), and actin polymerization necessary for nuclear translocation of the SRF cofactor megakaryocytic acute leukemia (MAL) prevented full androgen regulation of SRF target genes. Androgen treatment induced RhoA activation, increased the nuclear content of MAL, and led to MAL recruitment to the promoter of the SRF target gene FHL2. In clinical specimens RhoA expression was higher in PCa cells than benign prostate cells, and elevated RhoA expression levels were associated with aggressive disease features and decreased disease-free survival after radical prostatectomy. Overexpression of RhoA markedly increased the androgen-responsiveness of select SRF target genes, in a manner that depends on its GTPase activity. The use of isogenic cell lines and a xenograft model that mimics the transition from androgen-stimulated to castration-recurrent PCa indicated that RhoA levels are not altered during disease progression, suggesting that RhoA expression levels in the primary tumor determine disease aggressiveness. Androgen-responsiveness of SRF target genes in castration-recurrent PCa cells continued to rely on AR, RhoA, SRF, and MAL and the presence of intact SRF binding sites. Silencing of RhoA, use of Rho-associated coiled-coil containing protein kinase 1 inhibitors, or an inhibitor of SRF-MAL interaction attenuated (androgen-regulated) cell viability and blunted PCa cell migration. Taken together, these studies demonstrate that the RhoA signaling axis mediates clinically relevant AR action in PCa."	"Although the factors contributing to the progression of prostate cancer (PC) remain incompletely understood, androgens have long been recognized to play a central role in this process. Upon entering PC cells, androgens bind to a cognate nuclear receptor, the androgen receptor (AR). The activated AR translocates to the nucleus, binds as a dimer to androgen response elements (AREs) in the promoter of target genes, where it recruits the coactivator proteins necessary for the formation of a productive transcriptional complex, an event crucial for PC cell viability. For many decades, the androgen dependency of PCs has been exploited therapeutically by androgen ablation strategies. Although initially successful, these forms of therapy almost inevitably fail eventually, and an androgen depletion independent (ADI) disease emerges, for which currently no cure is available. Studies from our laboratory and others demonstrate that despite low circulating levels of functional androgens, the AR is critical for the proliferation and survival of ADI PC cells. Recent data indicate that alterations in the expression and/or activity of AR coactivator proteins occur during PC progression that can foster ADI activation of the AR. Here, we have investigated the role of the coactivator p300 in AR transcriptional activity and progression of PC."	"Androgen signaling is critical for proliferation of prostate cancer cells but cannot be fully inhibited by current androgen deprivation therapies. A study by Xu et al. in this issue of Cancer Cell provides insights into the complexities of androgen signaling in prostate cancer and suggests avenues to target a subset of androgen-sensitive genes."	"Deregulated androgen receptor (AR) action is critical for prostate cancer (PCa) progression. Aberrant expression of AR-associated coregulators contributes to AR activity in PCa. The mechanisms underlying coregulator expression in PCa are under intense investigation as they may lead to alternative means of targeting AR activity in PCa cells. We have recently shown that over 30% of coregulator expression in the PCa cell line LNCaP is subject to androgen regulation. Using multiple PCa cell lines as well as xenograft models, non-malignant prostate epithelial cell lines and androgen-responsive tissues derived from a male Wistar rat model system, we explored the effect of androgen stimulation and androgen deprivation on the expression of the core coactivators SRC1, SRC2, SRC3, CBP, and p300. Androgen stimulation of model systems representing PCa led to a decrease in the expression of SRC1, SRC2, SRC3, CBP, and p300, whereas androgen deprivation induced the expression of these coactivators. In contrast, expression of these coregulators remained largely unaffected following changes in the androgenic milieu in AR-positive models representing non-malignant prostate cells and tissues. Our data indicate differences in the regulation of coregulator expression between neoplastic and normal prostate cells. These findings emphasize the important potential of targeting the mechanisms regulating coregulator expression for therapeutic intervention in PCa."
+"Hine, Christopher"	"Cardiovascular and Metabolic Sciences"	29634343	28591635	25542313	25523462	28701478	29071285	24905161	23505614	22008909	19106292	"Hydrogen sulfide (H2S) at the right concentration is associated with numerous health benefits in experimental organisms, ranging from protection from ischemia/reperfusion injury to life span extension. Given the considerable translation potential, two major strategies have emerged: supplementation of exogenous H2S and modulation of endogenous H2S metabolism. Recent Advances: Recently, it was reported that hepatic H2S production capacity is increased in two of the best-characterized mammalian models of life span extension, dietary restriction, and hypopituitary dwarfism, leading to new insights into dietary and hormonal regulation of endogenous H2S production together with broader changes in sulfur amino acid (SAA) metabolism with implications for DNA methylation and redox status. Here, we discuss the role of dietary SAAs and growth hormone (GH)/thyroid hormone (TH) signaling in regulation of endogenous H2S production largely via repression of H2S generating enzymes cystathionine γ-lyase (CGL) and cystathionine β-synthase (CBS) on the level of gene transcription, as well as reciprocal regulation of GH and TH signaling by H2S itself. We also discuss plasticity of CGL and CBS gene expression in response to environmental stimuli and the potential of the microbiome to impact overall H2S levels. The relative contribution of increased H2S to health span or lifespan benefits in models of extended longevity remains to be determined, as does the mechanism by which such benefits occur. Nonetheless, our ability to control H2S levels using exogenous H2S donors or by modifying the endogenous H2S production/consumption equilibrium has the potential to improve health and increase &quot;shelf-life&quot; across evolutionary boundaries, including our own. Antioxid. Redox Signal. 28, 1483-1502."	"Decreased growth hormone (GH) and thyroid hormone (TH) signaling are associated with longevity and metabolic fitness. The mechanisms underlying these benefits are poorly understood, but may overlap with those of dietary restriction (DR), which imparts similar benefits. Recently we discovered that hydrogen sulfide (H2S) is increased upon DR and plays an essential role in mediating DR benefits across evolutionary boundaries. Here we found increased hepatic H2S production in long-lived mouse strains of reduced GH and/or TH action, and in a cell-autonomous manner upon serum withdrawal in vitro. Negative regulation of hepatic H2S production by GH and TH was additive and occurred via distinct mechanisms, namely direct transcriptional repression of the H2S-producing enzyme cystathionine γ-lyase (CGL) by TH, and substrate-level control of H2S production by GH. Mice lacking CGL failed to downregulate systemic T4 metabolism and circulating IGF-1, revealing an essential role for H2S in the regulation of key longevity-associated hormones."	"Dietary restriction (DR) without malnutrition encompasses numerous regimens with overlapping benefits including longevity and stress resistance, but unifying nutritional and molecular mechanisms remain elusive. In a mouse model of DR-mediated stress resistance, we found that sulfur amino acid (SAA) restriction increased expression of the transsulfuration pathway (TSP) enzyme cystathionine γ-lyase (CGL), resulting in increased hydrogen sulfide (H2S) production and protection from hepatic ischemia reperfusion injury. SAA supplementation, mTORC1 activation, or chemical/genetic CGL inhibition reduced H2S production and blocked DR-mediated stress resistance. In vitro, the mitochondrial protein SQR was required for H2S-mediated protection during nutrient/oxygen deprivation. Finally, TSP-dependent H2S production was observed in yeast, worm, fruit fly, and rodent models of DR-mediated longevity. Together, these data are consistent with evolutionary conservation of TSP-mediated H2S as a mediator of DR benefits with broad implications for clinical translation. PAPERFLICK: "	"H2S is a gas easily identified by its distinctive odor. Although environmental exposure to H2S has been viewed alternately as therapeutic or toxic through the centuries, H2S has recently regained recognition for its numerous beneficial biological effects. Most experiments documenting such benefits, including improved glucose tolerance, increased stress resistance, and even lifespan extension, are based on exposure of experimental organisms to exogenous sources of H2S. However, appreciation is growing for the importance of H2S produced endogenously by the evolutionary conserved transsulfuration pathway (TSP) in health and longevity. Recent data implicate H2S produced by the TSP in pleiotropic benefits of dietary restriction (DR), or reduced nutrient/energy intake without malnutrition. DR, best known as the most reliable way to extend lifespan in a wide range of experimental organisms, includes various regimens aimed at either reducing overall calorie intake (calorie restriction, intermittent/every-other-day fasting) or reducing particular nutrients such as protein or the essential amino acid, methionine (methionine restriction), with overlapping functional benefits on stress resistance, metabolic fitness and lifespan. Here we will review the small but growing body of literature linking the TSP to the functional benefits of DR in part through the production of endogenous H2S, with an emphasis on regulation of the TSP and H2S production by diet and mechanisms of beneficial H2S action. "	"Vaccination with potato virus X nanoparticles enhances the efficacy of traditional doxorubicin anticancer therapy against a mouse melanoma tumor model."	"Hydrogen sulfide (H2S) gas is produced in cells and tissues via various enzymatic processes. H2S is an important signaling molecule in numerous biological processes, and deficiencies in endogenous H2S production are linked to cardiovascular and other health complications. Quantitation of steady-state H2S levels is challenging due to volatility of the gas and the need for specialized equipment. However, the capacity of an organ or tissue extract to produce H2S under optimized reaction conditions can be measured by a number of current assays that vary in sensitivity, specificity and throughput capacity. We developed a rapid, inexpensive, specific and relatively high-throughput method for quantitative detection of H2S production capacity from biological tissues. H2S released into the head space above a biological sample reacts with lead acetate to form lead sulfide, which is measured on a continuous basis using a plate reader or as an endpoint assay."	"Aging and chemotherapeutics damage hematopoietic stem cells (HSCs), leading to dysregulation of asymmetric division and subsequent immunosuppression and blood-related diseases. In this issue, Cheng et al. (2014) use prolonged fasting as a medical intervention to decrease IGF-1/PKA signaling and protect HSCs against chemotherapeutic toxicity and promote rejuvenation."	"Dietary restriction (DR) as a means to increase longevity is well-established in a number of model organisms from yeast to primates. DR also improves metabolic fitness and increases resistance to acute oxidative, carcinogenic and toxicological stressors - benefits with more immediate potential for clinical translation than increased lifespan. While the detailed mechanism of DR action remains unclear, a conceptual framework involving an adaptive, or hormetic response to the stress of nutrient/energy deprivation has been proposed. A key prediction of the hormesis hypothesis of DR is that beneficial adaptations occur in response to an increase in reactive oxygen/nitrogen species (ROS). These ROS may be derived either from increased mitochondrial respiration or increased xenobiotic metabolism in the case of some DR mimetics. This review will focus on the potential role of the redox-sensing transcription factor NF-E2-related factor 2 (NRF2) and its control of the evolutionarily conserved antioxidant/redox cycling and detoxification systems, collectively known as the Phase II response, in the adaptive response to DR."	"Rad51 protein is overexpressed in a wide range of human cancers. Our previous in vitro studies demonstrated that a construct comprised Rad51 promoter driving expression of the diphtheria toxin A gene (pRad51-diphtheria toxin A (DTA)) destroys a variety of human cancer cell lines, with minimal to no toxicity to normal human cells. Here we delivered Rad51 promoter-based constructs in vivo using linear polyethylenimine nanoparticles, in vivo jetPEI, to visualize and treat tumors in mice with HeLa xenografts. For tumor detection, we used pRad51-Luc, a construct containing the firefly luciferase under the Rad51 promoter, administered by intraperitoneal (IP) injection. Tumors were detected with an in vivo bioluminescent camera. All mice with cancer displayed strong bioluminescence, while mice without cancer displayed no detectable bioluminescence. Treatment with pRad51-DTA/jetPEI decreased tumor mass of subcutaneous (SC) and IP tumors by sixfold and fourfold, respectively, along with the strong reduction of malignant ascites. Fifty percent of the mice with SC tumors were cancer-free after six pRad51-DTA/jetPEI injections, and for the mice with IP tumors, mean survival time increased by 90% compared to control mice. This study demonstrates the clinical potential of pRad51-based constructs delivered by nanoparticles for the diagnostics and treatment of a wide range of cancers."	"Rad51 protein, involved in homologous recombination, is overexpressed in a variety of tumors, and its expression is correlated with a poor prognosis. Here we propose to exploit the overexpression of Rad51 in cancer cells to design a Rad51 promoter-based anticancer therapy. On average, Rad51 mRNA and protein levels are increased in cancer cells four- and sixfold, respectively. Serendipitously, we discovered that when the Rad51 ORF is replaced with another ORF, the difference in promoter activity between normal and cancer cells increases to an average of 840-fold with a maximum difference of 12,500-fold. This dramatic difference in activity has high therapeutic potential. We demonstrate that the fusion of Rad51 promoter to diphtheria toxin A (DTA) gene kills a variety of cancer cell types, including breast cancer, fibrosarcoma, and cervical cancer cells, with minimal effect on normal breast epithelial cells and normal fibroblasts. Our results suggest that therapies based on the Rad51 promoter will be highly tumor specific and open new avenues for targeting a broad range of cancers."
+"Hite, Duncan"	"Inflammation and Immunity"	31112383	30346242	29256894	28082138	16714767	16714768	16714768	23431308	24835849	30801214	"The benefits of early continuous neuromuscular blockade in patients with acute respiratory distress syndrome (ARDS) who are receiving mechanical ventilation remain unclear. We randomly assigned patients with moderate-to-severe ARDS (defined by a ratio of the partial pressure of arterial oxygen to the fraction of inspired oxygen of &lt;150 mm Hg with a positive end-expiratory pressure [PEEP] of ≥8 cm of water) to a 48-hour continuous infusion of cisatracurium with concomitant deep sedation (intervention group) or to a usual-care approach without routine neuromuscular blockade and with lighter sedation targets (control group). The same mechanical-ventilation strategies were used in both groups, including a strategy involving a high PEEP. The primary end point was in-hospital death from any cause at 90 days. The trial was stopped at the second interim analysis for futility. We enrolled 1006 patients early after the onset of moderate-to-severe ARDS (median, 7.6 hours after onset). During the first 48 hours after randomization, 488 of the 501 patients (97.4%) in the intervention group started a continuous infusion of cisatracurium (median duration of infusion, 47.8 hours; median dose, 1807 mg), and 86 of the 505 patients (17.0%) in the control group received a neuromuscular blocking agent (median dose, 38 mg). At 90 days, 213 patients (42.5%) in the intervention group and 216 (42.8%) in the control group had died before hospital discharge (between-group difference, -0.3 percentage points; 95% confidence interval, -6.4 to 5.9; P = 0.93). While in the hospital, patients in the intervention group were less physically active and had more adverse cardiovascular events than patients in the control group. There were no consistent between-group differences in end points assessed at 3, 6, and 12 months. Among patients with moderate-to-severe ARDS who were treated with a strategy involving a high PEEP, there was no significant difference in mortality at 90 days between patients who received an early and continuous cisatracurium infusion and those who were treated with a usual-care approach with lighter sedation targets. (Funded by the National Heart, Lung, and Blood Institute; ROSE ClinicalTrials.gov number, NCT02509078.)."	"There are conflicting data on the effects of antipsychotic medications on delirium in patients in the intensive care unit (ICU). In a randomized, double-blind, placebo-controlled trial, we assigned patients with acute respiratory failure or shock and hypoactive or hyperactive delirium to receive intravenous boluses of haloperidol (maximum dose, 20 mg daily), ziprasidone (maximum dose, 40 mg daily), or placebo. The volume and dose of a trial drug or placebo was halved or doubled at 12-hour intervals on the basis of the presence or absence of delirium, as detected with the use of the Confusion Assessment Method for the ICU, and of side effects of the intervention. The primary end point was the number of days alive without delirium or coma during the 14-day intervention period. Secondary end points included 30-day and 90-day survival, time to freedom from mechanical ventilation, and time to ICU and hospital discharge. Safety end points included extrapyramidal symptoms and excessive sedation. Written informed consent was obtained from 1183 patients or their authorized representatives. Delirium developed in 566 patients (48%), of whom 89% had hypoactive delirium and 11% had hyperactive delirium. Of the 566 patients, 184 were randomly assigned to receive placebo, 192 to receive haloperidol, and 190 to receive ziprasidone. The median duration of exposure to a trial drug or placebo was 4 days (interquartile range, 3 to 7). The median number of days alive without delirium or coma was 8.5 (95% confidence interval [CI], 5.6 to 9.9) in the placebo group, 7.9 (95% CI, 4.4 to 9.6) in the haloperidol group, and 8.7 (95% CI, 5.9 to 10.0) in the ziprasidone group (P=0.26 for overall effect across trial groups). The use of haloperidol or ziprasidone, as compared with placebo, had no significant effect on the primary end point (odds ratios, 0.88 [95% CI, 0.64 to 1.21] and 1.04 [95% CI, 0.73 to 1.48], respectively). There were no significant between-group differences with respect to the secondary end points or the frequency of extrapyramidal symptoms. The use of haloperidol or ziprasidone, as compared with placebo, in patients with acute respiratory failure or shock and hypoactive or hyperactive delirium in the ICU did not significantly alter the duration of delirium. (Funded by the National Institutes of Health and the VA Geriatric Research Education and Clinical Center; MIND-USA ClinicalTrials.gov number, NCT01211522 .)."	"Academic medical centers in North America are expanding their missions from the traditional triad of patient care, research, and education to include the broader issue of healthcare delivery improvement. In recent years, integrated Critical Care Organizations have developed within academic centers to better meet the challenges of this broadening mission. The goal of this article was to provide interested administrators and intensivists with the proper resources, lines of communication, and organizational approach to accomplish integration and Critical Care Organization formation effectively. The Academic Critical Care Organization Building section workgroup of the taskforce established regular monthly conference calls to reach consensus on the development of a toolkit utilizing methods proven to advance the development of their own academic Critical Care Organizations. Relevant medical literature was reviewed by literature search. Materials from federal agencies and other national organizations were accessed through the Internet. The Society of Critical Care Medicine convened a taskforce entitled &quot;Academic Leaders in Critical Care Medicine&quot; on February 22, 2016 at the 45th Critical Care Congress using the expertise of successful leaders of advanced governance Critical Care Organizations in North America to develop a toolkit for advancing Critical Care Organizations. Key elements of an academic Critical Care Organization are outlined. The vital missions of multidisciplinary patient care, safety, and quality are linked to the research, education, and professional development missions that enhance the value of such organizations. Core features, benefits, barriers, and recommendations for integration of academic programs within Critical Care Organizations are described. Selected readings and resources to successfully implement the recommendations are provided. Communication with medical school and hospital leadership is discussed. We present the rationale for critical care programs to transition to integrated Critical Care Organizations within academic medical centers and provide recommendations and resources to facilitate this transition and foster Critical Care Organization effectiveness and future success."	"To determine if the length of stay at a referring institution intensive care unit (ICU) before transfer to a tertiary/quaternary care facility is a risk factor for mortality. We performed a retrospective chart review of patients transferred to our ICU from referring institution ICUs over a 3-year period. Logistical regression analysis was performed to determine which factors were independently associated with increased mortality. The primary outcomes were ICU and hospital mortality. A total of 1248 patients were included in our study. Length of stay at the referring institution was an independent risk factor for both ICU and hospital mortality (P&lt;.0001), with increasing lengths of stay correlating with increased mortality. Each additional day at the referring institution was associated with a 1.04 increase in likelihood of ICU mortality (95% confidence interval, 1.02-1.06; P =0.001) and a 1.029 (95% confidence interval, 1.01-1.05; P .005) increase in likelihood of hospital mortality. Length of stay at the referring institution before transfer is a risk factor for worse outcomes, with longer stays associated with increased likelihood of mortality. Further studies delineating which factors most affect length of stay at referring institutions, though a difficult task, should be pursued."	"Optimal fluid management in patients with acute lung injury is unknown. Diuresis or fluid restriction may improve lung function but could jeopardize extrapulmonary-organ perfusion. In a randomized study, we compared a conservative and a liberal strategy of fluid management using explicit protocols applied for seven days in 1000 patients with acute lung injury. The primary end point was death at 60 days. Secondary end points included the number of ventilator-free days and organ-failure-free days and measures of lung physiology. The rate of death at 60 days was 25.5 percent in the conservative-strategy group and 28.4 percent in the liberal-strategy group (P=0.30; 95 percent confidence interval for the difference, -2.6 to 8.4 percent). The mean (+/-SE) cumulative fluid balance during the first seven days was -136+/-491 ml in the conservative-strategy group and 6992+/-502 ml in the liberal-strategy group (P&lt;0.001). As compared with the liberal strategy, the conservative strategy improved the oxygenation index ([mean airway pressure x the ratio of the fraction of inspired oxygen to the partial pressure of arterial oxygen]x100) and the lung injury score and increased the number of ventilator-free days (14.6+/-0.5 vs. 12.1+/-0.5, P&lt;0.001) and days not spent in the intensive care unit (13.4+/-0.4 vs. 11.2+/-0.4, P&lt;0.001) during the first 28 days but did not increase the incidence or prevalence of shock during the study or the use of dialysis during the first 60 days (10 percent vs. 14 percent, P=0.06). Although there was no significant difference in the primary outcome of 60-day mortality, the conservative strategy of fluid management improved lung function and shortened the duration of mechanical ventilation and intensive care without increasing nonpulmonary-organ failures. These results support the use of a conservative strategy of fluid management in patients with acute lung injury. (ClinicalTrials.gov number, NCT00281268 [ClinicalTrials.gov].)."	"The balance between the benefits and the risks of pulmonary-artery catheters (PACs) has not been established. We evaluated the relationship of benefits and risks of PACs in 1000 patients with established acute lung injury in a randomized trial comparing hemodynamic management guided by a PAC with hemodynamic management guided by a central venous catheter (CVC) using an explicit management protocol. Mortality during the first 60 days before discharge home was the primary outcome. The groups had similar baseline characteristics. The rates of death during the first 60 days before discharge home were similar in the PAC and CVC groups (27.4 percent and 26.3 percent, respectively; P=0.69; absolute difference, 1.1 percent; 95 percent confidence interval, -4.4 to 6.6 percent), as were the mean (+/-SE) numbers of both ventilator-free days (13.2+/-0.5 and 13.5+/-0.5; P=0.58) and days not spent in the intensive care unit (12.0+/-0.4 and 12.5+/-0.5; P=0.40) to day 28. PAC-guided therapy did not improve these measures for patients in shock at the time of enrollment. There were no significant differences between groups in lung or kidney function, rates of hypotension, ventilator settings, or use of dialysis or vasopressors. Approximately 90 percent of protocol instructions were followed in both groups, with a 1 percent rate of crossover from CVC- to PAC-guided therapy. Fluid balance was similar in the two groups, as was the proportion of instructions given for fluid and diuretics. Dobutamine use was uncommon. The PAC group had approximately twice as many catheter-related complications (predominantly arrhythmias). PAC-guided therapy did not improve survival or organ function but was associated with more complications than CVC-guided therapy. These results, when considered with those of previous studies, suggest that the PAC should not be routinely used for the management of acute lung injury. (ClinicalTrials.gov number, NCT00281268.)."	"The balance between the benefits and the risks of pulmonary-artery catheters (PACs) has not been established. We evaluated the relationship of benefits and risks of PACs in 1000 patients with established acute lung injury in a randomized trial comparing hemodynamic management guided by a PAC with hemodynamic management guided by a central venous catheter (CVC) using an explicit management protocol. Mortality during the first 60 days before discharge home was the primary outcome. The groups had similar baseline characteristics. The rates of death during the first 60 days before discharge home were similar in the PAC and CVC groups (27.4 percent and 26.3 percent, respectively; P=0.69; absolute difference, 1.1 percent; 95 percent confidence interval, -4.4 to 6.6 percent), as were the mean (+/-SE) numbers of both ventilator-free days (13.2+/-0.5 and 13.5+/-0.5; P=0.58) and days not spent in the intensive care unit (12.0+/-0.4 and 12.5+/-0.5; P=0.40) to day 28. PAC-guided therapy did not improve these measures for patients in shock at the time of enrollment. There were no significant differences between groups in lung or kidney function, rates of hypotension, ventilator settings, or use of dialysis or vasopressors. Approximately 90 percent of protocol instructions were followed in both groups, with a 1 percent rate of crossover from CVC- to PAC-guided therapy. Fluid balance was similar in the two groups, as was the proportion of instructions given for fluid and diuretics. Dobutamine use was uncommon. The PAC group had approximately twice as many catheter-related complications (predominantly arrhythmias). PAC-guided therapy did not improve survival or organ function but was associated with more complications than CVC-guided therapy. These results, when considered with those of previous studies, suggest that the PAC should not be routinely used for the management of acute lung injury. (ClinicalTrials.gov number, NCT00281268.)."	"Aspiration of colonized oropharyngeal secretions is a major factor in the pathogenesis of ventilator-associated pneumonia (VAP). A tapered-cuff endotracheal tube (ETT) has been demonstrated to reduce aspiration around the cuff. Whether these properties are efficacious in reducing VAP is not known. This 2-period, investigator-initiated observational study was designed to assess the efficacy of a tapered-cuff ETT to reduce the VAP rate. All intubated, mechanically ventilated patients over the age of 18 were included. During the baseline period a standard, barrel-shaped-cuff ETT (Mallinckrodt Hi-Lo) was used. All ETTs throughout the hospital were then replaced with a tapered-cuff ETT (TaperGuard). The primary outcome variable was the incidence of VAP per 1,000 ventilator days. We included 2,849 subjects, encompassing 15,250 ventilator days. The mean ± SD monthly VAP rate was 3.29 ± 1.79/1,000 ventilator days in the standard-cuff group and 2.77 ± 2.00/1,000 ventilator days in the tapered-cuff group (P = .65). While adherence to the VAP prevention bundle was high throughout the study, bundle adherence was significantly higher during the standard-cuff period (96.5 ± 2.7%) than in the tapered-cuff period (90.3 ± 3.5%, P = .01). In the setting of a VAP rate very near the average of ICUs in the United States, and where there was high adherence to a VAP prevention bundle, the use of a tapered-cuff ETT was not associated with a reduction in the VAP rate."	"In the acute respiratory distress syndrome (ARDS), inflammation in the lungs and other organs can cause life-threatening organ failure. Inhibitors of 3-hydroxy-3-methylglutaryl coenzyme A reductase (statins) can modulate inflammatory responses. Previous observational studies suggested that statins improved clinical outcomes in patients with sepsis. We hypothesized that rosuvastatin therapy would improve clinical outcomes in critically ill patients with sepsis-associated ARDS. We conducted a multicenter trial in which patients with sepsis-associated ARDS were randomly assigned to receive either enteral rosuvastatin or placebo in a double-blind manner. The primary outcome was mortality before hospital discharge home or until study day 60 if the patient was still in a health care facility. Secondary outcomes included the number of ventilator-free days (days that patients were alive and breathing spontaneously) to day 28 and organ-failure-free days to day 14. The study was stopped because of futility after 745 of an estimated 1000 patients had been enrolled. There was no significant difference between study groups in 60-day in-hospital mortality (28.5% with rosuvastatin and 24.9% with placebo, P=0.21) or in mean (±SD) ventilator-free days (15.1±10.8 with rosuvastatin and 15.1±11.0 with placebo, P=0.96). The groups were well matched with respect to demographic and key physiological variables. Rosuvastatin therapy, as compared with placebo, was associated with fewer days free of renal failure to day 14 (10.1±5.3 vs. 11.0±4.7, P=0.01) and fewer days free of hepatic failure to day 14 (10.8±5.0 vs. 11.8±4.3, P=0.003). Rosuvastatin was not associated with an increased incidence of serum creatine kinase levels that were more than 10 times the upper limit of the normal range. Rosuvastatin therapy did not improve clinical outcomes in patients with sepsis-associated ARDS and may have contributed to hepatic and renal organ dysfunction. (Funded by the National Heart, Lung, and Blood Institute and the Investigator-Sponsored Study Program of AstraZeneca; ClinicalTrials.gov number, NCT00979121.)."	"OBJECTIVE To evaluate the lipidomic profile of surfactant obtained from horses with asthma at various clinical stages and to compare results with findings for healthy horses exposed to the same conditions. SAMPLE Surfactant samples obtained from 6 horses with severe asthma and 7 healthy horses. PROCEDURES Clinical evaluation of horses and surfactant analysis were performed. Samples obtained from horses with severe asthma and healthy horses before (baseline), during, and after exposure to hay were analyzed. Crude surfactant pellets were dried prior to dissolution in a solution of isopropanol:methanol:chloroform (4:2:1) containing 7.5mM ammonium acetate. Shotgun lipidomics were performed by use of high-resolution data acquisition on an ion-trap mass spectrometer. Findings were analyzed by use of an ANOVA with a Tukey-Kramer post hoc test. RESULTS Results of lipidomic analysis were evaluated to detect significant differences between groups of horses and among exposure statuses within groups of horses. Significantly increased amounts of cyclic phosphatidic acid (cPA) and diacylglycerol (DAG) were detected in surfactant from severely asthmatic horses during exposure to hay, compared with baseline and postexposure concentrations. Concentrations of cPA and DAG did not change significantly in healthy horses regardless of exposure status. CONCLUSIONS AND CLINICAL RELEVANCE cPA 16:0 and DAG 36:2 were 2 novel lipid mediators identified in surfactant obtained from asthmatic horses with clinical disease. These molecules were likely biomarkers of sustained inflammation. Further studies are needed to evaluate a possible correlation with disease severity and potential alterations in the plasma lipidomic profile of horses with asthma."
+"Hobbs, Brian"	"Quantitative Health Sciences"	30786040	30672395	30561713	30335125	30037304	29984488	29949418	29412015	29398440	29036300	"The evolution of &quot;informatics&quot; technologies has the potential to generate massive databases, but the extent to which personalized medicine may be effectuated depends on the extent to which these rich databases may be utilized to advance understanding of the disease molecular profiles and ultimately integrated for treatment selection, necessitating robust methodology for dimension reduction. Yet, statistical methods proposed to address challenges arising with the high-dimensionality of omics-type data predominately rely on linear models and emphasize associations deriving from prognostic biomarkers. Existing methods are often limited for discovering predictive biomarkers that interact with treatment and fail to elucidate the predictive power of their resultant selection rules. In this article, we present a Bayesian predictive method for personalized treatment selection that is devised to integrate both the treatment predictive and disease prognostic characteristics of a particular patient's disease. The method appropriately characterizes the structural constraints inherent to prognostic and predictive biomarkers, and hence properly utilizes these complementary sources of information for treatment selection. The methodology is illustrated through a case study of lower grade glioma. Theoretical considerations are explored to demonstrate the manner in which treatment selection is impacted by prognostic features. Additionally, simulations based on an actual leukemia study are provided to ascertain the method's performance with respect to selection rules derived from competing methods."	"Perfusion computed tomography is an emerging functional imaging modality that uses physiological models to quantify characteristics pertaining to the passage of fluid through blood vessels. Perfusion characteristics provide physiological correlates for neovascularization induced by tumor angiogenesis and thus a quantitative basis for cancer detection, prognostication, and treatment monitoring. We consider a liver cancer study where patients underwent a dynamic computed tomography protocol to enable evaluation of multiple perfusion characteristics derived from interrogating the time-attenuation of the concentration of the intravenously administered contrast medium. The objective is to determine the effectiveness of using perfusion characteristics to identify and discriminate between regions of liver that contain malignant tissues from normal tissue. Each patient contributes multiple regions of interest which are spatially correlated due to the shared vasculature. We propose a multivariate functional data model to disclose the correlation over time and space as well as the correlation among multiple perfusion characteristics. We further propose a simultaneous classification approach that utilizes all the correlation information to predict class assignments for collections of regions. The proposed method outperforms conventional classification approaches in the presence of strong spatial correlation. The method offers maximal relative improvement in the presence of temporal sparsity wherein measurements are obtainable at only a few time points."	"Traditionally, drug development has evaluated dose, safety, activity, and comparative benefit in a sequence of phases using trial designs and endpoints specifically devised for each phase. Innovations in drug development seek to consolidate the phases and rapidly expand accrual with &quot;seamless&quot; trial designs. Although consolidation and rapid accrual may yield efficiencies, widespread use of seamless first-in-human (FiH) trials without careful consideration of objectives, statistical analysis plans, or trial oversight raises concerns. A working group formed by the National Cancer Institute convened to consider and discuss opportunities and challenges for such trials as well as encourage responsible use of these designs. We reviewed all abstracts presented at American Society of Clinical Oncology annual meetings from 2010 to 2017 for FiH trials enrolling at least 100 patients. We identified 1786 early-phase trials enrolling 57 559 adult patients. Fifty-one of the trials (2.9%) investigated 50 investigational new drugs, were seamless, and accounted for 14.6% of the total patients. The seamless trials included a median of 3 (range = 1-13) expansion cohorts. The overall risk of clinically significant treatment-related adverse events (grade 3-4) was 49.1% (range = 0.0-100%), and seven studies reported at least one toxic death. Rapid expansion of FiH trials may lead to earlier drug approval and corresponding widespread patient access to active therapeutics. Nevertheless, seamless designs must adhere to established ethical, scientific, and statistical standards. Protocols should include prospectively planned analyses of efficacy in disease- or biomarker-defined cohorts of sufficient rigor to support accelerated approval."	"Within the evidentiary hierarchy of experimental inquiry, randomized trials are the gold standard. Oncology patients enter clinical studies with diverse lifestyles, treatment pathways, host tissue environments, and competing comorbidities. Randomization attempts to balance prognostic characteristics among study arms, thereby enabling statistical inference of 'average benefit' and attribution to the studied therapies. In contrast, interpretations of uncontrolled trials require additional scrutiny to attempt to place the findings in the context of external evidence. Counter-factual reasoning and speculation across trials may be obscured by the disproportionate enrollment of prognostic subpopulations which may be unknown from publications of trial reports. Recent modifications to the regulatory environment (Food and Drug Administration Safety and Innovation Act) have elevated the importance of non-comparative trials. Moreover, the emergence of recent innovations in precision medicine have yielded trial designs that partition potentially heterogeneous subpopulations into 'statistically exchangeable' cohorts by histologies, or genetic alterations, further elevating the importance of single-cohort analyses. As patient cohorts become ever more refined into smaller targeted subsets, consumers of reports of uncontrolled trials should be further empowered with improvements in reporting practices that better describe the enrolled prognostic subpopulations and importantly their association with study end points. This article demonstrates the issue with a sensitivity analysis of the findings reported in a recent trial that was devised to evaluate the preliminary clinical efficacy of vemurafenib in BRAF V600 mutation-positive nonmelanoma cancers."	"Precision medicine has emerged from the awareness that many human diseases are intrinsically heterogeneous with respect to their pathogenesis and composition among patients as well as dynamic over the course therapy. Its successful application relies on our understanding of distinct molecular profiles and their biomarkers which can be used as targets to devise treatment strategies that exploit current understanding of the biological mechanisms of the disease. Precision medicine present challenges to traditional paradigms of clinical translational, however, for which estimates of population-averaged effects from large randomized trials are used as the basis for demonstrating improvements comparative effectiveness. A general approach for estimating the relative effectiveness of biomarker-guided therapeutic strategies is presented herein. The statistical procedure attempts to define the local benefit of a given biomarker-guided therapeutic strategy in consideration of the treatment response surfaces, selection rule, and inter-cohort balance of prognostic determinants. Theoretical and simulation results are provided. Additionally, the methodology is demonstrated through a proteomic study of lower grade glioma."	"Precision medicine endeavors to conform therapeutic interventions to the individuals being treated. Implicit to the concept of precision medicine is heterogeneity of treatment benefit among patients and patient subpopulations. Thus, precision medicine challenges conventional paradigms of clinical translational which have relied on estimates of population-averaged effects to guide clinical practice. Basket trials comprise a class of experimental designs used to study solid malignancies that are devised to evaluate the effectiveness of a therapeutic strategy among patients defined by the presence of a particular drug target (often a genetic mutation) rather than a particular tumor histology. Acknowledging the potential for differential effectiveness on the basis of traditional criteria for cancer subtyping, evaluations of treatment effectiveness are conducted with respect to the &quot;baskets&quot; which collectively represent a partition of the targeted patient population consisting of discrete subtypes. Yet, designs of early basket trials have been criticized for their reliance on basketwise analysis strategies that suffered from limited power in the presence of imbalanced enrollment as well as failed to convey to the clinical community evidentiary measures for consistent effectiveness among the studied clinical subtypes. This article presents novel methodology for sequential basket trial design formulated with Bayesian monitoring rules. Interim analyses are based a novel hierarchical modeling strategy for sharing information among a collection of discrete potentially nonexchangeable subtypes. The methodology is demonstrated by analysis as well as permutation and simulation studies based on a recent basket trial designed to estimate the effectiveness of vemurafenib in BRAF<sup>V600</sup> mutant non-melanoma among six primary disease sites and histologies."	"The objective of this study was to identify features that impact the diagnostic performance of intermediate-delay washout CT for distinguishing malignant from benign adrenal lesions. This retrospective study evaluated 127 pathologically proven adrenal lesions (82 malignant, 45 benign) in 126 patients who had undergone portal venous phase and intermediate-delay washout CT (1-3 minutes after portal venous phase) with or without unenhanced images. Unenhanced images were available for 103 lesions. Quantitatively, lesion CT attenuation on unenhanced (UA) and delayed (DL) images, absolute and relative percentage of enhancement washout (APEW and RPEW, respectively), descriptive CT features (lesion size, margin characteristics, heterogeneity or homogeneity, fat, calcification), patient demographics, and medical history were evaluated for association with lesion status using multiple logistic regression with stepwise model selection. Area under the ROC curve (Az) was calculated from both univariate and multivariate analyses. The predictive diagnostic performance of multivariate evaluations was ascertained through cross-validation. Az for DL, APEW, RPEW, and UA was 0.751, 0.795, 0.829, and 0.839, respectively. Multivariate analyses yielded the following significant CT quantitative features and associated Az when combined: RPEW and DL (Az = 0.861) when unenhanced images were not available and APEW and UA (Az = 0.889) when unenhanced images were available. Patient demographics and presence of a prior malignancy were additional significant factors, increasing Az to 0.903 and 0.927, respectively. The combined predictive classifier, without and with UA available, yielded 85.7% and 87.3% accuracies with cross-validation, respectively. When appropriately combined with other CT features, washout derived from intermediate-delay CT with or without additional clinical data has potential utility in differentiating malignant from benign adrenal lesions."	"The purpose of this study is to identify imaging and patient parameters that affect the diagnostic performance of delayed contrast-enhanced CT for distinguishing malignant from benign adrenal lesions larger than 1 cm in adult patients and to derive predictive models. This retrospective study assessed 97 pathologically proven adrenal lesions that had undergone unenhanced, portal venous, and 15-minute delayed CT. Quantitatively, single-parameter evaluations of lesion attenuation (in Hounsfield units) and absolute percentage enhancement washout (APEW) and relative percentage enhancement washout (RPEW) were performed. In addition, descriptive CT features (lesion size, margin definition, heterogeneity vs homogeneity, fat, and calcification) and patients' demographic characteristics and medical history of malignancy were evaluated for association with lesion status using multiple logistic regression with stepwise model selection. Areas under the ROC curve (Az) were determined for univariate and multivariate analyses. Leave-one-lesion-out cross-validation was applied to ascertain the predictive performance of single-parameter and multivariate evaluations. The Az values for unenhanced attenuation, portal venous attenuation, delayed attenuation, APEW, and RPEW were 0.835, 0.534, 0.847, 0.792, and 0.871, respectively. Multivariate analyses revealed that portal venous attenuation, delayed attenuation, and APEW were significant features, with an Az of 0.923 when combined. The addition of the descriptive CT features increased the Az to 0.938; patient age and a history of malignancy were additional significant factors, increasing the Az to 0.956 and 0.972, respectively. The combined predictive classifier yielded 89% accuracy under cross-validation, compared with the best commonly applied single-parameter evaluation (77% for RPEW &lt; 40%). Multivariate imaging evaluation applied to delayed contrast-enhanced CT alone, with or without patient characteristics, improves diagnostic performance for characterizing adrenal lesions beyond those of single-parameter evaluations. Predictive formulas assessing the probabilities of lesion benignity or malignancy are provided."	"To determine if combination of washout and noncontrast data from delayed adrenal computed tomography (CT) improves diagnostic performance, and demonstration of an optimizing analytical framework. This retrospective study consisted of 97 adrenal lesions, in 96 patients, with pathologically proven adrenal lesions (75 benign; 22 malignant), who had undergone noncontrast, portal- and approximate 15-minute delayed-phase CT. Lesion CT attenuations (Hounsfield units [HU]) during each phase, and &quot;absolute&quot; and &quot;relative&quot; percent enhancement washouts (APEW and RPEW) were assessed. The optimum combination of sequential parameters and thresholds was determined by recursive partitioning analysis; resultant diagnostic performance was compared to commonly applied single-parameter criteria for malignancy (noncontrast &gt; 10 HU, APEW &lt; 60%, RPEW &lt; 40%). The above single-parameter criteria yielded sensitivities, specificities, and accuracies for malignancy of 100.0%, 41.3%, and 54.6%; 97.9%, 61.3%, and 69.1%; and 96.6%, 74.7%, and 78.4%, respectively. Recursive partitioning analysis identified noncontrast ≥24.75 HU, with subsequent APEW ≤63.49%, as the optimum sequential parameter-threshold combination, which yielded increased sensitivity, specificity, and accuracy of 100.0%, 85.3%, and 90.7%, respectively. Discrimination using the combined sequential classifier yielded statistically significant improvements in accuracy when compared to the above conventional single-parameter criteria (all P ≤ .039). Sequential application of noncontrast and washout criteria from delayed contrast-enhanced adrenal CT can improve diagnostic performance beyond that of commonly applied single-parameter criteria. Validation of the sequential ordering and refinement of the specific threshold values warrant further study."	"Bayesian hierarchical models produce shrinkage estimators that can be used as the basis for integrating supplementary data into the analysis of a primary data source. Established approaches should be considered limited, however, because posterior estimation either requires prespecification of a shrinkage weight for each source or relies on the data to inform a single parameter, which determines the extent of influence or shrinkage from all sources, risking considerable bias or minimal borrowing. We introduce multisource exchangeability models (MEMs), a general Bayesian approach for integrating multiple, potentially non-exchangeable, supplemental data sources into the analysis of a primary data source. Our proposed modeling framework yields source-specific smoothing parameters that can be estimated in the presence of the data to facilitate a dynamic multi-resolution smoothed estimator that is asymptotically consistent while reducing the dimensionality of the prior space. When compared with competing Bayesian hierarchical modeling strategies, we demonstrate that MEMs achieve approximately 2.2 times larger median effective supplemental sample size when the supplemental data sources are exchangeable as well as a 56% reduction in bias when there is heterogeneity among the supplemental sources. We illustrate the application of MEMs using a recently completed randomized trial of very low nicotine content cigarettes, which resulted in a 30% improvement in efficiency compared with the standard analysis."
+"Hong, Changjin"	"Quantitative Health Sciences"	25983538	25225611	24261665	26100579	25805852	24267797	24261665	23282319	23843222	22735708	"Quality control and read preprocessing are critical steps in the analysis of data sets generated from high-throughput genomic screens. In the most extreme cases, improper preprocessing can negatively affect downstream analyses and may lead to incorrect biological conclusions. Here, we present PathoQC, a streamlined toolkit that seamlessly combines the benefits of several popular quality control software approaches for preprocessing next-generation sequencing data. PathoQC provides a variety of quality control options appropriate for most high-throughput sequencing applications. PathoQC is primarily developed as a module in the PathoScope software suite for metagenomic analysis. However, PathoQC is also available as an open-source Python module that can run as a stand-alone application or can be easily integrated into any bioinformatics workflow. PathoQC achieves high performance by supporting parallel computation and is an effective tool that removes technical sequencing artifacts and facilitates robust downstream analysis. The PathoQC software package is available at http://sourceforge.net/projects/PathoScope/. "	"Recent innovations in sequencing technologies have provided researchers with the ability to rapidly characterize the microbial content of an environmental or clinical sample with unprecedented resolution. These approaches are producing a wealth of information that is providing novel insights into the microbial ecology of the environment and human health. However, these sequencing-based approaches produce large and complex datasets that require efficient and sensitive computational analysis workflows. Many recent tools for analyzing metagenomic-sequencing data have emerged, however, these approaches often suffer from issues of specificity, efficiency, and typically do not include a complete metagenomic analysis framework. We present PathoScope 2.0, a complete bioinformatics framework for rapidly and accurately quantifying the proportions of reads from individual microbial strains present in metagenomic sequencing data from environmental or clinical samples. The pipeline performs all necessary computational analysis steps; including reference genome library extraction and indexing, read quality control and alignment, strain identification, and summarization and annotation of results. We rigorously evaluated PathoScope 2.0 using simulated data and data from the 2011 outbreak of Shiga-toxigenic Escherichia coli O104:H4. The results show that PathoScope 2.0 is a complete, highly sensitive, and efficient approach for metagenomic analysis that outperforms alternative approaches in scope, speed, and accuracy. The PathoScope 2.0 pipeline software is freely available for download at: http://sourceforge.net/projects/pathoscope/."	"DNA methylation has been linked to many important biological phenomena. Researchers have recently begun to sequence bisulfite treated DNA to determine its pattern of methylation. However, sequencing reads from bisulfite-converted DNA can vary significantly from the reference genome because of incomplete bisulfite conversion, genome variation, sequencing errors, and poor quality bases. Therefore, it is often difficult to align reads to the correct locations in the reference genome. Furthermore, bisulfite sequencing experiments have the additional complexity of having to estimate the DNA methylation levels within the sample. Here, we present a highly accurate probabilistic algorithm, which is an extension of the Genomic Next-generation Universal MAPper to accommodate bisulfite sequencing data (GNUMAP-bs), that addresses the computational problems associated with aligning bisulfite sequencing data to a reference genome. GNUMAP-bs integrates uncertainty from read and mapping qualities to help resolve the difference between poor quality bases and the ambiguity inherent in bisulfite conversion. We tested GNUMAP-bs and other commonly-used bisulfite alignment methods using both simulated and real bisulfite reads and found that GNUMAP-bs and other dynamic programming methods were more accurate than the more heuristic methods. The GNUMAP-bs aligner is a highly accurate alignment approach for processing the data from bisulfite sequencing experiments. The GNUMAP-bs algorithm is freely available for download at: http://dna.cs.byu.edu/gnumap. The software runs on multiple threads and multiple processors to increase the alignment speed."	"Malaria is a major health threat, affecting over 40% of the world's population. The latest report released by the World Health Organization estimated about 207 million cases of malaria infection, and about 627,000 deaths in 2012 alone. During the past decade, new therapeutic targets have been identified and are at various stages of characterization, thanks to the emerging omics-based technologies. However, the mechanism of malaria pathogenesis remains largely unknown. In this paper, we employ a novel neighborhood subnetwork alignment approach to identify network components that are potentially involved in pathogenesis. Our module-based subnetwork alignment approach identified 24 functional homologs of pathogenesis-related proteins in the malaria parasite P. falciparum, using the protein-protein interaction networks in Escherichia coli as references. Eighteen out of these 24 proteins are associated with 418 other proteins that are related to DNA replication, transcriptional regulation, translation, signaling, metabolism, cell cycle regulation, as well as cytoadherence and entry to the host. The subnetwork alignments and subsequent protein-protein association network mining predicted a group of malarial proteins that may be involved in parasite development and parasite-host interaction, opening a new systems-level view of parasite pathogenesis and virulence."	"Recent studies hint that endogenous dsRNA plays an unexpected role in cellular signaling. However, a complete understanding of endogenous dsRNA signaling is hindered by an incomplete annotation of dsRNA-producing genes. To identify dsRNAs expressed in Caenorhabditis elegans, we developed a bioinformatics pipeline that identifies dsRNA by detecting clustered RNA editing sites, which are strictly limited to long dsRNA substrates of Adenosine Deaminases that act on RNA (ADAR). We compared two alignment algorithms for mapping both unique and repetitive reads and detected as many as 664 editing-enriched regions (EERs) indicative of dsRNA loci. EERs are visually enriched on the distal arms of autosomes and are predicted to possess strong internal secondary structures as well as sequence complementarity with other EERs, indicative of both intramolecular and intermolecular duplexes. Most EERs were associated with protein-coding genes, with ∼1.7% of all C. elegans mRNAs containing an EER, located primarily in very long introns and in annotated, as well as unannotated, 3' UTRs. In addition to numerous EERs associated with coding genes, we identified a population of prospective noncoding EERs that were distant from protein-coding genes and that had little or no coding potential. Finally, subsets of EERs are differentially expressed during development as well as during starvation and infection with bacterial or fungal pathogens. By combining RNA-seq with freely available bioinformatics tools, our workflow provides an easily accessible approach for the identification of dsRNAs, and more importantly, a catalog of the C. elegans dsRNAome. "	"According to the World Health organization, half the world's population is at risk of contracting malaria. They estimated that in 2010 there were 219 million cases of malaria, resulting in 660,000 deaths and an enormous economic burden on the countries where malaria is endemic. The adoption of various high-throughput genomics-based techniques by malaria researchers has meant that new avenues to the study of this disease are being explored and new targets for controlling the disease are being developed. Here, we apply a novel neighborhood subnetwork alignment approach to identify the interacting elements that help regulate the cell cycle of the malaria parasite Plasmodium falciparum. Our novel subnetwork alignment approach was used to compare networks in Escherichia coli and P. falciparum. Some 574 P. falciparum proteins were revealed as functional orthologs of known cell cycle proteins in E. coli. Over one third of these predicted functional orthologs were annotated as &quot;conserved Plasmodium proteins&quot; or &quot;putative uncharacterized proteins&quot; of unknown function. The predicted functionalities included cyclins, kinases, surface antigens, transcriptional regulators and various functions related to DNA replication, repair and cell division. The results of our analysis demonstrate the power of our subnetwork alignment approach to assign functionality to previously unannotated proteins. Here, the focus was on proteins involved in cell cycle regulation. These proteins are involved in the control of diverse aspects of the parasite lifecycle and of important aspects of pathogenesis."	"DNA methylation has been linked to many important biological phenomena. Researchers have recently begun to sequence bisulfite treated DNA to determine its pattern of methylation. However, sequencing reads from bisulfite-converted DNA can vary significantly from the reference genome because of incomplete bisulfite conversion, genome variation, sequencing errors, and poor quality bases. Therefore, it is often difficult to align reads to the correct locations in the reference genome. Furthermore, bisulfite sequencing experiments have the additional complexity of having to estimate the DNA methylation levels within the sample. Here, we present a highly accurate probabilistic algorithm, which is an extension of the Genomic Next-generation Universal MAPper to accommodate bisulfite sequencing data (GNUMAP-bs), that addresses the computational problems associated with aligning bisulfite sequencing data to a reference genome. GNUMAP-bs integrates uncertainty from read and mapping qualities to help resolve the difference between poor quality bases and the ambiguity inherent in bisulfite conversion. We tested GNUMAP-bs and other commonly-used bisulfite alignment methods using both simulated and real bisulfite reads and found that GNUMAP-bs and other dynamic programming methods were more accurate than the more heuristic methods. The GNUMAP-bs aligner is a highly accurate alignment approach for processing the data from bisulfite sequencing experiments. The GNUMAP-bs algorithm is freely available for download at: http://dna.cs.byu.edu/gnumap. The software runs on multiple threads and multiple processors to increase the alignment speed."	"Malaria causes over one million deaths annually, posing an enormous health and economic burden in endemic regions. The completion of genome sequencing of the causative agents, a group of parasites in the genus Plasmodium, revealed potential drug and vaccine candidates. However, genomics-driven target discovery has been significantly hampered by our limited knowledge of the cellular networks associated with parasite development and pathogenesis. In this paper, we propose an approach based on aligning neighborhood PPI subnetworks across species to identify network components in the malaria parasite P. falciparum. Instead of only relying on sequence similarities to detect functional orthologs, our approach measures the conservation between the neighborhood subnetworks in protein-protein interaction (PPI) networks in two species, P. falciparum and E. coli. 1,082 P. falciparum proteins were predicted as functional orthologs of known transcriptional regulators in the E. coli network, including general transcriptional regulators, parasite-specific transcriptional regulators in the ApiAP2 protein family, and other potential regulatory proteins. They are implicated in a variety of cellular processes involving chromatin remodeling, genome integrity, secretion, invasion, protein processing, and metabolism. In this proof-of-concept study, we demonstrate that a subnetwork alignment approach can reveal previously uncharacterized members of the subnetworks, which opens new opportunities to identify potential therapeutic targets and provide new insights into parasite biology, pathogenesis and virulence. This approach can be extended to other systems, especially those with poor genome annotation and a paucity of knowledge about cellular networks."	"Emerging next-generation sequencing technologies have revolutionized the collection of genomic data for applications in bioforensics, biosurveillance, and for use in clinical settings. However, to make the most of these new data, new methodology needs to be developed that can accommodate large volumes of genetic data in a computationally efficient manner. We present a statistical framework to analyze raw next-generation sequence reads from purified or mixed environmental or targeted infected tissue samples for rapid species identification and strain attribution against a robust database of known biological agents. Our method, Pathoscope, capitalizes on a Bayesian statistical framework that accommodates information on sequence quality, mapping quality, and provides posterior probabilities of matches to a known database of target genomes. Importantly, our approach also incorporates the possibility that multiple species can be present in the sample and considers cases when the sample species/strain is not in the reference database. Furthermore, our approach can accurately discriminate between very closely related strains of the same species with very little coverage of the genome and without the need for multiple alignment steps, extensive homology searches, or genome assembly--which are time-consuming and labor-intensive steps. We demonstrate the utility of our approach on genomic data from purified and in silico &quot;environmental&quot; samples from known bacterial agents impacting human health for accuracy assessment and comparison with other approaches."	"Understanding the categorization of human diseases is critical for reliably identifying disease causal genes. Recently, genome-wide studies of abnormal chromosomal locations related to diseases have mapped &gt;2000 phenotype-gene relations, which provide valuable information for classifying diseases and identifying candidate genes as drug targets. In this article, a regularized non-negative matrix tri-factorization (R-NMTF) algorithm is introduced to co-cluster phenotypes and genes, and simultaneously detect associations between the detected phenotype clusters and gene clusters. The R-NMTF algorithm factorizes the phenotype-gene association matrix under the prior knowledge from phenotype similarity network and protein-protein interaction network, supervised by the label information from known disease classes and biological pathways. In the experiments on disease phenotype-gene associations in OMIM and KEGG disease pathways, R-NMTF significantly improved the classification of disease phenotypes and disease pathway genes compared with support vector machines and Label Propagation in cross-validation on the annotated phenotypes and genes. The newly predicted phenotypes in each disease class are highly consistent with human phenotype ontology annotations. The roles of the new member genes in the disease pathways are examined and validated in the protein-protein interaction subnetworks. Extensive literature review also confirmed many new members of the disease classes and pathways as well as the predicted associations between disease phenotype classes and pathways."
+"Hu, Bo"	"Quantitative Health Sciences"	29518270	29471147	27895266	26179943	24747226	23710259	22535711	22402803	20819841	18355383	"Charcot-Marie-Tooth type 4J (CMT4J) is a rare autosomal recessive neuropathy caused by mutations in FIG4 that result in loss of FIG4 protein. This study investigates the natural history and mechanisms of segmental demyelination in CMT4J. Over the past 9 years, we have enrolled and studied a cohort of 12 CMT4J patients, including 6 novel FIG4 mutations. We evaluated these patients and related mouse models using morphological, electrophysiological, and biochemical approaches. We found sensory motor demyelinating polyneuropathy consistently in all patients. This underlying myelin pathology was associated with nonuniform slowing of conduction velocities, conduction block, and temporal dispersion on nerve conduction studies, which resemble those features in acquired demyelinating peripheral nerve diseases. Segmental demyelination was also confirmed in mice without Fig4 (Fig4<sup>-/-</sup> ). The demyelination was associated with an increase of Schwann cell dedifferentiation and macrophages in spinal roots where nerve-blood barriers are weak. Schwann cell dedifferentiation was induced by the increasing intracellular Ca<sup>2+</sup> . Suppression of Ca<sup>2+</sup> level by a chelator reduced dedifferentiation and demyelination of Schwann cells in vitro and in vivo. Interestingly, cell-specific knockout of Fig4 in mouse Schwann cells or neurons failed to cause segmental demyelination. Myelin change in CMT4J recapitulates the features of acquired demyelinating neuropathies. This pathology is not Schwann cell autonomous. Instead, it relates to systemic processes involving interactions of multiple cell types and abnormally elevated intracellular Ca<sup>2+</sup> . Injection of a Ca<sup>2+</sup> chelator into Fig4<sup>-/-</sup> mice improved segmental demyelination, thereby providing a therapeutic strategy against demyelination. Ann Neurol 2018;83:756-770."	"Photodynamic therapy (PDT) is a non-scarring alternative for treating basal cell carcinoma (BCC) in patients with Basal Cell Nevus Syndrome (BCNS), also known as Gorlin syndrome. In Europe, red light (635 nm) is the predominant source for PDT, whereas in the United States blue light (400 nm) is more widely available. The objective of this study was to conduct a head-to-head comparison of blue light and red light PDT in the same BCNS patients. In a pilot study of three patients with 141 BCC lesions, 5-aminolevulinate (20% solution) was applied to all tumors. After 4 h, half of the tumors were illuminated with blue light and the remainder with red light. To ensure safety while treating this many tumors simultaneously, light doses were escalated gradually. Six treatments were administered in three biweekly sessions over 4 months, with a final evaluation at 6 months. Tumor status was documented with high-resolution photographs. Persistent lesions were biopsied at 6 months. Clearance rates after blue light (98%) were slightly better than after red light (93%), with blue light shown to be statistically non-inferior to red light. Eight suspicious lesions were biopsied, 5 after red light (5/5 were BCC) and 3 after blue light (1 was BCC). Blue light PDT was reportedly less painful. Blue light and red light PDT appear to be equally safe and perhaps equally effective for treating BCC tumors in BCNS patients. Further studies to evaluate long-term clearance after blue light PDT are needed."	"The time-dependent receiver operating characteristic curve is often used to study the diagnostic accuracy of a single continuous biomarker, measured at baseline, on the onset of a disease condition when the disease onset may occur at different times during the follow-up and hence may be right censored. Due to right censoring, the true disease onset status prior to the pre-specified time horizon may be unknown for some patients, which causes difficulty in calculating the time-dependent sensitivity and specificity. We propose to estimate the time-dependent sensitivity and specificity by weighting the censored data by the conditional probability of disease onset prior to the time horizon given the biomarker, the observed time to event, and the censoring indicator, with the weights calculated nonparametrically through a kernel regression on time to event. With this nonparametric weighting adjustment, we derive a novel, closed-form formula to calculate the area under the time-dependent receiver operating characteristic curve. We demonstrate through numerical study and theoretical arguments that the proposed method is insensitive to misspecification of the kernel bandwidth, produces unbiased and efficient estimators of time-dependent sensitivity and specificity, the area under the curve, and other estimands from the receiver operating characteristic curve, and outperforms several other published methods currently implemented in R packages."	"Longitudinal cohort studies often collect both repeated measurements of longitudinal outcomes and times to clinical events whose occurrence precludes further longitudinal measurements. Although joint modeling of the clinical events and the longitudinal data can be used to provide valid statistical inference for target estimands in certain contexts, the application of joint models in medical literature is currently rather restricted because of the complexity of the joint models and the intensive computation involved. We propose a multiple imputation approach to jointly impute missing data of both the longitudinal and clinical event outcomes. With complete imputed datasets, analysts are then able to use simple and transparent statistical methods and standard statistical software to perform various analyses without dealing with the complications of missing data and joint modeling. We show that the proposed multiple imputation approach is flexible and easy to implement in practice. Numerical results are also provided to demonstrate its performance. Copyright © 2015 John Wiley &amp; Sons, Ltd."	"Statistical methods to identify symptom clusters (SC) have varied between studies. The optimal statistical method to identify SC is unknown. Our primary objective was to explore whether eight different statistical techniques applied to a single data set produced different SC. A secondary objective was to investigate whether SC identified by these techniques resembled those from our original study. We reanalyzed a symptom data set of 1000 patients with advanced cancer. Eight separate cluster analyses were conducted on both prevalence and severity of 38 symptoms. Hierarchical cluster analysis identified clusters at r-values of 0.6, 0.5, and 0.4. For prevalence and severity, the Spearman correlation and Kendall tau-b correlation, respectively, measured the similarity (distance) between symptom pairs. Sensitivity analysis of the prevalence data was done with Cohen kappa coefficient as a similarity measure. The K-means clustering method validated clusters. Hierarchical cluster analysis identified similar cluster configurations from the 38 symptoms using an r-value of 0.6, 0.5, or 0.4. A cutoff point of 0.6 yielded seven clusters. Five of them were identical at all three r-values used: (1) fatigue/anorexia-cachexia: anorexia, dry mouth, early satiety, fatigue, lack of energy, taste changes, weakness, and weight loss (&gt;10%); (2) gastrointestinal: belching, bloating, dyspepsia, and hiccough; (3) nausea/vomiting: nausea and vomiting; (4) aerodigestive: cough, dysphagia, dyspnea, hoarseness, and wheeze; (5) neurologic: confusion, hallucinations, and memory problems. Regardless of the threshold, there were always some symptoms (e.g., pain) that did not cluster with any others. Seven clusters were validated by K-means analysis. Seven SC identified from both prevalence and severity data were consistently present irrespective of the statistical analysis used. There were only minor variations in the number of clusters and their symptom composition between analytical techniques. All seven clusters originally identified were confirmed. Four consistent SC were found in all analyses: aerodigestive, fatigue/anorexia-cachexia, nausea/vomiting, and upper GI. Our results support the clinical importance of the SC concept."	"Allele-specific methylation (ASM) has long been studied but mainly documented in the context of genomic imprinting and X chromosome inactivation. Taking advantage of the next-generation sequencing technology, we conduct a high-throughput sequencing experiment with four prostate cell lines to survey the whole genome and identify single nucleotide polymorphisms (SNPs) with ASM. A Bayesian approach is proposed to model the counts of short reads for each SNP conditional on its genotypes of multiple subjects, leading to a posterior probability of ASM. We flag SNPs with high posterior probabilities of ASM by accounting for multiple comparisons based on posterior false discovery rates. Applying the Bayesian approach to the in-house prostate cell line data, we identify 269 SNPs as candidates of ASM. A simulation study is carried out to demonstrate the quantitative performance of the proposed approach."	"This paper proposes a nonparametric procedure to describe the progression of longitudinal cohorts over time from a population averaged perspective, leading to multistate probability curves with the states defined jointly by survival and longitudinal outcomes measured with error. To account for the challenges of informative dropout and nonlinear shapes of the longitudinal trajectories, we apply a bias corrected penalized spline regression to estimate the unobserved longitudinal trajectory for each subject. We then estimate the multistate probability curves on the basis of the survival data and the estimated longitudinal trajectories. We further use simulation-extrapolation method to reduce the estimation bias caused by the randomness of the estimated trajectories. We develop a bootstrap test to compare multistate probability curves between groups. We present theoretical justification of the estimation procedure along with a simulation study to demonstrate finite sample performance. We illustrate the procedure by data from the African American Study of Kidney Disease and Hypertension, and it can be widely applied in longitudinal studies."	"The typical assumption is that patients with CKD will have progressive nephropathy. Methodological issues, such as measurement error and regression to the mean, have made it difficult to document whether kidney function might improve in some patients. Here, we used data from 12 years of follow-up in the African American Study of Kidney Disease and Hypertension to determine whether some patients with CKD can experience a sustained improvement in GFR. We calculated estimated GFR (eGFR) based on serum creatinine measurements during both the trial and cohort phases. We defined clearly improved patients as those with positive eGFR slopes that we could not explain by random measurement variation under Bayesian mixed-effects models. Of 949 patients with at least three follow-up eGFR measurements, 31 (3.3%) demonstrated clearly positive eGFR slopes. The mean slope among these patients was +1.06 (0.12) ml/min per 1.73 m(2) per yr, compared with -2.45 (0.07) ml/min per 1.73 m(2) per yr among the remaining patients. During the trial phase, 24 (77%) of these 31 patients also had clearly positive slopes of (125)I-iothalamate-measured GFR during the trial phase. Low levels of proteinuria at baseline and randomization to the lower BP goal (mean arterial pressure ≤92 mmHg) associated with improved eGFR. In conclusion, the extended follow-up from this study provides strong evidence that kidney function can improve in some patients with hypertensive CKD."	"We propose to adaptively insert new doses during the course of a dose-finding trial when none of the prespecified doses in the trial are acceptable, for example, have tolerable toxicity. Our procedure uses an activation rule to determine whether a new dose is needed and an inverse dose-response algorithm to estimate new doses to be inserted into the trial. The proposed method can be applied to both one-agent and two-agent trials. In application to a Phase I trial about advanced ovarian cancer, our method selected a new dose that is better than all prespecified doses in at least 44% simulations. The effectiveness of the procedure was also demonstrated in a simulation study. The proposed method is applicable to dose-finding trials with binary responses. We believe that with the added adaptive dose insertion, traditional dose-finding trials will have better chances of locating desirable doses. In addition, by allowing for dose insertion, unnecessary trial suspension due to lack of acceptable doses can be avoided."	"Inverse dose-response estimation refers to the inference of an effective dose of some agent that gives a desired probability of response, say 0.5. We consider inverse dose response for two agents, an application that has not received much attention in the literature. Through the posterior profiling technique (Hsu, 1995, The Canadian Journal of Statistics 23, 399-410), we propose a Bayesian method in which we approximate the marginal posterior distribution of an effective dose using a profile posterior distribution, and obtain the maximum a posteriori (MAP) estimate for the effective dose. We then employ an adaptive direction sampling algorithm to obtain the highest posterior density (HPD) credible region for the effective dose. Using the MAP and HPD estimates, investigators will be able to simultaneously calibrate the levels of two agents in dose-response studies. We illustrate our proposed Bayesian method through a simulation study and two practical examples."
+"Hu, Ming"	"Quantitative Health Sciences"	30986246	30746303	26969411	18302784	26124977	23382666	27153668	26543175	28877673	27851967	"Hi-C and chromatin immunoprecipitation (ChIP) have been combined to identify long-range chromatin interactions genome-wide at reduced cost and enhanced resolution, but extracting information from the resulting datasets has been challenging. Here we describe a computational method, MAPS, Model-based Analysis of PLAC-seq and HiChIP, to process the data from such experiments and identify long-range chromatin interactions. MAPS adopts a zero-truncated Poisson regression framework to explicitly remove systematic biases in the PLAC-seq and HiChIP datasets, and then uses the normalized chromatin contact frequencies to identify significant chromatin interactions anchored at genomic regions bound by the protein of interest. MAPS shows superior performance over existing software tools in the analysis of chromatin interactions from multiple PLAC-seq and HiChIP datasets centered on different transcriptional factors and histone marks. MAPS is freely available at https://github.com/ijuric/MAPS."	"To establish a predictive model of macular hole (MH) closure speed. This study was a post hoc analysis of eyes that underwent full-thickness MH repair in the prospective PIONEER intraoperative optical coherence tomography (iOCT) study. The Bioptigen SDOIS system was used for iOCT imaging. All patients underwent standard small-gauge vitrectomy with internal limiting membrane (ILM) peeling, gas tamponade, and postoperative facedown positioning. Before vitrectomy and after ILM peeling, various quantitative OCT measures related to MH were obtained, including MH geometry alterations and outer retinal features. Trans-gas OCT was performed on postoperative day 1 to evaluate MH closure. Univariate and multivariate analyses were conducted to identify predictors of early MH closure (i.e., postoperative day 1 [POD 1] closure). Thirty-two (86%) out of 37 eyes were confirmed for MH closure at POD 1. At 3 months, MH closure was achieved in 35 (95%) eyes. After multivariate logistic regression analyses, seven covariates were determined as predictors for MH closure. These seven covariates included age, ellipsoid zone-retinal pigment epithelium expansion following ILM peel, preincision minimal width, post-ILM peel MH depth, change in MH volume, change in minimum MH width, and change in MH depth. Using these seven covariates, the area under the curve was 0.974. Cross-validation analysis indicated that intraoperative change in MH volume, intraoperative change in minimal width, and preincision minimal width were the most robust predictors for early MH. This study suggests that iOCT may be important in predicting MH closure speed and may be a surrogate for tissue properties/behavior. A future prospective clinical trial is needed to validate this model. This study provides unique insights into the potential role of iOCT imaging in predicting retinal tissue behavior during MH repair."	"Genome-wide association studies (GWAS) have identified thousands of genetic variants associated with complex traits and diseases. However, most of them are located in the non-protein coding regions, and therefore it is challenging to hypothesize the functions of these non-coding GWAS variants. Recent large efforts such as the ENCODE and Roadmap Epigenomics projects have predicted a large number of regulatory elements. However, the target genes of these regulatory elements remain largely unknown. Chromatin conformation capture based technologies such as Hi-C can directly measure the chromatin interactions and have generated an increasingly comprehensive catalog of the interactome between the distal regulatory elements and their potential target genes. Leveraging such information revealed by Hi-C holds the promise of elucidating the functions of genetic variants in human diseases. In this work, we present HiView, the first integrative genome browser to leverage Hi-C results for the interpretation of GWAS variants. HiView is able to display Hi-C data and statistical evidence for chromatin interactions in genomic regions surrounding any given GWAS variant, enabling straightforward visualization and interpretation. We believe that as the first GWAS variants-centered Hi-C genome browser, HiView is a useful tool guiding post-GWAS functional genomics studies. HiView is freely accessible at: http://www.unc.edu/~yunmli/HiView ."	"Mining gene patterns that are common to multiple genomes is an important biological problem, which can lead us to novel biological insights. When family classification of genes is available, this problem is similar to the pattern mining problem in the data mining community. However, when family classification information is not available, mining gene patterns is a challenging problem. There are several well developed algorithms for predicting gene patterns in a pair of genomes, such as FISH and DAGchainer. These algorithms use the optimization problem formulation which is solved using the dynamic programming technique. Unfortunately, extending these algorithms to multiple genome cases is not trivial due to the rapid increase in time and space complexity. In this paper, we propose a novel algorithm for mining gene patterns in more than two prokaryote genomes using interchangeable sets. The basic idea is to extend the pattern mining technique from the data mining community to handle the situation where family classification information is not available using interchangeable sets. In an experiment with four newly sequenced genomes (where the gene annotation is unavailable), we show that the gene pattern can capture important biological information. To examine the effectiveness of gene patterns further, we propose an ortholog prediction method based on our gene pattern mining algorithm and compare our method to the bi-directional best hit (BBH) technique in terms of COG orthologous gene classification information. The experiment show that our algorithm achieves a 3% increase in recall compared to BBH without sacrificing the precision of ortholog detection. The discovered gene patterns can be used for the detecting of ortholog and genes that collaborate for a common biological function."	"Understanding how chromosomes fold provides insights into the transcription regulation, hence, the functional state of the cell. Using the next generation sequencing technology, the recently developed Hi-C approach enables a global view of spatial chromatin organization in the nucleus, which substantially expands our knowledge about genome organization and function. However, due to multiple layers of biases, noises and uncertainties buried in the protocol of Hi-C experiments, analyzing and interpreting Hi-C data poses great challenges, and requires novel statistical methods to be developed. This article provides an overview of recent Hi-C studies and their impacts on biomedical research, describes major challenges in statistical analysis of Hi-C data, and discusses some perspectives for future research."	"Knowledge of spatial chromosomal organizations is critical for the study of transcriptional regulation and other nuclear processes in the cell. Recently, chromosome conformation capture (3C) based technologies, such as Hi-C and TCC, have been developed to provide a genome-wide, three-dimensional (3D) view of chromatin organization. Appropriate methods for analyzing these data and fully characterizing the 3D chromosomal structure and its structural variations are still under development. Here we describe a novel Bayesian probabilistic approach, denoted as &quot;Bayesian 3D constructor for Hi-C data&quot; (BACH), to infer the consensus 3D chromosomal structure. In addition, we describe a variant algorithm BACH-MIX to study the structural variations of chromatin in a cell population. Applying BACH and BACH-MIX to a high resolution Hi-C dataset generated from mouse embryonic stem cells, we found that most local genomic regions exhibit homogeneous 3D chromosomal structures. We further constructed a model for the spatial arrangement of chromatin, which reveals structural properties associated with euchromatic and heterochromatic regions in the genome. We observed strong associations between structural properties and several genomic and epigenetic features of the chromosome. Using BACH-MIX, we further found that the structural variations of chromatin are correlated with these genomic and epigenetic features. Our results demonstrate that BACH and BACH-MIX have the potential to provide new insights into the chromosomal architecture of mammalian cells."	"How chromatin folds in three-dimensional (3D) space is closely related to transcription regulation. As powerful tools to study such 3D chromatin conformation, the recently developed Hi-C technologies enable a genome-wide measurement of pair-wise chromatin interaction. However, methods for the detection of biologically meaningful chromatin interactions, i.e. peak calling, from Hi-C data, are still under development. In our previous work, we have developed a novel hidden Markov random field (HMRF) based Bayesian method, which through explicitly modeling the non-negligible spatial dependency among adjacent pairs of loci manifesting in high resolution Hi-C data, achieves substantially improved robustness and enhanced statistical power in peak calling. Superior to peak callers that ignore spatial dependency both methodologically and in performance, our previous Bayesian framework suffers from heavy computational costs due to intensive computation incurred by modeling the correlated peak status of neighboring loci pairs and the inference of hidden dependency structure. In this work, we have developed FastHiC, a novel approach based on simulated field approximation, which approximates the joint distribution of the hidden peak status by a set of independent random variables, leading to more tractable computation. Performance comparisons in real data analysis showed that FastHiC not only speeds up our original Bayesian method by more than five times, bus also achieves higher peak calling accuracy. FastHiC is freely accessible at:http://www.unc.edu/∼yunmli/FastHiC/ CONTACTS: : yunli@med.unc.edu or ming.hu@nyumc.org Supplementary data are available at Bioinformatics online."	"Advances in chromosome conformation capture and next-generation sequencing technologies are enabling genome-wide investigation of dynamic chromatin interactions. For example, Hi-C experiments generate genome-wide contact frequencies between pairs of loci by sequencing DNA segments ligated from loci in close spatial proximity. One essential task in such studies is peak calling, that is, detecting non-random interactions between loci from the two-dimensional contact frequency matrix. Successful fulfillment of this task has many important implications including identifying long-range interactions that assist interpreting a sizable fraction of the results from genome-wide association studies. The task - distinguishing biologically meaningful chromatin interactions from massive numbers of random interactions - poses great challenges both statistically and computationally. Model-based methods to address this challenge are still lacking. In particular, no statistical model exists that takes the underlying dependency structure into consideration. In this paper, we propose a hidden Markov random field (HMRF) based Bayesian method to rigorously model interaction probabilities in the two-dimensional space based on the contact frequency matrix. By borrowing information from neighboring loci pairs, our method demonstrates superior reproducibility and statistical power in both simulation studies and real data analysis. The Source codes can be downloaded at: http://www.unc.edu/∼yunmli/HMRFBayesHiC CONTACT: ming.hu@nyumc.org or yunli@med.unc.edu Supplementary data are available at Bioinformatics online."	"Inferring local ancestry in individuals of mixed ancestry has many applications, most notably in identifying disease-susceptible loci that vary among different ethnic groups. Many software packages are available for inferring local ancestry in admixed individuals. However, most of these existing software packages require specific formatted input files and generate output files in various types, yielding practical inconvenience. We developed a tool set, Local Ancestry Inference Toolkit (LAIT), which can convert standardized files into software-specific input file formats as well as standardize and summarize inference results for four popular local ancestry inference software: HAPMIX, LAMP, LAMP-LD, and ELAI. We tested LAIT using both simulated and real data sets and demonstrated that LAIT provides convenience to run multiple local ancestry inference software. In addition, we evaluated the performance of local ancestry software among different supported software packages, mainly focusing on inference accuracy and computational resources used. We provided a toolkit to facilitate the use of local ancestry inference software, especially for users with limited bioinformatics background."	"The three-dimensional configuration of DNA is integral to all nuclear processes in eukaryotes, yet our knowledge of the chromosome architecture is still limited. Genome-wide chromosome conformation capture studies have uncovered features of chromatin organization in cultured cells, but genome architecture in human tissues has yet to be explored. Here, we report the most comprehensive survey to date of chromatin organization in human tissues. Through integrative analysis of chromatin contact maps in 21 primary human tissues and cell types, we find topologically associating domains highly conserved in different tissues. We also discover genomic regions that exhibit unusually high levels of local chromatin interactions. These frequently interacting regions (FIREs) are enriched for super-enhancers and are near tissue-specifically expressed genes. They display strong tissue-specificity in local chromatin interactions. Additionally, FIRE formation is partially dependent on CTCF and the Cohesin complex. We further show that FIREs can help annotate the function of non-coding sequence variants."
+"Huang, Emina"	"Cancer Biology"	30738331	29983891	29560130	28881576	24643495	22914954	22902411	21779143	20186482	19808966	"Dysfunctional inflammatory pathways are associated with an increased risk of cancer, including colorectal cancer. We have previously identified and enriched for a self-renewing, colon cancer stem cell (CCSC) subpopulation in primary sporadic colorectal cancers (CRC) and a related subpopulation in ulcerative colitis (UC) patients defined by the stem cell marker, aldehyde dehydrogenase (ALDH). Subsequent work demonstrated that CCSC-initiated tumors are dependent on the inflammatory chemokine, CXCL8, a known inducer of tumor proliferation, angiogenesis and invasion. Here, we use RNA interference to target CXCL8 and its receptor, CXCR1, to establish the existence of a functional signaling pathway promoting tumor growth initiated by sporadic and colitis CCSCs. Knocking down either CXCL8 or CXCR1 had a dramatic effect on inhibiting both in vitro proliferation and angiogenesis. Likewise, tumorigenicity was significantly inhibited due to reduced levels of proliferation and angiogenesis. Decreased expression of cycle cell regulators cyclins D1 and B1 along with increased p21 levels suggested that the reduction in tumor growth is due to dysregulation of cell cycle progression. Therapeutically targeting the CXCL8-CXCR1 signaling pathway has the potential to block sustained tumorigenesis by inhibiting both CCSC- and pCCSC-induced proliferation and angiogenesis."	"Ulcerative colitis (UC) is a prevalent form of inflammatory bowel disease (IBD) whose pathogenic mechanisms remain unclear. Elucidating these mechanisms is important to reduce UC symptoms and to prevent UC progression into colitis-associated colon cancer (CAC). Our goal was to develop and validate faithful, human-derived, UC models and analyze them at histologic, transcriptomic and epigenetic levels to allow mechanistic studies of UC and CAC pathogenesis. We generated patient-derived primary-organoid cultures from UC and non-IBD colonic epithelium. We phenotyped them histologically and used next-generation-sequencing approaches to profile whole transcriptomes and epigenomes of organoids and primary tissues. Tissue organization and expression of mucin 2 (MUC2) and lysozyme (LYZ) demonstrated histologic faithfulness of organoids to healthy and diseased colonic epithelium. Transcriptomic analyses showed increased expression of inflammatory pathways in UC patient-derived organoids and tissues. Profiling for active enhancers using the H3K27ac histone modification revealed UC-derived organoid enrichment for pathways indicative of gastrointestinal cancer, including S100 calcium-binding protein P (S100P), and revealed novel markers for GI cancer, including both LYZ and neuropeptide S receptor 1 (NPSR1). Immunolocalization showed increased levels of LYZ, S100P, and NPSR1 proteins in UC and CAC. In conclusion, primary colonic organoid cultures from UC and non-IBD patients can be established that faithfully represent diseased or normal colonic states. These models reveal precancerous molecular pathways that are already activated in UC. The findings demonstrate the suitability of primary organoids for dissecting UC and CAC pathogenic mechanisms and suggest new targets for therapeutic intervention."	"Inflammatory bowel disease (IBD) affects one million people in the US. Ulcerative colitis (UC) is a subtype of IBD that can lead to colitis-associated cancer (CAC). In UC, the rate of CAC is 3-5-fold greater than the rate of sporadic colorectal cancer (CRC). The pathogenesis of UC and CAC are due to aberrant interactions between host immune system and microenvironment, but precise mechanisms are still unknown. In colitis and CAC, microenvironmental fibroblasts exhibit an activated, inflammatory phenotype that contributes to tumorigenesis accompanied by excessive secretion of the chemokine CXCL8. However, mechanisms regulating CXCL8 secretion are unclear. Since it is known that miRNAs regulate chemokines such as CXCL8, we queried a microRNA library for mimics affecting CXCL8 secretion. Among the identified microRNAs, miR-20a/b was further investigated as its stromal expression levels inversely correlated with the amounts of CXCL8 secreted and predicted fibroblast tumor-promoting activity. Indeed, miR-20a directly bound to the 3'UTR of CXCL8 mRNA and regulated its expression by translational repression. In vivo co-inoculation studies with CRC stem cells demonstrated that fibroblasts characterized by high miR-20a expression had reduced tumor-promoting activities. These studies reveal that in stromal fibroblasts, miR-20a modulates CXCL8 function, therefore influencing tumor latency."	"In sporadic colon cancer, colon cancer stem cells (CCSCs) initiate tumorigenesis and may contribute to late disease recurrences and metastases. We previously showed that aldehyde dehydrogenase (ALDH) activity (as indicated by the ALDEFLUOR<sup>®</sup> assay) is an effective marker for highly enriching CCSCs for further evaluation. Here, we used comparative transcriptome and proteome approaches to identify signaling pathways overrepresented in the CCSC population. We found overexpression of several components of the phosphoinositide 3-kinase (PI3K)/Akt/mechanistic target of rapamycin (mTOR) signaling pathway, including PI3KR2, a regulatory subunit of PI3K. LY294002, a PI3K inhibitor, defined the contribution of the PI3K/Akt/mTOR signaling pathway in CCSCs. LY294002-treated CCSCs showed decreases in proliferation, sphere formation and self-renewal, in phosphorylation-dependent activation of Akt, and in expression of cyclin D1. Inhibition of PI3K in vivo reduced tumorigenicity, increased detection of cleaved caspase 3, an indicator of apoptosis, and elevated expression of the inflammatory chemokine, CXCL8. Collectively, these results indicate that PI3K/Akt/mTOR signaling controls CCSC proliferation and CCSC survival, and suggests that it would be useful to develop therapeutic agents that target this signaling pathway."	"Colorectal cancer remains the most common gastrointestinal cancer. While screening combined with effective surgical treatment has reduced its mortality, we still do not have effective means to prevent recurrence nor to treat metastatic disease. What we know about cancer biology has gone through revolutionary changes in recent decades. The advent of the cancer stem cell theory has accelerated our understanding of the cancer cell. However, there is increasing evidence that cancer cells are influenced by their surrounding microenvironment. This review divides the tumor microenvironment into four functional components-the stem cell niche, cancer stroma, immune cells, and vascular endothelia-and examines their individual and collective influence on the growth and metastasis of the colon cancer stem cell. The discussion will highlight the need to fully exploit the tumor microenvironment when designing future prognostic tools and therapies."	"Aldehyde dehydrogenase (ALDH) can be used as a marker to isolate, propagate, and track normal and cancerous human colon stem cells. To determine their tumorigenic potential, tissues obtained from proximal (normal counterpart) and distal (cancerous) colon of colon cancer patients are implanted into NOD-SCID mice. In parallel, ALDH(high) and ALDH(low) cells are isolated via Florescence Associated Cell Sorting (FACS) after the dissociation of distal and proximal colon tissues into a single-cell suspension. Flow cytometry for ALDH(high) and ALDH(low) cells is possible with the ALDEFLUOR assay. Following cell sorting, ALDH-enriched cells are tested for their tumorigenic potential in vivo as xenografts. Owing to cancer stem cell properties, ALDH(high) cells could be propagated in vivo by serial passaging of the human tissue as xenografts and in vitro as suspension cultures called sphere cultures. In this unit, all the above-mentioned methods to isolate and propagate colon cancer stem cells using ALDH as a stem cell marker are described in detail."	"Ulcerative colitis (UC) increases the risk of colorectal cancer (CRC), but the mechanisms involved in colitis-to-cancer transition (CCT) are not well understood. CCT may involve a inflammation-dysplasia-carcinoma progression sequence compared with the better characterized adenoma-carcinoma progression sequence associated with sporadic CRC. One common thread may be activating mutations in components of the Wnt/β-catenin signaling pathway, which occur commonly as early events in sporadic CRC. To examine this hypothesis, we evaluated possible associations between Wnt/β-catenin signaling and CCT based on the cancer stem cell (CSC) model. Wnt/β-catenin immunostaining indicated that UC patients have a level of Wnt-pathway-active cells that is intermediate between normal colon and CRC. These UC cells exhibiting activation of the Wnt pathway constituted a major subpopulation (52% + 7.21) of the colonic epithelial cells positive for aldehyde dehydrogenase (ALDH), a putative marker of precursor colon CSC (pCCSC). We further fractionated this subpopulation of pCCSC using a Wnt pathway reporter assay. Over successive passages, pCCSCs with the highest Wnt activity exhibited higher clonogenic and tumorigenic potential than pCCSCs with the lowest Wnt activity, thereby establishing the key role of Wnt activity in driving CSC-like properties in these cells. Notably, 5/20 single cell injections of high-Wnt pCCSC resulted in tumor formation, suggesting a correlation with CCT. Attenuation of Wnt/β-catenin in high-Wnt pCCSC by shRNA-mediated downregulation or pharmacological inhibition significantly reduced tumor growth rates. Overall, the results of our study indicates (i) that early activation of Wnt/β-catenin signaling is critical for CCT and (ii) that high levels of Wnt/β-catenin signaling can further demarcate high-ALDH tumor-initiating cells in the nondysplastic epithelium of UC patients. As such, our findings offer plausible diagnostic markers and therapeutic target in the Wnt signaling pathway for early intervention in CCT."	"Advances in molecular biology have defined the molecular basis for colorectal cancer (CRC). Though only a fraction of CRC has been determined to have a hereditary component, the discovery of genetic alterations in these clinical syndromes has permitted definition of similar discoveries in sporadic CRC. Here we will delineate the molecular basis for the most common of these defined syndromes, including familial adenomatous polyposis, hereditary non-polyposis colon cancer, MUTYH associated polyposis, Juvenile polyposis, Peutz-Jeghers syndrome, and Cowden's syndrome. The newest paradigm with implications for the pathogenesis of sporadic CRC is called the cancer stem cell hypothesis. As this paradigm also implicates aberrations in molecular pathways, a brief discussion of this hypothesis is included."	"Despite the availability of effective surveillance for colorectal cancer with colonoscopy, relatively few at-risk individuals utilize this option. Colon cancer chemoprevention might be a more acceptable alternative. Some epidemiologic studies have suggested that statins may have chemopreventive effects without the risks of nonsteroidal anti-inflammatory drugs, but other epidemiologic studies have found no effect of statins. We aimed to evaluate the efficacy of atorvastatin in inducing apoptosis in vitro, in preventing polyp formation in the min mouse, and in preventing tumor growth in nude mice. Atorvastatin rapidly induces apoptosis in the HCT116 colon cancer cell line in vitro, and this effect is reversible with mevalonate and geranylgeranyl pyrophosphate, but less so by farnesyl pyrophosphate. Atorvastatin chow was ineffective in reducing polyp formation in the min mouse model, with no significant effect on polyp number. Atorvastatin was effective in significantly slowing the growth of HCT116 colon cancer cell xenografts in nude mice (p = 0.008). Further, this reduction is due to increased levels of apoptosis. Atorvastatin can induce apoptosis in vitro, through mevalonate and prenylation pathways. Atorvastatin, while not effective in preventing polyp formation in the min mouse model, was very effective in slowing tumor growth in a nude mouse model. Consistent with in vitro findings, increased apoptosis accounted for decreased tumor growth. Statins may have benefit in cancer by slowing tumor growth, rather than preventing tumor initiation."	"Patients with chronic ulcerative colitis are at increased risk of developing colorectal cancer. Although current hypotheses suggest that sporadic colorectal cancer is due to inability to control cancer stem cells, the cancer stem cell hypothesis has not yet been validated in colitis-associated cancer. Furthermore, the identification of the colitis to cancer transition is challenging. We recently showed that epithelial cells with the increased expression of aldehyde dehydrogenase in sporadic colon cancer correlate closely with tumor-initiating ability. We sought to determine whether ALDH can be used as a marker to isolate tumor-initiating populations from patients with chronic ulcerative colitis. We used fluorescence-activated cell sorting to identify precursor colon cancer stem cells from colitis patients and report both their transition to cancerous stem cells in xenografting studies as well as their ability to generate spheres in vitro. Similar to sporadic colon cancer, these colitis-derived tumors were capable of propagation as sphere cultures. However, unlike the origins of sporadic colon cancer, the primary colitic tissues did not express any histologic evidence of dysplasia. To elucidate a potential mechanism for our findings, we compared the stroma of these different environments and determined that at least one paracrine factor is up-regulated in the inflammatory and malignant stroma compared with resting, normal stroma. These data link colitis and cancer identifying potential tumor-initiating cells from colitic patients, suggesting that sphere and/or xenograft formation will be useful to survey colitic patients at risk of developing cancer."
+"Husni, Elaine"	"Cardiovascular and Metabolic Sciences"	30980514	29884228	29848385	29688503	29512290	28802776	28623526	27485213	27134270	26476226	"The present study was undertaken to evaluate the safety and efficacy of intravenous (IV) golimumab in patients with active psoriatic arthritis (PsA) through 1 year. GO-VIBRANT was a phase III, randomized, placebo-controlled trial of 480 adults with active PsA. Patients were randomized to receive IV placebo (n = 239) or golimumab 2 mg/kg (n = 241) at weeks 0, 4, and every 8 weeks, with placebo crossover to golimumab at weeks 24, 28, and every 8 weeks thereafter. Efficacy through week 52 was assessed using the American College of Rheumatology (ACR) ≥20%, 50%, or 70% improvement criteria (ACR20/50/70), and the Psoriasis Area and Severity Index ≥75% improvement criteria (PASI75). Radiographic progression was measured using the PsA-modified Sharp/van der Heijde score (SHS). Adverse events (AEs) were monitored through week 60. The primary and major secondary end points through week 24 were achieved. At week 52, 76.8% of patients in the golimumab group and 77.0% in the placebo-crossover group achieved an ACR20 response, 58.1% and 53.6%, respectively, achieved an ACR50 response, and 38.6% and 33.9%, respectively, achieved an ACR70 response. Among patients with ≥3% body surface area affected, 71.9% in the golimumab group and 60.6% in the placebo-crossover group achieved a PASI75 response at week 52. Mean change from baseline in total SHS at week 52 was -0.5 in the golimumab group and 0.8 in the placebo-crossover group. Through week 60, 50.9% of all golimumab-treated patients had ≥1 AE, and 5.2% had ≥1 serious AE. There were no opportunistic infections, 2 malignancies, and 1 death in patients treated with golimumab. Sustained improvements in joint and skin disease in patients with PsA were maintained through 1 year in the GO-VIBRANT study. No new safety signals for IV golimumab were identified."	"Rheumatoid arthritis (RA) patients are at high risk of developing cardiovascular disease (CVD). In RA, chronic inflammation may lead to endothelial dysfunction, an early indicator of CVD, owing to diminished nitric oxide (NO) production. Because L-arginine is the sole precursor of NO, we hypothesized that levels of L-arginine metabolic products reflecting NO metabolism are altered in patients with RA. Plasma samples from patients with RA (n = 119) and age- and sex-matched control subjects (n = 238) were used for this study. Using LC-MS/MS, we measured plasma levels of free L-arginine, L-ornithine, L-citrulline, L-N<sup>G</sup>-monomethyl arginine (MMA), asymmetric dimethylarginine (ADMA), and symmetric dimethylarginine (SDMA). We compared global arginine bioavailability ratio (GABR) (i.e., ratio of L-arginine to L-ornithine + L-citrulline) and arginine methylation index (ArgMI) (i.e., ADMA + SDMA/MMA) in patients with RA vs. control subjects. Plasma arginase activity was measured using a sensitive arginase assay kit. The relationship of L-arginine metabolites and arginase activity to CVD risk factors was evaluated using Pearson's chi-square test. Compared with healthy control subjects, the RA cohort showed significantly lower levels of plasma L-arginine (46.11 ± 17.29 vs. 74.2 ± 22.53 μmol/L, p &lt; 0.001) and GABR (0.36 ± 0.16 vs. 0.73 ± 0.24, p &lt; 0.001), elevated levels of ADMA (0.76 ± 0.12 vs. 0.62 ± 0.12 μmol/L, p &lt; 0.001), SDMA (0.54 ± 0.14 vs. 0.47 ± 0.13 μmol/L, p &lt; 0.001), and ArgMI (6.51 ± 1.86 vs. 5.54 ± 1.51, p &lt; 0.001). We found an approximately fourfold increase in arginase activity (33.8 ± 1.1 vs. 8.4 ± 0.8 U/L, p &lt; 0.001), as well as elevated levels of arginase-mediated L-arginine catalytic product L-ornithine (108.64 ± 30.26 vs. 69.3 ± 20.71 μmol/L, p &lt; 0.001), whereas a nitric oxide synthase (NOS) catalytic product, the L-citrulline level, was diminished in RA (30.32 ± 9.93 vs. 36.17 ± 11.64 μmol/L, p &lt; 0.001). Patients with RA with existing CVD had higher arginase activity than patients with RA without CVD (p = 0.048). Global L-arginine bioavailability was diminished, whereas plasma arginase activity, ADMA, and SDMA levels were elevated, in patients with RA compared with healthy control subjects. Plasma SDMA was associated with hypertension and hyperlipidemia in patients with RA. This dysregulated L-arginine metabolism may function as a potential indicator of CVD risk in patients with RA."	"The perceived bother of skin and joint-related manifestations of psoriatic disease may differ among patients, rheumatologists, and dermatologists. This study identified and compared the patient and dermatologist/rheumatologist-perceived bother of psoriatic disease manifestations. Online surveys were administered to patients with both psoriasis and psoriatic arthritis and to dermatologists and rheumatologists. Object-case best-worst scaling was used to identify the most and least bothersome items from a set of five items in a series of questions. Each item set was drawn from 20 items describing psoriatic disease skin and joint symptoms and impacts on daily activities. Survey responses were analyzed using random-parameters logit models for each surveyed group, yielding a relative-bother weight (RBW) for each item compared with joint pain, soreness, or tenderness. Surveys were completed by 200 patients, 150 dermatologists, and 150 rheumatologists. Patients and physicians agreed that joint pain, soreness, and tenderness are among the most bothersome manifestations of psoriatic disease (RBW 1.00). For patients, painful, inflamed, or broken skin (RBW 1.03) was more bothersome, while both rheumatologists and dermatologists considered painful skin much less bothersome (RBW 0.17 and 0.22, respectively) than joint pain. Relative to joint pain, rheumatologists were more likely to perceive other joint symptoms as bothersome, while dermatologists were more likely to perceive other skin symptoms as bothersome. This study has identified important areas of discordance both between patients and physicians and between rheumatologists and dermatologists about the relative bother of a comprehensive set of psoriatic disease symptoms and functional impacts. Both physician specialists should ask patients which manifestations of psoriatic disease are most bothersome to them, as these discussions may have important implications for drug and other patient management options."	"Guidelines exist for the use of low-dose aspirin in the general population for primary cardiovascular (CV) prevention, but the risk-benefit considerations may differ in RA. While RA confers an increased CV risk, such patients more likely use NSAIDs and corticosteroids. We conducted a cohort study to assess potential risks and benefits of low-dose aspirin. We estimated incidence rates and hazard ratios (HRs) using Cox regression among subjects with RA but no known CV disease in the Prospective Randomized Evaluation of Celecoxib Integrated Safety Vs Ibuprofen Or Naproxen trial. The primary exposure of interest was low-dose aspirin, and all enrolled patients were provided open-label esomeprazole. The primary composite outcome was major NSAID toxicity, including major adverse CV event (MACE), clinically significant gastrointestinal events, renal events and all-cause mortality. We found 1852 subjects with RA in Prospective Randomized Evaluation of Celecoxib Integrated Safety Vs Ibuprofen Or Naproxen without known CV disease; 540 reported using low-dose aspirin for CV prevention and 1312 did not. Any major NSAID toxicity was observed in 79 (6.0%) non-aspirin users and 37 (6.9%) aspirin users (P = 0.50). Aspirin users experienced all components of the primary outcome at a similar rate to non-users. In fully adjusted models, the risk for major NSAID toxicity was similar between aspirin exposure groups (HR = 1.08, 95% CI: 0.69, 1.69). The risk for MACE was also similar between exposure groups in age- and gender-adjusted models (HR = 1.23, 95% CI: 0.72, 2.10). RA patients using low-dose aspirin with chronic NSAIDs and esomeprazole had a similar risk of major NSAID toxicity and MACE as patients who did not."	"Psoriasis of the scalp, face, intertriginous areas, genitals, hands, feet, and nails is often underdiagnosed, and disease management can be challenging. Despite the small surface area commonly affected by psoriasis in these locations, patients have disproportionate levels of physical impairment and emotional distress. Limitations in current disease severity indices do not fully capture the impact of disease on a patient's quality of life, and, combined with limitations in current therapies, many patients do not receive proper or adequate care. In this review, we discuss the clinical manifestations of psoriasis in these less commonly diagnosed areas and its impact on patient quality of life. We also examine clinical studies evaluating the effectiveness of therapies on psoriasis in these regions. This article highlights the need to individualize treatment strategies for psoriasis based on the area of the body that is affected and the emerging role of biologic therapy in this regard."	"To assess the psychosocial impact of psoriatic arthritis (PsA), describe how health-related quality of life (QoL) is affected in patients with PsA, discuss measures used to evaluate the psychosocial impact of PsA, and review studies examining the effect of therapy on QoL. A targeted review on the impact of PsA on QoL and the role of tailored psychosocial management in reducing the psychosocial burden of the disease was performed. PubMed literature searches were conducted using the terms PsA, psychosocial burden, QoL, and mood/behavioral changes. Articles were deemed relevant if they presented information regarding the psychosocial impact of PsA, methods used to evaluate these impacts, or ways to manage/improve management of PsA and its resulting comorbidities. The findings of this literature search are descriptively reviewed and the authors׳ expert opinion on their interpretation is provided. The psychosocial burden of PsA negatively affects QoL. Patients suffer from sleep disorders, fatigue, low-level stress, depression and mood/behavioral changes, poor body image, and reduced work productivity. Additionally, each patient responds to pain differently, depending on a variety of psychological factors including personality structure, cognition, and attention to pain. Strategies for evaluating the burdens associated with PsA and the results of properly managing patients with PsA are described. PsA is associated with a considerable psychosocial burden and new assessment tools, specific to PsA, have been developed to help quantify this burden in patients. Future management algorithms of PsA should incorporate appropriate assessment and management of psychological and physical concerns of patients. Furthermore, patients with PsA should be managed by a multidisciplinary team that works in coordination with the patient and their family or caregivers."	"Given the increasing number of available treatments for rheumatoid arthritis (RA) with varying efficacy and safety profiles, it is critical to understand the level of trade-offs that patients are willing to make between benefits and risks. Adult patients with moderate to severe RA were invited to participate in a discrete choice experiment that solicited their preferences for hypothetical RA treatments. Each participant was presented with 14 choice cards asking about their preference between two hypothetical RA treatments with varying levels of efficacy, adverse events, and process-related attributes. A multivariable logistic regression model assessed the association between the attributes and the patient's decision and risk-increases were calculated. 510 eligible patients with moderate to severe RA completed the study. The average age of the participants was 56.4 years, 64.7% were female, and 45.1% received biologic agents. To achieve a 50% improvement in physical function, patients were willing to accept risk-increases of 91.1, 4.7, and 18.4% for abnormal laboratory results, cancer, and serious infection, respectively. Similarly, to achieve a 50% reduction in RA-related pain, patients were willing to accept risk-increases of 70.6, 3.7, and 14.2% for each AE. Moreover, patients were willing to trade risk-increases of 42.0, 2.2, and 8.5% for each AE to obtain a 50% reduction in the number of swollen joints. Patients with moderate to severe RA are willing to accept increased treatment risks to achieve improved physical function and disease control. These attributes are helpful to clinicians to make informed treatment choices."	"Patients with psoriatic arthritis (PsA) are at an increased risk for cardiovascular (CV) disease. The aim of this study was to identify the frequency of carotid plaque in asymptomatic patients with psoriatic arthritis at baseline and follow-up screening, and to assess for the impact of demonstrating plaque on management of traditional cardiovascular risk factors. Eighty-seven PsA patients underwent carotid duplex ultrasound screening. Repeat carotid duplex ultrasound was offered to all patients between 12 and 30 months. Preventive cardiology referrals were generated for all patients through the electronic health record. Traditional cardiovascular risk factors, medication use, and rates of utilization of preventive cardiology services were compared between patients with and without plaque. Carotid plaque was identified in 34/87 (39 %) of PsA patients. Age and triglyceride levels were predictors of plaque presence. Patients with plaque trended toward higher rates of smoking and diabetes, and higher low-density lipoprotein levels. Only 9/87 (10 %) patients completed at least one visit with preventive cardiology after enrollment despite referral. Low use of statin (21 %) and antiplatelet (27 %) medication was observed. Rates of biologic medication use for PsA were higher (75 %) than studies in similar cohorts of patients with carotid plaque. No association was seen between disease duration or activity and the presence of carotid plaque. Despite demonstration of high cardiac risk by the presence of carotid plaque, implementation of preventive cardiovascular services and rates of statin and antiplatelet use remained low. Age and triglyceride levels were significant variables in predicting plaque presence. There is no evidence that demonstration of plaque resulted in further evaluation or changes in treatment regimens to address heightened cardiovascular risk."	"Outcome measures for psoriasis severity are complex because of the heterogeneous presentation of the disease. At the 2015 annual meeting of the Group for Research and Assessment of Psoriasis and Psoriatic Arthritis (GRAPPA), members introduced the Comprehensive Assessment of the Psoriasis Patient (CAPP), a novel disease severity measure to more accurately assess the full burden of plaque psoriasis and subtypes, including inverse, scalp, nail, palmoplantar, and genital psoriasis. The CAPP is based on a 5-point physician's global assessment for 7 psoriasis phenotypes and incorporates visual analog scale-based, patient-derived, patient-reported outcomes. By quantifying disease effects of plaque psoriasis, 6 other psoriasis subtypes, as well as quality of life and daily function, the CAPP survey identifies a subset of psoriasis patients with moderate to severe psoriasis that would not be considered moderate to severe when assessed by the Psoriasis Area and Severity Index. The current version of CAPP is focused entirely on psoriasis. Feedback from our industry colleagues and collaborators has suggested that a psoriatic arthritis (PsA) measure may be important to include in the CAPP. At the 2015 GRAPPA meeting, we administered a survey to 106 GRAPPA members to determine whether a PsA measure should be included. A majority (74%) of respondents across all professions agreed that the CAPP should include a measure of PsA. Although responses varied widely on how PsA should be measured, a majority of the respondents reported that presence of PsA in both peripheral and axial joint assessment was important."	"Epidemiologic studies have shown that, in patients with psoriatic arthritis (PsA), associated comorbidities may occur more frequently than expected. This article discusses related comorbidities in patients with PsA. Identifying these comorbidities may affect the management and treatment decisions for these patients to ensure an optimal clinical outcome. All health care providers caring for patients with PsA should be aware of the relevant comorbidities and should have an understanding of how these comorbidities affect management. The common comorbidities include cardiovascular disease, metabolic syndrome, obesity, diabetes, fatty liver disease, inflammatory bowel disease, ophthalmic disease, kidney disease, osteoporosis, depression, and anxiety. "
+"Hwang, Tae Hyun"	"Quantitative Health Sciences"	28735488	27626065	24465231	23822816	27797759	26635139	24476358	29136504	28346452	27897170	"Tumor heterogeneity is a major challenge when it comes to treating cancer and also complicates research aimed at determining genetic sources for tumorigenesis. Leveraging high-throughput sequencing technology has been an effective approach for advancing our understanding of genetic diseases, and this type of data can also be used to better understand and make inferences about tumor heterogeneity. Here we describe the basics of genomics data analysis, as well as analysis pipelines for investigating tumor heterogeneity with next-generation sequencing data."	"Osteosarcoma is the most common primary bone cancer. It can be cured by aggressive surgery and chemotherapy, but outcomes for metastatic or chemoresistant disease remain dismal. Cancer sequencing studies have shown that the p53 pathway is dysregulated in nearly every case, often by translocation; however, no studies of osteosarcoma evolution or intratumor heterogeneity have been done to date. We studied a patient with chemoresistant, metastatic disease over the course of 3 years. We performed exome sequencing on germline DNA and DNA collected from tumor at three separate time points. We compared variant calls and variant allele frequencies between different samples. We identified subclonal mutations in several different genes in the primary tumor sample and found that one particular subclone dominated subsequent tumor samples at relapse. This clone was marked by a novel TP53-KPNA3 translocation and loss of the opposite-strand wild-type TP53 allele. Future research must focus on the functional significance of such clones and strategies to eliminate them. "	"Studying biological networks, such as protein-protein interactions, is key to understanding complex biological activities. Various types of large-scale biological datasets have been collected and analyzed with high-throughput technologies, including DNA microarray, next-generation sequencing, and the two-hybrid screening system, for this purpose. In this review, we focus on network-based approaches that help in understanding biological systems and identifying biological functions. Accordingly, this paper covers two major topics in network biology: reconstruction of gene regulatory networks and network-based applications, including protein function prediction, disease gene prioritization, and network-based genome-wide association study. "	"Many large-scale studies analyzed high-throughput genomic data to identify altered pathways essential to the development and progression of specific types of cancer. However, no previous study has been extended to provide a comprehensive analysis of pathways disrupted by copy number alterations across different human cancers. Towards this goal, we propose a network-based method to integrate copy number alteration data with human protein-protein interaction networks and pathway databases to identify pathways that are commonly disrupted in many different types of cancer. We applied our approach to a data set of 2,172 cancer patients across 16 different types of cancers, and discovered a set of commonly disrupted pathways, which are likely essential for tumor formation in majority of the cancers. We also identified pathways that are only disrupted in specific cancer types, providing molecular markers for different human cancers. Analysis with independent microarray gene expression datasets confirms that the commonly disrupted pathways can be used to identify patient subgroups with significantly different survival outcomes. We also provide a network view of disrupted pathways to explain how copy number alterations affect pathways that regulate cell growth, cycle, and differentiation for tumorigenesis. In this work, we demonstrated that the network-based integrative analysis can help to identify pathways disrupted by copy number alterations across 16 types of human cancers, which are not readily identifiable by conventional overrepresentation-based and other pathway-based methods. All the results and source code are available at http://compbio.cs.umn.edu/NetPathID/."	"To better predict and analyze gene associations with the collection of phenotypes organized in a phenotype ontology, it is crucial to effectively model the hierarchical structure among the phenotypes in the ontology and leverage the sparse known associations with additional training information. In this paper, we first introduce Dual Label Propagation (DLP) to impose consistent associations with the entire phenotype paths in predicting phenotype-gene associations in Human Phenotype Ontology (HPO). DLP is then used as the base model in a transfer learning framework (tlDLP) to incorporate functional annotations in Gene Ontology (GO). By simultaneously reconstructing GO term-gene associations and HPO phenotype-gene associations for all the genes in a protein-protein interaction network, tlDLP benefits from the enriched training associations indirectly through relation with GO terms. In the experiments to predict the associations between human genes and phenotypes in HPO based on human protein-protein interaction network, both DLP and tlDLP improved the prediction of gene associations with phenotype paths in HPO in cross-validation and the prediction of the most recent associations added after the snapshot of the training data. Moreover, the transfer learning through GO term-gene associations significantly improved association predictions for the phenotypes with no more specific known associations by a large margin. Examples are also shown to demonstrate how phenotype paths in phenotype ontology and transfer learning with gene ontology can improve the predictions. Source code is available at http://compbio.cs.umn.edu/onto phenome . kuang@cs.umn.com. Supplementary data are available at Bioinformatics online."	"Identification of altered pathways that are clinically relevant across human cancers is a key challenge in cancer genomics. Precise identification and understanding of these altered pathways may provide novel insights into patient stratification, therapeutic strategies and the development of new drugs. However, a challenge remains in accurately identifying pathways altered by somatic mutations across human cancers, due to the diverse mutation spectrum. We developed an innovative approach to integrate somatic mutation data with gene networks and pathways, in order to identify pathways altered by somatic mutations across cancers. We applied our approach to The Cancer Genome Atlas (TCGA) dataset of somatic mutations in 4790 cancer patients with 19 different types of tumors. Our analysis identified cancer-type-specific altered pathways enriched with known cancer-relevant genes and targets of currently available drugs. To investigate the clinical significance of these altered pathways, we performed consensus clustering for patient stratification using member genes in the altered pathways coupled with gene expression datasets from 4870 patients from TCGA, and multiple independent cohorts confirmed that the altered pathways could be used to stratify patients into subgroups with significantly different clinical outcomes. Of particular significance, certain patient subpopulations with poor prognosis were identified because they had specific altered pathways for which there are available targeted therapies. These findings could be used to tailor and intensify therapy in these patients, for whom current therapy is suboptimal. The code is available at: http://www.taehyunlab.org jhcheong@yuhs.ac or taehyun.hwang@utsouthwestern.edu or taehyun.cs@gmail.com Supplementary data are available at Bioinformatics online."	"Personal genome assembly is a critical process when studying tumor genomes and other highly divergent sequences. The accuracy of downstream analyses, such as RNA-seq and ChIP-seq, can be greatly enhanced by using personal genomic sequences rather than standard references. Unfortunately, reads sequenced from these types of samples often have a heterogeneous mix of various subpopulations with different variants, making assembly extremely difficult using existing assembly tools. To address these challenges, we developed SHEAR (Sample Heterogeneity Estimation and Assembly by Reference; http://vk.cs.umn.edu/SHEAR), a tool that predicts SVs, accounts for heterogeneous variants by estimating their representative percentages, and generates personal genomic sequences to be used for downstream analysis. By making use of structural variant detection algorithms, SHEAR offers improved performance in the form of a stronger ability to handle difficult structural variant types and better computational efficiency. We compare against the lead competing approach using a variety of simulated scenarios as well as real tumor cell line data with known heterogeneous variants. SHEAR is shown to successfully estimate heterogeneity percentages in both cases, and demonstrates an improved efficiency and better ability to handle tandem duplications. SHEAR allows for accurate and efficient SV detection and personal genomic sequence generation. It is also able to account for heterogeneous sequencing samples, such as from tumor tissue, by estimating the subpopulation percentage for each heterogeneous variant."	"ARID1A, an SWI/SNF chromatin-remodeling gene, is commonly mutated in cancer and hypothesized to be tumor suppressive. In some hepatocellular carcinoma patients, ARID1A was highly expressed in primary tumors but not in metastatic lesions, suggesting that ARID1A can be lost after initiation. Mice with liver-specific homozygous or heterozygous Arid1a loss were resistant to tumor initiation while ARID1A overexpression accelerated initiation. In contrast, homozygous or heterozygous Arid1a loss in established tumors accelerated progression and metastasis. Mechanistically, gain of Arid1a function promoted initiation by increasing CYP450-mediated oxidative stress, while loss of Arid1a within tumors decreased chromatin accessibility and reduced transcription of genes associated with migration, invasion, and metastasis. In summary, ARID1A has context-dependent tumor-suppressive and oncogenic roles in cancer."	"Brain tumor initiating cells (BTICs), also known as cancer stem cells, hijack high-affinity glucose uptake active normally in neurons to maintain energy demands. Here we link metabolic dysregulation in human BTICs to a nexus between MYC and de novo purine synthesis, mediating glucose-sustained anabolic metabolism. Inhibiting purine synthesis abrogated BTIC growth, self-renewal and in vivo tumor formation by depleting intracellular pools of purine nucleotides, supporting purine synthesis as a potential therapeutic point of fragility. In contrast, differentiated glioma cells were unaffected by the targeting of purine biosynthetic enzymes, suggesting selective dependence of BTICs. MYC coordinated the control of purine synthetic enzymes, supporting its role in metabolic reprogramming. Elevated expression of purine synthetic enzymes correlated with poor prognosis in glioblastoma patients. Collectively, our results suggest that stem-like glioma cells reprogram their metabolism to self-renew and fuel the tumor hierarchy, revealing potential BTIC cancer dependencies amenable to targeted therapy."	"Molecularly targeted therapies for advanced prostate cancer include castration modalities that suppress ligand-dependent transcriptional activity of the androgen receptor (AR). However, persistent AR signalling undermines therapeutic efficacy and promotes progression to lethal castration-resistant prostate cancer (CRPC), even when patients are treated with potent second-generation AR-targeted therapies abiraterone and enzalutamide. Here we define diverse AR genomic structural rearrangements (AR-GSRs) as a class of molecular alterations occurring in one third of CRPC-stage tumours. AR-GSRs occur in the context of copy-neutral and amplified AR and display heterogeneity in breakpoint location, rearrangement class and sub-clonal enrichment in tumours within and between patients. Despite this heterogeneity, one common outcome in tumours with high sub-clonal enrichment of AR-GSRs is outlier expression of diverse AR variant species lacking the ligand-binding domain and possessing ligand-independent transcriptional activity. Collectively, these findings reveal AR-GSRs as important drivers of persistent AR signalling in CRPC."
+"Imrey, Peter"	"Quantitative Health Sciences"	20862669	16753447	15286133	26378705	26378704	26378703	8610679	8586688	7880252	7932024	"Frequently in clinical studies a primary outcome is formulated from a vector of binary events. Several methods exist to assess treatment effects on multiple correlated binary outcomes, including comparing groups on the occurrence of at least one among the outcomes ('collapsed composite'), on the count of outcomes observed per subject, on individual outcomes adjusting for multiplicity, or with multivariate tests postulating either common or distinct effects across outcomes. We focus on a 1-df distinct effects test in which the estimated outcome-specific treatment effects from a GEE model are simply averaged, and compare it with other methods on clinical and statistical grounds. Using a flexible method to simulate multivariate binary data, we show that the relative efficiencies of the assessed tests depend in a complex way on the magnitudes and variabilities of component incidences and treatment effects, as well as correlations among component events. While other tests are easily 'driven' by high-frequency components, the average effect GEE test is not, since it averages the log odds ratios unweighted by the component frequencies. Thus, the average effect test is relatively more powerful than other tests when lower frequency components have stronger associations with a treatment or other predictor, but less powerful when higher frequency components are more strongly associated. In studies when relative effects are at least as important as absolute effects, or when lower frequency components are clinically most important, this test may be preferred. Two clinical trials are discussed and analyzed, and recommendations for practice are made."	"Diabetic bladder dysfunction is among the most common and bothersome complications of diabetes mellitus. While bladder filling and voiding problems have been reported, the precise functional changes in diabetic bladders remain unclear. We investigated time dependent changes in bladder function in streptozotocin induced diabetic rats. Cystometrograms and detrusor muscle contractility were examined in male age matched control and diabetic Sprague-Dawley rats (Harlan, Indianapolis, Indiana) 3, 6, 9, 12 and 20 weeks after diabetes induction with streptozotocin. Diabetes decreased average body weight and increased bladder weight, capacity and compliance. Peak detrusor leak pressure increased gradually from weeks 3 to 6 to 9 in diabetic rats (mean +/- SEM 47.3 +/- 2.5, 50.8 +/- 3.0 and 56.0 +/- 3.6 cm H(2)O) and in controls (36.9 +/- 1.4, 37.7 +/- 1.5 and 41.6 +/- 1.81 cm H(2)O, respectively). However, at 12 and 20 weeks diabetic rats deviated strongly from this trend with peak detrusor leak pressure decreasing vs controls (41.6 +/- 2.8 and 37.3 +/- 0.9 vs 45.2 +/- 1.7 and 49.6 +/- 1.4 cm H(2)O, respectively) and post-void resting pressures increasing from 9-week levels vs controls (interactions p &lt;0.0001). In contractility studies increased contractile force responses of diabetic animals to carbamylcholine chloride, potassium chloride, adenosine 5'-triphosphate and electric field stimulation peaked at 6 or 9 weeks but at 12 to 20 weeks they generally reverted toward those of controls (carbamylcholine chloride and electrical field stimulation interactions p = 0.0022 and 0.01, respectively). Diabetic bladders may undergo a transition from a compensated to a decompensated state and transition in the streptozotocin rat model may begin 9 to 12 weeks after induction."	"Treatments to halt or reverse the progression of non-cavitated caries lesions are of increasing interest. Diagnostic technologies under development offer potential for the assessment of gradual progression and regression of such lesions. Many therapies directed at correcting demineralization-remineralization imbalance should, in principle, protect enamel similarly across lesion severities from initiation to near cavitation. If this is so, and if acceptable reproducibility and predictive validity can be demonstrated for a diagnostic of acceptable cost, then clinical trials of agents to prevent cavitation can become more efficient by the use of outcome indices that reflect, in addition to cavitation, the expansion and regression of non-cavitated lesions. However, to achieve such a benefit will require data analyses that fully exploit ordinal or continuous-scale outcome measures. We consider comparison of such measures of lesion status between treatment groups, with most attention to ordinal categorical data. Interim data from a clinical trial in Lithuanian children are used for illustration."	"Randomized assignment of treatment excludes reverse causation and selection bias and, in sufficiently large studies, effectively prevents confounding. Well-implemented blinding prevents measurement bias. Studies that include these protections are called randomized, blinded clinical trials and, when conducted with sufficient numbers of patients, provide the most valid results. Although conceptually straightforward, design of clinical trials requires thoughtful trade-offs among competing approaches-all of which influence the number of patients required, enrollment time, internal and external validity, ability to evaluate interactions among treatments, and cost. "	"Case-control and cohort studies are invaluable research tools and provide the strongest feasible research designs for addressing some questions. Case-control studies usually involve retrospective data collection. Cohort studies can involve retrospective, ambidirectional, or prospective data collection. Observational studies are subject to errors attributable to selection bias, confounding, measurement bias, and reverse causation-in addition to errors of chance. Confounding can be statistically controlled to the extent that potential factors are known and accurately measured, but, in practice, bias and unknown confounders usually remain additional potential sources of error, often of unknown magnitude and clinical impact. Causality-the most clinically useful relation between exposure and outcome-can rarely be definitively determined from observational studies because intentional, controlled manipulations of exposures are not involved. In this article, we review several types of observational clinical research: case series, comparative case-control and cohort studies, and hybrid designs in which case-control analyses are performed on selected members of cohorts. We also discuss the analytic issues that arise when groups to be compared in an observational study, such as patients receiving different therapies, are not comparable in other respects. "	"Clinical research can be categorized by the timing of data collection: retrospective or prospective. Clinical research also can be categorized by study design. In case-control studies, investigators compare previous exposures (including genetic and other personal factors, environmental influences, and medical treatments) among groups distinguished by later disease status (broadly defined to include the development of disease or response to treatment). In cohort studies, investigators compare subsequent incidences of disease among groups distinguished by one or more exposures. Comparative clinical trials are prospective cohort studies that compare treatments assigned to patients by the researchers. Most errors in clinical research findings arise from 5 largely distinguishable classes of methodologic problems: selection bias, confounding, measurement bias, reverse causation, and excessive chance variation. "	"Between February 1991 and April 1992, eight undergraduates at a US residential university and one at a nearby 2-year college contracted serogroup C meningococcal disease. A case-control investigation with 20 controls per case, oropharyngeal carriage surveys, and multilocus enzyme electrophoresis (MEE) of serogroup C isolates were used to identify factors contributing to the outbreak. All eight sterile-site isolates from cases were closely related by MEE and were similar (though not identical) to the strain associated with the 1991-1992 epidemic of meningococcal disease in eastern Canada. Disease was associated with cigarette smoking (p = 0.012), recent patronage of campus-area bars (p = 0.034), estimated amount of time spent in campus-area bars (p = 0.0003), and, especially, recent patronage of one specific bar, bar A (p = 0.0006; odds ratio = 23.1, 95% confidence interval 3.0-571.5). In carriage surveys, 1,528 throat cultures taken from (primarily student) noncases yielded only five (0.3%) strains that were identical by MEE to those from cases. Two of these were found among 22 cultures obtained from bar A employees in spring 1992. Some cases in this outbreak may have followed transmission of the epidemic strain in bar A. Campus bar environments may facilitate the spread of meningococcal disease among teenagers and young adults."	"Community outbreaks of serogroup C invasive meningococcal disease are increasing in North America (L. H. Harrison, JAMA 273:419-421, 1995; L. A. Jackson, A. Schuchat, M. W. Reeves, and J. D. Wenger, JAMA 273:382-389, 1995; C. M. Whalen, J. C. Hockin, A. Ryan, and F. Ashton, JAMA 273:390-394). In a recent 15-month university outbreak, disease was linked to patronage of a specific campus-area bar, suggesting that aspects of a campus bar environment might promote meningococcal transmission (P. B. Imrey, L. A. Jackson, P. H. Ludwinski, et al., Am. J. Epidemiol., in press). To investigate this hypothesis, oropharyngeal carriage results from samples taken from 867 university health service clients and 85 campus-area bar employees during the last 3 months of the outbreak were analyzed to determine factors correlated with carriage of any strain of Neisseria meningitidis. Results were validated with data from samples from 344 health center clients and 211 campus bar employees taken 8 months after the last outbreak case. Recent alcohol consumption (adjusted prevalence odds ratio = 3.8 for &gt; 15 versus 0 drinks in last week [P = 0.0012]) and campus bar patronage (adjusted odds ratio = 1.9 for any versus no patronage in last 2 weeks [P = 0.0122]) showed separate effects in both univariate and multiple logistic regression analyses of data from the 1992 health center clients. Prevalence of meningococcal carriage among 1992 campus bar workers was 3.8 times that among health center clients; this prevalence ratio was roughly 2.5 after adjustment for alcohol consumption and bar patronage. Recent antibiotic usage was protective (prevalence odds ratio = 0.3) among health center clients and bar workers. These findings were generally supported by the validation samples. If alcohol consumption and other aspects of the campus bar environment facilitate transmission of and/or colonization by N. meningitidis, then the introduction of a highly pathogenic substrain into the campus bar environment may provide an unusual opportunity for invasive meningococcal disease within a campus community."	"Guidelines are suggested for determining efficacy of products to supplement scaling and root planing in professional, non-surgical treatment of adult periodontitis. They result from an extended process including a conference on clinical trials in gingivitis and periodontitis, a subsequent workshop, and commentary from industrial, academic, professional and governmental members of the periodontal research community on two drafts. Recommendations are made in the broad areas of basic study design, subject and periodontal site selection, clinical management, choice of outcome variables, statistical summarization and analysis, and criteria for acceptance. Prominent dissenting views, with justifications for positions taken here, are also provided. Groundwork is laid for possible future guidelines addressing products for primary prevention or over-the-counter uses, or for determining superiority or equivalence of competing products. However, issues are identified which require further exploration before responsible and widely acceptable recommendations can be made in these areas. The guidelines suggested here are meant to form the basis of an evolving document rather than a static standard. It is suggested that they be reviewed frequently in the light of improvement in the technology available for periodontal research, and the emergence of products representing new approaches to periodontal therapy."	"This paper presents suggested revisions to the American Dental Association's 1985 guidelines for acceptance of anti-gingivitis chemotherapeutic agents. The areas of study design, choice and quality control of clinical gingivitis measurements, statistical analysis, and minimum strength of effect, are addressed. The revisions articulate certain aspects of study design which were implicit in the 1985 guidelines, clarify language on cross-over designs and independence of studies, and recommend use of a United States population in at least one trial supporting a product. Separate recording and analysis of a product's effect on gingival bleeding is proposed, and quality control of clinical measurements receives enhanced emphasis. Modestly elaborated statistical reporting guidelines and strengthened approval criteria, based on size of estimated effect as well as statistical significance, are advocated."
+"Ivanov, Andrei"	"Inflammation and Immunity"	30290240	30010460	28359759	28322932	27063635	26878213	25809162	25792565	27626042	25143399	"Cell migration is a critical mechanism controlling tissue morphogenesis, epithelial wound healing and tumor metastasis. Migrating cells depend on orchestrated remodeling of the plasma membrane and the underlying actin cytoskeleton, which is regulated by the spectrin-adducin-based membrane skeleton. Expression of adducins is altered during tumorigenesis, however, their involvement in metastatic dissemination of tumor cells remains poorly characterized. This study investigated the roles of α-adducin (ADD1) and γ-adducin (ADD3) in regulating migration and invasion of non-small cell lung cancer (NSCLC) cells. ADD1 was mislocalized, whereas ADD3 was markedly downregulated in NSCLC cells with the invasive mesenchymal phenotype. CRISPR/Cas9-mediated knockout of ADD1 and ADD3 in epithelial-type NSCLC and normal bronchial epithelial cells promoted their Boyden chamber migration and Matrigel invasion. Furthermore, overexpression of ADD1, but not ADD3, in mesenchymal-type NSCLC cells decreased cell migration and invasion. ADD1-overexpressing NSCLC cells demonstrated increased adhesion to the extracellular matrix (ECM), accompanied by enhanced assembly of focal adhesions and hyperphosphorylation of Src and paxillin. The increased adhesiveness and decreased motility of ADD1-overexpressing cells were reversed by siRNA-mediated knockdown of Src. By contrast, the accelerated migration of ADD1 and ADD3-depleted NSCLC cells was ECM adhesion-independent and was driven by the upregulated expression of pro-motile cadherin-11. Overall, our findings reveal a novel function of adducins as negative regulators of NSCLC cell migration and invasion, which could be essential for limiting lung cancer progression and metastasis."	"Vesicle trafficking regulates epithelial cell migration by remodeling matrix adhesions and delivering signaling molecules to the migrating leading edge. Membrane fusion, which is driven by soluble N-ethylmaleimide-sensitive factor associated receptor (SNARE) proteins, is an essential step of vesicle trafficking. Mammalian SNAREs represent a large group of proteins, but few have been implicated in the regulation of cell migration. Ykt6 is a unique SNARE existing in equilibrium between active membrane-bound and inactive cytoplasmic pools, and mediating vesicle trafficking between different intracellular compartments. The biological functions of this protein remain poorly understood. In the present study, we found that Ykt6 acts as a negative regulator of migration and invasion of human prostate epithelial cells. Furthermore, Ykt6 regulates the integrity of epithelial adherens and tight junctions. The observed anti-migratory activity of Ykt6 is mediated by a unique mechanism involving the expressional upregulation of microRNA 145, which selectively decreases the cellular level of Junctional Adhesion Molecule (JAM) A. This decreased JAM-A expression limits the activity of Rap1 and Rac1 small GTPases, thereby attenuating cell spreading and motility. The described novel functions of Ykt6 could be essential for the regulation of epithelial barriers, epithelial repair, and metastatic dissemination of cancer cells."	"A soluble N-ethylmaleimide-sensitive factor-attachment protein alpha (αSNAP) is a multifunctional scaffolding protein that regulates intracellular vesicle trafficking and signaling. In cultured intestinal epithelial cells, αSNAP has been shown to be essential for cell survival, motility, and adhesion; however, its physiologic functions in the intestinal mucosa remain unknown. In the present study, we used a mouse with a spontaneous hydrocephalus with hop gait (hyh) mutation of αSNAP to examine the roles of this trafficking protein in regulating intestinal epithelial homeostasis in vivo. Homozygous hyh mice demonstrated decreased expression of αSNAP protein in the intestinal epithelium, but did not display gross abnormalities of epithelial architecture in the colon and ileum. Such αSNAP depletion attenuated differentiation of small intestinal epithelial enteroids ex vivo. Furthermore, αSNAP-deficient mutant animals displayed reduced formation of lysozyme granules in small intestinal crypts and decreased expression of lysozyme and defensins in the intestinal mucosa, which is indicative of defects in Paneth cell differentiation. By contrast, development of Goblet cells, enteroendocrine cells, and assembly of enterocyte apical junctions was not altered in hyh mutant mice. Our data revealed a novel role of αSNAP in the intestinal Paneth cell differentiation in vivo."	"The intestinal epithelium forms a key protective barrier that separates internal organs from the harmful environment of the gut lumen. Increased permeability of the gut barrier is a common manifestation of different inflammatory disorders contributing to the severity of disease. Barrier permeability is controlled by epithelial adherens junctions and tight junctions. Junctional assembly and integrity depend on fundamental homeostatic processes such as cell differentiation, rearrangements of the cytoskeleton, and vesicle trafficking. Alterations of intestinal epithelial homeostasis during mucosal inflammation may impair structure and remodeling of apical junctions, resulting in increased permeability of the gut barrier. In this review, we summarize recent advances in our understanding of how altered epithelial homeostasis affects the structure and function of adherens junctions and tight junctions in the inflamed gut. Specifically, we focus on the transcription reprogramming of the cell, alterations in the actin cytoskeleton, and junctional endocytosis and exocytosis. We pay special attention to knockout mouse model studies and discuss the relevance of these mechanisms to human gastrointestinal disorders."	"The actin cytoskeleton is a critical regulator of intestinal mucosal barrier permeability, and the integrity of epithelial adherens junctions (AJ) and tight junctions (TJ). Non muscle myosin II (NM II) is a key cytoskeletal motor that controls actin filament architecture and dynamics. While NM II has been implicated in the regulation of epithelial junctions in vitro, little is known about its roles in the intestinal mucosa in vivo. In this study, we generated a mouse model with an intestinal epithelial-specific knockout of NM IIA heavy chain (NM IIA cKO) and examined the structure and function of normal gut barrier, and the development of experimental colitis in these animals. Unchallenged NM IIA cKO mice showed increased intestinal permeability and altered expression/localization of several AJ/TJ proteins. They did not develop spontaneous colitis, but demonstrated signs of a low-scale mucosal inflammation manifested by prolapses, lymphoid aggregates, increased cytokine expression, and neutrophil infiltration in the gut. NM IIA cKO animals were characterized by a more severe disruption of the gut barrier and exaggerated mucosal injury during experimentally-induced colitis. Our study provides the first evidence that NM IIA plays important roles in establishing normal intestinal barrier, and protection from mucosal inflammation in vivo. "	"The actin cytoskeleton is a crucial regulator of the intestinal mucosal barrier, controlling the assembly and function of epithelial adherens and tight junctions (AJs and TJs). Junction-associated actin filaments are dynamic structures that undergo constant turnover. Members of the actin-depolymerizing factor (ADF) and cofilin protein family play key roles in actin dynamics by mediating filament severing and polymerization. We examined the roles of ADF and cofilin-1 in regulating the structure and functions of AJs and TJs in the intestinal epithelium. Knockdown of either ADF or cofilin-1 by RNA interference increased the paracellular permeability of human colonic epithelial cell monolayers to small ions. Additionally, cofilin-1, but not ADF, depletion increased epithelial permeability to large molecules. Loss of either ADF or cofilin-1 did not affect the steady-state morphology of AJs and TJs but attenuated de novo junctional assembly. The observed defects in AJ and TJ formation were accompanied by delayed assembly of the perijunctional filamentous actin belt. A total loss of ADF expression in mice did not result in a defective mucosal barrier or in spontaneous gut inflammation. However, ADF-null mice demonstrated increased intestinal permeability and exaggerated inflammation during dextran sodium sulfate-induced colitis. Our findings demonstrate novel roles for ADF and cofilin-1 in regulating the remodeling and permeability of epithelial junctions, as well as the role of ADF in limiting the severity of intestinal inflammation. "	"Tight junctions (TJ) and adherens junctions (AJ) are key morphological features of differentiated epithelial cells that regulate the integrity and permeability of tissue barriers. Structure and remodeling of epithelial junctions depends on their association with the underlying actomyosin cytoskeleton. Anillin is a unique scaffolding protein interacting with different cytoskeletal components, including actin filaments and myosin motors. Its role in the regulation of mammalian epithelial junctions remains unexplored. Downregulation of anillin expression in human prostate, colonic, and lung epithelial cells triggered AJ and TJ disassembly without altering the expression of junctional proteins. This junctional disassembly was accompanied by dramatic disorganization of the perijunctional actomyosin belt; while the general architecture of the actin cytoskeleton, and activation status of non-muscle myosin II, remained unchanged. Furthermore, loss of anillin disrupted the adducin-spectrin membrane skeleton at the areas of cell-cell contact, selectively decreased γ-adducin expression, and induced cytoplasmic aggregation of αII-spectrin. Anillin knockdown activated c-Jun N-terminal kinase (JNK), and JNK inhibition restored AJ and TJ integrity and cytoskeletal organization in anillin-depleted cells. These findings suggest a novel role for anillin in regulating intercellular adhesion in model human epithelia by mechanisms involving the suppression of JNK activity and controlling the assembly of the perijunctional cytoskeleton. "	"Adherens junctions (AJs) and tight junctions (TJs) are crucial regulators of the integrity and restitution of the intestinal epithelial barrier. The structure and function of epithelial junctions depend on their association with the cortical actin cytoskeleton that, in polarized epithelial cells, is represented by a prominent perijunctional actomyosin belt. The assembly and stability of the perijunctional cytoskeleton is controlled by constant turnover (disassembly and reassembly) of actin filaments. Actin-interacting protein (Aip) 1 is an emerging regulator of the actin cytoskeleton, playing a critical role in filament disassembly. In this study, we examined the roles of Aip1 in regulating the structure and remodeling of AJs and TJs in human intestinal epithelium. Aip1 was enriched at apical junctions in polarized human intestinal epithelial cells and normal mouse colonic mucosa. Knockdown of Aip1 by RNA interference increased the paracellular permeability of epithelial cell monolayers, decreased recruitment of AJ/TJ proteins to steady-state intercellular contacts, and attenuated junctional reassembly in a calcium-switch model. The observed defects of AJ/TJ structure and functions were accompanied by abnormal organization and dynamics of the perijunctional F-actin cytoskeleton. Moreover, loss of Aip1 impaired the apico-basal polarity of intestinal epithelial cell monolayers and inhibited formation of polarized epithelial cysts in 3-D Matrigel. Our findings demonstrate a previously unanticipated role of Aip1 in regulating the structure and remodeling of intestinal epithelial junctions and early steps of epithelial morphogenesis."	"This Editorial is written to introduce Tissue Barriers, a new Taylor &amp; Francis journal, to the readers of Temperature. It describes the role of temperature in the regulation of different tissue barriers under normal and disease conditions. It also highlights the most interesting articles published in the first volume of Tissue Barriers. "	"Transdifferentiation of epithelial cells into mesenchymal cells and myofibroblasts plays an important role in tumor progression and tissue fibrosis. Such epithelial plasticity is accompanied by dramatic reorganizations of the actin cytoskeleton, although mechanisms underlying cytoskeletal effects on epithelial transdifferentiation remain poorly understood. In the present study, we observed that selective siRNA-mediated knockdown of γ-cytoplasmic actin (γ-CYA), but not β-cytoplasmic actin, induced epithelial-to-myofibroblast transition (EMyT) of different epithelial cells. The EMyT manifested by increased expression of α-smooth muscle actin and other contractile proteins, along with inhibition of genes responsible for cell proliferation. Induction of EMyT in γ-CYA-depleted cells depended on activation of serum response factor and its cofactors, myocardial-related transcriptional factors A and B. Loss of γ-CYA stimulated formin-mediated actin polymerization and activation of Rho GTPase, which appear to be essential for EMyT induction. Our findings demonstrate a previously unanticipated, unique role of γ-CYA in regulating epithelial phenotype and suppression of EMyT that may be essential for cell differentiation and tissue fibrosis. "
+"Jaroslaw Maciejewski"	"Translational Hematology and Oncology Research"	30891747	30898763	30709865	30675378	30655603	29795413	29416752	29339439	29217782	28633612	"Compound heterozygous germline mutations in CTC1 gene have been found in patients with atypical dyskeratosis congenita (DC), whereas heterozygous carriers are unaffected. Through screening of a large cohort of adult patients with acquired bone marrow failure syndromes, in addition to a DC case, we have also found extremely rare or novel heterozygous deleterious germline variants of CTC1 in patients with aplastic anaemia (AA; n = 5), paroxysmal nocturnal haemoglobinuria (PNH; n = 3) and myelodysplastic syndrome (MDS; n = 2). A compound heterozygous case of AA showed clonal evolution. Our results suggest that some of the inherited CTC1 variants may represent predisposition factors for acquired bone marrow failure."	"T large granular lymphocyte leukemia (T-LGLL) is a clonal lymphoproliferative disorder that can arise in the context of pathologic or physiologic cytotoxic T-cell (CTL) responses. STAT3 mutations are often absent in typical T-LGLL, suggesting that in a significant fraction of patients, antigen-driven expansion alone can maintain LGL clone persistence. We set out to determine the relationship between activating STAT3 hits and CTL clonal selection at presentation and in response to therapy. Thus, a group of patients with T-LGLL were serially subjected to deep next-generation sequencing (NGS) of the T-cell receptor (TCR) Vβ complementarity-determining region 3 (CDR3) and STAT3 to recapitulate clonal hierarchy and dynamics. The results of this complex analysis demonstrate that STAT3 mutations produce either a sweeping or linear subclone within a monoclonal CTL population either early or during the course of disease. Therapy can extinguish a LGL clone, silence it, or adapt mechanisms to escape elimination. LGL clones can persist on elimination of STAT3 subclones, and alternate STAT3-negative CTL clones can replace therapy-sensitive CTL clones. LGL clones can evolve and are fueled by a nonextinguished antigenic drive. STAT3 mutations can accelerate this process or render CTL clones semiautonomous and not reliant on physiologic stimulation."	"Somatic TET2 mutations (TET2<sup>MT</sup>) are frequent in myeloid neoplasia (MN), particularly chronic myelomonocytic leukemia (CMML). TET2<sup>MT</sup> includes mostly loss-of-function/hypomorphic hits. Impaired TET2 activity skews differentiation of hematopoietic stem cells toward proliferating myeloid precursors. This study was prompted by the observation of frequent biallelic TET2 gene inactivations (biTET2<sup> i </sup> ) in CMML. We speculated that biTET2<sup> i </sup> might be associated with distinct clinicohematological features. We analyzed TET2<sup>MT</sup> in 1045 patients with MN. Of 82 biTET2<sup> i </sup> cases, 66 were biTET2<sup>MT</sup>, 13 were hemizygous TET2<sup>MT</sup>, and 3 were homozygous TET2<sup>MT</sup> (uniparental disomy); the remaining patients (denoted biTET2<sup> - </sup> hereafter) were either monoallelic TET2<sup>MT</sup> (n = 96) or wild-type TET2 (n = 823). Truncation mutations were found in 83% of biTET2<sup> i </sup> vs 65% of biTET2<sup> - </sup> cases (P = .02). TET2 hits were founder lesions in 72% of biTET2<sup> i </sup> vs 38% of biTET2<sup> - </sup> cases (P &lt; .0001). In biTET2<sup> i </sup> , significantly concurrent hits included SRSF2<sup>MT</sup> (33%; P &lt; .0001) and KRAS/NRAS<sup>MT</sup> (16%; P = .03) as compared with biTET2<sup> - </sup> When the first TET2 hit was ancestral in biTET2<sup> i </sup> , the most common subsequent hits affected a second TET2<sup>MT</sup>, followed by SRSF2<sup>MT</sup>, ASXL1<sup>MT</sup>, RAS<sup>MT</sup>, and DNMT3A<sup>MT</sup>BiTET2<sup> i </sup> patients without any monocytosis showed an absence of SRSF2<sup>MT</sup>BiTET2<sup> i </sup> patients were older and had monocytosis, CMML, normal karyotypes, and lower-risk disease compared with biTET2<sup> - </sup> patients. Hence, while a second TET2 hit occurred frequently, biTET2<sup> i </sup> did not portend faster progression but rather determined monocytic differentiation, consistent with its prevalence in CMML. Additionally, biTET2<sup> i </sup> showed lower odds of cytopenias and marrow blasts (≥5%) and higher odds of myeloid dysplasia and marrow hypercellularity. Thus, biTET2<sup> i </sup> might represent an auxiliary assessment tool in MN."	"A high-throughput anti-aging drug screen was developed that simultaneously measures senescence-associated β-galactosidase activity and proliferation. Applied to replicatively pre-aged fibroblasts, this screen yielded violuric acid (VA) and 1-naphthoquinone-2-monoxime (N2N1) as its top two hits. These lead compounds extended the replicative life spans of normal and progeroid human cells in a dose-dependent manner and also extended the chronological life spans of mice and C. elegans. They are further shown here to function as redox catalysts in oxidations of NAD(P)H. They thus slow age-related declines in NAD(P)<sup>+</sup>/NAD(P)H ratios. VA participates in non-enzymatic electron transfers from NAD(P)H to oxidized glutathione or peroxides. N2N1 transfers electrons from NAD(P)H to cytochrome c or CoQ10 via NAD(P)H dehydrogenase (quinone) 1 (NQO1). Our results indicate that pharmacologic manipulation of NQO1 activity via redox catalysts may reveal mechanisms of senescence and aging."	"Next generation sequencing (NGS) has become an important tool to inform disease risk for myeloid malignancies, however data remains conflicting regarding the significance of individual mutations. We performed targeted NGS on 112 patients with AML, and 80 with MDS, who underwent allogeneic hematopoietic cell transplantation. The most common mutations in AML were TET2 (14.7%), FLT3 (12.9%), DNMT3A (12.1%), and RUNX1 (7.8%). Complex cytogenetics (HR 2.82, P = .017) and disease status (&lt;CR) (HR 2.58, P &lt; .001) was significantly associated with worse RFS. No individual mutation, nor variant allelic frequency (VAF), was found to be prognostic, except mutations in the RNA-splicing pathway, (HR 2.09, P = .023). Within the MDS cohort, most common mutations were ASXL1 (12.5%), SRSF2 (12%), TET2 (8.8%), and TP53 (8.8%). Complex cytogenetics (HR 5.01, P &lt; .001), and presence of U2AF1 (HR 3.60, P = .019), was associated with worse RFS. Analysis of VAF found that TP53 and EZH2 mutations with allelic frequencies of &gt;33% were associated with poor RFS (HR 3.57, P = .017; and HR 6.57, P = .003; respectively). Molecular profiling is increasingly important in the care of patients with AML and MDS. Further studies are needed to understand the molecular complexities, including the significance of clonal burden, to better inform care decisions."	"Somatic mutations in TET2 are common in myelodysplastic syndromes (MDS), myeloproliferative, and overlap syndromes. TET2 mutant (TET2<sup>MT</sup>) clones are also found in asymptomatic elderly individuals, a condition referred to as clonal hematopoiesis of indeterminate potential (CHIP). In various entities of TET2<sup>MT</sup> neoplasia, we examined the phenotype in relation to the strata of TET2 hits within the clonal hierarchy. Using deep sequencing, 1781 mutations were found in 1205 of 4930 patients; 40% of mutant cases were biallelic. Hierarchical analysis revealed that of TET2<sup>MT</sup> cases &gt;40% were ancestral, e.g., representing 8% of MDS. Higher (earlier) TET2 lesion rank within the clonal hierarchy (greater clonal burden) was associated with impaired survival. Moreover, MDS driven by ancestral TET2<sup>MT</sup> is likely derived from TET2<sup>MT</sup> CHIP with a penetrance of ~1%. Following ancestral TET2 mutations, individual disease course is determined by secondary hits. Using multidimensional analyses, we demonstrate how hits following the TET2 founder defect induces phenotypic shifts toward dysplasia, myeloproliferation, or progression to AML. In summary, TET2<sup>MT</sup> CHIP-derived MDS is a subclass of MDS that is distinct from de novo disease."	"Using next generation sequencing we have systematically analyzed a large cohort of 489 patients with bone marrow failure (BMF), including myelodysplastic syndrome (MDS), acute myeloid leukemia (AML), aplastic anemia (AA), and related conditions for the presence of germline (GL) alterations in Fanconi Anemia (FA) and telomerase genes. We have detected an increased frequency of heterozygous FA gene mutations in MDS and to lesser degree in AML suggesting that the presence of one normal allele may not be completely protective and indeed heterozygous FA lesions may have a long latency period before hematologic manifestation. In contrast, GL telomerase gene mutations were not associated with increased disease risk. When compared to large control cohorts, we have not detected an increased frequency of damaging variants among telomerase complex genes, including those previously believed to be involved in the pathogenesis of AA. Our results may suggest that while low penetrance and delayed disease onset can confound identification of genetic predisposition factors, GL FA alterations can be also associated with MDS."	"Purpose: Somatic mutations in IDH1/2 occur in approximately 20% of patients with myeloid neoplasms, including acute myeloid leukemia (AML). IDH1/2<sup>MUT</sup> enzymes produce D-2-hydroxyglutarate (D2HG), which associates with increased DNA damage and improved responses to chemo/radiotherapy and PARP inhibitors in solid tumor cells. Whether this also holds true for IDH1/2<sup>MUT</sup> AML is not known.Experimental Design: Well-characterized primary IDH1<sup>MUT</sup>, IDH2<sup>MUT</sup>, and IDH1/2<sup>WT</sup> AML cells were analyzed for DNA damage and responses to daunorubicin, ionizing radiation, and PARP inhibitors.Results:IDH1/2<sup>MUT</sup> caused increased DNA damage and sensitization to daunorubicin, irradiation, and the PARP inhibitors olaparib and talazoparib in AML cells. IDH1/2<sup>MUT</sup> inhibitors protected against these treatments. Combined treatment with a PARP inhibitor and daunorubicin had an additive effect on the killing of IDH1/2<sup>MUT</sup> AML cells. We provide evidence that the therapy sensitivity of IDH1/2<sup>MUT</sup> cells was caused by D2HG-mediated downregulation of expression of the DNA damage response gene ATM and not by altered redox responses due to metabolic alterations in IDH1/2<sup>MUT</sup> cells.Conclusions:IDH1/2<sup>MUT</sup> AML cells are sensitive to PARP inhibitors as monotherapy but especially when combined with a DNA-damaging agent, such as daunorubicin, whereas concomitant administration of IDH1/2<sup>MUT</sup> inhibitors during cytotoxic therapy decrease the efficacy of both agents in IDH1/2<sup>MUT</sup> AML. These results advocate in favor of clinical trials of PARP inhibitors either or not in combination with daunorubicin in IDH1/2<sup>MUT</sup> AML. Clin Cancer Res; 24(7); 1705-15. ©2018 AACR."	"Pure red cell aplasia is an orphan disease, and as such lacks rationally established standard therapies. Most cases are idiopathic; a subset is antibody-mediated. There is overlap between idiopathic cases and those with T-cell large granular lymphocytic leukemia, hypogammaglobulinemia, and low-grade lymphomas. In each of the aforementioned, the pathogenetic mechanisms may involve autoreactive cytotoxic responses. We selected 62 uniformly diagnosed pure red cell aplasia patients and analyzed their pathophysiologic features and responsiveness to rationally applied first-line and salvage therapies in order to propose diagnostic and therapeutic algorithms that may be helpful in guiding the management of prospective patients, 52% of whom were idiopathic, while the others involved large granular lymphocytic leukemia, thymoma, and B-cell dyscrasia. T-cell-mediated responses ranged between a continuum from polyclonal to monoclonal (as seen in large granular lymphocytic leukemia). During a median observation period of 40 months, patients received a median of two different therapies to achieve remission. Frequently used therapy included calcineurin-inhibitors with a steroid taper yielding a first-line overall response rate of 76% (53/70). Oral cyclophosphamide showed activity, albeit lower than that produced by cyclosporine. Intravenous immunoglobulins were effective both in parvovirus patients and in hypogammaglobulinemia cases. In salvage settings, alemtuzumab is active, particularly in large granular lymphocytic leukemia-associated cases. Other potentially useful salvage options include rituximab, anti-thymocyte globulin and bortezomib. The workup of acquired pure red cell aplasia should include investigations of common pathological associations. Most effective therapies are directed against T-cell-mediated immunity, and therapeutic choices need to account for associated conditions that may help in choosing alternative salvage agents, such as intravenous immunoglobulin, alemtuzumab and bortezomib."	"Large granular lymphocytic leukemia (LGLL) represents a clonal/oligoclonal lymphoproliferation of cytotoxic T and natural killer cells often associated with STAT3 mutations. When symptomatic, due to mostly anemia and neutropenia, therapy choices are often empirically-based, because only few clinical trials and systematic studies have been performed. Incorporating new molecular and flow cytometry parameters, we identified 204 patients fulfilling uniform criteria for LGLL diagnoses and analyzed clinical course with median follow-up of 36 months, including responses to treatments. While selection of initial treatment was dictated by clinical features, the initial responses, as well as overall responses to methotrexate (MTX), cyclosporine (CsA), and cyclophosphamide (CTX), were similar at 40-50% across drugs. Sequential use of these drugs resulted in responses in most cases: only 10-20% required salvage therapies such as ATG, Campath, tofacitinib, splenectomy or abatacept. MTX yielded the most durable responses. STAT3-mutated patients required therapy more frequently and had better overall survival."
+"Jensen, Jan"	"Biomedical Engineering"	25576928	28247862	24014421	23370147	22461559	18186922	29325753	28892734	28528561	28096308	"Wnt signaling is a well conserved pathway critical for growth, patterning and differentiation of multiple tissues and organs. Previous studies on Wnt signaling in the pancreas have been based predominantly on downstream pathway effector genes such as β-catenin. We here provide evidence that the canonical-pathway member Wnt7b is a physiological regulator of pancreatic progenitor cell growth. Genetic deletion of Wnt7b in the developing pancreas leads to pancreatic hypoplasia due to reduced proliferation of pancreatic progenitor cells during the phase of pancreas development marked by rapid progenitor cell growth. While the differentiation potential of pancreatic progenitor cells is unaffected by Wnt7b deletion, through a gain-of-function analysis, we find that early pancreatic progenitor cells are highly sensitive to Wnt7b expression, but later lose such competence. By modulating the level and the temporal windows of Wnt7b expression we demonstrate a significant impact on organ growth and morphogenesis particularly during the early branching stages of the organ, which negatively affects generation of the pro-endocrine (Ngn3(+)/Nkx6.1(+)), and pro-acinar (Ptf1A(+)) fields. Consequently, Wnt7b gain-of-function results in failed morphogenesis and almost complete abrogation of the differentiation of endocrine and acinar cells, leading to cystic epithelial metaplasia expressing ductal markers including Sox9, Hnf6 and Hnf1β. While Wnt7b is expressed exclusively in the developing pancreatic epithelium, adjacent mesenchymal cells in the organ display a direct trophic response to elevated Wnt7b and increase expression of Lef1, cFos and desmin. Of note, in contrast to the pancreatic epithelium, the pancreatic mesenchyme remains competent to respond to Wnt7b ligand, at later stages in development. We conclude that Wnt7b helps coordinate pancreatic development through autocrine, as well as paracrine mechanisms, and as such represents a novel bi-modal morphogen ligand. "	"The genetic specification of the compartmentalized pancreatic acinar/centroacinar unit is poorly understood. Growth factor independence-1 (Gfi1) is a zinc finger transcriptional repressor that regulates hematopoietic stem cell maintenance, pre-T-cell differentiation, formation of granulocytes, inner ear hair cells, and the development of secretory cell types in the intestine. As GFI1/Gfi1 is expressed in human and rodent pancreas, we characterized the potential function of Gfi1 in mouse pancreatic development. Gfi1 knockout mice were analyzed at histological and molecular levels, including qRT-PCR, in situ hybridization, immunohistochemistry, and electron microscopy. Loss of Gfi1 impacted formation and structure of the pancreatic acinar/centroacinar unit. Histologic and ultrastructural analysis of Gfi1-null pancreas revealed specific defects at the level of pancreatic acinar cells as well as the centroacinar cells (CACs) in Gfi1<sup>-/-</sup> mice when compared with wild-type littermates. Pancreatic endocrine differentiation, islet architecture, and function were unaffected. Organ domain patterning and the formation of ductal cells occurred normally during the murine secondary transition (E13.5-E14.5) in the Gfi1<sup>-/-</sup> pancreas. However, at later gestational time points (E18.5), expression of cellular markers for CACs was substantially reduced in Gfi1<sup>-/-</sup> mice, corroborated by electron microscopy imaging of the acinar/centroacinar unit. The reduction in CACs was correlated with an exocrine organ defect. Postnatally, Gfi1 deficiency resulted in severe pancreatic acinar dysplasia, including loss of granulation, autolytic vacuolation, and a proliferative and apoptotic response. Gfi1 plays an important role in regulating the development of pancreatic CACs and the function of pancreatic acinar cells."	"Notch signaling is an evolutionarily conserved mechanism adapted to control binary fate decisions. The first evidence of Notch in pancreatic development focused on its critical role in controlling endocrine fate decisions. Since then, we have come to understand that this signaling system operates iteratively in the pancreas, and is not limited to the control of endocrine fate decision. Notch appears to play a role in early organ development, then during organ domain patterning, and only during a final refinement process, in the control of terminal cell fates. In so doing, Notch receptors and their ligands are under the influence of a wealth of genetic components that together help orchestrate the building of a complex, glandular organ."	"Ngn3 is recognized as a regulator of pancreatic endocrine formation, and Notch signaling as an important negative regulator Ngn3 gene expression. By conditionally controlling expression of Ngn3 in the pancreas, we find that these two signaling components are dynamically linked. This connection involves transcriptional repression as previously shown, but also incorporates a novel post-translational mechanism. In addition to its ability to promote endocrine fate, we provide evidence of a competing ability of Ngn3 in the patterning of multipotent progenitor cells in turn controlling the formation of ducts. On one hand, Ngn3 cell-intrinsically activates endocrine target genes; on the other, Ngn3 cell-extrinsically promotes lateral signaling via the Dll1&gt;Notch&gt;Hes1 pathway which substantially limits its ability to sustain endocrine formation. Prior to endocrine commitment, the Ngn3-mediated activation of the Notch&gt;Hes1 pathway impacts formation of the trunk domain in the pancreas causing multipotent progenitors to lose acinar, while gaining endocrine and ductal, competence. The subsequent selection of fate from such bipotential progenitors is then governed by lateral inhibition, where Notch&gt;Hes1-mediated Ngn3 protein destabilization serves to limit endocrine differentiation by reducing cellular levels of Ngn3. This system thus allows for rapid dynamic changes between opposing bHLH proteins in cells approaching a terminal differentiation event. Inhibition of Notch signaling leads to Ngn3 protein stabilization in the normal mouse pancreas explants. We conclude that the mutually exclusive expression pattern of Ngn3/Hes1 proteins in the mammalian pancreas is partially controlled through Notch-mediated post-translational regulation and we demonstrate that the formation of insulin-producing beta-cells can be significantly enhanced upon induction of a pro-endocrine drive combined with the inhibition of Notch processing."	"Early pancreatic morphogenesis is characterized by the transformation of an uncommitted pool of pancreatic progenitor cells into a branched pancreatic epithelium that consists of 'tip' and 'trunk' domains. These domains have distinct molecular signatures and differentiate into distinct pancreatic cell lineages. Cells at the branched tips of the epithelium develop into acinar cells, whereas cells in the trunk subcompartment differentiate into endocrine and duct cells. Recent genetic analyses have highlighted the role of key transcriptional regulators in the specification of these subcompartments. Here, we analyzed in mice the role of Notch signaling in the patterning of multipotent pancreatic progenitor cells through mosaic overexpression of a Notch signaling antagonist, dominant-negative mastermind-like 1, resulting in a mixture of wild-type and Notch-suppressed pancreatic progenitor cells. We find that attenuation of Notch signaling has pronounced patterning effects on multipotent pancreatic progenitor cells prior to terminal differentiation. Relative to the wild-type cells, the Notch-suppressed cells lose trunk marker genes and gain expression of tip marker genes. The Notch-suppressed cells subsequently differentiate into acinar cells, whereas duct and endocrine populations are formed predominantly from the wild-type cells. Mechanistically, these observations could be explained by a requirement of Notch for the expression of the trunk determination gene Nkx6.1. This was supported by the finding of direct binding of RBP-jκ to the Nkx6.1 proximal promoter."	"Interaction with the surrounding mesenchyme is necessary for development of endodermal organs, and Fibroblast growth factors have recently emerged as mesenchymal-expressed morphogens that direct endodermal morphogenesis. The fibroblast growth factor 10 (Fgf10) null mouse is characterized by the absence of lung bud development. Previous studies have shown that this requirement for Fgf10 is due in part to its role as a chemotactic factor during branching morphogenesis. In other endodermal organs Fgf10 also plays a role in regulating differentiation. Through gain-of-function analysis, we here find that FGF10 inhibits differentiation of the lung epithelium and promotes distalization of the embryonic lung. Ectopic expression of FGF10 in the lung epithelium caused impaired lung development and perinatal lethality in a transgenic mouse model. Lung lobes were enlarged due to increased interlobular distance and hyperplasia of the airway epithelium. Differentiation of bronchial and alveolar cell lineages was inhibited. The transgenic epithelium consisted predominantly of proliferating progenitor-like cells expressing Pro-surfactant protein C, TTF1, PEA3 and Clusterin similarly to immature distal tip cells. Strikingly, goblet cells developed within this arrested epithelium leading to goblet cell hyperplasia. We conclude that FGF10 inhibits terminal differentiation in the embryonic lung and maintains the distal epithelium, and that excessive levels of FGF10 leads to metaplastic differentiation of goblet cells similar to that seen in chronic inflammatory diseases."	"Animal models of serious infection suggest that 24 h of induced hypothermia improves circulatory and respiratory function and reduces mortality. We tested the hypothesis that a reduction of core temperature to 32-34°C attenuates organ dysfunction and reduces mortality in ventilator-dependent patients with septic shock. In this randomised, controlled, open-label trial, we recruited patients from ten intensive care units (ICUs) in three countries in Europe and North America. Inclusion criteria for patients with severe sepsis or septic shock were a mean arterial pressure of less than 70 mm Hg, mechanical ventilation in an ICU, age at least 50 years, predicted length of stay in the ICU at least 24 h, and recruitment into the study within 6 h of fulfilling inclusion criteria. Exclusion criteria were uncontrolled bleeding, clinically important bleeding disorder, recent open surgery, pregnancy or breastfeeding, or involuntary psychiatric admission. We randomly allocated patients 1:1 (with variable block sizes ranging from four to eight; stratified by predictors of mortality, age, Acute Physiology and Chronic Health Evaluation II score, and study site) to routine thermal management or 24 h of induced hypothermia (target 32-34°C) followed by 48 h of normothermia (36-38°C). The primary endpoint was 30 day all-cause mortality in the modified intention-to-treat population (all randomly allocated patients except those for whom consent was withdrawn or who were discovered to meet an exclusion criterion after randomisation but before receiving the trial intervention). Patients and health-care professionals giving the intervention were not masked to treatment allocation, but assessors of the primary outcome were. This trial is registered with ClinicalTrials.gov, number NCT01455116. Between Nov 1, 2011, and Nov 4, 2016, we screened 5695 patients. After recruitment of 436 of the planned 560 participants, the trial was terminated for futility (220 [50%] randomly allocated to hypothermia and 216 [50%] to routine thermal management). In the hypothermia group, 96 (44·2%) of 217 died within 30 days versus 77 (35·8%) of 215 in the routine thermal management group (difference 8·4% [95% CI -0·8 to 17·6]; relative risk 1·2 [1·0-1·6]; p=0·07]). Among patients with septic shock and ventilator-dependent respiratory failure, induced hypothermia does not reduce mortality. Induced hypothermia should not be used in patients with septic shock. Trygfonden, Lundbeckfonden, and the Danish National Research Foundation."	"Little is known about the acute effects of antidepressant treatments on brain glutamate and gamma-amino-butyric acid (GABA) levels, and their association with clinical response. Using proton magnetic resonance spectroscopy (<sup>1</sup>H-MRS) we examined longitudinally the effects of citalopram on glutamine/glutamate ratios and GABA levels in the pregenual anterior cingulate cortex (pgACC) of individuals with major depressive disorder (MDD). We acquired <sup>1</sup>H-MRS scans at baseline and at days 3, 7, and 42 of citalopram treatment in nineteen unmedicated individuals with MDD. Ten age- and sex-matched non-depressed comparison individuals were scanned once. The association between 1) baseline metabolites and 2) change in metabolites from baseline to each time point and clinical response (change in Montgomery-Åsberg Depression Rating Scale (MADRS) score from baseline to day 42) was assessed by longitudinal regression analysis using generalized estimating equations. Contrary to our hypotheses, no significant associations emerged between glutamate metabolites and clinical response; however, greater increases (or smaller decreases) in pgACC GABA levels from baseline to days 3 and 7 of citalopram treatment were significantly associated with clinical response. These findings suggest that an acute change in GABA levels in pgACC predicts, and possibly mediates, later clinical response to citalopram treatment in individuals with MDD."	"Vasodilatory shock that does not respond to high-dose vasopressors is associated with high mortality. We investigated the effectiveness of angiotensin II for the treatment of patients with this condition. We randomly assigned patients with vasodilatory shock who were receiving more than 0.2 μg of norepinephrine per kilogram of body weight per minute or the equivalent dose of another vasopressor to receive infusions of either angiotensin II or placebo. The primary end point was a response with respect to mean arterial pressure at hour 3 after the start of infusion, with response defined as an increase from baseline of at least 10 mm Hg or an increase to at least 75 mm Hg, without an increase in the dose of background vasopressors. A total of 344 patients were assigned to one of the two regimens; 321 received a study intervention (163 received angiotensin II, and 158 received placebo) and were included in the analysis. The primary end point was reached by more patients in the angiotensin II group (114 of 163 patients, 69.9%) than in the placebo group (37 of 158 patients, 23.4%) (odds ratio, 7.95; 95% confidence interval [CI], 4.76 to 13.3; P&lt;0.001). At 48 hours, the mean improvement in the cardiovascular Sequential Organ Failure Assessment (SOFA) score (scores range from 0 to 4, with higher scores indicating more severe dysfunction) was greater in the angiotensin II group than in the placebo group (-1.75 vs. -1.28, P=0.01). Serious adverse events were reported in 60.7% of the patients in the angiotensin II group and in 67.1% in the placebo group. Death by day 28 occurred in 75 of 163 patients (46%) in the angiotensin II group and in 85 of 158 patients (54%) in the placebo group (hazard ratio, 0.78; 95% CI, 0.57 to 1.07; P=0.12). Angiotensin II effectively increased blood pressure in patients with vasodilatory shock that did not respond to high doses of conventional vasopressors. (Funded by La Jolla Pharmaceutical Company; ATHOS-3 ClinicalTrials.gov number, NCT02338843 .)."	"(Re)Building a Kidney is a National Institute of Diabetes and Digestive and Kidney Diseases-led consortium to optimize approaches for the isolation, expansion, and differentiation of appropriate kidney cell types and the integration of these cells into complex structures that replicate human kidney function. The ultimate goals of the consortium are two-fold: to develop and implement strategies for in vitro engineering of replacement kidney tissue, and to devise strategies to stimulate regeneration of nephrons in situ to restore failing kidney function. Projects within the consortium will answer fundamental questions regarding human gene expression in the developing kidney, essential signaling crosstalk between distinct cell types of the developing kidney, how to derive the many cell types of the kidney through directed differentiation of human pluripotent stem cells, which bioengineering or scaffolding strategies have the most potential for kidney tissue formation, and basic parameters of the regenerative response to injury. As these projects progress, the consortium will incorporate systematic investigations in physiologic function of in vitro and in vivo differentiated kidney tissue, strategies for engraftment in experimental animals, and development of therapeutic approaches to activate innate reparative responses."
+"Jorgensen, Trine"	"Inflammation and Immunity"	30853311	29755457	29430334	25708485	25504931	24477163	24442428	23754362	22585710	20018631	"Vitamin D deficiency is an established risk factor for many autoimmune diseases and the anti-inflammatory properties of vitamin D underscore its potential therapeutic value for these diseases. However, results of vitamin D3 supplementation clinical trials have been varied. To understand the clinical heterogeneity, we reviewed the pre-clinical data on vitamin D activity in four common autoimmune diseases: multiple sclerosis (MS), rheumatoid arthritis (RA), systemic lupus erythematosus (SLE), and inflammatory bowel disease (IBD), in which patients are commonly maintained on oral vitamin D3 supplementation. In contrast, many pre-clinical studies utilize other methods of manipulation (i.e. genetic, injection). Given the many actions of vitamin D3 and data supporting a vitamin D-independent role of the Vitamin D receptor (VDR), a more detailed mechanistic understanding of vitamin D3 activity is needed to properly translate pre-clinical findings into the clinic. Therefore, we assessed studies based on route of vitamin D3 administration, and identified where discrepancies in results exist and where more research is needed to establish the benefit of vitamin D supplementation."	"In addition to determining biological sex, sex hormones are known to influence health and disease via regulation of immune cell activities and modulation of target-organ susceptibility to immune-mediated damage. Systemic autoimmune disorders, such as systemic lupus erythematosus, rheumatoid arthritis, and multiple sclerosis are more prevalent in females, while cancer shows the opposite pattern. Sex hormones have been repeatedly suggested to play a part in these biases. In this review, we will discuss how androgens and the expression of functional androgen receptor affect immune cells and how this may dampen or alter immune response(s) and affect autoimmune disease incidences and progression."	"Patients with systemic lupus erythematosus (SLE) often have elevated levels of type I interferon (IFN, particularly IFNα), a cytokine that can drive many of the symptoms associated with this autoimmune disorder. Additionally, the presence of autoantibody-secreting plasma cells contributes to the systemic inflammation observed in SLE and IFNα supports the survival of these cells. Current therapies for SLE are limited to broad immunosuppression or B cell-targeting antibody-mediated depletion strategies, which do not eliminate autoantibody-secreting plasma cells. Recent clinical trials testing the efficacy of IFNα neutralization in SLE have delivered disappointing results, with primary endpoints not being met or with minimal improvements, while studies evaluating antibody therapy targeting the type I IFN receptor was more successful and is currently being tested in phase III clinical studies. As many studies have supported the idea that plasmacytoid dendritic cells (pDCs) are the main source of IFNα in SLE, specifically targeting pDCs in SLE represents a new therapeutic option. Murine models suggest pDC ablation effectively ameliorates or reduces lupus-like disease development in spontaneous models of lupus and pre-clinical and phase I clinical trials support the safety of such a therapy in humans. Here we review animal studies and the current status of clinical trials targeting IFNα, type I interferon receptor and pDCs in SLE."	"Sex-based disparities in immune responses are well known phenomena. The two most important factors accounting for the sex-bias in immunity are genetics and sex hormones. Effects of female sex hormones, estrogen and progesterone are well established, however the role of testosterone is not completely understood. Evidence from unrelated studies points to an immunosuppressive role of testosterone on different components of the immune system, but the underlying molecular mechanisms remains unknown. In this review we evaluate the effect of testosterone on key cellular components of innate and adaptive immunity. Specifically, we highlight the importance of testosterone in down-regulating the systemic immune response by cell type specific effects in the context of immunological disorders. Further studies are required to elucidate the molecular mechanisms of testosterone-induced immunosuppression, leading the way to the identification of novel therapeutic targets for immune disorders. "	"Patients with systemic lupus erythematosus (SLE) often present with elevated levels of interferon-α (IFNα) in serum. Plasmacytoid dendritic cells (pDCs) have been suggested to be the primary source of IFNα in SLE due to their capacity to produce high levels of IFNα. During viral infection, a subset of pDCs expressing sialic acid-binding immunoglobulin-type lectin H (Siglec H) produces the majority of pDC-derived IFNα. The aim of this study was to provide evidence that Siglec H-positive pDCs are pathogenic in the IFNα-dependent B6.Nba2 mouse model of lupus. B6.Nba2 blood dendritic cell antigen 2 (BDCA-2)-diphtheria toxin receptor (DTR)-transgenic (Tg) mice were treated intraperitoneally with DT 3 times weekly starting at 4 weeks or 12 weeks of age and analyzed at 12 weeks and 18 weeks of age, respectively. Lupus-like disease development was measured by the presence of elevated levels of autoantibodies in serum (as determined by enzyme-linked immunosorbent assay), increased expression of IFN-inducible genes (as determined by real-time reverse transcription-polymerase chain reaction), increased IgG immune complex deposition in kidney glomeruli (as determined by immunofluorescence staining), spontaneous lymphocyte activation, and differentiation of B cells into antibody-producing plasma cells (as determined by flow cytometry). B6.Nba2 mice in which Siglec H-positive pDCs were depleted for 6-8 weeks displayed reduced levels of IFNα-induced gene transcripts and decreased anti-chromatin autoantibody levels in serum, and significantly fewer activated splenic T cells and B cells, germinal center B cells, follicular helper T cells, and splenic plasma cells. In 18-week-old mice, IgG immune complex deposition in kidney glomeruli was similarly reduced. The development of lupus-like disease in congenic B6.Nba2 mice depends on Siglec H-positive pDCs. We suggest that depletion of Siglec H-positive pDCs represents a novel cellular target in SLE."	"Most systemic autoimmune diseases occur more frequently in females than in males. This is particularly evident in Sjögren's syndrome, systemic lupus erythromatosis (SLE) and thyroid autoimmunity, where the ratio of females to males ranges from 20:1 to 8:1. Our understanding of the etiology of SLE implies important roles for genetics, environmental factors and sex hormones, but the relative significance of each remains unknown. Using the New Zealand hybrid mouse model system of SLE, we present here a new fetal liver chimera-based system in which we can segregate effects of immune system genes from that of sex hormones in vivo. We show that female hematopoietic cells express an intrinsic capacity to drive lupus-like disease in both male and female recipient mice, suggesting that this capacity is hormone independent. Particularly, only chimeric mice with a female hematopoietic system showed significantly increased numbers of germinal center B cells, memory B cells and plasma cells followed by a spontaneous loss of tolerance to nuclear components and hence elevated serum antinuclear autoantibodies. A protective effect of testosterone was noted with regard to disease onset, but not disease incidence. Thus, genetic factors encoded within the female hematopoietic system can effectively drive lupus-like disease even in male recipients. "	"Systemic lupus erythematosus is an autoimmune disease characterized by elevated production of autoreactive Abs. The disease has a much higher prevalence in women than in men. Although testosterone has been shown to be protective in the disease, and estrogens exacerbating, the discrepancy in prevalence between men and women is still not well understood and the mechanism behind it is unknown. We have recently described that male (New Zealand black [NZB] × New Zealand white [NZW])F1 mice have higher levels of Gr1(+)CD11b(+) cells, and that these cells suppress autoantibody production in vivo. In this article, we extend our findings to show that similarly to humans, female lupus-prone (NZB × NZW)F1 mice also respond with stronger Ab responses to thymus-dependent Ag immunization than male littermates. Furthermore, the presence or absence of Gr1-expressing cells not only control Ag-specific Ab responses in male, but not female, (NZB × NZW)F1 mice, but also significantly alter the activation and differentiation of CD4(+) T cells in vitro and in vivo. In particular, we found that Gr1(+) cells from male (NZB × NZW)F1 mice suppress the differentiation and effector function of CXCR5(+)PD-1(+) T follicular helper cells, thereby controlling germinal center formation and plasma cell differentiation. This new finding strongly supports efforts to develop new drugs that target myeloid cell subsets in a number of T and B cell-mediated diseases with a female predominance. "	"Systemic lupus erythematosus (SLE) develops much more readily in females than in males. Previous research has focused primarily on identifying mechanisms pertinent to the pathology in females. The aim of the current study was to delineate active protective mechanisms in males. We present evidence of a new male-associated mechanism of protection against the development of lupus-like disease in lupus-prone (NZB × NZW)F1 mice. We identified previously uncharacterized cellular and functional differences in myeloid cells between male and female (NZB × NZW)F1 mice, with the use of flow cytometry, confocal imaging, in vivo antibody-mediated depletion, and in vitro cell coculture assays. A population of Gr-1(high) Ly-6G+CD11b+ myeloid cells was found to be constitutively increased in male (NZB × NZW)F1 mice as compared with female mice and was regulated by testosterone. The cells were located adjacent to spleen B cell follicles in vivo and were found to directly inhibit cytokine-induced differentiation of naive B cells into antibody-secreting cells in vitro. Most notably, treatment with anti-Gr-1-depleting antibodies increased the spontaneous production of antinuclear autoantibodies in male (NZB × NZW)F1 mice, while a similar approach in female mice had no effect on disease development. Male lupus-prone (NZB × NZW)F1 mice harbor elevated levels of a population of myeloid cells with pronounced immunosuppressive capacities that specifically target B cells and the production of antibodies in vivo. We suggest that these cells represent a male-driven inhibitory mechanism involved in the control of B cell pathogenesis, delaying (or preventing) lupus-like disease development in otherwise genetically predisposed male (NZB × NZW)F1 mice."	"Act1 is a negative regulator of B-cell activation factor of the TNF family (BAFF) and CD40L-induced signaling. BALB/C mice lacking Act1 develop systemic autoimmunity resembling systemic lupus erythematosus (SLE) and Sjögren's syndrome (SjS). SLE and SjS are characterized by anti-nuclear IgG autoantibody (ANA-IgG) production and inflammation of peripheral tissues. As autoantibody production can occur in a T-cell dependent or T-cell independent manner, we investigated the role of T-cell help during Act1-mediated autoimmunity. Act1-deficiency was bred onto C57Bl/6 (B6.Act1(-/-) ) mice and B6.TCRβ(-/-) TCRδ(-/-) Act1(-/-) (TKO) mice were generated. While TCRβ/δ-sufficient B6.Act1(-/-) mice developed splenomegaly and lymphadenopathy, hypergammaglobulinemia, elevated levels of ANA-IgG, and kidney pathology, TKO mice failed to develop any such signs of disease. Neither B6.Act1(-/-) nor TKO mice developed SjS-like disease, suggesting that epigenetic interactions on the BALB/C background are responsible for this phenotype in BALB/C.Act1(-/-) mice. Interestingly, BAFF-driven transitional B-cell abnormalities, previously reported in BALB/C.Act1(-/-) mice, were intact in B6.Act1(-/-) mice and largely independent of T cells. In conclusion, T cells are necessary for the development of SLE-like disease in B6.Act1(-/-) mice, but not BAFF-driven transitional B-cell differentiation."	"Autoantibodies are of central importance in the pathogenesis of Ab-mediated autoimmune disorders. The murine lupus susceptibility locus Nba2 on chromosome 1 and the syntenic human locus are associated with a loss of immune tolerance that leads to antinuclear Ab production. To identify gene intervals within Nba2 that control the development of autoantibody-producing B cells and to determine the cellular components through which Nba2 genes accomplish this, we generated congenic mice expressing various Nba2 intervals where genes for the FcgammaR, SLAM, and IFN-inducible families are encoded. Analysis of congenic strains demonstrated that the FcgammaR and SLAM intervals independently controlled the severity of autoantibody production and renal disease, yet are both required for lupus susceptibility. Deregulated homeostasis of terminally differentiated B cells was found to be controlled by the FcgammaR interval where FcgammaRIIb-mediated apoptosis of germinal center B cells and plasma cells was impaired. Increased numbers of activated plasmacytoid dendritic cells that were distinctly CD19+ and promoted plasma cell differentiation via the proinflammatory cytokines IL-10 and IFNalpha were linked to the SLAM interval. These findings suggest that SLAM and FcgammaR intervals act cooperatively to influence the clinical course of disease through supporting the differentiation and survival of autoantibody-producing cells."
+"Kalady, Matthew"	"Cancer Biology"	31082910	30451761	30353615	30318507	29580878	29578919	29465458	29184477	28916945	28527628	"To evaluate the independent prognostic ability of the American Joint Committee on Cancer (AJCC) tumor regression scores within pathologic stage II and III rectal cancers. Response to neoadjuvant chemoradiation (nCRT) has been debated as a biologic surrogate for tumor biology and prognosis in rectal cancer. AJCC regression scores have been shown to correlate with prognosis. Patient demographics, tumor characteristics, and AJCC scores (0 = complete response; 1 = isolated tumor cells remaining; 2 = residual cancer outgrown by fibrosis; 3 = extensive residual cancer) were assessed from 545 rectal cancer patients treated by nCRT followed by surgery at a single institution. Patients were classified as responders (score 0-2) or nonresponders (score 3). Survival analyses were performed using Cox proportional hazards models. Of 545 cases, 123 and 182 were pathologic stage II and III, respectively. Median follow-up was 4.9 years. AJCC regression scores were not independently prognostic within stage II cancers. However, AJCC scores were strongly associated with prognosis within stage III cancers (nonresponse 5-year overall survival [OS] 27% vs 67%, P &lt; 0.001). Stage III responders (N = 139, 76.4%) had similar outcomes to stage II (5-year OS 67% vs 74%, P = 0.89). Conversely, stage III nonresponders (N = 43, 23.6%) approached stage IV outcomes (5-year OS 27% vs 18%, P = 0.09). On multivariable analysis, nonresponse (hazard ratio 3.2, 95% confidence interval 1.7-6.2), along with positive margin, abdominoperineal resection, and no adjuvant chemotherapy administration were independently associated with worse OS. AJCC response score after nCRT is a novel prognostic factor in pathologic stage III rectal cancer and may guide surveillance and adjuvant therapy decisions."	"Disease-free survival estimated from the time of surgery does not account for the changing likelihood of survival based on time already accrued. Conditional disease-free survival is defined as the probability of remaining disease free after reaching a specific time point without recurrence. The purpose of this study was to evaluate conditional disease-free survival for patients with rectal cancer who were treated by proctectomy after neoadjuvant chemoradiation. Demographics, tumor characteristics, and tumor regression scores were assessed. Three-year conditional disease-free survival was estimated at x year after surgery based on the formula cDFS3 = DFS(x+3)/DFS(x), where DFS is disease-free survival and cDFS is conditional disease-free survival. Analyses were performed using Cox proportional hazards models. The study was conducted at a single tertiary referral center. A total of 545 patients with rectal cancer who were treated by neoadjuvant chemoradiation and curative intent surgery between 1992 and 2012 were included. Disease-free survival and conditional disease-free survival were measured. The median patient age was 57.5 years, and 28.4% were women. Median follow-up was 5.9 years. Disease-free survival at 1, 3, and 5 years was 89%, 71%, and 63%. The probability of remaining disease free for an additional 3 years for patients disease free at 1, 3, and 5 years was 75%, 83%, and 82%. Tumor regression, pathologic stage, margin status, differentiation, and procedure (low anterior versus abdominoperineal resection) were associated with disease-free survival on multivariable analysis (p &lt; 0.05), but their relevance varied over time. R1 resection and differentiation were initially significant but not at 5 years. In contrast, tumor regression after neoadjuvant chemoradiation had a long-lasting impact on survival (at 5 y, conditional disease-free survival for an additional 3 y: 91%, 85%, 76%, and 71% for regression scores 0, 1, 2, and 3; p = 0.002). This was a retrospective study over 20 years, with evolution in adjuvant therapies during this time. Conditional disease-free survival estimates improved over time, confirming that most patients will see a recurrence within the first few years. The impact of specific prognostic factors evolves variably over time. This information is useful to patients and providers and can help guide counseling and surveillance. See Video Abstract at http://links.lww.com/DCR/A771."	"Colorectal cancer (CRC) remains a leading killer in the U.S. with resistance to treatment as the largest hurdle to cure. Colorectal cancer-initiating cells (CICs) are a self-renewing tumor population that contribute to tumor relapse. Here, we report that patient-derived CICs display relative chemoresistance compared with differentiated progeny. In contrast, conventional cell lines failed model therapeutic resistance. CICs preferentially repaired chemotherapy-induced DNA breaks, prompting us to interrogate DNA damage pathways against which pharmacologic inhibitors have been developed. We found that CICs critically depended on the key single-strand break repair mediator, poly(ADP-ribose) polymerase (PARP), to survive treatment with standard-of-care chemotherapy. Small molecule PARP inhibitors (PARPi) sensitized CICs to chemotherapy and reduced chemotherapy-treated CIC viability, self-renewal, and DNA damage repair. Although PARPi monotherapy failed to kill CICs, combined PARPi therapy with chemotherapy attenuated tumor growth in vivo. Clinical significance of PARPi for CRC patients was supported by elevated PARP levels in colorectal tumors compared with normal colon, with further increases in metastases. Collectively, our results suggest that PARP inhibition serves as a point of fragility for CICs by augmenting therapeutic efficacy of chemotherapy. Stem Cells 2019;37:42-53."	"Colorectal cancer (CRC) is a heterogeneous disease with distinct clinical subsets based on underlying genetic and epigenetic changes. DNA hypermethylation yields a unique CRC subset with a distinct phenotype and clinical behaviour, but this oncogenic pathway is not fully characterised. This study identifies and characterises miR-1247 as a novel tumour suppressor microRNA in methylated human colon cancers. Tumour samples from patients with hypermethylated and non-methylated colon cancer and cell lines were evaluated for miR-1247 expression and function. A murine subcutaneous xenograft model was used for in vivo functional studies. miR-1247 was methylated and underexpressed in methylator colon cancers. Overexpression of miR-1247 significantly inhibited cell proliferation, decreased tumour cell motility, induced apoptosis, and mitigated tumour formation capacity both in vivo and in vitro. Pharmacologic demethylation increased miR-1247 expression and produced similar anti-tumour activities. Mechanistic investigations revealed that MYCBP2, a member of the c-myc oncogene family, is a direct functional target of miR-1247. Furthermore, in CRC patients, MYCBP2 protein levels are associated with miR-1247 levels and survival. miR-1247 acts as a tumour suppressor by inhibiting MYCBP2 in methylator colon cancer. The MYCBP2/c-myc axis may underlie the anti-tumour activities of miR-1247 and is a potential therapeutic target via demethylation agents."	"Presentation of rectal cancer cases at a colorectal cancer multidisciplinary conference (CRC-MDC) is a required standard for the newly formed National Accreditation Program for Rectal Cancer administered by the Commission on Cancer. The aim of this study was to determine the frequency and manner in which CRC-MDC changed the management of rectal cancer patients at a tertiary academic center. All rectal cancer cases presented at a weekly CRC-MDC between July 2015 and June 2016 were prospectively included. Patient demographics and clinical information were recorded. The presenting physician completed a uniform written questionnaire outlining any changes in management as a result of the discussion. There were 408 rectal cancer cases included, and survey responses were obtained for 371 (91%). Thirty-nine patients (11%) had stage IV disease and 20 (5%) had locally recurrent cancer. There was a documented change in plan as a result of the CRC-MDC discussion in 97 of 371 (26%) cases surveyed. Changes in management included a change in therapy or change in therapy sequence in 76 cases, and recommendation of additional evaluation in 36 cases. Rates of management change were similar regardless of surgeon experience. Changes occurred in 23%, 28%, and 26% of cases presented by surgeons with &lt;10, 10 to 20, and &gt;20 years of experience, respectively (chi-square p = 0.63). The CRC-MDC changes clinical management for a significant portion of rectal cancer patients at a tertiary center, independent of the presenting surgeon's years of clinical experience. Our results support the CRC-MDC standard for the National Accreditation Program for Rectal Cancer."	"The incidence of colorectal cancer in the young (under age 40) is increasing, and this population has worse oncologic outcomes. Mucinous histology is a potential prognostic factor in colorectal cancer, but has not been evaluated specifically in young patients. The objective of the study was to determine factors associated with poor outcome in young patients with colorectal cancer (≤40 years) and to determine relationships between mucinous histology and oncologic outcomes in this population. This is a retrospective study. Patients from a single-institution tertiary care center were studied. A total of 224 patients with colorectal cancer under 40 years of age diagnosed between 1990 and 2010 were included (mean age, 34.7 years; 51.3% female). 34 patients (15.2%) had mucinous histology. There were no interventions. Oncologic outcomes were analyzed according to the presence of mucinous histology. The mucinous and nonmucin colorectal cancer study populations were statistically similar in age, sex, tumor location, pathological stage, differentiation, and adjuvant chemotherapy use. Five-year disease-free survival was 29.1% versus 71.3% (p &lt; 0.0001) and 5-year overall survival was 54.7% versus 80.3% (p &lt; 0.0001) for mucinous and nonmucinous patients, respectively. Mucinous colorectal cancers recurred earlier at a median time of 36.4 months versus 94.2 months for nonmucin colorectal cancers (p &lt; 0.001). On multivariate analysis, pathological stage (stage II HR, 3.61; 95% CI, 1.37-9.50; stage III HR, 5.27; 95% CI, 2.12-12.33), positive margins (HR, 1.95; 95% CI, 1.12-3.23), angiolymphatic invasion (HR, 2.15; 95% CI, 1.26-3.97), and mucinous histology (HR, 2.36; 95% CI, 1.44-3.96) were independently associated with worse disease-free and overall survival. This is a retrospective study without genetic information. Mucinous histology is a negative prognostic factor in young patients with colorectal cancer. This is associated with early and high recurrence rates, despite use of standard neoadjuvant and adjuvant regimens. Physicians need to be aware of this association and potentially explore novel treatment options. See Video Abstract at http://links.lww.com/DCR/A575."	"Advances in molecular biology and biomarker research have significantly impacted our understanding and treatment of multiple solid malignancies. In rectal cancer, where neoadjuvant chemoradiation is widely used for locally advanced disease, most efforts have focused on the identification of predictors of response in an attempt to appropriately select patients for multimodality therapy. A variety of biomarkers have been studied, including genetic mutations, chromosomal copy number alterations, and single as well as multigene expression patterns. Also, as transanal resection of rectal tumors requires accurate preoperative detection of lymph node metastasis, the identification of biomarkers of regional nodal involvement has been another important field of active research. While preliminary results have been promising, lack of external validation means has a limited translation to clinical use. This review summarizes recent developments in rectal cancer biomarker research, highlighting the challenges associated with their adoption, and evaluating their potential for clinical use."	"Neoadjuvant chemoradiation (CRT) for rectal cancer induces variable responses, and better response has been associated with improved oncologic outcomes. Our group has previously shown that the administration of HMG-CoA reductase inhibitors, commonly known as statins, is associated with improved response to neoadjuvant CRT in rectal cancer patients. The purpose of this study was to study the effects of simvastatin on colorectal cancer cells and explore its potential as a radiation-sensitizer in vitro. Four colorectal cancer cell lines (SW480, DLD1, SW837, and HRT18) were used to test the effects of simvastatin alone, radiation alone, and combination therapy. Outcome measures included ATP-based cell viability, colony formation, and protein (immunoblot) assays. The combination of radiation and simvastatin inhibited colony formation and cell viability of all four CRC lines, to a greater degree than either treatment alone (p &lt; 0.01). In addition, the effects of simvastatin in this combination therapy were dose dependent, with increased concentrations resulting in more potentiated inhibitory effects. The radiosensitizing effects of simvastatin on cell viability were negated by the presence of exogenous GGPP in the media. On protein analyses of irradiated cells, simvastatin treatment inhibited phosphorylation of ERK1/2, in a dose-dependent manner, while the total levels of ERK1/2 remained stable. In addition, the combined treatment resulted in increased levels of cleaved caspase 3, indicating greater apoptotic activity in the cells treated with radiation and simvastatin together. Treatment with simvastatin hindered CRC cell viability and enhanced radiation sensitivity in vitro. These effects were tied to the depletion of GGPP and the decreased phosphorylation of ERK1/2, suggesting a prominent role for the EGFR-RAS-ERK1/2 pathway, through which statin enhances radiation sensitivity."	"Management of locally advanced and metastatic colorectal cancer (CRC) requires the expertise of multiple specialists. Multidisciplinary clinics (MDCs) are a working model designed to facilitate delivery of coordinated care. The present study evaluated the effects of MDC on the time to treatment (TTT). Patients with CRC or locally advanced anal cancer who were evaluated at a single-institution MDC from January 2014 to October 2015 were identified from an institutional registry. The clinical characteristics and timelines for various aspects of treatment were retrospectively reviewed and recorded. A control population of patients not evaluated at the MDC was matched 1:2 by disease and the number of treating specialties. The primary endpoints were the TTT from diagnosis and the TTT from the first consultation. A total of 105 patients were included: 35 were evaluated at the MDC and 70 were controls. The MDC patients experienced a 7.8-day shorter TTT from the first consultation (21.5 vs. 29.3 days; P = .01). The difference was greater for patients visiting 3 departments (21.3 vs. 30.6 days; P &lt; .001). Patients requiring neoadjuvant chemoradiation accounted for most of the decreased interval compared with those requiring surgery alone as their first treatment. The proportion of patients initiating treatment within 3 weeks from the first consultation was greater for those seen in the MDC (57.1% vs. 30% for controls; P = .01). Implementation of a multidisciplinary CRC clinic yielded decreased intervals from the first consultation to treatment in our institution. Focusing efforts to increase MDC usage will improve treatment efficiency and improve patient access."	NA
+"Kallianpur, Asha"	"Genomic Medicine Institute"	30209774	29968489	29216383	28447399	28427421	26690344	26129753	25144566	24996618	15834437	"Dysregulated iron transport and a compromised blood-brain barrier are implicated in HIV-associated neurocognitive disorders (HAND). We quantified the levels of proteins involved in iron transport and/or angiogenesis-ceruloplasmin, haptoglobin, and vascular endothelial growth factor (VEGF)-as well as biomarkers of neuroinflammation, in cerebrospinal fluid (CSF) from 405 individuals with HIV infection and comprehensive neuropsychiatric assessments. Associations with HAND [defined by a Global Deficit Score (GDS) ≥ 0.5, GDS as a continuous measure (cGDS), or by Frascati criteria] were evaluated for the highest versus lowest tertile of each biomarker, adjusting for potential confounders. Higher CSF VEGF was associated with GDS-defined impairment [odds ratio (OR) 2.17, p = 0.006] and cGDS in unadjusted analyses and remained associated with GDS impairment after adjustment (p = 0.018). GDS impairment was also associated with higher CSF ceruloplasmin (p = 0.047) and with higher ceruloplasmin and haptoglobin in persons with minimal comorbidities (ORs 2.37 and 2.13, respectively; both p = 0.043). In persons with minimal comorbidities, higher ceruloplasmin and haptoglobin were associated with HAND by Frascati criteria (both p &lt; 0.05), and higher ceruloplasmin predicted worse impairment (higher cGDS values, p &lt; 0.01). In the subgroup with undetectable viral load and minimal comorbidity, CSF ceruloplasmin and haptoglobin were strongly associated with GDS impairment (ORs 5.57 and 2.96, respectively; both p &lt; 0.01) and HAND (both p &lt; 0.01). Concurrently measured CSF IL-6 and TNF-α were only weakly correlated to these three biomarkers. Higher CSF ceruloplasmin, haptoglobin, and VEGF are associated with a significantly greater likelihood of HAND, suggesting that interventions aimed at disordered iron transport and angiogenesis may be beneficial in this disorder."	"Some HIV-associated complications involve mitochondrial dysfunction and may be less common in individuals with iron-loading HFE (hemochromatosis gene) variants. We evaluated HFE 845A and 187G alleles in relation to mitochondrial DNA (mtDNA) levels in peripheral blood mononuclear cells from 85 individuals with HIV infection on uninterrupted antiretroviral therapy (ART) for 15 or more consecutive weeks. Carriers of HFE gene variants (N = 24) had significantly higher mtDNA levels than noncarriers (N = 61), after adjusting for age, race, sex, and type of ART [adjusted β-coefficient 297, p-value &lt; .001 for at least one HFE variant], but mtDNA declined among all individuals on study during 48 weeks on ART. Increased cellular mtDNA content may represent a compensatory response to mitochondrial stress that is influenced by iron-loading HFE variants."	"Postdiarrheal hemolytic-uremic syndrome (D+HUS) following Shiga toxin-producing Escherichia coli (STEC) infection is a serious condition lacking specific treatment. Host immune dysregulation and genetic susceptibility to complement hyperactivation are implicated in non-STEC-related HUS. However, genetic susceptibility to D+HUS remains largely uncharacterized. Patients with culture-confirmed STEC diarrhea, identified through the Centers for Disease Control and Prevention FoodNet surveillance system (2007-2012), were serotyped and classified by laboratory and/or clinical criteria as having suspected, probable, or confirmed D+HUS or as controls and underwent genotyping at 200 loci linked to nondiarrheal HUS or similar pathologies. Genetic associations with D+HUS were explored by multivariable regression, with adjustment for known risk factors. Of 641 enrollees with STEC O157:H7, 80 had suspected D+HUS (41 with probable and 32 with confirmed D+HUS). Twelve genes related to cytokine signaling, complement pathways, platelet function, pathogen recognition, iron transport, and endothelial function were associated with D+HUS in multivariable-adjusted analyses (P ≤ .05). Of 12 significant single-nucleotide polymorphisms (SNPs), 5 were associated with all levels of D+HUS (intergenic SNP rs10874639, TFRC rs3804141, EDN1 rs5370, GP1BA rs121908064, and B2M rs16966334), and 7 SNPs (6 non-complement related) were associated with confirmed D+HUS (all P &lt; .05). Polymorphisms in many non-complement-related genes may contribute to D+HUS susceptibility. These results require replication, but they suggest novel therapeutic targets in patients with D+HUS."	"HIV-associated neurocognitive disorder (HAND) often complicates HIV infection despite combination antiretroviral therapy (ART) and may be influenced by host genomics. We performed a genome-wide association study (GWAS) of HAND in 1,050 CNS HIV Anti-Retroviral Therapy Effects Research (CHARTER) Study participants. All participants underwent standardized, comprehensive neurocognitive, and neuromedical assessments to determine if they had cognitive impairment as assessed by the Global Deficit Score (GDS), and individuals with comorbidities that could confound diagnosis of HAND were excluded. Neurocognitive outcomes included GDS-defined neurocognitive impairment (NCI; binary GDS, 366 cases with GDS ≥ 0.5 and 684 controls with GDS &lt; 0.5, and GDS as a continuous variable) and Frascati HAND definitions that incorporate assessment of functional impairment by self-report and performance-based criteria. Genotype data were obtained using the Affymetrix Human SNP Array 6.0 platform. Multivariable logistic or linear regression-based association tests were performed for GDS-defined NCI and HAND. GWAS results did not reveal SNPs meeting the genome-wide significance threshold (5.0 × 10<sup>-8</sup> ) for GDS-defined NCI or HAND. For binary GDS, the most significant SNPs were rs6542826 (P = 8.1 × 10<sup>-7</sup> ) and rs11681615 (1.2 × 10<sup>-6</sup> ), both located on chromosome 2 in SH3RF3. The most significant SNP for continuous GDS was rs11157436 (P = 1.3 × 10<sup>-7</sup> ) on chromosome 14 in the T-cell-receptor alpha locus; three other SNPs in this gene were also associated with binary GDS (P ≤ 2.9 × 10<sup>-6</sup> ). This GWAS, conducted among ART-era participants from a single cohort with robust neurological phenotyping, suggests roles for several biologically plausible loci in HAND that deserve further exploration. © 2017 Wiley Periodicals, Inc."	"HIV-associated neurocognitive disorder (HAND) remains common, despite antiretroviral therapy (ART). HIV dysregulates iron metabolism, but cerebrospinal fluid (CSF) levels of iron and iron-transport proteins in HIV-infected (HIV+) persons are largely unknown. The objectives of this study were to characterize CSF iron-related biomarkers in HIV+ adults and explore their relationships to known predictors of HAND. We quantified total iron, transferrin and heavy-chain (H)-ferritin by immunoassay in CSF sampled by lumbar puncture in 403 HIV+ participants in a multi-center, observational study and evaluated biomarker associations with demographic and HIV-related correlates of HAND [e.g., age, sex, self-reported race/ethnicity, ART, and detectable plasma virus and CSF viral load (VL)] by multivariable regression. In a subset (N = 110) with existing CSF: serum albumin (QAlb) measurements, QAlb and comorbidity severity were also included as covariates to account for variability in the blood-CSF-barrier. Among 403 individuals (median age 43 years, 19% women, 56% non-Whites, median nadir CD4+ T cell count 180 cells/µL, 46% with undetectable plasma virus), men had 25% higher CSF transferrin (median 18.1 vs. 14.5 µg/mL), and 71% higher H-ferritin (median 2.9 vs. 1.7 ng/mL) than women (both p-values ≤0.01). CSF iron was 41% higher in self-reported Hispanics and 27% higher in (non-Hispanic) Whites than in (non-Hispanic) Blacks (median 5.2 and 4.7 µg/dL in Hispanics and Whites, respectively, vs. 3.7 µg/dL in Blacks, both p ≤ 0.01); these findings persisted after adjustment for age, sex, and HIV-specific factors. Median H-ferritin was 25% higher (p &lt; 0.05), and transferrin 14% higher (p = 0.06), in Whites than Blacks. Transferrin and H-ferritin were 33 and 50% higher, respectively, in older (age &gt; 50 years) than in younger persons (age ≤ 35 years; both p &lt; 0.01), but these findings lost statistical significance in subset analyses that adjusted for QAlb and comorbidity. After these additional adjustments, associations were observed for CSF iron and transferrin with race/ethnicity as well as CSF VL, for transferrin with sex and ART, and for H-ferritin with plasma virus detectability and significant comorbidity (all p &lt; 0.05). CSF iron biomarkers are associated with demographic factors, ART, and CSF VL in HIV+ adults. Future studies should investigate a role for CNS iron dysregulation, to which an altered blood-CSF barrier may contribute, in HAND."	"Anemia has been linked to adverse human immunodeficiency virus (HIV) outcomes, including dementia, in the era before highly active antiretroviral therapy (HAART). Milder forms of HIV-associated neurocognitive disorder (HAND) remain common in HIV-infected persons, despite HAART, but whether anemia predicts HAND in the HAART era is unknown. We evaluated time-dependent associations of anemia and cross-sectional associations of red blood cell indices with neurocognitive impairment in a multicenter, HAART-era HIV cohort study (N = 1261), adjusting for potential confounders, including age, nadir CD4(+) T-cell count, zidovudine use, and comorbid conditions. Subjects underwent comprehensive neuropsychiatric and neuromedical assessments. HAND, defined according to standardized criteria, occurred in 595 subjects (47%) at entry. Mean corpuscular volume and mean corpuscular hemoglobin were positively associated with the global deficit score, a continuous measure of neurocognitive impairment (both P &lt; .01), as well as with all HAND, milder forms of HAND, and HIV-associated dementia in multivariable analyses (all P &lt; .05). Anemia independently predicted development of HAND during a median follow-up of 72 months (adjusted hazard ratio, 1.55; P &lt; .01). Anemia and red blood cell indices predict HAND in the HAART era and may contribute to risk assessment. Future studies should address whether treating anemia may help to prevent HAND or improve cognitive function in HIV-infected persons."	"Neurocognitive impairment (NCI) remains an important complication in persons infected with human immunodeficiency virus (HIV). Ancestry-related mitochondrial DNA (mtDNA) haplogroups have been associated with outcomes of HIV infection and combination antiretroviral therapy (CART), and with neurodegenerative diseases. We hypothesize that mtDNA haplogroups are associated with NCI in HIV-infected adults and performed a genetic association study in the CNS HIV Antiretroviral Therapy Effects Research (CHARTER) cohort. CHARTER is an observational study of ambulatory HIV-infected adults. Haplogroups were assigned using mtDNA sequence, and principal components were derived from ancestry-informative nuclear DNA variants. Outcomes were cross-sectional global deficit score (GDS) as a continuous measure, GDS impairment (GDS ≥ 0.50), and HIV-associated neurocognitive disorder (HAND) using international criteria. Multivariable models were adjusted for comorbidity status (incidental vs contributing), current CART, plasma HIV RNA, reading ability, and CD4 cell nadir. Haplogroups were available from 1027 persons; median age 43 years, median CD4 nadir 178 cells/mm(3), 72% on CART, and 46% with HAND. The 102 (9.9%) persons of genetically determined admixed Hispanic ancestry had more impairment by GDS or HAND than persons of European or African ancestry (P &lt; .001 for all). In multivariate models including persons of admixed Hispanic ancestry, those with haplogroup B had lower GDS (β = -0.34; P = .008) and less GDS impairment (odds ratio = 0.16; 95% confidence interval, .04, .63; P = .009) than other haplogroups. There were no significant haplogroup associations among persons of European or African ancestry. In these mostly CART-treated persons, mtDNA haplogroup B was associated with less NCI among persons of genetically determined Hispanic ancestry. mtDNA variation may represent an ancestry-specific factor influencing NCI in HIV-infected persons."	"HIV sensory neuropathy and distal neuropathic pain (DNP) are common, disabling complications associated with combination antiretroviral therapy (cART). We previously associated iron-regulatory genetic polymorphisms with a reduced risk of HIV sensory neuropathy during more neurotoxic types of cART. We here evaluated the impact of polymorphisms in 19 iron-regulatory genes on DNP in 560 HIV-infected subjects from a prospective, observational study, who underwent neurological examinations to ascertain peripheral neuropathy and structured interviews to ascertain DNP. Genotype-DNP associations were explored by logistic regression and permutation-based analytical methods. Among 559 evaluable subjects, 331 (59%) developed HIV-SN, and 168 (30%) reported DNP. Fifteen polymorphisms in 8 genes (p&lt;0.05) and 5 variants in 4 genes (p&lt;0.01) were nominally associated with DNP: polymorphisms in TF, TFRC, BMP6, ACO1, SLC11A2, and FXN conferred reduced risk (adjusted odds ratios [ORs] ranging from 0.2 to 0.7, all p&lt;0.05); other variants in TF, CP, ACO1, BMP6, and B2M conferred increased risk (ORs ranging from 1.3 to 3.1, all p&lt;0.05). Risks associated with some variants were statistically significant either in black or white subgroups but were consistent in direction. ACO1 rs2026739 remained significantly associated with DNP in whites (permutation p&lt;0.0001) after correction for multiple tests. Several of the same iron-regulatory-gene polymorphisms, including ACO1 rs2026739, were also associated with severity of DNP (all p&lt;0.05). Common polymorphisms in iron-management genes are associated with DNP and with DNP severity in HIV-infected persons receiving cART. Consistent risk estimates across population subgroups and persistence of the ACO1 rs2026739 association after adjustment for multiple testing suggest that genetic variation in iron-regulation and transport modulates susceptibility to DNP. "	"The success of combination antiretroviral therapy (cART) in transforming the lives of HIV-infected individuals with access to these drugs is tempered by the increasing threat of HIV-associated neurocognitive disorders (HAND) to their overall health and quality of life. Intensive investigations over the past two decades have underscored the role of host immune responses, inflammation, and monocyte-derived macrophages in HAND, but the precise pathogenic mechanisms underlying HAND remain only partially delineated. Complicating research efforts and therapeutic drug development are the sheer complexity of HAND phenotypes, diagnostic imprecision, and the growing intersection of chronic immune activation with aging-related comorbidities. Yet, genetic studies still offer a powerful means of advancing individualized care for HIV-infected individuals at risk. There is an urgent need for 1) longitudinal studies using consistent phenotypic definitions of HAND in HIV-infected subpopulations at very high risk of being adversely impacted, such as children, 2) tissue studies that correlate neuropathological changes in multiple brain regions with genomic markers in affected individuals and with changes at the RNA, epigenomic, and/or protein levels, and 3) genetic association studies using more sensitive subphenotypes of HAND. The NIH Brain Initiative and Human Connectome Project, coupled with rapidly evolving systems biology and machine learning approaches for analyzing high-throughput genetic, transcriptomic and epigenetic data, hold promise for identifying actionable biological processes and gene networks that underlie HAND. This review summarizes the current state of understanding of host genetic factors predisposing to HAND in light of past challenges and suggests some priorities for future research to advance the understanding and clinical management of HAND in the cART era. "	"Hepatic veno-occlusive disease (HVOD) is a serious complication of hematopoietic stem cell transplantation (HSCT). Since the liver is a major site of iron deposition in HFE-associated hemochromatosis, and iron has oxidative toxicity, we hypothesized that HFE genotype might influence the risk of HVOD after myeloablative HSCT. We determined HFE genotypes in 166 HSCT recipients who were evaluated prospectively for HVOD. We also tested whether a common variant of the rate-limiting urea cycle enzyme, carbamyl-phosphate synthetase (CPS), previously observed to protect against HVOD in this cohort, modified the effect of HFE genotype. Risk of HVOD was significantly higher in carriers of at least one C282Y allele (RR=3.7, 95% CI 1.2-12.1) and increased progressively with C282Y allelic dose (RR=1.7, 95% CI 0.4-6.8 in heterozygotes; RR=8.6, 95% CI 1.5-48.5 in homozygotes). The CPS A allele, which encodes a more efficient urea cycle enzyme, reduced the risk of HVOD associated with HFE C282Y. We conclude that HFE C282Y is a risk factor for HVOD and that CPS polymorphisms may counteract its adverse effects. Knowledge of these genotypes and monitoring of iron stores may facilitate risk-stratification and testing of strategies to prevent HVOD, such as iron chelation and pharmacologic support of the urea cycle."
+"Kang, Zizhen"	"Inflammation and Immunity"	29352002	28821568	23995070	22699909	22608496	21272781	20303295	30670047	30372424	28990926	"Dysregulation of the immune barrier function of the intestinal epithelium can often result in dysbiosis. In this study we report a novel role of intestinal epithelial cell (IEC)-derived liver kinase B1 (LKB1) in suppressing colitogenic microbiota. IEC-specific deletion of LKB1 (LKB1<sup>ΔIEC</sup>) resulted in an increased susceptibility to dextran sodium sulfate (DSS)-induced colitis and a definitive shift in the composition of the microbial population in the mouse intestine. Importantly, transfer of the microbiota from LKB1<sup>ΔIEC</sup> mice was sufficient to confer increased susceptibility to DSS-induced colitis in wild-type recipient mice. Collectively, the data indicate that LKB1 deficiency in intestinal epithelial cells nurtures the outgrowth of colitogenic bacteria in the commensal community. In addition, LKB1 deficiency in the intestinal epithelium reduced the production of IL-18 and antimicrobial peptides in the colon. Administration of exogenous IL-18 restored the expression of antimicrobial peptides, corrected the outgrowth of several bacterial genera, and rescued the LKB1<sup>ΔIEC</sup> mice from increased sensitivity to DSS challenge. Taken together, our study reveals an important function of LKB1 in IECs for suppressing colitogenic microbiota by IL-18 expression."	"Although genetic polymorphisms in the LRRK2 gene are associated with a variety of diseases, the physiological function of LRRK2 remains poorly understood. In this study, we report a crucial role for LRRK2 in the activation of the NLRC4 inflammasome during host defense against Salmonella enteric serovar Typhimurium infection. LRRK2 deficiency reduced caspase-1 activation and IL-1β secretion in response to NLRC4 inflammasome activators in macrophages. Lrrk2<sup>-/-</sup> mice exhibited impaired clearance of pathogens after acute S. Typhimurium infection. Mechanistically, LRRK2 formed a complex with NLRC4 in the macrophages, and the formation of the LRRK2-NLRC4 complex led to the phosphorylation of NLRC4 at Ser533. Importantly, the kinase activity of LRRK2 is required for optimal NLRC4 inflammasome activation. Collectively, our study reveals an important role for LRRK2 in the host defense by promoting NLRC4 inflammasome activation."	"Interleukin 17 (IL-17) is a signature cytokine of Th17 cells. We previously reported that deletion of NF-κB activator 1 (Act1), the key transducer of IL-17 receptor signaling, from the neuroectodermal lineage in mice (neurons, oligodendrocytes and astrocytes) results in attenuated severity of experimental autoimmune encephalomyelitis (EAE). Here we examined the cellular basis of this observation. EAE disease course was unaffected by deletion of Act1 in neurons or mature oligodendrocytes, and Act1 deletion in astrocytes only modestly affected disease course. Deletion of Act1 in NG2(+) glia resulted in markedly reduced EAE severity. Furthermore, IL-17 induced characteristic inflammatory mediator expression in NG2(+) glial cells. IL-17 also exhibited strong inhibitory effects on the maturation of oligodendrocyte lineage cells in vitro and reduced their survival. These data identify NG2(+) glia as the major CNS cellular target of IL-17 in EAE. The sensitivity of oligodendrocyte lineage cells to IL-17-mediated toxicity further suggests a direct link between inflammation and neurodegeneration in multiple sclerosis. "	"Cuprizone inhibits mitochondrial function and induces demyelination in the corpus callosum, which resembles pattern III lesions in multiple sclerosis patients. However, the molecular and cellular mechanism by which cuprizone induces demyelination remains unclear. Interleukin-17 (IL-17) secreted by T helper 17 cells and γδT cells are essential in the development of experimental autoimmune encephalomyelitis. In this study, we examined the importance of IL-17 signaling in cuprizone-induced demyelination. We found that mice deficient in IL-17A, IL-17 receptor C (IL-17RC), and adaptor protein Act1 (of IL-17R) all had reduced demyelination accompanied by lessened microglial and polydendrocyte cellular reactivity compared with that in wild-type mice in response to cuprizone feeding, demonstrating the essential role of IL-17-induced Act1-mediated signaling in cuprizone-induced demyelination. Importantly, specific deletion of Act1 in astrocytes reduced the severity of tissue injury in this model, indicating the critical role of CNS resident cells in the pathogenesis of cuprizone-induced demyelination. In cuprizone-fed mice, IL-17 was produced by CNS CD3(+) T cells, suggesting a source of IL-17 in CNS upon cuprizone treatment."	"Interleukin-25 (IL-25 or IL-17E), a member of the structurally related IL-17 family, functions as an important mediator of T helper 2 cell-type (type 2) responses. We examined the cell type-specific role of IL-25-induced Act1-mediated signaling in protective immunity against helminth infection. Targeted Act1 deficiency in epithelial cells resulted in a marked delay in worm expulsion and abolished the expansion of the Lin(-)c-Kit(+) innate cell population in the mesenteric lymph node, lung, and liver. Th2 cell-inducing cytokine (IL-25 and IL-33) expression were reduced in the intestinal epithelial cells from the infected and IL-25-injected epithelial-specific Act1-deficient mice. Adoptive transfer of Lin(-)c-Kit(+) cells or combined injection of IL-25 and IL-33 restored the type 2 responses in these mice. Taken together, these results suggest that epithelial-specific Act1 mediates the expansion of the Lin(-)c-Kit(+) innate cell population through the positive-feedback loop of IL-25, initiating the type 2 immunity against helminth infection."	"In this issue of Immunity, Shaw et al. (2011) report that the NOD-RICK signaling axis is required for the activation of dendritic cells infiltrating the central nervous system, leading to reactivation of antigen-specific T cells and autoimmune inflammation."	"Interleukin-17 (IL-17) secreted by T helper 17 (Th17) cells is essential in the development of experimental autoimmune encephalomyelitis (EAE). However, it remains unclear how IL-17-mediated signaling in different cellular compartments participates in the central nervous system (CNS) inflammatory process. We examined CNS inflammation in mice with specific deletion of Act1, a critical component required for IL-17 signaling, in endothelial cells, macrophages and microglia, and neuroectoderm (neurons, astrocytes, and oligodendrocytes). In Act1-deficient mice, Th17 cells showed normal infiltration into the CNS but failed to recruit lymphocytes, neutrophils, and macrophages. Act1 deficiency in endothelial cells or in macrophages and microglia did not substantially impact the development of EAE. However, targeted Act1 deficiency in neuroectoderm-derived CNS-resident cells resulted in markedly reduced severity in EAE. Specifically, Act1-deficient astrocytes showed impaired IL-17-mediated inflammatory gene induction. Thus, astroctyes are critical in IL-17-Act1-mediated leukocyte recruitment during autoimmune-induced inflammation of the CNS."	"Systemic lupus erythematosus (SLE) is a prototypic autoimmune disease characterized by the presence of pathogenic autoantibodies associated with polyclonal B cell hyperreactivity. Previous study reported that autophagy-related gene Leucine-rich repeat kinase 2 (LRRK2) was likely a susceptible gene for SLE. However, the pathogenic function of LRRK2 in SLE is undefined. Using quantitative PCR, we compared the expression levels of LRRK2 in B cells between SLE patients and healthy controls. The expression levels of LRRK2 in in vitro induced CD19<sup>hi</sup> B cells and naïve B cells were compared as well based on RNA-seq assay. A pristane-induced lupus-like mouse model was used to explore the effects of LRRK2 on the development of SLE. IgG level, B cell subsets in the spleens and bone marrows and pathological features in the kidneys were compared between wildtype (WT) and Lrrk2<sup>-/-</sup> littermates. It was obvious that LRRK2 expression was dramatically up-regulated in primary B cells from SLE patients compared to those from healthy controls, as well as in activated CD19<sup>hi</sup> B cells. More significantly, LRRK2 expression in B cells was positively correlated with system lupus erythematosus disease activity index (SLEDAI), an indicator for disease severity, and serum IgG levels in SLE patients. Negative correlations were observed between LRRK2 expression and serum C3 or C4 levels, two clinical features associated with SLE-related nephritis. LRRK2 deficiency reduced the death rate of pristane treated mice. Decreased levels of total IgG and autoantibody were detected in the serum with less deposition of immune complexes and attenuated pathological symptoms in the kidneys of Lrrk2<sup>-/-</sup> mice. Consistent with the reduction in IgG production, the percentages of germinal center B cells and plasma cells decreased significantly as well with LRRK2 deficiency. Our study demonstrates that LRRK2 expression is upregulated in B cells from SLE patients with strong correlations to disease severity. LRRK2 deficiency largely attenuates the pathogenic progress of lupus-like features in pristane-induced mice. This is probably achieved through affecting B cell terminal differentiation and subsequent immunoglobulin production."	"NLRP3 inflammasome plays a critical spatiotemporal role in the pathogenesis of experimental autoimmune encephalomyelitis (EAE). This study reports a mechanistic insight into noncanonical NLRP3 inflammasome activation in microglia for the effector stage of EAE. Microglia-specific deficiency of ASC (apoptosis-associated speck-like protein containing a C-terminal caspase-activation and recruitment [CARD] domain) attenuated T cell expansion and neutrophil recruitment during EAE pathogenesis. Mechanistically, TLR stimulation led to IRAKM-caspase-8-ASC complex formation, resulting in the activation of caspase-8 and IL-1β release in microglia. Noncanonical inflammasome-derived IL-1β produced by microglia in the CNS helped to expand the microglia population in an autocrine manner and amplified the production of inflammatory cytokines/chemokines. Furthermore, active caspase-8 was markedly increased in the microglia in the brain tissue from patients with multiple sclerosis. Taken together, our study suggests that microglia-derived IL-1β via noncanonical caspase-8-dependent inflammasome is necessary for microglia to exert their pathogenic role during CNS inflammation."	"Expression of inflammatory genes is determined in part by post-transcriptional regulation of mRNA metabolism but how stimulus- and transcript-dependent nuclear export influence is poorly understood. Here, we report a novel pathway in which LPS/TLR4 engagement promotes nuclear localization of IRAK2 to facilitate nuclear export of a specific subset of inflammation-related mRNAs for translation in murine macrophages. IRAK2 kinase activity is required for LPS-induced RanBP2-mediated IRAK2 sumoylation and subsequent nuclear translocation. Array analysis showed that an SRSF1-binding motif is enriched in mRNAs dependent on IRAK2 for nuclear export. Nuclear IRAK2 phosphorylates SRSF1 to reduce its binding to target mRNAs, which promotes the RNA binding of the nuclear export adaptor ALYREF and nuclear export receptor Nxf1 loading for the export of the mRNAs. In summary, LPS activates a nuclear function of IRAK2 that facilitates the assembly of nuclear export machinery to export selected inflammatory mRNAs to the cytoplasm for translation."
+"Karnik, Sadashiva"	"Cardiovascular and Metabolic Sciences"	30616822	30608150	29287092	29195045	28194766	27512731	26484771	26460884	26315714	25068582	"Maintenance of normal blood pressure under conditions of drug treatment is a measure of system-wide neuro-hormonal controls and electrolyte/fluid volume homeostasis in the body. With increased interest in designing and evaluating novel drugs that may functionally select or allosterically modulate specific GPCR signaling pathways, techniques that allow us to measure acute and long-term effects on blood pressure are very important. Therefore, this chapter describes techniques to measure acute and long-term impact of novel GPCR ligands on blood pressure regulation. We will use the angiotensin type 1 receptor, a powerful blood pressure regulating GPCR, in detailing the methodology. Normal blood pressure maintenance depends upon dynamic modulation of angiotensin type 1 receptor activity by the hormone peptide angiotensin II. Chronic activation of angiotensin type 1 receptor creates hypertension and related cardiovascular disease states which are treated with angiotensin type 1 receptor blockers (ARBs). Thus, a prototype for evaluation of blood pressure control under experimental evaluation of novel drugs."	"We present a succession of structural changes involved in hormone peptide activation of a prototypical GPCR. Microsecond molecular dynamics simulation generated conformational ensembles reveal propagation of structural changes through key &quot;microswitches&quot; within human AT1R bound to native hormone. The endocrine octa-peptide angiotensin II (AngII) activates AT1R signaling in our bodies which maintains physiological blood pressure, electrolyte balance, and cardiovascular homeostasis. Excessive AT1R activation is associated with pathogenesis of hypertension and cardiovascular diseases which are treated by sartan drugs. The mechanism of AT1R inhibition by sartans has been elucidated by 2.8 Å X-ray structures, mutagenesis, and computational analyses. Yet, the mechanism of AT1R activation by AngII is unclear. The current study delineates an activation scheme initiated by AngII binding. A van der Waals &quot;grasp&quot; interaction between Phe8<sup>AngII</sup> with Ile288<sup>7.39</sup> in AT1R induced mechanical strain pulling Tyr292<sup>7.43</sup> and breakage of critical interhelical H-bonds, first between Tyr292<sup>7.43</sup> and Val108<sup>3.32</sup> and second between Asn111<sup>3.35</sup> and Asn295<sup>7.46</sup>. Subsequently changes are observed in conserved microswitches DRY<sup>TM3</sup>, Yx7K(R)<sup>TM5</sup>, CWxP<sup>TM6</sup>, and NPxxY<sup>TM7</sup> in AT1R. Activating the microswitches in the intracellular region of AT1R may trigger formation of the G-protein binding pocket as well as exposure of helix-8 to cytoplasm. Thus, the active-like conformation of AT1R is initiated by the van der Waals interaction of Phe8<sup>AngII</sup> with Ile288<sup>7.39</sup>, followed by systematic reorganization of critical interhelical H-bonds and activation of microswitches."	"Perspectives on whether the functions of MAS, a G protein-coupled receptor, are beneficial or deleterious in the heart remain controversial. MAS gene knockout reduces coronary vasodilatation leading to ischemic injury. G protein signaling activated by MAS has been implicated in progression of adaptive cardiac hypertrophy to heart failure and fibrosis. In the present study, we observed increased expression of MAS, connective tissue growth factor (CTGF) and collagen genes in failing (HF) human heart samples when compared to non-failing (NF). Expression levels of MAS are correlated with CTGF in HF and NF leading to our hypothesis that MAS controls CTGF production and the ensuing expression of collagen genes. In support of this hypothesis we show that the non-peptide MAS agonist AR234960 increases both mRNA and protein levels of CTGF via ERK1/2 signaling in HEK293-MAS cells and adult human cardiac fibroblasts. MAS-mediated CTGF expression can be specifically blocked by MAS inverse agonist AR244555 and also by MEK1 inhibition. Expression of CTGF gene was essential for MAS-mediated up-regulation of different collagen subtype genes in HEK293-MAS cells and human cardiac fibroblasts. Knockdown of CTGF by RNAi disrupted collagen gene regulation by the MAS-agonist. Our data indicate that CTGF mediates the profibrotic effects of MAS in cardiac fibroblasts. Blocking MAS-CTGF-collagen pathway should be considered for pharmacological intervention for HF."	"Crystal structures of the human angiotensin II type 1 receptor (AT1R) complex with the antihypertensive agent ZD7155 (PDB id: 4YAY ) and the blood pressure medication Benicar (PDB id: 4ZUD ) showed that binding poses of both antagonists are similar. This finding implies that clinically used angiotensin receptor blocking (ARB) drugs may interact in a similar fashion. However, clinically observed differences in pharmacological and therapeutic efficacies of ARBs lead to the question of whether the dynamic interactions of AT1R with ARBs vary. To address this, we performed induced-fit docking (IFD) of eight clinically used ARBs to AT1R followed by 200 ns molecular dynamic (MD) simulation. The experimental Ki values for ARBs correlated remarkably well with calculated free energy with R<sup>2</sup> = 0.95 and 0.70 for AT1R-ARB models generated respectively by IFD and MD simulation. The eight ARB-AT1R complexes share a common set of binding residues. In addition, MD simulation results validated by mutagenesis data discovered distinctive spatiotemporal interactions that display unique bonding between an individual ARB and AT1R. These findings provide a reasonably broader picture reconciling the structure-based observations with clinical studies reporting efficacy variations for ARBs. The unique differences unraveled for ARBs in this study will be useful for structure-based design of the next generation of more potent and selective ARBs."	"Angiotensins are a group of hormonal peptides and include angiotensin II and angiotensin 1-7 produced by the renin angiotensin system. The biology, pharmacology and biochemistry of the receptors for angiotensins were extensively reviewed recently. In the review, the receptor nomenclature committee was not emphatic on designating MAS1 as the angiotensin 1-7 receptor on the basis of lack of classical G protein signalling and desensitization in response to angiotensin 1-7, as well as a lack of consensus on confirmatory ligand pharmacological analyses. A review of recent publications (2013-2016) on the rapidly progressing research on angiotensin 1-7 revealed that MAS1 and two additional receptors can function as 'angiotensin 1-7 receptors', and this deserves further consideration. In this review we have summarized the information on angiotensin 1-7 receptors and their crosstalk with classical angiotensin II receptors in the context of the functions of the renin angiotensin system. It was concluded that the receptors for angiotensin II and angiotensin 1-7 make up a sophisticated cross-regulated signalling network that modulates the endogenous protective and pathogenic facets of the renin angiotensin system."	"Angiotensinogen - a serpin family protein predominantly produced by the liver is systematically processed by proteases of the Renin Angiotensin system (RAS) generating hormone peptides. Specific cell surface receptors for at least three distinct angiotensin peptides produce distinct cellular signals that regulate system-wide physiological response to RAS. Two well characterized receptors are angiotensin type 1 receptor (AT1 receptor) and type 2 receptor (AT2 receptor). They respond to the octapeptide hormone angiotensin II. The oncogene product MAS is a putative receptor for Ang (1-7). While these are G-protein coupled receptors (GPCRs), the in vivo angiotensin IV binding sites may be type 2 transmembrane proteins. These four receptors together regulate cardiovascular, hemodynamic, neurological, renal, and endothelial functions; as well as cell proliferation, survival, matrix-cell interactions and inflammation. Angiotensin receptors are important therapeutic targets for several diseases. Thus, researchers and pharmaceutical companies are focusing on drugs targeting AT1 receptor than AT2 receptor, MAS and AngIV binding sites. AT1 receptor blockers are the cornerstone of current treatment for hypertension, heart failure, renal failure and many types of vascular diseases including atherosclerosis, aortic aneurism and Marfan syndrome."	"Propagation of signals from G protein-coupled receptors (GPCRs) in cells is primarily mediated by protein-protein interactions. MAS is a GPCR that was initially discovered as an oncogene and is now known to play an important role in cardiovascular physiology. Current literature suggests that MAS interacts with common heterotrimeric G-proteins, but MAS interaction with proteins which might mediate G protein-independent or atypical signaling is unknown. In this study we hypothesized that MAS C-terminal tail (Ct) is a major determinant of receptor-scaffold protein interactions mediating MAS signaling. Mass-spectrometry based proteomic analysis was used to comprehensively identify the proteins that interact with MAS Ct comprising the PDZ-binding motif (PDZ-BM). We identified both PDZ and non-PDZ proteins from human embryonic kidney cell line, mouse atrial cardiomyocyte cell line and human heart tissue to interact specifically with MAS Ct. For the first time our study provides a panel of PDZ and other proteins that potentially interact with MAS with high significance. A 'cardiac-specific finger print' of MAS interacting PDZ proteins was identified which includes DLG1, MAGI1 and SNTA. Cell based experiments with wild-type and mutant MAS lacking the PDZ-BM validated MAS interaction with PDZ proteins DLG1 and TJP2. Bioinformatics analysis suggested well-known multi-protein scaffold complexes involved in nitric oxide signaling (NOS), cell-cell signaling of neuromuscular junctions, synapses and epithelial cells. Majority of these protein hits were predicted to be part of disease categories comprising cancers and malignant tumors. We propose a 'MAS-signalosome' model to stimulate further research in understanding the molecular mechanism of MAS function. Identifying hierarchy of interactions of 'signalosome' components with MAS will be a necessary step in future to fully understand the physiological and pathological functions of this enigmatic receptor. "	"Although interaction of a few G protein-coupled receptors (GPCRs) with Filamin A, a key actin cross-linking and biomechanical signal transducer protein, has been observed, a comprehensive structure-function analysis of this interaction is lacking. Through a systematic sequence-based analysis, we found that a conserved filamin binding motif is present in the cytoplasmic domains of &gt;20% of the 824 GPCRs encoded in the human genome. Direct high-affinity interaction of filamin binding motif peptides of select GPCRs with the Ig domain of Filamin A was confirmed by nuclear magnetic resonance spectroscopy and isothermal titration calorimetric experiments. Engagement of the filamin binding motif with the Filamin A Ig domain induced the phosphorylation of filamin by protein kinase A in vitro. In transfected cells, agonist activation as well as constitutive activation of representative GPCRs dramatically elicited recruitment and phosphorylation of cellular Filamin A, a phenomenon long known to be crucial for regulating the structure and dynamics of the cytoskeleton. Our data suggest a molecular mechanism for direct GPCR-cytoskeleton coupling via filamin. Until now, GPCR signaling to the cytoskeleton was predominantly thought to be indirect, through canonical G protein-mediated signaling cascades involving GTPases, adenylyl cyclases, phospholipases, ion channels, and protein kinases. We propose that the GPCR-induced filamin phosphorylation pathway is a conserved, novel biochemical signaling paradigm. "	"The renin angiotensin system (RAS) produced hormone peptides regulate many vital body functions. Dysfunctional signaling by receptors for RAS peptides leads to pathologic states. Nearly half of humanity today would likely benefit from modern drugs targeting these receptors. The receptors for RAS peptides consist of three G-protein-coupled receptors—the angiotensin II type 1 receptor (AT1 receptor), the angiotensin II type 2 receptor (AT2 receptor), the MAS receptor—and a type II trans-membrane zinc protein—the candidate angiotensin IV receptor (AngIV binding site). The prorenin receptor is a relatively new contender for consideration, but is not included here because the role of prorenin receptor as an independent endocrine mediator is presently unclear. The full spectrum of biologic characteristics of these receptors is still evolving, but there is evidence establishing unique roles of each receptor in cardiovascular, hemodynamic, neurologic, renal, and endothelial functions, as well as in cell proliferation, survival, matrix-cell interaction, and inflammation. Therapeutic agents targeted to these receptors are either in active use in clinical intervention of major common diseases or under evaluation for repurposing in many other disorders. Broad-spectrum influence these receptors produce in complex pathophysiological context in our body highlights their role as precise interpreters of distinctive angiotensinergic peptide cues. This review article summarizes findings published in the last 15 years on the structure, pharmacology, signaling, physiology, and disease states related to angiotensin receptors. We also discuss the challenges the pharmacologist presently faces in formally accepting newer members as established angiotensin receptors and emphasize necessary future developments."	"MAS is a G protein-coupled receptor (GPCR) implicated in multiple physiological processes. Several physiological peptide ligands such as angiotensin-(1-7), angiotensin fragments and neuropeptide FF (NPFF) are reported to act on MAS. Studies of conventional G protein signaling and receptor desensitization upon stimulation of MAS with the peptide ligands are limited so far. Therefore, we systematically analyzed G protein signals activated by the peptide ligands. MAS-selective non-peptide ligands that were previously shown to activate G proteins were used as controls for comparison on a common cell based assay platform. Activation of MAS by the non-peptide agonist (1) increased intracellular calcium and D-myo-inositol-1-phosphate (IP1) levels which are indicative of the activation of classical Gαq-phospholipase C signaling pathways, (2) decreased Gαi mediated cAMP levels and (3) stimulated Gα12-dependent expression of luciferase reporter. In all these assays, MAS exhibited strong constitutive activity that was inhibited by the non-peptide inverse agonist. Further, in the calcium response assay, MAS was resistant to stimulation by a second dose of the non-peptide agonist after the first activation has waned suggesting functional desensitization. In contrast, activation of MAS by the peptide ligand NPFF initiated a rapid rise in intracellular calcium with very weak IP1 accumulation which is unlike classical Gαq-phospholipase C signaling pathway. NPFF only weakly stimulated MAS-mediated activation of Gα12 and Gαi signaling pathways. Furthermore, unlike non-peptide agonist-activated MAS, NPFF-activated MAS could be readily re-stimulated the second time by the agonists. Functional assays with key ligand binding MAS mutants suggest that NPFF and non-peptide ligands bind to overlapping regions. Angiotensin-(1-7) and other angiotensin fragments weakly potentiated an NPFF-like calcium response at non-physiological concentrations (≥100 µM). Overall, our data suggest that peptide ligands induce atypical signaling and functional desensitization of MAS. "
+"Kattan, Michael"	"Quantitative Health Sciences"	30611011	30385049	30348631	30214921	30003062	29995735	29862238	29610738	29610734	29381462	"The early diagnosis of cancer, as one of the major causes of death, is vital for cancerous patients. Diagnosing diseases in general and cancer in particular is a considerable application of data analysis for medical science. However, imbalanced data distribution and imbalanced quality of the majority and minority classes, which lead to misclassification, is a great challenge in this field. Though the samples of the majority class and their proper classification are more important to classifier, cancer is diagnosed by relying on the minority class samples (cancer data class). While the consequence of wrong diagnosis for non-cancerous patients is several additional clinical tests, the cancerous patients pay the price of wrong diagnosis with their lives. As such, studying the class imbalance problem is vital from the medical's perspective. To serve this purpose, a comprehensive study on the consequences of imbalanced data problem is performed in this paper on the data of cancer patients for the first time. In this context, oversampling and under sampling as two main balancing techniques including 18 algorithms are employed. The techniques used in oversampling are ADASYN, ADOMS, AHC, Borderline-SMOTE, ROS, Safe-Level-SMOTE, SMOTE, SMOTE-ENN, SMOTE-TL, SPIDER and SPIDER2, while under sampling techniques are CNN, CNNTL, NCL, OSS, RUS, SBC and TL. To examine the impact of balancers on the performance of classifiers, four classifiers named RIPPER, MLP, KNN, and C4.5 are employed as learners. In addition, 15 cancer data sets from SEER program used for the study are kidney, soft tissue, bladder, rectum, colon, bone, larynx, breast, cervix, prostate, oropharynx, melanoma, thyroid, testis, and lip. The findings of the study are centered on examining the impact of class imbalance on the function of classifiers, a general comparing of the function of pre-processing techniques and classifying all data sets and finally determining the best balancer and classifier for each kind of cancer data set. According to the results, significant improvement is obtained through using balancers. Assessing by AUC, the performance of different classifiers of cancer imbalanced data sets has improved in 90% of the cases after using balancing techniques. To be more precise, Friedman statistical tests are applied and interestingly, each kind of cancer data set responded differently to different balancing techniques and classifiers. Moreover, considering the mean rank of each technique and classifier that were used for data sets, oversampling balancing techniques result in better outcomes than under sampling ones."	"Careful assessment of the reasons for discontinuation of active surveillance (AS) is required for men with prostate cancer (PCa). Using Movember's Global Action Plan Prostate Cancer Active Surveillance initiative (GAP3) database, we report on reasons for AS discontinuation. We compared data from 10296 men on AS from 21 centres across 12 countries. Cumulative incidence methods were used to estimate the cumulative incidence rates of AS discontinuation. During 5-yr follow-up, 27.5% (95% confidence interval [CI]: 26.4-28.6%) men showed signs of disease progression, 12.8% (95% CI: 12.0-13.6%) converted to active treatment without evidence of progression, 1.7% (95% CI: 1.5-2.0%) continued to watchful waiting, and 1.7% (95% CI: 1.4-2.1%) died from other causes. Of the 7049 men who remained on AS, 2339 had follow-up for &gt;5yr, 4561 had follow-up for &lt;5yr, and 149 were lost to follow-up. Cumulative incidence of progression was 27.5% (95% CI: 26.4-28.6%) at 5yr and 38.2% (95% CI: 36.7-39.9%) at 10yr. A limitation is that not all centres were included due to limited information on the reason for discontinuation and limited follow-up. Our descriptive analyses of current AS practices worldwide showed that 43.6% of men drop out of AS during 5-yr follow-up, mainly due to signs of disease progression. Improvements in selection tools for AS are thus needed to correctly allocate men with PCa to AS, which will also reduce discontinuation due to conversion to active treatment without evidence of disease progression. Our assessment of a worldwide database of men with prostate cancer (PCa) on active surveillance (AS) shows that 43.6% drop out of AS within 5yr, mainly due to signs of disease progression. Better tools are needed to select and monitor men with PCa as part of AS."	"Electronic, personalized clinical decision support tools to optimize glycated hemoglobin (HbA1c) screening are lacking. Current screening guidelines are based on simple, categorical rules developed for populations of patients. Although personalized diabetes risk calculators have been created, none are designed to predict current glycemic status using structured data commonly available in electronic health records (EHRs). The goal of this project was to create a mathematical equation for predicting the probability of current elevations in HbA1c (≥5.7%) among patients with no history of hyperglycemia using readily available variables that will allow integration with EHR systems. The reduced model was compared head-to-head with calculators created by Baan and Griffin. Ten-fold cross-validation was used to calculate the bias-adjusted prediction accuracy of the new model. Statistical analyses were performed in R version 3.2.5 (The R Foundation for Statistical Computing) using the rms (Regression Modeling Strategies) package. The final model to predict an elevated HbA1c based on 22,635 patient records contained the following variables in order from most to least importance according to their impact on the discriminating accuracy of the model: age, body mass index, random glucose, race, serum non-high-density lipoprotein, serum total cholesterol, estimated glomerular filtration rate, and smoking status. The new model achieved a concordance statistic of 0.77 which was statistically significantly better than prior models. The model appeared to be well calibrated according to a plot of the predicted probabilities versus the prevalence of the outcome at different probabilities. The calculator created for predicting the probability of having an elevated HbA1c significantly outperformed the existing calculators. The personalized prediction model presented in this paper could improve the efficiency of HbA1c screening initiatives."	"A risk calculator paired with a personalized decision aid (RC&amp;DA) may foster shared decision-making in primary care. We assessed the feasibility of using an RC&amp;DA with patients in a primary care outpatient clinic and patients' experiences regarding communication and decision-making. This pilot study was conducted with 15 patients of 3 primary care physicians at a clinic within a tertiary medical center. An atherosclerotic cardiovascular disease (ASCVD) risk calculator was used to generate a personalized RC&amp;DA that displayed absolute 10-year risk information as an icon array graphic. Patient perceptions of utility of the RC&amp;DA, preferences for decision-making, and uncertainty with risk reduction decisions were measured with a semi-structured interview. Patients reported that the RC&amp;DA was easy to understand and knowledge gained was useful to modify their ASCVD risk. Patients used the RC&amp;DA to make decisions and reported low uncertainty with those decisions. Our findings demonstrate the feasibility of, and positive patient experiences related to using, an RC&amp;DA to facilitate shared decision-making between physicians and patients in an outpatient primary care setting."	"As prostate cancer (PCa) screening decisions often occur in outpatient primary care, a brief tool to help the PCa screening conversation in busy clinic settings is needed. A previously created 9-item tool to aid PCa screening discussions was tested in five diverse primary care clinics. Fifteen providers were recruited to use the tool for 4 weeks, and the tool was revised based upon feedback. The providers then used the tool with a convenience sample of patients during routine clinic visits. Pre- and post-visit surveys were administered to assess patients' knowledge of the option to be screened for PCa and of specific factors to consider in the decision. McNemar's and Stuart-Maxwell tests were used to compare pre-and post-survey responses. 14 of 15 providers completed feedback surveys and had positive responses to the tool. All 15 providers then tested the tool on 95 men aged 40-69 at the five clinics with 2-10 patients each. The proportion of patients who strongly agreed that they had the option to choose to screen for PCa increased from 57 to 72% (p = 0.018) from the pre- to post-survey, that there are factors in the personal or family history that may affect PCa risk from 34 to 47% (p = 0.012), and that their opinions about possible side effects of treatment for PCa should be considered in the decision from 47 to 61% (p = 0.009). A brief conversation tool for the PCa screening discussion was well received in busy primary-care settings and improved patients' knowledge about the screening decision."	"To develop statistical models predicting recurrent pelvic organ prolapse, surgical complications, and change in health status 12 months after apical prolapse surgery. Logistic regression models were developed using a combined cohort from three randomized trials and two prospective cohort studies from 1,301 participants enrolled in surgical studies conducted by the Pelvic Floor Disorders Network. Composite recurrent prolapse was defined as prolapse beyond the hymen; the presence of bothersome bulge symptoms; or prolapse reoperation or retreatment within 12 months after surgery. Complications were defined as any serious adverse event or Dindo grade III complication within 12 months of surgery. Significant change in health status was defined as a minimum important change of SF-6D utility score (±0.035 points) from baseline. Thirty-two candidate risk factors were considered for each model and model accuracy was measured using concordance indices. All indices were internally validated using 1,000 bootstrap resamples to correct for bias. The models accurately predicted composite recurrent prolapse (concordance index=0.72, 95% CI 0.69-0.76), bothersome vaginal bulge (concordance index=0.73, 95% CI 0.68-0.77), prolapse beyond the hymen (concordance index=0.74, 95% CI 0.70-0.77), serious adverse event (concordance index=0.60, 95% CI 0.56-0.64), Dindo grade III or greater complication (concordance index=0.62, 95% CI 0.58-0.66), and health status improvement (concordance index=0.64, 95% CI 0.62-0.67) or worsening (concordance index=0.63, 95% CI 0.60-0.67). Calibration curves demonstrated all models were accurate through clinically useful predicted probabilities. These prediction models are able to provide accurate and discriminating estimates of prolapse recurrence, complications, and health status 12 months after prolapse surgery."	"Mandated assessment of medical personnel by comparing individual performance averages to external targets is standard practice in many health care systems. This method of assessment uses only raw or adjusted averages without considering the associated variation. Failure to correctly incorporate variation in the assessment of medical personnel results in evaluations which are neither accurate nor fair with respect to assessing personnel performance. Accepted statistical methods for process evaluation and quality control, including regression, control charts, and adjusted means comparisons will be used to analyze hospital length of stay (LOS) patient data for the period between January and October 2010 for 12 physicians in the Cardiothoracic Surgery service line at the Cleveland Clinic. The analysis and interpretation of physician performance data using both targets and tolerances results in physician performance ratings which differ significantly from performance ratings based only on targets. Failure to include variation when assessing medical personnel performance results in a system of ranking, rewarding, and punishing based primarily on blind chance instead of one based on actual personnel performance."	"Risk calculators are online tools developed for use by physicians in clinical settings to predict the risk of a clinical event, and as an aid in personalizing medical decision-making. Cleveland Clinic prediction models are listed at http://rcalc.ccf.org. We illustrate how we used R to create a risk calculator, and demonstrate the ease of using R, RStudio, and a Shiny package."	"Many institutions would like to harness their electronic health record (EHR) data for research. However, with many EHR systems, this process is remarkably difficult. We have been using our vast EHR system for research very effectively, with substantial research support and many publications. Herein we share our process and provide recommendations for others wanting to utilize their EHR data for research."	"Current prostate cancer risk calculators are limited in impact because only a probability of having prostate cancer is provided. We developed the next generation of prostate cancer risk calculator that incorporates life expectancy in order to better evaluate prostate cancer risk in context to a patient's age and comorbidity. We combined two cohorts to develop the new risk calculator. The first was 5638 subjects who all underwent a prostate biopsy for prostate cancer detection. The second was 979 men diagnosed with prostate cancer with long-term survival data. Two regression models were used to create multivariable nomograms and an online prostate cancer risk calculator was developed. Of the 5638 patients who underwent a prostate biopsy, 629 (11%) were diagnosed with aggressive prostate cancer (Gleason Score 7[4+3] or more). Of the 979 patients who underwent treatment for prostate cancer, the 10-year overall survival (OS) was 49.6% (95% confidence interval [CI] 46.6-52.9). The first multivariable nomogram for cancer risk had a concordance index of 0.74 (95% CI 0.72, 0.76), and the second nomogram to predict survival had a concordance index of 0.71 (95% CI 0.69-0.72). The next-generation prostate cancer risk calculator was developed online and is available at: http://riskcalc.org/ProstateCA_Screen_Tool. We have developed the next-generation prostate cancer risk calculator that incorporates a patient's life expectancy based on age and comorbidity. This approach will better evaluate prostate cancer risk. Future studies examining other populations will be needed for validation."
+"Krishna, Vijay"	"Biomedical Engineering"	29382935	23083600	20818623	20228785	16989848	20228785	23261655	21637768	21337565	20839856	"Pristine titanium dioxide (TiO2) absorbs ultraviolet light and reflects the entire visible spectrum. This optical response of TiO2 has found widespread application as white pigments in paper, paints, pharmaceuticals, foods and plastic industries; and as a UV absorber in cosmetics and photocatalysis. However, pristine TiO2 is considered to be inert under visible light for these applications. Here we show for the first time that a bacterial contaminant (Staphylococcus aureus-a MRSA surrogate) in contact with TiO2 activates its own photocatalytic degradation under visible light. The present study delineates the critical role of visible light absorption by contaminants and electronic interactions with anatase in photocatalytic degradation using two azo dyes (Mordant Orange and Procion Red) that are highly stable because of their aromaticity. An auxiliary light harvester, polyhydroxy fullerenes, was successfully used to accelerate photocatalytic degradation of contaminants. We designed a contaminant-activated, transparent, photocatalytic coating for common indoor surfaces and conducted a 12-month study that proved the efficacy of the coating in killing bacteria and holding bacterial concentrations generally below the benign threshold. Data collected in parallel with this study showed a substantial reduction in the incidence of infections."	NA	NA	"Irradiating single-walled carbon nanotubes can lead to heat generation or ignition. These processes could be used in medical and industrial applications, but the poor solvent compatibility and high aspect ratios of nanotubes have led to concerns about safety. Here, we show that certain functionalized fullerenes, including polyhydroxy fullerenes (which are known to be environmentally safe and to have therapeutic properties) are heated or ignited by exposure to low-intensity (&lt;10(2 ) W cm(-2)) continuous-wave laser irradiation. We also show that polyhydroxy fullerenes and other functionalized fullerenes can be transformed into single-walled nanotubes, multiwalled nanotubes and carbon onions without the presence of a catalyst by exposure to low-intensity laser irradiation in an oxygen-free environment. To demonstrate the potential usefulness of these processes in applications, we disrupted animal cells dosed with polyhydroxy fullerenes by exposing them to a near-infrared laser for a few seconds, and also ignited an explosive charge in contact with a particle of carboxy fullerenes."	"Fullerenes are known for their unique electronic properties including high electron affinity. Although use of fullerenes for scavenging photo-generated electrons from titanium dioxide particles has been demonstrated, no attempts have been made to utilize the unique properties of fullerenes to increase the efficacy of photocatalysis. The present study has demonstrated that a mixture of water-soluble polyhydroxy fullerenes (PHF) and titanium dioxide (anatase polymorph) enhances photocatalytic degradation of organic dye. The PHF molecules adsorbed to the surface of titanium dioxide due to electrostatic forces, with adsorption density being higher at lower pH values. The surface coverage of titanium dioxide nanoparticles by PHF molecules determined the extent of enhancement, with an optimum dosed weight ratio of PHF to titanium dioxide at 0.001. Hydroxylation and concomitant solubilization of fullerenes allow their unique electronic properties to be harnessed for photocatalysis."	"Irradiating single-walled carbon nanotubes can lead to heat generation or ignition. These processes could be used in medical and industrial applications, but the poor solvent compatibility and high aspect ratios of nanotubes have led to concerns about safety. Here, we show that certain functionalized fullerenes, including polyhydroxy fullerenes (which are known to be environmentally safe and to have therapeutic properties) are heated or ignited by exposure to low-intensity (&lt;10(2 ) W cm(-2)) continuous-wave laser irradiation. We also show that polyhydroxy fullerenes and other functionalized fullerenes can be transformed into single-walled nanotubes, multiwalled nanotubes and carbon onions without the presence of a catalyst by exposure to low-intensity laser irradiation in an oxygen-free environment. To demonstrate the potential usefulness of these processes in applications, we disrupted animal cells dosed with polyhydroxy fullerenes by exposing them to a near-infrared laser for a few seconds, and also ignited an explosive charge in contact with a particle of carboxy fullerenes."	"Accurately measuring the volume of tissue damage in experimental lesion models is crucial to adequately control for the extent and location of the lesion, variables that can dramatically bias the outcome of preclinical studies. Many of the current commonly used techniques for this assessment, such as measuring the lesion volume with primitive software macros and plotting the lesion location manually using atlases, are time-consuming and offer limited precision. Here we present an easy to use semi-automated computational method for determining lesion volume and location, designed to increase precision and reduce the manual labor required. We compared this novel method to currently used methods and demonstrate that this tool is comparable or superior to current techniques in terms of precision and has distinct advantages with respect to user interface, labor intensiveness and quality of data presentation."	"Recent toxicological studies on carbon nanomaterials, including fullerenes, have led to concerns about their safety. Functionalized fullerenes, such as polyhydroxy fullerenes (PHF, fullerols, or fullerenols), have attracted particular attention due to their water solubility and toxicity. Here, we report surprisingly beneficial and/or specific effects of PHF on model organisms representing four kingdoms, including the green algae Pseudokirchneriella subcapitata, the plant Arabidopsis thaliana, the fungus Aspergillus niger, and the invertebrate Ceriodaphnia dubia. The results showed that PHF had no acute or chronic negative effects on the freshwater organisms. Conversely, PHF could surprisingly increase the algal culture density over controls at higher concentrations (i.e., 72% increase by 1 and 5 mg/L of PHF) and extend the lifespan and stimulate the reproduction of Daphnia (e.g. about 38% by 20 mg/L of PHF). We also show that at certain PHF concentrations fungal growth can be enhanced and Arabidopsis thaliana seedlings exhibit longer hypocotyls, while other complex physiological processes remain unaffected. These findings may open new research fields in the potential applications of PHF, e.g., in biofuel production and aquaculture. These results will form the basis of further research into the mechanisms of growth stimulation and life extension by PHF."	"Approaches for breast cancer treatment are invasive, disfiguring, have significant side-effects, and are not always curative. Nanotechnology is an emerging area which is focused on engineering of materials &lt;100 × 10(-9) m. There is significant promise for advancing nanotechnology to improve breast cancer diagnosis and treatment including non-invasive therapy, monitoring response to therapy, advanced imaging, treatment of metastatic disease, and improved nodal staging. Current approaches and important future directions are discussed."	"Copper species coated silica nanoparticles (CuOXS) were synthesized for odor removal application. Coating with copper increased the capacity of silica nanoparticles for eliminating a model odor-ethyl mercaptan. Surface area, pore size distribution, and electron paramagnetic resonance spectroscopy analyses indicated that, at lower copper concentrations, copper species preferentially adsorb in 20 Å pores of silica. These copper species in a dispersed state are effective in catalytic removal of ethyl mercaptan. The best performance of copper-coated silica nanoparticles was achieved at a copper concentration of 3 wt %, at which all 20 Å nanopores were filled with isolated copper species. At higher copper loading, copper species are present as clusters on silica surfaces, which were found to be less effective in removing ethyl mercaptan. Gas chromatography experiments were carried out to verify catalytic conversion of ethyl mercaptan to diethyl disulfide by CuOXS particles. The present study suggests that the nature of the copper species and their site of adsorption, as well as state of dispersion, are important parameters to be considered for catalytic removal of sulfur-containing compounds. These parameters are critical for designing high-performance catalytic copper-coated silica nanoparticles for applications such as deodorization, removal of sulfur compounds from crude oil, hydrogenation, and antimicrobial activity."
+"Labhasetwar, Vinod"	"Biomedical Engineering"	30940690	30930216	29947019	28299721	27090164	26735970	26439800	26343846	26024446	26000961	"Poor cellular uptake, rapid degradation in the presence of serum, and inefficient transfection are some of the major barriers in achieving therapeutic efficacy of naked small interfering RNAs (siRNAs). We investigated the efficacy of the polyplex formulated using our synthesized polymer, polyethylene glycol (PEG)-modified l-arginine oligo(-alkylaminosiloxane) that is grafted with poly(ethyleneimine) (PEI) for siRNA delivery. We hypothesized that the polyplex formulated using the polymer with a balanced composition of PEI for siRNA condensation and its protection, PEG for polyplex stability and to minimize the PEI-associated toxicity, and with arginine facilitating cellular uptake would overcome the aforementioned issues with siRNA delivery. We tested our hypothesis using antiluciferase siRNA in luciferase-expressing metastatic breast cancer cells (MDA-MB-231-Luc-D3H2LN) and anti-ABCB1 siRNA against an efflux membrane protein, ABCB1, in doxorubicin (DOX)-resistant breast cancer cells (MCF-7/Adr). The results demonstrated that the polyplex at an optimal nucleotide/polymer ratio is stable in the presence of excess polyanions, has no cellular toxicity, and protects siRNA from RNase degradation. Transfection of MDA-MB-231-Luc-D3H2LN cells with antiluciferase siRNA polyplex showed almost complete knockdown of luciferase expression. In MCF-7/Adr cells, transfection with anti-ABCB1 siRNA effectively downregulated its target efflux protein, ABCB1; increased cellular uptake of DOX; and enhanced its cytotoxic effect. However, the cotreatment did not completely overcome drug resistance, suggesting that further optimization is needed and/or a mechanism(s) other than the efflux protein ABCB1 may be involved in drug resistance. In conclusion, our polyplex is effective for siRNA delivery and can be explored for different therapeutic applications."	"In spinal cord injury (SCI), timely therapeutic intervention is critical to inhibit the post-injury rapidly progressing degeneration of spinal cord. Towards that objective, we determined the accessibility of intravenously administered biodegradable nanoparticles (NPs) as a drug delivery system to the lesion site in rat and pig contusion models of SCI. Poly (d,l-lactide co-glycolide, PLGA)-based NPs loaded with a near-infrared dye as a marker for NPs were used. To analyze and quantify localization of NPs to the lesion site, we mapped the entire spinal cord, segment-by-segment, for the signal count. Our objectives were to determine the NP dose effect and duration of retention of NPs at the lesion site, and the time window post-SCI within which NPs localize at the lesion site. We hypothesized that breakdown of the blood-spinal cord barrier following contusion injury could lead to more specific localization of NPs at the lesion site. The mapping data showed a dose-dependent increase and significantly greater localization of NPs at the lesion site than in the remaining uninjured segment of the spinal cord. Further, NPs were seen to be retained at the lesion site for more than a week. With delayed post-SCI administration, localization of NPs at the lesion site was reduced but still localize even at four weeks post-injury administration. Interestingly, in uninjured animals (sham control), greater accumulation of NPs was seen in the thoracic and lumbar enlargement regions of the spinal cord, which in animals with SCI changed to the lesion site, indicating drastic post-injury hemodynamic changes in the spinal cord. Similar to the rat results, pig contusion model of SCI showed greater NP localization at the lesion site. In conclusion, NPs could potentially be explored as a carrier for delivery of therapeutics to the lesion site to minimize the impact of post-SCI response."	"Epigenetic modifications (e.g., DNA methylation or histone deacetylation) are commonly implicated in cancer chemoresistance. We previously showed that pretreating resistant MCF-7/ADR breast cancer cells with a demethylating agent (5-aza-2'-deoxycytidine (DAC)) or with an inhibitor of histone deacetylase (suberoylanilide hydroxamic acid (SAHA)) sensitized resistant cells to doxorubicin (DOX) treatment. However, even with increasing doses of DOX, a fraction of resistant cells remained nonresponsive to this pretreatment (~ 25% pretreated with DAC, ~ 45% with SAHA). We hypothesized that pretreating resistant cells with a combination of epigenetic drugs (DAC + SAHA) could more effectively overcome drug resistance. We postulated that delivery of epigenetic drugs encapsulated in biodegradable nanogels (NGs) would further enhance their efficacy. MCF-7/ADR cells were first treated with a single drug vs. a combination of epigenetic drugs, either as solutions or encapsulated in NGs, then subjected to DOX, either in solution or in NGs. Antiproliferative data showed that pretreatment with epigenetic drugs in NGs, then with DOX in NGs, was most effective in overcoming resistance; this treatment inhibited cell growth by &gt; 90%, even at low doses of DOX. Cell cycle analysis showed that a major fraction of cells treated with a cocktail of epigenetic drugs + DOX, all in NG formulations, remained in the G2/M cell cycle arrest phase for a prolonged period. The mechanism of better efficacy of epigenetic drugs in NGs could be attributed to their sustained effect. A similar strategy could be developed for other cancer cells in which drug resistance is due to epigenetic modifications."	"Titanium dioxide nanoparticles (TiO2NPs) are used in sunscreen products to protect the skin from the sun's ultraviolet rays. However, following exposure to sunlight, the photocatalytic activity of TiO2NPs can produce an excess of reactive oxygen species (ROS), causing skin cell damage, triggering an inflammatory response. In zebrafish model, we evaluated how well Pro-NP™ (biodegradable NPs containing superoxide dismutase and catalase) could protect them from TiO2NP-induced photo-oxidative stress. We hypothesized that the antioxidant properties of Pro-NP™ would protect zebrafish embryos from the phototoxic effects of TiO2NPs, improving overall survival and growth. Dechorionated embryos were treated with TiO2NPs alone or co-treated with Pro-NP™, and then exposed to simulated sunlight. Pro-NP™ by itself caused no toxicity; however, for embryos exposed to 100 μg/ml TiO2NPs, zebrafish survival was reduced to ∼40% and at 500 μg/ml to ∼10%. In contrast, at 100 μg/ml TiO2NP, co-treatment with Pro-NP™ increased zebrafish survival in a dose-dependent manner. Co-treatment also improved percent of embryos hatching and resulted in normal growth of zebrafish. On the other hand, embryos treated with TiO2NPs alone developed deformities, had reduced pigmentation, and showed severely truncated growth. Pro-NP™ afforded a greater level of protection against TiO2NP-induced phototoxicity than other antioxidants (vitamin E or N-acetylcysteine) commonly used in topical skin care formulations. We conclude that Pro-NP™ exert significant protective effects against TiO2NP-induced phototoxicity and could be developed as a safe, effective skin care product, used alone or in combination with sunscreen products to protect the skin from sun's UV radiation."	"Advanced-stage prostate cancer usually metastasizes to bone and is untreatable due to poor biodistribution of intravenously administered anticancer drugs to bone. In this study, we modulated the surface charge/composition of biodegradable nanoparticles (NPs) to sustain their blood circulation time and made them small enough to extravasate through the openings of the bone's sinusoidal capillaries and thus localize into marrow. NPs with a neutral surface charge, achieved by modulating the NP surface-associated emulsifier composition, were more effective at localizing to bone marrow than NPs with a cationic or anionic surface charge. These small neutral NPs (~150nm vs. the more usual ~320nm) were also ~7-fold more effective in localizing in bone marrow than large NPs. We hypothesized that NPs that effectively localize to marrow could improve NP-mediated anticancer drug delivery to sites of bone metastasis, thereby inhibiting cancer progression and preventing bone loss. In a PC-3M-luc cell-induced osteolytic intraosseous model of prostate cancer, these small neutral NPs demonstrated greater accumulation in bone within metastatic sites than in normal contralateral bone as well as co-localization with the tumor mass in marrow. Significantly, a single-dose intravenous administration of these small neutral NPs loaded with paclitaxel (PTX-NPs), but not anionic PTX-NPs, slowed the progression of bone metastasis. In addition, neutral PTX-NPs prevented bone loss, whereas animals treated with the rapid-release drug formulation Cremophor EL (PTX-CrEL) or saline (control) showed &gt;50% bone loss. Neutral PTX-NPs did not cause acute toxicity, whereas animals treated with PTX-CrEL experienced weight loss. These results indicate that NPs with appropriate physical and sustained drug-release characteristics could be explored to treat bone metastasis, a significant clinical issue in prostate and other cancers."	"Inherent neuronal and circulating progenitor cells play important roles in facilitating neuronal and functional recovery post stroke. However, this endogenous repair process is rather limited, primarily due to unfavorable conditions in the infarcted brain involving reactive oxygen species (ROS)-mediated oxidative stress and inflammation following ischemia/reperfusion injury. We hypothesized that during reperfusion, effective delivery of antioxidants to ischemic brain would create an environment without such oxidative stress and inflammation, thus promoting activation and mobilization of progenitor cells in the infarcted brain. We administered recombinant human tissue-type plasminogen activator (tPA) via carotid artery at 3 h post stroke in a thromboembolic rat model, followed by sequential administration of the antioxidants catalase (CAT) and superoxide dismutase (SOD), encapsulated in biodegradable nanoparticles (nano-CAT/SOD). Brains were harvested at 48 h post stroke for immunohistochemical analysis. Ipsilateral brain slices from animals that had received tPA + nano-CAT/SOD showed a widespread distribution of glial fibrillary acidic protein-positive cells (with morphology resembling radial glia-like neural precursor cells) and nestin-positive cells (indicating the presence of immature neurons); such cells were considerably fewer in untreated animals or those treated with tPA alone. Brain sections from animals receiving tPA + nano-CAT/SOD also showed much greater numbers of SOX2- and nestin-positive progenitor cells migrating from subventricular zone of the lateral ventricle and entering the rostral migratory stream than in t-PA alone treated group or untreated control. Further, animals treated with tPA + nano-CAT/SOD showed far fewer caspase-positive cells and fewer neutrophils than did other groups, as well as an inhibition of hippocampal swelling. These results suggest that the antioxidants mitigated the inflammatory response, protected neuronal cells from undergoing apoptosis, and inhibited edema formation by protecting the blood-brain barrier from ROS-mediated reperfusion injury. A longer-term study would enable us to determine if our approach would assist progenitor cells to undergo neurogenesis and to facilitate neurological and functional recovery following stroke and reperfusion injury. "	"Cell-membrane lipid composition can greatly influence biophysical properties of cell membranes, affecting various cellular functions. We previously showed that lipid synthesis becomes altered in the membranes of resistant breast cancer cells (MCF-7/ADR); they form a more rigid, hydrophobic lipid monolayer than do sensitive cell membranes (MCF-7). These changes in membrane lipids of resistant cells, attributed to epigenetic aberration, significantly affected drug transport and endocytic function, thus impacting the efficacy of anticancer drugs. The present study's objective was to determine the effects of the epigenetic drug, 5-aza-2'-deoxycytidine (DAC), delivered in sustained-release nanogels (DAC-NGs), on the composition and biophysical properties of membrane lipids of resistant cells. Resistant and sensitive cells were treated with DAC in solution (DAC-sol) or DAC-NGs, and cell-membrane lipids were isolated and analyzed for lipid composition and biophysical properties. In resistant cells, we found increased formation of cholesterol-sphingomyelin (CHOL-SM) rafts with culturing time, whereas DAC treatment reduced their formation. In general, the effect of DAC-NGs was greater in changing the lipid composition than with DAC-sol. DAC treatment also caused a rise in levels of certain phospholipids and neutral lipids known to increase membrane fluidity, while reducing the levels of certain lipids known to increase membrane rigidity. Isotherm data showed increased lipid membrane fluidity following DAC treatment, attributed to decrease levels of CHOL-SM rafts (lamellar beta [Lβ] structures or ordered gel) and a corresponding increase in lipids that form lamellar alpha-structures (Lα, liquid crystalline phase). Sensitive cells showed marginal or insignificant changes in lipid profile following DAC-treatment, suggesting that epigenetic changes affecting lipid biosynthesis are more specific to resistant cells. Since membrane fluidity plays a major role in drug transport and endocytic function, treatment of resistant cells with epigenetic drugs with altered lipid profile could facilitate anticancer drug transport to overcome acquired drug resistance in a combination therapy. "	"Spinal cord injury (SCI) results in devastating neurological and pathological consequences, causing major dysfunction to the motor, sensory, and autonomic systems. The primary traumatic injury to the spinal cord triggers a cascade of acute and chronic degenerative events, leading to further secondary injury. Many therapeutic strategies have been developed to potentially intervene in these progressive neurodegenerative events and minimize secondary damage to the spinal cord. Additionally, significant efforts have been directed toward regenerative therapies that may facilitate neuronal repair and establish connectivity across the injury site. Despite the promise that these approaches have shown in preclinical animal models of SCI, challenges with respect to successful clinical translation still remain. The factors that could have contributed to failure include important biologic and physiologic differences between the preclinical models and the human condition, study designs that do not mirror clinical reality, discrepancies in dosing and the timing of therapeutic interventions, and dose-limiting toxicity. With a better understanding of the pathobiology of events following acute SCI, developing integrated approaches aimed at preventing secondary damage and also facilitating neuroregenerative recovery is possible and hopefully will lead to effective treatments for this devastating injury. The focus of this review is to highlight the progress that has been made in drug therapies and delivery systems, and also cell-based and tissue engineering approaches for SCI. "	"Blast-associated shock wave-induced traumatic brain injury (bTBI) remains a persistent risk for armed forces worldwide, yet its detailed pathophysiology remains to be fully investigated. In this study, we have designed and characterized a laboratory-scale shock tube to develop a rodent model of bTBI. Our blast tube, driven by a mixture of oxygen and acetylene, effectively generates blast overpressures of 20-130 psi, with pressure-time profiles similar to those of free-field blast waves. We tested our shock tube for brain injury response to various blast wave conditions in rats. The results show that blast waves cause diffuse vascular brain damage, as determined using a sensitive optical imaging method based on the fluorescence signal of Evans Blue dye extravasation developed in our laboratory. Vascular leakage increased with increasing blast overpressures and mapping of the brain slices for optical signal intensity indicated nonhomogeneous damage to the cerebral vasculature. We confirmed vascular leakage due to disruption in the blood-brain barrier (BBB) integrity following blast exposure. Reactive oxygen species (ROS) levels in the brain also increased with increasing blast pressures and with time post-blast wave exposure. Immunohistochemical analysis of the brain sections analyzed at different time points post blast exposure demonstrated astrocytosis and cell apoptosis, confirming sustained neuronal injury response. The main advantages of our shock-tube design are minimal jet effect and no requirement for specialized equipment or facilities, and effectively generate blast-associated shock waves that are relevant to battle-field conditions. Overall data suggest that increased oxidative stress and BBB disruption could be the crucial factors in the propagation and spread of neuronal degeneration following blast injury. Further studies are required to determine the interplay between increased ROS activity and BBB disruption to develop effective therapeutic strategies that can prevent the resulting cascade of neurodegeneration. "	"Neuronal gene therapy potentially offers an effective therapeutic intervention to cure or slow the progression of neurological diseases. However, neuronal cells are difficult to transfect with nonviral vectors, and in vivo their transport across the blood-brain barrier (BBB) is inefficient. We synthesized a series of arginine-rich oligopeptides, grafted with polyethyleneimine (PEI) and modified with a short-chain polyethylene glycol (PEG). We hypothesized that the arginine would enhance cellular uptake and transport of these polyplexes across the BBB, with PEG imparting biocompatibility and &quot;stealth&quot; properties and PEI facilitating DNA condensation and gene transfection. The optimized composition of the polyplexes demonstrated hemocompatibility with red blood cells, causing no lysis or aggregation, and showed significantly better cytocompatibility than PEI in vitro. Polyplexes formulated with luciferase-expressing plasmid DNA could transfect rat primary astrocytes and neurons in vitro. Confocal imaging data showed efficient cellular uptake of DNA and its sustained intracellular retention and nuclear localization with polyplexes. Intravenous administration of the optimized polyplexes in mice led to gene expression in the brain, which upon further immunohistochemical analysis demonstrated gene expression in neurons. In conclusion, we have successfully designed a nonviral vector for in vitro and in vivo neuronal gene delivery. "
+"Lal, Dennis"	"Genomic Medicine Institute"	30341947	30048611	29473046	28756411	26990884	26789268	26220384	26174448	25950944	24591017	"Increasing availability of surgically resected brain tissue from patients with focal epilepsy and focal cortical dysplasia or low-grade glioneuronal tumors has fostered large-scale genetic examination. However, assessment of pathogenicity of germ line and somatic variants remains difficult. Here, we present a state-of-the-art evaluation of reported genes and variants associated with epileptic brain lesions. We critically reevaluated the pathogenicity for all neuropathology-associated variants reported to date in the PubMed and ClinVar databases, including 101 neuropathology-associated missense variants encompassing 11 disease-related genes. We assessed gene variant tolerance and classified all identified missense variants according to guidelines from the American College of Medical Genetics and Genomics (ACMG). We further extended the bioinformatic variant prediction by introducing a novel gene-specific deleteriousness ranking for prediction scores. Application of ACMG guidelines and in silico gene variant tolerance analysis classified only seven of 11 genes to be likely disease-associated according to the reported disease mechanism, whereas 61 (60.4%) of 101 variants of those genes were classified as of uncertain significance, 37 (36.6%) as being likely pathogenic, and 3 (3%) as being pathogenic. We concluded that the majority of neuropathology-associated variants reported to date do not have enough evidence to be classified as pathogenic. Interpretation of lesion-associated variants remains challenging, and application of current ACMG guidelines is recommended for interpretation and prediction."	"A genetic informed approach sheds new light on the biology of congenital hydrocephalus (CH), on which previous knowledge of the genetic background is scanty. In this issue, Furey et al. (2018) discover that variants in four genes associated with neurogenesis are implicated in CH."	"After the recent publication of the first patients with disease-associated missense variants in the GRIN2D gene, we evaluate the effect of copy number variants (CNVs) overlapping this gene toward the presentation of neurodevelopmental disorders (NDDs). We explored ClinVar (number of CNVs = 50,794) and DECIPHER (number of CNVs = 28,085) clinical databases of genomic variations for patients with copy number changes overlapping the GRIN2D gene at the 19q13.33 locus and evaluated their respective phenotype alongside their frequency, gene content, and expression, with publicly available reference databases. We identified 11 patients with microduplications at the 19q13.33 locus. The majority of CNVs arose de novo, and comparable CNVs are not present in control databases. All patients were reported to have NDDs and dysmorphic features as the most common clinical phenotype (N = 8/11), followed by seizures (N = 6/11) and intellectual disability (N = 5/11). All duplications shared a consensus region of 405 kb overlapping 13 genes. After screening for duplication tolerance in control populations, positive gene brain expression, and gene dosage sensitivity analysis, we highlight 4 genes for future evaluation: CARD8, C19orf68, KDELR1, and GRIN2D, which are promising candidates for disease causality. Furthermore, investigation of the literature especially supports GRIN2D as the best candidate gene. Our study presents dup19q13.33 as a novel duplication syndrome locus associated with NDDs. CARD8, C19orf68, KDELR1, and GRIN2D are promising candidates for functional follow-up."	"Microdeletions are known to confer risk to epilepsy, particularly at genomic rearrangement 'hotspot' loci. However, microdeletion burden not overlapping these regions or within different epilepsy subtypes has not been ascertained. To decipher the role of microdeletions outside hotspots loci and risk assessment by epilepsy subtype. We assessed the burden, frequency and genomic content of rare, large microdeletions found in a previously published cohort of 1366 patients with genetic generalised epilepsy (GGE) in addition to two sets of additional unpublished genome-wide microdeletions found in 281 patients with rolandic epilepsy (RE) and 807 patients with adult focal epilepsy (AFE), totalling 2454 cases. Microdeletions were assessed in a combined and subtype-specific approaches against 6746 controls. When hotspots are considered, we detected an enrichment of microdeletions in the combined epilepsy analysis (adjusted p=1.06×10<sup>-6</sup>,OR 1.89, 95% CI 1.51 to 2.35). Epilepsy subtype-specific analyses showed that hotspot microdeletions in the GGE subgroup contribute most of the overall signal (adjusted p=9.79×10<sup>-12</sup>, OR 7.45, 95% CI 4.20-13.5). Outside hotspots , microdeletions were enriched in the GGE cohort for neurodevelopmental genes (adjusted p=9.13×10<sup>-3</sup>,OR 2.85, 95% CI 1.62-4.94). No additional signal was observed for RE and AFE. Still, gene-content analysis identified known (NRXN1, RBFOX1 and PCDH7) and novel (LOC102723362) candidate genes across epilepsy subtypes that were not deleted in controls. Our results show a heterogeneous effect of recurrent and non-recurrent microdeletions as part of the genetic architecture of GGE and a minor contribution in the aetiology of RE and AFE."	"The SCN1A gene, coding for the voltage-gated Na+ channel alpha subunit NaV1.1, is the clinically most relevant epilepsy gene. With the advent of high-throughput next-generation sequencing, clinical laboratories are generating an ever-increasing catalogue of SCN1A variants. Variants are more likely to be classified as pathogenic if they have already been identified previously in a patient with epilepsy. Here, we critically re-evaluate the pathogenicity of this class of variants in a cohort of patients with common epilepsy syndromes and subsequently ask whether a significant fraction of benign variants have been misclassified as pathogenic. We screened a discovery cohort of 448 patients with a broad range of common genetic epilepsies and 734 controls for previously reported SCN1A mutations that were assumed to be disease causing. We re-evaluated the evidence for pathogenicity of the identified variants using in silico predictions, segregation, original reports, available functional data and assessment of allele frequencies in healthy individuals as well as in a follow up cohort of 777 patients. We identified 8 known missense mutations, previously reported as pathogenic, in a total of 17 unrelated epilepsy patients (17/448; 3.80%). Our re-evaluation indicates that 7 out of these 8 variants (p.R27T; p.R28C; p.R542Q; p.R604H; p.T1250M; p.E1308D; p.R1928G; NP_001159435.1) are not pathogenic. Only the p.T1174S mutation may be considered as a genetic risk factor for epilepsy of small effect size based on the enrichment in patients (P = 6.60 x 10-4; OR = 0.32, fishers exact test), previous functional studies but incomplete penetrance. Thus, incorporation of previous studies in genetic counseling of SCN1A sequencing results is challenging and may produce incorrect conclusions."	"Massively parallel sequencing of whole genomes and exomes has facilitated a direct assessment of causative genetic variation, now enabling the identification of genetic factors involved in rare diseases (RD) with Mendelian inheritance patterns on an almost routine basis. Here, we describe the illustrative case of a single consanguineous family where this strategy suffered from the difficulty to distinguish between two etiologically distinct disorders, namely the co-occurrence of hereditary hypophosphatemic rickets (HRR) and congenital myopathies (CM), by their phenotypic manifestation alone. We used parametric linkage analysis, homozygosity mapping and whole exome-sequencing to identify mutations underlying HRR and CM. We also present an approximate approach for assessing the probability of co-occurrence of two unlinked recessive RD in a single family as a function of the degree of consanguinity and the frequency of the disease-causing alleles. Linkage analysis and homozygosity mapping yielded elusive results when assuming a single RD, but whole-exome sequencing helped to identify two mutations in two genes, namely SLC34A3 and SEPN1, that segregated independently in this family and that have previously been linked to two etiologically different diseases. We assess the increase in chance co-occurrence of rare diseases due to consanguinity, i.e. under circumstances that generally favor linkage mapping of recessive disease, and show that this probability can increase by several orders of magnitudes. We conclude that such potential co-occurrence represents an underestimated risk when analyzing rare or undefined diseases in consanguineous families and should be given more consideration in the clinical and genetic evaluation. "	"Recently, mutations and deletions in the GRIN2A gene have been identified to predispose to benign and severe idiopathic focal epilepsies (IFE), revealing a higher incidence of GRIN2A alterations among the more severe phenotypes. This study aimed to explore the phenotypic boundaries of GRIN2A mutations by investigating patients with the two most common epilepsy syndromes: (i) idiopathic generalized epilepsy (IGE) and (ii) temporal lobe epilepsy (TLE). Whole exome sequencing data of 238 patients with IGE as well as Sanger sequencing of 84 patients with TLE were evaluated for GRIN2A sequence alterations. Two additional independent cohorts comprising 1469 IGE and 330 TLE patients were screened for structural deletions (&gt;40kb) involving GRIN2A. Apart from a presumably benign, non-segregating variant in a patient with juvenile absence epilepsy, neither mutations nor deletions were detected in either cohort. These findings suggest that mutations in GRIN2A preferentially are involved in genetic variance of pediatric IFE and do not contribute significantly to either adult focal epilepsies as TLE or generalized epilepsies. "	"Partial deletions of the RBFOX1 gene encoding the neuronal splicing regulator have been reported in a range of neurodevelopmental diseases including idiopathic/genetic generalized epilepsy (IGE/GGE), childhood focal epilepsy, and self-limited childhood benign epilepsy with centrotemporal spikes (BECTS, rolandic epilepsy), and autism. The protein regulates alternative splicing of many neuronal transcripts involved in the homeostatic control of neuronal excitability. Herein, we examined whether structural deletions affecting RBFOX1 exons confer susceptibility to common forms of juvenile and adult focal epilepsy syndromes. We screened 807 unrelated patients with sporadic focal epilepsy, and we identified seven hemizygous exonic RBFOX1 deletions in patients with sporadic focal epilepsy (0.9%) in comparison to one deletion found in 1,502 controls. The phenotypes of the patients carrying RBFOX1 deletions comprise magnetic resonance imaging (MRI)-negative epilepsy of unknown etiology with frontal and temporal origin (n = 5) and two patients with temporal lobe epilepsy with hippocampal sclerosis. The epilepsies were largely pharmacoresistant but not associated with intellectual disability. Our study extends the phenotypic spectrum of RBFOX1 deletions as a risk factor for focal epilepsy and suggests that exonic RBFOX1 deletions are involved in the broad spectrum of focal and generalized epilepsies."	"Genetic generalised epilepsy (GGE) is the most common form of genetic epilepsy, accounting for 20% of all epilepsies. Genomic copy number variations (CNVs) constitute important genetic risk factors of common GGE syndromes. In our present genome-wide burden analysis, large (≥ 400 kb) and rare (&lt; 1%) autosomal microdeletions with high calling confidence (≥ 200 markers) were assessed by the Affymetrix SNP 6.0 array in European case-control cohorts of 1,366 GGE patients and 5,234 ancestry-matched controls. We aimed to: 1) assess the microdeletion burden in common GGE syndromes, 2) estimate the relative contribution of recurrent microdeletions at genomic rearrangement hotspots and non-recurrent microdeletions, and 3) identify potential candidate genes for GGE. We found a significant excess of microdeletions in 7.3% of GGE patients compared to 4.0% in controls (P = 1.8 x 10-7; OR = 1.9). Recurrent microdeletions at seven known genomic hotspots accounted for 36.9% of all microdeletions identified in the GGE cohort and showed a 7.5-fold increased burden (P = 2.6 x 10-17) relative to controls. Microdeletions affecting either a gene previously implicated in neurodevelopmental disorders (P = 8.0 x 10-18, OR = 4.6) or an evolutionarily conserved brain-expressed gene related to autism spectrum disorder (P = 1.3 x 10-12, OR = 4.1) were significantly enriched in the GGE patients. Microdeletions found only in GGE patients harboured a high proportion of genes previously associated with epilepsy and neuropsychiatric disorders (NRXN1, RBFOX1, PCDH7, KCNA2, EPM2A, RORB, PLCB1). Our results demonstrate that the significantly increased burden of large and rare microdeletions in GGE patients is largely confined to recurrent hotspot microdeletions and microdeletions affecting neurodevelopmental genes, suggesting a strong impact of fundamental neurodevelopmental processes in the pathogenesis of common GGE syndromes. "	"Recent studies reported DEPDC5 loss-of-function mutations in different focal epilepsy syndromes. Here we identified 1 predicted truncation and 2 missense mutations in 3 children with rolandic epilepsy (3 of 207). In addition, we identified 3 families with unclassified focal childhood epilepsies carrying predicted truncating DEPDC5 mutations (3 of 82). The detected variants were all novel, inherited, and present in all tested affected (n=11) and in 7 unaffected family members, indicating low penetrance. Our findings extend the phenotypic spectrum associated with mutations in DEPDC5 and suggest that rolandic epilepsy, albeit rarely, and other nonlesional childhood epilepsies are among the associated syndromes."
+"Lapin, Brittany"	"Quantitative Health Sciences"	30759300	30314624	30092893	30135254	30587028	30381370	29592886	29708224	25532738	24954277	"Assessment of outcomes from a proxy is often substituted for the patient's self-report when the patient is unable or unwilling to report their status. Research has indicated that proxies over-report symptoms on the patient's behalf. This study aimed to quantify the extent of proxy-introduced bias on the Patient-Reported Outcomes Measurement Information System Global Health (PROMIS GH) scale for mental (GMH) and physical (GPH) scores. This retrospective cohort study included incident stroke patients seen in a cerebrovascular clinic who completed PROMIS GH between 10/12/15 and 6/6/18. Differential item functioning (DIF) evaluated measurement invariance of patient versus proxy responses. DIF impact was assessed by comparing the initial score to the DIF-adjusted score. Subgroup analyses evaluated DIF within strata of stroke severity, measured by modified Rankin Scale (≤ 1, 2, 3+), and time since stroke (≤ 30, 31-90, &gt; 90 days). Of 1351 stroke patients (age 60.5 ± 14.9, 45.1% female), proxy help completing PROMIS GH was required by 406 patients (30.1%). Proxies indicated significantly worse response to all items. No items for GMH or GPH were identified as having meaningful DIF. In subgroup analyses, no DIF was found by severity or 31-90 days post-stroke. In patients within 30 and &gt; 90 days of stroke, DIF was detected for 2 items. Accounting for DIF had negligible effects on scores. Our findings revealed the overestimation of symptoms by proxies is a real difference and not the result of measurement non-invariance. PROMIS GH items do not perform differently or have spuriously inflated severity estimates when administered to proxies instead of patients."	"To examine the accuracy of general health cross-walk tables in a clinical sample of patients with spine disorders. Published tables (Schalet BD, Rothrock NE, Hays RD, et al. Linking physical and mental health summary scores from the Veterans RAND 12-Item Health Survey (VR-12) to the PROMIS(®) Global Health Scale. J Gen Intern Med 2015;30:1524-30) link scores from the Veterans RAND 12-Item Health Survey (VR-12) to the 10-Item Patient-Reported Outcome Measurement Information System (PROMIS), a global health scale metric for both mental (GMH) and physical (GPH) summary scores. We assessed the accuracy of administered PROMIS and VR-12 scores with scores predicted by cross-walks in 4606 adult patients seen in a spine clinic from October 2015 to 2016. Accuracy of linking scores was evaluated using Pearson correlation, intraclass correlation coefficients, and mean and SD of score differences. Bland-Altman plots were used to graphically assess the levels of agreement. The consistency in scores' discrimination across levels of pain severity, depression, and other patient characteristics was assessed. Bootstrap methods estimated linking precision across varying sample sizes. Actual and cross-walked PROMIS scores showed moderate correlation (ICC(3,1): GMH 0.73; GPH 0.81), with Bland-Altman plots suggesting smaller differences between scores in patients with lower and higher general health. Significant discrimination between patient subgroups was demonstrated reliably by both actual and estimated scores. Bootstrapped resamples indicated adequate precision for 200 patients (95% confidence interval for mean difference: GMH -1.38 to 0.60; GPH 0.39 to 1.93). VR-12 and PROMIS global health scores can be accurately linked within a sample of patients with spine disorders; nevertheless, bias is high and precision is low for linking on the patient level. Linked scores at the group level for more than 200 patients can be used in comparative effectiveness research and for comparing results across studies."	"The Epworth Sleepiness Scale (ESS) is used by clinicians and researchers to determine level of daytime sleepiness. The number of factors included in the scale has been debated. Our study objective was to clarify the dimensionality of the ESS using a large clinical sample. A retrospective cohort study included all patients presenting for care in a tertiary care sleep disorders center who answered all items on the ESS from January 8, 2008 to September 28, 2012. Dimensionality was assessed using scree plot, eigenvalues, factor loadings, principal factor analysis, and confirmatory factor analysis. Multigroup confirmatory factor analysis (MGCFA) evaluated dimensionality within 10 subgroups of clinical interest. The mean age of the 10,785 study participants was 50 (± 15) years with 49% female, and 81% white. The one-factor solution explained 63% of the variability in responses with high factor loadings (&gt; .67 for all 8 items). The scree plot identified one factor with eigenvalue &gt; 1. Results of confirmatory factor analysis demonstrated a one-factor solution had acceptable goodness of fit as assessed by root mean square error of approximation of .094 (90% confidence interval: .089-.099). MGCFA confirmed measurement invariance within all 10 demographic and clinical subgroups. Our study confirmed the unidimensionality of the ESS in a large diverse clinical population. Results from this study can be used to justify the interpretation of the ESS within clinical populations, and supports valid comparisons between groups based on the ESS. Future studies are warranted to further understand the items comprising the ESS and potentially eliminate redundant items for increased efficiency in clinical settings."	"To quantify the neurologic patient experience with patient-reported outcome measures (PROMs) and identify factors associated with a positive PROMs experience. This retrospective study included all patients seen in 6 neurologic clinics who completed patient experience questions at least once between October 2015 and September 2016. Questions assessed overall satisfaction with PROMs, as well as 4 facets of the PROM experience: usefulness of questions, ease of understanding, effect on communication with provider, and effect on control of their own care. Clinic and patient characteristics were summarized across questions and predictors of response were identified using multivariable proportional odds models. A total of 16,157 patients answered generic and condition-specific PROMs, as well as questions on their experience with completing PROMs. The majority of patients agreed/strongly agreed questions were easy to understand (96%), useful (83%), and improved communication (78%) and control (71%). After adjustment for other factors, being younger, black, or depressed, or having lower household income, were independent predictors of high satisfaction with PROMs. Patients who indicated the system improved communication and control of care were more often male, black, and lower income. Variability in responses was shown by clinic. Given the growing importance of patient satisfaction in health care, the patient experience with PROMs is a critical component of their successful implementation and utilization. Findings from this study support the feasibility of collecting PROMs in neurologic practice and the potential as a tool to optimize patient-centered neurologic care."	"Patient-reported outcome measures are increasingly being utilized in clinical care and research to evaluate outcomes following stroke. To optimize the clinical utility of these measures, we aimed to quantify meaningful change by establishing minimal important differences (MIDs), or responder definitions, for 4 domains affected in ischemic and hemorrhagic stroke patients. We performed a retrospective cohort study of stroke patients seen in the Cleveland Clinic cerebrovascular center between September 2, 2012 and November 7, 2017. Four Patient-Reported Outcome Measurement Information System (PROMIS) scales were completed within 1 month poststroke and again at 6 months. MIDs were estimated using an anchor-based approach based on a global impression of change question and supported using 3 distribution-based methods. Cumulative distribution functions assessed responder thresholds. MIDs were additionally derived across sex, race, and varying levels of severity as defined by the modified Rankin Score and baseline PROMIS score. During the study period, 337 incident stroke patients completed at least 1 PROMIS domain scale at both time points (average age 61±14, 56% female). Estimates from the 4 methods were triangulated to provide a MID range across PROMIS domain: 2.5 to 6.5 T-score points for physical function and fatigue, 2.5 to 7.5 for social role satisfaction, and 3.0 to 8.0 for anxiety. Cumulative distribution functions plots identified between 30% and 40% of patients as having meaningful improvement based on the anchor-based estimates across all 4 domains. Meaningful change thresholds remained consistent across categories of sex and race. Anchor-based MIDs increased with increasing severity, whereas distribution-based MIDs remained consistent across severity levels. Our study is the first to evaluate interpretability of changes in PROMIS scores for stroke survivors. Future studies can utilize these thresholds to identify responders of stroke interventions. Based on our estimated MID ranges, researchers and clinicians can choose a responder threshold for comparing change in domain score at the group level, individual level, or by severity."	"To compare the degrees to which 8 domains of health are affected across types of cerebrovascular events and to identify factors associated with domain scores in different event types. This was an observational cohort study of 2,181 patients with ischemic stroke, intracerebral hemorrhage (ICH), subarachnoid hemorrhage (SAH), or TIA in a cerebrovascular clinic from February 17, 2015, to June 2, 2017 who completed Quality of Life in Neurologic Disorders executive function and the following Patient-Reported Outcomes Measurement Information System scales as part of routine care: physical function, satisfaction with social roles, fatigue, anxiety, depression, pain interference, and sleep disturbance. All health domains were affected to similar degrees in patients with ICH, SAH, and ischemic stroke after adjustment for disability and other clinical factors, whereas patients with TIA had worse adjusted scores for 5 of the 8 domains of health. Female sex, younger age, lower income, and event &lt;90 days were associated with worse scores in multiple domains. Factors associated with health domain scores were similar for all cerebrovascular events. Most affected domains for all were physical function, satisfaction with social roles, and executive function. The subtype of stroke (ischemic stroke, ICH, and SAH) had similar effects in multiple health domains, while patients with TIA had worse adjusted outcomes, suggesting that the mechanisms for outcomes after TIA may differ from those of other cerebrovascular events. The most affected domains across all event types were physical function, satisfaction with social roles, and executive function, highlighting the need to develop effective interventions to improve these health domains in survivors of these cerebrovascular events."	"(1) Examine 8 patient-reported domains of health across levels of disability compared to the US general population; and (2) identify factors associated with domain scores in patients with ischemic stroke. Observational cohort study of 1,195 patients in a cerebrovascular clinic from February 17, 2015, to January 27, 2017, who completed Neuro-QoL (Quality of Life in Neurological Disorders) executive function or the following PROMIS (Patient-Reported Outcomes Measurement Information System) scales as part of routine care: physical function, satisfaction with social roles, fatigue, anxiety, depression, pain interference, and sleep disturbance. Mean age was 62 (±15) years, and 81% were white. Median modified Rankin Scale (mRS) score at the clinic visit was 1 (interquartile range 0-2). Percentage of patients with scores meaningfully worse than the general population ranged from 28% (sleep disturbance) to 63% (physical function). Scores were worse in patients with higher mRS levels, although correlation between scores and mRS level varied (sleep disturbance r = 0.16 to physical function r = 0.52). Most affected domains were physical function (T score = 58.8), satisfaction with social roles (T score = 55.4), and executive function (T score = 53.4). Disability, lower income, and female sex were associated with worse scores in multiple domains. Age was associated with worse physical function but lower anxiety, depression, and sleep disturbance. Patients with ischemic stroke reported symptoms in multiple domains that increase to variable degrees at higher levels of disability. Physical function, satisfaction with social roles, and executive function were most affected. This information improves our understanding of the well-being of patients with ischemic stroke and brings attention to the importance of social roles and executive function for stroke survivors."	"We sought to assess neurologic provider satisfaction with the systematic electronic collection of patient-reported outcome measures (PROMs) for both disease-specific measures and depression screening (Patient Health Questionnaire [PHQ-9]). A web-based survey was sent to 299 staff physicians and advanced practice providers on the staff email list of a large group neurologic practice, of whom 206 used the PROM system. The survey consisted of 11 questions with Likert response options regarding perceived usefulness of PROM collection; usefulness of PROM data for clinical care, quality, and research activities according to provider age group and type; and perceived usefulness between disease-specific information and the PHQ-9 depression screen. Of those who use the PROM system, 73.3% (151/206) responded. PROM collection was useful for patient care (strongly agree or agree 59.6%), research (strongly agree or agree 68.5%), and to a lesser extent, quality improvement (strongly agree or agree 48.6%). Providers aged 66-75 years believed PROM data were less useful for research (p &lt; 0.01). PROM collection affected patient interactions or clinical management (always or usually 34.6% for disease-specific information and 31.3% for the PHQ-9). Responses were similar concerning perceived clinical usefulness (strongly agree or agree 67.3%) for center-selected disease-specific PROMs and the mandated PHQ-9 (69.8%). Providers favorably viewed systematic electronic collection of PROMs in neurologic patients. A mandated depression screening was perceived as favorably as center-selected disease-specific information and should be considered when implementing PROMs in neurologic practice."	"Asthma prevalence has doubled in developed countries during the past 30 years. Pre- and perinatal events are essential in shaping the development of the immune system and systemic antibiotic use during this time could alter the maternal or placental microbiome, leading to an increase in the child's risk of developing asthma. To determine whether prenatal antibiotic use is associated with asthma and wheezing in children at risk for asthma. Using data from a randomized education intervention of families at risk for asthma from 1998 followed through 2009 in urban Chicago, asthma was defined as ever having a physician asthma diagnosis by year 3 and wheezing in the third year. Logistic regression models controlling for confounders investigated the effect of antibiotic use during pregnancy on these outcomes. After adjustment, prenatal antibiotic use was a risk factor for asthma (odds ratio 3.1, 95% confidence interval 1.4-6.8) but was only weakly associated with wheezing (odds ratio 1.8, 95% confidence interval 0.9-3.3). Analyses of the effects of timing of prenatal antibiotic use on asthma and wheezing showed the relation remained consistent for antibiotic use later in pregnancy, but the outcomes were not associated with antibiotic use in the first trimester. This study suggests prenatal antibiotic use might be associated with the development of asthma in children at risk for asthma. Although the relation with prenatal antibiotics does not hold for wheezing in this study, there might be a trend that could be delineated further within a larger cohort study."	NA
+"Lathia, Justin"	"Cardiovascular and Metabolic Sciences"	31018124	30595497	30877099	30729665	30385717	29699876	29644711	29422613	29282720	28664387	"Gap-junction-mediated cell-cell communication enables tumor cells to synchronize complex processes. We previously found that glioblastoma cancer stem cells (CSCs) express higher levels of the gap junction protein Cx46 compared to non-stem tumor cells (non-CSCs) and that this was necessary and sufficient for CSC maintenance. To understand the mechanism underlying this requirement, we use point mutants to disrupt specific functions of Cx46 and find that Cx46-mediated gap-junction coupling is critical for CSCs. To develop a Cx46 targeting strategy, we screen a clinically relevant small molecule library and identify clofazimine as an inhibitor of Cx46-specific cell-cell communication. Clofazimine attenuates proliferation, self-renewal, and tumor growth and synergizes with temozolomide to induce apoptosis. Although clofazimine does not cross the blood-brain barrier, the combination of clofazimine derivatives optimized for brain penetrance with standard-of-care therapies may target glioblastoma CSCs. Furthermore, these results demonstrate the importance of targeting cell-cell communication as an anti-cancer therapy."	"Tumors are composed of non-homogeneous cell populations exhibiting varying degrees of genetic and functional heterogeneity. Cancer stem cells (CSCs) are capable of sustaining tumors by manipulating genetic and non-genetic factors to metastasize, resist treatment, and maintain the tumor microenvironment. Understanding the key traits and mechanisms of CSC survival provides opportunities to improve patient outcomes via improved prognostic models and therapeutics. Here, we review the clinical significance of CSCs and results of potential CSC-targeting therapies in various cancers. We discuss barriers to translating cues from pre-clinical models into clinical applications and propose new strategies for rational design of future anti-CSC trials."	"While many molecular alterations in glioblastoma (GBM), the most common primary malignant brain tumor, have been defined, the intricate signaling networks associated with these alterations that represent actionable therapeutic targets are less well established. Chen and colleagues leverage a Drosophila GBM model to identify a conserved signaling axis downstream of the EGFR and PI3K that involves the death-associated protein kinase (Drak), a cytoplasmic serine/threonine kinase orthologous to the human kinase STK17A. Functional studies revealed that targeting this signaling axis attenuated mitosis and cytokinesis, providing a new pathway for therapeutic development in GBM.See related article by Chen et al., p. 1085."	"Cancer stem cells (CSCs) are a heterogeneous and dynamic self-renewing population that stands at the top of tumor cellular hierarchy and contribute to tumor recurrence and therapeutic resistance. As methods of CSC isolation and functional interrogation advance, there is a need for a reliable and accessible quantitative approach to assess heterogeneity and state transition dynamics in CSCs. We developed a high-throughput automated single cell imaging analysis (HASCIA) approach for the quantitative assessment of protein expression with single-cell resolution and applied the method to investigate spatiotemporal factors that influence CSC state transition using glioblastoma (GBM) CSCs (GSCs) as a model system. We were able to validate the quantitative nature of this approach through comparison of the protein expression levels determined by HASCIA to those determined by immunoblotting. A virtue of HASCIA was exemplified by detection of a subpopulation of SOX2-low cells, which expanded in fraction size during state transition. HASCIA also revealed that GSCs were committed to loose stem cell state at an earlier time point than the average SOX2 level decreased. Functional assessment of stem cell frequency in combination with the quantification of SOX2 expression by HASCIA defined a stable cutoff of SOX2 expression level for stem cell state. We also developed an approach to assess local cell density and found that denser monolayer areas possess higher average levels of SOX2, higher cell diversity, and a presence of a sub-population of slowly proliferating SOX2-low GSCs. HASCIA is an open source software that facilitates understanding the dynamics of heterogeneous cell population such as that of GSCs and their progeny. It is a powerful and easy-to-use image analysis and statistical analysis tool available at https://hascia.lerner.ccf.org. © 2019 International Society for Advancement of Cytometry."	"Glioblastoma (GBM) remains uniformly lethal, and despite a large accumulation of immune cells in the microenvironment, there is limited antitumor immune response. To overcome these challenges, a comprehensive understanding of GBM systemic immune response during disease progression is required. Here, we integrated multiparameter flow cytometry and mass cytometry TOF (CyTOF) analysis of patient blood to determine changes in the immune system among tumor types and over disease progression. Utilizing flow cytometry analysis in a cohort of 259 patients ranging from benign to malignant primary and metastatic brain tumors, we found that GBM patients had a significant elevation in myeloid-derived suppressor cells (MDSCs) in peripheral blood but not immunosuppressive Tregs. In GBM patient tissue, we found that increased MDSC levels in recurrent GBM portended poor prognosis. CyTOF analysis of peripheral blood from newly diagnosed GBM patients revealed that reduced MDSCs over time were accompanied by a concomitant increase in DCs. GBM patients with extended survival also had reduced MDSCs, similar to the levels of low-grade glioma (LGG) patients. Our findings provide a rationale for developing strategies to target MDSCs, which are elevated in GBM patients and predict poor prognosis."	NA	"Glioblastoma is a malignant brain tumor that inevitably develops resistance to standard of care drug temozolomide (TMZ) due to a population of cells called cancer stem cells (CSCs). These cells utilize progenitor cell signaling programs and develop robust DNA repair machinery. In this editorial highlight we focus on stem cell regulation of TMZ resistance and discuss findings of Happold et al. () that outline direct transcriptional regulation of DNA repair enzyme O6-methylguanine DNA methyltransferase (MGMT) in glioblastoma CSCs through NFkB activation. The authors found that cells cultured in CSC propagating conditions exhibit increase in MGMT expression when compared to adherent differentiated monolayer cells. This in turn increases resistance to standard of care drug temozolomide (TMZ) in these cells. NFkB activation was found to directly activate expression of MGMT in sphere cultured GBM CSC."	"Tumors adapt their phenotypes during growth and in response to therapies through dynamic changes in cellular processes. Connexin proteins enable such dynamic changes during development, and their dysregulation leads to disease states. The gap junction communication channels formed by connexins have been reported to exhibit tumor-suppressive functions, including in triple-negative breast cancer (TNBC). However, we find that connexin 26 (Cx26) is elevated in self-renewing cancer stem cells (CSCs) and is necessary and sufficient for their maintenance. Cx26 promotes CSC self-renewal by forming a signaling complex with the pluripotency transcription factor NANOG and focal adhesion kinase (FAK), resulting in NANOG stabilization and FAK activation. This FAK/NANOG-containing complex is not formed in mammary epithelial or luminal breast cancer cells. These findings challenge the paradigm that connexins are tumor suppressors in TNBC and reveal a unique function for Cx26 in regulating the core self-renewal signaling that controls CSC maintenance."	"Glioblastoma (GBM) cancer stem cells (CSCs) are insidious. They extensively infiltrate brain tissue, resist radiotherapy and chemotherapy, and are thought to represent the ultimate drivers of disease progression. New research has identified CD109, a GPI-anchored protein, on a population of perivascular CSCs. Investigation of primary human tumour tissue suggests a role for CD109-expressing CSCs in the progression from low-grade to high-grade glioma, and animal modelling reveals a critical role for CD109 in the maintenance of the GBM CSC phenotype. Furthermore, CD109-expressing CSCs appear to drive the proliferation of adjacent non-stem tumour cells (NSTCs) in a rare example of CSC-NSTC cooperative interaction. With this Commentary, we highlight the newly revealed biology of CD109, and offer a synthesis of the published information on glioma CSCs in a variety of anatomical growth zones. We also discuss the landscape of interacting cells within GBM tumours, emphasizing the few reported examples of pro-tumourigenic, interactive tumour cell partnerships, as well as a variety of tumour cell-non-transformed neural cell interactions. Copyright © 2017 Pathological Society of Great Britain and Ireland. Published by John Wiley &amp; Sons, Ltd."	"Advances in cancer research in the past have led to an evolving understanding of cancer pathogenesis and the development of novel drugs that significantly improve patient outcomes. However, many patients still encounter treatment resistance, recurrence, or metastasis and eventually die from progressing disease. Experimental evidence indicates that a subpopulation of cancer cells, called cancer stem cells (CSCs), possess &quot;stemness&quot; properties similar to normal stem cells, including self-renewal, differentiation, and proliferative potential. These stemness properties are lost during differentiation and are governed by pathways such as STAT3, NANOG, NOTCH, WNT, and HEDGEHOG, which are highly dysregulated in CSCs due to genetic and epigenetic changes. Promising results have been observed in preclinical models targeting these CSCs through the disruption of stemness pathways in combination with current treatment modalities. This has led to anti-CSC-based clinical trials in multiple stages of development. In this review, we discuss the role of CSCs and stemness pathways in cancer treatment and how they relate to clinical observations. Because CSCs and the stemness pathways governing them may explain the negative clinical outcomes observed during treatment, it is important for oncologists to understand how they contribute to cancer progression and how they may be targeted to improve patient outcomes."
+"Lee, Byron"	"Cardiovascular and Metabolic Sciences"	29209771	28753780	25294696	27646943	23233737	21683989	21146865	16230360	23021664	26628371	"To understand the longitudinal renal function trends in patients undergoing radical nephroureterectomy (RNU) and identify clinicopathologic characteristics associated with estimated glomerular filtration rate (eGFR) recovery. 147 patients were available for analysis. Longitudinal eGFR trends were assessed by plotting each patient's eGFR measurements over time. The patient population was dichotomized using eGFR &lt; 60 ml/min/1.73 m<sup>2</sup> versus ≥ 60 ml/min/1.73 m<sup>2</sup>. Cumulative incidence and competing risk regression analysis were used to estimate recovery of postoperative eGFR to the preoperative level and identify clinicopathologic characteristics associated with eGFR recovery. Median age was 68.7 years and median preoperative eGFR was 55.9 ml/min/1.73 m<sup>2</sup>. 63.6% were male and 95.8% were white. The cumulative incidence of eGFR recovery was significantly higher in patients with baseline eGFR &lt; 60 ml/min/1.73 m<sup>2</sup> compared to those with baseline eGFR ≥ 60 ml/min/1.73 m<sup>2</sup> (p = 0.01), with recovery rates at 2 years of 56.6% vs. 27.7%, respectively. Multivariable analysis revealed that preoperative hydronephrosis (HR 1.80) and preoperative eGFR &lt; 60 ml/min/1.73 m<sup>2</sup> (HR 1.87) were associated with increased chance of eGFR recovery. Over half of patients with preoperative eGFR &lt; 60 ml/min/1.73 m<sup>2</sup> achieved eGFR recovery within the first 3 years after RNU, and hydronephrosis was a significant predictor of recovery. These findings should be considered when counseling patients regarding chronic kidney disease progression after RNU and timing of perioperative chemotherapy for high risk tumors."	"Clear cell renal cell carcinoma (RCC) continues to be the most commonly diagnosed subtype and is associated with more aggressive behavior than papillary and chromophobe RCC. Predicting disease recurrence after surgical extirpation is important for counseling and targeting those at high risk for adjuvant therapy clinical trials. To validate a postoperative nomogram predicting 5-yr recurrence-free probability (RFP) for clinically localized clear cell RCC. We identified all patients who underwent nephrectomy for clinically localized clear cell RCC from 1990 to 2009 at Memorial Sloan Kettering Cancer Center. After excluding patients with bilateral renal masses, familial RCC syndromes, and T3c or T4 tumors due to the limited number, 1642 participants were available for analysis. Partial or radical nephrectomy. Disease recurrence was defined as any new tumor after nephrectomy or kidney cancer-specific mortality, whichever occurred first. A postoperative nomogram was used to calculate the predicted 5-yr RFP, and these values were compared with the actual 5-yr RFP. Nomogram performance was evaluated by concordance index and calibration plot. Median follow-up was 39 mo (interquartile range: 14-79 mo), and disease recurrence was observed in 50 patients. The nomogram concordance index was 0.81. The calibration curve showed that the nomogram underestimated the actual 5-yr RFP. We updated the nomogram by including the entire patient population, which maintained performance and significantly improved calibration. The updated clear cell RCC postoperative nomogram performed well in the combined cohort. Underestimation of actual 5-yr RFP by the original nomogram may be due to increased surgeon experience and other unknown variables. We updated a valuable prediction tool used for assessing the disease recurrence probability after nephrectomy for clear cell renal cell carcinoma."	"Due to the protracted natural history of the clinical progression of prostate cancer, biochemical recurrence (BCR) is often used to compare treatment modalities. However, BCR definitions and posttreatment prostate-specific antigen kinetics vary considerably among treatments, calling into the question the validity of such comparisons. To analyze prostate cancer-specific mortality (PCSM) according to treatment-specific nomogram-predicted risk of BCR for men treated by radical prostatectomy (RP), external-beam radiation therapy (EBRT), and brachytherapy. A total of 13 803 men who underwent RP, EBRT, or brachytherapy at two US high-volume hospitals between 1995 and 2008. RP, EBRT, and brachytherapy. The 5-yr progression-free probability (5Y-PFP) was calculated for each patient based on the treatment received using a validated treatment-specific nomogram. Fine and Gray competing risk analysis was then used to estimate PCSM by a patient's predicted 5Y-PFP. Multivariable competing risk regression analysis was used to determine the association of treatment with PCSM after adjusting for nomogram-predicted 5Y-PFP. Men receiving EBRT had higher 10-yr PCSM compared with those treated by RP across the range of nomogram-predicted risks of BCR: 5Y-PFP &gt;75%, 3% versus 0.9%; 5Y-PFP 51-75%, 6.8% versus 5.9%; 5Y-PFP 26-50%, 12.2% versus 10.6%; and 5Y-PFP ≤25%, 26.6% versus 21.2%. After adjusting for nomogram-predicted 5Y-PFP, EBRT was associated with a significantly increased PCSM risk compared with RP (hazard ratio: 1.5; 95% confidence interval, 1.1-2.0; p=0.006). No statistically significant difference in PCSM was observed between patients treated by brachytherapy and RP, although patient selection factors and lack of statistical power limited this analysis. EBRT patients with similar nomogram-predicted 5Y-PFP appear to have a significantly increased risk of PCSM compared with those treated by RP. Comparison of treatments using nomogram-predicted BCR end points may not be valid. Biochemical recurrence (BCR) outcomes after external-beam radiation therapy and radical prostatectomy are associated with different risks of subsequent prostate cancer-specific mortality. Physicians and patients should cautiously interpret BCR end points when comparing treatments to make treatment decisions."	"Purpose Owing to its exquisite chemotherapy sensitivity, most patients with metastatic germ cell tumors (GCTs) are cured with cisplatin-based chemotherapy. However, up to 30% of patients with advanced GCT exhibit cisplatin resistance, which requires intensive salvage treatment, and have a 50% risk of cancer-related death. To identify a genetic basis for cisplatin resistance, we performed whole-exome and targeted sequencing of cisplatin-sensitive and cisplatin-resistant GCTs. Methods Men with GCT who received a cisplatin-containing chemotherapy regimen and had available tumor tissue were eligible to participate in this study. Whole-exome sequencing or targeted exon-capture-based sequencing was performed on 180 tumors. Patients were categorized as cisplatin sensitive or cisplatin resistant by using a combination of postchemotherapy parameters, including serum tumor marker levels, radiology, and pathology at surgical resection of residual disease. Results TP53 alterations were present exclusively in cisplatin-resistant tumors and were particularly prevalent among primary mediastinal nonseminomas (72%). TP53 pathway alterations including MDM2 amplifications were more common among patients with adverse clinical features, categorized as poor risk according to the International Germ Cell Cancer Collaborative Group (IGCCCG) model. Despite this association, TP53 and MDM2 alterations predicted adverse prognosis independent of the IGCCCG model. Actionable alterations, including novel RAC1 mutations, were detected in 55% of cisplatin-resistant GCTs. Conclusion In GCT, TP53 and MDM2 alterations were associated with cisplatin resistance and inferior outcomes, independent of the IGCCCG model. The finding of frequent TP53 alterations among mediastinal primary nonseminomas may explain the more frequent chemoresistance observed with this tumor subtype. A substantial portion of cisplatin-resistant GCTs harbor actionable alterations, which might respond to targeted therapies. Genomic profiling of patients with advanced GCT could improve current risk stratification and identify novel therapeutic approaches for patients with cisplatin-resistant disease."	"Recent epidemiologic data show that low serum cholesterol level as well as statin use is associated with a decreased risk of developing aggressive or advanced prostate cancer, suggesting a role for cholesterol in aggressive prostate cancer development. Intracellular cholesterol promotes prostate cancer progression as a substrate for de novo androgen synthesis and through regulation of AKT signaling. By conducting next-generation sequencing-based DNA methylome analysis, we have discovered marked hypermethylation at the promoter of the major cellular cholesterol efflux transporter, ABCA1, in LNCaP prostate cancer cells. ABCA1 promoter hypermethylation renders the promoter unresponsive to transactivation and leads to elevated cholesterol levels in LNCaP. ABCA1 promoter hypermethylation is enriched in intermediate- to high-grade prostate cancers and not detectable in benign prostate. Remarkably, ABCA1 downregulation is evident in all prostate cancers examined, and expression levels are inversely correlated with Gleason grade. Our results suggest that cancer-specific ABCA1 hypermethylation and loss of protein expression direct high intracellular cholesterol levels and hence contribute to an environment conducive to tumor progression."	"To assess the utility of the percent free prostate-specific antigen (%fPSA) for the prediction of prostate cancer in men undergoing repeat biopsy. A retrospective review was performed of 1037 patients in an institutional review board-approved repeat prostate biopsy database. A total of 617 patients who underwent 683 biopsies had all their data available for analysis. The patients were categorized as having undergone 1 repeat biopsy or &gt;1 repeat biopsy. The overall cancer detection rate was 27% and 22% in men who underwent 1 and &gt;1 repeat biopsy, respectively. The area under the receiver operating characteristic curve for the %fPSA was 0.65 for men who underwent 1 repeat biopsy. Multivariate analysis demonstrated that a positive family history, decreasing %fPSA, and presence of high-grade intraepithelial neoplasia and/or atypical small acinar proliferation predicted for cancer. The univariate odds ratio for every 5% decrease in the %fPSA was 1.5 (95% confidence interval 1.2-1.7). The performance of %fPSA was further improved in men who underwent &gt;1 repeat biopsy, with an area under the curve of 0.72. In men who underwent &gt;1 repeat biopsy, multivariate analysis showed that a decreasing %fPSA, &gt;20 cores removed, and high-grade intraepithelial neoplasia predicted for cancer. The univariate odds ratio for every 5% decrease in the %fPSA was 1.8 (95% confidence interval 1.4-2.3). A %fPSA cutoff of 10% achieved 90% and 91% specificity in the 1 repeat biopsy and &gt;1 repeat biopsy groups, respectively. %fPSA is useful in predicting for prostate cancer in the repeat biopsy population, particularly for those who have undergone multiple repeat biopsies. A persistently low %fPSA should prompt additional investigation in these men."	"To validate the performance of percentage of free prostate-specific antigen (%fPSA) in men undergoing extended scheme biopsy. The current cutoff values for %fPSA were chosen using data from sextant biopsies, which have been known to miss a significant number of prostate cancer cases. Additionally, we sought to validate the use of %fPSA in men with a total PSA &lt; 4.0 ng/mL or &gt; 10.0 ng/mL. We evaluated %fPSA performance in 1077 men who had undergone initial extended prostate biopsy. The men were categorized according to their PSA level into 2 groups (&gt;4.0 and ≤4.0) ng/mL. The overall cancer detection rate was 42.1%. The mean PSA level was 7.6 ng/mL, and the mean %fPSA was 18.0%. The area under the curve for %fPSA was 0.59 (95% confidence interval 0.57-0.61) for all PSA levels, comparable to previous reports from sextant biopsy series. The performance of %fPSA in predicting prostate cancer on initial extended biopsy was improved with a PSA level of ≤4.0 ng/mL (area under the curve 0.66, 95% confidence interval 0.62-0.70) compared with a PSA level &gt;4.0 ng/mL (area under the curve 0.57, 95% confidence interval 0.55-0.59; P &lt; .001). A specificity of 85% was achieved for a %fPSA cutoff of 11% for the ≤4.0-ng/mL group and 10% for the &gt;4.0-ng/mL group. The performance of %fPSA in predicting the presence of prostate cancer was not altered when an extended biopsy scheme was used. Although a %fPSA level greater than our cutoffs would not rule out prostate cancer, a low %fPSA would be particularly useful in predicting prostate cancer, especially in men with normal digital rectal examination findings and a PSA level &lt;4 ng/mL."	"CpG island hypermethylation occurs in most cases of cancer, typically resulting in the transcriptional silencing of critical cancer genes. Procainamide has been shown to inhibit DNA methyltransferase activity and reactivate silenced gene expression in cancer cells by reversing CpG island hypermethylation. We report here that procainamide specifically inhibits the hemimethylase activity of DNA methyltransferase 1 (DNMT1), the mammalian enzyme thought to be responsible for maintaining DNA methylation patterns during replication. At micromolar concentrations, procainamide was found to be a partial competitive inhibitor of DNMT1, reducing the affinity of the enzyme for its two substrates, hemimethylated DNA and S-adenosyl-l-methionine. By doing so, procainamide significantly decreased the processivity of DNMT1 on hemimethylated DNA. Procainamide was not a potent inhibitor of the de novo methyltransferases DNMT3a and DNMT3b2. As further evidence of the specificity of procainamide for DNMT1, procainamide failed to lower genomic 5-methyl-2'-deoxycytidine levels in HCT116 colorectal cancer cells when DNMT1 was genetically deleted but significantly reduced genomic 5-methyl-2'-deoxycytidine content in parental HCT116 cells and in HCT116 cells where DNMT3b was genetically deleted. Because many reports have strongly linked DNMT1 with epigenetic alterations in carcinogenesis, procainamide may be a useful drug in the prevention of cancer."	"To assess the impact of imperative or elective indications on the perioperative outcomes of patients undergoing robotic partial nephrectomy. Between January 2008 and August 2011, 381 consecutive robotic partial nephrectomies were retrospectively included. Two groups of patients were identified: those who underwent the procedure for an imperative indication (n = 98) and those who underwent the procedure for an elective indication (n = 283). Perioperative and renal function outcomes were compared between the 2 groups. Multivariate analysis was performed to determine whether imperative indications were predictors of complications, chronic kidney disease stage upstaging, postoperative estimated glomerular filtration rate, and percentage of estimated glomerular filtration rate decrease. There were no differences between the 2 groups with respect to RENAL score and tumor size. Patients in the imperative group were more likely to have a higher Charlson Comorbidity Index score (6 vs 4, P &lt; .001), higher chronic kidney disease stage (P &lt; .001), and lower estimated glomerular filtration rate (61.9 vs 88.6 mL/min/1.73 m(2), P &lt; .001). Perioperative outcomes were similar with respect to warm ischemia time, estimated blood loss, operative time, transfusion rate, positive surgical margin rate, and length of stay. Imperative indications were associated with higher major complication rate (7.22% vs 2.47%, P = .032), but not with overall (31.6% vs 26%, P = .62) and intraoperative complications (6.1% vs 3.2%, P = .22). In multivariate analysis, imperative indication was an independent predictor of postoperative estimated glomerular filtration rate but was not a predictor of percentage of estimated glomerular filtration rate decrease and chronic kidney disease upstaging. Patients undergoing robotic partial nephrectomy for an imperative indication have similar functional outcomes than those with an elective indication. However, they are at higher risk of major complications."	"A critical need in understanding the biology of prostate cancer is characterizing the molecular differences between indolent and aggressive cases. Because DNA methylation can capture the regulatory state of tumors, we analyzed differential methylation patterns genome-wide among benign prostatic tissue and low-grade and high-grade prostate cancer and found extensive, focal hypermethylation regions unique to high-grade disease. These hypermethylation regions occurred not only in the promoters of genes but also in gene bodies and at intergenic regions that are enriched for DNA-protein binding sites. Integration with existing RNA-sequencing (RNA-seq) and survival data revealed regions where DNA methylation correlates with reduced gene expression associated with poor outcome. Regions specific to aggressive disease are proximal to genes with distinct functions from regions shared by indolent and aggressive disease. Our compendium of methylation changes reveals crucial molecular distinctions between indolent and aggressive prostate cancer."
+"Lee, Jeongwu"	"Cancer Biology"	18167341	19427293	22083670	22617325	30899443	30898893	30262818	28164090	26641068	26032834	"Despite similarities between tumor-initiating cells with stem-like properties (TICs) and normal neural stem cells, we hypothesized that there may be differences in their differentiation potentials. We now demonstrate that both bone morphogenetic protein (BMP)-mediated and ciliary neurotrophic factor (CNTF)-mediated Jak/STAT-dependent astroglial differentiation is impaired due to EZH2-dependent epigenetic silencing of BMP receptor 1B (BMPR1B) in a subset of glioblastoma TICs. Forced expression of BMPR1B either by transgene expression or demethylation of the promoter restores their differentiation capabilities and induces loss of their tumorigenicity. We propose that deregulation of the BMP developmental pathway in a subset of glioblastoma TICs contributes to their tumorigenicity both by desensitizing TICs to normal differentiation cues and by converting otherwise cytostatic signals to proproliferative signals."	"CD133+ populations of human glioblastoma multiforme (GBM) cells are reportedly enriched for tumor stem cells (TSCs) or tumor-initiating cells (TICs). Approximately 40% of freshly isolated GBM specimens, however, do not contain CD133+ tumor cells, raising the possibility that CD133 may not be a universal enrichment marker for GBM TSCs/TICs. Here we demonstrate that stage-specific embryonic antigen 1(SSEA-1/LeX)+ GBM cells fulfill the functional criteria for TSC/TIC, since (1) SSEA-1+ cells are highly tumorigenic in vivo, unlike SSEA-1- cells; (2) SSEA-1+ cells can give rise to both SSEA-1+ and SSEA-1- cells, thereby establishing a cellular hierarchy; and (3) SSEA-1+ cells have self-renewal and multilineage differentiation potentials. A distinct subpopulation of SSEA-1+ cells was present in all but one of the primary GBMs examined (n = 24), and most CD133+ tumor cells were also SSEA-1+, suggesting that SSEA-1 may be a general TSC/TIC enrichment marker in human GBMs."	"Glioblastoma (GBM) patients have dismal median survival even with the most rigorous treatments currently available. Radiotherapy is the most effective non-surgical therapy for GBM patients; however, patients succumb due to tumor recurrence within a year. To develop a curative therapeutic approach, we need to better understand the underlying molecular mechanism of radiation resistance in GBM. Towards this goal, we developed an in vivo orthotopic GBM model system that mimics the radiation response of human GBM, using both established-GBM cell line and patient-derived freshly dissociated GBM specimen. In-vivo ionizing radiation (IR) treatment prolonged the survival of mice with intracranical tumor derived from U373MG, but failed to prevent tumor recurrence. U373MG and GBM578 cells isolated after in-vivo IR (U373-IR and 578-IR) were more clonogenic and enriched with stem cell-like characteristics, compared with mock-treated control tumor cells. Transcriptomic analyses and quantitative real-time reverse-transcription PCR analyses using these matched GBM cells before and after radiation treatment revealed that Wnt pathways were preferentially activated in post-IR GBM cells. U373-IR cells and 578-IR were enriched with cells positive for both active β-catenin (ABC) and Sox2 population, and this subpopulation was further increased after additional in-vitro radiation treatment, suggesting that radiation resistance of GBM is mediated due, in part, to the activation of stem cell-associated pathways including Wnt. Finally, pharmacological and siRNA inhibition of Wnt pathway significantly decreased the survival and clonogenicity of GBM cells and reduced their ABC(+)/Sox2(+) population. Together, these data suggest that Wnt activation is a molecular mechanism to confer GBM radioresistance and an important therapeutic target."	"Glioblastomas multiforme (GBM) contain highly tumorigenic, self-renewing populations of stem/initiating cells [glioblastoma stem cells (GSC)] that contribute to tumor propagation and treatment resistance. However, our knowledge of the specific signaling pathways that regulate GSCs is limited. The MET tyrosine kinase is known to stimulate the survival, proliferation, and invasion of various cancers including GBM. Here, we identified a distinct fraction of cells expressing a high level of MET in human primary GBM specimens that were preferentially localized in perivascular regions of human GBM biopsy tissues and were found to be highly clonogenic, tumorigenic, and resistant to radiation. Inhibition of MET signaling in GSCs disrupted tumor growth and invasiveness both in vitro and in vivo, suggesting that MET activation is required for GSCs. Together, our findings indicate that MET activation in GBM is a functional requisite for the cancer stem cell phenotype and a promising therapeutic target."	"The cholesterol-lowering statins have known anti-cancer effects, but the mechanisms and how to utilize statins in oncology have been unclear. We noted in the CellMiner database that statin activity against cancer lines correlated with higher expression of TGF-β target genes such as SERPINE1 and ZYX. This prompted us to assess whether statins affected TGF-β activity in glioblastoma (GBM), a cancer strongly influenced by TGF-β and in dire need of new therapeutic approaches. We noted that statins reduced TGF-β activity, cell viability and invasiveness, Rho/ROCK activity, phosphorylation and activity of the TGF-β mediator Smad3, and expression of TGF-β targets ZYX and SERPINE1 in GBM and GBM-initiating cell (GIC) lines. Statins were most potent against GBM, GIC, and other cancer cells with high TGF-β activity, and exogenous TGF-β further sensitized mesenchymal GICs to statins. Statin toxicity was rescued by addition of exogenous mevalonolactone or geranylgeranyl pyrophosphate, indicating that the observed effects reflected inhibition of HMG CoA-reductase by the statins. Simvastatin significantly inhibited the growth of subcutaneous GIC grafts and prolonged survival in GIC intracranially grafted mice. These results indicate where the statins might best be applied as adjunct therapies in oncology, against GBM and other cancers with high TGF-β activity, and have implications for other statin roles outside of oncology."	"Glioblastoma (GBM) is the most malignant brain tumor with profound genomic alterations. Tumor suppressor genes regulate multiple signaling networks that restrict cellular proliferation and present barriers to malignant transformation. While bona fide tumor suppressors such as PTEN and TP53 often undergo inactivation due to mutations, there are several genes for which genomic deletion is the primary route for tumor progression. To functionally identify putative tumor suppressors in GBM, we employed in vivo RNAi screening using patient-derived xenograft models. Here, we identified PIP4K2A, whose functional role and clinical relevance remain unexplored in GBM. We discovered that PIP4K2A negatively regulates phosphoinositide 3-kinase (PI3K) signaling via p85/p110 component degradation in PTEN-deficient GBMs and specifically targets p85 for proteasome-mediated degradation. Overexpression of PIP4K2A suppressed cellular and clonogenic growth in vitro and impeded tumor growth in vivo. Our results unravel a novel tumor-suppressive role of PIP4K2A for the first time and support the feasibility of combining oncogenomics with in vivo RNAi screen."	"Outcomes of anticancer therapy vary dramatically among patients due to diverse genetic and molecular backgrounds, highlighting extensive intertumoral heterogeneity. The fundamental tenet of precision oncology defines molecular characterization of tumors to guide optimal patient-tailored therapy. Towards this goal, we have established a compilation of pharmacological landscapes of 462 patient-derived tumor cells (PDCs) across 14 cancer types, together with genomic and transcriptomic profiling in 385 of these tumors. Compared with the traditional long-term cultured cancer cell line models, PDCs recapitulate the molecular properties and biology of the diseases more precisely. Here, we provide insights into dynamic pharmacogenomic associations, including molecular determinants that elicit therapeutic resistance to EGFR inhibitors, and the potential repurposing of ibrutinib (currently used in hematological malignancies) for EGFR-specific therapy in gliomas. Lastly, we present a potential implementation of PDC-derived drug sensitivities for the prediction of clinical response to targeted therapeutics using retrospective clinical studies."	"In a number of cancers, deregulated MET pathway leads to aberrantly activated proliferative and invasive signaling programs that promote malignant transformation, cell motility and migration, angiogenesis, survival in hypoxia, and invasion. A better understanding of oncogenic MET signaling will help us to discover effective therapeutic approaches and to identify which tumors are likely to respond to MET-targeted cancer therapy. In this review, we will summarize the roles of MET signaling in cancer, with particular focus on epithelial-mesenchymal transition (EMT) and cancer stemness. Then, we will provide update on MET targeting agents and discuss the challenges that should be overcome for the development of an effective therapy."	"WNTs and their downstream effectors regulate proliferation, death, and migration and cell fate decision. Deregulation of WNT signaling is associated with various cancers including GBM, which is the most malignant primary brain cancer. In this review, we will summarize the experimental evidence supporting oncogenic roles of WNT signaling in GBM and discuss current progress in the targeting of WNT signaling as an anti-cancer approach. In particular, we will focus on (1) genetic and epigenetic alterations that lead to aberrant WNT pathway activation in GBM, (2) WNT-mediated control of GBM stem cell maintenance and invasion, and (3) cross-talk between WNT and other signaling pathways in GBM. We will then review the discovery of agents that can inhibit WNT signaling in preclinical models and the current status of human clinical trials. "	"Clinical benefits from standard therapies against glioblastoma (GBM) are limited in part due to intrinsic radio- and chemoresistance of GBM and inefficient targeting of GBM stem-like cells (GSCs). Novel therapeutic approaches that overcome treatment resistance and diminish stem-like properties of GBM are needed. We determined the expression levels of ubiquitination-specific proteases (USPs) by transcriptome analysis and found that USP1 is highly expressed in GBM. Using the patient GBM-derived primary tumor cells, we inhibited USP1 by shRNA-mediated knockdown or its specific inhibitor pimozide and evaluated the effects on stem cell marker expression, proliferation, and clonogenic growth of tumor cells. USP1 was highly expressed in gliomas relative to normal brain tissues and more preferentially in GSC enrichment marker (CD133 or CD15) positive cells. USP1 positively regulated the protein stability of the ID1 and CHEK1, critical regulators of DNA damage response and stem cell maintenance. Targeting USP1 by RNA interference or treatment with a chemical USP1 inhibitor attenuated clonogenic growth and survival of GSCs and enhanced radiosensitivity of GBM cells. Finally, USP1 inhibition alone or in combination with radiation significantly prolonged the survival of tumor-bearing mice. USP1-mediated protein stabilization promotes GSC maintenance and treatment resistance, thereby providing a rationale for USP1 inhibition as a potential therapeutic approach against GBM."
+"Lee, Yu-Shang"	"Neurosciences"	29402167	28827771	27502766	26426529	26384335	25769013	24959867	24937795	24017996	23804083	"Spinal cord injury (SCI) causes impaired neuronal function with associated deficits in the musculoskeletal system, which can lead to permanent disability. Here, the impact of SCI on in vivo musculoskeletal adaptation was determined by studying deficits in locomotor function and analyzing changes that occur in the muscle and bone compartments within the rat hindlimb after contusion or transection SCI. Analyses of locomotor patterns, as assessed via the Basso, Beattie, and Bresnahan (BBB) rating scale, revealed that transection animals showed significant deficits, while the contusion group had moderate deficits, compared with naïve groups. Muscle myofiber cross-sectional areas (CSA) of both the soleus and tibialis anterior muscles were significantly decreased three months after contusion SCI. Such decreases in CSA were even more dramatic in the transection SCI group, suggesting a dependence on muscle activity, which is further validated by the correlation analyses between BBB score and myofiber CSA. Bone compartment analyses, however, revealed that transection animals showed the most significant deficits, while contusion animals showed no significant differences in the trabecular bone content within the proximal tibia compartment. In general, values of bone volume per total bone volume (BV/TV) were similar across the SCI groups. Significant decreases were observed, however, in the transection animals for bone mineral content, bone mineral density, and three-dimensional trabecular structure parameters (trabecular number, thickness, and spacing) compared with the naïve and contusion groups. Together, these findings suggest an altered musculoskeletal system can be correlated directly to motor dysfunctions seen after SCI."	"Eight weeks post contusive spinal cord injury, we built a peripheral nerve graft bridge (PNG) through the cystic cavity and treated the graft/host interface with acidic fibroblast growth factor (aFGF) and chondroitinase ABC (ChABC). This combinatorial strategy remarkably enhanced integration between host astrocytes and graft Schwann cells, allowing for robust growth, especially of catecholaminergic axons, through the graft and back into the distal spinal cord. In the absence of aFGF+ChABC fewer catecholaminergic axons entered the graft, no axons exited, and Schwann cells and astrocytes failed to integrate. In sharp contrast with the acutely bridge-repaired cord, in the chronically repaired cord only low levels of serotonergic axons regenerated into the graft, with no evidence of re-entry back into the spinal cord. The failure of axons to regenerate was strongly correlated with a dramatic increase of SOCS3 expression. While regeneration was more limited overall than at acute stages, our combinatorial strategy in the chronically injured animals prevented a decline in locomotor behavior and bladder physiology outcomes associated with an invasive repair strategy. These results indicate that PNG+aFGF+ChABC treatment of the chronically contused spinal cord can provide a permissive substrate for the regeneration of certain neuronal populations that retain a growth potential over time, and lead to functional improvements."	"Suppressor of cytokine signaling-3 (SOCS3) expression is induced by the Janus kinase (JAK)-signal transducer and activator of transcription 3 (STAT3) signaling pathway. SOCS3 then acts as a feedback inhibitor of JAK-STAT signaling. Previous studies have shown that knocking down SOCS3 in spinal cord neurons with Lentiviral delivery of SOCS3-targeting shRNA (shSOCS3) increased spinal cord injury (SCI)-induced tyrosine phosphorylation of STAT3 (P-STAT3 Tyr), which in part contributed to decreased neuronal death and demyelination as well as enhanced dendritic regeneration and protection of neuronal morphology after SCI. However, the role of serine phosphorylation of STAT3 (P-STAT3 Ser) is in large part undetermined. Our purposes of this study were to evaluate the expression patterns of P-STAT3 Ser and to explore the possible role of SOCS3 in the regulation of P-STAT3 Ser expression. Immunoblot analyses demonstrated that Oncostatin M (OSM), a member of the interleukin-6 (IL-6) cytokine family, induced both P-STAT3 Tyr and P-STAT3 Ser in SH-SY5Y cells. Subcellular fractionation further revealed that P-STAT3 Ser was localized in mitochondria. Overexpression of SOCS3 with a Lentivirus-mediated approach in SH-SY5Y cells inhibited OSM-induced P-STAT3 Ser in both cytosol and mitochondria fractions. In contrast, OSM-induced P-STAT3 Ser was further upregulated in both cytosol and mitochondria when SOCS3 was knocked down by Lentivirus-delivered shSOCS3. Using a rat T8 spinal cord complete transection model, we found that SCI induced upregulation of P-STAT3 Ser in the mitochondria of macrophages/microglia and neurons both rostral and caudal to the injury site of spinal cord. Collectively, these results suggest that SOCS3 regulation of STAT3 signaling plays critical roles in stress conditions."	"The loss of lower urinary tract (LUT) control is a ubiquitous consequence of a complete spinal cord injury, attributed to a lack of regeneration of supraspinal pathways controlling the bladder. Previous work in our lab has utilized a combinatorial therapy of peripheral nerve autografts (PNG), acidic fibroblast growth factor (aFGF), and chondroitinase ABC (ChABC) to treat a complete T8 spinal cord transection in the adult rat, resulting in supraspinal control of bladder function. In the present study we extended these findings by examining the use of the combinatorial PNG+aFGF+ChABC treatment in a T8 transected mouse model, which more closely models human urinary deficits following spinal cord injury. Cystometry analysis and external urethral sphincter electromyograms reveal that treatment with PNG+aFGF+ChABC reduced bladder weight, improved bladder and external urethral sphincter histology, and significantly enhanced LUT function, resulting in more efficient voiding. Treated mice's injured spinal cord also showed a reduction in collagen scaring, and regeneration of serotonergic and tyrosine hydroxylase-positive axons across the lesion and into the distal spinal cord. Regeneration of serotonin axons correlated with LUT recovery. These results suggest that our mouse model of LUT dysfunction recapitulates the results found in the rat model and may be used to further investigate genetic contributions to regeneration failure. "	"Suppressors of cytokine signaling-3 (SOCS3) is associated with limitations of nerve growth capacity after injury to the central nervous system. Although genetic manipulations of SOCS3 can enhance axonal regeneration after optic injury, the role of SOCS3 in dendritic outgrowth after spinal cord injury (SCI) is still unclear. The present study investigated the endogenous expression of SOCS3 and its role in regulating neurite outgrowth in vitro. Interleukin-6 (IL-6) induces SOCS3 expression at the mRNA and protein levels in neuroscreen-1 (NS-1) cells. In parallel to SOCS3 expression, IL-6 induced tyrosine phosphorylation of signal transducer and activator of transcription 3 (STAT3) in NS-1 cells. Lentiviral delivery of short hairpin RNA (shSOCS3) (Lenti-shSOCS3) to decrease SOCS3 expression into NS-1 cells enhanced IL-6-induced tyrosine phosphorylation of STAT3 (P-STAT3 Tyr705) and promoted neurite outgrowth. In addition, we determined if reduction of SOCS3 expression by microinjection of Lenti-shSOCS3 into spinal cord enhances dendrite outgrowth in spinal cord neurons after SCI. Knocking down of SOCS3 in spinal cord neurons with Lenti-shSOCS3 increased complete SCI-induced P-STAT3 Tyr705. Immunohistochemical analysis showed that complete SCI induced a significant reduction of microtubule association protein 2-positive (MAP-2+) dendrites in the gray and white matter at 1 and 4 weeks after injury. The SCI-induced reduction of MAP-2+ dendrites was inhibited by infection with Lenti-shSOCS3 in areas both rostral and caudal to the lesion at 1 and 4 weeks after complete SCI. Furthermore, shSOCS3 treatment enhanced up-regulation of growth associated protein-43 (GAP-43) expression, which co-localized with MAP-2+ dendrites in white matter and with MAP-2+ cell bodies in gray matter, indicating Lenti-shSOCS3 may induce dendritic regeneration after SCI. Moreover, we demonstrated that Lenti-shSOCS3 decreased SCI-induced demyelination in white matter of spinal cord both rostral and caudal to the injury site 1 week post-injury, but not rostral to the injury at 4 weeks post-injury. Importantly, similar effects as Lenti-shSOCS3 on increasing MAP-2+ intensity and dendrite length, and preventing demyelination were observed when a second shSOCS3 (Lenti-shSOCS3 #2) was applied to rule out the possibilities of off target effects of shRNA. Collectively, these results suggest that knocking down of SOCS3 enhances dendritic regeneration and prevents demyelination after SCI. "	"Magnetic stimulation (MS) is a potential treatment for neuropsychiatric disorders. This study investigates whether MS-regulated neuronal activity can translate to specific changes in neuronal arborization and thus regulate synaptic activity and function. To test our hypotheses, we examined the effects of MS on neurite growth of neuroscreen-1 (NS-1) cells over the pulse frequencies of 1, 5 and 10 Hz at field intensities controlled via machine output (MO). Cells were treated with either 30% or 40% MO. Due to the nature of circular MS coils, the center region of the gridded coverslip (zone 1) received minimal (∼5%) electromagnetic current density while the remaining area (zone 2) received maximal (∼95%) current density. Plated NS-1 cells were exposed to MS twice per day for three days and then evaluated for length and number of neurites and expression of brain-derived neurotrophic factor (BDNF). We show that MS dramatically affects the growth of the longest neurites (axon-like) but does not significantly affect the growth of shorter neurites (dendrite-like). Also, MS-induced changes in the longest neurite growth were most evident in zone 1, but not in zone 2. MS effects were intensity-dependent and were most evident in bolstering longest neurite outgrowth, best seen in the 10 Hz MS group. Furthermore, we found that MS-increased BDNF expression and secretion was also frequency-dependent. Taken together, our results show that MS exerts distinct effects when different frequencies and intensities are applied to the neuritic compartments (longest neurite versus shorter dendrite(s)) of NS-1 cells. These findings support the concept that MS increases BDNF expression and signaling, which sculpts longest neurite arborization and connectivity by which neuronal activity is regulated. Understanding the mechanisms underlying MS is crucial for efficiently incorporating its use into potential therapeutic strategies."	"The present study investigates the endogenous expression of Suppressor of Cytokine Signaling-3 (SOCS3) after spinal cord injury (SCI) and its effect on SCI-induced cell death in vivo. In addition, we determined whether a reduction of SOCS3 expression induced by microinjection of short hairpin RNA (shSOCS3) carried by lentivirus into spinal cord provides cellular protection after SCI. We demonstrated that complete transection of rat T8 spinal cord induced SOCS3 expression at the mRNA and protein levels as early as 2days post-injury, which was maintained up to 14days. SOCS3 immunoreactivity was detected in neurons and activated microglia after SCI. We also demonstrated that SCI induces phosphorylation of proteins that are involved in signal transduction and transcription-3 (STAT3) in neurons, which induced SOCS3 expression. Western blot analyses and double-immunofluorescent staining showed significant up-regulation of the pro-apoptotic protein Bax, increases in the ratio of Bax to the anti-apoptotic protein Bcl-2, and up-regulation of cleaved caspase-3 in neurons. Treatment with shSOCS3 inhibited SCI-induced mRNA expression of SOCS3 2days post-injury and suppressed SCI-induced Bax expression 7days after SCI, both rostral and caudal to the lesion. Moreover, treatment with shSOCS3 inhibited SCI-induced neuronal death and protected neuronal morphology both rostral and caudal to the injury site 7days post-injury. Our results suggest that the STAT3/SOCS3 signaling pathway plays an important role in regulating neuronal death after SCI. "	"Transcranial magnetic stimulation (TMS) has been shown to modulate multiple brain functions, warranting further exploration in clinical applications. TMS treatment for epilepsy is particularly promising because of its anti-convulsive capabilities. However, TMS has been found to both inhibit and facilitate various experimental and clinical seizures, depending on the TMS parameters used. Repetitive TMS (rTMS) pulse frequency is recognized as one of the most influential parameters and thus was investigated in this study at 1, 5 and 10 Hz for its effects on a rat model of penicillin-induced seizures. High-dose penicillin-induced seizures were characterized by a combination of myoclonic and tonic-clonic (GTC) seizures. rTMS effects were analyzed with intracranial electroencephalographic (iEEG) data and video-captured behaviors. Animals treated with 1 and 5 Hz consistently showed evidence of anti-convulsive properties in their iEEG-based seizure profiles when compared to sham rTMS treatment. In contrast, data from 10 Hz rTMS suggested facilitative characteristics. Our results showed that 5 Hz rTMS consistently outperformed 1 Hz rTMS in seizure suppression. This re-emphasizes the importance in accurately characterizing TMS effects on seizure suppression due to the heterogeneous nature of seizures. Thus, finely tuned TMS treatment has great potential to become a powerful asset in combating epilepsy."	"This study investigated whether animals sustaining experimental damage to the basal forebrain cholinergic system would benefit from treatment with exogenous neurotrophic factors. Specifically, we set out to determine whether neurotrophic factors would rescue damaged cholinergic neurons and improve behavioral performance on a spatial learning and memory task. Adult rats received bilateral injections of either saline (controls) or 192 IgG-saporin to damage basal forebrain cholinergic neurons (BFCNs). Two weeks later, animals received implants of an Alzet mini-pump connected to cannulae implanted bilaterally in the lateral ventricles. Animals received infusions of nerve growth factor (NGF), neurotrophin 3 (NT3), a combination of NGF and NT3, or a saline control over a 4-week period. Compared to saline-treated controls, animals sustaining saporin-induced damage to BFCNs took significantly more trials to learn a delayed match to position task and also performed more poorly on subsequent tests, with increasing delays between test runs. In contrast, animals infused with neurotrophins after saporin treatment performed significantly better than animals receiving saline infusions; no differences were detected for performance scores among animals infused with NGF, NT3, or a combination of NGF and NT3. Studies of ChAT immunnocytochemical labeling of BFCNs revealed a reduction in the numbers of ChAT-positive neurons in septum, nucleus of diagonal band, and nucleus basalis in animals treated with saporin followed by saline infusions, whereas animals treated with infusions of NGF, NT3 or a combination of NGF and NT3 showed only modest reductions in ChAT-positive neurons. Together, these data support the notion that administration of neurotrophic factors can rescue basal forebrain cholinergic neurons and improve learning and memory performance in rats."	"A life-threatening disability after complete spinal cord injury is urinary dysfunction, which is attributable to lack of regeneration of supraspinal pathways that control the bladder. Although numerous strategies have been proposed that can promote the regrowth of severed axons in the adult CNS, at present, the approaches by which this can be accomplished after complete cord transection are quite limited. In the present study, we modified a classic peripheral nerve grafting technique with the use of chondroitinase to facilitate the regeneration of axons across and beyond an extensive thoracic spinal cord transection lesion in adult rats. The novel combination treatment allows for remarkably lengthy regeneration of certain subtypes of brainstem and propriospinal axons across the injury site and is followed by markedly improved urinary function. Our studies provide evidence that an enhanced nerve grafting strategy represents a potential regenerative treatment after severe spinal cord injury. "
+"Li, Xiaojuan"	"Biomedical Engineering"	28019053	28714169	29364702	28823880	28978352	27661002	25865349	26050865	26608949	25761416	"Cartilage loss is irreversible, and to date, no effective pharmacotherapies are available to protect or regenerate cartilage. Quantitative prestructural/compositional MR imaging techniques have been developed to characterize the cartilage matrix quality at a stage where abnormal findings are early and potentially reversible, allowing intervention to halt disease progression. The goal of this article is to critically review currently available technologies, present the basic concept behind these techniques, but also to investigate their suitability as imaging biomarkers including their validity, reproducibility, risk prediction and monitoring of therapy. Moreover, we highlighted important clinical applications. This review article focuses on the currently most relevant and clinically applicable technologies, such as T2 mapping, T2*, T1ρ, delayed gadolinium enhanced MRI of cartilage (dGEMRIC), sodium imaging and glycosaminoglycan chemical exchange saturation transfer (gagCEST). To date, most information is available for T2 and T1ρ mapping. dGEMRIC has also been used in multiple clinical studies, although it requires Gd contrast administration. Sodium imaging and gagCEST are promising technologies but are dependent on high field strength and sophisticated software and hardware. 5 J. Magn. Reson. Imaging 2017;45:949-965."	"To develop a novel technique for reliable quantification of bone marrow fat content and composition using in vivo MR spectroscopy (MRS). An MRS quantification method combining both advantages of Voigt line shape model and time-domain analysis was developed. The proposed method was tested using computer-simulated data and in vivo data acquired at lumbar vertebral bodies of 23 subjects (age, 83.8 ± 3.7 y; male, n = 13; female, n = 10) from L1 to L4. Reliability and reproducibility were calculated for the quantification results. Comparisons between the proposed method and some conventional methods were conducted. Low mean absolute percentage errors and low mean coefficients of variation for computer simulations suggest that the proposed method is accurate and precise. By using this method, marrow fat content can be quantified reliably, even for data with low spectral resolution and low signal-to-noise ratio (SNR). Unsaturation level can be reliably quantified for data with moderate spectral resolution and moderate SNR. Results obtained from in vivo data using the proposed method demonstrated better model fit than conventional methods. The method proposed in this study has better performance than conventional methods in the quantification of bone marrow MRS data and has great potential for wide applications of studying marrow fat content and composition. Magn Reson Med 79:1722-1729, 2018. © 2017 International Society for Magnetic Resonance in Medicine."	"Anterior cruciate ligament tears can lead to posttraumatic osteoarthritis. In addition to biomechanical factors, changes in biochemical profiles within the knee joint after injury and anterior cruciate ligament reconstruction (ACLR) may play a role in accelerating joint degeneration. Hypothesis/Purpose: It was hypothesized that cartilage matrix composition after ACLR is associated with the degree of inflammatory response after initial injury. This study evaluated the association between the inflammatory response after injury-as indicated by cytokine, metalloproteinase, and cartilage degradation marker concentrations in synovial fluid-and articular cartilage degeneration, measured by T1ρ and T2 quantitative magnetic resonance imaging up to 3 years after ACLR. Cohort study; Level of evidence, 2. Twenty-six subjects from a longitudinal cohort study who underwent ACLR at a mean 8.5 weeks after injury (range, 4-19 weeks) had synovial fluid aspirated at the time of surgery. Immunoassays quantified biomarkers in synovial fluid. T1ρ and T2 values of articular cartilage were calculated with magnetic resonance scans acquired prior to surgery and at 6 months and 1, 2, and 3 years after surgery. Pearson correlation coefficients were calculated among the various biomarkers. K-means clustering was used to group subjects with similar biomarker profiles. Generalized estimating equations were used to find the overall differences in T1ρ and T2 values throughout these first 3 years after surgery between the clusters while controlling for other factors. Significant and strong correlations were observed between several cytokines (interleukin 6 [IL-6], IL-8, IL-10, and tumor necrosis factor α) and 2 matrix metalloproteinases (MMP-1 and MMP-3) ( P &lt; .05). Moderate correlations were found among combinations of C-terminal crosslinked telopeptide type II collagen, N-terminal telopeptide, cartilage oligomeric matrix protein, and sulfated glycosaminoglycan ( P &lt; .05). Two clusters were generated, 1 of which was characterized by lower concentrations of cytokines (IL-6, IL-8, IL-10, tumor necrosis factor α) and MMP-1 and MMP-3 and higher sulfated glycosaminoglycan. This cluster was associated with significantly higher T1ρ and T2 values in the medial tibial and patellar cartilage over the first 3 years after ACLR. At the time of ACLR surgery, profiles of synovial fluid inflammatory cytokines, degradative enzymes, and cartilage breakdown products show promise as predictors of abnormal cartilage tissue integrity (increased T1ρ and T2 values) throughout the first 3 years after surgery. The results suggest an intricate relationship between inflammation and cartilage turnover, which can in turn be influenced by timing after injury and patient factors."	"There are increasing evidences suggesting bone marrow adiposity tissue (MAT) plays a critical role in affecting both bone quantity and quality. However, very limited studies that have investigated the association between the composition of MAT and bone mineral density (BMD). The goal of this study was to quantify MAT unsaturation profile of marrow samples from post-menopausal women using ex vivo high-resolution magic angle spinning (HRMAS) proton nuclear magnetic resonance (<sup>1</sup>H NMR) spectroscopy, and to investigate the relationship between MAT composition and BMD. Bone marrow samples were obtained by iliac crest aspiration during surgical procedures from 24 postmenopausal women (65-89years) who had hip surgery due to bone fracture or arthroplasty. Marrow fat composition parameters, in particular, unsaturation level (UL), mono-unsaturation level (MUL) and saturation level (SL), were quantified using HRMAS <sup>1</sup>H NMR spectroscopy. The patients were classified into three groups based on the DXA BMD T-scores: controls, osteopenia and osteoporosis. Marrow fat composition was compared between these three groups as well as between subjects with and without factures using ANOCOVA, adjusted for age. Subjects with lower BMD (n=17) had significantly lower MUL (P=0.003) and UL (P=0.039), and significantly higher SL (P=0.039) compared to controls (n=7). When separating lower BMD into osteopenia (n=9) and osteoporosis (n=8) groups, subjects with osteopenia had significantly lower MUL (P=0.002) and UL (P=0.010), and significantly higher SL (P=0.010) compared to healthy controls. No significant difference was observed between subjects with osteopenia and osteoporosis. Using HRMAS <sup>1</sup>H NMR, significantly lower unsaturation and significantly higher saturation levels were observed in the marrow fat of subjects with lower BMD. HRMAS <sup>1</sup>H NMR was shown to be a powerful tool for identifying novel MR markers of marrow fat composition that are associated with bone quality and potentially fracture, and other bone pathologies and changes after treatment. A better understanding of the relationship between bone marrow composition and bone quality in humans may identify novel treatment targets, and provide guidance on novel interventions and therapeutic strategies for bone preservation."	"Although one study showed minimal progression of erosions in patients with rheumatoid arthritis (RA) one year after TNFα inhibition therapy, no studies have investigated very early bone changes after initiation of anti-TNFα treatment. We investigated the effects of 3-month anti-TNFα treatment on bone erosion progression and bone microarchitecture in RA patients using high-resolution peripheral quantitative computed tomography (HR-pQCT). Patients with RA (n = 27) (17 in the anti-TNFα and 10 in the MTX-only group) underwent assessment of disease activity score in 28 joints (DAS-28), radiographs, 3-T magnetic resonance imaging (MRI) and HR-pQCT of metacarpophalangeal and wrist joints at baseline and 3 months. HR-pQCT-derived erosion volume, joint volume/width and bone microarchitecture were computed and joint destruction was assessed using Sharp and RAMRIS scorings on radiographs and MRI, respectively. Overall, 73 erosions were identified by HR-pQCT at baseline. Over 3 months, the anti-TNFα group had decreased mean erosion volume; increased erosion volume was observed in one clinical non-responder. The MTX-only group in contrast, trended toward increasing erosion volume despite low disease activity. In the anti-TNFα group, joint-space width and volume of MCP joints decreased significantly and was positively correlated with erosion volume changes (R <sup>2</sup> = 0.311, p = 0.013; R <sup>2</sup> = 0.527, p = 0.003, respectively). In addition, erosion volume changes were significantly negatively correlated with changes in trabecular bone mineral density (R <sup>2</sup> = 0.353, p = 0.020) in this group. We observed significant correlation between percentage change in erosion volume and change in DAS-28 erythrocyte sedimentation rate and C-reactive protein CRP scores (R <sup>2</sup> = 0.558, p &lt; 0.001; R <sup>2</sup> = 0.745, p &lt; 0.001, respectively) in all patients. Using HR-pQCT, our data suggest that anti-TNFα treatment prevents erosion progression and deterioration of bone microarchitecture within the first 3 months of treatment, one patient not responding to treatment, had significant progression of bone erosions within this short time period. Patients with low disease activity scores (&lt;3.2) can have continuous HR-pQCT-detectable progression of erosive disease with MTX treatment only. HR-pQCT can be a sensitive, powerful tool to quantify bone changes and monitor RA treatment short term (such as 3 months)."	"To evaluate the feasibility of MR T1ρ in assessing radiocarpal cartilage matrix changes following rheumatoid arthritis (RA) treatment. Five healthy controls and nine RA patients were studied: three RA patients with low disease activity that were treated with methotrexate (MTX) alone and six with active disease despite MTX treatment who were additionally treated with certolizumab pegol, an anti-tumor necrosis factor biologic. Wrist 3 Tesla MRI were acquired at baseline and 3-month follow-up. T1ρ were quantified for lunar, radius, and scaphoid cartilage. Reproducibility was evaluated using coefficients of variation (CV). Longitudinal changes were evaluated with t-test and relationships between T1ρ with clinical, MRI, and patient-reported outcomes were evaluated with Spearman's rho. Scan/re-scan CVs of T1ρ values were all &lt;5%, and intra- and inter-reader CVs were all &lt; 2.0%. Baseline scaphoid T1ρ values were significantly higher in RA patients compared with healthy controls (P = 0.032). Changes in T1ρ (baseline, 3-month) were correlated with EULAR treatment response criteria: -2.26 ± 0.75 ms, 1.08 ± 0.52 ms, and 2.18 ± 0.45 ms for good, moderate, and nonresponders, respectively. Significant correlations were found between changes in global T1ρ values and changes in DAS28-CRP (rs = 0.683; P = 0.042), MHQ (rs = -0.783; P = 0.013), and HAQ (rs = 0.833; P = 0.010). Despite the limited sample size and follow-up time points, there were significant correlations between changes in radiocarpal T1ρ and changes in disease activity as assessed by clinical and patient-reported outcomes. Our findings encourage further research into MR T1ρ assessment of RA disease activity and treatment response. 1 J. MAGN. RESON. IMAGING 2017;45:1514-1522."	"The objectives of this study were: (i) to develop a standardized method of quantifying bone mineral density (BMD) and microarchitecture in the hand and wrist bones of patients with rheumatoid arthritis (RA) using high resolution- peripheral quantitative computed tomography (HR-pQCT); (ii) to compare quantitative bone parameters between RA and post-menopausal osteopenic (PM-OP) subjects; and (iii) to correlate quantitative bone parameters at the distal radius with those at the metacarpal heads in RA subjects. HR-pQCT imaging of the dominant hand and wrist was performed in 12 female RA patients. BMD and trabecular parameters for the 2-12% head region of the second and third metacarpals were calculated and compared between RA patients and healthy controls. Bone parameters were also calculated for 110 slices of the distal radius in RA patients and compared to data from controls and PM-OP women from a previous study. Compared to controls, RA patients had significantly decreased BMD, trabecular volume and number, and increased trabecular heterogeneity in the third metacarpal and distal radius. Significantly lower trabecular number and significantly higher ratio of outer annular trabecular BMD to inner trabecular BMD were observed in patients with RA, compared to patients with osteopenia (P &lt; 0.05). Trabecular BMD in the third metacarpal and in the distal radius were significantly correlated (ρ = 0.918, P &lt; 0.0001) in RA patients. This study established a standardized method for quantifying bone density and trabecular properties in the hand and wrist bones of RA patients using HR-pQCT. Deterioration of bone structure in RA patients was found comparable to that in osteopenic women, and trabecular bone loss near affected joints was found to be correlated with bone loss away from joints."	"The aim of this study is to develop a novel 3D magnetic resonance imaging (MRI)-based Statistical Shape Modeling (SSM) and apply it in knee MRIs in order to extract and compare relevant shapes of the tibia and femur in patients with and without acute Anterior cruciate ligament (ACL) injuries. Bilateral MR images were acquired and analyzed for 50 patients with acute ACL injuries and for 19 control subjects. A shape model was extracted for the tibia and femur using an SSM algorithm based on a set of matched landmarks that are computed in a fully automatic manner. Shape differences were detected between the knees in the ACL-injury group and control group, suggesting a common shape feature that may predispose these knees to injury. Some of the detected shape features that discriminate between injured and control knees are related to intercondylar width and posterior tibia slope, features that have been suggested in previous studies as ACL morphological risk factors. However, shape modeling has the great potential to quantify these characteristics with a comprehensive description of the surfaces describing complex 3D deformation that cannot be represented with simple geometric indexes. 3D MRI-based bone shape quantification has the ability to identify specific anatomic risk factors for ACL injury. A better understanding of the role in bony shape on ligamentous injuries could help in the identification of subjects with an increased risk for an ACL tear and to develop targeted prevention strategies, including education and training."	"This study is to evaluate highly accelerated three-dimensional (3D) dynamic contrast-enhanced (DCE) wrist MRI for assessment of perfusion in rheumatoid arthritis (RA) patients. A pseudo-random variable-density undersampling strategy, circular Cartesian undersampling (CIRCUS), was combined with k-t SPARSE-SENSE reconstruction to achieve a highly accelerated 3D DCE wrist MRI. Two healthy volunteers and 10 RA patients were studied. Two patients were on methotrexate (MTX) only (Group I) and the other eight were treated with a combination therapy of MTX and anti-tumor necrosis factor (TNF) therapy (Group II). Patients were scanned at baseline and 3 month follow-up. DCE MR images were used to evaluate perfusion in synovitis and bone marrow edema pattern in the RA wrist joints. A series of perfusion parameters was derived and compared with clinical disease activity scores of 28 joints (DAS28). 3D DCE wrist MR images were obtained with a spatial resolution of 0.3 × 0.3 × 1.5 mm(3) and temporal resolution of 5 s (with an acceleration factor of 20). The derived perfusion parameters, most notably transition time (dT) of synovitis, showed significant negative correlations with DAS28-ESR (r = -0.80, p &lt; 0.05) and DAS28-CRP (r = -0.87, p &lt; 0.05) at baseline and also correlated significantly with treatment responses evaluated by clinical score changes between baseline and 3 month follow-up (with DAS28-ESR r = -0.79, p &lt; 0.05, and DAS28-CRP r = -0.82, p &lt; 0.05). Highly accelerated 3D DCE wrist MRI with improved temporospatial resolution has been achieved in RA patients and provides accurate assessment of neovascularization and perfusion in RA joints, showing promise as a potential tool for evaluating treatment responses."	"Osteoarthritis (OA) is a common multifactorial and heterogeneous degenerative joint disease, and biochemical changes in cartilage matrix occur during the early stages of OA before morphological changes occur. Thus, it is desired to measure regional biochemical changes in the joint. High-resolution magic angle spinning (HRMAS) NMR spectroscopy is a powerful method of observing cartilaginous biochemical changes ex vivo, including the concentrations of alanine and N-acetyl, which are markers of collagen and total proteoglycan content, respectively. Previous studies have observed significant changes in chondrocyte metabolism of OA cartilage via the altered gene expression profiles of ACAN, COL2A1 and MMP13, which encode aggrecan, type II collagen and matrix metalloproteinase 13 (a protein crucial in the degradation of type II collagen), respectively. Employing HRMAS, this study aimed to elucidate potential relationships between N-acetyl and/or alanine and ACAN, COL2A1 and/or MMP13 expression profiles in OA cartilage. Thirty samples from the condyles of five subjects undergoing total knee arthroplasty to treat OA were collected. HRMAS spectra were obtained at 11.7 T for each sample. RNA was subsequently extracted to determine gene expression profiles. A significant negative correlation between N-acetyl metabolite and ACAN gene expression levels was observed; this provides further evidence of N-acetyl as a biomarker of cartilage degeneration. The alanine doublet was distinguished in the spectra of 15 of the 30 specimens of this study. Alanine can only be detected with HRMAS NMR spectroscopy when the collagen framework has been degraded such that alanine is sufficiently mobile to form a distinguished peak in the spectrum. Thus, HRMAS NMR spectroscopy may provide unique localized measurements of collagenous degeneration in OA cartilage. The identification of imaging markers that could provide a link between OA pathology and chondrocyte metabolism will facilitate the development of more sensitive diagnostic techniques and will improve methods of monitoring treatment for patients suffering from OA."
+"Li, Xiaoxia"	"Inflammation and Immunity"	30683702	30578323	30372424	30352854	30013031	29563620	29070673	28990926	28561022	28223414	"IL-17A is a critical proinflammatory cytokine for the pathogenesis of asthma including neutrophilic pulmonary inflammation and airway hyperresponsiveness. In this study, by cell type-specific deletion of IL-17R and adaptor Act1, we demonstrated that IL-17R/Act1 exerts a direct impact on the contraction of airway smooth muscle cells (ASMCs). Mechanistically, IL-17A induced the recruitment of Rab35 (a small monomeric GTPase) and DennD1C (guanine nucleotide exchange factor [GEF]) to the IL-17R/Act1 complex in ASMCs, resulting in activation of Rab35. Rab35 knockdown showed that IL-17A-induced Rab35 activation was essential for protein kinase Cα (PKCα) activation and phosphorylation of fascin at Ser39 in ASMCs, allowing F-actin to interact with myosin to form stress fibers and enhance the contraction induced by methacholine. PKCα inhibitor or Rab35 knockdown indeed substantially reduced IL-17A-induced stress fiber formation in ASMCs and attenuated IL-17A-enhanced, methacholine-induced contraction of airway smooth muscle. Taken together, these data indicate that IL-17A promotes airway smooth muscle contraction via direct recruitment of Rab35 to IL-17R, followed by PKCα activation and stress fiber formation."	"Lrig1 marks a distinct population of stem cells restricted to the upper pilosebaceous unit in normal epidermis. Here we report that IL-17A-mediated activation of EGFR plays a critical role in the expansion and migration of Lrig1<sup>+</sup> stem cells and their progenies in response to wounding, thereby promoting wound healing and skin tumorigenesis. Lrig1-specific deletion of the IL-17R adaptor Act1 or EGFR in mice impairs wound healing and reduces tumor formation. Mechanistically, IL-17R recruits EGFR for IL-17A-mediated signaling in Lrig1<sup>+</sup> stem cells. While TRAF4, enriched in Lrig1<sup>+</sup> stem cells, tethers IL-17RA and EGFR, Act1 recruits c-Src for IL-17A-induced EGFR transactivation and downstream activation of ERK5, which promotes the expansion and migration of Lrig1<sup>+</sup> stem cells. This study demonstrates that IL-17A activates the IL-17R-EGFR axis in Lrig1<sup>+</sup> stem cells linking wound healing to tumorigenesis."	"NLRP3 inflammasome plays a critical spatiotemporal role in the pathogenesis of experimental autoimmune encephalomyelitis (EAE). This study reports a mechanistic insight into noncanonical NLRP3 inflammasome activation in microglia for the effector stage of EAE. Microglia-specific deficiency of ASC (apoptosis-associated speck-like protein containing a C-terminal caspase-activation and recruitment [CARD] domain) attenuated T cell expansion and neutrophil recruitment during EAE pathogenesis. Mechanistically, TLR stimulation led to IRAKM-caspase-8-ASC complex formation, resulting in the activation of caspase-8 and IL-1β release in microglia. Noncanonical inflammasome-derived IL-1β produced by microglia in the CNS helped to expand the microglia population in an autocrine manner and amplified the production of inflammatory cytokines/chemokines. Furthermore, active caspase-8 was markedly increased in the microglia in the brain tissue from patients with multiple sclerosis. Taken together, our study suggests that microglia-derived IL-1β via noncanonical caspase-8-dependent inflammasome is necessary for microglia to exert their pathogenic role during CNS inflammation."	"The activation of the epidermal growth factor receptor (EGFR) is crucial for triggering diverse cellular functions, including cell proliferation, migration, and differentiation, and up-regulation of EGFR expression or activity is a key factor in triggering the development of cancer. Here we show that overexpression of a scaffold protein, tumor necrosis factor receptor (TNF-R)-associated factor 4 (TRAF4), promotes EGF-induced autophosphorylation of EGFR (activation) and downstream signaling, whereas TRAF4 deficiency attenuates EGFR activation and EGF-driven cell proliferation. Using structure-based sequence alignment and NMR spectroscopy, we identified a TRAF4 binding site in the C-terminal half of the juxtamembrane (JM) segment of EGFR, a region known to promote asymmetric dimerization and subsequent activation. Deletion of the TRAF4 binding site led to dramatic defects in EGFR activation and EGF-driven cell proliferation. Specific point mutations in the TRAF4 binding site also resulted in significant attenuation of EGFR activation. Detailed structural examination of the inactive versus active forms of EGFR suggests that TRAF4 binding probably induces a conformational rearrangement of the JM region to promote EGFR dimerization. These results identify a novel mechanism of TRAF4-mediated EGFR activation and signaling."	"Although Act1 (adaptor for IL-17 receptors) is necessary for IL-17-mediated inflammatory responses, Act1- (but not Il17ra-, Il17rc-, or Il17rb-) deficient mice develop spontaneous SLE- and Sjögren's-like diseases. Here, we show that Act1 functions as a negative regulator in T and B cells via direct inhibition of STAT3. Mass spectrometry analysis detected an Act1-STAT3 complex, deficiency of Act1 (but not Il17ra-, Il17rc-, or Il17rb) results in hyper IL-23- and IL-21-induced STAT3 activation in T and B cells, respectively. IL-23R deletion or blockade of IL-21 ameliorates SLE- and Sjögren's-like diseases in Act1<sup>-/-</sup> mice. Act1 deficiency results in hyperactivated follicular Th17 cells with elevated IL-21 expression, which promotes T-B cell interaction for B cell expansion and antibody production. Moreover, anti-IL-21 ameliorates the SLE- and Sjögren's-like diseases in Act1-deficient mice. Thus, IL-21 blocking antibody might be an effective therapy for treating SLE- and Sjögren's-like syndrome in patients containing Act1 mutation."	"Mechanisms that degrade inflammatory mRNAs are well known; however, stabilizing mechanisms are poorly understood. Here, we show that Act1, an interleukin-17 (IL-17)-receptor-complex adaptor, binds and stabilizes mRNAs encoding key inflammatory proteins. The Act1 SEFIR domain binds a stem-loop structure, the SEFIR-binding element (SBE), in the 3' untranslated region (UTR) of Cxcl1 mRNA, encoding an inflammatory chemokine. mRNA-bound Act1 directs formation of three compartmentally distinct RNA-protein complexes (RNPs) that regulate three disparate events in inflammatory-mRNA metabolism: preventing mRNA decay in the nucleus, inhibiting mRNA decapping in P bodies and promoting translation. SBE RNA aptamers decreased IL-17-mediated mRNA stabilization in vitro, IL-17-induced skin inflammation and airway inflammation in a mouse asthma model, thus providing a therapeutic strategy for autoimmune diseases. These results reveal a network in which Act1 assembles RNPs on the 3' UTRs of select mRNAs and consequently controls receptor-mediated mRNA stabilization and translation during inflammation."	"This study identifies a novel mechanism linking IL-17A with colon tissue repair and tumor development. Abrogation of IL-17A signaling in mice attenuated tissue repair of dextran sulfate sodium (DSS)-induced damage in colon epithelium and markedly reduced tumor development in an azoxymethane/DSS model of colitis-associated cancer. A novel IL-17A target gene, PLET1 (a progenitor cell marker involved in wound healing), was highly induced in DSS-treated colon tissues and tumors in an IL-17RC-dependent manner. PLET1 expression was induced in LGR5<sup>+</sup> colon epithelial cells after DSS treatment. LGR5<sup>+</sup>PLET1<sup>+</sup> marks a highly proliferative cell population with enhanced expression of IL-17A target genes. PLET1 deficiency impaired tissue repair of DSS-induced damage in colon epithelium and reduced tumor formation in an azoxymethane/DSS model of colitis-associated cancer. Our results suggest that IL-17A-induced PLET1 expression contributes to tissue repair and colon tumorigenesis."	"Expression of inflammatory genes is determined in part by post-transcriptional regulation of mRNA metabolism but how stimulus- and transcript-dependent nuclear export influence is poorly understood. Here, we report a novel pathway in which LPS/TLR4 engagement promotes nuclear localization of IRAK2 to facilitate nuclear export of a specific subset of inflammation-related mRNAs for translation in murine macrophages. IRAK2 kinase activity is required for LPS-induced RanBP2-mediated IRAK2 sumoylation and subsequent nuclear translocation. Array analysis showed that an SRSF1-binding motif is enriched in mRNAs dependent on IRAK2 for nuclear export. Nuclear IRAK2 phosphorylates SRSF1 to reduce its binding to target mRNAs, which promotes the RNA binding of the nuclear export adaptor ALYREF and nuclear export receptor Nxf1 loading for the export of the mRNAs. In summary, LPS activates a nuclear function of IRAK2 that facilitates the assembly of nuclear export machinery to export selected inflammatory mRNAs to the cytoplasm for translation."	"NOTCH1 signalling contributes to defective remyelination by impairing differentiation of oligodendrocyte progenitor cells (OPCs). Here we report that IL-17 stimulation induces NOTCH1 activation in OPCs, contributing to Th17-mediated demyelinating disease. Mechanistically, IL-17R interacts with NOTCH1 via the extracellular domain, which facilitates the cleavage of NOTHC1 intracellular domain (NICD1). IL-17-induced NOTCH1 activation results in the interaction of IL-17R adaptor Act1 with NICD1, followed by the translocation of the Act1-NICD1 complex into the nucleus. Act1-NICD1 are recruited to the promoters of several NOTCH1 target genes (including STEAP4, a metalloreductase important for inflammation and cell proliferation) that are specifically induced in the spinal cord by Th17 cells. A decoy peptide disrupting the IL-17RA-NOTCH1 interaction inhibits IL-17-induced NOTCH1 activation and attenuates Th17-mediated experimental autoimmune encephalitis (EAE). Taken together, these findings demonstrate critical crosstalk between the IL-17 and NOTCH1 pathway, regulating Th17-induced inflammatory and proliferative genes to promote demyelinating disease."	"Cyanidin, a key flavonoid that is present in red berries and other fruits, attenuates the development of several diseases, including asthma, diabetes, atherosclerosis, and cancer, through its anti-inflammatory effects. We investigated the molecular basis of cyanidin action. Through a structure-based search for small molecules that inhibit signaling by the proinflammatory cytokine interleukin-17A (IL-17A), we found that cyanidin specifically recognizes an IL-17A binding site in the IL-17A receptor subunit (IL-17RA) and inhibits the IL-17A/IL-17RA interaction. Experiments with mice demonstrated that cyanidin inhibited IL-17A-induced skin hyperplasia, attenuated inflammation induced by IL-17-producing T helper 17 (TH17) cells (but not that induced by TH1 or TH2 cells), and alleviated airway hyperreactivity in models of steroid-resistant and severe asthma. Our findings uncover a previously uncharacterized molecular mechanism of action of cyanidin, which may inform its further development into an effective small-molecule drug for the treatment of IL-17A-dependent inflammatory diseases and cancer."
+"Li, Yong"	"Cancer Biology"	30343114	30068361	29685162	29703722	29540832	28386133	27462406	25990308	26519132	30185897	"Although epidemiologic studies have suggested a possible association between occupational exposures to 2,3,7,8-tetrachlorodibenzo-p-dioxin (TCDD) and the risk of development of multiple myeloma, definitive evidence in support of this association is lacking. In the present study, we employed the Vk*Myc mouse model of multiple myeloma to assess the impact of TCDD exposure on multiple myeloma pathogenesis. TCDD induced splenomegaly and multiple peripheral blood abnormalities, including anemia and high serum IgG levels. In addition, TCDD triggered bone lytic lesions, as well as renal tubular casts, a phenomenon associated with human myeloma kidney disease. Even in wild-type C57BL/6 mice, TCDD increased serum IgG levels, induced anemia, and increased plasma cell presence in the spleen and bone marrow, hallmarks of benign monoclonal gammopathy. Lastly, TCDD induced AKT activation and the DNA damage response, key pathogenic events in myeloma pathogenesis, in animal spleen and/or bone marrow. These data indicate that TCDD accelerates monoclonal gammopathy development and promotes progression to multiple myeloma in genetically-predisposed mice. This work offers the first direct experimental evidence establishing TCDD as an environmental risk factor for monoclonal gammopathy of undetermined significance and multiple myeloma."	"Indoleamine 2, 3-dioxygenases (IDO1 and IDO2) and tryptophan 2, 3-dioxygenase (TDO) are tryptophan catabolic enzymes that catalyze the conversion of tryptophan into kynurenine. The depletion of tryptophan and the increase in kynurenine exert important immunosuppressive functions by activating T regulatory cells and myeloid-derived suppressor cells, suppressing the functions of effector T and natural killer cells, and promoting neovascularization of solid tumors. Targeting IDO1 represents a therapeutic opportunity in cancer immunotherapy beyond checkpoint blockade or adoptive transfer of chimeric antigen receptor T cells. In this review, we discuss the function of the IDO1 pathway in tumor progression and immune surveillance. We highlight recent preclinical and clinical progress in targeting the IDO1 pathway in cancer therapeutics, including peptide vaccines, expression inhibitors, enzymatic inhibitors, and effector inhibitors."	"Indoleamine 2,3-dioxygenase 1 (IDO1) catalyzes the first and rate-limiting step in converting tryptophan to kynurenine. Chimeric antigen receptor (CAR) T cells are T cells with recombinant receptors targeting tumor-associated antigens. The Food and Drug Administration has approved CAR T cells that target CD19 for treatment of advanced B cell leukemia and lymphoma. However, CAR T cell therapy in solid tumors has been hampered by multiple obstacles. Preclinical and clinical studies suggest that combinatorial immune checkpoint blockade and IDO1 inhibition provide durable therapeutic efficacy against cancer. Yet, the combination of IDO1 inhibition and CAR T has not been attempted. We analyze IDO1 downregulation by miR-153 in colon cancer cells and the association of IDO1 and miR-153 expression with colorectal patient survival. We generate CAR T cells targeting the epidermal growth factor receptor variant III and measure their tumor killing effects against colon cancer cells with or without miR-153 overexpression by killing assays and in xenografts. IDO1 is highly expressed in colorectal tumors and is inversely associated with patient survival. miR-153 directly inhibits IDO1 expression by targeting its 3' untranslated region in colon cancer cells; yet, miR-153 overexpression does not affect cancer cell survival, apoptosis, and colony formation. When colon cancer cells are targeted by CAR T cells, miR-153 overexpression within tumor cells significantly enhances T cell killing in vitro and suppresses xenograft tumor growth in mice. These findings indicate that miR-153 inhibits IDO1 expression in colon cancer cells and is a tumor-suppressive miRNA that enhances CAR T cell immunotherapy. This study supports the combinatorial use of IDO1 inhibitors and CAR T cells in treating solid tumors."	"Next-generation sequencing has revealed cancer genomic landscapes, in which over 100 driver genes that, when altered by intragenic mutations, can promote oncogenesis. MYD88 is a driver gene found in hematologic B-cell malignancies. A missense mutation (L265P) changing leucine at position 265 to proline in MYD88 is found in ∼90% of Waldenström macroglobulinemia (WM) cases and in significant portions of activated B-cell diffuse large B-cell lymphomas and IgM monoclonal gammopathy of undetermined significance. Few cancers such as WM have a single amino acid substitution in one gene like MYD88 L265P that occurs in ∼90% of cases, making WM paradigmatic for study of a single causative mutation in oncogenesis. In this review, we summarize the frequency and cancer spectrum of MYD88 L265P and its downstream effects in lymphoid cancers. Malignant B cells with MYD88 L265P are likely transformed from IgM-producing B cells either in response to T-cell-independent antigens or in response to protein antigens before class switching. We also discuss therapeutic strategies that include targeting Bruton tyrosine kinase and other kinases, interfering with the assembly of MYD88 and its interacting partners, and MYD88 L265P-specific peptide-based immunotherapy. Cancer Res; 78(10); 2457-62. ©2018 AACR."	"MicroRNA-21 (miR-21) is one of the most abundant microRNAs in mammalian cells. It has been intensively studied for its role in regulating apoptosis and oncogenic transformation. However, the impact of miR-21 on host anti-tumor immunity remains unknown. Tumor-associated macrophages are a major leukocyte type that infiltrates tumors and predominantly develops into immunosuppressive, tumor-promoting M2-like macrophages. In contrast, the pro-inflammatory M1-like macrophages have tumoricidal activity. In this study, we show that genetic deficiency of miR-21 promotes the polarization of macrophages toward an M1-like phenotype in vivo and in vitro in the presence of tumor cells; thus it confers host mice with enhanced anti-tumor immunity. By downregulating JAK2 and STAT1, miR-21 inhibits the IFN-γ-induced STAT1 signaling pathway, which is required for macrophage M1 polarization. We also show that the expression of miR-21 in macrophages is regulated upon polarization stimuli as well as upon macrophages co-culturing with tumor cells. Thus, tumor cells may stimulate miR-21 expression in tumor-associated macrophages to prevent tumoricidal M1 polarization. However, augmented STAT1 signaling mediated by miR-21 deficiency upregulates PD-L1 expression in macrophages, which is known to inhibit phagocytic anti-tumor activity. This adverse effect can be alleviated by PD-1 blockade; indeed, miR-21 depletion in macrophages and PD-1 antibody treatment offer superior anti-tumor activity than either agent alone. These studies shed lights on potential application of the combination of miR-21 inhibition and immune checkpoint blockade to target the tumor microenvironment."	"Colorectal cancer is a major cancer type worldwide. 5-fluorouracil, often given with leucovorin, is the most commonly used drug in colorectal cancer chemotherapy, yet development of drug resistance to 5-fluorouracil in colorectal cancer cells is the primary cause of chemotherapy failure. Most patients receiving intravenous 5-fluorouracil develop side effects. Leucovorin, due to its vitamin-like profile, has few side-effects. Drug repurposing is the application of approved drugs to treat new indications. In this study, we performed a novel drug-repurposing screening to identify Food and Drug Administration-approved chemotherapeutic compounds possessing synergistic activity with leucovorin against colorectal cancer cells. We found that the combination of bortezomib and leucovorin enhanced caspase activation and increased apoptosis in colorectal cancer cells better than either agent alone. Further, the synergistic induction of apoptosis and inhibition of tumor growth were also observed in mouse colorectal cancer xenografts. These data support leucovorin enhances the anti-cancer effect of bortezomib and present this novel combinatorial treatment against colorectal cancer."	"Lung cancer and colorectal cancer account for over one-third of all cancer deaths in the United States. MicroRNA-301a (miR-301a) is an activator of both nuclear factor-κB (NF-κB) and Stat3, and is overexpressed in both deadly malignancies. In this work, we show that genetic ablation of miR-301a reduces Kras-driven lung tumorigenesis in mice. And miR-301a deficiency protects animals from dextran sodium sulfate-induced colon inflammation and colitis-associated colon carcinogenesis. We also demonstrate that miR-301a deletion in bone marrow-derived cells attenuates tumor growth in the colon carcinogenesis model. Our findings ascertain that one microRNA-miR-301a-activates two major inflammatory pathways (NF-κB and Stat3) in vivo, generating a pro-inflammatory microenvironment that facilitates tumorigenesis. "	"MicroRNAs (miRNAs) regulate apoptosis, yet their role in regulated necrosis remains unknown. miR-21 is overexpressed in nearly all human cancer types and its role as an oncogene is suggested to largely depend on its anti-apoptotic action. Here we show that miR-21 is overexpressed in a murine model of acute pancreatitis, a pathologic condition involving RIP3-dependent regulated necrosis (necroptosis). Therefore, we investigate the role of miR-21 in acute pancreatitis injury and necroptosis. miR-21 deficiency protects against caerulein- or L-arginine-induced acute pancreatitis in mice. miR-21 inhibition using locked-nucleic-acid-modified oligonucleotide effectively reduces pancreatitis severity. miR-21 deletion is also protective in tumour necrosis factor-induced systemic inflammatory response syndrome. These data suggest that miRNAs are critical participants in necroptosis and miR-21 enhances cellular necrosis by negatively regulating tumour suppressor genes associated with the death-receptor-mediated intrinsic apoptosis pathway, and could be a therapeutic target for preventing pathologic necrosis. "	"To explore the role of amphiregulin in inflammatory epidermal hyperplasia, we overexpressed human AREG (hAREG) in FVB/N mice using a bovine K5 promoter. A construct containing AREG coding sequences flanked by 5' and 3' untranslated region sequences (AREG-UTR) led to a &gt;10-fold increase in hAREG expression compared to an otherwise-identical construct containing only the coding region (AREG-CDR). AREG-UTR mice developed tousled, greasy fur as well as elongated nails and thickened, erythematous tail skin. No such phenotype was evident in AREG-CDR mice. Histologically, AREG-UTR mice presented with marked epidermal hyperplasia of tail skin (2.1-fold increase in epidermal thickness with a 9.5-fold increase in Ki-67(+) cells) accompanied by significantly increased CD4+ T-cell infiltration. Dorsal skin of AREG-UTR mice manifested lesser but still significant increases in epidermal thickness and keratinocyte hyperplasia. AREG-UTR mice also developed marked and significant sebaceous gland enlargement, with corresponding increases in Ki-67(+) cells. To determine the response of AREG-UTR animals to a pro-inflammatory skin challenge, topical imiquimod (IMQ) or vehicle cream was applied to dorsal and tail skin. IMQ increased dorsal skin thickness similarly in both AREG-UTR and wild type mice (1.7- and 2.2-fold vs vehicle, P &lt; 0.001 each), but had no such effect on tail skin. These results confirm that keratinocyte expression of hAREG elicits inflammatory epidermal hyperplasia, and are consistent with prior reports of tail epidermal hyperplasia and increased sebaceous gland size in mice expressing human epigen. "	"Arsenic is a well-known of human carcinogen and miR-301a is an oncogenic microRNA, which links to oncogenesis, however, little is understood about its contribution to arsenic-induced cellular transformation and tumorigenesis. Here, we investigated the role of miR-301a during arsenic-induced cellular transformation and tumor formation. miR-301a was found to be upregulated during arsenic-induced BEAS-2B transformation and the overexpression of miR-301a was dependent on IL-6/STAT3 signaling. Inhibition of miR-301a leads to reduction of cell proliferation, colony formation and cell migration. By using dual luciferase assay, SMAD4 was confirmed to be a direct target of miR-301a in BEAS-2B cells and upregulation of SMAD4 is involved the restraining cell growth and migration. In addition, reducing of miR-301a expression enhances doxorubicin-induced cellular apoptosis of transformed BEAS-2B through up-regulating SMAD4. Furthermore, we demonstrated that downregulation of miR-301a in BEAS-2B attenuates tumor growth in the xenograft model by targeting SMAD4. Of note, the level of miR-301a expression correlated inversely with SMAD4 expression in clinical specimens of human lung cancer. Our findings ascertain that miR-301a is an oncogenic miRNA, which targets SMAD4 to establish an essential mechanism for arsenic-induced carcinogenesis, IL-6/STAT3/miR-301a/SMAD4 signaling pathways."
+"Li, Zong-Ming"	"Biomedical Engineering"	30336369	29678419	28824352	28824216	28343885	28073093	27401044	27074707	26953892	26662276	"Carpal tunnel syndrome is a compression neuropathy at the wrist associated with compromised median nerve mobility. The purpose of this study was to investigate the effects of radioulnar wrist compression on median nerve longitudinal mobility within the carpal tunnel in carpal tunnel syndrome patients as well as healthy subjects. Dynamic ultrasound images captured longitudinal median nerve motion in the carpal tunnel during radioulnar wrist compression force application in 11 healthy subjects and 11 carpal tunnel syndrome patients. We found that median nerve mobility was not significantly affected by radioulnar wrist compression in healthy subjects (P = 0.34), but improved by 10 N radioulnar wrist compression in carpal tunnel syndrome patients (P &lt; 0.05). Analysis of segmental median nerve mobility in carpal tunnel syndrome patients showed significantly improved mobility in the proximal tunnel section under 10 N radioulnar wrist compression force condition compared to the no compression condition (P &lt; 0.05). Moderate radioulnar wrist compression force application helps restore impaired median nerve mobility and may be effective in improve nerve function and symptoms associated with carpal tunnel syndrome."	"Mechanics of carpal tunnel soft tissue, such as fat, muscle and transverse carpal ligament (TCL), around the median nerve may render the median nerve vulnerable to compression neuropathy. The purpose of this study was to understand the roles of carpal tunnel soft tissue mechanical properties and intratunnel pressure on the TCL tensile strain and carpal arch area (CAA) using finite element analysis (FEA). Manual segmentation of the thenar muscles, skin, fat, TCL, hamate bone, and trapezium bone in the transverse plane at distal carpal tunnel were obtained from B-mode ultrasound images of one cadaveric hand. Sensitivity analyses were conducted to examine the dependence of TCL tensile strain and CAA on TCL elastic modulus (0.125-10 MPa volar-dorsally; 1.375-110 MPa transversely), skin-fat and thenar muscle initial shear modulus (1.6-160 kPa for skin-fat; 0.425-42.5 kPa for muscle), and intratunnel pressure (60-480 mmHg). Predictions of TCL tensile strain under different intratunnel pressures were validated with the experimental data obtained on the same cadaveric hand. Results showed that skin, fat and muscles had little effect on the TCL tensile strain and CAA changes. However, TCL tensile strain and CAA increased with decreased elastic modulus of TCL and increased intratunnel pressure. The TCL tensile strain and CAA increased linearly with increased pressure while increased exponentially with decreased elastic modulus of TCL. Softening the TCL by decreasing the elastic modulus may be an alternative clinical approach to carpal tunnel expansion to accommodate elevated intratunnel pressure and alleviate median nerve compression neuropathy."	"Carpal tunnel syndrome (CTS), caused by entrapment of the median nerve in the carpal tunnel, impairs hand function including dexterous manipulation. The purpose of this study was to investigate the effects of CTS on force coordination and muscle coherence during low-intensity sustained precision pinch while the wrist assumed different postures. Twenty subjects (10 CTS patients and 10 asymptomatic controls) participated in this study. An instrumented pinch device was used to measure the thumb and index finger forces while simultaneously collecting surface electromyographic activities of the abductor pollicis brevis (APB) and first dorsal interosseous (FDI) muscles. Subjects performed a sustained precision pinch at 10% maximum pinch force for 15 sec with the wrist stabilized at 30° extension, neutral, or 30° flexion using customized splints. The force discrepancy and the force coordination angle between the thumb and index finger forces were calculated, as well as the β-band (15-30 Hz) coherence between APB and FDI. The index finger applied greater force than the thumb (p &lt; 0.05); this force discrepancy was increased with wrist flexion (p &lt; 0.05), but was not affected by CTS (p &gt; 0.05). The directional force coordination was not significantly affected by wrist posture or CTS (p &gt; 0.05). In general, digit force coordination during precision pinch seems to be sensitive to wrist flexion, but is not affected by CTS. The β-band muscular coherence was increased by wrist flexion for CTS patients (p &lt; 0.05), which could be a compensatory mechanism for the flexion-induced exacerbation of CTS symptoms. This study demonstrates that wrist flexion negatively influences muscle and force coordination in CTS patients supporting the avoidance of flexion posture for symptom exacerbation and functional performance."	"The purpose of this study was to investigate the morphological and mechanical properties of the transverse carpal ligament (TCL) in patients with carpal tunnel syndrome (CTS). Thickness and stiffness of the TCL in eight female CTS patients and eight female control subjects were examined using ultrasound imaging modalities. CTS patients had a 30.9% thicker TCL than control subjects. There was no overall difference in TCL stiffness between the two groups, but the radial TCL region was significantly stiffer than the ulnar region within the CTS group and such a regional difference was not found for the controls. The increased thickness and localized stiffness of the TCL for CTS patients may contribute to CTS symptoms due to reduction in carpal tunnel space and compliance. Advancements in ultrasound technology provide a means of understanding CTS mechanisms and quantifying the morphological and mechanical properties of the TCL in vivo."	"The fine-tuning of digit forces to object properties can be disrupted by carpal tunnel syndrome (CTS). CTS' effects on hand function have mainly been investigated using predictable manipulation tasks; however, unpredictable perturbations are commonly encountered during manual tasks, presenting situations which may be more challenging to CTS patients given their hand impairments. The purpose of this study was to investigate muscle and force responses of the index finger to unpredictable perturbations in patients with CTS. Nine CTS patients and nine asymptomatic controls were instructed to stop the movement of a sliding plate by increasing index finger force following an unexpected perturbation. The electrical activity of the first dorsal interosseous muscle and forces exerted by the index finger were recorded. CTS patients demonstrated 20.9% greater muscle response latency and 12.0% greater force response latency compared to controls (p&lt;0.05). The duration of plate sliding was significantly different between groups (p&lt;0.05); the CTS group's duration was 142.2±5.8ms compared to the control group's duration of 133.1±8.4ms. Although CTS patients had increased muscle and force response durations comparatively, these differences were not statistically significant. Findings from this study suggest CTS-induced sensorimotor deficits interfere with accurate detection, processing and response to unpredictable perturbations. These deficits could be accounted for at multiple levels of the peripheral and central nervous systems. Delayed and decreased responses may indicate inefficient object manipulation by CTS patients and may help to explain why CTS patients tend to drop objects."	"Manipulating the carpal arch width (i.e. distance between hamate and trapezium bones) has been suggested as a means to increase carpal tunnel cross-sectional area and alleviate median nerve compression. The purpose of this study was to develop a finite element model of the carpal tunnel and to determine an optimal force direction to maximize area. A planar geometric model of carpal bones at hamate level was reconstructed from MRI with inter-carpal joint spaces filled with a linear elastic surrogate tissue. Experimental data with discrete carpal tunnel pressures (50, 100, 150, and 200mmHg) and corresponding carpal bone movements were used to obtain material property of surrogate tissue by inverse finite element analysis. The resulting model was used to simulate changes of carpal arch widths and areas with directional variations of a unit force applied at the hook of hamate. Inverse finite element model predicted the experimental area data within 1.5% error. Simulation of force applications showed that carpal arch width and area were dependent on the direction of force application, and minimal arch width and maximal area occurred at 138° (i.e. volar-radial direction) with respect to the hamate-to-trapezium axis. At this force direction, the width changed to 24.4mm from its initial 25.1mm (3% decrease), and the area changed to 301.6mm<sup>2</sup> from 290.3mm<sup>2</sup> (4% increase). The findings of the current study guide biomechanical manipulation to gain tunnel area increase, potentially helping reduce carpal tunnel pressure and relieve symptoms of compression median neuropathy."	"The transverse carpal ligament (TCL) is a component of the flexor pulley system of the wrist, keeping the flexor tendons in place by resisting their volar displacement. The purpose of this study was to investigate the in vivo biomechanical interaction between the TCL and flexor tendons in response to tendon tensioning with the wrist at various postures. In eight healthy subjects, the flexor digitorum superficialis and profundus tendons were tensioned by isometrically applying loads (5, 10, and 15N) to the index finger while the wrist posture was at 20° extension, neutral, 20° flexion, and 40° flexion. The TCL and flexor tendons were imaged at the distal carpal tunnel cross section using ultrasound. The volar-dorsal positions of the tendons, TCL arch height, and TCL-tendon distances were calculated. With increasing wrist flexion, the flexor tendons moved volarly, the TCL arch height increased, and the TCL-tendon distances decreased, indicating that the flexor tendons contacted the TCL and pushed it volarly. The TCL-tendon interaction was amplified by the combination of finger loading and wrist flexion. This study provides in vivo evidence of the biomechanical interaction between the TCL and flexor tendons. Repetitive TCL-tendon interactions may implicate the interacting tissues and the median nerve resulting in tissue maladaptation and nerve compression."	"Flexor retinaculum transection is a routine surgical treatment for carpal tunnel syndrome, yet the biomechanical and clinical sequelae of the procedure remain unclear. We investigated the effects of flexor retinaculum release on carpal tunnel structural compliance using cadaveric hands. The flexor retinaculum was incrementally and sequentially released with transections of 25, 50, 75, and 100 % of the transverse carpal ligament, followed by the distal aponeurosis and then the antebrachial fascia. Paired outward 10 N forces were applied to the insertion sites of the transverse carpal ligament at the distal (hamate-trapezium) and proximal (pisiform-scaphoid) levels of the carpal tunnel. Carpal tunnel compliance was defined as the change in carpal arch width normalized to the constant 10 N force. With the flexor retinaculum intact, carpal tunnel compliance at the proximal level, 0.696 ± 0.128 mm/N, was 13.6 times greater than that at the distal level, 0.056 ± 0.020 mm/N. Complete release of the transverse carpal ligament was required to achieve a significant gain in compliance at the distal level (p &lt; 0.05). Subsequent release of the distal aponeurosis resulted in an appreciable additional increase in compliance (43.0 %, p = 0.052) at the distal level, but a minimal increase (1.7 %, p = 0.987) at the proximal level. Complete flexor retinaculum release provided a significant gain in compliance relative to transverse carpal ligament release alone at both proximal and distal levels (p &lt; 0.05). Overall, complete flexor retinaculum release increased proximal compliance by 52 % and distal compliance by 332 %. The increase in carpal tunnel compliance with complete flexor retinaculum release helps explain the benefit of carpal tunnel release surgery for patients with carpal tunnel syndrome."	"The transverse carpal ligament (TCL) plays a critical role in carpal tunnel biomechanics through interactions with its surrounding tissues. The purpose of this study was to investigate the in vivo adaptations of the TCL's mechanical properties in response to repetitive hand use in pianists using acoustic radiation force impulse (ARFI) imaging. It was hypothesized that pianists, in comparison to non-pianists, would have a stiffer TCL as indicated by an increased acoustic shear wave velocity (SWV). ARFI imagining was performed for 10 female pianists and 10 female non-pianists. The median SWV values of the TCL were determined for the entire TCL, as well as for its radial and ulnar portions, rTCL and uTCL, respectively. The TCL SWV was significantly increased in pianists relative to non-pianists (p &lt; 0.05). Additionally, the increased SWV was location dependent for both pianist and non-pianist groups (p &lt; 0.05), with the rTCL having a significantly greater SWV than the uTCL. Between groups, the rTCL SWV of pianists was 22.2% greater than that of the non-pianists (p &lt; 0.001). This localized increase of TCL SWV, i.e. stiffening, may be primarily attributable to focal biomechanical interactions that occur at the radial TCL aspect where the thenar muscles are anchored. Progressive stiffening of the TCL may become constraining to the carpal tunnel, leading to median nerve compression in the tunnel. TCL maladaptation helps explain why populations who repeatedly use their hands are at an increased risk of developing musculoskeletal pathologies, e.g. carpal tunnel syndrome. "	"The purpose of this study was to investigate the morphological changes of the carpal arch and median nerve during the application of radiounlarly directed compressive force across the wrist in patients with carpal tunnel syndrome. Radioulnar compressive forces of 10 N and 20 N were applied at the distal level of the carpal tunnel in 10 female patients diagnosed with carpal tunnel syndrome. Immediately prior to force application and after 3 min of application, ultrasound images of the distal carpal tunnel were obtained. It was found that applying force across the wrist decreased the carpal arch width (p &lt; 0.001) and resulted in increased carpal arch height (p &lt; 0.01), increased carpal arch curvature (p &lt; 0.001), and increased radial distribution of the carpal arch area (p &lt; 0.05). It was also shown that wrist compression reduced the flattening of the median nerve, as indicated by changes in the nerve's circularity and flattening ratio (p &lt; 0.001). This study demonstrated that the carpal arch can be non-invasively augmented by applying compressive force across the wrist, and that this strategy may decompress the median nerve providing symptom relief to patients with carpal tunnel syndrome. © 2015 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 34:1234-1240, 2016."
+"Lin, Ching-Yi"	"Neurosciences"	29402167	25769013	24937795	22022865	18289871	16000124	12414990	10980193	30948495	29760195	"Spinal cord injury (SCI) causes impaired neuronal function with associated deficits in the musculoskeletal system, which can lead to permanent disability. Here, the impact of SCI on in vivo musculoskeletal adaptation was determined by studying deficits in locomotor function and analyzing changes that occur in the muscle and bone compartments within the rat hindlimb after contusion or transection SCI. Analyses of locomotor patterns, as assessed via the Basso, Beattie, and Bresnahan (BBB) rating scale, revealed that transection animals showed significant deficits, while the contusion group had moderate deficits, compared with naïve groups. Muscle myofiber cross-sectional areas (CSA) of both the soleus and tibialis anterior muscles were significantly decreased three months after contusion SCI. Such decreases in CSA were even more dramatic in the transection SCI group, suggesting a dependence on muscle activity, which is further validated by the correlation analyses between BBB score and myofiber CSA. Bone compartment analyses, however, revealed that transection animals showed the most significant deficits, while contusion animals showed no significant differences in the trabecular bone content within the proximal tibia compartment. In general, values of bone volume per total bone volume (BV/TV) were similar across the SCI groups. Significant decreases were observed, however, in the transection animals for bone mineral content, bone mineral density, and three-dimensional trabecular structure parameters (trabecular number, thickness, and spacing) compared with the naïve and contusion groups. Together, these findings suggest an altered musculoskeletal system can be correlated directly to motor dysfunctions seen after SCI."	"Magnetic stimulation (MS) is a potential treatment for neuropsychiatric disorders. This study investigates whether MS-regulated neuronal activity can translate to specific changes in neuronal arborization and thus regulate synaptic activity and function. To test our hypotheses, we examined the effects of MS on neurite growth of neuroscreen-1 (NS-1) cells over the pulse frequencies of 1, 5 and 10 Hz at field intensities controlled via machine output (MO). Cells were treated with either 30% or 40% MO. Due to the nature of circular MS coils, the center region of the gridded coverslip (zone 1) received minimal (∼5%) electromagnetic current density while the remaining area (zone 2) received maximal (∼95%) current density. Plated NS-1 cells were exposed to MS twice per day for three days and then evaluated for length and number of neurites and expression of brain-derived neurotrophic factor (BDNF). We show that MS dramatically affects the growth of the longest neurites (axon-like) but does not significantly affect the growth of shorter neurites (dendrite-like). Also, MS-induced changes in the longest neurite growth were most evident in zone 1, but not in zone 2. MS effects were intensity-dependent and were most evident in bolstering longest neurite outgrowth, best seen in the 10 Hz MS group. Furthermore, we found that MS-increased BDNF expression and secretion was also frequency-dependent. Taken together, our results show that MS exerts distinct effects when different frequencies and intensities are applied to the neuritic compartments (longest neurite versus shorter dendrite(s)) of NS-1 cells. These findings support the concept that MS increases BDNF expression and signaling, which sculpts longest neurite arborization and connectivity by which neuronal activity is regulated. Understanding the mechanisms underlying MS is crucial for efficiently incorporating its use into potential therapeutic strategies."	"Transcranial magnetic stimulation (TMS) has been shown to modulate multiple brain functions, warranting further exploration in clinical applications. TMS treatment for epilepsy is particularly promising because of its anti-convulsive capabilities. However, TMS has been found to both inhibit and facilitate various experimental and clinical seizures, depending on the TMS parameters used. Repetitive TMS (rTMS) pulse frequency is recognized as one of the most influential parameters and thus was investigated in this study at 1, 5 and 10 Hz for its effects on a rat model of penicillin-induced seizures. High-dose penicillin-induced seizures were characterized by a combination of myoclonic and tonic-clonic (GTC) seizures. rTMS effects were analyzed with intracranial electroencephalographic (iEEG) data and video-captured behaviors. Animals treated with 1 and 5 Hz consistently showed evidence of anti-convulsive properties in their iEEG-based seizure profiles when compared to sham rTMS treatment. In contrast, data from 10 Hz rTMS suggested facilitative characteristics. Our results showed that 5 Hz rTMS consistently outperformed 1 Hz rTMS in seizure suppression. This re-emphasizes the importance in accurately characterizing TMS effects on seizure suppression due to the heterogeneous nature of seizures. Thus, finely tuned TMS treatment has great potential to become a powerful asset in combating epilepsy."	"Chronic pain following spinal cord injury (SCI) is a highly prevalent clinical condition that is difficult to treat. Using both von Frey filaments and radiant infrared heat to assess mechanical allodynia and thermal hyperalgesia, respectively, we have demonstrated that a one-time injection of fibronectin (50 μg/mL) into the spinal dorsal column (1 μL/min each injection for a total of 5 μL) immediately after SCI inhibits the development of mechanical allodynia (but not thermal hyperalgesia) over an 8-month observation period following spinal cord dorsal column crush (DCC). DCC will only induce mechanical Allodynia, but not thermal hyperalgesia or overt motor deficits. By applying various fibronectin fragments as well as competitive inhibitors, these effects were shown to be dependent on the connecting segment-1 (CS-1) motif of fibronectin. Furthermore, we found that acute fibronectin treatment diminished inflammation and blood-spinal cord barrier permeability, which in turn leads to enhanced fiber sparing and sprouting. In particular, the reduction of serotonin (5-HT) in the superficial dorsal horn, an important descending brainstem system in the modulation of pain, was blocked with fibronectin treatment. We conclude that treatment of SCI with fibronectin preserves sensory regulation and prevents the development of chronic allodynia, providing a potential therapeutic intervention to treat chronic pain following SCI."	"Integrins regulate cytoplasmic calcium levels ([Ca(2+)]i) in various cell types but information on activities in neurons is limited. The issue is of current interest because of the evidence that both integrins and changes in [Ca(2+)]i are required for Long-Term Potentiation. Accordingly, the present studies evaluated integrin ligand effects in cortical neurons. Integrin ligands or alpha5beta1 integrin activating antisera rapidly increased [Ca(2+)]i with effects greater in glutamatergic than GABAergic neurons, absent in astroglia, and blocked by beta1 integrin neutralizing antisera and the tyrosine kinase antagonist genistein. Increases depended upon extracellular calcium and intracellular store release. Ligand-induced effects were reduced by voltage-sensitive calcium channel and NMDA receptor antagonists, but blocked by tetrodotoxin or AMPA receptor antagonists. These results indicate that integrin ligation triggers AMPA receptor/depolarization-dependent calcium influx followed by intracellular store release and suggest the possibility that integrin modulation of activity-induced changes in [Ca(2+)]i contributes importantly to lasting synaptic plasticity in forebrain neurons."	"Integrin proteins are critical for stabilization of hippocampal long-term potentiation but the mechanisms by which integrin activities are involved in synaptic transmission are not known. The present study tested whether activation of alpha-amino-3-hydroxy-5-methylisoxazole-4-proprionate (AMPA) class glutamate receptors increases surface expression of alpha5beta1 integrin implicated in synaptic potentiation. Surface protein biotinylation assays demonstrated that AMPA treatment of COS7 cells expressing GluR1 homomeric AMPA receptors increased membrane insertion and steady-state surface levels of alpha5 and beta1 subunits. Treated cells exhibited increased adhesion to fibronectin- and anti-alpha5-coated substrates and tyrosine kinase signaling elicited by fibronectin-substrate adhesion, as expected if new surface receptors are functional. Increased surface expression did not occur in calcium-free medium and was blocked by the protein kinase C inhibitor chelerythrine chloride and the exocytosis inhibitor brefeldin A. AMPA treatment similarly increased alpha5 and beta1 surface expression in dissociated neurons and cultured hippocampal slices. In both neuronal preparations AMPA-induced integrin trafficking was blocked by combined antagonism of NMDA receptor and L-type voltage-sensitive calcium channel activities but was not induced by NMDA treatment alone. These results provide the first evidence that glutamate receptor activation increases integrin surface expression and function, and suggest a novel mechanism by which synaptic activity can engage a volley of new integrin signaling in coordination with, and probably involved in, stabilization of synaptic potentiation."	"ARF-like proteins (ARLs) are distinct group of members of the ARF family of Ras-related GTPases. Although ARLs are very similar in primary structure to ARFs, their functions remain unclear. We cloned mouse (m) and human (h) ARL5 cDNAs to characterize the protein products and their molecular properties. mARL5 mRNA was more abundant in liver than in other adult tissues tested. mARL5, similar to mARL4, was developmentally regulated and localized to nuclei. hARL5 interacted with importin-alpha through its C-terminal bipartite nuclear localization signal. When expressed in COS-7 cells, mutant hARL5(T35N), which is predicted to be GDP bound, was concentrated in nucleoli. The N-terminus of hARL5, like that of ARF, was myristoylated. Yeast two-hybrid screening and in vitro protein-interaction assays showed that hARL5(Q80L), predicted to be GTP bound, interacted with heterochromatin protein 1alpha (HP1alpha), which is known to be associated with telomeres as well as with heterochromatin, and acted as a transcriptional suppressor in mammalian cells. The interaction was reproduced in COS cells, where hARL5(Q80L) was co-immunoprecipitated with HP1alpha. hARL5 interaction with HP1alpha was dependent on the nucleotide bound, and required the MIR-like motif. Moreover, hARL5(Q80L), but not hARL5 lacking the MIR-like motif, was partly co-localized with overexpressed HP1alpha. Our findings suggest that developmentally regulated ARL5, with its distinctive nuclear/nucleolar localization and interaction with HP1alpha, may play a role(s) in nuclear dynamics and/or signaling cascades during embryonic development."	"ADP-ribosylation factors (ARFs) are highly conserved approximately 20-kDa guanine nucleotide-binding proteins that participate in both exocytic and endocytic vesicular transport pathways via mechanisms that are only partially understood. Although several ARF-like proteins (ARLs) are known, their biological functions remain unclear. To characterize its molecular properties, we cloned mouse and human ARL4 (mARL4 and hARL4) cDNA. The appearance of mouse ARL4 mRNA during embryonic development coincided temporally with the sequential formation of somites and the establishment of brain compartmentation. Using ARL4-specific antibody for immunofluorescence microscopy, we observed that endogenous mARL4 in cultured Sertoli and neuroblastoma cells was mainly concentrated in nuclei. When expressed in COS7 cells, ARL4-T34N mutant, predicted to exist with GDP bound, was concentrated in nucleoli. Yeast two-hybrid screening and in vitro protein-interaction assays showed that hARL4 interacted with importin-alpha through its C-terminal NLS region and that the interaction was not nucleotide-dependent. Like ARL2 and -3, recombinant hARL4 did not enhance cholera toxin-catalyzed auto-ADP-ribosylation. Its binding of guanosine 5'-O-(thiotriphosphate) was modified by phospholipid and detergent, and the N terminus of hARL4, like that of ARF, was myristoylated. Our findings suggest that ARL4, with its distinctive nuclear/nucleolar localization and pattern of developmental expression, may play a unique role(s) in neurogenesis and somitogenesis during embryonic development and in the early stages of spermatogenesis in adults."	"Glioblastoma is an incurable brain cancer characterized by high genetic and pathological heterogeneity. Here, we mapped active chromatin landscapes with gene expression, whole exomes, copy number profiles, and DNA methylomes across 44 patient-derived glioblastoma stem cells (GSCs), 50 primary tumors, and 10 neural stem cells (NSCs) to identify essential super-enhancer (SE)-associated genes and the core transcription factors that establish SEs and maintain GSC identity. GSCs segregate into two groups dominated by distinct enhancer profiles and unique developmental core transcription factor regulatory programs. Group-specific transcription factors enforce GSC identity; they exhibit higher activity in glioblastomas versus NSCs, are associated with poor clinical outcomes, and are required for glioblastoma growth in vivo. Although transcription factors are commonly considered undruggable, group-specific enhancer regulation of the MAPK/ERK pathway predicts sensitivity to MEK inhibition. These data demonstrate that transcriptional identity can be leveraged to identify novel dependencies and therapeutic approaches."	"Human Ag R (HuR) is an RNA binding protein in the ELAVL protein family. To study the neuron-specific function of HuR, we generated inducible, neuron-specific HuR-deficient mice of both sexes. After tamoxifen-induced deletion of HuR, these mice developed a phenotype consisting of poor balance, decreased movement, and decreased strength. They performed significantly worse on the rotarod test compared with littermate control mice, indicating coordination deficiency. Using the grip-strength test, it was also determined that the forelimbs of neuron-specific HuR-deficient mice were much weaker than littermate control mice. Immunostaining of the brain and cervical spinal cord showed that HuR-deficient neurons had increased levels of cleaved caspase-3, a hallmark of cell apoptosis. Caspase-3 cleavage was especially strong in pyramidal neurons and α motor neurons of HuR-deficient mice. Genome-wide microarray and real-time PCR analysis further indicated that HuR deficiency in neurons resulted in altered expression of genes in the brain involved in cell growth, including trichoplein keratin filament-binding protein, Cdkn2c, G-protein signaling modulator 2, immediate early response 2, superoxide dismutase 1, and Bcl2. The additional enriched Gene Ontology terms in the brain tissues of neuron-specific HuR-deficient mice were largely related to inflammation, including IFN-induced genes and complement components. Importantly, some of these HuR-regulated genes were also significantly altered in the brain and spinal cord of patients with amyotrophic lateral sclerosis. Additionally, neuronal HuR deficiency resulted in the redistribution of TDP43 to cytosolic granules, which has been linked to motor neuron disease. Taken together, we propose that this neuron-specific HuR-deficient mouse strain can potentially be used as a motor neuron disease model."
+"Lin, Feng"	"Inflammation and Immunity"	30066197	30006485	29909366	29695418	29472120	28955337	28760953	28209777	28045484	27909060	"Previous studies have demonstrated that staphylococcal superantigen-like protein 7 (SSL7), a protein produced by Staphylococcus aureus, potently inhibits the formation of the complement membrane attack complex by binding to complement component 5 (C5). However, because of the predicted immunogenicity of SSL7 as a foreign protein in humans, its potential as a new complement inhibitor for treating complement-mediated diseases is uncertain. In this study, we found that administration of SSL7 significantly prevented complement-mediated hemolysis and reduced hemoglobinuria in a mouse model of complement-mediated intravascular hemolysis. Interestingly, although repetitive administrations of SSL7 elicited anti-SSL7 antibody production, administration of SSL7 at a dose of 2 μg/mouse was still able to significantly attenuate complement-mediated intravascular hemolysis in vivo in the presence of the antibodies. In addition, even though anti-SSL7 antibodies were detectable in normal human donors, these antibodies did not significantly reduce the complement inhibitory activity of SSL7 in in vitro assays. Finally, inoculation of SSL7 in the anterior chamber of the eye suppressed the production of SSL7-reactive antibodies after repetitive SSL7 administration. These results suggest that SSL7 could be developed as an economical alternative to the existing C5-targeted drug, eculizumab, especially for controlling acute complement activation in catastrophic conditions such as drug-induced immune hemolytic anemia and ABO-incompatible erythrocyte transfusions. These data also suggest that approaches such as anterior chamber-associated immune deviation could be employed to establish an antigen-specific immune tolerance for long-term SSL7 administration. • SSL7 functions in the presence of anti-SSL7 antibodies both in vitro and in vivo. • SSL7 has the potential to be developed as a new and economical complement inhibitor for treating complement-mediated hemolysis."	"Purpose: Somatic mutations in the isocitrate dehydrogenase (IDH)-1 and -2 genes are remarkably penetrant in diffuse gliomas. These highly effective gain-of-function mutations enable mutant IDH to efficiently metabolize isocitrate to D-2-hydroxyglutarate (D 2-HG) that accumulates to high concentrations within the tumor microenvironment. D 2-HG is an intracellular effector that promotes tumor growth through widespread epigenetic changes in IDH-mutant tumor cells, but its potential role as an intercellular immune regulator remains understudied.Experimental Design: Complement activation and CD4<sup>+</sup>, CD8<sup>+</sup>, or FOXP3<sup>+</sup> T-cell infiltration into primary tumor tissue were determined by immunohistochemistry using sections from 72 gliomas of World Health Organization (WHO) grade III and IV with or without IDH mutations. Ex vivo experiments with D 2-HG identified immune inhibitory mechanisms.Results: IDH mutation associated with significantly reduced complement activation and decreased numbers of tumor-infiltrating CD4<sup>+</sup> and CD8<sup>+</sup> T cells with comparable FOXP3<sup>+</sup>/CD4<sup>+</sup> ratios. D 2-HG potently inhibited activation of complement by the classical and alternative pathways, attenuated complement-mediated glioma cell damage, decreased cellular C3b(iC3b) opsonization, and impaired complement-mediated phagocytosis. Although D 2-HG did not affect dendritic cell differentiation or function, it significantly inhibited activated T-cell migration, proliferation, and cytokine secretion.Conclusions: D 2-HG suppresses the host immune system, potentially promoting immune escape of IDH-mutant tumors. Clin Cancer Res; 24(21); 5381-91. ©2018 AACR."	"Excessive complement activation contributes significantly to the pathogeneses of various diseases. Currently, significant developmental research efforts aim to identify complement inhibitors with therapeutic uses have led to the approval of one inhibitor for clinical use. However, most existing complement inhibitors are based on monoclonal antibodies, which have many drawbacks such as high costs and limited administration options. With this report, we establish an inexpensive, cell imaging-based high-throughput assay for the large-scale screening of potential small molecule complement inhibitors. Using this assay, we screened a library containing 3115 bioactive chemical compounds and identified cisplatin and pyridostatin as two new complement inhibitors in addition to nafamostat mesylate, a compound with known complement inhibitory activity. We further demonstrated that cisplatin and pyridostatin inhibit C5 convertases in the classical pathway of complement activation but have no effects on the alternative pathway of complement activation. In summary, this work has established a simple, large-scale, high-throughput assay for screening novel complement inhibitors and discovered previously unknown complement activation inhibitory activities for cisplatin and pyridostatin."	"Chemotherapy-induced peripheral neuropathy (CIPN) is a painful and debilitating side effect of cancer chemotherapy with an unclear pathogenesis. Consequently, the available therapies for this neuropathic pain syndrome are inadequate, leading to a significantly reduced quality of life in many patients. Complement, a key component of the innate immune system, has been associated with neuroinflammation, a potentially important trigger of some types of neuropathic pain. However, the role of complement in CIPN remains unclear. To address this issue, we developed a C3 knockout (KO) rat model and induced CIPN in these KO rats and wild-type littermates via the i.p. administration of paclitaxel, a chemotherapeutic agent associated with CIPN. We then compared the severity of mechanical allodynia, complement activation, and intradermal nerve fiber loss between the groups. We found that 1) i.p. paclitaxel administration activated complement in wild-type rats, 2) paclitaxel-induced mechanical allodynia was significantly reduced in C3 KO rats, and 3) the paclitaxel-induced loss of intradermal nerve fibers was markedly attenuated in C3 KO rats. In in vitro studies, we found that paclitaxel-treated rat neuronal cells activated complement, leading to cellular injury. Our findings demonstrate a previously unknown but pivotal role of complement in CIPN and suggest that complement may be a new target for the development of novel therapeutics to manage this painful disease."	"CD6 is emerging as a new target for treating many pathological conditions in which T cells are integrally involved, but even the latest data from studies of CD6 gene engineered mice were still contradictory. To address this issue, we studied experimental autoimmune uveitis (EAU), a model of autoimmune uveitis, in wild-type (WT) and CD6 knockout (KO) mice. After EAU induction in WT and CD6 KO mice, we evaluated ocular inflammation and compared retinal antigen-specific T-cell responses using scanning laser ophthalmoscopy, spectral-domain optical coherence tomography, histopathology, and T cell recall assays. Uveitogenic T cells from WT and CD6 KO mice were adoptively transferred into WT naïve mice to confirm the impact of CD6 on T cells. In addition, we immunized CD6 KO mice with recombinant CD6 protein to develop mouse anti-mouse CD6 monoclonal antibodies (mAbs) in which functional antibodies exhibiting cross-reactivity with human CD6 were screened and identified for treatment studies. In CD6 KO mice with EAU, we found significantly decreased retinal inflammation and reduced autoreactive T-cell responses, and confirmed the impaired uveitogenic capacity of T cells from these mice in an adoptive transfer experiment. Notably, one of these cross-reactive mAbs significantly ameliorated retinal inflammation in EAU induced by the adoptive transfer of uveitogenic T cells. Together, these data strongly suggest that CD6 plays a previously unknown, but pivotal role in autoimmune uveitis, and may be a promising new treatment target for this blinding disease. In addition, the newly developed mouse anti-mouse/human CD6 mAbs could be valuable tools for testing CD6-targeted therapies in other mouse models of human diseases."	"In addition to its conventional roles in the innate immune system, complement has been found to directly regulate T cells in the adaptive immune system. Complement components, including C3, C5, and factor D, are important in regulating T cell responses. However, whether complement component C4 is involved in regulating T cell responses remains unclear. In this study, we used a T cell-dependent model of autoimmunity, experimental autoimmune uveitis (EAU) to address this issue. We compared disease severity in wild-type (WT) and C4 knockout (KO) mice using indirect ophthalmoscopy, scanning laser ophthalmoscopy, spectral-domain optical coherence tomography, and histopathological analysis. We also explored the underlying mechanism by examining T cell responses in ex vivo antigen-specific recall assays and in in vitro T cell priming assays using bone marrow-derived dendritic cells, splenic dendritic cells, and T cells from WT or C4 KO mice. We found that C4 KO mice develop less severe retinal inflammation than WT mice in EAU and show reduced autoreactive T cell responses and decreased retinal T cell infiltration. We also found that T cells, but not dendritic cells, from C4 KO mice have impaired function. These results demonstrate a previously unknown role of C4 in regulating T cell responses, which affects the development of T cell-mediated autoimmunity, as exemplified by EAU. Our data could shed light on the pathogenesis of autoimmune uveitis in humans."	"It has been proposed that CD6, an important regulator of T cells, functions by interacting with its currently identified ligand, CD166, but studies performed during the treatment of autoimmune conditions suggest that the CD6-CD166 interaction might not account for important functions of CD6 in autoimmune diseases. The antigen recognized by mAb 3A11 has been proposed as a new CD6 ligand distinct from CD166, yet the identity of it is hitherto unknown. We have identified this CD6 ligand as CD318, a cell surface protein previously found to be present on various epithelial cells and many tumor cells. We found that, like CD6 knockout (KO) mice, CD318 KO mice are also protected in experimental autoimmune encephalomyelitis. In humans, we found that CD318 is highly expressed in synovial tissues and participates in CD6-dependent adhesion of T cells to synovial fibroblasts. In addition, soluble CD318 is chemoattractive to T cells and levels of soluble CD318 are selectively and significantly elevated in the synovial fluid from patients with rheumatoid arthritis and juvenile inflammatory arthritis. These results establish CD318 as a ligand of CD6 and a potential target for the diagnosis and treatment of autoimmune diseases such as multiple sclerosis and inflammatory arthritis."	"CD6 was established as a marker of T cells more than three decades ago, and recent studies have identified CD6 as a risk gene for multiple sclerosis (MS), a disease in which autoreactive T cells are integrally involved. Nevertheless, the precise role of CD6 in regulating T-cell responses is controversial and its significance in the pathogenesis of various diseases remains elusive, partly due to the lack of animals engineered to alter expression of the CD6 gene. In this report, we found that CD6 KO mice showed decreased pathogenic T-cell responses, reduced spinal cord T-cell infiltration, and attenuated disease severity in experimental autoimmune encephalomyelitis (EAE), an animal model of MS. CD6-deficient T cells exhibited augmented activation, but also significantly reduced survival and proliferation after activation, leading to overall decreased Th1 and Th17 polarization. Activated CD6-deficient T cells also showed impaired infiltration through brain microvascular endothelial cell monolayers. Furthermore, by developing CD6 humanized mice, we identified a mouse anti-human CD6 monoclonal antibody that is highly effective in treating established EAE without depleting T cells. These results suggest that (i) CD6 is a negative regulator of T-cell activation, (ii) at the same time, CD6 is a positive regulator of activated T-cell survival/proliferation and infiltration; and (iii) CD6 is a potential new target for treating MS and potentially other T-cell-driven autoimmune conditions."	"The complement system is emerging as a new target for treating many diseases. For example, Eculizumab, a humanized monoclonal antibody against complement component 5 (C5), has been approved for paroxysmal nocturnal hemoglobinuria (PNH) in which patient erythrocytes are lysed by complement. In this study, we developed vaccines to elicit autologous anti-C5 antibody production in mice for complement inhibition. Immunization of mice with a conservative C5 xenoprotein raised high titers of IgG's against the xenogenous C5, but these antibodies did not reduce C5 activity in the blood. In contrast, an autologous mouse C5 vaccine containing multiple predicted epitopes together with a tolerance-breaking peptide was found to induce anti-C5 autoantibody production in vivo, resulting in decreased hemolytic activity in the blood. We further validated a peptide epitope within this C5 vaccine and created recombinant virus-like particles (VLPs) displaying this epitope fused with the tolerance breaking peptide. Immunizing mice with these novel nanoparticles elicited strong humoral responses against recombinant mouse C5, reduced hemolytic activity, and protected the mice from complement-mediated intravascular hemolysis in a model of PNH. This proof-of-concept study demonstrated that autologous C5-based vaccines could be an effective alternative or supplement for treating complement-mediated diseases such as PNH."	"Intestinal ischemia/reperfusion (I/R) injury is a relatively common pathological condition that can lead to multi-organ failure and mortality. Regulatory mechanism for this disease is poorly understood, although it is established that circulating pathogenic natural IgM, which is primarily produced by B1a cells outside of the peritoneal cavity, are integrally involved. CD6 was originally identified as a marker for T cells and was later found to be present on some subsets of B cells in humans; however, whether CD6 plays any role in intestinal I/R-induced injury and, if so, the underlying mechanisms, remain unknown. Here we report that CD6<sup>-/-</sup> mice were significantly protected from intestinal inflammation and mucosal damage compared with WT mice in a model of intestinal I/R-induced injury. Mechanistically, we found that CD6 was selectively expressed on B1 cells outside of the bone marrow and peritoneal cavity and that pathogenic natural IgM titers were reduced in the CD6<sup>-/-</sup> mice in association with significantly decreased B1a cell population. Our results reveal an unexpected role of CD6 in the pathogenesis of intestinal IR-induced injury by regulating the self-renewal of B1a cells."
+"Lindner, Daniel"	"Translational Hematology and Oncology Research"	27560553	23202046	19430495	18937547	18074035	17379600	16847314	16689662	15634191	12881518	"Renal cell carcinoma (RCC) patients treated with tyrosine kinase inhibitors (TKI) typically respond initially, but usually develop resistance to therapy. We utilised transcriptome analysis to identify gene expression changes during development of sunitinib resistance in a RCC patient-derived xenograft (PDX) model. RCC tumours were harvested during pre-treatment, response and escape phases. Direct anti-proliferative effects of sunitinib plus MEK inhibitor were assessed. Activation status (phosphorylation) of MEK1/2 and ERK1/2 was determined, myeloid-derived suppressor cells (MDSC) sub-fractions were quantitated and G-CSF was measured by ELISA. During the response phase, tumours exhibited 91% reduction in volume, characterised by decreased expression of cell survival genes. After 4-week treatment, tumours developed resistance to sunitinib, associated with increased expression of pro-angiogenic and cell survival genes. During tumour escape, cellular movement, inflammatory response and immune cell trafficking genes were induced, along with intra-tumoural accumulation of MDSC. In this PDX model, either continuous treatment with sunitinib plus MEK inhibitor PD-0325901, or switching from sunitinib to PD-0325901 was effective. The combination of PD-0325901 with TKI suppressed intra-tumoural phospho-MEK1/2, phospho-ERK1/2 and MDSC. Continuous treatment with sunitinib alone did not maintain anti-tumour response; addition of MEK inhibitor abrogated resistance, leading to improved anti-tumour efficacy."	"Reversibility of aberrant methylation via pharmacological means is an attractive target for therapies through epigenetic reprogramming. To establish that pharmacologic reversal of methylation could result in functional inhibition of angiogenesis, we undertook in vitro and in vivo studies of thrombospondin-1 (TSP1), a known inhibitor of angiogenesis. TSP1 is methylated in several malignancies, and can inhibit angiogenesis in melanoma xenografts. We analyzed effects of 5-Aza-deoxycytidine (5-Aza-dC) on melanoma cells in vitro to confirm reversal of promoter hypermethylation and restoration of TSP1 expression. We then investigated the effects of TSP1 expression on new blood vessel formation and tumor growth in vivo. Finally, to determine potential for clinical translation, the methylation status of TSP1 promoter regions of nevi and melanoma tissues was investigated. 5-Aza-dC reduced DNA (cytosine-5)-methyltransferase 1 (DNMT1) protein, reversed promoter hypermethylation, and restored TSP1 expression in five melanoma cell lines, while having no effect on TSP1 protein levels in normal human melanocytes. In in vivo neovascularization studies, mice were implanted with melanoma cells (A375) either untreated or treated with 5Aza-dC. Vessels at tumor sites were counted by an observer blinded to treatments and the number of tumor vessels was significantly decreased at pretreated tumor sites. This difference occurred before a significant difference in tumor volumes was seen, yet in further studies the average tumor volume in mice treated in vivo with 5-Aza-dC was decreased by 55% compared to untreated controls. Knockdown of TSP1 expression with shRNA enhanced tumor-induced angiogenesis by 68%. Analyses of promoter methylation status of TSP1 in tumors derived from untreated and treated mice identified 67% of tumors from untreated and 17% of tumors from treated mice with partial methylation consistent with the methylation specific PCR analysis of A375 cells. Examination of methylation patterns in the promoter of TSP1 and comparison of aberrantly methylated TSP1 in melanoma with non-malignant nevi identified a significantly higher frequency of promoter methylation in tumor samples from melanoma patients. Pharmacological reversal of methylation silenced TSP1 had functional biological consequences in enhancing angiogenesis inhibition and inducing antitumor effects to decrease murine melanoma growth. Angiogenesis inhibition is an additional mechanism by which epigenetic modulators can have antitumor effects."	"Inositol hexakisphosphate kinase 2 (IP6K2), a member of the inositol hexakisphosphate kinase family, functions as a growth suppressive and apoptosis-enhancing kinase during cell stress. We created mice with a targeted deletion of IP6K2; these mice display normal embryogenesis, development, growth and fertility. Chronic exposure to the carcinogen 4-nitroquinoline 1-oxide (4-NQO, a UV-mimetic compound) in drinking water resulted in fourfold increased incidence of invasive squamous cell carcinoma (SCC) formation in the oral cavity and esophagus of the knockout (KO) mice compared to the wild-type (WT) littermates. Paradoxically, KO mice displayed relative resistance to ionizing radiation and exhibit enhanced survival following 8-10 Gy total body irradiation. Primary KO fibroblasts displayed resistance to antiproliferative effects of interferon-beta and increased colony forming units following ionizing radiation. Radioresistance of KO fibroblasts was associated with accelerated DNA repair measured by comet assay. Direct microinjection of 5-PP-Ins(1,2,3,4,6)P(5) (the enzymatic product of IP6K2), but not InsP(6) (the substrate of IP6K2) induced cell death in SCC22A squamous carcinoma cells."	"Interferons (IFNs) have proven antitumor activity against a variety of human malignancies, which may result, at least in part, from inhibition of angiogenesis. The objective of this study was to identify IFN-stimulated genes (ISGs) that played a role in mediation of angiogenic inhibition. IFN-beta was a more potent antiangiogenic agent compared to IFN-alpha2b (80% versus 20%, respectively) and suggests that IFNs inhibited angiogenesis by preventing endothelial cell differentiation, and not by direct antiproliferative effects. To identify ISGs that were key inhibitors of angiogenesis, we utilized an in vitro fibrin gel angiogenic assay which closely recapitulated the in vivo processes of angiogenesis. DNA microarray analysis of IFN-beta-treated endothelial cells in the fibrin gel assay identified 11 ISGs that were induced &gt;10-fold during angiogenesis inhibition. Recombinant IP-10 inhibited angiogenesis in a dose-dependent fashion, but was a less effective inhibitor compared to IFN-beta, suggesting that additional ISGs are involved in inhibiting angiogenesis. ISG20 was upregulated by microarray analysis, but did not inhibit angiogenesis when overexpressed in human umbilical vein endothelial cells (HUVECs). However, a dominant negative mutant of ISG20 inhibited angiogenesis by 43%. Results suggest that IFN-induced angiogenic inhibition was likely mediated by multiple ISGs; our novel finding is that decreased exonuclease activity in HUVECs associated with expression of the ISG20 ExoII mutant inhibited angiogenesis."	"Nitrosylcobalamin (NO-Cbl) is a chemotherapeutic pro-drug derived from vitamin B12 that preferentially delivers nitric oxide (NO) to tumor cells, based upon increased receptor expression. NO-Cbl induces Apo2L/TRAIL-mediated apoptosis and inhibits survival signaling in a variety of malignant cell lines. Chemotherapeutic agents often simultaneously induce an apoptotic signal and activation of NF-kappaB, which has the undesired effect of promoting cell survival. The specific aims of this study were to 1) measure the anti-tumor effects of NO-Cbl alone and in combination with conventional chemotherapeutic agents, and to 2) examine the mechanism of action of NO-Cbl as a single agent and in combination therapy. Using anti-proliferative assays, electrophoretic mobility shift assay (EMSA), immunoblot analysis and kinase assays, we demonstrate an increase in the effectiveness of chemotherapeutic agents in combination with NO-Cbl as a result of suppressed NF-kappaB activation. Eighteen chemotherapeutic agents were tested in combination with NO-Cbl, in thirteen malignant cell lines, resulting in a synergistic anti-proliferative effect in 78% of the combinations tested. NO-Cbl pre-treatment resulted in decreased NF-kappaB DNA binding activity, inhibition of IkappaB kinase (IKK) enzymatic activity, decreased AKT activation, increased caspase-8 and PARP cleavage, and decreased cellular XIAP protein levels. The use of NO-Cbl to inhibit survival signaling may enhance drug efficacy by preventing concomitant activation of NF-kappaB or AKT."	"We previously showed that inositol hexakisphosphate kinase 2 (IHPK2) functions as a growth-suppressive and apoptosis-enhancing kinase during cell stress. Overexpression of IHPK2 sensitized ovarian carcinoma cell lines to the growth-suppressive and apoptotic effects of interferon beta (IFN-beta), IFN-alpha2, and gamma-irradiation. Expression of a kinase-dead mutant abrogated 50% of the apoptosis induced by IFN-beta. Because the kinase-dead mutant retained significant response to cell stressors, we hypothesized that a portion of the death-promoting function of IHPK2 was independent of its kinase activity. We now demonstrate that IHPK2 binds to tumor necrosis factor (TNF) receptor-associated factor (TRAF) 2 and interferes with phosphorylation of transforming growth factor beta-activated kinase 1 (TAK1), thereby inhibiting NF-kappaB signaling. IHPK2 contains two sites required for TRAF2 binding, Ser-347 and Ser-359. Compared with wild type IHPK2-transfected cells, cells expressing S347A and S359A mutations displayed 3.5-fold greater TAK1 activation following TNF-alpha. This mutant demonstrated a 6-10-fold increase in NF-kappaB DNA binding following TNF-alpha compared with wild type IHPK2-expressing cells in which NF-kappaB DNA binding was inhibited. Cells transfected with wild type IHPK2 or IHPK2 mutants that lacked S347A and S359A mutations displayed enhanced terminal deoxynucleotidyltransferase-mediated dUTP nick end-labeling staining following TNF-alpha. We believe that IHPK2-TRAF2 binding leads to attenuation of TAK1- and NF-kappaB-mediated signaling and is partially responsible for the apoptotic activity of IHPK2."	"We have previously demonstrated that nitrosylcobalamin (NO-Cbl), an analogue of vitamin B12 that delivers nitric oxide (NO), had potent antiproliferative activity against several human cancer cell lines. NO-Cbl induced apoptosis via a death receptor/caspase-8 pathway. In this study, we demonstrate that a functional Apo2L/TRAIL receptor was necessary for the induction of cell death by NO-Cbl. Furthermore, the Apo2L/TRAIL death receptor DR4 (TRAIL R1) was S nitrosylated following NO-Cbl treatment. Human melanoma (A375), renal carcinoma (ACHN), and ovarian carcinoma (NIH-OVCAR-3) cells were treated with NO-Cbl and subjected to the biotin switch assay; S-nitrosylated DR4 was detected in all three cell lines. NO-Cbl treatment did not cause S nitrosylation of DR5. The seven cysteine residues located in the cytoplasmic domain of DR4 were individually point mutated to alanines. NIH-OVCAR-3 cells expressing the DR4 C336A mutation lacked S nitrosylation following NO-Cbl treatment. Overexpression of wild-type DR4 sensitized cells to growth inhibition by NO-Cbl. Cells expressing the DR4 C336A mutant were more resistant to NO-Cbl and Apo2L/TRAIL than were the other six C-A mutations or wild-type cells. The C336A mutant also displayed blunted caspase-8 enzymatic activity following NO-Cbl treatment compared to the other mutants. Thus, DR4 residue C336 becomes S nitrosylated and promotes apoptosis following NO-Cbl treatment."	"Interferon-alpha (IFN-alpha) has proved effective in the treatment of hemangiomas, hemangioblastomas, and Kaposi's sarcoma. To investigate the ability of IFNs to inhibit angiosarcoma, we used two transformed murine endothelial cell lines that form angiosarcomas in vivo. SVR and MS1-VEGF cell lines express oncogenic H-ras or vascular endothelial growth factor (VEGF), respectively. IFN-alpha1,8, which is active against murine and human cells, inhibited SVR and MS1-VEGF proliferation in vitro by 40% at 10(3) U/mL (p = 0.028). In vivo, IFN-alpha1,8 inhibited SVR tumor volume by 71% (p = 0.047) and MS1-VEGF volume by 79% (p = 0.003). Tumor-induced angiogenesis was decreased in SVR tumors by 52% (p = 0.005) and in MS1-VEGF tumors by 58% (p = 0.001). Sera from IFN-alpha1,8-treated mice bearing either SVR or MS1-VEGF tumors demonstrated a 5-fold increase in IP-10/CXCL10 (p = 0.001), an IFN-induced antiangiogenic protein. Both recombinant IP-10 and IFN-alpha1,8 inhibited human umbilical vein endothelial cell (HUVEC) vessel formation in the fibrin gel assay, a three-dimensional culture model of angiogenesis, by 56% at 25 ng/mL and 50% at 1.2 ng/mL, respectively (p &lt; 0.001). An IP-10 blocking antibody restored vessel formation to 80% of untreated controls (p = 0.001). Given the magnitude of the in vivo response, these data suggested that the antitumor effects of IFN-alpha1,8 were likely mediated through angiogenesis inhibition rather than solely by direct inhibition of tumor cell proliferation."	"Previously, we have reported that overexpression of IHPK2 (inositol hexakisphosphate kinase 2) sensitized NIH-OVCAR-3 ovarian carcinoma cell lines to the growth-suppressive and apoptotic effects of IFN-beta (interferon-beta) treatment and gamma-irradiation. In the present study, we demonstrate that Apo2L/TRAIL (Apo2L/tumour-necrosis-factor-related apoptosis-inducing ligand) is a critical mediator of IFN-induced apoptosis in these cells. Compared with IFN-alpha2, IFN-beta is a more potent inducer of Apo2L/TRAIL and IHPK2 activity. Overexpression of IHPK2 converts IFN-alpha2-resistant cells into cells that readily undergo apoptosis in response to IFN-alpha2. In untreated cells transfected with IHPK2-eGFP (where eGFP stands for enhanced green fluorescent protein), the fusion protein is localized to the cytoplasm and perinuclear region. After treatment with IFN-beta, IHPK2-eGFP translocated to the nucleus. In cells transfected with mutant IHPK2-NLS-eGFP (where NLS stands for nuclear localization sequence), containing point mutations in the NLS, the fusion protein remained trapped in the cytoplasm, even after IFN-beta treatment. Cells expressing mutant NLS mutation were more resistant to IFN-beta. The IC50 value of IHPK2-expressing cells was 2-3-fold lower than vector control. The IC50 value of NLS-mutant-expressing cells was 3-fold higher than vector control. Blocking antibodies to Apo2L/TRAIL or transfection with a dominant negative Apo2L/TRAIL receptor (DR5Delta) inhibited the antiproliferative effects of IFN-beta. Thus overexpression of IHPK2 enhanced apoptotic effects of IFN-beta, and expression of the NLS mutant conferred resistance to IFN-beta. Apo2L/TRAIL expression and nuclear localization of IHPK2 are both required for the induction of apoptosis by IFN-beta in ovarian carcinoma."	"We have previously demonstrated the anti-tumor activity of nitrosylcobalamin (NO-Cbl), an analog of vitamin B12 that delivers nitric oxide (NO) and increases the expression of tumor necrosis factor-related apoptosis-inducing ligand (Apo2L/TRAIL) and its receptors in human tumors. The specific aim of this study was to examine whether NO-Cbl could sensitize drug-resistant melanomas to Apo2L/TRAIL. Antiproliferative effects of NO-Cbl and Apo2L/TRAIL were assessed in malignant melanomas and non-tumorigenic melanocyte and fibroblast cell lines. Athymic nude mice bearing human melanoma A375 xenografts were treated with NO-Cbl and Apo2L/TRAIL. Apoptosis was measured by TUNEL and confirmed by examining levels and activity of key mediators of apoptosis. The activation status of NF-kappa B was established by assaying DNA binding, luciferase reporter activity, the phosphorylation status of I kappa B alpha, and in vitro IKK activity. NO-Cbl sensitized Apo2L/TRAIL-resistant melanoma cell lines to growth inhibition by Apo2L/TRAIL but had minimal effect on normal cell lines. NO-Cbl and Apo2L/TRAIL exerted synergistic anti-tumor activity against A375 xenografts. Treatment with NO-Cbl followed by Apo2L/TRAIL induced apoptosis in Apo2L/TRAIL-resistant tumor cells, characterized by cleavage of caspase-3, caspase-8, and PARP. NO-Cbl inhibited IKK activation, characterized by decreased phosphorylation of I kappa B alpha and inhibition of NF-kappa B DNA binding activity. NO-Cbl suppressed Apo2L/TRAIL- and TNF-alpha-mediated activation of a transfected NF-kappa B-driven luciferase reporter. XIAP, an inhibitor of apoptosis, was inactivated by NO-Cbl. NO-Cbl treatment rendered Apo2L/TRAIL-resistant malignancies sensitive to the anti-tumor effects of Apo2L/TRAIL in vitro and in vivo. The use of NO-Cbl and Apo2L/TRAIL capitalizes on the tumor-specific properties of both agents and represents a promising anti-cancer combination."
+"Longworth, Michelle"	"Inflammation and Immunity"	30407525	30068527	29028794	28820335	27317808	26734601	25701737	24204294	22496667	19714354	"Inflammatory bowel diseases (IBDs) are chronic inflammatory disorders affecting the gastrointestinal tract. The incidence of IBD is increasing, with more cases occurring in developed countries. Multiple factors such as genetics, environmental changes, gut microbiota, and immune abnormalities have been associated with development of IBD. In recent years, it has become increasingly apparent that epigenetic modifications of chromatin and the manner in which chromatin is organized in the nucleus are additionally important elements that can influence responses induced by the factors described above, and may therefore contribute to the onset and pathogenesis of IBD. Epigenetics and chromatin organization regulate diverse functions that include maintenance of homeostasis in the intestinal epithelium, the development and differentiation of immune cells, and modulation of responses generated by the immune system to defend against potential pathogens. Furthermore, changes in epigenetic chromatin marks and in chromatin organization have now been linked to differential gene expression in IBD patient cells. Although direct evidence for a role of histone modifications in IBD is currently very limited, in this review, we summarize the links between various epigenetic modifications, the proteins that catalyze or recognize these modifications, and the development or progression of IBD in human and experimental IBD. We also discuss how epigenetics influence the organization of DNA contacts to regulate gene expression and the implications this may have for diagnosing and treating IBD."	"The Condensin II complex plays important, conserved roles in genome organization throughout the cell cycle and in the regulation of gene expression. Previous studies have linked decreased Condensin II subunit expression with a variety of diseases. Here, we show that elevated levels of Condensin II subunits are detected in somatic cancers. To evaluate potential biological effects of elevated Condensin II levels, we overexpressed the Condensin II subunit, dCAP-D3 in Drosophila melanogaster larval tissues and examined the effects on the mitotic- and interphase-specific functions of Condensin II. Interestingly, while ubiquitous overexpression resulted in pupal lethality, tissue specific overexpression of dCAP-D3 caused formation of nucleoplasmic protein aggregates which slowed mitotic prophase progression, mimicking results observed when dCAP-D3 levels are depleted. Surprisingly, dCAP-D3 aggregate formation resulted in faster transitions from metaphase to anaphase. Overexpressed dCAP-D3 protein failed to precipitate other Condensin II subunits in nondividing tissues, but did cause changes to gene expression which occurred in a manner opposite of what was observed when dCAP-D3 levels were depleted in both dividing and nondividing tissues. Our findings show that altering dCAP-D3 levels in either direction has detrimental effects on mitotic timing, the regulation of gene expression, and organism development. Taken together, these data suggest that the different roles for Condensin II throughout the cell cycle may be independent of each other and/or that dCAP-D3 may possess functions that are separate from those involving its association with the Condensin II complex. If conserved, these findings could have implications for tumors harboring elevated CAP-D3 levels."	"LINE-1 (L1) retrotransposons can mobilize (retrotranspose) within the human genome, and mutagenic de novo L1 insertions can lead to human diseases, including cancers. As a result, cells are actively engaged in preventing L1 retrotransposition. This work reveals that the human Condensin II complex restricts L1 retrotransposition in both non-transformed and transformed cell lines through inhibition of L1 transcription and translation. Condensin II subunits, CAP-D3 and CAP-H2, interact with members of the Gamma-Interferon Activated Inhibitor of Translation (GAIT) complex including the glutamyl-prolyl-tRNA synthetase (EPRS), the ribosomal protein L13a, Glyceraldehyde 3-phosphate dehydrogenase (GAPDH), and NS1 associated protein 1 (NSAP1). GAIT has been shown to inhibit translation of mRNAs encoding inflammatory proteins in myeloid cells by preventing the binding of the translation initiation complex, in response to Interferon gamma (IFN-γ). Excitingly, our data show that Condensin II promotes complexation of GAIT subunits. Furthermore, RNA-Immunoprecipitation experiments in epithelial cells demonstrate that Condensin II and GAIT subunits associate with L1 RNA in a co-dependent manner, independent of IFN-γ. These findings suggest that cooperation between the Condensin II and GAIT complexes may facilitate a novel mechanism of L1 repression, thus contributing to the maintenance of genome stability in somatic cells."	NA	"The pattern of the Drosophila melanogaster adult wing is heavily influenced by the expression of proteins that dictate cell fate decisions between intervein and vein during development. dSRF (Blistered) expression in specific regions of the larval wing disc promotes intervein cell fate, whereas EGFR activity promotes vein cell fate. Here, we report that the chromatin-organizing protein CAP-D3 acts to dampen dSRF levels at the anterior/posterior boundary in the larval wing disc, promoting differentiation of cells into the anterior crossvein. CAP-D3 represses KNOT expression in cells immediately adjacent to the anterior/posterior boundary, thus blocking KNOT-mediated repression of EGFR activity and preventing cell death. Maintenance of EGFR activity in these cells depresses dSRF levels in the neighboring anterior crossvein progenitor cells, allowing them to differentiate into vein cells. These findings uncover a novel transcriptional regulatory network influencing Drosophila wing vein development, and are the first to identify a Condensin II subunit as an important regulator of EGFR activity and cell fate determination in vivo."	"Retrotransposons are repetitive DNA sequences that are positioned throughout the human genome. Retrotransposons are capable of copying themselves and mobilizing new copies to novel genomic locations in a process called retrotransposition. While most retrotransposon sequences in the human genome are incomplete and incapable of mobilization, the LINE-1 retrotransposon, which comprises~17% of the human genome, remains active. The disruption of cellular mechanisms that suppress retrotransposon activity is linked to the generation of aneuploidy, a potential driver of tumor development. When retrotransposons insert into a novel genomic region, they have the potential to disrupt the coding sequence of endogenous genes and alter gene expression, which can lead to deleterious consequences for the organism. Additionally, increased LINE-1 copy numbers provide more chances for recombination events to occur between retrotransposons, which can lead to chromosomal breaks and rearrangements. LINE-1 activity is increased in various cancer cell lines and in patient tissues resected from primary tumors. LINE-1 activity also correlates with increased cancer metastasis. This review aims to give a brief overview of the connections between LINE-1 retrotransposition and the loss of genome stability. We will also discuss the mechanisms that repress retrotransposition in human cells and their links to cancer. "	"Defects in colonic epithelial barrier defenses are associated with ulcerative colitis (UC). The proteins that regulate bacterial clearance in the colonic epithelium have not been completely identified. The Drosophila chromosome-associated protein D3 (dCAP-D3) regulates responses to bacterial infection. We examined whether CAP-D3 promotes bacterial clearance in human colonic epithelium. Clearance of Salmonella or adherent-invasive Escherichia coli LF82 was assessed by gentamycin protection assays in HT-29 and Caco-2 cells expressing small hairpin RNAs against CAP-D3. We used immunoblot assays to measure levels of CAP-D3 in colonic epithelial cells from patients with UC and healthy individuals (controls). RNA sequencing identified genes activated by CAP-D3. We analyzed the roles of CAP-D3 target genes in bacterial clearance using gentamycin protection and immunofluorescence assays and studies with pharmacologic inhibitors. CAP-D3 expression was reduced in colonic epithelial cells from patients with active UC. Reduced CAP-D3 expression decreased autophagy and impaired intracellular bacterial clearance by HT-29 and Caco-2 colonic epithelial cells. Lower levels of CAP-D3 increased transcription of genes encoding SLC7A5 and SLC3A2, the products of which heterodimerize to form an amino acid transporter in HT-29 cells after bacterial infection; levels of SLC7A5-SLC3A2 were increased in tissues from patients with UC compared with controls. Reduced CAP-D3 in HT-29 cells resulted in earlier recruitment of SLC7A5 to Salmonella-containing vacuoles, increased activity of mTORC1, and increased survival of bacteria. Inhibition of SLC7A5-SLC3A2 or mTORC1 activity rescued the bacterial clearance defects of CAP-D3-deficient cells. CAP-D3 down-regulates transcription of genes that encode amino acid transporters (SLC7A5 and SLC3A2) to promote bacterial autophagy by colon epithelial cells. Levels of CAP-D3 protein are reduced in patients with active UC; strategies to increase its levels might restore mucosal homeostasis to patients with active UC."	"Retrotransposon sequences are positioned throughout the genome of almost every eukaryote that has been sequenced. As mobilization of these elements can have detrimental effects on the transcriptional regulation and stability of an organism's genome, most organisms have evolved mechanisms to repress their movement. Here, we identify a novel role for the Drosophila melanogaster Condensin II subunit, dCAP-D3 in preventing the mobilization of retrotransposons located in somatic cell euchromatin. dCAP-D3 regulates transcription of euchromatic gene clusters which contain or are proximal to retrotransposon sequence. ChIP experiments demonstrate that dCAP-D3 binds to these loci and is important for maintaining a repressed chromatin structure within the boundaries of the retrotransposon and for repressing retrotransposon transcription. We show that dCAP-D3 prevents accumulation of double stranded DNA breaks within retrotransposon sequence, and decreased dCAP-D3 levels leads to a precise loss of retrotransposon sequence at some dCAP-D3 regulated gene clusters and a gain of sequence elsewhere in the genome. Homologous chromosomes exhibit high levels of pairing in Drosophila somatic cells, and our FISH analyses demonstrate that retrotransposon-containing euchromatic loci are regions which are actually less paired than euchromatic regions devoid of retrotransposon sequences. Decreased dCAP-D3 expression increases pairing of homologous retrotransposon-containing loci in tissue culture cells. We propose that the combined effects of dCAP-D3 deficiency on double strand break levels, chromatin structure, transcription and pairing at retrotransposon-containing loci may lead to 1) higher levels of homologous recombination between repeats flanking retrotransposons in dCAP-D3 deficient cells and 2) increased retrotransposition. These findings identify a novel role for the anti-pairing activities of dCAP-D3/Condensin II and uncover a new way in which dCAP-D3/Condensin II influences local chromatin structure to help maintain genome stability. "	"Previously, we discovered a conserved interaction between RB proteins and the Condensin II protein CAP-D3 that is important for ensuring uniform chromatin condensation during mitotic prophase. The Drosophila melanogaster homologs RBF1 and dCAP-D3 co-localize on non-dividing polytene chromatin, suggesting the existence of a shared, non-mitotic role for these two proteins. Here, we show that the absence of RBF1 and dCAP-D3 alters the expression of many of the same genes in larvae and adult flies. Strikingly, most of the genes affected by the loss of RBF1 and dCAP-D3 are not classic cell cycle genes but are developmentally regulated genes with tissue-specific functions and these genes tend to be located in gene clusters. Our data reveal that RBF1 and dCAP-D3 are needed in fat body cells to activate transcription of clusters of antimicrobial peptide (AMP) genes. AMPs are important for innate immunity, and loss of either dCAP-D3 or RBF1 regulation results in a decrease in the ability to clear bacteria. Interestingly, in the adult fat body, RBF1 and dCAP-D3 bind to regions flanking an AMP gene cluster both prior to and following bacterial infection. These results describe a novel, non-mitotic role for the RBF1 and dCAP-D3 proteins in activation of the Drosophila immune system and suggest dCAP-D3 has an important role at specific subsets of RBF1-dependent genes."	"The retinoblastoma (pRb) family of proteins are well known for their tumor suppressor properties and for their ability to regulate transcription. The action of pRb family members correlates with the appearance of repressive chromatin marks at promoter regions of genes encoding key regulators of cell proliferation. Recent studies raise the possibility that pRb family members do not simply act by controlling the activity of individual promoters but that they may also function by promoting the more general organization of chromatin. In several contexts, pRb family members stimulate the compaction or condensation of chromatin and promote the formation of heterochromatin. In this review, we summarize studies that link pRb family members to the condensation or compaction of DNA."
+"Louveau, Antoine"	"Neurosciences"	30224810	30141006	30008983	29401417	28862640	27608759	26909581	26576598	26431936	26398980	"Neuroinflammatory diseases, such as multiple sclerosis, are characterized by invasion of the brain by autoreactive T cells. The mechanism for how T cells acquire their encephalitogenic phenotype and trigger disease remains, however, unclear. The existence of lymphatic vessels in the meninges indicates a relevant link between the CNS and peripheral immune system, perhaps affecting autoimmunity. Here we demonstrate that meningeal lymphatics fulfill two critical criteria: they assist in the drainage of cerebrospinal fluid components and enable immune cells to enter draining lymph nodes in a CCR7-dependent manner. Unlike other tissues, meningeal lymphatic endothelial cells do not undergo expansion during inflammation, and they express a unique transcriptional signature. Notably, the ablation of meningeal lymphatics diminishes pathology and reduces the inflammatory response of brain-reactive T cells during an animal model of multiple sclerosis. Our findings demonstrate that meningeal lymphatics govern inflammatory processes and immune surveillance of the CNS and pose a valuable target for therapeutic intervention."	"For decades, the brain has been considered an immune-privileged organ, meaning that the brain was mainly ignored by the immune system and that the presence of immune cells, notably of the adaptive arm, was a hallmark of pathological conditions. Over the past few decades, the definition of the immune privilege continues to be refined. There has been evidence accumulating that shows that the immune system plays a role in proper brain function. This evidence may represent an effective source of therapeutic targets for neurological disorders. In this chapter, we discuss the recent advances in understanding the immunity of the brain and describe how tertiary lymphoid structures can be generated in the central nervous system, which might represent a new avenue to treat neurological disorders."	"Neuroimmunologists aim to understand the interactions between the central nervous system and the immune system under both homeostatic and pathological conditions. The meninges, contrary to the brain parenchyma, are populated by numerous immune cells. Soluble factors produced by these cells are capable to diffuse into the brain parenchyma and influence the brain cells within the parenchyma, including neurons. In this unit, we will describe two protocols: analysis the meningeal compartment of rodents and the use flow cytometry to study the cells of the brain parenchyma (particularly neurons)."	"Microglia are brain-resident macrophages whose function affects a myriad of physiological processes and can in turn be affected by peripheral factors. In a recent issue of Cell, Garel, Ginhoux and colleagues describe how gender, developmental stage, and microbiome contribute to the transcriptome of microglia (Thion et al., 2018)."	"Recent discoveries of the glymphatic system and of meningeal lymphatic vessels have generated a lot of excitement, along with some degree of skepticism. Here, we summarize the state of the field and point out the gaps of knowledge that should be filled through further research. We discuss the glymphatic system as a system that allows CNS perfusion by the cerebrospinal fluid (CSF) and interstitial fluid (ISF). We also describe the recently characterized meningeal lymphatic vessels and their role in drainage of the brain ISF, CSF, CNS-derived molecules, and immune cells from the CNS and meninges to the peripheral (CNS-draining) lymph nodes. We speculate on the relationship between the two systems and their malfunction that may underlie some neurological diseases. Although much remains to be investigated, these new discoveries have changed our understanding of mechanisms underlying CNS immune privilege and CNS drainage. Future studies should explore the communications between the glymphatic system and meningeal lymphatics in CNS disorders and develop new therapeutic modalities targeting these systems."	"Lymphatic vasculature drains interstitial fluids, which contain the tissue's waste products, and ensures immune surveillance of the tissues, allowing immune cell recirculation. Until recently, the CNS was considered to be devoid of a conventional lymphatic vasculature. The recent discovery in the meninges of a lymphatic network that drains the CNS calls into question classic models for the drainage of macromolecules and immune cells from the CNS. In the context of neurological disorders, the presence of a lymphatic system draining the CNS potentially offers a new player and a new avenue for therapy. In this review, we will attempt to integrate the known primary functions of the tissue lymphatic vasculature that exists in peripheral organs with the proposed function of meningeal lymphatic vessels in neurological disorders, specifically multiple sclerosis and Alzheimer's disease. We propose that these (and potentially other) neurological afflictions can be viewed as diseases with a neuro-lympho-vascular component and should be therapeutically targeted as such. "	NA	NA	"Whereas the study of the interactions between the immune system and the central nervous system (CNS) has often focused on pathological conditions, the importance of neuroimmune communication in CNS homeostasis and function has become clear over that last two decades. Here we discuss the progression of our understanding of the interaction between the peripheral immune system and the CNS. We examine the notion of immune privilege of the CNS in light of both earlier findings and recent studies revealing a functional meningeal lymphatic system that drains cerebrospinal fluid (CSF) to the deep cervical lymph nodes, and consider the implications of a revised perspective on the immune privilege of the CNS on the etiology and pathology of different neurological disorders. "	NA
+"Machado, Andre"	"Neurosciences"	30853407	30799493	30064319	29932378	29800707	29384450	29372880	29266520	29048606	29029200	"5-bromo-2'-dexoyuridine (BrdU) is often used in neuroscience research as a marker of newly-divided cells. However, several studies suggest that BrdU can produce unwanted side effects, including changes in animal behavior and cellular function. In this study, we investigated the effect of BrdU injections on locomotor behavior in a rodent model of ischemic stroke. Ischemic strokes were induced in adult rats, and 50 mg/kg BrdU was intraperitoneally injected over 5 days beginning 2 weeks post-stroke, while control animals received vehicle. Locomotor activity was evaluated by videotaping the rats in their home cages for 30 min, beginning one hour after BrdU injection. BrdU-injected rats showed a nearly three-fold increase in locomotor activity compared to control animals. These findings suggest that BrdU induces a hyperlocomotor effect in rats following brain injury, pointing to the need for caution when interpreting behavioral results in such studies."	"Deep brain stimulation (DBS) has been considered for patients with intractable pain syndromes since the 1950s. Although there is substantial experience reported in the literature, the indications are contested, especially in the United States where it remains off-label. Historically, the sensory-discriminative pain pathways were targeted. More recently, modulation of the affective sphere of pain has emerged as a plausible alternative. To systematically review the literature from studies that used contemporary DBS technology. Our aim is to summarize the current evidence of this therapy. A systematic search was conducted in the MEDLINE, EMBASE, and Cochrane libraries through July 2017 to review all studies using the current DBS technology primarily for pain treatment. Study characteristics including patient demographics, surgical technique, outcomes, and complications were collected. Twenty-two articles were included in this review. In total, 228 patients were implanted with a definitive DBS system for pain. The most common targets used were periaqueductal/periventricular gray matter region, ventral posterior lateral/posterior medial thalamus, or both. Poststroke pain, phantom limb pain, and brachial plexus injury were the most common specific indications for DBS. Outcomes varied between studies and across chronic pain diagnoses. Two different groups of investigators targeting the affective sphere of pain have demonstrated improvements in quality of life measures without significant reductions in pain scores. DBS outcomes for chronic pain are heterogeneous thus far. Future studies may focus on specific pain diagnosis rather than multiple syndromes and consider randomized placebo-controlled designs. DBS targeting the affective sphere of pain seems promising and deserves further investigation."	"Ischemic stroke is a leading cause of disability worldwide, with profound economic costs. Poststroke motor impairment is the most commonly encountered deficit resulting in significant disability and is the primary driver of stroke-associated healthcare expenditures. Although many patients derive some degree of benefit from physical rehabilitation, a significant proportion continue to suffer from persistent motor impairment. Noninvasive brain stimulation, vagal nerve stimulation, epidural cortical stimulation, and deep brain stimulation (DBS) have all been studied as potential modalities to improve upon the benefits derived from physical therapy alone. These neuromodulatory therapies aim primarily to augment neuroplasticity and drive functional reorganization of the surviving perilesional cortex. The authors have proposed a novel and emerging therapeutic approach based on cerebellar DBS targeted at the dentate nucleus. Their rationale is based on the extensive reciprocal connectivity between the dentate nucleus and wide swaths of cerebral cortex via the dentatothalamocortical and corticopontocerebellar tracts, as well as the known limitations to motor rehabilitation imposed by crossed cerebellar diaschisis. Preclinical studies in rodent models of ischemic stroke have shown that cerebellar DBS promotes functional recovery in a frequency-dependent manner, with the most substantial benefits of the therapy noted at 30-Hz stimulation. The improvements in motor function are paralleled by increased expression of markers of synaptic plasticity, synaptogenesis, and neurogenesis in the perilesional cortex. Given the findings of preclinical studies, a first-in-human trial, Electrical Stimulation of the Dentate Nucleus Area (EDEN) for Improvement of Upper Extremity Hemiparesis Due to Ischemic Stroke: A Safety and Feasibility Study, commenced in 2016. Although the existing preclinical evidence is promising, the results of this Phase I trial and subsequent clinical trials will be necessary to determine the future applicability of this therapy."	"OBJECTIVEThe number of patients who benefit from deep brain stimulation (DBS) for Parkinson's disease (PD) has increased significantly since the therapy was first approved by the FDA. Suboptimal outcomes, infection, or device failure are risks of the procedure and may require lead removal or repositioning. The authors present here the results of their series of revision and reimplantation surgeries.METHODSThe data were reviewed from all DBS intracranial lead removals, revisions, or reimplantations among patients with PD over a 6-year period at the authors' institution. The indications for these procedures were categorized as infection, suboptimal outcome, and device failure. Motor outcomes as well as lead location were analyzed before removal and after reimplant or revision.RESULTSThe final sample included 25 patients who underwent 34 lead removals. Thirteen patients had 18 leads reimplanted after removal. There was significant improvement in the motor scores after revision surgery among the patients who had the lead revised for a suboptimal outcome (p = 0.025). The mean vector distance of the new lead location compared to the previous location was 2.16 mm (SD 1.17), measured on an axial plane 3.5 mm below the anterior commissure-posterior commissure line. When these leads were analyzed by subgroup, the mean distance was 1.67 mm (SD 0.83 mm) among patients treated for infection and 2.73 mm (SD 1.31 mm) for those with suboptimal outcomes.CONCLUSIONSPatients with PD who undergo reimplantation surgery due to suboptimal outcome may experience significant benefits. Reimplantation after surgical infection seems feasible and overall safe."	"Prior studies have shown that patient-reported allergies can be prognostic of poorer postoperative outcomes. The objective of this study was to investigate the correlation between self-reported allergies and outcomes after cervical or lumbar spine surgery. This is a retrospective cohort study at a single tertiary care institution. The patient sample included all patients undergoing cervical or lumbar spine surgery from 2009 to 2014. The primary outcome measure was change in the EuroQol-5 Dimensions (EQ-5D) after surgery. Secondary outcomes included changes in the Pain Disability Questionnaire (PDQ) and in the Patient Health Questionnaire-9 (PHQ-9), achievement of the minimal clinically important difference (MCID) in these measures, and cost of admission. Before and after surgery, EQ-5D, PDQ, and PHQ-9 were recorded for patients with available data. Paired Student t tests were used to compare changes in these measures after surgery. Multivariable linear and logistic regressions were used to assess the relationship between the log transformation of the total number of allergies and outcomes. A total of 592 cervical patients and 4,465 lumbar patients were included. The median number of reported allergies was two. The EQ-5D index increased from 0.539 to 0.703 for cervical patients and from 0.530 to 0.676 for lumbar patients (p&lt;.01 for both). Patients experienced significant pain improvement by the PDQ (80.1-58.2 for cervical patients and 79.4-58.1 for lumbar patients, p&lt;.01). Using multivariable logistic regression, the log transformation of the number of allergies predicted significantly higher odds of achieving the PDQ MCID (odds ratio [OR]=2.09, 95% confidence interval [CI] 1.05-4.15, p=.02, for cervical patients; OR=1.30, 95% CI 1.03-1.68, p=.03, for lumbar patients). However, this relationship was not durable for patients with follow-up exceeding 1 year. The log transformation of the number of allergies for lumbar patients predicted a significantly increased cost of admission (β=$3,597, p&lt;.01) and trended toward significance among cervical patients (β=$1,842, p=.10). Patient-reported allergies correlate with subjective improvement in pain and disability after spine surgery and may serve as a marker of postoperative outcomes. The relationship between allergies and PDQ improvement may be secondary to the short-term expectation-actuality discrepancy, as this relationship was not durable beyond 1 year."	"Poststroke pain syndrome (PSPS) is an often intractable disorder characterized by hemiparesis associated with unrelenting chronic pain. Although traditional analgesics have largely failed, integrative approaches targeting affective-cognitive spheres have started to show promise. Recently, we demonstrated that deep brain stimulation (DBS) of the ventral striatal area significantly improved the affective sphere of pain in patients with PSPS. In the present study, we examined whether electrophysiological correlates of pain anticipation were modulated by DBS that could serve as signatures of treatment effects. We recorded event-related fields (ERFs) of pain anticipation using magnetoencephalography (MEG) in 10 patients with PSPS preoperatively and postoperatively in DBS OFF and ON states. Simple visual cues evoked anticipation as patients awaited a painful (PS) or nonpainful stimulus (NPS) to the nonaffected or affected extremity. Preoperatively, ERFs showed no difference between PS and NPS anticipation to the affected extremity, possibly due to loss of salience in a network saturated by pain experience. DBS significantly modulated the early N1, consistent with improvements in affective networks involving restoration of salience and discrimination capacity. Additionally, DBS suppressed the posterior P2 (aberrant anticipatory anxiety) while enhancing the anterior N1 (cognitive and emotional regulation) in responders. DBS-induced changes in ERFs could potentially serve as signatures for clinical outcomes. NEW &amp; NOTEWORTHY We examined the electrophysiological correlates of pain affect in poststroke pain patients who underwent deep brain stimulation (DBS) targeting the ventral striatal area under a randomized, controlled trial. DBS significantly modulated early event-related components, particularly N1 and P2, measured with magnetoencephalography during a pain anticipatory task, compared with baseline and the DBS-OFF condition, pointing to possible mechanisms of action. DBS-induced changes in event-related fields could potentially serve as biomarkers for clinical outcomes."	"OBJECTIVEThe authors' aim in this study was to evaluate placement accuracy and clinical outcomes in patients who underwent implantation of deep brain stimulation devices with the aid of frame-based stereotaxy and intraoperative MRI after induction of general anesthesia.METHODSThirty-three patients with movement disorders (27 with Parkinson's disease) underwent implantation of unilateral or bilateral deep brain stimulation systems (64 leads total). All patients underwent the implantation procedure with standard frame-based techniques under general anesthesia and without microelectrode recording. MR images were acquired immediately after the procedure and fused to the preoperative plan to verify accuracy. To evaluate clinical outcome, different scales were used to assess quality of life (EQ-5D), activities of daily living (Unified Parkinson's Disease Rating Scale [UPDRS] part II), and motor function (UPDRS part III during off- and on-medication and off- and on-stimulation states). Accuracy was assessed by comparing the coordinates (x, y, and z) from the preoperative plan and coordinates from the tip of the lead on intraoperative MRI and postoperative CT scans.RESULTSThe EQ-5D score improved or remained stable in 71% of the patients. When in the off-medication/on-stimulation state, all patients reported significant improvement in UPDRS III score at the last follow-up (p &lt; 0.001), with a reduction of 25.2 points (46.3%) (SD 14.7 points and 23.5%, respectively). There was improvement or stability in the UPDRS II scores for 68% of the Parkinson's patients. For 2 patients, the stereotactic error was deemed significant based on intraoperative MRI findings. In these patients, the lead was removed and replaced after correcting for the error during the same procedure. Postoperative lead revision was not necessary in any of the patients. Based on findings from the last intraoperative MRI study, the mean difference between the tip of the electrode and the planned target was 0.82 mm (SD 0.5 mm, p = 0.006) for the x-axis, 0.67 mm (SD 0.5 mm, p &lt; 0.001) for the y-axis, and 0.78 mm (SD 0.7 mm, p = 0.008) for the z-axis. On average, the euclidian distance was 1.52 mm (SD 0.6 mm). In patients who underwent bilateral implantation, accuracy was further evaluated comparing the first implanted side and the second implanted side. There was a significant mediolateral (x-axis) difference (p = 0.02) in lead accuracy between the first (mean 1.02 mm, SD 0.57 mm) and the second (mean 0.66 mm, SD 0.50 mm) sides. However, no significant difference was found for the y- and z-axes (p = 0.10 and p = 0.89, respectively).CONCLUSIONSFrame-based DBS implantation under general anesthesia with intraoperative MRI verification of lead location is safe, accurate, precise, and effective compared with standard implantation performed using awake intraoperative physiology. More clinical trials are necessary to directly compare outcomes of each technique."	"Accurate electrode implantation is a major goal of deep brain stimulation (DBS) surgery. Intraoperative physiology with microelectrode recording (MER) is routinely used to refine stereotactic accuracy during awake electrode implantation. Recently, portable imaging systems such as the O-arm have become widely available and can be used in isolation or in association with MER to guide DBS lead placement. The aim of this study was to evaluate how the routine use of the O-arm affected DBS surgery safety, efficiency, and outcomes. Two cohorts of patients with Parkinson's disease who underwent MER-guided awake subthalamic DBS lead implantation with and without O-arm were compared. We examined the total number of microelectrode and macroeletrode passes during each surgery, procedure duration, surgical complications, lead revisions, and motor outcomes. A total of 50 procedures in 41 unique patients were analyzed, of which 26 were performed without O-arm and 24 performed without the O-arm. The mean number of microelectrode passes was 2.46 (SD = 0.99) in the group without O-arm utilization, compared to 1.29 (SD = 0.75) in the group with O-arm usage (p &lt; 0.001). A significant reduction was also found in procedure duration (p = 0.016). No differences were found in motor outcomes between groups. The use of the O-arm during DBS lead implantation was associated with significantly fewer brain cannulations for microelectrode recording as well as reduced surgical time."	"A host of influences contribute to cognitive and behavioral changes following deep brain stimulation. The location of the active cathode is likely an important variable but it has received little attention. To determine whether active contact location relative to the subthalamic nucleus and other neighboring structures is related to nonmotor outcomes. We identified a retrospective, cross-sectional sample of 46 patients who underwent subthalamic nucleus deep brain stimulation for treatment of idiopathic Parkinson's disease. T-tests or nonparametric equivalents were used to detect baseline differences between unilateral left, unilateral right, and bilateral surgical groups. Correlation and partial correlational analyses identified relationships between contact location variables and alterations in cognitive, mood, quality of life, motor, and disease variables. Medial contact locations within the left subthalamic nucleus were correlated with improvements in self-reported mood (r12 = -0.78, P = .001; 95% confidence interval [CI] = -0.43 to -0.93) but worsening semantic fluency (r26 = -0.38, P = .048; 95% CI = -0.01 to -0.66). Phonemic fluency worsened with more posterior left placement (r34 = 0.35, P = .036; 95% CI = 0.03 to 0.61). Memory outcome was related to right hemisphere stimulation voltage (r29 = -0.40, P = .022; 95% CI = -0.05 to -0.66), which is likely a proxy for variable electrode location. Location of the active contact is related to nonmotor outcomes, even in electrodes that are adequately placed. This is relevant to clinical care as there appears to be a trade-off between mood and fluency abilities that should be considered during surgical planning according to preoperative patient characteristics."	"Chronic deep brain stimulation of the rodent lateral cerebellar nucleus (LCN) has been demonstrated to enhance motor recovery following cortical ischemia. This effect is concurrent with synaptogenesis and expression of long-term potentiation markers in the perilesional cerebral cortex. To further investigate the cellular changes associated with chronic LCN stimulation in the ischemic rodent by examining neurogenesis along the cerebellothalamocortical pathway. Rats were trained on the pasta matrix task, followed by induction of cortical ischemia and electrode implantation in the contralesional LCN. Electrical stimulation was initiated 6 wk after stroke induction and continued for 4 wk prior to sacrifice. Neurogenesis was examined using immunohistochemistry. Treated animals showed enhanced performance on the pasta matrix task relative to sham controls. Increased cell proliferation colabeled with 5'-Bromo-2'-deoxyuridine and neurogenic markers (doublecortin) was observed in the perilesional cortex as well as bilateral mediodorsal and ventrolateral thalamic subnuclei in treated vs untreated animals. The neurogenic effect at the level of motor cortex was selective, with stimulation-treated animals showing greater glutamatergic neurogenesis but significantly less GABAergic neurogenesis. These findings suggest that LCN deep brain stimulation modulates postinjury neurogenesis, providing a possible mechanistic foundation for the associated enhancement in poststroke motor recovery."
+"Marasco, Paul"	"Biomedical Engineering"	30967581	30663709	30453897	29773999	29540617	29194626	29182648	21252109	21106839	19369486	"Object stiffness discrimination is fundamental to shaping the way we interact with our environment. Investigating the sensorimotor mechanisms underpinning stiffness discrimination may help further our understanding of healthy and sensory-impaired upper limb function. We developed a metric that leverages sensory discrimination techniques and a foraging-based analysis to characterize participant accuracy and discrimination processes of sensorimotor control. Our metric required searching and discriminating two variants of test-object: rubber blocks and spring cells, which emphasized cutaneous-force and proprioceptive feedback, respectively. We measured the number of test-objects handled, selection accuracy, and foraging duration. These values were used to derive six indicators of performance. We observed higher discrimination accuracies, with quicker search and handling durations, for blocks compared to spring cells. Correlative analyses of accuracy, error rates, and foraging times suggested that the block and spring variants were, in fact, unique sensory tasks. These results provide evidence that our metric is sensitive to the contributions of sensory feedback, motor control, and task performance strategy, and will likely be effective in further characterizing the impact of sensory feedback on motor control in healthy and sensory-impaired populations."	"This work describes a methodological framework that can be used to explicitly and implicitly characterize the sense of agency developed over the neural-machine interface (NMI) control of sensate virtual or robotic prosthetic hands. The formation of agency is fundamental in distinguishing the actions that we perform with our limbs as being our own. By striving to incorporate advanced upper-limb prostheses into these same perceptual mechanisms, we can begin to integrate an artificial limb more closely into the user's existing cognitive framework for limb control. This has important implications in promoting user acceptance, use, and effective control of advanced upper-limb prostheses. In this protocol, participants control a virtual prosthetic hand and receive kinesthetic sensory feedback through their preexisting NMIs. A series of virtual grasping tasks are performed and perturbations are systematically introduced to the kinesthetic feedback and virtual hand movements. Two separate measures of agency are employed: established psychophysical questionnaires (to capture the explicit experience of agency) and a time interval estimate task to capture the implicit sense of agency (intentional binding). Results of this protocol (questionnaire scores and time interval estimates) can be analyzed to quantify the extent of agency formation."	"Indices of inter-evaluator reliability are used in many fields such as computational linguistics, psychology, and medical science; however, the interpretation of resulting values and determination of appropriate thresholds lack context and are often guided only by arbitrary &quot;rules of thumb&quot; or simply not addressed at all. Our goal for this work was to develop a method for determining the relationship between inter-evaluator agreement and error to facilitate meaningful interpretation of values, thresholds, and reliability. Three expert human evaluators completed a video analysis task, and averaged their results together to create a reference dataset of 300 time measurements. We simulated unique combinations of systematic error and random error onto the reference dataset to generate 4900 new hypothetical evaluators (each with 300 time measurements). The systematic errors and random errors made by the hypothetical evaluator population were approximated as the mean and variance of a normally-distributed error signal. Calculating the error (using percent error) and inter-evaluator agreement (using Krippendorff's alpha) between each hypothetical evaluator and the reference dataset allowed us to establish a mathematical model and value envelope of the worst possible percent error for any given amount of agreement. We used the relationship between inter-evaluator agreement and error to make an informed judgment of an acceptable threshold for Krippendorff's alpha within the context of our specific test. To demonstrate the utility of our modeling approach, we calculated the percent error and Krippendorff's alpha between the reference dataset and a new cohort of trained human evaluators and used our contextually-derived Krippendorff's alpha threshold as a gauge of evaluator quality. Although all evaluators had relatively high agreement (&gt; 0.9) compared to the rule of thumb (0.8), our agreement threshold permitted evaluators with low error, while rejecting one evaluator with relatively high error. We found that our approach established threshold values of reliability, within the context of our evaluation criteria, that were far less permissive than the typically accepted &quot;rule of thumb&quot; cutoff for Krippendorff's alpha. This procedure provides a less arbitrary method for determining a reliability threshold and can be tailored to work within the context of any reliability index."	"Fitts' law models the relationship between amplitude, precision, and speed of rapid movements. It is widely used to quantify performance in pointing tasks, study human-computer interaction, and generally to understand perceptual-motor information processes, including research to model performance in isometric force production tasks. Applying Fitts' law to an isometric grip force task would allow for quantifying grasp performance in rehabilitative medicine and may aid research on prosthetic control and design. We examined whether Fitts' law would hold when participants attempted to accurately produce their intended force output while grasping a manipulandum when presented with images of various everyday objects (we termed this the implicit task). Although our main interest was the implicit task, to benchmark it and establish validity, we examined performance against a more standard visual feedback condition via a digital force-feedback meter on a video monitor (explicit task). Next, we progressed from visual force feedback with force meter targets to the same targets without visual force feedback (operating largely on feedforward control with tactile feedback). This provided an opportunity to see if Fitts' law would hold without vision, and allowed us to progress toward the more naturalistic implicit task (which does not include visual feedback). Finally, we changed the nature of the targets from requiring explicit force values presented as arrows on a force-feedback meter (explicit targets) to the more naturalistic and intuitive target forces implied by images of objects (implicit targets). With visual force feedback the relation between task difficulty and the time to produce the target grip force was predicted by Fitts' law (average r<sup>2</sup> = 0.82). Without vision, average grip force scaled accurately although force variability was insensitive to the target presented. In contrast, images of everyday objects generated more reliable grip forces without the visualized force meter. In sum, population means were well-described by Fitts' law for explicit targets with vision (r<sup>2</sup> = 0.96) and implicit targets (r<sup>2</sup> = 0.89), but not as well-described for explicit targets without vision (r<sup>2</sup> = 0.54). Implicit targets should provide a realistic see-object-squeeze-object test using Fitts' law to quantify the relative speed-accuracy relationship of any given grasper."	"To effortlessly complete an intentional movement, the brain needs feedback from the body regarding the movement's progress. This largely nonconscious kinesthetic sense helps the brain to learn relationships between motor commands and outcomes to correct movement errors. Prosthetic systems for restoring function have predominantly focused on controlling motorized joint movement. Without the kinesthetic sense, however, these devices do not become intuitively controllable. We report a method for endowing human amputees with a kinesthetic perception of dexterous robotic hands. Vibrating the muscles used for prosthetic control via a neural-machine interface produced the illusory perception of complex grip movements. Within minutes, three amputees integrated this kinesthetic feedback and improved movement control. Combining intent, kinesthesia, and vision instilled participants with a sense of agency over the robotic movements. This feedback approach for closed-loop control opens a pathway to seamless integration of minds and machines."	NA	"Kinesthesia is the sense of limb movement. It is fundamental to efficient motor control, yet its neurophysiological components remain poorly understood. The contributions of primary muscle spindles and cutaneous afferents to the kinesthetic sense have been well studied; however, potential contributions from muscle sensory group responses that are different than the muscle spindles have not been ruled out. Electrophysiological recordings in peripheral nerves and brains of male Sprague Dawley rats with a degloved forelimb preparation provide evidence of a rapidly adapting muscle sensory group response that overlaps with vibratory inputs known to generate illusionary perceptions of limb movement in humans (kinesthetic illusion). This group was characteristically distinct from type Ia muscle spindle fibers, the receptor historically attributed to limb movement sensation, suggesting that type Ia muscle spindle fibers may not be the sole carrier of kinesthetic information. The sensory-neural structure of muscles is complex and there are a number of possible sources for this response group; with Golgi tendon organs being the most likely candidate. The rapidly adapting muscle sensory group response projected to proprioceptive brain regions, the rodent homolog of cortical area 3a and the second somatosensory area (S2), with similar adaption and frequency response profiles between the brain and peripheral nerves. Their representational organization was muscle-specific (myocentric) and magnified for proximal and multi-articulate limb joints. Projection to proprioceptive brain areas, myocentric representational magnification of muscles prone to movement error, overlap with illusionary vibrational input, and resonant frequencies of volitional motor unit contraction suggest that this group response may be involved with limb movement processing."	"Existing prosthetic limbs do not provide amputees with cutaneous feedback. Tactile feedback is essential to intuitive control of a prosthetic limb and it is now clear that the sense of body self-identification is also linked to cutaneous touch. Here we have created an artificial sense of touch for a prosthetic limb by coupling a pressure sensor on the hand through a robotic stimulator to surgically redirected cutaneous sensory nerves (targeted reinnervation) that once served the lost limb. We hypothesize that providing physiologically relevant cutaneous touch feedback may help an amputee incorporate an artificial limb into his or her self image. To investigate this we used a robotic touch interface coupled with a prosthetic limb and tested it with two targeted reinnervation amputees in a series of experiments fashioned after the Rubber Hand Illusion. Results from both subjective (self-reported) and objective (physiological) measures of embodiment (questionnaires, psychophysical temporal order judgements and residual limb temperature measurements) indicate that returning physiologically appropriate cutaneous feedback from a prosthetic limb drives a perceptual shift towards embodiment of the device for these amputees. Measurements provide evidence that the illusion created is vivid. We suggest that this may help amputees to more effectively incorporate an artificial limb into their self image, providing the possibility that a prosthesis becomes not only a tool, but also an integrated body part."	"Prosthetic limbs are difficult to control and do not provide sensory feedback. Targeted reinnervation was developed as a neural-machine interface for amputees to address these issues. In targeted reinnervation, amputated nerves are redirected to proximal muscles and skin, creating nerve interfaces for prosthesis control and sensory feedback. Touching the reinnervated skin causes sensation to be projected to the missing limb. Here we use electrophysiological brain recording in the Sprague Dawley rat to investigate the changes to somatosensory cortex (S1) following amputation and nerve redirection with the intent to provide insight into the sensory phenomena observed in human targeted reinnervation amputees. Recordings revealed that redirected nerves established an expanded representation in S1, which may help to explain the projected sensations that encompass large areas of the hand in targeted reinnervation amputees. These results also provide evidence that the reinnervated target skin could serve as a line of communication from a prosthesis to cortical hand processing regions. S1 border regions were simultaneously responsive to reinnervated input and also vibrissae, lower lip, and hindfoot, suggesting competition for deactivated cortical territory. Electrically evoked potential latencies from reinnervated skin to cortex suggest direct connection of the redirected afferents to the forepaw processing region of S1. Latencies also provide evidence that the widespread reactivation of S1 cortex may arise from central anatomical interconnectivity. Targeted reinnervation offers the opportunity to examine the cortical plasticity effects when behaviorally important sensory afferents are redirected from their original location to a new skin surface on a different part of the body."	"Targeted reinnervation is a new neural-machine interface that has been developed to help improve the function of new-generation prosthetic limbs. Targeted reinnervation is a surgical procedure that takes the nerves that once innervated a severed limb and redirects them to proximal muscle and skin sites. The sensory afferents of the redirected nerves reinnervate the skin overlying the transfer site. This creates a sensory expression of the missing limb in the amputee's reinnervated skin. When these individuals are touched on this reinnervated skin they feel as though they are being touched on their missing limb. Targeted reinnervation takes nerves that once served the hand, a skin region of high functional importance, and redirects them to less functionally relevant skin areas adjacent to the amputation site. In an effort to better understand the sensory capacity of the reinnervated target skin following this procedure, we examined grating orientation thresholds and point localization thresholds on two amputees who had undergone the targeted reinnervation surgery. Grating orientation thresholds and point localization thresholds were also measured on the contralateral normal skin of the targeted reinnervation amputees and on analogous sites in able-bodied controls. Grating orientation thresholds for the reinnervated skin of the targeted reinnervation amputees were found to be similar to normal ranges for both the amputees' contralateral skin and also for the control population. Point localization thresholds for these amputees were found to be lower for their reinnervated skin than for their contralateral skin. Reinnervated point localization thresholds values were also lower in comparison to homologous chest sites on the control population. Mechanisms appear to be in place to maximize re-established touch input in targeted reinnervation amputees. It seems that sound sensory function is provided to the denervated skin of the residual limb when connected to afferent pathways once serving highly functionally relevant regions of the brain. This suggests that tactile interface devices could be used to give a physiologically appropriate sense of touch to a prosthetic limb, which would likely help with better functional utilization of the prosthetic device and possibly help to more effectively integrate the device with the user's self-image."
+"Mascha, Edward"	"Quantitative Health Sciences"	31008746	30096083	29750691	29346210	29189214	28817531	28786843	28682958	28301418	25929547	"Perioperative investigators and professionals increasingly seek to evaluate whether implementing systematic practice changes improves outcomes compared to a previous routine. Cluster randomized trials are the optimal design to assess a systematic practice change but are often impractical; investigators, therefore, often select a before-after design. In this Statistical Grand Rounds, we first discuss biases inherent in a before-after design, including confounding due to periods being completely separated by time, regression to the mean, the Hawthorne effect, and others. Many of these biases can be at least partially addressed by using appropriate designs and analyses, which we discuss. Our focus is on segmented regression of an interrupted time series, which does not require a concurrent control group; we also present alternative designs including difference-in-difference, stepped wedge, and cluster randomization. Conducting segmented regression well requires a sufficient number of time points within each period, along with a robust set of potentially confounding variables. This method compares preintervention and postintervention changes over time, divergences in the outcome when an intervention begins, and trends observed with the intervention compared to trends projected without it. Difference-in-difference methods add a concurrent control, enabling yet stronger inference. When done well, the discussed methods permit robust inference on the effect of an intervention, albeit still requiring assumptions and having limitations. Methods are demonstrated using an interrupted time series study in which anesthesiologists took responsibility for an adult medical emergency team from internal medicine physicians in an attempt to improve outcomes."	"To use a diagnostic test effectively and consistently in their practice, clinicians need to know how well the test distinguishes between those patients who have the suspected acute or chronic disease and those patients who do not. Clinicians are equally interested and usually more concerned whether, based on the results of a screening test, a given patient actually: (1) does or does not have the suspected disease; or (2) will or will not subsequently experience the adverse event or outcome. Medical tests that are performed to screen for a risk factor, diagnose a disease, or to estimate a patient's prognosis are frequently a key component of a clinical research study. Like therapeutic interventions, medical tests require proper analysis and demonstrated efficacy before being incorporated into routine clinical practice. This basic statistical tutorial, thus, discusses the fundamental concepts and techniques related to diagnostic testing and medical decision-making, including sensitivity and specificity, positive predictive value and negative predictive value, positive and negative likelihood ratio, receiver operating characteristic curve, diagnostic accuracy, choosing a best cut-point for a continuous variable biomarker, comparing methods on diagnostic accuracy, and design of a diagnostic accuracy study."	"Observational data are often readily available or less costly to obtain than conducting a randomized controlled trial. With observational data, investigators may statistically evaluate the relationship between a treatment or therapy and outcomes. However, inherent in observational data is the potential for confounding arising from the nonrandom assignment of treatment. In this statistical grand rounds, we describe the use of propensity score methods (ie, using the probability of receiving treatment given covariates) to reduce bias due to measured confounders in anesthesia and perioperative medicine research. We provide a description of the theory and background appropriate for the anesthesia researcher and describe statistical assumptions that should be assessed in the course of a research study using the propensity score. We further describe 2 propensity score methods for evaluating the association of treatment or therapy with outcomes, propensity score matching and inverse probability of treatment weighting, and compare to covariate-adjusted regression analysis. We distinguish several estimators of treatment effect available with propensity score methods, including the average treatment effect, the average treatment effect for the treated, and average treatment effect for the controls or untreated, and compare to the conditional treatment effect in covariate-adjusted regression. We highlight the relative advantages of the various methods and estimators, describe analysis assumptions and how to critically evaluate them, and demonstrate methods in an analysis of thoracic epidural analgesia and new-onset atrial arrhythmias after pulmonary resection."	"Inferential statistics relies heavily on the central limit theorem and the related law of large numbers. According to the central limit theorem, regardless of the distribution of the source population, a sample estimate of that population will have a normal distribution, but only if the sample is large enough. The related law of large numbers holds that the central limit theorem is valid as random samples become large enough, usually defined as an n ≥ 30. In research-related hypothesis testing, the term &quot;statistically significant&quot; is used to describe when an observed difference or association has met a certain threshold. This significance threshold or cut-point is denoted as alpha (α) and is typically set at .05. When the observed P value is less than α, one rejects the null hypothesis (Ho) and accepts the alternative. Clinical significance is even more important than statistical significance, so treatment effect estimates and confidence intervals should be regularly reported. A type I error occurs when the Ho of no difference or no association is rejected, when in fact the Ho is true. A type II error occurs when the Ho is not rejected, when in fact there is a true population effect. Power is the probability of detecting a true difference, effect, or association if it truly exists. Sample size justification and power analysis are key elements of a study design. Ethical concerns arise when studies are poorly planned or underpowered. When calculating sample size for comparing groups, 4 quantities are needed: α, type II error, the difference or effect of interest, and the estimated variability of the outcome variable. Sample size increases for increasing variability and power, and for decreasing α and decreasing difference to detect. Sample size for a given relative reduction in proportions depends heavily on the proportion in the control group itself, and increases as the proportion decreases. Sample size for single-group studies estimating an unknown parameter is based on the desired precision of the estimate. Interim analyses assessing for efficacy and/or futility are great tools to save time and money, as well as allow science to progress faster, but are only 1 component considered when a decision to stop or continue a trial is made."	"Hypothesis testing involves posing both a null hypothesis and an alternative hypothesis. This basic statistical tutorial discusses the appropriate use, including their so-called assumptions, of the common unadjusted bivariate tests for hypothesis testing and thus comparing study sample data for a difference or association. The appropriate choice of a statistical test is predicated on the type of data being analyzed and compared. The unpaired or independent samples t test is used to test the null hypothesis that the 2 population means are equal, thereby accepting the alternative hypothesis that the 2 population means are not equal. The unpaired t test is intended for comparing dependent continuous (interval or ratio) data from 2 study groups. A common mistake is to apply several unpaired t tests when comparing data from 3 or more study groups. In this situation, an analysis of variance with post hoc (posttest) intragroup comparisons should instead be applied. Another common mistake is to apply a series of unpaired t tests when comparing sequentially collected data from 2 study groups. In this situation, a repeated-measures analysis of variance, with tests for group-by-time interaction, and post hoc comparisons, as appropriate, should instead be applied in analyzing data from sequential collection points. The paired t test is used to assess the difference in the means of 2 study groups when the sample observations have been obtained in pairs, often before and after an intervention in each study subject. The Pearson chi-square test is widely used to test the null hypothesis that 2 unpaired categorical variables, each with 2 or more nominal levels (values), are independent of each other. When the null hypothesis is rejected, 1 concludes that there is a probable association between the 2 unpaired categorical variables. When comparing 2 groups on an ordinal or nonnormally distributed continuous outcome variable, the 2-sample t test is usually not appropriate. The Wilcoxon-Mann-Whitney test is instead preferred. When making paired comparisons on data that are ordinal, or continuous but nonnormally distributed, the Wilcoxon signed-rank test can be used. In analyzing their data, researchers should consider the continued merits of these simple yet equally valid unadjusted bivariate statistical tests. However, the appropriate use of an unadjusted bivariate test still requires a solid understanding of its utility, assumptions (requirements), and limitations. This understanding will mitigate the risk of misleading findings, interpretations, and conclusions."	"Epidemiologists seek to make a valid inference about the causal effect between an exposure and a disease in a specific population, using representative sample data from a specific population. Clinical researchers likewise seek to make a valid inference about the association between an intervention and outcome(s) in a specific population, based upon their randomly collected, representative sample data. Both do so by using the available data about the sample variable to make a valid estimate about its corresponding or underlying, but unknown population parameter. Random error in an experiment can be due to the natural, periodic fluctuation or variation in the accuracy or precision of virtually any data sampling technique or health measurement tool or scale. In a clinical research study, random error can be due to not only innate human variability but also purely chance. Systematic error in an experiment arises from an innate flaw in the data sampling technique or measurement instrument. In the clinical research setting, systematic error is more commonly referred to as systematic bias. The most commonly encountered types of bias in anesthesia, perioperative, critical care, and pain medicine research include recall bias, observational bias (Hawthorne effect), attrition bias, misclassification or informational bias, and selection bias. A confounding variable is a factor associated with both the exposure of interest and the outcome of interest. A confounding variable (confounding factor or confounder) is a variable that correlates (positively or negatively) with both the exposure and outcome. Confounding is typically not an issue in a randomized trial because the randomized groups are sufficiently balanced on all potential confounding variables, both observed and nonobserved. However, confounding can be a major problem with any observational (nonrandomized) study. Ignoring confounding in an observational study will often result in a &quot;distorted&quot; or incorrect estimate of the association or treatment effect. Interaction among variables, also known as effect modification, exists when the effect of 1 explanatory variable on the outcome depends on the particular level or value of another explanatory variable. Bias and confounding are common potential explanations for statistically significant associations between exposure and outcome when the true relationship is noncausal. Understanding interactions is vital to proper interpretation of treatment effects. These complex concepts should be consistently and appropriately considered whenever one is not only designing but also analyzing and interpreting data from a randomized trial or observational study."	"Data fabrication and scientific misconduct have been recently uncovered in the anesthesia literature, partly via the work of John Carlisle. In a recent article in Anaesthesia, Carlisle analyzed 5087 randomized clinical trials from anesthesia and general medicine journals from 2000 to 2015. He concluded that in about 6% of studies, data comparing randomized groups on baseline variables, before the given intervention, were either too similar or dissimilar compared to that expected by usual sampling variability under the null hypothesis. Carlisle used the Stouffer-Fisher method of combining P values in Table 1 (the conventional table reporting baseline patient characteristics) for each study, then calculated trial P values and assessed whether they followed a uniform distribution across studies. Extreme P values targeted studies as likely to contain data fabrication or errors. In this Statistical Grand Rounds article, we explain Carlisle's methods, highlight perceived limitations of the proposed approach, and offer recommendations. Our main findings are (1) independence was assumed between variables in a study, which is often false and would lead to &quot;false positive&quot; findings; (2) an &quot;unusual&quot; result from a trial cannot easily be concluded to represent fraud; (3) utilized cutoff values for determining extreme P values were arbitrary; (4) trials were analyzed as if simple randomization was used, introducing bias; (5) not all P values can be accurately generated from summary statistics in a Table 1, sometimes giving incorrect conclusions; (6) small numbers of P values to assess outlier status within studies is not reliable; (7) utilized method to assess deviations from expected distributions may stack the deck; (8) P values across trials assumed to be independent; (9) P value variability not accounted for; and (10) more detailed methods needed to understand exactly what was done. It is not yet known to what extent these concerns affect the accuracy of Carlisle's results. We recommend that Carlisle's methods be improved before widespread use (applying them to every manuscript submitted for publication). Furthermore, lack of data integrity and fraud should ideally be assessed using multiple simultaneous statistical methods to yield more confident results. More sophisticated methods are needed for nonrandomized trials, randomized trial data reported beyond Table 1, and combating growing fraudster sophistication. We encourage all authors to more carefully scrutinize their own reporting. Finally, we believe that reporting of suspected data fraud and integrity issues should be done more discretely and directly by the involved journal to protect honest authors from the stigma of being associated with potential fraud."	"One of the first steps in designing and conducting a research study is identifying the primary and any secondary study outcomes. In an experimental, quasi-experimental, or analytic observational research study, the primary study outcomes arise from and align directly with the primary study aim or objective. Likewise, any secondary study outcomes arise from and directly align with any secondary study aim or objective. One designated primary study outcome then forms the basis for and is incorporated literally into the stated hypothesis. In a Methods section, authors clearly state and define each primary and any secondary study outcome variable. In the same Methods section, authors clearly describe how all primary and any secondary study outcome variables were measured. Enough detail is provided so that a clinician, statistician, or informatician can know exactly what is being measured and that other investigators could duplicate the measurements in their research venue. The authors provide published substantiation (preferably) or other documented evidence of the validity and reliability of any applied measurement instrument, tool, or scale. A common pitfall-and often fatal study design flaw-is the application of a newly created (&quot;home-grown&quot;) or ad hoc modification of an existing measurement instrument, tool, or scale-without any supporting evidence of its validity and reliability. An optimal primary outcome is the one for which there is the most existing or plausible evidence of being associated with the exposure of interest or intervention. Including too many primary outcomes can (a) lead to an unfocused research question and study and (b) present problems with interpretation if the treatment effect differed across the outcomes. Inclusion of secondary variables in the study design and the resulting manuscript needs to be justified. Secondary outcomes are particularly helpful if they lend supporting evidence for the primary endpoint. A composite endpoint is an endpoint consisting of several outcome variables that are typically correlated with each. In designing a study, researchers limit components of a composite endpoint to variables on which the intervention of interest would most plausibly have an effect, and optimally with preliminary evidence of an effect. Ideally, components of a strong composite endpoint have similar treatment effect, frequency, and severity-with the most important being similar severity."	"Writing a manuscript for a medical journal is very akin to writing a newspaper article-albeit a scholarly one. Like any journalist, you have a story to tell. You need to tell your story in a way that is easy to follow and makes a compelling case to the reader. Although recommended since the beginning of the 20th century, the conventional Introduction-Methods-Results-And-Discussion (IMRAD) scientific reporting structure has only been the standard since the 1980s. The Introduction should be focused and succinct in communicating the significance, background, rationale, study aims or objectives, and the primary (and secondary, if appropriate) study hypotheses. Hypothesis testing involves posing both a null and an alternative hypothesis. The null hypothesis proposes that no difference or association exists on the outcome variable of interest between the interventions or groups being compared. The alternative hypothesis is the opposite of the null hypothesis and thus typically proposes that a difference in the population does exist between the groups being compared on the parameter of interest. Most investigators seek to reject the null hypothesis because of their expectation that the studied intervention does result in a difference between the study groups or that the association of interest does exist. Therefore, in most clinical and basic science studies and manuscripts, the alternative hypothesis is stated, not the null hypothesis. Also, in the Introduction, the alternative hypothesis is typically stated in the direction of interest, or the expected direction. However, when assessing the association of interest, researchers typically look in both directions (ie, favoring 1 group or the other) by conducting a 2-tailed statistical test because the true direction of the effect is typically not known, and either direction would be important to report."	"Little is known about the relationship between intraoperative blood pressure variability and mortality after noncardiac surgery. Therefore, the authors tested the hypothesis that blood pressure variability, independent from absolute blood pressure, is associated with increased 30-day mortality. Baseline and intraoperative variables plus 30-day mortality were obtained for 104,401 adults having noncardiac surgery lasting 60 min or longer. In confounder-adjusted models, the authors evaluated the associations between 30-day mortality and both time-weighted average intraoperative mean arterial pressure (TWA-MAP) and measures of intraoperative MAP variability--including generalized average real variability of MAP (ARV-MAP) and SD of MAP (SD-MAP). Mean ± SD TWA-MAP was 84 ± 10 mmHg, and ARV-MAP was 2.5 ± 1.3 mmHg/min. TWA-MAP was strongly related to 30-day mortality, which more than tripled as TWA-MAP decreased from 80 to 50 mmHg. ARV-MAP was only marginally related to 30-day mortality (P = 0.033) after adjusting for TWA-MAP. Compared with median ARV-MAP, odds ratio (95% CI) for 30-day mortality was 1.14 (1.03 to 1.25) for low ARV-MAP (first quartile) and 0.94 (0.88 to 0.99) for high ARV-MAP (third quartile). Odds of 30-day mortality decreased as five-level categorized ARV-MAP increased (0.92; 0.87 to 0.99 for one category increase; P = 0.015). Secondarily, cumulative duration of MAP less than 50, 55, 60, 70, and 80 mmHg was associated with increased odds of 30-day mortality (all P &lt; 0.001). Although lower mean arterial pressure is strongly associated with mortality, lower intraoperative blood pressure variability per se is only mildly associated with postoperative mortality after noncardiac surgery."
+"Mata, Ignacio"	"Genomic Medicine Institute"	30765263	29367946	28657124	28649619	28526295	28268100	27943640	27111571	26399558	26296077	"Mutations in the glucocerebrosidase (GBA) gene are an important risk factor for Parkinson's disease (PD). However, most GBA genetic studies in PD have been performed in patients of European origin and very few data are available in other populations. We sequenced the entire GBA coding region in 602 PD patients and 319 controls from Colombia and Peru enrolled as part of the Latin American Research Consortium on the Genetics of Parkinson's disease (LARGE-PD). We observed a significantly higher proportion of GBA mutation carriers in patients compared to healthy controls (5.5% vs 1.6%; OR = 4.3, p = 0.004). Interestingly, the frequency of mutations in Colombian patients (9.9%) was more than two-fold greater than in Peruvian patients (4.2%) and other European-derived populations reported in the literature (4-5%). This was primarily due to the presence of a population-specific mutation (p.K198E) found only in the Colombian cohort. We also observed that the age at onset was significantly earlier in GBA carriers when compared to non-carriers (47.1 ± 14.2 y vs. 55.9 ± 14.2 y; p = 0.0004). These findings suggest that GBA mutations are strongly associated with PD risk and earlier age at onset in Peru and Colombia. The high frequency of GBA carriers among Colombian PD patients (∼10%) makes this population especially well-suited for novel therapeutic approaches that target GBA-related PD."	"[This corrects the article DOI: 10.1038/s41531-017-0020-6.]."	NA	"Mutations in Leucine-Rich Repeat Kinase 2 (LRRK2), primarily located in codons G2019 and R1441, represent the most common genetic cause of Parkinson's disease in European-derived populations. However, little is known about the frequency of these mutations in Latin American populations. In addition, a prior study suggested that a LRRK2 polymorphism (p.Q1111H) specific to Latino and Amerindian populations might be a risk factor for Parkinson's disease, but this finding requires replication. We screened 1734 Parkinson's disease patients and 1097 controls enrolled in the Latin American Research Consortium on the Genetics of Parkinson's disease (LARGE-PD), which includes sites in Argentina, Brazil, Colombia, Ecuador, Peru, and Uruguay. Genotypes were determined by TaqMan assay (p.G2019S and p.Q1111H) or by sequencing of exon 31 (p.R1441C/G/H/S). Admixture proportion was determined using a panel of 29 ancestry informative markers. We identified a total of 29 Parkinson's disease patients (1.7%) who carried p.G2019S and the frequency ranged from 0.2% in Peru to 4.2% in Uruguay. Only two Parkinson's disease patients carried p.R1441G and one patient carried p.R1441C. There was no significant difference in the frequency of p.Q1111H in patients (3.8%) compared to controls (3.1%; OR 1.02, p = 0.873). The frequency of LRRK2-p.G2019S varied greatly between different Latin American countries and was directly correlated with the amount of European ancestry observed. p.R1441G is rare in Latin America despite the large genetic contribution made by settlers from Spain, where the mutation is relatively common."	"Cognitive impairment is a common and disabling problem in Parkinson's disease (PD). Identification of genetic variants that influence the presence or severity of cognitive deficits in PD might provide a clearer understanding of the pathophysiology underlying this important nonmotor feature. We genotyped 1105 PD patients from the PD Cognitive Genetics Consortium for 249,336 variants using the NeuroX array. Participants underwent assessments of learning and memory (Hopkins Verbal Learning Test-Revised [HVLT-R]), working memory/executive function (Letter-Number Sequencing and Trail Making Test [TMT] A and B), language processing (semantic and phonemic verbal fluency), visuospatial abilities (Benton Judgment of Line Orientation [JoLO]), and global cognitive function (Montreal Cognitive Assessment). For common variants, we used linear regression to test for association between genotype and cognitive performance with adjustment for important covariates. Rare variants were analyzed using the optimal unified sequence kernel association test. The significance threshold was defined as a false discovery rate-corrected p-value (PFDR) of 0.05. Eighteen common variants in 13 genomic regions exceeded the significance threshold for one of the cognitive tests. These included GBA rs2230288 (E326K; PFDR = 2.7 × 10<sup>-4</sup>) for JoLO, PARP4 rs9318600 (PFDR = 0.006), and rs9581094 (PFDR = 0.006) for HVLT-R total recall, and MTCL1 rs34877994 (PFDR = 0.01) for TMT B-A. Analysis of rare variants did not yield any significant gene regions. We have conducted the first large-scale PD cognitive genetics analysis and nominated several new putative susceptibility genes for cognitive impairment in PD. These results will require replication in independent PD cohorts."	"Frontotemporal lobar degeneration is a neuropathological disorder that causes a variety of clinical syndromes including frontotemporal dementia (FTD), progressive supranuclear palsy, and corticobasal syndrome (CBS). FTD associated with parkinsonism occurs frequently as a result of mutations in the C9orf72 gene and also in the genes coding for the protein associated with microtubule tau (MAPT) and progranulin (GRN) on chromosome 17 (FTDP-17). Herein, we report an Argentinean family, of Basque ancestry, with an extensive family history of behavioral variant of FTD. Twenty-one members over 6 generations composed the pedigree. An extensive neurologic and neurocognitive examination was performed on 2 symptomatic individuals and 3 nonsymptomatic individuals. Two different phenotypes were identified among affected members, CBS in the proband and FTD in his brother. DNA was extracted from blood for these 5 individuals and whole-exome sequencing was performed on 3 of them followed by Sanger sequencing of candidate genes on the other 2. In both affected individuals, a missense mutation (p.P301L; rs63751273) in exon 10 of the MAPT gene (chr17q21.3) was identified. Among MAPT mutations, p.P301L is the most frequently associated to different phenotypes: (1) aggressive, symmetrical, and early-onset Parkinsonism; (2) late parkinsonism associated with FTD; and (3) progressive supranuclear palsy but only exceptionally it is reported associated to CBS. This is the first report of the occurrence of the p.P301L-MAPT mutation in South America and supports the marked phenotypic heterogeneity among members of the same family as previously reported."	NA	"Mutations in the LRRK2 gene result in autosomal dominant, late onset Parkinson's disease (PD). Three such mutations (p.R1441C, p.R1441G, and p.R1441H) are known to occur within codon 1441, and haplotype analyses indicate that each one has arisen independently on multiple occasions. We sequenced the entire coding region of 18 casual genes for PD or other parkinsonian neurodegenerative disorders in the proband of a family with autosomal dominant PD. We discovered a new missense mutation in the LRRK2 gene, c.4321C&gt;A (p.R1441S). The mutation was predicted to be highly deleterious in silico (Combined Annotation Dependent Depletion score of 25.5) and segregated with disease in the pedigree. The clinical characteristics of affected family members were similar to those described in PD families with other mutations in LRRK2 codon 1441 and included resting tremor, rigidity, bradykinesia, unilateral onset, and a good response to levodopa. Age at onset ranged from 41 to 76. Two of the affected members of the pedigree underwent detailed, longitudinal neuropsychological testing, and both displayed evidence of mild cognitive deficits at or slightly preceding the onset of motor symptoms. LRRK2 p.R1441S represents the fourth pathogenic mutation observed within codon 1441 and its discovery adds to the remarkable complexity of a mutational hotspot within the ROC domain of the LRRK2 protein. © 2016 Wiley Periodicals, Inc."	"To identify the causal gene in a multi-incident U.S. kindred with Parkinson's disease (PD). We characterized a family with a classical PD phenotype in which 7 individuals (5 males and 2 females) were affected with a mean age at onset of 46.1 years (range, 29-57 years). We performed whole exome sequencing on 4 affected and 1 unaffected family members. Sanger-sequencing was then used to verify and genotype all candidate variants in the remainder of the pedigree. Cultured cells transfected with wild-type or mutant constructs were used to characterize proteins of interest. We identified a missense mutation (c.574G &gt; A; p.G192R) in the RAB39B gene that closely segregated with disease and exhibited X-linked dominant inheritance with reduced penetrance in females. The mutation occurred in a highly conserved amino acid residue and was not observed among 87,725 X chromosomes in the Exome Aggregation Consortium dataset. Sequencing of the RAB39B coding region in 587 familial PD cases yielded two additional mutations (c.428C &gt; G [p.A143G] and c.624_626delGAG [p.R209del]) that were predicted to be deleterious in silico but occurred in families that were not sufficiently informative to assess segregation with disease. Experiments in PC12 and SK-N-BE(2)C cells demonstrated that p.G192R resulted in mislocalization of the mutant protein, possibly by altering the structure of the hypervariable C-terminal domain which mediates intracellular targeting. Our findings implicate RAB39B, an essential regulator of vesicular-trafficking, in clinically typical PD. Further characterization of normal and aberrant RAB39B function might elucidate important mechanisms underlying neurodegeneration in PD and related disorders."	"Loss-of-function mutations in the GBA gene are associated with more severe cognitive impairment in PD, but the nature of these deficits is not well understood and whether common GBA polymorphisms influence cognitive performance in PD is not yet known. We screened the GBA coding region for mutations and the E326K polymorphism in 1,369 PD patients enrolled at eight sites from the PD Cognitive Genetics Consortium. Participants underwent assessments of learning and memory (Hopkins Verbal Learning Test-Revised), working memory/executive function (Letter-Number Sequencing Test and Trail Making Test A and B), language processing (semantic and phonemic verbal fluency), visuospatial abilities (Benton Judgment of Line Orientation), and global cognitive function (MoCA). We used linear regression to test for association between genotype and cognitive performance with adjustment for important covariates and accounted for multiple testing using Bonferroni's corrections. Mutation carriers (n = 60; 4.4%) and E326K carriers (n = 65; 4.7%) had a higher prevalence of dementia (mutations, odds ratio = 5.1; P = 9.7 × 10(-6) ; E326K, odds ratio = 6.4; P = 5.7 × 10(-7) ) and lower performance on Letter-Number Sequencing (mutations, corrected P[Pc ] = 9.0 × 10(-4) ; E326K, Pc = 0.036), Trail Making B-A (mutations, Pc = 0.018; E326K, Pc = 0.018), and Benton Judgment of Line Orientation (mutations, Pc = 0.0045; E326K, Pc = 0.0013). Both GBA mutations and E326K are associated with a distinct cognitive profile characterized by greater impairment in working memory/executive function and visuospatial abilities in PD patients. The discovery that E326K negatively impacts cognitive performance approximately doubles the proportion of PD patients we now recognize are at risk for more severe GBA-related cognitive deficits."
+"Matsuoka, Ryota"	"Cardiovascular and Metabolic Sciences"	29438257	28855341	27852438	23646199	22593055	21835343	21270798	30449506	24179230	NA	"Zebrafish has provided a powerful platform to study vascular biology over the past 25 years, owing to their distinct advantages for imaging and genetic manipulation. In this review, we summarize recent progress in vascular biology with particular emphasis on vascular development in zebrafish. The advent of transcription activator-like effector nuclease and clustered regularly interspaced short palindromic repeats (CRISPR)/CRISPR-associated protein 9 genome-editing technologies has dramatically facilitated reverse genetic approaches in zebrafish, as in other models. Here, we highlight recent studies on vascular development in zebrafish which mainly employed forward or reverse genetics combined with high-resolution imaging. These studies have advanced our understanding of diverse areas in vascular biology, including transcriptional regulation of endothelial cell differentiation, endothelial cell signaling during angiogenesis and lymphangiogenesis, vascular bed-specific developmental mechanisms, and perivascular cell recruitment. The unique attributes of the zebrafish model have allowed critical cellular and molecular insights into fundamental mechanisms of vascular development. Knowledge acquired through recent zebrafish work further advances our understanding of basic mechanisms underlying vascular morphogenesis, maintenance, and homeostasis. Ultimately, insights provided by the zebrafish model will help to understand the genetic, cellular, and molecular underpinnings of human vascular malformations and diseases."	"Organ growth requires the coordinated invasion and expansion of blood vessel networks directed by tissue-resident cells and morphogenetic cues. A striking example of this intercellular communication is the vascularization of the central nervous system (CNS), which is driven by neuronal progenitors, including neuroepithelial cells and radial glia. Although the importance of neuronal progenitors in vascular development within the CNS is well recognized, how these progenitors regulate the vasculature outside the CNS remains largely unknown. Here we show that CNS-resident radial glia direct the vascularization of neighboring tissues during development. We find that genetic ablation of radial glia in zebrafish larvae leads to a complete loss of the bilateral vertebral arteries (VTAs) that extend along the ventrolateral sides of the spinal cord. Importantly, VTA formation is not affected by ablation of other CNS cell types, and radial glia ablation also compromises the subsequent formation of the peri-neural vascular plexus (PNVP), a vascular network that surrounds the CNS and is critical for CNS angiogenesis. Mechanistically, we find that radial glia control these processes via Vegfab/Vegfr2 signaling: vegfab is expressed by radial glia, and genetic or pharmacological inhibition of Vegfab/Vegfr2 signaling blocks the formation of the VTAs and subsequently of the PNVP. Moreover, mosaic overexpression of Vegfab in radial glia is sufficient to partially rescue the VTA formation defect in vegfab mutants. Thus, our findings identify a critical function for CNS-resident progenitors in the regulation of vascularization outside the CNS, serving as a paradigm for cross-tissue coordination of vascular morphogenesis and growth."	"Vascular networks surrounding individual organs are important for their development, maintenance, and function; however, how these networks are assembled remains poorly understood. Here we show that CNS progenitors, referred to as radial glia, modulate vascular patterning around the spinal cord by acting as negative regulators. We found that radial glia ablation in zebrafish embryos leads to excessive sprouting of the trunk vessels around the spinal cord, and exclusively those of venous identity. Mechanistically, we determined that radial glia control this process via the Vegf decoy receptor sFlt1: sflt1 mutants exhibit the venous over-sprouting observed in radial glia-ablated larvae, and sFlt1 overexpression rescues it. Genetic mosaic analyses show that sFlt1 function in trunk endothelial cells can limit their over-sprouting. Together, our findings identify CNS-resident progenitors as critical angiogenic regulators that determine the precise patterning of the vasculature around the spinal cord, providing novel insights into vascular network formation around developing organs."	"In the vertebrate retina, the formation of neural circuits within discrete laminae is critical for the establishment of retinal visual function. Precise formation of retinal circuits requires the coordinated actions of adhesive and repulsive molecules, including repulsive transmembrane semaphorins (Sema6A, Sema5A, and Sema5B). These semaphorins signal through different Plexin A (PlexA) receptors, thereby regulating distinct aspects of retinal circuit assembly. Here, we investigate the physiological roles of three Class 6 transmembrane semaphorins (Sema6B, Sema6C, and Sema6D), previously identified as PlexA receptor ligands in non-retinal tissues, in mammalian retinal development. We performed expression analysis and also phenotypic analyses of mice that carry null mutations in each of genes encoding these proteins using a broad range of inner and outer retinal markers. We find that these Class 6 semaphorins are uniquely expressed throughout postnatal retinal development in specific domains and cell types of the developing retina. However, we do not observe defects in stereotypical lamina-specific neurite stratification of retinal neuron subtypes in Sema6B-/- or Sema6C-/-; Sema6D-/- retinas. These findings indicate these Class 6 transmembrane semaphorins are unlikely to serve as major PlexA receptor ligands for the assembly of murine retinal circuit laminar organization."	"In the vertebrate retina, neuronal circuitry required for visual perception is organized within specific laminae. Photoreceptors convey external visual information to bipolar and horizontal cells at triad ribbon synapses established within the outer plexiform layer (OPL), initiating retinal visual processing. However, the molecular mechanisms that organize these three classes of neuronal processes within the OPL, thereby ensuring appropriate ribbon synapse formation, remain largely unknown. Here we show that mice with null mutations in Sema6A or PlexinA4 (PlexA4) exhibit a pronounced defect in OPL stratification of horizontal cell axons without any apparent deficits in bipolar cell dendrite or photoreceptor axon targeting. Furthermore, these mutant horizontal cells exhibit aberrant dendritic arborization and reduced dendritic self-avoidance within the OPL. Ultrastructural analysis shows that the horizontal cell contribution to rod ribbon synapse formation in PlexA4⁻/⁻ retinas is disrupted. These findings define molecular components required for outer retina lamination and ribbon synapse formation."	"In the vertebrate retina, neurites from distinct neuronal cell types are constrained within the plexiform layers, allowing for establishment of retinal lamination. However, the mechanisms by which retinal neurites are segregated within the inner or outer plexiform layers are not known. We find that the transmembrane semaphorins Sema5A and Sema5B constrain neurites from multiple retinal neuron subtypes within the inner plexiform layer (IPL). In Sema5A⁻/⁻; Sema5B⁻/⁻ mice, retinal ganglion cells (RGCs) and amacrine and bipolar cells exhibit severe defects leading to neurite mistargeting into the outer portions of the retina. These targeting abnormalities are more prominent in the outer (OFF) layers of the IPL and result in functional defects in select RGC response properties. Sema5A and Sema5B inhibit retinal neurite outgrowth through PlexinA1 and PlexinA3 receptors both in vitro and in vivo. These findings define a set of ligands and receptors required for the establishment of inner retinal lamination and function."	"In the vertebrate retina, establishment of precise synaptic connections among distinct retinal neuron cell types is critical for processing visual information and for accurate visual perception. Retinal ganglion cells (RGCs), amacrine cells and bipolar cells establish stereotypic neurite arborization patterns to form functional neural circuits in the inner plexiform layer (IPL), a laminar region that is conventionally divided into five major parallel sublaminae. However, the molecular mechanisms governing distinct retinal subtype targeting to specific sublaminae within the IPL remain to be elucidated. Here we show that the transmembrane semaphorin Sema6A signals through its receptor PlexinA4 (PlexA4) to control lamina-specific neuronal stratification in the mouse retina. Expression analyses demonstrate that Sema6A and PlexA4 proteins are expressed in a complementary fashion in the developing retina: Sema6A in most ON sublaminae and PlexA4 in OFF sublaminae of the IPL. Mice with null mutations in PlexA4 or Sema6A exhibit severe defects in stereotypic lamina-specific neurite arborization of tyrosine hydroxylase (TH)-expressing dopaminergic amacrine cells, intrinsically photosensitive RGCs (ipRGCs) and calbindin-positive cells in the IPL. Sema6A and PlexA4 genetically interact in vivo for the regulation of dopaminergic amacrine cell laminar targeting. Therefore, neuronal targeting to subdivisions of the IPL in the mammalian retina is directed by repulsive transmembrane guidance cues present on neuronal processes."	"The hypothalamo-neurohypophyseal system (HNS) regulates homeostasis through the passage of neurohormones and blood-borne proteins via permeable blood capillaries that lack the blood-brain barrier (BBB). Why neurohypophyseal capillaries become permeable while the neighboring vasculature of the brain forms BBB remains unclear. We show that pituicytes, the resident astroglial cells of the neurohypophysis, express genes that are associated with BBB breakdown during neuroinflammation. Pituicyte-enriched factors provide a local microenvironment that instructs a permeable neurovascular conduit. Thus, genetic and pharmacological perturbations of Vegfa and Tgfβ3 affected HNS vascular morphogenesis and permeability and impaired the expression of the fenestral marker plvap. The anti-inflammatory agent dexamethasone decreased HNS permeability and downregulated the pituicyte-specific cyp26b gene, encoding a retinoic acid catabolic enzyme. Inhibition of Cyp26b activity led to upregulation of tight junction protein Claudin-5 and decreased permeability. We conclude that pituicyte-derived factors regulate the &quot;decision&quot; of endothelial cells to adopt a permeable endothelial fate instead of forming a BBB."	"Direction-selective responses to motion can be to the onset (On) or cessation (Off) of illumination. Here, we show that the transmembrane protein semaphorin 6A and its receptor plexin A2 are critical for achieving radially symmetric arborization of On starburst amacrine cell (SAC) dendrites and normal SAC stratification in the mouse retina. Plexin A2 is expressed in both On and Off SACs; however, semaphorin 6A is expressed in On SACs. Specific On-Off bistratified direction-selective ganglion cells in semaphorin 6A(-/-) mutants exhibit decreased tuning of On directional motion responses. These results correlate the elaboration of symmetric SAC dendritic morphology and asymmetric responses to motion, shedding light on the development of visual pathways that use the same cell types for divergent outputs. "	NA
+"Maytin, Edward"	"Biomedical Engineering"	30740528	29593028	29471147	28336806	26964566	26448756	26223149	25983370	25712788	25402211	"Breast cancer (BCA) in women is a leading cause of mortality and morbidity; distant metastases occur in ~40% of cases. Here, as an alternative to ionizing radiation therapy and chemotherapy and their associated side effects, we explored a new combination approach using capecitabine (CPBN) and aminolevulinate-based photodynamic therapy (PDT). We had previously developed a combination PDT approach in which 5-fluorouracil (5FU), a differentiation-promoting agent, increases the levels of protoporphyrin IX (PpIX) in cancer cells when given as a neoadjuvant prior to aminolevulinic acid (ALA). However, 5FU can be toxic when administered systemically at high levels. We reasoned that CPBN, a known chemotherapeutic for BCA and less toxic than 5FU (because CPBN is metabolized to 5FU specifically within tumor tissues), might work equally well as a PDT neoadjuvant. Murine 4T1 BCA cells harboring a luciferase transgene were injected into breast fat pads of female nude mice. CPBN (600 mg/kg/day) was administered by oral gavage for 3 days followed by intraperitoneal ALA administration and PDT with red light (633 nm) on day 4. Tumor growth and regression were monitored in vivo using bioluminescence imaging. Histological changes in primary tumors and metastases were assessed by immunohistochemistry after necropsy. CPBN pretreatment of 4T1 tumors increased cellular differentiation, reduced proliferation, raised PpIX levels, enhanced tumor cell death, and reduced metastatic spread of 4T1 cells post-PDT, relative to vehicle-only controls. The use of CPBN as a non-toxic PDT neoadjuvant for treatment of BCA represents a novel approach with significant potential for translation into the clinic."	"Purpose: Actinic keratoses (AK) are precancerous lesions that can progress to squamous cell carcinoma. Photodynamic therapy (PDT) and topical 5-fluorouracil (5FU) are commonly used agents for AK. Empirical reports suggest that combining them can improve the therapeutic response. However, the optimal combined regimen was not clear in terms of proper sequence, timing, and mechanism. This clinical study explored mechanisms of action for neoadjuvantal 5FU and PDT for treatment of AK.Patients and Methods: A bilaterally controlled trial (17 patients) was performed. One side of the body (face, scalp, forearms) received 5FU pretreatment for 6 days, whereas the other side served as no-pretreatment control. Methylaminolevulinate cream was applied to both sides for 3 hours, and protoporphyrin IX (PpIX) levels were measured by noninvasive fluorimetry and skin biopsy. After red light illumination, lesion clearance was assessed at 3, 6, 9, and 12 months after PDT.Results: PpIX levels were increased 2- to 3-fold in 5FU-pretreated lesions versus controls. Altered expression of heme-synthetic enzymes (coproporphyrinogen oxidase and ferrochelatase) and induction of p53 were observed, probably accounting for increased PpIX and subsequent cancer cell death. Relative clearance rates after PDT with or without 5FU pretreatment were 75% versus 45% at 3 months, and 67% versus 39% at 6 months, respectively; these differences were statistically significant.Conclusions: Serial 5FU and PDT improve AK clearance by at least two mechanisms, enhanced photosensitizer accumulation and p53 induction. Because 5FU and PDT are FDA-approved modalities, the combined regimen can be readily employed in clinical practice to reduce AK burden and reduce SCC risk. Clin Cancer Res; 24(13); 3026-35. ©2018 AACR."	"Photodynamic therapy (PDT) is a non-scarring alternative for treating basal cell carcinoma (BCC) in patients with Basal Cell Nevus Syndrome (BCNS), also known as Gorlin syndrome. In Europe, red light (635 nm) is the predominant source for PDT, whereas in the United States blue light (400 nm) is more widely available. The objective of this study was to conduct a head-to-head comparison of blue light and red light PDT in the same BCNS patients. In a pilot study of three patients with 141 BCC lesions, 5-aminolevulinate (20% solution) was applied to all tumors. After 4 h, half of the tumors were illuminated with blue light and the remainder with red light. To ensure safety while treating this many tumors simultaneously, light doses were escalated gradually. Six treatments were administered in three biweekly sessions over 4 months, with a final evaluation at 6 months. Tumor status was documented with high-resolution photographs. Persistent lesions were biopsied at 6 months. Clearance rates after blue light (98%) were slightly better than after red light (93%), with blue light shown to be statistically non-inferior to red light. Eight suspicious lesions were biopsied, 5 after red light (5/5 were BCC) and 3 after blue light (1 was BCC). Blue light PDT was reportedly less painful. Blue light and red light PDT appear to be equally safe and perhaps equally effective for treating BCC tumors in BCNS patients. Further studies to evaluate long-term clearance after blue light PDT are needed."	"Photodynamic therapy (PDT), using 5-aminolevulinic acid (ALA) to drive synthesis of protoporphryin IX (PpIX) is a promising, scar-free alternative to surgery for skin cancers, including squamous cell carcinoma (SCC) and SCC precursors called actinic keratoses. In the United States, PDT is only FDA approved for treatment of actinic keratoses; this narrow range of indications could be broadened if PDT efficacy were improved. Toward that goal, we developed a mechanism-based combination approach using 5-fluorouracil (5-FU) as a neoadjuvant for ALA-based PDT. In mouse models of SCC (orthotopic UV-induced lesions, and subcutaneous A431 and 4T1 tumors), pretreatment with 5-FU for 3 days followed by ALA for 4 hours led to large, tumor-selective increases in PpIX levels, and enhanced cell death upon illumination. Several mechanisms were identified that might explain the relatively improved therapeutic response. First, the expression of key enzymes in the heme synthesis pathway was altered, including upregulated coproporphyrinogen oxidase and downregulated ferrochelatase. Second, a 3- to 6-fold induction of p53 in 5-FU-pretreated tumors was noted. The fact that A431 contains a mutant form p53 did not prevent the development of a neoadjuvantal 5-FU effect. Furthermore, 5-FU pretreatment of 4T1 tumors (cells that completely lack p53), still led to significant beneficial inductions, that is, 2.5-fold for both PpIX and PDT-induced cell death. Thus, neoadjuvantal 5-FU combined with PDT represents a new therapeutic approach that appears useful even for p53-mutant and p53-null tumors. Mol Cancer Ther; 16(6); 1092-101. ©2017 AACR."	"Dermatology is a field that strives not only to alleviate skin disease (therapeutics) but also to improve the perception of wellness (cosmetics). Thus, in this special issue of Glycobiology, it seems appropriate to discuss the biology of a glycosaminoglycan, called hyaluronic acid (hyaluronan, or HA), that has become the most popular agent today for intradermal injections to improve wrinkles and other cosmetic defects. HA is a simple linear polymer in which a simple disaccharide is repeated thousands of time, thereby creating a huge hydrophilic molecule that confers a large volume of hydration and contributes to the turgor and flexibility of healthy skin. Beyond cosmetic considerations, however, HA also has important biological and physiological functions that were largely under-appreciated until recently. New research has confirmed that HA is dynamically produced by most skin cells, not only fibroblasts (the cells that make most of the skin's extracellular matrix) but also by keratinocytes in the outer protective layer (epidermis). For both fibroblasts and keratinocytes, HA plays a regulatory role in controlling cell physiology through interaction of extracellular HA with a major cell-surface receptor, CD44. This interaction mediates intracellular signaling both directly and indirectly, through CD44 interactions with the cytoskeleton and with EGF and TGFβ receptors. Furthermore, degradation of HA by specific hyaluronidase enzymes produces HA fragments that can help to regulate inflammatory processes. In this review, current knowledge about the role of HA in skin inflammation and wound healing are reviewed and possible future applications of such knowledge discussed."	"Ulcers and chronic wounds are a particularly common problem in diabetics and are associated with hyperglycemia. In this targeted review, we summarize evidence suggesting that defective wound healing in diabetics is causally linked, at least in part, to hyperglycemia-induced changes in the status of hyaluronan (HA) that resides in the pericellular coat (glycocalyx) of endothelial cells of small cutaneous blood vessels. Potential mechanisms through which exposure to high glucose levels causes a loss of the glycocalyx on the endothelium and accelerates the recruitment of leukocytes, creating a proinflammatory environment, are discussed in detail. Hyperglycemia also affects other cells in the immediate perivascular area, including pericytes and smooth muscle cells, through exposure to increased cytokine levels and through glucose elevations in the interstitial fluid. Possible roles of newly recognized, cross-linked forms of HA, and interactions of a major HA receptor (CD44) with cytokine/growth factor receptors during hyperglycemia, are also discussed. "	"Better noninvasive techniques are needed to monitor protoporphyrin IX (PpIX) levels before and during photodynamic therapy (PDT) of squamous cell carcinoma (SCC) of the skin. Our aim was to evaluate (1) multispectral fluorescent imaging of ultraviolet light (UV)-induced cancer and precancer in a mouse model of SCC and (2) multispectral imaging and probe-based fluorescence detection as a tool to study vitamin D (VD) effects on aminolevulinic acid (ALA)-induced PpIX synthesis. Dorsal skin of hairless mice was imaged weekly during a 24-week UV carcinogenesis protocol. Hot spots of PpIX fluorescence were detectable by multispectral imaging beginning at 14 weeks of UV exposure. Many hot spots disappeared after cessation of UV at week 20, but others persisted or became visible after week 20, and corresponded to tumors that eventually became visible by eye. In SCC-bearing mice pretreated with topical VD before ALA application, our optical techniques confirmed that VD preconditioning induces a tumor-selective increase in PpIX levels. Fluorescence-based optical imaging of PpIX is a promising tool for detecting early SCC lesions of the skin. Pretreatment with VD can increase the ability to detect early tumors, providing a potential new way to improve efficacy of ALA-PDT. "	"Non-melanoma skin cancers (NMSCs) such as basal cell carcinoma (BCC) and squamous cell carcinoma (SCC) are the most common form of human cancer worldwide, and their incidence is increasing. Photodynamic therapy (PDT), mediated by topically applied aminolevulinic acid (ALA) and subsequent exposure to light (either a laser or a noncoherent source), is being increasingly used for the treatment of dermatological disorders, including BCC and SCC. However, therapeutic responses of NMSCs to ALA-PDT are currently not superior to standard therapies, although the latter have undesirable side effects including scarring. In this study, we report that preconditioning of skin tumors with calcitriol (active form of Vitamin D; Vit D) prior to ALA-PDT, significantly improves the treatment outcome. In BCC and UVB-induced SCC mouse models, we identified an increase in tumor-specific accumulation of ALA induced photosensitizer (protoporphyrin IX, PpIX) due to Vit D preconditioning, of up to 6-fold in vivo. In addition, increased expression of differentiation (145 fold, p &lt; 0.02) and proliferation (42 fold, p &lt; 0.005) markers were identified in BCC tumors, all leading to increased tumor destruction (18.3 fold, p &lt; 0.03) with the combination approach, as compared to ALA-PDT alone. Histomorphological changes identified using hematoxylin and eosin staining, and results of TUNEL staining, together documented a beneficial effect of Vit D pretreatment upon tumor cell death. We conclude that this new combination approach with Vit D and ALA-PDT has great potential to achieve complete remission of NMSC tumors, with excellent cosmetic results and an overall beneficial impact upon patient care."	"Cutaneous metastasis occurs more frequently in breast cancer than in any other malignancy in women, causing significant morbidity. Photodynamic therapy (PDT), which combines a porphyrin-based photosensitizer and activation by light, can be employed for breast cancer (especially cutaneous metastases) but tumor control after PDT has not surpassed traditional treatments methods such as surgery, radiation, and chemotherapy up to now. Here, we report that breast cancer nodules in mice can be effectively treated by preconditioning the tumors with 1α, 25-dihydroxyvitamin D3 (calcitriol; Vit D) prior to administering 5-aminolevulinate (ALA)-based PDT. Breast carcinoma tumors (MDA-MB-231 cells implanted subcutaneously in nude mice) received systemic Vit D (1 μg/kg) for 3 days prior to receiving ALA. The addition of Vit D increased intratumoral accumulation of protoporphyrin IX (PpIX) by 3.3 ± 0.5-fold, relative to mice receiving ALA alone. Bioluminescence imaging in vivo and immunohistochemical staining confirmed that tumor-specific cell death after ALA-PDT was markedly enhanced (36.8 ± 7.4-fold increase in TUNEL-positive nuclei; radiance decreased to 14% of control) in Vit D pretreated tumors as compared to vehicle-pretreated tumors. Vit D stimulated proliferation (10.7 ± 2.8-fold) and differentiation (9.62 ± 1.7-fold) in tumor cells, underlying an augmented cellular sensitivity to ALA-PDT. The observed enhancement of tumor responses to ALA-PDT after low, nontoxic doses of Vit D supports a new combination approach that deserves consideration in the clinical setting, and offers potential for improved remission of cutaneous breast cancer metastases."	"The CCAAT/Enhancer Binding Proteins (C/EBPs) are a family of leucine-zipper transcription factors that regulate physiological processes such as energy metabolism, inflammation, cell cycle, and the development and differentiation of several tissues including skin. Recently, a role for C/EBPs in tumor cell proliferation and differentiation has been proposed, but the incomplete characterization in the literature of multiple translational isoforms of these proteins has made interpretation of these roles difficult. Therefore, we have carefully reexamined C/EBP isoform expression in human non-melanoma skin cancers. C/EBPα, C/EBPβ, and C/EBPδ were analyzed histologically in squamous cell carcinomas (SCC). The individual isoforms of C/EBPα and C/EBPβ were examined by immunofluorescent digital imaging, western blotting and DNA binding activity (electrophoretic mobility shift analysis). Expression of all C/EBP family proteins was decreased in SCC tumors. Suppression was greatest for C/EBPα, less for C/EBPβ, and least for C/EBPδ. Western analyses confirmed that C/EBPα p42 and p30 isoforms were decreased. For C/EBPβ, only the abundant full-length isoform (C/EBPβ-1, LAP*, 55 kD) was reduced, whereas the smaller isoforms, C/EBPβ-2 (LAP, 48 kD) and C/EBPβ-3 (LIP, 20 kD), which are predominantly nuclear, were significantly increased in well- and moderately-differentiated SCC (up to 14-fold for C/EBPβ-3). These elevations correlated with increases in PCNA, a marker of proliferation. Although C/EBPβ displayed increased post-translational modifications in SCC, phosphorylation of C/EBPβ-1 (Thr 235) was not altered. C/EBP-specific DNA binding activity in nuclear and whole-cell extracts of cultured cells and tumors was predominantly attributable to C/EBPβ. In summary, two short C/EBPβ isoforms, C/EBPβ-2 and C/EBPβ-3, represent strong candidate markers for epithelial skin malignancy, due to their preferential expression in carcinoma versus normal skin, and their strong correlation with tumor proliferation. "
+"McCrae, Keith"	"Cardiovascular and Metabolic Sciences"	30923524	29295846	28784423	28711993	28476065	28314138	28113083	27402674	26637701	26264622	"The antiphospholipid syndrome (APS) is characterized by thrombosis and pregnancy morbidity in the presence of antiphospholipid antibodies (aPL). Complement is a system of enzymes and regulatory proteins of the innate immune system that plays a key role in the inflammatory response to pathogenic stimuli. The complement and coagulation pathways are closely linked, and expanding data indicate that complement may be activated in patients with aPL and function as a cofactor in the pathogenesis of aPL-associated clinical events. Complement activation by aPL generates C5a, which induces neutrophil tissue factor-dependent procoagulant activity. Beta-2-glycoprotein I, the primary antigen for pathogenic aPL, has complement regulatory effects in vitro. Moreover, aPL induce fetal loss in wild-type mice but not in mice deficient in specific complement components (C3, C5). Antiphospholipid antibodies also induce thrombosis in wild type mice and this effect is attenuated in C3 or C6 deficient mice, or in the presence of a C5 inhibitor. Increased levels of complement activation products have been demonstrated in sera of patients with aPL, though the association with clinical events remains unclear. Eculizumab, a terminal complement inhibitor, has successfully been used to treat catastrophic APS and prevent APS-related thrombotic microangiopathy in the setting of renal transplant. However, the mechanisms of complement activation in APS, its role in the pathogenesis of aPL related complications in humans, and the potential of complement inhibition as a therapeutic target in APS require further study."	"Splenectomy is an effective therapy for steroid-refractory or dependent immune thrombocytopenia (ITP). With the advent of medical alternatives such as rituximab and thrombopoietin receptor antagonists, the use of splenectomy has declined and is generally reserved for patients that fail multiple medical therapies. Splenectomy removes the primary site of platelet clearance and autoantibody production and offers the highest rate of durable response (50% to 70%) compared with other ITP therapies. However, there are no reliable predictors of splenectomy response, and long-term risks of infection and cardiovascular complications must be considered. Because the long-term efficacy of different second-line medical therapies for ITP have not been directly compared, treatment decisions must be made without supportive evidence. Splenectomy continues to be a reasonable treatment option for many patients, including those with an active lifestyle who desire freedom from medication and monitoring, and patients with fulminant ITP that does not respond well to medical therapy. We try to avoid splenectomy within the first 12 months after ITP diagnosis for most patients to allow for spontaneous or therapy-induced remissions, particularly in older patients who have increased surgical morbidity and lower rates of response, and in young children. Treatment decisions must be individualized based on patients' comorbidities, lifestyles, and preferences. Future research should focus on comparing long-term outcomes of patients treated with different second-line therapies and on developing personalized medicine approaches to identify subsets of patients most likely to respond to splenectomy or other therapeutic approaches."	"Antiphospholipid syndrome (APS) is characterized by thrombosis and/or pregnancy complications in the presence of persistent antiphospholipid antibodies (APLA). Laboratory diagnosis of APLA depends upon the detection of a lupus anticoagulant, which prolongs phospholipid-dependent anticoagulation tests, and/or anticardiolipin (aCL) and anti-β2-glycoprotein-1 (β2GPI) antibodies. APLA are primarily directed toward phospholipid binding proteins. Pathophysiologic mechanisms underlying thrombosis and pregnancy loss in APS include APLA induced cellular activation, inhibition of natural anticoagulant and fibrinolytic systems, and complement activation, among others. There is a high rate of recurrent thrombosis in APS, especially in triple positive patients (patients with lupus anticoagulant, aCL and anti-β2GPI antibodies), and indefinite anticoagulation with a vitamin K antagonist is the standard of care for thrombotic APS. There is currently insufficient evidence to recommend the routine use of direct oral anticoagulants (DOAC) in thrombotic APS. Aspirin with low molecular weight or unfractionated heparin may reduce the incidence of pregnancy loss in obstetric APS. Recent insights into the pathogenesis of APS have led to the identification of new potential therapeutic interventions, including anti-inflammatory and immunomodulatory therapies. Additional research is needed to better understand the effects of APLA on activation of signaling pathways in vascular cells, to identify more predictive biomarkers that define patients at greatest risk for a first or recurrent APLA-related clinical event, and to determine the safety and efficacy of DOACs and novel anti-inflammatory and immune-modulatory therapies for refractory APS."	"Laboratory criteria for the classification of antiphospholipid syndrome include the detection of a lupus anticoagulant and/or anticardiolipin and anti-β2-glycoprotein I antibodies. However, the majority of patients who test positive in these assays do not have thrombosis. Current risk-stratification tools are largely limited to the antiphospholipid antibody profile and traditional thrombotic risk factors. Novel biomarkers that correlate with disease activity and potentially provide insight into future clinical events include domain 1 specific anti-β2GPI antibodies, antibodies to other phospholipids or phospholipid/protein antigens (such as anti-PS/PT), and functional/biological assays such as thrombin generation, complement activation, levels of circulating microparticles, and annexin A5 resistance. Clinical risk scores may also have value in predicting clinical events. Biomarkers that predict thrombosis risk in patients with antiphospholipid antibodies have been long sought, and several biomarkers have been proposed. Ultimately, integration of biomarkers with established assays and clinical characteristics may offer the best chance of identifying patients at highest risk of APS-related complications."	"Antiphospholipid antibodies (aPL), particularly those directed against β2-glycoprotein I, cause activation of vascular cells (endothelial cells, platelets, monocytes) and release of extracellular vesicles (EVs), which include exosomes and microparticles (MPs). MPs, particularly endothelial MPs, have been most extensively studied in antiphospholipid syndrome (APS). Compared with healthy controls, patients with aPL have significantly higher levels of circulating endothelial and platelet MPs, including MPs expressing immunological and functional tissue factor. Although a consistent relationship of EVs with APS-related thrombosis and obstetric events has not yet been demonstrated, elevated levels of MPs occurring remote from thrombotic events suggest a chronic state of vascular activation in APS. In addition to being a marker of cellular activation, EVs express bioactive lipids, proteins, and nucleic acids, particularly microribonucleic acid (microRNA). EVs may potentially play a pathogenic role in APS by stimulating thrombosis through tissue factor-dependent and independent mechanisms and by promoting vascular activation. Further research is needed to understand these mechanisms and to determine whether EVs may be a useful biomarker to identify patients with aPL at highest risk of clinical events."	"Hereditary hemorrhagic telangiectasia (HHT) is characterized by frequent severe bleeding, particularly epistaxis, and life-threatening complications including stroke, brain abscess and heart failure. The psychological impact of HHT is not known. We conducted this cross sectional study to determine the prevalence of depression and post-traumatic stress disorder (PTSD) related to HHT. A survey tool comprising demographic and clinical information and two validated self-administered questionnaires, the PTSD checklist for DSM-5 (PCL-5) and Beck Depression Inventory-II (BDI-II), was distributed to individuals with HHT. Associations with clinical and demographic variables with depression and PTSD were evaluated in a logistic regression model. A total of 222 individuals responded to the survey. Of these, 185 completed either the BDI II or PCL-5 and were included in the analysis. Median age was 54years and 142 (76.8%) were female. An existing diagnosis of depression, anxiety disorder and PTSD was present in 81 (43.8%), 59 (31.9%) and 16(8.6%) respondents, respectively. BDI-II scores&gt;13 indicating at least mild depressive symptoms were present in 142 (88.7%) patients and 52 (28.1%) patients had a positive screen for PTSD (PCL-5 score≥38). On multivariable analysis, depression [OR 2.17 (95% CI 1.045-4.489), p=0.038], anxiety disorder [OR 2.232 (95% CI 1.066-4.676), p=0.033], and being unemployed [OR 2.234 (95% CI 1.46-4.714), p=0.019) were associated with PTSD. We report a high prevalence of depressive and PTSD symptoms in individuals with HHT. While selection bias may lead to overestimation of prevalence in this study, our results are concerning and clinicians should remain vigilant for signs of psychological distress and consider screening for these disorders."	"Survivors of thrombotic thrombocytopenic purpura (TTP) have high rates of chronic morbidities including neurocognitive complications and depression. There is limited information regarding the psychological consequences of TTP. We conducted this cross sectional study to estimate the prevalence of symptoms of PTSD and depression in survivors of TTP. An online survey tool comprising demographic and clinical information and two validated self-administered questionnaires, the PTSD checklist for DSM-5 (PCL-5) and Beck Depression Inventory-II (BDI-II), was distributed to individuals with TTP. Multivariable regression was used to identify clinical and demographic associations of depression and PTSD. A total of 236 individuals completed either the BDI II or PCL-5 and were included in the analysis. Median age was 44years and 87.3% were female. Median time from diagnosis was 80months. BDI-II scores &gt;13 indicating at least mild depressive symptoms were present in 80.8% individuals (15.8%, 28.2%, and 36.8% with mild, moderate and severe symptoms, respectively) and 35.1% had a positive screen for PTSD (PCL-5 score≥38). A previous diagnosis of depression [OR 3.65 (95% CI 1.26-10.57); p=0.017] and unemployment attributed to TTP [OR 5.86 (95% CI 1.26-27.09); p=0.024] were associated with depression. Younger age (p=0.017), a pre-existing anxiety disorder [OR 3.57 (95% CI 1.76-7.25), p&lt;0.001], and unemployment attributable to TTP [OR 6.42 (95% CI 2.75-415.00), p&lt;0.001] were associated with PTSD. We report a high prevalence of PTSD and depression in TTP survivors. These results are concerning and indicate a need for further investigation to better define this association and its consequences."	"Previous studies have demonstrated that cleaved high-molecular-weight kininogen (HKa) induces endothelial apoptosis and inhibits angiogenesis and have suggested that this occurs through inhibition of Src family kinases. This study assessed the role of tyrosine-protein kinase Lck (p56/Lck) in this pathway. We analyzed early events leading to apoptosis of human endothelial cells exposed to HKa. The role of p56/Lck was investigated using short interfering (si) RNA knockdown and lentivirus expression in assays of endothelial tube formation, sprouting of neovessels from murine aorta, and angiogenesis in Matrigel plugs. HKa stimulated expression and phosphorylation of p56/Lck. siRNA knockdown of p56/Lck promoted endothelial proliferation and blocked HKa-induced apoptosis and activation of p53, Bax, and Bak. Lentivirus expression of p56/Lck in endothelial cells induced apoptosis and blocked tube formation. Expression of p56/Lck in murine aortic rings blocked sprouting angiogenesis. Lentivirus expressing p56/Lck blocked angiogenesis in Matrigel plugs, while p56/Lck short hairpin RNA inhibited the antiangiogenic effect of HKa. Scrambled siRNAs and empty lentiviral vectors were used in all experiments. Apoptosis of proliferating endothelial cells and inhibition of angiogenesis by HKa requires p56/Lck. This suggests a novel role for p56/Lck in regulation of endothelial cell survival and angiogenesis.-Betapudi, V., Shukla, M., Alluri, R., Merkulov, S., McCrae, K. R. Novel role for p56/Lck in regulation of endothelial cell survival and angiogenesis."	"Antiphospholipid syndrome (APS) is defined by clinical manifestations that include thrombosis and/or fetal loss or pregnancy morbidity in patients with antiphospholipid antibodies (aPL). Antiphospholipid antibodies are among the most common causes of acquired thrombophilia, but unlike most of the genetic thrombophilias are associated with both venous and arterial thrombosis. Despite an abundance of clinical and basic research on aPL, a unified mechanism that explains their prothrombotic activity has not been defined; this may reflect the heterogeneity of aPL and/or the fact that they may influence multiple pro- and/or antithrombotic pathways. Antiphospholipid antibodies are directed primarily toward phospholipid binding proteins rather than phospholipid per se, with the most common antigenic target being β2-glycoprotein 1 (β2GPI) although antibodies against other targets such as prothrombin are well described. Laboratory diagnosis of aPL depends upon the detection of a lupus anticoagulant (LA), which prolongs phospholipid-dependent anticoagulation tests, and/or anticardiolipin and anti-β2-glycoprotein 1 antibodies. Indefinite anticoagulation remains the mainstay of therapy for thrombotic APS, although new strategies that may improve outcomes are emerging. Preliminary reports suggest caution in the use of direct oral anticoagulants in patients with APS-associated thrombosis. Based on somewhat limited evidence, aspirin and low molecular weight heparin are recommended for obstetrical APS. There remains a pressing need for better understanding of the pathogenesis of APS in humans, for identification of clinical and laboratory parameters that define patients at greatest risk for APS-related events, and for targeted treatment of this common yet enigmatic disorder. "	"Elevated levels of endothelial cell (EC)-derived extracellular vesicles (EVs) circulate in patients with antiphospholipid antibodies (APLAs), and APLAs, particularly those against β2 -glycoprotein I (β2 GPI), stimulate EV release from ECs. However, the effects of EC-derived EVs have not been characterized. To determine the mechanism by which EVs released from ECs by anti-β2 GPI antibodies activate unstimulated ECs. We used interleukin (IL)-1 receptor inhibitors, small interfering RNA (siRNA) against Toll-like receptors (TLRs) and microRNA (miRNA) profiling to assess the mechanism(s) by which EVs released from ECs exposed to anti-β2 GPI antibodies activated unstimulated ECs. Anti-β2 GPI antibodies caused formation of an EC inflammasome and the release of EVs that were enriched in mature IL-1β, had a distinct miRNA profile, and caused endothelial activation. However, activation was not inhibited by an IL-1β antibody, an IL-1 receptor antagonist, or IL-1 receptor siRNA. EC activation by EVs required IL-1 receptor-associated kinase 4 phosphorylation, and was inhibited by pretreatment of cells with TLR7 siRNA or RNase A, which degrades ssRNA. Profiling of miRNA in EVs released from ECs incubated with β2 GPI and either control IgG or anti-β2 GPI antibodies revealed numerous differences in the content of specific miRNAs, including a significant decrease in mIR126. These observations demonstrate that, although anti-β2 GPI-derived endothelial EVs contain IL-1β, they activate unstimulated ECs through a TLR7-dependent and ssRNA-dependent pathway. Alterations in miRNA content may contribute to the ability of EVs derived from ECs exposed to anti-β2 GPI antibodies to activate unstimulated ECs in an autocrine or paracrine manner."
+"McDonald, Christine"	"Inflammation and Immunity"	30704299	29880914	29471675	26982478	25581832	25000398	23251695	22665475	22387394	21936032	"The studies reviewed in this article combine diet in the context of disease progression or treatment with analysis of the microbiome. First, we present findings on how diet manipulation impacts the microbiome and disease pathogenesis in a broad variety of rodent models of disease. Then, we describe results from clinical trials that are using diet therapies to attempt to shift the microbiome and treat disease symptoms. Finally, we discuss what these studies have taught us about the influence of the microbiome of disease and health states and highlight the evidence suggesting that dietary modulation of the microbiome is an emerging therapeutic option for a variety of different diseases."	"Multidrug-resistant bacterial strains are a rapidly emerging healthcare threat; therefore it is critical to develop new therapies to combat these organisms. Prior antibacterial strategies directly target pathogen growth or viability. Host-directed strategies to increase antimicrobial defenses may be an effective alternative to antibiotics and reduce development of resistant strains. In this study, we demonstrated the efficacy of a pyrimidine synthesis inhibitor, N-phosphonacetyl-L-aspartate (PALA), to enhance clearance of methicillin-resistant Staphylococcus aureus (MRSA), Pseudomonas aeruginosa, and Acinetobacter baumannii strains by primary human dermal fibroblasts in vitro. PALA did not have a direct bactericidal effect, but enhanced cellular secretion of the antimicrobial peptides human β-defensin 2 (HBD2) and HBD3 from fibroblasts. When tested in porcine and human skin explant models, a topical PALA formulation was efficacious to enhance MRSA, P. aeruginosa, and A. baumannii clearance. Topical PALA treatment of human skin explants also resulted in increased HBD2 and cathelicidin (LL-37) production. The antimicrobial actions of PALA required expression of nucleotide-binding, oligomerization domain 2 (NOD2), receptor-interacting serine/threonine-protein kinase 2 (RIP2), and carbamoyl phosphatase synthase II/aspartate transcarbamylase/dihydroorotase (CAD). Our results indicate that PALA may be a new option to combat multidrug-resistant bacterial infections of the skin through enhancement of an integral pathway of the cutaneous innate immune defense system."	"Yao syndrome (YAOS) is a systemic autoinflammatory disease (SAID), formerly termed nucleotide-binding oligomerization domain-2 (NOD2)-associated autoinflammatory disease. Due to the recent identification of YAOS, the molecular mechanisms underlying its disease pathogenesis are unclear. With specific NOD2 variants as characteristic genotypic features of YAOS, our study examined NOD2 expression, transcript splicing, signaling pathway activation, and cytokine profiles in peripheral blood mononuclear cells (PBMCs) from 10 YAOS patients and six healthy individuals. All participants were genotyped for NOD2 variants; all YAOS patients were heterozygous for the NOD2 IVS8<sup>+158</sup> variant (IVS8<sup>+158</sup>) and four patients also carried a concurrent NOD2 R702W variant (IVS8<sup>+158</sup>/R702W haplotype). Resembling other SAIDs, plasma levels of TNFα, IL-1β, IL-6, IFNγ, and S100A12 were unaltered in YAOS patients. Intron-8 splicing of NOD2 transcripts was unaffected by carriage of NOD2 IVS8<sup>+158</sup>. However, NOD2 transcript level and basal p38 mitogen-activated protein kinase (MAPK) activity were significantly elevated in PBMCs from IVS8<sup>+158</sup> YAOS patients. Moreover, these patients' cells had elevated basal IL-6 secretion that was enhanced by muramyl dipeptide (MDP) stimulation. Tocilizumab treatment of a YAOS IVS8<sup>+158</sup> patient resulted in marked clinical improvement. In contrast, MDP-stimulated NF-κB activity was uniquely suppressed in haplotype IVS8<sup>+158</sup>/R702W patients, as was TNFα secretion. Our study demonstrates for the first time that NOD2 expression and pathway activation are aberrant in YAOS, and specific NOD2 genotypes result in distinct NOD2 expression and cytokine profiles. These findings may also help select therapeutic strategies in the future."	"Autophagy is a cellular stress response that plays key roles in physiological processes, such as adaptation to starvation, degradation of aberrant proteins or organelles, anti-microbial defense, protein secretion, and innate and adaptive immunity. Dysfunctional autophagy is recognized as a contributing factor in many chronic inflammatory diseases, including inflammatory bowel disease (IBD). Genetic studies have identified multiple IBD-associated risk loci that include genes required for autophagy, and several lines of evidence demonstrate that autophagy is impaired in IBD patients. How dysfunctional autophagy contributes to IBD onset is currently under investigation by researchers. Dysfunctional autophagy has been identified to play a role in IBD pathogenesis by altering processes that include (1) intracellular bacterial killing, (2) anti-microbial peptide secretion by Paneth cells, (3) pro-inflammatory cytokine production by macrophages, (4) antigen presentation by dendritic cells, (5) goblet cell function, and (6) the endoplasmic reticulum stress response in enterocytes. The overall effect of dysregulation of these processes varies by cell type, stimulus, as well as cellular context. Manipulation of the autophagic pathway may provide a new avenue in the search for effective therapies for IBD. Autophagy plays multiple roles in IBD pathogenesis. A better understanding of the role of autophagy in IBD patients may provide better subclassification of IBD phenotypes and novel approaches to disease management."	"Inflammatory bowel disease (IBD) encompasses a group of disorders affecting the gastrointestinal tract characterized by acute and chronic inflammation. These are complex and multifactorial disorders that arise in part from a genetic predisposition. However, the increasing incidence of IBD in developing countries suggests that environmental factors, such as diet, are also critical components of disease susceptibility. Evidence suggests that consumption of a Western diet, enriched with saturated fat, refined carbohydrates, and food additives, is associated with increased IBD risk. Dietary components, such as omega-6 fatty acids, long-chain fatty acids, protein, and digestible carbohydrates, may contribute to IBD pathogenesis through altering intestinal microbiota, increasing intestinal permeability, and promoting inflammation; whereas omega-3 fatty acids, medium chain triglycerides, and nondigestible carbohydrates improve these parameters and intestinal health. However, the limited amount of prospective studies, small sample sizes, and the heterogeneity of disease subtype result in inconsistencies between studies and difficulty in conclusively determining the specific effects of diet on intestinal homeostasis. There are no standard clinical dietary recommendations for patients with IBD. However, exclusionary diet interventions have shown some efficacy in relieving symptoms or inducing remission, suggesting more research is needed to fully understand how diet influences disease behavior or combines with other IBD risk factors to promote disease. This review focuses on the associations of various dietary components and IBD risk in clinical studies and genetically susceptible IBD models. "	"In the latter half of the 20th century, societal and technological changes led to a shift in the composition of the American diet to include a greater proportion of processed, pre-packaged foods high in fat and carbohydrates, and low in dietary fiber (a &quot;Western diet&quot;). Over the same time period, there have been parallel increases in Salmonella gastroenteritis cases and a broad range of chronic inflammatory diseases associated with intestinal dysbiosis. Several polysaccharide food additives are linked to bacterially-driven intestinal inflammation and may contribute to the pathogenic effects of a Western diet. Therefore, we examined the effect of a ubiquitous polysaccharide food additive, maltodextrin (MDX), on clearance of the enteric pathogen Salmonella using both in vitro and in vivo infection models. When examined in vitro, murine bone marrow-derived macrophages exposed to MDX had altered vesicular trafficking, suppressed NAPDH oxidase expression, and reduced recruitment of NADPH oxidase to Salmonella-containing vesicles, which resulted in persistence of Salmonella in enlarged Rab7+ late endosomal vesicles. In vivo, mice consuming MDX-supplemented water had a breakdown of the anti-microbial mucous layer separating gut bacteria from the intestinal epithelium surface. Additionally, oral infection of these mice with Salmonella resulted in increased cecal bacterial loads and enrichment of lamina propria cells harboring large Rab7+ vesicles. These findings indicate that consumption of processed foods containing the polysaccharide MDX contributes to suppression of intestinal anti-microbial defense mechanisms and may be an environmental priming factor for the development of chronic inflammatory disease."	"Crohn's disease (CD) is associated with intestinal dysbiosis evidenced by an altered microbiome forming thick biofilms on the epithelium. Additionally, adherent-invasive E. coli (AIEC) strains are frequently isolated from ileal lesions of CD patients indicating a potential role for these strains in disease pathogenesis. The composition and characteristics of the host microbiome are influenced by environmental factors, particularly diet. Polysaccharides added to food as emulsifiers, stabilizers or bulking agents have been linked to bacteria-associated intestinal disorders. The escalating consumption of polysaccharides in Western diets parallels an increased incidence of CD during the latter 20(th) century. In this study, the effect of a polysaccharide panel on adhesiveness of the CD-associated AIEC strain LF82 was analyzed to determine if these food additives promote disease-associated bacterial phenotypes. Maltodextrin (MDX), a polysaccharide derived from starch hydrolysis, markedly enhanced LF82 specific biofilm formation. Biofilm formation of multiple other E. coli strains was also promoted by MDX. MDX-induced E. coli biofilm formation was independent of polysaccharide chain length indicating a requirement for MDX metabolism. MDX exposure induced type I pili expression, which was required for MDX-enhanced biofilm formation. MDX also increased bacterial adhesion to human intestinal epithelial cell monolayers in a mechanism dependent on type 1 pili and independent of the cellular receptor CEACAM6, suggesting a novel mechanism of epithelial cell adhesion. Analysis of mucosa-associated bacteria from individuals with and without CD showed increased prevalence of malX, a gene essential for MDX metabolism, uniquely in the ileum of CD patients. These findings demonstrate that the ubiquitous dietary component MDX enhances E. coli adhesion and suggests a mechanism by which Western diets rich in specific polysaccharides may promote dysbiosis of gut microbes and contribute to disease susceptibility."	"Autophagy is triggered by the intracellular bacterial sensor NOD2 (nucleotide-binding, oligomerization domain 2) as an anti-bacterial response. Defects in autophagy have been implicated in Crohn's disease susceptibility. The molecular mechanisms of activation and regulation of this process by NOD2 are not well understood, with recent studies reporting conflicting requirements for RIP2 (receptor-interacting protein kinase 2) in autophagy induction. We examined the requirement of NOD2 signaling mediated by RIP2 for anti-bacterial autophagy induction and clearance of Salmonella typhimurium in the intestinal epithelial cell line HCT116. Our data demonstrate that NOD2 stimulates autophagy in a process dependent on RIP2 tyrosine kinase activity. Autophagy induction requires the activity of the mitogen-activated protein kinases MEKK4 and p38 but is independent of NFκB signaling. Activation of autophagy was inhibited by a PP2A phosphatase complex, which interacts with both NOD2 and RIP2. PP2A phosphatase activity inhibited NOD2-dependent autophagy but not activation of NFκB or p38. Upon stimulation of NOD2, the phosphatase activity of the PP2A complex is inhibited through tyrosine phosphorylation of the catalytic subunit in a process dependent on RIP2 activity. These findings demonstrate that RIP2 tyrosine kinase activity is not only required for NOD2-dependent autophagy but plays a dual role in this process. RIP2 both sends a positive autophagy signal through activation of p38 MAPK and relieves repression of autophagy mediated by the phosphatase PP2A."	"Polymorphisms that reduce the function of nucleotide-binding oligomerization domain (NOD)2, a bacterial sensor, have been associated with Crohn's disease (CD). No proteins that regulate NOD2 activity have been identified as selective pharmacologic targets. We sought to discover regulators of NOD2 that might be pharmacologic targets for CD therapies. Carbamoyl phosphate synthetase/aspartate transcarbamylase/dihydroorotase (CAD) is an enzyme required for de novo pyrimidine nucleotide synthesis; it was identified as a NOD2-interacting protein by immunoprecipitation-coupled mass spectrometry. CAD expression was assessed in colon tissues from individuals with and without inflammatory bowel disease by immunohistochemistry. The interaction between CAD and NOD2 was assessed in human HCT116 intestinal epithelial cells by immunoprecipitation, immunoblot, reporter gene, and gentamicin protection assays. We also analyzed human cell lines that express variants of NOD2 and the effects of RNA interference, overexpression and CAD inhibitors. CAD was identified as a NOD2-interacting protein expressed at increased levels in the intestinal epithelium of patients with CD compared with controls. Overexpression of CAD inhibited NOD2-dependent activation of nuclear factor κB and p38 mitogen-activated protein kinase, as well as intracellular killing of Salmonella. Reduction of CAD expression or administration of CAD inhibitors increased NOD2-dependent signaling and antibacterial functions of NOD2 variants that are and are not associated with CD. The nucleotide synthesis enzyme CAD is a negative regulator of NOD2. The antibacterial function of NOD2 variants that have been associated with CD increased in response to pharmacologic inhibition of CAD. CAD is a potential therapeutic target for CD."	"The success of genetic analyses identifying multiple loci associated with inflammatory bowel disease (IBD) susceptibility has resulted in the identification of several risk genes linked to a common cellular process called autophagy. Autophagy is a process involving the encapsulation of cytosolic cellular components in double-membrane vesicles, their subsequent lysosomal degradation, and recycling of the degraded components for use by the cell. It plays an important part in the innate immune response to a variety of intracellular pathogens, and it is this component of autophagy that appears to be defective in IBD. This has lead to the hypothesis that Crohn's disease may result from an impaired antibacterial response, which leads to ineffective control of bacterial infection, dysbiosis of the intestinal microbiota, and chronic inflammation. Several recurrent themes have surfaced from studies examining the function of autophagy-related genes in the context of IBD, with cellular context, disease status, risk variant effect, and risk gene interplay all affecting the interpretation of these studies. The identification of autophagy as a major risk pathway in IBD is a significant step forward and may lead to pathway-focused therapy in the future; however, there is more to understand in order to unravel the complexity of this disease."
+"McIntyre, Thomas"	"Cardiovascular and Metabolic Sciences"	30150285	28455445	27227061	26720402	26471267	29354667	26003521	25163645	24412858	24177323	"Activated platelets release functional, high m.w. epidermal growth factor (HMW-EGF). In this study, we show platelets also express epidermal growth factor (EGF) receptor (EGFR) protein, but not ErbB2 or ErbB4 coreceptors, and so might respond to HMW-EGF. We found HMW-EGF stimulated platelet EGFR autophosphorylation, PI3 kinase-dependent AKT phosphorylation, and a Ca<sup>2+</sup> transient that were blocked by EGFR tyrosine kinase inhibition. Strong (thrombin) and weak (ADP, platelet-activating factor) G protein-coupled receptor agonists and non-G protein-coupled receptor collagen recruited EGFR tyrosine kinase activity that contributed to platelet activation because EGFR kinase inhibition reduced signal transduction and aggregation induced by each agonist. EGF stimulated ex vivo adhesion of platelets to collagen-coated microfluidic channels, whereas systemic EGF injection increased initial platelet deposition in FeCl3-damaged murine carotid arteries. EGFR signaling contributes to oral squamous cell carcinoma (OSCC) tumorigenesis, but the source of its ligand is not established. We find individual platelets were intercalated within OSCC tumors. A portion of these platelets expressed stimulation-dependent Bcl-3 and IL-1β and so had been activated. Stimulated platelets bound OSCC cells, and material released from stimulated platelets induced OSCC epithelial-mesenchymal transition and stimulated their migration and invasion through Matrigel barriers. Anti-EGF Ab or EGFR inhibitors abolished platelet-induced tumor cell phenotype transition, migration, and invasion; so the only factor released from activated platelets necessary for OSCC metastatic activity was HMW-EGF. These results establish HMW-EGF in platelet function and elucidate a previously unsuspected connection between activated platelets and tumorigenesis through rapid, and prolonged, autocrine-stimulated release of HMW-EGF by tumor-associated platelets."	"Platelets are the sole source of EGF in circulation, yet how EGF is stored or released from stimulated cells is undefined. In fact, we found platelets did not store EGF, synthesized as a single 6-kDa domain in pro-EGF, but rather expressed intact pro-EGF precursor on granular and plasma membranes. Activated platelets released high-molecular-weight (HMW)-EGF, produced by a single cleavage between the EGF and the transmembrane domains of pro-EGF. We synthesized a fluorogenic peptide encompassing residues surrounding the putative sessile arginyl residue and found stimulated platelets released soluble activity that cleaved this pro-EGF1020-1027 peptide. High throughput screening identified chymostatins, bacterial peptides with a central cyclic arginyl structure, as inhibitors of this activity. In contrast, the matrix metalloproteinase/TACE (tumor necrosis factor-α-converting enzyme) inhibitor GM6001 was ineffective. Stimulated platelets released the soluble protease ADAMDEC1, recombinant ADAMDEC1 hydrolyzed pro-EGF1020-1027, and this activity was inhibited by chymostatin and not GM6001. Biotinylating platelet surface proteins showed ADAMDEC1 hydrolyzed surface pro-EGF to HMW-EGF that stimulated HeLa EGF receptor (EGFR) reporter cells and EGFR-dependent tumor cell migration. This proteolysis was inhibited by chymostatin and not GM6001. Metabolizing pro-EGF Arg<sup>1023</sup> to citrulline with recombinant polypeptide arginine deiminase 4 (PAD4) abolished ADAMDEC1-catalyzed pro-EGF1020-1027 peptidolysis, while pretreating intact platelets with PAD4 suppressed ADAMDEC1-, thrombin-, or collagen-induced release of HMW-EGF. We conclude that activated platelets release ADAMDEC1, which hydrolyzes pro-EGF to soluble HMW-EGF, that HMW-EGF is active, that proteolytic cleavage of pro-EGF first occurs at the C-terminal arginyl residue of the EGF domain, and that proteolysis is the regulated and rate-limiting step in generating soluble EGF bioactivity from activated platelets."	"Concordance between lipopolysaccharide and platelet activating factor - mediated events have suggested that the latter likely mediates all effects induced by the former. In this issue of Temperature, Steiner and Romanovsky challenge this notion, showing that while platelet activating factor is a potent pyrogenic mediator, the thermoregulatory responses to lipopolysaccharide are instead induced by prostaglandins. "	"Acute inflammation either resolves or proceeds to fibrotic repair that replaces functional tissue. Pro-fibrotic hedgehog signaling and induction of its Gli transcription factor in pericytes induces fibrosis in kidney, but molecular instructions connecting inflammation to fibrosis are opaque. We show acute kidney inflammation resulting from chronic ingestion of the common xenobiotic ethanol initiates Gli1 transcription and hedgehog synthesis in kidney pericytes, and promotes renal fibrosis. Ethanol ingestion stimulated transcription of TGF-ß, collagens I and IV, and alpha-smooth muscle actin with accumulation of these proteins. This was accompanied by deposition of extracellular fibrils. Ethanol catabolism by CYP2E1 in kidney generates local reactive oxygen species that oxidize cellular phospholipids to phospholipid products that activate the Platelet-activating Factor receptor (PTAFR) for inflammatory phospholipids. Genetically deleting this ptafr locus abolished accumulation of mRNA for TGF-ß, collagen IV, and α-smooth muscle actin. Loss of PTAFR also abolished ethanol-stimulated Sonic (Shh) and Indian hedgehog (Ihh) expression, and abolished transcription and accumulation of Gli1. Shh induced in pericytes and Ihh in tubules escaped to urine of ethanol-fed mice. Neutrophil myeloperoxidase (MPO) is required for ethanol-induced kidney inflammation, and Shh was not present in kidney or urine of mpo-/- mice. Shh also was present in urine of patients with acute kidney injury, but not in normal individuals or those with fibrotic liver cirrhosis We conclude neither endogenous PTAFR signaling nor CYP2E1-generated radicals alone are sufficient to initiate hedgehog signaling, but instead PTAFR-dependent neutrophil infiltration with myeloperoxidase activation is necessary to initiate ethanol-induced fibrosis in kidney. We also show fibrogenic mediators escape to urine, defining a new class of urinary mechanistic biomarkers of fibrogenesis for an organ not commonly biopsied. "	"Platelets express a functional ubiquitin-proteasome system. Mass spectrometry shows that platelets contain several deubiquitinases, but whether these are functional, modulate the proteome, or affect platelet reactivity are unknown. Platelet lysates contained ubiquitin-protein deubiquitinase activity hydrolyzing both Lys48 and Lys63 polyubiquitin conjugates that was suppressed by the chemically unrelated deubiquitinase inhibitors PYR41 and PR619. These inhibitors acutely and markedly increased monoubiquitination and polyubiquitination of the proteome of resting platelets. PYR41 (intravenous, 15 minutes) significantly impaired occlusive thrombosis in FeCl3-damaged carotid arteries, and deubiquitinase inhibition reduced platelet adhesion and retention during high shear flow of whole blood through microfluidic chambers coated with collagen. Total internal reflection microscopy showed that adhesion and spreading in the absence of flow were strongly curtailed by these inhibitors with failure of stable process extension and reduced the retraction of formed clots. Deubiquitinase inhibition also sharply reduced homotypic platelet aggregation in response to not only the incomplete agonists ADP and collagen acting through glycoprotein VI but also to the complete agonist thrombin. Suppressed aggregation was accompanied by curtailed procaspase activating compound-1 binding to activated IIb/IIIa and inhibition of P-selectin translocation to the platelet surface. Deubiquitinase inhibition abolished the agonist-induced spike in intracellular calcium, suppressed Akt phosphorylation, and reduced agonist-stimulated phosphatase and tensin homolog phosphatase phosphorylation. Platelets express the proteasome-associated deubiquitinases USP14 and UCHL5, and selective inhibition of these enzymes by b-AP15 reproduced the inhibitory effect of the general deubiquitinase inhibitors on ex vivo platelet function. Remodeling of the ubiquitinated platelet proteome by deubiquitinases promotes agonist-stimulated intracellular signal transduction and platelet responsiveness."	"&quot;Let's Move!&quot; is a comprehensive initiative, launched by the First Lady, Michelle Obama, dedicates to solving problems of obesity, which is growing in child. The life behaviors do affect obesity; however, the mechanistic insight in molecular level is still not clear. In this study, by continually monitoring mouse body weight under chow and high fat western diets as well as metabolic, physical activity and food intake behaviors assessed in a CLAMS Comprehensive Lab Animal Monitoring System, we demonstrated that the platelet-activating factor receptor (PTAFR) contributes to modification of life behaviors. PTAFR does not affect metabolism of ingested dietary fat and carbohydrate in young animals; however, Ptafr ablation dramatically increased weight gain without affecting adipose tissue accumulation. Ptafr<sup>-/-</sup> mice possess new habits that increased food intake and decreased movement. Our studies suggest that regulation of PTAFR activity may be a novel strategy to control obesity in children or young adults."	"Cytochrome P450 2E1 (CYP2E1) induction and oxidative metabolism of ethanol in hepatocytes inflame and damage liver. Chronic ethanol ingestion also induces kidney dysfunction, which is associated with mortality from alcoholic hepatitis. Whether the kidney is directly affected by ethanol or is secondary to liver damage is not established. We found that CYP2E1 was induced in kidney tubules of mice chronically ingesting a modified Lieber-deCarli liquid ethanol diet. Phospholipids of kidney tubules were oxidized and fragmented in ethanol-fed mice with accumulation of azelaoyl phosphatidylcholine (Az-PC), a nonbiosynthetic product formed only by oxidative truncation of polyunsaturated phosphatidylcholine. Az-PC stimulates the inflammatory PAF receptor (PTAFR) abundantly expressed by neutrophils and kidney tubules, and inflammatory cells and myeloperoxidase-containing neutrophils accumulated in the kidneys of ethanol-fed mice after significant hysteresis. Decreased kidney filtration and induction of the acute kidney injury biomarker KIM-1 in tubules temporally correlated with leukocyte infiltration. Genetic ablation of PTAFR reduced accumulation of PTAFR ligands and reduced leukocyte infiltration into kidneys. Loss of this receptor in PTAFR(-/-) mice also suppressed oxidative damage and kidney dysfunction without affecting CYP2E1 induction. Neutrophilic inflammation was responsible for ethanol-induced kidney damage, because loss of neutrophil myeloperoxidase in MPO(-/-) mice was similarly protective. We conclude that ethanol catabolism in renal tubules results in a self-perpetuating cycle of CYP2E1 induction, local PTAFR ligand formation, and neutrophil infiltration and activation that leads to myeloperoxidase-dependent oxidation and damage to kidney function. Hepatocytes do not express PTAFR, so this oxidative cycle is a local response to ethanol catabolism in the kidney. "	"Activated platelets shed microparticles from plasma membranes, but also release smaller exosomes from internal compartments. While microparticles participate in athero-thrombosis, little is known of exosomes in this process. Ex vivo biochemical experiments with human platelets and exosomes, and FeCl3 -induced murine carotid artery thrombosis. Both microparticles and exosomes were abundant in human plasma. Platelet-derived exosomes suppressed ex vivo platelet aggregation and reduced adhesion to collagen-coated microfluidic channels at high shear. Injected exosomes inhibited occlusive thrombosis in FeCl3 -damaged murine carotid arteries. Control platelets infused into irradiated, thrombocytopenic mice reconstituted thrombosis in damaged carotid arteries, but failed to do so after prior ex vivo incubation with exosomes.CD36 promotes platelet activation, and exosomes dramatically reduced platelet CD36.CD36 is also expressed by macrophages, where it binds and internalizes oxidized LDL and microparticles, supplying lipid to promote foam cell formation. Platelet exosomes inhibited oxidized-LDL binding and cholesterol loading into macrophages. Exosomes were not competitive CD36 ligands, but instead sharply reduced total macrophage CD36 content. Exosomal proteins, in contrast to microparticle or cellular proteins, were highly adducted by ubiquitin. Exosomes enhanced ubiquitination of cellular proteins, including CD36, and blockade of proteosome proteolysis with MG-132 rescued CD36 expression. Recombinant unanchored K48 poly-ubiquitin behaved similarly to exosomes, inhibiting platelet function, macrophage CD36 expression and macrophage particle uptake. Platelet-derived exosomes inhibit athero-thrombotic processes by reducing CD36-dependent lipid loading of macrophages and by suppressing platelet thrombosis. Exosomes increase protein ubiquitination and enhance proteasome degradation of CD36."	"Chronic ethanol ingestion mildly damages liver through oxidative stress and lipid oxidation, which is ameliorated by dietary supplementation with the anti-inflammatory β-amino acid taurine. Kidney, like liver, expresses cytochrome P450 2E1 that catabolizes ethanol with free radical formation, and so also may be damaged by ethanol catabolism. Sudden loss of kidney function, and not liver disease itself, foreshadows mortality in patients with alcoholic hepatitis [J. Altamirano, Clin. Gastroenterol. Hepatol. 2012, 10:65]. We found that ethanol ingestion in the Lieber-deCarli rat model increased kidney lipid oxidation, 4-hydroxynonenal protein adduction, and oxidatively truncated phospholipids that attract and activate leukocytes. Chronic ethanol ingestion increased myeloperoxidase-expressing cells in kidney and induced an inflammatory cell infiltrate. Apoptotic terminal deoxynucleotidyl transferase nick-end labeling-positive cells and active caspase-3 increased in kidney after ethanol ingestion, with reduced filtration with increased circulating blood urea nitrogen (BUN) and creatinine. These events were accompanied by release of albumin, myeloperoxidase, and the acute kidney injury biomarkers kidney injury molecule-1 (KIM-1), neutrophil gelatinase-associated lipocalin, and cystatin c into urine. Taurine sequesters HOCl from myeloperoxidase of activated leukocytes, and taurine supplementation reduced renal lipid oxidation, reduced leukocyte infiltration, and reduced the increase in myeloperoxidase-positive cells during ethanol feeding. Taurine supplementation also normalized circulating BUN and creatinine levels and suppressed enhanced myeloperoxidase, albumin, KIM-1, and cystatin c in urine. Thus, chronic ethanol ingestion oxidatively damages kidney lipids and proteins, damages renal function, and induces acute kidney injury through an inflammatory cell infiltrate. The anti-inflammatory nutraceutical taurine effectively interrupts this ethanol-induced inflammatory cycle in kidney. "	"Proteasome inhibitors used in the treatment of hematologic cancers also reduce thrombosis. Whether the proteasome participates in platelet activation or function is unclear because little is known of the proteasome in these terminally differentiated cells. Platelets displayed all 3 primary proteasome protease activities, which MG132 and bortezomib (Velcade) inhibited. Proteasome substrates are marked by ubiquitin, and platelets contained a functional ubiquitination system that modified the proteome by monoubiquitination and polyubiquitination. Systemic MG132 strongly suppressed the formation of occlusive, platelet-rich thrombi in FeCl3-damaged carotid arteries. Transfusion of platelets treated ex vivo with MG132 and washed before transfusion into thrombocytopenic mice also reduced carotid artery thrombosis. Proteasome inhibition reduced platelet aggregation by low thrombin concentrations and ristocetin-stimulated agglutination through the glycoprotein Ib-IX-V complex. This receptor was not appropriately internalized after proteasome inhibition in stimulated platelets, and spreading and clot retraction after MG132 exposure also were decreased. The effects of proteasome inhibitors were not confined to a single receptor as MG132 suppressed thrombin-stimulated, ADP-stimulated, and lipopolysaccharide-stimulated microparticle shedding. Proteasome inhibition increased ubiquitin decoration of cytoplasmic proteins, including the cytoskeletal proteins Filamin A and Talin-1. Mass spectrometry revealed a single MG132-sensitive tryptic cleavage after R1745 in an extended Filamin A loop, which would separate its actin-binding domain from its carboxy terminal glycoprotein Ibα-binding domain. Platelets contain a ubiquitin/proteasome system that marks cytoskeletal proteins for proteolytic modification to promote productive platelet-platelet and platelet-wall interactions."
+"Messer, Jeannette"	"Inflammation and Immunity"	28145439	27837217	23794574	18593857	15822531	29051186	27207671	25645662	25642769	30894054	"Since microbes were first described in the mid-1600s, we have come to appreciate that they live all around and within us with both beneficial and detrimental effects on nearly every aspect of our lives. The human gastrointestinal tract is inhabited by a dynamic community of trillions of bacteria that constantly interact with each other and their human host. The acquisition of these bacteria is not stochastic but determined by circumstance (environment), host rules (genetics, immune state, mucus, etc), and dynamic self-selection among microbes to form stable, resilient communities that are in balance with the host. In this review, we will discuss how these factors lead to formation of the gut bacterial community and influence its interactions with the host. We will also address how gut bacteria contribute to disease and how they could potentially be targeted to prevent and treat a variety of human ailments."	"Cell death is a major determinant of inflammatory disease severity. Whether cells live or die during inflammation largely depends on the relative success of the pro-survival process of autophagy versus the pro-death process of apoptosis. These processes interact and influence each other during inflammation and there is a checkpoint at which cells irrevocably commit to either one pathway or another. This review will discuss the concept of the autophagy/apoptosis checkpoint and its importance during inflammation, the mechanisms of inflammation leading up to the checkpoint, and how the checkpoint is regulated. Understanding these concepts is important since manipulation of the autophagy/apoptosis checkpoint represents a novel opportunity for treatment of inflammatory diseases caused by too much or too little cell death."	"A common genetic coding variant in the core autophagy gene ATG16L1 is associated with increased susceptibility to Crohn's disease (CD). The variant encodes an amino acid change in ATG16L1 such that the threonine at position 300 is substituted with an alanine (ATG16L1 T300A). How this variant contributes to increased risk of CD is not known, but studies with transfected cell lines and gene-targeted mice have demonstrated that ATG16L1 is required for autophagy, control of interleukin-1-β and autophagic clearance of intracellular microbes. In addition, studies with human cells expressing ATG16L1 T300A indicate that this variant reduces the autophagic clearance of intracellular microbes. We demonstrate, using somatically gene-targeted human cells that the ATG16L1 T300A variant confers protection from cellular invasion by Salmonella. In addition, we show that ATG16L1-deficient cells are resistant to bacterial invasion. These results suggest that cellular expression of ATG16L1 facilitates bacterial invasion and that the CD-associated ATG16L1 T300A variant may confer protection from bacterial infection."	"A 3-year-old, spayed female, mixed-breed dog was evaluated for acute, progressive neurological disease. Analysis of cerebrospinal fluid (CSF) showed neutrophilic pleocytosis. The dog later developed liver disease, thrombocytopenia, and anemia that were presumably secondary to ceftriaxone administration. Bacterial cultures of blood, urine, and CSF were negative. However, a universal bacterial polymerase chain reaction assay of CSF identified deoxyribonucleic acid from Streptococcus spp. The dog recovered with therapy for streptococcal encephalitis."	"Cystoscopy is a powerful tool for characterization of lower urinary tract disease in dogs and cats. Current applications of cystoscopy include diagnostic and interventional techniques. This article reviews cystoscopy equipment, procedures, and common applications of cystoscopy. A review of normal anatomy and common lower urinary tract lesions identifiable with cystoscopy is also presented."	"The inducible heat shock protein 70 (Hsp70) is both cytoprotective and immunomodulatory, potentially accounting for its critical role in maintaining gastrointestinal homeostasis. When levels are reduced in conditions like inflammatory bowel diseases (IBD), loss of function contributes to the severity and chronicity of these diseases, although through which cell types and mechanisms remains unclear. Here, the role of Hsp70-mediated intestinal epithelial protection and immune regulation in experimental colitis was examined by using a villin promoter-driven Hsp70 transgene in the 2,4,6-trinitrobenzene sulfonic acid (TNBS) and dextran sodium sulfate (DSS) models and in IL-10/Hsp70 double knockout (IL10<sup>-/-</sup>/Hsp70<sup>-/-</sup>) mice. In addition, Hsp70-mediated IL-10 production and immune protection were investigated using a CD45RB<sup>high</sup> transfer model and measuring colonic and immune cell cytokine expression during colitis. We found that the epithelial-specific expression of Hsp70 transgene attenuated DSS-induced colitis in Hsp70<sup>-/-</sup> mice by protecting tight junctions (TJ) and their interaction with the TJ-associated protein ZO-1. In the TNBS colitis and CD45RB<sup>high</sup> model, Hsp70 carried out its intracellular anti-inflammatory function by maintaining IL-10 production. Impaired ERK phosphorylation, but not p38 or JNK phosphorylation pathways, was associated with decreased IL-10 production in Hsp70-deficient cells. Together, these actions can be leveraged in the context of cellular specificity to develop complementary strategies that can lead to reduction in mucosal injury and immune activation in colonic colitis development. NEW &amp; NOTEWORTHY Using four different experimental colitis models, we filled an important gap in knowledge by defining essential roles of intracellular heat shock protein 70 in different cell types in maintaining intestinal integrity and immune regulation. These findings are relevant to human inflammatory bowel diseases and represent potential avenues for developing therapeutic strategies, not only to counter the destructive processes of inflammation but also to promote tissue healing and prevent complications frequently associated with chronic intestinal inflammation."	"Colorectal cancer (CRC) develops from colonic epithelial cells that lose expression of key tumor suppressor genes and/or gain expression of proproliferative and antiapoptotic genes like heat shock protein 70 (Hsp70). Heat shock protein 70 is overexpressed in CRC, but it is not known whether this is in response to the proteotoxic stress induced by transformation, or if it contributes to the process of transformation itself. Here, using the Apc (Min/+) mouse model of CRC, we show that Hsp70 regulates mitogenic signaling in intestinal epithelial cells through stabilization of proteins involved in the receptor tyrosine kinase (RTK) and WNT signaling pathways. Loss of Hsp70 reduced tumor size with decreased proliferation and increased tumor cell death. Hsp70 loss also led to decreased expression of ErbB2, Akt, ERK and β-catenin along with decreased β-catenin transcriptional activity as measured by c-myc and axin2 expression. Upregulation of RTK or WNT signals are frequent oncogenic events in CRC and many other cancers. Thus, in addition to the role of Hsp70 in cell-survival after transformation, Hsp70 stabilization of β-catenin, Akt, ERK and ErbB2 are predicted to contribute to transformation. This has important implications not only for understanding the pathophysiology of these cancers, but also for treatment since anti-EGFR antibodies are in clinical use for CRC and EGFR is a major ErbB2 heterodimeric partner. Targeting Hsp70, therefore, might provide an alternative or complementary strategy for achieving better outcomes for CRC and other related cancer types."	"ATG16L1 is an autophagy gene known to control host immune responses to viruses and bacteria. Recently, a non-synonymous single-nucleotide polymorphism in ATG16L1 (Thr300Ala), previously identified as a risk factor in Crohn's disease (CD), was associated with more favourable clinical outcomes in thyroid cancer. Mechanisms underlying this observation have not been proposed, nor is it clear whether an association between Thr300Ala and clinical outcomes will be observed in other cancers. We hypothesised that Thr300Ala influences clinical outcome in human colorectal cancer (CRC) and controls innate antiviral pathways in colon cancer cells. We genotyped 460 patients with CRC and assessed for an association between ATG16L1 Thr300Ala and overall survival and clinical stage. Human CRC cell lines were targeted by homologous recombination to examine the functional consequence of loss of ATG16L1, or introduction of the Thr300Ala variant. We found an association between longer overall survival, reduced metastasis and the ATG16L1 Ala/Ala genotype. Tumour sections from ATG16L1 Ala/Ala patients expressed elevated type I interferons (IFN-I)-inducible, MxA, suggesting that differences in cytokine production may influence disease progression. When introduced into human CRC cells by homologous recombination, the Thr300Ala variant did not affect bulk autophagy, but increased basal production of type I IFN. Introduction of Thr300Ala resulted in increased sensitivity to the dsRNA mimic poly(I:C) through a mitochondrial antiviral signalling (MAVS)-dependent pathway. The CD-risk allele, Thr300Ala, in ATG16L1 is associated with improved overall survival in human CRC, generating a rationale to genotype ATG16L1 Thr300Ala in patients with CRC. We found that Thr300A alters production of MAVS-dependent type I IFN in CRC cells, providing a mechanism that may influence clinical outcomes."	"The intracellular protein HMGB1 is released from cells and acts as a damage-associated molecular pattern molecule during many diseases, including inflammatory bowel disease (IBD); however, the intracellular function of HMGB1 during inflammation is poorly understood. Here, we demonstrated that cytosolic HMGB1 regulates apoptosis by protecting the autophagy proteins beclin 1 and ATG5 from calpain-mediated cleavage during inflammation. Colitis in mice with an intestinal epithelial cell-specific Hmgb1 deletion and patients with IBD were both characterized by increased calpain activation, beclin 1 and ATG5 cleavage, and intestinal epithelial cell (IEC) death compared with controls. In vitro cleavage assays and studies of enteroids verified that HMGB1 protects beclin 1 and ATG5 from calpain-mediated cleavage events that generate proapoptotic protein fragments. Together, our results indicate that HMGB1 is essential for mitigating the extent and severity of inflammation-associated cellular injury by controlling the switch between the proautophagic and proapoptotic functions of beclin 1 and ATG5 during inflammation. Moreover, these studies demonstrate that HMGB1 is pivotal for reducing tissue injury in IBD and other complex inflammatory disorders. "	"Extracellular HMGB1 (high mobility group box 1) is considered as a damage-associated molecular pattern protein. However, little is known about its intracellular role. We studied the mechanism whereby intestinal epithelial HMGB1 contributes to host defense, using cell culture, colonoids, conditional intestinal epithelial HMGB1-knockout mice with Salmonella-colitis, il10<sup>-/-</sup> mice, and human samples. We report that intestinal HMGB1 is an important contributor to host protection from inflammation and infection. We identified a physical interaction between HMGB1 and STAT3. Lacking intestinal epithelial HMGB1 led to redistribution of STAT3 and activation of STAT3 post bacterial infection. Indeed, Salmonella-infected HMGB1-deficient cells exhibited less macroautophagy/autophagy due to decreased expression of autophagy proteins and transcriptional repression by activated STAT3. Then, increased p-STAT3 and extranuclear STAT3 reduced autophagic responses and increased inflammation. STAT3 inhibition restored autophagic responses and reduced bacterial invasion in vitro and in vivo. Moreover, low level of HMGB1 was correlated with reduced nuclear STAT3 and enhanced p-STAT3 in inflamed intestine of il10<sup>-/-</sup> mice and inflammatory bowel disease (IBD) patients. We revealed that colonic epithelial HMGB1 was directly involved in the suppression of STAT3 activation and the protection of intestine from bacterial infection and injury. Abbreviations: ATG16L1: autophagy-related 16-like 1 (S. cerevisiae); DAMP: damage-associated molecular pattern; HBSS: Hanks balanced salt solution; HMGB1: high mobility group box 1; IBD: inflammatory bowel disease; IL1B/Il-1β: interleukin 1 beta; IL10: interleukin 10; IL17/IL-17: interleukin 17; MEFs: mouse embryonic fibroblasts; STAT3: signal transducer and activator of transcription 3; TLR: toll-like receptor; TNF/TNF-α: tumor necrosis factor."
+"Mian, Omar"	"Translational Hematology and Oncology Research"	27563532	26447830	24740136	18282518	21693597	15728378	12732451	30202792	30327311	31059665	"The complex planning and quality assurance required for spine SBRT are a barrier to implementation in time-sensitive or limited resource clinical situations. We developed and validated an automated inverse planning algorithm designed to streamline planning and allow rapid delivery of conformal single fraction spine SBRT using widely available technology. The Rapid Spine (RaSp) automated script successfully generated single fraction SBRT plans for fourteen complex spinal lesions previously treated at a single high-volume institution. Automated RaSp plans were limited to 5 beams with a total of 15 segments (allowing calculation-based verification) and optimized based on RTOG 0631 objectives. Standard single fraction (16 Gy) stereotactic IMRT plans were generated for the same set of complex spinal lesions and used for comparison. A conservative 2 mm posterior isocenter shift was used to simulate minor set-up error. Automated plans were generated in under 5 min from target definition and had a mean dose to the PTV of 1663 cGy (SD 131.5), a dose to 90 % of PTV (D90) of 1358 cGy (SD 111.0), and a maximum point dose (Dmax) to the PTV of 2055 cGy (SD 195.2) on average. IMRT plans took longer to generate but yielded more favorable dose escalation with a mean dose to the PTV of 1891 cGy (SD 117.6), D90 of 1731 cGy (SD 126.5), and Dmax of 2218 cGy (SD 195.7). A 2 mm posterior shift resulted in a 20 % (SD 10.5 %) increase in cord dose for IMRT plans and a 10 % (SD 5.3 %) increase for RaSp plans. The 2 mm perturbation caused 3 cord dose violations for the IMRT plans and 1 violation for corresponding RaSp plans. The Rapid Spine plan method yields timely and dosimetrically reasonable SBRT plans which meet RTOG 0631 objectives and are suitable for rapid yet robust pretreatment quality assurance followed by expedited treatment delivery. RaSp plans reduce the tradeoff between rapid treatment and optimal dosimetry in urgent cases and limited resource situations."	"Epigenetic silencing of glutathione S-transferase π (GSTP1) is a hallmark of transformation from normal prostatic epithelium to adenocarcinoma of the prostate. The functional significance of this loss is incompletely understood. The present study explores the effects of restored GSTP1 expression on glutathione levels, accumulation of oxidative DNA damage, and prostate cancer cell survival following oxidative stress induced by protracted, low dose rate ionizing radiation (LDR). GSTP1 protein expression was stably restored in LNCaP prostate cancer cells. The effect of GSTP1 restoration on protracted LDR-induced oxidative DNA damage was measured by GC-MS quantitation of modified bases. Reduced and oxidized glutathione levels were measured in control and GSTP1 expressing populations. Clonogenic survival studies of GSTP1- transfected LNCaP cells after exposure to protracted LDR were performed. Global gene expression profiling and pathway analysis were performed. GSTP1 expressing cells accumulated less oxidized DNA base damage and exhibited decreased survival compared to control LNCaP-Neo cells following oxidative injury induced by protracted LDR. Restoration of GSTP1 expression resulted in changes in modified glutathione levels that correlated with GSTP1 protein levels in response to protracted LDR-induced oxidative stress. Survival differences were not attributable to depletion of cellular glutathione stores. Gene expression profiling and pathway analysis following GSTP1 restoration suggests this protein plays a key role in regulating prostate cancer cell survival. The ubiquitous epigenetic silencing of GSTP1 in prostate cancer results in enhanced survival and accumulation of potentially promutagenic DNA adducts following exposure of cells to protracted oxidative injury suggesting a protective, anti-neoplastic function of GSTP1. The present work provides mechanistic backing to the tumor suppressor function of GSTP1 and its role in prostate carcinogenesis."	"Pancreatic ductal adenocarcinoma is a highly lethal cancer that is rarely curable at the time of presentation. Unfortunately, most patients are diagnosed with either metastatic or locally advanced disease, which is not amenable to surgery owing to the high likelihood of incomplete resection. Given the generally poor prognosis with propensity for metastatic failure greater than that for local failure, treatment options are variable, and include chemotherapy, radiotherapy, targeted therapies, and combinations thereof. This review summarizes the current evidence for definitive management of locally advanced pancreatic adenocarcinoma, as well as the role of palliative therapies. Future directions, including the development of predictive biomarkers and novel systemic agents, are also discussed. "	"The sequence complexity of the known vertebrate genomes alone is insufficient to account for the diversity between individuals of a species. Although our knowledge of vertebrate biology has evolved substantially with the growing compilation of sequenced genomes, understanding the temporal and spatial regulation of genes remains fundamental to fully exploiting this information. The importance of epigenetic factors in gene regulation was first hypothesized decades ago when biologists posited that methylation of DNA could heritably alter gene expression [Holliday and Pugh, 1975. Science 187(4173), 226-232; Riggs, 1975. Cytogenet. and Cell Genet.14(1), 9-25; Scarano et al., 1967. Proc. Natl. Acad. Sci. USA 57(5), 1394-1400)]. It was subsequently shown that vertebrate DNA methylation, almost exclusively at the 5' position of cytosine in the dinucleotide CpG, played a role in a number of processes including embryonic development, genetic imprinting, cell differentiation, and tumorigenesis. At the time of this writing, a large and growing list of genes is known to exhibit DNA methylation-dependent regulation, and we understand in some detail the mechanisms employed by cells in using methylation as a regulatory modality. In this context, we revisit one of the original systems in which the role of DNA methylation in vertebrate gene regulation during development was described and studied: erythroid cells. We briefly review the recent advances in our understanding of DNA methylation and, in particular, its regulatory role in red blood cells during differentiation and development. We also address DNA methylation as a component of erythroid chromatin architecture, and the interdependence of CpG methylation and histone modification."	"Methyl cytosine binding domain protein 2 (MBD2) has been shown to bind to and mediate repression of methylated tumor suppressor genes in cancer cells, where repatterning of CpG methylation and associated gene silencing is common. We have investigated the role of MBD2 in breast cancer cell growth and tumor suppressor gene expression. We show that stable short hairpin RNA (shRNA)-mediated knockdown of MBD2 leads to growth suppression of cultured human mammary epithelial cancer lines, SK-BR-3, MDA-MB-231, and MDA-MB-435. The peak antiproliferative occurs only after sustained, stable MBD2 knockdown. Once established, the growth inhibition persists over time and leads to a markedly decreased propensity for aggressive breast cancer cell lines to form in vivo xenograft tumors in Bagg Albino (BALB)/C nu/nu mice. The growth effects of MBD2 knockdown are accompanied by derepression of tumor suppressor genes, including DAPK1 and KLK10. Chromatin immunoprecipitation assays and bisulfite sequencing show MBD2 binding directly to the hyper methylated and CpG-rich promoters of both DAPK1 and KLK10. Remarkably, the promoter CpG island-associated methylation of these genes remained stable despite robust transcriptional activation in MBD2 knockdown cells. Expression of a shRNA-resistant MBD2 protein resulted in restoration of growth and resilencing of the MBD2-dependent tumor suppressor genes. Our data suggest that uncoupling CpG methylation from repressive chromatin remodeling and histone modifications by removing MBD2 is sufficient to initiate and maintain tumor suppressor gene transcription and suppress neoplastic cell growth. These results show a role for MBD2 in cancer progression and provide support for the prospect of targeting MBD2 therapeutically in aggressive breast cancers."	"Circulating monocytes mediate inflammation in atherosclerosis and may serve as easily accessible reporters of disease. To search for markers of atherosclerosis, we compared the in vivo transcriptomes of monocytes purified from patients undergoing carotid endarterectomy and normal subjects by using the serial analysis of gene expression technique. We selected a subset of differentially expressed monocyte-specific genes and confirmed their expression levels. The Finkel-Biskis-Jinkins osteosarcoma (FOS) gene was significantly increased in patients, and the highest levels of FOS associated with patients who had previously undergone coronary revascularization. The correlation between coronary revascularization and FOS was higher than that compared with the cardiac risk marker high sensitivity C-reactive protein. In vitro inhibition of FOS using small interfering RNA and 3-hydroxy-3-methyl-glutaryl CoA reductase inhibitor simvastatin (statin) affected monocyte activation and suggested an important role in pathogenesis. Given the prominent role of FOS in inflammation and calcification, its association with atherosclerosis severity has clear pathophysiologic bases as well as clinical implications as a marker. Our results suggest that analysis of gene expression in circulating cells may provide biological and clinical insights into human atherosclerosis, and that this type of approach may be applicable for studying other types of diseases."	"The recently sequenced mammalian genomes represent unprecedented resources for advancing our understanding of human diseases. Characterizing gene expression is an important step in translating genomic sequences into clinically useful information. Currently, gene expression studies are revolutionizing the approaches taken to address both basic science and clinical questions. Two major methods have emerged for the global examination of the transcriptome: microarrays and Serial Analysis of Gene Expression (SAGE). The SAGE technique comprehensively maps gene transcription by using the genomic database, yet it remains relatively underutilized for studying cardiovascular biology. This review describes current cardiovascular studies using the SAGE technique and outlines some potential strategies for employing this powerful tool to further our understanding of the cardiovascular system in health and in disease."	"There has been little progress in the use of patient-derived xenografts (PDX) to guide individual therapeutic strategies. In part, this can be attributed to the operational challenges of effecting successful engraftment and testing multiple candidate drugs in a clinically workable timeframe. It also remains unclear whether the ancestral tumor will evolve along similar evolutionary trajectories in its human and rodent hosts in response to similar selective pressures (i.e., drugs). Herein, we combine a metastatic clear cell adenocarcinoma PDX with a timely 3 mouse x 1 drug experimental design, followed by a co-clinical trial to longitudinally guide a patient's care. Using this approach, we accurately predict response to first- and second-line therapies in so far as tumor response in mice correlated with the patient's clinical response to first-line therapy (gemcitabine/nivolumab), development of resistance and response to second-line therapy (paclitaxel/neratinib) before these events were observed in the patient. Treatment resistance to first-line therapy in the PDX is coincident with biologically relevant changes in gene and gene set expression, including upregulation of phase I/II drug metabolism (CYP2C18, UGT2A, and ATP2A1) and DNA interstrand cross-link repair (i.e., XPA, FANCE, FANCG, and FANCL) genes. A total of 5.3% of our engrafted PDX collection is established within 2 weeks of implantation, suggesting our experimental designs can be broadened to other cancers. These findings could have significant implications for PDX-based avatars of aggressive human cancers."	"Transcriptomic profiling can shed light on the biology of small-cell bladder cancer (SCBC), nominating biomarkers, and novel therapeutic targets. Sixty-three patients with SCBC had small-cell histology confirmed and quantified by a genitourinary pathologist. Gene expression profiling was performed for 39 primary tumor samples, 1 metastatic sample, and 6 adjacent normal urothelium samples (46 total) from the same cohort. Protein levels of differentially expressed therapeutic targets, DLL3 and PDL1, and also CD56 and ASCL1, were confirmed by IHC. A SCBC PDX model was utilized to assess in vivo efficacy of DLL3-targeting antibody-drug conjugate (ADC). Unsupervised hierarchical clustering of 46 samples produced 4 clusters that correlated with clinical phenotypes. Patients whose tumors had the most &quot;normal-like&quot; pattern of gene expression had longer overall survival (OS) compared with the other 3 clusters while patients with the most &quot;metastasis-like&quot; pattern had the shortest OS (P = 0.047). Expression of DLL3, PDL1, ASCL1, and CD56 was confirmed by IHC in 68%, 30%, 52%, and 81% of tissue samples, respectively. In a multivariate analysis, DLL3 protein expression on &gt;10% and CD56 expression on &gt;30% of tumor cells were both prognostic of shorter OS (P = 0.03 each). A DLL3-targeting ADC showed durable antitumor efficacy in a SCBC PDX model. Gene expression patterns in SCBC are associated with distinct clinical phenotypes ranging from more indolent to aggressive disease. Overexpression of DLL3 mRNA and protein is common in SCBC and correlates with shorter OS. A DLL3-targeted ADC demonstrated in vivo efficacy superior to chemotherapy in a PDX model of SCBC."	"We assessed the impact of cribriform pattern and/or intraductal carcinoma on Gleason 7 prostate cancer treated with external beam radiotherapy. We evaluated men with Gleason 7 (Grade Groups 2 and 3) prostate cancer treated with dose escalated external beam radiotherapy with or without androgen deprivation. We reviewed biopsies for the presence of cribriform pattern and/or intraductal carcinoma. Study end points included biochemical recurrence-free, distant metastasis-free and disease specific survival. In the 237 patients median followup was 117 months (range 3 to 236). According to National Comprehensive Cancer Network® risk groups 24% of patients were at favorable intermediate risk, 53% were at unfavorable intermediate risk and 23% were at high risk. The rate of cribriform pattern without intraductal carcinoma, cribriform pattern with intraductal carcinoma, intraductal carcinoma without cribriform pattern and none of these morphologies was 36%, 13%, 0% and 51%, respectively. On multivariable analysis cribriform pattern with intraductal carcinoma (HR 4.22, 95% CI 2.08-8.53, p &lt;0.0001), prostate specific antigen 10 to 20 ng/ml (HR 1.97, 95% CI 1.03-3.79, p=0.04) and prostate specific antigen greater than 20 ng/ml (HR 2.26, 95% CI 1.21-4.23, p=0.01) were associated with worse biochemical recurrence-free survival. On multivariable analysis only cribriform pattern with intraductal carcinoma was associated with inferior distant metastasis-free survival (HR 4.18, 95% CI 1.43-12.28, p=0.01) and disease specific survival (HR 14.26, 95% CI 2.75-74.04, p=0.0016). Factors associated with cribriform pattern with or without intraductal carcinoma included Grade Group 3, high risk group and 50% or more positive biopsy cores. When stratified by neither morphology present, cribriform pattern without intraductal carcinoma and cribriform pattern with intraductal carcinoma the differences in biochemical recurrence-free, distant metastasis-free and disease specific survival were statistically significant (p=0.00042, p=0.017 and p &lt;0.0001, respectively). Cribriform pattern with intraductal carcinoma was associated with adverse outcomes in men with Gleason 7 prostate cancer treated with external beam radiotherapy while cribriform pattern without intraductal carcinoma was not so associated. Future studies may benefit from dichotomizing these 2 histological entities."
+"Midura, Ronald"	"Biomedical Engineering"	29310784	29119853	27815598	25046535	24764277	21958842	19967451	19450716	18765929	17936099	"Hyaluronan (HA) exhibits numerous important roles in physiology and pathologies, and these facts necessitate an ability to accurately and reproducibly measure its quantities in tissues and cell cultures. Our group previously reported a rigorous and analytical procedure to quantify HA (and chondroitin sulfate, CS) using a reductive amination chemistry and separation of the fluorophore-conjugated, unsaturated disaccharides unique to HA and CS on high concentration acrylamide gels. This procedure is known as fluorophore-assisted carbohydrate electrophoresis (FACE) and has been adapted for the detection and quantification of all glycosaminoglycan types. While this previous FACE procedure is relatively straightforward to implement by carbohydrate research investigators, many nonglycoscience laboratories now studying HA biology might have difficulties establishing this prior FACE procedure as a routine assay for HA. To address this need, we have greatly simplified our prior FACE procedure for accurate and reproducible assessment of HA in tissues and cell cultures. This chapter describes in detail this simplified FACE procedure and, because it uses an enzyme that degrades both HA and CS, investigators will also gain additional insight into the quantities of CS in the same samples dedicated for HA analysis."	"Background and purpose - A better understanding of the patterns and variation in initiation and progression of osteoarthritis (OA) in the knee may influence the design of therapies to prevent or slow disease progression. By studying cartilage from the human lateral femoral condyle (LFC), we aimed to: (1) assess specimen distribution into early, mild, moderate, and severe OA as per the established histopathological scoring systems (HHGS and OARSI); and (2) evaluate whether these 2 scoring systems provide sufficient tools for characterizing all the features and variation in patterns of OA. Patients and methods - 2 LFC osteochondral specimens (4 x 4 x 8 mm) were collected from 50 patients with idiopathic OA varus knee and radiographically preserved lateral compartment joint space undergoing total knee arthroplasty. These were fixed, sectioned, and stained with HE and Safranin O-Fast Green (SafO). Results - The histopathological OA severity distribution of the 100 specimens was: 6 early, 62 mild, 30 moderate, and 2 severe. Overall, 45/100 specimens were successfully scored by both HHGS and OARSI: 12 displayed low OA score and 33 displayed cartilage surface changes associated with other histopathological features. However, 55/100 samples exhibited low surface structure scores, but were deemed to be inadequately scored by HHGS and OARSI because of anomalous features in the deeper zones not accounted for by these systems: 27 exhibited both SafO and tidemark abnormal features, 16 exhibited only SafO abnormal features, and 12 exhibited tidemark abnormal features. Interpretation - LFC specimens were scored as mild to moderate OA by HHGS and OARSI. Yet, several specimens exhibited deep zone anomalies while maintaining good surface structure, inconsistent with mild OA. Overall, a better classification of these anomalous histopathological features could help better understand idiopathic OA and potentially recognize different subgroups of disease."	"To determine the concentrations exhibiting toxicity of a cartilage-targeted magnetic resonance imaging contrast agent compared with gadopentetate dimeglumine (Gd-DT-PA) in chondrocyte cultures. A long-term Swarm rat chondrosarcoma chondrocyte-like cell line was exposed for 48 h to 1.0-20 mM concentrations of diaminobutyl-linked nitroxide (DAB4-DLN) citrate, 1.0-20 mM Gd-DTPA, 1.0 μM staurosporine (positive control), or left untreated. Cell appearance, 3-(4,5-dimethylthiazol-2-yl)-2,5-diphenyltetrazolium bromide (MTT) assays of metabolic activity, quantitative PicoGreen assays of DNA content, and calcein-AM viability assays were compared. At 1.0-7.5 mM, minimal decrease in cell proliferation was found for both agents. At all doses of both agents, cell culture appearances were similar after 24 h of treatment. At the higher doses, differences in cell culture appearance were found after 48 h of treatment, with dose-dependent declines in chondrocyte populations for both agents. Concentration-dependent declines in DNA content and calcein fluorescence were found after 48 h of treatment, but beginning at a lower dose of DAB4-DLN citrate than Gd-DTPA. Dose-dependent decreases in MTT staining (cell metabolism) were apparent for both agents, but larger effects were evident at a lower dose for DAB-DLN citrate. Poor MTT staining of cells exposed for 48 h to 20 mM DAB4-DLN citrate probably indicates dead or dying cells. The minimal effect of the long-term exposure of model chondrocyte cell cultures to DAB4-DLN citrate and Gd-DTPA concentrations up to 7.5 mM (3x typical arthrographic administration) is supporting evidence that these doses are acceptable for MR arthrography. The findings are reassuring given that the experimental exposure to the contrast agents at sustained concentrations was much longer than when used clinically."	"Contrast-enhanced magnetic resonance (MR) imaging methods have been proposed for non-invasive evaluation of osteoarthritis (OA). We measured cell toxicities of cartilage-targeted low-generation dendrimer-linked nitroxide MR contrast agents and gadopentetate dimeglumine (Gd-DTPA) on cultured chondrocytes. A long-term Swarm rat chondrosarcoma chondrocyte-like cell line was exposed for 48-h to different salts (citrate, maleate, tartrate) and concentrations of generation one or two diaminobutyl-linked nitroxides (DAB4-DLN or DAB8-DLN), Gd-DTPA, or staurosporine (positive control). Impact on microscopic cell appearance, MTT spectrophotometric assays of metabolic activity, and quantitative PicoGreen assays of DNA content (cell proliferation) were measured and compared to untreated cultures. Chondrocyte cultures treated with up to 7.5 mM Gd-DTPA for 48-h had no statistical differences in DNA content or MTT reaction compared to untreated cultures. At all doses, DAB4-DLN citrate treated cultures had results similar to untreated and Gd-DTPA-treated cultures. At doses &gt;1 mM, DAB4-DLN citrate treated cultures showed statistically greater DNA and MTT reaction than maleate and tartrate DAB4-DLN salts. Cultures exposed to 5 mM or 7.5 mM DAB8-DLN citrate exhibited rounded cells, poor cell proliferation, and barely detectable MTT reaction. Treatment with 0.1 μM staurosporine caused chondrocyte death. Long-term exposure, greater than clinically expected, to either DAB4-DLN citrate or Gd-DTPA had no detectable toxicity with results equivalent to untreated cultures. DAB4-DLN citrate was more biocompatible than either the maleate or tartrate salts. Cells exposed for 48-h to 5 mM or 7.5 mM DAB8-DLN salts demonstrated significant cell toxicity. Further evaluation of DAB8-DLN with clinically appropriate exposure times is required to determine the maximum useful concentration."	"Delayed bone healing has been noted in osteoporosis patients and in the ovariectomized (OVX) rat model of estrogen-depletion osteopenia. Pulsed electromagnetic field (PEMF) devices are clinically approved as an adjunct to cervical fusion surgery in patients at high risk for non-fusion and for the treatment of fracture non-unions. These bone growth stimulating devices also accelerate the healing of fresh fracture repair in skeletally mature normal rats but have not been tested for efficacy to accelerate and/or enhance the delayed bone repair process in OVX rats. The current study tested the hypothesis that daily PEMF treatments would improve the fracture healing response in skeletally mature OVX rats. By 6 weeks of healing, PEMF treatments resulted in improved hard callus elastic modulus across fibula fractures normalizing the healing process in OVX rats with respect to this mechanical property. Radiographic evidence showed an improved hard callus bridging across fibula fractures in OVX rats treated with PEMF as compared to sham treatments. These findings provide a scientific rationale for investigating whether PEMF might improve bone-healing responses in at-risk osteoporotic patients."	"In long bone diaphyses, woven bone forms first and then transitions into a more mineralized compact bone tissue. Prior evidence suggests that the non-collagenous protein composition of woven bone may be distinct from that of more mature bone tissue, particularly with respect to a diverse group of phosphorylated, extracellular matrix proteins. To critically test this hypothesis, we developed an in situ approach to isolate newly formed bone from more mature bone within the same long bone, and combine this anatomical approach with Western blotting to make relative comparisons of 7 phosphorylated matrix proteins important for bone physiology and biomineralization. Interestingly, 75 kDa bone sialoprotein (BSP), 63 kDa osteopontin, and the 75 kDa form of bone acidic glycoprotein-75 (BAG-75) were enriched in primary bone as opposed to more mature cortical bone, while osteonectin, fetuin A, matrix extracellular phosphoglycoprotein (MEPE) and dentin matrix protein-1 (DMP-1) appeared to be equally distributed between these two bone tissue compartments. Analyses also revealed the presence of larger sized forms of osteopontin (and to a lesser degree BSP) mostly in newly formed bone, while larger forms of BAG-75 were mostly detected in more mature cortical bone. Smaller sized forms of DMP-1 and BAG-75 were detected in both newly formed and more mature bone tissue extracts, and they are likely the result of proteolytic processing in vivo. Intact DMP-1 (97 kDa) was only detected in unmineralized matrix extracts. These findings indicate that newly formed bone exhibits a non-collagenous matrix protein composition distinct from that of more mature compact bone even within the same long bone, and suggest that the temporal fate of individual non-collagenous proteins is variable in growing bone."	"In vivo the hydraulic permeability of cortical bone influences the transport of nutrients, waste products and signaling molecules, thus influencing the metabolic functions of osteocytes and osteoblasts. In the current study two hypotheses were tested: the presence of (1) lipids and (2) collagen matrix in the porous compartment of cortical bone restricts its permeability. Our approach was to measure the radial permeability of adult canine cortical bone before and after extracting lipids with acetone-methanol, and before and after digesting collagen with bacterial collagenase. Our results showed that the permeability of adult canine cortical bone was below 4.0x10(-17) m2, a value consistent with prior knowledge. After extracting lipids, permeability increased to a median value of 8.6x10(-16) m2. After further digesting with collagenase, permeability increased to a median value of 1.4x10(-14) m2. We conclude that the presence of both lipids and collagen matrix within the porous compartment of cortical bone restricts its radial permeability. These novel findings suggest that the chemical composition of the tissue matrix within the porous compartment of cortical bone influences the transport and exchange of nutrients and waste products, and possibly influences the metabolic functions of osteocytes and osteoblasts."	"Daily injection of parathyroid hormone (PTH) is a clinically approved treatment for osteoporosis. It suppresses apoptosis of bone-forming osteoblasts although its exact anti-apoptotic mechanism(s) is incompletely understood. In this study, PTH treatment of cultured osteoblasts blocked the pro-apoptotic effects of serum withdrawal and nutrient deprivation; hydrogen peroxide induced oxidative stress, and UV irradiation. We hypothesized that PTH might suppress osteoblast apoptosis by enhancing DNA repair. Evidence is provided showing that post-confluent, non-proliferating osteoblasts treated with PTH exhibited a protein kinase A-mediated activation of two proteins that regulate DNA repair processes (proliferating cell nuclear antigen and forkhead box transcription factor 3a) as well as a suppression of the pro-apoptotic growth arrest and DNA damage protein 153. Additional proof of a connection between DNA damage and osteoblast apoptosis came from an unexpected finding whereby a majority of fixed PTH-treated osteoblasts scored weakly positive for Terminal Deoxynucleotidyl dUTP Nick-End Labeling (TUNEL), even though similar cultures were determined to be viable via a trypsin replating strategy. TUNEL identifies DNA excision repair, not just apoptotic DNA fragmentation, and the most likely explanation of these TUNEL results is that PTH's activation of DNA repair processes would permit nucleotide incorporation as a result of enhanced excision repair. This explanation was confirmed by an enhanced incorporation of bromodeoxyuridine in PTH-treated cells even though a majority of the cell population was determined to be non-replicating. An augmentation of DNA repair by PTH is an unreported finding, and provides an additional explanation for its anti-apoptotic mechanism(s)."	"Calcium-containing spherical bodies (calcospherulites) exist along the mineralization front of bone and are thought to play a role in bone formation. Existing methods to isolate calcospherulites involve harsh treatments that remove much of their organic matter. This study sought to isolate them using a less destructive approach to better preserve their organic components. Juvenile rats were injected with a low dose of calcein to label the newly formed mineral at the mineralization front of bone in vivo. Periosteum was completely dissected from the tibial diaphysis and unmineralized osteoid matrix was removed by collagenase in order to expose calcospherulites. Calcein-labeled calcospherulites of approximately 0.5 mum average diameter were observed all along the mineralization front and they exhibited a Ca/P ratio of 1.3 in situ. Calcospherulites were released from the mineralization front by a short dispase digestion and isolated via fluorescence flow sorting. X-ray diffraction revealed they contained apatite crystals (c-axis length of 17.5 +/- 0.2 nm) and their Ca/P ratio was preserved during isolation. Calcospherulites treated with ice-cold ethanol exhibited a Ca/P ratio of 1.6, suggesting the presence of some extractable phospholipids. Proteins extracted from isolated calcospherulites were resolved by SDS-PAGE into more than 20 distinct bands. Western blot analyses showed the presence of matrix proteins in these preparations. These results indicate that calcospherulites can be isolated from the mineralization front of bone in a form that can be used to study their proteome and lipid composition."	"Previous work has suggested that &quot;calcospherulites&quot; actively participate in the mineralization of developing and healing bone. This study sought to directly test this hypothesis by developing a method to isolate calcospherulites and analyzing their capacity to seed mineralization of fibrillar collagen. The periosteal surface of juvenile rat tibial diaphysis was enriched in spherulites of approximately 0.5-mum diameter exhibiting a Ca/P ratio of 1.3. Their identity as calcospherulites was confirmed by their uptake of calcein at the tibial mineralization front 24 h following in vivo injection. Periosteum was dissected and unmineralized osteoid removed by collagenase in order to expose calcospherulites. Calcein-labeled calcospherulites were then released from the mineralization front by dispase digestion and isolated via fluorescence flow sorting. X-ray diffraction analysis revealed they contained apatite crystals (c-axis length of 17.5+/-0.2 nm), though their Ca/P ratio of 1.3 is lower than that of hydroxyapatite. Much of their non-mineral phosphorous content was removed by ice-cold ethanol, elevating their Ca/P ratio to 1.6, suggesting the presence of phospholipids. Western blot analyses showed the presence of bone matrix proteins and type I collagen in these preparations. Incubating isolated calcospherulites in collagen hydrogels demonstrated that they could seed a mineralization reaction on type I collagen fibers in vitro. Ultrastructural analyses revealed crystals on the collagen fibers that were distributed rather uniformly along the fiber lengths. Furthermore, crystals were observed at distances well away from the observed calcospherulites. Our results directly support an active role for calcospherulites in inducing the mineralization of type I collagen fibers at the mineralization front of bone."
+"Min, Booki"	"Inflammation and Immunity"	30700587	15879097	17075245	17132717	17549737	18632726	18832679	19008933	19667092	19920180	"IL-27 regulates immune responses in inflammation. The underlying mechanism of IL-27 functions has long been attributed to its ability to induce IL-10 production in activated CD4 T cells. In this study, we report that Foxp3<sup>+</sup> regulatory T cells (Tregs) are the main target cells of IL-27, mediating its immunoregulatory functions in vivo. Systemically delivered IL-27 efficiently prevents the development of experimental autoimmune encephalomyelitis, an autoimmune inflammation in the CNS. However, it failed to do so upon Treg depletion. IL-27 signaling in Tregs was necessary, as transferring Tregs deficient in IL-27Rα or Lag3, a downstream molecule induced by IL-27, was unable to protect mice from experimental autoimmune encephalomyelitis. IL-27 efficiently induced IL-10 expression in CD4 T cells in vitro; however, we found no evidence supporting IL-27-induced IL-10 induction in CD4 T cells in vivo. Taken together, our results uncover an irreplaceable contribution of Tregs during IL-27-mediated control of inflammation."	"Transfer of naive CD4 T cells into lymphopenic mice initiates a proliferative response of the transferred cells, often referred to as homeostatic proliferation. Careful analysis reveals that some of the transferred cells proliferate rapidly and undergo robust differentiation to memory cells, a process we have designated spontaneous proliferation, and other cells proliferate relatively slowly and show more limited evidence of differentiation. In this study we report that spontaneous proliferation is IL-7 independent, whereas the slow proliferation (referred to as homeostatic proliferation) is IL-7 dependent. Administration of IL-7 induces homeostatic proliferation of naive CD4 T cells even within wild-type recipients. Moreover, the activation/differentiation pattern of the two responses are clearly distinguishable, indicating that different activation mechanisms may be involved. Our results reveal the complexity and heterogeneity of lymphopenia-driven T cell proliferation and suggest that they may have fundamentally distinct roles in the maintenance of CD4 T cell homeostasis."	"Activation of innate immunity is closely associated to development of protective adaptive immune response. Significant advances have been made to reveal such links between innate immunity and Th1 type adaptive immune responses. By contrast, the role of innate immunity in the development of Th2 type adaptive immune responses is still not well understood. Production of IL-4, a key cytokine in the induction of Th2 immunity, by innate type cells represents an attractive mechanism for such an innate link to Th2 immunity. We have recently reported that in the course of infection with the intestinal nematode, Nippostrongylus brasiliensis, a robust basophil accumulation in the liver/spleen occurs and that these basophils display enhanced IL-4 production. Thus, the basophils is an attractive candidate to mediate the innate-adaptive link for Th2 responses and understanding the control of the tissue homing patterns and cytokine responses of basophils in the course of infections may shed important light on the in vivo induction of Th2 adaptive immunity."	"While production of cytokines such as IL-12 by activated dendritic cells supports development of Th1 type immunity, a source of early IL-4 that is responsible for Th2 immunity is not well understood. We now show that coculture of basophils could promote a robust Th2 differentiation upon stimulation of naive CD4 T cells primarily via IL-4. Th2 promotion by basophils was also observed even when naive CD4 T cells were stimulated in a Th1-promoting condition or when fully differentiated Th1 phenotype effector CD4 T cells were restimulated. IL-4-deficient basophils failed to induce Th2 differentiation but suppressed Th1 differentiation. It was subsequently revealed that the IL-4-deficient basophils must engage cell-to-cell contact to exert the inhibitory effect on Th1 differentiation. Stimulation of naive CD4 T cells within an in vivo environment of increased basophil generation supported development of Th2 type immunity. Taken together, our results suggest that basophils may provide an important link for the development of Th2 immunity."	"CD25(+) regulatory T cells (Treg) are a heterogeneous population that exists as CD44(low) and CD44(high) cells. Here we report that while both CD44(low) and CD44(high) Treg are anergic and express similar levels of Foxp3, CD44(high) Treg are highly proliferative in vivo and are more potent suppressors in vitro than CD44(low) Treg. From analysis of the properties of Treg derived from germ-free mice, it was concluded that peptide antigens derived from intestinal microorganisms are not essential for the generation, in vivo proliferation or suppressive activity of Treg. Our results suggest that gut flora antigens play little or no role in the heterogeneity and homeostatic regulation of Treg."	"Enhanced basophil production is often associated with T(h)2-related conditions such as parasite infections or allergic inflammations. Our previous study demonstrated that T cell activation is necessary to promote basophil production in Nippostrongylus brasiliensis (Nb)-infected mice. Yet, mechanisms underlying how T cells aid infection-induced basophil production are not clear. In this report, we show that IL-3 produced by T cells activated by the infection enhances basophil production in Nb-infected mice. IL-3-deficient mice or Rag2-/- recipients of IL-3-deficient T cells but not of wild-type T cells failed to support basophil production following the Nb infection. Interestingly, although IL-3 was critical for preventing basophil apoptosis in vitro, IL-3 had little contribution to basophil survival and proliferation in vivo. Collectively, these results highlight a novel mechanism by which activation of adaptive immune components induces basophil production but not basophil survival via IL-3 production."	"Although an inhibitory function of IL-4 in CD4 T cell IL-2 production has long been recognized, a mechanism mediating the inhibition remains unclear. In this study we demonstrate that IL-4 displays a potent suppressive function in IL-2 production of activated CD4 T cells through STAT6. IL-4-induced IL-2 suppression required IL-2 because IL-2 neutralization restored the production of IL-2 even in the presence of IL-4. In vivo, enhanced IL-2 production was found in nematode-infected IL-4- or STAT6-deficient animals, whereas immunization in the presence of IL-4 substantially diminished IL-2 production by Ag-specific CD4 T cells. IL-2 mRNA expression was reduced when T cells were stimulated in the presence of IL-4, whereas IL-2 mRNA decay was unaltered, suggesting that IL-4 mediates the suppression at a transcriptional level. Blimp-1 induced by IL-4 stimulation in activated CD4 T cells was found to be necessary to mediate the IL-2 inhibition as IL-4-mediated IL-2 suppression was less pronounced in activated CD4 T cells deficient in Blimp-1. Taken together, our results demonstrate a potential link with IL-4, Blimp-1, and IL-2 production, suggesting that Blimp-1 may play an important role in controlling IL-2 production in activated T cells and in adaptive T cell immunity."	"Basophils, the least abundant granulocytes, have poorly understood functions. They have been linked to the development of T helper type 2 immunity during parasite infection and allergic inflammation. Emerging evidence has not only shown the critical involvement of basophils in the development of T helper type 2 immunity but also provided useful animal models with which basophil functions can be further examined. However, distinctions must be made between what basophils 'can do' after in vitro manipulation and what they 'actually do' during in vivo immune responses; these may be very different. In this review, the functions of basophils determined on the basis of analysis of in vitro and in vivo systems and their potential involvement in clinical settings are discussed."	"There is increasing evidence suggesting that basophils play a critical role in developing Th2-type immunity both in vitro and in vivo. We previously reported that basophils cocultured with naive CD4 T cells stimulated with Ag promote the differentiation of the T cells into IL-4-producing Th2 cells. In the present study, we examined the roles of basophils during CD8 T cell activation. Although stimulating OVA-specific OT-I CD8 T cells with OVA peptide-pulsed splenic dendritic cells primarily induced the production of IFN-gamma, adding basophils into the coculture induced IL-10 production. Surprisingly, basophils were capable of directly presenting peptide Ag or of cross-presenting protein Ag to CD8 T cells. CD28-mediated costimulation dramatically enhanced T cell IL-10 production, yet neither ICOS nor CD86 was involved in IL-10 production. Basophil-mediated IL-10 induction was greatly diminished without IL-4 or IL-6, indicating that these cytokines are necessary for programming CD8 T cell IL-10 production. Adding IL-4 or IL-6 into CD8/APC coculture was not sufficient to induce IL-10 production; however, the presence of both cytokines significantly induced IL-10 production without basophils. Finally, CD8 T cells producing IL-10 induced by basophils did not display regulatory cell functions. Collectively, these results suggest a novel function of basophils that act as professional APCs to present Ag to CD8 T cells, thus inducing IL-10 production."	"T cells transferred into severe lymphopenic hosts undergo rapid proliferation known as &quot;endogenous proliferation&quot; that are distinct from conventional homeostatic proliferation. Unlike homeostatic proliferation, cytokines, such as IL-7 are dispensable, yet TCR:MHC interaction is essential for this process to occur. However, cell types inducing the proliferation have not formally been addressed. In this study, we report that CD11c+ conventional DCs play irreplaceable roles in inducing endogenous proliferation of both naive and memory phenotype CD4 T cells via TCR-MHC II interaction. By contrast, CD8 T-cell endogenous proliferation was independent of MHC I or CD11c+ DCs. Interestingly, MHC II was necessary to support naive CD8 T-cell proliferation within MHC I-deficient hosts. Depletion of both B cells and DCs was sufficient to abrogate the proliferation of naive but not of memory CD8 T cells. These results suggest that depending on the T-cell lineages, as well as the differentiation status, different mechanisms control endogenous proliferation, revealing in vivo complexity of T-cell proliferation under lymphopenic conditions."
+"Moravec, Christine"	"Cardiovascular and Metabolic Sciences"	24878771	24842913	21972325	20044278	18540144	15312825	12431450	11514373	11040107	10728422	"Mammalian hearts express two myosin heavy chain (MHC) isoforms, which drive contractions with different kinetics and power-generating ability. The expression of the isoform that is associated with more rapid contraction kinetics and greater power output, MHC-α, is downregulated, with a concurrent increase in the relative amount of the slower isoform, MHC-β, during the progression to experimentally induced or disease-related heart failure. This change in protein expression has been well studied in right and left ventricles in heart failure models and in humans with failure. Relatively little quantitative data exists regarding MHC isoform expression shifts in human failing atria. We previously reported significant increases in the relative amount of MHC-β in the human failing left atrium. The results of that study suggested that there might be a sex-related difference in the level of MHC-β in the left atrium, but the number of female subjects was insufficient for statistical analysis. The objective of this study was to test whether there is, in fact, a sex-related difference in the level of MHC-β in the right and left atria of humans with cardiomyopathy. The results indicate that significant differences exist in atrial MHC isoform expression between men and women who are in failure. The results also revealed an unexpected twofold greater amount of MHC-β in the nonfailing left atrium of women, compared with men. The observed sex-related differences in MHC isoform expression could impact ventricular diastolic filling during normal daily activities, as well as during physiologically stressful events. "	"We hypothesized that S100A1 is regulated during human hypertrophy and heart failure and that it may be implicated in remodeling after left ventricular assist device. S100A1 is decreased in animal and human heart failure, and restoration produces functional recovery in animal models and in failing human myocytes. With the potential for gene therapy, it is important to carefully explore human cardiac S100A1 regulation and its role in remodeling. We measured S100A1, the sarcoplasmic endoplasmic reticulum Ca(2+)ATPase, phospholamban, and ryanodine receptor proteins, as well as β-adrenergic receptor density in nonfailing, hypertrophied (left ventricular hypertrophy), failing, and failing left ventricular assist device-supported hearts. We determined functional consequences of protein alterations in isolated contracting muscles from the same hearts. S100A1, sarcoplasmic endoplasmic reticulum Ca(2+)ATPase and phospholamban were normal in left ventricular hypertrophy, but decreased in failing hearts, while ryanodine receptor was unchanged in either group. Baseline muscle contraction was not altered in left ventricular hypertrophy or failing hearts. β-Adrenergic receptor and inotropic response were decreased in failing hearts. In failing left ventricular assist device-supported hearts, S100A1 and sarcoplasmic endoplasmic reticulum Ca(2+)ATPase showed no recovery, while phospholamban, β-adrenergic receptor, and the inotropic response fully recovered. S100A1 and sarcoplasmic endoplasmic reticulum Ca(2+)ATPase, both key Ca(2+)-regulatory proteins, are decreased in human heart failure, and these changes are not reversed after left ventricular assist device. The clinical significance of these findings for cardiac recovery remains to be addressed."	"Biofeedback is a method of training subjects to regulate their own physiology using feedback from physiologic sensors connected to an output display. Biofeedback-assisted stress management (BFSM) incorporates the physiologic signals with instructions on stress management. The goal of BFSM training is to give subjects the tools to control their own mental and physiologic reactions, leading to improved health and wellness. In cardiovascular disease, overactivation of the sympathetic component of the autonomic nervous system and psychologic stress together negatively affect quality of life and clinical status. BFSM targets both areas. We hypothesize that this intervention can be used in cardiovascular disease to improve clinical status and quality of life, as well as interfere with disease progression. We are conducting trials of BFSM in heart failure and stable coronary artery disease. Preliminary data suggest that use of BFSM by heart failure patients may actually cause cellular and molecular remodeling of the failing heart in the direction of normal. We are comparing the effects of BFSM with usual care in patients with stable coronary artery disease, testing the hypothesis that the intervention will decrease both sympathetic hyperarousal and activation of the inflammatory cascade. Since heart rate variability is abnormal in both cardiovascular disease and depression, and since BFSM has been successfully used to change heart rate variability, we also expect this intervention to have a positive impact on the depression that often accompanies cardiovascular disease."	"Intracellular Ca(2+) handling is abnormal in human heart failure. Studies have demonstrated that left ventricular assist device (LVAD) support reverses phenotypic alterations, suggesting that, in select patients, LVAD support may be a bridge to recovery. Few studies have related support duration to phenotypic recovery. We hypothesized that reversal of impaired sarcoendoplasmic reticulum (SR) Ca(2+) cycling following LVAD implantation is duration-dependent. We used post-rest potentiation to assess SR function, and Western blot analysis to measure Ca(2+)-cycling proteins. Left ventricular tissue from 10 non-failing hearts, 8 failing hearts and 10 LVAD-supported hearts was analyzed. Support ranged from 7 to 334 days. The median duration, 115 days, divided patients into short- and long-term support groups. Post-rest potentiation (PRP) response recovered after short-term LVAD support to a level (116.8 +/- 12.1%; n = 5) close to non-failing (123.4 +/- 12.0%; n = 10) hearts, but recovery after long-term support (23.5 +/- 7.0%; n = 5) remained closer to that of failing hearts (13.5 +/- 5.6%). We found a similar pattern of normalization for SR Ca(2+)-ATPase protein and the phospholamban/SR Ca(2+)-ATPase ratio (non-failing: 0.66 +/- 0.11; failing: 1.21 +/- 0.23; short-duration LVAD: 0.68 +/- 0.14; long-duration LVAD: 1.67 +/- 0.30; correlation p &lt; 0.001; r = 0.93). The ratio also tended to correlate with the PRP response after unloading (p = 0.05; r = -0.65). SR Ca(2+) handling improved during early LVAD support, but long-term support was associated with abnormal Ca(2+) cycling. These findings cast doubt on strategies designed to wean patients after complete unloading with an LVAD."	"Biofeedback has much therapeutic potential in cardiovascular diseases, since many of these diseases involve dysregulation of the autonomic nervous system. Studies have clearly demonstrated that patients can use biofeedback techniques to regulate the input of the autonomic nervous system to the heart, but the clinical utility of these techniques has not been well explored in systematic trials. Much biofeedback research to date has focused on patients with hypertension, but outcomes have been inconclusive. Preliminary studies suggest that heart rate variability biofeedback may be useful in improving symptoms and quality of life in patients with cardiac disease, and early studies suggest a possible effect of biofeedback on remodeling of the failing heart. Both of these areas require further research, however. Biofeedback is increasingly used as an adjunct to stress management in cardiac rehabilitation programs, providing the impetus for a large-scale, systematic study of self-regulation in cardiac disease."	"Mechanical support of the failing human heart with a left ventricular assist device (LVAD) normalizes many components of myocyte structure and function. We hypothesized that recovery of the cytoskeleton, a major site of mechanotransduction in cardiac myocytes, is crucial for sustained improvement of myocardial function. We therefore measured the effects of LVAD support on 4 cytoskeletal proteins in single human heart cells. Myocytes were isolated from non-failing (NF), hypertrophied (H), failing (F) and LVAD-supported failing (L) human hearts. Protein quantitation was performed using Western blot analysis and cellular distribution was determined by immunolabeling and confocal microscopy. alpha-actinin did not differ in cells from H or F as compared with NF, and L had no effect. Vinculin was not quantitatively different in H or F vs NF, but localization at the intercalated disks was significantly decreased in H and absent in F, and this pattern was consistently reversed in L. Desmin protein was significantly increased in F vs NF, both in quantity and distribution, and these increases were reversed in L. beta-tubulin was increasingly polymerized in H and F, and the hyperpolymerization was reversed in L. On the level of the single cardiomyocyte, major proteins of the cytoskeleton are significantly altered in hypertrophied and failing human hearts. These alterations are reversed by mechanical unloading with an LVAD, suggesting that the cytoskeleton is not the limiting factor in determining full cardiac recovery."	"Increasing evidence suggests that derangements of cytoskeletal proteins contribute to alterations in intracellular signaling, myocyte function, and the coupling of myocytes to the extracellular matrix during cardiac hypertrophy and failure. Data from animal studies have shown an increased density of beta-tubulin protein in the right or left ventricle subjected to pressure overload, and have demonstrated that interfering with excess polymerization of beta-tubulin improves contractility. We tested the hypothesis that beta-tubulin is increased in human left ventricular hypertrophy and end-stage heart failure. Confocal microscopy of fluorescently labeled beta-tubulin protein revealed an increased density of the beta-tubulin network in cardiomyocytes from both hypertrophied and failing human hearts as compared to cells from nonfailing hearts. Western blot analysis on total heart homogenate showed no change in beta-tubulin when data were normalized to either actin or calsequestrin, although there was a significant increase in failing human hearts when data were normalized only for a constant amount of protein per heart. The mRNA for beta-tubulin was not changed in hypertrophied hearts, but was significantly decreased in failing human hearts. Thus, similar to animal models, we have shown that the density of the microtubular network within the cardiomyocyte is increased in end-stage failing human hearts. We have also shown for the first time that beta-tubulin density is increased in cells from hypertrophied human hearts. Although the functional implications of this finding in the human heart remain to be explored, data from animal studies suggest that increased beta-tubulin protein contributes to cardiac dysfunction."	"Mechanical unloading of the failing human heart with a left ventricular assist device (LVAD) results in clinically documented reversal of chamber dilation and improvement of cardiac function. We tested the hypothesis that LVAD support normalizes the ability of cardiac muscle to respond to sympathetic nervous system stimulation by reversing the downregulation of beta-adrenergic receptors. Human LV tissue was obtained from nonfailing hearts of unmatched organ donors and failing hearts at the time of transplantation, with or without LVAD. Baseline contractile parameters and inotropic response to a beta-adrenergic agonist were measured in isolated trabecular muscles. beta-Adrenergic receptor density was quantified by radioligand binding. Results showed a significant increase in the response to beta-adrenergic stimulation after LVAD (developed tension increased by 0.76+/-0.09 g/mm(2) in nonfailing, 0.38+/-0.07 in failing, and 0.68+/-0.10 in failing+LVAD; P&lt;0.01), accompanied by an increased density of beta-adrenergic receptors (58.7+/-9.6 fmol/mg protein in nonfailing, 26.2+/-3.8 in failing, and 63.0+/-8.3 in failing+LVAD; P&lt;0.05). These changes were unrelated to the duration of support. Data demonstrate that mechanically supporting the failing human heart with an LVAD can reverse the downregulation of beta-adrenergic receptors and restore the ability of cardiac muscle to respond to inotropic stimulation by the sympathetic nervous system. This indicates that functional impairment of cardiac muscle in human heart failure is reversible."	"Although myocarditis has been implicated in the pathogenesis of heart failure, a definitive relationship between myocardial inflammation, cardiac dysfunction, and changes in myocyte gene expression has not been established. In this study, we examined the hypothesis that myocardial inflammation and replacement fibrosis following an autoimmune response can progress to cardiac dysfunction and may result in progression to the heart failure phenotype. SWXJ mice were immunized with cardiac myosin on day 0 and day 7, in order to induce an autoimmune response to the myosin protein. Cardiac catheterization via the right carotid artery was performed on days 14, 21, 28, 35, and 42, using a 1.4F Millar transducer-tipped catheter. Hearts were weighed, and cross-sections were cut and stained with either haematoxylin and eosin or Masson's trichrome, in order to identify areas of inflammation and/or fibrosis. Myocardial gene expression was determined by Northern blot analysis. In mice with histological evidence of myocarditis, the heart weight/body weight ratio increased beginning on day 14, and cardiac function decreased beginning on day 21. Myocardial inflammation was accompanied by significant fibrosis beginning on day 21. Quantitation of mRNA showed expression of ventricular atrial naturietic factor, as well as a decrease in myosin heavy chain alpha, beginning on day 21. These data demonstrate that autoimmune inflammation of the heart results in significant cardiac dysfunction, leading to phenotypic alterations similar to those demonstrated in human heart failure and animal models of heart failure."	"The failing human heart is characterized by changes in the expression and function of proteins involved in intracellular Ca2+ cycling, resulting in altered Ca2+ transients and impaired contractile properties of cardiac muscle. The role of the cardiac annexins in this process remains unclear. Annexins may play a role in the regulation of Ca2+ pumps and exchangers on the sarcolemma, and have been shown to be altered in some cardiac disease states. The goal of this study was to compare the immunolocalization and expression of annexins IV, V and VI in failing and non-failing human hearts. We used immunostaining to identify the subcellular location of annexins IV, V and VI proteins within the myocardial cell, and Western blot analysis to quantify the proteins in the same hearts. Annexin IV showed a cytoplasmic distribution in both failing and non-failing human heart cells. Annexin V was localized at the z-line, around lipofuscin granules, and in the cytosol in the non-failing heart cells. Annexin VI was localized at the sarcolemma and intercalated disc. Protein levels of annexins IV and V were up-regulated in failing human hearts, while the expression of annexin VI was unchanged. Alterations in the intracellular localization of annexins, along with up-regulation of annexins IV and V in the failing human heart cells, suggests differential regulation of these Ca2+ regulatory proteins during heart failure."
+"Morris-Stiff, Gareth"	"Cancer Biology"	31206465	31176601	29038855	28890311	28821481	28645922	28790092	28619737	27260526	26984696	"Pancreatic ductal adenocarcinoma (PDAC) is lethal, and the majority of patients present with locally advanced or metastatic disease that is not amenable to cure. Thus, with surgical resection being the only curative modality, it is critical that disease is identified at an earlier stage to allow the appropriate therapy to be applied. Unfortunately, a specific biomarker for early diagnosis has not yet been identified; hence, no screening process exists. Recently, high-throughput screening and next-generation sequencing (NGS) have led to the identification of novel biomarkers for many disease processes, and work has commenced in PDAC. Genomic data generated by NGS not only have the potential to assist clinicians in early diagnosis and screening, especially in high-risk populations, but also may eventually allow the development of personalized treatment programs with targeted therapies, given the large number of gene mutations seen in PDAC. This review introduces the basic concepts of NGS and provides a comprehensive review of the current understanding of genetics in PDAC as related to discoveries made using NGS."	"Previous studies have demonstrated the prognostic significance of pathologic tumor response in pancreatic adenocarcinoma following neoadjuvant therapy (NAT). The aim of this study was to determine the incidence of significant pathologic response to NAT in borderline resectable pancreatic cancer (BRPC), and association of NAT regimen and other clinico-pathologic characteristics with pathologic response. Patients with BRPC who underwent NAT and pancreatic resection between January 2012 and June 2017 were included. Pathologic response was assessed on a qualitative scale based on the College of American Pathologists grading system. Demographics and baseline characteristics, oncologic treatment, pathology, and survival outcomes were compared. Seventy-one patients were included for analysis. Four patients had complete pathologic responses (tumor regression score 0), 12 patients had marked responses (score 1), 42 had moderate responses (score 2), and 13 had minimal responses (score 3). Patients with complete or marked responses were more likely to have received neoadjuvant gemcitabine chemoradiation (62.5%, 38.1%, and 23.1% of the complete/marked, moderate, and minimal response groups, respectively; P = 0.04). Of the complete/marked, moderate, and minimal response groups, margins were negative in 75.0%, 78.6%, and 46.2% (P = 0.16); node negative disease was observed in 87.5%, 54.8%, and 15.4% (P &lt; 0.01); and median overall survival was 50.0 months, 31.7 months, and 23.2 months (P = 0.563). Of the four patients with pathologic complete responses, three were disease-free at 66.1, 41.7 and 31.4 months, and one was deceased with metastatic liver disease at 16.9 months. A more pronounced pathologic tumor response to NAT in BRPC is correlated with node negative disease, but was not associated with a statistically significant survival benefit in this study."	"Pancreatic ductal adenocarcinoma is the most common primary malignancy of the pancreas. The classic imaging features are a hypovascular mass with proximal ductal dilatation. Different pancreatic pathologies can mimic the imaging appearance of carcinoma including other tumors involving the pancreas (pancreatic neuroendocrine tumors, lymphoma, metastasis, and rare tumors like pancreatic acinar cell carcinoma and solid pseudopapillary tumors), inflammatory processes (chronic pancreatitis and autoimmune pancreatitis), and anatomic variants (annular pancreas). Differentiation between these entities can sometimes be challenging due to overlap of imaging features. The purpose of this article is to describe the common entities that can mimic pancreatic cancer on imaging with illustrative examples and to suggest features that can help in differentiation of these entities."	"Patients with altered anatomy due to Roux-en-Y gastric bypass (RYGB) present unique diagnostic and therapeutic challenges when they present with periampullary pathology. We describe a series of patients who underwent pancreatoduodenectomy (PD) after gastric surgery with Roux-en-Y reconstruction and review the literature to highlight technical considerations and outcomes. Patients from two institutions were identified and data regarding preoperative workup, operative conduct, and pathologic and clinical outcomes were collected. Eleven patients were included in the institutional series. At the time of periampullary pathology, the median age was 64 years and time since RYGB was 10 years. Median operative time was 361 minutes, estimated blood loss was 500 mLs, and length of stay was 6 days. Remnant gastrectomy was performed in nine patients and reconstruction was performed using the biliopancreatic limb (BP) without revision of the jejuno-jejunostomy in ten patients. Pathology revealed pancreatic cancer (8), chronic pancreatitis (2), and duodenal cancer (1). Three patients experienced major complications and there were no 90-day mortalities. Pancreatic surgeons will see an increasing number of patients with Roux-en-Y anatomy who will require evaluation and resection for periampullary diseases. For PD after RYGB, we recommend remnant gastrectomy with reconstruction using the BP limb."	"Leiomyoma is a benign neoplasm originating from smooth muscle cells and is most commonly seen in the uterus, followed by the small bowel and oesophagus. We report a rare case of a 41-year-old male patient with a spermatic cord leiomyoma that presented as an inguinal canal mass mimicking an irreducible inguinal hernia without scrotal involvement. This report highlights the rare presentation and workup of an inguinal mass, importance of intraoperative decision making based on operative findings and the significance of postoperative pathology findings."	"High-grade dysplasia (HGD) of the cystic duct margin without evidence of concurrent malignancy is a rare occurrence. We present a case of a 36-year-old woman who developed gallstone pancreatitis and subsequently underwent a laparoscopic cholecystectomy. On histopathology, she was found to have HGD at the cystic duct margin. Following evaluation, she underwent excision of the cystic duct remnant with no malignancy being present on final pathology. We present this case to discuss the management of cystic duct dysplasia in the absence of gallbladder malignancy."	"We report a case of a 56-year-old woman who presented with worsening abdominal pain located in the left upper quadrant together with abdominal distention, nausea and anorexia. One month prior to this admission, she had presented and had been diagnosed with concurrent acute pancreatitis and rapidly expanding abdominal aortic aneurysm. The aneurysm was prioritised over the pancreatitis and she underwent uncomplicated endovascular repair. Cross-sectional imaging was consistent with infected pancreatic necrosis and also revealed a large collection located in the anterior pararenal space with extensive gas formation. An image-guided fluid aspiration revealed Clostridium perfringens as the causative organism. She was treated by placement of large bore drains along with irrigation and targeted intravenous antibiotic for 6 weeks. The collections resolved completely and at 6 months follow-up she was well and symptom free."	"Acute massive gastric dilatation (AMGD) is a rare distinctive condition but associates with high morbidity and mortality. Though usually seen in patients with eating disorders, many aetiologies of AMGD have been described. The distension has been reported to cause gastric necrosis with or without perforation, usually within 1-2 days of an inciting event of AMGD.We report the case of a 58-year-old male who presented with gastric perforation associated with AMGD 11 days after surgical relief of a proximal small bowel obstruction. The AMGD arose from a closed loop obstruction between a tumour at the gastro-oesophageal junction and a small bowel obstruction as a result of volvulus around a jejunal feeding tube.To our knowledge, this is the first case of a closed loop obstruction of this aetiology reported in the literature, and the presentation of this patient's AMGD was notable for the delayed onset of gastric necrosis. The patient underwent an exploratory laparotomy and a partial gastrectomy to excise a portion of his perforated stomach. Surgeons should be aware of the possibility of delayed ischaemic gastric perforation in cases of AMGD."	"The aim of this study was to report a Western experience in the diagnosis and management of choledochal cyst disease. Sixty-seven patients were identified including 15 children and 52 adults; 76.1 % were females. The median age at diagnosis was 3 [inter-quartile range (IQR) = 6.0-0.7] years for children, and 46 [IQR = 55.6-34.3] years for adults. Forty-eight patients (72 %) were symptomatic. Types of choledochal cyst included: I (n = 49, 73.1 %), II (n = 1, 1.5 %), IV (n = 9, 13.4 %), and V (n = 8, 12 %). The median diameter of the type I choledochal cyst was 35 [IQR = 47-25] mm. All 48 patients underwent excision of cyst with Roux-en-Y hepaticojejunostomy, and eight underwent resection with hepaticoduodenostomy. Six patients underwent liver resection, and five patients underwent orthotopic liver transplantation. Malignancy was concomitant in five adult patients, being identified on preoperative imaging in three cases; and atypia was seen in three additional patients. Early morbidity included Clavien-Dindo classification grades III (n = 7) and II (n = 5), while long-term complications consisted of Clavien-Dindo grades V (n = 5), IV (n = 2), III (n = 18), and II (n = 1). Presentation and management of choledochal cyst is varied. Malignant transformation is often detected incidentally, and so should be the driving source for resection when a choledochal cyst is diagnosed."	"The aim of this study was to assess whether the lack of a radiological mass in patients with periampullary malignancies led to protracted diagnosis, delayed resection, and an inferior outcome. The departmental database was interrogated to identify all patients undergoing pancreatoduodenectomy during the period 2000-2014. The absence of a mass on cross-sectional and endoscopic ultrasound was noted. The interval between imaging and surgery was evaluated and related to the absence of a mass. The relationship between mass/no mass and the pathological profile was also assessed. Among 490 patients who underwent pancreatoduodenectomy for periampullary malignancies, masses were detected in 299 patients. Patients with undetected mass on either endoscopic ultrasonography (EUS) or computed tomography (CT)/magnetic resonance imaging (MRI) had a longer median interval from initial imaging to resection than detected mass with no difference in survival (66 vs. 41 days, p = 0.001). The absence of a mass was more common in cholangiocarcinomas (p &lt; 0.001). The absence of a mass on imaging was associated with smaller size on final histopathology (2.4 vs. 2.8 cm; p &lt; 0.001). The absence of a mass with all modalities in patients with a periampullary malignancy leads to a delayed diagnosis without a significant effect on survival."
+"Morton, Richard"	"Cardiovascular and Metabolic Sciences"	26203075	25616437	25593327	24293641	21937674	19008550	18369235	17901467	17522050	16905138	"We previously reported that reducing the expression of cholesteryl ester transfer protein (CETP) disrupts cholesterol homeostasis in SW872 cells and causes an ∼50% reduction in TG. The causes of this reduced TG content, investigated here, could not be attributed to changes in the differentiation status of CETP-deficient cells, nor was there evidence of endoplasmic reticulum (ER) stress. In short-term studies, the total flux of oleate through the TG biosynthetic pathway was not altered in CETP-deficient cells, although mRNA levels of some pathway enzymes were different. However, the conversion of diglyceride (DG) to TG was impaired. In longer-term studies, newly synthesized TG was not effectively transported to lipid droplets, yet this lipid did not accumulate in the ER, apparently due to elevated lipase activity in this organelle. DG, shown to be a novel CETP substrate, was also inefficiently transferred to lipid droplets. This may reduce TG synthesis on droplets by resident diacylglycerol acyltransferase. Overall, these data suggest that the decreased TG content of CETP-deficient cells arises from the reduced conversion of DG to TG in the ER and/or on the lipid droplet surface, and enhanced TG degradation in the ER due to its ineffective transport from this organelle. "	"We previously determined that hamster cholesteryl ester transfer protein (CETP), unlike human CETP, promotes a novel one-way transfer of TG from VLDL to HDL, causing HDL to gain lipid. We hypothesize that this nonreciprocal lipid transfer activity arises from the usually high TG/cholesteryl ester (CE) substrate preference of hamster CETP. Consistent with this, we report here that ∼25% of the total lipid transfer promoted by the human Q199A CETP mutant, which prefers TG as substrate, is nonreciprocal transfer. Other human CETP mutants with TG/CE substrate preferences higher or lower than wild-type also possess nonreciprocal lipid transfer activity. Mutants with high TG/CE substrate preference promote the nonreciprocal lipid transfer of TG from VLDL to HDL, but mutants with low TG/CE substrate preference promote the nonreciprocal lipid transfer of CE, not TG, and this lipid flow is in the reverse direction (from HDL to VLDL). Anti-CETP TP2 antibody alters the TG/CE substrate preference of CETP and also changes the extent of nonreciprocal lipid transfer, showing the potential for externally acting agents to modify the transfer properties of CETP. Overall, these data show that the lipid transfer properties of CETP can be manipulated. Function-altering pharmaceuticals may offer a novel approach to modify CETP activity and achieve specific modifications in lipoprotein metabolism. "	"Cells produce two cholesteryl ester transfer protein (CETP) isoforms, full-length and a shorter variant produced by alternative splicing. Blocking synthesis of both isoforms disrupts lipid metabolism and storage. To further define the role of CETP in cellular lipid metabolism, we stably overexpressed full-length CETP in SW872 cells. These CETP(+) cells had several-fold higher intracellular CETP and accumulated 50% less TG due to a 26% decrease in TG synthesis and 2.5-fold higher TG turnover rate. Reduced TG synthesis was due to decreased fatty acid uptake and impaired conversion of diglyceride to TG even though diacylglycerol acyltransferase activity was normal. Sterol-regulatory element binding protein 1 mRNA levels were normal, and although PPARγ expression was reduced, the expression of several of its target genes including adipocyte triglyceride lipase, FASN, and APOE was normal. CETP(+) cells contained smaller lipid droplets, consistent with their higher levels of perilipin protein family (PLIN) 3 compared with PLIN1 and PLIN2. Intracellular CETP was mostly associated with the endoplasmic reticulum, although CETP near lipid droplets poorly colocalized with this membrane. A small pool of CETP resided in the cytoplasm, and a subfraction coisolated with lipid droplets. These data show that overexpression of full-length CETP disrupts lipid homeostasis resulting in the formation of smaller, more metabolically active lipid droplets. "	"Site-specific changes in the amino acid composition of human cholesteryl ester transfer protein (CETP) modify its preference for triglyceride (TG) versus cholesteryl ester (CE) as substrate. CETP homologs are found in many species but little is known about their activity. Here, we examined the lipid transfer properties of CETP species with 80-96% amino acid identity to human CETP. TG/CE transfer ratios for recombinant rabbit, monkey, and hamster CETPs were 1.40-, 1.44-, and 6.08-fold higher than human CETP, respectively. In transfer assays between VLDL and HDL, net transfers of CE into VLDL by human and monkey CETPs were offset by equimolar net transfers of TG toward HDL. For hamster CETP this process was not equimolar but resulted in a net flow of lipid (TG) into HDL. When assayed for the ability to transfer lipid to an acceptor particle lacking CE and TG, monkey and hamster CETPs were most effective, although all CETP species were able to promote this one-way movement of neutral lipid. We conclude that CETPs from human, monkey, rabbit, and hamster are not functionally equivalent. Most unique was hamster CETP, which strongly prefers TG as a substrate and promotes the net flow of lipid from VLDL to HDL. "	"Lipid transfer inhibitor protein (LTIP) exists in both active and inactive forms. Incubation (37°C) of plasma causes LTIP to transfer from a 470 kDa inactive complex to LDL where it is active. Here, we investigate the mechanisms underlying this movement. Inhibiting LCAT or cholesteryl ester transfer protein (CETP) reduced incubation-induced LTIP translocation by 40-50%. Blocking both LCAT and CETP completely prevented LTIP movement. Under appropriate conditions, either factor alone could drive maximum LTIP transfer to LDL. These data suggest that chemical modification of LDL, the 470 kDa complex, or both facilitate LTIP movement. To test this, LDL and the 470 kDa fraction were separately premodified by CETP and/or LCAT activity. Modification of the 470 kDa fraction had no effect on subsequent LTIP movement to native LDL. Premodification of LDL, however, induced spontaneous LTIP movement from the native 470 kDa particle to LDL. This transfer depended on the extent of LDL modification and correlated negatively with changes in the LDL phospholipid + cholesterol-to-cholesteryl ester + triglyceride ratio. We conclude that LTIP translocation is dependent on LDL lipid composition, not on its release from the inactive complex. Compositional changes that reduce the surface-to-core lipid ratio of LDL promote LTIP binding and activation."	"Lipid transfer inhibitor protein (LTIP) is a regulator of cholesteryl ester transfer protein (CETP) function. Factors affecting plasma LTIP levels are poorly understood. In humans, plasma LTIP is elevated in hypercholesterolemia. To define possible mechanisms by which hyperlipidemia modifies LTIP, we investigated the effects of hypercholesterolemic diets on plasma LTIP and mRNA levels in experimental animals. The hamster, which naturally expresses CETP, was shown to express LTIP. Hamster LTIP mRNA, exclusively detected in the liver, defined a predicted LTIP protein that is 69% homologous to human, with an isoelectric point of 4.15 and Mr = approximately 16.4 kDa. Hyperlipidemia induced by feeding hydrogenated coconut oil, cholesterol, or both lipids increased plasma LTIP mass up to 2.5-fold, with LTIP mass correlating strongly with plasma cholesterol levels. CETP mass was similarly affected by these diets. In contrast, these diets reduced LTIP hepatic mRNA levels by &gt;50%, whereas CETP mRNA was increased. Similar results for both CETP and LTIP were also observed in cholesterol-fed rabbits. In conclusion, we report in hamster and rabbit that dietary lipids regulate LTIP. Diet-induced hypercholesterolemia markedly increased plasma LTIP mass while concomitantly depressing LTIP gene expression. CETP and LTIP have distinct responses to dietary lipids."	"Lipid transfer inhibitor protein (LTIP) is a physiologic regulator of cholesteryl ester transfer protein (CETP) function. We previously reported that LTIP activity is localized to LDL, consistent with its greater inhibitory activity on this lipoprotein. With a recently described immunoassay for LTIP, we investigated whether LTIP mass is similarly distributed. Plasma fractionated by gel filtration chromatography revealed two LTIP protein peaks, one coeluting with LDL, and another of approximately 470 kDa. The 470 kDa LTIP complex had a density of 1.134 g/ml, indicating approximately 50% lipid content, and contained apolipoprotein A-I. By mass spectrometry, partially purified 470 kDa LTIP also contains apolipoproteins C-II, D, E, J, and paraoxonase 1. Unlike LDL-associated LTIP, the 470 kDa LTIP complex does not inhibit CETP activity. In normolipidemic subjects, approximately 25% of LTIP is in the LDL-associated, active form. In hypercholesterolemia,this increases to 50%, suggesting that lipoprotein composition may influence the status of LTIP activity. Incubation (37 degrees C) of normolipidemic plasma increased active, LDL-associated LTIP up to 3-fold at the expense of the inactive pool. Paraoxon inhibited this shift by 50%. Overall, these studies show that LTIP activity is controlled by its reversible incorporation into an inactive complex. This may provide for short-term fine-tuning of lipoprotein remodeling mediated by CETP."	"Lipid transfer inhibitor protein (LTIP) is an important regulator of cholesteryl ester transfer protein function. We report the development of an immunoassay for LTIP and its use to quantify LTIP in plasma of varying lipid contents. A rabbit antibody against bacterially produced recombinant LTIP detected two LTIP isoforms in plasma differing in carbohydrate content. This antibody was used in a competitive, enzyme-linked immunoassay that uses partially purified LTIP bound to microtiter plates. To optimize LTIP immunoreactivity, plasma samples required preincubation in 1% Tween-20 and 0.5% Nonidet P-40. In normolipidemic plasma, LTIP averaged 83.5 microg/ml. LTIP was 31% higher in males than in females. LTIP was positively associated with HDL cholesterol in normolipidemic males but not in females. In hypertriglyceridemic males, LTIP was only 56% of control values, whereas in hypertriglyceridemic females, LTIP tended to increase. Additionally, in males with normal cholesterol and triglyceride (TG) &lt; or = 200 mg/dl, LTIP varied inversely with plasma TG. Overall, we have confirmed the negative association between plasma TG levels and LTIP previously suggested by a small data set, but now we demonstrate that this effect is seen only in males. The mechanisms underlying this gender-specific response to TG, and why LTIP and HDL levels correlate in males but not in females, remain to be determined."	"Cholesteryl ester transfer protein (CETP) transfers cholesteryl ester (CE) and triglyceride (TG) between lipoproteins in plasma. However, short term suppression of CETP biosynthesis in cells alters cellular cholesterol homeostasis, demonstrating an intracellular role for CETP as well. The consequences of chronic CETP deficiency in lipid-storing cells normally expressing CETP have not been reported. Here, SW872 adipocytes stably expressing antisense CETP cDNA and synthesizing 20% of normal CETP were created. CETP-deficient cells had 4-fold more CE but an approximately 3-fold decrease in cholesterol biosynthesis. This phenotype of cholesterol overload is consistent with the observed 45% reduction in low density lipoprotein receptor and 2.5-fold increase in ABCA1 levels. However, cholesterol mass in CETP-deficient adipocytes was actually reduced. Strikingly, CETP-deficient adipocytes stored &lt;50% of normal TG, principally reflecting reduced synthesis. The hydrolysis of cellular CE and TG in CETP-deficient cells was reduced by &gt;50%, although hydrolase/lipase activity was increased 3-fold. Notably, the incorporation of recently synthesized CE and TG into lipid storage droplets in CETP-deficient cells was just 40% of control, suggesting that these lipids are inefficiently transported to droplets where the hydrolase/lipase resides. The capacity of cellular CETP to transport CE and TG into storage droplets was directly demonstrated in vitro. Overall, chronic CETP deficiency disrupts lipid homeostasis and compromises the TG storage function of adipocytes. Inefficient CETP-mediated translocation of CE and TG from the endoplasmic reticulum to their site of storage may partially explain these defects. These studies in adipocytic cells strongly support a novel role for CETP in intracellular lipid transport and storage."	"Cholesteryl ester transfer protein (CETP) regulates human lipoprotein metabolism. Because reducing CETP increases plasma HDL, CETP inhibitors are currently being investigated for their pharmacologic value. However, complete CETP deficiency may have undesirable consequences. In contrast, based on previous studies with purified components, we hypothesized that partial CETP inhibition, which will still elevate HDL, may induce beneficial changes in plasma lipid metabolism. To address this, CETP activity in human plasma was variably inhibited with monoclonal antibody. In control plasma, VLDL to LDL lipid transfer was &gt;2-fold higher than to HDL(3) with lipid transfer to HDL(2) intermediate. However, individual lipid transfer events were uniquely sensitive to CETP suppression such that when CETP activity was inhibited by 60%, lipid transfer from VLDL to LDL, HDL(2) and HDL(3) were equal. The ratio of lipid transfers to LDL versus HDL declined linearly with CETP inhibition. In mass lipid transfer experiments, 25-50% inhibition of CETP significantly reduced lipid flux between VLDL and LDL but minimally affected cholesteryl ester (CE) loss from HDL. Complete CETP inhibition did not reduce cholesterol esterification rates but completely blocked the delivery of new CE to VLDL, whereas, 50% inhibition of CETP reduced this CE flux to VLDL by &lt;20%. Thus, inhibition of CETP by &lt;or=50% preferentially blocks lipid transfers involving LDL while largely maintaining lipid flux through HDL. These results suggest that a more beneficial therapeutic outcome may be achieved with partial, rather than extensive, CETP suppression."
+"Muschler, George"	"Biomedical Engineering"	30461436	30461435	31020864	30334888	30316562	30189436	29396254	29316595	29240251	28976432	NA	NA	"Purpose: There is a clinical need to better characterize tissue sources being used for stem cell therapies. This study focuses on comparison of cells and connective tissue progenitors (CTPs) derived from native human infrapatellar fatpad (IPFP), synovium (SYN), and periosteum (PERI). Materials and Methods: IPFP, SYN, PERI were harvested from twenty-eight patients undergoing arthroplasty. CTPs were quantitatively characterized using automated colony-forming-unit assay to compare total nucleated cell concentration-[Cell], cells/mg; prevalence-(PCTP), CTPs/million nucleated cells; CTP concentration-[CTP], CTPs/mg; proliferation and differentiation potential; and correlate outcomes with patient's age and gender. Results: [Cell] did not differ between IPFP, SYN, and PERI. PCTP was influenced by age and gender: patients &gt;60 years, IPFP and SYN had higher PCTP than PERI (p &lt; 0.001) and females had higher PCTP in IPFP (p &lt; 0.001) and SYN (p = 0.001) than PERI. [CTP] was influenced by age: patients &lt;50 years, SYN (p = 0.0165) and PERI (p &lt; 0.001) had higher [CTP] than IPFP; patients between 60 and 69 years, SYN (p &lt; 0.001) had higher [CTP] than PERI; patients &gt;70 years, IPFP (p = 0.006) had higher [CTP] than PERI. In patients &gt;60 years, proliferation potential of CTPs differed significantly (SYN&gt;IPFP&gt;PERI); however, differentiation potentials were comparable between all three tissue sources. Conclusion: SYN and IPFP may serve as a preferred tissue source for patients &gt;60 years, and PERI along with SYN and IPFP may serve as a preferred tissue source for patients &lt;60 years for cartilage repair. However, the heterogeneity among the CTPs in any given tissue source suggests performance-based selection might be useful to optimize cell-sourcing strategies to improve efficacy of cellular therapies for cartilage repair."	"Current decisions on cellular therapies for osteoarthritis are based primarily on clinical experience or on assumptions about preferred cell sourcing. They have not been informed by rigorous standardized measurements of the chondrogenic connective-tissue progenitors (CTP-Cs) or their intrinsic diversity of chondrogenic potential. The goal of this study was to quantitatively define the CTP-Cs resident in cartilage of different grades of osteoarthritis and to compare their concentration, prevalence, and biological potential. Twenty-three patients who had varus malalignment of the knee and were scheduled to undergo elective total knee arthroplasty for idiopathic osteoarthritis and who had grade 1-2 osteoarthritis on the lateral femoral condyle and grade 3-4 osteoarthritis on the medial femoral condyle were recruited for study of the cartilage removed during surgery. CTP-Cs were assayed by a standardized colony-forming-unit assay using automated image-analysis software based on ASTM standard test method F2944-12. Cell concentration was significantly greater (p &lt; 0.001) in grade 3-4 cartilage than in grade 1-2 cartilage. The prevalence of CTP-Cs varied widely, but it trended lower in grade 3-4 cartilage than in grade 1-2 samples (p = 0.078). The biological performance of CTP-Cs from grade 1-2 and grade 3-4 cartilage was comparable. Increased cell concentration was a significant predictor of decreased CTP-C prevalence (p = 0.002). Although grade 3-4 cartilage showed fewer CTP-Cs than grade 1-2 cartilage, the range of biological performance was comparable, which suggests that either may be used as a source for potent CTP-Cs. However, the biological reason for the heterogeneity of CTP-Cs in cartilage and the biological implications of that heterogeneity are not well understood and require further study. In order to improve the efficacy of cartilage cell therapy procedures, it is key to characterize the quality and quantity of the cells and progenitors being administered. Additionally, understanding the heterogeneity in order to select appropriate subsets of populations will improve the rigor of decisions concerning cell sourcing and targeting for pharmacological and cellular therapies."	"The Signature Series Symposium &quot;Cellular Therapies for Orthopaedics and Musculoskeletal Disease Proven and Unproven Therapies-Promise, Facts and Fantasy&quot; was held as a pre-meeting of the 26<sup>th</sup> International Society for Cellular Therapy (ISCT) annual congress in Montreal, Canada, May 2, 2018. This was the first ISCT program that was entirely dedicated to the advancement of cell-based therapies for musculoskeletal diseases. Cellular therapies in musculoskeletal medicine are a source of great promise and opportunity. They are also the source of public controversy, confusion and misinformation. Patients, clinicians, scientists, industry and government share a commitment to clear communication and responsible development of the field. Therefore, this symposium convened thought leaders from around the world in a forum designed to catalyze communication and collaboration to bring the greatest possible innovation and value to patients with musculoskeletal conditions."	"Platelet-rich plasma (PRP) injections are often used for the treatment of knee osteoarthritis (OA), despite clinical value and cost-effectiveness not being definitely established. PRP injections are considered as a potential means of reducing pain and improving function in patients with knee OA, in the hope of delaying or avoiding the need for surgical intervention. Centers that offer PRP injections usually charge patients out of pocket and directly market services. Therefore, the purpose of this study was to quantify the current (1) prices and (2) marketed clinical efficacy of autologous PRP injections for knee OA. A prospective cross-sectional study was performed based on 286 centers identified in the United States offering PRP injections for knee OA. A total of 179 (73.4%) centers were successfully contacted via e-mail or phone, using a simulated 52-year-old male patient with knee OA. Scripted questions were asked by the simulated patient to determine the current marketed prices and clinical efficacy, either reported as &quot;good results&quot; or &quot;symptomatic improvement,&quot; claimed by each treating center. The mean price for a single unilateral knee same-day PRP injection was $714 with a standard deviation of $144 (95% confidence interval [CI]: $691-737, n = 153). The mean claim of clinical efficacy was 76% with a standard deviation of 11% (95% CI: 73.5-78.3%, n = 84). Out of the 84 clinics, 10 claimed &quot;90 to 100% efficacy,&quot; 27 claimed &quot;80 to 90%,&quot; 29 claimed &quot;70 to 80%,&quot; 9 claimed &quot;60 to 70%,&quot; 8 claimed &quot;50 to 60%,&quot; and 1 claimed &quot;40 to 60%.&quot; These findings provide a unique perspective on the PRP market for the treatment of knee OA that is valuable to physicians and health care providers in providing better education to patients on the associated costs and purported clinical benefits of PRP injections."	"Connective tissue progenitors (CTPs) embody the heterogeneous stem and progenitor cell populations present in native tissue. CTPs are essential to the formation and remodeling of connective tissue and represent key targets for tissue-engineering and cell-based therapies. To better understand and characterize CTPs, we aimed to compare the (i) concentration and prevalence, (ii) early in vitro biological behavior and (iii) expression of surface-markers and transcription factors among cells derived from marrow space (MS), trabecular surface (TS), and adipose tissues (AT). Cancellous-bone and subcutaneous-adipose tissues were collected from 8 patients. Cells were isolated and cultured. Colony formation was assayed using Colonyze software based on ASTM standards. Cell concentration ([Cell]), CTP concentration ([CTP]) and CTP prevalence (PCTP) were determined. Attributes of culture-expanded cells were compared based on (i) effective proliferation rate and (ii) expression of surface-markers CD73, CD90, CD105, SSEA-4, SSEA-3, SSEA-1/CD15, Cripto-1, E-Cadherin/CD324, Ep-CAM/CD326, CD146, hyaluronan and transcription factors Oct3/4, Sox-2 and Nanog using flow cytometry. Mean [Cell], [CTP] and PCTP were significantly different between MS and TS samples (P = 0.03, P = 0.008 and P= 0.0003), respectively. AT-derived cells generated the highest mean total cell yield at day 6 of culture-4-fold greater than TS and more than 40-fold greater than MS per million cells plated. TS colonies grew with higher mean density than MS colonies (290 ± 11 versus 150 ± 11 cell per mm<sup>2</sup>; P = 0.0002). Expression of classical-mesenchymal stromal cell (MSC) markers was consistently recorded (&gt;95%) from all tissue sources, whereas all the other markers were highly variable. The prevalence and biological potential of CTPs are different between patients and tissue sources and lack variation in classical MSC markers. Other markers are more likely to discriminate differences between cell populations in biological performance. Understanding the underlying reasons for variation in the concentration, prevalence, marker expression and biological potential of CTPs between patients and source tissues and determining the means of managing this variation will contribute to the rational development of cell-based clinical diagnostics and targeted cell-based therapies."	"The orthopedic field has experienced several major practice-changing pivotal shifts in the past several decades, such as the invention and application of the arthroscope or the implementation and advancement of joint arthroplasties. Most of these previous breakthroughs have focused on surgical techniques and devices. However, the next major advance in the field is likely to be related to biologic treatments. Although still in its early stage of development, orthopedic regenerative medicine, including cellular therapies, represents a great opportunity, since we are only beginning to understand their biological potential. The main challenge in this pathway is to translate the promising results obtained by basic scientists to clinical practice. This work reviewed the market and clinical evidence, as well as future perspectives, concerning cellular therapies in orthopedics."	"Cell-based therapies development for the treatment of osteoarthritis (OA) requires an understanding of the disease progression and attributes of the cells resident in cartilage. This study focused on quantitative assessment of the concentration and biological potential of stem and progenitor cells resident in different zones of cartilage displaying macroscopic Outerbridge grade 1-2 OA, and their correlation with OA progression based on established histologic scoring system. Lateral femoral condyles were collected from 15 patients with idiopathic OA and varus knees undergoing total knee arthroplasty. Superficial(Csp , top ∼ 500 µm) and deep cartilage(Cdp ) was separated. Chondrogenic Connective Tissue Progenitors (CTP-C) were assayed by standardized Colony-Forming-Unit assay using automated image analysis (Colonyze<sup>TM</sup> ) based on ASTM standard F-2944-12. Cell concentration (cells/mg) was significantly greater in Csp (median: 7,000; range: 3,440-17,600) than Cdp (median: 5,340; range: 3,393-9,660), p = 0.039. Prevalence (CTPs/million cells) was not different between Csp (median: 1,274; range: 0-3,898) and Cdp (median:1,365; range:0-6,330), p = 0.42. In vitro performance of CTP-C progeny varied widely within and between patients, manifest by variation in colony size and morphology. Mean histopathological Mankin score was 4.7 (SD = 1.2), representing mild to moderate OA. Tidemark breach by blood vessels was associated with lower Csp cell concentration (p = 0.02). Matrix degradation was associated with lower Cdp cell and CTP-C concentration (p = 0.015 and p = 0.095, respectively), independent of articular surface changes. These findings suggest that the initiation of OA may occur in either superficial or deep zones. The pathological changes affect CTP-Cs in Csp and Cdp cartilage zones differently. The heterogeneity among the available CTP-Cs in Csp and Cdp suggests performance-based selection to optimize cell-sourcing strategies for therapy. © 2017 Orthopaedic Research Society. Published by Wiley Periodicals, Inc. J Orthop Res 36:1728-1738, 2018."	"The rational design and optimization of tissue engineering strategies for cell-based therapy requires a baseline understanding of the concentration and prevalence of osteogenic progenitor cell populations in the source tissues. The aim of this study was to (1) define the efficiency of, and variation among individuals in, bone marrow aspiration as a means of osteogenic connective tissue progenitor (CTP-O) harvest compared with harvest from iliac cancellous bone, and (2) determine the location of CTP-Os within native cancellous bone and their distribution between the marrow-space and trabecular-surface tissue compartments. Eight 2-mL bone marrow aspiration (BMA) samples and one 7-mm transcortical biopsy sample were obtained from the anterior iliac crest of 33 human subjects. Two cell populations were obtained from the iliac cancellous bone (ICB) sample. The ICB sample was placed into αMEM (alpha-minimal essential medium) with antibiotic-antimycotic and minced into small pieces (1 to 2 mm in diameter) with a sharp osteotome. Cells that could be mechanically disassociated from the ICB sample were defined as marrow-space (IC-MS) cells, and cells that were disassociated only after enzymatic digestion were defined as trabecular-surface (IC-TS) cells. The 3 sources of bone and marrow-derived cells were compared on the basis of cellularity and the concentration and prevalence of CTP-Os through colony-forming unit (CFU) analysis. Large variation was seen among patients with respect to cell and CTP-O yield from the IC-MS, IC-TS, and BMA samples and in the relative distribution of CTP-Os between the IC-MS and IC-TS fractions. The CTP-O prevalence was highest in the IC-TS fraction, which was 11.4-fold greater than in the IC-MS fraction (p &lt; 0.0001) and 1.7-fold greater than in the BMA fraction. However, the median concentration of CTP-Os in the ICB (combining MS and TS fractions) was only 3.04 ± 1.1-fold greater than that in BMA (4,265 compared with 1,402 CTP/mL; p = 0.00004). Bone marrow aspiration of a 2-mL volume at a given needle site is an effective means of harvesting CTP-Os, albeit diluted with peripheral blood. However, the median concentration of CTP-Os is 3-fold less than from native iliac cancellous bone. The distribution of CTP-Os between the IC-MS and IC-TS fractions varies widely among patients. Bone marrow aspiration is an effective means of harvesting CTP-Os but is associated with dilution with peripheral blood. Overall, we found that 63.5% of all CTP-Os within iliac cancellous bone resided on the trabecular surface; however, 48% of the patients had more CTP-Os contributed by the IC-MS than the IC-TS fraction."
+"Nagy, Laura"	"Inflammation and Immunity"	31009094	30710579	30294325	29597356	29374837	29142263	28647568	28257601	28165624	28087985	"Macrophage migration inhibitory factor (MIF), a pluripotent immune regulator, is an emerging mediator in alcohol-related liver disease (ALD). MIF is associated with ALD progression through its chemokine- and cytokine-like activities. Mechanistic studies into the role of MIF in ethanol (EtOH)-induced liver injury were performed in Mif<sup>-/-</sup> mice and in C57BL/6J mice treated with a small-molecule MIF antagonist, MIF098, after Gao-Binge (acute-on-chronic) EtOH feeding, an EtOH feeding protocol associated with hepatic neutrophilia and induction of the unfolded protein response (UPR). The MIF axis, for example, MIF and MIF receptors invariant polypeptide of major histocompatibility complex, class II antigen-associated (CD74), CXCR2, CXCR4, and CXCR7, was enhanced in the livers of alcoholic hepatitis (AH) patients as compared to healthy controls. Mif<sup>-/-</sup> mice were protected from hepatocellular injury after Gao-Binge feeding, independent of neutrophilia and inflammation, but were associated with the UPR. Interestingly, the UPR signature in AH patients and in mice following Gao-Binge feeding was biased toward cell death with increased expression of pro-cell death CCAAT-enhancer-binding protein homologous protein (CHOP) and decreased prosurvival GRP78. The UPR and liver injury 6 hours after binge were prevented both in Mif<sup>-/-</sup> mice and in MIF098-treated mice. However, both MIF interventions led to increased liver injury and exacerbated the hepatic UPR 9 hours after binge. Induction of upstream UPR signaling and expression of CHOP protein by thapsigargin in alpha mouse liver 12 hepatocytes were blunted by coexposure to MIF098, directly connecting MIF to UPR in hepatocytes. The current study revealed that, in addition to its cytokine/chemokine functions, MIF is an upstream regulator of UPR in response to EtOH feeding in mice. Importantly, both MIF and UPR can either protect or contribute to liver injury, dependent upon the stage or severity of EtOH-induced liver injury."	"Interferon regulatory factor 3 (IRF3) is a transcription factor mediating antiviral responses, yet recent evidence indicates that IRF3 also has critical non-transcriptional functions, including activating RIG-I-like receptors-induced IRF-3-mediated pathway of apoptosis (RIPA) and restricting activity of NF-κB. Using a novel murine model expressing only non-transcriptional IRF3 activity (Irf3<sup>S1/S1</sup>), we tested the hypothesis that non-transcriptional functions of IRF3 modulate innate immune responses in the Gao-binge (acute-on-chronic) model of alcohol-related liver disease. IRF3 and IRF3-mediated signals were analysed in liver samples from 5 patients transplanted for alcoholic hepatitis and 5 healthy controls. C57BL/6, Irf3<sup>-/-</sup> and Irf3<sup>S1/S1</sup> mice were exposed to Gao-binge ethanol-induced liver injury. IRF3-mediated RIPA was investigated in cultured macrophages. Phospho-IRF3 and IRF3-mediated signals were elevated in livers of patients with alcoholic hepatitis. In C57BL/6 mice, Gao-binge ethanol exposure activated IRF3 signaling and resulted in hepatocellular injury. Indicators of liver injury were differentially impacted by Irf3 genotype. Irf3<sup>-/-</sup>, but not Irf3<sup>S1/S1</sup>, mice were protected from steatosis, elevated alanine/aspartate aminotransferase levels and inflammatory cytokine expression. In contrast, neutrophil accumulation and endoplasmic reticulum stress were independent of genotype. Protection from Gao-binge injury in Irf3<sup>-/-</sup> mice was associated with an increased ratio of Ly6C<sup>low</sup> (restorative) to Ly6C<sup>high</sup> (inflammatory) cells compared to C57BL/6 and Irf3<sup>S1/S1</sup> mice. Reduced ratios of Ly6C<sup>low</sup>/Ly6C<sup>high</sup> in C57BL/6 and Irf3<sup>S1/S1</sup> mice were associated with increased apoptosis in the Ly6C<sup>low</sup> population in response to Gao-binge. Activation of primary macrophage cultures with Poly (I:C) induced translocation of IRF3 to the mitochondria, where it associated with Bax and activated caspases 3 and 9, processes indicative of activation of the RIPA pathway. Taken together, these data identify that the non-transcriptional function of IRF3 plays an important role in modulating the innate immune environment in response to Gao-binge ethanol exposure, via regulation of immune cell apoptosis. Activation of the innate immune system contributes to inflammation in the progression of alcohol-related liver disease, as well as to the resolution of injury. Here we show that the protein IRF3 modulates the innate immune environment of the liver in a mouse model of alcoholic hepatitis. It does this by increasing the apoptotic cell death of immune cells that promote the resolution of injury."	"Background and aims: Chronic ethanol exposure results in inflammation in adipose tissue; this response is associated with activation of complement as well as the development of alcohol-related liver disease (ALD). Adipose communicates with other organs, including liver, via the release of soluble mediators, such as adipokines and cytokines, characterized as the &quot;adipose secretome.&quot; Here we investigated the role of the anaphaylatoxin receptors C3aR and C5aR1 in the development of adipose tissue inflammation and regulation of the adipose secretome in murine ALD (mALD). Methods: Wild-type C57BL/6 (WT), C3aR<sup>-/-</sup>, and C5aR1<sup>-/-</sup> mice were fed Lieber-DeCarli ethanol diet for 25 days (6% v/v, 32% kcal) or isocaloric control diets; indicators of inflammation and injury were assessed in gonadal adipose tissue. The adipose secretome was characterized in isolated adipocytes and stromal vascular cells. Results: Ethanol feeding increased the expression of adipokines, chemokines and leukocyte markers in gonadal adipose tissue from WT mice; C3aR<sup>-/-</sup> were partially protected while C5aR1<sup>-/-</sup> mice were completely protected. In contrast, induction of CYP2E1 and accumulation of TUNEL-positive cells in adipose in response to ethanol feeding was independent of genotype. Bone marrow chimeras, generated with WT and C5aR1<sup>-/-</sup> mice, revealed C5aR1 expression on non-myeloid cells, likely to be adipocytes, contributed to ethanol-induced adipose inflammation. Chronic ethanol feeding regulated both the quantity and distribution of adipokines secreted from adipocytes in a C5aR1-dependent mechanism. In WT mice, chronic ethanol feeding induced a predominant release of pro-inflammatory adipokines from adipocytes, while the adipose secretome from C5aR1<sup>-/-</sup> mice was characterized by an anti-inflammatory/protective profile. Further, the cargo of adipocyte-derived extracellular vesicles (EVs) was distinct from the soluble secretome; in WT EVs, ethanol increased the abundance of pro-inflammatory mediators while EV cargo from C5aR1<sup>-/-</sup> adipocytes contained a greater diversity and more robust expression of adipokines. Conclusions: C3aR and C5aR1 are potent regulators of ethanol-induced adipose inflammation in mALD. C5aR1 modulated the impact of chronic ethanol on the content of the adipose secretome, as well as influencing the cargo of an extensive array of adipokines from adipocyte-derived EVs. Taken together, our data demonstrate that C5aR1 contributes to ethanol-mediated changes in the adipose secretome, likely contributing to intra-organ injury in ALD."	"Complement plays a crucial role in microbial defense and clearance of apoptotic cells. Emerging evidence suggests complement is an important contributor to alcoholic liver disease. While complement component 1, Q subcomponent (C1q)-dependent complement activation contributes to ethanol-induced liver injury, the role of the alternative pathway in ethanol-induced injury is unknown. Activation of complement via the classical and alternative pathways was detected in alcoholic hepatitis patients. Female C57BL/6J [wild type (WT)], C1q-deficient ( C1qa<sup>-/-</sup>, lacking classical pathway activation), complement protein 4-deficient ( C4<sup>-/-</sup>, lacking classical and lectin pathway activation), complement factor D-deficient ( FD<sup>-/-</sup>, lacking alternative pathway activation), and C1qa/FD<sup>-/-</sup> (lacking classical and alternative pathway activation) mice were fed an ethanol-containing liquid diet or pair-fed control diet for 4 or 25 days. Following chronic ethanol exposure, liver injury, steatosis, and proinflammatory cytokine expression were increased in WT but not C1qa<sup>-/-</sup>, C4<sup>-/-</sup>, or C1qa/FD<sup>-/-</sup> mice. In contrast, liver injury, steatosis, and proinflammatory mediators were robustly increased in ethanol-fed FD<sup>-/-</sup> mice compared with WT mice. Complement activation, assessed by hepatic accumulation of C1q and complement protein 3 (C3) cleavage products (C3b/iC3b/C3c), was evident in livers of WT mice in response to both short-term and chronic ethanol. While C1q accumulated in ethanol-fed FD<sup>-/-</sup> mice (short term and chronic), C3 cleavage products were detected after short-term but not chronic ethanol. Consistent with impaired complement activation, chronic ethanol induced the accumulation of apoptotic cells and fibrogenic responses in the liver of FD<sup>-/-</sup> mice. These data highlight the protective role of complement factor D (FD) and suggest that FD-dependent amplification of complement is an adaptive response that promotes hepatic healing and recovery in response to chronic ethanol. NEW &amp; NOTEWORTHY Complement, a component of the innate immune system, is an important pathophysiological contributor to ethanol-induced liver injury. We have identified a novel role for factor D, a component of the alternative pathway, in protecting the liver from ethanol-induced inflammation, accumulation of apoptotic hepatocytes, and profibrotic responses. These data indicate a dual role of complement with regard to inflammatory and protective responses and suggest that accumulation of apoptotic cells impairs hepatic healing/recovery during alcoholic liver disease."	"Both the innate and adaptive immune systems are critical for the maintenance of healthy liver function. Immune activity maintains the tolerogenic capacity of the liver, modulates hepatocellular response to various stresses, and orchestrates appropriate cellular repair and turnover. However, in response to heavy, chronic alcohol exposure, the finely tuned balance of pro- and anti-inflammatory functions in the liver is disrupted, leading to a state of chronic inflammation in the liver. Over time, this non-resolving inflammatory response contributes to the progression of alcoholic liver disease (ALD). Here we review the contributions of the cellular components of the immune system to the progression of ALD, as well as the pathophysiological roles for soluble and circulating mediators of immunity, including cytokines, chemokines, complement, and extracellular vesicles, in ALD. Finally, we compare the role of the innate immune response in health and disease in the liver to our growing understanding of the role of neuroimmunity in the development and maintenance of a healthy central nervous system, as well as the progression of neuroinflammation."	"TLR4 signaling in hepatic macrophages is increased after chronic ethanol feeding. Treatment of hepatic macrophages after chronic ethanol feeding with small-specific sized hyaluronic acid 35 (HA35) normalizes TLR4 signaling; however, the mechanisms for HA35 action are not completely understood. Here we used Next Generation Sequencing of microRNAs to identify negative regulators of TLR4 signaling reciprocally modulated by ethanol and HA35 in hepatic macrophages. Eleven microRNAs were up-regulated by ethanol; only 4 microRNAs, including miR291b, were decreased by HA35. Bioinformatics analysis identified Tollip, a negative regulator of TLR4, as a target of miR291b. Tollip expression was decreased in hepatic macrophages from ethanol-fed rats, but treatment with HA35 or transfection with a miR291b hairpin inhibitor restored Tollip expression and normalized TLR4-stimulated TNFα expression. In peripheral blood monocytes isolated from patients with alcoholic hepatitis, expression of TNFα mRNA was robustly increased in response to challenge with lipopolysaccharide. Importantly, pre-treatment with HA35 reduced TNFα expression by more than 50%. Taken together, we have identified miR291b as a critical miRNA up-regulated by ethanol. Normalization of the miR291b → Tollip pathway by HA35 ameliorated ethanol-induced sensitization of TLR4 signaling in macrophages/monocytes, suggesting that HA35 may be a novel therapeutic agent in the treatment of ALD."	"Macrophage migration inhibitory factor (MIF) is a multi-potent cytokine that contributes to the inflammatory response to injury. MIF is expressed by multiple cell types; however, the cellular source and actions of MIF in alcoholic liver disease (ALD) are not well known. Here we tested the hypothesis that non-myeloid cells, specifically hepatocytes, are an important cellular source of MIF in ALD. MIF expression was measured in HuH7 and differentiated THP-1 cells in response to ethanol. Ethanol-induced liver injury was assessed in C57BL/6 (WT) and Mif<sup>-/-</sup> bone marrow chimeras. MIF was measured in peripheral and suprahepatic serum, as well as visualized by immunohistochemistry in liver biopsies, from patients with alcoholic hepatitis (AH). HuH7 hepatocytes, but not THP-1 macrophages, released MIF in response to ethanol challenge in culture. In chimeric mice expressing MIF in non-myeloid cells (Mif<sup>-/-</sup>→WT), chronic ethanol feeding increased ALT/AST, hepatic steatosis, and expression of cytokine/chemokine mRNA. In contrast, chimeric mice not expressing MIF in non-myeloid cells (WT→Mif<sup>-/-</sup>) were protected from ethanol-induced liver injury. Immunohistochemical staining of liver biopsies from patients with AH revealed a predominant localization of MIF to hepatocytes. Interestingly, the concentration of MIF in suprahepatic serum, but not peripheral serum, was positively correlated with clinical indicators of disease severity and with an increased risk of mortality in patients with AH. Taken together, these data provide evidence that hepatocyte-derived MIF is critical in the pathogenesis of ALD in mice and likely contributes to liver injury in patients with AH. Lay summary: Alcoholic liver disease is a major cause of preventable mortality worldwide, and lacks specific pharmacological therapies. Recent studies have recognized that macrophage migration inhibitor factor (MIF) has a critical role in the inflammatory response to liver damage. However, the cells that produce this protein are still unknown. Our present findings reveal that hepatocytes, the main cell type in the liver, are primarily responsible for MIF production in response to alcohol, which promotes liver injury. Our study suggests that drugs inhibiting MIF production could be beneficial in treating patients with liver disease due to excessive alcohol consumption."	"Increased inflammatory signaling by Kupffer cells contributes to alcoholic liver disease (ALD). Here we investigated the impact of small, specific-sized hyaluronic acid of 35 kD (HA35) on ethanol-induced sensitization of Kupffer cells, as well as ethanol-induced liver injury in mice. Unbiased analysis of microRNA (miRNA) expression in Kupffer cells identified miRNAs regulated by both ethanol and HA35. Toll-like receptor 4 (TLR4)-mediated signaling was assessed in primary cultures of Kupffer cells from ethanol- and pair-fed rats after treatment with HA35. Female C57BL6/J mice were fed ethanol or pair-fed control diets and treated or not with HA35. TLR4 signaling was increased in Kupffer cells by ethanol; this sensitization was normalized by ex vivo treatment with HA35. Next generation sequencing of Kupffer cell miRNA identified miRNA 181b-3p (miR181b-3p) as sensitive to both ethanol and HA35. Importin α5, a protein involved in p65 translocation to the nucleus, was identified as a target of miR181b-3p; importin α5 protein was increased in Kupffer cells from ethanol-fed rats, but decreased by HA35 treatment. Overexpression of miR181b-3p decreased importin α5 expression and normalized lipopolysaccharide-stimulated tumor necrosis factor α expression in Kupffer cells from ethanol-fed rats. In a mouse model of ALD, ethanol feeding decreased miR181b-3p in liver and increased expression of importin α5 in nonparenchymal cells. Treatment with HA35 normalized these changes and also protected mice from ethanol-induced liver and intestinal injury. miR181b-3p is dynamically regulated in Kupffer cells and mouse liver in response to ethanol and treatment with HA35. miR181b-3p modulates expression of importin α5 and sensitivity of TLR4-mediated signaling. This study identifies a miR181b-3p-importin α5 axis in regulating inflammatory signaling pathways in hepatic macrophages. (Hepatology 2017;66:602-615)."	"Toll-like receptor 4 (TLR4) is critical for ethanol (EtOH)-induced liver injury. TLR4 signaling is mediated by 2 proximal adaptor molecules: myeloid differentiation primary response protein (MyD88) and TLR-domain-containing adaptor-inducing interferon-β (TRIF). Studies utilizing global knockouts of MyD88 and TRIF identified a predominant role for TRIF signaling in the progression of EtOH-induced liver injury. In contrast, IL-1 receptor, which signals solely via the MyD88 pathway, is also known to mediate EtOH-induced liver injury. We postulated that a cell-specific role for MyD88 in myeloid cells might explain these apparently discrepant roles of MyD88. Here we made use of myeloid-specific MyD88-deficient (MyD88<sup>LysM-</sup><sup>KO</sup> ) mice generated by crossing LysM-CRE mice with MyD88<sup>fl/fl</sup> mice to test this hypothesis. MyD88<sup>LysM-</sup><sup>KO</sup> and littermate controls were fed a Lieber-DeCarli EtOH-containing diet or pair-fed control diets for 25 days. Littermate control, but not MyD88<sup>LysM-</sup><sup>KO</sup> , mice developed early stages of EtOH-induced liver injury including elevated plasma alanine aminotransferase and increased hepatic triglycerides. Lobular inflammation and expression of pro-inflammatory cytokines/chemokines was increased in control but not MyD88<sup>LysM-</sup><sup>KO</sup> . Further, EtOH-induced inflammasome activation, indicated by the presence of cleaved caspase-1 and mature IL-1β protein, was also ameliorated in livers of MyD88<sup>LysM-</sup><sup>KO</sup> mice. In contrast, chronic EtOH-induced apoptosis, assessed via TUNEL staining, was independent of myeloid-MyD88 expression. Collectively, these data demonstrate a cell-specific role for MyD88 in the development of chronic EtOH-induced liver injury. While MyD88<sup>LysM-</sup><sup>KO</sup> still exhibited hepatocellular apoptosis in response to chronic EtOH, the absence of MyD88 on myeloid cells prevented the development of hepatic steatosis and inflammation."	"Impaired gut-liver axis is a potential factor contributing to alcoholic liver disease. Ethanol depletes intestinal integrity and causes gut dysbiosis. Butyrate, a fermentation byproduct of gut microbiota, is altered negatively following chronic ethanol exposure. This study aimed to determine whether prophylactic tributyrin could protect the intestinal barrier and liver in mice during combined chronic-binge ethanol exposure. C57BL/6J mice exposed to 5% v/v ethanol-containing diet for 10 days received a single ethanol gavage (5 g/kg) 9 h before euthanasia. Control mice were isocalorically pair-fed maltose dextrin for ethanol. Diets were supplemented (5 mM) with tributyrin or glycerol. Intestine and liver disease activity was assessed histologically. Protein and mRNA expression of tight junction (TJ) proteins, toll-like receptors, and tumor necrosis factor-alpha were assessed. Caco-2 monolayers with or without ethanol exposure and/or sodium butyrate were used to test butyrate's direct effects on intestinal integrity. Chronic-binge ethanol feeding impaired intestinal TJ protein co-localization staining; however, tributyrin co-treatment mitigated these effects. Ethanol depleted TJ and transepithelial electrical resistance in Caco-2 monolayers, but butyrate co-treatment reduced these effects. Hepatic toll-like receptor mRNA expression and tumor necrosis factor-alpha protein expression was induced by ethanol; however, the response was significantly dampened in mice co-treated with tributyrin. Tributyrin altered localization of both neutrophils and single hepatocyte death: Leukocytes and apoptotic hepatocytes localized predominantly around the portal tract in ethanol-only treated mice, whereas localization predominated around the central vein in ethanol-tributyrin mice. Prophylactic tributyrin supplementation mitigated effects of combined chronic-binge ethanol exposure on disruption of intestinal TJ localization and intestinal permeability and liver injury."
+"Nowacki, Amy"	"Quantitative Health Sciences"	28937359	26195576	25586325	23940836	23565103	20857339	30016197	30914495	30789459	30673077	NA	"Autologous adipose injection (AAI) is a recognized method for vocal fold augmentation. The study's purpose is to explore short- and long-term outcomes of AAI. Retrospective chart review of 43 patients undergoing AAI was performed; patient perception of outcome, Voice Handicap Index (VHI), maximum phonatory time (MPT), and disposition were evaluated. Over 5 years, 43 AAI patients had documented postoperative follow-up (25 paralysis, 8 paresis, 9 bowing/presbylarynges, and 5 scar/sulci). Mean follow-up was 32 weeks. There was gradual patient loss to follow-up. Thirty-nine of 40 (98%) had patient-reported improvement at 6 weeks, 28 of 34 (82%) had improvement at 2 to 6 months, with 10 of 12 (83%) sustaining their improvement for &gt;1 year. Significant improvement in mean VHI was observed at 4 to 6 weeks (mean reduction, 26; P &lt; .0001) and 2 to 6 months (mean reduction, 23; P &lt; .0001). Improvement in mean MPT was observed at 4 to 6 weeks (mean increase, 8 s; P &lt; .0001), 2 to 6 months (6 s; P = .007), and &gt;1 year (4 s; P = .03). Eight patients went on to medialization laryngoplasty. AAI successfully augments vocal folds in short-term outcomes with some gradual decrease in effectiveness. Although patient attrition limited conclusions, objective long-term benefit may occur in &gt;50% of patients."	"Response-adaptive randomization (RAR) offers clinical investigators benefit by modifying the treatment allocation probabilities to optimize the ethical, operational, or statistical performance of the trial. Delayed primary outcomes and their effect on RAR have been studied in the literature; however, the incorporation of surrogate outcomes has not been fully addressed. We explore the benefits and limitations of surrogate outcome utilization in RAR in the context of acute stroke clinical trials. We propose a novel surrogate-primary (S-P) replacement algorithm where a patient's surrogate outcome is used in the RAR algorithm only until their primary outcome becomes available to replace it. Computer simulations investigate the effect of both the delay in obtaining the primary outcome and the underlying surrogate and primary outcome distributional discrepancies on complete randomization, standard RAR and the S-P replacement algorithm methods. Results show that when the primary outcome is delayed, the S-P replacement algorithm reduces the variability of the treatment allocation probabilities and achieves stabilization sooner. Additionally, the S-P replacement algorithm benefit proved to be robust in that it preserved power and reduced the expected number of failures across a variety of scenarios."	"Background. Propensity score usage seems to be growing in popularity leading researchers to question the possible role of propensity scores in prediction modeling, despite the lack of a theoretical rationale. It is suspected that such requests are due to the lack of differentiation regarding the goals of predictive modeling versus causal inference modeling. Therefore, the purpose of this study is to formally examine the effect of propensity scores on predictive performance. Our hypothesis is that a multivariable regression model that adjusts for all covariates will perform as well as or better than those models utilizing propensity scores with respect to model discrimination and calibration. Methods. The most commonly encountered statistical scenarios for medical prediction (logistic and proportional hazards regression) were used to investigate this research question. Random cross-validation was performed 500 times to correct for optimism. The multivariable regression models adjusting for all covariates were compared with models that included adjustment for or weighting with the propensity scores. The methods were compared based on three predictive performance measures: (1) concordance indices; (2) Brier scores; and (3) calibration curves. Results. Multivariable models adjusting for all covariates had the highest average concordance index, the lowest average Brier score, and the best calibration. Propensity score adjustment and inverse probability weighting models without adjustment for all covariates performed worse than full models and failed to improve predictive performance with full covariate adjustment. Conclusion. Propensity score techniques did not improve prediction performance measures beyond multivariable adjustment. Propensity scores are not recommended if the analytical goal is pure prediction modeling. "	"Assessment is such an integral part of the educational system that we rarely reflect on its value and impact. Portfolios have gained in popularity, but much attention has emphasized the end-user and portfolio assessment. Here we focus on the portfolio creator (the student) and examine whether their educational needs are met with such an assessment method. This study aims to investigate how assessment practices influence classroom performance and the learning experience of the student in a graduate education setting. Studied were 33 medical students at the Cleveland Clinic Lerner College of Medicine of Case Western Reserve University, a program utilizing a portfolio-based system. The students may elect to simultaneously enroll in a Masters program; however, these programs employ traditional letter grades. Thus creating a unique opportunity to assess 25 portfolio only (P) students and 8 portfolio and grade (PG) students concurrently taking a course that counts for both programs. Classroom performance was measured via a comprehensive evaluation where the PG students scored modestly better (median total scores, 72% P vs. 76% PG). Additionally, a survey was conducted to gain insight into student's perspective on how assessment method impacts the learning experience. The students in the PG group (those receiving a grade) reported increased stress but greater affirmation and self-assurance regarding their knowledge and skill mastery. Incorporation of such affirmation remains a challenge for portfolio-based systems and an area for investigation and improvement."	"Increasingly, the goal of many studies is to determine if new therapies have equivalent or noninferior efficacies to the ones currently in use. These studies are called equivalence/noninferiority studies, and the statistical methods for their analysis require only simple modifications to the traditional hypotheses testing framework. Nevertheless, important and subtle issues arise with the application of such methods. This article describes the concepts and statistical methods involved in testing equivalence/noninferiority. The aim is to enable the clinician to understand and critically assess the growing number of articles utilizing such methods."	"Objective Unexplained chronic cough (UCC) is a perplexing condition treated with neuromodulators. Although previous literature describes the effectiveness of neuromodulators, there is little on the development of tachyphylaxis or dependence to neuromodulators over time. Our objective is to capture the experience of a large cohort of patients with UCC over an extended period, looking for these 2 phenomena. Study Design Case series with chart review. Setting Tertiary care hospital. Subjects and Methods We performed a retrospective review of patients diagnosed with UCC from 2010 to 2014. Patient outcomes were measured through percentage improvement scores. Treatment failures were attributed to no benefit, intolerable side effects, or tachyphylaxis. Tachyphylaxis was defined as the need for higher doses of medication following diminishing therapeutic benefit, while dependence was defined as a failure to stop therapy following attempted de-escalation or resurgence following drug cessation. Results Sixty-eight patients were included in the study. Tachyphylaxis was observed among 35% of patients while dependence was observed among 27% of successfully treated patients, together effecting &gt;50% of the cohort. Sixty-eight percent of patients ultimately experienced successful treatment with neuromodulators, demonstrating strikingly distinct responses to different neuromodulator drug classes. Conclusion Tachyphylaxis and dependence occur frequently during UCC treatment and have a major impact on treatment outcomes. Patients sometimes demonstrate distinct responses to different neuromodulator classes. The majority of patients will experience successful treatment for their cough, although several trials may be required."	"Alpha-1 antitrypsin deficiency is frequently underrecognized. Individuals with symptoms often experience long diagnostic delays. Although a delayed diagnosis is logically presumed to be associated with adverse effects, confirmatory evidence that a delay in diagnosis confers harm is sparse. The current study characterized the association between a delayed diagnosis and the clinical status at the time of diagnosis. Patients with newly diagnosed severe deficiency of alpha-1 antitrypsin received questionnaires that assessed self-reported diagnostic delay, the St George Respiratory Questionnaire (SGRQ) and COPD Assessment Test. Results of spirometry were retrieved and the relationship between the diagnostic delay interval and FEV1% predicted, SGRQ, and COPD Assessment Test were assessed. Forty subjects were recruited (31 with PI*ZZ, 9 with PI*SZ). Values for FEV1% predicted, SGRQ, and COPD Assessment Test were available for 17, 40, and 32 subjects, respectively. The relationship between the diagnostic delay interval and all outcomes was directionally consistent with an adverse impact of increasing diagnostic delay. For each additional year of diagnostic delay, the subject's FEV1% predicted decreased by 0.3% (P = .66), The SGRQ Total score increased by 1.6 points (P &lt; .001), and the COPD Assessment Test score increased by 0.7 points (P = .004). The results of this analysis were consistent with a delayed diagnosis of alpha-1 antitrypsin deficiency being associated with worse COPD-related symptoms and functional status, and with a trend toward worsened air-flow obstruction. Given that alpha-1 antitrypsin deficiency is associated with accelerated emphysema progression, these findings underscore the importance of early detection of alpha-1 antitrypsin deficiency and reinforce guidelines that endorse alpha-1 antitrypsin deficiency testing in all adults with fixed air-flow obstruction and first-degree relatives of individuals with severe deficiency of alpha-1 antitrypsin."	"Beginning early in childhood, patients with sickle cell disease (SCD) are at risk of life-threatening and debilitating health events. Despite the high morbidity and mortality of this disease, hematopoietic cell transplantation (HCT), a curative treatment for SCD, remains underutilized. In the literature there is a paucity of data concerning medical decision maker (MDM) awareness of HCT as a treatment option for SCD. The objective of this study was to estimate the proportion of parents/guardians of children with SCD who are aware of HCT as a treatment option, and to identify the demographic factors associated with knowledge of this therapy's curative potential. Between November 2015 and December 2016, 327 parents/guardians were surveyed across 4 clinical sites in 3 Midwestern US cities. Although 82% of parents/guardians had heard of HCT in the past and 78% were aware of the therapy's curative potential, nearly half indicated that they did not know whether HCT could specifically cure their child of the disease. Respondents who had discussed HCT with their child's physician had 5 times higher odds of being aware of HCT's curative potential than those who had not. These findings suggest that additional efforts to enhance MDM knowledge of HCT as well as shared decision making in the use of this therapy, is warranted."	"Risk factors for the development of skin cancer after solid-organ transplant can inform clinical care, but data on these risk factors are limited. To study the association between HLA antigen mismatch and skin cancer incidence after solid-organ transplant. This retrospective cohort study is a secondary analysis of the multicenter Transplant Skin Cancer Network study of 10 649 adults who underwent a primary solid-organ transplant between January 1, 2003, and December 31, 2003, or between January 1, 2008, and December 31, 2008. These participants were identified through the Scientific Registry of Transplant Recipients standard analysis files, which contain data collected mostly by the Organ Procurement and Transplantation Network. Participants were matched to skin cancer outcomes by medical record review. This study was conducted from August 1, 2016, to July 31, 2017. The primary outcome was time to diagnosis of posttransplant skin cancer, including squamous cell carcinoma, melanoma, and Merkel cell carcinoma. The HLA antigen mismatch was calculated based on the 2016 Organ Procurement and Transplantation Network guidelines. Risk of skin cancer was analyzed using a multivariate Cox proportional hazards regression model. In total, 10 649 organ transplant recipients (6776 men [63.6%], with a mean [SD] age of 51 [12] years) contributed 59 923 years of follow-up. For each additional mismatched allele, a 7% to 8% reduction in skin cancer risk was found (adjusted hazard ratio [HR], 0.93; 95% CI, 0.87-0.99; P = .01). Subgroup analysis found the protective effect of HLA antigen mismatch to be statistically significant in lung (adjusted HR, 0.70; 95% CI, 0.56-0.87; P = .001) and heart (adjusted HR, 0.75; 95% CI, 0.60-0.93; P = .008) transplant recipients but not for recipients of liver, kidney, or pancreas. The degree of HLA-DR mismatch, but not HLA-A or HLA-B mismatch, was the most statistically significant for skin cancer risk (adjusted HR, 0.85; 95% CI, 0.74-0.97; P = .01). The HLA antigen mismatch appears to be associated with reductions in the risk of skin cancer after solid-organ transplant among heart and lung transplant recipients; this finding suggests that HLA antigen mismatch activates the tumor surveillance mechanisms that protect against skin cancer in transplant recipients and that skin cancer risk may be higher in patients who received a well-matched organ."
+"O'Connor, Christine"	"Genomic Medicine Institute"	30647114	30127279	24987098	24639223	30405048	30089702	29237840	24599990	22761372	25220471	"Human cytomegalovirus (HCMV) is a ubiquitous pathogen that undergoes latency in cells of the hematopoietic compartment, although the mechanisms underlying establishment and maintenance of latency remain elusive. We previously reported that the HCMV-encoded G protein-coupled receptor (GPCR) homolog US28 is required for successful latent infection. We now show that US28 protein (pUS28) provided in trans complements the US28Δ lytic phenotype in myeloid cells, suggesting that sustained US28 expression is necessary for long-term latency. Furthermore, expression of pUS28 at the time of infection represses transcription from the major immediate early promoter (MIEP) within 24 h. However, this repression is only maintained in the presence of continual pUS28 expression provided in trans Our data also reveal that pUS28-mediated signaling attenuates both expression and phosphorylation of cellular fos (c-fos), an AP-1 transcription factor subunit, to repress MIEP-driven transcription. AP-1 binds to the MIEP and promotes lytic replication, and in line with this we find that US28Δ infection results in an increase in AP-1 binding to the MIEP, compared with WT latent infection. Pharmacological inhibition of c-fos represses the MIEP during US28Δ infection to levels similar to those we observe during WT latent infection. Together, our data reveal that US28 is required for both establishment and long-term maintenance of HCMV latency, which is modulated, at least in part, by repressing functional AP-1 binding to the MIEP."	"US28 is one of four G protein coupled receptors (GPCRs) encoded by human cytomegalovirus (HCMV). The US28 protein (pUS28) is a potent signaling molecule that alters a variety of cellular pathways that ultimately alter the host cell environment. This viral GPCR is expressed not only in the context of lytic replication but also during viral latency, highlighting its multifunctional properties. pUS28 is a functional GPCR, and its manipulation of multiple signaling pathways likely impacts HCMV pathogenesis. Herein, we will discuss the impact of pUS28 on both lytic and latent infection, pUS28-mediated signaling and its downstream consequences, and the influence this viral GPCR may have on disease states, including cardiovascular disease and cancer. We will also discuss the potential for and progress towards exploiting pUS28 as a novel therapeutic to combat HCMV."	"This work represents the first comprehensive quantitative analysis of global histone post-translational modifications (PTMs) from a virus infection, namely human cytomegalovirus (HCMV) infection. We used a nanoLC-MS/MS platform to identify and quantify the dynamic histone H3 and H4 PTMs expressed during HCMV replication in primary fibroblasts. Specifically, we examined the changes in histone PTMs over a 96 h time course to sample the immediate early (IE), early (E), and late (L) stages of viral infection. Several changes in histone H3 and H4 PTMs were observed, including a marked increase in H3K79me2 and H3K27me3K36me2, and a decrease in H4K16ac, highlighting likely epigenetic strategies of transcriptional activation and silencing during HCMV lytic infection. Heavy methyl-SILAC (hm-SILAC) was used to further confirm the histone methylation flux (especially for H3K79) during HCMV infection. We evaluated DOT1L (the H3K79 methyltransferase) mRNA levels in mock and HCMV-infected cells over a 96 h time course, and observed a significant increase in this methyltransferase as early as 24 hpi showing that viral infection up-regulates DOT1L expression, which drives H3K79me2. We then used shRNA to create a DOT1L knockdown cell population, and found that HCMV infection of the knockdown cells resulted in a 10-fold growth defect when compared with infected control cells not subjected to knockdown. This work documents multiple histone PTMs that occur in response to HCMV infection of fibroblasts, and provides a framework for evaluation of the role of epigenetic modifications in the virus-host interaction. "	"All of the cytomegaloviruses discovered to date encode two or more genes with significant homology to G-protein coupled receptors (GPCRs). The functions of these cytomegalovirus GPCRs are just beginning to be elucidated; however, it is clear that they exhibit numerous interesting activities in both in vitro and in vivo systems. In this chapter, we review the various methodologies that can be used to examine biochemical aspects of viral GPCR signaling in vitro as well as examine the biological activity of these viral GPCRs in vitro and in vivo in virus infected cells using recombinant cytomegaloviruses. "	"Human cytomegalovirus (HCMV) is a ubiquitous herpesvirus for which there is no vaccine or cure. This viral infection, once acquired, is life-long, residing latently in hematopoietic cells. However, latently infected individuals with weakened immune systems often undergo HCMV reactivation, which can cause serious complications in immunosuppressed and immunocompromised patients. Current anti-viral therapies target late stages of viral replication, and are often met with therapeutic resistance, necessitating the development of novel therapeutics. In this current study, we identified a naturally-occurring flavonoid compound, deguelin, which inhibits HCMV lytic replication. Our findings reveal that nanomolar concentrations of deguelin significantly suppress the production of the infectious virus. Further, we show that deguelin inhibits the lytic cycle during the phase of the replication cycle consistent with early (E) gene and protein expression. Importantly, our data reveal that deguelin inhibits replication of a ganciclovir-resistant strain of HCMV. Together, our findings identify a novel, naturally occurring compound that may prove useful in the treatment of HCMV replication."	"Infections with human cytomegalovirus (HCMV) are highly prevalent in the general population as the virus has evolved the capacity to undergo distinct replication strategies resulting in lytic, persistent, and latent infections. During the latent life cycle, HCMV resides in subsets of cells within the hematopoietic cell compartment, including hematopoietic progenitor cells (HPCs) and peripheral blood monocytes. Since only a small fraction of these cell types harbor viral genomes during natural latency, identification and analysis of distinct changes mediated by viral infection are difficult to assess. In order to characterize latent infections of HPCs, we used an approach that involves complementation of deficiencies within the human pyrimidine salvage pathway, thus allowing for conversion of labeled uracil into rUTP. Here, we report the development of a recombinant HCMV that complements the defective human pyrimidine salvage pathway, allowing incorporation of thiol containing UTP into all RNA species that are synthesized within an infected cell. This virus grows to wild-type kinetics and can establish a latent infection within two distinct culture models of HCMV latency. Using this recombinant HCMV, we report the specific labeling of transcripts only within infected cells. These transcripts reveal a transcriptional landscape during HCMV latency that is distinct from uninfected cells. The utility of this labeling system allows for the identification of distinct changes within host transcripts and will shed light on characterizing how HCMV establishes and maintains latency.IMPORTANCE HCMV is a significant pathogen that accounts for a substantial amount of complications within the immunosuppressed and immunocompromised. Of particular significance is the capacity of HCMV to reactivate within solid tissue and bone marrow transplant recipients. While it is known that HCMV latency resides within a fraction of HPCs and monocytes, the exact subset of cells that harbor latent viral genomes during natural infections remain uncharacterized. The capacity to identify changes within the host transcriptome during latent infections is critical for developing approaches that therapeutically or physically eliminate latent viral genome containing cells and will represent a major breakthrough for reducing complications due to HCMV reactivation posttransplant. In this report, we describe the generation and use of a recombinant HCMV that allows specific and distinct labeling of RNA species that are produced within virally infected cells. This is a critical first step in identifying how HCMV affects the host cell during latency and more importantly, allows one to characterize cells that harbor latent HCMV."	"Human cytomegalovirus (HCMV) is a prevalent pathogen that establishes lifelong infection in the host. Virus persistence is aided by extensive manipulation of the host immune system, particularly cytokine and chemokine signaling pathways. The HCMV UL111A gene encodes cmvIL-10, an ortholog of human interleukin-10 that has many immunomodulatory effects. We found that cmvIL-10 increased signaling outcomes from human CXCR4, a chemokine receptor with essential roles in hematopoiesis and immune cell trafficking, in response to its natural ligand CXCL12. Calcium flux and chemotaxis to CXCL12 were significantly greater in the presence of cmvIL-10 in monocytes, epithelial cells, and fibroblasts that express CXCR4. cmvIL-10 effects on CXCL12/CXCR4 signaling required the IL-10 receptor and Stat3 activation. Heightened signaling occurred both in HCMV-infected cells and in uninfected bystander cells, suggesting that cmvIL-10 may broadly influence chemokine networks by paracrine signaling during infection. Moreover, CXCL12/CXCR4 signaling was amplified in HCMV-infected cells compared to mock-infected cells even in the absence of cmvIL-10. Enhanced CXCL12/CXCR4 outcomes were associated with expression of the virally encoded chemokine receptor US27, and CXCL12/CXCR4 activation was reduced in cells infected with a deletion mutant lacking US27 (TB40/E-mCherry-US27Δ). US27 effects were Stat3 independent but required close proximity to CXCR4 in cell membranes of either HCMV-infected or US27-transfected cells. Thus, HCMV encodes two proteins, cmvIL-10 and US27, that exhibit distinct mechanisms for enhancing CXCR4 signaling. Either individually or in combination, cmvIL-10 and US27 may enable HCMV to exquisitely manipulate CXCR4 signaling to alter host immune responses and modify cell trafficking patterns during infection.IMPORTANCE The human chemokine system plays a central role in host defense, as evidenced by the many strategies devised by viruses for manipulating it. Human cytomegalovirus (HCMV) is widespread in the human population, but infection rarely causes disease except in immunocompromised hosts. We found that two different HCMV proteins, cmvIL-10 and US27, act through distinct mechanisms to upregulate the signaling activity of a cellular chemokine receptor, CXCR4. cmvIL-10 is a secreted viral cytokine that affects CXCR4 signaling in both infected and uninfected cells, while US27 is a component of the virus particle and impacts CXCR4 activity only in infected cells. Both cmvIL-10 and US27 promote increased intracellular calcium signaling and cell migration in response to chemokine CXCL12 binding to CXCR4. Our results demonstrate that HCMV exerts fine control over the CXCL12/CXCR4 pathway, which could lead to enhanced virus dissemination, altered immune cell trafficking, and serious health implications for HCMV patients."	"Reactivation of human cytomegalovirus (HCMV) is a significant cause of disease and death in immunocompromised patients, underscoring the need to understand how latency is controlled. Here we demonstrate that HCMV has evolved to utilize cellular microRNAs (miRNAs) in cells that promote latency to regulate expression of a viral protein critical for viral reactivation. Our data reveal that hsa-miR-200 miRNA family members target the UL122 (immediate early protein 2) 3' untranslated region, resulting in repression of this viral protein. Utilizing recombinant viruses that mutate the miRNA-binding site compared to the sequence of the wild-type virus results in lytic rather than latent infections in ex vivo infections of primary CD34+ cells. Cells permissive for lytic replication demonstrate low levels of these miRNAs. We propose that cellular miRNA regulation of HCMV is critical for maintenance of viral latency. Human cytomegalovirus (HCMV) is a herpesvirus that infects a majority of the population. Once acquired, individuals harbor the virus for life, where the virus remains, for the most part, in a quiet or latent state. Under weakened immune conditions, the virus can reactivate, which can cause severe disease and often death. We have found that members of a family of small RNAs, termed microRNAs, encoded by human myeloid progenitor cells are capable of repressing a key viral protein, thus enabling the virus to ensure a quiet/latent state. As these progenitor cells mature further down the myeloid lineage toward cells that support active viral replication, the levels of these microRNAs decrease. Together, our data suggest that host cell microRNA regulation of HCMV is important for the quiet/latent state of this pathogen."	"Human cytomegalovirus (HCMV) is a herpesvirus that establishes a lifelong, latent infection within a host. At times when the immune system is compromised, the virus undergoes a lytic reactivation producing infectious progeny. The identification and understanding of the biological mechanisms underlying HCMV latency and reactivation are not completely defined. To this end, we have developed a tractable in vitro model system to investigate these phases of viral infection using a clonal population of myeloid progenitor cells (Kasumi-3 cells). Infection of these cells results in maintenance of the viral genome with restricted viral RNA expression that is reversed with the addition of the phorbol ester 12-O-tetradecanoylphorbol-13-acetate (TPA, also known as PMA). Additionally, a latent viral transcript (LUNA) is expressed at times where viral lytic transcription is suppressed. Infected Kasumi-3 cells initiate production of infectious virus following TPA treatment, which requires cell-to-cell contact for efficient transfer of virus to other cell types. Importantly, lytically infected fibroblast, endothelial, or epithelial cells can transfer virus to Kasumi-3 cells, which fail to initiate lytic replication until stimulated with TPA. Finally, inflammatory cytokines, in addition to the pharmacological agent TPA, are sufficient for transcription of immediate-early (IE) genes following latent infection. Taken together, our findings argue that the Kasumi-3 cell line is a tractable in vitro model system with which to study HCMV latency and reactivation."	"Like many double-stranded DNA viruses, tumor gammaherpesviruses Epstein-Barr virus and Kaposi's sarcoma-associated herpesvirus withstand high internal pressure. Bacteriophage HK97 uses covalent chainmail for this purpose, but how this is achieved noncovalently in the much larger gammaherpesvirus capsid is unknown. Our cryoelectron microscopy structure of a gammaherpesvirus capsid reveals a hierarchy of four levels of organization: (1) Within a hexon capsomer, each monomer of the major capsid protein (MCP), 1,378 amino acids and six domains, interacts with its neighboring MCPs at four sites. (2) Neighboring capsomers are linked in pairs by MCP dimerization domains and in groups of three by heterotrimeric triplex proteins. (3) Small (∼280 amino acids) HK97-like domains in MCP monomers alternate with triplex heterotrimers to form a belt that encircles each capsomer. (4) One hundred sixty-two belts concatenate to form noncovalent chainmail. The triplex heterotrimer orchestrates all four levels and likely drives maturation to an angular capsid that can withstand pressurization. "
+"O'Toole, John"	"Inflammation and Immunity"	29949895	29180397	29110761	27026370	24516335	24116217	21071984	20100174	24892702	24233469	"Multiple ongoing, government-funded national efforts longitudinally collect health data and biospecimens for precision medicine research with ascertainment strategies increasingly emphasizing underrepresented groups in biomedical research. We surveyed chronic kidney disease patients from an academic, public integrated tertiary care system in Cleveland, Ohio, to examine local attitudes toward participation in large-scale government-funded studies. Responses (n = 103) indicate the majority (71%) would participate in a hypothetical national precision medicine cohort and were willing to send biospecimens to a national repository and share de-identified data, but &lt;50% of respondents were willing to install a phone app to track personal data. The majority of participants (62%) indicated that return of research results was very important, and the majority (54%) also wanted all of their research-collected health and genetic data returned. Response patterns did not differ by race/ethnicity. Overall, we found high willingness to participate among this Cleveland patient population already participating in a local genetic study. These data suggest that despite common perceptions, subjects from communities traditionally underrepresented in genetic research will participate and agree to store samples and health data in repositories. Furthermore, most participants want return of research results, which will require a plan to provide these data in a secure, accessible, and understandable manner."	"Coding variants in the APOL1 gene are associated with kidney diseases in African ancestral populations; yet, the underlying biologic mechanisms remain uncertain. Variant-dependent autophagic and cytotoxic cell death have been proposed as pathogenic pathways mediating kidney injury. To examine this possibility, we conditionally expressed APOL1-G0 (reference), -G1, and -G2 (variants) using a tetracycline-regulated system in HEK293 cells. Autophagy was monitored biochemically and cell death was measured using multiple assays. We measured intracellular Na<sup>+</sup> and K<sup>+</sup> content with atomic absorption spectroscopy and APOL1-dependent currents with whole-cell patch clamping. Neither reference nor variant APOL1s induced autophagy. At high expression levels, APOL1-G0, -G1, and -G2 inserted into the plasma membrane and formed pH-sensitive cation channels, causing collapse of cellular Na<sup>+</sup> and K<sup>+</sup> gradients, phosphorylation of p38 mitogen-activated protein kinase, and cell death, without variant-dependent differences. APOL1-G0 and -G2 exhibited similar channel properties in whole-cell patch clamp experiments. At low expression levels, neither reference nor variant APOL1s localized on the plasma membrane, Na<sup>+</sup> and K<sup>+</sup> gradients were maintained, and cells remained viable. Our results indicate that APOL1-mediated pore formation is critical for the trypanolytic activity of APOL1 and drives APOL1-mediated cytotoxicity in overexpression systems. The absence of cytotoxicity at physiologic expression levels suggests variant-dependent intracellular K<sup>+</sup> loss and cytotoxicity does not drive kidney disease progression."	"The association of variants in the APOL1 gene, which encodes apolipoprotein L1 (APOL1), with progressive nondiabetic kidney diseases in African Americans has prompted intense investigation into the function(s) of APOL1. APOL1 is an innate immune effector that protects human beings from infection by some trypanosomal parasites. We review the data characterizing APOL1 trypanolytic function, which has been a basis for studies of APOL1 function in mammalian cells. Subsequently, we discuss the studies that use animal models, mammalian cell culture models, and kidney biopsy tissue to discover the mechanisms of variant APOL1-associated kidney diseases."	"APOL1 risk variants are associated with kidney disease in blacks, but the mechanisms of renal injury associated with APOL1 risk variants are unknown. Because APOL1 is unique to humans and some primates, we created transgenic (Tg) mice using the promoter of nephrin-encoding Nphs1 to express the APOL1 reference sequence (G0) or the G2 risk variant in podocytes, establishing Tg lines with a spectrum of APOL1 expression levels. Podocytes from Tg-G0 and Tg-G2 mice did not undergo necrosis, apoptosis, or autophagic cell death in vivo, even in lines with highly expressed transgenes. Further, Tg-G0 and Tg-G2 mice did not develop kidney pathology, proteinuria, or azotemia as of 300 days of age. However, by 200 days of age, Tg-G2 mice had significantly lower podocyte density than age-matched WT and Tg-G0 mice had, a difference that was not evident at weaning. Notably, a pregnancy-associated phenotype that encompassed eclampsia, preeclampsia, fetal/neonatal deaths, and small litter sizes occurred in some Tg-G0 mice and more severely in Tg-G2 mice. Similar to human placenta, placentas of Tg mice expressed APOL1. Overall, these results suggest podocyte depletion could predispose individuals with APOL1 risk genotypes to kidney disease in response to a second stressor, and add to other published evidence associating APOL1 expression with preeclampsia."	"Mitochondrial diseases can be related to mutations in either the nuclear or mitochondrial genome. Childhood presentations are commonly associated with renal tubular dysfunction, but renal involvement is less commonly reported outside of this age-group. Mitochondrial diseases are notable for the significant variability in their clinical presentation and the broad spectrum of genes implicated in their etiology. These features contribute to the challenges of establishing a definitive diagnosis and understanding the pathogenetic mechanisms leading to kidney involvement in these diseases. Here, we review the deoxyribonucleic acid variants in the mitochondrial and nuclear genomes that have been associated with a kidney phenotype, and examine some of the possible pathogenic mechanisms that may contribute to the expression of a renal phenotype. "	"Recessive mutations in XPNPEP3, encoding a mitochondrial x-prolyl aminopeptidase, have been identified in families with a rare hereditary tubulointerstitial kidney disease. The yeast ortholog of XPNPEP3, Icp55p, participates in the proteolytic processing and stabilization of mitochondrial proteins and its deletion accelerates the degradation of its protein targets. We used icp55 deletion strains of S. cerevisiae to model loss of XPNPEP3 enzymatic function and study its phenotypic consequences on mitochondrial function. We found that Icp55p is not required for respiratory competence; however, compared to controls deletion strains had reduced mitochondrial oxygen consumption when grown in glucose containing media. The reduced mitochondrial respiration of icp55 deletion strains in glucose media requires the mitochondrial peptide transporter, Mdl1p, and was corrected by Tor1p inhibition with rapamycin. Under similar growth conditions the abundance of the mitochondrial ATP synthase complex was decreased in the icp55 deletion strain and was corrected by concurrent deletion of tor1. The icp55 deletion strain demonstrated an increased chronological lifespan and decreased reactive oxygen species. These changes were additive to similar changes known to occur in tor1 deletion strains suggesting independent mechanisms. Together, these results demonstrate that loss of Icp55p function reduces mitochondrial oxygen consumption and ATP synthase complex assembly in glucose media, while also promoting stress resistance, decreasing reactive oxygen species and increasing chronological lifespan through mechanisms that are distinct from decreased Tor1p activity. "	"The genetic contribution to calcium metabolism is well recognized. Many of the proteins that contribute to calcium homeostasis through intestinal absorption, bone deposition and resorption, renal reabsorption and the molecules regulating these processes have been identified. Mutations in many of the genes coding for these proteins have been identified and often have clear clinical phenotypes. These mutations are generally rare with large effect sizes and a high degree of penetrance. As monogenetic diseases, they have a mendelian inheritance pattern and have been identified with traditional family-based linkage studies. A great deal of progress has been made in the understanding of the physiology of calcium metabolism; however, it remains an evolving field. The identification of the monogenetic etiology of disease has contributed greatly to our understanding of calcium handling and homeostasis. Transgenic animal models of these diseases continue to offer new insights into the mechanisms of calcium metabolism and its regulation. The purpose of this review is to briefly outline calcium metabolism focusing on the mechanisms of intestinal absorption and renal reabsorption as a framework to review the monogenic causes of dysregulated calcium metabolism."	"Kidney function declines with advancing age and mitochondria have been implicated. In the present study we have examined the integrated function of mitochondria isolated from kidneys of 6- and 24-month-old Fischer 344 rats. OXPHOS (oxidative phosphorylation) of intact mitochondria and cytochrome c oxidase activity in permeabilized mitochondria were determined with polarographic assays. The activities of the ETC (electron transport chain) complexes and the cytochrome content in solubilized mitochondria were measured using spectrophotometric methods. The respiratory complexes were evaluated with blue native gel electrophoresis. Mitochondrial preparations were evaluated by immunoblotting for cytochrome c, Smac/Diablo and VDAC (voltage-dependent anion channel). Mitochondrial morphology was examined by electron microscopy. OXPHOS of mitochondria isolated from 24-month-old animals was decreased 15-25% with complexes I, II, III and IV, and fatty acid substrates. The electron microscopic appearance of mitochondria, the activity of the ETC complexes and the protein abundance of individual complexes and supercomplexes were unchanged. The content of cytochrome c was decreased by 37% in aged mitochondria, as determined by spectrophotometric methods and confirmed with immunoblotting. Polarographic determination of cytochrome c oxidase activity with endogenous cytochrome c demonstrated a 23% reduction in aged mitochondria, which was corrected with the addition of exogenous cytochrome c. Renal mitochondrial OXPHOS decreased with aging in the Fischer 344 rat. Decreased mitochondrial cytochrome c content is a major factor contributing to the OXPHOS defect of mitochondria isolated from kidneys of elderly animals."	"Kidney disease is one of the most prevalent chronic conditions and is a frequent complication of diabetes, cardiovascular disease, and obesity. Recent advances in biomedical research and novel technologies have created opportunities to study kidney disease in a variety of platforms, applied to human populations. The Reviews in this series discuss the kidney in hypertension, diabetes, and monogenic forms of kidney disease, as well as the cellular and molecular mediators of acute kidney injury and fibrosis, IgA nephropathy and idiopathic membranous nephropathy, and kidney transplantation. In this introduction, we briefly review new insights into focal segmental glomerulosclerosis and the role of podocytes in health and disease. Additionally, we discuss how new technologies, therapeutics, and the availability of patient data can help shape the study of kidney disease and ultimately inform policies concerning biomedical research and health care. "	"Recent studies have identified genetic variants in APOL1 that may contribute to the increased incidence of kidney disease in populations with African ancestry. Here, we review the biology of APOL1 present in the circulation and localized to the kidney as it may contribute to the pathogenesis of APOL1-associated kidney disease."
+"Obuchowski, Nancy"	"Quantitative Health Sciences"	30597055	29921163	29512515	29298603	29191687	28253530	26898527	25842015	25300725	24919829	"As imaging technologies and treatment options continue to advance, imaging outcome measures are becoming increasingly utilized as the basis of making major decisions in new drug development and clinical practice. Quantitative imaging biomarkers (QIBs) are now commonly used for subject selection, response assessment, and safety monitoring. Although quantitative measurements can have many advantages compared with subjective, qualitative endpoints, it is important to recognize that QIBs are measured with error. This study uses Monte Carlo simulation to examine the impact of measurement error on a variety of clinical trial designs as well as to test proposed adjustments for measurement error. The focus is on some of the QIBs currently being studied by the Quantitative Imaging Biomarkers Alliance. The results show that the ability of QIBs to discriminate between health states and predict patient outcome is attenuated by measurement error; however, the known technical performance characteristics of QIBs can be used to adjust study sample size, control the misinterpretation rate of imaging findings, and establish statistically valid decision thresholds. We conclude that estimates of the precision and bias of a QIB are important for properly designing clinical trials and establishing the level of imaging standardization required."	"Diagnostic systems designed to detect possibly multiple lesions per patient (e.g. multiple polyps during CT colonoscopy) are often evaluated in &quot;free-response&quot; studies that allow for diagnostic responses unconstrained in their number and locations. Analysis of free-response studies requires extensions of the traditional receiver operating characteristic (ROC) analysis, which are termed free-response ROC (FROC) methodology. Despite substantial developments in this area, FROC tools and approaches are much more cumbersome than traditional ROC methods. Alternative approaches that use well-known ROC tools (e.g. ROI-ROC) require defining and physically delineating regions of interest (ROI) and combine FROC data within ROIs. We propose an approach that allows analyzing FROC data using conventional ROC tools without delineating the actual ROIs or reducing data. The design parameters of FROC study are used to make FROC data analyzable using ROC tools and to calibrate the corresponding FROC and ROC curves on both conceptual and numerical levels. Differences in the performance indices of the nonparametric FROC and the new approach are shown to be asymptotically negligible and typically rather small in practice. Data from a large multi-reader study of colon cancer detection are used to illustrate the new approach."	"Receiver operating characteristic (ROC) analysis is a tool used to describe the discrimination accuracy of a diagnostic test or prediction model. While sensitivity and specificity are the basic metrics of accuracy, they have many limitations when characterizing test accuracy, particularly when comparing the accuracies of competing tests. In this article we review the basic study design features of ROC studies, illustrate sample size calculations, present statistical methods for measuring and comparing accuracy, and highlight commonly used ROC software. We include descriptions of multi-reader ROC study design and analysis, address frequently seen problems of verification and location bias, discuss clustered data, and provide strategies for testing endpoints in ROC studies. The methods are illustrated with a study of transmission ultrasound for diagnosing breast lesions."	"Introduction Quantitative imaging biomarkers (QIBs) are being increasingly used in medical practice and clinical trials. An essential first step in the adoption of a quantitative imaging biomarker is the characterization of its technical performance, i.e. precision and bias, through one or more performance studies. Then, given the technical performance, a confidence interval for a new patient's true biomarker value can be constructed. Estimating bias and precision can be problematic because rarely are both estimated in the same study, precision studies are usually quite small, and bias cannot be measured when there is no reference standard. Methods A Monte Carlo simulation study was conducted to assess factors affecting nominal coverage of confidence intervals for a new patient's quantitative imaging biomarker measurement and for change in the quantitative imaging biomarker over time. Factors considered include sample size for estimating bias and precision, effect of fixed and non-proportional bias, clustered data, and absence of a reference standard. Results Technical performance studies of a quantitative imaging biomarker should include at least 35 test-retest subjects to estimate precision and 65 cases to estimate bias. Confidence intervals for a new patient's quantitative imaging biomarker measurement constructed under the no-bias assumption provide nominal coverage as long as the fixed bias is &lt;12%. For confidence intervals of the true change over time, linearity must hold and the slope of the regression of the measurements vs. true values should be between 0.95 and 1.05. The regression slope can be assessed adequately as long as fixed multiples of the measurand can be generated. Even small non-proportional bias greatly reduces confidence interval coverage. Multiple lesions in the same subject can be treated as independent when estimating precision. Conclusion Technical performance studies of quantitative imaging biomarkers require moderate sample sizes in order to provide robust estimates of bias and precision for constructing confidence intervals for new patients. Assumptions of linearity and non-proportional bias should be assessed thoroughly."	"Quantitative imaging biomarkers (QIBs) are becoming increasingly adopted into clinical practice to monitor changes in patients' conditions. The repeatability coefficient (RC) is the clinical cut-point used to discern between changes in a biomarker's measurements due to measurement error and changes that exceed measurement error, thus indicating real change in the patient. Imaging biomarkers have characteristics that make them difficult for estimating the repeatability coefficient, including nonconstant error, non-Gaussian distributions, and measurement error that must be estimated from small studies. We conducted a Monte Carlo simulation study to investigate how well three statistical methods for estimating the repeatability coefficient perform under five settings common for QIBs. When the measurement error is constant and replicates are normally distributed, all of the statistical methods perform well. When the measurement error is proportional to the true value, approaches that use the log transformation or coefficient of variation perform similarly. For other common settings, none of the methods for estimating the repeatability coefficient perform adequately. Many of the common approaches to estimating the repeatability coefficient perform well for only limited scenarios. The optimal approach depends strongly on the pattern of the within-subject variability; thus, a precision profile is critical in evaluating the technical performance of QIBs. Asymmetric bounds for detecting regression vs progression can be implemented and should be used when clinically appropriate."	"Biostatistics is an essential component in most original research studies in imaging. In this article we discuss five key statistical concepts for study design and analyses in modern imaging research: statistical hypothesis testing, particularly focusing on noninferiority studies; imaging outcomes especially when there is no reference standard; dealing with the multiplicity problem without spending all your study power; relevance of confidence intervals in reporting and interpreting study results; and finally tools for assessing quantitative imaging biomarkers. These concepts are presented first as examples of conversations between investigator and biostatistician, and then more detailed discussions of the statistical concepts follow. Three skeletal radiology examples are used to illustrate the concepts."	"A major initiative of the Quantitative Imaging Biomarker Alliance is to develop standards-based documents called &quot;Profiles,&quot; which describe one or more technical performance claims for a given imaging modality. The term &quot;actor&quot; denotes any entity (device, software, or person) whose performance must meet certain specifications for the claim to be met. The objective of this paper is to present the statistical issues in testing actors' conformance with the specifications. In particular, we present the general rationale and interpretation of the claims, the minimum requirements for testing whether an actor achieves the performance requirements, the study designs used for testing conformity, and the statistical analysis plan. We use three examples to illustrate the process: apparent diffusion coefficient in solid tumors measured by MRI, change in Perc 15 as a biomarker for the progression of emphysema, and percent change in solid tumor volume by computed tomography as a biomarker for lung cancer progression. "	"The goal of the study was to determine the effects of guideline implementation strategy using 2 commercial radiology clinical decision support (CDS) systems. The appropriateness and insurance dispositions of MRI and CT orders were evaluated using the Medicalis SmartReq and Nuance RadPort CDS systems during 2 different 3-month periods. Logistic regression was used to compare these outcomes between the 2 systems, after adjusting for patient-mix differences. Approximately 2,000 consecutive outpatient MRI and CT orders were evaluated over 2 periods of 3 months each. Medicalis scored 60% of exams as &quot;indeterminate&quot; (insufficient information) or &quot;not validated&quot; (no guidelines). Excluding these cases, Nuance scored significantly more exams as appropriate than did Medicalis (80% versus 51%, P &lt; .001) and predicted insurance outcome significantly more often (76% versus 58%, P &lt; .001). Only when the Medicalis &quot;indeterminate&quot; and &quot;not validated&quot; categories were combined with the high- or moderate-utility categories did the 2 CDS systems have similar performance. Overall, 19% of examinations with low-utility ratings were reimbursed. Conversely, 0.8% of examinations with high- or moderate-utility ratings were denied reimbursement. The chief difference between the 2 CDS systems, and the strongest influence on outcomes, was how exams without relevant guidelines or with insufficient information were handled. Nuance augmented published guidelines with clinical best practice; Medicalis requested additional information utilizing pop-up windows. Thus, guideline implementation choices contributed to decision making and outcomes. User interface, specifically, the number of screens and completeness of indication choices, controlled CDS interactions and, coupled with guidance implementation, influenced willingness to use the CDS system."	"New tests are typically assessed by estimating their technical and diagnostic performance through comparisons with a reference standard. A valid reference standard, however, is not always available and is not required for assessing the interchangeability of a new test with an existing one. To show interchangeability of a new test with an existing test, one compares the differences in diagnoses between the new and existing tests to differences between diagnoses made with the existing test on several occasions. We illustrate the test for interchangeability with two studies. In a transcatheter aortic valve replacement study, we test whether semiautomated analysis can be used interchangeably with manual reconstructions from three-dimensional computed tomography (CT) images. In patients with femoroacetabular impingement, we test whether magnetic resonance imaging (MRI) can replace CT to measure acetabular version. Although the semiautomated method agreed often with the manual measurement of aortic valve size (87.6%), interchanging the semiautomated method with manual measurements by an expert would lead to a 1.7%-12.2% increase in the frequency of disagreement. Interchanging MRI for CT to measure acetabular version would lead to differences in angle measurements of 2.0° to 3.1° in excess of the differences we would expect to see with CT alone. Testing for agreement or correlation between a new and an existing test is not sufficient evidence of the performance of a new test. A formal evaluation of interchangeability can be conducted in the absence of a reference standard."	"Quantitative biomarkers from medical images are becoming important tools for clinical diagnosis, staging, monitoring, treatment planning, and development of new therapies. While there is a rich history of the development of quantitative imaging biomarker (QIB) techniques, little attention has been paid to the validation and comparison of the computer algorithms that implement the QIB measurements. In this paper we provide a framework for QIB algorithm comparisons. We first review and compare various study designs, including designs with the true value (e.g. phantoms, digital reference images, and zero-change studies), designs with a reference standard (e.g. studies testing equivalence with a reference standard), and designs without a reference standard (e.g. agreement studies and studies of algorithm precision). The statistical methods for comparing QIB algorithms are then presented for various study types using both aggregate and disaggregate approaches. We propose a series of steps for establishing the performance of a QIB algorithm, identify limitations in the current statistical literature, and suggest future directions for research. "
+"Olman, Mitchell"	"Inflammation and Immunity"	29019812	28523001	26763235	26597012	23499373	24644284	19411312	16797514	18669633	14764742	"The incidence of venous thromboembolism (VTE) after lung transplantation (LTX) varies significantly across studies. Two studies have suggested that these thrombotic events are associated with a lower posttransplant survival. Herein, we sought to determine the incidence, predictors, and impact of VTE on survival after LTX at a quaternary referral center. This was a large cohort study of LTX recipients. Key outcome parameters were time to VTE after transplant and survival. Deep vein thrombosis (DVT) diagnosis required a positive ultrasound. Pulmonary embolism diagnosis required either a positive chest computed tomography angiogram or a high-probability ventilation/perfusion scan. The overall incidence of VTE among 701 LTX recipients was 43.8%, of which 97.7% were DVT episodes, of which 71.3% were in the upper extremities. Predictors of VTE were prior history of DVT (hazard ratio [HR], 2.82; 95% confidence interval [CI], 1.49-5.37), days in intensive care (HR, 1.01; 95% CI, 1.01-1.02), and the use of extracorporeal membrane oxygenation (HR, 2.22; 95% CI, 1.43-3.45). Importantly, VTE predicted a lower posttransplant survival (HR, 1.70; 95% CI, 1.28-2.26), when occurring within or after the first 30 days. The location of the DVT, either upper extremity or below the knee, also predicted a poor survival. VTE was frequent in LTX recipients and predicted a poor survival even when located in the upper extremities or below the knee. These data suggest that aggressive VTE screening/treatment protocols be implemented in post-LTX population."	"Ion channels/pumps are essential regulators of organ homeostasis and disease. In the present review, we discuss the role of the mechanosensitive cation channel, transient receptor potential vanilloid 4 (TRPV4), in cytokine secretion and pulmonary inflammatory diseases such as asthma, cystic fibrosis (CF), and acute lung injury/acute respiratory distress syndrome (ARDS). TRPV4 has been shown to play a role in lung diseases associated with lung parenchymal stretch or stiffness. TRPV4 indirectly mediates hypotonicity-induced smooth muscle contraction and airway remodeling in asthma. Further, the literature suggests that in CF TRPV4 may improve ciliary beat frequency enhancing mucociliary clearance, while at the same time increasing pro-inflammatory cytokine secretion/lung tissue injury. Currently it is understood that the role of TRPV4 in immune cell function and associated lung tissue injury/ARDS may depend on the injury stimulus. Uncovering the downstream mechanisms of TRPV4 action in pulmonary inflammatory diseases is likely important to understanding disease pathogenesis and may lead to novel therapeutics."	"Pro-fibrotic mesenchymal cells are known to be the key effector cells of fibroproliferative disease, but the specific matrix signals and the induced cellular responses that drive the fibrogenic phenotype remain to be elucidated. The key mediators of the fibroblast fibrogenic phenotype were characterized using a novel assay system that measures fibroblast behavior in response to actual normal and fibrotic lung tissue. Using this system, we demonstrate that normal lung promotes fibroblast motility and polarization, while fibrotic lung immobilizes the fibroblast and promotes myofibroblast differentiation. These context-specific phenotypes are surprisingly both mediated by myosin II. The role of myosin II is supported by the observation of an increase in myosin phosphorylation and a change in intracellular distribution in fibroblasts on fibrotic lung, as compared with normal lung. Moreover, loss of myosin II activity has opposing effects on protrusive activity in fibroblasts on normal and fibrotic lung. Loss of myosin II also selectively inhibits myofibroblast differentiation in fibroblasts on fibrotic lung. Importantly, these findings are recapitulated by varying the matrix stiffness of polyacrylamide gels in the range of normal and fibrotic lung tissue. Comparison of the effects of myosin inhibition on lung tissue with that of polyacrylamide gels suggests that matrix fiber organization drives the fibroblast phenotype under conditions of normal/soft lung, while matrix stiffness drives the phenotype under conditions of fibrotic/stiff lung. This work defines novel roles for myosin II as a key regulatory effector molecule of the pro-fibrotic phenotype, in response to biophysical properties of the matrix. "	"Macrophage phagocytosis of particles and pathogens is an essential aspect of innate host defense. Phagocytic function requires cytoskeletal rearrangements that depend on the interaction between macrophage surface receptors, particulates/pathogens, and the extracellular matrix. In the present study we determine the role of a mechanosensitive ion channel, transient receptor potential vanilloid 4 (TRPV4), in integrating the LPS and matrix stiffness signals to control macrophage phenotypic change for host defense and resolution from lung injury. We demonstrate that active TRPV4 mediates LPS-stimulated murine macrophage phagocytosis of nonopsonized particles (Escherichia coli) in vitro and opsonized particles (IgG-coated latex beads) in vitro and in vivo in intact mice. Intriguingly, matrix stiffness in the range seen in inflamed or fibrotic lung is required to sensitize the TRPV4 channel to mediate the LPS-induced increment in macrophage phagocytosis. Furthermore, TRPV4 is required for the LPS induction of anti-inflammatory/proresolution cytokines. These findings suggest that signaling through TRPV4, triggered by changes in extracellular matrix stiffness, cooperates with LPS-induced signals to mediate macrophage phagocytic function and lung injury resolution. These mechanisms are likely to be important in regulating macrophage function in the context of pulmonary infection and fibrosis. "	"Idiopathic pulmonary fibrosis (IPF) is a progressive fibrotic lung disease whose underlying molecular mechanisms are largely unknown. Herein, we show that focal adhesion kinase-related nonkinase (FRNK) plays a key role in limiting the development of lung fibrosis. Loss of FRNK function in vivo leads to increased lung fibrosis in an experimental mouse model. The increase in lung fibrosis is confirmed at the histological, biochemical, and physiological levels. Concordantly, loss of FRNK function results in increased fibroblast migration and myofibroblast differentiation and activation of signaling proteins that drive these phenotypes. FRNK-deficient murine lung fibroblasts also have an increased capacity to produce and contract matrix proteins. Restoration of FRNK expression in vivo and in vitro reverses these profibrotic phenotypes. These data demonstrate the multiple antifibrotic actions of FRNK. More important, FRNK expression is down-regulated in human IPF, and down-regulation of FRNK in normal human lung fibroblasts recapitulates the profibrotic phenotype seen in FRNK-deficient cells. The effect of loss and gain of FRNK in the experimental model, when taken together with its down-regulation in human IPF, suggests that FRNK acts as an endogenous negative regulator of lung fibrosis by repressing multiple profibrotic responses."	"The urokinase-type plasminogen activator receptor (uPAR) is a glycosylphosphatidylinositol-linked membrane protein with no cytosolic domain that localizes to lipid raft microdomains. Our laboratory and others have documented that lung fibroblasts from patients with idiopathic pulmonary fibrosis (IPF) exhibit a hypermotile phenotype. This study was undertaken to elucidate the molecular mechanism whereby uPAR ligation with its cognate ligand, urokinase, induces a motile phenotype in human lung fibroblasts. We found that uPAR ligation with the urokinase receptor binding domain (amino-terminal fragment) leads to enhanced migration of fibroblasts on fibronectin in a protease-independent, lipid raft-dependent manner. Ligation of uPAR with the amino-terminal fragment recruited α5β1 integrin and the acylated form of the Src family kinase, Fyn, to lipid rafts. The biological consequences of this translocation were an increase in fibroblast motility and a switch of the integrin-initiated signal pathway for migration away from the lipid raft-independent focal adhesion kinase pathway and toward a lipid raft-dependent caveolin-Fyn-Shc pathway. Furthermore, an integrin homologous peptide as well as an antibody that competes with β1 for uPAR binding have the ability to block this effect. In addition, its relative insensitivity to cholesterol depletion suggests that the interactions of α5β1 integrin and uPAR drive the translocation of α5β1 integrin-acylated Fyn signaling complexes into lipid rafts upon uPAR ligation through protein-protein interactions. This signal switch is a novel pathway leading to the hypermotile phenotype of IPF patient-derived fibroblasts, seen with uPAR ligation. This uPAR dependent, fibrotic matrix-selective, and profibrotic fibroblast phenotype may be amenable to targeted therapeutics designed to ameliorate IPF. "	"Fibroblasts from patients with pulmonary fibrosis express higher levels of the receptor for urokinase, and the extent of fibrosis in some animal models exhibits a dependence on the urokinase receptor. Recent observations have identified the urokinase receptor as a trans-interacting receptor with consequences on signaling and cell responses that vary depending on its interacting partner, the relative levels of expression, and the state of cellular transformation. We undertook this study to define the urokinase-type plasminogen activator cellular receptor (u-PAR)-integrin interactions and to determine the functional consequences of such interactions on normal human lung fibroblast attachment and migration. u-PAR colocalizes in lammelipodia/filopodia with relevant integrins that mediate fibroblast attachment and spreading on the provisional matrix proteins vitronectin, fibronectin, and collagens. Inhibitory antibody studies have revealed that human lung fibroblasts utilize alpha(v)beta(5) to attach to vitronectin, predominantly alpha(5)beta(1) (and alpha(v)beta(3)) to attach to fibronectin, and alpha(1)beta(1), alpha(2)beta(1), and alpha(3)beta(1) to attach to collagen. Blocking studies with alpha-integrin subunit decoy peptides and u-PAR neutralizing antibodies indicate that u-PAR modulates the integrin-mediated attachment to purified provisional matrix proteins, to anti-integrin antibodies, or to fibroproliferative lesions from fibrotic lungs. Furthermore, these decoy peptides blunt fibroblast spreading and migration. We show that u-PAR can interact with multiple alpha-integrins but with a preference for alpha(3). Taken together, these data demonstrate that u-PAR may interact with multiple integrins in normal human lung fibroblasts thereby promoting attachment, spreading, and migration. Modulation of fibroblast invasion would be expected to lead to amelioration of fibroproliferative diseases of the lung."	"Acute lung injury (ALI) is a clinical syndrome in which patients develop severe and progressive pulmonary gas exchange defects and pulmonary mechanical dysfunction. The high morbidity and mortality (40%) associated with ALI provide a compelling need to identify clinical and/or biochemical parameters that robustly risk stratify patients for both accurate prognostication and clinical trial purposes. In this review, we will examine and critically evaluate studies pertaining to biochemical markers of mortality in ALI. These markers may not only serve as prognostic measures of disease, but in some cases, add to our overall understanding of the pathophysiology of ALI."	"Transforming growth factor (TGF)-beta1 induces fibroblast transdifferentiation to myofibroblasts, a process that requires the involvement of integrin-mediated signaling and focal adhesion kinase (FAK). FAK-related non-kinase (FRNK) is known for its role in inhibiting integrin-mediated cell migration; however, its role in myofibroblast differentiation has not been defined. Here, we report that FRNK abrogates TGF-beta1-induced myofibroblast differentiation in vitro and in vivo. TGF-beta1 can induce alpha-smooth muscle actin (alpha-SMA) expression in the presence or absence of FAK; however, TGF-beta1-induced alpha-SMA expression is reduced (approximately 73%) in FAK-deficient fibroblasts. Although both ERK and p38 MAPK activation is required for maximal TGF-beta1-induced alpha-SMA expression, ERK is the major signaling intermediate in cells that express FAK. In contrast, p38 MAPK is the dominant mediator of TGF-beta1-induced alpha-SMA expression in FAK-deficient cells. FRNK overexpression blocks TGF-beta1-induced ERK or p38 MAPK activation in the presence, and surprisingly, in the absence of FAK. The loss of FRNK was tested in vivo during experimentally induced pulmonary fibrosis in mice. FRNK knock-out mice have a greater increase in alpha-SMA-expressing cells in response to a pulmonary fibrotic stimulus in vivo, as compared with congenic wild type mice. This is the first time that FRNK loss has been shown to modify the pathobiology in any animal disease model. Together, the data demonstrate that FRNK negatively regulates myofibroblast differentiation in vitro and in vivo. These data further suggest that modulation FRNK expression may be a novel avenue for therapeutic intervention in tissue fibrosis."	"Although the fibroproliferative response to lung injury occurs with a high frequency in patients with clinical acute lung injury, the mechanisms that initiate this response are largely unknown. This study was undertaken first to identify fibroblast mitogenic factors in pulmonary edema fluid, and second to examine the human lung fibroblast's gene expression profile in response to pulmonary edema fluid. The edema fluid obtained from patients with early lung injury has an eightfold higher concentration of IL-1beta and a twofold greater IL-1beta-dependent mitogenic effect than does fluid obtained from control patients with hydrostatic pulmonary edema. Furthermore, fibroblasts responded to acute lung injury patient-derived edema fluid through production of soluble mediators that possess an autocrine mitogenic effect. Gene array analysis reveals that acute lung injury edema fluid induces several inflammation-modulating and proliferation-related genes in fibroblasts, whose inductions are similarly dependent on bioactive IL-1beta. Most notably, the 20-fold induction of IL-6 mRNA and protein was completely blocked by IL-1 receptor antagonist. The combined addition of IL-1beta and IL-6 was mitogenic, and the proliferative response to conditioned medium from IL-1beta-exposed cells was blocked by antagonistically acting Abs to IL-6 or to gp130. These novel findings indicate that soluble IL-1beta bioactivity and autocrine IL-1beta-dependent IL-6 up-regulation are critical initiators of fibroblast activation and proliferation and that they likely play a role in the fibroproliferative response seen in human acute lung injury."
+"Padgett, Richard"	"Cardiovascular and Metabolic Sciences"	24865609	22594801	22397991	18824513	18658120	16043500	14691257	12409455	12049749	11680842	"Biallelic mutations of the human RNU4ATAC gene, which codes for the minor spliceosomal U4atac snRNA, cause the developmental disorder, MOPD I/TALS. To date, nine separate mutations in RNU4ATAC have been identified in MOPD I patients. Evidence suggests that all of these mutations lead to abrogation of U4atac snRNA function and impaired minor intron splicing. However, the molecular basis of these effects is unknown. Here, we use a variety of in vitro and in vivo assays to address this question. We find that only one mutation, 124G&gt;A, leads to significantly reduced expression of U4atac snRNA, whereas four mutations, 30G&gt;A, 50G&gt;A, 50G&gt;C and 51G&gt;A, show impaired binding of essential protein components of the U4atac/U6atac di-snRNP in vitro and in vivo. Analysis of MOPD I patient fibroblasts and iPS cells homozygous for the most common mutation, 51G&gt;A, shows reduced levels of the U4atac/U6atac.U5 tri-snRNP complex as determined by glycerol gradient sedimentation and immunoprecipitation. In this report, we establish a mechanistic basis for MOPD I disease and show that the inefficient splicing of genes containing U12-dependent introns in patient cells is due to defects in minor tri-snRNP formation, and the MOPD I-associated RNU4ATAC mutations can affect multiple facets of minor snRNA function. "	"Proper splicing of pre-mRNA is required for protein synthesis and therefore is a fundamental cellular function. The discovery of a variety of somatic spliceosomal mutations in haematological malignancies, including myeloid neoplasms and chronic lymphocytic leukaemia has pointed to a new leukaemogenic pathway involving spliceosomal dysfunction. Theoretically, spliceosomal mutations can lead to activation of incorrect splice sites, intron retention or aberrant alternative splicing occurring in patterns generated by mutations of individual spliceosomal proteins. Such events can produce a defective balance between protein isoforms leading to functional consequences including defective regulation of proliferation and differentiation. The observed pattern of occurrence of highly specific missense mutations, coupled with the lack of nonsense mutations and deletions, implies a gain-of-function or better gain-of-dysfunction mechanism. Incorrect splicing of downstream genes, such as tumour suppressor genes, may result in haploinsufficient expression through nonsense-mediated mRNA decay. Thus, spliceosomal mutations may, depending on the pattern of affected proteins, lead to similar functional effects on tumour suppressor genes as chromosomal deletions, epigenetic silencing or inactivating/hypomorphic mutations. The prognostic value of the most common mutations and their phenotypic association in the clinical setting is currently under investigation. It is likely that spliceosomal mutations may indicate sensitivity to spliceosome inhibitors applied in the form of a synthetic lethal approach. This review discusses the most current aspects of spliceosomal research in the context of haematological malignancies."	"The removal by splicing of introns from the primary transcripts of most mammalian genes is an essential step in gene expression. Splicing is performed by large, complex ribonucleoprotein particles termed spliceosomes. Mammals contain two types that splice out mutually exclusive types of introns. However, the role of the minor spliceosome has been poorly studied. Recent reports have now shown that mutations in one minor spliceosomal snRNA, U4atac, are linked to a rare autosomal recessive developmental defect. In addition, very exciting recent results of exome deep-sequencing have found that recurrent, somatic, heterozygous mutations of other splicing factors occur at high frequencies in particular cancers and pre-cancerous conditions, suggesting that alterations in the core splicing machinery can contribute to tumorigenesis. Mis-splicing of crucial genes may underlie the pathologies of all of these diseases. Identifying these genes and understanding the mechanisms involved in their mis-splicing may lead to advancements in diagnosis and treatment."	"Highly conserved sequences at the 5' splice site and branch site of U12-dependent introns are important determinants for splicing by U12-dependent spliceosomes. This study investigates the in vivo splicing phenotypes of mutations in the branch site consensus sequence of the U12-dependent intron F from a human NOL1 (P120) minigene. Intron F contains a fully consensus branch site sequence (UUCCUUAAC). Mutations at each position were analyzed for their effects on U12-dependent splicing in vivo. Mutations at most positions resulted in a significant reduction of correct U12-dependent splicing. Defects observed included increased unspliced RNA levels, the activation of cryptic U2-dependent 5' and 3' splice sites, and the activation of cryptic U12-dependent branch/3' splice sites. A strong correlation was observed between the predicted thermodynamic stability of the branch site: U12 snRNA interaction and correct U12-dependent splicing. The lack of a polypyrimidine tract between the branch site and 3' splice site of U12-dependent introns and the observed reliance on base-pairing interactions for correct U12-dependent splicing emphasize the importance of RNA/RNA interactions during U12-dependent intron recognition and proper splice site selection."	"The X-ray crystal structure of an excised group II self-splicing intron was recently solved by the Pyle group. Here we review some of the notable features of this structure and what they may tell us about the catalytic active site of the group II ribozyme and potentially the spliceosome. The new structure validates the central role of domain V in both the structure and catalytic function of the ribozyme and resolves several outstanding puzzles raised by previous biochemical, genetic and structural studies. While lacking both exons as well as the cleavage sites and nucleophiles, the structure reveals how a network of tertiary interactions can position two divalent metal ions in a configuration that is ideal for catalysis."	"Introns spliced by the U12-dependent minor spliceosome are divided into two classes based on their splice site dinucleotides. The /AU-AC/ class accounts for about one-third of U12-dependent introns in humans, while the /GU-AG/ class accounts for the other two-thirds. We have investigated the in vivo and in vitro splicing phenotypes of mutations in these dinucleotide sequences. A 5' A residue can splice to any 3' residue, although C is preferred. A 5' G residue can splice to 3' G or U residues with a preference for G. Little or no splicing was observed to 3' A or C residues. A 5' U or C residue is highly deleterious for U12-dependent splicing, although some combinations, notably 5' U to 3' U produced detectable spliced products. The dependence of 3' splice site activity on the identity of the 5' residue provides evidence for communication between the first and last nucleotides of the intron. Most mutants in the second position of the 5' splice site and the next to last position of the 3' splice site were defective for splicing. Double mutants of these residues showed no evidence of communication between these nucleotides. Varying the distance between the branch site and the 3' splice site dinucleotide in the /GU-AG/ class showed that a somewhat larger range of distances was functional than for the /AU-AC/ class. The optimum branch site to 3' splice site distance of 11-12 nucleotides appears to be the same for both classes."	"U4 small nuclear RNA (snRNA) and U6 snRNA form a base-paired di-snRNP complex that is essential for pre-mRNA splicing of the major class of metazoan nuclear introns. The functionally analogous but highly diverged U4atac and U6atac snRNAs form a similar complex that is involved in splicing of the minor class of introns. Previous results with mutants of U6atac in which a substructure was replaced by the analogous structure from U6 snRNA suggested that wild-type U4 snRNA might be able to interact productively with the mutant U6atac snRNA. Here we show that a mutant U4 snRNA designed to base pair with a mutant U6atac snRNA can activate U12-dependent splicing when coexpressed in an in vivo genetic suppression assay. This genetic interaction could also be demonstrated in an in vitro crosslinking assay. These results show that a U4/U6atac di-snRNP can correctly splice a U12-dependent intron and suggest that the specificity for spliceosome type resides in the U6 and U6atac small nuclear ribonucleoproteins. Further experiments suggest that expression of a mutant U4 snRNA that can bind to wild-type U6atac snRNA alters the specificity of some splice sites, providing an evolutionary rationale for maintaining two U4-like snRNAs."	"U4atac snRNA forms a base-paired complex with U6atac snRNA. Both snRNAs are required for the splicing of the minor U12-dependent class of eukaryotic nuclear introns. We have developed a new genetic suppression assay to investigate the in vivo roles of several regions of U4atac snRNA in U12-dependent splicing. We show that both the stem I and stem II regions, which have been proposed to pair with U6atac snRNA, are required for in vivo splicing. Splicing activity also requires U4atac sequences in the 5' stem-loop element that bind a 15.5 kDa protein that also binds to a similar region of U4 snRNA. In contrast, mutations in the region immediately following the stem I interaction region, as well as a deletion of the distal portion of the 3' stem-loop element, were active for splicing. Complete deletion of the 3' stem-loop element abolished in vivo splicing function as did a mutation of the Sm protein binding site. These results show that the in vivo sequence requirements of U4atac snRNA are similar to those described previously for U4 snRNA using in vitro assays and provide experimental support for models of the U4atac/U6atac snRNA interaction."	"Both spliceosomal and self-splicing group II introns require the function of similar small, metal binding RNA stem-loop elements located in U6 or U6atac snRNAs of the spliceosome or domain 5 (D5) of group II introns. Here we report that two different D5 elements can functionally replace the U6atac snRNA stem-loop in an in vivo splicing assay. For efficient function in vivo, a single base pair from the upper helical section of the D5 sequence had to be removed. Introducing the equivalent base pair deletion into the D5 element of a group II intron reduced but did not eliminate self-splicing activity. Our results strengthen the case that these RNA elements play similar roles in the catalytic centers of both the spliceosome and a self-splicing ribozyme."	"Alternative splicing increases the coding capacity of genes through the production of multiple protein isoforms by the conditional use of splice sites and exons. Many alternative splice sites are regulated by the presence of purine-rich splicing enhancer elements (ESEs) located in the downstream exon. Although the role of ESEs in alternative splicing of the major class U2-dependent introns is well established, no alternatively spliced minor class U12-dependent introns have so far been described. Although in vitro studies have shown that ESEs can stimulate splicing of individual U12-dependent introns, there is no direct evidence that the U12-dependent splicing system can respond to ESEs in vivo. To investigate the ability of U12-dependent introns to use alternative splice sites and to respond to ESEs in an in vivo context, we have constructed two sets of artificial minigenes with alternative splicing pathways and evaluated the effects of ESEs on their alternative splicing patterns. In minigenes with alternative U12-dependent 3' splice sites, a purine-rich ESE promotes splicing to the immediately upstream 3' splice site. As a control, a mutant ESE has no stimulatory effect. In minigene constructs with two adjacent U12-dependent introns, the predominant in vivo splicing pattern results in the skipping of the internal exon. Insertion of a purine-rich ESE into the internal exon promotes the inclusion of the internal exon. These results show that U12-dependent introns can participate in alternative splicing pathways and that U12-dependent splice sites can respond to enhancer elements in vivo."
+"Peachey, Neal"	"Ophthalmic Research"	30040236	26241901	28356706	28490646	26149093	25429122	24395437	24106123	22896717	22865473	"Overall retinal function can be monitored by recording the light-evoked response of the eye at the corneal surface. The major components of the electroretinogram (ERG) provide important information regarding the functional status of many retinal cell types including rod photoreceptors, cone photoreceptors, bipolar cells, and the retinal pigment epithelium (RPE). The ERG can be readily recorded from mice, and this unit describes procedures for mouse anesthesia and the use of stimulation and recording procedures for measuring ERGs that reflect the response properties of different retinal cell types. Through these, the mouse ERG provides a noninvasive approach to measure multiple aspects of outer retinal function, including the status of the initial rod and cone pathways, rod photoreceptor deactivation, rod dark adaptation, the photoreceptor-to-bipolar cell synapse, and the RPE. © 2018 by John Wiley &amp; Sons, Inc."	"Electroretinogram (ERG) studies identified a new mouse line with a normal a-wave but lacking the b-wave component. The ERG phenotype of this new allele, nob7, matched closely that of mouse mutants for Grm6, Lrit3, Trpm1, and Nyx, which encode for proteins expressed in depolarizing bipolar cells (DBCs). To identify the underlying mutation, we first crossed nob7 mice with Grm6 nob3 mutants and measured the ERGs in offspring. All the offspring lacked the b-wave, indicating that nob7 is a new allele for Grm6: Grm6 nob7 . Sequence analyses of Grm6 nob7 cDNAs identified a 28 base pair insertion between exons 8 and 9, which would result in a frameshift mutation in the open reading frame that encodes the metabotropic glutamate receptor 6 (Grm6). Sequencing both the cDNA and genomic DNA from exon 8 and intron 8, respectively, from the Grm6 nob7 mouse revealed a G to A transition at the last position in exon 8. This mutation disrupts splicing and the normal exon 8 is extended by 28 base pairs, because splicing occurs 28 base pairs downstream at a cryptic splice donor. Consistent with the impact of the resulting frameshift mutation, there is a loss of mGluR6 protein (encoded by Grm6) from the dendritic tips of DBCs in the Grm6 nob7 retina. These results indicate that Grm6 nob7 is a new model of the complete form of congenital stationary night blindness, a human condition that has been linked to mutations of GRM6."	"Familial exudative vitreoretinopathy (FEVR) is caused by mutations in the genes encoding low-density lipoprotein receptor-related protein (LRP5) or its interacting partners, namely frizzled class receptor 4 (FZD4) and norrin cystine knot growth factor (NDP). Mouse models for Lrp5, Fzd4, and Ndp have proven to be important for understanding the retinal pathophysiology underlying FEVR and systemic abnormalities related to defective Wnt signaling. Here, we report a new mouse mutant, tvrm111B, which was identified by electroretinogram (ERG) screening of mice generated in the Jackson Laboratory Translational Vision Research Models (TVRM) mutagenesis program. ERGs were used to examine outer retinal physiology. The retinal vasculature was examined by in vivo retinal imaging, as well as by histology and immunohistochemistry. The tvrm111B locus was identified by genetic mapping of mice generated in a cross to DBA/2J, and subsequent sequencing analysis. Gene expression was examined by real-time PCR of retinal RNA. Bone mineral density (BMD) was examined by peripheral dual-energy X-ray absorptiometry. The tvrm111B allele is inherited as an autosomal recessive trait. Genetic mapping of the decreased ERG b-wave phenotype of tvrm111B mice localized the mutation to a region on chromosome 19 that included Lrp5. Sequencing of Lrp5 identified the insertion of a cytosine (c.4724_4725insC), which is predicted to cause a frameshift that disrupts the last three of five conserved PPPSPxS motifs in the cytoplasmic domain of LRP5, culminating in a premature termination. In addition to a reduced ERG b-wave, Lrp5<sup>tvrm111B</sup> homozygotes have low BMD and abnormal features of the retinal vasculature that have been reported previously in Lrp5 mutant mice, including persistent hyaloid vessels, leakage on fluorescein angiography, and an absence of the deep retinal capillary bed. The phenotype of the Lrp5<sup>tvrm111B</sup> mutant includes abnormalities of the retinal vasculature and of BMD. This model may be a useful resource to further our understanding of the biological role of LRP5 and to evaluate experimental therapies for FEVR or other conditions associated with LRP5 dysfunction."	"GRM6 encodes the metabotropic glutamate receptor 6 (mGluR6) used by retinal depolarizing bipolar cells (DBCs). Mutations in GRM6 lead to DBC dysfunction and underlie the human condition autosomal recessive complete congenital stationary night blindness. Mouse mutants for Grm6 are important models for this condition. Here we report a new Grm6 mutant, identified in an electroretinogram (ERG) screen of mice maintained at The Jackson Laboratory. The Grm6<sup>nob8</sup> mouse has a reduced-amplitude b-wave component of the ERG, which reflects light-evoked DBC activity. Sequencing identified a missense mutation that converts a highly conserved methionine within the ligand binding domain to leucine (p.Met66Leu). Consistent with prior studies of Grm6 mutant mice, the laminar size and structure in the Grm6<sup>nob8</sup> retina were comparable to control. The Grm6<sup>nob8</sup> phenotype is distinguished from other Grm6 mutants that carry a null allele by a reduced but not absent ERG b-wave, decreased but present expression of mGluR6 at DBC dendritic tips, and mislocalization of mGluR6 to DBC somas. Consistent with a reduced but not absent b-wave, there were a subset of retinal ganglion cells whose responses to light onset have times to peak within the range of those in control retinas. These data indicate that the p.Met66Leu mutant mGluR6 is trafficked less than control. However, the mGluR6 that is localized to the DBC dendritic tips is able to initiate DBC signal transduction. The Grm6<sup>nob8</sup> mouse extends the Grm6 allelic series and will be useful for elucidating the role of mGluR6 in DBC signal transduction and in human disease.NEW &amp; NOTEWORTHY This article describes a mouse model of the human disease complete congenital stationary night blindness in which the mutation reduces but does not eliminate GRM6 expression and bipolar cell function, a distinct phenotype from that seen in other Grm6 mouse models."	"CC chemokine ligand 2 (CCL2) recruits macrophages to reduce inflammatory responses. Decay-accelerating factor (DAF) is a membrane regulator of the classical and alternative pathways of complement activation. In view of the link between complement genes and retinal diseases, we evaluated the retinal phenotype of C57BL/6J mice and mice lacking Ccl2 and/or Daf1 at 12 months of age, using scanning laser ophthalmoscopic imaging, electroretinography (ERG), histology, immunohistochemistry, and terminal deoxynucleotidyl transferase dUTP nick end labeling (TUNEL) analysis. In comparison to C57BL/6J mice, mutant mice had an increased number of autofluorescent foci, with the greatest number in the Ccl2(-/-)/Daf1(-/-) retina. ERG amplitudes in Ccl2(-/-)/Daf1(-/-), Ccl2(-/-) and Daf1(-/-) mice were reduced, with the greatest reduction in Ccl2(-/-)/Daf1(-/-) mice. TUNEL-positive cells were not seen in C57BL/6J retina, but were prevalent in the outer and inner nuclear layers of Ccl2(-/-)Daf1(-/-) mice and were present at reduced density in Ccl2(-/-) or Daf1(-/-) mice. Cell loss was most pronounced in the outer and inner nuclear layers of Ccl2(-/-)/Daf1(-/-) mice. The levels of the endoplasmic reticulum chaperone GPR78 and transcription factor ATF4 were significantly increased in the Ccl2(-/-)/Daf1(-/-) retina. In comparison to the C57BL/6J retina, the phosphorylation of NF-κB p65, p38, ERK and JNK was significantly upregulated while SIRT1 was significantly downregulated in the Ccl2(-/-)/Daf1(-/-) retina. Our results suggest that loss of Ccl2 and Daf1 causes retinal neuronal death and degeneration which is related to increased endoplasmic reticulum stress, oxidative stress and inflammation. "	"In the diabetic retina, cellular changes in the retinal pigment epithelium (RPE) and neurons occur before vision loss or diabetic retinopathy can be identified clinically. The precise etiologies of retinal pathology are poorly defined, and it remains unclear if the onset and progression of cellular dysfunction differ between type 1 and type 2 diabetes. Three mouse models were used to compare the time course of RPE involvement in type 1 and type 2 diabetes. C57BL/6J mice injected with streptozotocin (STZ mice) modeled type 1 diabetes, whereas Lepr(db/db) mice on both BKS and B6.BKS background strains modeled type 2 diabetes. Electroretinogram (ERG)-based techniques were used to measure light-evoked responses of the RPE (direct current-coupled ERG, dc-ERG) and the neural retina (a-wave, b-wave). Following onset of hyperglycemia, a-wave and b-wave amplitudes of STZ mice declined progressively and by equivalent degrees. Components of the dc-ERG were also altered, with the largest reduction seen in the c-wave. Lepr(db/db) mice on the BKS strain (BKS.Lepr) displayed sustained hyperglycemia and a small increase in insulin, whereas Lepr(db/db) mice on the B6.BKS background (B6.BKS.Lepr) were transiently hyperglycemic and displayed severe hyperinsulinemia. BKS.Lepr mice exhibited sustained reductions in the dc-ERG c-wave, fast oscillation, and off response that were not attributable to reduced photoreceptor activity; B6.BKS.Lepr mice displayed transient reductions in the c-wave and fast oscillation that correlated with hyperglycemia and magnitude of photoreceptor activity. In summary, all mouse models displayed altered RPE function concomitant with the onset of hyperglycemia. These results suggest that RPE function is directly reduced by elevated blood glucose levels. That RPE dysfunction was reversible and mitigated in hyperinsulinemic B6.BKS.Lepr mice provides insight into the underlying mechanism. "	"The b-wave is a major component of the electroretinogram that reflects the activity of depolarizing bipolar cells (DBCs). The b-wave is used diagnostically to identify patients with defects in DBC signaling or in transmission from photoreceptors to DBCs. In mouse models, an abnormal b-wave has been used to demonstrate a critical role of a particular protein in the release of glutamate from photoreceptor terminals, in establishing the structure of the photoreceptor-to-DBC synapse, in DBC signal transduction, and also in DBC development, survival, or metabolic support. The purpose of this review is to summarize these models and how they have advanced our understanding of outer retinal function. "	"To determine the molecular basis and the pathologic consequences of a chemically induced mutation in the translational vision research models 89 (tvrm89) mouse model with ERG defects. Mice from a G3 N-ethyl-N-nitrosourea mutagenesis program were screened for behavioral abnormalities and defects in retinal function by ERGs. The chromosomal position for the recessive tvrm89 mutation was determined in a genome-wide linkage analysis. The critical region was refined, and candidate genes were screened by direct sequencing. The tvrm89 phenotype was characterized by circling behavior, in vivo ocular imaging, detailed ERG-based studies of the retina and RPE, and histological analysis of these structures. The tvrm89 mutation was localized to a region on chromosome 9 containing Myo6. Sequencing identified a T→C point mutation in the codon for amino acid 480 in Myo6 that converts a leucine to a proline. This mutation does not confer a loss of protein expression levels; however, mice homozygous for the Myo6(tvrm89) mutation display an abnormal iris shape and attenuation of both strobe-flash ERGs and direct-current ERGs by 4 age weeks, neither of which is associated with photoreceptor loss. The tvrm89 phenotype mimics that reported for Myosin6-null mice, suggesting that the mutation confers a loss of myosin 6 protein function. The observation that homozygous Myo6(tvrm89) mice display reduced ERG a-wave and b-wave components, as well as components of the ERG attributed to RPE function, indicates that myosin 6 is necessary for the generation of proper responses of the outer retina to light."	"Mutations in TRPM1 are found in humans with an autosomal recessive form of complete congenital stationary night blindness (cCSNB). The Trpm1(-/-) mouse has been an important animal model for this condition. Here we report a new mouse mutant, tvrm27, identified in a chemical mutagenesis screen. Genetic mapping of the no b-wave electroretinogram (ERG) phenotype of tvrm27 localized the mutation to a chromosomal region that included Trpm1. Complementation testing with Trpm1(-/-) mice confirmed a mutation in Trpm1. Sequencing identified a nucleotide change in exon 23, converting a highly conserved alanine within the pore domain to threonine (p.A1068T). Consistent with prior studies of Trpm1(-/-) mice, no anatomical changes were noted in the Trpm1(tvrm27/tvrm27) retina. The Trpm1(tvrm27/tvrm27) phenotype is distinguished from that of Trpm1(-/-) by the retention of TRPM1 expression on the dendritic tips of depolarizing bipolar cells (DBCs). While ERG b-wave amplitudes of Trpm1(+/-) heterozygotes are comparable to wild type, those of Trpm1(+/tvrm27) mice are reduced by 32%. A similar reduction in the response of Trpm1(+/tvrm27) DBCs to LY341495 or capsaicin is evident in whole cell recordings. These data indicate that the p.A1068T mutant TRPM1 acts as a dominant negative with respect to TRPM1 channel function. Furthermore, these data indicate that the number of functional TRPM1 channels at the DBC dendritic tips is a key factor in defining DBC response amplitude. The Trpm1(tvrm27/tvrm27) mutant will be useful for elucidating the role of TRPM1 in DBC signal transduction, for determining how Trpm1 mutations impact central visual processing, and for evaluating experimental therapies for cCSNB."	"Mouse mutants for proteins expressed in the dystrophin-glycoprotein complex at the photoreceptor terminal have electroretinogram (ERG) b-waves with a delayed onset and time course. The b-wave is defined by the sum of PII generated by depolarizing bipolar cells and slow PIII generated by Müller glial cells. In this study, we evaluated the hypothesis that the abnormalities observed in one of these mutants, Large (vls) , are caused by abnormal response properties of slow PIII. To isolate slow PIII, we crossed the Large (vls) mutant to a mouse line (Gpr179 (nob5) ) that lacks the ERG b-wave but maintains normal photoreceptor function and in which retinal degeneration does not occur. ERGs were recorded to strobe flash stimuli after overnight dark adaptation. In comparison with control responses, the a-wave and slow PIII had comparable waveforms but were reduced in amplitude in Large (vls) mice. The magnitude of this reduction was comparable for these components, and across stimulus luminance. There was no stimulus condition where the amplitude of slow PIII was larger than control. The data obtained are inconsistent with the idea that the b-wave abnormalities noted in Large (vls) mutant mice are caused by abnormal response properties of slow PIII."
+"Perez, Dianne"	"Cardiovascular and Metabolic Sciences"	27277698	26832303	23404509	23384050	22611178	22268811	21338248	19487244	19363165	17365508	"The role of α1-adrenergic receptors (α1-ARs) and their subtypes in metabolism is not well known. Most previous studies were performed before the advent of transgenic mouse models and utilized transformed cell lines and poorly selective antagonists. We have now studied the metabolic regulation of the α1A- and α1B-AR subtypes in vivo using knock-out (KO) and transgenic mice that express a constitutively active mutant (CAM) form of the receptor, assessing subtype-selective functions. CAM mice increased glucose tolerance while KO mice display impaired glucose tolerance. CAM mice increased while KO decreased glucose uptake into white fat tissue and skeletal muscle with the CAM α1A-AR showing selective glucose uptake into the heart. Using indirect calorimetry, both CAM mice demonstrated increased whole body fatty acid oxidation, while KO mice preferentially oxidized carbohydrate. CAM α1A-AR mice displayed significantly decreased fasting plasma triglycerides and glucose levels while α1A-AR KO displayed increased levels of triglycerides and glucose. Both CAM mice displayed increased plasma levels of leptin while KO mice decreased leptin levels. Most metabolic effects were more efficacious with the α1A-AR subtype. Our results suggest that stimulation of α1-ARs results in a favorable metabolic profile of increased glucose tolerance, cardiac glucose uptake, leptin secretion and increased whole body lipid metabolism that may contribute to its previously recognized cardioprotective and neuroprotective benefits."	"While α(1)-adrenergic receptors (ARs) have been previously shown to limit ischemic cardiac damage, the mechanisms remain unclear. Most previous studies utilized low oxygen conditions in addition to ischemic buffers with glucose deficiencies, but we discovered profound differences if the two conditions are separated. We assessed both mouse neonatal and adult myocytes and HL-1 cells in a series of assays assessing ischemic damage under hypoxic or low glucose conditions. We found that α(1)-AR stimulation protected against increased lactate dehydrogenase release or Annexin V(+) apoptosis under conditions that were due to low glucose concentration not to hypoxia. The α(1)-AR antagonist prazosin or nonselective protein kinase C (PKC) inhibitors blocked the protective effect. α(1)-AR stimulation increased (3)H-deoxyglucose uptake that was blocked with either an inhibitor to glucose transporter 1 or 4 (GLUT1 or GLUT4) or small interfering RNA (siRNA) against PKCδ. GLUT1/4 inhibition also blocked α(1)-AR-mediated protection from apoptosis. The PKC inhibitor rottlerin or siRNA against PKCδ blocked α(1)-AR stimulated GLUT1 or GLUT4 plasma membrane translocation. α(1)-AR stimulation increased plasma membrane concentration of either GLUT1 or GLUT4 in a time-dependent fashion. Transgenic mice overexpressing the α(1A)-AR but not α(1B)-AR mice displayed increased glucose uptake and increased GLUT1 and GLUT4 plasma membrane translocation in the adult heart while α(1A)-AR but not α(1B)-AR knockout mice displayed lowered glucose uptake and GLUT translocation. Our results suggest that α(1)-AR activation is anti-apoptotic and protective during cardiac ischemia due to glucose deprivation and not hypoxia by enhancing glucose uptake into the heart via PKCδ-mediated GLUT translocation that may be specific to the α(1A)-AR subtype."	"The role of α₁-adrenergic receptors (ARs) in the regulation of cardiac hypertrophy is still unclear, because transgenic mice demonstrated hypertrophy or the lack of it despite high receptor overexpression. To further address the role of the α₁-ARs in cardiac hypertrophy, we analyzed unique transgenic mice that overexpress constitutively active mutation (CAM) α₁A-ARs or CAM α₁B-ARs under the regulation of large fragments of their native promoters. These constitutively active receptors are expressed in all tissues that endogenously express their wild-type counterparts as opposed to only myocyte-targeted transgenic mice. In this study, we discovered that CAM α₁A-AR mice in vivo have cardiac hypertrophy independent of changes in blood pressure, corroborating earlier studies, but in contrast to myocyte-targeted α₁A-AR mice. We also found cardiac hypertrophy in CAM α₁B-AR mice, in agreement with previous studies, but hypertrophy only developed in older mice. We also discovered unique α₁-AR-mediated hypertrophic signaling that was AR subtype-specific with CAM α₁A-AR mice secreting atrial naturietic factor and interleukin-6 (IL-6), whereas CAM α₁B-AR mice expressed activated nuclear factor-κB (NF-κB). These particular hypertrophic signals were blocked when the other AR subtype was coactivated. We also discovered that crossbreeding the two CAM models (double CAM α₁A/B-AR) inhibited the development of hypertrophy and was reversible with single receptor activation, suggesting that coactivation of the receptors can lead to novel antagonistic signal transduction. This was confirmed by demonstrating antagonistic signals that were even lower than normal controls in the double CAM α₁A/B-AR mice for p38, NF-κB, and the IL-6/glycoprotein 130/signal transducer and activator of transcription 3 pathway. Because α₁A/B double knockout mice fail to develop hypertrophy in response to IL-6, our results suggest that IL-6 is a major mediator of α₁A-AR cardiac hypertrophy."	"Abstract Therapeutics to treat human heart failure (HF) and the identification of proteins associated with HF are still limited. We analyzed α(1)-adrenergic receptor (AR) subtypes in human HF and performed proteomic analysis on more uniform samples to identify novel proteins associated with human HF. Six failing hearts with end-stage dilated cardiomyopathy (DCM) and four non-failing heart controls were subjected to proteomic analysis. Out of 48 identified proteins, 26 proteins were redundant between samples. Ten of these 26 proteins were previously reported to be associated with HF. Of the newly identified proteins, we found several muscle proteins and mitochondrial/electron transport proteins, while novel were functionally similar to previous reports. However, we also found novel proteins involved in functional classes such as β-oxidation and G-protein coupled receptor signaling and desensitization not previously associated with HF. We also performed radioligand-binding studies on the heart samples and not only confirmed a large loss of β(1)-ARs in end-stage DCM, but also found a selective decrease in the α(1A)-AR subtype not previously reported. We have identified new proteins and functional categories associated with end-stage DCM. We also report that similar to the previously characterized loss of β(1)-AR in HF, there is also a concomitant loss of α(1A)-ARs, which are considered cardioprotective proteins."	"The importance of adult neurogenesis has only recently been accepted, resulting in a completely new field of investigation within stem cell biology. The regulation and functional significance of adult neurogenesis is currently an area of highly active research. G-protein-coupled receptors (GPCRs) have emerged as potential modulators of adult neurogenesis. GPCRs represent a class of proteins with significant clinical importance, because approximately 30% of all modern therapeutic treatments target these receptors. GPCRs bind to a large class of neurotransmitters and neuromodulators such as norepinephrine, dopamine, and serotonin. Besides their typical role in cellular communication, GPCRs are expressed on adult neural stem cells and their progenitors that relay specific signals to regulate the neurogenic process. This review summarizes the field of adult neurogenesis and its methods and specifies the roles of various GPCRs and their signal transduction pathways that are involved in the regulation of adult neural stem cells and their progenitors. Current evidence supporting adult neurogenesis as a model for self-repair in neuropathologic conditions, adult neural stem cell therapeutic strategies, and potential avenues for GPCR-based therapeutics are also discussed."	"Previous studies demonstrated α₁-adrenergic receptors (ARs) increase STAT3 activation in transfected and non-cardiac primary cell lines. However, the mechanism used by α₁-ARs resulting in STAT3 activation is unknown. While other G-protein-coupled receptors (GPCRs) can couple to STAT3, these mechanisms demonstrate coupling through SRC, TYK, Rac, or complex formation with Gq and used only transfected cell lines. Using normal and transgenic mice containing constitutively active mutations (CAM) of the α(1A)-AR subtype, neonatal mouse myocytes and whole hearts were analyzed for the mechanism to couple to STAT3 activation. α₁-ARs stimulated time-dependent increases in p-SRC, p-JAK2, and p-STAT3 in normal neonatal myocytes. Using various kinase inhibitors and siRNA, we determined that the α(1A)-AR coupled to STAT3 through distinct and unique pathways in neonatal myocytes. We found that PKCϵ inhibition decreased p-ERK and p-Ser STAT3 levels without affecting p-Tyr STAT3. In contrast, we found that PKCδ inhibition affected p-SRC and p-JAK2 resulting in decreased p-Tyr and p-Ser STAT3 levels. We suggest a novel α(1A)-AR mediated PKCϵ/ERK pathway that regulates the phosphorylation status of STAT3 at Ser-727 while PKCδ couples to SRC/JAK2 to affect Tyr-705 phosphorylation. Furthermore, this pathway has not been previously described in a GPCR system that couples to STAT3. Given cell survival and protective cardiac effects induced by PKC, STAT3 and ERK signaling, our results could explain the neuroprotective and cardiac protective pathways that are enhanced with α(1A)-AR agonism."	"Sympathetic nervous system regulation by the α(1)-adrenergic receptor (AR) subtypes (α(1A), α(1B), α(1D)) is complex, whereby chronic activity can be either detrimental or protective for both heart and brain function. This review will summarize the evidence that this dual regulation can be mediated through the different α(1)-AR subtypes in the context of cardiac hypertrophy, heart failure, apoptosis, ischemic preconditioning, neurogenesis, locomotion, neurodegeneration, cognition, neuroplasticity, depression, anxiety, epilepsy, and mental illness."	"The understanding of the function of alpha(1)-adrenergic receptors in the brain has been limited due to a lack of specific ligands and antibodies. We circumvented this problem by using transgenic mice engineered to overexpress either wild-type receptor tagged with enhanced green fluorescent protein or constitutively active mutant alpha(1)-adrenergic receptor subtypes in tissues in which they are normally expressed. We identified intriguing alpha(1A)-adrenergic receptor subtype-expressing cells with a migratory morphology in the adult subventricular zone that coexpressed markers of neural stem cell and/or progenitors. Incorporation of 5-bromo-2-deoxyuridine in vivo increased in neurogenic areas in adult alpha(1A)-adrenergic receptor transgenic mice or normal mice given the alpha(1A)-adrenergic receptor-selective agonist, cirazoline. Neonatal neurospheres isolated from normal mice expressed a mixture of alpha(1)-adrenergic receptor subtypes, and stimulation of these receptors resulted in increased expression of the alpha(1B)-adrenergic receptor subtype, proneural basic helix-loop-helix transcription factors, and the differentiation and migration of neuronal progenitors for catecholaminergic neurons and interneurons. alpha(1)-Adrenergic receptor stimulation increased the apoptosis of astrocytes and regulated survival of neonatal neurons through phosphatidylinositol 3-kinase signaling. However, in adult normal neurospheres, alpha(1)-adrenergic receptor stimulation increased the expression of glial markers at the expense of neuronal differentiation. In vivo, S100-positive glial and betaIII tubulin neuronal progenitors colocalized with either alpha(1)-adrenergic receptor subtype in the olfactory bulb. Our results indicate that alpha(1)-adrenergic receptors can regulate both neurogenesis and gliogenesis that may be developmentally dependent. Our findings may lead to new therapies to treat neurodegenerative diseases."	"Our previous studies have demonstrated that activation of alpha(1)-adrenergic receptors (ARs) increased interleukin-6 (IL-6) mRNA expression and protein secretion, which is probably an important yet unknown mechanism contributing to the regulation of cardiac function. Using Rat-1 fibroblasts stably transfected with the alpha(1A)-AR subtype and primary mouse neonatal cardiomyocytes, we elucidated the basic molecular mechanisms responsible for the alpha(1)-AR modulation of IL-6 expression. IL-6 mRNA production mediated by alpha(1)-AR peaked at 1 to 2 h. Studies of the mRNA decay rate indicated that alpha(1)-AR activation enhanced IL-6 mRNA stability. Analysis of IL-6 promoter activity using a series of deletion constructs indicated that alpha(1)-ARs enhanced IL-6 transcription through several transcriptional elements, including nuclear factor kappaB (NF-kappaB). Inhibition of alpha(1)-AR mediated IL-6 production and secretion by actinomycin D and the increase of intracellular IL-6 levels by alpha(1)-AR activation suggest that alpha(1)-AR mediated IL-6 secretion through de novo synthesis. Both IL-6 transcription and protein secretion mediated by alpha(1)-ARs were significantly reduced by chemical inhibitors for p38 mitogen-activated protein kinase (MAPK) and NF-kappaB and by a dominant-negative construct of p38 MAPK. Serum level of IL-6 was elevated in transgenic mice expressing a constitutively active mutant of the alpha(1A)-AR subtype but not in a similar mouse model expressing the alpha(1B)-AR subtype. Our results indicate that alpha(1)-ARs stimulated IL-6 expression and secretion through regulating both mRNA transcription and stability, involving p38 MAPK and NF-kappaB pathways."	"The function and distribution of alpha1-adrenergic receptor (AR) subtypes in prostate cancer cells is well characterized. Previous studies have used RNA localization or low-avidity antibodies in tissue or cell lines to determine the alpha1-AR subtype and suggested that the alpha1A-AR is dominant. Two androgen-insensitive, human metastatic cancer cell lines DU145 and PC3 were used as well as the mouse TRAMP C1-C3 primary and clonal cell lines. The density of alpha1-ARs was determined by saturation binding and the distribution of the different alpha1-AR subtypes was examined by competition-binding experiments. In contrast to previous studies, the major alpha1-AR subtype in DU145, PC3 and all of the TRAMP cell lines is the alpha1B-AR. DU145 cells contained 100% of the alpha1B-AR subtype, whereas PC3 cells were composed of 21% alpha1 A-AR and 79% alpha1B-AR. TRAMP cell lines contained between 66% and 79% of the alpha1B-AR with minor fractions of the other two subtypes. Faster doubling time in the TRAMP cell lines correlated with decreasing alpha 1B-AR and increasing alpha1 A- and alpha1D-AR densities. Transfection with EGFP-tagged alpha1B-ARs revealed that localization was mainly intracellular, but the majority of the receptors translocated to the cell surface after extended preincubation (18 hr) with either agonist or antagonist. Localization was confirmed by ligand-binding studies and inositol phosphate assays where prolonged preincubation with either agonist and/or antagonist increased the density and function of alpha 1-ARs, suggesting that the native receptors were mostly intracellular and nonfunctional. Our studies indicate that alpha1B-ARs are the major alpha1-AR subtype expressed in DU145, PC3, and all TRAMP cell lines, but most of the receptor is localized in intracellular compartments in a nonfunctional state, which can be rescued upon prolonged incubation with any ligand."
+"Perkins, Brian"	"Ophthalmic Research"	30970040	30009987	28118669	27720860	27571019	27273592	26427413	25144710	24698764	20207966	"Mutations in the gene Centrosomal Protein 290 kDa (CEP290) result in multiple ciliopathies ranging from the neonatal lethal disorder Meckel-Gruber Syndrome to multi-systemic disorders such as Joubert Syndrome and Bardet-Biedl Syndrome to nonsyndromic diseases like Leber Congenital Amaurosis (LCA) and retinitis pigmentosa. Results from model organisms and human genetics studies, have suggest that mutations in genes encoding protein components of the transition zone (TZ) and other cilia-associated proteins can function as genetic modifiers and be a source for CEP290 pleiotropy. We investigated the zebrafish cep290fh297/fh297 mutant, which encodes a nonsense mutation (p.Q1217*). This mutant is viable as adults, exhibits scoliosis, and undergoes a slow, progressive cone degeneration. The cep290fh297/fh297 mutants showed partial mislocalization of the transmembrane protein rhodopsin but not of the prenylated proteins rhodopsin kinase (GRK1) or the rod transducin subunit GNB1. Surprisingly, photoreceptor degeneration did not trigger proliferation of Müller glia, but proliferation of rod progenitors in the outer nuclear layer was significantly increased. To determine if heterozygous mutations in other cilia genes could exacerbate retinal degeneration, we bred cep290fh297/fh297 mutants to arl13b, ahi1, and cc2d2a mutant zebrafish lines. While cep290fh297/fh297 mutants lacking a single allele of these genes did not exhibit accelerated photoreceptor degeneration, loss of one alleles of arl13b or ahi1 reduced visual performance in optokinetic response assays at 5 days post fertilization. Our results indicate that the cep290fh297/fh297 mutant is a useful model to study the role of genetic modifiers on photoreceptor degeneration in zebrafish and to explore how progressive photoreceptor degeneration influences regeneration in adult zebrafish."	"Members of the Arf-like (Arl) family of small GTP-binding proteins regulate a number of cellular functions and play important roles in cilia structure and signaling. The small GTPase Arl13a is a close paralog to Arl13b, a small GTPase required for normal cilia formation that causes Joubert Syndrome when mutated. As mutation of arl13b causes a slow retinal degeneration in zebrafish (Song et al., 2016), we hypothesized that expression of arl13a may provide functional redundancy. We determined the expression domains of arl13a and arl13b during zebrafish development and examined subcellular localization by expression of fluorescence fusion proteins. Both genes are widely expressed during early cell division and gastrulation and Arl13a and Arl13b both localize to microtubules in ciliated and dividing cells of the early zebrafish embryo. Between 2 and 5 days post fertilization (dpf), arl13b is expressed in neural tissues while expression of arl13a is downregulated by 2 dpf and restricted to craniofacial structures. These results indicate that arl13a and arl13b have evolved different roles and that arl13a does not function in the zebrafish retina."	"Joubert syndrome (JBTS) is an autosomal recessive ciliopathy with considerable phenotypic variability. In addition to central nervous system abnormalities, a subset of JBTS patients exhibit retinal dystrophy and/or kidney disease. Mutations in the AHI1 gene are causative for approximately 10% of all JBTS cases. The purpose of this study was to generate ahi1 mutant alleles in zebrafish and to characterize the retinal phenotypes. Zebrafish ahi1 mutants were generated using transcription activator-like effector nucleases (TALENs). Expression analysis was performed by whole-mount in situ hybridization. Anatomic and molecular characterization of photoreceptors was investigated by histology, electron microscopy, and immunohistochemistry. The optokinetic response (OKR) behavior assay was used to assess visual function. Kidney cilia were evaluated by whole-mount immunostaining. The ahi1lri46 mutation in zebrafish resulted in shorter cone outer segments but did not affect visual behavior at 5 days after fertilization (dpf). No defects in rod morphology or rhodopsin localization were observed at 5 dpf. By 5 months of age, cone degeneration and rhodopsin mislocalization in rod photoreceptors was observed. The connecting cilium formed normally and Cc2d2a and Cep290 localized properly. Distal pronephric duct cilia were absent in mutant fish; however, only 9% of ahi1 mutants had kidney cysts by 5 dpf, suggesting that the pronephros remained largely functional. The results indicate that Ahi1 is required for photoreceptor disc morphogenesis and outer segment maintenance in zebrafish."	"Non-invasive imaging is an invaluable diagnostic tool in ophthalmology. Two imaging devices, the scanning laser ophthalmoscope (SLO) and spectral domain optical coherence tomography (SDOCT), emerged from the clinical realm to provide research scientists with a real-time view of ocular morphology in living animals. We utilized these two independent imaging modalities in a complementary manner to perform in vivo optical sectioning of the adult zebrafish retina. Due to the very high optical power of the zebrafish lens, the confocal depth of field is narrow, allowing for detailed en face views of specific retinal layers, including the cone mosaic. Moreover, we demonstrate that both native reflectance, as well as fluorescent features observed by SLO, can be combined with axial in-depth information obtained by SDOCT. These imaging approaches can be used to screen for ocular phenotypes and monitor retinal pathology in a non-invasive manner."	"Mutations in the gene ARL13B cause the classical form of Joubert syndrome, an autosomal recessive ciliopathy with variable degrees of retinal degeneration. As second-site modifier alleles can contribute to retinal pathology in ciliopathies, animal models provide a unique platform to test how genetic interactions modulate specific phenotypes. In this study, we analyzed the zebrafish arl13b mutant for retinal degeneration and for epistatic relationships with the planar cell polarity protein (PCP) component vangl2. Photoreceptor and cilia structure was examined by light and electron microscopy. Immunohistochemistry was performed to examine ciliary markers. Genetic interactions were tested by pairwise crosses of heterozygous animals. Genetic mosaic animals were generated by blastula transplantation and analyzed by fluorescence microscopy. At 5 days after fertilization, photoreceptor outer segments were shorter in zebrafish arl13b-/- mutants compared to wild-type larvae, no overt signs of retinal degeneration were observed by light or electron microscopy. Starting at 14 days after fertilization (dpf) and continuing through 30 dpf, cells lacking Arl13b died following transplantation into wild-type host animals. Photoreceptors of arl13b-/-;vangl2-/- mutants were more compromised than the photoreceptors of single mutants. Finally, when grown within a wild-type retina, the vangl2-/- mutant cone photoreceptors displayed normal basal body positioning. We show that arl13b-/- mutants have shortened cilia and photoreceptor outer segments and exhibit a slow, progressive photoreceptor degeneration that occurs over weeks. The data suggest that loss of Arl13b leads to slow photoreceptor degeneration, but can be exacerbated by the loss of vangl2. Importantly, the data show that Arl13b can genetically and physically interact with Vangl2 and this association is important for normal photoreceptor structure. The loss of vangl2, however, does not affect basal body positioning."	"Tail-anchored (TA) proteins contain a single hydrophobic domain at the C-terminus and are posttranslationally inserted into the ER membrane via the GET (guided entry of tail-anchored proteins) pathway. The role of the GET pathway in photoreceptors is unexplored. The goal of this study was to characterize the zebrafish pinball wizard mutant, which disrupts Wrb, a core component of the GET pathway. Electroretinography, optokinetic response measurements (OKR), immunohistochemistry, and electron microscopy analyses were employed to assess ribbon synapse function, protein expression, and ultrastructure in 5-day-old zebrafish larvae. Expression of wrb was investigated with real-time qRT-PCR and in situ hybridization. Mutation of wrb abolished the OKR and greatly diminished the ERG b-wave, but not the a-wave. Ribeye and SV2 were partially mislocalized in both photoreceptors and hair cells of wrb mutants. Fewer contacts were seen between photoreceptors and bipolar cells in wrb-/- mutants. Expression of wrb was observed throughout the nervous system and Wrb localized to the ER and synaptic region of photoreceptors. Morpholino knockdown of the cytosolic ATPase trc40, which targets TA proteins to the ER, also diminished the OKR. Overexpression of wrb fully restored contrast sensitivity in mutants, while overexpression of mutant wrbR73A, which cannot bind Trc40, did not. Proteins Wrb and Trc40 are required for synaptic transmission between photoreceptors and bipolar cells, indicating that TA protein insertion by the TRC pathway is a critical step in ribbon synapse assembly and function."	"The photoreceptor outer segment is a specialized primary cilium, and anchoring of the basal body at the apical membrane is required for outer segment formation. We hypothesized that basal body localization and outer segment formation would require the microtubule motor dynein 1 and analyzed the zebrafish cannonball and mike oko mutants, which carry mutations in the heavy chain subunit of cytoplasmic dynein 1 (dync1h1) and the p150(Glued) subunit of Dynactin (dctn1a). The distribution of Rab6, a player in the post-Golgi trafficking of rhodopsin, was also examined. Basal body docking was unaffected in both mutants, but Rab6 expression was reduced. The results suggest that dynein 1 is dispensable for basal body docking but that outer segment defects may be due to defects in post-Golgi trafficking. "	"Specification and development of the apical membrane in epithelial cells requires the function of polarity proteins, including Pard3 and an atypical protein kinase C (PrkC). Many epithelial cells possess microtubule-based organelles, known as cilia, that project from their apical surface and the membrane surrounding the cilium is contiguous with the apical cell membrane. Although cilia formation in cultured cells required Pard3, the in vivo requirement for Pard3 in cilia development remains unknown. The vertebrate photoreceptor outer segment represents a highly specialized cilia structure in which to identify factors necessary for apical and ciliary membrane formation. Pard3 and PrkC localized to distinct domains within vertebrate photoreceptors. Using partial morpholino knockdown, photo-morpholinos, and pharmacological approaches, the function of Pard3 and PrkC were found to be required for the formation of both the apical and ciliary membrane of vertebrate photoreceptors. Inhibition of Pard3 or PrkC activity significantly reduced the size of photoreceptor outer segments and resulted in mislocalization of rhodopsin. Suppression of Pard3 or PrkC also led to a reduction in cilia size and cilia number in Kupffer's Vesicle, which resulted in left-right asymmetry defects. Thus, the Par-PrkC complex functions in cilia formation in vivo and this likely reflects a general role in specifying non-ciliary and ciliary compartments of the apical domain. "	"Mutations in myosin VIIa (MYO7A) cause Usher Syndrome 1B (USH1B), a disease characterized by the combination of sensorineural hearing loss and visual impairment termed retinitis pigmentosa (RP). Although the shaker-1 mouse model of USH1B exists, only minor defects in the retina have been observed during its lifespan. Previous studies of the zebrafish mariner mutant, which also carries a mutation in myo7aa, revealed balance and hearing defects in the mutants but the retinal phenotype has not been described. We found elevated cell death in the outer nuclear layer (ONL) of myo7aa(-/-) mutants. While myo7aa(-/-) mutants retained visual behaviors in the optokinetic reflex (OKR) assay, electroretinogram (ERG) recordings revealed a significant decrease in both a- and b-wave amplitudes in mutant animals, but not a change in ERG threshold sensitivity. Immunohistochemistry showed mislocalization of rod and blue cone opsins and reduced expression of rod-specific markers in the myo7aa(-/-) ONL, providing further evidence that the photoreceptor degeneration observed represents the initial stages of the RP. Further, constant light exposure resulted in widespread photoreceptor degeneration and the appearance of large holes in the retinal pigment epithelium (RPE). No differences were observed in the retinomotor movements of the photoreceptors or in melanosome migration within the RPE, suggesting that myo7aa(-/-) does not function in these processes in teleosts. These results indicate that the zebrafish myo7aa(-/-) mutant is a useful animal model for the RP seen in humans with USH1B. "	"PURPOSE. Jeune's asphyxiating thoracic dystrophy (JATD) is an autosomal recessive disorder with symptoms of retinal degeneration, kidney cysts, and chondrodysplasia and results from mutations in the ift80 gene. This study was conducted to characterize zebrafish lacking ift80 function for photoreceptor degeneration and defects in ciliogenesis to establish zebrafish as a vertebrate model for visual dysfunction in JATD and to determine whether ift80 interacts genetically with Bardet-Biedl syndrome (BBS) genes. METHODS. Zebrafish were injected with morpholinos (MOs) targeted to the ift80 gene. Retinas were analyzed by histology, transmission electron microscopy, and immunohistochemistry. Ear and kidney cilia were analyzed by whole-mount immunostaining. Intraflagellar transport (IFT) particle composition was subjected to Western blot analysis. Genetic interactions were tested by coinjection of MOs against ift80 and bbs4 or bbs8 followed by in situ hybridization. RESULTS. Zebrafish lacking ift80 function exhibited defects in photoreceptor outer segment formation and photoreceptor death. Staining with opsin antibodies revealed opsin mislocalization in both rods and cones. Ultrastructural analysis showed abnormal disc stacking and shortened photoreceptor outer segments. The kinocilia of the ear and motile cilia in the kidney were shorter and reduced in number. Western blot analysis revealed a slight increase in the stability of other IFT proteins. Coinjection of MOs against ift80 and BBS genes led to convergent-extension defects. CONCLUSIONS. Zebrafish lacking ift80 exhibited defects characteristic of JATD. Because the developing outer segments degenerated, Ift80 could possibly act as a maintenance factor for the IFT particle."
+"Piedimonte, Giovanni"	"Inflammation and Immunity"	30575339	29329282	28834426	28701524	28500974	28215300	28178290	28140833	28135044	27740722	"Preterm birth is a significant cause of infant morbidity and mortality, which are primarily the result of respiratory and neurodevelopmental complications. However, no objective biomarker is currently available to predict at birth the risk and severity of such complications. Thus, we sought to determine whether serum neurotrophins concentrations measured at birth correlate with risk for later development of bronchopulmonary dysplasia (BPD) and long-term neurodevelopmental outcomes. This study prospectively included 223 newborns admitted to neonatal intensive care units (NICU) and divided into three groups: (i) preterm infants who developed BPD; (ii) preterm infants who did not develop BPD; (iii) term infants. An exploratory cohort was enrolled in West Virginia, followed by a validation cohort recruited in four NICUs in Ohio. Specimens for serum and tracheal neurotrophins concentrations were collected within 48 h of admission. Infants requiring a fraction of inspired oxygen &gt;0.21 for at least 28 days were diagnosed with BPD. Neurodevelopmental outcomes were extrapolated from Bayley Scales of Infant Development-Third Edition (BSID-III) administered at the 24-month follow-up visit. Serum brain-derived neurotrophic factor (BDNF) concentration at birth had significant negative correlation with later diagnosis of BPD (P = 0.011) and with duration of invasive ventilation and oxygen supplementation (P = 0.009 and 0.015, respectively). Serum nerve growth factor (NGF) concentration at birth had significant positive correlation with BSID-III cognitive and language composite scores at 24 months (P &lt; 0.001 and 0.010, respectively). These data suggest that serum neurotrophins concentrations measured at birth provide prognostic information on subsequent respiratory and neurodevelopmental outcomes."	"BackgroundDespite decades that have passed since its discovery, accurate biomarkers of respiratory syncytial virus (RSV) disease activity and effective therapeutic strategies are still lacking. The high-mobility group box type 1 (HMGB1) protein has been proposed as a possible link between RSV and immune system, but only limited information is currently available to support this hypothesis.MethodsExpression of HMGB1 gene and protein was analyzed by quantitative PCR, enzyme-linked immunosorbent assay (ELISA), western blot, immunocytochemistry, and confocal microscopy in immortalized and primary human bronchial epithelial cells, as well as in rat pup lungs. The role of HMGB1 in RSV infection was explored using glycyrrhizin, a selective HMGB1 inhibitor.ResultsRSV infection strongly induced HMGB1 expression both in vitro and in vivo. Glycyrrhizin dose-dependently inhibited HMGB1 upregulation in both RSV-infected immortalized and primary human bronchial epithelial cells, and this effect was associated with significant reduction of viral replication.ConclusionOur data suggest that HMGB1 expression increases during RSV replication. This seems to have a critical pathogenic role as its selective inhibition virtually modified the infection. These observations provide further insight into the pathophysiology of RSV infection and uncover a potential biomarker and therapeutic target for the most common respiratory infection of infancy."	"Respiratory syncytial virus (RSV) is the most common respiratory pathogen in infants and young children. From the nasopharyngeal or conjunctival mucosa of infected individuals, RSV spreads to the lower respiratory tract causing acute bronchiolitis and pneumonia after an incubation period of 4-6 days. In addition to its well-documented tropism for the airway epithelium, it has been shown previously that RSV can also spread hematogenously and efficiently infect extrapulmonary tissues of human hosts. Furthermore, it has been shown in animal models that RSV can spread transplacentally from the respiratory tract of a pregnant mother to the lungs of the fetus. This report describes a documented case of neonatal RSV infection strongly suggestive of prenatal transmission of this infection in humans from an infected mother to her offspring."	"Cytotoxic and neuroinflammatory effects of TiO2 nanoparticles (TiO2-NP) in human airways are mediated by nerve growth factor (NGF), which is also implicated in the pathophysiology of respiratory syncytial virus (RSV) infection. We tested the hypothesis that exposure to TiO2-NP results in increased susceptibility to RSV infection and exacerbation of airway inflammation via NGF-mediated induction of autophagy in lower respiratory tract cells. Human primary bronchial epithelial cells were exposed to TiO2-NP for 24 h prior to infection with recombinant red RSV (rrRSV). Expression of NGF and its TrkA and p75<sup>NTR</sup> receptors was measured by real-time PCR and fluorescence-activated cell sorting (FACS). Autophagy was assessed by beclin-1 expression analysis. Cell death was studied by FACS after annexin V/propidium iodide staining. rrRSV infection efficiency more than doubled in human bronchial cells pre-exposed to TiO2-NP compared to controls. NGF and its TrkA receptor were upregulated in RSV-infected bronchial cells pre-exposed to TiO2-NP compared to controls exposed to either rrRSV or TiO2-NP alone. Silencing NGF gene expression with siRNA significantly inhibited rrRSV infection. rrRSV-infected cells pre-exposed to TiO2-NP also showed increase in necrotic cell death and reduction in apoptosis, together with 4.3-fold increase in expression of the early autophagosomal gene beclin-1. Pharmacological inhibition of beclin-1 by wortmannin resulted in increased apoptotic rate along with lower viral load. This study shows that TiO2-NP exposure enhances the infectivity of RSV in human bronchial epithelial cells by upregulating the NGF/TrkA axis. The mechanism of this interaction involves induction of autophagy promoting viral replication and necrotic cell death."	"Respiratory syncytial virus (RSV) is the most common respiratory pathogen in infants and young children worldwide. Lower respiratory tract infection due to RSV is one of the most common causes of hospitalization for infants, especially those born premature or with chronic lung or heart disease. Furthermore, RSV infection is an important cause of morbidity in adults, particularly in the elderly and immunocompromised individuals. The acute phase of this infection is often followed by episodes of wheezing that recur for months or years and usually lead to a physician diagnosis of asthma. RSV was discovered more than 50 years ago, and despite extensive research to identify pharmacological therapies, the most effective management of this infection remains supportive care. The trial of a formalin-inactivated RSV vaccine in the 1960s resulted in priming the severe illness upon natural infection. Currently, Palivizumab is the only available option for RSV prophylaxis, and because of restricted clinical benefits and high costs, it has been limited to a group of high-risk infants. There are several ongoing trials in preclinical, Phase-I, Phase-II, or Phase-III clinical stages for RSV vaccine development based on various strategies. Here we review the existing available prophylactic options, the current stages of RSV vaccine clinical trials, different strategies, and major hurdles in the development of an effective RSV vaccine."	"Allergic inflammation is the result of a specific pattern of cellular and humoral responses leading to the activation of the innate and adaptive immune system, which, in turn, results in physiological and structural changes affecting target tissues such as the airways and the skin. Eosinophil activation and the production of soluble mediators such as IgE antibodies are pivotal features in the pathophysiology of allergic diseases. In the past few years, however, convincing evidence has shown that neurons and other neurosensory structures are not only a target of the inflammatory process but also participate in the regulation of immune responses by actively releasing soluble mediators. The main products of these activated sensory neurons are a family of protein growth factors called neurotrophins. They were first isolated in the central nervous system and identified as important factors for the survival and differentiation of neurons during fetal and postnatal development as well as neuronal maintenance later in life. Four members of this family have been identified and well defined: nerve growth factor, brain-derived neurotrophic factor, neurotrophin 3, and neurotrophin 4/5. Neurotrophins play a critical role in the bidirectional signaling mechanisms between immune cells and the neurosensory network structures in the airways and the skin. Pruritus and airway hyperresponsiveness, two major features of atopic dermatitis and asthma, respectively, are associated with the disruption of the neurosensory network activities. In this chapter, we provide a comprehensive description of the neuroimmune interactions underlying the pathophysiological mechanisms of allergic and inflammatory diseases."	"Maternal viral infections can have pathological effects on the developing fetus which last long after birth. Recently, maternal-fetal transmission of respiratory syncytial virus (RSV) was shown to cause postnatal airway hyperreactivity (AHR) during primary early-life reinfection; however, the influence of prenatal exposure to RSV on offspring airway immunity and smooth muscle contractility during recurrent postnatal reinfections remains unknown. Therefore, we sought to determine whether maternal RSV infection impairs specific aspects of cell-mediated offspring immunity during early-life reinfections and the mechanisms leading to AHR. Red fluorescent protein-expressing recombinant RSV (rrRSV) was inoculated into pregnant rat dams at midterm, followed by primary and secondary postnatal rrRSV inoculations of their offspring at early-life time points. Pups and weanlings were tested for specific lower airway leukocyte populations by flow cytometry; serum cytokine/chemokine concentrations by multiplex ELISA and neurotrophins concentrations by standard ELISA; and ex vivo lower airway smooth muscle (ASM) contraction by physiological tissue bath. Pups born to RSV-infected mothers displayed elevated total CD3+ T cells largely lacking CD4+ and CD8+ surface expression after both primary and secondary postnatal rrRSV infection. Cytokine/chemokine analyses revealed reduced IFN-γ, IL-2, IL-12, IL-17A, IL-18, and TNF-α, as well as elevated nerve growth factor (NGF) expression. Prenatal exposure to RSV also increased ASM reactivity and contractility during early-life rrRSV infection compared to non-exposed controls. We conclude that maternal RSV infection can predispose offspring to postnatal lower airways dysfunction by altering immunity development, NGF signaling, and ASM contraction during early-life RSV reinfections."	"Environmental and occupational exposures to respirable ultrafine fractions of particulate matter (PM) have been implicated in the initiation and exacerbation of lung diseases. However, the precise mechanisms underlying production of cell damage and death attributed to nanoparticles (NP) on human airway epithelium are not fully understood. This study examined the role of neurotrophic pathways in NP-induced airway toxicity. Size and agglomeration of TiO2 nanoparticles (TiO2-NP) and fine (TiO2-FP) particles were measured by dynamic light scattering. Expression and signaling of key neurotrophic factors and receptors were assessed by real-time polymerase chain reaction, flow cytometry, immunostaining, and Western blot in various respiratory epithelial cells after exposure to TiO2-NP or TiO2-FP. Particle-induced cell death was measured by flow cytometry after annexin V/propidium iodide staining. The role of neurotrophin-dependent apoptotic pathways was analyzed with specific blocking antibodies or siRNAs. Exposure of human epithelial cells to TiO2-NP enhanced interleukin (IL)-1α synthesis, as well as nerve growth factor (NGF) gene expression and protein levels, specifically the precursor form (proNGF). TiO2-NP exposure also increased expression of p75<sup>NRF</sup> receptor genes. These neurotropic factor and receptor responses were stimulated by IL-1α and abolished by its specific receptor antagonist (IL-1-ra). TiO2-NP also increased JNK phosphorylation and apoptosis, which was prevented by anti-p75<sup>NRF</sup> or NGFsiRNA. Data demonstrated that TiO2-NP exerted adverse effects in the respiratory tract by inducing unbalanced overexpression of immature neurotrophins, which led to apoptotic death of epithelial cells signaled through the death receptor p75<sup>NTR</sup>. This may result in airway inflammation and hyperreactivity after exposure to TiO2-NP."	"During the Fall of 2014, numerous children were hospitalized with asthma or respiratory distress related to Enterovirus D68 (EV-D68). A large proportion initially tested positive for rhinovirus. During this period our laboratory noted a cross-reactivity between EV-D68 and the rhinovirus component of the GenMark multiplex respiratory viral panel. Many other laboratories used assays not designed to distinguish these Picornoviridae. To compare the presentation and outcomes of patients with rhinovirus and EV-D68, 103 GenMark rhinovirus positive nasopharyngeal swabs from hospitalized children were retested for EV-D68. EV-D68 positive patients versus EV-D68 negative patients were more likely to have a history of asthma (33.3% vs. 11.0%, P = 0.02) and to present with acute respiratory illness (66.7% vs. 40.2%, P = 0.048), especially status asthmaticus (47.6% vs. 2.4%, P &lt; 0.001). On admission they had more wheezing, respiratory distress, and lower respiratory tract involvement, and were more likely to be treated with steroids and discharged home on asthma medications. Respiratory viral coinfection was less common in EV-D68 positive vs EV-D68 negative patients. In patients without a respiratory viral coinfection the overall findings were similar. Patients with EV-D68 versus rhinovirus were more likely to have a history of asthma, to present with status asthmaticus, to wheeze on admission, and to receive treatment with asthma medications in hospital and at discharge. The inability of common assays to distinguish EV-D68 from rhinoviruses raises the possibility that the role of EV-D68 as a viral trigger of asthma has been under appreciated. Pediatr Pulmonol. 2017;52:827-832. © 2017 Wiley Periodicals, Inc."	"Respiratory syncytial virus (RSV) is the most common cause of respiratory illness in infants and young children, but this virus is also capable of re-infecting adults throughout life. Universal precautions to prevent its transmission consist of gown and glove use, but masks and goggles are not routinely required because it is believed that RSV is unlikely to be transmitted by the airborne route. Our hypothesis was that RSV is present in respirable-size particles aerosolized by patients seen in a pediatric acute care setting. RSV-laden particles were captured using stationary 2-stage bioaerosol cyclone samplers. Aerosol particles were separated into three size fractions (&lt;1, 1-4.1, and ≥4.1 μm) and were tested for the presence of RSV RNA by real-time PCR. Samplers were set 152 cm (&quot;upper&quot;) and 102 cm (&quot;lower&quot;) above the floor in each of two examination rooms. Of the total, 554 samples collected over 48 days, only 13 (or 2.3%) were positive for RSV. More than 90% of the RSV-laden aerosol particles were in the ≥4.1 μm size range, which typically settle to the ground within minutes, whereas only one sample (or 8%) was positive for particles in the 1-4.1 μm respirable size range. Our data indicate that airborne RSV-laden particles can be detected in pediatric outpatient clinics during the epidemic peak. However, RSV airborne transmission is highly inefficient. Thus, the logistical and financial implications of mandating the use of masks and goggles to prevent RSV spread seem unwarranted in this setting. Pediatr Pulmonol. 2017;52:684-688. © 2016 Wiley Periodicals, Inc."
+"Plow, Edward"	"Cardiovascular and Metabolic Sciences"	29743493	29467183	29138119	28799653	28687620	28652408	27500205	27044892	25609252	24876560	"Metastasis is the main cause of death in cancer patients, including breast cancer (BC). Despite recent progress in understanding the biological and molecular determinants of BC metastasis, effective therapeutic treatments are yet to be developed. Among the multitude of molecular mechanisms that regulate cancer metastasis, the epithelial-to-mesenchymal transition (EMT) program plays a key role in the activation of the biological steps leading to the metastatic phenotype. Kindlin-2 has been associated with the pathogenesis of several types of cancers, including BC. The role of Kindlin-2 in the regulation of BC metastasis, and to a lesser extent in EMT is not well understood. In this study, we show that Kindlin-2 is closely associated with the development of the metastatic phenotype in BC. We report that knockout of Kindlin-2 in either human or mouse BC cells, significantly inhibits metastasis in both human and mouse models of BC metastasis. We also report that the Kindlin-2-mediated inhibition of metastasis is the result of inhibition of expression of key molecular markers of the EMT program. Mechanistically, we show that miR-200b, a master regulator of EMT, directly targets and inhibits the expression of Kindlin-2, leading to the subsequent inhibition of EMT and metastasis. Together, our data support the targeting of Kindlin-2 as a therapeutic strategy against BC metastasis."	"Current antithrombotic drugs, including widely used antiplatelet agents and anticoagulants, are associated with significant bleeding risk. Emerging experimental evidence suggests that the molecular and cellular mechanisms of hemostasis and thrombosis can be separated, thereby increasing the possibility of new antithrombotic therapeutic targets with reduced bleeding risk. We review new coagulation and platelet targets and highlight the interaction between integrin αMβ2 (Mac-1, CD11b/CD18) on leukocytes and GPIbα on platelets that seems to distinguish thrombosis from hemostasis."	"Thrombospondin-4 (TSP-4) belongs to the thrombospondin protein family that consists of five highly homologous members. A number of novel functions have been recently assigned to TSP-4 in cardiovascular and nervous systems, inflammation, cancer, and the motor unit, which have attracted attention to this extracellular matrix (ECM) protein. These newly discovered functions set TSP-4 apart from other thrombospondins. For example, TSP-4 promotes angiogenesis while other TSPs either prevent it or have no effect on new blood vessel growth; TSP-4 reduces fibrosis and collagen production while TSP-1 and TSP-2 promote fibrosis in several organs; unlike other TSPs, TSP-4 appears to have some structural functions in ECM. The current information about TSP-4 functions in different organs and physiological systems suggests that this evolutionary conserved protein is a major regulator of the extracellular matrix (ECM) organization and production and tissue remodeling during the embryonic development and response to injury. In this review article, we summarize the properties and functions of TSP-4 and discuss its role in tissue remodeling."	"A reduction in Kindlin-2 levels in endothelial cells compromises vascular barrier function. Kindlin-2 is a previously unrecognized component of endothelial adherens junctions. By interacting directly and simultaneously with β- or γ-catenin and cortical actin filaments, Kindlin-2 stabilizes adherens junctions. The Kindlin-2 binding sites for β- and γ-catenin reside within its F1 and F3 subdomains. Although Kindlin-2 does not associate directly with tight junctions, its downregulation also destabilizes these junctions. Thus, impairment of both adherens and tight junctions may contribute to enhanced leakiness of vasculature in Kindlin-2<sup>+/-</sup> mice. Endothelial cells (EC) establish a physical barrier between the blood and surrounding tissue. Impairment of this barrier can occur during inflammation, ischaemia or sepsis and cause severe organ dysfunction. Kindlin-2, which is primarily recognized as a focal adhesion protein in EC, was not anticipated to have a role in vascular barrier. We tested the role of Kindlin-2 in regulating vascular integrity using several different approaches to decrease Kindlin-2 levels in EC. Reduced levels of Kindlin-2 in Kindlin-2<sup>+/-</sup> mice aortic endothelial cells (MAECs) from these mice, and human umbilical ECs (HUVEC) treated with Kindlin-2 siRNA showed enhanced basal and platelet-activating factor (PAF) or lipopolysaccharide-stimulated vascular leakage compared to wild-type (WT) counterparts. PAF preferentially disrupted the Kindlin-2<sup>+/-</sup> MAECs barrier to BSA and dextran and reduced transendothelial resistance compared to WT cells. Kindlin-2 co-localized and co-immunoprecipitated with vascular endothelial cadherin-based complexes, including β- and γ-catenin and actin, components of adherens junctions (AJ). Direct interaction of Kindlin-2 with β- and γ-catenin and actin was demonstrated in co-immunoprecipitation and surface plasmon resonance experiments. In thrombin-stimulated HUVECs, Kindlin-2 and cortical actin dissociated from stable AJs and redistributed to radial actin stress fibres of remodelling focal AJs. The β- and γ-catenin binding site resides within the F1 and F3 subdomains of Kindlin-2 but not the integrin binding site in F3. These results establish a previously unrecognized and vital role of Kindlin-2 with respect to maintaining the vascular barrier by linking Vascuar endothelial cadherin-based complexes to cortical actin and thereby stabilizing AJ."	"Interplay between tumor cells and host cells in the tumor microenvironment dictates the development of all cancers. In breast cancer, malignant cells educate host macrophages to adopt a protumorigenic phenotype. In this study, we show how the integrin-regulatory protein kindlin-2 (FERMT2) promotes metastatic progression of breast cancer through the recruitment and subversion of host macrophages. Kindlin-2 expression was elevated in breast cancer biopsy tissues where its levels correlated with reduced patient survival. On the basis of these observations, we used CRISPR/Cas9 technology to ablate Kindlin-2 expression in human MDA-MB-231 and murine 4T1 breast cancer cells. Kindlin-2 deficiency inhibited invasive and migratory properties in vitro without affecting proliferation rates. However, in vivo tumor outgrowth was inhibited by &gt;80% in a manner associated with reduced macrophage infiltration and secretion of the macrophage attractant and growth factor colony-stimulating factor-1 (CSF-1). The observed loss of CSF-1 appeared to be caused by a more proximal deficiency in TGFβ-dependent signaling in Kindlin-2-deficient cells. Collectively, our results illuminate a Kindlin-2/TGFβ/CSF-1 signaling axis employed by breast cancer cells to capture host macrophage functions that drive tumor progression. Cancer Res; 77(18); 5129-41. ©2017 AACR."	"Kindlin-2 (K2), a 4.1R-ezrin-radixin-moesin (FERM) domain adaptor protein, mediates numerous cellular responses, including integrin activation. The C-terminal 15-amino acid sequence of K2 is remarkably conserved across species but is absent in canonical FERM proteins, including talin. In CHO cells expressing integrin αIIbβ3, co-expression of K2 with talin head domain resulted in robust integrin activation, but this co-activation was lost after deletion of as few as seven amino acids from the K2 C terminus. This dependence on the C terminus was also observed in activation of endogenous αIIbβ3 in human erythroleukemia (HEL) cells and β1 integrin activation in macrophage-like RAW264.1 cells. Kindlin-1 (K1) exhibited a similar dependence on its C terminus for integrin activation. Expression of the K2 C terminus as an extension of membrane-anchored P-selectin glycoprotein ligand-1 (PSGL-1) inhibited integrin-dependent cell spreading. Deletion of the K2 C terminus did not affect its binding to the integrin β3 cytoplasmic tail, but combined biochemical and NMR analyses indicated that it can insert into the F2 subdomain. We suggest that this insertion determines the topology of the K2 FERM domain, and its deletion may affect the positioning of the membrane-binding functions of the F2 subdomain and the integrin-binding properties of its F3 subdomain. Free C-terminal peptide can still bind to K2 and displace the endogenous K2 C terminus but may not restore the conformation needed for integrin co-activation. Our findings indicate that the extreme C terminus of K2 is essential for integrin co-activation and highlight the importance of an atypical architecture of the K2 FERM domain in regulating integrin activation."	"Kindlins are 4.1-ezrin-ridixin-moesin (FERM) domain containing proteins. There are three kindlins in mammals, which share high sequence identity. Kindlin-1 is expressed primarily in epithelial cells, kindlin-2 is widely distributed and is particularly abundant in adherent cells, and kindlin-3 is expressed primarily in hematopoietic cells. These distributions are not exclusive; some cells express multiple kindlins, and transformed cells often exhibit aberrant expression, both in the isoforms and the levels of kindlins. Great interest in the kindlins has emerged from the recognition that they play major roles in controlling integrin function. In vitro studies, in vivo studies of mice deficient in kindlins, and studies of patients with genetic deficiencies of kindlins have clearly established that they regulate the capacity of integrins to mediate their functions. Kindlins are adaptor proteins; their function emanate from their interaction with binding partners, including the cytoplasmic tails of integrins and components of the actin cytoskeleton. The purpose of this review is to provide a brief overview of kindlin structure and function, a consideration of their binding partners, and then to focus on the relationship of each kindlin family member with cancer. In view of many correlations of kindlin expression levels and neoplasia and the known association of integrins with tumor progression and metastasis, we consider whether regulation of kindlins or their function would be attractive targets for treatment of cancer."	"Reduced levels of kindlin-2 (K2) in endothelial cells derived from K2(+/-)mice or C2C12 myoblastoid cells treated with K2 siRNA showed disorganization of their actin cytoskeleton and decreased spreading. These marked changes led us to examine direct binding between K2 and actin. Purified K2 interacts with F-actin in cosedimentation and surface plasmon resonance analyses and induces actin aggregation. We further find that the F0 domain of K2 binds actin. A mutation, LK(47)/AA, within a predicted actin binding site (ABS) of F0 diminishes its interaction with actin by approximately fivefold. Wild-type K2 and K2 bearing the LK(47)/AA mutation were equivalent in their ability to coactivate integrin αIIbβ3 in a CHO cell system when coexpressed with talin. However, K2-LK(47)/AA exhibited a diminished ability to support cell spreading and actin organization compared with wild-type K2. The presence of an ABS in F0 of K2 that influences outside-in signaling across integrins establishes a new foundation for considering how kindlins might regulate cellular responses. "	"The contributions of integrins to cellular responses depend upon their activation, which is regulated by binding of proteins to their cytoplasmic tails. Kindlins are integrin cytoplasmic tail binding partners and are essential for optimal integrin activation, and kindlin-3 fulfills this role in hematopoietic cells. Here, we used human platelets and human erythroleukemia (HEL) cells, which express integrin αIIbβ3, to investigate whether phosphorylation of kindlin-3 regulates integrin activation. When HEL cells were stimulated with thrombopoietin or phorbol 12-myristate 13-acetate (PMA), αIIbβ3 became activated as evidenced by binding of an activation-specific monoclonal antibody and soluble fibrinogen, adherence and spreading on fibrinogen, colocalization of β3 integrin and kindlin-3 in focal adhesions, and enhanced β3 integrin-kindlin-3 association in immunoprecipitates. Kindlin-3 knockdown impaired adhesion and spreading on fibrinogen. Stimulation of HEL cells with agonists significantly increased kindlin-3 phosphorylation as detected by mass spectrometric sequencing. Thr(482) or Ser(484) was identified as a phosphorylation site, which resides in a sequence not conserved in kindlin-1 or kindlin-2. These same residues were phosphorylated in kindlin-3 when platelets were stimulated with thrombin. When expressed in HEL cells, T482A/S484A kindlin-3 decreased soluble ligand binding and cell spreading on fibrinogen compared with wild-type kindlin-3. A membrane-permeable peptide containing residues 476-485 of kindlin-3 was introduced into HEL cells and platelets; adhesion and spreading of both cell types were blunted compared with a scrambled control peptide. These data identify a role of kindlin-3 phosphorylation in integrin β3 activation and provide a basis for functional differences between kindlin-3 and the two other kindlin paralogs. "	"The phagocytic function of macrophages plays a pivotal role in eliminating apoptotic cells and invading pathogens. Evidence implicating plasminogen (Plg), the zymogen of plasmin, in phagocytosis is extremely limited with the most recent in vitro study showing that plasmin acts on prey cells rather than on macrophages. Here, we use apoptotic thymocytes and immunoglobulin opsonized bodies to show that Plg exerts a profound effect on macrophage-mediated phagocytosis in vitro and in vivo. Plg enhanced the uptake of these prey by J774A.1 macrophage-like cells by 3.5- to fivefold Plg receptors and plasmin proteolytic activity were required for phagocytosis of both preys. Compared with Plg(+/+) mice, Plg(-/-) mice exhibited a 60% delay in clearance of apoptotic thymocytes by spleen and an 85% reduction in uptake by peritoneal macrophages. Phagocytosis of antibody-mediated erythrocyte clearance by liver Kupffer cells was reduced by 90% in Plg(-/-) mice compared with Plg(+/+) mice. A gene array of splenic and hepatic tissues from Plg(-/-) and Plg(+/+) mice showed downregulation of numerous genes in Plg(-/-) mice involved in phagocytosis and regulation of phagocytic gene expression was confirmed in macrophage-like cells. Thus, Plg may play an important role in innate immunity by changing expression of genes that contribute to phagocytosis. "
+"Plow, Ela"	"Biomedical Engineering"	29563050	28784042	28662931	28607523	28402865	28142257	28117211	28091708	27838275	27045553	NA	"Our goal was to determine if pairing transcranial direct current stimulation (tDCS) with rehabilitation for two weeks could augment adaptive plasticity offered by these residual pathways to elicit longer-lasting improvements in motor function in incomplete spinal cord injury (iSCI). Longitudinal, randomized, controlled, double-blinded cohort study. Cleveland Clinic Foundation, Cleveland, Ohio, USA. Eight male subjects with chronic incomplete motor tetraplegia. Massed practice (MP) training with or without tDCS for 2 hrs, 5 times a week. We assessed neurophysiologic and functional outcomes before, after and three months following intervention. Neurophysiologic measures were collected with transcranial magnetic stimulation (TMS). TMS measures included excitability, representational volume, area and distribution of a weaker and stronger muscle motor map. Functional assessments included a manual muscle test (MMT), upper extremity motor score (UEMS), action research arm test (ARAT) and nine hole peg test (NHPT). We observed that subjects receiving training paired with tDCS had more increased strength of weak proximal (15% vs 10%), wrist (22% vs 10%) and hand (39% vs. 16%) muscles immediately and three months after intervention compared to the sham group. Our observed changes in muscle strength were related to decreases in strong muscle map volume (r=0.851), reduced weak muscle excitability (r=0.808), a more focused weak muscle motor map (r=0.675) and movement of weak muscle motor map (r=0.935). Overall, our results encourage the establishment of larger clinical trials to confirm the potential benefit of pairing tDCS with training to improve the effectiveness of rehabilitation interventions for individuals with SCI. NCT01539109."	NA	NA	"The standard approach to brain stimulation in stroke is based on the premise that ipsilesional M1 (iM1) is important for motor function of the paretic upper limb, while contralesional cortices compete with iM1. Therefore, the approach typically advocates facilitating iM1 and/or inhibiting contralesional M1 (cM1). But, this approach fails to elicit much improvement in severely affected patients, who on account of extensive damage to ipsilesional pathways, cannot rely on iM1. These patients are believed to instead rely on the undamaged cortices, especially the contralesional dorsal premotor cortex (cPMd), for support of function of the paretic limb. Here, we tested for the first time whether facilitation of cPMd could improve paretic limb function in severely affected patients, and if a cut-off could be identified to separate responders to cPMd from responders to the standard approach to stimulation. In a randomized, sham-controlled crossover study, fifteen patients received the standard approach of stimulation involving inhibition of cM1 and a new approach involving facilitation of cPMd using repetitive transcranial magnetic stimulation (rTMS). Patients also received rTMS to control areas. At baseline, impairment [Upper Extremity Fugl-Meyer (UEFMPROXIMAL, max=36)] and damage to pathways [fractional anisotropy (FA)] was measured. We measured changes in time to perform proximal paretic limb reaching, and neurophysiology using TMS. Facilitation of cPMd generated more improvement in severely affected patients, who had experienced greater damage and impairment than a cut-off value of FA (0.5) and UEFMPROXIMAL (26-28). The standard approach instead generated more improvement in mildly affected patients. Responders to cPMd showed alleviation of interhemispheric competition imposed on iM1, while responders to the standard approach showed gains in ipsilesional excitability in association with improvement. A preliminary cut-off level of severity separated responders for standard approach vs. facilitation of cPMd. Cut-offs identified here could help select candidates for tailored stimulation in future studies so patients in all ranges of severity could potentially achieve maximum benefit in function of the paretic upper limb."	"The pain matrix is comprised of an extensive network of brain structures involved in sensory and/or affective information processing. The thalamus is a key structure constituting the pain matrix. The thalamus serves as a relay center receiving information from multiple ascending pathways and relating information to and from multiple cortical areas. However, it is unknown how thalamocortical networks specific to sensory-affective information processing are functionally integrated. Here, in a proof-of-concept study in healthy humans, we aimed to understand this connectivity using transcranial direct current stimulation (tDCS) targeting primary motor (M1) or dorsolateral prefrontal cortices (DLPFC). We compared changes in functional connectivity (FC) with DLPFC tDCS to changes in FC with M1 tDCS. FC changes were also compared to further investigate its relation with individual's baseline experience of pain. We hypothesized that resting-state FC would change based on tDCS location and would represent known thalamocortical networks. Ten right-handed individuals received a single application of anodal tDCS (1 mA, 20 min) to right M1 and DLPFC in a single-blind, sham-controlled crossover study. FC changes were studied between ventroposterolateral (VPL), the sensory nucleus of thalamus, and cortical areas involved in sensory information processing and between medial dorsal (MD), the affective nucleus, and cortical areas involved in affective information processing. Individual's perception of pain at baseline was assessed using cutaneous heat pain stimuli. We found that anodal M1 tDCS and anodal DLPFC tDCS both increased FC between VPL and sensorimotor cortices, although FC effects were greater with M1 tDCS. Similarly, anodal M1 tDCS and anodal DLPFC tDCS both increased FC between MD and motor cortices, but only DLPFC tDCS modulated FC between MD and affective cortices, like DLPFC. Our findings suggest that M1 stimulation primarily modulates FC of sensory networks, whereas DLPFC stimulation modulates FC of both sensory and affective networks. Our findings when replicated in a larger group of individuals could provide useful evidence that may inform future studies on pain to differentiate between effects of M1 and DLPFC stimulation. Notably, our finding that individuals with high baseline pain thresholds experience greater FC changes with DLPFC tDCS implies the role of DLPFC in pain modulation, particularly pain tolerance."	"A high proportion of patients with stroke do not qualify for repetitive transcranial magnetic stimulation (rTMS) clinical studies due to the presence of metallic stents. The ultimate concern is that any metal could become heated due to eddy currents. However, to date, no clinical safety data are available regarding the risk of metallic stents heating with rTMS. We tested the safety of common rTMS protocols (1 Hz and 10 Hz) with stents used commonly in stroke, nitinol and elgiloy. In our method, stents were tested in gelled saline at 2 different locations: at the center and at the lobe of the coil. In addition, at each location, stent heating was evaluated in 3 different orientations: parallel to the long axis of coil, parallel to the short axis of the coil, and perpendicular to the plane of the coil. We found that stents did not heat to more than 1°C with either 1 Hz rTMS or 10 Hz rTMS in any configuration or orientation. Heating in general was greater at the lobe when the stent was oriented perpendicularly. Our study represents a new method for ex vivo quantification of stent heating. We have found that heating of stents was well below the Food and Drug Administration standards of 2°C. Thus, our study paves the way for in vivo testing of rTMS (≤10 Hz) in the presence of implanted magnetic resonance imaging-compatible stents in animal studies. When planning human safety studies though, geometry, orientation, and location relative to the coil would be important to consider as well."	"Motor overflow, typically described in the context of unimanual movements, refers to the natural tendency for a 'resting' limb to move during movement of the opposite limb and is thought to be influenced by inter-hemispheric interactions and intra-cortical networks within the 'resting' hemisphere. It is currently unknown, however, how motor overflow contributes to asymmetric force coordination task accuracy, referred to as bimanual interference, as there is need to generate unequal forces and corticospinal output for each limb. Here, we assessed motor overflow via motor evoked potentials (MEPs) and the regulation of motor overflow via inter-hemispheric inhibition (IHI) and short-intra-cortical inhibition (SICI) using transcranial magnetic stimulation in the presence of unimanual and bimanual isometric force production. All outcomes were measured in the left first dorsal interosseous (test hand) muscle, which maintained 30% maximal voluntary contraction (MVC), while the right hand (conditioning hand) was maintained at rest, 10, 30, or 70% of its MVC. We have found that as higher forces are generated with the conditioning hand, MEP amplitudes at the active test hand decreased and inter-hemispheric inhibition increased, suggesting reduced motor overflow in the presence of bimanual asymmetric forces. Furthermore, we found that subjects with less motor overflow (i.e., reduced MEP amplitudes in the test hemisphere) demonstrated poorer accuracy in maintaining 30% MVC across all conditions. These findings suggest that motor overflow may serve as an adaptive substrate to support bimanual asymmetric force coordination."	"The interhemispheric competition hypothesis attributes the distribution of selective attention to a balance of mutual inhibition between homotopic, interhemispheric connections in parietal cortex (Kinsbourne 1977; Battelli et al., 2009). In support of this hypothesis, repetitive inhibitory TMS over right parietal cortex in healthy individuals rapidly induces interhemispheric imbalance in cortical activity that spreads beyond the site of stimulation (Plow et al., 2014). Behaviorally, the impacts of inhibitory rTMS may be long delayed from the onset of stimulation, as much as 30 minutes (Agosta et al., 2014; Hubl et al., 2008). In this study, we examine the temporal dynamics of inhibitory rTMS on cortical network integrity that supports sustained visual attention. Healthy individuals received 15 min of 1 Hz offline, inhibitory rTMS (or sham) over left parietal cortex, and then immediately engaged in a bilateral visual tracking task while we recorded brain activity with fMRI. We computed functional connectivity (FC) between three nodes of the attention network engaged by visual tracking: the intraparietal sulcus (IPS), frontal eye fields (FEF) and human MT+ (hMT+). FC immediately and significantly decreased between the stimulation site (left IPS) and all other regions, then recovered to normal levels within 30 minutes. rTMS increased FC between left and right FEF at approximately 36 min following stimulation, and between sites in the unstimulated hemisphere approximately 48 min after stimulation. These findings demonstrate large-scale changes in cortical organization following inhibitory rTMS. The immediate impact of rTMS on connectivity to the stimulation site dovetails with the putative role of interhemispheric balance for bilateral visual sustained attention. The delayed, compensatory increases in functional connectivity have implications for models of dynamic reorganization in networks supporting spatial and nonspatial selective attention, and compensatory mechanisms within these networks that may be stabilized in chronic stroke."	"Test-retest reliability analysis in individuals with chronic incomplete spinal cord injury (iSCI). The purpose of this study was to examine the reliability of neurophysiological metrics acquired with transcranial magnetic stimulation (TMS) in individuals with chronic incomplete tetraplegia. Cleveland Clinic Foundation, Cleveland, Ohio, USA. TMS metrics of corticospinal excitability, output, inhibition and motor map distribution were collected in muscles with a higher MRC grade and muscles with a lower MRC grade on the more affected side of the body. Metrics denoting upper limb function were also collected. All metrics were collected at two sessions separated by a minimum of two weeks. Reliability between sessions was determined using Spearman's correlation coefficients and concordance correlation coefficients (CCCs). We found that TMS metrics that were acquired in higher MRC grade muscles were approximately two times more reliable than those collected in lower MRC grade muscles. TMS metrics of motor map output, however, demonstrated poor reliability regardless of muscle choice (P=0.34; CCC=0.51). Correlation analysis indicated that patients with more baseline impairment and/or those in a more chronic phase of iSCI demonstrated greater variability of metrics. In iSCI, reliability of TMS metrics varies depending on the muscle grade of the tested muscle. Variability is also influenced by factors such as baseline motor function and time post SCI. Future studies that use TMS metrics in longitudinal study designs to understand functional recovery should be cautious as choice of muscle and clinical characteristics can influence reliability."
+"Podrez, Eugene"	"Inflammation and Immunity"	29155052	28775078	25323497	24400094	24350680	23071157	22632897	21071700	20508162	20374263	"High density lipoprotein (HDL) is cardioprotective, unless it is pathologically modified under oxidative stress. Covalent modifications of lipid-free apoA-I, the most abundant apoprotein in HDL, compromise its atheroprotective functions. HDL is enriched in oxidized phospholipids (oxPL) in vivo in oxidative stress. Furthermore, oxidized phospholipids can covalently modify HDL apoproteins. We have now carried out a systematic analysis of modifications of HDL apoproteins by endogenous oxPL. Human HDL or plasma were oxidized using a physiologically relevant MPO-H2O2-NO2<sup>-</sup> system or AIPH, or were exposed to synthetic oxPL. Protein adduction by oxPL was assessed using LC-MS/MS and MALDI-TOF MS. The pattern of HDL apoprotein modification by oxPL was independent of the oxidation systems used. ApoA-I and apoA-II were the major modification targets. OxPL with a γ-hydroxy (or oxo)-alkenal were mostly responsible for modifications, and the Michael adduct was the most abundant adduct. Histidines and lysines in helices 5-8 of apoA-I were highly susceptible to oxPL modifications, while lysines in helices 1, 2, 4 and 10 were resistant to modification by oxPL. In plasma exposed to oxidation or synthetic oxPL, oxPL modification was highly selective, and four histidines (H155, H162, H193 and H199) in helices 6-8 of apoA-I were the main modification target. H710 and H3613 in apoB-100 of LDL and K190 of human serum albumin were also modified by oxPL but to a lesser extent. Comparison of oxPL with short chain aldehyde HNE using MALDI-TOF MS demonstrated high selectivity and efficiency of oxPL in the modification of HDL apoproteins. These findings provide a novel insight into a potential mechanism of the loss of atheroprotective function of HDL in conditions of oxidative stress."	"Platelet hyperreactivity, which is common in many pathological conditions, is associated with increased atherothrombotic risk. The mechanisms leading to platelet hyperreactivity are complex and not yet fully understood. Platelet hyperreactivity and accelerated thrombosis, specifically in dyslipidemia, have been mechanistically linked to the accumulation in the circulation of a specific group of oxidized phospholipids (oxPCCD36) that are ligands for the platelet pattern recognition receptor CD36. In the current article, we tested whether the platelet innate immune system contributes to responses to oxPCCD36 and accelerated thrombosis observed in hyperlipidemia. Using in vitro approaches, as well as platelets from mice with genetic deletion of MyD88 (myeloid differentiation factor 88) or TLRs (Toll-like receptors), we demonstrate that TLR2 and TLR6 are required for the activation of human and murine platelets by oxPCCD36. oxPCCD36 induce formation of CD36/TLR2/TLR6 complex in platelets and activate downstream signaling via TIRAP (Toll-interleukin 1 receptor domain containing adaptor protein)-MyD88-IRAK (interleukin-1 receptor-associated kinase)1/4-TRAF6 (TNF receptor-associated factor 6), leading to integrin activation via the SFK (Src family kinase)-Syk (spleen tyrosine kinase)-PLCγ2 (phospholipase Cγ2) pathway. Intravital thrombosis studies using ApoE<sup>-/-</sup> mice with genetic deficiency of TLR2 or TLR6 have demonstrated that oxPCCD36 contribute to accelerated thrombosis specifically in the setting of hyperlipidemia. Our studies reveal that TLR2 plays a key role in platelet hyperreactivity and the prothrombotic state in the setting of hyperlipidemia by sensing a wide range of endogenous lipid peroxidation ligands and activating innate immune signaling cascade in platelets."	"Recognition of specific oxidized phospholipids oxPCCD36 by scavenger receptors CD36 and SR-BI plays a critical role in several pathophysiological processes. The structural basis for the recognition of oxPCCD36 by CD36 and SR-BI is poorly understood. We describe here the design and synthesis of a series of model oxidized phospholipids having various functional groups at sn-1, sn-2, and sn-3 positions. Synthetic methodologies and experimental details for the preparation of specific examples of model oxidized phospholipids are presented. The correlation between their structure and their ability to serve as ligands for CD36 and SR-BI was determined using competitive binding assay on cells overexpressing scavenger receptors, direct binding assay to scavenger receptors expressed as GST-fusion proteins, and cholesterol ester synthesis assay using mouse peritoneal macrophages. "	"Specific oxidized phospholipids (oxPCCD36) promote platelet hyper-reactivity and thrombosis in hyperlipidemia via the scavenger receptor CD36, however the signaling pathway(s) induced in platelets by oxPCCD36 are not well defined. We have employed mass spectrometry-based tyrosine, serine, and threonine phosphoproteomics for the unbiased analysis of platelet signaling pathways induced by oxPCCD36 as well as by the strong physiological agonist thrombin. oxPCCD36 and thrombin induced differential phosphorylation of 115 proteins (162 phosphorylation sites) and 181 proteins (334 phosphorylation sites) respectively. Most of the phosphoproteome changes induced by either agonist have never been reported in platelets; thus they provide candidates in the study of platelet signaling. Bioinformatic analyses of protein phosphorylation dependent responses were used to categorize preferential motifs for (de)phosphorylation, predict pathways and kinase activity, and construct a phosphoproteome network regulating integrin activation. A putative signaling pathway involving Src-family kinases, SYK, and PLCγ2 was identified in platelets activated by oxPCCD36. Subsequent ex vivo studies in human platelets demonstrated that this pathway is downstream of the scavenger receptor CD36 and is critical for platelet activation by oxPCCD36. Our results provide multiple insights into the mechanism of platelet activation and specifically in platelet regulation by oxPCCD36. "	"Free radical-induced oxidation of phospholipids contributes significantly to pathologies associated with inflammation and oxidative stress. Detection of covalent interaction between oxidized phospholipids (oxPL) and proteins by LC-MS/MS could provide valuable information about the molecular mechanisms of oxPL effects. However, such studies are very limited because of significant challenges in detection of the comparatively low levels of oxPL-protein adducts in complex biological systems. Current approaches have several limitations, most important of which is the inability to detect protein modifications by naturally occurring oxPL. We now report, for the first time, an enrichment method that can be applied to the global analysis of protein adducts with various naturally occurring oxPL in relevant biological systems. This method exploits intrinsic properties of peptides modified by oxPL, allowing highly efficient enrichment of oxPL-modified peptides from biological samples. Very low levels of oxPL-protein adducts (&lt;2 ppm) were detected using this enrichment method in combination with LC-MS/MS. We applied the method to several model systems, including oxidation of high density lipoprotein (HDL) and interaction of human platelets with a specific oxPL, and demonstrated its extremely high efficiency and productivity. We report multiple new modifications of apolipoproteins in HDL and proteins in human platelets. "	"A prothrombotic state and increased platelet reactivity are common in pathophysiological conditions associated with oxidative stress and infections. Such conditions are associated with an appearance of altered-self ligands in circulation that can be recognized by Toll-like receptors (TLRs). Platelets express a number of TLRs, including TLR9; however, the role of TLR in platelet function and thrombosis is poorly understood. To investigate the biological activities of carboxy(alkylpyrrole) protein adducts, an altered-self ligand generated in oxidative stress, on platelet function and thrombosis. In this study we show that carboxy(alkylpyrrole) protein adducts represent novel unconventional ligands for TLR9. Furthermore, using human and murine platelets, we demonstrate that carboxy(alkylpyrrole) protein adducts promote platelet activation, granule secretion, and aggregation in vitro and thrombosis in vivo via the TLR9/MyD88 pathway. Platelet activation by TLR9 ligands induces IRAK1 and AKT phosphorylation, and it is Src kinase-dependent. Physiological platelet agonists act synergistically with TLR9 ligands by inducing TLR9 expression on the platelet surface. Our study demonstrates that platelet TLR9 is a functional platelet receptor that links oxidative stress, innate immunity, and thrombosis."	"Akt, a serine-threonine protein kinase, exists as three isoforms. The Akt signaling pathway controls multiple cellular functions in the cardiovascular system, and the atheroprotective endothelial cell-dependent role of Akt1 has been recently demonstrated. The role of Akt3 isoform in cardiovascular pathophysiology is not known. We explored the role of Akt3 in atherosclerosis using mice with a genetic ablation of the Akt3 gene. Using hyperlipidemic ApoE(-/-) mice, we demonstrated a macrophage-dependent, atheroprotective role for Akt3. In vitro experiments demonstrated differential subcellular localization of Akt1 and Akt3 in macrophages and showed that Akt3 specifically inhibits macrophage cholesteryl ester accumulation and foam cell formation, a critical early event in atherogenesis. Mechanistically, Akt3 suppresses foam cell formation by reducing lipoprotein uptake and promoting ACAT-1 degradation via the ubiquitin-proteasome pathway. These studies demonstrate the nonredundant atheroprotective role for Akt3 exerted via the previously unknown link between the Akt signaling pathway and cholesterol metabolism."	"Platelets constitutively express class B scavenger receptors CD36 and SR-BI, 2 closely related pattern recognition receptors best known for their roles in lipoprotein and lipid metabolism. The biological role of scavenger receptors in platelets is poorly understood. However, in vitro and in vivo data suggest that class B scavenger receptors modulate platelet function and contribute significantly to thrombosis by sensing pathological or physiological ligands, inducing prothrombotic signaling, and increasing platelet reactivity. Platelet CD36 recognizes a novel family of endogenous oxidized choline phospholipids that accumulate in plasma of hyperlipidemic mice and in plasma of subjects with low high-density lipoprotein levels. This interaction leads to the activation of specific signaling pathways and promotes platelet activation and thrombosis. Platelet SR-BI, on the other hand, plays a critical role in the induction of platelet hyperreactivity and accelerated thrombosis under conditions associated with increased platelet cholesterol content. Intriguingly, oxidized high-density lipoprotein, an SR-BI ligand, can suppress platelet function. These recent findings demonstrate that platelet class B scavenger receptors play roles in thrombosis in dyslipidemia and may contribute to acute cardiovascular events in vivo in hypercholesterolemia."	"Hypercholesterolemia is associated with increased platelet sensitivity to agonists and a prothrombotic phenotype. Mechanisms of platelet hypersensitivity are poorly understood; however, increased platelet cholesterol levels associated with hypercholesterolemia were proposed as leading to hypersensitivity. Scavenger receptor class B type I (SR-BI) in the liver controls plasma high-density lipoprotein (HDL) levels, and SR-BI-deficient mice display a profound dyslipoproteinemia. SR-BI is also expressed on platelets, and recent studies have suggested a role for SR-BI in platelet function; however, its role in hemostasis is unknown. Our present studies demonstrated that non-bone marrow-derived SR-BI deficiency and the dyslipidemia associated with it lead to platelet hyperreactivity that was mechanistically linked to increased platelet cholesterol content. Platelet-specific deficiency of SR-BI, on the other hand, was associated with resistance to hyperreactivity induced by increased platelet cholesterol content. Intravital thrombosis studies demonstrated that platelet SR-BI deficiency protected mice from prothrombotic phenotype in 2 types of dyslipidemia associated with increased platelet cholesterol content. These novel findings demonstrate that SR-BI plays dual roles in thrombosis and may contribute to acute cardiovascular events in vivo in hypercholesterolemia."	"1. High-density lipoprotein (HDL) is one of the major carriers of cholesterol in the blood. It attracts particular attention because, in contrast with other lipoproteins, many physiological functions of HDL influence the cardiovascular system in favourable ways unless HDL is modified pathologically. 2. The best known function of HDL is the capacity to promote cellular cholesterol efflux from peripheral cells and deliver cholesterol to the liver for excretion, thereby playing a key role in reverse cholesterol transport. The functions of HDL that have recently attracted attention include anti-inflammatory and anti-oxidant activities. High anti-oxidant and anti-inflammatory activities of HDL are associated with protection from cardiovascular disease. 3. Atheroprotective activities, as well as a functional deficiency of HDL, ultimately depend on the protein and lipid composition of HDL. Conversely, these activities are compromised in many pathological states associated with inflammation. 4. The focus of the present review is on the anti-oxidant and anti-inflammatory functions of HDL and its individual components in relation to protection from atherosclerosis."
+"Prasad, Sathyamangla"	"Cardiovascular and Metabolic Sciences"	30259192	29776605	28763371	28329018	28179187	26023787	23785004	23735785	22697395	22041711	"Proinflammatory cytokines are consistently elevated in congestive heart failure. In the current review, we provide an overview on the current understanding of how tumor necrosis factor-α (TNFα), a key proinflammatory cytokine, potentiates heart failure by overwhelming the anti-inflammatory responses disrupting the homeostasis. Studies have shown co-relationship between severity of heart failure and levels of the proinflammatory cytokine TNFα and one of its secondary mediators interleukin-6 (IL-6), suggesting their potential as biomarkers. Recent efforts have focused on understanding the mechanisms of how proinflammatory cytokines contribute towards cardiac dysfunction and failure. In addition, how unchecked proinflammatory cytokines and their cross-talk with sympathetic system overrides the anti-inflammatory response underlying failure. The review offers insights on how TNFα and IL-6 contribute to cardiac dysfunction and failure. Furthermore, this provides a forum to begin the discussion on the cross-talk between sympathetic drive and proinflammatory cytokines and its determinant role in deleterious outcomes."	"Cellular responses to extracellular milieu/environment are driven by cell surface receptors that transmit the signal into the cells resulting in a synchronized and measured response. The ability to provide such exquisite responses to changes in external environment is mediated by the tight and yet, deliberate regulation of cell surface receptor function. In this regard, the seven transmembrane G protein-coupled receptors (GPCRs) are the largest family of cell surface receptors that regulate responses like cardiac contractility, vision, and olfaction including platelet activation. GPCRs regulate these plethora of events through GPCR-activation, -desensitization, and -resensitization. External stimuli (ligands or agonists) activate GPCR initiating downstream signals. The activated GPCR undergoes inactivation or desensitization by phosphorylation and binding of β-arrestin resulting in diminution of downstream signals. The desensitized GPCRs are internalized into endosomes, wherein they undergo dephosphorylation or resensitization by protein phosphatase to be recycled back to the cell membrane as naïve GPCR ready for the next wave of stimuli. Despite the knowledge that activation, desensitization, and resensitization shoulder an equal role in maintaining GPCR function, major advances have been made in understanding activation and desensitization compared to resensitization. However, increasing evidence shows that resensitization is exquisitely regulated process, thereby contributing to the dynamic regulation of GPCR function. In recognition of these observations, in this chapter we discuss the key advances on the mechanistic underpinning that drive and regulate GPCR function with a focus on resensitization."	"Proinflammatory reaction by the body occurs acutely in response to injury that is considered primarily beneficial. However, sustained proinflammatory cytokines observed with chronic pathologies such as metabolic syndrome, cancer, and arthritis are detrimental and in many cases is a major cardiovascular risk factor. Proinflammatory cytokines such as interleukin-1, interleukin-6, and tumor necrosis factor α (TNFα) have long been implicated in cardiovascular risk and considered to be a major underlying cause for heart failure (HF). The failure of the anti-TNFα therapy for HF indicates our elusive understanding on the dichotomous role of proinflammatory cytokines on acutely beneficial effects versus long-term deleterious effects. Despite these well-described observations, less is known about the mechanistic underpinnings of proinflammatory cytokines especially TNFα in pathogenesis of HF. Increasing evidence suggests the existence of an active cross-talk between the TNFα receptor signaling and G-protein-coupled receptors such as β-adrenergic receptor (βAR). Given that βARs are the key regulators of cardiac function, the review will discuss the current state of understanding on the role of proinflammatory cytokine TNFα in regulating βAR function."	"It is well established that the gene expression patterns are substantially altered in cardiac hypertrophy and heart failure, however, less is known about the reasons behind such global differences. MicroRNAs (miRNAs) are short non-coding RNAs that can target multiple molecules to regulate wide array of proteins in diverse pathways. The goal of the study was to profile alterations in miRNA expression using end-stage human heart failure samples with an aim to build signaling network pathways using predicted targets for the altered miRNA and to determine nodal molecules regulating individual networks. Profiling of miRNAs using custom designed microarray and validation with an independent set of samples identified eight miRNAs that are altered in human heart failure including one novel miRNA yet to be implicated in cardiac pathology. To gain an unbiased perspective on global regulation by top eight altered miRNAs, functional relationship of predicted targets for these eight miRNAs were examined by network analysis. Ingenuity Pathways Analysis network algorithm was used to build global signaling networks based on the targets of altered miRNAs which allowed us to identify participating networks and nodal molecules that could contribute to cardiac pathophysiology. Majority of the nodal molecules identified in our analysis are targets of altered miRNAs and known regulators of cardiovascular signaling. Cardio-genomics heart failure gene expression public data base was used to analyze trends in expression pattern for target nodal molecules and indeed changes in expression of nodal molecules inversely correlated to miRNA alterations. We have used NF kappa B network as an example to show that targeting other molecules in the network could alter the nodal NF kappa B despite not being a miRNA target suggesting an integrated network response. Thus, using network analysis we show that altering key functional target proteins may regulate expression of the myriad signaling pathways underlying the cardiac pathology."	"Traditionally, an enzyme is a protein that mediates biochemical action by binding to the substrate and by catalyzing the reaction that translates external cues into biological responses. Sequential dissemination of information from one enzyme to another facilitates signal transduction in biological systems providing for feed-forward and feed-back mechanisms. Given this viewpoint, an enzyme without its catalytic activity is generally considered to be an inert organizational protein without catalytic function and has classically been termed as pseudo-enzymes. However, pseudo-enzymes still have biological function albeit non-enzymatic like serving as a chaperone protein or an interactive platform between proteins. In this regard, majority of the studies have focused solely on the catalytic role of enzymes in biological function, overlooking the potentially critical non-enzymatic roles. Increasing evidence from recent studies implicate that the scaffolding function of enzymes could be as important in signal transduction as its catalytic activity, which is an antithesis to the definition of enzymes. Recognition of non-enzymatic functions could be critical, as these unappreciated roles may hold clues to the ineffectiveness of kinase inhibitors in pathology, which is characteristically associated with increased enzyme expression. Using an established enzyme phosphoinositide 3-kinase γ, we discuss the insights obtained from the scaffolding function and how this non-canonical role could contribute to/alter the outcomes in pathology like cancer and heart failure. Also, we hope that with this review, we provide a forum and a starting point to discuss the idea that catalytic function alone may not account for all the actions observed with increased expression of the enzyme."	"β2-adrenergic receptor (β2AR) agonists (β2-agonist) are the most commonly used therapy for acute relief in asthma, but chronic use of these bronchodilators paradoxically exacerbates airway hyper-responsiveness. Activation of βARs by β-agonist leads to desensitization (inactivation) by phosphorylation through G-protein coupled receptor kinases (GRKs) which mediate β-arrestin binding and βAR internalization. Resensitization occurs by dephosphorylation of the endosomal βARs which recycle back to the plasma membrane as agonist-ready receptors. To determine whether the loss in β-agonist response in asthma is due to altered βAR desensitization and/or resensitization, we used primary human airway smooth muscle cells (HASMCs) isolated from the lungs of non-asthmatic and fatal-asthmatic subjects. Asthmatic HASMCs have diminished adenylyl cyclase activity and cAMP response to β-agonist as compared to non-asthmatic HASMCs. Confocal microscopy showed significant accumulation of phosphorylated β2ARs in asthmatic HASMCs. Systematic analysis of desensitization components including GRKs and β-arrestin showed no appreciable differences between asthmatic and non-asthmatic HASMCs. However, asthmatic HASMC showed significant increase in PI3Kγ activity and was associated with reduction in PP2A activity. Since reduction in PP2A activity could alter receptor resensitization, endosomal fractions were isolated to assess the agonist ready β2ARs as a measure of resensitization. Despite significant accumulation of β2ARs in the endosomes of asthmatic HASMCs, endosomal β2ARs cannot robustly activate adenylyl cyclase. Furthermore, endosomes from asthmatic HASMCs are associated with significant increase in PI3Kγ and reduced PP2A activity that inhibits β2AR resensitization. Our study shows that resensitization, a process considered to be a homeostasis maintaining passive process is inhibited in asthmatic HASMCs contributing to β2AR dysfunction which may underlie asthma pathophysiology and loss in asthma control. "	"Proinflammatory cytokine tumor necrosis factor-α (TNFα) induces β-adrenergic receptor (βAR) desensitization, but mechanisms proximal to the receptor in contributing to cardiac dysfunction are not known. Two different proinflammatory transgenic mouse models with cardiac overexpression of myotrophin (a prohypertrophic molecule) or TNFα showed that TNFα alone is sufficient to mediate βAR desensitization as measured by cardiac adenylyl cyclase activity. M-mode echocardiography in these mouse models showed cardiac dysfunction paralleling βAR desensitization independent of sympathetic overdrive. TNFα-mediated βAR desensitization that precedes cardiac dysfunction is associated with selective upregulation of G-protein coupled receptor kinase 2 (GRK2) in both mouse models. In vitro studies in β2AR-overexpressing human embryonic kidney 293 cells showed significant βAR desensitization, GRK2 upregulation, and recruitment to the βAR complex following TNFα. Interestingly, inhibition of phosphoinositide 3-kinase abolished GRK2-mediated βAR phosphorylation and GRK2 recruitment on TNFα. Furthermore, TNFα-mediated βAR phosphorylation was not blocked with βAR antagonist propranolol. Additionally, TNFα administration in transgenic mice with cardiac overexpression of Gβγ-sequestering peptide βARK-ct could not prevent βAR desensitization or cardiac dysfunction showing that GRK2 recruitment to the βAR is Gβγ independent. Small interfering RNA knockdown of GRK2 resulted in the loss of TNFα-mediated βAR phosphorylation. Consistently, cardiomyocytes from mice with cardiac-specific GRK2 ablation normalized the TNFα-mediated loss in contractility, showing that TNFα-induced βAR desensitization is GRK2 dependent. TNFα-induced βAR desensitization is mediated by GRK2 and is independent of Gβγ, uncovering a hitherto unknown cross-talk between TNFα and βAR function, providing the underpinnings of inflammation-mediated cardiac dysfunction."	"High fidelity genome-wide expression analysis has strengthened the idea that microRNA (miRNA) signatures in peripheral blood mononuclear cells (PBMCs) can be potentially used to predict the pathology when anatomical samples are inaccessible like the heart. PBMCs from 48 non-failing controls and 44 patients with relatively stable chronic heart failure (ejection fraction of ≤ 40%) associated with dilated cardiomyopathy (DCM) were used for miRNA analysis. Genome-wide miRNA-microarray on PBMCs from chronic heart failure patients identified miRNA signature uniquely characterized by the downregulation of miRNA-548 family members. We have also independently validated downregulation of miRNA-548 family members (miRNA-548c &amp; 548i) using real time-PCR in a large cohort of independent patient samples. Independent in silico Ingenuity Pathway Analysis (IPA) of miRNA-548 targets shows unique enrichment of signaling molecules and pathways associated with cardiovascular disease and hypertrophy. Consistent with specificity of miRNA changes with pathology, PBMCs from breast cancer patients showed no alterations in miRNA-548c expression compared to healthy controls. These studies suggest that miRNA-548 family signature in PBMCs can therefore be used to detect early heart failure. Our studies show that cognate networking of predicted miRNA-548 targets in heart failure can be used as a powerful ancillary tool to predict the ongoing pathology."	"G-protein coupled receptors (GPCRs) are seven transmembrane receptors that are pivotal regulators of cellular responses including vision, cardiac contractility, olfaction, and platelet activation. GPCRs have been a major target for drug discovery due to their role in regulating a broad range of physiological and pathological responses. GPCRs mediate these responses through a cyclical process of receptor activation (initiation of downstream signals), desensitization (inactivation that results in diminution of downstream signals), and resensitization (receptor reactivation for next wave of activation). Although these steps may be of equal importance in regulating receptor function, significant advances have been made in understanding activation and desensitization with limited effort towards resensitization. Inadequate importance has been given to resensitization due to the understanding that resensitization is a homeostasis maintaining process and is not acutely regulated. Evidence indicates that resensitization is a critical step in regulating GPCR function and may contribute towards receptor signaling and cellular responses. In light of these observations, it is imperative to discuss resensitization as a dynamic and mechanistic regulator of GPCR function. In this review we discuss components regulating GPCR function like activation, desensitization, and internalization with special emphasis on resensitization. Although we have used β-adrenergic receptor as a proto-type GPCR to discuss mechanisms regulating receptor function, other GPCRs are also described to put forth a view point on the universality of such mechanisms."	"G protein-coupled receptors are the largest family of cell surface receptors regulating multiple cellular processes. β-adrenergic receptor (βAR) is a prototypical member of GPCR family and has been one of the most well studied receptors in determining regulation of receptor function. Agonist activation of βAR leads to conformational change resulting in coupling to G protein generating cAMP as secondary messenger. The activated βAR is phosphorylated resulting in binding of β-arrestin that physically interdicts further G protein coupling leading to receptor desensitization. The phosphorylated βAR is internalized and undergoes resensitization by dephosphorylation mediated by protein phosphatase 2A in the early endosomes. Although desensitization and resensitization are two sides of the same coin maintaining the homeostatic functioning of the receptor, significant interest has revolved around understanding mechanisms of receptor desensitization while little is known about resensitization. In our current review we provide an overview on regulation of βAR function with a special emphasis on receptor resensitization and its functional relevance in the context of fine tuning receptor signaling."
+"Qin, Jun"	"Cardiovascular and Metabolic Sciences"	31167123	30367047	29170462	28348077	25849143	25666618	25160619	22763012	22078565	22030399	"Microrchidia 3 (MORC3) is an ATPase and a regulator of influenza A virus (IAVs). In this issue of Structure, Zhang et al. (2019b) solved the crystal structure of human MORC3 in complex with the IAV protein NS1, providing a mechanism for targeting MORC3 by IAVs to regulate viral infection."	"Dynamic communication between integrin-containing complexes (focal adhesions, FAs) and actin filaments is critical for regulating cell adhesion. Pseudokinase ILK plays a key role in this process but the underlying mechanism remains highly elusive. Here we show that by recruiting FA adaptors PINCH and Parvin into a heterotrimeric complex (IPP), ILK triggers F-actin filament bundling - a process known to generate force/mechanical signal to promote cytoskeleton reassembly and dynamic cell adhesion. Structural, biochemical, and functional analyses revealed that the F-actin bundling is orchestrated by two previously unrecognized WASP-Homology-2 actin binding motifs within IPP, one from PINCH and the other from Parvin. Strikingly, this process is also sensitized to Mg-ATP bound to the pseudoactive site of ILK and its dysregulation severely impairs stress fibers formation, cell spreading, and migration. These data identify a crucial mechanism for ILK, highlighting its uniqueness as a pseudokinase to transduce non-catalytic signal and regulate cell adhesion."	"Activation of transmembrane receptor integrin by talin is essential for inducing cell adhesion. However, the pathway that recruits talin to the membrane, which critically controls talin's action, remains elusive. Membrane-anchored mammalian small GTPase Rap1 is known to bind talin-F0 domain but the binding was shown to be weak and thus hardly studied. Here we show structurally that talin-F0 binds to human Rap1b like canonical Rap1 effectors despite little sequence homology, and disruption of the binding strongly impairs integrin activation, cell adhesion, and cell spreading. Furthermore, while being weak in conventional binary binding conditions, the Rap1b/talin interaction becomes strong upon attachment of activated Rap1b to vesicular membranes that mimic the agonist-induced microenvironment. These data identify a crucial Rap1-mediated membrane-targeting mechanism for talin to activate integrin. They further broadly caution the analyses of weak protein-protein interactions that may be pivotal for function but neglected in the absence of specific cellular microenvironments."	"Filamin-mediated linkages between transmembrane receptors (TR) and the actin cytoskeleton are crucial for regulating many cytoskeleton-dependent cellular processes such as cell shape change and migration. A major TR binding site in the immunoglobulin repeat 21 (Ig21) of filamin is masked by the adjacent repeat Ig20, resulting in autoinhibition. The TR binding to this site triggers the relief of Ig20 and protein kinase A (PKA)-mediated phosphorylation of Ser-2152, thereby dynamically regulating the TR-actin linkages. A P2204L mutation in Ig20 reportedly cause frontometaphyseal dysplasia, a skeletal disorder with unknown pathogenesis. We show here that the P2204L mutation impairs a hydrophobic core of Ig20, generating a conformationally fluctuating molten globule-like state. Consequently, unlike in WT filamin, where PKA-mediated Ser-2152 phosphorylation is ligand-dependent, the P2204L mutant is readily accessible to PKA, promoting ligand-independent phosphorylation on Ser-2152. Strong TR peptide ligands from platelet GP1bα and G-protein-coupled receptor MAS effectively bound Ig21 by displacing Ig20 from autoinhibited WT filamin, but surprisingly, the capacity of these ligands to bind the P2204L mutant was much reduced despite the mutation-induced destabilization of the Ig20 structure that supposedly weakens the autoinhibition. Thermodynamic analysis indicated that compared with WT filamin, the conformationally fluctuating state of the Ig20 mutant makes Ig21 enthalpically favorable to bind ligand but with substantial entropic penalty, resulting in total higher free energy and reduced ligand affinity. Overall, our results reveal an unusual structural and thermodynamic basis for the P2204L-induced dysfunction of filamin and frontometaphyseal dysplasia disease."	"Activation of heterodimeric (αβ) integrin is crucial for regulating cell adhesion. Binding of talin to the cytoplasmic face of integrin activates the receptor, but how integrin is maintained in a resting state to counterbalance its activation has remained obscure. Here, we report the structure of the cytoplasmic domain of human integrin αIIbβ3 bound to its inhibitor, the immunoglobin repeat 21 of filamin A (FLNa-Ig21). The structure reveals an unexpected ternary complex in which FLNa-Ig21 not only binds to the C terminus of the integrin β3 cytoplasmic tail (CT), as previously predicted, but also engages N-terminal helices of αIIb and β3 CTs to stabilize an inter-CT clasp that helps restrain the integrin in a resting state. Combined with functional data, the structure reveals a new mechanism of filamin-mediated retention of inactive integrin, suggesting a new framework for understanding regulation of integrin activation and adhesion. "	"Protein phosphorylation mediates essentially all aspects of cellular life. In humans, this is achieved by ∼500 kinases, each recognizing a specific consensus motif (CM) in the substrates. The majority of CMs are surface-exposed and are thought to be accessible to kinases for phosphorylation. Here we investigated the archetypical protein kinase A (PKA)-mediated phosphorylation of filamin, a major cytoskeletal protein that can adopt an autoinhibited conformation. Surprisingly, autoinhibited filamin is refractory to phosphorylation by PKA on a known Ser(2152) site despite its CM being exposed and the corresponding isolated peptide being readily phosphorylated. Structural analysis revealed that although the CM fits into the PKA active site its surrounding regions sterically clash with the kinase. However, upon ligand binding, filamin undergoes a conformational adjustment, allowing rapid phosphorylation on Ser(2152). These data uncover a novel ligand-induced conformational switch to trigger filamin phosphorylation. They further suggest a substrate shape-dependent filtering mechanism that channels specific exposed CM/kinase recognition in diverse signaling responses. "	"Integrin-linked kinase (ILK) is a distinct intracellular adaptor essential for integrin-mediated cell-extracellular matrix adhesion, cell spreading, and migration. Acting as a major docking platform in focal adhesions, ILK engages many proteins to dynamically link integrins with the cytoskeleton, but the underlying mechanism remains elusive. Here, we have characterized the interaction of ILK with kindlin-2, a key regulator for integrin bidirectional signaling. We show that human kindlin-2 binds to human ILK with high affinity. Using systematic mapping approaches, we have identified a major ILK binding site involving a 20-residue fragment (residues 339-358) in kindlin-2. NMR-based analysis reveals a helical conformation of this fragment that utilizes its leucine-rich surface to recognize the ILK pseudokinase domain in a mode that is distinct from another ILK pseudokinase domain binding protein, α-parvin. Structure-based mutational experiments further demonstrate that the kindlin-2 binding to ILK is crucial for the kindlin-2 localization to focal adhesions and cell spreading (integrin outside-in signaling) but dispensable for the kindlin-2-mediated integrin activation (integrin inside-out signaling). These data define a specific mode of the kindlin-2/ILK interaction with mechanistic implications as to how it spatiotemporally mediates integrin signaling and cell adhesion. "	"Integrin-linked kinase (ILK) is a widely expressed and evolutionally conserved component of cell-extracellular matrix (ECM) adhesions. Although initially named as a kinase, ILK contains an unusual pseudoactive site that is incapable of catalyzing phosphorylation. Instead, ILK acts as a central component of a heterotrimer (the PINCH-ILK-parvin complex) at ECM adhesions mediating interactions with a large number of proteins via multiple sites including its pseudoactive site. Through higher level protein-protein interactions, this scaffold links integrins to the actin cytoskeleton and catalytic proteins and thereby regulates focal adhesion assembly, cytoskeleton organization and signaling. This review summarizes recent advances in our understanding of the structure and functions of the PINCH-ILK-parvin complex, and discusses emerging new features of the molecular mechanisms by which it regulates diverse cellular, physiological and pathological processes."	"Kindlin-2 belongs to an emerging class of regulators for heterodimeric (α/β) integrin adhesion receptors. By binding to integrin β cytoplasmic tail via its C-terminal FERM-like domain, kindlin-2 promotes integrin activation. Intriguingly, this activation process depends on the N terminus of kindlin-2 (K2-N) that precedes the FERM domain. The molecular function of K2-N is unclear. We present the solution structure of K2-N, which displays a ubiquitin fold similar to that observed in kindlin-1. Using chemical shift mapping and mutagenesis, we found that K2-N contains a conserved positively charged surface that binds to membrane enriched with negatively charged phosphatidylinositol-(4,5)-bisphosphate. We show that while wild-type kindlin-2 is capable of promoting integrin activation, such ability is significantly reduced for its membrane-binding defective mutant. These data suggest a membrane-binding function of the ubiquitin-like domain of kindlin-2, which is likely common for all kindlins to promote their localization to the plasma membrane and control integrin activation."	"Kindlins are a subclass of FERM-containing proteins that have recently emerged as key regulators of integrin receptor activation and signaling. As compared with the conventional FERM domain, the kindlin FERM domain contains an inserted pleckstrin homology (PH) domain that recognizes membrane phosphoinositides, including phosphatidylinositol 4,5-bisphosphate (PIP2) and phosphatidylinositol 3,4,5-trisphosphate (PIP3). Using NMR spectroscopy, we show that PIP3 site-specifically binds to kindlin-2 PH with substantial chemical shift changes that are much larger than PIP2. This suggests an enhanced association of kindlin-2 with membrane as mediated by PIP3 upon its conversion from PIP2 by phosphoinositide-3 kinase, a known regulator of integrin activation. We determined the NMR structure of the kindlin-2 PH domain bound to the head group of PIP3, inositol 1,3,4,5-tetraphosphate (IP4). The structure reveals a canonical PH domain fold, yet with a distinct IP4 binding pocket that appears highly conserved for the kindlin family members. Functional experiments demonstrate that although wild type kindlin-2 is capable of cooperating with integrin activator talin to induce synergistic integrin α(IIb)β(3) activation, this ability is significantly impaired for a phosphoinositide binding-defective kindlin-2 mutant. These results define a specific PIP3 recognition mode for the kindlin PH domain. Moreover, they shed light upon a mechanism as to how the PH domain mediates membrane engagement of kindlin-2 to promote its binding to integrin and cooperation with talin for regulation of integrin activation."
+"Radivoyevitch, Tomas"	"Quantitative Health Sciences"	30055822	27007600	26922774	25663652	25480649	24337217	23205301	22353999	25392744	22303993	"Exposures to DNA-damaging drugs and ionizing radiations increase risks of acute myeloid leukemia (AML) and myelodysplastic syndrome (MDS). 9028 recipients of hematopoietic cell autotransplants (1995-2010) for Hodgkin lymphoma (HL; n = 916), non-Hodgkin lymphoma (NHL; n = 3546) and plasma cell myeloma (PCM; n = 4566), reported to the CIBMTR, were analyzed for risk of subsequent AML or MDS. 335 MDS/AML cases were diagnosed posttransplant (3.7%). Variables associated with an increased risk for AML or MDS in multivariate analyses were: (1) conditioning with total body radiation versus chemotherapy alone for HL (HR = 4.0; 95% confidence interval [1.4, 11.6]) and NHL (HR = 2.5 [1.1, 2.5]); (2) ≥3 versus 1 line of chemotherapy for NHL (HR = 1.9 [1.3, 2.8]); and (3) subjects with NHL transplanted in 2005-2010 versus 1995-1999 (HR = 2.1 [1.5, 3.1]). Using Surveillance, Epidemiology and End Results (SEER) data, we found risks for AML/MDS in HL, NHL and PCM to be 5-10 times the background rate. In contrast, relative risks were 10-50 for AML and approximately 100 for MDS in the autotransplant cohort. There are substantial risks of AML and MDS after autotransplants for HL, NHL and PCM."	"The t(9;22) translocation that causes chronic myeloid leukemia (CML) drives both transformation and the progression process that eventually results in the disease changing to acute leukemia. Constitutively activated Bcr-Abl signaling in CML creates high levels of reactive oxygen species (ROS) that produce 8-oxo-guanine in DNA; this is mutagenic and causes chronic phase (CP) progression to blast phase (BP). We modeled three types of mutations involved in this progression: mutations that result in myeloid progenitor cells proliferating independently of external growth factors; mutations causing failure of myeloid progenitor cells to differentiate; and mutations that enable these cells to survive independently of attachment to marrow stroma. We further modeled tyrosine kinase inhibitors (TKI) as restoring myeloid cell apoptosis and preventing ROS-driven mutagenesis, and mutations that cause TKI resistance. We suggest that the unusually low rate of resistance to TKI arises because these drugs deplete ROS, which in turn decrease mutation rates."	"Exposure to ionizing radiation is not thought to cause chronic lymphocytic leukemia (CLL). Challenging this notion are recent data suggesting CLL incidence may be increased by radiation exposure from the atomic bombs (after many decades), uranium mining and nuclear power facility accidents. To assess the effects of therapeutic ionizing radiation for the treatment of solid neoplasms we studied CLL risks in data from the Surveillance, Epidemiology, and End Results (SEER) Program. Specifically, we compared the risks of developing CLL in persons with a 1(st) non-hematologic cancer treated with or without ionizing radiation. We controlled for early detection effects on CLL risk induced by surveillance after 1(st) cancer diagnoses by forming all-time cumulative CLL relative risks (RR). We estimate such CLL RR to be 1.20 (95% confidence interval, 1.17, 1.23) for persons whose 1(st) cancer was not treated with ionizing radiation and 1.00 (0.96, 1.05) for persons whose 1(st) cancer was treated with ionizing radiations. These results imply that diagnosis of a solid neoplasm is associated with an increased risk of developing CLL only in persons whose 1(st) cancer was not treated with radiation therapy. "	"We consider dosing regimens designed to cure patients by eradicating colony forming units (CFU) such as bacteria. In the field of &quot;population&quot; pharmaco-kinetics/dynamics (PK/PD), inter-individual variability (IIV) of patients is estimated using model parameter statistical distributions. We consider a more probabilistic approach to IIV called stochastic process theory, motivated by the fact that tumor treatment planning uses both approaches. Stochastic process PD can supply additional insights and suggest different dosing regimens due to its emphasis on the probability of complete CFU eradication and its predictions on &quot;pure chance&quot; fluctuations of CFU number per patient when treatment has reduced this integer to less than ~100. To exemplify the contrast between stochastic process PD models and standard deterministic PD models, which track only average CFU number, we analyze, neglecting immune responses, neonatal intravenous gentamicin dosing regimens directed against Escherichia coli. Our stochastic calculations predict that the first dose is crucial for CFU eradication. For example, a single 6 mg/kg dose is predicted to have a higher eradication probability than four daily 4 mg/kg doses. We conclude: (1) neonatal gentamicin dosing regimens with larger first doses but smaller total doses deserve investigation; (2) in general, if standard PK/PD models predict average CFU number drops substantially below 100, the models should be modified to incorporate stochastic effects more accurately, and will then usually make more favorable, or less unfavorable, predictions for front boosting (&quot;hit hard early&quot;). Various caveats against over-interpreting the calculations are given. "	"Leukemias are driven by stemlike cancer cells (SLCC), whose initiation, growth, response to treatment, and posttreatment behavior are often &quot;stochastic&quot;, i.e., differ substantially even among very similar patients for reasons not observable with present techniques. We review the probabilistic mathematical methods used to analyze stochastics and give two specific examples. The first example concerns a treatment protocol, e.g., for acute myeloid leukemia (AML), where intermittent cytotoxic drug dosing (e.g., once each weekday) is used with intent to cure. We argue mathematically that, if independent SLCC are growing stochastically during prolonged treatment, then, other things being equal, front-loading doses are more effective for tumor eradication than back loading. We also argue that the interacting SLCC dynamics during treatment is often best modeled by considering SLCC in microenvironmental niches, with SLCC-SLCC interactions occurring only among SLCC within the same niche, and we present a stochastic dynamics formalism, involving &quot;Poissonization,&quot; applicable in such situations. Interactions at a distance due to partial control of total cell numbers are also considered. The second half of this chapter concerns chromosomal aberrations, lesions known to cause some leukemias. A specific example is the induction of a Philadelphia chromosome by ionizing radiation, subsequent development of chronic myeloid leukemia (CML), CML treatment, and treatment outcome. This time evolution involves a coordinated sequence of &gt; 10 steps, each stochastic in its own way, at the subatomic, molecular, macromolecular, cellular, tissue, and population scales, with corresponding time scales ranging from picoseconds to decades. We discuss models of these steps and progress in integrating models across scales."	"The incidence of chronic myeloid leukemia (CML), which is caused by BCR/ABL chimeric oncogene formation in a pluripotent hematopoietic stem cell (HSC), increases with age and exposure to ionizing radiation. CML is a comparatively well-characterized neoplasm, important for its own sake and useful for insights into other neoplasms. Here, Surveillance, Epidemiology and End Results (SEER) CML data are analyzed after considering possible misclassification of chronic myelo-monocytic leukemia as CML. For people older than 25 years, plots of male and female CML log incidences versus age at diagnosis are approximately parallel straight lines with males either above or to the left of females. This is consistent with males having a higher risk of developing CML or a shorter latency from initiation to diagnosis of CML. These distinct mechanisms cannot be distinguished using SEER data alone. Therefore, CML risks among male and female Japanese A-bomb survivors are also analyzed. The present analyses suggest that sex differences in CML incidence more likely result from differences in risk than in latency. The simplest but not the sole interpretation of this is that males have more target cells at risk to develop CML. Comprehensive mathematical models of CML could lead to a better understanding of the role of HSCs in CML and other preleukemias that can progress to acute leukemia."	"Loss of the transcription factor p53 implies mRNA losses of target genes such as the p53R2 subunit of human ribonucleotide reductase (RNR). We hypothesized that other genes in the dNTP supply system would compensate for such p53R2 losses and looked for this in our own data and in data of the Gene Expression Omnibus (GEO). We found that the de novo dNTP supply system compensates for p53R2 losses with increases in RNR subunit R1, R2, or both. We also found compensatory increases in cytosolic deoxycytidine kinase (dCK) and thymidine kinase 1 (TK1) and in mitochondrial deoxyguanosine kinase (dGK), all of the salvage dNTP supply system; in contrast, the remaining mitochondrial salvage enzyme thymidine kinase 2 (TK2) decreased with p53 loss. Thus, TK2 may be more dedicated to meeting mitochondrial dNTP demands than dGK which may be more obligated to assist cytosolic dNTP supply in meeting nuclear DNA dNTP demands. "	"Mathematical models of chronic myeloid leukemia (CML) cell population dynamics are being developed to improve CML understanding and treatment. We review such models in light of relevant findings from radiobiology, emphasizing 3 points. First, the CML models almost all assert that the latency time, from CML initiation to diagnosis, is at most ∼10 years. Meanwhile, current radiobiologic estimates, based on Japanese atomic bomb survivor data, indicate a substantially higher maximum, suggesting longer-term relapses and extra resistance mutations. Second, different CML models assume different numbers, between 400 and 10(6), of normal HSCs. Radiobiologic estimates favor values&gt;10(6) for the number of normal cells (often assumed to be the HSCs) that are at risk for a CML-initiating BCR-ABL translocation. Moreover, there is some evidence for an HSC dead-band hypothesis, consistent with HSC numbers being very different across different healthy adults. Third, radiobiologists have found that sporadic (background, age-driven) chromosome translocation incidence increases with age during adulthood. BCR-ABL translocation incidence increasing with age would provide a hitherto underanalyzed contribution to observed background adult-onset CML incidence acceleration with age, and would cast some doubt on stage-number inferences from multistage carcinogenesis models in general."	"Chemotherapies targeting deoxynucleotide triphosphate synthesis are of high medical interest in the treatment of gynecologic malignancies. In this article, we focus on targeted inhibitors of ribonucleotide reductase, an enzyme in charge of ribonucleotide reduction to their corresponding deoxyribonucleotide to be used as the building blocks of DNA. We also discuss human clinical trials have utilized ribonucleotide reductase subunit-specific inhibitors, particularly trials for women with cervical cancer."	"Mammalian ribonucleotide reductase (RNR) activity has been reported to be nonmonotonic in ATP. If many nonlinear models are to be fitted to such data automatically as part of a model search process, use of the same initial parameter values across all models can lead to too many poor fitting, monotonic least squares fits, i.e., false model rejections. We propose that such fits can be rescued by using as initial parameter estimates the final estimates of neighboring models that do have nonmonotonic fits; here models are neighbors if complexes that they represent differ by at most one ligand. We use this approach to show that troughs in RNR activity versus ATP can be fitted similarly well by models that do or do not demand a third ATP binding site."
+"Rajeswaran, Jeevanantham"	"Quantitative Health Sciences"	27856959	26740575	24919830	17357993	17397676	30071995	29779634	28967527	24981029	24981029	"In many longitudinal follow-up studies, we observe more than one longitudinal outcome. Impaired renal and liver functions are indicators of poor clinical outcomes for patients who are on mechanical circulatory support and awaiting heart transplant. Hence, monitoring organ functions while waiting for heart transplant is an integral part of patient management. Longitudinal measurements of bilirubin can be used as a marker for liver function and glomerular filtration rate for renal function. We derive an approximation to evolution of association between these two organ functions using a bivariate nonlinear mixed effects model for continuous longitudinal measurements, where the two submodels are linked by a common distribution of time-dependent latent variables and a common distribution of measurement errors."	"Atrial fibrillation is an arrhythmic disorder where the electrical signals of the heart become irregular. The probability of atrial fibrillation (binary response) is often time varying in a structured fashion, as is the influence of associated risk factors. A generalized nonlinear mixed effects model is presented to estimate the time-related probability of atrial fibrillation using a temporal decomposition approach to reveal the pattern of the probability of atrial fibrillation and their determinants. This methodology generalizes to patient-specific analysis of longitudinal binary data with possibly time-varying effects of covariates and with different patient-specific random effects influencing different temporal phases. The motivation and application of this model is illustrated using longitudinally measured atrial fibrillation data obtained through weekly trans-telephonic monitoring from an NIH sponsored clinical trial being conducted by the Cardiothoracic Surgery Clinical Trials Network."	"In medical sciences, we often encounter longitudinal temporal relationships that are non-linear in nature. The influence of risk factors may also change across longitudinal follow-up. A system of multiphase non-linear mixed effects model is presented to model temporal patterns of longitudinal continuous measurements, with temporal decomposition to identify the phases and risk factors within each phase. Application of this model is illustrated using spirometry data after lung transplantation using readily available statistical software. This application illustrates the usefulness of our flexible model when dealing with complex non-linear patterns and time-varying coefficients."	"We derive and compute confidence intervals for probabilities of categories for ordinal responses in cumulative logit link models using frequentist, Bayesian, and bootstrap approaches. The three approaches are evaluated by their coverage probabilities and are illustrated for longitudinal assessment of graded heart valve prosthesis regurgitation following aortic valve replacement."	"Among patients undergoing aortic valve surgery for chronic aortic regurgitation (AR), we sought to: 1) compare survival among those with and without severe left ventricular dysfunction (LVD); 2) identify risk factors for death, including LVD and date of operation; and 3) estimate contemporary risk for cardiomyopathic patients. Patients with chronic AR and severe LVD have been considered high risk for aortic valve surgery, with limited prognosis. Transplantation is considered for some. From 1972 to 1999, 724 patients underwent surgery for chronic AR; 88 (12%) had severe LVD. They were propensity matched to patients with nonsevere LVD to compare hospital mortality, interaction of operative date with severity of LVD, and late survival. Propensity score-adjusted multivariable analysis was performed for all 724 patients to identify risk factors for death. Survival was lower (p = 0.04) among patients with severe LVD than among matched patients with nonsevere LVD (30-day, 1-, 5-, and 25-year survival estimates were 91% vs. 96%, 81% vs. 92%, 68% vs. 81%, and 5% vs. 12%, respectively). However, survival of patients with severe LVD improved dramatically across the study time frame (p = 0.0004): hospital mortality decreased from 50% in 1975 to 0% after 1985, and time-related survival in patients with severe LVD operated on since 1985 became equivalent to that of matched patients with nonsevere LVD (p = 0.96). Neutralizing risk of severe LVD has improved early and late survival such that aortic valve surgery for chronic AR and cardiomyopathy is no longer a high-risk procedure for which transplantation is the best option."	"Heart transplant allocation in the United States is made on the basis of coarse tiers, defined by mechanical circulatory devices and therapy for advanced heart failure, updated infrequently as a patient's condition deteriorates. Thus, many patients die awaiting heart transplantation. What is needed is a tool that continuously updates risk of mortality as a patient's condition changes to inform clinical decision making. This study sought to develop a decision aid that aggregates adverse events and measures of end-organ function into a continuously updated waitlist mortality estimate. From 2008 to 2013, 414 patients were listed for heart transplantation at Cleveland Clinic, Cleveland, Ohio. The endpoint was waitlist death. Pre-listing patient characteristics and events and laboratory results during listing were analyzed. At each event or measurement change, mortality was recomputed from the resulting model. There were 77 waitlist deaths, with 1- and 4-year survival of 85% and 57%, respectively. When time-varying events and measurements were incorporated into a mortality model, pre-listing patient characteristics became nonsignificant. Neurological events (hazard ratio [HR]: 13.5; 95% confidence interval [CI]: 7.63 to 23.8), new requirement for dialysis (HR: 3.67; 95% CI: 1.88 to 7.14), more respiratory complications (HR: 1.79 per episode; 95% CI: 1.23 to 2.59), and higher serum bilirubin (p &lt; 0.0001) and creatinine (p &lt; 0.0001) yielded continuously updated estimates of patient-specific mortality across the waitlist period. Mortality risk for patients with advanced heart failure who are listed for transplantation is related to adverse events and end-organ dysfunction that change over time. A continuously updated mortality estimate, combined with clinical evaluation, may inform status changes that could reduce mortality on the heart transplant waiting list."	"Infection is an important cause of morbidity and mortality after lung transplantation. Immunoglobulins are part of both seromucous (IgA) and serum (IgG) infection defense mechanisms. We therefore hypothesized that lower pretransplant IgA levels would be associated with more early post-lung transplant seromucous infections and greater mortality independent of IgG. From January 2000 to July 2010, 538 patients undergoing primary lung transplantation had pretransplant IgA (n = 429) and IgG (n = 488) measured as a clinical routine. Median IgA was 200 mg·dL<sup>-1</sup> (2% &lt; 70 mg·dL<sup>-1</sup>, lower limit of normal); median IgG was 970 mg·dL<sup>-1</sup> (5% &lt; 600 mg·dL<sup>-1</sup>). Intensive microbiology review was used to categorize infections and their causative organisms within the first posttransplant year. In total, 397 seromucous infections were observed in 247 patients, most bacterial. Although IgA and IgG were moderately correlated (r = 0.5, P &lt; .0001), low pretransplant IgA was a strong risk factor (P = .01) for seromucous infections, but pretransplant IgG was not (P ≥ .6). As pretransplant IgA levels fell below 200 mg·dL<sup>-1</sup>, the risk of these posttransplant infections rose nearly linearly. Lower pretransplant levels of IgA were associated with greater posttransplant mortality to end of follow-up (P = .004), but pretransplant IgG was not (P ≥ .3). Low levels of preoperative IgA, an important immunoglobulin involved in mucosal immunologic defense, but not IgG, are associated with seromucous infections in the year after lung transplantation and increased follow-up mortality. It would appear prudent to identify patients with relative IgA deficiency at listing and to increase vigilance of monitoring for, and prophylaxis against, seromucous infection in this high-risk population."	"Repair options for complex abdominal and thoracoabdominal aortic aneurysms (TAAAs) are evolving with increased experience and availability of less invasive endovascular techniques. Identifying risk factors for mortality after fenestrated and branched endovascular aortic repair (F/B-EVAR) could improve patient selection and facilitate decision making regarding who may benefit from prophylactic F/B-EVAR. We evaluated 1091 patients in a prospective investigational device exemption trial who underwent F/B-EVAR from August 2001 to June 2015 for complex aortic aneurysms (CAAs). Multivariable analysis of risk factors for death was performed using a nonproportional hazards model and a nonparametric analysis using random survival forest technology. Operative mortality after F/B-EVAR was low (3.7%), with high CAA-related survival at 30 day and 5 years (96.8% and 94.0%, respectively). All-cause 5-year survival, however, was 46.2% and older age, heart failure, chronic obstructive pulmonary disease, renal disease, anemia, and coagulation disorders were risk factors. Risk was highest for those undergoing type I/II TAAA repairs and those with larger aneurysms. Patients with multiple comorbidities and those undergoing type I or II TAAA repair are at greatest risk of mortality; however, in this high-risk population, F/B-EVAR offers greater survival compared with that reported for the natural history of untreated aneurysms. Operative and early mortality is lower than the best-reported open repair outcomes, even in this high-risk population, suggesting a potential benefit in extending the use of F/B-EVAR to low-to-average risk CAA patients."	"This study describes echocardiographic allograft valve function over time in a cohort of patients who were prospectively followed after allograft aortic valve or root replacement, illustrating the use of longitudinal data analysis for assessing valve function over time. Serial, standardized echocardiographic measurements of aortic regurgitation, aortic gradient, annulus diameter, left ventricular outflow tract diameter, and aortic diameter in 301 hospital survivors (mean age, 46 years; range, 16-83 years) after allograft aortic valve (N=77) or root (N=224) replacement were analyzed using nonlinear longitudinal models. Aortic regurgitation increased over time. At 15 years, 41% of patients had at least moderate aortic regurgitation. Younger patient age and subcoronary implantation technique were associated with increased aortic regurgitation. Aortic gradient increased over time (from 9.4 mm Hg at 6 months to 21.3 mm Hg at 15 years); both initial and increase in aortic gradient were greater in younger patients and after subcoronary implantation technique. Annulus diameter slightly increased (from 21.9 mm at 6 months to 22.4 mm at 15 years), whereas aortic diameter slightly decreased over time (from 34.3 mm at 6 months to 32.7 mm at 15 years). Left ventricular outflow tract diameter remained constant at 22 mm. Younger patients in the subcoronary implantation group had a larger annulus diameter. Both aortic regurgitation and stenosis increase over time after allograft aortic valve or root replacement. Younger patient age and use of the subcoronary implantation technique are associated with increased regurgitation and stenosis. The use of nonlinear longitudinal models allows for an insightful analysis of allograft valve function over time."	"This study describes echocardiographic allograft valve function over time in a cohort of patients who were prospectively followed after allograft aortic valve or root replacement, illustrating the use of longitudinal data analysis for assessing valve function over time. Serial, standardized echocardiographic measurements of aortic regurgitation, aortic gradient, annulus diameter, left ventricular outflow tract diameter, and aortic diameter in 301 hospital survivors (mean age, 46 years; range, 16-83 years) after allograft aortic valve (N=77) or root (N=224) replacement were analyzed using nonlinear longitudinal models. Aortic regurgitation increased over time. At 15 years, 41% of patients had at least moderate aortic regurgitation. Younger patient age and subcoronary implantation technique were associated with increased aortic regurgitation. Aortic gradient increased over time (from 9.4 mm Hg at 6 months to 21.3 mm Hg at 15 years); both initial and increase in aortic gradient were greater in younger patients and after subcoronary implantation technique. Annulus diameter slightly increased (from 21.9 mm at 6 months to 22.4 mm at 15 years), whereas aortic diameter slightly decreased over time (from 34.3 mm at 6 months to 32.7 mm at 15 years). Left ventricular outflow tract diameter remained constant at 22 mm. Younger patients in the subcoronary implantation group had a larger annulus diameter. Both aortic regurgitation and stenosis increase over time after allograft aortic valve or root replacement. Younger patient age and use of the subcoronary implantation technique are associated with increased regurgitation and stenosis. The use of nonlinear longitudinal models allows for an insightful analysis of allograft valve function over time."
+"Ramamurthi, Anand"	"Biomedical Engineering"	30061830	29701914	29264957	28875468	28087488	27884774	27860330	26830683	26652359	25376929	"The use of nanomaterials to modulate the tumor microenvironment has great potential to advance outcomes in patients with lung cancer. Nanomaterials can be used to prolong the delivery time of therapeutics enabling their specific targeting to tumors while minimizing and potentially eliminating cytotoxic effects. Using nanomaterials to deliver small-molecule inhibitors for oncogene targeted therapy and cancer immunotherapy while concurrently enabling regeneration of the extracellular matrix could enhance our therapeutic reach and improve outcomes for patients with non-small cell lung cancer (NSCLC) and chronic obstructive pulmonary disease (COPD). The objective of this review is to highlight the role nanomedicines play in improving and reversing adverse outcomes in the tumor microenvironment for advancing treatments for targeting both diseases."	"The neoassembly and maturation of elastic matrix is an important challenge for engineering small-diameter grafts for patients with peripheral artery disease. We have previously shown that hyaluronan oligomers and transforming growth factor-β (elastogenic factors or EFs) promote elastogenesis in smooth muscle cell (SMC) culture. However, their combined effects on macrophages and inflammatory cells in vivo are unknown. This information is needed to use the body (e.g., peritoneal cavity) as an &quot;in vivo bioreactor&quot; to recruit autologous cells to implanted EF-functionalized scaffolds. In this study, we determined if peritoneal fluid cells respond to EFs like smooth muscle cells and if these responses differ between cells sourced during different stages of inflammation triggered by scaffold implantation. Electrospun poly(ε-caprolactone)/collagen conduits were implanted in the peritoneal cavity prior to peritoneal fluid collection at 3-42 days postimplantation. Cells from the fluid were cultured in vitro with and without EFs to determine their response. Their phenotype/behaviour was assessed with a DNA assay, quantitative real-time PCR, and immunofluorescence. The EFs reduced peritoneal cell proliferation, maintained cell contractility, and unexpectedly did not exhibit proelastic effects, which we attributed to differences in cell density. We found the greatest elastin deposition in regions containing a high cell density. Further, we found that cells isolated from the peritoneal cavity at longer times after conduit implantation responded better to the EFs and exhibited more CD31 expression than cells at an earlier time point. Overall, this study provides information about the potential use of EFs in vivo and can guide the design of future tissue-engineered vascular grafts."	"Abdominal aortic aneurysms (AAAs) are localized expansions of the abdominal aorta that grow slowly to rupture. AAA growth is driven by irreversible elastic matrix breakdown in the aorta wall by chronically upregulated matrix metalloproteases (MMPs). Since adult vascular smooth muscle cells (SMCs) poorly regenerate elastic matrix, we previously explored utility of bone marrow mesenchymal stem cells and SMCs derived therefrom (BM-SMCs) for this purpose. One specific differentiated phenotype (cBM-SMCs) generated on a fibronectin substrate in presence of exogenous transforming growth factor-β and platelet-derived growth factor exhibited superior elastogenicity versus other phenotypes, and usefully provided proelastogenic and antiproteolytic stimuli to aneurysmal SMCs. Since in vivo cell therapy demands large cell inoculates, these derived SMCs must be propagated in vitro while maintaining their superior elastogenic, proelastogenic, and antiproteolytic characteristics. In this work, we thus investigated the culture conditions that must be provided to this propagation phase, which ensure that the differentiated SMCs maintain their phenotype and matrix regenerative benefits. Our results indicate that our BM-SMCs retain their phenotype in long-term culture even in the absence of differentiation growth factors and fibronectin substrate, but these conditions must be continued to be provided during postdifferentiation propagation if they are to maintain their superior elastic matrix deposition, crosslinking, and fiber formation properties. Our study, however, showed that cells propagated under these conditions exhibit higher expression of MMP-2, but favorably, no expression of elastolytic MMP-9. Hence, the study outcomes provide crucial guidelines to maintain phenotypic stability of cBM-SMCs during their propagation in two-dimensional culture before their delivery to the AAA wall for therapy."	"Growth of abdominal aortic aneurysms (AAA), localized aortal wall expansions, is driven by the disruption and subsequent loss of aortal wall elastic fibers by matrix metalloproteases (MMPs). Since elastic fibers do not naturally regenerate or repair, arresting/reversing AAA growth has not been possible. Previously, we showed utility of doxycycline (DOX), an MMP inhibitor drug, to stimulate elastic matrix neoassembly and crosslinking at low microgram per milliliter doses in addition to inhibiting MMPs. We currently show in aneurysmal smooth muscle cell (SMC) cultures that effects of exogenous DOX in this dose range are linked to its upregulation of transforming growth factor beta (TGF-β1) via its inhibition of the regulatory protein c-Jun-N-terminal kinase 2 (JNK 2). We have identified a DOX dose range that stimulates elastogenesis and crosslinking without adversely impacting cell viability. Using JNK 2 inhibition as a metric for pro-regenerative matrix effects of DOX, we further demonstrate that sustained, steady-state release of DOX at the useful dose, from poly(ethylene glycol)-poly(lactic glycolic acid) nanoparticles (NPs), provides pro-elastogenic and anti-proteolytic effects that could potentially be more pronounced than that of exogenous DOX. We attribute these outcomes to previously determined synergistic effects provided by cationic amphiphile groups functionalizing the polymer NP surface. Released DOX inhibited expression and phosphorylation of JNK to likely increase expression of TGF-β1, which is known to increase elastogenesis and lysyl oxidase-mediated crosslinking of elastic matrix. Our results suggest that JNK inhibition is a useful metric to assess pro-elastic matrix regenerative effects and point to the combinatorial regenerative benefits provided by DOX and cationic-functionalized NPs."	"Abdominal Aortic Aneurysms (AAA) involve slow dilation and weakening of the aortic wall due to breakdown of structural matrix components, such as elastic fibers by chronically overexpressed matrix metalloproteinases (MMPs), primarily, MMPs-2 and -9. Auto-regenerative repair of disrupted elastic fibers by smooth muscle cells (SMCs) at the AAA site is intrinsically poor and together with chronic proteolysis prevents restoration of elastin homeostasis, necessary to enable AAA growth arrest or regression to a healthy state. Oral doxycycline (DOX) therapy can inhibit MMPs to slow AAA growth, but has systemwide side-effects and inhibits new elastin deposition within AAA tissue, diminishing prospects for restoring elastin homeostasis preventing the arrest/regression of AAA growth. We have thus developed cationic amphiphile (DMAB)-modified submicron particles (SMPs) that uniquely exhibit pro-elastogenic and anti-proteolytic properties, separate from similar effects of the encapsulated drug. These SMPs can enable sustained, low dose DOX delivery within AAA tissue to augment elastin regenerative repair. To provide greater specificity of SMP targeting, we have conjugated the DOX-SMP surface with an antibody against cathepsin K, a lysosomal protease that is highly overexpressed within AAA tissue. We have determined conditions for efficient cathepsin K Ab conjugation onto the SMPs, improved SMP binding to aneurysmal SMCs in culture and to injured vessel walls ex vivo, conjugation did not affect DOX release from the SMPs, and improved pro-elastogenic and anti-proteolytic effects due to the SMPs likely due to their increased proximity to cells via binding. Our study results suggest that cathepsin K Ab conjugation is a useful targeting modality for our pro-regenerative SMPs. Future studies will investigate SMP retention and biodistribution following targeting to induced AAAs in rat models through intravenous or catheter-based aortal infusion and thereafter their efficacy for regenerative elastic matrix repair in the AAA wall. Proactive screening of high risk elderly patients now enables early detection of Abdominal Aortic Aneurysms (AAAs). Current management of small, growing AAAs is limited to passive, imaging based growth monitoring. There are also no established drug-based therapeutic alternatives to surgery for AAAs, which is unsuitable for many elderly patients, and none which can achieve restore disrupted and lost elastic matrix in the AAA wall, which is essential to achieve growth arrest or regression. We seek to test the feasibility of a regenerative therapy based on localized, one time delivery of drug-releasing Sub-Micron-sized drug delivery polymer Particles (SMPs) that are also uniquely chemically functionalized on their surface to also provide them pro-elastin-regenerative &amp; anti-matrix degradative properties, and also conjugated with antibodies targeting cathepsin K, an elastolytic enzyme that is highly overexpressed in AAA tissues; the latter serves as a modality to enable targeted binding of the SMPs to the AAA wall following intravenous infusion, or intraoartal, catheter-based delivery. Such SMPs can potentially stimulate structural repair in the AAA wall following one time infusion to delay or prevent AAA growth to rupture. The therapy can provide a non-surgical treatment option for high risk AAA patients."	"Arresting or regressing growth of abdominal aortic aneurysms (AAAs), localized expansions of the abdominal aorta are contingent on inhibiting chronically overexpressed matrix metalloproteases (MMPs)-2 and -9 that disrupt elastic matrix within the aortic wall, concurrent with providing a stimulus to augmenting inherently poor auto-regeneration of these matrix structures. In a recent study we demonstrated that localized, controlled and sustained delivery of doxycycline (DOX; a tetracycline-based antibiotic) from poly(lactic-co-glycolic acid) nanoparticles (PLGA NPs), enhances elastic matrix deposition and MMP-inhibition at a fraction of the therapeutically effective oral dose. The surface functionalization of these NPs with cationic amphiphiles, which enhances their arterial uptake, was also shown to have pro-matrix regenerative and anti-MMP effects independent of the DOX. Based on the hypothesis that the incorporation of superparamagnetic iron oxide NPs (SPIONs) within these PLGA NPs would enhance their targetability to the AAA site under an applied external magnetic field, we sought to evaluate the functional effects of NPs co-encapsulating DOX and SPIONs (DOX-SPION NPs) on elastic matrix regeneration and MMP synthesis/activity in vitro within aneurysmal smooth muscle cell (EaRASMC) cultures. The DOX-SPION NPs were mobile under an applied external magnetic field, while enhancing elastic matrix deposition 1.5-2-fold and significantly inhibiting MMP-2 synthesis and MMP-2 and -9 activities, compared to NP-untreated control cultures. These results illustrate that the multifunctional benefits of NPs are maintained following SPION co-incorporation. Additionally, preliminary studies carried out demonstrated enhanced targetability of SPION-loaded NPs within proteolytically-disrupted porcine carotid arteries ex vivo, under the influence of an applied external magnetic field. Thus, this dual-agent loaded NP system proffers a potential non-surgical option for treating small growing AAAs, via controlled and sustained drug release from multifunctional, targetable nanocarriers. Proactive screening of high risk elderly patients now enables early detection of abdominal aortic aneurysms (AAAs). There are no established drug-based therapeutic alternatives to surgery for AAAs, which is unsuitable for many elderly patients, and none which can achieve restore disrupted and lost elastic matrix in the AAA wall, which is essential to achieve growth arrest or regression. We have developed a first generation design of polymer nanoparticles (NPs) for AAA tissue localized delivery of doxycycline, a modified tetracycline drug at low micromolar doses at which it provides both pro-elastogenic and anti-proteolytic benefits that can augment elastic matrix regenerative repair. The nanocarriers themselves are also uniquely chemically functionalized on their surface to also provide them pro-elastin-regenerative &amp; anti-matrix degradative properties. To provide an active driving force for efficient uptake of intra-lumenally infused NPs to the AAA wall, in this work, we have rendered our polymer NPs mobile in an applied magnetic field via co-incorporation of super-paramagnetic iron oxide NPs. We demonstrate that such modifications significantly improve wall uptake of the NPs with no significant changes to their physical properties and regenerative benefits. Such NPs can potentially stimulate structural repair in the AAA wall following one time infusion to delay or prevent AAA growth to rupture. The therapy can provide a non-surgical treatment option for high risk AAA patients."	"Chronic proteolytic disruption of elastic fibres within the abdominal aortic wall results in wall vessel expansion to form rupture-prone abdominal aortic aneurysms (AAA). Arresting AAA growth is not possible as adult vascular smooth muscle cells (SMCs) poorly auto-regenerate and repair elastic fibres. Thus, there is a need to identify alternate cell sources capable of robust elastic matrix assembly to overcome elastolysis in the AAA wall. Previously, we demonstrated the superior elastogenic properties of rat bone marrow mesenchymal stem cell (BM-MSC)-derived SMCs (BM-SMCs) relative to aneurysmal and healthy rat aortic SMCs. In the present study, we investigate how phenotypic coordinates of the derived BM-SMCs, in turn dependent on conditions of BM-MSC differentiation, impact their elastic matrix synthesis abilities. More specifically, we investigated how glucose content, serum levels and the presence of transforming growth factor (TGF)-β1 supplements alone or together with platelet-derived growth factor (PDGF-BB) in the differentiation medium influence phenotype of, and elastogenesis by derived rat BM-SMCs. BM-SMCs generated in low-glucose and 10% v/v serum conditions in the presence of TGF-β1 with or without PDGF-BB exhibited a mature phenotype characterized by contractility and migrative tendencies similar to healthy rat aortic SMCs, and yet capable of robust tropoelastin (precursor) synthesis and assembly of a fibrous, highly crosslinked elastic matrix. Thus, we have identified metrics and conditions for selecting BM-SMCs with superior elastogenesis for in situ elastic matrix regeneration. Future studies will focus on characterizing these specific BM-SMC subtypes for their pro-elastogenic and anti-proteolytic effects on aneurysmal SMCs to confirm their preferred use for therapy aimed at AAA tissue regenerative repair. Copyright © 2016 John Wiley &amp; Sons, Ltd."	"Abdominal aortic aneurysms (AAA) represent abnormal aortal expansions that result from chronic proteolytic breakdown of elastin and collagen fibers by matrix metalloproteases. Poor elastogenesis by adult vascular smooth muscle cells (SMCs) limits regenerative repair of elastic fibers, critical for AAA growth arrest. Toward overcoming these limitations, we recently demonstrated significant elastogenesis by bone marrow mesenchymal stem cell-derived SMCs (BM-SMCs) and their proelastogenesis and antiproteolytic effects on rat aneurysmal SMCs (EaRASMCs). We currently investigate the effects of super paramagnetic iron oxide nanoparticle (SPION) labeling of BM-SMCs, necessary to magnetically guide them to the AAA wall, on their functional benefits. Our results indicate that SPION-labeling is noncytotoxic and does not adversely impact the phenotype and elastogenesis by BM-SMCs. In addition, SPION-BM-SMCs showed no changes in the ability of the BM-SMCs to stimulate elastin regeneration and attenuate proteolytic activity by EaRASMCs. Together, our results are promising toward the utility of SPIONs for magnetic targeting of BM-SMCs for in situ AAA regenerative repair. "	"Abdominal aortic aneurysms (AAAs) involve chronic overexpression of proteases in the aortic wall that result in disruption of elastic fibers and consequent loss of vessel elasticity. Nearly 75% of AAAs contain flow-obstructing, fibrin-rich intraluminal thrombi (ILT), which act as a) a bioinert shield, protecting the underlying AAA wall from high hemodynamic stresses, and b) a reservoir of inflammatory cells and proteases that cause matrix breakdown. For these reasons, restoring flow through the aorta lumen and facilitating transmural diffusion of therapeutics from circulation to the AAA wall must be achieved by slow thrombolysis of the ILT to render it porous without rapid breakdown. Intravenously dosed tissue plasminogen activator (tPA) has been shown to rapidly lyse ILTs in acute stroke and myocardial infarctions. For future use in opening up AAA segments, in this study, we investigated the ability of tPA released from poly(lactic-co-glycolic acid) nanoparticles (PLGA NPs) to slowly lyse fibrin clots without inducing proteolytic injury and matrix synthesis-inhibitory effects on cultured rat aneurysmal smooth muscle cells (EaRASMCs). Fibrin clot lysis time was greatly extended over that in presence of exogenous tPA. Surface functionalization of NPs with a cationic amphiphile allowed them to bind to anionic fibrin clot, release tPA at a slower rate and to lyse the clot as a front proceeding outwards in unlike the more rapid and homogenous lysis that occurred due to anionic PLGA NPs. Elastic matrix content was decreased in EaRASMC cultures exposed to byproducts of clot lysis with exogenous tPA, but not tPA-NPs, and was likely due to increased proteolytic activity (MMPs, plasmin) in EaRASMC cultures exposed to exogenous tPA-lysed clots. Our results suggest that gradual ILT lysis via slow release of tPA from NPs will be likely beneficial over exogenous tPA delivery in preserving elastic matrix content and attenuating matrilysis in the adjoining AAA wall, in vivo, while rendering the ILT porous to facilitate transmural delivery of endoluminally delivered AAA therapeutics. "	"Abdominal aortic aneurysms (AAAs) involve slow proteolysis and loss of structural matrix components (collagen and elastin), which lead to wall thinning, weakening and ultimate rupture. At this time, no established non-surgical therapy is available to slow or arrest AAA growth. Inhibiting matrix metalloproteases (MMPs; e.g. MMP2 and -9) overexpressed within AAAs is insufficient to arrest AAA growth, since resident smooth muscle cells (SMCs) are poorly elastogenic and cannot overcome elastolysis to reinstate a healthy elastic matrix. Towards overcoming this limitation, this first study sought to determine the utility of rat bone marrow mesenchymal stem cell (BM-MSC)-derived SMCs to stimulate elastin and elastic matrix synthesis and assembly by aneurysmal SMCs (EaRASMCs). BM-MSCs were successfully differentiated into cells of an SMC lineage (SMLCs). Our study indicates that BM-MSC-derived SMLCs secrete trophic factors, contained in conditioned medium (CM) from their cultures, that, when exposed to EaRASMC cultures in real time, stimulate elastin precursor and matrix deposition and crosslinking by these elastogenically deficient cells, with added benefits in terms of attenuating MMPs, specifically MMP9. The results thus lend support to a proposed cell therapy for AAAs, based on the use of BM-MSC-derived SMLCs. Although we observed no particular improvement in elastic fibre formation, no attenuation of MMP2 activity and increase in amounts of active MMP2 enzyme, we believe that this study justifies follow-up studies to improve upon these outcomes. Future studies will explore the effects of concentrated CM collected from long-term SMLC cultures on EaRASMCs and also investigate the elastogenic output of SMLCs themselves. Copyright © 2014 John Wiley &amp; Sons, Ltd."
+"Rao, Sujata"	"Ophthalmic Research"	31002540	29045837	26720479	23334418	18039971	16163358	11726512	30936473	28356706	25715397	"A single pool of multipotent retinal progenitor cells give rise to the diverse cell types within the mammalian retina. Such cellular diversity is due to precise control of various cellular processes like cell specification, proliferation, differentiation, and maturation. Circadian clock genes can control the expression of key regulators of cell cycle progression and therefore can synchronize the cell cycle state of a heterogeneous population of cells. Here we show that the protein encoded by the circadian clock gene brain and muscle arnt-like protein-1 (Bmal1) is expressed in the embryonic retina and is required to regulate the timing of cell cycle exit. Accordingly, loss of Bmal1 during retinal neurogenesis results in increased S-phase entry and delayed cell cycle exit. Disruption in cell cycle kinetics affects the timely generation of the appropriate neuronal population thus leading to an overall decrease in the number of retinal ganglion cells, amacrine cells, and an increase in the number of the late-born type II cone bipolar cells as well as the Müller glia. Additionally, the mislocalized Müller cells are observed in the photoreceptor layer in the Bmal1 conditional mutants. These changes affect the functional integrity of the visual circuitry as we report a significant delay in visual evoked potential implicit time in the retina-specific Bmal1 null animals. Our results demonstrate that Bmal1 is required to maintain the balance between the neural and glial cells in the embryonic retina by coordinating the timing of cell cycle entry and exit. Thus, Bmal1 plays an essential role during retinal neurogenesis affecting both development and function of the mature retina.-Sawant, O. B., Jidigam, V. K., Fuller, R. D., Zucaro, O. F., Kpegba, C., Yu, M., Peachey, N. S., Rao, S. The circadian clock gene Bmal1 is required to control the timing of retinal neurogenesis and lamination of Müller glia in the mouse retina."	"Circadian clocks regulate various aspects of photoreceptor physiology, but their contribution to photoreceptor development and function is unclear. Cone photoreceptors are critical for color vision. Here, we define the molecular function of circadian activity within cone photoreceptors and reveal a role for the clock genes Bmal1 and Per2 in regulating cone spectral identity. ChIP analysis revealed that BMAL1 binds to the promoter region of the thyroid hormone (TH)-activating enzyme type 2 iodothyronine deiodinase (Dio2) and thus regulates the expression of Dio2. TH treatment resulted in a partial rescue of the phenotype caused by the loss of Bmal1, thus revealing a functional relationship between Bmal1 and Dio2 in establishing cone photoreceptor identity. Furthermore, Bmal1 and Dio2 are required to maintain cone photoreceptor functional integrity. Overall, our results suggest a mechanism by which circadian proteins can locally regulate the availability of TH and influence tissue development and function."	"Ambient light is both a stimulus for visual function and a regulator of photoreceptor physiology. However, it is not known if light can regulate any aspect of photoreceptor development. The purpose of this study was to investigate whether ambient light is required for the development of mouse rod photoreceptors. Newborn mouse pups (C57BL/6) were reared in either cyclic light (LD) or constant dark (DD). Pups were collected at postnatal day (P)5, P10, P17, or P24. We performed retinal morphometric and cell death analysis at P5, P10, and P17. Rhodopsin expression was assessed using immunofluorescence, Western blot, and quantitative RT-PCR analysis. Electroretinograms were performed at P17 and P24. Radioimmunoassay and ELISA were used to follow changes in thyroid hormone levels in the serum and vitreous. In the DD pups, the outer nuclear layer was significantly thinner at P10 and there were higher numbers of apoptotic cells at P5 compared to the LD pups. Rhodopsin expression was lower at P10 and P17 in DD pups. Electroretinogram a-waves were reduced in amplitude at P17 in the DD pups. The DD animals had lower levels of circulating thyroid hormones at P10. Light-mediated changes in thyroid hormones occur as early as P5, as we detected lower levels of total triiodothyronine in the vitreous from the DD animals. Drug-induced developmental hypothyroidism resulted in lower rhodopsin expression at P10. Our data demonstrate that light exposure during postnatal development is required for rod photoreceptor development and that this effect could be mediated by thyroid hormone signaling."	"Vascular patterning is critical for organ function. In the eye, there is simultaneous regression of embryonic hyaloid vasculature (important to clear the optical path) and formation of the retinal vasculature (important for the high metabolic demands of retinal neurons). These events occur postnatally in the mouse. Here we have identified a light-response pathway that regulates both processes. We show that when mice are mutated in the gene (Opn4) for the atypical opsin melanopsin, or are dark-reared from late gestation, the hyaloid vessels are persistent at 8 days post-partum and the retinal vasculature overgrows. We provide evidence that these vascular anomalies are explained by a light-response pathway that suppresses retinal neuron number, limits hypoxia and, as a consequence, holds local expression of vascular endothelial growth factor (VEGFA) in check. We also show that the light response for this pathway occurs in late gestation at about embryonic day 16 and requires the photopigment in the fetus and not the mother. Measurements show that visceral cavity photon flux is probably sufficient to activate melanopsin-expressing retinal ganglion cells in the mouse fetus. These data thus show that light--the stimulus for function of the mature eye--is also critical in preparing the eye for vision by regulating retinal neuron number and initiating a series of events that ultimately pattern the ocular blood vessels."	"Macrophages have a critical function in the recognition and engulfment of dead cells. In some settings, macrophages also actively signal programmed cell death. Here we show that during developmentally scheduled vascular regression, resident macrophages are an obligatory participant in a signaling switch that favors death over survival. This switch occurs when the signaling ligand angiopoietin 2 has the dual effect of suppressing survival signaling in vascular endothelial cells (VECs) and stimulating Wnt ligand production by macrophages. In response to the Wnt ligand, VECs enter the cell cycle and in the absence of survival signals, die from G1 phase of the cell cycle. We propose that this mechanism represents an adaptation to ensure that the macrophage and its disposal capability are on hand when cell death occurs."	"Macrophages have a critical role in inflammatory and immune responses through their ability to recognize and engulf apoptotic cells. Here we show that macrophages initiate a cell-death programme in target cells by activating the canonical WNT pathway. We show in mice that macrophage WNT7b is a short-range paracrine signal required for WNT-pathway responses and programmed cell death in the vascular endothelial cells of the temporary hyaloid vessels of the developing eye. These findings indicate that macrophages can use WNT ligands to influence cell-fate decisions--including cell death--in adjacent cells, and raise the possibility that they do so in many different cellular contexts."	"Vesicle fusion in eukaryotic cells is mediated by SNAREs (soluble N-ethylmaleimide-sensitive factor attachment protein receptors). In neurons, the t-SNARE SNAP-25 is essential for synaptic vesicle fusion but its exact role in this process is unknown. We have isolated a SNAP-25 temperature-sensitive paralytic mutant in Drosophila, SNAP-25(ts). The mutation causes a Gly50 to Glu change in SNAP-25's first amphipathic helix. A similar mutation in the yeast homologue SEC9 also results in temperature sensitivity, implying a conserved role for this domain in secretion. In vitro-generated 70 kDa SNARE complexes containing SNAP-25(ts) are thermally stable but the mutant SNARE multimers (of approximately 120 kDa) rapidly dissociate at 37 degrees C. The SNAP-25(ts) mutant has two effects on neurotransmitter release depending upon temperature. At 22 degrees C, evoked release of neurotransmitter in SNAP-25(ts) larvae is greatly increased, and at 37 degrees C, the release of neurotransmitter is reduced as compared with controls. Our data suggest that at 22 degrees C the mutation causes the SNARE complex to be more fusion competent but, at 37 degrees C the same mutation leads to SNARE multimer instability and fusion incompetence."	"During mouse postnatal eye development, the embryonic hyaloid vascular network regresses from the vitreous as an adaption for high-acuity vision. This process occurs with precisely controlled timing. Here, we show that opsin 5 (OPN5; also known as neuropsin)-dependent retinal light responses regulate vascular development in the postnatal eye. In Opn5-null mice, hyaloid vessels regress precociously. We demonstrate that 380-nm light stimulation via OPN5 and VGAT (the vesicular GABA/glycine transporter) in retinal ganglion cells enhances the activity of inner retinal DAT (also known as SLC6A3; a dopamine reuptake transporter) and thus suppresses vitreal dopamine. In turn, dopamine acts directly on hyaloid vascular endothelial cells to suppress the activity of vascular endothelial growth factor receptor 2 (VEGFR2) and promote hyaloid vessel regression. With OPN5 loss of function, the vitreous dopamine level is elevated and results in premature hyaloid regression. These investigations identify violet light as a developmental timing cue that, via an OPN5-dopamine pathway, regulates optic axis clearance in preparation for visual function."	"Familial exudative vitreoretinopathy (FEVR) is caused by mutations in the genes encoding low-density lipoprotein receptor-related protein (LRP5) or its interacting partners, namely frizzled class receptor 4 (FZD4) and norrin cystine knot growth factor (NDP). Mouse models for Lrp5, Fzd4, and Ndp have proven to be important for understanding the retinal pathophysiology underlying FEVR and systemic abnormalities related to defective Wnt signaling. Here, we report a new mouse mutant, tvrm111B, which was identified by electroretinogram (ERG) screening of mice generated in the Jackson Laboratory Translational Vision Research Models (TVRM) mutagenesis program. ERGs were used to examine outer retinal physiology. The retinal vasculature was examined by in vivo retinal imaging, as well as by histology and immunohistochemistry. The tvrm111B locus was identified by genetic mapping of mice generated in a cross to DBA/2J, and subsequent sequencing analysis. Gene expression was examined by real-time PCR of retinal RNA. Bone mineral density (BMD) was examined by peripheral dual-energy X-ray absorptiometry. The tvrm111B allele is inherited as an autosomal recessive trait. Genetic mapping of the decreased ERG b-wave phenotype of tvrm111B mice localized the mutation to a region on chromosome 19 that included Lrp5. Sequencing of Lrp5 identified the insertion of a cytosine (c.4724_4725insC), which is predicted to cause a frameshift that disrupts the last three of five conserved PPPSPxS motifs in the cytoplasmic domain of LRP5, culminating in a premature termination. In addition to a reduced ERG b-wave, Lrp5<sup>tvrm111B</sup> homozygotes have low BMD and abnormal features of the retinal vasculature that have been reported previously in Lrp5 mutant mice, including persistent hyaloid vessels, leakage on fluorescein angiography, and an absence of the deep retinal capillary bed. The phenotype of the Lrp5<sup>tvrm111B</sup> mutant includes abnormalities of the retinal vasculature and of BMD. This model may be a useful resource to further our understanding of the biological role of LRP5 and to evaluate experimental therapies for FEVR or other conditions associated with LRP5 dysfunction."	"The Wnt/β-catenin response pathway is central to many developmental processes. Here, we assessed the role of Wnt signaling in early eye development using the mouse as a model system. We showed that the surface ectoderm region that includes the lens placode expressed 12 out of 19 possible Wnt ligands. When these activities were suppressed by conditional deletion of wntless (Le-cre; Wls(fl/fl)) there were dramatic consequences that included a saucer-shaped optic cup, ventral coloboma, and a deficiency of periocular mesenchyme. This phenotype shared features with that produced when the Wnt/β-catenin pathway co-receptor Lrp6 is mutated or when retinoic acid (RA) signaling in the eye is compromised. Consistent with this, microarray and cell fate marker analysis identified a series of expression changes in genes known to be regulated by RA or by the Wnt/β-catenin pathway. Using pathway reporters, we showed that Wnt ligands from the surface ectoderm directly or indirectly elicit a Wnt/β-catenin response in retinal pigment epithelium (RPE) progenitors near the optic cup rim. In Le-cre; Wls(fl/fl) mice, the numbers of RPE cells are reduced and this can explain, using the principle of the bimetallic strip, the curvature of the optic cup. These data thus establish a novel hypothesis to explain how differential cell numbers in a bilayered epithelium can lead to shape change. "
+"Raska, Paola"	"Quantitative Health Sciences"	28752189	27324504	25519390	22590501	22373165	22303333	22128058	20018043	23535648	22412386	"Genomic profiling can identify targetable mutations; however, the impact of tissue-based genomic profiling on clinical decision making for patients with metastatic breast cancer has not been well characterized. Patients with stage IV breast cancer who had undergone genomic profiling between 7/2013 and 3/2015 were identified at three academic cancer centers. Genomic analysis was determined to have impacted clinical decision if (A) a patient was enrolled onto a genotype-matched clinical trial or (B) prescribed off-label an FDA-approved therapy targeting an identified mutation. The frequency of mutated genes was determined. A total of 117 patients with stage IV breast cancer were identified. Median age was 46 (25-75). Fifty-three patients (45%) had ER-positive/HER2-negative disease, 50 (43%) had ER-negative/HER2-negative disease, and 14 (12%) had ER-any/HER2-positive disease. Median number of previous therapies received prior to genomic profiling was 2 (range 0-15), and median follow-up after testing was obtained after 5.8 months (range 0-24.4 months). Commercial reports indicated that 85 (73%) patients had at least one mutation targetable by an FDA-approved medication, and 112 (96%) patients had at least one clinical trial available; however, clinical management was only affected in 11 patients (9%). The most frequent mutations observed were those in TP53, FGF, PI3KCA, MYC, ZNF, FGFR, CCND, ARID1A, GATA3, and MAP; frequencies of these mutations varied by clinical subtype. Tumor genomic profiling affected clinical management in a minority of patients with metastatic breast cancer, thus these data do not support the routine use of genomic profiling outside of a clinical trial."	"Pertuzumab is FDA approved in the preoperative setting in combination with trastuzumab and chemotherapy, in women with nonmetastatic HER2 + breast cancer. The TRYPHAENA trial (n = 77) reported a pathologic complete response rate (pCR), i.e., ypT0ypN0, of 52 % in patients treated with neoadjuvant (docetaxel, carboplatin, trastuzumab, &amp; pertuzumab) TCH-P. Aside from this study, there is limited information regarding the safety and efficacy of TCH-P in the neoadjuvant setting. Our goal was to evaluate the safety and efficacy of neoadjuvant TCH-P in a non-clinical trial setting. Cancer data registry was utilized to identify patients with HER2 + nonmetastatic breast cancer that received neoadjuvant TCH-P. pCR was defined as the absence of invasive or noninvasive cancer in breast and lymph nodes, i.e., ypT0ypN0. 70 patients with a median age of 52 years met our inclusion criteria. Clinical staging was I-8.5 %; II-68.5 %; and III-22.8 %. 60 % of patients had hormone receptor (HR)-positive tumors. 23 % (16/71) of patients required dose reduction for rash, diarrhea, neuropathy, or thrombocytopenia. Overall, no patients developed grade 3-4 left ventricular systolic dysfunction(LVSD); an asymptomatic reduction in LVEF of &gt;10 % was observed in three patients. The overall observed pCR rate was 53 %. As expected, the pCR rate was higher in patients with HR-negative breast cancer than for patients with HR+ disease: 69 % (20/29) vs. 42 % (17/41), respectively. The axillary downstaging rate was approximately 53 % (19/36). Neoadjuvant TCH-P, in a nonclinical trial setting, was associated with a pCR rate of 53 % similar the reported rate in TRYPHAENA. Toxicity was manageable, with no patients experiencing symptomatic heart failure."	"Inferring population genetic structure from large-scale genotyping of single-nucleotide polymorphisms or variants is an important technique for studying the history and distribution of extant human populations, but it is also a very important tool for adjusting tests of association. However, the structures inferred depend on the minor allele frequency of the variants; this is very important when considering the phenotypic association of rare variants. Using the Genetic Analysis Workshop 18 data set for 142 unrelated individuals, which includes genotypes for many rare variants, we study the following hypothesis: the difference in detected structure is the result of a &quot;scale&quot; effect; that is, rare variants are likely to be shared only locally (smaller scale), while common variants can be spread over longer distances. The result is similar to that of using kernel principal component analysis, as the bandwidth of the kernel is changed. We show how different structures become evident as we consider rare or common variants. "	"We investigated the ability of several principal components analysis (PCA)-based strategies to detect and control for population stratification using data from a multi-center study of epithelial ovarian cancer among women of European-American ethnicity. These include a correction based on an ancestry informative markers (AIMs) panel designed to capture European ancestral variation and corrections utilizing un-thinned genome-wide SNP data; case-control samples were drawn from four geographically distinct North-American sites. The AIMs-only and genome-wide first principal components (PC1) both corresponded to the previously described North or Northwest-Southeast axis of European variation. We found that the genome-wide PCA captured this primary dimension of variation more precisely and identified additional axes of genome-wide variation of relevance to epithelial ovarian cancer. Associations evident between the genome-wide PCs and study site corroborate North American immigration history and suggest that undiscovered dimensions of variation lie within Northern Europe. The structure captured by the genome-wide PCA was also found within control individuals and did not reflect the case-control variation present in the data. The genome-wide PCA highlighted three regions of local LD, corresponding to the lactase (LCT) gene on chromosome 2, the human leukocyte antigen system (HLA) on chromosome 6 and to a common inversion polymorphism on chromosome 8. These features did not compromise the efficacy of PCs from this analysis for ancestry control. This study concludes that although AIMs panels are a cost-effective way of capturing population structure, genome-wide data should preferably be used when available."	"Next-generation sequencing allows for a new focus on rare variant density for conducting analyses of association to disease and for narrowing down the genomic regions that show evidence of functionality. In this study we use the 1000 Genomes Project pilot data as distributed by Genetic Analysis Workshop 17 to compare rare variant densities across seven populations. We made the comparisons using regressions of rare variants on total variant counts per gene for each population and Tajima's D values calculated for each gene in each population, using data on 3,205 genes. We found that the populations clustered by continent for both the regression slopes and Tajima's D values, with the African populations (Yoruba and Luhya) showing the highest density of rare variants, followed by the Asian populations (Han and Denver Chinese followed by the Japanese) and the European populations (CEPH [European-descent] and Tuscan) with the lowest densities. These significant differences in rare variant densities across populations seem to translate to measures of the rare variant density more commonly used in rare variant association analyses, suggesting the need to adjust for ancestry in such analyses. The selection signal was high for AHNAK, HLA-A, RANBP2, and RGPD4, among others. RANBP2 and RGPD4 showed a marked difference in rare variant density and potential selection between the Luhya and the other populations. This may suggest that differences between populations should be considered when delimiting genomic regions according to functionality and that these differences can create potential for disease heterogeneity."	"In this study, we assessed association of genome-wide association studies (GWAS) &quot;hits&quot; by race with adjustment for potential population stratification (PS) in two large, diverse study populations; the Carolina Breast Cancer Study (CBCS; N total = 3693 individuals) and the University of Pennsylvania Study of Clinical Outcomes, Risk, and Ethnicity (SCORE; N total = 1135 individuals). In both study populations, 136 ancestry information markers and GWAS &quot;hits&quot; (CBCS: FGFR2, 8q24; SCORE: JAZF1, MSMB, 8q24) were genotyped. Principal component analysis was used to assess ancestral differences by race. Multivariable unconditional logistic regression was used to assess differences in cancer risk with and without adjustment for the first ancestral principal component (PC1) and for an interaction effect between PC1 and the GWAS &quot;hit&quot; (SNP) of interest. PC1 explained 53.7% of the variance for CBCS and 49.5% of the variance for SCORE. European Americans and African Americans were similar in their ancestral structure between CBCS and SCORE and cases and controls were well matched by ancestry. In the CBCS European Americans, 9/11 SNPs were significant after PC1 adjustment, but after adjustment for the PC1 by SNP interaction effect, only one SNP remained significant (rs1219648 in FGFR2); for CBCS African Americans, 6/11 SNPs were significant after PC1 adjustment and after adjustment for the PC1 by SNP interaction effect, all six SNPs remained significant and an additional SNP now became significant. In the SCORE European Americans, 0/9 SNPs were significant after PC1 adjustment and no changes were seen after additional adjustment for the PC1 by SNP interaction effect; for SCORE African Americans, 2/9 SNPs were significant after PC1 adjustment and after adjustment for the PC1 by SNP interaction effect, only one SNP remained significant (rs16901979 at 8q24). We show that genetic associations by race are modified by interaction between individual SNPs and PS."	"Next-generation sequencing technology provides new opportunities and challenges in the search for genetic variants that underlie complex traits. It will also presumably uncover many new rare variants, but exactly how these variants should be incorporated into the data analysis remains a question. Several papers in our group from Genetic Analysis Workshop 17 evaluated different methods of rare variant analysis, including single-variant, gene-based, and pathway-based analyses and analyses that incorporated biological information. Although the performance of some of these methods strongly depends on the underlying disease model, integration of known biological information is helpful in detecting causal genes. Two work groups demonstrated that use of a Bayesian network and a collapsing receiver operating characteristic curve approach improves risk prediction when a disease is caused by many rare variants. Another work group suggested that modeling local rather than global ancestry may be beneficial when controlling the effect of population structure in rare variant association analysis."	" The Metabolic Syndrome (MetSyn), which is a clustering of traits including insulin resistance, obesity, hypertension and dyslipidemia, is estimated to have a substantial genetic component, yet few specific genetic targets have been identified. Factor analysis, a sub-type of structural equation modeling (SEM), has been used to model the complex relationships in MetSyn. Therefore, we aimed to define the genetic determinants of MetSyn in the Framingham Heart Study (Offspring Cohort, Exam 7) using the Affymetrix 50 k Human Gene Panel and three different approaches: 1) an association-based &quot;one-SNP-at-a-time&quot; analysis with MetSyn as a binary trait using the World Health Organization criteria; 2) an association-based &quot;one-SNP-at-a-time&quot; analysis with MetSyn as a continuous trait using second-order factor scores derived from four first-order factors; and, 3) a multivariate SEM analysis with MetSyn as a continuous, second-order factor modeled with multiple putative genes, which were represented by latent constructs defined using multiple SNPs in each gene. Results were similar between approaches in that CSMD1 SNPs were associated with MetSyn in Approaches 1 and 2; however, the effects of CSMD1 diminished in Approach 3 when modeled simultaneously with six other genes, most notably CETP and STARD13, which were strongly associated with the Lipids and MetSyn factors, respectively. We conclude that modeling multiple genes as latent constructs on first-order trait factors, most proximal to the gene's function with limited paths directly from genes to the second-order MetSyn factor, using SEM is the most viable approach toward understanding overall gene variation effects in the presence of multiple putative SNPs."	"Epithelial ovarian cancer (EOC) has a heritable component that remains to be fully characterized. Most identified common susceptibility variants lie in non-protein-coding sequences. We hypothesized that variants in the 3' untranslated region at putative microRNA (miRNA)-binding sites represent functional targets that influence EOC susceptibility. Here, we evaluate the association between 767 miRNA-related single-nucleotide polymorphisms (miRSNPs) and EOC risk in 18,174 EOC cases and 26,134 controls from 43 studies genotyped through the Collaborative Oncological Gene-environment Study. We identify several miRSNPs associated with invasive serous EOC risk (odds ratio=1.12, P=10(-8)) mapping to an inversion polymorphism at 17q21.31. Additional genotyping of non-miRSNPs at 17q21.31 reveals stronger signals outside the inversion (P=10(-10)). Variation at 17q21.31 is associated with neurological diseases, and our collaboration is the first to report an association with EOC susceptibility. An integrated molecular analysis in this region provides evidence for ARHGAP27 and PLEKHM1 as candidate EOC susceptibility genes."	"Most individuals throughout the Americas are admixed descendants of Native American, European, and African ancestors. Complex historical factors have resulted in varying proportions of ancestral contributions between individuals within and among ethnic groups. We developed a panel of 446 ancestry informative markers (AIMs) optimized to estimate ancestral proportions in individuals and populations throughout Latin America. We used genome-wide data from 953 individuals from diverse African, European, and Native American populations to select AIMs optimized for each of the three main continental populations that form the basis of modern Latin American populations. We selected markers on the basis of locus-specific branch length to be informative, well distributed throughout the genome, capable of being genotyped on widely available commercial platforms, and applicable throughout the Americas by minimizing within-continent heterogeneity. We then validated the panel in samples from four admixed populations by comparing ancestry estimates based on the AIMs panel to estimates based on genome-wide association study (GWAS) data. The panel provided balanced discriminatory power among the three ancestral populations and accurate estimates of individual ancestry proportions (R² &gt; 0.9 for ancestral components with significant between-subject variance). Finally, we genotyped samples from 18 populations from Latin America using the AIMs panel and estimated variability in ancestry within and between these populations. This panel and its reference genotype information will be useful resources to explore population history of admixture in Latin America and to correct for the potential effects of population stratification in admixed samples in the region."
+"Reizes, Ofer"	"Cardiovascular and Metabolic Sciences"	31167163	29955847	28838952	28729467	27221339	27105520	25827713	24025407	21636700	20923696	"Breast cancer is the most prevalent malignancy and second leading cause of death in women worldwide, with hormone receptor-positive luminal breast cancers being the most widespread subtype. While these tumors are generally amenable to endocrine therapy, cellular heterogeneity and acquired ability of tumor cells to undergo cell state switching makes these populations difficult to be fully targeted and eradicated through conventional methods. We have leveraged a quality-by-design (QbD) approach that integrates biological responses with predictive mathematical modeling to identify key combinations of commercially available drugs to induce estrogen receptor expression for therapeutic targeting. This technology utilizes a high level of automation through a custom-built platform to reduce bias as well as design-of-experiments methodology to minimize the experimental iterations required. Utilizing this approach, we identified a combination of clinical compounds, each at concentrations well below their efficacious dose, able to induce the expression of estrogen receptor alpha (ESR1) in hormone-positive breast cancer cells. Induction of ESR1 in luminal cells leads to chemosensitization. These findings provide proof of concept for the utility of the QbD strategy and identify a unique drug cocktail able to sensitize breast cancer cells to tamoxifen."	"It is well established that obesity increases the incidence and worsens the prognosis of women's cancer. For breast cancer, women with obesity exhibit more than a twofold increase in the odds of being diagnosed with cancer, with a greater risk of advanced stage at diagnosis, and ≤40% greater risk of recurrence and death than their normal-weight counterparts. These findings are similar in gynecologic cancers, where women who are obese with a body mass index (BMI) &gt;40 kg/m2 have up to six times greater risk of developing endometrial cancer and a 9.2% increase in mortality with every 10% increase in BMI. Likewise, patients with obesity exhibit a twofold higher risk of premenopausal ovarian cancer, and patients who are obese with advanced stage ovarian cancer have shown a shorter time to recurrence and poorer overall survival. Obesity is accompanied by changes in expression of adipose factors that act on local tissues and systemically. Once obesity was recognized as a factor in cancer incidence and progression, the adipose cytokine (adipokine) leptin became the focus of intense investigation as a putative link, with nearly 3000 publications on the topic. Leptin has been shown to increase cell proliferation, inhibit apoptosis, promote angiogenesis, and increase therapeutic resistance. These characteristics are associated with a subset of cells in both liquid and solid tumors known as cancer stem cells (CSCs), or tumor initiating cells. We will review the literature discussing leptin's role in breast and gynecologic cancer, focusing on its role in CSCs, and consider goals for targeting future therapy in this arena to disrupt tumor initiation and progression in women's cancer."	"Effective targeting of cancer stem cells (CSCs) requires neutralization of self-renewal and chemoresistance, but these phenotypes are often regulated by distinct molecular mechanisms. Here we report the ability to target both of these phenotypes via CD55, an intrinsic cell surface complement inhibitor, which was identified in a comparative analysis between CSCs and non-CSCs in endometrioid cancer models. In this context, CD55 functions in a complement-independent manner and required lipid raft localization for CSC maintenance and cisplatin resistance. CD55 regulated self-renewal and core pluripotency genes via ROR2/JNK signaling and in parallel cisplatin resistance via lymphocyte-specific protein tyrosine kinase (LCK) signaling, which induced DNA repair genes. Targeting LCK signaling via saracatinib, an inhibitor currently undergoing clinical evaluation, sensitized chemoresistant cells to cisplatin. Collectively, our findings identify CD55 as a unique signaling node that drives self-renewal and therapeutic resistance through a bifurcating signaling axis and provides an opportunity to target both signaling pathways in endometrioid tumors."	"Leptin (LEP) binds to the long form of the leptin receptor (LEPRb), leading to the activation of multiple signaling pathways that are potential targets for disrupting the obesity-breast cancer link. In triple-negative breast cancer (TNBC), LEP is hypothesized to predominantly mediate its tumorigenic effects via a subpopulation of LEPRb-positive tumor cells termed cancer stem cells (CSCs) that can initiate tumors and induce tumor progression. Previously, we showed that LEP promotes CSC survival in vivo Moreover, silencing LEPRb in TNBC cells compromised the CSC state. The mechanisms by which LEPRb regulates TNBC CSC intracellular signaling are not clear. We hypothesized that activation of LEPRb signaling is sufficient to drive CSC maintenance in TNBC. Here, we show that activation of LEPRb in non-CSCs isolated using our CSC reporter system resulted in a transition to the stem cell state. In CSCs, LEP induced STAT3 phosphorylation, whereas LEP did not induce STAT3 phosphorylation in non-CSCs. Introduction of constitutively active STAT3 into LEPRb-transfected non-CSCs significantly induced NANOG, SOX2 and OCT4 expression compared with control non-CSCs. To determine the intracellular phospho-tyrosine residue of LEPRb that is necessary for the induction of the stem cell state in non-CSCs, we transfected the tyrosine residue point mutants L985, F1077 and S1138 into non-CSCs. Non-CSCs transfected with the L985 mutant exhibited increased STAT3 phosphorylation, increased SOCS3 expression and an induction of GFP expression compared with non-CSCs expressing the F1077 and S1138 mutants. Our data demonstrate that LEPRb-induced STAT3 activation is essential for the induction and maintenance of TNBC CSCs."	"Cancer stem cells have been identified in primary tumors, patient derived xenografts, and established cancer cell lines. The development of reporters has enabled investigators to rapidly enrich for these cells and more importantly track these cells in real time. Here we describe the current state of the reporter field and their use and limitations in multiple cancers."	"The mainstay of treatment for ovarian cancer is platinum-based cytotoxic chemotherapy. However, therapeutic resistance and recurrence is a common eventuality for nearly all ovarian cancer patients, resulting in poor median survival. Recurrence is postulated to be driven by a population of self-renewing, therapeutically resistant cancer stem cells (CSCs). A current limitation in CSC studies is the inability to interrogate their dynamic changes in real time. Here we utilized a GFP reporter driven by the NANOG-promoter to enrich and track ovarian CSCs. Using this approach, we identified a population of cells with CSC properties including enhanced expression of stem cell transcription factors, self-renewal, and tumor initiation. We also observed elevations in CSC properties in cisplatin-resistant ovarian cancer cells as compared to cisplatin-naïve ovarian cancer cells. CD49f, a marker for CSCs in other solid tumors, enriched CSCs in cisplatin-resistant and -naïve cells. NANOG-GFP enriched CSCs (GFP+ cells) were more resistant to cisplatin as compared to GFP-negative cells. Moreover, upon cisplatin treatment, the GFP signal intensity and NANOG expression increased in GFP-negative cells, indicating that cisplatin was able to induce the CSC state. Taken together, we describe a reporter-based strategy that allows for determination of the CSC state in real time and can be used to detect the induction of the CSC state upon cisplatin treatment. As cisplatin may provide an inductive stress for the stem cell state, future efforts should focus on combining cytotoxic chemotherapy with a CSC targeted therapy for greater clinical utility. "	"Advanced cancers display cellular heterogeneity driven by self-renewing, tumorigenic cancer stem cells (CSCs). The use of cell lines to model CSCs is challenging due to the difficulty of identifying and isolating cell populations that possess differences in self-renewal and tumor initiation. To overcome these barriers in triple-negative breast cancer (TNBC), we developed a CSC system using a green fluorescent protein (GFP) reporter for the promoter of the well-established pluripotency gene NANOG. NANOG-GFP+ cells gave rise to both GFP+ and GFP(-) cells, and GFP+ cells possessed increased levels of the embryonic stem cell transcription factors NANOG, SOX2, and OCT4 and elevated self-renewal and tumor initiation capacities. GFP+ cells also expressed mesenchymal markers and demonstrated increased invasion. Compared with the well-established CSC markers CD24(-) /CD44(+) , CD49f, and aldehyde dehydrogenase (ALDH) activity, our NANOG-GFP reporter system demonstrated increased enrichment for CSCs. To explore the utility of this system as a screening platform, we performed a flow cytometry screen that confirmed increased CSC marker expression in the GFP+ population and identified new cell surface markers elevated in TNBC CSCs, including junctional adhesion molecule-A (JAM-A). JAM-A was highly expressed in GFP+ cells and patient-derived xenograft ALDH+ CSCs compared with the GFP(-) and ALDH(-) cells, respectively. Depletion of JAM-A compromised self-renewal, whereas JAM-A overexpression induced self-renewal in GFP(-) cells. Our data indicate that we have defined and developed a robust system to monitor differences between CSCs and non-CSCs in TNBC that can be used to identify CSC-specific targets for the development of future therapeutic strategies."	"Despite new therapies, breast cancer continues to be the second leading cause of cancer mortality in women, a consequence of recurrence and metastasis. In recent years, a population of cancer cells has been identified, called cancer stem cells (CSCs) with self-renewal capacity, proposed to underlie tumor recurrence and metastasis. We previously showed that the adipose tissue cytokine LEPTIN, increased in obesity, promotes the survival of CSCs in vivo. Here, we tested the hypothesis that the leptin receptor (LEPR), expressed in mammary cancer cells, is necessary for maintaining CSC-like and metastatic properties. We silenced LEPR via shRNA lentivirus transduction and determined that the expression of stem cell self-renewal transcription factors NANOG, SOX2, and OCT4 (POU5F1) is inhibited. LEPR-NANOG signaling pathway is conserved between species because we can rescue NANOG expression in human LEPR-silenced cells with the mouse LepR. Using a NANOG promoter GFP reporter, we showed that LEPR is enriched in NANOG promoter active (GFP+) cells. In lineage tracing studies, we showed that the GFP+ cells divide in a symmetric and asymmetric manner. LEPR-silenced MDA-MB-231 cells exhibit a mesenchymal to epithelial transition morphologically, increased E-CADHERIN and decreased VIMENTIN expression compared with control cells. Finally, LEPR-silenced cells exhibit reduced cell proliferation, self-renewal in tumor sphere assays, and tumor outgrowth in xenotransplant studies. Given the emergence of NANOG as a pro-carcinogenic protein in multiple cancers, these studies suggest that inhibition of LEPR may be a promising therapeutic approach to inhibit NANOG and thereby neutralize CSC functions."	"Obesity increases both the risk and mortality associated with many types of cancer including that of the breast. In mice, obesity increases both incidence of spontaneous tumors and burden of transplanted tumors. Our findings identify leptin, an adipose secreted cytokine, in promoting increased mammary tumor burden in obese mice and provide a link between this adipokine and cancer. Using a transplantable tumor that develops spontaneously in the murine mammary tumor virus-Wnt-1 transgenic mice, we show that tumors transplanted into obese leptin receptor (LepRb)-deficient (db/db) mice grow to eight times the volume of tumors transplanted into lean wild-type (WT) mice. However, tumor outgrowth and overall tumor burden is reduced in obese, leptin-deficient (ob/ob) mice. The residual tumors in ob/ob mice contain fewer undifferentiated tumor cells (keratin 6 immunopositive) compared with WT or db/db mice. Furthermore, tumors in ob/ob mice contain fewer cells expressing phosphorylated Akt, a growth promoting kinase activated by the LepRb, compared with WT and db/db mice. In vivo limiting dilution analysis of residual tumors from ob/ob mice indicated reduced tumor initiating activity suggesting fewer cancer stem cells (CSCs). The tumor cell populations reduced by leptin deficiency were identified by fluorescence-activated cell sorting and found to express LepRb. Finally, LepRb expressing tumor cells exhibit stem cell characteristics based on the ability to form tumorspheres in vitro and leptin promotes their survival. These studies provide critical new insight on the role of leptin in tumor growth and implicate LepRb as a CSC target."	"Obesity is associated with increased risk of diabetes, cardiovascular disease and several types of cancers. The hypothalamus is a region of the brain critical in the regulation of body weight. One of the critical and best studied hypothalamic circuits is comprised of the melanocortinergic orexigenic agouti-related protein (AgRP) and anorexigenic α-melanocyte stimulating hormone (α-MSH) neurons. These neurons project axons to the same hypothalamic target neurons and balance each other's activity leading to body weight regulation. We previously showed that the brain proteoglycan syndecan-3 regulates feeding behavior and body weight, and syndecan-3 null (SDC-3(-/-)) mice are lean and obesity resistant. Here we show that the melanocortin agonist Melanotan II (MTII) potently suppresses food intake and activates the hypothalamic paraventricular nuclei (PVN) in SDC-3(-/-) mice based on c-fos immunoreactivity. Interestingly, we determined that the AgRP neuropeptide is reduced in the PVN of SDC-3(-/-) mice compared to wild type mice. In contrast, neuropeptide Y, coexpressed in the AgRP neuron, is not differentially expressed nor is the counteracting neuropeptide α-MSH. These findings are unprecedented and indicate that AgRP protein localization can be selectively regulated within the hypothalamus resulting in altered neuropeptide response and tone."
+"Rezaee, Fariba"	"Inflammation and Immunity"	30489157	28759570	28500974	20971883	29329282	20300619	25085341	24467704	23926335	21996340	"Respiratory syncytial virus (RSV) is a major cause of hospitalization for infants and young children worldwide. RSV is known to infect epithelial cells and increase the permeability of model airway epithelial monolayers in vitro. We hypothesized that RSV infection also induces airway barrier dysfunction in vivo. C57BL/6 mice were intranasally inoculated with RSV, and on day 4 post-inoculation were examined for viral replication, lung inflammation, and barrier integrity as well as the structure and molecular composition of epithelial junctions. In parallel, primary mouse tracheal epithelial cells (mTEC) were cultured for in vitro studies. RSV-infected mice lost weight and showed significant peribronchial inflammation compared with noninfected controls and UV-inactivated RSV-inoculated animals. RSV infection increased the permeability of the airway epithelial barrier and altered the molecular composition of epithelial tight junctions. The observed RSV-induced barrier disruption was accompanied by decreased expression of several tight-junction proteins and accumulation of cleaved extracellular fragments of E-cadherin in bronchoalveolar lavage and mTEC supernatants. Similarly, in vitro RSV infection of mTEC monolayers resulted in enhanced permeability and disruption of tight-junction structure. Furthermore, incubation of mTEC monolayers with a recombinant fragment of E-cadherin caused tight-junction disassembly. Taken together, these data indicate that RSV infection leads to airway barrier dysfunction in vivo, mediated by either decreased expression or cleavage of junctional proteins. Our observations provide further insights into the pathophysiology of RSV infection and provide a rationale for development of barrier-protecting agents to alleviate the pathogenic effects of RSV infection."	"Airway epithelium forms a barrier to the outside world and has a crucial role in susceptibility to viral infections. Cyclic adenosine monophosphate (cAMP) is an important second messenger acting via two intracellular signaling molecules: protein kinase A (PKA) and the guanidine nucleotide exchange factor, Epac. We sought to investigate effects of increased cAMP level on the disruption of model airway epithelial barrier caused by RSV infection and the molecular mechanisms underlying cAMP actions. Human bronchial epithelial cells were infected with RSV-A2 and treated with either cAMP releasing agent, forskolin, or cAMP analogs. Structure and functions of the Apical Junctional Complex (AJC) were evaluated by measuring transepithelial electrical resistance and permeability to FITC-dextran, and determining localization of AJC proteins by confocal microscopy. Increased intracellular cAMP level significantly attenuated RSV-induced disassembly of AJC. These barrier-protective effects of cAMP were due to the activation of PKA signaling and did not involve Epac activity. Increased cAMP level reduced RSV-induced reorganization of the actin cytoskeleton, including apical accumulation of an essential actin-binding protein, cortactin, and inhibited expression of the RSV F protein. These barrier-protective and antiviral-function of cAMP signaling were evident even when cAMP level was increased after the onset of RSV infection. Taken together, our study demonstrates that cAMP/PKA signaling attenuated RSV-induced disruption of structure and functions of the model airway epithelial barrier by mechanisms involving the stabilization of epithelial junctions and inhibition of viral biogenesis. Improving our understanding of the mechanisms involved in RSV-induced epithelial dysfunction and viral pathogenesis will help to develop novel anti-viral therapeutic approaches."	"Respiratory syncytial virus (RSV) is the most common respiratory pathogen in infants and young children worldwide. Lower respiratory tract infection due to RSV is one of the most common causes of hospitalization for infants, especially those born premature or with chronic lung or heart disease. Furthermore, RSV infection is an important cause of morbidity in adults, particularly in the elderly and immunocompromised individuals. The acute phase of this infection is often followed by episodes of wheezing that recur for months or years and usually lead to a physician diagnosis of asthma. RSV was discovered more than 50 years ago, and despite extensive research to identify pharmacological therapies, the most effective management of this infection remains supportive care. The trial of a formalin-inactivated RSV vaccine in the 1960s resulted in priming the severe illness upon natural infection. Currently, Palivizumab is the only available option for RSV prophylaxis, and because of restricted clinical benefits and high costs, it has been limited to a group of high-risk infants. There are several ongoing trials in preclinical, Phase-I, Phase-II, or Phase-III clinical stages for RSV vaccine development based on various strategies. Here we review the existing available prophylactic options, the current stages of RSV vaccine clinical trials, different strategies, and major hurdles in the development of an effective RSV vaccine."	"Respiratory syncytial virus (RSV) is the most common respiratory pathogen in infants and young children. The pathophysiology of this infection in the respiratory system has been studied extensively, but little is known about its consequences in other systems. We studied whether RSV infects human bone marrow stromal cells (BMSCs) in vitro and in vivo, and investigated whether and how this infection affects BMSC structure and hematopoietic support function. Primary human BMSCs were infected in vitro with recombinant RSV expressing green fluorescent protein. In addition, RNA from naive BMSCs was amplified by PCR, and the products were sequenced to confirm homology with the RSV genome. The BMSC cytoskeleton was visualized by immunostaining for actin. Finally, we analyzed infected BMSCs for the expression of multiple cytokines and chemokines, evaluated their hematopoietic support capacity, and measured their chemotactic activity for both lymphoid and myeloid cells. We found that BMSCs support RSV replication in vitro with efficiency that varies among cell lines derived from different donors; furthermore, RNA sequences homologous to the RSV genome were found in naive primary human BMSCs. RSV infection disrupted cytoskeletal actin microfilaments, altered cytokine/chemokine expression patterns, decreased the ability of BMSCs to support B cell maturation, and modulated local chemotaxis. Our data indicate that RSV infects human BMSCs in vitro, and this infection has important structural and functional consequences that might affect hematopoietic and immune functions. Furthermore, we have amplified viral RNA from naive primary BMSCs, suggesting that in vivo these cells provide RSV with an extrapulmonary target."	"BackgroundDespite decades that have passed since its discovery, accurate biomarkers of respiratory syncytial virus (RSV) disease activity and effective therapeutic strategies are still lacking. The high-mobility group box type 1 (HMGB1) protein has been proposed as a possible link between RSV and immune system, but only limited information is currently available to support this hypothesis.MethodsExpression of HMGB1 gene and protein was analyzed by quantitative PCR, enzyme-linked immunosorbent assay (ELISA), western blot, immunocytochemistry, and confocal microscopy in immortalized and primary human bronchial epithelial cells, as well as in rat pup lungs. The role of HMGB1 in RSV infection was explored using glycyrrhizin, a selective HMGB1 inhibitor.ResultsRSV infection strongly induced HMGB1 expression both in vitro and in vivo. Glycyrrhizin dose-dependently inhibited HMGB1 upregulation in both RSV-infected immortalized and primary human bronchial epithelial cells, and this effect was associated with significant reduction of viral replication.ConclusionOur data suggest that HMGB1 expression increases during RSV replication. This seems to have a critical pathogenic role as its selective inhibition virtually modified the infection. These observations provide further insight into the pathophysiology of RSV infection and uncover a potential biomarker and therapeutic target for the most common respiratory infection of infancy."	"The host's response to infection is characterized by altered levels of neurotrophins and an influx of inflammatory cells to sites of injured tissue. Progenitor cells that give rise to the differentiated cellular mediators of inflammation are derived from bone marrow progenitor cells where their development is regulated, in part, by cues from bone marrow stromal cells (BMSC). As such, alteration of BMSC function in response to elevated systemic mediators has the potential to alter their function in biologically relevant ways, including downstream alteration of cytokine production that influences hematopoietic development. In the current study we investigated BMSC neurotrophin receptor expression by flow cytometric analysis to determine differences in expression as well as potential to respond to NGF or BDNF. Intracellular signaling subsequent to neurotrophin stimulation of BMSC was analyzed by western blot, microarray analysis, confocal microscopy and real-time PCR. Analysis of BMSC Interleukin-6 (IL-6) expression was completed using ELISA and real-time PCR. BMSC established from different individuals had distinct expression profiles of the neurotrophin receptors, TrkA, TrkB, TrkC, and p75(NTR). These receptors were functional, demonstrated by an increase in Akt-phosphorylation following BMSC exposure to recombinant NGF or BDNF. Neurotrophin stimulation of BMSC resulted in increased IL-6 gene and protein expression which required activation of ERK and p38 MAPK signaling, but was not mediated by the NFkappaB pathway. BMSC response to neurotrophins, including the up-regulation of IL-6, may alter their support of hematopoiesis and regulate the availability of inflammatory cells for migration to sites of injury or infection. As such, these studies are relevant to the growing appreciation of the interplay between neurotropic mediators and the regulation of hematopoiesis."	"Airway epithelial cells form a barrier to the outside world and are at the front line of mucosal immunity. Epithelial apical junctional complexes are multiprotein subunits that promote cell-cell adhesion and barrier integrity. Recent studies in the skin and gastrointestinal tract suggest that disruption of cell-cell junctions is required to initiate epithelial immune responses, but how this applies to mucosal immunity in the lung is not clear. Increasing evidence indicates that defective epithelial barrier function is a feature of airway inflammation in asthmatic patients. One challenge in this area is that barrier function and junctional integrity are difficult to study in the intact lung, but innovative approaches should provide new knowledge in this area in the near future. In this article we review the structure and function of epithelial apical junctional complexes, emphasizing how regulation of the epithelial barrier affects innate and adaptive immunity. We discuss why defective epithelial barrier function might be linked to TH2 polarization in asthmatic patients and propose a rheostat model of barrier dysfunction that implicates the size of inhaled allergen particles as an important factor influencing adaptive immunity."	"Epithelial permeability is a hallmark of mucosal inflammation, but the molecular mechanisms involved remain poorly understood. A key component of the epithelial barrier is the apical junctional complex that forms between neighboring cells. Apical junctional complexes are made of tight junctions and adherens junctions and link to the cellular cytoskeleton via numerous adaptor proteins. Although the existence of tight and adherens junctions between epithelial cells has long been recognized, in recent years there have been significant advances in our understanding of the molecular regulation of junctional complex assembly and disassembly. Here we review the current thinking about the structure and function of the apical junctional complex in airway epithelial cells, emphasizing the translational aspects of relevance to cystic fibrosis and asthma. Most work to date has been conducted using cell culture models, but technical advancements in imaging techniques suggest that we are on the verge of important new breakthroughs in this area in physiological models of airway diseases."	"Understanding the regulation of airway epithelial barrier function is a new frontier in asthma and respiratory viral infections. Despite recent progress, little is known about how respiratory syncytial virus (RSV) acts at mucosal sites, and very little is known about its ability to influence airway epithelial barrier function. Here, we studied the effect of RSV infection on the airway epithelial barrier using model epithelia. 16HBE14o- bronchial epithelial cells were grown on Transwell inserts and infected with RSV strain A2. We analyzed (i) epithelial apical junction complex (AJC) function, measuring transepithelial electrical resistance (TEER) and permeability to fluorescein isothiocyanate (FITC)-conjugated dextran, and (ii) AJC structure using immunofluorescent staining. Cells were pretreated or not with protein kinase D (PKD) inhibitors. UV-irradiated RSV served as a negative control. RSV infection led to a significant reduction in TEER and increase in permeability. Additionally it caused disruption of the AJC and remodeling of the apical actin cytoskeleton. Pretreatment with two structurally unrelated PKD inhibitors markedly attenuated RSV-induced effects. RSV induced phosphorylation of the actin binding protein cortactin in a PKD-dependent manner. UV-inactivated RSV had no effect on AJC function or structure. Our results suggest that RSV-induced airway epithelial barrier disruption involves PKD-dependent actin cytoskeletal remodeling, possibly dependent on cortactin activation. Defining the mechanisms by which RSV disrupts epithelial structure and function should enhance our understanding of the association between respiratory viral infections, airway inflammation, and allergen sensitization. Impaired barrier function may open a potential new therapeutic target for RSV-mediated lung diseases. "	"Disruption of the epithelial barrier might be a risk factor for allergen sensitization and asthma. Viral respiratory tract infections are strongly associated with asthma exacerbation, but the effects of respiratory viruses on airway epithelial barrier function are not well understood. Many viruses generate double-stranded RNA, which can lead to airway inflammation and initiate an antiviral immune response. We investigated the effects of the synthetic double-stranded RNA polyinosinic:polycytidylic acid (polyI:C) on the structure and function of the airway epithelial barrier in vitro. 16HBE14o- human bronchial epithelial cells and primary airway epithelial cells at an air-liquid interface were grown to confluence on Transwell inserts and exposed to polyI:C. We studied epithelial barrier function by measuring transepithelial electrical resistance and paracellular flux of fluorescent markers and structure of epithelial apical junctions by means of immunofluorescence microscopy. PolyI:C induced a profound decrease in transepithelial electrical resistance and increase in paracellular permeability. Immunofluorescence microscopy revealed markedly reduced junctional localization of zonula occludens-1, occludin, E-cadherin, β-catenin, and disorganization of junction-associated actin filaments. PolyI:C induced protein kinase D (PKD) phosphorylation, and a PKD antagonist attenuated polyI:C-induced disassembly of apical junctions and barrier dysfunction. PolyI:C has a powerful and previously unsuspected disruptive effect on the airway epithelial barrier. PolyI:C-dependent barrier disruption is mediated by disassembly of epithelial apical junctions, which is dependent on PKD signaling. These findings suggest a new mechanism potentially underlying the associations between viral respiratory tract infections, airway inflammation, and allergen sensitization."
+"Rieder, Florian"	"Inflammation and Immunity"	30981697	30503966	30411391	30346528	29920726	29411405	28881875	28402994	28002130	27831543	"Crohn's disease (CD) is a chronic inflammatory disease, which could affect any part of the gastrointestinal tract. A severe complication of CD is fibrosis-associated strictures, which can cause bowel obstruction. Unfortunately, there is no specific antifibrotic therapy available. More than 80% of the patients with CD will have to undergo at least 1 surgery in their life and recurrence of strictures after surgery is common. Investigations on the mechanism of fibrostenosing CD have revealed that fibrosis is mainly driven by expansion of mesenchymal cells including fibroblasts, myofibroblasts, and smooth muscle cells. Being exposed to a pro-fibrotic milieu, these cells increase the secretion of extracellular matrix, as well as crosslinking enzymes, which drive tissue stiffness and remodeling. Fibrogenesis can become independent of inflammation in later stages of disease, which offers unique therapeutic potential. Exciting new evidence suggests smooth muscle cell hyperplasia as a strong contributor to luminal narrowing in fibrostenotic CD. Approval of new drugs in other fibrotic diseases, such as idiopathic pulmonary fibrosis, as well as new targets associated with fibrosis found in CD, such as cadherins or specific integrins, shed light on the development of novel antifibrotic approaches in CD."	"Little is known about the effects of endoscopic balloon dilation (EBD) for strictures of the upper gastrointestinal (UGI) tract in patients with Crohn's disease (CD). We performed a pooled analysis of the efficacy and safety of EBD for UGI CD-associated strictures. We searched Embase, Medline, and the Cochrane library, as well as bibliographies of relevant articles, for cohort studies of adults with CD and strictures of the stomach or duodenum (up to the ligament of Treitz) who underwent EBD through December 2016. We obtained data from 7 international referral centers on 94 patients who underwent 141 EBDs. We performed a patient-level meta-analysis of data from published and unpublished cohort studies to determine mechanical and clinical success. We performed a time-to-event analysis to assess symptom recurrence and need for redilation or surgery. The patients analyzed had strictures of the duodenum (n = 107), stomach (n = 30), or spanning both (n = 4). The rate of technical success for EBD was 100%, with 87% short-term clinical efficacy; major complications arose from 2.9% of all procedures. During a median follow-up period of 23.1 months, 70.5% of patients had a recurrence of symptoms, 59.6% required redilation, and 30.8% required surgical intervention. Patients whose disease was located in the small bowel had a higher risk for symptom recurrence (hazard ratio [HR], 2.1; P = .003). Asian race (HR, 2.8; P &lt; .001) and location of disease in the small bowel (HR, 1.9; P = .004) increased the need for redilation. Prestenotic dilation was a risk factor for needing surgery earlier (HR, 1.9; P = .001). In a meta-analysis, we found EBD for CD-associated strictures of the UGI to be an effective alternative to surgery, with a high rate of short-term technical and clinical success, moderate long-term efficacy, and an acceptable rate of complications."	"Zymogen granule glycoprotein 2 (GP2) is a major autoantigen of Crohn's disease-specific pancreatic autoantibodies. To test a link between loss of tolerance to isoforms of GP2 and pouch disorders in a cross-sectional study in ulcerative colitis patients with ileal pouch-anal anastomosis (IPAA). Serum samples of 117 consecutive ulcerative colitis patients after IPAA were tested for presence of Anti-GP2 isoforms 1 (GP21 ) &amp; 4 (GP24 ) IgG and IgA as well as anti-Saccaromyces cervisiae (ASCA) IgG and IgA antibodies in a blinded fashion via enzyme-linked immunosorbent assay. Pouch disorders were diagnosed based on clinical, endoscopic, histological and radiographic criteria. Crohn's disease of the pouch was defined as involvement of the small bowel mucosa proximal to the ileal pouch with Crohn's disease, development of perianal complications or pouch fistula more than 3 months after ileostomy closure. Positivity and level of Anti-GP21 IgG (AUC 0.77; P &lt; 0.001 &amp; P = 0.02, respectively), Anti-GP24 IgG (AUC 0.74; P &lt; 0.001 &amp; P = 0.025, respectively) and Anti-GP24 IgA (AUC 0.77; P &lt; 0.001 to P = 0.018, respectively) were specifically associated with Crohn's disease of the pouch. Anti-GP2 was not associated with endoscopic or histological pouch disease activity index. Neither positivity nor levels of ASCA IgG (AUC 0.63; P = 0.12 &amp; P = 0.35, respectively) or ASCA IgA (AUC 0.67; P = 0.38 &amp; P = 0.53) were associated with pouch phenotypes. The novel anti-GP21 and GP24 antibodies are associated with Crohn's disease of the pouch in ulcerative colitis patients after IPAA. Serological anti-GP2 antibodies could aid in diagnosis of Crohn's disease of the pouch."	"Adipose tissue is present in close proximity to various organs in the human body. One prominent example is fat contained in the mesentery that is contiguous with all abdominal digestive organs including the intestine. Despite the fact that mesenteric fat-wrapping around the inflamed gut (so called &quot;creeping fat&quot;) was described as a characteristic feature of Crohn's disease (CD) in the early 1930s, the functional implications of creeping fat have received only recent attention. As a potent producer of fatty acids, cytokines, growth factors, and adipokines, creeping fat plays an important role in regulation of immunity and inflammation. Increasing evidence points to a link between creeping fat and intestinal inflammation in CD, where histopathologic evaluation shows a significant association between creeping fat and connective tissue changes in the bowel wall, such as muscular hypertrophy, fibrosis, and stricture formation. In addition, emerging mechanistic data indicate a link between creeping fat, muscularis propria hyperplasia, and stricturing disease. Information on fat-mesenchymal interactions in other organs could provide clues to fill the fundamental knowledge gap on the role of distinct components of creeping fat in intestinal fibrosis and stricture formation. Future studies will provide important new information that in turn could lead to novel therapeutic agents aimed at prevention or treatment of CD-associated fibrosis and stricture formation."	"Fibrotic stricture is a common complication of Crohn's disease (CD) affecting approximately half of all patients. No specific anti-fibrotic therapies are available; however, several therapies are currently under evaluation. Drug development for the indication of stricturing CD is hampered by a lack of standardised definitions, diagnostic modalities, clinical trial eligibility criteria, endpoints and treatment targets in stricturing CD. To standardise definitions, diagnosis and treatment targets for anti-fibrotic stricture therapies in Chron's disease. An interdisciplinary expert panel consisting of 15 gastroenterologists and radiologists was assembled. Using modified RAND/University of California Los Angeles appropriateness methodology, 109 candidate items derived from systematic review and expert opinion focusing on small intestinal strictures were anonymously rated as inappropriate, uncertain or appropriate. Survey results were discussed as a group before a second and third round of voting. Fibrotic strictures are defined by the combination of luminal narrowing, wall thickening and pre-stenotic dilation. Definitions of anastomotic (at site of prior intestinal resection with anastomosis) and naïve small bowel strictures were similar; however, there was uncertainty regarding wall thickness in anastomotic strictures. Magnetic resonance imaging is considered the optimal technique to define fibrotic strictures and assess response to therapy. Symptomatic strictures are defined by abdominal distension, cramping, dietary restrictions, nausea, vomiting, abdominal pain and post-prandial abdominal pain. Need for intervention (endoscopic balloon dilation or surgery) within 24-48 weeks is considered the appropriate endpoint in pharmacological trials. Consensus criteria for diagnosis and response to therapy in stricturing Crohn's disease should inform both clinical practice and trial design."	"Fibrosis in ulcerative colitis has remained largely unexplored despite its clinical implications. This cross-sectional study was aimed at characterising the presence, anatomical location and degree of ulcerative colitis-associated fibrosis and its possible link to clinical parameters. Seven hundred and six individual tissue cross-sections derived every 10 cm along the length of 89 consecutive Ulcerative colitis colectomy specimens were examined and compared to Crohn's disease colitis, diverticular disease and uninvolved areas from colorectal cancer patients. Degree of inflammation, fibrosis and morphometric measurements of all layers of the intestinal wall were evaluated. Three gastrointestinal pathologists independently assessed colon sections stained with haematoxylin and eosin, Masson trichrome and Sirius red. Clinical data were collected prospectively. Submucosal fibrosis was detected in 100% of ulcerative colitis colectomy specimens, but only in areas affected by inflammation. Submucosal fibrosis was associated with the severity of intestinal inflammation (Spearman correlations rho (95% confidence interval): 0.58 (P &lt; 0.001) and histopathological changes of chronic mucosal injury, but not active inflammation. Colectomy for refractory disease rather than presence of dysplasia was associated with increased fibrosis and a thicker muscularis mucosae, whereas a thinner muscularis mucosae was associated with anti-tumour necrosis factor therapy. No feature on endoscopic mucosal biopsies could predict the underlying amount of fibrosis or the thickness of the muscularis mucosae. A significant degree of fibrosis and muscularis mucosae thickening should be considered as common complications of chronic progressive ulcerative colitis. These features may have clinical consequences such as motility abnormalities and increased wall stiffness."	"Gastric and duodenal Crohn's disease [CD]-associated strictures are rare. Evidence on endoscopic balloon dilation [EBD] of upper gastrointestinal [GI] CD strictures is limited, in particular in respect to serial dilations. Prospective short- and long-term outcome data as well as complication rates on a cohort of upper GI CD-associated stricture dilations [stomach and duodenum] were collected from 1999 to 2015. Factors linked with clinical and technical success, long-term efficacy and complication rates were investigated. A total of 35 CD patients with symptomatic CD-associated upper GI strictures [20% gastric, 67% duodenal, 11% both; mean age at diagnosis 25 years; mean CD duration to stricture 79.9 months; median post-dilation follow-up 22.1 months] underwent a total of 96 pneumatic dilations [33 gastric and 63 duodenal]. The median maximal dilation diameter was 15 mm. Technical success was achieved in 93% and clinical success in 87%, with a complication rate of 4% per procedure. The mean time to re-dilation was 2.2 months and mean time to stricture-related surgery after first dilation was 2.8 months. There was no difference in short-term efficacy, safety, or long-term outcome between the first and any later dilation procedure in the same patient. Pneumatic dilation of upper GI CD-associated strictures has a high rate of short-term technical and clinical success, with moderate long-term efficacy and acceptable complication rates. Serial dilations do not change the efficacy and could be a feasible option to delay or prevent surgical intervention."	"Intestinal fibrosis is a common complication of several enteropathies, with inflammatory bowel disease (IBD) being the major cause. Intestinal fibrosis affects both ulcerative colitis and Crohn's disease, and no specific antifibrotic therapy exists. This review highlights recent developments in this area. The pathophysiology of intestinal stricture formation includes inflammation-dependent and inflammation-independent mechanisms. A better understanding of the mechanisms of intestinal fibrogenesis and the availability of compounds for other nonintestinal fibrotic diseases bring clincial trials in stricturing Crohn's disease within reach. Improved understanding of its mechanisms and ongoing development of clinical trial endpoints for intestinal fibrosis will allow the testing of novel antifibrotic compounds in IBD."	"Endoscopic balloon dilation (EBD) is widely used to manage Crohn's disease-associated strictures. However, most studies of the safety and efficacy are small and heterogenous. We performed a combined analysis of published studies and evaluated 676 comprehensive individual participant data sets to determine the overall effects of EBD. Citations from the Embase, MEDLINE, and the Cochrane library from 1991 through 2013 were systematically reviewed, and references of cited articles were assessed for relevant publications. We collected data from studies including ≥15 patients and additionally generated a unique individual patient database containing 676 individual data sets derived from 12 studies. Technical feasibility, short-term and long-term efficacies, and safety were evaluated. In 1463 patients with Crohn's disease who underwent 3213 EBD procedures, 98.6% of strictures were ileal and 62% anastomotic. The technical success rate of the EBDs was 89.1% with a clinical efficacy of 80.8%. Complications occurred in 2.8% per procedure. After 24 months of follow-up, 73.5% of subjects underwent redilation and 42.9% surgical resection. In a multivariate analysis of 676 individual patients, a stricture length of ≤5 cm was associated with a surgery-free outcome; every 1 cm increase of stricture length increased the hazard of need for surgery by 8% (P = 0.008). Inflammation did not affect outcomes or rate of complications. Based on a systematic literature review and analysis of data sets from 676 patients, EBD has a high rate of short-term technical and clinical efficacies, with substantial long-term efficacy and acceptable rates of complication."	"The accuracy of available noninvasive biomarkers for diagnosis, stratification, and prediction of inflammatory bowel disease (IBD) courses is limited. We analyzed volatile organic compounds (VOCs) in the breath of IBD patients and controls for diagnosis and differentiation of IBD as well as their link with disease location, activity, and phenotype. A prospective study of diagnostic testing was conducted, recruiting Crohn's disease (CD), ulcerative colitis (UC), other inflammatory gastrointestinal diseases (OGDs), and healthy controls (HCs), as well as subjects with ileal pouch anal anastomosis (IPAA). The breath VOC profile was analyzed using selective ion flow tube-mass spectrometry. One hundred and twenty-four subjects (n=24 CD, n=11 UC, n=6 OGD, n=53 HC, n=30 IPAA) were included. The breath metabolome was significantly different in patients with IBD, CD, or UC compared with OGD and HC (7 out of 22 VOCs), but not between CD and UC. No link between the level of VOCs with complications, disease location, and clinical or radiologic disease activity, as well as lab parameters or type of medication was found. Breath VOCs were markedly different in patients with IPAA compared with any other group (17 out of 22 VOCs) and the presence of pouch inflammation did not alter the VOC levels. A specific breath metabolome is associated with IBD and markedly changes in patients with IPAA. Analysis of a broader spectrum of VOCs can potentially aid in the development of breath prints to diagnose or differentiate inflammatory bowel disorders."
+"Rotroff, Daniel"	"Quantitative Health Sciences"	29650774	28736931	27887572	27689071	27648916	27378919	26783503	24960280	24279843	23682706	"Metformin is the first-line treatment for type 2 diabetes (T2D). Although widely prescribed, the glucose-lowering mechanism for metformin is incompletely understood. Here, we used a genome-wide association approach in a diverse group of individuals with T2D from the Action to Control Cardiovascular Risk in Diabetes (ACCORD) clinical trial to identify common and rare variants associated with HbA1c response to metformin treatment and followed up these findings in four replication cohorts. Common variants in PRPF31 and CPA6 were associated with worse and better metformin response, respectively (P &lt; 5 × 10<sup>-6</sup>), and meta-analysis in independent cohorts displayed similar associations with metformin response (P = 1.2 × 10<sup>-8</sup> and P = 0.005, respectively). Previous studies have shown that PRPF31(+/-) knockout mice have increased total body fat (P = 1.78 × 10<sup>-6</sup>) and increased fasted circulating glucose (P = 5.73 × 10<sup>-6</sup>). Furthermore, rare variants in STAT3 associated with worse metformin response (q &lt;0.1). STAT3 is a ubiquitously expressed pleiotropic transcriptional activator that participates in the regulation of metabolism and feeding behavior. Here, we provide novel evidence for associations of common and rare variants in PRPF31, CPA6, and STAT3 with metformin response that may provide insight into mechanisms important for metformin efficacy in T2D."	"Individuals with type 2 diabetes (T2D) and dyslipidemia are at an increased risk of cardiovascular disease. Fibrates are a class of drugs prescribed to treat dyslipidemia, but variation in response has been observed. To evaluate common and rare genetic variants that impact lipid responses to fenofibrate in statin-treated patients with T2D, we examined lipid changes in response to fenofibrate therapy using a genomewide association study (GWAS). Associations were followed-up using gene expression studies in mice. Common variants in SMAD3 and IPO11 were marginally associated with lipid changes in black subjects (P &lt; 5 × 10<sup>-6</sup> ). Rare variant and gene expression changes were assessed using a false discovery rate approach. AKR7A3 and HSD17B13 were associated with lipid changes in white subjects (q &lt; 0.2). Mice fed fenofibrate displayed reductions in Hsd17b13 gene expression (q &lt; 0.1). Associations of variants in SMAD3, IPO11, and HSD17B13, with gene expression changes in mice indicate that transforming growth factor-beta (TGF-β) and NRF2 signaling pathways may influence fenofibrate effects on dyslipidemia in patients with T2D."	"Children exposed to maternal smoking during pregnancy exhibit increased risk for many adverse health effects. Maternal smoking influences methylation in newborns at specific CpG sites (CpGs). Here, we extend evaluation of individual CpGs to gene-level and pathway-level analyses among 1062 participants in the Norwegian Mother and Child Cohort Study (MoBa) using the Illumina 450 K platform to measure methylation in newborn DNA and maternal smoking in pregnancy, assessed using the biomarker, plasma cotinine. We used novel implementations of bioinformatics tools to collapse epigenome-wide methylation data into gene- and pathway-level effects to test whether exposure to maternal smoking in utero differentially methylated CpGs in genes enriched in biologic pathways. Unlike most pathway analysis applications, our approach allows replication in an independent cohort. Data on 485,577 CpGs, mapping to a total of 20,199 genes, were used to create gene scores that were tested for association with maternal plasma cotinine levels using Sequence Kernel Association Test (SKAT), and 15 genes were found to be associated (q &lt; 0.25). Six of these 15 genes (GFI1, MYO1G, CYP1A1, RUNX1, LCTL, and AHRR) contained individual CpGs that were differentially methylated with regards to cotinine levels (p &lt; 1.06 × 10<sup>-7</sup>). Nine of the 15 genes (FCRLA, MIR641, SLC25A24, TRAK1, C1orf180, ITLN2, GLIS1, LRFN1, and MIR451) were associated with cotinine at the gene-level (q &lt; 0.25) but had no genome-wide significant individual CpGs (p &gt; 1.06 × 10<sup>-7</sup>). Pathway analyses using gene scores resulted in 51 significantly associated pathways, which we tested for replication in an independent cohort (q &lt; 0.05). Of those 32 replicated in an independent cohort, which clustered into six groups. The largest cluster consisted of pathways related to cancer, cell cycle, ERα receptor signaling, and angiogenesis. The second cluster, organized into five smaller pathway groups, related to immune system function, such as T-cell regulation and other white blood cell related pathways. Here we use novel implementations of bioinformatics tools to determine biological pathways impacted through epigenetic changes in utero by maternal smoking in 1062 participants in the MoBa, and successfully replicate these findings in an independent cohort. The results provide new insight into biological mechanisms that may contribute to adverse health effects from exposure to tobacco smoke in utero."	"As &quot;-omics&quot; data technology advances and becomes more readily accessible to address complex biological questions, increasing amount of cross &quot;-omics&quot; dataset is inspiring the use and development of integrative bioinformatics analysis. In the current review, we discuss multiple options for integrating data across &quot;-omes&quot; for a range of study designs. We discuss established methods for such analysis and point the reader to in-depth discussions for the various topics. Additionally, we discuss challenges and new directions in the area. "	"Ketamine, at sub-anesthetic doses, is reported to rapidly decrease depression symptoms in patients with treatment-resistant major depressive disorder (MDD). Many patients do not respond to currently available antidepressants, (for example, serotonin reuptake inhibitors), making ketamine and its enantiomer, esketamine, potentially attractive options for treatment-resistant MDD. Although mechanisms by which ketamine/esketamine may produce antidepressant effects have been hypothesized on the basis of preclinical data, the neurobiological correlates of the rapid therapeutic response observed in patients receiving treatment have not been established. Here we use a pharmacometabolomics approach to map global metabolic effects of these compounds in treatment-refractory MDD patients upon 2 h from infusion with ketamine (n=33) or its S-enantiomer, esketamine (n=20). The effects of esketamine on metabolism were retested in the same subjects following a second exposure administered 4 days later. Two complementary metabolomics platforms were used to provide broad biochemical coverage. In addition, we investigated whether changes in particular metabolites correlated with treatment outcome. Both drugs altered metabolites related to tryptophan metabolism (for example, indole-3-acetate and methionine) and/or the urea cycle (for example, citrulline, arginine and ornithine) at 2 h post infusion (q&lt;0.25). In addition, we observed changes in glutamate and circulating phospholipids that were significantly associated with decreases in depression severity. These data provide new insights into the mechanism underlying the rapid antidepressant effects of ketamine and esketamine, and constitute some of the first detailed metabolomics mapping for these promising therapies."	"Millions of individuals are diagnosed with type 2 diabetes mellitus (T2D), which increases the risk for a plethora of adverse outcomes including cardiovascular events and kidney disease. Metformin is the most widely prescribed medication for the treatment of T2D; however, its mechanism is not fully understood and individuals vary in their response to this therapy. Here, we use a non-targeted, pharmacometabolomics approach to measure 384 metabolites in 33 non-diabetic, African American subjects dosed with metformin. Three plasma samples were obtained from each subject, one before and two after metformin administration. Validation studies were performed in wildtype mice given metformin. Fifty-four metabolites (including 21 unknowns) were significantly altered upon metformin administration, and 12 metabolites (including six unknowns) were significantly associated with metformin-induced change in glucose (q &lt; 0.2). Of note, indole-3-acetate, a metabolite produced by gut microbes, and 4-hydroxyproline were modulated following metformin exposure in both humans and mice. 2-Hydroxybutanoic acid, a metabolite previously associated with insulin resistance and an early biomarker of T2D, was positively correlated with fasting glucose levels as well as glucose levels following oral glucose tolerance tests after metformin administration. Pathway analysis revealed that metformin administration was associated with changes in a number of metabolites in the urea cycle and in purine metabolic pathways (q &lt; 0.01). Further research is needed to validate the biomarkers of metformin exposure and response identified in this study, and to understand the role of metformin in ammonia detoxification, protein degradation and purine metabolic pathways. "	"Achieving hypertension (HTN) control and mitigating the adverse health effects associated with HTN continues to be a global challenge. Some individuals respond poorly to current HTN therapies, and mechanisms for response variation remain poorly understood. We used a nontargeted metabolomics approach (gas chromatography time-of-flight/mass spectrometry gas chromatography time-of-flight/mass spectrometry) measuring 489 metabolites to characterize metabolite signatures associated with treatment response to anti-HTN drugs, atenolol (ATEN), and hydrochlorothiazide (HCTZ), in white and black participants with uncomplicated HTN enrolled in the Pharmacogenomic Evaluation of Antihypertensive Responses study. Metabolite profiles were significantly different between races, and metabolite responses associated with home diastolic blood pressure (HDBP) response were identified. Metabolite pathway analyses identified gluconeogenesis, plasmalogen synthesis, and tryptophan metabolism increases in white participants treated with HCTZ (P &lt; 0.05). Furthermore, we developed predictive models from metabolite signatures of HDBP treatment response (P &lt; 1 × 10(-5)). As part of a quantitative systems pharmacology approach, the metabolites identified herein may serve as biomarkers for improving treatment decisions and elucidating mechanisms driving HTN treatment responses. "	"Thousands of environmental chemicals are subject to regulatory review for their potential to be endocrine disruptors (ED). In vitro high-throughput screening (HTS) assays have emerged as a potential tool for prioritizing chemicals for ED-related whole-animal tests. In this study, 1814 chemicals including pesticide active and inert ingredients, industrial chemicals, food additives, and pharmaceuticals were evaluated in a panel of 13 in vitro HTS assays. The panel of in vitro assays interrogated multiple end points related to estrogen receptor (ER) signaling, namely binding, agonist, antagonist, and cell growth responses. The results from the in vitro assays were used to create an ER Interaction Score. For 36 reference chemicals, an ER Interaction Score &gt;0 showed 100% sensitivity and 87.5% specificity for classifying potential ER activity. The magnitude of the ER Interaction Score was significantly related to the potency classification of the reference chemicals (p &lt; 0.0001). ERα/ERβ selectivity was also evaluated, but relatively few chemicals showed significant selectivity for a specific isoform. When applied to a broader set of chemicals with in vivo uterotrophic data, the ER Interaction Scores showed 91% sensitivity and 65% specificity. Overall, this study provides a novel method for combining in vitro concentration response data from multiple assays and, when applied to a large set of ER data, accurately predicted estrogenic responses and demonstrated its utility for chemical prioritization. "	NA	"High-throughput screening (HTS) assays capable of profiling thousands of environmentally relevant chemicals for in vitro biological activity provide useful information on the potential for disrupting endocrine pathways. Disruption of the estrogen signaling pathway has been implicated in a variety of adverse health effects including impaired development, reproduction, and carcinogenesis. The estrogen-responsive human mammary ductal carcinoma cell line T-47D was exposed to 1815 ToxCast chemicals comprising pesticides, industrial chemicals, pharmaceuticals, personal care products, cosmetics, food ingredients, and other chemicals with known or suspected human exposure potential. Cell growth kinetics were evaluated using real-time cell electronic sensing. T-47D cells were exposed to eight concentrations (0.006-100 μM), and measurements of cellular impedance were repeatedly recorded for 105 h. Chemical effects were evaluated based on potency (concentration at which response occurs) and efficacy (extent of response). A linear growth response was observed in response to prototypical estrogen receptor agonists (17β-estradiol, genistein, bisphenol A, nonylphenol, and 4-tert-octylphenol). Several compounds, including bisphenol A and genistein, induced cell growth comparable in efficacy to that of 17β-estradiol, but with decreased potency. Progestins, androgens, and corticosteroids invoked a biphasic growth response indicative of changes in cell number or cell morphology. Results from this cell growth assay were compared with results from additional estrogen receptor (ER) binding and transactivation assays. Chemicals detected as active in both the cell growth and ER receptor binding assays demonstrated potencies highly correlated with two ER transactivation assays (r = 0.72; r = 0.70). While ER binding assays detected chemicals that were highly potent or efficacious in the T-47D cell growth and transactivation assays, the binding assays lacked sensitivity in detecting weakly active compounds. In conclusion, this cell-based assay rapidly detects chemical effects on T-47D growth and shows potential, in combination with other HTS assays, to detect environmentally relevant chemicals with potential estrogenic activity. "
+"Rubin, Brian"	"Cancer Biology"	30709447	27044772	26486743	26297068	25961935	25766843	24977739	24589855	21970485	21885404	"In this review, we provide an update of the recently discovered, diagnostically significant genetic aberrations harbored by a subset of vascular neoplasms. From benign (epithelioid hemangioma, spindle cell hemangioma), to intermediate (pseudomyogenic hemangioendothelioma), to malignant (epithelioid hemangioendothelioma, angiosarcoma), each neoplasm features a mutation or gene fusion that facilitates its diagnosis by immunohistochemistry and/or molecular ancillary testing. The identification of these genetic anomalies not only assists with the objective classification and diagnosis of these neoplasms, but also serves to help recognize potential therapeutic targets."	"Mesenchymal tumors in the liver, whether primary or metastatic, are rare. Meningeal hemangiopericytoma (HPC) is characteristically associated with delayed metastasis and the liver is one of the most common sites. Despite its consistent histological features, a pathological diagnosis of HPC in the liver is sometimes not straightforward due to its rarity and usually remote medical history of the primary meningeal tumor. In this report, the clinicopathological features of 5 cases of metastatic HPC to the liver were reviewed and described. "	"As patients with BRAF V600E mutation respond to BRAF inhibitors, it is important to identify these mutations to stratify patients for the appropriate therapy. In this study, we evaluated the utility of a BRAF V600E allele-specific antibody in gastrointestinal stromal tumors (GISTs). BRAF V600E mutation-specific immunohistochemistry (negative, weak, or moderate/strong expression) and BRAF sequencing were performed on 38 consecutive GISTs diagnosed between January 2013 and April 2014. GISTs from a cohort of 25 men and 13 women (mean age, 61 years; range, 39-88 years) were localized to the stomach (18), small bowel (10), colon (three), rectum (two), and pelvis/omentum (five). Strong and diffuse cytoplasmic BRAF expression was noted in two (5%) of 38 cases, while eight (21%) of 38 cases showed weak staining, and 28 (74%) of 38 cases were negative. Both of the strongly positive cases arose in the stomach, occurring in a 42-year-old and a 47-year-old woman, respectively. The lesions measured 0.8 and 1 cm, showed spindle cell morphology, and had no risk of progressive disease by Miettinen criteria. Both cases showed heterozygous BRAF V600E, while no BRAF mutations were detected in cases with weak or negative BRAF expression. BRAF V600E mutation-specific immunohistochemistry is a highly sensitive and specific method for detecting BRAF-mutated GISTs."	"Approximately 85-90% of adult gastrointestinal stromal tumors (GISTs) harbor KIT and PDGFRA mutations. The remaining cases, including the majority of pediatric GISTs, lack these mutations, and have been designated as KIT/PDGFRA wild-type (WT) GISTs. Nearly 15% of WT GISTs harbor BRAF mutations, while others arise in patients with type I neurofibromatosis. Recent work has confirmed that 20-40% of KIT/PDGFRA WT GISTs show loss of function of succinate dehydrogenase complex. Less than 5% of GISTs lack known molecular alterations (&quot;quadruple-negative&quot; GISTs). Thus, it is important to consider genotyping these tumors to help better define their clinical behavior and therapy. "	"The WWTR1 (protein is known as TAZ)-CAMTA1 (WC) fusion gene defines epithelioid hemangioendothelioma, a malignant vascular cancer. TAZ (transcriptional coactivator with PDZ binding motif) is a transcriptional coactivator and end effector of the Hippo tumor suppressor pathway. It is inhibited by phosphorylation by the Hippo kinases LATS1 and LATS2. Such phosphorylation causes cytoplasmic localization, 14-3-3 protein binding and the phorphorylation of a terminal phosphodegron promotes ubiquitin-dependent degradation (the phosphorylation of the different motifs has several effects). CAMTA1 is a putative tumor suppressive transcription factor. Here we demonstrate that TAZ-CAMTA1 (TC) fusion results in its nuclear localization and constitutive activation. Consequently, cells expressing TC display a TAZ-like transcriptional program that causes resistance to anoikis and oncogenic transformation. Our findings elucidate the mechanistic basis of TC oncogenic properties, highlight that TC is an important model to understand how the Hippo pathway can be inhibited in cancer, and provide approaches for targeting this chimeric protein. "	"Gastrointestinal stromal tumors (GISTs) were originally thought to harbor either KIT or platelet-derived growth factor receptor A (PDGFRA) mutations only. However, more recent discoveries have highlighted additional, less common oncogenic driver mutations including NF1, BRAF, and succinate dehydrogenase (SDH) mutations. Genotyping GISTs has become more important since not all genotypes respond equally to FDA-approved tyrosine kinase inhibitors. GIST is a paradigm for personalized cancer therapy. Recent studies demonstrate how immunohistochemistry can be used both to diagnose GIST and to screen for specific mutations. DOG1 is particularly useful in the diagnosis of KIT-negative GIST, including tumors with PDGFRA mutations, which can also potentially be identified by immunohistochemistry for PDGFRA. SDHB immunohistochemistry is useful in characterizing GISTs with SDHA-D mutations, whereas SDHA immunohistochemistry is able to identify SDHA mutant GISTs. "	"Recurrent NAB2-STAT6 gene fusions have recently been identified in solitary fibrous tumour by next generation sequencing. Our aim was to examine the sensitivity and specificity of STAT6 immunohistochemistry for solitary fibrous tumour versus other morphologically similar soft tissue tumours. STAT6 expression was evaluated in 54 solitary fibrous tumours of various sites and 99 soft tissue tumours in the histological differential diagnosis. We used a rabbit monoclonal STAT6 antibody (1:100), which has not been reported by others, on formalin fixed, paraffin embedded whole sections and tissue microarray slides. Only nuclear staining of STAT6 was considered positive. Distribution of staining was scored as: 0 (no staining), 1+ (1-25%), 2+ (26-50%), 3+ (&gt;50%). Intensity was scored as weak, moderate or strong. Nuclear STAT6 staining was present in all SFT cases tested (54/54, sensitivity 100%), regardless of histology, anatomical site or CD34 status. The majority of cases showed 3+ and strong staining. All tested cases of cellular angiofibroma (0/9), myofibroblastoma (0/10), spindle cell lipoma (0/10), benign fibrous histiocytoma (0/13), dermatofibrosarcoma protruberans (0/9), low-grade fibromyxoid sarcoma (0/7), schwannoma (0/8), desmoid-type fibromatosis (0/8), monophasic synovial sarcoma (0/11), malignant peripheral nerve sheath tumour (0/7), and mesenchymal chondrosarcoma (0/7) were negative for STAT6 (specificity 100%). Our study further supports the utility of STAT6 immunohistochemistry as an adjunct in the diagnosis of solitary fibrous tumour."	"Apoptosis-associated tyrosine kinase 1 (AATK1) was initially identified as a protein that was dramatically overexpressed during growth arrest and apoptosis of 32Dcl myeloblastic leukemia cells. AATK is expressed in different regions of the brain and may have a role in normal nervous system development by its dual functions of enhancing apoptosis of mature granule cells and promoting terminal neuronal differentiation of developing neurons. However, its function in cancer has never been studied. Melanoma is a tumor composed of transformed cells within the melanocyte lineage deriving from the embryonic neural crest. It has been shown that developmental pathways in neural crest cells have a direct bearing on melanoma formation and human metastatic melanoma cells express a dedifferentiated phenotype. We found that the expression levels of AATK are lower in metastatic melanoma cell lines compared with primary melanoma cell lines and normal human melanocytes. We found that depletion of AATK mRNA in metastatic melanoma cell lines enhanced cell migration in cell line derived from metastatic melanomas. Overexpression of AATK inhibited cell proliferation, colony formation, and promoted apoptosis in melanoma cell lines derived from primary and metastatic melanomas. Signal transduction pathway analysis revealed that Src is involved in regulating AATK. Our results demonstrate for the first time that AATK inhibits cell proliferation, colony formation, and migration, and also promotes apoptosis in melanoma cells. "	"Gastrointestinal stromal tumors (GISTs) are the most common mesenchymal neoplasms of the gastrointestinal tract and should be differentiated from other mesenchymal tumors. They harbor specific activating mutations in the KIT or platelet-derived growth factor receptor α ( PDGFRA ) receptor tyrosine kinases, which makes them responsive to pharmacologic inhibitors, such as imatinib mesylate and sunitinib malate. To provide a comprehensive review of the pathogenesis of GIST and the underlying principles of targeted therapy, to review the salient histologic and immunohistochemical features that facilitate the distinction of GIST from other mesenchymal neoplasms of the gastrointestinal tract, and to present the prognostic parameters for risk stratification that guide clinical management. Review of the English literature through PubMed as well as personal experience. Photographs were taken from cases encountered at the Cleveland Clinic. The discovery of the KIT -GIST connection has not only improved the diagnostic accuracy of GISTs but also provided us with a better understanding of the histogenesis and molecular pathogenesis of these neoplasms."	"Integrating transcriptomic sequencing with conventional cytogenetics, we identified WWTR1 (WW domain-containing transcription regulator 1) (3q25) and CAMTA1 (calmodulin-binding transcription activator 1) (1p36) as the two genes involved in the t(1;3)(p36;q25) chromosomal translocation that is characteristic of epithelioid hemangioendothelioma (EHE), a vascular sarcoma. This WWTR1/CAMTA1 gene fusion is under the transcriptional control of the WWTR1 promoter and encodes a putative chimeric transcription factor that joins the amino terminus of WWTR1, a protein that is highly expressed in endothelial cells, in-frame to the carboxyl terminus of CAMTA1, a protein that is normally expressed only in brain. Thus, CAMTA1 expression is activated inappropriately through a promoter-switch mechanism. The gene fusion is present in virtually all EHEs tested but is absent from all other vascular neoplasms, demonstrating it to be a disease-defining genetic alteration. A sensitive and specific break-apart fluorescence in situ hybridization assay was also developed to detect the translocation and will assist in the evaluation of this diagnostically challenging neoplasm. The chimeric WWTR1/CAMTA1 transcription factor may represent a therapeutic target for EHE and offers the opportunity to shed light on the functions of two poorly characterized proteins."
+"Runge, Kurt"	"Inflammation and Immunity"	30498568	29784772	29544213	29018935	28292918	23874875	22289863	22094427	19409973	17803948	"DNA double-strand breaks (DSBs) activate the DNA damage checkpoint machinery to pause or halt the cell cycle. Telomeres, the specific DNA-protein complexes at linear eukaryotic chromosome ends, are capped DSBs that do not activate DNA damage checkpoints. This &quot;checkpoint privileged&quot; status of telomeres was previously investigated in the yeast Schizosaccharomyces pombelacking the major double-stranded telomere DNA binding protein Taz1. Telomeric DNA repeats in cells lacking Taz1 are 10 times longer than normal and contain single-stranded DNA regions. DNA damage checkpoint proteins associate with these damaged telomeres, but the DNA damage checkpoint is not activated. This severing of the DNA damage checkpoint signaling pathway was reported to stem from exclusion of histone H4 lysine 20 dimethylation (H4K20me2) from telomeric nucleosomes in both wild type cells and cells lacking Taz1. However, experiments to identify the mechanism of this exclusion failed, prompting our re-evaluation of H4K20me2 levels at telomeric chromatin. In this short report, we used an extensive series of controls to identify an antibody specific for the H4K20me2 modification and show that the level of this modification is the same at telomeres and internal loci in both wild type cells and those lacking Taz1. Consequently, telomeres must block activation of the DNA Damage Response by another mechanism that remains to be determined."	"Heterochromatin domains play important roles in chromosome biology, organismal development, and aging, including centromere function, mammalian female X chromosome inactivation, and senescence-associated heterochromatin foci. In the fission yeast Schizosaccharomyces pombe and metazoans, heterochromatin contains histone H3 that is dimethylated at lysine 9. While factors required for heterochromatin have been identified, the dynamics of heterochromatin formation are poorly understood. Telomeres convert adjacent chromatin into heterochromatin. To form a new heterochromatic region in S. pombe, an inducible DNA double-strand break (DSB) was engineered next to 48 bp of telomere repeats in euchromatin, which caused formation of a new telomere and the establishment and gradual spreading of a new heterochromatin domain. However, spreading was dynamic even after the telomere had reached its stable length, with reporter genes within the heterochromatin domain showing variegated expression. The system also revealed the presence of repeats located near the boundaries of euchromatin and heterochromatin that are oriented to allow the efficient healing of a euchromatic DSB to cap the chromosome end with a new telomere. Telomere formation in S. pombe therefore reveals novel aspects of heterochromatin dynamics and fail-safe mechanisms to repair subtelomeric breaks, with implications for similar processes in metazoan genomes."	"Telomeres, the ends of eukaryotic chromosomes, consist of repetitive DNA sequences and their bound proteins that protect the end from the DNA damage response. Short telomeres with fewer repeats are preferentially elongated by telomerase. Tel1, the yeast homolog of human ATM kinase, is preferentially recruited to short telomeres and Tel1 kinase activity is required for telomere elongation. Rif1, a telomere-binding protein, negatively regulates telomere length by forming a complex with two other telomere binding proteins, Rap1 and Rif2, to block telomerase recruitment. Rif1 has 14 SQ/TQ consensus phosphorylation sites for ATM kinases, including 6 in a SQ/TQ Cluster Domain (SCD) similar to other DNA damage response proteins. These 14 sites were analyzed as N-terminal, SCD and C-terminal domains. Mutating some sites to non-phosphorylatable residues increased telomere length in cells lacking Tel1 while a different set of phosphomimetic mutants increased telomere length in cells lacking Rif2, suggesting that Rif1 phosphorylation has both positive and negative effects on length regulation. While these mutations did not alter the sensitivity to DNA damaging agents, inducing telomere-specific damage by growing cells lacking YKU70 at high temperature revealed a role for the SCD. Mass spectrometry of Rif1 from wild type cells or those induced for telomere-specific DNA damage revealed increased phosphorylation in cells with telomere damage at an ATM consensus site in the SCD, S1351, and non-ATM sites S181 and S1637. A phosphomimetic rif1-S1351E mutation caused an increase in telomere length at synthetic telomeres but not natural telomeres. These results indicate that the Rif1 SCD can modulate Rif1 function. As all Rif1 orthologs have one or more SCD domains, these results for yeast Rif1 have implications for the regulation of Rif1 function in humans and other organisms."	"Chromosomal breaks can be healed by several repair processes, including one called non-homologous end-joining (NHEJ) where the two broken ends are ligated together with a loss of 0-5 bp of DNA. The protein requirements for NHEJ of cut DNA ends in the budding yeast Saccharomyces cerevisiae include its version of the Mre11-Rad50-Nbs1 (MRN) complex. In contrast, the fission yeast Schizosaccharomyces pombe and mammalian cells do not require MRN for this process. Recent work in S. pombe used transposon excision to generate breaks that were capped by DNA hairpins, which must be opened to produce ligatable ends. Repair in S. pombe was through an NHEJ reaction that now requires MRN. Surprisingly, wild type cells and MRN mutants that lack nuclease activity showed the same levels of excision. These genetic results suggest that MRN recruits an unknown hairpin-opening nuclease for this unusual NHEJ reaction."	"While the Mre11-Rad50-Nbs1 (MRN) complex has known roles in repair processes like homologous recombination and microhomology-mediated end-joining, its role in nonhomologous end-joining (NHEJ) is unclear as Saccharomyces cerevisiae, Schizosaccharomyces pombe, and mammals have different requirements for repairing cut DNA ends. Most double-strand breaks (DSBs) require nucleolytic processing prior to DNA ligation. Therefore, we studied repair using the Hermes transposon, whose excision leaves a DSB capped by hairpin ends similar to structures generated by palindromes and trinucleotide repeats. We generated single Hermes insertions using a novel S. pombe transient transfection system, and used Hermes excision to show a requirement for MRN in the NHEJ of nonligatable ends. NHEJ repair was indicated by the &gt;1000-fold decrease in excision in cells lacking Ku or DNA ligase 4. Most repaired excision sites had &lt;5 bp of sequence loss or mutation, characteristic for NHEJ and similar excision events in metazoans, and in contrast to the more extensive loss seen in S. cerevisiaeS. pombe NHEJ was reduced &gt;1000-fold in cells lacking each MRN subunit, and loss of MRN-associated Ctp1 caused a 30-fold reduction. An Mre11 dimer is thought to hold DNA ends together for repair, and Mre11 dimerization domain mutations reduced repair 300-fold. In contrast, a mre11 mutant defective in endonucleolytic activity, the same mutant lacking Ctp1, or the triple mutant also lacking the putative hairpin nuclease Pso2 showed wild-type levels of repair. Thus, MRN may act to recruit the hairpin opening activity that allows subsequent repair."	"Model organisms such as budding yeast, worms and flies have proven instrumental in the discovery of genetic determinants of aging, and the fission yeast Schizosaccharomyces pombe is a promising new system for these studies. We devised an approach to directly select for long-lived S. pombe mutants from a random DNA insertion library. Each insertion mutation bears a unique sequence tag called a bar code that allows one to determine the proportion of an individual mutant in a culture containing thousands of different mutants. Aging these mutants in culture allowed identification of a long-lived mutant bearing an insertion mutation in the cyclin gene clg1(+). Clg1p, like Pas1p, physically associates with the cyclin-dependent kinase Pef1p. We identified a third Pef1p cyclin, Psl1p, and found that only loss of Clg1p or Pef1p extended lifespan. Genetic and co-immunoprecipitation results indicate that Pef1p controls lifespan through the downstream protein kinase Cek1p. While Pef1p is conserved as Pho85p in Saccharomyces cerevisiae, and as cdk5 in humans, genome-wide searches for lifespan regulators in S. cerevisiae have never identified Pho85p. Thus, the S. pombe system can be used to identify novel, evolutionarily conserved lifespan extending mutations, and our results suggest a potential role for mammalian cdk5 as a lifespan regulator."	"In many organisms, telomere DNA consists of simple sequence repeat tracts that are required to protect the chromosome end. In the yeast Saccharomyces cerevisiae, tract maintenance requires two checkpoint kinases of the ATM family, Tel1p and Mec1p. Previous work has shown that Tel1p is recruited to functional telomeres with shorter repeat tracts to promote telomerase-mediated repeat addition, but the role of Mec1p is unknown. We found that Mec1p telomere association was detected as cells senesced when telomere function was compromised by extreme shortening due to either the loss of telomerase or the double-strand break binding protein Ku. Exonuclease I effects the removal of the 5' telomeric strand, and eliminating it prevented both senescence and Mec1p telomere association. Thus, in contrast to Tel1p, Mec1p associates with short, functionally compromised telomeres."	"Yeasts are powerful model systems to examine the evolutionarily conserved aspects of eukaryotic aging because they maintain many of the same core cellular signaling pathways and essential organelles as human cells. We constructed a strain of the budding yeast Saccharomyces cerevisiae that could monitor the distribution of proteins involved in heterochromatic silencing and aging, and isolated mutants that alter this distribution. The largest class of such mutants cause defects in mitochondrial function, and appear to cause changes in nuclear silencing separate from the well-known Rtg2p-dependent pathway that alters nuclear transcription in response to the loss of the mitochondrial genome. Mutants that inactivate the ATP2 gene, which encodes the ATPase subunit of the mitochondrial F(1)F(0)-ATPase, were isolated twice in our screen and identify a lifespan extending pathway in a gene that is conserved in both prokaryotes and eukaryotes. The budding yeast S. cerevisiae S. cerevisiae has been used with great success to identify other lifespan-extending pathways in screens using surrogate phenotypes such as stress resistance or silencing to identify random mutants, or in high throughput screens that utilize the deletion strain set resource. However, the direct selection of long-lived mutants from a pool of random mutants is more challenging. We have established a new chronological aging assay for the evolutionarily distant fission yeast Schizosaccharomyces pombe that recapitulates aspects of aging conserved in all eukaryotes. We have constructed a novel S. pombe S. pombe DNA insertion mutant bank, and used it to show that we can directly select for a long-lived mutant. The use of both the budding and fission yeast systems should continue to facilitate the identification and validation of lifespan extending pathways that are conserved in humans."	"We describe a new chronological lifespan (CLS) assay for the yeast Schizosaccharomyces pombe. Yeast CLS assays monitor the loss of cell viability in a culture over time, and this new assay shows a continuous decline in viability without detectable regrowth until all cells in the culture are dead. Thus, the survival curve is not altered by the generation of mutants that can grow during the experiments, and one can monitor the entire lifespan of a strain until the number of viable cells has decreased over 10(6)-fold. This CLS assay recapitulates the evolutionarily conserved features of lifespan shortening by over nutrition, lifespan extension by caloric restriction, increased stress resistance of calorically restricted cells and lifespan control by the AKT kinases. Both S. pombe AKT kinase orthologs regulate CLS: loss of sck1(+) extended lifespan in over nutrition conditions, loss of sck2(+) extended lifespan under both normal and over nutrition conditions, and loss of both genes showed that sck1(+) and sck2(+) control different longevity pathways. The longest-lived S. pombe cells showed the most efficient cell cycle exit, demonstrating that caloric restriction links these two processes. This new S. pombe CLS assay will provide a valuable tool for aging research."	"In many organisms, telomeric DNA consists of long tracts of short repeats. Shorter tracts are preferentially lengthened by telomerase, suggesting a conserved mechanism that recognizes and elongates short telomeres. Tel1p, an ATM family checkpoint kinase, plays an important role in telomere elongation, as cells lacking Tel1p have short telomeres and show reduced recruitment of telomerase components to telomeres. We show that Tel1p association increased as telomeres shortened in vivo in the presence or absence of telomerase and that Tel1p preferentially associated with the shortest telomeres. Tel1p association was independent of Tel1p kinase activity and enhanced by Mre11p. Tel1p overexpression simultaneously stimulated telomerase-mediated elongation and Tel1p association with all telomeres. Thus, Tel1p preferentially associates with the shortest telomeres and stimulates their elongation by telomerase."
+"Sakaguchi, Takuya"	"Inflammation and Immunity"	28720653	23744565	22222761	18951027	17008449	27396333	31016744	26929344	NA	NA	"The intrahepatic biliary network is a highly branched three-dimensional network lined by biliary epithelial cells, but how its branching patterns are precisely established is not clear. We designed a new computer-based algorithm that quantitatively computes the structural differences of the three-dimensional networks. Utilizing the algorithm, we showed that inhibition of Cyclin-dependent kinase 5 (Cdk5) led to reduced branching in the intrahepatic biliary network in zebrafish. Further, we identified a previously unappreciated downstream kinase cascade regulated by Cdk5. Pharmacological manipulations of this downstream kinase cascade produced a crowded branching defect in the intrahepatic biliary network and influenced actin dynamics in biliary epithelial cells. We generated larvae carrying a mutation in cdk5 regulatory subunit 1a (cdk5r1a), an essential activator of Cdk5. cdk5r1a mutant larvae show similar branching defects as those observed in Cdk5 inhibitor-treated larvae. A small-molecule compound that interferes with the downstream kinase cascade rescued the mutant phenotype. These results provide new insights into branching morphogenesis of the intrahepatic biliary network."	"Nonalcoholic fatty liver disease is the most common liver disease in both adults and children. The earliest stage of this disease is hepatic steatosis, in which triglycerides are deposited as cytoplasmic lipid droplets in hepatocytes. Through a forward genetic approach in zebrafish, we found that guanosine monophosphate (GMP) synthetase mutant larvae develop hepatic steatosis. We further demonstrate that activity of the small GTPase Rac1 and Rac1-mediated production of reactive oxygen species (ROS) are down-regulated in GMP synthetase mutant larvae. Inhibition of Rac1 activity or ROS production in wild-type larvae by small molecule inhibitors was sufficient to induce hepatic steatosis. More conclusively, treating larvae with hydrogen peroxide, a diffusible ROS that has been implicated as a signaling molecule, alleviated hepatic steatosis in both GMP synthetase mutant and Rac1 inhibitor-treated larvae, indicating that homeostatic production of ROS is required to prevent hepatic steatosis. We further found that ROS positively regulate the expression of the triglyceride hydrolase gene, which is responsible for the mobilization of stored triglycerides in hepatocytes. Consistently, inhibition of triglyceride hydrolase activity in wild-type larvae by a small molecule inhibitor was sufficient to induce hepatic steatosis. De novo GMP synthesis influences the activation of the small GTPase Rac1, which controls hepatic lipid dynamics through ROS-mediated regulation of triglyceride hydrolase expression in hepatocytes."	"Biliary epithelial cells line the intrahepatic biliary network, a complex three-dimensional network of conduits. The loss of differentiated biliary epithelial cells is the primary cause of many congenital liver diseases. We identified a zebrafish snapc4 (small nuclear RNA-activating complex polypeptide 4) mutant in which biliary epithelial cells initially differentiate but subsequently disappear. In these snapc4 mutant larvae, biliary epithelial cells undergo apoptosis, leading to degeneration of the intrahepatic biliary network. Consequently, in snapc4 mutant larvae, biliary transport of ingested fluorescent lipids to the gallbladder is blocked. Snapc4 is the largest subunit of a protein complex that regulates small nuclear RNA (snRNA) transcription. The snapc4(s445) mutation causes a truncation of the C-terminus, thereby deleting the domain responsible for a specific interaction with Snapc2, a vertebrate specific subunit of the SNAP complex. This mutation leads to a hypomorphic phenotype, as only a subset of snRNA transcripts are quantitatively altered in snapc4(s445) mutant larvae. snapc2 knockdown also disrupts the intrahepatic biliary network in a similar fashion as in snapc4(s445) mutant larvae. These data indicate that the physical interaction between Snapc2 and Snapc4 is important for the expression of a subset of snRNAs and biliary epithelial cell survival in zebrafish."	"Emerging evidence indicates that paracrine signals from endothelial cells play a role in tissue differentiation and organ formation [1-3]. Here, we identify a novel role for endothelial cells in modulating hepatocyte polarization during liver organogenesis. We find that in zebrafish, the apical domain of the hepatocytes predicts the location of the intrahepatic biliary network. The refinement of hepatocyte polarization coincides with the invasion of endothelial cells into the liver, and these endothelial cells migrate along the maturing basal surface of the hepatocytes. Using genetic, pharmacological, and transplantation experiments, we provide evidence that endothelial cells influence the polarization of the adjacent hepatocytes. This influence of endothelial cells on hepatocytes is mediated at least in part by the cell-surface protein Heart of glass and contributes to the establishment of coordinately aligned hepatocyte apical membranes and evenly spaced intrahepatic conduits."	"The roles of extra-embryonic tissues in early vertebrate body patterning have been extensively studied, yet we know little about their function during later developmental events. Here, we analyze the function of the zebrafish extra-embryonic yolk syncytial layer (YSL) specific transcription factor, Mtx1, and find that it plays an essential role in myocardial migration. Downregulating the function of Mtx1 in the YSL leads to cardia bifida, a phenotype in which the myocardial cells fail to migrate to the midline. Mtx1 in the extra-embryonic YSL appears to regulate the embryonic expression of fibronectin, a gene previously implicated in myocardial migration. We further show dosage-sensitive genetic interactions between mtx1 and fibronectin. Based on these data, we propose that the extra-embryonic YSL regulates myocardial migration, at least in part by influencing fibronectin expression and subsequent assembly of the extracellular matrix in embryonic tissues."	"Adipose triglyceride lipase (ATGL) and comparative gene identification 58 (CGI-58) are critical regulators of triacylglycerol (TAG) turnover. CGI-58 is thought to regulate TAG mobilization by stimulating the enzymatic activity of ATGL. However, it is not known whether this coactivation function of CGI-58 occurs in vivo. Moreover, the phenotype of human CGI-58 mutations suggests ATGL-independent functions. Through direct comparison of mice with single or double deficiency of CGI-58 and ATGL, we show here that CGI-58 knockdown causes hepatic steatosis in both the presence and absence of ATGL. CGI-58 also regulates hepatic diacylglycerol (DAG) and inflammation in an ATGL-independent manner. Interestingly, ATGL deficiency, but not CGI-58 deficiency, results in suppression of the hepatic and adipose de novo lipogenic program. Collectively, these findings show that CGI-58 regulates hepatic neutral lipid storage and inflammation in the genetic absence of ATGL, demonstrating that mechanisms driving TAG lipolysis in hepatocytes differ significantly from those in adipocytes."	"The growing burden of liver fibrosis and lack of effective antifibrotic therapies highlight the need for identification of pathways and complementary model systems of hepatic fibrosis. A rare, monogenic disorder in which children with mutations in mannose phosphate isomerase (MPI) develop liver fibrosis led us to explore the function of MPI and mannose metabolism in liver development and adult liver diseases. Herein, analyses of transcriptomic data from three human liver cohorts demonstrate that MPI gene expression is down-regulated proportionate to fibrosis in chronic liver diseases, including nonalcoholic fatty liver disease and hepatitis B virus. Depletion of MPI in zebrafish liver in vivo and in human hepatic stellate cell (HSC) lines in culture activates fibrotic responses, indicating that loss of MPI promotes HSC activation. We further demonstrate that mannose supplementation can attenuate HSC activation, leading to reduced fibrogenic activation in zebrafish, culture-activated HSCs, and in ethanol-activated HSCs. Conclusion: These data indicate the prospect that modulation of mannose metabolism pathways could reduce HSC activation and improve hepatic fibrosis."	"Mitochondria are the site of iron utilization, wherein imported iron is incorporated into heme or iron-sulfur clusters. Previously, we showed that a cytosolic siderophore, which resembles a bacterial siderophore, facilitates mitochondrial iron import in eukaryotes, including zebrafish. An evolutionarily conserved 3-hydroxy butyrate dehydrogenase, 3-hydroxy butyrate dehydrogenase 2 (Bdh2), catalyzes a rate-limiting step in the biogenesis of the eukaryotic siderophore. We found that inactivation of bdh2 in developing zebrafish embryo results in heme deficiency and delays erythroid maturation. The basis for this erythroid maturation defect is not known. Here we show that bdh2 inactivation results in mitochondrial dysfunction and triggers their degradation by mitophagy. Thus, mitochondria are prematurely lost in bdh2-inactivated erythrocytes. Interestingly, bdh2-inactivated erythroid cells also exhibit genomic alterations as indicated by transcriptome analysis. Reestablishment of bdh2 restores mitochondrial function, prevents premature mitochondrial degradation, promotes erythroid development, and reverses altered gene expression. Thus, mitochondrial communication with the nucleus is critical for erythroid development. "	NA	NA
+"Samuels, Ivy"	"Ophthalmic Research"	30543793	28965505	27367517	25429122	24106123	23101909	20484527	19186160	18596172	11500922	"In diabetes, there are two major physiological aberrations: (i) Loss of insulin signaling due to absence of insulin (type 1 diabetes) or insulin resistance (type 2 diabetes) and (ii) increased blood glucose levels. The retina has a high proclivity to damage following diabetes, and much of the pathology seen in diabetic retinopathy has been ascribed to hyperglycemia and downstream cascades activated by increased blood glucose. However, less attention has been focused on the direct role of insulin on retinal physiology, likely due to the fact that uptake of glucose in retinal cells is not insulin-dependent. The retinal pigment epithelium (RPE) is instrumental in maintaining the structural and functional integrity of the retina. Recent studies have suggested that RPE dysfunction is a precursor of, and contributes to, the development of diabetic retinopathy. To evaluate the role of insulin on RPE cell function directly, we generated a RPE specific insulin receptor (IR) knockout (RPEIRKO) mouse using the Cre-loxP system. Using this mouse, we sought to determine the impact of insulin-mediated signaling in the RPE on retinal function under physiological control conditions as well as in streptozotocin (STZ)-induced diabetes. We demonstrate that loss of RPE-specific IR expression resulted in lower a- and b-wave electroretinogram amplitudes in diabetic mice as compared to diabetic mice that expressed IR on the RPE. Interestingly, RPEIRKO mice did not exhibit significant differences in the amplitude of the RPE-dependent electroretinogram c-wave as compared to diabetic controls. However, loss of IR-mediated signaling in the RPE reduced levels of reactive oxygen species and the expression of pro-inflammatory cytokines in the retina of diabetic mice. These results imply that IR-mediated signaling in the RPE regulates photoreceptor function and may play a role in the generation of oxidative stress and inflammation in the retina in diabetes."	"Chronic low grade inflammation is considered to contribute to the development of experimental diabetic retinopathy (DR). We recently demonstrated that lack of CD40 in mice ameliorates the upregulation of inflammatory molecules in the diabetic retina and prevented capillary degeneration, a hallmark of experimental diabetic retinopathy. Herein, we investigated the contribution of CD40 to diabetes-induced reductions in retinal function via the electroretinogram (ERG) to determine if inflammation plays a role in the development of ERG defects associated with diabetes. We demonstrate that diabetic CD40-/- mice are not protected from reduction to the ERG b-wave despite failing to upregulate inflammatory molecules in the retina. Our data therefore supports the hypothesis that retinal dysfunction found in diabetics occurs independent of the induction of inflammatory processes."	"The electroretinogram c-wave is generated by the summation of the positive polarity hyperpolarization of the apical RPE membrane and a negative polarity slow PIII response of Müller glia cells. Therefore, the c-wave reduction noted in prior studies of mouse models of diabetes could reflect a reduction in the RPE component or an increase in slow PIII. The present study used a genetic approach to distinguish between these two alternatives. Nyxnob mice lack the ERG b-wave, revealing the early phase of slow PIII. To visualize changes in slow PIII due to diabetes, Nyxnob mice were given streptozotocin (STZ) injections to induce diabetes or received vehicle as a control. After 1, 2, and 4 weeks of sustained hyperglycemia (&gt;250 mg/dL), standard strobe flash ERG and dc-ERG testing were conducted. Histological analysis of the retina was performed. A reduced c-wave was noted at the 1 week time point, and persisted at later time points. In comparison, slow PIII amplitudes were unaffected after 1 week of hyperglycemia, but were significantly reduced in STZ mice at the 2-week time point. The decrease in amplitude occurred before any identifiable decrease to the a-wave. At the later time point, the a-wave became involved, although the slow PIII reductions were more pronounced. Morphological abnormalities in the RPE, including increased thickness and altered melanosome distribution, were identified in diabetic animals. Because the c-wave and slow PIII were both reduced, these results demonstrated that diabetes-induced reductions to the c-wave cannot be attributed to an early increase in the Müller glia-derived potassium conductance. Furthermore, because the a-wave, slow PIII and c-wave reductions were not equivalent, and varied in their onset, the reductions cannot reflect the same mechanism, such as a change in membrane resistance. The presence of small changes to RPE architecture indicate that the c-wave reductions present in diabetic mice likely represents a primary change in the RPE induced by hyperglycemia."	"In the diabetic retina, cellular changes in the retinal pigment epithelium (RPE) and neurons occur before vision loss or diabetic retinopathy can be identified clinically. The precise etiologies of retinal pathology are poorly defined, and it remains unclear if the onset and progression of cellular dysfunction differ between type 1 and type 2 diabetes. Three mouse models were used to compare the time course of RPE involvement in type 1 and type 2 diabetes. C57BL/6J mice injected with streptozotocin (STZ mice) modeled type 1 diabetes, whereas Lepr(db/db) mice on both BKS and B6.BKS background strains modeled type 2 diabetes. Electroretinogram (ERG)-based techniques were used to measure light-evoked responses of the RPE (direct current-coupled ERG, dc-ERG) and the neural retina (a-wave, b-wave). Following onset of hyperglycemia, a-wave and b-wave amplitudes of STZ mice declined progressively and by equivalent degrees. Components of the dc-ERG were also altered, with the largest reduction seen in the c-wave. Lepr(db/db) mice on the BKS strain (BKS.Lepr) displayed sustained hyperglycemia and a small increase in insulin, whereas Lepr(db/db) mice on the B6.BKS background (B6.BKS.Lepr) were transiently hyperglycemic and displayed severe hyperinsulinemia. BKS.Lepr mice exhibited sustained reductions in the dc-ERG c-wave, fast oscillation, and off response that were not attributable to reduced photoreceptor activity; B6.BKS.Lepr mice displayed transient reductions in the c-wave and fast oscillation that correlated with hyperglycemia and magnitude of photoreceptor activity. In summary, all mouse models displayed altered RPE function concomitant with the onset of hyperglycemia. These results suggest that RPE function is directly reduced by elevated blood glucose levels. That RPE dysfunction was reversible and mitigated in hyperinsulinemic B6.BKS.Lepr mice provides insight into the underlying mechanism. "	"To determine the molecular basis and the pathologic consequences of a chemically induced mutation in the translational vision research models 89 (tvrm89) mouse model with ERG defects. Mice from a G3 N-ethyl-N-nitrosourea mutagenesis program were screened for behavioral abnormalities and defects in retinal function by ERGs. The chromosomal position for the recessive tvrm89 mutation was determined in a genome-wide linkage analysis. The critical region was refined, and candidate genes were screened by direct sequencing. The tvrm89 phenotype was characterized by circling behavior, in vivo ocular imaging, detailed ERG-based studies of the retina and RPE, and histological analysis of these structures. The tvrm89 mutation was localized to a region on chromosome 9 containing Myo6. Sequencing identified a T→C point mutation in the codon for amino acid 480 in Myo6 that converts a leucine to a proline. This mutation does not confer a loss of protein expression levels; however, mice homozygous for the Myo6(tvrm89) mutation display an abnormal iris shape and attenuation of both strobe-flash ERGs and direct-current ERGs by 4 age weeks, neither of which is associated with photoreceptor loss. The tvrm89 phenotype mimics that reported for Myosin6-null mice, suggesting that the mutation confers a loss of myosin 6 protein function. The observation that homozygous Myo6(tvrm89) mice display reduced ERG a-wave and b-wave components, as well as components of the ERG attributed to RPE function, indicates that myosin 6 is necessary for the generation of proper responses of the outer retina to light."	"Streptozotocin (STZ)-induced diabetes is associated with reductions in the electrical response of the outer retina and retinal pigment epithelium (RPE) to light. Aldose reductase (AR) is the first enzyme required in the polyol-mediated metabolism of glucose, and AR inhibitors have been shown to improve diabetes-induced electroretinogram (ERG) defects. Here, we used control and AR -/- mice to determine if genetic inactivation of this enzyme likewise inhibits retinal electrophysiological defects observed in a mouse model of type 1 diabetes. STZ was used to induce hyperglycemia and type 1 diabetes. Diabetic and age-matched nondiabetic controls of each genotype were maintained for 22 weeks, after which ERGs were used to measure the light-evoked components of the RPE (dc-ERG) and the neural retina (a-wave, b-wave). In comparison to their nondiabetic controls, wildtype (WT) and AR -/- diabetic mice displayed significant decreases in the c-wave, fast oscillation, and off response components of the dc-ERG but not in the light peak response. Nondiabetic AR -/- mice displayed larger ERG component amplitudes than did nondiabetic WT mice; however, the amplitude of dc-ERG components in diabetic AR -/- animals were similar to WT diabetics. ERG a-wave amplitudes were not reduced in either diabetic group, but b-wave amplitudes were lower in WT and AR -/-diabetic mice. These findings demonstrate that the light-induced responses of the RPE and outer retina are disrupted in diabetic mice, but these defects are not due to photoreceptor dysfunction, nor are they ameliorated by deletion of AR. This latter finding suggests that benefits observed in other studies utilizing pharmacological inhibitors of AR might have been secondary to off-target effects of the drugs."	"Mutations in genes expressed in the retinal pigment epithelium (RPE) underlie a number of human inherited retinal disorders that manifest with photoreceptor degeneration. Because light-evoked responses of the RPE are generated secondary to rod photoreceptor activity, RPE response reductions observed in human patients or animal models may simply reflect decreased photoreceptor input. The purpose of this study was to define how the electrophysiological characteristics of the RPE change when the complement of rod photoreceptors is decreased. To measure RPE function, we used an electroretinogram (dc-ERG)-based technique. We studied a slowly progressive mouse model of photoreceptor degeneration (Prph(Rd2/+)), which was crossed onto a Nyx(nob) background to eliminate the b-wave and most other postreceptoral ERG components. On this background, Prph(Rd2/+) mice display characteristic reductions in a-wave amplitude, which parallel those in slow PIII amplitude and the loss of rod photoreceptors. At 2 and 4 mo of age, the amplitude of each dc-ERG component (c-wave, fast oscillation, light peak, and off response) was larger in Prph(Rd2/+) mice than predicted by rod photoreceptor activity (Rm(P3)) or anatomical analysis. At 4 mo of age, the RPE in Prph(Rd2/+) mice showed several structural abnormalities including vacuoles and swollen, hypertrophic cells. These data demonstrate that insights into RPE function can be gained despite a loss of photoreceptors and structural changes in RPE cells and, moreover, that RPE function can be evaluated in a broader range of mouse models of human retinal disease."	"The ERK MAP kinase signaling cascade plays critical roles in brain development, learning, memory, and cognition. It has recently been appreciated that mutation or deletion of elements within this signaling pathway leads to developmental syndromes in humans that are associated with impaired cognitive function and autism. Here, we review recent studies that provide insight into the biological roles of the ERKs in the brain that may underlie the cognitive deficits seen in these syndromes."	"The mitogen-activated protein (MAP) kinases ERK1 and ERK2 are critical intracellular signaling intermediates; however, little is known about their isoform-specific functions in vivo. We have examined the role of ERK2 in neural development by conditional inactivation of the murine mapk1/ERK2 gene in neural progenitor cells of the developing cortex. ERK MAP kinase (MAPK) activity in neural progenitor cells is required for neuronal cell fate determination. Loss of ERK2 resulted in a reduction in cortical thickness attributable to impaired proliferation of neural progenitors during the neurogenic period and the generation of fewer neurons. Mutant neural progenitor cells remained in an undifferentiated state until gliogenic stimuli induced their differentiation, resulting in the generation of more astrocytes. The mutant mice displayed profound deficits in associative learning. Importantly, we have identified patients with a 1 Mb microdeletion on chromosome 22q11.2 encompassing the MAPK1/ERK2 gene. These children, who have reduced ERK2 levels, exhibit microcephaly, impaired cognition, and developmental delay. These findings demonstrate an important role for ERK2 in cellular proliferation and differentiation during neural development as well as in cognition and memory formation."	"Atypical protein kinase Cs zeta and lambda/iota play a functional role in the regulation of NGF-induced differentiation and survival of pheochromocytoma, PC12 cells [Coleman and Wooten, 1994; Wooten et al., 1999]. Here we demonstrate an NGF-dependent interaction of aPKC with its binding protein, ZIP/p62. Although, ZIP/p62 was not a PKC-iota substrate, the formation of a ZIP/p62-aPKC complex in PC12 cells by NGF occurred post activation of PKC-iota and was regulated by the tyrosine phosphorylation state of aPKC. Furthermore, NGF-dependent localization of ZIP/p62 was observed within vesicular structures, identified as late endosomes by colocalization with a Rab7 antibody. Both ZIP/p62 as well as PKC-iota colocalized with Rab7 upon NGF stimulation. Inhibition of the tyrosine phosphorylation state of PKC-iota did not prevent movement of ZIP/p62 to the endosomal compartment. These observations indicate that the subcellular localization of ZIP/p62 does not depend entirely upon activation of aPKC itself. Of functional importance, transfection of an antisense p62 construct into PC12 cells significantly diminished NGF-induced neurite outgrowth. Collectively, these findings demonstrate that ZIP/p62 acts as a shuttling protein involved in routing activated aPKC to an endosomal compartment and is required for mediating NGF's biological properties."
+"Saunthararajah, Yogen"	"Translational Hematology and Oncology Research"	30936220	30231326	30015632	29225849	28880867	28758902	28726739	28561650	25977578	24879424	"Even in diffuse large B-cell lymphoma (DLBCL), a cancer of professional antigen-presenting cells, response rates to immune checkpoint blockade therapy have been limited. One reason for DLBCL immune evasion is epigenetic repression instead of activation of the antigen-presenting MHC-a dissection of mechanisms underlying this repression suggests an opening for restoring B-cell maturation and, along the way, MHC expression as a novel modality of cytoreducing DLBCL and simultaneously augmenting possibilities for immunotherapy.See related article by Ennishi et al., p. 546."	"Self-replication is the engine that drives all biologic evolution, including neoplastic evolution. A key oncotherapy challenge is to target this, the heart of malignancy, while sparing the normal self-replication mandatory for health and life. Self-replication can be demystified: it is activation of replication, the most ancient of cell programs, uncoupled from activation of lineage-differentiation, metazoan programs more recent in origin. The uncoupling can be physiologic, as in normal tissue stem cells, or pathologic, as in cancer. Neoplastic evolution selects to disengage replication from forward-differentiation where intrinsic replication rates are the highest, in committed progenitors that have division times measured in hours versus weeks for tissue stem cells, via partial loss of function in master transcription factors that activate terminal-differentiation programs (e.g., GATA4) or in the coactivators they use for this purpose (e.g., ARID1A). These loss-of-function mutations bias master transcription factor circuits, which normally regulate corepressor versus coactivator recruitment, toward corepressors (e.g., DNMT1) that repress rather than activate terminal-differentiation genes. Pharmacologic inhibition of the corepressors rebalances to coactivator function, activating lineage-differentiation genes that dominantly antagonize MYC (the master transcription factor coordinator of replication) to terminate malignant self-replication. Physiologic self-replication continues, because the master transcription factors in tissue stem cells activate stem cell, not terminal-differentiation, programs. Druggable corepressor proteins are thus the barriers between self-replicating cancer cells and the terminal-differentiation fates intended by their master transcription factor content. This final common pathway to oncogenic self-replication, being separate and distinct from the normal, offers the favorable therapeutic indices needed for clinical progress."	"Nucleophosmin (NPM1) is among the most frequently mutated genes in acute myeloid leukemia (AML). It is not known, however, how the resulting oncoprotein mutant NPM1 is leukemogenic. To reveal the cellular machinery in which NPM1 participates in myeloid cells, we analyzed the endogenous NPM1 protein interactome by mass spectrometry and discovered abundant amounts of the master transcription factor driver of monocyte lineage differentiation PU.1 (also known as SPI1). Mutant NPM1, which aberrantly accumulates in cytoplasm, dislocated PU.1 into cytoplasm with it. CEBPA and RUNX1, the master transcription factors that collaborate with PU.1 to activate granulomonocytic lineage fates, remained nuclear; but without PU.1, their coregulator interactions were toggled from coactivators to corepressors, repressing instead of activating more than 500 granulocyte and monocyte terminal differentiation genes. An inhibitor of nuclear export, selinexor, by locking mutant NPM1/PU.1 in the nucleus, activated terminal monocytic fates. Direct depletion of the corepressor DNA methyltransferase 1 (DNMT1) from the CEBPA/RUNX1 protein interactome using the clinical drug decitabine activated terminal granulocytic fates. Together, these noncytotoxic treatments extended survival by more than 160 days versus vehicle in a patient-derived xenotransplant model of NPM1/FLT3-mutated AML. In sum, mutant NPM1 represses monocyte and granulocyte terminal differentiation by disrupting PU.1/CEBPA/RUNX1 collaboration, a transforming action that can be reversed by pharmacodynamically directed dosing of clinical small molecules."	"Pyoderma gangrenosum (PG) is a morbid necrotizing neutrophilic dermatoses for which current treatments are inadequate. Here, we describe the use of a novel noncytotoxic regimen of the deoxycytidine analog decitabine to treat underlying myeloid malignancy causing PG, to thereby produce safe and effective resolution of extensive PG."	"Sickle cell disease (SCD), a congenital hemolytic anemia that exacts terrible global morbidity and mortality, is driven by polymerization of mutated sickle hemoglobin (HbS) in red blood cells (RBCs). Fetal hemoglobin (HbF) interferes with this polymerization, but HbF is epigenetically silenced from infancy onward by DNA methyltransferase 1 (DNMT1). To pharmacologically re-induce HbF by DNMT1 inhibition, this first-in-human clinical trial (NCT01685515) combined 2 small molecules-decitabine to deplete DNMT1 and tetrahydrouridine (THU) to inhibit cytidine deaminase (CDA), the enzyme that otherwise rapidly deaminates/inactivates decitabine, severely limiting its half-life, tissue distribution, and oral bioavailability. Oral decitabine doses, administered after oral THU 10 mg/kg, were escalated from a very low starting level (0.01, 0.02, 0.04, 0.08, or 0.16 mg/kg) to identify minimal doses active in depleting DNMT1 without cytotoxicity. Patients were SCD adults at risk of early death despite standard-of-care, randomized 3:2 to THU-decitabine versus placebo in 5 cohorts of 5 patients treated 2X/week for 8 weeks, with 4 weeks of follow-up. The primary endpoint was ≥ grade 3 non-hematologic toxicity. This endpoint was not triggered, and adverse events (AEs) were not significantly different in THU-decitabine-versus placebo-treated patients. At the decitabine 0.16 mg/kg dose, plasma concentrations peaked at approximately 50 nM (Cmax) and remained elevated for several hours. This dose decreased DNMT1 protein in peripheral blood mononuclear cells by &gt;75% and repetitive element CpG methylation by approximately 10%, and increased HbF by 4%-9% (P &lt; 0.001), doubling fetal hemoglobin-enriched red blood cells (F-cells) up to approximately 80% of total RBCs. Total hemoglobin increased by 1.2-1.9 g/dL (P = 0.01) as reticulocytes simultaneously decreased; that is, better quality and efficiency of HbF-enriched erythropoiesis elevated hemoglobin using fewer reticulocytes. Also indicating better RBC quality, biomarkers of hemolysis, thrombophilia, and inflammation (LDH, bilirubin, D-dimer, C-reactive protein [CRP]) improved. As expected with non-cytotoxic DNMT1-depletion, platelets increased and neutrophils concurrently decreased, but not to an extent requiring treatment holds. As an early phase study, limitations include small patient numbers at each dose level and narrow capacity to evaluate clinical benefits. Administration of oral THU-decitabine to patients with SCD was safe in this study and, by targeting DNMT1, upregulated HbF in RBCs. Further studies should investigate clinical benefits and potential harms not identified to date. ClinicalTrials.gov, NCT01685515."	"The most frequent chromosomal structural loss in hepatocellular carcinoma (HCC) is of the short arm of chromosome 8 (8p). Genes on the remaining homologous chromosome, however, are not recurrently mutated, and the identity of key 8p tumor-suppressor genes (TSG) is unknown. In this work, analysis of minimal commonly deleted 8p segments to identify candidate TSG implicated GATA4, a master transcription factor driver of hepatocyte epithelial lineage fate. In a murine model, liver-conditional deletion of 1 Gata4 allele to model the haploinsufficiency seen in HCC produced enlarged livers with a gene expression profile of persistent precursor proliferation and failed hepatocyte epithelial differentiation. HCC mimicked this gene expression profile, even in cases that were morphologically classified as well differentiated. HCC with intact chromosome 8p also featured GATA4 loss of function via GATA4 germline mutations that abrogated GATA4 interactions with a coactivator, MED12, or by inactivating mutations directly in GATA4 coactivators, including ARID1A. GATA4 reintroduction into GATA4-haploinsufficient HCC cells or ARID1A reintroduction into ARID1A-mutant/GATA4-intact HCC cells activated hundreds of hepatocyte genes and quenched the proliferative precursor program. Thus, disruption of GATA4-mediated transactivation in HCC suppresses hepatocyte epithelial differentiation to sustain replicative precursor phenotype."	"Tumor suppressor genes can be silenced genetically as well as epigenetically. One approach to reversing epigenetic suppression of tumor suppressor genes is to inhibit DNA methyl transferase. 5-aza-2',2'-diflurorodeoxycytidine (NUC013) is a novel DNA methyl transferase and ribonucleotide reductase inhibitor that is a more potent inhibitor of growth than decitabine in the NCI 60 cancer cell line panel. NUC013 is more active than decitabine against p53-null/mutant cancer cell lines (p = 0.027) but is even more so against p53 wild-type (WT) cell lines (p = 0.0025). The maximum tolerated dose in mice of NUC013 is greater than 120 mg/kg administered intravenously for three consecutive days a week for three weeks. With this regimen and a dose of 20 mg/kg in a human leukemia HL-60 (p53-null) NCr-nu/nu mouse xenograft model (n = 10/group), NUC013 demonstrated a survival benefit (saline median survival (MS) = 26.5 days, NUC013 MS = 32 days and hazard ratio (HR) = 0.26 (p = 0.032)). In a colon cancer LoVo (TP53 WT) xenograft, mice treated with decitabine at 5 mg/kg had worse survival than saline controls (decitabine MS = 31 days, saline MS &gt; 60 days and HR = 26.89 (p &lt; 0.0001)). At a dose of 20 mg/kg NUC013, mean tumor volume in the LoVo xenografts was lower than controls by 50.9% and at 40 mg/kg by 53.7% (both p &lt; 0.0001)."	"Searches for effective yet nontoxic oncotherapies are searches for exploitable differences between cancer and normal cells. In its core of cell division, cancer resembles normal life, coordinated by the master transcription factor MYC. Outside of this core, apoptosis and differentiation programs, which dominantly antagonize MYC to terminate cell division, necessarily differ between cancer and normal cells, as apoptosis is suppressed by biallelic inactivation of the master regulator of apoptosis, p53, or its cofactor p16/CDKN2A in approximately 80% of cancers. These genetic alterations impact therapy: conventional oncotherapy applies stress upstream of p53 to upregulate it and causes apoptosis (cytotoxicity)-a toxic, futile intent when it is absent or nonfunctional. Differentiation, on the other hand, cannot be completely suppressed because it is a continuum along which all cells exist. Neoplastic evolution stalls advances along this continuum at its most proliferative points-in lineage-committed progenitors that have division times measured in hours compared with weeks for tissue stem cells. This differentiation arrest is by mutations/deletions in differentiation-driving transcription factors or their coactivators that shift balances of gene-regulating protein complexes toward corepressors that repress instead of activate hundreds of terminal differentiation genes. That is, malignant proliferation without differentiation, also referred to as cancer &quot;stem&quot; cell self-renewal, hinges on druggable corepressors. Inhibiting these corepressors (e.g., DNMT1) releases p53-independent terminal differentiation in cancer stem cells but preserves self-renewal of normal stem cells that express stem cell transcription factors. Thus, epigenetic-differentiation therapies exploit a fundamental distinction between cancer and normal stem cell self-renewal and have a pathway of action downstream of genetic defects in cancer, affording favorable therapeutic indices needed for clinical progress."	NA	"Cancer chemotherapy is typically toxic. This problem could be addressed by using differences between cancer and normal cells for controlled delivery of drugs to cancer cells. One such difference is the ubiquitously elevated glutathione expression in cancer cells. We report a simple and versatile synthesis of water-soluble gold nanoparticles passivated with amine-containing molecules, which allow for controlled drug release via ligand exchange with bio-available glutathione. Taking methotrexate-passivated gold nanoparticles (Au:MTX) as an example, drug delivery and controlled release via glutathione-mediated ligand exchange was evaluated. Furthermore, the possibility of using Au:MTX to improve therapeutic index in acute myeloid leukemia (AML) models was examined in vitro and in vivo. Au:MTX exhibited cancer selectivity in vitro. Au:MTX had an elevated potency toward an AML cell line THP-1 in a dosage range of 1-5 nM, and therefore an enhanced delivery of drug, whereas normal hematopoietic stem/progenitor cell (HSPC) growth was minimally affected by Au:MTX and MTX treatments within the same range of dosage. In vivo efficacy and safety of Au:MTX was evaluated in a murine xenotransplant model of primary human AML. Au:MTX treatment, compared to control groups including MTX-only and Au nanoparticle-only treatments, produced better leukemia suppression without added toxicity, indicating an enhanced therapeutic index."
+"Scheraga, Rachel"	"Inflammation and Immunity"	28523001	26597012	27638903	26763235	25365224	25023647	23576879	NA	NA	NA	"Ion channels/pumps are essential regulators of organ homeostasis and disease. In the present review, we discuss the role of the mechanosensitive cation channel, transient receptor potential vanilloid 4 (TRPV4), in cytokine secretion and pulmonary inflammatory diseases such as asthma, cystic fibrosis (CF), and acute lung injury/acute respiratory distress syndrome (ARDS). TRPV4 has been shown to play a role in lung diseases associated with lung parenchymal stretch or stiffness. TRPV4 indirectly mediates hypotonicity-induced smooth muscle contraction and airway remodeling in asthma. Further, the literature suggests that in CF TRPV4 may improve ciliary beat frequency enhancing mucociliary clearance, while at the same time increasing pro-inflammatory cytokine secretion/lung tissue injury. Currently it is understood that the role of TRPV4 in immune cell function and associated lung tissue injury/ARDS may depend on the injury stimulus. Uncovering the downstream mechanisms of TRPV4 action in pulmonary inflammatory diseases is likely important to understanding disease pathogenesis and may lead to novel therapeutics."	"Macrophage phagocytosis of particles and pathogens is an essential aspect of innate host defense. Phagocytic function requires cytoskeletal rearrangements that depend on the interaction between macrophage surface receptors, particulates/pathogens, and the extracellular matrix. In the present study we determine the role of a mechanosensitive ion channel, transient receptor potential vanilloid 4 (TRPV4), in integrating the LPS and matrix stiffness signals to control macrophage phenotypic change for host defense and resolution from lung injury. We demonstrate that active TRPV4 mediates LPS-stimulated murine macrophage phagocytosis of nonopsonized particles (Escherichia coli) in vitro and opsonized particles (IgG-coated latex beads) in vitro and in vivo in intact mice. Intriguingly, matrix stiffness in the range seen in inflamed or fibrotic lung is required to sensitize the TRPV4 channel to mediate the LPS-induced increment in macrophage phagocytosis. Furthermore, TRPV4 is required for the LPS induction of anti-inflammatory/proresolution cytokines. These findings suggest that signaling through TRPV4, triggered by changes in extracellular matrix stiffness, cooperates with LPS-induced signals to mediate macrophage phagocytic function and lung injury resolution. These mechanisms are likely to be important in regulating macrophage function in the context of pulmonary infection and fibrosis. "	"We previously showed that coincident exposure to heat shock (HS; 42°C for 2 h) and TNF-α synergistically induces apoptosis in mouse lung epithelium. We extended this work by analyzing HS effects on human lung epithelial responses to clinically relevant injury. Cotreatment with TNF-α and HS induced little caspase-3 and poly(ADP-ribose) polymerase cleavage in human small airway epithelial cells, A549 cells, and BEAS2B cells. Scratch wound closure rates almost doubled when A549 and BEAS2B cells and air-liquid interface cultures of human bronchial epithelial cells were heat shocked immediately after wounding. Microarray, qRT-PCR, and immunoblotting showed fibroblast growth factor 1 (FGF1) to be synergistically induced by HS and wounding. Enhanced FGF1 expression in HS/wounded A549 was blocked by inhibitors of p38 MAPK (SB203580) or HS factor (HSF)-1 (KNK-437) and in HSF1 knockout BEAS2B cells. PCR demonstrated FGF1 to be expressed from the two most distal promoters in wounded/HS cells. Wound closure in HS A549 and BEAS2B cells was reduced by FGF receptor-1/3 inhibition (SU-5402) or FGF1 depletion. Exogenous FGF1 accelerated A549 wound closure in the absence but not presence of HS. In the presence of exogenous FGF1, HS slowed wound closure, suggesting that it increases FGF1 expression but impairs FGF1-stimulated wound closure. Frozen sections from normal and idiopathic pulmonary fibrosis (IPF) lung were analyzed for FGF1 and HSP70 by immunofluorescence confocal microscopy and qRT-PCR. FGF1 and HSP70 mRNA levels were 7.5- and 5.9-fold higher in IPF than normal lung, and the proteins colocalized to fibroblastic foci in IPF lung. We conclude that HS signaling may have an important impact on gene expression contributing to lung injury, healing, and fibrosis."	"Pro-fibrotic mesenchymal cells are known to be the key effector cells of fibroproliferative disease, but the specific matrix signals and the induced cellular responses that drive the fibrogenic phenotype remain to be elucidated. The key mediators of the fibroblast fibrogenic phenotype were characterized using a novel assay system that measures fibroblast behavior in response to actual normal and fibrotic lung tissue. Using this system, we demonstrate that normal lung promotes fibroblast motility and polarization, while fibrotic lung immobilizes the fibroblast and promotes myofibroblast differentiation. These context-specific phenotypes are surprisingly both mediated by myosin II. The role of myosin II is supported by the observation of an increase in myosin phosphorylation and a change in intracellular distribution in fibroblasts on fibrotic lung, as compared with normal lung. Moreover, loss of myosin II activity has opposing effects on protrusive activity in fibroblasts on normal and fibrotic lung. Loss of myosin II also selectively inhibits myofibroblast differentiation in fibroblasts on fibrotic lung. Importantly, these findings are recapitulated by varying the matrix stiffness of polyacrylamide gels in the range of normal and fibrotic lung tissue. Comparison of the effects of myosin inhibition on lung tissue with that of polyacrylamide gels suggests that matrix fiber organization drives the fibroblast phenotype under conditions of normal/soft lung, while matrix stiffness drives the phenotype under conditions of fibrotic/stiff lung. This work defines novel roles for myosin II as a key regulatory effector molecule of the pro-fibrotic phenotype, in response to biophysical properties of the matrix. "	"Idiopathic pulmonary fibrosis (IPF) is a fatal fibrotic lung disorder with no effective medical treatments available. The generation of myofibroblasts, which are critical for fibrogenesis, requires both a mechanical signal and activated TGF-β; however, it is not clear how fibroblasts sense and transmit the mechanical signal(s) that promote differentiation into myofibroblasts. As transient receptor potential vanilloid 4 (TRPV4) channels are activated in response to changes in plasma membrane stretch/matrix stiffness, we investigated whether TRPV4 contributes to generation of myofibroblasts and/or experimental lung fibrosis. We determined that TRPV4 activity is upregulated in lung fibroblasts derived from patients with IPF. Moreover, TRPV4-deficient mice were protected from fibrosis. Furthermore, genetic ablation or pharmacological inhibition of TRPV4 function abrogated myofibroblast differentiation, which was restored by TRPV4 reintroduction. TRPV4 channel activity was elevated when cells were plated on matrices of increasing stiffness or on fibrotic lung tissue, and matrix stiffness-dependent myofibroblast differentiation was reduced in response to TRVP4 inhibition. TRPV4 activity modulated TGF-β1-dependent actions in a SMAD-independent manner, enhanced actomyosin remodeling, and increased nuclear translocation of the α-SMA transcription coactivator (MRTF-A). Together, these data indicate that TRPV4 activity mediates pulmonary fibrogenesis and suggest that manipulation of TRPV4 channel activity has potential as a therapeutic approach for fibrotic diseases. "	"The stress-activated transcription factor, heat shock factor-1 (HSF1), regulates many genes including cytoprotective heat shock proteins (HSPs). We hypothesized that polymorphisms in HSF1 may alter the level or function of HSF1 protein accounting for interindividual viability in disease susceptibility or prognosis. We searched for exomic variants in HSF1 by querying human genome databases and directly sequencing DNA from 80 anonymous genomic DNA samples. Overall, HSF1 sequence was highly conserved, with no common variations. We found 31 validated deviations from a reference sequence in the dbSNP database and an additional 5 novel variants by sequencing, with allele frequencies that were 0.06 or less. Of these 36, 2 were in 5'-untranslated region (5'UTR), 10 in 3'UTR, and 24 in the coding region. The potential effects of 5'UTR on secondary structure, protein structure/function, and 3'UTR targets of microRNAs were analyzed using RNAFold, PolyPhen-2, SIFT, and MicroSNiper. One of the 5'UTR variants was predicted to strengthen secondary structure. Eight of 3'UTR variants were predicted to modify microRNA target sequences. Eight of the coding region variants were predicted to modify HSF1 structure/function. Reducing HSF1 levels in A549 cells using short hairpin RNA (shRNA) increased sensitivity to heat-induced killing demonstrating the impact that genetic variants that reduce HSF1 levels might have. Using the pmirGLO expression system, we found that the wild-type HSF1 3'UTR suppressed translation of a firefly luciferase reporter plasmid by 65 %. Introducing two of four 3'UTR single nucleotide polymorphisms (SNPs) increased HSF1 3'UTR translational suppression by 27-44 % compared with the wild-type HSF1 3'UTR sequence while a third SNP reduced suppression by 25 %. HSF1 variants may alter HSF1 protein levels or function with potential effects on cell functions, including sensitivity to stress. "	"Idiopathic pulmonary fibrosis (IPF) is a fatal lung disease with no known effective therapy. It is often assumed, but has not been objectively evaluated, that pulmonary inflammation subsides as IPF progresses. The goal of this work was to assess changes in the degree of inflammatory cell infiltration, particularly lymphocytic infiltration, over the duration of illness in IPF. Sixteen patients with confirmed IPF were identified in patients whom surgical lung biopsy (SLB) was performed in early disease, and in patients whom lung transplantation was subsequently performed in end stage disease. A numerical scoring system was used to histologically quantify the amount of fibrosis, honeycomb change, fibroblastic foci, and lymphocyte aggregates in each SLB and lung explant tissue sample. Analyses of quantitative scores were performed by comparing paired, matched samples of SLB to lung explant tissue. Median time [1st, 3rd quartiles] from SLB to lung transplantation was 24 [15, 29] months. Histologic fibrosis and honeycomb change were more pronounced in the explant samples compared with SLB (P &lt; 0.001 and P &lt; 0.01, respectively), and most notably, higher numbers of lymphocyte aggregates were observed in the explant samples compared to SLB (P = 0.013). Immunohistochemical analyses revealed abundant CD3+ (T lymphocyte) and CD20+ (B lymphocyte) cells, but not CD68+ (macrophage) cells, within the aggregates. Contrary to the frequent assumption, lymphocyte aggregates were present in greater numbers in advanced disease (explant tissue) compared to early disease (surgical lung biopsy). This finding suggests that active cellular inflammation continues in IPF even in severe end stage disease."	NA	NA	NA
+"Schold, Jesse"	"Quantitative Health Sciences"	31090645	31027881	30973413	30019832	30006419	29945482	29805957	29525324	29316241	28611123	"Organ allocation is a highly complex process with significant impact on outcomes of donor organs and end-stage organ disease patients. Policies governing allocation must incorporate numerous factors to meet stated objective. There have been significant alterations and ongoing discussion about changes in allocation policy for all solid organs in the United States. As with any policy change, rigorous evaluation of the impact of changes is important. This manuscript discusses metrics to consider to evaluate the impact of organ allocation policy that may be monitored on an ongoing basis including examples of research evaluating current policies. Potential metrics to evaluate allocation policy include the effectiveness, efficiency, equity, costs, donor rates, and transparency associated with the system. Ultimately, policies will often need to adapt to secular changes in donor and patient characteristics, clinical and technological advances, and overarching healthcare polices. Providing objective empirical evaluation of the impact of policies is a critical component for assessing quality of the allocation system and informing the effect of changes. The foundation of organ transplantation is built upon public trust and the dependence on the gift of donor organs, as such the importance of the most appropriate organ allocation policies cannot be overstated."	"Quality metrics have a long history in the field of kidney transplantation. These metrics are highly visible, with significant ramifications to transplantation centers based on their use in regulatory review and other stakeholders. In this perspective, we review the history of quality metrics in this field, discuss the perceptions and empirical evidence evaluating the impact of metrics on care delivery, and summarize the current landscape of quality oversight. Based on the research findings and opinions of the transplantation community, we suggest that significant reforms are needed for the evaluation of quality in the field based on more appropriately aligning metrics with optimizing patient outcomes. Moreover, there are vast potential uses of the current data that should be emphasized in a learning environment rather than a highly punitive system. In our view, these reforms would enhance care delivery, improve patient care, and better align incentives for providers of care that treat transplantation patients."	"Over recent decades, numerous clinical advances and policy changes have affected outcomes for candidates of kidney transplantation in the United States. We examined the national Scientific Registry for Transplant Recipients for adult (18+) solitary kidney transplant candidates placed on the waiting list for primary listing from 2001 to 2015. We evaluated rates of mortality, transplantation, and waitlist removal. Among 340 115 candidates there were significant declines in mortality (52 deaths/1000 patient years in 2001-04 vs 38 deaths/1000 patient years in 2012-15) and transplant rates (304 transplants/1000 patient years in 2001-04 vs 212 transplants/1000 patient years in 2012-15) and increases in waitlist removals (15 removals/1000 patient years in 2001-04 vs 25/1000 patient years in 2012-15) within the first year after listing. At 5 years an estimated 37% of candidates listed in 2012-15 were alive without transplant as compared to 22% in 2001-04. Declines in mortality over time were significantly more pronounced among African Americans, candidates with longer dialysis duration, and those with diabetes (P &lt; .001). Cumulatively, results indicate dramatic changes in prognoses for adult kidney transplant candidates, likely impacted by selection criteria, donor availability, regulatory oversight, and clinical care. These trends are important considerations for prospective policy development and research, clinical and patient decision-making, and evaluating the impact on access to care."	"The process for evaluating kidney transplant candidates and applicable centers is distinct for patients with Veterans Administration (VA) coverage. We compared transplant rates between candidates on the kidney waiting list with VA coverage and those with other primary insurance. Using the Scientific Registry of Transplant Recipients database, we obtained data for all adult patients in the United States listed for a primary solitary kidney transplant between January 2004 and August 2016. Of 302,457 patients analyzed, 3663 had VA primary insurance coverage. VA patients had a much greater median distance to their transplant center than those with other insurance had (282 versus 22 miles). In an adjusted Cox model, compared with private pay and Medicare patients, VA patients had a hazard ratio (95% confidence interval) for time to transplant of 0.72 (0.68 to 0.76) and 0.85 (0.81 to 0.90), respectively, and lower rates for living and deceased donor transplants. In a model comparing VA transplant rates with rates from four local non-VA competing centers in the same donor service areas, lower transplant rates for VA patients than for privately insured patients persisted (hazard ratio, 0.72; 95% confidence interval, 0.65 to 0.79) despite similar adjusted mortality rates. Transplant rates for VA patients were similar to those of Medicare patients locally, although Medicare patients were more likely to die or be delisted after waitlist placement. After successful listing, VA kidney transplant candidates appear to have persistent barriers to transplant. Further contemporary analyses are needed to account for variables that contribute to such differential transplant rates."	"Recipient travel distance may be an unrecognized burden in lung transplantation. Retrospective single-center cohort study of all adult (≥18 years) first-time lung-only transplants from January 1, 2010, until February 28, 2017. Recipient distance to transplant center was calculated using the linear distance from the recipient's home zip code to the Cleveland Clinic in Cleveland, Ohio. 569 recipients met inclusion criteria. Posttransplant graft survival was 85%, 88%, 91%, and 91% at 1 year and 49%, 52%, 57%, and 56% at 5 years posttransplant for recipient travel distances of ≤50, &gt;50 to ≤250, &gt;250 to ≤500, and &gt;500 miles, respectively ( P = .10). We found no significant relationship between recipient travel distance and posttransplant graft survival. In carefully selected recipients, travel distance is not a significant barrier to successful posttransplant outcomes which may be important for patient decision-making and donor allocation policy. These data should be validated in a national cohort."	"This paper describes the background, rationale, and design of an NIH-funded, single-center study to test the impact of offering reimbursement for donor lost wages incurred during the post-nephrectomy recovery period on the live donor kidney transplant (LDKT) rate in newly evaluated kidney transplant candidates, to examine whether offering reimbursement for donor lost wages reduces racial disparity in LDKT rates, and to determine whether higher reimbursement amounts lead to higher LDKT rates. LDKT is the optimal treatment for renal failure. However, living kidney donation has declined in the past decade, particularly among men, younger adults, blacks, and low-income adults. There is evidence that donation-related costs may deter both transplant candidates and potential donors from considering LDKT. Lost wages is a major source of financial loss for some living donors and, unlike travel and lodging expenses, is not reimbursed by financial assistance programs. The study addresses the transplant community's call to reduce the financial burden of living donation and examine its impact on LDKT rates. Findings have the potential to influence policy, clinical practice, LDKT access, and income-related and racial disparities in LDKT and living donation."	"The effects of underlying noncodified risks are unclear on the prognosis of patients with end-stage renal disease (ESRD). We aimed to evaluate the association of residential area life expectancy with outcomes and processes of care for patients with ESRD in the United States. Retrospective cohort study. Adult patients with incident ESRD between 2006 and 2013 recorded in the US Renal Data System (n=606,046). The primary exposure was life expectancy in the patient's residential county estimated by the Institute for Health Metrics and Evaluation. Death, placement on the kidney transplant wait list, living and deceased donor kidney transplantation, and posttransplantation graft loss. Median life expectancies of patients' residences were 75.6 (males) and 80.4 years (females). Compared to the highest life expectancy quintile and adjusted for demographic factors, disease cause, and multiple comorbid conditions, the lowest quintile had adjusted HRs for mortality of 1.20 (95% CI, 1.18-1.22); placement onto the waiting list, 0.68 (95% CI, 0.67-0.70); living donor transplantation, 0.53 (95% CI, 0.51-0.56); posttransplantation graft loss, 1.35 (95% CI, 1.27-1.43); and posttransplantation mortality, 1.29 (95% CI, 1.19-1.39). Patients living in areas with lower life expectancy were less likely to be informed about transplantation, be under the care of a nephrologist, or receive an arteriovenous fistula as the initial dialysis access. Results remained consistent with additional adjustment for zip code-level median income, population size, and urban-rural locality. Potential residual confounding and attribution of effects to individuals based on residential area-level data. Residential area life expectancy, a proxy for socioeconomic, environmental, genetic, and behavioral factors, was independently associated with mortality and process-of-care measures for patients with ESRD. These results emphasize the underlying effect on health outcomes of the environment in which patients live, independent of patient-level factors. These findings may have implications for provider assessments."	"Outcomes of patients receiving solid organ transplants in the United States are systematically aggregated into bi-annual Program-Specific Reports (PSRs) detailing risk-adjusted survival by transplant center. Recently, the Scientific Registry of Transplant Recipients (SRTR) issued 5-tier ratings evaluating centers based on risk-adjusted 1-year graft survival. Our primary aim was to examine the reliability of 5-tier ratings over time. Using 10 consecutive PSRs for adult kidney transplant centers from June 2012 to December 2016 (n = 208), we applied 5-tier ratings to center outcomes and evaluated ratings over time. From the baseline period (June 2012), 47% of centers had at least a 1-unit tier change within 6 months, 66% by 1 year, and 94% by 3 years. Similarly, 46% of centers had at least a 2-unit tier change by 3 years. In comparison, 15% of centers had a change in the traditional 3-tier rating at 3 years. The 5-tier ratings at 4 years had minimal association with baseline rating (Kappa 0.07, 95% confidence interval [CI] -0.002 to 0.158). Centers had a median of 3 different 5-tier ratings over the period (q1 = 2, q3 = 4). Findings were consistent for center volume, transplant rate, and baseline 5-tier rating. Cumulatively, results suggest that 5-tier ratings are highly volatile, limiting their utility for informing potential stakeholders, particularly transplant candidates given expected waiting times between wait listing and transplantation."	"There are sex differences in mortality while awaiting heart transplantation, and the reason remains unclear. We included all adults in the Scientific Registry of Transplant Recipients placed on the heart transplant active waitlist from 2004 to 2015. The primary end point was all-cause mortality. Multivariable Cox proportional hazards models were performed to evaluate survival by United Network for Organ Sharing (UNOS) status at the time of listing. Random survival forest was used to identify sex interactions for the competing risk of death and transplantation. There were 33 069 patients (25% women) awaiting heart transplantation. This cohort included 7681 UNOS status 1A (26% women), 13 027 UNOS status 1B (25% women), and 12 361 UNOS status 2 (26% women). During a median follow-up of 4.3 months, 1351 women and 4052 men died. After adjusting for &gt;20 risk factors, female sex was associated with a significant risk of death among UNOS status 1A (adjusted hazard ratio, 1.14; 95% confidence interval, 1.01-1.29) and UNOS status 1B (adjusted hazard ratio, 1.17; 95% confidence interval, 1.05-1.30). In contrast, female sex was significantly protective for time to death among UNOS status 2 (adjusted hazard ratio, 0.85; 95% confidence interval, 0.76-0.95). Sex differences in probability of transplantation were present for every UNOS status, and &gt;20 sex interactions were identified for mortality and transplantation. When stratified by initial UNOS status, women had a higher mortality than men as UNOS status 1 and a lower mortality as UNOS status 2. With &gt;20 sex interactions for mortality and transplantation, further evaluation is warranted to form a more equitable allocation system."	NA
+"Schumaker-Bass, Sarah"	"Cardiovascular and Metabolic Sciences"	30259192	30175279	28328744	27016525	25739765	24508725	24839449	20156596	19443837	17673464	"Proinflammatory cytokines are consistently elevated in congestive heart failure. In the current review, we provide an overview on the current understanding of how tumor necrosis factor-α (TNFα), a key proinflammatory cytokine, potentiates heart failure by overwhelming the anti-inflammatory responses disrupting the homeostasis. Studies have shown co-relationship between severity of heart failure and levels of the proinflammatory cytokine TNFα and one of its secondary mediators interleukin-6 (IL-6), suggesting their potential as biomarkers. Recent efforts have focused on understanding the mechanisms of how proinflammatory cytokines contribute towards cardiac dysfunction and failure. In addition, how unchecked proinflammatory cytokines and their cross-talk with sympathetic system overrides the anti-inflammatory response underlying failure. The review offers insights on how TNFα and IL-6 contribute to cardiac dysfunction and failure. Furthermore, this provides a forum to begin the discussion on the cross-talk between sympathetic drive and proinflammatory cytokines and its determinant role in deleterious outcomes."	"The new horizon for cardiac therapy may lie beneath the surface, with the downstream mediators of G protein-coupled receptor (GPCR) activity. Targeted approaches have shown that receptor activation may be biased toward signaling through G proteins or through GPCR kinases (GRKs) and β-arrestins, with divergent functional outcomes. In addition to these canonical roles, numerous noncanonical activities of GRKs and β-arrestins have been demonstrated to modulate GPCR signaling at all levels of receptor activation and regulation. Further, research continues to identify novel GRK/effector and β-arrestin/effector complexes with distinct impacts on cardiac function in the normal heart and the diseased heart. Coupled with the identification of once orphan receptors and endogenous ligands with beneficial cardiovascular effects, this expands the repertoire of GPCR targets. Together, this research highlights the potential for focused therapeutic activation of beneficial pathways, with simultaneous exclusion or inhibition of detrimental signaling, and represents a new wave of therapeutic development."	"G protein-coupled receptor kinases (GRKs) are classically known for their role in regulating the activity of the largest known class of membrane receptors, which influence diverse biological processes in every cell type in the human body. As researchers have tried to uncover how this family of kinases, containing only 7 members, achieves selective and coordinated control of receptors, they have uncovered a growing number of noncanonical activities for these kinases. These activities include phosphorylation of nonreceptor targets and kinase-independent molecular interactions. In particular, GRK2, GRK3, and GRK5 are the predominant members expressed in the heart. Their canonical and noncanonical actions within cardiac and other tissues have significant implications for cardiovascular function in healthy animals and for the development and progression of disease. This review summarizes what is currently known regarding the activity of these kinases, and particularly the role of GRK2 and GRK5 in the molecular alterations that occur during heart failure. This review further highlights areas of GRK regulation that remain poorly understood and how they may represent novel targets for therapeutic development."	"G protein-coupled receptor (GPCR) kinases (GRKs) play a critical role in cardiac function by regulating GPCR activity. GRK2 suppresses GPCR signaling by phosphorylating and desensitizing active GPCRs, and through protein-protein interactions that uncouple GPCRs from their downstream effectors. Several GRK2 interacting partners, including Gα(q), promote maladaptive cardiac hypertrophy, which leads to heart failure, a leading cause of mortality worldwide. The regulator of G protein signaling (RGS) domain of GRK2 interacts with and inhibits Gα(q) in vitro. We generated TgβARKrgs mice with cardiac-specific expression of the RGS domain of GRK2 and subjected these mice to pressure overload to trigger adaptive changes that lead to heart failure. Unlike their nontransgenic littermate controls, the TgβARKrgs mice exhibited less hypertrophy as indicated by reduced left ventricular wall thickness, decreased expression of genes linked to cardiac hypertrophy, and less adverse structural remodeling. The βARKrgs peptide, but not endogenous GRK2, interacted with Gα(q) and interfered with signaling through this G protein. These data support the development of GRK2-based therapeutic approaches to prevent hypertrophy and heart failure."	"Heart failure (HF) is a disease of epidemic proportion and is associated with exceedingly high health care costs. G protein (heterotrimeric guanine nucleotide-binding protein)-coupled receptor (GPCR) kinase 2 (GRK2), which is up-regulated in the failing human heart, appears to play a critical role in HF progression in part because enhanced GRK2 activity promotes dysfunctional adrenergic signaling and myocyte death. Recently, we found that the selective serotonin reuptake inhibitor (SSRI) paroxetine could inhibit GRK2 with selectivity over other GRKs. Wild-type mice were treated for 4 weeks with paroxetine starting at 2 weeks after myocardial infarction (MI). These mice were compared with mice treated with fluoxetine, which does not inhibit GRK2, to control for the SSRI effects of paroxetine. All mice exhibited similar left ventricular (LV) dysfunction before treatment; however, although the control and fluoxetine groups had continued degradation of function, the paroxetine group had considerably improved LV function and structure, and several hallmarks of HF were either inhibited or reversed. Use of genetically engineered mice indicated that paroxetine was working through GRK2 inhibition. The beneficial effects of paroxetine were markedly greater than those of β-blocker therapy, a current standard of care in human HF. These data demonstrate that paroxetine-mediated inhibition of GRK2 improves cardiac function after MI and represents a potential repurposing of this drug, as well as a starting point for innovative small-molecule GRK2 inhibitor development. "	"Kv1.5 (KCNA5) mediates the ultra-rapid delayed rectifier current that controls atrial action potential duration. Given its atrial-specific expression and alterations in human atrial fibrillation, Kv1.5 has emerged as a promising target for the treatment of atrial fibrillation. A necessary step in the development of novel agents that selectively modulate trafficking pathways is the identification of the cellular machinery controlling Kv1.5 surface density, of which little is yet known. To investigate the role of the unconventional myosin-V (MYO5A and MYO5B) motors in determining the cell surface density of Kv1.5. Western blot analysis showed MYO5A and MYO5B expression in the heart, whereas disruption of endogenous motors selectively reduced IKur current in adult rat cardiomyocytes. Dominant negative constructs and short hairpin RNA silencing demonstrated a role for MYO5A and MYO5B in the surface trafficking of Kv1.5 and connexin-43 but not potassium voltage-gated channel, subfamily H (eag-related), member 2 (KCNH2). Live-cell imaging of Kv1.5-GFP and retrospective labeling of phalloidin demonstrated motility of Kv1.5 vesicles on actin tracts. MYO5A participated in anterograde trafficking, whereas MYO5B regulated postendocytic recycling. Overexpression of mutant motors revealed a selective role for Rab11 in coupling MYO5B to Kv1.5 recycling. MYO5A and MYO5B control functionally distinct steps in the surface trafficking of Kv1.5. These isoform-specific trafficking pathways determine Kv1.5-encoded IKur in myocytes to regulate repolarizing current and, consequently, cardiac excitability. Therapeutic strategies that manipulate Kv1.5 selective trafficking pathways may prove useful in the treatment of arrhythmias."	"An ever-increasing number of people world-wide are developing and suffering from heart failure, and existing therapies, although improved are not ideal. Therefore, innovative treatment strategies are urgently needed. As our understanding of the underlying dysfunction of the myocardium increases, so does our ability to target the mechanisms responsible for heart failure progression. In this review we discuss novel molecular therapies and approaches for the treatment of heart failure. We will focus on the G protein-coupled receptor kinase GRK2, an increasing target for heart failure therapy, based on its important role in disease progression and the therapeutic potential of GRK2 inhibitors."	"Atrial fibrillation (AF) is a common cardiac arrhythmia with potentially life-threatening complications. Drug therapies for treatment of AF that seek long-term maintenance of normal sinus rhythm remain elusive due in large part to proarrhythmic ventricular actions. Kv1.5, which underlies the atrial specific I(Kur) current, is a major focus of research efforts seeking new therapeutic strategies and targets. Recent work has shown a novel effect of antiarrhythmic drugs where compounds that block Kv1.5 channel current also can alter ion channel trafficking. This work further suggests that the pleiotropic effects of antiarrhythmic drugs may be separable. Although this finding highlights the therapeutic potential for selective manipulation of ion channel surface density, it also reveals an uncertainty regarding the specificity of modulating trafficking pathways without risk of off-target effects. Future studies may show that specific alteration of Kv1.5 trafficking can overcome the proarrhythmic limitations of current pharmacotherapy and provide an effective method for long-term cardioversion in AF."	"Conventional antiarrhythmic drugs target the ion permeability of channels, but increasing evidence suggests that functional ion channel density can also be modified pharmacologically. Kv1.5 mediates the ultrarapid potassium current (I(Kur)) that controls atrial action potential duration. Given the atrial-specific expression of Kv1.5 and its alterations in human atrial fibrillation, significant effort has been made to identify novel channel blockers. In this study, treatment of HL-1 atrial myocytes expressing Kv1.5-GFP with the class I antiarrhythmic agent quinidine resulted in a dose- and temperature-dependent internalization of Kv1.5, concomitant with channel block. This quinidine-induced channel internalization was confirmed in acutely dissociated neonatal myocytes. Channel internalization was subunit-dependent, activity-independent, stereospecific, and blocked by pharmacological disruption of the endocytic machinery. Pore block and channel internalization partially overlap in the structural requirements for drug binding. Surprisingly, quinidine-induced endocytosis was calcium-dependent and therefore unrecognized by previous biophysical studies focused on isolating channel-drug interactions. Importantly, whereas acute quinidine-induced internalization was reversible, chronic treatment led to channel degradation. Together, these data reveal a novel mechanism of antiarrhythmic drug action and highlight the possibility for new agents that selectively modulate the stability of channel protein in the membrane as an approach for treating cardiac arrhythmias."	"The number of ion channels expressed on the cell surface shapes the complex electrical response of excitable cells. Maintaining a balance between anterograde and retrograde trafficking of channel proteins is vital in regulating steady-state cell surface expression. Kv1.5 is an important voltage-gated K(+) channel in the cardiovascular system underlying the ultra-rapid rectifying potassium current (Ik(ur)), a major repolarizing current in atrial myocytes, and regulating the resting membrane potential and excitability of smooth muscle cells. Defects in the expression of Kv1.5 are associated with pathological states such as chronic atrial fibrillation and hypoxic pulmonary hypertension. There is, thus, substantial interest in understanding the mechanisms regulating cell surface channel levels. Here, we investigated the internalization and recycling of Kv1.5 in the HL-1 immortalized mouse atrial myocytes. Kinetic studies indicate that Kv1.5 is rapidly internalized to a perinuclear region where it co-localizes with the early endosomal marker, EEA1. Importantly, we identified that a population of Kv1.5, originating on the cell surface, internalized and recycled back to the plasma membrane. Notably, Kv1.5 recycling processes are driven by specific Rab-dependent endosomal compartments. Thus, co-expression of GDP-locked Rab4S22N and Rab11S25N dominant-negative mutants decreased the steady-state Kv1.5 surface levels, whereas GTPase-deficient Rab4Q67L and Rab11Q70L mutants increased steady-state Kv1.5 surface levels. These data reveal an unexpected dynamic trafficking of Kv1.5 at the myocyte plasma membrane and demonstrate a role for recycling in the maintenance of steady-state ion channel surface levels."
+"Scott, Jacob"	"Translational Hematology and Oncology Research"	30778184	30659188	30385313	29786861	29736596	28450729	26360300	29315173	28982791	29733909	"Heterogeneity in strategies for survival and proliferation among the cells that constitute a tumour is a driving force behind the evolution of resistance to cancer therapy. The rules mapping the tumour's strategy distribution to the fitness of individual strategies can be represented as an evolutionary game. We develop a game assay to measure effective evolutionary games in co-cultures of non-small cell lung cancer cells that are sensitive and resistant to the anaplastic lymphoma kinase inhibitor alectinib. The games are not only quantitatively different between different environments, but targeted therapy and cancer-associated fibroblasts qualitatively switch the type of game being played by the in vitro population from Leader to Deadlock. This observation provides empirical confirmation of a central theoretical postulate of evolutionary game theory in oncology: we can treat not only the player, but also the game. Although we concentrate on measuring games played by cancer cells, the measurement methodology we develop can be used to advance the study of games in other microscopic systems by providing a quantitative description of non-cell-autonomous effects."	"Antibiotic resistance represents a growing health crisis that necessitates the immediate discovery of novel treatment strategies. One such strategy is the identification of collateral sensitivities, wherein evolution under a first drug induces susceptibility to a second. Here, we report that sequential drug regimens derived from in vitro evolution experiments may have overstated therapeutic benefit, predicting a collaterally sensitive response where cross-resistance ultimately occurs. We quantify the likelihood of this phenomenon by use of a mathematical model parametrised with combinatorially complete fitness landscapes for Escherichia coli. Through experimental evolution we then verify that a second drug can indeed stochastically exhibit either increased susceptibility or increased resistance when following a first. Genetic divergence is confirmed as the driver of this differential response through targeted and whole genome sequencing. Taken together, these results highlight that the success of evolutionarily-informed therapies is predicated on a rigorous probabilistic understanding of the contingencies that arise during the evolution of drug resistance."	"Oscillations are crucial to the normal function of living organisms, across a wide variety of biological processes. In eukaryotes, oscillatory dynamics are thought to arise from interactions at the protein and RNA levels; however, the role of non-coding RNA in regulating these dynamics remains understudied. In this work, we show how non-coding RNA acting as microRNA (miRNA) sponges in a conserved miRNA - transcription factor feedback motif, can give rise to oscillatory behaviour, and how to test for this experimentally. Control of these non-coding RNA can dynamically create oscillations or stability, and we show how this behaviour predisposes to oscillations in the stochastic limit. These results, supported by emerging evidence for the role of miRNA sponges in development, point towards key roles of different species of miRNA sponges, such as circular RNA, potentially in the maintenance of yet unexplained oscillatory behaviour. These results help to provide a paradigm for understanding functional differences between the many redundant, but distinct RNA species thought to act as miRNA sponges in nature, such as long non-coding RNA, pseudogenes, competing mRNA, circular RNA, and3' UTRs."	"Intensity-modulated radiation therapy (IMRT) has allowed optimization of three-dimensional spatial radiation dose distributions permitting target coverage while reducing normal tissue toxicity. However, radiation-induced normal tissue toxicity is a major contributor to patients' quality of life and often a dose-limiting factor in the definitive treatment of cancer with radiation therapy. We propose the next logical step in the evolution of IMRT using canonical radiobiological principles, optimizing the temporal dimension through which radiation therapy is delivered to further reduce radiation-induced toxicity by increased time for normal tissue recovery. We term this novel treatment planning strategy &quot;temporally feathered radiation therapy&quot; (TFRT). Temporally feathered radiotherapy plans were generated as a composite of five simulated treatment plans each with altered constraints on particular hypothetical organs at risk (OARs) to be delivered sequentially. For each of these TFRT plans, OARs chosen for feathering receive higher doses while the remaining OARs receive lower doses than the standard fractional dose delivered in a conventional fractionated IMRT plan. Each TFRT plan is delivered a specific weekday, which in effect leads to a higher dose once weekly followed by four lower fractional doses to each temporally feathered OAR. We compared normal tissue toxicity between TFRT and conventional fractionated IMRT plans by using a dynamical mathematical model to describe radiation-induced tissue damage and repair over time. Model-based simulations of TFRT demonstrated potential for reduced normal tissue toxicity compared to conventionally planned IMRT. The sequencing of high and low fractional doses delivered to OARs by TFRT plans suggested increased normal tissue recovery, and hence less overall radiation-induced toxicity, despite higher total doses delivered to OARs compared to conventional fractionated IMRT plans. The magnitude of toxicity reduction by TFRT planning was found to depend on the corresponding standard fractional dose of IMRT and organ-specific recovery rate of sublethal radiation-induced damage. TFRT is a novel technique for treatment planning and optimization of therapeutic radiotherapy that considers the nonlinear aspects of normal tissue repair to optimize toxicity profiles. Model-based simulations of TFRT to carefully conceptualized clinical cases have demonstrated potential for radiation-induced toxicity reduction in a previously described dynamical model of normal tissue complication probability (NTCP)."	"Despite major strides in the treatment of cancer, the development of drug resistance remains a major hurdle. One strategy which has been proposed to address this is the sequential application of drug therapies where resistance to one drug induces sensitivity to another drug, a concept called collateral sensitivity. The optimal timing of drug switching in these situations, however, remains unknown. To study this, we developed a dynamical model of sequential therapy on heterogeneous tumors comprised of resistant and sensitive cells. A pair of drugs (DrugA, DrugB) are utilized and are periodically switched during therapy. Assuming resistant cells to one drug are collaterally sensitive to the opposing drug, we classified cancer cells into two groups, [Formula: see text] and [Formula: see text], each of which is a subpopulation of cells resistant to the indicated drug and concurrently sensitive to the other, and we subsequently explored the resulting population dynamics. Specifically, based on a system of ordinary differential equations for [Formula: see text] and [Formula: see text], we determined that the optimal treatment strategy consists of two stages: an initial stage in which a chosen effective drug is utilized until a specific time point, T, and a second stage in which drugs are switched repeatedly, during which each drug is used for a relative duration (i.e., [Formula: see text]-long for DrugA and [Formula: see text]-long for DrugB with [Formula: see text] and [Formula: see text]). We prove that the optimal duration of the initial stage, in which the first drug is administered, T, is shorter than the period in which it remains effective in decreasing the total population, contrary to current clinical intuition. We further analyzed the relationship between population makeup, [Formula: see text], and the effect of each drug. We determine a critical ratio, which we term [Formula: see text], at which the two drugs are equally effective. As the first stage of the optimal strategy is applied, [Formula: see text] changes monotonically to [Formula: see text] and then, during the second stage, remains at [Formula: see text] thereafter. Beyond our analytic results, we explored an individual-based stochastic model and presented the distribution of extinction times for the classes of solutions found. Taken together, our results suggest opportunities to improve therapy scheduling in clinical oncology."	"Drug resistance remains an elusive problem in cancer therapy, particularly for novel targeted therapies. Much work is focused upon the development of an arsenal of targeted therapies, towards oncogenic driver genes such as ALK-EML4, to overcome the inevitable resistance that develops over time. Currently, after failure of first line ALK TKI therapy, another ALK TKI is administered, though collateral sensitivity is not considered. To address this, we evolved resistance in an ALK rearranged non-small cell lung cancer line (H3122) to a panel of 4 ALK TKIs, and performed a collateral sensitivity analysis. All ALK inhibitor resistant cell lines displayed significant cross-resistance to all other ALK inhibitors. We then evaluated ALK-inhibitor sensitivities after drug holidays of varying length (1-21 days), and observed dynamic patterns of resistance. This unpredictability led us to an expanded search for treatment options, where we tested 6 further anti-cancer agents for collateral sensitivity among resistant cells, uncovering possibilities for further treatment, including cross-sensitivity to standard cytotoxic therapies, as well as Hsp90 inhibitors. Taken together, these results imply that resistance to targeted therapy in non-small cell lung cancer is highly dynamic, and also one where there are many opportunities to re-establish sensitivities where there was once resistance. Drug resistance in cancer inevitably emerges during treatment; particularly with novel targeted therapies, designed to inhibit specific molecules. A clinically-relevant example of this phenomenon occurs in ALK-positive non-small cell lung cancer, where targeted therapies are used to inhibit the ALK-EML4 fusion protein. A potential solution to this may lie in finding drug sensitivities in the resistant population, termed collateral sensitivities, and then using these as second-line agents. This study shows how the evolution of resistance in ALK-positive lung cancer is a dynamic process through time, one in which patterns of drug resistance and collateral sensitivity change substantially, and therefore one where temporal regimens, such as drug cycling and drug holidays may have great benefit."	"The increasing rate of antibiotic resistance and slowing discovery of novel antibiotic treatments presents a growing threat to public health. Here, we consider a simple model of evolution in asexually reproducing populations which considers adaptation as a biased random walk on a fitness landscape. This model associates the global properties of the fitness landscape with the algebraic properties of a Markov chain transition matrix and allows us to derive general results on the non-commutativity and irreversibility of natural selection as well as antibiotic cycling strategies. Using this formalism, we analyze 15 empirical fitness landscapes of E. coli under selection by different β-lactam antibiotics and demonstrate that the emergence of resistance to a given antibiotic can be either hindered or promoted by different sequences of drug application. Specifically, we demonstrate that the majority, approximately 70%, of sequential drug treatments with 2-4 drugs promote resistance to the final antibiotic. Further, we derive optimal drug application sequences with which we can probabilistically 'steer' the population through genotype space to avoid the emergence of resistance. This suggests a new strategy in the war against antibiotic-resistant organisms: drug sequencing to shepherd evolution through genotype space to states from which resistance cannot emerge and by which to maximize the chance of successful therapy. "	"To identify the rates of acute and chronic wound complications and factors associated in a cohort of patients treated for soft tissue sarcoma (STS) with modern radiotherapy (RT) and surgical techniques. An Institutional Review Board-approved database was used to identify all adult nonmetastatic patients treated for STS at a single institution between 2006 and 2015 with a minimum follow-up of 1 year. Factors associated with acute and chronic wound complications were analyzed using binomial logistic regression including interaction terms. In all, 271 patients were identified with a median follow-up of 3.2 years. The rate of acute wound complications was 22.1%. On univariate analysis, trunk versus extremity location (P&lt;0.001), radiation therapy (P=0.04), and preoperative therapy (P=0.03) were associated with acute wound complications and a trend was noted for reconstruction (P=0.07). On multivariate analysis, extremity tumors were associated with a higher rate of acute wound complications compared with trunk tumors without RT (P=0.02). Utilization of RT was associated with increased risk for extremity tumors (P=0.07). The rate of chronic wound complications was 3.3%. Radiation was associated with increased chronic wound complications (P=0.03) and trends were noted for trunk versus extremity location (P=0.08) and a history of acute wound complications (P=0.12). Several factors associated with acute and chronic wound complications were identified in STS patients including timing of RT, tumor site, and reconstruction use. The development of acute wound complications may also be associated with an increased risk of chronic wound complications."	"Radiomics describes a broad set of computational methods that extract quantitative features from radiographic images. The resulting features can be used to inform imaging diagnosis, prognosis, and therapy response in oncology. However, major challenges remain for methodologic developments to optimize feature extraction and provide rapid information flow in clinical settings. Equally important, to be clinically useful, predictive radiomic properties must be clearly linked to meaningful biologic characteristics and qualitative imaging properties familiar to radiologists. Here we use a cross-disciplinary approach to highlight studies in radiomics. We review brain tumor radiologic studies (eg, imaging interpretation) through computational models (eg, computer vision and machine learning) that provide novel clinical insights. We outline current quantitative image feature extraction and prediction strategies with different levels of available clinical classes for supporting clinical decision-making. We further discuss machine-learning challenges and data opportunities to advance radiomic studies."	"We assessed the radiosensitivity of lung metastases on the basis of primary histologic type by using a validated gene signature and model lung metastases for the gnomically adjusted radiation dose (GARD). Tissue samples were identified from our prospective observational protocol. The radiosensitivity index (RSI) 10-gene assay was run on samples and calculated alongside the GARD by using the previously published algorithms. A cohort of 105 patients with 137 lung metastases treated with stereotactic body radiation therapy (SBRT) at our institution was used for clinical correlation. A total of 138 unique metastatic lung lesions from our institution's tissue biorepository were identified for inclusion. There were significant differences in the RSI of lung metastases on the basis of histology. In order of decreasing radioresistance, the median RSIs for the various histologic types of cancer were endometrial adenocarcinoma (0.49), soft-tissue sarcoma (0.47), melanoma (0.44), rectal adenocarcinoma (0.43), renal cell carcinoma (0.33), head and neck squamous cell cancer (0.33), colon adenocarcinoma (0.32), and breast adenocarcinoma (0.29) (p = 0.002). We modeled the GARD for these samples and identified the biologically effective dose necessary to optimize local control. The 12- and 24-month Kaplan-Meier rates of local control for radioresistant versus radiosensitive histologic types from our clinical correlation cohort after lung SBRT were 92%/87% and 100%, respectively (p = 0.02). In this analysis, we have noted significant differences in radiosensitivity on the basis of primary histologic type of lung metastases and have modeled the biologically effective dose necessary to optimize local control. This study suggests that primary histologic type may be an additional factor to consider in selection of SBRT dose to the lung and that dose personalization may be feasible."
+"Sedor, John"	"Inflammation and Immunity"	30332315	29180397	29110761	22813067	21997392	21900451	20347648	20086015	19367311	18486718	"The mechanism that explains the association of APOL1 variants with nondiabetic kidney diseases in African Americans remains unclear. Kidney disease risk is inherited as a recessive trait, and many studies investigating the intracellular function of APOL1 have indicated the APOL1 variants G1 and G2 are associated with cytotoxicity. Whether cytotoxicity results from the absence of a protective effect conferred by the G0 allele or is induced by a deleterious effect of variant allele expression has not be conclusively established. A central issue hampering basic biology studies is the lack of model systems that authentically replicate APOL1 expression patterns. APOL1 is present in humans and a few other primates and appears to have important functions in the kidney, as the kidney is the primary target for disease associated with the genetic variance. There have been no studies to date assessing the function of untagged APOL1 protein under native expression in human or primate kidney cells, and no studies have examined the heterozygous state, a disease-free condition in humans. A second major issue is the chronic kidney disease (CKD)-associated APOL1 variants are conditional mutations, where the disease-inducing function is only evident under the appropriate environmental stimulus. In addition, it is possible there may be more than one mechanism of pathogenesis that is dependent on the nature of the stressor or other genetic variabilities. Studies addressing the function of APOL1 and how the CKD-associated APOL1 variants cause kidney disease are challenging and remain to be fully investigated under conditions that faithfully model known human genetics and physiology."	"Coding variants in the APOL1 gene are associated with kidney diseases in African ancestral populations; yet, the underlying biologic mechanisms remain uncertain. Variant-dependent autophagic and cytotoxic cell death have been proposed as pathogenic pathways mediating kidney injury. To examine this possibility, we conditionally expressed APOL1-G0 (reference), -G1, and -G2 (variants) using a tetracycline-regulated system in HEK293 cells. Autophagy was monitored biochemically and cell death was measured using multiple assays. We measured intracellular Na<sup>+</sup> and K<sup>+</sup> content with atomic absorption spectroscopy and APOL1-dependent currents with whole-cell patch clamping. Neither reference nor variant APOL1s induced autophagy. At high expression levels, APOL1-G0, -G1, and -G2 inserted into the plasma membrane and formed pH-sensitive cation channels, causing collapse of cellular Na<sup>+</sup> and K<sup>+</sup> gradients, phosphorylation of p38 mitogen-activated protein kinase, and cell death, without variant-dependent differences. APOL1-G0 and -G2 exhibited similar channel properties in whole-cell patch clamp experiments. At low expression levels, neither reference nor variant APOL1s localized on the plasma membrane, Na<sup>+</sup> and K<sup>+</sup> gradients were maintained, and cells remained viable. Our results indicate that APOL1-mediated pore formation is critical for the trypanolytic activity of APOL1 and drives APOL1-mediated cytotoxicity in overexpression systems. The absence of cytotoxicity at physiologic expression levels suggests variant-dependent intracellular K<sup>+</sup> loss and cytotoxicity does not drive kidney disease progression."	"The association of variants in the APOL1 gene, which encodes apolipoprotein L1 (APOL1), with progressive nondiabetic kidney diseases in African Americans has prompted intense investigation into the function(s) of APOL1. APOL1 is an innate immune effector that protects human beings from infection by some trypanosomal parasites. We review the data characterizing APOL1 trypanolytic function, which has been a basis for studies of APOL1 function in mammalian cells. Subsequently, we discuss the studies that use animal models, mammalian cell culture models, and kidney biopsy tissue to discover the mechanisms of variant APOL1-associated kidney diseases."	"The genetic architecture responsible for chronic kidney disease (CKD) remains incompletely described. The Oligosyndactyly (Os) mouse models focal and segmental glomerulosclerosis (FSGS), which is associated with reduced nephron number caused by the Os mutation. The Os mutation leads to FSGS in multiple strains including the ROP-Os/+. However, on the C57Bl/6J background the mutation does not cause FSGS, although nephron number in these mice are equivalent to those in ROP-Os/+ mice. We exploited this phenotypic variation to identify genes that potentially contribute to glomerulosclerosis. To identify such novel genes, which regulate susceptibility or resistance to renal disease progression, we generated and compared the renal transcriptomes using serial analysis of gene expression (SAGE) from the sclerosis-prone ROP-Os/+ and sclerosis resistant C57-Os/+ mouse kidneys. We confirmed the validity of the differential gene expression using multiple approaches. We also used an Ingenuity Pathway Analysis engine to assemble differentially regulated molecular networks. Cell culture techniques were employed to confirm functional relevance of selected genes. A comparative analysis of the kidney transcriptomes revealed multiple genes, with expression levels that were statistically different. These novel, candidate, renal disease susceptibility/resistance genes included neuropilin2 (Nrp2), glutathione-S-transferase theta (Gstt1) and itchy (Itch). Of 34 genes with the most robust statistical difference in expression levels between ROP-Os/+ and C57-Os/+ mice, 13 and 3 transcripts localized to glomerular and tubulointerstitial compartments, respectively, from micro-dissected human FSGS biopsies. Network analysis of all significantly differentially expressed genes identified 13 connectivity networks. The most highly scored network highlighted the roles for oxidative stress and mitochondrial dysfunction pathways. Functional analyses of these networks provided evidence for activation of transforming growth factor beta (TGFβ) signaling in ROP-Os/+ kidneys despite similar expression of the TGFβ ligand between the tested strains. These data demonstrate the complex dysregulation of normal cellular functions in this animal model of FSGS and suggest that therapies directed at multiple levels will be needed to effectively treat human kidney diseases."	"In patients of African ancestry, genetic variants in APOL1, which encodes apolipoprotein L1, associate with the nondiabetic kidney diseases, focal segmental glomerulosclerosis (FSGS), HIV-associated nephropathy (HIVAN), and hypertensive nephropathy. Understanding the renal localization of APOL1 may provide clues that will ultimately help elucidate the mechanisms by which APOL1 variants promote nephropathy. Here, we used immunohistology to examine APOL1 localization in normal human kidney sections and in biopsies demonstrating either FSGS (n = 8) or HIVAN (n = 2). Within normal glomeruli, APOL1 only localized to podocytes. Compared with normal glomeruli, fewer cells stained for APOL1 in FSGS and HIVAN glomeruli, even when expression of the podocyte markers GLEPP1 and synaptopodin appeared normal. APOL1 localized to proximal tubular epithelia in normal kidneys, FSGS, and HIVAN. We detected APOL1 in the arteriolar endothelium of normal and diseased kidney sections. Unexpectedly, in both FSGS and HIVAN but not normal kidneys, the media of medium artery and arterioles contained a subset of α-smooth muscle actin-positive cells that stained for APOL1. Comparing the renal distribution of APOL1 in nondiabetic kidney disease to normal kidney suggests that a previously unrecognized arteriopathy may contribute to disease pathogenesis in patients of African ancestry."	"Podocytes respond to environmental cues by remodeling their slit diaphragms and cell-matrix adhesive junctions. Wt1-interacting protein (Wtip), an Ajuba family LIM domain scaffold protein expressed in the podocyte, coordinates cell adhesion changes and transcriptional responses to regulate podocyte phenotypic plasticity. We evaluated effects of Wtip on podocyte cell-cell and cell-matrix contact organization using gain-of- and loss-of-function methods. Endogenous Wtip targeted to focal adhesions in adherent but isolated podocytes and then shifted to adherens junctions after cells made stable, homotypic contacts. Podocytes with Wtip knockdown (shWtip) adhered but failed to spread normally. Noncontacted shWtip podocytes did not assemble actin stress fibers, and their focal adhesions failed to mature. As shWtip podocytes established cell-cell contacts, stable adherens junctions failed to form and F-actin structures were disordered. In shWtip cells, cadherin and β-catenin clustered in irregularly distributed spots that failed to laterally expand. Cell surface biotinylation showed diminished plasma membrane cadherin, β-catenin, and α-catenin in shWtip podocytes, although protein expression was similar in shWtip and control cells. Since normal actin dynamics are required for organization of adherens junctions and focal adhesions, we determined whether Wtip regulates F-actin assembly. Undifferentiated podocytes did not elaborate F-actin stress fibers, but when induced to overexpress WTIP, formed abundant stress fibers, a process blocked by the RhoA inhibitor C3 toxin and a RhoA kinase inhibitor. WTIP directly interacted with Rho guanine nucleotide exchange factor (GEF) 12 (Arhgef12), a RhoA-specific GEF enriched in the glomerulus. In conclusion, stable assembly of podocyte adherens junctions and cell-matrix contacts requires Wtip, a process that may be mediated by spatiotemporal regulation of RhoA activity through appropriate targeting of Arhgef12."	"Studies of the genetics of common diseases have revealed multiple risk alleles associated with end-stage renal disease, albuminuria, serum creatinine, diabetes, coronary heart disease, and increased triglyceride levels. These associations have prompted further basic science research, which has led to the discovery of novel pathways and a better understanding of the pathophysiology of common diseases. Currently, the ability to translate these discoveries into clinical practice is limited by the small effect size of these risk alleles and a lack of studies showing meaningful impact of genetic variation on risk assessment and clinical outcomes. Advances in genetic testing will continue to yield highly significant associations but translation into clinical practice will require effective collaboration between physicians and basic and social scientists. Rigorous clinical trials eventually will reveal which combination of genetic tests improves risk stratification and identifies individuals most likely to benefit from specific prevention strategies and therapies."	"Podocyte structural and transcriptional phenotype plasticity characterizes glomerular injury. Transcriptional activity of WT1 (Wilm's tumor 1) is required for normal podocyte structure and is repressed by the podocyte adherens junction protein, WTIP (WT1 interacting protein). Here we show that WTIP translocated into podocyte nuclei in lipopolysaccharide (LPS)-treated mice, a model of transient nephrotic syndrome. Cultured podocytes, which stably expressed an epitope-tagged WTIP, were treated with LPS. Imaging and cellular fractionation studies demonstrated that WTIP translocated from podocyte cell contacts into nuclei within 6 h and relocalized to cell contacts within 24 h after LPS treatment. LPS-stimulated WTIP nuclear translocation required JNK activity, which assembled a multiprotein complex of the scaffolding protein JNK-interacting protein 3 and the molecular motor dynein. Intact microtubule networks and dynein activity were necessary for LPS-stimulated WTIP translocation. Podocytes expressing sh-Wtip change morphology and demonstrate altered actin assembly in cell spreading assays. Stress signaling pathways initiate WTIP nuclear translocation, and the concomitant loss of WTIP from cell contacts changes podocyte morphology and dynamic actin assembly, suggesting a mechanism that transmits changes in podocyte morphology to the nucleus."	"Renal biopsy is viewed as the gold standard for diagnosis and management of many kidney diseases, especially glomerulopathies. However, the histopathological descriptions currently used in clinical practice often are neither diagnostic nor prognostic. The paper by Sethi et al. highlights the availability of a newer investigative tool that can be used to better define pathogenesis and, perhaps more important, to discover robust biomarkers of kidney disease cause and outcome."	"Chronic kidney disease (CKD) is a complex disease affecting more than 20 million individuals in the United States. Progression of CKD is associated with a number of serious complications, including increased incidence of cardiovascular disease, hyperlipidemia, anemia, and metabolic bone disease. CKD patients should be assessed for the presence of these complications and receive optimal treatment to reduce their morbidity and mortality. A multidisciplinary approach is required to accomplish this goal."
+"Sen, Ganes"	"Inflammation and Immunity"	29531172	27815826	27631700	27178468	27137933	26958928	26414443	26341626	25428874	25231314	"Mammalian TLRs recognize microbial infection or cell death-associated danger signals and trigger the appropriate cellular response. These responses determine the strength and the outcome of the host-microbe interaction. TLRs are transmembrane proteins located on the plasma or the endosomal membrane. Their ectodomains recognize specific microbial or endogenous ligands, and the cytoplasmic domains interact with specific proteins to activate intracellular signaling pathways. TLR9, an endosomal TLR, is activated by endocytosed DNA. Activated TLR9 recruits the cytoplasmic adapter MyD88 and other signaling proteins to induce the synthesis of inflammatory cytokines and IFN. Uncontrolled activation of TLR9 leads to the undesired overproduction of inflammatory cytokines and consequent pathogenesis. Therefore, appropriate activation and the regulation of TLR9 signaling are critical. Tyrosine (Tyr) phosphorylation of TLR9 is essential for its activation; however, the role of specific Tyr kinases is not clear. In this article, we report that epidermal growth factor receptor (EGFR), a membrane-bound protein Tyr kinase, is essential for TLR9 signaling. Genetic ablation of EGFR or pharmacological inhibition of its kinase activity attenuates TLR9-mediated induction of genes in myeloid and nonmyeloid cell types. EGFR is constitutively bound to TLR9; upon ligand stimulation, it mediates TLR9 Tyr phosphorylation, which leads to the recruitment of MyD88, activation of the signaling kinases and transcription factors, and gene induction. In mice, TLR9-mediated liver injury and death are blocked by an EGFR inhibitor or deletion of the EGFR gene from myeloid cells, which are the major producers of inflammatory cytokines."	"The innate immune response is the first line of host defense to eliminate viral infection. Pattern recognition receptors in the cytosol, such as RIG-I-like receptors (RLR) and Nod-like receptors (NLR), and membrane bound Toll like receptors (TLR) detect viral infection and initiate transcription of a cohort of antiviral genes, including interferon (IFN) and interferon stimulated genes (ISGs), which ultimately block viral replication. Another mechanism to reduce viral spread is through RIPA, the RLR-induced IRF3-mediated pathway of apoptosis, which causes infected cells to undergo premature death. The transcription factor IRF3 can mediate cellular antiviral responses by both inducing antiviral genes and triggering apoptosis through the activation of RIPA. The mechanism of IRF3 activation in RIPA is distinct from that of transcriptional activation; it requires linear polyubiquitination of specific lysine residues of IRF3. Using RIPA-active, but transcriptionally inactive, IRF3 mutants, it was shown that RIPA can prevent viral replication and pathogenesis in mice."	"The intracellular microbial nucleic acid sensors, TLR3 and STING, recognize pathogen molecules and signal to activate the interferon pathway. The TIR-domain containing protein TRIF is the sole adaptor of TLR3. Here, we report an essential role for TRIF in STING signaling: various activators of STING could not induce genes in the absence of TRIF. TRIF and STING interacted directly, through their carboxy-terminal domains, to promote STING dimerization, intermembrane translocation, and signaling. Herpes simplex virus (HSV), which triggers the STING signaling pathway and is controlled by it, replicated more efficiently in the absence of TRIF, and HSV-infected TRIF(-/-) mice displayed pronounced pathology. Our results indicate that defective STING signaling may be responsible for the observed genetic association between TRIF mutations and herpes simplex encephalitis in patients. "	"The transcription factor IRF-3 mediates cellular antiviral response by inducing the expression of interferon and other antiviral proteins. In RNA-virus infected cells, IRF-3's transcriptional activation is triggered primarily by RIG-I-like receptors (RLR), which can also activate the RLR-induced IRF-3-mediated pathway of apoptosis (RIPA). Here, we have reported that the pathway of IRF-3 activation in RIPA was independent of and distinct from the known pathway of transcriptional activation of IRF-3. It required linear polyubiquitination of two specific lysine residues of IRF-3 by LUBAC, the linear polyubiquitinating enzyme complex, which bound IRF-3 in signal-dependent fashion. To evaluate the role of RIPA in viral pathogenesis, we engineered a genetically targeted mouse, which expressed a mutant IRF-3 that was RIPA-competent but transcriptionally inert; this single-action IRF-3 could protect mice from lethal viral infection. Our observations indicated that IRF-3-mediated apoptosis of virus-infected cells could be an effective antiviral mechanism, without expression of the interferon-stimulated genes."	"The chromosomally clustered interferon-induced with tetratricopeptide repeat motif (IFIT) gene family members share structural features at the gene and protein levels. Despite these similarities, different IFIT genes have distinct inducer- and cell type-specific induction patterns. Here, we investigated the mechanism for the observed differential induction of the mouse Ifit1, Ifit2, and Ifit3 genes in B cells and demonstrated that the repressive effect of the transcription factor interferon regulatory factor 8 (IRF8), which is highly expressed in B cells, played an essential role in this regulation. Although IRF8 could impair induction of all three IFIT genes following stimulation of retinoic acid-inducible gene I (RIG-I), it could selectively impair the induction of the Ifit1 gene following IFN stimulation. The above properties could be imparted to IRF8-non-expressing cells by ectopic expression of the protein. Induction of reporter genes, driven by truncated Ifit1 promoters, identified the regions that mediate the repression, and a chromatin immunoprecipitation assay revealed that more IRF8 bound to the IFN-stimulated response element of the Ifit1 gene than to those of the Ifit2 and the Ifit3 genes. Mutational analyses of IRF8 showed that its ability to bind DNA, interact with other proteins, and undergo sumoylation were all necessary to selectively repress Ifit1 gene induction in response to IFN. Our study revealed a new role for IRFs in differentially regulating the induction patterns of closely related IFN-stimulated genes that are located adjacent to one another in the mouse genome."	"The interferon system protects mammals against virus infections. There are several types of interferons, which are characterized by their ability to inhibit virus replication and resultant pathogenesis by triggering both innate and cell-mediated immune responses. Virus infection is sensed by a variety of cellular pattern-recognition receptors and triggers the synthesis of interferons, which are secreted by the infected cells. In uninfected cells, cell surface receptors recognize the secreted interferons and activate intracellular signaling pathways that induce the expression of interferon-stimulated genes; the proteins encoded by these genes inhibit different stages of virus replication. To avoid extinction, almost all viruses have evolved mechanisms to defend themselves against the interferon system. Consequently, a dynamic equilibrium of survival is established between the virus and its host, an equilibrium that can be shifted to the host's favor by the use of exogenous interferon as a therapeutic antiviral agent. "	"The murine double-stranded RNA-binding protein termed protein kinase R (PKR)-associated protein X (RAX) and the human homolog, protein activator of PKR (PACT), were originally characterized as activators of PKR. Mice deficient in RAX show reproductive and developmental defects, including reduced body size, craniofacial defects and anterior pituitary hypoplasia. As these defects are not observed in PKR-deficient mice, the phenotype has been attributed to PKR-independent activities of RAX. Here we further investigated the involvement of PKR in the physiological function of RAX, by generating rax(-/-) mice deficient in PKR, or carrying a kinase-inactive mutant of PKR (K271R) or an unphosphorylatable mutant of the PKR substrate eukaryotic translation initiation factor 2 α subunit (eIF2α) (S51A). Ablating PKR expression rescued the developmental and reproductive deficiencies in rax(-/-) mice. Generating rax(-/-) mice with a kinase-inactive mutant of PKR resulted in similar rescue, confirming that the rax(-/-) defects are PKR dependent; specifically that the kinase activity of PKR was required for these defects. Moreover, generating rax(-/-) mice that were heterozygous for an unphosphorylatable mutant eIF2α provides partial rescue of the rax(-/-) defect, consistent with mutation of one copy of the Eif2s1 gene. These observations were further investigated in vitro by reducing RAX expression in anterior pituitary cells, resulting in increased PKR activity and induction of the PKR-regulated cyclin-dependent kinase inhibitor p21(WAF1/CIP1). These results demonstrate that PKR kinase activity is required for onset of the rax(-/-) phenotype, implying an unexpected function for RAX as a negative regulator of PKR in the context of postnatal anterior pituitary tissue, and identify a critical role for the regulation of PKR activity for normal development."	"Mammalian Toll-like receptors (TLR) recognize microbial products and elicit transient immune responses that protect the infected host from disease. TLR4--which signals from both plasma and endosomal membranes--is activated by bacterial lipopolysaccharides (LPS) and induces many cytokine genes, the prolonged expression of which causes septic shock in mice. We report here that the expression of some TLR4-induced genes in myeloid cells requires the protein kinase activity of the epidermal growth factor receptor (EGFR). EGFR inhibition affects TLR4-induced responses differently depending on the target gene. The induction of interferon-β (IFN-β) and IFN-inducible genes is strongly inhibited, whereas TNF-α induction is enhanced. Inhibition is specific to the IFN-regulatory factor (IRF)-driven genes because EGFR is required for IRF activation downstream of TLR--as is IRF co-activator β-catenin--through the PI3 kinase/AKT pathway. Administration of an EGFR inhibitor to mice protects them from LPS-induced septic shock and death by selectively blocking the IFN branch of TLR4 signaling. These results demonstrate a selective regulation of TLR4 signaling by EGFR and highlight the potential use of EGFR inhibitors to treat septic shock syndrome."	"A major component of the protective antiviral host defense is contributed by the intracellular actions of the proteins encoded by interferon-stimulated genes (ISGs); among these are the interferon-induced proteins with tetratricopeptide repeats (IFITs), consisting of four members in human and three in mouse. IFIT proteins do not have any known enzyme activity. Instead, they inhibit virus replication by binding and regulating the functions of cellular and viral proteins and RNAs. Although all IFITs are comprised of multiple copies of the degenerate tetratricopeptide repeats, their distinct tertiary structures enable them to bind different partners and affect host-virus interactions differently. The recent use of Ifit knockout mouse models has revealed novel antiviral functions of these proteins and new insights into the specificities of ISG actions. This article focuses on human and murine IFIT1 and IFIT2 by reviewing their mechanisms of action, their critical roles in protecting mice from viral pathogenesis, and viral strategies to evade IFIT action. "	"The type I/III interferon (IFN) system has major roles in regulating viral pathogenesis, usually ameliorating pathogenesis by impairing virus replication through the antiviral actions of one or more IFN-induced proteins. Ifit2 is one such protein which can be induced by IFN or virus infection, and it is responsible for protecting mice from neuropathogenesis caused by vesicular stomatitis virus. Here, we show that Ifit2 also protects mice from pathogenesis caused by the respirovirus Sendai virus (SeV). Mice lacking Ifit2 (Ifit2(-/-)) suffered severe weight loss and succumbed to intranasal infection with SeV strain 52 at a dose that killed only a few wild-type mice. Viral RNA was detectable only in lungs, and SeV titers were higher in Ifit2(-/-) mice than in wild-type mice. Similar infiltration of immune cells was found in the lungs of both mouse lines, corresponding to similar levels of many induced cytokines and chemokines. In contrast, IFN-β and IFN-λ3 expression were considerably higher in the lungs of Ifit2(-/-) mice. Surprisingly, type I IFN receptor knockout (IFNAR(-/-)) mice were less susceptible to SeV than Ifit2(-/-) mice, although their pulmonary virus titers were similarly high. To test the intriguing possibility that type I IFN action enhances pathogenesis in the context of elevated SeV replication in lungs, we generated Ifit2/IFNAR(-/-) double knockout mice. These mice were less susceptible to SeV than Ifit2(-/-) mice, although viral titers in their lungs were even higher. Our results indicate that high SeV replication in the lungs of infected Ifit2(-/-) mice cooperates with elevated IFN-β induction to cause disease. The IFN system is an innate defense against virus infections. It is triggered quickly in infected cells, which then secrete IFN. Via their cell surface receptors on surrounding cells, they induce transcription of numerous IFN-stimulated genes (ISG), which in turn protect these cells by inhibiting virus life cycles. Hence, IFNs are commonly considered beneficial during virus infections. Here, we report two key findings. First, lack of a single ISG in mice, Ifit2, resulted in high mortality after SeV infection of the respiratory tract, following higher virus loads and higher IFN production in Ifit2(-/-) lungs. Second, mortality of Ifit2(-/-) mice was reduced when mice also lacked the type I IFN receptor, while SeV loads in lungs still were high. This indicates that type I IFN exacerbates pathogenesis in the SeV model, and that limitation of both viral replication and IFN production is needed for effective prevention of disease."
+"Sharifi, Nima"	"Cancer Biology"	30262668	29939161	29850791	29346776	29231195	29049492	29049452	28733443	28648378	28389515	"Androgens such as testosterone and dihydrotestosterone are a critical driver of prostate cancer progression. Cancer resistance to androgen deprivation therapies ensues when tumors engage metabolic processes that produce sustained androgen levels in the tissue. However, the molecular mechanisms involved in this resistance process are unclear, and functional imaging modalities that predict impending resistance are lacking. Here, using the human LNCaP and C4-2 cell line models of prostate cancer, we show that castration treatment-sensitive prostate cancer cells that normally have an intact glucuronidation pathway that rapidly conjugates and inactivates dihydrotestosterone and thereby limits androgen signaling, become glucuronidation deficient and resistant to androgen deprivation. Mechanistically, using CRISPR/Cas9-mediated gene ablation, we found that loss of UDP glucuronosyltransferase family 2 member B15 (UGT2B15) and UGT2B17 is sufficient to restore free dihydrotestosterone, sustained androgen signaling, and development of castration resistance. Furthermore, loss of glucuronidation enzymatic activity was also detectable with a nonsteroid glucuronidation substrate. Of note, glucuronidation-incompetent cells and the resultant loss of intracellular conjugated dihydrotestosterone were detectable in vivo by <sup>18</sup>F-dihydrotestosterone PET. Together, these findings couple a mechanism with a functional imaging modality to identify impending castration resistance in prostate cancers."	"A common germline variant in HSD3B1(1245A&gt;C) encodes for a hyperactive 3β-hydroxysteroid dehydrogenase 1 (3βHSD1) missense that increases metabolic flux from extragonadal precursor steroids to DHT synthesis in prostate cancer. Enabling of extragonadal DHT synthesis by HSD3B1(1245C) predicts for more rapid clinical resistance to castration and sensitivity to extragonadal androgen synthesis inhibition. HSD3B1(1245C) thus appears to define a subgroup of patients who benefit from blocking extragonadal androgens. However, abiraterone, which is administered to block extragonadal androgens, is a steroidal drug that is metabolized by 3βHSD1 to multiple steroidal metabolites, including 3-keto-5α-abiraterone, which stimulates the androgen receptor. Our objective was to determine if HSD3B1(1245C) inheritance is associated with increased 3-keto-5α-abiraterone synthesis in patients. First, we characterized the pharmacokinetics of 7 steroidal abiraterone metabolites in 15 healthy volunteers. Second, we determined the association between serum 3-keto-5α-abiraterone levels and HSD3B1 genotype in 30 patients treated with abiraterone acetate (AA) after correcting for the determined pharmacokinetics. Patients who inherit 0, 1, and 2 copies of HSD3B1(1245C) have a stepwise increase in normalized 3-keto-5α-abiraterone (0.04 ng/ml, 2.60 ng/ml, and 2.70 ng/ml, respectively; P = 0.002). Increased generation of 3-keto-5α-abiraterone in patients with HSD3B1(1245C) might partially negate abiraterone benefits in these patients who are otherwise more likely to benefit from CYP17A1 inhibition. Prostate Cancer Foundation Challenge Award, National Cancer Institute."	"3βHSD1 enzymatic activity is essential for synthesis of potent androgens from adrenal precursor steroids in prostate cancer. A germline variant in HSD3B1, the gene that encodes 3βHSD1, encodes for a stable enzyme, regulates adrenal androgen dependence, and is a predictive biomarker of poor clinical outcomes after gonadal testosterone deprivation therapy. However, little is known about HSD3B1 transcriptional regulation. Generally, it is thought that intratumoral androgen synthesis is upregulated after gonadal testosterone deprivation, enabling development of castration-resistant prostate cancer. Given its critical role in extragonadal androgen synthesis, we sought to directly interrogate the transcriptional regulation of HSD3B1 in multiple metastatic prostate cancer cell models. Surprisingly, we found that VCaP, CWR22Rv1, LNCaP, and LAPC4 models demonstrate induction of HSD3B1 upon androgen stimulation for approximately 72 hours, followed by attenuation around 120 hours. 3βHSD1 protein levels mirrored transcriptional changes in models harboring variant (LNCaP) and wild-type (LAPC4) HSD3B1, and in these models androgen induction of HSD3B1 is abrogated via enzalutamide treatment. Androgen treatment increased flux from [3H]-dehydroepiandrosterone to androstenedione and other downstream metabolites. HSD3B1 expression was reduced 72 hours after castration in the VCaP xenograft mouse model, suggesting androgen receptor (AR) regulation of HSD3B1 also occurs in vivo. Overall, these data suggest that HSD3B1 is unexpectedly positively regulated by androgens and ARs. These data may have implications for the development of treatment strategies tailored to HSD3B1 genotype status."	"Castration-resistant prostate cancer (CRPC) requires tumors to engage metabolic mechanisms that allow sustained testosterone and/or dihydrotestosterone to stimulate progression. 17β-Hydroxysteroid dehydrogenase type 4 (17βHSD4), encoded by HSD17B4, is thought to inactivate testosterone and dihydrotestosterone by converting them to their respective inert 17-keto steroids. Counterintuitively, HSD17B4 expression increases in CRPC and predicts poor prognosis. Here, we show that, of five alternative splice forms, only isoform 2 encodes an enzyme capable of testosterone and dihydrotestosterone inactivation. In contrast with other transcripts, functional expression of isoform 2 is specifically suppressed in development of CRPC in patients. Genetically silencing isoform 2 shifts the metabolic balance toward 17β-OH androgens (testosterone and dihydrotestosterone), stimulating androgen receptor (AR) and CRPC development. Our studies specifically implicate HSD17B4 isoform 2 loss in lethal prostate cancer."	"Patients with advanced prostate cancer who receive androgen deprivation therapy (ADT) almost invariably develop castration-resistant disease. The mechanism of resistance is largely based on synthesis of intratumoral androgens from adrenal precursors, requiring enzymatic action of 3β-hydroxysteroid dehydrogenase/Δ<sup>5→4</sup> isomerase 1 (3β-HSD1), encoded by HSD3B1. A nucleotide polymorphism (1245A&gt;C) in HSD3B1 results in a protein variant with increased steady-state levels and subsequently increased androgen synthesis from extragonadal precursors. Multiple clinical studies have shown that patients with the variant allele have significantly worse outcomes after ADT than those without, indicating that HSD3B1 variant status is a predictive biomarker of shortened ADT response. In addition, inheritance of the HSD3B1 variant is associated with extended responses to 17α-hydroxylase/17,20-lyase (CYP17A1) inhibition with a nonsteroidal agent, adding to evidence of increased tumour dependence on extragonadal androgens in patients who inherited the HSD3B1 variant. However, steroidal drugs with a 3β-hydroxyl, Δ<sup>5</sup>-structure, such as abiraterone, are also metabolized by 3β-HSD1, and 5α-abiraterone, a downstream metabolite, has been shown to activate the androgen receptor, potentially driving cancer progression. These data indicate a potential requirement to modify the treatment framework of patients harbouring variant HSD3B1."	"The variant HSD3B1 (1245C) allele enhances dihydrotestosterone synthesis and predicts resistance to androgen-deprivation therapy (ADT) for biochemically recurrent prostate cancer after prostatectomy and for metastatic disease. Whether this is true after radiotherapy is unknown. To determine whether the HSD3B1 (1245C) allele predicts worse clinical outcomes from ADT for biochemical recurrence after radiotherapy. The Prostate Clinical Research Information System at Dana-Farber Cancer Institute was used to identify the study cohort, which included men treated with ADT for biochemical recurrence after primary radiotherapy between 1996 and 2013. We retrospectively determined HSD3B1 genotype. Time to progression, time to metastasis, and overall survival according to genotype. Demographic and treatment characteristics were evaluated for confounders. Multivariable analyses were performed to adjust for known prognostic factors. A total of 218 eligible men were identified, of whom 213 (98%) were successfully genotyped. Of these, 97 of 213 (46%), 96 of 213 (45%) and 20 of 213 (9%) carried 0, 1, and 2 variant alleles. Overall variant allele frequency was 136 of 426 alleles (32%). Median patient age (interquartile range) was 69 (63-74), 72 (65-78), and 69 (65-77) years for 0, 1, and 2 variant alleles (P = .03). Demographic and treatment factors were otherwise similar. During a median follow-up of 7.9 years, median time to progression was 2.3 years (95% CI, 1.6-3.1 years) with 0 variant alleles, 2.3 years (95% CI, 1.5-3.3 years) with 1 variant allele, and 1.4 years (95% CI, 0.7-3.3 years) with 2 variant alleles (P = .68). Median time to metastasis diminished with the number of variant alleles inherited: 7.4 (95% CI, 6.7-9.7), 5.8 (95% CI, 4.9-6.5), and 4.4 (95% CI, 3.0-5.7) years, with inheritance of 0, 1, and 2 variant alleles, respectively (P = .03). Median OS was 7.7 (95% CI, 6.7-10.3), 6.9 (95% CI, 5.8-8.4), and 7.2 (95% CI, 3.8-7.9) years with inheritance of 0, 1, and 2 variant alleles, respectively (P = .31). On multivariable analysis with 0 variant alleles as the reference, the adjusted hazard ratio for metastasis was 1.19 (95% CI, 0.74-1.92) (P = .48) for 1 variant allele and 2.01 (95% CI, 1.02-3.97) (P = .045) for 2 variant alleles. Multivariable analysis did not demonstrate significant differences in TTP or OS. In this study, the HSD3B1 (1245C) allele was associated with more rapid development of metastases in men treated with ADT for biochemical recurrence after primary radiation therapy for prostate cancer. Notably, 105 of 213 men (49%) had received prior ADT, and 119 of 213 (56%) received an androgen receptor antagonist during salvage treatment, both of which may attenuate the effect of the variant allele."	"The HSD3B1 (1245C) germline variant encodes for a gain-of-function missense in 3β-hydroxysteroid dehydrogenase isoenzyme 1 (3βHSD1) that results in increased dihydrotestosterone synthesis from extragonadal precursors and is predictive of more rapid progression to castration-resistant prostate cancer (CRPC). To determine whether the HSD3B1 (1245C) genotype is predictive of clinical response to extragonadal androgen ablation with nonsteroidal 17α-hydroxylase/17,20-lyase (CYP17A1) inhibition in men with metastatic CRPC. An observational study of men with metastatic CRPC treated with ketoconazole between June 1998 and December 2012 was conducted at the University of California, San Francisco. Extragonadal androgen ablation with the nonsteroidal CYP17A1 inhibitor ketoconazole among men with metastatic CRPC. The primary end points of analysis were duration of ketoconazole therapy and time to disease progression stratified by HSD3B1 genotype. Disease progression was defined as either biochemical or radiographic progression, using the Prostate Cancer Working Group 3 and Response Evaluation Criteria in Solid Tumors (RECIST) version 1.1 definitions, respectively. Kaplan-Meier analysis was used to estimate time on therapy and time to disease progression. A log-rank test for trend was used to compare outcomes by HSD3B1 genotype. A total of 90 men (median [interquartile range] age, 61.5 [55.3-67.0] years) with metastatic CRPC were included in the analysis, with sufficient data to determine duration of ketoconazole therapy and time to disease progression in 88 and 81 patients, respectively. The median duration of therapy increased with the number of inherited HSD3B1 (1245C) variant alleles: 5.0 months (95% CI, 3.4-10.4) for 0 variant alleles; 7.5 months (95% CI, 4.9-19.2) for 1; and 12.3 months (95% CI, 1.8-not reached) for 2 (overall comparison for trend, P = .01). Median progression-free survival also increased with number of HSD3B1 (1245C) variant alleles inherited: 5.4 months (95% CI, 3.7-7.5) for 0 variant alleles; 9.7 months (95% CI, 5.6-32.9) for 1; and 15.2 months (95% CI, 7.8-not reached) for 2 (overall comparison for trend, P = .03). Inheritance of the HSD3B1 (1245C) variant allele, which is a predictive biomarker of resistance to castration, is also a predictive biomarker of sensitivity to extragonadal androgen ablation with a nonsteroidal CYP17A1 inhibitor. These findings signal a possible pathway of treatment stratification for patients with prostate cancer."	"Purpose: A major mechanism of castration-resistant prostate cancer (CRPC) involves intratumoral biosynthesis of dihydrotestosterone (DHT) from adrenal precursors. We have previously shown that adrenal-derived androstenedione (AD) is the preferred substrate over testosterone (T) for 5α-reductase expressed in metastatic CRPC, bypassing T as an obligate precursor to DHT. However, the metabolic pathway of adrenal-derived DHT biosynthesis has not been rigorously investigated in the setting of primary disease in the prostate.Experimental Design: Seventeen patients with clinically localized prostate cancer were consented for fresh tissues after radical prostatectomy. Prostate tissues were cultured ex vivo in media spiked with an equimolar mixture of AD and T, and stable isotopic tracing was employed to simultaneously follow the enzymatic conversion of both precursor steroids into nascent metabolites, detected by liquid chromatography-tandem mass spectrometry. CRPC cell line models and xenograft tissues were similarly assayed for comparative analysis. A tritium-labeled steroid radiotracing approach was used to validate our findings.Results: Prostatectomy tissues readily 5α-reduced both T and AD. Furthermore, 5α-reduction of AD was the major directionality of metabolic flux to DHT. However, AD and T were comparably metabolized by 5α-reductase in primary prostate tissues, contrasting the preference exhibited by CRPC in which AD was favored over T. 5α-reductase inhibitors effectively blocked the conversion of AD to DHT.Conclusions: Both AD and T are substrates of 5α-reductase in prostatectomy tissues, resulting in two distinctly nonredundant metabolic pathways to DHT. Furthermore, the transition to CRPC may coincide with a metabolic switch toward AD as the favored substrate. Clin Cancer Res; 23(20); 6351-62. ©2017 AACR."	"Galeterone is a steroidal CYP17A1 inhibitor, androgen receptor (AR) antagonist, and AR degrader, under evaluation in a phase III clinical trial for castration-resistant prostate cancer (CRPC). The A/B steroid ring (Δ<sup>5</sup>,3β-hydroxyl) structure of galeterone is identical to that of cholesterol, which makes endogenous steroids with the same structure (e.g., dehydroepiandrosterone and pregnenolone) substrates for the enzyme 3β-hydroxysteroid dehydrogenase (3βHSD). We found that galeterone is metabolized by 3βHSD to Δ<sup>4</sup>-galeterone (D4G), which is further converted by steroid-5α-reductase (SRD5A) to 3-keto-5α-galeterone (5αG), 3α-OH-5α-galeterone, and 3β-OH-5α-galeterone; in vivo it is also converted to the three corresponding 5β-reduced metabolites. D4G inhibits steroidogenesis and suppresses AR protein stability, AR target gene expression, and xenograft growth comparably with galeterone, and further conversion by SRD5A leads to loss of several activities that inhibit the androgen axis that may compromise clinical efficacy. Together, these findings define a critical metabolic class effect of steroidal drugs with a Δ<sup>5</sup>,3β-hydroxyl structure."	"The androgen-signaling axis plays a pivotal role in the pathogenesis of prostate cancer. Since the landmark discovery by Huggins and Hodges, gonadal depletion of androgens has remained a mainstay of therapy for advanced disease. However, progression to castration-resistant prostate cancer (CRPC) typically follows and is largely the result of restored androgen signaling. Efforts to understand the mechanisms behind CRPC have revealed new insights into dysregulated androgen signaling and intratumoral androgen synthesis, which has ultimately led to the development of several novel androgen receptor (AR)-directed therapies for CRPC. However, emergence of resistance to these newer agents has also galvanized new directions in investigations of prereceptor and postreceptor AR regulation. Here, we review our current understanding of AR signaling as it pertains to the biology and natural history of prostate cancer."
+"Silverman, Robert"	"Cancer Biology"	30814222	26517238	25816776	24987090	24905202	24371271	23732991	22875977	22615748	22312343	"Drugs that reverse epigenetic silencing, such as the DNA methyltransferase inhibitor (DNMTi) 5-azacytidine (AZA), have profound effects on transcription and tumor cell survival. AZA is an approved drug for myelodysplastic syndromes and acute myeloid leukemia, and is under investigation for different solid malignant tumors. AZA treatment generates self, double-stranded RNA (dsRNA), transcribed from hypomethylated repetitive elements. Self dsRNA accumulation in DNMTi-treated cells leads to type I IFN production and IFN-stimulated gene expression. Here we report that cell death in response to AZA treatment occurs through the 2',5'-oligoadenylate synthetase (OAS)-RNase L pathway. OASs are IFN-induced enzymes that synthesize the RNase L activator 2-5A in response to dsRNA. Cells deficient in RNase L or OAS1 to 3 are highly resistant to AZA, as are wild-type cells treated with a small-molecule inhibitor of RNase L. A small-molecule inhibitor of c-Jun NH2-terminal kinases (JNKs) also antagonizes RNase L-dependent cell death in response to AZA, consistent with a role for JNK in RNase L-induced apoptosis. In contrast, the rates of AZA-induced and RNase L-dependent cell death were increased by transfection of 2-5A, by deficiencies in ADAR1 (which edits and destabilizes dsRNA), PDE12 or AKAP7 (which degrade 2-5A), or by ionizing radiation (which induces IFN-dependent signaling). Finally, OAS1 expression correlates with AZA sensitivity in the NCI-60 set of tumor cell lines, suggesting that the level of OAS1 can be a biomarker for predicting AZA sensitivity of tumor cells. These studies may eventually lead to pharmacologic strategies for regulating the antitumor activity and toxicity of AZA and related drugs."	"RNase L is a regulated endoribonuclease that functions in the interferon antiviral response. Activation of RNase L by 2', 5'-oligoadenylates has been linked to apoptosis, autophagy and inflammation. Genetic studies have also suggested the possible involvement of the RNase L gene (RNASEL) on chromosome 1q25.3 in several types of cancer. Here we report that ablation of RNase L in human prostate cancer PC3 cells by CRISPR/Cas9 gene editing technology enhanced cell migration as determined both by transwell assays and scratch wound healing assays. In addition, RNase L knockdown by means of RNAi increased migration of PC3 and DU145 cells in response to either fibronectin or serum stimulation, as did homozygous disruption of the RNase L gene in mouse embryonic fibroblasts. Serum or fibronectin stimulation of focal adhesion kinase (FAK) autophosphorylation on tyrosine-397 was increased by either knockdown or ablation of RNase L. In contrast, a missense mutant RNase L (R667A) lacking catalytic activity failed to suppress cell migration in PC3 cells. However, a nuclease-inactive mutant mouse RNase L (W630A) was able to partially inhibit migration of mouse fibroblasts. Consistent with a role for the catalytic activity of RNase L, transfection of PC3 cells with the RNase L activator, 2', 5'-oligoadenylate, suppressed cell migration. RNase L knockdown in PC3 cells enhanced tumor growth and metastasis following implantation in the mouse prostate. Our results suggest that naturally occurring mutations in the RNase L gene might promote enhanced cell migration and metastasis. "	"The NLRP3 inflammasome assembles in response to danger signals, triggering self-cleavage of procaspase-1 and production of the proinflammatory cytokine IL-1β. Although virus infection activates the NLRP3 inflammasome, the underlying events remain incompletely understood. We report that virus activation of the NLRP3 inflammasome involves the 2',5'-oligoadenylate (2-5A) synthetase(OAS)/RNase L system, a component of the interferon-induced antiviral response that senses double-stranded RNA and activates endoribonuclease RNase L to cleave viral and cellular RNAs. The absence of RNase L reduces IL-1β production in influenza A virus-infected mice. RNA cleavage products generated by RNase L enhance IL-1β production but require the presence of 2',3'-cyclic phosphorylated termini characteristic of RNase L activity. Additionally, these cleavage products stimulate NLRP3 complex formation with the DExD/H-box helicase, DHX33, and mitochondrial adaptor protein, MAVS, which are each required for effective NLRP3 inflammasome activation. Thus, RNA cleavage events catalyzed by RNase L are required for optimal inflammasome activation during viral infections."	"Viral 2',5'-phosphodiesterases (2',5'-PDEs) help disparate RNA viruses evade the antiviral activity of interferon (IFN) by degrading 2',5'-oligoadenylate (2-5A) activators of RNase L. A kinase anchoring proteins (AKAPs) bind the regulatory subunits of protein kinase A (PKA) to localize and organize cyclic AMP (cAMP) signaling during diverse physiological processes. Among more than 43 AKAP isoforms, AKAP7 appears to be unique in its homology to viral 2',5'-PDEs. Here we show that mouse AKAP7 rapidly degrades 2-5A with kinetics similar to that of murine coronavirus (mouse hepatitis virus [MHV]) strain A59 ns2 and human rotavirus strain WA VP3 proteins. To determine whether AKAP7 could substitute for a viral 2',5'-PDE, we inserted AKAP7 cDNA into an MHV genome with an inactivated ns2 gene. The AKAP7 PDE domain or N-terminally truncated AKAP7 (both lacking a nuclear localization motif), but not full-length AKAP7 or a mutant, AKAP7(H185R), PDE domain restored the infectivity of ns2 mutant MHV in bone marrow macrophages and in livers of infected mice. Interestingly, the AKAP7 PDE domain and N-terminally deleted AKAP7 were present in the cytoplasm (the site of MHV replication), whereas full-length AKAP7 was observed only in nuclei. We suggest the possibility that viral acquisition of the host AKAP7 PDE domain might have occurred during evolution, allowing diverse RNA viruses to antagonize the RNase L pathway. Importance: Early virus-host interactions determine whether an infection is established, highlighting the need to understand fundamental mechanisms regulating viral pathogenesis. Recently, our laboratories reported a novel mode of regulation of the IFN antiviral response. We showed that the coronavirus MHV accessory protein ns2 antagonizes the type I IFN response, promoting viral replication and hepatitis. ns2 confers virulence by cleaving 2',5'-oligoadenylate (2-5A) activators of RNase L in macrophages. We also reported that the rotavirus VP3 C-terminal domain (VP3-CTD) cleaves 2-5A and that it may rescue ns2 mutant MHV. Here we report that a cellular protein, AKAP7, has an analogous 2',5'-phosphodiesterase (2',5'-PDE) domain that is able to restore the growth of chimeric MHV expressing inactive ns2. The proviral effect requires cytoplasmic localization of the AKAP7 PDE domain. We speculate that AKAP7 is the ancestral precursor of viral proteins, such as ns2 and VP3, that degrade 2-5A to evade the antiviral activity of RNase L."	"The host interferon (IFN) antiviral response involves a myriad of diverse biochemical pathways that disrupt virus replication cycles at many different levels. As a result, viruses have acquired and evolved genes that antagonize the host antiviral proteins. IFNs inhibit viral infections in part through the 2',5'-oligoadenylate (2-5A) synthetase (OAS)/RNase L pathway. OAS proteins are pathogen recognition receptors that exist at different basal levels in different cell types and that are IFN inducible. Upon activation by the pathogen-associated molecular pattern viral double-stranded RNA, certain OAS proteins synthesize 2-5A from ATP. 2-5A binds to the antiviral enzyme RNase L causing its dimerization and activation. Recently, disparate RNA viruses, group 2a betacoronaviruses, and group A rotaviruses, have been shown to produce proteins with 2',5'-phosphodiesterase (PDE) activities that eliminate 2-5A thereby evading the antiviral activity of the OAS/RNase L pathway. These viral proteins are members of the eukaryotic-viral LigT-like group of 2H phosphoesterases, so named for the presence of 2 conserved catalytic histidine residues. Here, we will review the biochemistry, biology, and implications of viral and cellular 2',5'-PDEs that degrade 2-5A. In addition, we discuss alternative viral and cellular strategies for limiting the activity of OAS/RNase L. "	"Retrotransposons are mobile genetic elements, and their mobility can lead to genomic instability. Retrotransposon insertions are associated with a diverse range of sporadic diseases, including cancer. Thus, it is not a surprise that multiple host defense mechanisms suppress retrotransposition. The 2',5'-oligoadenylate (2-5A) synthetase (OAS)-RNase L system is a mechanism for restricting viral infections during the interferon antiviral response. Here, we investigated a potential role for the OAS-RNase L system in the restriction of retrotransposons. Expression of wild type (WT) and a constitutively active form of RNase L (NΔ385), but not a catalytically inactive RNase L mutant (R667A), impaired the mobility of engineered human LINE-1 (L1) and mouse intracisternal A-type particle retrotransposons in cultured human cells. Furthermore, WT RNase L, but not an inactive RNase L mutant (R667A), reduced L1 RNA levels and subsequent expression of the L1-encoded proteins (ORF1p and ORF2p). Consistently, confocal immunofluorescent microscopy demonstrated that WT RNase L, but not RNase L R667A, prevented formation of L1 cytoplasmic foci. Finally, siRNA-mediated depletion of endogenous RNase L in a human ovarian cancer cell line (Hey1b) increased the levels of L1 retrotransposition by ∼2-fold. Together, these data suggest that RNase L might function as a suppressor of structurally distinct retrotransposons. "	"The use of lytic viruses to preferentially infect and eliminate cancer cells while sparing normal cells is a promising experimental therapeutic approach for treating cancer. However, the efficacy of oncolytic virotherapy is often limited by two innate immunity pathways, the protein kinase PKR and the 2'-5'-oligoadenylate (OAS)/RNase L systems, which are widely present in many but not all tumor cell types. Previously, we reported that the anticancer drug, sunitinib, an inhibitor of VEGF-R and PDGF-R, has off-target effects against both PKR and RNase L. Here we show that combining sunitinib treatments with infection by an oncolytic virus, vesicular stomatitis virus (VSV), led to the elimination of prostate, breast, and kidney malignant tumors in mice. In contrast, either virus or sunitinib alone slowed tumor progression but did not eliminate tumors. In prostate tumors excised from treated mice, sunitinib decreased levels of the phosphorylated form of translation initiation factor, eIF2-α, a substrate of PKR, by 10-fold while increasing median viral titers by 23-fold. The sunitinib/VSV regimen caused complete and sustained tumor regression in both immunodeficient and immunocompetent animals. Results indicate that transient inhibition of innate immunity with sunitinib enhances oncolytic virotherapy allowing the recovery of tumor-bearing animals."	"Autophagy is a programmed homeostatic response to diverse types of cellular stress that disposes of long-lived proteins, organelles, and invading microbes within double-membraned structures called autophagosomes. The 2',5'-oligoadenylate/RNase L system is a virus-activated host RNase pathway that disposes of or processes viral and cellular single-stranded RNAs. Here we report that activation of RNase L during viral infections induces autophagy. Accordingly, infections with encephalomyocarditis virus or vesicular stomatitis virus led to higher levels of autophagy in wild-type mouse embryonic fibroblasts (MEF) than in RNase L-null MEF. Similarly, direct activation of RNase L with a 2',5'-oligoadenylate resulted in p62(SQSTM1) degradation, LC3BI/LC3BII conversion, and appearance of autophagosomes. To determine the effect of RNase L-mediated autophagy on viral replication, we compared viral yields in wild-type and RNase L-null MEF in the absence or presence of either chemical inhibitors of autophagy (bafilomycin A1 or 3-methyladenine) or small interfering RNA (siRNA) against ATG5 or beclin-1. At a low multiplicity of infection, induction of autophagy by RNase L during the initial cycle of virus growth contributed to the suppression of virus replication. However, in subsequent rounds of infection, autophagy promoted viral replication, reducing the antiviral effect of RNase L. Our results indicate a novel function of RNase L as an inducer of autophagy that affects viral yields."	"The 22Rv1 cell line is widely used for prostate cancer research and other studies throughout the world. These cells were established from a human prostate tumor, CWR22, that was serially passaged in nude mice and selected for androgen independence. The 22Rv1 cells are known to produce high titers of xenotropic murine leukemia virus-related virus (XMRV). Recent studies suggested that XMRV was inadvertently created in the 1990's when two murine leukemia virus (MLV) genomes (pre-XMRV1 and pre-XMRV-2) recombined during passaging of the CWR22 tumor in mice. The conclusion that XMRV originated from mice and not the patient was based partly on the failure to detect XMRV in early CWR22 xenografts. While that deduction is certainly justified, we examined the possibility that a closely related virus could have been present in primary tumor tissue. Here we report that we have located the original prostate tumor tissue excised from patient CWR22 and have assayed the corresponding DNA by PCR and the tissue sections by fluorescence in situ hybridization for the presence of XMRV or a similar virus. The primary tumor tissues lacked mouse DNA as determined by PCR for intracisternal A type particle DNA, thus avoiding one of the limitations of studying xenografts. We show that neither XMRV nor a closely related virus was present in primary prostate tissue of patient CWR22. Our findings confirm and reinforce the conclusion that XMRV is a recombinant laboratory-generated mouse virus that is highly adapted for human prostate cancer cells."	"Xenotropic murine leukemia virus-related virus (XMRV) was first reported in 2006 in a study of human prostate cancer patients with genetic variants of the antiviral enzyme, RNase L. Subsequent investigations in North America, Europe, Asia, and Africa have either observed or failed to detect XMRV in patients (prostate cancer, chronic fatigue syndrome-myalgic encephalomyelitis (CFS-ME), and immunosuppressed with respiratory tract infections) or normal, healthy, control individuals. The principal confounding factors are the near ubiquitous presence of mouse-derived reagents, antibodies and cells, and often XMRV itself, in laboratories. XMRV infects and replicates well in many human cell lines, but especially in certain prostate cancer cell lines. XMRV also traffics to prostate in a nonhuman primate model of infection. Here, we will review the discovery of XMRV and then focus on prostate cancer-related research involving this intriguing virus."
+"Smith, Jonathan"	"Cardiovascular and Metabolic Sciences"	31102955	30354238	29615096	29545482	29301789	29097366	27514935	26783232	25561462	25359426	"We previously demonstrated that Apoe<sup>-/-</sup> mice on DBA/2 vs. AKR genetic background have &gt;10-fold larger atherosclerotic lesions. Prior quantitative trait locus mapping via strain intercrossing identified a region on chromosome 17, Ath26, as the strongest atherosclerosis-modifying locus. We aimed to confirm Ath26, identify candidate genes, and validate the candidate gene effects on atherosclerosis. We bred chromosome 17 interval congenic mice to confirm that Ath26 locus contains atherosclerosis modifying gene(s). Bone marrow derived macrophage transcriptomics was performed to identify candidate genes at this locus whose expression was correlated with lesions in a strain intercross. The Cyp4f13 candidate gene was tested via a gene knockout approach and in vivo and ex vivo phenotype analyses. A congenic mouse strain containing the DBA/2 interval on chromosome 17 on the AKR Apoe<sup>-/-</sup> background demonstrated that this interval conferred increased lesion area. Transcriptomic analysis of bone marrow macrophages identified that expression of the Cyp4f13 gene, mapping to this locus, was highly associated with lesion area in an F2 cohort. AKR vs. DBA/2 macrophages had less Cyp4f13 mRNA expression, and their livers had lower leukotriene B4 (LTB4) 20-hydroxylase enzymatic activity. A Cyp4f13 knockout allele was bred onto the DBA/2 Apoe<sup>-/-</sup> background and this conferred less enzymatic activity, decreased macrophage migration in response to LTB4, and smaller aortic root atherosclerotic lesions. Allelic differences in the Cyp4f13 gene may in part be responsible for the Ath26 QTL conferring larger lesions in DBA/2 vs. AKR Apoe<sup>-/-</sup> mice."	"Objective- We have shown that ABCA1 (ATP-binding cassette protein A1) mediates unfolding of the apoA1 (apolipoprotein A1) N-terminal helical hairpin during apoA1 lipidation. Others have shown that an acidic pH exposes the hydrophobic surface of apoA1. We postulated that the V-ATPase (vacuolar ATPase) proton pump facilitates apoA1 unfolding and promotes ABCA1-mediated cholesterol efflux. Approach and Results- We found that V-ATPase inhibitors dose-dependently decreased ABCA1-mediated cholesterol efflux to apoA1 in baby hamster kidney cells and RAW264.7 cells; and similarly, siRNA knockdown of ATP6V0C inhibited ABCA1-mediated cholesterol efflux to apoA1 in RAW264.7 cells. Although ABCA1 expression did not alter total cellular levels of V-ATPase, ABCA1 increased the cell surface levels of the V0A1 and V1E1 subunits of V-ATPase. We generated a fluorescein isothiocyanate/Alexa647 double-labeled fluorescent ratiometric apoA1 pH indicator whose fluorescein isothiocyanate/Alexa647 emission ratio decreased as the pH drops. We found that ABCA1 induction in baby hamster kidney cells led to acidification of the cell-associated apoA1 pH indicator, compared with control cells without ABCA1 expression. The V-ATPase inhibitor bafilomycin A1 dose-dependently inhibited the apoA1 pH shift in ABCA1-expressing cells, without affecting the levels of cell-associated apoA1. However, we were not able to detect ABCA1-mediated extracellular proton release. We showed that acidic pH facilitated apoA1 unfolding, apoA1 solubilization of phosphatidycholine:phosphatidyserine liposomes, and increased lipid fluidity of these liposomes. Conclusions- Our results support a model that ABCA1 recruits V-ATPase to the plasma membrane where V-ATPase mediates apoA1 acidification and membrane remodeling that promote apoA1 unfolding and ABCA1-mediated HDL (high-density lipoprotein) biogenesis and lipid efflux."	"To determine if deficiency of CD6, a cell surface protein on lymphocytes that alters natural antibody production, increases atherosclerosis in ApoE-deficient mice fed a chow or a western-type diet. We compared cholesterol levels, IgM, B1a cells, and aortic root lesion areas in ApoE-deficient vs. CD6/ApoE double deficient mice. Feeding the high-fat western type diet increased all parameters, except for B1a cell numbers decreased. Sex also had an effect on many parameters with males having increased body weights, higher high density lipoprotein cholesterol, higher B1a cells, but smaller atherosclerotic lesions if chow fed mice; however, this sex effect on atherosclerosis was absent in mice fed the western-type diet. CD6 deficiency had no effect on atherosclerosis in both male and female mice on either diet. Thus, loss of CD6 on lymphocytes did not lead to expected reductions in B1a cells and protective IgM levels, and in turn did not alter atherosclerosis in mice."	"Genome-wide association studies have identified 23 loci for atrial fibrillation (AF), but the mechanisms responsible for these associations, as well as the causal genes and genetic variants, remain undefined. To identify the effect of common genetic variants on gene expression that might explain the mechanisms linking genome-wide association loci with AF risk, we performed RNA sequencing of left atrial appendages from a biracial cohort of 265 subjects. Combining gene expression data with genome-wide single nucleotide polymorphism data, we found that approximately two-thirds of the expressed genes were regulated in cis by common genetic variants at a false discovery rate of &lt;0.05, defined as cis-expression quantitative trait loci. Twelve of 23 reported AF genome-wide association loci displayed genome-wide significant cis-expression quantitative trait loci, at PRRX1 (chromosome 1q24), SNRNP27 (1q24), CEP68 (2p14), FKBP7 (2q31), KCNN2 (5q22), FAM13B (5q31), CAV1 (7q31), ASAH1 (8p22), MYOZ1 (10q22), C11ORF45 (11q24), TBX5 (12q24), and SYNE2 (14q23), suggesting that altered expression of these genes plays a role in AF susceptibility. Allelic expression imbalance was used as an independent method to characterize the cis-control of gene expression. One thousand two hundred forty-eight of 5153 queried genes had cis-single nucleotide polymorphisms that significantly regulated allelic expression at a false discovery rate of &lt;0.05. We provide a genome-wide catalog of the genetic control of gene expression in human left atrial appendage. These data can be used to confirm the relevance of genome-wide association loci and to direct future functional studies to identify the genes and genetic variants responsible for complex diseases such as AF."	"There are many differences in arterial diseases between men and women, including prevalence, clinical manifestations, treatments, and prognosis. The new policy of the National Institutes of Health, which requires the inclusion of sex as a biological variable for preclinical studies, aims to foster new mechanistic insights and to enhance our understanding of sex differences in human diseases. The purpose of this statement is to suggest guidelines for designing and reporting sex as a biological variable in animal models of atherosclerosis, thoracic and abdominal aortic aneurysms, and peripheral arterial disease. We briefly review sex differences of these human diseases and their animal models, followed by suggestions on experimental design and reporting of animal studies for these vascular pathologies."	"Cholesterol metabolism is a dynamic process involving intracellular trafficking, cholesterol esterification, and cholesterol ester hydrolysis. Our objective was to identify genes that regulate macrophage cholesterol metabolism. We performed quantitative trait loci mapping of free and esterified cholesterol levels and the ratio of esterified to free cholesterol in acetylated low-density lipoprotein-loaded bone marrow-derived macrophages from an AKR×DBA/2 strain intercross. Ten distinct cholesterol modifier loci were identified, and bioinformatics was used to prioritize candidate genes. The strongest locus was located on distal chromosome 1, which we named Mcmm1 (macrophage cholesterol metabolism modifier 1). This locus harbors the Soat1 (sterol O-acyltransferase 1) gene, encoding Acyl-coenzyme A:cholesterol acyltransferase 1 (ACAT1), which esterifies free cholesterol. The parental AKR strain has an exon 2 deletion in Soat1, which leads to a 33 amino acid N-terminal truncation in ACAT1. CRISPR/Cas9 editing of DBA/2 embryonic stem cells was performed to replicate the AKR strain Soat1 exon 2 deletion, while leaving the remainder of the genome unaltered. DBA/2 stem cells and stem cells heterozygous and homozygous for the Soat1 exon 2 deletion were differentiated into macrophages and loaded with acetylated low-density lipoprotein. DBA/2 stem cell-derived macrophages accumulated less free cholesterol and more esterified cholesterol relative to cells heterozygous and homozygous for the Soat1 exon 2 deletion. A Soat1 deletion present in AKR mice, and resultant N-terminal ACAT1 truncation, was confirmed to be a significant modifier of macrophage cholesterol metabolism. Other Mcmm loci candidate genes were prioritized via bioinformatics."	"The molecular mechanism by which ATP-binding cassette transporter A1 (ABCA1) mediates cellular binding of apolipoprotein A-I (apoA1) and nascent high-density lipoprotein (HDL) assembly is not well understood. To determine the cell surface lipid that mediates apoA1 binding to ABCA1-expressing cells and the role it plays in nascent HDL assembly. Using multiple biochemical and biophysical methods, we found that apoA1 binds specifically to phosphatidylinositol (4,5) bis-phosphate (PIP2). Flow cytometry and PIP2 reporter-binding assays demonstrated that ABCA1 led to PIP2 redistribution from the inner to the outer leaflet of the plasma membrane. Enzymatic cleavage of cell surface PIP2 or decreased cellular PIP2 by knockdown of phosphatidylinositol-5-phosphate 4-kinase impaired apoA1 binding and cholesterol efflux to apoA1. PIP2 also increased the spontaneous solubilization of phospholipid liposomes by apoA1. Using site-directed mutagenesis, we found that ABCA1's PIP2 and phosphatidylserine translocase activities are independent from each other. Furthermore, we discovered that PIP2 is effluxed from cells to apoA1, where it is associated with HDL in plasma, and that PIP2 on HDL is taken up by target cells in a scavenger receptor-BI-dependent manner. Mouse plasma PIP2 levels are apoA1 gene dosage-dependent and are &gt;1 μM in apoA1 transgenic mice. ABCA1 has PIP2 floppase activity, which increases cell surface PIP2 levels that mediate apoA1 binding and lipid efflux during nascent HDL assembly. We found that PIP2 itself is effluxed to apoA1 and it circulates on plasma HDL, where it can be taken up via the HDL receptor scavenger receptor-BI."	"Genome-wide studies reveal that genetic variants at chromosome 4q25 constitute the strongest locus associated with atrial fibrillation, the most frequent arrhythmia. However, the mechanisms underlying this association are unknown. Our goal is to find and characterize left atrial-expressed transcripts in the chromosome 4q25 atrial fibrillation risk locus that may play a role in atrial fibrillation pathogenesis. RNA sequencing performed on human left/right pairs identified an intergenic long noncoding RNA adjacent to the PITX2 gene, which we have named PANCR (PITX2 adjacent noncoding RNA). In a human tissue screen, PANCR was expressed specifically in the left atria and eye and in no other chambers of the heart. The levels of PANCR and PITX2c RNAs were highly correlated in 233 human left atrial appendage samples. PANCR levels were not associated with either atrial rhythm status or the genotypes of the chromosome 4q25 atrial fibrillation risk variants. Both PANCR and PITX2c RNAs were induced early during differentiation of human embryonic stem cells into cardiomyocytes. Because long noncoding RNAs often control gene expression, we performed siRNA-mediated knockdown of PANCR, and this treatment repressed PITX2c expression and mimicked the effects of PITX2c knockdown on global mRNA and miRNA expression. Cell fractionation studies demonstrate that PANCR is primarily localized in the cytoplasm. PANCR and PITX2c are coordinately expressed early during cardiomyocyte differentiation from stem cells. PANCR knockdown decreased PITX2c expression in differentiated cardiomyocytes, altering the transcriptome in a manner similar to PITX2c knockdown."	"HDL functions are impaired by myeloperoxidase (MPO), which selectively targets and oxidizes human apoA1. We previously found that the 4WF isoform of human apoA1, in which the four tryptophan residues are substituted with phenylalanine, is resistant to MPO-mediated loss of function. The purpose of this study was to generate 4WF apoA1 transgenic mice and compare functional properties of the 4WF and wild-type human apoA1 isoforms in vivo. Male mice had significantly higher plasma apoA1 levels than females for both isoforms of human apoA1, attributed to different production rates. With matched plasma apoA1 levels, 4WF transgenics had a trend for slightly less HDL-cholesterol versus human apoA1 transgenics. While 4WF transgenics had 31% less reverse cholesterol transport (RCT) to the plasma compartment, equivalent RCT to the liver and feces was observed. Plasma from both strains had similar ability to accept cholesterol and facilitate ex vivo cholesterol efflux from macrophages. Furthermore, we observed that 4WF transgenic HDL was partially (∼50%) protected from MPO-mediated loss of function while human apoA1 transgenic HDL lost all ABCA1-dependent cholesterol acceptor activity. In conclusion, the structure and function of HDL from 4WF transgenic mice was not different than HDL derived from human apoA1 transgenic mice. "	"ABCA1 mediates the secretion of cellular free cholesterol and phospholipids to an extracellular acceptor, apolipoprotein AI, to form nascent high-density lipoprotein (HDL). Thus, ABCA1 is a key molecule in cholesterol homeostasis. Functional studies of certain Tangier disease mutations demonstrate that ABCA1 has multiple activities, including plasma membrane remodeling and apoAI binding to cell surface, which participate in nascent HDL biogenesis. Recent advances in our understanding of ABCA1 have demonstrated that ABCA1also mediates unfolding the N terminus of apoAI on the cell surface, followed by lipidation of apoAI and release of nascent HDL. Although ABCA1-mediated cholesterol efflux to apoAI can occur on the plasma membrane, the role of apoAI retroendocytosis during cholesterol efflux may play a role in macrophage foam cells that store cholesterol esters in cytoplasmic lipid droplets."
+"Southern, Brian"	"Inflammation and Immunity"	26763235	26760523	29733782	28523001	26597012	24644284	23499373	NA	NA	NA	"Pro-fibrotic mesenchymal cells are known to be the key effector cells of fibroproliferative disease, but the specific matrix signals and the induced cellular responses that drive the fibrogenic phenotype remain to be elucidated. The key mediators of the fibroblast fibrogenic phenotype were characterized using a novel assay system that measures fibroblast behavior in response to actual normal and fibrotic lung tissue. Using this system, we demonstrate that normal lung promotes fibroblast motility and polarization, while fibrotic lung immobilizes the fibroblast and promotes myofibroblast differentiation. These context-specific phenotypes are surprisingly both mediated by myosin II. The role of myosin II is supported by the observation of an increase in myosin phosphorylation and a change in intracellular distribution in fibroblasts on fibrotic lung, as compared with normal lung. Moreover, loss of myosin II activity has opposing effects on protrusive activity in fibroblasts on normal and fibrotic lung. Loss of myosin II also selectively inhibits myofibroblast differentiation in fibroblasts on fibrotic lung. Importantly, these findings are recapitulated by varying the matrix stiffness of polyacrylamide gels in the range of normal and fibrotic lung tissue. Comparison of the effects of myosin inhibition on lung tissue with that of polyacrylamide gels suggests that matrix fiber organization drives the fibroblast phenotype under conditions of normal/soft lung, while matrix stiffness drives the phenotype under conditions of fibrotic/stiff lung. This work defines novel roles for myosin II as a key regulatory effector molecule of the pro-fibrotic phenotype, in response to biophysical properties of the matrix. "	"As long-term smokers undergo computed tomography (CT) to screen for lung cancer, cases of interstitial lung disease are being discovered incidentally. This article explains how to distinguish among the most common forms of interstitial lung disease in this situation and the role of primary care physicians in managing them. "	"Idiopathic pulmonary fibrosis (IPF) is a specific type of fibrosing interstitial pneumonia of unknown cause. It is usually chronic and progressive, tends to affect mainly adults over age 60, has a predilection for men, and is often fatal. The condition is still underappreciated by pulmonologists and primary care physicians. This article attempts to close that information gap by reviewing the natural course of IPF and presenting an algorithmic approach to diagnosis and treatment based on evidence-based international guidelines. New treatment options are briefly discussed, to raise awareness of new medications that target pulmonary fibrosis."	"Ion channels/pumps are essential regulators of organ homeostasis and disease. In the present review, we discuss the role of the mechanosensitive cation channel, transient receptor potential vanilloid 4 (TRPV4), in cytokine secretion and pulmonary inflammatory diseases such as asthma, cystic fibrosis (CF), and acute lung injury/acute respiratory distress syndrome (ARDS). TRPV4 has been shown to play a role in lung diseases associated with lung parenchymal stretch or stiffness. TRPV4 indirectly mediates hypotonicity-induced smooth muscle contraction and airway remodeling in asthma. Further, the literature suggests that in CF TRPV4 may improve ciliary beat frequency enhancing mucociliary clearance, while at the same time increasing pro-inflammatory cytokine secretion/lung tissue injury. Currently it is understood that the role of TRPV4 in immune cell function and associated lung tissue injury/ARDS may depend on the injury stimulus. Uncovering the downstream mechanisms of TRPV4 action in pulmonary inflammatory diseases is likely important to understanding disease pathogenesis and may lead to novel therapeutics."	"Macrophage phagocytosis of particles and pathogens is an essential aspect of innate host defense. Phagocytic function requires cytoskeletal rearrangements that depend on the interaction between macrophage surface receptors, particulates/pathogens, and the extracellular matrix. In the present study we determine the role of a mechanosensitive ion channel, transient receptor potential vanilloid 4 (TRPV4), in integrating the LPS and matrix stiffness signals to control macrophage phenotypic change for host defense and resolution from lung injury. We demonstrate that active TRPV4 mediates LPS-stimulated murine macrophage phagocytosis of nonopsonized particles (Escherichia coli) in vitro and opsonized particles (IgG-coated latex beads) in vitro and in vivo in intact mice. Intriguingly, matrix stiffness in the range seen in inflamed or fibrotic lung is required to sensitize the TRPV4 channel to mediate the LPS-induced increment in macrophage phagocytosis. Furthermore, TRPV4 is required for the LPS induction of anti-inflammatory/proresolution cytokines. These findings suggest that signaling through TRPV4, triggered by changes in extracellular matrix stiffness, cooperates with LPS-induced signals to mediate macrophage phagocytic function and lung injury resolution. These mechanisms are likely to be important in regulating macrophage function in the context of pulmonary infection and fibrosis. "	"The urokinase-type plasminogen activator receptor (uPAR) is a glycosylphosphatidylinositol-linked membrane protein with no cytosolic domain that localizes to lipid raft microdomains. Our laboratory and others have documented that lung fibroblasts from patients with idiopathic pulmonary fibrosis (IPF) exhibit a hypermotile phenotype. This study was undertaken to elucidate the molecular mechanism whereby uPAR ligation with its cognate ligand, urokinase, induces a motile phenotype in human lung fibroblasts. We found that uPAR ligation with the urokinase receptor binding domain (amino-terminal fragment) leads to enhanced migration of fibroblasts on fibronectin in a protease-independent, lipid raft-dependent manner. Ligation of uPAR with the amino-terminal fragment recruited α5β1 integrin and the acylated form of the Src family kinase, Fyn, to lipid rafts. The biological consequences of this translocation were an increase in fibroblast motility and a switch of the integrin-initiated signal pathway for migration away from the lipid raft-independent focal adhesion kinase pathway and toward a lipid raft-dependent caveolin-Fyn-Shc pathway. Furthermore, an integrin homologous peptide as well as an antibody that competes with β1 for uPAR binding have the ability to block this effect. In addition, its relative insensitivity to cholesterol depletion suggests that the interactions of α5β1 integrin and uPAR drive the translocation of α5β1 integrin-acylated Fyn signaling complexes into lipid rafts upon uPAR ligation through protein-protein interactions. This signal switch is a novel pathway leading to the hypermotile phenotype of IPF patient-derived fibroblasts, seen with uPAR ligation. This uPAR dependent, fibrotic matrix-selective, and profibrotic fibroblast phenotype may be amenable to targeted therapeutics designed to ameliorate IPF. "	"Idiopathic pulmonary fibrosis (IPF) is a progressive fibrotic lung disease whose underlying molecular mechanisms are largely unknown. Herein, we show that focal adhesion kinase-related nonkinase (FRNK) plays a key role in limiting the development of lung fibrosis. Loss of FRNK function in vivo leads to increased lung fibrosis in an experimental mouse model. The increase in lung fibrosis is confirmed at the histological, biochemical, and physiological levels. Concordantly, loss of FRNK function results in increased fibroblast migration and myofibroblast differentiation and activation of signaling proteins that drive these phenotypes. FRNK-deficient murine lung fibroblasts also have an increased capacity to produce and contract matrix proteins. Restoration of FRNK expression in vivo and in vitro reverses these profibrotic phenotypes. These data demonstrate the multiple antifibrotic actions of FRNK. More important, FRNK expression is down-regulated in human IPF, and down-regulation of FRNK in normal human lung fibroblasts recapitulates the profibrotic phenotype seen in FRNK-deficient cells. The effect of loss and gain of FRNK in the experimental model, when taken together with its down-regulation in human IPF, suggests that FRNK acts as an endogenous negative regulator of lung fibrosis by repressing multiple profibrotic responses."	NA	NA	NA
+"Stark, George"	"Cancer Biology"	29581268	29440145	28620095	27852626	26337909	26195767	25767098	25217633	25071181	25028470	"In response to IFNβ, the IL6 gene is activated, modestly at early times by ISGF3 (IRF9 plus tyrosine-phosphorylated STATs 1 and 2), and strongly at late times by U-ISGF3 (IRF9 plus U-STATs 1 and 2, lacking tyrosine phosphorylation). A classical IFN-stimulated response element (ISRE) at -1,513 to -1,526 in the human IL6 promoter is required. Pretreating cells with IFNβ or increasing the expression of U-STAT2 and IRF9 exogenously greatly enhances IL6 expression in response to the classical NF-κB activators IL1, TNF, and LPS. U-STAT2 binds tightly to IRF9, the DNA binding subunit of ISGF3, and also to the p65 subunit of NF-κB. Therefore, as shown by ChIP analyses, U-STAT2 can bridge the ISRE and κB elements in the IL6 promoter. In some cancer cells, the protumorigenic activation of STAT3 will be enhanced by the increased synthesis of IL6 that is facilitated by high expression of U-STAT2 and IRF9."	"Traditional treatments of small-cell lung cancer (SCLC) with cisplatin, a standard-of-care therapy, spare the tumor-initiating cells (TIC) that mediate drug resistance. Here we report a novel therapeutic strategy that preferentially targets TICs in SCLC, in which cisplatin is combined with CBL0137, an inhibitor of the histone chaperone facilitates chromatin transcription (FACT), which is highly expressed in TICs. Combination of cisplatin and CBL0137 killed patient-derived and murine SCLC cell lines synergistically. In response to CBL0137 alone, TICs were more sensitive than non-TICs, in part, because CBL0137 increased expression of the tumor suppressor NOTCH1 by abrogating the binding of negative regulator SP3 to the NOTCH1 promoter, and in part because treatment decreased the high expression of stem cell transcription factors. The combination of cisplatin and CBL0137 greatly reduced the growth of a patient-derived xenograft in mice and also the growth of a syngeneic mouse SCLC tumor. Thus, CBL0137 can be a highly effective drug against SCLC, especially in combination with cisplatin.Significance: These findings reveal a novel therapeutic regimen for SCLC, combining cisplatin with an inhibitor that preferentially targets tumor-initiating cells. Cancer Res; 78(9); 2396-406. ©2018 AACR."	"Many cytokines and all interferons activate members of a small family of kinases (the Janus kinases [JAKs]) and a slightly larger family of transcription factors (the signal transducers and activators of transcription [STATs]), which are essential components of pathways that induce the expression of specific sets of genes in susceptible cells. JAK-STAT pathways are required for many innate and acquired immune responses, and the activities of these pathways must be finely regulated to avoid major immune dysfunctions. Regulation is achieved through mechanisms that include the activation or induction of potent negative regulatory proteins, posttranslational modification of the STATs, and other modulatory effects that are cell-type specific. Mutations of JAKs and STATs can result in gains or losses of function and can predispose affected individuals to autoimmune disease, susceptibility to a variety of infections, or cancer. Here we review recent developments in the biochemistry, genetics, and biology of JAKs and STATs."	"The transcription factor ISGF3, comprised of IRF9 and tyrosine-phosphorylated STATs 1 and 2, transmits the signal from the type I interferon receptor to the genome. We have discovered a novel phosphorylation of STAT2 on T387 that negatively regulates this response. In most untreated cell types, the majority of STAT2 is phosphorylated on T387 constitutively. In response to interferon-β, the T387A mutant of STAT2 is much more effective than wild-type STAT2 in mediating the expression of many interferon-stimulated genes, in protecting cells against virus infection, and in inhibiting cell growth. Interferon-β-treated cells expressing wild-type STAT2 contain much less ISGF3 capable of binding to an interferon-stimulated response element than do cells expressing T387A STAT2. T387 lies in a cyclin-dependent kinase (CDK) consensus sequence, and CDK inhibitors decrease T387 phosphorylation. Using CDK inhibitors to reverse the constitutive inhibitory phosphorylation of T387 of U-STAT2 might enhance the efficacy of type I interferons in many different clinical settings."	"In normal cells exposed to stress, the central transcription factor NF-κB is activated only transiently, to modulate the activation of downstream immune responses. However, in most cancers, NF-κB is abnormally activated constitutively, contributing thus to oncogenesis and tumor progression. Therefore, downregulating NF-κB activity is an important goal of cancer treatment. In order to control NF-κB activity therapeutically, it is helpful to understand the molecular mechanisms that normally govern its activation and how dysregulated NF-κB activity may aid the development of disease. Recent evidence from our laboratories and others indicates that, in addition to various posttranslational modifications of NF-κB that have been observed previously, including phosphorylation, ubiquitination, and acetylation, NF-κB can be methylated reversibly on lysine or arginine residues by histone-modifying enzymes, including lysine and arginine methyl transferases and demethylases. Furthermore, these methylations are required to activate many downstream genes. Interestingly, amplifications and mutations of several such enzymes have been linked to cancer. We propose that some of these mutations may alter the methylation not only of histones but also of NF-κB, making them attractive therapeutic targets."	"Several components of the canonical pathway of response to lipopolysaccharide (LPS) are required for the EGF-dependent activation of NFκB. Conversely, the ability of Toll-like Receptor 4 (TLR4) to activate NFκB in response to LPS is impaired by down regulating EGF receptor (EGFR) expression or by using the EGFR inhibitor erlotinib. The LYN proto-oncogene (LYN) is required for signaling in both directions. LYN binds to the EGFR upon LPS stimulation, and erlotinib impairs this association. In mice, erlotinib blocks the LPS-induced expression of tumor necrosis factor α (TNFα) and interleukin-6 (IL-6) and ameliorates LPS-induced endotoxity, revealing that EGFR is essential for LPS-induced signaling in vivo. "	"Several transcription factors, including p53, NF-κB, and STAT3, are modified by the same enzymes that also modify histones, with important functional consequences. We have identified a previously unrecognized dimethylation of K49 of STAT3 that is crucial for the expression of many IL-6-dependent genes, catalyzed by the histone-modifying enzyme enhancer of zeste homolog 2 (EZH2). Loss of EZH2 is protumorigenic in leukemias, but its overexpression is protumorigenic in solid cancers. Connecting EZH2 to a functionally important methylation of STAT3, which is constitutively activated in many tumors, may help reveal the basis of the opposing roles of EZH2 in liquid and solid tumors and also may identify novel therapeutic opportunities. "	"STAT3 is a pleiotropic transcription factor that is activated by the phosphorylation of tyrosine 705 in response to many cytokines and growth factors. STAT3 without Tyr-705 phosphorylation (U-STAT3) is also a potent transcription factor, and its concentration in cells increases greatly in response to STAT3 activation because the STAT3 gene can be driven by phosphorylated STAT3 dimers. We have now searched for post-translational modifications of U-STAT3 that might have a critical role in its function. An analysis by mass spectroscopy indicated that U-STAT3 is acetylated on Lys-685, and the integrity of Lys-685 is required for the expression of most U-STAT3-dependent genes. In contrast, we found only a very minor role for Lys-685 in gene expression induced in response to tyrosine-phosphorylated STAT3. U-STAT3 plays an important role in angiotensin II-induced gene expression and in the consequent development of cardiac hypertrophy and dysfunction. Mutation of Lys-685 inhibits this function of STAT3, providing new information on the role of U-STAT3 in augmenting the development of heart failure. "	"Activation of nuclear factor κB (NFκB) is a central event in the responses of normal cells to inflammatory signals, and the abnormal constitutive activation of NFκB is important for the survival of most cancer cells. In nonmalignant human cells, EGF stimulates robust activation of NFκB. The kinase activity of the EGF receptor (EGFR) is required, because the potent and specific inhibitor erlotinib blocks the response. Down-regulating EGFR expression or inhibiting EGFR with erlotinib impairs constitutive NFκB activation in several different types of cancer cells and, conversely, increased activation of NFκB leads to erlotinib resistance in these cells. We conclude that EGF is an important mediator of NFκB activation in cancer cells. To explore the mechanism, we selected an erlotinib-resistant cell line in which the guanine nucleotide exchange factor Son of Sevenless 1 (SOS1), well known to be important for EGF-dependent signaling to MAP kinases, is overexpressed. Increased expression of SOS1 increases NFκB activation in several different types of cancer cells, and ablation of SOS1 inhibits EGF-induced NFκB activation in these cells, indicating that SOS1 is a functional component of the pathway connecting EGFR to NFκB activation. Importantly, the guanine nucleotide exchange activity of SOS1 is not required for NFκB activation. "	"Erlotinib is a tyrosine kinase inhibitor approved for the treatment of patients with advanced non-small cell lung cancer (NSCLC). In these patients, erlotinib prolongs survival but its benefit remains modest because many tumors express wild-type (wt) EGFR or develop a second-site EGFR mutation. To test drug combinations that could improve the efficacy of erlotinib, we combined erlotinib with quinacrine, which inhibits the FACT (facilitates chromatin transcription) complex that is required for NF-κB transcriptional activity. In A549 (wtEGFR), H1975 (EGFR-L858R/T790M), and H1993 (MET amplification) NSCLC cells, this drug combination was highly synergistic, as quantified by Chou-Talalay combination indices, and slowed xenograft tumor growth. At a sub-IC50 but more clinically attainable concentration of erlotinib, quinacrine, alone or in combination with erlotinib, significantly inhibited colony formation and induced cell-cycle arrest and apoptosis. Quinacrine decreased the level of active FACT subunit SSRP1 and suppressed NF-κB-dependent luciferase activity. Knockdown of SSRP1 decreased cell growth and sensitized cells to erlotinib. Moreover, transcriptomic profiling showed that quinacrine or combination treatment significantly affected cell-cycle-related genes that contain binding sites for transcription factors that regulate SSRP1 target genes. As potential biomarkers of drug combination efficacy, we identified genes that were more strongly suppressed by the combination than by single treatment, and whose increased expression predicted poorer survival in patients with lung adenocarcinoma. This preclinical study shows that quinacrine overcomes erlotinib resistance by inhibiting FACT and cell-cycle progression, and supports a clinical trial testing erlotinib alone versus this combination in advanced NSCLC."
+"Stenina Adognravi, Olga"	"Cardiovascular and Metabolic Sciences"	29138119	28481870	26139464	26018675	24589453	24582666	23892609	22362893	21148424	20884877	"Thrombospondin-4 (TSP-4) belongs to the thrombospondin protein family that consists of five highly homologous members. A number of novel functions have been recently assigned to TSP-4 in cardiovascular and nervous systems, inflammation, cancer, and the motor unit, which have attracted attention to this extracellular matrix (ECM) protein. These newly discovered functions set TSP-4 apart from other thrombospondins. For example, TSP-4 promotes angiogenesis while other TSPs either prevent it or have no effect on new blood vessel growth; TSP-4 reduces fibrosis and collagen production while TSP-1 and TSP-2 promote fibrosis in several organs; unlike other TSPs, TSP-4 appears to have some structural functions in ECM. The current information about TSP-4 functions in different organs and physiological systems suggests that this evolutionary conserved protein is a major regulator of the extracellular matrix (ECM) organization and production and tissue remodeling during the embryonic development and response to injury. In this review article, we summarize the properties and functions of TSP-4 and discuss its role in tissue remodeling."	"TGF-β is a multifunctional cytokine affecting many cell types and implicated in tissue remodeling processes. Due to its many functions and cell-specific effects, the consequences of TGF-β signaling are process-and stage-dependent, and it is not uncommon that TGF-β exerts distinct and sometimes opposing effects on a disease progression depending on the stage and on the pathological changes associated with the stage. The mechanisms underlying cell- and process-specific effects of TGF-β are poorly understood. We are describing a novel pathway that mediates induction of angiogenesis in response to TGF-β1. We found that in endothelial cells (EC) thrombospondin-4 (TSP-4), a secreted extracellular matrix (ECM) protein, is upregulated in response to TGF-β1 and mediates the effects of TGF-β1 on angiogenesis. Upregulation of TSP-4 does not require the synthesis of new protein, is not caused by decreased secretion of TSP-4, and is mediated by activation of SMAD3. Using Thbs4<sup>-/-</sup> mice and TSP-4 shRNA, we found that TSP-4 mediated pro-angiogenic functions in cultured EC and angiogenesis in vivo in response to TGF-β1. We observed~3-fold increases in tumor mass and levels of angiogenesis markers in animals injected with TGF-β1, and these effects did not occur in Thbs4<sup>-/-</sup> animals. Injections of an inhibitor of TGF-β1 signaling SB-431542 also decreased the weights of tumors and cancer angiogenesis. Our results from in vivo angiogenesis models and cultured EC document that TSP-4 mediates upregulation of angiogenesis by TGF-β1. Upregulation of pro-angiogenic TSP-4 and selective effects of TSP-4 on EC may contribute to stimulation of tumor growth by TGF-β despite the inhibition of cancer cell proliferation."	"Thrombospondin-4 (TSP-4) is 1 of the 5 members of the thrombospondin protein family. TSP-1 and TSP-2 are potent antiangiogenic proteins. However, angiogenic properties of the 3 other TSPs, which do not contain the domains associated with the antiangiogeneic activity of TSP-1 and TSP-2, have not been explored. In our previous studies, we found that TSP-4 is expressed in the vascular matrix of blood vessels of various sizes and is especially abundant in capillaries. We sought to identify the function of TSP-4 in the regulation of angiogenesis. The effect of TSP-4 in in vivo angiogenesis models and its effect on angiogenesis-related properties in cultured cells were assessed using Thbs4(-/-) mice, endothelial cells (EC) derived from these mice, and recombinant TSP-4. Angiogenesis was decreased in Thbs4(-/-) mice compared with wild-type mice. TSP-4 was detected in the lumen of the growing blood vessels. Mice expressing the P387 TSP-4 variant, which was previously associated with coronary artery disease and found to be more active in its cellular interactions, displayed greater angiogenesis compared with A387 form. Lung EC from Thbs4(-/-) mice exhibited decreased adhesion, migration, and proliferation capacities compared with EC from wild-type mice. Recombinant TSP-4 promoted proliferation and the migration of EC. Integrin α2 and gabapentin receptor α2δ-1 were identified as receptors involved in regulation of EC adhesion, migration, and proliferation by TSP-4. TSP-4, an extracellular matrix protein previously associated with tissue remodeling, is now demonstrated to possess proangiogenic activity."	"Abnormal angiogenesis in multiple tissues is a key characteristic of the vascular complications of diabetes. However, angiogenesis may be increased in one tissue but decreased in another in the same patient at the same time point in the disease. The mechanisms of aberrant angiogenesis in diabetes are not understood. There are no selective therapeutic approaches to target increased neovascularization without affecting physiologic angiogenesis and angiogenesis in ischemic tissues. We recently reported a novel miRNA-dependent pathway that up-regulates angiogenesis in response to hyperglycemia in a cell- and tissue-specific manner. The goal of the work described herein was to test whether systemic administration of an antagonist of miR-467 would prevent hyperglycemia-induced local angiogenesis in a tissue-specific manner. We examined the effect of the antagonist on hyperglycemia-induced tumor growth and angiogenesis and on skin wound healing in mouse models of diabetes. Our data demonstrated that the systemic injection of the antagonist prevented hyperglycemia-induced angiogenesis and growth of mouse and human breast cancer tumors, where the miR-467 pathway was active in hyperglycemia. In tissues where the miR-467-dependent mechanism was not activated by hyperglycemia, there was no effect of the antagonist: the systemic injection did not affect skin wound healing or the growth of prostate tumors. The data show that systemic administration of the miR-467 antagonist could be a breakthrough approach in the treatment and prevention of diabetes-associated breast cancer in a tissue-specific manner without affecting physiologic angiogenesis and angiogenesis in ischemic tissues."	"Thrombospondins (TSPs) are multifunctional proteins that are deposited in the extracellular matrix where they directly affect the function of vascular and other cell types. TSP-4, one of the 5 TSP family members, is expressed abundantly in tendon and muscle. We have examined the effect of TSP-4 deficiency on tendon collagen and skeletal muscle morphology and function. In Thbs4(-/-) mice, tendon collagen fibrils are significantly larger than in wild-type mice, and there is no compensatory over-expression of TSP-3 and TSP-5, the two TSPs most highly homologous to TSP-4, in the deficient mice. TSP-4 is expressed in skeletal muscle, and higher levels of TSP-4 protein are associated with the microvasculature of red skeletal muscle with high oxidative metabolism. Lack of TSP-4 in medial soleus, red skeletal muscle with predominant oxidative metabolism, is associated with decreased levels of several specific glycosaminoglycan modifications, decreased expression of a TGFβ receptor beta-glycan, decreased activity of lipoprotein lipase, which associates with vascular cell surfaces by binding to glycosaminoglycans, and decreased uptake of VLDL. The soleus muscle is smaller and hind- and fore-limb grip strength is reduced in Thbs4(-/-) mice compared to wild-type mice. These observations suggest that TSP-4 regulates the composition of the ECM at major sites of its deposition, tendon and muscle, and the absence of TSP-4 alters the organization, composition and physiological functions of these tissues. "	"Increasing evidence suggests critical functions of thrombospondins (TSPs) in a variety of physiological and pathological processes. With the growing understanding of the importance of these matricellular proteins, the need to understand the mechanisms of regulation of their expression and potential approaches to modulate their levels is also increasing. The regulation of TSP expression is multi-leveled, cell- and tissue-specific, and very precise. However, the knowledge of mechanisms modulating the levels of TSPs is fragmented and incomplete. This review discusses the known mechanisms of regulation of TSP levels and the gaps in our knowledge that prevent us from developing strategies to modulate the expression of these physiologically important proteins. "	"Thrombospondins (TSPs) are secreted extracellular matrix (ECM) proteins from TSP family, which consists of five homologous members. They share a complex domain structure and have numerous binding partners in ECM and multiple cell surface receptors. Information that has emerged over the past decade identifies TSPs as important mediators of cellular homeostasis, assigning new important roles in cardiovascular pathology to these proteins. Recent studies of the functions of TSP in the cardiovascular system, diabetes and aging, which placed several TSPs in a position of critical regulators, demonstrated the involvement of these proteins in practically every aspect of cardiovascular pathophysiology related to atherosclerosis: inflammation, immunity, leukocyte recruitment and function, function of vascular cells, angiogenesis, and responses to hypoxia, ischemia and hyperglycemia. TSPs are also critically important in the development and ultimate outcome of the complications associated with atherosclerosis--myocardial infarction, and heart hypertrophy and failure. Their expression and significance increase with age and with the progression of diabetes, two major contributors to the development of atherosclerosis and its complications. This overview of recent literature examines the latest information on the newfound functions of TSPs that emphasize the importance of ECM in cardiovascular homeostasis and pathology. The functions of TSPs in myocardium, vasculature, vascular complications of diabetes, aging and immunity are discussed."	"Thrombospondin-4 (TSP-4) expression increases dramatically in hypertrophic and failing hearts in rodent models and in humans. The aim of this study was to address the function of TSP-4 in the heart. TSP-4-knockout (Thbs4(-/-)) and wild-type (WT) mice were subjected to transverse aortic constriction (TAC) to increase left ventricle load. After 2 wk, Thbs4(-/-) mice had a significantly higher heart weight/body weight ratio than WT mice. The additional increase in the heart weight in TAC Thbs4(-/-) mice was due to increased deposition of extracellular matrix (ECM). The levels of interstitial collagens were higher in the knockout mice, but the size of cardiomyocytes and apoptosis in the myocardium was unaffected by TSP-4 deficiency, suggesting that increased reactive fibrosis was the primary cause of the higher heart weight. The increased ECM deposition in Thbs4(-/-) mice was accompanied by changes in functional parameters of the heart and decreased vessel density. The expression of inflammatory and fibrotic genes known to be influential in myocardial remodeling changed as a result of TSP-4 deficiency in vivo and as a result of incubation of cells with recombinant TSP-4 in vitro. Thus, TSP-4 is involved in regulating the adaptive responses of the heart to pressure overload, suggesting its important role in myocardial remodeling. Our study showed a direct influence of TSP-4 on heart function and to identify the mechanism of its effects on heart remodeling."	"Vascular diabetic complications are associated with abnormal extracellular matrix and dysfunction of vascular cells, which later result in aberrant angiogenesis and development of atherosclerotic lesions. The tissue and cell specificity of the effects of high glucose are well recognized, but the underlying cell type-specific molecular mechanisms controlled by glucose are still unclear. We sought to identify cell type-specific mechanisms by which high glucose regulates transcription of genes in vascular cells. Thrombospondin-1 is a potent antiangiogenic protein associated with development of several diabetic complications and regulated by high glucose in multiple cell types. We report that distinct cell type-specific mechanisms regulate thrombospondin-1 gene (THBS1) transcription in endothelial cells (ECs) and vascular smooth muscle cells (VSMCs) in response to high glucose: although a proximal fragment of 280 nucleotides is sufficient to drive transcription in ECs, THBS1 was regulated cooperatively by interaction between proximal (-272 to -275) and distal (-1016 to -1019) promoter elements in VSMCs. Transcription factors activated by high glucose in VSMCs were cell type-specific. The formation of a single complex interacting with both distal and proximal glucose-responsive elements of THBS1 promoter in VSMCs was confirmed using gel-shift assays, binding sequence decoy oligomers, and specific mutant promoter fragments. Transcriptional response of vascular cells to high glucose is cell type-specific and involves activation of distinct transcription factors, providing a basis for tissue-specific changes of vasculature in diabetics."	"Thrombospondin (TSP)-4 is an extracellular protein that has been linked to several cardiovascular pathologies. However, a role for TSP-4 in vascular wall biology remains unknown. We have examined the effects of TSP-4 gene (Thbs4) knockout on the development of atherosclerotic lesions in ApoE(-/-) mice. Deficiency in TSP-4 reduced atherosclerotic lesions: at 20 weeks of age, the size of the aortic root lesions in Thbs4(-/-)/ApoE(-/-) mice was decreased by 48% in females and by 39% in males on chow diets; in mice on Western diets, lesions in the descending aorta were reduced by 30% in females and 33% in males. In ApoE(-/-) mice, TSP-4 was abundant in vessel areas prone to lesion development and in the matrix of the lesions themselves. TSP-4 deficiency reduced the number of macrophages in lesions in all groups by ≥ 2-fold. In addition, TSP-4 deficiency reduced endothelial cell activation (expression of surface adhesion molecules) and other markers of inflammation in the vascular wall (decreased production of monocyte chemoattractant protein-1 and activation of p38). In vitro, both the adhesion and migration of wild-type macrophages increased in the presence of purified recombinant TSP-4 in a dose-dependent manner (up to 7- and 4.7-fold, respectively). These responses led to p38-MAPkinase activation and were dependent on β(2) and β(3) integrins, which recognize TSP-4 as a ligand. TSP-4 is abundant in atherosclerotic lesions and in areas prone to development of lesions and may influence the recruitment of macrophages by activating endothelial cells and directly interacting with macrophages to increase their adhesion and migration. Our observations suggest an important role for this matricellular protein in the local regulation of inflammation associated with atherogenesis."
+"Stuehr, Dennis"	"Inflammation and Immunity"	31170354	30926606	30402946	30012884	29414777	29358373	28232486	27613870	27760279	27071111	"Myoglobin (Mb) maturation involves heme incorporation as a final step. We investigated a role for heat shock protein (hsp) 90 in Mb maturation in C2C12 skeletal muscle myoblasts and cell lines. We found the following: 1) Hsp90 directly interacts preferentially with heme-free Mb both in purified form and in cells. 2) Hsp90 drives heme insertion into apoprotein-Mb in an ATP-dependent process. 3) During differentiation of C2C12 myoblasts into myotubes, the apo-Mb-hsp90 complex associates with 5 cell cochaperons, Hsp70, activator of hsp90 ATPase protein 1 (Aha1), alanyl-tRNA synthetase domain containing 1 (Aarsd1), cell division cycle 37 (Cdc37), and stress induced phosphoprotein 1 (STIP1) in a pattern that is consistent with their enabling Mb maturation. 4) Mb heme insertion was significantly increased in cells that had a functional soluble guanylyl cyclase (sGC)-cGMP signaling pathway and was diminished upon small interfering RNA knockdown of sGCβ1 or upon overexpression of a phosphodiesterase to prevent cGMP buildup. Together, our findings suggest that hsp90 works in concert with cochaperons (Hsp70, Aha1, Aarsd1, STIP1, and Cdc37) and an active sGC-cGMP signaling pathway to promote heme insertion into immature apo-Mb, and thus generate functional Mb during muscle myotube formation. This fills gaps in our understanding and suggests new ways to potentially control these processes.-Ghosh, A., Dai, Y., Biswas, P., Stuehr, D. J. Myoglobin maturation is driven by the hsp90 chaperone machinery and by soluble guanylyl cyclase."	"Nitric oxide (NO) synthases (NOSs) catalyze the formation of NO from l-arginine. We have shown previously that the NOS enzyme catalytic cycle involves a large number of reactions but can be characterized by a global model with three main rate-limiting steps. These are the rate of heme reduction by the flavin domain (kr ), of dissociation of NO from the ferric heme-NO complex (kd ), and of oxidation of the ferrous heme-NO complex (kox). The reaction of oxygen with the ferrous heme-NO species is part of a futile cycle that does not directly contribute to NO synthesis but allows a population of inactive enzyme molecules to return to the catalytic cycle, and thus, enables a steady-state NO synthesis rate. Previously, we have reported that this reaction does involve the reaction of oxygen with the NO-bound ferrous heme complex, but the mechanistic details of the reaction, that could proceed via either an inner-sphere or an outer-sphere mechanism, remained unclear. Here, we present additional experiments with neuronal NOS (nNOS) and inducible NOS (iNOS) variants (nNOS W409F and iNOS K82A and V346I) and computational methods to study how changes in heme access and electronics affect the reaction. Our results support an inner-sphere mechanism and indicate that the particular heme-thiolate environment of the NOS enzymes can stabilize an N-bound Fe<sup>III</sup>-N(O)OO<sup>-</sup> intermediate species and thereby catalyze this reaction, which otherwise is not observed or favorable in proteins like globins that contain a histidine-coordinated heme."	"This review briefly summarizes what was known about NOS enzymology at the time of the Nobel Prize award in 1998 and then discusses from the author's perspective some of the advances in NOS enzymology over the subsequent 20 years, focused on five aspects: the maturation process of NOS enzymes and its regulation; the mechanism of NO synthesis; the redox roles played by the 6R-tetrahydrobiopterin cofactor; the role of protein conformational behaviour in enabling NOS electron transfer and its regulation by NOS structural elements and calmodulin, and the catalytic cycling pathways of NOS enzymes and their influence on NOS activity. LINKED ARTICLES: This article is part of a themed section on Nitric Oxide 20 Years from the 1998 Nobel Prize. To view the other articles in this section visit http://onlinelibrary.wiley.com/doi/10.1111/bph.v176.2/issuetoc."	"Cellular heme is thought to be distributed between a pool of sequestered heme that is tightly bound within hemeproteins and a labile heme pool required for signaling and transfer into proteins. A heme chaperone that can hold and allocate labile heme within cells has long been proposed but never been identified. Here, we show that the glycolytic protein glyceraldehyde-3-phosphate dehydrogenase (GAPDH) fulfills this role by acting as an essential repository and allocator of bioavailable heme to downstream protein targets. We identified a conserved histidine in GAPDH that is needed for its robust heme binding both in vitro and in mammalian cells. Substitution of this histidine, and the consequent decreases in GAPDH heme binding, antagonized heme delivery to both cytosolic and nuclear hemeprotein targets, including inducible nitric-oxide synthase (iNOS) in murine macrophages and the nuclear transcription factor Hap1 in yeast, even though this GAPDH variant caused cellular levels of labile heme to rise dramatically. We conclude that by virtue of its heme-binding property, GAPDH binds and chaperones labile heme to create a heme pool that is bioavailable to downstream proteins. Our finding solves a fundamental question in cell biology and provides a new foundation for exploring heme homeostasis in health and disease."	"NO synthase (NOS) enzymes perform interdomain electron transfer reactions during catalysis that may rely on complementary charge interactions at domain-domain interfaces. Guided by our previous results and a computer-generated domain-docking model, we assessed the importance of cross-domain charge interactions in the FMN-to-heme electron transfer in neuronal NOS (nNOS). We reversed the charge of three residues (Glu-762, Glu-816, and Glu-819) that form an electronegative triad on the FMN domain and then individually reversed the charges of three electropositive residues (Lys-423, Lys-620, and Lys-660) on the oxygenase domain (NOSoxy), to potentially restore a cross-domain charge interaction with the triad, but in reversed polarity. Charge reversal of the triad completely eliminated heme reduction and NO synthesis in nNOS. These functions were partly restored by the charge reversal at oxygenase residue Lys-423, but not at Lys-620 or Lys-660. Full recovery of heme reduction was probably muted by an accompanying change in FMN midpoint potential that made electron transfer to the heme thermodynamically unfavorable. Our results provide direct evidence that cross-domain charge pairing is required for the FMN-to-heme electron transfer in nNOS. The unique ability of charge reversal at position 423 to rescue function indicates that it participates in an essential cross-domain charge interaction with the FMN domain triad. This supports our domain-docking model and suggests that it may depict a productive electron transfer complex formed during nNOS catalysis."	"Maturation of adult (α2β2) and fetal hemoglobin (α2γ2) tetramers requires that heme be incorporated into each globin. While hemoglobin alpha (Hb-α) relies on a specific erythroid chaperone (alpha Hb-stabilizing protein, AHSP), the other chaperones that may help mature the partner globins (Hb-γ or Hb-β) in erythroid cells, or may enable nonerythroid cells to express mature Hb, are unknown. We investigated a role for heat-shock protein 90 (hsp90) in Hb maturation in erythroid precursor cells that naturally express Hb-α with either Hb-γ (K562 and HiDEP-1 cells) or Hb-β (HUDEP-2) and in nonerythroid cell lines that either endogenously express Hb-αβ (RAW and A549) or that we transfected to express the globins. We found the following: (i) AHSP and hsp90 associate with distinct globin partners in their immature heme-free states (AHSP with apo-Hbα, and hsp90 with apo-Hbβ or Hb-γ) and that hsp90 does not associate with mature Hb. (ii) Hsp90 stabilizes the apo-globins and helps to drive their heme insertion reactions, as judged by pharmacologic hsp90 inhibition or by coexpression of an ATP-ase defective hsp90. (iii) In nonerythroid cells, heme insertion into all globins became hsp90-dependent, which may explain how mixed Hb tetramers can mature in cells that do not express AHSP. Together, our findings uncover a process in which hsp90 first binds to immature, heme-free Hb-γ or Hb-β, drives their heme insertion process, and then dissociates to allow their heterotetramer formation with Hb-α. Thus, in driving heme insertion, hsp90 works in concert with AHSP to generate functional Hb tetramers during erythropoiesis."	"The signaling molecule nitric oxide (NO) is synthesized in animals by structurally related NO synthases (NOSs), which contain NADPH/FAD- and FMN-binding domains. During catalysis, NADPH-derived electrons transfer into FAD and then distribute into the FMN domain for further transfer to internal or external heme groups. Conformational freedom of the FMN domain is thought to be essential for the electron transfer (ET) reactions in NOSs. To directly examine this concept, we utilized a &quot;Cys-lite&quot; neuronal NOS flavoprotein domain and substituted Cys for two residues (Glu-816 and Arg-1229) forming a salt bridge between the NADPH/FAD and FMN domains in the conformationally closed structure to allow cross-domain disulfide bond formation or cross-linking by bismaleimides of various lengths. The disulfide bond cross-link caused a ≥95% loss of cytochrome c reductase activity that was reversible with DTT treatment, whereas graded cross-link lengthening gradually increased activity, thus defining the conformational constraints in the catalytic process. We used spectroscopic and stopped-flow techniques to further investigate how the changes in FMN domain conformational freedom impact the following: (i) the NADPH interaction; (ii) kinetics of electron loading (flavin reduction); (iii) stabilization of open versus closed conformational forms in two different flavin redox states; (iv) reactivity of the reduced FMN domain toward cytochrome c; (v) response to calmodulin binding; and (vi) the rates of interflavin ET and the FMN domain conformational dynamics. Together, our findings help explain how the spatial and temporal behaviors of the FMN domain impact catalysis by the NOS flavoprotein domain and how these behaviors are governed to enable electron flow through the enzyme."	"The activity of endothelial NO synthase (eNOS) is triggered by calmodulin (CaM) binding and is often further regulated by phosphorylation at several positions in the enzyme. Phosphorylation at Ser<sup>1179</sup> occurs in response to diverse physiologic stimuli and increases the NO synthesis and cytochrome c reductase activities of eNOS, thereby enhancing its participation in biological signal cascades. Despite its importance, the mechanism by which Ser<sup>1179</sup> phosphorylation increases eNOS activity is not understood. To address this, we used stopped-flow spectroscopy and computer modeling approaches to determine how the phosphomimetic mutation (S1179D) may impact electron flux through eNOS and the conformational behaviors of its reductase domain, both in the absence and presence of bound CaM. We found that S1179D substitution in CaM-free eNOS had multiple effects; it increased the rate of flavin reduction, altered the conformational equilibrium of the reductase domain, and increased the rate of its conformational transitions. We found these changes were equivalent in degree to those caused by CaM binding to wild-type eNOS, and the S1179D substitution together with CaM binding caused even greater changes in these parameters. The modeling indicated that the changes caused by the S1179D substitution, despite being restricted to the reductase domain, are sufficient to explain the stimulation of both the cytochrome c reductase and NO synthase activities of eNOS. This helps clarify how Ser<sup>1179</sup> phosphorylation regulates eNOS and provides a foundation to compare its regulation by other phosphorylation events."	"The nitric oxide synthases (NOS) catalyze a two-step oxidation of l-arginine (Arg) to generate NO. In the first step, O2 activation involves one electron being provided to the heme by an enzyme-bound 6R-tetrahydro-l-biopterin cofactor (H4 B), and the H4 B radical must be reduced back to H4 B in order for NOS to continue catalysis. Although an NADPH-derived electron is used to reduce the H4 B radical, how this occurs is unknown. We hypothesized that the NOS flavoprotein domain might reduce the H4 B radical by utilizing the NOS heme porphyrin as a conduit to deliver the electron. This model predicts that factors influencing NOS heme reduction should also influence the extent and rate of H4 B radical reduction in kind. To test this, we utilized single catalytic turnover and stop-freeze methods, along with electron paramagnetic resonance spectroscopy, to measure the rate and extent of reduction of the 5-methyl-H4 B radical formed in neuronal NOS (nNOS) during Arg hydroxylation. We used several nNOS variants that supported either a slower or faster than normal rate of ferric heme reduction. We found that the rates and extents of nNOS heme reduction correlated well with the rates and extents of 5-methyl-H4 B radical reduction among the various nNOS enzymes. This supports a model where the heme porphyrin transfers an electron from the NOS flavoprotein to the H4 B radical formed during catalysis, revealing that the heme plays a dual role in catalyzing O2 activation or electron transfer at distinct points in the reaction cycle."	"Asthma is defined by airway inflammation and hyperresponsiveness, and contributes to morbidity and mortality worldwide. Although bronchodilation is a cornerstone of treatment, current bronchodilators become ineffective with worsening asthma severity. We investigated an alternative pathway that involves activating the airway smooth muscle enzyme, soluble guanylate cyclase (sGC). Activating sGC by its natural stimulant nitric oxide (NO), or by pharmacologic sGC agonists BAY 41-2272 and BAY 60-2770, triggered bronchodilation in normal human lung slices and in mouse airways. Both BAY 41-2272 and BAY 60-2770 reversed airway hyperresponsiveness in mice with allergic asthma and restored normal lung function. The sGC from mouse asthmatic lungs displayed three hallmarks of oxidative damage that render it NO-insensitive, and identical changes to sGC occurred in human lung slices or in human airway smooth muscle cells when given chronic NO exposure to mimic the high NO in asthmatic lung. Our findings show how allergic inflammation in asthma may impede NO-based bronchodilation, and reveal that pharmacologic sGC agonists can achieve bronchodilation despite this loss. "
+"Suh, Hoonkyo"	"Neurosciences"	30507615	30498432	27759049	27300262	26365148	19575663	18371391	30967683	30655503	29255203	"We investigated how pathological changes in newborn hippocampal dentate granule cells (DGCs) lead to epilepsy. Using a rabies virus-mediated retrograde tracing system and a designer receptors exclusively activated by designer drugs (DREADD) chemogenetic method, we demonstrated that newborn hippocampal DGCs are required for the formation of epileptic neural circuits and the induction of spontaneous recurrent seizures (SRS). A rabies virus-mediated mapping study revealed that aberrant circuit integration of hippocampal newborn DGCs formed excessive de novo excitatory connections as well as recurrent excitatory loops, allowing the hippocampus to produce, amplify, and propagate excessive recurrent excitatory signals. In epileptic mice, DREADD-mediated-specific suppression of hippocampal newborn DGCs dramatically reduced epileptic spikes and SRS in an inducible and reversible manner. Conversely, specific activation of hippocampal newborn DGCs increased both epileptic spikes and SRS. Our study reveals an essential role for hippocampal newborn DGCs in the formation and function of epileptic neural circuits, providing critical insights into DGCs as a potential therapeutic target for treating epilepsy."	"Using a lentivirus-mediated labeling method, we investigated whether the adult hippocampus retains long-lasting, self-renewing neural stem cells (NSCs). We first showed that a single injection of a lentiviral vector expressing a green fluorescent protein (LV PGK-GFP) into the subgranular zone (SGZ) of the adult hippocampus enabled an efficient, robust, and long-term marking of self-renewing NSCs and their progeny. Interestingly, a subset of labeled cells showed the ability to proliferate multiple times and give rise to Sox2<sup>+</sup> cells, clearly suggesting the ability of NSCs to self-renew for an extensive period of time (up to 6 months). In addition, using GFP<sup>+</sup> cells isolated from the SGZ of mice that received a LV PGK-GFP injection 3 months earlier, we demonstrated that some GFP<sup>+</sup> cells displayed the essential properties of NSCs, such as self-renewal and multipotency. Furthermore, we investigated the plasticity of NSCs in a perforant path transection, which has been shown to induce astrocyte formation in the molecular layer of the hippocampus. Our lentivirus (LV)-mediated labeling study revealed that hippocampal NSCs are not responsible for the burst of astrocyte formation, suggesting that signals released from the injured perforant path did not influence NSC fate determination. Therefore, our studies showed that a gene delivery system using LVs is a unique method to be used for understanding the complex nature of NSCs and may have translational impact in gene therapy by efficiently targeting NSCs."	"Hippocampus-dependent cognitive and emotional function appears to be regionally dissociated along the dorsoventral (DV) axis of the hippocampus. Recent observations that adult hippocampal neurogenesis plays a critical role in both cognition and emotion raised an interesting question whether adult neurogenesis within specific subregions of the hippocampus contributes to these distinct functions. We examined the regional-specific and cell type-specific effects of fluoxetine, which requires adult hippocampal neurogenesis to function as an antidepressant, on the proliferation of hippocampal neural stem cells (NSCs). Fluoxetine specifically increased proliferation of NSCs located in the ventral region of the hippocampus while the mitotic index of NSCs in the dorsal portion of the hippocampus remained unaltered. Moreover, within the ventral hippocampus, type II NSC and neuroblast populations specifically responded to fluoxetine, showing increased proliferation; however, proliferation of type I NSCs was unchanged in response to fluoxetine. Activation or inhibition of serotonin receptor 1A (5-HTR1A) recapitulated or abolished the effect of fluoxetine on proliferation of type II NSCs and neuroblast populations in the ventral hippocampus. Our study showed that the effect of fluoxetine on proliferation is dependent upon the type and the position of the NSCs along the DV axis of the hippocampus."	"The role of telomerase reverse transcriptase (TERT) has been extensively investigated in the contexts of aging and cancer. Interestingly, Tert(-/-) mice exhibit additional but unexpected aggressive and depressive behaviors, implying the potential involvement of TERT function in mood control. Our conditional rescue experiments revealed that the depressive and aggressive behaviors of Tert(-/-) mice originate from Tert deficiency in two distinct brain structures. Reactivation of Tert in the hippocampus was sufficient to normalize the depressive but not the aggressive behaviors of Tert(-/-) mice. Conversely, re-expression of Tert in the medial prefrontal cortex (mPFC) reversed the aggressive but not the depressive behavior of Tert(-/-) mice. Mechanistically, decreased serotonergic signaling and increased nitric oxide (NO) transmission in the hippocampus transduced Tert deficiency into depression as evidenced by our observation that the infusion of a pharmacological agonist for serotonin receptor 1a (5-HTR1A) and a selective antagonist for neuronal NO synthase into the hippocampus successfully normalized the depressive behavior of Tert(-/-) mice. In addition, increased serotonergic transmission by the 5-HTR1A agonist in the mPFC was sufficient to rescue the aggressive behavior of Tert(-/-) mice. Thus, our studies revealed a novel function of TERT in the pathology of depression and aggression in a brain structure-specific manner, providing direct evidence for the contribution of TERT to emotional control."	"Neurological deficits of alcohol use disorder (AUD) have been attributed to dysfunctions of specific brain structures. Studies of alcoholic patients and chronic alcohol exposure animal models consistently identify reduced hippocampal mass and cogntive dysfunctions as a key alcohol-induced brain adaptation. However, the precise substrate of chronic alcohol exposure that leads to structural and functional impairments of the hippocampus is largely unknown. Using a calorie-matched alcohol feeding method, we tested whether chronic alcohol exposure targets neural stem cells and neurogenesis in the adult hippocampus. The effect of alcohol on proliferation of neural stem cells as well as cell fate determination and survival of newborn cells was evaluated via bromodeoxyuridine pulse and chase methods. A retrovirus-mediated single-cell labeling method was used to determine the effect of alcohol on the morphological development and circuitry incorporation of individual hippocampal newborn neurons. Finally, novel object recognition (NOR) and Y-maze tests were performed to examine whether disrupted neurogenesis is associated with hippocampus-dependent functional deficits in alcohol-fed mice. Chronic alcohol exposure reduced proliferation of neural stem cells and survival rate of newborn neurons; however, the fate determination of newborn cells remained unaltered. Moreover, the dendritic spine density of newborn neurons significantly decreased in alcohol-fed mice. Impaired spine formation indicates that alcohol interfered the synaptic connectivity of newborn neurons with excitatory neurons originating from various areas of the brain. In the NOR test, alcohol-fed mice displayed deficits in the ability to discriminate the novel object. Our study revealed that chronic alcohol exposure disrupted multiple steps of neurogenesis, including the production and development of newborn neurons. In addition, chronic alcohol exposure altered connectivity of newborn neurons with other input neurons. Decreased neurogenesis and aberrant integration of newborn neurons into hippocampal networks are closely associated with deficits in hippocampus-dependent cognitive functions of alcohol-fed mice."	"The identification of neural stem cells (NSCs) and their contribution to continuous neurogenesis has shown that the hippocampus and olfactory bulb are plastic. Brain plasticity, achieved at the level of cell genesis, has an essential role in the maintenance of brain homeostasis. Via combinatorial functions of extrinsic signals and intrinsic programs, adult neurogenesis is tightly regulated in a specialized microenvironment, a niche. Misregulated neurogenesis is detrimental to normal brain functions and, in extreme cases, pathogenic. Hence, understanding signaling in adult neurogenesis is not only important to understand the physiological roles of neurogenesis, but also to provide knowledge that is essential for developing therapeutic applications using NSCs to intervene in the progression of brain diseases."	"To characterize the properties of adult neural stem cells (NSCs), we generated and analyzed Sox2-GFP transgenic mice. Sox2-GFP cells in the subgranular zone (SGZ) express markers specific for progenitors, but they represent two morphologically distinct populations that differ in proliferation levels. Lentivirus- and retrovirus-mediated fate-tracing studies showed that Sox2+ cells in the SGZ have potential to give rise to neurons and astrocytes, revealing their multipotency at the population as well as at a single-cell level. A subpopulation of Sox2+ cells gives rise to cells that retain Sox2, highlighting Sox2+ cells as a primary source for adult NSCs. In response to mitotic signals, increased proliferation of Sox2+ cells is coupled with the generation of Sox2+ NSCs as well as neuronal precursors. An asymmetric contribution of Sox2+ NSCs may play an important role in maintaining the constant size of the NSC pool and producing newly born neurons during adult neurogenesis."	"Pten mutations are associated with autism spectrum disorder. Pten loss of function in neurons increases excitatory synaptic connectivity, contributing to an imbalance between excitation and inhibition. We aimed to determine whether Pten loss results in aberrant connectivity in neural circuits. We compared postnatally generated wild-type and Pten knockout granule neurons integrating into the dentate gyrus using a variety of methods to examine their connectivity. We found that postsynaptic Pten loss provides an advantage to dendritic spines in competition over a limited pool of presynaptic boutons. Retrograde monosynaptic tracing with rabies virus reveals that this results in synaptic contact with more presynaptic partners. Using independently excitable opsins to interrogate multiple inputs onto a single neuron, we found that excess connectivity is established indiscriminately from among glutamatergic afferents. Therefore, Pten loss results in inappropriate connectivity whereby neurons are coupled to a greater number of synaptic partners."	"SETD5, a gene linked to intellectual disability (ID) and autism spectrum disorder (ASD), is a member of the SET-domain family and encodes a putative histone methyltransferase (HMT). To date, the mechanism by which SETD5 haploinsufficiency causes ASD/ID remains an unanswered question. Setd5 is the highly conserved mouse homolog, and although the Setd5 null mouse is embryonic lethal, the heterozygote is viable. Morphological tracing and multielectrode array was used on cultured cortical neurons. MRI was conducted of adult mouse brains and immunohistochemistry of juvenile mouse brains. RNA-Seq was used to investigate gene expression in the developing cortex. Behavioral assays were conducted on adult mice. Setd5<sup>+/-</sup> cortical neurons displayed significantly reduced synaptic density and neuritic outgrowth in vitro, with corresponding decreases in network activity and synchrony by electrophysiology. A specific subpopulation of fetal Setd5<sup>+/-</sup> cortical neurons showed altered gene expression of neurodevelopment-related genes. Setd5<sup>+/-</sup> animals manifested several autism-like behaviors, including hyperactivity, cognitive deficit, and altered social interactions. Anatomical differences were observed in Setd5<sup>+/-</sup> adult brains, accompanied by a deficit of deep-layer cortical neurons in the developing brain. Our data converge on a picture of abnormal neurodevelopment driven by Setd5 haploinsufficiency, consistent with a highly penetrant risk factor."	"We previously showed increased growth associated protein 43 (GAP-43) expression in brain samples resected from patients with cortical dysplasia (CD), which was correlated with duration of epilepsy. Here, we used a rat model of CD to examine the regulation of GAP-43 in the brain and serum over the course of epileptogenesis. Baseline GAP-43 expression was higher in CD animals compared to control non-CD rats. An acute seizure increased GAP-43 expression in both CD and control rats. However, GAP-43 expression decreased by day 15 post-seizure in control rats, which did not develop spontaneous seizures. In contrast, GAP-43 remained up-regulated in CD rats, and over 50% developed chronic epilepsy with increased GAP-43 levels in their serum. GAP-43 protein was primarily located in excitatory neurons, suggesting its functional significance in epileptogenesis. Inhibition of GAP-43 expression by shRNA significantly reduced seizure duration and severity in CD rats after acute seizures with subsequent reduction in interictal spiking. Serum GAP-43 levels were significantly higher in CD rats that developed spontaneous seizures. Together, these results suggest GAP-43 as a key factor promoting epileptogenesis, a possible therapeutic target for treatment of progressive epilepsy and a potential biomarker for epilepsy progression in CD."
+"Tam, K. P. Connie"	"Ophthalmic Research"	29191848	27891122	23006328	21901151	20130275	17905228	29062042	30439473	30343040	29062042	"Skin and mucosal epithelia deploy antimicrobial peptides (AMPs) to eliminate harmful microbes. We reported that the intermediate filament keratin 6a (K6a) is constitutively processed into antimicrobial fragments in corneal epithelial cells. In this study, we show that K6a network remodeling is a host defense response that directly up-regulates production of keratin-derived AMPs (KAMPs) by the ubiquitin-proteasome system (UPS). Bacterial ligands trigger K6a phosphorylation at S19, S22, S37, and S60, leading to network disassembly. Mutagenic analysis of K6a confirmed that the site-specific phosphorylation augmented its solubility. K6a in the cytosol is ubiquitinated by cullin-RING E3 ligases for subsequent proteasomal processing. Without an appreciable increase in K6a gene expression and proteasome activity, a higher level of cytosolic K6a results in enhanced KAMP production. Although proteasome-mediated proteolysis is known to produce antigenic peptides in adaptive immunity, our findings demonstrate its new role in producing AMPs for innate immune defense. Manipulating K6a phosphorylation or UPS activity may provide opportunities to harness the innate immunity of epithelia against infection."	"Antibiotic resistance is a pressing global health problem that threatens millions of lives each year. Natural antimicrobial peptides and their synthetic derivatives, including peptoids and peptidomimetics, are promising candidates as novel antibiotics. Recently, the C-terminal glycine-rich fragments of human epithelial keratin 6A were found to have bactericidal and cytoprotective activities. Here, we used an improved 2-dimensional NMR method coupled with a new protocol for structural refinement by low temperature simulated annealing to characterize the solution structure of these kerain-derived antimicrobial peptides (KAMPs). Two specific KAMPs in complex with membrane mimicking sodium dodecyl sulfate (SDS) micelles displayed amphipathic conformations with only local bends and turns, and a central 10-residue glycine-rich hydrophobic strip that is central to bactericidal activity. To our knowledge, this is the first report of non-αβ structure for human antimicrobial peptides. Direct observation of Staphylococcus aureus and Pseudomonas aeruginosa by scanning and transmission electron microscopy showed that KAMPs deformed bacterial cell envelopes and induced pore formation. Notably, in competitive binding experiments, KAMPs demonstrated binding affinities to LPS and LTA that did not correlate with their bactericidal activities, suggesting peptide-LPS and peptide-LTA interactions are less important in their mechanisms of action. Moreover, immunoprecipitation of KAMPs-bacterial factor complexes indicated that membrane surface lipoprotein SlyB and intracellular machineries NQR sodium pump and ribosomes are potential molecular targets for the peptides. Results of this study improve our understanding of the bactericidal function of epithelial cytokeratin fragments, and highlight an unexplored class of human antimicrobial peptides, which may serve as non-αβ peptide scaffolds for the design of novel peptide-based antibiotics."	"Epithelial cells express antimicrobial proteins in response to invading pathogens, although little is known regarding epithelial defense mechanisms during healthy conditions. Here we report that epithelial cytokeratins have innate defense properties because they constitutively produce cytoprotective antimicrobial peptides. Glycine-rich C-terminal fragments derived from human cytokeratin 6A were identified in bactericidal lysate fractions of human corneal epithelial cells. Structural analysis revealed that these keratin-derived antimicrobial peptides (KDAMPs) exhibited coil structures with low α-helical content. Synthetic analogs of these KDAMPS showed rapid bactericidal activity against multiple pathogens and protected epithelial cells against bacterial virulence mechanisms, while a scrambled peptide showed no bactericidal activity. However, the bactericidal activity of a specific KDAMP was somewhat reduced by glycine-alanine substitutions. KDAMP activity involved bacterial binding and permeabilization, but the activity was unaffected by peptide charge or physiological salt concentration. Knockdown of cytokeratin 6A markedly reduced the bactericidal activity of epithelial cell lysates in vitro and increased the susceptibility of murine corneas to bacterial adherence in vivo. These data suggest that epithelial cytokeratins function as endogenous antimicrobial peptides in the host defense against infection and that keratin-derived antimicrobials may serve as effective therapeutic agents."	"While a plethora of in vivo models exist for studying infectious disease and its resolution, few enable factors involved in the maintenance of health to be studied in situ. This is due in part to a paucity of tools for studying subtleties of bacterial-host interactions at a cellular level within live organs or tissues, requiring investigators to rely on overt outcomes (e.g. pathology) in their research. Here, a suite of imaging technologies were combined to enable 3D and temporal subcellular localization and quantification of bacterial distribution within the murine cornea without the need for tissue processing or dissection. These methods were then used to demonstrate the importance of MyD88, a central adaptor protein for Toll-Like Receptor (TLR) mediated signaling, in protecting a multilayered epithelium against both adhesion and traversal by the opportunistic bacterial pathogen Pseudomonas aeruginosa ex vivo and in vivo."	"Contact lens wear predisposes to Pseudomonas aeruginosa keratitis, but the mechanisms involved remain unclear. An in vivo model was used to study lens inoculation conditions enabling disease. Custom-made hydrogel contact lenses were fitted to rats after incubation in P. aeruginosa approximately 10(11) cfu/mL (3 hours) or approximately 10(3) cfu/mL (24 hours). Another group was inadvertently inoculated with a suction pen previously used with high inocula, but rinsed in ethanol and stored dry (6 months). Some corneas were tissue paper-blotted to cause fluorescein staining before lens fitting. Contralateral eyes were untreated. Twenty-four hours after disease detection, lenses were transferred to naive rats or examined by confocal microscopy before homogenization to quantify viable bacteria. After lens removal, corneas were washed to collect nonadherent bacteria and were analyzed by immunohistochemistry. All eyes challenged with unworn contaminated lenses developed keratitis after approximately 7 to 10 days. Disease delay and severity were unaffected by inoculum parameters or tissue blotting but occurred sooner with lenses transferred from infected eyes ( approximately 2 days). Worn lenses and corneal washes contained infecting bacteria. Posterior, not anterior, lens surfaces harbored P. aeruginosa biofilms that penetrated the lens matrix. Diseased corneas showed an infiltration of phagocytes and T-lymphocytes. P. aeruginosa induces keratitis in this lens-wearing model after a single inoculation. Delayed disease onset was interesting considering the greater keratitis risk during extended wear. Infection did not require the disruption of corneal barrier function before lens wear and occurred without exposure to lens care solutions. The data suggest that keratitis involves biofilm formation or other bacterial adaptations in vivo."	"We have previously shown that ExoU, a type III secreted cytotoxin of Pseudomonas aeruginosa, causes acute cytotoxicity towards corneal epithelial cells in vitro, and contributes to corneal disease pathology and ocular colonization in vivo. Subsequently, we reported that ExoU represses phagocyte infiltration of infected corneas in vivo. ExoU has patatin-like phospholipase activity that is required for cytotoxic activity in vitro (mammalian cell injury and death) and for disease in a murine model of pneumonia. We hypothesized that the phospholipase activity was required for ExoU-mediated corneal disease and ocular colonization. Using the murine scarification model, corneal disease pathology was examined after inoculation with approximately 10(6)cfu of a P. aeruginosa effector mutant (PA103DeltaexoUexoT::Tc) complemented with either exoU (pUCPexoU), phospholipase-inactive exoU (pUCPexoUD344A) or a plasmid control (pUCP18). Eyes were photographed and disease severity scored at 24 and 48h post-infection. Viable bacteria colonizing infected eyes were quantified at 6 and 48h. Complementation with exoU caused significantly more pathology (increased disease severity scores) and enabled bacteria to better colonize (by approximately 1000-fold) at 48h as compared to phospholipase-inactive exoU which did not differ from plasmid control. Surprisingly, exoU did not contribute to early (6h) colonization. In-vitro assays confirmed that the phospholipase domain of exoU was required for cytotoxicity towards human corneal epithelial cells. Taken together these data show that the phospholipase activity of the P. aeruginosa cytotoxin, ExoU, plays a role in the pathogenesis of corneal infection via mechanism(s) occurring after initial colonization of a susceptible cornea."	"Previously we reported that corneal epithelial barrier function against Pseudomonas aeruginosa was MyD88-dependent. Here, we explored contributions of MyD88-dependent receptors using vital mouse eyes and confocal imaging. Uninjured IL-1R (-/-) or TLR4 (-/-) corneas, but not TLR2 (-/-), TLR5 (-/-), TLR7 (-/-), or TLR9 (-/-), were more susceptible to P. aeruginosa adhesion than wild-type (3.8-fold, 3.6-fold respectively). Bacteria adherent to the corneas of IL-1R (-/-) or TLR5 (-/-) mice penetrated beyond the epithelial surface only if the cornea was superficially-injured. Bone marrow chimeras showed that bone marrow-derived cells contributed to IL-1R-dependent barrier function. In vivo, but not ex vivo, stromal CD11c+ cells responded to bacterial challenge even when corneas were uninjured. These cells extended processes toward the epithelial surface, and co-localized with adherent bacteria in superficially-injured corneas. While CD11c+ cell depletion reduced IL-6, IL-1β, CXCL1, CXCL2 and CXCL10 transcriptional responses to bacteria, and increased susceptibility to bacterial adhesion (&gt;3-fold), the epithelium remained resistant to bacterial penetration. IL-1R (-/-) corneas also showed down-regulation of IL-6 and CXCL1 genes with and without bacterial challenge. These data show complex roles for TLR4, TLR5, IL-1R and CD11c+ cells in constitutive epithelial barrier function against P. aeruginosa, with details dependent upon in vivo conditions."	"Contact lens wear carries a risk of complications, including corneal infection. Solving these complications has been hindered by limitations of existing animal models. Here, we report development of a new murine model of contact lens wear. C57BL/6 mice were fitted with custom-made silicone-hydrogel contact lenses with or without prior inoculation with Pseudomonas aeruginosa (PAO1-GFP). Contralateral eyes served as controls. Corneas were monitored for pathology, and examined ex vivo using high-magnification, time-lapse imaging. Fluorescent reporter mice allowed visualization of host cell membranes and immune cells. Lens-colonizing bacteria were detected by viable counts and FISH. Direct-colony PCR was used for bacterial identification. Without deliberate inoculation, lens-wearing corneas remained free of visible pathology, and retained a clarity similar to non-lens wearing controls. CD11c-YFP reporter mice revealed altered numbers, and distribution, of CD11c-positive cells in lens-wearing corneas after 24 h. Worn lenses showed bacterial colonization, primarily by known conjunctival or skin commensals. Corneal epithelial cells showed vacuolization during lens wear, and after 5 days, cells with phagocyte morphology appeared in the stroma that actively migrated over resident keratocytes that showed altered morphology. Immunofluorescence confirmed stromal Ly6G-positive cells after 5 days of lens wear, but not in MyD88 or IL-1R gene-knockout mice. P. aeruginosa-contaminated lenses caused infectious pathology in most mice from 1 to 13 days. This murine model of contact lens wear appears to faithfully mimic events occurring during human lens wear, and could be valuable for experiments, not possible in humans, that help solve the pathogenesis of lens-related complications."	"Research with animal models of Pseudomonas aeruginosa keratitis has shown that use of a topical corticosteroid alone against an established infection can significantly increase the number of colonizing bacteria or worsen clinical disease. Moreover, retrospective analysis has suggested that corticosteroid use in humans is associated with an increased risk of keratitis in eyes with pre-existing disease. Thus, while corticosteroids are often used to reduce ocular inflammation in the absence of infection, the risk of opportunistic infection remains a concern. However, the effect of corticosteroids on the intrinsic barrier function of uninfected corneas is unknown. Here, we tested if short-term topical corticosteroid treatment of an uninfected murine cornea would increase susceptibility to P. aeruginosa colonization or infection after epithelial injury. Topical prednisolone acetate (1%) was administered to one eye of C57BL/6 mice three times a day for 3 days; control eyes were treated with sterile PBS. Prior to inoculation with a cytotoxic P. aeruginosa corneal isolate strain 6206, corneas were subject to superficial-injury by tissue paper blotting, or scratch-injured followed by 12 h of healing. Previously we have shown that blotting renders mouse corneas susceptible to P. aeruginosa adhesion, but not infection, while 12 h healing reduces susceptibility to infection after scratching. Corneas were evaluated at 48 h for bacterial colonization and microbial keratitis (MK). To monitor impact on wound healing, corneal integrity was examined by fluorescein staining immediately after scarification and after 12 h healing. For both the tissue paper blotting and scratch-injury models, there was no significant difference in P. aeruginosa colonization at 48 h between corticosteroid-pretreated eyes and controls. With the blotting model, one case of MK was observed in a control (PBS-pretreated) cornea; none in corticosteroid-pretreated corneas. With the 12 h healing model, MK occurred in 6 of 17 corticosteroid-pretreated eyes versus 2 of 17 controls, a difference not statistically significant. Corticosteroid-pretreated eyes showed greater fluorescein staining 12 h after scarification injury, but this did not coincide with increased colonization or MK. Together, these data show that short-term topical corticosteroid therapy on an uninfected murine cornea does not necessarily enhance its susceptibility to P. aeruginosa colonization or infection after injury, even when it induces fluorescein staining."	"Previously we reported that corneal epithelial barrier function against Pseudomonas aeruginosa was MyD88-dependent. Here, we explored contributions of MyD88-dependent receptors using vital mouse eyes and confocal imaging. Uninjured IL-1R (-/-) or TLR4 (-/-) corneas, but not TLR2 (-/-), TLR5 (-/-), TLR7 (-/-), or TLR9 (-/-), were more susceptible to P. aeruginosa adhesion than wild-type (3.8-fold, 3.6-fold respectively). Bacteria adherent to the corneas of IL-1R (-/-) or TLR5 (-/-) mice penetrated beyond the epithelial surface only if the cornea was superficially-injured. Bone marrow chimeras showed that bone marrow-derived cells contributed to IL-1R-dependent barrier function. In vivo, but not ex vivo, stromal CD11c+ cells responded to bacterial challenge even when corneas were uninjured. These cells extended processes toward the epithelial surface, and co-localized with adherent bacteria in superficially-injured corneas. While CD11c+ cell depletion reduced IL-6, IL-1β, CXCL1, CXCL2 and CXCL10 transcriptional responses to bacteria, and increased susceptibility to bacterial adhesion (&gt;3-fold), the epithelium remained resistant to bacterial penetration. IL-1R (-/-) corneas also showed down-regulation of IL-6 and CXCL1 genes with and without bacterial challenge. These data show complex roles for TLR4, TLR5, IL-1R and CD11c+ cells in constitutive epithelial barrier function against P. aeruginosa, with details dependent upon in vivo conditions."
+"Tang, W. H. Wilson"	"Cardiovascular and Metabolic Sciences"	31023434	30953792	30890412	30410105	30345014	30158457	30012361	29994808	29893446	29729330	"Despite major strides in reducing cardiovascular disease (CVD) burden with modification of classic CVD risk factors, significant residual risks remain. Recent discoveries that linked intestinal microbiota and CVD have broadened our understanding of how dietary nutrients may affect cardiovascular health and disease. Although next-generation sequencing techniques can identify gut microbial community participants and provide insights into microbial composition shifts in response to physiological responses and dietary exposures, provisions of prebiotics or probiotics have yet to show therapeutic benefit for CVD. Our evolving understanding of intestinal microbiota-derived physiological modulators (e.g., short-chain fatty acids) and pathogenic mediators (e.g., trimethylamine N-oxide) of host disease susceptibility have created novel potential therapeutic opportunities for improved cardiovascular health. This review discusses the roles of human intestinal microbiota in normal physiology, their associations with CVD susceptibilities, and the potential of modulating intestinal microbiota composition and metabolism as a novel therapeutic target for CVD."	"Amino-terminal pro-B-type natriuretic peptide (NTproBNP) is closely associated with prognosis in acute decompensated heart failure (ADHF). As a result, there has been great interest measuring it during the course of treatment. The prognostic implications in both short-term and follow-up changes in NTproBNP need further clarification. Baseline, 48-72 hour, and 30-day NTproBNP levels were measured in 795 subjects in the ASCEND-HF trial. Multivariable logistic and Cox-proportional hazards models were used to test the association between static, relative, and absolute changes in NTproBNP with outcomes during and after ADHF. The median NTproBNP at baseline was 5773 (2981-11,579) pg/mL; at 48-72 hours was 3036 (1191-6479) pg/mL; and at 30 days was 2914 (1364-6667) pg/mL. Absolute changes in NTproBNP by 48-72 hours were not associated with 30-day heart failure rehospitalization or mortality (P = .065), relative changes in NTproBNP were nominally associated (P = .046). In contrast, both absolute and relative changes in NTproBNP from baseline to 48-72 hours and to 30 days were closely associated with 180-day mortality (P &lt; .02 for all) with increased discrimination compared to the multivariable models with baseline NTproBNP (P &lt;.05 for models with relative and absolute change at both time points). Although the degree of absolute change in NTproBNP was dependent on baseline levels, both short-term absolute and relative changes in NTproBNP were independently and incrementally associated with long-term clinical outcomes. Changes in NTproBNP levels at 30-days were particularly well associated with long-term clinical outcomes."	"Corin is a serine protease known to convert B-type natriuretic peptide (BNP) prohormone into BNP and its amino-terminal fragment (NT-proBNP). In mice lacking corin, high blood pressure and proteinuria were found at late gestational stages, with associated delayed trophoblast invasion and impaired spiral artery remodeling in the uterus. We hypothesize that both NT-proBNP and soluble corin elevation predict the presence of preeclampsia in pregnant patients with hypertension. We prospectively enrolled 149 pregnant women with a history of chronic hypertension or gestational hypertension presenting at a tertiary-care hospital. We compared plasma NT-proBNP and soluble corin concentrations based on their preeclamptic status. In our study cohort, 62 patients with preeclampsia had lower gestational age than 87 patients without preeclampsia (33.3 ± 3 versus 36.6 ± 3 weeks; P &lt; .001), otherwise the baseline characteristics were similar. We observed higher NT-proBNP concentrations in patients with preeclampsia compared to those without preeclampsia (304.3 [96.34, 570.4] vs. 60.8 [35.61, 136.8] ng/L, P &lt; .001), with no differences between chronic and gestational hypertension. However, the concentration of corin was not statistically different between the two groups (1756 [1214, 2133] vs. 1571 [1171, 1961] ng/L, P = .1087). ROC curve analysis demonstrated stronger predictive value of NT-proBNP compared to soluble corin in predicting the presence of preeclampsia in our study population (AUC 0.7406 vs. 0.5789, P &lt; .0001). While corin may contribute to mechanistic underpinnings of the development of preeclampsia in animal models, soluble corin likely has no diagnostic role in human pregnancies for preeclampsia beyond natriuretic peptide levels."	"Advances in our understanding of how the gut microbiota contributes to human health and diseases have expanded our insight into how microbial composition and function affect the human host. Heart failure is associated with splanchnic circulation congestion, leading to bowel wall oedema and impaired intestinal barrier function. This situation is thought to heighten the overall inflammatory state via increased bacterial translocation and the presence of bacterial products in the systemic blood circulation. Several metabolites produced by gut microorganisms from dietary metabolism have been linked to pathologies such as atherosclerosis, hypertension, heart failure, chronic kidney disease, obesity, and type 2 diabetes mellitus. These findings suggest that the gut microbiome functions like an endocrine organ by generating bioactive metabolites that can directly or indirectly affect host physiology. In this Review, we discuss several newly discovered gut microbial metabolic pathways, including the production of trimethylamine and trimethylamine N-oxide, short-chain fatty acids, and secondary bile acids, that seem to participate in the development and progression of cardiovascular diseases, including heart failure. We also discuss the gut microbiome as a novel therapeutic target for the treatment of cardiovascular disease, and potential strategies for targeting intestinal microbial processes."	"Recent advances in cancer prevention and management have led to an exponential increase of cancer survivors worldwide. Regrettably, cardiovascular disease has risen in the aftermath as one of the most devastating consequences of cancer therapies. In this work, we define cancer therapeutics-induced cardiotoxicity as the direct or indirect cardiovascular injury or injurious effect caused by cancer therapies. We describe four progressive stages of this condition and four corresponding levels of prevention, each having a specific goal, focus, and means of action. We subsequently unfold this didactic framework, surveying mechanisms of cardiotoxicity, risk factors, cardioprotectants, biomarkers, and diagnostic imaging modalities. Finally, we outline the most current evidence-based recommendations in this area according to multidisciplinary expert consensus guidelines."	"Cardiotonic steroids (CTS) are Na⁺/K⁺-ATPase (NKA) ligands that are elevated in volume-expanded states and associated with cardiac and renal dysfunction in both clinical and experimental settings. We test the hypothesis that the CTS telocinobufagin (TCB) promotes renal dysfunction in a process involving signaling through the NKA α-1 in the following studies. First, we infuse TCB (4 weeks at 0.1 µg/g/day) or a vehicle into mice expressing wild-type (WT) NKA α-1, as well as mice with a genetic reduction (~40%) of NKA α-1 (NKA α-1<sup>+/-</sup>). Continuous TCB infusion results in increased proteinuria and cystatin C in WT mice which are significantly attenuated in NKA α-1<sup>+/-</sup> mice (all p &lt; 0.05), despite similar increases in blood pressure. In a series of in vitro experiments, 24-h treatment of HK2 renal proximal tubular cells with TCB results in significant dose-dependent increases in both Collagens 1 and 3 mRNA (2-fold increases at 10 nM, 5-fold increases at 100 nM, p &lt; 0.05). Similar effects are seen in primary human renal mesangial cells. TCB treatment (100 nM) of SYF fibroblasts reconstituted with cSrc results in a 1.5-fold increase in Collagens 1 and 3 mRNA (p &lt; 0.05), as well as increases in both Transforming Growth factor beta (TGFb, 1.5 fold, p &lt; 0.05) and Connective Tissue Growth Factor (CTGF, 2 fold, p &lt; 0.05), while these effects are absent in SYF cells without Src kinase. In a patient study of subjects with chronic kidney disease, TCB is elevated compared to healthy volunteers. These studies suggest that the pro-fibrotic effects of TCB in the kidney are mediated though the NKA-Src kinase signaling pathway and may have relevance to volume-overloaded conditions, such as chronic kidney disease where TCB is elevated."	"Circulating cardiac troponin levels (cTn), representative of myocardial injury, are commonly elevated in heart failure (HF) and related to adverse clinical events. However, whether cTn represents a spectrum of risk in HF is unclear. Baseline, 48-72-hour, and 30-day plasma cTnI was measured with the use of a new highly sensitive assay in 900 subjects with acute decompensated HF (ADHF) in ASCEND-HF. Multivariable models determined the relationship between cTnI and outcomes. The median (interquartile range) cTnI was 16.4 (9.3-31.6) ng/L at baseline, 14.1 (7.8-29.7) ng/L at 48-72 hours, and 11.6 (6.8-22.5) ng/L at 30 days. After additional adjustment for N-terminal pro-B-type natriuretic peptide (NT-proBNP) to established risk predictors, both baseline (odds ratio [OR] 1.25; P = .03) and 48-72-hour (OR 1.43; P = .001) cTnI were associated with higher risk for death or worsening HF before discharge. However, only cTnI at 30 days was associated with 180-day death (hazard ratio 1.25; P = .007). There were no curvilinear associations between changing cTnI and clinical outcomes. Circulating cTnI level was associated with clinical outcomes in ADHF, but these observations diminished with additional adjustment for NT-proBNP. Although they likely represent a spectrum of risk in ADHF, these findings question the implications of changing cTnI levels during treatment."	"Precision medicine is the concept of disease treatment and prevention using an individual's genomic profile in addition to personal and environmental factors. This review outlines examples of new biomarker strategies that enable the practice of precision cardiovascular medicine. Although commonly attributed to identifying causative genetic variants, mono-genetic causes of cardiovascular diseases (CVD) are not common and largely focused on lipoprotein analyses. Nevertheless, rare clinical presentations in families with extreme phenotypes can sometimes identify novel pathways that can serve as therapeutic targets, such as the discovery of PCSK9 inhibitors for familial hypercholesterolemia or small molecular inhibitors of myosin ATPase activities for hypertrophic cardiomyopathy. Polygenetic risks scores can also identify high-risk cohorts before their clinical manifestations. Novel metabolomic insights can also lead to unexpected modulators of CVD susceptibility, such as nutrient-induced gut microbiota-derived metabolic pathways. Adequate knowledge systems and data infrastructure are necessary for clinicians to take into account both genetic and environmental factors to operationalize precision medicine and to prevent CVD."	"Prior cohorts demonstrating the importance of serum chloride levels in heart failure either excluded or had partial representation of patients with heart failure with preserved ejection fraction (HFpEF). We aimed to examine the relationship between serum chloride concentration and outcomes in HFpEF. We included participants from the Treatment of Preserved Cardiac Function Heart Failure with an Aldosterone Antagonist Trial (TOPCAT) who met the following criteria: met inclusion by the natriuretic peptide stratum, had recorded serum chloride levels, and were from the Americas (n = 942). Multivariable Cox proportional hazards models tested the association of serum chloride with clinical outcomes, and mixed effects modelling tested the association of spironolactone or loop diuretic on serial serum chloride levels. The median serum chloride level was 102 [25th-75th percentile 100-105 mmol/L (range 84-114 mmol/L)]. After multivariable adjustment, every standard deviation decrease in serum chloride (4.05 mmol/L) was associated with ∼50% increased risk for cardiovascular death [hazard ratio (HR) 1.51, 95% confidence interval (CI) 1.11-2.06, P = 0.008] and ∼30% increased risk for all-cause death (HR 1.29, 95% CI 1.02-1.62, P = 0.04), but not with the primary composite endpoint or heart failure hospitalization (P &gt; 0.3 for both). There were no significant interactions between spironolactone use and the serum chloride-risk relationship (P &gt; 0.1) for each endpoint. Spironolactone was not (P = 0.33) but loop diuretic use was associated with lower serial serum chloride levels (P &lt; 0.001). Lower serum chloride was independently associated with increased risk of cardiovascular and all-cause death in HFpEF. Loop diuretic use, but not spironolactone, lead to a decrease in serum chloride levels over time."	"Mitochondrial oxidation is a major source of reactive oxygen species (ROS) and mitochondrial dysfunction plays a central role in development of heart failure (HF). Paraoxonase 2 deficient (PON2-def) mitochondria are impaired in function. In this study, we tested whether PON2-def aggravates HF progression. Using qPCR, immunoblotting and lactonase activity assay, we demonstrate that PON2 activity was significantly decreased in failing hearts despite increased PON2 expression. To determine the cardiac-specific function of PON2, we performed heart transplantations in which PON2-def and wild type (WT) donor hearts were implanted into WT recipient mice. Beating scores of the donor hearts, assessed at 4 weeks post-transplantation, were significantly decreased in PON2-def hearts when compared to WT donor hearts. By using a transverse aortic constriction (TAC) model, we found PON2 deficiency significantly exacerbated left ventricular remodeling and cardiac fibrosis post-TAC. We further demonstrated PON2 deficiency significantly enhanced ROS generation in heart tissues post-TAC. ROS generation was measured through dihydroethidium (DHE) using high-pressure liquid chromatography (HPLC) with a fluorescent detector. By using neonatal cardiomyocytes treated with CoCl2 to mimic hypoxia, we found PON2 deficiency dramatically increased ROS generation in the cardiomyocytes upon CoCl2 treatment. In response to a short CoCl2 exposure, cell viability and succinate dehydrogenase (SDH) activity assessed by MTT assay were significantly diminished in PON2-def cardiomyocytes compared to those in WT cardiomyocytes. PON2-def cardiomyocytes also had lower baseline SDH activity. By using adult mouse cardiomyocytes and mitochondrial ToxGlo assay, we found impaired cellular ATP generation in PON2-def cells compared to that in WT cells, suggesting that PON2 is necessary for proper mitochondrial function. Our study suggests a cardioprotective role for PON2 in both experimental and human heart failure, which may be associated with the ability of PON2 to improve mitochondrial function and diminish ROS generation."
+"Tannenbaum, Charles"	"Inflammation and Immunity"	18354192	17475896	10936062	9670971	8543822	8258693	7684766	2114413	2494257	2783930	"Tumors can promote their own progressive growth by inducing T cell apoptosis. Though previous studies suggested that tumor-mediated T cell killing is receptor dependent, we recently showed that tumor gangliosides also participate, a notion consistent with reports indicating that, in some cell types, gangliosides can activate the intrinsic apoptotic pathway by stimulating reactive oxygen species production, cytochrome c release, and caspase-9 activation. In this study, we used normal peripheral blood T cells, as well as caspase-8-, caspase-9-, and Fas-associated death domain protein-deficient Jurkat cells, to assess whether the death ligands and gangliosides overexpressed by the renal cell carcinoma (RCC) cell line SK-RC-45 can independently stimulate T cell apoptosis as a mechanism of immune escape. Anti-FasL Abs and the glycosylceramide synthase inhibitor 1-phenyl-2-hexadecanoylamino-3-pyrrolidino-1-propanol (PPPP) each partially inhibited the ability of SK-RC-45 to kill cocultured activated T cells; together, as purified molecules, RCC gangliosides and rFasL induced a more extensive mitochondrial permeability transition and greater levels of apoptosis than either agent alone, equivalent to that induced by the FasL- and ganglioside-expressing RCC line itself. rFasL-mediated apoptosis was completely inhibited in caspase-8- and Fas-associated death domain protein-negative Jurkat cells, though apoptosis induced by purified gangliosides remained intact, findings that correlate with the observed partial inhibition of SK-RC-45-induced apoptosis in the Jurkat lines with defective death receptor signaling. Western blot analysis performed on lysates made from wild-type and mutant Jurkat cells cocultured with SK-RC-45 revealed caspase activation patterns and other biochemical correlates which additionally supported the concept that tumor-associated gangliosides and FasL independently activate the caspase cascade in T cells through the intrinsic and extrinsic pathways, respectively."	"Previous studies from our laboratory demonstrated the role of tumor-derived gangliosides as important mediators of T cell apoptosis, and hence, as one mechanism by which tumors evade immune destruction. In this study, we report that TNF-alpha secreted by infiltrating inflammatory cells and/or genetically modified tumors augments tumor-associated GM2 levels, which leads to T cell death and immune dysfunction. The conversion of weakly apoptogenic renal cell carcinoma (RCC) clones to lines that can induce T cell death requires 3-5 days of TNF-alpha pretreatment, a time frame paralleling that needed for TNF-alpha to stimulate GM2 accumulation by SK-RC-45, SK-RC-54, and SK-RC-13. RCC tumor cell lines permanently transfected with the TNF-alpha transgene are similarly toxic for T lymphocytes, which correlates with their constitutively elevated levels of GM2. TNF-alpha increases GM2 ganglioside expression by enhancing the mRNA levels encoding its synthetic enzyme, GM2 synthase, as demonstrated by both RT-PCR and Southern analysis. The contribution of GM2 gangliosides to tumor-induced T cell death was supported by the finding that anti-GM2 Abs significantly blocked T cell apoptosis mediated by TNF-alpha-treated tumor cells, and by the observation that small interfering RNA directed against TNF-alpha abrogated GM2 synthase expression by TNF-transfected SK-RC-45, diminished its GM2 accumulation, and inhibited its apoptogenicity for T lymphocytes. Our results indicate that TNF-alpha signaling promotes RCC-induced killing of T cells by stimulating the acquisition of a distinct ganglioside assembly in RCC tumor cells."	"IFNgamma is a functionally pleiotropic cytokine which shows considerable potency in promoting anti-tumor functions in vivo. Despite limited efficacy when delivered systemically either to experimental animals or patients, IFNgamma appears to play an important and perhaps critical role in directing the development of immune-mediated tumor destruction when expressed within the tumor bed. This has been demonstrated both by use of tumor cells transduced to express IFNgamma and by the use of IL-12 which is able, at least is murine models, to promote an IFNgamma-dependent, T cell mediated anti-tumor response. Recent studies indicate that the therapeutic efficacy of IFNgamma in tumor models depends critically upon the ability of the tumor cells themselves to respond to IFNgamma. Though IFNgamma is able to induce anti-viral activity and has direct anti-proliferative effects on some tumor cell lines, immunomodulatory function also appears to be an important component of its anti-tumor action. This is mediated through the action of several different classes of IFNgamma-inducible gene expression which control antigen processing and presentation, leukocyte trafficking, and indirect tumor cytotoxicity."	"The role of the non-ELR-containing CXC chemokines IP-10 and Mig in antitumor activity induced by systemic treatment with IL-12 was examined in mice bearing the murine renal adenocarcinoma RENCA. IL-12 treatment produces a potent antitumor effect that is associated with tumor infiltration by CD8+ T lymphocytes. The regression of tumor is associated with the elevated expression of the IFN-gamma-inducible chemokines IP-10 and Mig within the tumor tissue. IP-10 and Mig have been shown to function as chemoattractants for activated T lymphocytes. In animals treated with rabbit polyclonal Abs specific for IP-10 and for Mig, the IL-12-induced regression of RENCA tumors was partially abrogated. This effect was associated with a dramatic inhibition of T cell infiltration. Thus, it appears that IL-12-dependent, T cell-mediated antitumor activity requires the intermediate expression of IP-10 and Mig to recruit antitumor effector T cells to the tumor site."	"The cellular and molecular mechanisms of IL-12-mediated anti-tumor activity have been examined. BALB/c mice bearing established s.c. RENCA or CT26 tumors that were treated daily with IL-12 showed essentially complete tumor regression while tumors in untreated animals grew progressively. Examination of inflammatory gene expression in tumor tissue from treated vs untreated mice revealed the selective expression of IFN-gamma and the IFN-gamma-inducible CXC chemokine IP-10. Immunohistologic analysis demonstrated that tumors from treated mice were heavily infiltrated with CD8+ T cells and Mac-1+ mononuclear cells. Tumor regression in IL-12-treated mice was associated with expression of the lytic effector molecules perforin and granzyme B. These findings support the hypothesis that the anti-tumor function of IL-12 treatment depends upon the induced expression of IFN-gamma by T cells and/or NK cells, the amplification of the immune response mediated by IFN-gamma-induced expression of chemoattractant cytokines, and the IL-12-dependent potentiation of the cytolytic effector function of recruited CD8+ T cells."	"Expression of TNF receptor (TNFR) mRNA has been examined in murine peritoneal macrophages stimulated with LPS and/or IFN-gamma. LPS markedly enhanced expression of a heterogenous population of mRNA, which hybridized with a cDNA encoding the type II TNFR. mRNA expression was optimally induced by 4 to 8 h and returned to baseline by 24 h after stimulation. Interestingly, though IFN-gamma can synergize with LPS for the expression of TNF-alpha, it abrogated the LPS-mediated enhancement of type II TNFR in a dose-dependent fashion. IFN-alpha, though less effective, had a qualitatively comparable effect. These effects were selective for the type II TNFR because levels of mRNA encoding the type I TNFR did not vary appreciably with any of the treatments described. The effects of IFN-gamma on LPS-mediated TNFR expression were dependent on the sequence of exposure; pretreatment with IFN-gamma was most effective at blocking response to LPS, whereas IFN-gamma added 1 h after initiation of LPS treatment had little or no effect. The effects of both LPS and IFN-gamma on type II TNFR expression were mediated at least in part by modulation of transcription. The effects of both LPS and IFN-gamma were also independent of protein synthesis because inclusion of cycloheximide in the treatment protocol did not abrogate either the inductive or the suppressive effects. These findings suggest that IFN-gamma and LPS modulate the physiologic action of TNF through complex mechanisms involving effects on the transcription of TNF-alpha itself and on receptors through which it may act in autocrine or paracrine fashion."	"We previously reported the isolation and characterization of cDNA clones encoding novel lipopolysaccharide (LPS)-inducible mRNAs from murine peritoneal macrophages. We now present the complete coding sequence of a cDNA previously termed D3. Analysis of multiple clones from a murine macrophage cDNA library provided a complete cDNA sequence of approximately 1.6 kb. The corresponding RNA contains a single open reading frame encoding a hydrophilic protein composed of 425 amino acids and is characterized by a region including three perfect and two imperfect repeats of a seven-amino-acid sequence. Based on nucleotide and deduced amino acid sequence, this mRNA is a new member of a previously described multigene cluster of interferon-inducible genes termed the Mouse 200 series genes. This new sequence most closely resembles gene 204 because both D3 and 204 genes have segments containing the seven-amino-acid repeat sequence. The Mouse 202 and 204 genes, however, have an approximately 200-amino-acid carboxyl-terminal domain that is absent in the LPS-inducible macrophage-derived cDNA. In addition, D3, 202, and 204 can all be distinguished from one another by virtue of unique 3' noncoding regions 200-300 base pairs in length. The D3 unique sequence is largely restricted to the smallest of the three size classes of this gene family expressed in macrophages and is not detected in interferon- or platelet-derived growth factor-stimulated fibroblasts. Overall, three separate mRNAs have now been described, each of which has three or more of a possible seven nucleotide sequence domains. Although the function(s) of the members of this gene family remains unknown, the multiple forms inducible by diverse stimuli and their restricted cell type expression suggest diverse and important physiologic roles for their products in inflammation."	"The expression of the early genes JE and KC has been examined in Balb/C 3T3 cells treated with bacterial lipopolysaccharide (LPS). Previous studies showed that JE and KC mRNAs are induced in murine peritoneal macrophages treated with LPS, suggesting a role for these genes in inflammatory responses. Consistent with this possibility are recently published cDNA sequences which document that both genes are members of a superfamily of inflammation- and/or growth-related cytokines. In the present study, we provide evidence that the mRNAs for JE and KC are specifically induced by LPS treatment of Balb/c 3T3 cells. The LPS-stimulated expression of JE and KC was dose dependent, and exhibited a transient time course; message levels were maximal between 2 and 4 hr and declined by 8 hr. The LPS-augmented accumulation of JE and KC occurred even in the presence of cyclohexamide, which additionally had a superinducing effect on the expression of both genes. Cyclohexamide alone, in the absence of LPS, also induced JE and KC mRNA accumulation. LPS-stimulated JE and KC mRNA expression was dependent upon the stimulation of transcription as determined by nuclear &quot;run-on&quot; studies. Comparative analyses indicated that, under the conditions employed, LPS was a somewhat less effective stimulant of JE expression than PDGF or EGF, and was more effective than PDGF and equivalent to EGF in its ability to augment KC accumulation. Unlike PDGF and EGF, LPS did not stimulate DNA synthesis by Balb/c 3T3 cells at any time over the 72 hr period examined. The ability of the inflammatory, non-mitogenic stimulus LPS to selectively induce JE and KC mRNA expression by fibroblasts may reflect their participation in inflammation and wound healing as secretory cells."	"We have recently described the isolation and characterization of a set of cDNA encoding genes whose expression is induced or enhanced in murine peritoneal macrophages by treatment with LPS. In the present report we have analyzed the expression of the mRNA which hybridize with these cDNA probes in macrophages treated with other cytokines known to modulate functional activity. Three distinct patterns of expression have been documented. Two genes (D3 and C7) are inducible by LPS, IFN-gamma, and IFN-beta; D3 is comparably sensitive to all three, whereas C7 is more sensitive to LPS and IFN-gamma than to IFN-beta. The mRNA encoded by D8 is expressed in response to LPS and IFN-beta but not in response to IFN-gamma. Finally the gene encoded by D5 is inducible only in cells treated with LPS. The expression of all three cytokine-inducible mRNA was both dose and time dependent and was mediated by increased transcriptional activity of the genes. As with stimulation by LPS, the expression induced by IFN was independent of protein synthesis and occurred in a rapid and transient fashion. TNF-alpha had little or no detectable effect on any of the genes by themselves. The expression of C7, however, could be induced synergistically by treatment with a combination of TNF-alpha and either IFN-gamma of IFN-beta. The expression of these genes was not specific for macrophages as both IFN were able to induce a comparable pattern of gene expression in BALB/c 3T3 cells. Treatment of macrophages with dexamethasone inhibited LPS-induced C7 and D8 expression but did not affect that seen in response to IFN-gamma or IFN-beta, respectively. The results suggest that IFN and LPS act to modulate early gene expression by the generation of at least three overlapping but distinct signaling pathways. In some cases the pathway(s) which mediate response to LPS appear to be mechanistically distinct from those which mediate response to IFN-beta or IFN-gamma. The spectrum of stimuli and cell types which express these and other early genes suggest that they may play an important role in orchestration of the inflammatory response."	"We have previously described the isolation and characterization of a set of cDNA clones encoding lipopolysaccharide (LPS)-induced early genes in murine peritoneal macrophages. The treatment of macrophages with LPS also stimulates the expression of four early or competence genes (c-fos, c-myc, JE, and KC) described in platelet-derived growth factor-stimulated Balb/c 3T3 cells. These latter findings led to the hypothesis that long term, adaptive responses such as DNA synthesis in fibroblasts and functional activation of macrophages may share multiple mechanistic pathways. To test this possibility, we have examined the expression of four LPS-inducible macrophage genes in platelet-derived growth factor-stimulated Balb/c 3T3 fibroblasts. The results demonstrate that three of these four genes are expressed in 3T3 cells in a fashion reminiscent of other growth factor-stimulated competence genes. All three mRNAs are expressed even in the presence of cycloheximide and two of the three exhibit superinducibility. The accumulation of these specific mRNA species was dependent upon the stimulation of transcription as determined by nuclear &quot;run-off&quot; studies. The platelet-derived growth factor dose dependence is comparable both for stimulation of DNA synthesis and expression of the three early genes. Furthermore, expression of all three genes preceded the entry of the cells into S phase, suggesting an association with cell cycle entry. Stimulation of 3T3 cells with epidermal growth factor resulted in DNA synthesis but not early gene expression. This latter result indicates that these early gene products are not necessary for 3T3 cell mitogenesis. Nevertheless, the expression of these genes in two different cell types in association with two distinct functional responses suggests that they contribute common functions either in terms of the physiologic response in which these cells participate (e.g. inflammation) or in the regulatory mechanisms which govern such responses."
+"Taylor, Dawn"	"Neurosciences"	27979758	26170261	24359452	23724837	23611833	21712569	21623009	21472032	21436529	20064765	"Custom-fitted skull replacement pieces are often used after a head injury or surgery to replace damaged bone. Chronic brain recordings are beneficial after injury/surgery for monitoring brain health and seizure development. Embedding electrodes directly in these artificial skull replacement pieces would be a novel, low-risk way to perform chronic brain monitoring in these patients. Similarly, embedding electrodes directly in healthy skull would be a viable minimally-invasive option for many other neuroscience and neurotechnology applications requiring chronic brain recordings. We demonstrate a preclinical testbed that can be used for refining electrode designs embedded in artificial skull replacement pieces or for embedding directly into the skull itself. Options are explored to increase the surface area of the contacts without increasing recording contact diameter to maximize recording resolution. Embedding electrodes in real or artificial skull allows one to lower electrode impedance without increasing the recording contact diameter by making use of conductive channels that extend into the skull. The higher density of small contacts embedded in the artificial skull in this testbed enables one to optimize electrode spacing for use in real bone. For brain monitoring applications, skull-embedded electrodes fill a gap between electroencephalograms recorded on the scalp surface and the more invasive epidural or subdural electrode sheets. Embedding electrodes into the skull or in skull replacement pieces may provide a safe, convenient, minimally-invasive alternative for chronic brain monitoring. The manufacturing methods described here will facilitate further testing of skull-embedded electrodes in animal models."	"Decoding algorithms for brain-machine interfacing (BMI) are typically only optimized to reduce the magnitude of decoding errors. Our goal was to systematically quantify how four characteristics of BMI command signals impact closed-loop performance: (1) error magnitude, (2) distribution of different frequency components in the decoding errors, (3) processing delays, and (4) command gain. To systematically evaluate these different command features and their interactions, we used a closed-loop BMI simulator where human subjects used their own wrist movements to command the motion of a cursor to targets on a computer screen. Random noise with three different power distributions and four different relative magnitudes was added to the ongoing cursor motion in real time to simulate imperfect decoding. These error characteristics were tested with four different visual feedback delays and two velocity gains. Participants had significantly more trouble correcting for errors with a larger proportion of low-frequency, slow-time-varying components than they did with jittery, higher-frequency errors, even when the error magnitudes were equivalent. When errors were present, a movement delay often increased the time needed to complete the movement by an order of magnitude more than the delay itself. Scaling down the overall speed of the velocity command can actually speed up target acquisition time when low-frequency errors and delays are present. This study is the first to systematically evaluate how the combination of these four key command signal features (including the relatively-unexplored error power distribution) and their interactions impact closed-loop performance independent of any specific decoding method. The equations we derive relating closed-loop movement performance to these command characteristics can provide guidance on how best to balance these different factors when designing BMI systems. The equations reported here also provide an efficient way to compare a diverse range of decoding options offline."	"Brain-computer interface (BCI) systems have been developed to provide paralyzed individuals the ability to command the movements of an assistive device using only their brain activity. BCI systems are typically tested in a controlled laboratory environment were the user is focused solely on the brain-control task. However, for practical use in everyday life people must be able to use their brain-controlled device while mentally engaged with the cognitive responsibilities of daily activities and while compensating for any inherent dynamics of the device itself. BCIs that use electroencephalography (EEG) for movement control are often assumed to require significant mental effort, thus preventing users from thinking about anything else while using their BCI. This study tested the impact of cognitive load as well as speaking on the ability to use an EEG-based BCI. Six participants controlled the two-dimensional (2D) movements of a simulated neuroprosthesis-arm under three different levels of cognitive distraction. The two higher cognitive load conditions also required simultaneously speaking during BCI use. On average, movement performance declined during higher levels of cognitive distraction, but only by a limited amount. Movement completion time increased by 7.2%, the percentage of targets successfully acquired declined by 11%, and path efficiency declined by 8.6%. Only the decline in percentage of targets acquired and path efficiency were statistically significant (p &lt; 0.05). People who have relatively good movement control of an EEG-based BCI may be able to speak and perform other cognitively engaging activities with only a minor drop in BCI-control performance."	"Stereoelectroencephalography (SEEG) is becoming more prevalent as a planning tool for surgical treatment of intractable epilepsy. Stereoelectroencephalography uses long, thin, cylindrical &quot;depth&quot; electrodes containing multiple recording contacts along each electrode's length. Each lead is inserted into the brain percutaneously. The advantage of SEEG is that the electrodes can easily target deeper brain structures that are inaccessible with subdural grid electrodes, and SEEG does not require a craniotomy. Brain-machine interface (BMI) research is also becoming more common in the Epilepsy Monitoring Unit. A brain-machine interface decodes a person's desired movement or action from the recorded brain activity and then uses the decoded brain activity to control an assistive device in real time. Although BMIs are primarily being developed for use by severely paralyzed individuals, epilepsy patients undergoing invasive brain monitoring provide an opportunity to test the effectiveness of different invasive recording electrodes for use in BMI systems. This study investigated the ability to use SEEG electrodes for control of 2D cursor velocity in a BMI. Two patients who were undergoing SEEG for intractable epilepsy participated in this study. Participants were instructed to wiggle or rest the hand contralateral to their SEEG electrodes to control the horizontal velocity of a cursor on a screen. Simultaneously they were instructed to wiggle or rest their feet to control the vertical component of cursor velocity. The BMI system was designed to detect power spectral changes associated with hand and foot activity and translate those spectral changes into horizontal and vertical cursor movements in real time. During testing, participants used their decoded SEEG signals to move the brain-controlled cursor to radial targets that appeared on the screen. Although power spectral information from 28 to 32 electrode contacts were used for cursor control during the experiment, post hoc analysis indicated that better control may have been possible using only a single SEEG depth electrode containing multiple recording contacts in both hand and foot cortical areas. These results suggest that the advantages of using SEEG for epilepsy monitoring may also apply to using SEEG electrodes in BMI systems. Specifically, SEEG electrodes can target deeper brain structures, such as foot motor cortex, and both hand and foot areas can be targeted with a single SEEG electrode implanted percutaneously. Therefore, SEEG electrodes may be an attractive option for simple BMI systems that use power spectral modulation in hand and foot cortex for independent control of 2 degrees of freedom."	"Our goal was to identify spatial filtering methods that would improve decoding of continuous arm movements from epidural field potentials as well as demonstrate the use of the epidural signals in a closed-loop brain-machine interface (BMI) system in monkeys. Eleven spatial filtering options were compared offline using field potentials collected from 64-channel high-density epidural arrays in monkeys. Arrays were placed over arm/hand motor cortex in which intracortical microelectrodes had previously been implanted and removed leaving focal cortical damage but no lasting motor deficits. Spatial filters tested included: no filtering, common average referencing (CAR), principle component analysis, and eight novel modifications of the common spatial pattern (CSP) algorithm. The spatial filtering method and decoder combination that performed the best offline was then used online where monkeys controlled cursor velocity using continuous wrist position decoded from epidural field potentials in real time. Optimized CSP methods improved continuous wrist position decoding accuracy by 69% over CAR and by 80% compared to no filtering. Kalman decoders performed better than linear regression decoders and benefitted from including more spatially-filtered signals but not from pre-smoothing the calculated power spectra. Conversely, linear regression decoders required fewer spatially-filtered signals and were improved by pre-smoothing the power values. The 'position-to-velocity' transformation used during online control enabled the animals to generate smooth closed-loop movement trajectories using the somewhat limited position information available in the epidural signals. The monkeys' online performance significantly improved across days of closed-loop training. Most published BMI studies that use electrocorticographic signals to decode continuous limb movements either use no spatial filtering or CAR. This study suggests a substantial improvement in decoding accuracy could be attained by using our new version of the CSP algorithm that extends the traditional CSP method for use with continuous limb movement data."	"Paralyzed individuals can control the movement of an assistive device using changes in electroencephalographic (EEG) power resulting from attempted movements. Simultaneous, proportional control of two-dimensional (2D) device movements can be achieved with the concurrent modulation of brain activity that is associated with the attempted movement and rest of two independent body parts. Movement control may be improved by spatial filtering methods that recombine raw EEGs to form new signals with more focused information about the underlying brain activity. This study compared spatial filters offline for improving simultaneous proportional 2D movement commands from EEGs. Filtering options evaluated were common average referencing, Laplacian, independent component analysis, principle component analysis, and two novel ways of applying common spatial pattern (CSP) analysis. CSP analysis is a supervised algorithm that optimally recombines EEGs collected under two known conditions. Both CSP options resulted in more accurate movement prediction than the other filtering options. CSP was particularly advantageous when separating EEGs associated with neighboring or overlapping areas on the motor homunculus. Finally, CSP performed well using smaller subsets of filtered signals, thus making CSP practical and efficient for simultaneous 2D control. A 2D online cursor control example using CSP filtering is included to show CSP's utility."	"Movement-assist devices such as neuromuscular stimulation systems can be used to generate movements in people with chronic hand paralysis due to stroke. If detectable, motor planning activity in the cortex could be used in real time to trigger a movement-assist device and restore a person's ability to perform many of the activities of daily living. Additionally, re-coupling motor planning in the cortex with assisted movement generation in the periphery may provide an even greater benefit-strengthening relevant synaptic connections over time to promote natural motor recovery. This study examined the potential for using electroencephalograms (EEGs) as a means of rapidly detecting the intent to open the hand during movement planning in individuals with moderate chronic hand paralysis following a subcortical ischemic stroke. On average, attempts to open the hand could be detected from EEGs approximately 100-500 ms prior to the first signs of movement onset. This earlier detection would minimize device activation delays and allow for tighter coupling between initial formation of the motor plan in the cortex and augmentation of that plan in the periphery by a movement-assist device. This tight temporal coupling may be important or even essential for strengthening synaptic connections and enhancing natural motor recovery."	"This study examines the feasibility of using electroencephalograms (EEGs) to rapidly detect the intent to open one's hand in individuals with complete hand paralysis following a subcortical ischemic stroke. If detectable, this motor-planning activity could be used in real time to trigger a motorized hand exoskeleton or an electrical stimulation device that opens/closes the hand. While EEG-triggered movement-assist devices could restore function, they may also promote recovery by reinforcing the use of remaining cortical circuits. EEGs were recorded while participants were cued to either relax or attempt to extend their fingers. Linear-discriminant analysis was used to detect onset of finger-extension from the EEGs in a leave-one-trial-out cross-validation process. In each testing trial, the classifier was applied in pseudo-real-time starting from an initial hand-relaxed phase, through movement planning, and into the initial attempted-finger-extension phase (finger-extension phase estimated from typical time-to-movement-onset measured in the unaffected hand). The classifiers detected attempted-finger-extension at a significantly higher rate during both motor-planning and early attempted execution compared to rest. To reduce inappropriate triggering of a movement-assist device during rest, the classification threshold could be adjusted to require more certainty about one's intent to move before triggering a device. Additionally, a device could be set to activate only after multiple time samples in a row were classified as finger-extension events. These options resulted in some sessions with no false triggers while the person was resting, but moderate-to-high true trigger rates during attempted-movements."	"Arm end-point position, end-point velocity, and the intended final location or 'goal' of a reach have all been decoded from cortical signals for use in brain-machine interface (BMI) applications. These different aspects of arm movement can be decoded from the brain and used directly to control the position, velocity, or movement goal of a device. However, these decoded parameters can also be remapped to control different aspects of movement, such as using the decoded position of the hand to control the velocity of a device. People easily learn to use the position of a joystick to control the velocity of an object in a videogame. Similarly, in BMI systems, the position, velocity, or goal of a movement could be decoded from the brain and remapped to control some other aspect of device movement. This study evaluates how easily people make transformations between position, velocity, and reach goal in BMI systems. It also evaluates how different amounts of decoding error impact on device control with and without these transformations. Results suggest some remapping options can significantly improve BMI control. This study provides guidance on what remapping options to use when various amounts of decoding error are present."	"Many new assistive devices are available for individuals paralyzed below the neck due to spinal cord injury. Severely paralyzed individuals must be able to command their complex assistive devices using remaining activity from the neck up. Electromyographic (EMG) sensors enable people to use contractions of head and neck muscles to generate multiple proportional command signals. Electroencephalographic (EEG) signals can also be used to generate commands for assistive device control by conveying information about imagined or attempted movements. Fully-implanted wireless biopotential detection systems are now being developed to reliably detect EMGs, EEGs, or a mixture of the two from recording electrodes implanted just under the skin or scalp thus eliminating the need for externally worn hardware on the head or face. This present study shows how novel patterns of jaw muscle contractions, detected via biopotential sensors on the scalp surface or implanted just under the scalp, can be used to generate reliable discrete EMG commands, which can be differentiated from patterns generated during normal activities, such as chewing. These jaw contractions can be detected with sensors already in place to detect other muscle- or brain-based command signals thus adding to the functionality of current device control systems."
+"Ting, Angela"	"Genomic Medicine Institute"	27605446	27257071	26673711	26628371	23710259	23233737	22673787	21990380	21698188	18413723	"Prostate cancer is one of the most common malignancies in men worldwide. Current clinical screening ensures that most prostate cancers are diagnosed while still organ confined, but disease outcome is highly variable. Thus, a better understanding of the molecular features contributing to prostate cancer aggressiveness is being sought. For many cancers, aberrant genome-wide patterns of cytosine DNA methylation in CpG dinucleotides distinguish tumor from normal tissue and contribute to disease progression by altering the transcriptome. In prostate cancer, recent genomic studies identified cancer and high grade-specific differential DNA methylation in gene promoters, gene bodies, gene 3' ends and at distal regulatory elements. Using examples from developmental and disease systems, we will discuss how DNA methylation in each of these genomic contexts can contribute to transcriptome diversity by modulating transcription initiation, alternative transcription start site selection, alternative pre-mRNA splicing and alternative polyadenylation. Alternative transcripts from the same gene often exhibit altered protein-coding potential, translatability, stability and/or localization. All of these can have functional consequences in cells. In future work, it will be important to determine if DNA methylation abnormalities in prostate cancer modify the transcriptome through some or all of these mechanisms and if these DNA methylation-mediated transcriptome alterations impact prostate tumorigenesis and aggressiveness."	"Bioinformatic analysis often produces large sets of genomic ranges that can be difficult to interpret in the absence of genomic context. Goldmine annotates genomic ranges from any source with gene model and feature contexts to facilitate global descriptions and candidate loci discovery. We demonstrate the value of genomic context by using Goldmine to elucidate context dynamics in transcription factor binding and to reveal differentially methylated regions (DMRs) with context-specific functional correlations. The open source R package and documentation for Goldmine are available at http://jeffbhasin.github.io/goldmine."	"DNA methylation differences capture substantial information about the molecular and gene-regulatory states among biological subtypes. Enrichment-based next generation sequencing methods such as MBD-isolated genome sequencing (MiGS) and MeDIP-seq are appealing for studying DNA methylation genome-wide in order to distinguish between biological subtypes. However, current analytic tools do not provide optimal features for analyzing three-group or larger study designs. MethylAction addresses this need by detecting all possible patterns of statistically significant hyper- and hypo- methylation in comparisons involving any number of groups. Crucially, significance is established at the level of differentially methylated regions (DMRs), and bootstrapping determines false discovery rates (FDRs) associated with each pattern. We demonstrate this functionality in a four-group comparison among benign prostate and three clinical subtypes of prostate cancer and show that the bootstrap FDRs are highly useful in selecting the most robust patterns of DMRs. Compared to existing tools that are limited to two-group comparisons, MethylAction detects more DMRs with strong differential methylation measurements confirmed by whole genome bisulfite sequencing and offers a better balance between precision and recall in cross-cohort comparisons. MethylAction is available as an R package at http://jeffbhasin.github.io/methylaction. "	"A critical need in understanding the biology of prostate cancer is characterizing the molecular differences between indolent and aggressive cases. Because DNA methylation can capture the regulatory state of tumors, we analyzed differential methylation patterns genome-wide among benign prostatic tissue and low-grade and high-grade prostate cancer and found extensive, focal hypermethylation regions unique to high-grade disease. These hypermethylation regions occurred not only in the promoters of genes but also in gene bodies and at intergenic regions that are enriched for DNA-protein binding sites. Integration with existing RNA-sequencing (RNA-seq) and survival data revealed regions where DNA methylation correlates with reduced gene expression associated with poor outcome. Regions specific to aggressive disease are proximal to genes with distinct functions from regions shared by indolent and aggressive disease. Our compendium of methylation changes reveals crucial molecular distinctions between indolent and aggressive prostate cancer."	"Allele-specific methylation (ASM) has long been studied but mainly documented in the context of genomic imprinting and X chromosome inactivation. Taking advantage of the next-generation sequencing technology, we conduct a high-throughput sequencing experiment with four prostate cell lines to survey the whole genome and identify single nucleotide polymorphisms (SNPs) with ASM. A Bayesian approach is proposed to model the counts of short reads for each SNP conditional on its genotypes of multiple subjects, leading to a posterior probability of ASM. We flag SNPs with high posterior probabilities of ASM by accounting for multiple comparisons based on posterior false discovery rates. Applying the Bayesian approach to the in-house prostate cell line data, we identify 269 SNPs as candidates of ASM. A simulation study is carried out to demonstrate the quantitative performance of the proposed approach."	"Recent epidemiologic data show that low serum cholesterol level as well as statin use is associated with a decreased risk of developing aggressive or advanced prostate cancer, suggesting a role for cholesterol in aggressive prostate cancer development. Intracellular cholesterol promotes prostate cancer progression as a substrate for de novo androgen synthesis and through regulation of AKT signaling. By conducting next-generation sequencing-based DNA methylome analysis, we have discovered marked hypermethylation at the promoter of the major cellular cholesterol efflux transporter, ABCA1, in LNCaP prostate cancer cells. ABCA1 promoter hypermethylation renders the promoter unresponsive to transactivation and leads to elevated cholesterol levels in LNCaP. ABCA1 promoter hypermethylation is enriched in intermediate- to high-grade prostate cancers and not detectable in benign prostate. Remarkably, ABCA1 downregulation is evident in all prostate cancers examined, and expression levels are inversely correlated with Gleason grade. Our results suggest that cancer-specific ABCA1 hypermethylation and loss of protein expression direct high intracellular cholesterol levels and hence contribute to an environment conducive to tumor progression."	"Epigenetics dictate how the genetic blueprint is ultimately expressed and, therefore, is fundamental to our understanding of disease etiology and cellular responses and consequences to exposure of stimuli, such as anesthetics and perioperative stress. The goal of this review is to provide a concise overview of the fundamental concepts in epigenetics and discuss how epigenetics may be incorporated into research studies in anesthesiology. Chemical modifications of DNA and core histone proteins are epigenetic marks that constitute the functional genome and are key to generating diverse cellular phenotypes from the same genotype. These modifications and the cellular machineries that regulate them are essential for maintaining tissue-specific and timing-specific expression profiles for normal functioning and can be altered in disease contexts, thus providing the molecular basis for the abnormalities. Similar to determining cellular identity within a person, epigenetic differences between individuals, including monozygotic twins, can account for disparate phenotypes in the absence of genetic variation in the genes of interest. Furthermore, epigenetic modifications are dynamic but heritable and, thus, are fitting for reinforcing adaptive phenotypes in response to external stimuli. Epigenetic mechanisms underlie many human pathological conditions and impact clinical management in a variety of contexts. Although epigenetic research related to anesthesiology is sparse at the present, the full understanding of the mechanism of action of analgesics, interindividual variations in responses to anesthetics and consequences of exposure to anesthetic drugs will likely require the evaluation and integration of epigenetic information into current research paradigms."	"A subset of colorectal cancers was postulated to have the CpG island methylator phenotype (CIMP), a higher propensity for CpG island DNA methylation. The validity of CIMP, its molecular basis, and its prognostic value remain highly controversial. Using MBD-isolated genome sequencing, we mapped and compared genome-wide DNA methylation profiles of normal, non-CIMP, and CIMP colon specimens. Multidimensional scaling analysis revealed that each specimen could be clearly classified as normal, non-CIMP, and CIMP, thus signifying that these three groups have distinctly different global methylation patterns. We discovered 3780 sites in various genomic contexts that were hypermethylated in both non-CIMP and CIMP colon cancers when compared with normal colon. An additional 2026 sites were found to be hypermethylated in CIMP tumors only; and importantly, 80% of these sites were located in CpG islands. These data demonstrate on a genome-wide level that the additional hypermethylation seen in CIMP tumors occurs almost exclusively at CpG islands and support definitively that these tumors were appropriately named. When these sites were examined more closely, we found that 25% were adjacent to sites that were also hypermethylated in non-CIMP tumors. Thus, CIMP is also characterized by more extensive methylation of sites that are already prone to be hypermethylated in colon cancer. These observations indicate that CIMP tumors have specific defects in controlling both DNA methylation seeding and spreading and serve as an important first step in delineating molecular mechanisms that control these processes."	"Abnormal microRNA (miRNA) expression has been linked to the development and progression of several human cancers, and such dysregulation can result from aberrant DNA methylation. While a small number of miRNAs is known to be regulated by DNA methylation, we postulated that such epigenetic regulation is more prevalent. By combining MBD-isolated Genome Sequencing (MiGS) to evaluate genome-wide DNA methylation patterns and microarray analysis to determine miRNA expression levels, we systematically searched for candidate miRNAs regulated by DNA methylation in colorectal cancer cell lines. We found 64 miRNAs to be robustly methylated in HCT116 cells; eighteen of them were located in imprinting regions or already reported to be regulated by DNA methylation. For the remaining 46 miRNAs, expression levels of 18 were consistent with their DNA methylation status. Finally, 8 miRNAs were up-regulated by 5-aza-2'-deoxycytidine treatment and identified to be novel miRNAs regulated by DNA methylation. Moreover, we demonstrated the functional relevance of these epigenetically silenced miRNAs by ectopically expressing select candidates, which resulted in inhibition of growth and migration of cancer cells. In addition to reporting these findings, our study also provides a reliable, systematic strategy to identify DNA methylation-regulated miRNAs by combining DNA methylation profiles and expression data."	"Promoter hypermethylation is a prevalent phenomenon, found in virtually all cancer types studied thus far, and accounts for tumor suppressor gene silencing in the absence of genetic mutations. The mechanism behind the establishment and maintenance of such aberrant hypermethylation has been under intense study. Here, we have uncovered a link between aberrant gene silencing associated with promoter CpG island DNA methylation and the siRNA/miRNA processing enzyme, DICER, in human cancer cells. By comparing demethylated HCT116 colon cancer cells with HCT116 cells genetically rendered hypomorphic for DICER, we identified a group of epigenetically silenced genes that became reactivated in the absence of functional DICER. This reactivation is associated with a dramatic loss of localized promoter DNA hypermethylation. Thus, intact DICER is required to maintain full promoter DNA hypermethylation of select epigenetically silenced loci in human cancer cells."
+"Tonelli, Adriano"	"Inflammation and Immunity"	30621691	30063259	29771822	29698719	29671686	29377954	29323451	28947049	28840954	28643420	"Little is known on the pulmonary gradients of oxyhemoglobin, carboxyhemoglobin and methemoglobin in pulmonary arterial hypertension (PAH). We sought to determine these gradients in group 1 PAH and assess their association with disease severity and survival. During right heart catheterization (RHC) we obtained blood from pulmonary artery (PA) and pulmonary artery wedge (PAW) positions and used co-oximetry to test their gasometric differences. We included a total of 130 patients, 65 had group 1 PAH, 40 had pulmonary hypertension (PH) from groups 2-5 and 25 had no PH during RHC. In all groups, PAW blood had higher pH, carboxyhemoglobin and lactate as well as lower pCO2 than PA blood. In group 1 PAH (age 58 ± 15 years, 72% females), methemoglobin in the PAW was lower than in the PA blood (0.83% ± 0.43 vs 0.95% ± 0.50, p = 0.03) and was directly associated with the degree of change in pulmonary vascular resistance (R = 0.35, p = 0.02) during inhaled nitric oxide test. Oxyhemoglobin in PA (HR (95%CI): 0.90 (0.82-0.99), p = 0.04) and PAW (HR (95%CI): 0.91 (0.84-0.98), p = 0.003) blood was associated with adjusted survival in PAH. Marked differences were observed in the gasometric determinations between PAW and PA blood. The pulmonary gradient of methemoglobin was lower in PAH patients compared to controls and a higher PAW blood methemoglobin was associated with a more pronounced pulmonary vascular response to inhaled nitric oxide. Pulmonary artery and PAW oxyhemoglobin tracked with disease severity and survival in PAH."	"Portopulmonary hypertension (PoPH) is a form of pulmonary arterial hypertension (PAH) that can develop as a complication of portal hypertension. Treatment of PoPH includes PAH-specific therapies, and in certain cases, such therapies are necessary to facilitate a successful liver transplantation. A significant number of barriers may limit the adequate treatment of patients with PoPH and explain the poorer survival of these patients when compared to patients with other types of PAH. Until recently, only one randomized controlled trial has included PoPH patients, and the majority of treatment data have been derived from relatively small observational studies. In the present article, we review some of the barriers in the treatment of patients with PoPH and implications for liver transplantation."	"Peripheral capillary oxygen saturation (SpO2) is used as surrogate for arterial blood oxygen saturation. We studied the degree of discrepancy between SpO2 and arterial oxygen (SaO2) and identified parameters that may explain this difference. We included patients who underwent cardiopulmonary exercise testing at Cleveland Clinic. Pulse oximeters with forehead probes measured SpO2 and arterial blood gas samples provided the SaO2 both at rest and peak exercise. We included 751 patients, 54 ± 16 yr old with 53% of female gender. Bland-Altman analysis revealed a bias of 3.8% with limits of agreement of 0.3% to 7.9% between SpO2 and SaO2 at rest. A total of 174 (23%) patients had SpO2 ≥ 5% of SaO2, and these individuals were older, current smokers with lower forced expiratory volume in the first second and higher partial pressure of carbon dioxide and carboxyhemoglobin. At peak exercise (n = 631), 75 (12%) SpO2 values were lower than the SaO2 determinations reflecting difficulties in the SpO2 measurement in some patients. The bias between SpO2 and SaO2 was 2.6% with limits of agreement between -2.9% and 8.1%. Values of SpO2 ≥ 5% of SaO2 (n = 78, 12%) were associated with the significant resting variables plus lower heart rate, oxygen consumption, and oxygen pulse. In multivariate analyses, carboxyhemoglobin remained significantly associated with the difference between SpO2 and SaO2 both at rest and peak exercise. In the present study, pulse oximetry commonly overestimated the SaO2. Increased carboxyhemoglobin levels are independently associated with the difference between SpO2 and SaO2, a finding particularly relevant in smokers."	"Serum chloride is an important homeostatic biomarker in left heart failure, with significant prognostic implications. The impact of serum chloride in the long-term survival of patients with pulmonary arterial hypertension (PAH) is unknown. We tested whether serum chloride levels are associated with long-term survival in patients with PAH. We included patients with idiopathic or heritable PAH who had a basic metabolic panel performed at the time of their diagnostic right heart catheterization. Laboratory results were recorded both at diagnosis and 6-month follow-up. We included 277 patients, mean age 51 ± 18 years and 73% women, of whom 254 had a follow-up electrolyte determination at 6 months. Serum chloride was 102.9 ± 3.9 mM/L at diagnosis. A serum chloride ≤ 100 mM/L was noted in 65 (24%) and 53 (21%) patients at diagnosis and 6 months, respectively. Patients with serum chloride ≤ 100 mM/L at 6 months tracked with increase mortality when adjusted by age, sex, pulmonary vascular resistance, diuretics or prostacyclin analogs usage, and serum creatinine and sodium at 6 months (hazard ratio, 1.83; 95% CI, 1.11-3.00). This group of patients was older, with decreased functional capacity, had worse renal function, took more diuretics, had higher pulmonary artery wedge pressure but lower mean pulmonary artery pressure, transpulmonary gradient, and pulmonary vascular resistance. Serum chloride at 6 months from the PAH diagnosis is a strong and independent predictor of mortality in patients with idiopathic or heritable PAH, even after adjusting serum sodium, renal function, diuretic, and prostacyclin analog usage."	"The diagnosis of pulmonary hypertension (PH) requires a right heart catheterization (RHC) that reveals a mean pulmonary artery pressure ≥ 25 mmHg. The pulmonary artery catheter traverse the right atrium and ventricle on its way to the pulmonary artery. The presence of abnormal right heart structures, i.e. thrombus, vegetation, benign or malignant cardiac lesions, can lead to complications during this procedure. On the other hand, avoidance of RHC delays the diagnosis and treatment of PH, an approach that might be associated with worse outcomes. This paper discusses the impact of right heart lesions on the diagnosis of PH and suggests an approach on how to manage this association."	"The prevalence and prognostic implications of hypoxemia either at rest or during six-minute walk test (6MWT) in patients with idiopathic or heritable pulmonary arterial hypertension (IPAH or HPAH) have not been systemically studied. We sought to determine the prevalence, phenotypic and prognostic implications of hypoxemia in patients with IPAH and HPAH. Patients with IPAH or HPAH were identified from the Cleveland Clinic Pulmonary Hypertension Registry. Pulse oximetry (SpO2) at rest and during 6MWT was used to define hypoxemia at rest or during activities when measurements were lower than 90%, respectively. A total of 292 patients (age 50.6 ± 18.0 years, 73% females) with IPAH (88%) and HPAH (12%) were included. Of them, 143 (49%) had SpO2 &gt;90% at rest and during 6MWT, 89 (31%) subjects had hypoxemia during 6MWT and 60 (20%) had hypoxemia at rest. Patients with hypoxemia had older age, greater body mass index, higher prevalence of cardiovascular risk factors, worse functional capacity and pulmonary function tests but less severe pre-capillary pulmonary hypertension. Individuals with hypoxemia either at rest or during the initial 6MWT had worse long-term survival when compared to subjects without hypoxemia, even when adjusting for a great number of potential confounders. (HR: 2.5 (95% CI: 1.54-3.98)). Hypoxemia in patients with IPAH and HPAH is associated with more comorbidities, less severe pre-capillary pulmonary hypertension and worse survival."	"Microvascular changes play central roles in the pathophysiology of SSc and SLE, and represent major causes of morbidity and mortality in these patients. Therefore, clinical tools that can assess the microvasculature are of great importance both at the time of diagnosis and follow-up of these cases. These tools include capillaroscopy, laser imaging techniques, infrared thermography, and iontophoresis. In this review, we examined the clinical manifestations and pathobiology of microvascular involvement in SSc and SLE as well as the methodologies used to evaluate the microvasculature."	"Management of pulmonary hypertension (PH) has remained an unmet need in advanced left heart failure with reduced ejection fraction. In fact, patients are frequently denied heart transplant due to untreated pulmonary hypertension. The availability of mechanically circulatory devices and PH therapies has provided a ray of hope. PH specific therapies are currently not FDA approved for patients with left heart failure with reduced ejection fraction. However, clinicians have used these medications in anecdotal manner. With this review, we want to highlight the expanding use of PH specific therapy and mechanical circulatory devices in the management of PH in the setting of advanced heart failure with reduced ejection fraction."	"The number of cardiac cycles that need to be reviewed by echocardiography before a significant intrapulmonary shunt can be excluded remains unclear. We retrospectively identified patients with cirrhosis who underwent technetium-99 m-labeled macroaggregated albumin scanning. The kinetics of bubble appearance after the injection of agitated saline during transthoracic echocardiograms were assessed in these patients. For the 64 eligible patients, the mean ± SD age was 56 ± 9 years. The median (IQR) shunt fraction by radionuclide scanning was 7.7% (2.8%-19.9%). Microbubbles were seen in the left atrium (LA) and left ventricle (LV) at a median (IQR) of 4 (2-5) and 4 (2-5) beats, respectively. The number of heart cycles before microbubbles appeared in the LA or LV was inversely associated with the nuclear scanning shunt fraction (R = -0.42, P = .001, R = -0.46, P &lt; .001, respectively). If no microbubbles were detected by heart cycle 7, the shunt fraction was uniformly less than 3%. Patients with arterial oxygen &lt;60 mm Hg, compared to ≥60 mm Hg, had earlier appearance of microbubbles in the left heart chambers (2.6 ± 1.9 vs 4.0 ± 2.3 beats, P = .046). In patients with advanced cirrhosis suspected of having hepatopulmonary syndrome, a greater shunt fraction during nuclear scanning was associated with more pronounced hypoxemia and a prompt and more intense appearance of microbubbles in the left-sided heart chambers. Patients with a shunt fraction above 3% have microbubbles in the LA or LV at some point during the first seven heart cycles."	"Anticoagulation is a common treatment modality in patients with pulmonary arterial hypertension (PAH). Further studies are needed to appropriately assess the risk/benefit ratio of anticoagulation, particularly in PAH patients receiving PAH-specific therapies. We use observational long-term data on PAH patients treated with subcutaneous (SQ) treprostinil from a large open-label study. Patients were followed for up to 4 years. The use of warfarin and bleeding events were recorded. At total of 860 patients (age [mean±SD] 46±15 years, 76% female, 83% Caucasian, 49% idiopathic PAH, and 76% New York Heart Association [NYHA] functional class III) were included. All patients received SQ treprostinil (15% also other pulmonary hypertension [PH]-therapies) and 590 (69%) received warfarin during the study. The proportions of women, African American, and idiopathic pulmonary hypertension (IPAH) patients were higher in the group receiving warfarin. A higher proportion of patients with congenital heart disease and portopulmonary hypertension did not receive warfarin. There were no differences in unadjusted long-term survival between PAH patients receiving warfarin or not (log-rank test, P value=.69), even when only considering idiopathic PAH (P=.32). In addition, no difference was found in adjusted long-term survival both in PAH (P=.84) and idiopathic PAH patients (P=.44) based on the use of warfarin. Furthermore, no survival difference based on the use of warfarin were noted between propensity score-matched PAH patients (P=.37). Long-term anticoagulation with warfarin was not associated with any significant effect on survival in PAH or idiopathic PAH patients treated with SQ treprostinil."
+"Trapp, Bruce"	"Neurosciences"	30215581	30143361	29754529	29361242	29274095	28833377	27872255	25750925	25693054	25066805	"Dr Bruce Trapp and Dr Daniel Ontaneda speak to Laura Dormer, Commissioning Editor: Bruce D Trapp, PhD, is a Chair of the Department of Neurosciences at the Lerner Research Institute, Cleveland Clinic (OH, USA) and Professor of Molecular Medicine at Case Western Reserve University (OH, USA). Dr Trapp received his PhD from Loyola University Stritch School of Medicine in Chicago (IL, USA). Dr Trapp's research investigates the cause of neurological disability in multiple sclerosis patients, cellular mechanism of brain repair in neurodegenerative diseases and the molecular biology of myelination in the central and peripheral nervous systems. Daniel Ontaneda, MD, is a staff neurologist at the Cleveland Clinic Mellen Center for Multiple Sclerosis. Dr Ontaneda earned his MD from the Universidad Católica del Ecuador and MSc in clinical research from Case Western Reserve University. He completed a postdoctoral fellowship at Baylor College of Medicine, followed by neurology and neuroimmunology training at the Cleveland Clinic. His specialties include acute disseminated encephalomyelitis, Devic's disease (neuromyelitis optica), multiple sclerosis, neuroimmunology, optic neuritis and transverse myelitis."	"Demyelination of cerebral white matter is thought to drive neuronal degeneration and permanent neurological disability in individuals with multiple sclerosis. Findings from brain MRI studies, however, support the possibility that demyelination and neuronal degeneration can occur independently. We aimed to establish whether post-mortem brains from patients with multiple sclerosis show pathological evidence of cortical neuronal loss that is independent of cerebral white-matter demyelination. Brains and spinal cords were removed at autopsy from patients, who had died with multiple sclerosis, at the Cleveland Clinic in Cleveland, OH, USA. Visual examination of centimetre-thick slices of cerebral hemispheres was done to identify brains without areas of cerebral white-matter discoloration that were indicative of demyelinated lesions (referred to as myelocortical multiple sclerosis) and brains that had cerebral white-matter discolorations or demyelinated lesions (referred to as typical multiple sclerosis). These individuals with myelocortical multiple sclerosis were matched by age, sex, MRI protocol, multiple sclerosis disease subtype, disease duration, and Expanded Disability Status Scale, with individuals with typical multiple sclerosis. Demyelinated lesion area in tissue sections of cerebral white matter, spinal cord, and cerebral cortex from individuals classed as having myelocortical and typical multiple sclerosis were compared using myelin protein immunocytochemistry. Neuronal densities in cortical layers III, V, and VI from five cortical regions not directly connected to spinal cord (cingulate gyrus and inferior frontal cortex, superior temporal cortex, and superior insular cortex and inferior insular cortex) were also compared between the two groups and with aged-matched post-mortem brains from individuals without evidence of neurological disease. Brains and spinal cords were collected from 100 deceased patients between May, 1998, and November, 2012, and this retrospective study was done between Sept 6, 2011, and Feb 2, 2018. 12 individuals were identified as having myelocortical multiple sclerosis and were compared with 12 individuals identified as having typical multiple sclerosis. Demyelinated lesions were detected in spinal cord and cerebral cortex, but not in cerebral white matter, of people with myelocortical multiple sclerosis. Cortical demyelinated lesion area was similar between myelocortical and typical multiple sclerosis (median 4·45% [IQR 2·54-10·81] in myelocortical vs 9·74% [1·35-19·50] in typical multiple sclerosis; p=0·5512). Spinal cord demyelinated area was significantly greater in typical than in myelocortical multiple sclerosis (median 3·81% [IQR 1·72-7·42] in myelocortical vs 13·81% [6·51-29·01] in typical multiple sclerosis; p=0·0083). Despite the lack of cerebral white-matter demyelination in myelocortical multiple sclerosis, mean cortical neuronal densities were significantly decreased compared with control brains (349·8 neurons per mm<sup>2</sup> [SD 51·9] in myelocortical multiple sclerosis vs 419·0 [43·6] in controls in layer III [p=0·0104]; 355·6 [46·5] vs 454·2 [48·3] in layer V [p=0·0006]; 366·6 [50·9] vs 458·3 [48·4] in layer VI [p=0·0049]). By contrast, mean cortical neuronal densities were decreased in typical multiple sclerosis brains compared with those from controls in layer V (392·5 [59·0] vs 454·2 [48·3]; p=0·0182) but not layers III and VI. We propose that myelocortical multiple sclerosis is a subtype of multiple sclerosis that is characterised by demyelination of spinal cord and cerebral cortex but not of cerebral white matter. Cortical neuronal loss is not accompanied by cerebral white-matter demyelination and can be an independent pathological event in myelocortical multiple sclerosis. Compared with control brains, cortical neuronal loss was greater in myelocortical multiple sclerosis cortex than in typical multiple sclerosis cortex. The molecular mechanisms of primary neuronal degeneration and axonal pathology in myelocortical multiple sclerosis should be investigated in future studies. US National Institutes of Health and National Multiple Sclerosis Society."	NA	"Purpose To determine if magnetic resonance (MR) imaging metrics can estimate primary motor cortex (PMC) motor neuron (MN) density in patients with amyotrophic lateral sclerosis (ALS). Materials and Methods Between 2012 and 2014, in situ brain MR imaging was performed in 11 patients with ALS (age range, 35-81 years; seven women and four men) soon after death (mean, 5.5 hours after death; range, 3.2-9.6 hours). The brain was removed, right PMC (RPMC) was excised, and MN density was quantified. RPMC metrics (thickness, volume, and magnetization transfer ratio) were calculated from MR images. Regression modeling was used to estimate MN density by using RPMC and global MR imaging metrics (brain and tissue volumes); clinical variables were subsequently evaluated as additional estimators. Models were tested at in vivo MR imaging by using the same imaging protocol (six patients with ALS; age range, 54-66 years; three women and three men). Results RPMC mean MN density varied over a greater than threefold range across patients and was estimated by a linear function of normalized gray matter volume (adjusted R<sup>2</sup> = 0.51; P = .008; &lt;10% error in most patients). When considering only sporadic ALS, a linear function of normalized RPMC and white matter volumes estimated MN density (adjusted R<sup>2</sup> = 0.98; P = .01; &lt;10% error in all patients). In vivo data analyses detected decreases in MN density over time. Conclusion PMC mean MN density varies widely in end-stage ALS possibly because of disease heterogeneity. MN density can potentially be estimated by MR imaging metrics. <sup>©</sup> RSNA, 2018 Online supplemental material is available for this article."	"Fragile X Syndrome (FXS) is the major cause of inherited mental retardation and the leading genetic cause of Autism spectrum disorders. FXS is caused by mutations in the Fragile X Mental Retardation 1 (Fmr1) gene, which results in transcriptional silencing of Fragile X Mental Retardation Protein (FMRP). To elucidate cellular mechanisms involved in the pathogenesis of FXS, we compared dendritic spines in the hippocampal CA1 region of adult wild-type (WT) and Fmr1 knockout (Fmr1-KO) mice. Using diolistic labeling, confocal microscopy, and three-dimensional electron microscopy, we show a significant increase in the diameter of secondary dendrites, an increase in dendritic spine density, and a decrease in mature dendritic spines in adult Fmr1-KO mice. While WT and Fmr1-KO mice had the same mean density of spines, the variance in spine density was three times greater in Fmr1-KO mice. Reduced astrocyte participation in the tripartite synapse and less mature post-synaptic densities were also found in Fmr1-KO mice. We investigated whether the increase in synaptic spine density was associated with altered synaptic pruning during development. Our data are consistent with reduced microglia-mediated synaptic pruning in the CA1 region of Fmr1-KO hippocampi when compared with WT littermates at postnatal day 21, which is the peak period of synaptic pruning in the mouse hippocampus. Collectively, these results support abnormal synaptogenesis and synaptic remodeling in mice deficient in FMRP. Deficits in the maturation and distribution of synaptic spines on dendrites of CA1 hippocampal neurons may play a role in the intellectual disabilities associated with FXS."	"Detecting cortical demyelination in patients with multiple sclerosis (MS) is difficult. Using magnetic resonance imaging (MRI), ratio maps of T1-weighted (T1w) and T2-weighted (T2w) images may be sensitive to cortical myelin levels. In this MRI-histological study, postmortem in situ scans were acquired from 6 cadavers with MS on a 3T MRI machine. Immunocytochemistry was used to correlate myelin status and cortical T1w/T2w measures. The results showed that the T1w/T2w values significantly differed between demyelinated and myelinated cortex (p &lt; 0.001). The T1w/T2w ratio maps may be a relatively simple, clinically feasible method to assess cortical demyelination. Ann Neurol 2017;82:635-639."	"Hereditary spastic paraplegia (HSP) is a neurological syndrome characterized by degeneration of central nervous system (CNS) axons. Mutated HSP proteins include myelin proteolipid protein (PLP) and axon-enriched proteins involved in mitochondrial function, smooth endoplasmic reticulum (SER) structure, and microtubule (MT) stability/function. We characterized axonal mitochondria, SER, and MTs in rodent optic nerves where PLP is replaced by the peripheral nerve myelin protein, P0 (P0-CNS mice). Mitochondrial pathology and degeneration were prominent in juxtaparanodal axoplasm at 1 mo of age. In wild-type (WT) optic nerve axons, 25% of mitochondria-SER associations occurred on extensions of the mitochondrial outer membrane. Mitochondria-SER associations were reduced by 86% in 1-mo-old P0-CNS juxtaparanodal axoplasm. 1-mo-old P0-CNS optic nerves were more sensitive to oxygen-glucose deprivation and contained less adenosine triphosphate (ATP) than WT nerves. MT pathology and paranodal axonal ovoids were prominent at 6 mo. These data support juxtaparanodal mitochondrial degeneration, reduced mitochondria-SER associations, and reduced ATP production as causes of axonal ovoid formation and axonal degeneration."	"Cognitive decline is a common symptom in multiple sclerosis patients, with profound effects on the quality of life. A nonhuman primate model of multiple sclerosis would be best suited to test the effects of demyelination on complex cognitive functions such as learning and reasoning. Cuprizone has been shown to reliably induce brain demyelination in mice. To establish a nonhuman primate model of multiple sclerosis, young adult cynomolgus monkeys were administered cuprizone per os as a dietary supplement. The subjects received increasing cuprizone doses (0.3-3% of diet) for up to 18 weeks. Magnetic resonance imaging and immunohistological analyses did not reveal demyelination in these monkeys. "	"Microglia were first identified over a century ago, but our knowledge about their ontogeny and functions has significantly expanded only recently. Microglia colonize the central nervous system (CNS) in utero and play essential roles in brain development. Once neural development is completed, microglia function as the resident innate immune cells of the CNS by surveying their microenvironment and becoming activated when the CNS is challenged by infection, injury, or disease. Despite the traditional view of microglia as being destructive in neurological diseases, recent studies have shown that microglia maintain CNS homeostasis and protect the CNS under various pathological conditions. Microglia can be prophylactically activated by modeling infection with systemic lipopolysaccharide injections and these activated microglia can protect the brain from traumatic injury through modulation of neuronal synapses. Microglia can also protect the CNS by promoting neurogenesis, clearing debris, and suppressing inflammation in diseases such as stroke, autism, and Alzheimer's. Microglia are the resident innate immune cells of the CNS. Despite the traditional view of microglia as being destructive in neurological diseases, recent studies have shown that they maintain tissue homeostasis and protect the CNS under various pathological conditions. They achieve so by clearing debris, promoting neurogenesis, suppressing inflammation and stripping inhibitory synapses. This review summarizes recent advances of our understanding on the multi-dimensional neuroprotective roles of microglia. "	"The central nervous system (CNS) of terrestrial vertebrates underwent a prominent molecular change when proteolipid protein (PLP) replaced P0 protein as the most abundant protein of CNS myelin. However, PLP did not replace P0 in peripheral nervous system (PNS) myelin. To investigate the possible consequences of a PLP to P0 shift in PNS myelin, we engineered mice to express PLP instead of P0 in PNS myelin (PLP-PNS mice). PLP-PNS mice had severe neurological disabilities and died between 3 and 6 months of age. Schwann cells in sciatic nerves from PLP-PNS mice sorted axons into one-to-one relationships but failed to form myelin internodes. Mice with equal amounts of P0 and PLP had normal PNS myelination and lifespans similar to wild-type (WT) mice. When PLP was overexpressed with one copy of the P0 gene, sciatic nerves were hypomyelinated; mice displayed motor deficits, but had normal lifespans. These data support the hypothesis that while PLP can co-exist with P0 in PNS myelin, PLP cannot replace P0 as the major structural protein of PNS myelin."
+"Tuohy, Vincent"	"Inflammation and Immunity"	29093011	28428886	27322324	26618181	25670003	25274653	25172043	24105638	22993071	23344231	"Epithelial ovarian carcinoma (EOC) is the most prevalent form of ovarian cancer in the United States, representing approximately 85% of all cases and causing more deaths than any other gynecologic malignancy. We propose that optimized control of EOC requires the incorporation of a vaccine capable of inducing safe and effective preemptive immunity in cancer-free women. In addition, we hypothesize that ovarian-specific self-proteins that are &quot;retired&quot; from autoimmune-inducing expression levels as ovaries age but are expressed at high levels in emerging EOC may serve as vaccine targets for mediating safe and effective primary immunoprevention. Here, we show that expression of the extracellular domain of anti-Müllerian hormone receptor II (AMHR2-ED) in normal tissues is confined exclusively to the human ovary, drops to nonautoimmune inducing levels in postmenopausal ovaries, and is at high levels in approximately 90% of human EOC. We found that AMHR2-ED vaccination significantly inhibits growth of murine EOC and enhances overall survival without inducing oophoritis in aged female mice. The observed inhibition of EOC growth was mediated substantially by induction of AMHR2-ED-specific IgG antibodies that agonize receptor signaling of a Bax/caspase-3-dependent proapoptotic cascade. Our results indicate that AMHR2-ED vaccination may be particularly useful in providing safe and effective preemptive immunity against EOC in women at high genetic or familial risk who have the greatest need for a preventive vaccine and ultimately in cancer-free postmenopausal women who account for 75% of all EOC cases. Cancer Prev Res; 10(11); 612-24. ©2017 AACRSee related editorial by Shoemaker et al., p. 607."	"Testicular cancer is the most common male neoplasm occurring in men between the ages of 20 and 34. Although germ-line testicular tumors respond favorably to current standard of care, testicular stromal cell (TSC) tumors derived from Sertoli cells or Leydig cells often fail to respond to chemotherapy or radiation therapy and have a 5-year overall survival significantly lower than the more common and more treatable germ line testicular tumors. To improve outcomes for TSC cancer, we have developed a therapeutic vaccine targeting inhibin-α, a protein produced by normal Sertoli and Leydig cells of the testes and expressed in the majority of TSC tumors. We found that vaccination against recombinant mouse inhibin-α provides protection and therapy against transplantable I-10 mouse TSC tumors in male BALB/c mice. Similarly, we found that vaccination with the immunodominant p215-234 peptide of inhibin-α (Inα 215-234) inhibits the growth of autochthonous TSC tumors occurring in male SJL.AMH-SV40Tag transgenic mice. The tumor immunity and enhanced overall survival induced by inhibin-α vaccination may be passively transferred into naive male BALB/c recipients with either CD4+ T cells, B220+ B cells, or sera from inhibin-α primed mice. Considering the lack of any alternative effective treatment for chemo- and radiation-resistant TSC tumors, our results provide for the first time a rational basis for immune-mediated control of these aggressive and lethal variants of testicular cancer."	"We have proposed that safe and effective protection against the development of adult onset cancers may be achieved by vaccination against tissue-specific self-proteins that are &quot;retired&quot; from expression at immunogenic levels in normal tissues as we age, but are overexpressed in emerging tumors. α-Lactalbumin is an example of a &quot;retired&quot; self-protein because its expression in normal tissues is confined exclusively to the breast during late pregnancy and lactation, but is also expressed in the vast majority of human triple negative breast cancers (TNBC)-the most aggressive and lethal form of breast cancer and the predominant form that occurs in women at high genetic risk including those with mutated BRCA1 genes. In anticipation of upcoming clinical trials, here we provide preclinical data indicating that α-lactalbumin has the potential as a vaccine target for inducing safe and effective primary immunoprevention as well as immunotherapy against TNBC. "	"Anti-Müllerian hormone receptor, type II (AMHR2), is a differentiation protein expressed in 90% of primary epithelial ovarian carcinomas (EOCs), the most deadly gynecologic malignancy. We propose that AMHR2 may serve as a useful target for vaccination against EOC. To this end, we generated the recombinant 399-amino acid cytoplasmic domain of mouse AMHR2 (AMHR2-CD) and tested its efficacy as a vaccine target in inhibiting growth of the ID8 transplantable EOC cell line in C57BL/6 mice and in preventing growth of autochthonous EOCs that occur spontaneously in transgenic mice. We found that AMHR2-CD immunization of C57BL/6 females induced a prominent antigen-specific proinflammatory CD4+ T cell response that resulted in a mild transient autoimmune oophoritis that resolved rapidly with no detectable lingering adverse effects on ovarian function. AMHR2-CD vaccination significantly inhibited ID8 tumor growth when administered either prophylactically or therapeutically, and protection against EOC growth was passively transferred into naive recipients with AMHR2-CD-primed CD4+ T cells but not with primed B cells. In addition, prophylactic AMHR2-CD vaccination of TgMISIIR-TAg transgenic mice significantly inhibited growth of autochthonous EOCs and provided a 41.7% increase in mean overall survival. We conclude that AMHR2-CD vaccination provides effective immunotherapy of EOC with relatively benign autoimmune complications. "	"Multiple sclerosis (MS) is widely viewed as a prototypic human autoimmune disease involving proinflammatory T cells that induce lesions in the central nervous system (CNS) in response to myelin self proteins. Although the impact of sex hormones on MS is well recognized, the converse effects of autoimmunity on sex hormones are still unclear. The current study was designed to assess the impact of CNS autoimmunity on female reproductive physiology. In order to identify subtle hormonal disturbances as a result of autoimmunity, we analyzed the estrous cycle in SJL/J mice after active induction of experimental autoimmune encephalomyelitis (EAE), an animal model with substantial similarities to MS. Here we show that CNS autoimmunity significantly shortens the murine estrous cycle. This shortening of the estrous cycle is characterized by a dramatic decrease in the length of the metestrus-diestrus luteal phase partially offset by a highly significant but less dramatic elongation of the proestrus-estrus follicular phase of the uterine cycle. Thus, our study provides experimental evidence for a direct causal link between CNS autoimmunity and disruption of the homeostatic balance of the uterine cycle often observed in women with MS. "	"Despite the success of childhood vaccination against infectious diseases, vaccines are lacking against diseases that occur with age. We are developing a vaccine to prevent breast cancer. This article explains the vaccine strategy, how we think the vaccine will work, and how we plan to move forward through clinical trials. "	"We propose that optimized control of adult-onset cancers requires the incorporation of a defense-based strategy in the form of preemptive immunity induced in healthy cancer-free subjects prior to the appearance of tumors. However, development of such prophylactic immunity has traditionally targeted etiopathogenic agents. We propose that in the absence of available cancer-inducing pathogens, safe and effective protection against the emergence of tumors may be achieved by inducing targeted immunity against tissue-specific self-proteins that are 'retired' from expression at immunogenic levels in normal tissues due to the normal aging process, but are expressed in emerging tumors. Thus, 'retired' self-proteins may substitute for unavailable pathogens as targets for developing prophylactic immunity against tumors we confront with age like breast, ovarian and prostate cancer. Our current efforts involve testing this primary 'immunoprevention' strategy in clinical trials focused on prevention of the more aggressive and lethal forms of breast cancer. "	"Sunitinib, a protein tyrosine kinase inhibitor is the frontline therapy for renal and gastrointestinal cancers. We hypothesized that by virtue of its well documented tumor apoptosis and immune adjuvant properties, combination of Sunitinib with anti-tumor immunotherapeutics will provide synergistic inhibition of tumor growth. Our study was designed to evaluate the impact of Sunitinib on immunotherapy mediated anti-tumor immune responses and evaluate its efficacy as a combinatorial therapy with tumor targeted immunotherapeutic vaccination. Mice immunized with recombinant α-lactalbumin, a lactation protein expressed on majority of breast tumors were treated with 1 mg of Sunitinib for seven consecutive days beginning (1) concurrently, on the day of α-lactalbumin immunization or (2) sequentially, on day 9 after immunization. Ten-day lymph nodes or 21 day spleens were tested by ELISPOT assays and flow cytometry to evaluate responsiveness to α-lactalbumin immunization in presence of Sunitinib and distribution of cells involved in T cell antigen priming and proliferation in different lymphoid compartments. In addition, therapeutic efficacy of the α-lactalbumin/ Sunitinib combination was evaluated by monitoring tumor growth in the 4T1 transplanted tumor model. Our studies reveal that concurrent administration of Sunitinib with active vaccination against a targeted tumor antigen inhibits priming to the immunogen due to a drastic decrease in CD11b+CD11c+ antigen presenting cells, leading to failure of vaccination. However, sequential delivery of Sunitinib timed to avoid the priming phase of vaccination results in the desired vaccination mediated boost in immune responses. "	"We previously reported that mice with experimental autoimmune encephalomyelitis (EAE), a model of multiple sclerosis (MS), develop profound urinary bladder dysfunction. Because neurogenic bladder in MS patients causes marked bladder remodeling, we next examined morphometric and molecular alterations of the bladder in EAE mice. EAE was created in female SJL/J mice by immunization with the p139-151 encephalitogenic peptide of myelin proteolipid protein in complete Freund's adjuvant, along with intraperitoneal injections of Bordetella pertussis toxin. Seventy days after immunization, mice were scored for the level of neurological impairment and then killed. Spinal cord sections were assessed for demyelination, inflammation, and T cell infiltration; the composition of the bladder tissue was measured quantitatively; and gene expression of markers of tissue remodeling and fibrosis was assessed. A significant increase in the bladder weight-to-body weight ratio was observed with increasing neurological impairment, and morphometric analysis showed marked bladder remodeling with increased luminal area and tissue hypertrophy. Despite increased amounts of all tissue components (urothelium, smooth muscle, and connective tissue), the ratio of connective tissue to muscle increased significantly in EAE mice compared with control mice. Marked increases in mRNA expression of collagen type I α(2), tropoelastin, transforming growth factor-β3, and connective tissue growth factor (CTGF) were observed in EAE mice, as were decreased levels of mRNAs for smooth muscle myosin heavy chain, nerve growth factors, and muscarinic and purinergic receptors. Our results suggest that bladder remodeling corresponding to EAE severity may be due to enhanced expression of CTGF and increased growth of connective tissue."	"The pathophysiology of chronic prostatitis/chronic pelvic pain syndrome (CP/CPPS) is poorly understood. Inflammatory and autoimmune mechanisms may play a role. We developed a murine model of experimental autoimmune prostatitis (EAP) that mimics the human phenotype of CP/CPPS. Eight-week-old mice were immunized subcutaneously with prostate-specific peptides in an emulsion of complete Freund's adjuvant. Mice were euthanized 10 days after immunization, and lymph node cells were isolated and assessed for recall proliferation to each peptide. P25 99-118 was the most immunogenic peptide. T-cell and B-cell immunity and serum levels of C-reactive protein and nitrate/nitrite levels were evaluated over a 9-wk period. Morphometric studies of prostate, 24-h micturition frequencies, and urine volume per void were evaluated. Tactile referred hyperalgesia was measured using von Frey filaments to the pelvic region. The unpaired Student's t-test was used to analyze differences between EAP and control groups. Prostates from p25 99-118-immunized mice demonstrated elevated gene expression levels of TNF-α, IL-17A, IFN-γ, and IL-1β, not observed in control mice. Compared with controls, p25 99-118-immunized mice had significantly higher micturition frequency and decreased urine output per void, and they demonstrated elevated pelvic pain response. p25 99-118 immunization of male SWXJ mice induced prostate-specific autoimmunity characterized by prostate-confined inflammation, increased micturition frequency, and pelvic pain. This autoimmune prostatitis model provides a useful tool for exploring the pathophysiology and new treatments."
+"Valujskikh, Anna"	"Inflammation and Immunity"	31092872	28397358	29243390	28293238	27888576	27020853	26912319	26323072	25548230	25496308	"Aquaporins (AQPs) are water channels that mediate a variety of biological processes. However, their role in the immune system is poorly understood. We recently reported that AQP4 is expressed by naïve and memory T cells and that AQP4 blockade with a small molecule inhibitor prolongs murine heart allograft survival at least partially through diminishing T cell activation, proliferation and trafficking. The goal of this study was to determine how AQP4 function impacts T cells in the absence of antigen stimulation. AQP4 inhibition transiently reduced the number of circulating CD4+ and CD8+ T cells in naïve non-transplanted mice in the absence of systemic T cell depletion. Adoptive transfer studies demonstrated T cell intrinsic effect of AQP4 inhibition. AQP4 blockade altered T cell gene and protein expression of chemokine receptors S1PR1 and CCR7, and their master regulator KLF-2, and reduced chemotaxis toward S1P and CCL21. Consistent with the in vitro data, in vivo AQP4 inhibition reduced T lymphocyte numbers in the lymph nodes with simultaneous accumulation in the liver. Our findings indicate that blocking AQP4 reversibly alters T lymphocyte trafficking pattern. This information can be explored for the treatment of undesirable immune responses in transplant recipients or in patients with autoimmune diseases."	"Lymphoablation is routinely used in transplantation, and its success is defined by the balance of pathogenic versus protective T cells within reconstituted repertoire. While homeostatic proliferation and thymopoiesis may both cause T cell recovery during lymphopenia, the relative contributions of these mechanisms remain unclear. The goal of this study was to investigate the role of the thymus during T cell reconstitution in adult allograft recipients subjected to lymphoablative induction therapy. Compared with euthymic mice, thymectomized heart allograft recipients demonstrated severely impaired CD4 and CD8 T cell recovery and prolonged heart allograft survival after lymphoablation with murine anti-thymocyte globulin (mATG). The injection with agonistic anti-CD40 mAb or thymus transplantation only partially restored T cell reconstitution in mATG-treated thymectomized mice. After mATG depletion, residual CD4 T cells migrated into the thymus and enhanced thymopoiesis. Conversely, depletion of CD4 T cells before lymphoablation inhibited thymopoiesis at the stage of CD4<sup>-</sup> CD8<sup>-</sup> CD44<sup>hi</sup> CD25<sup>+</sup> immature thymocytes. This is the first demonstration that the thymus and peripheral CD4 T cells cooperate to ensure optimal T cell reconstitution after lymphoablation. Targeting thymopoiesis through manipulating functions of depletion-resistant helper T cells may thus improve therapeutic benefits and minimize the risks of lymphoablation in clinical settings."	"Prolonged cold ischemia storage (CIS) is a leading risk factor for poor transplant outcome. Existing strategies strive to minimize ischemia-reperfusion injury in transplanted organs, yet there is a need for novel approaches to improve outcomes of marginal allografts and expand the pool of donor organs suitable for transplantation. Aquaporins (AQPs) are a family of water channels that facilitate homeostasis, tissue injury, and inflammation. We tested whether inhibition of AQP4 improves the survival of fully MHC-mismatched murine cardiac allografts subjected to 8 hours of CIS. Administration of a small molecule AQP4 inhibitor during donor heart collection and storage and for a short-time posttransplantation improves the viability of donor graft cells, diminishes donor-reactive T cell responses, and extends allograft survival in the absence of other immunosuppression. Furthermore, AQP4 inhibition is synergistic with cytotoxic T lymphocyte-associated antigen 4-Ig in prolonging survival of 8-hour CIS heart allografts. AQP4 blockade markedly reduced T cell proliferation and cytokine production in vitro, suggesting that the improved graft survival is at least in part mediated through direct effects on donor-reactive T cells. These results identify AQPs as a promising target for diminishing donor-specific alloreactivity and improving the survival of high-risk organ transplants."	"Memory T cells are characterized by their low activation threshold, robust effector functions, and resistance to conventional immunosuppression and costimulation blockade. Unlike their naïve counterparts, memory T cells reside in and recirculate through peripheral non-lymphoid tissues. Alloreactive memory T cells are subdivided into different categories based on their origins, phenotypes, and functions. Recipients whose immune systems have been directly exposed to allogeneic major histocompatibility complex (MHC) molecules display high affinity alloreactive memory T cells. In the absence of any prior exposure to allogeneic MHC molecules, endogenous alloreactive memory T cells are regularly generated through microbial infections (heterologous immunity). Regardless of their origin, alloreactive memory T cells represent an essential element of the allograft rejection process and a major barrier to tolerance induction in clinical transplantation. This article describes the different subsets of alloreactive memory T cells involved in transplant rejection and examine their generation, functional properties, and mechanisms of action. In addition, we discuss strategies developed to target deleterious allospecific memory T cells in experimental animal models and clinical settings."	"Despite recent advances in immunosuppression, donor-reactive memory T cells remain a serious threat to successful organ transplantation. To alleviate damaging effects of preexisting immunologic memory, lymphoablative induction therapies are used as part of standard care in sensitized recipients. However, accumulating evidence suggests that memory T cells have advantages over their naive counterparts in surviving depletion and expanding under lymphopenic conditions. This may at least partially explain the inability of existing lymphoablative strategies to improve long-term allograft outcome in sensitized recipients, despite the well-documented decrease in the frequency of early acute rejection episodes. This minireview summarizes the insights gained from both experimental and clinical transplantation as to the effects of existing lymphoablative strategies on memory T cells and discusses the latest research developments aimed at improving the efficacy and safety of lymphoablation."	"Despite advances in immunosuppression, antibody-mediated rejection is a serious threat to allograft survival. Alloreactive memory helper T cells can induce potent alloantibody responses and often associate with poor graft outcome. Nevertheless, the ability of memory T cells to elicit well characterized manifestations of antibody-mediated rejection has not been tested. We investigated helper functions of memory CD4 T cells in a mouse model of renal transplantation. Whereas the majority of unsensitized C57Bl/6 recipients spontaneously accepted fully MHC-mismatched A/J renal allografts, recipients containing donor-reactive memory CD4 T cells rapidly lost allograft function. Increased serum creatinine levels, high serum titers of donor-specific alloantibody, minimal T cell infiltration, and intense C4d deposition in the grafts of sensitized recipients fulfilled all diagnostic criteria for acute renal antibody-mediated rejection in humans. IFNγ neutralization did not prevent the renal allograft rejection induced by memory helper T cells, and CD8 T cell depletion at the time of transplantation or depletion of both CD4 and CD8 T cells also did not prevent the renal allograft rejection induced by memory helper T cells starting at day 4 after transplantation. However, B cell depletion inhibited alloantibody generation and significantly extended allograft survival, indicating that donor-specific alloantibodies (not T cells) were the critical effector mechanism of renal allograft rejection induced by memory CD4 T cells. Our studies provide direct evidence that recipient T cell sensitization may result in antibody-mediated rejection of renal allografts and introduce a physiologically relevant animal model with which to investigate mechanisms of antibody-mediated rejection and novel therapeutic approaches for its prevention and treatment."	"Ab-mediated lymphoablation is commonly used in solid organ and hematopoietic cell transplantation. However, these strategies fail to control pathogenic memory T cells efficiently and to improve long-term transplant outcomes significantly. Understanding the mechanisms of T cell reconstitution is critical for enhancing the efficacy of Ab-mediated depletion in sensitized recipients. Using a murine analog of anti-thymocyte globulin (mATG) in a mouse model of cardiac transplantation, we previously showed that peritransplant lymphocyte depletion induces rapid memory T cell proliferation and only modestly prolongs allograft survival. We now report that T cell repertoire following depletion is dominated by memory CD4 T cells. Additional depletion of these residual CD4 T cells severely impairs the recovery of memory CD8 T cells after mATG treatment. The CD4 T cell help during CD8 T cell recovery depends on the presence of B cells expressing CD40 and intact CD40/CD154 interactions. The requirement for CD4 T cell help is not limited to the use of mATG in heart allograft recipients, and it is observed in nontransplanted mice and after CD8 T cell depletion with mAb instead of mATG. Most importantly, limiting helper signals increases the efficacy of mATG in controlling memory T cell expansion and significantly extends heart allograft survival in sensitized recipients. Our findings uncover the novel role for helper memory CD4 T cells during homeostatic CD8 T cell proliferation and open new avenues for optimizing lymphoablative therapies in allosensitized patients. "	"The analyses of indirect T-cell responses in patients with antibody-mediated renal transplant injury by Shiu et al. emphasize the complex contribution of B cells in alloimmunity. The data suggest at least three distinct but potentially overlapping consequences of T cell-B cell interactions: antigen presentation by B cells, alloantibody production, and immune regulation. These multifaceted functions of B cells should be taken into consideration in developing diagnostic tools and therapeutic strategies. "	"Cognate T-B cell interactions and CD40-CD154 costimulation are essential for productive humoral immunity against T-dependent Ags. We reported that memory CD4 T cells can deliver help to B cells and induce pathogenic IgG alloantibodies in the absence of CD40-CD154 interactions. To determine cytokine requirements for CD40-independent help, we used CD40(-/-) mice containing differentiated subsets of donor-reactive memory Th cells as heart allograft recipients. Th1 and Th17, but not Th2, memory CD4 T cells elicited high titers of anti-donor Ab. Abs induced by Th17 memory CD4 T cells had decreased reactivity against donor MHC class I molecules and inferior ability to cause complement deposition in heart allografts compared with Abs induced by Th1 cells, suggesting a requirement for IFN-γ during CD40-independent help. IFN-γ neutralization inhibited helper functions of memory CD4 T cells in both CD40(-/-) recipients and wild type recipients treated with anti-CD154 mAb. Our results suggest that IFN-γ secreted by pre-existing memory helper cells determines both isotype and specificity of donor-reactive alloantibodies and can thus affect allograft pathology. This information may be valuable for identifying transplant patients at risk for de novo development of pathogenic alloantibodies and for preventing alloantibody production in T cell-sensitized recipients. "	"Donor-reactive memory T cells undermine organ transplant survival and are poorly controlled by immunosuppression or costimulatory blockade. Memory CD4 T cells provide CD40-independent help for the generation of donor-reactive effector CD8 T cells and alloantibodies (alloAbs) that rapidly mediate allograft rejection. The goal of this study was to investigate the role of B cell activating factor (BAFF) and a proliferation-inducing ligand (APRIL) in alloresponses driven by memory CD4 T cells. The short-term neutralization of BAFF alone or BAFF plus APRIL synergized with anti-CD154 mAb to prolong heart allograft survival in recipients containing donor-reactive memory CD4 T cells. The prolongation was associated with reduction in antidonor alloAb responses and with inhibited reactivation and helper functions of memory CD4 T cells. Additional depletion of CD8 T cells did not enhance the prolonged allograft survival suggesting that donor-reactive alloAbs mediate late graft rejection in these recipients. This is the first report that targeting the BAFF cytokine network inhibits both humoral and cellular immune responses induced by memory CD4 T cells. Our results suggest that reagents neutralizing BAFF and APRIL may be used to enhance the efficacy of CD40/CD154 costimulatory blockade and improve allograft survival in T cell-sensitized recipients."
+"Van Wagoner, David"	"Cardiovascular and Metabolic Sciences"	30513109	28344424	26335221	25213716	21123218	20495015	18791466	17403452	12914605	12875431	"Endothelin-1 (ET-1) is a potent vasoconstrictor, mitogen and inflammatory factor that may contribute to development of atrial fibrillation (AF). Plasma ET-1 levels are increased in hyperthyroid patients, but studies evaluating its relation to AF development in hyperthyroid patients are lacking. The present study seeks to evaluate the relation of plasma ET-1 to AF development as a function of thyroid status. Blood samples from euthyroid patients (n = 41), hypothyroid (n = 61), hyperthyroid (n = 41), AF with hyperthyroidism (n = 9), and euthyroid AF (n = 10) patients were collected. Plasma ET-1, CRP, and thyroid hormone levels were measured and compared between groups. Plasma ET-1 levels were higher in hyperthyroid and euthyroid AF patients&gt; hyperthyroid-non-AF &gt; hypo and euthyroid non-AF patients. Plasma ET-1 levels positively correlated with free T3 and T4 levels, and negatively with TSH levels. By multivariate analysis, plasma ET-1 was positively associated with AF, hyperthyroidism, and age. Plasma CRP did not vary by study group in either univariate or multivariate analyses. Plasma ET-1 is associated with AF, elevated in hyperthyroid patients and positively correlated with thyroid hormone levels, suggesting that hyperthyroidism may increase ET-1 expression and release. This study may guide development of novel predictors of AF associated with hyperthyroidism, and may help to personalize therapy in hyperthyroid patients."	"To investigate the left atrial (LA) size as an independent predictor of mortality following coronary artery bypass surgery (CABG). This single center study evaluated determinants of mortality in 1070 patients who underwent isolated CABG from 2005-2014. Clinical, laboratory and demographic data were obtained from medical records. Collinearity between enlarged LA size (diameter ≥ 4 cm) and covariates was identified. The adjusted effects of enlarged LA size on 30-day mortality post CABG were tested using multiple logistic regression models. Adjusted odds ratios (OR) and 95% confidence intervals (CI) were reported. The mean age was 59 ± 9.8 years, and 238 patients were female. Two multivariate logistic regression models were evaluated. In Model A, mitral regurgitation (MR), ejection fraction, intensive care unit length-of-stay and variables found to be collinear with LA size as predictors of mortality were excluded. In model B, the collinear variables were included. By multivariate analysis (Model A), the statistically significant independent predictors of 30-day mortality after CABG were: enlarged LA size (OR 4.82, 95% CI 2.16-10.79), emergency CABG (OR 3.54, 95% CI 1.75-7.18), prolonged inotropic support (OR 2.79, 95% CI 1.38-5.6), diuretic use ≥ 1 month (OR 1.29, 95% CI 1.3-8.42), and use of clopidogrel within a week before surgery (OR 3.27, 95% CI 1.28-8.36. In Model B, enlarged LA and moderate MR were identified as independent predictors of 30-day mortality. Increased LA size is a strong independent predictor of mortality after isolated CABG."	"Atrial fibrillation (AF) is an important cause of stroke and risk factor for heart failure and death. Current pharmacologic treatments for AF have limited efficacy, and treatments that more directly target the underlying causes of AF are needed. Oxidant stress and inflammatory activation are interrelated pathways that promote atrial electrical and structural remodeling, leading to atrial ectopy, interstitial fibrosis, and increased stroke risk. This review evaluates the impact of common stressors on atrial oxidant stress and inflammatory activation and the contribution of these pathways to atrial remodeling. Recent studies suggest that integrated efforts to target the underlying risk factors, rather than the AF per se, may have a greater impact on health and outcomes than isolated efforts focused on the electrical abnormalities. "	"Coronary artery disease (CAD) is responsible for significant morbidity and mortality. Inflammatory, pro-thrombotic and structural factors contribute to the etiology of CAD. This study sought to determine the relationship of plasma endothelin-1 (pET-1), a potent vasoconstrictor, mitogen and modulator of cardiac inflammation, to clinical characteristics and outcomes of CAD patients. Blood samples were collected from 336 patients with underlying chest pain or recent myocardial infarction (MI), prior to coronary catheterization. pET-1 was correlated with clinical characteristics and outcomes following catheterization and at 30-day follow-up. pET-1 was higher in recent MI patients than in patients with CAD (coronary occlusion≥50%) or without CAD (&lt;50%) (Mean±sem (pg/ml): 2.12±0.13, 1.51±0.10, 1.21±0.06; 95% confidence interval (1.85-2.38, 1.31-1.72, 1.07-1.32; respectively, P&lt;.0001). Patients with ST elevation MI (STEMI) had higher pET-1 than non-STEMI (P=.008). pET-1 was associated with heart failure (HF) and low left ventricular ejection fraction (LVEF) and was highest in MI patients presented with acute HF. At 30-day follow up, pET-1 was not associated with the change in LVEF. In multivariate analysis, pET-1 was positively associated with age, smoking, HF, CAD status, and need for revascularization by coronary artery bypass surgery (CABG). pET-1 was negatively correlated with LVEF and preoperative statin use. pET-1 is associated with recent MI, HF, age, smoking, CABG, and low LVEF. Preoperative statin use was associated with lower pET-1. pET-1 may serve as a risk marker and a potential therapeutic target in CAD patients."	"Pre-treatment with dietary ω3 polyunsaturated fatty acids (ω3-PUFA) has been reported to reduce the incidence of new-onset atrial fibrillation (AF) following cardiac surgery. In a canine cardiac surgery model, we evaluated the impact of dietary ω3-PUFA on atrial electrophysiological properties, inflammatory markers, the atrial endothelin-1 (ET-1) system, and the expression and distribution of connexin 43. Adult mongrel dogs received either normal chow (NC, n = 11) or chow supplemented with fish oil (FO, 0.6 g ω3-PUFA/kg/day, n = 9) for 3 weeks before surgery. A left thoracotomy was performed, and the left atrial appendage (LAA) was excised. Atrial pacing/recording wires were placed, and the pericardium/chest was closed. The atrial ratio of ω6/ω3 lipids decreased from 15-20 in NC to 2-3 in FO. FO treatment lowered pre-surgical and stabilized post-surgical arachidonate levels. Peak neutrophil to lymphocyte ratio was lower and decayed faster in FO-treated animals. Extensive inflammatory cell infiltration was present in NC atria, but was reduced in FO-treated dogs. FO-treated animals had lower post-surgical atrial expression of inducible nitric oxide synthase (iNOS) and reduced plasma ET-1. Expression of ET-1 and inositol trisphosphate receptor type-2 proteins in the LAA was also reduced. FO treatment prolonged post-operative atrial effective refractory period, slowed heart rate, and enhanced heart rate variability. Importantly, AF (&gt;30 s) was inducible in four of six NC dogs, but no FO dogs. Dietary FO attenuated AF inducibility following cardiac surgery by modulating autonomic tone and heart rate. FO also reduced atrial inflammation, iNOS, and ET-1 expression."	"Atrial fibrillation (AF) promotes atrial remodeling and can develop secondary to heart failure or mitral valve disease. Cardiac endothelin-1 (ET-1) expression responds to wall stress and can promote myocyte hypertrophy and interstitial fibrosis. We tested the hypothesis that atrial ET-1 is elevated in AF and is associated with AF persistence. Left atrial appendage tissue was studied from coronary artery bypass graft, valve repair, and/or Maze procedure in patients in sinus rhythm with no history of AF (SR, n=21), with history of AF but in SR at surgery (AF/SR, n=23), and in AF at surgery (AF/AF, n=32). The correlation of LA size with atrial protein and mRNA expression of ET-1 and ET-1 receptors (ETAR and ETBR) was evaluated. LA appendage ET-1 content was higher in AF/AF than in SR, but receptor levels were similar. Immunostaining revealed that ET-1 and its receptors were present both in atrial myocytes and in fibroblasts. ET-1 content was positively correlated with LA size, heart failure, AF persistence, and severity of mitral regurgitation. Multivariate analysis confirmed associations of ET-1 with AF, hypertension, and LA size. LA size was associated with ET-1 and MR severity. ET-1 mRNA levels were correlated with genes involved in cardiac dilatation, hypertrophy, and fibrosis. Elevated atrial ET-1 content is associated with increased LA size, AF rhythm, hypertension, and heart failure. ET-1 is associated with atrial dilatation, fibrosis, and hypertrophy and probably contributes to AF persistence. Interventions that reduce atrial ET-1 expression and/or block its receptors may slow AF progression."	"Atrial fibrillation (AF) is one of the most prevalent and vexing cardiovascular conditions. Available treatments for AF based on ion channel blockade are only poorly effective. The fundamental mechanisms that underlie AF are still not clearly understood, and likely vary depending on the etiology of AF. In older individuals with senile AF, likely mechanisms include abnormal calcium cycling, oxidant stress, and deleterious inflammatory responses. Clinical and experimental evidence is provided to support the role of oxidant and inflammatory mechanisms in AF. On the basis of these studies, the prospects of manipulating oxidant and inflammatory pathways as targets for therapeutic intervention are discussed."	"Although the problem of atrial fibrillation is now widely appreciated, the fundamental mechanisms that lead to arrhythmia onset and persistence have been difficult to elucidate. As a result, available pharmacologic therapies have focused more on modifying ion channel activity than on the underlying mechanisms. Recent studies suggest an important role for alterations in autonomic regulation, neurohormonal activation, and a systemic inflammatory state in the genesis and persistence of atrial fibrillation. The relative contributions of these distinct pathways to atrial fibrillation likely vary from patient to patient, and within a patient, as a function of age. Tailored therapies, together with patient-specific ablative interventions, may increase the success with which atrial fibrillation is treated and minimize the occurrence of life-threatening thromboembolic complications."	"Atrial fibrillation (AF) is a progressive disease characterized by cumulative electrophysiological and structural remodeling of the atria. Cellular electrophysiological studies have revealed marked reductions in the densities of the L-type voltage-gated Ca2+ current, ICa,L, the transient outward K+ current, ITO, and the ultra-rapid delayed rectifier K+ current, IKur, in atrial myocytes from patients in persistent or permanent AF. The density of the muscarinic K+ current (IKACh) is also reduced, however the inward rectifier K+ current (IK1) density is increased. The net shortening or lengthening of the action potential is dependent on the balance between changes in inward and outward currents. The prominent reduction in ICa,L appears to be sufficient to explain the observed decreases in action potential duration and effective refractory period that are characteristic of the fibrillating atria. Earlier studies have shown that calcium overload and perturbations in calcium handling play prominent roles in AF induced atrial remodeling. More recently, we have shown that AF is associated with evidence of oxidative injury to atrial tissue, and suggested that oxidative stress may directly contribute to the pathophysiology of AF. It is anticipated that insights gleaned from mechanistic studies will facilitate the development of improved pharmacological approaches to treat AF and to prevent the progression of arrhythmia."	"AF is a difficult disease to treat because of the numerous (ischemic, metabolic, inflammatory, structural) mechanisms contributing to its etiology. AF persistence requires both an adequate tissue substrate for reentrant activity and triggers to initiate the arrhythmia. In a few interesting instances, AF may have a monogenic cause. Although there are common electrophysiologic characteristics of myocytes from a variety of AF models and clinical presentations, it is unrealistic to expect that all patients will respond equally to the same interventions. Thus, patients with AF of an inflammatory etiology may respond better to anti-inflammatory therapies, whereas those with enlarged atria secondary to valvular disease may require surgery. Some may respond better to ablation than others. However, the heterogeneity of the substrate does not negate the value of searching for the underlying molecular mechanisms. As we begin to comprehend these mechanisms in greater detail, the dream of using individualized rational therapies will come closer to reality."
+"Vince, Geoff"	"Biomedical Engineering"	15923746	15331362	15185177	15121252	12766735	12661205	12453506	12390948	11731045	11131497	"Coronary artery disease is the number one cause of death in the United States and the Western world, and approximately 250,000 affected people die per year without ever being admitted to a hospital. One of the main reasons of such a high death-rate without any diagnosis is that more than 50 or heart-attacks) occur in patients with no prior history of known heart disease or symptoms. Coronary artery disease leads to the occlusion of arteries that are vital in providing nutrients to the heart muscles. The disease develops by progressive accumulation or formation of &quot;plaque&quot; within an artery. Certain types of plaques could occlude blood flow and yet might be &quot;stable&quot;. These plaques usually have a high fibrous content, and are known as hard plaques. On the other hand, &quot;unstable&quot; or &quot;soft&quot; plaques might not cause much occlusion but could be vulnerable to rupture. Rupture of such plaques could lead to total or partial occlusion in arteries resulting in sudden cardiac death or heart-attack. In fact, 68 coronary arteries are less than 50.Intravascular ultrasound (IVUS) is a minimally invasive imaging modality that provides cross-section images of arteries in real-time, allowing visualization of atherosclerotic plaques in vivo. In standard IVUS gray-scale images, calcified regions of plaque and dense fibrous components generally reflect ultrasound energy well and thus appear bright and homogeneous on IVUS images. Conversely, regions of low echo reflectance in IVUS images are usually labeled &quot;soft&quot; or &quot;mixed&quot; plaque. However, this visual interpretation has been demonstrated to be very inconsistent in accurately determining plaque composition and does not allow real-time assessment of quantitative plaque constituents.Spectral analysis of the backscattered radiofrequency (RF) ultrasound signals allows detailed assessment of plaque composition. Advanced mathematical techniques can be employed to extract spectral information from these RF data to determine composition. The spectral content or signature of RF data reflected from tissue depends on density, compressibility, concentration, size, etc. A combination of spectral parameters were used to develop statistical classification schemes for analysis of in vivo IVUS data in real-time. The clinical data acquisition system is ECG gated and the analysis software developed by our group reconstructs IVUS gray-scale images from the acquired RF data. A combination of spectral parameters and active contour models is used for real-time 3D plaque segmentation followed by computation of color-coded tissue maps for each image cross-section and longitudinal views of the entire vessel. The &quot;fly-through&quot; mode allows one to visualize the complete length of the artery internally with the histology components at the lumen surface. In addition, vessel and plaque metrics such as areas and volumes of individual plaque components (collagen, fibro-lipid, calcium, lipid-core) are also available."	"Despite their advantages, percutaneous coronary interventional procedures are less effective in diabetic patients. Changes in the mechanical properties of vascular walls secondary to long-term hyperglycemia as well as other factors such as age may influence coronary distensibility. This investigation is aimed at deciphering the extent of these effects on distensibility of postmortem human coronary arteries in a controlled manner. Excised human left anterior descending (LAD) coronary arteries were obtained within 24 h postmortem. With the use of intravascular ultrasound, vascular deformation was analyzed at midregions of 51 moderate lesions. Intraluminal pressure was systematically altered using a computerized pressure pump system and monitored by a pressure-sensing guidewire. Distensibility, a normalized compliance term, was defined as the change in lumen area normalized by the initial reference area over a given pressure interval. With the use of multivariate analysis and repeated-measures ANOVA, coronary distensibility was independently influenced by hyperglycemia and age (P &lt; 0.05) through the entire pressure range. Within physiological pressure range, distensibility was significantly reduced with age in nonhyperglycemic coronary specimens (10.55 +/- 4.41 vs. 6.99 +/- 2.45, x10(3) kPa(-1), P = 0.01), whereas the hyperglycemic vessels were stiff even in the younger group (7.90 +/- 5.82 vs. 7.20 +/- 3.36, x10(3) kPa(-1), P = 0.79). Similar results were observed with stiffness index and elastic modulus of the arteries. Hyperglycemia and age independently influenced the distensibility of moderately atherosclerotic LAD coronary arteries. The stiffening with age was overshadowed in the hyperglycemic group by as-yet-undetermined factors."	"Intravascular ultrasound (IVUS) provides direct depiction of coronary artery anatomy. Traditional use of this tomographic imaging modality has been in determination of geometric measurements of an artery, such as lumen or plaque size. However, by analyzing the backscattered or radiofrequency (RF) data it is possible to glean information on the composition of plaques. This chapter describes the theory of spectral analysis and its application clinical practice."	"In medical diagnostic ultrasound (US), higher than-in-water nonlinearity of body fluids and tissue usually does not produce strong nonlinearly distorted waves because of the high absorption. The relative influence of absorption and nonlinearity can be characterized by the Gol'dberg number Gamma. There are two limiting cases in nonlinear acoustics: weak waves (Gamma &lt; 1) or strong waves (Gamma &gt; 1). However, at diagnostic frequencies in tissue and body fluids, the nonlinear effects and effects of absorption more likely are comparable (Gol'dberg number Gamma approximately 1). The aim of this work was to study the nonlinear propagation of a moderately nonlinear US second harmonic signal in a blood-mimicking fluid. Quasilinear solutions to the KZK equation are presented, assuming radiation from a flat and geometrically focused circular Gaussian source. The solutions are expressed in a new simplified closed form and are in very good agreement with those of previous studies measuring and modeling Gaussian beams. The solutions also show good agreement with the measurements of the beams produced by commercially available transducers, even without special Gaussian shading."	"Angiography allows the definition of advanced, severe stages of coronary artery disease, but early atherosclerotic lesions, which do not lead to luminal stenosis, are not identified reliably. In contrast, intravascular ultrasound scanning allows the precise characterization and quantification of a wide range of atherosclerotic lesions, independent of the severity of luminal stenosis. Three-dimensional (3-D) reconstruction of entire coronary segments is possible with the integration of sequential 2-dimensional tomographic images and allows volumetric analysis of coronary arteries. Automated systems able to recognize lumen and vessel borders and to display 3-D images are becoming available. These systems have the potential for on-line 3-D image reconstruction for clinical decision-making and fast routine volumetric analysis in research studies. This review describes 3-D intravascular ultrasound scanning acquisition, analysis, and processing, and the associated technical challenges."	"Most arterial mechanics studies have focused on excised non-coronary vessels, with few studies validating the application of ex-vivo results to in-vivo conditions. A method was developed for testing the mechanical properties of intact left anterior descending coronary arteries under a variety of conditions. Vascular deformation and pressure were simultaneously measured with intravascular ultrasound and a pressure transducer guidewire, respectively. Results suggest the importance of understanding in-vivo factors such as myocardial support, vascular tone and local pressure fluctuations when applying ex-vivo coronary characterization data. With further development, this method can more accurately characterize the true in-vivo constitutive behavior in normal and atherosclerotic coronaries."	"Intravascular ultrasound (IVUS) provides direct depiction of coronary anatomy, including the degree and extent of coronary plaque, useful in quantitative research or clinical studies. These studies require fast and accurate analysis of coronary morphometry in volumetric IVUS images. Semi-automated interaction techniques are important for this task due to limitations of automated processing. We present B-spline-based surface fitting and manipulation methods that provide a foundation for such interaction techniques. They can be integrated easily with previously developed segmentation algorithms to provide a semi-automated segmentation system for identification of luminal and vessel borders in volumetric IVUS images."	"Atherosclerotic plaque stability is related to histological composition. However, current diagnostic tools do not allow adequate in vivo identification and characterization of plaques. Spectral analysis of backscattered intravascular ultrasound (IVUS) data has potential for real-time in vivo plaque classification. Eighty-eight plaques from 51 left anterior descending coronary arteries were imaged ex vivo at physiological pressure with the use of 30-MHz IVUS transducers. After IVUS imaging, the arteries were pressure-fixed and corresponding histology was collected in matched images. Regions of interest, selected from histology, were 101 fibrous, 56 fibrolipidic, 50 calcified, and 70 calcified-necrotic regions. Classification schemes for model building were computed for autoregressive and classic Fourier spectra by using 75% of the data. The remaining data were used for validation. Autoregressive classification schemes performed better than those from classic Fourier spectra with accuracies of 90.4% for fibrous, 92.8% for fibrolipidic, 90.9% for calcified, and 89.5% for calcified-necrotic regions in the training data set and 79.7%, 81.2%, 92.8%, and 85.5% in the test data, respectively. Tissue maps were reconstructed with the use of accurate predictions of plaque composition from the autoregressive classification scheme. Coronary plaque composition can be predicted through the use of IVUS radiofrequency data analysis. Autoregressive classification schemes performed better than classic Fourier methods. These techniques allow real-time analysis of IVUS data, enabling in vivo plaque characterization."	"Spectral analysis of backscattered intravascular ultrasound (IVUS) data has demonstrated the ability to characterize plaque. We compared the ability of spectral parameters (e.g., slope, midband fit and y-intercept), computed via classic Fourier transform (CPSD), Welch power spectrum (WPSD) and autoregressive (MPSD) models, to classify plaque composition. Data were collected ex vivo from 32 human left anterior descending coronary arteries. Regions-of-interest (ROIs), selected from histology, comprised 64 collagen-rich, 24 fibrolipidic, 23 calcified and 37 calcified-necrotic regions. A novel quantitative method was used to correlate IVUS data with corresponding histologic sections. Periodograms of IVUS samples, identified for each ROI, were used to calculate spectral parameters. Statistical classification trees (CT) were computed with 75% of the data for plaque characterization. The remaining data were used to assess the accuracy of the CTs. The overall accuracies for normalized spectra with CPSD, WPSD and MPSD were, respectively, 84.7%, 85.6% and 81.1% (training data) and 54.1%, 64.9% and 37.8% (test data). These numbers were improved to 89.2%, 91.9% and 89.2% (training) and 62.2%, 73% and 59.5% (test) when the calcified and calcified-necrotic regions were combined for analysis. Most CTs misclassified a few fibrolipidic regions as collagen, which is histologically acceptable, and the unnormalized and normalized spectra results were similar."	"Intravascular ultrasound (IVUS) provides direct depiction of coronary artery anatomy, including plaque and vessel area, which is important in quantitative studies on the progression or regression of coronary artery disease. Traditionally, these studies have relied on manual evaluation, which is laborious, time consuming, and subject to large interobserver and intraobserver variability. A new technique, called active surface segmentation, alleviates these limitations and makes strides toward routine analyses. However, for three-dimensional (3-D) plaque assessment or 3-D reconstruction to become a clinical reality, methods must be developed which can analyze many images quickly. Presented is a comparison between two active surface techniques for three-dimensional segmentation of luminal and medial-adventitial borders. The force-acceleration technique and the neighborhood-search technique accurately detected both borders in vivo (r2 = 0.95 and 0.99, Williams' index = 0.67 and 0.65, and r2 = 0.95 and 0.99, WI = 0.67 and 0.70, respectively). However, the neighborhood-search technique was significantly faster and required less computation. Volume calculations for both techniques (r2 = 0.99 and r2 = 0.99) also agreed with a known-volume phantom. Active surface segmentation allows 3-D assessment of coronary morphology and further developments with this technology will provide clinical analysis tools."
+"Wang, Qing"	"Cardiovascular and Metabolic Sciences"	30703554	30655286	30772377	31020414	30991833	30920082	30821358	30282806	30251687	30188605	"Pulmonary arterial hypertension (PAH) is a life-threatening disease without effective therapies. PAH is associated with a progressive increase in pulmonary vascular resistance and irreversible pulmonary vascular remodeling. SUMO1 (small ubiquitin-related modifier 1) can bind to target proteins and lead to protein SUMOylation, an important post-translational modification with a key role in many diseases. However, the contribution of SUMO1 to PAH remains to be fully characterized. In this study, we explored the role of SUMO1 in the dedifferentiation of vascular smooth muscle cells (VSMCs) involved in hypoxia-induced pulmonary vascular remodeling and PAH in vivo and in vitro. In a mouse model of hypoxic PAH, SUMO1 expression was significantly increased, which was associated with activation of autophagy (increased LC3b and decreased p62), dedifferentiation of pulmonary arterial VSMCs (reduced α-SMA, SM22 and SM-MHC), and pulmonary vascular remodeling. Similar results were obtained in a MCT-induced PAH model. Overexpression of SUMO1 significantly increased VSMCs proliferation, migration, hypoxia-induced VSMCs dedifferentiation, and autophagy, but these effects were abolished by inhibition of autophagy by 3-MA in aortic VSMCs. Furthermore, SUMO1 knockdown reversed hypoxia-induced proliferation and migration of PASMCs. Mechanistically, SUMO1 promotes Vps34 SUMOylation and the assembly of the Beclin-1-Vps34-Atg14 complex, thereby inducing autophagy, whereas Vps34 mutation K840R reduces Vps34 SUMOylation and inhibits VSMCs dedifferentiation. Our data uncovers an important role of SUMO1 in VSMCs proliferation, migration, autophagy, and phenotypic switching (dedifferentiation) involved in pulmonary vascular remodeling and PAH. Targeting of the SUMO1-Vps34-autophagy signaling axis may be exploited to develop therapeutic strategies to treat PAH."	"Coronary artery disease (CAD) is the leading cause of death worldwide. Long noncoding RNAs (lncRNAs) are a class of noncoding transcripts of &gt; 200 nucleotides and are increasingly recognized as playing functional roles in physiology and disease. ANRIL is an lncRNA gene mapped to the chromosome 9p21 genetic locus for CAD identified by the first series of genome-wide association studies (GWAS). However, ANRIL's role in CAD and the underlying molecular mechanism are unknown. Here, we show that the major ANRIL transcript in endothelial cells (ECs) is DQ485454 with a much higher expression level in ECs than in THP-1 monocytes. Of note, DQ485454 expression was down-regulated in CAD coronary arteries compared with non-CAD arteries. DQ485454 overexpression significantly reduced monocyte adhesion to ECs, transendothelial monocyte migration (TEM), and EC migration, which are critical cellular processes involved in CAD initiation, whereas siRNA-mediated ANRIL knockdown (KD) had the opposite effect. Microarray and follow-up quantitative RT-PCR analyses revealed that the ANRIL KD down-regulated expression of AHNAK2, CLIP1, CXCL11, ENC1, EZR, LYVE1, WASL, and TNFSF10 genes and up-regulated TMEM100 and TMEM106B genes. Mechanistic studies disclosed that overexpression of CLIP1, EZR, and LYVE1 reversed the effects of ANRIL KD on monocyte adhesion to ECs, TEM, and EC migration. These findings indicate that ANRIL regulates EC functions directly related to CAD, supporting the hypothesis that ANRIL is involved in CAD pathogenesis at the 9p21 genetic locus and identifying a molecular mechanism underlying lncRNA-mediated regulation of EC function and CAD development."	"Voltage-gated sodium channel Nav1.5 is critical for generation and conduction of cardiac action potentials. Mutations and expression level changes of Nav1.5 are associated with cardiac arrhythmias and sudden death. The ubiquitin (Ub) conjugation machinery utilizes three enzyme activities, E1, E2, and E3, to regulate protein degradation. Previous studies from us and others showed that Nedd4-2 acts as an E3 ubiquitin-protein ligase involved in ubiquitination and degradation of Nav1.5, however, more key regulators remain to be identified. In this study, we show that UBC9, a SUMO-conjugating enzyme, regulates ubiquitination and degradation of Nav1.5. Overexpression of UBC9 significantly decreased Nav1.5 expression and reduced sodium current densities, whereas knockdown of UBC9 expression significantly enhanced Nav1.5 expression and increased sodium current densities, in both HEK293 cells and primary neonatal cardiomyocytes. Overexpression of UBC9 increased ubiquitination of Nav1.5, and proteasome inhibitor MG132 blocked the effect of UBC9 overexpression on Nav1.5 degradation. Co-immunoprecipitation showed that UBC9 interacts with Nedd4-2. UBC9 with mutation C93S, which suppresses SUMO-conjugating activity of UBC9, was as active as wild type UBC9 in regulating Nav1.5 levels, suggesting that UBC9 regulates Nav1.5 expression levels in a SUMOylation-independent manner. Our findings thus identify a key structural element of the ubiquitin-conjugation machinery for Nav1.5 and provide important insights into the regulatory mechanism for ubiquitination and turnover of Nav1.5."	"Ventricular tachycardia (VT) causes sudden cardiac death, however, the majority of risk genes for VT remain unknown. SCN4B encodes a β-subunit, Navβ4, for the voltage-gated cardiac sodium channel complex involved in generation and conduction of the cardiac action potential. We hypothesized that genomic variants in SCN4B increase the risk of VT. We used high-resolution melt analysis followed by Sanger sequencing to screen 199 VT patients to identify nonsynonymous variants in SCN4B. Two nonsynonymous heterozygous variants in SCN4B were identified in VT patients, including p.Gly8Ser in four VT patients and p.Ala145Ser in one VT patient. Case-control association studies were used to assess the association between variant p.Gly8Ser and VT in two independent populations for VT (299 VT cases vs. 981 controls in population 1 and 270 VT patients vs. 639 controls in population 2). Significant association was identified between p.Gly8Ser and VT in population 1 (P = 1.21 × 10<sup>-4</sup>, odds ratio or OR = 11.04), and the finding was confirmed in population 2 (P = 0.03, OR = 3.62). The association remained highly significant in the combined population (P = 3.09 × 10<sup>-5</sup>, OR = 6.17). Significant association was also identified between p.Gly8Ser and idiopathic VT (P = 1.89 × 10<sup>-5</sup>, OR = 7.27). Functional analysis with Western blotting showed that both p.Gly8Ser and p.Ala145Ser variants significantly reduced the expression level of Navβ4. Based on 2015 ACMG Standards and Guidelines, p.Gly8Ser and p.Ala145Ser can be classified as the pathogenic and likely pathogenic variant, respectively. Our data suggest that SCN4B is a susceptibility gene for common VT and idiopathic VT and link rare SCN4B variants with large effects (OR = 6.17-7.27) to common VT."	"Vascular hyperpermeability caused by distorted endothelial cell-cell junctions is associated with the no-reflow phenomenon after opening of the occluded vessels in patients with coronary artery disease (CAD), the leading cause of death worldwide. Coronary no-reflow is observed in ∼30% of CAD patients after percutaneous coronary stenting and is associated with a worse prognosis at follow-up and a higher incidence of death. However, limited tools are available to control vascular hyperpermeability and no-reflow. Losartan, an angiotensin II (Ang II) receptor blocker acting on the Ang II type-1 receptor (AT1R) subtype, is a prescription drug for treating hypertension. Here we show that in a murine model of ischemia and reperfusion (I/R), losartan blocked vascular hyperpermeability and decreased infarct size, hemorrhages, edema, and inflammation. Mechanistically, losartan-mediated inhibition of vascular hyperpermeability is mediated by the inhibition of phosphorylation of Src and vascular endothelial cadherin (VE-cadherin), which increases VEGF receptor 2 (VEGFR2)-Src-VE-cadherin complex formation, resulting in increased cell surface VE-cadherin and inhibition of vascular hyperpermeability. On the other hand, hypoxia and reoxygenation increased the phosphorylation levels of Src and VE-cadherin and reduced the formation of the VEGFR2-Src-VE-cadherin complex, which led to reduced cell surface VE-cadherin and increased vascular hyperpermeability; all were inhibited by losartan. These data suggest that losartan may be used for blocking vascular hyperpermeability associated with I/R.-Li, Y., Yao, Y., Li, J., Chen, Q., Zhang, L., Wang, Q. K. Losartan protects against myocardial ischemia and reperfusion injury via vascular integrity preservation."	"X-linked hypophosphatemia (XLH) is the most common hereditary rickets, caused by mutations in PHEX encoding the phosphate regulating endopeptidase homolog X-linked. Here, we report a nonsense variant in exon 11 of PHEX (c.1209G&gt;A p.Trp403*) cosegregating with XLH in a Chinese family with a LOD score of 2.70. Real-time reverse transcription polymerase chain reaction analysis demonstrated that p.Trp403* variant did not cause nonsense-mediated mRNA decay (NMD), but significantly increased the expression level of FGF23 mRNA in the patients. Interestingly, p.Trp403* significantly reduced phosphorylation of p38 mitogen-activated protein kinase (MAPK) but not ERK1/2. Moreover, overexpression of FGF23 significantly decreased phosphorylation of p38 MAPK, whereas knockdown of FGF23 by siRNA significantly increased phosphorylation of p38 MAPK. These data suggest that p.Trp403* may not function via an NMD mechanism, and instead causes XLH via a novel signaling mechanism involving PHEX, FGF23, and p38 MAPK. This finding provides important insights into genetic and molecular mechanisms for the pathogenesis of XLH."	"Atrial fibrillation (AF) affects 33.5 million individuals worldwide. It accounts for 15% of strokes and increases risk of heart failure and sudden death. The voltage-gated cardiac sodium channel complex is responsible for the generation and conduction of the cardiac action potential, and composed of the main pore-forming α-subunit Nav 1.5 (encoded by the SCN5A gene) and one or more auxiliary β-subunits, including Nav β1 to Nav β4 encoded by SCN1B to SCN4B, respectively. We and others identified loss-of-function mutations in SCN1B and SCN2B and dominant-negative mutations in SCN3B in patients with AF. Three missense variants in SCN4B were identified in sporadic AF patients and small nuclear families; however, the association between SCN4B variants and AF remains to be further defined. In this study, we performed mutational analysis in SCN4B using a panel of 477 AF patients, and identified one nonsynonymous genomic variant p.Gly8Ser in four patients. To assess the association between the p.Gly8Ser variant and AF, we carried out case-control association studies with two independent populations (944 AF patients vs. 9,81 non-AF controls in the first discovery population and 732 cases and 1,291 controls in the second replication population). Significant association was identified in the two independent populations and in the combined population (p = 4.16 × 10<sup>-4</sup> , odds ratio [OR] = 3.14) between p.Gly8Ser and common AF as well as lone AF (p = 0.018, OR = 2.85). These data suggest that rare variant p.Gly8Ser of SCN4B confers a significant risk of AF, and SCN4B is a candidate susceptibility gene for AF."	"Nav1.5 is the α-subunit of the cardiac sodium channel complex. Abnormal expression of Nav1.5 on the cell surface because of mutations that disrupt Nav1.5 trafficking causes Brugada syndrome (BrS), sick sinus syndrome (SSS), cardiac conduction disease, dilated cardiomyopathy, and sudden infant death syndrome. We and others previously reported that Ran-binding protein MOG1 (MOG1), a small protein that interacts with Nav1.5, promotes Nav1.5 intracellular trafficking to plasma membranes and that a substitution in MOG1, E83D, causes BrS. However, the molecular basis for the MOG1/Nav1.5 interaction and how the E83D substitution causes BrS remains unknown. Here, we assessed the effects of defined MOG1 deletions and alanine-scanning substitutions on MOG1's interaction with Nav1.5. Large deletion analysis mapped the MOG1 domain required for the interaction with Nav1.5 to the region spanning amino acids 146-174, and a refined deletion analysis further narrowed this domain to amino acids 146-155. Site-directed mutagenesis further revealed that Asp-148, Arg-150, and Ser-151 cluster in a peptide loop essential for binding to Nav1.5. GST pulldown and electrophysiological analyses disclosed that the substitutions E83D, D148Q, R150Q, and S151Q disrupt MOG1's interaction with Nav1.5 and significantly reduce its trafficking to the cell surface. Examination of MOG1's 3D structure revealed that Glu-83 and the loop containing Asp-148, Arg-150, and Ser-151 are spatially proximal, suggesting that these residues form a critical binding site for Nav1.5. In conclusion, our findings identify the structural elements in MOG1 that are crucial for its interaction with Nav1.5 and improve our understanding of how the E83D substitution causes BrS."	"The cardiac sodium channel Nav1.5 is essential for the physiological function of the heart and causes cardiac arrhythmias and sudden death when mutated. Many disease-causing mutations in Nav1.5 cause defects in protein trafficking, a cellular process critical to the targeting of Nav1.5 to cell surface. However, the molecular mechanisms underlying the trafficking of Nav1.5, in particular, the exit from the endoplasmic reticulum (ER) for cell surface trafficking, remain poorly understood. Here we investigated the role of the SAR1 GTPases in trafficking of Nav1.5. Overexpression of dominant-negative mutant SAR1A (T39N or H79G) or SAR1B (T39N or H79G) significantly reduces the expression level of Nav1.5 on cell surface, and decreases the peak sodium current density (INa) in HEK/Nav1.5 cells and neonatal rat cardiomyocytes. Simultaneous knockdown of SAR1A and SAR1B expression by siRNAs significantly reduces the INa density, whereas single knockdown of either SAR1A or SAR1B has minimal effect. Computer modeling showed that the three-dimensional structure of SAR1 is similar to RAN. RAN was reported to interact with MOG1, a small protein involved in regulation of the ER exit of Nav1.5. Co-immunoprecipitation showed that SAR1A or SAR1B interacted with MOG1. Interestingly, knockdown of SAR1A and SAR1B expression abolished the MOG1-mediated increases in both cell surface trafficking of Nav1.5 and the density of INa. These data suggest that SAR1A and SAR1B are the critical regulators of trafficking of Nav1.5. Moreover, SAR1A and SAR1B interact with MOG1, and are required for MOG1-mediated cell surface expression and function of Nav1.5."	"The phlda3 gene encodes a small, 127-amino acid protein with only a PH domain, and is involved in tumor suppression, proliferation of islet β-cells, insulin secretion, glucose tolerance, and liver injury. However, the role of phlda3 in vascular development is unknown. Here, we show that phlda3 overexpression decreases the expression levels of hemangioblast markers scl, fli1, and etsrp and intersegmental vessel (ISV) markers flk1 and cdh5, and disrupts ISV development in tg(flk1:GFP) and tg(fli1:GFP) zebrafish. Moreover, phlda3 overexpression inhibits the activation of protein kinase B (AKT) in zebrafish embryos, and the developmental defects of ISVs by phlda3 overexpression were reversed by the expression of a constitutively active form of AKT. These data suggest that phlda3 is a negative regulator of hemangioblast specification and ISV development via AKT signaling."
+"Wang, Xiaofeng"	"Quantitative Health Sciences"	26643287	26475830	25284902	24664664	24416633	22754269	22522380	21839177	21614139	20543891	"This paper is motivated from a retrospective study of the impact of vitamin D deficiency on the clinical outcomes for critically ill patients in multi-center critical care units. The primary predictors of interest, vitamin D2 and D3 levels, are censored at a known detection limit. Within the context of generalized linear mixed models, we investigate statistical methods to handle multiple censored predictors in the presence of auxiliary variables. A Bayesian joint modeling approach is proposed to fit the complex heterogeneous multi-center data, in which the data information is fully used to estimate parameters of interest. Efficient Monte Carlo Markov chain algorithms are specifically developed depending on the nature of the response. Simulation studies demonstrate the outperformance of the proposed Bayesian approach over other existing methods. An application to the data set from the vitamin D deficiency study is presented. Possible extensions of the method regarding the absence of auxiliary variables, semiparametric models, as well as the type of censoring are also discussed."	"Common limitations of clustering methods include the slow algorithm convergence, the instability of the pre-specification on a number of intrinsic parameters, and the lack of robustness to outliers. A recent clustering approach proposed a fast search algorithm of cluster centers based on their local densities. However, the selection of the key intrinsic parameters in the algorithm was not systematically investigated. It is relatively difficult to estimate the &quot;optimal&quot; parameters since the original definition of the local density in the algorithm is based on a truncated counting measure. In this paper, we propose a clustering procedure with adaptive density peak detection, where the local density is estimated through the nonparametric multivariate kernel estimation. The model parameter is then able to be calculated from the equations with statistical theoretical justification. We also develop an automatic cluster centroid selection method through maximizing an average silhouette index. The advantage and flexibility of the proposed method are demonstrated through simulation studies and the analysis of a few benchmark gene expression data sets. The method only needs to perform in one single step without any iteration and thus is fast and has a great potential to apply on big data analysis. A user-friendly R package ADPclust is developed for public use."	"This paper is motivated by a wide range of background correction problems in gene array data analysis, where the raw gene expression intensities are measured with error. Estimating a conditional density function from the contaminated expression data is a key aspect of statistical inference and visualization in these studies. We propose re-weighted deconvolution kernel methods to estimate the conditional density function in an additive error model, when the error distribution is known as well as when it is unknown. Theoretical properties of the proposed estimators are investigated with respect to the mean absolute error from a &quot;double asymptotic&quot; view. Practical rules are developed for the selection of smoothing-parameters. Simulated examples and an application to an Illumina bead microarray study are presented to illustrate the viability of the methods."	"Diffusion tensor imaging (DTI) is a quantitative magnetic resonance imaging technique that measures the three-dimensional diffusion of water molecules within tissue through the application of multiple diffusion gradients. This technique is rapidly increasing in popularity for studying white matter properties and structural connectivity in the living human brain. One of the major outcomes derived from the DTI process is known as fractional anisotropy, a continuous measure restricted on the interval (0,1). Motivated from a longitudinal DTI study of multiple sclerosis, we use a beta semiparametric-mixed regression model for the neuroimaging data. This work extends the generalized additive model methodology with beta distribution family and random effects. We describe two estimation methods with penalized splines, which are formalized under a Bayesian inferential perspective. The first one is carried out by Markov chain Monte Carlo (MCMC) simulations while the second one uses a relatively new technique called integrated nested Laplace approximation (INLA). Simulations and the neuroimaging data analysis show that the estimates obtained from both approaches are stable and similar, while the INLA method provides an efficient alternative to the computationally expensive MCMC method. "	"Integrated nested Laplace approximations (INLA) are a recently proposed approximate Bayesian approach to fit structured additive regression models with latent Gaussian field. INLA method, as an alternative to Markov chain Monte Carlo techniques, provides accurate approximations to estimate posterior marginals and avoid time-consuming sampling. We show here that two classical nonparametric smoothing problems, nonparametric regression and density estimation, can be achieved using INLA. Simulated examples and R functions are demonstrated to illustrate the use of the methods. Some discussions on potential applications of INLA are made in the paper."	"The error distribution is generally unknown in deconvolution problems with real applications. A separate independent experiment is thus often conducted to collect the additional noise data in those studies. In this paper, we study the nonparametric deconvolution estimation from a contaminated sample coupled with an additional noise sample. A ridge-based kernel deconvolution estimator is proposed and its asymptotic properties are investigated depending on the error magnitude. We then present a data-driven bandwidth selection algorithm with combining the bootstrap method and the idea of simulation extrapolation. The finite sample performance of the proposed methods and the effects of error magnitude are evaluated through simulation studies. A real data analysis for a gene Illumina BeadArray study is performed to illustrate the use of the proposed methods."	"This paper is motivated from the analysis of neuroscience data in a study of neural and muscular mechanisms of muscle fatigue. Multidimensional outcomes of different natures were obtained simultaneously from multiple modalities, including handgrip force, electromyography (EMG), and functional magnetic resonance imaging (fMRI). We first study individual modeling of the univariate response depending on its nature. A mixed-effects beta model and a mixed-effects simplex model are compared for modeling the force/EMG percentages. A mixed-effects negative-binomial model is proposed for modeling the fMRI counts. Then, I present a joint modeling approach to model the multidimensional outcomes together, which allows us to not only estimate the covariate effects but also to evaluate the strength of association among the multiple responses from different modalities. A simulation study is conducted to quantify the possible benefits by the new approaches in finite sample situations. Finally, the analysis of the fatigue data is illustrated with the use of the proposed methods."	"In this study functional Magnetic Resonance Imaging (fMRI) was used to evaluate cortical motor network adaptation after a rehabilitation program for upper extremity motor function in chronic stroke patients. Patients and healthy controls were imaged when they attempted to perform shoulder-elbow and wrist-hand movements in a 1.5 T Siemens scanner. We perform fMRI analysis at both single- and group-subject levels. Activated voxel counts are calculated to quantify brain activation in regions of interest. We discuss several candidate regression models for making inference on the count data, and propose an application of a generalized negative-binomial model (GNBM) with structured dispersion in the study. The effects of inappropriate statistical models that ignore the nature of data are addressed through Monte Carlo simulations. Based on the GNBM, significant activation differences are observed in a number of cortical regions for stroke versus control and as a result of treatment; notably, these differences are not detected when the data are analyzed using a conventional linear regression model. Our findings provide an improved functional neuroimaging data analysis protocol, specifically for pixel/voxel counts."	"Data from many scientific areas often come with measurement error. Density or distribution function estimation from contaminated data and nonparametric regression with errors-in-variables are two important topics in measurement error models. In this paper, we present a new software package decon for R, which contains a collection of functions that use the deconvolution kernel methods to deal with the measurement error problems. The functions allow the errors to be either homoscedastic or heteroscedastic. To make the deconvolution estimators computationally more efficient in R, we adapt the fast Fourier transform algorithm for density estimation with error-free data to the deconvolution kernel estimation. We discuss the practical selection of the smoothing parameter in deconvolution methods and illustrate the use of the package through both simulated and real examples."	"Multivariate local regression is an important tool for image processing and analysis. In many practical biomedical problems, one is often interested in comparing a group of images or regression surfaces. In this paper, we extend the existing method of testing the equality of nonparametric curves by Dette and Neumeyer (2001) and consider a test statistic by means of an Lgrangian (2)-distance in the multi-dimensional case under a completely heteroscedastic nonparametric model. The test statistic is also extended to be used in the case of spatial correlated errors. Two bootstrap procedures are described in order to approximate the critical values of the test depending on the nature of random errors. The resulting algorithms and analyses are illustrated from both simulation studies and a real medical example."
+"Wessely, Oliver"	"Cardiovascular and Metabolic Sciences"	29530879	25127994	24733901	23974984	23352791	22639256	22028899	29560130	27214281	27144987	"The development of the kidney relies on the establishment and maintenance of a precise tubular diameter of its functional units, the nephrons. This process is disrupted in polycystic kidney disease (PKD), resulting in dilations of the nephron and renal cyst formation. In the course of exploring G-protein-coupled signaling in the Xenopus pronephric kidney, we discovered that loss of the G-protein α subunit, Gnas, results in a PKD phenotype. Polycystin 1, one of the genes mutated in human PKD, encodes a protein resembling a G-protein-coupled receptor. Furthermore, deletion of the G-protein-binding domain present in the intracellular C terminus of polycystin 1 impacts functionality. A comprehensive analysis of all the G-protein α subunits expressed in the Xenopus pronephric kidney demonstrates that polycystin 1 recruits a select subset of G-protein α subunits and that their knockdown - as in the case of Gnas - results in a PKD phenotype. Mechanistically, the phenotype is caused by increased endogenous G-protein β/γ signaling and can be reversed by pharmacological inhibitors as well as knocking down Gnb1. Together, our data support the hypothesis that G proteins are recruited to the intracellular domain of PKD1 and that this interaction is crucial for its function in the kidney."	"The kidney is a homeostatic organ required for waste excretion and reabsorption of water, salts and other macromolecules. To this end, a complex series of developmental steps ensures the formation of a correctly patterned and properly proportioned organ. While previous studies have mainly focused on the individual signaling pathways, the formation of higher order receptor complexes in lipid rafts is an equally important aspect. These membrane platforms are characterized by differences in local lipid and protein compositions. Indeed, the cells in the Xenopus pronephric kidney were positive for the lipid raft markers ganglioside GM1 and Caveolin-1. To specifically interfere with lipid raft function in vivo, we focused on the Sterol Carrier Protein 2 (scp2), a multifunctional protein that is an important player in remodeling lipid raft composition. In Xenopus, scp2 mRNA was strongly expressed in differentiated epithelial structures of the pronephric kidney. Knockdown of scp2 did not interfere with the patterning of the kidney along its proximo-distal axis, but dramatically decreased the size of the kidney, in particular the proximal tubules. This phenotype was accompanied by a reduction of lipid rafts, but was independent of the peroxisomal or transcriptional activities of scp2. Finally, disrupting lipid micro-domains by inhibiting cholesterol synthesis using Mevinolin phenocopied the defects seen in scp2 morphants. Together these data underscore the importance for localized signaling platforms in the proper formation of the Xenopus kidney."	"MicroRNAs (miRNAs) are major posttranscriptional regulators of a wide variety of biological processes. However, redundancy among most miRNAs has made it difficult to identify their in vivo functions. We previously demonstrated that global inhibition of miRNA biogenesis in Xenopus resulted in a dramatically smaller pronephric kidney. This suggested that microRNAs play a pivotal role in organ size control. Here we now provide a detailed mechanistic explanation for this phenotype. We identified that the activation of the mechanistic target of rapamycin complex 1 (mTORC1) by Insulin and insulin-like growth factor (Igf) 2 is an important regulator in kidney growth, which in turn is modulated by microRNAs. Molecular analyses demonstrate that microRNAs set a threshold for mTORC1 signaling by down-regulating one of its core negative regulators, tuberous sclerosis 1 (Tsc1). Most importantly, this rheostat can be reprogrammed experimentally. Whereas knockdown of miRNAs causes growth arrest, concomitant knockdown of Tsc1 restores mTORC1 activity and proximal tubular size. Together, these data establish a previously unidentified in vivo paradigm for the importance of posttranscriptional regulation in organ size control. "	"The main functions of the kidney are to excrete metabolic waste products and actively reabsorb essential molecules such as amino acids, ions, glucose and water. In humans, a wide range of genetic disorders exist characterized by wasting of metabolically important compounds. At the cellular level, more than 20 highly specialized renal epithelial cell types located in different segments of the nephron contribute to the reabsorption process. In particular, proximal tubular cells play a crucial role and are uniquely adapted to maximize reabsorption efficiency. They accommodate high numbers of transporters and channels by increasing the apical surface area in contact with the primary filtrate by forming a brush border as well as undergoing hypertrophy and hyperplasia. This adaptation is evolutionarily conserved and is detected in the primitive pronephric kidney of fish and amphibians as well as the metanephric kidney of higher vertebrates. Surprisingly, signaling pathways regulating these three processes have remained largely unknown. Here we summarize recent studies that highlight the early phases of kidney development as a critical juncture in establishing proximal tubule size. "	"In the kidney, proximal tubules are very important for the reabsorption of water, ions and organic solutes from the primary urine. They are composed of highly specialized epithelial cells that are characterized by an elaborate apical brush border to increase transport efficiency. Using the pronephric kidney of Xenopus laevis we discovered that the G-protein modulator cholera toxin resulted in a dramatic reduction of the proximal tubular size. This phenotype was accompanied by changes in the cytoarchitecture characterized by ectopic expression of the distal tubular marker 4A6 and an impairment of yolk platelet degradation. In addition, cholera toxin caused edema formation. However, this phenotype was not due to kidney defects, but rather due to impaired vasculature development. Based on experiments with antisense morpholino oligomers as well as pharmacological agonists and antagonists, we could show that the complex phenotype of cholera toxin in the pronephric kidney was caused by the hyperactivation of a single G-protein alpha subunit, Gnas. This-in turn-caused elevated cAMP levels, triggered a Rapgef4-dependent signaling cassette and perturbed exo- and endocytosis. This perturbation of the secretory pathway by Ctx was not only observed in Xenopus embryos. Also, in a human proximal tubular cell line, cholera toxin or a Rapgef4-specific agonist increased uptake and decreased secretion of FITC-labeled Albumin. Based on these data we propose that the Gnas/cAMP/Rapgef4 pathway regulates the signals inducing the proliferation of proximal tubules to acquire their final organ size."	"Organ development requires the coordination of proliferation and differentiation of various cell types. This is particularly challenging in the kidney, where up to 26 different cell types with highly specialized functions are present. Moreover, even though the nephron initially develops from a common progenitor pool, the individual nephron segments are ultimately quite different in respect to cell numbers. This suggests that some cells in the nephron have a higher proliferative index (i.e., cell cycle length) than others. Here, we describe two different immunofluorescence-based approaches to accurately quantify such growth rates in the pronephric kidney of Xenopus laevis. Rapidly dividing cells were identified with the mitosis marker phospho-Histone H3, while slowly cycling cells were labeled using the thymidine analogue EdU. In addition, individual nephron segments were marked using cell type-specific antibodies. To accurately assess the number of positively stained cells, embryos were then serially sectioned and analyzed by immunofluorescence microscopy. Growth rates were established by counting the mitosis or S-phase events in relation to the overall cells present in the nephron segment of interest. This experimental design is very reproducible and can easily be modified to fit other animal models and organ systems."	"The formation of the vertebrate kidney is tightly regulated and relies on multiple evolutionarily conserved inductive events. These are present in the complex metanephric kidney of higher vertebrates, but also in the more primitive pronephric kidney functional in the larval stages of amphibians and fish. Wnts have long been viewed as central in this process. Canonical β-Catenin-dependent Wnt signaling establishes kidney progenitors and non-canonical β-Catenin-independent Wnt signaling participate in the morphogenetic processes that form the highly sophisticated nephron structure. While some individual Wnt signaling components have been studied extensively in the kidney, the overall pathway has not yet been analyzed in depth. Here we report a detailed expression analysis of all Wnt ligands, receptors and several downstream Wnt effectors during pronephros development in Xenopus laevis using in situ hybridization. Out of 19 Wnt ligands, only three, Wnt4, Wnt9a and Wnt11, are specifically expressed in the pronephros. Others such as Wnt8a are present, but in a broader domain comprising adjacent tissues in addition to the kidney. The same paradigm is observed for the Wnt receptors and its downstream signaling components. Fzd1, Fzd4, Fzd6, Fzd7, Fzd8 as well as Celsr1 and Prickle1 show distinct expression domains in the pronephric kidney, whereas the non-traditional Wnt receptors, Ror2 and Ryk, as well as the majority of the effector molecules are rather ubiquitous. In addition to this spatial regulation, the timing of expression is also tightly regulated. In particular, non-canonical Wnt signaling seems to be restricted to later stages of pronephros development. Together these data suggest a complex cross talk between canonical and non-canonical Wnt signaling is required to establish a functional pronephric kidney."	"Inflammatory bowel disease (IBD) affects one million people in the US. Ulcerative colitis (UC) is a subtype of IBD that can lead to colitis-associated cancer (CAC). In UC, the rate of CAC is 3-5-fold greater than the rate of sporadic colorectal cancer (CRC). The pathogenesis of UC and CAC are due to aberrant interactions between host immune system and microenvironment, but precise mechanisms are still unknown. In colitis and CAC, microenvironmental fibroblasts exhibit an activated, inflammatory phenotype that contributes to tumorigenesis accompanied by excessive secretion of the chemokine CXCL8. However, mechanisms regulating CXCL8 secretion are unclear. Since it is known that miRNAs regulate chemokines such as CXCL8, we queried a microRNA library for mimics affecting CXCL8 secretion. Among the identified microRNAs, miR-20a/b was further investigated as its stromal expression levels inversely correlated with the amounts of CXCL8 secreted and predicted fibroblast tumor-promoting activity. Indeed, miR-20a directly bound to the 3'UTR of CXCL8 mRNA and regulated its expression by translational repression. In vivo co-inoculation studies with CRC stem cells demonstrated that fibroblasts characterized by high miR-20a expression had reduced tumor-promoting activities. These studies reveal that in stromal fibroblasts, miR-20a modulates CXCL8 function, therefore influencing tumor latency."	"WNT ligands induce Ca(2+) signalling on target cells. PKD1 (polycystin 1) is considered an orphan, atypical G-protein-coupled receptor complexed with TRPP2 (polycystin 2 or PKD2), a Ca(2+)-permeable ion channel. Inactivating mutations in their genes cause autosomal dominant polycystic kidney disease (ADPKD), one of the most common genetic diseases. Here, we show that WNTs bind to the extracellular domain of PKD1 and induce whole-cell currents and Ca(2+) influx dependent on TRPP2. Pathogenic PKD1 or PKD2 mutations that abrogate complex formation, compromise cell surface expression of PKD1, or reduce TRPP2 channel activity suppress activation by WNTs. Pkd2(-/-) fibroblasts lack WNT-induced Ca(2+) currents and are unable to polarize during directed cell migration. In Xenopus embryos, pkd1, Dishevelled 2 (dvl2) and wnt9a act within the same pathway to preserve normal tubulogenesis. These data define PKD1 as a WNT (co)receptor and implicate defective WNT/Ca(2+) signalling as one of the causes of ADPKD."	"CUG-BP, Elav-like family member 1 (CELF1) is a multifunctional RNA binding protein found in a variety of adult and embryonic tissues. In the heart, CELF1 is found exclusively in the myocardium. However, the roles of CELF1 during cardiac development have not been completely elucidated. Myofibrillar organization is disrupted and proliferation is reduced following knockdown of CELF1 in cultured chicken primary embryonic cardiomyocytes. In vivo knockdown of Celf1 in developing Xenopus laevis embryos resulted in myofibrillar disorganization and a trend toward reduced proliferation in heart muscle, indicating conserved roles for CELF1 orthologs in embryonic cardiomyocytes. Loss of Celf1 also resulted in morphogenetic abnormalities in the developing heart and gut. Using optical coherence tomography, we showed that cardiac contraction was impaired following depletion of Celf1, while heart rhythm remained unperturbed. In contrast to cardiac muscle, loss of Celf1 did not disrupt myofibril organization in skeletal muscle cells, although it did lead to fragmentation of skeletal muscle bundles. CELF1 is required for normal myofibril organization, proliferation, morphogenesis, and contractile performance in the developing myocardium. Developmental Dynamics 245:854-873, 2016. © 2016 Wiley Periodicals, Inc."
+"Williams, Jessica"	"Neurosciences"	24920943	18245499	21463904	22966080	24733828	23706172	22966080	28134626	26556427	23797673	"In the adult central nervous system (CNS), chemokines and their receptors are involved in developmental, physiological and pathological processes. Although most lines of investigation focus on their ability to induce the migration of cells, recent studies indicate that chemokines also promote cellular interactions and activate signaling pathways that maintain CNS homeostatic functions. Many homeostatic chemokines are expressed on the vasculature of the blood brain barrier (BBB) including CXCL12, CCL19, CCL20, and CCL21. While endothelial cell expression of these chemokines is known to regulate the entry of leukocytes into the CNS during immunosurveillance, new data indicate that CXCL12 is also involved in diverse cellular activities including adult neurogenesis and neuronal survival, having an opposing role to the homeostatic chemokine, CXCL14, which appears to regulate synaptic inputs to neural precursors. Neuronal expression of CX3CL1, yet another homeostatic chemokine that promotes neuronal survival and communication with microglia, is partly regulated by CXCL12. Regulation of CXCL12 is unique in that it may regulate its own expression levels via binding to its scavenger receptor CXCR7/ACKR3. In this review, we explore the diverse roles of these and other homeostatic chemokines expressed within the CNS, including the possible implications of their dysfunction as a cause of neurologic disease. "	"Long distance transportation may affect the health of pigs; thus, adding a rest stop (lairage) during long journeys may improve their well-being. The objective of this study was to determine whether a mid-journey lairage influenced swine innate immunity and intestinal microbial populations after a 16-h transport. Four replications were conducted, 1 in each of 4 seasons. Eighteen-kilogram pigs were housed in 16 pens (13 to 16 pigs/pen) with 8 pens/treatment. Lairage pigs were transported for 8 h, given a rest with food and water for 8 h, then transported for an additional 8 h. Continuous pigs were continuously transported for 16 h. Jugular blood samples and intestinal tissue and contents were collected from 16 pigs (8/treatment) on d 1, 3, 7, and 14 posttransport. Hematocrit and white blood cell counts were determined and neutrophil cell functions, including phagocytosis/oxidative burst and phagocytosis of latex beads and leukocyte phenotypic cell markers (CD14 and CD18), were analyzed using flow cytometry. Expression of toll-like receptors 2, 4, and 5; IL-8 (a cytokine that is a chemoattractant for neutrophils); CCL20 (a chemokine that is a chemoattractant for dendritic cells); and the antimicrobial peptide PR39 were determined from ileal and jejunal total RNA. Denaturing gradient gel electrophoresis was used to determine shifts in intestinal microbial populations. Total white blood cell and granulocyte counts in continuous pigs were greater (P &lt; 0.01) on d 1 than in lairage pigs. Phagocytosis of microbeads was greater in continuous (P &lt; 0.05) than in lairage pigs on d 7. Expression of IL-8 in jejunum was greater (P &lt; 0.05) for continuous than for lairage pigs on d 1. Expression of CCL20 in the ileum was greater (P &lt; 0.05) on d 14 for the continuous pigs. Expression of PR39 was greatest (P &lt; 0.05) in the jejunum of lairage pigs on d 3. Lairage pigs had a greater (P &lt; 0.05) variation in microbial populations (lower similarity coefficient) in the jejunum contents on d 1 and 7, in the cecum contents and tissue on d 3, and in the jejunum contents and tissue on d 14. However, continuous pigs had greater (P &lt; 0.05) variation in the ileal tissues on d 14. This study indicates that adding a lairage to an extended transport alters immune functions, receptor, cytokine and chemokine expression, and gut microbiota compared with pigs transported for 16 h without lairage."	"Multiple sclerosis (MS) is an inflammatory disease of the CNS mediated by CD4(+) T cells directed against myelin antigens. Experimental autoimmune encephalomyelitis (EAE) is induced by immunization with myelin antigens like myelin oligodendrocyte glycoprotein (MOG). We have explored the transfer of EAE using MOG(35-55)-specific TCR transgenic (2D2) T cells. Unsorted 2D2 Th1 cells reliably transferred EAE. Further, we found that CD44(hi)CD62L(lo) effector/memory CD4(+) T cells are likely responsible for the disease transfer due to the up-regulation of CD44. Given the importance of MOG in MS pathogenesis, mechanistic insights into adoptively transferred EAE by MOG-specific Th1 cells could prove valuable in MS research."	"Long distance transportation of weaned piglets (Sus scrofa) is increasingly common in the united states and may result in delayed eating, drinking, or normal social behaviors. A potential solution is a mid-journey rest (lairage). The objective of this study was to determine if a lairage altered behavior after a 16-h transport. Pigs that weighed approximately 18 kg each (n = 894) were housed in 16 pens with 8 pens per treatment. Lairaged pigs were transported for 8 h and given an 8-h rest with food and water, whereas control pigs were transported continuously for 16 h. The heaviest, the lightest, and 2 average-BW pigs relative to the average weight of the pen were observed by video recording for 24 h immediately before and after transport, and during d 6 and 13 after transport. Postures (lying, sitting, and standing) were recorded using 10-min-interval scan sampling, and behavioral categories included inactivity, activities (eating, drinking, alert, manipulating pen, rooting, and walking) and social interactions (aggression, belly nosing, playing, tail biting, and positive social behaviors). In both treatments, sitting occurred most before transport (P &lt; 0.01) than at other times, but did not differ between treatments. Standing increased (time effect; P &lt; 0.01) for both treatments immediately after transport through d 6, but returned to pre-transport values by d 13. In contrast, lying decreased (time effect; P &lt; 0.01) after transport, but returned to above pre-transport values by d 13. Time effects were evident for activity (P &lt; 0.01), pen manipulation (P = 0.05), rooting (P &lt; 0.01), initiation of belly-nosing (P = 0.01), and receiving belly-nosing (P = 0.03); however, initiation of aggression did not differ for day (P = 0.19) or treatment (P = 0.56). Lairaged pigs initiated more (P = 0.05) play than continuously transported pigs, but no differences (P = 0.84) were seen in receipt of play behavior. Pigs that were to be transported for 16 h continuously walked less pre-transport, walked more post-transport (treatment × time interaction; P = 0.02), and drank less pre-transport, but drank more on all days post-transport compared with the lairage group (treatment × time interaction; P = 0.001). This study indicated that extended transport without lairage alters some swine behaviors relevant to production (water consumption) and demonstrated that a long-duration transport, regardless of the mid-journey lairage treatment, affects a number of behaviors up to 13 d after transportation."	"Current treatment modalities for the neurodegenerative disease multiple sclerosis (MS) use disease-modifying immunosuppressive compounds but do not promote repair. Although several potential targets that may induce myelin production have been identified, there has yet to be an approved therapy that promotes remyelination in the damaged central nervous system (CNS). Remyelination of damaged axons requires the generation of new oligodendrocytes from oligodendrocyte progenitor cells (OPCs). Although OPCs are detected in MS lesions, repair of myelin is limited, contributing to progressive clinical deterioration. In the CNS, the chemokine CXCL12 promotes remyelination via CXCR4 activation on OPCs, resulting in their differentiation into myelinating oligodendrocytes. Although the CXCL12 scavenging receptor CXCR7/ACKR3 (CXCR7) is also expressed by OPCs, its role in myelin repair in the adult CNS is unknown. We show that during cuprizone-induced demyelination, in vivo CXCR7 antagonism augmented OPC proliferation, leading to increased numbers of mature oligodendrocytes within demyelinated lesions. CXCR7-mediated effects on remyelination required CXCR4 activation, as assessed via both phospho-S339-CXCR4-specific antibodies and administration of CXCR4 antagonists. These findings identify a role for CXCR7 in OPC maturation during remyelination and are the first to use a small molecule to therapeutically enhance myelin repair in the demyelinated adult CNS. "	"In multiple sclerosis (MS) and experimental autoimmune encephalomyelitis (EAE), relapses are markedly reduced during pregnancy. Exosomes are lipid-bound vesicles and are more abundant in the serum during pregnancy. Using murine EAE, we demonstrate that serum exosomes suppress T cell activation, promote the maturation of oligodendrocyte precursor cells (OPC), and pregnancy exosomes facilitate OPC migration into active CNS lesions. However, exosomes derived from both pregnant and non-pregnant mice reduced the severity of established EAE. Thus, during pregnancy, serum exosomes modulate the immune and central nervous systems and contribute to pregnancy-associated suppression of EAE. "	"Long distance transportation of weaned piglets (Sus scrofa) is increasingly common in the united states and may result in delayed eating, drinking, or normal social behaviors. A potential solution is a mid-journey rest (lairage). The objective of this study was to determine if a lairage altered behavior after a 16-h transport. Pigs that weighed approximately 18 kg each (n = 894) were housed in 16 pens with 8 pens per treatment. Lairaged pigs were transported for 8 h and given an 8-h rest with food and water, whereas control pigs were transported continuously for 16 h. The heaviest, the lightest, and 2 average-BW pigs relative to the average weight of the pen were observed by video recording for 24 h immediately before and after transport, and during d 6 and 13 after transport. Postures (lying, sitting, and standing) were recorded using 10-min-interval scan sampling, and behavioral categories included inactivity, activities (eating, drinking, alert, manipulating pen, rooting, and walking) and social interactions (aggression, belly nosing, playing, tail biting, and positive social behaviors). In both treatments, sitting occurred most before transport (P &lt; 0.01) than at other times, but did not differ between treatments. Standing increased (time effect; P &lt; 0.01) for both treatments immediately after transport through d 6, but returned to pre-transport values by d 13. In contrast, lying decreased (time effect; P &lt; 0.01) after transport, but returned to above pre-transport values by d 13. Time effects were evident for activity (P &lt; 0.01), pen manipulation (P = 0.05), rooting (P &lt; 0.01), initiation of belly-nosing (P = 0.01), and receiving belly-nosing (P = 0.03); however, initiation of aggression did not differ for day (P = 0.19) or treatment (P = 0.56). Lairaged pigs initiated more (P = 0.05) play than continuously transported pigs, but no differences (P = 0.84) were seen in receipt of play behavior. Pigs that were to be transported for 16 h continuously walked less pre-transport, walked more post-transport (treatment × time interaction; P = 0.02), and drank less pre-transport, but drank more on all days post-transport compared with the lairage group (treatment × time interaction; P = 0.001). This study indicated that extended transport without lairage alters some swine behaviors relevant to production (water consumption) and demonstrated that a long-duration transport, regardless of the mid-journey lairage treatment, affects a number of behaviors up to 13 d after transportation."	"Type I IFNs promote cellular responses to viruses, and IFN receptor (IFNAR) signaling regulates the responses of endothelial cells of the blood-brain barrier (BBB) during neurotropic viral infection. However, the role of astrocytes in innate immune responses of the BBB during viral infection of the CNS remains to be fully elucidated. Here, we have demonstrated that type I IFNAR signaling in astrocytes regulates BBB permeability and protects the cerebellum from infection and immunopathology. Mice with astrocyte-specific loss of IFNAR signaling showed decreased survival after West Nile virus infection. Accelerated mortality was not due to expanded viral tropism or increased replication. Rather, viral entry increased specifically in the hindbrain of IFNAR-deficient mice, suggesting that IFNAR signaling critically regulates BBB permeability in this brain region. Pattern recognition receptors and IFN-stimulated genes had higher basal and IFN-induced expression in human and mouse cerebellar astrocytes than did cerebral cortical astrocytes, suggesting that IFNAR signaling has brain region-specific roles in CNS immune responses. Taken together, our data identify cerebellar astrocytes as key responders to viral infection and highlight the existence of distinct innate immune programs in astrocytes from evolutionarily disparate regions of the CNS."	"The discovery that chemokines and their receptors are expressed by a variety of cell types within the normal adult central nervous system (CNS) has led to an expansion of their repertoire as molecular interfaces between the immune and nervous systems. Thus, CNS chemokines are now divided into those molecules that regulate inflammatory cell migration into the CNS and those that initiate CNS repair from inflammation-mediated tissue damage. Work in our laboratory throughout the past decade has sought to elucidate how chemokines coordinate leukocyte entry and interactions at CNS endothelial barriers, under both homeostatic and inflammatory conditions, and how they promote repair within the CNS parenchyma. These studies have identified several chemokines, including CXCL12 and CXCL10, as critical regulators of leukocyte migration from perivascular locations. CXCL12 additionally plays an essential role in promoting remyelination of injured white matter. In both scenarios we have shown that chemokines serve as molecular links between inflammatory mediators and other effector molecules involved in neuroprotective processes. "	"Macrophage migration inhibitory factor (MIF) is a multipotent cytokine that is associated with clinical worsening and relapses in multiple sclerosis (MS) patients. The mechanism through which MIF promotes MS progression remains undefined. In this study, we identify a critical role for MIF in regulating CNS effector mechanisms necessary for the development of inflammatory pathology in a mouse model of MS, experimental autoimmune encephalomyelitis (EAE). Despite the ability to generate pathogenic myelin-specific immune responses peripherally, MIF-deficient mice have reduced EAE severity and exhibit less CNS inflammatory pathology, with a greater percentage of resting microglia and fewer infiltrating inflammatory macrophages. We demonstrate that MIF is essential for promoting microglial activation and production of the innate soluble mediators IL-1β, IL-6, TNF-α, and inducible NO synthase. We propose a novel role for MIF in inducing microglial C/EBP-β, a transcription factor shown to regulate myeloid cell function and play an important role in neuroinflammation. Intraspinal stereotaxic microinjection of MIF resulted in upregulation of inflammatory mediators in microglia, which was sufficient to restore EAE-mediated inflammatory pathology in MIF-deficient mice. To further implicate a role for MIF, we show that MIF is highly expressed in human active MS lesions. Thus, these results illustrate the ability of MIF to influence the CNS cellular and molecular inflammatory milieu during EAE and point to the therapeutic potential of targeting MIF in MS. "
+"Wilson, Steven"	"Ophthalmic Research"	30884531	30480706	30284084	30098200	29596850	29481786	28780779	28625845	28506643	28275314	"The purpose of this study was to evaluate the effect of removal of Descemet's basement membrane and endothelium compared with removal of the endothelium alone on posterior corneal fibrosis. Twelve New Zealand White rabbits were included in the study. Six eyes had removal of the Descemet's membrane-endothelial complex over the central 8 mm of the cornea. Six eyes had endothelial removal with an olive-tipped cannula over the central 8 mm of the cornea. All corneas developed stromal edema. Corneas in both groups were cryofixed in optimum cutting temperature (OCT) formula at 1 month after surgery. Immunohistochemistry (IHC) was performed for α-smooth muscle actin (SMA), keratocan, CD45, nidogen-1, vimentin, and Ki-67, and a TUNEL assay was performed to detect apoptosis. Six of six corneas that had Descemet's membrane-endothelial removal developed posterior stromal fibrosis populated with SMA+ myofibroblasts, whereas zero of six corneas that had endothelial removal alone developed fibrosis or SMA+ myofibroblasts (P &lt; 0.01). Myofibroblasts in the fibrotic zone of corneas that had Descemet's membrane-endothelial removal were undergoing both mitosis and apoptosis at 1 month after surgery. A zone between keratocan+ keratocytes and SMA+ myofibroblasts contained keratocan-SMA-vimentin+ cells that were likely CD45- corneal fibroblasts and CD45+ fibrocytes. Descemet's basement membrane has an important role in modulating posterior corneal fibrosis after injury that is analogous to the role of the epithelial basement membrane in modulating anterior corneal fibrosis after injury. Fibrotic areas had myofibroblasts undergoing mitosis and apoptosis, indicating that fibrosis is in dynamic flux."	"To determine whether (1) the in vitro expression of epithelial basement membrane components nidogen-1, nidogen-2, and perlecan by keratocytes, corneal fibroblasts, and myofibroblasts is modulated by cytokines/growth factors, and (2) perlecan protein is produced by stromal cells after photorefractive keratectomy. Marker-verified rabbit keratocytes, corneal fibroblasts, myofibroblasts were stimulated with TGF-β1, IL-1α, IL-1β, TGF-β3, platelet-derived growth factor (PDGF)-AA, or PDGF-AB. Real-time quantitative RT-PCR was used to detect expression of nidogen-1, nidogen-2, and perlecan mRNAs. Western blotting evaluated changes in protein expression. Immunohistochemistry was performed on rabbit corneas for perlecan, alpha-smooth muscle actin, keratocan, vimentin, and CD45 at time points from 1 day to 1 month after photorefractive keratectomy (PRK). IL-1α or -1β significantly upregulated perlecan mRNA expression in keratocytes. TGF-β1 or -β3 markedly downregulated nidogen-1 or -2 mRNA expression in keratocytes. None of these cytokines had significant effects on nidogen-1, -2, or perlecan mRNA expression in corneal fibroblasts or myofibroblasts. IL-1α significantly upregulated, while TGF-β1 significantly downregulated, perlecan protein expression in keratocytes. Perlecan protein expression was upregulated in anterior stromal cells at 1 and 2 days after -4.5 or -9 diopters (D) PRK, but the subepithelial localization of perlecan became disrupted at 7 days and later time points in -9-D PRK corneas when myofibroblasts populated the anterior stroma. IL-1 and TGF-β1 have opposing effects on perlecan and nidogen expression by keratocytes in vitro. Proximate participation of keratocytes is likely needed to regenerate normal epithelial basement membrane after corneal injury."	"Basement membranes are thin connective tissue structures composed of organ-specific assemblages of collagens, laminins, proteoglycan-like perlecan, nidogens, and other components. Traditionally, basement membranes are thought of as structures which primarily function to anchor epithelial, endothelial, or parenchymal cells to underlying connective tissues. While this role is important, other functions such as the modulation of growth factors and cytokines that regulate cell proliferation, migration, differentiation, and fibrosis are equally important. An example of this is the critical role of both the epithelial basement membrane and Descemet's basement membrane in the cornea in modulating myofibroblast development and fibrosis, as well as myofibroblast apoptosis and the resolution of fibrosis. This article compares the ultrastructure and functions of key basement membranes in several organs to illustrate the variability and importance of these structures in organs that commonly develop fibrosis."	"The purpose of this review was to provide detailed insights into the pathophysiology of myofibroblast-mediated fibrosis (scarring or late haze) after corneal injury, surgery, or infection. Literature review. The epithelium and epithelial basement membrane (EBM) and/or endothelium and Descemet's basement membrane (BM) are commonly disrupted after corneal injuries, surgeries, and infections. Regeneration of these critical regulatory structures relies on the coordinated production of BM components, including laminins, nidogens, perlecan, and collagen type IV by epithelial, endothelial, and keratocyte cells. Whether a cornea, or an area in the cornea, heals with transparency or fibrosis may be determined by whether there is injury to one or both corneal basement membranes (EBM and/or Descemet's BM) and delayed or defective regeneration or replacement of the BM. These opaque myofibroblasts, and the disordered extracellular matrix these cells produce, persist in the stroma until the EBM and/or Descemet's BM is regenerated or replaced. Corneal stromal fibrosis (also termed &quot;stromal scarring&quot; or &quot;late haze&quot;) occurs as a consequence of BM injury and defective regeneration in both the anterior (EBM) and posterior (Descemet's BM) cornea. The resolution of fibrosis and return of stromal transparency depends on reestablished BM structure and function. It is hypothesized that defective regeneration of the EBM or Descemet's BM allows key profibrotic growth factors, including transforming growth factor beta-1 (TGF-β1) and TGF-β2, to penetrate the stroma at sustained levels necessary to drive the development and maintenance of mature opacity-producing myofibroblasts from myofibroblast precursors cells, and studies suggest that perlecan and collagen type IV are the critical components in EBM and Descemet's BM that bind TGF-β1, TGF-β2, platelet-derived growth factor, and possibly other growth factors, and regulate their bioavailability and function during homeostasis and corneal wound healing."	"This study was performed to determine whether cells in the posterior stroma undergo apoptosis in response to endothelial cell injury and to determine whether basement membrane component nidogen-1 was present in the cornea. New Zealand White rabbits had an olive tip cannula inserted into the anterior chamber to mechanically injure corneal endothelial cells over an 8 mm diameter area of central cornea with minimal injury to Descemet's membrane. At 1 h (6 rabbits) and 4 h (6 rabbits) after injury, three corneas at each time point were cryopreserved in OCT for terminal deoxynucleotidyl transferase dUTP nick end labeling (TUNEL) assay and immunohistochemistry (IHC) for vimentin and nidogen-1, and three corneas at each time point were fixed for transmission electron microscopy (TEM). Uninjured corneas were controls. Stromal cells over approximately the posterior 25% of the stroma overlying to the site of corneal endothelial injury underwent apoptosis detected by the TUNEL assay. Many of these apoptotic cells were vimentin+, suggesting they were likely keratocytes or corneal fibroblasts. Stromal cells peripheral to the site of endothelial injury and more anterior stromal cells overlying the site of endothelial injury did not undergo apoptosis. Stromal cell death was confirmed to be apoptosis by TEM. No apoptosis of stromal cells was detected in control, uninjured corneas. Nidogen-1 was detected in the stroma of unwounded corneas, with higher nidogen-1 in the posterior stroma than the anterior stroma. After endothelial scrape injury, concentrations of nidogen-1 appeared to be in the extracellular matrix of the posterior stroma and, possibly, within apoptotic bodies of stromal cells. Thus, posterior stromal cells, likely including keratocytes, undergo apoptosis in response to corneal endothelial injury, analogous to anterior keratocytes undergoing apoptosis in response to epithelial injury."	"The aim of this study was to determine whether bone marrow-derived fibrocytes migrate into the cornea after stromal scar-producing injury and differentiate into alpha-smooth muscle actin (αSMA) + myofibroblasts. Chimeric mice expressing green fluorescent protein (GFP) bone marrow cells had fibrosis (haze)-generating irregular phototherapeutic keratectomy (PTK). Multiplex immunohistochemistry (IHC) for GFP and fibrocyte markers (CD34, CD45, and vimentin) was used to detect fibrocyte infiltration into the corneal stroma and the development of GFP+ αSMA+ myofibroblasts. IHC for activated caspase-3, GFP and CD45 was used to detect fibrocyte and other hematopoietic cells undergoing apoptosis. Moderate haze developed in PTK-treated mouse corneas at 14 days after surgery and worsened, and persisted, at 21 days after surgery. GFP+ CD34+ CD45+ fibrocytes, likely in addition to other CD34+ and/or CD45+ hematopoietic and stem/progenitor cells, infiltrated the cornea and were present in the stroma in high numbers by one day after PTK. The fibrocytes and other bone marrow-derived cells progressively decreased at four days and seven days after surgery. At four days after PTK, 5% of the GFP+ cells expressed activated caspase-3. At 14 days after PTK, more than 50% of GFP+ CD45+ cells were also αSMA+ myofibroblasts. At 21 days after PTK, few GFP+ αSMA+ cells persisted in the stroma and more than 95% of those remaining expressed activated caspase-3, indicating they were undergoing apoptosis. GFP+ CD45+ SMA+ cells that developed from 4 to 21 days after irregular PTK were likely developed from fibrocytes. After irregular PTK in the strain of C57BL/6-C57/BL/6-Tg(UBC-GFP)30Scha/J chimeric mice, however, more than 95% of fibrocytes and other hematopoietic cells underwent apoptosis prior to the development of mature αSMA+ myofibroblasts. Most GFP+ CD45+ αSMA+ myofibroblasts that did develop subsequently underwent apoptosis-likely due to epithelial basement membrane regeneration and deprivation of epithelium-derived TGFβ requisite for myofibroblast survival."	"Our purpose is to present a broad review about the principles, early history, evolution, applications, and complications of femtosecond lasers used in refractive and nonrefractive corneal surgical procedures. Femtosecond laser technology added not only safety, precision, and reproducibility to established corneal surgical procedures such as laser in situ keratomileusis (LASIK) and astigmatic keratotomy, but it also introduced new promising concepts such as the intrastromal lenticule procedures with refractive lenticule extraction (ReLEx). Over time, the refinements in laser optics and the overall design of femtosecond laser platforms led to it becoming an essential tool for corneal surgeons. In conclusion, femtosecond laser is a heavily utilized tool in refractive and nonrefractive corneal surgical procedures, and further technological advances are likely to expand its applications."	"Myofibroblast-mediated fibrosis is important in the pathophysiology of diseases in most organs. The cornea, the transparent anterior wall of the eye that functions to focus light on the retina, is commonly affected by fibrosis and provides an optimal model due to its simplicity and accessibility. Severe injuries to the cornea, including infection, surgery, and trauma, may trigger the development of myofibroblasts and fibrosis in the normally transparent connective tissue stroma. Ultrastructural studies have demonstrated that defective epithelial basement membrane (EBM) regeneration after injury underlies the development of myofibroblasts from both bone marrow- and keratocyte-derived precursor cells in the cornea. Defective EBM permits epithelium-derived transforming growth factor beta, platelet-derived growth factor, and likely other modulators, to penetrate the stroma at sustained levels necessary to drive the development of vimentin+ alpha-smooth muscle actin+ desmin+ (V+A+D+) mature myofibroblasts and promote their persistence. Defective versus normal EBM regeneration likely relates to the severity of the stromal injury and a resulting decrease in fibroblasts (keratocytes) and their contribution of EBM components, including laminin alpha-3 and nidogen-2. Corneal fibrosis may resolve over a period of months to years if the inciting injury is eliminated through keratocyte-facilitated regeneration of normal EBM, ensuing apoptosis of myofibroblasts, and reorganization of disordered extracellular matrix by repopulating keratocytes. We hypothesize the corneal model of fibrosis associated with defective BM regeneration and myofibroblast development after epithelial or parenchymal injury may be a paradigm for the development of fibrosis in other organs where chronic injury or defective BM underlies the pathophysiology of disease."	"The purpose of this study was to investigate whether myofibroblast-related fibrosis (scarring) after microbial keratitis was modulated by the epithelial basement membrane (EBM) injury and regeneration. Rabbits were infected with Pseudomonas aeruginosa after epithelial scrape injury and the resultant severe keratitis was treated with topical tobramycin. Corneas were analyzed from one to four months after keratitis with slit lamp photos, immunohistochemistry for alpha-smooth muscle actin (α-SMA) and monocyte lineage marker CD11b, and transmission electron microscopy. At one month after keratitis, corneas had no detectible EBM lamina lucida or lamina densa, and the central stroma was packed with myofibroblasts that in some eyes extended to the posterior corneal surface with damage to Descemet's membrane and the endothelium. At one month, a nest of stromal cells in the midst of the SMA + myofibroblasts in the stroma that were CD11b+ may be fibrocyte precursors to myofibroblasts. At two to four months after keratitis, the EBM fully-regenerated and myofibroblasts disappeared from the anterior 60-90% of the stroma of all corneas, except for one four-month post-keratitis cornea where anterior myofibroblasts were still present in one localized pocket in the cornea. The organization of the stromal extracellular matrix also became less disorganized from two to four months after keratitis but remained abnormal compared to controls at the last time point. Myofibroblasts persisted in the posterior 10%-20% of posterior stroma even at four months after keratitis in the central cornea where Descemet's membrane and the endothelium were damaged. This study suggests that the EBM has a critical role in modulating myofibroblast development and fibrosis after keratitis-similar to the role of EBM in fibrosis after photorefractive keratectomy. Damage to EBM likely allows epithelium-derived transforming growth factor beta (TGFβ) to penetrate the stroma and drive development and persistence of myofibroblasts. Eventual repair of EBM leads to myofibroblast apoptosis when the cells are deprived of requisite TGFβ to maintain viability. The endothelium and Descemet's membrane may serve a similar function modulating TGFβ penetration into the posterior stroma-with the source of TGFβ likely being the aqueous humor."	"To investigate the production of the epithelial basement membrane (EBM) component mRNAs at time points before lamina lucida and lamina densa regeneration in anterior stromal cells after corneal injury that would heal with and without fibrosis. Rabbit corneas were removed from 2 to 19 days after -4.5D or -9.0D photorefractive keratectomy (PRK) with the VISX S4 IR laser. Corneas were evaluated with transmission electron microscopy (TEM) for full regeneration of the lamina lucida and the lamina densa. Laser capture microdissection (LCM) based quantitative real-time (RT)-PCR was used to quantitate the expression of mRNAs for laminin α-3 (LAMA3), perlecan, nidogen-1, and nidogen-2 in the anterior stroma. After -4.5D PRK, EBM was found to be fully regenerated at 8 to 10 days after surgery. At 4 days after PRK, the nidogen-2 and LAMA3 mRNAs levels were detected at statistically significantly lower levels in the anterior stroma of the -9.0D PRK corneas (where the EBM would not fully regenerate) compared to the -4.5D PRK corneas (where the EBM was destined to fully regenerate). At 7 days after PRK, nidogen-2 and LAMA3 mRNAs continued to be statistically significantly lower in the anterior stroma of the -9.0D PRK corneas compared to their expression in the anterior stroma of the -4.5D PRK corneas. Key EBM components LAMA3 and nidogen-2 mRNAs are expressed at higher levels in the anterior stroma during EBM regeneration in the -4.5D PRK corneas where the EBM is destined to fully regenerate and no haze developed compared to the -9.0D PRK corneas where the EBM will not fully regenerate and myofibroblast-related stromal fibrosis (haze) will develop."
+"Wu, Qingyu"	"Cardiovascular and Metabolic Sciences"	31185295	30843660	30595185	29889025	30453347	29650693	29180304	28861913	28338078	27898523	"Factor VII (FVII) is a key serine protease in blood coagulation. N-glycosylation in FVII has been shown to be critical for protein secretion. To date, however, the underlying biochemical mechanism remains unclear. Recently, we found that N-glycans in the transmembrane serine protease corin are critical for calnexin-assisted protein folding and extracellular expression. In this study, we tested the hypothesis that N-glycans in the FVII protease domain mediate calnexin-assisted protein folding and that naturally occurring F7 mutations abolishing N-glycosylation impair FVII secretion. We expressed human FVII wild-type (WT) and mutant proteins lacking one or both N-glycosylation sites in HEK293 and HepG2 cells in the presence or absence of a glucosidase inhibitor. FVII expression, secretion and binding to endoplasmic reticulum chaperones were examined by immune staining, co-immunoprecipitation, Western blotting, and ELISA. We found that N-glycosylation at N360 in the protease domain, but not N183 in the pro-peptide domain, of human FVII is required for protein secretion. Elimination of N-glycosylation at N360 impaired calnexin-assisted FVII folding and secretion. Similar results were observed in WT FVII when N-glycan-calnexin interaction was blocked by glucosidase inhibition. Naturally occurring F7 mutations abolishing N-glycosylation at N360 reduced FVII secretion in HEK293 and HepG2 cells. These results indicate that N-glycans in the FVII protease domain mediate calnexin-assisted protein folding and subsequent extracellular expression. Naturally occurring F7 mutations abolishing N-glycosylation in FVII may impair this mechanism, thereby reducing FVII levels in patients."	"Transmembrane serine proteases have been implicated in the development and progression of solid and hematological cancers. Human airway trypsin-like protease 4 (HAT-L4) is a transmembrane serine protease expressed in epithelial cells and exocrine glands. In the skin, HAT-L4 is important for normal epidermal barrier function. Here, we report an unexpected finding of ectopic HAT-L4 expression in neutrophils and monocytes from acute myeloid leukemia (AML) patients. Such expression was not detected in bone marrow cells from normal individuals or patients with chronic myeloid leukemia, acute lymphocytic leukemia and chronic lymphocytic leukemia. In AML patients who underwent chemotherapy, persistent HAT-L4 expression in bone marrow cells was associated with minimal residual disease and poor prognostic outcomes. In culture, silencing HAT-L4 expression in AML-derived THP-1 cells by short hairpin RNAs inhibited matrix metalloproteinase-2 activation and Matrigel invasion. In mouse xenograft models, inhibition of HAT-L4 expression reduced the proliferation and growth of THP-1 cell-derived tumors. Our results indicate that ectopic HAT-L4 expression is a pathological mechanism in AML and that HAT-L4 may be used as a cell surface marker for AML blast detection and targeting."	"Preeclampsia increases the risk of heart disease. Defects in the protease corin, including the variant T555I/Q568P found in approximately 12% of blacks, have been associated with preeclampsia and cardiac hypertrophy. The objective of this study was to investigate the role of corin and the T555I/Q568P variant in preeclampsia-associated cardiac alterations using genetically modified mouse models. Virgin wild-type (WT) and corin knockout mice with or without a cardiac WT corin or T555I/Q568P variant transgene were mated at 3 or 6 months of age. Age- and genotype-matched virgin mice were used as controls. Cardiac morphology and function were assessed at gestational day 18.5 or 28 days postpartum by histologic and echocardiographic analyses. Pregnant corin knockout mice at gestational day 18.5 developed cardiac hypertrophy. Such a pregnancy-associated phenotype was not found in WT or corin knockout mice with a cardiac WT corin transgene. Pregnant corin knockout mice with a cardiac T555I/Q568P variant transgene developed cardiac hypertrophy similar to that in pregnant corin knockout mice. The cardiac hypertrophy persisted postpartum in corin knockout mice and was worse if the mice were mated at 6 instead of 3 months of age. There was no hypertrophy-associated decrease in cardiac function in pregnant corin knockout mice. In mice, corin deficiency causes cardiac hypertrophy during pregnancy. Replacement of cardiac WT corin, but not the T555I/Q568P variant found in blacks, rescues this phenotype, indicating a local antihypertrophic function of corin in the heart. Corin deficiency may represent an underlying mechanism in preeclampsia-associated cardiomyopathies."	"Trypsin-like serine proteases are essential in physiological processes. Studies have shown that N-glycans are important for serine protease expression and secretion, but the underlying mechanisms are poorly understood. Here, we report a common mechanism of N-glycosylation in the protease domains of corin, enteropeptidase and prothrombin in calnexin-mediated glycoprotein folding and extracellular expression. This mechanism, which is independent of calreticulin and operates in a domain-autonomous manner, involves two steps: direct calnexin binding to target proteins and subsequent calnexin binding to monoglucosylated N-glycans. Elimination of N-glycosylation sites in the protease domains of corin, enteropeptidase and prothrombin inhibits corin and enteropeptidase cell surface expression and prothrombin secretion in transfected HEK293 cells. Similarly, knocking down calnexin expression in cultured cardiomyocytes and hepatocytes reduced corin cell surface expression and prothrombin secretion, respectively. Our results suggest that this may be a general mechanism in the trypsin-like serine proteases with N-glycosylation sites in their protease domains."	"Pre-eclampsia (PE) is a chronic inflammatory disease in pregnancy, which is associated with enhanced blood coagulation and high thrombotic risk. To date, the mechanisms underlying such an association are not fully understood. Previous studies reported high levels of plasma deoxyribonucleic acid (DNA) in PE women, but the cellular source of the circulation DNA remains unknown. In this study, we tested the hypothesis that activated neutrophils undergoing cell death, also called NETosis, may be responsible for the elevated plasma DNA levels in PE women. We analysed plasma samples from non-pregnant, normal pregnant and PE women and found high levels of double-stranded DNA, myeloperoxidase (an abundant neutrophil granular enzyme) and histones (the major nucleosome proteins) in PE-derived samples, indicating increased NETosis in the maternal circulation. The high plasma DNA levels positively correlated with enhanced blood coagulation in PE women. When isolated neutrophils from normal individuals were incubated with PE-derived plasma, an elevated NETosis-stimulating activity was detected. Further experiments showed that endothelial micro-particles, but not soluble proteins, in the plasma were primarily responsible for the NETosis-stimulating activity in PE women. These results indicate that circulating micro-particles from damaged maternal endothelium are a potent stimulator for neutrophil activation and NETosis in PE women. Given the pro-coagulant and pro-thrombotic nature of granular and nuclear contents from neutrophils, enhanced systemic NETosis may represent an important mechanism underlying the hyper-coagulability and increased thrombotic risk in PE."	"Thrombophilia is a major complication in preeclampsia, a disease associated with placental hypoxia and trophoblast inflammation. Preeclampsia women are known to have increased circulating microparticles that are procoagulant, but the underlying mechanisms remain unclear. In this study, we sought to understand the mechanism connecting placental hypoxia, circulating microparticles, and thrombophilia. We analyzed protein markers on plasma microparticles from preeclampsia women and found that the increased circulating microparticles were mostly from endothelial cells. In proteomic studies, we identified HMGB1 (high-mobility group box 1), a proinflammatory protein, as a key factor from hypoxic trophoblasts in stimulating microparticle production in human umbilical vein endothelial cells. Immunodepletion or inhibition of HMGB1 in the conditioned medium from hypoxic human trophoblasts abolished the endothelial microparticle-stimulating activity. Conversely, recombinant HMGB1 stimulated microparticle production in cultured human umbilical vein endothelial cells. The microparticles from recombinant HMGB1-stimulated human umbilical vein endothelial cells promoted blood coagulation and neutrophil activation in vitro. Injection of recombinant HMGB1 in pregnant mice increased plasma endothelial microparticles and promoted blood coagulation. In preeclampsia women, elevated placental HMGB1 expression was detected and high levels of plasma HMGB1 correlated with increased plasma endothelial microparticles. Our results indicate that placental hypoxia-induced HMGB1 expression and release from trophoblasts are important mechanism underlying increased circulating endothelial microparticles and thrombophilia in preeclampsia."	"Atrial natriuretic peptide (ANP) is a cardiac hormone essential for normal blood pressure and cardiac function. Corin is a transmembrane serine protease that activates ANP. Recently, we identified proprotein convertase subtilisin/kexin-6 (PCSK6), also called PACE4, as the long-sought corin activator. Both corin and PCSK6 are expressed in cardiomyocytes, but corin activation occurs only on the cell surface. It remains unknown if cell membrane association is needed for PCSK6 to activate corin. Here we expressed corin deletion mutants in HEK293 cells to analyze the domain structures required for PCSK6-mediated activation. Our results show that soluble corin lacking the transmembrane domain was activated by PCSK6 in the conditioned medium but not intracellularly. Recombinant PCSK6 also activated the soluble corin under cell-free conditions. Moreover, PCSK6-mediated corin activation was not enhanced by cell membrane fractions. These results indicate that cell membrane association is unnecessary for PCSK6 to activate corin. Experiments with monensin that blocks PCSK6 secretion and immunostaining indicated that the soluble corin and PCSK6 were secreted via different intracellular pathways, which may explain the lack of corin activation inside the cell. We also found that the protein domains in the corin pro-peptide region were dispensable for PCSK6-mediated activation and that addition of heparan sulfate and chondroitin sulfate or treatment with heparinase or chondroitinase did not alter corin activation by PCSK6 in HEK293 cells. Together, our results provide important insights into the molecular and cellular mechanisms underlying PCSK6-mediated corin activation that is critical for cardiovascular homeostasis."	"Corin is a serine protease that activates atrial natriuretic peptide (ANP). CORIN gene variants have been reported in patients with hypertension. To date, however, the prevalence of CORIN variants in hypertensive patients remains unknown. To understand the prevalence and functional significance of CORIN variants in hypertension, we sequenced CORIN exons in 300 normal and 401 hypertensive individuals in a Chinese population and identified nine nonsynonymous variants, of which eight were not characterized previously. Among them, variants c.131A &gt; G (p.Tyr13Cys), c.376G &gt; T (p.Asp95Tyr), c.1094T &gt; G (p.Leu334Trp), and c.1667G &gt; A (p.Arg525His) occurred similarly in both normal and hypertensive individuals. Variants c1139G &gt; A (p.Arg349His), c.2689C &gt; T (p.Pro866Ser), and c.2864C &gt; T (p.Thr924Met) were found once each in hypertensive individuals. Variant c.1683G &gt; T (p.Arg530Ser) occurred preferentially in hypertensive individuals [10/401 (2.5%) vs. 1/300 (0.3%) in normal individuals; P = 0.023], which was confirmed in another independent cohort [9/368 (2.44%) in hypertensive and 2/377 (0.53%) in normal individuals; P = 0.033]. In biochemical and cell-based functional studies, variants p.Arg530Ser and p.Thr924Met, but not p.Tyr13Cys, p.Asp95Tyr, p.Leu334Trp, p.Arg349His, p.Arg525His, and p.Pro866Ser, exhibited reduced pro-ANP processing activity, which was caused by endoplasmic reticulum retention and poor zymogen activation, respectively. These results indicate that genetic variants impairing corin function are not uncommon in general populations and that such variants may be an important contributing factor in hypertension."	"Membrane-bound proteases are essential for epidermal integrity. Human airway trypsin-like protease 4 (HAT-L4) is a type II transmembrane serine protease. Currently, its biochemical property, cellular distribution and physiological function remain unknown. Here we examined HAT-L4 expression and function in vitro and in vivo. In Western analysis, HAT-L4 expressed in transfected CHO cells appeared as a 48-kDa protein. Flow cytometry confirmed HAT-L4 expression on the cell surface with the expected membrane topology. RT-PCR and immunostaining experiments indicated that HAT-L4 was expressed in epithelial cells and exocrine glands in tissues including skin, esophagus, trachea, tongue, eye, bladder, testis and uterus. In the skin, HAT-L4 expression was abundant in keratinocytes and sebaceous glands. We generated HAT-L4 knockout mice by disrupting the Tmprss11f gene encoding HAT-L4. HAT-L4 knockout mice were viable and fertile. No defects were found in HAT-L4 knockout mice in hair growth, wound healing, water repulsion and body temperature regulation. Compared with wild-type controls, HAT-L4-deficient newborn mice had greater body fluid loss and higher mortality in a trans-epidermal body fluid loss test. In metabolic studies, HAT-L4-deficient adult mice drank water more frequently than wild-type controls did. These results indicate that HAT-L4 is important in epidermal barrier function to prevent body fluid loss."	"Corin is a transmembrane protease that activates atrial natriuretic peptide (ANP), an important hormone in regulating salt-water balance and blood pressure. This review focuses on the regulation of corin function and potential roles of corin defects in hypertensive, heart, and renal diseases. Proprotein convertase subtilisin/kexin-6 has been identified as a primary enzyme that converts zymogen corin to an active protease. Genetic variants that impair corin intracellular trafficking, cell surface expression, and zymogen activation have been found in patients with hypertension, cardiac hypertrophy, and pre-eclampsia. Reduced corin expression has been detected in animal models of cardiomyopathies and in human failing hearts. Low levels of circulating soluble corin have been reported in patients with heart disease and stroke. Corin, ANP and natriuretic peptide receptor-A mRNAs, and proteins have been colocalized in human renal segments, suggesting a corin-ANP autocrine function in the kidney. Corin is a key enzyme in the natriuretic peptide system. The latest findings indicate that corin-mediated ANP production may act in a tissue-specific manner to regulate cardiovascular and renal function. Corin defects may contribute to major diseases such as hypertension, heart failure, pre-eclampsia, and kidney disease."
+"Yu, Jennifer"	"Cancer Biology"	31180366	31099638	30118510	29642487	29198941	30542674	25895709	25712125	25464848	30546944	"Radiation therapy remains one of the cornerstones of cancer management. For most cancers, it is the most effective, nonsurgical therapy to debulk tumors. Here, we describe a method to irradiate cancer cells with a linear accelerator. The advancement of linear accelerator technology has improved the precision and efficiency of radiation therapy. The biological effects of a wide range of radiation doses and dose rates continue to be an intense area of investigation. Use of linear accelerators can facilitate these studies using clinically relevant doses and dose rates."	"Following the identification of key molecular alterations that provided superior prognostication and led to the updated 2016 World Health Organization (WHO) Central Nervous System (CNS) Tumor Classification, the understanding of glioma behavior has rapidly evolved. Mutations in isocitrate dehydrogenase (IDH) 1 and 2 are present in the majority of adult grade 2 and 3 gliomas, and when used in conjunction with 1p/19q codeletion for classification, the prognostic distinction between grade 2 versus grade 3 is diminished. As such, the previously often used term of &quot;low-grade glioma,&quot; which referred to grade 2 gliomas, has now been replaced by the phrase &quot;lower-grade glioma&quot; to encompass both grade 2 and 3 tumors. Additional molecular characterization is ongoing to even further classify this heterogeneous group of tumors. With such a colossal shift in the understanding of lower-grade gliomas, management of disease is being redefined in the setting of emerging molecular-genetic biomarkers. In this article, we review recent progress and future directions regarding the surgical, radiotherapeutic, chemotherapeutic, and long-term management of adult lower-grade gliomas."	"Radiation therapy is an integral part of treatment for patients with glioblastoma. New technological advances in linear accelerators have made extra-high dose rate irradiation possible. This shortens patient treatment time significantly compared to standard dose rate irradiation, but the biologic effects of extra high dose rate irradiation are poorly understood. Glioma stem-like cells (GSCs) are resistant to standard radiation and contribute to tumor progression. Here, we assess the therapeutic effect of extra high dose rate vs. standard dose rate irradiation on GSCs. GSCs were exposed to 2, 4 and 6 Gy X-irradiation at dose rates of 4.2 Gy/min or 21.2 Gy/min (400 monitoring units (MU)/min or 2100 MU/min). We analyzed cell survival with cell growth assays, tumorsphere formation assays and colony formation assays. Cell kill and self-renewal were dependent on the total dose of radiation delivered. However, there was no difference in survival of GSCs or DNA damage repair in GSCs irradiated at different dose rates. GSCs exhibited significant G1 and G2/M phase arrest and increased apoptosis with higher doses of radiation but there was no difference between the two dose rates at each given dose. In a GSC-derived preclinical model of glioblastoma, radiation extended animal survival, but there was no difference in survival in mice receiving different dose rates of radiation. We conclude that GSCs respond to larger fractions of radiation, but extra high dose rate irradiation has no significant biologic advantage in comparison with standard dose rate irradiation."	"Neurodevelopmental programs are frequently dysregulated in cancer. Semaphorins are a large family of guidance cues that direct neuronal network formation and are also implicated in cancer. Semaphorins have two kinds of receptors, neuropilins and plexins. Besides their role in development, semaphorin signaling may promote or suppress tumors depending on their context. Sema3C is a secreted semaphorin that plays an important role in the maintenance of cancer stem-like cells, promotes migration and invasion, and may facilitate angiogenesis. Therapeutic strategies that inhibit Sema3C signaling may improve cancer control. This review will summarize the current research on the Sema3C pathway and its potential as a therapeutic target."	"Tumor hypoxia is associated with poor patient survival and is a characteristic of glioblastoma. Notch signaling is implicated in maintaining glioma stem-like cells (GSCs) within the hypoxic niche, although the molecular mechanisms linking hypoxia to Notch activation have not been clearly delineated. Here we show that Vasorin is a critical link between hypoxia and Notch signaling in GSCs. Vasorin is preferentially induced in GSCs by a HIF1α/STAT3 co-activator complex and stabilizes Notch1 protein at the cell membrane. This interaction prevents Numb from binding Notch1, rescuing it from Numb-mediated lysosomal degradation. Thus, Vasorin acts as a switch to augment Notch signaling under hypoxic conditions. Vasorin promotes tumor growth and reduces survival in mouse models of glioblastoma, and its expression correlates with increased aggression of human gliomas. These findings provide mechanistic insights into how hypoxia promotes Notch signaling in glioma and identify Vasorin as a potential therapeutic target."	"Cancer stem-like cells (CSCs) are a subset of cancer cells that are resistant to conventional radiotherapy and chemotherapy. As such, CSCs have been recognized as playing a large role in tumor initiation and recurrence. Although hyperthermia is broadly used in cancer treatment either alone or in combination with radio- or chemo-therapy, its potential to target CSCs is not well understood. In this review, we discuss different types of hyperthermia and potential mechanisms of action in cancer treatment, particularly in regards to killing CSCs."	"Radiation therapy is the most effective adjuvant treatment modality for virtually all patients with high-grade glioma. Its ability to improve patient survival has been recognized for decades. Cancer stem cells provide new insights into how tumor biology is affected by radiation and the role that this cell population can play in disease recurrence. Glioma stem cells possess a variety of intracellular mechanisms to resist and even flourish in spite of radiation, and their proliferation and maintenance appear tied to supportive stimuli from the tumor microenvironment. This chapter reviews the basis for our current use of radiation to treat high-grade gliomas, and addresses this model in the context of therapeutically resistant stem cells. We discuss the available evidence highlighting current clinical efforts to improve radiosensitivity, and newer targets worthy of further development. "	"Glioma stem-like cells (GSC) are a subpopulation of cells in tumors that are believed to mediate self-renewal and relapse in glioblastoma (GBM), the most deadly form of primary brain cancer. In radiation oncology, hyperthermia is known to radiosensitize cells, and it is reemerging as a treatment option for patients with GBM. In this study, we investigated the mechanisms of hyperthermic radiosensitization in GSCs by a phospho-kinase array that revealed the survival kinase AKT as a critical sensitization determinant. GSCs treated with radiation alone exhibited increased AKT activation, but the addition of hyperthermia before radiotherapy reduced AKT activation and impaired GSC proliferation. Introduction of constitutively active AKT in GSCs compromised hyperthermic radiosensitization. Pharmacologic inhibition of PI3K further enhanced the radiosensitizing effects of hyperthermia. In a preclinical orthotopic transplant model of human GBM, thermoradiotherapy reduced pS6 levels, delayed tumor growth, and extended animal survival. Together, our results offer a preclinical proof-of-concept for further evaluation of combined hyperthermia and radiation for GBM treatment."	"Different cancer cell compartments often communicate through soluble factors to facilitate tumor growth. Glioma stem cells (GSCs) are a subset of tumor cells that resist standard therapy to contribute to disease progression. How GSCs employ a distinct secretory program to communicate with and nurture each other over the nonstem tumor cell (NSTC) population is not well defined. Here, we show that GSCs preferentially secrete Sema3C and coordinately express PlexinA2/D1 receptors to activate Rac1/nuclear factor (NF)-κB signaling in an autocrine/paracrine loop to promote their own survival. Importantly, Sema3C is not expressed in neural progenitor cells (NPCs) or NSTCs. Disruption of Sema3C induced apoptosis of GSCs, but not NPCs or NSTCs, and suppressed tumor growth in orthotopic models of glioblastoma. Introduction of activated Rac1 rescued the Sema3C knockdown phenotype in vivo. Our study supports the targeting of Sema3C to break this GSC-specific autocrine/paracrine loop in order to improve glioblastoma treatment, potentially with a high therapeutic index. "	"Nearly half of melanoma patients develop brain metastases during the course of their disease. Despite advances in both localized radiation and systemic immunotherapy, brain metastases remain difficult to treat, with most patients surviving less than 5 months from the time of diagnosis. While both treatment regimens have individually shown considerable promise in treating metastatic melanoma, there is interest in combining these strategies to take advantage of potential synergy. In order to study the ability of local radiation and anti-PD-1 immunotherapy to induce beneficial anti-tumor immune responses against distant, unirradiated tumors, we used two mouse models of metastatic melanoma in the brain, representing BRAF mutant and non-mutant tumors. Combination treatments produced a stronger systemic anti-tumor immune response than either treatment alone. This resulted in reduced tumor growth and larger numbers of activated, cytotoxic CD8<sup>+</sup> T cells, even in the unirradiated tumor, indicative of an abscopal effect. The immune-mediated effects were present regardless of BRAF status. These data suggest that irradiation of brain metastases and anti-PD-1 immunotherapy together can induce abscopal anti-tumor responses that control both local and distant disease."
+"Zborowski, Maciej"	"Biomedical Engineering"	29104346	28230974	26911917	26368657	29353957	24811334	24141316	24910468	22952572	22500468	"Emerging microfluidic-based cell assays favor label-free red blood cell (RBC) depletion. Magnetic separation of RBC is possible because of the paramagnetism of deoxygenated hemoglobin but the process is slow for open-gradient field configurations. In order to increase the throughput, periodic arrangements of the unit magnets were considered, consisting of commercially available Nd-Fe-B permanent magnets and soft steel flux return pieces. The magnet design is uniquely suitable for multiplexing by magnet tessellation, here meaning the tiling of the magnet assembly cross-sectional plane by periodic repetition of the magnet and the flow channel shapes. The periodic pattern of magnet magnetizations allows a reduction of the magnetic material per channel with minimal distortion of the field cylindrical symmetry inside the magnet apertures. A number of such magnet patterns are investigated for separator performance, size and economy with the goal of designing an open-gradient magnetic separator capable of reducing the RBC number concentration a hundred-fold in 1 mL whole blood per hour."	"The magnetic characteristics of hemoglobin (Hb) changes with the binding of dioxygen (O2) to the heme prosthetic groups of the globin chains: from paramagnetic ferrous Hb to diamagnetic ferrous oxyhemoglobin (oxyHb) with reversibly bound O2, or paramagnetic ferric methemoglobin (metHb). When multiplied over the number of Hb molecules in a red blood cell (RBC), the effect is detectable through motion analysis of RBCs in a high magnetic field and gradient. This motion is referred to as magnetophoretic mobility, which can be conveniently expressed as a fraction of the cell sedimentation velocity. In this Article, using a previously developed and reported instrument, cell tracking velocimetry (CTV), we are able to detect difference in Hb concentration in two RBC populations to a resolution of 1 × 10<sup>7</sup> Hb molecules per cell (4 × 10<sup>7</sup> atoms of Fe per cell or 4-5 femtograms of Fe). Similar resolution achieved with inductively coupled plasma-mass spectrometry requires on the order of 10<sup>5</sup>-10<sup>6</sup> cells and provides an average, whereas CTV provides a measurement for each cell. CTV analysis revealed that RBCs lose, on average, 17% of their Hb after 42 days of storage, the maximum FDA-approved length of time for the cold storage of RBCs in additive solution. This difference in Hb concentration was the result of routine RBC storage; clinical implications are discussed."	"Conventional malaria parasite detection methods, such as rapid diagnostic tests (RDT) and light microscopy (LM), are not sensitive enough to detect low level parasites and identification of gametocytes in the peripheral blood. A modified and sensitive laboratory prototype, Magnetic Deposition Microscopy (MDM) was developed to increase the detection of sub-microscopic parasitaemia and estimation of gametocytes density in asymptomatic school children. Blood samples were collected from 303 asymptomatic school children from seven villages in Bagamoyo district in Tanzania. Participants were screened for presence of malaria parasites in the field using RDT and MDM whereas further examination of malaria parasites was done in the laboratory by LM. LM and MDM readings were used to calculate densities and estimate prevalence of asexual and sexual stages of the parasite. Plasmodium falciparum parasites (asexual and sexual stages) were detected in 23 (7.6 %), 52 (17.2 %), and 59 (19.5 %) out of 303 samples by LM, RDT and MDM respectively. Gametocytes were detected in 4 (1.3 %) and 12 (4.0 %) out of the same numbers of samples by LM, and MDM, respectively. Likewise, in vitro results conducted on two laboratory strains of P. falciparum, 3D7 and NF54 to assess MDM sensitivity on gametocytes detection and its application on concentrating gametocytes indicated that gametocytes were enriched by MDM by 10-fold higher than LM. Late stages of the parasite strains, 3D7 and NF54 were enriched by MDM by a factor of 20.5 and 35.6, respectively. MDM was more specific than LM and RDT by 87.5 % (95 %, CI 71.2-89.6 %) and 89.0 % (95 % CI 82.9-91.4) respectively. It was also found that MDM sensitivity was 62.5 % (95 % CI 49.5-71.8) when compared with RDT while with LM was 36.5 % (95 % CI 32.2-60.5). These findings provide strong evidence that MDM enhanced detection of sub-microscopic P. falciparum infections and estimation of gametocyte density compared to current malaria diagnostic tools. In addition, MDM is superior to LM in detecting sub-microscopic gametocytaemia. Therefore, MDM is a potential tool for low-level parasitaemia identification and quantification with possible application in malaria transmission research."	"Connective tissue progenitors (CTPs) are a promising therapeutic agent for bone repair. Hyaluronan, a high molecular mass glycosaminoglycan, has been shown by us to be a suitable biomarker for magnetic separation of CTPs from bone marrow aspirates in a canine model. For the therapy to be applicable in humans, the magnetic separation process requires scale-up without compromising the viability of the cells. The scaled-up device presented here utilizes a circular Halbach array of diametrically magnetized, cylindrical permanent magnets. This allows precise control of the magnetic field gradient driving the separation, with theoretical analysis favoring a hexapole field. The separation vessel has the external diameter of a 50 mL conical centrifuge tube and has an internal rod that excludes cells from around the central axis. The magnet and separation vessel (collectively dubbed the hexapole magnet separator or HMS) was tested on four human and four canine bone marrow aspirates. Each CTP-enriched cell product was tested using cell culture bioassays as surrogates for in vivo engraftment quality. The magnetically enriched cell fractions showed statistically significant, superior performance compared to the unenriched and depleted cell fractions for all parameters tested, including CTP prevalence (CTPs per 10(6) nucleated cells), proliferation by colony forming unit (CFU) counts, and differentiation by staining for the presence of osteogenic and chondrogenic cells. The simplicity and speed of the HMS operation could allow both CTP isolation and engraftment during a single surgical procedure, minimizing trauma to patients and lowering cost to health care providers. "	"Algae were investigated in the past as a potential source of biofuel and other useful chemical derivatives. Magnetic separation of algae by iron oxide nanoparticle binding to cells has been proposed by others for dewatering of cellular mass prior to lipid extraction. We have investigated feasibility of magnetic separation based on the presence of natural iron stores in the cell, such as the ferritin in Auxenochlorella protothecoides (A. p.) strains. The A. p. cell constructs were tested for inserted genes and for increased intracellular iron concentration by inductively coupled plasma atomic absorption (ICP-AA). They were grown in Sueoka's modified high salt media with added vitamin B1 and increasing concentration of soluble iron compound (FeCl3 EDTA, from 1× to 8× compared to baseline). The cell magnetic separation conditions were tested using a thin rectangular flow channel pressed against interpolar gaps of a permanent magnet forming a separation system of a well-defined fluid flow and magnetic fringing field geometry (up to 2.2 T and 1,000 T/m) dubbed &quot;magnetic deposition microscopy&quot;, or MDM. The presence of magnetic cells in suspension was detected by formation of characteristic deposition bands at the edges of the magnet interpolar gaps, amenable to optical scanning and microscopic examination. The results demonstrated increasing cellular Fe uptake with increasing Fe concentration in the culture media in wild type strain and in selected genetically-modified constructs, leading to magnetic separation without magnetic particle binding. The throughput in this study is not sufficient for an economical scale harvest."	"Circulating tumor cells have emerged as prognostic biomarkers in the treatment of metastatic cancers of epithelial origins viz., breast, colorectal and prostate. These tumors express Epithelial Cell Adhesion Molecule (EpCAM) on their cell surface which is used as an antigen for immunoaffinity capture. However, EpCAM capture technologies are of limited utility for non-epithelial cancers such as melanoma. We report a method to enrich Circulating Melanoma Cells (CMCs) that does not presuppose malignant cell characteristics. CMCs were enriched by centrifugation of blood samples from healthy (N = 10) and patient (N = 11) donors, followed by RBC lysis and immunomagnetic depletion of CD45-positive leukocytes in a specialized magnetic separator. CMCs were identified by immunocytochemistry using Melan-A or S100B as melanoma markers and enumerated using automated microscopy image analyses. Separation was optimized for maximum sensitivity and recovery of CMCs. Our results indicate large number of CMCs in Stage IV melanoma patients. Analysis of survival suggested a trend toward decreased survival with increased number of CMCs. Moreover, melanoma-associated miRs were found to be higher in CMC-enriched fractions in two patients when compared with the unseparated samples, validating this method as applicable for molecular analyses. Negative selection is a promising approach for isolation of CMCs and other EpCAM -negative CTCs, and is amenable to molecular analysis of CMCs. Further studies are required to validate its efficacy at capturing specific circulating cells for genomic analysis, and xenograft studies. "	"Emerging applications of rare cell separation and analysis, such as separation of mature red blood cells from hematopoietic cell cultures, require efficient methods of red blood cell (RBC) debulking. We have tested the feasibility of magnetic RBC separation as an alternative to centrifugal separation using an approach based on the mechanism of magnetic field-flow fractionation (MgFFF). A specially designed permanent magnet assembly generated a quadrupole field having a maximum field of 1.68 T at the magnet pole tips, zero field at the aperture axis, and a nearly constant radial field gradient of 1.75 T/mm (with a negligible angular component) inside a cylindrical aperture of 1.9 mm (diameter) and 76 mm (length). The cell samples included high-spin hemoglobin RBCs obtained by chemical conversion of hemoglobin to methemoglobin (met RBC) or by exposure to anoxic conditions (deoxy RBC), low-spin hemoglobin obtained by exposure of RBC suspension to ambient air (oxy RBC), and mixtures of deoxy RBC and cells from a KG-1a white blood cell (WBC) line. The observation that met RBCs did not elute from the channel at the lower flow rate of 0.05 mL/min applied for 15 min but quickly eluted at the subsequent higher flow rate of 2.0 mL/min was in agreement with FFF theory. The well-defined experimental conditions (precise field and flow characteristics) and a well-established FFF theory verified by studies with model cell systems provided us with a strong basis for making predictions about potential practical applications of the magnetic RBC separation. "	"The emerging applications of biological cell separation to rare circulating tumor cell (CTC) detection and separation from blood rely on efficient methods of red blood cell (RBC) debulking. The two most widely used methods of centrifugation and RBC lysis have been associated with the concomitant significant losses of the cells of interest (such as progenitor cells or circulating tumor cells). Moreover, RBC centrifugation and lysis are not well adapted to the emerging diagnostic applications, relying on microfluidics and micro-scale total analytical systems. Therefore, magnetic RBC separation appears a logical alternative considering the high iron content of the RBC (normal mean 105 fg) as compared to the white blood cell iron content (normal mean 1.6 fg). The typical magnetic forces acting on a RBC are small, however, as compared to typical forces associated with centrifugation or the forces acting on synthetic magnetic nanoparticles used in current magnetic cell separations. This requires a significant effort in designing and fabricating a practical magnetic RBC separator. Applying advanced designs to the low cost, high power permanent magnets currently available, and building on the accumulated knowledge of the immunomagnetic cell separation methods and devices, an open gradient magnetic red blood cell (RBC) sorter was designed, fabricated and tested on label-free cell mixtures, with potential applications to RBC debulking from whole blood samples intended for diagnostic tests."	"Using novel media formulations, it has been demonstrated that human placenta and umbilical cord blood-derived CD34+ cells can be expanded and differentiated into erythroid cells with high efficiency. However, obtaining mature and functional erythrocytes from the immature cell cultures with high purity and in an efficient manner remains a significant challenge. A distinguishing feature of a reticulocyte and maturing erythrocyte is the increasing concentration of hemoglobin and decreasing cell volume that results in increased cell magnetophoretic mobility (MM) when exposed to high magnetic fields and gradients, under anoxic conditions. Taking advantage of these initial observations, we studied a noninvasive (label-free) magnetic separation and analysis process to enrich and identify cultured functional erythrocytes. In addition to the magnetic cell separation and cell motion analysis in the magnetic field, the cell cultures were characterized for cell sedimentation rate, cell volume distributions using differential interference microscopy, immunophenotyping (glycophorin A), hemoglobin concentration and shear-induced deformability (elongation index, EI, by ektacytometry) to test for mature erythrocyte attributes. A commercial, packed column high-gradient magnetic separator (HGMS) was used for magnetic separation. The magnetically enriched fraction comprised 80% of the maturing cells (predominantly reticulocytes) that showed near 70% overlap of EI with the reference cord blood-derived RBC and over 50% overlap with the adult donor RBCs. The results demonstrate feasibility of label-free magnetic enrichment of erythrocyte fraction of CD34+ progenitor-derived cultures based on the presence of paramagnetic hemoglobin in the maturing erythrocytes."	"Cell motion in a magnetic field reveals the presence of intracellular paramagnetic elements, such as iron or manganese. Under controlled field and liquid media composition, such motion previously allowed us to compare the paramagnetic contribution to cell magnetic susceptibility in erythrocytes differing in the spin state of heme associated with hemoglobin. The method is now tested on cells with less obvious paramagnetic properties: cell cultures derived from human cancers to determine if the magnetophoretic mobility (MM) measurement is sufficiently sensitive to the dysregulation of the intracellular iron metabolism as suggested by reports on loss of iron homeostasis in cancer. The cell lines included hepatocellular carcinoma (Hep 3B 2.1-7 and Hep G2), promyelocytic (HL-60) and chronic myelogenous (K-562) leukemias, histiocytic lymphoma (U-937), tongue (CAL 27) and pharyngeal (Detroit 562) carcinomas, and epitheloid carcinoma (HeLa), whose MM was measured in complete media with standard and elevated soluble iron (ferric nitrate and ferric ammonium citrate), against oxy- and met-hemoglobin erythrocytes used as controls. Different cell lines responded differently to the magnetic field and the soluble iron concentrations in culture media establishing the possibility of single cell elemental analysis by magnetophoresis and magnetic cell separation based upon differences in intracellular iron concentration."
+"Zhang, Bin"	"Genomic Medicine Institute"	29735583	29444815	28327546	26494538	23709226	22745161	21795745	20817851	20007547	19183188	"The LMAN1-MCFD2 complex serves as a cargo receptor for efficient transport of factor V (FV) and FVIII from the endoplasmic reticulum (ER) to the Golgi. Genetic deficiency of LMAN1 or MCFD2 in humans results in the moderate bleeding disorder combined FV and FVIII deficiency, with a similar phenotype previously observed in LMAN1-deficient mice. We now report that MCFD2-deficient mice generated by gene targeting also demonstrate reduced plasma FV and FVIII, with levels lower than those in LMAN1-deficient mice, similar to previous observations in LMAN1- and MCDF2-deficient humans. Surprisingly, FV and FVIII levels in doubly deficient mice match the higher levels observed in LMAN1-deficient mice. In contrast to the strain-specific partial lethality previously observed in LMAN1-null mice, MCFD2-null mice demonstrate normal survival in different genetic backgrounds, although doubly deficient mice exhibit partial embryonic lethality comparable to LMAN1-deficient mice. These results suggest that an alternative pathway is responsible for FV/FVIII secretion in doubly deficient mice and distinct cargo-specific functions for LMAN1 and MCFD2 within the ER-to-Golgi secretory pathway. We also observed decreased plasma levels of α1-antitrypsin (AAT) in male mice for all 3 groups of deficient mice. Comparable accumulation of AAT was observed in hepatocyte ER of singly and doubly deficient mice, demonstrating a role for LMAN1 and MCFD2 in efficient ER exit of AAT."	"N-glycosylation is a common posttranslational modification of secreted and membrane proteins, catalyzed by the two enzymatic isoforms of the oligosaccharyltransferase, STT3A and STT3B. Missense mutations are the most common mutations in inherited diseases; however, missense mutations that generate extra, non-native N-glycosylation sites have not been well characterized. Coagulation factor VIII (FVIII) contains five consensus N-glycosylation sites outside its functionally dispensable B domain. We developed a computer program that identified hemophilia A mutations in FVIII that can potentially create ectopic glycosylation sites. We determined that 18 of these ectopic sites indeed become N-glycosylated. These sites span the domains of FVIII and are primarily associated with a severe disease phenotype. Using STT3A and STT3B knockout cells, we determined that ectopic glycosylation exhibited different degrees of dependence on STT3A and STT3B. By separating the effects of ectopic N-glycosylation from those due to underlying amino acid changes, we showed that ectopic glycans promote the secretion of some mutants, but impair the secretion of others. However, ectopic glycans that enhanced secretion could not functionally replace a native N-glycan in the same domain. Secretion-deficient mutants, but not mutants with elevated secretion levels, show increased association with the endoplasmic reticulum chaperones BiP (immunoglobulin heavy chain-binding protein) and calreticulin. Though secreted to different extents, all studied mutants exhibited lower relative activity than wild-type FVIII. Our results reveal differential impacts of ectopic N-glycosylation on FVIII folding, trafficking and activity, which highlight complex disease-causing mechanisms of FVIII missense mutations. Our findings are relevant to other secreted and membrane proteins with mutations that generate ectopic N-glycans."	"Missense mutation is the most common mutation type in hemophilia. However, the majority of missense mutations remain uncharacterized. Here we characterize how hemophilia mutations near the unused N-glycosylation site of the A2 domain (N582) of FVIII affect protein conformation and intracellular trafficking. N582 is located in the middle of a short 310-helical turn (D580-S584), in which most amino acids have multiple hemophilia mutations. All 14 missense mutations found in this 310-helix reduced secretion levels of the A2 domain and full-length FVIII. Secreted mutants have decreased activities relative to WT FVIII. Selected mutations also lead to partial glycosylation of N582, suggesting that rapid folding of local conformation prevents glycosylation of this site in wild-type FVIII. Protease sensitivity, stability and degradation of the A2 domain vary among mutants, and between non-glycosylated and glycosylated species of the same mutant. Most of the mutants interact with the ER chaperone BiP, while only mutants with aberrant glycosylation interact with calreticulin. Our results show that the short 310-helix from D580 to S584 is critical for proper biogenesis of the A2 domain and FVIII, and reveal a range of molecular mechanisms by which FVIII missense mutations lead to moderate to severe hemophilia A."	"COPII (coat protein complex-II) vesicles transport proteins from the endoplasmic reticulum (ER) to the Golgi. Higher eukaryotes have two or more paralogs of most COPII components. Here we characterize mice deficient for SEC23A and studied interactions of Sec23a null allele with the previously reported Sec23b null allele. SEC23A deficiency leads to mid-embryonic lethality associated with defective development of extraembryonic membranes and neural tube opening in midbrain. Secretion defects of multiple collagen types are observed in different connective tissues, suggesting that collagens are primarily transported in SEC23A-containing vesicles in these cells. Other extracellular matrix proteins, such as fibronectin, are not affected by SEC23A deficiency. Intracellular accumulation of unsecreted proteins leads to strong induction of the unfolded protein response in collagen-producing cells. No collagen secretion defects are observed in SEC23B deficient embryos. We report that E-cadherin is a cargo that accumulates in acini of SEC23B deficient pancreas and salivary glands. Compensatory increase of one paralog is observed in the absence of the second paralog. Haploinsufficiency of the remaining Sec23 paralog on top of homozygous inactivation of the first paralog leads to earlier lethality of embryos. Our results suggest that mammalian SEC23A and SEC23B transport overlapping yet distinct spectra of cargo in vivo. "	"LMAN1 (ERGIC-53) is a key mammalian cargo receptor responsible for the export of a subset of glycoproteins from the endoplasmic reticulum. Together with its soluble coreceptor MCFD2, LMAN1 transports coagulation factors V (FV) and VIII (FVIII). Mutations in LMAN1 or MCFD2 cause the genetic bleeding disorder combined deficiency of FV and FVIII (F5F8D). The LMAN1 carbohydrate recognition domain (CRD) binds to both glycoprotein cargo and MCFD2 in a Ca(2+)-dependent manner. To understand the biochemical basis and regulation of LMAN1 binding to glycoprotein cargo, we solved crystal structures of the LMAN1-CRD bound to Man-α-1,2-Man, the terminal carbohydrate moiety of high mannose glycans. Our structural data, combined with mutagenesis and in vitro binding assays, define the central mannose-binding site on LMAN1 and pinpoint histidine 178 and glycines 251/252 as critical residues for FV/FVIII binding. We also show that mannobiose binding is relatively independent of pH in the range relevant for endoplasmic reticulum-to-Golgi traffic, but is sensitive to lowered Ca(2+) concentrations. The distinct LMAN1/MCFD2 interaction is maintained at these lowered Ca(2+) concentrations. Our results suggest that compartmental changes in Ca(2+) concentration regulate glycoprotein cargo binding and release from the LMAN1·MCFD2 complex in the early secretory pathway. "	"In eukaryotic cells, newly synthesized secretory proteins require COPII (coat protein complex II) to exit the endoplasmic reticulum (ER). COPII contains five core components: SAR1, SEC23, SEC24, SEC13, and SEC31. SEC23 is a GTPase-activating protein that activates the SAR1 GTPase and also plays a role in cargo recognition. Missense mutations in the human COPII paralogues SEC23A and SEC23B result in craniolenticulosutural dysplasia and congenital dyserythropoietic anemia type II, respectively. We now report that mice completely deficient for SEC23B are born with no apparent anemia phenotype, but die shortly after birth, with degeneration of professional secretory tissues. In SEC23B-deficient embryonic pancreas, defects occur in exocrine and endocrine tissues shortly after differentiation. Pancreatic acini are completely devoid of zymogen granules, and the ER is severely distended. Similar ultrastructural alterations are also observed in salivary glands, but not in liver. Accumulation of proteins in the ER lumen activates the proapoptotic pathway of the unfolded protein response, suggesting a central role for apoptosis in the degeneration of these tissues in SEC23B-deficient embryos. Although maintenance of the secretory pathway should be required by all cells, our findings reveal a surprising tissue-specific dependence on SEC23B for the ER exit of highly abundant cargo, with high levels of SEC23B expression observed in professional secretory tissues. The disparate phenotypes in mouse and human could result from residual SEC23B function associated with the hypomorphic mutations observed in humans, or alternatively, might be explained by a species-specific shift in function between the closely related SEC23 paralogues."	"The type 1-transmembrane protein LMAN1 (ERGIC-53) forms a complex with the soluble protein MCFD2 and cycles between the endoplasmic reticulum (ER) and the ER-Golgi intermediate compartment (ERGIC). Mutations in either LMAN1 or MCFD2 cause the combined deficiency of factor V (FV) and factor VIII (FVIII; F5F8D), suggesting an ER-to-Golgi cargo receptor function for the LMAN1-MCFD2 complex. Here we report the analysis of LMAN1-deficient mice. Levels of plasma FV and FVIII, and platelet FV, are all reduced to ∼ 50% of wild-type in Lman1(-/-) mice, compared with the 5%-30% levels typically observed in human F5F8D patients. Despite previous reports identifying cathepsin C, cathepsin Z, and α1-antitrypsin as additional potential cargoes for LMAN1, no differences were observed between wild-type and Lman1(-/-) mice in the levels of cathepsin C and cathepsin Z in liver lysates or α1-antitrypsin levels in plasma. LMAN1 deficiency had no apparent effect on COPII-coated vesicle formation in an in vitro assay. However, the ER in Lman1(-/-) hepatocytes is slightly distended, with significant accumulation of α1-antitrypsin and GRP78. An unexpected, partially penetrant, perinatal lethality was observed for Lman1(-/-) mice, dependent on the specific inbred strain genetic background, suggesting a potential role for other, as yet unidentified LMAN1-dependent cargo proteins."	"The LMAN1-MCFD2 (lectin, mannose binding 1/multiple coagulation factor deficiency protein 2) cargo receptor complex transports coagulation factors V (FV) and VIII (FVIII) from the endoplasmic reticulum (ER) to the ER-Golgi intermediate compartment (ERGIC). LMAN1 (ERGIC-53) is a hexameric transmembrane protein with a carbohydrate recognition domain (CRD) on the ER luminal side. Here, we show that mutations in the first beta sheet of the CRD abolish MCFD2 binding without affecting the mannose binding, suggesting that LMAN1 interacts with MCFD2 through its N-terminal beta sheet, consistent with recently reported crystal structures of the CRD-MCFD2 complex. Mutations in the Ca(2+)- and sugar-binding sites of the CRD disrupt FV and FVIII interactions, without affecting MCFD2 binding. This interaction is independent of MCFD2, as LMAN1 mutants defective in MCFD2 binding can still interact with FVIII. Thus, the CRD of LMAN1 contains distinct, separable binding sites for both its partner protein (MCFD2) and the cargo proteins (FV/FVIII). Monomeric LMAN1 mutants are defective in ER exit and unable to interact with MCFD2, suggesting that the oligomerization of LMAN1 is necessary for its cargo receptor function. These results point to a central role of LMAN1 in regulating the binding in the ER and the subsequent release in the ERGIC of FV and FVIII."	"Combined deficiency of factor V and factor VIII (F5F8D) is a bleeding disorder caused by mutations in either LMAN1 or MCFD2. LMAN1 (ERGIC-53) and MCFD2 form a Ca(2+)-dependent cargo receptor that cycles between the endoplasmic reticulum (ER) and the ER-Golgi intermediate compartment for efficient transport of FV/FVIII from the ER to the Golgi. Here we show that the C-terminal EF-hand domains are both necessary and sufficient for MCFD2 to interact with LMAN1. MCFD2 with a deletion of the entire N-terminal non-EF hand region still retains the LMAN1-binding function. Deletions that disrupt core structure of the EF-hand domains abolish LMAN1 binding. Circular dichroism spectroscopy studies on missense mutations localized to different structural elements of the EF-hand domains suggest that Ca(2+)-induced folding is important for LMAN1 interaction. The EF-hand domains also mediate the interaction with FV and FVIII. However, mutations in MCFD2 that disrupt the tertiary structure and abolish LMAN1 binding still retain the FV/FVIII binding activities, suggesting that this interaction is independent of Ca(2+)-induced folding of the protein. Our results suggest that the EF-hand domains of MCFD2 contain separate binding sites for LMAN1 and FV/FVIII that are essential for cargo receptor formation and cargo loading in the ER."	"Combined deficiency of factor V (FV) and factor VIII (FVIII) (F5F8D) is a genetic disorder characterized by mild-to-moderate bleeding and coordinate reduction in plasma FV and FVIII levels, as well as platelet FV level. Recent studies identified mutations in two genes (LMAN1 and MCFD2) as the cause of F5F8D. Though clinically indistinguishable, MCFD2 mutations generally exhibit lower levels of FV and FVIII than LMAN1 mutations. LMAN1 is a mannose-specific lectin that cycles between the endoplasmic reticulum (ER) and the ER-Golgi intermediate compartment. MCFD2 is an EF-hand domain protein that forms a calcium-dependent heteromeric complex with LMAN1 in cells. Missense mutations in the EF-hand domains of MCFD2 abolish the interaction with LMAN1. The LMAN1-MCFD2 complex may serve as a cargo receptor for the ER-to-Golgi transport of FV and FVIII, and perhaps a number of other glycoproteins. The B domain of FVIII may be important in mediating its interaction with the LMAN1-MCFD2 complex."
+"Zhao, Jianjun"	"Cancer Biology"	30596388	29632340	24676133	26249174	26005854	24599134	22983447	22914623	22689860	20966935	"The single-wall carbon nanotube (SWCNT) is a new type of nanoparticle, which has been used to deliver multiple kinds of drugs into cells, such as proteins, oligonucleotides, and synthetic small-molecule drugs. The SWCNT has customizable dimensions, a large superficial area, and can flexibly bind with drugs through different modifications on its surface; therefore, it is an ideal system to transport drugs into cells. Long noncoding RNAs (lncRNAs) are a cluster of noncoding RNA longer than 200 nt, which cannot be translated to protein but play an important role in biological and pathophysiological processes. Metastasis-associated lung adenocarcinoma transcript 1 (MALAT1) is a highly conserved lncRNA. It was demonstrated that higher MALAT1 levels are related to the poor prognosis of various cancers, including multiple myeloma (MM). We have revealed that MALAT1 regulates DNA repair and cell death in MM; thus, MALAT1 can be considered as a therapeutic target for MM. However, the efficient delivery of the antisense oligo to inhibit/knockdown MALAT1 in vivo is still a problem. In this study, we modify the SWCNT with PEG-2000 and conjugate an anti-MALAT1 oligo to it, test the delivery of this compound in vitro, inject it intravenously into a disseminated MM mouse model, and observe a significant inhibition of MM progression, which indicates that SWCNT is an ideal delivery shuttle for anti-MALAT1 gapmer DNA."	"Metastasis-associated lung adenocarcinoma transcript 1 (MALAT1) is a highly conserved long non-coding RNA (lncRNA). Overexpression of MALAT1 has been demonstrated to related to poor prognosis of multiple myeloma (MM) patients. Here, we demonstrated that MALAT1 plays important roles in MM DNA repair and cell death. We found bone marrow plasma cells from patients with monoclonal gammopathy of undetermined significance (MGUS) and MM express elevated MALAT1 and involve in alternative non-homozygous end joining (A-NHEJ) pathway by binding to PARP1 and LIG3, two key components of the A-NHEJ protein complex. Degradation of the MALAT1 RNA by RNase H using antisense gapmer DNA oligos in MM cells stimulated poly-ADP-ribosylation of nuclear proteins, defected the DNA repair pathway, and further provoked apoptotic pathways. Anti-MALAT1 therapy combined with PARP1 inhibitor or proteasome inhibitor in MM cells showed a synergistic effect in vitro. Furthermore, using novel single-wall carbon nanotube (SWCNT) conjugated with anti-MALAT1 oligos, we successfully knocked-down MALAT1 RNA in cultured MM cell lines and xenograft murine models. Most importantly, anti-MALAT1 therapy induced DNA damage and cell apoptosis in vivo, indicating that MALAT1 could serve as a potential novel therapeutic target for MM treatment."	"MicroRNA (miRNA)-related single nucleotide polymorphisms (miR-SNPs) can affect cancer development, treatment efficacy and patients prognosis. We examined 6 miR-SNPs in miRNA processing machinery genes including exportin 5 (XPO5) (rs11077), Ran-GTPase (RAN) (rs14035), Dicer (rs3742330), Trinucleotide Repeat Containing 6B (TNRC6B) (rs9623117), GEMIN3 (rs197412), GEMIN4 (rs2740348) in 108 surgically resected HCC patients and evaluated the impact of these miR-SNPs on HCC outcome. Among the 6 SNPs, only the A/A genotype of rs11077 located in XPO5 3'UTR was identified to associated independently with worse survival in HCC patients by multivariate analysis with relative risk, 0.395; 95% CI, 0.167-0.933; p = 0.034. This is the first study reporting that polymorphisms related to miRSNPs have prognostic value in hepatocellular carcinoma and identify the A/A genotype of rs11077 SNP site located in XPO5 3'UTR can help to predict worse prognosis in patients."	"Despite recent therapeutic advances that have doubled the median survival time of patients with multiple myeloma, intratumor genetic heterogeneity contributes to disease progression and emergence of drug resistance. miRNAs are noncoding small RNAs that play important roles in the regulation of gene expression and have been implicated in cancer progression and drug resistance. We investigated the role of the miR-221-222 family in dexamethasone-induced drug resistance in multiple myeloma using the isogenic cell lines MM1R and MM1S, which represent models of resistance and sensitivity, respectively. Analysis of array comparative genome hybridization data revealed gain of chromosome X regions at band p11.3, wherein the miR-221-222 resides, in resistant MM1R cells but not in sensitive MM1S cells. DNA copy number gains in MM1R cells were associated with increased miR-221-222 expression and downregulation of p53-upregulated modulator of apoptosis (PUMA) as a likely proapoptotic target. We confirmed PUMA mRNA as a direct target of miR-221-222 in MM1S and MM1R cells by both gain-of-function and loss-of-function studies. In addition, miR-221-222 treatment rendered MM1S cells resistant to dexamethasone, whereas anti-miR-221-222 partially restored the dexamethasone sensitivity of MM1R cells. These studies have uncovered a role for miR-221-222 in multiple myeloma drug resistance and suggest a potential therapeutic role for inhibitors of miR-221-222 binding to PUMA mRNA as a means of overcoming dexamethasone resistance in patients. The clinical utility of this approach is predicated on the ability of antisense miR-221-222 to increase survival while reducing tumor burden and is strongly supported by the metastatic propensity of MM1R cells in preclinical mouse xenograft models of multiple myeloma. Moreover, our observation of increased levels of miR-221-222 with decreased PUMA expression in multiple myeloma cells from patients at relapse versus untreated controls suggests an even broader role for miR-221-222 in drug resistance and provides a rationale for the targeting of miR-221-222 as a means of improving patient outcomes."	"B cell malignancies frequently colonize the bone marrow. The mechanisms responsible for this preferential homing are incompletely understood. Here we studied multiple myeloma (MM) as a model of a terminally differentiated B cell malignancy that selectively colonizes the bone marrow. We found that extracellular CyPA (eCyPA), secreted by bone marrow endothelial cells (BMECs), promoted the colonization and proliferation of MM cells in an in vivo scaffold system via binding to its receptor, CD147, on MM cells. The expression and secretion of eCyPA by BMECs was enhanced by BCL9, a Wnt-β-catenin transcriptional coactivator that is selectively expressed by these cells. eCyPA levels were higher in bone marrow serum than in peripheral blood in individuals with MM, and eCyPA-CD147 blockade suppressed MM colonization and tumor growth in the in vivo scaffold system. eCyPA also promoted the migration of chronic lymphocytic leukemia and lymphoplasmacytic lymphoma cells, two other B cell malignancies that colonize the bone marrow and express CD147. These findings suggest that eCyPA-CD147 signaling promotes the bone marrow homing of B cell malignancies and offer a compelling rationale for exploring this axis as a therapeutic target for these malignancies. "	"Wnt/β-catenin signaling underlies the pathogenesis of a broad range of human cancers, including the deadly plasma cell cancer multiple myeloma. In this study, we report that downregulation of the tumor suppressor microRNA miR-30-5p is a frequent pathogenetic event in multiple myeloma. Evidence was developed that miR-30-5p downregulation occurs as a result of interaction between multiple myeloma cells and bone marrow stromal cells, which in turn enhances expression of BCL9, a transcriptional coactivator of the Wnt signaling pathway known to promote multiple myeloma cell proliferation, survival, migration, drug resistance, and formation of multiple myeloma cancer stem cells. The potential for clinical translation of strategies to re-express miR-30-5p as a therapeutic approach was further encouraged by the capacity of miR-30c and miR-30 mix to reduce tumor burden and metastatic potential in vivo in three murine xenograft models of human multiple myeloma without adversely affecting associated bone disease. Together, our findings offer a preclinical rationale to explore miR-30-5p delivery as an effective therapeutic strategy to eradicate multiple myeloma cells in vivo."	"miRs play a critical role in tumor pathogenesis as either oncogenes or tumor-suppressor genes. However, the role of miRs and their regulation in response to proteasome inhibitors in multiple myeloma (MM) is unclear. In the current study, miR profiling in proteasome inhibitor MLN2238-treated MM.1S MM cells shows up-regulation of miR33b. Mechanistic studies indicate that the induction of miR33b is predominantly via transcriptional regulation. Examination of miR33b in patient MM cells showed a constitutively low expression. Overexpression of miR33b decreased MM cell viability, migration, colony formation, and increased apoptosis and sensitivity of MM cells to MLN2238 treatment. In addition, overexpression of miR33b or MLN2238 exposure negatively regulated oncogene PIM-1 and blocked PIM-1 wild-type, but not PIM-1 mutant, luciferase activity. Moreover, PIM-1 overexpression led to significant abrogation of miR33b- or MLN2238-induced cell death. SGI-1776, a biochemical inhibitor of PIM-1, triggered apoptosis in MM. Finally, overexpression of miR33b inhibited tumor growth and prolonged survival in both subcutaneous and disseminated human MM xenograft models. Our results show that miR33b is a tumor suppressor that plays a role during MLN2238-induced apoptotic signaling in MM cells, and these data provide the basis for novel therapeutic strategies targeting miR33b in MM."	"Deregulated Wnt/β-catenin signaling underlies the pathogenesis of a broad range of human cancers, yet the development of targeted therapies to disrupt the resulting aberrant transcription has proved difficult because the pathway comprises large protein interaction surfaces and regulates many homeostatic functions. Therefore, we have directed our efforts toward blocking the interaction of β-catenin with B cell lymphoma 9 (BCL9), a co-activator for β-catenin-mediated transcription that is highly expressed in tumors but not in the cells of origin. BCL9 drives β-catenin signaling through direct binding mediated by its α-helical homology domain 2. We developed a stabilized α helix of BCL9 (SAH-BCL9), which we show targets β-catenin, dissociates native β-catenin/BCL9 complexes, selectively suppresses Wnt transcription, and exhibits mechanism-based antitumor effects. SAH-BCL9 also suppresses tumor growth, angiogenesis, invasion, and metastasis in mouse xenograft models of Colo320 colorectal carcinoma and INA-6 multiple myeloma. By inhibiting the BCL9-β-catenin interaction and selectively suppressing oncogenic Wnt transcription, SAH-BCL9 may serve as a prototype therapeutic agent for cancers driven by deregulated Wnt signaling."	"Bruton tyrosine kinase (Btk) has a well-defined role in B-cell development, whereas its expression in osteoclasts (OCs) further suggests a role in osteoclastogenesis. Here we investigated effects of PCI-32765, an oral and selective Btk inhibitor, on osteoclastogenesis as well as on multiple myeloma (MM) growth within the BM microenvironment. PCI-32765 blocked RANKL/M-CSF-induced phosphorylation of Btk and downstream PLC-γ2 in OCs, resulting in diminished TRAP5b (ED50 = 17 nM) and bone resorption activity. PCI-32765 also inhibited secretion of multiple cytokines and chemokines from OC and BM stromal cell cultures from both normal donors (ED50 = 0.5 nM) and MM patients. It decreased SDF-1-induced migration of MM cells, and down-regulated MIP1-α/CCL3 in MM cells. It also blocked MM cell growth and survival triggered by IL-6 or coculture with BM stromal cells or OCs in vitro. Importantly, PCI-32765 treatment significantly inhibits in vivo MM cell growth (P &lt; .03) and MM cell-induced osteolysis of implanted human bone chips in SCID mice. Moreover, PCI-32765 prevents in vitro colony formation by stem-like cells from MM patients. Together, these results delineate functional sequelae of Btk activation mediating osteolysis and growth of MM cells, supporting evaluation of PCI-32765 as a novel therapeutic in MM."	"B-cell lymphoma 6 (BCL6) and PR domain containing 1 (PRDM1) are considered as master regulators for germinal center (GC) formation and terminal B-cell differentiation. Dysregulation of BCL6 and PRDM1 has been associated with lymphomagenesis. Here, we show for the first time that direct cell-cell contact between follicular dendritic cells (FDC) and B-lymphocytes, by influencing the expression of a set of microRNAs (miRNAs), regulates the expression of BCL6 and PRDM1. We identify that, on cell adhesion to FDC, FDC induces upregulation of PRDM1 expression through downregulation of miR-9 and let-7 families and induces downregulation of BCL-6 through upregulation of miR-30 family in B-lymphocytes and lymphoma cells. We further demonstrate that the miR-30 family directly controls BCL-6 expression and miR-9-1 and let-7a directly control PRDM-1 expression through targeting their 3'UTR, mediating the FDC effect. Our studies define a novel regulatory mechanism in which the FDC, through induction of miRNAs in B-lymphocytes, orchestrates the regulation of transcription factors, promotes germinal center B-cell survival and differentiation. Dysregulation of miRNAs may interfere with B-cell survival and maturation, thus representing a novel molecular mechanism, as well as a potential therapeutic target in B-cell lymphomas."
+"Zutshi, Massarat"	"Biomedical Engineering"	29112569	28785819	28267010	27050606	24797828	23147650	23135588	22564198	22006493	21895926	"Regenerating muscle at a time remote from injury requires re-expression of cytokines to attract stem cells to start and sustain the process of repair. We aimed to evaluate the sustainability of muscle regeneration after treatment with a nonviral plasmid expressing stromal cell-derived factor 1. This was a randomized study. The study was conducted with animals in a single research facility. Fifty-six female age-/weight-matched Sprague-Dawley rats underwent excision of the ventral half of the anal sphincter complex. Three weeks later, rats were randomly allocated (n = 8) to one of the following groups: no treatment, 100 μg of plasmid encoding stromal cell-derived factor 1 injected locally, local injection of plasmid and 8 × 10 bone marrow-derived mesenchymal stem cells, and plasmid encoding stromal cell-derived factor 1 injected locally with injection of a gelatin scaffold mixed with bone marrow-derived mesenchymal stem cells. Anal manometry, histology, immunohistochemistrym and morphometry were performed 8 weeks after treatment. Protein expression of cytokines CXCR4 and Myf5 was investigated 1 week after treatment (n = 6 per group). ANOVA was used, with p &lt; 0.0083 indicating significant differences for anal manometry and p &lt; 0.05 for all other statistical analysis. Eight weeks after treatment, all of the groups receiving the plasmid had significantly higher anal pressures than controls and more organized muscle architecture in the region of the defect. Animals receiving plasmid alone had significantly greater muscle in the defect (p = 0.03) than either animals with injury alone (p = 0.02) or those receiving the plasmid, cells, and scaffold (p = 0.03). Both smooth and skeletal muscles were regenerated significantly more after plasmid treatment. There were no significant differences in the protein levels of CXCR4 or Myf5. The study was limited by its small sample size and because stromal cell-derived factor 1 was not blocked. A plasmid expressing stromal cell-derived factor 1 may be sufficient to repair an injured anal sphincter even long after the injury and in the absence of mesenchymal stem cell or scaffold treatments. See Video Abstract at http://links.lww.com/DCR/A451."	"For patients with rectal prolapse undergoing Ventral Rectopexy (VR), the impact of prior prolapse surgery on prolapse recurrence is not well described. The purpose of this study was to compare recurrence rates after VR in patients undergoing primary and repeat rectal prolapse repairs. This study is a prospective cohort study. IRB-approved prospective data registry of consecutive patients undergoing VR for full-thickness external rectal prolapse between 2009 and 2015. Rectal prolapse recurrence was defined as either external prolapse through the anal sphincters or symptomatic rectal mucosa prolapse warranting additional surgery. Preoperative and postoperative morbidity and functional outcomes were analyzed. Actuarial recurrence rates were calculated using the Kaplan-Meier method. A total of 108 VRs were performed during the study period. Seventy-two were primary and 36 repeat repairs. Seven cases were open, 23 laparoscopic, and 78 robotic. Six cases were converted from laparoscopic/robotic to open. In 63 patients, VR was combined with gynecological procedures. There were no statistical differences between primary or recurrent prolapse for the following: demographics, operative time, concomitant gynecologic procedures, complications, blood loss, and graft material type. Length of stay was longer in patients with a history of prior prolapse surgery (p = 0.01). Prolapse recurrence rates for primary repairs were reported at 1.4, 6.9, and 9.7% and for recurrent prolapse procedures 13.9, 25, and 25% at 1, 3, and 5 years (p = 0.13). Mean length of follow-up was similar between groups. Time to recurrence was significantly shorter in patients undergoing repeat prolapse surgery 8.8 vs 30.7 months (p = 0.03). VR is a better option for patients undergoing primary rectal prolapse repair."	"Healing of an anal sphincter defect at a time distant from injury is a challenge. We aimed to investigate whether re-establishing stem cell homing at the site of an anal sphincter defect when cytokine expression has declined using a plasmid engineered to express stromal derived factor 1 with or without mesenchymal stem cells can improve anatomic and functional outcome. This was a randomized animal study. Thirty-two female age- and weight-matched Sprague Dawley rats underwent 50% excision of the anal sphincter complex. Three weeks after injury, 4 interventions were randomly allocated (n = 8), including no intervention, 100-μg plasmid, plasmid and 800,000 cells, and plasmid with a gelatin scaffold mixed with cells. The differences in anal sphincter resting pressures just before and 4 weeks after intervention were used for functional analysis. Histology was analyzed using Masson staining. One-way ANOVA followed by the Tukey post hoc test was used for pressure and histological analysis. All 3 of the intervention groups had a significantly greater change in resting pressure (plasmid p = 0.009; plasmid + cells p = 0.047; plasmid + cells in scaffold p = 0.009) compared with the control group. The plasmid-with-cells group showed increased organization of muscle architecture and increased muscle percentage, whereas the control group showed disorganized architecture at the site of the defect. Histological quantification revealed significantly more muscle at the site of defect in the plasmid-plus-cells group compared with the control group, which had the least muscle. Quantification of connective tissue revealed significantly less fibrosis at the site of defect in the plasmid and plasmid-plus-cells groups compared with the control group. Midterm evaluation and muscle morphology were not defined. At this midterm follow-up, local delivery of a stromal derived factor 1 plasmid with or without local mesenchymal stem cells enhanced anal sphincter muscle regeneration long after an anal sphincter injury, thereby improving functional outcome. See Video Abstract at http://links.lww.com/DCR/A324."	"We have explored cell-based therapy to aid anal sphincter repair, but a conditioning injury is required to direct stem cells to the site of injury because symptoms usually manifest at a time remote from injury. We aimed to investigate the effect of local electrical stimulation followed by mesenchymal stem cell delivery on anal sphincter regeneration at a time remote from injury. With the use of a rat model, electrical stimulation parameters and cell delivery route were selected based on in vivo cytokine expression and luciferase-labeled cell imaging of the anal sphincter complex. Three weeks after a partial anal sphincter excision, rats were randomly allocated to 4 groups based on different local interventions: no treatment, daily electrical stimulation for 3 days, daily stimulation for 3 days followed by stem cell injection on the third day, and daily electrical stimulation followed by stem cell injection on the first and third days. Histology-assessed anatomy and anal manometry evaluated physiology 4 weeks after intervention. The electrical stimulation parameters that significantly upregulated gene expression of homing cytokines also achieved mesenchymal stem cell retention when injected directly in the anal sphincter complex in comparison with intravascular and intraperitoneal injections. Four weeks after intervention, there was significantly more new muscle in the area of injury and significantly improved anal resting pressure in the group that received daily electrical stimulation for 3 days followed by a single injection of 1 million stem cells on the third day at the site of injury. This was a pilot study and therefore was not powered for functional outcome. In this rat injury model with optimized parameters, electrical stimulation with a single local mesenchymal stem cell injection administered 3 weeks after injury significantly improved both new muscle formation in the area of injury and anal sphincter pressures."	"This research demonstrates the regenerative effects of mesenchymal stem cells (MSCs) on the injured anal sphincter by comparing anal sphincter pressures following intramuscular and serial intravascular MSC infusion in a rat model of anal sphincter injury. Fifty rats were divided into injury (n = 35) and no injury (NI; n = 15) groups. Each group was further divided into i.m., serial i.v., or no-treatment (n = 5) groups and followed for 5 weeks. The injury consisted of an excision of 25% of the anal sphincter complex. Twenty-four hours after injury, 5 × 10(5) green fluorescent protein-labeled MSCs in 0.2 ml of phosphate-buffered saline (PBS) or PBS alone (sham) were injected into the anal sphincter for i.m. treatment; i.v. and sham i.v. treatments were delivered daily for 6 consecutive days via the tail vein. Anal pressures were recorded before injury and 10 days and 5 weeks after treatment. Ten days after i.m. MSC treatment, resting and peak pressures were significantly increased compared with those in sham i.m. treatment (p &lt; .001). When compared with the NI group, the injury groups had anal pressures that were not significantly different 5 weeks after i.m./i.v. treatment. Both resting and peak pressures were also significantly increased after i.m./i.v. MSC treatment compared with treatment with PBS (p &lt; .001), suggesting recovery. Statistical analysis was done using paired t test with Bonferroni correction. Marked decrease in fibrosis and scar tissue was seen in both MSC-treated groups. Both i.m. and i.v. MSC treatment after injury caused an increase in anal pressures sustained at 5 weeks, although fewer cells were injected i.m. The MSC-treated groups showed less scarring than the PBS-treated groups, with the i.v. infusion group showing the least scarring. "	"Fecal incontinence reduces the quality of life of many women but has no long-term cure. Research on mesenchymal stem cell (MSC)-based therapies has shown promising results. The primary aim of this study was to evaluate functional recovery after treatment with MSCs in two animal models of anal sphincter injury. Seventy virgin female rats received a sphincterotomy (SP) to model episiotomy, a pudendal nerve crush (PNC) to model the nerve injuries of childbirth, a sham SP, or a sham PNC. Anal sphincter pressures and electromyography (EMG) were recorded after injury but before treatment and 10 days after injury. Twenty-four hours after injury, each animal received either 0.2 ml saline or 2 million MSCs labelled with green fluorescing protein (GFP) suspended in 0.2 ml saline, either intravenously (IV) into the tail vein or intramuscularly (IM) into the anal sphincter. MSCs delivered IV after SP resulted in a significant increase in resting anal sphincter pressure and peak pressure, as well as anal sphincter EMG amplitude and frequency 10 days after injury. MSCs delivered IM after SP resulted in a significant increase in resting anal sphincter pressure and anal sphincter EMG frequency but not amplitude. There was no improvement in anal sphincter pressure or EMG with in animals receiving MSCs after PNC. GFP-labelled cells were not found near the external anal sphincter in MSC-treated animals after SP. MSC treatment resulted in significant improvement in anal pressures after SP but not after PNC, suggesting that MSCs could be utilized to facilitate recovery after anal sphincter injury."	"Stimulation of the pudendal nerve or the anal sphincter could provide therapeutic options for fecal incontinence with little involvement of other organs. The goal of this project was to assess the effects of pudendal nerve and anal sphincter stimulation on bladder and anal pressures. Ten virgin female Sprague Dawley rats were randomly allocated to control (n = 2), perianal stimulation (n = 4), and pudendal nerve stimulation (n = 4) groups. A monopolar electrode was hooked to the pudendal nerve or placed on the anal sphincter. Aballoon catheter was inserted into the anus to measure anal pressure, and a catheter was inserted into the bladder via the urethra to measure bladder pressure. Bladder and anal pressures were measured with different electrical stimulation parameters and different timing of electrical stimulation relative to spontaneous anal sphincter contractions. Increasing stimulation current had the most dramatic effect on both anal and bladder pressures. An immediate increase in anal pressure was observed when stimulating either the anal sphincter or the pudendal nerve at stimulation values of 1 mA or 2 mA. No increase in anal pressure was observed for lower current values. Bladder pressure increased at high current during anal sphincter stimulation, but not as much as during pudendal nerve stimulation. Increased bladder pressure during anal sphincter stimulation was due to contraction of the abdominal muscles. Electrical stimulation caused an increase in anal pressures with bladder involvement only at high current. These initial results suggest that electrical stimulation can increase anal sphincter pressure, enhancing continence control."	"Studies investigating the functional outcome after restorative surgery for rectal cancer have mainly focused on the effect of different surgical techniques on bowel habit or sexual activity at a single time-point. The aim of this study was to assess, longitudinally, the effect of rectal cancer treatment on bowel function, quality of life and sexual activity. The study parameters were assessed using self-administered questionnaires, including the Short Form 36 (SF-36), repeatedly, over a 5-year period. Patient details were obtained from the Cleveland Clinic prospective database. There were 260 (186 male) patients. The mean ages of male and female patients at the time of surgery were 60.5 and 57.5 years, respectively. There was no significant difference in comorbidity or stage between the groups. Women had a better overall survival. More women than men had postoperative radiation and perioperative blood transfusions. Men had a higher percentage of hand-sewn anastomoses (23.9%vs 10.8%, P = 0.018), but there was no overall difference in the mean level of anastomosis (2.3 cm vs 1.9 cm, P = 0.38). Men had worse nocturnal bowel function, more incontinence and a poorer mental component score on the SF-36. Pad use increased over time to a greater degree in women. Sexual activity, which was similar in men and women at baseline, had fallen at 5 years in both genders. After restorative resection for rectal cancer, bowel function is worse in men than in women, especially night evacuation at 3 and 5 years postoperatively. Sexual function in both genders declines sharply initially within 1 year postoperatively and more gradually over 5 years."	"Stem cells are an emerging treatment for regeneration of damaged anal sphincter tissues. Homing to the site of injury can be potentiated by stromal derived factor 1 (SDF-1) and monocyte chemotactic protein 3 (MCP-3) expression. The effects of electrical stimulation (ES) on upregulation of these cytokines were investigated. The anal sphincter complex of Sprague Dawley rats was stimulated with current of 0.25 mA, pulse duration of 40 pulses/s, pulse width of 100 μs, and frequency of 100 Hz for 1 or 4 h. Sham was created using the same needle which was inserted into the anal sphincter without electrical stimulation in different groups of animals. The rats were euthanized immediately or 24 h after stimulation. Cytokine analysis was performed using real-time polymerase chain reaction. Statistical analysis was performed. Results are presented as a fold increase compared to sham that was normalized to 1. SDF-1 and MCP-3 immediately after 1 h were 2.5 ± 0.77 and 3.1± 0.93 vs. sham, respectively, showing significant increase. After 1-h stimulation and euthanasia 24 h after, SDF-1 and MCP-3 were 1.49 ± 0.16 and 1.51± 0.14 vs. sham, respectively, showing significant increase. Immediately and 24 h after 4-h stimulation, SDF-1 was 1.21 ± 0.16 and 0.54 ± 0.16 vs. sham, respectively, and was not significantly different. Immediately and 24 h after 4-h stimulation, MCP-3 was 1.29 ± 0.41 and 0.35 ±1.0 vs. sham, respectively, and was not significantly different. SDF-1 and MCP-3 after 1 h were significantly higher than after 4 h of stimulation at both time points. Electrical stimulation for 1 h significantly upregulates SDF-1 and MCP-3 expression that persists for 24 h. Prolonged stimulation reduced chemokine expression, suggesting electrolysis of cells."	"Long-term results of the overlapping sphincter repair (OSR) have been disappointing, attributed to poor tissue quality that deteriorates with time. Biological grafts enforce tissues. The aim was to compare functional outcome and quality of life at 1 year with and without Permacol reinforcement to evaluate short-term benefit. From November 2007 to November 2008, women undergoing OSR using Permacol (group 1, n = 10) under institutional review board approval (safety trial) were age matched with patients from an institutional review board approved database (group 2, n = 10) who underwent the traditional OSR. Permacol mesh was placed under the two overlapped muscles. Group 2 underwent traditional repair. Preoperative and postoperative management of the groups was similar. The Fecal Incontinence Severity Index (FISI), the Cleveland Clinic Incontinence Score (CCFIS) and the Fecal Incontinence Quality of Life (FIQL) scale were used preoperatively and 1 year post-surgery. No significant differences in demographics, symptom duration, number of vaginal deliveries, comorbidities and symptom severity were noted. Group 2 underwent concomitant procedures. Group 1 reported no complications. Group 2 reported urinary retention and dehiscence. A significant difference was found in preoperative and postoperative FIQL subscales of coping/behaviour between groups. However, comparing the pre and post scores, significant improvements on FISI (P = 0.02), the CCFIS (P = 0.005) and two subscales of FIQL (coping/behaviour, P = 0.02, and embarrassment, P = 0.01) were found in group 1. Patient satisfaction was higher in group 1. Biologic tissue enhancers (Permacol) do not add morbidity. Sphincter augmentation results in significant improvement in continence and quality of life scores compared with the preoperative scores in the short term over traditional repair. Long-term studies are needed to determine if this effect is sustained."
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/2/researcher_data.txt	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,183 @@
+ID_researcher	GROUPING_department	PMID_1	PMID_2	PMID_3	PMID_4	PMID_5	PMID_6	PMID_7	PMID_8	PMID_9	PMID_10
+Abazeed, Mohamed	Translational Hematology and Oncology Research	30202792	28017592	27109210	26384271	23980093	18784256	30709865	29795413	27088724	NA
+Achkar, Jean-Paul	Inflammation and Immunity	31275068	30535303	26039718	25105946	24241240	23598818	22170232	21115545	18622155	17879519
+Ahern, Philip	Cardiovascular and Metabolic Sciences	19161422	20732640	24950201	31138692	28041931	24452263	21677749	20393462	17030949	23898195
+Alberts, Jay	Biomedical Engineering	31034314	30946318	30921170	30901418	30826715	30735197	30543801	30135951	30109948	29794620
+Almasan, Alexandru	Cancer Biology	30067424	29995557	28331288	27413424	26537004	26026052	25590803	25308257	25061101	24655592
+Anand-Apte, Bela	Ophthalmic Research	30129971	29874129	25558000	25447564	23831329	23469166	22183345	22183341	21282576	20976146
+Apte, Suneel	Biomedical Engineering	30814516	30738849	30201140	29885460	29642006	29515038	28323982	28176809	27687499	26657033
+Aronica, Mark	Inflammation and Immunity	30691715	29966020	26448757	26209637	25988016	23118230	22917573	21251977	20477600	15577850
+Asosingh, Kewal	Inflammation and Immunity	30523671	30460535	29911993	29659138	29573550	29296972	29264954	27270458	26810221	25621158
+Baker, Ken	Neurosciences	30061053	27151601	22661933	20816822	20059997	18091226	17078088	16234691	15611943	15269959
+Baldwin, William	Inflammation and Immunity	30903736	28614792	26575854	25582188	25160697	25145937	22789623	21937238	21157344	20689436
+Baltan, Selva	Neurosciences	31010535	30135960	30125643	29891729	26407763	30385717	27683897	25034458	23881453	23050648
+Bao, Shideng	Cancer Biology	29848664	27923907	27740621	26510911	25580734	24831540	24675569	23563177	23540695	22569092
+Barnard, John	Quantitative Health Sciences	27856959	23863953	16373612	30902390	30407210	29937400	25523945	24465984	24854990	29287092
+Beck, Gerry	Quantitative Health Sciences	24646858	27233381	27774730	28301073	29064128	25349205	27716149	28741050	29621747	30071516
+Bekris, Lynn	Genomic Medicine Institute	30779703	29685286	29371683	29253717	28934645	28033507	25808939	25711455	24011543	23892237
+Bergmann, Cornelia	Neurosciences	30619363	30333176	30222502	29942315	29690885	29491163	28931676	28495370	28108025	27658544
+Berkner, Kathleen	Cardiovascular and Metabolic Sciences	31009158	29592891	22536908	22516721	21896484	20978134	18717596	17073445	16634640	16061481
+Blankenberg, Daniel	Genomic Medicine Institute	29790989	29688462	25655493	25001293	24743989	24585771	21775304	21531983	20562416	20069535
+Bonilha, Vera	Ophthalmic Research	29721921	28088625	26215528	26202387	27747301	25491159	25265374	24664754	24090540	23844142
+Brown, J. Mark	Cardiovascular and Metabolic Sciences	29307889	29172946	29074585	28636934	28389555	27941027	27396333	26729489	26218418	25930707
+Bruggeman, Leslie	Inflammation and Immunity	31202388	30332315	29192064	27026370	24788168	23087767	21221075	19857388	19776779	17195181
+Byzova, Tatiana	Neurosciences	29724896	28860945	28829753	28570266	27713004	26971877	26965920	25966710	25595903	25540429
+Cheng, Feixiong	Genomic Medicine Institute	31178408	31116390	30928438	30921324	30867426	30779739	30715873	30610579	30545954	30359818
+Cheng, Jianguo	Neurosciences	30649518	30615177	30252120	29897539	29285750	28938297	28445708	28291470	27906939	27739217
+Cherepanova, Olga	Cardiovascular and Metabolic Sciences	27183216	19168440	30089722	28283548	23912340	17704209	30814500	28920957	25985364	23537062
+Chung, Mina	Cardiovascular and Metabolic Sciences	31216884	29038104	27139902	26258174	25779222	25552627	25523945	25221331	24831860	24793801
+Claesen, Jan	Cardiovascular and Metabolic Sciences	30244719	26376792	25079685	25053784	25036635	21421760	20805503	20351769	30389766	26876034
+Comhair, Suzy	Inflammation and Immunity	30376852	26048149	25488689	22427538	21572527	19634987	15883124	15743779	15650397	12114185
+Crabb, John	Ophthalmic Research	26305875	24799364	24098476	22876128	21917933	20412794	20238042	20177130	19435712	19202148
+Cresci, Gail	Inflammation and Immunity	30621265	30211234	29874807	29385239	28737582	28333199	28087985	27540042	25855578	26919968
+Dalton, Jarrod	Quantitative Health Sciences	29710255	29175048	28847012	27636569	27185687	27050445	25852080	24911906	23503367	22847754
+Dana, Hod	Neurosciences	30956633	30308007	28824341	27011354	25250714	24898000	23482141	22825176	21445129	30361563
+Davalos, Dimitrios	Neurosciences	30405384	29765914	27579180	27007810	26705377	26579010	24740641	24698096	30737131	30323343
+De la Motte, Carol	Inflammation and Immunity	31262781	29574062	29290146	28978412	28562487	27981209	27845198	27679489	27398974	26583132
+Derwin, Kathleen	Biomedical Engineering	31056396	30860665	30318274	30106830	29398399	28602151	28457317	28426701	26808837	25460414
+DeSilva, Tara	Neurosciences	27685467	27600185	27397070	26071560	23068783	22522966	22327369	21968714	19535601	18314905
+Dey, Tanujit	Quantitative Health Sciences	31034314	30921170	30735197	30109948	29794620	29577998	29549082	28976724	28527232	28218596
+DiDonato, Joseph	Cardiovascular and Metabolic Sciences	26617517	24558038	23969698	22435567	15324458	15280659	15212686	15108329	11698579	10914035
+Driscoll, Donna	Cardiovascular and Metabolic Sciences	28917037	25692238	23777426	23614019	21685449	20385601	19716792	19106619	17901054	15821744
+Dutta, Ranjan	Neurosciences	30270725	29754529	28821749	24722325	24507515	23996595	23595422	21446020	21147224	20946934
+Dweik, Raed	Inflammation and Immunity	28473668	28090286	27187737	27831543	27922752	28514116	28604281	26856665	26401258	26022959
+Eng, Charis	Genomic Medicine Institute	31006514	30993253	30993251	30937181	30928438	30774768	30664625	30614812	30311380	30245854
+Erdemir, Ahmet	Biomedical Engineering	30927364	30712373	30514629	30251995	29247253	28836010	26444849	26381404	25844153	24895518
+Erzurum, Serpil	Inflammation and Immunity	31242023	28814664	28797075	30619887	28018974	27294365	27130529	27027950	26810221	26141573
+Fairchild, Robert	Inflammation and Immunity	30617225	30503624	30372587	29467328	27165816	27083272	26856697	26575854	25731734	25202838
+Fiocchi, Claudio	Inflammation and Immunity	30295747	29562278	29018271	26627550	25827798	25531360	24486052	24030223	23295686	23149220
+Flannery, David	Genomic Medicine Institute	30199404	22407893	12457409	11478533	1951440	1993956	21948486	18666229	15739154	2077489
+Fleischman, Aaron	Biomedical Engineering	20442019	22163683	15014268	19055419	16133803	22357558	20552673	20054402	19539062	19524292
+Fox, Paul	Cardiovascular and Metabolic Sciences	30612880	30309984	29643180	29152905	28777042	28520992	28178239	27729295	26122849	25786748
+Fukamachi, Kiyotaka	Biomedical Engineering	30393881	30312660	30074965	29761298	29703578	29616367	29538013	29400088	29365118	29076174
+Gassman, Jennifer	Quantitative Health Sciences	29212839	17591527	30775619	30006417	29976600	29870977	29212839	27927600	26335102	27516235
+Ghosh, Chaitali	Biomedical Engineering	30414085	30264400	28199000	28127491	27312874	25656284	23865846	22426401	21568937	21294720
+Gladson, Candece	Cancer Biology	30094720	28912141	27858267	27270311	23936469	22396498	20947248	20379377	19737106	19549899
+Gong, Zihua	Cancer Biology	28213517	29844495	27037360	25512557	24239288	21504906	21482717	20159562	19124460	30202049
+Graham, Linda	Biomedical Engineering	28835433	26858457	26125413	24820897	22047834	20347693	19939614	18585884	18495872	16141413
+Gupta, Neetu	Inflammation and Immunity	30021765	27909060	26673134	25801911	25746045	24117813	24043890	23338238	22815291	21751808
+Hagstrom, Stephanie	Ophthalmic Research	29721989	27099955	26987071	26427465	26427415	26202387	26028346	25491159	24813631	24811960
+Hajjar, Adeline	Cardiovascular and Metabolic Sciences	29020088	25350459	25229618	23071439	16936244	16100080	15321997	11912497	11123271	9666021
+Hamilton, Thomas	Inflammation and Immunity	26134251	25484881	24920846	23519936	22167720	21822258	20430641	20080976	20042592	19155515
+Hascall, Vincent	Biomedical Engineering	30723159	30710015	25892563	25325979	24569987	24486448	24482224	23129777	19550149	19346253
+Hazen, Stanley	Cardiovascular and Metabolic Sciences	31023434	30940489	30689425	30535398	30530985	30410105	30359185	30082863	29981269	29777744
+Heemers, Hannelore	Cancer Biology	30742064	29786790	28826481	28566530	27451135	26876983	22456196	18497079	19345321	20166126
+Hine, Christopher	Cardiovascular and Metabolic Sciences	29634343	28591635	25542313	25523462	28701478	29071285	24905161	23505614	22008909	19106292
+Hite, Duncan	Inflammation and Immunity	31112383	30346242	29256894	28082138	16714767	16714768	16714768	23431308	24835849	30801214
+Hobbs, Brian	Quantitative Health Sciences	30786040	30672395	30561713	30335125	30037304	29984488	29949418	29412015	29398440	29036300
+Hong, Changjin	Quantitative Health Sciences	25983538	25225611	24261665	26100579	25805852	24267797	24261665	23282319	23843222	22735708
+Hu, Bo	Quantitative Health Sciences	29518270	29471147	27895266	26179943	24747226	23710259	22535711	22402803	20819841	18355383
+Hu, Ming	Quantitative Health Sciences	30986246	30746303	26969411	18302784	26124977	23382666	27153668	26543175	28877673	27851967
+Huang, Emina	Cancer Biology	30738331	29983891	29560130	28881576	24643495	22914954	22902411	21779143	20186482	19808966
+Husni, Elaine	Cardiovascular and Metabolic Sciences	30980514	29884228	29848385	29688503	29512290	28802776	28623526	27485213	27134270	26476226
+Hwang, Tae Hyun	Quantitative Health Sciences	28735488	27626065	24465231	23822816	27797759	26635139	24476358	29136504	28346452	27897170
+Imrey, Peter	Quantitative Health Sciences	20862669	16753447	15286133	26378705	26378704	26378703	8610679	8586688	7880252	7932024
+Ivanov, Andrei	Inflammation and Immunity	30290240	30010460	28359759	28322932	27063635	26878213	25809162	25792565	27626042	25143399
+Jaroslaw Maciejewski	Translational Hematology and Oncology Research	30891747	30898763	30709865	30675378	30655603	29795413	29416752	29339439	29217782	28633612
+Jensen, Jan	Biomedical Engineering	25576928	28247862	24014421	23370147	22461559	18186922	29325753	28892734	28528561	28096308
+Jorgensen, Trine	Inflammation and Immunity	30853311	29755457	29430334	25708485	25504931	24477163	24442428	23754362	22585710	20018631
+Kalady, Matthew	Cancer Biology	31082910	30451761	30353615	30318507	29580878	29578919	29465458	29184477	28916945	28527628
+Kallianpur, Asha	Genomic Medicine Institute	30209774	29968489	29216383	28447399	28427421	26690344	26129753	25144566	24996618	15834437
+Kang, Zizhen	Inflammation and Immunity	29352002	28821568	23995070	22699909	22608496	21272781	20303295	30670047	30372424	28990926
+Karnik, Sadashiva	Cardiovascular and Metabolic Sciences	30616822	30608150	29287092	29195045	28194766	27512731	26484771	26460884	26315714	25068582
+Kattan, Michael	Quantitative Health Sciences	30611011	30385049	30348631	30214921	30003062	29995735	29862238	29610738	29610734	29381462
+Krishna, Vijay	Biomedical Engineering	29382935	23083600	20818623	20228785	16989848	20228785	23261655	21637768	21337565	20839856
+Labhasetwar, Vinod	Biomedical Engineering	30940690	30930216	29947019	28299721	27090164	26735970	26439800	26343846	26024446	26000961
+Lal, Dennis	Genomic Medicine Institute	30341947	30048611	29473046	28756411	26990884	26789268	26220384	26174448	25950944	24591017
+Lapin, Brittany	Quantitative Health Sciences	30759300	30314624	30092893	30135254	30587028	30381370	29592886	29708224	25532738	24954277
+Lathia, Justin	Cardiovascular and Metabolic Sciences	31018124	30595497	30877099	30729665	30385717	29699876	29644711	29422613	29282720	28664387
+Lee, Byron	Cardiovascular and Metabolic Sciences	29209771	28753780	25294696	27646943	23233737	21683989	21146865	16230360	23021664	26628371
+Lee, Jeongwu	Cancer Biology	18167341	19427293	22083670	22617325	30899443	30898893	30262818	28164090	26641068	26032834
+Lee, Yu-Shang	Neurosciences	29402167	28827771	27502766	26426529	26384335	25769013	24959867	24937795	24017996	23804083
+Li, Xiaojuan	Biomedical Engineering	28019053	28714169	29364702	28823880	28978352	27661002	25865349	26050865	26608949	25761416
+Li, Xiaoxia	Inflammation and Immunity	30683702	30578323	30372424	30352854	30013031	29563620	29070673	28990926	28561022	28223414
+Li, Yong	Cancer Biology	30343114	30068361	29685162	29703722	29540832	28386133	27462406	25990308	26519132	30185897
+Li, Zong-Ming	Biomedical Engineering	30336369	29678419	28824352	28824216	28343885	28073093	27401044	27074707	26953892	26662276
+Lin, Ching-Yi	Neurosciences	29402167	25769013	24937795	22022865	18289871	16000124	12414990	10980193	30948495	29760195
+Lin, Feng	Inflammation and Immunity	30066197	30006485	29909366	29695418	29472120	28955337	28760953	28209777	28045484	27909060
+Lindner, Daniel	Translational Hematology and Oncology Research	27560553	23202046	19430495	18937547	18074035	17379600	16847314	16689662	15634191	12881518
+Longworth, Michelle	Inflammation and Immunity	30407525	30068527	29028794	28820335	27317808	26734601	25701737	24204294	22496667	19714354
+Louveau, Antoine	Neurosciences	30224810	30141006	30008983	29401417	28862640	27608759	26909581	26576598	26431936	26398980
+Machado, Andre	Neurosciences	30853407	30799493	30064319	29932378	29800707	29384450	29372880	29266520	29048606	29029200
+Marasco, Paul	Biomedical Engineering	30967581	30663709	30453897	29773999	29540617	29194626	29182648	21252109	21106839	19369486
+Mascha, Edward	Quantitative Health Sciences	31008746	30096083	29750691	29346210	29189214	28817531	28786843	28682958	28301418	25929547
+Mata, Ignacio	Genomic Medicine Institute	30765263	29367946	28657124	28649619	28526295	28268100	27943640	27111571	26399558	26296077
+Matsuoka, Ryota	Cardiovascular and Metabolic Sciences	29438257	28855341	27852438	23646199	22593055	21835343	21270798	30449506	24179230	NA
+Maytin, Edward	Biomedical Engineering	30740528	29593028	29471147	28336806	26964566	26448756	26223149	25983370	25712788	25402211
+McCrae, Keith	Cardiovascular and Metabolic Sciences	30923524	29295846	28784423	28711993	28476065	28314138	28113083	27402674	26637701	26264622
+McDonald, Christine	Inflammation and Immunity	30704299	29880914	29471675	26982478	25581832	25000398	23251695	22665475	22387394	21936032
+McIntyre, Thomas	Cardiovascular and Metabolic Sciences	30150285	28455445	27227061	26720402	26471267	29354667	26003521	25163645	24412858	24177323
+Messer, Jeannette	Inflammation and Immunity	28145439	27837217	23794574	18593857	15822531	29051186	27207671	25645662	25642769	30894054
+Mian, Omar	Translational Hematology and Oncology Research	27563532	26447830	24740136	18282518	21693597	15728378	12732451	30202792	30327311	31059665
+Midura, Ronald	Biomedical Engineering	29310784	29119853	27815598	25046535	24764277	21958842	19967451	19450716	18765929	17936099
+Min, Booki	Inflammation and Immunity	30700587	15879097	17075245	17132717	17549737	18632726	18832679	19008933	19667092	19920180
+Moravec, Christine	Cardiovascular and Metabolic Sciences	24878771	24842913	21972325	20044278	18540144	15312825	12431450	11514373	11040107	10728422
+Morris-Stiff, Gareth	Cancer Biology	31206465	31176601	29038855	28890311	28821481	28645922	28790092	28619737	27260526	26984696
+Morton, Richard	Cardiovascular and Metabolic Sciences	26203075	25616437	25593327	24293641	21937674	19008550	18369235	17901467	17522050	16905138
+Muschler, George	Biomedical Engineering	30461436	30461435	31020864	30334888	30316562	30189436	29396254	29316595	29240251	28976432
+Nagy, Laura	Inflammation and Immunity	31009094	30710579	30294325	29597356	29374837	29142263	28647568	28257601	28165624	28087985
+Nowacki, Amy	Quantitative Health Sciences	28937359	26195576	25586325	23940836	23565103	20857339	30016197	30914495	30789459	30673077
+O'Connor, Christine	Genomic Medicine Institute	30647114	30127279	24987098	24639223	30405048	30089702	29237840	24599990	22761372	25220471
+O'Toole, John	Inflammation and Immunity	29949895	29180397	29110761	27026370	24516335	24116217	21071984	20100174	24892702	24233469
+Obuchowski, Nancy	Quantitative Health Sciences	30597055	29921163	29512515	29298603	29191687	28253530	26898527	25842015	25300725	24919829
+Olman, Mitchell	Inflammation and Immunity	29019812	28523001	26763235	26597012	23499373	24644284	19411312	16797514	18669633	14764742
+Padgett, Richard	Cardiovascular and Metabolic Sciences	24865609	22594801	22397991	18824513	18658120	16043500	14691257	12409455	12049749	11680842
+Peachey, Neal	Ophthalmic Research	30040236	26241901	28356706	28490646	26149093	25429122	24395437	24106123	22896717	22865473
+Perez, Dianne	Cardiovascular and Metabolic Sciences	27277698	26832303	23404509	23384050	22611178	22268811	21338248	19487244	19363165	17365508
+Perkins, Brian	Ophthalmic Research	30970040	30009987	28118669	27720860	27571019	27273592	26427413	25144710	24698764	20207966
+Piedimonte, Giovanni	Inflammation and Immunity	30575339	29329282	28834426	28701524	28500974	28215300	28178290	28140833	28135044	27740722
+Plow, Edward	Cardiovascular and Metabolic Sciences	29743493	29467183	29138119	28799653	28687620	28652408	27500205	27044892	25609252	24876560
+Plow, Ela	Biomedical Engineering	29563050	28784042	28662931	28607523	28402865	28142257	28117211	28091708	27838275	27045553
+Podrez, Eugene	Inflammation and Immunity	29155052	28775078	25323497	24400094	24350680	23071157	22632897	21071700	20508162	20374263
+Prasad, Sathyamangla	Cardiovascular and Metabolic Sciences	30259192	29776605	28763371	28329018	28179187	26023787	23785004	23735785	22697395	22041711
+Qin, Jun	Cardiovascular and Metabolic Sciences	31167123	30367047	29170462	28348077	25849143	25666618	25160619	22763012	22078565	22030399
+Radivoyevitch, Tomas	Quantitative Health Sciences	30055822	27007600	26922774	25663652	25480649	24337217	23205301	22353999	25392744	22303993
+Rajeswaran, Jeevanantham	Quantitative Health Sciences	27856959	26740575	24919830	17357993	17397676	30071995	29779634	28967527	24981029	24981029
+Ramamurthi, Anand	Biomedical Engineering	30061830	29701914	29264957	28875468	28087488	27884774	27860330	26830683	26652359	25376929
+Rao, Sujata	Ophthalmic Research	31002540	29045837	26720479	23334418	18039971	16163358	11726512	30936473	28356706	25715397
+Raska, Paola	Quantitative Health Sciences	28752189	27324504	25519390	22590501	22373165	22303333	22128058	20018043	23535648	22412386
+Reizes, Ofer	Cardiovascular and Metabolic Sciences	31167163	29955847	28838952	28729467	27221339	27105520	25827713	24025407	21636700	20923696
+Rezaee, Fariba	Inflammation and Immunity	30489157	28759570	28500974	20971883	29329282	20300619	25085341	24467704	23926335	21996340
+Rieder, Florian	Inflammation and Immunity	30981697	30503966	30411391	30346528	29920726	29411405	28881875	28402994	28002130	27831543
+Rotroff, Daniel	Quantitative Health Sciences	29650774	28736931	27887572	27689071	27648916	27378919	26783503	24960280	24279843	23682706
+Rubin, Brian	Cancer Biology	30709447	27044772	26486743	26297068	25961935	25766843	24977739	24589855	21970485	21885404
+Runge, Kurt	Inflammation and Immunity	30498568	29784772	29544213	29018935	28292918	23874875	22289863	22094427	19409973	17803948
+Sakaguchi, Takuya	Inflammation and Immunity	28720653	23744565	22222761	18951027	17008449	27396333	31016744	26929344	NA	NA
+Samuels, Ivy	Ophthalmic Research	30543793	28965505	27367517	25429122	24106123	23101909	20484527	19186160	18596172	11500922
+Saunthararajah, Yogen	Translational Hematology and Oncology Research	30936220	30231326	30015632	29225849	28880867	28758902	28726739	28561650	25977578	24879424
+Scheraga, Rachel	Inflammation and Immunity	28523001	26597012	27638903	26763235	25365224	25023647	23576879	NA	NA	NA
+Schold, Jesse	Quantitative Health Sciences	31090645	31027881	30973413	30019832	30006419	29945482	29805957	29525324	29316241	28611123
+Schumaker-Bass, Sarah	Cardiovascular and Metabolic Sciences	30259192	30175279	28328744	27016525	25739765	24508725	24839449	20156596	19443837	17673464
+Scott, Jacob	Translational Hematology and Oncology Research	30778184	30659188	30385313	29786861	29736596	28450729	26360300	29315173	28982791	29733909
+Sedor, John	Inflammation and Immunity	30332315	29180397	29110761	22813067	21997392	21900451	20347648	20086015	19367311	18486718
+Sen, Ganes	Inflammation and Immunity	29531172	27815826	27631700	27178468	27137933	26958928	26414443	26341626	25428874	25231314
+Sharifi, Nima	Cancer Biology	30262668	29939161	29850791	29346776	29231195	29049492	29049452	28733443	28648378	28389515
+Silverman, Robert	Cancer Biology	30814222	26517238	25816776	24987090	24905202	24371271	23732991	22875977	22615748	22312343
+Smith, Jonathan	Cardiovascular and Metabolic Sciences	31102955	30354238	29615096	29545482	29301789	29097366	27514935	26783232	25561462	25359426
+Southern, Brian	Inflammation and Immunity	26763235	26760523	29733782	28523001	26597012	24644284	23499373	NA	NA	NA
+Stark, George	Cancer Biology	29581268	29440145	28620095	27852626	26337909	26195767	25767098	25217633	25071181	25028470
+Stenina Adognravi, Olga	Cardiovascular and Metabolic Sciences	29138119	28481870	26139464	26018675	24589453	24582666	23892609	22362893	21148424	20884877
+Stuehr, Dennis	Inflammation and Immunity	31170354	30926606	30402946	30012884	29414777	29358373	28232486	27613870	27760279	27071111
+Suh, Hoonkyo	Neurosciences	30507615	30498432	27759049	27300262	26365148	19575663	18371391	30967683	30655503	29255203
+Tam, K. P. Connie	Ophthalmic Research	29191848	27891122	23006328	21901151	20130275	17905228	29062042	30439473	30343040	29062042
+Tang, W. H. Wilson	Cardiovascular and Metabolic Sciences	31023434	30953792	30890412	30410105	30345014	30158457	30012361	29994808	29893446	29729330
+Tannenbaum, Charles	Inflammation and Immunity	18354192	17475896	10936062	9670971	8543822	8258693	7684766	2114413	2494257	2783930
+Taylor, Dawn	Neurosciences	27979758	26170261	24359452	23724837	23611833	21712569	21623009	21472032	21436529	20064765
+Ting, Angela	Genomic Medicine Institute	27605446	27257071	26673711	26628371	23710259	23233737	22673787	21990380	21698188	18413723
+Tonelli, Adriano	Inflammation and Immunity	30621691	30063259	29771822	29698719	29671686	29377954	29323451	28947049	28840954	28643420
+Trapp, Bruce	Neurosciences	30215581	30143361	29754529	29361242	29274095	28833377	27872255	25750925	25693054	25066805
+Tuohy, Vincent	Inflammation and Immunity	29093011	28428886	27322324	26618181	25670003	25274653	25172043	24105638	22993071	23344231
+Valujskikh, Anna	Inflammation and Immunity	31092872	28397358	29243390	28293238	27888576	27020853	26912319	26323072	25548230	25496308
+Van Wagoner, David	Cardiovascular and Metabolic Sciences	30513109	28344424	26335221	25213716	21123218	20495015	18791466	17403452	12914605	12875431
+Vince, Geoff	Biomedical Engineering	15923746	15331362	15185177	15121252	12766735	12661205	12453506	12390948	11731045	11131497
+Wang, Qing	Cardiovascular and Metabolic Sciences	30703554	30655286	30772377	31020414	30991833	30920082	30821358	30282806	30251687	30188605
+Wang, Xiaofeng	Quantitative Health Sciences	26643287	26475830	25284902	24664664	24416633	22754269	22522380	21839177	21614139	20543891
+Wessely, Oliver	Cardiovascular and Metabolic Sciences	29530879	25127994	24733901	23974984	23352791	22639256	22028899	29560130	27214281	27144987
+Williams, Jessica	Neurosciences	24920943	18245499	21463904	22966080	24733828	23706172	22966080	28134626	26556427	23797673
+Wilson, Steven	Ophthalmic Research	30884531	30480706	30284084	30098200	29596850	29481786	28780779	28625845	28506643	28275314
+Wu, Qingyu	Cardiovascular and Metabolic Sciences	31185295	30843660	30595185	29889025	30453347	29650693	29180304	28861913	28338078	27898523
+Yu, Jennifer	Cancer Biology	31180366	31099638	30118510	29642487	29198941	30542674	25895709	25712125	25464848	30546944
+Zborowski, Maciej	Biomedical Engineering	29104346	28230974	26911917	26368657	29353957	24811334	24141316	24910468	22952572	22500468
+Zhang, Bin	Genomic Medicine Institute	29735583	29444815	28327546	26494538	23709226	22745161	21795745	20817851	20007547	19183188
+Zhao, Jianjun	Cancer Biology	30596388	29632340	24676133	26249174	26005854	24599134	22983447	22914623	22689860	20966935
+Zutshi, Massarat	Biomedical Engineering	29112569	28785819	28267010	27050606	24797828	23147650	23135588	22564198	22006493	21895926
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/data/2/researcher_data_matrix	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,183 @@
+"radiation"	"sup"	"patient"	"bitet2sup"	"tet2"	"tet2supmtsup"	"cancer"	"cell"	"gene"	"response"	"hit"	"kex2p"	"genomic"	"mutation"	"sensitivity"	"survival"	"failure"	"local"	"result"	"analysis"	"individual"	"pathway"	"sbrt"	"squamous"	"transport"	"alteration"	"ancestral"	"case"	"drug"	"feature"	"higher"	"identified"	"md"	"new"	"parameter"	"radiotherapy"	"therapy"	"using"	"ap1"	"associated"	"can"	"cellular"	"clonal"	"cmml"	"demonstrate"	"dna"	"genetic"	"highthroughput"	"histological"	"human"	"identify"	"line"	"nsclc"	"pdx"	"protein"	"showed"	"treatment"	"tumor"	"tumour"	"within"	"activation"	"assay"	"blocked"	"cumulative"	"damage"	"delivery"	"direct"	"disease"	"distinct"	"efficacy"	"either"	"endosome"	"expression"	"found"	"frequent"	"functional"	"ggas"	"method"	"myeloid"	"nfe2l2"	"number"	"predict"	"predictor"	"pvc"	"rate"	"remain"	"resistance"	"revealer"	"set"	"somatic"	"subtype"	"tgn"	"trafficking"	"vps10p"	"0001"	"across"	"adenocarcinoma"	"also"	"analyse"	"analyzed"	"interaction"	"ibd"	"risk"	"factor"	"association"	"bowel"	"inflammatory"	"locus"	"control"	"crohns"	"cad"	"surgery"	"acupuncture"	"outcome"	"cohort"	"colitis"	"genomewide"	"pathogenesis"	"studies"	"study"	"ulcerative"	"versus"	"acid"	"active"	"allele"	"amino"	"environmental"	"heritability"	"lower"	"methodology"	"model"	"nonibd"	"predictability"	"replicated"	"review"	"role"	"significantly"	"variant"	"133"	"adding"	"clinical"	"data"	"defined"	"explained"	"gut"	"gwas"	"highorder"	"improved"	"intestinal"	"medical"	"predicted"	"recurrence"	"regression"	"score"	"used"	"antigen"	"area"	"atg16l1"	"based"	"better"	"combination"	"combining"	"complex"	"consortium"	"coronary"	"curve"	"effect"	"evidence"	"geneenvironment"	"genegene"	"history"	"important"	"increased"	"inflammation"	"major"	"mechanism"	"mhc"	"need"	"nod2"	"novel"	"performed"	"replication"	"several"	"shown"	"snp"	"snps"	"il23"	"immune"	"innate"	"diet"	"microbiota"	"mouse"	"bacterial"	"piger"	"il23r"	"intestine"	"strain"	"germfree"	"level"	"chronic"	"cron"	"dietary"	"microbial"	"pathology"	"population"	"system"	"activity"	"adaptive"	"amer"	"approach"	"collection"	"effector"	"function"	"immunity"	"impact"	"intervention"	"may"	"milk"	"phenotype"	"production"	"represent"	"signaling"	"sulfate"	"therapeutic"	"understanding"	"without"	"animal"	"biology"	"bone"	"change"	"characterize"	"colonized"	"communities"	"failed"	"health"	"host"	"identifying"	"key"	"linked"	"lymphoid"	"metabolic"	"nutritional"	"oligosaccharide"	"problem"	"receptor"	"reduced"	"sequenced"	"srb"	"stunting"	"susceptibility"	"th17"	"transmit"	"accumulation"	"acute"	"addr"	"affecting"	"although"	"youth"	"athlete"	"high"	"concussion"	"exercise"	"school"	"male"	"b"	"group"	"cognitive"	"significant"	"task"	"age"	"female"	"gait"	"provide"	"aerobic"	"collegiate"	"condition"	"determine"	"following"	"improvement"	"mobile"	"performance"	"tug"	"balance"	"completed"	"dualtask"	"objective"	"postural"	"project"	"time"	"injury"	"year"	"adult"	"aged"	"aim"	"application"	"ccpsi"	"clinic"	"college"	"management"	"measure"	"participant"	"report"	"sex"	"single"	"stability"	"stroke"	"use"	"value"	"velocity"	"cleveland"	"compared"	"difference"	"hrqol"	"improve"	"medication"	"motor"	"normative"	"overground"	"pst"	"scoring"	"test"	"treadmill"	"trial"	"turning"	"utilization"	"app"	"assessment"	"baseline"	"biomechanical"	"care"	"carepath"	"delayed"	"despite"	"device"	"dual"	"error"	"evaluation"	"fertp"	"hospitalized"	"minute"	"mobility"	"msec"	"older"	"overall"	"autophagy"	"bclxl"	"cll"	"abt199"	"death"	"apoptosis"	"mir377"	"pca"	"tmprss2erg"	"usp14"	"bcl2"	"inhibitor"	"nhej"	"autophagic"	"bcell"	"malignancies"	"mcl1"	"finding"	"flur"	"flux"	"inhibition"	"thus"	"ubn"	"acquired"	"p62"	"pc3"	"agent"	"biosynthesis"	"cd20"	"ddr"	"family"	"flu"	"irif"	"phosphorylation"	"prostate"	"pyrimidine"	"repair"	"venetoclax"	"apo2ltrail"	"autophagydeficient"	"caspase8"	"chemotherapy"	"chloroquine"	"chromatin"	"current"	"dnapkcs"	"focus"	"formation"	"however"	"including"	"indicating"	"induce"	"inhibiting"	"ionizing"	"leading"	"leukemia"	"ligand"	"lymphocytic"	"mtorc1"	"overcome"	"regulation"	"rnf168"	"show"	"substrate"	"timp3"	"retinal"	"vascular"	"diabetes"	"diabetic"	"brb"	"betacellulin"	"sfd"	"addition"	"insulin"	"macular"	"neovascularization"	"retina"	"angiogenesis"	"choroidal"	"development"	"ec"	"endothelial"	"vasculature"	"binding"	"complication"	"loss"	"peptide"	"play"	"tissue"	"vegf"	"vegfmediated"	"vegfr2"	"zebrafish"	"amd"	"antiangiogenic"	"barrier"	"cnv"	"edema"	"examined"	"growth"	"leakage"	"maintenance"	"matrix"	"mmp"	"permeability"	"resulted"	"vivo"	"ability"	"bloodretinal"	"breakdown"	"breast"	"carcinoma"	"cause"	"critical"	"determined"	"downstream"	"form"	"increase"	"independent"	"inhibit"	"insight"	"laserinduced"	"mellitus"	"metalloproteinases"	"metalloproteinases3"	"migration"	"mmps"	"molecular"	"proliferation"	"versican"	"leiomyoma"	"adamts9"	"microfibril"	"aggrecan"	"adamtsl2"	"adamts"	"fibrillin1"	"fibrillin2"	"secreted"	"adamts10"	"adamts5"	"tendon"	"aortic"	"assembly"	"cartilage"	"ecm"	"fibrillin"	"adamts17"	"anomalies"	"antibodies"	"extracellular"	"myometrium"	"taad"	"adamts10supsup"	"adhesion"	"b3glct"	"ciliogenesis"	"domain"	"dysplasia"	"ectopia"	"eye"	"geleophysic"	"knockdown"	"lentis"	"proteoglycan"	"proteolytic"	"short"	"staining"	"adamts20"	"disorder"	"fbn1mgrmgr"	"focal"	"impaired"	"limb"	"metalloprotease"	"muscle"	"ocular"	"pericellular"	"pp"	"proteoglycans"	"recessive"	"recombinant"	"secretion"	"similar"	"sirna"	"skin"	"smc"	"smooth"	"symptomatic"	"syndrome"	"together"	"zonule"	"act"	"adamts13"	"andor"	"ascending"	"asymptomatic"	"component"	"comprising"	"conditional"	"congenital"	"degeneration"	"deletion"	"dissection"	"diverse"	"asthma"	"airway"	"pulmonary"	"deposition"	"allergic"	"lung"	"asthmatic"	"hcha"	"hyaluronan"	"peaked"	"tsg6"	"day"	"bal"	"bronchoalveolar"	"challenge"	"early"	"exposure"	"fluid"	"induction"	"lavage"	"memory"	"murine"	"potential"	"th2"	"cough"	"include"	"infection"	"involved"	"known"	"leukocyte"	"matrice"	"normal"	"point"	"processes"	"remodeling"	"severity"	"smcs"	"synthesis"	"tcell"	"8week"	"accumulate"	"appear"	"chain"	"collagen"	"decreased"	"elevated"	"exacerbation"	"experimental"	"has1"	"has2"	"hyperresponsiveness"	"implicated"	"mediating"	"persistence"	"promote"	"revealed"	"right"	"flow"	"pah"	"βar"	"hypertrophy"	"cytometry"	"progenitor"	"quantification"	"blood"	"hematopoietic"	"imatinib"	"ventricle"	"biomarkers"	"cav1"	"ckit"	"ecmps"	"healthy"	"myofibroblasts"	"allergen"	"circulating"	"collageni"	"cytometric"	"density"	"heart"	"maladaptive"	"ventricular"	"vessel"	"alprenolol"	"angiogenic"	"atopic"	"cardiac"	"eotaxins"	"fibrosis"	"marrow"	"mast"	"pac"	"quantify"	"rvsp"	"sample"	"suspension"	"well"	"2018"	"advancement"	"artery"	"cardiopulmonary"	"contribute"	"hdme"	"hypertension"	"hypoxic"	"induced"	"international"	"mitochondrion"	"proangiogenic"	"probe"	"stimulation"	"db"	"deep"	"implant"	"cortical"	"body"	"two"	"brain"	"lead"	"excitability"	"recovery"	"head"	"lcn"	"magnetic"	"temperature"	"coil"	"region"	"cerebellar"	"different"	"neuron"	"one"	"placed"	"sar"	"block"	"force"	"mri"	"tested"	"3tesla"	"carryover"	"cortex"	"enhanced"	"gpi"	"greater"	"heating"	"imaging"	"ipgs"	"loop"	"phantom"	"rat"	"torque"	"anterior"	"benefit"	"conductive"	"contralateral"	"field"	"fmri"	"four"	"mrirelated"	"neurostimulation"	"observed"	"radiofrequency"	"ratio"	"receiver"	"resonance"	"three"	"week"	"15tesla"	"burr"	"cerebral"	"configuration"	"contact"	"daily"	"deltatsarh"	"platelet"	"rejection"	"graft"	"infiltrate"	"antibodymediated"	"adiponectin"	"transplant"	"macrophage"	"arteries"	"fcrn"	"kidney"	"allograft"	"transplantation"	"igg"	"mediator"	"recent"	"alloantibodies"	"cd4"	"complement"	"cytokines"	"donorspecific"	"indicate"	"recipient"	"adipocyte"	"albumin"	"arterial"	"augment"	"cav"	"chemokines"	"circulation"	"compartment"	"containing"	"design"	"endogenous"	"endothelium"	"epicardial"	"experiment"	"fat"	"heteromers"	"interstitial"	"large"	"marker"	"microparticles"	"migrate"	"nodule"	"axon"	"aging"	"matter"	"white"	"mitochondrial"	"ischemia"	"ischemic"	"protection"	"young"	"gbm"	"glucose"	"lactate"	"oligodendrocytes"	"axonal"	"ck2"	"fail"	"fission"	"glial"	"motility"	"myelin"	"nerve"	"postischemic"	"bodies"	"correlate"	"disability"	"gray"	"hdac"	"neuronal"	"nitric"	"no"	"nos3"	"ogd"	"optic"	"oxide"	"preconditioning"	"structure"	"suggest"	"target"	"agedependent"	"astrocyte"	"atp"	"cns"	"confer"	"glycogen"	"mdscs"	"neurodegenerative"	"nmda"	"suggesting"	"therefore"	"thicker"	"applied"	"become"	"blockade"	"common"	"conferred"	"gscs"	"tam"	"cmyc"	"gsc"	"stem"	"cd9"	"pml"	"glioma"	"gbms"	"inhibited"	"targeting"	"pericytes"	"as2o3"	"glioblastoma"	"lethal"	"selfrenewal"	"zfx"	"bmx"	"degradation"	"disruption"	"potently"	"rest"	"stat3"	"tumorigenic"	"gp130"	"postn"	"preferentially"	"csc"	"effectively"	"gscderived"	"ibrutinib"	"maintain"	"maintaining"	"neural"	"progression"	"usp13"	"xenograft"	"demonstrated"	"differentiation"	"disrupt"	"disrupting"	"ectopic"	"expressed"	"fbxl14"	"highly"	"malignant"	"markedly"	"nonstem"	"npcs"	"propagation"	"properties"	"recruitment"	"regulator"	"sf3b1"	"atrial"	"ma"	"module"	"ctgf"	"iron"	"left"	"rhythm"	"atherosclerosis"	"chromosome"	"pitx2c"	"appendage"	"rarst"	"type"	"4q25"	"aspirin"	"differential"	"differentially"	"lesion"	"limited"	"longitudinal"	"network"	"subject"	"wildtype"	"2mesamp"	"abo"	"channel"	"clopidogrel"	"correlated"	"fibrillation"	"fibroblast"	"herc2"	"herc2associated"	"hemodialysis"	"thyroid"	"serum"	"ckd"	"urine"	"ast120"	"primary"	"prolactin"	"sodium"	"maturation"	"nocturnal"	"avf"	"concentration"	"dialysis"	"potassium"	"bicarbonate"	"excretion"	"among"	"end"	"frequency"	"hormone"	"eppic"	"ft3"	"ft4"	"gday"	"placebo"	"regressor"	"renal"	"composite"	"month"	"randomized"	"status"	"usa"	"allcause"	"conventional"	"creatinine"	"endpoint"	"eppic1"	"eppic2"	"fhn"	"lvm"	"median"	"mortality"	"physical"	"progressor"	"standard"	"urinary"	"confidence"	"enpcr"	"evaluated"	"apoe"	"csf"	"regulatory"	"aβ42"	"adam10"	"alzheimer"	"methylation"	"strem2"	"fyn"	"investigation"	"peripheral"	"tomm40apoeapoc2"	"ε4"	"aβ"	"cgi"	"element"	"mirna"	"trem2"	"cognitively"	"isoforms"	"multiple"	"persulfate"	"research"	"variation"	"water"	"adrelated"	"aph1b"	"catalyst"	"central"	"cerebrospinal"	"clearance"	"exploratory"	"graphene"	"hypothesi"	"larger"	"mirna1405p"	"parkinson"	"polymorphism"	"postmortem"	"propylparaben"	"asc"	"bmem"	"ifnαβ"	"viral"	"virus"	"microglia"	"sustained"	"tnf"	"bmdm"	"demyelination"	"ifnγ"	"subset"	"autoimmune"	"cd19"	"contribution"	"encephalomyelitis"	"nervous"	"protective"	"virusspecific"	"antiviral"	"cln"	"demyelinating"	"effective"	"neurotropic"	"olg"	"antibody"	"coronavirus"	"essential"	"igdsupsup"	"limit"	"opc"	"support"	"tdtomatosupsup"	"gfapγr1δ"	"infected"	"mrna"	"spread"	"activated"	"center"	"cnsderived"	"eae"	"event"	"germinal"	"carboxylase"	"carboxylation"	"vitamin"	"vkd"	"glu"	"vkor"	"mutant"	"gla"	"kdependent"	"membrane"	"carboxylated"	"reduction"	"carbanion"	"kh2"	"base"	"epoxidation"	"fix"	"required"	"residue"	"δ2ggcx"	"co2"	"deprotonation"	"enzyme"	"his160"	"reaction"	"vkorc1"	"warfarin"	"amine"	"h160a"	"leptospira"	"metazoan"	"present"	"redox"	"full"	"occur"	"transfer"	"ala"	"cy"	"drive"	"epoxidase"	"glas"	"glus"	"identification"	"oxygenation"	"physiologies"	"reduce"	"release"	"sequence"	"splicing"	"strongly"	"tritium"	"upon"	"wild"	"2fold"	"broad"	"catalysis"	"catalytic"	"clotting"	"consequent"	"contrast"	"convert"	"coupling"	"galaxy"	"tool"	"framework"	"platform"	"user"	"available"	"interface"	"resource"	"sequencing"	"manager"	"server"	"web"	"community"	"dataset"	"describe"	"developed"	"httpusegalaxyorg"	"implemented"	"informatics"	"making"	"ng"	"now"	"online"	"opensource"	"public"	"software"	"webbased"	"accessible"	"additional"	"allow"	"developer"	"download"	"evolutionary"	"integrated"	"make"	"provenance"	"python"	"researcher"	"science"	"toolshed"	"acc"	"alignment"	"amount"	"analyze"	"analyzing"	"biomedical"	"cache"	"computational"	"continue"	"core"	"create"	"enable"	"example"	"experimentalist"	"external"	"file"	"format"	"generation"	"graphical"	"httpgetgalaxyorg"	"life"	"main"	"manual"	"many"	"massive"	"nextgeneration"	"often"	"perform"	"proc"	"dj1"	"rpe"	"oxidative"	"donor"	"str"	"cone"	"photoreceptor"	"layer"	"periphery"	"absence"	"perifovea"	"rod"	"displayed"	"labeling"	"nuclear"	"perifoveal"	"pp347l"	"pp347t"	"affected"	"atrophy"	"pp23h"	"coherence"	"disorganized"	"display"	"due"	"fovea"	"histology"	"histopathology"	"immunocytochemistry"	"labeled"	"laser"	"little"	"lysate"	"oct"	"ophthalmoscopy"	"optical"	"outer"	"pigment"	"presence"	"prior"	"processed"	"rhodopsin"	"scanning"	"severely"	"slo"	"studied"	"tomography"	"agesimilar"	"arrp"	"autofluorescent"	"cvd"	"hepatic"	"cholesterol"	"tmao"	"cgi58"	"fmo3"	"steatosis"	"cardiovascular"	"fads1"	"hcv"	"obesity"	"atgl"	"metabolite"	"adipose"	"discus"	"fatty"	"liver"	"antisense"	"cardiometabolic"	"lipid"	"lipoprotein"	"metabolism"	"microbe"	"plin3"	"produce"	"beiging"	"bile"	"collectively"	"coreinduced"	"deficiency"	"emerging"	"even"	"fecal"	"hepatitis"	"link"	"microbederived"	"neutral"	"nutrient"	"obesityassociated"	"rct"	"regulate"	"soat2"	"suppression"	"tag"	"tmaoproducing"	"apol1"	"podocytes"	"tm4sf10"	"podocyte"	"nfκb"	"adap"	"junction"	"tnfr2"	"hivassociated"	"art"	"diaphragm"	"scaffold"	"slit"	"tgg0"	"tgg2"	"tnfα"	"actin"	"attachment"	"basement"	"cellcell"	"cyclin"	"epithelial"	"filtration"	"glomerular"	"hiv1"	"hivan"	"hydrogel"	"necrosis"	"nephropathy"	"primate"	"proliferative"	"replicate"	"tubule"	"typical"	"cep"	"product"	"diyf"	"oxidation"	"integrin"	"kindlin"	"kindlin3"	"thereby"	"thrombus"	"tyrosine"	"β3"	"adduct"	"neutrophil"	"polyunsaturated"	"pufa"	"pufas"	"signalling"	"specific"	"subsequent"	"talin"	"thrombosis"	"vitro"	"vsmc"	"crucial"	"ctcs"	"derivative"	"focused"	"jagged1"	"kindlins"	"mobilization"	"modification"	"origin"	"part"	"approved"	"discovery"	"precision"	"scrnaseq"	"medicine"	"networkbased"	"biophysic"	"herg"	"profile"	"silico"	"approaches"	"coac"	"heterogeneous"	"offer"	"pharmacology"	"powerful"	"strategies"	"structural"	"tnbc"	"wogonoside"	"actionable"	"clinically"	"deepherg"	"largescale"	"repurposing"	"subnetwork"	"therapies"	"advance"	"biological"	"characteristic"	"consequence"	"database"	"deepdr"	"driver"	"drugdisease"	"drugtarget"	"efficacious"	"genome"	"mutanomes"	"oncology"	"operating"	"personal"	"personalized"	"principle"	"rare"	"pain"	"cnrb"	"prf"	"technique"	"ablation"	"back"	"joint"	"neuropathic"	"sc"	"dorsal"	"low"	"mscs"	"sacroiliac"	"safe"	"sciatic"	"achieved"	"brfa"	"cervical"	"cooled"	"dose"	"drg"	"radmscs"	"rbmmscs"	"rfa"	"root"	"total"	"appeared"	"article"	"consistent"	"coverage"	"ganglion"	"ghrelated"	"gpe"	"hypersensitivity"	"intrathecal"	"intravenous"	"lateral"	"limitation"	"nr"	"paresthesia"	"placement"	"protocol"	"radicular"	"relief"	"col15a1"	"perivascular"	"oct4"	"klf4"	"atherosclerotic"	"knockout"	"oxpls"	"xmrv"	"cap"	"vsmcs"	"fibrous"	"cultured"	"povpc"	"advanced"	"investment"	"lineage"	"metastatic"	"mlv"	"phenotypic"	"plaque"	"smcderived"	"smcspecific"	"decrease"	"hypomethylation"	"krüppellike"	"marked"	"povpcinduced"	"premetastatic"	"previous"	"previously"	"switching"	"tracing"	"xenotropic"	"amphotropic"	"anxiety"	"dofetilide"	"icd"	"lvef"	"lvh"	"admitted"	"amiodarone"	"crt"	"guideline"	"mean"	"reloading"	"variable"	"antiarrhythmic"	"persistent"	"plt0001"	"shock"	"tdp"	"cbt"	"hazard"	"replacement"	"tolerated"	"95ci"	"adjustment"	"arrhythmia"	"bai"	"cied"	"dare"	"gad7"	"prediction"	"quality"	"replace"	"shared"	"superior"	"whether"	"aads"	"assessed"	"cardioverter"	"catheter"	"cluster"	"pk"	"aureus"	"ciii"	"ahr"	"cypemycin"	"iii"	"nostril"	"r2lc"	"reuteri"	"biosynthetic"	"grisemycin"	"member"	"streptomyces"	"2010"	"aggregation"	"aryl"	"bgcs"	"biofilm"	"coelicolor"	"molecule"	"propionibacterium"	"activate"	"bacteria"	"class"	"families"	"first"	"interspecies"	"lantibiotic"	"modified"	"natural"	"polyketide"	"produced"	"spp"	"staphylococcus"	"activities"	"heterologous"	"hundred"	"kinase"	"lanl"	"lyase"	"modulate"	"polyene"	"posttranslationally"	"potent"	"probiotics"	"ribosomally"	"serthr"	"site"	"sod"	"antioxidant"	"eosinophil"	"aerd"	"feno"	"ubrtyr"	"severe"	"et"	"plasmon"	"ulte4"	"biochemical"	"phase"	"reactive"	"specie"	"airflow"	"brtyr"	"glutathione"	"ic"	"rn"	"ro"	"ata"	"count"	"exhaled"	"hypothesized"	"icss"	"inactivation"	"oxidant"	"peroxidase"	"related"	"responsiveness"	"sputum"	"steroidnaive"	"superoxide"	"unique"	"defense"	"diagnosis"	"dismutase"	"etsexposure"	"pentosidine"	"approximately"	"quantified"	"cml"	"proteomic"	"agerelated"	"light"	"accuracy"	"glaucomatous"	"quantitative"	"tgfβ₂"	"al8309a"	"alone"	"glaucoma"	"itraq"	"melanoma"	"uveal"	"altered"	"autoantibodies"	"dry"	"gcsignaling"	"genotype"	"lightinduced"	"msms"	"nonmetastatic"	"relative"	"technology"	"arms2"	"autoantibody"	"carboxyethylpyrrole"	"five"	"glycation"	"htra1"	"poag"	"pretreatment"	"quantitation"	"respectively"	"rgcs"	"ethanol"	"butyrate"	"readmission"	"hepatocyte"	"tributyrin"	"chronicbinge"	"hp"	"supplementation"	"malnutrition"	"mmt"	"30day"	"colon"	"ethanolinduced"	"ib"	"jejuni"	"prebiotic"	"dysbiosis"	"microbiome"	"nafld"	"proximal"	"synbiotic"	"ald"	"antibiotic"	"antiinflammatory"	"byproduct"	"caco2"	"colonization"	"discharged"	"fermentation"	"gastrointestinal"	"gutliver"	"hcar2"	"hg"	"integrity"	"lgg"	"nutrition"	"prevalence"	"received"	"slc5a8"	"tight"	"alcoholic"	"beneficial"	"cdi"	"commensal"	"procedure"	"da"	"hospital"	"neighborhood"	"ascvd"	"location"	"probability"	"anesthetising"	"calibration"	"decision"	"disadvantage"	"inhospital"	"observedtoexpected"	"practice"	"agreement"	"concurrent"	"covariate"	"develop"	"diagnose"	"index"	"least"	"poarisk"	"poon"	"revascularization"	"affluent"	"alternative"	"american"	"comorbidities"	"criterion"	"derived"	"exceed"	"extent"	"heterogeneity"	"needed"	"pcerm"	"relation"	"simultaneously"	"started"	"state"	"worse"	"according"	"accounted"	"allcoderisk"	"allcoderiskbased"	"anaesthesia"	"assessing"	"assumed"	"average"	"binary"	"binomial"	"calculated"	"cart"	"cchs"	"gecis"	"transgenic"	"temporal"	"calcium"	"focusing"	"red"	"scattering"	"gcamp6"	"microscopy"	"multiphoton"	"visual"	"broadening"	"campari"	"expressing"	"indicator"	"microscope"	"simulation"	"advantage"	"cord"	"excitation"	"fluorescence"	"geci"	"genetically"	"gfpbased"	"igm"	"media"	"mother"	"nonlinear"	"photoconversion"	"pregnant"	"thy1"	"toxoplasmosis"	"transparent"	"umbilical"	"useful"	"widely"	"woman"	"adenoassociated"	"analytical"	"antitoxoplasma"	"campari2"	"capabilities"	"carrier"	"characterization"	"characterized"	"collected"	"comparable"	"considered"	"dependence"	"mmn"	"attention"	"schizophrenia"	"deficit"	"immn"	"dementia"	"student"	"difficulty"	"tbi"	"degree"	"fibrin"	"interval"	"coagulation"	"elimination"	"frontotemporal"	"metacognitive"	"monitoring"	"paradigm"	"processing"	"psychosis"	"spine"	"thrombin"	"121"	"5b8"	"amplitude"	"cd11b"	"decline"	"deviant"	"dex"	"elastic"	"fibrinogen"	"intrusion"	"maxillary"	"might"	"neurodegeneration"	"neuroinflammation"	"prospective"	"skeletal"	"timing"	"achieve"	"affect"	"amyloid"	"assist"	"awareness"	"basic"	"ha35"	"zo1"	"hyal2"	"kiaa1199"	"epithelium"	"citrobacter"	"layilin"	"directly"	"enhance"	"fragment"	"furthermore"	"isolated"	"responsible"	"colonic"	"deficient"	"degrade"	"excessive"	"fibrotic"	"glycosaminoglycan"	"hc1"	"homeostatic"	"mediate"	"hernia"	"defect"	"cuff"	"rotator"	"excisional"	"≤"	"construct"	"incisional"	"tear"	"mechanical"	"pig"	"testing"	"anchor"	"ome"	"shoulder"	"surgeon"	"augmentation"	"coating"	"gap"	"surgical"	"suture"	"thon"	"canine"	"cyclic"	"planarbiaxial"	"reinforced"	"strip"	"vml"	"5 wk"	"arthroscopic"	"augmented"	"ballburst"	"biologic"	"crosslinking"	"cycle"	"fascia"	"fullthickness"	"loading"	"nonaugmented"	"performing"	"postoperative"	"preclinical"	"size"	"volume"	"1000"	"biaxial"	"ccc"	"clinicallyrelevant"	"glutamate"	"transporter"	"eaat2"	"infiltration"	"relapse"	"ol"	"analgesia"	"pvl"	"mature"	"morphine"	"satisfaction"	"bolus"	"department"	"developing"	"diagnosed"	"diagnostic"	"emergency"	"given"	"glt1"	"a1c"	"boluses"	"period"	"protect"	"questionnaire"	"remission"	"adverse"	"analogue"	"callosum"	"corpus"	"hypoglycemia"	"hba1c"	"dcsi"	"person"	"metric"	"evaluate"	"forced"	"glycemic"	"direction"	"rcc"	"apoai"	"apoa1"	"flagellin"	"nfkappa"	"hdl"	"recovered"	"transcription"	"wall"	"alpha"	"ikk"	"tlr5"	"aorta"	"culture"	"no2tyr166apoai"	"reverse"	"salmonella"	"166"	"distribution"	"nfkappab"	"ontology"	"selected"	"4g112"	"activating"	"acyltransferase"	"apolipoprotein"	"commonly"	"secis"	"sbp2"	"l30"	"selenocysteine"	"sec"	"selenoproteins"	"recoding"	"rna"	"selenoprotein"	"uga"	"insertion"	"bind"	"eif4a3"	"translational"	"require"	"affinity"	"codon"	"secisbinding"	"transcript"	"mrnas"	"sel"	"selenium"	"translation"	"untranslated"	"utr"	"3utr"	"conserved"	"nucleolin"	"stop"	"bead"	"chromatography"	"eukaryotic"	"incorporation"	"interact"	"kinkturn"	"machinery"	"premrna"	"purified"	"rnabinding"	"sbp2secis"	"stemloop"	"bound"	"compete"	"competitive"	"contain"	"cugbp1"	"cysteine"	"depend"	"discriminate"	"sclerosis"	"hippocampus"	"progressive"	"demyelinated"	"neurological"	"course"	"irreversible"	"hippocampal"	"decade"	"episode"	"neurologic"	"relapsing"	"reversible"	"alter"	"impairment"	"mir124"	"pathological"	"profiling"	"remyelination"	"start"	"comparative"	"continuous"	"establish"	"europe"	"existing"	"fourth"	"nontraumatic"	"synaptic"	"third"	"transform"	"underlying"	"united"	"unknown"	"aimed"	"ipah"	"breath"	"worsening"	"βblockers"	"leptin"	"voc"	"hrr1"	"pasmcs"	"00001"	"bmp"	"distance"	"included"	"scan"	"smurf1"	"walk"	"diameter"	"followup"	"hemodynamic"	"p lt 005"	"pressure"	"rappawp"	"volatile"	"6mwt"	"adjusted"	"ipaa"	"iqr"	"mas"	"6min"	"pten"	"gca"	"aneurysm"	"klln"	"p53"	"asd"	"germline"	"microbiomes"	"abundance"	"noninflammatory"	"aortitis"	"autism"	"ptensupm3m4sup"	"cion"	"classification"	"differed"	"myelination"	"opcs"	"thoracic"	"assertion"	"biopsynegative"	"biopsypositive"	"clinvar"	"communication"	"conf"	"doxorubicin"	"enrolled"	"interpretation"	"kllns"	"pht"	"rule"	"silencing"	"spectrum"	"vu"	"allosteric"	"arteritis"	"aseptic"	"bedside"	"benign"	"scale"	"mechanic"	"sharing"	"chondrocyte"	"ultrasound"	"biomechanics"	"anatomical"	"multiscale"	"representation"	"comprehensive"	"instrumentation"	"specimenspecific"	"goal"	"knee"	"material"	"musculoskeletal"	"representative"	"spatial"	"stiffness"	"strategy"	"will"	"composition"	"deformation"	"extremities"	"indentation"	"load"	"modeling"	"open"	"provided"	"regional"	"scientific"	"surface"	"tibiofemoral"	"understand"	"zone"	"anatomy"	"articular"	"build"	"elementspecific"	"eleven"	"facilitate"	"finite"	"general"	"homogeneous"	"intercellular"	"carvedilol"	"hypoxia"	"camp"	"mechanistic"	"responder"	"arginine"	"gender"	"hif1"	"hif1α"	"ino"	"005"	"arg2"	"enos"	"peak"	"conformation"	"cost"	"hospitalization"	"isoproterenol"	"agonist"	"bimodal"	"doseescalating"	"drop"	"erythropoiesis"	"grk"	"cd8"	"posttransplant"	"dsa"	"mab"	"prolonged"	"sensitization"	"titer"	"ch"	"cis"	"subjected"	"complete"	"il1r"	"mhcmismatched"	"producing"	"treated"	"b6ccr5"	"b6cd8ccr5"	"cellmediated"	"dnfb"	"haptenreactive"	"killer"	"longterm"	"neutrophildepleted"	"rejected"	"semiallogeneic"	"whereas"	"alloimmune"	"antihucd20"	"antivla4"	"c57bl6"	"depletion"	"donorreactive"	"help"	"il17"	"indicated"	"esophageal"	"ceacam1"	"interactome"	"mucosal"	"eoe"	"hefs"	"hemcs"	"himec"	"investigated"	"microvascular"	"must"	"omes"	"complexity"	"particular"	"pathogenic"	"progress"	"tlr"	"biopsy"	"contraction"	"far"	"integration"	"knowledge"	"karyotype"	"gcps"	"ph"	"service"	"transfusion"	"neonate"	"provider"	"caused"	"duplication"	"facial"	"gli3"	"metaphase"	"abnormal"	"breakpoint"	"correlation"	"cytogenetic"	"solution"	"tof"	"transfused"	"abnormalities"	"delay"	"frameshiftnonsense"	"genotypephenotype"	"lymphocyte"	"mapping"	"opposite"	"orf"	"packed"	"pattern"	"rearrangement"	"reported"	"seen"	"workforce"	"accurate"	"arch"	"array"	"carrying"	"chat"	"delineation"	"demand"	"described"	"dysmorphic"	"encoding"	"transducer"	"pdms"	"microm"	"ctps"	"measured"	"second"	"exhibited"	"harmonic"	"hemofiltration"	"mdm"	"mhz"	"parasitic"	"post"	"resolution"	"teer"	"transmembrane"	"chamber"	"f20"	"fabricated"	"fabrication"	"fluidic"	"h40"	"kpa"	"measurement"	"microchannels"	"microfabricated"	"microtextured"	"microtextures"	"pvdf"	"range"	"secondharmonic"	"streaming"	"texture"	"topography"	"1mm"	"alkaline"	"eprs"	"synthetase"	"trna"	"s6k1"	"vegfa"	"hnrnp"	"aarss"	"constituent"	"l13a"	"ribosomal"	"whep"	"glutamylprolyltrna"	"mir5743p"	"mtorc1s6k1"	"noncanonical"	"ribosome"	"adiposity"	"axis"	"canonical"	"cdk5"	"conformational"	"fusion"	"gapdh"	"glutamic"	"glutamylprolyl"	"multisite"	"nsap1"	"proline"	"stimulusdependent"	"vegfax"	"ageing"	"aminoacyl"	"asp929"	"pump"	"artificial"	"continuousflow"	"circulatory"	"mock"	"ventriflo"	"cftah"	"lvad"	"pcftah"	"prototype"	"systemic"	"output"	"paediatric"	"speed"	"via"	"bsa"	"fit"	"harn"	"implantation"	"implanted"	"modulation"	"percutaneous"	"purpose"	"rotaflow"	"selfregulation"	"virtual"	"allowing"	"bench"	"bypass"	"cardioscope"	"cardioscopic"	"cpb"	"endstage"	"feasibility"	"generated"	"initial"	"input"	"arm"	"intensive"	"aask"	"mmhg"	"usual"	"strict"	"sbp"	"systolic"	"fsgs"	"african"	"egfr"	"esrd"	"idh"	"black"	"ass"	"100"	"104"	"ambulatory"	"cric"	"depressive"	"hypertensive"	"l"	"likely"	"lvmi"	"occurred"	"symptom"	"unadjusted"	"087"	"096"	"antidepressant"	"cyp3a4"	"epiecs"	"bbb"	"dapk"	"cbz"	"cyp"	"epileptic"	"p450"	"epilepsy"	"carbamazepine"	"drugresistant"	"hbmecs"	"srt"	"ugt1a4"	"lamotrigine"	"mdr1"	"pxr"	"pxrgr"	"specimen"	"bloodbrain"	"cytotoxicity"	"detected"	"cytochrome"	"epiec"	"fraction"	"hek"	"neurotoxic"	"obtained"	"viability"	"antiepileptic"	"biotransformation"	"condensation"	"cytotoxic"	"dapi"	"lobe"	"localization"	"overexpression"	"pdapk"	"quinolinic"	"resection"	"bevacizumab"	"metastases"	"recurrent"	"lyn"	"mvec"	"calyn"	"dnlyn"	"fip200atg17"	"grp78"	"rk5"	"cd133supsup"	"cflip"	"laminin"	"macropinocytosis"	"rk5induced"	"soluble"	"stnfr1"	"targeted"	"tnfr1"	"internalized"	"irradiation"	"lc3"	"lrp1"	"lysosome"	"53bp1"	"topbp1"	"tirr"	"checkpoint"	"ptip"	"bap1"	"mmr"	"rfwd3"	"blm"	"moreover"	"slc7a11"	"tudor"	"bach1"	"ferroptosis"	"wdhd1"	"break"	"complexes"	"mdc1"	"pa1"	"parpi"	"rpa2"	"taken"	"53bp1dependent"	"artemis"	"atrdependent"	"brca1deficient"	"brct"	"chk1"	"endjoining"	"fork"	"interestingly"	"mediated"	"msh2"	"prevent"	"healing"	"chow"	"trpc6"	"lysopc"	"trpc5"	"intimal"	"plu"	"rabbit"	"hypercholesterolemic"	"nac"	"hyperplasia"	"paraquat"	"001"	"anastomotic"	"cam"	"injuries"	"alphatocopherol"	"erk"	"intracellular"	"lysophosphatidylcholine"	"prosthetic"	"stat1"	"apoestat1"	"cascade"	"externalization"	"fed"	"highcholesterol"	"hypercholesterolemia"	"lysopcinduced"	"nadph"	"oxidase"	"pkcdelta"	"syndecan4"	"translocation"	"trpc"	"angiotensin"	"carotid"	"phosphorylated"	"pkcalpha"	"thickness"	" vivo"	"abdominal"	"ezrin"	"bcr"	"erm"	"dlbcl"	"il10"	"jnk"	"regulating"	"ezrinradixinmoesin"	"haptenprimed"	"myo18aα"	"cd6"	"dko"	"elicit"	"lupus"	"poorly"	"b1a"	"bcrs"	"coalescence"	"cytoskeletal"	"dynamic"	"gldperforin"	"irinduced"	"membranecytoskeletal"	"organization"	"raft"	"tulp1"	"catt"	"rbpr2"	"upr"	"cfh"	"misfolded"	"ivan"	"uptake"	"minor"	"neovascular"	"pigmentosa"	"ranibizumab"	"retinitis"	"rol"	"subretinal"	"acuity"	"combined"	"lp"	"tlr4"	"tlr2"	"aeruginosa"	"tlr4md2"	"cytokine"	"myd88"	"tolllike"	"gingivalis"	"nramp1"	"recognition"	"pestis"	"tlr1"	"flic"	"lipopolysaccharide"	"myd88dependent"	"pseudomonas"	"129×1svj"	"acylated"	"adaptation"	"aerosolized"	"dependent"	"gag"	"gramnegative"	"modulin"	"myd88ko"	"nramp1g169"	"nrampcg"	"nramptg"	"ntssusceptible"	"pathogen"	"positive"	"proinflammatory"	"rather"	"recognize"	"responded"	"shift"	"swab"	"chemokine"	"instability"	"stabilization"	"cxcl1"	"stimulus"	"chop"	"halflife"	"motif"	"ttp"	"auuua"	"sf2"	"asf"	"exhibit"	"traf6"	"upstream"	"posttranscriptional"	"act1"	"action"	"gro2"	"gro3"	"ifrd1"	"il17mediated"	"il6"	"infiltrating"	"ksrp"	"magnitude"	"nonmyeloid"	"p38"	"signal"	"adaptor"	"amplification"	"decay"	"determinant"	"duration"	"embryo"	"heparin"	"rmcs"	"4fglcnac"	"medium"	"division"	"hyperglycemic"	"monocyteadhesive"	"cable"	"cellassociated"	"cytosolic"	"dividing"	"mesangial"	"rmc"	"udpglcnac"	"asm"	"g0g1"	"glomerulus"	"heavy"	"highglucose"	"hyperglycemia"	"influx"	"initiate"	"kav"	"masm"	"polyic"	"trabecular"	"030"	"256"	"adipogenic"	"catabolism"	"cebpalpha"	"trimethylamine"	"desensitization"	"lcarnitine"	"meat"	"noxide"	"tma"	"transformation"	"omalizumab"	"γbb"	"carnitine"	"choline"	"microbiotadependent"	"oral"	"respiratory"	"bcaa"	"converted"	"metaorganismal"	"omnivore"	"precursor"	"vegansvegetarians"	"atherogenic"	"cutc"	"ingestion"	"isotope"	"abundant"	"atkins"	"cutcd"	"d3lcarnitine"	"androgen"	"srf"	"rhoa"	"coregulators"	"deprivation"	"transcriptional"	"information"	"androgenresponsiveness"	"coregulator"	"raar"	"pkn1"	"relevant"	"coactivator"	"crcap"	"mal"	"selective"	"small"	"adi"	"adt"	"aggressive"	"almost"	"arassociated"	"behavior"	"castrationrecurrent"	"content"	"p300"	"h2s"	"rad51"	"restriction"	"longevity"	"cgl"	"lifespan"	"promoter"	"sulfide"	"tsp"	"capacity"	"cystathionine"	"hydrogen"	"numerous"	"organism"	"saa"	"drmediated"	"exogenous"	"extension"	"fitness"	"ga"	"nanoparticles"	"recently"	"span"	"toxin"	"variety"	"wide"	"γlyase"	" vitro"	"anticancer"	"bioluminescence"	"boundaries"	"calorie"	"cb"	"chemotherapeutic"	"percent"	"horse"	"delirium"	"icu"	"vap"	"ards"	"academic"	"clinicaltrialsgov"	"discharge"	"rosuvastatin"	"cvc"	"institution"	"pacguided"	"referring"	"stay"	"surfactant"	"taperedcuff"	"ventilator"	"ventilatorfree"	"established"	"ett"	"haloperidol"	"home"	"length"	"organ"	"receive"	"unit"	"ziprasidone"	"assigned"	"conservative"	"predictive"	"adrenal"	"selection"	"washout"	"apew"	"attenuation"	"effectiveness"	"multivariate"	"prognostic"	"singleparameter"	"source"	"rpew"	"unenhanced"	"yielded"	"malignancy"	"portal"	"sequential"	"bayesian"	"image"	"perfusion"	"statistical"	"venous"	"basis"	"basket"	"crossvalidation"	"devised"	"enhancement"	"noncontrast"	"seamless"	"subpopulation"	"supplemental"	"attempt"	"classifier"	"computed"	"bisulfite"	"read"	"gnumapbs"	"malaria"	"parasite"	"reference"	"eer"	"algorithm"	"falciparum"	"coli"	"pathoqc"	"pathoscope"	"dsrna"	"poor"	"proteinprotein"	"accommodate"	"annotation"	"bioinformatics"	"conversion"	"freely"	"metagenomic"	"orthologs"	"step"	"world"	"aligning"	"annotated"	"blue"	"posterior"	"proposed"	"estimate"	"pdt"	"bcc"	"fig4"	"propose"	"schwann"	"timedependent"	"casup2sup"	"cmt4j"	"onset"	"per"	"segmental"	"seven"	"slope"	"bcns"	"clearly"	"conduction"	"dedifferentiation"	"dosefinding"	"doseresponse"	"eight"	"estimated"	"estimation"	"gfr"	"inverse"	"multistate"	"hic"	"ancestry"	"closure"	"mining"	"inference"	"capture"	"chromosomal"	"map"	"pair"	"bachmix"	"calling"	"dependency"	"hidden"	"hiview"	"ioct"	"random"	"still"	"technologies"	"width"	"architecture"	"bach"	"challenging"	"fasthic"	"fire"	"sporadic"	"crc"	"cxcl8"	"colorectal"	"cac"	"aldh"	"atorvastatin"	"cct"	"organoid"	"wnt"	"wntβcatenin"	"aldehyde"	"ccsc"	"ccscs"	"dehydrogenase"	"sphere"	"microenvironment"	"pccsc"	"polyp"	"preventing"	"stroma"	"tumorinitiating"	"aldhhigh"	"cancerous"	"colitic"	"colitisassociated"	"histologic"	"isolate"	"lyz"	"min"	"mir20a"	"nude"	"psa"	"psoriasis"	"psoriatic"	"arthritis"	"larginine"	"golimumab"	"p lt 0001"	"psychosocial"	"bothersome"	"burden"	"arginase"	"capp"	"dermatologist"	"rheumatologist"	"item"	"lowdose"	"manifestation"	"moderate"	"qol"	"safety"	"survey"	"willing"	"adma"	"nsaid"	"physician"	"preventive"	"rbw"	"riskincreases"	"sdma"	"toxicity"	"accept"	"arid1a"	"disrupted"	"purine"	"argsrs"	"copy"	"hpo"	"initiation"	"shear"	"btics"	"code"	"dlp"	"learning"	"path"	"percentage"	"significance"	"subclonal"	"tldlp"	"training"	"bar"	"campus"	"bias"	"meningococcal"	"bladder"	"casecontrol"	"outbreak"	"patronage"	"carriage"	"client"	"odd"	"1992"	"campusarea"	"compare"	"confounding"	"environment"	"last"	"observational"	"periodontal"	"suggested"	"acceptable"	"alcohol"	"aspect"	"cavitation"	"chloride"	"consumption"	"detrusor"	"employee"	"h2o"	"increasing"	"jama"	"made"	"mee"	"cytoskeleton"	"adf"	"adherens"	"junctional"	"filament"	"perijunctional"	"αsnap"	"accompanied"	"add1"	"aip1"	"ajs"	"anillin"	"cofilin1"	"emyt"	"iia"	"invasion"	"tjs"	"vesicle"	"ykt6"	"add3"	"disassembly"	"mucosa"	"actomyosin"	"ajtj"	"apical"	"attenuated"	"belt"	"cko"	"controlling"	"homeostasis"	"aml"	"idh12supmutsup"	"clone"	"ctl"	"granular"	"heterozygous"	"parp"	"daunorubicin"	"salvage"	"lgl"	"anemia"	"aplasia"	"compound"	"ctc1"	"frequently"	"hierarchy"	"idiopathic"	"myelodysplastic"	"pure"	"rf"	"telomerase"	"pancreatic"	"endocrine"	"notch"	"pancreas"	"wnt7b"	"ngn3"	"acinar"	"fgf10"	"fate"	"gfi1"	"hypothermia"	"patterning"	"morphogenesis"	"trunk"	"cacs"	"citalopram"	"find"	"gabon"	"later"	"multipotent"	"randomly"	"septic"	"terminal"	"tip"	"vasopressor"	"158"	"163"	"acinarcentroacinar"	"allocated"	"conclude"	"differentiate"	"duct"	"ductal"	"sle"	"nzb"	"nzwf1"	"ifnα"	"pdcs"	"erythematosus"	"lupuslike"	"testosterone"	"b6act1"	"siglec"	"antinuclear"	"b6nba2"	"dendritic"	"fcgammar"	"hpositive"	"nba2"	"slam"	"spontaneous"	"autoimmunity"	"congenic"	"lupusprone"	"particularly"	"plasmacytoid"	"rectal"	"stage"	"diseasefree"	"mir1247"	"mucinous"	"neoadjuvant"	"simvastatin"	"chemoradiation"	"cics"	"mdc"	"ajcc"	"crcmdc"	"adjuvant"	"5year"	"consultation"	"locally"	"oncologic"	"pathologic"	"tertiary"	"ttt"	"545"	"demographic"	"erk12"	"experience"	"free"	"hand"	"gd"	"hiv"	"neurocognitive"	"dhu"	"hivinfected"	"dnp"	"hfe"	"antiretroviral"	"mtdna"	"hvod"	"nci"	"ceruloplasmin"	"transferrin"	"aco1"	"comorbidity"	"haplogroups"	"haptoglobin"	"hferritin"	"hispanic"	"multivariable"	"c282y"	"era"	"gdsdefined"	"global"	"haart"	"nadir"	"or"	"plt005"	"underwent"	"lrrk2"	"export"	"inflammasome"	"irak2"	"nlrc4"	"lkb1"	"cuprizone"	"il1β"	"il25"	"act1deficient"	"colitogenic"	"cuprizoneinduced"	"expansion"	"helper"	"il18"	"importantly"	"linckit"	"lkb1supδiecsup"	"lrrk2supsup"	"ng2"	"at1r"	"arb"	"filamin"	"gpcr"	"nonpeptide"	"gpcrs"	"physiological"	"ra"	"renin"	"at1"	"classical"	"npff"	"pdz"	"proteincoupled"	"angii"	"at2"	"initiated"	"masmediated"	"microswitches"	"pharmacological"	"calculator"	"concordance"	"man"	"prolapse"	"screening"	"rcampda"	"decisionmaking"	"discontinuation"	"ehr"	"personnel"	"5yr"	"balancing"	"created"	"imbalanced"	"setting"	"aid"	"balancer"	"electronic"	"incidence"	"incorporate"	"nomogram"	"fullerenes"	"phf"	"copper"	"polyhydroxy"	"nanotubes"	"dioxide"	"silicon"	"titanium"	"carbon"	"functionalized"	"photocatalytic"	"ignited"	"lowintensity"	"mercaptan"	"particle"	"removal"	"singlewalled"	"tio2"	"visible"	"certain"	"concern"	"contaminant"	"dosed"	"electron"	"ethyl"	"led"	"photocatalysis"	"adsorption"	"anatase"	"arabidopsis"	"carboxy"	"charge"	"cm2"	"compatibility"	"continuouswave"	"coppercoated"	"cuoxs"	"designed"	"dye"	"np"	"epigenetic"	"resistant"	"blast"	"spinal"	"sci"	"dac"	"dox"	"pronp™"	"polyplex"	"tio2nps"	"administration"	"biodegradable"	"mcf7adr"	"pei"	"polyplexes"	"wave"	"facilitating"	"localize"	"oxygen"	"microdeletions"	"gge"	"epilepsies"	"rbfox1"	"cnvs"	"grin2a"	"neurodevelopmental"	"candidate"	"classified"	"grin2d"	"hotspots"	"missense"	"childhood"	"cooccurrence"	"generalized"	"overlapping"	"pathogenicity"	"rolandic"	"scn1a"	"tle"	"acmg"	"afe"	"depdc5"	"hotspot"	"ige"	"linkage"	"ndds"	"neuropathologyassociated"	"screened"	"prom"	"promis"	"patientreported"	"agree"	"cerebrovascular"	"question"	"social"	"depression"	"dif"	"executive"	"is"	"mid"	"sleep"	"diseasespecific"	"disturbance"	"gmh"	"gph"	"plot"	"prenatal"	"subgroup"	"usefulness"	"wheezing"	"2015"	"income"	"linking"	"meaningful"	"perceived"	"hascia"	"clofazimine"	"sox2"	"stemness"	"cd109"	"cx26"	"cx46"	"mgmt"	"nanog"	"temozolomide"	"tmz"	"transition"	"called"	"cd109expressing"	"chen"	"fpsa"	"repeat"	"5ypfp"	"hypermethylation"	"indication"	"procainamide"	"imperative"	"ngml"	"pcsm"	"dnmt1"	"ebrt"	"nephrectomy"	"nomogrampredicted"	"predicting"	"abca1"	"cisplatin"	"cisplatinresistant"	"clear"	"gt1"	"highgrade"	"partial"	"preoperative"	"rfp"	"tp53"	"undergoing"	"brachytherapy"	"cancerspecific"	"categorized"	"cutoff"	"egfr lt 60 mlmin173 msup2sup"	"extended"	"gct"	"gcts"	"perioperative"	"met"	"ssea1"	"tgfβ"	"statins"	"usp1"	"cd133"	"clonogenic"	"tic"	"gic"	"pip4k2a"	"enriched"	"enrichment"	"patientderived"	"statin"	"stemlike"	"suppressor"	"578ir"	"socs3"	"regeneration"	"pstat3"	"neurite"	"transection"	"lentishsocs3"	"sciinduced"	"seizure"	"ser"	"shsocs3"	"tm"	"dendrite"	"ngf"	"ns1"	"nt3"	"rostral"	"rtms"	"caudal"	"contusion"	"longest"	"map2"	"outgrowth"	"postinjury"	"cholinergic"	"combinatorial"	"infusion"	"lut"	"neurotrophic"	"saline"	"t1ρ"	"bmd"	"erosion"	"shape"	"wrist"	"hrmas"	"hrpqct"	"nmr"	"aclr"	"antitnfα"	"spectroscopy"	"acl"	"alanine"	"dce"	"mtx"	"osteopenia"	"radius"	"relationship"	"3 months"	"distal"	"il17a"	"notch1"	"traf4"	"il17r"	"rab35"	"cyanidin"	"il17ainduced"	"lrig1supsup"	"asmcs"	"il17ra"	"mechanistically"	"plet1"	"sjögrenslike"	"wound"	"attenuate"	"fiber"	"il17induced"	"il21"	"pkcα"	"mir21"	"mir301a"	"ido1"	"car"	"tcdd"	"aregutr"	"epidermal"	"mir153"	"myeloma"	"smad4"	"leucovorin"	"tail"	"tryptophan"	"antitumor"	"arsenicinduced"	"beas2b"	"gammopathy"	"l265p"	"monoclonal"	"overexpressed"	"pancreatitis"	"polarization"	"yet"	"5fluorouracil"	"carcinogenesis"	"hareg"	"immunotherapy"	"killing"	"kynurenine"	"carpal"	"tunnel"	"tcl"	"ct"	"compression"	"flexor"	"compliance"	"flexion"	"transverse"	"finger"	"ligament"	"investigate"	"radioulnar"	"retinaculum"	"swv"	"pianist"	"tensile"	"caon"	"coordination"	"intratunnel"	"modulus"	"pinch"	"posture"	"hamate"	"manipulation"	"neuropathy"	"nonpianists"	"perturbation"	"radial"	"tcltendon"	"applying"	"cadaveric"	"compressive"	"fibronectin"	"ampa"	"hurdeficient"	"arf"	"hp1alpha"	"hur"	"neuronspecific"	"allodynia"	"ca2i"	"harl4"	"harl5"	"potentiation"	"antagonist"	"arl4"	"arls"	"bdnf"	"beta1"	"concentrated"	"cos7"	"csa"	"embryonic"	"harl5q80l"	"ssl7"	"complementmediated"	"eau"	"treating"	"2hg"	"cd318"	"cipn"	"hemolysis"	"uveitis"	"inhibitory"	"vaccine"	"antigenspecific"	"antissl7"	"autologous"	"autoreactive"	"nocbl"	"ifnbeta"	"ihpk2"	"tsp1"	"antiproliferative"	"dr4"	"sunitinib"	"untreated"	"a375"	"apoptotic"	"isgs"	"ms1vegf"	"svr"	"5azadc"	"hexakisphosphate"	"ifnalpha18"	"inositol"	"ip6k2"	"nl"	"ovarian"	"sensitized"	"transfected"	"apo2ltrailresistant"	"b12"	"c336a"	"dcapd3"	"condensin"	"capd3"	"retrotransposon"	"subunit"	"drosophila"	"rbf1"	"retrotransposons"	"line1"	"retrotransposition"	"prb"	"ht29"	"melanogaster"	"mitotic"	"throughout"	"vein"	"wing"	"amp"	"dsrf"	"euchromatic"	"homologous"	"lymphatic"	"meningeal"	"drainage"	"meninges"	"parenchyma"	"privilege"	"drain"	"glymphatic"	"lymph"	"node"	"avenue"	"discoveries"	"draining"	"isf"	"notably"	"potentially"	"surveillance"	"accumulating"	"acquire"	"affliction"	"along"	"allergies"	"oarm"	"intraoperative"	"lumbar"	"nucleus"	"brdu"	"electrode"	"neurogenesis"	"poststroke"	"affective"	"eq5d"	"microelectrode"	"pdq"	"revision"	"suboptimal"	"anticipation"	"author"	"bilateral"	"p "	"perilesional"	"reimplantation"	"rodent"	"serve"	"side"	"subthalamic"	"updrs"	"066"	"feedback"	"amputee"	"sensory"	"movement"	"reinnervation"	"threshold"	"reinnervated"	"sense"	"evaluator"	"kinesthetic"	"agency"	"fitts"	"implicit"	"law"	"cutaneous"	"explicit"	"redirected"	"touch"	"afferent"	"discrimination"	"grip"	"krippendorffs"	"reliability"	"robotic"	"vision"	"context"	"interevaluator"	"meter"	"neuralmachine"	"object"	"rsup2sup"	"spindle"	"appropriate"	"null"	"interest"	"variability"	"comparing"	"secondary"	"arvmap"	"typically"	"carlisle"	"unpaired"	"anesthesia"	"assumption"	"exist"	"investigator"	"propensity"	"systematic"	"true"	"twamap"	"valid"	"arise"	"conducting"	"fraud"	"gba"	"e326k"	"coding"	"ftd"	"latin"	"pedigree"	"peru"	"pfdr "	"rab39b"	"verbal"	"1441"	"abilities"	"benton"	"carried"	"colombia"	"colombian"	"dominant"	"judgment"	"letternumber"	"mapt"	"memoryexecutive"	"orientation"	"parkinsonism"	"pq1111h"	"pr1441g"	"proportion"	"trail"	"visuospatial"	"working"	" 0018"	"0006"	"america"	"glia"	"ipl"	"sema6a"	"plexa4"	"semaphorins"	"amacrine"	"circuit"	"inner"	"plexiform"	"sac"	"arborization"	"around"	"bipolar"	"establishment"	"horizontal"	"opl"	"permeable"	"ribbon"	"semaphorin"	"sflt1"	"stratification"	"sublaminae"	"synapse"	"vertebrate"	"cnsresident"	"hns"	"laminar"	"laminaspecific"	"lamination"	"motion"	"plexa"	"plexin"	"precise"	"5fu"	"ppix"	"scc"	"vit"	"alapdt"	"cebpβ"	"photodynamic"	"cpbn"	"4t1"	"protoporphyrin"	"bca"	"cebpα"	"confirmed"	"cosmetic"	"actinic"	"administered"	"aminolevulinic"	"basal"	"cd44"	"cebpβ3"	"discussed"	"equally"	"ap"	"antiphospholipid"	"apl"	"evs"	"ptsd"	"p56lck"	"anticoagulant"	"splenectomy"	"thrombotic"	"antiβ2"	"mp"	"pcl5"	"apla"	"hht"	"hka"	"itp"	"pregnancy"	"anticoagulation"	"apsrelated"	"bdiii"	"il1"	"laboratory"	"phospholipid"	"unstimulated"	"anticardiolipin"	"mdx"	"yao"	"polysaccharide"	"rip2"	"antimicrobial"	"food"	"antibacterial"	"pala"	"ivs8sup158sup"	"phosphatase"	"additive"	"carbohydrate"	"nod2dependent"	"nucleotidebinding"	"oligomerization"	"pp2a"	"western"	"ptafr"	"exosomes"	"hmwegf"	"stimulated"	"egf"	"proteasome"	"suppressed"	"proegf"	"abolished"	"cd36"	"deubiquitinase"	"mg132"	"myeloperoxidase"	"released"	"adamdec1"	"cyp2e1"	"oscc"	"taurine"	"express"	"hedgehog"	"proteome"	"shh"	"arginyl"	"cleavage"	"hmgb1"	"hsp70"	"thr300ala"	"cystoscopy"	"influence"	"atg5"	"beclin"	"dog"	"heat"	"t300a"	"damageassociated"	"erbb2"	"interleukin"	"live"	"since"	"gstp1"	"cribriform"	"intraductal"	"plan"	"mbd2"	"scbc"	"protracted"	"cpg"	"fo"	"rapid"	"rasp"	"automated"	"beam"	"dll3"	"imrt"	"ptv"	"restoration"	"2 mm"	"adc"	"cd56"	"distant"	"gleason"	"ldr"	"calcospherulites"	"mineralization"	"citrate"	"dab4dln"	"front"	"gddtpa"	"osteoblast"	"mtt"	"exposed"	"face"	"formed"	"fracture"	"newly"	"ovx"	"pemf"	"pth"	"48 h"	"appearance"	"collagenase"	"crystal"	"dab8dln"	"hhgs"	"histopathological"	"kda"	"mild"	"oarsi"	"salt"	"scored"	"48h"	"bag75"	"calcein"	"basophil"	"il4"	"il2"	"naive"	"treg"	"il27"	"necessary"	"th1"	"blimp1"	"il3"	"il7"	"tregs"	"cd44high"	"cd44low"	"coculture"	"dc"	"inducing"	"lymphopenic"	"reveal"	"robust"	"transferred"	"understood"	"failing"	"nonfailing"	"betatubulin"	"ca2"	"annexins"	"bfsm"	"biofeedback"	"myocyte"	"s100a1"	"betaadrenergic"	"ca2atpase"	"hypertrophied"	"myocardial"	"blot"	"isoform"	"mhcβ"	"reticulum"	"reversed"	"annexin"	"beginning"	"dysfunction"	"endoplasmic"	"inotropic"	"myosin"	"sarcoplasmic"	"sympathetic"	"unloading"	"atrium"	"autonomic"	"gastric"	"amgd"	"cyst"	"periampullary"	"choledochal"	"nat"	"cystic"	"obstruction"	"pdac"	"presented"	"rouxeny"	"brpc"	"entities"	"gastrectomy"	"inguinal"	"margin"	"minimal"	"negative"	"operative"	"pancreatoduodenectomy"	"perforation"	"presentation"	"reconstruction"	"remnant"	"rygb"	"child"	"claviendindo"	"closed"	"cetp"	"ltip"	"ldl"	"ester"	"cholesteryl"	"droplet"	"vldl"	"hamster"	"470"	"cetpdeficient"	"nonreciprocal"	"preference"	"storage"	"inactive"	"tgce"	"triglyceride"	"cetps"	"monkey"	"net"	"normolipidemic"	"25fold"	"3fold"	"fulllength"	"immunoassay"	"lcat"	"ldlassociated"	"modify"	"partially"	"grade"	"ctpcs"	"ctpos"	"ctp"	"ipfp"	"peri"	"syn"	"prp"	"claimed"	"injection"	"osteoarthritis"	"cellbased"	"icms"	"icts"	"cancellous"	"cdp"	"connective"	"csp"	"iliac"	"pctp"	"aspiration"	"bma"	"ctpc"	"icb"	"lt 0001"	"native"	"arthroplasty"	"assayed"	"astm"	"chondrogenic"	"colonyformingunit"	"condyle"	"ctpo"	"femoral"	"gt60 years"	"mif"	"feeding"	"irf3"	"etohinduced"	"gaobinge"	"kupffer"	"adipokines"	"mir181b3p"	"myd88suplysmsupsupkosup"	"protected"	"secretome"	"α5"	"c5ar1"	"c5ar1supsup"	"ethanolfed"	"importin"	"irf3sups1s1sup"	"pairfed"	"alcoholrelated"	"c57bl6j"	"etoh"	"fdsupsup"	"hepatocellular"	"alpha1"	"antitrypsin"	"hct"	"mismatch"	"aai"	"hla"	"portfolio"	"rar"	"tachyphylaxis"	"copd"	"curative"	"neuromodulators"	"program"	"scd"	"sgrq"	"solidorgan"	"surrogate"	"ucc"	"2016"	"aware"	"conclusion"	"december"	"fev1"	"hcmv"	"latent"	"latency"	"lytic"	"cmvil10"	"cytomegalovirus"	"cxcr4"	"us27"	"pus28"	"reactivation"	"histone"	"us28"	"cxcl12cxcr4"	"miep"	"ptms"	"capsid"	"deguelin"	"harbor"	"hcmvinfected"	"herpesvirus"	"immunocompromised"	"kasumi3"	"tpa"	"capsomer"	"cxcl12"	"dot1l"	"encode"	"encoded"	"establishes"	"icp55"	"ksupsup"	"oxphos"	"participate"	"absorption"	"apol1g0"	"corrected"	"examine"	"icp55p"	"majority"	"nasupsup"	"national"	"variantdependent"	"xpnpep3"	"24monthold"	"344"	"apol1associated"	"apol1mediated"	"apol1s"	"roc"	"biomarker"	"qibs"	"estimating"	"froc"	"technical"	"coefficient"	"cd"	"qib"	"illustrate"	"medicalis"	"repeatability"	"concept"	"interchangeability"	"becoming"	"carlo"	"claim"	"comparison"	"conducted"	"exam"	"fixed"	"implementation"	"increasingly"	"monte"	"frnk"	"upar"	"trpv4"	"vte"	"ipf"	"myofibroblast"	"profibrotic"	"fibroproliferative"	"ligation"	"ltx"	"tgfbeta1induced"	"urokinase"	"ali"	"alphasma"	"dvt"	"fak"	"il1beta"	"mitogenic"	"attach"	"u12dependent"	"snrna"	"splice"	"introns"	"spliceosomal"	"u6atac"	"ese"	"intron"	"u4atac"	"branch"	"spliceosome"	"exon"	"mopd"	"position"	"selfsplicing"	"snrnas"	"correct"	"defective"	"dinucleotide"	"disnrnp"	"internal"	"nucleotide"	"purinerich"	"respond"	"ribozyme"	"rnu4atac"	"spliced"	"51ggta"	"account"	"analogous"	"auac"	"erg"	"grm6"	"bwave"	"trpm1"	"dbc"	"electroretinogram"	"lrp5"	"nob7"	"ccl2daf1"	"dbcs"	"mglur6"	"piii"	"slow"	"awave"	"ccl2"	"depolarizing"	"tvrm89"	"blindness"	"daf1"	"grm6supnob8sup"	"localized"	"night"	"stationary"	"transduction"	"tvrm111b"	"vl"	"autosomal"	"b6bkslepr"	"cwave"	"dcerg"	"α1aar"	"alpha1ar"	"alpha1adrenergic"	"neonatal"	"α1ar"	"constitutively"	"alpha1bar"	"tramp"	"alpha1ars"	"ar"	"couple"	"discovered"	"du145"	"glut1"	"glut4"	"pkcδ"	"α₁aar"	"α1adrenergic"	"alpha1aadrenergic"	"alpha1aar"	"cilia"	"arl13b"	"segment"	"ift80"	"wrb"	"ahi1"	"arl13a"	"dpf"	"pard3"	"myo7aa"	"cep290fh297fh297"	"fertilization"	"immunohistochemistry"	"lacking"	"mislocalization"	"okr"	"prkc"	"vangl2"	"ciliary"	"joubert"	"optokinetic"	"cep290"	"cilium"	"dynein"	"get"	"hybridization"	"ift"	"jatd"	"jbts"	"rsv"	"tio2np"	"evd68"	"infant"	"rrrsv"	"birth"	"neurotrophins"	"bronchial"	"postnatal"	"syncytial"	"tract"	"bpd"	"earlylife"	"offspring"	"rhinovirus"	"reinfection"	"transmission"	"admission"	"airborne"	"beclin1"	"currently"	"elisa"	"followed"	"illness"	"kindlin2"	"plg"	"metastasis"	"tsp4"	"spreading"	"terminus"	"hel"	"phagocytosis"	"emt"	"ferm"	"integrins"	"αiibβ3"	"γcatenin"	"cytoplasmic"	"coactivation"	"kindlin1"	"kindlin2supsup"	"macrophagelike"	"partner"	"plasmin"	"prey"	"primarily"	"reside"	"tdcs"	"dlpfc"	"stent"	"interhemispheric"	"cpmd"	"overflow"	"transcranial"	"cortices"	"anodal"	"connectivity"	"im1"	"paretic"	"upper"	"bimanual"	"et al"	"facilitation"	"incomplete"	"isci"	"mrc"	"weak"	"1 hz"	"asymmetric"	"contralesional"	"oxpl"	"oxpccd36"	"srbi"	"oxidized"	"scavenger"	"akt3"	"hyperreactivity"	"atheroprotective"	"tlr9"	"prothrombotic"	"accelerated"	"akt"	"dyslipidemia"	"highdensity"	"hyperlipidemia"	"specifically"	"apoproteins"	"carboxyalkylpyrrole"	"helices"	"resensitization"	"grk2"	"hasmcs"	"mirnas"	"nodal"	"like"	"mirna548"	"pbmcs"	"crosstalk"	"resulting"	"tnfαmediated"	"β2ars"	"βadrenergic"	"βarrestin"	"acutely"	"ilk"	"ig20"	"pip3"	"ser2152"	"k2n"	"p2204l"	"pseudokinase"	"autoinhibited"	"elusive"	"ig21"	"impair"	"mode"	"morc3"	"pip2"	"pka"	"pkamediated"	"pseudoactive"	"trigger"	"autoinhibition"	"bundling"	"capable"	"cellextracellular"	"charged"	"chemical"	"stochastic"	"cfu"	"dntp"	"nhl"	"1st"	"dosing"	"ribonucleotide"	"slcc"	"supply"	"bcrabl"	"eradication"	"neoplasm"	"reductase"	"regimen"	"rnr"	"seer"	"whose"	"autotransplant"	"background"	"epidemiology"	"hsc"	"hscs"	"losses"	"mathematical"	"modeled"	"p53r2"	"pcm"	"valve"	"regurgitation"	"lvd"	"iga"	"subcoronary"	"younger"	"pretransplant"	"annulus"	"fbevar"	"gradient"	"seromucous"	"continuously"	"echocardiographic"	"highrisk"	"outflow"	"slightly"	"stenosis"	"updated"	"waitlist"	"illustrated"	"matched"	"mixed"	"nonsevere"	"patientspecific"	"aaa"	"bmsmcs"	"regenerative"	"elastin"	"aneurysmal"	"smps"	"antiproteolytic"	"elastogenesis"	"proelastogenic"	"stimulate"	"arrest"	"clot"	"ef"	"mmp2"	"peritoneal"	"earasmcs"	"elastogenic"	"future"	"metalloproteases"	"aortal"	"bmmscderived"	"cathepsin"	"cationic"	"doxycycline"	"bmal1"	"hyaloid"	"circadian"	"p10"	"pup"	"clock"	"p17"	"snare"	"dio2"	"dopamine"	"snap25ts"	"vitreous"	"cup"	"developmental"	"exit"	"fevr"	"müller"	"neurotransmitter"	"pc1"	"metsyn"	"panel"	"european"	"eoc"	"cbcs"	"pcr"	"principal"	"tchp"	"trait"	"genotyped"	"17q2131"	"53 "	"8q24"	"admixed"	"densities"	"gfp"	"leprb"	"noncscs"	"reporter"	"lep"	"lepr"	"obese"	"agrp"	"cd55"	"neuropeptide"	"obob"	"able"	"dbdb"	"driven"	"fewer"	"hypothalamic"	"leprsilenced"	"mammary"	"bmsc"	"bmscs"	"ajc"	"rsvinduced"	"pkd"	"electrical"	"mtec"	"neurotrophin"	"transepithelial"	"stricture"	"dilation"	"pouch"	"ebd"	"success"	"cdassociated"	"endoscopic"	"antifibrotic"	"creeping"	"shortterm"	"auc"	"muscularis"	"redilation"	"stricturing"	"676"	"balloon"	"ileal"	"mucosae"	"anastomosis"	"antigp2"	"ascon"	"colectomy"	"metformin"	"t2d"	"cpgs"	"maternal"	"htn"	"smoking"	"10sup6sup"	"cotinine"	"esketamine"	"estrogen"	"fenofibrate"	"ht"	"ketamine"	"t47d"	"hsd17b13"	"mdd"	"gist"	"braf"	"stat6"	"aatk"	"mesenchymal"	"pdgfra"	"v600e"	"camta1"	"epithelioid"	"hemangioendothelioma"	"kit"	"solitary"	"stromal"	"wwtr1"	"chimeric"	"hippo"	"hpc"	"oncogenic"	"sarcoma"	"strong"	"010"	"colony"	"crest"	"telomeres"	"pombe"	"telomere"	"yeast"	"tel1p"	"heterochromatin"	"mrn"	"rif1"	"cerevisiae"	"excision"	"schizosaccharomyces"	"atm"	"budding"	"cl"	"mec1p"	"pef1p"	"saccharomyces"	"associate"	"doublestrand"	"elongation"	"evolutionarily"	"hairpin"	"longlived"	"telomeric"	"capped"	"consist"	"dsb"	"dsbs"	"biliary"	"larvae"	"intrahepatic"	"branching"	"erythroid"	"mpi"	"snapc4"	"bdh2"	"extraembryonic"	"gmp"	"mannose"	"mtx1"	"rac1"	"ysl"	"hydrolase"	"siderophore"	"snapc2"	"snapc4s445"	"threedimensional"	"3hydroxy"	"atglindependent"	"bdh2inactivated"	"cdk5r1a"	"conduit"	"zipp62"	"erk2"	"retinopathy"	"stz"	"apkc"	"fast"	"nondiabetic"	"oscillation"	"pkciota"	"prphrd2"	"streptozotocin"	"cd40"	"cognition"	"diabetesinduced"	"master"	"corepressor"	"decitabine"	"gata4"	"mgkg"	"aumtx"	"hcc"	"npm1"	"nuc013"	"selfreplication"	"hbf"	"coactivators"	"evolution"	"hemoglobin"	"pu1"	"terminaldifferentiation"	"controlled"	"hour"	"instead"	"monocyte"	"mutated"	"myc"	"neoplastic"	"noncytotoxic"	"rbcs"	"hsf1"	"fgf1"	"a549"	"slb"	"explant"	"aggregate"	"5utr"	"transient"	"vanilloid"	"work"	"unos"	"rating"	"allocation"	"ldkt"	"living"	"policy"	"5tier"	"evaluating"	"expectancy"	"listing"	"policies"	"travel"	"200104"	"201215"	"list"	"registry"	"residential"	"waiting"	"donation"	"financial"	"gt20"	"insurance"	"lost"	"kv15"	"internalization"	"ion"	"myo5b"	"paroxetine"	"grks"	"ikur"	"myo5a"	"recycling"	"highlight"	"steadystate"	"effort"	"gαq"	"quinidineinduced"	"formula"	"see"	"text"	"game"	"tfrt"	"collateral"	"alk"	"delivered"	"oar"	"radiationinduced"	"optimal"	"sensitive"	"sensitivities"	"consider"	"extremity"	"fractional"	"landscape"	"noncoding"	"nonsmall"	"optimize"	"sponge"	"behaviour"	"wtip"	"shwtip"	"ropos"	"cellmatrix"	"factin"	"glomerulosclerosis"	"morphology"	"neither"	"stable"	"ifit2"	"ifn"	"pkr"	"rax"	"interferon"	"sev"	"ripa"	"sting"	"ifit"	"ifit1"	"trif"	"irf8"	"tyr"	"activator"	"endosomal"	"generating"	"ifnstimulated"	"ifnβ"	"interferonstimulated"	"irf3mediated"	"isg"	"hsd3b1"	"crpc"	"extragonadal"	"dihydrotestosterone"	"1245c"	"3βhsd1"	"castrationresistant"	"dht"	"steroid"	"213"	"castration"	"cyp17a1"	"steroidal"	"3keto5αabiraterone"	"abiraterone"	"hsd3b11245c"	"inheritance"	"3βhydroxysteroid"	"5αreductase"	"enzymatic"	"galeterone"	"glucuronidation"	"inherited"	"intratumoral"	"ketoconazole"	"metabolized"	"nonsteroidal"	"prostatectomy"	"rnase"	"25a"	"akap7"	"azon"	"25oligoadenylate"	"ns2"	"mhv"	"oasrnase"	"pde"	"cwr22"	"nlrp3"	"viruses"	"antagonize"	"r667a"	"25pdes"	"doublestranded"	"eliminate"	"mef"	"oas1"	"oncolytic"	"efflux"	"pancr"	"dba2"	"4wf"	"akr"	"vatpase"	"abca1mediated"	"nascent"	"soat1"	"cyp4f13"	"unfolding"	"apoesupsup"	"ath26"	"acat1"	"allelic"	"confirm"	"α5β1"	"aminoterminal"	"downregulation"	"fibrogenic"	"frnkdeficient"	"gel"	"hypermotile"	"lpsinduced"	"mechanosensitive"	"erlotinib"	"cbl0137"	"irf9"	"sclc"	"stat"	"stat2"	"quinacrine"	"sos1"	"t387"	"ustat2"	"ustat3"	"ezh2"	"fact"	"isgf3"	"lys685"	"cdk"	"constitutive"	"greatly"	"jak"	"posttranslational"	"protumorigenic"	"ssrp1"	"thbs4"	"tgfβ1"	"tissuespecific"	"typespecific"	"manner"	"thrombospondin4"	"thrombospondins"	"weight"	"hyperglycemiainduced"	"heme"	"hsp90"	"fmn"	"nnos"	"radical"	"globin"	"sgc"	"ahsp"	"chaperone"	"crossdomain"	"involve"	"bay"	"bronchodilation"	"flavin"	"flavoprotein"	"hbγ"	"labile"	"s1179d"	"substitution"	"synthase"	"triad"	"calmodulin"	"catalyze"	"cyclase"	"explain"	"ferrous"	"nscs"	"newborn"	"tert"	"gap43"	"dgcs"	"excitatory"	"fluoxetine"	"setd5"	"alcoholfed"	"setd5supsup"	"sgz"	"5htr1a"	"aberrant"	"determination"	"epileptogenesis"	"give"	"hippocampusdependent"	"nsc"	"rabies"	"cornea"	"corneal"	"len"	"exou"	"bactericidal"	"wear"	"k6a"	"keratitis"	"lense"	"corticosteroid"	"inoculation"	"12 h"	"blotting"	"kamps"	"adherent"	"cd11c"	"corticosteroidpretreated"	"fluorescein"	"phospholipase"	"superficiallyinjured"	"susceptible"	"topical"	"toward"	"uninjured"	"confocal"	"cytokeratin"	"glycinerich"	"ntprobnp"	"pon2"	"corin"	"ctni"	"preeclampsia"	"tcb"	"pon2def"	"absolute"	"cardiomyocytes"	"nka"	"4872"	"adhf"	"natriuretic"	"ngl"	"gestational"	"spironolactone"	"cocl2"	"diuretic"	"ifngamma"	"tnfalpha"	"cdna"	"ganglioside"	"3t3"	"gm2"	"balbc"	"tnfr"	"ip10"	"il12"	"mig"	"skrc45"	"though"	"204"	"factorstimulated"	"fashion"	"jurkat"	"plateletderived"	"ab"	"abrogated"	"bmi"	"command"	"seeg"	"decoding"	"option"	"cursor"	"eegs"	"filtering"	"skull"	"recording"	"decoded"	"power"	"real"	"closedloop"	"assistive"	"bci"	"epidural"	"foot"	"brainmachine"	"detect"	"embedding"	"generate"	"movementassist"	"paralyzed"	"planning"	"attempted"	"decoder"	"offline"	"piece"	"cimp"	"island"	"dicer"	"dmrs"	"hypermethylated"	"noncimp"	"regulated"	"transcriptome"	"anesthetic"	"epigenetically"	"goldmine"	"hct116"	"indolent"	"mbdisolated"	"methylaction"	"methylated"	"silenced"	"spo2"	"hypoxemia"	"sao2"	"paw"	"microbubbles"	"shunt"	"6 months"	"carboxyhemoglobin"	"hpah"	"poph"	"implication"	"methemoglobin"	"pulse"	"rhc"	"catheterization"	"ejection"	"heritable"	"oxyhemoglobin"	"receiving"	"treprostinil"	"≥"	"100 mml"	"adjusting"	"myelocortical"	"plp"	"fmr1ko"	"pns"	"al"	"rpmc"	"whitematter"	"fxs"	"ca1"	"fragile"	"juxtaparanodal"	"mental"	"mitochondriaser"	"vaccination"	"immunization"	"tsc"	"αlactalbumin"	"amhr2cd"	"inhibinα"	"testicular"	"p25"	"pelvic"	"selfproteins"	"amhr2"	"amhr2ed"	"autochthonous"	"cancerfree"	"eocs"	"estrous"	"immunogenic"	"immunoprevention"	"aqp4"	"lymphoablation"	"matg"	"alloreactive"	"alloantibody"	"baff"	"immunosuppression"	"lymphoablative"	"cd40cd154"	"reconstitution"	"thymopoiesis"	"thymus"	"april"	"aqps"	"cd40independent"	"naïve"	"neutralization"	"prolong"	"requirement"	"et1"	"pet1"	"cabg"	"hyperthyroid"	"enlarged"	"positively"	"atria"	"endothelin1"	"etiology"	"euthyroid"	"hyperthyroidism"	"electrophysiological"	"fotreated"	"mitral"	"ivus"	"intravascular"	"spectral"	"distensibility"	"realtime"	"segmentation"	"autoregressive"	"calcified"	"scheme"	"099"	"backscattered"	"border"	"calcifiednecrotic"	"classic"	"descending"	"fibrolipidic"	"fourier"	"gammon"	"lumen"	"luminal"	"normalized"	"spectra"	"volumetric"	"accurately"	"depiction"	"entire"	"gaussian"	"invivo"	"occlusion"	"nav15"	"scn4b"	"pgly8ser"	"ubc9"	"mog1"	"sumo1"	"anril"	"hyperpermeability"	"sar1a"	"sar1b"	"phlda3"	"losartan"	"sudden"	"br"	"e83d"	"fgf23"	"mapk"	"ptrp403"	"ubiquitination"	"vecadherin"	"xlh"	"deconvolution"	"paper"	"nonparametric"	"inla"	"kernel"	"nature"	"depending"	"motivated"	"approximation"	"beton"	"clustering"	"contaminated"	"diffusion"	"dti"	"efficient"	"estimator"	"markov"	"mixedeffects"	"multidimensional"	"neuroimaging"	"package"	"practical"	"simulated"	"approximate"	"auxiliary"	"pronephric"	"xenopus"	"celf1"	"nephron"	"pkd1"	"gprotein"	"tubular"	"micrornas"	"polycystin"	"scp2"	"cholera"	"laevis"	"reabsorption"	"gnas"	"gproteincoupled"	"pkd2"	"lairage"	"transported"	"pen"	"pretransport"	"ifnar"	"midjourney"	"posttransport"	"transportation"	"aggression"	"bellynosing"	"differ"	"drank"	"drinking"	"eating"	"immediately"	"jejunum"	"lairaged"	"long"	"lying"	"returned"	"rooting"	"sitting"	"standing"	"ebm"	"descemets"	"perlecan"	"keratocytes"	"prk"	"cd45"	"nidogen1"	"fibrocyte"	"nidogen2"	"ptk"	"lamina"	"vimentin"	"αsma"	"45d"	"fully"	"keratectomy"	"modulating"	"regenerate"	"six"	"sma"	"90d"	"alphasmooth"	"femtosecond"	"haze"	"ihc"	"lama3"	"photorefractive"	"protease"	"hatl4"	"fvii"	"nglycosylation"	"serine"	"pcsk6"	"anp"	"folding"	"hek293"	"nglycans"	"t555iq568p"	"calnexinassisted"	"netosis"	"pcsk6mediated"	"placental"	"prothrombin"	"trophoblast"	"trypsinlike"	"abolishing"	"calnexin"	"date"	"sema3c"	"hyperthermia"	"vasorin"	"accelerator"	"linear"	"extra"	"abscopal"	"antipd1"	"autocrineparacrine"	"communicate"	"gliomaquot"	"separation"	"rbc"	"magnet"	"cmcs"	"erythrocyte"	"gametocyte"	"paramagnetic"	"separator"	"detection"	"permanent"	"rdt"	"centrifugation"	"labelfree"	"aperture"	"ctv"	"cylindrical"	"debulking"	"epcam"	"ferric"	"lysis"	"magnetophoretic"	"maturing"	"maximum"	"lman1"	"fviii"	"mcfd2"	"cargo"	"sec23b"	"efhand"	"f5f8d"	"fvfviii"	"lman1mcfd2"	"sec23a"	"secretory"	"viii"	"copii"	"crd"	"glycoprotein"	"glycosylation"	"hemophilia"	"lethality"	"lman1deficient"	"abolish"	"bleeding"	"doubly"	"ergic53"	"ergolgi"	"intermediate"	"paralog"	"sec23"	"α1antitrypsin"	"aat"	"ergic"	"ertogolgi"	"malat1"	"mir221222"	"mir33b"	"mm1r"	"pci32765"	"antimalat1"	"bcl6"	"bcl9"	"fdc"	"lymphoma"	"mm1s"	"pim1"	"prdm1"	"swcnt"	"btk"	"ecypa"	"mir305p"	"mirsnps"	"prognosis"	"puma"	"selectively"	"blymphocytes"	"colonize"	"dexamethasone"	"mir"	"mir30"	"anal"	"sphincter"	"plasmid"	"sham"	"pudendal"	"resting"	"incontinence"	"mcp3"	"sdf1"	"cellderived"	"injected"	"msc"	"emg"	"permacol"	"pnc"	"sexual"
+1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	1	1	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	1	0	0	0	1	1	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	1	0	0	1	0	1	0	0	1	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	1	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	1	1	0	0	1	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	1	0	1	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	1	0	1	1	0	0	1	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	1	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	1	1	1	1	1	1	1	1	1	0	0	1	1	0	1	1	1	1	1	1	0	0	1	1	1	1	0	1	1	0	0	0	1	0	1	0	1	0	0	1	1	1	1	1	0	0	0	0	1	1	1	1	1	1	0	0	0	1	1	1	0	1	1	0	0	1	1	1	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	1	1	1	0	1	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	0	0	1	1	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	1	1	0	0	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	0	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	0	1	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	0	0	1	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	1	1	1	0	0	0	1	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	1	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	1	1	1	1	1	0	1	1	1	1	0	0	1	0	0	1	0	1	1	1	0	0	0	0	1	1	1	1	1	0	0	1	0	0	0	1	0	0	1	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	1	0	0	0	1	1	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	1	0	0	0	1	1	1	1	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	1	0	1	0	0	1	0	1	1	1	0	1	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	1	0	1	1	0	0	1	1	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	1	1	1	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	1	1	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	1	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	1	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	1	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	0	1	0	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	1	0	0	1	0	1	0	1	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	1	0	1	0	0	0	0	1	0	0	0	1	0	0	0	1	0	1	0	0	0	0	1	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	1	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	1	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	1	1	1	0	0	0	0	1	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	1	0	1	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	1	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	1	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	1	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	1	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	0	1	0	1	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	1	0	1	1	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	1	1	1	0	0	1	1	1	0	0	1	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	1	1	1	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	1	0	1	0	0	0	0	1	1	0	0	0	1	1	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	1	1	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	1	0	0	0	1	0	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	0	1	0	0	0	1	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	1	0	0	0	1	0	0	0	0	1	0	1	1	0	0	0	0	1	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	1	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,24 @@
+<macros>
+    <token name="@VERSION@">0.0.1</token>
+
+    <xml name="requirements">
+        <requirements>
+            <yield/>
+            <container type="docker">lalgroup/simtext:@VERSION@</container>
+        </requirements>
+    </xml>
+
+    <xml name="stdio">
+        <stdio>
+             <exit_code level="fatal" range="1:"/>
+        </stdio>
+    </xml>
+
+    <xml name="citations">
+        <citations>
+            <citation type="doi">10.1101/2020.07.06.190629</citation>
+        </citations>
+    </xml>
+
+</macros>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pmids_to_pubtator_matrix.R	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,247 @@
+#!/usr/bin/env Rscript
+#tool: pmids_to_pubtator_matrix
+#
+#The tool uses all PMIDs per row and extracts "Gene", "Disease", "Mutation", "Chemical" and "Species" terms of the 
+#corresponding abstracts, using PubTator annotations. The user can choose from which categories terms should be extracted. 
+#The extracted terms are united in one large binary matrix, with 0= term not present in abstracts of that row and 1= term 
+#present in abstracts of that row. The user can decide if the extracted scientific terms should be extracted and used as 
+#they are or if they should be grouped by their geneIDs/ meshIDs (several terms can often be grouped into one ID). 
+#äAlso, by default all terms are extracted, otherwise the user can specify a number of most frequent words to be extracted per row.
+#
+#Input: Output of abstracts_by_pmids or tab-delimited table with columns containing PMIDs. 
+#The names of the PMID columns should start with "PMID", e.g. "PMID_1", "PMID_2" etc.
+#
+#Output: Binary matrix in that each column represents one of the extracted terms.
+#
+# usage: $ pmids_to_pubtator_matrix.R [-h] [-i INPUT] [-o OUTPUT] [-n NUMBER] 
+# [-c {Genes,Diseases,Mutations,Chemicals,Species} [{Genes,Diseases,Mutations,Chemicals,Species} ...]]
+# 
+# optional arguments:
+#   -h, --help                 show help message
+#   -i INPUT, --input INPUT    input file name. add path if file is not in workind directory
+#   -n NUMBER, --number NUMBER Number of most frequent terms/IDs to extract. By default all terms/IDs are extracted.
+#   -o OUTPUT, --output OUTPUT output file name. [default "pmids_to_pubtator_matrix_output"]
+#   -c {Gene,Disease,Mutation,Chemical,Species} [{Genes,Diseases,Mutations,Chemicals,Species} ...], --categories {Gene,Disease,Mutation,Chemical,Species} [{Gene,Disease,Mutation,Chemical,Species} ...]
+#      Pubtator categories that should be considered.  [default "('Gene', 'Disease', 'Mutation','Chemical')"]
+
+if ( '--install_packages' %in% commandArgs()) {
+  print('Installing packages')
+  if (!require('argparse')) install.packages('argparse',repo="http://cran.rstudio.com/");
+  if (!require('stringr')) install.packages('stringr',repo="http://cran.rstudio.com/");
+  if (!require('RCurl')) install.packages('RCurl',repo="http://cran.rstudio.com/");
+  if (!require('stringi')) install.packages('stringi',repo="http://cran.rstudio.com/");
+}
+
+suppressPackageStartupMessages(library("argparse"))
+library('stringr')
+library('stringi')
+library('RCurl')
+
+parser <- ArgumentParser()
+
+parser$add_argument("-i", "--input", 
+                    help = "input fie name. add path if file is not in workind directory")
+parser$add_argument("-o", "--output", default="pmids_to_pubtator_matrix_output",
+                    help = "output file name. [default \"%(default)s\"]")
+parser$add_argument("-c", "--categories", choices=c("Gene", "Disease", "Mutation", "Chemical", "Species"), nargs="+", 
+                    default= c("Gene", "Disease", "Mutation", "Chemical"),
+                    help = "Pubtator categories that should be considered. [default \"%(default)s\"]")
+parser$add_argument("-b", "--byid", action="store_true", default=FALSE,
+                    help="If you want to find common gene IDs / mesh IDs instead of scientific terms.")
+parser$add_argument("-n", "--number", default=NULL, type="integer",
+                    help="Number of most frequent terms/IDs to extract. By default all terms/IDs are extracted.")
+parser$add_argument("--install_packages", action="store_true", default=FALSE,
+                    help="If you want to auto install missing required packages.")
+
+args <- parser$parse_args()
+
+
+data = read.delim(args$input, stringsAsFactors=FALSE, header = TRUE, sep='\t')
+
+pmid_cols_index <- grep(c("PMID"), names(data))
+word_matrix = data.frame()
+dict.table = data.frame()
+pmids_count <- 0
+pubtator_max_ids = 100
+
+get_pubtator_terms = function(pmids, categories){
+
+      table = NULL
+      for (pmid_split in split(pmids, ceiling(seq_along(pmids)/pubtator_max_ids))){
+        out.data = NULL
+        try_num <- 1
+        t_0 <- Sys.time()
+        
+        while(TRUE) {
+        
+        # Timing check: kill at 3 min
+        if (try_num > 1){
+          cat("Connection problem. Please wait. Try number:",try_num,"\n") 
+          Sys.sleep(time = 2*try_num)
+        }
+        try_num <- try_num + 1
+
+        t_1 <- Sys.time()
+        
+        if(as.numeric(difftime(t_1, t_0, units = "mins")) > 3){
+          message("Killing the request! Something is not working. Please, try again later","\n")
+          return(table)
+        }
+        out.data <- tryCatch({    
+          getURL(paste("https://www.ncbi.nlm.nih.gov/research/pubtator-api/publications/export/pubtator?pmids=", 
+                       paste(pmid_split, collapse=","), sep = ""))
+        }, error = function(e) {
+          print(e)
+          next
+        }, finally = {
+            Sys.sleep(0)
+        })
+
+      if(!is.null(out.data)){
+        out.data = unlist(strsplit(out.data, "\n", fixed = T))
+        
+        # skip first few lines, is this needed?
+        for (i in 3:length(out.data)) {
+          temps = unlist(strsplit(out.data[i], "\t", fixed = T))
+          if (length(temps) == 5) {
+            # make 5 be 6
+            temps = c(temps, NA)
+          }
+          if (length(temps) == 6) {
+            # keep only 6
+            table = rbind(table, temps)
+          }
+        }
+        break
+      }
+      
+     } #end while loop
+    }
+      
+    index.categories = c()
+    categories = as.character(unlist(categories))
+    
+    if(ncol(table) == 6){
+      
+          for(i in categories){
+            tmp.index = grep(TRUE, i == as.character(table[,5]))
+            
+            if(length(tmp.index) > 0){
+              index.categories = c(index.categories,tmp.index)
+            } 
+          }
+        
+        table = as.data.frame(table, stringsAsFactors=FALSE)
+        table = table[index.categories,c(4,6)]
+        table = table[!is.na(table[,2]),]
+        table = table[!(table[,2] == "NA"),]
+        table = table[!(table[,1] == "NA"),]
+        
+        if(args$byid){
+          if(!is.null(args$number)){
+            #retrieve top X mesh.ids
+            table.mesh = as.data.frame(table(table[,2]))
+            colnames(table.mesh)[1] = "mesh.id"
+            table = table[order(table.mesh$Freq, decreasing = TRUE),]
+            table = table[1:min(args$number, nrow(table.mesh)),]
+            table.mesh$mesh.id = as.character(table.mesh$mesh.id)
+            #subset table for top X mesh.ids
+            table = table[which(as.character(table$V6) %in% as.character(table.mesh$mesh.id)),]
+            table = table[!duplicated(table[,2]),]
+          }else{
+           table = table[!duplicated(table[,2]),]
+          }
+        } else {
+          if(!is.null(args$number)){
+            table[,1] = tolower(as.character(table[,1]))
+            table = as.data.frame(table(table[,1]))
+            colnames(table)[1] = "term"
+            table = table[order(table$Freq, decreasing = TRUE),]
+            table = table[1:min(args$number, nrow(table)),]
+            table$term = as.character(table$term)
+            
+          }else{
+            table[,1] = tolower(as.character(table[,1]))
+            table = table[!duplicated(table[,1]),]
+          }
+        }
+          
+      return(table)
+       
+      } else {
+      return(NULL)
+      }
+    }
+
+
+#for all PMIDs of a row get PubTator terms and add them to the matrix
+for (i in 1:nrow(data)){
+  
+  pmids = as.character(data[i,pmid_cols_index])
+  pmids = pmids[!pmids == "NA"]
+  
+
+     if ( (pmids_count > 10000)){
+        cat("Break (10s) to avoid killing of requests. Please wait.",'\n')
+        Sys.sleep(10)
+        pmids_count = 0
+     }
+  
+  pmids_count = pmids_count + length(pmids)
+
+    #get puptator terms with get_pubtator_terms function
+    if (length(pmids) >0){
+      table = get_pubtator_terms(pmids, args$categories)
+      
+      if(!is.null(table)){
+        
+        colnames(table)= c("term","mesh.id")
+        
+        # add data in binary matrix
+        if (args$byid){
+          mesh.ids = as.character(table$mesh.id)
+          if (length(mesh.ids) > 0 ){
+            word_matrix[i,mesh.ids] <- 1 
+            cat(length(mesh.ids), " IDs for PMIDs of row", i," were added",'\n')
+            # add data in dictionary
+            dict.table = rbind(dict.table, table)
+            dict.table = dict.table[!duplicated(as.character(dict.table[,2])),]
+          }
+        } else {
+          terms = as.character(table[,1])
+          if (length(terms) > 0 ){
+            word_matrix[i,terms] <- 1 
+            cat(length(terms), " terms for PMIDs of row", i," were added.",'\n')
+          }
+         }
+        }
+      
+    } else {
+      cat("No terms for PMIDs of row", i," were found.",'\n')
+   }
+  }
+
+  if (args$byid){
+  #change column names of matrix: exchange mesh ids/ids with term
+  index_names = match(names(word_matrix), as.character(dict.table[[2]]))
+  names(word_matrix) = dict.table[index_names,1]
+  }
+
+colnames(word_matrix) = gsub("[^[:print:]]","",colnames(word_matrix))
+colnames(word_matrix) = gsub('\"', "", colnames(word_matrix), fixed = TRUE)
+
+#merge duplicated columns
+word_matrix = as.data.frame(do.call(cbind, by(t(word_matrix),INDICES=names(word_matrix),FUN=colSums)))
+
+#save binary matrix
+word_matrix <- as.matrix(word_matrix)
+word_matrix[is.na(word_matrix)] <- 0
+cat("Matrix with ",nrow(word_matrix)," rows and ",ncol(word_matrix)," columns generated.","\n")
+#write.table(word_matrix, args$output)
+write.table(word_matrix, args$output, row.names = FALSE, sep = '\t')
+
+
+
+
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pmids_to_pubtator_matrix.xml	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,55 @@
+  <tool id="pmids_to_pubtator_matrix" name="pmids_to_pubtator_matrix" version="@VERSION@">
+    <description>Per row, extract scientific terms from PMIDs susing PubTator and generate a binary matrix</description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements">
+      <requirement type="package" version="2.0.1">r-argparse</requirement>
+      <requirement type="package" version="1.4.0">r-stringr</requirement>
+      <requirement type="package" version="1.95_4.12">r-rcurl</requirement>
+      <requirement type="package" version="1.4.3">r-stringi</requirement>
+    </expand>
+    <expand macro="stdio"/>
+    <command><![CDATA[Rscript 
+      '${__tool_directory__}/pmids_to_pubtator_matrix.R'
+      --input '$input'
+      --output '$output'
+      --number '$number'
+      $byid
+      #for $category in $categories:
+      --categories '$category'
+      #end for
+      ]]>
+    </command>
+    <inputs>
+      <param argument="--input" label="Input file" name="input" optional="false" type="data" format="tabular" help="input"/>
+      <param argument="--categories" name="categories" type="select" label="categories" multiple="true" >
+        <option value="Gene">Genes</option>
+        <option value="Disease">Diseases</option>
+        <option value="Mutation">Mutations</option>
+        <option value="Chemical">Chemicals</option>
+        <option value="Species">Species</option>
+      </param>
+       <param argument="--byid" label="If you want to find common gene IDs / mesh IDs instead of specific scientific terms." name="byid" type="boolean" truevalue="--byid" falsevalue="" help="byid" checked="false"/>
+        <param argument="--number" label="Number of most frequent terms/IDs to extract." name="number" optional="true" type="integer" help="number" value="50"/>
+    </inputs>
+    <outputs>
+      <data format="tabular" name="output" />
+    </outputs>
+    <tests>
+        <test>
+          <param name="input" value="pubmed_by_queries_output" ftype="tabular"/>
+          <output name="output" value="pmids_to_pubtator_matrix_output"/>
+        </test>
+    </tests>
+    <help><![CDATA[
+
+The tool uses all PMIDs per row and extracts "Gene", "Disease", "Mutation", "Chemical" and "Species" terms of the corresponding abstracts, using PubTator annotations. The user can choose from which categories terms should be extracted. The extracted terms are united in one large binary matrix, with 0= term not present in abstracts of that row and 1= term present in abstracts of that row. The user can decide if the scientific terms should be extracted and used as they are or if they should be grouped by their geneIDs/ meshIDs (several terms are often grouped into one ID). The the user can specify a number of most frequent words to extract per row.
+
+Input: Output of 'abstracts_by_pmids' tool, or tab-delimited table with columns containing PMIDs. The names of the PMID columns should start with "PMID", e.g. "PMID_1", "PMID_2" etc.
+
+Output: Binary matrix in that each column represents one of the extracted terms.
+
+        ]]></help>
+    <expand macro="citations"/>
+</tool>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pubmed_by_queries.R	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,236 @@
+#!/usr/bin/env Rscript
+#tool: pubmed_by_queries
+#
+#This tool uses a set of search queries to download a defined number of abstracts or PMIDs for search query from PubMed. 
+#PubMed's search rules and syntax apply.
+# 
+#Input: Tab-delimited table with search queries in a column starting with "ID_", e.g. "ID_gene" if search queries are genes. 
+#
+# Output: Input table with additional columns with PMIDs or abstracts (--abstracts) from PubMed.
+#
+#Usage: $ pubmed_by_queries.R [-h] [-i INPUT] [-o OUTPUT] [-n NUMBER] [-a] [-k KEY]
+# 
+# optional arguments:
+# -h, --help                  show this help message and exit
+# -i INPUT, --input INPUT     input file name. add path if file is not in working directory
+# -o OUTPUT, --output OUTPUT  output file name. [default "pubmed_by_queries_output"]
+# -n NUMBER, --number NUMBER  number of PMIDs or abstracts to save per ID [default "5"]
+# -a, --abstract              if abstracts instead of PMIDs should be retrieved use --abstracts 
+# -k KEY, --key KEY           if NCBI API key is available, add it to speed up the fetching of pubmed data
+
+if ( '--install_packages' %in% commandArgs()) {
+  print('Installing packages')
+  if (!require('argparse')) install.packages('argparse',repo="http://cran.rstudio.com/");
+  if (!require('easyPubMed')) install.packages('easyPubMed',repo="http://cran.rstudio.com/");
+}
+
+suppressPackageStartupMessages(library("argparse"))
+suppressPackageStartupMessages(library("easyPubMed"))
+
+parser <- ArgumentParser()
+parser$add_argument("-i", "--input", 
+                    help = "input fie name. add path if file is not in working directory")
+parser$add_argument("-o", "--output", default="pubmed_by_queries_output",
+                    help = "output file name. [default \"%(default)s\"]")
+parser$add_argument("-n", "--number", type="integer", default=5, 
+                    help="Number of PMIDs (or abstracts) to save per  ID. [default \"%(default)s\"]")
+parser$add_argument("-a", "--abstract", action="store_true", default=FALSE,
+                    help="if abstracts instead of PMIDs should be retrieved use --abstracts ")
+parser$add_argument("-k", "--key", type="character", 
+                    help="if ncbi API key is available, add it to speed up the download of pubmed data")
+parser$add_argument("--install_packages", action="store_true", default=FALSE,
+                    help="If you want to auto install missing required packages.")
+args <- parser$parse_args()
+
+MAX_WEB_TRIES = 100
+
+data = read.delim(args$input, stringsAsFactors=FALSE)
+
+id_col_index <- grep("ID_", names(data))
+
+pubmed_data_in_table <- function(data, row, query, number, key, abstract){
+if (is.null(query)){print(data)}
+    pubmed_search <- get_pubmed_ids(query, api_key = key)
+
+    if(as.numeric(pubmed_search$Count) == 0){
+      cat("No PubMed result for the following query: ", query, "\n")
+      return(data)
+      
+    } else if (abstract == FALSE) { # fetch PMIDs
+          
+            myPubmedURL <- paste("https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?", 
+                                 "db=pubmed&retmax=", number, "&term=", pubmed_search$OriginalQuery, "&usehistory=n", sep = "")
+            # get ids
+            idXML <- c()
+            for (i in 1:MAX_WEB_TRIES){
+              tryCatch({
+                IDconnect <- suppressWarnings(url(myPubmedURL, open = "rb", encoding = "UTF8"))
+                idXML <- suppressWarnings(readLines(IDconnect, warn = FALSE, encoding = "UTF8"))
+                suppressWarnings(close(IDconnect))
+                break
+              }, error = function(e) {
+                print(paste('Error getting URL, sleeping',2*i,'seconds.'))
+                print(e)
+                Sys.sleep(time = 2*i)
+              })
+          }
+
+            PMIDs = c()
+            
+            for (i in 1:length(idXML)) {
+              if (grepl("^<Id>", idXML[i])) {
+                pmid <- custom_grep(idXML[i], tag = "Id", format = "char")
+                PMIDs <- c(PMIDs, as.character(pmid[1]))
+              }
+            }
+          
+
+            if(length(PMIDs)>0){
+              data[row,sapply(1:length(PMIDs),function(i){paste0("PMID_",i)})] <- PMIDs
+              cat(length(PMIDs)," PMIDs for ",query, " are added in the table.",  "\n")
+             }
+
+            return(data) 
+      
+    } else if (abstract == TRUE) { # fetch abstracts and title text
+          
+          efetch_url = paste("https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?", 
+                             "db=pubmed&WebEnv=", pubmed_search$WebEnv, "&query_key=", pubmed_search$QueryKey, 
+                             "&retstart=", 0, "&retmax=", number, 
+                             "&rettype=", "null","&retmode=", "xml", sep = "")
+
+          api_key <- pubmed_search$APIkey
+          if (!is.null(api_key)) {
+            efetch_url <- paste(efetch_url, "&api_key=", api_key, sep = "")
+          }
+
+          # initialize
+          out.data <- NULL
+          try_num <- 1
+          t_0 <- Sys.time()
+          
+          # Try to fetch results
+          while(is.null(out.data)) {
+            
+              # Timing check: kill at 3 min
+              if (try_num > 1){
+                Sys.sleep(time = 2*try_num)
+                cat("Problem to receive PubMed data or error is received. Please wait. Try number:",try_num,"\n") 
+                }
+
+              t_1 <- Sys.time()
+              
+              if(as.numeric(difftime(t_1, t_0, units = "mins")) > 3){
+                message("Killing the request! Something is not working. Please, try again later","\n")
+                return(data)
+              }
+              
+              # ENTREZ server connect
+              out.data <- tryCatch({    
+                tmpConnect <- suppressWarnings(url(efetch_url, open = "rb", encoding = "UTF8"))
+                suppressWarnings(readLines(tmpConnect, warn = FALSE, encoding = "UTF8"))
+              }, error = function(e) {
+                print(e)
+              }, finally = {
+                try(suppressWarnings(close(tmpConnect)), silent = TRUE)
+              })  
+              
+              # Check if error
+              if (!is.null(out.data) && 
+                  class(out.data) == "character" &&
+                  grepl("<ERROR>", substr(paste(utils::head(out.data, n = 100), collapse = ""), 1, 250))) {
+                  out.data <- NULL
+              }
+              try_num <- try_num + 1
+          }
+          
+          if (is.null(out.data)) {
+            message("Killing the request! Something is not working. Please, try again later","\n")
+            return(data)
+          } 
+      
+          # process xml data
+          xml_data <- paste(out.data, collapse = "")
+          
+          # articles to list
+          xml_data <- strsplit(xml_data, "<PubmedArticle(>|[[:space:]]+?.*>)")[[1]][-1]
+          xml_data <- sapply(xml_data, function(x) {
+                #trim extra stuff at the end of the record
+                if (!grepl("</PubmedArticle>$", x))
+                  x <- sub("(^.*</PubmedArticle>).*$", "\\1", x) 
+                # Rebuid XML structure and proceed
+                x <- paste("<PubmedArticle>", x)
+                gsub("[[:space:]]{2,}", " ", x)}, 
+                USE.NAMES = FALSE, simplify = TRUE)
+          
+          #titles
+          titles = sapply(xml_data, function(x){
+              x = custom_grep(x, tag="ArticleTitle", format="char")
+              x <- gsub("</{0,1}i>", "", x, ignore.case = T)
+              x <- gsub("</{0,1}b>", "", x, ignore.case = T)
+              x <- gsub("</{0,1}sub>", "", x, ignore.case = T)
+              x <- gsub("</{0,1}exp>", "", x, ignore.case = T)
+              if (length(x) > 1){
+                x <- paste(x, collapse = " ", sep = " ")
+              } else if (length(x) < 1) {
+                x <- NA
+              }
+              x
+            }, 
+            USE.NAMES = FALSE, simplify = TRUE)
+
+          # abstracts
+          abstract.text = sapply(xml_data, function(x){
+            custom_grep(x, tag="AbstractText", format="char")}, 
+            USE.NAMES = FALSE, simplify = TRUE)
+          
+          abstracts <- sapply(abstract.text, function(x){
+                  if (length(x) > 1){
+                    x <- paste(x, collapse = " ", sep = " ")
+                    x <- gsub("</{0,1}i>", "", x, ignore.case = T)
+                    x <- gsub("</{0,1}b>", "", x, ignore.case = T)
+                    x <- gsub("</{0,1}sub>", "", x, ignore.case = T)
+                    x <- gsub("</{0,1}exp>", "", x, ignore.case = T)
+                  } else if (length(x) < 1) {
+                    x <- NA
+                  } else {
+                    x <- gsub("</{0,1}i>", "", x, ignore.case = T)
+                    x <- gsub("</{0,1}b>", "", x, ignore.case = T)
+                    x <- gsub("</{0,1}sub>", "", x, ignore.case = T)
+                    x <- gsub("</{0,1}exp>", "", x, ignore.case = T)
+                  }
+              x
+          }, 
+          USE.NAMES = FALSE, simplify = TRUE)
+          
+          #add title to abstracts
+          if (length(titles) == length(abstracts)){
+            abstracts = paste(titles,  abstracts)
+          }
+
+          #add abstracts to data frame
+          if(length(abstracts)>0){
+            data[row,sapply(1:length(abstracts),function(i){paste0("ABSTRACT_",i)})] <- abstracts
+            cat(length(abstracts)," abstracts for ",query, " are added in the table.",  "\n")
+          }
+          
+          return(data)
+        }
+    }
+
+for(i in 1:nrow(data)){
+    data = tryCatch(pubmed_data_in_table(data= data, 
+                           row= i,
+                           query= data[i,id_col_index],
+                           number= args$number,
+                           key= args$key,
+                           abstract= args$abstract), error=function(e){
+                             print('main error')
+                             print(e)
+                             Sys.sleep(5)
+                             })
+    }
+
+write.table(data, args$output, append = FALSE, sep = '\t', row.names = FALSE, col.names = TRUE)
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/simtext_app.R	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,492 @@
+#!/usr/bin/env Rscript
+### SimText App ###
+#
+# The tool enables the exploration of data generated by text_to_wordmatrix or pmids_to_pubtator_matrix in a locally run ShinyApp. Features are word clouds for each initial search query, dimension reduction and hierarchical clustering of the binary matrix, and a table with words and their frequency among the search queries. 
+# 
+# Input:
+#   
+#   1)	Input 1: 
+#   Tab-delimited table with 
+# - column with search queries starting with "ID_", e.g. "ID_gene" if initial search queries were genes 
+# - column(s) with grouping factor(s) to compare pre-existing categories of the initial search queries with the grouping based on text. The column names should start with "GROUPING_". If the column name is "GROUPING_disorder", "disorder" will be shown as a grouping variable in the app.
+#  2)	Input 2: 
+#   Output of text_to_wordmatrix or pmids_to_pubtator_matrix, or binary matrix.
+# 
+# optional arguments:
+# -h, --help                    show help message
+# -i INPUT, --input INPUT       input file name. add path if file is not in working directory
+# -m MATRIX, --matrix MATRIX    matrix file name. add path if file is not in working directory
+# -p PORT, --port PORT          specify port, otherwise randomly selected
+#
+#Output: 
+#Shiny app with word clouds, dimensionality reduction plot, dendrogram of hierarchical clustering and table with words and their frequency among the entities.
+#
+#Packages
+
+if ( '--install_packages' %in% commandArgs()) {
+  print('Installing packages')
+  if (!require('shiny')) install.packages('shiny', repo="http://cran.rstudio.com/");
+  if (!require('plotly')) install.packages('plotly', repo="http://cran.rstudio.com/");
+  if (!require('DT')) install.packages('DT', repo="http://cran.rstudio.com/");
+  if (!require('shinycssloaders')) install.packages('shinycssloaders', repo="http://cran.rstudio.com/");
+  if (!require('shinythemes')) install.packages('shinythemes', repo="http://cran.rstudio.com/");
+  if (!require('tableHTML')) install.packages('tableHTML', repo="http://cran.rstudio.com/");
+  if (!require('argparse')) install.packages('argparse', repo="http://cran.rstudio.com/");
+  if (!require('PubMedWordcloud')) install.packages('PubMedWordcloud', repo="http://cran.rstudio.com/");
+  if (!require('ggplot2')) install.packages('ggplot2', repo="http://cran.rstudio.com/");
+  if (!require('stringr')) install.packages('stringr', repo="http://cran.rstudio.com/");
+  if (!require('tidyr')) install.packages('tidyr', repo="http://cran.rstudio.com/");
+  if (!require('magrittr')) install.packages('magrittr', repo="http://cran.rstudio.com/");
+  if (!require('plyr')) install.packages('plyr', repo="http://cran.rstudio.com/");
+  if (!require('ggpubr')) install.packages('ggpubr', repo="http://cran.rstudio.com/");
+  if (!require('rafalib')) install.packages('rafalib', repo="http://cran.rstudio.com/");
+  if (!require('RColorBrewer')) install.packages('RColorBrewer', repo="http://cran.rstudio.com/");
+  if (!require('dendextend')) install.packages('dendextend', repo="http://cran.rstudio.com/");
+  if (!require('Rtsne')) install.packages('Rtsne', repo="http://cran.rstudio.com/");
+  if (!require('umap')) install.packages('umap', repo="http://cran.rstudio.com/");
+}
+
+suppressPackageStartupMessages(library("shiny"))
+suppressPackageStartupMessages(library("plotly"))
+suppressPackageStartupMessages(library("DT"))
+suppressPackageStartupMessages(library("shinycssloaders"))
+suppressPackageStartupMessages(library("shinythemes"))
+suppressPackageStartupMessages(library("tableHTML"))
+suppressPackageStartupMessages(library("argparse"))
+suppressPackageStartupMessages(library("PubMedWordcloud"))
+suppressPackageStartupMessages(library("ggplot2"))
+suppressPackageStartupMessages(library("stringr"))
+suppressPackageStartupMessages(library("tidyr"))
+suppressPackageStartupMessages(library("magrittr"))
+suppressPackageStartupMessages(library("plyr"))
+suppressPackageStartupMessages(library("ggpubr"))
+suppressPackageStartupMessages(library("rafalib"))
+suppressPackageStartupMessages(library("RColorBrewer"))
+suppressPackageStartupMessages(library("dendextend"))
+suppressPackageStartupMessages(library("Rtsne"))
+suppressPackageStartupMessages(library("umap"))
+
+#command arguments
+parser <- ArgumentParser()
+parser$add_argument("-i", "--input", 
+                    help = "input file name. add path if file is not in working directory")
+parser$add_argument("-m", "--matrix", default= NULL,
+                    help = "matrix file name. add path if file is not in working directory")
+parser$add_argument("--host", default=NULL,
+                    help="Specify host")
+parser$add_argument("-p", "--port", type="integer", default=NULL,
+                    help="Specify port, otherwise randomly select")
+parser$add_argument("--install_packages", action="store_true", default=FALSE,
+                    help="If you want to auto install missing required packages.")
+args <- parser$parse_args()
+
+# Set host
+if(!is.null(args$host)){
+  options(shiny.host = args$host)
+}
+
+# Set port
+if(!is.null(args$port)){
+  options(shiny.port = args$port)
+}
+  
+#load data
+data = read.delim(args$input, stringsAsFactors=FALSE)
+index_grouping = grep("GROUPING_", names(data))
+names(data)[index_grouping] = sub(".*_", "",names(data)[index_grouping])
+colindex_id = grep("^ID_", names(data))
+
+matrix = read.delim(args$matrix, check.names = FALSE, header = TRUE, sep='\t')
+matrix = (as.matrix(matrix)>0) *1 #transform matrix to binary matrix
+           
+##### UI ######
+ui <- shinyUI(fluidPage(
+  navbarPage(theme = shinytheme("flatly"), id = "inTabset",selected = "panel1",
+             title = "SimText",
+             tabPanel("Home", value = "panel1",
+             tabPanel("Results", value = "panel1",
+      fluidRow(width=12, offset=0,
+           column(width = 4,  style = "padding-right: 0px",
+                  wellPanel(h5(strong("ID of interest")),
+                            style = "background-color:white;
+                            border-bottom: 2px solid #EEEEEE;
+                            border-top-color: white;
+                            border-right-color: white;
+                            border-left-color: white;
+                            box-shadow: 0px 0px 0px white;
+                            padding:3px;
+                            width: 100%"),
+                  selectInput('ID', 'Select ID:', paste0(data[[colindex_id]]," (",seq(1,length(data[[colindex_id]])),")"))),
+           column(width = 3,  style = "padding-right: 0px",
+                  wellPanel(h5(strong("Color settings")),
+                            style = "background-color:white;
+                            border-bottom: 2px solid #EEEEEE;
+                            border-top-color: white;
+                            border-right-color: white;
+                            border-left-color: white;
+                            box-shadow: 0px 0px 0px white;
+                            padding:3px;
+                            width: 100%"),
+                  radioButtons('colour', 'Color by:', c("Grouping variable", "Individual word")), 
+                  selectInput("colour_select", "Select:",  choices=c(names(data)[index_grouping])))
+           ),
+    fluidRow(width = 12, offset = 0,
+           column(width = 4, #style = "height:650px;",
+                  wellPanel(textOutput("ID"),
+                            style = "background-color: #333333;
+                            color: white;
+                            border-top-color: #333333;
+                            border-left-color: #333333;
+                            border-right-color: #333333;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-bottom: 0px;
+                            padding:5px"), 
+                  wellPanel(
+                    fluidRow(
+                      column(width = 4,
+                             numericInput('fontsize', 'Font size:',value = 7, min=1, max=50)),
+                      column(width = 4,
+                             numericInput('nword', 'Word number:',value = 50, min=1, max=100)),
+                      column(width = 12,
+                            withSpinner(plotOutput("WordcloudPlot",height= "325px"))),
+                      column(width = 12,
+                            downloadLink("downloadWordcloud", "Download"))),
+                            style = "background-color: #ffffff;
+                            border-bottom-color: #333333;
+                            border-left-color: #333333;
+                            height: 470px;
+                            border-right-color: #333333;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-top: 0px"),
+                  wellPanel(textOutput("Table"),
+                            style = "background-color: #333333;
+                            color: white;
+                            border-top-color: #333333;
+                            border-left-color: #333333;
+                            border-right-color: #333333;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-bottom: 0px;
+                            padding:5px"),
+                  wellPanel(withSpinner(DT::dataTableOutput("datatable", height= "150px")),
+                            style = "background-color: #ffffff;
+                            border-bottom-color: #333333;
+                            border-left-color: #333333;
+                            border-right-color: #333333;
+                            height: 175px;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-top: 0px")
+                  ), 
+           column(width = 8, #style='padding:0px;',
+                  wellPanel("T-SNE plot of wordmatrix",
+                            style = "background-color: #333333;
+                            color: white;
+                            border-top-color: #333333;
+                            border-left-color: #333333;
+                            border-right-color: #333333;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-bottom: 0px;
+                            padding:5px"), 
+                  wellPanel( 
+                     fluidRow(
+                           column(width = 2,
+                                  radioButtons('method', 'Method:',choices=c("t-SNE","UMAP"))),
+                           column(width = 2,
+                                  numericInput('perplexity', 'Perplexity:',value = 2, min=1, max=nrow(data)-1)),
+                           column(width = 2,
+                                  radioButtons('label', 'Labels:',choices=c("Index","IDs"))),
+                           column(width = 2,
+                                  numericInput('labelsize', 'Label size:',value = 12, min=1, max=30)),
+                           column(width = 8, style='padding:0px;',
+                                  withSpinner(plotlyOutput("TsnePlot",height=550))),
+                           column(width = 4, style='padding:0px;',
+                                  withSpinner(plotOutput("TsnePlot_legend",height=550))),
+                           column(width=2, 
+                                  downloadLink("downloadPlotdata",label = "Download data"))),
+                            style = "background-color: white;
+                            border-bottom-color: #333333;
+                            border-left-color:  #333333;
+                            border-right-color: #333333;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-top: 0px"
+                            #height=575px
+                       ))),
+    fluidRow(column(width = 12,
+                  wellPanel("Hierarchical clustering of wordmatrix",
+                            style = "background-color: #333333;
+                            color: white;
+                            border-top-color: #333333;
+                            border-left-color: #333333;
+                            border-right-color: #333333;
+                            box-shadow: 3px 3px 3px #d8d8d8;
+                            margin-bottom: 0px;
+                            padding:5px")
+                  ,
+                  wellPanel(
+                    fluidRow(
+                          column(width = 2,
+                                 radioButtons('hcmethod', 'Method:',choices=c("ward.D2","average","complete","single"))),
+                          column(width = 2,
+                                 numericInput('labelsize_hc', 'Label size:', value = 8, min=1, max=30))
+                          ),
+                      fluidRow(
+                          column(width = 9,
+                                withSpinner(plotOutput("hclust"))),
+                          column(width = 3, 
+                                 withSpinner(plotOutput("hclust_legend")))
+                          ),
+                                style = "background-color: #ffffff;
+                                border-bottom-color: #333333;
+                                border-left-color: #333333;
+                                border-right-color: #333333;
+                                box-shadow: 3px 3px 3px #d8d8d8;
+                                margin-top: 0px")
+                  ,
+                  verbatimTextOutput("test")
+                ))
+    ))
+    
+  #  ,
+  #tabPanel("About", value = "panel2", h3(""))
+  
+  )))
+           
+         
+         
+
+###### SERVER ###### 
+server <- function(input, output, session) {
+
+  ##### Global ##### 
+  IDs = reactive(paste0(data[[colindex_id]]," (",seq(1,length(data[[colindex_id]])),")"))
+  index_ID = reactive({which(IDs() == input$ID)})
+
+  ##### Wordcloud plot and download  ######
+  
+  output$ID <- renderText({
+    paste("Wordcloud of",data[[colindex_id]][index_ID()])
+  })
+  
+  output$WordcloudPlot <- renderPlot({
+    ID_matrix = matrix[index_ID(),]
+    ID_matrix = data.frame(word= as.character(names(ID_matrix)), freq= ID_matrix)
+    colnames(ID_matrix) = c("word", "freq")
+    ID_matrix = ID_matrix[ID_matrix$freq == 1,]
+    
+    plotWordCloud(ID_matrix, 
+                  max.words = min(nrow(ID_matrix),input$nword), 
+                  scale= c(input$fontsize/10, input$fontsize/10), 
+                  colors= brewer.pal(8,"Greys")[4:8])
+  })
+  
+  output$downloadWordcloud <- downloadHandler(
+    filename = function() {
+      paste0(paste0("Wordcloudof",data[[colindex_id]][index_ID()]),".pdf", sep="")
+    },
+    content = function(file) {
+      ID_matrix = matrix[index_ID(),]
+      ID_matrix = data.frame(word= names(ID_matrix), freq= ID_matrix)
+      colnames(ID_matrix) = c("word", "freq")
+      ID_matrix = ID_matrix[ID_matrix$freq == 1,]
+
+      pdf(file)
+      plotWordCloud(ID_matrix, 
+                    max.words = min(max(nrow(ID_matrix)),input$nword), 
+                    scale= c(input$fontsize/10, input$fontsize/10), 
+                    colors= brewer.pal(8,"Greys")[4:8])
+      dev.off()
+    }
+  )
+  
+  ##### Table #####
+  output$Table  <-  renderText({
+    paste("Most occuring words among IDs")
+  })
+  
+  output$datatable <- DT::renderDataTable({
+    
+    colsum_data= data.frame(word=colnames(matrix), freq=colSums(matrix))
+    colsum_data = colsum_data[order(colsum_data$freq, decreasing = T),]
+    colnames(colsum_data) = c("Word", paste0("IDs (total n=", nrow(matrix),")"))
+
+    DT::datatable(colsum_data,
+                  extensions = c("Buttons"),
+                  rownames = F,
+                  fillContainer = T,
+                  escape=FALSE,
+                  options = list(dom = "t",
+                                 scrollY = min(nrow(colsum_data),500),
+                                 scrollX= TRUE,
+                                 scroller = TRUE,
+                                 autoWidth = TRUE,
+                                 pageLength = nrow(colsum_data),
+                                 columnDefs = list(list(className = 'dt-center', targets = "_all"), 
+                                 list(width = '50%', targets = "_all")))
+                  )
+  })
+  
+  ##### Colour/Grouping #####
+  
+  outVar <- reactive({
+    if(input$colour == "Grouping variable"){
+      return(names(data)[index_grouping])
+    } else {
+      return(colnames(matrix))
+    }
+  })
+
+  observe({ 
+    updateSelectInput(session, "colour_select", choices = outVar())})
+  
+  colour_choice =  reactive({
+    if(input$colour == "Grouping variable"){
+      return(as.factor(data[,input$colour_select]))
+  } else {
+      matrix = as.data.frame(matrix)
+      colour_byword = matrix[[input$colour_select]]
+      colour_byword = ifelse(colour_byword > 0,"Selected word associated with ID","Selected word not associated with ID")
+      return(as.factor(colour_byword))
+  }
+    })
+
+  color_palette = reactive({palette=c("#A6CEE3", "#1F78B4", "#B2DF8A", "#33A02C", "#FB9A99", 
+                                      "#E31A1C", "#FDBF6F", "#FF7F00", "#CAB2D6", "#6A3D9A",
+                                      "#00AFBB", "#E7B800", "#FC4E07", "#999999", "#E69F00", 
+                                      "#56B4E9", "#009E73", "#F0E442", "#0072B2", "#D55E00")
+                            return( palette[1:length(levels(colour_choice()))] ) 
+  })
+  
+  ##### Dimension reduction plot and download #####
+ 
+   data.dimred = reactive({
+    if (input$method == "t-SNE"){
+      tsne_result <- Rtsne(matrix, perplexity = input$perplexity, check_duplicates=F)
+      data["X_Coord"] = tsne_result$Y[,1]
+      data["Y_Coord"] = tsne_result$Y[,2]
+      return(data)
+    } else if (input$method == "UMAP"){
+      umap_result = umap(matrix)
+      data["X_Coord"] = umap_result$layout[,1]
+      data["Y_Coord"] = umap_result$layout[,2]
+      return(data)
+    }  
+  })
+  
+  output$TsnePlot <- renderPlotly({
+    
+    if (input$label == "Index") {
+        labeling = as.character(seq(1,nrow(data)))
+    } else if (input$label == "IDs") {
+        labeling= as.character(data[[colindex_id]])
+    }
+    
+    p = plot_ly(colors = color_palette()) %>%
+      add_trace(type="scatter",
+                mode = 'markers',
+                x = data.dimred()$X_Coord[index_ID()],
+                y = data.dimred()$Y_Coord[index_ID()],
+                opacity=0.15,
+                marker = list(
+                  color = "grey",
+                  size = 80)) %>%
+      add_trace(x=data.dimred()$X_Coord, 
+                y=data.dimred()$Y_Coord, 
+                type="scatter", 
+                mode="text",
+                text= labeling,
+                textfont = list(size= input$labelsize),
+                color = factor(colour_choice())) %>%
+      add_trace(x=data.dimred()$X_Coord, 
+                y=data.dimred()$Y_Coord, 
+                type="scatter", 
+                mode="markers",
+                opacity=0,
+                text= paste0( "ID: ",data[[colindex_id]], "\n",
+                              "Index: ",seq(1,nrow(data)), "\n",
+                              "Grouping: ", paste(data[,index_grouping])),
+                hoverinfo = "text",
+                color = factor(colour_choice())) %>% 
+      layout(showlegend = FALSE,
+             yaxis= list(title = "",
+                         zeroline = FALSE,
+                         linecolor = toRGB("black"),
+                         linewidth = 1,
+                         showticklabels = FALSE,
+                         showgrid = FALSE),
+             xaxis = list(title = "",
+                          zeroline = FALSE,
+                          linecolor = toRGB("black"),
+                          linewidth = 1,
+                          showticklabels = FALSE,
+                          showgrid = FALSE),
+             autosize = T) %>% 
+      config(modeBarButtonsToRemove = c("zoomIn2d", "zoomOut2d", "hoverClosestGeo", "hoverClosestGl2d", "toImage",
+                                        "hoverClosestCartesian", "lasso2d", "select2d", "resetScale2d",
+                                        "hoverCompareCartesian", "hoverClosestPie", "toggleSpikelines"), displaylogo = FALSE) %>% 
+      style(hoverinfo = "none", traces = c(1,2))
+    
+    p
+  })
+  
+  #legend of plotly plot by ggplot
+  
+  output$TsnePlot_legend <- renderPlot({
+    p = ggplot(data, aes(x=1, y=1)) +
+        geom_text(aes(label=seq(1,nrow(data)), colour=factor(colour_choice())), 
+                size=3.5, fontface = "bold") +
+        theme_classic()+
+        scale_color_manual(values = color_palette())+
+        theme(legend.title = element_blank())+
+        theme(legend.position = "right")+
+        theme(legend.text=element_text(size=9))
+    leg <- get_legend(p)
+    as_ggplot(leg)
+  })
+  
+  output$downloadPlotdata <- downloadHandler(
+    filename = function() {
+      paste0(input$method,"_coordinates.csv")
+    },
+    content = function(file) {
+      write.csv(data.dimred(), file, row.names = F)
+    }
+  )
+
+  ##### Hierarchical clustering #######  
+  
+  output$hclust <- renderPlot({
+    set.seed(42)
+    clustering=hclust(dist(matrix), method=input$hcmethod)
+    par(oma=c(3,3,3,3))
+    palette(color_palette())
+    par(mar = rep(0, 4))
+    myplclust(clustering, 
+              labels=paste(data[[colindex_id]]), 
+              lab.col=as.fumeric(as.character(colour_choice()), levels = sort(unique(as.character(colour_choice())))), 
+              cex=as.numeric(input$labelsize_hc/10),
+              main="",
+              yaxt="n",
+              ylab= "")
+    })
+  
+    #legend
+    output$hclust_legend <- renderPlot({
+      p = ggplot(data, aes(x=1, y=1)) +
+        geom_text(aes(label=seq(1,nrow(data)), colour=factor(colour_choice())), fontface = "bold") +
+        theme_classic()+
+        scale_color_manual(values = color_palette())+
+        theme(legend.title = element_blank())+
+        theme(legend.position = "right")+
+        theme(legend.text=element_text(size=9))
+      leg <- get_legend(p)
+      as_ggplot(leg)
+    })
+    
+    
+  ##### Test field for development ######
+  #output$test <- renderPrint({
+  #})
+  
+    }
+
+###### APP ######
+shinyApp(ui, server)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/commands_tests	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,24 @@
+#commands to test the tools with "test_data" 
+
+ $ cd <path>/SimText/test
+
+ $ Rscript ../pubmed_by_queries.R --input "data/test_data" --output "data/pubmed_by_queries_output"
+ #output: data/pubmed_by_queries_output --install_packages
+
+ $ Rscript ../pubmed_by_queries.R --input "data/test_data" --abstract --output "data/pubmed_by_queries_output_abstracts" --install_packages
+ #output: data/pubmed_by_queries_output_abstracts
+
+ $ Rscript ../abstracts_by_pmids.R --input "data/pubmed_by_queries_output" --output "data/abstracts_by_pmids_output" --install_packages
+ #output: data/abstracts_by_pmids_output
+
+ $ Rscript ../text_to_wordmatrix.R --input "data/pubmed_by_queries_output_abstracts" --output "data/text_to_wordmatrix_output" --install_packages
+ #output: data/text_to_wordmatrix_output
+ 
+  $ Rscript ../pmids_to_pubtator_matrix.R --input "data/pubmed_by_queries_output" --output "data/pmids_to_pubtator_matrix_output" --number 50 --install_packages
+ #output: data/pmids_to_pubtator_matrix_output
+
+ $ Rscript ../simtext_app.R -i "data/test_data" -m "data/text_to_wordmatrix_output" --install_packages
+ #output: ShinyApp
+
+ $ Rscript ../simtext_app.R -i "data/test_data" -m "data/pmids_to_pubtator_matrix_output" --install_packages
+ #output: ShinyApp
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/data/abstracts_by_pmids_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,7 @@
+"ID_gene"	"GROUPING_disease"	"PMID_1"	"PMID_2"	"PMID_3"	"PMID_4"	"PMID_5"	"ABSTRACT_1"	"ABSTRACT_2"	"ABSTRACT_3"	"ABSTRACT_4"	"ABSTRACT_5"
+"SCN1A"	"epilepsy"	32773773	32761786	32722525	32709127	32702657	"Childhood epilepsies have a strong genetic contribution, but the disease trajectory for many genetic etiologies remains unknown. Electronic medical record (EMR) data potentially allow for the analysis of longitudinal clinical information but this has not yet been explored. We analyzed provider-entered neurological diagnoses made at 62,104 patient encounters from 658 individuals with known or presumed genetic epilepsies. To harmonize clinical terminology, we mapped clinical descriptors to Human Phenotype Ontology (HPO) terms and inferred higher-level phenotypic concepts. We then binned the resulting 286,085 HPO terms to 100 3-month time intervals and assessed gene-phenotype associations at each interval. We analyzed a median follow-up of 6.9 years per patient and a cumulative 3251 patient years. Correcting for multiple testing, we identified significant associations between &quot;Status epilepticus&quot; with SCN1A at 1.0 years, &quot;Severe intellectual disability&quot; with PURA at 9.75 years, and &quot;Infantile spasms&quot; and &quot;Epileptic spasms&quot; with STXBP1 at 0.5 years. The identified associations reflect known clinical features of these conditions, and manual chart review excluded provider bias. Some aspects of the longitudinal disease histories can be reconstructed through EMR data and reveal significant gene-phenotype associations, even within closely related conditions. Gene-specific EMR footprints may enable outcome studies and clinical decision support."	"We compared GABAergic function and neuronal excitability in the hippocampal tissue of seven sporadic MTLE patients with a patient carrying a SCN1A loss-of-function mutation. All had excellent outcome from anterior temporal lobectomy, and neuropathological study always showed characteristic hippocampal sclerosis (Hs). Compared to MTLE patients, there was a more severe impairment of GABAergic transmission, due to the lower GABAergic activity related to the NaV 1.1 loss-of-function, in addition to the typical GABA-current rundown, a hallmark of sporadic MTLE. Our results give evidence that a pharmacological rescuing of the GABAergic dysfunction may represent a promising strategy for the treatment of these patients."	"Approximately 30% of individuals with autism spectrum disorder (ASD) experience developmental regression, the etiology of which remains largely unknown. We performed a complete literature search and identified 47 genes that had been implicated in such cases. We sequenced these genes in a preselected cohort of 134 individuals with regressive autism. In total, 16 variants in 12 genes with evidence supportive of pathogenicity were identified. They were classified as variants of uncertain significance based on ACMG standards and guidelines. Among these were recurring variants in GRIN2A and PLXNB2, variants in genes that were linked to syndromic forms of ASD (GRIN2A, MECP2, CDKL5, SCN1A,PCDH19, UBE3A, and SLC9A6), and variants in the form of oligogenic heterozygosity (EHMT1, SLC9A6, and MFSD8)."	"Genetic variants in voltage-gated sodium channels (Nav) encoded by SCNXA genes, responsible for INa, and Kv4.3 channels encoded by KCND3, responsible for the transient outward current (Ito), contribute to the manifestation of both Brugada syndrome (BrS) and spinocerebellar ataxia (SCA19/22). We examined the hypothesis that Kv4.3 and Nav variants regulate each other's function, thus modulating INa/Ito balance in cardiomyocytes and INa/I(A) balance in neurons. Bicistronic and other constructs were used to express WT or variant Nav1.5 and Kv4.3 channels in HEK293 cells. INa and Ito were recorded. SCN5A variants associated with BrS reduced INa, but increased Ito. Moreover, BrS and SCA19/22 KCND3 variants associated with a gain of function of Ito, significantly reduced INa, whereas the SCA19/22 KCND3 variants associated with a loss of function (LOF) of Ito significantly increased INa. Auxiliary subunits Navβ1, MiRP3 and KChIP2 also modulated INa/Ito balance. Co-immunoprecipitation and Duolink studies suggested that the two channels interact within the intracellular compartments and biotinylation showed that LOF SCN5A variants can increase Kv4.3 cell-surface expression. Nav and Kv4.3 channels modulate each other's function via trafficking and gating mechanisms, which have important implications for improved understanding of these allelic cardiac and neuronal syndromes."	"The aim of this study was to perform a molecular characterization of 17 Argentinean pediatric patients with diagnosis of having epileptic encephalopathies (EEs) of the first year of life without known etiology, applying next-generation sequencing (NGS). We included 17 patients with EE with age of onset under 12 months without known etiology after ruling out structural abnormalities, metabolic disorders, and large chromosomal abnormalities. They presented with the following clinical phenotypes: Dravet syndrome (DS; n: 7), epilepsy of infancy with migrating focal seizures (EIMFS; n: 3), West syndrome (WS; n: 2), and undetermined epileptic encephalopathy (UEE; n: 5). Neurologic examinations, seizure semiology, brain magnetic resonance imaging, and standard electroencephalography (EEG) or video-EEG studies were performed in all cases. Using a custom amplicon strategy, we designed an NGS panel to study 47 genes associated with EEs. Pathogenic variants were detected in 8 cases (47%), including seven novel pathogenic variants and one previously reported as being pathogenic. The pathogenic variants were identified in 6 patients with DS (SCN1A gene), one with EIMFS (SCN2A gene), and one with UEE (SLC2A1 gene). Nonrelevant variants were identified in the patients with WS. We demonstrated the feasibility of an NGS-gene panel approach for the analysis of patients with EE in our setting. A genetic diagnosis was achieved in nearly 50% of patients, 87% of them presenting with nonpreviously reported variants. The early identification of the underlying causative genetic alteration will be a valuable tool for providing prognostic information and genetic counselling and also to improve therapeutic decisions in Argentinean patients."
+"SCN9A"	"epilepsy"	32766464	32719824	32696438	32663327	32636717	"Refractive surgery, specifically laser-assisted in situ keratomileusis and photorefractive keratectomy, are widely applied procedures to treat myopia, hyperopia, and astigmatism. After surgery, a subgroup of cases suffers from persistent and intractable pain of obscure etiology, thought to be neuropathic. We aimed to investigate the contribution of genomic factors in the pathogenesis of these patients with corneal neuralgia. We enrolled 21 cases (6 males and 15 females) from 20 unrelated families, who reported persistent pain (&gt;3 months), after refractive surgery (20 laser-assisted in situ keratomileusis and 1 photorefractive keratectomy patients). Whole-exome sequencing and gene-based association test were performed. Whole-exome sequencing demonstrated low-frequency variants (allele frequency &lt; 0.05) in electrogenisome-related ion channels and cornea-expressed collagens, most frequently in SCN10A (5 cases), SCN9A (4 cases), TRPV1 (4 cases), CACNA1H and CACNA2D2 (5 cases each), COL5A1 (6 cases), COL6A3 (5 cases), and COL4A2 (4 cases). Two variants, p.K655R of SCN9A and p.Q85R of TRPV1, were previously characterized as gain-of-function. Gene-based association test assessing &quot;damaging&quot; missense variants against gnomAD exome database (non-Finnish European or global), identified a gene, SLC9A3R1, with statistically significant effect (odds ratio = 17.09 or 17.04; Bonferroni-corrected P-value &lt; 0.05). These findings in a small patient cohort did not identify a common gene/variant among most of these cases, as found in other disorders, for example small-fiber neuropathy. Further studies of these candidate genes/variants might enhance understanding of the role of genetic factors in the pathogenesis of corneal neuralgia."	"Small fiber polyneuropathy (SFN) involves ectopic firing and degeneration of small-diameter, somatic/autonomic peripheral axons. Causes include diabetes, inflammation and rare pathogenic mutations, including in SCN9-11 genes that encode small fiber sodium channels. The aim of this study is to associate a new phenotype-immunotherapy-responsive SFN-with rare amino acid-substituting SCN9A variants and present potential explanations. A retrospective chart review of two Caucasians with skin biopsy confirmed SFN and rare SCN9A single nucleotide polymorphisms not previously reported in neuropathy. A 47-year-old with 4 years of disabling widespread neuropathic pain and exertional intolerance had nerve- and skin biopsy-confirmed SFN, with blood tests revealing only high-titer antinuclear antibodies and low complement C4 consistent with B cell dysimmunity. Six years of intravenous immunoglobulin (IVIg) therapy markedly improved sensory and autonomic symptoms and normalized his neurite density. After whole exome sequencing revealed a potentially pathogenic SCN9A-A3734G variant, sodium channel blockers were tried. Herpes zoster left a 32-year-old with disabling exertional intolerance (&quot;chronic fatigue syndrome&quot;), postural syncope and tachycardia, arm and leg paresthesias, reduced sweating, and distal hairloss. Screening revealed antinuclear and potassium channel autoantibodies, so prednisone and then IVIg were prescribed with great benefit. During 4 years of immunotherapy, his symptoms and function improved, and all abnormal biomarkers (autonomic testing and skin biopsies) normalized. Whole exome sequencing then revealed two nearby compound heterozygous SCN9A variants that were computer-predicted to be deleterious. These cases newly associate three novel amino acid-substituting SCN9A variants with immunotherapy-responsive neuropathy. Only larger studies can determine whether these are contributory or coincidental, but they associate new variants with moderate or high likelihood of pathogenicity with a new highly related phenotype. La polyneuropathie des petites fibres implique le déclenchement d’activité ectopique et la dégénérescence des axones périphériques somatiques et autonomes de petit diamètre. Ses causes comprennent le diabète, l’inflammation et de rares mutations pathogènes, notamment dans les gènes SCN9–11 qui codent les canaux sodiques des petites fibres. Associer un nouveau phénotype de polyneuropathie des petites fibres répondant à l’immunothérapie à des variantes rares de SCN9A substituant des acides aminés et présenter des explications possibles. Examen rétrospectif des dossiers de deux personnes de race blanche ayant subi une biopsie cutanée et présentant des polymorphismes mononucléotidiques de SCN9A rares qui n’avaient pas été signalés auparavant dans le cadre d’une neuropathie. Une homme de 47 ans souffrant depuis quatre ans de douleurs neuropathiques généralisées invalidantes et d’intolérance à l’effort a subi une biopsie des nerfs et de la peau qui a confirmé la polyneuropathie des petits fibres, les analyses sanguines ne révélant que des anticorps antinucléaires de haut niveau et un faible complément C4 correspondant à la dysimmunité des lymphocytes B. Six ans de traitement par immunoglobulines intraveineuses ont permis d’améliorer sensiblement les symptômes sensoriels et autonomes et de normaliser la densité de ses neurites. Après que le séquençage de l’exome entier ait révélé une variante de SCN9A-A3734G potentiellement pathogène, des inhibiteurs des canaux sodiques ont été essayee. Le zona a entrainé chez un homme de 32 ans une intolérance à l’effort invalidante (« syndrome de fatigue chronique »), une syncope posturale et une tachycardie, une paresthésie des bras et des jambes, une réduction de la transpiration et une perte de cheveux aux jambes. Le dépistage a révélé la présence d’auto-anticorps antinucléaires et de canaux potassiques, de sorte que la prednisone puis des immunoglobulines intraveineuses ont été prescrites, avec d’excellents résultats. Pendant quatre ans d’immunothérapie, ses symptômes et son fonctionnement se sont améliorés et tous les biomarqueurs anormaux (tests autonomes et biopsies cutanées) se sont normalisés. Le séquençage de l’exome entier a ensuite révélé deux variantes hétérozygotes de SCN9A composées à proximité et prédites par ordinateur comme étant délétères. Ces cas associent trois nouvelles variantes de SCN9A substituant des acides aminés à une neuropathie répondant à l’immunothérapie. Seules des études de plus grande envergure peuvent déterminer s’il s’agit de facteurs contributifs ou de coïncidences, mais ces cas associent de nouvelles variantes ayant une probabilité modérée ou élevée de pathogénicité à un nouveau phénotype étroitement apparenté."	"Conversion of mesenchymal stem cells (MSC) into neuron-like cells (NLC) is a feasible cell therapy strategy for replacing lost neurons in neuronal disorders. In this study, adipose-derived MSC (ADMSC) were converted into neural stem cells (NSC) via neurosphere. The resulting NSC were then differentiated into NLC by transduction with microRNA-218, using a lentiviral vector. ADMSC, NSC, and NLC were first characterized by flow cytometry, RT-PCR, and immunocytochemistry. The functionality of the NLC was evaluated by qRT-PCR and patch clamp recording. Immunophenotyping of ADMSC showed their immunoreactivity to MSC markers CD90, CD73, CD105, and CD49d, but not to CD31 and CD45. RT-PCR results demonstrated the expression of nestin, neurogenin, neurod1, neurofilament light, and GAP43 genes in NSC while NLC expressed synaptophysin, neurofilament heavy, and GAP43. In addition, NSC morphology changed into multipolar with long processes after transduction with miR-218. Moreover, using qRT-PCR, the expression levels of miR-218 and functionality genes CACNA1C, SNAP25, KCNH1, KCNMA1, and SCN9A were significantly increased in NLC, compared with NSC, and ADMSC at 3 weeks and 5 months post-transduction. Furthermore, the generated NLC expressed significantly higher protein levels of neurofilament heavy polypeptide (NFh) and enolase 2 (Eno2) neuronal markers, compared with ADMSC and NSC. Finally, action potentials were successfully recorded by the generated NLC, using patch clamp. In summary, ADMSC-derived NSC differentiated into functional NLC by transduction with miR-218. The generated NLC expressed functional SNAP25, CACNA1C, KCNH1, KCNMA1, and SCN9A and produced an action potential, which provides useful insights into the generation of functional neuronal cells."	"The voltage-gated sodium channel Nav1.7 is essential for adequate perception of painful stimuli. Mutations in the encoding gene, SCN9A, cause various pain syndromes in human patients. The hNav1.7/A1632E mutant causes symptoms of erythromelalgia and paroxysmal extreme pain disorder (PEPD), and its main gating change is a strongly enhanced persistent current. On the basis of recently published 3D structures of voltage-gated sodium channels, we investigated how the inactivation particle binds to the channel, how this mechanism is interfered with by the hNav1.7/A1632E mutation, and how dimerization modifies function of the pain-linked mutation. We applied atomistic molecular simulations to demonstrate the effect of the mutation on channel fast inactivation. Native polyacrylamide gel electrophoresis (PAGE) was used to demonstrate channel dimerization and patch-clamp measurements revealed a link between functional channel dimerization and the impairment of fast inactivation by the hNav1.7/A1632E mutation. We demonstrate that the enhanced persistent current of hNav1.7/A1632E is due to impaired binding of the inactivation particle, which inhibits the proper function of the recently proposed allosteric fast inactivation mechanism. We show that hNav1.7 forms dimers and that the disease-associated persistent current of hNav1.7/A1632E depends on the channel's functional dimerization status: Expression of the synthetic peptide difopein, a 14-3-3 inhibitor known to functionally uncouple dimers, significantly decreased hNav1.7/A1632E-induced persistent currents. Functional uncoupling of mutant hNav1.7/A1632E channel dimers rescues its defective allosteric fast inactivation mechanism. Our findings support the concept of sodium channel dimerization and reveal its potential relevance for human pain syndromes."	"A practical strategy to discover sepsis specific proteins may be to compare the plasma peptides and proteins from patients in the intensive care unit with and without sepsis. The aim was to discover proteins and/or peptides that show greater observation frequency and/or precursor intensity in sepsis. The endogenous tryptic peptides of ICU-Sepsis were compared to ICU Control, ovarian cancer, breast cancer, female normal, sepsis, heart attack, Alzheimer's and multiple sclerosis along with their institution-matched controls, female normals and normal samples collected directly onto ice. Endogenous tryptic peptides were extracted from individual sepsis and control EDTA plasma samples in a step gradient of acetonitrile for random and independent sampling by LC-ESI-MS/MS with a set of robust and sensitive linear quadrupole ion traps. The MS/MS spectra were fit to fully tryptic peptides within proteins using the X!TANDEM algorithm. The protein observation frequency was counted using the SEQUEST algorithm after selecting the single best charge state and peptide sequence for each MS/MS spectra. The protein observation frequency of ICU-sepsis versus ICU Control was subsequently tested by Chi square analysis. The average protein or peptide log10 precursor intensity was compared across disease and control treatments by ANOVA in the R statistical system. Peptides and/or phosphopeptides of common plasma proteins such as ITIH3, SAA2, SAA1, and FN1 showed increased observation frequency by Chi square (χ<sup>2</sup> &gt; 9, p &lt; 0.003) and/or precursor intensity in sepsis. Cellular gene symbols with large Chi square values from tryptic peptides included POTEB, CTNNA1, U2SURP, KIF24, NLGN2, KSR1, GTF2H1, KIT, RPS6KL1, VAV2, HSPA7, SMC2, TCEB3B, ZNF300, SUPV3L1, ADAMTS20, LAMB4, MCCC1, SUPT6H, SCN9A, SBNO1, EPHA1, ABLIM2, cB5E3.2, EPHA10, GRIN2B, HIVEP2, CCL16, TKT, LRP2 and TMF1 amongst others showed increased observation frequency. Similarly, increased frequency of tryptic phosphopeptides were observed from POM121C, SCN8A, TMED8, NSUN7, SLX4, MADD, DNLZ, PDE3B, UTY, DEPDC7, MTX1, MYO1E, RXRB, SYDE1, FN1, PUS7L, FYCO1, USP26, ACAP2, AHI1, KSR2, LMAN1, ZNF280D and SLC8A2 amongst others. Increases in mean precursor intensity in peptides from common plasma proteins such as ITIH3, SAA2, SAA1, and FN1 as well as cellular proteins such as COL24A1, POTEB, KANK1, SDCBP2, DNAH11, ADAMTS7, MLLT1, TTC21A, TSHR, SLX4, MTCH1, and PUS7L among others were associated with sepsis. The processing of SAA1 included the cleavage of the terminal peptide D/PNHFRPAGLPEKY from the most hydrophilic point of SAA1 on the COOH side of the cystatin C binding that was most apparent in ICU-Sepsis patients compared to all other diseases and controls. Additional cleavage of SAA1 on the NH2 terminus side of the cystatin binding site were observed in ICU-Sepsis. Thus there was disease associated variation in the processing of SAA1 in ICU-Sepsis versus ICU controls or other diseases and controls. Specific proteins and peptides that vary between diseases might be discovered by the random and independent sampling of multiple disease and control plasma from different hospital and clinics by LC-ESI-MS/MS for storage in a relational SQL Server database and analysis with the R statistical system that will be a powerful tool for clinical research. The processing of SAA1 may play an unappreciated role in the inflammatory response to Sepsis."
+"GRIN2A"	"epilepsy"	32765929	32722525	32712275	32707302	32650666	"Epileptic spasm (ES) is one of the seizure types which is difficult to treat. Next-generation sequencing has facilitated rapid gene discovery that is linked to ES and GRIN2A being one of them. Genotype-driven precision medicine is on the horizon and is a targeted treatment approach toward the precise molecular cause of the disease. GRIN2A gene encodes for a subunit of N-methyl-D-aspartate (NMDA) receptor and it has been suggested from in vitro studies and few case reports that memantine, a NMDA receptor antagonist, was shown to reduce seizures in patients with GRIN2A mutations. Here, we describe a patient with a novel GRIN2A mutation and severe drug-resistant ES who became seizure free with memantine."	"Approximately 30% of individuals with autism spectrum disorder (ASD) experience developmental regression, the etiology of which remains largely unknown. We performed a complete literature search and identified 47 genes that had been implicated in such cases. We sequenced these genes in a preselected cohort of 134 individuals with regressive autism. In total, 16 variants in 12 genes with evidence supportive of pathogenicity were identified. They were classified as variants of uncertain significance based on ACMG standards and guidelines. Among these were recurring variants in GRIN2A and PLXNB2, variants in genes that were linked to syndromic forms of ASD (GRIN2A, MECP2, CDKL5, SCN1A,PCDH19, UBE3A, and SLC9A6), and variants in the form of oligogenic heterozygosity (EHMT1, SLC9A6, and MFSD8)."	"N-methyl-d-aspartate receptors (NMDARs) mediate a slow component of excitatory synaptic transmission that plays important roles in normal brain function and development. A large number of disease-associated variants in the GRIN gene family encoding NMDAR GluN subunits have been identified in patients with various neurological and neuropsychiatric disorders. Many of these variants reduce the function of NMDARs by a range of different mechanisms, including reduced glutamate potency, reduced glycine potency, accelerated deactivation time course, decreased surface expression, and/or reduced open probability. We have evaluated whether three positive allosteric modulators of NMDAR receptor function (24(S)-hydroxycholesterol, pregnenolone sulfate, tobramycin) and three co-agonists (d-serine, l-serine, and d-cycloserine) can mitigate the diminished function of NMDARs harboring GRIN variants. We examined the effects of these modulators on NMDARs that contained 21 different loss-of-function variants in GRIN1, GRIN2A, or GRIN2B, identified in patients with epilepsy, intellectual disability, autism, and/or movement disorders. For all variants, some aspect of the reduced function was partially restored. Moreover, some variants showed enhanced sensitivity to positive allosteric modulators compared to wild type receptors. These results raise the possibility that enhancement of NMDAR function by positive allosteric modulators may be a useful therapeutic strategy."	"Dip2C is highly expressed in brain and many other tissues but its biological functions are still not clear. Genes regulated by Dip2C in brain have never been studied. The clustered regularly interspaced short palindromic repeat (CRISPR)/CRISPR-associated protein (Cas) systems, adaptive immune systems of bacteria and archaea, have been recently developed and broadly used in genome editing. Here, we describe targeted gene deletions of Dip2c gene in mice via CRISPR/Cas9 system and study of brain transcriptome under Dip2C regulation. The CRISPR/Cas9 system effectively generated targeted deletions of Dip2c by pronuclei injection of plasmids that express Cas9 protein and two sgRNAs. We achieved targeted large fragment deletion with efficiencies at 14.3% (1/7), 66.7% (2/3) and 20% (1/5) respectively in 3 independent experiments, averaging 26.7%. The large deletion DNA segments are 160.4 kb (Dip2C<sup>Δ160kb</sup>), spanning from end of exon 4 to mid of exon 38. A mouse with two base pair deletion was generated from a single sgRNA targeting in exon 4 (Dip2c<sup>Δ2bp</sup>) by non-homologous end joining (NHEJ). Loss of gene expression for Dip2c mRNA was confirmed by quantitative real-time PCR (qPCR). Dip2C-regulated genes and pathways in brain were investigated through RNAseq of Dip2c<sup>Δ2bp</sup>. In total, 838 genes were found differentially regulated, with 252 up and 586 down. Gene ontology (GO) analysis indicated that DEGs in brain are enriched in neurological functions including 'memory', 'neuropeptide signaling pathway', and 'response to amphetamine' while KEGG analysis shows that 'neuroactive ligand-receptor interaction pathway' is the most significantly enriched. DEGs Grid2ip, Grin2a, Grin2c, Grm4, Gabbr2, Gabra5, Gabre, Gabrq, Gabra6 and Gabrr2 are among the highly regulated genes by Dip2C. Results confirm Dip2C may play important roles in brain development and function."	"Purpose Successful oral feeding and speech emergence are dependent upon the coordination of shared oral muscles and facial nerves. We aimed to determine if the speech-associated genes, forkhead box P2 (FOXP2), contactin-associated protein-like 2 (CNTNAP2), glutamate receptor, ionotropic, N-methyl D-aspartate 2A (GRIN2A), and neurexin 1, were detectable in neonatal saliva and could predict feeding outcomes in premature newborns. Method In this prospective, observational, preliminary study, saliva collected from 51 premature infants (gestational ages: 30-34 6/7 weeks) at different stages of oral feeding development underwent gene expression analysis. Binary (+/-) expression profiles were explored and examined in relation to days to achieve full oral feeds. Results GRIN2A and neurexin 1 rarely amplified in neonatal saliva and were not informative. Infants who amplified FOXP2 but not CNTNAP2 at the start of oral feeds achieved oral feeding success 3.20 (95% CI [-2.5, 8.9]) days sooner than other gene combinations. Conclusions FOXP2 and CNTNAP2 may be informative in predicting oral feeding outcomes in newborns. Salivary analysis at the start of oral feeding trials may inform feeding outcomes in this population and warrants further investigation."
+"ANKRD11"	"autism"	32760686	32604767	32476269	32258089	32222090	"We describe the case of a seven-year-old female patient who presented in our service with severe developmental delay, intellectual disability, facial dysmorphism, and femur fracture, observed in the context of very low bone mineral density. Array-based single nucleotide polymorphism (SNP array) analysis identified a 113 kb duplication involving the morbid OMIM genes: ANKRD11 (exon1), RPL13, and PGN genes. ANKRD11 deletions are frequently described in association with KBG syndrome, the duplications being less frequent (one case described before). The exome sequencing was negative for pathogenic variants or of uncertain significance in genes possibly associated with this phenotype. The patient presented subtle signs of KBG syndrome. It is known that the phenotype of KBG syndrome has a wide clinical spectrum, this syndrome being often underdiagnosed due to overlapping features with other conditions, also characterized by multiple congenital anomalies and intellectual disability. The particularity of this case is represented by the very low bone mineral density in a patient with 16q24.3 duplication. ANKRD11 haploinsufficiency is known to be associated with skeletal involvement, such as short stature, or delayed bone age. An effect on bone density has been observed only in experimental studies on mice with induced missense mutations in the ANKRD11 gene. This CNV also involved the duplication of the very conserved RPL13 gene, which could have a role for the skeletal phenotype of this patient, knowing the high level of gene expression in bone tissue and also the association with spondyloepimetaphyseal dysplasia Isidor Toutain type, in case of splicing mutations."	"No data on interstitial microduplications of the 16q24.2q24.3 chromosome region are available in the medical literature and remain extraordinarily rare in public databases. Here, we describe a boy with a de novo 16q24.2q24.3 microduplication at the Single Nucleotide Polymorphism (SNP)-array analysis spanning ~2.2 Mb and encompassing 38 genes. The patient showed mild-to-moderate intellectual disability, speech delay and mild dysmorphic features. In DECIPHER, we found six individuals carrying a &quot;pure&quot; overlapping microduplication. Although available data are very limited, genomic and phenotype comparison of our and previously annotated patients suggested a potential clinical relevance for 16q24.2q24.3 microduplication with a variable and not (yet) recognizable phenotype predominantly affecting cognition. Comparing the cytogenomic data of available individuals allowed us to delineate the smallest region of overlap involving 14 genes. Accordingly, we propose ANKRD11, CDH15, and CTU2 as candidate genes for explaining the related neurodevelopmental manifestations shared by these patients. To the best of our knowledge, this is the first time that a clinical and molecular comparison among patients with overlapping 16q24.2q24.3 microduplication has been done. This study broadens our knowledge of the phenotypic consequences of 16q24.2q24.3 microduplication, providing supporting evidence of an emerging syndrome."	"Cornelia de Lange syndrome (CdLS), Rubinstein-Taybi syndrome (RSTS), and KBG syndrome are three distinct developmental human disorders. Variants in seven genes belonging to the cohesin pathway, NIPBL, SMC1A, SMC3, HDAC8, RAD21, ANKRD11, and BRD4, were identified in about 80% of patients with CdLS, suggesting that additional causative genes remain to be discovered. Two genes, CREBBP and EP300, have been associated with RSTS, whereas KBG results from variants in ANKRD11. By exome sequencing, a genetic cause was elucidated in two patients with clinical diagnosis of CdLS but without variants in known CdLS genes. In particular, genetic variants in EP300 and ANKRD11 were identified in the two patients with CdLS. EP300 and ANKRD11 pathogenic variants caused the reduction of the respective proteins suggesting that their low levels contribute to CdLS-like phenotype. These findings highlight the clinical overlap between CdLS, RSTS, and KBG and support the notion that these rare disorders are linked to abnormal chromatin remodeling, which in turn affects the transcriptional machinery."	"The incidence of short stature in KBG syndrome is relatively high. Data on the therapeutic effects of growth hormone (GH) on children with KBG syndrome accompanied by short stature in the previous literature has not been summarized. Here we studied a girl with KBG syndrome and collected the data of children with KBG syndrome accompanied by short stature from previous studies before and after GH therapy. The girl was referred to our department because of short stature. Physical examination revealed mild dysmorphic features. The peak GH responses to arginine and clonidine were 6.22 and 5.40 ng/mL, respectively. The level of insulin-like growth factor 1 (IGF-1) was 42.0 ng/mL. Genetic analysis showed a c.2635 dupG (p.Glu879fs) mutation in the ANKRD11 gene. She received GH therapy. During the first year of GH therapy, her height increased by 0.92 standard deviation score (SDS). Her height increased from -1.95 SDS to -0.70 SDS after two years of GH therapy. There were ten children with KBG syndrome accompanied by short stature who received GH therapy in reported cases. Height SDS was improved in nine (9/10) of them. The mean height SDS in five children with KBG syndrome accompanied by short stature increased from -2.72 ± 0.44 to -1.95 ± 0.57 after the first year of GH therapy (P = 0.001). There were no adverse reactions reported after GH treatment. GH treatment is effective in our girl and most children with KBG syndrome accompanied by short stature during the first year of therapy."	"KBG syndrome is an intellectual disability (ID) associated with multiple congenital anomalies in which the macrodontia could be the clue for the diagnosis. It is caused either by heterozygous variant in ANKRD11 gene or 16q24.3 microdeletions that involve the ANKRD11 gene. Here, we report on two unrelated male patients who presented with ID, short stature, webbing of neck, and cryptorchidism. Noonan syndrome was suspected first but the presence of macrodontia in both patients pointed to KBG syndrome which was confirmed thereafter by the identification of a novel pathogenic variant in ANKRD11 gene, c.5488G&gt;T (p.E1830*). Macrodontia was noticed in all the deciduous anterior teeth in Patient 1. This observation was reported previously in few patients, but it seems to be a common feature that could be misdiagnosed as premature eruption of teeth. Therefore, our results confirm that maxillary permanent central incisors may not be the only teeth affected in KBG but also all the deciduous teeth. Interestingly, desquamative gingivitis was additionally noted in Patient 1, which has not been reported previously, however; it could be a coincidental finding. To the best of our knowledge, this is the first report from Egypt."
+"SHANK2"	"autism"	32661924	32640229	32616021	32607230	32594058	"Dysfunction of the Hippo pathway enables cells to evade contact inhibition and provides advantages for cancerous overgrowth. However, for a significant portion of human cancer, how Hippo signaling is perturbed remains unknown. To answer this question, we performed a genome-wide screening for genes that affect the Hippo pathway in Drosophila and cross-referenced the hit genes with human cancer genome. In our screen, Prosap was identified as a novel regulator of the Hippo pathway that potently affects tissue growth. Interestingly, a mammalian homolog of Prosap, SHANK2, is the most frequently amplified gene on 11q13, a major tumor amplicon in human cancer. Gene amplification profile in this 11q13 amplicon clearly indicates selective pressure for SHANK2 amplification. More importantly, across the human cancer genome, SHANK2 is the most frequently amplified gene that is not located within the Myc amplicon. Further studies in multiple human cell lines confirmed that SHANK2 overexpression causes deregulation of Hippo signaling through competitive binding for a LATS1 activator, and as a potential oncogene, SHANK2 promotes cellular transformation and tumor formation in vivo. In cancer cell lines with deregulated Hippo pathway, depletion of SHANK2 restores Hippo signaling and ceases cellular proliferation. Taken together, these results suggest that SHANK2 is an evolutionarily conserved Hippo pathway regulator, commonly amplified in human cancer and potently promotes cancer. Our study for the first time illustrated oncogenic function of SHANK2, one of the most frequently amplified gene in human cancer. Furthermore, given that in normal adult tissues, SHANK2's expression is largely restricted to the nervous system, SHANK2 may represent an interesting target for anticancer therapy."	"In the hippocampus, locations associated with salient features are represented by a disproportionately large number of neurons, but the cellular and molecular mechanisms underlying this over-representation remain elusive. Using longitudinal calcium imaging in mice learning to navigate in virtual reality, we find that the over-representation of reward and landmark locations are mediated by persistent and separable subsets of neurons, with distinct time courses of emergence and differing underlying molecular mechanisms. Strikingly, we find that in mice lacking Shank2, an autism spectrum disorder (ASD)-linked gene encoding an excitatory postsynaptic scaffold protein, the learning-induced over-representation of landmarks was absent whereas the over-representation of rewards was substantially increased, as was goal-directed behavior. These findings demonstrate that multiple hippocampal coding processes for unique types of salient features are distinguished by a Shank2-dependent mechanism and suggest that abnormally distorted hippocampal salience mapping may underlie cognitive and behavioral abnormalities in a subset of ASDs."	"Little is known about how genetics and epigenetics interplay in depression. Evidence suggests that genetic variants may change vulnerability to depression by modulating DNA methylation (DNAm) and non-coding RNA (ncRNA) levels. Therefore, the aim of the study was to investigate the effect of the genetic variation, previously identified in the largest genome-wide association study for depression, on proximal DNAm and ncRNA levels. We performed DNAm quantitative trait locus (meQTL) analysis in two independent cohorts (total n = 435 healthy individuals), testing associations between 102 single-nucleotide polymorphisms (SNPs) and DNAm levels in whole blood. We identified and replicated 64 SNP-CpG pairs (padj. &lt; 0.05) with meQTL effect. Lower DNAm at cg02098413 located in the HACE1 promoter conferred by the risk allele (C allele) at rs1933802 was associated with higher risk for depression (praw = 0.014, DNAm = 2.3%). In 1202 CD14+ cells sorted from blood, DNAm at cg02088412 positively correlated with HACE1 mRNA expression. Investigation in postmortem brain tissue of adults diagnosed with major depressive disorder (MDD) indicated 1% higher DNAm at cg02098413 in neurons and lower HACE1 mRNA expression in CA1 hippocampus of MDD patients compared with healthy controls (p = 0.008 and 0.012, respectively). Expression QTL analysis in blood of 74 adolescent revealed that hsa-miR-3664-5p was associated with rs7117514 (SHANK2) (padj. = 0.015, mRNA difference = 5.2%). Gene ontology analysis of the miRNA target genes highlighted implication in neuronal processes. Collectively, our findings from a multi-tissue (blood and brain) and multi-layered (genetic, epigenetic, transcriptomic) approach suggest that genetic factors may influence depression by modulating DNAm and miRNA levels. Alterations at HACE1 and SHANK2 loci imply potential mechanisms, such as oxidative stress in the brain, underlying depression. Our results deepened the knowledge of molecular mechanisms in depression and suggest new epigenetic targets that should be further evaluated."	"Improving the feed efficiency would increase profitability for producers while also reducing the environmental footprint of livestock production. This study was conducted to investigate the relationships among feed efficiency traits and metabolizable efficiency traits in 180 male broilers. Significant loci and genes affecting the metabolizable efficiency traits were explored with an imputation-based genome-wide association study. The traits measured or calculated comprised three growth traits, five feed efficiency related traits, and nine metabolizable efficiency traits. The residual feed intake (RFI) showed moderate to high and positive phenotypic correlations with eight other traits measured, including average daily feed intake (ADFI), dry excreta weight (DEW), gross energy excretion (GEE), crude protein excretion (CPE), metabolizable dry matter (MDM), nitrogen corrected apparent metabolizable energy (AMEn), abdominal fat weight (AbF), and percentage of abdominal fat (AbP). Greater correlations were observed between growth traits and the feed conversion ratio (FCR) than RFI. In addition, the RFI, FCR, ADFI, DEW, GEE, CPE, MDM, AMEn, AbF, and AbP were lower in low-RFI birds than high-RFI birds (P &lt; 0.01 or P &lt; 0.05), whereas the coefficients of MDM and MCP of low-RFI birds were greater than those of high-RFI birds (P &lt; 0.01). Five narrow QTLs for metabolizable efficiency traits were detected, including one 82.46-kb region for DEW and GEE on Gallus gallus chromosome (GGA) 26, one 120.13-kb region for MDM and AMEn on GGA1, one 691.25-kb region for the coefficients of MDM and AMEn on GGA5, one region for the coefficients of MDM and MCP on GGA2 (103.45-103.53 Mb), and one 690.50-kb region for the coefficient of MCP on GGA14. Linkage disequilibrium (LD) analysis indicated that the five regions contained high LD blocks, as well as the genes chromosome 26 C6orf106 homolog (C26H6orf106), LOC396098, SH3 and multiple ankyrin repeat domains 2 (SHANK2), ETS homologous factor (EHF), and histamine receptor H3-like (HRH3L), which are known to be involved in the regulation of neurodevelopment, cell proliferation and differentiation, and food intake. Selection for low RFI significantly decreased chicken feed intake, excreta output, and abdominal fat deposition, and increased nutrient digestibility without changing the weight gain. Five novel QTL regions involved in the control of metabolizable efficiency in chickens were identified. These results, combined through nutritional and genetic approaches, should facilitate novel insights into improving feed efficiency in poultry and other species."	"SHANK2 is a scaffold protein that serves as a protein anchor at the postsynaptic density in neurons. Genetic variants of SHANK2 are strongly associated with synaptic dysfunction and the pathophysiology of autism spectrum disorder. Recent studies indicate that early neuronal developmental defects play a role in the pathogenesis of autism spectrum disorder, and that insulin-like growth factor 1 has a positive effect on neurite development. To investigate the effects of SHANK2 knockdown on early neuronal development, we generated a sparse culture system using human induced pluripotent stem cells, which then differentiated into neural progenitor cells after 3-14 days in culture, and which were dissociated into single neurons. Neurons in the experimental group were infected with shSHANK2 lentivirus carrying a red fluorescent protein reporter (shSHANK2 group). Control neurons were infected with scrambled shControl lentivirus carrying a red fluorescent protein reporter (shControl group). Neuronal somata and neurites were reconstructed based on the lentiviral red fluorescent protein signal. Developmental dendritic and motility changes in VGLUT1<sup>+</sup> glutamatergic neurons and TH<sup>+</sup> dopaminergic neurons were then evaluated in both groups. Compared with shControl VGLUT1<sup>+</sup> neurons, the dendritic length and arborizations of shSHANK2 VGLUT1<sup>+</sup> neurons were shorter and fewer, while cell soma speed was higher. Furthermore, dendritic length and arborization were significantly increased after insulin-like growth factor 1 treatment of shSHANK2 neurons, while cell soma speed remained unaffected. These results suggest that insulin-like growth factor 1 can rescue morphological defects, but not the change in neuronal motility. Collectively, our findings demonstrate that SHANK2 deficiency perturbs early neuronal development, and that IGF1 can partially rescue the neuronal defects caused by SHANK2 knockdown. All experimental procedures and protocols were approved by the Laboratory Animal Ethics Committee of Jinan University, China (approval No. 20170228010) on February 28, 2017."
+"POGZ"	"autism"	32742312	32359026	32345733	32103003	32037394	"Tc1/mariner and Zator, as two superfamilies of IS630-Tc1-mariner (ITm) group, have been well-defined. However, the molecular evolution and domestication of pogo transposons, once designated as an important family of the Tc1/mariner superfamily, are still poorly understood. Here, phylogenetic analysis show that pogo transposases, together with Tc1/mariner, DD34E/Gambol, and Zator transposases form four distinct monophyletic clades with high bootstrap supports (&gt; = 74%), suggesting that they are separate superfamilies of ITm group. The pogo superfamily represents high diversity with six distinct families (Passer, Tigger, pogoR, Lemi, Mover, and Fot/Fot-like) and wide distribution with an expansion spanning across all the kingdoms of eukaryotes. It shows widespread occurrences in animals and fungi, but restricted taxonomic distribution in land plants. It has invaded almost all lineages of animals-even mammals-and has been domesticated repeatedly in vertebrates, with 12 genes, including centromere-associated protein B (CENPB), CENPB DNA-binding domain containing 1 (CENPBD1), Jrk helix-turn-helix protein (JRK), JRK like (JRKL), pogo transposable element derived with KRAB domain (POGK), and with ZNF domain (POGZ), and Tigger transposable element-derived 2 to 7 (TIGD2-7), deduced as originating from this superfamily. Two of them (JRKL and TIGD2) seem to have been co-domesticated, and the others represent independent domestication events. Four genes (TIGD3, TIGD4, TIGD5, and POGZ) tend to represent ancient domestications in vertebrates, while the others only emerge in mammals and seem to be domesticated recently. Significant structural variations including target site duplication (TSD) types and the DDE triad signatures (DD29-56D) were observed for pogo transposons. Most domesticated genes are derived from the complete transposase genes; but CENPB, POGK, and POGZ are chimeric genes fused with additional functional domains. This is the first report to systematically reveal the evolutionary profiles of the pogo transposons, suggesting that pogo and Tc1/Mariner are two separate superfamilies of ITm group, and demonstrating the repeated domestications of pogo in vertebrates. These data indicate that pogo transposons have played important roles in shaping the genome and gene evolution of fungi and animals. This study expands our understanding of the diversity of pogo transposons and updates the classification of ITm group."	"A rare developmental delay (DD)/intellectual disability (ID) syndrome with craniofacial dysmorphisms and autistic features, termed White-Sutton syndrome (WHSUS, MIM#614787), has been recently described, identifying truncating mutations in the chromatin regulator POGZ (KIAA0461, MIM#614787). We describe a further WHSUS patient harboring a novel nonsense de novo POGZ variant, which afflicts a protein domain with transposase activity less frequently impacted by mutational events (DDE domain). This patient displays additional physical and behavioral features, these latter mimicking Smith-Magenis syndrome (SMS, MIM#182290). Considering sleep-wake cycle anomalies and abnormal behavior manifested by this boy, we reinforced the clinical resemblance between WHSUS and SMS, being both chromatinopathies. In addition, using the DeepGestalt technology, we identified a different facial overlap between WHSUS patients with mutations in the DDE domain (Group 1) and individuals harboring variants in other protein domains/regions (Group 2). This report further delineates the clinical and molecular repertoire of the POGZ-related phenotype, adding a novel patient with uncommon clinical and behavioral features and provides the first computer-aided facial study of WHSUS patients."	"Determining the genetic basis of speech disorders provides insight into the neurobiology of human communication. Despite intensive investigation over the past 2 decades, the etiology of most speech disorders in children remains unexplained. To test the hypothesis that speech disorders have a genetic etiology, we performed genetic analysis of children with severe speech disorder, specifically childhood apraxia of speech (CAS). Precise phenotyping together with research genome or exome analysis were performed on children referred with a primary diagnosis of CAS. Gene coexpression and gene set enrichment analyses were conducted on high-confidence gene candidates. Thirty-four probands ascertained for CAS were studied. In 11/34 (32%) probands, we identified highly plausible pathogenic single nucleotide (n = 10; CDK13, EBF3, GNAO1, GNB1, DDX3X, MEIS2, POGZ, SETBP1, UPF2, ZNF142) or copy number (n = 1; 5q14.3q21.1 locus) variants in novel genes or loci for CAS. Testing of parental DNA was available for 9 probands and confirmed that the variants had arisen de novo. Eight genes encode proteins critical for regulation of gene transcription, and analyses of transcriptomic data found CAS-implicated genes were highly coexpressed in the developing human brain. We identify the likely genetic etiology in 11 patients with CAS and implicate 9 genes for the first time. We find that CAS is often a sporadic monogenic disorder, and highly genetically heterogeneous. Highly penetrant variants implicate shared pathways in broad transcriptional regulation, highlighting the key role of transcriptional regulation in normal speech development. CAS is a distinctive, socially debilitating clinical disorder, and understanding its molecular basis is the first step towards identifying precision medicine approaches."	"Pogo transposable element derived with ZNF domain (POGZ) has been identified as one of the most recurrently de novo mutated genes in patients with neurodevelopmental disorders (NDDs), including autism spectrum disorder (ASD), intellectual disability and White-Sutton syndrome; however, the neurobiological basis behind these disorders remains unknown. Here, we show that POGZ regulates neuronal development and that ASD-related de novo mutations impair neuronal development in the developing mouse brain and induced pluripotent cell lines from an ASD patient. We also develop the first mouse model heterozygous for a de novo POGZ mutation identified in a patient with ASD, and we identify ASD-like abnormalities in the mice. Importantly, social deficits can be treated by compensatory inhibition of elevated cell excitability in the mice. Our results provide insight into how de novo mutations on high-confidence ASD genes lead to impaired mature cortical network function, which underlies the cellular pathogenesis of NDDs, including ASD."	"This study investigated the diagnostic utility of nontargeted genomic testing in patients with pediatric heart disease. We analyzed genome sequencing data of 111 families with cardiac lesions for rare, disease-associated variation. In 14 families (12.6%), we identified causative variants: seven were de novo (ANKRD11, KMT2D, NR2F2, POGZ, PTPN11, PURA, SALL1) and six were inherited from parents with no or subclinical heart phenotypes (FLT4, DNAH9, MYH11, NEXMIF, NIPBL, PTPN11). Outcome of the testing was associated with the presence of extracardiac features (p = 0.02), but not a positive family history for cardiac lesions (p = 0.67). We also report novel plausible gene-disease associations for tetralogy of Fallot/pulmonary stenosis (CDC42BPA, FGD5), hypoplastic left or right heart (SMARCC1, TLN2, TRPM4, VASP), congenitally corrected transposition of the great arteries (UBXN10), and early-onset cardiomyopathy (TPCN1). The identified candidate genes have critical functions in heart development, such as angiogenesis, mechanotransduction, regulation of heart size, chromatin remodeling, or ciliogenesis. This data set demonstrates the diagnostic and scientific value of genome sequencing in pediatric heart disease, anticipating its role as a first-tier diagnostic test. The genetic heterogeneity will necessitate large-scale genomic initiatives for delineating novel gene-disease associations."
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/data/pmids_to_pubtator_matrix_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,7 @@
+"24(s)-hydroxycholesterol"	"ablim2"	"acap2"	"acetonitrile"	"adamts20"	"adamts7"	"ahi1"	"alzheimer's"	"amphetamine"	"ankrd11"	"arginine"	"asd"	"astigmatism"	"autism"	"autism spectrum disorder"	"behavioral abnormalities"	"brd4"	"breast cancer"	"brugada syndrome"	"c26h6orf106"	"c6orf106"	"cacna1c"	"cacna1h"	"cacna2d2"	"calcium"	"cancer"	"cancerous overgrowth"	"cardiac and neuronal channelopathies"	"cardiac lesions"	"cardiomyopathy"	"cas"	"ccl16"	"cd14"	"cd31"	"cd45"	"cd49d"	"cd73"	"cd90"	"cdc42bpa"	"cdh15"	"cdk13"	"cdkl5"	"chromosomal abnormalities"	"clonidine"	"cntnap2"	"cognitive"	"col24a1"	"col4a2"	"col5a1"	"col6a3"	"congenital anomalies"	"contactin-associated protein-like 2"	"cooh"	"corneal neuralgia"	"cornelia de lange syndrome"	"cpe"	"craniofacial dysmorphisms"	"crebbp"	"ctnna1"	"ctu2"	"cystatin c"	"d-cycloserine"	"ddx3x"	"deficiency perturbs early neuronal"	"degs"	"depdc7"	"depression"	"depressive disorder"	"developmental defects"	"developmental delay"	"developmental dendritic"	"developmental human disorders"	"diabetes"	"dip2c"	"dip2cdelta2bp"	"disability (id) syndrome"	"dnah11"	"dnah9"	"dnlz"	"dry excreta weight"	"dry matter"	"dysmorphic"	"ebf3"	"edta"	"ees"	"ehmt1"	"eno2"	"enolase 2"	"ep300"	"epha1"	"epha10"	"epilepsy"	"epileptic encephalopathies"	"epileptic encephalopathy"	"epileptic spasm"	"erythromelalgia and paroxysmal extreme pain disorder"	"fatigue syndrome"	"fcr"	"fgd5"	"flt4"	"fn1"	"forkhead box p2"	"foxp2"	"fracture"	"fyco1"	"gaba"	"gabbr2"	"gabra5"	"gabra6"	"gabre"	"gabrq"	"gabrr2"	"gallus gallus chromosome"	"gap43"	"gga1"	"gga2"	"gingivitis"	"glutamate"	"glycine"	"gnao1"	"gnb1"	"grid2ip"	"grin1"	"grin2a"	"grin2b"	"grin2c"	"grm4"	"growth hormone"	"gtf2h1"	"hace1"	"haploinsufficiency"	"hdac8"	"hippo"	"hippocampal sclerosis"	"histamine receptor h3"	"hivep2"	"hnav1.7"	"hsa-mir-3664"	"hspa7"	"hyperopia"	"hypoplastic left"	"icu-sepsis"	"igf-1"	"igf1"	"infected"	"inflammation"	"insulin-like growth factor 1"	"intellectual disability"	"itih3"	"kank1"	"kbg"	"kbg syndrome"	"kchip2"	"kcnd3"	"kcnh1"	"kcnma1"	"kif24"	"kit"	"kmt2d"	"ksr1"	"ksr2"	"kv4.3"	"lamb4"	"lats1"	"lman1"	"lrp2"	"madd"	"mccc1"	"mdd"	"mdm"	"mecp2"	"meis2"	"memantine"	"metabolic disorders"	"mfsd8"	"mir-218"	"mirp3"	"mllt1"	"movement disorders"	"mtch1"	"mtx1"	"myc"	"myh11"	"myo1e"	"myopia"	"nav 1.1"	"nav1.5"	"nav1.7"	"ndds"	"neonatal saliva"	"nestin"	"neurexin 1"	"neurod1"	"neurodevelopmental disorders"	"neurofilament heavy polypeptide"	"neuronal defects"	"neuronal developmental defects"	"neuronal disorders"	"neuropathic"	"neuropathic pain"	"neuropathy"	"neuropsychiatric disorders"	"nfh"	"nipbl"	"nitrogen"	"nlgn2"	"noonan syndrome"	"nr2f2"	"nsun7"	"ovarian cancer"	"pain"	"pain syndromes"	"pcdh19"	"pde3b"	"pediatric heart disease"	"peptides"	"pgn"	"phosphopeptides"	"plxnb2"	"pogz"	"polyacrylamide"	"polyneuropathy"	"pom121c"	"poteb"	"prednisone"	"pregnenolone sulfate"	"ptpn11"	"pulmonary stenosis"	"pura"	"pus7l"	"rad21"	"regressive autism"	"rpl13"	"rps6kl1"	"rubinstein-taybi syndrome"	"rxrb"	"saa1"	"saa2"	"sall1"	"sbno1"	"sca19"	"sclerosis"	"scn10a"	"scn1a"	"scn2a"	"scn5a"	"scn8a"	"scn9a"	"sdcbp2"	"sds"	"seizure"	"seizures"	"sepsis"	"serine"	"setbp1"	"sfn"	"shank2"	"short stature"	"slc2a1"	"slc8a2"	"slc9a3r1"	"slc9a6"	"slx4"	"smarcc1"	"smc1a"	"smc2"	"smc3"	"smith-magenis syndrome"	"sms"	"snap25"	"social deficits"	"sodium"	"speech disorder"	"speech disorders"	"spinocerebellar ataxia"	"spondyloepimetaphyseal dysplasia isidor"	"structural abnormalities"	"supt6h"	"supv3l1"	"syde1"	"synaptophysin"	"syncope"	"tachycardia"	"tceb3b"	"tkt"	"tln2"	"tmed8"	"tmf1"	"tobramycin"	"tpcn1"	"trpm4"	"trpv1"	"tsd"	"tshr"	"ttc21a"	"tumor"	"u2surp"	"ube3a"	"ubxn10"	"upf2"	"usp26"	"uty"	"vasp"	"vav2"	"vglut1"	"white-sutton syndrome"	"ws"	"znf142"	"znf280d"	"znf300"
+0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	1	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	1	0	1	1	1	0	0	0	0	1	1	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0
+0	1	1	1	1	1	1	1	0	0	0	0	1	0	0	0	0	1	0	0	0	1	1	1	0	0	0	0	0	0	0	1	0	1	1	1	1	1	0	0	0	0	0	0	0	0	1	1	1	1	0	0	1	1	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	1	0	0	1	1	0	1	1	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	1	0	1	1	0	1	0	0	0	1	0	0	1	1	0	0	0	0	1	1	1	1	0	1	1	0	1	0	1	1	1	1	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	1	1	0	0	1	0	0	1	0	1	0	1	0	0	1	1	1	1	0	1	0	0	1	0	0	1	1	1	1	0	1	0	1	0	1	0	0	1	1	1	1	1	0	0	0	0	1	0	0	0	1	0	1	1	1	0	1	0	0	1	0	0	0	1	1	1	0	0	0	1	0	0	1	0	0	0	1	1	0	1	0	0	1	0	0	0	1	0	1	0	0	0	0	0	1	1	1	1	1	1	1	1	0	1	1	0	0	0	1	0	1	1	0	1	0	0	0	1	1	0	1	0	0	0	0	1	1
+1	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	1	1	0	0	0	1	1	1	1	1	1	0	0	0	0	0	1	1	0	0	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	1	0	0	0	1	1	0	0	0	1	1	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	1	0	0	1	1	1	0	1	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	0	0	1	0	0	0	0	0	1	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	0	0
+0	0	0	0	0	0	0	0	0	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	1	1	1	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	1	1	0	1	0	0	0	0	0	1	1	0	0	1	0	0	1	0	1	0	0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/data/pubmed_by_queries_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,7 @@
+"ID_gene"	"GROUPING_disease"	"PMID_1"	"PMID_2"	"PMID_3"	"PMID_4"	"PMID_5"
+"SCN1A"	"epilepsy"	"32773773"	"32761786"	"32722525"	"32709127"	"32702657"
+"SCN9A"	"epilepsy"	"32766464"	"32719824"	"32696438"	"32663327"	"32636717"
+"GRIN2A"	"epilepsy"	"32765929"	"32722525"	"32712275"	"32707302"	"32650666"
+"ANKRD11"	"autism"	"32760686"	"32604767"	"32476269"	"32258089"	"32222090"
+"SHANK2"	"autism"	"32661924"	"32640229"	"32616021"	"32607230"	"32594058"
+"POGZ"	"autism"	"32742312"	"32359026"	"32345733"	"32103003"	"32037394"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/data/pubmed_by_queries_output_abstracts	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,7 @@
+"ID_gene"	"GROUPING_disease"	"ABSTRACT_1"	"ABSTRACT_2"	"ABSTRACT_3"	"ABSTRACT_4"	"ABSTRACT_5"
+"SCN1A"	"epilepsy"	"A longitudinal footprint of genetic epilepsies using automated electronic medical record interpretation. Childhood epilepsies have a strong genetic contribution, but the disease trajectory for many genetic etiologies remains unknown. Electronic medical record (EMR) data potentially allow for the analysis of longitudinal clinical information but this has not yet been explored. We analyzed provider-entered neurological diagnoses made at 62,104 patient encounters from 658 individuals with known or presumed genetic epilepsies. To harmonize clinical terminology, we mapped clinical descriptors to Human Phenotype Ontology (HPO) terms and inferred higher-level phenotypic concepts. We then binned the resulting 286,085 HPO terms to 100 3-month time intervals and assessed gene-phenotype associations at each interval. We analyzed a median follow-up of 6.9 years per patient and a cumulative 3251 patient years. Correcting for multiple testing, we identified significant associations between &quot;Status epilepticus&quot; with SCN1A at 1.0 years, &quot;Severe intellectual disability&quot; with PURA at 9.75 years, and &quot;Infantile spasms&quot; and &quot;Epileptic spasms&quot; with STXBP1 at 0.5 years. The identified associations reflect known clinical features of these conditions, and manual chart review excluded provider bias. Some aspects of the longitudinal disease histories can be reconstructed through EMR data and reveal significant gene-phenotype associations, even within closely related conditions. Gene-specific EMR footprints may enable outcome studies and clinical decision support."	"Modulation of GABAergic dysfunction due to SCN1A mutation linked to Hippocampal Sclerosis. We compared GABAergic function and neuronal excitability in the hippocampal tissue of seven sporadic MTLE patients with a patient carrying a SCN1A loss-of-function mutation. All had excellent outcome from anterior temporal lobectomy, and neuropathological study always showed characteristic hippocampal sclerosis (Hs). Compared to MTLE patients, there was a more severe impairment of GABAergic transmission, due to the lower GABAergic activity related to the NaV 1.1 loss-of-function, in addition to the typical GABA-current rundown, a hallmark of sporadic MTLE. Our results give evidence that a pharmacological rescuing of the GABAergic dysfunction may represent a promising strategy for the treatment of these patients."	"Next Generation Sequencing of 134 Children with Autism Spectrum Disorder and Regression. Approximately 30% of individuals with autism spectrum disorder (ASD) experience developmental regression, the etiology of which remains largely unknown. We performed a complete literature search and identified 47 genes that had been implicated in such cases. We sequenced these genes in a preselected cohort of 134 individuals with regressive autism. In total, 16 variants in 12 genes with evidence supportive of pathogenicity were identified. They were classified as variants of uncertain significance based on ACMG standards and guidelines. Among these were recurring variants in GRIN2A and PLXNB2, variants in genes that were linked to syndromic forms of ASD (GRIN2A, MECP2, CDKL5, SCN1A,PCDH19, UBE3A, and SLC9A6), and variants in the form of oligogenic heterozygosity (EHMT1, SLC9A6, and MFSD8)."	"Inter-Regulation of Kv4.3 and Voltage-Gated Sodium Channels Underlies Predisposition to Cardiac and Neuronal Channelopathies. Genetic variants in voltage-gated sodium channels (Nav) encoded by SCNXA genes, responsible for INa, and Kv4.3 channels encoded by KCND3, responsible for the transient outward current (Ito), contribute to the manifestation of both Brugada syndrome (BrS) and spinocerebellar ataxia (SCA19/22). We examined the hypothesis that Kv4.3 and Nav variants regulate each other's function, thus modulating INa/Ito balance in cardiomyocytes and INa/I(A) balance in neurons. Bicistronic and other constructs were used to express WT or variant Nav1.5 and Kv4.3 channels in HEK293 cells. INa and Ito were recorded. SCN5A variants associated with BrS reduced INa, but increased Ito. Moreover, BrS and SCA19/22 KCND3 variants associated with a gain of function of Ito, significantly reduced INa, whereas the SCA19/22 KCND3 variants associated with a loss of function (LOF) of Ito significantly increased INa. Auxiliary subunits Navβ1, MiRP3 and KChIP2 also modulated INa/Ito balance. Co-immunoprecipitation and Duolink studies suggested that the two channels interact within the intracellular compartments and biotinylation showed that LOF SCN5A variants can increase Kv4.3 cell-surface expression. Nav and Kv4.3 channels modulate each other's function via trafficking and gating mechanisms, which have important implications for improved understanding of these allelic cardiac and neuronal syndromes."	"Molecular diagnosis of epileptic encephalopathy of the first year of life applying a customized gene panel in a group of Argentinean patients. The aim of this study was to perform a molecular characterization of 17 Argentinean pediatric patients with diagnosis of having epileptic encephalopathies (EEs) of the first year of life without known etiology, applying next-generation sequencing (NGS). We included 17 patients with EE with age of onset under 12 months without known etiology after ruling out structural abnormalities, metabolic disorders, and large chromosomal abnormalities. They presented with the following clinical phenotypes: Dravet syndrome (DS; n: 7), epilepsy of infancy with migrating focal seizures (EIMFS; n: 3), West syndrome (WS; n: 2), and undetermined epileptic encephalopathy (UEE; n: 5). Neurologic examinations, seizure semiology, brain magnetic resonance imaging, and standard electroencephalography (EEG) or video-EEG studies were performed in all cases. Using a custom amplicon strategy, we designed an NGS panel to study 47 genes associated with EEs. Pathogenic variants were detected in 8 cases (47%), including seven novel pathogenic variants and one previously reported as being pathogenic. The pathogenic variants were identified in 6 patients with DS (SCN1A gene), one with EIMFS (SCN2A gene), and one with UEE (SLC2A1 gene). Nonrelevant variants were identified in the patients with WS. We demonstrated the feasibility of an NGS-gene panel approach for the analysis of patients with EE in our setting. A genetic diagnosis was achieved in nearly 50% of patients, 87% of them presenting with nonpreviously reported variants. The early identification of the underlying causative genetic alteration will be a valuable tool for providing prognostic information and genetic counselling and also to improve therapeutic decisions in Argentinean patients."
+"SCN9A"	"epilepsy"	"Genomic analysis of 21 patients with corneal neuralgia after refractive surgery. Refractive surgery, specifically laser-assisted in situ keratomileusis and photorefractive keratectomy, are widely applied procedures to treat myopia, hyperopia, and astigmatism. After surgery, a subgroup of cases suffers from persistent and intractable pain of obscure etiology, thought to be neuropathic. We aimed to investigate the contribution of genomic factors in the pathogenesis of these patients with corneal neuralgia. We enrolled 21 cases (6 males and 15 females) from 20 unrelated families, who reported persistent pain (&gt;3 months), after refractive surgery (20 laser-assisted in situ keratomileusis and 1 photorefractive keratectomy patients). Whole-exome sequencing and gene-based association test were performed. Whole-exome sequencing demonstrated low-frequency variants (allele frequency &lt; 0.05) in electrogenisome-related ion channels and cornea-expressed collagens, most frequently in SCN10A (5 cases), SCN9A (4 cases), TRPV1 (4 cases), CACNA1H and CACNA2D2 (5 cases each), COL5A1 (6 cases), COL6A3 (5 cases), and COL4A2 (4 cases). Two variants, p.K655R of SCN9A and p.Q85R of TRPV1, were previously characterized as gain-of-function. Gene-based association test assessing &quot;damaging&quot; missense variants against gnomAD exome database (non-Finnish European or global), identified a gene, SLC9A3R1, with statistically significant effect (odds ratio = 17.09 or 17.04; Bonferroni-corrected P-value &lt; 0.05). These findings in a small patient cohort did not identify a common gene/variant among most of these cases, as found in other disorders, for example small-fiber neuropathy. Further studies of these candidate genes/variants might enhance understanding of the role of genetic factors in the pathogenesis of corneal neuralgia."	"Association of small-fiber polyneuropathy with three previously unassociated rare missense SCN9A variants. Small fiber polyneuropathy (SFN) involves ectopic firing and degeneration of small-diameter, somatic/autonomic peripheral axons. Causes include diabetes, inflammation and rare pathogenic mutations, including in SCN9-11 genes that encode small fiber sodium channels. The aim of this study is to associate a new phenotype-immunotherapy-responsive SFN-with rare amino acid-substituting SCN9A variants and present potential explanations. A retrospective chart review of two Caucasians with skin biopsy confirmed SFN and rare SCN9A single nucleotide polymorphisms not previously reported in neuropathy. A 47-year-old with 4 years of disabling widespread neuropathic pain and exertional intolerance had nerve- and skin biopsy-confirmed SFN, with blood tests revealing only high-titer antinuclear antibodies and low complement C4 consistent with B cell dysimmunity. Six years of intravenous immunoglobulin (IVIg) therapy markedly improved sensory and autonomic symptoms and normalized his neurite density. After whole exome sequencing revealed a potentially pathogenic SCN9A-A3734G variant, sodium channel blockers were tried. Herpes zoster left a 32-year-old with disabling exertional intolerance (&quot;chronic fatigue syndrome&quot;), postural syncope and tachycardia, arm and leg paresthesias, reduced sweating, and distal hairloss. Screening revealed antinuclear and potassium channel autoantibodies, so prednisone and then IVIg were prescribed with great benefit. During 4 years of immunotherapy, his symptoms and function improved, and all abnormal biomarkers (autonomic testing and skin biopsies) normalized. Whole exome sequencing then revealed two nearby compound heterozygous SCN9A variants that were computer-predicted to be deleterious. These cases newly associate three novel amino acid-substituting SCN9A variants with immunotherapy-responsive neuropathy. Only larger studies can determine whether these are contributory or coincidental, but they associate new variants with moderate or high likelihood of pathogenicity with a new highly related phenotype. La polyneuropathie des petites fibres implique le déclenchement d’activité ectopique et la dégénérescence des axones périphériques somatiques et autonomes de petit diamètre. Ses causes comprennent le diabète, l’inflammation et de rares mutations pathogènes, notamment dans les gènes SCN9–11 qui codent les canaux sodiques des petites fibres. Associer un nouveau phénotype de polyneuropathie des petites fibres répondant à l’immunothérapie à des variantes rares de SCN9A substituant des acides aminés et présenter des explications possibles. Examen rétrospectif des dossiers de deux personnes de race blanche ayant subi une biopsie cutanée et présentant des polymorphismes mononucléotidiques de SCN9A rares qui n’avaient pas été signalés auparavant dans le cadre d’une neuropathie. Une homme de 47 ans souffrant depuis quatre ans de douleurs neuropathiques généralisées invalidantes et d’intolérance à l’effort a subi une biopsie des nerfs et de la peau qui a confirmé la polyneuropathie des petits fibres, les analyses sanguines ne révélant que des anticorps antinucléaires de haut niveau et un faible complément C4 correspondant à la dysimmunité des lymphocytes B. Six ans de traitement par immunoglobulines intraveineuses ont permis d’améliorer sensiblement les symptômes sensoriels et autonomes et de normaliser la densité de ses neurites. Après que le séquençage de l’exome entier ait révélé une variante de SCN9A-A3734G potentiellement pathogène, des inhibiteurs des canaux sodiques ont été essayee. Le zona a entrainé chez un homme de 32 ans une intolérance à l’effort invalidante (« syndrome de fatigue chronique »), une syncope posturale et une tachycardie, une paresthésie des bras et des jambes, une réduction de la transpiration et une perte de cheveux aux jambes. Le dépistage a révélé la présence d’auto-anticorps antinucléaires et de canaux potassiques, de sorte que la prednisone puis des immunoglobulines intraveineuses ont été prescrites, avec d’excellents résultats. Pendant quatre ans d’immunothérapie, ses symptômes et son fonctionnement se sont améliorés et tous les biomarqueurs anormaux (tests autonomes et biopsies cutanées) se sont normalisés. Le séquençage de l’exome entier a ensuite révélé deux variantes hétérozygotes de SCN9A composées à proximité et prédites par ordinateur comme étant délétères. Ces cas associent trois nouvelles variantes de SCN9A substituant des acides aminés à une neuropathie répondant à l’immunothérapie. Seules des études de plus grande envergure peuvent déterminer s’il s’agit de facteurs contributifs ou de coïncidences, mais ces cas associent de nouvelles variantes ayant une probabilité modérée ou élevée de pathogénicité à un nouveau phénotype étroitement apparenté."	"Conversion of Neural Stem Cells into Functional Neuron-Like Cells by MicroRNA-218: Differential Expression of Functionality Genes. Conversion of mesenchymal stem cells (MSC) into neuron-like cells (NLC) is a feasible cell therapy strategy for replacing lost neurons in neuronal disorders. In this study, adipose-derived MSC (ADMSC) were converted into neural stem cells (NSC) via neurosphere. The resulting NSC were then differentiated into NLC by transduction with microRNA-218, using a lentiviral vector. ADMSC, NSC, and NLC were first characterized by flow cytometry, RT-PCR, and immunocytochemistry. The functionality of the NLC was evaluated by qRT-PCR and patch clamp recording. Immunophenotyping of ADMSC showed their immunoreactivity to MSC markers CD90, CD73, CD105, and CD49d, but not to CD31 and CD45. RT-PCR results demonstrated the expression of nestin, neurogenin, neurod1, neurofilament light, and GAP43 genes in NSC while NLC expressed synaptophysin, neurofilament heavy, and GAP43. In addition, NSC morphology changed into multipolar with long processes after transduction with miR-218. Moreover, using qRT-PCR, the expression levels of miR-218 and functionality genes CACNA1C, SNAP25, KCNH1, KCNMA1, and SCN9A were significantly increased in NLC, compared with NSC, and ADMSC at 3 weeks and 5 months post-transduction. Furthermore, the generated NLC expressed significantly higher protein levels of neurofilament heavy polypeptide (NFh) and enolase 2 (Eno2) neuronal markers, compared with ADMSC and NSC. Finally, action potentials were successfully recorded by the generated NLC, using patch clamp. In summary, ADMSC-derived NSC differentiated into functional NLC by transduction with miR-218. The generated NLC expressed functional SNAP25, CACNA1C, KCNH1, KCNMA1, and SCN9A and produced an action potential, which provides useful insights into the generation of functional neuronal cells."	"Uncoupling sodium channel dimers rescues the phenotype of a pain-linked Nav1.7 mutation. The voltage-gated sodium channel Nav1.7 is essential for adequate perception of painful stimuli. Mutations in the encoding gene, SCN9A, cause various pain syndromes in human patients. The hNav1.7/A1632E mutant causes symptoms of erythromelalgia and paroxysmal extreme pain disorder (PEPD), and its main gating change is a strongly enhanced persistent current. On the basis of recently published 3D structures of voltage-gated sodium channels, we investigated how the inactivation particle binds to the channel, how this mechanism is interfered with by the hNav1.7/A1632E mutation, and how dimerization modifies function of the pain-linked mutation. We applied atomistic molecular simulations to demonstrate the effect of the mutation on channel fast inactivation. Native polyacrylamide gel electrophoresis (PAGE) was used to demonstrate channel dimerization and patch-clamp measurements revealed a link between functional channel dimerization and the impairment of fast inactivation by the hNav1.7/A1632E mutation. We demonstrate that the enhanced persistent current of hNav1.7/A1632E is due to impaired binding of the inactivation particle, which inhibits the proper function of the recently proposed allosteric fast inactivation mechanism. We show that hNav1.7 forms dimers and that the disease-associated persistent current of hNav1.7/A1632E depends on the channel's functional dimerization status: Expression of the synthetic peptide difopein, a 14-3-3 inhibitor known to functionally uncouple dimers, significantly decreased hNav1.7/A1632E-induced persistent currents. Functional uncoupling of mutant hNav1.7/A1632E channel dimers rescues its defective allosteric fast inactivation mechanism. Our findings support the concept of sodium channel dimerization and reveal its potential relevance for human pain syndromes."	"The plasma peptides of sepsis. A practical strategy to discover sepsis specific proteins may be to compare the plasma peptides and proteins from patients in the intensive care unit with and without sepsis. The aim was to discover proteins and/or peptides that show greater observation frequency and/or precursor intensity in sepsis. The endogenous tryptic peptides of ICU-Sepsis were compared to ICU Control, ovarian cancer, breast cancer, female normal, sepsis, heart attack, Alzheimer's and multiple sclerosis along with their institution-matched controls, female normals and normal samples collected directly onto ice. Endogenous tryptic peptides were extracted from individual sepsis and control EDTA plasma samples in a step gradient of acetonitrile for random and independent sampling by LC-ESI-MS/MS with a set of robust and sensitive linear quadrupole ion traps. The MS/MS spectra were fit to fully tryptic peptides within proteins using the X!TANDEM algorithm. The protein observation frequency was counted using the SEQUEST algorithm after selecting the single best charge state and peptide sequence for each MS/MS spectra. The protein observation frequency of ICU-sepsis versus ICU Control was subsequently tested by Chi square analysis. The average protein or peptide log10 precursor intensity was compared across disease and control treatments by ANOVA in the R statistical system. Peptides and/or phosphopeptides of common plasma proteins such as ITIH3, SAA2, SAA1, and FN1 showed increased observation frequency by Chi square (χ<sup>2</sup> &gt; 9, p &lt; 0.003) and/or precursor intensity in sepsis. Cellular gene symbols with large Chi square values from tryptic peptides included POTEB, CTNNA1, U2SURP, KIF24, NLGN2, KSR1, GTF2H1, KIT, RPS6KL1, VAV2, HSPA7, SMC2, TCEB3B, ZNF300, SUPV3L1, ADAMTS20, LAMB4, MCCC1, SUPT6H, SCN9A, SBNO1, EPHA1, ABLIM2, cB5E3.2, EPHA10, GRIN2B, HIVEP2, CCL16, TKT, LRP2 and TMF1 amongst others showed increased observation frequency. Similarly, increased frequency of tryptic phosphopeptides were observed from POM121C, SCN8A, TMED8, NSUN7, SLX4, MADD, DNLZ, PDE3B, UTY, DEPDC7, MTX1, MYO1E, RXRB, SYDE1, FN1, PUS7L, FYCO1, USP26, ACAP2, AHI1, KSR2, LMAN1, ZNF280D and SLC8A2 amongst others. Increases in mean precursor intensity in peptides from common plasma proteins such as ITIH3, SAA2, SAA1, and FN1 as well as cellular proteins such as COL24A1, POTEB, KANK1, SDCBP2, DNAH11, ADAMTS7, MLLT1, TTC21A, TSHR, SLX4, MTCH1, and PUS7L among others were associated with sepsis. The processing of SAA1 included the cleavage of the terminal peptide D/PNHFRPAGLPEKY from the most hydrophilic point of SAA1 on the COOH side of the cystatin C binding that was most apparent in ICU-Sepsis patients compared to all other diseases and controls. Additional cleavage of SAA1 on the NH2 terminus side of the cystatin binding site were observed in ICU-Sepsis. Thus there was disease associated variation in the processing of SAA1 in ICU-Sepsis versus ICU controls or other diseases and controls. Specific proteins and peptides that vary between diseases might be discovered by the random and independent sampling of multiple disease and control plasma from different hospital and clinics by LC-ESI-MS/MS for storage in a relational SQL Server database and analysis with the R statistical system that will be a powerful tool for clinical research. The processing of SAA1 may play an unappreciated role in the inflammatory response to Sepsis."
+"GRIN2A"	"epilepsy"	"GRIN2A -Related Severe Epileptic Encephalopathy Treated with Memantine: An Example of Precision Medicine. Epileptic spasm (ES) is one of the seizure types which is difficult to treat. Next-generation sequencing has facilitated rapid gene discovery that is linked to ES and GRIN2A being one of them. Genotype-driven precision medicine is on the horizon and is a targeted treatment approach toward the precise molecular cause of the disease. GRIN2A gene encodes for a subunit of N-methyl-D-aspartate (NMDA) receptor and it has been suggested from in vitro studies and few case reports that memantine, a NMDA receptor antagonist, was shown to reduce seizures in patients with GRIN2A mutations. Here, we describe a patient with a novel GRIN2A mutation and severe drug-resistant ES who became seizure free with memantine."	"Next Generation Sequencing of 134 Children with Autism Spectrum Disorder and Regression. Approximately 30% of individuals with autism spectrum disorder (ASD) experience developmental regression, the etiology of which remains largely unknown. We performed a complete literature search and identified 47 genes that had been implicated in such cases. We sequenced these genes in a preselected cohort of 134 individuals with regressive autism. In total, 16 variants in 12 genes with evidence supportive of pathogenicity were identified. They were classified as variants of uncertain significance based on ACMG standards and guidelines. Among these were recurring variants in GRIN2A and PLXNB2, variants in genes that were linked to syndromic forms of ASD (GRIN2A, MECP2, CDKL5, SCN1A,PCDH19, UBE3A, and SLC9A6), and variants in the form of oligogenic heterozygosity (EHMT1, SLC9A6, and MFSD8)."	"Positive allosteric modulators that target NMDA receptors rectify loss-of-function GRIN variants associated with neurological and neuropsychiatric disorders. N-methyl-d-aspartate receptors (NMDARs) mediate a slow component of excitatory synaptic transmission that plays important roles in normal brain function and development. A large number of disease-associated variants in the GRIN gene family encoding NMDAR GluN subunits have been identified in patients with various neurological and neuropsychiatric disorders. Many of these variants reduce the function of NMDARs by a range of different mechanisms, including reduced glutamate potency, reduced glycine potency, accelerated deactivation time course, decreased surface expression, and/or reduced open probability. We have evaluated whether three positive allosteric modulators of NMDAR receptor function (24(S)-hydroxycholesterol, pregnenolone sulfate, tobramycin) and three co-agonists (d-serine, l-serine, and d-cycloserine) can mitigate the diminished function of NMDARs harboring GRIN variants. We examined the effects of these modulators on NMDARs that contained 21 different loss-of-function variants in GRIN1, GRIN2A, or GRIN2B, identified in patients with epilepsy, intellectual disability, autism, and/or movement disorders. For all variants, some aspect of the reduced function was partially restored. Moreover, some variants showed enhanced sensitivity to positive allosteric modulators compared to wild type receptors. These results raise the possibility that enhancement of NMDAR function by positive allosteric modulators may be a useful therapeutic strategy."	"Brain transcriptome study through CRISPR/Cas9 mediated mouse Dip2c gene knock-out. Dip2C is highly expressed in brain and many other tissues but its biological functions are still not clear. Genes regulated by Dip2C in brain have never been studied. The clustered regularly interspaced short palindromic repeat (CRISPR)/CRISPR-associated protein (Cas) systems, adaptive immune systems of bacteria and archaea, have been recently developed and broadly used in genome editing. Here, we describe targeted gene deletions of Dip2c gene in mice via CRISPR/Cas9 system and study of brain transcriptome under Dip2C regulation. The CRISPR/Cas9 system effectively generated targeted deletions of Dip2c by pronuclei injection of plasmids that express Cas9 protein and two sgRNAs. We achieved targeted large fragment deletion with efficiencies at 14.3% (1/7), 66.7% (2/3) and 20% (1/5) respectively in 3 independent experiments, averaging 26.7%. The large deletion DNA segments are 160.4 kb (Dip2C<sup>Δ160kb</sup>), spanning from end of exon 4 to mid of exon 38. A mouse with two base pair deletion was generated from a single sgRNA targeting in exon 4 (Dip2c<sup>Δ2bp</sup>) by non-homologous end joining (NHEJ). Loss of gene expression for Dip2c mRNA was confirmed by quantitative real-time PCR (qPCR). Dip2C-regulated genes and pathways in brain were investigated through RNAseq of Dip2c<sup>Δ2bp</sup>. In total, 838 genes were found differentially regulated, with 252 up and 586 down. Gene ontology (GO) analysis indicated that DEGs in brain are enriched in neurological functions including 'memory', 'neuropeptide signaling pathway', and 'response to amphetamine' while KEGG analysis shows that 'neuroactive ligand-receptor interaction pathway' is the most significantly enriched. DEGs Grid2ip, Grin2a, Grin2c, Grm4, Gabbr2, Gabra5, Gabre, Gabrq, Gabra6 and Gabrr2 are among the highly regulated genes by Dip2C. Results confirm Dip2C may play important roles in brain development and function."	"The Utility of Speech-Language Biomarkers to Predict Oral Feeding Outcomes in the Premature Newborn. Purpose Successful oral feeding and speech emergence are dependent upon the coordination of shared oral muscles and facial nerves. We aimed to determine if the speech-associated genes, forkhead box P2 (FOXP2), contactin-associated protein-like 2 (CNTNAP2), glutamate receptor, ionotropic, N-methyl D-aspartate 2A (GRIN2A), and neurexin 1, were detectable in neonatal saliva and could predict feeding outcomes in premature newborns. Method In this prospective, observational, preliminary study, saliva collected from 51 premature infants (gestational ages: 30-34 6/7 weeks) at different stages of oral feeding development underwent gene expression analysis. Binary (+/-) expression profiles were explored and examined in relation to days to achieve full oral feeds. Results GRIN2A and neurexin 1 rarely amplified in neonatal saliva and were not informative. Infants who amplified FOXP2 but not CNTNAP2 at the start of oral feeds achieved oral feeding success 3.20 (95% CI [-2.5, 8.9]) days sooner than other gene combinations. Conclusions FOXP2 and CNTNAP2 may be informative in predicting oral feeding outcomes in newborns. Salivary analysis at the start of oral feeding trials may inform feeding outcomes in this population and warrants further investigation."
+"ANKRD11"	"autism"	"16q24.3 Microduplication in a Patient With Developmental Delay, Intellectual Disability, Short Stature, and Nonspecific Dysmorphic Features: Case Report and Review of the Literature. We describe the case of a seven-year-old female patient who presented in our service with severe developmental delay, intellectual disability, facial dysmorphism, and femur fracture, observed in the context of very low bone mineral density. Array-based single nucleotide polymorphism (SNP array) analysis identified a 113 kb duplication involving the morbid OMIM genes: ANKRD11 (exon1), RPL13, and PGN genes. ANKRD11 deletions are frequently described in association with KBG syndrome, the duplications being less frequent (one case described before). The exome sequencing was negative for pathogenic variants or of uncertain significance in genes possibly associated with this phenotype. The patient presented subtle signs of KBG syndrome. It is known that the phenotype of KBG syndrome has a wide clinical spectrum, this syndrome being often underdiagnosed due to overlapping features with other conditions, also characterized by multiple congenital anomalies and intellectual disability. The particularity of this case is represented by the very low bone mineral density in a patient with 16q24.3 duplication. ANKRD11 haploinsufficiency is known to be associated with skeletal involvement, such as short stature, or delayed bone age. An effect on bone density has been observed only in experimental studies on mice with induced missense mutations in the ANKRD11 gene. This CNV also involved the duplication of the very conserved RPL13 gene, which could have a role for the skeletal phenotype of this patient, knowing the high level of gene expression in bone tissue and also the association with spondyloepimetaphyseal dysplasia Isidor Toutain type, in case of splicing mutations."	"A Private 16q24.2q24.3 Microduplication in a Boy with Intellectual Disability, Speech Delay and Mild Dysmorphic Features. No data on interstitial microduplications of the 16q24.2q24.3 chromosome region are available in the medical literature and remain extraordinarily rare in public databases. Here, we describe a boy with a de novo 16q24.2q24.3 microduplication at the Single Nucleotide Polymorphism (SNP)-array analysis spanning ~2.2 Mb and encompassing 38 genes. The patient showed mild-to-moderate intellectual disability, speech delay and mild dysmorphic features. In DECIPHER, we found six individuals carrying a &quot;pure&quot; overlapping microduplication. Although available data are very limited, genomic and phenotype comparison of our and previously annotated patients suggested a potential clinical relevance for 16q24.2q24.3 microduplication with a variable and not (yet) recognizable phenotype predominantly affecting cognition. Comparing the cytogenomic data of available individuals allowed us to delineate the smallest region of overlap involving 14 genes. Accordingly, we propose ANKRD11, CDH15, and CTU2 as candidate genes for explaining the related neurodevelopmental manifestations shared by these patients. To the best of our knowledge, this is the first time that a clinical and molecular comparison among patients with overlapping 16q24.2q24.3 microduplication has been done. This study broadens our knowledge of the phenotypic consequences of 16q24.2q24.3 microduplication, providing supporting evidence of an emerging syndrome."	"Pathogenic variants in EP300 and ANKRD11 in patients with phenotypes overlapping Cornelia de Lange syndrome. Cornelia de Lange syndrome (CdLS), Rubinstein-Taybi syndrome (RSTS), and KBG syndrome are three distinct developmental human disorders. Variants in seven genes belonging to the cohesin pathway, NIPBL, SMC1A, SMC3, HDAC8, RAD21, ANKRD11, and BRD4, were identified in about 80% of patients with CdLS, suggesting that additional causative genes remain to be discovered. Two genes, CREBBP and EP300, have been associated with RSTS, whereas KBG results from variants in ANKRD11. By exome sequencing, a genetic cause was elucidated in two patients with clinical diagnosis of CdLS but without variants in known CdLS genes. In particular, genetic variants in EP300 and ANKRD11 were identified in the two patients with CdLS. EP300 and ANKRD11 pathogenic variants caused the reduction of the respective proteins suggesting that their low levels contribute to CdLS-like phenotype. These findings highlight the clinical overlap between CdLS, RSTS, and KBG and support the notion that these rare disorders are linked to abnormal chromatin remodeling, which in turn affects the transcriptional machinery."	"Growth hormone therapy for children with KBG syndrome: A case report and review of literature. The incidence of short stature in KBG syndrome is relatively high. Data on the therapeutic effects of growth hormone (GH) on children with KBG syndrome accompanied by short stature in the previous literature has not been summarized. Here we studied a girl with KBG syndrome and collected the data of children with KBG syndrome accompanied by short stature from previous studies before and after GH therapy. The girl was referred to our department because of short stature. Physical examination revealed mild dysmorphic features. The peak GH responses to arginine and clonidine were 6.22 and 5.40 ng/mL, respectively. The level of insulin-like growth factor 1 (IGF-1) was 42.0 ng/mL. Genetic analysis showed a c.2635 dupG (p.Glu879fs) mutation in the ANKRD11 gene. She received GH therapy. During the first year of GH therapy, her height increased by 0.92 standard deviation score (SDS). Her height increased from -1.95 SDS to -0.70 SDS after two years of GH therapy. There were ten children with KBG syndrome accompanied by short stature who received GH therapy in reported cases. Height SDS was improved in nine (9/10) of them. The mean height SDS in five children with KBG syndrome accompanied by short stature increased from -2.72 ± 0.44 to -1.95 ± 0.57 after the first year of GH therapy (P = 0.001). There were no adverse reactions reported after GH treatment. GH treatment is effective in our girl and most children with KBG syndrome accompanied by short stature during the first year of therapy."	"KBG syndrome in two patients from Egypt. KBG syndrome is an intellectual disability (ID) associated with multiple congenital anomalies in which the macrodontia could be the clue for the diagnosis. It is caused either by heterozygous variant in ANKRD11 gene or 16q24.3 microdeletions that involve the ANKRD11 gene. Here, we report on two unrelated male patients who presented with ID, short stature, webbing of neck, and cryptorchidism. Noonan syndrome was suspected first but the presence of macrodontia in both patients pointed to KBG syndrome which was confirmed thereafter by the identification of a novel pathogenic variant in ANKRD11 gene, c.5488G&gt;T (p.E1830*). Macrodontia was noticed in all the deciduous anterior teeth in Patient 1. This observation was reported previously in few patients, but it seems to be a common feature that could be misdiagnosed as premature eruption of teeth. Therefore, our results confirm that maxillary permanent central incisors may not be the only teeth affected in KBG but also all the deciduous teeth. Interestingly, desquamative gingivitis was additionally noted in Patient 1, which has not been reported previously, however; it could be a coincidental finding. To the best of our knowledge, this is the first report from Egypt."
+"SHANK2"	"autism"	"SHANK2 is a frequently amplified oncogene with evolutionarily conserved roles in regulating Hippo signaling. Dysfunction of the Hippo pathway enables cells to evade contact inhibition and provides advantages for cancerous overgrowth. However, for a significant portion of human cancer, how Hippo signaling is perturbed remains unknown. To answer this question, we performed a genome-wide screening for genes that affect the Hippo pathway in Drosophila and cross-referenced the hit genes with human cancer genome. In our screen, Prosap was identified as a novel regulator of the Hippo pathway that potently affects tissue growth. Interestingly, a mammalian homolog of Prosap, SHANK2, is the most frequently amplified gene on 11q13, a major tumor amplicon in human cancer. Gene amplification profile in this 11q13 amplicon clearly indicates selective pressure for SHANK2 amplification. More importantly, across the human cancer genome, SHANK2 is the most frequently amplified gene that is not located within the Myc amplicon. Further studies in multiple human cell lines confirmed that SHANK2 overexpression causes deregulation of Hippo signaling through competitive binding for a LATS1 activator, and as a potential oncogene, SHANK2 promotes cellular transformation and tumor formation in vivo. In cancer cell lines with deregulated Hippo pathway, depletion of SHANK2 restores Hippo signaling and ceases cellular proliferation. Taken together, these results suggest that SHANK2 is an evolutionarily conserved Hippo pathway regulator, commonly amplified in human cancer and potently promotes cancer. Our study for the first time illustrated oncogenic function of SHANK2, one of the most frequently amplified gene in human cancer. Furthermore, given that in normal adult tissues, SHANK2's expression is largely restricted to the nervous system, SHANK2 may represent an interesting target for anticancer therapy."	"Distinct Mechanisms of Over-Representation of Landmarks and Rewards in the Hippocampus. In the hippocampus, locations associated with salient features are represented by a disproportionately large number of neurons, but the cellular and molecular mechanisms underlying this over-representation remain elusive. Using longitudinal calcium imaging in mice learning to navigate in virtual reality, we find that the over-representation of reward and landmark locations are mediated by persistent and separable subsets of neurons, with distinct time courses of emergence and differing underlying molecular mechanisms. Strikingly, we find that in mice lacking Shank2, an autism spectrum disorder (ASD)-linked gene encoding an excitatory postsynaptic scaffold protein, the learning-induced over-representation of landmarks was absent whereas the over-representation of rewards was substantially increased, as was goal-directed behavior. These findings demonstrate that multiple hippocampal coding processes for unique types of salient features are distinguished by a Shank2-dependent mechanism and suggest that abnormally distorted hippocampal salience mapping may underlie cognitive and behavioral abnormalities in a subset of ASDs."	"meQTL and ncRNA functional analyses of 102 GWAS-SNPs associated with depression implicate HACE1 and SHANK2 genes. Little is known about how genetics and epigenetics interplay in depression. Evidence suggests that genetic variants may change vulnerability to depression by modulating DNA methylation (DNAm) and non-coding RNA (ncRNA) levels. Therefore, the aim of the study was to investigate the effect of the genetic variation, previously identified in the largest genome-wide association study for depression, on proximal DNAm and ncRNA levels. We performed DNAm quantitative trait locus (meQTL) analysis in two independent cohorts (total n = 435 healthy individuals), testing associations between 102 single-nucleotide polymorphisms (SNPs) and DNAm levels in whole blood. We identified and replicated 64 SNP-CpG pairs (padj. &lt; 0.05) with meQTL effect. Lower DNAm at cg02098413 located in the HACE1 promoter conferred by the risk allele (C allele) at rs1933802 was associated with higher risk for depression (praw = 0.014, DNAm = 2.3%). In 1202 CD14+ cells sorted from blood, DNAm at cg02088412 positively correlated with HACE1 mRNA expression. Investigation in postmortem brain tissue of adults diagnosed with major depressive disorder (MDD) indicated 1% higher DNAm at cg02098413 in neurons and lower HACE1 mRNA expression in CA1 hippocampus of MDD patients compared with healthy controls (p = 0.008 and 0.012, respectively). Expression QTL analysis in blood of 74 adolescent revealed that hsa-miR-3664-5p was associated with rs7117514 (SHANK2) (padj. = 0.015, mRNA difference = 5.2%). Gene ontology analysis of the miRNA target genes highlighted implication in neuronal processes. Collectively, our findings from a multi-tissue (blood and brain) and multi-layered (genetic, epigenetic, transcriptomic) approach suggest that genetic factors may influence depression by modulating DNAm and miRNA levels. Alterations at HACE1 and SHANK2 loci imply potential mechanisms, such as oxidative stress in the brain, underlying depression. Our results deepened the knowledge of molecular mechanisms in depression and suggest new epigenetic targets that should be further evaluated."	"New insights into the associations among feed efficiency, metabolizable efficiency traits and related QTL regions in broiler chickens. Improving the feed efficiency would increase profitability for producers while also reducing the environmental footprint of livestock production. This study was conducted to investigate the relationships among feed efficiency traits and metabolizable efficiency traits in 180 male broilers. Significant loci and genes affecting the metabolizable efficiency traits were explored with an imputation-based genome-wide association study. The traits measured or calculated comprised three growth traits, five feed efficiency related traits, and nine metabolizable efficiency traits. The residual feed intake (RFI) showed moderate to high and positive phenotypic correlations with eight other traits measured, including average daily feed intake (ADFI), dry excreta weight (DEW), gross energy excretion (GEE), crude protein excretion (CPE), metabolizable dry matter (MDM), nitrogen corrected apparent metabolizable energy (AMEn), abdominal fat weight (AbF), and percentage of abdominal fat (AbP). Greater correlations were observed between growth traits and the feed conversion ratio (FCR) than RFI. In addition, the RFI, FCR, ADFI, DEW, GEE, CPE, MDM, AMEn, AbF, and AbP were lower in low-RFI birds than high-RFI birds (P &lt; 0.01 or P &lt; 0.05), whereas the coefficients of MDM and MCP of low-RFI birds were greater than those of high-RFI birds (P &lt; 0.01). Five narrow QTLs for metabolizable efficiency traits were detected, including one 82.46-kb region for DEW and GEE on Gallus gallus chromosome (GGA) 26, one 120.13-kb region for MDM and AMEn on GGA1, one 691.25-kb region for the coefficients of MDM and AMEn on GGA5, one region for the coefficients of MDM and MCP on GGA2 (103.45-103.53 Mb), and one 690.50-kb region for the coefficient of MCP on GGA14. Linkage disequilibrium (LD) analysis indicated that the five regions contained high LD blocks, as well as the genes chromosome 26 C6orf106 homolog (C26H6orf106), LOC396098, SH3 and multiple ankyrin repeat domains 2 (SHANK2), ETS homologous factor (EHF), and histamine receptor H3-like (HRH3L), which are known to be involved in the regulation of neurodevelopment, cell proliferation and differentiation, and food intake. Selection for low RFI significantly decreased chicken feed intake, excreta output, and abdominal fat deposition, and increased nutrient digestibility without changing the weight gain. Five novel QTL regions involved in the control of metabolizable efficiency in chickens were identified. These results, combined through nutritional and genetic approaches, should facilitate novel insights into improving feed efficiency in poultry and other species."	"Insulin-like growth factor 1 partially rescues early developmental defects caused by SHANK2 knockdown in human neurons. SHANK2 is a scaffold protein that serves as a protein anchor at the postsynaptic density in neurons. Genetic variants of SHANK2 are strongly associated with synaptic dysfunction and the pathophysiology of autism spectrum disorder. Recent studies indicate that early neuronal developmental defects play a role in the pathogenesis of autism spectrum disorder, and that insulin-like growth factor 1 has a positive effect on neurite development. To investigate the effects of SHANK2 knockdown on early neuronal development, we generated a sparse culture system using human induced pluripotent stem cells, which then differentiated into neural progenitor cells after 3-14 days in culture, and which were dissociated into single neurons. Neurons in the experimental group were infected with shSHANK2 lentivirus carrying a red fluorescent protein reporter (shSHANK2 group). Control neurons were infected with scrambled shControl lentivirus carrying a red fluorescent protein reporter (shControl group). Neuronal somata and neurites were reconstructed based on the lentiviral red fluorescent protein signal. Developmental dendritic and motility changes in VGLUT1<sup>+</sup> glutamatergic neurons and TH<sup>+</sup> dopaminergic neurons were then evaluated in both groups. Compared with shControl VGLUT1<sup>+</sup> neurons, the dendritic length and arborizations of shSHANK2 VGLUT1<sup>+</sup> neurons were shorter and fewer, while cell soma speed was higher. Furthermore, dendritic length and arborization were significantly increased after insulin-like growth factor 1 treatment of shSHANK2 neurons, while cell soma speed remained unaffected. These results suggest that insulin-like growth factor 1 can rescue morphological defects, but not the change in neuronal motility. Collectively, our findings demonstrate that SHANK2 deficiency perturbs early neuronal development, and that IGF1 can partially rescue the neuronal defects caused by SHANK2 knockdown. All experimental procedures and protocols were approved by the Laboratory Animal Ethics Committee of Jinan University, China (approval No. 20170228010) on February 28, 2017."
+"POGZ"	"autism"	"Evolution of pogo, a separate superfamily of IS630-Tc1-mariner transposons, revealing recurrent domestication events in vertebrates. Tc1/mariner and Zator, as two superfamilies of IS630-Tc1-mariner (ITm) group, have been well-defined. However, the molecular evolution and domestication of pogo transposons, once designated as an important family of the Tc1/mariner superfamily, are still poorly understood. Here, phylogenetic analysis show that pogo transposases, together with Tc1/mariner, DD34E/Gambol, and Zator transposases form four distinct monophyletic clades with high bootstrap supports (&gt; = 74%), suggesting that they are separate superfamilies of ITm group. The pogo superfamily represents high diversity with six distinct families (Passer, Tigger, pogoR, Lemi, Mover, and Fot/Fot-like) and wide distribution with an expansion spanning across all the kingdoms of eukaryotes. It shows widespread occurrences in animals and fungi, but restricted taxonomic distribution in land plants. It has invaded almost all lineages of animals-even mammals-and has been domesticated repeatedly in vertebrates, with 12 genes, including centromere-associated protein B (CENPB), CENPB DNA-binding domain containing 1 (CENPBD1), Jrk helix-turn-helix protein (JRK), JRK like (JRKL), pogo transposable element derived with KRAB domain (POGK), and with ZNF domain (POGZ), and Tigger transposable element-derived 2 to 7 (TIGD2-7), deduced as originating from this superfamily. Two of them (JRKL and TIGD2) seem to have been co-domesticated, and the others represent independent domestication events. Four genes (TIGD3, TIGD4, TIGD5, and POGZ) tend to represent ancient domestications in vertebrates, while the others only emerge in mammals and seem to be domesticated recently. Significant structural variations including target site duplication (TSD) types and the DDE triad signatures (DD29-56D) were observed for pogo transposons. Most domesticated genes are derived from the complete transposase genes; but CENPB, POGK, and POGZ are chimeric genes fused with additional functional domains. This is the first report to systematically reveal the evolutionary profiles of the pogo transposons, suggesting that pogo and Tc1/Mariner are two separate superfamilies of ITm group, and demonstrating the repeated domestications of pogo in vertebrates. These data indicate that pogo transposons have played important roles in shaping the genome and gene evolution of fungi and animals. This study expands our understanding of the diversity of pogo transposons and updates the classification of ITm group."	"A novel patient with White-Sutton syndrome refines the mutational and clinical repertoire of the POGZ-related phenotype and suggests further observations. A rare developmental delay (DD)/intellectual disability (ID) syndrome with craniofacial dysmorphisms and autistic features, termed White-Sutton syndrome (WHSUS, MIM#614787), has been recently described, identifying truncating mutations in the chromatin regulator POGZ (KIAA0461, MIM#614787). We describe a further WHSUS patient harboring a novel nonsense de novo POGZ variant, which afflicts a protein domain with transposase activity less frequently impacted by mutational events (DDE domain). This patient displays additional physical and behavioral features, these latter mimicking Smith-Magenis syndrome (SMS, MIM#182290). Considering sleep-wake cycle anomalies and abnormal behavior manifested by this boy, we reinforced the clinical resemblance between WHSUS and SMS, being both chromatinopathies. In addition, using the DeepGestalt technology, we identified a different facial overlap between WHSUS patients with mutations in the DDE domain (Group 1) and individuals harboring variants in other protein domains/regions (Group 2). This report further delineates the clinical and molecular repertoire of the POGZ-related phenotype, adding a novel patient with uncommon clinical and behavioral features and provides the first computer-aided facial study of WHSUS patients."	"Severe childhood speech disorder: Gene discovery highlights transcriptional dysregulation. Determining the genetic basis of speech disorders provides insight into the neurobiology of human communication. Despite intensive investigation over the past 2 decades, the etiology of most speech disorders in children remains unexplained. To test the hypothesis that speech disorders have a genetic etiology, we performed genetic analysis of children with severe speech disorder, specifically childhood apraxia of speech (CAS). Precise phenotyping together with research genome or exome analysis were performed on children referred with a primary diagnosis of CAS. Gene coexpression and gene set enrichment analyses were conducted on high-confidence gene candidates. Thirty-four probands ascertained for CAS were studied. In 11/34 (32%) probands, we identified highly plausible pathogenic single nucleotide (n = 10; CDK13, EBF3, GNAO1, GNB1, DDX3X, MEIS2, POGZ, SETBP1, UPF2, ZNF142) or copy number (n = 1; 5q14.3q21.1 locus) variants in novel genes or loci for CAS. Testing of parental DNA was available for 9 probands and confirmed that the variants had arisen de novo. Eight genes encode proteins critical for regulation of gene transcription, and analyses of transcriptomic data found CAS-implicated genes were highly coexpressed in the developing human brain. We identify the likely genetic etiology in 11 patients with CAS and implicate 9 genes for the first time. We find that CAS is often a sporadic monogenic disorder, and highly genetically heterogeneous. Highly penetrant variants implicate shared pathways in broad transcriptional regulation, highlighting the key role of transcriptional regulation in normal speech development. CAS is a distinctive, socially debilitating clinical disorder, and understanding its molecular basis is the first step towards identifying precision medicine approaches."	"Pathogenic POGZ mutation causes impaired cortical development and reversible autism-like phenotypes. Pogo transposable element derived with ZNF domain (POGZ) has been identified as one of the most recurrently de novo mutated genes in patients with neurodevelopmental disorders (NDDs), including autism spectrum disorder (ASD), intellectual disability and White-Sutton syndrome; however, the neurobiological basis behind these disorders remains unknown. Here, we show that POGZ regulates neuronal development and that ASD-related de novo mutations impair neuronal development in the developing mouse brain and induced pluripotent cell lines from an ASD patient. We also develop the first mouse model heterozygous for a de novo POGZ mutation identified in a patient with ASD, and we identify ASD-like abnormalities in the mice. Importantly, social deficits can be treated by compensatory inhibition of elevated cell excitability in the mice. Our results provide insight into how de novo mutations on high-confidence ASD genes lead to impaired mature cortical network function, which underlies the cellular pathogenesis of NDDs, including ASD."	"The Cardiac Genome Clinic: implementing genome sequencing in pediatric heart disease. This study investigated the diagnostic utility of nontargeted genomic testing in patients with pediatric heart disease. We analyzed genome sequencing data of 111 families with cardiac lesions for rare, disease-associated variation. In 14 families (12.6%), we identified causative variants: seven were de novo (ANKRD11, KMT2D, NR2F2, POGZ, PTPN11, PURA, SALL1) and six were inherited from parents with no or subclinical heart phenotypes (FLT4, DNAH9, MYH11, NEXMIF, NIPBL, PTPN11). Outcome of the testing was associated with the presence of extracardiac features (p = 0.02), but not a positive family history for cardiac lesions (p = 0.67). We also report novel plausible gene-disease associations for tetralogy of Fallot/pulmonary stenosis (CDC42BPA, FGD5), hypoplastic left or right heart (SMARCC1, TLN2, TRPM4, VASP), congenitally corrected transposition of the great arteries (UBXN10), and early-onset cardiomyopathy (TPCN1). The identified candidate genes have critical functions in heart development, such as angiogenesis, mechanotransduction, regulation of heart size, chromatin remodeling, or ciliogenesis. This data set demonstrates the diagnostic and scientific value of genome sequencing in pediatric heart disease, anticipating its role as a first-tier diagnostic test. The genetic heterogeneity will necessitate large-scale genomic initiatives for delineating novel gene-disease associations."
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/data/test_data	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,7 @@
+ID_gene	GROUPING_disease
+SCN1A	epilepsy
+SCN9A	epilepsy
+GRIN2A	epilepsy
+ANKRD11	autism
+SHANK2	autism
+POGZ	autism
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/data/text_to_wordmatrix_output	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,7 @@
+"variant"	"patient"	"gene"	"genetic"	"year"	"channel"	"clinical"	"identified"	"kv43"	"function"	"gabaergic"	"ina"	"ito"	"associated"	"association"	"known"	"nav"	"pathogenic"	"scn1a"	"syndrome"	"argentinean"	"autism"	"balance"	"br"	"case"	"diagnosis"	"disorder"	"emr"	"epilepsies"	"epileptic"	"etiology"	"hippocampal"	"individual"	"kcnd3"	"longitudinal"	"mtle"	"neuronal"	"one"	"panel"	"sca1922"	"studies"	"study"	"134"	"abnormalities"	"also"	"analysis"	"analyzed"	"applying"	"asd"	"can"	"de"	"scn9a"	"peptide"	"protein"	"une"	"nlc"	"control"	"sepsis"	"cell"	"mutation"	"nsc"	"frequency"	"functional"	"rare"	"saa1"	"disease"	"hnav17a1632e"	"inactivation"	"pain"	"persistent"	"plasmon"	"sodium"	"admsc"	"an"	"compared"	"dimerization"	"icusepsis"	"le"	"observation"	"tryptic"	"andor"	"cause"	"current"	"dimer"	"expression"	"fast"	"fibre"	"increased"	"intensity"	"potential"	"precursor"	"revealed"	"sequencing"	"surgery"	"test"	"grin2a"	"dip2c"	"oral"	"brain"	"feeding"	"receptor"	"deletion"	"modulator"	"allosteric"	"may"	"nmdars"	"outcome"	"positive"	"reduced"	"system"	"targeted"	"cntnap2"	"crisprcas9"	"development"	"different"	"exon"	"foxp2"	"grin"	"large"	"memantine"	"mouse"	"neurological"	"newborn"	"nmda"	"nmdar"	"pathway"	"premature"	"regulated"	"result"	"saliva"	"seizure"	"achieved"	"among"	"amplified"	"kbg"	"ankrd11"	"short"	"stature"	"therapy"	"microduplication"	"phenotype"	"16q242q243"	"cdls"	"child"	"disability"	"feature"	"first"	"intellectual"	"two"	"accompanied"	"bone"	"data"	"sd"	"delay"	"duplication"	"dysmorphic"	"ep300"	"height"	"literature"	"overlapping"	"report"	"reported"	"tooth"	"16q243"	"available"	"density"	"developmental"	"girl"	"growth"	"knowledge"	"shank2"	"neuron"	"trait"	"efficiency"	"dnam"	"feed"	"hippo"	"human"	"cancer"	"depression"	"metabolizable"	"region"	"factor"	"mdm"	"mechanism"	"suggest"	"hace1"	"overrepresentation"	"amen"	"bird"	"blood"	"coefficient"	"defect"	"early"	"effect"	"five"	"frequently"	"group"	"insulinlike"	"intake"	"level"	"rfi"	"pogo"	"pogz"	"domain"	"ca"	"heart"	"novo"	"speech"	"genome"	"novel"	"transposons"	"domestication"	"whsus"	"highly"	"including"	"itm"	"regulation"	"superfamily"	"tc1mariner"	"vertebrate"	"basis"	"cardiac"	"cenpb"	"dde"	"derived"	"diagnostic"	"domesticated"	"event"	"evolution"
+1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	1	1	0	0	0	0	1	0	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	1	1	1	1	0	1	1	0	0	0	0	0	1	0	0	0	1	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+0	0	1	1	0	0	0	1	0	0	0	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	1	1	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0
+1	1	1	1	0	0	1	1	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	1	0	1	1	0	0	0	0	1	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1	0	0	0	0	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1	1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/text_to_wordmatrix.R	Thu Sep 24 02:01:50 2020 +0000
@@ -0,0 +1,104 @@
+#!/usr/bin/env Rscript
+# tool: text_to_wordmatrix
+#
+#The tool extracts the most frequent words per entity (per row). Text of columns starting with "ABSTRACT" or "TEXT" are considered. 
+#All extracted terms are used to generate a word matrix with rows = entities and columns = extracted words. 
+#The resulting matrix is binary with 0= word not present in abstracts of entity and 1= word present in abstracts of entity.
+#
+#Input: Output of 'pubmed_by_queries' or 'abstracts_by_pmids', or tab-delimited table with entities in column called “ID_<name>”, 
+#e.g. “ID_genes” and text in columns starting with "ABSTRACT" or "TEXT".
+#
+#Output: Binary matrix with rows = entities and columns = extracted words.
+#
+#usage: text_to_wordmatrix.R [-h] [-i INPUT] [-o OUTPUT] [-n NUMBER] [-r] [-l] [-w] [-s] [-p]
+# 
+# optional arguments:
+# -h, --help                    show help message
+# -i INPUT, --input INPUT       input file name. add path if file is not in working directory
+# -o OUTPUT, --output OUTPUT    output file name. [default "text_to_wordmatrix_output"]
+# -n NUMBER, --number NUMBER    number of most frequent words that should be extracted [default "50"]
+# -r, --remove_num              remove any numbers in text
+# -l, --lower_case              by default all characters are translated to lower case. otherwise use -l
+# -w, --remove_stopwords        by default a set of english stopwords (e.g., 'the' or 'not') are removed. otherwise use -w
+# -s, --stemDoc                 apply Porter's stemming algorithm: collapsing words to a common root to aid comparison of vocabulary
+# -p, --plurals                 by default words in plural and singular are merged to the singular form. otherwise use -p
+
+if ( '--install_packages' %in% commandArgs()) {
+  print('Installing packages')
+  if (!require('argparse')) install.packages('argparse', repo="http://cran.rstudio.com/");
+  if (!require("PubMedWordcloud")) install.packages("PubMedWordcloud", repo="http://cran.rstudio.com/");
+  if (!require('SnowballC')) install.packages('SnowballC', repo="http://cran.rstudio.com/");
+  if (!require('textclean')) install.packages('textclean', repo="http://cran.rstudio.com/");
+  if (!require('SemNetCleaner')) install.packages('SemNetCleaner',repo="http://cran.rstudio.com/");
+  if (!require('stringi')) install.packages('stringi',repo="http://cran.rstudio.com/");
+  if (!require('stringr')) install.packages('stringr',repo="http://cran.rstudio.com/");
+}
+
+suppressPackageStartupMessages(library("argparse"))
+suppressPackageStartupMessages(library("PubMedWordcloud"))
+suppressPackageStartupMessages(library("SnowballC"))
+suppressPackageStartupMessages(library("SemNetCleaner"))
+suppressPackageStartupMessages(library("textclean"))
+suppressPackageStartupMessages(library("stringi"))
+suppressPackageStartupMessages(library("stringr"))
+
+parser <- ArgumentParser()
+parser$add_argument("-i", "--input", 
+                    help = "input fie name. add path if file is not in workind directory")
+parser$add_argument("-o", "--output", default="text_to_wordmatrix_output",
+                    help = "output file name. [default \"%(default)s\"]")
+parser$add_argument("-n", "--number", type="integer", default=50, choices=seq(1, 500), metavar="{0..500}",
+                    help="number of most frequent words used per ID in word matrix [default \"%(default)s\"]")
+parser$add_argument("-r", "--remove_num", action="store_true", default=FALSE,
+                    help= "remove any numbers in text")
+parser$add_argument("-l", "--lower_case", action="store_false", default=TRUE,
+                    help="by default all characters are translated to lower case. otherwise use -l")
+parser$add_argument("-w", "--remove_stopwords", action="store_false", default=TRUE,
+                    help="by default a set of English stopwords (e.g., 'the' or 'not') are removed. otherwise use -s")
+parser$add_argument("-s", "--stemDoc", action="store_true", default=FALSE,
+                    help="apply Porter's stemming algorithm: collapsing words to a common root to aid comparison of vocabulary")
+parser$add_argument("-p", "--plurals", action="store_false", default=TRUE,
+                    help="by default words in plural and singular are merged to the singular form. otherwise use -p")
+parser$add_argument("--install_packages", action="store_true", default=FALSE,
+                    help="If you want to auto install missing required packages.")
+
+args <- parser$parse_args()
+
+
+data = read.delim(args$input, stringsAsFactors=FALSE, header = TRUE, sep='\t')
+word_matrix = data.frame()
+
+text_cols_index <- grep(c("ABSTRACT|TEXT"), names(data))
+
+for(row in 1:nrow(data)){
+    top_words = cleanAbstracts(abstracts= data[row,text_cols_index], 
+                               rmNum = args$remove_num, 
+                               tolw= args$lower_case,
+                               rmWords= args$remove_stopwords,
+                               stemDoc= args$stemDoc)
+    
+    top_words$word <- as.character(top_words$word)
+    
+   # δ γ ε
+    
+    cat("Most frequent words for row", row, " are extracted.", "\n")
+    
+    if(args$plurals == TRUE){
+      top_words$word <- sapply(top_words$word, function(x){singularize(x)})
+      top_words = aggregate(freq~word,top_words,sum)
+    }
+    
+    top_words = top_words[order(top_words$freq, decreasing = TRUE), ]
+    top_words$word = as.character(top_words$word)
+    
+    number_extract = min(args$number, nrow(top_words))
+    word_matrix[row,sapply(1:number_extract, function(x){paste0(top_words$word[x])})] <- top_words$freq[1:number_extract]
+  }
+
+  word_matrix <- as.matrix(word_matrix)
+  word_matrix[is.na(word_matrix)] <- 0
+  word_matrix <- (word_matrix>0) *1  #binary matrix
+
+cat("A matrix with ", nrow(word_matrix), " rows and ", ncol(word_matrix), "columns is generated.", "\n")
+  
+write.table(word_matrix, args$output, row.names = FALSE, sep = '\t')